diff --git a/Airflow_project_Updated050520.png b/Airflow_project_Updated050520.png new file mode 100644 index 00000000..3578a39c Binary files /dev/null and b/Airflow_project_Updated050520.png differ diff --git a/README.md b/README.md index 8f0ab07e..1a32f5fe 100644 --- a/README.md +++ b/README.md @@ -1 +1,24 @@ # Airflow Project + +![description_if_image_fails_to_load](https://github.com/nortonlyr/DataEngineering.Labs.AirflowProject/blob/master/Airflow_project_Updated050520.png) + +Question? +- How to select the valuable airbnbn home when travel to the NYC? + +Goal: +- Applied the Apache Airflow directed acyclic graphs (DAGs) to build data pipelines on NYC open data (park, shooting, hot_spot, hotel, public housing) and Airbnb housing data, followed by data minipulation, analysis, and visualization. + + +Flowchart +- Original sources: NYC OPEN DATA, Airbnb dataset (from Insider Airbnb) + +- Get requests and download the sources + +- Preliminary Data cleaning and manipulation + +- Import to SQL database (MySQL/PostgreSQL) + +- Load data from database, and use jupyter notebook to show analysis and visualization (run in both localhost and AWS (EC2, RDS, S3)) + + +![description_if_image_fails_to_load](https://github.com/nortonlyr/DataEngineering.Labs.AirflowProject/blob/master/airflow_flow_chart.png) diff --git a/airflow_flow_chart.png b/airflow_flow_chart.png new file mode 100644 index 00000000..44d2a04b Binary files /dev/null and b/airflow_flow_chart.png differ diff --git a/dags/nyc_data_all_in_one_aws_1.py b/dags/nyc_data_all_in_one_aws_1.py new file mode 100644 index 00000000..fa8a8735 --- /dev/null +++ b/dags/nyc_data_all_in_one_aws_1.py @@ -0,0 +1,449 @@ +from airflow.operators.python_operator import PythonOperator +from airflow.operators.dummy_operator import DummyOperator +from airflow.operators.bash_operator import BashOperator +import pandas as pd +from datetime import timedelta +from airflow import DAG +from sqlalchemy import create_engine +import requests +from datetime import datetime +import os +import airflow.hooks.S3_hook + + +mysqluser = os.environ.get('mysql_user') +mysqlkey = os.environ.get('mysql_key') + + +default_args = { + 'owner': 'Norton_Li', + 'start_date': airflow.utils.dates.days_ago(1), + #'start_date': datetime(2020,4,10,0), + 'email': ['nortonlyr@gmail.com'], + 'email_on_failure': False, + 'email_on_retry': False, + 'retries': 1, + 'retry_delay': timedelta(minutes=1) +} + + +dag = DAG( + dag_id='airbnb_nyc_open_data_correlation_study_aws', + default_args=default_args, + schedule_interval=timedelta(hours=1), + description='Airbnb NYC data and NYC open data of 2019 study', + ) + + +t0 = DummyOperator( + task_id='nyc_data_etl_start_here', + retries=1, + dag=dag +) + + +################################################################## +#Airbnb +path_abb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/abb_nyc_housing_2019_data.csv') +path_etl_abb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/abb_nyc_housing_2019_data2.csv') + +def get_nyc_abb_data(): + """ + get the nyc airbnb data + """ + url = 'https://s3.amazonaws.com/norton.bucket/airflow_project/AB_NYC_2019.csv' + response = requests.get(url) + with open(path_abb, 'wb') as f: + f.write(response.content) + + +t1a = PythonOperator( + task_id = 'get_nyc_abb_data', + python_callable=get_nyc_abb_data, + provide_context=False, + dag=dag, +) + + +def abb_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + abb_df = pd.read_csv(path_abb) + + abb_df2 = abb_df.drop(columns=['id', 'name', 'host_name', 'last_review']) + abb_df2 = abb_df2.rename(columns={"neighbourhood_group": "borough"}) + abb_df2.to_csv(path_etl_abb) + + +t1b = PythonOperator( + task_id='abb_data_etl', + python_callable=abb_data_etl, + provide_context=False, + dag=dag, +) + + +def abb_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_abb, delimiter=',') + df.to_sql(name='nyc_abb', con=conn, schema='airflow_project', if_exists='replace') + + +t1c = PythonOperator( + task_id='abb_to_mysql', + python_callable=abb_csv_to_mysql, + dag=dag, +) + + +path_abb_nb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'jupyter_nb/nyc_abb_vis.ipynb') +t1e = BashOperator( + task_id='vis_w_jupyter_nb', + # bash_command='jupyter nbconvert --to notebook --execute {}'.format(path_abb_nb) --output nyc_abb_vis_aws{{ ds }}.ipynb', + bash_command='export TMPDIR=/home/ec2-user/airflow/jupyter_nb; jupyter nbconvert --to notebook --execute /home/ec2-user/airflow/jupyter_nb/nyc_abb_vis_aws.ipynb --output nyc_abb_vis_aws_output.ipynb --ExecutePreprocessor.kernel_name=python3', + dag=dag, +) + + +############################################################### +#NYC_Park_Data +path_park = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_park_data.csv') +path_etl_park = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_park_data2.csv') + +def get_park_data(): + """ + NYC park information dataset based on 2019 + """ + nyc_park_url = 'https://data.cityofnewyork.us/api/views/ghu2-eden/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_park_url) + with open(path_park, 'wb') as file: + file.write(response.content) + + +t2a = PythonOperator( + task_id='get_nyc_park_data', + python_callable=get_park_data, + provide_context=False, + dag=dag, +) + + +def nyc_park_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_ht_df = pd.read_csv(path_park) + nyc_ht_df = nyc_ht_df.drop(columns=['the_geom', 'GISPROPNUM', 'OBJECTID', 'OMPPROPID', 'DEPARTMENT', + 'PERMITDIST', 'PERMITPARE', 'PARENTID', 'LOCATION','COMMUNITYB','COUNCILDIS', 'PRECINCT', 'ZIPCODE','RETIRED', + 'EAPPLY', 'PIP_RATABL', 'GISOBJID', 'CLASS', 'COMMISSION', 'ACQUISITIO', 'ADDRESS', 'JURISDICTI', 'MAPPED', + 'NAME311', 'PERMIT', 'SIGNNAME','SUBCATEGOR', 'URL','NYS_ASSEMB','NYS_SENATE', 'US_CONGRES', 'GlobalID']) + nyc_ht_df.columns = ['borough', 'acres', 'typecatego', 'waterfront'] + nyc_ht_df = nyc_ht_df.set_index('borough') + nyc_ht_df.to_csv(path_etl_park) + + +t2b = PythonOperator( + task_id='etl_nyc_park', + python_callable=nyc_park_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_park_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_park, delimiter=',') + df.to_sql(name='nyc_park', con=conn, schema='airflow_project', if_exists='replace') + + +t2c = PythonOperator( + task_id='park_to_mysql', + python_callable=nyc_park_csv_to_mysql, + dag=dag +) + + +############################################################### +#NYC_Shooting_Data +path_shooting = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_shooting_data.csv') +path_etl_shooting = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_shooting_data2.csv') + +def get_shooting_data(): + """ + NYC shooting cases dataset 2019 + """ + nyc_shooting_url = 'https://data.cityofnewyork.us/api/views/5ucz-vwe8/rows.csv?accessType=DOWNLOAD&api_foundry=true' + response = requests.get(nyc_shooting_url) + with open(path_shooting, 'wb') as file: + file.write(response.content) + + +t3a = PythonOperator( + task_id='get_nyc_shooting_data', + python_callable=get_shooting_data, + provide_context=False, + dag=dag, +) + + +def nyc_shooting_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_s_df = pd.read_csv(path_shooting) + nyc_s_df = nyc_s_df.drop(columns=['INCIDENT_KEY', 'JURISDICTION_CODE', 'LOCATION_DESC', + 'STATISTICAL_MURDER_FLAG', 'PERP_AGE_GROUP', 'PERP_SEX', 'PERP_RACE', + 'VIC_AGE_GROUP', 'VIC_AGE_GROUP', 'VIC_RACE', + 'X_COORD_CD', 'Y_COORD_CD']) + nyc_s_df.columns = ['occur_date', 'occur_time', 'borough', 'precinct', 'vic_sex','latitude', 'longitude'] + nyc_s_df = nyc_s_df.set_index('occur_date') + nyc_s_df.to_csv(path_etl_shooting) + + +t3b = PythonOperator( + task_id='etl_nyc_shooting', + python_callable=nyc_shooting_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_shooting_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_shooting, delimiter=',') + df.to_sql(name='nyc_shooting', con=conn, schema='airflow_project', if_exists='replace') + + +t3c = PythonOperator( + task_id='shooting_to_mysql', + python_callable=nyc_shooting_csv_to_mysql, + dag=dag +) + + +############################################################### +#NYC_hotel_Data +path_hotel = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hotel_data.csv') +path_etl_hotel = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hotel_data2.csv') + +def get_hotel_data(): + """ + NYC hotel information dataset based on 2019 + """ + nyc_hotel_url = 'https://data.cityofnewyork.us/api/views/tjus-cn27/rows.csv?accessType=DOWNLOAD&api_foundry=true' + response = requests.get(nyc_hotel_url) + with open(path_hotel, 'wb') as file: + file.write(response.content) + + +t4a = PythonOperator( + task_id='get_nyc_hotel_data', + python_callable=get_hotel_data, + provide_context=False, + dag=dag, +) + + +def nyc_hotel_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + + nyc_ht_df = pd.read_csv(path_hotel) + nyc_ht_df = nyc_ht_df.drop(columns=['PARID', 'BOROCODE', 'BLOCK', 'LOT', 'TAXYEAR', 'STREET NUMBER', + 'STREET NAME', 'BLDG_CLASS', 'TAXCLASS', 'OWNER_NAME', 'Community Board', + 'Council District', 'Census Tract', 'BIN', 'BBL', 'NTA']) + nyc_ht_df.columns = ['postcode', 'borough', 'latitude', 'longitude'] + nyc_ht_df = nyc_ht_df.set_index('postcode') + nyc_ht_df.to_csv(path_etl_hotel) + + +t4b = PythonOperator( + task_id='etl_nyc_hotel', + python_callable=nyc_hotel_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_hotel_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_hotel, delimiter=',') + df.to_sql(name='nyc_hotel', con=conn, schema='airflow_project', if_exists='replace') + + +t4c = PythonOperator( + task_id='hotel_to_mysql', + python_callable=nyc_hotel_csv_to_mysql, + dag=dag, +) + + +############################################################### +#NYC_public_housing_Data +path_housing = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_housing_data.csv') +path_etl_housing = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_housing_data2.csv') + +def get_housing_data(): + """ + NYC public housing location dataset + """ + nyc_housing_url = 'https://data.cityofnewyork.us/api/views/hg8x-zxpr/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_housing_url) + with open(path_housing, 'wb') as file: + file.write(response.content) + + +t5a = PythonOperator( + task_id='get_nyc_housing_data', + python_callable=get_housing_data, + provide_context=False, + dag=dag, +) + + +def nyc_housing_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_h_df = pd.read_csv(path_housing) + nyc_h_df = nyc_h_df.drop(columns=['Program Group', 'Project Name', 'Project Start Date', 'Project Completion Date', + 'Building ID','Number', 'Street','Postcode','BBL', 'BIN', 'Community Board', 'Council District', + 'Census Tract', 'NTA - Neighborhood Tabulation Area','Latitude', 'Longitude', + 'Latitude (Internal)', 'Longitude (Internal)', 'Building Completion Date', + 'Reporting Construction Type', 'Extended Affordability Only', 'Prevailing Wage Status', + 'Studio Units','1-BR Units', '2-BR Units', '3-BR Units', '4-BR Units', '5-BR Units', + '6-BR+ Units','Unknown-BR Units','Counted Rental Units', 'Counted Homeownership Units', + 'All Counted Units']) + nyc_h_df.columns = ['project_id', 'borough', 'extremely_low_income_units', 'very_low_income_units', + 'low_income_units', 'moderate_income_units', 'middle_income_units', + 'other_income_units', 'total_units'] + nyc_h_df = nyc_h_df.set_index('project_id') + nyc_h_df.to_csv(path_etl_housing) + + +t5b = PythonOperator( + task_id='etl_nyc_housing', + python_callable=nyc_housing_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_housing_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_housing, delimiter=',') + df.to_sql(name='nyc_housing', con=conn, schema='airflow_project', if_exists='replace') + + +t5c = PythonOperator( + task_id='housing_to_mysql', + python_callable=nyc_housing_csv_to_mysql, + dag=dag +) + + +############################################################### +#NYC_hotel_Data +path_hotspot = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hot_spot.csv') +path_etl_hotspot = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hot_spot2.csv') + +def get_hot_spot_data(): + """ + NYC free hot spot information dataset based on 2019 + """ + nyc_hot_spot_url = 'https://data.cityofnewyork.us/api/views/varh-9tsp/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_hot_spot_url) + with open(path_hotspot, 'wb') as file: + file.write(response.content) + + +t6a = PythonOperator( + task_id='get_nyc_hot_spot_data', + python_callable=get_hot_spot_data, + provide_context=False, + dag=dag, +) + + +def nyc_hot_spot_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_hs_df = pd.read_csv(path_hotspot) + nyc_hs_df = nyc_hs_df.drop(columns=['BORO', 'the_geom', 'OBJECTID', 'NAME', 'LOCATION', + 'X', 'Y', 'LOCATION_T', 'REMARKS', 'SSID','SOURCEID', 'NTACODE', 'NTANAME', 'COUNDIST', + 'POSTCODE', 'BOROCD', 'CT2010', 'BOROCT2010', 'BIN', 'BBL', 'DOITT_ID']) + nyc_hs_df.columns = ['type', 'provider','latitude', 'longitude', 'city', 'activated', 'borough_code','borough' ] + nyc_hs_df = nyc_hs_df.set_index('type') + nyc_hs_df.to_csv(path_etl_hotspot) + + +t6b = PythonOperator( + task_id='etl_nyc_hot_spot', + python_callable=nyc_hot_spot_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_hot_spot_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqlkey + ":" + mysqlkey + "@airflow-rds.chzeyzpv1w8k.us-east-1.rds.amazonaws.com:3306/airflow_project") + df = pd.read_csv(path_etl_hotspot, delimiter=',') + df.to_sql(name='nyc_hot_spot', con=conn, schema='airflow_project', if_exists='replace') + + +t6c = PythonOperator( + task_id='hot_spot_to_mysql', + python_callable=nyc_hot_spot_csv_to_mysql, + dag=dag +) + + +t_final = DummyOperator( + task_id='data_etl_completed', + retries=1, + dag=dag +) + +######################################################### +#AWS load files +hook_s3 = airflow.hooks.S3_hook.S3Hook('aws_norton_airflow') +bucket_name = 'norton.bucket' +path_abb_nb_out = os.path.join(os.path.dirname(os.path.dirname(__file__)),'jupyter_nb/nyc_abb_vis_output.ipynb') + +def files_to_s3(): + """ + Save all the ETL files to AWS S3 + """ + hook_s3.load_file(path_etl_abb, 'data/abb_nyc_housing_2019_data2.csv', 'norton.bucket', replace=True) + hook_s3.load_file(path_etl_park, 'data/nyc_park_data2.csv', 'norton.bucket', replace=True) + hook_s3.load_file(path_etl_shooting, 'data/nyc_shooting_data2.csv', 'norton.bucket', replace=True) + hook_s3.load_file(path_etl_hotel, 'data/nyc_hotel_data2.csv', 'norton.bucket', replace=True) + hook_s3.load_file(path_etl_housing, 'data/nyc_housing_data2.csv', 'norton.bucket', replace=True) + hook_s3.load_file(path_hotspot, 'data/nyc_hot_spot2.csv', 'norton.bucket', replace=True) + + hook_s3.load_file(path_abb_nb, 'data/nyc_abb_vis_aws.ipynb', 'norton.bucket', replace=True) + hook_s3.load_file(path_abb_nb_out, 'data/nyc_abb_vis_aws_output.ipynb', 'norton.bucket', replace=True) + #directory = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/') + + +t_files_to_s3 = PythonOperator( + task_id='files_to_s3', + python_callable=files_to_s3, + provide_context=False, + dag=dag +) + + +#DAGS Flowing Chart +t0 >> t1a >> t1b >> t1c >> t_final >> t1e >> t_files_to_s3 +t0 >> t2a >> t2b >> t2c >> t_final, +t0 >> t3a >> t3b >> t3c >> t_final, +t0 >> t4a >> t4b >> t4c >> t_final, +t0 >> t5a >> t5b >> t5c >> t_final, +t0 >> t6a >> t6b >> t6c >> t_final, + + + diff --git a/dags/nyc_data_all_in_one_local_1.py b/dags/nyc_data_all_in_one_local_1.py new file mode 100644 index 00000000..478928dc --- /dev/null +++ b/dags/nyc_data_all_in_one_local_1.py @@ -0,0 +1,500 @@ +from airflow.operators.python_operator import PythonOperator +from airflow.operators.dummy_operator import DummyOperator +from airflow.operators.bash_operator import BashOperator +import pandas as pd +from datetime import timedelta +from airflow import DAG +from sqlalchemy import create_engine +import requests +from datetime import datetime +import os + + +mysqluser = os.environ.get('mysql_user') +mysqlkey = os.environ.get('mysql_key') +postgreuser = os.environ.get('postgres_user') +postgreskey = os.environ.get('postgres_key') + + +default_args = { + 'owner': 'Norton_Li', + 'start_date': datetime.now(), + #'start_date': datetime.days_ago(2), + 'email': ['nortonlyr@gmail.com'], + 'email_on_failure': False, + 'email_on_retry': False, + 'retries': 2, + 'retry_delay': timedelta(minutes=1) +} + + +dag = DAG( + dag_id='airbnb_nyc_opendata_correlation_study_updated6', + default_args=default_args, + #chedule_interval=timedelta(days=1), + description='Airbnb NYC data and NYC open data of 2019 study', + ) + + +t0 = DummyOperator( + task_id='nyc_data_etl_start_here', + retries=1, + dag=dag +) + + +path_abb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/abb_nyc_housing_2019_data.csv') +path_etl_abb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/abb_nyc_housing_2019_data2.csv') + +def get_nyc_abb_data(): + """ + get the nyc airbnb data + """ + url = 'https://s3.amazonaws.com/norton.bucket/airflow_project/AB_NYC_2019.csv' + response = requests.get(url) + with open(path_abb, 'wb') as f: + f.write(response.content) + + +t1a = PythonOperator( + task_id = 'get_nyc_abb_data', + python_callable=get_nyc_abb_data, + provide_context=False, + dag=dag, +) + + +def abb_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + abb_df = pd.read_csv(path_abb) + + abb_df2 = abb_df.drop(columns=['id', 'name', 'host_name', 'last_review']) + abb_df2 = abb_df2.rename(columns={"neighbourhood_group": "borough"}) + abb_df2.to_csv(path_etl_abb) + + +t1b = PythonOperator( + task_id='abb_data_etl', + python_callable=abb_data_etl, + provide_context=False, + dag=dag, +) + + +def abb_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey + "@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_abb, delimiter=',') + df.to_sql(name='nyc_abb', con=conn, schema='airflow_project', if_exists='replace') + + +t1c = PythonOperator( + task_id='abb_to_mysql', + python_callable=abb_csv_to_mysql, + dag=dag, +) + + +def abb_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_abb, delimiter=',') + df.to_sql(name='nyc_airbb', con=conn, schema='nyc_data', if_exists='replace') + + +t1d = PythonOperator( + task_id='abb_to_postgres', + python_callable=abb_csv_to_postgres, + dag=dag, +) + +path_abb_nb = os.path.join(os.path.dirname(os.path.dirname(__file__)),'jupyter_nb/nyc_abb_vis.ipynb') +t1e = BashOperator( + task_id='vis_w_jupyter_nb', + bash_command='jupyter nbconvert --to notebook --execute {}'.format(path_abb_nb) + + ' --output nyc_abb_vis{{ ds }}.ipynb', + dag=dag, +) + + +############################################################### +#NYC_Park_Data +path_park = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_park_data.csv') +path_etl_park = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_park_data2.csv') + +def get_park_data(): + """ + NYC park information dataset based on 2019 + """ + nyc_park_url = 'https://data.cityofnewyork.us/api/views/ghu2-eden/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_park_url) + with open(path_park, 'wb') as file: + file.write(response.content) + + +t2a = PythonOperator( + task_id='get_nyc_park_data', + python_callable=get_park_data, + provide_context=False, + dag=dag, +) + + +def nyc_park_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_ht_df = pd.read_csv(path_park) + nyc_ht_df = nyc_ht_df.drop(columns=['the_geom', 'GISPROPNUM', 'OBJECTID', 'OMPPROPID', 'DEPARTMENT', + 'PERMITDIST', 'PERMITPARE', 'PARENTID', 'LOCATION','COMMUNITYB','COUNCILDIS', 'PRECINCT', 'ZIPCODE','RETIRED', + 'EAPPLY', 'PIP_RATABL', 'GISOBJID', 'CLASS', 'COMMISSION', 'ACQUISITIO', 'ADDRESS', 'JURISDICTI', 'MAPPED', + 'NAME311', 'PERMIT', 'SIGNNAME','SUBCATEGOR', 'URL','NYS_ASSEMB','NYS_SENATE', 'US_CONGRES', 'GlobalID']) + nyc_ht_df.columns = ['borough', 'acres', 'typecatego', 'waterfront'] + nyc_ht_df = nyc_ht_df.set_index('borough') + nyc_ht_df.to_csv(path_etl_park) + + +t2b = PythonOperator( + task_id='etl_nyc_park', + python_callable=nyc_park_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_park_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey + "@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_park, delimiter=',') + df.to_sql(name='nyc_park', con=conn, schema='airflow_project', if_exists='replace') + + +t2c = PythonOperator( + task_id='park_to_mysql', + python_callable=nyc_park_csv_to_mysql, + dag=dag +) + + +def nyc_park_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_park, delimiter=',') + df.to_sql(name='nyc_park', con=conn, schema='nyc_data', if_exists='replace') + + +t2d = PythonOperator( + task_id='park_to_postgres', + python_callable=nyc_park_csv_to_postgres, + dag=dag, +) + + +############################################################### +#NYC_Shooting_Data +path_shooting = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_shooting_data.csv') +path_etl_shooting = os.path.join(os.path.dirname(os.path.dirname(__file__)),'data/nyc_shooting_data2.csv') + +def get_shooting_data(): + """ + NYC shooting cases dataset 2019 + """ + nyc_shooting_url = 'https://data.cityofnewyork.us/api/views/5ucz-vwe8/rows.csv?accessType=DOWNLOAD&api_foundry=true' + response = requests.get(nyc_shooting_url) + with open(path_shooting, 'wb') as file: + file.write(response.content) + + +t3a = PythonOperator( + task_id='get_nyc_shooting_data', + python_callable=get_shooting_data, + provide_context=False, + dag=dag, +) + + +def nyc_shooting_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_s_df = pd.read_csv(path_shooting) + nyc_s_df = nyc_s_df.drop(columns=['INCIDENT_KEY', 'JURISDICTION_CODE', 'LOCATION_DESC', + 'STATISTICAL_MURDER_FLAG', 'PERP_AGE_GROUP', 'PERP_SEX', 'PERP_RACE', + 'VIC_AGE_GROUP', 'VIC_AGE_GROUP', 'VIC_RACE', + 'X_COORD_CD', 'Y_COORD_CD']) + nyc_s_df.columns = ['occur_date', 'occur_time', 'borough', 'precinct', 'vic_sex','latitude', 'longitude'] + nyc_s_df = nyc_s_df.set_index('occur_date') + nyc_s_df.to_csv(path_etl_shooting) + + +t3b = PythonOperator( + task_id='etl_nyc_shooting', + python_callable=nyc_shooting_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_shooting_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey +"@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_shooting, delimiter=',') + df.to_sql(name='nyc_shooting', con=conn, schema='airflow_project', if_exists='replace') + + +t3c = PythonOperator( + task_id='shooting_to_mysql', + python_callable=nyc_shooting_csv_to_mysql, + dag=dag +) + + +def nyc_shooting_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_shooting, delimiter=',') + df.to_sql(name='nyc_shooting', con=conn, schema='nyc_data', if_exists='replace') + + +t3d = PythonOperator( + task_id='shooting_to_postgres', + python_callable=nyc_shooting_csv_to_postgres, + dag=dag, +) + + +############################################################### +#NYC_hotel_Data +path_hotel = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hotel_data.csv') +path_etl_hotel = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hotel_data2.csv') + +def get_hotel_data(): + """ + NYC hotel information dataset based on 2019 + """ + nyc_hotel_url = 'https://data.cityofnewyork.us/api/views/tjus-cn27/rows.csv?accessType=DOWNLOAD&api_foundry=true' + response = requests.get(nyc_hotel_url) + with open(path_hotel, 'wb') as file: + file.write(response.content) + + +t4a = PythonOperator( + task_id='get_nyc_hotel_data', + python_callable=get_hotel_data, + provide_context=False, + dag=dag, +) + + +def nyc_hotel_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + + nyc_ht_df = pd.read_csv(path_hotel) + nyc_ht_df = nyc_ht_df.drop(columns=['PARID', 'BOROCODE', 'BLOCK', 'LOT', 'TAXYEAR', 'STREET NUMBER', + 'STREET NAME', 'BLDG_CLASS', 'TAXCLASS', 'OWNER_NAME', 'Community Board', + 'Council District', 'Census Tract', 'BIN', 'BBL', 'NTA']) + nyc_ht_df.columns = ['postcode', 'borough', 'latitude', 'longitude'] + nyc_ht_df = nyc_ht_df.set_index('postcode') + nyc_ht_df.to_csv(path_etl_hotel) + + +t4b = PythonOperator( + task_id='etl_nyc_hotel', + python_callable=nyc_hotel_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_hotel_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey + "@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_hotel, delimiter=',') + df.to_sql(name='nyc_hotel', con=conn, schema='airflow_project', if_exists='replace') + + +t4c = PythonOperator( + task_id='hotel_to_mysql', + python_callable=nyc_hotel_csv_to_mysql, + dag=dag, +) + + +def nyc_hotel_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_hotel, delimiter=',') + df.to_sql(name='nyc_hotel', con=conn, schema='nyc_data', if_exists='replace') + + +t4d = PythonOperator( + task_id='hotel_to_postgres', + python_callable=nyc_hotel_csv_to_postgres, + dag=dag, +) + + +############################################################### +#NYC_public_housing_Data +path_housing = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_housing_data.csv') +path_etl_housing = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_housing_data2.csv') + +def get_housing_data(): + """ + NYC public housing location dataset + """ + nyc_housing_url = 'https://data.cityofnewyork.us/api/views/hg8x-zxpr/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_housing_url) + with open(path_housing, 'wb') as file: + file.write(response.content) + + +t5a = PythonOperator( + task_id='get_nyc_housing_data', + python_callable=get_housing_data, + provide_context=False, + dag=dag, +) + + +def nyc_housing_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_h_df = pd.read_csv(path_housing) + nyc_h_df = nyc_h_df.drop(columns=['Program Group', 'Project Name', 'Project Start Date', 'Project Completion Date', + 'Building ID','Number', 'Street','Postcode','BBL', 'BIN', 'Community Board', 'Council District', + 'Census Tract', 'NTA - Neighborhood Tabulation Area','Latitude', 'Longitude', + 'Latitude (Internal)', 'Longitude (Internal)', 'Building Completion Date', + 'Reporting Construction Type', 'Extended Affordability Only', 'Prevailing Wage Status', + 'Studio Units','1-BR Units', '2-BR Units', '3-BR Units', '4-BR Units', '5-BR Units', + '6-BR+ Units','Unknown-BR Units','Counted Rental Units', 'Counted Homeownership Units', + 'All Counted Units']) + nyc_h_df.columns = ['project_id', 'borough', 'extremely_low_income_units', 'very_low_income_units', + 'low_income_units', 'moderate_income_units', 'middle_income_units', + 'other_income_units', 'total_units'] + nyc_h_df = nyc_h_df.set_index('project_id') + nyc_h_df.to_csv(path_etl_housing) + + +t5b = PythonOperator( + task_id='etl_nyc_housing', + python_callable=nyc_housing_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_housing_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey + "@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_housing, delimiter=',') + df.to_sql(name='nyc_housing', con=conn, schema='airflow_project', if_exists='replace') + + +t5c = PythonOperator( + task_id='housing_to_mysql', + python_callable=nyc_housing_csv_to_mysql, + dag=dag +) + + +def nyc_pb_housing_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_housing, delimiter=',') + df.to_sql(name='nyc_pb_housing', con=conn, schema='nyc_data', if_exists='replace') + + +t5d = PythonOperator( + task_id='housing_to_postgres', + python_callable=nyc_pb_housing_csv_to_postgres, + dag=dag, +) + + +############################################################### +#NYC_hotel_Data +path_hotspot = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hot_spot.csv') +path_etl_hotspot = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'data/nyc_hot_spot2.csv') + +def get_hot_spot_data(): + """ + NYC free hot spot information dataset based on 2019 + """ + nyc_hot_spot_url = 'https://data.cityofnewyork.us/api/views/varh-9tsp/rows.csv?accessType=DOWNLOAD' + response = requests.get(nyc_hot_spot_url) + with open(path_hotspot, 'wb') as file: + file.write(response.content) + + +t6a = PythonOperator( + task_id='get_nyc_hot_spot_data', + python_callable=get_hot_spot_data, + provide_context=False, + dag=dag, +) + + +def nyc_hot_spot_data_etl(): + """ + Data cleaning with download file and drop some unused columns + """ + nyc_hs_df = pd.read_csv(path_hotspot) + nyc_hs_df = nyc_hs_df.drop(columns=['BORO', 'the_geom', 'OBJECTID', 'NAME', 'LOCATION', + 'X', 'Y', 'LOCATION_T', 'REMARKS', 'SSID','SOURCEID', 'NTACODE', 'NTANAME', 'COUNDIST', + 'POSTCODE', 'BOROCD', 'CT2010', 'BOROCT2010', 'BIN', 'BBL', 'DOITT_ID']) + nyc_hs_df.columns = ['type', 'provider','latitude', 'longitude', 'city', 'activated', 'borough_code','borough' ] + nyc_hs_df = nyc_hs_df.set_index('type') + nyc_hs_df.to_csv(path_etl_hotspot) + + +t6b = PythonOperator( + task_id='etl_nyc_hot_spot', + python_callable=nyc_hot_spot_data_etl, + provide_context=False, + dag=dag, +) + + +def nyc_hot_spot_csv_to_mysql(): + conn = create_engine("mysql+pymysql://" + mysqluser + ":" + mysqlkey + "@localhost:3306/airflow_project") + df = pd.read_csv(path_etl_hotspot, delimiter=',') + df.to_sql(name='nyc_hot_spot', con=conn, schema='airflow_project', if_exists='replace') + + +t6c = PythonOperator( + task_id='hot_spot_to_mysql', + python_callable=nyc_hot_spot_csv_to_mysql, + dag=dag +) + + +def nyc_hot_spot_csv_to_postgres(): + conn = create_engine("postgresql+psycopg2://" + postgreuser + ":" + postgreskey + "@localhost:5432/airflow_p") + df = pd.read_csv(path_etl_hotspot, delimiter=',') + df.to_sql(name='nyc_hot_spot', con=conn, schema='nyc_data', if_exists='replace') + + +t6d = PythonOperator( + task_id='hot_spot_to_postgres', + python_callable=nyc_hot_spot_csv_to_postgres, + dag=dag, +) + +t_final = DummyOperator( + task_id='data_etl_completed', + retries=1, + dag=dag +) + + +#DAGS Flowing Chart +t0 >> t1a >> t1b >> t1c >> t_final >> t1e, +t0 >> t1a >> t1b >> t1d >> t_final, +t0 >> t2a >> t2b >> t2c >> t_final, +t0 >> t2a >> t2b >> t2d >> t_final, +t0 >> t3a >> t3b >> t3c >> t_final, +t0 >> t3a >> t3b >> t3d >> t_final, +t0 >> t4a >> t4b >> t4c >> t_final, +t0 >> t4a >> t4b >> t4d >> t_final, +t0 >> t5a >> t5b >> t5c >> t_final, +t0 >> t5a >> t5b >> t5d >> t_final, +t0 >> t6a >> t6b >> t6c >> t_final, +t0 >> t6a >> t6b >> t6d >> t_final, + + diff --git a/data/abb_nyc_housing_2019_data.csv b/data/abb_nyc_housing_2019_data.csv new file mode 100644 index 00000000..f01fb02e --- /dev/null +++ b/data/abb_nyc_housing_2019_data.csv @@ -0,0 +1,49081 @@ +id,name,host_id,host_name,neighbourhood_group,neighbourhood,latitude,longitude,room_type,price,minimum_nights,number_of_reviews,last_review,reviews_per_month,calculated_host_listings_count,availability_365 +2539,Clean & quiet apt home by the park,2787,John,Brooklyn,Kensington,40.64749,-73.97237,Private room,149,1,9,2018-10-19,0.21,6,365 +2595,Skylit Midtown Castle,2845,Jennifer,Manhattan,Midtown,40.75362,-73.98377,Entire home/apt,225,1,45,2019-05-21,0.38,2,355 +3647,THE VILLAGE OF HARLEM....NEW YORK !,4632,Elisabeth,Manhattan,Harlem,40.80902,-73.9419,Private room,150,3,0,,,1,365 +3831,Cozy Entire Floor of Brownstone,4869,LisaRoxanne,Brooklyn,Clinton Hill,40.68514,-73.95976,Entire home/apt,89,1,270,2019-07-05,4.64,1,194 +5022,Entire Apt: Spacious Studio/Loft by central park,7192,Laura,Manhattan,East Harlem,40.79851,-73.94399,Entire home/apt,80,10,9,2018-11-19,0.10,1,0 +5099,Large Cozy 1 BR Apartment In Midtown East,7322,Chris,Manhattan,Murray Hill,40.74767,-73.975,Entire home/apt,200,3,74,2019-06-22,0.59,1,129 +5121,BlissArtsSpace!,7356,Garon,Brooklyn,Bedford-Stuyvesant,40.68688,-73.95596,Private room,60,45,49,2017-10-05,0.40,1,0 +5178,Large Furnished Room Near B'way ,8967,Shunichi,Manhattan,Hell's Kitchen,40.76489,-73.98493,Private room,79,2,430,2019-06-24,3.47,1,220 +5203,Cozy Clean Guest Room - Family Apt,7490,MaryEllen,Manhattan,Upper West Side,40.80178,-73.96723,Private room,79,2,118,2017-07-21,0.99,1,0 +5238,Cute & Cozy Lower East Side 1 bdrm,7549,Ben,Manhattan,Chinatown,40.71344,-73.99037,Entire home/apt,150,1,160,2019-06-09,1.33,4,188 +5295,Beautiful 1br on Upper West Side,7702,Lena,Manhattan,Upper West Side,40.80316,-73.96545,Entire home/apt,135,5,53,2019-06-22,0.43,1,6 +5441,Central Manhattan/near Broadway,7989,Kate,Manhattan,Hell's Kitchen,40.76076,-73.98867,Private room,85,2,188,2019-06-23,1.50,1,39 +5803,"Lovely Room 1, Garden, Best Area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.66829,-73.98779,Private room,89,4,167,2019-06-24,1.34,3,314 +6021,Wonderful Guest Bedroom in Manhattan for SINGLES,11528,Claudio,Manhattan,Upper West Side,40.79826,-73.96113,Private room,85,2,113,2019-07-05,0.91,1,333 +6090,West Village Nest - Superhost,11975,Alina,Manhattan,West Village,40.7353,-74.00525,Entire home/apt,120,90,27,2018-10-31,0.22,1,0 +6848,Only 2 stops to Manhattan studio,15991,Allen & Irina,Brooklyn,Williamsburg,40.70837,-73.95352,Entire home/apt,140,2,148,2019-06-29,1.20,1,46 +7097,Perfect for Your Parents + Garden,17571,Jane,Brooklyn,Fort Greene,40.69169,-73.97185,Entire home/apt,215,2,198,2019-06-28,1.72,1,321 +7322,Chelsea Perfect,18946,Doti,Manhattan,Chelsea,40.74192,-73.99501,Private room,140,1,260,2019-07-01,2.12,1,12 +7726,Hip Historic Brownstone Apartment with Backyard,20950,Adam And Charity,Brooklyn,Crown Heights,40.67592,-73.94694,Entire home/apt,99,3,53,2019-06-22,4.44,1,21 +7750,Huge 2 BR Upper East Cental Park,17985,Sing,Manhattan,East Harlem,40.79685,-73.94872,Entire home/apt,190,7,0,,,2,249 +7801,Sweet and Spacious Brooklyn Loft,21207,Chaya,Brooklyn,Williamsburg,40.71842,-73.95718,Entire home/apt,299,3,9,2011-12-28,0.07,1,0 +8024,CBG CtyBGd HelpsHaiti rm#1:1-4,22486,Lisel,Brooklyn,Park Slope,40.68069,-73.97706,Private room,130,2,130,2019-07-01,1.09,6,347 +8025,CBG Helps Haiti Room#2.5,22486,Lisel,Brooklyn,Park Slope,40.67989,-73.97798,Private room,80,1,39,2019-01-01,0.37,6,364 +8110,CBG Helps Haiti Rm #2,22486,Lisel,Brooklyn,Park Slope,40.68001,-73.97865,Private room,110,2,71,2019-07-02,0.61,6,304 +8490,"MAISON DES SIRENES1,bohemian apartment",25183,Nathalie,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94028,Entire home/apt,120,2,88,2019-06-19,0.73,2,233 +8505,Sunny Bedroom Across Prospect Park,25326,Gregory,Brooklyn,Windsor Terrace,40.65599,-73.97519,Private room,60,1,19,2019-06-23,1.37,2,85 +8700,Magnifique Suite au N de Manhattan - vue Cloitres,26394,Claude & Sophie,Manhattan,Inwood,40.86754,-73.92639,Private room,80,4,0,,,1,0 +9357,Midtown Pied-a-terre,30193,Tommi,Manhattan,Hell's Kitchen,40.76715,-73.98533,Entire home/apt,150,10,58,2017-08-13,0.49,1,75 +9518,"SPACIOUS, LOVELY FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86482,-73.92106,Private room,44,3,108,2019-06-15,1.11,3,311 +9657,Modern 1 BR / NYC / EAST VILLAGE,21904,Dana,Manhattan,East Village,40.7292,-73.98542,Entire home/apt,180,14,29,2019-04-19,0.24,1,67 +9668,front room/double bed,32294,Ssameer Or Trip,Manhattan,Harlem,40.82245,-73.95104,Private room,50,3,242,2019-06-01,2.04,3,355 +9704,Spacious 1 bedroom in luxe building,32045,Teri,Manhattan,Harlem,40.81305,-73.95466,Private room,52,2,88,2019-06-14,1.42,1,255 +9782,Loft in Williamsburg Area w/ Roof,32169,Andrea,Brooklyn,Greenpoint,40.72219,-73.93762,Private room,55,4,197,2019-06-15,1.65,3,284 +9783,back room/bunk beds,32294,Ssameer Or Trip,Manhattan,Harlem,40.8213,-73.95318,Private room,50,3,273,2019-07-01,2.37,3,359 +10452,Large B&B Style rooms,35935,Angela,Brooklyn,Bedford-Stuyvesant,40.6831,-73.95473,Private room,70,1,74,2019-05-12,0.66,2,269 +10962,"Lovely room 2 & garden; Best area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.66869,-73.9878,Private room,89,4,168,2019-06-21,1.41,3,340 +11452,Clean and Quiet in Brooklyn,7355,Vt,Brooklyn,Bedford-Stuyvesant,40.68876,-73.94312,Private room,35,60,0,,,1,365 +11708,Cute apt in artist's home,44145,Tyrome,Brooklyn,Bushwick,40.70186,-73.92745,Entire home/apt,85,2,231,2019-06-22,1.96,2,22 +11943,Country space in the city,45445,Harriet,Brooklyn,Flatbush,40.63702,-73.96327,Private room,150,1,0,,,1,365 +12048,LowerEastSide apt share shortterm 1,7549,Ben,Manhattan,Lower East Side,40.71401,-73.98917,Shared room,40,1,214,2019-07-05,1.81,4,188 +12192,ENJOY Downtown NYC!,46978,Edward,Manhattan,East Village,40.7229,-73.98199,Private room,68,2,245,2019-06-21,2.08,2,96 +12299,Beautiful Sunny Park Slope Brooklyn,47610,Abdul,Brooklyn,South Slope,40.66278,-73.97966,Entire home/apt,120,3,15,2019-05-27,0.39,1,345 +12303,1bdr w private bath. in lofty apt,47618,Yolande,Brooklyn,Fort Greene,40.69673,-73.97584,Private room,120,7,25,2018-09-30,0.23,1,311 +12318,West Side Retreat,16800,Cyn,Manhattan,Upper West Side,40.79009,-73.97927,Private room,135,4,81,2019-06-16,0.69,1,273 +12343,BEST BET IN HARLEM,47727,Earl,Manhattan,Harlem,40.81175,-73.94478,Entire home/apt,150,7,97,2019-06-13,0.84,1,309 +12627,Entire apartment in central Brooklyn neighborhood.,49670,Rana,Brooklyn,Prospect-Lefferts Gardens,40.65944,-73.96238,Entire home/apt,150,29,11,2019-06-05,0.49,1,95 +12937,"1 Stop fr. Manhattan! Private Suite,Landmark Block",50124,Orestes,Queens,Long Island City,40.74771,-73.9474,Private room,130,3,248,2019-07-01,2.25,1,215 +12940,Charming Brownstone 3 - Near PRATT,50148,Adreinne,Brooklyn,Bedford-Stuyvesant,40.68111,-73.95591,Entire home/apt,110,7,61,2019-05-25,0.52,1,265 +13050,bright and stylish duplex,50846,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9409,Entire home/apt,115,3,11,2017-01-01,0.10,1,0 +13394,Fort Greene brownstone ,52335,Alexander,Brooklyn,Fort Greene,40.69142,-73.97376,Private room,80,3,135,2019-06-17,1.16,2,192 +13808,Blue Room for 2 in Brownstone for $1350 monthly,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93934,Private room,80,1,112,2019-06-16,1.01,3,251 +14287,Cozy 1BD on Central Park West in New York City,56094,Joya,Manhattan,Upper West Side,40.78635,-73.97008,Entire home/apt,151,2,73,2019-07-07,0.63,1,302 +14290,* ORIGINAL BROOKLYN LOFT *,56104,James,Brooklyn,Williamsburg,40.7042,-73.9356,Entire home/apt,228,3,82,2019-05-17,0.70,1,140 +14314,Greenpoint Place...Has It All! ,56246,Jeanne,Brooklyn,Greenpoint,40.73506,-73.95392,Entire home/apt,144,2,328,2019-06-29,2.82,1,234 +14322,Beautiful Apartment in Manhattan!!!,56284,Francesca,Manhattan,Kips Bay,40.73961,-73.98074,Entire home/apt,200,7,19,2019-03-25,0.22,1,257 +14377,Williamsburg 1 bedroom Apartment,56512,Joanna,Brooklyn,Williamsburg,40.70881,-73.9593,Entire home/apt,150,30,105,2019-06-22,0.90,1,30 +14991,"Great Location, Manhattan Bedroom!",59023,Bianca,Manhattan,Lower East Side,40.72004,-73.99104,Private room,110,5,19,2019-05-18,0.17,1,301 +15220,Best Location in NYC! TIMES SQUARE!,59734,Luiz,Manhattan,Hell's Kitchen,40.75531,-73.99293,Private room,69,2,289,2019-06-09,2.49,2,294 +15338,Room in Greenpoint Loft w/ Roof,32169,Andrea,Brooklyn,Greenpoint,40.72401,-73.93788,Private room,49,4,138,2019-06-04,1.19,3,320 +15341,**Bright Nolita Apt w Doorman/Elevators/Gym**,60049,Ted,Manhattan,SoHo,40.7221,-73.99775,Entire home/apt,180,30,21,2019-06-29,0.30,1,154 +15385,"Very, very cozy place",60252,Cristina,Brooklyn,Williamsburg,40.71185,-73.96204,Private room,80,2,42,2019-06-30,0.38,1,263 +15396,Sunny & Spacious Chelsea Apartment,60278,Petra,Manhattan,Chelsea,40.74623,-73.9953,Entire home/apt,375,180,5,2018-11-03,0.12,1,180 +15711,2 bedroom - Upper East Side-great for kids,61491,D,Manhattan,Upper East Side,40.77065,-73.95269,Entire home/apt,250,2,66,2019-03-30,0.57,2,231 +16326,Comfortable 4-bedroom apt in family house.,63588,Dimitri,Brooklyn,Prospect Heights,40.67811,-73.96428,Entire home/apt,200,30,143,2019-01-26,1.33,2,297 +16338,Double Room w Private Deck Clinton Hill Best Area,63613,Patricia,Brooklyn,Clinton Hill,40.69,-73.96788,Private room,55,7,27,2017-09-30,0.23,2,292 +16421,Your Heaven in Hells Kitchen,63924,Mark,Manhattan,Hell's Kitchen,40.75979,-73.99119,Private room,52,30,191,2019-05-16,1.65,1,191 +16458,Light-filled 2B duplex in the heart of Park Slope!,64056,Sara,Brooklyn,Park Slope,40.67343,-73.98338,Entire home/apt,225,3,4,2017-09-24,0.16,1,0 +16580,"Sunny, Modern room in East Village!",64442,Reka,Manhattan,East Village,40.72649,-73.97904,Private room,80,1,338,2019-07-01,4.72,2,72 +16595,*HAVEN LOFT - Entire Floor - Six Windows - Bricks*,64522,Daniel,Brooklyn,Williamsburg,40.70933,-73.96792,Entire home/apt,275,1,148,2019-06-23,1.40,1,362 +16821,Large Room in Amazing East Village Apt,4396,Casey,Manhattan,East Village,40.72298,-73.98474,Private room,99,1,106,2019-06-21,1.26,2,336 +16974,SpaHa Loft: Enormous and Bright,65837,Robin,Manhattan,East Harlem,40.80164,-73.93922,Entire home/apt,225,4,190,2019-06-23,1.64,1,215 +17037,Lovely EV Artist's Home,66035,Anna,Manhattan,East Village,40.72162,-73.98008,Entire home/apt,230,9,49,2018-05-14,0.43,1,116 +17092,Cool Room in Hell's Kitchen,66243,Enzo,Manhattan,Hell's Kitchen,40.76342,-73.98865,Private room,51,7,23,2019-06-01,0.43,1,88 +17693,"HARLEM, NEW YORK WELCOMES YOU!!",68428,Tye And Etienne,Manhattan,Washington Heights,40.83139,-73.94095,Private room,65,2,49,2019-06-18,1.60,2,336 +17747,BLUE TRIM GUEST HOUSE,68599,George,Brooklyn,Clinton Hill,40.68346,-73.96374,Private room,105,2,105,2019-06-26,0.92,1,304 +18127,Charming East Village One Bedroom Flat,69829,Josh,Manhattan,East Village,40.72828,-73.98801,Entire home/apt,190,5,21,2019-01-02,0.20,1,224 +18152,Manhattan Room,69942,Victoria,Manhattan,Upper East Side,40.76865,-73.95058,Private room,200,1,142,2019-07-06,1.50,1,322 +18198,Little King of Queens,70091,Justin,Queens,Woodside,40.75038,-73.90334,Private room,70,30,25,2019-05-31,0.22,1,324 +18590,Fort Greene Retreat on the Park,71512,Blaise,Brooklyn,Fort Greene,40.6932,-73.97267,Private room,95,3,143,2019-06-16,1.28,1,132 +18728,Beautiful Meatpacking District Loft,71876,DAVID And RICK,Manhattan,Chelsea,40.74138,-74.00197,Private room,150,3,167,2019-05-28,1.65,1,295 +18764,Cozy 2 BR in Williamsburg ,72014,Lulú,Brooklyn,Williamsburg,40.71154,-73.96112,Private room,145,3,61,2019-04-22,0.54,4,238 +19159,Spacious luminous apt Upper West NYC,73051,Sybilla,Manhattan,Harlem,40.82915,-73.95136,Entire home/apt,110,31,54,2019-03-23,0.49,1,209 +19169,Entire 2 Bedroom - Large & Sunny,73128,JoLynn,Manhattan,Lower East Side,40.71851,-73.98892,Entire home/apt,285,5,70,2019-06-30,0.62,1,328 +19282,"Sunny, Spacious Top Floor Haven",73469,Gaia,Brooklyn,Flatbush,40.65401,-73.96323,Entire home/apt,130,6,16,2019-06-15,0.15,1,38 +19319,Private room Great Deal at Lower East Side,44263,Ana,Manhattan,Lower East Side,40.7114,-73.98794,Private room,94,30,94,2019-04-08,0.84,1,188 +19601,perfect for a family or small group,74303,Maggie,Brooklyn,Brooklyn Heights,40.69723,-73.99268,Entire home/apt,800,1,25,2016-08-04,0.24,1,7 +19812,2 bedroom Williamsburg Apt - Bedford L stop,74857,Starlee,Brooklyn,Williamsburg,40.71833,-73.95748,Entire home/apt,105,3,61,2018-08-09,0.53,1,272 +20299,Oh glorious spring!,62407,Edward,Manhattan,East Village,40.72334,-73.9844,Private room,60,3,194,2019-06-30,1.73,1,26 +20300,Great Location for NYC,76627,Pas,Manhattan,East Village,40.72912,-73.98057,Private room,50,1,2,2016-02-14,0.05,1,0 +20611,Cozy Bedroom in Williamsburg 3 BR,72014,Lulú,Brooklyn,Williamsburg,40.71156,-73.96218,Private room,85,3,174,2019-06-22,1.54,4,288 +20724,Sunny room+Pvte office in huge loft,961342,Augustin,Brooklyn,Bushwick,40.70032,-73.9383,Private room,65,4,24,2019-05-26,0.28,1,317 +20734,Spacious Prospect Heights Apartment,78460,Sean & Lynette,Brooklyn,Prospect Heights,40.68233,-73.97261,Entire home/apt,131,4,166,2019-06-27,3.40,1,207 +20755,"Large Parlor Room, Landmark Home 1 block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.966,Private room,98,7,16,2019-05-31,0.20,6,185 +20853,2-bed brownstone duplex + garden,79070,Tracy,Brooklyn,Prospect Heights,40.68035,-73.97162,Entire home/apt,250,7,21,2019-05-21,0.30,1,158 +20913,Charming 1 bed GR8 WBurg LOCATION!,79402,Christiana,Brooklyn,Williamsburg,40.70984,-73.95775,Entire home/apt,100,5,168,2018-07-22,1.57,1,0 +21293,Sunny Apartment in Artist Home,44145,Tyrome,Brooklyn,Bushwick,40.70093,-73.92609,Entire home/apt,105,3,118,2019-06-18,1.05,2,9 +21456,Light-filled classic Central Park ,42032,Dana,Manhattan,Upper West Side,40.79764,-73.96177,Entire home/apt,140,3,81,2019-07-07,0.71,1,198 +21644,"Upper Manhattan, New York",82685,Elliott,Manhattan,Harlem,40.82803,-73.94731,Private room,89,1,1,2018-10-09,0.11,1,365 +21794,COZY QUIET room 4 DOOGLERS!,83257,Olan,Manhattan,Chelsea,40.74008,-74.00271,Private room,98,30,30,2019-05-01,0.27,2,364 +22911,The Stuydio Modern and Light Filled,87773,Shelly,Brooklyn,Bedford-Stuyvesant,40.68413,-73.92357,Entire home/apt,125,7,139,2018-10-28,1.23,2,311 +22918,loft bed - near transportation-15min to times sq,32294,Ssameer Or Trip,Manhattan,Harlem,40.82279,-73.95139,Private room,60,3,11,2019-01-03,0.87,3,219 +23135,House On Henry (3rd FLR Suite),11481,Annette,Brooklyn,Carroll Gardens,40.67967,-74.00154,Entire home/apt,175,2,233,2019-06-24,2.09,3,342 +23501,Monkey Retreat Manhattan,63318,Meka,Manhattan,Washington Heights,40.83927,-73.94281,Private room,65,2,68,2012-11-01,0.60,1,312 +23686,2000 SF 3br 2bath West Village private townhouse,93790,Ann,Manhattan,West Village,40.73096,-74.00319,Entire home/apt,500,4,46,2019-05-18,0.55,2,243 +24143,"Williamsburg—Steps To Subway, Private Bath&Balcony",97219,Seth,Brooklyn,Williamsburg,40.71332,-73.94177,Private room,101,3,335,2019-05-29,3.02,1,152 +24285,Beautiful Duplex Apartment,97797,Brenda,Brooklyn,Park Slope,40.66941,-73.98109,Entire home/apt,220,30,88,2018-11-02,0.79,1,9 +25235,Large 2 Bedroom Great for Groups!,87773,Shelly,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92377,Entire home/apt,125,90,162,2019-06-28,1.46,2,137 +25406,"Modern Brooklyn Apt., August sublet",105538,Erik,Brooklyn,Williamsburg,40.71459,-73.94844,Entire home/apt,80,30,29,2018-05-26,0.40,1,222 +25696,"1,800 sq foot in luxury building",107628,Dena,Manhattan,Harlem,40.8092,-73.94421,Private room,100,2,170,2019-06-23,1.61,1,346 +26012,Sunny 2-story Brooklyn townhouse w deck and garden,109589,Jessica,Brooklyn,Gowanus,40.68157,-73.98989,Entire home/apt,200,30,19,2017-03-17,0.20,1,208 +26362,"Times Square, Safe, Clean and Cozy!",59734,Luiz,Manhattan,Hell's Kitchen,40.75527,-73.99291,Private room,59,2,334,2019-06-16,3.00,2,279 +26520,"Cozy Room #3, Landmark Home 1 Block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68698,-73.96572,Private room,125,2,19,2019-06-02,0.20,6,250 +26559,Beautiful Apartment East Village,112793,Sally,Manhattan,East Village,40.7288,-73.98192,Entire home/apt,140,7,12,2017-12-11,0.13,1,164 +26785,Park Slope Green Guest House,42273,Dani,Brooklyn,South Slope,40.66853,-73.98912,Entire home/apt,120,30,467,2018-12-30,4.22,2,192 +26933,2 BR / 2 Bath Duplex Apt with patio! East Village,72062,Bruce,Manhattan,East Village,40.7254,-73.98157,Entire home/apt,350,2,7,2017-08-09,0.06,4,298 +26954,NYC fabulous views Manhattan's eye,115157,Nimo,Manhattan,Kips Bay,40.74294,-73.98009,Entire home/apt,199,5,38,2015-12-02,0.38,1,260 +26969,2 story family home in Williamsburg,115307,Alexandra,Brooklyn,Williamsburg,40.71942,-73.95748,Entire home/apt,325,3,324,2019-06-23,3.01,1,107 +27006,Comfortable UWS 2-BD Family-Friendly Brownstone,115560,Stacy,Manhattan,Upper West Side,40.77823,-73.97637,Entire home/apt,235,6,27,2019-04-27,0.27,1,199 +27385,Great Large 1 BR apt in East Village!,72062,Bruce,Manhattan,East Village,40.72555,-73.97965,Entire home/apt,225,1,115,2019-06-07,1.05,4,299 +27531,Eveland Private Bed & Living Room w/ Own Entrance,118971,Evelyn,Brooklyn,South Slope,40.66831,-73.98604,Private room,99,2,354,2019-05-20,3.20,3,20 +27644,Sugar Hill Rest Stop ,119510,Emma,Manhattan,Harlem,40.82754,-73.94919,Entire home/apt,170,2,195,2019-07-01,2.03,1,318 +27659,3 Story Town House in Park Slope,119588,Vero,Brooklyn,South Slope,40.66499,-73.97925,Entire home/apt,400,2,16,2018-12-30,0.24,2,216 +27759,apartment next to Central park,119900,Sylvie,Manhattan,Upper West Side,40.77842,-73.97556,Entire home/apt,170,7,13,2019-06-26,0.12,1,224 +27883,East Village Sanctuary,120223,Jen,Manhattan,East Village,40.72245,-73.98527,Entire home/apt,100,4,25,2011-12-10,0.23,1,0 +28321,Large 1 BR in a 3 BR Brooklyn apt. next to Q Trn.,65091,Kay,Brooklyn,Prospect-Lefferts Gardens,40.65593,-73.96053,Private room,75,2,9,2018-10-05,0.08,1,324 +28396,Modern Apt with Spectacular Views,6197784,Jo,Brooklyn,Williamsburg,40.71923,-73.96468,Private room,90,1,9,2011-09-18,0.08,1,245 +28907,Garden studio in the Upper East Sid,124352,Lisa,Manhattan,Upper East Side,40.778,-73.94822,Entire home/apt,150,5,21,2017-08-15,0.19,1,189 +29012,Secluded Master Bedroom in Beautiful Huge Apt,124797,Fernando And Lenin,Manhattan,Washington Heights,40.85879,-73.93128,Private room,85,15,36,2017-08-17,0.33,1,307 +29013,B & B Room 1,35935,Angela,Brooklyn,Bedford-Stuyvesant,40.68332,-73.9547,Private room,70,3,63,2019-05-14,0.58,2,310 +29455,ACCOMMODATIONS GALORE #1,126607,Laurine,Manhattan,Harlem,40.81618,-73.94894,Entire home/apt,120,3,155,2019-06-20,1.42,3,213 +29628,Sunny Room in New Condo,127608,Chris,Brooklyn,Clinton Hill,40.68414,-73.96351,Private room,89,3,260,2019-07-03,2.35,1,278 +29683,Stylish & Sleek Apartment Near SoHo!,125857,Uli,Manhattan,East Village,40.72392,-73.99143,Entire home/apt,185,5,73,2019-06-25,0.66,1,209 +30031,NYC artists’ loft with roof deck,129352,Sol,Brooklyn,Greenpoint,40.73494,-73.9503,Private room,50,3,193,2019-05-20,1.86,1,0 +30927,Unique & Charming small 1br Apt. LES,120335,Cs,Manhattan,Lower East Side,40.71341,-73.98856,Entire home/apt,105,3,32,2019-06-14,0.29,1,16 +31130,Most Central Location!,117287,Lara,Manhattan,Hell's Kitchen,40.76754,-73.98399,Private room,130,2,50,2019-05-26,0.45,3,234 +31555,Luminous Beautiful West Village Studio,135619,Tom,Manhattan,West Village,40.73442,-74.00303,Entire home/apt,115,29,26,2019-07-01,0.25,1,12 +31902,Sanctuary in East Flatbush,137292,Sunder,Brooklyn,Flatlands,40.63188,-73.93248,Private room,77,2,2,2019-01-01,0.02,1,178 +31994,Room with En Suite Bathroom & Deck,137814,Waldemar,Brooklyn,Clinton Hill,40.6873,-73.9634,Private room,76,2,426,2019-06-24,3.89,3,275 +32023,FLAT MACDONOUGH,137974,Khem,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93662,Entire home/apt,125,3,227,2019-06-23,2.09,2,163 +32037,Huge Private Floor at The Waverly,116599,Sahr,Brooklyn,Clinton Hill,40.6863,-73.96765,Private room,135,4,84,2019-07-01,0.77,3,365 +32100,"Modern Greenpoint, Brooklyn Apt",138579,Ali+Scott,Brooklyn,Greenpoint,40.73409,-73.95348,Entire home/apt,250,29,3,2017-07-30,0.03,1,34 +32289,"Sun-drenched, artsy modernist 1 BDRM duplex",139612,Elisabeth,Brooklyn,Williamsburg,40.71561,-73.94835,Entire home/apt,199,3,10,2018-06-11,0.10,1,280 +32331,"Sunny, Cobble Hill Apartment",139874,Sarah,Brooklyn,Cobble Hill,40.6857,-73.99183,Entire home/apt,140,2,4,2016-04-24,0.04,1,0 +32363,Fully Furnished Basement Apartment,140025,Fredah,Queens,Flushing,40.74028,-73.83168,Private room,140,2,1,2011-09-19,0.01,1,1 +32965,FLAT MACDONOUGH GARDEN,137974,Khem,Brooklyn,Bedford-Stuyvesant,40.68281,-73.93524,Entire home/apt,115,3,124,2019-06-20,1.72,2,170 +32969,Light filled Williamsburg Apartment,142833,Katherine,Brooklyn,Williamsburg,40.71596,-73.93938,Entire home/apt,160,3,11,2019-07-02,0.11,1,188 +33009,Retreat in Williamsburg,143027,Ming,Brooklyn,Williamsburg,40.71492,-73.95935,Entire home/apt,195,4,240,2019-06-17,2.19,1,214 +33014,NYC Zen,143048,Paula,Manhattan,East Village,40.72354,-73.98295,Entire home/apt,195,3,30,2019-06-17,0.28,1,248 +33223,Cozy BR in Wiliamsburg 3 Bedroom,72014,Lulú,Brooklyn,Williamsburg,40.71165,-73.96087,Private room,80,3,200,2019-06-22,1.86,4,262 +34760,Sunny Room in Old Historical Brooklyn Townhouse,149929,Obed,Brooklyn,Fort Greene,40.69101,-73.97312,Private room,44,8,27,2019-06-29,1.05,5,280 +35526,Sun Filled Classic West Village Apt,120291,Karen,Manhattan,West Village,40.73474,-74.00101,Private room,156,4,79,2019-06-22,0.74,1,307 +36121,Lg Rm in Historic Prospect Heights,62165,Michael,Brooklyn,Prospect Heights,40.67386,-73.96641,Private room,85,15,9,2013-05-10,0.09,1,339 +36133,Classic Artist Loft Williamsburg,142684,White,Brooklyn,Williamsburg,40.71536,-73.96057,Private room,125,3,155,2019-06-13,1.61,1,1 +36442,Great location. Spacious on PROSPECT PARK,137432,Paz,Brooklyn,Prospect Heights,40.6741,-73.96595,Entire home/apt,115,15,4,2018-08-27,0.05,1,269 +36647,Private Bdrm/Bathrm. New! Elevator!,157798,Irene,Manhattan,East Harlem,40.79295,-73.93997,Private room,69,2,34,2017-05-29,0.32,1,10 +36703,"Sunny, clean 1 bdrm in W. Village",158284,Karene,Manhattan,West Village,40.73226,-74.00401,Entire home/apt,225,45,134,2019-03-31,1.24,1,312 +36934,Great location in Williamsburg,159370,Viviana,Brooklyn,Williamsburg,40.71363,-73.96398,Entire home/apt,125,6,27,2018-12-27,0.25,1,189 +38638,Light and Airy Upper East Side 1 BDR apartment,92788,Sara,Manhattan,Upper East Side,40.77711,-73.9527,Entire home/apt,219,4,126,2019-06-26,1.16,2,290 +38663,Luxury Brownstone in Boerum Hill,165789,Sarah,Brooklyn,Boerum Hill,40.68559,-73.98094,Entire home/apt,475,3,23,2018-12-31,0.27,1,230 +39267,CENTRAL PARK LOFT all for YOU,168417,Marie,Manhattan,Upper East Side,40.77456,-73.95323,Entire home/apt,99,1,234,2019-06-08,2.60,2,164 +39282,Indie-Chic Share In Williamsburg,168525,Gus,Brooklyn,Williamsburg,40.71088,-73.95055,Private room,69,4,202,2019-05-28,1.86,2,53 +39593,"A room w/ a Manhattan view, longer stay",110506,Myung,Queens,Sunnyside,40.74559,-73.92313,Private room,79,30,28,2019-04-12,0.26,1,126 +39704,"Private, Large & Sunny 1BR w/W&D",170510,Renée,Brooklyn,Bedford-Stuyvesant,40.68306,-73.94659,Entire home/apt,135,2,309,2019-06-22,2.86,2,3 +40039,Luxurious Condo in DUBMO with View,171851,Henry,Brooklyn,DUMBO,40.70207,-73.98571,Private room,250,3,14,2011-04-25,0.13,1,189 +40453,Charming & Cozy midtown loft any WEEK ENDS !!!,174025,Sylvia,Manhattan,Upper East Side,40.76123,-73.9642,Entire home/apt,250,3,4,2016-09-23,0.08,1,365 +41348,* Spacious GARDEN Park Slope Duplex* 6 people max,180083,Syl,Brooklyn,Gowanus,40.66858,-73.99083,Entire home/apt,250,2,80,2019-07-06,2.17,1,0 +41513,Convenient cozy cheap apt Manhattan,181167,Lorenzo,Manhattan,Harlem,40.82704,-73.94907,Entire home/apt,80,3,2,2015-11-02,0.04,1,0 +42580,Parlor Room In Victorian Townhouse,137814,Waldemar,Brooklyn,Clinton Hill,40.68843,-73.96408,Private room,70,2,294,2019-06-24,3.47,3,336 +42729,House On Henry (2nd FLR Suite),11481,Annette,Brooklyn,Carroll Gardens,40.6783,-74.00135,Entire home/apt,165,2,150,2019-06-18,1.40,3,342 +42882,New York room with a view,185978,Newyorkroomwithaview,Staten Island,St. George,40.64524,-74.08088,Private room,70,2,166,2019-06-13,1.66,1,312 +43957,Sunny cozy room in Brklyn townhouse,177536,Tessa,Brooklyn,Bushwick,40.70641,-73.91765,Private room,50,2,47,2019-06-19,0.94,1,37 +44096,Room with a View,190409,Waundell,Bronx,Highbridge,40.83232,-73.93184,Private room,40,1,219,2019-07-04,2.04,3,353 +44161,Light+Open+Airy+Rustic+Modern Loft,193360,Young,Brooklyn,Williamsburg,40.71045,-73.9677,Entire home/apt,150,2,193,2016-07-06,1.78,1,177 +44212,West Inn 2 - East Village,72062,Bruce,Manhattan,East Village,40.72518,-73.98034,Private room,125,1,84,2019-06-23,0.78,4,310 +44221,Financial District Luxury Loft,193722,Coral,Manhattan,Financial District,40.70666,-74.01374,Entire home/apt,196,3,114,2019-06-20,1.06,1,0 +44229,BROOKLYN VICTORIAN STYLE SUITE.....,181376,Carol,Brooklyn,Fort Greene,40.69098,-73.97113,Private room,110,2,213,2019-06-24,2.00,2,321 +44288,Your own Lovely West Village Studio,193637,Sara,Manhattan,West Village,40.73756,-74.00405,Entire home/apt,170,3,86,2019-06-01,0.80,1,246 +44506,ACCOMMODATIONS GALORE#3. 1-5 GUESTS,126607,Laurine,Manhattan,Harlem,40.81526,-73.94791,Entire home/apt,165,3,80,2019-05-26,0.75,3,231 +45393,Greenwich Village Stylish Apartment,201297,Myrna,Manhattan,West Village,40.73423,-74.0046,Entire home/apt,150,26,38,2016-04-20,0.36,1,225 +45542,Clean and Cozy Harlem Apartment,202249,Campbell,Manhattan,Harlem,40.82374,-73.9373,Entire home/apt,100,2,18,2018-12-17,1.79,1,0 +45556,"Fort Greene, Brooklyn: Center Bedroom",67778,Doug,Brooklyn,Fort Greene,40.68863,-73.97691,Private room,65,2,206,2019-06-30,1.92,2,0 +45910,Beautiful Queens Brownstone! - 5BR,204539,Mark,Queens,Ridgewood,40.70382,-73.89797,Entire home/apt,350,8,10,2019-05-12,0.11,5,365 +45936,Couldn't Be Closer To Columbia Uni,867225,Rahul,Manhattan,Morningside Heights,40.80549,-73.95924,Private room,99,4,122,2019-05-14,1.18,2,233 +45940,Bright Spacious Luxury Condo,204724,Miyoung,Brooklyn,Williamsburg,40.71627,-73.9587,Entire home/apt,200,4,33,2019-04-08,0.58,1,1 +46544,Park Slope haven 15 mins from Soho,8198,Monica,Brooklyn,Park Slope,40.67994,-73.97863,Entire home/apt,150,5,52,2019-06-05,0.50,1,18 +46723,SAFE AND BEAUTIFUL ACCOMODATION,209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.67992,-73.9475,Private room,90,3,126,2019-05-19,1.17,4,343 +46911,Large Room in private Brownstone in Park Slope,210746,Kathleen R.,Brooklyn,Prospect Heights,40.67868,-73.97307,Private room,120,3,51,2019-06-24,0.48,3,250 +47199,"NEW YORK CITY, 1 BDRM.(NEAR CENTRAL PARK & METRO)",212722,Teresa,Manhattan,Upper East Side,40.76834,-73.95334,Private room,75,3,199,2019-06-24,1.85,1,326 +47362,"LARGE, COMFY 1BDR W/CHARACTER!!!",214148,Robert,Brooklyn,Bedford-Stuyvesant,40.68237,-73.9415,Entire home/apt,175,26,30,2012-09-03,0.29,1,364 +47370,Chelsea Studio sublet 1 - 2 months,214287,Alex,Manhattan,Chelsea,40.74031,-73.99999,Entire home/apt,125,3,3,2015-07-17,0.03,1,0 +47926,LUX APT IN TIMES SQUARE NEW BUILDING,218404,Claudia,Manhattan,Hell's Kitchen,40.76307,-73.99665,Entire home/apt,275,1,41,2019-06-26,0.38,1,299 +48719,Designer 1 BR Duplex w/ Terrace- Spectacular Views,221873,Shane,Manhattan,Lower East Side,40.71882,-73.98852,Entire home/apt,299,2,109,2019-06-15,1.04,1,207 +50447,Lovely Apt & Garden; Legal; Best Area; Amenities,9744,Laurie,Brooklyn,South Slope,40.6693,-73.98804,Entire home/apt,135,5,151,2019-06-22,1.43,3,162 +51438,1 Bedroom in 2 Bdrm Apt- Upper East,236421,Jessica,Manhattan,Upper East Side,40.77333,-73.95199,Private room,130,14,0,,,2,0 +51485,Lower East Side $57~/night,236655,Erina,Manhattan,Lower East Side,40.72319,-73.99201,Private room,83,1,285,2019-06-22,2.69,1,7 +51572,Prime Location in Manhattan,237329,Lee,Manhattan,Chelsea,40.74859,-73.99671,Private room,123,1,375,2019-06-18,3.52,1,328 +51850,( F) Excellent/Pvt Rm,27848,Jullett,Queens,Jamaica,40.67252,-73.76597,Private room,55,2,52,2019-05-20,0.49,2,365 +53137,"Quiet, sunny Midtown Manhattan apt.",240360,Marlaine,Manhattan,Hell's Kitchen,40.76244,-73.99271,Entire home/apt,195,5,10,2019-07-01,1.01,1,0 +53196,Big Room/Washer-Dryer/Wifi/AC/JMZ,247432,Charlotte,Brooklyn,Bedford-Stuyvesant,40.69546,-73.93503,Private room,80,2,11,2017-11-13,0.48,1,0 +53469,cozy studio with parking spot,204539,Mark,Queens,Middle Village,40.71722,-73.87856,Entire home/apt,98,30,33,2015-05-09,0.31,5,240 +53470,Clean and convenient 2BR apartment,204539,Mark,Queens,Ridgewood,40.70234,-73.89816,Private room,140,7,6,2015-10-08,0.06,5,365 +53477,3 floors of luxury!,204539,Mark,Queens,Middle Village,40.71546,-73.87854,Entire home/apt,265,7,38,2019-04-27,0.38,5,365 +54158,The Institute—Heart of Williamsburg,10889,Bob,Brooklyn,Williamsburg,40.7195,-73.95976,Entire home/apt,249,2,358,2019-06-20,3.44,2,164 +54453,MIDTOWN WEST - Large alcove studio,255583,Anka,Manhattan,Hell's Kitchen,40.76548,-73.98474,Shared room,105,6,10,2014-01-07,0.09,1,363 +54466,Beautiful Uptown Manhattan apartmnt,253385,Douglas,Manhattan,Harlem,40.80234,-73.95603,Private room,200,30,0,,,1,365 +54508,Sml Rm in pr Brst Park Sl great for Med/students,210746,Kathleen R.,Brooklyn,Prospect Heights,40.6787,-73.97262,Private room,100,2,226,2019-06-06,2.12,3,250 +54544,City Room - Private Penthouse Apt.,256161,Wayne,Manhattan,Harlem,40.81035,-73.94598,Entire home/apt,121,1,104,2019-06-22,1.00,5,247 +54626,Cozy bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83075,-73.93058,Private room,45,1,138,2019-06-30,1.45,3,323 +54860,Great apartment with private bathroom and entrance,258164,Jenny,Manhattan,East Harlem,40.79958,-73.94275,Private room,100,5,204,2019-06-23,1.92,1,192 +55467,Private Garden Apt • New Renovation,260709,Paul,Brooklyn,Williamsburg,40.71625,-73.93845,Entire home/apt,140,2,253,2019-07-02,3.04,1,125 +55498,Modern comfort in art infused landmark Brownstone,262138,Tami,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93549,Private room,71,2,23,2019-07-01,0.22,1,91 +55668,"NOHO/EAST VILLAGE, PRIVATE 1/2 BATH",88209,Jason,Manhattan,NoHo,40.72773,-73.99134,Private room,130,2,115,2018-12-05,1.17,1,75 +55737,Sleek & Comfortable Soho Apt,263414,Pete,Manhattan,West Village,40.72861,-74.0049,Entire home/apt,199,5,129,2019-05-19,1.22,1,286 +55959,Spacious Williamsburg Share w/ LOFT BED,168525,Gus,Brooklyn,Williamsburg,40.70979,-73.95162,Private room,69,4,82,2019-06-10,1.13,2,60 +55982,Cozy 2 br in sunny Fort Greene apt,264928,Sally,Brooklyn,Fort Greene,40.68656,-73.97525,Private room,68,3,37,2018-12-31,0.35,1,0 +56467,Cozy East Village Railroad 1 Bed!,267593,Leonardo,Manhattan,East Village,40.72752,-73.98432,Entire home/apt,130,1,204,2019-07-01,2.04,1,192 +56525,1 Bedroom Loft w/ Private Roof Deck,268014,Alex,Brooklyn,Greenpoint,40.729,-73.95829,Entire home/apt,195,2,69,2019-06-13,0.65,1,58 +56859,City Room - Private & Comfy Bedroom,256161,Wayne,Manhattan,Harlem,40.81219,-73.94499,Private room,64,1,192,2019-06-03,1.84,5,245 +57166,Elegant NYC Pad,272006,Vasili,Queens,Ditmars Steinway,40.77185,-73.90502,Entire home/apt,140,2,17,2019-06-17,0.16,1,292 +57297,"Clean & bright 1BR in Cobble Hill, GREAT location!",199392,S.M.,Brooklyn,Cobble Hill,40.68926,-73.99386,Entire home/apt,159,2,222,2019-06-24,2.12,1,279 +57468,"Modern, Large East Village Loft",239208,Ori,Manhattan,East Village,40.72821,-73.98701,Entire home/apt,189,3,205,2019-06-23,1.96,1,0 +57618,"Great new apt, close to everything",274557,Ana,Manhattan,Hell's Kitchen,40.7672,-73.98508,Entire home/apt,250,3,94,2019-06-09,0.96,1,3 +57740,Quiet & Clean Retreat in the City,275459,I,Manhattan,East Village,40.73012,-73.99053,Entire home/apt,239,3,7,2019-05-24,0.07,1,351 +57754,Stylish Large Gramercy Loft!,275578,R,Manhattan,Flatiron District,40.7403,-73.98498,Entire home/apt,305,2,108,2019-06-30,1.09,1,201 +57874,The Brownstone-Luxury 1 Bd Apt/NYC,276291,Simon,Manhattan,Harlem,40.80931,-73.94343,Entire home/apt,155,3,222,2019-06-26,2.10,2,232 +58059,PRIVATE Room on Historic Sugar Hill,277379,Agnes,Manhattan,Harlem,40.8251,-73.94287,Private room,60,1,458,2019-07-03,4.58,2,258 +58062,South Slope Green,277394,Linda,Brooklyn,Windsor Terrace,40.6585,-73.98397,Private room,135,2,21,2019-05-17,0.26,1,272 +58467,"17 Flr. Manhattan Views, Nr. Subway",279797,Dave,Manhattan,Roosevelt Island,40.76193,-73.9501,Private room,120,7,17,2019-05-08,0.30,1,341 +59014,"Spacious 1BR, Adorable Clean Quiet",282927,Drica,Manhattan,Lower East Side,40.72052,-73.98589,Entire home/apt,150,3,41,2019-01-02,0.39,1,244 +59121,"Nice, clean, safe, convenient 3BR",204539,Mark,Queens,Ridgewood,40.70411,-73.89934,Entire home/apt,140,14,1,2012-09-17,0.01,5,365 +59642,Franklin St Flat in Trendy Greenpoint Brooklyn,274782,Betty,Brooklyn,Greenpoint,40.73401,-73.95967,Entire home/apt,135,2,69,2019-05-19,0.67,1,12 +59709,"Artistic, Cozy, and Spacious w/ Patio! Sleeps 5",186084,Ricardo & Ashlie,Manhattan,Chinatown,40.71756,-73.99503,Entire home/apt,250,4,18,2019-07-01,0.18,2,265 +59855,One bedroom Apt. in NYC,288031,Leslie,Manhattan,Midtown,40.7589,-73.96991,Entire home/apt,250,30,82,2016-01-05,0.78,1,0 +60164,"Beautiful, elegant 3 bed SOHO loft",289653,Harrison,Manhattan,SoHo,40.72003,-74.00262,Entire home/apt,500,4,94,2019-06-23,0.99,1,329 +60457,Spacious Greenwich Village Apt,99212,Jessica,Manhattan,Greenwich Village,40.73194,-73.99474,Entire home/apt,225,5,10,2019-05-11,0.10,1,91 +60611,SpaHa Studio Monthly Rental,292204,Blanca,Manhattan,East Harlem,40.79163,-73.94573,Entire home/apt,125,28,183,2018-09-29,1.83,2,365 +60666,City Room - Private Luxury Suite,256161,Wayne,Manhattan,Harlem,40.8118,-73.94434,Private room,92,1,189,2019-06-11,1.82,5,253 +60673,Private Room/bath Luxurious Harlem,249372,Cynthia,Manhattan,Harlem,40.81583,-73.94707,Private room,175,2,1,2018-10-07,0.11,1,365 +60680,The gem of the East Village,292630,Mich,Manhattan,East Village,40.72654,-73.98049,Entire home/apt,99,2,127,2019-06-20,1.22,1,320 +60794,"Bright and spacious, garden below!",293394,Rachel,Manhattan,Upper West Side,40.80021,-73.96071,Entire home/apt,195,4,4,2017-08-25,0.04,1,0 +60948,ACCOMMODATIONS GALORE #2,126607,Laurine,Manhattan,East Harlem,40.80942,-73.93936,Entire home/apt,140,3,135,2019-06-20,1.30,3,192 +61167,Colorful Private One Bedroom Apt,295760,Greta,Manhattan,Little Italy,40.71961,-73.9954,Entire home/apt,135,2,21,2015-12-12,0.20,1,0 +61224,Huge Chelsea Loft,291112,Frank,Manhattan,Chelsea,40.74358,-74.00027,Entire home/apt,500,2,35,2017-07-27,0.34,1,348 +61406,Great room in great location,297176,Bethania,Manhattan,Harlem,40.80335,-73.9575,Private room,80,14,10,2019-06-01,2.21,2,0 +61492,Exclusive Room with Private Bath in LES,297769,Tunji,Manhattan,Chinatown,40.71445,-73.9908,Private room,120,4,171,2019-06-23,1.80,2,353 +61509,"Quiet, clean midtown apt w. elevato",23619,Anna/Fonzy,Manhattan,Midtown,40.75749,-73.96897,Entire home/apt,110,200,92,2019-04-30,0.90,1,140 +62095,BK Sweet Suite w/Kitchen&FullBath,281764,Colette&Sean,Brooklyn,East Flatbush,40.64446,-73.9503,Entire home/apt,65,3,238,2019-06-14,2.30,1,2 +62427,Great East Village Apartment Rental,303882,Brie,Manhattan,East Village,40.7268,-73.99079,Entire home/apt,130,50,56,2019-05-26,0.58,1,56 +62430,BROWNSTONE SUNDRENCHED BEAUTY,197755,Sheila,Brooklyn,Bushwick,40.688,-73.9171,Entire home/apt,99,3,111,2019-06-22,2.13,1,68 +62452,A SpeciaL!! Private Room in NY,303939,Lissette,Staten Island,Tompkinsville,40.63536,-74.08537,Private room,36,2,193,2019-06-25,1.85,6,360 +62461,B NYC Staten Alternative...,303939,Lissette,Staten Island,Tompkinsville,40.63627,-74.08543,Private room,37,2,147,2019-06-10,1.44,6,0 +62787,C Private Room By The Ferry,303939,Lissette,Staten Island,Tompkinsville,40.63518,-74.08546,Private room,37,2,177,2019-07-02,1.71,6,320 +62891,Smallest House In The Village,306545,Olivia,Manhattan,East Village,40.72477,-73.98161,Entire home/apt,175,3,185,2019-05-24,1.78,2,326 +62903,Beautiful modern studio apartment in heart of NYC,306605,Daniel,Manhattan,Chelsea,40.74238,-73.99567,Entire home/apt,205,9,62,2019-06-21,0.70,2,76 +62925,Beautiful Landmarked Duplex,306739,Maya,Brooklyn,Greenpoint,40.72945,-73.95511,Entire home/apt,285,3,124,2019-06-16,1.22,3,279 +63299,BROOKLYN > Guest Room w/ Queen Bed in Williamsburg,308875,Scott,Brooklyn,Williamsburg,40.70763,-73.95177,Private room,59,2,181,2019-06-23,1.77,2,15 +63320,D Private Che@p Room 2 Explore NYC,303939,Lissette,Staten Island,Tompkinsville,40.63481,-74.08519,Private room,36,2,333,2019-07-02,3.19,6,340 +63360,Safe cute near subway& Manhattan NY NY retro style,307962,Dennis & Naoko,Queens,Astoria,40.75384,-73.91433,Entire home/apt,99,5,441,2019-06-24,4.50,1,226 +63546,Large and Cozy Private Bedroom,308652,Antonín,Brooklyn,Kensington,40.64106,-73.97426,Private room,39,1,45,2019-05-16,0.46,2,365 +63573,Small tidy bedroom in duplex,310458,Emily,Brooklyn,Park Slope,40.66793,-73.98327,Private room,60,14,9,2016-08-29,0.09,2,0 +63588,LL3,295128,Carol Gloria,Bronx,Clason Point,40.81309,-73.85514,Private room,90,2,0,,,7,349 +63610,DOMINIQUE'S NY mini efficiency* wifi*metro*quiet,310670,Vie,Bronx,Eastchester,40.88057,-73.83572,Entire home/apt,105,2,38,2019-06-27,0.50,13,365 +63657,"Private, Large & Sunny Top Floor Apt w/W&D",170510,Renée,Brooklyn,Bedford-Stuyvesant,40.68236,-73.94314,Entire home/apt,135,2,248,2019-06-25,2.39,2,11 +63693,Cottage in the Village,306545,Olivia,Manhattan,East Village,40.72185,-73.98246,Entire home/apt,390,5,143,2019-06-19,1.38,2,316 +63719,BEDROOM1 FOR RENT 10min from Manhan,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.68503,-73.95385,Private room,70,3,36,2018-08-19,0.41,4,281 +63913,"HOSTING YOUR SUNNY, SPACIOUS NYC ROOM",312288,Paula,Manhattan,Inwood,40.86648,-73.9263,Private room,75,7,0,,,2,323 +64000,Williamsburg near soho. / loftbed,312722,Kristian & Di,Brooklyn,Williamsburg,40.7069,-73.95467,Private room,60,17,14,2019-01-07,0.14,4,362 +64015,Prime East Village 1 Bedroom,146944,David,Manhattan,East Village,40.72807,-73.98594,Entire home/apt,200,3,0,,,1,0 +64107,BROOKLYN STUDIO APARTMENT,313317,Niya,Brooklyn,Crown Heights,40.6778,-73.94339,Private room,100,3,279,2019-06-24,2.69,1,301 +64277,BEDROOM2 FOR RENT 10min from Manh,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.68317,-73.94701,Private room,70,4,18,2019-01-02,0.22,4,189 +64314,cozy bedroom in lovely garden apt,314256,Debbie,Brooklyn,Crown Heights,40.6761,-73.9529,Private room,110,6,50,2019-05-26,3.55,1,0 +64365,Crown Heights Garden Apt.,314582,Anthony,Brooklyn,Crown Heights,40.67586,-73.95155,Private room,60,2,227,2019-06-27,2.27,2,287 +64707,Amazing Sunny & Breezy Home In the Heart of NYC,7310,Tilly,Manhattan,Little Italy,40.71702,-73.99811,Entire home/apt,90,14,1,2019-01-02,0.16,1,14 +64837,ENJOY Downtown NYC!!,46978,Edward,Manhattan,East Village,40.72321,-73.98157,Private room,68,2,203,2019-06-23,1.96,2,86 +65019,Charming UWS Treehouse Apt,317809,Claire,Manhattan,Upper West Side,40.77956,-73.98098,Entire home/apt,115,2,210,2019-07-06,2.10,1,261 +65268,Share a HOME - $75 for 1 bdrm/++ for 2 - Brooklyn,319092,Juhli,Brooklyn,Bedford-Stuyvesant,40.68276,-73.95264,Private room,75,5,64,2019-01-05,0.67,1,68 +65556,"Room in S3rd/Bedford, Williamsburg",320422,Marlon,Brooklyn,Williamsburg,40.71368,-73.9626,Private room,60,3,0,,,1,0 +65562,CHARMING EAST VILLAGE 2 (or 1) BR,320450,Mary D,Manhattan,East Village,40.72956,-73.98158,Entire home/apt,129,7,5,2019-01-03,0.15,1,231 +65615,Farmhouse Apartment in Williamsburg,320761,Valerie,Brooklyn,Williamsburg,40.71069,-73.95175,Entire home/apt,130,10,49,2019-06-29,0.48,1,152 +65660,Bright+Spacious Williamsburg Abode!,320538,Larissa,Brooklyn,Williamsburg,40.70863,-73.94641,Entire home/apt,95,4,132,2019-07-07,1.27,1,46 +65813,"Suite Sugar Hill, Harlem, Private Rm in Hosted Apt",321756,Eric,Manhattan,Harlem,40.82888,-73.94307,Private room,75,3,20,2019-01-02,0.26,1,364 +65834,Beautiful 1 Bedroom Apt Park Slope,321934,Jessica,Brooklyn,Park Slope,40.67319,-73.97323,Entire home/apt,175,2,11,2013-05-02,0.11,1,246 +66008,CHARMING CARROLL GARDENS APT.,322884,Melissa,Brooklyn,Carroll Gardens,40.67846,-73.99443,Entire home/apt,190,3,51,2019-07-01,0.57,1,288 +66026,Private Bedroom Brownstone Brooklyn,322716,Alex,Brooklyn,Crown Heights,40.6715,-73.94808,Private room,49,21,15,2019-06-30,0.15,5,331 +66251,East Village Loft with Piano & Patio,324460,Samir,Manhattan,East Village,40.72681,-73.98534,Entire home/apt,212,3,67,2019-06-25,1.31,1,51 +66275,Lower East Side Magic Room,314941,Tony,Manhattan,Lower East Side,40.71904,-73.99392,Private room,95,1,109,2019-06-23,1.11,3,364 +66451,**Fantastic Williamsburg Apt**,325389,Luis Fernando,Brooklyn,Williamsburg,40.71031,-73.9583,Entire home/apt,140,2,9,2019-02-16,0.11,1,254 +66718,West Harlem Home Base - Eco-Apt.,136227,Henning,Manhattan,Harlem,40.81322,-73.95306,Entire home/apt,135,6,187,2019-06-23,1.87,1,189 +66741,Charming Garden Apt in Park Slope,327673,Stefano,Brooklyn,Park Slope,40.67732,-73.98225,Entire home/apt,150,2,214,2019-06-23,2.08,2,263 +66974,"Lovely, Modern, Garden Apartment",329436,Jana,Brooklyn,Gowanus,40.68076,-73.9896,Entire home/apt,190,3,69,2019-07-01,0.79,2,258 +67288,Central Park 1BR sunny condo,101597,Per,Manhattan,East Harlem,40.79603,-73.94903,Entire home/apt,124,28,22,2019-06-15,0.26,1,103 +67299,Cozy Garden Apartment in Williamsburg,330347,Adrienne,Brooklyn,Williamsburg,40.71492,-73.96282,Entire home/apt,135,30,56,2019-05-06,0.56,1,42 +67397,SoHa comfort-by NW Central Park!,332189,Elise,Manhattan,Morningside Heights,40.80393,-73.95838,Private room,122,3,93,2019-06-22,0.93,1,246 +68099,Cozy room in Upper West Side,323517,Deda,Manhattan,Upper West Side,40.80082,-73.9652,Private room,109,1,104,2019-06-25,1.05,2,364 +68305,Cozy Private Room in Apartment,338454,Share,Manhattan,Harlem,40.82976,-73.94867,Private room,85,30,64,2018-07-06,0.68,1,318 +68403,The Cozy Brownstone Inn (discount)!,240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.683,-73.91981,Entire home/apt,145,3,127,2019-06-24,1.25,2,72 +68735,Prewar Penthouse w Private Terrace,342054,Violetta,Manhattan,Upper West Side,40.78971,-73.9729,Entire home/apt,195,11,30,2019-06-13,0.32,1,249 +68765,Designer 2.5 BR Loft in Carroll Gardens by Subway,282655,Jenna,Brooklyn,Carroll Gardens,40.67817,-73.99495,Entire home/apt,250,2,106,2019-06-27,1.34,3,272 +68900,Bright Beautiful Brooklyn,343250,Jason,Brooklyn,Greenpoint,40.73119,-73.95578,Private room,125,3,6,2016-11-13,0.10,1,325 +68974,Unique spacious loft on the Bowery,281229,Alicia,Manhattan,Little Italy,40.71943,-73.99627,Entire home/apt,575,2,191,2019-06-20,1.88,1,298 +69894,"Nice renovated apt, prime location!",352168,Silvia,Manhattan,Upper West Side,40.78,-73.98249,Entire home/apt,150,30,48,2019-06-11,0.55,1,35 +69921,Brooklyn Writer's Nook,155689,Joab,Brooklyn,Bushwick,40.70514,-73.91922,Private room,70,5,47,2019-06-29,0.49,1,203 +70095,Private Bedroom in Large NYC Apartment,353965,Mary And Geoff,Manhattan,Inwood,40.86713,-73.92811,Private room,90,2,120,2019-06-30,1.27,1,132 +70128,"Large, Sunny Room East Village NYC",354330,Eyal,Manhattan,East Village,40.73198,-73.98881,Private room,65,3,52,2019-01-10,0.63,1,5 +70609,Great Large 3 BR/2 Bath Duplex with Private Patio!,72062,Bruce,Manhattan,East Village,40.72542,-73.97986,Entire home/apt,500,2,48,2019-06-16,0.48,4,297 +71010,All That Jazz. Uptown style on Sugar Hill.,361855,Kurt,Manhattan,Washington Heights,40.83494,-73.93869,Entire home/apt,250,3,32,2019-05-24,0.43,2,276 +71248,Bright and lovely 1 bdrm apt in LES,363834,Jennifer,Manhattan,Chinatown,40.71659,-73.98945,Entire home/apt,125,25,43,2019-06-17,0.42,1,102 +71366,Beautiful One Bed West Village - 4 Month Special,364955,Ruperto,Manhattan,West Village,40.72966,-74.00243,Entire home/apt,200,30,39,2019-06-25,0.44,1,251 +71384,Gigantic Private Brooklyn Loft!,365153,Ben,Brooklyn,Greenpoint,40.72898,-73.95552,Entire home/apt,229,1,50,2014-05-13,0.50,1,188 +71812,Condo Apartment with laundry in unit,369015,Thai,Bronx,Kingsbridge,40.87207,-73.90193,Entire home/apt,90,30,4,2019-01-02,0.35,2,346 +72190,1BR: See Central Park from Terrace!,373085,Hudson,Manhattan,Upper West Side,40.77728,-73.97818,Entire home/apt,110,13,38,2019-02-15,0.39,1,0 +72265,Private room in cozy Greenpoint,340692,Vanessa,Brooklyn,Greenpoint,40.72646,-73.95341,Private room,59,3,29,2019-06-16,0.36,1,15 +74073,Food & Music Dream Apartment in Williamsburg,211877,Daniel,Brooklyn,Williamsburg,40.71015,-73.96101,Entire home/apt,195,4,59,2019-06-23,0.60,1,71 +74240,French Garden cottage off Bedford,389924,Patty,Brooklyn,Williamsburg,40.71903,-73.9597,Entire home/apt,169,1,68,2019-06-07,0.67,2,215 +74333,Alcove Studio w/ outdoor Patio Deck,331328,Amir,Manhattan,East Harlem,40.80892,-73.93985,Entire home/apt,113,14,26,2015-11-25,0.27,3,253 +74404,Luxury 3 bed/ 2 bath apt in Harlem w/ terrace,391325,G & S,Manhattan,Harlem,40.80276,-73.9567,Entire home/apt,250,14,31,2012-08-22,0.31,1,78 +74680,One Bedroom Mini studio - Free WIFI,265109,Nazleen,Queens,Astoria,40.77635,-73.93426,Entire home/apt,115,2,198,2019-05-31,2.01,1,257 +74860,"Sunlit and Cozy Williamsburg/Greenpoint, Brooklyn",394752,Allison,Brooklyn,Greenpoint,40.72488,-73.95018,Private room,55,2,1,2011-03-28,0.01,1,0 +75193,BROOKLYN > Guest Room w/ King Bed in Williamsburg,308875,Scott,Brooklyn,Williamsburg,40.71398,-73.95763,Private room,69,2,220,2019-06-22,2.17,2,8 +75635,Bright Cozy Chinatown Studio Apt.,401696,Patricia,Manhattan,Lower East Side,40.71876,-73.98394,Entire home/apt,150,3,286,2019-06-27,2.81,1,191 +76761,Eveland the Place to Stay & Enjoy a 5-⭐️ 2bdrm,118971,Evelyn,Brooklyn,South Slope,40.66552,-73.99019,Entire home/apt,169,2,398,2019-06-28,3.97,3,182 +77765,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73749,-73.95292,Private room,179,3,36,2019-07-01,0.36,28,79 +77936,Hells Kitchen Garden of Eden,134355,Moss Owen,Manhattan,Hell's Kitchen,40.76248,-73.9913,Private room,150,3,36,2019-06-14,0.36,1,49 +78919,"Historic House Boerum Hill, BK, NYC",422561,Nancy,Brooklyn,Boerum Hill,40.68674,-73.98876,Entire home/apt,135,4,6,2016-02-05,0.10,1,0 +79067,Lovely 3 bedroom in Italianate Brownstone w/garden,425506,Bliss,Brooklyn,Clinton Hill,40.6848,-73.96219,Entire home/apt,350,6,14,2019-04-20,0.30,1,156 +79782,"Williamsburg HUGE, PRIVATE BATH - Next to Train!",430188,Pam,Brooklyn,Williamsburg,40.70516,-73.95455,Private room,120,14,76,2019-03-31,0.76,6,343 +80493,Cozy room in East Village with AC,434987,Jennifer,Manhattan,East Village,40.72329,-73.98486,Private room,71,2,182,2019-07-04,1.81,1,200 +80684,Duplex w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73776,-73.95327,Private room,349,3,8,2016-03-27,0.09,28,60 +80700,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73738,-73.95482,Private room,349,3,7,2019-05-24,0.07,28,60 +80924,Spacious 3 Bedroom Duplex in Park Slope,438133,Ellis,Brooklyn,Park Slope,40.67542,-73.98142,Entire home/apt,165,30,34,2018-09-25,0.51,2,189 +81739,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73842,-73.95312,Private room,249,3,2,2011-05-12,0.02,28,60 +82549,Columbia Castle in Brooklyn Heights,448312,Christopher,Brooklyn,Brooklyn Heights,40.6926,-73.99832,Private room,100,3,66,2016-09-16,0.68,2,0 +82550,Columbia Castle 2 BR,448312,Christopher,Brooklyn,Brooklyn Heights,40.69441,-73.99771,Entire home/apt,200,3,80,2019-06-30,0.85,2,106 +82638,"Charming Artist's Flat, East Village",449787,Sarah,Manhattan,East Village,40.72399,-73.98374,Entire home/apt,169,4,240,2019-06-06,2.40,1,276 +82928,BEAUTIFUL 2 BEDROOM APARTMENT,451545,Ruthven,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94615,Entire home/apt,185,3,46,2019-07-02,1.07,1,248 +83243,Brooklyn Cove Studio Apt w/ Garden!!,453519,Julian,Brooklyn,Bushwick,40.68949,-73.91708,Entire home/apt,65,2,228,2019-06-10,2.27,1,194 +83446,"Ft. Greene garden gem, large and convenient",454756,Leslie,Brooklyn,Fort Greene,40.68819,-73.97258,Entire home/apt,130,35,5,2018-09-03,0.05,1,135 +83722,Williamsburg penthouse with private roof cabana,456638,Sophie,Brooklyn,Williamsburg,40.7205,-73.96015,Entire home/apt,199,30,8,2018-08-26,0.11,1,30 +83847,East Village Designer's 1-BR APT,410094,Yvette,Manhattan,East Village,40.72451,-73.98094,Entire home/apt,225,2,33,2019-01-02,0.33,1,0 +84010,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73813,-73.95394,Private room,179,3,13,2019-06-27,0.14,28,81 +84059,So Much Room in Brooklyn,459054,Famous,Brooklyn,Crown Heights,40.67591,-73.94715,Entire home/apt,150,5,5,2018-07-22,0.05,1,0 +84659,Large Studio--Heart of East Village,462776,Kyle,Manhattan,East Village,40.72843,-73.98895,Entire home/apt,139,1,388,2019-06-26,3.88,1,142 +84905,Huge.Bright.Clean.Safe. Private Room,464506,Ange,Manhattan,Two Bridges,40.71271,-73.99776,Private room,95,3,223,2019-06-23,2.22,2,60 +85094,Garden 1BR/1BA Brownstone Apt - 2 blocks to subway,322716,Alex,Brooklyn,Crown Heights,40.66966,-73.94735,Entire home/apt,79,15,11,2019-01-14,0.11,5,179 +86215,MODERN SPACIOUS 2 BR APT DOWNTOWN MANHATTAN,327900,T,Manhattan,Lower East Side,40.71965,-73.98766,Entire home/apt,150,2,151,2019-06-24,1.51,2,52 +89427,The Brooklyn Waverly,116599,Sahr,Brooklyn,Clinton Hill,40.68613,-73.96536,Entire home/apt,650,5,0,,,3,365 +89621,"WONDERFUL, COMFORTABLE STUDIO",209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.68048,-73.94911,Entire home/apt,90,3,218,2019-06-28,2.26,4,324 +93313,MAISON DES SIRENES 2,25183,Nathalie,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93963,Entire home/apt,120,2,75,2019-06-23,0.76,2,237 +94035,"Modern, Safe, Clean, Bright Room in Astoria for 2",35375,Savannah,Queens,Astoria,40.75961,-73.91117,Private room,80,1,42,2019-07-06,1.21,2,365 +94209,LARGE 1BR (CONV 2BR) CROWN HEIGHTS,503800,Sadatu,Brooklyn,Crown Heights,40.67473,-73.94494,Entire home/apt,100,90,0,,,1,365 +94477,The Vernon On Greene,478395,Jason,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93185,Entire home/apt,175,2,370,2019-07-05,3.74,1,204 +94783,"Beautiful, Bright’s, Warm & Spacious 1.5BR Apt",473113,Keishera,Brooklyn,Crown Heights,40.67174,-73.95663,Entire home/apt,120,5,104,2019-06-21,1.04,1,272 +95747,Lovely 1BR in Tree-lined WBurg,509341,Tessa,Brooklyn,Williamsburg,40.71055,-73.95098,Entire home/apt,140,7,13,2016-07-18,0.13,1,0 +95883,Spacious Loft in Clinton Hill,509918,Eduardo,Brooklyn,Bedford-Stuyvesant,40.69465,-73.95458,Entire home/apt,200,5,4,2018-12-26,0.07,1,9 +96471,"The Brooklyn Waverly, One Bedroom",116599,Sahr,Brooklyn,Clinton Hill,40.68413,-73.96542,Private room,165,4,11,2019-06-07,0.11,3,365 +98330,LOVELY APARTMENT IN THE HEART OF NY,31374,Shon,Manhattan,Kips Bay,40.73877,-73.97707,Entire home/apt,125,4,1,2012-01-03,0.01,3,181 +98663,Groovy NYC Chelsea Pad,520279,Peter Michael,Manhattan,Chelsea,40.74893,-73.99544,Entire home/apt,130,30,19,2018-06-11,0.19,1,189 +99070,Comfortable Cozy Space in El Barrio,522065,Liz And Melissa,Manhattan,East Harlem,40.79406,-73.94102,Shared room,65,7,131,2019-05-26,1.31,2,0 +99085,Sunny Bklyn Jewel Fort Greene JULY - AUG 2019,522164,Wanda,Brooklyn,Fort Greene,40.68795,-73.97332,Entire home/apt,123,30,15,2019-05-01,0.15,1,189 +100002,"MANHATTAN Neat, Nice, Bright ROOM",523218,Giorgio,Manhattan,Washington Heights,40.85295,-73.93361,Private room,67,2,136,2019-06-17,1.37,1,296 +100184,Bienvenue,526653,,Queens,Queens Village,40.72413,-73.76133,Private room,50,1,43,2019-07-08,0.45,1,88 +100186,Large Brand New Park Slope 1BR,526805,Mi,Brooklyn,Gowanus,40.66918,-73.99187,Entire home/apt,130,7,98,2019-06-28,0.99,1,35 +101053,Colorful Artistic Williamsburg Apt,530032,Lee And Tara,Brooklyn,Williamsburg,40.71125,-73.95613,Private room,100,3,31,2019-03-01,0.31,1,0 +102995,UWS Brownstone Near Central Park,178043,Chas,Manhattan,Upper West Side,40.78558,-73.9696,Entire home/apt,212,21,45,2018-01-01,0.46,1,35 +103161,Artsy TopFloor Apt in PRIME BEDFORD Williamsburg,465278,Ade,Brooklyn,Williamsburg,40.71577,-73.96053,Entire home/apt,190,3,124,2019-06-26,1.76,1,359 +103311,2 BR w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73861,-73.95485,Private room,599,3,9,2018-05-19,0.09,28,60 +103806,BOHEMIAN EAST VILLAGE 2 BED HAVEN,251176,Jason,Manhattan,East Village,40.72577,-73.98745,Entire home/apt,249,5,166,2019-05-27,1.68,2,365 +105469,Oceanfront Apartment in Rockaway,547386,Michelle,Queens,Rockaway Beach,40.58615,-73.81245,Private room,70,27,13,2015-09-21,0.13,1,335 +105510,Private 1-Bedroom Apt in Townhouse,322716,Alex,Brooklyn,Crown Heights,40.67086,-73.94872,Entire home/apt,100,30,15,2019-01-05,0.16,5,282 +106363,Bright Room With A Great River View,551055,Alicia,Manhattan,Harlem,40.82773,-73.95231,Private room,60,3,380,2019-06-26,3.83,2,247 +106647,Tree lined block modern apartment,552679,Olivia,Brooklyn,Bedford-Stuyvesant,40.68505,-73.95684,Entire home/apt,135,2,86,2019-06-16,0.87,1,102 +107630,Sweet Historic Greenpoint Duplex,306739,Maya,Brooklyn,Greenpoint,40.72911,-73.95493,Entire home/apt,175,3,248,2019-06-20,2.53,3,274 +107895,Riverside Charm with Fire Place,3088389,Kai,Manhattan,Upper West Side,40.77944,-73.98567,Entire home/apt,120,5,49,2019-06-19,0.56,1,201 +110739,"Very Central, Nomad/Chelsea Loft Studio",568568,Driss,Manhattan,Midtown,40.74503,-73.98876,Entire home/apt,169,18,54,2019-07-03,0.57,1,98 +112100,Sunny 3BR Apt Ideal for Family ,572527,Marine,Brooklyn,Crown Heights,40.67539,-73.96093,Entire home/apt,165,7,3,2013-01-01,0.03,1,157 +112304,Cozy Private Room in West Harlem!,573316,Kelli,Manhattan,Harlem,40.8054,-73.95189,Private room,90,1,1,2016-01-02,0.02,1,0 +112359,UES Quiet & Spacious 1 bdrm for 4,571952,Olivia,Manhattan,Upper East Side,40.78491,-73.9508,Entire home/apt,225,2,56,2018-12-28,0.57,1,312 +112435,ALL ABOUT A VERY COMFORTABLE ROOM..,181376,Carol,Brooklyn,Fort Greene,40.69088,-73.97307,Private room,95,2,163,2019-05-24,1.66,2,331 +113265,Brooklyn- Crown Heights Garden Apt.,314582,Anthony,Brooklyn,Crown Heights,40.67555,-73.95057,Private room,55,2,247,2019-06-21,2.51,2,275 +113945,Cozy room in Time Square!,275582,Natalia,Manhattan,Hell's Kitchen,40.75835,-73.99193,Private room,85,10,116,2019-05-11,1.17,1,174 +114123,Large Park Slope Townhouse Duplex,579495,Susi,Brooklyn,South Slope,40.66527,-73.9886,Entire home/apt,199,14,27,2019-05-19,0.28,2,223 +114229,Lower East Side 2 Bedroom Apt,314941,Tony,Manhattan,Lower East Side,40.71895,-73.99434,Entire home/apt,211,1,52,2019-06-08,0.60,3,361 +114969,"Manhattan Studio, Perfect Location",582598,Andrey,Manhattan,Midtown,40.75579,-73.96699,Entire home/apt,145,6,39,2018-09-24,0.40,1,0 +115535,Sun-Drenched Hamilton Hts Jewel ,567187,Jane,Manhattan,Harlem,40.82399,-73.95328,Private room,65,14,35,2019-06-01,0.35,1,283 +115678,Your Stunning Vacation Apartment!,127772,Will,Manhattan,Harlem,40.81822,-73.94095,Entire home/apt,99,1,320,2019-06-23,3.23,1,220 +115748,1 BDRM Apt-Weekend Sublease,585166,Lilly,Queens,Astoria,40.76434,-73.92132,Entire home/apt,110,4,30,2019-06-16,0.32,1,363 +116940,ROOM WITH A KITCHENETTE,209460,Marylyn,Brooklyn,Crown Heights,40.67705,-73.94925,Entire home/apt,80,3,225,2019-06-24,2.27,4,315 +117425,"Conveniently Located, Sunny Brooklyn Heights!",593115,LuLu,Brooklyn,Brooklyn Heights,40.69263,-73.99438,Entire home/apt,150,30,95,2018-05-26,0.96,1,281 +118061,Style in Stuyvesant Heights,2248897,Roberta,Brooklyn,Bedford-Stuyvesant,40.68448,-73.92747,Entire home/apt,110,4,70,2019-06-28,0.75,1,283 +118430,Heart of Meatpacking & Chelsea,585458,Paul,Manhattan,Chelsea,40.74412,-74.00208,Private room,290,2,35,2019-01-03,0.36,1,20 +118680,Spacious East Village apt near it all,599354,Bobby,Manhattan,East Village,40.73067,-73.98702,Private room,87,2,0,,,1,0 +120362,Williamsburg apartment right by the subway,138069,Itamar,Brooklyn,Williamsburg,40.70665,-73.94061,Entire home/apt,190,4,50,2019-07-02,0.51,1,331 +121687,Spacious Brooklyn Loft - 2 Bedroom,262812,Vikram,Brooklyn,Williamsburg,40.72063,-73.95952,Entire home/apt,200,2,29,2019-06-23,0.31,1,36 +121861,"Park Slope Apt:, Spacious 2 bedroom",611716,Elizabeth,Brooklyn,Park Slope,40.67644,-73.98082,Entire home/apt,165,2,23,2016-05-02,0.23,2,7 +123784,NYC Studio for Rent in Townhouse,617990,Christopher,Manhattan,Harlem,40.80481,-73.94794,Entire home/apt,110,2,142,2019-06-16,1.44,2,301 +125053,⚡Quiet Gem w/roof deck on NY's Hottest Street⚡,622460,Justin,Manhattan,East Village,40.72533,-73.99143,Entire home/apt,395,2,70,2019-07-01,0.73,1,170 +125163,Authentic New York City Living ,622855,Rodney,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93038,Private room,99,2,38,2019-06-03,0.54,2,307 +125594,SUPER BIG AND COZY PRIVATE BEDROOM,308652,Antonín,Brooklyn,Kensington,40.64302,-73.97255,Private room,39,1,82,2019-05-19,0.94,2,365 +126443,☆Massive DUPLEX☆ 2BR & 2BTH East Village 9+ Guests,627217,Seith,Manhattan,East Village,40.72939,-73.98857,Entire home/apt,189,2,403,2019-07-07,4.10,3,201 +126816,Gorgeous Upper West Side Apartment,620288,Eric,Manhattan,Upper West Side,40.79918,-73.96607,Private room,85,1,3,2014-11-06,0.03,1,0 +127387,"Luxe, Spacious 2BR 2BA Nr Trains",23276,Katharine,Brooklyn,Gowanus,40.66862,-73.9926,Entire home/apt,260,30,3,2014-08-04,0.03,1,316 +128975,City Room - Street View Apt,256161,Wayne,Manhattan,Harlem,40.81333,-73.94453,Entire home/apt,122,1,116,2019-06-13,1.18,5,271 +131154,Cozy and Bright One Bedroom in BK,275563,Lauren,Brooklyn,Greenpoint,40.72473,-73.95199,Entire home/apt,165,2,175,2019-07-07,1.79,1,139 +132516,Forest Hills Apt minutes to midtown Manhattan,85330,Jean,Queens,Forest Hills,40.70925,-73.85262,Entire home/apt,97,3,28,2019-07-01,1.21,3,209 +132570,Spacious West Village 1 b/room King,651390,Catherine,Manhattan,West Village,40.73215,-74.00922,Entire home/apt,170,4,24,2017-12-26,0.25,1,0 +132695,Perfect Williamsburg Summer Haven,507186,Holly,Brooklyn,Williamsburg,40.71109,-73.94332,Entire home/apt,125,2,15,2016-06-06,0.15,1,0 +133025,Midtown cozy convenient,653405,Tracy,Manhattan,Murray Hill,40.7463,-73.97926,Private room,130,4,105,2019-06-06,1.07,1,193 +134934,Prime Williamsburg Apartment,652842,Giovanni,Brooklyn,Williamsburg,40.71823,-73.95849,Entire home/apt,225,10,22,2019-05-30,0.38,1,52 +135393,"Private, spacious room in Brooklyn",663764,Karen,Brooklyn,East Flatbush,40.651,-73.94886,Private room,50,2,263,2019-06-24,2.69,2,136 +135465,Garden apartment close to Manhattan,663879,Christopher,Brooklyn,Fort Greene,40.68626,-73.97598,Entire home/apt,170,3,86,2019-06-20,0.91,2,286 +135706,The Ground Studio - West Side,665013,Jeff,Manhattan,Chelsea,40.74488,-74.001,Entire home/apt,132,4,10,2017-01-01,0.10,1,0 +136493,Stunning arty 3200sf 3FLR+3BR townhome w/terrace,663384,Irena,Brooklyn,Park Slope,40.67632,-73.97616,Entire home/apt,250,7,18,2019-05-27,0.21,1,18 +138216,Sunny and Spacious Designer's Home,674970,Michael,Brooklyn,Greenpoint,40.72212,-73.94254,Entire home/apt,141,5,8,2018-07-08,0.21,1,9 +139624,"Spacious,Sunny, private one bedroom",680818,Jessica,Brooklyn,Crown Heights,40.67456,-73.95151,Entire home/apt,64,20,70,2019-01-31,0.73,1,3 +140133,Truly Amazing Oasis In The City,622866,Daniel,Brooklyn,Williamsburg,40.71363,-73.96019,Entire home/apt,249,3,150,2019-07-05,1.55,1,277 +140425,Holiday Time in NY - Oh My!!,683975,Ivy,Brooklyn,Crown Heights,40.6755,-73.95878,Private room,79,2,115,2017-05-25,1.18,1,0 +140973,"East Village, King-Sized, Charmer",686147,Dave,Manhattan,East Village,40.72274,-73.97581,Entire home/apt,185,2,69,2019-05-26,0.71,1,233 +141154,Affordable Furnished Apartment,686768,Mark,Brooklyn,Boerum Hill,40.6858,-73.9828,Entire home/apt,120,3,232,2019-06-22,2.41,1,221 +141335,Architect's Brownstone,687361,Orna,Brooklyn,Park Slope,40.67535,-73.97654,Entire home/apt,495,1,35,2018-01-13,0.41,1,355 +141890,LUXURY SOHO 2 Bedroom Apt ,689661,Allison,Manhattan,Nolita,40.72255,-73.99346,Entire home/apt,375,3,18,2013-10-01,0.21,1,0 +141984,Charming Nolita Apartment!!,630453,Vanessa,Manhattan,Nolita,40.72094,-73.99706,Entire home/apt,175,3,68,2019-06-10,0.69,1,277 +142069,"EAST VILLAGE STUDIO, sunny & quiet",277747,Josh,Manhattan,East Village,40.72485,-73.97813,Entire home/apt,150,4,22,2014-11-10,0.23,1,0 +144087,LUXURY OF THE HORIZON,616825,Rinaldo,Manhattan,Harlem,40.80473,-73.9532,Entire home/apt,259,8,17,2019-05-18,0.17,1,343 +144148,1 Bdrm in 4 Bdrm dupelx/roof deck,299755,Jonathan,Manhattan,East Village,40.72217,-73.98419,Private room,96,1,34,2016-01-05,0.58,1,0 +145064,The Heart of Prime Williamsburg,404424,Oliver,Brooklyn,Williamsburg,40.71943,-73.9565,Entire home/apt,145,7,8,2014-06-06,0.08,1,0 +145188,Parisian apartment in Chelsea,703156,Kristin,Manhattan,Chelsea,40.74249,-74.00329,Entire home/apt,200,4,0,,,1,0 +145994,Cozy 2 Bedroom with Private Garden,706418,Carolyn,Manhattan,Upper West Side,40.79264,-73.97294,Entire home/apt,95,5,2,2018-07-06,0.08,1,0 +146754,Three-bedroom house in a quiet neighborhood,709434,Meighan,Brooklyn,Windsor Terrace,40.65749,-73.97675,Entire home/apt,250,4,52,2019-04-27,0.72,1,188 +147586,Beautiful Duplex w/Private Garden,709334,Julie,Manhattan,Harlem,40.80474,-73.94688,Entire home/apt,295,2,74,2019-06-16,0.76,2,264 +148201,NYC - Sunny Greenwich Village 1br,715807,John,Manhattan,Greenwich Village,40.72831,-74.00177,Entire home/apt,175,3,18,2013-05-31,0.19,1,0 +148259,Garage Designer Loft,716064,Mihalis,Brooklyn,Williamsburg,40.71541,-73.94144,Entire home/apt,451,2,72,2019-05-11,0.86,1,331 +148825,Best City Area Columbia U Upper West Side C Park,718349,B.,Manhattan,Upper West Side,40.79765,-73.96245,Entire home/apt,165,2,191,2019-06-29,2.18,1,236 +149287,Your own apartment off Park Avenue,720320,Nancy,Manhattan,Upper East Side,40.78508,-73.95332,Entire home/apt,250,4,0,,,1,0 +149777,Artsy 1 bedroom Apt. 20 min to 42nd Grand Central!,716306,"Dee, Dre & Mama Shelley",Bronx,Woodlawn,40.89747,-73.8639,Entire home/apt,77,1,197,2019-06-23,2.49,1,309 +150804,Lower East Side 2 Bed Apt.,726333,Peter,Manhattan,Lower East Side,40.72008,-73.98404,Entire home/apt,250,4,19,2019-07-06,0.20,1,0 +151199,Astoria-Private Home NYC-,722320,Gladys & Bob,Queens,Astoria,40.75725,-73.91098,Entire home/apt,129,1,414,2019-07-03,4.34,1,245 +151478,"BIG, COMFY , PRIV. ROOM, BIG APT, YARD, GREAT LOC.",216191,M,Brooklyn,Williamsburg,40.7102,-73.94495,Private room,98,2,8,2018-12-11,0.09,4,0 +152071,Park Slope Apartment,731855,Wendy,Brooklyn,Park Slope,40.67359,-73.97904,Entire home/apt,150,2,0,,,1,8 +152078,CHARMING PRIVATE BEDROOM EAST VILLAGE,731904,Ewelina,Manhattan,East Village,40.72674,-73.9782,Private room,95,7,25,2019-02-12,0.30,1,359 +152259,City Room - Semi Private Bedroom,256161,Wayne,Manhattan,Harlem,40.81156,-73.94571,Private room,55,3,119,2019-05-28,1.22,5,333 +152263,Cozy apartment in a brownstone,732535,William,Manhattan,Harlem,40.80497,-73.95016,Entire home/apt,300,2,203,2019-07-06,2.14,3,258 +152520,Female Only Clean15min to Manhattan,733894,Lucy,Queens,Sunnyside,40.7385,-73.91806,Private room,42,40,53,2018-11-16,0.55,3,236 +153405,Greenpoint Spacious Loft,737585,Pat,Brooklyn,Greenpoint,40.72937,-73.95671,Entire home/apt,125,2,104,2019-06-16,1.09,1,22 +153780,Private E. Village Townhouse Stay,739499,Donna,Manhattan,East Village,40.72587,-73.98438,Private room,175,3,175,2019-06-28,1.80,1,236 +154934,Harlem/Hamilton Heights Cozy Room,745069,Kimberly,Manhattan,Harlem,40.82426,-73.9463,Private room,75,3,38,2018-05-08,0.42,3,365 +155296,Incredible Prime Williamsburg Loft!,656841,Meredith,Brooklyn,Williamsburg,40.71624,-73.96272,Entire home/apt,255,45,39,2019-05-02,0.50,1,89 +157673,Large Loft Style Studio Space,757166,Tokunbo,Brooklyn,Bedford-Stuyvesant,40.68101,-73.94081,Entire home/apt,72,31,88,2019-06-16,0.91,1,164 +158061,Hancock Town House!-Stuyvesant Mews,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68669,-73.91989,Private room,165,1,27,2017-10-08,0.28,4,311 +158176,Entire Apt in Heart of Williamsburg,573065,Laura,Brooklyn,Williamsburg,40.71534,-73.95914,Entire home/apt,165,5,117,2019-06-29,1.28,1,23 +158290,Clinton Hill + Free Coffee = #smile,759583,Pepe,Brooklyn,Clinton Hill,40.68288,-73.96024,Private room,75,3,43,2019-05-20,0.44,2,365 +158913,"Nice, cozy, neat apt Greenpoint,BK",762563,Lennny & Megan,Brooklyn,Greenpoint,40.72489,-73.95494,Entire home/apt,130,5,4,2015-03-13,0.05,1,0 +158955,PRIVATE and SUNNY Williamsburg Apt!,465589,Amia,Brooklyn,Williamsburg,40.70867,-73.94284,Entire home/apt,139,2,385,2019-06-29,4.00,1,222 +159749,Purple Room for 2/3 in brownstone $1450 per month,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.67963,-73.93908,Private room,88,1,64,2019-07-01,0.68,3,238 +159815,Red Room for two in Brownstone for $1355/mo,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93908,Private room,80,1,39,2019-06-24,0.41,3,218 +159913,"Chelsea living, 2BR best location",759883,Kaye,Manhattan,Chelsea,40.74346,-73.99882,Private room,150,2,37,2019-07-03,1.79,1,0 +160609,LOCATION LOCATION LOCATION UWS 60's,769247,Ligia,Manhattan,Upper West Side,40.77724,-73.98109,Entire home/apt,200,3,10,2019-01-01,0.12,1,0 +160994,In the heart of East Village,770831,James,Manhattan,East Village,40.72972,-73.97995,Entire home/apt,200,2,103,2019-06-24,1.08,1,235 +161366,Sunny 15min to Manhattan LADY only,733894,Lucy,Queens,Sunnyside,40.74102,-73.91681,Private room,42,40,41,2019-06-01,0.43,3,246 +161394,Surfer room 15mins to downtown NYC!,772300,Alain,Brooklyn,Williamsburg,40.71309,-73.94128,Private room,90,6,3,2014-08-31,0.03,1,0 +161996,Manhattan Penthouse-Max.12 guests,1856604,"Robert ""Bob""",Manhattan,Harlem,40.83096,-73.94633,Entire home/apt,295,3,227,2019-06-26,2.33,1,247 +162493,Prime Williamsburg 3 BR with Deck,776490,Andres,Brooklyn,Williamsburg,40.71323,-73.95745,Entire home/apt,450,5,37,2018-12-27,0.79,1,15 +162508,Beautiful Brooklyn Oasis ,776645,Placid,Brooklyn,Crown Heights,40.67212,-73.9506,Entire home/apt,130,2,29,2019-06-28,0.35,1,119 +163627,Blue Room in Awesome Artist's Apartment!,242506,Jsun,Brooklyn,Williamsburg,40.71023,-73.96665,Private room,89,3,205,2017-12-31,2.31,3,0 +163809,Cool & Spacious Harlem Artist Flat,781647,Jorin,Manhattan,Harlem,40.80523,-73.95139,Entire home/apt,198,5,42,2019-06-03,0.44,2,234 +163814,☆ STUDIO East Village ☆ Own bath! ☆ Sleeps 4 ☆,627217,Seith,Manhattan,East Village,40.72636,-73.98917,Entire home/apt,99,2,280,2019-07-05,2.92,3,257 +163836,Greenpoint Loft / Le Chez Andrea,32169,Andrea,Brooklyn,Greenpoint,40.72185,-73.93956,Private room,46,4,86,2019-06-08,0.89,3,350 +164989,"*SoHo: Clean, Safe, Private, Peaceful Bedroom (A)*",69439,Jade,Manhattan,SoHo,40.72351,-73.99683,Private room,140,2,54,2019-06-16,0.56,1,221 +165080,Amazing Brownstone in Best Brooklyn,787273,Smadar,Brooklyn,Carroll Gardens,40.6809,-73.99233,Entire home/apt,500,7,7,2018-08-29,0.07,1,0 +165461,Couldn't Be Closer To Columbia Uni2,867225,Rahul,Manhattan,Morningside Heights,40.80525,-73.95916,Private room,75,5,57,2019-01-01,0.59,2,201 +165824,Lady only Curtain-divided room,733894,Lucy,Queens,Sunnyside,40.74,-73.91901,Private room,33,44,31,2019-05-01,0.32,3,161 +166006,Nice Manhattan Apt Near Central Park and Subway,791287,Giancarlo,Manhattan,Upper West Side,40.80006,-73.96049,Entire home/apt,250,31,188,2018-08-23,1.94,1,259 +166172,LG Private Room/Family Friendly,792159,Wanda,Brooklyn,Bushwick,40.70283,-73.92131,Private room,60,3,480,2019-07-07,6.70,1,0 +166541,Spacious Quiet rm - 20mins to Midtown,793620,Yvette,Manhattan,Washington Heights,40.84468,-73.94303,Private room,75,2,34,2019-06-15,0.35,1,222 +166983,"3 BR, Beautiful Brooklyn Duplex",795640,Jilly,Brooklyn,Carroll Gardens,40.68252,-73.99619,Entire home/apt,350,5,6,2015-08-08,0.06,1,0 +167013,Spacious modern studio apartment in Manhattan,306605,Daniel,Manhattan,Chelsea,40.74342,-73.99483,Entire home/apt,205,9,3,2018-05-13,0.04,2,76 +167017,Gorgeous Duplex + Garden,795889,Adam,Brooklyn,Park Slope,40.67853,-73.98089,Entire home/apt,219,5,2,2014-08-31,0.03,1,0 +167222,CBG# 4Tiny room w/ huge window/AC,22486,Lisel,Brooklyn,Park Slope,40.6788,-73.97643,Private room,60,1,20,2018-08-24,0.21,6,258 +167482,Charming upper west side apartment,789257,Barbara,Manhattan,Upper West Side,40.77886,-73.98042,Entire home/apt,185,2,129,2019-06-07,1.33,1,14 +168084,Light-filled East Village Delight,800982,Chris,Manhattan,East Village,40.72578,-73.97879,Entire home/apt,190,3,147,2019-06-30,1.60,1,27 +168123,"Sunny, quiet, legal homelike suite-Pk Slope South",720558,Sara,Brooklyn,South Slope,40.66085,-73.98537,Entire home/apt,105,28,101,2019-07-01,1.06,1,167 +168546,Spacious Duplex in Brownstone!,803086,Benton,Manhattan,East Harlem,40.80113,-73.94503,Entire home/apt,250,2,11,2016-01-02,0.12,2,68 +168810,Lovely Vintage Haven—Heart of UWS,747698,Linda & Chris,Manhattan,Upper West Side,40.78569,-73.97581,Entire home/apt,175,65,11,2013-10-15,0.12,1,358 +169002,Modern Space in Charming Pre-war,805344,Alec,Manhattan,Harlem,40.82411,-73.94934,Private room,65,2,41,2019-06-16,0.43,2,59 +169152,Warehouse Loft with Garden view,806112,Julia,Brooklyn,Bedford-Stuyvesant,40.68131,-73.95332,Entire home/apt,75,2,87,2017-04-18,1.09,1,0 +169306, Affordable & Cozy ,806214,Vanessa,Bronx,University Heights,40.85811,-73.90675,Private room,37,4,117,2019-05-21,1.21,1,232 +169464,Creative Vintage Loft in S. Williamsburg,806774,Ali & SweetPea,Brooklyn,Williamsburg,40.70667,-73.96524,Entire home/apt,85,2,86,2019-05-16,0.89,2,15 +169483,Very close to Downtown Awesome Private Apartment,807642,Jeffrey,Brooklyn,Gravesend,40.60452,-73.97103,Entire home/apt,106,7,0,,,2,0 +170420,The Happy home!,812814,Lena,Manhattan,East Harlem,40.7932,-73.94007,Entire home/apt,79,2,15,2016-02-15,0.16,1,0 +170761,"Fort Greene, Brooklyn: Front Bedroom",67778,Doug,Brooklyn,Fort Greene,40.68768,-73.97611,Private room,85,2,35,2019-07-02,0.55,2,161 +171776,Gorgeous 1 bdrm in huge duplex!,803086,Benton,Manhattan,Harlem,40.80224,-73.94558,Private room,170,2,17,2015-10-01,0.18,2,88 +172700,"Sunny, cozy room in Lower East Side",302772,Cheryl,Manhattan,Lower East Side,40.71473,-73.98842,Private room,115,3,3,2016-02-15,0.04,2,337 +172870,Large Quiet Bedroom Near Columbia U,781647,Jorin,Manhattan,Harlem,40.80518,-73.95359,Private room,89,5,43,2018-01-03,0.47,2,247 +173072,Cozy Pre-War Harlem Apartment,826192,Lewis,Manhattan,Harlem,40.80827,-73.95329,Shared room,49,3,168,2019-07-06,4.60,1,248 +173151,spacious studio,826459,Jane,Brooklyn,Greenpoint,40.72901,-73.95812,Private room,91,3,241,2019-06-24,2.49,1,287 +173742,"Elegant 2-BR duplex, Union Square",829652,Donna,Manhattan,Gramercy,40.73476,-73.98452,Entire home/apt,400,2,105,2019-06-23,1.13,1,304 +174527,Cozy private family home in Bushwick,833926,Kris,Brooklyn,Bushwick,40.69055,-73.92357,Entire home/apt,150,2,11,2018-10-28,0.46,1,0 +174966,Luxury 2Bed/2.5Bath Central Park View,836168,Henry,Manhattan,Upper West Side,40.7735,-73.98697,Entire home/apt,2000,30,30,2018-05-05,0.33,11,0 +176135,Cosy Sunny 1brm in Prospect Heights,842125,Jennifer,Brooklyn,Crown Heights,40.67505,-73.95969,Entire home/apt,97,3,31,2018-10-23,0.32,1,193 +176653,East Village bedroom w rooftop,844862,Cj,Manhattan,East Village,40.72974,-73.98201,Private room,100,4,49,2019-05-07,0.51,2,43 +176962,Williamsburg Home Away From Home!,846309,Dani,Brooklyn,Williamsburg,40.70925,-73.95425,Entire home/apt,179,4,23,2019-04-13,0.24,1,25 +177421,Brand New Beautiful Duplex Apartment with Garden,848748,Sarah,Brooklyn,Greenpoint,40.72315,-73.95226,Entire home/apt,500,2,20,2019-06-24,0.21,2,127 +177495,"PRIME, Luxury, Spacious 2 Bedroom Apt in Chelsea",848960,Amit,Manhattan,Chelsea,40.73939,-73.99612,Entire home/apt,429,10,18,2019-06-24,0.90,1,0 +177606,SPACIOUS ALCOVE STUDIO/ JUNIOR ONE,849492,Kathrine,Manhattan,Kips Bay,40.74112,-73.97686,Entire home/apt,189,6,90,2019-06-23,0.95,1,303 +179670,High-end doorman bldg in the LES,21475,Milan,Manhattan,Lower East Side,40.72019,-73.98217,Private room,120,2,99,2019-06-27,1.04,1,345 +179741,Spring & Mulberry 2 Bedroom Apartment,314941,Tony,Manhattan,Nolita,40.72133,-73.99666,Entire home/apt,300,1,6,2019-06-28,0.06,3,115 +180507,Ultra Modern NYC Garden Apartment,864735,Jason,Queens,Astoria,40.75744,-73.92163,Entire home/apt,107,30,21,2018-12-01,0.22,8,200 +180792,Modern Garden Apartment in NYC,864735,Jason,Queens,Astoria,40.75695,-73.9202,Entire home/apt,95,30,24,2019-04-04,0.26,8,271 +181972,Gorgeous Entire Manhattan Townhouse,872121,Rosario,Manhattan,Harlem,40.8296,-73.94651,Entire home/apt,199,2,111,2019-06-02,1.17,1,12 +182069,Cozy studio Apartment in Upper East,39260,Mat,Manhattan,East Harlem,40.79056,-73.9468,Entire home/apt,120,2,86,2019-06-20,0.91,1,268 +182095,Historic classic central cozy Village clean NYU,872805,Mike,Manhattan,West Village,40.73631,-73.99977,Entire home/apt,199,15,66,2019-04-29,0.69,2,89 +182177,A PRIVATE FLAT / APARTMENT- $SPECIAL$,873273,Christian & Carla,Bronx,Allerton,40.86466,-73.85709,Entire home/apt,125,2,271,2019-06-20,2.84,2,347 +182649,Williamsburg bedroom by Bedford Ave,876054,Obed,Brooklyn,Williamsburg,40.71312,-73.96199,Private room,70,2,227,2019-06-18,2.40,1,37 +185266,Clean and bright with a comfortable atmosphere,889106,Lisa,Brooklyn,Williamsburg,40.71297,-73.94336,Private room,75,4,80,2019-07-06,1.55,1,0 +187488,WEST VILLAGE LRG CLEAN SUNNY PRIVATE BDRM,871727,Village,Manhattan,West Village,40.73712,-74.00166,Private room,100,30,5,2018-12-03,0.07,1,359 +187566,Historic Brooklyn Studio Apartment,279078,Andrew & Markus,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95097,Entire home/apt,99,2,187,2019-06-10,1.97,2,287 +187986,Comfort at Crossroads of Downtown,904833,Daniel,Manhattan,Chelsea,40.73862,-73.99758,Entire home/apt,250,1,2,2015-08-28,0.02,1,0 +188146,"""The Oasis"" on Bedford Williamsburg",906200,Mariana,Brooklyn,Williamsburg,40.7158,-73.95803,Entire home/apt,350,6,1,2016-01-01,0.02,1,233 +188661,"Large, sunny garden apartment.",909146,Mj,Brooklyn,Prospect Heights,40.68262,-73.97299,Entire home/apt,170,3,67,2018-10-20,0.70,1,129 +188674,UNION SQUARE/ E. VILL 1BR BEAUTIFUL,909234,Leslie,Manhattan,East Village,40.73217,-73.98801,Entire home/apt,165,1,63,2018-01-12,0.68,1,0 +189135,Hell's Kitchen Funky 80's Hideaway!,179020,Michael,Manhattan,Hell's Kitchen,40.76311,-73.99388,Private room,99,1,89,2019-07-01,1.00,1,353 +189181,Room in Chic Modern High Line Luxury- New!,912541,David,Manhattan,Chelsea,40.74695,-74.00454,Private room,255,4,1,2014-04-20,0.02,1,365 +189732,Family & Friends in New York City,489400,O'Dell,Brooklyn,East New York,40.67497,-73.87305,Entire home/apt,169,3,177,2019-06-29,1.86,1,297 +189787,Spacious & Comfy BK Brownstone,915640,Sundiata,Brooklyn,Crown Heights,40.66788,-73.94813,Entire home/apt,99,4,90,2019-06-30,0.94,1,56 +190267,Large Luxury Upper East Side Studio,918866,Marina,Manhattan,Upper East Side,40.76684,-73.95944,Entire home/apt,169,7,39,2019-07-07,0.41,1,44 +190542,Chateau Style Brooklyn Loft for Singles or Couples,920542,Farrah,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95445,Entire home/apt,160,3,42,2019-05-18,0.44,1,355 +190968,Lovely Brooklyn Brownstone 1BR!,922922,Karen,Brooklyn,Prospect Heights,40.67946,-73.96501,Entire home/apt,215,3,33,2019-05-08,0.35,1,156 +190974,Beautiful Grdn. Apt. in Park Slope,874471,Alan,Brooklyn,Park Slope,40.66944,-73.98083,Entire home/apt,130,3,179,2019-05-29,2.02,1,273 +191075,Sun-drenched East Village Penthouse,923915,Matthew,Manhattan,East Village,40.72566,-73.97748,Private room,110,3,81,2019-03-28,0.85,2,274 +193105,Columbus Circle Luxury Bldg - Private Room&Bath,936114,Marcela,Manhattan,Hell's Kitchen,40.7709,-73.99181,Private room,150,28,43,2019-06-29,0.45,2,258 +193333,Bright Private Bedroom in Williamsburg (Bedford L),302936,Melody,Brooklyn,Williamsburg,40.71943,-73.95958,Private room,65,30,52,2018-10-31,0.54,1,276 +193393,"Spacious, Kid-Friendly, and 15-20 Mins. to Midtown",938056,Mike,Queens,Sunnyside,40.74249,-73.92466,Private room,75,2,160,2019-06-25,1.68,1,65 +193853,Quiet Chelsea Studio w/Charm,48599,Anastasia,Manhattan,Chelsea,40.74033,-74.00024,Entire home/apt,149,6,23,2018-05-21,0.27,2,0 +194154,Large Room Overlooking Central Park,936830,Elina,Manhattan,Upper West Side,40.7969,-73.96128,Private room,89,6,35,2017-06-18,0.37,1,180 +195123,"Cheerful, comfortable room",940724,Susan,Manhattan,Washington Heights,40.83403,-73.94553,Private room,50,1,225,2019-06-12,2.35,1,343 +195233,Hospitality on Propsect Pk-12 yrs Hosting Legally!,949221,Dennis,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95641,Private room,43,1,401,2019-07-04,6.62,2,43 +195240,"Prospect Pk*NYC in 5 stops* Cozy,Clean & Legal!",949221,Dennis,Brooklyn,Prospect-Lefferts Gardens,40.65589,-73.95539,Private room,42,1,72,2019-06-17,0.84,2,96 +195578,Loft Style Apt in Williamsburg,304493,Erika,Brooklyn,Williamsburg,40.70275,-73.94501,Private room,85,1,46,2018-12-30,0.97,1,59 +195971,2 Beds over Bed-Stuy,953279,Tim,Brooklyn,Bedford-Stuyvesant,40.68897,-73.93569,Entire home/apt,139,3,83,2019-06-23,1.19,1,255 +195989,"Sunny, Large, Park Slope Bedroom",611716,Elizabeth,Brooklyn,Park Slope,40.67617,-73.98136,Private room,105,1,211,2019-06-15,2.21,2,252 +196010,Huge Bklyn Loft w Private Roofdeck,953565,Vanessa,Brooklyn,Park Slope,40.67595,-73.98053,Entire home/apt,265,5,15,2015-06-14,0.16,1,0 +197155,Quiet Jr Alcove Near Times Square!,960836,Vlad,Manhattan,Hell's Kitchen,40.76415,-73.99067,Entire home/apt,149,1,122,2019-06-23,1.29,1,20 +197753,Large room in elevator drman bldg,964482,Colin,Manhattan,Harlem,40.83127,-73.94718,Private room,68,2,295,2019-06-12,3.90,2,188 +197942,"Comfy, Cozy, Brooklyn close to Manhattan",289135,Toni,Brooklyn,Bedford-Stuyvesant,40.68497,-73.95592,Entire home/apt,99,3,207,2019-07-07,2.18,1,304 +199195,Modern Bedroom in Hamilton Heights,971075,Jabari,Manhattan,Harlem,40.82922,-73.94174,Private room,75,3,50,2019-03-30,0.65,2,38 +199312,Sunny Space in Williamsburg,973438,Susanne,Brooklyn,Williamsburg,40.71137,-73.94362,Private room,100,2,273,2019-06-24,2.85,1,254 +200645,Best Manhattan Studio Deal! ,933378,Edo,Manhattan,Upper East Side,40.76739,-73.9557,Shared room,90,1,0,,,1,0 +200955,STYLISH EAST VILLAGE FLAT,568325,Simone,Manhattan,East Village,40.73089,-73.98195,Entire home/apt,160,30,25,2018-04-30,0.26,1,46 +201992,Serene Park Slope Garden Apartment,988350,Andrea,Brooklyn,Park Slope,40.6755,-73.97859,Entire home/apt,190,4,105,2019-05-11,1.62,1,328 +202273,Cozy and spacious - rare for NYC!,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94934,Private room,67,4,72,2016-12-26,0.76,3,0 +203901,Beautiful UES apartment,1000477,Elizabeth,Manhattan,Upper East Side,40.7694,-73.9572,Entire home/apt,190,1,8,2016-09-18,0.08,1,0 +204065,St. James Pl Garden Studio 1block to PRATT &Gtrain,51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.96161,Entire home/apt,248,2,58,2019-06-04,0.61,6,199 +204833,"Great, spacious apt in Williamsburg",903686,Melanie,Brooklyn,Williamsburg,40.7093,-73.9497,Private room,100,6,8,2015-09-17,0.09,1,249 +204959,Comfortable. Spacious. Private Room.,464506,Ange,Manhattan,Chinatown,40.713,-73.99752,Private room,95,3,172,2019-07-02,1.84,2,64 +205043,Modern Condo in Midtown,1007558,Welcome To My Place,Manhattan,Theater District,40.75895,-73.9883,Private room,150,1,330,2019-06-20,7.14,1,111 +205485,Ideal Brooklyn Brownstone Apartment,1010242,Zora & Chris,Brooklyn,Bedford-Stuyvesant,40.68186,-73.94113,Entire home/apt,145,3,123,2019-06-11,1.29,1,287 +205735,"A Cozy Oasis in Bushwick, NY",1011426,Danielle,Brooklyn,Bushwick,40.68364,-73.91076,Private room,41,2,55,2019-04-30,0.59,1,286 +205867,Private Entrance - Private Parking,1012691,Tiffaney,Brooklyn,Williamsburg,40.71893,-73.9428,Entire home/apt,120,4,87,2019-07-03,0.99,1,263 +206071,Yankee Stadium Oasis 2 stops to Manhattan!,12221,Lori,Bronx,Concourse Village,40.82802,-73.92039,Private room,50,3,258,2019-06-25,2.70,2,276 +206316,"Sunny, Spacious Studio in Ft.Greene",1014639,Brett,Brooklyn,Fort Greene,40.68765,-73.97073,Entire home/apt,157,2,4,2018-08-27,0.18,1,0 +206772,Williamsburg Exposed Brick Loft,1017473,Evan,Brooklyn,Williamsburg,40.71413,-73.96596,Entire home/apt,195,14,31,2019-05-26,0.33,1,263 +206957,Bright Modern Charming Housebarge,1018472,Angus,Brooklyn,Sheepshead Bay,40.58422,-73.94079,Entire home/apt,70,4,128,2016-11-15,1.34,2,90 +208148,Central Bedford Avenue Apartment,1024355,Martina,Brooklyn,Williamsburg,40.71973,-73.95582,Entire home/apt,185,3,14,2015-08-31,0.15,1,0 +208889,Welcome to Brooklyn! Bed-Stuy,1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93323,Entire home/apt,145,3,30,2019-06-24,0.32,3,11 +209310,Sunnyside NYC/ AC room/ city views/ near Midtown,1031148,Iulia,Queens,Sunnyside,40.73826,-73.92458,Private room,50,28,258,2019-05-28,2.90,1,287 +211078,Greenpoint Waterfront Loft,306739,Maya,Brooklyn,Greenpoint,40.73049,-73.96115,Entire home/apt,185,3,228,2018-04-25,2.39,3,1 +211974,East Village House -- Unique!,272730,Goldi,Manhattan,East Village,40.72956,-73.97903,Entire home/apt,250,1,60,2019-07-01,0.65,1,0 +212109,2-bedroom share in heart of Greenwich Village!,666271,Susan,Manhattan,West Village,40.73854,-74.00821,Private room,80,90,9,2019-06-30,0.20,1,338 +212178,1 Bedroom Pre War apt,1094178,Jeremy,Manhattan,Theater District,40.75877,-73.98863,Entire home/apt,230,2,179,2019-06-19,1.88,1,44 +212544,Quiet One Bedroom in Park Slope,1096084,Daniel,Brooklyn,Gowanus,40.67688,-73.9859,Entire home/apt,100,7,9,2016-06-23,0.10,1,0 +213272,CreaTive Live-In Artspace/Birdsnest,293130,Meli,Brooklyn,Bushwick,40.70051,-73.92204,Private room,40,1,1,2019-04-21,0.37,1,5 +213330,RARE Penthouse Oasis featured on DesignSponge,800223,Nader,Manhattan,Lower East Side,40.71712,-73.98898,Private room,200,30,25,2018-08-29,0.49,1,0 +214917,New Clean Spacious Bed & Breakfast,1109658,Carmel,Staten Island,Emerson Hill,40.60742,-74.14388,Private room,80,2,2,2018-02-08,0.05,1,158 +215560,"Sunny, calm room in Victorian home",1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95741,Private room,79,3,152,2019-06-25,1.60,3,192 +215784,Modern Unique Studio in NYC,864735,Jason,Queens,Long Island City,40.75627,-73.9211,Entire home/apt,95,30,24,2019-03-31,0.25,8,358 +215907,"2 Bed, 2 Bath Apartment on Central Park West",1114587,Keenan & Emily,Manhattan,Upper West Side,40.79816,-73.9619,Entire home/apt,300,2,45,2019-04-22,0.47,3,31 +217580,"Luxury Furnished 1 bedro, Bay Ridge",1121193,Samuel,Brooklyn,Fort Hamilton,40.61927,-74.0307,Entire home/apt,100,30,7,2018-11-14,0.08,1,241 +218358,Your Haven in the Upper West Side,1129218,Orlando,Manhattan,Harlem,40.8078,-73.95208,Private room,80,7,19,2019-06-03,0.35,1,285 +219066,"Wonderful Studio In Brooklyn, NY!!!",447754,Yana,Brooklyn,Bensonhurst,40.61922,-73.99399,Entire home/apt,110,1,24,2019-01-19,0.26,1,183 +219482,A Cozy Brooklyn Hideaway,759583,Pepe,Brooklyn,Clinton Hill,40.68275,-73.96148,Entire home/apt,172,4,8,2017-10-14,0.09,2,189 +219793,✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿,1138692,Keera (Jena),Manhattan,Lower East Side,40.71813,-73.98416,Entire home/apt,199,1,29,2015-06-03,0.31,2,162 +219818,✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿,1138692,Keera (Jena),Manhattan,Lower East Side,40.71892,-73.98401,Entire home/apt,199,1,14,2015-07-20,0.15,2,158 +219922,"Lovely Bdr in Harlem, Manhattan",1139574,Carmel,Manhattan,Harlem,40.816,-73.95545,Private room,100,1,33,2019-05-25,0.38,1,84 +220351,THE BEST DEAL ON THE HUDSON RIVER!!,921500,Boubacar And Pattee,Manhattan,Harlem,40.82748,-73.95153,Private room,55,4,99,2019-02-28,1.04,1,260 +220563,Lovely HUGE Master Bed + Study,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95088,Private room,75,3,59,2017-01-05,0.62,3,0 +220946,Newly Reno’d Chic Quiet Exec 1BR,1144415,Lisa,Manhattan,East Village,40.72229,-73.97901,Entire home/apt,146,3,142,2019-06-16,1.50,1,166 +221043,1 Bedroom in prime Flatiron,846050,Eziah,Manhattan,NoHo,40.72956,-73.99287,Private room,250,2,0,,,1,0 +221097,Large Artist Floorthru- Greenpoint,1146744,Deborah,Brooklyn,Greenpoint,40.72595,-73.95298,Entire home/apt,116,29,22,2019-03-15,0.23,1,335 +221618,Gorgeous PermaGO Private Room in FiDi - 1/2,4887492,Gershwyn,Manhattan,Tribeca,40.71193,-74.00817,Private room,150,3,82,2019-05-21,0.87,2,90 +222054,CBG Helps Haiti Rm #3,22486,Lisel,Brooklyn,Park Slope,40.68012,-73.97847,Private room,120,2,23,2018-09-15,0.24,6,342 +222304,BEST DEAL IN CHELSEA 1 bdrm NYC,1153993,Anton,Manhattan,Chelsea,40.74233,-73.99865,Entire home/apt,199,4,32,2019-05-08,0.34,1,28 +223930,Lovely Apartment,1164642,Rosalynn,Brooklyn,Prospect Heights,40.67424,-73.96665,Entire home/apt,150,5,24,2019-06-23,0.25,1,363 +224004,Artsy Loft-like Harlem Apartment,1165231,Deirdre,Manhattan,Harlem,40.80486,-73.95298,Private room,69,1,59,2018-10-26,0.63,2,86 +224006,Harlem/Manhattan Classic Apartment,1165231,Deirdre,Manhattan,Harlem,40.80307,-73.95048,Private room,300,55,6,2015-01-02,0.08,2,83 +224510,"BEAUTIFUL APARTMENT, GREAT LOCATION",991380,Stefania,Brooklyn,Boerum Hill,40.68653,-73.98562,Entire home/apt,230,4,18,2018-07-05,0.21,1,0 +225297,Quiet sunny studio Midtown,1173599,Gaya,Manhattan,Midtown,40.74267,-73.98569,Entire home/apt,125,4,3,2018-12-26,0.03,1,0 +225306,Charming room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.68749,-73.95494,Private room,79,3,115,2019-07-05,1.21,3,264 +225887,Brooklyn B & B close to Manhattan,663879,Christopher,Brooklyn,Fort Greene,40.68645,-73.97538,Private room,130,3,154,2019-06-19,1.63,2,305 +225926,The Notorious B.N.B. { The Erhart },1177497,Jessica,Brooklyn,Clinton Hill,40.68999,-73.96711,Private room,239,1,164,2019-07-01,1.73,11,356 +225976,Sunny cozy multileveled apartment!,1177947,Marina,Staten Island,Shore Acres,40.61077,-74.06824,Entire home/apt,75,6,76,2019-06-13,0.80,1,278 +226021,Sunny 2 bedroom Williamsburg Duplex w/ 3 beds,815977,Ryan,Brooklyn,Williamsburg,40.71126,-73.94576,Entire home/apt,220,3,116,2019-06-30,1.23,2,135 +227715,ROOM WITH KITCHENETTE #2,209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.67855,-73.94949,Entire home/apt,80,3,234,2019-06-30,2.47,4,308 +227735,Alpha-Bet City entire floor large cool 2br -L.E.S,1187935,Daniel,Manhattan,East Village,40.72416,-73.9853,Entire home/apt,288,2,120,2019-06-24,1.27,1,229 +228317,"Your Haven Awaits At ""Emma's Place""",1191142,Lady Jay,Brooklyn,Bedford-Stuyvesant,40.68516,-73.92521,Entire home/apt,135,4,82,2019-05-18,0.87,1,273 +228496,"Spacious, Kid-Friendly 2 BR in West Village",1192424,Gordon,Manhattan,West Village,40.73507,-74.00048,Entire home/apt,225,3,13,2019-05-26,0.15,1,83 +228517,Great Bedroom in Downtown Manhattan,1192610,Raven,Manhattan,Chinatown,40.71611,-73.99828,Private room,110,30,59,2019-06-24,0.64,1,281 +228925,Beautiful Brownstone,1194377,Marceline,Brooklyn,Bedford-Stuyvesant,40.67964,-73.93946,Entire home/apt,100,7,63,2019-06-26,1.87,1,321 +228979,1BDR - Hell's Kitchen Hideaway,1190088,Tim,Manhattan,Hell's Kitchen,40.76189,-73.99,Private room,130,2,52,2018-08-14,0.55,1,303 +229367,COMFY ROOM/COFFEE AND BAGEL/WEEKLY DISCOUNT,1097545,Carol,Manhattan,East Village,40.72645,-73.98035,Private room,89,1,278,2019-07-03,2.95,3,192 +229874,Oversized Studio in Park Slope,507304,Derrick,Brooklyn,Sunset Park,40.66293,-73.99833,Entire home/apt,200,5,1,2012-01-02,0.01,1,0 +230321,Apt with EmpireState view-Subway around the corner,1203500,Civan,Brooklyn,Bedford-Stuyvesant,40.69046,-73.95167,Entire home/apt,80,2,35,2019-06-09,0.40,1,36 +230854,Zen Yankee Stadium Pad 5 Minutes To Manhattan!,12221,Lori,Bronx,Concourse,40.83001,-73.92158,Private room,50,5,235,2019-06-29,2.49,2,271 +230877,Monthly Apartment Rental,292204,Blanca,Manhattan,East Harlem,40.79239,-73.94535,Entire home/apt,135,28,115,2019-06-30,1.21,2,341 +230956,Wonderfully inviting East Village,1207399,Mark,Manhattan,East Village,40.72709,-73.98274,Private room,90,1,109,2015-10-02,1.15,1,333 +231414,TURQUOISE: One-Bedroom Apt. in Soho,1184442,Roberto,Manhattan,SoHo,40.72599,-74.00168,Private room,270,5,1,2013-07-09,0.01,1,210 +232612,"Lovely pied-à-terre, in an historic building",1217241,Dee,Brooklyn,Bedford-Stuyvesant,40.68309,-73.94219,Entire home/apt,110,3,305,2019-06-27,3.24,1,231 +232618,"Spacious, well furnished, high fl. beautiful views",763420,Selma,Manhattan,East Harlem,40.79442,-73.93433,Entire home/apt,145,1,102,2019-06-18,1.52,1,308 +233189,NYC Studio in Heart of Times Square,1220414,Michael,Manhattan,Hell's Kitchen,40.76166,-73.99675,Entire home/apt,179,30,83,2019-05-31,0.88,1,292 +233638,rooms for rent in Queens with piano,1012895,Melody,Queens,Ridgewood,40.70163,-73.90867,Private room,55,1,19,2018-07-31,0.25,1,311 +233662,Large Sunny Luxe Prvt Room/Midtown,1223568,Tiffany,Manhattan,Midtown,40.75575,-73.96842,Private room,110,2,61,2019-05-18,0.65,1,264 +234184,Spacious Stunning Harlem Townhouse,902054,William,Manhattan,Harlem,40.80903,-73.94197,Entire home/apt,325,5,89,2019-06-30,0.94,1,153 +234870,Private Room With GREAT Location,1229984,John,Queens,Long Island City,40.74581,-73.95295,Private room,75,30,65,2017-07-31,0.74,3,219 +235552,HUGE Sunny Duplex Loft with Garden,1234405,Bertie,Brooklyn,South Slope,40.66414,-73.98574,Entire home/apt,300,1,40,2019-06-16,0.44,1,0 +235651,LARGE ARTSY Room w/ Loft Bed 4 DOOGLERS!,83257,Olan,Manhattan,West Village,40.74,-74.00381,Private room,130,30,80,2019-04-26,0.86,2,332 +235951,Stylish Studio with exclusive Terrace,1236070,Dan,Manhattan,Midtown,40.75348,-73.97065,Entire home/apt,190,30,136,2019-06-19,1.45,1,120 +235960,"LES private apt, 1 bedroom & more",1236817,Blue,Manhattan,Lower East Side,40.72066,-73.98506,Entire home/apt,200,3,100,2018-05-28,1.06,1,191 +236671,"Williamsburg Garden Home, 5 minutes from Manhattan",1240820,Triny,Brooklyn,Williamsburg,40.71746,-73.95497,Entire home/apt,180,2,125,2019-07-06,1.36,3,248 +236788,"HUGE, modern 2-LEVEL Brooklyn apt",4166168,Nick And Noémie,Brooklyn,DUMBO,40.70257,-73.9847,Entire home/apt,350,5,40,2019-04-14,0.50,1,67 +236806,charming 2bdrm apt in East Village,1151987,Juvie,Manhattan,East Village,40.72264,-73.9837,Entire home/apt,160,4,0,,,1,0 +237127,LOCATION LOCATION LOCATION Liz's,1146958,Liz,Manhattan,Kips Bay,40.73833,-73.98186,Entire home/apt,195,30,139,2019-04-28,1.59,4,325 +237210,Manhattan Loft in Prime East Village Location,1243192,Jacqueline,Manhattan,Greenwich Village,40.73268,-73.99255,Entire home/apt,241,30,0,,,1,249 +239055,Nolita Penthouse_Private Deck_Elev_,65064,Ashley & Nir,Manhattan,Chinatown,40.71892,-73.99628,Entire home/apt,300,7,2,2014-10-06,0.03,1,0 +239733,Astoria Garden Suite,1256874,Nancy,Queens,Ditmars Steinway,40.77679,-73.91687,Entire home/apt,75,28,49,2019-06-26,0.53,1,313 +239766,Lower East Side/Chinatown 1 Bedroom,1257309,Austin,Manhattan,Lower East Side,40.71693,-73.98948,Entire home/apt,100,5,8,2018-05-18,0.11,1,0 +239826,"Amazing 1 bed, live like a Newyorkr",1257760,Jay,Manhattan,Gramercy,40.73685,-73.98359,Entire home/apt,399,1,0,,,1,12 +239883,Private Room in Fort Green BK close to city,136962,Li,Brooklyn,Fort Greene,40.68501,-73.97019,Private room,85,5,124,2019-05-25,1.32,1,69 +239899,Spacious & Charming by Prospect Pk,1258363,Todd,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.96003,Entire home/apt,80,21,5,2018-12-19,0.12,1,0 +240800,Private Room Near Brooklyn Museum ,1263176,Joseph,Brooklyn,Prospect Heights,40.67722,-73.96542,Private room,55,1,147,2019-06-30,1.57,1,293 +241140,The Notorious B.N.B. { The Wallace },1177497,Jessica,Brooklyn,Clinton Hill,40.68975,-73.96703,Private room,438,1,43,2019-04-14,0.46,11,363 +241159,Clinton Hill 1 Bed Bright Loft Apartment,1264655,Ruari,Brooklyn,Bedford-Stuyvesant,40.69221,-73.95866,Entire home/apt,110,6,8,2019-01-03,0.33,1,4 +241862,Great Studio in W. Village - NYC!,1269455,Mike,Manhattan,West Village,40.72969,-74.00635,Entire home/apt,200,2,37,2019-01-02,0.39,1,257 +242532,The Notorious B.N.B. { The Swoon },1177497,Jessica,Brooklyn,Clinton Hill,40.6893,-73.96602,Private room,279,1,120,2019-06-19,1.28,11,362 +242643,"BIG 1br, SLEEPS 4, dishwashr, TV",1273825,Lauryn,Brooklyn,Williamsburg,40.70832,-73.94157,Entire home/apt,137,1,24,2019-01-01,0.29,1,0 +243229,2BR Apt - 20min to Soho,1276497,Alon,Brooklyn,Bedford-Stuyvesant,40.68016,-73.94878,Entire home/apt,280,3,5,2017-07-09,0.05,1,365 +243708,Williamsburg - Quiet and Comfy stay,288711,Andy,Brooklyn,Williamsburg,40.70875,-73.95508,Entire home/apt,199,30,242,2019-04-01,2.59,1,102 +245504,One Fabulous Private Room,714200,Baron,Manhattan,Inwood,40.85888,-73.92886,Private room,71,4,229,2019-06-21,2.45,1,26 +245544,NY/ Big Room for 2 near Manhattan,1260921,Victor,Bronx,Kingsbridge,40.8679,-73.90023,Private room,42,2,108,2019-06-19,1.36,2,302 +245574,Brooklyn Brownstone apartment,1288460,Al-,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95383,Entire home/apt,180,2,181,2019-06-05,1.92,1,280 +245607,big 1 bedroom apt very central,825022,Jaidev,Manhattan,Chelsea,40.75127,-73.99637,Entire home/apt,226,5,34,2019-07-01,0.39,1,302 +246134,"Lovely, Large Room in Crown Heights",283604,Shelley,Brooklyn,Crown Heights,40.67607,-73.94421,Private room,85,3,5,2016-10-02,0.05,1,281 +246351,"Sweet Apt, Steps From Gramercy Park",1292250,Jerry,Manhattan,Gramercy,40.73834,-73.9823,Entire home/apt,135,1,5,2015-08-17,0.06,1,0 +246916,Quality Cozy Studio Next to Subway,3647,Rafael,Queens,Elmhurst,40.7347,-73.88066,Entire home/apt,79,4,60,2019-06-25,0.64,2,297 +246938,Scandinavian-apt for up to 5. LES,936630,Jens,Manhattan,Lower East Side,40.71876,-73.98851,Entire home/apt,154,1,238,2019-06-23,2.59,1,246 +248865,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73787,-73.95385,Entire home/apt,199,3,34,2019-04-22,0.37,28,60 +248871,4 BEDROOM -2BATHRM WEST VILLAGE DUPLEX TOWNHOUSE,605463,West Village,Manhattan,West Village,40.73066,-74.00287,Entire home/apt,700,3,131,2019-06-24,1.40,4,296 +249414,Large & bright 900ft² 1br in WV,1306587,Andy,Manhattan,West Village,40.73291,-74.00059,Entire home/apt,246,4,6,2017-06-28,0.16,1,0 +249618,At a very nice area in the WestSide,1307773,Karina,Manhattan,Washington Heights,40.85099,-73.92822,Private room,125,60,4,2015-07-03,0.06,1,364 +249867,HANCOCK VERY SMALL ROOM,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68707,-73.91918,Private room,100,1,7,2018-10-07,0.08,4,281 +250259,Pre-War Williamsburg Loft,1311398,Ben,Brooklyn,Williamsburg,40.7184,-73.96019,Entire home/apt,295,5,125,2019-07-07,3.04,1,0 +250311,1 Bedroom Available In My Two Bedroom Flat,945499,Kyle,Brooklyn,Crown Heights,40.67495,-73.95563,Private room,150,3,0,,,1,0 +250323,SPACIOUS PRIVATE LITTLE ITALY FLAT,1311870,Christy,Manhattan,Chinatown,40.71582,-73.99902,Entire home/apt,119,1,49,2014-12-03,0.58,1,0 +250536,The Lenox in Harlem,1313306,Yvette,Manhattan,Harlem,40.81068,-73.94288,Private room,125,1,11,2017-09-25,0.12,2,365 +250537,The Lenox in Harlem,1313306,Yvette,Manhattan,Harlem,40.81122,-73.94279,Entire home/apt,400,5,0,,,2,365 +250801, Heart & Soul of Greenwich Village ,1314834,Rhona,Manhattan,Greenwich Village,40.73129,-73.99944,Entire home/apt,850,3,107,2019-05-23,1.15,1,249 +251262,Prime Williamsburg Loft off Bedford,1278802,Anne,Brooklyn,Williamsburg,40.71628,-73.95737,Private room,129,2,241,2019-06-29,2.60,1,303 +251277,Private Bdrm /Bath 1 block Ctrl Prk,1317343,Carol,Manhattan,Upper West Side,40.78558,-73.9726,Private room,140,1,176,2019-06-29,1.89,1,300 +252076,+Highly Satisfactory LES dwelling++,297769,Tunji,Manhattan,Chinatown,40.7146,-73.991,Private room,115,4,151,2019-06-16,1.63,2,323 +252607,Whole apartment / 2 bedroom in NYC,1325961,Chris,Manhattan,East Harlem,40.79493,-73.94462,Entire home/apt,200,3,49,2018-08-09,0.53,2,0 +253332,"Spacious, modern loft in awesome neighborhood",552343,Cynthia,Brooklyn,Sunset Park,40.6623,-73.99049,Entire home/apt,96,120,13,2018-09-01,0.14,1,204 +253466,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73693,-73.95284,Entire home/apt,199,3,33,2019-06-24,0.47,28,60 +253471,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73641,-73.9533,Entire home/apt,199,3,24,2018-11-06,0.32,28,84 +253475,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73794,-73.95254,Entire home/apt,199,3,59,2019-06-24,0.66,28,60 +253548,Well Kept Private Room around Brighton Beach,1331493,Olia,Brooklyn,Brighton Beach,40.58147,-73.96726,Private room,69,1,2,2015-06-25,0.04,1,303 +253590,Large 1 Bedroom furnished on UWS,1331850,G,Manhattan,Upper West Side,40.79771,-73.96323,Entire home/apt,185,2,16,2019-06-28,0.23,1,261 +253623,Chez Carine - Privacy in Manhattan,1332108,Cici,Manhattan,Harlem,40.81512,-73.94692,Private room,81,2,72,2018-11-26,0.77,1,0 +253800,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.7373,-73.95323,Entire home/apt,199,3,24,2019-04-25,0.26,28,60 +253803,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73708,-73.95271,Entire home/apt,199,3,23,2019-06-22,0.26,28,60 +253806,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73652,-73.95236,Entire home/apt,199,3,43,2019-07-02,0.47,28,60 +253811,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73693,-73.95316,Entire home/apt,199,3,30,2019-07-03,0.32,28,56 +253815,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73784,-73.95324,Entire home/apt,199,3,39,2019-06-29,0.44,28,84 +253828,Duplex w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73674,-73.95247,Private room,349,3,8,2018-07-26,0.09,28,58 +253839,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73783,-73.95259,Private room,249,3,3,2015-11-03,0.03,28,60 +253842,1 BR w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73714,-73.95296,Private room,299,3,6,2018-04-19,0.10,28,60 +253846,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73731,-73.9545,Private room,179,3,4,2015-12-04,0.05,28,81 +254131,"Read it 1st, A seprat fur BR, low $",1267021,Sharma,Queens,Jackson Heights,40.74965,-73.89344,Private room,54,5,56,2019-07-06,0.66,3,365 +254168,2 BR Duplex @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73793,-73.95316,Private room,599,3,7,2018-11-16,0.08,28,60 +254409,Husband & Wife Art-Filled Apartment,1336542,Stephanie,Brooklyn,Clinton Hill,40.68197,-73.96549,Entire home/apt,110,1,2,2014-01-13,0.03,1,0 +255024,"3BR, 2 bathroom condo in Bushwick",1340007,Roger,Brooklyn,Bushwick,40.70271,-73.91566,Entire home/apt,220,2,178,2019-06-24,2.69,1,297 +255476,"The BLUE OWL: +VEGETARIAN WBURG W PATIO & BACKYARD!",1302029,Bree,Brooklyn,Williamsburg,40.7116,-73.9529,Private room,89,30,30,2019-05-31,0.80,1,91 +255601,Cozy 2 Bedroom 20 Min from City,1343630,Antonio,Brooklyn,Bedford-Stuyvesant,40.69241,-73.94885,Entire home/apt,170,2,190,2019-06-23,2.04,1,315 +255957,NOLITA! LOCATION! LOCATION! VIEWS! FREE GYM!,506779,Claudia,Manhattan,Nolita,40.72004,-73.99424,Entire home/apt,495,7,25,2019-06-30,0.27,2,338 +256078,"Entire apt NYC, Queens. 15 min from Times Square.",1346437,Cristina,Queens,Sunnyside,40.74511,-73.92398,Entire home/apt,80,10,81,2019-05-31,0.98,2,40 +256328,Luxury Chelsea Townhouse at the High Line,1347034,Janine,Manhattan,Chelsea,40.74599,-74.00253,Entire home/apt,760,2,7,2019-06-22,0.08,1,361 +256369,Alchemy BnB - room in artist loft,1348494,Pamela,Brooklyn,Cobble Hill,40.68946,-73.99385,Private room,98,4,216,2019-07-01,2.31,1,288 +257097,Sunny! 2br Steps to train/restaurants - 15 to NYC,315401,Jaime,Brooklyn,Bedford-Stuyvesant,40.68226,-73.95473,Entire home/apt,125,30,31,2019-01-28,0.33,1,218 +257568,Zen Den (Airport Pickup: JFK & LGA),1123923,Adolfo,Brooklyn,Cypress Hills,40.67855,-73.8896,Private room,48,90,53,2017-08-12,0.57,2,1 +257787,Heart of Williamsburg. Brand New.,1356046,Daniel,Brooklyn,Williamsburg,40.71408,-73.9489,Private room,64,3,247,2019-06-21,2.65,2,117 +258284,"Fresh, Clean Brooklyn Garden Apt.",1358312,S,Brooklyn,Clinton Hill,40.68618,-73.96144,Entire home/apt,154,3,233,2019-04-10,2.50,1,0 +258397,Guest Apartment in Owner Occupied Home,1354758,Annie,Brooklyn,Park Slope,40.67379,-73.98454,Entire home/apt,139,3,135,2019-06-24,1.45,1,204 +258686,My Home Is Your Home,1233267,Kim,Queens,St. Albans,40.70554,-73.76637,Private room,75,4,20,2015-12-30,0.23,1,0 +258688,Spacious & Stylish Chelsea One Bedroom Apartment,436599,Chad,Manhattan,West Village,40.74031,-74.00532,Entire home/apt,325,4,46,2019-06-02,0.50,1,20 +258690,CHELSEA 1 Bdrm Plus Sleeping Loft!!,1359611,Andrea,Manhattan,Chelsea,40.74618,-74.00392,Entire home/apt,195,365,10,2014-10-26,0.12,1,0 +258740,Spacious room in beautiful apt! ,1360043,Adrienne,Manhattan,Harlem,40.81872,-73.94567,Private room,58,1,143,2018-06-30,2.83,1,0 +258838,"Oceanview,close to Manhattan",1360198,Marina,Staten Island,Arrochar,40.59251,-74.06479,Entire home/apt,250,2,21,2019-05-22,0.26,4,333 +258876,"Affordable rooms,all transportation",1360198,Marina,Staten Island,Arrochar,40.59101,-74.06685,Private room,50,7,0,,,4,189 +259946,"Budget stay, near transportation",1360198,Marina,Staten Island,Arrochar,40.59262,-74.06659,Entire home/apt,125,2,8,2019-05-19,0.09,4,353 +260451,Fort Greene brownstone 1BR- SUBLET,52335,Alexander,Brooklyn,Fort Greene,40.69142,-73.97203,Entire home/apt,70,7,4,2017-08-28,0.05,2,0 +260765,NewYork Modern Pre-War LoftStudio ,480943,Ro,Manhattan,Upper East Side,40.76928,-73.95021,Entire home/apt,189,2,314,2019-07-01,3.45,2,206 +261194,Cozy Artist Duplex **Bedstuy Charm**,696482,Christine,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95289,Entire home/apt,130,3,18,2019-06-18,0.25,1,1 +261259,Apartment in Best location in NYC,1370358,Keiko,Manhattan,West Village,40.72953,-74.00462,Entire home/apt,145,7,11,2015-05-27,0.12,1,0 +261344,Inspired in Historic Downtown NYC!,568103,Liah,Manhattan,Financial District,40.70523,-74.01345,Private room,101,7,51,2019-06-02,0.55,1,307 +261674,Chelsea/West Village - 2bdrm apt,1372786,Lindsey,Manhattan,Chelsea,40.74025,-74.00161,Private room,95,5,20,2017-04-01,0.33,1,0 +261781,1500+ sq ft 2BR West Village Loft,1359519,Nadya,Manhattan,West Village,40.73378,-74.00429,Entire home/apt,375,7,8,2017-12-30,0.12,1,0 +262343,Cozy & Clean Lower East Side Apt.,1376385,Lauren,Manhattan,Lower East Side,40.72087,-73.99022,Entire home/apt,153,31,59,2019-06-06,0.63,1,27 +262405,Spacious Townhome Apt in Brooklyn,1376778,Wade,Brooklyn,East Flatbush,40.64468,-73.94219,Entire home/apt,92,4,54,2019-06-24,0.62,1,27 +262478,Chic + Stylish room in heart of LowerEastSide NYC!,535128,Juliana,Manhattan,Lower East Side,40.7193,-73.98966,Private room,80,5,10,2018-12-31,0.46,1,348 +262583,Landmark 2 Bedroom West Village NYC,605463,West Village,Manhattan,West Village,40.73312,-74.0042,Entire home/apt,300,4,153,2019-06-25,1.66,4,246 +263005,2 bedroom apt in charming brick townhouse,1380060,Marisa And Colin,Brooklyn,Fort Greene,40.69778,-73.97676,Entire home/apt,145,3,110,2019-06-02,1.20,1,15 +263190,Room in East Village with Private Entrance,1020539,Dominique,Manhattan,East Village,40.72534,-73.98591,Private room,88,2,69,2019-01-01,0.91,2,0 +263232,Cozy&Clean in a great neighborhood,1381171,Nicole,Manhattan,Harlem,40.82151,-73.94516,Entire home/apt,155,1,1,2019-01-27,0.18,1,5 +263502,Prime Williamsburg 1/BD New Condo,1382749,Shaun,Brooklyn,Williamsburg,40.72059,-73.9567,Entire home/apt,185,180,24,2015-08-19,0.26,1,0 +263776,City Skyline Views from every room!,1384111,Joanne,Queens,Sunnyside,40.74558,-73.92324,Private room,73,2,95,2019-01-02,1.02,2,0 +263888,Contemporary & Classic Sanctuary on the Hudson,1384559,C,Manhattan,Upper West Side,40.79433,-73.9765,Entire home/apt,225,2,129,2019-04-28,1.41,1,107 +264323,Comfortable Manhattanville,305972,Allan,Manhattan,Morningside Heights,40.81055,-73.95549,Private room,85,7,171,2019-03-31,1.84,2,144 +265036,Private room w/ queen bed + rooftop,21188,Leo,Brooklyn,Crown Heights,40.6711,-73.95231,Private room,99,2,20,2019-06-09,0.59,1,98 +265064,Zen Eyrie –Airport Pick-Up: JFK/LGA,1123923,Adolfo,Brooklyn,Cypress Hills,40.67962,-73.88928,Private room,48,90,17,2017-05-03,0.27,2,0 +265145,Studio sublet in Hell's kitchen,1390947,Akiko,Manhattan,Theater District,40.76217,-73.98411,Entire home/apt,200,5,8,2015-01-08,0.09,1,0 +265506,Luxury NYC 2 Bedroom with Terrace,1392440,Sandra,Manhattan,Upper East Side,40.76128,-73.96463,Entire home/apt,485,7,11,2015-11-01,0.12,1,0 +265831,Bright unique designer loft in Soho,1394190,Jen,Manhattan,Nolita,40.72313,-73.99438,Entire home/apt,310,5,5,2018-07-05,0.09,1,89 +265912,Spacious 2 bed Loft apartment Bedford L,1394719,Jill,Brooklyn,Williamsburg,40.7177,-73.95576,Entire home/apt,110,4,0,,,1,354 +266146,Beautiful studio by Central Park,1385157,Brian,Manhattan,Upper West Side,40.78448,-73.97289,Entire home/apt,109,30,36,2019-03-19,0.39,5,286 +266155,One bed suite with private garden,1385157,Brian,Manhattan,Upper West Side,40.78304,-73.97447,Entire home/apt,167,30,16,2019-03-31,0.17,5,252 +266351,SUNNY 1 Bedroom APT in Fort Greene - BROOKLYN,1396546,Elena,Brooklyn,Fort Greene,40.68737,-73.97125,Entire home/apt,147,15,5,2018-07-12,0.12,1,189 +266437,West Village cozy 2 bedroom NYC ,1397061,Asia Joanna,Manhattan,Chelsea,40.74139,-74.0005,Entire home/apt,220,4,0,,,1,0 +266449,2 Bedroom Gem - Prime LES Location,1397115,Drew,Manhattan,Lower East Side,40.71992,-73.98773,Entire home/apt,195,4,68,2019-06-03,0.77,1,271 +266756,REAL 2BR-HEART OF SOHO-LITTLE ITALY,1398809,Roberto Mike,Manhattan,Little Italy,40.71905,-73.99677,Entire home/apt,199,28,89,2018-06-30,0.99,1,0 +267376,BIG ROOM / DOWNTOWN LOFT /,638721,Fred,Manhattan,Financial District,40.70741,-74.00102,Private room,65,30,10,2019-06-24,1.02,1,0 +267435,Large Sunny Bedroom in QNS NYC,1402454,Jocelin,Queens,Rego Park,40.73349,-73.86009,Private room,55,1,38,2019-07-01,0.85,1,0 +267535,Home Away From Home-Room in Bronx,1402951,Clara,Bronx,Wakefield,40.89557,-73.8447,Private room,50,2,15,2019-06-09,0.17,1,337 +267652,Private clean pleasant spacious room.,164675,Janice,Brooklyn,Kensington,40.64277,-73.97296,Private room,60,2,20,2019-01-21,0.42,1,347 +267708,"Charming Hotel Alternative +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79111,-73.94466,Private room,99,3,25,2019-06-15,0.96,2,127 +268392,SUNNY 2-bdrm CHILD-friendly Uptwn by Centrl Park!,1406773,Eyal And Amy,Manhattan,Harlem,40.79951,-73.95257,Entire home/apt,130,2,35,2019-05-27,0.42,1,41 +268481,Resort-like living in Williamsburg,1380703,Vishal,Brooklyn,Williamsburg,40.71647,-73.93974,Entire home/apt,290,30,1,2013-09-24,0.01,1,0 +268868,Hudson Yards with views of The Highline Park,1408733,Sergio,Manhattan,Chelsea,40.75114,-74.00195,Entire home/apt,350,3,64,2019-06-02,0.70,1,18 +269283,Brooklyn: A Huge Bedroom + Good Vibes,1410714,Antoinette,Brooklyn,Crown Heights,40.66431,-73.93216,Private room,50,3,26,2019-02-16,0.33,1,158 +269889,One stop from Midtown Manhattan!,1413098,M,Queens,Long Island City,40.74579,-73.95012,Private room,96,2,244,2019-06-25,2.74,1,270 +270139,"Private Room Very Near L train, Bushwick",1093220,Chavisa,Brooklyn,Bushwick,40.70278,-73.92673,Private room,45,15,21,2019-01-15,0.29,3,88 +270231,Cozy New York City private room,1366310,Janina,Queens,Woodside,40.74409,-73.91122,Private room,85,2,270,2019-07-07,2.95,2,306 +270315,Bed-stuy Royal Room,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68812,-73.93254,Private room,34,10,16,2019-03-27,0.19,3,216 +270345,SUPER CUTE EAST VILLAGE APARTMENT,1415590,Cameron,Manhattan,East Village,40.72454,-73.99151,Entire home/apt,250,3,24,2019-06-27,0.26,1,16 +270680,GREAP STUDIO / 4PPL IN MIDTOWN,1315849,Javier Pedraza,Brooklyn,Williamsburg,40.71073,-73.96207,Private room,190,1,30,2019-06-28,0.33,2,365 +270681,BEDFORD AV. ROOM IN WILLIAMSBURG..,1315849,Javier Pedraza,Brooklyn,Williamsburg,40.71028,-73.96128,Private room,75,2,5,2015-09-07,0.06,2,365 +271083,Sleep & Wake near Botanical Gardens,1217923,Kevin,Brooklyn,Prospect-Lefferts Gardens,40.65772,-73.96131,Entire home/apt,93,4,115,2019-06-12,1.25,1,312 +271128,Tranquil in the heart of Brooklyn 2,1417166,Lex,Brooklyn,Bedford-Stuyvesant,40.68884,-73.95059,Private room,60,5,9,2019-06-25,0.19,2,33 +271130,Tranquil in the heart of Brooklyn 1,1417166,Lex,Brooklyn,Bedford-Stuyvesant,40.6865,-73.95372,Private room,65,5,45,2019-05-26,0.52,2,0 +271694,"Easy, comfortable studio in Midtown",1387370,James,Manhattan,Midtown,40.75282,-73.97315,Entire home/apt,125,365,19,2015-09-08,0.21,1,365 +271950,Huge luxury 1BR apt near Central Park South(4 ppl),1362808,Max,Manhattan,Upper East Side,40.76373,-73.96897,Entire home/apt,300,3,5,2018-12-31,0.08,1,27 +271954,Beautiful brownstone apartment,1423798,Aj,Manhattan,Greenwich Village,40.73388,-73.99452,Entire home/apt,150,2,203,2019-06-20,2.22,1,300 +272026,1 Bd. MANHATTAN NY Entire Apt. 1 yr-6 months min.,1423613,Arthur,Manhattan,Washington Heights,40.85774,-73.92901,Entire home/apt,56,122,20,2018-01-02,0.41,1,216 +272044,Luxury Designer Downtown Apartment,1195295,M,Manhattan,East Village,40.72257,-73.98465,Entire home/apt,299,3,49,2018-10-27,0.53,1,365 +272427,Spacious room on charming block in Greenpoint!,511993,Diana,Brooklyn,Greenpoint,40.72723,-73.95728,Private room,60,4,6,2019-04-21,0.07,1,303 +272706,"SUNNY, SPACIOUS APT. in FT. GREENE",1402817,Valerie,Brooklyn,Fort Greene,40.69135,-73.97321,Entire home/apt,88,5,7,2017-06-18,0.08,1,0 +272738,Guest Room in Authentic Williamsburg Factory Loft,1427381,Elizabeth,Brooklyn,Williamsburg,40.70513,-73.95505,Private room,60,2,35,2019-06-30,0.38,2,161 +273190,6 Bedroom Landmark West Village Townhouse,605463,West Village,Manhattan,West Village,40.73301,-74.00268,Entire home/apt,1300,5,28,2018-09-25,0.31,4,297 +273256,Beautiful bed and bath - Manhattan,1429642,Delia,Manhattan,East Harlem,40.79793,-73.93612,Private room,200,6,0,,,1,0 +274062,Beautiful Room Near Central Park!,1433395,Stacia,Manhattan,Harlem,40.80285,-73.95166,Private room,99,2,54,2019-06-24,0.88,1,50 +274329,Fantastic 1-bedroom basement apt.,1434654,Andrew,Brooklyn,Bushwick,40.70642,-73.91665,Entire home/apt,110,3,115,2019-06-25,1.75,2,28 +274376,"Private Clinton Hill, Brooklyn Apt",1434931,Aaron,Brooklyn,Clinton Hill,40.68156,-73.96537,Entire home/apt,135,5,6,2019-06-24,0.13,1,317 +274743,Charming furnished Studio-Loft,1436404,Catherine,Manhattan,Upper East Side,40.77368,-73.95198,Entire home/apt,110,15,1,2014-08-31,0.02,1,275 +275976,Lovely 2 bedroom apartment with backyard access,1417757,Kwab,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93702,Entire home/apt,165,3,204,2019-06-30,2.31,1,80 +276216,Nights in White Satin in the Slope,1440691,Dena,Brooklyn,Sunset Park,40.65992,-73.99042,Entire home/apt,127,180,1,2016-09-01,0.03,1,365 +276317,"The Carlton, Brooklyn brownstone Duplex w/ garden",130901,Chauncey,Brooklyn,Prospect Heights,40.67847,-73.97038,Entire home/apt,402,3,89,2019-06-23,0.97,1,340 +276482,Comfortable Manhattanville.,305972,Allan,Manhattan,Harlem,40.81371,-73.95585,Private room,85,6,130,2019-06-02,1.42,2,97 +277207,Beautiful lrg 1800's syle apt share,1447684,Rosa,Brooklyn,Greenpoint,40.72868,-73.95835,Private room,75,7,15,2019-06-08,0.25,3,365 +277370,Location wins for East Village Apt,1448432,Jim,Manhattan,East Village,40.73168,-73.98662,Entire home/apt,139,30,52,2019-05-13,0.60,1,314 +277883,Sunny Entire Apt with Romantic Bedroom,950657,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65689,-73.9533,Entire home/apt,70,6,58,2017-12-29,0.63,1,0 +278090,Furnished room for rent - Manhattan,1451723,Bia,Manhattan,East Harlem,40.7928,-73.93967,Private room,50,3,208,2019-06-11,2.32,1,339 +278145,Large Room in a Huge NY apartment.,1452026,Heidi,Queens,Astoria,40.77117,-73.91905,Private room,30,5,3,2017-06-20,0.03,1,0 +278631,West Village NYC Sun-filled Studio!,1132207,Cathryne,Manhattan,West Village,40.73729,-74.00807,Entire home/apt,250,30,7,2013-04-21,0.08,1,35 +278876,"Large, furnished room in a 2 bedroom!",368528,Ally,Brooklyn,Crown Heights,40.66984,-73.95141,Private room,64,1,1,2017-03-18,0.04,1,0 +279093,Huge Apartment! Amazing View!,1455825,Erica,Manhattan,Harlem,40.82977,-73.94071,Entire home/apt,300,3,2,2018-04-10,0.06,1,365 +279857,#1 Yellow Block BnB/see at Net Flix Show Stay Here,1420300,Gordy,Brooklyn,Bedford-Stuyvesant,40.68492,-73.95489,Entire home/apt,800,4,122,2019-07-02,1.37,1,257 +279969,Cozy Brownstone Inn I(studio),240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.68255,-73.91957,Entire home/apt,100,3,63,2019-06-18,0.72,2,5 +280315,Crown Height's Brooklyn Cozy Apt,1151818,Gabrielle,Brooklyn,Crown Heights,40.67392,-73.94662,Entire home/apt,250,5,26,2014-10-31,0.28,1,0 +281521,Amazing West Village 2br,70614,Vimal,Manhattan,West Village,40.73879,-74.00425,Entire home/apt,200,27,1,2012-10-02,0.01,1,0 +281756,Authentic NY Charming Artist Loft,1468658,Barbara,Brooklyn,Greenpoint,40.73321,-73.95587,Entire home/apt,140,5,14,2019-06-19,0.16,1,0 +281851,Beautiful Private Bedroom - Downstairs,1469036,Tw,Manhattan,Harlem,40.80671,-73.95082,Private room,130,1,107,2019-06-25,2.38,1,304 +282341,Kensington/Ditmas Park pied-a-terre,1471384,Dan,Brooklyn,Kensington,40.6433,-73.97386,Entire home/apt,90,30,3,2017-07-30,0.05,1,286 +282443,QT STUDIO FOR ROMANTIC COUPLES,36897,Lydia,Manhattan,Chinatown,40.71601,-73.99123,Entire home/apt,90,3,107,2019-05-18,1.17,1,0 +282514,"Own Room & Bath, Sunny Town House, 18"" to Wall St",1464358,Dian,Brooklyn,Bedford-Stuyvesant,40.68106,-73.9292,Private room,97,3,29,2019-06-25,1.57,1,118 +282863,Cozy & Charming Boerum Hill Flat,322934,Kate,Brooklyn,Gowanus,40.68131,-73.98879,Entire home/apt,91,6,69,2019-06-21,0.76,1,265 +282977,Park Slope Brooklyn! Sunny Bedroom.,1474071,Diana,Brooklyn,Park Slope,40.67264,-73.98136,Private room,125,3,232,2019-07-06,2.52,1,303 +283072,One bedroom sharing Bathroom,1474637,Eliza,Brooklyn,Cypress Hills,40.67889,-73.86404,Private room,75,7,0,,,1,0 +283090,Spacious East Village Apartment,511175,Luis,Manhattan,East Village,40.7241,-73.97899,Entire home/apt,180,7,24,2018-08-10,0.26,2,125 +283184,Huge Williamsburg Loft..Perfect for Big Groups!,1427381,Elizabeth,Brooklyn,Williamsburg,40.70766,-73.95191,Entire home/apt,300,7,0,,,2,354 +283272,Stylish Garden House - Trendy area,524730,Oz,Brooklyn,Williamsburg,40.71422,-73.9484,Entire home/apt,100,19,5,2016-08-03,0.06,2,6 +283550,Hells Kitchen Ground Fl 1-bedroom,1476954,Jose,Manhattan,Hell's Kitchen,40.76001,-73.99133,Entire home/apt,175,3,10,2019-04-21,0.23,1,0 +284208,Pre War Park Slope on Prospect Park,1366270,Louisa,Brooklyn,South Slope,40.66441,-73.97974,Private room,65,4,36,2018-11-12,0.47,2,80 +284855,Charming Apt in the Best Location!,1482460,Dara,Manhattan,West Village,40.73362,-74.00923,Entire home/apt,240,5,94,2019-06-19,1.10,1,134 +285442,Huge room with private balcony,1475866,Jesper,Manhattan,East Village,40.73119,-73.98819,Private room,300,6,1,2013-05-06,0.01,1,0 +285492,Amazing 1 bedroom apt with NYC View,1486034,Eric,Manhattan,Chelsea,40.74494,-73.9998,Entire home/apt,385,1,63,2018-08-03,0.71,1,364 +285716,Great spacious room by the L train!,1487126,Anamaria,Brooklyn,Bushwick,40.69657,-73.9129,Private room,47,15,5,2013-09-11,0.06,1,0 +286662,Charming Brooklyn Studio,1491538,Erika,Brooklyn,Crown Heights,40.67106,-73.95463,Entire home/apt,110,3,238,2019-07-02,2.60,1,297 +286838,Private Room in Brownstone,1492339,Karin,Manhattan,Harlem,40.80748,-73.95589,Private room,75,2,101,2015-10-31,1.10,1,0 +287397,Bed Stuy Pride! Welcome to Brooklyn,1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93179,Entire home/apt,100,3,21,2019-06-24,0.23,3,43 +287408,Lovely Hell's Kitchen Studio...,1495090,Carey,Manhattan,Hell's Kitchen,40.76147,-73.99152,Entire home/apt,165,2,72,2018-07-31,0.82,1,10 +287417,HOT SPOT FOR 20 AND 30 SOMETHING'S,1495196,Yvette,Brooklyn,Bedford-Stuyvesant,40.68174,-73.91921,Entire home/apt,300,2,40,2019-06-23,0.68,1,0 +287421,"Cozy, Clean Cobble Hill Brownstone",1495141,Keow,Brooklyn,Cobble Hill,40.68538,-74.00056,Entire home/apt,140,3,103,2017-08-01,1.13,1,189 +287481,Bright Loft Apt w Skylight in Wburg,1495502,Olly,Brooklyn,Williamsburg,40.70839,-73.94289,Entire home/apt,120,6,66,2019-05-01,0.72,2,17 +287839,"Cozy, beautiful doormen studio-",1498424,Hibo,Brooklyn,Fort Greene,40.69018,-73.98107,Entire home/apt,175,3,35,2019-06-27,0.40,1,289 +287845,Carroll Gardens Gem-2BD with Garden,1496847,Paul & Ewa,Brooklyn,Carroll Gardens,40.68128,-73.99522,Entire home/apt,275,31,121,2019-07-01,1.33,1,305 +289020,Sunny 1BR Center of East Village!,347036,Jasmine,Manhattan,East Village,40.72948,-73.98694,Entire home/apt,179,8,15,2018-08-29,0.19,1,0 +289037,"2BR in Cobble Hill, Brooklyn, NY",632334,Michael,Brooklyn,Carroll Gardens,40.68353,-73.9914,Entire home/apt,189,2,13,2016-09-05,0.18,1,0 +289288,Perfect East Village Apartment,1502469,Max,Manhattan,East Village,40.72506,-73.98865,Entire home/apt,219,2,129,2019-05-11,1.42,1,220 +289665,Decorators 5-Star Flat West Village,1503831,Elle,Manhattan,West Village,40.72891,-74.00293,Entire home/apt,450,20,157,2016-08-11,1.71,1,0 +289703,Beautiful SoHo Luxury Apartment,815741,Geoff,Manhattan,SoHo,40.7253,-73.99916,Entire home/apt,249,5,8,2016-11-26,0.11,1,0 +289958,2 Rooms in Cottage NYC,1454655,Ronaldo,Queens,Long Island City,40.75295,-73.93228,Private room,65,2,5,2014-09-09,0.06,1,362 +289995,Zen Minimalist w/Garden- Bedford L Stop,1505217,Pia,Brooklyn,Greenpoint,40.71947,-73.95252,Entire home/apt,250,4,46,2019-06-23,0.52,1,121 +290457,Between Two Bridges 2BD -Whole Apt!,207124,Mikki & Bazi,Manhattan,Chinatown,40.71283,-73.99703,Entire home/apt,139,30,37,2019-02-16,0.41,1,153 +291524,BIG LUXURY LINCOLN CENTER AREA STUDIO + !!,1470688,Philip,Manhattan,Upper West Side,40.77338,-73.98887,Entire home/apt,209,7,14,2019-06-25,0.16,1,205 +291714,Brooklyn Beauty - Large 2 bedroom Apartment,1321504,Rohan,Brooklyn,Crown Heights,40.67385,-73.94405,Entire home/apt,120,5,37,2018-04-15,0.45,1,310 +291812,"Entire Apartment in Astoria, 15mins from Manhattan",1509416,Natalia,Queens,Astoria,40.76856,-73.91828,Entire home/apt,70,5,1,2016-08-30,0.03,1,0 +292047,Gorgeous pvt room in West Village,1490696,Alejandra,Manhattan,West Village,40.73908,-74.00378,Private room,90,3,209,2019-07-04,2.38,1,236 +292121,1 bedroom apt in Midtown West,169927,Hubert,Manhattan,Hell's Kitchen,40.7625,-73.9869,Entire home/apt,199,3,4,2018-09-12,0.07,1,200 +292266,Sunny and spacious bedroom,1513294,Urszula,Brooklyn,Bushwick,40.69755,-73.91187,Private room,50,60,17,2019-04-01,0.19,2,74 +292637,Beautiful Spacious One Bedroom,1021834,Svetlana,Brooklyn,Crown Heights,40.67335,-73.96,Entire home/apt,100,5,0,,,1,0 +293004,Room next to Columbia Uni.,910719,Sena,Manhattan,Harlem,40.80497,-73.95146,Entire home/apt,110,1,0,,,1,0 +293837,"Big Apt for Funky Art /Music Lovers, Outdoor Patio",1495502,Olly,Brooklyn,Williamsburg,40.70736,-73.94331,Entire home/apt,157,4,54,2019-06-11,0.66,2,12 +294227,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73683,-73.9543,Entire home/apt,199,3,43,2019-06-22,0.49,28,84 +294239,NYC Summer Getaway | Full Home 2BR,1521432,Carmen,Queens,Astoria,40.76444,-73.92607,Entire home/apt,192,3,7,2017-04-18,0.08,1,0 +294242,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.7389,-73.95395,Entire home/apt,199,3,75,2019-06-05,0.93,28,84 +294250,Beautiful New Garden Apartment ,45682,Irina,Manhattan,Upper West Side,40.77611,-73.97808,Entire home/apt,150,1,88,2019-06-07,0.99,1,0 +294259,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73806,-73.95462,Entire home/apt,199,3,73,2019-06-30,0.84,28,56 +294263,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73661,-73.95479,Entire home/apt,199,3,89,2019-07-01,1.06,28,62 +294280,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73857,-73.95435,Entire home/apt,199,3,23,2019-04-23,0.26,28,81 +294297,"Lovely apt in Williamsburg, BK",1521604,Summer,Brooklyn,Williamsburg,40.711,-73.96225,Entire home/apt,105,3,11,2019-06-23,0.16,1,0 +294353,Williamsburg HUGE SUNNY next2train!,430188,Pam,Brooklyn,Williamsburg,40.70686,-73.95365,Private room,135,28,84,2019-02-16,1.12,6,310 +294490,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73857,-73.95299,Entire home/apt,199,3,54,2019-06-10,0.61,28,60 +294717,Modern apartment w/ gorgeous view,1523610,Marissa,Brooklyn,Williamsburg,40.71095,-73.95239,Private room,125,3,17,2015-05-20,0.19,1,0 +295231,"Sunny, clean br available",1387286,Felicia,Brooklyn,Williamsburg,40.70918,-73.94881,Private room,60,7,1,2014-03-24,0.02,2,0 +295379,Have Whole Apt! Prime Williamsburg!,1525761,Ric,Brooklyn,Williamsburg,40.71685,-73.96573,Entire home/apt,85,1,73,2019-06-19,0.89,1,0 +295998,Panoramic View Central Park & NYC,568585,Alan,Manhattan,Upper West Side,40.7909,-73.96762,Entire home/apt,300,3,36,2019-05-01,0.47,1,29 +296345,E Williamsburg Apartment with Yard,496164,Todd,Brooklyn,Williamsburg,40.71143,-73.94159,Private room,75,2,98,2019-05-31,1.07,2,264 +296361,Nice Private Room Beauty in Queens,1528912,Weiwei,Queens,Elmhurst,40.737,-73.87444,Private room,55,1,63,2019-05-18,0.89,2,341 +296658,Sublet in Brooklyn/Lefferts Gardens,1530106,Glenn,Brooklyn,Crown Heights,40.66469,-73.96091,Private room,44,5,2,2017-09-21,0.09,1,0 +296717,"Cozy Corner, Bedford Ave Brooklyn!",1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95405,Private room,55,5,18,2018-10-10,0.20,3,0 +296844,"HISTORIC WILLIAMSBURG, BKLYN #1",839679,Brady,Brooklyn,Williamsburg,40.71653,-73.95554,Private room,30,3,24,2013-12-04,0.28,3,0 +297611,Inexpensive apartment in exchange for cat-care,997124,Alison,Brooklyn,Fort Greene,40.69309,-73.97074,Private room,35,3,1,2018-05-13,0.07,1,0 +297962,"Private room in 2 br Apt, Wburg, BK",1535987,Sergio,Brooklyn,Williamsburg,40.70638,-73.96627,Private room,70,1,2,2018-01-02,0.05,1,363 +298073,"Bright, Airy Williamsburg Apt",1536533,Irina,Brooklyn,Williamsburg,40.71629,-73.95786,Entire home/apt,130,14,23,2016-11-08,0.25,1,25 +298759,Large Double Room Queenbed Wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68622,-73.94675,Private room,52,2,93,2019-07-07,1.12,4,0 +298854,"Low$pacious in Williamsburg, Bklyn",1412944,Jason,Brooklyn,Williamsburg,40.71635,-73.94609,Private room,75,3,0,,,1,358 +299062,1 Bdrm in 2 Bdrm Apt in Upper East Lux Drmn Bldng,236421,Jessica,Manhattan,Upper East Side,40.77272,-73.95307,Private room,190,3,0,,,2,0 +299078,Charming 1BD in SoHo,787261,L,Manhattan,SoHo,40.72509,-74.00304,Entire home/apt,250,5,152,2019-06-23,1.69,1,109 +299531,Feel like you never leave your home,1220404,Tom,Brooklyn,East New York,40.66795,-73.89232,Entire home/apt,100,1,119,2019-06-30,1.39,2,289 +299699,Sunny apartment in Greenpoint,1557998,Eliza,Brooklyn,Greenpoint,40.72582,-73.95843,Entire home/apt,130,4,9,2018-04-02,0.10,1,188 +301034,Furnished Bedroom with private half bath,1550578,Ron,Manhattan,Harlem,40.80637,-73.95433,Private room,140,2,44,2019-06-26,0.49,1,260 +302057,Sunny private room featured in film,1555897,Alice,Brooklyn,Flatbush,40.64387,-73.96855,Private room,75,2,158,2019-01-02,1.77,1,168 +302758,Sunny 1BR East Harlem Apartment,8605,Dimitry,Manhattan,East Harlem,40.7968,-73.93611,Entire home/apt,150,7,12,2016-03-26,0.14,1,0 +303345,The best studio in town,1561505,Ibrahima,Manhattan,East Harlem,40.79596,-73.94463,Entire home/apt,90,3,51,2019-05-04,0.57,1,311 +303462,Fully Furnished 1B/1BTH UWS GEM 1 YR Sublease,1562045,Antonio,Manhattan,Upper West Side,40.78012,-73.98439,Entire home/apt,295,1,0,,,1,146 +304799,Penthouse Studio by Central Park,185753,Carolyn,Manhattan,Upper West Side,40.77508,-73.9799,Entire home/apt,150,2,11,2019-06-09,0.13,1,2 +305211,Your Own 2 Br Apt Bedford and Grand,1570170,Kristina,Brooklyn,Williamsburg,40.71532,-73.96064,Entire home/apt,180,3,236,2019-06-18,2.74,2,242 +306702,Spacious + Sunny Studio in Ft. Greene Brooklyn!,1577493,Tina,Brooklyn,Fort Greene,40.68786,-73.97421,Private room,135,3,16,2018-09-01,0.18,1,0 +306799,2 rooms; private entrance & bath!,1577961,Oona,Brooklyn,Bushwick,40.70793,-73.91987,Private room,65,5,123,2019-02-28,1.42,1,46 +309342,Giant Sunny Bedroom & Private Bath in my Apartment,1586945,Ben,Manhattan,Upper West Side,40.79044,-73.97513,Private room,99,3,14,2015-08-19,0.22,1,365 +310220,Prime location! Backyard & outdoor shower! Unique!,1590548,Magdalena,Brooklyn,Greenpoint,40.72668,-73.95762,Private room,149,14,65,2018-12-30,0.73,1,364 +310272,"Private Room in Artist's Home, Stapleton, SI",1390555,Jonathan,Staten Island,Clifton,40.62318,-74.07848,Private room,59,1,50,2019-06-03,0.56,1,352 +310325,Large Sunny Bedroom with Bay Window,745069,Kimberly,Manhattan,Harlem,40.82286,-73.94596,Private room,75,3,33,2019-06-10,0.39,3,301 +310338,Harlem/Hamilton Heights Sunny Room,745069,Kimberly,Manhattan,Harlem,40.82451,-73.94457,Private room,75,3,30,2019-01-01,0.35,3,322 +310524,Clinton Hill Duplex near Pratt w/Balcony!,1597481,Mary,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95927,Private room,75,3,13,2019-01-31,0.15,1,298 +310796,"Sunny 1 BR, West 80s & Central Park",1385157,Brian,Manhattan,Upper West Side,40.78443,-73.97399,Entire home/apt,109,30,18,2019-06-07,0.20,5,285 +311003,"2 BD / 2BA WITH GARDEN, SLEEPS 6",72747,Karen,Brooklyn,Crown Heights,40.67679,-73.95639,Entire home/apt,225,4,1,2013-04-21,0.01,1,342 +311343,COMFORTABLE ROOM,1601664,Junior,Manhattan,East Harlem,40.79107,-73.94381,Private room,86,3,216,2019-05-14,2.44,1,250 +311356,Charming Ridgewood Soulful Walk-Up,142147,Richard,Queens,Ridgewood,40.70215,-73.91139,Private room,52,2,98,2019-05-01,1.09,1,326 +312429,"Comfortable, well-appointed room",1606222,P,Brooklyn,Prospect Heights,40.67339,-73.96519,Private room,100,2,61,2019-06-02,0.86,1,90 +313890,2ND AVENUE OFF HOUSTON/LOFTLIKE STU,1613244,Ariel,Manhattan,Lower East Side,40.72209,-73.99274,Entire home/apt,99,30,13,2019-04-23,0.34,9,289 +314982,Share in NYC's trendy East Village,1617817,Chris,Manhattan,East Village,40.73171,-73.98717,Private room,89,3,136,2019-07-01,1.52,1,193 +316238,Historic Brooklyn 2-Bedroom Apt,279078,Andrew & Markus,Brooklyn,Bedford-Stuyvesant,40.69213,-73.951,Entire home/apt,135,2,39,2019-06-09,0.47,2,293 +317838,APT W/ OUTDOOR SPACE!! LONG TERM RENTAL PREFERRED!,1631400,Sean And Kiana,Manhattan,West Village,40.73237,-74.00608,Entire home/apt,199,14,65,2019-07-01,0.73,1,155 +317905,Come and go as you please in BKLN!,1631733,Jane,Brooklyn,Kensington,40.64354,-73.97777,Entire home/apt,89,3,62,2019-01-02,0.71,1,189 +318021,Room in Huge 1200sf W Harlem Suite,1632149,Michael,Manhattan,Harlem,40.80343,-73.9531,Private room,110,3,47,2019-06-30,0.57,1,248 +318187,"Huge, Sunny, Open Loft in Brooklyn",1633100,Ana,Brooklyn,Bushwick,40.70462,-73.9228,Entire home/apt,120,2,42,2019-06-20,0.48,1,238 +319724,Cozy Nook in Heart of Williamsburg,1639120,Jason,Brooklyn,Williamsburg,40.71394,-73.96267,Private room,59,3,207,2019-06-16,2.29,2,284 +319798,Peaceful Room...,9647066,Maria Luiza,Brooklyn,Bay Ridge,40.6339,-74.02035,Private room,49,4,72,2019-07-03,0.81,2,343 +319844,Cute Room in Historic Loft!,1639884,Nora,Brooklyn,Greenpoint,40.73028,-73.95927,Private room,79,14,22,2019-05-02,0.25,1,268 +320865,Harlem on the Range,1643782,Katy,Manhattan,Harlem,40.8076,-73.94433,Entire home/apt,135,30,25,2019-03-31,0.28,1,249 +320876,Amazing Park Slope Duplex with Deck,516347,Lillian,Brooklyn,South Slope,40.66485,-73.98343,Entire home/apt,185,2,215,2019-06-30,2.42,1,291 +320877,Entire 2 Bedroom Apartment in Williamsburg,1366194,Fabiana,Brooklyn,Williamsburg,40.71279,-73.95852,Entire home/apt,225,4,26,2017-06-24,0.73,1,0 +321014,Big Bright E Village 2BR (Baby Nursery),1644452,Erin,Manhattan,Gramercy,40.73294,-73.98282,Entire home/apt,245,5,18,2018-01-02,0.21,1,0 +321136,Private Manhattan Studio on Harlem/Heights Border,1644999,Candice,Manhattan,Washington Heights,40.83456,-73.9457,Entire home/apt,115,3,18,2018-12-31,0.21,1,31 +322037,"Luxury Williamsburg, Brooklyn LOFT",1649300,James,Brooklyn,Williamsburg,40.72091,-73.95814,Entire home/apt,325,2,320,2019-07-07,3.60,1,0 +322604,Artist Loft-McCarren Park-Williamsburg-BrooklynNYC,1651591,Todd,Brooklyn,Williamsburg,40.71819,-73.95414,Private room,95,2,160,2019-07-02,1.80,2,79 +322974,Chelsea/Meat Packing Artist Space!,1610852,Amanda,Manhattan,West Village,40.73887,-74.00342,Private room,120,2,78,2019-02-08,1.22,1,0 +323706,Elegant Spacious Family Townhouse,6064192,Ted And Diane,Manhattan,Upper West Side,40.77892,-73.98238,Entire home/apt,499,30,64,2018-08-03,0.72,1,157 +324115,Large Master Bedroom - Williamsburg,1639120,Jason,Brooklyn,Williamsburg,40.71336,-73.96192,Private room,75,2,219,2019-06-19,2.44,2,277 +324517,Central Park Fifth Av MET Museum,1660724,S,Manhattan,Upper East Side,40.77688,-73.96177,Private room,109,1,66,2017-12-10,0.94,1,353 +324800,Real Williamsburg Artist Loft,1661965,Mathias,Brooklyn,Williamsburg,40.71368,-73.94478,Entire home/apt,160,3,25,2018-12-22,0.29,1,0 +325429,Lovely Upper East Yorkville 1 BDRM,92788,Sara,Manhattan,Upper East Side,40.7761,-73.95265,Entire home/apt,219,4,102,2019-06-28,1.15,2,280 +326832,Cozy Upper East Side Studio,668564,Nitzan,Manhattan,Upper East Side,40.77471,-73.95574,Entire home/apt,159,2,32,2019-06-23,0.47,1,7 +326956,"Large Cozy Room #2, Landmark Home 1 Block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68625,-73.96446,Private room,180,3,15,2019-04-22,0.18,6,266 +327521,"Lovely studio in East Village, NY",82896,Esther,Manhattan,East Village,40.725,-73.98851,Entire home/apt,150,5,1,2015-11-16,0.02,1,0 +327778,NYC Summer Discount 1 BR Gramercy Apt,1675255,Jill,Manhattan,Kips Bay,40.74016,-73.97665,Entire home/apt,106,3,12,2019-06-30,0.14,1,271 +328040,"Awesome views, Central location",1676487,Robyn,Manhattan,Midtown,40.75023,-73.98293,Entire home/apt,299,10,19,2019-06-11,0.27,1,101 +328693,Spacious Manhattan Apartment near Central Park,1013131,Joseph,Manhattan,Upper West Side,40.78867,-73.96809,Entire home/apt,179,3,297,2019-06-24,3.37,1,205 +328744,Entire Apt: Sunny 2bd! 15min to NYC,890215,Duane,Brooklyn,Crown Heights,40.66604,-73.95914,Entire home/apt,165,3,12,2019-07-07,0.13,1,343 +329064,Your Historic House in Brooklyn,1680375,Marc,Brooklyn,Flatbush,40.63593,-73.96076,Entire home/apt,500,4,9,2017-01-02,0.11,1,0 +329310,Creative Director's Chinatown Loft,1681546,Todd,Manhattan,Chinatown,40.71638,-73.99167,Entire home/apt,250,15,9,2016-05-14,0.10,1,190 +329385,"HOSTING YOUR COZY, ECLECTIC MILIEU FOR NYC VISIT",312288,Paula,Manhattan,Inwood,40.86658,-73.92558,Private room,87,7,46,2019-05-25,0.62,2,310 +333189,Charming private room in New-York,1697784,Jonathan,Brooklyn,Williamsburg,40.71179,-73.96449,Private room,79,4,42,2019-06-24,0.47,2,52 +333323,Cozy bedroom near Times Square,1698391,Pat,Manhattan,Hell's Kitchen,40.76186,-73.99165,Private room,75,2,118,2019-07-01,2.11,3,312 +334607,Artist's Flat in Historic Building #10263,52043,Patrick,Brooklyn,Williamsburg,40.71417,-73.95917,Entire home/apt,200,30,53,2019-05-03,0.60,1,0 +334781,Queen size sofa bed in Harlem,547177,Chryslaine,Manhattan,Harlem,40.82772,-73.93877,Private room,80,1,15,2019-06-24,0.21,1,329 +335797,Bklyn 6 Beds 1 Bathroom Rental 2,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63602,-73.94607,Entire home/apt,115,3,64,2019-05-11,0.72,4,333 +335819,Bklyn 4 Beds 1 Bathroom Rental 3,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63759,-73.9459,Entire home/apt,115,3,51,2019-04-27,0.58,4,327 +335820,4 Beds 2 Bathrooms Rental 1,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63611,-73.94637,Entire home/apt,120,3,79,2019-04-29,0.88,4,349 +336220,Stylish & Quiet NYC Retreat!,1711529,Jason,Manhattan,Harlem,40.803,-73.95278,Private room,125,3,202,2019-06-19,2.29,1,217 +339456,"Bright, new luxury apartment in doorman building",1723485,Mary,Manhattan,Upper West Side,40.79526,-73.9655,Entire home/apt,387,1,23,2018-12-31,0.63,1,0 +341525,TIMES SQUARE MASTER BEDROOM!,1732559,J,Manhattan,Hell's Kitchen,40.75763,-73.99482,Private room,95,6,62,2019-06-01,0.76,2,80 +341982,"Lincoln Center Studio, Clean&Sunny!",483013,Yj,Manhattan,Upper West Side,40.77577,-73.98258,Entire home/apt,99,2,36,2015-08-23,0.45,1,0 +342027,Serenity amidst the busy city,168417,Marie,Manhattan,Upper East Side,40.77631,-73.95289,Entire home/apt,121,1,16,2019-06-16,0.19,2,351 +342965,Super Clean Apt by Columbus Circle,1740233,Gladys,Manhattan,Hell's Kitchen,40.76774,-73.9892,Entire home/apt,350,4,24,2017-09-21,0.27,1,362 +342995,Unique private room and bathroom in Brownstone,1740216,Laura,Manhattan,Harlem,40.81169,-73.94355,Private room,75,2,77,2019-07-01,0.88,2,144 +343276,TIMES SQUARE HOUSE!,1732559,J,Manhattan,Hell's Kitchen,40.75782,-73.99349,Private room,95,5,110,2019-05-26,1.27,2,43 +343971,Beautiful Room in a Beautiful New NYC Apartment,10609846,Ben,Manhattan,Harlem,40.83177,-73.95,Private room,89,1,56,2018-07-16,0.64,1,365 +344019,Best West Village/Meatpacking Space,1746209,R.,Manhattan,West Village,40.73104,-74.00879,Private room,195,1,7,2012-06-07,0.08,1,129 +344068,21 day Chelsea Apartment rental,1745312,Steven,Manhattan,Flatiron District,40.74253,-73.9916,Private room,160,21,0,,,1,0 +344092,"Heavy Sun, Quiet, Arty 1 Bedroom",1745402,Tony,Brooklyn,Sunset Park,40.64372,-74.02066,Entire home/apt,70,18,19,2016-07-13,0.22,1,0 +346248,Cosy apartment in West Village,1755339,Julie,Manhattan,Greenwich Village,40.72886,-74.00013,Private room,100,3,7,2015-05-31,0.09,1,0 +346805,Spacious Lower East Side Apt in NYC,562614,Beth,Manhattan,Lower East Side,40.71868,-73.99017,Entire home/apt,140,1,53,2014-10-28,0.60,1,0 +347865,ARTY 2 BED EAST VILLAGE GEM,251176,Jason,Manhattan,East Village,40.72143,-73.98117,Entire home/apt,189,3,265,2019-06-24,2.99,2,355 +349841,Williamsburg Loft: Amazing Sublet,202507,Nom,Brooklyn,Williamsburg,40.71682,-73.96369,Private room,160,5,0,,,1,0 +350168,Artist 2BR in Park Slope w/backyard,1774431,Kate,Brooklyn,Park Slope,40.67725,-73.9821,Entire home/apt,178,30,8,2018-01-02,0.10,1,280 +350525,Spacious 2BR near Botanic Garden,74777,Niki & Colin,Brooklyn,Crown Heights,40.66888,-73.95292,Entire home/apt,145,14,46,2018-06-19,0.52,1,38 +351530,Gorgeous brownstone next to park!,1747222,Sascha,Brooklyn,Park Slope,40.67188,-73.97533,Entire home/apt,125,5,6,2018-11-04,0.08,1,31 +351859,Exquisite Spacious Studio in Midtown,417652,Ron,Manhattan,Chelsea,40.74964,-73.99158,Entire home/apt,265,4,75,2019-07-01,0.86,1,324 +352651,COMFORTABLE LARGE ROOM,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.95057,Private room,77,5,11,2019-06-23,0.13,3,365 +352864,Cute Private room in Upper East Side #14,1786901,Shai,Manhattan,Upper East Side,40.78164,-73.94717,Private room,60,3,5,2019-06-29,1.47,9,0 +353317,Lower East Side 1bedroom apt in NYC,314377,Marc,Manhattan,Chinatown,40.71515,-73.99029,Entire home/apt,129,3,132,2019-06-23,1.49,1,171 +354095,Large Beautiful East Village 1-Bdrm,1474749,Jared,Manhattan,East Village,40.72986,-73.97913,Entire home/apt,199,6,41,2019-06-07,0.47,1,36 +355106,Big room near Prospect Park! NY!,1797859,Camila,Brooklyn,Prospect-Lefferts Gardens,40.66039,-73.95937,Private room,92,7,34,2019-04-07,0.39,1,332 +356230,It's so easy to get to EVERYthing!,1251762,Molly,Brooklyn,Crown Heights,40.66898,-73.9571,Entire home/apt,185,3,34,2014-06-09,0.39,1,0 +357509,Manhattan - Best Location in Midtown,684129,Ellie,Manhattan,Midtown,40.75407,-73.96713,Entire home/apt,110,7,27,2019-03-01,0.31,1,192 +359982,Sunny private room right off L train,1631288,Kay,Brooklyn,Williamsburg,40.70712,-73.94013,Private room,65,4,30,2019-04-13,0.34,1,139 +360400,Beautiful Room in Manhattan Loft,1386983,Candice,Manhattan,Midtown,40.74553,-73.98943,Private room,135,3,214,2019-06-02,2.45,2,167 +361803,"Luxury, Adorable Studio Apartment",1562039,Jennifer,Manhattan,Upper East Side,40.77584,-73.9502,Shared room,115,30,12,2018-04-15,0.14,1,0 +363320,HOME AWAY FROM HOME,390251,Lilly,Manhattan,Harlem,40.79967,-73.95156,Private room,175,2,6,2018-07-30,0.09,4,10 +363673,Beautiful 3 bedroom in Manhattan,256239,Tracey,Manhattan,Upper West Side,40.80142,-73.96931,Private room,3000,7,0,,,1,365 +364275,Den of Zen at The Denizen Bushwick,1840564,Rico,Brooklyn,Williamsburg,40.70507,-73.9353,Private room,72,3,156,2019-07-04,1.80,1,110 +364785,Sunny large private room in Park Slope,1842714,Susan,Brooklyn,Park Slope,40.67962,-73.97655,Private room,80,2,30,2018-12-29,0.74,1,0 +367042,Eastern Parkway Brooklyn 1BR Flat,774128,Andre,Brooklyn,Crown Heights,40.66847,-73.94875,Entire home/apt,125,5,1,2014-09-04,0.02,1,0 +367810,1400sf Manhattan View Artistic Loft,1728785,Veronika And John,Brooklyn,Greenpoint,40.7376,-73.95678,Private room,120,5,3,2019-04-24,0.09,1,242 +369411,"ingefära hus! Private room Williamsburg, Brooklyn",179679,Ginger,Brooklyn,Williamsburg,40.71148,-73.95573,Private room,94,2,272,2019-06-27,3.18,3,22 +369567,Private MasterBR w/ View of Museum,1863447,Luke,Brooklyn,Prospect Heights,40.67425,-73.96514,Private room,56,3,63,2019-01-01,0.82,1,0 +369671,LUXURY 2BD/2BTH - HUGE PATIO,1863713,Alix,Manhattan,East Village,40.72899,-73.97792,Entire home/apt,549,30,58,2019-07-01,0.66,1,200 +371138,"Comfy Brooklyn 2BD, W/ Backyard",1869567,Max,Brooklyn,Greenpoint,40.72488,-73.94013,Entire home/apt,190,2,5,2015-10-12,0.10,1,0 +373618,Authentic designer loft/roof deck best Williamsbrg,1879389,Christina,Brooklyn,Williamsburg,40.72212,-73.95696,Private room,129,3,63,2019-06-30,0.71,2,87 +374548,Sunny Retreat with Roof Garden,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68534,-73.93433,Entire home/apt,85,5,268,2019-07-02,3.04,2,202 +375249,Enjoy Staten Island Hospitality,1887999,Rimma & Jim,Staten Island,Graniteville,40.62109,-74.16534,Private room,20,3,80,2019-05-26,0.92,1,226 +377217,Great apt on the UWS - A RARE FIND!,1895957,Ido,Manhattan,Upper West Side,40.78161,-73.97898,Entire home/apt,145,3,22,2017-04-14,0.25,1,0 +378460,Cozy 2 BD in Midtown West,1900800,Geny,Manhattan,Hell's Kitchen,40.75643,-73.99046,Entire home/apt,200,7,13,2019-06-17,0.15,1,327 +380416,Park Slope Sunny Studio,438133,Ellis,Brooklyn,Park Slope,40.67407,-73.98111,Entire home/apt,125,4,23,2019-04-30,0.67,2,262 +380730,Luxury L-Shape Studio + 3 cats,1317588,Alexander,Brooklyn,Sheepshead Bay,40.59721,-73.95149,Entire home/apt,50,30,3,2018-12-04,0.08,1,0 +382523,A cozy Red Room with private bathroom,732535,William,Manhattan,Harlem,40.80491,-73.94866,Private room,160,3,10,2018-10-24,0.12,3,359 +382524,Cozy room with private bathroom & outside garden,732535,William,Manhattan,Harlem,40.80334,-73.94805,Private room,180,3,14,2019-04-04,0.16,3,348 +385190,"Beautiful 1 bdrm, Inwood Manhattan",1928213,Brace,Manhattan,Inwood,40.87039,-73.91611,Private room,100,1,20,2019-06-06,0.28,1,0 +385657,Beautiful Loft/10 min to Manhattan!,1930204,Sophia,Brooklyn,Williamsburg,40.704,-73.93285,Private room,70,5,2,2015-05-15,0.02,1,0 +385824,New York City- Riverdale Modern two bedrooms unit,1931205,Orit,Bronx,Spuyten Duyvil,40.87991,-73.91673,Entire home/apt,120,2,47,2019-07-03,1.22,1,318 +386555,A PLACE TO STAY CLOSE TO MANHATTAN,773928,Nen,Staten Island,Stapleton,40.62766,-74.07988,Private room,110,2,6,2019-01-01,0.19,1,363 +386744,Great room priv/bathrm Eastside location 70's ST,1935291,Cristina,Manhattan,Upper East Side,40.7685,-73.96034,Private room,105,7,93,2019-06-07,1.06,1,70 +386799,Midtown NYC - 1 Bedroom Apartment,1935605,Jon,Manhattan,Midtown,40.76082,-73.97548,Entire home/apt,250,3,116,2016-01-03,1.32,1,0 +387324,Cozy Room in Sunny Apartment (Long/Short Term),1828506,Yogi,Manhattan,Kips Bay,40.74238,-73.98122,Private room,74,240,15,2018-09-04,0.17,1,90 +387377,THERE'S NO PLACE LIKE HOME.........,390251,Lilly,Manhattan,Harlem,40.80151,-73.9522,Entire home/apt,165,2,70,2019-06-03,0.80,4,15 +387666,Cozy home in vibrant Manhattan,1939728,Michael & Aleksandra,Manhattan,Washington Heights,40.83434,-73.94027,Private room,99,3,4,2019-03-04,0.41,1,335 +387735,LOCATION LOCATION LOCATION Sara's,1146958,Liz,Manhattan,Gramercy,40.73677,-73.98084,Entire home/apt,125,30,128,2019-06-11,1.46,4,0 +389482,Quaint & Quiet in Queens,1947974,Constance F.,Queens,Briarwood,40.71151,-73.81561,Private room,75,1,59,2018-11-09,0.69,2,0 +391948,Single Room,1960128,Luana,Queens,Ozone Park,40.68581,-73.84642,Shared room,45,1,8,2015-09-30,0.11,2,364 +391955,Charming brownstone apartment,1960189,Rebecka,Brooklyn,Columbia St,40.68636,-74.00345,Entire home/apt,159,2,106,2019-06-24,1.22,1,34 +392948,Williamsburg near soho .support artist living,312722,Kristian & Di,Brooklyn,Williamsburg,40.70994,-73.96573,Private room,45,15,15,2019-06-26,0.57,4,242 +393016,Your Times Square Sanctuary,1303029,Kristina,Manhattan,Hell's Kitchen,40.76013,-73.99007,Private room,104,2,133,2019-05-05,1.51,1,147 +393094,Designer studio in Luxury Building,1965972,Alayna,Manhattan,Financial District,40.70621,-74.01525,Entire home/apt,225,4,27,2019-05-25,0.31,1,169 +393682,Private cozy bedroom in Nolita,1968502,Paola,Manhattan,Nolita,40.72172,-73.99689,Private room,100,5,61,2018-01-02,0.70,1,188 +394026,ArtistLoft-MccarenPark-Williamsburg,1651591,Todd,Brooklyn,Greenpoint,40.72049,-73.95221,Private room,90,2,2,2018-10-08,0.02,2,89 +394111,"Beautiful Bedrooms in Briarwood, NY",1947974,Constance F.,Queens,Briarwood,40.71068,-73.81577,Private room,75,1,16,2017-01-01,0.18,2,189 +394235,Flatiron-Designer's loft,1970839,Javier,Manhattan,Flatiron District,40.74125,-73.98862,Entire home/apt,350,7,0,,,1,0 +396636,Stylish Designer Studio with Piano,1981742,Daniel,Manhattan,Harlem,40.83091,-73.94223,Entire home/apt,135,5,38,2019-05-16,0.44,1,253 +397034,New York City for All Seasons!,70234,Richelle,Manhattan,Upper West Side,40.7824,-73.98294,Private room,125,1,25,2013-06-22,0.28,1,311 +397297,STUNNING E Vill Penthouse,1982209,Wendy,Manhattan,East Village,40.72634,-73.98267,Entire home/apt,225,3,93,2015-11-17,1.05,1,0 +397420,New York Host who knows The Most,1985717,Darktalia,Manhattan,Harlem,40.82703,-73.94311,Private room,85,3,6,2017-09-05,0.07,1,363 +398281,One Block From Central Park!,325790,Michael,Manhattan,Upper East Side,40.78521,-73.95489,Entire home/apt,200,7,30,2016-12-04,0.34,1,224 +398283,"PARK SLOPE: SWEET, LARGE 2BR DUPLEX",1989327,William,Brooklyn,South Slope,40.66106,-73.98316,Entire home/apt,250,3,17,2019-07-05,0.46,1,5 +399946,Light Superhosted Chill LES Apt,1996265,David,Manhattan,Lower East Side,40.72123,-73.98996,Private room,90,10,67,2019-05-16,0.77,1,301 +400039,Big Beautiful Railroad in Brooklyn,1488809,John,Brooklyn,Bushwick,40.70339,-73.92945,Entire home/apt,130,30,53,2017-06-30,0.68,1,0 +400466,"Bright Brooklyn Flat w/Park Views, 30 day minimum",1985759,Esther,Brooklyn,Prospect-Lefferts Gardens,40.66009,-73.96237,Entire home/apt,90,30,32,2016-10-11,0.37,1,50 +401579,"ECO-APT, free YOGA, 2 new bedrooms. Best location!",462379,Loretta,Brooklyn,Carroll Gardens,40.67939,-73.99398,Entire home/apt,298,30,131,2019-06-23,1.84,2,296 +401836,"Sunny UES 1.5 Bedroom, Sleeps 6",2005740,Maya,Manhattan,Upper East Side,40.76494,-73.95804,Entire home/apt,300,4,19,2019-05-21,0.22,1,84 +402037,Stay with a Jazz Singer in Harlem!,2006712,Amanda,Manhattan,Harlem,40.80192,-73.95827,Private room,125,1,0,,,1,365 +403056,Large Private Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79314,-73.94853,Private room,125,3,74,2019-05-28,0.84,3,212 +403264,Luxury room in Manhattan Duplex Apt,1386983,Candice,Manhattan,Midtown,40.7453,-73.99056,Private room,145,3,165,2019-07-03,1.88,2,181 +403668,"Gorgeous Sunny, Spacious 1 bdrm in East Village",2013117,Katya,Manhattan,East Village,40.72812,-73.97966,Entire home/apt,147,2,16,2019-01-02,0.18,1,0 +404502,ARTIST LOFT+OFFICE in PRIME WILLIAMSBURG!,242506,Jsun,Brooklyn,Williamsburg,40.7093,-73.96484,Private room,123,3,269,2019-06-05,3.09,3,158 +404923,Private Garden Entry,2017752,Jeruschka,Brooklyn,Windsor Terrace,40.64791,-73.97904,Entire home/apt,88,3,243,2019-06-24,2.75,1,217 +405025,LUXE Privé L.I.C. Apt & Garden,2018042,Megan,Queens,Long Island City,40.75453,-73.93377,Entire home/apt,215,2,59,2019-07-01,0.94,1,335 +405408,"Magazine SOHO Studio Loft. +Read our reviews!",2020431,M. C.,Manhattan,SoHo,40.72057,-73.99976,Entire home/apt,225,3,134,2019-06-22,1.53,1,231 +406926,Nolita apt. with private garden,2027134,Marie-Helene,Manhattan,Nolita,40.7234,-73.99439,Entire home/apt,269,28,81,2019-07-03,0.93,1,122 +406992,Family friendly Williamsburg Apt for Vacation!,1952186,Erin,Brooklyn,Williamsburg,40.71121,-73.94669,Entire home/apt,145,3,7,2016-10-22,0.08,1,270 +407469,BROWNSTONE TWO IN BROOKLYN in NYC,2015914,Majar,Brooklyn,Bushwick,40.68979,-73.91661,Private room,75,3,112,2019-05-26,1.28,8,330 +408491,Charming West Village One Bedroom,2034361,Marshall,Manhattan,Greenwich Village,40.73448,-73.99797,Entire home/apt,145,5,0,,,1,0 +408983,Brooklyn Brownstone full floor/garden ProspectPark,520189,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65937,-73.95906,Entire home/apt,229,2,92,2019-06-09,1.05,1,321 +409262,"Family friendly, steps to subway, large garden :)",1621363,Elizabeth,Brooklyn,Boerum Hill,40.68599,-73.98826,Entire home/apt,300,29,23,2019-02-14,0.26,2,312 +409293,Private Sunny Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79477,-73.95046,Private room,100,3,67,2019-05-28,0.76,3,345 +409666,"1 bdr apt, sunny & artsy, 4 min walk to the beach",405225,Olga,Brooklyn,Brighton Beach,40.5781,-73.95455,Entire home/apt,75,2,8,2016-09-18,0.10,1,2 +411336,"""Simple Perfect Soho""",2047776,Jennifer,Manhattan,Nolita,40.72278,-73.9967,Entire home/apt,225,2,244,2019-07-01,2.81,2,252 +411525,Beautiful Room + Private Balcony,1697784,Jonathan,Brooklyn,Williamsburg,40.71472,-73.96225,Private room,120,6,62,2019-05-17,0.70,2,15 +411918,"3 BR apartment Crown Heights, BKLYN",2050338,Verena,Brooklyn,Crown Heights,40.66924,-73.94406,Entire home/apt,160,5,125,2019-07-02,1.47,3,169 +412061,Brownstone Sunny & Spacious top fl,2051075,Linda,Brooklyn,Crown Heights,40.67259,-73.95489,Entire home/apt,125,30,58,2019-06-01,0.67,2,212 +412180,"Morocco in Brooklyn with the flyest loft, Amazing!",2051961,Kim,Brooklyn,Bedford-Stuyvesant,40.69321,-73.9442,Entire home/apt,95,5,9,2018-09-03,0.10,1,0 +413504,Perfect NYC/Williamsburg Location,1286417,Omri,Brooklyn,Williamsburg,40.71348,-73.94447,Private room,119,3,137,2019-06-13,1.57,1,296 +413775,Midtown East Sutton Area Entire Apt,2058589,Cary,Manhattan,Midtown,40.75816,-73.96457,Entire home/apt,275,2,16,2019-05-09,0.24,1,167 +413876,Finest Gateway to historic Financial District,2059155,Dan,Manhattan,Financial District,40.70537,-74.00992,Entire home/apt,160,1,36,2018-09-26,0.57,1,365 +414801,Industrial Brooklyn Loft with Tree-Lined Windows,319077,Shell,Brooklyn,Clinton Hill,40.68722,-73.96289,Entire home/apt,500,1,54,2019-03-24,0.65,4,365 +415304,Cute east village apartment.,2050328,Martis,Manhattan,East Village,40.73111,-73.98528,Entire home/apt,175,14,1,2016-05-31,0.03,1,0 +416557,"All Charm: Lush Garden, Huge Kitchen + Quiet",2714164,Jasmine,Brooklyn,Greenpoint,40.72212,-73.94389,Entire home/apt,87,6,39,2019-03-13,0.47,2,258 +417685,Bright and Quiet 2 BR in Park Slope,119588,Vero,Brooklyn,Park Slope,40.66626,-73.97933,Entire home/apt,160,1,145,2019-06-22,1.76,2,257 +418291,"Cozy, bright 1BR avail. in East Village apartment",626289,Marshall,Manhattan,East Village,40.72978,-73.9793,Private room,125,3,28,2019-06-25,0.33,1,364 +419373,Stylish Loft w/Lovely Backyard,2085639,Eada,Brooklyn,Bedford-Stuyvesant,40.68838,-73.94193,Entire home/apt,90,2,206,2019-06-30,2.40,1,236 +419792,Great Apt IDEAL Location 900 SF,2087636,Maddine,Manhattan,Lower East Side,40.71804,-73.98565,Entire home/apt,200,7,4,2019-05-04,0.22,1,0 +421554,Garden - Brownstone Experience,2096690,Richard,Brooklyn,Bedford-Stuyvesant,40.68559,-73.93896,Entire home/apt,250,15,37,2016-10-30,0.52,2,54 +422040,Gorgeous ! Best Location in NYC !,1090764,Lynda,Manhattan,Upper West Side,40.77995,-73.98342,Private room,99,30,27,2017-08-11,0.31,1,189 +424192,luxury 1 BedRoom Apt Hells Kitchen,2108853,Jasen,Manhattan,Hell's Kitchen,40.7559,-73.99469,Entire home/apt,325,30,18,2016-05-21,0.21,1,364 +424667,Luxury room + En-suite bath in Times Sq/Midtown W,2111060,Jj,Manhattan,Hell's Kitchen,40.76291,-73.99202,Private room,99,1,134,2019-04-02,1.54,1,265 +424767,"Chic, Spacious Loft + Backyard",2103888,Akari,Manhattan,Midtown,40.74406,-73.98273,Entire home/apt,325,2,197,2019-06-20,2.25,1,207 +424889,Sunny and Zen W. Village Studio of Your Own,2076827,Shelley,Manhattan,West Village,40.73041,-74.00498,Entire home/apt,129,7,5,2015-05-21,0.09,1,0 +424930,2BR Lux Prospect Heights,905122,Supriya,Brooklyn,Crown Heights,40.6764,-73.96218,Entire home/apt,130,28,5,2015-10-06,0.06,1,196 +425784,"An airy, comfy, bookish refuge!",2116807,Rafil,Brooklyn,Vinegar Hill,40.70279,-73.98284,Entire home/apt,190,4,8,2018-01-02,0.09,1,0 +428226,Bright & Vibrant- The BK experience,2128778,Rachael,Brooklyn,Crown Heights,40.67436,-73.956,Private room,55,2,62,2019-05-11,0.71,2,57 +430427,"Very clean, quiet bedroom available",820046,Elaine,Manhattan,Washington Heights,40.83559,-73.94095,Private room,60,2,13,2017-01-31,0.15,1,0 +430665,Lux One-bed Central Park View UWS,2141109,Kishore,Manhattan,Upper West Side,40.79234,-73.96482,Entire home/apt,250,1,8,2014-08-22,0.09,1,0 +431865,Elegant Uptown Historic District Garden Apartment,361855,Kurt,Manhattan,Washington Heights,40.83451,-73.93885,Entire home/apt,275,3,50,2019-06-30,0.87,2,277 +432090,Only 5 Min. to Manhattan!,2148881,Grace,Queens,Long Island City,40.74826,-73.94633,Private room,50,180,69,2016-09-28,0.79,1,0 +433218,Lovely 1 bdrm in Prospect Heights!,644941,Miya,Brooklyn,Prospect Heights,40.67763,-73.97185,Entire home/apt,125,4,41,2019-05-20,0.47,1,10 +433414,Spacious & Sunny in Prime Brooklyn,287733,David,Brooklyn,Clinton Hill,40.68472,-73.96691,Entire home/apt,150,20,89,2019-06-28,1.04,1,247 +433914,1 Bedroom Apt - Close to JFK & City,1906804,Terrance,Brooklyn,East New York,40.65408,-73.87883,Entire home/apt,70,4,40,2019-06-17,0.46,1,273 +434792,"1 br. studio duplex, Park Slope/Gowanus, Brooklyn",2117078,Joe,Brooklyn,Gowanus,40.67302,-73.98756,Entire home/apt,138,3,106,2019-06-07,1.22,1,189 +435774,A REAL New Yorkers Wall St,2164138,Suzanne,Manhattan,Financial District,40.70633,-74.00974,Entire home/apt,265,4,33,2018-11-25,0.39,1,0 +435776,ROOM AVAILABLE IN NEW YORK CITY,2164452,Robert,Manhattan,Upper East Side,40.77548,-73.95183,Private room,145,5,2,2017-10-03,0.09,1,365 +435909,Sunny West Village Dream,2165401,Andrew,Manhattan,West Village,40.73775,-74.00344,Entire home/apt,151,88,19,2016-12-24,0.22,1,249 +435946,SUNNY ZEN FULL SERVICE HUGE STUDIO,2165711,Alda,Manhattan,Financial District,40.70917,-74.0146,Entire home/apt,208,6,100,2019-06-14,1.14,1,310 +436510,Beautiful corner prewar apartment in Williamsburg,2168251,Jennifer,Brooklyn,Williamsburg,40.7108,-73.96226,Entire home/apt,200,3,16,2018-09-25,0.19,1,291 +436619,"Tranquil, Artsy, Sunny Bedroom",2168468,Cp,Manhattan,East Village,40.72507,-73.98861,Private room,110,2,64,2019-06-09,0.76,1,74 +436824,Room in Harlem,200243,Laetitia,Manhattan,Harlem,40.82726,-73.9444,Private room,58,1,17,2019-04-27,0.31,2,289 +436916,Room for the Summer,2169825,Serge,Manhattan,Harlem,40.82669,-73.94281,Private room,55,2,7,2016-10-11,0.08,1,0 +437352,Fantastic 2BR in Brooklyn's Best Area,290662,Seth,Brooklyn,Park Slope,40.67078,-73.98815,Entire home/apt,105,115,15,2018-12-31,0.17,1,219 +437906,GREAT 1BR/2BA TERRACE & W/D! in EV!,2175110,Ralph,Manhattan,East Village,40.728,-73.97903,Entire home/apt,350,5,4,2015-10-07,0.07,1,0 +438513,Big Beautiful Brooklyn Apt @ Park!,2177462,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.96181,Entire home/apt,150,3,87,2019-06-16,1.00,1,73 +439750,Perfect apt. above L train Graham stop,1566042,Haley,Brooklyn,Williamsburg,40.71517,-73.94292,Private room,55,150,10,2018-05-19,0.14,1,97 +439870,"Gorgeous Park Slope, BK triplex 4BD",1903758,Andrij,Brooklyn,Park Slope,40.66859,-73.98235,Entire home/apt,299,20,0,,,1,149 +442636,"Private,Affordable, 20 min to NYC!",1655939,Joris,Queens,Ridgewood,40.70054,-73.90255,Entire home/apt,77,3,289,2019-06-24,3.30,1,85 +442649,Lovely Chelsea 1 Bedroom,793225,Rachel,Manhattan,Chelsea,40.74572,-73.99965,Entire home/apt,125,9,10,2018-08-22,0.11,1,0 +443646,Classy 2.5 BR Brownstone w/ Garden,2204078,Michelle,Manhattan,Upper West Side,40.78911,-73.97396,Entire home/apt,395,14,39,2019-05-16,0.45,1,50 +444171,Upper Duplex in Brooklyn Brownstone,2206506,James,Brooklyn,Bedford-Stuyvesant,40.68813,-73.92817,Entire home/apt,189,7,7,2017-04-17,0.10,2,303 +444430,comfy room minutes from museums,420542,Danielle,Bronx,Mott Haven,40.81128,-73.92399,Private room,49,1,23,2018-03-27,0.27,1,333 +446367,"Best Block, NYC! July 25-Aug 18",2216673,Joy,Manhattan,Upper West Side,40.77593,-73.97699,Entire home/apt,90,4,22,2019-06-10,0.27,1,239 +447766,"Great 1 BR Apt in Kips Bay, NY",1109143,Mark,Manhattan,Kips Bay,40.73903,-73.97975,Private room,100,1,1,2014-08-21,0.02,1,6 +447840,Private Artist’s Apt/ Amazing Location!,242506,Jsun,Brooklyn,Williamsburg,40.71164,-73.965,Entire home/apt,299,2,5,2016-01-09,0.06,3,0 +448048,"1 BR, Book it 1st then write me",1267021,Sharma,Queens,Jackson Heights,40.75193,-73.87873,Private room,75,5,30,2019-05-24,0.37,3,180 +448049,"No Inq,Read it, 1 BR, Rt of Subway,",1267021,Sharma,Queens,Jackson Heights,40.74906,-73.89377,Private room,69,7,55,2018-09-30,0.64,3,318 +449034,Spacious Loft 5 min to Union Square,124357,Alex,Brooklyn,Williamsburg,40.71756,-73.95282,Private room,90,1,155,2019-06-07,1.78,3,328 +449130,Your Own Private Entrance Studio in Stylish Duplex,2229582,Yamil,Manhattan,Harlem,40.8179,-73.94319,Private room,94,1,95,2019-06-28,1.09,1,18 +449660,Art & Music Salon,2233165,Liz,Brooklyn,Windsor Terrace,40.64814,-73.97304,Private room,80,2,118,2019-06-16,1.35,1,353 +449680,Artfully Decorated 2 Bedroom Apt,1812871,Karen,Bronx,Longwood,40.81611,-73.89909,Entire home/apt,100,5,82,2018-12-15,0.96,1,63 +450009,Lavender Joy Room in Duplex!,2219255,Natalie,Brooklyn,Canarsie,40.62897,-73.90334,Private room,39,5,105,2019-06-09,1.21,3,34 +450577,1 bdrm brownstone-west 70's-1 block Central Park,2237267,Marjorie,Manhattan,Upper West Side,40.77555,-73.9767,Entire home/apt,250,3,73,2019-06-07,0.84,1,284 +450578,Serene Room...,9647066,Maria Luiza,Brooklyn,Sunset Park,40.6397,-74.0162,Private room,55,7,28,2019-05-12,0.32,2,333 +450905,Master Bedroom / ParkSlope Brooklyn,2228665,Martha,Brooklyn,Park Slope,40.67267,-73.98348,Private room,110,2,0,,,1,0 +452068,"Spacious 4 bedroom house, New York",2246071,Tamara,Brooklyn,Kensington,40.64205,-73.97173,Entire home/apt,200,1,3,2015-08-16,0.06,1,0 +452541,Brooklyn Apartment Windsor Terrace,2248545,Helen,Brooklyn,Windsor Terrace,40.66034,-73.9829,Entire home/apt,142,3,120,2019-07-01,1.40,1,222 +453094,Bedroom with Garden at the Back,137814,Waldemar,Brooklyn,Clinton Hill,40.68699,-73.9635,Private room,70,2,339,2019-06-23,3.88,3,333 +453161,"Family friendly, sunny new condo in McCarren Park",2107905,Laura,Brooklyn,Greenpoint,40.72183,-73.94908,Entire home/apt,260,2,7,2018-06-23,0.09,1,0 +453255,"Exciting Lower East Side, Loft Life",2252261,Stephanie,Manhattan,Lower East Side,40.71986,-73.9869,Entire home/apt,225,4,13,2019-04-29,0.15,1,195 +453317,Large Room w/ Private Entrance,1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68881,-73.95405,Private room,59,21,6,2013-11-01,0.07,3,0 +454334,Private spacious studio available,2257289,Toni,Manhattan,Harlem,40.81669,-73.94267,Private room,65,1,3,2014-12-31,0.03,1,0 +454763,For Cat-Lovers ONLY,2259061,Felo,Manhattan,Inwood,40.86717,-73.9194,Entire home/apt,99,20,11,2018-08-16,0.18,1,249 +454929,UNION SQUARE❤️PENTHOUSE 2FL+TERRACE❤️EAST VIllAGE,1385575,Alex,Manhattan,East Village,40.72981,-73.98318,Entire home/apt,239,2,67,2019-07-02,1.33,1,78 +455734,"Sunny, spacious 1-bedroom in Upper Manhattan",2265389,Laura,Manhattan,Inwood,40.86929,-73.92421,Entire home/apt,50,2,123,2019-07-02,1.47,1,21 +455801,Hello! Cozy-Singles NYC- Upper Manhattan- Harlem!!,2265770,Jeanine,Manhattan,Harlem,40.80533,-73.95204,Private room,65,4,109,2018-09-19,1.25,3,0 +456110,Beautiful One Bedroom in Chelsea,2267508,Daniel,Manhattan,Chelsea,40.7476,-73.99698,Entire home/apt,139,4,23,2015-10-04,0.27,1,0 +456190,"West Village Loft, 1st floor",2267864,Gary,Manhattan,West Village,40.73357,-74.00723,Entire home/apt,174,2,269,2019-06-29,3.15,2,167 +456457,West Village Gem - 2BR,1594083,David,Manhattan,West Village,40.73204,-74.00189,Entire home/apt,315,3,7,2016-08-29,0.08,1,0 +456526,Central Harlem Comfy Bedroom with Private Bath,2270183,Kaye,Manhattan,Harlem,40.81713,-73.94217,Private room,75,3,36,2019-06-23,1.76,1,47 +457829,Beautiful apartment in the heart of The Village,2275829,Lorena,Manhattan,East Village,40.72917,-73.98811,Entire home/apt,210,1,178,2019-07-01,2.06,1,0 +458154,"Cozy private room, williamsburg NYC",2268393,Javier & Jorge,Brooklyn,Williamsburg,40.7061,-73.94531,Private room,55,4,132,2019-06-10,1.51,2,195 +458377,Bright Spacious 2 Bedroom/5 Room - wRoof Deck,346366,Sarah,Brooklyn,Williamsburg,40.70147,-73.94378,Entire home/apt,229,3,12,2019-05-28,0.15,1,319 +459066,******AMAZING DEAL IN NYC*****,2282355,Ivana,Manhattan,Upper East Side,40.76719,-73.95303,Entire home/apt,150,2,23,2019-01-01,0.27,1,0 +460036,Great DEAL Gramercy 1 BDROOM /2beds,2287727,Jan,Manhattan,Kips Bay,40.74134,-73.98113,Entire home/apt,129,2,47,2019-06-08,0.55,1,177 +460999,Beautiful duplex apt in Harlem,128890,Sara,Manhattan,Harlem,40.8162,-73.94747,Entire home/apt,100,8,8,2019-03-28,0.11,1,0 +461050,Perfect Bedford L Williamsburg Location!,2286224,Sarah,Brooklyn,Williamsburg,40.71613,-73.95837,Entire home/apt,200,3,17,2016-05-12,0.20,1,67 +462454,Beautiful Lower East Side Apt! Women only.,2298239,Sunserae,Manhattan,Lower East Side,40.71746,-73.98782,Private room,89,5,4,2018-03-24,0.06,1,0 +463107,Historic 3 Bedroom Eastern Parkway,2301624,Miryam,Brooklyn,Crown Heights,40.66933,-73.93798,Entire home/apt,250,90,19,2018-12-16,0.22,1,311 +464231,Large Room w/ Private Entrance,1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68905,-73.9541,Private room,65,7,2,2012-05-29,0.02,3,0 +465277,Sunny plant-filled apartment with 2 balconies,2065453,Ora & Scout,Brooklyn,Crown Heights,40.67615,-73.95441,Entire home/apt,68,2,35,2018-01-01,0.54,3,0 +466277,"W'burg 2 bedroom w/ yard & laundry, 5 mins to L",815977,Ryan,Brooklyn,Williamsburg,40.7111,-73.94643,Entire home/apt,235,3,108,2019-07-02,1.25,2,144 +466457,"Bright, Bedstuy Gem",2316542,Nicole Lavonne,Brooklyn,Bedford-Stuyvesant,40.68944,-73.9376,Entire home/apt,100,3,182,2019-07-01,2.15,1,220 +467569,Curated 1BR on the prettiest block of the LES,282315,Rj,Manhattan,Lower East Side,40.72106,-73.98384,Entire home/apt,311,3,31,2019-06-11,0.41,1,28 +467634,yahmanscrashpads,2321321,Lloyd,Queens,Jamaica,40.67747,-73.76493,Shared room,39,1,454,2019-06-18,5.27,1,353 +467866,"Our NY home, Greenwich Village apt",2321870,David,Manhattan,West Village,40.73123,-74.00591,Private room,100,2,199,2019-07-05,2.30,1,19 +468613,$ (Phone number hidden by Airbnb) weeks - room f,2325861,Cynthia,Manhattan,Lower East Side,40.72152,-73.99279,Private room,1300,1,0,,,1,0 +470090,Studio Apt. Lower East - Manhattan,2332430,Murch,Manhattan,Lower East Side,40.72147,-73.99208,Entire home/apt,210,1,230,2019-07-01,2.65,1,319 +470370,PRIVATE ROOM NEW YORK,2120259,Sue,Brooklyn,Crown Heights,40.66604,-73.95086,Private room,55,4,101,2019-06-24,1.19,4,170 +470498,*Unique Master BR in Battery Park!*,2334269,Filip,Manhattan,Battery Park City,40.71012,-74.01504,Private room,65,2,8,2015-12-22,0.13,1,0 +470709,Spacious sunny LOFT - best location,2335775,Diana,Brooklyn,Williamsburg,40.71856,-73.95166,Entire home/apt,165,30,154,2018-12-12,1.87,1,157 +471712,Beautiful Sunny Apartment in South Harlem,1274269,Aram,Manhattan,Morningside Heights,40.80661,-73.9576,Private room,89,28,69,2019-05-26,0.81,1,80 +471758,TriBeCa Amazing River View Loft 3BR,2339722,Francesca,Manhattan,Tribeca,40.72203,-74.00988,Entire home/apt,500,10,3,2018-06-19,0.05,1,0 +471845,Gorgeous Summer Duplex/Yard sublet,2220859,Verena And Dylan,Brooklyn,Bedford-Stuyvesant,40.68229,-73.94287,Entire home/apt,145,14,3,2013-09-01,0.04,1,0 +471914,Brooklyn one-bedroom right by Prospect Park!,2147438,Stephen,Brooklyn,Prospect-Lefferts Gardens,40.65955,-73.96066,Private room,110,4,12,2019-04-26,0.16,1,330 +472052,Luxury Doorman Bldg Nr Central Park,2341078,George,Manhattan,Upper West Side,40.77137,-73.98943,Entire home/apt,180,5,13,2014-08-22,0.15,1,0 +472376,Great Brooklyn Studio/1BR!,1689040,Rich,Brooklyn,Prospect Heights,40.67796,-73.96458,Entire home/apt,115,2,10,2016-05-23,0.17,1,0 +472546,Cozy place,1600988,Sweet Home,Brooklyn,Bushwick,40.6933,-73.90823,Entire home/apt,82,15,5,2019-01-04,0.06,1,311 +473592,AMAZING Private 1stop away from NYC 1 block Subway,2347382,Massi & Ray,Queens,Long Island City,40.7502,-73.94189,Private room,70,1,144,2019-06-17,1.68,2,340 +473777,Bright Modern Artist's Apartment,2348973,Koren,Brooklyn,Williamsburg,40.71285,-73.94383,Entire home/apt,155,5,10,2017-02-19,0.12,1,0 +474283,Studio apartment by Columbus Circle,950232,Deborah,Manhattan,Hell's Kitchen,40.76487,-73.98471,Entire home/apt,117,7,0,,,1,0 +475216,Studio Apt in Park Slope- Brooklyn!,2355439,Kara,Brooklyn,Sunset Park,40.66387,-73.99077,Entire home/apt,100,2,17,2015-07-27,0.20,1,0 +476527,1RW- CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72893,-73.98278,Entire home/apt,89,30,57,2019-05-05,0.67,6,0 +476570,3RE - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.73009,-73.9827,Entire home/apt,89,30,70,2019-03-09,0.83,6,4 +476571,2RE - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72955,-73.98298,Entire home/apt,99,30,62,2019-01-10,0.74,6,8 +476899,NYC studio in ST MARKS PLACE & 1AVE,2363997,Teresa,Manhattan,East Village,40.72693,-73.98521,Entire home/apt,155,6,17,2018-10-11,0.20,1,0 +476983,"PRIVATE Room in Spacious, Quiet Apt",277379,Agnes,Manhattan,Harlem,40.82537,-73.94392,Private room,85,1,439,2019-07-05,5.12,2,238 +478053,Great LES / Chinatown bedroom,2368753,Kristine,Manhattan,Two Bridges,40.71137,-73.99403,Private room,80,4,48,2019-01-06,0.56,1,96 +478385,Sunny Midtown East Apt w/ a Loft!!!,2368133,Jimmy,Manhattan,Kips Bay,40.74428,-73.97809,Entire home/apt,135,3,134,2019-06-29,1.56,1,236 +478832,Gorgeous 2 bdrm in Carroll Gardens,2371814,Jennifer,Brooklyn,Carroll Gardens,40.67579,-73.99968,Entire home/apt,150,6,2,2014-05-20,0.03,1,0 +478949,"Spectacular Lux 1 Bed Apt, Best Location, Terrace!",1130454,Samir,Manhattan,Chelsea,40.74087,-74.00226,Entire home/apt,380,3,16,2017-11-04,0.19,1,0 +479002,Brooklyn Brownstone w/ Beautiful Garden,1708956,Josh,Brooklyn,Fort Greene,40.68723,-73.96897,Entire home/apt,450,2,31,2019-07-03,1.14,1,30 +479263,Mini Loft Williamsburg Bkln-Bedford,2373905,Jaime,Brooklyn,Williamsburg,40.7182,-73.95763,Entire home/apt,145,30,36,2019-01-19,0.42,1,342 +479285,Rent in beautiful Sunnyside Gardens for holidays,2374190,Jazmin,Queens,Sunnyside,40.74679,-73.91853,Private room,80,3,1,2012-12-30,0.01,1,330 +479867,Williamsburg 2b apartment with deck,2377104,Hannah,Brooklyn,Williamsburg,40.71739,-73.95472,Entire home/apt,225,2,338,2019-07-07,3.90,2,225 +480549,"Studio 54, Cozy Room For 2",2361715,Ron,Manhattan,Upper West Side,40.77099,-73.9898,Private room,99,3,117,2017-12-11,1.41,1,0 +481022,Super Cute Junior 1BR in LES!!,2382189,Candice,Manhattan,Lower East Side,40.7195,-73.98022,Entire home/apt,125,1,261,2019-06-22,3.24,1,212 +482365,GREAT BRAND NEW 1 BED APT*TIMES SQ,914838,Lior,Manhattan,Hell's Kitchen,40.75636,-73.9939,Entire home/apt,80,30,32,2017-01-31,0.37,7,365 +482765,Beautiful Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.68834,-73.97875,Private room,100,2,112,2019-06-30,1.30,2,12 +483414,Best double Room all included wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68586,-73.94837,Private room,55,2,22,2019-05-20,0.26,4,297 +483485,Downtown Full Floor Loft,1492619,Wallace,Manhattan,Civic Center,40.71164,-74.00774,Entire home/apt,328,2,319,2019-07-02,3.78,1,112 +483505,Perfect & Stylish Williamsburg Apt,2393537,Jodi,Brooklyn,Williamsburg,40.70743,-73.96728,Entire home/apt,142,7,69,2019-06-20,0.85,1,261 +484297,Large home in most desirable Brooklyn hood!,2397411,John,Brooklyn,Clinton Hill,40.68545,-73.96534,Entire home/apt,350,4,10,2018-09-12,0.12,1,0 +484312,Loft-Like Park Slope 3bdr Duplex,2306962,Hana,Brooklyn,Windsor Terrace,40.65854,-73.98384,Entire home/apt,300,2,24,2019-02-20,0.39,1,23 +484728,Modern 1br by ocean in Brooklyn,2396741,Alex,Brooklyn,Fort Hamilton,40.61269,-74.03381,Entire home/apt,105,30,3,2017-08-12,0.05,1,30 +485026,Sunny Apt in Brooklyn-Close to Manhattan,2400932,Jackie'S Place,Brooklyn,Gowanus,40.67858,-73.98537,Private room,125,31,17,2014-06-30,0.20,2,331 +486350,Great 2 bedroom apartment in Williamsburg!,2407024,Michael,Brooklyn,Williamsburg,40.70821,-73.95352,Entire home/apt,225,7,13,2016-08-21,0.15,2,0 +488083,Nice apartment with a deck!,619154,Keith,Brooklyn,Sunset Park,40.66158,-73.98954,Entire home/apt,92,2,58,2019-05-27,0.67,1,0 +489018,Lovely Central East Village 2 Person Entire Apt,864370,Mick & Heidi,Manhattan,East Village,40.72457,-73.98453,Entire home/apt,185,2,62,2019-06-23,0.74,1,0 +489365,PRIME LOCATION STYLISH COMFORT,2420670,Carter,Brooklyn,Williamsburg,40.71689,-73.95706,Entire home/apt,226,3,203,2019-06-27,2.85,1,38 +489924,South Slope Private Bedroom,1027283,Kelly,Brooklyn,Sunset Park,40.66221,-73.99743,Private room,50,2,33,2019-06-30,0.39,1,20 +489965,A Gem in Harlem - Modern Living,2423067,Clara,Manhattan,East Harlem,40.79313,-73.93493,Private room,80,3,47,2019-03-09,0.66,2,0 +490011,Great for families!,2423401,Peter,Brooklyn,Carroll Gardens,40.68444,-73.99904,Private room,200,5,0,,,1,342 +490278,Lovely 1BR - Midtown East by metro!,2424873,A.B.,Manhattan,Midtown,40.75632,-73.96464,Entire home/apt,99,14,30,2018-03-02,0.35,1,317 +490989,Cat lovers: 3-story Park Slope Townhouse with cat!,2427385,Andy,Brooklyn,Park Slope,40.67996,-73.98027,Entire home/apt,68,3,2,2017-03-29,0.05,1,0 +491123,Cozy Love Nest Prospect Heights,2427868,Ada,Brooklyn,Prospect Heights,40.67369,-73.96589,Private room,102,2,121,2019-06-17,1.60,1,361 +491529,3 bdrm family friendly home in central Park Slope,2429432,Julie,Brooklyn,Park Slope,40.67211,-73.976,Entire home/apt,220,3,27,2019-05-17,0.45,1,68 +491942,Renovated Spacious 1BR Upper West,1995093,Carly,Manhattan,Upper West Side,40.79183,-73.97172,Entire home/apt,199,3,24,2016-10-09,0.30,1,0 +491977,Stylish Large 1bd APT in Chinatown/Tribeca NYC,2431528,Christine,Manhattan,Chinatown,40.71456,-73.99978,Entire home/apt,165,5,22,2019-05-11,0.26,1,316 +493177,Two Bridges District Chinatown NYC,2436633,Gelya,Manhattan,Chinatown,40.71668,-73.99073,Entire home/apt,150,2,162,2019-06-16,1.92,1,231 +493611,Huge sunny artist loft +roof garden,1407251,Ute,Brooklyn,Gowanus,40.67862,-73.98561,Entire home/apt,385,1,66,2019-05-19,0.76,2,363 +494296,Brooklyn waterfront large sunny apt,2442340,Maddy,Brooklyn,Columbia St,40.68721,-74.00147,Private room,75,7,0,,,1,0 +494937,"The SoHo Loft - Huge Penthouse - 1,200 sqft",1527535,Jean-Marie,Manhattan,SoHo,40.72162,-74.00414,Entire home/apt,499,2,63,2019-07-07,0.76,1,26 +495249,10min Walk & 15mins to Tourist Spot,2446219,Biren,Queens,East Elmhurst,40.75541,-73.89239,Private room,85,1,219,2019-06-14,2.63,2,305 +495348,Classic Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.69011,-73.97691,Entire home/apt,160,4,2,2013-03-31,0.03,2,34 +496166,"Beautiful, Spacious 4 BR Brooklyn Brownstone",2450665,D,Brooklyn,South Slope,40.66641,-73.98283,Entire home/apt,249,3,12,2019-07-01,0.27,1,26 +497370,Carroll Gardens Carriage House,2455462,Elizabeth (And Jeff Too),Brooklyn,Gowanus,40.67828,-73.99136,Private room,80,2,35,2017-05-30,0.41,1,189 +498052,Modern private room in condominium,2426779,Regina,Brooklyn,Williamsburg,40.71483,-73.96216,Private room,120,1,124,2019-06-10,1.46,1,292 +498120,Hi Traveler.. welcome,2459648,Ellen,Bronx,Allerton,40.8687,-73.8524,Private room,35,7,2,2018-07-23,0.17,1,90 +498859,"NYC 30 min by Subway, Brooklyn 2",2462260,Dimitry,Brooklyn,Brighton Beach,40.5822,-73.96392,Entire home/apt,169,4,63,2019-07-06,1.27,1,323 +500845,Trendy Nest in the East Village,1336370,Bojan+Margaret,Manhattan,East Village,40.72686,-73.9797,Entire home/apt,220,4,162,2019-06-21,1.88,1,341 +500886,BEAUTIFUL ROOM IN BKLYN BROWNSTONE,2206506,James,Brooklyn,Bedford-Stuyvesant,40.68825,-73.92951,Private room,85,3,103,2019-06-15,1.25,2,344 +501041,UPWS sunny DUPLEX +PATIO,1386685,Aleksandra,Manhattan,Upper West Side,40.78451,-73.97882,Entire home/apt,300,7,0,,,1,0 +501082,Private Bdrm & Bath-30-night min-Weekly Maid Serv.,2471671,Joyce,Manhattan,Harlem,40.82392,-73.94205,Private room,79,30,185,2019-06-07,2.15,1,302 +501098,Private Bedroom in Wooden House,2472680,Fanny,Brooklyn,Williamsburg,40.71384,-73.9474,Private room,90,4,219,2019-06-15,2.54,1,30 +501693,Room w/pvt bathroom on Central Park,1490833,Patrick,Manhattan,Upper West Side,40.7952,-73.9624,Private room,99,1,280,2019-06-23,3.51,1,246 +502132,Beautiful Downtown Manhattan Share,48599,Anastasia,Manhattan,Chelsea,40.73942,-74.00009,Shared room,50,1,61,2017-05-07,0.71,2,0 +502309,"Sunny Rm #1, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65524,-73.95646,Private room,46,1,184,2019-06-10,2.14,5,362 +502429,Park Slope duplex with backyard,2100968,Elodie,Brooklyn,South Slope,40.66153,-73.98554,Entire home/apt,325,3,116,2019-07-07,1.37,1,203 +503460,Spacious Apartment w extra room,2483236,Caitlin,Staten Island,New Springville,40.59274,-74.16178,Private room,68,2,11,2018-10-22,0.24,1,88 +503529,HEART OF SOHO The Perfect One Bedroom Apt,2483293,Eric,Manhattan,SoHo,40.72701,-74.0011,Entire home/apt,198,3,9,2019-02-23,0.10,1,0 +503585,Charming & Spacious One Bedroom,2483766,Rebecca (Marks),Brooklyn,Bedford-Stuyvesant,40.68607,-73.95839,Entire home/apt,100,5,4,2013-07-14,0.05,1,0 +503722,Hip Stylish WIlliamsburg Studio,2484383,Theresa,Brooklyn,Williamsburg,40.71345,-73.95689,Entire home/apt,175,2,15,2019-06-03,0.29,1,64 +503790,SLEEK WEST VILLAGE ARTIST STUDIO LOFT,2484654,Michele,Manhattan,West Village,40.73214,-74.00188,Entire home/apt,130,4,22,2019-05-26,0.28,1,77 +504322,Sunny 1BD in Greenwich Village,471928,Mahalia,Manhattan,Greenwich Village,40.72903,-74.00028,Entire home/apt,180,3,18,2017-07-01,0.21,1,0 +504362,1760 Sq ft Penthouse apartment,2487309,Eric,Brooklyn,Prospect Heights,40.67823,-73.97007,Entire home/apt,209,3,56,2019-07-04,0.65,1,160 +504394,"Charming, Retro Apt on the UWS",2487319,Erin,Manhattan,Upper West Side,40.79842,-73.96903,Entire home/apt,150,4,2,2014-09-03,0.03,1,141 +504437,The biggest small apt in Manhattan,2356449,Mariana,Manhattan,Lower East Side,40.72232,-73.98686,Entire home/apt,104,3,57,2019-06-30,0.70,1,6 +505029,SPACIOUS Fabulous Sunny Loft for 2 wks in Fall,2490471,Ann,Manhattan,East Village,40.72454,-73.97944,Entire home/apt,175,4,13,2018-11-16,0.17,1,0 +505231,"Enjoy a 1 Bedroom to share, NYC",2490915,Catherine,Manhattan,Upper East Side,40.77799,-73.95223,Private room,80,1,1,2012-06-22,0.01,1,0 +505315,Charming ROOM(s)*Lovely BUSHWICK Block*25min->City,167417,Kelly,Brooklyn,Bushwick,40.69227,-73.90852,Private room,68,2,37,2019-06-23,0.49,1,23 +506121,Cozy Room in Lively East Village,2267153,John,Manhattan,East Village,40.7276,-73.98347,Private room,72,5,451,2019-06-30,5.26,2,13 +506527,Modern Sunny 2 Bedroom Apartment,864735,Jason,Queens,Astoria,40.75782,-73.92129,Entire home/apt,107,30,24,2019-04-30,0.29,8,262 +506571,Large sunny 1br apt in East Village,2349977,Anthony,Manhattan,East Village,40.72756,-73.97939,Entire home/apt,150,7,19,2019-03-22,0.32,1,24 +506575,Bronx Room Near Yankees + Harlem,2001830,Jose And Ysaira,Bronx,Morris Heights,40.84937,-73.91328,Private room,45,3,190,2019-06-06,2.21,2,329 +507393,Ready private furnished room w/Wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94724,Private room,49,2,46,2019-05-27,0.54,4,301 +509989,Artist's Ditmas Pk 5 bedroom house,2472305,Rick,Brooklyn,Flatbush,40.64229,-73.96548,Entire home/apt,349,1,169,2019-06-23,2.08,1,344 +510218,Spacious Upper West Side 1-Bedroom,2513726,Margaret,Manhattan,Upper West Side,40.79218,-73.97926,Entire home/apt,185,2,165,2019-06-18,1.92,1,259 +510454,"Gramercy Pk Area, w Rooftop Gdn!",2515124,Jacqueline,Manhattan,Kips Bay,40.73951,-73.98146,Entire home/apt,145,3,2,2016-06-23,0.02,1,0 +511436,"Wake up to the skyline of the city, prime location",2519356,Darya,Brooklyn,Williamsburg,40.7139,-73.96553,Entire home/apt,96,3,1,2018-05-26,0.07,1,0 +511733,"Artist Loft @ Bushwick, Brooklyn",1840766,Samantha,Brooklyn,Bushwick,40.70753,-73.92048,Entire home/apt,120,5,3,2015-09-20,0.04,1,0 +511960,Wonderful east village floor thru,2521848,Gay,Manhattan,East Village,40.73044,-73.98683,Entire home/apt,160,1,15,2016-05-09,0.18,1,0 +512209,Your own townhouse in Bklyn Heights,2521513,Amy,Brooklyn,Brooklyn Heights,40.69964,-73.99299,Entire home/apt,800,3,60,2019-01-01,0.70,1,67 +512210,The Brooklyn Woodworker 3bdrm/2bth,2522854,Rich,Brooklyn,Crown Heights,40.67709,-73.95237,Entire home/apt,349,2,320,2019-06-22,3.85,1,260 +512775,The Cottage / 1500 sqft. of Privacy,2396295,Richard,Queens,Long Island City,40.75296,-73.93716,Entire home/apt,350,2,182,2019-06-11,2.20,1,272 +513343,"Cozy, Hella Sunny, and Convenient!",2528671,Dennis,Brooklyn,Prospect Heights,40.67717,-73.96915,Entire home/apt,125,30,1,2012-07-11,0.01,1,341 +513688,Boerum Hill Brownstone Garden Duplx,2530670,Tiffany,Brooklyn,Boerum Hill,40.68586,-73.9809,Entire home/apt,350,2,134,2019-07-07,1.56,1,56 +514457,Brownstone Beauty with Deck,2096690,Richard,Brooklyn,Bedford-Stuyvesant,40.68543,-73.93838,Entire home/apt,150,10,10,2019-05-26,0.17,2,185 +514548,Loft Apt and Art Studio: 4-month rental,2533991,Amanda,Brooklyn,Bushwick,40.69849,-73.92678,Entire home/apt,180,30,0,,,1,352 +515392,Beautiful Brand New Chelsea Studio,2538544,Michael,Manhattan,Chelsea,40.74348,-73.9998,Entire home/apt,200,1,60,2019-06-02,0.78,1,260 +516452,"Big, Bright, and Beautiful",2542888,Catrinel,Brooklyn,Fort Greene,40.68679,-73.97378,Entire home/apt,99,30,5,2019-05-12,0.06,1,242 +516461,Great studio apt in midtown west!,2542895,Aaron,Manhattan,Chelsea,40.75086,-73.99776,Entire home/apt,130,5,9,2016-08-04,0.10,1,0 +516643,"Williamsburg Apt, close to metro L",2543761,Stephane,Brooklyn,Williamsburg,40.71915,-73.95581,Entire home/apt,150,3,1,2013-01-04,0.01,1,0 +516791,Lovely Brooklyn Apt,696306,Bethany,Brooklyn,Kensington,40.64625,-73.97932,Entire home/apt,90,10,33,2019-05-22,0.39,1,269 +517626,Above Graham stop - L train,2438262,Walker,Brooklyn,Williamsburg,40.71577,-73.94084,Private room,95,1,10,2014-12-03,0.14,1,0 +517654,Beautiful apt 10 min to Wbrg!,78742,Joni,Queens,Ridgewood,40.70278,-73.90153,Entire home/apt,70,30,3,2015-08-15,0.04,1,0 +518566,"Gorgeous, charming Upper East private room",1497427,Andrea,Manhattan,Upper East Side,40.77108,-73.95967,Private room,82,3,10,2019-05-15,0.13,2,251 +518576,3 bedroom duplex apt with backyard,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94627,Entire home/apt,250,30,62,2019-07-02,0.73,3,292 +518960,Cozy and quiet with secret garden,2155832,Federico,Manhattan,Harlem,40.82823,-73.94691,Entire home/apt,90,4,266,2019-07-04,3.17,1,150 +519310,YOU ROOM IN NYC,1366310,Janina,Queens,Woodside,40.74377,-73.91225,Private room,75,2,251,2019-07-07,2.92,2,317 +521018,1BR Loft in Brooklyn,2562882,Brendan,Brooklyn,Clinton Hill,40.69432,-73.96481,Entire home/apt,160,14,3,2016-04-28,0.04,1,0 +521038,Cozy room in 2 bedrm apt in amazing Harlem!,2563132,Ghislaine,Manhattan,Harlem,40.82749,-73.9382,Private room,115,7,8,2012-12-25,0.09,1,178 +521522,Beautiful 3 room studio in Brooklyn,2440317,Amelia,Brooklyn,South Slope,40.66777,-73.98367,Private room,150,4,5,2012-12-31,0.06,1,0 +521672,Luxury Loft in Creative & Fun Apt,1720619,Glace,Brooklyn,Williamsburg,40.71423,-73.95305,Private room,89,4,160,2019-06-21,1.92,1,23 +521806,Airy 1BR nice area Queens nr subway,2389494,Anya,Queens,Rego Park,40.72719,-73.86166,Entire home/apt,69,5,5,2019-05-17,0.10,1,4 +522081,Guest Room in Art Loft in Chelsea,1413546,Asher,Manhattan,Chelsea,40.74341,-73.99298,Private room,170,2,183,2019-06-14,2.19,2,254 +523123,Tranquility & convenience in Bklyn,2572253,Carl,Brooklyn,South Slope,40.66051,-73.98495,Entire home/apt,375,5,19,2018-12-30,0.23,1,43 +524111,"Convenient East Village Studio,",62508,Leigh,Manhattan,East Village,40.72915,-73.98019,Entire home/apt,118,3,141,2019-06-24,1.66,1,13 +525120,Very cute quiet Studio in chelsea,184883,Noele,Manhattan,Chelsea,40.74767,-74.01061,Entire home/apt,135,6,42,2019-05-27,0.49,1,170 +525293,Yankee Nest,2556498,Chris,Bronx,Concourse,40.82822,-73.92439,Entire home/apt,250,3,119,2019-07-01,1.41,1,339 +525388,Greenpoint gypset retreat,787204,Jenna,Brooklyn,Greenpoint,40.73067,-73.955,Entire home/apt,200,7,20,2019-06-23,0.24,1,365 +525412,Beautiful sunny Nolita/Soho Apt,1104814,Robert,Manhattan,Nolita,40.72246,-73.99552,Entire home/apt,150,5,5,2015-06-28,0.06,1,0 +525523,Comfortable Private Room in Upper Manhattan 2BR,2582890,Kim,Manhattan,East Harlem,40.80762,-73.94017,Private room,50,2,16,2018-07-04,0.62,1,60 +526520,Large light-filled Apt in Brooklyn,2576980,Eleanor,Brooklyn,Prospect Heights,40.67786,-73.97166,Private room,60,2,0,,,1,0 +526532,Beautiful Spacious Brownstone,2492286,Reena,Manhattan,Harlem,40.80719,-73.94253,Entire home/apt,100,2,24,2018-09-10,0.29,1,0 +526923,Come stay in super comfy and cozy!,2589521,Lisbeth,Manhattan,Flatiron District,40.74129,-73.98374,Entire home/apt,265,3,26,2019-06-15,0.32,1,341 +526942,UES Jewel-Private Long Term Rental,2205455,Wendy,Manhattan,Upper East Side,40.77761,-73.94606,Private room,90,30,3,2018-09-14,0.04,1,128 +527076,"Great 1BR, 1BaR in Lux Bldg w Pool",2590219,Kyle,Manhattan,Upper East Side,40.76413,-73.96227,Entire home/apt,175,2,0,,,1,0 +528485,lovely private room in South Park Slope,17985,Sing,Brooklyn,Sunset Park,40.66119,-73.98822,Private room,36,10,5,2019-04-30,0.07,2,44 +530247,☆ Home Away From Home <3 of NYC! ☆ 2BR ENTIRE HOME,2604437,Lane,Manhattan,Upper West Side,40.78339,-73.98003,Entire home/apt,250,4,2,2014-06-28,0.03,2,0 +530431,"Bright, Renovated 1BR in Brownstone",2605064,Larah,Manhattan,Harlem,40.80654,-73.95019,Entire home/apt,220,3,194,2019-07-04,2.42,1,338 +530576,"1bedroom, 70s UWS,brownstone charm",263510,Sandy,Manhattan,Upper West Side,40.78111,-73.97739,Private room,93,14,88,2019-06-28,1.03,1,176 +530632,Sunny + Charming 2 BR in Brooklyn Brownstone,1816331,Justine,Brooklyn,Crown Heights,40.67147,-73.94979,Entire home/apt,275,5,2,2018-10-18,0.10,1,357 +531091,King size bedroom in 2 bed apartment,1787284,Dragan,Queens,Astoria,40.75532,-73.91603,Private room,109,30,304,2019-06-19,3.70,1,0 +531208,Industrial Loft in Williamsburg,2495836,Sofia,Brooklyn,Williamsburg,40.70762,-73.96764,Entire home/apt,450,2,11,2014-07-08,0.13,1,0 +531258,1 BR Village - 30 day+ stay,2609535,Alexandra,Manhattan,Greenwich Village,40.7311,-73.99913,Entire home/apt,165,30,19,2018-10-15,0.23,1,259 +531455,Nice one bedroom apartment by the Prospect park,1445298,Gita,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.96294,Entire home/apt,80,7,23,2019-06-05,0.27,1,20 +532288,A Little West Village Charm,683230,Thomas,Manhattan,Greenwich Village,40.73176,-73.99895,Private room,295,5,103,2019-06-30,1.25,3,350 +532749,"Very Large, Airy, and Bright Loft -Williamsburg",2617850,Matthew,Brooklyn,Williamsburg,40.71606,-73.95526,Entire home/apt,280,7,82,2019-06-21,0.98,1,41 +533168,Spacious Nolita 2 Bd w/roof garden,2620162,Olivia,Manhattan,Nolita,40.72184,-73.9944,Entire home/apt,300,30,92,2019-06-08,1.09,1,106 +533506,2RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72829,-73.98156,Entire home/apt,99,30,66,2019-07-03,0.77,6,0 +533625,Sunny 2 Bedroom Duplex with Garden,367815,Liz,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95677,Entire home/apt,175,3,18,2018-10-08,0.35,2,0 +533927,Large NYC Chelsea Studio - King Bed,2624738,Michael,Manhattan,Chelsea,40.74403,-73.99581,Entire home/apt,225,4,153,2019-06-24,2.03,1,205 +534897,"CHELSEA APT- SPACE, LIGHT, BEAUTY! ",2426404,Judith & Reid,Manhattan,Chelsea,40.74552,-74.0006,Entire home/apt,230,6,6,2015-06-12,0.09,1,0 +535095,Beautiful bedroom in Prospect Heights,598770,Maite & Javi,Brooklyn,Prospect Heights,40.6744,-73.96558,Private room,90,7,43,2019-06-29,0.52,1,38 +535352,Upper West Side 1-bedroom,2630351,Dawn,Manhattan,Upper West Side,40.79358,-73.97043,Entire home/apt,102,3,36,2019-07-02,0.50,1,21 +536578,Nice and clean private space in Bklyn loft.,2635819,Fabrizio,Brooklyn,Bushwick,40.7014,-73.91333,Private room,59,10,19,2019-06-20,0.27,1,0 +538344,East Village Oasis! 1Bd Apt,2644519,David,Manhattan,East Village,40.72924,-73.98113,Entire home/apt,195,2,160,2019-06-11,2.31,1,68 +538590,cozy 2bedroomAPART 10min to MIDTOWN,2645592,De & Claudia,Queens,Astoria,40.75919,-73.91836,Entire home/apt,150,3,74,2019-05-15,0.87,2,365 +539160,Manhattan *SuperHost* Luxury 2 Bdrm Apt Sleeps 6+,512878,Michelle,Manhattan,Washington Heights,40.83064,-73.94076,Entire home/apt,170,1,47,2019-04-28,0.58,2,17 +539350,Hell's Kitchen Musician's Hideaway,2640100,Stefanie,Manhattan,Hell's Kitchen,40.76184,-73.99334,Entire home/apt,217,2,43,2018-09-14,0.51,1,0 +540057,Stylish Uptown Westside Apt.,2653648,Kareem,Manhattan,Harlem,40.82445,-73.95243,Entire home/apt,185,1,102,2019-06-13,1.19,2,91 +540489,Large + Bright private bedroom in NoLiTa,2656413,Anton,Manhattan,Little Italy,40.72006,-73.99579,Private room,58,6,18,2019-01-20,0.21,1,0 +541725,"Entire loft, best Williamsburg",1879389,Christina,Brooklyn,Williamsburg,40.71872,-73.96042,Entire home/apt,189,4,33,2019-04-07,0.44,2,1 +542054,3RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72855,-73.98265,Entire home/apt,88,30,60,2019-06-09,0.72,6,0 +542203,QUITE LOVELY STUDIO IN HEART OF HELLS KITCHEN**,1846051,Kj,Manhattan,Hell's Kitchen,40.76304,-73.9888,Entire home/apt,195,3,22,2019-06-23,1.61,2,59 +543792,Studio Apartment Bushwick/Ridgewood,865264,Sharon And Tom,Queens,Ridgewood,40.70878,-73.91727,Entire home/apt,110,5,107,2019-06-21,1.25,1,276 +544039,Luxury 2-bdrm w Piano & Gym,2674637,Greta,Brooklyn,Sunset Park,40.64437,-74.00304,Entire home/apt,120,14,0,,,1,0 +544131,Heart of Greenwich Village near Bleecker St,534328,F,Manhattan,Greenwich Village,40.72987,-74.00082,Private room,79,4,87,2019-07-04,1.02,1,30 +544331,1 corner bedroom with lots of light,2676438,Srdjan,Manhattan,Upper East Side,40.77424,-73.94839,Entire home/apt,110,10,16,2018-08-07,0.20,1,0 +545261,Clinton Hill Lux Apt Grill & Lawn,746552,Tom,Brooklyn,Clinton Hill,40.68752,-73.96688,Private room,200,3,2,2015-08-07,0.02,1,365 +545651,COMFORTABLE PRIVATE ROOM FOR RENT,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65841,-73.95016,Private room,69,4,19,2019-05-20,0.24,3,43 +546383,My Little Guest Room in Flushing,2680820,Linda,Queens,Flushing,40.75578,-73.81948,Private room,55,1,474,2019-05-25,5.53,3,332 +546504,Brooklyn Heights 1brm Private Deck ,2687009,Jeff,Brooklyn,Brooklyn Heights,40.69271,-73.99365,Entire home/apt,135,4,5,2016-05-16,0.06,1,0 +546573,Stunning apt with downtown views!,1792568,Mickey,Manhattan,Financial District,40.70587,-74.01534,Entire home/apt,500,2,63,2019-05-19,0.75,1,79 +547830,Brooklyn Summer Sublet-Ditmas Park,2693076,Kristin,Brooklyn,Flatbush,40.64882,-73.9605,Entire home/apt,90,3,0,,,1,157 +548133,Chic One-Bedroom Apt,2694451,Shontae,Brooklyn,Clinton Hill,40.69073,-73.96762,Entire home/apt,135,3,28,2019-06-01,0.40,1,211 +548184,Cozy Room in GREENPOINT Apt. YeY,2694253,Yonatan,Brooklyn,Greenpoint,40.72515,-73.95153,Private room,199,1,0,,,1,365 +549873,1 BR with garden--East Village,2702563,James,Manhattan,East Village,40.72564,-73.98252,Entire home/apt,90,2,5,2015-05-25,0.09,1,0 +550288,Cozy Upper East Side 1 Bedroom,2684478,Brian,Manhattan,Upper East Side,40.78024,-73.94813,Entire home/apt,160,4,16,2019-02-12,0.20,1,0 +550653,Sun Fill Room in a Spacious Apt,2706505,Huxley,Brooklyn,Windsor Terrace,40.6599,-73.98279,Private room,65,20,6,2018-09-30,0.32,1,311 +550777,"Lrg1Bdrm, Terrace w/ Cent.Park View",2707053,Kathleen,Manhattan,Upper West Side,40.7964,-73.9675,Entire home/apt,210,3,25,2019-06-10,0.30,1,347 +550858,Gorgeous Chelsea loft in the heart of Manhattan,2277487,Henrik,Manhattan,Chelsea,40.74664,-73.99441,Entire home/apt,399,3,15,2017-08-10,0.31,1,0 +552141,Historic sundrenched apt of the Lower East Side,2712998,Greg,Manhattan,Lower East Side,40.71788,-73.98975,Entire home/apt,300,1,45,2019-06-08,0.62,1,111 +552519,Brooklyn Amazing 2bedrm Luxury Apt,2715012,Maurice,Brooklyn,Crown Heights,40.67356,-73.9425,Entire home/apt,185,1,215,2019-06-16,2.55,3,348 +552639,Beautiful 2-BDRM Brownstone Apartment,2518984,Historic Harlem,Manhattan,Harlem,40.81757,-73.94709,Entire home/apt,220,3,33,2019-06-22,0.51,2,174 +553516,One Bdrm in Trendy Prospect Hts,2261381,Jennie,Brooklyn,Prospect Heights,40.68052,-73.97254,Entire home/apt,121,2,46,2017-01-02,0.54,1,0 +553565,Feels like home with park view,567226,Yah,Manhattan,Inwood,40.86821,-73.92252,Entire home/apt,120,10,25,2019-06-01,0.30,1,129 +553862,"Bedroom, kitchen and private garden",2647043,Steve,Brooklyn,Park Slope,40.67981,-73.97967,Private room,152,2,23,2018-10-08,0.27,1,365 +554165,"View of skyline w roof deck, perfect for families!",1267900,Maayan,Brooklyn,Gowanus,40.68251,-73.98486,Entire home/apt,250,2,57,2019-07-02,0.67,1,25 +555206,Spacious Room/Hip East Village Apt!,1925503,Evan,Manhattan,East Village,40.72718,-73.9812,Private room,99,6,80,2019-05-26,1.01,1,0 +557487,Full apartment close to G & L train,2740824,Lindsey,Brooklyn,Greenpoint,40.72363,-73.9457,Entire home/apt,104,11,22,2019-05-10,0.26,1,0 +559511,Huge & sunny 1BR apt in Greenpoint,2750389,Jessica,Brooklyn,Greenpoint,40.72697,-73.93921,Entire home/apt,120,5,40,2016-04-22,0.54,1,0 +560078,Gorgeous Unique Garden-Terrace-Apt.,2753256,Vana,Manhattan,East Village,40.72274,-73.97934,Entire home/apt,295,3,85,2019-06-23,1.02,1,261 +560406,Charming old school 1BR in C. Gardens Brooklyn,2755668,Annie,Brooklyn,Carroll Gardens,40.68343,-73.99189,Entire home/apt,90,4,1,2012-07-11,0.01,1,0 +563442,Designer Studio in the HEART of WV!,2770788,Laura,Manhattan,West Village,40.73514,-73.99954,Entire home/apt,197,14,29,2016-12-05,0.36,1,0 +563496,Studio Apartment Greenwich Village,2770985,Aaron,Manhattan,Greenwich Village,40.73481,-73.99845,Entire home/apt,145,5,1,2012-09-05,0.01,1,0 +564049,Lovely Manhattan Apartment,2773585,Mathilde,Manhattan,Upper West Side,40.80053,-73.96651,Entire home/apt,90,30,23,2017-02-15,0.27,1,0 +564184,CLEAN PRIVATE ROOM IN CHELSEA NYC,2378357,David,Manhattan,Chelsea,40.73971,-74.00221,Private room,125,2,42,2019-05-31,0.50,1,172 +564447,GREAT DEAL IN TIMES SQ./HK,2775674,Matt,Manhattan,Hell's Kitchen,40.75767,-73.99034,Entire home/apt,190,1,195,2019-06-25,2.83,1,69 +564751,Artist space for creative nomads.,2777672,Kalae,Manhattan,Upper West Side,40.80165,-73.96287,Shared room,76,2,158,2019-05-05,1.91,3,324 +565814,Bright friendly room in Brooklyn,532819,Heather,Brooklyn,Bedford-Stuyvesant,40.68328,-73.9379,Private room,50,2,1,2016-12-28,0.03,1,0 +566712,"GREAT EAST VILLAGE LOCATION, ELEVATOR & ROOFTOP!!!",2786764,Marianna,Manhattan,East Village,40.72819,-73.97933,Private room,107,1,115,2019-06-07,1.40,1,85 +566911,Entire 1 Bedroom Apartment Flat Historic Bedstuy,2788488,Sajjad,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93875,Entire home/apt,80,4,42,2019-05-28,0.49,1,245 +567195,Beautiful Garden Duplex in Brooklyn,2790324,Erin,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94004,Entire home/apt,150,5,3,2015-08-17,0.04,1,0 +568661,"Bright, Airy Loft Apt in Bushwick",2590864,Jason,Brooklyn,Bushwick,40.70779,-73.92129,Entire home/apt,110,90,32,2019-06-10,0.40,1,330 +568684,800sqft apartment with huge terrace,2798644,Alessandra,Brooklyn,Bushwick,40.70202,-73.92402,Entire home/apt,115,370,6,2018-04-15,0.09,1,365 +568743,☆ 2BR East Village ☆ Sleeps 5 | BEST LOCATION ☆,627217,Seith,Manhattan,East Village,40.72603,-73.98751,Entire home/apt,151,2,214,2019-07-06,2.53,3,256 +570218,Duplex Loft in Fort Greene,2805772,Christopher,Brooklyn,Fort Greene,40.68522,-73.97771,Entire home/apt,130,2,11,2019-05-06,0.13,1,0 +570750,Fabulous Urban Retreat 2bdr,2806561,Noemie,Brooklyn,Crown Heights,40.67391,-73.94039,Entire home/apt,180,2,221,2019-06-23,2.60,1,264 +571564,large spacious room,1141935,Ana,Brooklyn,Crown Heights,40.67436,-73.94807,Private room,95,1,123,2019-06-02,1.47,3,359 +573612,"Sunny Private Bedroom by Express Train, Colleges!",2270624,Ny,Manhattan,Harlem,40.81199,-73.95116,Private room,79,1,132,2019-06-16,1.56,2,335 +573671,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68586,-73.9501,Private room,60,30,41,2019-02-23,0.65,8,245 +573795,Spacious Stylish 2 Bedroom Suite,38513,Nkosi,Brooklyn,East Flatbush,40.65204,-73.94938,Entire home/apt,133,4,104,2019-06-06,1.32,1,338 +573870,Central Park West/ 80s One bedroom!,1385157,Brian,Manhattan,Upper West Side,40.78292,-73.97438,Entire home/apt,120,30,18,2019-05-27,0.22,5,337 +575061,Your own floor (private) in prime Williamsburg!!,2828813,Katherine,Brooklyn,Williamsburg,40.71603,-73.95665,Private room,120,2,143,2019-06-30,4.14,1,102 +576227,Bright and Spacious Manhattan,2834840,Sheri,Manhattan,Harlem,40.82446,-73.95274,Private room,700,28,4,2016-10-03,0.05,1,22 +576426,TIMES SQ - FABULOUS 1BR/ BEST VIEW!,426725,Goran,Manhattan,Hell's Kitchen,40.7641,-73.98803,Entire home/apt,165,3,25,2014-04-15,0.30,1,0 +576916,"Beautiful, Quiet, Spacious 1BR - UWS by parks",2837527,Alexandra,Manhattan,Upper West Side,40.79785,-73.97202,Entire home/apt,165,4,4,2017-08-22,0.05,1,0 +577324,Stylish 1BR Apartment Quick to Midtown and LGA!,2839267,Dustin,Queens,Ditmars Steinway,40.76961,-73.90451,Entire home/apt,54,45,198,2019-06-15,2.33,1,80 +577703,Romantic Creative Retreat: Feel the Glow,2841175,Ina,Manhattan,East Village,40.73047,-73.98229,Entire home/apt,100,5,6,2012-09-14,0.07,1,0 +577824,Modern Private 2 BR Near DT Manhattan – 3 stops,2841374,Stephon & Luke,Brooklyn,Crown Heights,40.6772,-73.9506,Private room,80,7,10,2019-05-21,0.48,1,365 +578267,*Lovely Bedroom! Big Sunny Apt*Manhattan*,1449904,Edel,Manhattan,Chinatown,40.71328,-73.99315,Private room,96,19,30,2019-04-08,0.36,1,165 +578941,Beautiful Park Slope 2 bedroom,2847655,Gideon,Brooklyn,Park Slope,40.66732,-73.98233,Entire home/apt,159,2,4,2015-09-21,0.08,1,0 +579716,Sweet n' Spectacular PARK SLOPE!,2851409,Mark And Stoph,Brooklyn,South Slope,40.66488,-73.98079,Private room,50,2,201,2019-07-01,2.42,1,54 +580323,Upper East Side 1 LG BR Avail in my Cute 2BR Apt,2311767,Melanie,Manhattan,East Harlem,40.78837,-73.94628,Private room,75,2,51,2019-06-30,0.61,1,77 +581180,Beautiful Fresh Studio for Sublet,2775107,Dana,Brooklyn,Clinton Hill,40.68232,-73.96501,Entire home/apt,155,30,63,2019-05-26,0.75,1,249 +581421,Pvblic Bath Artist Loft,2861848,Bekah,Brooklyn,Greenpoint,40.73252,-73.95496,Private room,150,2,28,2018-08-05,0.59,1,72 +581542,Escape to our Great Beach Getaway,2861854,Jeanmarie,Queens,Arverne,40.59783,-73.80158,Entire home/apt,92,1,55,2017-06-01,0.66,1,8 +582272,Privet Room in Greenpoint +Backyard *location,2712129,Raziel,Brooklyn,Greenpoint,40.72437,-73.94847,Private room,75,5,1,2018-11-13,0.13,1,0 +582372,Comfy New York City Launching Pad!!,733370,Tim,Queens,Astoria,40.77115,-73.92275,Private room,69,40,23,2016-07-01,0.27,1,207 +583337,Lovely Condo Carroll Gardens/Gowanus,2874587,Ibie,Brooklyn,Carroll Gardens,40.67859,-73.99444,Entire home/apt,115,4,61,2019-03-09,0.72,1,15 +583352,Charming Loft in the East Village,2423042,Nitin,Manhattan,East Village,40.72304,-73.97923,Entire home/apt,120,60,5,2013-06-20,0.06,1,0 +584122,"PRIVATE ROOM in HELL'S KITCHEN, NYC",2878358,Gio/Joey,Manhattan,Hell's Kitchen,40.77032,-73.99493,Private room,120,2,67,2019-06-25,0.80,1,179 +585369,SOHO/VILLAGE CHARMING STUDIO,911596,Anna,Manhattan,Greenwich Village,40.72692,-73.99948,Entire home/apt,215,30,110,2019-04-02,1.30,1,332 +585491,Beautiful Modern Apt in Brooklyn,2886652,Kanan & Tobias,Brooklyn,Crown Heights,40.6806,-73.96317,Entire home/apt,195,2,160,2019-06-18,1.95,1,255 +585937,Comfortable 1 Bedroom in Greenpoint,2888900,Alex,Brooklyn,Greenpoint,40.72949,-73.95493,Entire home/apt,175,3,102,2019-06-25,1.23,2,215 +586847,LARGE BEDROOM +PRIVATE BATHROOM,311286,Helene,Brooklyn,Crown Heights,40.67649,-73.9435,Private room,80,2,5,2017-05-08,0.08,4,311 +587519,Huge Bdrm in New Wilibrg 3 Bed Loft,2897835,Tim,Brooklyn,Williamsburg,40.71099,-73.95217,Private room,48,5,1,2015-03-31,0.02,1,0 +587554,Warm&Cozy Studio West Village,2897329,Josefina,Manhattan,West Village,40.73041,-74.00326,Entire home/apt,200,7,34,2019-06-30,0.41,1,217 +587641,Luxury Pad NYC - Williamsburg Loft,717562,John,Brooklyn,Williamsburg,40.7197,-73.95741,Entire home/apt,275,30,6,2015-10-31,0.07,1,363 +587698,Very close to Downtown Awesome Room,807642,Jeffrey,Brooklyn,Gravesend,40.60399,-73.97092,Private room,72,1,61,2019-07-06,0.81,2,335 +587740,Designer open space in TriBeCa Soho 1000sq ft,2899508,Tom & Jennifer,Manhattan,SoHo,40.72372,-74.00277,Entire home/apt,199,60,11,2019-06-21,0.13,1,281 +588677,Great find- 2 bedroom apartment in Williamsburg!,2407024,Michael,Brooklyn,Williamsburg,40.70989,-73.95347,Entire home/apt,250,30,1,2012-08-10,0.01,2,250 +590903,CLOSE TO CENTRAL PRK & EXPRESS TRAINS ABCD 2/3,1345769,Wowa,Manhattan,Harlem,40.80797,-73.9489,Private room,75,5,46,2019-05-05,0.60,1,343 +591135,Awesome Place! Amazing Location!!!,1523018,T,Manhattan,SoHo,40.72466,-73.99632,Private room,125,1,132,2019-06-05,1.75,1,365 +591565,Everyone who stays leaves happy!,2919467,Lisa,Manhattan,Tribeca,40.71552,-74.00749,Private room,229,1,62,2014-04-27,0.73,1,36 +591710,Spacious one bedroom apartment in Brooklyn Heights,2920855,Theodore,Brooklyn,Brooklyn Heights,40.69464,-73.99885,Entire home/apt,175,10,8,2018-08-24,0.17,1,0 +592785,Adorable 1 Bedroom,2932668,Stephanie,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95824,Entire home/apt,140,3,16,2017-04-17,0.27,1,0 +592831,Beautiful Bedroom in Brooklyn,2926404,Chris,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95809,Private room,54,2,19,2016-07-15,0.23,1,220 +592853,A GEM IN THE CITY,2926593,Valerie,Queens,Ridgewood,40.70001,-73.90698,Entire home/apt,75,2,17,2017-01-01,0.20,1,0 +593000,Cozy 1BD Manhattan close Central Pk,2927446,Marie-Jeanne,Manhattan,Upper East Side,40.77247,-73.94665,Entire home/apt,110,7,12,2016-11-18,0.14,1,0 +593292,Penthouse Studio East 50s Terrace,2929585,Hillary,Manhattan,Murray Hill,40.75128,-73.97658,Entire home/apt,165,1,321,2019-06-15,3.93,1,185 +593320,In Manhattan+1 Small Block to train,2929756,Chris,Manhattan,Inwood,40.86345,-73.92039,Private room,55,4,160,2019-06-12,1.89,2,79 +594020,In_Manhattan+1 Small Block to train,2929756,Chris,Manhattan,Inwood,40.86284,-73.91955,Private room,55,4,142,2019-06-03,1.68,2,179 +594036,Spacious Greenwich Village Loft,2934010,Bill,Manhattan,West Village,40.73413,-74.00465,Entire home/apt,300,1,5,2015-10-11,0.06,1,0 +594640,NYC Chelsea very spacious 1-bedroom apartment,2937468,Markus,Manhattan,Chelsea,40.74026,-74.00079,Entire home/apt,275,6,61,2019-06-30,0.73,1,69 +594732,Greenwich Village Skylit 1BR +deck!,2938302,Chris,Manhattan,Greenwich Village,40.73474,-73.99527,Entire home/apt,331,7,0,,,1,189 +595321,Williamsburg Peace for the Solo Traveler,898980,Kelly,Brooklyn,Williamsburg,40.71316,-73.94532,Private room,77,3,5,2018-10-21,0.08,1,0 +595604,1 Bed Manhattan Apt. Minimum 7 DAYS,2943157,Ana,Manhattan,Washington Heights,40.8347,-73.94857,Private room,60,30,36,2017-01-25,0.44,1,365 +596448,The Perfect Brooklyn Heights Apt,2648088,Angela,Brooklyn,Brooklyn Heights,40.69082,-73.99281,Entire home/apt,129,1,109,2019-06-14,1.51,1,261 +597544,Dream Room in Sunnyside New York,2954200,Nancy,Queens,Sunnyside,40.74124,-73.92273,Private room,100,3,28,2019-03-31,0.38,1,188 +597624,Beautiful apartment in Park Slope,2954680,Onur,Brooklyn,Park Slope,40.67465,-73.97975,Entire home/apt,120,4,14,2019-05-20,0.16,1,0 +598612,Most breathtaking view of Manhattan,2960326,Fabio,Brooklyn,Williamsburg,40.72203,-73.95376,Entire home/apt,500,2,250,2019-06-26,2.99,1,307 +599595,BIG UWS APT-BLOCK FROM CENTRAL PARK,2965915,Amy,Manhattan,Upper West Side,40.7839,-73.97897,Entire home/apt,179,4,12,2018-05-28,0.25,1,11 +599847,Beautiful Ft. Greene Apartment-NEW!,2966937,Chris,Brooklyn,Clinton Hill,40.68533,-73.96808,Entire home/apt,149,2,20,2018-12-30,0.24,1,4 +600286,"lovely, spacious wmsbrg apt w deck",1036617,George,Brooklyn,Williamsburg,40.70397,-73.95536,Entire home/apt,180,14,27,2019-05-13,0.36,1,312 +600775,Sml Rm in pr. Brst in Pk Sl great for Med/students,210746,Kathleen R.,Brooklyn,Prospect Heights,40.68084,-73.97429,Private room,100,2,73,2019-06-27,0.89,3,257 +600877,Rare Loft Apt in Heart of Brooklyn,2973437,Kevin + Casey,Brooklyn,Boerum Hill,40.68379,-73.98313,Entire home/apt,180,3,2,2015-12-29,0.05,1,0 +602070,"Amazing Greenpoint/WBurg, BRKLN 1BR",2640845,Zach,Brooklyn,Greenpoint,40.72188,-73.94963,Entire home/apt,128,5,38,2019-05-06,0.45,1,20 +602142,2B+Office Perfect 4 Young Family!!,2233907,Kyle,Brooklyn,Prospect Heights,40.67963,-73.97237,Entire home/apt,260,14,5,2014-10-18,0.07,1,0 +602250,College Students see New York !,2979607,Miriam,Queens,Cambria Heights,40.69249,-73.73382,Private room,55,3,0,,,2,365 +602453,Cosy Large Bedroom Park Slope,2316922,Nat,Brooklyn,Park Slope,40.6686,-73.98342,Private room,65,3,31,2018-08-10,0.50,1,22 +602888,Bright UES Gem Near Central Park,177724,Lauren,Manhattan,Upper East Side,40.76985,-73.95815,Entire home/apt,200,2,17,2015-12-07,0.21,1,0 +606269,Garden Oasis in the ♥️ of NYC | Steps to Times Sq!,3002643,Heather,Manhattan,Hell's Kitchen,40.76257,-73.99303,Entire home/apt,249,3,35,2019-05-27,0.42,1,38 +607735,Brownstone Home - BEST BKLYN BLOCK!,3011547,Wendy,Brooklyn,Gowanus,40.68466,-73.98871,Entire home/apt,300,30,63,2019-04-18,0.77,3,365 +607781,"Convenient, Central, Comfortable",2874433,Eric,Manhattan,East Harlem,40.79183,-73.94743,Entire home/apt,120,7,149,2019-06-29,1.78,1,16 +607891,Charming triplex in NYC brownstone!,893148,Silvia,Manhattan,Upper West Side,40.77471,-73.98261,Private room,120,20,107,2018-06-05,1.29,1,144 +609213,"Cozy 1BR apart. in Prospect Hts, BK",3019795,Marta,Brooklyn,Prospect Heights,40.67293,-73.96399,Entire home/apt,125,5,7,2015-12-31,0.08,1,0 +609559,Queens Quality Convenient Apartment,3647,Rafael,Queens,Elmhurst,40.73587,-73.88279,Entire home/apt,99,3,48,2019-06-23,0.58,2,301 +609983,Gorgeous 1 Bdrm Haven/Shared Ktchn,3024659,Jonathan,Brooklyn,Bushwick,40.69945,-73.92148,Entire home/apt,115,3,54,2019-06-19,0.65,1,3 +610118,Hip Brooklyn Photo Studio Loft!,1144721,Andrew And Kat,Brooklyn,Bushwick,40.7072,-73.92245,Entire home/apt,275,31,17,2015-10-18,0.20,1,364 +610596,Chateau Gowanus,2992042,"Christopher, Samantha And Mason",Brooklyn,Gowanus,40.67376,-73.99648,Entire home/apt,198,2,103,2019-06-08,1.62,1,299 +611009,HUGE East Village 2 Bd w/Priv Yard,3029414,Deborah,Manhattan,East Village,40.7256,-73.97857,Entire home/apt,199,3,243,2019-06-24,2.95,1,142 +611408,Cozy Comfortable Friendly & Cheap!,2979607,Miriam,Queens,Cambria Heights,40.6916,-73.73323,Private room,45,3,0,,,2,365 +612936,1 FLOOR OF A BROWNSTONE WITH GARDEN,3039868,Lori & John,Manhattan,Upper West Side,40.79196,-73.97065,Private room,125,3,93,2019-06-18,1.17,1,58 +613528,Full-Service Studio Apt in Brownstone/Townhouse,2518984,Historic Harlem,Manhattan,Harlem,40.81726,-73.94583,Entire home/apt,80,2,54,2019-07-01,0.74,2,193 +613556,"2 BED TriBeCa, Beautiful-Renovated!",1475015,Mike,Manhattan,Tribeca,40.71655,-74.01171,Entire home/apt,130,30,2,2015-10-31,0.03,52,116 +613818,Small Private Room # 1 with Window,2712353,Masud,Brooklyn,Cypress Hills,40.68375,-73.87065,Private room,35,28,88,2019-05-22,1.05,4,326 +614269,Full Apt! L Train On The Corner!!,3047107,Bradley,Brooklyn,Williamsburg,40.70958,-73.93578,Entire home/apt,90,30,15,2017-07-29,0.18,1,0 +616585,Great house in Williamsburg ,10889,Bob,Brooklyn,Williamsburg,40.72091,-73.96133,Entire home/apt,250,3,25,2017-11-21,0.30,2,188 +618836,1 BR Apartment near Prospect Park!,3065891,Sarah,Brooklyn,Crown Heights,40.66959,-73.95718,Entire home/apt,115,3,0,,,1,0 +618916,Brooklyn Carriage House,92451,Cath,Brooklyn,Prospect Heights,40.68066,-73.96644,Entire home/apt,200,4,11,2019-04-28,0.13,1,0 +619122,Big Sunny Williamsburg 14ft Ceilings w Half Bath,2272846,Zack,Brooklyn,Williamsburg,40.71447,-73.95237,Private room,64,30,17,2019-05-30,0.26,2,230 +619471,Historic Brownstone Parlor & Garden,3069794,Hayley,Brooklyn,Bedford-Stuyvesant,40.68372,-73.9406,Private room,65,3,5,2014-08-31,0.06,2,341 +620214,NYC/Queens 1 Bedroom Apartment,3073291,David,Queens,Astoria,40.76408,-73.92461,Entire home/apt,175,14,0,,,1,0 +621430,Cozy bedroom in Hells Kitchen,2957827,Mauricio,Manhattan,Hell's Kitchen,40.76876,-73.99473,Private room,90,2,28,2018-09-13,0.34,1,358 +622410,"Great room in 2BR, Bright + Cozy!",1563352,Evelina,Brooklyn,Crown Heights,40.66839,-73.96001,Private room,85,2,0,,,1,0 +623423,ENTIRE LUXURY MADISON AVE STUDIO,3091205,Angela,Manhattan,Midtown,40.74519,-73.98338,Entire home/apt,150,30,0,,,1,352 +623747,Great deal! Manhattan 1-bedroom 1 month sublet,3050955,Laura And Bernard,Manhattan,Kips Bay,40.74285,-73.97986,Entire home/apt,50,30,8,2018-08-21,0.11,1,91 +624222,"Spacious apt in South Harlem, steps to subways !",3097033,Aida,Manhattan,Harlem,40.80352,-73.95127,Entire home/apt,136,2,15,2019-04-27,0.18,2,6 +625197,"Williamsburg, Brooklyn Townhouse",1974637,Gina,Brooklyn,Williamsburg,40.71455,-73.93739,Entire home/apt,400,3,2,2018-10-22,0.17,1,83 +625365,"In the heart of Prospect Park, BK!",3102648,Zhenia,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95951,Entire home/apt,125,4,40,2019-01-01,0.57,1,29 +627432,"In the Hub of Union Square, NYC",3114411,Carlita,Manhattan,East Village,40.7324,-73.98577,Entire home/apt,165,7,57,2019-05-06,0.68,1,32 +627949,COMFY-CUTE-N-CLEAN APT in WBURG,585879,Armando,Brooklyn,Williamsburg,40.71402,-73.93989,Entire home/apt,180,3,0,,,1,0 +628078,NYC Whole Apt. Dec 26th- Feb 3rd,3119145,Dennis,Manhattan,Harlem,40.80338,-73.95594,Entire home/apt,105,14,6,2018-08-16,0.07,1,0 +628227,Ti me Square Stylish 1 Bedroom,3120156,Sag,Manhattan,Hell's Kitchen,40.7592,-73.99133,Entire home/apt,148,4,57,2019-05-24,0.69,1,0 +629315,1BD brownstone apt in Fort Greene!,2397437,Lauren,Brooklyn,Fort Greene,40.68935,-73.9695,Entire home/apt,120,3,22,2015-10-28,0.27,1,189 +629770,Slick Studio with High Ceilings,3129020,Ian,Manhattan,Gramercy,40.73326,-73.98245,Entire home/apt,99,8,6,2013-09-04,0.07,1,0 +629774,East Village perch!,834185,Zachary,Manhattan,East Village,40.73082,-73.98502,Entire home/apt,175,1,17,2015-10-13,0.20,1,0 +629855,Big Room in Williamsburg Loft,155163,Niral,Brooklyn,Williamsburg,40.71382,-73.94164,Private room,85,2,14,2018-10-28,0.19,1,0 +629949,1 BR - Garden - Broadway?,3130534,Ken,Manhattan,Upper East Side,40.77975,-73.94977,Private room,80,1,160,2019-06-27,1.90,1,319 +630034,Sal's bnb,3129017,Lascell,Brooklyn,Bedford-Stuyvesant,40.68517,-73.95563,Entire home/apt,119,2,85,2019-06-23,1.02,1,338 +633276,"Jacuzzi Suite, Minutes to Times Sq.",1568517,Karl & Catherine,Queens,Long Island City,40.74609,-73.94691,Private room,89,1,165,2019-06-22,1.99,2,50 +633950,1-Bd Apt in PRIME Soho - NYC- July,2354167,Paul,Manhattan,SoHo,40.72625,-74.0018,Shared room,195,2,13,2014-04-22,0.16,1,0 +634353,Luxury 1Bed with Central Park Views,836168,Henry,Manhattan,Upper West Side,40.77428,-73.98594,Entire home/apt,1000,30,44,2015-09-28,0.53,11,364 +635114,NYC - Heart of Greenwich Village,3158530,Peter,Manhattan,Greenwich Village,40.72812,-74.00191,Entire home/apt,225,4,51,2019-05-02,0.62,1,172 +635282,"Huge factory loft, prime location",1215949,Misty,Brooklyn,Williamsburg,40.71657,-73.96264,Entire home/apt,165,2,179,2019-06-17,2.20,1,0 +635662,bedroom in front of prospect park w/2 queens beds,3033622,Jose,Brooklyn,Windsor Terrace,40.65193,-73.97301,Private room,60,2,206,2019-06-15,2.49,2,86 +636391,Charming Sunny W. Village Apt.,8425,Sharon,Manhattan,West Village,40.73485,-74.00637,Entire home/apt,165,5,4,2018-07-08,0.05,1,87 +637228,"Beautiful, bright room w/priv bath",1363434,Daniel,Brooklyn,Bushwick,40.70074,-73.92333,Private room,80,14,2,2019-06-23,0.11,1,67 +637504,Private bedroom in a 2-fam house for solo traveler,3179968,Tony,Queens,Sunnyside,40.73607,-73.92439,Private room,52,3,1,2018-06-04,0.08,1,0 +637716,"NOLITA, Home Sweet Home in NYC",3181665,Cortney,Manhattan,Nolita,40.72095,-73.99401,Entire home/apt,160,4,2,2013-04-03,0.02,1,0 +638894,"1-BDRM, Good Light, Fire-Escape, AC",1182294,Jonny,Brooklyn,Crown Heights,40.67639,-73.96003,Entire home/apt,110,5,3,2016-01-11,0.04,1,15 +638898,Apt Near Central Park & Columbia!,1583594,Jeffrey,Manhattan,Upper West Side,40.79913,-73.96057,Private room,60,2,19,2015-09-23,0.23,1,0 +639199,"Beautiful 4BR/4BA Home, Staten Island, NY City.",1483081,Marina,Staten Island,Tottenville,40.50868,-74.23986,Entire home/apt,299,3,59,2019-07-08,0.82,1,245 +639781,East Village 1 Bedroom Apartment,3194190,Jack,Manhattan,East Village,40.72389,-73.98934,Entire home/apt,200,6,1,2019-01-05,0.16,1,128 +640589,Sweet Super Bowl Accomodations,3198479,Gina,Manhattan,West Village,40.73727,-74.00213,Entire home/apt,700,5,1,2012-09-18,0.01,1,365 +640691,Homey Townhouse + PRIVATE Bathroom,3199395,Chris & Don,Brooklyn,Cobble Hill,40.68648,-73.99257,Private room,120,3,254,2019-06-23,3.05,1,271 +640990,Cozy E. Harlem Brownstone PH,3201337,Diego,Manhattan,East Harlem,40.79512,-73.93182,Private room,65,2,129,2019-04-06,1.56,2,32 +641768,INSANE NYC views! Live in the sky!,3206521,Dee,Manhattan,Hell's Kitchen,40.76206,-73.9998,Entire home/apt,263,30,11,2013-03-08,0.13,2,33 +642682,Up Among the Trees 2,579412,Mateo And Anna,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95002,Entire home/apt,120,20,32,2019-04-21,0.68,1,149 +643591,Central Park Luxury ( BEST DEAL ;),81335,Evan,Manhattan,Upper West Side,40.78455,-73.97352,Entire home/apt,150,5,8,2016-08-21,0.12,3,0 +643948,Luxe Queen Size Bed*Cozy Elegance*Inwood Manhattan,400262,Grace,Manhattan,Inwood,40.87114,-73.91791,Private room,60,2,261,2019-07-03,3.16,1,156 +644464,Loft Room in Heart of Williamsburg,3225114,Ryan,Brooklyn,Williamsburg,40.71827,-73.96259,Private room,350,2,3,2012-09-23,0.04,1,365 +644575,Enjoy and discover New York Citi,15523,Vadim,Staten Island,Tompkinsville,40.63358,-74.0833,Private room,71,2,23,2018-10-07,0.33,2,352 +644833,3 Bedroom 2.5 Bath Multilevel Home,195137,James,Manhattan,Harlem,40.82312,-73.94971,Entire home/apt,433,5,108,2019-06-03,1.44,2,318 +644869,Luxury Doorman Building! w/Pvt Bath,1223359,Steven,Manhattan,Harlem,40.8224,-73.94358,Private room,79,3,9,2019-06-30,0.11,1,329 +645075,"Hell's Kitchen, Midtown west!",2494666,Brian,Manhattan,Hell's Kitchen,40.76376,-73.99161,Private room,140,2,248,2019-06-24,2.99,1,0 +645693,☆☆New Discount☆☆ Beautiful Room / Next to Subway,3233986,Daniel,Queens,Astoria,40.75703,-73.91666,Private room,61,4,107,2019-06-22,1.29,2,335 +645922,Gorgeous Modern Manhattan Apt,1740784,Gal,Manhattan,Midtown,40.74648,-73.98459,Private room,100,3,41,2015-09-25,0.52,1,0 +645942,Amazing NY apartment in SoHo/Nolita,3235547,Mathilde,Manhattan,Nolita,40.72294,-73.99388,Entire home/apt,250,4,43,2019-06-02,0.52,1,347 +646147,Private rooms on a XLarge 3 br 2 baths,352230,Andrea,Manhattan,Harlem,40.82732,-73.95112,Private room,145,3,39,2016-12-08,0.47,1,44 +646391,Lofted Bed in a Funky Family Loft!!,147388,Mary,Brooklyn,Bedford-Stuyvesant,40.6951,-73.95605,Shared room,45,4,31,2017-06-01,0.37,1,0 +646458,Room in Williamsburg Loft - Long Stays,415660,Carmen,Brooklyn,Williamsburg,40.71256,-73.96626,Private room,73,6,6,2019-05-13,0.07,2,310 +647413,Charming 1 bedroom Apt in Brooklyn,3245898,Ede,Brooklyn,Prospect Heights,40.6795,-73.9685,Entire home/apt,150,3,18,2019-04-06,0.26,1,68 +647520,Charming 1br in of NYC's best Neighborhood!,3245431,Jon,Manhattan,NoHo,40.7256,-73.99445,Entire home/apt,234,20,29,2019-04-30,0.37,1,302 +647580,East Village Hideaway,3247050,Moira,Manhattan,East Village,40.73045,-73.98541,Entire home/apt,150,1,11,2013-12-25,0.13,1,0 +648047,"Cute, comfortable room in Gramercy",672510,Jernee,Manhattan,Gramercy,40.737,-73.98199,Private room,65,4,161,2019-07-01,1.92,1,182 +648246,Spacious Brooklyn Loft w/ River View,62583,Karina,Brooklyn,Williamsburg,40.71227,-73.96776,Entire home/apt,195,1,39,2019-04-28,0.47,1,270 +649561,Manhattan Sky Crib (1 year sublet),3260084,David,Manhattan,Chelsea,40.75164,-73.99425,Entire home/apt,135,365,0,,,1,365 +649903,Studio With Old-World Character,3262771,Christina,Brooklyn,Crown Heights,40.67189,-73.93499,Entire home/apt,90,7,2,2015-08-25,0.03,1,0 +651375,"Spacious, rare, elegant, art-filled loft w sauna",3272526,Lisa,Manhattan,SoHo,40.72381,-73.99684,Entire home/apt,595,5,59,2019-06-27,0.77,1,169 +651475,"Comfortable, clean & quiet in EV",468752,Casper,Manhattan,Gramercy,40.73337,-73.984,Private room,109,1,323,2019-06-20,3.89,1,276 +651648,One Bedroom Apartment in an 1879 Brownstone,3274376,Edward,Brooklyn,Clinton Hill,40.68304,-73.96348,Entire home/apt,200,3,56,2019-05-21,0.96,1,365 +652371,ELEGANT MIDTOWN EAST STUDIO E.52 ST,1475015,Mike,Manhattan,Midtown,40.75743,-73.96939,Entire home/apt,90,30,3,2016-12-31,0.05,52,358 +652466,32nd St & Lexington Ave / Doorman Beautiful Studio,1475015,Mike,Manhattan,Kips Bay,40.7419,-73.9816,Entire home/apt,100,30,2,2018-06-30,0.04,52,342 +652515,COLUMBUS CIRCLE~FULLY FURNISHED!!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76758,-73.98722,Entire home/apt,85,30,2,2016-08-15,0.04,52,223 +652648,GRAMERCY PARK~FURNISHED E.20's ST P,1475015,Mike,Manhattan,Kips Bay,40.74189,-73.97833,Entire home/apt,87,30,3,2018-08-15,0.05,52,363 +652691,COLUMBUS CIRCLE~100% FURNISHED W.58,1475015,Mike,Manhattan,Upper West Side,40.76934,-73.98464,Entire home/apt,95,30,1,2012-11-01,0.01,52,365 +654005,Charming 2 Bdrm UWS w/ private deck,1242765,Kate,Manhattan,Upper West Side,40.78363,-73.97797,Entire home/apt,349,3,58,2019-06-18,0.70,1,341 +654232,BIG East Village 1bd all the extras,3291022,Noel,Manhattan,East Village,40.72171,-73.98334,Entire home/apt,99,3,10,2015-10-24,0.14,1,0 +654612,THE HEART OF ART IN THE HEART OF NY,3293368,Kathleen,Manhattan,Hell's Kitchen,40.76803,-73.98767,Entire home/apt,160,2,83,2019-05-23,1.01,1,105 +655230,Be in NYC's best: Lower East Side!,3298062,Connie,Manhattan,Chinatown,40.71695,-73.99031,Entire home/apt,149,4,12,2019-06-03,0.14,1,203 +655472,Lovely 2-room Studio in Crown Hghts,326329,Nick,Brooklyn,Crown Heights,40.67574,-73.95434,Entire home/apt,60,3,1,2012-08-25,0.01,1,0 +655783,Chic Luxe 1BR 1.5BA 900sf -Midtown ,3301845,Alana,Manhattan,Midtown,40.75663,-73.96681,Entire home/apt,285,7,10,2019-07-06,3.53,1,0 +656281,"QUIET, SPACIOUS, COMFORTABLE, & GREAT LOCATION",3180741,Manon,Brooklyn,Kensington,40.64573,-73.98013,Private room,72,1,48,2019-02-28,0.59,1,312 +657005,Charming West Village Pad,159780,Horatio,Manhattan,West Village,40.74004,-74.00426,Entire home/apt,150,16,5,2019-07-03,0.06,1,339 +657198,"2BR gem in Cobble Hill, Brooklyn",414627,Charlotte,Brooklyn,Columbia St,40.68863,-74.00181,Entire home/apt,200,3,15,2018-07-09,0.18,1,0 +657217,Prime location near Central Park !!,3312204,Olga,Manhattan,Upper East Side,40.7779,-73.95246,Private room,79,1,347,2019-07-04,4.24,2,247 +657727,"Bright, Quiet 2 BR in Awesome Area!",3315563,Mariko,Manhattan,Upper West Side,40.78194,-73.98248,Entire home/apt,197,1,108,2019-07-05,1.31,2,269 +658008,Secret Garden,3317183,Claire,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95375,Entire home/apt,75,3,163,2019-06-19,1.96,2,218 +658366,HEART OF NYC! Sunny furn 1 br wifi,3319410,Dawn,Manhattan,Gramercy,40.73354,-73.98593,Entire home/apt,127,3,182,2019-06-23,2.30,1,264 +658515,A nice quiet room in Manhattan,3320650,Jay,Manhattan,East Harlem,40.8014,-73.94361,Private room,110,1,37,2019-06-02,0.45,1,365 +658932,Cozy room on a tree lined street ,3323929,Erika,Queens,Ridgewood,40.69922,-73.90027,Private room,69,1,30,2019-06-22,0.40,1,0 +659880,1 bedroom in a super cute 2 bed,1648054,Ruth,Brooklyn,Williamsburg,40.70653,-73.94421,Private room,100,60,3,2015-05-15,0.04,1,365 +659952,GREAT Studio apartment in Midtown W,3166753,Ben,Manhattan,Hell's Kitchen,40.76287,-73.9957,Entire home/apt,99,3,46,2018-01-04,0.56,1,31 +660016,"Peaceful with Windows, Brooklyn Apt",270064,Sean - Hygge Stay,Brooklyn,Williamsburg,40.70249,-73.9488,Entire home/apt,139,2,211,2019-07-04,2.57,1,19 +660036,Great Apt Steps from Central Park,3330459,Lynne,Manhattan,Upper West Side,40.78754,-73.96989,Private room,113,1,93,2019-05-21,1.12,1,2 +661814,1 bedroom apt in heart of Chelsea,3341426,Nika,Manhattan,Chelsea,40.741,-73.99957,Entire home/apt,250,2,10,2016-05-07,0.13,1,0 +663608,Boho Chic Rhapsody in New York City,3351317,Clara,Manhattan,Kips Bay,40.74027,-73.98061,Entire home/apt,295,4,72,2019-06-22,1.02,1,122 +664047,Lux 2Bed/2.5Bath Central Park Views,836168,Henry,Manhattan,Upper West Side,40.77516,-73.98573,Entire home/apt,2000,30,59,2016-01-28,0.71,11,364 +665394,Winning Location in Hells Kitchen,1139222,Carl,Manhattan,Hell's Kitchen,40.7589,-73.99015,Entire home/apt,220,2,18,2018-12-01,0.24,1,0 +666220,Beautiful East Village apartment,2490963,Matteo,Manhattan,East Village,40.72771,-73.98172,Private room,75,5,6,2013-07-11,0.07,1,0 +666315,BEDFORD AVE STUDIO APT WITH GARDEN,1486465,Carlo,Brooklyn,Williamsburg,40.71157,-73.9636,Entire home/apt,100,31,15,2015-10-12,0.18,1,223 +666613,Amazing Williamsburg entire Loft. Floor 2B,3370705,Valentin,Brooklyn,Williamsburg,40.71112,-73.96338,Entire home/apt,199,4,78,2019-06-07,1.26,1,65 +667375,Light & airy Chelsea NY 1bdrm apt,3376141,Nic,Manhattan,Chelsea,40.74272,-74.00309,Entire home/apt,200,3,17,2018-06-24,0.21,1,5 +667549,My Brooklyn Studio in Ditmas Park,3377231,Lina,Brooklyn,Flatbush,40.64895,-73.95758,Entire home/apt,140,4,15,2017-08-03,0.18,1,365 +668400,1BR in nice 2BR Apt lovely Area ,3383354,Martina,Manhattan,Inwood,40.86186,-73.92701,Private room,50,7,1,2015-07-16,0.02,1,0 +668691,Comfy room in beautiful apartment,3363720,Kate,Brooklyn,Bushwick,40.68888,-73.91911,Private room,45,5,69,2019-05-25,0.89,3,223 +669633,Popular area in BK and Close to Manhattan,2400932,Jackie'S Place,Brooklyn,Gowanus,40.67947,-73.98458,Entire home/apt,109,31,114,2019-06-10,1.38,2,110 +669831,Central Park Sunny Bedroom,3392287,Roxanne,Manhattan,East Harlem,40.79591,-73.94801,Private room,108,3,161,2019-06-15,1.98,2,24 +670767,Bookcase Room with Hidden Door!,3363720,Kate,Brooklyn,Bushwick,40.68796,-73.91906,Private room,42,5,70,2019-04-29,0.88,3,236 +671496,Great private room in awesome area!,3403890,Cory,Brooklyn,Crown Heights,40.67138,-73.95577,Private room,70,3,0,,,1,0 +671633,REDUCED! Private Apt~Fun NYC area!,1709717,Camille,Manhattan,Upper East Side,40.77382,-73.95088,Entire home/apt,141,2,46,2019-06-14,0.57,1,346 +672724,Elegant 2 BDRM Brooklyn Brownstone,3411621,Elizabeth,Brooklyn,Fort Greene,40.68418,-73.96926,Entire home/apt,355,5,19,2018-11-02,0.24,1,301 +673248,Secret Garden Big and Comfortable,3317183,Claire,Brooklyn,Bedford-Stuyvesant,40.68773,-73.95631,Entire home/apt,80,3,162,2019-06-24,1.97,2,249 +673760,Sunrise Room in Spacious Duplex,2219255,Natalie,Brooklyn,Canarsie,40.62764,-73.90086,Private room,250,2,70,2018-10-10,0.85,3,0 +674692,A LITTLE PARADISE NEXT TO SUBWAY!,3425965,Francesca,Queens,Ridgewood,40.70719,-73.89632,Private room,75,14,11,2018-08-31,0.15,1,332 +675793,AMAZING LOCATION YOU WILL LOVE IT,3432742,Callie,Manhattan,West Village,40.73456,-74.00347,Private room,88,2,2,2019-07-04,0.05,1,348 +676257,small private bedroom female only,1465539,Ouii,Manhattan,Kips Bay,40.74166,-73.97811,Private room,65,5,39,2019-01-18,0.55,1,318 +676295,(B) BARGAIN SPACE,27848,Jullett,Queens,Jamaica,40.67166,-73.76566,Private room,58,2,56,2019-07-01,0.67,2,365 +679633,Cozy 1 bedroom apartment in NYC,3458785,Glauce,Queens,Ditmars Steinway,40.77987,-73.91565,Entire home/apt,75,3,1,2012-09-18,0.01,1,0 +679769,Great Room in Astoria! Close to Everything!,3404680,James,Queens,Astoria,40.77329,-73.92832,Private room,100,2,35,2019-06-21,0.42,1,144 +680104,Newly Renovated 1 BR,3462232,Stephen,Manhattan,Lower East Side,40.7195,-73.99416,Private room,167,5,32,2018-09-14,0.39,1,341 +680225,"Large private bedroom in house, Bushwick/Ridgewood",2675998,Alice,Queens,Ridgewood,40.70866,-73.91537,Private room,65,2,1,2018-01-03,0.05,2,0 +680998,Trendy Harlem Apartment in New York,3467798,Laila,Manhattan,Harlem,40.80829,-73.9426,Entire home/apt,125,21,12,2018-12-20,0.15,2,267 +681518,Artist room for creative nomads,2777672,Kalae,Manhattan,Upper West Side,40.80114,-73.96378,Private room,95,2,211,2019-06-21,2.54,3,126 +681805,NEAR THE CITY THAT NEVER SLEEPS!,3375455,Maria,Staten Island,Mariners Harbor,40.62879,-74.16062,Private room,54,2,48,2019-06-11,0.59,1,232 +682122,"Warm, Comfortable, Inviting Home",3475005,Yolanda,Brooklyn,Flatlands,40.61676,-73.92552,Entire home/apt,89,2,219,2019-06-12,2.63,2,319 +682155,Central Park Chic Single Room,3392287,Roxanne,Manhattan,East Harlem,40.79417,-73.95101,Private room,92,3,218,2019-06-23,2.63,2,12 +683084,Midtown West- A COZY ONE bedroom.,3480879,Danny,Manhattan,Chelsea,40.75286,-74.00162,Entire home/apt,199,6,40,2017-10-15,0.50,1,0 +683681,Beautiful West Village 1 BR apartment,1397883,Jeff,Manhattan,West Village,40.73477,-74.00275,Entire home/apt,179,14,37,2019-06-08,0.46,1,284 +683743,Low Cost Room With GREAT Location,1229984,John,Queens,Long Island City,40.7453,-73.95294,Private room,65,20,28,2017-05-20,0.34,3,188 +683821,Spacious Private room in beautiful 1BR near Park,3447309,Mie,Manhattan,Harlem,40.80314,-73.95768,Private room,55,3,66,2019-06-17,0.80,2,13 +684808,Gorgeous NY Studio in Midtown East,3491890,George Steven,Manhattan,Murray Hill,40.74888,-73.97828,Entire home/apt,129,30,43,2019-07-04,0.67,6,256 +684991,Terrific NY Studio in Midtown East,3491890,George Steven,Manhattan,Murray Hill,40.74851,-73.97796,Entire home/apt,134,30,9,2018-11-04,0.11,6,313 +685435,Cozy Private Bedroom $800 Month,1360296,Maria Daniela,Brooklyn,East New York,40.67635,-73.89124,Private room,35,3,13,2019-05-29,0.16,1,2 +686696,duplex with backyard upper eastside,3502638,Daniel,Manhattan,Upper East Side,40.78002,-73.95211,Private room,250,1,60,2019-05-16,0.93,1,148 +688652,Huge Sunny Modern Apt. (1k+sqft),62855,Andrew,Brooklyn,Clinton Hill,40.69445,-73.96401,Entire home/apt,249,4,19,2019-06-07,0.23,1,362 +689329,Cozy 15 mins Manhattan& 10 Mins LGA,2446219,Biren,Queens,East Elmhurst,40.75772,-73.8953,Private room,62,1,296,2019-06-29,3.92,2,234 +689900,Large Room / Light / Columbia University - UWS,475916,Katherine,Manhattan,Upper West Side,40.80373,-73.9679,Private room,119,1,96,2017-05-18,1.16,1,0 +690349,Full 1BR Apartment in Park Slope,3540041,Peter,Brooklyn,South Slope,40.66481,-73.98367,Entire home/apt,179,2,77,2019-06-24,0.97,1,0 +690516,Lovely Garden Apt. in Fort Greene.,66329,Collin,Brooklyn,Fort Greene,40.68757,-73.97469,Entire home/apt,220,1,115,2019-06-24,1.40,2,96 +690553,Modern Lofted Williamsburg 3bd,743742,Ethan And Wray,Brooklyn,Williamsburg,40.7056,-73.94202,Entire home/apt,198,1,294,2019-07-04,3.59,1,233 +690603,Brooklyn's top,3530446,Maurice,Brooklyn,Crown Heights,40.67722,-73.95005,Entire home/apt,155,3,66,2019-06-30,1.75,3,309 +690675,Quirky Sunny Retreat Central Williamsburg,2172525,Slava,Brooklyn,Williamsburg,40.71407,-73.95336,Entire home/apt,199,7,4,2018-08-10,0.09,1,0 +690849,East Village Artist's Studio,284224,Daniel,Manhattan,East Village,40.72912,-73.98355,Entire home/apt,95,3,39,2019-06-18,0.47,1,15 +690934,"LEGAL PARK SLOPE 5 BR, ROOF TERRACES for 14 PEOPLE",570988,Yves,Brooklyn,Park Slope,40.68305,-73.97853,Entire home/apt,550,4,173,2019-07-01,2.12,1,258 +690960,Guestroom w/ 2 beds 20 mins to NYC ,3531317,Ingrid,Brooklyn,Bushwick,40.68161,-73.90796,Private room,60,2,295,2019-06-16,3.56,2,210 +692137,Stunning 3BR loft in Williamsburg!!!!,3538661,Phillip,Brooklyn,Williamsburg,40.71428,-73.961,Entire home/apt,380,4,62,2019-01-02,0.75,2,170 +692567,Bushwick Creative Den of Bliss,3541525,Lindsay,Brooklyn,Bushwick,40.70234,-73.91849,Private room,84,2,138,2019-07-02,1.69,1,225 +693597,UWS Charming 1 bedroom + loft,2817397,Larysa,Manhattan,Upper West Side,40.77563,-73.98065,Entire home/apt,165,30,27,2019-06-24,0.34,1,128 +695002,Roomy Updated Studio - East Village,1443121,Pavel,Manhattan,East Village,40.72866,-73.98048,Entire home/apt,105,30,96,2019-06-16,1.17,1,295 +695216,Private Suite in Historic House,3558158,Natalie,Brooklyn,Fort Greene,40.69096,-73.97241,Entire home/apt,134,2,119,2018-01-25,1.46,1,0 +695297,Sunny Elegant and Big Room!,2195782,Boris,Brooklyn,Bedford-Stuyvesant,40.69114,-73.94601,Private room,68,5,8,2018-09-07,0.10,1,281 +695465,The heart of the metropolis,3561489,John,Manhattan,East Village,40.72482,-73.98097,Entire home/apt,73,30,100,2019-07-01,1.25,1,3 +696593,Park Slope One bedroom with Balcony,3228992,Karin,Brooklyn,Park Slope,40.67406,-73.97697,Entire home/apt,150,5,1,2015-07-16,0.02,1,27 +697499,"Lovely, large studio near Central Park",1372779,Charlie,Manhattan,Upper West Side,40.77392,-73.97852,Entire home/apt,100,3,89,2019-06-27,1.12,1,0 +697923,Cute & Cozy NYC Room - Hell's Kitchen (dog in apt),3576466,Kevin,Manhattan,Hell's Kitchen,40.76422,-73.99382,Private room,75,2,176,2019-06-21,2.22,2,23 +698094,5th Ave Apartment in Midtown! ,3569392,Kristen,Manhattan,Midtown,40.76221,-73.97787,Private room,120,4,31,2016-08-26,0.38,1,0 +698132,"LARGE PRIVATE FLOOR IN BROOKLYN, NY",3577509,Eric,Brooklyn,Bedford-Stuyvesant,40.69128,-73.93653,Entire home/apt,85,4,239,2019-06-26,2.89,2,1 +698162,"Comfy apartment, adorable cat!",3577848,Abby,Manhattan,Inwood,40.86737,-73.91877,Entire home/apt,55,2,79,2019-04-24,0.96,1,3 +698298,GREAT private apt on MULBERRY st - Nolita / Soho,1746432,Joseph,Manhattan,Nolita,40.72177,-73.9961,Private room,95,10,13,2019-04-15,0.33,1,51 +698327,Clean Cute Private Room in CHELSEA,3579337,Nina,Manhattan,Chelsea,40.74034,-74.00259,Private room,72,14,11,2017-12-08,0.16,3,297 +698514,"SUNNY LOFT: Greenwich Village, NYC",3579116,Kristin,Manhattan,West Village,40.73105,-74.00285,Entire home/apt,250,80,5,2017-05-03,0.06,2,78 +698882,The Serenity Room in Historic BKLYN,2994135,Devin & Justin,Brooklyn,Cobble Hill,40.68902,-73.99517,Private room,69,2,13,2016-12-31,0.37,1,0 +699348,Peaceful double room in Brooklyn Brownstone,279845,Chantille & Linda,Brooklyn,Prospect Heights,40.67793,-73.96577,Private room,78,4,190,2019-01-04,2.30,2,188 +699472,NYC 1st Shipping Container Home,3587751,Janet-David,Brooklyn,Williamsburg,40.70995,-73.95536,Entire home/apt,220,1,404,2019-06-25,4.90,2,341 +700530,Charming South Village w/ Private Terrace,2495668,Christos,Manhattan,SoHo,40.72756,-74.00239,Entire home/apt,230,2,27,2019-07-06,1.40,1,101 +700916,Airy Bed Sty Restoration,3595395,Gabriela,Brooklyn,Bedford-Stuyvesant,40.68906,-73.94103,Entire home/apt,150,4,79,2019-05-20,0.97,1,246 +701227,Cozy Private room in Fort Greene,3598306,Afaliah,Brooklyn,Fort Greene,40.6967,-73.97622,Private room,80,2,14,2017-10-06,0.17,2,364 +702213,W'burg Hidden Treasure Off Lorimer,240471,Roberto,Brooklyn,Williamsburg,40.70751,-73.9467,Private room,150,3,32,2018-10-20,0.42,2,365 +702440,Park Slope Brownstone with Garden,3605606,Gisela,Brooklyn,Park Slope,40.67507,-73.98093,Entire home/apt,150,3,76,2019-06-01,0.98,1,266 +702551,UWS renovated 2bedroom 2bath near everything.,3606458,Mathew,Manhattan,Upper West Side,40.79507,-73.97568,Entire home/apt,900,1,7,2019-01-01,0.09,2,365 +703745,Great apt in the heart of E Village,3597177,Ori,Manhattan,East Village,40.72225,-73.98496,Entire home/apt,130,7,11,2016-10-02,0.14,1,0 +703971,HOME AWAY FROM HOME,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95275,Private room,70,5,18,2019-05-30,0.22,3,365 +704838,An Oasis in the Big Apple 1,3621183,Paul,Queens,Woodside,40.74723,-73.89706,Entire home/apt,120,3,60,2019-07-04,1.59,3,281 +705749,Room Available Close to Manhattan-A,3625735,Marianne,Staten Island,Concord,40.60183,-74.08953,Private room,75,30,59,2019-03-30,0.72,2,354 +705997,Classy Brooklyn Studio,240048,Katherine / François,Brooklyn,Sunset Park,40.66084,-73.99328,Entire home/apt,100,15,22,2018-12-10,0.47,2,5 +706347,"HISTORIC WILLIAMSBURG, BKLYN #2",839679,Brady,Brooklyn,Williamsburg,40.71796,-73.95439,Private room,69,3,2,2013-05-06,0.03,3,284 +707396,2BR PENTHOUSE w Private Roofdeck,3636235,Ari,Manhattan,East Village,40.72558,-73.97929,Entire home/apt,399,7,104,2019-07-02,1.28,1,42 +707736,Brand New 2-Level 2-Bedroom Condo,1507336,Jeff,Manhattan,Harlem,40.80748,-73.94869,Entire home/apt,299,3,6,2019-05-24,0.09,1,348 +708374,private bedroom w/private bathroom on Central Park,315918,Arlette,Manhattan,Upper West Side,40.79854,-73.96089,Private room,100,3,326,2019-07-01,3.96,1,90 +708637,Cozy bedroom near Manhattan & airport,3644693,Eugenia,Queens,Jackson Heights,40.74869,-73.88293,Private room,68,28,55,2019-06-01,0.67,2,89 +710015,"Large room, Outdoor Patio, Great Host, Safe Area!",3136147,Gym Hoodie,Brooklyn,Borough Park,40.63324,-73.99461,Private room,103,3,0,,,1,0 +710243,"Cozy, ideal live-work space in the heart of LES!",1444304,Alejandra,Manhattan,Lower East Side,40.71819,-73.99136,Entire home/apt,175,5,56,2019-07-06,0.79,1,263 +710283,"Sunny, Large & Lovely in Greenpoint",283215,Isabelle,Brooklyn,Greenpoint,40.72582,-73.95213,Entire home/apt,330,3,51,2019-06-22,0.62,1,19 +710284,"**YOUR CHELSEA LOFT, WELCOME HOME",3642625,Amy,Manhattan,Chelsea,40.74225,-73.99492,Entire home/apt,425,5,7,2015-04-11,0.09,1,0 +711635,Charming East Village Apartment,3662459,Barry,Manhattan,East Village,40.73016,-73.98643,Entire home/apt,240,5,86,2019-06-30,1.15,1,344 +712136,Room Available-Close to Manhattan-B,3625735,Marianne,Staten Island,Concord,40.60213,-74.0893,Private room,75,30,36,2017-08-29,0.44,2,362 +712260,Private Two Bedroom with Garden in Cobble Hill,3666608,Paul And Debra,Brooklyn,Carroll Gardens,40.68344,-73.9933,Private room,210,2,75,2019-06-19,0.92,1,309 +713538,Chic Victorian private apartment in townhouse,3672774,Alison,Brooklyn,Clinton Hill,40.68341,-73.9606,Entire home/apt,175,1,363,2019-06-16,4.55,2,323 +713891,Amazing location! 10ft from L train,3675389,Giorgia & Benjamin,Brooklyn,Williamsburg,40.71534,-73.94906,Private room,85,2,146,2019-06-23,1.78,1,46 +714028,An Oasis in the Big Apple 2,3621183,Paul,Queens,Woodside,40.74746,-73.89712,Entire home/apt,120,3,51,2019-07-03,1.52,3,253 +714049,An Oasis in the Big Apple 3,3621183,Paul,Queens,Woodside,40.74687,-73.89892,Entire home/apt,120,3,55,2019-06-04,0.67,3,289 +714075,Room in Clinton Hill Brooklyn Loft,3597769,Enid,Brooklyn,Bedford-Stuyvesant,40.68712,-73.95876,Private room,75,5,1,2013-08-08,0.01,2,0 +714939,West Village 2 Bedroom Apt,3578480,Radan,Manhattan,West Village,40.73795,-74.00593,Entire home/apt,495,3,29,2019-03-12,0.38,1,22 +715102,WILLIAMSBURG 1 private room in loft,1002452,Florencia,Brooklyn,Williamsburg,40.71055,-73.94915,Private room,65,14,30,2018-09-02,0.76,2,38 +715270,2 Beds/Queen & Full Beautiful Room 40 minsT.Square,3684360,Enrique,Bronx,Allerton,40.85956,-73.87067,Private room,39,2,169,2019-06-12,2.07,4,306 +716169,Feel the Brooklyn Love!,2055073,Melissa,Brooklyn,Fort Greene,40.68811,-73.97236,Entire home/apt,93,4,1,2015-05-14,0.02,1,0 +718761,"2 private BRs, private bath - Like your OWN APT",216191,M,Brooklyn,Williamsburg,40.70985,-73.9452,Private room,146,2,8,2019-03-09,0.11,4,88 +719329,Bright 1 BR in Brooklyn,3711499,Silvia,Brooklyn,Crown Heights,40.67473,-73.96263,Entire home/apt,120,3,12,2019-03-17,0.18,1,15 +719914,Charming Harlem Getaway-Women Only,3715319,Crystal,Manhattan,Harlem,40.82655,-73.93943,Private room,79,3,19,2018-10-26,0.30,1,365 +720274,Nice studio apartment in Brooklyn!,3717536,Adam,Brooklyn,Crown Heights,40.67471,-73.95324,Entire home/apt,100,5,9,2017-04-16,0.11,1,0 +720394,Large pleasant room nr Central Park,3718361,Jo,Manhattan,Upper West Side,40.80155,-73.96569,Private room,120,1,5,2014-05-19,0.06,2,0 +721719,Heart of Harlem 1 BR Garden apt,3726131,John,Manhattan,Harlem,40.80745,-73.94353,Entire home/apt,150,5,17,2018-06-25,0.26,2,36 +721762,Colorful New York East Village Apt,3726366,Dk,Manhattan,East Village,40.72576,-73.98582,Entire home/apt,144,4,70,2019-06-19,0.86,1,198 +722264,Medium-sized furnished room,3729726,Samir,Brooklyn,Crown Heights,40.67641,-73.95729,Private room,60,7,0,,,1,0 +722451,"NYC Spacious 3b, new, river view",3730928,Dustin,Manhattan,Harlem,40.82398,-73.954,Entire home/apt,350,1,1,2015-10-05,0.02,1,0 +722464,Large Private Room in Clinton Hill Brooklyn Loft,3597769,Enid,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95837,Private room,85,5,1,2019-01-07,0.16,2,189 +723507,Space! Light! Charm! 1BR close to subways & park,3737582,Ellen,Manhattan,Upper West Side,40.79241,-73.97111,Entire home/apt,195,3,17,2018-09-18,0.43,1,26 +723523,MANHATTAN CHARMER WOW - ALL YOURS!!,3390362,Neill,Manhattan,Upper East Side,40.77042,-73.96145,Entire home/apt,200,2,59,2017-08-21,0.73,1,0 +723560,Modern and Cozy Home - LES,3738130,Andrea,Manhattan,Lower East Side,40.71625,-73.9843,Entire home/apt,169,5,62,2019-07-01,0.75,1,249 +723709,Large room 2blks from central Park,297176,Bethania,Manhattan,Harlem,40.80351,-73.95648,Private room,95,10,6,2019-05-11,0.07,2,63 +725270,Very Large Loft in Chelsea for Your Stay!!,3750402,Alexander,Manhattan,Flatiron District,40.74056,-73.99262,Entire home/apt,375,2,33,2019-05-15,0.84,1,346 +725509,3 BR Apartment in Heart of Brooklyn,3752523,Ari,Brooklyn,Crown Heights,40.66983,-73.94322,Entire home/apt,168,2,158,2019-06-16,1.93,2,253 +726422,Grand Brooklyn Apartment,3759301,Natalia,Brooklyn,Crown Heights,40.67942,-73.96248,Entire home/apt,50,4,8,2019-04-29,0.12,1,220 +726465,"❤️ of Williamsburg, Private Entrance",1869332,Elli,Brooklyn,Williamsburg,40.71927,-73.95591,Private room,129,2,129,2019-04-25,1.67,3,36 +726692,House 10 min from Midtown Manhattan,3641304,Remo,Queens,Astoria,40.76216,-73.92542,Entire home/apt,245,6,1,2015-08-29,0.02,1,164 +727512,Duplex Loft Suite w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73867,-73.95448,Entire home/apt,199,3,50,2019-07-02,0.67,28,47 +727547,Duplex w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73844,-73.95456,Entire home/apt,199,3,116,2019-06-28,1.56,28,36 +727835,Pristine Room and Art Experience,3772684,Glasshouse,Brooklyn,Williamsburg,40.70866,-73.95166,Private room,99,6,89,2017-12-12,1.09,2,89 +727964,Garden Pl Historical Artist studio,3493470,Tari,Brooklyn,Brooklyn Heights,40.69127,-73.99552,Entire home/apt,160,1,17,2016-03-15,0.21,1,0 +728409,Huge Room in South Williamsburg,3778274,AJ And Freddy,Brooklyn,Williamsburg,40.70061,-73.9552,Private room,65,2,164,2017-01-01,2.07,2,0 +728493,Feel at HOME away from HOME,1601416,Clement & Natalia,Manhattan,Harlem,40.81073,-73.9437,Private room,70,7,67,2019-01-01,0.87,1,0 +728498,WEST HARLEM PRIVATE BEDROOM,3779334,Lex And Derek,Manhattan,Harlem,40.80517,-73.95404,Private room,80,1,135,2019-06-22,1.67,1,365 +728764,AMAZING COLUMBUS CIRCLE LOCATION :),1475015,Mike,Manhattan,Hell's Kitchen,40.76761,-73.98619,Entire home/apt,100,30,3,2018-11-01,0.12,52,365 +729306,"Clean & Quiet BR in Sunset Park, BK",3787686,"Porfirio ""Firo"" & Maria",Brooklyn,Borough Park,40.64431,-74.00016,Private room,70,1,139,2019-06-04,1.70,1,364 +729841,Gorgeous Apt Heart of West Villlage,73549,Melinda,Manhattan,West Village,40.73616,-74.004,Entire home/apt,200,2,23,2018-12-07,0.32,1,0 +730480,Private Bedroom in Sunny Brooklyn Apartment,3798686,Jonathan,Brooklyn,Sunset Park,40.65989,-73.99536,Private room,66,3,51,2019-05-30,0.64,1,329 +731293,**YOUR HOME AWAY FROM HOME** : UES/66th LG 1 BDRM,3805320,R And R,Manhattan,Upper East Side,40.76352,-73.96394,Entire home/apt,200,3,203,2019-06-20,2.53,1,260 +731300,Private Room Williamsburg(Ariel) 4p,3398752,Alessandra,Brooklyn,Williamsburg,40.71141,-73.95427,Private room,95,2,164,2019-06-23,2.07,2,93 +731316,"Sunny & Clean Apt, Ideal Location",3805397,Christa,Manhattan,Chelsea,40.74092,-74.00037,Entire home/apt,140,1,6,2016-05-25,0.07,1,0 +732624,1 Pvt. Room in Upper West Manhattan,3813161,Cleveland,Manhattan,Harlem,40.81908,-73.94776,Private room,65,1,327,2019-06-29,4.01,1,287 +732700,Centrally located and spacious apt.,3815537,Reshma,Manhattan,Midtown,40.75154,-73.97104,Entire home/apt,106,7,10,2019-07-06,10,1,0 +734749,"QUIET spacious 1BR, great location!",3831783,Shahar,Manhattan,Upper West Side,40.78361,-73.97645,Entire home/apt,155,181,82,2016-08-26,1.07,1,188 +735677,CHIC Apt in TRENDY East Village,3771963,Megan,Manhattan,East Village,40.72849,-73.98041,Entire home/apt,249,2,111,2019-07-06,4.44,1,28 +735890,"Homey, Clean studio- East Village",3839667,Hallie,Manhattan,East Village,40.72369,-73.9894,Entire home/apt,120,7,6,2018-01-02,0.08,1,0 +736187,Private Room in lovely Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72661,-73.94586,Private room,52,5,35,2019-01-03,0.44,3,1 +737075,"Bright Friendly Apt, East Village!",2333904,Stephanie,Manhattan,East Village,40.7232,-73.97927,Private room,75,26,57,2019-05-20,0.70,3,98 +737126,Williamsburg Loft!! Bedford L 1blk!,3847832,Eric,Brooklyn,Williamsburg,40.71714,-73.95447,Shared room,195,2,80,2017-05-26,0.98,1,364 +738588,"Wedding guests accommodations, 3-7 bedrooms",1360198,Marina,Staten Island,Arrochar,40.59193,-74.06476,Entire home/apt,625,4,1,2015-11-01,0.02,4,335 +739239,Luxury Furnished 1 BR Apartment Near Central Park,15145088,Izi,Manhattan,Upper West Side,40.78674,-73.97243,Entire home/apt,171,30,4,2018-08-02,0.06,8,346 +739242,1 BR Modern Luxury Apart w W/D Steps From Park,15145088,Izi,Manhattan,Upper West Side,40.78747,-73.97238,Entire home/apt,185,30,8,2018-10-15,0.10,8,346 +739815,Cozy Private Room in LIC,1486623,Sol,Queens,Long Island City,40.74975,-73.93688,Private room,55,7,39,2019-06-25,0.48,1,46 +740823,Beautiful private Apt-15m Manhattan (3rd Room),570882,Eldad & Paulina,Brooklyn,Bushwick,40.70226,-73.92797,Private room,50,2,27,2019-06-12,0.35,1,2 +740947,BEST KIPS BAY LOCATION. HUGE 1BD,1475015,Mike,Manhattan,Kips Bay,40.74231,-73.97839,Entire home/apt,120,30,3,2015-08-02,0.05,52,365 +741154,Beautiful duplex loft with Skylight,1406458,Nancy,Manhattan,Tribeca,40.71778,-74.00452,Entire home/apt,210,14,10,2019-07-04,10,1,0 +741346,Entire 1BR Bohemian Apartment in Center of NYC,1099464,Nicolas,Manhattan,East Village,40.7296,-73.98479,Entire home/apt,133,2,1,2018-07-24,0.09,1,50 +741354,Simple and cozy place on the beach,2577615,Ella,Brooklyn,Brighton Beach,40.57728,-73.95362,Entire home/apt,73,30,21,2017-04-18,0.26,1,251 +741783,LOVELY 2BR West Village Apt!,3880974,Neil & Katie,Manhattan,West Village,40.73454,-74.00365,Entire home/apt,350,1,237,2018-09-16,2.96,1,0 +741797,Luxury Tribeca 1bdr in Doorman Bldg,3131199,Oly,Manhattan,Tribeca,40.71729,-74.00424,Entire home/apt,259,2,20,2015-12-30,0.25,1,17 +741806,Inwood-at the foot of the Cloisters,3883580,Viva,Manhattan,Inwood,40.85963,-73.93107,Private room,97,7,2,2018-09-05,0.06,1,87 +742026,NOLITA&SOHO BEST LOCATION&GREAT APT,132132,Rachel,Manhattan,Nolita,40.7229,-73.99574,Entire home/apt,199,7,66,2019-06-09,0.83,1,142 +742779,Upper West Side Stunner,3889339,Stacey,Manhattan,Morningside Heights,40.80529,-73.96467,Entire home/apt,125,2,7,2017-12-15,0.09,1,358 +742795,Spacious Heart of Ft. Greene Studio,3889383,Elizabeth,Brooklyn,Fort Greene,40.68736,-73.97496,Entire home/apt,100,1,273,2019-06-20,3.35,1,45 +744078,Tiffany Room in Duplex Home,2219255,Natalie,Brooklyn,Canarsie,40.6258,-73.90004,Private room,39,5,60,2019-06-09,0.95,3,34 +744220,Beautiful 1 bedroom in NOLITA (2 blocks from SOHO),52615,Kjersti,Manhattan,Nolita,40.72064,-73.99605,Entire home/apt,125,28,19,2019-06-18,0.25,1,267 +744228,"Entire gorgeous,cozy,light two bed ",192750,Charlotte,Manhattan,Harlem,40.80145,-73.95572,Entire home/apt,150,1,2,2013-01-05,0.03,1,0 +745037,Luxury Locale Sunny 1BR Suite,3906249,Page,Manhattan,Midtown,40.76412,-73.97666,Entire home/apt,170,7,83,2019-06-23,1.04,1,203 +746088,Little Italy gem Center of it all!,1483464,Robert,Manhattan,Little Italy,40.71955,-73.99706,Entire home/apt,199,3,219,2019-06-16,2.68,1,212 +746983,Enjoy All the Comforts of Home!,3920171,Sophia,Manhattan,Harlem,40.81161,-73.94046,Private room,80,3,0,,,1,362 +746996,Park Slope-Private Room/Bath/Entry,3920265,Kedin,Brooklyn,Park Slope,40.6747,-73.98245,Private room,125,3,270,2019-07-02,3.34,1,300 +747029,Private rooms in heart of Chelsea,3920522,Erik,Manhattan,Chelsea,40.74314,-74.00119,Private room,155,5,18,2019-06-05,0.24,1,90 +747159,sunny private room in east village,3801683,Jackson,Manhattan,Gramercy,40.73158,-73.98303,Private room,120,4,132,2019-07-02,1.62,1,267 +747344,"Stunning views! 3 separate bedrooms, L train Loft",3011406,Ellie,Brooklyn,Williamsburg,40.70608,-73.93154,Entire home/apt,220,3,151,2019-06-22,1.86,1,115 +747419,"Lovely, Sunny 1-Bedroom Apt with Kitcat",160565,Corina,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95604,Entire home/apt,90,1,3,2015-07-06,0.06,1,0 +747538,"HUGE mid-century modern, sunny flat w/ amazing cat",2293050,Nick,Brooklyn,Crown Heights,40.67652,-73.9614,Private room,61,2,167,2019-07-03,4.16,1,320 +747605,"East Village Studio, Great Location",3665794,Jack,Manhattan,East Village,40.72699,-73.97969,Entire home/apt,179,4,213,2019-07-01,2.62,1,277 +748656,Cozy Vintage Studio in Flushing (Close to LGA/JFK),1687335,Aimée,Queens,Flushing,40.76372,-73.79201,Shared room,108,5,2,2017-08-01,0.08,1,0 +749108,Cozy 4 BR Brooklyn townhouse in Clinton Hill,3936154,Molly,Brooklyn,Clinton Hill,40.68391,-73.96201,Entire home/apt,575,3,12,2019-07-01,0.15,1,0 +749455,Lovely Loft space near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77938,-73.98247,Private room,99,1,353,2019-06-25,4.33,4,73 +749896,"1 Bed Williamsburg Apt, Amazing Loc",3941862,Phil,Brooklyn,Williamsburg,40.7189,-73.95725,Entire home/apt,175,3,3,2016-10-15,0.05,1,0 +749965,Charming Brooklyn Abode,3905456,Amber,Brooklyn,Flatbush,40.64294,-73.96016,Entire home/apt,110,1,3,2016-08-21,0.05,1,0 +751851,Spacious 3 bedroom in Park Slope ,3010682,Philippa,Brooklyn,Park Slope,40.66777,-73.97781,Entire home/apt,250,10,4,2015-12-28,0.05,1,0 +752202,"Historic Mansion, Comfortable Room",3955766,Emily,Brooklyn,Bedford-Stuyvesant,40.67968,-73.94715,Private room,100,1,113,2018-08-27,1.43,1,0 +752289,Cozy Village apartment near NYU,2285974,Cristiana,Manhattan,Greenwich Village,40.72863,-74.00137,Entire home/apt,200,4,11,2017-05-20,0.14,1,259 +752366,"Big, close to subway, 3 stops from the city",3956850,Dana,Queens,Astoria,40.75583,-73.91839,Entire home/apt,89,3,17,2019-03-15,0.31,1,0 +752616,Sunny 2BR Penthouse - HUGE Terrace,3916070,Boris,Manhattan,Chinatown,40.71592,-73.9898,Entire home/apt,400,3,46,2019-06-27,0.57,1,175 +752783,LUXURY BROOKLYN LOFT STEPS TO PARK & SUBWAY,3959655,Eric And Aoife,Brooklyn,Windsor Terrace,40.65142,-73.97601,Entire home/apt,149,21,52,2017-06-24,0.64,2,0 +753399,SoHo Loft - The One,3963008,Philip,Manhattan,SoHo,40.72408,-73.99823,Entire home/apt,500,10,10,2019-04-28,0.22,1,33 +753622,1 Private Bedroom / East Village,869880,Karen,Manhattan,East Village,40.73233,-73.98695,Private room,95,5,64,2019-06-29,0.88,1,316 +753687,Mitchell Manor,3964655,Nicole,Brooklyn,Bedford-Stuyvesant,40.67958,-73.93687,Entire home/apt,125,3,104,2019-06-24,1.36,1,275 +753983,Super Cute Upper West Side Apt!!,3966721,Shaina,Manhattan,Upper West Side,40.80193,-73.96703,Private room,80,4,75,2019-07-01,0.93,1,15 +753991,Elegant Stuyvesant Heights Retreat,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93557,Entire home/apt,105,5,227,2019-07-03,2.79,2,234 +754353,Location Moreno,3250450,Petya,Queens,Long Island City,40.75754,-73.93004,Private room,39,30,13,2015-12-13,0.16,18,360 +755528,PRIVATE BATH/TONS OF SUNLIGHT/SAFE,3684360,Enrique,Bronx,Allerton,40.8584,-73.86969,Entire home/apt,49,2,189,2019-06-23,2.32,4,238 +755684,Cozy Soho Studio Loft Apt Bleecker ,3977494,Sandra,Manhattan,Greenwich Village,40.72714,-73.99581,Entire home/apt,187,14,1,2013-01-04,0.01,1,0 +755703,Room: King size bed + private bath,3977693,Oliver,Brooklyn,Bushwick,40.70118,-73.92826,Private room,55,3,10,2015-10-27,0.15,1,0 +756655,Light-Filled Prospect Height Apt.,3983140,Randy,Brooklyn,Prospect Heights,40.68116,-73.96559,Entire home/apt,250,3,61,2017-05-22,0.76,1,0 +756892,Clean Bright Midtown Studio by Park,3731320,Sara,Manhattan,Midtown,40.75982,-73.96521,Entire home/apt,125,4,3,2015-04-28,0.04,1,0 +756928,Your OWN Private Garden Apartment,1358245,Tania,Brooklyn,Clinton Hill,40.68785,-73.96708,Entire home/apt,100,2,27,2018-09-15,0.33,1,159 +757007,Zen Holiday Getaway,2124690,Chanelle,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95692,Entire home/apt,175,7,1,2015-05-23,0.02,1,0 +757187,Brooklyn Charm in Clinton Hill,209647,Jorge,Brooklyn,Clinton Hill,40.68468,-73.96303,Private room,50,4,32,2019-05-30,0.40,1,347 +758782,Perfect Midtown Apt E. 50th St,286313,Kiovanna,Manhattan,Midtown,40.75383,-73.96777,Entire home/apt,133,6,22,2019-06-29,0.33,1,5 +760303,UES Manhattan Quiet Nest 1 Bdrm,4007393,Jenni,Manhattan,Upper East Side,40.77638,-73.95247,Entire home/apt,155,5,63,2019-07-05,0.78,1,235 +761606,"Great location, cozy and quiet.",1292205,Pasha,Queens,Astoria,40.76361,-73.91793,Entire home/apt,140,5,15,2019-05-31,0.19,1,260 +761835,Apto 2 bed $80 night per person,4015459,Joao Lucas,Queens,Astoria,40.76605,-73.92922,Private room,80,2,72,2019-06-30,0.89,1,364 +762015,"Private Oasis, en suite bathroom",3992566,Clay,Brooklyn,Bushwick,40.70022,-73.93032,Private room,103,2,58,2019-06-20,0.94,3,69 +762145,Gorgeous Duplex w Riverview Terrace,3315563,Mariko,Manhattan,Upper West Side,40.78227,-73.9841,Entire home/apt,600,3,9,2018-10-20,0.12,2,353 +763527,Artist's Jungle Suite + Private Bathroom,3604585,Jenny,Brooklyn,Flatbush,40.64073,-73.95832,Private room,70,3,169,2019-07-01,3.07,3,188 +763600,"Private 2BR / East Williamsburg, Bk",3891399,Anthony,Brooklyn,Williamsburg,40.70369,-73.93284,Private room,75,3,2,2014-11-03,0.03,1,0 +763809,Mermaid Oasis in the Heart of Brooklyn,3604585,Jenny,Brooklyn,Flatbush,40.64232,-73.9572,Private room,55,3,66,2019-06-07,1.16,3,264 +763965,East Harlem Studio,4027283,Mariko,Manhattan,East Harlem,40.80826,-73.93401,Entire home/apt,50,4,24,2015-03-02,0.30,1,25 +764052,1 Bedroom Apartment in quiet area.,2618273,Sabrina,Queens,Ditmars Steinway,40.77466,-73.91807,Entire home/apt,390,3,1,2016-12-27,0.03,1,89 +764753,Beautiful 3 bedroom apartment!!,3371859,Jenny & Jose,Brooklyn,Crown Heights,40.67679,-73.93776,Entire home/apt,82,8,108,2019-06-16,1.33,2,238 +765203,Art Lover's Abode Brooklyn,2276842,Debbie,Brooklyn,Williamsburg,40.70745,-73.94307,Shared room,52,3,19,2019-06-30,0.44,2,88 +765315,Bed & Bathroom in Williamsburg Loft,4034995,Susan,Brooklyn,Williamsburg,40.71203,-73.95993,Private room,115,2,91,2017-04-30,1.18,1,258 +765563,Big Comfy Beds & Breakfast on the Deck,4036685,Norman,Queens,Bayside,40.75666,-73.76314,Entire home/apt,299,2,67,2019-06-20,0.95,2,322 +765569,"Brand New, Boutique Brooklyn Condo",4036700,Anna,Brooklyn,Downtown Brooklyn,40.69594,-73.98375,Entire home/apt,175,13,64,2019-03-31,0.80,1,116 +766542,"Designer apt. in Williamsburg, NYC",4041877,Ana,Brooklyn,Williamsburg,40.71988,-73.95616,Entire home/apt,100,90,4,2013-09-04,0.05,1,250 +766814,Adorable Midtown West Studio!,4022922,Caitlin,Manhattan,Hell's Kitchen,40.759,-73.9953,Entire home/apt,95,1,0,,,1,0 +766964,"Sublet Lovely Room in Astoria, 3-4 months",4044889,Jenna,Queens,Astoria,40.77016,-73.92316,Private room,55,80,3,2012-11-10,0.04,1,119 +767562,Beautiful communal house Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69254,-73.91092,Private room,45,2,77,2019-06-02,0.95,5,167 +767761,Beautiful 1 br in Williamsburg,4049527,Nathaniel,Brooklyn,Williamsburg,40.71572,-73.95574,Entire home/apt,165,1,41,2018-06-29,0.52,1,19 +767967,Studio in Chelsea,3949235,Lior,Manhattan,Chelsea,40.75039,-74.00287,Entire home/apt,105,7,2,2019-03-19,0.50,1,0 +767983,Gorgeous Williamsburg Apt + balcony,4048448,Miki & Yacine,Brooklyn,Williamsburg,40.71435,-73.95073,Entire home/apt,200,3,4,2015-12-31,0.05,1,0 +769175,Gorgeous apt. steps from subway,4061660,Amy,Manhattan,Washington Heights,40.83556,-73.94609,Private room,65,30,1,2017-07-01,0.04,1,249 +769279,Room for rent in East Village,1228080,Sasha,Manhattan,East Village,40.72439,-73.97767,Private room,100,7,1,2016-05-01,0.03,1,0 +769448,"Bedford Loft, Williamsburg Prime",4059034,Ian,Brooklyn,Williamsburg,40.7179,-73.96107,Entire home/apt,312,2,302,2019-06-23,4.18,1,246 +770514,"Studio in FlatIron, NYC !! ",4064804,Niki,Manhattan,Flatiron District,40.73997,-73.98789,Entire home/apt,195,1,1,2014-09-22,0.02,1,0 +770893,1 Bdrm Apt-Luxury Bldg-Upper West,4066797,Victoria,Manhattan,Upper West Side,40.77734,-73.9877,Entire home/apt,100,29,3,2019-02-11,0.11,1,301 +770960,Cozy 1 BR in Prospect Heights,4067211,Stephane & Hana,Brooklyn,Prospect Heights,40.67453,-73.96759,Entire home/apt,155,3,13,2016-04-21,0.16,1,0 +771436,3BR/3 Bath House in Astoria,4070269,William,Queens,Ditmars Steinway,40.78027,-73.90821,Entire home/apt,250,28,0,,,1,88 +772362,TIMES SQ/THEATRE DIST STUDIO,2631234,Frank,Manhattan,Hell's Kitchen,40.76078,-73.99076,Entire home/apt,165,3,276,2019-07-06,3.44,1,146 +772679,"Very large, clean 1 BR apartment",4076876,Tauheed,Manhattan,East Harlem,40.80343,-73.93514,Entire home/apt,120,3,22,2019-07-02,0.31,1,365 +773041,Nice beautiful room In the Bronx,3684360,Enrique,Bronx,Allerton,40.85914,-73.86979,Private room,38,1,187,2019-06-23,2.34,4,241 +773497,Great spot in Brooklyn,4081688,Santiago,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94551,Shared room,200,1,0,,,1,365 +773844,2 Beautiful Large Rooms/Fort Greene,4083145,Hannah,Brooklyn,Fort Greene,40.69377,-73.97009,Private room,90,10,1,2018-09-30,0.11,1,0 +773993,Upper East Side Oasis!,4083654,Santina,Manhattan,Upper East Side,40.77032,-73.95331,Private room,85,2,138,2019-07-07,2.06,1,196 +774791,Very clean bed room in queens NYC,1528912,Weiwei,Queens,Flushing,40.75612,-73.82517,Private room,55,2,31,2018-06-28,0.53,2,282 +774899,Unique West Village Loft with Deck,266210,Charles,Manhattan,West Village,40.73461,-74.00594,Shared room,350,2,13,2015-10-19,0.17,1,0 +775238,Fantastic East Village Location!,3659439,Michelle,Manhattan,East Village,40.72578,-73.98448,Private room,59,4,12,2019-06-23,0.16,1,12 +775280,New-York Family Friendly 2bdr/2bath,4089511,Marie,Manhattan,Harlem,40.81381,-73.94314,Entire home/apt,280,4,97,2019-06-28,1.25,2,48 +775326,Cozy Room in Artistic Brownstone,1568517,Karl & Catherine,Queens,Long Island City,40.74527,-73.94629,Private room,69,1,153,2019-01-18,1.89,2,132 +776257,Large One Bedroom in heart of North Williamsburg,4094151,Sean,Brooklyn,Williamsburg,40.71813,-73.9606,Entire home/apt,230,5,72,2019-06-30,0.91,1,325 +777297,XL 2 Bedroom LOFT in the Heart of Williamsburg,3419446,Jennifer,Brooklyn,Williamsburg,40.71606,-73.95527,Entire home/apt,200,2,72,2019-06-23,0.95,1,52 +777327,Cozy Quiet Sunny 1br Ditmas Park Close to Train,4086839,Nataliya,Brooklyn,Flatbush,40.64047,-73.96388,Entire home/apt,150,5,52,2019-05-28,0.65,1,311 +778381,Gorgeous Brooklyn Getaway,3043126,Aziza,Brooklyn,Bedford-Stuyvesant,40.6953,-73.95832,Private room,75,1,28,2019-06-01,0.36,1,365 +778495,Family Friendly Room & Bathroom on Central Park W,1114587,Keenan & Emily,Manhattan,Upper West Side,40.79767,-73.96114,Private room,120,3,2,2018-08-03,0.02,3,0 +779561,FULLY Furnished Studio ♥ Manhattan,4110491,Daniel,Manhattan,West Village,40.73652,-74.00876,Entire home/apt,140,30,18,2019-06-22,0.29,1,182 +779838,rent whole apt. classy 1-bedroom upper west side,4040811,Vance,Manhattan,Upper West Side,40.7982,-73.97173,Entire home/apt,200,2,8,2019-06-02,0.53,1,337 +780205,"Large 2 bedroom, full floor apt.",4092307,Eddie,Manhattan,Civic Center,40.71247,-73.99873,Entire home/apt,225,3,3,2017-01-02,0.07,2,189 +780858,"Charming Fort Greene studio, dream location",4118217,Peter,Brooklyn,Fort Greene,40.68798,-73.97442,Entire home/apt,145,7,4,2018-11-03,0.05,1,36 +781486,Spacious room in historic house,2723812,Libertad,Bronx,Port Morris,40.80461,-73.92276,Private room,60,3,86,2017-12-12,1.13,2,1 +782063,Cozy apartment steps to subway,4125000,Joseph,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95475,Entire home/apt,119,5,7,2016-04-23,0.09,1,0 +782554,Great West Village 1 bdr apartment!,1830890,Adela,Manhattan,West Village,40.73364,-74.00539,Entire home/apt,189,2,68,2019-07-01,0.92,1,63 +783202,"Charming Apt off Bleecker, First Fl",4129805,Evelyn,Manhattan,West Village,40.73164,-74.00327,Entire home/apt,190,2,185,2019-06-24,2.30,5,0 +783341,Private Bedroom LOWER EAST SIDE,4111640,Jennifer,Manhattan,Lower East Side,40.71502,-73.98192,Private room,69,7,48,2019-06-21,0.61,1,235 +783964,GREAT ROOM Fast 2 TIMES SQ 9min NYC,2347382,Massi & Ray,Queens,Long Island City,40.74997,-73.9397,Private room,70,1,148,2019-06-01,1.90,2,303 +784088, 1 Bed Apt in Utopic Williamsburg ,1506795,Anthony,Brooklyn,Williamsburg,40.71188,-73.9608,Entire home/apt,155,2,8,2014-04-28,0.10,1,0 +784124,"New Flat, Great Light, Unique Brooklyn Bungalow",3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68176,-73.914,Entire home/apt,149,2,67,2019-07-06,0.88,3,329 +784169,"Sunny, Gorgeous West Village Home",4135221,Nathalie,Manhattan,West Village,40.73186,-74.00329,Private room,160,1,148,2019-06-21,1.83,1,295 +784170,"HUGE, SUNNY ROOM, BLOCK 4RM TRAIN!",430188,Pam,Brooklyn,Williamsburg,40.70719,-73.95228,Private room,100,20,1,2014-06-10,0.02,6,214 +785166,Comfy Cool Convenient Downtown Manhattan,2840710,Mark,Manhattan,Lower East Side,40.71818,-73.98206,Entire home/apt,220,25,1,2013-10-17,0.01,1,350 +785508,Experience New York - A Locals Way,873273,Christian & Carla,Manhattan,Washington Heights,40.84448,-73.93978,Private room,85,2,211,2019-07-02,2.63,2,339 +785978,For cat lovers - East Village 1 bdr,953375,Wiebke,Manhattan,East Village,40.72762,-73.98218,Entire home/apt,135,5,18,2016-11-13,0.24,1,0 +786053,"Sunny Rm #2, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65545,-73.95781,Private room,45,1,168,2019-06-01,2.30,5,359 +786685,Big Brnstn Grdn Apt 2 stops to Midtown,4147380,Lauren,Manhattan,Harlem,40.82294,-73.94999,Entire home/apt,225,1,50,2019-06-14,0.72,1,265 +786727,Xmas in NYC!!!,4147608,Alison,Manhattan,Harlem,40.81915,-73.93964,Entire home/apt,100,7,11,2015-09-07,0.18,1,0 +786843,PRIVATE ROOFTOP +BEST LOCATION+COZY,3117671,Mariana,Brooklyn,Williamsburg,40.71222,-73.95827,Entire home/apt,145,3,121,2019-07-02,1.51,1,45 +786955,West Village - Gorgeous Studio Apt.,4148114,Dawn,Manhattan,West Village,40.73403,-74.00298,Entire home/apt,210,1,108,2019-07-02,1.35,1,305 +788005,"Spacious 1 Bedroom Apt, Prospect Hts/Park Slope",4153591,Rita,Brooklyn,Prospect Heights,40.67708,-73.96649,Entire home/apt,195,4,10,2019-03-16,0.13,1,95 +788035,Room in 2 Bdr Apt in Nolita/Soho LES,4105376,Luis,Manhattan,Nolita,40.72232,-73.99343,Private room,95,7,46,2017-11-18,0.57,1,0 +788106,Cozy West Village Apartment,3106826,Carl,Manhattan,West Village,40.73761,-74.00043,Entire home/apt,140,2,34,2018-08-31,0.43,1,159 +789476,Room With A View of Central Park,184110,Kiersten,Manhattan,Harlem,40.79863,-73.95292,Private room,95,2,25,2018-01-04,0.48,1,0 +789559,Love NYC! Luxury Apt Upper West ,4160421,Adam,Manhattan,Upper West Side,40.77775,-73.98732,Entire home/apt,295,10,11,2017-06-24,0.14,1,0 +789686,Cute & Quirky Private Room,3055496,Tessa,Manhattan,Washington Heights,40.85082,-73.9378,Private room,80,3,0,,,1,0 +790767,"East Village, Modern Apartment @ Astor Place",1212041,Michelle,Manhattan,East Village,40.72877,-73.98794,Entire home/apt,250,9,2,2019-04-26,0.20,2,126 +791452,Jazzy condo in Riverdale -fresh grown veggies,2556784,Claudia,Bronx,Fieldston,40.88757,-73.90522,Entire home/apt,60,1,25,2019-07-05,0.67,1,311 +792142,Studio Available on Upper East Side,4173419,Meredith,Manhattan,Upper East Side,40.76553,-73.96262,Entire home/apt,150,2,4,2015-06-09,0.06,1,0 +792835,Spacious Lower East Side Studio,180416,Martin,Manhattan,Lower East Side,40.71703,-73.98612,Entire home/apt,159,2,260,2019-06-27,3.58,1,141 +793590,Sunny in the Heart of Williamsburg,2450605,Jennifer,Brooklyn,Williamsburg,40.72034,-73.95669,Entire home/apt,225,1,0,,,1,0 +793951,Beautiful Bedroom in Harlem,4182834,Cruz,Manhattan,Harlem,40.82169,-73.93882,Private room,78,1,52,2017-08-14,0.66,1,0 +794156,Lincoln Center luxury condo,58366,Linna,Manhattan,Upper West Side,40.77445,-73.98496,Entire home/apt,210,30,48,2019-01-03,0.60,1,36 +794245,Historic Brownstone Private Garden,3069794,Hayley,Brooklyn,Bedford-Stuyvesant,40.68356,-73.94042,Private room,60,14,12,2016-09-01,0.22,2,0 +794281,Open loft in the heart of Union Sq.,2275401,Amir,Manhattan,Greenwich Village,40.73545,-73.9931,Entire home/apt,220,6,23,2017-01-02,0.29,1,0 +794425,Brooklyn two bedroom,4185135,David,Brooklyn,Windsor Terrace,40.65954,-73.97805,Entire home/apt,199,265,20,2018-07-27,0.32,2,90 +794427,Prospect Park Modern 3 Bedroom,4185135,David,Brooklyn,Windsor Terrace,40.65875,-73.9766,Entire home/apt,225,300,13,2018-04-07,0.23,2,0 +794472,Beautiful apartment nr Central Park,3718361,Jo,Manhattan,Upper West Side,40.80118,-73.96783,Entire home/apt,350,6,13,2015-06-15,0.16,2,0 +794496,Bright Quiet Room in N. Manhattan,4185984,Greer,Manhattan,Inwood,40.8678,-73.92619,Private room,65,2,93,2018-08-03,1.16,1,0 +794535,"Live in real NY apt, Midtown west",4186145,Raquel,Manhattan,Chelsea,40.75351,-73.99762,Entire home/apt,225,7,3,2015-09-26,0.06,1,250 +794567,Brooklyn Oasis - Master Bedroom.,4103779,Rachel,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95953,Private room,82,3,62,2019-06-22,0.80,1,247 +795198,"Big City of Dreams, East Village!",2333904,Stephanie,Manhattan,East Village,40.72381,-73.97896,Private room,75,26,58,2019-06-07,0.73,3,129 +795641,Weekend NY getaway? Holiday stay?,3472148,Brian,Queens,Ditmars Steinway,40.77452,-73.90889,Private room,60,1,0,,,1,0 +795680,Upper East side cozy 1 bdr apt,4191209,Fran,Manhattan,Upper East Side,40.7666,-73.95903,Entire home/apt,105,14,7,2019-01-06,0.16,1,84 +796232,"Cozy Apt in Bushwick, Brooklyn!",4194142,Alexandra,Brooklyn,Bushwick,40.70308,-73.92765,Entire home/apt,115,4,12,2018-09-21,0.18,1,0 +796370,Monthly discount - 2 bedroom - upper east side,61491,D,Manhattan,Upper East Side,40.77043,-73.9515,Entire home/apt,150,25,1,2017-09-30,0.05,2,207 +796490,Park Slope House -private room -1 block from metro,4107826,Mike,Brooklyn,South Slope,40.66882,-73.98841,Private room,65,5,5,2016-09-28,0.14,1,0 +796523,Rustic Modern Duplex Brownstone,4195861,Doris,Brooklyn,Crown Heights,40.67759,-73.95432,Entire home/apt,150,4,13,2019-01-02,0.30,2,15 +797696,Prime Williamsburg location with private deck,4025188,Suzanne,Brooklyn,Williamsburg,40.70773,-73.9566,Private room,101,2,32,2017-08-19,0.40,1,0 +797972,Spacious 1 Bdrm in BEST location!!,3882661,Ms,Manhattan,Gramercy,40.73493,-73.98655,Entire home/apt,130,3,26,2019-06-28,0.32,2,19 +798008,Hancock Town House!-Stuyvesant Mews,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68561,-73.92029,Private room,165,1,0,,,4,0 +798128,Large one-bed apt Upper East Side,4160649,Alex,Manhattan,Upper East Side,40.77483,-73.94674,Entire home/apt,175,3,1,2017-01-03,0.03,1,0 +798429,Modern 1-bedroom in Harlem Heights,4204890,Martin,Manhattan,Harlem,40.82536,-73.94923,Entire home/apt,115,3,186,2019-06-17,2.32,1,237 +799319,Peaceful Garden Sanctuary best part of Brooklyn!,838848,Sarah,Brooklyn,Fort Greene,40.69075,-73.97192,Entire home/apt,128,5,154,2019-05-13,1.93,1,301 +799484,E'33-EMPIRE STATE -PERFECT SPAC,1475015,Mike,Manhattan,Kips Bay,40.7449,-73.97656,Entire home/apt,116,30,5,2019-03-11,0.09,52,311 +799829,Small Town in the Big Apple!,4153233,Ted,Manhattan,Washington Heights,40.85262,-73.93821,Entire home/apt,192,2,41,2017-12-30,0.60,2,0 +799900,"Amazing apartment near museum, gardens & park!",4211266,Nora,Brooklyn,Prospect Heights,40.67338,-73.96415,Entire home/apt,150,17,3,2016-09-26,0.07,1,0 +799924,"Big Loft in Bushwick: Unfurnished, longterm sublet",2291000,Tommy,Brooklyn,Williamsburg,40.70538,-73.92946,Entire home/apt,163,1,3,2016-06-27,0.04,1,0 +799945,"Very Small Room, Old Historic Brooklyn Townhouse",149929,Obed,Brooklyn,Fort Greene,40.68537,-73.97713,Private room,40,8,32,2019-06-29,0.40,5,284 +800051,Bright & Beautiful 3bdr apt in Prime Williamsburg,195932,Zoe,Brooklyn,Williamsburg,40.7176,-73.95234,Entire home/apt,200,10,6,2018-04-30,0.09,1,174 +801281,Cozy Modern LES Apt-Prime Location,1010338,Stefan,Manhattan,Lower East Side,40.71956,-73.98574,Entire home/apt,158,5,39,2019-01-04,0.55,1,0 +801626,CBG HelpsHaiti #5 Suite,22486,Lisel,Brooklyn,Park Slope,40.68015,-73.978,Private room,115,2,25,2019-05-26,0.36,6,89 +802498,Manhattan *SuperHost* Luxury Master Bedrm PRIVATE,512878,Michelle,Manhattan,Harlem,40.82974,-73.94193,Private room,85,1,190,2019-06-30,3.70,2,178 +802677,Large & Elegant Pre-War One Bedroom,4224513,Adam,Manhattan,Upper West Side,40.78592,-73.97775,Entire home/apt,173,4,16,2018-11-10,0.20,1,0 +803237,Duplex with two terraces and a view,3642035,Arsenio,Brooklyn,Crown Heights,40.67504,-73.95273,Entire home/apt,250,4,6,2019-01-02,0.08,1,250 +803778,Luxury Loft Noho New York City,4230317,Jenny,Manhattan,NoHo,40.72591,-73.99452,Entire home/apt,465,30,47,2019-05-31,0.67,1,277 +804194,Large but cosy Bushwick apartment,4232762,Sigfus,Brooklyn,Williamsburg,40.70747,-73.93879,Entire home/apt,275,7,2,2016-01-07,0.03,1,0 +804246,"HUGE, PRIVATE, SUNLIT ROOM IN DOWNTOWN NYC LOFT!",4233030,Michael,Manhattan,Chinatown,40.71786,-73.99518,Private room,195,3,61,2019-06-30,0.77,1,134 +804388,Cute Studio Apt in a Mansion (1882),4233879,Karen,Brooklyn,Clinton Hill,40.68631,-73.96802,Entire home/apt,63,5,5,2015-11-14,0.06,1,0 +804815,Washington Heights homestay,4112902,Tiffany,Manhattan,Washington Heights,40.83329,-73.93834,Private room,36,1,33,2019-06-18,0.77,1,211 +804911,Sunny apartment in Carroll Gardens,2373697,Doug,Brooklyn,Carroll Gardens,40.68216,-73.99504,Entire home/apt,130,5,2,2015-06-26,0.04,1,0 +805028,"BOERUM HILL, Entire Home / Loft",1131081,Patrick,Brooklyn,Boerum Hill,40.68418,-73.98039,Entire home/apt,200,4,13,2019-01-04,0.22,1,0 +805218,Private Room in Converted Loft,4238591,Leah & Reed,Brooklyn,Greenpoint,40.73159,-73.95048,Private room,85,2,36,2019-06-14,0.45,1,278 +805793,Charming Astoria/NYC Studio Sublet,4241831,Timothy,Queens,Long Island City,40.76108,-73.9274,Entire home/apt,150,14,0,,,1,0 +806038,Home Sweet Room-SAPPHIRE-Queens NYC,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73698,-73.87763,Private room,45,3,89,2019-06-28,1.12,3,213 +806040,Home Sweet Room-EMERALD-Queens NYC!,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73842,-73.87609,Private room,45,3,125,2019-06-23,1.57,3,208 +807535,Spacious Private Bedroom Brooklyn - Williamsburg,4249297,Martina,Brooklyn,Williamsburg,40.70876,-73.94971,Private room,79,5,5,2019-01-02,0.21,2,198 +807882,Apt in Heart of Williamsburg,4250697,Brandon,Brooklyn,Williamsburg,40.71986,-73.95925,Entire home/apt,149,4,1,2013-06-30,0.01,1,0 +808313,Sunny East Village studio apartment,4252788,Suzana,Manhattan,East Village,40.72721,-73.98411,Entire home/apt,200,7,3,2015-11-13,0.04,1,0 +808476,Great Space / Private Room,3775799,Wendee,Manhattan,Harlem,40.83378,-73.94966,Private room,85,1,1,2013-11-01,0.01,1,365 +808618,Spacious & Sunny in Scenic Kw Gdns,4254417,Renee,Queens,Kew Gardens,40.70947,-73.82922,Private room,60,3,12,2019-06-08,0.31,1,351 +808705,ONE BED/ LUXURY @ COLUMBUS CIRCLE!,3038687,Karen,Manhattan,Hell's Kitchen,40.76704,-73.98345,Entire home/apt,139,45,16,2017-11-20,0.21,8,0 +808774,Chic 1 bd apt in Prime Williamsburg,4255290,Julia,Brooklyn,Williamsburg,40.7119,-73.96031,Entire home/apt,160,30,19,2019-04-26,0.26,1,59 +808851,Comfortable Room in UES - NYC ,1289936,Jhon,Manhattan,East Harlem,40.78728,-73.94579,Private room,95,4,150,2019-06-23,1.88,1,192 +810346,"Beautiful Apartment, Great Location",4252490,Luka,Brooklyn,Williamsburg,40.70281,-73.94328,Private room,80,10,15,2017-06-01,0.30,1,0 +810681,City View From Brooklyn– 2Bd+2Bth,2184470,Said,Brooklyn,Clinton Hill,40.69319,-73.96351,Entire home/apt,250,5,2,2017-01-01,0.03,1,0 +811198,Downtown Manhattan Luxury 1 Bedroom,4265697,Justin,Manhattan,Chelsea,40.74117,-73.99517,Entire home/apt,349,3,3,2016-11-13,0.07,1,0 +811238,Warm and Beautiful Harlem Apartment,4266017,Connie & Michael,Manhattan,Harlem,40.80586,-73.94642,Entire home/apt,165,7,8,2016-08-15,0.10,1,234 +811299,Radiant Cobble Hill - 1 bedroom,4231668,Darren,Brooklyn,Boerum Hill,40.68515,-73.99055,Entire home/apt,119,5,42,2017-01-02,0.53,1,0 +811347,West Village 1-BR Gem - Great Price,4255199,Bryan,Manhattan,West Village,40.73713,-74.00232,Entire home/apt,240,7,7,2018-07-24,0.10,1,0 +811450,Private Townhouse Guest Suite,4267089,Jo,Brooklyn,Bedford-Stuyvesant,40.68194,-73.92757,Private room,79,4,1,2015-01-02,0.02,1,359 +812057,DEBBIE'S COZY RETREAT,4065620,Debbie,Brooklyn,Bedford-Stuyvesant,40.68509,-73.93854,Entire home/apt,215,3,1,2013-01-01,0.01,2,300 +812467,"Vintage Chic Haven in Kensington, Brooklyn",574584,Jesse,Brooklyn,Kensington,40.63547,-73.97417,Private room,49,1,61,2019-06-23,0.95,1,100 +812671,CSS (Central/Sunny/Spacious) 1 BR in Park Slope,4271822,Angelina,Brooklyn,Park Slope,40.67138,-73.97772,Entire home/apt,190,3,76,2019-06-13,0.95,1,48 +812938,Shabby Chic Modern Chelsea Studio,4272748,Jason,Manhattan,Chelsea,40.74082,-73.99581,Entire home/apt,99,2,52,2018-04-07,0.65,1,30 +813225,"Quirky, Exposed-Brick Cozy Room Brooklyn Townhouse",149929,Obed,Brooklyn,Fort Greene,40.68871,-73.97181,Private room,68,8,37,2019-07-02,0.50,5,280 +813554,Historic Park Slope Gem - 1br,4275254,Valeria,Brooklyn,Park Slope,40.67228,-73.97248,Entire home/apt,185,30,36,2019-05-28,0.58,1,358 +813793,"Large, Private 2-BR Flat in the Lower East Side!",4276374,Peter,Manhattan,Lower East Side,40.71988,-73.98639,Entire home/apt,225,4,92,2019-06-24,1.47,1,67 +814327,room in uper east side manhattan,4279005,Jefry,Manhattan,Upper East Side,40.77171,-73.95042,Private room,81,10,64,2019-05-04,0.93,1,311 +814616,BIG STYLISH SUNNY EAST VILLAGE 1BR,545600,Alta,Manhattan,East Village,40.72699,-73.97894,Entire home/apt,199,5,23,2019-05-24,0.38,1,0 +814911,TASTEFUL DESIGN + SPACE FOREVER,4281123,Albert,Brooklyn,Bushwick,40.6916,-73.92294,Private room,55,2,2,2019-05-12,0.03,1,0 +815045,Stylish West VILLAGE Water Views,4281957,Marina,Manhattan,West Village,40.73227,-74.00949,Entire home/apt,340,7,38,2018-01-02,0.54,1,302 +815465,Central Park North Guest House,4284154,Jennifer,Manhattan,Harlem,40.80139,-73.95433,Entire home/apt,135,3,205,2019-06-11,3.19,2,184 +816637,Big apartment with top view! 1 block from subway.,1099716,Alvaro,Queens,Sunnyside,40.74263,-73.92476,Entire home/apt,85,2,108,2019-06-23,1.35,1,0 +816673,Very Cool Entire Apartment | BUSHWICK,4289709,Elise,Brooklyn,Bushwick,40.69764,-73.93084,Entire home/apt,65,7,4,2017-04-01,0.09,1,0 +816888,Whole Manhattan Apartment,2805766,Tristan,Manhattan,Washington Heights,40.85604,-73.93469,Entire home/apt,100,30,13,2018-11-28,0.18,1,219 +817113,large spaciousbrownstone house,1141935,Ana,Brooklyn,Crown Heights,40.67309,-73.94799,Private room,109,1,73,2019-06-23,0.92,3,284 +818084,Gorgeous sunny prime SoHo 1BR Apt.,128256,Annie,Manhattan,Greenwich Village,40.72825,-74.00225,Entire home/apt,290,2,70,2019-05-31,0.92,1,339 +818314,Cozy room in beautiful apartment !,4298156,Melina,Manhattan,Harlem,40.82513,-73.94617,Private room,35,7,0,,,1,0 +818325,Pied-à-Terre in Midtown Manhattan,4298167,Shane,Manhattan,Kips Bay,40.7445,-73.97583,Entire home/apt,148,5,29,2019-06-01,0.37,1,188 +818337,Newly Reno Room with Private Bath^,4241953,Celeste,Queens,Flushing,40.75979,-73.81016,Private room,57,2,17,2019-06-22,0.21,4,308 +818451,Lovely studio upper east side !,4298896,Nathalie,Manhattan,Upper East Side,40.76883,-73.95353,Entire home/apt,150,6,23,2018-01-07,0.31,1,0 +818481,MANHATTAN BEAUTIFUL PIANO ROOM,4299040,Ale,Manhattan,Harlem,40.82258,-73.95418,Private room,60,2,67,2019-06-28,0.88,4,117 +818518,MANHATTAN BEAUTIFUL FIRESCAPE ROOM,4299040,Ale,Manhattan,Harlem,40.82238,-73.95534,Private room,60,2,48,2019-06-23,0.61,4,114 +819206,Cute shared studio apartment,4306950,Christopher,Manhattan,East Harlem,40.79106,-73.95058,Shared room,45,2,107,2019-06-24,1.50,1,313 +819228,MANHATTAN CONVENIENT 2 CLOSET ROOM,4299040,Ale,Manhattan,Harlem,40.82173,-73.95548,Private room,60,2,33,2019-05-28,0.46,4,211 +819419,"Entire Private, Spacious 1-BR in Ft. Greene",4303726,Tanjila,Brooklyn,Clinton Hill,40.68443,-73.96337,Entire home/apt,125,3,124,2019-05-27,1.56,1,158 +819893,MANHATTAN CONVENIENT NICE ROOM IN NYC,4299040,Ale,Manhattan,Harlem,40.82233,-73.95568,Private room,60,2,36,2019-05-19,0.54,4,133 +819956,"Home away from home,clean and cozy.",9269794,Jerbean,Brooklyn,Bedford-Stuyvesant,40.68615,-73.93095,Private room,75,2,38,2019-01-02,0.51,1,365 +820218,"Lovely East Village Apartment, Sept. 2 to 5 Only",337159,Thomas,Manhattan,East Village,40.73131,-73.98609,Entire home/apt,121,2,6,2018-09-05,0.09,1,156 +820710,1 large bedroom w/private bath,4310378,Autumn,Brooklyn,Clinton Hill,40.69413,-73.96389,Private room,89,2,89,2019-01-01,1.12,3,318 +820801,"Sunny 2BD, 2 balconies",25632,LeeAnn,Brooklyn,Greenpoint,40.72103,-73.94798,Entire home/apt,300,30,1,2014-09-12,0.02,1,0 +820946,Charm&Quiet in Hip Greenpt Brooklyn,4311270,Annie,Brooklyn,Greenpoint,40.73319,-73.95623,Private room,110,1,4,2017-12-28,0.18,1,0 +820953,Entire Apt Yours! (5 Night Minimum),4105474,Amanda,Brooklyn,Greenpoint,40.72166,-73.94037,Entire home/apt,99,7,10,2019-01-01,0.13,1,81 +821135,Bright Loft One Stop from Soho,4311243,Owen,Brooklyn,Downtown Brooklyn,40.69379,-73.98525,Entire home/apt,170,7,41,2019-01-12,0.55,1,0 +822016,1BR w/private bath in modern Prospect Heights apt,61873,Seema,Brooklyn,Crown Heights,40.67231,-73.96032,Private room,90,2,24,2019-07-03,0.30,1,30 +823520,ON HIGHLINE! Private room & bath,4323625,Arthur,Manhattan,Chelsea,40.75284,-74.00138,Private room,179,2,251,2019-07-03,3.15,1,157 +823618,"Large,sunny private room in Harlem",4324286,Ettice,Manhattan,Harlem,40.81024,-73.94154,Private room,80,4,41,2019-06-20,0.52,2,119 +823631,"Bright, cozy private room in Harlem",4324286,Ettice,Manhattan,Harlem,40.80997,-73.93992,Private room,65,5,29,2019-05-18,0.40,2,186 +823880,"Clean Private Bedroom on Lower East Side,Manhattan",69685,Anja,Manhattan,Lower East Side,40.72125,-73.99272,Private room,69,1,322,2019-07-04,4.46,1,84 +824163,Sunny Convienent Bushwick Room,4317067,Kamollio,Brooklyn,Bushwick,40.69763,-73.93102,Private room,42,1,18,2016-10-03,0.35,1,60 +824421,Central Williamsburg Fab Large Room,4328005,Dina,Brooklyn,Williamsburg,40.71622,-73.96042,Private room,70,1,8,2015-01-07,0.10,1,0 +825193,Park Slope Apartment ,4330726,Jon,Brooklyn,Park Slope,40.67507,-73.97792,Entire home/apt,155,5,22,2019-05-09,0.28,1,189 +825486,1 BEDROOM APARTMENT IN UPPER EAST,4331441,Francesco,Manhattan,Upper East Side,40.76744,-73.96118,Entire home/apt,135,1,225,2019-06-18,2.83,1,19 +825545,Clean cozy room central historic gay best area,872805,Mike,Manhattan,Greenwich Village,40.73336,-73.99836,Private room,120,21,79,2019-07-07,1.04,2,34 +825550,Luxury 1BD in Historic Carrol Gardens Brownstone,4331864,Jeff,Brooklyn,Gowanus,40.67869,-73.99197,Entire home/apt,135,8,7,2019-04-27,0.14,1,0 +826307,"Near Manhatten, NEW Empire Outlets, park!",4192794,Anna,Staten Island,Tompkinsville,40.63132,-74.08799,Private room,47,1,20,2016-11-06,0.26,1,323 +826388,"Spacious & Comfy, Top of Central Pk",359447,Adrian,Manhattan,Harlem,40.80394,-73.9506,Private room,69,4,18,2019-04-25,0.23,1,280 +826603,No Longer Available Brooklyn Brownstone,4079140,Kat,Brooklyn,Crown Heights,40.67828,-73.95646,Private room,100,2,37,2015-11-10,0.52,1,2 +826685,Dreamy Private Room in Super Cool Bedstuy Apt.,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68407,-73.93944,Private room,51,3,36,2019-06-23,3.04,2,32 +826690,"Sunny, Family-Friendly 2 Bedroom",4289240,Lucy,Brooklyn,Prospect Heights,40.67919,-73.97191,Entire home/apt,4000,4,0,,,1,83 +826764,Spacious Sunny Union Sq Room,4336760,Marie,Manhattan,Chelsea,40.73588,-73.99224,Private room,65,180,2,2019-06-02,0.07,1,263 +827719,Experience Brooklyn like a True Brooklynite,611137,Shahar,Brooklyn,Clinton Hill,40.68334,-73.96704,Private room,60,3,126,2019-06-27,3.59,2,120 +828130,Brooklyn Apt next to Prospect Park,4210082,Monica,Brooklyn,Prospect-Lefferts Gardens,40.66229,-73.96296,Private room,70,1,84,2016-10-08,1.06,1,188 +828553,Location AND Space in the city!!,3882661,Ms,Manhattan,Gramercy,40.7349,-73.98549,Entire home/apt,130,3,26,2019-06-23,0.41,2,23 +828685,Cute Room in Artist/Designers' Flat,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94698,Private room,70,1,37,2019-06-10,0.48,3,325 +828796,Large 2BR Apt in Brownstone,4344588,Gabe And Jane,Brooklyn,Clinton Hill,40.68673,-73.96252,Entire home/apt,200,2,267,2019-06-19,3.37,1,266 +829083,"Steps From Art, Shopping & Eats",4345735,Jennifer,Brooklyn,Prospect Heights,40.67378,-73.96471,Entire home/apt,150,3,11,2014-12-26,0.14,1,0 +829935,Charming Backyard Apt in Townhouse,4348003,Bob,Manhattan,Washington Heights,40.83783,-73.93832,Entire home/apt,130,5,47,2019-06-12,0.59,1,9 +830840,Private Bedroom in a Studio,4350748,Anna,Brooklyn,Midwood,40.62908,-73.95965,Private room,68,7,1,2012-12-12,0.01,1,87 +830949,DESIGNER LOFT W PRIVATE ROOFTOP & PANORAMIC VIEWS,4352069,Rebecca,Manhattan,East Village,40.72632,-73.97907,Private room,79,1,137,2019-06-20,1.98,2,298 +831911,Entire apt close to Lincoln Center ,4355788,Ef,Manhattan,Upper West Side,40.77627,-73.98365,Entire home/apt,149,10,9,2017-06-09,0.19,1,0 +832157,Seeking tenant for January 2013,4356301,Coire,Brooklyn,Bushwick,40.70738,-73.92213,Private room,120,1,0,,,1,0 +832596,Spacious 1 BR Near the Water UES,1723222,Nick,Manhattan,Upper East Side,40.77613,-73.94872,Entire home/apt,250,4,1,2016-05-24,0.03,1,0 +832772,NO PLACE LIKE YOUR NYC HOME! UPPER WEST SIDE 1BDRM,4358812,Scott,Manhattan,Upper West Side,40.77837,-73.97964,Entire home/apt,175,7,23,2019-03-02,0.29,1,0 +833519,Large Bedroom for 2 brickwall,4112404,Vero,Manhattan,Washington Heights,40.85123,-73.93223,Private room,40,15,4,2019-01-01,0.05,3,353 +834088,Charming Private room in Greenpoint,4363775,O.,Brooklyn,Greenpoint,40.73184,-73.95802,Private room,55,11,11,2018-08-31,0.23,3,11 +834190,Manhattan Lux Loft.Like.Love.Lots.Look !,2369681,Carol,Manhattan,Lower East Side,40.71921,-73.99116,Private room,99,2,540,2019-07-06,6.95,1,179 +834968,3br w/ Private Roof Steps to Subway,1896642,Jay,Brooklyn,Williamsburg,40.71699,-73.95817,Entire home/apt,500,5,0,,,1,0 +836578,Airy+Sunny 1bdrm- Steps to HighLine,1268505,Jh,Manhattan,Chelsea,40.74372,-74.00021,Entire home/apt,240,7,26,2019-05-13,0.37,1,330 +836720,Brand New Bay House ,4372934,Manuel Alberto,Queens,College Point,40.78417,-73.83875,Entire home/apt,400,2,47,2019-06-11,0.61,1,361 +837256,"UES APT- NEAR CENTRAL PARK, MUSEUMS",2862643,Nia,Manhattan,Upper East Side,40.77389,-73.951,Entire home/apt,280,2,0,,,1,0 +837282,Spacious Loft in heart of Tribeca,4375496,Jared,Manhattan,Tribeca,40.71969,-74.00876,Entire home/apt,235,3,5,2015-10-04,0.08,1,177 +837430,Ground Floor Studio With Backyard,252365,Eileen,Manhattan,East Village,40.7225,-73.98267,Entire home/apt,130,5,4,2015-01-03,0.05,1,0 +837503,❤️Feel@HOME Brooklyn Clinton Hill ❤️,265525,Casey,Brooklyn,Bedford-Stuyvesant,40.69165,-73.95456,Entire home/apt,96,5,224,2019-06-21,2.82,1,77 +837958,Very cozy room with a tv.!,4378763,Antonio,Queens,Long Island City,40.7529,-73.92985,Private room,63,2,26,2014-07-13,0.33,3,249 +838070,Brooklyn Apt: 1 Bedroom w/Garden,240048,Katherine / François,Brooklyn,Sunset Park,40.66059,-73.99361,Entire home/apt,150,10,8,2018-06-23,0.17,2,176 +838586,***HOT SPOT*** 2 blocks to L/G Trains *** Modern,326150,Ronny,Brooklyn,Williamsburg,40.71733,-73.9531,Entire home/apt,200,2,11,2019-04-27,0.23,1,0 +838974,comfy artsy cottage garden studio,4255319,Laura,Brooklyn,Prospect Heights,40.67922,-73.96907,Entire home/apt,90,7,6,2018-01-03,0.08,1,0 +839058,Midtown Lux Manhattan by 5th Ave,4383196,David,Manhattan,Midtown,40.76188,-73.97193,Entire home/apt,269,5,15,2017-01-03,0.22,1,0 +839539,"Awesome, Unique EAST VILLAGE LOFT!!",3200135,Matt,Manhattan,East Village,40.72876,-73.98413,Private room,80,7,0,,,1,31 +840103,"Charming, huge BR, nr Prospect Park",164534,Holly,Brooklyn,Prospect Heights,40.68062,-73.97042,Private room,80,2,24,2015-08-31,0.33,1,0 +840594,Huge beautiful one bed West Village,4389865,Fiona,Manhattan,West Village,40.73126,-74.00502,Entire home/apt,400,7,7,2018-10-13,0.10,1,365 +840667,Amazing Greenwich Village w pool,4390058,Jeffrey,Manhattan,Greenwich Village,40.73075,-73.99265,Entire home/apt,349,3,17,2016-11-26,0.21,1,356 +840731,Historic East Village Townhouse,4390639,Joanna,Manhattan,East Village,40.73345,-73.98956,Entire home/apt,495,2,66,2019-07-01,0.93,1,334 +840794,Big one bedroom located in Brooklyn,4390881,Todd,Brooklyn,Prospect Heights,40.6763,-73.96528,Entire home/apt,85,14,13,2019-01-26,0.17,1,22 +841075,Spacious and Clean Brooklyn Flat,4392420,John,Brooklyn,Bushwick,40.70366,-73.9269,Entire home/apt,85,15,22,2016-10-22,0.28,1,0 +841211,Spacious Centrally Located Apt!!!,3665164,Joseph,Manhattan,Chelsea,40.7466,-73.99219,Private room,999,10,30,2016-10-12,0.40,1,365 +841292,BIG room in fun loft – heart of NYC,4393626,Aaron,Manhattan,Chelsea,40.74712,-73.99514,Private room,109,3,26,2019-05-27,0.36,2,18 +841484,cozy charming apt - Lower East Side,2682735,Andrew,Manhattan,Lower East Side,40.71892,-73.98627,Entire home/apt,175,3,50,2019-06-30,0.63,1,1 +842167,1 BDR in Heart of Lower East side,2257960,Melanie,Manhattan,Chinatown,40.71593,-73.99031,Entire home/apt,150,4,14,2019-05-28,0.31,1,18 +842176,Cozy Room in Williamsburg Loft Apt,3330412,Pierre & Amira,Brooklyn,Williamsburg,40.71541,-73.94464,Private room,80,4,80,2017-10-18,1.08,1,245 +842494,Charming Studio Near Central Park!,148545,Lisa,Manhattan,Upper West Side,40.77886,-73.98444,Entire home/apt,150,7,1,2013-11-09,0.01,1,0 +842973,Great 1 bedroom- awesome location,4401275,Ashley,Manhattan,Hell's Kitchen,40.76194,-73.99346,Entire home/apt,175,1,33,2016-03-30,0.44,1,0 +843003,Modern Two-Bedroom Balcony Apartment,864735,Jason,Queens,Astoria,40.75665,-73.92015,Entire home/apt,107,30,15,2019-04-30,0.19,8,268 +843036,Beautiful apt uptown Manhattan,4401623,Roman,Manhattan,Washington Heights,40.84714,-73.94172,Entire home/apt,80,60,22,2019-04-17,0.28,1,226 +843491,Clean 1 bedroom with private bath :),4241953,Celeste,Queens,Flushing,40.76074,-73.80969,Private room,80,3,8,2019-01-04,0.17,4,342 +843499,Large sunny room 10 min to Midtown!,350553,Stav,Manhattan,Harlem,40.8129,-73.95213,Private room,75,1,4,2015-01-02,0.06,2,0 +843524,A Little Palace in Brooklyn for Shoots and Events,673406,Alex & Britta,Brooklyn,Bushwick,40.70234,-73.92424,Entire home/apt,800,1,34,2019-07-01,0.45,1,365 +844319,"XL 90m2 2BR Victorian area,sleeps 7",683027,Camille,Brooklyn,Flatbush,40.62961,-73.9572,Entire home/apt,130,1,219,2019-06-13,2.91,1,237 +845362,Perfect 750 SF W. Village 1 Bedroom,4413463,Carolyn,Manhattan,West Village,40.73574,-74.00056,Entire home/apt,250,7,0,,,1,0 +845417,LOVELY LOFT | 24H DOORMAN | PERFECT,3891436,Felix,Manhattan,Lower East Side,40.71312,-73.99033,Entire home/apt,260,6,23,2019-05-20,0.30,1,0 +845517,Queen-sized Room Avail in Huge 2 bdrm/2bth loft.,4414425,Ian,Brooklyn,Clinton Hill,40.69691,-73.96713,Private room,36,1,8,2019-05-26,0.10,1,83 +846190,Modern condo close to Prospect park,3159197,Lewis,Brooklyn,Prospect-Lefferts Gardens,40.66251,-73.95374,Entire home/apt,140,2,11,2019-06-27,0.18,1,35 +846275,"BEST LOWER EAST SIDE APT, SLEEPS 4 COMFORTABLY.",1732005,Ren,Manhattan,Lower East Side,40.72003,-73.98693,Entire home/apt,145,2,220,2019-06-21,2.97,1,268 +846457,Beatiful Studio in williamsburg,945407,Clara,Brooklyn,Williamsburg,40.7141,-73.96477,Entire home/apt,120,3,8,2017-09-25,0.13,1,0 +846470,"COZY SUNNY ROOM, BLOCK 4RM TRAIN :)",430188,Pam,Brooklyn,Williamsburg,40.70694,-73.95307,Private room,75,18,5,2019-05-11,0.06,6,112 +846549,New York City Dream Apartment,4420306,Luis Alejandro,Brooklyn,Bedford-Stuyvesant,40.68941,-73.95247,Private room,60,2,2,2015-08-02,0.04,1,0 +846799,Strawberry B&B,4421935,Maddy,Brooklyn,Bushwick,40.7077,-73.92212,Private room,69,30,51,2017-05-24,0.67,1,7 +846829,Private room in the lower east side,395609,Jb,Manhattan,Lower East Side,40.71275,-73.98682,Private room,95,1,7,2015-08-15,0.12,1,0 +846854,Large Garden Duplex on Park block,4422368,Dirk,Manhattan,Upper West Side,40.78689,-73.97314,Entire home/apt,300,30,93,2019-06-08,1.24,1,284 +846871,"Cozy 1 BR near Central Park, AMNH, The MET & More",3179895,Dee,Manhattan,Upper West Side,40.78429,-73.97815,Private room,131,2,220,2019-06-23,2.85,1,1 +847591,Brooklyn Apartment,4425467,Oded,Brooklyn,Bushwick,40.7016,-73.91868,Entire home/apt,120,5,6,2015-09-27,0.10,1,0 +848087,Great light-filled 1BR in Brooklyn,3526444,Luca,Brooklyn,Bedford-Stuyvesant,40.68196,-73.95168,Entire home/apt,100,5,15,2019-06-04,0.25,1,94 +848170,Gorgeous 1BR near Prospect Park,4428278,Rohit,Brooklyn,Kensington,40.64651,-73.97662,Entire home/apt,100,4,20,2017-09-10,0.26,1,0 +848174,1BR East Village Apt - Entire Apt.,1468667,Darragh,Manhattan,East Village,40.73031,-73.98426,Entire home/apt,190,1,0,,,1,0 +848220,LUXURY APT w PRIVATE GARDEN NYC UES,4425694,Gregory,Manhattan,Upper East Side,40.76714,-73.95922,Entire home/apt,160,1,187,2019-05-24,2.36,1,221 +848707,"Bright Room in Queens, Shared bath%",4241953,Celeste,Queens,Flushing,40.76,-73.81117,Private room,60,2,17,2018-10-07,0.22,4,314 +848718,Spacious & Comfy by Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.6593,-73.95686,Private room,75,3,46,2019-06-06,0.82,3,311 +848722,Lovely BR In The ❤ Of Flushing! Free Metro Card,4241953,Celeste,Queens,Flushing,40.76014,-73.81146,Private room,45,2,39,2019-06-07,0.52,4,292 +848853,Upper Manhattan//Harlem Classic,4432173,Stella,Manhattan,Harlem,40.80712,-73.95316,Private room,65,2,15,2018-05-16,0.20,1,361 +849409,Spacious garden appartment brooklyn,4434798,Bernard,Brooklyn,Prospect Heights,40.68099,-73.97446,Entire home/apt,120,5,145,2019-07-01,1.82,1,0 +849567,Your own large 1BR apt in Manhattan,52394,Geraldine,Manhattan,Inwood,40.86585,-73.92693,Entire home/apt,80,4,16,2018-05-11,0.20,1,0 +849603,Spacious Crown Heights Apartment,4435623,Ayana,Brooklyn,Crown Heights,40.67525,-73.9486,Entire home/apt,100,7,52,2019-06-15,0.67,1,56 +849703,"Convenient, Renovated 2 Bedroom",145609,Ceci,Brooklyn,Carroll Gardens,40.67771,-73.99428,Entire home/apt,250,2,82,2016-02-29,1.08,1,0 +850097,Beautiful 1BD in the West Village,4438960,Taleah,Manhattan,West Village,40.73118,-74.0029,Entire home/apt,235,2,97,2019-04-10,1.47,1,40 +850148,1 ROOM IN AMAZING ARTIST NYC LOFT,2843998,Julie,Brooklyn,Williamsburg,40.7106,-73.96532,Private room,85,2,35,2019-05-04,0.55,2,365 +850198,"UES 1 br, 2 blocks from the Met ",4439578,Zs,Manhattan,Upper East Side,40.77815,-73.95902,Entire home/apt,195,31,8,2013-06-28,0.10,1,273 +850338,Authentic Luxury Designed Loft,4440548,Thomas,Brooklyn,Williamsburg,40.71427,-73.94671,Entire home/apt,145,3,166,2019-06-20,2.15,2,151 +850435,Sunny Loft in Brooklyn next to Bedford L,4441020,Tara,Brooklyn,Williamsburg,40.71731,-73.95627,Entire home/apt,55,30,0,,,1,159 +850517,3 Bedroom Duplex/ 2 Baths and 2 LR,254846,Brendan,Brooklyn,Bushwick,40.68646,-73.91313,Entire home/apt,289,3,38,2019-05-20,0.51,4,354 +850712,Cute Studio Greenwich Village NYC,4442608,Mario,Manhattan,Greenwich Village,40.73132,-73.99979,Entire home/apt,120,30,17,2019-06-30,0.27,1,231 +850943,ARTIST TRENDY NYC LOFT,2843998,Julie,Brooklyn,Williamsburg,40.71171,-73.96694,Entire home/apt,149,5,26,2019-04-22,0.41,2,14 +851130,Nice Furnished Short Term in NY,4444170,Tiziana,Manhattan,Washington Heights,40.84764,-73.93875,Shared room,100,1,31,2018-10-08,0.40,1,364 +851772,CHIC 1 BEDROOM IN MANHATTAN (UES),4445677,Ari,Manhattan,Upper East Side,40.7704,-73.95024,Entire home/apt,166,1,15,2014-09-06,0.19,1,188 +851784,Designer's spacious Manhattan apt.,4446767,Ks & Eli,Manhattan,Washington Heights,40.85016,-73.93178,Entire home/apt,99,3,106,2019-07-04,1.43,1,331 +852118,Spacious 3 Bedroom Prospect Brooklyn near subway,3259274,Hannah,Brooklyn,Crown Heights,40.67434,-73.95728,Entire home/apt,150,2,37,2019-05-19,0.58,2,230 +852632,Gowanis Urban Oasis,4451246,Raymond,Brooklyn,Gowanus,40.66893,-73.99404,Shared room,44,2,155,2019-07-01,2.11,1,325 +852949,INCREDIBLY LOCATED GREENWICH/WEST VILLAGE APT.!,4453107,Sandi,Manhattan,Greenwich Village,40.72977,-74.00164,Entire home/apt,195,2,12,2019-05-15,0.18,1,90 +853900,Immaculate brand new one bedroom ,4459052,Dominique,Queens,Astoria,40.76488,-73.9297,Entire home/apt,95,30,0,,,1,0 +854033,1 BR in large full floor apartment,4092307,Eddie,Manhattan,Civic Center,40.7123,-73.99946,Private room,100,4,8,2019-04-21,0.11,2,7 +854253,Great Lrg Apt next to Park/Subway,4461145,Cristian,Brooklyn,Flatbush,40.6489,-73.96872,Entire home/apt,60,5,3,2019-04-30,0.06,1,189 +854521,"Room, Central Location, Priv. Entry",4463092,Samuel,Manhattan,Harlem,40.80925,-73.95541,Private room,62,2,45,2019-07-04,0.64,2,310 +855206,Bedroom with Private Bath and Roof,4467554,Sunny,Manhattan,East Village,40.72957,-73.98406,Private room,99,5,8,2015-11-05,0.14,1,0 +855462,1BR in Charming Downtown Apt,4469832,Stefan,Manhattan,Lower East Side,40.72034,-73.98585,Private room,90,15,25,2018-10-10,0.46,1,35 +855549,"Have the 1st floor of a two floor duplex,",213020,Robert,Manhattan,Upper West Side,40.79279,-73.97131,Private room,88,1,100,2019-07-05,1.41,3,98 +855919,Lovely Apt. in the heart of Harlem,4473860,Marina,Manhattan,Harlem,40.80845,-73.94435,Entire home/apt,125,1,64,2019-07-01,1.37,1,135 +856304,"Clean,spacious,comfy Brooklyn room",524575,Alicia,Brooklyn,Flatbush,40.6483,-73.9644,Private room,74,1,8,2015-10-19,0.10,1,283 +856440,YOUR OWN PLACE WITH VIEWS OF CENTRAL PARK,627898,Peter,Manhattan,Hell's Kitchen,40.76616,-73.98411,Entire home/apt,176,7,33,2019-05-02,0.42,1,0 +856918,Large Room in Garden Duplex ,4481005,Karen,Brooklyn,Park Slope,40.67422,-73.98097,Private room,62,2,11,2018-10-29,0.14,2,158 +857696,PRIVATE LARGE-MODERN-CLEAN master bedroom,2559004,Sergio,Manhattan,East Harlem,40.80215,-73.93889,Private room,51,1,4,2019-06-26,0.10,5,0 +857810,Heart of Williamsubrg 1 Bedroom,4487224,Tara,Brooklyn,Williamsburg,40.71373,-73.94958,Entire home/apt,249,3,31,2015-09-27,0.40,1,365 +858223,Entire flat west village,4431107,Ally,Manhattan,Chelsea,40.73818,-73.9977,Entire home/apt,200,2,82,2019-06-08,2.02,3,157 +858695,Very Large Private Room on quiet st,4494343,Douglas,Bronx,Mount Eden,40.84058,-73.91382,Private room,30,2,291,2019-06-20,3.69,1,208 +859023,Charming Artist's Home in Brooklyn,1536441,Erica,Brooklyn,Gowanus,40.66958,-73.98998,Entire home/apt,240,2,22,2018-10-27,0.29,1,280 +859596,Quiet room w/ 2 beds +light near subway+ museums,4500999,Aaron,Manhattan,East Harlem,40.79541,-73.94465,Private room,100,1,58,2019-07-02,0.83,2,316 +860163,Manhattan Studio Apartment: 2 Adults $125,4504962,Judith,Manhattan,East Harlem,40.78844,-73.94951,Entire home/apt,125,2,71,2019-07-02,0.90,1,199 +860401,Lovely 2 Bed Garden Apt Fort Greene,1603942,James,Brooklyn,Fort Greene,40.68681,-73.97675,Entire home/apt,149,29,86,2018-09-01,1.10,2,125 +860827,carriage house apartment,4524130,Claire,Brooklyn,Clinton Hill,40.68707,-73.96571,Entire home/apt,170,1,315,2019-06-22,4.03,1,275 +862890,Private bedroom w/ king size bed + pvt bathroom,4224309,Rachel...You Can Call Me Kaya :),Manhattan,Washington Heights,40.85081,-73.93118,Private room,150,2,3,2019-05-31,0.15,1,365 +864790,PEACEFUL SHARE BY CENTRAL PARK,4538664,Nicole,Manhattan,Upper West Side,40.77366,-73.98574,Private room,125,4,77,2019-05-25,0.99,1,326 +864981,Cozy Room in Charming Brownstone,1650330,Chandle,Brooklyn,Sunset Park,40.64902,-74.00897,Private room,68,5,43,2019-05-26,0.56,2,282 +865355,Spacious and Comfortable Room!,4543792,George,Manhattan,Harlem,40.82719,-73.94484,Private room,90,7,35,2019-04-30,0.48,1,312 +866890,Budget/diamond in heart of Harlem,4555996,Ben,Manhattan,Harlem,40.82316,-73.94129,Private room,65,3,68,2019-07-05,0.88,2,361 +867020,Nice quiet room on a backyard,4363775,O.,Brooklyn,Greenpoint,40.73404,-73.95737,Private room,50,31,10,2018-07-20,0.25,3,193 +867721,Comfortable Modern Room in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68344,-73.92189,Private room,65,3,132,2019-06-30,1.68,3,35 +867749,Sunny 2 bedroom in Prospect heights + terrace,745186,Chiara,Brooklyn,Crown Heights,40.67813,-73.96355,Entire home/apt,200,30,1,2015-07-19,0.02,1,283 +867769,Full Bedroom in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92973,Private room,65,3,116,2019-05-21,1.47,3,73 +868548,Friendly & fun w/ private terrace,4372160,Seth,Brooklyn,Williamsburg,40.70933,-73.94141,Private room,58,10,7,2018-05-02,0.10,1,0 +869522,Private room/Upper Manhattan,4581489,Nick,Manhattan,Harlem,40.82579,-73.94907,Private room,65,2,2,2015-12-08,0.05,1,0 +870119,Beautiful 2bdrm Bklyn duplex w/deck + backyard,355548,Jessica,Brooklyn,Clinton Hill,40.69208,-73.96525,Entire home/apt,185,4,8,2018-08-27,0.22,1,8 +871076,"LARGE 2 BR w/Dining Room, Balcony, Echo",4590460,Clare,Brooklyn,Bensonhurst,40.6101,-73.99591,Entire home/apt,115,4,6,2017-12-06,0.08,1,0 +872035,furnished bedroom 1150$ a month ,4599027,Amal,Manhattan,East Harlem,40.8032,-73.94004,Private room,100,30,0,,,2,365 +872210,Quiet 1BR Heart of the East Village,4600589,Carter,Manhattan,East Village,40.732,-73.98759,Private room,200,1,0,,,1,0 +873465,Cute & Comfortable One Bedroom,3588693,Maria,Brooklyn,Flatbush,40.65307,-73.95781,Entire home/apt,115,2,20,2019-05-19,0.25,1,282 +873701,"Chic, quiet 1BR with patio (steps from the subway)",699759,Becky,Brooklyn,Crown Heights,40.67121,-73.95534,Entire home/apt,140,4,125,2019-06-11,1.60,1,239 +874683,Spacious Bushwick Duplex Apartment,4617159,Alvin,Brooklyn,Bushwick,40.68777,-73.91601,Private room,62,2,22,2019-06-30,0.37,1,87 +874706,Fully Updated Modern 1 Bedroom Apartment,4616773,Joan,Brooklyn,Kensington,40.64534,-73.97189,Entire home/apt,95,3,154,2019-07-01,2.00,1,310 +875111,1-bedroom apt in Clinton Hill,2908554,Michael,Brooklyn,Bedford-Stuyvesant,40.68586,-73.95875,Entire home/apt,100,3,7,2019-01-27,0.11,1,0 +875567,Cozy West Village Studio Apartment,4622733,Marise,Manhattan,West Village,40.73746,-74.00686,Entire home/apt,113,3,71,2019-06-09,0.95,1,343 +876355,Large 1BR Columbia University,3994331,Vivian,Manhattan,Morningside Heights,40.81368,-73.95942,Entire home/apt,108,30,5,2019-01-19,0.07,1,230 +876565,Spacious Comfy Bedroom in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68598,-73.92677,Private room,62,3,112,2019-06-30,1.43,3,59 +877135,Williamsburg 1br APT,4628887,Hoonju / Co Host: Jose,Brooklyn,Williamsburg,40.71518,-73.94571,Entire home/apt,95,3,36,2019-06-16,0.95,1,89 +878142,Serene 1BR+Garden+Goldfish Pond+Cook's Kitchen,2597159,Alana,Brooklyn,Williamsburg,40.71335,-73.9496,Entire home/apt,200,4,4,2018-10-25,0.42,2,0 +880256,Beautiful Trendy 2br Harlem Apt.,4655169,Rochelle,Manhattan,Harlem,40.82764,-73.93842,Entire home/apt,165,2,21,2019-01-02,0.30,1,347 +880424,★Beautiful Home Away From Home★,3549531,Jeremy,Brooklyn,Prospect-Lefferts Gardens,40.65514,-73.95956,Private room,60,1,109,2019-06-04,1.52,1,2 +882209,Gorgeous Williamsburg Apartment,3673451,Nikki,Brooklyn,Williamsburg,40.70502,-73.95262,Private room,80,2,37,2019-05-04,0.56,2,89 +882258,Beautiful Studio on Prospect Park!,4233288,Jake,Brooklyn,Prospect-Lefferts Gardens,40.66033,-73.96212,Entire home/apt,100,6,78,2018-12-28,1.07,1,0 +882559,Private bedroom&bathroom in the heart of Manhattan,4670155,Idan,Manhattan,Hell's Kitchen,40.76113,-73.98918,Private room,110,3,213,2019-06-24,2.79,1,281 +883209,World Travelers to Couchcrash in BK,4158086,Vivian,Brooklyn,Bedford-Stuyvesant,40.69132,-73.94205,Shared room,50,3,15,2017-09-16,0.20,1,365 +883306,1 Bedroom in Clinton Hill Share,4310378,Autumn,Brooklyn,Clinton Hill,40.69494,-73.96372,Private room,79,2,102,2019-06-17,1.41,3,361 +883423,Clean and charming apartment in Carroll Gardens,4313683,Antoinette,Brooklyn,Carroll Gardens,40.67996,-74.00101,Entire home/apt,140,3,93,2019-05-04,1.24,1,65 +883517,3 Bedroom Upper West Side Gem,4677362,Julie,Manhattan,Upper West Side,40.78615,-73.98137,Entire home/apt,339,4,28,2019-07-06,0.37,1,167 +886808,"Free Metrocard*, Safe & Affordable",4701443,Christina,Queens,Flushing,40.75088,-73.81029,Private room,55,1,116,2019-06-14,1.51,2,298 +886833,"Private Suite, Free Metrocard*",4701443,Christina,Queens,Flushing,40.7525,-73.81126,Entire home/apt,81,1,313,2019-07-05,4.09,2,263 +887129,Comfortable and Large Duplex with Private Terrace,3490818,Jon,Brooklyn,Williamsburg,40.71437,-73.96054,Entire home/apt,191,3,156,2019-06-30,2.08,1,21 +887292,2 Bedroom Bushwick Apartment,4704914,Robert,Brooklyn,Bushwick,40.69982,-73.91957,Entire home/apt,139,3,106,2019-05-08,1.42,1,248 +887355,2 bedrooms 5-star building midtown ,4705358,D,Manhattan,Murray Hill,40.74791,-73.97334,Entire home/apt,500,5,1,2015-03-25,0.02,1,281 +888583,Gorgeous Greenpoint Railroad,4282125,Caroline,Brooklyn,Greenpoint,40.734,-73.95474,Entire home/apt,120,2,27,2019-01-01,0.35,1,280 +888905,"Sunny bedroom, next to subway and Central Park",4714927,Elisa,Manhattan,East Harlem,40.78933,-73.94932,Private room,60,2,53,2019-06-19,0.86,4,0 +890794,Cozy- bedroom in Jackson Heights!,4731046,Luis,Queens,Jackson Heights,40.75374,-73.8924,Private room,70,2,0,,,1,188 +890839,"Spacious, duplex townhouse w large garden oasis",831185,Andrew,Brooklyn,Crown Heights,40.68015,-73.96299,Entire home/apt,295,2,8,2019-05-28,0.11,3,365 +890855,Sun-Drenched Studio in Clinton Hill,128920,Magera,Brooklyn,Clinton Hill,40.68252,-73.96664,Entire home/apt,100,6,10,2017-07-03,0.13,1,0 +891117,Private Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82264,-73.94041,Private room,49,1,594,2019-06-15,7.57,3,339 +892463,Ideal Location + Shower In Kitchen!,1758019,Wil,Manhattan,West Village,40.73084,-74.00431,Entire home/apt,150,3,9,2015-03-30,0.12,1,0 +892704,Enjoy Brownstone Brooklyn!,4746193,Richelle & Neil,Brooklyn,Bedford-Stuyvesant,40.68485,-73.93684,Entire home/apt,120,2,163,2019-07-05,2.12,1,161 +893413,Architecturally Stunning Former Synagogue!,4751930,Martin,Manhattan,East Village,40.72668,-73.98179,Entire home/apt,2500,30,15,2019-07-01,0.26,1,89 +893853,Best Location btwn Un Sq/ Chelsea,1208402,Kristen,Manhattan,Flatiron District,40.74207,-73.99094,Entire home/apt,175,25,49,2016-10-17,0.63,1,188 +894015,Boldera: Your Home Away From Home,4622027,Damon And Kent,Brooklyn,Bedford-Stuyvesant,40.68194,-73.92896,Entire home/apt,107,2,147,2019-06-22,1.89,1,27 +894063,"Penthouse patio,city view,BIG bed",1803302,Lacey,Brooklyn,Williamsburg,40.71216,-73.96326,Private room,98,3,78,2019-05-27,1.01,1,268 +894093,"Cozy room,only 2 blocks from subway,10min to City!",4644172,Sheena,Queens,Astoria,40.7686,-73.9201,Private room,47,1,71,2018-09-04,1.05,1,0 +895368,Large 2 bedroom apt in Manhattan,4770121,Somaya,Manhattan,Harlem,40.82434,-73.93957,Entire home/apt,100,180,0,,,4,365 +895386,NYC-THE BEST: Stay in Comfy Apt Manhattan-Harlem!,2265770,Jeanine,Manhattan,Harlem,40.80706,-73.95403,Entire home/apt,170,5,86,2019-06-21,1.13,3,29 +898669,Hip Modern West Village Apartment,4782600,Brian,Manhattan,West Village,40.73276,-74.00074,Entire home/apt,150,3,90,2019-03-24,1.17,1,184 +898861,"Private One Bedroom Suite, 45 min from City",3546135,Jeanette & Henry,Queens,Briarwood,40.71156,-73.8091,Entire home/apt,63,3,104,2019-06-19,1.35,1,256 +900383,Brooklyn-Bedstuy-Studio,4808242,Selam,Brooklyn,Bedford-Stuyvesant,40.68145,-73.95178,Shared room,110,3,28,2019-04-11,0.36,1,34 +900503,Stylish 1897 garden duplex oasis!,4634013,Brandi,Brooklyn,Clinton Hill,40.68753,-73.96002,Entire home/apt,275,3,0,,,1,0 +903906,charming house on family block,4837614,Christine & Philip,Brooklyn,South Slope,40.66485,-73.98838,Entire home/apt,329,4,2,2016-08-18,0.05,1,0 +903947,Beautiful Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82124,-73.93838,Private room,49,1,597,2019-06-23,7.72,3,342 +903972,Great Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82085,-73.94025,Private room,49,1,607,2019-06-21,7.75,3,293 +904060,Beautiful Modern apt in Brooklyn,4834187,Howard,Brooklyn,Clinton Hill,40.68496,-73.96111,Entire home/apt,165,4,37,2018-09-30,0.47,1,343 +905425,PAINTERS PARADISE / GREENPOINT,4843750,Painter,Brooklyn,Greenpoint,40.73425,-73.95506,Entire home/apt,160,5,152,2019-06-19,2.10,1,281 +905947,CHIC ROOM IN BROOKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64388,-73.95279,Private room,38,3,66,2019-06-10,0.93,3,283 +906038,Central Pk West-Convenient 1 BR,4848828,Joy,Manhattan,Upper West Side,40.79626,-73.96145,Entire home/apt,170,7,28,2019-05-22,0.37,1,333 +906058,Columbia area room pvt bath & entry,4765670,Irene,Manhattan,Morningside Heights,40.80776,-73.9654,Private room,105,2,233,2019-06-23,3.01,1,294 +907966,1 rm @ 3BR artist loft williamsburg,4864306,Joseph,Brooklyn,Greenpoint,40.72676,-73.95529,Private room,50,2,30,2019-07-02,0.42,3,249 +908046,1150$furnished room with a balcony,4599027,Amal,Manhattan,East Harlem,40.801,-73.94009,Private room,100,30,0,,,2,365 +908923,Charming East Village Studio,4872812,Toby,Manhattan,East Village,40.72784,-73.98486,Entire home/apt,100,3,2,2017-08-02,0.06,1,0 +909859,"charming luxurious house, NY, Brooklyn",3343848,Laurence,Brooklyn,Park Slope,40.6734,-73.97657,Entire home/apt,890,3,26,2018-11-27,0.34,1,341 +910976,Gorgeous PermaGO HOMES™ - FiDi - Room 2/2,4887492,Gershwyn,Manhattan,Financial District,40.71078,-74.00995,Private room,160,3,24,2018-02-12,0.31,2,352 +911092,Avenue A Apartment,4888892,Darina,Manhattan,East Village,40.723,-73.97861,Entire home/apt,145,2,157,2019-06-23,2.03,1,221 +912376,Room in cool Bushwick loft!,4103952,Maria,Brooklyn,Bedford-Stuyvesant,40.69901,-73.93967,Private room,51,3,4,2019-01-03,0.06,1,188 +915020,Garden Apartment in Park Slope,181756,Roslyn,Brooklyn,South Slope,40.66414,-73.98457,Entire home/apt,150,3,136,2019-07-07,1.80,1,301 +916311,Rooms in Spacious East Village Apt.,511175,Luis,Manhattan,East Village,40.72361,-73.97877,Private room,180,3,5,2017-02-19,0.08,2,31 +917058,Charming Greenwich Village studio,4924435,Darla,Manhattan,Greenwich Village,40.73356,-73.99876,Entire home/apt,225,1,3,2019-01-01,0.04,1,188 +918049,Union Sq European Serene apt,4929807,Liz,Manhattan,Chelsea,40.73949,-73.99483,Entire home/apt,250,3,48,2019-06-23,0.66,1,217 +918239,Cozy bedroom in Artist Loft,4930847,Rachel,Brooklyn,Williamsburg,40.70159,-73.94346,Private room,56,1,103,2019-06-10,1.60,1,65 +918426,IDEAL AREA!Reviews! LARGE btfl room,4932354,Mitty,Brooklyn,Prospect Heights,40.67852,-73.97008,Private room,70,7,73,2019-06-16,0.94,4,212 +919491,Park Slope LARGEST (private) SHARE IN PARK SLOPE,4938247,Kevin,Brooklyn,Park Slope,40.67665,-73.97925,Private room,70,2,163,2019-06-18,2.13,1,163 +919830,1br in a 2br apartment in Chelsea (23/7),1895793,Eduardo,Manhattan,Chelsea,40.74605,-73.99906,Private room,125,2,153,2019-06-28,2.17,1,161 +919978,2bdrm + Patio/BackYard/Time Square/1st Floor,2230103,Time Square,Manhattan,Hell's Kitchen,40.7642,-73.98677,Entire home/apt,399,2,287,2019-06-10,3.69,1,284 +919990,2 Bedroom Apt in Caroll Gardens,4629954,Sarah,Brooklyn,Carroll Gardens,40.67573,-73.99878,Entire home/apt,157,6,1,2017-01-03,0.03,1,24 +920930,Backyard BBQ in Brooklyn Brownstone,4950369,Meryl,Brooklyn,Bedford-Stuyvesant,40.68863,-73.94294,Entire home/apt,145,7,28,2018-08-27,0.39,1,188 +921441,Artsy Bedroom/Office in WaHi,4954283,Michelle,Manhattan,Washington Heights,40.84408,-73.93675,Private room,75,1,120,2019-06-21,1.89,1,90 +921585,Cosmopolitan Brownstone Sanctuary,4955205,Stelian & Deanna,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93648,Entire home/apt,280,3,68,2019-06-24,0.89,1,280 +921624,Rare Spacious Quiet Prime Williamsburg Duplex Loft,4955560,Emmanuel,Brooklyn,Williamsburg,40.71579,-73.9588,Entire home/apt,220,4,22,2019-02-23,0.30,1,8 +921862,Breathtaking view of New York city,4957149,George,Manhattan,Upper West Side,40.7886,-73.97553,Entire home/apt,190,28,28,2019-05-31,0.41,1,283 +923566,Sunlit Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78775,-73.98152,Entire home/apt,200,6,22,2019-01-04,0.28,2,354 +923979,"Private Studio Near JFK, LGA & Subway Not A Bsmnt",4970027,Tzvi,Queens,Briarwood,40.70715,-73.81468,Entire home/apt,77,1,78,2019-07-05,1.02,1,168 +924600,"Sunny, private room in Brooklyn!",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68713,-73.93659,Private room,35,5,69,2019-06-15,0.91,3,244 +924658,"Bright, airy room share in Brooklyn",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.687,-73.93446,Shared room,30,5,91,2019-06-01,1.18,3,248 +924719,Beautiful East Village Apartment,552453,Christian,Manhattan,East Village,40.72615,-73.98781,Entire home/apt,199,29,12,2017-08-22,0.17,1,31 +925075,Sunny Loft Style Apt-Great Location,4938485,Paul & Elena,Manhattan,Hell's Kitchen,40.75893,-73.99014,Entire home/apt,140,3,25,2015-01-03,0.33,1,157 +925137,Cute Manhattan Chelsea Apartment,3458692,Karla,Manhattan,Chelsea,40.74435,-74.00038,Entire home/apt,124,30,4,2016-06-10,0.07,1,42 +925240,Artist Loft - Union Square,4976428,Jonathan,Manhattan,East Village,40.73194,-73.98939,Entire home/apt,295,7,92,2019-06-24,1.23,1,316 +925730,Large studio all to yourself,4980428,L,Manhattan,Chinatown,40.7189,-73.99654,Entire home/apt,160,7,13,2019-06-10,0.17,1,335 +926337,Charm w/amazing city view by PS1,4260529,Harry,Queens,Long Island City,40.74641,-73.94611,Private room,349,1,30,2016-10-16,0.39,2,365 +927408,"Large Cozy Room #1, Landmark Home 1 block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68618,-73.96603,Private room,98,2,38,2019-02-16,0.50,6,158 +927597,(2) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75444,-73.83057,Private room,76,1,75,2017-01-01,1.00,2,0 +927987,Bright Doorman One Bedroom on Upper East Side,755172,Meg,Manhattan,Upper East Side,40.77543,-73.95499,Entire home/apt,230,3,20,2019-06-10,0.26,1,282 +929032,Dumbo | Spacious private room w/ private bathroom,2420592,Lucas,Brooklyn,Vinegar Hill,40.70163,-73.98208,Private room,60,3,13,2019-06-18,0.66,1,0 +931352,Lovely Private Room in Bushwick! :),4156449,Cassia,Brooklyn,Bushwick,40.69958,-73.92006,Private room,40,5,0,,,1,0 +931642,Murray Hill Garden Apt. MANHATTAN,4976872,Min,Manhattan,Murray Hill,40.74848,-73.97884,Private room,118,30,116,2019-06-23,1.93,1,228 +932277,Fabulous Industrial Dumbo Loft,2902266,Kate,Brooklyn,DUMBO,40.70434,-73.98989,Private room,125,20,35,2015-01-05,0.45,1,311 +933129,Fort Greene Jewel,5072123,Sandra,Brooklyn,Fort Greene,40.69097,-73.97972,Entire home/apt,195,29,55,2019-05-31,0.72,2,233 +933861,Hell's Kitchen Hideaway - Private Entrance,5025046,Nick & Jim,Manhattan,Hell's Kitchen,40.763,-73.98911,Private room,85,2,100,2019-06-24,1.31,1,63 +936218,Clean-Furnished Room Near The Apollo (W 125th St.),5052897,Anthony,Manhattan,Harlem,40.81378,-73.95353,Private room,55,14,17,2019-06-30,0.23,1,41 +937678,Bushwick Loft,5062254,Michael,Brooklyn,Bushwick,40.70627,-73.92223,Entire home/apt,155,2,20,2019-07-01,0.26,1,0 +938022,Private Bedroom in Williamsburg,1866827,Gregory,Brooklyn,Williamsburg,40.7078,-73.94827,Private room,99,1,94,2019-06-16,1.22,1,358 +939657,Behind the Red Door II ,5076827,Diane And Craig,Manhattan,Harlem,40.81071,-73.94493,Entire home/apt,140,30,81,2019-05-31,1.05,2,194 +939724,Stylish Room-Artist/Designers' Flat,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.6943,-73.94538,Private room,85,1,32,2019-05-19,0.43,3,340 +940115,Cozy Studio in the Heart of Crown Heights,5067409,Ni,Brooklyn,Crown Heights,40.67555,-73.95254,Entire home/apt,75,7,15,2019-06-29,0.23,1,178 +940116,Bright Room in Historic Brownstone,1650330,Chandle,Brooklyn,Sunset Park,40.64942,-74.00749,Private room,53,5,39,2019-04-28,0.52,2,282 +941179,Clean & Cozy Brooklyn 1 BR Gem - Great location!,4085497,Michael,Brooklyn,Crown Heights,40.67296,-73.9501,Entire home/apt,150,2,42,2019-05-20,0.72,1,365 +941642,HELL'S KITCHEN STUDIO for 2 or 3,4888599,Rod,Manhattan,Hell's Kitchen,40.76662,-73.99302,Entire home/apt,179,3,209,2019-06-11,2.70,1,202 +944040,Entire 1.5 Br Apt- Crown Heights - Franklin Ave,896918,Rusty,Brooklyn,Crown Heights,40.67607,-73.95408,Entire home/apt,135,1,67,2019-06-23,0.87,1,348 +944049,Beautiful 1BR in Prime West Village,1908073,Andrew,Manhattan,West Village,40.73194,-74.00189,Entire home/apt,200,4,45,2019-07-01,0.59,1,48 +944183,your holiday-ready Harlem home away from home!,3361696,Lindsay,Manhattan,Harlem,40.81177,-73.95139,Entire home/apt,200,3,1,2018-01-02,0.05,1,0 +944755,STUDIO APT 1. IN PROSPECT LEFFERTS GARDENS,3270460,William M.,Brooklyn,Prospect-Lefferts Gardens,40.65908,-73.96125,Entire home/apt,100,5,117,2019-05-18,1.61,2,73 +944840,Dumbo Loft With A Beautiful View,5110818,Kevin,Brooklyn,DUMBO,40.70447,-73.98754,Entire home/apt,134,14,14,2019-01-29,0.18,1,0 +945297,East Village Gay Friendly Dbl Room,5074654,Seth,Manhattan,East Village,40.72836,-73.98163,Private room,100,1,414,2019-06-22,5.39,2,231 +947810,Seeking Short Term Roommate on UES,5138312,Georgina,Manhattan,Upper East Side,40.77464,-73.95695,Private room,50,20,11,2019-06-03,0.16,1,269 +947963,Sunny WILLIAMSBURG Room near SUBWAY,3229099,Brian,Brooklyn,Williamsburg,40.71684,-73.9441,Private room,50,40,16,2019-06-09,0.21,1,324 +949713,Luxury Duplex Loft w. Private Roof & Amazing Views,1295416,Tal,Brooklyn,Gowanus,40.6745,-73.99582,Entire home/apt,400,30,30,2019-06-01,0.39,1,67 +951365,Bushwick/Ridgewood aprtmt w parking,2675998,Alice,Queens,Ridgewood,40.7099,-73.91509,Entire home/apt,115,2,74,2019-05-19,0.96,2,314 +951944,Quiet Studio in Prime SoHo,1408973,Dom,Manhattan,SoHo,40.72493,-74.00307,Entire home/apt,235,3,73,2019-07-05,0.94,1,44 +953275,Apartment For Your Holidays in NYC!,4460034,Alain,Manhattan,East Harlem,40.79531,-73.9333,Entire home/apt,125,7,50,2018-05-06,0.66,1,188 +953951,West Village Large 1BR,4797813,Nicole,Manhattan,West Village,40.73377,-74.00259,Entire home/apt,250,2,56,2019-07-01,0.73,1,134 +955153,Elegant loft in heart of soho,5165749,Ben,Manhattan,SoHo,40.72256,-73.99767,Entire home/apt,650,5,7,2014-06-27,0.09,2,90 +955542,*Sunny Master BD* in Garden Duplex,4932354,Mitty,Brooklyn,Prospect Heights,40.67942,-73.97078,Private room,97,7,13,2018-11-01,0.17,4,204 +956412,Charming Bright 2BR apt- sleeps 6,588270,Dikla,Brooklyn,DUMBO,40.70424,-73.98597,Entire home/apt,189,2,236,2019-06-21,3.08,2,279 +957002,Cozy PRIVATE Studio Apartment UWS and Jazz Tour.,5202854,Sabrina,Manhattan,Upper West Side,40.7982,-73.96394,Entire home/apt,100,1,129,2019-06-21,1.76,1,281 +957642,Large bedroom/Heart of Brooklyn,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.66167,-73.95098,Private room,49,5,114,2019-06-09,1.49,3,323 +958444,Great 1BD waterfront City Island NY,5214644,Noelva,Bronx,City Island,40.85235,-73.78873,Entire home/apt,84,3,67,2018-06-10,0.91,1,0 +959349,Modern New Duplex with Private Yard,1797637,Daniel,Brooklyn,Williamsburg,40.71765,-73.93999,Entire home/apt,165,7,5,2016-01-03,0.09,1,0 +959478,"Chic, Cozy LES 1BR. Weekly clean included!",4191076,Michelle,Manhattan,Chinatown,40.71687,-73.99046,Entire home/apt,87,59,51,2019-02-01,0.66,1,0 +959871,Bask in the light! Studio bedroom in Williamsburg,1822729,Derek,Brooklyn,Williamsburg,40.71081,-73.96121,Private room,120,6,15,2019-01-01,0.21,2,9 +959948,Designer Triplex Loft Soho/Greenwich Village,1229358,Lauren,Manhattan,SoHo,40.72538,-74.00375,Entire home/apt,195,10,10,2018-06-26,0.13,1,270 +960210,Brooklyn Fashionista 1Bdr Loft,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.69437,-73.94519,Private room,89,1,21,2018-10-14,0.30,3,365 +962045,"Private Room & Coffee, only 3 blocks to Train",5239845,Deanna,Brooklyn,Bushwick,40.69288,-73.90374,Private room,62,2,324,2019-06-28,4.30,1,267 +964379,WATER VIEWS 3 BED HOME W/ PARKING,555739,Rosana,Brooklyn,Bay Ridge,40.63463,-74.03621,Entire home/apt,130,28,14,2019-02-28,0.69,2,340 +966104,Private room in large 2 bed room,5268970,Javier,Manhattan,East Village,40.72726,-73.97573,Private room,75,3,51,2018-11-25,0.70,1,127 +968848,"Cozy private room in 2 Bedroom, BK",5289072,Mark,Brooklyn,Prospect Heights,40.67501,-73.96651,Private room,64,2,35,2019-02-03,0.46,1,329 +969463,Artsy Fashion Pad in the Heart of Williamsburg,1447988,Patrick And Erin,Brooklyn,Williamsburg,40.71916,-73.95696,Entire home/apt,150,2,11,2018-10-15,0.14,1,364 +971158,Sunny room with private bathroom,5286584,Liya,Manhattan,Harlem,40.80667,-73.95562,Private room,100,2,53,2019-06-23,0.70,1,350 +971247,Sunny Artist Live/Work Apartment,5308961,Larry,Manhattan,Upper West Side,40.79368,-73.96487,Entire home/apt,190,3,159,2019-07-03,2.09,1,244 +972426,"BIG, COMFY, PRIV. room, Big apt, yard, Will-B dplx",216191,M,Brooklyn,Williamsburg,40.71149,-73.94504,Private room,98,2,7,2018-12-21,0.09,4,273 +973128,Pretty One Bed in Brooklyn Heights,434473,Patricia,Brooklyn,Brooklyn Heights,40.69224,-73.99638,Entire home/apt,150,30,48,2016-11-11,0.63,1,0 +973535,"Garden Apt, 5 mins from LaGuardia",3179866,Gonzalo And Nora,Queens,East Elmhurst,40.76356,-73.8885,Entire home/apt,99,3,158,2019-07-02,2.08,2,322 +973653,A true Sanctuary in Harlem NYC,4770121,Somaya,Manhattan,Harlem,40.82421,-73.93996,Entire home/apt,100,185,0,,,4,358 +975229,Prime East Village location w/backyard garden!,5333736,Timothy,Manhattan,East Village,40.73055,-73.98875,Entire home/apt,159,4,65,2019-06-16,0.85,1,1 +975250,Bushwick Duplex 2,3709510,Deacon,Brooklyn,Bushwick,40.69282,-73.92477,Private room,70,1,18,2019-05-13,0.32,3,146 +975965,Great Room in Lively East Village,2267153,John,Manhattan,East Village,40.72792,-73.98507,Private room,91,5,395,2019-06-21,5.16,2,1 +975990,Brooklyn Heights Brownstone - Private Bdrm Avail.,5339881,Gerard,Brooklyn,Brooklyn Heights,40.69293,-73.99679,Entire home/apt,325,1,11,2018-12-09,0.19,1,363 +976167,Newly Furnished Beautiful & Quiet,5341060,Simo,Brooklyn,Fort Hamilton,40.61806,-74.03195,Entire home/apt,149,4,33,2018-01-07,0.46,1,313 +976242,Cozy East Village Haven,854208,Anna,Manhattan,East Village,40.7282,-73.98893,Entire home/apt,200,10,35,2019-01-02,0.46,1,51 +977870,Upper West Side Pied A Terre /NYC,5350359,Matthew,Manhattan,Upper West Side,40.80014,-73.9637,Entire home/apt,169,2,61,2019-06-23,0.80,1,59 +978062,West Village 1 BR Apartment,5186189,Betsy,Manhattan,West Village,40.73359,-74.00524,Entire home/apt,249,3,10,2019-01-01,0.30,1,5 +978386,"A GEM Garden Apt on Broadway & 42ST QUEENS, NY",5354308,Yiota,Queens,Astoria,40.75751,-73.91678,Entire home/apt,85,2,260,2019-07-03,3.44,1,254 +978615,NICE ROOM IN ASTORIA NEAR MANHATTAN,5369117,Rosa,Queens,Astoria,40.76291,-73.91871,Private room,81,2,183,2019-06-15,2.45,2,326 +980098,Quiet ST MARK'S PLACE ARTIST'S GEM,5364702,Lynn,Manhattan,East Village,40.72658,-73.98907,Entire home/apt,199,2,54,2019-07-02,0.72,1,322 +980561,"Beautiful, private, uptown studio",15742,Alix,Manhattan,Harlem,40.82892,-73.94745,Entire home/apt,88,3,37,2018-09-08,0.48,1,47 +981410,Sunny Studio in the West Village,5374768,Maria,Manhattan,West Village,40.73331,-74.00471,Entire home/apt,170,4,1,2013-04-09,0.01,1,273 +981494,Large and sunny one BR (600 sq.ft),5207582,Olivia,Manhattan,Morningside Heights,40.81062,-73.96015,Entire home/apt,100,1,0,,,1,0 +982038,Entire 1bdrm cnr of Fort Greene- off Park,5378922,Eileen,Brooklyn,Fort Greene,40.68859,-73.9729,Entire home/apt,130,9,3,2018-09-25,0.04,1,329 +983625,Great Studio in the heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80421,-73.94302,Entire home/apt,135,30,190,2019-06-04,2.63,4,253 +984721,QUIET GARDEN APT FACING NY BAY!,555739,Rosana,Brooklyn,Bay Ridge,40.63508,-74.03628,Entire home/apt,65,30,25,2018-12-22,0.36,2,188 +985338,"Monthly rental of guest room,limited kitchen use",1417489,Lorna,Brooklyn,Brooklyn Heights,40.70162,-73.99465,Entire home/apt,100,180,0,,,1,365 +986727,Manhattan's Best Deal!,5414067,Adrianne,Manhattan,East Harlem,40.80626,-73.94009,Entire home/apt,165,3,281,2019-06-21,3.68,2,177 +987329,ROOM NEAR TIMES SQUARE MANHATTAN,5369117,Rosa,Queens,Astoria,40.76491,-73.9207,Private room,78,4,70,2019-06-12,1.64,2,348 +987616,5 Bdrm Historic Brownstone Triplex,4018660,Emily,Brooklyn,Cobble Hill,40.68556,-73.99779,Entire home/apt,350,5,12,2016-08-20,0.17,1,0 +989976,Three Bedroom NY Private Apartment,5435208,Rose,Queens,Flushing,40.74142,-73.8202,Entire home/apt,160,3,96,2019-06-22,1.29,1,298 +990130,Spacious 3br Apartment in Brooklyn,5435713,Nikolai,Brooklyn,Prospect Heights,40.67682,-73.96586,Entire home/apt,225,5,6,2016-08-26,0.08,1,188 +990367,Colorful Manhattan - Harlem Apartment,5438325,Lauri,Manhattan,Harlem,40.80684,-73.94844,Entire home/apt,170,5,25,2019-06-01,0.34,1,177 +990529,Sunny Luxury Bedroom Guest Bathroom,5440087,Dn,Manhattan,Midtown,40.75136,-73.97076,Private room,349,3,3,2014-09-24,0.04,2,87 +992508,"Next to Subway, Private bedroom",4714927,Elisa,Manhattan,East Harlem,40.79218,-73.95076,Private room,65,2,57,2019-06-26,0.78,4,251 +992598,"Village Life, 2-Bedroom, East Village",2203885,Sascha,Manhattan,East Village,40.72399,-73.98134,Private room,420,3,182,2019-05-29,2.39,1,301 +992891,Sunny Nolita 1 Bedroom Apartment,458021,Brian,Manhattan,Nolita,40.72131,-73.99487,Entire home/apt,119,3,17,2018-06-11,0.22,1,0 +992977,Park Slope Pre-War Apartment,4000059,Shahdiya,Brooklyn,Park Slope,40.67359,-73.97434,Entire home/apt,100,365,1,2013-08-01,0.01,1,365 +993040,YOUR HARLEM HOME AWAY FROM HOME!!! ,5454862,Barbara,Manhattan,Harlem,40.8278,-73.94891,Entire home/apt,97,3,185,2019-06-14,2.46,1,6 +993514,Luxury Furnished 1 BR UWS Apt w W/D & Deck,15145088,Izi,Manhattan,Upper West Side,40.78729,-73.97439,Entire home/apt,191,30,8,2019-06-03,0.11,8,346 +993575,1 BR Large Luxury Furnished Apartment UWS,15145088,Izi,Manhattan,Upper West Side,40.7852,-73.9746,Entire home/apt,187,30,13,2019-06-15,0.20,8,346 +993576,Luxury Furnished 1 BR Apartment UWS,15145088,Izi,Manhattan,Upper West Side,40.78558,-73.97251,Entire home/apt,172,30,4,2018-03-31,0.08,8,346 +995169,West Village Gem - Amazing Location,5466191,Ricky,Manhattan,West Village,40.73464,-74.00225,Entire home/apt,950,3,28,2019-07-03,1.52,1,357 +995187,"BIG & SUNNY, 1 STOP FROM MANHATTAN",2829145,Charlotta,Brooklyn,Fort Greene,40.69248,-73.96983,Entire home/apt,275,4,81,2019-05-21,1.07,2,310 +995215,Upper West Side Amazing Large 2 Bedrooms,3038687,Karen,Manhattan,Upper West Side,40.78954,-73.97222,Entire home/apt,99,30,1,2014-10-05,0.02,8,113 +995367,1BR Apt as featured in New York Mag,412783,Nick,Manhattan,Greenwich Village,40.73506,-73.99728,Entire home/apt,334,11,14,2018-05-29,0.24,1,238 +995469,Beautiful Large Furnished Bedroom on UES,5468901,Sanya,Manhattan,Upper East Side,40.76896,-73.95898,Private room,60,7,1,2015-12-22,0.02,1,0 +997404,Charming Apt. In Brooklyn Townhouse,5480570,Darnell And Allison,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92638,Entire home/apt,145,3,200,2019-07-04,2.62,1,303 +998423,Great space minutes from Manhattan!,2765234,Casey,Queens,Astoria,40.7603,-73.91395,Private room,75,4,19,2019-04-25,0.52,1,10 +998887,Sunny studio apt in heart of SoHo,227908,Mischa,Manhattan,SoHo,40.72602,-74.00318,Entire home/apt,130,20,33,2019-06-02,0.43,1,11 +999248,TriBeCa 2500 Sq Ft w/ Priv Elevator,273174,Jon,Manhattan,Tribeca,40.71927,-74.00453,Entire home/apt,575,1,447,2019-07-01,5.89,3,207 +999977,Cozy studio apartment on upperwest,5497326,Jennifer,Manhattan,Upper West Side,40.77896,-73.97849,Entire home/apt,295,7,2,2017-08-19,0.03,2,0 +999984,Greenwich Village Townhouse Apt,5468033,Linda,Manhattan,West Village,40.73303,-74.00237,Entire home/apt,300,3,108,2019-07-01,1.44,1,318 +1000788,Modern Lux 1 br near 2/3/4/5 Trains,4797532,Priscilla,Brooklyn,Crown Heights,40.67319,-73.95987,Entire home/apt,120,28,1,2015-10-29,0.02,2,280 +1001147,Big Room with Bath in Bushwick! ,3363720,Kate,Brooklyn,Bushwick,40.68923,-73.91946,Private room,50,3,92,2019-06-19,1.22,3,171 +1001447,Comfy twin bed/Cosy apartment/East Harlem / Subway,214794,Pete & Marcos,Manhattan,East Harlem,40.79307,-73.95138,Shared room,56,2,117,2019-06-24,1.53,1,303 +1002469,Comfortable Apt near Bloomingdales,5512719,Ellen,Manhattan,Upper East Side,40.76249,-73.96054,Entire home/apt,191,2,66,2019-05-28,0.94,1,347 +1003530,New York City - Upper West Side Apt,454250,Greta,Manhattan,Upper West Side,40.79962,-73.96523,Private room,135,7,70,2018-08-12,0.93,1,44 +1003754,Chic Park Slope Pied-à-terre,5520355,Finola,Brooklyn,South Slope,40.66162,-73.97994,Entire home/apt,195,7,98,2019-06-26,1.39,1,94 +1005416,South Harlem Gem! 113th St & 8th Ave,5529633,Michael,Manhattan,Harlem,40.80132,-73.95568,Shared room,75,1,43,2019-06-02,0.61,1,9 +1005763,★Private Room Overlooking the Park★,450050,Yakov & Cynthia,Manhattan,Harlem,40.81309,-73.95267,Private room,99,10,45,2015-08-05,0.60,1,83 +1009883,"Modern, Carroll Garden Townhouse",329436,Jana,Brooklyn,Carroll Gardens,40.68204,-73.99249,Entire home/apt,350,3,41,2019-05-27,0.59,2,22 +1009973,Brooklyn Wildlife Loft Mckibbin st,5556571,Chris,Brooklyn,Williamsburg,40.70607,-73.935,Entire home/apt,40,15,10,2013-11-09,0.13,3,365 +1010785,Astoria awesome balcony apartment PARKING AVAILABL,3898812,Ahmed,Queens,Astoria,40.76295,-73.92652,Entire home/apt,130,1,58,2019-07-06,0.77,1,301 +1011449,Spacious and EASY access to all!,5563508,Nate,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.9601,Entire home/apt,225,2,48,2019-05-05,0.64,1,339 +1013648,Gorgeous 2 Fl Apt in1887 Brownstone,5018907,Vera,Brooklyn,Park Slope,40.67541,-73.9784,Entire home/apt,225,7,8,2015-08-29,0.11,1,342 +1016004,Clean and Cute Shared Room in Very Safe Area,5577926,Lou,Queens,Astoria,40.76777,-73.91109,Shared room,38,1,127,2019-06-23,1.67,4,55 +1016105,BK - Spacious & Sunny 4 bedroom apartment,5591685,Paul,Brooklyn,Clinton Hill,40.68924,-73.9681,Entire home/apt,200,7,10,2018-08-19,0.17,1,11 +1016352,Midtown West Modern & Sunny-near Central Park,5593208,Tj,Manhattan,Hell's Kitchen,40.76777,-73.98932,Entire home/apt,550,1,0,,,1,365 +1016819,2BR 2Bath duplex w garden & terrace,5596242,Sabrina And Eduardo,Brooklyn,Clinton Hill,40.68771,-73.96186,Entire home/apt,235,6,5,2018-07-03,0.07,1,3 +1018181,Master Bedroom Ideal for 2 - Luxury for 1 !,4937803,Alicia,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95875,Private room,75,5,8,2014-05-27,0.11,1,365 +1018529,Large 2 BDRM @ McCarren Park!!,5606448,Pete,Brooklyn,Greenpoint,40.72031,-73.9483,Entire home/apt,249,30,71,2019-05-31,0.94,1,273 +1019360,Hip charming Williamsburg apartment,693889,Heather,Brooklyn,Williamsburg,40.70798,-73.94263,Entire home/apt,120,5,7,2016-10-26,0.10,1,0 +1021005,Cute Bedroom in Clinton Hill,5619749,Jen,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95493,Private room,50,28,1,2017-01-03,0.03,2,343 +1021491,Whole Apt: Artsy home by BK Museum,5622682,Sabrina,Brooklyn,Crown Heights,40.66974,-73.958,Entire home/apt,85,3,10,2019-04-27,0.85,1,149 +1021957,PRIVATE QUIET SUITE,315606,Cynthia,Brooklyn,Crown Heights,40.67515,-73.95435,Private room,78,3,10,2017-08-26,0.14,2,95 +1022204,"Glowing reviews, hip neighborhood",3483960,Keith,Manhattan,Lower East Side,40.72198,-73.98932,Private room,110,3,49,2018-09-05,0.69,1,0 +1023181,"LOCATION/garden!(FEMALE only, next to girl's room)",4932354,Mitty,Brooklyn,Prospect Heights,40.6787,-73.97065,Private room,50,3,138,2019-06-22,1.82,4,315 +1023529,Convenient and private,5634395,Sarah,Manhattan,Harlem,40.82153,-73.95512,Private room,52,3,163,2019-06-05,2.17,2,0 +1024113,"Lovely room in East Williamsburg, NY",2120889,Megan,Brooklyn,Williamsburg,40.71238,-73.9379,Private room,63,2,0,,,1,66 +1024135,Beautiful UES Studio with Backyard for Sublet,261530,Melissa,Manhattan,Upper East Side,40.77421,-73.9528,Entire home/apt,105,45,20,2017-01-03,0.26,1,109 +1025001,Private Entrance Charming Bedroom,5641042,Livia,Queens,Glendale,40.70538,-73.89448,Private room,75,2,132,2019-06-25,1.74,1,333 +1025786,Fantastic 1br in Astoria/LIC,5647813,Atlanta,Queens,Long Island City,40.74417,-73.94823,Private room,69,7,12,2019-07-05,0.18,1,365 +1025847,Modern 1BR East Village Apt w/patio,62316,Sam,Manhattan,East Village,40.72538,-73.98351,Entire home/apt,165,60,11,2015-10-15,0.15,1,311 +1026565,Peaceful Park Slope near subways,825252,Meredith,Brooklyn,Park Slope,40.67651,-73.98007,Entire home/apt,125,2,45,2017-06-19,0.66,1,0 +1026683,Mi Casa Tu Casa Guesthouse Mexico ,5652395,Julio,Bronx,Concourse,40.81906,-73.92806,Private room,85,2,11,2018-09-02,0.18,2,363 +1027808,East Village Loft - 1300 sq/ft home - 2 Bedrooms!,5655889,East Village Loft,Manhattan,East Village,40.72351,-73.98283,Entire home/apt,499,5,47,2019-06-08,0.63,1,341 +1028263,Spacious Room/Great Location,5658953,Claudia,Manhattan,East Village,40.72944,-73.98645,Private room,60,5,66,2019-06-26,0.87,1,232 +1029482,Private Room w TV in East Village,5664550,Kelly,Manhattan,East Village,40.72346,-73.97907,Private room,95,5,35,2019-06-10,0.46,1,320 +1029808,Spacious 1bd Near Trendy Neighborhoods And City,5293735,Hayley,Brooklyn,Bedford-Stuyvesant,40.69872,-73.94635,Entire home/apt,105,5,12,2019-05-30,1.01,1,0 +1030254,Large room in Beautiful communal house,1949282,Kyla,Brooklyn,Bushwick,40.69449,-73.91156,Private room,55,2,65,2019-06-05,0.86,5,235 +1030392,"BIG, COMFY, 4BR DUPLEX, GARDEN APT, Williamsburg",216191,M,Brooklyn,Williamsburg,40.71132,-73.94493,Entire home/apt,289,2,39,2019-06-05,0.58,4,88 +1030780,NYC Brooklyn Sunset Park- Great Bed. Great House.,1113080,Audrey,Brooklyn,Sunset Park,40.64871,-74.00774,Private room,70,2,45,2018-01-01,0.60,3,0 +1032127,Short Term Stay in Chelsea/MP NYC,5679237,Renee,Manhattan,Chelsea,40.74583,-74.00363,Entire home/apt,275,7,0,,,1,188 +1032610,Beautiful loft in trendy Harlem!,5681729,Sandrine,Manhattan,Harlem,40.80938,-73.94196,Entire home/apt,130,7,5,2017-06-03,0.16,1,231 +1032611," Private 1 bdrm Lefferts Gr, BK apt",5682003,Rachael,Brooklyn,Prospect-Lefferts Gardens,40.65743,-73.96155,Entire home/apt,125,2,38,2019-06-10,0.61,1,3 +1034911,"Entire Spaceous, Sunny, Loft in Clinton Hill",5696628,Christine,Brooklyn,Bedford-Stuyvesant,40.68854,-73.95742,Entire home/apt,150,2,17,2019-05-01,0.23,2,23 +1036498,☆☆New Discount☆☆ 10min to Manhattan,3233986,Daniel,Queens,Astoria,40.75537,-73.91648,Private room,46,4,70,2019-05-23,0.93,2,173 +1036734,Apartment in the heart of Upper East Side,5707409,Mary,Manhattan,Upper East Side,40.77054,-73.95497,Entire home/apt,100,3,226,2019-07-01,2.97,1,221 +1037016,Quiet central Williamsburg Loft room,237477,Alexander,Brooklyn,Williamsburg,40.718,-73.96603,Private room,90,5,8,2017-05-31,0.11,1,0 +1039215,Heart of Williamsburg - authentic & central!,4911550,Marc,Brooklyn,Williamsburg,40.72091,-73.96124,Entire home/apt,90,3,166,2018-07-28,2.21,1,104 +1039435,"Lovely studio in Manhattan,New York",5709288,Fabia,Manhattan,Midtown,40.75879,-73.9638,Entire home/apt,220,360,1,2015-01-02,0.02,1,0 +1039983,Tribeca Loft w/ Private Elevator,273174,Jon,Manhattan,Tribeca,40.72008,-74.0043,Entire home/apt,1000,1,25,2019-06-22,0.36,3,37 +1039984,Furnished BrownStone Apartment,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93597,Entire home/apt,130,30,52,2018-01-03,0.72,3,171 +1040156,2 floor Luxury Loft in the best location!,3740730,S,Manhattan,Chelsea,40.74398,-73.99624,Entire home/apt,499,6,127,2019-06-14,1.68,2,303 +1041996,Small room with private bath in New York,964482,Colin,Manhattan,Harlem,40.82943,-73.94728,Private room,45,2,18,2019-06-16,3.05,2,197 +1042416,Sunny Brownstone Attic,5738733,Elizabeth,Brooklyn,Bedford-Stuyvesant,40.69235,-73.93836,Entire home/apt,70,2,210,2019-07-06,2.79,2,288 +1042806,My Other Little Guestroom,2680820,Linda,Queens,Flushing,40.75334,-73.81699,Private room,59,1,281,2019-06-11,3.70,3,322 +1043046,Studio in Best Possible Location!,2335804,Lindsay,Manhattan,Chelsea,40.74112,-74.00177,Entire home/apt,160,5,70,2018-10-26,1.16,1,0 +1044502,HELLO HARLEM,5749899,Obora & Michael,Manhattan,Harlem,40.8035,-73.94764,Entire home/apt,195,4,128,2019-06-22,1.76,1,278 +1044731,Dear Potential Airbnb Guests.,5751206,Nigel,Brooklyn,Flatbush,40.64745,-73.95606,Private room,96,3,58,2019-05-19,0.77,1,364 +1045491,Prime Williamsburg. Brand new,1356046,Daniel,Brooklyn,Williamsburg,40.71454,-73.9507,Private room,75,3,179,2019-06-09,2.39,2,136 +1045897,"HISTORIC WILLIAMSBURG, BKLYN",839679,Brady,Brooklyn,Williamsburg,40.71797,-73.95508,Entire home/apt,195,3,173,2019-06-06,2.34,3,273 +1046443,"Beautiful & spacious apartment in Astoria, Queens",5760970,Chris,Queens,Ditmars Steinway,40.77117,-73.90427,Private room,200,1,16,2019-06-30,0.68,2,364 +1048190,Huge Sunny Loft w Patio + Charm,832244,Elise,Brooklyn,Bedford-Stuyvesant,40.68753,-73.95851,Entire home/apt,139,30,26,2019-05-20,0.38,1,205 +1049224,Beautiful duplex in a brownstone,1740216,Laura,Manhattan,Harlem,40.81241,-73.94371,Entire home/apt,190,30,31,2018-01-04,0.43,2,84 +1051575,Quiet and Comfort Near Columbia University,5245246,Lisa,Manhattan,Harlem,40.80384,-73.95419,Private room,95,2,27,2019-05-26,0.57,1,320 +1053523,Beautiful Ground Level Townhouse Ap,4128399,Jose,Manhattan,Lower East Side,40.71886,-73.98497,Entire home/apt,350,3,7,2017-12-10,0.10,1,364 +1054006,Bohemian East Village Brownstone,92272,Kristin,Manhattan,Gramercy,40.73323,-73.98224,Private room,80,3,7,2016-09-05,0.10,3,217 +1054201,One Bedroom Townhouse Apartment,4165498,L.A.,Manhattan,East Harlem,40.79535,-73.93274,Entire home/apt,120,5,83,2019-06-10,1.11,2,242 +1055029,Washington Heights/Inwood apartment,5810195,Emilie,Manhattan,Inwood,40.85933,-73.92863,Private room,42,1,46,2019-07-07,0.79,2,357 +1056119,Cozy Private Space in Williamsburg Townhome,5817011,Clyde,Brooklyn,Williamsburg,40.70851,-73.949,Entire home/apt,116,4,112,2019-07-02,1.49,1,127 +1056185,Sunny+Cozy Double bedroom in BKLYN!,697442,Chris And Zach,Brooklyn,East Flatbush,40.64851,-73.94667,Private room,60,1,356,2019-07-05,4.72,3,19 +1056256,Beautiful eco triplex w/green roof. Free yoga/spa.,462379,Loretta,Brooklyn,Carroll Gardens,40.67881,-73.99379,Entire home/apt,1395,1,55,2019-06-02,0.73,2,362 +1056445,Upscale Designer Studio-Heart of Manhattan,1600541,Marina,Manhattan,Upper East Side,40.77014,-73.96222,Entire home/apt,425,2,68,2019-06-06,0.91,1,358 +1056804,Spacious Modern & Comfy 2BR in BK Brownstone,2413155,Noreen,Brooklyn,Boerum Hill,40.68554,-73.98924,Entire home/apt,225,4,95,2019-04-14,1.26,1,251 +1057022,Spacious 1br East Village Apartment,5822377,Shunan,Manhattan,East Village,40.7265,-73.99,Entire home/apt,159,5,16,2018-09-27,0.25,2,0 +1059531,Staten Island 1st floor Apartment,7875272,Mary,Staten Island,Port Richmond,40.62922,-74.13354,Entire home/apt,221,30,0,,,3,0 +1059891,"“L l,x w w. XThank &mftkn. .",11837926,Anthony,Manhattan,Midtown,40.76463,-73.98112,Private room,150,7,44,2019-05-31,0.74,3,365 +1060019,"Modern Duplex 1 bdrm , 1.5 Baths + terrace!",5837033,Mark,Manhattan,Upper East Side,40.7744,-73.95578,Entire home/apt,199,1,116,2019-06-17,1.54,1,300 +1061337,Sunny Private BR Crown Hts Brooklyn,1557383,Candace,Brooklyn,Crown Heights,40.67418,-73.94661,Private room,70,1,4,2017-08-01,0.06,1,0 +1063020,Private Brownstone,5851210,Amy,Manhattan,East Harlem,40.79417,-73.94376,Entire home/apt,110,31,235,2019-05-31,3.14,2,84 +1063554,bedroom in big sunny loft (& Roof!),2873394,Aurora,Brooklyn,Bushwick,40.69935,-73.93713,Private room,60,2,10,2019-06-23,0.13,2,18 +1065138,Private room in beautiful neighborhood in Brooklyn,5861233,Nevena,Brooklyn,Crown Heights,40.67046,-73.94835,Private room,50,3,2,2017-05-29,0.08,1,0 +1066769,"Clean Room, Central Location in Manhattan",3327668,Tim,Manhattan,Lower East Side,40.72046,-73.98773,Private room,120,1,360,2019-06-24,4.79,1,240 +1067251,Entire home/apt in New York,5872605,Patrick,Manhattan,East Village,40.7239,-73.97869,Entire home/apt,395,5,0,,,1,0 +1068505,Relaxing and Roomy in Crown Heights,2128778,Rachael,Brooklyn,Crown Heights,40.67414,-73.95667,Private room,60,2,51,2019-06-30,0.68,2,57 +1069266,Stay like a real New Yorker!,5867023,Michael,Manhattan,Midtown,40.75783,-73.96383,Entire home/apt,145,2,146,2019-06-09,1.94,1,148 +1069287,Park Slope 1br by Barclays Center/Prospect Park!,5879729,Stephanie,Brooklyn,Williamsburg,40.71273,-73.94399,Entire home/apt,83,30,16,2017-12-02,0.21,2,26 +1070458,Room in a cozy loft,3968209,Swetha,Manhattan,SoHo,40.72086,-73.99999,Private room,100,3,64,2019-05-06,0.87,2,355 +1071743,Brooklyn Family Friendly Brownstone,5895535,Tara,Brooklyn,Crown Heights,40.67151,-73.94885,Entire home/apt,200,2,3,2017-05-29,0.08,1,0 +1072212,Relaxed in New York,5897760,Eo,Manhattan,Harlem,40.825,-73.94132,Private room,50,3,145,2019-06-09,1.97,1,211 +1072481,Bedroom for two in Chelsea,5479559,Michael,Manhattan,Chelsea,40.74573,-73.99712,Private room,70,1,206,2019-06-19,2.72,1,15 +1073635,Cozy Carroll Gardens Brownstone Apt,4243849,Emma,Brooklyn,Carroll Gardens,40.68304,-73.99819,Entire home/apt,175,2,279,2019-06-22,3.68,1,218 +1073780,Sunny Clinton Hill Apt w/Patio,1149419,Alex,Brooklyn,Crown Heights,40.6803,-73.96059,Entire home/apt,149,28,18,2019-04-29,0.36,1,265 +1073832,Designer Studio Apt in Red Hook,5585945,Orren,Brooklyn,Red Hook,40.67685,-74.00581,Entire home/apt,125,3,162,2019-06-26,2.15,1,300 +1074155,"Big 1st Meal, Kind Host, Ace Space",5909206,Nancy,Manhattan,East Harlem,40.79794,-73.93223,Private room,58,1,323,2019-07-01,4.30,1,284 +1074506,Amazing Queens Oasis Steps to Train,2981156,Kia,Queens,Astoria,40.76359,-73.92531,Entire home/apt,160,2,13,2018-10-14,0.26,2,56 +1076324,2BR Sunny Apt - 15 min from MIDTOWN,3864301,Sen,Queens,Sunnyside,40.74361,-73.91662,Entire home/apt,150,30,9,2016-08-20,0.12,2,365 +1077176,Beautiful Gramercy duplex loft with terrace,5927702,Shayne,Manhattan,Gramercy,40.73807,-73.98187,Entire home/apt,131,30,23,2019-05-18,0.61,2,33 +1077179,Large luxury 1 bedroom loft in Gramercy,5927702,Shayne,Manhattan,Gramercy,40.73775,-73.98324,Entire home/apt,250,30,17,2019-01-31,0.39,2,327 +1077375,Private RM 15min from the Manhattan,5855145,Edward,Queens,Astoria,40.75959,-73.90835,Private room,70,1,136,2019-06-23,1.81,2,359 +1079675,"Clean, Complete and Cool",5938496,Michael,Manhattan,Nolita,40.71972,-73.99438,Entire home/apt,149,5,26,2019-06-01,0.35,1,0 +1080543,Sunny Sunset Park Artist Loft,5943212,Doug,Brooklyn,Sunset Park,40.65475,-74.01211,Entire home/apt,109,2,70,2019-06-24,0.96,1,339 +1080766,Summer Special Price Times Square,5944682,Maja & Pierre,Manhattan,Theater District,40.75964,-73.98534,Private room,185,2,243,2019-06-27,3.22,1,127 +1080816,Cozy apartment in Greenpoint,5944756,Hasan,Brooklyn,Greenpoint,40.72428,-73.94472,Entire home/apt,138,14,6,2018-10-06,0.10,1,356 +1080839,Spacious sunny bedroom - East Village (A),3417321,David,Manhattan,East Village,40.73099,-73.98762,Private room,150,10,36,2018-12-01,0.48,2,0 +1083888,"Verna's Brownstone (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68532,-73.92429,Private room,80,1,14,2019-03-08,0.20,2,283 +1086640,"1 Bedroom Apt Greenpoint, Brooklyn",5972975,Leigh,Brooklyn,Greenpoint,40.72613,-73.93915,Entire home/apt,75,2,2,2014-10-02,0.03,1,0 +1087215,Stunning Designer Loft in the heart of Chelsea,1841580,George,Manhattan,Chelsea,40.74877,-73.9994,Entire home/apt,300,5,44,2019-07-03,0.62,1,87 +1089240,Great Apartment with luxurious bath in NYC/Chelsea,5971251,D. Anthony,Manhattan,Chelsea,40.74197,-73.99702,Private room,176,2,123,2019-06-23,1.63,1,268 +1089542,Private Cozy Bedroom in Brooklyn,663764,Karen,Brooklyn,East Flatbush,40.6536,-73.94883,Private room,47,2,248,2019-05-05,3.27,2,0 +1089619,"Bright, Huge Room in 3 Bedroom Apt.",5986790,Gen,Manhattan,Washington Heights,40.83535,-73.94334,Private room,40,7,26,2019-06-25,0.67,6,272 +1090732,You take living or bedroom!,5993276,Alfred,Queens,Richmond Hill,40.7017,-73.82316,Shared room,60,7,0,,,1,362 +1091582,Two Comfy Rooms in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66326,-73.98805,Private room,89,1,49,2019-06-24,0.66,4,24 +1091840,"Private bedroom in Manhattan, NYC ",4714927,Elisa,Manhattan,East Harlem,40.78859,-73.94715,Private room,75,2,152,2019-05-31,2.03,4,12 +1092760,Private Entrance - Backyard Summer Dining - Enjoy,5887081,Michelle,Brooklyn,Bedford-Stuyvesant,40.69034,-73.95321,Entire home/apt,110,7,195,2019-07-03,2.72,2,284 +1093977,"Sunny Apt in Harlem, New York",6010467,Mary Anne,Manhattan,Harlem,40.81102,-73.94562,Entire home/apt,85,30,23,2017-12-07,0.47,1,0 +1095106,Greenpoint - with your own space!,6016424,Susan,Brooklyn,Greenpoint,40.73026,-73.95596,Private room,72,4,54,2019-06-02,0.72,1,71 +1096326,"Private studio in staten island + +",6024006,Johnny,Staten Island,St. George,40.64699,-74.08151,Entire home/apt,190,2,0,,,1,365 +1096511,Private Room in Large Apt w/ Gorgeous Park View,364499,Ife,Manhattan,Harlem,40.80602,-73.95362,Private room,85,2,233,2019-06-25,3.12,1,72 +1097816,Group-Student-Friendly Bklyn House,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63612,-73.946,Entire home/apt,325,2,19,2018-12-27,0.31,4,328 +1098863,Great Bushwick Studio Apartment,2413714,Wilfredo,Brooklyn,Bushwick,40.69305,-73.90398,Entire home/apt,125,2,116,2019-07-04,1.55,1,365 +1099244,Big UWS 1Bdrm 2 min to Central Park,5604089,Chris,Manhattan,Upper West Side,40.78264,-73.97803,Entire home/apt,200,3,3,2016-10-14,0.06,1,0 +1100421,"Cobble Hill, sunny large 1BR apt",1545977,Lelia,Brooklyn,Cobble Hill,40.68754,-73.99284,Entire home/apt,195,30,38,2019-06-01,0.51,1,345 +1100753,Stunner Garden Apt in Townhouse,6046616,Stephen,Manhattan,Washington Heights,40.83695,-73.94124,Entire home/apt,175,2,0,,,1,280 +1101035,Sunny 1 or 2 BR apt in Boerum Hill,6048514,Judy,Brooklyn,Boerum Hill,40.68779,-73.98517,Entire home/apt,189,4,227,2019-06-17,3.01,1,247 +1101224,THE PUTNAM,2571,Teedo,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93845,Entire home/apt,182,9,27,2019-05-21,0.37,1,23 +1102858,Brownstone Flat on Tree-Lined Block,5908577,Eric,Brooklyn,Crown Heights,40.67271,-73.94551,Entire home/apt,105,1,349,2019-06-30,4.73,2,277 +1102942,"1BR, 1BTH Duplex W/ LRG OUTD SPACE",6057624,Scooter,Manhattan,Kips Bay,40.74268,-73.97853,Entire home/apt,240,1,67,2019-06-15,0.89,1,321 +1102963,The Bushwick 3BR 2BA 20 mins to NYC,3531317,Ingrid,Brooklyn,Bushwick,40.68185,-73.90655,Entire home/apt,185,4,95,2019-06-13,1.33,2,215 +1105845,Convenient Location! 1 BR on 1Floor,3630531,Yuko,Manhattan,Chelsea,40.7457,-73.99775,Entire home/apt,160,4,5,2019-01-01,0.07,1,168 +1106284,Modern Loft Space on Gramercy Park,2757621,James,Manhattan,Gramercy,40.73708,-73.98455,Entire home/apt,250,4,23,2019-06-30,0.31,1,11 +1107092,Brand new 2BD Apt in Gramercy,4373782,Victoria,Manhattan,Kips Bay,40.74052,-73.97907,Entire home/apt,650,30,36,2019-06-29,0.48,1,256 +1107976,Manhattan & Time Square in 30 minutes. Back room.,3158364,Devika,Queens,Sunnyside,40.736,-73.92425,Private room,35,5,59,2019-07-05,1.76,4,250 +1108309,Charming Housebarge w/ outside deck,1018472,Angus,Brooklyn,Sheepshead Bay,40.58408,-73.94122,Entire home/apt,85,4,72,2016-05-28,0.97,2,360 +1109092,Beautiful Park Slope 3bdrm Duplex,6088518,Evelyn,Brooklyn,Park Slope,40.66698,-73.98162,Entire home/apt,550,3,21,2018-11-26,0.30,1,1 +1110195,Chic Brooklyn Apt.- Private Room,6093878,Gee,Brooklyn,Bedford-Stuyvesant,40.68068,-73.9535,Private room,80,2,44,2019-06-29,0.62,1,159 +1110484,"Forget NYC, Stay in Williamsburg! Best 1 BR Apt",1690569,Greg,Brooklyn,Williamsburg,40.71852,-73.95616,Entire home/apt,175,6,32,2019-05-10,0.43,1,291 +1112070,Private Room & Bath in Brooklyn!,350702,Autumn,Brooklyn,Crown Heights,40.66773,-73.96144,Private room,95,2,132,2019-06-30,1.75,1,354 +1112407,Harlem Short Term Stay,6105036,George,Manhattan,Harlem,40.80477,-73.9512,Entire home/apt,158,4,37,2019-06-23,0.49,3,314 +1112484,Beautiful duplex on Bowery,3211592,Loli,Manhattan,Chinatown,40.71744,-73.99718,Private room,85,3,37,2019-07-07,0.58,1,5 +1113125,Huge 1br - tons of light - williamsburg,2733465,David,Manhattan,Nolita,40.72068,-73.99576,Entire home/apt,209,1,23,2018-07-23,0.46,1,365 +1114409,2BR spacious luminous brownstone,265152,Marta,Brooklyn,Fort Greene,40.68545,-73.97572,Entire home/apt,150,2,21,2019-06-02,0.29,3,3 +1114493,Quiet room with desk in 2BR spacious brownstone,265152,Marta,Brooklyn,Fort Greene,40.688,-73.97745,Private room,70,2,55,2019-06-22,0.88,3,13 +1114788,Astoria Heights Gorgeous Guest Bedroom,6118355,William,Queens,Ditmars Steinway,40.77103,-73.89461,Private room,73,1,6,2019-03-31,0.13,1,363 +1115381,Private Room & Balcony in New York,6121678,Kamala,Brooklyn,Park Slope,40.67771,-73.98152,Private room,85,2,1,2015-09-12,0.02,1,0 +1117516,Beautiful new one bedroom apartment,6133754,Trevor,Brooklyn,Bedford-Stuyvesant,40.68798,-73.93903,Entire home/apt,95,3,218,2019-06-19,2.92,1,246 +1117706,"Bright, Bohemian, Spacious Apt in Williamsburg",2843987,Simona,Brooklyn,Williamsburg,40.71353,-73.96216,Entire home/apt,125,2,16,2018-12-19,0.26,1,0 +1118031,Private room in Prime Soho/Nolita location,6136511,Sky,Manhattan,Nolita,40.72212,-73.99676,Private room,89,3,29,2019-07-01,0.41,2,190 +1121448,1 rm @ 3BR loft williamsburg room 2,4864306,Joseph,Brooklyn,Greenpoint,40.72541,-73.9567,Private room,50,2,36,2019-04-24,0.51,3,232 +1121497,Spacious E Williamsburg with Yard!!,496164,Todd,Brooklyn,Williamsburg,40.70974,-73.93962,Private room,75,5,73,2019-06-07,0.99,2,307 +1121502,ART HOUSE VAULT,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68316,-73.93906,Private room,60,1,65,2019-05-24,0.87,4,26 +1123737,"Leelas Bright, Cosy, and furnushed room.",5986790,Gen,Manhattan,Washington Heights,40.83479,-73.94345,Private room,45,5,20,2019-06-23,0.54,6,244 +1123934,Sunny 1BR Apt in N. Williasmburg,6164428,Bjarke And Holly,Brooklyn,Williamsburg,40.72065,-73.959,Entire home/apt,130,14,1,2015-01-09,0.02,1,296 +1123960,Private Rm for 1 in Historic Harlem,6165258,Gita,Manhattan,Harlem,40.80815,-73.94325,Private room,70,28,16,2018-01-01,0.22,3,365 +1124012,FOODIE HAVEN -ENJOY THE REAL NYC :),5848607,Meredith,Manhattan,East Village,40.72778,-73.98305,Private room,125,2,246,2019-06-11,3.30,1,216 +1124329,1 bedroom Apt 1 minute from the subway!,6163192,Izz,Manhattan,Lower East Side,40.71928,-73.98993,Entire home/apt,140,3,126,2019-06-30,1.68,1,228 +1126432,South Slope One-Bedroom with Garden Terrace,5268463,Christy,Brooklyn,Sunset Park,40.66065,-73.98817,Entire home/apt,120,3,13,2018-12-31,0.18,1,201 +1126492,Andy Phillips,6180052,Andrian,Brooklyn,Fort Greene,40.68769,-73.9749,Private room,99,5,4,2017-09-29,0.17,1,250 +1126944,Private Home w/ Parking in Brooklyn,128663,Tina,Brooklyn,Kensington,40.64024,-73.96976,Entire home/apt,300,5,1,2015-01-01,0.02,1,15 +1127040,spacious PARK SLOPE room available ,835112,Leah,Brooklyn,South Slope,40.66842,-73.98659,Private room,40,90,0,,,2,311 +1127140,Manhattan NYC - The Blue Room,6158233,Craig,Manhattan,Harlem,40.82865,-73.94621,Private room,47,3,61,2019-06-15,0.81,1,285 +1128681,Sunny Room in Lower East Side Apt!,302772,Cheryl,Manhattan,Lower East Side,40.71446,-73.98833,Private room,115,3,29,2019-06-29,0.48,2,339 +1129105,Quiet and Cozy Brooklyn Brownstone Apartment,131014,Serge,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94434,Entire home/apt,90,2,4,2018-05-28,0.05,1,0 +1129483,Unique 1BR in energetic E. Village,6196141,Brian,Manhattan,East Village,40.72271,-73.98478,Entire home/apt,199,3,42,2019-06-15,0.63,1,330 +1130138,West Harlem Clean Park 1 Bedroom,1124797,Marianna,Manhattan,Harlem,40.82101,-73.94582,Entire home/apt,110,3,82,2019-06-30,1.09,1,15 +1130680,It's all about Bushwick BROOKLYN,55176,Madison,Brooklyn,Bushwick,40.68767,-73.91261,Entire home/apt,100,3,308,2019-07-05,4.11,1,99 +1130855,Brooklyn: Close-In With Character ,4623093,Matt,Brooklyn,Prospect Heights,40.67673,-73.96399,Private room,90,14,79,2019-05-12,1.09,1,336 +1131422,ART HOUSE BIGGIE SMALL,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68312,-73.94082,Private room,40,1,66,2019-06-17,0.89,4,118 +1131804,Elegant 2BR in Manhattan 15 mins to Midtown,6209044,Timothy,Manhattan,Harlem,40.80745,-73.94279,Entire home/apt,133,14,19,2019-05-02,0.26,1,279 +1132201,Cozy North Park Slope Apartment,712590,Erin,Brooklyn,Prospect Heights,40.68034,-73.97321,Private room,130,2,8,2018-06-24,0.11,1,0 +1132409,Amazing Upper West Side Loft-Studio,3038687,Karen,Manhattan,Upper West Side,40.78898,-73.97589,Entire home/apt,79,30,12,2016-04-01,0.16,8,36 +1132907,1 BDR in Greenwich Village Full APT,3965911,Tim,Manhattan,Greenwich Village,40.72855,-74.00136,Entire home/apt,200,2,26,2017-05-21,0.35,1,188 +1133296,Entire home/apt in Chelsea New York,6216882,Raquel,Manhattan,Chelsea,40.74119,-74.00234,Entire home/apt,175,3,19,2019-06-24,0.25,1,194 +1134365,Private Garden Apt. with outdoor space in Red Hook,6012816,Jeffrey,Brooklyn,Red Hook,40.67659,-74.01551,Entire home/apt,200,1,7,2019-04-21,0.52,1,0 +1136399,Furnished Nolita Studio,6233644,Sri,Manhattan,Nolita,40.72404,-73.99529,Entire home/apt,200,3,0,,,1,0 +1137093,Triplex Penthouse in New York,5446918,Paresh,Brooklyn,Williamsburg,40.71756,-73.94839,Entire home/apt,300,5,34,2019-06-15,0.46,1,365 +1137270,large Private room in UWS New York,6169516,Audra,Manhattan,Upper West Side,40.78892,-73.97435,Private room,135,3,13,2016-08-23,0.17,1,219 +1137587,Plum Guide Award-Winning Prospect Heights Oasis,354887,Jenny,Brooklyn,Prospect Heights,40.67678,-73.96692,Entire home/apt,189,3,173,2019-06-10,2.36,1,265 +1137999,Private room in a townhouse in NYC,6242426,H. Ann,Queens,Jamaica,40.69965,-73.79286,Private room,133,1,0,,,1,281 +1138052,Private room in Brooklyn,6131397,Dan,Brooklyn,Sunset Park,40.66582,-73.99349,Private room,65,1,4,2016-08-17,0.11,1,0 +1138455,Big and Well Appointed NYC 1 Bdrm,6245239,Erica,Manhattan,Upper West Side,40.77097,-73.98083,Entire home/apt,179,4,27,2018-07-07,0.36,1,0 +1139851,The Perfect Large Chelsea Studio,5654454,Stuart,Manhattan,Chelsea,40.74057,-73.99771,Entire home/apt,90,45,11,2019-02-19,0.18,1,279 +1140826,Private room/bedroom in Park Slope/Gowanus BK,6256118,Katie,Brooklyn,Gowanus,40.67173,-73.98968,Private room,49,1,9,2017-08-19,0.19,1,98 +1141120,Beautiful stylish one bedroom home with balcony.,2637874,Elon,Brooklyn,Williamsburg,40.71666,-73.94552,Entire home/apt,140,3,60,2019-06-15,1.19,1,197 +1142034,Large Flatiron 2 bedroom,1474508,Samuel,Manhattan,Midtown,40.74658,-73.98847,Entire home/apt,115,2,70,2019-06-03,0.95,1,120 +1144861,Stylish Arty Brooklyn Appartment #4,252361,Lucien,Brooklyn,Cobble Hill,40.6866,-73.99123,Entire home/apt,190,1,221,2019-07-01,3.00,1,238 +1145134,Lovely garden bedroom in Greenpoint,585273,Summer,Brooklyn,Greenpoint,40.72448,-73.94328,Private room,99,5,179,2019-05-28,2.61,1,0 +1145288,5 STARS***MIDTOWN EAST-BRAND NEW!!!,1475015,Mike,Manhattan,Midtown,40.75274,-73.97026,Entire home/apt,110,30,3,2016-07-04,0.06,52,365 +1145337,Spacious Private Room -East Village,6280254,Jc,Manhattan,East Village,40.73125,-73.98344,Private room,109,2,292,2019-06-08,3.90,2,231 +1146534,furnished br in 2 br share in WV,6286114,Stephen,Manhattan,West Village,40.73614,-74.00634,Private room,64,5,42,2019-04-10,0.56,1,0 +1146653,Luxury 1 Bedroom Central Park Views,836168,Henry,Manhattan,Upper West Side,40.79208,-73.96482,Entire home/apt,1000,30,24,2016-01-27,0.33,11,364 +1147507,RUSTIC/MODERN/EV/NYC,5523186,Mark,Manhattan,East Village,40.73032,-73.98469,Entire home/apt,750,3,9,2018-08-30,0.18,2,364 +1147524,3br family-friendly Astoria house,244071,Litza,Queens,Ditmars Steinway,40.77755,-73.90599,Entire home/apt,175,7,2,2014-07-12,0.03,1,8 +1148144,Private Room (Long room) in Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.80421,-73.94037,Private room,47,1,6,2019-06-01,0.08,5,353 +1148279,Family Owned & Operated Brownstone,6294856,Yoki,Brooklyn,Bedford-Stuyvesant,40.68018,-73.94839,Private room,60,3,140,2019-01-01,1.87,1,189 +1148978,1 BR 1/2 block to A/B/C/D trains,6298986,Marcelo,Manhattan,Washington Heights,40.83307,-73.93957,Private room,48,14,46,2019-05-17,0.62,1,287 +1150382,Fab 1 Bedroom Apartment!,6305367,Suzanne,Manhattan,East Harlem,40.79921,-73.93657,Entire home/apt,100,1,54,2019-07-07,0.75,1,0 +1150398,Bright room in Brooklyn,6305477,Alex,Brooklyn,Park Slope,40.68247,-73.97837,Private room,105,1,127,2019-06-30,1.72,1,88 +1150514,Lovely Entire Apt in Prime Brooklyn,4376062,Eliza,Brooklyn,Fort Greene,40.68798,-73.97182,Entire home/apt,138,7,1,2013-05-24,0.01,1,0 +1150594,HEART OF EAST VILLAGE! Quiet apt in middle of NYC!,7399728,Mickey,Manhattan,East Village,40.7252,-73.98261,Entire home/apt,129,1,96,2019-01-13,1.31,1,324 +1150869,Large UWS Apt $170.00/day May 2018- September 2018,6142196,Neni,Manhattan,Morningside Heights,40.80815,-73.96779,Entire home/apt,170,30,4,2018-01-01,0.07,1,1 +1151209,Large Sunny 1BR - Entire 2nd Floor,6309691,Lisa,Brooklyn,Greenpoint,40.73369,-73.95854,Entire home/apt,139,1,284,2019-06-19,3.80,2,160 +1151343,Large room in 2/1 on park w/2day discounts,4910820,Alex,Manhattan,Harlem,40.80449,-73.95687,Private room,94,1,30,2019-07-05,0.40,1,218 +1151582,Quiet & Convenient Upper East Side ,364351,Katie,Manhattan,Upper East Side,40.77068,-73.95867,Private room,115,3,1,2016-11-07,0.03,1,0 +1155475,"Big, glamorous, 4BR, 3-story house",2199502,Jon,Brooklyn,Fort Greene,40.68675,-73.97713,Entire home/apt,499,2,126,2019-06-25,1.75,1,256 +1155885,Fresh and modern 1BR in Bed-Stuy,6334250,Shaila & Alex,Brooklyn,Bedford-Stuyvesant,40.68683,-73.92922,Entire home/apt,79,2,198,2019-06-21,2.66,1,250 +1156440,Trendy East Village 1 Bedroom - NYC,1908631,Derek,Manhattan,East Village,40.72845,-73.98598,Entire home/apt,200,4,26,2019-06-10,1.34,1,0 +1156499,MODERN/ SUBWAY/TERRACE/LOFT/ LARGE MASTER BEDROOM,5644215,LiVi,Brooklyn,Greenpoint,40.72897,-73.95132,Private room,152,5,13,2019-01-02,0.17,1,241 +1157036,private spacious sunny bedroom,3696460,Radium,Brooklyn,Kensington,40.63381,-73.9714,Private room,50,30,10,2016-11-30,0.13,1,205 +1157522,North Williamsburg whole apt - Off the BEDFORD L,6263282,Liza,Brooklyn,Williamsburg,40.71813,-73.95981,Entire home/apt,212,2,51,2019-06-15,0.91,1,147 +1159142,Private Master Bedroom@Central Park,2010724,K. Naomi,Manhattan,East Harlem,40.7948,-73.94835,Private room,108,14,4,2015-09-22,0.06,3,38 +1164101,Oasis in the West Village,6376776,Kurt,Manhattan,West Village,40.73804,-74.00416,Private room,89,30,13,2018-04-30,0.18,1,282 +1164111,COMFORTABLE NYC RETREAT & Breakfast,6375533,LaNola,Manhattan,East Harlem,40.79025,-73.9488,Private room,89,1,273,2019-06-23,3.66,2,47 +1165913,Quiet/Clean minutes to Manhattan,6385492,John,Queens,Sunnyside,40.74239,-73.92213,Private room,65,2,12,2018-09-30,0.16,1,332 +1166339,Spring in Central Park-UWS,3496628,Ali,Manhattan,Upper West Side,40.78571,-73.97149,Entire home/apt,239,4,3,2017-05-20,0.04,1,184 +1166398,Entire 2 bedroom flat,6387355,Eric,Brooklyn,Bushwick,40.69814,-73.92996,Entire home/apt,99,30,13,2018-09-14,0.25,2,280 +1166616,Gorgeous Large Sunny Room - Upper Manhattan,6388666,Celine,Manhattan,Washington Heights,40.84002,-73.9385,Private room,80,2,56,2019-06-22,0.76,1,249 +1166947,Huge Private Sunny Bedroom in NYC,6390340,Lori,Manhattan,Washington Heights,40.8532,-73.93225,Private room,125,56,0,,,1,365 +1167658,Cozy Greenpoint Accommodation,6394282,Patricia,Brooklyn,Greenpoint,40.73135,-73.95489,Private room,55,7,116,2019-06-09,1.57,1,308 +1170268,Modern Trendy Duplex Brooklyn Loft!,6407125,Alyssia,Brooklyn,Bushwick,40.69776,-73.90939,Entire home/apt,160,2,31,2018-10-26,0.42,1,0 +1171566,Nolita: 1BR with private bathroom,6395317,Pierre,Manhattan,Nolita,40.72011,-73.99468,Private room,100,15,5,2019-04-30,0.08,1,197 +1171581,Spacious 2 bedroom near Times Sq,6414296,Noelle,Manhattan,Hell's Kitchen,40.7593,-73.99143,Entire home/apt,1000,1,0,,,1,365 +1171674,Great One-Bed in the West Village,6414916,Jon,Manhattan,Greenwich Village,40.7302,-74.00165,Entire home/apt,225,2,136,2019-06-22,1.83,1,10 +1171716,Room with a sunrise view over colored rooftops,6415261,John,Brooklyn,Flatbush,40.63641,-73.96712,Private room,35,30,0,,,1,317 +1171955,Manhattan apt in the centre of it!,4922378,Erin,Manhattan,Midtown,40.74568,-73.98321,Entire home/apt,275,7,6,2016-10-09,0.08,1,191 +1173994,Steps to Subway! Entire apt! 20 min to Manhattan!,6387598,Ana,Brooklyn,Bedford-Stuyvesant,40.68177,-73.9389,Entire home/apt,200,2,80,2019-07-01,3.93,1,109 +1174944,*Soho Duplex* with private rooftop,5189987,Jorge,Manhattan,SoHo,40.7252,-74.00279,Entire home/apt,190,4,25,2017-01-03,0.34,1,0 +1175400,LARGE light filled loft/apt! PRIME Williamsburg.✨,5536387,Heather And John,Brooklyn,Williamsburg,40.71374,-73.94642,Private room,117,2,43,2019-05-28,0.59,1,88 +1177971,Amazing View from Contemporary Loft,6444977,Chris,Manhattan,Midtown,40.74542,-73.98205,Shared room,80,1,66,2019-05-04,0.89,1,365 +1178231,"Private, Cozy hideaway apt in Bklyn for 1 to 3 .",6445684,Sharon,Brooklyn,Canarsie,40.64298,-73.89035,Entire home/apt,99,1,93,2019-06-23,1.28,1,311 +1178389,"Beautiful, clean 1-bdrm private apt",6447462,Adam,Manhattan,Washington Heights,40.8506,-73.94023,Entire home/apt,70,6,19,2017-07-24,0.26,1,188 +1180157,PRIVATE ROOM (BRIGHT & CLEAN) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.80393,-73.94046,Private room,44,30,2,2017-08-12,0.03,5,325 +1180296,Comfortable Central Park North Rm,3274316,Clotaire,Manhattan,Harlem,40.8004,-73.95645,Private room,125,1,85,2019-06-29,1.15,1,301 +1180537,"spacious, tranquil east village apt",6030235,Parker (& Juan),Manhattan,Lower East Side,40.71646,-73.97656,Entire home/apt,130,2,32,2019-04-06,0.44,1,184 +1180618,One-Bedroom Apt. on Upper East Side,6459215,Aryn,Manhattan,Upper East Side,40.76841,-73.95213,Entire home/apt,130,14,8,2016-01-09,0.11,1,332 +1182187,Best Chelsea Street. Beautiful Room. Superhost.,6467086,George,Manhattan,Chelsea,40.74652,-74.00089,Private room,125,2,228,2019-07-01,3.07,1,53 +1182844,"Large apt at Central Park, TimesSq",6470443,Alex,Manhattan,Hell's Kitchen,40.76636,-73.9855,Entire home/apt,199,7,30,2019-01-26,0.52,1,184 +1183005,Hostess Dawn in Brooklyn.,6471326,Dawn,Brooklyn,East Flatbush,40.64513,-73.94944,Private room,89,2,0,,,1,365 +1183172,"Sunny, Quiet! Lovely 1 Bedroom in Prospect Heights",6436296,Zach,Brooklyn,Prospect Heights,40.67839,-73.96623,Entire home/apt,155,4,125,2018-12-29,1.68,1,297 +1183236,Fantastic 1 BR in massive share.,6472794,Joel,Queens,Long Island City,40.74984,-73.91834,Private room,60,1,0,,,1,0 +1183628,Perfect 1st Floor Brownstone in Meatpacking- 2 ppl,732985,Nicki,Manhattan,Chelsea,40.73984,-74.00187,Entire home/apt,248,2,9,2015-05-17,0.12,1,363 +1183667,Sunlit cozy studio apt in UWS (70s),6474981,Kinneret,Manhattan,Upper West Side,40.77938,-73.98721,Entire home/apt,85,4,42,2019-06-16,1.44,1,9 +1185357,Central Park Room/Bath with a View!,6482637,William,Manhattan,Upper West Side,40.79631,-73.96152,Private room,85,3,118,2019-01-23,1.61,1,0 +1185525,Peaceful Brooklyn Flat,6483295,Jason,Brooklyn,Bay Ridge,40.63719,-74.03489,Entire home/apt,80,3,38,2019-05-01,0.53,1,192 +1186153,Sexy Bedroom near Central Park!,6486116,Ari,Manhattan,East Harlem,40.78943,-73.94726,Private room,79,1,38,2019-05-04,0.60,4,106 +1186569,beautiful spacious room,6471461,Robert,Queens,Ridgewood,40.70823,-73.89925,Private room,55,1,224,2019-07-02,3.87,2,356 +1187643,PRIVATE ROOM IN NYC ARTIST LOFT,6494389,Daniel,Bronx,Port Morris,40.80904,-73.93037,Private room,65,2,64,2019-06-20,0.87,1,307 +1189225,"Bright, New Luxury Exec Studio ",6501414,Sean,Manhattan,Hell's Kitchen,40.76161,-73.99452,Entire home/apt,150,60,7,2018-10-17,0.10,1,188 +1189378,Authentic Soho Loft (1200 sq ft),867249,Norwin,Manhattan,Tribeca,40.71976,-74.00571,Entire home/apt,285,2,124,2019-06-22,1.70,1,131 +1190223,Large 1 Bedroom in Astoria,3202825,Joseph,Queens,Astoria,40.76797,-73.92858,Entire home/apt,119,7,11,2019-04-30,0.63,1,143 +1191606,"STUNNING OCEAN-VIEW 1BR in BROOKLYN, NYC",6514245,Al,Brooklyn,Brighton Beach,40.57519,-73.95468,Entire home/apt,137,2,59,2019-06-28,0.81,1,80 +1194066,ENTIRE 1 Bedroom apartment- Upper East Side,6525255,Dana,Manhattan,Upper East Side,40.76703,-73.95413,Entire home/apt,190,2,191,2019-06-23,2.60,1,282 +1194508,Sunny room - Prime Location,6527494,Mar,Manhattan,Two Bridges,40.71166,-73.9972,Private room,80,1,1,2016-07-01,0.03,1,0 +1195198,Cozy 1 Bedroom in Clinton Hill,6531502,Shannon And Dahrehn,Brooklyn,Bedford-Stuyvesant,40.68647,-73.95909,Entire home/apt,120,3,155,2019-06-15,2.39,1,18 +1195260,The Ganham House,6532132,MarQuerite,Brooklyn,East Flatbush,40.65176,-73.93452,Entire home/apt,95,3,105,2019-06-24,1.42,1,333 +1196791,Creative Hub in Upper Manhattan,4324767,Caits & Taf,Manhattan,Washington Heights,40.83448,-73.94476,Private room,90,1,33,2016-05-09,0.48,1,189 +1197899,Sunny Bedroom in Clinton Hill,2360794,Gillian,Brooklyn,Clinton Hill,40.69258,-73.96649,Private room,75,3,11,2018-10-22,0.16,1,318 +1198231,Clean & Quiet Apartment.,2020556,Michael,Queens,Astoria,40.75962,-73.92176,Shared room,50,1,0,,,1,0 +1199863,1 room available for rent in 3 bedroom.,6554341,Beca,Brooklyn,Crown Heights,40.67463,-73.91811,Private room,103,8,5,2018-08-25,0.21,1,2 +1203812,Quiet minimal clean,6575712,Emma,Manhattan,East Village,40.73138,-73.98807,Entire home/apt,125,2,28,2019-05-20,0.45,1,179 +1205103,Cozy & Private Fort Green Cottage,6582962,Allon,Brooklyn,Fort Greene,40.69486,-73.97132,Entire home/apt,150,2,213,2019-07-06,2.87,1,288 +1209069,One bedroom July 1- Decemb (Phone number hidden by Airbnb) p.mo .,6602545,Eleni,Brooklyn,South Slope,40.6672,-73.98986,Private room,50,90,0,,,2,0 +1209492,Beautiful East Village Apt,396433,Kevin,Manhattan,East Village,40.72499,-73.98127,Private room,148,3,14,2019-05-17,0.24,1,365 +1209887,East Village Bright & Spacious Artist Loft,2910509,Tamar,Manhattan,East Village,40.72434,-73.97715,Entire home/apt,120,29,10,2019-01-18,0.17,1,3 +1209921,Authentic NYC Living 2,622855,Rodney,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92885,Entire home/apt,99,3,68,2019-06-26,0.97,2,270 +1209955,The Green Room: Your NYC Adventure starts here,3007815,Alia,Queens,Ditmars Steinway,40.77147,-73.9166,Private room,69,2,103,2019-06-23,1.39,2,124 +1210916,Stylish apt in the heart of NYC!,2554853,Nim,Manhattan,Midtown,40.75099,-73.96994,Entire home/apt,200,1,7,2019-04-12,0.10,1,358 +1212319,Large room in Washington Heights,3166165,Karen,Manhattan,Washington Heights,40.85121,-73.93734,Private room,55,5,4,2016-08-19,0.07,1,218 +1213745,"Cozy, modern 1BR, 1st fl brownstone",6625516,Carlos,Manhattan,Upper West Side,40.78806,-73.97969,Entire home/apt,175,8,3,2018-07-31,0.04,1,68 +1213991,Private 2 bedroom Midtown Manhattan,6626827,Steve,Manhattan,Hell's Kitchen,40.76247,-73.99294,Private room,240,4,77,2019-06-19,1.81,1,21 +1215122,Rm #1 River view Hamilton Heights,6632440,Emmett,Manhattan,Harlem,40.82393,-73.95308,Private room,95,7,2,2014-10-12,0.03,2,365 +1215627,Floating Cabin Houseboat Rockaway Surf's Up!,5720054,Ingrid,Queens,Arverne,40.59204,-73.78665,Entire home/apt,150,1,109,2019-06-22,1.49,1,358 +1215836,Prospect Park Apt,6533489,Ryan,Brooklyn,Crown Heights,40.67394,-73.95951,Entire home/apt,150,2,1,2017-06-22,0.04,1,0 +1217046,Sunny Williamsburg Apt w/ Deck,645887,Dave & Theresa,Brooklyn,Williamsburg,40.71317,-73.94851,Entire home/apt,179,3,146,2019-06-26,2.08,2,282 +1217318,Williamsburg Penthouse Hideaway,6642777,Martin,Brooklyn,Williamsburg,40.71024,-73.9517,Private room,105,1,374,2019-06-23,5.06,2,69 +1217670,"BK Rest - Williamsburg, Brooklyn",4532557,Joshua,Brooklyn,Williamsburg,40.70653,-73.9462,Entire home/apt,84,45,45,2019-06-04,0.61,1,244 +1220548,Cozy 2 BR apartment in Queens,2050338,Verena,Queens,Richmond Hill,40.69414,-73.82538,Entire home/apt,90,30,33,2017-12-08,0.46,3,298 +1221332,Furnished 1 Bedroom in East Harlem,3757699,Jeremiah,Manhattan,East Harlem,40.79293,-73.94048,Entire home/apt,53,7,7,2019-02-19,0.33,2,0 +1221517,Private Room (Cozy & Clean) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.8035,-73.94041,Private room,41,30,4,2018-07-01,0.09,5,217 +1221962,Newly Renovated West Village Privat,5962196,Karim,Manhattan,Flatiron District,40.74389,-73.99159,Private room,135,1,17,2016-09-27,0.25,1,365 +1222563,"Renovated, Residential Space",3475005,Yolanda,Queens,Queens Village,40.70382,-73.73955,Entire home/apt,84,2,172,2019-06-27,2.32,2,345 +1223230,Stunning Sundrenched Tribeca Loft,6672450,Jacqueline,Manhattan,Tribeca,40.71908,-74.00546,Entire home/apt,290,1,21,2019-06-23,0.29,1,128 +1223755,"Cozy, friendly, 3 min from subway.",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69122,-73.95648,Shared room,35,5,110,2018-01-03,1.49,4,0 +1225060,Lovely Studio in Astoria,6682511,Inga,Queens,Ditmars Steinway,40.77546,-73.91571,Entire home/apt,110,3,23,2019-01-04,0.67,1,14 +1225110,"Lovely, Private Home in Greenpoint",2888900,Alex,Brooklyn,Greenpoint,40.72992,-73.95628,Entire home/apt,350,7,4,2015-07-01,0.06,2,0 +1226176,Private bedroom (15 min Manhattan).,6688471,Guillaume,Brooklyn,Bedford-Stuyvesant,40.69652,-73.93548,Private room,60,3,13,2019-05-15,0.22,1,294 +1227258,Amazing Duplex in Williamsburg,5309521,Reut,Brooklyn,Williamsburg,40.71333,-73.96605,Entire home/apt,220,5,0,,,1,234 +1227528,Modern Williamsburg,3086048,Christine,Brooklyn,Williamsburg,40.71704,-73.95789,Entire home/apt,275,4,27,2019-01-02,0.37,1,197 +1228561,Stylish Apt in Heart of Ft. Greene,2305477,Amy,Brooklyn,Fort Greene,40.68764,-73.97545,Entire home/apt,142,7,6,2018-12-02,0.11,1,188 +1229484,SUNNY AND COZY BEDROOM IN BROOKLYN!,6706914,Leanne,Brooklyn,Crown Heights,40.67322,-73.95847,Private room,38,5,1,2015-08-01,0.02,2,0 +1229630,Spacious Harlem Condo,6706578,Nancy,Manhattan,Harlem,40.81691,-73.94251,Entire home/apt,100,60,0,,,1,365 +1231273,LUXURY TIMES SQUARE APARTMENT,5894425,Dan,Manhattan,Hell's Kitchen,40.76168,-73.9949,Entire home/apt,200,2,52,2019-04-10,0.71,1,193 +1232212,"Beautiful Huge Loft in Williamsburg, NY",3547817,Tad,Brooklyn,Williamsburg,40.71038,-73.96299,Entire home/apt,225,3,56,2019-06-26,0.79,1,55 +1232433,Manhattan Upper East Side 1bedroom,6721198,Susie,Manhattan,Upper East Side,40.78104,-73.94916,Entire home/apt,135,1,190,2019-06-21,2.57,1,105 +1235078,Big Private Room w/ AC & 5 Blocks to 1 Train,4185151,Gia,Manhattan,Harlem,40.8291,-73.94816,Private room,72,30,3,2015-08-23,0.05,1,179 +1238285,Stuyvesant Heights Apt mins 2 City,6270968,Ryan,Brooklyn,Bedford-Stuyvesant,40.68185,-73.94108,Private room,59,3,13,2017-08-18,0.26,2,100 +1239017,Spacious 4-BD/2BA Townhouse in PLG,6581587,Livia,Brooklyn,Crown Heights,40.66521,-73.95427,Entire home/apt,350,2,23,2019-04-20,0.37,1,188 +1239293,Cozy Retreat in Brooklyn Apartment,6755111,Jessica,Brooklyn,Kensington,40.6412,-73.9786,Private room,75,2,8,2014-01-07,0.11,1,312 +1240530,Large Sunny Room in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69107,-73.91995,Private room,70,3,12,2018-07-27,0.65,2,0 +1240586,Spacious and clean 1 bed apt in West Harlem,900154,Joel,Manhattan,Harlem,40.80545,-73.95563,Entire home/apt,99,30,4,2018-08-03,0.09,1,0 +1240594,Private room 2nd Fl near C&A line and 15mins JFK,6762657,Yvette,Brooklyn,Cypress Hills,40.68287,-73.87295,Private room,42,3,28,2018-01-01,0.74,2,355 +1241905,Bedroom in big sunny loft (& roof!),2873394,Aurora,Brooklyn,Bushwick,40.69822,-73.93517,Private room,60,2,11,2019-06-04,0.15,2,296 +1244117,Cozy Huge Brownstone in Bedstuy,6781477,Joseph,Brooklyn,Bedford-Stuyvesant,40.69324,-73.93217,Entire home/apt,125,1,153,2019-06-17,2.21,1,1 +1245479,Private Room In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.7084,-73.94153,Private room,99,6,148,2019-06-26,2.09,3,252 +1245977,Charming Prewar on Prospect Park!,6789857,Dayna,Brooklyn,Prospect Heights,40.67321,-73.96574,Entire home/apt,99,5,12,2017-06-29,0.25,1,0 +1251566,SPACE FOR 8,6774871,Karece,Brooklyn,Bedford-Stuyvesant,40.68065,-73.95154,Entire home/apt,165,3,130,2017-12-14,1.84,1,0 +1251681,"Entire House in Brooklyn for 6, super good price¡¡",6819812,Margarita,Brooklyn,Kensington,40.6458,-73.97097,Entire home/apt,250,5,11,2019-01-01,0.15,1,34 +1251889,Private Room in Williamsburg!,2868153,Matt,Brooklyn,Williamsburg,40.7149,-73.93983,Private room,135,4,12,2018-10-24,0.17,1,365 +1252565,Simple Spacious Uptown Bedroom,6824711,Jordan,Manhattan,Harlem,40.82427,-73.94428,Private room,58,5,66,2018-12-16,0.91,1,242 +1252826,"Three bedroom apartment, Manhattan",4656534,Anna,Manhattan,Upper East Side,40.77244,-73.95206,Entire home/apt,250,3,0,,,1,10 +1255828,Sunny Beach House type room on UWS,5561816,Caitlin,Manhattan,Upper West Side,40.78323,-73.98105,Private room,95,3,191,2019-06-24,2.61,1,207 +1256536,Clean 2Bedroom-Ideal UpperEast Loc.,4995411,Mayrav,Manhattan,Upper East Side,40.76398,-73.9589,Entire home/apt,125,1,92,2019-06-15,1.27,1,247 +1256768,Beautiful Park Slope apt w garden,1537501,Lenny,Brooklyn,Park Slope,40.67157,-73.9852,Entire home/apt,147,7,42,2019-07-01,0.61,1,365 +1258651,Chic Historic Harlem Brownstone,6854750,Margo,Manhattan,Harlem,40.80707,-73.94884,Entire home/apt,300,3,66,2019-06-13,1.62,1,286 +1260727,Luxury 3 Bd 2Bth w/600 sqft deck,6866620,Adam,Manhattan,Flatiron District,40.74119,-73.99168,Entire home/apt,350,14,4,2018-07-28,0.06,1,5 +1262053,Stylish Park Slope Townhouse,6873370,Thomas,Brooklyn,Sunset Park,40.66134,-73.98844,Entire home/apt,102,2,24,2019-01-08,0.34,1,0 +1263964,Designer amazing room in NYC!!,6881792,Carlos,Manhattan,Harlem,40.81388,-73.95105,Private room,95,5,206,2019-06-21,2.89,1,252 +1264621,nice room in bedstuy N,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68388,-73.95019,Private room,65,1,85,2019-06-03,1.16,15,345 +1264663,Prospect Park Apt With Terrace,809716,Adero,Brooklyn,Prospect-Lefferts Gardens,40.65994,-73.95892,Entire home/apt,350,5,0,,,1,365 +1264695,Classy Penthouse with Amazing View!,2737373,Ray,Manhattan,Chelsea,40.74984,-73.99482,Entire home/apt,595,3,106,2019-06-18,1.51,1,247 +1264920,BEAUTIFUL UPPER WEST SIDE SANCTUARY,6882340,Patricia,Manhattan,Upper West Side,40.78815,-73.9737,Shared room,165,3,21,2015-10-12,0.29,1,363 +1266411,Cozy Brownstone Living in Brooklyn,6893861,Phillip + Zack,Brooklyn,Bedford-Stuyvesant,40.68445,-73.93785,Entire home/apt,181,3,153,2019-06-16,3.17,1,174 +1267186,Private room for labor day weekend,6897732,Wilson,Manhattan,Midtown,40.74331,-73.98351,Private room,110,1,4,2015-09-08,0.05,1,0 +1267945,nice room in bedstuy I,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95012,Private room,65,1,119,2019-06-30,1.61,15,313 +1267954,Cozy 1 Bedroom Brownstone In Clinton Hill!,6901734,Liz,Brooklyn,Clinton Hill,40.68843,-73.96239,Entire home/apt,155,2,114,2019-06-17,1.82,1,314 +1270324,Clean & Sunny Clinton Hill/Bed room,5619749,Jen,Brooklyn,Bedford-Stuyvesant,40.68919,-73.95399,Private room,50,30,1,2017-01-01,0.03,2,253 +1271103,Lovely spacious 1 Bdrm in Ridgewood,2243431,Marcelle,Queens,Glendale,40.70518,-73.89133,Entire home/apt,85,2,1,2015-03-16,0.02,1,0 +1271361,ABSOLUTELY GORGEOUS $10MILLION LOFT w/BASQUIAT,6912221,Masako,Brooklyn,Williamsburg,40.7084,-73.92642,Private room,120,5,6,2019-05-21,0.26,1,66 +1273533,1 Bedroom avail in BK 3BD w/ porch,2246253,Nerenda,Brooklyn,Bedford-Stuyvesant,40.69585,-73.9446,Private room,75,1,2,2014-08-13,0.03,1,0 +1275942,nice room in bedstuy H,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6824,-73.95039,Private room,55,1,127,2019-06-14,1.77,15,318 +1276554,1 Guest Room in New Condo,6903334,Marisa,Brooklyn,Brooklyn Heights,40.70117,-73.99147,Private room,200,1,3,2015-10-01,0.05,1,0 +1276760,1bedroom apartment in Williamsburg,6949594,Sego,Brooklyn,Williamsburg,40.70971,-73.95621,Entire home/apt,75,7,10,2015-12-19,0.15,1,0 +1277955,Gorgeous Windsor Terrace home,836911,Cathy,Brooklyn,Windsor Terrace,40.65641,-73.97937,Entire home/apt,150,1,1,2014-05-17,0.02,3,129 +1278784,Private room minutes from midtown!,6959061,Roque,Bronx,Mott Haven,40.81291,-73.90772,Private room,60,2,147,2019-06-24,2.02,1,213 +1279234,"Massive, sunny 1-br in Brooklyn",3967827,Ezequiel,Brooklyn,Crown Heights,40.66886,-73.95412,Entire home/apt,150,50,4,2017-08-20,0.07,1,312 +1280188,The Original Williamsburg Loft!,3891706,Jon Paul,Brooklyn,Williamsburg,40.71737,-73.96396,Entire home/apt,240,1,77,2019-06-27,1.08,1,116 +1281023,Your private bedroom in the Upper East Side!,6970732,Sullivan,Manhattan,East Harlem,40.78747,-73.95276,Private room,150,3,18,2019-05-04,0.25,1,0 +1281054,Casa de Chester Baby Kitty,6970929,Andy,Manhattan,East Village,40.7216,-73.98204,Entire home/apt,200,3,0,,,1,0 +1281257,1BR LUXURY PENTHOUSE MODERN CONDO,2577135,Elena,Manhattan,Financial District,40.70735,-74.00971,Entire home/apt,269,5,18,2018-10-13,0.29,1,179 +1283453,Adorable Williamsburg room!,4365496,Sarah,Brooklyn,Williamsburg,40.70794,-73.96077,Private room,112,2,9,2018-01-02,0.37,2,0 +1284776,Modern Apartment in Brownstone Bkln,6989825,Angus,Brooklyn,Carroll Gardens,40.68013,-73.99397,Entire home/apt,250,5,49,2019-01-02,0.67,1,0 +1284789,Light-filled Brownstone Triplex with Roof Deck,5768571,Gus,Brooklyn,Prospect Heights,40.67731,-73.96402,Entire home/apt,390,3,0,,,1,28 +1286024,*Superhost* Modern One Bedroom Manhattan apt,6986713,Chris,Manhattan,Financial District,40.70946,-74.01235,Entire home/apt,350,3,27,2018-09-08,0.37,1,22 +1290208,Live like a real New Yorker!,7016230,André,Manhattan,Lower East Side,40.7191,-73.98866,Entire home/apt,80,3,67,2017-01-16,0.92,1,85 +1290336,Spacious & Stylish 2br-Prime Williamsburg Hot Spot,1240820,Triny,Brooklyn,Williamsburg,40.71787,-73.95585,Entire home/apt,295,2,114,2019-07-05,1.59,3,79 +1291020,One family house sublet August 1st to August 31,6602545,Eleni,Brooklyn,South Slope,40.66812,-73.99022,Private room,160,30,1,2019-06-19,1,2,39 +1291245,ENORMOUS Artsy 2BR in trendy LES!,2078796,Andy,Manhattan,Chinatown,40.71634,-73.99031,Entire home/apt,399,2,2,2016-09-19,0.05,1,0 +1291261,Dream Apartment - Greenwich Village,7020798,Light,Manhattan,Greenwich Village,40.73104,-73.99957,Entire home/apt,150,12,16,2019-03-16,0.22,1,35 +1291490,nice room in bedstuy M,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68322,-73.95085,Private room,60,1,142,2019-06-13,1.95,15,321 +1291561,True West Village Experience-1 Bdrm,7022451,Deborah,Manhattan,Greenwich Village,40.72948,-73.99957,Entire home/apt,219,6,45,2018-09-11,0.64,1,188 +1292428,Room in Great Loft - Fun/Convenient,4393626,Aaron,Manhattan,Chelsea,40.7433,-73.99832,Private room,119,4,106,2019-06-17,1.47,2,23 +1294721,Skylight Apartment Williamsburg,306825,Jesse,Brooklyn,Williamsburg,40.7132,-73.96798,Entire home/apt,190,4,1,2014-09-22,0.02,1,0 +1294973,PRIVATE BEDROOM IN COMFY & CHIC UWS APT!,7041410,Jeffrey,Manhattan,Upper West Side,40.79475,-73.976,Private room,140,5,90,2019-06-30,1.37,1,16 +1297171,Artists' Haven in Williamsburg,4855335,Laura,Brooklyn,Williamsburg,40.70894,-73.94135,Private room,125,2,4,2018-08-23,0.08,1,364 +1297663,Your West Village NYC 1 Bdm Apt,7055547,Tege,Manhattan,West Village,40.73532,-74.00448,Entire home/apt,144,4,27,2017-01-01,0.39,1,0 +1300097,"Marcel the Shell with Shoes On or Off, Whatever",4069241,Shannon,Brooklyn,Brooklyn Heights,40.69424,-73.99313,Private room,1500,1,0,,,1,0 +1300216,1 Bdrm Apt 2 blocks to subway 15 mins to Midtown,2135948,Giovanni,Queens,Astoria,40.76788,-73.92334,Entire home/apt,100,1,102,2019-07-03,1.73,1,33 +1300950,Great Room and Private Bathroom,7073209,Jackie,Brooklyn,Fort Greene,40.68846,-73.97567,Private room,115,2,57,2019-06-30,2.67,2,288 +1301321,West Village Penthouse-terrace/view,2214774,Ben And Jess,Manhattan,West Village,40.73305,-74.00412,Entire home/apt,1899,7,18,2015-10-09,0.28,1,0 +1302684,"1 Bedroom, Near Subway, Wash Hts",3003533,Jeff,Manhattan,Washington Heights,40.84346,-73.94471,Entire home/apt,110,29,10,2018-08-20,0.14,1,205 +1303515,Greenwich Village 1BR Fantastic Apt,430826,Dee,Manhattan,West Village,40.73384,-74.00462,Entire home/apt,140,14,51,2018-01-31,0.70,1,298 +1303850,Private spacious studio,2687920,Ikk,Manhattan,Morningside Heights,40.80777,-73.96703,Entire home/apt,94,2,1,2018-10-27,0.12,1,3 +1304181,beautiful ROOM in a DREAM APARTMENT,7089676,Michel Fabrice,Manhattan,Midtown,40.75728,-73.97152,Private room,50,1,49,2017-12-30,0.91,1,14 +1304459,Sunny Williamsburg Artist's Loft,7090408,Paco & Pamela,Brooklyn,Williamsburg,40.70706,-73.95071,Entire home/apt,131,4,68,2019-06-16,1.06,1,5 +1304952,Two Bedrooms and Private Bathroom,7073209,Jackie,Brooklyn,Fort Greene,40.68809,-73.97578,Private room,175,2,5,2019-03-10,0.13,2,334 +1305265,Perfect House for the Whole Family,7092157,Dennis,Brooklyn,Kensington,40.64342,-73.97851,Entire home/apt,299,3,4,2017-07-30,0.06,1,321 +1305346,Studio in the Heart of Soho,7096964,Chris,Manhattan,SoHo,40.72098,-73.99869,Entire home/apt,145,30,12,2018-11-30,0.17,1,342 +1306749,Superstar Manhattan Apt - Harlem,5230482,Anthony,Manhattan,Harlem,40.82612,-73.95216,Entire home/apt,145,2,64,2019-07-02,0.91,1,132 +1306966,Beautiful 1BR: Heart of the Village,5444717,Jonathan,Manhattan,Greenwich Village,40.72805,-73.99871,Entire home/apt,175,2,2,2016-09-04,0.03,1,0 +1307095,2 Bedroom Apartment in the East Village,6714376,Alec,Manhattan,Gramercy,40.73227,-73.98451,Private room,109,5,5,2018-07-27,0.07,1,22 +1307723,A real home on the UWS.,5435074,Deborah,Manhattan,Upper West Side,40.80274,-73.96459,Private room,150,1,28,2019-05-23,0.51,1,364 +1308155,Deep House in Bed Stuy,7111113,Carolina,Brooklyn,Bedford-Stuyvesant,40.69582,-73.94989,Private room,133,7,0,,,1,0 +1308308,Renovated 2 Bedroom (Hells Kitchen) TIME SQUARE,7112116,Ty,Manhattan,Hell's Kitchen,40.76248,-73.98597,Entire home/apt,399,3,108,2019-06-22,1.51,2,351 +1309148,PROSPECT HEIGHTS LARGE PRIVATE ROOM,1785016,Martin,Brooklyn,Crown Heights,40.67396,-73.96083,Private room,48,25,4,2015-04-03,0.06,1,311 +1310672,BROWNSTONE BROOKLYN'S FINEST in NYC,2015914,Majar,Brooklyn,Bushwick,40.68799,-73.91677,Private room,75,3,73,2018-12-08,1.00,8,341 +1312228,NYC - CLINTON HILL - FURNISHED ROOM,7130382,Walter,Brooklyn,Clinton Hill,40.68371,-73.96461,Private room,55,1,3,2015-12-20,0.06,2,343 +1313340,Spacious Guest Room in Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67782,-73.95386,Private room,75,3,107,2019-07-02,1.70,4,255 +1313593,GORGEOUS SUNNY LOFT w/ 15 WINDOWS,7138163,Ruby,Manhattan,East Village,40.72353,-73.99059,Entire home/apt,465,30,11,2019-05-29,0.18,1,273 +1313711,Less than a minute from the Metro,7120328,Kiriko,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.94819,Entire home/apt,151,1,173,2019-07-05,2.36,1,213 +1313768,"Large, Quiet, Sunny 1 Bedroom Condo Williamsburg",7139147,Hank,Brooklyn,Williamsburg,40.71063,-73.96774,Entire home/apt,199,3,6,2018-04-21,0.08,1,12 +1316480,nice room in bedstuy K,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68325,-73.94975,Private room,45,1,117,2019-05-30,1.61,15,236 +1316961,Huge Sunny Apt Hip/Family Area,772862,Jesse,Brooklyn,Clinton Hill,40.68645,-73.96587,Entire home/apt,160,3,24,2019-05-18,0.33,1,365 +1317612,"Sunny Rm #3, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Flatbush,40.65393,-73.95845,Private room,36,1,173,2019-06-29,2.38,5,360 +1320550,Nice cozy apartment by Central Park,7169746,Patricia,Manhattan,Upper East Side,40.77444,-73.95908,Entire home/apt,235,2,10,2019-05-26,0.20,1,345 +1322432,"Modern, Steps to Subway - Sleeps 4",7178784,Peter,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9489,Entire home/apt,225,4,5,2016-01-01,0.07,1,365 +1323349,Spacious Bright 2B Apt East Village,7183070,Vanessa,Manhattan,East Village,40.72188,-73.9816,Entire home/apt,300,3,19,2019-01-31,0.27,1,0 +1323801,"Cozy, friendly, 3 min from subway!",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69081,-73.95627,Shared room,35,5,120,2018-01-03,1.66,4,0 +1324087,Lovely 1-bedroom-heart of Astoria,6002245,Nicholas,Queens,Astoria,40.76062,-73.9175,Entire home/apt,80,70,44,2019-04-26,0.61,1,198 +1325432,"Private Room in Woodside, Queens: Good Deal!",2989617,Seth,Queens,Woodside,40.74265,-73.89781,Private room,79,2,61,2019-05-20,0.93,1,353 +1325472,"Sunny, Huge, Quiet Room Doorman Bld",7182180,Lee,Manhattan,Washington Heights,40.85704,-73.93789,Private room,82,1,6,2017-09-07,0.10,2,334 +1325473,"Doorman Bldg, Sunny, Huge, Quiet Rm",7182180,Lee,Manhattan,Washington Heights,40.85677,-73.93727,Private room,82,1,5,2015-06-28,0.07,2,311 +1325507,Garden duplx in beautiful brwnstne,4932354,Mitty,Brooklyn,Prospect Heights,40.67915,-73.97125,Entire home/apt,215,3,2,2018-08-16,0.09,4,189 +1325759,Gorgeous Apt in Prime Williamsburg,7195403,Emily,Brooklyn,Williamsburg,40.71058,-73.96243,Entire home/apt,147,3,14,2019-03-11,0.20,2,0 +1325911,Gramercy apartment ,7165563,Raul,Manhattan,Kips Bay,40.74019,-73.98115,Entire home/apt,145,2,26,2019-06-01,0.43,1,269 +1326514,Sunny Private Room in Brooklyn ,7240751,Emily,Brooklyn,Crown Heights,40.67475,-73.9465,Private room,65,3,72,2017-07-01,1.22,1,157 +1326566,Peaceful Park Slope 2BR in 4BR dplx w/outdoor spce,514261,Vanessa,Brooklyn,South Slope,40.66701,-73.98703,Private room,78,3,24,2019-05-27,0.33,3,28 +1327775,Luxury 1BR w/ Rooftop,7205838,Erik,Queens,Long Island City,40.76592,-73.93428,Entire home/apt,120,3,2,2016-05-29,0.05,1,0 +1327940,Huge Gorgeous Park View Apartment!,3290436,Hadar,Brooklyn,Flatbush,40.65335,-73.96257,Entire home/apt,120,3,13,2016-08-27,0.28,2,327 +1329559,Sunny master bedroom Room in LowerEastSide/Nolita,5957620,Nami,Manhattan,Lower East Side,40.71925,-73.99123,Private room,95,1,86,2019-06-23,2.87,1,86 +1330056,Spacious Loft 5 min to Union Square,124357,Alex,Brooklyn,Williamsburg,40.71571,-73.95813,Private room,90,1,115,2019-05-21,1.63,3,359 +1330753,"Garden, Private Deck, Williamsburg apartment",2014720,Amy,Brooklyn,Williamsburg,40.71276,-73.95022,Entire home/apt,95,25,11,2017-07-31,0.15,1,168 +1330775,Large private live/work space; garden & parking,7187069,Wendy,Brooklyn,Williamsburg,40.70392,-73.93635,Entire home/apt,100,7,41,2019-03-29,0.58,1,45 +1331231,"Studio Plus, Hilton Grand Vacation",7220851,Richard,Manhattan,Midtown,40.76417,-73.97704,Entire home/apt,350,6,3,2019-01-02,0.22,1,351 +1331960,ARTSY & CONVENIENT in Williamsburg.,2671491,Savannah,Brooklyn,Bedford-Stuyvesant,40.69811,-73.95557,Entire home/apt,188,3,38,2019-06-30,0.54,1,261 +1332473,2 BED ROOM APT. IN A PRIVATE HOUSE,7027562,Deidra,Queens,Queens Village,40.72512,-73.73986,Private room,80,1,5,2019-07-01,0.07,1,363 +1334633,Meatpacking District Large Loft,7125872,Joe,Manhattan,West Village,40.73896,-74.00522,Entire home/apt,175,4,5,2017-12-03,0.07,1,0 +1334793,Prime brownstone with lush backyard,671579,Karen,Brooklyn,Carroll Gardens,40.6838,-73.99849,Entire home/apt,495,7,4,2018-12-29,0.08,1,256 +1335036,Charming 2 Bedroom Little Italy Apt,4581902,Magi,Manhattan,Little Italy,40.71833,-73.99826,Entire home/apt,250,3,155,2019-06-22,2.18,1,159 +1335510,Bright & cosy Williamsburg apt,4202236,John,Brooklyn,Williamsburg,40.71657,-73.9597,Entire home/apt,115,7,3,2013-11-21,0.04,1,0 +1335550,nice room in bedstuy J,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95167,Private room,55,1,75,2019-06-13,1.04,15,285 +1336223,"Safe, Sunny, Quiet Chelsea Apt has Washer/Dryer",7245581,Michael,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,93,39,25,2019-05-13,0.35,19,245 +1336230,"Safe,Sunny,SouthFacing Apt Near All",7245581,Michael,Manhattan,Chelsea,40.75032,-73.99676,Entire home/apt,93,120,34,2019-05-16,0.47,19,316 +1336390,"Charming, Quiet, & Clean 1BR APT",1673136,Erin,Manhattan,Chelsea,40.73981,-74.0016,Entire home/apt,199,3,35,2019-06-28,0.49,1,69 +1336984,Chez Humphries,7236564,Heather,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93478,Private room,70,2,6,2015-09-07,0.10,1,0 +1337148,Sunny Top Floor Uptown Apartment,7251483,Marc,Manhattan,Inwood,40.86446,-73.92694,Entire home/apt,125,6,0,,,1,0 +1338362,AMAZING 2BD COL CIRCLE/BRAND NEW ;),1475015,Mike,Manhattan,Upper West Side,40.76934,-73.9863,Entire home/apt,125,30,2,2018-10-13,0.04,52,282 +1340982,Steps from Central Park,7273689,Olya,Manhattan,Upper East Side,40.77207,-73.95923,Entire home/apt,169,7,11,2019-01-05,0.20,1,24 +1342507,Brooklyn duplex 10 mins to U Square,7281456,Fabiano,Brooklyn,Williamsburg,40.70816,-73.93931,Entire home/apt,150,2,24,2019-01-03,0.53,1,296 +1342515,Furnished Room + Bath in Hamiliton Heights,7281500,Christian,Manhattan,Harlem,40.82343,-73.94507,Private room,61,1,86,2019-06-30,1.83,1,233 +1343532,Room2 in a Good Vibe Apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67275,-73.95144,Private room,40,7,14,2019-03-02,0.20,2,221 +1346003,1 Bedroom Railroad in Williamsburg,5605755,Amith,Brooklyn,Williamsburg,40.71652,-73.94309,Entire home/apt,150,3,52,2019-04-22,0.72,1,342 +1347126,Bedroom for 2 in 1896 townhouse,7308715,Brooke,Brooklyn,Fort Greene,40.69774,-73.97076,Private room,65,2,14,2019-05-31,0.20,1,275 +1347175,NYC from River dale's Perspective,7309046,Bojana,Bronx,Kingsbridge,40.88166,-73.91103,Private room,90,3,0,,,1,353 +1347204,Beautiful Central Harlem sleeps 4,7309232,London,Manhattan,Harlem,40.80861,-73.94574,Entire home/apt,190,3,123,2019-07-02,1.73,3,248 +1347478,Bright Bohemian master bedroom in Williamsburg,7310886,Kristin,Brooklyn,Williamsburg,40.71101,-73.95164,Private room,79,2,11,2019-04-21,0.80,1,73 +1347847,3 bedroom duplex Brooklyn townhouse,2061760,Lise,Brooklyn,Bedford-Stuyvesant,40.69376,-73.93776,Entire home/apt,225,3,230,2019-07-01,3.31,1,259 +1348118,Sweet Deal*Harlem2bdrm Apt #1/Sleeps4,7309232,London,Manhattan,Harlem,40.80862,-73.94516,Entire home/apt,185,3,141,2019-06-25,2.00,3,258 +1349187,Light filled Brooklyn apartment with skyline view,1330500,Dayna,Brooklyn,Crown Heights,40.67421,-73.9504,Private room,100,2,8,2018-11-26,0.11,1,156 +1349237,"Bright, Very Spacious, & Quiet Room in Manhattan",7320160,Smyles And Diara,Manhattan,Harlem,40.80887,-73.94756,Private room,85,2,146,2019-06-30,2.01,1,129 +1349658,"A Comfortable Room in a Great Location, Manhattan",5569141,Jiajia,Manhattan,Morningside Heights,40.80998,-73.95898,Private room,75,2,20,2019-06-07,0.33,1,29 +1350055,Cozy room in Beautiful Williamsburg Appartment,2035472,Alessio,Brooklyn,Williamsburg,40.71449,-73.95905,Private room,85,3,2,2019-02-03,0.32,1,89 +1351217,English Basement Studio Apartment / private entry,7318649,Stacey & Anthony,Brooklyn,Bedford-Stuyvesant,40.68208,-73.93115,Entire home/apt,98,3,144,2019-06-23,2.87,1,249 +1351427,Charming New 3br House+bkyard BRKLN,6414252,Arza,Brooklyn,Kensington,40.64734,-73.97334,Entire home/apt,262,30,1,2015-04-03,0.02,1,16 +1352560,XLG Studio Apt w/TONS of Amenities,7341015,Aviva,Queens,Long Island City,40.74318,-73.95108,Entire home/apt,145,2,30,2018-09-03,0.42,1,278 +1352657,Spacious 1BR Midtown Manhattan w DM,7341851,Maya,Manhattan,Upper East Side,40.76178,-73.96713,Entire home/apt,280,2,7,2019-04-01,0.11,1,365 +1354042,1BR East Village Duplex w/ Terrace,7021990,Tim & MaryAnn,Manhattan,East Village,40.72685,-73.97874,Entire home/apt,210,5,11,2019-06-11,0.18,1,8 +1354250,Beautiful Authentic 1BR Apt with skylight near all,1631330,Irina,Brooklyn,Fort Greene,40.68842,-73.97781,Entire home/apt,70,15,2,2016-01-30,0.03,1,0 +1354415,Great Flat in Historic Brownstone,7136700,Michelle,Brooklyn,Bedford-Stuyvesant,40.67927,-73.94252,Entire home/apt,100,3,162,2019-07-02,2.24,4,141 +1354775,Sunlit Noho Loft,7353062,Tim,Manhattan,NoHo,40.72631,-73.99387,Entire home/apt,250,1,0,,,1,0 +1354973,Gorgeous spacious. 2 subways close,306394,Marialuisa,Brooklyn,Bedford-Stuyvesant,40.6842,-73.9177,Private room,59,1,123,2019-06-30,2.23,1,336 +1356710,Sunny 1 Bdrm ❤️ Private Bath ❤️ No Cleaning Fee,4783987,Kim,Manhattan,East Village,40.72758,-73.97762,Private room,199,1,141,2019-06-27,4.51,1,130 +1357021,MIDTOWN EAST 1BR APARTMENT - NEW,1411399,Carlos,Manhattan,Midtown,40.75639,-73.96558,Entire home/apt,219,1,78,2019-06-22,1.10,5,301 +1358963,1 Bedroom in Sunny & Spacious Apt.,6776157,Giovanna,Brooklyn,Prospect Heights,40.67738,-73.96509,Private room,100,1,96,2019-06-28,1.36,2,333 +1359438,Perfect in Park Slope: EZ 2 NYC,3599914,Daniel,Brooklyn,Park Slope,40.67274,-73.97339,Entire home/apt,175,30,58,2019-06-30,0.81,1,220 +1360781,LUXMaster Suite 24hrDrm WestVillage,176903,Tana,Manhattan,West Village,40.73432,-74.00306,Private room,220,1,2,2013-10-09,0.03,2,364 +1360791,Renovated Big Private Room # 3,2712353,Masud,Brooklyn,Cypress Hills,40.68822,-73.8759,Private room,40,28,91,2019-06-24,1.25,4,325 +1360932,Cozy apartment in NY for 3 weeks,7387960,Max,Manhattan,Harlem,40.8266,-73.94443,Private room,120,15,0,,,1,365 +1361017,Vacation sublet in Brooklyn NY,7388499,Julia,Brooklyn,Park Slope,40.66945,-73.98157,Entire home/apt,140,2,24,2019-07-01,0.38,1,255 +1361428,Private room w Patio in Nolita,4194894,Esef,Manhattan,Nolita,40.72122,-73.99395,Private room,105,1,16,2019-06-19,0.23,2,308 +1363957,Charming WILLIAMSBURG 1 bdrm apt great location,3470583,Brandy,Brooklyn,Williamsburg,40.71327,-73.93979,Entire home/apt,110,10,6,2019-05-16,0.08,1,13 +1365000,Brownstone - Garden level - 2 rooms,287122,Dominik,Brooklyn,Clinton Hill,40.69074,-73.96619,Entire home/apt,131,7,140,2019-06-25,1.94,1,32 +1365028,Soho Loft. Authentic and Eccentric! 2 Bedroom.,7409102,James,Manhattan,SoHo,40.72411,-73.99865,Entire home/apt,265,4,95,2019-06-19,1.31,1,257 +1367775,Furnished room with private bathroom,7419960,Marilyn,Manhattan,Roosevelt Island,40.76175,-73.95012,Private room,54,30,5,2018-08-18,0.15,1,2 +1370154,Special Rate Luxury 2bd/2bth Apt W. Village,176903,Tana,Manhattan,West Village,40.73268,-74.00314,Entire home/apt,800,1,2,2014-08-23,0.03,2,364 +1370405,"Fresh, Simple Sleep in Brooklyn!",697442,Chris And Zach,Brooklyn,East Flatbush,40.64895,-73.94838,Private room,53,1,245,2019-07-06,3.41,3,90 +1371957,NEEDS TO BE DEACTIVATED- NOT AVAILABLE,7437876,Shamara,Manhattan,Washington Heights,40.833,-73.93806,Entire home/apt,99,3,5,2015-01-02,0.07,1,365 +1373456,Warm & Welcoming Private Room,1286275,Kerry,Brooklyn,Bushwick,40.7041,-73.92418,Private room,65,5,39,2017-05-28,0.56,1,187 +1374457,Bedroom in Williamsburg Brooklyn,5386695,Joanne,Brooklyn,Williamsburg,40.71668,-73.94083,Private room,55,28,0,,,1,365 +1377134,Room in lovely E.Village triplex,7460434,Rocco,Manhattan,East Village,40.72383,-73.9829,Private room,120,3,90,2019-06-14,1.25,2,173 +1377320,Classic and Comfortable UWS PreWar,7461332,Badrul,Manhattan,Upper West Side,40.79801,-73.97045,Entire home/apt,169,120,3,2013-09-06,0.04,1,36 +1377820,"Great Studio in Chelsea, New York",7463731,Alessandro,Manhattan,Chelsea,40.74572,-73.99637,Entire home/apt,180,4,28,2016-05-18,0.40,1,280 +1378165,Sunny Brooklyn Artists' Enclave! *huge room!*,7465509,Tyler,Brooklyn,Bedford-Stuyvesant,40.68732,-73.93004,Private room,67,7,2,2019-06-21,1.00,1,14 +1380326,Positive Cozy Room!,7475363,Lola,Manhattan,Upper East Side,40.76723,-73.9551,Private room,111,2,77,2019-06-17,1.10,2,259 +1382158,1 double room in modern apt in heart of soho,7458733,Alexandra,Manhattan,SoHo,40.72466,-74.0042,Private room,90,1,77,2019-07-05,2.00,1,269 +1382607,Family-Friendly 3 BR in Cobble Hill,6245535,Jennifer,Brooklyn,Carroll Gardens,40.68298,-73.99171,Entire home/apt,259,1,2,2016-08-22,0.04,1,0 +1386742,Columbus Circle/Central Park/Hells Kitchen,40100,Nicole,Manhattan,Upper West Side,40.76977,-73.98638,Private room,89,3,231,2019-06-27,4.67,2,38 +1390532,Amazing Designer Loft in BK Factory,7503643,Vida,Brooklyn,Greenpoint,40.72456,-73.94343,Entire home/apt,129,30,7,2019-03-27,0.11,52,189 +1391024,Bright Brooklyn Room in Shared Apt!,969279,Travis,Brooklyn,Bushwick,40.69731,-73.92417,Private room,69,2,98,2019-06-16,1.36,1,20 +1391683,Huge Sunny BR Washington Heights 1-4 guests,7474069,Carrie,Manhattan,Washington Heights,40.8469,-73.94522,Private room,75,4,14,2017-09-29,0.23,3,0 +1392144,3-Bed Brownstone on Beautiful Block,1873589,Jill,Brooklyn,Crown Heights,40.67071,-73.94752,Entire home/apt,250,5,25,2019-01-02,0.35,1,220 +1392330,"Verna's Brownstone Suite (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92364,Entire home/apt,120,1,226,2019-07-04,3.22,2,274 +1392673,Spacious Factory Converted Loft,7503643,Vida,Brooklyn,Greenpoint,40.72756,-73.9423,Entire home/apt,129,30,6,2018-09-02,0.09,52,249 +1396458,"Stylish 3 Bedrm, perfect for groups & 1/Pr'spct PK",1517723,Zoesarah (And) Anu,Brooklyn,Prospect Heights,40.6775,-73.96509,Entire home/apt,199,28,33,2019-05-11,0.47,1,315 +1397705,Unique 3BR Triplex in Brooklyn,346356,Matthieu,Brooklyn,Fort Greene,40.68996,-73.97855,Entire home/apt,450,3,82,2019-07-01,1.19,1,258 +1398234,Elegant SOHO One Bedroom,6083756,Sara,Manhattan,Nolita,40.72352,-73.99498,Entire home/apt,217,30,0,,,1,293 +1398326,"Charming, light-filled 1-bedroom",1705617,David,Brooklyn,Fort Hamilton,40.62347,-74.0359,Entire home/apt,90,7,0,,,1,0 +1398609,Perfect home away from home!,7553984,Hannah,Manhattan,Upper East Side,40.76893,-73.95967,Entire home/apt,350,3,53,2018-10-03,0.79,1,87 +1399187,Fabulous UWS Apartment,7556987,Menny,Manhattan,Morningside Heights,40.80684,-73.96404,Entire home/apt,160,24,10,2018-08-31,0.18,1,218 +1399273,NYC - furnished room - Greenpoint ,7130382,Walter,Brooklyn,Greenpoint,40.72991,-73.95208,Private room,45,4,7,2018-10-12,0.21,2,88 +1399352,A Nest in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69243,-73.94547,Private room,70,3,54,2019-06-17,0.77,5,316 +1399448,★HUGE beautiful E. Villager 2nd Av★,7558452,Zev,Manhattan,East Village,40.72463,-73.98938,Entire home/apt,260,1,320,2019-06-12,5.68,2,253 +1401826,As Seen In NY Magazine! Chic & Stylish!,7566397,Brett,Queens,Sunnyside,40.74342,-73.92635,Entire home/apt,100,30,2,2018-08-31,0.06,1,250 +1402084,"Waterfront Red Hook, Brooklyn",2362862,Louise,Brooklyn,Red Hook,40.67611,-74.01635,Entire home/apt,125,3,23,2019-06-03,0.64,1,77 +1403129,Penthouse Designer Loft Brooklyn,7573341,Robert,Brooklyn,Sunset Park,40.63947,-74.01888,Entire home/apt,195,2,220,2019-06-27,3.10,2,287 +1403466,Brooklyn Retreat,212738,Julian,Brooklyn,Bushwick,40.69916,-73.92219,Private room,58,5,31,2019-02-28,0.43,1,297 +1403635,Sunny & large W. Harlem private 1 bedroom.,754675,Lucy,Manhattan,Harlem,40.82036,-73.95589,Private room,75,5,3,2018-12-31,0.16,1,0 +1403870,Sunny Soho Apartment with Great Views,7576337,Beth,Manhattan,SoHo,40.72587,-74.00186,Entire home/apt,200,4,68,2019-04-27,0.95,1,21 +1404355,Jazz it Up in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69063,-73.94534,Private room,75,2,33,2019-05-23,0.52,5,201 +1404510, A charming Space in Brooklyn ,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94673,Private room,95,2,44,2019-01-25,0.64,5,47 +1404828,Bohemian Paradise in Industrial BK,7581642,Ehren,Brooklyn,Williamsburg,40.70759,-73.92678,Private room,99,2,189,2017-12-20,2.63,1,0 +1407364,BROOKLYN'S FAVORITE BROWNSTONE in HIPSTER BED-STUY,7591257,Ruty,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94201,Private room,275,3,20,2019-04-28,0.34,1,257 +1408406,"Beautiful, spacious apartment - with a cute cat!",5761173,Kappie,Brooklyn,Downtown Brooklyn,40.69648,-73.98261,Entire home/apt,162,2,11,2019-01-01,0.44,1,0 +1408914,"Modern, Art Deco Chelsea Studio",2594389,Arsen,Manhattan,Chelsea,40.74206,-73.99499,Entire home/apt,200,3,0,,,1,345 +1409947,SOHO Sanctuary Privately Owned,7603226,Lysa,Manhattan,SoHo,40.72347,-74.00488,Entire home/apt,285,5,11,2017-06-18,0.16,1,173 +1410197,Your Furnished Private Apartment,4165498,L.A.,Manhattan,East Harlem,40.79813,-73.93132,Entire home/apt,120,7,64,2019-04-03,0.91,2,184 +1411583,GREAT 1BR apt 162st at Amsterdam av,7499240,Candy,Manhattan,Washington Heights,40.8392,-73.94216,Entire home/apt,120,1,76,2019-01-13,1.07,2,314 +1411811,Charming Parlor Apt off Bleecker,4129805,Evelyn,Manhattan,West Village,40.73078,-74.00282,Entire home/apt,210,2,140,2019-06-10,2.10,5,319 +1415738,Private bedroom and bathroom in Brooklyn,7628445,Rosa,Brooklyn,Park Slope,40.67317,-73.97676,Private room,160,30,25,2018-08-22,0.35,1,363 +1416631,Family-Friendly Artist Loft in West Village,7633037,Jesse,Manhattan,West Village,40.73721,-74.00973,Entire home/apt,110,6,1,2018-09-01,0.10,2,0 +1420295,"Sunny, Bright, Vibrant Apartment in Williamsburg!",2357027,Harmon,Brooklyn,Williamsburg,40.71419,-73.95042,Entire home/apt,200,7,0,,,1,345 +1420559,Great 1BR apartment in a convenient location,3349838,Tom,Queens,Long Island City,40.74449,-73.95201,Entire home/apt,138,1,4,2016-07-05,0.06,1,41 +1421933,Room in Chelsea New York,7654246,Tamara,Manhattan,Chelsea,40.74036,-74.00138,Private room,90,3,5,2016-07-25,0.11,1,0 +1423112,"Private Room in Brooklyn, NY",7659871,Cristie,Brooklyn,Prospect-Lefferts Gardens,40.65671,-73.9622,Private room,45,30,21,2019-04-30,0.45,1,21 +1423175,Bright open space in Sunset Park,1403769,Anastasia,Brooklyn,Sunset Park,40.64674,-74.01043,Entire home/apt,80,30,18,2017-09-30,0.31,1,161 +1425801,Perfectly situated williamsburg apt,1862491,Ben,Brooklyn,Williamsburg,40.71406,-73.94965,Private room,70,10,0,,,1,365 +1426004,Charming private room & sunny deck!,7670501,Jennifer,Brooklyn,Bedford-Stuyvesant,40.6937,-73.93104,Private room,72,7,41,2019-06-11,0.58,1,68 +1426529,Comfy room in vibrant East Village,7672728,Brooke & Terry,Manhattan,East Village,40.72418,-73.98283,Private room,95,14,172,2019-05-25,2.39,1,14 +1427084,Private Room Private Restroom tons Natural Light,5531489,Aurelio,Brooklyn,Bedford-Stuyvesant,40.68584,-73.9263,Private room,75,5,13,2019-05-22,0.56,1,3 +1427401,Fully furnished private apartment..,7676839,Gabor,Queens,Astoria,40.76781,-73.92684,Entire home/apt,70,20,75,2018-09-15,1.05,1,364 +1427518,"Spacious, amenity-filled 1 BDR Williamsburg Apt",7654662,Elizabeth,Brooklyn,Williamsburg,40.71385,-73.93861,Entire home/apt,160,6,1,2013-09-07,0.01,1,0 +1428154,"Central, Peaceful Semi-Private Room",5912572,Tangier,Brooklyn,Flatbush,40.63899,-73.95177,Shared room,29,2,5,2014-10-20,0.07,1,321 +1428359,Comfy Park Slope 1 BR Apt Near Prospect Park,7681637,Linda,Brooklyn,South Slope,40.66453,-73.97912,Entire home/apt,175,3,62,2019-05-12,1.46,1,213 +1428371,Great Room in Astoria - New York,7681692,Ernesto,Queens,Astoria,40.76924,-73.91776,Private room,75,6,0,,,1,180 +1428648,Bright Rm avail in heart of Village,7683052,Leah,Manhattan,Greenwich Village,40.72998,-73.99999,Private room,110,3,7,2018-12-10,0.12,1,0 +1428844,Gorgeous sky-lit 2BR,266878,Jean & Gabriel,Brooklyn,Williamsburg,40.71362,-73.93561,Entire home/apt,175,3,199,2019-06-30,2.78,1,272 +1430650,"Columbus Circle Comfort, minutes from Times Square",7691518,Brent,Manhattan,Hell's Kitchen,40.768,-73.98695,Private room,99,1,123,2019-06-25,1.99,2,245 +1431246,Private bedroom + private bathroom,7693917,Brian,Manhattan,Inwood,40.86457,-73.92749,Private room,100,2,7,2015-12-07,0.15,1,36 +1433897,The Lavender Suite on Greene,33816,Kamaya,Brooklyn,Bedford-Stuyvesant,40.68714,-73.95775,Entire home/apt,144,5,3,2016-10-09,0.06,1,0 +1434010,Brooklyn College Manor,5654072,Mark,Brooklyn,Flatbush,40.63427,-73.95248,Entire home/apt,171,2,34,2019-07-02,1.47,3,243 +1436810,W80's Renovated with Chef's Kitchen,3038687,Karen,Manhattan,Upper West Side,40.78622,-73.97586,Entire home/apt,99,30,23,2019-04-20,0.32,8,89 +1437044,Gorgeous West Village Hidden Gem,3355679,Roxanne,Manhattan,West Village,40.73556,-74.00903,Entire home/apt,270,1,4,2015-10-04,0.06,1,0 +1438369,True Two Bedroom Apartment in Lower Manhattan,4314535,Arielle,Manhattan,Lower East Side,40.71444,-73.98348,Entire home/apt,160,3,220,2019-06-28,3.19,1,24 +1438870,Spacious very High ceiling place !,7728790,Celin,Manhattan,Harlem,40.82407,-73.94434,Private room,65,7,40,2019-06-13,0.86,1,64 +1439162,Cozy & Private 1 Bedroom Garden Level Apartment,7460181,Geraldine,Brooklyn,Bedford-Stuyvesant,40.68238,-73.93795,Entire home/apt,99,3,208,2019-06-25,2.89,1,206 +1440363,Artsy Harlem Guest Space,7735666,Laura,Manhattan,Harlem,40.81623,-73.94907,Entire home/apt,125,3,232,2019-06-13,3.22,1,47 +1442450,Saratoga Park Suite,7388128,Aqila,Brooklyn,Bedford-Stuyvesant,40.68669,-73.91897,Private room,72,3,0,,,1,365 +1442495,Spacious Duplex in Fun & Hip Area,5908577,Eric,Brooklyn,Crown Heights,40.67427,-73.95042,Entire home/apt,300,2,16,2019-06-09,0.24,2,41 +1444400,Large Room In Newly Renovated Hell's Kitchen Apt.,7755092,Ron,Manhattan,Hell's Kitchen,40.76391,-73.99225,Private room,112,1,196,2019-07-03,5.40,1,71 +1444924,New Law in New York | NO rentals under 30 days..,926743,Lancelot,Brooklyn,Carroll Gardens,40.67947,-73.99709,Entire home/apt,100,30,4,2019-01-28,0.06,1,321 +1445250,"1Bedroom, Seconds from L train",5109475,Liam,Brooklyn,Bushwick,40.70444,-73.92005,Private room,60,2,64,2019-06-01,0.89,2,87 +1445977,Spacious Loft in East Village,7701933,Henry,Manhattan,East Village,40.7262,-73.97913,Entire home/apt,232,10,2,2015-09-01,0.03,1,234 +1446009,Room in Colourful Williamsburg Apartment,1481172,Elena,Brooklyn,Williamsburg,40.70823,-73.94405,Private room,138,1,0,,,1,29 +1446483,Cozy 1BD in Vibrant East Village,5283769,Donna,Manhattan,East Village,40.7223,-73.9821,Entire home/apt,140,2,149,2019-06-16,2.41,1,16 +1448703,Beautiful 1 Bedroom in Nolita/Soho ,213266,Jessica,Manhattan,Nolita,40.72193,-73.99379,Entire home/apt,5000,1,2,2013-09-28,0.03,1,365 +1449263,Beautiful Brooklyn Brownstone Apt,7777902,Zachary,Brooklyn,Bedford-Stuyvesant,40.68665,-73.93293,Entire home/apt,168,2,1,2016-05-04,0.03,1,0 +1449546,Cozy Studio in Flatbush,7779204,,Brooklyn,Flatbush,40.64965,-73.96154,Entire home/apt,100,30,49,2017-01-02,0.69,1,342 +1452786,"A beautiful, and quiet place to stay in NYC!!!",6122499,Marjorie,Queens,Bellerose,40.73193,-73.74481,Shared room,150,2,0,,,1,365 +1453049,Studio Apt in the heart of Bushwick,2780717,Alonzo,Brooklyn,Bushwick,40.69979,-73.92078,Entire home/apt,95,4,21,2019-01-02,0.29,1,98 +1455804,One Bedroom Apt Near Central Park,4028305,Abigail,Manhattan,Morningside Heights,40.8057,-73.95826,Entire home/apt,175,2,1,2017-10-28,0.05,1,0 +1456142,"Modern, cozy artist's escape in WV",683794,Mark,Manhattan,West Village,40.73458,-74.00492,Entire home/apt,220,2,13,2019-06-09,0.23,1,3 +1456352,Monthly Rental or more than 30 days for 6 people,838704,Thomas,Manhattan,Upper West Side,40.80028,-73.9618,Entire home/apt,178,32,132,2018-05-01,1.84,1,211 +1457505,sunny beautiful studio apartment,7815949,Dee,Brooklyn,Crown Heights,40.67265,-73.9247,Entire home/apt,85,2,67,2018-11-12,0.97,1,8 +1458987,Room in My Apt. Rego Park Queens NY,7645338,King,Queens,Rego Park,40.72638,-73.85852,Private room,35,4,76,2019-02-04,1.07,1,5 +1460017,Lovely Factory Loft in Greenpoint!,7503643,Vida,Brooklyn,Greenpoint,40.72732,-73.94076,Entire home/apt,129,30,6,2018-09-11,0.08,52,277 +1461721,3B. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80759,-73.93839,Private room,55,1,167,2019-05-07,2.78,10,363 +1461814,Zen Supersized Master Suite,3604585,Jenny,Brooklyn,Flatbush,40.64187,-73.9586,Private room,69,4,34,2019-01-01,0.72,3,68 +1461873,"Cozy, quiet single room in Brooklyn brownstone",279845,Chantille & Linda,Brooklyn,Prospect Heights,40.6762,-73.96671,Private room,68,3,11,2019-01-27,0.33,2,187 +1461965,Private Bedroom WITH a Living room!,7833913,Gya,Brooklyn,Crown Heights,40.67471,-73.94571,Private room,69,2,90,2019-07-02,1.25,1,186 +1462341,Great Apt/Roof in Hells Kitchen,7837136,Jorion,Manhattan,Hell's Kitchen,40.76582,-73.99468,Entire home/apt,300,2,23,2018-09-23,0.32,1,365 +1465446,Historic Townhouse with Private Backyard,7850260,Raymond,Manhattan,Harlem,40.80533,-73.94665,Entire home/apt,175,1,152,2019-07-04,4.54,3,248 +1466081,JFK Jupiter Suites w/ Parking,7853251,Enyinne,Queens,St. Albans,40.6891,-73.7733,Private room,59,1,190,2019-06-16,2.64,5,359 +1466534,Jupiter Suites- Rm #1 (JFK),7853251,Enyinne,Queens,St. Albans,40.69045,-73.77467,Private room,59,1,19,2016-06-29,0.26,5,359 +1466552,ALL YOU NEED!! HK/TIME SQ./THEATER (READ REVIEWS),7112116,Ty,Manhattan,Theater District,40.76199,-73.98627,Private room,169,2,33,2019-04-10,0.47,2,340 +1466688,Bright Apartment In Williamsburg,7856381,Jp,Brooklyn,Williamsburg,40.70901,-73.95291,Entire home/apt,120,2,1,2015-05-17,0.02,1,0 +1467106,Bedford Stuyvesant Urban Hang Suite,7858405,Diavanna,Brooklyn,Bedford-Stuyvesant,40.69301,-73.94551,Entire home/apt,155,3,227,2019-06-14,3.16,1,244 +1467238,Charming Prime Williamsburg 2 bedroom Entire home,7859118,Kristen & Corey,Brooklyn,Williamsburg,40.71915,-73.94061,Entire home/apt,165,2,80,2017-07-19,1.28,1,188 +1467392,"VERY BIG, BEDROOM/ PRIVATE BATHROOM.",7858210,Maxime,Manhattan,Harlem,40.81384,-73.93973,Private room,60,2,125,2019-06-28,1.77,4,167 +1467618,1 min to Bedford Ave (L) Station,7860852,Matthew,Brooklyn,Williamsburg,40.71867,-73.9557,Entire home/apt,190,3,10,2019-05-26,0.26,2,0 +1469895,Bright and Spacious West Village Studio,6263540,Adam,Manhattan,West Village,40.73695,-74.00572,Entire home/apt,150,5,3,2018-01-01,0.13,1,0 +1469955,Luxury 1 Bedroom Upper West,10528,Olivier,Manhattan,Upper West Side,40.77864,-73.98437,Entire home/apt,150,30,18,2019-05-20,0.29,2,135 +1470069,Sunny Apartment in Clinton Hill,4130492,Keiko & Ilya,Brooklyn,Bedford-Stuyvesant,40.69077,-73.95745,Entire home/apt,120,4,26,2019-07-05,0.53,1,10 +1471244,Cozy w/amazing city views by PS1,4260529,Harry,Queens,Long Island City,40.74632,-73.94799,Private room,349,1,26,2016-12-13,0.36,2,365 +1471952,Jupiter Suites- Rm #2- (JFK),7853251,Enyinne,Queens,St. Albans,40.68872,-73.77373,Private room,59,1,14,2016-10-22,0.19,5,359 +1472002,SHARED STUDIO AT MANHATTAN'S HEART BY C. PARK,3003563,Rocio,Manhattan,Theater District,40.76035,-73.98026,Shared room,99,2,62,2019-05-23,2.22,1,21 +1472009,"Jupiter Suites, Rm #3- (JFK)",7853251,Enyinne,Queens,St. Albans,40.69054,-73.77306,Private room,59,1,32,2016-09-21,0.45,5,359 +1474752,Dope Williamsburg Apartment,2259113,Ange,Brooklyn,Williamsburg,40.71215,-73.95637,Private room,110,3,23,2019-05-06,0.32,1,159 +1474980,Be my Guest! Cozy East Village apt!,823392,Karen,Manhattan,East Village,40.72247,-73.97947,Private room,73,12,11,2019-06-29,0.16,1,21 +1475084,"Fun LES 1br, close to everything!",7895068,Ana,Manhattan,Chinatown,40.71608,-73.98962,Entire home/apt,179,3,201,2019-06-14,2.84,1,256 +1475427,Cozy Twin for the NYC Win! [Gay/LGBT Friendly],7896605,Daveyjoe!,Queens,Sunnyside,40.74234,-73.92579,Private room,102,5,8,2018-01-02,0.24,1,0 +1475631,BLYN BROWNSTONE CORZY CORNER in NYC,2015914,Majar,Brooklyn,Bushwick,40.68786,-73.91722,Private room,62,3,95,2019-02-11,1.32,8,338 +1475661,Gorgeous Apt. 20 min to Manhattan!,7897301,Rickey,Queens,Astoria,40.7703,-73.93306,Entire home/apt,140,2,13,2014-09-01,0.18,1,0 +1476238,Spacious Midtown 1BR Apt - 4.5 Stars/21 Reviews,7324189,Buke,Manhattan,Midtown,40.76084,-73.96908,Entire home/apt,300,15,6,2018-11-07,0.58,2,98 +1476484,Spacious Sunny SoHo-Awesome Locale!,7901999,Steven,Manhattan,Nolita,40.7245,-73.99419,Entire home/apt,299,2,26,2017-09-30,0.37,1,88 +1478315,1 bedroom in heart of Fort Greene,1834942,Tessa,Brooklyn,Clinton Hill,40.69332,-73.96543,Entire home/apt,104,12,11,2017-07-30,0.15,1,15 +1478946,"Prime Chelsea Location,Washer/Dryer",7245581,Michael,Manhattan,Chelsea,40.75029,-73.99556,Entire home/apt,98,120,38,2019-05-15,0.54,19,290 +1479113,"Spacious, quiet room with private full bathroom.",176836,Gil,Manhattan,Lower East Side,40.71501,-73.98061,Private room,49,1,90,2019-01-01,1.29,1,0 +1479283,"Great Chelsea Location, Couch/2nd bed, Free WiFi",7245581,Michael,Manhattan,Chelsea,40.75028,-73.99533,Entire home/apt,96,115,45,2019-03-15,0.63,19,210 +1479349,Sunny Private Room in Williamsburg,5464042,Nicole,Brooklyn,Williamsburg,40.70952,-73.95078,Private room,80,3,130,2017-05-04,1.85,1,0 +1479731,Master Bedroom in Modern Loft Apt.,7809536,Brian,Brooklyn,Crown Heights,40.68007,-73.96334,Private room,89,3,147,2019-07-01,2.05,1,362 +1480002,Huge rm in 1500sq ft loft w/lots ,7919277,Daren,Manhattan,Lower East Side,40.71862,-73.99154,Private room,125,1,1,2013-09-16,0.01,1,364 +1481907,Charming BK Townhouse Home by Highland Park!,7938019,Megan,Brooklyn,Cypress Hills,40.68505,-73.8718,Entire home/apt,345,2,78,2019-06-30,2.49,1,185 +1483688,Peaceful Studio in Fort Greene,477140,Mark,Brooklyn,Fort Greene,40.6862,-73.97184,Entire home/apt,150,3,17,2016-09-24,0.43,1,0 +1484031,"Private room in cozy Harlem, NY Apt",6228539,Michelle,Manhattan,Harlem,40.80427,-73.95404,Private room,100,2,15,2019-05-20,0.21,2,326 +1484310,1 bed aprt best location in NewYork,7727015,Lucie,Manhattan,Lower East Side,40.7204,-73.99042,Entire home/apt,120,5,9,2016-09-28,0.16,1,0 +1486099,All New Bohemian Chic 1BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.72267,-73.94362,Entire home/apt,149,30,9,2018-02-18,0.13,52,343 +1487222,2BR Sunlight & Secret Garden Apartment,1308282,Sam,Brooklyn,Crown Heights,40.67838,-73.95549,Entire home/apt,145,4,18,2018-11-25,0.25,1,0 +1489426,New york Multi-unit building,7964729,Justin,Manhattan,Financial District,40.70582,-74.00888,Entire home/apt,390,3,1,2018-09-13,0.10,1,0 +1490223,Private Bed & Bath in a townhouse:Charm-Calm-Cozy-,6586128,Martine,Bronx,Port Morris,40.80011,-73.9133,Private room,60,21,19,2019-01-02,0.28,2,178 +1491991,Charming Brwnstn Duplex sleeps 5,7959444,Molly,Brooklyn,Park Slope,40.6747,-73.97947,Entire home/apt,190,3,17,2018-10-22,0.28,1,167 +1492286,West Village/SoHo Prvt Rm,7977178,Abby,Manhattan,SoHo,40.72822,-74.00429,Private room,80,3,51,2019-04-26,0.79,3,276 +1492856,small room in bedstuy P,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68411,-73.95169,Private room,55,1,162,2019-06-19,2.26,15,334 +1494527,Huge Loft In South Williamsburg,7988149,Moses,Brooklyn,Williamsburg,40.71202,-73.96602,Entire home/apt,275,2,195,2019-06-30,2.74,1,331 +1496319,Private Huge 2br Williamsburg Artist Apartment!,7997061,Rebecca,Brooklyn,Williamsburg,40.71471,-73.94045,Entire home/apt,250,1,87,2019-06-27,1.23,1,272 +1497024,New York City Historical Brownstone Ground Floor,8000315,Naima,Manhattan,Harlem,40.82124,-73.94973,Entire home/apt,100,2,271,2019-06-30,3.85,2,270 +1499635,Gorgeous apartment by Grand Central,1601577,Tilia,Manhattan,Murray Hill,40.74776,-73.97335,Entire home/apt,600,4,7,2015-09-04,0.10,1,0 +1503618,"Private, quiet Antique room on first floor duplex",6457253,Irene,Brooklyn,Sunset Park,40.66405,-73.9923,Private room,66,2,4,2019-05-12,0.08,1,365 +1503670,Best location in Brooklyn!,2024924,Lisa,Brooklyn,Park Slope,40.67171,-73.98079,Private room,65,7,58,2019-03-29,0.83,2,333 +1506985,Garden Rowhouse Duplex-2 bd/3 bth,8049757,Omar,Manhattan,East Harlem,40.80108,-73.94346,Entire home/apt,220,4,60,2019-06-19,0.85,1,332 +1507845,"Rare large modern garden studio, comfy; location!",109505,Jason,Manhattan,Upper East Side,40.77006,-73.95441,Entire home/apt,159,2,114,2019-06-23,1.62,1,46 +1511216,Private room in 2 bedroom apartment,8071107,Tov,Brooklyn,Williamsburg,40.7057,-73.93836,Private room,70,2,31,2017-03-31,0.44,2,20 +1511303,Private fits 3 ppl. Prospect Park ,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.65936,-73.95139,Private room,49,5,84,2019-06-16,1.17,3,296 +1511534,Huge Room with View in Bushwick!,8071900,Jordan,Brooklyn,Bushwick,40.70121,-73.91883,Private room,47,5,21,2018-11-30,0.36,1,56 +1512006,Designer Space For Families: 2 Bed | 2 Bath,4731948,Kiki,Manhattan,Lower East Side,40.71804,-73.99147,Entire home/apt,299,1,200,2019-06-02,2.80,4,100 +1514939,Bright Studio Apt on Prospect Park,8088731,Jon,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96107,Entire home/apt,79,7,19,2019-02-18,0.43,1,0 +1515026,"Garden Apartment, Ft. Greene",1396183,Lee,Brooklyn,Fort Greene,40.69197,-73.97218,Entire home/apt,115,4,12,2019-02-22,0.17,1,0 +1515611,"AMAZING, HUGE NEW YORK LOFT!",8092548,Habib,Brooklyn,Clinton Hill,40.68639,-73.9624,Entire home/apt,229,3,38,2019-06-25,0.54,1,364 +1515659,Relax at our duplex + backyard,8092818,Romi,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94645,Entire home/apt,115,5,3,2014-04-02,0.04,1,0 +1515692,Beautiful Lower East Side Penthouse,4358024,Jonathan,Manhattan,Greenwich Village,40.73051,-73.99518,Entire home/apt,1100,2,17,2018-10-20,0.25,2,364 +1516120,Art Dealer's One of a Kind Williamsburg Aptartment,228583,Angelo,Brooklyn,Williamsburg,40.71,-73.9523,Entire home/apt,165,4,10,2018-10-06,0.14,1,49 +1517917,Elegant modern 1-bedroom in Bed-Stuy,1430128,Jenn,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94678,Entire home/apt,67,6,10,2018-05-30,0.39,1,0 +1519957,BedStuy with a View,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69289,-73.94356,Private room,68,3,52,2019-06-24,2.44,3,72 +1519994,McSimon's | Queen Room | 10 mins from JFK,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63591,-73.90941,Private room,85,3,1,2019-01-04,0.16,2,132 +1520806,HUGE 2BR+1BA Apt For Group Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92804,Entire home/apt,170,3,134,2019-06-20,2.00,3,209 +1521318,"modern, convenient safe Midwood, Brooklyn",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62666,-73.96094,Private room,95,3,46,2019-07-01,0.76,3,86 +1521335,Private Room in Brooklyn Brownstone,8120180,Ivey,Brooklyn,Bedford-Stuyvesant,40.68329,-73.95111,Private room,45,3,2,2016-07-09,0.05,1,0 +1523556,Simply brooklyn. Bedroom with office off L train.,7304881,Amanda,Brooklyn,Williamsburg,40.71041,-73.93847,Private room,178,2,2,2016-09-04,0.06,1,0 +1524017,CHELSEA BROWNSTONE 1BRM GARDEN APT ,8131878,Tabita,Manhattan,Chelsea,40.74461,-74.00172,Entire home/apt,140,5,50,2019-06-13,0.91,1,328 +1524302,Huge 1 Bedroom Loft at Habitat 101!,7503643,Vida,Brooklyn,Greenpoint,40.72686,-73.94177,Entire home/apt,149,30,7,2018-10-31,0.11,52,281 +1524562,Stuyvesant Heights Townhouse,4540899,Tee,Brooklyn,Bedford-Stuyvesant,40.69399,-73.93135,Entire home/apt,89,3,86,2019-05-26,1.29,1,223 +1524711,Sunny 1-Bedroom Apartment: Astoria,8135210,Milena,Queens,Astoria,40.76387,-73.92593,Entire home/apt,108,4,3,2015-12-01,0.06,1,0 +1524895,NYC apartment! Bright and spacious!,3217480,Victoria,Manhattan,Washington Heights,40.85652,-73.92975,Entire home/apt,138,7,14,2019-04-24,0.30,1,13 +1525602,Perfect Temporary Brooklyn Home,1200603,Andrea,Brooklyn,Crown Heights,40.66751,-73.95867,Entire home/apt,115,2,121,2019-05-31,1.70,1,39 +1526741,Comfy Couch in a nice and safe apt!!,6486116,Ari,Manhattan,East Harlem,40.79004,-73.94846,Shared room,69,1,136,2019-04-04,2.13,4,103 +1530386,A Lovely 2br in Chelsea,8163133,Nikhil,Manhattan,West Village,40.73988,-74.0036,Entire home/apt,269,2,68,2019-06-20,1.14,1,311 +1530660,Boutique Williamsburg Duplex Apartment,173980,Will And Jo,Brooklyn,Williamsburg,40.70919,-73.95012,Entire home/apt,160,30,13,2014-01-05,0.18,2,252 +1530919,2bd in heart of Soho/Little Italy!,4045167,Manuel,Manhattan,SoHo,40.71908,-73.99976,Entire home/apt,150,1,2,2015-03-18,0.03,1,207 +1533652,Charming Central Park Studio: Summer Park Strolls!,8178950,Mari,Manhattan,Upper West Side,40.78357,-73.97268,Entire home/apt,121,7,76,2019-06-30,1.11,1,151 +1533807,Sunny Spacious Dwelling,8179855,Kris,Brooklyn,Flatbush,40.63863,-73.95729,Entire home/apt,95,7,22,2019-06-21,0.49,1,20 +1534212,Great studio with 2 rooms and kitchen,7365834,Alex,Brooklyn,Sheepshead Bay,40.58426,-73.95949,Entire home/apt,99,3,66,2019-05-27,1.05,5,365 +1534782,Cozy,8184930,Leonice,Brooklyn,Prospect Heights,40.68249,-73.97139,Private room,40,1,73,2019-05-13,1.10,1,65 +1535607,"EV, Hippest East Village",2333904,Stephanie,Manhattan,East Village,40.72307,-73.97911,Private room,89,28,23,2019-05-05,0.38,3,125 +1538077,New Listing! Terrific Price.,8200820,Valerie,Brooklyn,Greenpoint,40.71938,-73.95136,Private room,50,2,11,2014-02-03,0.16,2,157 +1542279,nice room in bedstuy L,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6839,-73.95042,Private room,55,1,126,2019-06-19,1.77,15,343 +1546518,"Sunny, pretty Park Slope 3+ bed apt",66193,Brennan,Brooklyn,South Slope,40.66448,-73.98695,Entire home/apt,224,2,229,2019-06-24,3.28,1,257 +1546678,One Bedroom in Astoria NY,7646038,Malik,Queens,Ditmars Steinway,40.77448,-73.90907,Entire home/apt,120,2,2,2018-09-12,0.19,1,0 +1546945,(1) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75431,-73.83131,Private room,59,1,116,2017-09-06,1.63,2,0 +1549413,Beautiful Studio in Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.8033,-73.95008,Entire home/apt,135,31,177,2019-06-06,2.49,4,340 +1551044,Nexus of the Universe!,8261145,Tommy,Manhattan,Lower East Side,40.72317,-73.9929,Entire home/apt,175,3,105,2019-06-19,1.49,1,274 +1552242,Single family home 2 bedrooms 2 bathrooms,8126811,Jessica,Queens,Long Island City,40.75676,-73.93463,Entire home/apt,250,3,184,2019-06-26,2.65,1,84 +1555919,East Village New Luxury Bldg - 1BR,8282962,Anna,Manhattan,East Village,40.7282,-73.98067,Entire home/apt,156,2,31,2019-05-16,0.44,1,3 +1559435,Gorgeous & Spacious Full 1 BR Apt,5191738,Alisha,Brooklyn,Bedford-Stuyvesant,40.68864,-73.9213,Entire home/apt,75,2,36,2019-06-25,0.66,1,0 +1559912,Quiet Large 1BR Near Columbia,8301763,Kevin,Manhattan,Morningside Heights,40.8061,-73.9662,Entire home/apt,79,5,9,2016-10-12,0.13,1,0 +1560339,Entire Modern Studio Apartment/Prime Location,3038687,Karen,Manhattan,Upper West Side,40.78981,-73.97518,Entire home/apt,104,30,27,2019-05-31,0.38,8,137 +1560408,Airy Designer Loft in Williamsburg,8300712,Andrew And Stine,Brooklyn,Williamsburg,40.7133,-73.94602,Entire home/apt,280,1,124,2019-06-23,1.77,1,359 +1564553,Cozy Room in Best Downtown NYC Location,8323145,Madeleine,Manhattan,Nolita,40.72411,-73.99372,Private room,80,4,131,2019-06-07,1.88,1,34 +1566326,Studio in South Williamsburg,7776144,Bertte,Brooklyn,Williamsburg,40.71171,-73.96101,Entire home/apt,136,30,50,2018-07-08,0.72,1,0 +1567225,"NYC LARGE 3 BR West Side Manhattan, New York City",8336526,Matthew,Manhattan,Upper West Side,40.78024,-73.97942,Entire home/apt,550,4,17,2019-04-29,0.27,1,201 +1569396,Ditmas Park Carriage House Loft,8111912,Jed,Brooklyn,Flatbush,40.64361,-73.96821,Entire home/apt,190,2,95,2019-06-29,1.65,2,349 +1570204,SPECIAL OFFER* 1BDR IN EAST VILLAGE,377151,Shervin,Manhattan,East Village,40.72915,-73.98565,Entire home/apt,199,2,29,2019-06-30,0.47,1,361 +1571455,"NEW YORK, Queens "" WELCOME "" ",8316059,Jorge,Queens,Woodside,40.74409,-73.89864,Private room,75,2,25,2018-10-28,0.40,1,365 +1572815,Private room - Heart of East Village,4106680,Alexandre,Manhattan,East Village,40.72853,-73.98619,Private room,100,1,212,2019-06-23,3.05,1,278 +1573068,COZY STUDIO,8362282,Drica 2017,Manhattan,Upper West Side,40.78808,-73.9754,Entire home/apt,125,1,15,2016-05-24,0.21,1,362 +1576883,Entire Floor of Brooklyn Brownstone,6866353,Julie,Brooklyn,Bushwick,40.68585,-73.90686,Private room,75,2,12,2018-07-01,0.24,1,0 +1578103,Private room in Harlem gem with fab New Yorkers!,245881,Steph,Manhattan,Harlem,40.80355,-73.95227,Private room,99,2,30,2019-06-29,2.61,1,24 +1578721,"Huge, Sunny Greenpoint Flat",999689,Eric,Brooklyn,Greenpoint,40.72887,-73.95163,Private room,35,30,5,2014-04-23,0.07,1,97 +1578776,Nice private room in Astoria,4645357,Beatrix,Queens,Long Island City,40.75909,-73.93217,Private room,51,1,165,2019-06-23,2.36,1,361 +1581579,★★★★★- Lux Astoria |❤of NYC| Near subway/Manhattan,7748180,Ryan,Queens,Ditmars Steinway,40.77787,-73.91472,Entire home/apt,188,2,260,2019-07-07,3.97,1,312 +1582540,1-bedroom APT SoHo / NoLITa,8422502,Stephan,Manhattan,NoHo,40.72545,-73.99492,Entire home/apt,90,7,2,2015-12-23,0.04,1,0 +1583111,Modern Design in Sunny Duplex,4894525,Am,Brooklyn,Crown Heights,40.68034,-73.9615,Entire home/apt,279,3,9,2018-12-31,0.19,1,0 +1583335,West Village 2 br 850 sf - right by the Hudson!,117236,Raj,Manhattan,West Village,40.73078,-74.0104,Entire home/apt,350,4,9,2018-06-11,0.14,1,13 +1583653,Private room and bathroom,8434244,William,Manhattan,East Harlem,40.79255,-73.93842,Private room,125,2,59,2019-06-16,0.84,1,360 +1584060,"Safe upscale room, Flatbush, Brooklyn, near subway",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62733,-73.96102,Private room,85,4,38,2019-05-14,0.56,3,81 +1586454,Private Room With Patio In Queens,8452695,Macit,Queens,Maspeth,40.73732,-73.90168,Private room,48,20,33,2019-04-21,0.46,2,297 +1586576,Private Bedroom in QUEENS,8452695,Macit,Queens,Maspeth,40.74033,-73.89921,Private room,56,28,14,2017-04-15,0.20,2,310 +1586641,SALE- SUNNY MASTER BEDROOM NEAR MANHATTAN,8452639,C S,Brooklyn,Flatbush,40.64919,-73.96143,Private room,84,2,68,2019-05-27,0.96,3,362 +1586773,Beautiful Brownstone in West Harlem,8455776,Wendy,Manhattan,Harlem,40.82453,-73.94923,Entire home/apt,155,1,123,2019-06-24,1.74,2,170 +1586935,Luxury Gramercy Lg 1Bd w Balcony,8457613,Erin,Manhattan,Gramercy,40.73494,-73.98751,Entire home/apt,250,365,0,,,1,365 +1588221,Large 2 BR Loft Downtown NY,1400369,Ernesto,Manhattan,Chinatown,40.71702,-73.99566,Entire home/apt,300,5,31,2019-06-23,0.45,1,278 +1589248,Hip Apartment in Williamsburg,8255208,Kate,Brooklyn,Williamsburg,40.70951,-73.96262,Entire home/apt,140,1,1,2015-07-16,0.02,1,0 +1589715,Private: The Brass Room,8481125,Thomas,Manhattan,Upper East Side,40.76142,-73.96086,Private room,120,7,19,2019-04-19,0.27,2,245 +1591811,Sunlit apartment in Williamsburg,8265050,Jae,Brooklyn,Williamsburg,40.71188,-73.95155,Entire home/apt,99,2,198,2019-06-17,2.78,2,89 +1593444,Designer Home in Village Center,8289606,Stephen,Manhattan,Greenwich Village,40.73158,-73.99254,Entire home/apt,240,7,19,2019-05-23,0.27,1,158 +1596314,Gorgeous charming Manhattan 1bdrm Alexa Smart Home,4327300,Stephen,Manhattan,Washington Heights,40.83399,-73.94474,Entire home/apt,72,7,27,2019-05-25,0.46,1,73 +1598012,"Close to the city, Astoria",3360223,Rosemary,Queens,Astoria,40.76792,-73.92228,Private room,45,4,68,2019-01-01,0.96,1,0 +1598033,Staten Island Apartment - 2nd floor,7875272,Mary,Staten Island,Port Richmond,40.62947,-74.13378,Entire home/apt,250,30,1,2015-10-07,0.02,3,0 +1598328,Room in heart of the West Village!,8521063,Wes,Manhattan,West Village,40.73254,-74.00467,Private room,100,2,48,2019-01-02,0.90,1,78 +1598785,SUNNY STUDIO MIDTOWN EAST W/DOORMAN,8038118,Maria,Manhattan,Midtown,40.7529,-73.97094,Entire home/apt,175,5,116,2019-05-27,1.65,1,299 +1598863,1Br apt + backyard -east village,8523970,Tanya,Manhattan,East Village,40.72694,-73.98304,Entire home/apt,200,5,10,2019-04-26,0.14,1,0 +1600917,"Jupiter Suites, Rm #4 w/Bthrm-(JFK)",7853251,Enyinne,Queens,St. Albans,40.69015,-73.77472,Private room,59,1,8,2017-05-11,0.12,5,359 +1601955,"Cozy, QUIET Dream Home in SEAPORT",2698515,Chandler,Manhattan,Financial District,40.70939,-74.00121,Entire home/apt,420,2,285,2019-07-02,4.02,1,294 +1604488,Private room with stunning view,8548430,Bernardo & Andressa,Brooklyn,Williamsburg,40.72149,-73.96174,Private room,120,3,142,2019-07-07,2.01,1,37 +1604489,Spacious and modern Chelsea loft,8548453,Jon,Manhattan,Chelsea,40.74611,-73.99209,Entire home/apt,295,30,3,2016-09-19,0.04,1,235 +1606312,Williamsburg 2BR 2BA Hotel Condo,3130819,Shana,Brooklyn,Williamsburg,40.72079,-73.95641,Entire home/apt,200,120,12,2014-07-21,0.17,1,306 +1608220,The Heart of Bushwick!,7009551,Joseph,Brooklyn,Bushwick,40.70188,-73.92275,Private room,48,7,61,2019-02-15,0.87,1,0 +1609672,CENTRAL PARK/ TIMES SQUARE,5533135,Rodrigo,Manhattan,Hell's Kitchen,40.76476,-73.99011,Entire home/apt,99,2,55,2019-06-30,0.78,1,182 +1613110,Sunny Studio Loft @ Habitat 101,7503643,Vida,Brooklyn,Greenpoint,40.7257,-73.94181,Entire home/apt,129,30,8,2019-01-30,0.12,52,344 +1614817,PRIME apartment in East Village!,5283853,Chara,Manhattan,East Village,40.73082,-73.98693,Entire home/apt,160,2,44,2018-01-01,0.64,2,0 +1614869,"Cute, quirky Park Slope Jr 1 bdroom",1254489,Randy,Brooklyn,Park Slope,40.67477,-73.97404,Entire home/apt,142,4,41,2019-06-18,0.58,1,151 +1614964,Charming Room in Astoria!!,8783166,Marinez,Queens,Astoria,40.76752,-73.9273,Private room,120,3,12,2019-05-21,0.17,2,365 +1615764,"",6676776,Peter,Manhattan,Battery Park City,40.71239,-74.0162,Entire home/apt,400,1000,0,,,1,362 +1616540,Modern Clean 1 Bedroom apt in Clinton Hill,953843,Sara,Brooklyn,Clinton Hill,40.68572,-73.9641,Entire home/apt,130,7,26,2018-03-07,0.41,1,182 +1617443,Great Artistic Studio in Historic Building,2240143,Pavel,Manhattan,Harlem,40.81606,-73.94363,Shared room,85,3,38,2019-05-27,0.56,1,157 +1617488,Rooftop Oasis in Brooklyn for Shoots & Gigs,8102595,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95757,Entire home/apt,600,1,48,2015-10-11,0.68,1,89 +1619695,Only 10 mins to CENTRAL PARK! :),8616291,Chikie,Manhattan,Harlem,40.82184,-73.95031,Private room,69,5,152,2019-06-29,2.14,2,110 +1620225,Charming studio in Williamsburg,8619862,Karlee,Brooklyn,Williamsburg,40.70863,-73.95543,Entire home/apt,150,3,1,2016-07-18,0.03,1,0 +1620248,Large furnished 2 bedrooms- - 30 days Minimum,2196224,Sally,Manhattan,East Village,40.73051,-73.9814,Entire home/apt,10,30,0,,,4,137 +1621235,An artist place in Bedstuy,1345611,Bahiyyah,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95223,Private room,87,1,4,2019-06-30,2.26,1,12 +1623431,Enormous Chrysler-View Bedroom/Bath,5440087,Dn,Manhattan,Midtown,40.7513,-73.97239,Private room,249,3,1,2015-09-30,0.02,2,87 +1624665,"Bushwick Biodome Loft, Fun & Unique, Great View!",8638841,Nathan,Brooklyn,Williamsburg,40.70537,-73.92975,Private room,65,4,142,2019-06-26,2.03,1,115 +1628156,A Tree Grows in Brooklyn,8653725,Marlyn,Brooklyn,Canarsie,40.64308,-73.9077,Entire home/apt,175,3,158,2019-07-07,2.27,1,317 +1628564,Stylish Room on Express Line to Midtown,5334697,Shane,Manhattan,Washington Heights,40.83942,-73.93855,Private room,79,5,112,2019-07-02,1.59,3,1 +1630572,Private Room in Designer's NYC Apt,2935265,Andrew,Manhattan,SoHo,40.72391,-73.99879,Private room,194,2,141,2019-06-21,2.00,2,340 +1631845,1 bedroom apartment in NYC,1232988,Matthew,Manhattan,Lower East Side,40.71915,-73.99309,Entire home/apt,150,3,19,2019-06-16,0.27,1,9 +1633313,Bohemian W'Burg Duplex,8677042,Malcolm,Brooklyn,Williamsburg,40.7086,-73.94715,Entire home/apt,241,2,1,2018-12-26,0.15,1,0 +1633420,NYC Harlem cozy private room,8677477,Tia,Manhattan,Harlem,40.81307,-73.93854,Private room,80,1,73,2019-05-24,1.08,1,309 +1633924,Smart Family 1BD Retreat in Bedstuy,8680097,Zaire,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92505,Entire home/apt,120,4,72,2019-06-15,1.02,1,284 +1635088,Cosy studio in great location at UES,8685072,Agnes,Manhattan,Upper East Side,40.78013,-73.95082,Entire home/apt,155,4,13,2019-06-07,0.22,1,0 +1635672,Cute studio apt in West Village,8687489,Adam,Manhattan,West Village,40.7338,-74.00328,Entire home/apt,150,7,40,2017-11-25,0.57,1,0 +1640995,One bedroom apartment - UES,8313953,Natalie,Manhattan,Upper East Side,40.76866,-73.9536,Entire home/apt,140,6,36,2019-06-06,0.69,1,71 +1644133,Large Spacious Apt For Sublet,8726014,ELouise,Brooklyn,East Flatbush,40.63205,-73.94587,Entire home/apt,90,1,5,2019-05-03,0.08,1,361 +1644146,"Quaint, beautiful studio Brooklyn",1338262,Rachel,Brooklyn,Carroll Gardens,40.68468,-73.99145,Entire home/apt,150,3,94,2019-07-01,1.33,3,250 +1645181,Lovely Brownstone-- Close to Subway,8708720,Nehprii,Brooklyn,Bedford-Stuyvesant,40.68019,-73.93042,Entire home/apt,135,2,127,2019-06-23,1.80,1,354 +1645196,Park Slope 1BR with Private Outdoor Space,4623045,Sean,Brooklyn,Park Slope,40.67179,-73.97248,Entire home/apt,140,2,45,2019-05-27,1.64,1,31 +1645667,Truly A Sweet Home away from Home.,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68656,-73.95348,Entire home/apt,130,3,220,2019-06-23,3.11,2,0 +1645772,"Private Entrance/Bath, 2 story Apt.",8026393,Ruth,Manhattan,Upper East Side,40.77118,-73.9527,Private room,150,2,121,2019-06-29,1.72,1,225 +1645915,Cozy 1.5BD in Parkslope Brooklyn,1967871,Lisa,Brooklyn,South Slope,40.66623,-73.98217,Entire home/apt,115,3,185,2019-06-05,2.62,1,163 +1646432,Beautiful Home Away From Home!,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68471,-73.95325,Entire home/apt,130,3,229,2019-06-29,3.32,2,259 +1646838,1 BR apt in heart of the Village,8739354,Caspar,Manhattan,Greenwich Village,40.72831,-73.9987,Entire home/apt,380,6,29,2019-04-29,0.43,1,365 +1646910,"Bright, Cheerful Brooklyn Apartment",2899693,Kali,Brooklyn,Williamsburg,40.70773,-73.94144,Entire home/apt,115,20,1,2014-08-10,0.02,1,0 +1649957,GRACIOUS HARLEM 1 BEDROOM,8751800,Olubode Shawn,Manhattan,Morningside Heights,40.8117,-73.9555,Entire home/apt,125,2,21,2019-05-07,0.30,1,363 +1650470,Spacious room in Bushwick L & JMZ !,8753908,Rebecca,Brooklyn,Bushwick,40.70045,-73.93832,Private room,65,5,1,2015-06-01,0.02,1,169 +1651595,"Cozy Apartment, 30 min train ride to Times Square!",8759781,Augusto M Gallardo,Queens,Jackson Heights,40.75238,-73.87746,Entire home/apt,110,9,11,2019-06-01,0.16,1,362 +1652236,Amazing Spacious Room,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68708,-73.95126,Private room,31,6,41,2019-07-03,0.58,3,55 +1652996,Large Charming 1 BR + Den in Brownstone Apt,517966,Shean,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93911,Entire home/apt,135,3,173,2019-06-23,2.47,2,277 +1654551,"West Village: Cozy, Quiet 1BR Apt",8772693,Billy,Manhattan,West Village,40.73119,-74.00615,Entire home/apt,200,3,20,2016-10-01,0.29,1,0 +1654561,Cozy room in bed-stuy,8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68553,-73.94466,Private room,212,3,1,2019-04-09,0.33,3,109 +1654713,Brooklyn Wildlife Loft rm 2,5556571,Chris,Brooklyn,Williamsburg,40.70617,-73.93761,Shared room,40,1,34,2019-01-24,0.48,3,75 +1654738,GREAT BRAND NEW 1 BED! TIMES SQ!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.76364,-73.99465,Entire home/apt,80,30,12,2019-06-16,0.18,7,365 +1654929,COZY GARDEN APT IN BKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64233,-73.95655,Entire home/apt,95,2,147,2019-06-17,2.09,3,275 +1655550,Gorgeous NewModern_BestLocation!NYC,2119276,Host,Manhattan,Hell's Kitchen,40.76544,-73.9882,Entire home/apt,185,30,7,2018-12-26,0.13,39,347 +1655824,Art House Suite,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68194,-73.94068,Entire home/apt,100,1,59,2019-06-19,0.84,4,165 +1655880,"4BD, 2 Bath Apt Flatiron on 6th Ave",8778889,Steven,Manhattan,Flatiron District,40.74096,-73.9927,Entire home/apt,1200,1,0,,,1,0 +1656254,Habitat 101. Amazing 1br Loft Apartment,7503643,Vida,Brooklyn,Greenpoint,40.72531,-73.94222,Entire home/apt,149,30,9,2018-10-13,0.14,52,341 +1656539,West Village townhouse private suite incl bath,93790,Ann,Manhattan,West Village,40.73089,-74.00302,Private room,139,1,203,2019-07-01,2.87,2,32 +1656585,Sunny 1bd - Near SOHO Washington SQ,1147345,Molly,Manhattan,Greenwich Village,40.72866,-74.00095,Entire home/apt,226,3,25,2019-01-02,0.36,1,80 +1656621,Classic Brownstone private suite,5738733,Elizabeth,Brooklyn,Bedford-Stuyvesant,40.68978,-73.93751,Entire home/apt,74,2,189,2019-06-30,3.02,2,131 +1657110,Luxury & Charm. Steps from Christopher Park!,8315861,Jonathan,Manhattan,West Village,40.73433,-74.0036,Entire home/apt,195,5,52,2019-02-07,0.74,1,0 +1658703,Close to trains! Special long-term rates!!,8791051,Danielle,Brooklyn,East Flatbush,40.6526,-73.94999,Entire home/apt,104,59,48,2018-10-18,0.69,1,122 +1664209,2000 SQ FT Spacious Artist Loft in SOHO,1253125,Tanya,Manhattan,SoHo,40.72047,-74.00049,Entire home/apt,275,2,6,2019-04-28,0.51,1,5 +1664614,Great Views on Upper West Side,8796895,Rebecca,Manhattan,Upper West Side,40.7854,-73.97368,Private room,310,4,12,2017-09-22,0.18,1,358 +1664716,apartment in heart of East Village ,2110601,Julia,Manhattan,East Village,40.72379,-73.98826,Entire home/apt,145,29,3,2016-10-02,0.04,1,35 +1665498,"3rd FL, Private Suite w Own Bath & Study Area",8821936,Lynn,Staten Island,Shore Acres,40.61135,-74.06356,Entire home/apt,75,3,19,2019-05-30,0.28,1,258 +1668328,Quiet Williamsburg apartment,8265050,Jae,Brooklyn,Williamsburg,40.71084,-73.94861,Entire home/apt,99,2,201,2019-06-19,2.85,2,106 +1669149,Beautiful Modern Midtown Apartment,8838470,Carlos,Manhattan,Hell's Kitchen,40.76464,-73.98749,Entire home/apt,250,6,79,2019-01-01,1.12,1,137 +1669250,Large Studio w/ Entertainment Room!,3038687,Karen,Manhattan,Upper West Side,40.79221,-73.97476,Entire home/apt,104,30,24,2018-11-18,0.34,8,57 +1670517,Union Square area 1BD Apartment,8844412,Pat,Manhattan,Gramercy,40.73681,-73.98366,Entire home/apt,250,5,5,2018-09-19,0.07,1,358 +1672860,New**Beauty**W50's_Luxury&BALCONY!!,2119276,Host,Manhattan,Hell's Kitchen,40.76493,-73.98652,Entire home/apt,150,30,18,2019-04-04,0.27,39,340 +1672977,NEW_2BR_PrivateRoof&CityView_Beauty,2119276,Host,Manhattan,Hell's Kitchen,40.76703,-73.98874,Entire home/apt,195,30,17,2019-04-12,0.35,39,333 +1673040,NEW_Duplex_BreathtakingViews_Beauty,2119276,Host,Manhattan,Hell's Kitchen,40.76671,-73.98666,Entire home/apt,350,30,14,2019-06-17,0.22,39,327 +1673338,Comfortable Room + Kitty + Food,5719998,Charles,Brooklyn,Williamsburg,40.71346,-73.93883,Private room,75,1,23,2019-06-29,0.33,1,0 +1677887,Charming LG Bedroom by Park & Train,8756595,Jenny,Brooklyn,Prospect-Lefferts Gardens,40.66139,-73.96027,Private room,80,31,28,2016-07-12,0.40,1,167 +1678809,Sunny Spacious Retro 1 Bedroom,8619985,Mel,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93933,Entire home/apt,96,2,14,2019-06-25,4.62,1,50 +1682258,Big Studio Apt Convenient Gramercy,5434492,Elizabeth,Manhattan,Kips Bay,40.74011,-73.98185,Entire home/apt,200,1,0,,,1,0 +1682282,Private room in MANHATTAN NYC,8896180,Facundo Martin /Teresa,Manhattan,East Harlem,40.79053,-73.94398,Private room,90,3,139,2019-07-06,2.38,1,293 +1682958,Beautiful Cozy Room Great Price!,6194487,Rocio & James,Queens,Astoria,40.76359,-73.90586,Private room,79,1,274,2019-04-25,4.02,3,308 +1683227,Clean room near Columbia Univ,8900383,Zee,Manhattan,Morningside Heights,40.81326,-73.96181,Private room,220,1,0,,,1,365 +1683968,Landmark Loft in Williamsburg Brooklyn 1 month min,274702,Sabina Giovanna,Brooklyn,Williamsburg,40.71108,-73.96318,Entire home/apt,224,31,14,2018-08-05,0.20,1,219 +1684053,Arverne By The Bay Private Room & Bathroom,762610,Christopher,Queens,Arverne,40.59684,-73.79449,Private room,35,2,201,2019-06-18,3.28,2,88 +1687108,"Private, Clean and Comfortable NY",177712,Amara,Queens,Astoria,40.76394,-73.92022,Private room,70,7,34,2019-03-31,0.48,1,140 +1688711,Luxury Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66359,-73.95235,Private room,85,1,40,2019-06-07,0.83,10,293 +1688914,Strivers Row Sanctuary in Harlem - Monthly,8925763,Joy,Manhattan,Harlem,40.8174,-73.94629,Entire home/apt,110,30,128,2019-06-28,1.82,2,314 +1690764,One very large room two beds,8925493,Yvonne,Brooklyn,Bedford-Stuyvesant,40.68208,-73.9104,Private room,65,3,2,2019-05-07,0.06,2,365 +1691188,4 bedroom 2Bath apt Maspeth Queens,8934751,Mike,Queens,Maspeth,40.72509,-73.89687,Entire home/apt,200,4,24,2019-06-01,0.38,2,157 +1691798,Beautiful apt in the heart of LES,8937205,Golan,Manhattan,Chinatown,40.7157,-73.99183,Entire home/apt,249,31,6,2015-11-01,0.09,1,365 +1692823,ON A BUDGET COZY IN BROOKLYN In NYC,2015914,Majar,Brooklyn,East New York,40.66759,-73.88584,Private room,62,3,52,2019-05-27,0.74,8,361 +1693028,Private Room with adjoining bathroom,8918030,Theodore,Bronx,Williamsbridge,40.88296,-73.86264,Private room,50,1,19,2019-03-30,0.83,1,311 +1693171,BLYN SPECIAL BUDGET PRICE IN NYC,2015914,Majar,Brooklyn,East New York,40.66907,-73.88493,Private room,62,3,48,2019-06-17,0.68,8,340 +1693524,1 rm @ 3BR loft williamsburg room 3,4864306,Joseph,Brooklyn,Greenpoint,40.72668,-73.95555,Private room,50,2,13,2019-06-17,0.22,3,282 +1695731,1BR Apt in Murray Hill/Midtown,8955761,Murrel,Manhattan,Murray Hill,40.74722,-73.97734,Private room,55,1,0,,,1,0 +1696050,"Spacious Room, Central Location, Historic block.",4463092,Samuel,Manhattan,Harlem,40.80339,-73.95167,Private room,71,2,64,2019-06-26,1.02,2,18 +1696381,Charming Room Near Central Park,2717428,Ellen,Manhattan,East Harlem,40.7977,-73.93754,Private room,75,1,37,2019-06-30,0.53,1,139 +1697047,Charming Private Room with a View,4184612,Lynne,Brooklyn,Williamsburg,40.71251,-73.947,Private room,115,3,146,2019-06-09,2.08,1,277 +1698334,Williamsburg off Bedford/no extra $ for 2ppl!,1562642,Molly,Brooklyn,Williamsburg,40.7138,-73.96251,Private room,82,2,144,2019-04-02,3.37,1,0 +1699934,SAFE BUDGET IN Brooklyn NYC,2015914,Majar,Brooklyn,East New York,40.66874,-73.88548,Private room,75,3,34,2019-04-06,0.49,8,341 +1700471,CHARM Rm HAMILTON HEIGHTS Harlem,8289663,Shane,Manhattan,Harlem,40.81976,-73.94029,Private room,60,3,101,2019-06-10,1.44,1,340 +1701981,"Modern, Light-Filled Apt in Chelsea/Meatpacking",1120027,Clay,Manhattan,Chelsea,40.74072,-74.00438,Entire home/apt,200,7,11,2019-06-22,1.17,1,11 +1702032,The Top-Notch Top-Floor,8986314,Stephen,Brooklyn,Greenpoint,40.7337,-73.95427,Private room,90,1,0,,,1,0 +1702533,BROOKLYN FAVORITE VACATION HOME 2,8335875,Mr. Williams,Brooklyn,Park Slope,40.68242,-73.97904,Entire home/apt,215,3,59,2019-05-23,0.84,1,356 +1702581,PRIVATE. ROOM - Midtown/Central Park,5668786,Ed &Alexa,Manhattan,Hell's Kitchen,40.76796,-73.98601,Private room,100,2,244,2019-07-05,3.49,1,52 +1702781,Nice and quiet,7614595,Maria,Queens,Astoria,40.7672,-73.92799,Private room,38,30,7,2018-11-03,0.19,1,137 +1703506,"Gorgeous, Family-Friendly, NYC Apt!",706623,Emilia,Brooklyn,Bushwick,40.69383,-73.90837,Entire home/apt,159,3,11,2019-04-27,0.20,4,77 +1703834,Your Own Private Room To Sleep In! BEAUTIFUL!,8136206,Rob,Brooklyn,Prospect-Lefferts Gardens,40.65763,-73.96029,Private room,64,2,108,2019-06-16,1.61,2,296 +1704210,Gorgeous 1-2 bedroom(Prospect park),2731594,Ronak,Brooklyn,Windsor Terrace,40.64928,-73.97538,Entire home/apt,125,15,53,2019-03-27,0.75,1,5 +1704560,Beautiful/Spacious 1 Bedroom in LES,5693756,Daniel,Manhattan,Lower East Side,40.7189,-73.99177,Entire home/apt,120,4,182,2019-07-05,2.60,1,72 +1704798,Perfect cozy PRIVATE room!!,8998805,Koji & H,Manhattan,Chelsea,40.75224,-73.99487,Private room,76,3,164,2019-06-24,2.34,1,27 +1706997,Cozy 1BD next to Central Park,5662533,Megan,Manhattan,Upper West Side,40.77532,-73.97952,Private room,175,2,4,2016-08-05,0.10,1,0 +1707422,"VERY UNIQUE TOWNHOUSE in GREENPOINT, BROOKLYN",9008935,Robin,Brooklyn,Greenpoint,40.72646,-73.95799,Private room,110,5,7,2019-01-02,0.10,1,300 +1707823,Private Room in the Heart of Greenpoint,9010955,Lindsey,Brooklyn,Greenpoint,40.73487,-73.95789,Private room,75,1,69,2019-06-30,4.43,2,49 +1708771,"Comfort; Next to ""A"" express subway",840868,Ric,Manhattan,Washington Heights,40.85287,-73.93794,Private room,80,2,28,2019-07-02,0.40,2,327 +1712462,Cozy Private Room in Brooklyn NY,9031941,Sarah,Brooklyn,Greenpoint,40.72124,-73.93673,Private room,110,4,2,2017-09-04,0.06,1,0 +1712660,Cosy Room in Great Location -W'burg,2332618,Alison,Brooklyn,Williamsburg,40.70833,-73.95395,Private room,89,1,214,2019-06-28,3.07,2,354 +1713409,Sunny 1BR + Outdoor space [L line],6144668,Eydie,Brooklyn,Bushwick,40.70306,-73.92526,Entire home/apt,110,3,23,2019-06-23,0.33,1,67 +1716441,Large sunny room queen bed &balcony,153494,Amikole,Manhattan,Lower East Side,40.71906,-73.9845,Private room,96,1,274,2019-06-29,3.94,1,145 +1716640,One Stop to TimesSQ Vacation Apt,9051298,Lydiah,Manhattan,Harlem,40.81027,-73.94639,Entire home/apt,75,5,31,2016-04-11,0.49,2,0 +1717058,Top floor 1 bedroom soho/nolita,9053036,Raynald,Manhattan,Nolita,40.72182,-73.99625,Entire home/apt,185,3,65,2019-06-07,1.04,1,106 +1717138,"Cozy private Basement studio,15mins from the city",8943770,Patrick,Brooklyn,Flatbush,40.63304,-73.95625,Entire home/apt,49,2,23,2019-07-03,3.50,1,262 +1717149,Corner High Rise Apartment - City Views,9053452,Liam,Manhattan,West Village,40.74035,-74.00615,Entire home/apt,440,3,6,2015-11-21,0.09,1,70 +1717226,BIG BROOKLYN HOUSE TO LOVE,9053876,Amy,Brooklyn,Crown Heights,40.6776,-73.93504,Entire home/apt,220,7,18,2019-06-30,0.27,2,156 +1721115,Financial District Oasis Room-1 Queen Bed,9072771,Kindra,Manhattan,Financial District,40.70758,-74.00799,Private room,99,4,11,2019-06-20,0.18,2,365 +1725295,Midtwn E BEST LOCATION Priv Twin Rm 1 Loving Cat,215764,Lynn,Manhattan,Murray Hill,40.7474,-73.97847,Private room,85,1,135,2018-12-12,1.93,1,15 +1727923,Large private 1BR with backyard - Williamsburg,2510744,Isabelle,Brooklyn,Williamsburg,40.71316,-73.95648,Entire home/apt,98,7,7,2017-01-07,0.10,1,0 +1728339,Large Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66231,-73.95394,Private room,84,1,60,2019-06-26,1.05,10,302 +1728437,Cozy Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66182,-73.95338,Private room,65,1,38,2019-05-30,0.60,10,239 +1728625,New Williamsburg 1B With Backyard,9109049,Todd,Brooklyn,Greenpoint,40.71985,-73.94015,Entire home/apt,160,2,19,2017-12-04,0.32,1,0 +1728938,Sunny Room/private bath/ Brownstone,478717,Deborah,Brooklyn,Park Slope,40.67629,-73.97654,Private room,115,3,200,2019-05-28,3.16,1,256 +1729286,"Sunny, Large (Queen Bed) Private room in 2Bedroom",8366233,Helga,Manhattan,East Harlem,40.79377,-73.9361,Private room,59,14,30,2019-06-04,0.43,2,36 +1730937,Private room in Midtown East,9119678,Alex,Manhattan,Midtown,40.75622,-73.9728,Private room,119,2,27,2019-05-10,0.58,1,325 +1731245,"Sunny, Comfortable Space",7228995,Sophie,Brooklyn,Crown Heights,40.67394,-73.924,Entire home/apt,120,2,92,2019-06-24,1.37,1,311 +1731365,Duplex apartment with garden,7379093,Francesca,Manhattan,Upper West Side,40.79086,-73.96683,Entire home/apt,439,5,79,2019-06-29,1.15,2,154 +1731969,Beautiful UES residence minutes from everything,17318747,Jay,Manhattan,Upper East Side,40.77084,-73.95811,Private room,99,1,20,2019-06-30,0.42,2,278 +1732498,Hip Two Story BK Apt w/Private Yard,1818792,Clarissa & Rich,Brooklyn,Greenpoint,40.72716,-73.94971,Entire home/apt,199,2,25,2016-10-18,0.44,1,5 +1733054,"Williamsburg Brooklyn, Parkside Penthouse NYC View",8072802,John,Brooklyn,Williamsburg,40.7179,-73.95103,Private room,99,1,340,2019-07-01,4.90,2,263 +1733157,Private Family Home 2BR mins to Midtown Manhattan,9131167,Myrna And David,Queens,Astoria,40.76135,-73.91571,Private room,195,3,231,2019-06-30,3.51,1,304 +1734724,Williamsburg Luxury- 30 days +,8910286,Lane,Brooklyn,Williamsburg,40.72076,-73.95614,Entire home/apt,180,30,183,2017-12-17,2.63,1,0 +1735478,"Relaxing, serene room in NYC Apt",6790494,Paul,Queens,Long Island City,40.76081,-73.93163,Private room,100,20,52,2015-08-25,0.75,1,182 +1735804,Lovely Suite in Historic Brownstone near Subway,1755097,Jay,Brooklyn,Bedford-Stuyvesant,40.68972,-73.93073,Entire home/apt,115,2,210,2019-06-14,3.58,2,106 +1736064,Sunny 1BR Overlooking Prospect Park,721267,Debbie,Brooklyn,Prospect-Lefferts Gardens,40.65769,-73.96161,Entire home/apt,115,30,2,2019-05-16,0.03,1,0 +1738513,Sunny Floral Artist Apartment Chinatown LES,5064855,Krista,Manhattan,Two Bridges,40.70911,-73.99685,Entire home/apt,180,3,18,2019-06-30,0.26,1,72 +1739847,Welcome to a beautiful Quiet Bronx.,8989844,Ronald,Bronx,Soundview,40.82138,-73.87603,Private room,45,3,53,2018-08-18,0.82,1,249 +1740311,"LARGE PRIVATE BED + BATH, LES",9162713,Sarah,Manhattan,Lower East Side,40.72105,-73.98519,Entire home/apt,300,2,65,2019-06-28,0.96,1,350 +1741622,Cozy NY-style 1BDRM Apartment UES.,652092,Art,Manhattan,Upper East Side,40.76358,-73.95895,Entire home/apt,90,80,20,2016-10-31,0.29,1,203 +1741745,Private room in East Harlem,1845333,Annabel,Manhattan,East Harlem,40.79858,-73.93585,Private room,95,1,0,,,1,0 +1742471,View of Empire State Building!,2127723,Tavia,Queens,Sunnyside,40.74609,-73.91406,Entire home/apt,140,2,40,2019-05-20,0.60,1,20 +1742610,Studio in the Upper East Side ,2548224,Melissa,Manhattan,Upper East Side,40.78031,-73.94653,Entire home/apt,123,5,14,2019-05-30,0.20,1,0 +1742654,High Floor apt.near Columbus Circle,9173924,Jon,Manhattan,Hell's Kitchen,40.76708,-73.986,Entire home/apt,200,2,119,2019-07-07,1.89,1,216 +1743116,Cozy Room in Astoria,8783166,Marinez,Queens,Astoria,40.76549,-73.92934,Private room,100,3,4,2019-06-02,0.07,2,364 +1743379,Spacious Historic Williamsburg 2/1.5 Townhouse,9177920,Irie,Brooklyn,Williamsburg,40.70982,-73.9642,Entire home/apt,250,3,144,2019-07-05,2.06,1,128 +1744216,Prime Williamsburg Large bedroom for 1or2 people,2480939,Charles,Brooklyn,Williamsburg,40.71973,-73.96071,Private room,85,1,221,2019-06-26,4.10,3,206 +1744941,Charming One Bedroom,6544987,Timothy,Manhattan,Kips Bay,40.74148,-73.98304,Entire home/apt,100,3,3,2015-09-10,0.05,1,0 +1745358,Spacious and Chic Times Square 1 Bedroom,9186542,Soren,Manhattan,Hell's Kitchen,40.765,-73.98904,Entire home/apt,109,2,26,2019-05-18,0.49,1,139 +1745430,Bohemian 2BR DuplexLoft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72569,-73.94054,Entire home/apt,159,30,6,2019-06-10,0.10,52,310 +1745658,1 Bedroom in Greenwich Village,9187795,James,Manhattan,Greenwich Village,40.73236,-73.9992,Entire home/apt,260,5,13,2018-10-25,0.21,1,167 +1746726,"Chelsea NYC luxury 2 bed/2 bath, garden apt",4051126,Kris,Manhattan,Chelsea,40.74188,-73.99729,Entire home/apt,555,3,111,2019-07-03,1.63,1,191 +1747405,"Spacious, Cozy NYC Apartment - 1 Minute to Subway!",9117590,Samantha,Manhattan,East Harlem,40.80012,-73.94087,Private room,87,2,235,2019-06-29,3.37,1,23 +1747833,Affordable Clean Private Room NYC ,9197101,Alex Nova York,Bronx,Mount Eden,40.84367,-73.91718,Private room,43,2,11,2014-09-28,0.16,1,338 +1748189,UPPER EAST SIDE 1BR APT - CENTRAL,1411399,Carlos,Manhattan,Upper East Side,40.77219,-73.95073,Entire home/apt,199,1,29,2019-05-29,0.42,5,339 +1750248,"Priv room in 3 bdrm apt - Room ""A""",9207223,Ryan,Manhattan,Harlem,40.80247,-73.94531,Private room,90,2,17,2015-09-01,0.24,3,177 +1750527,"Modern, Sunny Duplex PENTHOUSE w/ BALCONY",3336010,Dahlia,Brooklyn,Bedford-Stuyvesant,40.69194,-73.95952,Entire home/apt,195,3,78,2019-05-12,1.13,1,312 +1750679,THE LINCOLN PARLOR,9209820,Althea,Brooklyn,Crown Heights,40.66946,-73.95008,Entire home/apt,185,3,115,2019-06-08,2.09,3,314 +1752112,NYC Central Park family apt - 3bdr,5862053,Alexana,Manhattan,Upper West Side,40.78952,-73.98097,Entire home/apt,400,7,19,2019-04-27,0.28,1,46 +1752206,Elegant 1b Near Everything,5243858,Yvonne,Manhattan,Chelsea,40.74314,-73.9957,Entire home/apt,200,2,144,2019-07-05,2.07,1,263 +1753671,Big quiet Sunny room in Upper East Side,4500999,Aaron,Manhattan,East Harlem,40.79692,-73.94434,Private room,100,1,41,2019-06-02,0.87,2,355 +1755484,Museum Mile Central Pk- Madison Ave,9232106,Lynne,Manhattan,Upper East Side,40.77648,-73.96126,Entire home/apt,225,4,10,2019-05-28,0.17,1,348 +1755844,Brooklyn Stunning Event Space.,2715012,Maurice,Brooklyn,Crown Heights,40.67247,-73.93616,Entire home/apt,450,1,9,2019-03-30,0.25,3,364 +1758391,"Sunny Room, Only 1 Block to Subway!",9234456,Angelo,Brooklyn,Bedford-Stuyvesant,40.69696,-73.93577,Private room,80,3,112,2018-01-01,1.61,2,0 +1759154,BEST Bushwick 1 Bedroom - 15 min to Manhattan,8998154,Gordon,Brooklyn,Bushwick,40.69366,-73.92281,Entire home/apt,89,4,123,2019-06-17,1.76,2,18 +1759462,Modern/Renovated/Best EV Location!!,9250406,Simon,Manhattan,East Village,40.72714,-73.98397,Entire home/apt,179,4,127,2019-05-28,1.83,1,17 +1759526,Lovely Room in Awesome Apartment - Fun/Convenient,104250,Yair,Manhattan,Chelsea,40.74563,-73.99325,Private room,90,3,6,2019-06-03,0.10,1,11 +1762513,"2bd/2bth, drmn, 1 block from subway in LIC",9264606,Jeremy,Queens,Long Island City,40.74849,-73.94947,Entire home/apt,275,7,0,,,1,0 +1762852,Charming and Cozy Bedroom in Artists Colony,173997,Beth,Brooklyn,Williamsburg,40.70942,-73.95302,Private room,35,2,3,2017-06-24,0.12,2,0 +1763209,"10mins to Manhattan, 59th St, 17mins Times Square.",9268156,DeLex,Queens,Astoria,40.76451,-73.92942,Private room,86,2,107,2018-11-01,1.58,1,0 +1763333,"Cozy 1 BR Apt - Sunnyside, Queens",9268805,David,Queens,Sunnyside,40.74244,-73.91676,Entire home/apt,95,1,41,2016-06-13,0.59,2,177 +1763736,Charming Upper West Side 1 Bedroom,1304097,Edon,Manhattan,Upper West Side,40.78448,-73.97386,Private room,116,1,43,2018-08-01,0.63,1,0 +1763956,Nice cozy bedroom with cool views in Hell's kit..!,9271872,Anthony,Manhattan,Hell's Kitchen,40.76421,-73.99115,Private room,80,5,62,2019-06-23,1.72,2,23 +1766846,Newly Renovated East Village Private Guest Studio,5586949,S & G,Manhattan,East Village,40.731,-73.98427,Entire home/apt,110,1,233,2019-07-06,3.39,2,17 +1767037,Small Cozy Room Wifi & AC near JFK,9284163,Antonio,Queens,Woodhaven,40.68968,-73.85219,Private room,29,2,386,2019-06-19,5.53,3,50 +1771965,Fully furnished 2 Bedrooms floor-through apartment,9306716,Sophie,Manhattan,Harlem,40.80266,-73.94728,Entire home/apt,200,60,74,2019-04-14,1.08,1,233 +1776732,2000 sqf Duplex in Townhouse,7379093,Francesca,Manhattan,Upper West Side,40.78852,-73.96746,Entire home/apt,390,5,108,2019-07-06,2.63,2,156 +1777007,Space For guest,3980927,Aude,Manhattan,Battery Park City,40.71078,-74.01623,Shared room,55,1,205,2019-06-15,3.04,1,326 +1777197,( Hostal ) 1 full size Mattress (Top Bunk),2793778,Fernando,Queens,Forest Hills,40.71697,-73.83396,Shared room,75,5,63,2019-05-19,0.91,5,19 +1777674,Charming space in lively neighborhood.,6327260,Joseph,Brooklyn,Crown Heights,40.67528,-73.95741,Private room,75,1,0,,,1,58 +1778294,Sweet Apartment on Quiet Block,367815,Liz,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95548,Entire home/apt,120,7,39,2019-06-22,0.91,2,50 +1780748,Sunny 1 bedroom In The Heart of NYC,9293512,Pk,Manhattan,Murray Hill,40.74881,-73.97234,Private room,143,2,37,2018-12-08,0.53,1,364 +1781052,CELEBRATE NEW YEAR'S EVE IN NYC,9348961,Colleen,Manhattan,Midtown,40.76456,-73.98233,Entire home/apt,250,3,1,2016-01-03,0.02,1,0 +1781697,Beautiful 1 bdrm in 2 bdrm apt,1482208,Allison,Brooklyn,Williamsburg,40.71284,-73.93965,Private room,99,3,19,2018-06-28,0.41,2,310 +1781786,Charming 1BR ,9352452,Zuffina,Manhattan,Harlem,40.80395,-73.95519,Entire home/apt,150,3,50,2019-05-07,0.74,1,152 +1782079,LOFT Private Room - MOVIE THEATER/GYM/LAUNDRY/ROOF,226697,Adriana,Brooklyn,Bedford-Stuyvesant,40.69009,-73.95314,Private room,55,10,20,2019-05-20,0.29,1,184 +1782437,1800sf Urban Goddess Brooklyn Loft,7880914,Claudia,Brooklyn,Bedford-Stuyvesant,40.69169,-73.9603,Entire home/apt,175,2,85,2019-06-17,1.31,1,287 +1782667,Bushwick Artist Loft - Cozy Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70818,-73.92202,Private room,69,1,142,2019-06-17,2.12,3,329 +1782872,Suite Spot in Tribeca,9358396,Anne,Manhattan,Tribeca,40.71481,-74.00934,Entire home/apt,184,4,22,2018-07-19,0.33,1,12 +1785141,Entire 1 Bedroom in Williamsburg,5481728,Mike,Brooklyn,Williamsburg,40.70658,-73.96759,Entire home/apt,145,2,6,2017-06-11,0.09,1,0 +1785187,Classic Cool Comfortable LES,8222814,Rock,Manhattan,Lower East Side,40.72131,-73.98527,Private room,100,3,210,2019-07-05,3.01,1,256 +1785942,"Private, Cozy Bedroom/ Barclay Ctr",1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.65987,-73.95076,Private room,44,5,79,2019-06-29,1.14,3,251 +1786408,A quite nice bedroom in Greenpoint,9375506,Selim,Brooklyn,Greenpoint,40.72495,-73.95112,Private room,70,3,0,,,1,0 +1787771,CHIC NEW YORK OASIS WITH ROOF DECK!,9381867,Gilleon,Brooklyn,Bedford-Stuyvesant,40.68273,-73.95437,Entire home/apt,185,1,0,,,1,0 +1788989,Sunny and charming Soho 1 bedroom,7607092,Tanja,Manhattan,Nolita,40.72311,-73.99476,Entire home/apt,225,3,10,2016-09-01,0.15,1,0 +1789715,2 BR Apt in Luxury Building - UES,6989380,Shane,Manhattan,Upper East Side,40.78277,-73.95164,Entire home/apt,199,2,2,2014-10-19,0.03,1,0 +1791105,Harlem Oasis,8535372,Ephraim,Manhattan,Harlem,40.81157,-73.95335,Private room,60,1,57,2019-05-24,0.91,1,301 +1793091,Private Studio Museum Block UWS,9407785,Ana Maria,Manhattan,Upper West Side,40.77631,-73.97953,Entire home/apt,175,3,258,2019-06-25,3.80,1,235 +1793411,Union Square/East Village Apartment,2273886,Ki,Manhattan,East Village,40.7312,-73.98857,Entire home/apt,199,5,4,2015-12-01,0.06,1,0 +1794250,"Large, bright Williamsburg room",7757648,Ana,Brooklyn,Williamsburg,40.70683,-73.95375,Private room,65,1,10,2019-05-20,0.44,1,73 +1796722,Effortlessly Chic WILLIAMSBURG BK,2140820,Cory,Brooklyn,Williamsburg,40.71295,-73.93874,Entire home/apt,190,2,11,2019-06-15,0.24,1,331 +1797025,Charming Spacious 1 Bdrm Apt,9340104,Mike,Brooklyn,Crown Heights,40.67204,-73.95147,Entire home/apt,107,3,143,2019-06-17,2.07,1,23 +1798210,NYC Super Cool East Village 1 BD,9430658,Maegan,Manhattan,East Village,40.72878,-73.97854,Entire home/apt,150,1,26,2016-09-05,0.38,1,0 +1798271,Spacious center hall colonial,9430973,Donna,Staten Island,Woodrow,40.53884,-74.19826,Entire home/apt,700,7,0,,,1,0 +1798500,DOMINIQUE'S NY*Wanderlust room/Metro/Bronx Zoo/Gdn,310670,Vie,Bronx,Co-op City,40.86317,-73.82494,Private room,75,2,32,2019-01-01,0.46,13,363 +1801036,Private room with sleeping loft,8200820,Valerie,Brooklyn,Williamsburg,40.7187,-73.95133,Private room,45,2,14,2014-02-01,0.20,2,36 +1801130,"Perfect Brooklyn Stay, Apt for 4",9443112,Isaac,Brooklyn,Park Slope,40.67749,-73.98031,Entire home/apt,179,2,15,2015-08-07,0.22,1,0 +1802584,YOUR PRIVATE COZY 1Br + 15min from Manhattan,2961266,John,Queens,Sunnyside,40.73747,-73.9248,Entire home/apt,110,1,92,2019-07-03,6.30,2,147 +1802838,Industrial Modern 1 Bedroom - Prime Williamsburg,2019832,Lauren,Brooklyn,Williamsburg,40.71875,-73.94935,Entire home/apt,245,2,14,2019-05-20,0.76,1,65 +1803165,Huuuge Sunny Central Park REAL 2 bedroom 1.5 baths,9453400,Lo,Manhattan,Midtown,40.76391,-73.9782,Entire home/apt,799,6,40,2018-09-01,0.58,1,365 +1803279,Near Subway Sunny Spacious Room in NYC,7239405,Katy,Manhattan,Morningside Heights,40.81569,-73.96058,Private room,100,2,12,2019-03-31,0.17,1,252 +1805150,nice room in bedstuy B,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68366,-73.95009,Private room,61,1,71,2019-07-04,1.06,15,314 +1805261,Flat Iron 2BD Beautiful Apt ,9462127,Krista,Manhattan,Flatiron District,40.74107,-73.98487,Entire home/apt,475,1,0,,,1,0 +1806138,Brooklyn Heights One Bedroom Loft,8423479,Sherief,Brooklyn,Brooklyn Heights,40.7001,-73.99183,Entire home/apt,275,5,16,2018-08-28,0.23,1,12 +1806378,Mayor's Mansion - Fort Greene,1929442,Claudia And Leo,Brooklyn,Fort Greene,40.68585,-73.97016,Entire home/apt,250,4,134,2019-07-02,1.95,1,222 +1806651,Bright and Airy Brooklyn Loft,3267818,Allison,Brooklyn,Williamsburg,40.70498,-73.92868,Entire home/apt,120,3,2,2015-01-02,0.03,1,0 +1807106,Stunning Limestone 1 Bdrm Flat,9223085,Danielle,Brooklyn,Crown Heights,40.67191,-73.93997,Entire home/apt,135,3,190,2019-06-25,2.77,1,267 +1807757,"SUNNY,SUPER CLEAN WEST VILLAGE APT",9473928,Hakan,Manhattan,West Village,40.73246,-74.00215,Entire home/apt,199,10,4,2019-01-02,0.06,1,3 +1808497,Queen size room in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69023,-73.94628,Private room,75,1,19,2019-06-22,0.29,5,289 +1808550,Invitation to travelers,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69096,-73.94613,Private room,75,7,30,2019-02-16,0.43,5,216 +1809547,"Priv room in 3 bdrm apt - Room ""B""",9207223,Ryan,Manhattan,East Harlem,40.80126,-73.9454,Private room,75,3,22,2016-01-05,0.32,3,177 +1810640,R & R In Harlem,4572968,Na'Im,Manhattan,Harlem,40.81748,-73.94539,Private room,140,1,0,,,1,365 +1811446,Private Room,9490594,Brian,Manhattan,Chelsea,40.74166,-73.99892,Private room,90,30,83,2017-10-23,1.20,1,282 +1812111,Spacious Parkside View Bedroom,2621935,Jennifer,Manhattan,Harlem,40.8145,-73.94962,Private room,80,1,1,2015-11-16,0.02,1,0 +1813681,East Williamsburg Clean Apartment,9486005,Nikki,Brooklyn,Williamsburg,40.71261,-73.94154,Entire home/apt,115,2,2,2016-02-12,0.05,1,0 +1813829,Enjoy Harlem Renassiance Sunny Room,9501531,Andre,Manhattan,Harlem,40.82519,-73.9453,Private room,60,1,93,2019-07-02,1.34,3,358 +1814010,"Large, Private 1BR in Noho/Nolita/Soho",3257486,Drew,Manhattan,NoHo,40.72644,-73.9923,Entire home/apt,175,2,25,2018-12-29,0.36,1,273 +1814279,Urban Jungle in Bedford Stuyvesant,6841194,Eric,Brooklyn,Bushwick,40.68909,-73.9173,Entire home/apt,125,2,240,2019-06-11,3.53,2,242 +1815211,":: Spacious 1bedroom, great loca ::",1572271,Ilana,Manhattan,Gramercy,40.73689,-73.98451,Entire home/apt,185,1,80,2018-01-02,1.16,1,0 +1815505,Peaceful Oasis. 25 mins. Manhattan,9509269,Carlos,Queens,Briarwood,40.71594,-73.82264,Private room,56,5,80,2019-06-08,1.16,2,298 +1817510,Skylight BR in Gorgeous Rooftop Apt,6957798,Charisse,Brooklyn,Bushwick,40.69048,-73.92193,Private room,64,1,336,2019-06-28,4.83,1,133 +1817905,Amazing views in Williamsburg Condo,9520082,Mark,Brooklyn,Williamsburg,40.71454,-73.94965,Entire home/apt,300,2,10,2019-06-08,0.15,1,214 +1818411,HUGE 2bdrm LOFT in NOHO/East Vill!,9522475,Liam,Manhattan,NoHo,40.72569,-73.99227,Entire home/apt,455,30,93,2019-01-03,1.36,2,332 +1818420,Budget Friendly & Spacious,9522524,Nancy,Brooklyn,Canarsie,40.64738,-73.89163,Private room,37,5,54,2019-07-03,0.78,5,353 +1818820,Urban Cottage in Williamsburg BK,9524360,Michael,Brooklyn,Williamsburg,40.71618,-73.94189,Entire home/apt,193,3,164,2019-06-30,2.39,2,256 +1819623,Private room in sunny Bedstuy apartment,159011,Michael,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94161,Private room,53,3,35,2019-06-21,0.72,1,113 +1820858,Large Comfortable Studio in Chelsea,3609524,Nayef,Manhattan,Chelsea,40.74386,-73.99541,Entire home/apt,161,2,8,2016-07-29,0.18,1,0 +1820931,Gorgeous large 1 bedroom apt for March- April.,3889301,Marek,Manhattan,Washington Heights,40.85557,-73.93641,Entire home/apt,99,7,3,2018-04-08,0.04,1,0 +1821541,Large 2BR apartment East Village,2208993,Chris,Manhattan,East Village,40.7221,-73.98356,Entire home/apt,420,1,53,2019-04-28,1.04,3,250 +1823141,Large 1 BR apartment in the LES!,3981706,Leo,Manhattan,Lower East Side,40.72018,-73.98839,Entire home/apt,92,2,0,,,1,0 +1824808,LOCATION LOCATION LOCATION Abigail,1146958,Liz,Manhattan,Gramercy,40.73679,-73.98177,Entire home/apt,195,30,104,2019-04-06,1.51,4,333 +1825949,"Lovely Bedroom - Bed Stuy, Brooklyn",9554965,Jenelle & Michael,Brooklyn,Bedford-Stuyvesant,40.68385,-73.92349,Private room,81,1,36,2016-01-02,0.53,1,0 +1826701,Just like home & more in Rm #2,6632440,Emmett,Manhattan,Harlem,40.82557,-73.95514,Private room,65,7,9,2019-05-21,0.14,2,332 +1827525,Huge Room with Private Bathroom,9470293,Lana,Brooklyn,Flatbush,40.65083,-73.96101,Private room,70,3,3,2016-07-03,0.04,1,188 +1827723,2 bdr NYC duplex w balcony,9563216,Aimee,Manhattan,Gramercy,40.73285,-73.98245,Entire home/apt,400,2,40,2019-05-28,0.63,1,190 +1827962,Bright & cosy 1 bedroom apartment,9564410,Ines,Brooklyn,Williamsburg,40.71766,-73.95634,Entire home/apt,170,3,61,2019-07-06,0.90,1,190 +1828063,••BEST Manhattan Downtown Location!!••,9339714,Jessica,Manhattan,East Village,40.72982,-73.98532,Entire home/apt,175,2,53,2018-01-01,0.79,2,0 +1830244,Cool and spacious room-Approx 150 yard from LTrain,5309364,Michael,Brooklyn,Bushwick,40.68135,-73.9046,Private room,41,3,7,2017-09-04,0.11,1,0 +1831227,Brownstone Penthouse Apartment,6499364,David,Manhattan,Harlem,40.80964,-73.94098,Entire home/apt,149,4,35,2019-06-19,0.52,1,16 +1832120,Heart of Williamsburg,7195403,Emily,Brooklyn,Williamsburg,40.71216,-73.96274,Private room,87,3,85,2019-06-17,1.35,2,38 +1834738,Luxury Contemporary Central Home,9593224,Ian,Manhattan,Chelsea,40.73865,-73.9962,Entire home/apt,300,5,0,,,1,0 +1835367,"Washer, Marble Bath, Yard near Subways, High Line",7245581,Michael,Manhattan,Chelsea,40.75,-73.99721,Entire home/apt,92,110,13,2019-03-09,0.21,19,327 +1836381,Bushwick / Bed Sty Retreat,9600781,Brian,Brooklyn,Bedford-Stuyvesant,40.69168,-73.932,Private room,85,2,0,,,1,0 +1839231,Great Apt-Heart of East Village! ,9613050,Sinead,Manhattan,East Village,40.73135,-73.98298,Entire home/apt,150,1,0,,,1,0 +1839341,Modern Waterfront 2Bed Williamsburg,9610339,Cris,Brooklyn,Williamsburg,40.71817,-73.96401,Entire home/apt,300,5,14,2015-02-06,0.22,1,188 +1839818,"1B in NYC - East Village, Manhattan",9615574,Gwen,Manhattan,Stuyvesant Town,40.73196,-73.97932,Entire home/apt,139,5,27,2017-07-21,0.48,1,0 +1841356,Cozy spacious 1 bed in Murray Hill,9622750,Taran Pal,Manhattan,Kips Bay,40.74392,-73.9811,Private room,90,3,12,2016-03-08,0.18,3,0 +1842739,Large Eco bedroom on the River,8976567,Y&Y,Manhattan,Kips Bay,40.73544,-73.97465,Private room,118,5,51,2019-06-10,0.76,1,201 +1843034,SPECIAL NEW YEAR'S LUXURIOUS MANHATTAN APT,9630447,Lois,Manhattan,Midtown,40.76547,-73.97729,Entire home/apt,295,2,0,,,1,0 +1843108,HappyCozy GuestSuite w/ Great Energy close to JFK,2021121,Megan,Brooklyn,Cypress Hills,40.6784,-73.89362,Entire home/apt,125,1,319,2019-07-08,8.52,1,357 +1843674,Self contained ground level apt,9632747,Mick,Brooklyn,Bedford-Stuyvesant,40.68674,-73.95392,Entire home/apt,122,7,122,2019-06-17,1.91,2,364 +1843955,Spacious Midtown Manhattan room,9634183,Ayse Sera,Manhattan,Midtown,40.76129,-73.96869,Entire home/apt,280,3,21,2016-10-12,0.34,1,98 +1844088,Renovated Studio Midtown East,1512462,Evan & Maria,Manhattan,Midtown,40.7525,-73.96492,Entire home/apt,215,4,130,2019-05-31,1.92,2,270 +1844705,Lux Doorman by 11 trains,9637768,Reginald,Brooklyn,Boerum Hill,40.68897,-73.98765,Private room,89,90,47,2015-12-11,0.73,1,365 +1844792,Clean Cute and Cozy Harlem Apt,9638204,Teresa,Manhattan,Harlem,40.82097,-73.93765,Private room,130,1,1,2016-09-11,0.03,2,0 +1844847,"Serene, Authentic Artist's Loft",1340205,Kali,Brooklyn,Bushwick,40.70714,-73.9216,Entire home/apt,201,2,8,2019-06-24,0.12,1,177 +1846100,Cosy Brooklyn NYC One Bedroom in Garden Level,9644289,Carol-Anne,Brooklyn,East Flatbush,40.64469,-73.9469,Private room,119,2,23,2018-10-31,0.34,1,311 +1846528,East Village - 180º City View & Private Balcony,8951505,Esther & Aaron,Manhattan,East Village,40.72369,-73.9753,Entire home/apt,103,2,29,2019-06-28,0.86,1,55 +1846580,Park Slope Bedroom in Eccentric New York Apartment,9646158,Frederick,Brooklyn,South Slope,40.66516,-73.9794,Private room,72,2,166,2019-07-02,2.49,1,78 +1847096,Beautiful 1BR in East Village!,3952560,Camille,Manhattan,East Village,40.72969,-73.98151,Entire home/apt,169,5,9,2016-06-05,0.13,1,0 +1847261,AUTHENTIC TRIBECA LOFT NEAR SOHO,315654,Genevieve,Manhattan,Tribeca,40.71417,-74.00678,Entire home/apt,240,3,60,2019-05-04,0.91,1,348 +1847389,Beautiful BK 1 Block From Subway,9371210,Shane,Brooklyn,Carroll Gardens,40.67522,-73.99978,Entire home/apt,180,2,29,2019-06-30,0.63,1,45 +1847434,Beautiful warm duplex apartment,9632747,Mick,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95473,Entire home/apt,150,7,108,2019-06-17,1.72,2,359 +1850695,Great Manhattan apartment,9665594,Roberto,Manhattan,Morningside Heights,40.80738,-73.95855,Entire home/apt,120,5,4,2017-10-06,0.07,1,0 +1851767,Luxurious Brownstone Duplex w Outdoor Space,173980,Will And Jo,Brooklyn,Bedford-Stuyvesant,40.69322,-73.94581,Entire home/apt,345,3,181,2019-06-28,2.69,2,213 +1851926,Studio in the Family Brownstone,9671392,Dorcas,Brooklyn,Bedford-Stuyvesant,40.6889,-73.92469,Entire home/apt,95,3,134,2019-06-21,2.00,1,281 +1853765,"Pre-War - Subway,Park's & Museum's",416918,Kimberly,Manhattan,Upper East Side,40.77593,-73.94927,Entire home/apt,550,1,0,,,1,0 +1855846,Unshared Apt Cozy One Bedroom,9685977,Sherry,Manhattan,Harlem,40.82597,-73.95102,Entire home/apt,150,5,29,2019-05-18,0.43,1,260 +1856027,"Hip, Brick East Village Apartment",267955,Peter,Manhattan,East Village,40.72485,-73.98349,Private room,95,3,97,2019-06-24,1.45,1,11 +1856261,Private room in Center of Manhattan,9407818,Anthony,Manhattan,Hell's Kitchen,40.76254,-73.98712,Private room,90,1,61,2019-06-25,1.04,1,316 +1856627,Labor Day in Brooklyn Room Stay,9689041,Jay,Brooklyn,Crown Heights,40.67143,-73.94929,Private room,175,5,0,,,1,359 +1856803,1BR Priv. East Village Apt Sleeps 4,485738,Ross,Manhattan,East Village,40.72335,-73.98549,Entire home/apt,225,3,10,2016-09-07,0.15,1,0 +1856914,Luxury Apartment a walk to the park,1010940,Amber,Manhattan,Upper East Side,40.76906,-73.9517,Entire home/apt,240,5,6,2015-07-13,0.10,1,0 +1859901,Prime East Village Spacious 1 BED,9702964,Amanda,Manhattan,East Village,40.72394,-73.98941,Entire home/apt,150,4,43,2018-12-30,0.68,1,188 +1860838,Affordable Private Room in NYC! ,8276592,Alex,Manhattan,Washington Heights,40.84278,-73.93725,Private room,44,3,79,2019-06-23,1.15,1,191 +1861281,Carol,9709464,Jessica,Manhattan,East Village,40.72898,-73.98051,Private room,1700,1,0,,,1,0 +1861493,1 BR Penthouse with Private Terrace,9710466,Kristie,Manhattan,Upper West Side,40.78618,-73.97339,Entire home/apt,299,4,38,2018-01-01,0.56,1,3 +1863930,2nd@THROOP MANSION ,3351261,Kris,Brooklyn,Bedford-Stuyvesant,40.68864,-73.94166,Entire home/apt,120,1,93,2018-04-29,1.51,1,0 +1864061,"2 Br Condo: Elegant, Amazing Views!",9720494,Coats,Manhattan,Hell's Kitchen,40.75562,-73.99736,Entire home/apt,525,5,42,2019-05-25,0.61,1,80 +1864757,3+ Bedroom Steps to Park Avenue,194918,David,Manhattan,Upper East Side,40.77585,-73.95566,Entire home/apt,600,3,46,2019-05-27,0.67,1,210 +1865336,Private bedroom in awesome loft apt,9725785,J.D. & Stephanie,Brooklyn,Williamsburg,40.71338,-73.96833,Private room,88,1,220,2019-06-21,3.53,2,100 +1865884,Harlem 1BR - 3 blocks to subway!,1753078,Abby,Manhattan,Harlem,40.80491,-73.94752,Entire home/apt,139,5,0,,,1,0 +1866051,1 BR in Luxury Chelsea Doorman Bldg,9729421,Brian,Manhattan,Chelsea,40.74386,-74.00106,Entire home/apt,200,2,2,2016-03-13,0.05,1,0 +1869202,Cozy & Sunny central Manhattan APT!,5008954,Mich,Manhattan,Midtown,40.7582,-73.96692,Entire home/apt,100,2,19,2016-02-20,0.28,1,0 +1869432,West Village/SOHO Pretty Apartment,9744172,Melissa,Manhattan,SoHo,40.72838,-74.00462,Entire home/apt,209,2,7,2018-01-01,0.10,1,265 +1869467,Carroll Gardens Brownstone Flat,376084,Mary,Brooklyn,Carroll Gardens,40.68283,-73.99813,Entire home/apt,240,3,14,2019-05-27,0.21,1,199 +1869685,Cozy apartment available!,9745149,Idoline,Brooklyn,Bedford-Stuyvesant,40.68185,-73.95336,Entire home/apt,90,7,8,2019-05-10,0.35,2,301 +1870228,Long Island City Home 1.!,4378763,Antonio,Queens,Long Island City,40.75283,-73.92915,Private room,73,2,97,2019-06-09,1.44,3,359 +1871261,Big room only 90. Great location.,9751988,Asuka,Manhattan,Chelsea,40.74599,-73.99775,Private room,90,6,4,2015-12-28,0.07,1,0 +1871311,Times Square Modern Apartment,2808971,Frederic,Manhattan,Hell's Kitchen,40.76316,-73.99358,Entire home/apt,200,2,6,2019-06-09,0.09,1,20 +1872838,Clean & Cozy 1BD,4693453,Natalie,Brooklyn,Crown Heights,40.67593,-73.95885,Entire home/apt,94,20,46,2019-02-26,0.72,1,0 +1873531,Entire Apartment in Nolita/LES,9762099,Mary,Manhattan,Lower East Side,40.71845,-73.99326,Entire home/apt,145,1,0,,,1,0 +1876811,Sweet Union Square/ Gramercy Studio,9774018,Dan,Manhattan,Gramercy,40.7366,-73.98703,Entire home/apt,199,2,240,2019-07-02,3.49,1,152 +1876969,Penthouse in Bedford Stuyvesant ,9582999,Shane,Brooklyn,Bedford-Stuyvesant,40.68305,-73.9419,Entire home/apt,150,1,0,,,1,0 +1877255,"PRIVATE Room, located on Central MANHATTAN***",7748646,Denise,Manhattan,Upper East Side,40.7789,-73.95311,Private room,85,3,134,2019-06-18,1.96,1,108 +1878642,"New York City, Manhattan Modern Apartment",9782866,Ronald,Manhattan,Murray Hill,40.74855,-73.977,Entire home/apt,195,4,31,2019-07-01,0.46,1,78 +1878692,Andrea's bohemian pied-a-terre,9782676,Andrea,Manhattan,Greenwich Village,40.72934,-74.00075,Entire home/apt,173,5,143,2019-06-26,2.13,1,144 +1878965,Gorgeous 2BR Flex Loft w/NYC views,7503643,Vida,Brooklyn,Greenpoint,40.72589,-73.94055,Entire home/apt,159,30,5,2019-01-01,0.07,52,346 +1880539,Room in spacious charming loft,9790609,Naomi,Brooklyn,Williamsburg,40.71216,-73.96615,Private room,85,3,92,2019-06-28,1.57,1,123 +1881556,"Private, Spacious Garden Apartment",9795483,Ayana,Brooklyn,Bedford-Stuyvesant,40.68413,-73.92693,Entire home/apt,120,3,207,2019-06-23,3.04,1,237 +1881586,"Spacious, Sunny, 1br in Midtown East with doorman",9795610,Joel,Manhattan,Midtown,40.75669,-73.9666,Entire home/apt,225,3,1,2018-01-01,0.05,1,0 +1881801,Gorgeous 1.5 Br - 1 block to Subway-9 min to NYC!,8292927,Christian,Brooklyn,Williamsburg,40.71394,-73.94193,Entire home/apt,175,2,111,2019-06-23,2.40,2,108 +1881846,Cozy sunny room in the heart of the city,586409,Ahmed,Manhattan,Midtown,40.75375,-73.96556,Private room,130,2,128,2019-05-28,1.88,1,294 +1884398,Art-filled 1BR on best block in WV ,3627583,Brandon,Manhattan,West Village,40.73311,-74.00761,Entire home/apt,249,60,0,,,1,363 +1885385,Large Sunny Room,9522524,Nancy,Brooklyn,Canarsie,40.64448,-73.89222,Private room,38,5,72,2018-03-16,1.11,5,349 +1885714,Nice Bedroom in Central Bushwick!,2673168,David,Brooklyn,Bushwick,40.70343,-73.91343,Private room,53,1,38,2019-05-25,0.55,1,312 +1885826,LOFT-CentralPrk/TimeSq/TheaterDist1,32704,LoftMidtownNYC,Manhattan,Hell's Kitchen,40.76296,-73.98641,Private room,125,4,108,2019-06-23,1.69,1,285 +1886240,June 30 Th to August 31 st,9813233,Tao,Manhattan,SoHo,40.72617,-74.00141,Entire home/apt,245,1,0,,,1,0 +1886294,quitissential brooklyn loft,9813350,Jeremy,Brooklyn,DUMBO,40.70289,-73.98583,Entire home/apt,150,9,0,,,1,0 +1886978,Sunny & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64674,-73.89501,Private room,32,5,85,2019-06-16,1.25,5,155 +1887291,"Private, Peaceful Times Square 1BR",9817733,Ana,Manhattan,Hell's Kitchen,40.75406,-73.99376,Entire home/apt,160,3,158,2019-06-15,2.33,1,188 +1887489,Gracious Brooklyn Limestone,9818634,Lara,Brooklyn,Prospect-Lefferts Gardens,40.66173,-73.95382,Entire home/apt,175,1,0,,,1,0 +1887874,"Big, bright, Williamsburg bedroom",9820312,Brandon,Brooklyn,Williamsburg,40.70711,-73.94457,Private room,40,7,0,,,1,331 +1888006,"14 Min 2Union Sq, Manhattan with Private Entrance",9820942,Erica And Jorel,Brooklyn,Bushwick,40.70565,-73.92254,Private room,58,1,236,2019-06-24,3.45,3,350 +1890851,"Stylish,Sunny, spacious luxury loft",6321587,Bud,Brooklyn,Bedford-Stuyvesant,40.68166,-73.94325,Entire home/apt,149,2,20,2019-06-09,0.31,1,355 +1891017,Awesome Huge Studio - NYC Center,9794342,Pavel,Manhattan,Chelsea,40.75066,-74.00377,Entire home/apt,200,3,35,2016-08-22,0.55,1,0 +1891118,Large Studio apartment,9831559,Cassi,Brooklyn,Bedford-Stuyvesant,40.68285,-73.95112,Entire home/apt,100,4,10,2017-06-06,0.24,1,0 +1891274,Clinton Hill 1BR in charming 2BR,9832158,Daniel,Brooklyn,Bedford-Stuyvesant,40.68442,-73.95639,Private room,50,2,6,2017-10-24,0.12,1,0 +1891798,The Spencer,3196987,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95366,Entire home/apt,97,5,44,2018-12-31,1.50,1,66 +1892319,Private BR in Chelsea (women or couples only),3416555,Anya,Manhattan,Chelsea,40.74793,-74.00691,Private room,84,2,143,2019-05-04,2.13,1,311 +1893225,"Modern, spacious 2 BR, 2 Bath - BK",1297675,Helena,Brooklyn,Prospect Heights,40.68049,-73.97302,Entire home/apt,275,4,19,2018-08-07,0.28,2,205 +1895196,Apt near Museum Mile,9847713,Ksenia,Manhattan,Upper East Side,40.76981,-73.95812,Entire home/apt,99,2,249,2019-06-20,3.63,1,172 +1895457,Greenpoint Studio w/ 2 cats,9848620,Kevin,Brooklyn,Greenpoint,40.72587,-73.94122,Entire home/apt,70,5,2,2016-08-23,0.06,1,26 +1896296,Modern Industrial 1br Loft w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.94201,Entire home/apt,149,30,7,2019-05-31,0.11,52,340 +1897001,"GIANT! Perfect for families, in the center of NYC",9854533,Izzy,Manhattan,Midtown,40.75463,-73.97062,Entire home/apt,399,5,33,2018-03-31,0.49,1,36 +1897447,Large Garden Apartment,9856784,Cristobal,Brooklyn,Gowanus,40.68374,-73.98558,Entire home/apt,145,3,266,2019-07-02,4.49,1,224 +1898110,Charming one bedroom in brownstone,9520651,Vivian,Brooklyn,Gowanus,40.68323,-73.98643,Private room,200,2,0,,,1,365 +1899076,"14 min to Union Square, Manhattan-Sunny Modern Rm",9820942,Erica And Jorel,Brooklyn,Bushwick,40.70505,-73.92281,Private room,59,1,238,2019-05-12,3.46,3,320 +1900616,nice furnished room ground floor,5097458,Nes,Brooklyn,Williamsburg,40.71863,-73.94575,Private room,70,3,30,2018-11-07,0.60,1,364 +1900780,1000 Sq Ft Loft in Flatiron.,9870396,Damian,Manhattan,Gramercy,40.73892,-73.98922,Entire home/apt,249,4,26,2019-01-03,0.62,1,281 +1901357,Spring in Ditmas Park Brooklyn!!!,9872650,Patrick,Brooklyn,Flatbush,40.6406,-73.96195,Entire home/apt,70,4,26,2018-05-19,0.39,1,81 +1903198,Time Square in 30 minutes. Front room.,3158364,Devika,Queens,Sunnyside,40.73673,-73.92526,Private room,45,5,70,2019-06-30,2.23,4,250 +1903249,The heart of Manhattan - NYC,3187531,Michelle,Manhattan,Chelsea,40.74676,-74.00234,Private room,75,1,202,2019-06-05,3.19,1,0 +1903288,Beautiful and spacious bedroom in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.71351,-73.94316,Private room,70,6,1,2017-08-26,0.04,2,0 +1905865,Zen & Cozy 2Bedroom in Williamsburg,2332618,Alison,Brooklyn,Williamsburg,40.70727,-73.95459,Entire home/apt,159,1,15,2019-05-26,0.22,2,194 +1906604,280 Degree Views Of Manhattan (TS),6806417,Jonathan,Manhattan,Hell's Kitchen,40.76019,-73.99586,Entire home/apt,499,4,8,2016-05-25,0.12,1,0 +1906804,Private Master Bedroom w/Garden 14 min to Union Sq,9820942,Erica And Jorel,Brooklyn,Bushwick,40.70561,-73.92515,Private room,55,1,227,2019-06-14,3.31,3,341 +1906993,Lower East Side Penthouse Room w/ Epic Views,4358024,Jonathan,Manhattan,Lower East Side,40.72147,-73.98806,Private room,228,1,2,2019-06-23,0.22,2,365 +1907058,PRIVATE ROOM #2 STARTING AT $67 PER NIGHT,9898029,Anthony,Brooklyn,East Flatbush,40.64913,-73.92525,Private room,67,5,17,2018-09-23,0.25,5,308 +1908767,Large Bedroom in the East Village,9888877,Jessica,Manhattan,East Village,40.72745,-73.98344,Private room,119,3,1,2013-12-15,0.01,1,0 +1908852,Oversized Studio By Columbus Circle,684629,Alana,Manhattan,Upper West Side,40.7706,-73.98919,Entire home/apt,189,1,7,2016-05-06,0.13,1,0 +1908986,NYC UES APT RENTAL,9906590,Evan,Manhattan,Upper East Side,40.77785,-73.9454,Entire home/apt,350,1,0,,,1,0 +1910270,Lovely Brooklyn Brownstone one block from Subway,9912620,Sunita,Brooklyn,Gowanus,40.68396,-73.98914,Entire home/apt,450,30,14,2018-08-08,0.21,1,1 +1911333,A room with private bathroom,9917136,Rani,Brooklyn,Bedford-Stuyvesant,40.67814,-73.92375,Private room,45,29,12,2018-11-11,0.18,3,337 +1911641,"Modern Midtown Apt, close to MoMA",5032943,Michael,Manhattan,Midtown,40.75876,-73.96854,Entire home/apt,175,30,2,2015-03-23,0.04,1,342 +1912357,"Brooklyn apt, hip hood, with a view",9921108,Amy,Brooklyn,Crown Heights,40.67801,-73.96106,Entire home/apt,83,7,2,2014-10-14,0.03,1,0 +1913540,Cute Spacious Studio in Fort Greene,325455,Ashley,Brooklyn,Fort Greene,40.68516,-73.97461,Entire home/apt,120,1,2,2015-10-26,0.03,1,0 +1913864,One Bedroom in an apartment,9745149,Idoline,Brooklyn,Crown Heights,40.67138,-73.96058,Private room,35,30,7,2019-05-04,0.15,2,318 +1914231,"Perfect Harlem, New York Retreat",9709235,Ferris,Manhattan,Harlem,40.81056,-73.943,Entire home/apt,140,2,322,2019-07-01,4.71,1,258 +1914381,Bedroom for one,9909455,Nicole,Manhattan,Harlem,40.82954,-73.94436,Private room,45,4,7,2019-06-23,2.26,1,32 +1914461,"Space, elegance, and comfort - Room",9930219,Arlene,Manhattan,East Harlem,40.80029,-73.94294,Private room,90,3,7,2016-02-27,0.11,1,310 +1914590,Nice clean large Bedroom in Astoria,6194487,Rocio & James,Queens,Astoria,40.76425,-73.90489,Private room,79,1,108,2019-05-30,2.68,3,313 +1914630,"Comfy, Spacious, Modern, Sweet Home",342599,Charlotte And Pierre,Brooklyn,Bedford-Stuyvesant,40.69309,-73.95921,Private room,100,3,15,2018-08-16,0.22,1,0 +1914759,Urban Oasis in Chelsea,9931428,Joseph,Manhattan,Chelsea,40.74276,-74.00016,Entire home/apt,225,2,0,,,1,17 +1914787,Your home away from home in Comfort,9509269,Carlos,Queens,Briarwood,40.71477,-73.82012,Private room,66,5,95,2019-05-25,1.39,2,301 +1917629,Gorgeous duplex 1 BR Brownstone apt,5453550,Christine & James,Brooklyn,Clinton Hill,40.69414,-73.96634,Entire home/apt,140,3,123,2019-06-07,1.80,3,244 +1918693,Lovely Bedrooms in Artist's Home,9947332,Lorelei & Alex,Brooklyn,Clinton Hill,40.68474,-73.9632,Private room,98,4,245,2019-06-10,3.61,1,247 +1918903,Private 2 BR APT: Free WIFI & JACUZZI,5243122,R,Brooklyn,Bedford-Stuyvesant,40.67963,-73.9375,Entire home/apt,140,3,156,2019-04-25,2.36,2,230 +1919647,2 floor Apt w 300sqft Terrace,9951559,Evan,Manhattan,Lower East Side,40.72083,-73.98755,Entire home/apt,195,2,71,2019-06-23,1.04,1,222 +1919766,Full of Harlem Soul & Charm,9501531,Andre,Manhattan,Harlem,40.82438,-73.94332,Private room,60,1,245,2019-07-07,3.60,3,336 +1919896,Sunny 2 bedroom in Prospect/Crown Heights,1345452,Nico,Brooklyn,Crown Heights,40.67689,-73.95878,Entire home/apt,150,5,11,2017-05-25,0.16,1,0 +1920085,Small Room With Private Loft Bed,1229984,John,Queens,Long Island City,40.74404,-73.95233,Private room,40,25,8,2017-06-11,0.12,3,0 +1921859,Adorable 1BD Home with view of NYC,9959323,Lauren,Queens,Astoria,40.77453,-73.92833,Entire home/apt,130,4,17,2017-05-06,0.25,1,347 +1922448,Sunny bedroom in Williamsburg,8740210,Angelica,Brooklyn,Williamsburg,40.71278,-73.94035,Private room,75,3,1,2015-11-13,0.02,1,0 +1922863,Bi-level Loft with a Private Garden,915973,Donald P.,Brooklyn,Williamsburg,40.71715,-73.95527,Entire home/apt,248,3,57,2019-06-06,0.90,1,344 +1923153,Cozy Vintage Inspired East Village,9965028,Sasha,Manhattan,East Village,40.72709,-73.98442,Entire home/apt,450,2,18,2017-01-15,0.28,1,363 +1924645,Sunny Studio in Prime Williamsburg,110958,Ellen,Brooklyn,Williamsburg,40.7161,-73.95074,Entire home/apt,120,14,29,2016-10-04,0.43,1,0 +1925224,"Beautiful, large, charming spot",9946315,Susan,Brooklyn,Williamsburg,40.71758,-73.9543,Entire home/apt,250,8,79,2019-07-01,1.16,1,78 +1925519,Sublet: $490/Wk,2765870,Amarie2131,Manhattan,Lower East Side,40.7193,-73.98986,Private room,80,1,1,2015-11-01,0.02,1,0 +1928556,"Private Apt, Large, Safe / 5mins to TIMES SQUARE",4482351,Zoey,Manhattan,Hell's Kitchen,40.76143,-73.99223,Entire home/apt,140,5,17,2019-04-08,0.25,2,2 +1928570,"Studio Apt. in Williamsburg, Brooklyn, NY",4393792,Jose C.,Brooklyn,Williamsburg,40.71532,-73.94581,Entire home/apt,120,3,5,2018-11-04,0.26,1,0 +1928961,Futon 2.0,9989761,Gaudhi,Manhattan,Harlem,40.80026,-73.95197,Shared room,45,3,229,2019-06-22,3.36,2,312 +1929041,BEST PRICE - WILLIAMSBURG 1 ROOM,9265204,Gianni,Brooklyn,Williamsburg,40.70576,-73.94827,Private room,100,1,1,2015-09-06,0.02,2,44 +1929186,Modern Bright Loft in Clinton Hill,9990552,Susan,Brooklyn,Bedford-Stuyvesant,40.69135,-73.95859,Entire home/apt,175,2,52,2019-07-04,1.26,1,264 +1929321,Quiet 1br in a Mansion!,9991075,Erika,Brooklyn,Clinton Hill,40.68492,-73.96669,Entire home/apt,130,1,16,2017-04-17,0.38,2,0 +1929540,2 floor loft in Gramercy park,6846161,Stefano,Manhattan,Kips Bay,40.73772,-73.98025,Entire home/apt,175,3,9,2014-06-21,0.13,1,0 +1931341,Cozy bedroom on Wall Street,9997988,Jagriti,Manhattan,Financial District,40.70602,-74.0072,Private room,40,1,0,,,1,0 +1931609,Entire Park Slope Townhouse,9442045,Miriam,Brooklyn,Park Slope,40.67982,-73.98005,Entire home/apt,650,2,166,2019-06-24,2.87,1,215 +1932094,"HEART OF NYC! AMAIZING LOCATION!, SUPER ROOM",10001478,Anya,Manhattan,Midtown,40.76135,-73.97785,Private room,85,4,29,2017-04-01,0.42,1,13 +1932110,Manhattan/ LES Short term Stay,10001551,Herman F,Manhattan,East Village,40.72373,-73.99118,Private room,175,30,20,2018-08-21,0.31,1,83 +1932491,Best View/Luxury Building/Time Squ.,10003254,Mac,Manhattan,Hell's Kitchen,40.75887,-73.99475,Private room,105,4,10,2016-06-26,0.20,1,0 +1934444,Havemeyer Holiday,4393358,Cj,Brooklyn,Williamsburg,40.71674,-73.95262,Private room,80,10,5,2014-11-01,0.07,1,0 +1934512,Penthouse studio w/ skylights and skyline views,2317686,Bryan,Brooklyn,Clinton Hill,40.6912,-73.96686,Entire home/apt,150,7,37,2019-06-09,0.60,1,39 +1934765,"One Bedroom Apt, Suitable for Two",10012271,Karmesha,Bronx,Parkchester,40.83645,-73.86634,Entire home/apt,195,5,1,2015-01-01,0.02,1,0 +1934804,3 Story Brooklyn House - Sleeps 10!,10012421,Deborah,Brooklyn,Clinton Hill,40.69356,-73.96744,Entire home/apt,750,3,32,2019-05-19,1.66,1,141 +1935109,Unique sunny loft in Manhattan!,1319462,Zi Ying,Manhattan,Lower East Side,40.71972,-73.99299,Entire home/apt,249,2,230,2019-06-28,3.39,2,166 +1935175,cute 2BD apt in greenpoint,239829,Lauren,Brooklyn,Greenpoint,40.73419,-73.95493,Entire home/apt,140,7,1,2016-08-16,0.03,1,0 +1935302,COZY and WARM Garden Apartment,10008086,Brandon,Brooklyn,Fort Greene,40.69117,-73.97047,Entire home/apt,180,2,72,2019-07-07,3.12,1,290 +1935826,"Priv room in 3 bdrm apt - Room ""C""",9207223,Ryan,Manhattan,Harlem,40.80688,-73.94932,Private room,90,3,1,2015-10-14,0.02,3,177 +1936633,Great 1BD waterfront City Island NY,10018391,Alex,Bronx,City Island,40.85258,-73.78762,Entire home/apt,120,3,84,2018-12-01,1.26,1,16 +1936772,Private Ground Floor Studio Apt PLUS Driveway,2274545,Kerri & Steve,Queens,Middle Village,40.71576,-73.86268,Entire home/apt,85,2,97,2019-07-01,1.43,1,230 +1937226,Awesome Harlem House 3 bdr 2 floors,8826175,Grover,Manhattan,Harlem,40.80874,-73.94756,Entire home/apt,174,3,177,2019-06-11,2.62,3,165 +1937323,"Hell's Kitchen, close to All",10023559,Judson,Manhattan,Hell's Kitchen,40.76247,-73.99225,Entire home/apt,150,21,2,2015-12-17,0.04,1,203 +1937325,2Br East Village VERY Spacious Apt.,5048868,Matthew,Manhattan,East Village,40.72815,-73.98059,Entire home/apt,295,1,261,2019-06-08,3.82,1,245 +1937761,Modern & Quiet 2bdr Astoria - 2 blocks from Subway,3294551,Michelangelo,Queens,Astoria,40.7582,-73.91687,Entire home/apt,180,3,77,2019-06-11,1.35,1,254 +1939106,Charming 1BR in the East Village,3710931,Stephanie,Manhattan,East Village,40.72997,-73.98497,Entire home/apt,172,1,18,2018-07-16,0.27,1,0 +1939283,Wyckoff Street Garden Apartment,7329934,Laurence,Brooklyn,Gowanus,40.68437,-73.98654,Entire home/apt,130,5,36,2019-06-29,0.53,1,224 +1940534,Big specious room is Manhattan!!!,5164854,Lilia,Manhattan,Harlem,40.82024,-73.93799,Private room,52,7,19,2019-01-31,0.28,8,324 +1940780,Amazing Greenpoint/Williamsburg Apt,576056,Flick,Brooklyn,Greenpoint,40.72318,-73.94931,Entire home/apt,220,1,2,2014-08-03,0.03,1,0 +1941094,XLARGE-Modern-clean master bedroom,2559004,Sergio,Manhattan,East Harlem,40.80447,-73.94034,Private room,50,30,0,,,5,356 +1941435,Sunny Room near all,9917136,Rani,Brooklyn,Bedford-Stuyvesant,40.67769,-73.92303,Private room,37,25,16,2018-12-06,0.24,3,179 +1941439,Private Room next to Park - 5 mins to subways!!,10041857,Veronica,Manhattan,East Harlem,40.79629,-73.94769,Private room,85,2,36,2019-06-26,0.53,1,288 +1941495,"Huge Garden Duplex, 20 min Manhattan!",1430695,"Julia, Anthony, Apollo & Atlas",Brooklyn,Bushwick,40.68626,-73.91324,Entire home/apt,249,3,76,2019-07-05,1.13,1,40 +1942935,Family house in South Park Slope,1479666,Maria,Brooklyn,South Slope,40.66583,-73.98956,Entire home/apt,150,14,10,2016-08-06,0.21,1,0 +1944155,Funky Furnished Studio on Tree-Lined Street,7720086,Henri-Leon,Brooklyn,Fort Greene,40.68605,-73.97517,Entire home/apt,119,6,7,2019-06-11,0.25,1,0 +1944891,Spacious one bedroom apartment,861330,Joseph,Brooklyn,Williamsburg,40.70139,-73.94499,Entire home/apt,49,7,0,,,3,0 +1945115,Beautiful Luxury Room in Central Harlem/Columbia,10061009,Minetta,Manhattan,Harlem,40.80419,-73.95582,Private room,90,4,57,2019-07-05,2.67,1,74 +1947400,1BD Cozy Chelsea Apartment,10071397,Trevor,Manhattan,Chelsea,40.74328,-73.99742,Entire home/apt,200,4,4,2018-08-20,0.06,1,0 +1948494,Amazing 550 Sq Ft Studio Apartment.,9950152,Dawn & Vernon,Brooklyn,East Flatbush,40.63803,-73.94894,Entire home/apt,97,3,177,2019-07-07,2.64,1,272 +1948745,Immaculate 3BR Williamsburg Condo,9535237,Ryan,Brooklyn,Greenpoint,40.72575,-73.95231,Entire home/apt,399,30,13,2016-06-20,0.19,1,363 +1950311,"Bright, cozy East Williamsburg home",8551260,Hannah,Brooklyn,Williamsburg,40.70604,-73.94457,Entire home/apt,151,5,39,2019-06-18,0.58,2,0 +1950318,NYC Theatre District 1 Bdrm Apt ,10074602,Shane,Manhattan,Hell's Kitchen,40.76435,-73.99054,Entire home/apt,200,5,0,,,1,0 +1950588,Newly Renovated One Bedroom,10087095,Brian,Manhattan,Little Italy,40.7193,-73.99781,Entire home/apt,200,3,41,2019-06-10,0.60,1,0 +1950603,Cozy NYC apt. 10min to Central Park,8048803,Daan,Queens,Long Island City,40.75401,-73.91757,Entire home/apt,82,5,2,2015-07-25,0.03,1,0 +1952271,Super Clean 1 bedroom Upper West Side,4259154,Christine,Manhattan,Upper West Side,40.80009,-73.97009,Entire home/apt,130,1,87,2019-07-07,1.42,1,5 +1953636,large private bedroom in shared ap,1294674,Alex,Brooklyn,Fort Greene,40.68508,-73.97393,Private room,69,2,12,2019-06-24,0.18,1,6 +1953928,Huge 2 Bedrooms NYC ,10100413,A,Queens,Astoria,40.76266,-73.91451,Entire home/apt,150,1,89,2019-01-20,1.32,1,148 +1954429,Scenic 1 Bedroom sleeps 4,10102581,Deborah,Manhattan,Washington Heights,40.85516,-73.93717,Entire home/apt,150,4,0,,,1,0 +1954450,Spacious Sunny Designer 1 Bedroom in East Village,2266169,Erika,Manhattan,East Village,40.72187,-73.98083,Entire home/apt,150,2,221,2019-06-18,3.30,1,215 +1954495,East Village gem!,10102809,Jennifer,Manhattan,East Village,40.7281,-73.98671,Entire home/apt,100,3,2,2014-12-19,0.03,1,0 +1954653,FIVE STAR LIGHT-FILLED DUPLEX - PRIVATE DECK,10103520,Graham,Manhattan,Kips Bay,40.74423,-73.97614,Entire home/apt,195,4,30,2019-05-28,0.45,1,4 +1955844,Charming 1BD Apt in Classy Brownstone by Union Sq,1308525,Otilia,Manhattan,Chelsea,40.73925,-73.99359,Entire home/apt,251,5,26,2018-11-23,0.43,1,14 +1956346,THE HEART OF COOL WILLIAMSBURG NYC,5278115,Marc,Brooklyn,Williamsburg,40.71746,-73.9607,Entire home/apt,200,1,1,2015-01-02,0.02,1,320 +1956467,"Big, beautiful, central 1BD in Brooklyn",1500550,Shira,Brooklyn,Prospect Heights,40.67475,-73.96385,Entire home/apt,100,6,5,2017-12-30,0.07,1,0 +1956677,"The ""Humphrey Bogart""",120623,David,Bronx,Port Morris,40.80844,-73.92889,Entire home/apt,140,30,16,2018-09-26,0.24,1,365 +1956726,Colorful 1 Bedroom APT in the East Village,2301618,Monica,Manhattan,East Village,40.7334,-73.98801,Entire home/apt,146,18,34,2018-06-01,0.50,1,0 +1958765,Stylish 1 BR Loft Apt Williamsburg,10123248,Sylvana,Brooklyn,Williamsburg,40.71688,-73.94584,Entire home/apt,250,2,88,2019-05-28,1.31,1,223 +1959024,950 SQ FT ONE BEDROOM + 2 TERRACES,10124193,Courtney,Manhattan,Upper East Side,40.77924,-73.95405,Entire home/apt,499,1,6,2014-10-26,0.10,1,0 +1960045,Loft Bedroom in Luxury Apartment,6655162,Carlos,Brooklyn,Williamsburg,40.71842,-73.94093,Private room,80,31,0,,,1,0 +1960358,Couples and Family Paradise.,10129919,Jorge,Brooklyn,Cypress Hills,40.68528,-73.87819,Entire home/apt,80,3,225,2019-06-30,3.49,2,250 +1961288,Gorgeous Modern Downtown Condo with Stunning Views,1321170,Dave,Manhattan,Lower East Side,40.72139,-73.99271,Entire home/apt,220,2,85,2019-06-20,1.27,1,305 +1961361,Private Master BR in 3 BR Apt,10134825,Kara,Manhattan,Lower East Side,40.71286,-73.98437,Private room,102,2,6,2016-01-02,0.13,4,0 +1961937,Lovely 2 bedroom apartment,3899946,Anna,Manhattan,Harlem,40.8233,-73.95591,Entire home/apt,120,5,8,2016-04-04,0.12,1,0 +1965103,Quiet and Sunny studio in EV,10150931,Pierre,Manhattan,East Village,40.72811,-73.98663,Entire home/apt,170,2,7,2016-09-25,0.11,1,312 +1965712,Lovely large 1-bdrm apt UWS,10153235,Tammie,Manhattan,Upper West Side,40.78122,-73.98473,Entire home/apt,235,1,0,,,1,0 +1965766,LARGE Studio in elevator building!,10153970,Lindsay,Manhattan,Upper East Side,40.76876,-73.95979,Entire home/apt,149,1,1,2016-04-11,0.03,1,0 +1967045,Top Floor Brooklyn Pad 1.5Bd/1Bth,9975193,Julianna & Lawrence,Brooklyn,Park Slope,40.67694,-73.9813,Entire home/apt,180,3,6,2018-07-30,0.13,1,0 +1970017,"Chic & Cheerful Home in Williamsburg, Brooklyn",2052364,Melissa,Brooklyn,Williamsburg,40.71367,-73.95673,Private room,89,1,25,2019-06-16,0.43,1,78 +1970574,Park Slope Townhouse TOP FLOOR,579495,Susi,Brooklyn,South Slope,40.66579,-73.98991,Entire home/apt,199,2,31,2019-06-17,0.52,2,220 +1970697,Lovely & Large Private Queen Bedroom,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69484,-73.9342,Private room,72,5,62,2019-07-01,1.05,6,140 +1970915,Private Backyard! Beautiful 1BR apartment.,10176907,Maria,Brooklyn,Bushwick,40.70022,-73.91441,Entire home/apt,80,7,6,2016-11-14,0.12,1,3 +1971200,Big Room by Times Square,10178252,Tino,Manhattan,Hell's Kitchen,40.76636,-73.98634,Private room,99,3,160,2019-05-31,2.36,1,133 +1971239,BRIGHT AND SPACIOUS 3 BEDROOM WITH GARDEN,1225787,Andres & Mapa,Brooklyn,Crown Heights,40.6713,-73.94329,Entire home/apt,125,30,26,2019-06-25,0.38,1,264 +1971540,Sunny Midtown NYC Room,10179999,Joseph,Manhattan,Upper West Side,40.77021,-73.98721,Private room,150,1,157,2019-06-28,2.49,1,365 +1971635,Adorable Apt on Prospect Park!,10180449,Isabel,Brooklyn,Windsor Terrace,40.65899,-73.97771,Entire home/apt,100,15,0,,,1,0 +1973889,Exposed Brick Wall Bedroom,3020145,Eva,Manhattan,SoHo,40.72493,-74.00193,Private room,106,2,191,2019-06-23,2.81,1,291 +1974700,AMAZING ONE BEDROOM IN MANHATTAN,1556814,Tammy,Manhattan,Harlem,40.81381,-73.94166,Entire home/apt,250,30,19,2019-07-05,0.30,1,318 +1975069,Loft Bedroom in Duplex 3BR & Private Roof,151654,Brad,Manhattan,Greenwich Village,40.72796,-73.99761,Private room,150,2,7,2017-12-02,0.12,1,0 +1975168,Fantastic Williamsburg Waterfront!,1351409,Katie,Brooklyn,Williamsburg,40.70978,-73.96854,Private room,100,3,15,2019-06-04,0.24,1,358 +1975999,Luxury studio,10200352,Marie,Manhattan,Chelsea,40.74163,-73.99857,Entire home/apt,189,3,9,2019-05-13,0.87,1,0 +1976123,Huge Loft with Private Entrance,6547579,Josh,Manhattan,East Village,40.72823,-73.98933,Entire home/apt,1999,1,20,2015-08-20,0.39,1,0 +1977888,East Village Studio Super location,9878261,Sam,Manhattan,East Village,40.72679,-73.98598,Entire home/apt,120,1,73,2019-01-01,1.07,1,49 +1978445,Bedroom in East Williamsburg,8551260,Hannah,Brooklyn,Williamsburg,40.70608,-73.94269,Private room,100,4,3,2014-09-30,0.05,2,0 +1979076,Authentic Factory 1BR w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72539,-73.94074,Entire home/apt,149,30,7,2018-05-04,0.11,52,277 +1979127,East Village Duplex Penthouse,1472225,Rachel,Manhattan,East Village,40.7282,-73.98615,Entire home/apt,480,10,59,2019-05-21,0.87,1,24 +1979506,Cozy duplex on the Upper East side!,10071119,Nora,Manhattan,Upper East Side,40.76838,-73.95481,Private room,100,1,1,2014-01-02,0.01,1,0 +1979579,Best Central Park/NYC View Apt,8219931,Jason,Manhattan,Upper West Side,40.78468,-73.97137,Entire home/apt,300,1,0,,,1,0 +1979744,Bright & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64605,-73.89382,Private room,33,5,84,2019-06-27,1.25,5,295 +1979848,1 BR in a luxury apt bldg,10217559,Mary Elizabeth,Brooklyn,Park Slope,40.67122,-73.98618,Entire home/apt,175,1,0,,,1,0 +1980179,Best of the East Village Cozy 2 Bedroom,18174,Katya,Manhattan,East Village,40.72862,-73.98885,Entire home/apt,142,1,214,2019-07-05,3.17,1,242 +1981410,Spacious 1 bed near train!,6638763,Terry & Kristen,Queens,Ditmars Steinway,40.77906,-73.91265,Entire home/apt,135,3,38,2019-07-02,0.62,1,243 +1981590,Loft 15 - 20 minutes to Manhattan,10225447,Giovani,Brooklyn,Bushwick,40.69937,-73.91463,Entire home/apt,135,3,164,2019-01-05,2.45,1,325 +1981656,Loft 402 : Photo Studio : Brooklyn,4139790,Harry,Brooklyn,Williamsburg,40.71871,-73.96456,Entire home/apt,350,5,0,,,1,365 +1981669,1 Bedroom Apartment Lefferts Garden,10226006,Ester,Brooklyn,Prospect-Lefferts Gardens,40.66362,-73.94926,Entire home/apt,80,5,19,2018-08-18,0.28,1,0 +1983188,1BR near Columbia / Central Park,1521508,Jose,Manhattan,Upper West Side,40.79859,-73.96078,Private room,80,3,38,2019-06-26,0.59,1,344 +1983466,A Cozy Creative Room for Nomads,2777672,Kalae,Manhattan,Upper West Side,40.80168,-73.96253,Private room,87,2,272,2019-06-16,4.02,3,133 +1983531,Spacious Bright 1 Bedroom East Village Apartment,5586949,S & G,Manhattan,East Village,40.72754,-73.98555,Entire home/apt,450,3,12,2019-01-02,0.19,2,0 +1984390,Big Cozy Studio ,10238618,Zeynep,Manhattan,Upper East Side,40.77556,-73.9483,Entire home/apt,275,2,2,2015-05-08,0.03,1,0 +1984486,Comfortable Brown Stone apartment ,10239152,Joyce,Brooklyn,Crown Heights,40.67468,-73.94184,Entire home/apt,150,2,43,2019-04-27,0.64,1,285 +1985022,Large Light Filled Apartment,10241822,Jessica,Brooklyn,Crown Heights,40.67148,-73.95698,Private room,50,5,3,2019-01-03,0.16,1,0 +1987371,"Williamsburg, prime loction, Brooklyn private room",1525582,Christina,Brooklyn,Williamsburg,40.71971,-73.95998,Private room,79,3,176,2019-06-21,2.63,1,37 +1987546,nice room in bedstuy A,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68248,-73.95149,Private room,60,1,93,2019-04-22,1.38,15,305 +1987584,Home Sweet Room-HOMEY-Queens NYC!!,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73943,-73.87475,Private room,45,3,49,2019-04-25,0.77,3,307 +1987627,1BD Upper West Side NYC,10251511,Jordan,Manhattan,Upper West Side,40.78918,-73.97927,Entire home/apt,120,2,5,2016-01-01,0.07,1,0 +1987949,3 Bedroom Apt. in Washington Height,10252755,Lauren,Manhattan,Washington Heights,40.84082,-73.93896,Entire home/apt,145,3,1,2014-01-02,0.01,1,0 +1988823,Family Friendly Apt in Quiet Building,10256663,Rachel,Manhattan,Harlem,40.81402,-73.94358,Entire home/apt,175,3,136,2019-07-02,2.00,1,171 +1989731,1br Near Everything in East Village,1674102,Heidi,Manhattan,East Village,40.72886,-73.98036,Entire home/apt,137,7,6,2016-03-25,0.11,1,0 +1989838,Luxury 4 BD NYC Times Sq Apartment,3185905,Patrick,Manhattan,Midtown,40.76316,-73.98109,Entire home/apt,1500,1,0,,,1,0 +1989972,Cozy & Nice Bedroom in an Apt/NYC.,10262420,Cesar,Manhattan,East Harlem,40.78813,-73.94495,Private room,86,4,37,2019-06-30,0.97,1,22 +1992751,Bushwick House,10258336,Angelo,Brooklyn,Bushwick,40.70618,-73.91669,Entire home/apt,90,3,0,,,1,0 +1994398,Spring and Summer in New York - Near Central Park,2719126,Nadia,Manhattan,Midtown,40.76663,-73.98069,Entire home/apt,345,5,19,2019-06-12,0.33,1,192 +1994548,luxury bldg for the coming holiday,10280728,Uri,Manhattan,Roosevelt Island,40.77,-73.94285,Entire home/apt,150,1,0,,,1,0 +1997487,Luxury Doorman 1BR Best part of NY,374305,Pedro,Manhattan,Hell's Kitchen,40.76485,-73.98752,Entire home/apt,250,5,7,2019-06-16,0.32,1,314 +1997957,Winter Fun in Brooklyn!!!,10294443,Shari,Brooklyn,Crown Heights,40.67497,-73.95879,Entire home/apt,105,4,2,2014-12-31,0.03,1,0 +1998026,"Bright, serene apt in Fort Greene/Clinton Hill",10294707,Amanda,Brooklyn,Clinton Hill,40.69025,-73.96704,Entire home/apt,130,2,15,2019-04-21,0.41,1,0 +2000156,Nice & cozy - 15min to Times Square-,3767367,Regina,Manhattan,Upper East Side,40.7838,-73.9482,Private room,90,3,97,2019-07-01,2.39,3,332 +2000576,3BR in a classic 1925 BK Limestone,10263251,Marietta,Brooklyn,Crown Heights,40.66952,-73.94377,Entire home/apt,150,3,154,2019-06-24,2.27,1,218 +2000611,Cute brick wall apt. 2BR,10304755,Michael,Brooklyn,Williamsburg,40.71002,-73.95802,Entire home/apt,150,4,42,2019-06-11,0.62,2,0 +2003180,NEW YORK CITY HOME in MANHATTAN,6716330,Chris,Manhattan,Inwood,40.8639,-73.92808,Entire home/apt,225,3,127,2019-06-08,1.89,3,157 +2003807,UWS MANHATTAN APT FOR SUPERBOWL WE,10317189,Edouard,Manhattan,Upper West Side,40.79321,-73.9694,Entire home/apt,1000,1,0,,,1,0 +2006452,Sunny Filled Room in Williamsburg,4467316,Barbara,Brooklyn,Williamsburg,40.71044,-73.93987,Private room,80,30,4,2019-01-02,0.08,2,254 +2008122,Large 1 Bedroom Apt in Park Slope,10335193,Whitney,Brooklyn,South Slope,40.66928,-73.98662,Entire home/apt,150,1,3,2014-08-01,0.04,1,0 +2008190,Private: The Grey Room,8481125,Thomas,Manhattan,Upper East Side,40.76273,-73.95866,Private room,120,1,12,2016-09-22,0.19,2,206 +2008227,Private Studio in Private Home,9539641,Dianne,Bronx,North Riverdale,40.90804,-73.90005,Private room,53,2,143,2019-06-30,2.13,1,263 +2010624,Sunny and spacious 2 BR apartment,10346273,Yolanda,Brooklyn,Flatbush,40.63524,-73.96602,Entire home/apt,115,30,4,2016-01-15,0.07,1,47 +2010787,Amazing Williamsburg/Greenpoint Apt w/ 2 Terraces!,1859395,Beto,Brooklyn,Williamsburg,40.71861,-73.94362,Shared room,175,1,7,2016-11-26,0.10,1,0 +2010971,Gorgeous 1BR brownstone,4803115,Daniel,Manhattan,Harlem,40.8083,-73.9439,Entire home/apt,150,1,5,2015-08-19,0.08,1,0 +2011212,West Village Charm and Quiet!,7683195,Brenton,Manhattan,SoHo,40.72778,-74.0086,Entire home/apt,162,2,18,2019-06-22,0.26,1,247 +2011692,STAYING IN MANHATTAN ,2933058,Anne,Manhattan,Morningside Heights,40.80446,-73.96366,Private room,95,4,9,2018-10-13,0.13,1,0 +2012104,"Spacious haven near Riverside park, subway, and CU",10352213,Nicole,Manhattan,Morningside Heights,40.81615,-73.96156,Private room,55,2,19,2018-01-08,0.79,2,0 +2012368,Amazing Downtown With Rooftop,1364042,Jake,Manhattan,Chinatown,40.71695,-73.99178,Entire home/apt,117,5,221,2019-06-13,3.27,2,163 +2012424,Thanksgiving in Manhattan Luxury Suite,275744,Xander,Manhattan,Midtown,40.76542,-73.98081,Entire home/apt,175,2,4,2018-11-25,0.12,1,0 +2012750,"LOVELY 1 BEDROOM APT, BATH + KIT+ LIVING ROOM",10355206,Rosa,Queens,Ridgewood,40.70493,-73.90795,Entire home/apt,75,30,64,2015-11-02,0.95,1,178 +2013807,Magic Manhattan with Rooftop,1364042,Jake,Manhattan,Lower East Side,40.71914,-73.99174,Entire home/apt,189,5,220,2019-06-23,3.25,2,271 +2014701,Studio Apt. on Upper West Side,10363037,Molly,Manhattan,Upper West Side,40.78021,-73.9805,Entire home/apt,150,2,7,2016-10-10,0.18,1,0 +2015094,Private room in Manhattan,10364678,Dany,Manhattan,Inwood,40.86888,-73.92059,Private room,45,2,36,2016-06-11,0.57,2,188 +2015168,Cozy 2BD APT close to subway,10365281,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95575,Entire home/apt,190,2,237,2019-07-06,3.70,1,266 +2015586,Wonderful bright Brooklyn apt,7127362,Lydia,Brooklyn,Clinton Hill,40.6841,-73.96691,Entire home/apt,130,5,9,2016-01-06,0.13,1,0 +2016579,Cozy Private room in Brooklyn,8013034,Kenny And Christine,Brooklyn,Bushwick,40.69641,-73.90994,Private room,79,1,13,2018-12-01,0.49,2,315 +2017012,W Village Luxury Apt. (Super Bowl),10373126,Sirous,Manhattan,West Village,40.73967,-74.00933,Entire home/apt,850,3,0,,,1,0 +2017397,☆ DESIGN Spacious ☆ 1 BR Sleeps 4 Brooklyn Museum,2496464,Monica,Brooklyn,Crown Heights,40.66687,-73.95619,Entire home/apt,150,5,68,2019-07-01,1.07,1,202 +2019755,Front Studio in Loft Apartment - Steiner Studios,10383481,Bradley,Brooklyn,Clinton Hill,40.69594,-73.96715,Entire home/apt,100,2,100,2019-07-03,1.49,1,280 +2019927,Beautiful Furnished 1 Bedroom apt; Wash Hts,10384087,Todd,Manhattan,Inwood,40.86317,-73.92873,Entire home/apt,115,1,78,2019-06-21,1.81,1,93 +2020881,2 BR apt in East Village w private patio,10387304,Michael,Manhattan,East Village,40.73003,-73.98576,Entire home/apt,300,2,17,2019-01-02,0.55,2,169 +2021742,Cozy Apt in the heart of Manhattan!,10390993,Danny,Manhattan,Midtown,40.74873,-73.98827,Entire home/apt,159,7,0,,,1,0 +2022126,Midtown Manhattan Apt,10392717,Rick,Manhattan,Midtown,40.74897,-73.98265,Private room,500,5,0,,,1,0 +2022728,Room in Manhattan! 15min=TimeSquare,7580038,Jack Andrew,Manhattan,Harlem,40.82475,-73.94842,Private room,39,12,26,2019-04-26,0.42,3,155 +2022920,UES,8214568,Allison,Manhattan,Upper East Side,40.78081,-73.95045,Entire home/apt,250,1,0,,,1,0 +2022938,Sunny Duplex on Prospect Park,4419367,Paul,Brooklyn,Windsor Terrace,40.65391,-73.97401,Entire home/apt,200,4,20,2018-12-31,0.30,1,279 +2022958,Elegant 1BR @ Columbus Circle,195168,Raees,Manhattan,Hell's Kitchen,40.76709,-73.98577,Entire home/apt,250,3,16,2016-10-15,0.24,1,0 +2023357,Artistic n Funky 1BD by the Park!,10398270,Andrew And Katie,Manhattan,East Harlem,40.78605,-73.95087,Entire home/apt,120,6,4,2016-04-09,0.06,1,0 +2023577,Charming bedroom on the Upper West,323517,Deda,Manhattan,Upper West Side,40.80034,-73.96638,Private room,105,1,31,2019-06-22,0.46,2,365 +2024991,Beautiful king-size 1-bedroom with balcony,10362054,Mary,Queens,Astoria,40.7577,-73.91981,Entire home/apt,100,3,1,2018-01-01,0.05,1,0 +2025779,Charming East Village One Bedroom,212572,Joyce,Manhattan,East Village,40.72977,-73.98713,Entire home/apt,175,4,0,,,1,0 +2026434,Fab Williamsburg Brooklyn Apt.,5772472,Anthony,Brooklyn,Greenpoint,40.72,-73.95433,Entire home/apt,500,5,0,,,1,0 +2026869,Sunny Village Studio: Long Stays,10411521,Matt,Manhattan,East Village,40.7282,-73.9834,Entire home/apt,120,5,0,,,1,0 +2028178,1BD Modern Contemporary in Williamsburg,10417106,Helene & Michael,Brooklyn,Williamsburg,40.71491,-73.94864,Private room,85,2,7,2018-05-31,0.11,1,207 +2028272,Luxurious Chelsea Apt with Terrace,4363412,Yonathan,Manhattan,Chelsea,40.73985,-74.00138,Entire home/apt,320,30,24,2018-12-07,0.36,1,66 +2028291,"Entire studio with backyard, Close to subway!!!",10243387,Mirlet,Queens,Astoria,40.7582,-73.92811,Entire home/apt,149,3,19,2019-07-07,0.56,2,291 +2028391,"Soho Penthouse Loft, Terrace & View",10417911,Nisian,Manhattan,SoHo,40.72329,-73.9981,Entire home/apt,400,3,1,2015-07-23,0.02,1,0 +2028432,Sunny Private Studio With Backyard Close 2 Subway!,10243387,Mirlet,Queens,Long Island City,40.75832,-73.92874,Private room,72,3,26,2019-03-14,0.41,2,307 +2028625,"SB 2014/Winter in NYC, PH, 860 sf!!",10419406,Scott,Manhattan,Harlem,40.82486,-73.93993,Entire home/apt,300,3,0,,,1,0 +2028677,1BR in HARLEM...SUNNY & SPACIOUS,9852787,Brooklyn,Manhattan,Harlem,40.81639,-73.94085,Entire home/apt,115,7,57,2019-05-25,0.89,1,125 +2028925,Art Boutique 2BR Suite at JFK Airport,10162529,Jay,Queens,St. Albans,40.70039,-73.75233,Entire home/apt,325,3,82,2019-01-01,1.37,2,359 +2030736,Room B,10384906,Susan,Brooklyn,Sunset Park,40.64532,-74.02063,Private room,32,1,111,2019-04-20,1.70,5,208 +2031495,Big Private Sunny Room in UWS Duplex w/ Terrace,25100,Susana,Manhattan,Upper West Side,40.79675,-73.96916,Private room,100,3,11,2016-06-07,0.16,1,0 +2033224,2-br Apartment in Manhattan,10437461,Igor,Manhattan,Harlem,40.81858,-73.9559,Entire home/apt,150,4,12,2018-01-01,0.20,1,0 +2033846,"Boutique Hip Hotel Feel, WiFi, NetFlix, Private",667627,Marvin,Manhattan,Harlem,40.81728,-73.94583,Entire home/apt,95,4,72,2019-05-19,1.10,1,11 +2033866,East Village 2 Bed 2 Floor Luxury Apartment,7846216,Rafael,Manhattan,East Village,40.72635,-73.97595,Entire home/apt,290,1,114,2018-10-07,1.71,1,157 +2036105,Private room D,10384906,Susan,Brooklyn,Dyker Heights,40.6283,-74.01608,Private room,30,1,67,2019-01-22,0.99,5,150 +2037508,Bed Stuy Apartment One Bedroom,10211848,Ben,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94446,Entire home/apt,75,4,1,2014-01-03,0.01,1,0 +2037632,Cute East Village 1 Bedroom Apt,1415489,Angelita,Manhattan,East Village,40.72782,-73.98095,Entire home/apt,140,5,25,2019-06-13,0.37,1,13 +2037951,Modern West Village Apartment,4191006,Nick,Manhattan,West Village,40.73858,-74.00875,Private room,500,365,0,,,1,0 +2038278,Bright and Open Astoria Apartment,10456845,Taylor,Queens,Astoria,40.76589,-73.92864,Entire home/apt,100,1,2,2015-12-30,0.03,2,0 +2041041,Your Living Room is the UES,7028387,Todd,Manhattan,Upper East Side,40.76749,-73.95533,Private room,80,24,89,2019-06-13,1.40,1,146 +2041143,Perfect for Visiting Family,10468616,Sara,Brooklyn,Park Slope,40.67559,-73.98362,Entire home/apt,125,3,1,2016-08-28,0.03,1,0 +2042764,Architect's home in Park Slope,3707465,Sim,Brooklyn,South Slope,40.66719,-73.98361,Entire home/apt,250,4,11,2016-09-06,0.17,1,0 +2043049,Bushwick Calabrese Abode,6447895,Stella,Brooklyn,Bushwick,40.68673,-73.91024,Private room,50,2,2,2019-04-15,0.50,1,35 +2043060,"Clean, spacious entire 1br in NYC!",1499286,Andrey,Manhattan,Midtown,40.76326,-73.98165,Entire home/apt,395,5,37,2019-06-09,0.55,2,350 +2043329,Studio in Hell's Kitchen,10478532,Erin,Manhattan,Hell's Kitchen,40.76473,-73.98937,Entire home/apt,100,2,11,2015-05-27,0.16,1,0 +2044392,The heart of Williamsburg 2 bedroom,620218,Sarah,Brooklyn,Williamsburg,40.71257,-73.96149,Entire home/apt,250,4,0,,,1,0 +2044873,Bushwick Artist Loft - Awesome Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70781,-73.92184,Private room,79,1,89,2019-04-24,1.39,3,310 +2045097,Charming Lower East Side Studio!,4119331,Ryan,Manhattan,Lower East Side,40.71892,-73.98383,Entire home/apt,100,7,0,,,1,0 +2045727,Cozy Room in Family Home..BKLYN!!!,320284,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93346,Private room,52,2,203,2019-05-26,3.13,1,323 +2046007,1 BR in LES. Heart of New York City,4274857,Helena,Manhattan,Lower East Side,40.72148,-73.98823,Private room,98,4,67,2019-07-02,1.09,3,102 +2046225,"Large, Sunny Brooklyn Apartment",10490291,Lauren,Brooklyn,Crown Heights,40.66539,-73.95651,Entire home/apt,120,2,3,2016-08-29,0.04,1,0 +2046273,Private room in Park Slope,3126588,Laszlo,Brooklyn,Sunset Park,40.66118,-73.98901,Private room,40,25,0,,,1,0 +2046789,"Huge, Arty, Earthy + BEST Location!",1442412,Meredith,Manhattan,Kips Bay,40.73987,-73.98317,Entire home/apt,345,1,56,2016-06-13,0.83,1,0 +2048796,Sunnyside Gardens Oasis!,763439,Joel,Queens,Sunnyside,40.74817,-73.91886,Private room,50,1,1,2017-08-12,0.04,1,0 +2049322,Private room in Brooklyn Loft,9446761,Paul,Brooklyn,Williamsburg,40.70371,-73.93344,Private room,45,7,0,,,1,0 +2050406,"Bright, Huge 1Bdrm in Midtown",10406601,Amaryllis,Manhattan,Midtown,40.7552,-73.9724,Entire home/apt,250,1,0,,,1,0 +2050993,"Noho East Vill Lux Bldg w/Gym,Pool ",4836650,Kris,Manhattan,NoHo,40.72717,-73.9927,Entire home/apt,350,2,1,2014-09-07,0.02,1,0 +2051675,Nice modern room by Prospect Park!,4684532,Noel And Patricia,Brooklyn,Flatbush,40.65398,-73.96139,Private room,57,2,199,2019-06-29,2.98,1,265 +2053940,Sunny top floor apartment in Clinton Hill,4965107,Nichola,Brooklyn,Fort Greene,40.69767,-73.97137,Entire home/apt,120,2,4,2019-01-02,0.06,1,42 +2054899,Sunny Apartment in West Village,800720,Seb,Manhattan,West Village,40.73187,-74.00865,Entire home/apt,1000,3,0,,,1,0 +2055050,Charming studio upper east side NYC,10525320,Candace,Manhattan,Upper East Side,40.77376,-73.95343,Entire home/apt,125,5,54,2019-06-01,0.90,2,274 +2055303,South Harlem 1 Bedroom Apartment,10526058,Ashley & Nate,Manhattan,Harlem,40.80163,-73.95413,Entire home/apt,145,3,58,2017-01-01,0.97,1,0 +2055467,Great Location on St. Marks Place,10526877,Steven,Manhattan,East Village,40.72852,-73.98705,Entire home/apt,150,1,0,,,1,0 +2055614,Lovely designer's studio,10527465,Gigi,Brooklyn,Fort Greene,40.6856,-73.97418,Private room,89,90,13,2018-10-08,0.19,1,101 +2055819,"Garden Oasis, Williamsburg! ",10528287,Mike,Brooklyn,Williamsburg,40.71589,-73.95534,Entire home/apt,164,1,200,2019-07-05,3.37,2,208 +2056012,"Rancho Deluxe, Williamsburg! ",10528287,Mike,Brooklyn,Williamsburg,40.71542,-73.95652,Entire home/apt,210,1,215,2019-07-02,3.20,2,224 +2056307,1 room in HUGE 2Bedroom/1.5 Bath,1584064,Adrienne,Manhattan,Harlem,40.80121,-73.95063,Private room,115,7,1,2015-09-27,0.02,2,0 +2057295,Junior 1-BR in West Village,10534508,Amanda,Manhattan,West Village,40.73075,-74.00238,Entire home/apt,110,45,21,2018-01-02,0.31,1,0 +2057403,Spacious Upper West side 2 bedroom apartment,10535116,Connie,Manhattan,Upper West Side,40.79053,-73.96956,Entire home/apt,199,5,8,2019-01-01,0.12,1,9 +2057480,Spacious 2BR in the heart of Soho,6145679,Omar,Manhattan,SoHo,40.72577,-74.00279,Entire home/apt,272,5,4,2016-04-22,0.08,1,0 +2057553,PRIVATE ROOM in Peacuful 2-Bedroom,10535719,Mike,Manhattan,East Harlem,40.79981,-73.94048,Private room,75,7,7,2018-10-15,0.12,3,328 +2057595,Great location in the East Village,10535464,Steve,Manhattan,East Village,40.72829,-73.98907,Private room,69,13,42,2019-05-25,0.62,1,84 +2060275,NoHa Living,10545845,Evan,Manhattan,East Harlem,40.80797,-73.93686,Private room,179,1,1,2013-12-14,0.01,1,0 +2060720,Charming Jr. 1 bedroom Midtown,9563358,Chun,Manhattan,Midtown,40.75184,-73.97199,Entire home/apt,106,7,3,2019-05-24,0.09,1,4 +2060768,West Village Apt steps to Path,10547610,Raj,Manhattan,West Village,40.73246,-74.00854,Entire home/apt,800,1,0,,,1,0 +2061367,"Room on Upper West Side, Manhattan",10550207,Brooke,Manhattan,Upper West Side,40.77895,-73.97837,Private room,100,2,0,,,1,0 +2061725,"❤️ 2 Beds Option + Private Bath, Sunshine Bushwick",4601412,Mia,Brooklyn,Bushwick,40.6922,-73.92399,Private room,60,2,226,2019-06-30,3.42,2,164 +2061811,Great NYC Location for beginning of JULY,10552208,Julia,Manhattan,Upper West Side,40.77928,-73.97966,Entire home/apt,120,7,3,2016-01-05,0.04,1,0 +2062630,Large 1 bedroom apartment (shared),6313448,Lexy,Bronx,Bronxdale,40.85667,-73.86543,Entire home/apt,80,1,1,2014-08-19,0.02,1,0 +2063587,Beautiful Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74282,-73.9803,Private room,75,30,42,2018-12-10,0.67,26,345 +2065101,Sunny Room,7455886,Emily,Queens,Astoria,40.7672,-73.90795,Private room,35,7,0,,,1,0 +2065538,Sunny Place in Cool Hood,617671,Jason,Brooklyn,Crown Heights,40.67659,-73.95608,Entire home/apt,88,2,14,2018-07-13,0.21,1,16 +2065985,"Woodside Queens, New York",9757249,Kenny,Queens,Sunnyside,40.74071,-73.9191,Private room,50,1,0,,,1,0 +2066165,Cozy room in NYC 5,5164854,Lilia,Manhattan,Harlem,40.82078,-73.93771,Private room,45,4,19,2019-04-10,0.31,8,42 +2067166,Private Room in Upper East Side,10573163,Diana,Manhattan,Upper East Side,40.77127,-73.95033,Entire home/apt,75,3,2,2017-07-25,0.08,1,0 +2067688,MIDTOWN MANHATTAN-WALKING DISTANCE TO EMPIRE STATE,10575680,David,Manhattan,Kips Bay,40.74221,-73.98121,Private room,79,2,2,2017-01-02,0.06,2,0 +2068054,One Room in Lovely Zen House,10577541,Kat,Queens,Forest Hills,40.71215,-73.85356,Private room,55,15,6,2018-04-21,0.10,1,255 +2069051,Your private space in Brooklyn,10581418,Frank,Brooklyn,Williamsburg,40.71524,-73.94299,Private room,45,1,17,2019-05-12,0.55,1,354 +2069059,Cozy 2BR Brooklyn retreat w/Bckyard,10581580,Carolyn,Brooklyn,South Slope,40.66551,-73.98805,Private room,85,10,0,,,1,0 +2069359,New 1BR + 1BA with Private Entrance,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.67828,-73.92965,Private room,80,3,130,2019-06-10,2.00,3,220 +2070290,LARGE 2 BEDROOM FOR SUPER BOWL ,10585956,Yigal,Manhattan,Hell's Kitchen,40.76874,-73.98757,Entire home/apt,599,1,0,,,1,0 +2071265,GET COSY IN WILLIAMSBURG...,10590038,Rory,Brooklyn,Williamsburg,40.70491,-73.94268,Entire home/apt,110,3,3,2015-05-30,0.05,1,0 +2071420,Classic Chelsea Brownstone 1 Bedroom,10590692,Wade,Manhattan,Chelsea,40.74374,-74.00044,Entire home/apt,199,2,177,2019-07-01,2.85,2,112 +2071446,Inspiring spacious loft space,3608781,Katja,Brooklyn,Williamsburg,40.71955,-73.96049,Private room,94,2,129,2019-02-23,2.22,1,188 +2071464,Brooklyn garden 2 bedroom,3011547,Wendy,Brooklyn,Boerum Hill,40.6863,-73.98572,Entire home/apt,400,5,34,2019-06-22,0.50,3,333 +2071839,Room in a lovely 2br apartment - East Williamsburg,1939680,Silvia,Brooklyn,Williamsburg,40.70731,-73.94344,Private room,60,7,5,2018-08-05,0.14,1,3 +2071873,Cozy Studio in Murray Hill,1394669,Lala,Manhattan,Murray Hill,40.75053,-73.97747,Entire home/apt,175,2,31,2019-05-26,0.46,1,33 +2071941,Huge Sunny Family Friendly Loft in Greenpoint,1468317,Jessie,Brooklyn,Greenpoint,40.72323,-73.94915,Entire home/apt,200,5,0,,,1,0 +2074653,Cozy East Village Bedroom,1468247,Kris,Manhattan,East Village,40.73033,-73.98742,Private room,100,5,2,2016-10-22,0.06,1,0 +2074985,Summer catsit in Brooklyn!,248739,Jeremy,Brooklyn,Crown Heights,40.66806,-73.95358,Entire home/apt,50,3,9,2016-11-18,0.13,1,0 +2075377,Studio Apartment centrally located!,10607256,Lisa,Manhattan,Kips Bay,40.73899,-73.98153,Entire home/apt,175,3,0,,,1,0 +2075453,Sunny & Bright Bohemian 2BR XL Loft,7503643,Vida,Brooklyn,Greenpoint,40.72532,-73.93992,Entire home/apt,199,30,8,2018-07-17,0.14,52,308 +2075471,Big room in Greenpoint.,10607636,Brandon,Brooklyn,Greenpoint,40.73397,-73.95442,Private room,54,4,4,2014-05-20,0.06,1,0 +2075526,1 BR Apt in Park Slope Brooklyn,8109174,Katie And Matt,Brooklyn,Park Slope,40.66952,-73.98285,Entire home/apt,130,4,8,2016-12-30,0.12,1,0 +2075600,Delicious & Airy Apt in Landmark Brownstone,5089,Subhana,Brooklyn,Bedford-Stuyvesant,40.68637,-73.9417,Entire home/apt,151,2,43,2019-07-01,0.65,1,220 +2076101,Cozy 1BR in Morningside Heights,10610482,Robyn,Manhattan,Morningside Heights,40.81233,-73.96101,Entire home/apt,80,1,1,2016-03-20,0.02,1,0 +2078687,Lower East Side Haven on Ludlow St,10621196,Kate,Manhattan,Lower East Side,40.71715,-73.98936,Entire home/apt,110,8,5,2016-01-06,0.07,1,333 +2079686,Sunny apt with Backyard,7624316,Rebecca,Brooklyn,Bushwick,40.7018,-73.91823,Entire home/apt,60,3,14,2017-02-20,0.21,1,0 +2079765,"Charming, sunny oasis",3389163,Nadine,Brooklyn,Bedford-Stuyvesant,40.68171,-73.92085,Entire home/apt,110,10,58,2019-06-03,0.92,1,282 +2080709,Awesome Bedroom close to Manhattan!,4030621,Rob,Brooklyn,Greenpoint,40.73303,-73.95153,Private room,73,2,19,2016-01-05,0.28,1,0 +2080861,Spacious 3BD/2BA - Parking Included,10630723,Nancy,Brooklyn,Bedford-Stuyvesant,40.69142,-73.93481,Entire home/apt,177,3,209,2019-06-26,3.11,2,237 +2081177,Lovely Studio in New York City,542611,Robyn,Queens,Sunnyside,40.74409,-73.91868,Entire home/apt,90,14,6,2016-09-11,0.09,1,0 +2081394,Apartment-NYC-LES-Lower East Side,2707940,Adrien,Manhattan,Lower East Side,40.71864,-73.98496,Entire home/apt,190,1,2,2015-07-13,0.04,1,0 +2081408,Cozy Sun Drenched Crown Heights Apt,318435,Rose,Brooklyn,Crown Heights,40.66646,-73.93605,Entire home/apt,105,5,1,2015-01-08,0.02,1,0 +2081850,"Huge, gorgeous apt in Harlem, NYC",1657228,Aktina,Manhattan,Harlem,40.81286,-73.94385,Entire home/apt,150,14,1,2014-01-13,0.01,1,35 +2082328,Comfy & Spacious Room next to the Subway/Metro,9947836,Jenny,Bronx,Longwood,40.82347,-73.89495,Private room,65,4,26,2019-05-28,0.85,2,7 +2082670,East Williamsburg Room near L train,10638597,Reid,Brooklyn,Williamsburg,40.70674,-73.94365,Private room,35,1,2,2016-06-01,0.03,1,0 +2082694,Brand New 3BR Apartment,10638711,Corey,Brooklyn,Williamsburg,40.70958,-73.94287,Entire home/apt,700,3,1,2014-01-02,0.01,1,0 +2083547,3 Bed/ 2 Bath Full Apt. BK Heights,4690301,Eric,Brooklyn,Brooklyn Heights,40.69134,-73.99334,Entire home/apt,185,2,10,2017-09-20,0.20,1,0 +2083749,STYLISH NYC OASIS NEAR CENTRAL PARK,10643341,Rt,Manhattan,Upper West Side,40.80033,-73.96509,Entire home/apt,150,90,54,2019-01-10,0.86,1,153 +2083791,Live like a native,14751,Chris,Brooklyn,Bedford-Stuyvesant,40.68773,-73.9452,Private room,100,1,0,,,1,220 +2083824,Luxurious & Spacious 1 Bedroom Apt,10643695,Sam,Brooklyn,Williamsburg,40.71131,-73.96813,Entire home/apt,575,1,0,,,1,0 +2084817,Huge Bedroom at Downtown Manhattan,2657134,Luna,Manhattan,Lower East Side,40.71044,-73.98756,Private room,128,1,16,2018-02-28,0.75,1,0 +2085632,Private Deck 2 Bedroom+2 Bath East Village,10650502,Jeni,Manhattan,East Village,40.72247,-73.97923,Entire home/apt,299,28,92,2018-07-25,1.37,1,14 +2086647,LES Sun Drenched w/ Balcony,10653693,Christina,Manhattan,Chinatown,40.71651,-73.99053,Entire home/apt,169,3,2,2015-05-19,0.03,1,0 +2087226,Penthouse With Private Roof Deck,1763458,Patrick,Manhattan,East Village,40.72864,-73.98216,Private room,109,7,130,2019-07-03,3.38,1,78 +2087524,Private Parlour Floor,10656683,Lorna,Brooklyn,Clinton Hill,40.68041,-73.95838,Entire home/apt,99,4,74,2019-06-11,1.93,1,261 +2087663,"Chic, neat & cozy small 1 BR Apt",10657268,Boryana,Queens,Astoria,40.76165,-73.92179,Entire home/apt,130,5,0,,,1,0 +2087970,West Village Wonder -spacious 1 bed,10658486,Owen,Manhattan,West Village,40.73552,-74.00716,Entire home/apt,239,4,52,2019-06-26,0.82,1,84 +2088389,Entire Sun Drenched Apartment in Clinton Hill,234918,Mariya,Brooklyn,Clinton Hill,40.68476,-73.96672,Entire home/apt,100,30,17,2017-08-30,0.25,1,0 +2088725,Beautiful renovated 1 bedroom Apt.,10661536,Edgar,Brooklyn,Gowanus,40.66983,-73.9904,Entire home/apt,124,4,52,2019-06-30,0.80,1,147 +2089226,"SALE- 2 BEDS, IN PRIVATE BEDROOM NEAR MANHATTAN!",8452639,C S,Brooklyn,Flatbush,40.64717,-73.96189,Private room,69,1,64,2019-06-15,0.96,3,362 +2089273,Williamsburg Luxury 1 Bedroom,8956323,Jayar,Brooklyn,Williamsburg,40.70867,-73.94799,Entire home/apt,180,2,0,,,1,0 +2089492,Sunny 1 Bedroom Apt in Williamsburg,1104548,Kimberly,Brooklyn,Williamsburg,40.71371,-73.96236,Entire home/apt,225,2,28,2018-10-31,0.55,1,0 +2089712,Spacious 1-BR Midtown West,10666587,Kevin,Manhattan,Hell's Kitchen,40.75774,-73.99371,Entire home/apt,119,2,3,2015-12-14,0.04,1,0 +2089745,GREAT in CHELSEA: JUST SEE REVIEWS,10661984,Joseph,Manhattan,Chelsea,40.74611,-74.00014,Entire home/apt,220,7,55,2019-06-04,1.12,1,13 +2091204,Spacious and bright Bedroom,10672341,Emily,Brooklyn,Crown Heights,40.66876,-73.95633,Entire home/apt,150,4,6,2019-05-09,0.10,2,0 +2091483,Large BR in a 3BR apartment,2529788,Cagil,Brooklyn,Prospect Heights,40.67321,-73.96514,Private room,75,1,0,,,1,188 +2092588,Staying in Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73408,-73.95601,Private room,51,3,19,2018-01-23,0.32,4,0 +2092611,"Bright & cozy, private UES studio",10662294,Daria,Manhattan,Upper East Side,40.77519,-73.95688,Entire home/apt,150,9,9,2017-09-05,0.13,1,0 +2093035,"Modern & Artsy, Awesome Location",10099888,Enrique,Brooklyn,Williamsburg,40.71243,-73.95873,Private room,91,1,9,2016-07-04,0.14,1,0 +2093064,"Sunny Chelsea 1 B.R. Hi Line, Washer/Dryer, 3 Beds",7245581,Michael,Manhattan,Chelsea,40.74978,-73.99686,Entire home/apt,139,90,20,2018-12-15,0.31,19,219 +2093304,Hidden gem in Fort Greene,9791461,Brian,Brooklyn,Fort Greene,40.69286,-73.96993,Entire home/apt,100,4,45,2019-01-03,1.01,1,190 +2093455,Nice bedroom,6471461,Robert,Queens,Ridgewood,40.70716,-73.89906,Private room,60,1,275,2019-07-05,4.64,2,329 +2094213,Large Stylish 1.5 BR Noho/Nolita,10642609,Laura,Manhattan,NoHo,40.72477,-73.99323,Entire home/apt,255,2,8,2017-01-02,0.12,1,0 +2095959,Big Sunlit Studio - Nice Bed - 18 min to Manhattan,10692401,Jp,Queens,Sunnyside,40.74409,-73.92471,Entire home/apt,94,7,27,2016-08-28,0.40,1,0 +2096581,SUNNY APARTMENT DOWNTOWN!,10694601,Gill,Manhattan,East Village,40.72287,-73.98462,Entire home/apt,179,2,21,2016-10-10,0.31,1,0 +2096968,*Upper East Side Cozy 1 Bedroom*,1461630,Ro,Manhattan,Upper East Side,40.76352,-73.95548,Entire home/apt,135,4,105,2019-06-29,1.56,1,267 +2098338,Big Room near Prospect Park.,4970579,Sasha,Brooklyn,Flatbush,40.63832,-73.96769,Private room,50,5,77,2018-12-16,1.14,1,33 +2098817,Historic Townhouse 3bed 2bath * 1 block to subway,2462590,Jenny And Mark,Brooklyn,Bushwick,40.69067,-73.92207,Entire home/apt,350,2,6,2019-05-01,0.95,2,99 +2100174,Private Furnished Studio Apartment,10710522,Jessica,Manhattan,Upper East Side,40.77452,-73.94951,Entire home/apt,150,30,26,2019-04-21,0.41,1,269 +2100887,1200sqft artsy loft SOHO/NOLITA gem,10545523,Adar,Manhattan,Nolita,40.72045,-73.99598,Entire home/apt,375,3,6,2015-05-19,0.10,1,0 +2101349,Stunning UWS studio private room;,9829662,Victoria,Manhattan,Upper West Side,40.77747,-73.98095,Private room,150,3,10,2019-05-27,0.16,1,42 +2101710,In the heart of Hell's Kitchen,10717291,Adam,Manhattan,Hell's Kitchen,40.76204,-73.99143,Entire home/apt,175,1,0,,,1,0 +2101884,Sunny & Spacious in Park Slope,7096230,Richard And Mollie,Brooklyn,Park Slope,40.67281,-73.97628,Entire home/apt,170,2,24,2017-12-21,0.38,1,0 +2102315,Spacious Modern Williamsburg Loft!,10720001,Phoebe,Brooklyn,Williamsburg,40.70981,-73.95189,Entire home/apt,275,3,3,2014-11-30,0.05,1,0 +2102344,Cozy Private Room in Artsy Bushwick,5976214,Angela,Brooklyn,Bushwick,40.70381,-73.92766,Private room,30,3,2,2014-01-03,0.03,1,0 +2102542,Cozy 1BD-15min to NYC $150,2977901,Andrea,Brooklyn,Cobble Hill,40.68803,-73.99182,Entire home/apt,150,1,19,2015-06-22,0.28,1,0 +2102571,Studio Midtown East,4265753,Dai,Manhattan,Midtown,40.75426,-73.96886,Entire home/apt,140,3,2,2017-04-07,0.07,1,0 +2102651,Central Park West Studio Value,10721586,Dana,Manhattan,Upper West Side,40.78835,-73.9681,Entire home/apt,200,30,1,2014-06-02,0.02,1,365 +2103480,Thanksgiving in Manhattan!,10725397,Andrea,Manhattan,Upper West Side,40.77822,-73.98016,Entire home/apt,560,1,0,,,1,0 +2104588,Time Square doorman building 1 bdrm,6757150,Olena,Manhattan,Theater District,40.76263,-73.98271,Entire home/apt,240,4,0,,,1,0 +2104910,SPACIOUS APT BK/QUEENS w/BACKYARD!,10643810,Alex,Queens,Ridgewood,40.70988,-73.90845,Entire home/apt,99,2,57,2017-03-08,0.89,1,42 +2105163,Gramercy Park Studio Apartment,10732706,Joe,Manhattan,Gramercy,40.73646,-73.98337,Entire home/apt,195,3,3,2019-01-03,0.21,1,0 +2105180,COZY CLEAN BDR 3 MINUTE WALK FROM GRAND CENTRAL,10575680,David,Manhattan,Murray Hill,40.74961,-73.97865,Private room,89,2,10,2017-01-29,0.32,2,0 +2106241,Private Room with Plush Queen Bed,1318137,Adriano,Brooklyn,Bushwick,40.69472,-73.92874,Private room,65,3,87,2019-06-11,1.37,2,305 +2106662,Large one bedroom apartment,10736013,Javier,Manhattan,West Village,40.73192,-74.00433,Entire home/apt,156,1,0,,,1,0 +2106706,"Large Bright Room, East Village Apt",1534243,Seth,Manhattan,East Village,40.72859,-73.98957,Private room,120,1,0,,,1,0 +2107372,Best NYC Deal on upper west!,10346860,Shlom And Lyndz,Manhattan,Upper West Side,40.79994,-73.97094,Entire home/apt,400,1,0,,,1,0 +2107696,Entire 2 BED APARTMENT - WILLIAMSBURG- Best Price,9265204,Gianni,Brooklyn,Williamsburg,40.70765,-73.94821,Entire home/apt,210,3,7,2019-06-10,0.10,2,343 +2107883,Industrial Modernism Flex 2br Loft!,7503643,Vida,Brooklyn,Greenpoint,40.72587,-73.94138,Entire home/apt,159,30,5,2019-04-21,0.14,52,338 +2107939,Private Single Room Steps to Subway,1318137,Adriano,Brooklyn,Bedford-Stuyvesant,40.69193,-73.9274,Private room,55,3,70,2019-05-27,1.11,2,285 +2108178,Fabulous City View Studio Loft,7503643,Vida,Brooklyn,Greenpoint,40.72546,-73.94136,Entire home/apt,129,30,4,2018-01-05,0.06,52,322 +2108237,Large 2BR/2B next to Lincoln Center,4185342,Itay,Manhattan,Upper West Side,40.77517,-73.98829,Entire home/apt,300,3,4,2015-04-21,0.06,1,0 +2108424,Sunny Private room in Brooklyn,8013034,Kenny And Christine,Brooklyn,Bushwick,40.69636,-73.91138,Private room,79,1,20,2019-06-15,0.32,2,285 +2108635,One room/full floor in a Duplex,2770596,Emilio,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94673,Private room,100,4,0,,,2,0 +2110145,UWS 1BR w/backyard + block from CP,2151325,Jay And Liz,Manhattan,Upper West Side,40.77782,-73.97848,Entire home/apt,6000,14,17,2015-02-17,0.27,1,359 +2110493,PRIVATE studio/not shared/ SAFE/ CLEAN/Affordable,1834769,Debbie,Queens,Maspeth,40.72675,-73.90522,Entire home/apt,64,3,7,2019-06-22,0.69,1,333 +2111172,Williamsburg. By Bedford L train,8337801,De,Brooklyn,Williamsburg,40.71872,-73.95496,Private room,110,10,72,2018-12-30,1.07,1,42 +2111336,Nice Modern Mirrored Room in NYC,10764579,Kevin,Manhattan,Harlem,40.82532,-73.94992,Private room,55,14,66,2019-04-30,1.12,1,17 +2112142,"No security req,great price,new queen bed!",10784618,Miguel,Brooklyn,Bedford-Stuyvesant,40.68162,-73.94848,Private room,55,5,8,2018-04-30,0.21,1,270 +2112344,Private Bushwick Loved Room with a Sacred Garden,10768668,Shervin,Brooklyn,Bushwick,40.70177,-73.91922,Private room,75,5,0,,,1,0 +2113431,Amazing room in Greenpoint,10775192,Joshua,Brooklyn,Greenpoint,40.72553,-73.94571,Private room,70,1,0,,,2,0 +2113934,Futon on the Upper East Side!,10777592,Lorna,Manhattan,Upper East Side,40.7686,-73.95307,Shared room,85,2,16,2017-05-21,0.25,1,0 +2115611,Large 1 bedroom apartment next to Prospect Park,1998676,Mal,Brooklyn,Windsor Terrace,40.65022,-73.97247,Entire home/apt,130,29,16,2018-12-19,0.26,1,217 +2115773,Spacious 1BR Haven in Duplex w/Deck,514261,Vanessa,Brooklyn,South Slope,40.66639,-73.98706,Private room,120,7,0,,,3,0 +2115784,Beautiful Prewar 1BD Apartment,10787148,Sarah,Brooklyn,Flatbush,40.64759,-73.96173,Entire home/apt,50,10,4,2014-07-13,0.06,1,0 +2116059,Renting apt for a weekend getaway,10788865,Jochy,Manhattan,Washington Heights,40.83454,-73.94224,Entire home/apt,100,1,205,2019-06-30,3.05,1,1 +2116940,"Sunny, Modern Open 1BR ",2715062,Stephen,Manhattan,Lower East Side,40.71973,-73.99338,Entire home/apt,145,2,4,2016-11-05,0.06,1,0 +2117705,Refreshingly Peaceful Room in Prime Williamsburg,5243832,Andrew,Brooklyn,Williamsburg,40.71258,-73.96392,Private room,100,5,44,2019-05-26,1.68,1,41 +2118102,Charming West Village One Bedroom,7579627,Maria,Manhattan,West Village,40.73236,-74.00353,Entire home/apt,200,1,4,2016-12-22,0.06,1,0 +2119216,"Affordable, Private, Simple & Clean NYC Flat!",10806025,Christina,Manhattan,Harlem,40.82029,-73.93861,Entire home/apt,80,1,353,2019-06-19,5.26,1,258 +2120619,Beautiful Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78881,-73.98116,Entire home/apt,200,6,4,2015-09-21,0.06,2,364 +2122613,SuperBowl West Village Apartment,6854214,Nick,Manhattan,West Village,40.72975,-74.00414,Entire home/apt,325,1,0,,,1,0 +2123079,Artist Loft Studio close to all,10577784,Julian,Queens,Long Island City,40.76304,-73.92777,Entire home/apt,120,3,80,2019-07-02,1.74,2,69 +2123731,Spacious Suite in Midtown West/Times sq.,10828833,Stephen,Manhattan,Hell's Kitchen,40.76466,-73.99325,Private room,180,3,191,2019-06-19,3.29,1,161 +2124536,Downtown Filmmaker's Loft by WTC,269710,Alfredo,Manhattan,Financial District,40.70912,-74.01322,Entire home/apt,379,2,96,2018-06-27,1.52,1,0 +2124910,Private Room E,10384906,Susan,Brooklyn,Borough Park,40.63592,-74.00476,Private room,33,1,98,2019-06-16,1.55,5,0 +2126376,Spacious Bedroom in Williamsburg Loft.,10846328,Luis,Brooklyn,Williamsburg,40.71296,-73.95088,Private room,60,4,0,,,2,0 +2126576,2BR XL Industrial Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72552,-73.94195,Entire home/apt,199,30,4,2018-08-14,0.07,52,365 +2127016,Charming 1br loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72722,-73.94167,Entire home/apt,149,30,4,2018-09-28,0.06,52,343 +2127382,Upper East Side apt for Super Bowl,10852093,Mark,Manhattan,Upper East Side,40.77924,-73.95092,Entire home/apt,150,1,0,,,1,0 +2127713,GREAT COZY APT,8384058,Hb,Manhattan,Harlem,40.81143,-73.94248,Entire home/apt,98,8,37,2018-12-12,0.59,1,170 +2127767,Sun-drenched 2 Bedroom Penthouse,923915,Matthew,Manhattan,East Village,40.72476,-73.97643,Entire home/apt,250,4,34,2016-11-21,0.52,2,239 +2128464,Warm & Spacious (not available),10859032,Garth,Brooklyn,Bushwick,40.69312,-73.90582,Private room,60,1,4,2014-06-10,0.06,1,0 +2128761,"Studio 1 block from subway, 10min to Manhattan!",407078,Mary,Brooklyn,Williamsburg,40.71558,-73.94355,Entire home/apt,149,2,49,2019-07-07,0.73,1,171 +2132248,Huge Master Bedroom w/ Private Bath,3695778,Zach,Brooklyn,Williamsburg,40.7147,-73.96554,Private room,95,5,0,,,1,0 +2134047,Artistic Studio Apartment,2533833,Tico,Brooklyn,Bedford-Stuyvesant,40.68409,-73.95402,Entire home/apt,85,3,122,2019-06-15,1.93,1,41 +2134052,Large artsy studio with 90s style,7978448,Seth,Manhattan,Chelsea,40.74193,-74.0017,Entire home/apt,90,3,23,2015-12-06,0.36,1,0 +2134294,"Nice room in Astoria, Queens, NYC",10859726,Don Luis,Queens,Astoria,40.77073,-73.93229,Private room,47,5,11,2018-03-10,0.16,3,162 +2134697,Gorgeous New 1BR_Heart of Midtown,2119276,Host,Manhattan,Hell's Kitchen,40.76613,-73.98721,Entire home/apt,180,30,16,2019-04-22,0.25,39,337 +2135116,"Downtown, close to every subway!",2382974,Chris,Manhattan,Battery Park City,40.71,-74.0154,Private room,110,3,1,2017-05-25,0.04,1,0 +2135489,Charming Studio in Brooklyn,8624212,Leon,Brooklyn,Carroll Gardens,40.68362,-73.99714,Entire home/apt,170,2,131,2019-06-16,2.02,1,26 +2135754,CONVENIENT Greenwich Village 2 BED!,7793849,Dain,Manhattan,Greenwich Village,40.72934,-73.99983,Entire home/apt,210,5,25,2018-08-24,0.42,1,0 +2135766,"Super Bowl, 2 bdrm, UWS apartment ",4074918,Julie,Manhattan,Upper West Side,40.79478,-73.97474,Entire home/apt,900,1,0,,,1,0 +2136293,Studio Apartment Near Express Subway to Manhattan,6599585,Mike,Queens,Richmond Hill,40.70171,-73.82788,Entire home/apt,65,2,162,2019-06-26,2.45,1,302 +2136511,Private room with bathroom and balcony.,6001762,Ajang,Brooklyn,Bedford-Stuyvesant,40.67927,-73.9113,Private room,60,7,0,,,1,365 +2137111,"Upper West Side 1 BR APT, ~675sg ft",10906528,Chris,Manhattan,Upper West Side,40.78689,-73.96985,Entire home/apt,225,2,14,2016-05-15,0.29,1,0 +2137714,Casa de La Musica,1193933,Yoruba,Brooklyn,Bushwick,40.68342,-73.91017,Entire home/apt,200,7,0,,,1,0 +2137796,A Beautiful Brownstone,10909829,Richelle And Pela,Brooklyn,Bedford-Stuyvesant,40.68478,-73.92971,Entire home/apt,170,3,125,2019-06-22,1.86,2,314 +2138787,"HARLEM, NEW YORK WELCOMES YOU!!",68428,Tye And Etienne,Manhattan,Washington Heights,40.83191,-73.9411,Private room,62,2,4,2019-04-01,0.19,2,336 +2141470,Centrally located Midtown East 1 BR,10928857,Ashley,Manhattan,Murray Hill,40.74487,-73.97452,Entire home/apt,125,2,8,2015-01-02,0.13,1,0 +2141635,"Room in Soho, Manhattan",10929586,Chad,Manhattan,SoHo,40.72356,-74.00305,Private room,106,1,1,2014-04-23,0.02,1,0 +2141667,Riverview at Lovely Harlem/UWS Home,10929872,Carlyn,Manhattan,Harlem,40.81968,-73.95353,Private room,93,2,138,2019-06-05,2.23,1,7 +2141975,Charming and Large UES ROOM for travellers,1580799,Jenn,Manhattan,Upper East Side,40.77459,-73.95149,Private room,85,5,44,2019-06-28,0.77,1,299 +2142092,"Furnished room - W. 181 St. by A, 1",8280182,Alejandro,Manhattan,Washington Heights,40.85098,-73.93664,Private room,300,2,0,,,1,365 +2142130,Fully renovated 1br apt in LES,10932521,Kenneth,Manhattan,Lower East Side,40.71978,-73.98643,Entire home/apt,224,2,12,2018-11-25,0.21,1,0 +2144033,Williamsburg - country house in NYC,6166889,Shelly,Brooklyn,Williamsburg,40.71473,-73.96495,Private room,145,1,52,2019-06-17,0.82,1,291 +2144319,"Cheap, furnished private room",10945216,Rebecca,Brooklyn,Crown Heights,40.67177,-73.95221,Private room,40,1,1,2014-01-04,0.01,1,0 +2145599,Large Private BR in Hell's Kitchen,1698391,Pat,Manhattan,Hell's Kitchen,40.76197,-73.99308,Private room,135,2,150,2019-06-28,2.42,3,98 +2145620,"Bright, Lovely, Private Room in Midtown Manhattan",10949644,Lydia,Manhattan,Midtown,40.75667,-73.96464,Private room,97,3,177,2019-06-28,2.69,1,58 +2145759,Cozy Room in Upper East Side,2879920,Alberto,Manhattan,Upper East Side,40.76141,-73.96273,Private room,69,60,43,2016-05-29,0.65,2,90 +2148025,Bed & Bagel~a charming 3 bedroom loft,9130465,Roberta (And Chris),Brooklyn,Bushwick,40.69346,-73.90765,Entire home/apt,225,4,233,2019-06-29,3.55,1,89 +2149184,Super Bowl Rental 2BR in Soho,7363831,Garrett,Manhattan,SoHo,40.72615,-74.00123,Entire home/apt,900,1,0,,,1,0 +2149854,Amazing NYC 1BR Apartment,10454853,Margy,Manhattan,Hell's Kitchen,40.76213,-73.99376,Entire home/apt,215,3,2,2015-08-04,0.04,1,0 +2149954,Hip Bushwick Apartment,10972334,Rob,Brooklyn,Bushwick,40.6966,-73.93072,Private room,99,2,8,2018-06-19,0.25,2,88 +2150328,"SUPERBOWL!! 2 Bd, 2 Ba w Roof Deck!",10974237,Abby,Manhattan,East Village,40.72767,-73.98825,Entire home/apt,850,1,0,,,1,0 +2150727,1500 sq ft apt sleeps 8 - SuperBowl,5579700,Steve,Manhattan,Gramercy,40.73545,-73.98238,Entire home/apt,2000,1,0,,,1,0 +2150750,"Private Bedroom in Sunnyside, NYC ",9268805,David,Queens,Sunnyside,40.74527,-73.91693,Private room,60,1,10,2014-10-12,0.16,2,184 +2151106,2br. Luxury Building in Upper East,6542088,Inbar,Manhattan,Upper East Side,40.7836,-73.95093,Entire home/apt,303,7,29,2018-11-25,0.46,1,3 +2151259,Superbowl Studio Upper West Side,10263977,A,Manhattan,Upper West Side,40.79752,-73.96298,Entire home/apt,750,3,0,,,1,0 +2151479,Newly renovated house,10981050,Rhonda,Brooklyn,Bedford-Stuyvesant,40.68922,-73.94626,Entire home/apt,111,3,104,2019-06-17,1.65,1,261 +2151558,COZY ROOM WITH STUNNING VIEW IN AN AUTHENTIC FLAT,2838861,Ryan,Brooklyn,Greenpoint,40.73107,-73.95712,Private room,60,30,10,2018-05-28,0.15,1,92 +2153435,The best Williamsburg has to offer!,4630562,Edward,Brooklyn,Williamsburg,40.71587,-73.96351,Entire home/apt,320,2,172,2019-07-04,2.99,1,330 +2154075,"Brooklyn Charm, Close to Manhattan (30+ Days Only)",10992588,Joni,Brooklyn,Bedford-Stuyvesant,40.6864,-73.94529,Entire home/apt,112,200,314,2019-06-20,4.82,2,42 +2154567,Cozy Brownstone Suite,9430366,Sharon And Ronn,Brooklyn,Bedford-Stuyvesant,40.68232,-73.92746,Entire home/apt,185,2,159,2019-06-30,3.20,1,348 +2155219,Private Bedroom in LIC/ Astoria,10998158,Laura,Queens,Long Island City,40.75874,-73.92999,Private room,100,29,37,2018-12-08,0.57,1,305 +2155345,Bushwick Bungalow,10995590,Cat,Brooklyn,Bushwick,40.70014,-73.92705,Entire home/apt,150,1,1,2015-10-14,0.02,1,0 +2156111,Lg Private Rm wTerrace Midtown West,305395,Ritza,Manhattan,Hell's Kitchen,40.76337,-73.98576,Private room,130,5,98,2019-06-24,1.73,1,48 +2157550,"2BD True Loft, Hip & Artsy Location",11010011,Adrien,Brooklyn,Bushwick,40.70751,-73.92058,Entire home/apt,130,5,9,2017-06-26,0.18,1,0 +2158171,Luxury NYC Studio for Super Bowl 48,11012889,Judy,Manhattan,Financial District,40.70451,-74.00671,Entire home/apt,575,1,0,,,1,0 +2159193,The Perfect 1-bedroom in Cobble Hill,11012377,Edward,Brooklyn,Carroll Gardens,40.68497,-73.9902,Entire home/apt,125,5,2,2019-04-19,0.32,1,196 +2159898,East Village Studio,11021180,Sheila,Manhattan,East Village,40.72671,-73.98437,Entire home/apt,190,4,216,2019-07-06,3.34,1,55 +2160591,"Brooklyn NY, Comfy,Spacious Repose!",6326737,Benjamin,Brooklyn,Bushwick,40.68926,-73.91595,Private room,70,3,40,2019-05-19,0.63,1,365 +2163602,Upper West Side elegance. Riverside,11039974,Poppi,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,599,1,5,2016-08-25,0.14,2,0 +2164135,"BIG, BRIGHT, STYLISH + CONVENIENT",1470471,Kerstin,Brooklyn,Bedford-Stuyvesant,40.69112,-73.95203,Private room,80,3,90,2019-06-17,1.39,1,199 +2164631,Exclusive Upper East Side Studio,2090668,Ellen,Manhattan,Upper East Side,40.77464,-73.95226,Entire home/apt,99,1,0,,,1,0 +2165107,Cozy Manhattan 1 BR,10533538,Sean,Manhattan,Upper East Side,40.7604,-73.96029,Entire home/apt,100,6,29,2019-05-30,0.47,1,128 +2165933,Furnished one bedroom in Midtown West.,11051885,Gregory,Manhattan,Theater District,40.76252,-73.98376,Entire home/apt,200,30,2,2017-12-06,0.05,1,339 +2168268,Home Sweet Home in Historic Harlem-Riverside Drive,9949214,Logan,Manhattan,Harlem,40.82252,-73.94462,Private room,60,2,13,2017-08-17,0.45,1,33 +2169106,Huge Sunny Room In Awesome Apt/Neighborhood,11066377,Brett,Brooklyn,Prospect-Lefferts Gardens,40.6591,-73.96116,Private room,100,2,13,2019-05-19,0.36,1,365 +2169765,Lower Park Avenue Pre War,8258307,James,Manhattan,Murray Hill,40.74855,-73.98001,Entire home/apt,2000,1,0,,,1,0 +2170035,Historical Harlem @ express train!,11070320,Tracy,Manhattan,Harlem,40.812,-73.95367,Private room,90,3,82,2018-04-23,1.29,1,0 +2170618,Brooklyn Artist Bdrm center of everything,11073109,Maya,Brooklyn,Clinton Hill,40.68214,-73.96474,Private room,61,4,3,2015-08-17,0.06,1,0 +2171809,Room w/ Private Bathroom,11063639,Weilong,Brooklyn,Williamsburg,40.71557,-73.96149,Private room,99,1,0,,,1,0 +2171821,Cool New 1br Apt - 1block from L&M,11079245,Florian / Anna,Queens,Ridgewood,40.70218,-73.91005,Private room,100,7,14,2019-05-08,0.24,1,365 +2172139,Modern Apt Steps from Central Park,10096792,Alex,Manhattan,Upper West Side,40.77608,-73.97614,Entire home/apt,340,6,1,2019-04-26,0.41,1,365 +2175827,Room Bedford Heart of Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71354,-73.96183,Private room,75,2,183,2019-06-30,3.03,3,154 +2177004,Sunny Loft in heart of williamsburg - entire loft!,11103721,Michelle,Brooklyn,Williamsburg,40.71364,-73.96427,Entire home/apt,130,30,6,2018-07-05,0.17,1,39 +2178294,Garden apt in Wlmsbrg - Lorimer L,5716241,Aditya,Brooklyn,Williamsburg,40.71328,-73.95154,Entire home/apt,140,2,6,2019-01-02,0.10,1,0 +2181941,Beautiful Apartment On Stivers Row,824689,Phyllis,Manhattan,Harlem,40.81562,-73.94426,Entire home/apt,112,3,22,2019-06-04,0.34,1,313 +2182899,Sunny & spacious NYC Apartment,377361,Zed,Manhattan,East Village,40.72456,-73.98004,Entire home/apt,160,3,25,2017-05-23,0.40,1,0 +2183423,2 Convertible Bdrms Great for 1-6,5414067,Adrianne,Manhattan,Harlem,40.81333,-73.94194,Entire home/apt,165,3,142,2019-06-14,2.27,2,301 +2185668,Clean Private Room in Chelsea apt,3579337,Nina,Manhattan,Chelsea,40.74106,-74.00262,Private room,80,30,8,2017-01-31,0.12,3,301 +2185842,1BR Superbowl rental Hells Kitchen,6910298,Anna,Manhattan,Hell's Kitchen,40.76,-73.99009,Entire home/apt,850,1,0,,,1,0 +2186138,Superbowl - NYC Apartment,11147328,Ankur,Manhattan,Midtown,40.75764,-73.96827,Entire home/apt,950,1,0,,,1,0 +2186452,Tribeca Loft for Superbowl Wknd,10636508,Reed,Manhattan,Tribeca,40.71725,-74.00528,Entire home/apt,1500,1,0,,,1,0 +2186699,Modern Alcove Studio in Chelsea NYC,11126880,Jeffrey,Manhattan,Chelsea,40.74259,-73.99708,Entire home/apt,160,4,8,2017-12-25,0.12,1,0 +2187847,Beautiful 1-Bedroom in West Village,11155956,Lauren,Manhattan,West Village,40.73818,-74.00433,Entire home/apt,300,2,0,,,1,0 +2188204,Herkimer House,11157871,Anthony,Brooklyn,Bedford-Stuyvesant,40.67892,-73.95156,Entire home/apt,150,2,94,2019-06-23,2.55,1,144 +2189129,10-Room Apt w/ 3BR & Park Views,11163727,Marcus,Brooklyn,Park Slope,40.66587,-73.97737,Entire home/apt,250,1,0,,,1,0 +2189450,East Village 2BR with view!,11165856,Jonathan,Manhattan,East Village,40.72358,-73.9867,Entire home/apt,100,10,0,,,1,0 +2189742,*Queen-sized comfort in cozy Historic Sugar Hill*,11167829,Dana (& Justin),Manhattan,Harlem,40.82811,-73.94372,Private room,49,2,79,2019-06-09,1.22,3,52 +2191591,3 story Home in NYC-upper east side,11176329,Jan,Manhattan,Upper East Side,40.78401,-73.94863,Entire home/apt,675,5,3,2014-09-09,0.05,1,0 +2191612,Full apartment - perfect location,6959160,Craig,Manhattan,Hell's Kitchen,40.76293,-73.98981,Entire home/apt,150,5,9,2018-09-04,0.15,1,6 +2193027,A charming UES apartment,11183488,Ashley,Manhattan,Upper East Side,40.78328,-73.95273,Entire home/apt,300,1,0,,,1,0 +2193649,CLEAN ROOM on Lower East Side,11136429,Yanina,Manhattan,Lower East Side,40.71735,-73.99095,Private room,79,1,259,2017-12-20,3.93,1,2 +2193902,East Village~Organic Living,1587234,Marie,Manhattan,East Village,40.72422,-73.98211,Entire home/apt,225,2,46,2019-04-30,0.80,1,320 +2193945,BEDROOM WITH PRIVATE BATHROOM,11189139,Mete,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9521,Private room,90,2,145,2019-06-29,2.26,1,250 +2194038,Two Bedroom Flat,11189753,Sj,Brooklyn,Fort Greene,40.68683,-73.96981,Entire home/apt,285,8,23,2019-06-15,0.36,4,364 +2194382,"Spacious 2BR/2BA Classic UWS Apt, Great for Family",11192207,Ish & Asa,Manhattan,Upper West Side,40.78731,-73.97805,Entire home/apt,300,2,2,2017-01-05,0.06,1,0 +2196271,Bright Dble Bedroom. Private Bath. Close to Subway,396599,Thomas,Brooklyn,Bushwick,40.69972,-73.92244,Private room,55,2,1,2018-12-28,0.16,2,157 +2197283,Charming Cozy Studio Apt. in NYC,8706294,J,Manhattan,Washington Heights,40.84058,-73.93885,Entire home/apt,80,5,81,2019-07-03,1.26,1,315 +2197401,Bedroom with Private Bathroom,11208418,Maureen And Josiah,Manhattan,Washington Heights,40.84119,-73.939,Private room,90,1,271,2019-06-23,4.32,1,281 +2197725,Luxury 1BD 1.5 Bath In UES in NYC,7181895,Yumi,Manhattan,Upper East Side,40.7759,-73.94921,Entire home/apt,325,2,3,2016-01-02,0.05,1,0 +2198970,BEAUTIFUL 1 BEDROOM,4173868,Maryam,Manhattan,Washington Heights,40.84531,-73.93583,Private room,55,7,9,2017-09-22,0.14,1,0 +2201154,Prime E. Village at St. Marks Place,5081260,Eden,Manhattan,NoHo,40.7278,-73.99205,Private room,208,2,38,2019-06-18,0.60,1,313 +2201491,BEST LOCATION! On the border of Chelsea/W Village,3579337,Nina,Manhattan,West Village,40.73776,-73.99996,Entire home/apt,156,1,8,2019-02-09,0.15,3,300 +2201581,Sunny Brooklyn Home,11231506,Reid,Brooklyn,Bedford-Stuyvesant,40.69587,-73.94037,Entire home/apt,85,4,9,2019-06-03,0.22,1,1 +2202858,Gorgeous Ft. Greene apt amazing vu,305591,James,Brooklyn,Fort Greene,40.69093,-73.97936,Entire home/apt,200,2,4,2018-05-21,0.06,1,0 +2203154,Prime East Village 1 bedroom,5392354,Aviad,Manhattan,East Village,40.73087,-73.98713,Entire home/apt,180,2,2,2014-09-29,0.03,1,0 +2203450,Perfect Location - 2 bdrm/2 bth ,1500487,David,Brooklyn,Williamsburg,40.71577,-73.95408,Entire home/apt,250,10,0,,,1,0 +2203926,"Bright, Modern Two Bedroom With Stunning Rooftop",1451417,H,Brooklyn,Williamsburg,40.71292,-73.95876,Entire home/apt,325,3,169,2019-07-01,3.33,1,277 +2206311,Modern Studio in Midtown East,5149997,Christine,Manhattan,Midtown,40.75701,-73.96781,Entire home/apt,140,3,0,,,1,0 +2208545,Spacious 1 Bedroom in Lower East Side/Chinatown,4906960,Laura,Manhattan,Chinatown,40.71539,-73.99379,Entire home/apt,160,6,65,2019-07-05,1.19,1,7 +2208567,Spacious Room in the Heart of NYC,11265131,Jay,Manhattan,Lower East Side,40.72053,-73.98901,Private room,130,1,59,2018-08-26,1.00,1,0 +2209460,Room in perfect Manhattan location,9538322,Beth,Manhattan,West Village,40.73747,-74.00014,Private room,110,1,136,2019-07-01,3.10,1,63 +2209835,LARGE 1 BEDROOM APT. IN MIDTOWN NEAR SUBWAY/BUS,8811222,Claudia,Manhattan,Kips Bay,40.74361,-73.97677,Entire home/apt,150,2,120,2019-07-01,3.25,1,29 +2210041,"CENTRAL PARK, NYC APT",8112314,Mena,Manhattan,Upper West Side,40.78616,-73.97348,Private room,149,2,121,2019-06-23,2.06,2,270 +2210088,SUPER BOWL 2014 in TRENDY CHELSEA!,11273539,Julia,Manhattan,Chelsea,40.74798,-74.00314,Entire home/apt,900,1,0,,,1,0 +2210615,Chelsea HUGE apartment w/ King bed + office,11276922,Everett,Manhattan,Chelsea,40.74047,-73.99508,Entire home/apt,215,3,9,2018-08-26,0.27,1,0 +2210663,"Luxury Modern Spacious 1BR,1 block to subway",6447944,Richard,Manhattan,Upper West Side,40.79558,-73.96969,Entire home/apt,155,1,21,2018-07-01,0.38,1,0 +2210795,Sunny room with private ensuite!,4618666,Tim,Brooklyn,Gowanus,40.68019,-73.98119,Private room,50,3,3,2016-04-07,0.07,1,0 +2211028,Vibrant Brooklyn location!,11279303,Patrick,Brooklyn,Greenpoint,40.72764,-73.95557,Entire home/apt,225,5,0,,,1,0 +2213680,A Room WIth A View,551055,Alicia,Manhattan,Harlem,40.82649,-73.95253,Private room,65,2,2,2016-09-23,0.05,2,114 +2214256,Artist owned brownstone apartment,7644839,Rebecca And Vilem,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93993,Entire home/apt,112,4,138,2019-06-29,2.21,1,248 +2214323,Heart of downtown Manhattan,4237535,Alex&Ivy,Manhattan,Lower East Side,40.71969,-73.99287,Entire home/apt,250,3,107,2019-06-24,1.64,1,273 +2214689,Large Wiliamsburg Private Bedroom,5278391,Ashley,Brooklyn,Williamsburg,40.71527,-73.94038,Private room,65,4,8,2018-08-31,0.19,2,19 +2214710,Beautiful 2BR Flex Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72572,-73.94031,Entire home/apt,159,30,0,,,52,349 +2214831,LAVISH 2 BR APT by Central Park!!!,11297009,Lex,Manhattan,Upper West Side,40.78605,-73.97354,Entire home/apt,99,1,153,2019-05-26,2.39,4,327 +2214978,Beautiful City Oasis 2BR/1.5 BATH ,11257635,T,Manhattan,Upper West Side,40.7834,-73.97904,Entire home/apt,395,3,1,2014-09-14,0.02,1,340 +2216470,Comfortable Room ,11306420,Darius,Brooklyn,Bushwick,40.70039,-73.92867,Private room,145,1,0,,,1,0 +2217342,1BR West Village! Landmark Building,1544485,Laura And Jake,Manhattan,West Village,40.73311,-74.00401,Entire home/apt,185,7,19,2016-07-31,0.31,1,0 +2217398,"226 E 29th St, NY - Super Bowl",11312158,Andrew,Manhattan,Kips Bay,40.74262,-73.97945,Entire home/apt,1500,1,0,,,1,0 +2217609,(Williamsburg) - Large Bedroom w/ Private Bathroom,11313668,Adam,Brooklyn,Williamsburg,40.70046,-73.95133,Private room,45,2,26,2019-03-01,0.68,2,241 +2219294,Great Studio!,10485182,Jennifer,Manhattan,Upper West Side,40.78835,-73.97257,Entire home/apt,60,1,0,,,1,0 +2220959,XTRA LARGE 1 Bedroom Gramercy Apt,11330638,Lindsay,Manhattan,Kips Bay,40.73879,-73.98226,Entire home/apt,749,1,0,,,1,0 +2221852,Sunny Room in Beautiful Artist's Home,12190039,Lyndell,Manhattan,Washington Heights,40.83426,-73.94758,Private room,55,2,17,2018-10-22,0.27,2,34 +2222428,Large 1-BR Apt w/Fireplace & Patio,11339193,Rachel,Manhattan,Midtown,40.74364,-73.98303,Entire home/apt,1000,3,0,,,1,0 +2222641,Charming West Village 1 Bed - Ideal Location,11340369,Rachel,Manhattan,West Village,40.73823,-74.00233,Entire home/apt,165,7,1,2019-06-30,1,1,8 +2223082,Beautiful 1 BR with Private Garden,1446751,Allison,Manhattan,Chelsea,40.74502,-74.00429,Entire home/apt,285,2,47,2019-07-01,0.74,1,194 +2223247,Lovely Duplex (2-story) flat on the UES,11111521,Victoria,Manhattan,Upper East Side,40.77266,-73.95257,Entire home/apt,220,3,20,2019-01-02,0.32,1,31 +2223628,Haus of Taylor (Bronx Prohibition),11342593,Emery,Bronx,Kingsbridge,40.86467,-73.90125,Private room,75,2,11,2015-12-06,0.20,1,365 +2224417,"Spacious, bright, heart of Bushwick",4028092,Assaf,Brooklyn,Bushwick,40.70147,-73.92005,Entire home/apt,120,5,11,2017-09-30,0.27,1,2 +2224896,NYC SuperBowl Wk 5 Bdrs River View ,11353904,Todd,Manhattan,Upper West Side,40.79476,-73.97299,Entire home/apt,4000,1,0,,,1,0 +2227377,Downtown NY Apt - SuperBowl Weekend,11366961,Gabriel,Manhattan,Gramercy,40.73588,-73.98252,Entire home/apt,650,1,0,,,1,0 +2228296,Super Bowl 2014,11371978,Joe,Manhattan,Midtown,40.76402,-73.9777,Entire home/apt,750,4,0,,,1,0 +2228840,Cozy and homey railroad in bushwick,11375556,Carly & Sebastian,Brooklyn,Bushwick,40.70054,-73.92374,Entire home/apt,100,3,10,2019-01-01,0.15,1,10 +2230762,"Harlem/Morningside, charm and quiet",11386273,Karen,Manhattan,Harlem,40.80922,-73.95306,Private room,95,1,4,2018-07-29,0.11,1,270 +2230982,An Accomodating Apartment on Wall,11385753,Greg,Manhattan,Financial District,40.70511,-74.00943,Shared room,1000,1,0,,,1,0 +2231296,Great Location in the heart of NYC!,8312378,Ever,Manhattan,Greenwich Village,40.72926,-73.9989,Private room,119,2,146,2019-06-24,2.21,2,265 +2231814,Modern Luxury Meets Old Money Charm,112879,Caroline,Brooklyn,Williamsburg,40.70949,-73.94221,Entire home/apt,1200,1,0,,,1,0 +2232600,"",11395220,Anna,Manhattan,East Village,40.73215,-73.98821,Entire home/apt,200,1,28,2015-06-08,0.45,1,341 +2232697,Kate's Place,1726966,Katarina,Brooklyn,Crown Heights,40.67167,-73.92434,Shared room,48,1,146,2019-07-06,2.21,1,0 +2234100,"Coffee,Tea&Milk Astor Place Lodging",10931680,John,Manhattan,East Village,40.72672,-73.98851,Shared room,30,30,125,2017-12-31,1.88,1,304 +2236458,Cozy 1 Bdrm n the Heart of Astoria!,11418277,Vanessa,Queens,Astoria,40.76437,-73.9195,Entire home/apt,65,4,2,2014-04-21,0.03,1,0 +2237032,"Cozy Room in LIC, 7 min to Times Sq",1589909,Alosha,Queens,Long Island City,40.74495,-73.95146,Private room,79,15,15,2019-05-23,0.29,2,238 +2237063,"Modern Large Studio, Great Location",11313778,Jian,Manhattan,Kips Bay,40.74163,-73.97533,Entire home/apt,105,7,22,2019-06-29,0.46,1,121 +2237851,2BD in Midtown East,5078978,Victoria,Manhattan,Kips Bay,40.74383,-73.97909,Entire home/apt,420,2,2,2015-09-27,0.04,1,0 +2237981,Cool UES 1 Bed Sleeps upto 4,2261678,Ayesha,Manhattan,Upper East Side,40.77331,-73.95067,Entire home/apt,250,1,0,,,1,0 +2238300,"Peaceful home, friendly area!",249753,Penny,Brooklyn,Bushwick,40.70422,-73.91405,Entire home/apt,95,5,1,2018-01-06,0.05,1,0 +2238389,Huge Duplex in South Slope,11430355,Monika,Brooklyn,Sunset Park,40.66296,-73.98955,Entire home/apt,290,2,25,2019-04-27,0.39,1,195 +2238435,Central Harlem Hideaway,11430909,Tennessee,Manhattan,Harlem,40.81085,-73.94768,Entire home/apt,100,1,0,,,1,0 +2240196,Chelsea Studio for Super Bowl!,11440643,Ari,Manhattan,Chelsea,40.75,-73.99637,Entire home/apt,395,3,0,,,1,0 +2240661,Large 1BR Upper East Side Apartment,4660888,Stephanie,Manhattan,Upper East Side,40.77226,-73.95895,Entire home/apt,180,2,2,2015-06-22,0.03,1,0 +2243180,Sun-bathed spacious Luxury 2 BR near CENTRALPARK!,11457317,Philippe,Manhattan,Upper West Side,40.77775,-73.98485,Entire home/apt,380,3,11,2018-08-03,0.18,1,43 +2243266,Top floor!,11457662,Indie,Brooklyn,Bensonhurst,40.60918,-73.99799,Entire home/apt,40,2,0,,,2,0 +2243321,A cozy apartment,11457662,Indie,Brooklyn,Bensonhurst,40.60931,-73.99847,Entire home/apt,45,2,28,2018-01-02,0.43,2,0 +2243548,Lux 1600sf 1BR w. Private Terrace,9644281,Michelle,Manhattan,Lower East Side,40.72082,-73.99028,Entire home/apt,300,1,2,2016-03-13,0.05,1,0 +2243699,"SuperBowl Penthouse Loft 3,000 sqft",1483320,Omri,Manhattan,Little Italy,40.71895,-73.99793,Entire home/apt,5250,1,0,,,1,0 +2243769,Super Bowl New York City Apartment,11460768,Brian,Manhattan,Upper West Side,40.8002,-73.96045,Entire home/apt,1500,1,0,,,1,0 +2243962,Spacious & Convenient UWS Apt,11461795,Helen,Manhattan,Upper West Side,40.79859,-73.9697,Private room,125,2,0,,,1,0 +2243984,Superbowl in the West Village,11461854,Lauren,Manhattan,West Village,40.73295,-74.00755,Entire home/apt,1500,1,0,,,1,0 +2246112,"Upper E. side, one month minimum",11443640,James,Manhattan,Upper East Side,40.78158,-73.94808,Entire home/apt,110,1,3,2017-08-29,0.06,1,0 +2247803,"Landmark Brownstone, Crown Heights",11333699,Clifton,Brooklyn,Crown Heights,40.67112,-73.94536,Entire home/apt,105,2,281,2019-06-30,4.29,1,248 +2248069,Private Room in Central Park Slope,2024924,Lisa,Brooklyn,Park Slope,40.67232,-73.97879,Private room,45,5,42,2019-06-30,0.64,2,221 +2248580,Luxury 1 Bedroom Condo,11483903,Avril,Manhattan,Greenwich Village,40.73411,-73.99723,Entire home/apt,1000,1,0,,,1,0 +2249464,Full of Light Studio Apartment close to Subway,4358264,Sole,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94579,Entire home/apt,80,13,109,2019-04-01,1.66,1,15 +2249878,Great UWS Apt./Central Park ,470870,Ruben,Manhattan,Upper West Side,40.78531,-73.96988,Entire home/apt,375,1,0,,,1,0 +2249928,Super Bowl Wknd! 3-Bedroom Apt UWS,2675913,Sam,Manhattan,Upper West Side,40.78574,-73.9764,Entire home/apt,1000,1,0,,,1,0 +2250170,Spacious/New 3 Bedroom East Village,11492501,Victoria,Manhattan,Stuyvesant Town,40.73205,-73.98094,Entire home/apt,1500,1,0,,,1,0 +2250372,"Huge 3BR Penthouse, Private Roof!",11490872,Nick,Manhattan,Kips Bay,40.74422,-73.97822,Entire home/apt,1550,2,0,,,1,0 +2250790,Private room on the UWS,11494661,Maayan,Manhattan,Upper West Side,40.79891,-73.96705,Private room,89,3,7,2019-05-22,0.15,1,10 +2251009,Bedroom in Huge Apt on St. Marks,4265028,Jordan,Manhattan,East Village,40.72847,-73.99029,Private room,129,5,1,2016-02-24,0.02,1,0 +2252844,Great place to crash for Super Bowl,11505536,Alex,Manhattan,East Village,40.73046,-73.9921,Private room,500,1,0,,,1,0 +2253397,For Super Bowl- cool 1BDRM on UES!,11508018,Gretchen,Manhattan,Upper East Side,40.7829,-73.94721,Entire home/apt,500,3,0,,,1,0 +2253500,Fantastic Soho/Tribeca Loft,11473727,Sal,Manhattan,Tribeca,40.7196,-74.00571,Entire home/apt,250,30,4,2018-11-11,0.06,1,310 +2253949,Large 1 + Den in the West Village,10036249,Jenna,Manhattan,West Village,40.73341,-74.00791,Entire home/apt,250,1,2,2014-06-26,0.03,1,0 +2254388,"Spacious apt, 5 min to Central Park",11512483,Danielle,Manhattan,Upper East Side,40.78021,-73.95044,Entire home/apt,175,2,5,2016-12-30,0.08,1,0 +2254428,Spacious Duplex Apt in Brooklyn,11512676,Danni,Brooklyn,Bedford-Stuyvesant,40.68835,-73.95568,Private room,40,3,10,2018-01-08,0.16,1,0 +2254469,"Private Studio Apt, Luxury Building",11512908,Augustus,Manhattan,Upper East Side,40.7732,-73.95082,Entire home/apt,400,2,0,,,1,0 +2254541,Private Bedroom in Williamsburg!,6060700,Kevin,Brooklyn,Williamsburg,40.71801,-73.95869,Private room,85,14,1,2014-08-20,0.02,1,0 +2254582,Delightful 2BR Historic Brownstone Duplex,3672774,Alison,Brooklyn,Clinton Hill,40.68255,-73.96124,Entire home/apt,219,4,21,2019-02-15,0.33,2,31 +2254817,Elegant private studio in Manhattan 73 St. & 3 Ave,9420221,Kourosh,Manhattan,Upper East Side,40.76886,-73.95877,Entire home/apt,130,30,3,2019-06-30,0.39,1,156 +2254851,Sunny and Bright 1BR Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72599,-73.94172,Entire home/apt,149,30,4,2019-04-20,0.09,52,330 +2255005,Quiet Gramercy Apartment,7748022,Jeff,Manhattan,Kips Bay,40.73876,-73.98108,Entire home/apt,100,1,5,2016-03-29,0.12,1,0 +2255340,2 Bedroom Greenwich/Soho Apartment,8312378,Ever,Manhattan,Greenwich Village,40.72832,-73.99916,Entire home/apt,289,3,41,2019-06-17,0.96,2,247 +2255501,Cozy Room in the heart of UWS,11297009,Lex,Manhattan,Upper West Side,40.78409,-73.97886,Private room,67,1,21,2018-10-11,0.36,4,331 +2255549,New Studio in Heart of Chelsea,735701,Charles,Manhattan,Chelsea,40.7444,-73.9994,Entire home/apt,221,2,252,2019-07-06,4.91,1,256 +2256519,Spacious 1BR Chelsea Apt. for SB 48,11523254,Nicholas,Manhattan,Chelsea,40.74344,-73.99826,Entire home/apt,750,2,0,,,1,0 +2257064,Sunny Room in Heart of Williamsburg,11526701,Victor,Brooklyn,Williamsburg,40.71357,-73.96279,Private room,75,4,3,2016-01-05,0.05,1,0 +2257080,SUPERBOWLSUNDAY! 3BLOCK FROM TIMESQ,3312524,Athena,Manhattan,Hell's Kitchen,40.75361,-73.99501,Entire home/apt,350,1,0,,,1,0 +2259331,Luxury Building Huge Studio,11538076,Alex,Manhattan,Battery Park City,40.70517,-74.01753,Entire home/apt,425,2,0,,,1,0 +2259719,Apartment in Soho,11539672,Thomas,Manhattan,SoHo,40.72706,-74.00043,Entire home/apt,200,1,0,,,1,0 +2259813,Spacious 2 BR in North Chelsea,11540028,Nick,Manhattan,Chelsea,40.74999,-73.99687,Entire home/apt,1000,3,0,,,1,0 +2260029,Williamsburg Loft,10683147,Keefe,Brooklyn,Williamsburg,40.70943,-73.95101,Private room,100,7,0,,,1,0 +2260042,Clean and pleasant Room in NYC,11503864,Omar,Queens,Astoria,40.76427,-73.91562,Shared room,65,1,0,,,1,0 +2260274,SUPER LOCATION 4 SUPER BOWL WKEND!!,11542120,Brett,Manhattan,Greenwich Village,40.73532,-73.99473,Private room,1250,1,0,,,1,0 +2260595,4RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72959,-73.98112,Entire home/apt,112,30,22,2019-05-11,0.34,6,244 +2261018,Studio Apartment on 35th and 3rd ,9389685,Bobbi,Manhattan,Murray Hill,40.7461,-73.97628,Entire home/apt,175,1,15,2015-09-25,0.29,1,0 +2261367,brooklyn 14 bedroom gated community,10416706,Tzvi,Brooklyn,Sea Gate,40.57645,-74.01065,Entire home/apt,1485,2,6,2019-06-30,0.24,1,260 +2262357,spacious homey one bdrm apt.,11552512,Sandra,Queens,Sunnyside,40.74622,-73.92296,Entire home/apt,120,2,5,2019-05-27,0.19,1,81 +2262868,Consider it home,11163915,Marie-Hélène & Rick,Manhattan,Upper West Side,40.79432,-73.97269,Entire home/apt,150,26,1,2014-08-24,0.02,1,0 +2263248,Large 1 bedroom,11557572,William,Manhattan,Kips Bay,40.74438,-73.97965,Entire home/apt,369,2,1,2015-10-01,0.02,1,0 +2263265,Paddy Pad,9989761,Gaudhi,Manhattan,Harlem,40.80119,-73.95295,Private room,81,1,133,2019-06-04,2.23,2,13 +2265827,Williamsburg Lodge (the best home in Brooklyn),11570627,Paul & Marçal,Brooklyn,Williamsburg,40.70868,-73.95343,Private room,89,3,152,2019-06-26,2.67,1,147 +2266468,Amazing 2BR/2Bath Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72569,-73.94017,Entire home/apt,199,30,3,2019-02-28,0.06,52,127 +2267006,Stunning 1BR Brooklyn Loft,7503643,Vida,Brooklyn,Greenpoint,40.72537,-73.94076,Entire home/apt,149,30,0,,,52,330 +2267177,Large Bedroom 15 Min From Manhattan,11576459,Skip,Brooklyn,Sunset Park,40.655,-74.00676,Private room,45,2,211,2019-06-23,3.25,1,270 +2267692,Newly Converted Factory 1BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.7272,-73.94176,Entire home/apt,149,30,2,2014-08-18,0.03,52,337 +2268632,Big Queens NY Apt. Clean & safe.,3619427,Ian,Queens,Sunnyside,40.73817,-73.92463,Entire home/apt,600,4,0,,,1,0 +2268845,Super Apt for Superbowl,1531465,Jim,Manhattan,Kips Bay,40.74438,-73.97744,Entire home/apt,400,1,0,,,1,0 +2269104,Modern Style private room in queens,8568891,Sufia,Queens,Jamaica,40.7095,-73.78828,Private room,65,2,13,2018-07-14,0.22,1,362 +2271504,SUPER BOWL Brooklyn Duplex Apt!!,11598359,Jonathan,Brooklyn,Clinton Hill,40.68766,-73.96439,Entire home/apt,6500,1,0,,,1,0 +2271792,Little Heaven — Upper West Side,11599506,Lara,Manhattan,Upper West Side,40.78345,-73.97858,Entire home/apt,150,2,48,2016-11-27,0.73,1,0 +2272080,equipped and modern 2-bd apt,11600691,Evonne,Brooklyn,Gowanus,40.68107,-73.98245,Entire home/apt,265,3,0,,,1,0 +2272739,Sunny Spacious West Village 1BR,11603608,Dylan,Manhattan,Greenwich Village,40.7358,-73.99677,Entire home/apt,199,3,8,2015-06-21,0.16,1,0 +2272872,Great location Cntl Park Times Sq,5175067,Anthony,Manhattan,Hell's Kitchen,40.76726,-73.98285,Entire home/apt,395,5,9,2015-11-19,0.19,1,0 +2273019,Super Bowl Weekend,8105524,Rhett,Manhattan,Upper West Side,40.77018,-73.98643,Entire home/apt,150,1,0,,,1,0 +2273613,Bondtastic: Fabulous in Brooklyn.,11607949,Clarina,Brooklyn,Gowanus,40.67632,-73.99204,Entire home/apt,130,30,28,2019-05-20,0.43,1,297 +2273733,Heart of the West Village!,8730513,Corey,Manhattan,Greenwich Village,40.73357,-73.99767,Private room,175,3,1,2018-05-18,0.07,1,0 +2274084,3 Bedroom Apartment,11610321,Patrick,Manhattan,Kips Bay,40.74215,-73.98018,Entire home/apt,2750,1,0,,,1,0 +2274268,Private Rm - Times Sq/Hell'sKitchen,11611239,Sally,Manhattan,Hell's Kitchen,40.7604,-73.9922,Private room,90,1,170,2019-06-10,2.92,1,255 +2276065,PERFECT SUPERBOWL STAY,9451697,Shaunna,Manhattan,Midtown,40.75225,-73.98725,Entire home/apt,1500,1,0,,,1,0 +2276383,Penthouse with Private Rooftop for Events/Shoots,11623750,Mike,Manhattan,Greenwich Village,40.7335,-73.99834,Entire home/apt,2500,1,0,,,1,0 +2277707,Great UWS Apt Along Central Park,11630571,Ariel,Manhattan,Upper West Side,40.78498,-73.97284,Entire home/apt,350,1,7,2019-01-02,0.14,1,365 +2279335,Gorgeous 1 BR in N Williamsburg,7009234,Sarah,Brooklyn,Williamsburg,40.71947,-73.9552,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +2281142,Prime NYC Location for Super Bowl ,1427243,Jordana,Manhattan,East Village,40.73323,-73.98859,Entire home/apt,3750,1,0,,,1,0 +2281147,Midtown Gem/ Carnegie Hall/theaters/ Central Park,7580102,(Email hidden by Airbnb),Manhattan,Midtown,40.76292,-73.98128,Private room,250,3,6,2019-05-19,0.58,2,170 +2282085,Duplex PH 2 bedLoft Williamsburg,2044302,Christopher,Brooklyn,Williamsburg,40.71969,-73.9583,Entire home/apt,500,1,0,,,1,0 +2283001,Gorgeous 1 bdrm in Carroll Gardens,10532769,Vanessa,Brooklyn,Carroll Gardens,40.68123,-73.99558,Entire home/apt,180,2,97,2019-07-06,1.83,1,24 +2283143,The Best of Both Worlds-Manhattan Country Living!,11661229,Michele,Manhattan,Upper West Side,40.78269,-73.9839,Entire home/apt,800,7,0,,,1,0 +2284454,MANHATTAN SUPERBOWL ACCOMODATION,11668649,Andrew,Manhattan,Upper East Side,40.76904,-73.95435,Entire home/apt,1600,1,0,,,1,0 +2284484,Sunny & Spacious Upper West Side One Bedroom Apt,11669123,Kaley,Manhattan,Upper West Side,40.79822,-73.97059,Entire home/apt,85,5,0,,,1,0 +2284809,"Great 1 bedroom, close to subway!",11671329,Connor,Brooklyn,Bushwick,40.69982,-73.9249,Private room,49,4,2,2015-12-27,0.04,1,0 +2285355,SUPER BOWL RENTAL NYC LOW PRICE,11674823,Bruce,Manhattan,Upper West Side,40.77859,-73.97964,Entire home/apt,750,1,0,,,1,0 +2285440,Large Rooms with Bar and PullOut Prime Greenpoint,11675390,Peter,Brooklyn,Greenpoint,40.73052,-73.95568,Private room,91,4,106,2019-06-03,2.82,1,113 +2285444,"Cozy, Quiet Bedroom in Historic West Village",11675431,Rob,Manhattan,West Village,40.73521,-74.00089,Private room,100,5,8,2019-06-07,0.26,1,0 +2288762,Large sun-filled Studio: Murray Hill,11691665,Lauren,Manhattan,Kips Bay,40.74398,-73.97662,Entire home/apt,152,1,5,2018-01-05,0.14,1,0 +2289119,2 bdrm in center of Williamsburg,9968385,William,Brooklyn,Williamsburg,40.71725,-73.96249,Entire home/apt,250,1,0,,,1,0 +2289612,Private Room in Best Location!!,11673798,Shell,Manhattan,Murray Hill,40.74576,-73.97821,Private room,110,1,227,2019-06-30,3.50,1,239 +2291507,"Large, Sunny Room—in Fun, Trendy Area",11057719,Chloe,Brooklyn,Williamsburg,40.71558,-73.94881,Private room,73,14,0,,,1,0 +2291575,Super Bowl Space Available! ,11706506,Andrea,Queens,Astoria,40.76895,-73.9236,Shared room,300,1,0,,,1,0 +2291943,SuperBowl Weekend Rental! 3 BR/1ba,11708656,Justin,Manhattan,Upper East Side,40.77477,-73.95503,Entire home/apt,1000,1,0,,,1,0 +2292275,Instant NYC,11710466,Lindsey,Manhattan,Upper East Side,40.77715,-73.94788,Entire home/apt,135,2,3,2016-06-15,0.06,1,0 +2292366,cozy upper east side 1 br abode,440396,Mary,Manhattan,Upper East Side,40.78103,-73.95069,Entire home/apt,75,2,14,2019-06-01,0.33,1,0 +2294594,Hilton timeshare west 57st ,11721588,Richard,Manhattan,Midtown,40.76486,-73.97885,Private room,600,1,0,,,1,0 +2294663,Mid Town East Side Apartment ,6509406,Judy,Manhattan,Hell's Kitchen,40.75786,-73.99485,Entire home/apt,800,1,0,,,1,0 +2296024,Three bedroom upscale condo,2321783,Donna,Bronx,Riverdale,40.88579,-73.91599,Entire home/apt,250,7,2,2019-01-02,0.04,1,338 +2297029,large 2bdrm apt - midtown manhattan,10974421,Jj,Manhattan,Hell's Kitchen,40.76182,-73.99003,Entire home/apt,200,1,8,2016-09-25,0.16,1,0 +2297147,Gorgeous 1400 Sq Ft Artist's Loft,10674441,Annie,Brooklyn,Bedford-Stuyvesant,40.69329,-73.95607,Private room,75,3,5,2019-01-27,0.08,2,334 +2297192,2BD/2BA Manhattan Apt,11732741,Bryce,Manhattan,Financial District,40.70825,-74.00495,Entire home/apt,1000,1,0,,,1,0 +2297259,SUPER SUPER BOWL PAD,11733037,Clayton,Brooklyn,Boerum Hill,40.68497,-73.989,Entire home/apt,900,1,0,,,1,365 +2297951,Working Fireplace in TriBeCa loft,7636125,Kristen,Manhattan,Tribeca,40.72035,-74.00493,Private room,70,14,0,,,1,0 +2298373,Luxury private apartment/Suite/with balcony,10149317,Lana,Queens,Rego Park,40.72988,-73.85773,Entire home/apt,88,3,33,2019-04-20,0.77,5,262 +2298759,Luxury Studio -Midtown/Times Square,11741773,Samson,Manhattan,Hell's Kitchen,40.76774,-73.98503,Entire home/apt,425,1,0,,,1,0 +2299633,Ritz-Plaza - 2 bedroom / 2 fullbath,11747009,Troy,Manhattan,Theater District,40.76096,-73.98646,Entire home/apt,975,2,1,2015-10-09,0.02,1,0 +2301258,Entire Park Slope Brownstone,11753837,Alexandra,Brooklyn,Park Slope,40.67262,-73.97351,Entire home/apt,305,10,8,2018-08-11,0.12,1,30 +2303436,SOHO - Large Studio Apt,11762397,Nathan,Manhattan,Lower East Side,40.72153,-73.99331,Entire home/apt,220,2,146,2019-06-30,3.45,1,112 +2303583,Awesome Hells Kitchen Apt!,11764444,Cory,Manhattan,Hell's Kitchen,40.76532,-73.99061,Entire home/apt,150,1,11,2018-07-01,0.26,1,0 +2305025,"Big, Sunny Bedroom, right by subway!",7714918,Carrie-Anne,Brooklyn,Bushwick,40.70544,-73.92192,Private room,49,4,4,2015-03-11,0.07,2,8 +2305170,Eclectic Studio in Cozy Bay Ridge,11774081,Diana,Brooklyn,Bay Ridge,40.62455,-74.02756,Entire home/apt,86,2,0,,,1,0 +2305890,Midwood Aerie - Bright & Private!,11778114,Jake,Brooklyn,Flatbush,40.63449,-73.95742,Entire home/apt,140,1,141,2019-07-01,2.41,1,307 +2308802,Big 2 bds House w/ Parking and Yard,11790431,Laura,Queens,Kew Gardens Hills,40.72664,-73.82795,Entire home/apt,86,1,52,2019-07-01,0.79,1,53 +2309363,Huge Loft heart of Upper West Side,11793333,Jamie,Manhattan,Upper West Side,40.78263,-73.97415,Entire home/apt,650,2,30,2016-06-02,0.47,1,0 +2309559,Luxury New York,11254580,Bryan,Manhattan,East Village,40.73259,-73.98681,Entire home/apt,350,1,0,,,1,0 +2309873,Amazing Location-Private Studio near Central Park!,11796166,Shaina,Manhattan,Upper East Side,40.77469,-73.96327,Entire home/apt,225,2,3,2017-07-30,0.09,1,88 +2310008,CLEAN LES HOME,5019619,Chris,Manhattan,Chinatown,40.71627,-73.99404,Private room,75,1,4,2015-02-22,0.06,1,0 +2310445,Super Cute Chelsea One Bedroom,10973455,Amy,Manhattan,Chelsea,40.74935,-73.99723,Entire home/apt,150,1,49,2019-06-16,0.75,1,0 +2310542,Hamilton Heights/Harlem Private Bedroom with Roof,7317241,Tim,Manhattan,Harlem,40.82016,-73.94559,Private room,199,3,1,2019-05-16,0.56,1,0 +2310594,Studio Apt. in East Williamsburg,4148248,Guillermo,Brooklyn,Williamsburg,40.70972,-73.93864,Entire home/apt,95,4,204,2019-06-16,3.10,2,22 +2310791,Old Brooklyn Charm,3689829,Lee,Brooklyn,Clinton Hill,40.68583,-73.96558,Entire home/apt,200,2,110,2019-06-24,1.73,1,51 +2314392,Spacious Studio on West 72nd,11774035,Alina,Manhattan,Upper West Side,40.7803,-73.98347,Entire home/apt,200,3,45,2019-04-06,0.73,1,346 +2314398,Duplex Brownstone sleeps 4-6,11246260,Claudia,Brooklyn,Cobble Hill,40.68554,-73.99499,Entire home/apt,175,7,32,2019-06-02,0.50,1,24 +2314553,Spectacular Studio Loft w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72727,-73.93986,Entire home/apt,129,30,3,2019-05-24,0.08,52,365 +2314589,"Large, 2fl/2bdrm Williamsburg Apt",305132,Alix,Brooklyn,Williamsburg,40.70771,-73.94344,Entire home/apt,200,3,13,2017-01-01,0.22,1,0 +2318126,Private Rm for 1 in Prime Harlem,6165258,Gita,Manhattan,Harlem,40.80269,-73.94637,Private room,60,3,11,2018-01-01,0.18,3,365 +2319588,Luxury Apartment in Manhattan's Financial District,11845040,Alison,Manhattan,Financial District,40.70583,-74.00612,Private room,130,7,0,,,1,157 +2320028,SPACIOUS BEDROOM AND PRIVATE BATH!!!,11847492,Steve,Manhattan,East Harlem,40.7916,-73.94686,Private room,115,3,242,2019-06-17,3.69,1,55 +2320581,Your own room in NY's best area,1639277,Eyal,Manhattan,West Village,40.73374,-74.00121,Private room,135,2,80,2019-07-03,1.22,1,296 +2322189,1 room available,11861244,Ishaan,Manhattan,Upper East Side,40.76225,-73.96165,Private room,300,1,0,,,1,0 +2323502,Cute & cozy room in Ridgewood,3976338,Vanessa,Queens,Ridgewood,40.70206,-73.90936,Private room,59,3,106,2019-07-01,1.61,1,87 +2323714,Peaceful Parlor Floor Apartment,5714455,Lila & Paul,Brooklyn,Clinton Hill,40.68568,-73.96244,Entire home/apt,196,2,232,2019-07-07,4.31,1,261 +2325144,Cozy Nook in a Unique Loft,11876825,Christopher,Brooklyn,Bushwick,40.69856,-73.93162,Private room,128,3,52,2018-01-06,0.80,1,219 +2329047,Large 2 Bedroom available,9754117,David,Manhattan,Upper West Side,40.77794,-73.97699,Entire home/apt,400,1,0,,,1,0 +2329807,BEAUTIFUL CONDO IN TIMES SQUARE ,11894522,Georgia,Manhattan,Theater District,40.76054,-73.98508,Entire home/apt,200,30,11,2018-09-16,0.18,1,363 +2331148,Charming Sunny 1 Bedroom LES Apt!,3627104,Doria,Manhattan,Lower East Side,40.72171,-73.99053,Entire home/apt,180,5,13,2019-03-05,0.22,1,0 +2331154,Spacious Private Room in East Williamsburg,4467316,Barbara,Brooklyn,Williamsburg,40.70874,-73.93818,Private room,60,30,16,2019-07-05,0.28,2,190 +2331929,"Stylish apartment/ Serene Room in Williamsburg, BK",11910223,Michele,Brooklyn,Williamsburg,40.71216,-73.94612,Private room,70,90,2,2014-08-31,0.03,1,264 +2332284,La ponderosa,8873749,Fany,Manhattan,Washington Heights,40.84966,-73.93945,Private room,40,2,76,2019-04-07,1.29,1,291 +2332880,Huge 2 bed 2 bath Apartment!,11915544,Helena,Brooklyn,Prospect-Lefferts Gardens,40.65747,-73.95798,Entire home/apt,250,5,7,2017-08-01,0.11,1,195 +2333141,Bohemian Brooklyn Bungalow,11917311,Rebeca,Brooklyn,Crown Heights,40.67026,-73.92587,Entire home/apt,80,2,17,2018-03-07,0.39,1,0 +2334411,Amazing New York apt in Harlem with Backyard!!!,11280333,Brenda,Manhattan,Harlem,40.81128,-73.94117,Entire home/apt,85,3,82,2019-06-30,1.38,1,35 +2339096,Cozy bedroom in Lower East Side,11947308,Véronique,Manhattan,Chinatown,40.7159,-73.99059,Private room,70,1,196,2018-09-17,3.03,1,0 +2345266,"Bright room, close to everything.",11976770,Ezra,Brooklyn,Williamsburg,40.70941,-73.9522,Private room,55,5,4,2016-09-06,0.08,1,0 +2346089,"Stylish, Affordable & Private Room",11981562,Maureen,Brooklyn,Bedford-Stuyvesant,40.6901,-73.94524,Private room,60,2,0,,,1,0 +2346106,Amazing Greenpoint Loft-Best Deal!,6771815,El,Brooklyn,Greenpoint,40.73421,-73.95698,Private room,100,2,9,2015-05-04,0.14,1,0 +2346296,Private Room in Williamsburg Loft,10792303,Nora,Brooklyn,Williamsburg,40.71165,-73.96716,Private room,73,10,19,2019-04-23,0.30,1,13 +2346335,Spacious and bright 2 or 3 bedroom,10672341,Emily,Brooklyn,Crown Heights,40.66732,-73.95794,Entire home/apt,145,2,0,,,2,0 +2346416,Lovely private room close to Manhattan,11983859,Lauren,Queens,Astoria,40.76315,-73.92617,Private room,65,2,183,2019-06-10,2.82,1,146 +2349715,Cozy 2-BD w/ Lots of Light,11998560,Ruby,Brooklyn,Crown Heights,40.67286,-73.92566,Entire home/apt,162,1,75,2019-06-08,1.20,2,103 +2349737,NYC Apt - Close to Metro & Mnhtn,11722972,Karen,Queens,Rego Park,40.73243,-73.86773,Entire home/apt,275,30,9,2017-08-03,0.14,1,342 +2350883,Large 1BR - PRIME Williamsburg,1334808,Kristina,Brooklyn,Williamsburg,40.71338,-73.95738,Private room,56,12,0,,,2,0 +2356082,"Modern, Clean, West Village Apt!",6970733,Laurence,Manhattan,Greenwich Village,40.72946,-74.00189,Entire home/apt,200,2,26,2017-10-22,0.55,1,0 +2359340,ART COLLECTORS APARTMENT - TIMES SQUARE-10TH AV.,3793026,Andreas,Manhattan,Hell's Kitchen,40.76349,-73.98985,Entire home/apt,250,5,176,2018-10-08,2.72,1,0 +2361020,URBAN CHIC VIDEO/PHOTO SHOOTS ONLY,5535265,Krystal,Brooklyn,Bedford-Stuyvesant,40.68172,-73.93236,Entire home/apt,500,1,11,2015-10-20,0.19,1,365 +2361323,Safe Sunny 1brm near subway,12059266,Audrey,Brooklyn,Crown Heights,40.67935,-73.9633,Entire home/apt,120,30,14,2018-07-21,0.22,1,108 +2362306,Peaceful Artsy Huge Sunny Bedroom!,10283677,Emma,Brooklyn,Flatbush,40.65173,-73.96035,Private room,55,3,8,2018-10-25,0.36,1,0 +2362357,Cozy Room in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66468,-73.98777,Private room,59,1,126,2019-06-01,2.15,4,22 +2365645,"Quiet Apartment in Williamsburg, Bk",7881738,Michele,Brooklyn,Williamsburg,40.711,-73.95403,Entire home/apt,99,1,1,2016-01-12,0.02,1,0 +2367089,Full Apt w/ large kitchen in UES,12092726,Alice,Manhattan,Upper East Side,40.78092,-73.95162,Entire home/apt,155,1,75,2017-02-19,1.30,1,0 +2368021,Spacious and Amazing Location!,12098551,Ashley,Manhattan,Kips Bay,40.73997,-73.98137,Entire home/apt,200,3,4,2015-10-13,0.08,2,0 +2368214,Private bedroom in historic Chinatown apartment,7708014,John,Manhattan,Civic Center,40.71654,-74.00138,Private room,60,4,23,2017-09-15,0.35,1,0 +2371632,"Great 1 Br Apt, Ozone Park, NYC",10721506,Lee,Queens,Ozone Park,40.67657,-73.84083,Entire home/apt,85,3,106,2019-06-27,1.66,1,238 +2371794,Master bedroom in historic house,2588427,Rip,Manhattan,SoHo,40.72541,-74.01015,Private room,150,3,30,2019-01-02,0.48,2,4 +2372740,Chez Jazz BnB--Cozy BK/Queens room,12120448,Rob,Queens,Ridgewood,40.70375,-73.9094,Private room,45,2,27,2019-05-15,0.42,1,190 +2373238,Times Square Area Quiet + Private Guest Studio,12123995,Michal,Manhattan,Hell's Kitchen,40.76046,-73.99131,Entire home/apt,200,2,53,2019-07-04,2.51,2,223 +2374228,Amazing Two Bedroom Apartment,12129877,Andre,Brooklyn,Crown Heights,40.6738,-73.93985,Entire home/apt,120,2,193,2019-07-01,2.97,2,292 +2376206,Hell's Kitchen- Times Square,12140561,Danielle,Manhattan,Hell's Kitchen,40.76394,-73.99448,Entire home/apt,100,1,0,,,1,4 +2377514,Sophisticated Harlem True 2BR NYC,12145783,Enid,Manhattan,East Harlem,40.80021,-73.94142,Entire home/apt,195,4,137,2019-07-01,2.13,2,233 +2379865,Cozy private room available in a great location,12157737,Dushyant,Brooklyn,Crown Heights,40.67343,-73.96291,Private room,38,3,0,,,1,0 +2380403,"Artsy and Comfy Bedroom, Living Room, Terrace",1226950,Marysia,Brooklyn,Crown Heights,40.6769,-73.9513,Private room,75,2,0,,,1,0 +2381302,"New 1-Bdrm, 3-beds in Bensonhurst, Brooklyn, NY",12126255,Elska,Brooklyn,Bensonhurst,40.61518,-73.98874,Entire home/apt,76,30,28,2018-11-07,0.44,1,282 +2383233,Entire 1400 sq ft Artist Loft - FOUR Private Rooms,10674441,Annie,Brooklyn,Bedford-Stuyvesant,40.69392,-73.95446,Entire home/apt,175,27,0,,,2,148 +2385344,The Rose House,179296,Rich,Brooklyn,Greenpoint,40.73334,-73.95478,Entire home/apt,500,3,74,2019-06-24,1.17,1,364 +2385779,"The center of NYC, Brooklyn!",12186466,Edmund,Brooklyn,Bedford-Stuyvesant,40.68843,-73.93678,Entire home/apt,179,3,149,2019-07-04,2.33,1,242 +2391204,"SALE 2 BEDROOMS, LARGE MASTER & GUEST BEDROOM",8452639,C S,Brooklyn,Flatbush,40.64846,-73.96186,Private room,200,1,30,2019-05-19,0.50,3,362 +2392051,Spacious apt in the Lower East Side,132244,Tal,Manhattan,Lower East Side,40.71762,-73.98334,Entire home/apt,400,7,0,,,1,365 +2392296,"A Simple, Calm Space",10510181,Août,Bronx,Kingsbridge,40.88437,-73.89746,Shared room,32,2,6,2016-09-22,0.16,1,83 +2392301,Charming Bedroom in Artists Colony,173997,Beth,Brooklyn,Williamsburg,40.7106,-73.95325,Private room,50,3,16,2016-07-11,0.25,2,0 +2392814,Room in Huge 3 Bedroom L.E.S,12223914,Lakis,Manhattan,Lower East Side,40.71968,-73.98726,Private room,75,1,0,,,1,0 +2396867,Near Columbia Universit/Female only,12245536,Rong,Manhattan,Harlem,40.82039,-73.95514,Private room,40,1,5,2016-01-03,0.08,2,0 +2399434,"House of Music and Art, Large Happy Room, full bed",3992566,Clay,Brooklyn,Bushwick,40.70054,-73.92954,Private room,62,21,39,2019-05-23,0.65,3,110 +2400010,The Notorious B.N.B. { The Pfizer },1177497,Jessica,Brooklyn,Clinton Hill,40.69045,-73.96762,Private room,239,1,16,2019-05-19,0.28,11,363 +2400614,Your Very Own Williamsburg Apt!,2297544,Julian,Brooklyn,Williamsburg,40.71919,-73.9418,Entire home/apt,179,5,22,2019-07-01,0.37,1,336 +2404708,Williamsburg 1 bedroom appartement,12290324,Lara,Brooklyn,Williamsburg,40.71952,-73.96281,Entire home/apt,250,5,21,2019-03-28,0.35,1,284 +2405505,Luxury West Village apt with views!,12294891,Lillian,Manhattan,West Village,40.73618,-74.00256,Entire home/apt,400,5,8,2017-12-10,0.13,1,35 +2407196,"Harlem 1 BR, Private Master Bath",5905011,Annette,Manhattan,Harlem,40.81904,-73.94325,Private room,98,2,182,2019-06-23,2.85,1,312 +2410200,"Heart of Williamsburg, Brooklyn!",11982812,Georgia,Brooklyn,Williamsburg,40.71023,-73.94657,Private room,89,1,99,2017-11-18,1.55,1,0 +2410620,Cozy apt in the Upper East Side,12320096,Luanna,Manhattan,Upper East Side,40.78331,-73.94489,Entire home/apt,185,2,3,2019-06-09,0.27,1,0 +2410819,In the heart of the East Village,1522929,Anoop,Manhattan,East Village,40.72916,-73.98022,Private room,125,3,13,2017-06-26,0.34,1,0 +2412916,"Elegant Brooklyn Comfort, One Bedroom",4183222,James,Brooklyn,Carroll Gardens,40.68008,-73.99392,Entire home/apt,180,2,1,2014-06-10,0.02,1,0 +2414157,Relaxed Comfortable Beds in A Cozy Apartment.,8904815,Sandra&Orlando,Brooklyn,Flatbush,40.64307,-73.95455,Shared room,30,5,34,2019-06-29,0.52,2,288 +2415563,The Big Brooklyn,12346795,Ron,Brooklyn,Crown Heights,40.67019,-73.95541,Private room,60,1,35,2018-04-24,0.54,1,333 +2416016,Modern Lower East Side Apartment,1191562,Ross,Manhattan,Lower East Side,40.71962,-73.99178,Private room,115,2,130,2019-03-24,2.30,1,276 +2416104,"Private home, quiet Brooklyn street",12348871,Hetty,Brooklyn,Kensington,40.64742,-73.97559,Entire home/apt,200,2,13,2018-08-18,0.21,2,0 +2416191,Cute Apartment in Williamsburg,1473507,Moema,Brooklyn,Williamsburg,40.7186,-73.9451,Private room,70,1,0,,,1,0 +2417098,Sunny Studios in Historic Browstone,26640,Sally,Manhattan,Upper West Side,40.78327,-73.97343,Entire home/apt,179,30,14,2015-09-21,0.27,2,365 +2419438,1 Bedroom Bushwick apartment,571080,Michael,Brooklyn,Bushwick,40.6998,-73.92913,Entire home/apt,109,1,12,2018-09-03,0.19,1,0 +2419574,Private Room HK/Theatre District!,12366541,Pj,Manhattan,Hell's Kitchen,40.76589,-73.98536,Private room,124,5,263,2019-06-02,4.10,2,236 +2422991,Trendy Apt by Chelsea Market with High Line Views,12384418,Daniel,Manhattan,Chelsea,40.7453,-74.00704,Entire home/apt,159,2,43,2019-06-23,1.10,1,25 +2424199,"Bright, Eclectic, Happy Brooklyn Apartment",10434821,H. Erin,Brooklyn,Crown Heights,40.67422,-73.95569,Entire home/apt,85,10,9,2018-01-02,0.14,1,12 +2424342,Amazing Room—Private Bath (100% LEGAL!),2841152,Matthew,Brooklyn,Greenpoint,40.73169,-73.9554,Private room,109,2,107,2019-06-24,1.64,1,269 +2425222,Luxury Alcove Studio Apt in TriBeCa,12394900,Alice,Manhattan,Tribeca,40.72034,-74.01122,Entire home/apt,110,10,1,2016-01-05,0.02,1,0 +2425871,Newly Built Full Bedroom In TriBeCa,12399023,Ankush,Manhattan,Tribeca,40.7159,-74.00834,Private room,500,1,0,,,1,0 +2425980,"Cozy BR in Hamilton Heights, Harlem",9915185,Sarah,Manhattan,Harlem,40.82301,-73.94907,Private room,65,2,2,2015-10-12,0.04,1,0 +2430828,Private Room Available in nice apartment!,8351424,Anthony,Manhattan,Washington Heights,40.83358,-73.94462,Private room,112,2,20,2019-06-23,1.44,1,179 +2431607,"Bright, Airy Room Share for 2",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68642,-73.9344,Shared room,25,5,76,2019-06-06,1.22,3,258 +2431784,Newly renovated 1BD on UWS,2335233,Amber,Manhattan,Upper West Side,40.7809,-73.98215,Entire home/apt,220,5,0,,,1,0 +2432545,Your own apartment in Bushwick,3053987,Darwin And Nicole,Brooklyn,Bushwick,40.6911,-73.92125,Entire home/apt,79,3,43,2018-07-07,0.71,2,0 +2432622,Great 2 bdr apt in WB/Greenpoint,377287,Marianne,Brooklyn,Greenpoint,40.72545,-73.95405,Entire home/apt,200,3,2,2018-06-30,0.03,1,205 +2433591,Private Room Brooklyn NY,2120259,Sue,Brooklyn,Crown Heights,40.66586,-73.95128,Private room,55,4,21,2019-04-08,0.34,4,129 +2435198,"Lovely Private Bedroom in Vibrant Bronx, NY",12446529,Migdalia,Bronx,Soundview,40.82528,-73.86004,Private room,50,2,32,2019-04-07,0.51,2,156 +2435408,Modern Duplex Studio Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72669,-73.9419,Entire home/apt,129,30,9,2019-04-30,0.16,52,325 +2435621,Stunning 1br in Historic Brownstone,26640,Sally,Manhattan,Upper West Side,40.7851,-73.97397,Entire home/apt,195,30,45,2019-05-31,0.73,2,327 +2435669,Charming Mid-Century Studio,1301613,Janet,Brooklyn,Flatbush,40.64815,-73.96486,Entire home/apt,79,2,8,2017-09-05,0.13,1,6 +2438181,Bedroom in sunny downtown apartment,2102889,Arthur,Manhattan,Two Bridges,40.71149,-73.99721,Private room,65,3,8,2019-07-02,1.71,1,123 +2440173,Theater District Studio (Sleeps 4),3948178,Redi,Manhattan,Hell's Kitchen,40.76453,-73.99515,Entire home/apt,123,2,8,2017-03-13,0.13,1,0 +2440846,Loft in Williamsburg! ,9872597,Sofia,Brooklyn,Williamsburg,40.71124,-73.9499,Private room,70,5,8,2015-07-22,0.15,1,0 +2445856,"Guest rm, 2 stops from GrandCentral",3578009,Walther,Queens,Long Island City,40.74955,-73.95081,Private room,100,2,37,2018-10-06,0.58,2,97 +2446430,Comfy Room in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66443,-73.98792,Private room,69,1,143,2019-06-04,2.41,4,22 +2447138,HUGE LUX 2FLOOR 2 BDRMSOHO LOFTw/HOME CINEMA,3540714,Simonie,Manhattan,Tribeca,40.72023,-74.00715,Entire home/apt,450,1,10,2016-05-26,0.16,1,0 +2447298,Soho loft with everything,5165749,Ben,Manhattan,SoHo,40.72512,-74.00024,Entire home/apt,650,5,0,,,2,83 +2447460,Cozy Entire Apt1Bd APT inGREAT Loc,12386614,Carlos,Manhattan,East Harlem,40.79926,-73.94499,Entire home/apt,125,3,2,2018-04-15,0.13,1,249 +2447467,Charming Spacious Master Bedroom,12515888,Kaet,Brooklyn,Greenpoint,40.73418,-73.95683,Private room,75,1,35,2019-06-21,0.55,2,306 +2447634,Charming 2BR in Greenpoint,12515888,Kaet,Brooklyn,Greenpoint,40.73348,-73.95689,Entire home/apt,154,1,7,2019-06-21,0.11,2,213 +2447868,Charming Upper West Side Studio,6717488,Francesca,Manhattan,Morningside Heights,40.8049,-73.96315,Entire home/apt,60,14,12,2017-06-22,0.19,1,0 +2451110,2019 Special! LARGE West Village 1 BED!,12533228,Rose,Manhattan,Greenwich Village,40.72908,-73.9965,Entire home/apt,279,1,78,2019-05-12,1.22,1,363 +2451438,Quiet & private room in luxury doorman bldg,10193030,Kaori,Manhattan,Harlem,40.82349,-73.94193,Private room,80,3,3,2017-10-03,0.05,2,178 +2451647,"Bright, Modern Room in East Village!",64442,Reka,Manhattan,East Village,40.72598,-73.97778,Private room,84,1,184,2019-07-01,2.86,2,59 +2453730,"Sunny, charming duplex in best Brooklyn 'hood",10232293,Georgia,Brooklyn,Gowanus,40.67906,-73.99093,Entire home/apt,180,6,1,2019-07-05,1,1,26 +2453739,Awesome Child Friendly Apartment!,6369087,Andrea,Brooklyn,Crown Heights,40.67652,-73.95713,Entire home/apt,100,5,7,2018-08-21,0.11,1,0 +2454281,Private room in Clinton Hill,5696628,Christine,Brooklyn,Bedford-Stuyvesant,40.69011,-73.96026,Private room,86,2,20,2019-06-30,0.31,2,35 +2454504,Center Park Slope 2 Bedroom Townhouse Apartment,6718172,Sharon,Brooklyn,Park Slope,40.67348,-73.9779,Entire home/apt,189,7,13,2019-06-20,0.39,1,33 +2454507,Close to everything - Jr 1 bedroom,9991763,Andrew,Manhattan,Financial District,40.70781,-74.00701,Entire home/apt,130,365,6,2016-10-02,0.10,1,262 +2457755,Ultimate Luxury Manhattan Apartment,4335080,Tiffany,Manhattan,Hell's Kitchen,40.76852,-73.98735,Entire home/apt,150,1,94,2019-06-23,1.48,2,215 +2458656,Beautiful 1br loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72708,-73.94171,Entire home/apt,149,30,1,2018-04-14,0.07,52,0 +2458811,Gorgeous Private 1BR. 10m to MHTN.,4549281,Ido,Queens,Astoria,40.75705,-73.91771,Entire home/apt,83,14,0,,,1,0 +2459587,Upper East Side Large 2 Bedroom,12575621,Daniel,Manhattan,Upper East Side,40.78474,-73.94974,Entire home/apt,180,1,0,,,1,0 +2459916,"$455 Cozy 1bd, BKLYN Sublet March",12577771,Victor,Brooklyn,Bedford-Stuyvesant,40.68948,-73.93528,Private room,18,1,0,,,1,0 +2460303,Charming Brooklyn Brownstone,12579916,Andrea,Brooklyn,Park Slope,40.68091,-73.9766,Entire home/apt,100,2,1,2014-06-09,0.02,1,0 +2460611,1890s North Williamsburg Townhouse,4137875,Rachel,Brooklyn,Greenpoint,40.72559,-73.95033,Private room,145,2,21,2019-04-22,0.45,1,64 +2461439,Pristine Lower East Side Sanctuary,12586492,Sausan,Manhattan,Lower East Side,40.72007,-73.98946,Entire home/apt,133,14,177,2019-05-03,2.82,2,221 +2461540,Big BR 15 min away from Manhattan,12587147,Joao,Queens,Astoria,40.75799,-73.92006,Private room,75,7,186,2019-06-10,2.93,1,193 +2464673,Beautiful Bright & Airy Guest Room ,1262622,Mike And Lucy,Brooklyn,Williamsburg,40.70669,-73.93578,Private room,100,2,16,2016-07-28,0.25,1,341 +2464679,East Village,6530413,Chris,Manhattan,East Village,40.73237,-73.98918,Shared room,99,1,94,2015-05-10,1.46,1,0 +2465333,Spacious one bedroom in prime Fort Greene,12058474,Garth,Brooklyn,Fort Greene,40.68825,-73.98038,Entire home/apt,132,3,5,2016-11-26,0.14,1,0 +2465699,Beautiful Central Park Apartment!,12608261,Jimmie,Manhattan,Harlem,40.79841,-73.95257,Private room,72,2,27,2019-04-12,0.44,1,183 +2465962,1 BEDROOM ENTIRE HOME/APT❤ ASTORIA,1000014,Amy,Queens,Astoria,40.76122,-73.91163,Entire home/apt,125,1,13,2015-09-28,0.22,1,0 +2466687,"New, spacious 1BD in Williamsburg",8778997,Lee,Brooklyn,Williamsburg,40.71512,-73.94978,Entire home/apt,102,7,26,2019-05-27,0.41,1,2 +2466770,New Factory Converted Studio Loft,7503643,Vida,Brooklyn,Greenpoint,40.72574,-73.94146,Entire home/apt,129,30,3,2017-11-06,0.05,52,303 +2466816,"2 Bedroom in Carroll Gardens West, minimum 1 month",101924,Seth,Brooklyn,Columbia St,40.68727,-74.00352,Entire home/apt,107,30,35,2019-07-04,0.55,1,18 +2467087,BEAUTIFUL ARTIST APT IN NOLITA w/ Private Backyard,12616627,Nico,Manhattan,Nolita,40.72297,-73.99539,Entire home/apt,250,1,2,2016-01-02,0.05,1,0 +2467377,Centrally located in Bayside / Nice,7801481,Inez,Queens,Bay Terrace,40.78645,-73.77958,Private room,90,3,8,2019-01-15,0.25,2,324 +2467680,Upper West Side Lux Apt. Available 8/5-8/14/2017,12620213,Lara,Manhattan,Upper West Side,40.78792,-73.97758,Entire home/apt,200,4,0,,,1,0 +2467879,"Great, cozy room in Williamsburg!",786862,Cristina,Brooklyn,Williamsburg,40.71841,-73.95992,Private room,90,1,2,2015-04-30,0.03,1,0 +2468186,Luxury Living Near Central Park,4665764,Ziporah,Manhattan,Upper West Side,40.79838,-73.96388,Private room,200,5,20,2019-01-01,0.33,1,0 +2471108,Prime Brooklyn 1BR-10min to City!,12637520,Laura,Brooklyn,Boerum Hill,40.68955,-73.98885,Entire home/apt,160,7,7,2016-09-12,0.15,1,0 +2471725,Awesome Spot near HK/Theatre Distri,12366541,Pj,Manhattan,Hell's Kitchen,40.76269,-73.9907,Private room,124,5,196,2017-12-06,3.02,2,149 +2471815,"Sunny Master Suite: large bdrm, priv bth, priv liv",12641005,Omar,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95279,Private room,95,4,171,2019-06-30,2.72,1,137 +2471910,Studio Loft with 2 queen beds and large kitchen,7503643,Vida,Brooklyn,Greenpoint,40.72591,-73.9422,Entire home/apt,129,30,2,2017-10-31,0.04,52,341 +2472636,Full Floor Apt with NY Skyline views,10431172,En,Brooklyn,Williamsburg,40.71492,-73.94124,Private room,110,4,66,2019-06-22,1.04,1,323 +2473611,Overlooking Harlem,12649246,Leah,Manhattan,Harlem,40.80121,-73.95002,Private room,92,2,173,2019-06-19,2.71,1,276 +2473861,Royal Harlem TRIPLEX Home 5 Beds,8826175,Grover,Manhattan,Harlem,40.80705,-73.94452,Entire home/apt,175,3,157,2019-06-22,2.46,3,38 +2477138,Private Room: The cheapest deal!!,9089934,Siddharth,Queens,Ozone Park,40.67948,-73.85335,Private room,30,7,0,,,1,0 +2478415,Red Hook Classic Townhouse w Garden and Treehouse,12516367,Peter,Brooklyn,Red Hook,40.68075,-74.00961,Entire home/apt,134,2,157,2019-06-25,2.45,1,264 +2478825,2 BR Designer's Apt in Heart of NYC,2935265,Andrew,Manhattan,SoHo,40.72337,-74.00175,Entire home/apt,400,1,18,2019-01-02,0.28,2,30 +2479193,Chic New York city apartment,7974574,Vanita,Manhattan,Kips Bay,40.744,-73.98054,Entire home/apt,152,270,5,2016-01-06,0.10,1,0 +2485482,Boutique Apt. NYC by 24 HR Metro,12718658,Ray,Queens,Jackson Heights,40.75484,-73.8764,Shared room,75,2,0,,,1,0 +2487073,18th Floor Bright Bedroom with Private Bathroom,6194434,Chiara,Manhattan,Financial District,40.70933,-74.00381,Private room,169,8,15,2019-06-10,0.24,1,60 +2487848,Quintessential W'burg Apartment,12358955,Priya,Brooklyn,Williamsburg,40.71116,-73.96078,Private room,95,2,156,2019-06-10,2.43,2,274 +2487851,Quintessential W'burg Private Room,12358955,Priya,Brooklyn,Williamsburg,40.71072,-73.96143,Private room,90,2,142,2019-06-16,2.22,2,306 +2488022,Sunny Quiet Room In Harlem,12732806,Jerome,Manhattan,Harlem,40.8151,-73.95147,Private room,60,1,19,2018-10-22,1.34,1,356 +2488227,COZY 1 BR IN COOL LOWER EAST SIDE,12732385,Asaf,Manhattan,Lower East Side,40.72005,-73.98609,Entire home/apt,180,6,55,2019-06-15,0.85,1,97 +2489407,Peaceful Bed w Breakfast - Manhattan,3562864,Daniel,Manhattan,Upper East Side,40.77194,-73.94773,Private room,84,3,150,2019-06-21,2.38,1,294 +2489615,Big Sunny Bushwick Apartment,2498724,Josh,Brooklyn,Bushwick,40.70451,-73.92588,Entire home/apt,98,4,32,2019-05-15,0.50,1,8 +2489920,Charming Studio!--Brooklyn College ,9543143,Angel,Brooklyn,Flatlands,40.62338,-73.94078,Entire home/apt,90,7,21,2015-12-29,0.33,1,0 +2492275,Charming Apartment in Greenpoint,4543994,Dusan,Brooklyn,Greenpoint,40.72771,-73.95382,Entire home/apt,134,6,6,2017-02-07,0.09,1,0 +2493039,Private Room in Large Two-floor Apt w/ Backyard,598167,Michael,Manhattan,Chelsea,40.75066,-73.9972,Private room,119,2,32,2017-10-30,1.09,1,0 +2493176,Cozy spacious UES studio,12760201,Megan,Manhattan,Upper East Side,40.77574,-73.9524,Entire home/apt,141,1,20,2018-06-05,0.33,1,0 +2495596,Charming 1 Bedroom in West Village,12773532,Idan,Manhattan,Greenwich Village,40.73405,-73.99725,Entire home/apt,199,4,3,2015-07-13,0.05,1,0 +2496301,"Comfy, Roomy Bushwick 1-BR ~ Steps from L/M Train",4142684,Suzette,Brooklyn,Bushwick,40.69587,-73.9096,Entire home/apt,108,3,232,2019-07-06,3.62,1,89 +2500087,NYC Steps from Central Park!,12796040,Robyn,Manhattan,Hell's Kitchen,40.7673,-73.98809,Entire home/apt,150,5,3,2015-01-05,0.05,1,0 +2500560,"Ingefära Hus! One bedroom Williamsburg, Brooklyn",179679,Ginger,Brooklyn,Williamsburg,40.71009,-73.95741,Entire home/apt,175,2,46,2019-02-18,0.72,3,14 +2501384,Private 1Bed/Bath in Sunny 3Bed Apt,3030031,Elizabeth,Brooklyn,Boerum Hill,40.68844,-73.98513,Private room,90,3,5,2016-09-12,0.08,1,0 +2501809,Parkside Apartment on Prospect Park,12806055,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.6574,-73.96174,Private room,45,2,3,2015-09-21,0.06,1,151 +2507612,Mamas red rm#2- profs-interns-students bklyn train,12834599,Ms. Edith,Brooklyn,Borough Park,40.63256,-73.99453,Private room,49,3,0,,,4,180 +2508374,Cozy 1br mins from CASINO JFK & NYC,8552126,Claudius,Queens,Jamaica,40.67349,-73.76951,Entire home/apt,63,3,146,2019-06-20,2.28,2,23 +2508745,Historic Harlem 2,3905432,Rose,Manhattan,Harlem,40.81456,-73.94583,Private room,100,6,13,2019-05-31,0.22,2,308 +2509093,Private Room in WILLIAMSBURG,3034421,Heather,Brooklyn,Williamsburg,40.71683,-73.95623,Private room,110,1,38,2018-04-22,0.63,1,157 +2509617,Georgous 3BD in 24-hr doorman bldg,12622830,Ana,Manhattan,Upper East Side,40.77979,-73.96153,Entire home/apt,600,1,0,,,1,0 +2510394,"HUGE LUXURY 2BD/2B, 7mn TO TIME SQR",12851900,Dominique,Queens,Long Island City,40.74263,-73.95594,Entire home/apt,395,7,50,2019-05-01,0.80,1,319 +2513351,Bright and Open Astoria Apartment!,12864943,Tegan,Queens,Astoria,40.76441,-73.92878,Private room,70,3,1,2015-04-06,0.02,2,0 +2514689,3 BEDS IN LOVELY 2BEDROOM/2BATH MIDTOWN RENTAL,12872352,Jada,Manhattan,Midtown,40.75879,-73.96413,Entire home/apt,399,1,87,2017-12-18,1.37,3,267 +2514760,Fully Furnished Upper West Side 1BD,12872812,Scott,Manhattan,Upper West Side,40.79732,-73.97259,Entire home/apt,145,14,22,2018-11-29,0.35,1,282 +2515876,"Comfortable, spacious “ 1 bedroom “ apartment",12878653,Nicholas P,Queens,Astoria,40.76374,-73.90965,Private room,59,14,19,2019-05-07,0.31,1,346 +2516430,Lg Private Rm 10mins to Manhattan,10440985,Jimmy,Queens,Astoria,40.75879,-73.91185,Private room,50,10,1,2016-07-31,0.03,1,0 +2517989,1BR on Quiet Block in Nolita,9229424,John,Manhattan,Nolita,40.72276,-73.99499,Entire home/apt,145,2,52,2019-06-18,0.86,1,0 +2518907,"Art-Packed, One-Of-A-Kind Triplex",10264377,Anthony,Manhattan,East Village,40.73101,-73.98936,Entire home/apt,245,2,3,2015-12-22,0.07,1,0 +2519112,in the heart of manhattan,9372538,Fabiola,Manhattan,Hell's Kitchen,40.76152,-73.98793,Private room,149,1,158,2019-06-13,3.11,2,78 +2519255,Beautiful Brooklyn Room,808206,Brenna,Brooklyn,Bushwick,40.70365,-73.92711,Private room,50,1,1,2014-04-11,0.02,1,0 +2519770,2-3 bedroom apt in Astoria NYC,12899510,Solange,Queens,Ditmars Steinway,40.77804,-73.91623,Entire home/apt,150,1,1,2014-08-28,0.02,1,0 +2519879,Cozy private room in L.E.S -,10149453,Girish,Manhattan,Lower East Side,40.71934,-73.98196,Private room,110,3,0,,,1,0 +2521670,Spacious Studio in Prospect Heights,6723969,Mari,Brooklyn,Crown Heights,40.67571,-73.95161,Entire home/apt,60,1,2,2014-04-21,0.03,1,0 +2523629,ENTIRE APT IN GORGEOUS PARK SLOPE,12921356,Elizabeth,Brooklyn,South Slope,40.66517,-73.98637,Entire home/apt,165,5,7,2015-12-31,0.11,1,0 +2524034,Nice room Convenient to Manhattan A,8288419,Jason,Brooklyn,Borough Park,40.64426,-73.99555,Private room,53,1,162,2019-06-13,2.51,4,60 +2524058,Huge 1 bedroom in the East Village,918543,Simona,Manhattan,East Village,40.72314,-73.98491,Entire home/apt,160,5,0,,,1,0 +2524213,Nice room Convenient to Manhattan C,8288419,Jason,Brooklyn,Borough Park,40.64601,-73.99765,Private room,38,1,40,2019-06-16,0.62,4,280 +2524228,Nice room Convenient to Manhattan B,8288419,Jason,Brooklyn,Borough Park,40.64447,-73.99574,Private room,49,1,96,2019-06-12,1.51,4,120 +2524451,Close to Maimonides Center. Room D,8288419,Jason,Brooklyn,Borough Park,40.64492,-73.99612,Private room,47,1,90,2019-06-08,1.43,4,74 +2524658,"Unique loft in Bushwick - Offices, yoga & roof!",1091832,Julie,Brooklyn,Bushwick,40.69728,-73.93066,Entire home/apt,120,2,15,2019-03-10,0.24,1,61 +2524947,Gorgeous Apartment in Battery Park!,7520792,Jenna,Manhattan,Financial District,40.70558,-74.01533,Entire home/apt,175,2,45,2016-02-21,0.76,1,0 +2525956,Beautiful 1 Bdr in the heart of NYC,7365834,Alex,Manhattan,Theater District,40.76084,-73.98367,Entire home/apt,129,30,16,2017-12-01,0.25,5,171 +2526152,"Sunny, Child Friendly Loft. ",11825464,SirRoan,Brooklyn,Crown Heights,40.67901,-73.96237,Private room,105,1,1,2014-05-02,0.02,1,0 +2529085,Sunny luxury in Bklyn's best hood,1210541,Jodie,Brooklyn,Carroll Gardens,40.68287,-73.99082,Entire home/apt,275,2,3,2018-06-24,0.05,1,0 +2530057,1BD in a Quiet Brownstone in Harlem,3237558,Andre,Manhattan,Harlem,40.81927,-73.94631,Private room,99,1,0,,,1,0 +2531865,Flatiron studio + dining / sunlight,4517005,Ryan,Manhattan,Kips Bay,40.73905,-73.98161,Entire home/apt,210,1,32,2018-05-08,0.50,1,0 +2532068,Beautiful Prewar UWS Apartment,12967572,Laura,Manhattan,Upper West Side,40.77929,-73.97787,Private room,65,1,1,2015-09-01,0.02,1,0 +2532443,LUXURY 2BED CONDO / OUTDOOR STONE TERRACE,4636483,Christina,Brooklyn,Sunset Park,40.63747,-74.01153,Private room,52,3,5,2019-06-03,0.11,1,281 +2532873,Beautiful Master Bedroom in the Heart of Astoria,12972780,Ismail,Queens,Astoria,40.76163,-73.91783,Private room,100,1,13,2019-05-20,0.51,2,0 +2536005,Bright Room in Battery Park!,9426702,KayCee,Manhattan,Battery Park City,40.70657,-74.01676,Private room,91,2,26,2017-07-27,0.44,1,0 +2538248,Large newly renovated studio ,9743617,Patricia,Manhattan,Harlem,40.81472,-73.94291,Entire home/apt,124,5,124,2019-06-25,1.93,2,279 +2539759,/,4358702,Bram,Manhattan,Harlem,40.82277,-73.94981,Private room,200,1,0,,,1,0 +2540173,Elegant Triplex Townhouse,7821383,Gary,Brooklyn,Prospect Heights,40.67454,-73.96803,Entire home/apt,550,1,24,2017-02-19,0.38,1,0 +2545184,Great room! Good for med students!,4096786,Nicolas,Bronx,Norwood,40.87605,-73.88047,Private room,70,6,40,2019-03-01,0.73,1,313 +2547198,Jewel Box Studio in Soho / Nolita,4291837,Wilson,Manhattan,Nolita,40.72224,-73.99491,Entire home/apt,150,1,156,2019-05-31,2.46,1,111 +2551532,Charm & Beauty close to Manhattan,13063145,Vinneth,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95558,Entire home/apt,176,3,168,2019-06-15,2.64,2,302 +2552606,Beautiful and cozy 1BR Apt,13068601,Martin,Manhattan,Morningside Heights,40.8075,-73.95844,Entire home/apt,99,30,9,2015-01-02,0.14,1,0 +2554110,Great east village studio!,7132792,Milenna,Manhattan,Gramercy,40.73237,-73.98288,Entire home/apt,130,6,2,2017-01-01,0.06,1,0 +2554749,Two real bedrooms near Central Park,9586465,Lang,Manhattan,Hell's Kitchen,40.76518,-73.98746,Entire home/apt,109,1,208,2019-06-22,3.22,1,261 +2557654,East Village Charm,13094498,Doug,Manhattan,East Village,40.72939,-73.98319,Private room,75,2,124,2019-07-07,1.92,1,109 +2559129,Large private bedroom in Manhattan,4912237,Jonathan,Manhattan,Hell's Kitchen,40.76791,-73.98735,Private room,95,4,7,2018-10-08,0.11,1,0 +2560559,Sunny Private Room Near Prospect Pk,2766490,Daisy,Brooklyn,Crown Heights,40.68027,-73.96379,Private room,50,7,1,2016-01-03,0.02,1,0 +2563135,Sunny Private Williamsburg room,6754169,Ellie,Brooklyn,Williamsburg,40.71685,-73.94246,Private room,100,2,38,2016-01-05,0.61,2,0 +2563440,Big & Cozy Private Room,8785876,Alessandro,Manhattan,Harlem,40.8235,-73.95144,Private room,68,1,86,2019-06-10,1.36,1,64 +2563611,Apartment 6,1163315,Craig,Manhattan,Harlem,40.8029,-73.95694,Private room,104,3,298,2019-06-27,4.67,1,42 +2563764,Huge room in South Prospect Park,13125674,Yago,Brooklyn,Flatbush,40.64576,-73.95871,Private room,30,15,1,2018-06-20,0.08,1,0 +2563997,Garden Duplex in Clinton Hill,13067214,Dominick,Brooklyn,Clinton Hill,40.6842,-73.9636,Entire home/apt,595,4,22,2019-01-01,0.39,1,0 +2565087,Williamsburg: great room with a sunny terrace!,13132515,Carlos,Brooklyn,Williamsburg,40.70819,-73.94813,Private room,65,9,12,2019-01-31,0.19,1,0 +2569466,Shared studio in East Harlem,13156191,Serenity,Manhattan,East Harlem,40.79731,-73.94231,Shared room,55,1,10,2015-08-18,0.20,1,0 +2569629,Beautiful 2 Bedroom in Quaint Cobble Hill,13156754,Nan,Brooklyn,Boerum Hill,40.68611,-73.99031,Entire home/apt,250,6,6,2019-04-21,0.09,1,56 +2569808,"Williamsburg, Brooklyn Apartment",10302140,Zandy,Brooklyn,Williamsburg,40.71075,-73.95676,Entire home/apt,85,10,40,2019-06-26,0.64,1,324 +2570488,Union Square - Best NYC location,153675,Matteo,Manhattan,East Village,40.73112,-73.98558,Private room,90,5,109,2019-06-22,1.73,2,21 +2570561,Charming apartment river view,1676600,Angie,Manhattan,Washington Heights,40.84309,-73.94127,Private room,90,3,2,2016-07-16,0.03,1,0 +2571224,Williamsburg Bedroom & Study,13165300,Sean,Brooklyn,Williamsburg,40.72002,-73.9578,Entire home/apt,90,14,2,2018-05-08,0.14,1,310 +2571283,Entire home 1 BR+ office or 2 BR best UWS location,5140244,Jennifer,Manhattan,Upper West Side,40.78283,-73.97206,Entire home/apt,199,13,2,2019-01-01,0.03,1,0 +2574386,Luxury Apt - west village/Chelsea,9090698,G,Manhattan,Chelsea,40.74311,-74.00718,Entire home/apt,275,30,2,2014-10-05,0.03,1,365 +2576750,Better than hotel,7451917,Fe,Brooklyn,Bay Ridge,40.63113,-74.02767,Entire home/apt,125,5,0,,,2,213 +2577467,1 BR with private bath new building,2920976,Shay,Manhattan,Harlem,40.8127,-73.94367,Private room,150,3,23,2017-07-01,0.36,1,0 +2578731,Spacious Modern 2BD Apartment,13207016,Jessica,Queens,Rockaway Beach,40.58451,-73.815,Entire home/apt,140,2,14,2014-10-31,0.22,1,0 +2581456,Charming Modern Studio w/Large Garden,413336,Christian,Manhattan,East Harlem,40.79249,-73.94592,Entire home/apt,120,7,0,,,1,6 +2582812,Brooklyn loft apt in industrial building,13225047,Lila,Brooklyn,Williamsburg,40.71997,-73.95945,Private room,60,1,44,2018-03-28,1.24,3,0 +2584258,Lovely home-y room in Bushwick,4612212,Guillaume,Brooklyn,Bushwick,40.69304,-73.92079,Private room,36,10,2,2017-10-01,0.03,1,0 +2586484,Large Private Room,6970030,Wendy,Manhattan,Harlem,40.80546,-73.95221,Private room,85,3,51,2019-06-22,1.27,1,66 +2586794,Private Bedroom in Spacious Brooklyn Apartment,2132620,Eva,Brooklyn,Crown Heights,40.67656,-73.95825,Private room,85,1,4,2017-03-05,0.11,1,0 +2586923,Beautiful Prospect Park South room,12508991,Melinda,Brooklyn,Flatbush,40.64772,-73.96273,Private room,45,7,30,2019-06-16,0.48,1,287 +2590590,Washer&Dryer - 6 Subway stops to NYC / 15 min ride,727585,Frances,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95644,Entire home/apt,92,3,227,2019-07-01,3.61,1,173 +2592640,Great room with awesome amenities!,13272957,Johnny,Brooklyn,Bedford-Stuyvesant,40.69135,-73.94694,Private room,30,1,1,2014-03-28,0.02,1,0 +2598087,Sunny Private Room w/Exposed Brick,13304615,Andrew,Brooklyn,Greenpoint,40.72707,-73.95681,Private room,75,1,3,2018-01-01,0.05,1,0 +2599963,Amazing Penthouse Studio (Midtown East),13314076,Abraham,Manhattan,Midtown,40.75529,-73.96897,Entire home/apt,99,6,15,2018-08-26,0.24,1,0 +2600199,Williamsburg Dream loft,13314736,Justin,Brooklyn,Williamsburg,40.70942,-73.94693,Entire home/apt,100,20,7,2018-09-29,0.21,1,327 +2601402,Cozy 1BR in Beautiful Brooklyn,13322259,Alex,Brooklyn,Boerum Hill,40.68647,-73.98595,Entire home/apt,115,3,54,2018-07-26,0.94,1,188 +2601899,Sun-drenched Artist Loft,8798158,Stephen And Hector,Brooklyn,Bushwick,40.69911,-73.93713,Entire home/apt,175,5,16,2018-12-31,0.25,1,0 +2606083,Large Garden Apartment in BK Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67648,-73.95098,Entire home/apt,112,4,19,2019-06-05,0.52,2,0 +2606370,Beautiful Brownstone near Central Park,13347139,Nicole,Manhattan,Harlem,40.80007,-73.9562,Entire home/apt,450,7,6,2018-08-18,0.16,1,0 +2607583,Exquisite Furnished 1-BR Studio,13347167,AFI Apartments,Manhattan,Upper East Side,40.77231,-73.95588,Entire home/apt,103,30,7,2019-04-30,0.23,29,326 +2607741,Stylish Comfort 1-BR Upper East,13347167,AFI Apartments,Manhattan,Upper East Side,40.77263,-73.95567,Entire home/apt,117,30,0,,,29,331 +2608217,"Lovely, quiet 1-Bedroom Apt",13322169,Sonja,Manhattan,Morningside Heights,40.81503,-73.96029,Entire home/apt,150,5,9,2018-12-30,0.14,1,0 +2611458,close to Manhattan country setting,13373889,Aaron,Staten Island,Concord,40.60375,-74.08065,Private room,129,1,40,2018-10-14,0.85,2,86 +2611765,Luxury One Bedroom Upper West Side,10331953,Omar,Manhattan,Upper West Side,40.79071,-73.97408,Entire home/apt,145,3,8,2016-06-13,0.13,1,0 +2611869,LRG 1 Bdrm w/office and backyard,2681844,Hedia,Brooklyn,Bushwick,40.70318,-73.91462,Entire home/apt,115,14,0,,,1,0 +2612035,UPPER WEST SIDE 2BR APT ,10894722,Naftali,Manhattan,Upper West Side,40.79733,-73.96104,Entire home/apt,90,5,0,,,1,0 +2613864,Sunny Studio NYC West 50's,6222620,Joe,Manhattan,Hell's Kitchen,40.76608,-73.99203,Entire home/apt,90,2,1,2014-04-24,0.02,1,0 +2615065,Beautiful & Tranquil Oasis in a Great Location,524730,Oz,Brooklyn,Williamsburg,40.7165,-73.94842,Entire home/apt,100,30,99,2019-01-09,1.57,2,151 +2618288,Tour like a local,13408910,Tmc,Bronx,Concourse,40.83012,-73.92714,Private room,41,2,12,2018-01-01,0.35,2,0 +2619549,"Charming, Modern 2BR | Central Park",13347167,AFI Apartments,Manhattan,Upper East Side,40.77265,-73.9574,Entire home/apt,145,30,1,2018-09-30,0.11,29,329 +2619802,Incredible 2-BR w/ Kitchen Island!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95675,Entire home/apt,139,30,4,2018-07-29,0.07,29,308 +2620068,Cute Apartment with Great Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77107,-73.95682,Entire home/apt,117,30,6,2019-03-31,0.11,29,255 +2620837,Spacious room in huge loft,4691967,Mark,Brooklyn,Bushwick,40.70065,-73.93862,Private room,50,5,5,2017-09-05,0.12,1,0 +2626457,Cozy Private Room Upper West Side - with Deck!,13451102,Ronnie,Manhattan,Upper West Side,40.79827,-73.96881,Private room,80,1,254,2019-06-23,4.02,1,118 +2627737,"Large Sunny Apt, Great Location!",3881345,Conall,Brooklyn,Prospect Heights,40.67318,-73.96738,Entire home/apt,100,5,10,2016-10-13,0.16,1,0 +2627940,Garden Appartment in Clinton Hill,2818232,Jas,Brooklyn,Fort Greene,40.68661,-73.97054,Entire home/apt,225,3,12,2017-04-16,0.19,1,0 +2627951,Cozy private space in a brand new apartment,4045120,Guyen,Brooklyn,Flatbush,40.64851,-73.96121,Private room,70,1,7,2019-07-01,2.21,1,176 +2628191,Charming Cozy Cool 2BR Apartment. ,12360441,Angel,Bronx,Co-op City,40.86646,-73.82154,Private room,80,3,2,2015-10-13,0.03,1,365 +2631224,Tasteful Room in Charming Two Bedroom Apartment,6243156,Yoni,Manhattan,Harlem,40.82424,-73.94664,Private room,70,2,228,2019-07-06,4.27,1,247 +2632699,Budge private room F,10384906,Susan,Brooklyn,Borough Park,40.63081,-73.99638,Private room,31,1,60,2019-04-01,0.97,5,158 +2633717,Private room in friendly Brownstone,13486605,Rachael And Christopher,Brooklyn,Bushwick,40.69616,-73.93201,Private room,40,1,25,2018-09-15,0.39,1,0 +2634963,North Central Park Apartament,9482259,Radu,Manhattan,Harlem,40.80029,-73.95362,Entire home/apt,290,4,12,2019-07-07,0.20,1,359 +2635078,"GREAT 2bed/2bath/patio, FORT GREENE",1821771,Daria,Brooklyn,Fort Greene,40.68914,-73.9776,Entire home/apt,235,4,23,2019-06-21,0.36,1,31 +2635794,"room in a two bedroom apt, whole apartment",13496782,Nicole,Brooklyn,Williamsburg,40.70719,-73.96407,Entire home/apt,200,1,2,2016-12-12,0.06,1,0 +2635913,beautiful 2br 2bath 2 balconies. ,13497325,Octavio,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94184,Entire home/apt,180,1,0,,,1,0 +2636139,Sunny apt steps from Prospect Pk!,7250500,Heather,Brooklyn,South Slope,40.66141,-73.98097,Entire home/apt,110,1,5,2019-04-28,0.88,1,85 +2636396,Private room in in East Village,13499885,Arash,Manhattan,East Village,40.72839,-73.98613,Private room,120,3,5,2016-05-30,0.09,2,0 +2636532,GORGEOUS Newly-Renovated 2-BR Flat,13347167,AFI Apartments,Manhattan,Upper East Side,40.77278,-73.95753,Entire home/apt,142,30,1,2016-08-13,0.03,29,205 +2636534,Cozy Room in Lower East Side- NYC,4274857,Helena,Manhattan,Lower East Side,40.72073,-73.98954,Private room,105,3,21,2019-07-02,0.33,3,20 +2636643,darling small studio,13501034,Tanya,Manhattan,Upper East Side,40.78061,-73.9498,Entire home/apt,100,10,4,2015-11-06,0.06,1,0 +2636731,Private room in Hell's Kitchen,13295673,João,Manhattan,Hell's Kitchen,40.76503,-73.98827,Private room,102,2,6,2017-11-12,0.26,1,0 +2636762,Beautiful Prime Williamsburg Apt,8481739,David,Brooklyn,Williamsburg,40.71498,-73.96104,Entire home/apt,152,1,334,2019-06-27,5.20,1,269 +2637014,Apt #2: Beautiful 2BR/1BA Crown Hgt,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67228,-73.93352,Entire home/apt,150,28,22,2019-01-05,0.38,2,207 +2637533,Spacious Studio Suite w Adjoining Sunroom,2687435,Abby & Kurt,Queens,Ditmars Steinway,40.77594,-73.91786,Entire home/apt,95,3,25,2019-05-31,3.04,1,6 +2639521,PRIVATE RM #1 STARTING AT $67 A NIGHT,9898029,Anthony,Brooklyn,East Flatbush,40.64942,-73.92482,Private room,67,5,50,2018-09-19,0.80,5,300 +2640467,Private Room with a View in Brownstone Brooklyn,1570348,Clare,Brooklyn,Crown Heights,40.67265,-73.9485,Private room,65,2,51,2019-06-20,0.81,1,73 +2640764,Cozy Room in Williamsburg 3BR,72014,Lulú,Brooklyn,Williamsburg,40.71112,-73.96268,Private room,79,22,21,2019-06-14,0.34,4,313 +2641730,Artist’s Pad on Prospect Park,4282318,Al,Brooklyn,Flatbush,40.65403,-73.95904,Private room,55,1,151,2019-06-23,2.37,2,135 +2644321,"Bright, comfy 1 Bedroom apt in Manhattan",4294396,Angélique,Manhattan,Morningside Heights,40.8098,-73.95722,Entire home/apt,83,60,1,2016-01-08,0.02,1,0 +2645558,A bright spacious one-bedroom ,2653156,Lenny,Manhattan,Gramercy,40.73409,-73.98559,Entire home/apt,200,30,38,2019-01-14,0.65,1,170 +2650690,Carroll Gardens entire apartment,7706697,Barbara,Brooklyn,Carroll Gardens,40.67909,-73.996,Private room,150,4,0,,,2,257 +2651125,"Charming Studio / East Village, NYC",320285,Fabrizio,Manhattan,East Village,40.72816,-73.98035,Entire home/apt,160,10,18,2019-07-03,0.28,1,281 +2651810,Quiet Queens Apt in middle of NYC,13574223,Jimmy,Queens,Maspeth,40.71827,-73.90647,Entire home/apt,80,2,61,2019-06-16,3.13,1,32 +2652865,Classic Upper West Side Getaway!,9951993,Jason,Manhattan,Upper West Side,40.79592,-73.97024,Entire home/apt,159,2,1,2017-11-20,0.05,1,0 +2653186,"Bright, spacious 1BR in UES",13360423,Izumi,Manhattan,Upper East Side,40.77645,-73.94865,Entire home/apt,90,30,13,2016-04-30,0.25,1,0 +2653544,Common Area + Room in Spacious Loft-Like Apt.,157795,Madeline,Brooklyn,Crown Heights,40.67799,-73.94709,Shared room,45,4,11,2015-11-16,0.19,2,0 +2653644,Private 1BR W/ Private Bathroom in Chinatown,6991947,Peter,Manhattan,Two Bridges,40.71226,-73.99416,Private room,100,1,103,2019-06-23,2.21,1,223 +2656394,GORGEOUS LUXURY APARTMENT AND VIEW!,13596820,Michael,Brooklyn,Greenpoint,40.73282,-73.9578,Entire home/apt,125,3,16,2019-07-01,0.25,1,60 +2657689,Your Amazing Vacation Apartment!,9051298,Lydiah,Manhattan,Harlem,40.8106,-73.94647,Shared room,100,1,0,,,2,0 +2658325,"Manhattan, East Village next to Lower East Side",13604945,Fabian,Manhattan,East Village,40.721,-73.98169,Private room,80,4,143,2019-06-23,2.24,1,187 +2659183,"Luxury 5BR Townhouse, Upper East",5907325,Isabel,Manhattan,Upper East Side,40.76791,-73.96509,Entire home/apt,2300,3,32,2018-09-23,0.53,1,139 +2659448,Bedstuy Apartment for Rent,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68852,-73.93588,Entire home/apt,90,30,62,2019-06-01,1.20,3,280 +2659477,Stunning 1BR apt UES/Harlem,2294061,Kurtis,Manhattan,East Harlem,40.7913,-73.94265,Entire home/apt,140,3,2,2015-12-13,0.04,1,0 +2659732,Private room in Charming Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72561,-73.94745,Private room,52,5,7,2019-06-20,0.18,3,342 +2659961,Lovely spacious studio in LES,2319102,Alexandra,Manhattan,Chinatown,40.71675,-73.99092,Entire home/apt,200,2,9,2017-11-04,0.18,1,0 +2660538,A Photographer's Bohemian Artist Dream 1BD,13617251,Michael,Brooklyn,Williamsburg,40.70844,-73.95191,Entire home/apt,94,2,0,,,1,0 +2660576,"Come see Brooklyn, New York",13617520,Howard T.,Brooklyn,Clinton Hill,40.69172,-73.96934,Shared room,40,5,8,2015-02-25,0.13,1,0 +2661098,"New York City, a safe and (mostly) quiet place.",13621509,Renald,Queens,Rego Park,40.72786,-73.86946,Private room,55,2,12,2019-06-23,0.20,1,89 +2663243,Private Room + Balcony in Bushwick.,5352610,Mira,Brooklyn,Williamsburg,40.70585,-73.92698,Private room,69,5,6,2019-05-07,0.10,2,0 +2663296,Spacious One Bedroom in Gramercy ,13632182,Natalie,Manhattan,Gramercy,40.73657,-73.98019,Entire home/apt,200,3,6,2016-08-13,0.09,1,0 +2664975,"Cute Studio in Bushwick BK, NYC",12461367,Brittany,Brooklyn,Bushwick,40.69987,-73.92552,Entire home/apt,100,1,104,2019-06-23,1.65,1,334 +2668311,Quaint Studio Apt. $1300 monthly for one person,197156,Sofia,Brooklyn,Bay Ridge,40.63465,-74.02366,Entire home/apt,53,20,16,2019-06-02,0.27,1,220 +2669352,Cozy 3 bedroom on upper west side,13664226,Rebecca,Manhattan,Upper West Side,40.79512,-73.97092,Private room,425,3,24,2019-06-08,0.39,1,365 +2669366,"Priv. Room in a House,15min,Manhatt",13664245,Denise,Bronx,Claremont Village,40.84192,-73.91108,Private room,40,3,46,2019-05-31,0.72,2,292 +2670522,Zen Bedroom in Artist Loft in Williamsburg,13670148,Michelle,Brooklyn,Williamsburg,40.71209,-73.95196,Private room,40,2,32,2018-08-12,0.50,1,0 +2671402,"1BR - gym, laundry in apt, roof ",706191,Rachel,Brooklyn,Williamsburg,40.71639,-73.95271,Entire home/apt,150,4,0,,,1,0 +2671737,Private room in shared 2BR,8212880,Micky,Manhattan,Washington Heights,40.83677,-73.94314,Private room,65,3,1,2014-04-22,0.02,1,0 +2674267,Comfy UWS Room near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77848,-73.98334,Private room,109,1,288,2019-07-02,4.58,4,103 +2677779,Quaint Room ,8083568,Favio,Queens,Jackson Heights,40.75107,-73.87654,Private room,60,5,66,2019-05-27,1.05,1,348 +2678773,Entire spacious loft Williamsburgh,10846328,Luis,Brooklyn,Williamsburg,40.71262,-73.95292,Entire home/apt,180,3,13,2018-12-29,0.21,2,0 +2679171,"Cozy, close to everything in NY :)",1091875,Jovana,Queens,Long Island City,40.74627,-73.94666,Private room,95,2,126,2019-06-29,1.98,1,39 +2683387,Great Room In Mid Town New York NYC,11837926,Anthony,Manhattan,Midtown,40.76419,-73.98018,Private room,140,7,49,2019-06-13,0.82,3,296 +2683455,4BR Family apt 15 min to Manhattan,1273385,Cecile,Queens,Long Island City,40.74749,-73.92089,Entire home/apt,155,3,4,2015-10-13,0.07,1,0 +2683758,City Life in Harlem,13736818,John,Manhattan,Harlem,40.80494,-73.95638,Entire home/apt,105,5,132,2019-06-20,2.09,1,12 +2684223,Cozy Clean Room in Bed Stuy,4334757,Vashti,Brooklyn,Bedford-Stuyvesant,40.6821,-73.91632,Private room,45,2,53,2019-07-01,0.83,1,365 +2685701,Spectacular Williamsburg 2 BR Loft,1602568,Thomas,Brooklyn,Williamsburg,40.70934,-73.9627,Entire home/apt,330,10,1,2014-08-07,0.02,1,0 +2685844,YUGE Sunlit Furnished Room!,10621468,Mikaela,Brooklyn,Crown Heights,40.66733,-73.95667,Private room,50,30,0,,,1,281 +2686002,Large Clean Room Midtown East NYC,13749425,Juan,Manhattan,Midtown,40.75413,-73.96792,Private room,100,2,198,2019-06-09,3.10,1,305 +2686412,Clinton Hill BdRm in Artists' Home,13384586,Julie,Brooklyn,Clinton Hill,40.68274,-73.96487,Private room,49,3,74,2019-06-17,1.16,1,284 +2687083,Cozy 1Bdr in Bed Stuy/Clinton Hill,5283121,Sarah,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95033,Entire home/apt,65,1,1,2018-08-14,0.09,1,98 +2687375,Queen Size Foam Mattress,10264372,Tyrell,Manhattan,Harlem,40.82305,-73.93739,Private room,70,1,6,2015-10-12,0.11,1,0 +2687606,Spacious Gramercy 1bdrm. Clean!,3016371,Daniel,Manhattan,Gramercy,40.73701,-73.98242,Entire home/apt,180,3,7,2018-12-30,0.11,1,0 +2690370,Spectacular Views of Mid-Town,480923,Diane,Queens,Long Island City,40.74606,-73.95765,Entire home/apt,130,30,1,2014-08-04,0.02,1,0 +2694274,Fort Greene 2 bedroom Apartment,13788158,Amir,Brooklyn,Fort Greene,40.69265,-73.97009,Entire home/apt,225,3,95,2019-06-21,1.51,2,112 +2694916,BREATHTAKING VIEWS! POOL/GYM ** Central Park,13773574,Cecile,Manhattan,Hell's Kitchen,40.76711,-73.98371,Entire home/apt,225,30,0,,,12,343 +2695367,Bright spacious 3bd; near subways and bus,13795689,Juliette,Manhattan,Washington Heights,40.84203,-73.93985,Private room,85,2,24,2019-06-28,0.63,1,318 +2695372,Charming Studio in Gramercy ,13795760,Eliza Love,Manhattan,Kips Bay,40.74035,-73.98114,Entire home/apt,125,2,0,,,2,0 +2695469,W50's Sunny Studio in a 24/7 DM BL,3038687,Karen,Manhattan,Hell's Kitchen,40.76479,-73.98455,Entire home/apt,99,30,8,2019-05-01,0.14,8,107 +2698645,Just 3 Minutes to Midtown! Live like a NYer!,10851687,Arya,Queens,Long Island City,40.74332,-73.95426,Private room,95,2,185,2019-06-30,2.92,1,140 +2698984,Huge Modern Waterfront Home,13811875,Grace,Queens,Whitestone,40.79721,-73.816,Entire home/apt,400,3,7,2018-09-04,0.15,1,281 +2700296,Sunny Bedroom for two,13792543,Gregory,Manhattan,Harlem,40.8084,-73.95123,Private room,99,3,81,2019-07-01,1.28,3,307 +2700596,Comfortable bedroom for one person,13792543,Gregory,Manhattan,Harlem,40.80697,-73.95203,Private room,85,3,100,2019-06-30,1.60,3,341 +2702351,"Spacious, Safe, and Furnished",13829968,Jonathan,Manhattan,Harlem,40.82907,-73.94939,Entire home/apt,90,5,16,2019-06-08,0.25,1,3 +2702489,Charming Entire ❤️ apartment,13830544,Renee,Brooklyn,Bushwick,40.69574,-73.93111,Entire home/apt,85,5,32,2019-06-16,0.66,3,38 +2707194,Large Sunny Apartment,159726,Tina,Manhattan,Washington Heights,40.83482,-73.94617,Entire home/apt,130,6,5,2014-08-20,0.08,1,0 +2707824,Bedroom with Queensize Bed in Nolita/SoHo,8373183,Arash,Manhattan,Nolita,40.72173,-73.99383,Private room,95,1,32,2018-09-09,0.75,1,0 +2708371,Factory Converted 1BR Loft Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72595,-73.94143,Entire home/apt,149,30,2,2017-07-03,0.08,52,341 +2710417,Cosy One Bedroom in Greenpoint,4341057,Nicole,Brooklyn,Greenpoint,40.72812,-73.94704,Entire home/apt,225,7,2,2015-10-29,0.04,1,0 +2710442,"Charming studio, great location!!!",13871213,Monica,Brooklyn,Williamsburg,40.70666,-73.9506,Entire home/apt,135,2,2,2015-04-14,0.03,1,0 +2711082,Beautiful Home by Central Park,9854463,Ed,Manhattan,Hell's Kitchen,40.7678,-73.9868,Entire home/apt,140,2,41,2017-11-14,0.73,1,0 +2713887,Furnished Studio UES near the Met,13888072,Will,Manhattan,Upper East Side,40.77518,-73.95618,Entire home/apt,200,5,4,2018-09-29,0.07,1,0 +2714699,Sunny Flex 2br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72713,-73.94141,Entire home/apt,159,30,7,2019-01-07,0.12,52,327 +2716009,Large Two Bedroom Brooklyn Loft,3964453,Naz,Brooklyn,Red Hook,40.67795,-74.00747,Entire home/apt,200,2,17,2019-07-03,1.68,1,81 +2716889,Apt #1: 2BR/1BA w/ Backyard,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67203,-73.93494,Entire home/apt,155,28,23,2018-11-03,0.36,2,336 +2716929,Room In Duplex Apartment Steps to Prospect Park!,13903103,Patrizza,Brooklyn,South Slope,40.66481,-73.97807,Entire home/apt,125,150,18,2014-10-13,0.29,1,0 +2719640,"Independant Suite in townhouse: Big, Bright & Calm",6586128,Martine,Bronx,Port Morris,40.80091,-73.91449,Private room,71,4,18,2018-12-30,0.37,2,45 +2719792,"Perfect location, Bushwick Full room in 2 room apt",13917921,Robert,Brooklyn,Bushwick,40.69895,-73.93249,Private room,75,2,26,2019-06-18,1.22,2,266 +2721610,Cozy and quiet 2bd on the UES,13262455,Bridget,Manhattan,Upper East Side,40.77107,-73.95322,Entire home/apt,275,3,7,2017-01-01,0.11,3,157 +2722391,Beautiful Room In Williamsburg ,13931194,Daniel,Brooklyn,Williamsburg,40.70024,-73.95047,Private room,70,7,0,,,1,0 +2722693,Luxury High Rise Near Central Park,3280997,Scott,Manhattan,Theater District,40.76351,-73.98431,Entire home/apt,250,1,1,2014-05-05,0.02,1,0 +2722983,GREAT FOR FAMILIES AND GROUPS!!!,8489537,Tony,Brooklyn,Williamsburg,40.70404,-73.93496,Entire home/apt,200,2,129,2019-07-04,2.03,1,64 +2723019,Cozy & modern 1 br apt in Brooklyn,13934498,Herby,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95688,Entire home/apt,90,30,3,2018-03-02,0.08,1,311 +2723338,Peaceful Bedroom in Brooklyn,13933851,Yagil,Brooklyn,Bedford-Stuyvesant,40.69026,-73.92701,Private room,50,4,2,2018-01-01,0.09,2,0 +2723515,Stylish Pre-war,9652075,Devin,Brooklyn,Clinton Hill,40.69418,-73.9677,Entire home/apt,124,4,65,2019-07-01,1.06,1,165 +2723554,Studio apartment Chelsea NYC,13937830,Jenniffer,Manhattan,Chelsea,40.73942,-73.99629,Entire home/apt,110,25,0,,,1,0 +2727166,Cozy Room by Kaufman Studios,136352,Fotis,Queens,Astoria,40.7558,-73.92377,Private room,50,5,37,2019-04-22,0.59,1,313 +2727766,Convenient Private Room in Spanish Harlem (SpaHa),4992804,Zachary,Manhattan,East Harlem,40.79121,-73.94793,Private room,75,2,1,2014-04-17,0.02,1,0 +2728293,East Village w/ Private Bathroom & Roof & Elevator,12511213,Vijay,Manhattan,East Village,40.7221,-73.98259,Private room,90,4,1,2016-06-13,0.03,1,0 +2730497,Entire Private Garden Floor of Brownstone,13974214,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68058,-73.93856,Entire home/apt,130,3,92,2019-06-19,1.45,1,248 +2735650,DISCOUNTED Entire Apt: Prime UWS location!,13968910,Mike,Manhattan,Upper West Side,40.79496,-73.97349,Entire home/apt,140,1,19,2018-08-08,0.30,1,0 +2736911,"Full apt-Brooklyn-near park, SUNNY!",3758251,Sarah,Brooklyn,Kensington,40.64468,-73.97208,Entire home/apt,200,3,2,2014-10-12,0.03,1,0 +2738377,Carroll Gardens Brownstone,14011859,Ann,Brooklyn,Carroll Gardens,40.68322,-73.99248,Entire home/apt,350,5,6,2016-08-28,0.12,1,0 +2739420,"Cheerful 1 BD in Harlem, New York",3130728,Sarah,Manhattan,Harlem,40.80966,-73.94711,Entire home/apt,100,2,23,2016-12-11,0.39,1,0 +2739577,Current Location,12082653,Taylor,Queens,Long Island City,40.7625,-73.93919,Entire home/apt,225,1,1,2014-05-29,0.02,1,0 +2739707,Vintage Bed/Bath in Bed-Stuy,12449641,Heather,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93055,Private room,65,1,3,2016-05-18,0.07,2,0 +2739793,Modern Sunny 2-Bedroom in Bushwick,14019268,Seth,Brooklyn,Bushwick,40.69686,-73.93042,Entire home/apt,145,5,171,2019-07-01,2.75,2,275 +2739884,Lovely Time Square/Theater District,3417714,Cong,Manhattan,Hell's Kitchen,40.75927,-73.99223,Entire home/apt,189,5,14,2016-06-02,0.25,1,0 +2739978,Spacious Downtown Apartment,14020493,Eva,Manhattan,Greenwich Village,40.73085,-73.99421,Entire home/apt,265,3,6,2018-10-12,0.10,1,29 +2743624,Luxury 2 BEDS/2 BATH Midtown/Central Park,8511789,Marie-Christine,Manhattan,Midtown,40.76544,-73.98186,Entire home/apt,409,1,3,2016-09-11,0.05,1,0 +2744106,BKLYN private room w/ private bath!,12958562,Olivia,Brooklyn,Fort Greene,40.69226,-73.98056,Private room,95,4,12,2017-11-12,0.19,1,0 +2744185,"PRIVATE, GIGANTIC full floor loft w/priv bath",2739598,Sandy,Manhattan,Harlem,40.81677,-73.94371,Private room,175,3,89,2019-05-28,1.41,1,324 +2745620,Small Room Astoria20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.77138,-73.90895,Private room,55,1,115,2019-06-23,1.82,5,30 +2748064,"Spacious 1 bedroom, prime location.",6055938,Al,Manhattan,Hell's Kitchen,40.7645,-73.99314,Entire home/apt,200,4,36,2019-06-08,0.57,1,248 +2748094,Union Square spacious studio,14058714,Craig,Manhattan,East Village,40.73243,-73.98906,Entire home/apt,200,5,51,2019-06-23,0.81,1,88 +2748128,The Haven 2beds,11757212,Jasmine,Brooklyn,Bushwick,40.6982,-73.92852,Private room,69,1,159,2019-06-24,2.89,4,280 +2751311,Beautiful Large Williamsburg Studio,2153455,Rachel,Brooklyn,Williamsburg,40.71813,-73.95869,Entire home/apt,135,5,33,2019-07-06,0.53,1,76 +2752977,Carroll Gardens townhouse,14081811,Linda,Brooklyn,Carroll Gardens,40.68009,-74.00009,Entire home/apt,325,4,12,2018-08-10,0.20,1,0 +2754006,Cool apt in the BEST location in NYC!,933263,Michelle,Manhattan,Lower East Side,40.71542,-73.98511,Private room,95,2,267,2019-06-23,4.20,1,18 +2754179,Fabulous Apt w/ Gorgeous Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77249,-73.95756,Entire home/apt,117,30,3,2018-01-04,0.09,29,298 +2755909,Cozy sunny Apt in NYC,3447539,Nick,Manhattan,Washington Heights,40.84915,-73.93848,Private room,59,30,65,2019-06-06,1.33,2,99 +2756159,Living Room sofa Bed in Chelsea2,12750945,Luis,Manhattan,Chelsea,40.74389,-73.99835,Shared room,85,2,65,2019-06-23,1.03,4,171 +2757036,Bayview room,14103991,Ruth,Queens,Flushing,40.75606,-73.81954,Private room,55,1,51,2019-05-26,0.82,4,333 +2760968,Sunny Room in the Heart of it All!,14120733,Lisa,Brooklyn,Williamsburg,40.71614,-73.96134,Private room,80,2,349,2019-06-17,5.54,1,13 +2761766,Spacious apt. in Brownstone,2155360,Evan,Brooklyn,Park Slope,40.66587,-73.97881,Entire home/apt,115,13,2,2016-03-23,0.04,1,0 +2763206,COZY PRIVATE BR AT59TH ST MANHATTAN,14133008,Lisa,Manhattan,Midtown,40.75967,-73.96595,Private room,78,12,43,2019-04-29,0.74,1,49 +2764516,East Village Manhattan NYC Bedroom!,2208993,Chris,Manhattan,East Village,40.72278,-73.98497,Private room,150,3,38,2019-06-17,0.60,3,357 +2769718,Bright and spacious 2 bed apartment,14163479,Yulia,Brooklyn,Park Slope,40.67736,-73.98084,Entire home/apt,195,5,3,2016-10-27,0.05,1,0 +2771126,Large Loft in Brooklyn w/ Deck,2333018,Max,Brooklyn,Clinton Hill,40.68998,-73.96072,Entire home/apt,142,10,8,2019-01-03,0.13,1,157 +2771877,Central Park Treasure,14174901,Anasha,Manhattan,Upper West Side,40.78694,-73.97384,Entire home/apt,150,20,0,,,1,0 +2772111,It's very warm and friendly.,14176488,Ada Azra,Bronx,Fordham,40.86705,-73.88545,Shared room,55,7,10,2018-10-13,0.16,1,365 +2773754,Lovely 1-bedroom on Prospect Park,3883648,Jenn,Brooklyn,Windsor Terrace,40.66044,-73.97977,Entire home/apt,97,30,5,2019-06-15,0.12,1,282 +2774381,Brooklyn Studio,1253739,Ariana,Brooklyn,Flatbush,40.64602,-73.95964,Entire home/apt,70,20,11,2018-12-30,0.21,1,211 +2774934,Females only for midtown apt share,1866728,Jeani,Manhattan,Upper West Side,40.77024,-73.98746,Shared room,70,1,225,2019-07-07,3.53,1,262 +2775553,Experience ELEGANT LIFESTYLE,9421493,Frances,Manhattan,Upper West Side,40.77852,-73.98577,Private room,155,5,24,2018-10-14,0.40,1,88 +2776119,Studio Apt Avail - Convenient to City & Hot Spots,14197781,Bruce,Brooklyn,Bedford-Stuyvesant,40.69707,-73.93914,Entire home/apt,68,30,3,2016-12-13,0.09,1,0 +2778250,Queen size bedroom with river view! (Female only),4417252,Amina,Manhattan,Harlem,40.83252,-73.94916,Private room,68,9,31,2019-06-22,0.61,1,129 +2781747,Beautiful brownstone apartment,309329,Eilon,Brooklyn,Carroll Gardens,40.68235,-74.00047,Entire home/apt,150,2,52,2019-07-01,1.33,1,53 +2782449,1BD on Smith St. in Carroll Gardens,621971,Ethan,Brooklyn,Carroll Gardens,40.68238,-73.99481,Entire home/apt,150,4,0,,,1,0 +2783468,Nice 1 Bedroom in Lovely Building,3187645,Ken,Manhattan,Upper East Side,40.77349,-73.95137,Entire home/apt,150,6,1,2014-04-28,0.02,1,0 +2784311,"1 Bedroom East Village, NYC",10870477,Henriette,Manhattan,East Village,40.72105,-73.9814,Private room,100,1,1,2018-05-25,0.07,1,365 +2786015,Comfortable Strivers Row Hideaway - Monthly Rental,8925763,Joy,Manhattan,Harlem,40.81781,-73.94577,Entire home/apt,110,30,101,2019-03-09,1.61,2,331 +2788298,Fort Greene Perfect Location,14262697,Eric,Brooklyn,Fort Greene,40.69056,-73.98038,Entire home/apt,150,3,1,2015-05-19,0.02,1,0 +2789713,New- Downtown Brooklyn Apt- 10 min Manhattan,14269155,Stephen,Brooklyn,Boerum Hill,40.68671,-73.98952,Entire home/apt,160,5,0,,,1,24 +2791446,CUTE Studio in the heart of Chelsea,7069480,Marc,Manhattan,Chelsea,40.74309,-73.99436,Entire home/apt,218,6,53,2019-07-01,0.90,1,304 +2791688,Downtown NYC Soho Loft 2br,4731948,Kiki,Manhattan,Nolita,40.72106,-73.99417,Entire home/apt,430,1,24,2019-05-22,0.38,4,14 +2791758,Bright Modern Room with Balcony and City Views,2637408,Chris,Brooklyn,Williamsburg,40.71173,-73.94955,Private room,79,3,115,2019-07-01,2.83,2,111 +2791797,Greenwich Village Chic Cottage,9031632,Martina,Manhattan,West Village,40.73571,-74.00375,Entire home/apt,120,1,58,2019-06-23,0.91,1,99 +2793004,Sunny Brooklyn Heights Apartment,14285627,Norman,Brooklyn,Brooklyn Heights,40.69297,-73.99758,Entire home/apt,200,5,42,2018-06-08,0.67,1,15 +2793630,Gorgeous Loft in Prime Location 2 with Rooftop,14289427,Francesca,Manhattan,Chinatown,40.71418,-73.99295,Private room,120,5,12,2018-10-17,0.19,3,0 +2793740,East Village loft; authentic NY.,9509125,Leo,Manhattan,East Village,40.72266,-73.98337,Private room,250,3,0,,,1,365 +2793834,Central Park beauty,14290739,Stanton,Manhattan,Upper West Side,40.79194,-73.96913,Entire home/apt,200,30,28,2018-01-15,0.45,3,0 +2794725,LOOK! Attached single family,14295613,Skylar,Staten Island,Clifton,40.62578,-74.07356,Entire home/apt,75,1,1,2014-04-19,0.02,1,0 +2794734,Spacious brownstone parlour ,2343136,Tyson,Brooklyn,Cobble Hill,40.68811,-73.99421,Entire home/apt,175,1,2,2015-04-26,0.03,1,0 +2794762,Beautiful Sunny fully Furnished Studio,251842,Virginie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.93876,Entire home/apt,76,31,1,2017-04-28,0.04,1,333 +2799360,Beautiful 1 Bed - Great Transport Links,14317804,Samantha,Manhattan,Upper West Side,40.78414,-73.9783,Entire home/apt,75,1,2,2018-02-22,0.10,1,0 +2801214,Huge duplex in chic area of BK with deck.,14325632,Sil,Brooklyn,Crown Heights,40.67301,-73.95312,Entire home/apt,400,30,22,2015-02-22,0.35,2,171 +2801300,cozy room /female guests,14103991,Ruth,Queens,Flushing,40.75611,-73.81957,Private room,75,1,48,2019-06-23,0.77,4,355 +2803013,Columbus Circle/Central Park - WIFI,8497788,Cyn,Manhattan,Hell's Kitchen,40.7642,-73.99133,Entire home/apt,189,3,1,2014-10-04,0.02,1,0 +2803944,Lovely Private Bedroom in 2BR Apt,3181226,Emily,Queens,Woodside,40.74235,-73.90375,Private room,55,1,1,2015-09-05,0.02,1,0 +2803981,Room in Duplex Apartment!!,11330223,Ger,Brooklyn,Williamsburg,40.71389,-73.9657,Private room,80,5,11,2016-05-22,0.18,1,0 +2804065,Chic Mid Century Modern 1 BD +Gym +Laundry +AC,14343538,Cash,Brooklyn,Bushwick,40.70012,-73.93062,Private room,69,3,19,2017-11-24,0.31,1,238 +2804557,Cozy bedroom in shared 2br apt,8741682,Ines,Manhattan,Morningside Heights,40.80504,-73.96454,Private room,100,4,1,2015-04-25,0.02,1,0 +2804989,"Sunny, colorful, 1BD close to city ",2918667,Neisha,Queens,Sunnyside,40.74405,-73.91502,Entire home/apt,100,1,1,2014-05-27,0.02,1,0 +2805293,Large & Stunning 5th Ave 1 BR,5225737,Brandon,Manhattan,West Village,40.7339,-74.00177,Entire home/apt,300,5,19,2019-01-02,0.30,1,219 +2806791,PRIVATE ROOM IN NEW YORK MANHATTAN,11725608,Juan,Manhattan,Washington Heights,40.83333,-73.94182,Private room,53,3,209,2019-07-03,3.29,2,117 +2807615,1 bedroom in the heart of the UWS,14361027,Matthew,Manhattan,Upper West Side,40.78882,-73.97945,Entire home/apt,179,2,15,2017-05-20,0.26,1,0 +2807939,Ditmas Park 1BR,14362628,Michael,Brooklyn,Flatbush,40.6435,-73.96065,Entire home/apt,100,8,0,,,1,0 +2814076,Charming 1br apartment in Astoria,6364557,Fernando,Queens,Astoria,40.7576,-73.92698,Entire home/apt,130,4,45,2019-06-16,0.82,1,170 +2814931,Large New York style loft ,14399467,Caroline,Bronx,Port Morris,40.80554,-73.92606,Entire home/apt,120,4,89,2017-11-11,1.54,2,0 +2816152,Bright/Sunny/1block from Bedfordsub,2739024,Jerome,Brooklyn,Greenpoint,40.7202,-73.95191,Private room,150,7,25,2017-11-12,0.42,1,16 +2817967,Beautiful Studio Suite! Upper East,13347167,AFI Apartments,Manhattan,Upper East Side,40.77125,-73.95735,Entire home/apt,105,30,5,2019-03-23,0.09,29,265 +2818471,Sunny Bedford Stuyvesant Townhouse,7850260,Raymond,Brooklyn,Bedford-Stuyvesant,40.68576,-73.92211,Entire home/apt,150,1,197,2019-07-01,3.19,3,209 +2821079,Spacious 1 BR apt in the UWS,2333304,Roger,Manhattan,Upper West Side,40.77589,-73.98188,Entire home/apt,200,1,1,2014-07-15,0.02,1,0 +2821294,Beautiful Furnished Room!,5986790,Gen,Manhattan,Washington Heights,40.83418,-73.94274,Private room,39,30,18,2019-05-27,0.30,6,168 +2821782,"Sunny, ample, quiet w/balcony!",14435551,Denise,Manhattan,Harlem,40.8068,-73.94258,Entire home/apt,67,5,6,2017-08-17,0.12,1,0 +2823023,"Cozy One Bedroom + Loft in Manhattan, NYC",14441566,Paula,Manhattan,Midtown,40.76147,-73.9761,Entire home/apt,200,4,7,2019-06-24,0.93,1,32 +2824329,Spacious Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94136,Entire home/apt,129,30,3,2015-11-06,0.05,52,336 +2825322,nice room in bedstuy D,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95136,Private room,55,1,67,2019-06-28,1.11,15,307 +2830518,"Safe Clean Sunny, 15 min Manhattan",11363157,Delia,Queens,Astoria,40.76123,-73.92177,Private room,65,50,30,2015-11-15,0.48,1,198 +2831424,Cozy Studio On The Upper East Side,12795393,Bee,Manhattan,Upper East Side,40.77065,-73.95495,Entire home/apt,100,3,18,2016-10-04,0.29,1,0 +2833998,Clean apartment at Harlem 125/lenox.,3289988,Emilie,Manhattan,Harlem,40.80925,-73.94226,Private room,55,5,0,,,1,90 +2835159,Large studio,7915183,Alfonso,Manhattan,Midtown,40.75546,-73.96762,Entire home/apt,240,1,1,2014-05-19,0.02,1,0 +2835711,"Sunny West Village apt, 2 beds",3237504,Aspen,Manhattan,Greenwich Village,40.73083,-74.0006,Entire home/apt,150,3,33,2019-05-31,0.52,1,107 +2835738,Apt Lincoln Center And Central Park! Best location,2074433,Anna,Manhattan,Upper West Side,40.77397,-73.98242,Entire home/apt,299,2,155,2019-06-21,2.46,1,267 +2836845,Old World Elegance in Astoria!,10987233,Anastasia,Queens,Ditmars Steinway,40.77297,-73.91604,Entire home/apt,160,2,175,2019-07-01,2.78,1,269 +2838061,Charming Bedroom in renovated Apart,14518375,Chriis,Manhattan,East Harlem,40.78833,-73.94888,Private room,299,1,0,,,1,365 +2838354,"Large 1-bedroom, 2 blocks from park",8867917,Steven,Brooklyn,Prospect Heights,40.67446,-73.96324,Entire home/apt,99,17,0,,,1,0 +2845257,Stunning 2BR Penthouse w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72733,-73.9404,Entire home/apt,199,30,5,2019-06-01,0.08,52,311 +2847633,"Charming, central apartment",3864482,Erin,Manhattan,Greenwich Village,40.72842,-73.99903,Private room,100,1,34,2016-09-18,0.55,1,0 +2847652,Cool and comfortable room for rest and relaxation,3056690,Gilberto,Manhattan,Washington Heights,40.83687,-73.94324,Private room,45,4,120,2019-06-24,1.92,1,53 +2848235,Perfect room for one in beautiful home,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85711,-73.91594,Private room,44,2,135,2019-06-16,2.13,4,70 +2851945,Stylish Spacious w Lrge Deck 11231,14582705,S,Brooklyn,Carroll Gardens,40.68108,-73.99381,Entire home/apt,150,2,0,,,1,0 +2854050,Cozy bedroom in the heart of Bushwick,6194657,Sylvia,Brooklyn,Bushwick,40.69727,-73.92373,Private room,100,20,0,,,1,0 +2856036,"Modern Loft, Large Private Terrace.",14601436,Andrea,Manhattan,Lower East Side,40.71484,-73.98977,Entire home/apt,185,5,4,2018-09-29,0.08,1,0 +2856478,Charming Fort Greene 2 BR,6064963,Sarah,Brooklyn,Fort Greene,40.68879,-73.97589,Entire home/apt,150,3,0,,,1,0 +2856770,Family Friendly 3 bedroom 2 bath w. Washer/Dryer,14565422,Janelle,Manhattan,East Harlem,40.78587,-73.94764,Entire home/apt,650,2,67,2019-06-23,1.76,2,283 +2856890,Gay Friendly Room Williamsburg NYC,13759034,Patrick,Brooklyn,Williamsburg,40.71055,-73.95553,Private room,100,2,11,2015-10-05,0.18,1,0 +2858010,☀️Sunny Central Park North☀️,14611970,Chad,Manhattan,Harlem,40.80005,-73.95212,Private room,111,3,104,2019-06-23,1.65,1,317 +2862900,Charming & Bright Studio @ W 50's,3716641,Ofer,Manhattan,Hell's Kitchen,40.76634,-73.98719,Entire home/apt,99,30,8,2018-07-09,0.19,8,139 +2863223,Cozy Room with Private Entrance,14586041,Louie,Brooklyn,Williamsburg,40.70665,-73.95067,Private room,75,7,18,2015-08-12,0.31,1,87 +2863408,Newly Renovated Modern 1-Bed Studio,13347167,AFI Apartments,Manhattan,Upper East Side,40.77233,-73.95627,Entire home/apt,103,30,3,2018-04-07,0.06,29,336 +2863530,APPARTEMENT 2 CHAMBRES ASTORIA NY,14636480,Ilda,Queens,Astoria,40.77182,-73.93129,Entire home/apt,130,4,56,2019-06-15,1.55,1,0 +2863589,Entire Private Modern Studio UPW Manhattan,3716641,Ofer,Manhattan,Upper West Side,40.79193,-73.97443,Entire home/apt,109,30,20,2019-06-07,0.34,8,90 +2863696,Live in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.7196,-73.96335,Private room,95,3,0,,,3,0 +2864637,Ting Ting's Home in Heart of Brklyn,14641776,Ting,Brooklyn,Fort Greene,40.69053,-73.9791,Entire home/apt,100,5,3,2015-05-01,0.05,1,0 +2865117,Huge and beautiful Park Slope Apt,3543836,Glenn,Brooklyn,Park Slope,40.66977,-73.98305,Entire home/apt,155,29,5,2017-08-31,0.08,1,59 +2867115,Room for Rent - Close to City & Clean,14655604,Caitlin,Queens,Sunnyside,40.74547,-73.93184,Private room,60,2,55,2019-06-02,2.64,1,118 +2867463,Brooklyn Brownstone - Prospect Park,13601944,Mark,Brooklyn,South Slope,40.66372,-73.97793,Entire home/apt,195,6,11,2018-07-22,0.18,1,13 +2870603,One Bedroom Apartment,14204809,Alwin,Queens,Jackson Heights,40.75625,-73.87542,Entire home/apt,69,6,78,2019-06-22,1.25,1,30 +2870840,Cozy private room in beautiful apt,1668930,Julio,Manhattan,Washington Heights,40.85084,-73.94125,Private room,72,2,65,2019-06-03,1.05,1,311 +2872288,3 BR duplex with huge backyard,14680576,Cristina,Brooklyn,Crown Heights,40.67007,-73.94729,Entire home/apt,300,2,13,2018-09-08,0.24,1,224 +2872353,Modern 1-Bed Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77105,-73.95727,Entire home/apt,119,30,4,2019-06-08,0.13,29,339 +2874695,Pvt Bedroom in Williamsburg Central,164781,Sine,Brooklyn,Williamsburg,40.71242,-73.96793,Private room,100,30,5,2018-09-30,0.09,1,296 +2874932,The Notorious B.N.B. { The Erhart II },1177497,Jessica,Brooklyn,Clinton Hill,40.6907,-73.96732,Private room,199,1,72,2019-06-08,1.14,11,363 +2875923,"Cozy, Clean, Spacious Apartment!",9638204,Teresa,Manhattan,Harlem,40.82149,-73.93718,Private room,75,1,3,2019-05-19,0.33,2,126 +2876055,Williamsburg Room - 2 Blocks to L Train,5317082,Kells,Brooklyn,Williamsburg,40.71376,-73.94239,Private room,100,21,62,2019-06-30,1.22,2,96 +2879157,Family Friendly Apt,6122006,Allison,Manhattan,Morningside Heights,40.81153,-73.95856,Entire home/apt,125,2,27,2019-06-16,1.00,2,0 +2880336, quaint apartment with city views,14720647,Christian,Queens,Ridgewood,40.71046,-73.91786,Entire home/apt,95,5,25,2015-12-25,0.40,1,0 +2880806,2B & Private Garden A Williamsburg Spacious Escape,1240820,Triny,Brooklyn,Williamsburg,40.71923,-73.95684,Entire home/apt,295,2,110,2019-07-05,1.74,3,151 +2880864,Awesome Apartment in Astoria,14723162,Hugh,Queens,Astoria,40.77162,-73.92626,Private room,149,1,10,2018-10-08,0.17,1,365 +2882666,"UWS Large clean 1Br entire apt, 2 stops fromTiMESQ",6964353,Patricia,Manhattan,Upper West Side,40.79972,-73.96418,Entire home/apt,150,10,6,2016-06-29,0.10,1,0 +2883054,Urban Holiday...,5117939,Shanti,Brooklyn,Crown Heights,40.67335,-73.91881,Entire home/apt,100,5,177,2019-07-01,2.87,1,214 +2887581,June sublet in Prospect Heights,4119786,Shimrit,Brooklyn,Prospect Heights,40.67353,-73.96505,Private room,45,20,0,,,2,0 +2887761,Quiet & Central West Village Artist’s 2 Bedroom,14554858,Sara,Manhattan,West Village,40.72965,-74.00397,Entire home/apt,385,5,44,2019-05-25,0.75,1,180 +2888088,Private space in Brooklyn,14759766,Jerry,Brooklyn,Flatbush,40.6435,-73.96208,Entire home/apt,87,2,132,2019-06-14,3.31,2,233 +2888877,"Sunny, clean studio.",14763882,Paulo,Manhattan,Kips Bay,40.74288,-73.9803,Entire home/apt,180,4,5,2015-11-03,0.10,1,184 +2889377, garden view / female guest ,14103991,Ruth,Queens,Flushing,40.75494,-73.81818,Private room,59,2,48,2019-06-22,0.78,4,185 +2889387,New York City near Staten Is. Ferry,2269517,Rob&Elle,Staten Island,St. George,40.6427,-74.08001,Private room,95,2,234,2019-06-30,3.74,1,264 +2889781,Holidays in Manhattan ,14724243,Inga,Manhattan,Upper East Side,40.77291,-73.95176,Entire home/apt,130,25,3,2018-07-18,0.05,1,161 +2895511,Historic Bed-Stuy,14291250,Alexandra,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91624,Entire home/apt,120,5,136,2019-06-30,2.20,1,254 +2895820,Quiet Room in Central Location,5454390,Tracy & Matt,Manhattan,East Village,40.73362,-73.9892,Private room,113,2,255,2019-07-07,4.05,1,41 +2896760,"Safe, cozy & minutes to NYC",3339701,Angelo,Queens,Ditmars Steinway,40.77503,-73.91882,Private room,60,1,135,2019-06-16,2.14,4,309 +2897507,Private Room in Cozy Brooklyn Apt. for Female,9840901,Anna,Brooklyn,Bedford-Stuyvesant,40.68105,-73.95783,Private room,40,7,16,2019-05-18,0.50,1,221 +2897714,Amazing and Large Modern Studio,7853680,Nesrine,Manhattan,Murray Hill,40.74923,-73.97849,Entire home/apt,250,5,2,2015-04-22,0.03,1,0 +2899082,"Large, Bright Williamsburg Loft",7321253,Kathryn,Brooklyn,Williamsburg,40.71853,-73.96287,Entire home/apt,150,3,0,,,1,0 +2904330,Spectacular Prospect Heights Loft,4123046,Julie,Brooklyn,Prospect Heights,40.68183,-73.97195,Entire home/apt,450,30,0,,,1,0 +2904571,Carroll Gardens Brooklyn Apartment ,6789600,Derek,Brooklyn,Carroll Gardens,40.67786,-73.99871,Entire home/apt,149,6,2,2015-08-07,0.04,1,0 +2906314,Sunny 1BR with Terrace/City Views,195783,Bradley,Brooklyn,Williamsburg,40.71264,-73.94017,Entire home/apt,169,4,33,2015-10-21,0.54,1,0 +2908211,"Lovely Park Slope Apt, Brooklyn",14019963,Kieran,Brooklyn,Park Slope,40.68006,-73.97759,Private room,105,2,88,2019-07-05,1.40,1,93 +2908417,Huge Room in Brooklyn Loft,10593364,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.69924,-73.94057,Private room,42,7,6,2017-09-10,0.10,1,0 +2909006,Loft Like Studio in Luxury Building,14861483,Brian,Manhattan,Battery Park City,40.7162,-74.01565,Entire home/apt,325,1,0,,,1,0 +2909461,Spacious One Bedroom in UWS,14864202,Raymond,Manhattan,Upper West Side,40.78352,-73.97482,Entire home/apt,200,1,9,2015-07-28,0.14,1,0 +2917698,Crown heights Brooklyn House NYC,263500,Claire,Brooklyn,East Flatbush,40.66411,-73.92905,Entire home/apt,160,1,44,2018-04-27,0.74,2,279 +2918225,"Central Penthouse Room, Terrace & Private Bath",1646926,Dave,Brooklyn,Williamsburg,40.71288,-73.95822,Private room,155,2,42,2016-12-11,0.67,1,0 +2918393,Beautiful Garden rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9425,Entire home/apt,151,3,34,2018-12-04,0.54,5,308 +2918732,West Chelsea Brownstone Apartment,4619132,Merrill,Manhattan,Chelsea,40.74411,-74.0029,Entire home/apt,200,1,1,2014-06-13,0.02,1,0 +2918764,Beautiful Spacious Brooklyn Room,6683775,Sophia,Brooklyn,Bushwick,40.70071,-73.92468,Private room,80,2,9,2015-10-16,0.14,1,0 +2919062,Spacious 1 Bedroom in LIC,14906518,Michael,Queens,Long Island City,40.74923,-73.94962,Entire home/apt,119,3,2,2016-10-03,0.05,1,0 +2919330,NearWilliamsburg bridge 11211 BK,14908606,Bianca,Brooklyn,Bedford-Stuyvesant,40.69572,-73.95731,Private room,5000,6,10,2016-01-02,0.16,1,363 +2919578,Artist’s Pad Prospect Park,4282318,Al,Brooklyn,Flatbush,40.65387,-73.95973,Private room,45,1,91,2019-06-22,1.58,2,99 +2919885,"Spacious, Sunny 2BR near subway",7229763,Robert And Zafir,Brooklyn,East Flatbush,40.65267,-73.9485,Entire home/apt,115,7,5,2016-03-24,0.08,1,0 +2922197,Furnished privte room,1447684,Rosa,Brooklyn,Greenpoint,40.73026,-73.95513,Private room,65,1,56,2019-05-07,1.06,3,269 +2924528,Spacious room in the heart of Manhattan (Downtown),14932802,Winona,Manhattan,Chinatown,40.71782,-73.99422,Private room,87,4,9,2018-11-04,0.63,1,89 +2924588,"Exclusive Manhattan , 24 h doormen",14933223,Maria,Manhattan,Midtown,40.75293,-73.97173,Private room,110,14,9,2019-06-01,0.14,1,21 +2924834,RARE: Large Room + Big Townhouse = Better Stay,9576121,Jon,Brooklyn,Williamsburg,40.71416,-73.9488,Private room,80,2,71,2019-02-26,1.13,1,0 +2925138,Steps from Central Park,14935685,Uday,Manhattan,Hell's Kitchen,40.76761,-73.98497,Entire home/apt,250,1,0,,,1,0 +2925397,Quaint room in artist's apartment.,8520430,Jess,Brooklyn,South Slope,40.66449,-73.99047,Private room,63,4,65,2019-01-02,1.34,1,290 +2927005,Charming 2 Bedroom by Prospect Park,17930,Seryn,Brooklyn,Windsor Terrace,40.65541,-73.9761,Entire home/apt,200,5,37,2019-05-27,0.78,2,78 +2931544,Bright 1BR in heart of Greenpoint,3136117,Meg,Brooklyn,Greenpoint,40.73487,-73.95627,Entire home/apt,185,3,9,2017-04-20,0.16,1,0 +2931595,Light filled SoHo walk-up,846521,James,Manhattan,SoHo,40.7241,-74.0042,Entire home/apt,250,2,18,2019-06-30,1.83,1,9 +2931859,2 BR Sun Filled Feng Shui W Village,14970988,Satya,Manhattan,West Village,40.73704,-74.01049,Entire home/apt,130,2,57,2019-04-09,0.94,1,187 +2932263,Cheery Brooklyn Heights Studio!!,9503874,Gillian,Brooklyn,Brooklyn Heights,40.69683,-73.99206,Entire home/apt,185,4,65,2019-06-30,1.18,1,254 +2932779,Huge Room near Prospect Heights,14975379,Lily,Brooklyn,Crown Heights,40.67512,-73.96278,Private room,75,2,5,2015-10-24,0.08,1,0 +2933772,"Large, Bright Apt Near Central Park",11774630,Jane,Manhattan,East Harlem,40.7888,-73.94844,Entire home/apt,240,4,229,2019-07-01,3.67,2,52 +2934382,Sunshine & Cozy Bedtime in Brooklyn,7171571,Nicole,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94689,Private room,65,1,4,2015-10-18,0.08,1,0 +2935456,UWS Luxury Studio Near CentralPark,10395636,Joseph,Manhattan,Upper West Side,40.77435,-73.97889,Entire home/apt,195,2,32,2016-12-19,0.51,1,0 +2936054,October SPECIAL!! Enjoy the Holiday in NYC! Sale!,14990573,Ray,Manhattan,Battery Park City,40.71097,-74.01658,Entire home/apt,200,1,46,2017-10-22,0.74,1,0 +2936192,Bright Quiet Room in the W Village,13908017,Kaytlin,Manhattan,Greenwich Village,40.73034,-73.99992,Private room,120,2,209,2019-06-19,4.07,1,283 +2936517,Boerum Hill 2BR Garden Apartment,686494,Molly,Brooklyn,Gowanus,40.68322,-73.98968,Entire home/apt,180,1,183,2019-06-23,2.90,1,197 +2939670,"Bright Room Near JFK ,LGA & Train with AC",15009272,Yolanda,Queens,Woodhaven,40.6955,-73.86281,Private room,53,3,89,2019-01-03,1.44,2,189 +2940007,Charming one bedroom in the LES,15010803,Carlo,Manhattan,Lower East Side,40.71615,-73.98478,Entire home/apt,200,1,10,2015-05-04,0.16,1,0 +2940163,Sunny 1BR near Central Park close to Columbia U.,15002363,Michael,Manhattan,Harlem,40.80071,-73.9534,Private room,100,3,60,2019-06-08,2.26,1,0 +2940729,Le Petit Château,4963379,Tamoi,Brooklyn,Flatbush,40.63615,-73.95148,Entire home/apt,86,3,62,2017-11-04,1.07,1,0 +2941297,Full 1 bedroom Apt in GREAT Locale,1495881,Zuben,Manhattan,Chelsea,40.73936,-73.99965,Entire home/apt,225,3,6,2016-05-06,0.10,1,0 +2942129,"Bright Large Room near JFK, LGA & Train 2 beds",15009272,Yolanda,Queens,Woodhaven,40.69414,-73.86324,Private room,40,3,136,2019-06-09,2.21,2,291 +2942732,"Large 1 bdrm, River views!",160337,Sanjna,Manhattan,Washington Heights,40.83549,-73.94765,Entire home/apt,60,365,9,2019-06-15,0.15,1,291 +2943724,3 Bedroom @ JFK CASINO BEACH LOCALE,15029400,Astoria,Queens,Bayswater,40.60549,-73.75547,Private room,70,1,13,2015-05-25,0.21,1,220 +2947668,Location Queen Elena,3250450,Petya,Queens,Maspeth,40.73726,-73.89792,Private room,35,30,1,2019-06-28,1,18,364 +2949128,FAB APT & LOCALE in HELLS KCHN PRIVATE SAFE COMFY!,15049157,Marjorie,Manhattan,Hell's Kitchen,40.76375,-73.9924,Entire home/apt,250,3,136,2019-06-21,2.17,1,284 +2952861,Photography Location,1177497,Jessica,Brooklyn,Clinton Hill,40.69127,-73.96563,Entire home/apt,4500,1,5,2018-12-29,0.09,11,365 +2953058,Film Location,1177497,Jessica,Brooklyn,Clinton Hill,40.69137,-73.96723,Entire home/apt,8000,1,1,2016-09-15,0.03,11,365 +2954785,Trendy studio NYC centrally located,15081041,Jaclyn,Manhattan,Murray Hill,40.74551,-73.97757,Entire home/apt,169,5,0,,,1,0 +2956443,Large 2 Floor Apt 2 Bdrm Sleeps 8 ,15089968,Anna,Queens,Richmond Hill,40.70061,-73.84107,Entire home/apt,255,2,60,2019-06-24,0.97,2,297 +2958412,A beautiful modern 3 bedroom apt,15099550,Bah.,Manhattan,Harlem,40.80879,-73.94127,Entire home/apt,290,1,77,2019-07-01,1.25,1,252 +2958912,STUNNING! 1BD Jr in Midtown East NY,15100977,Nataliya,Manhattan,Midtown,40.75969,-73.96644,Entire home/apt,140,300,0,,,1,365 +2959036,Sunny Manhattan Studio,15102869,Ellie,Manhattan,Washington Heights,40.85504,-73.93648,Entire home/apt,115,7,11,2019-04-22,0.30,1,4 +2965008, Family Friendly Brooklyn House,37879,Jeffrey,Brooklyn,Gowanus,40.67024,-73.99351,Entire home/apt,299,3,13,2019-04-24,0.56,1,346 +2966685,Charming West Village Studio - Amazing Location!,3963645,Quyen,Manhattan,West Village,40.73279,-74.00322,Entire home/apt,160,2,13,2018-11-25,0.55,1,0 +2967631,Upper East Side 1BR,15141764,Kevin,Manhattan,Upper East Side,40.78139,-73.95261,Shared room,175,1,1,2015-09-28,0.02,1,0 +2968070,Near Times Square and Hell's Kitchen,14380456,Claude,Manhattan,Hell's Kitchen,40.75971,-73.98979,Private room,120,1,365,2019-07-05,5.81,1,174 +2969427,Artist's Studio in Mansion,1177497,Jessica,Brooklyn,Clinton Hill,40.68975,-73.96724,Private room,179,1,8,2018-10-07,0.13,11,365 +2969489,"Great Room, Bedford L Train!! (10min to Manhattan)",1012583,Mariano,Brooklyn,Williamsburg,40.71587,-73.95934,Private room,74,4,106,2019-05-25,1.71,2,25 +2969803,King Bed or Two Singles - You're choice!,7691518,Brent,Manhattan,Hell's Kitchen,40.76794,-73.98781,Private room,68,1,152,2019-05-23,2.42,2,237 +2969919,Spacious Junior 1BR Apt in USQ/Flatiron,15153596,Allie,Manhattan,Chelsea,40.73726,-73.99399,Private room,235,1,34,2019-07-01,0.68,1,135 +2974433,Stylish Williamsburg Loft Apartment,2363988,Mads,Brooklyn,Williamsburg,40.70775,-73.94214,Private room,100,5,2,2018-01-03,0.07,1,0 +2974877,Sunny and Stylish on the Park,15082988,Karen,Brooklyn,Greenpoint,40.72292,-73.94924,Entire home/apt,270,3,13,2017-04-23,0.22,1,0 +2974957,Open/Sunny 2 BR in Prospect Heights,588899,Lily,Brooklyn,Prospect Heights,40.67925,-73.9688,Entire home/apt,200,14,2,2015-06-18,0.04,1,0 +2975715,August sublet in Greenwich Village,15178288,Michael,Manhattan,Greenwich Village,40.72603,-73.99746,Entire home/apt,161,21,0,,,1,0 +2976105,Crown (Prospect) Heights Brooklyn Room,3259274,Hannah,Brooklyn,Crown Heights,40.67479,-73.95722,Private room,60,2,2,2015-09-07,0.04,2,83 +2976758,Prime location in the east village,15182886,Frederico,Manhattan,East Village,40.7231,-73.98494,Entire home/apt,155,4,44,2019-05-20,0.70,1,341 +2977232,"Priv Room in Artists UES Apt, Central Park & Train",15185319,Alesandra,Manhattan,East Harlem,40.79285,-73.94482,Private room,95,1,270,2019-06-17,4.50,1,288 +2978421,Hip Chinatown Apt in Great Location,5418972,Nico,Manhattan,Chinatown,40.71433,-73.99028,Entire home/apt,125,2,11,2019-05-31,0.27,1,0 +2979097,Perfect NYC Flat! Modern!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77233,-73.9572,Entire home/apt,118,30,1,2017-02-04,0.03,29,308 +2979714,Cozy Private RM Near Central Park N,15198359,Grace Brigitte,Manhattan,Harlem,40.80095,-73.9541,Private room,80,7,95,2019-06-14,1.56,1,278 +2983952,Williamsburg Oasis of Art ,11018460,Patricia,Brooklyn,Williamsburg,40.71593,-73.95642,Entire home/apt,210,3,4,2016-09-27,0.11,2,0 +2984662,Brooklyn Heights - 1 Bedroom,15179425,Chris,Brooklyn,Brooklyn Heights,40.69443,-73.99068,Entire home/apt,150,2,10,2018-09-14,0.16,1,0 +2985678,2BR on Express 2 stops to Manhattan,1720071,Karen And Ben,Brooklyn,Sunset Park,40.65841,-73.99664,Entire home/apt,135,2,133,2019-05-27,2.19,1,296 +2987465,"Chic, Modern Apt Near Central Park!",13347167,AFI Apartments,Manhattan,Upper East Side,40.77222,-73.95544,Entire home/apt,118,30,3,2018-08-30,0.06,29,326 +2994478,☆ Central Park - Home Away From Home,2604437,Lane,Manhattan,Upper West Side,40.78504,-73.97959,Private room,110,3,40,2019-05-16,1.48,2,113 +2994536,The Perfect Greenpoint Getaway,15265839,Danie,Brooklyn,Greenpoint,40.73057,-73.95023,Private room,70,2,8,2016-07-03,0.17,1,0 +2994659,Private cozy room,15266695,Sergey & Kate,Brooklyn,Bensonhurst,40.62019,-73.99624,Private room,43,1,127,2019-06-27,2.77,2,220 +2995000,Bright Brooklyn garden apartment!,1971142,David,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94295,Entire home/apt,140,2,205,2019-07-07,3.26,1,294 +2995209,"NEW! Gorgeous 1-BR, Colorful Design",13347167,AFI Apartments,Manhattan,Upper East Side,40.77126,-73.95671,Entire home/apt,116,30,1,2014-06-14,0.02,29,335 +2995459,Cozy & Large Corner Flex 2BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.72525,-73.9418,Entire home/apt,159,30,6,2018-10-13,0.12,52,317 +2995701,Sun filled 2BR in BedStuy Townhouse,15271110,Josandra,Brooklyn,Bedford-Stuyvesant,40.68548,-73.92039,Entire home/apt,135,2,296,2019-06-25,4.84,1,187 +2997377,"Cosy HUS Room, furnished & all utilities included!",5986790,Gen,Manhattan,Washington Heights,40.83383,-73.94469,Private room,39,7,13,2019-05-11,0.36,6,310 +2998174,Sanctuary Bedroom in Huge Duplex,5684941,Jade,Brooklyn,Bushwick,40.69666,-73.93248,Private room,59,20,16,2018-10-11,0.28,1,54 +2999527,One-of-a-Kind Luxury NYC EPIC VIEW!,5422083,Aivars,Manhattan,Battery Park City,40.70633,-74.01837,Entire home/apt,600,30,2,2014-05-27,0.03,1,0 +3003127,Private Room with Full Amenities,11998560,Ruby,Brooklyn,Crown Heights,40.67401,-73.92833,Private room,66,1,6,2019-06-30,0.11,2,41 +3003228,Prime Tribeca! Breathtaking View,1475015,Mike,Manhattan,Civic Center,40.71662,-74.00352,Entire home/apt,130,30,2,2015-02-21,0.03,52,365 +3004348,Modern Stay in Brownstone Brooklyn,15310896,Christy,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95054,Entire home/apt,100,3,284,2019-06-24,4.57,1,237 +3004563,The spot,15303460,Emma,Brooklyn,Prospect-Lefferts Gardens,40.65595,-73.95412,Private room,50,7,1,2019-06-08,0.94,1,125 +3005261,Hudson Heights Art Deco,7629544,Alison,Manhattan,Washington Heights,40.85719,-73.93573,Private room,185,2,34,2018-08-07,0.56,1,365 +3005990,Beautiful Large Room in Park Slope,15318802,Jessie,Brooklyn,Sunset Park,40.66528,-73.99382,Private room,54,1,4,2018-05-15,0.07,1,0 +3010328,1BR apartment in Brooklyn,15341073,Camille,Brooklyn,Flatbush,40.64661,-73.95999,Entire home/apt,100,6,2,2018-07-01,0.11,1,202 +3010430,Studio in Center of Chelsea,15341568,Selma,Manhattan,Chelsea,40.74227,-73.99362,Entire home/apt,180,1,6,2014-08-25,0.10,1,0 +3010577,Old World Garden Apartment,550520,Kendall,Brooklyn,East Flatbush,40.65262,-73.94867,Entire home/apt,115,30,43,2019-07-01,0.70,1,78 +3010664,"Giant 3 story family house, 15 min to Manhattan",5663597,Amir,Brooklyn,Prospect Heights,40.67553,-73.96376,Entire home/apt,350,3,11,2019-04-28,0.19,1,21 +3010988,Big Private room in Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.6769,-73.94483,Private room,32,7,3,2018-06-15,0.07,3,319 +3012871,Williamsburg Luxury Apton Bedford,1504257,Neomi,Brooklyn,Williamsburg,40.71756,-73.95579,Entire home/apt,165,8,23,2019-04-21,0.38,1,297 +3013158,Alcove Studio in Downtown Manhattan,15355526,Nattie,Manhattan,Chelsea,40.73893,-73.99464,Entire home/apt,350,2,12,2015-11-02,0.19,1,0 +3013383,Unique Brooklyn Brownstone,15356877,Rachel,Brooklyn,Cobble Hill,40.68494,-73.99685,Entire home/apt,795,6,0,,,1,14 +3013404,Cozy Williamsburg Apartment,15134522,Enma,Brooklyn,Williamsburg,40.70971,-73.9639,Entire home/apt,200,4,15,2017-08-18,0.32,1,95 +3013668,Gorgeous Apt in Bushwick Brooklyn,15358791,Arnan & Zahira,Brooklyn,Bushwick,40.70113,-73.91119,Entire home/apt,175,5,5,2019-06-17,0.10,1,107 +3017320,Dani private room in Manhattan,10364678,Dany,Manhattan,Inwood,40.86786,-73.92077,Private room,50,2,58,2017-10-20,0.96,2,188 +3018285,Heart of Manhattan: Charming 1BD,67180,Nicholas,Manhattan,West Village,40.73722,-74.00043,Entire home/apt,190,1,11,2018-10-17,0.18,1,0 +3018422,Private Room with Private Bath,8656650,Genny,Manhattan,Harlem,40.80453,-73.95699,Private room,110,2,37,2018-12-09,0.60,1,182 +3019237,"Carroll Gardens Row House, Brooklyn",7249524,Kellie,Brooklyn,Gowanus,40.67729,-73.99164,Entire home/apt,414,3,2,2016-08-22,0.06,1,0 +3021617,1BR Doorman Bldg Boerum Hill BK,10842335,Brian,Brooklyn,Downtown Brooklyn,40.68968,-73.98404,Entire home/apt,135,2,0,,,1,0 +3026848,NYC Finest location!~amazing view!!,1475015,Mike,Manhattan,Murray Hill,40.74318,-73.97193,Entire home/apt,150,30,2,2016-11-29,0.03,52,365 +3029690,Safe Sunny South Facing Near All,7245581,Michael,Manhattan,Chelsea,40.74873,-73.99557,Entire home/apt,93,365,10,2018-02-12,0.17,19,97 +3032355,Cozy bedroom - Upper East Side,15445130,Sarah,Manhattan,Upper East Side,40.76712,-73.95668,Private room,70,2,0,,,1,0 +3037740,Beautiful turn-of-the-century home,339586,Oswaldo,Staten Island,St. George,40.64444,-74.08302,Entire home/apt,175,3,22,2019-06-20,0.40,1,39 +3038614,"Lovely, Huge, Open, Quiet, Spacious, Sunny, A/C",14892152,Laura,Brooklyn,Bedford-Stuyvesant,40.68596,-73.95837,Entire home/apt,155,25,3,2015-04-02,0.05,1,364 +3038797,2 Queen beds Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7276,-73.94029,Entire home/apt,129,30,4,2019-06-06,0.08,52,337 +3039110,The proud New Yorker Room,8159536,Genae,Bronx,Concourse Village,40.83288,-73.91834,Private room,50,1,21,2019-06-02,0.36,3,188 +3039332,1910 Town House in leafy Kensington,15476280,Jacques,Brooklyn,Kensington,40.64638,-73.97723,Entire home/apt,499,7,2,2015-08-11,0.03,1,31 +3039888,Very unique - half block from Industry City,15478980,William,Brooklyn,Sunset Park,40.65513,-74.00621,Shared room,80,1,7,2019-05-21,0.15,1,90 +3040585,Awesome Studio East 58&3rd avenue! ,1475015,Mike,Manhattan,Midtown,40.76132,-73.96612,Entire home/apt,115,30,0,,,52,342 +3040654,Sunny Bedroom In Astoria!,6041,Miranda,Queens,Ditmars Steinway,40.77748,-73.90971,Private room,47,2,14,2018-01-02,0.28,1,0 +3041280,Crown Heights Duplex Apt.,4401973,Juan Felipe,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.95043,Private room,95,1,1,2015-06-30,0.02,1,0 +3041785,Luxury Space East Village 3 Bedrm sleeps 7,15430260,Michelle,Manhattan,East Village,40.72889,-73.98853,Entire home/apt,249,1,150,2019-06-24,2.52,1,278 +3041973,Perfect 1BR / Doorman / 22 St & 2nd Ave,1475015,Mike,Manhattan,Murray Hill,40.74475,-73.97201,Entire home/apt,150,30,2,2016-08-31,0.04,52,362 +3042553,Quiet bedroom in East Village NY.,15492140,Harper,Manhattan,Lower East Side,40.72232,-73.98987,Private room,77,3,139,2019-07-07,2.29,1,18 +3043029,2 bedroom in the East Village,1451702,Paco,Manhattan,East Village,40.72687,-73.97995,Entire home/apt,225,8,0,,,1,0 +3043467,Room in Duplex Apartment,10432817,Deedles,Brooklyn,Brooklyn Heights,40.69405,-73.99634,Private room,70,14,16,2019-07-02,0.61,1,67 +3046941,Awesome 2 bedroom~murray hill~deal ,1475015,Mike,Manhattan,Murray Hill,40.74462,-73.97488,Entire home/apt,100,30,6,2017-06-30,0.11,52,311 +3048234,Best Deal/Columbus Circle/Renovated,1475015,Mike,Manhattan,Hell's Kitchen,40.76866,-73.98616,Entire home/apt,87,30,6,2018-10-04,0.10,52,365 +3050544,Large 2 Full BR 15min to Manhattan!,2534076,Helen,Brooklyn,Park Slope,40.6728,-73.97166,Entire home/apt,245,4,3,2014-08-17,0.05,1,0 +3052726,Great apt in awesome area,15542183,Brian,Manhattan,Upper West Side,40.78576,-73.97594,Entire home/apt,300,3,92,2019-05-06,1.53,1,254 +3052904,Spacious Upper East Side Pvt. Room,15543098,Carlos,Manhattan,Upper East Side,40.77401,-73.9457,Private room,55,1,2,2016-12-31,0.03,1,0 +3056451,One Bedroom close to everything!,15559190,Kerry,Manhattan,West Village,40.72916,-74.00433,Entire home/apt,120,3,5,2016-10-28,0.08,1,0 +3058087,Fully Furnished Luk Room including Air Conditiner!,5986790,Gen,Manhattan,Washington Heights,40.83568,-73.94457,Private room,40,31,2,2019-06-16,0.15,6,130 +3059273,1 bedroom in Nolita/Soho,15569250,SoSo,Manhattan,Nolita,40.72118,-73.99682,Private room,115,2,9,2019-07-07,0.29,1,332 +3060297,Great Chelsea block near Highline & Subways,7245581,Michael,Manhattan,Chelsea,40.74897,-73.9968,Entire home/apt,93,75,16,2019-05-15,0.30,19,234 +3060745,"Furnished Sublet, Manhattan, Harlem",7101220,David,Manhattan,East Harlem,40.79245,-73.94563,Private room,37,30,1,2015-07-31,0.02,1,0 +3061093,Penthouse in Williamsburg w/ Patio!,15579200,Marc,Brooklyn,Williamsburg,40.7172,-73.9616,Entire home/apt,240,2,18,2015-11-12,0.29,1,0 +3061106,Private Room in Cozy Downtown Apt!,15581137,Maya,Manhattan,West Village,40.73229,-74.004,Private room,130,2,0,,,1,0 +3061995,Explore NYC - 1 Stop to Manhattan!,6653718,Kara Ayn,Queens,Long Island City,40.74902,-73.94066,Private room,70,3,145,2019-06-23,2.33,1,32 +3066892,Huge 1br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72691,-73.94041,Entire home/apt,149,30,5,2017-12-11,0.10,52,295 +3067062,Musician's Private Room,5317082,Kells,Brooklyn,Williamsburg,40.71477,-73.94105,Private room,100,21,10,2019-07-04,0.17,2,14 +3067093,Stylish East Village Studio near Union Sq,3541594,Jennifer,Manhattan,East Village,40.73057,-73.99034,Entire home/apt,200,2,12,2019-06-09,1.52,1,0 +3067244,Bright Prospect Park Charmer,3241305,Emilia,Brooklyn,Prospect-Lefferts Gardens,40.65962,-73.96063,Entire home/apt,99,4,43,2019-05-06,0.70,1,0 +3067670,"sunny 3 Bedrrom great view, Chelsea",2539525,Eran,Manhattan,Chelsea,40.74221,-73.9974,Entire home/apt,220,8,5,2018-07-23,0.08,1,2 +3068047,Upper East Side Steal,15613241,Courtney,Manhattan,Upper East Side,40.78145,-73.95588,Entire home/apt,250,3,3,2015-10-11,0.06,1,0 +3068145,Cozy & Modern Studio | Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77209,-73.9563,Entire home/apt,103,30,12,2019-02-26,0.20,29,209 +3068852,Beautiful & Modern | Top Location!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77224,-73.95629,Entire home/apt,108,30,7,2018-06-02,0.14,29,188 +3070876,Fantastic fully furnished room,2448006,El Haj,Manhattan,Harlem,40.80392,-73.94685,Private room,75,3,5,2016-10-20,0.10,3,325 +3072242,Sunny and Spacious apt in Bushwick,3053987,Darwin And Nicole,Brooklyn,Bushwick,40.69158,-73.92115,Entire home/apt,78,3,10,2015-05-20,0.16,2,0 +3073195,Spacious room in great neighborhood,15639713,Agustina,Brooklyn,Williamsburg,40.70442,-73.95413,Private room,75,4,6,2015-12-01,0.13,1,0 +3079125,Cute and cozy in Manhattan,1370474,Edmi,Brooklyn,Navy Yard,40.70481,-73.97755,Entire home/apt,152,2,3,2017-04-22,0.10,1,12 +3079237,Sunny clean studio in heart of LES,13969061,Lisa,Manhattan,Lower East Side,40.71987,-73.98641,Entire home/apt,150,1,32,2018-12-12,0.51,1,3 +3079567,Nolita / Soho A cozy 2 bedroom apartment.,740656,Einar,Manhattan,Nolita,40.72293,-73.99413,Entire home/apt,320,3,168,2019-06-30,2.70,1,269 +3080233,1BR UNFURN SUBLET in Williamsburg,15674437,Benjamin,Brooklyn,Williamsburg,40.70789,-73.94632,Entire home/apt,220,29,4,2014-08-15,0.07,1,0 +3081771,Luxurious Brooklyn Getaway!,15681707,Joycelyn,Brooklyn,Crown Heights,40.67489,-73.91405,Entire home/apt,99,2,190,2019-07-01,3.67,3,287 +3083197,Spectacular East Village Townhouse with 3 patios,15688520,Alex,Manhattan,East Village,40.72592,-73.97991,Entire home/apt,950,3,42,2019-06-10,0.69,2,34 +3083899,Charming Studio on Upper West Side,15638528,Lindsey,Manhattan,Upper West Side,40.78087,-73.97812,Entire home/apt,120,1,1,2014-07-10,0.02,1,0 +3084473,One Bedroom Apartment ,5691429,Patrick,Manhattan,Morningside Heights,40.80739,-73.95918,Entire home/apt,100,1,5,2014-12-22,0.08,1,0 +3089577,Spacious 2 bd 2 bth apt 45 min from Time Sq sleep6,15636404,Anneta,Brooklyn,Borough Park,40.61098,-73.9742,Entire home/apt,199,4,4,2018-08-25,0.11,1,37 +3090474,Times Square Unique Studio,15718962,Samira,Manhattan,Hell's Kitchen,40.75771,-73.99407,Private room,100,1,257,2019-06-13,4.20,1,20 +3090922,"Private Rm in Cozy Wburg Loft, 1 blk fr Bedford L",4936720,Mac,Brooklyn,Williamsburg,40.7152,-73.95445,Private room,75,1,52,2019-06-16,1.29,2,25 +3091202,Great 1bd!Murray Hill NYC~renovated,1475015,Mike,Manhattan,Kips Bay,40.74175,-73.97741,Entire home/apt,84,30,7,2018-10-04,0.12,52,365 +3091872,Beautiful private 2 bedroom in prime Greenpoint,2308616,Rebecca,Brooklyn,Greenpoint,40.7245,-73.95022,Entire home/apt,100,14,1,2017-08-07,0.04,1,0 +3093240,Lovely Guestroom in Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67104,-73.94562,Private room,75,3,85,2019-06-19,1.41,4,292 +3093469,Amazing Private Room in Brooklyn - Fort Greene,7107807,Crystal & Clee,Brooklyn,Clinton Hill,40.68541,-73.96728,Private room,93,6,108,2019-05-01,1.73,1,336 +3093616,Quite 2 bedroom apt. in Brooklyn,15733420,Marcus,Brooklyn,Bedford-Stuyvesant,40.69205,-73.93144,Entire home/apt,140,4,64,2019-06-29,1.38,2,315 +3095119,"Great apartment, heart of Brooklyn",15740819,Heather,Brooklyn,Fort Greene,40.69071,-73.97057,Entire home/apt,200,30,38,2017-07-31,0.63,2,5 +3095348,True Loft in Williamsburg,13125226,Kristen,Brooklyn,Williamsburg,40.7177,-73.94612,Entire home/apt,200,2,2,2014-08-21,0.03,1,157 +3095477,Luxury Family Sunny 2 bdrm 1 bath Apt Park Slope,15743167,Cristina,Brooklyn,South Slope,40.66508,-73.98974,Entire home/apt,200,2,14,2018-06-10,0.60,1,0 +3095502,Cozy 1BR Apartment by Subway,10930874,Tyler,Queens,Forest Hills,40.72713,-73.84946,Entire home/apt,100,1,1,2014-09-04,0.02,1,0 +3098703,At home in Historic Harlem,9716281,Sarah,Manhattan,Harlem,40.80399,-73.94665,Private room,100,250,91,2018-08-10,1.47,1,138 +3100156,Your own studio apt in Upper East,1906150,Susana,Manhattan,Upper East Side,40.7759,-73.94227,Entire home/apt,120,7,100,2019-06-18,1.61,1,203 +3101058,Entire One Bedroom Apartment next to Prospect Park,15767190,Mark,Brooklyn,Flatbush,40.65235,-73.9635,Entire home/apt,109,2,2,2017-06-28,0.08,1,0 +3101140,Large Sunny Room with Huge patio in Wburg,9229108,Etan,Brooklyn,Greenpoint,40.72126,-73.93961,Private room,126,2,15,2019-05-11,0.80,2,105 +3103596,BIG Private Room in NYC APT.,15778597,Ayo,Manhattan,Harlem,40.82243,-73.94786,Private room,50,2,2,2016-01-03,0.04,1,321 +3104652,West Chelsea Apt! AMAZING Location!,15783686,Matt,Manhattan,Chelsea,40.74765,-74.0042,Entire home/apt,325,4,6,2016-12-06,0.12,1,0 +3105531,Bright & lovely Upper East Side apt,9306192,Su-En,Manhattan,Upper East Side,40.77766,-73.9561,Entire home/apt,750,6,0,,,1,0 +3105986,Steps away from Brooklyn museum,8822946,Mariam,Brooklyn,Crown Heights,40.67228,-73.96239,Entire home/apt,135,5,4,2015-10-17,0.07,1,0 +3106154,"Safe, Cozy, Cute and Cheap",2885147,Marty,Queens,Rego Park,40.7246,-73.85744,Entire home/apt,52,2,1,2014-05-24,0.02,1,0 +3111416,Charming and Artsy LES 1-Bedroom ,3765042,Grant,Manhattan,Lower East Side,40.71848,-73.98159,Entire home/apt,124,28,13,2018-01-12,0.21,1,38 +3112284,Spacious room in flushing ny ❤️,15815237,Mack,Queens,Flushing,40.76428,-73.83225,Private room,59,3,35,2016-12-31,0.61,1,158 +3112872,Sunny Studio Near Central Park,2641574,Meredith,Manhattan,Upper West Side,40.77573,-73.98264,Entire home/apt,215,2,8,2015-06-21,0.13,1,0 +3112953,Spectacular Townhouse with your own private patio,15688520,Alex,Manhattan,East Village,40.72488,-73.97996,Private room,240,2,8,2017-12-30,0.13,2,93 +3114929,Modern Stylish and Legendary.,14911623,Nicholas,Manhattan,Harlem,40.81736,-73.93921,Private room,150,1,2,2019-05-19,0.19,2,87 +3116279,Cozy Studio on McGolrick Park,5352357,Bernice,Brooklyn,Greenpoint,40.72418,-73.94528,Private room,83,2,2,2016-08-25,0.03,1,0 +3116519,Large 900 sqft Artist's Apartment,3008690,Alex,Queens,Ridgewood,40.70124,-73.90941,Entire home/apt,70,10,0,,,1,0 +3120723,Charming Private Studio in LES,15853337,Julia,Manhattan,Lower East Side,40.72165,-73.98573,Entire home/apt,160,2,6,2015-06-19,0.10,1,0 +3120957,"Clean, Safe, Convenient, Comfy",8703,Michael,Manhattan,Harlem,40.80699,-73.94227,Shared room,200,1,8,2016-09-29,0.13,1,180 +3121176,1 BEDROOM APT IN PRIME WILLIAMSBURG,3663033,Jehan,Brooklyn,Williamsburg,40.71662,-73.95993,Entire home/apt,50,7,4,2016-03-09,0.07,1,0 +3121851,Amazing 1BD! Renovated Col Circle!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76745,-73.98489,Entire home/apt,87,30,8,2018-08-15,0.20,52,311 +3122230,Cozy Harlem Home,15859636,Kyle,Manhattan,Harlem,40.81595,-73.9447,Private room,125,1,0,,,1,0 +3122636,"East Village - Family friendly, specious and quiet",4025280,Alon & Adi,Manhattan,Upper East Side,40.78276,-73.95299,Entire home/apt,250,5,22,2019-04-26,0.36,1,7 +3122731,Park Slope 2 bedroom - Amazing Access to All!!!,2442348,Zoe,Brooklyn,South Slope,40.6679,-73.9872,Entire home/apt,162,2,123,2019-06-28,3.47,1,282 +3128865,"charming, sunny and quiet studio",15890334,Joscelyn,Brooklyn,Prospect Heights,40.67527,-73.96604,Entire home/apt,67,1,0,,,1,0 +3129731,Dbl Room with Terrace and View!,7853594,Hans,Manhattan,Upper East Side,40.76282,-73.9637,Private room,147,1,25,2019-04-21,0.51,2,10 +3131756,Beautiful 3 Bedroom apt in Bed-Stuy,2213809,Dean,Brooklyn,Bedford-Stuyvesant,40.68176,-73.92883,Entire home/apt,149,2,225,2019-06-30,3.70,1,254 +3131982,"Spacious, Sunny Apartment in BK!",15904341,Monica,Brooklyn,Crown Heights,40.67231,-73.94426,Entire home/apt,65,5,6,2018-06-21,0.14,1,0 +3132960,Lovely Park Slope Pied a Terre,2472358,Craig,Brooklyn,Park Slope,40.67668,-73.97718,Entire home/apt,250,5,2,2018-12-31,0.21,1,0 +3133055,Relax in an oasis of quiet in a beautiful house!,15908653,Gil,Brooklyn,Flatbush,40.63463,-73.95899,Private room,160,2,156,2019-07-01,2.54,2,307 +3136535,"Peaceful, Upper East Side Studio",15414317,Madeleine,Manhattan,Upper East Side,40.76299,-73.96166,Entire home/apt,150,5,10,2017-09-23,0.16,1,0 +3137426,Gramercy Luxurious 2 BD condominium,15667008,Manhattan,Manhattan,Gramercy,40.73666,-73.9796,Private room,199,1,0,,,1,365 +3137906,Lovely room in Williamsburg,3814039,Natalie,Brooklyn,Williamsburg,40.70921,-73.95178,Private room,64,3,47,2019-06-10,0.77,1,282 +3139489,"Nice Cozy Room in BROOKLYN, NYC, NY, Bushwick",2885704,Victor,Brooklyn,Bushwick,40.69545,-73.91967,Private room,33,2,182,2019-06-21,3.62,2,16 +3139749,Room in Manhattan=15 min to TimesSq,7580038,Jack Andrew,Manhattan,Harlem,40.82584,-73.94673,Private room,500,1,3,2014-09-27,0.05,3,363 +3139918,Bright Quiet 1BD in the Heart of BK,469098,Sara,Brooklyn,Boerum Hill,40.68474,-73.97959,Entire home/apt,150,3,55,2019-06-17,0.94,1,7 +3143311,Lower Eastside - Perfect Room,15518085,Isabelle,Manhattan,Lower East Side,40.71973,-73.98993,Private room,110,14,2,2015-01-11,0.03,1,0 +3143596,Open Loft in Historic Townhome - Near Metro & Food,3323488,Tenisha & Marty,Brooklyn,Bedford-Stuyvesant,40.68452,-73.95535,Entire home/apt,145,2,119,2019-05-15,1.96,2,218 +3143649,"Lovely Apt/Room in Ditmas Park, BK",15960720,Taylor,Brooklyn,Flatbush,40.64056,-73.96571,Private room,40,10,0,,,1,0 +3143838,Williamsburg Penthouse Private Room,7784911,Marc,Brooklyn,Williamsburg,40.70724,-73.94217,Private room,95,3,10,2015-11-02,0.17,2,0 +3144135,Cozy Garden View Apartment! Perfect for Families!,10835806,Rick,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92994,Entire home/apt,185,5,60,2019-03-29,1.30,1,0 +3145484,Historic Townhome for Photo and Video Shoots,3323488,Tenisha & Marty,Brooklyn,Bedford-Stuyvesant,40.68695,-73.95427,Entire home/apt,500,1,28,2018-11-02,0.71,2,365 +3147439,Charming West Village Studio With Cat,7361593,Samantha,Manhattan,West Village,40.72976,-74.00445,Entire home/apt,115,3,2,2017-11-11,0.03,1,0 +3153140,Four-Bedroom Victorian Near Ferry,13530123,Lynn,Staten Island,St. George,40.64553,-74.08323,Entire home/apt,195,3,105,2019-06-14,1.73,1,204 +3153464,Sunny 1 BD in trendy Prospect Heights Brooklyn.,16003147,Victoria And Juliana,Brooklyn,Prospect Heights,40.67391,-73.96739,Entire home/apt,105,21,5,2018-07-31,0.08,1,221 +3153603,Private 1 bd Apt 1 blk off the J,4299288,Quinn,Brooklyn,Bushwick,40.69465,-73.92675,Entire home/apt,67,30,10,2019-05-23,0.16,1,26 +3157330,"clean, casual 2BD apt in bed-stuy!",9105586,Marc,Brooklyn,Bedford-Stuyvesant,40.68898,-73.9412,Entire home/apt,75,1,1,2015-02-12,0.02,1,0 +3157420,Giant Private Room in Battery Park ,4119683,Zachary,Manhattan,Battery Park City,40.71029,-74.01725,Private room,100,1,4,2016-07-26,0.08,1,0 +3161739,Up among the trees in Bed Stuy,14736455,Anna,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95017,Entire home/apt,125,7,56,2019-05-15,0.93,1,188 +3162817,"Sunny, Williamsburg Condo",6754169,Ellie,Brooklyn,Williamsburg,40.71572,-73.94058,Entire home/apt,350,2,2,2015-08-02,0.04,2,0 +3164173,Bright Studio in New WB Building,2338762,Masha,Brooklyn,Williamsburg,40.71808,-73.95511,Entire home/apt,150,1,12,2016-08-28,0.33,1,0 +3164997,Charming XL 1br in Astoria,15998942,David,Queens,Astoria,40.77221,-73.92493,Entire home/apt,200,5,22,2018-05-17,0.37,1,188 +3166540,"Brownstone Duplex with Garden,Deck & 8' pool table",2323652,Mark,Brooklyn,Park Slope,40.678,-73.98049,Entire home/apt,270,3,6,2019-01-01,0.16,1,12 +3166564,Family-friendly 2BR w Rooftop,8488933,Teresa,Brooklyn,Windsor Terrace,40.65516,-73.97633,Entire home/apt,184,5,22,2018-08-27,0.37,1,0 +3167768,Family-friendly 3-bedroom condo,16067583,Natasha,Brooklyn,Prospect Heights,40.67765,-73.96378,Entire home/apt,275,4,19,2019-07-05,0.32,1,34 +3168120,SPACIOUS & SUNNY East Village Gem,16069958,Nicholas,Manhattan,East Village,40.72854,-73.98434,Entire home/apt,171,2,1,2014-06-30,0.02,1,0 +3171234,~ PRIME location Williamsburg sunny 3BR loft ~,2416036,Hadas,Brooklyn,Williamsburg,40.71765,-73.9624,Entire home/apt,425,5,0,,,1,0 +3171480,HUGE 1BR in Prime West Village,6183406,Justin,Manhattan,West Village,40.73509,-74.00323,Entire home/apt,200,4,4,2016-09-22,0.07,1,0 +3171880,Light Filled Loft Studio in Fort Greene,847230,Benjamin,Brooklyn,Fort Greene,40.68731,-73.9745,Entire home/apt,165,3,7,2019-04-21,0.19,1,0 +3172212,Spacious room in artist Loft,7351,Tanda,Brooklyn,South Slope,40.66257,-73.98777,Private room,85,2,23,2019-06-10,0.45,3,363 +3172778,PRIME WILLIAMSBURG FAMILY ART LOFT,16109802,Daphna,Brooklyn,Williamsburg,40.71262,-73.95676,Entire home/apt,170,7,20,2019-06-30,0.33,1,44 +3173148,BEAUTIFUL Williamsburg Palace!,6396561,Justin,Brooklyn,Williamsburg,40.70675,-73.94984,Private room,70,3,69,2019-04-30,1.13,1,142 +3173412,Big room & private bathroom!,16092773,Erin & Becky,Brooklyn,Crown Heights,40.66638,-73.95229,Private room,125,2,36,2018-12-01,0.60,1,7 +3175088,SPACIOUS ARTIST LOFT IN CHELSA,16100913,S Anthony,Manhattan,Chelsea,40.74449,-73.99445,Entire home/apt,275,3,63,2019-06-16,1.02,1,323 +3176526,Great room with private bathroom!!,14325632,Sil,Brooklyn,Crown Heights,40.67476,-73.95312,Private room,120,2,8,2019-06-17,2.20,2,162 +3176553,Studio Plus at Hilton West 57th ,16107699,Mary,Manhattan,Midtown,40.76552,-73.97738,Entire home/apt,429,2,0,,,1,0 +3176655,Lovely Single Family House in South Slope,16108191,David,Brooklyn,South Slope,40.66488,-73.98725,Entire home/apt,225,4,2,2018-12-30,0.11,1,0 +3176874,New 2 Bed.apt. 10 min to NYC! one block from train,16108973,Vlado & Sandra,Queens,Astoria,40.76068,-73.91359,Entire home/apt,119,2,217,2019-06-21,3.67,1,214 +3177630,Large Studio w/ NEW MATTRESS in UES,16114134,Jeff,Manhattan,Upper East Side,40.77737,-73.95032,Entire home/apt,175,3,6,2016-06-13,0.10,1,0 +3177702,Brooklyn Flat in Historic Row House,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68291,-73.94613,Entire home/apt,155,3,44,2019-05-27,0.71,5,363 +3181376,"Homey, inviting 1BR w/ lots of room",8158276,Matthew,Manhattan,Inwood,40.85893,-73.92985,Entire home/apt,100,3,1,2016-01-03,0.02,1,0 +3185489,Private Bedroom in Nice Apt. Near Riverside Park!,16142344,Jeffrey,Manhattan,Harlem,40.82165,-73.95491,Private room,70,3,16,2016-07-31,0.26,1,209 +3185829,2BR Private Apt Guest Homestay,16151285,Carol,Bronx,Williamsbridge,40.88075,-73.84845,Entire home/apt,95,3,58,2019-06-10,0.96,4,358 +3186103,Park Slope 3 BR Duplex with Garden,16152979,Ryan,Brooklyn,Park Slope,40.67507,-73.97706,Entire home/apt,450,2,12,2019-04-22,0.20,1,13 +3187925,Brownstone Luxury Apartment Facing Ft.Greene Park,11249746,Stanley,Brooklyn,Fort Greene,40.69117,-73.97421,Entire home/apt,215,5,28,2019-05-25,0.53,1,106 +3191450,Cozy Bedroom by Prospect Park BKLYN,241593,Thomas,Brooklyn,Flatbush,40.64996,-73.9615,Private room,60,3,4,2015-07-23,0.07,2,0 +3191678,Private Room in Riverdale NY,9122601,Yan,Bronx,Fieldston,40.89603,-73.89958,Private room,75,5,35,2019-05-11,0.67,1,300 +3191925,Art Room + Backyard in Williamsburg,3772684,Glasshouse,Brooklyn,Williamsburg,40.70667,-73.94921,Private room,99,3,22,2017-09-04,0.36,2,11 +3198018,Park slope 2BR duplex with garden,738918,Birgitta,Brooklyn,Park Slope,40.67561,-73.97823,Entire home/apt,300,2,85,2019-06-16,1.81,2,268 +3198365,Cozy Studio Close to Central Park,16209547,Gina,Manhattan,Harlem,40.80185,-73.95667,Entire home/apt,175,2,142,2019-06-29,2.39,2,339 +3198824,Bright 1 bedroom near Columbia,9523245,Albane,Manhattan,Upper West Side,40.79739,-73.96945,Entire home/apt,195,3,8,2017-07-09,0.13,1,0 +3199681,Bright & Sunny FULLY FURNISHED Room,627678,Nathan,Queens,Forest Hills,40.73381,-73.85366,Private room,50,7,2,2018-08-20,0.15,1,140 +3200198,Hell's Kitchen One Bedroom (near Times Square),16217769,Karlan,Manhattan,Hell's Kitchen,40.76309,-73.99155,Entire home/apt,175,4,1,2017-01-02,0.03,1,0 +3200522,Brooklyn 3BR Near Subways,1369577,Thomas & Gaby,Brooklyn,Crown Heights,40.67499,-73.92427,Entire home/apt,120,5,175,2019-06-19,2.86,2,56 +3200728,Sunlit Room near Prospect Park!,727114,Anthony,Brooklyn,Flatbush,40.64677,-73.96946,Private room,54,10,11,2015-07-03,0.19,1,0 +3201696,Cozy 5 Bdrm in Historic Harlem NY,13789963,Larry,Manhattan,Harlem,40.82931,-73.94358,Entire home/apt,345,3,141,2019-07-05,2.34,1,273 +3202590,The Lincoln,9209820,Althea,Brooklyn,Crown Heights,40.67138,-73.94949,Entire home/apt,225,3,76,2019-05-18,1.24,3,275 +3205292,Large Sunny Open Brooklyn Apartment,1832751,Chris,Brooklyn,Boerum Hill,40.68823,-73.98604,Entire home/apt,151,28,12,2016-10-24,0.30,1,54 +3206224,Improved Response Rate@ The Valley,16245414,Shae,Brooklyn,Bushwick,40.69368,-73.92295,Entire home/apt,110,1,189,2019-06-15,3.06,4,179 +3206379,Luxury apartment in Manhattan.,16245979,Karima,Manhattan,Upper East Side,40.77059,-73.94991,Entire home/apt,280,2,17,2018-03-23,0.28,1,0 +3207986,"Modern loft in Cobble Hill, BK",1874429,Lisa,Brooklyn,Boerum Hill,40.68558,-73.9903,Private room,99,1,75,2019-05-31,1.28,1,125 +3208188,3BR Carroll Gardens townhouse loft,16254543,Jennifer,Brooklyn,Carroll Gardens,40.67863,-73.99399,Entire home/apt,350,3,8,2018-08-18,0.14,1,0 +3208609,"W'burg Brooklyn, Sunny, Spacious, Private",1465030,Gautam,Brooklyn,Williamsburg,40.71042,-73.94702,Private room,70,5,0,,,1,0 +3208747,Cute UWS Studio Near Central Park Clean & Quiet,8658146,Michelle,Manhattan,Upper West Side,40.77802,-73.98256,Entire home/apt,120,3,214,2019-06-21,3.47,1,197 +3208904,Chic Designer’s Room & 2 Beds in Manhattan LES,16257970,Jackie,Manhattan,Lower East Side,40.71254,-73.98535,Private room,89,3,231,2019-07-07,3.72,2,177 +3209866,"Cozy 1br - Fort Greene, Brooklyn",16258619,Folake,Brooklyn,Fort Greene,40.69802,-73.97614,Private room,120,3,1,2014-09-17,0.02,1,365 +3209980,Private room in 2B East Village!,16264357,Tal,Manhattan,East Village,40.7215,-73.97747,Private room,85,5,142,2019-07-05,2.30,1,80 +3210405,BEAUTIFUL DESIGNER SOHO LOFT,16266298,Caroline,Manhattan,Little Italy,40.71883,-73.99716,Entire home/apt,220,2,119,2018-03-03,1.93,1,0 +3212765,A single room that converts with bathroom,11837926,Anthony,Manhattan,Midtown,40.76429,-73.98043,Private room,125,7,17,2019-07-01,0.29,3,309 +3213712,LUXURY 1 BR MIDTOWN w POOL & GYM,1014484,Petek,Manhattan,Murray Hill,40.74814,-73.97277,Entire home/apt,189,1,3,2016-01-05,0.05,1,0 +3213813,Beautiful Room+Shared Living Room,16279457,Michael,Brooklyn,Crown Heights,40.66985,-73.95675,Private room,100,7,0,,,1,0 +3215486,Large sunny private room downtown,7691955,Ingrid,Manhattan,Lower East Side,40.71981,-73.98701,Private room,81,3,9,2017-10-15,0.19,1,0 +3215660,Comfortable sofa bed in Manhattan,6150328,Heather,Manhattan,East Harlem,40.79794,-73.93876,Shared room,45,2,136,2019-06-23,2.22,1,15 +3215722,Airy Duplex Room with Private Bath,496465,Daniel,Brooklyn,Williamsburg,40.71622,-73.93942,Private room,150,21,0,,,1,0 +3216134,Tranquil Washington Heights Space ,16288210,Cheryl,Manhattan,Washington Heights,40.84919,-73.94021,Private room,62,3,37,2017-05-09,0.61,1,35 +3216335,Quiet Park Slope Apartment - August specials!,16288928,Julie,Brooklyn,Park Slope,40.68193,-73.97636,Entire home/apt,330,2,122,2019-06-12,1.98,2,351 +3216400,1 BR minutes from Central Park!,9502879,Maria,Manhattan,Upper East Side,40.76158,-73.96031,Private room,80,2,10,2017-05-03,0.25,1,0 +3217221,"Quiet, Full bed, Sleeps 1 or 2 ppl",16251030,Ford,Manhattan,Washington Heights,40.8365,-73.93688,Shared room,65,2,9,2017-03-02,0.21,1,0 +3218320,SOHO Studio Best Location,3321910,Carl,Manhattan,Nolita,40.72243,-73.99655,Private room,125,6,3,2015-07-11,0.05,1,43 +3218526,Sunny Suite in Historic Brooklyn,103640,Samantha And Scott,Brooklyn,Flatbush,40.63649,-73.96508,Entire home/apt,165,2,172,2019-07-06,3.10,1,264 +3219401,Lovely room in Greenwich Village,3481965,Pierre-Hubert,Manhattan,Greenwich Village,40.72928,-74.00135,Private room,90,4,3,2017-01-01,0.05,1,0 +3219654,2 Bedroom Garden Apt. Park Slope,16304160,Laurie,Brooklyn,South Slope,40.66565,-73.98782,Entire home/apt,120,3,8,2017-09-02,0.13,1,9 +3219835,Beautiful Row House Steps From Park,16305093,Betsy,Brooklyn,Windsor Terrace,40.65779,-73.97595,Entire home/apt,250,1,0,,,2,0 +3220115,Large 1-bedroom in Brooklyn,16306708,Melissa,Brooklyn,Clinton Hill,40.68331,-73.96568,Entire home/apt,115,7,6,2015-01-12,0.10,1,0 +3220178,Artist's home near park and trains,16307118,Dov,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.95719,Private room,55,1,47,2019-06-22,0.79,1,249 +3220725,Orchard St,15646137,Joe,Manhattan,Lower East Side,40.71813,-73.99063,Entire home/apt,200,30,0,,,1,365 +3223080,Modern Renovated Luxury 1BR - Soho,16319729,Tim,Manhattan,SoHo,40.72652,-74.00266,Entire home/apt,149,1,0,,,1,0 +3224913,Private Nook in Bushwick Improved Response Rate,16245414,Shae,Brooklyn,Bushwick,40.69436,-73.9253,Entire home/apt,55,1,115,2019-06-23,1.91,4,64 +3225975,Spacious Townhouse Great for Families & Friends,16329859,Caroline,Brooklyn,Gowanus,40.68338,-73.98927,Entire home/apt,400,6,34,2018-12-30,0.56,1,1 +3227002,Sunny 2 bedroom in Fort Greene,2941712,Claudia,Brooklyn,Clinton Hill,40.68717,-73.9669,Entire home/apt,200,5,3,2015-07-03,0.05,1,0 +3230053,Modern 1BR apt in Greenpoint/Williamsburg Brooklyn,4427756,May,Brooklyn,Greenpoint,40.7215,-73.94136,Entire home/apt,111,2,45,2019-02-24,3.08,1,0 +3231460,Bright & Spacious Fort Greene 1 Bed,15384170,Jonathan,Brooklyn,Fort Greene,40.68727,-73.972,Entire home/apt,175,3,12,2016-07-31,0.20,1,0 +3235070,"Peaceful, beautiful home away ",14337132,Norva,Manhattan,Harlem,40.80118,-73.95451,Entire home/apt,150,2,31,2019-06-16,0.54,1,0 +3236301,Private room in Harlem,5164854,Lilia,Manhattan,Harlem,40.82075,-73.9379,Private room,52,7,17,2018-10-07,0.28,8,17 +3236385,Cute and Cozy Two Bedroom in Sunset Park,16376419,Brooke,Brooklyn,Sunset Park,40.64811,-74.01366,Entire home/apt,88,30,2,2019-01-07,0.09,1,101 +3236977,Private 3 Floor Whole Hse/Garden,11494077,Melissa,Brooklyn,Carroll Gardens,40.68252,-73.99224,Entire home/apt,425,6,5,2019-07-05,0.08,1,321 +3237160,Spacious East Village Gem -Union Sq,4928687,Yuval,Manhattan,East Village,40.7278,-73.97997,Entire home/apt,175,1,2,2017-07-01,0.05,1,0 +3237602,STUNNING WILLIAMSBURG HOME W/GARDEN,16379550,Elizabeth,Brooklyn,Williamsburg,40.72123,-73.95891,Entire home/apt,270,14,0,,,1,0 +3238109,Cozy 1 BR in a 4br/2ba apartment!!!,16383743,Yuma,Brooklyn,Flatbush,40.64964,-73.96017,Private room,180,1,0,,,1,0 +3238355,Amazing & Bright Loft-style Room,2656209,Aurelie,Brooklyn,Williamsburg,40.70552,-73.93842,Private room,55,13,0,,,1,0 +3238517,Brooklyn Cozy Garden Apt,16385595,Ava,Brooklyn,Bedford-Stuyvesant,40.67994,-73.94318,Private room,105,14,26,2019-06-05,0.42,1,285 +3240518,Elegant 1876 Boerum Hill Brownstone,16395150,Patti,Brooklyn,Boerum Hill,40.68554,-73.98471,Entire home/apt,265,2,10,2016-09-07,0.18,1,0 +3240838,Sunny and cozy room in Midtown,16396714,Andrea,Manhattan,Kips Bay,40.74059,-73.97953,Private room,60,2,15,2019-04-27,0.25,3,188 +3241287,Small Cozy Private Room in NYC,16399575,Kristiana,Manhattan,Washington Heights,40.83686,-73.94393,Private room,45,3,13,2016-01-02,0.21,1,0 +3241502,Modern Bedroom & Living Room Combination!,4422817,Malik,Manhattan,East Harlem,40.80801,-73.93854,Private room,89,2,7,2019-05-13,0.92,1,0 +3241858,Right in the center of Manhattan,1866033,Chen,Manhattan,Upper East Side,40.7659,-73.96611,Entire home/apt,200,4,102,2019-06-26,1.70,1,6 +3245000,Spacious prewar apartment in heart of Greenpoint,13561307,Katy,Brooklyn,Greenpoint,40.7238,-73.94859,Entire home/apt,149,1,2,2019-03-18,0.28,1,0 +3247291,Comfort and Charm in Harlem Brownstone near Subway,16425715,Soon,Manhattan,Harlem,40.81198,-73.9437,Private room,80,1,134,2019-07-03,4.36,1,227 +3248010,Chic Aptmnt close to Barclay Center,1588656,Rebekah,Brooklyn,Park Slope,40.67794,-73.97398,Entire home/apt,125,1,154,2019-06-25,3.05,2,122 +3248526,Beautiful Comfortable Apt in North Manhattan,16430857,Aseel,Manhattan,Harlem,40.82524,-73.94186,Entire home/apt,78,5,13,2018-09-16,0.22,1,0 +3248671,Private Room in Artist's Loft,6032480,Anna,Brooklyn,Williamsburg,40.71207,-73.95077,Private room,65,2,152,2019-06-18,2.50,2,80 +3249076,"One stop from Manhattan, Fort Greene.",16433878,Laurence,Brooklyn,Fort Greene,40.68833,-73.97606,Entire home/apt,350,7,5,2018-07-18,0.14,1,0 +3249078,Brooklyn Heights 1.5BR and Cat Sit,1705205,Ebonie,Brooklyn,Brooklyn Heights,40.6906,-73.99339,Entire home/apt,115,5,0,,,1,0 +3249253,Panoramic Penthouse - 30% OFF,14369316,Jon,Manhattan,Chelsea,40.74156,-73.99476,Entire home/apt,289,2,1,2014-06-28,0.02,1,0 +3249726,"High Ceilings, Period Details",16437254,Benjamin,Brooklyn,Sunset Park,40.66592,-73.99434,Entire home/apt,158,30,1,2018-12-07,0.14,21,365 +3250685,Great East Harlem spot for 1 or 2,16442583,Ali,Manhattan,East Harlem,40.79848,-73.93908,Private room,50,2,6,2016-07-06,0.11,1,0 +3251014,Cozy but Cool:Huge 1bed in ❤️of NY,8349905,Lorna,Manhattan,Midtown,40.76016,-73.96597,Entire home/apt,234,4,5,2015-10-09,0.08,1,0 +3251638,"Subletting in CrownHeights,Brooklyn",8243983,Sara,Brooklyn,Crown Heights,40.66758,-73.95033,Private room,50,1,0,,,1,0 +3251901,Huge Room in Manhattan's Upper West,6726808,Eve,Manhattan,Upper West Side,40.80131,-73.9675,Private room,69,5,2,2017-03-08,0.03,1,0 +3257345,Beautiful LES Apartment,417100,Tara,Manhattan,Chinatown,40.71338,-73.99226,Entire home/apt,135,1,18,2016-12-16,0.35,1,0 +3258196,"Big sunny room, prime location!",169843,Goran,Brooklyn,Williamsburg,40.71601,-73.9587,Private room,89,3,73,2019-01-07,1.19,1,359 +3258197,Large 1br Duplex in Heart of Upper East Side,16477306,Jeff,Manhattan,Upper East Side,40.76866,-73.95553,Entire home/apt,16,2,21,2019-06-30,1.69,1,9 +3261569,Big Private 4 bedrooms 1 bathroom Near Subway!,10297692,Dee,Brooklyn,Crown Heights,40.67658,-73.93122,Entire home/apt,300,1,32,2019-05-25,0.52,2,254 +3262238,Murray Hill Modern,124345,Ramon,Manhattan,Kips Bay,40.74436,-73.97977,Entire home/apt,250,5,49,2019-06-30,0.83,1,234 +3262855,BEAUTIFUL ROOM NEAR PROSPECT PARK!!,16499705,John,Brooklyn,Flatbush,40.65148,-73.95847,Entire home/apt,70,1,5,2015-12-01,0.08,1,0 +3262930,Cosy room with private bathroom-NYC,16500110,Irena,Manhattan,Upper East Side,40.76572,-73.95541,Private room,140,3,118,2019-06-24,1.91,1,316 +3264261,Spacious Studio in Midtown,5668550,Kevin,Manhattan,Midtown,40.75182,-73.97052,Entire home/apt,175,3,18,2017-09-11,0.30,1,0 +3264684,Carroll Gardens - Two Bedroom Apartment,8830645,Kevin,Brooklyn,Carroll Gardens,40.6812,-74.00116,Entire home/apt,160,3,2,2015-08-12,0.03,1,0 +3265275,"2BR, UWS, Doorman, Balcony, CntrlPK",16512899,Jeremy,Manhattan,Upper West Side,40.7898,-73.9708,Entire home/apt,200,1,0,,,1,0 +3265407,Sunny Brooklyn room,9944244,Linnea,Brooklyn,Prospect Heights,40.67303,-73.96424,Private room,57,7,11,2019-04-27,0.18,1,0 +3265409,Charming Chelsea bedroom,5508109,Rivani,Manhattan,Chelsea,40.74956,-73.99671,Private room,90,3,2,2019-06-28,1.58,1,53 +3265410,Private Apartment 15 Minutes from the Big Apple,16514175,Karen,Queens,Elmhurst,40.74644,-73.88656,Private room,89,2,40,2018-01-02,0.65,5,1 +3265982,"Clean design, One BD, Renovated!",16516195,Tania,Brooklyn,Park Slope,40.67766,-73.98191,Entire home/apt,90,4,22,2018-11-15,0.37,1,13 +3268008,West Village designer studio,16525423,Matt,Manhattan,West Village,40.73547,-74.0051,Entire home/apt,200,4,48,2019-07-02,0.82,1,312 +3269281,Stylish 2BR in heart of Park Slope,1746811,Jon,Brooklyn,Park Slope,40.67751,-73.98143,Entire home/apt,100,2,52,2019-06-30,1.08,2,30 +3270009,Private oasis-charming gingerbread home!❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68174,-73.93444,Entire home/apt,68,30,14,2019-04-19,0.41,5,334 +3270428,Large East Village One Bedroom ,16536815,Daniel,Manhattan,East Village,40.72823,-73.9817,Entire home/apt,170,4,14,2017-10-23,0.23,1,0 +3270702,Lovely room in big shared Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.6774,-73.94566,Private room,40,28,13,2018-12-24,0.22,3,318 +3270809,Artist Loft in Lower East Side with Roof,14289427,Francesca,Manhattan,Chinatown,40.71613,-73.99266,Entire home/apt,500,4,6,2018-12-12,0.18,3,341 +3271052,Gorgeous Apt 1 block from Subway,2009585,Cecile,Brooklyn,Cobble Hill,40.68785,-73.99181,Entire home/apt,145,3,13,2016-08-14,0.22,1,0 +3271893,Park Slope Town House,327673,Stefano,Brooklyn,Park Slope,40.67592,-73.98107,Entire home/apt,250,3,16,2019-07-05,0.27,2,6 +3272201,Gorgeous Chic Apt on Prime West Village Street,16545323,Katie,Manhattan,West Village,40.73504,-74.00658,Entire home/apt,288,7,14,2017-11-06,0.23,1,222 +3272552,"Tasteful, calm, central 2BR/2Baths",4233003,Roy,Brooklyn,Williamsburg,40.71314,-73.96719,Entire home/apt,245,3,18,2017-09-03,0.30,1,0 +3272628,cozy harlem getaway,1568951,Laura,Manhattan,Harlem,40.80407,-73.94603,Entire home/apt,80,3,12,2019-04-07,0.25,1,0 +3272721,Beautiful Penthouse Apt - Brooklyn,4080758,Arun,Brooklyn,Prospect Heights,40.68033,-73.96528,Entire home/apt,125,5,5,2016-01-05,0.08,1,0 +3276963,"Huge, Perfect Location West Village",16566615,Celeste,Manhattan,West Village,40.73691,-74.00013,Entire home/apt,166,14,18,2019-06-24,0.30,1,48 +3278436,UWS 2 BR 2 Ba. Gorgeous Apt!,7105630,Christine,Manhattan,Upper West Side,40.78206,-73.97797,Entire home/apt,330,4,11,2017-11-25,0.18,1,260 +3278530,Private room in Williamsburg apt,16572580,Travis,Brooklyn,Williamsburg,40.70943,-73.94948,Private room,60,5,6,2017-09-06,0.16,2,0 +3278631,Private Bedroom Available June 1,16572957,Hope,Manhattan,East Harlem,40.8008,-73.94347,Private room,130,1,3,2015-06-06,0.05,1,0 +3278691,Sunny and Bright Room with a Terrace,16069319,Julie,Brooklyn,Gravesend,40.59601,-73.96862,Private room,45,30,4,2016-09-01,0.07,1,0 +3279671,Quiet 1BR in Chelsea,109738,Michelle,Manhattan,Chelsea,40.7518,-73.9969,Entire home/apt,165,3,159,2019-05-25,2.71,1,75 +3281606,"great spacious 2BR duplex apt in S. Harlem, NYC",16509287,Taller,Manhattan,Harlem,40.80002,-73.95559,Private room,155,2,14,2018-12-09,0.23,1,172 +3281660,Penthouse next to Central Park !,418289,Andrey,Manhattan,Upper East Side,40.77449,-73.96228,Entire home/apt,119,60,1,2017-06-06,0.04,1,0 +3282550,Quintessential Brooklyn...!!,1174963,Aaron,Brooklyn,Boerum Hill,40.6846,-73.98454,Entire home/apt,158,3,12,2015-06-08,0.19,1,0 +3283028,"NICE Williamsburg Brooklyn, 2 Bedrooms off L train",16591767,Danny,Brooklyn,Williamsburg,40.71165,-73.94708,Entire home/apt,169,5,51,2019-06-02,0.83,1,91 +3283409,Beautiful Brooklyn Brownstone,16593547,Mary & Josh,Brooklyn,Bedford-Stuyvesant,40.68562,-73.92375,Entire home/apt,139,2,124,2019-06-25,2.09,1,231 +3283729,"Beautiful, Furnished Studio!",16596651,Gautam,Manhattan,Upper East Side,40.77787,-73.95104,Entire home/apt,125,4,7,2015-11-15,0.11,1,0 +3284019,Spacious and Sunny 1BDR Astoria NYC,15055035,Michelle,Queens,Astoria,40.7631,-73.92262,Private room,70,3,25,2016-07-30,0.41,1,353 +3286369,Close to JFK & LGA Feels like home,16608415,Smidty,Brooklyn,East New York,40.67517,-73.89814,Private room,135,1,173,2019-07-02,4.69,3,162 +3288496,Entire Cozy One Bed #Manhattan #LES,3716641,Ofer,Manhattan,Lower East Side,40.71769,-73.98953,Entire home/apt,99,30,8,2018-02-27,0.13,8,170 +3288625,Sunny and Spacious 1BR Loft in Williamsburg,4042938,Alexandra,Brooklyn,Williamsburg,40.71189,-73.96282,Entire home/apt,175,10,0,,,1,0 +3289009,Quiet Brooklyn Apartment ,5231131,Danielle,Brooklyn,Greenpoint,40.72096,-73.94424,Entire home/apt,150,7,0,,,1,0 +3290309,Oasis in the heart of New York,16622685,Amanda,Manhattan,Nolita,40.72235,-73.99543,Entire home/apt,250,3,30,2019-05-24,0.51,1,173 +3291286,Private Room in great neighborhood,16628226,Rachel,Queens,Long Island City,40.7593,-73.92884,Private room,100,1,0,,,1,0 +3291524,Great Location,15740819,Heather,Brooklyn,Fort Greene,40.69236,-73.97254,Private room,100,30,5,2018-07-30,0.08,2,10 +3293500,Brooklyn Garden Level 2bdrm Home,16580725,Faith,Brooklyn,Bedford-Stuyvesant,40.68073,-73.90915,Entire home/apt,128,3,89,2018-12-29,1.53,1,32 +3293842,Brooklyn Living with Balcony!,16641600,Theresa,Brooklyn,Sunset Park,40.66294,-73.99675,Entire home/apt,121,12,8,2019-04-27,0.13,2,7 +3297016,Super cute private room +amminities,2051075,Linda,Brooklyn,Crown Heights,40.67045,-73.95716,Entire home/apt,160,30,36,2019-06-15,0.63,2,228 +3301484,"Great Apt, Great Area",56920,Linda,Manhattan,Upper West Side,40.80118,-73.97063,Private room,135,2,0,,,2,352 +3302463,Luxurious Brownstone Parlour,16678513,Robert,Manhattan,Gramercy,40.73548,-73.98896,Entire home/apt,275,5,30,2019-06-22,0.50,1,20 +3302905,Great west village studio,16680791,Adam,Manhattan,West Village,40.7381,-74.00489,Entire home/apt,180,3,3,2017-10-29,0.07,1,0 +3302921,Cozy quiet East Village room/en suite bathroom,16680861,Carrie,Manhattan,East Village,40.72749,-73.99071,Entire home/apt,189,2,138,2019-06-23,2.86,1,203 +3302932,Whole beautiful house with Backyard,2082345,Rabah,Queens,Woodhaven,40.69165,-73.84841,Entire home/apt,250,5,0,,,1,32 +3303165,Ocean Hill Oasis,4279827,Louisa,Brooklyn,Cypress Hills,40.67731,-73.90733,Entire home/apt,99,2,148,2019-06-26,2.46,1,235 +3303301,Superhost! Modern Private APT/15min Manhattan,12385603,Anne,Brooklyn,Bedford-Stuyvesant,40.68207,-73.94994,Entire home/apt,200,5,120,2019-06-29,2.00,1,193 +3303382,Hamilton Heights - Private Guest Suite,16683574,Delphine And Michael,Manhattan,Harlem,40.82888,-73.94997,Entire home/apt,145,4,115,2019-06-29,1.90,2,262 +3304307,Lovely Shiny Private Room in NYC,12465884,Natasha,Manhattan,East Harlem,40.79269,-73.94218,Private room,100,3,64,2019-06-01,1.05,1,219 +3307936,NYC Studio Loft in Meatpacking ,7889819,Tara,Manhattan,West Village,40.73993,-74.00619,Entire home/apt,240,1,22,2015-10-24,0.37,1,0 +3309572,Private Room in Light-Filled Apt with Gym,341981,Amber,Brooklyn,Bedford-Stuyvesant,40.67822,-73.9389,Private room,90,3,52,2018-10-23,0.85,1,0 +3309982,3 Bedroom Brownstone in Historic Crown Heights.,16713474,Simone,Brooklyn,Crown Heights,40.66939,-73.94839,Entire home/apt,220,2,55,2019-01-01,0.91,1,306 +3311821,Williamsburg COZY SUNNY next2train!,430188,Pam,Brooklyn,Williamsburg,40.70648,-73.95444,Private room,100,20,62,2019-05-26,1.01,6,240 +3311830,Beautiful Clean & Quiet Room! Rm#1,11674837,Christopher,Queens,Ridgewood,40.70476,-73.90874,Private room,59,1,142,2019-06-16,2.34,3,359 +3311834,Apartment - private kitchen & bath,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68975,-73.9346,Entire home/apt,78,30,81,2018-08-31,1.33,3,188 +3312276,"Cozy studio/kitchen, bathroom",14214034,Desmar,Bronx,Mott Haven,40.81444,-73.92516,Entire home/apt,75,2,85,2019-06-09,1.41,2,253 +3312417,Cozy bedroom in Brooklyn!,3691863,Jessica,Brooklyn,Bedford-Stuyvesant,40.68172,-73.94095,Private room,78,3,86,2019-06-30,1.43,1,362 +3315933,Upper East Side 2 Bedroom Apartment,12774721,Morgan,Manhattan,Upper East Side,40.76884,-73.95826,Entire home/apt,250,1,4,2016-01-03,0.07,1,0 +3316877,Giant Private Townhouse w/ Garden,175694,Mia,Brooklyn,Bedford-Stuyvesant,40.6979,-73.94126,Entire home/apt,150,1,0,,,1,0 +3317978,Spacious Queen Size Room,16751902,Asher,Manhattan,Upper West Side,40.80048,-73.96621,Private room,44,1,2,2016-06-30,0.05,1,0 +3318859,Studio w/ Private Entry in Greenpoint Brooklyn,9306976,Aaron,Brooklyn,Greenpoint,40.73535,-73.9565,Private room,69,2,25,2019-02-12,0.47,2,125 +3319483,Room w/ Private Bathroom,1498951,Yolanda,Brooklyn,Bushwick,40.70247,-73.92061,Private room,65,1,0,,,1,5 +3320635,Sunny airy beautiful Brooklyn 1B,7640229,Lihi,Brooklyn,Flatbush,40.65376,-73.95336,Entire home/apt,90,7,4,2016-05-18,0.07,1,0 +3321643,Charming Colonial House in Brooklyn,1442768,Carolina,Brooklyn,East Flatbush,40.64082,-73.94818,Entire home/apt,125,4,10,2016-08-27,0.17,1,0 +3322922,"Cozy, Clean, Quiet, ENTIRE APT!!",18566028,Kitt,Brooklyn,Flatbush,40.6532,-73.96216,Entire home/apt,78,18,11,2015-08-03,0.20,1,0 +3323189,2000 sq ft Photographers loft,16777963,Dave,Manhattan,Chinatown,40.71556,-73.99234,Entire home/apt,785,2,85,2019-06-30,1.52,1,331 +3324203,Spacious Studio in my new smart house,16782573,Dorina,Queens,Middle Village,40.71347,-73.88199,Entire home/apt,99,3,160,2019-07-05,2.65,4,299 +3324498,Garden apt 15 mins from Manhattan,11827364,Cris,Queens,Sunnyside,40.73873,-73.92435,Private room,74,30,9,2018-08-24,0.16,1,76 +3325584,Cozy UWS Apt Close to Central Park / Times Square,16789954,Fate,Manhattan,Upper West Side,40.7995,-73.96965,Entire home/apt,130,4,2,2018-01-02,0.06,1,0 +3325617,LEGAL studio in Queens,16790098,Shawn & Christine,Queens,Woodside,40.74549,-73.90872,Entire home/apt,105,2,216,2019-06-18,3.54,1,70 +3325807,Large 1 BDR Apt on the UWS,3053578,Natalie,Manhattan,Upper West Side,40.79921,-73.96704,Entire home/apt,145,7,6,2016-10-06,0.10,1,0 +3328706,Central Park West. Queen Size Room,16805656,Fernando,Manhattan,Upper West Side,40.79893,-73.96249,Private room,90,1,146,2019-06-23,2.67,2,40 +3331279,Spacious Brooklyn Townhouse,3840659,Alicia And Jamie,Brooklyn,Bedford-Stuyvesant,40.6851,-73.95655,Entire home/apt,215,4,14,2018-04-05,0.23,1,0 +3332881,Apartment near Upper East Side,16826094,Jeremy,Manhattan,East Harlem,40.78728,-73.94976,Entire home/apt,100,3,1,2016-05-15,0.03,1,0 +3334361,Seven Days Sleep Near Prospect Park,16834792,Louis,Brooklyn,Prospect-Lefferts Gardens,40.65752,-73.95728,Entire home/apt,92,5,192,2019-07-06,3.14,2,281 +3334850,Charming Quiet Apartment in NYC (安靜公寓),16838156,Mark,Manhattan,Kips Bay,40.73953,-73.98009,Entire home/apt,185,29,5,2018-07-03,0.08,1,2 +3337808,Clean & Comfy Modern Townhouse,3655542,Alexis,Brooklyn,Boerum Hill,40.68732,-73.98254,Entire home/apt,1000,4,0,,,1,0 +3339205,Updated 1 bedroom heart of Chelsea,15689833,Whitney,Manhattan,Chelsea,40.74259,-74.00128,Entire home/apt,160,4,11,2017-01-02,0.18,1,1 +3339273,Quiet & Close to All + Washer/Dryer in Chelsea,7245581,Michael,Manhattan,Chelsea,40.75045,-73.99662,Entire home/apt,93,110,12,2019-02-18,0.26,19,329 +3339399,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73316,-74.00632,Entire home/apt,300,30,13,2019-05-20,0.24,39,291 +3341682,Prime Greenpoint/Williamsburg room,1558222,Nikki,Brooklyn,Greenpoint,40.72285,-73.95192,Private room,75,1,3,2015-10-19,0.05,3,0 +3343038,Mellow One Bedroom in Chelsea ,16872923,Spencer,Manhattan,Chelsea,40.74934,-74.00274,Entire home/apt,370,1,8,2014-08-28,0.13,1,365 +3343299,Gorgeous brownstone- NYC living! ,16874459,Nicole,Manhattan,Kips Bay,40.74369,-73.98153,Entire home/apt,425,2,4,2015-09-14,0.07,1,0 +3344177,Park Slope Haven,10457196,Richard,Brooklyn,South Slope,40.6674,-73.98273,Entire home/apt,200,30,4,2019-06-28,0.18,11,282 +3344237,Stay in the heart of the East side!,16879147,Alejandro,Manhattan,Midtown,40.75958,-73.96231,Private room,125,2,55,2019-06-27,0.89,1,348 +3344509,Beautiful Chelsea Loft 700 Sq ft,1290508,Robert,Manhattan,Chelsea,40.74646,-73.99678,Entire home/apt,179,10,1,2017-01-03,0.03,1,0 +3344815,Good Living in Brooklyn! Double Bed,16883036,Karen,Brooklyn,Bushwick,40.69893,-73.91549,Private room,46,2,55,2019-01-02,1.24,1,346 +3349699,Spacious apartment with garden,19402,Susanna,Brooklyn,Williamsburg,40.70972,-73.95576,Entire home/apt,150,5,37,2019-04-26,0.76,1,86 +3350417,Affordable Room in Artsy Apartment,12556197,Rez,Brooklyn,Crown Heights,40.66959,-73.95664,Private room,52,4,37,2017-03-04,0.60,2,0 +3351584,Amazing Oasis in NYC!,455017,Lauren,Manhattan,Washington Heights,40.83473,-73.93706,Private room,80,1,1,2019-05-25,0.67,1,351 +3352030,Delightful & Modern 1 Bedroom,317692,Tara,Brooklyn,Boerum Hill,40.68687,-73.98472,Entire home/apt,120,2,4,2015-09-27,0.08,1,0 +3352608,A Dream! Luxury 3 Bedroom Apt+Pking,16916853,Olga,Brooklyn,Sheepshead Bay,40.58527,-73.93534,Entire home/apt,300,5,8,2017-01-09,0.13,2,363 +3354367,Beautiful Brooklyn Heights Share,8882019,Katherine,Brooklyn,Brooklyn Heights,40.69846,-73.99312,Private room,110,2,1,2015-10-01,0.02,1,189 +3354459,Family home near Prospect Park,16926937,Johanna,Brooklyn,South Slope,40.66691,-73.98507,Entire home/apt,200,1,4,2019-04-27,0.07,1,0 +3354484,Sunny 1 bed home close to Manhattan,4319841,Maria,Brooklyn,Windsor Terrace,40.65181,-73.97648,Entire home/apt,75,5,9,2017-08-10,0.16,1,0 +3357882,Spacious and unique 1 bdrm / 2 bath,16942970,Caleb,Manhattan,Upper East Side,40.76649,-73.96453,Entire home/apt,200,5,49,2018-12-02,0.84,1,25 +3358937,ADORABLE 2BR in Chelsea!!,16947051,Cayla,Manhattan,Chelsea,40.74722,-74.00466,Entire home/apt,300,3,11,2016-04-17,0.19,1,0 +3359315,Sublet near Columbia University,16948705,Berhani,Manhattan,Harlem,40.81742,-73.95358,Private room,22,10,3,2015-08-08,0.05,1,0 +3359510,Gorgeous Loft w/ 2 queen beds & full kitchen!,7503643,Vida,Brooklyn,Greenpoint,40.72428,-73.94348,Entire home/apt,129,30,15,2019-06-30,0.27,52,157 +3362302,TRENDY LOWER EAST SIDE STUDIO,16962600,Debris,Manhattan,Lower East Side,40.71866,-73.98592,Entire home/apt,125,7,4,2015-01-30,0.07,1,0 +3363364,Cozy 1 bedroom in charming home.,16968100,Sandra,Brooklyn,East Flatbush,40.65284,-73.94413,Private room,150,1,0,,,1,299 +3363462,Gorgeous Studio Apt Upper East Side,16968641,Tanya,Manhattan,Upper East Side,40.77486,-73.94857,Entire home/apt,185,5,18,2019-05-20,0.30,1,31 +3367150,"Sunny, spacious, 1BR in Willamsburg",16989237,Aleksandra,Brooklyn,Williamsburg,40.71626,-73.95795,Entire home/apt,158,4,17,2017-07-24,0.28,1,0 +3368427,Happy big family,4044499,Alexander,Brooklyn,Flatbush,40.65287,-73.96353,Private room,30,1,0,,,1,0 +3368441,Modern rowhouse in prime Ft Greene,5783747,Kathrine,Brooklyn,Fort Greene,40.68981,-73.97768,Entire home/apt,316,3,29,2019-06-23,0.49,1,6 +3369100,Park Slope Studio Apartment,16106756,Michael,Brooklyn,Park Slope,40.67978,-73.97458,Entire home/apt,175,3,176,2019-06-26,2.88,1,0 +3369623,Astoria: full apartment,17000648,Michael,Queens,Astoria,40.7743,-73.92579,Entire home/apt,97,3,33,2016-01-02,0.65,1,0 +3369826,Quant 1bdrm in midtown west,17001535,Paul,Manhattan,Hell's Kitchen,40.75524,-73.99839,Entire home/apt,175,1,1,2014-09-24,0.02,1,347 +3369929,Couch in E. Williamsburg Luxury Apt,1910452,Thuy,Brooklyn,Williamsburg,40.70586,-73.94135,Shared room,60,1,0,,,2,0 +3370285,Private Charming Spacious Bedroom,17003476,Catherine,Brooklyn,Crown Heights,40.67591,-73.93985,Private room,72,3,6,2016-06-15,0.10,1,83 +3372399,Lisa's Townhouse - Luxury & Style,17015217,Peter,Brooklyn,Bedford-Stuyvesant,40.68753,-73.93656,Entire home/apt,175,5,82,2019-01-01,1.41,1,0 +3372642,"Upper West Side Apt, One Block to Central Park",1283991,Loubna,Manhattan,Upper West Side,40.78818,-73.97133,Entire home/apt,225,3,0,,,1,0 +3372925,Beautiful Summer Sublet in Ditmas Park Brooklyn,17018997,Paul,Brooklyn,Flatbush,40.64615,-73.9641,Entire home/apt,85,5,1,2017-07-03,0.04,1,0 +3373030,"Cute,Cozy Lower East Side 1bdrm",7549,Ben,Manhattan,Lower East Side,40.71307,-73.99025,Entire home/apt,150,1,60,2019-06-25,1.00,4,188 +3375448,Williamsburg Garden Apartment,2377104,Hannah,Brooklyn,Williamsburg,40.71122,-73.94985,Entire home/apt,225,2,257,2019-06-23,4.21,2,179 +3375998,"Manhattan Club Dec. 23-30, 2017",17032761,Julia,Manhattan,Midtown,40.76423,-73.98187,Private room,400,7,5,2017-12-30,0.09,1,0 +3376567,Luxury Duplex in Williamsburg with private bath,2042864,Anna,Brooklyn,Williamsburg,40.70926,-73.94673,Private room,125,4,14,2018-03-20,0.30,1,0 +3376999,Fabulous Family Getaway,17036912,Julia,Brooklyn,Crown Heights,40.66911,-73.94824,Entire home/apt,200,3,153,2019-06-24,2.64,1,260 +3378404,WHOLE LARGE 1-BEDROOM APARTMENT,3463555,David,Manhattan,Washington Heights,40.85304,-73.93555,Entire home/apt,88,2,0,,,1,0 +3378576,Private room in Williamsburg Apt,6273146,Jon,Brooklyn,Williamsburg,40.70935,-73.94614,Private room,250,1,0,,,1,0 +3378585,Beautiful Studio Near Times Square ,13535952,Nastassia,Manhattan,Hell's Kitchen,40.76125,-73.99642,Entire home/apt,300,1,0,,,1,0 +3379914,Spacious & Cozy NYC Apartment in Brooklyn/Queens,9317567,Suzy,Queens,Ridgewood,40.70026,-73.90721,Entire home/apt,89,10,10,2019-03-18,0.18,1,222 +3383382,Modern 1 BR + terrace in Gramercy,908514,David,Manhattan,Kips Bay,40.73873,-73.981,Entire home/apt,165,2,25,2019-05-27,0.41,1,0 +3383662,Affordable Room in Beautiful Apt !,6146050,Victoria,Manhattan,Financial District,40.70885,-74.002,Private room,84,15,0,,,2,0 +3386226,"Lovely 2 Floor Home, Gem in Heart of Williamsburg!",4185064,Paulina,Brooklyn,Williamsburg,40.71649,-73.96166,Entire home/apt,285,1,89,2019-06-23,1.47,2,110 +3386746,Extra Large 1BR,17087544,Hannah,Brooklyn,Windsor Terrace,40.64846,-73.97338,Entire home/apt,150,4,26,2015-09-15,0.44,1,0 +3386923,"cozy room, close to trains, explore brooklyn!",2468616,Arika,Brooklyn,Crown Heights,40.66955,-73.95027,Private room,70,2,10,2019-06-08,0.16,2,68 +3387493,Superior Two BR - UES (30 Days MIN),15310997,Mor,Manhattan,Upper East Side,40.78193,-73.94884,Entire home/apt,300,30,3,2017-11-30,0.05,9,365 +3390839,Beautiful 2BD in Brooklyn Heights,3435970,Reno,Brooklyn,Brooklyn Heights,40.691,-73.99467,Entire home/apt,220,5,3,2018-11-04,0.13,1,186 +3391220,"City retrieve -confort,quite,light",3542562,Jana,Manhattan,Harlem,40.82491,-73.94774,Entire home/apt,149,31,0,,,4,77 +3393798,Greenwich Village cozy 1-2BD with outdoor space,8597778,Nadine,Manhattan,West Village,40.73817,-74.00274,Entire home/apt,249,3,6,2016-08-11,0.10,1,0 +3393999,Spacious 1 bd in Crown Heights,2443535,Avraham,Brooklyn,Crown Heights,40.67321,-73.93093,Entire home/apt,90,7,0,,,1,0 +3394044,Panoramic view of Upper Manhattan!,10657357,Ivan,Manhattan,Washington Heights,40.83367,-73.94298,Private room,69,3,18,2019-05-04,0.29,4,270 +3394314,Entire lux apt in Williamsburg - 30 days or more,12057272,Nicky,Brooklyn,Greenpoint,40.71959,-73.95153,Entire home/apt,120,30,77,2016-05-16,1.30,1,3 +3394517,A cozy room in a 3 bedroom apt,17125263,Mario,Manhattan,East Harlem,40.80174,-73.93925,Private room,69,2,60,2019-06-29,1.05,2,271 +3394768,Your NYC haven at Upper Manhattan!,10657357,Ivan,Manhattan,Harlem,40.83058,-73.9495,Private room,54,5,21,2019-04-29,0.34,4,187 +3394964,Your Manhattan haven: dressed in red,10657357,Ivan,Manhattan,Washington Heights,40.83132,-73.94101,Private room,50,5,24,2019-06-27,0.39,4,177 +3395099,An Upper-Manhattan room of your own!,10657357,Ivan,Manhattan,Washington Heights,40.83328,-73.94511,Private room,51,6,20,2019-06-15,0.33,4,258 +3395398,Cozy BR in heart of Manhattan (Hell's Kitchen),17130866,Thomas,Manhattan,Hell's Kitchen,40.76496,-73.99073,Private room,99,3,10,2018-07-15,0.58,1,0 +3395697,Two-Floor Apartment on Upper West,17132728,Nick,Manhattan,Upper West Side,40.7939,-73.97485,Entire home/apt,290,7,1,2016-09-22,0.03,1,0 +3399909,Super cute and sunny 2 bedroom,39304,Andrea,Brooklyn,Williamsburg,40.71852,-73.94165,Entire home/apt,240,365,0,,,1,363 +3400359,Awesome Deal NYC,16286162,Pat,Bronx,Allerton,40.86677,-73.85938,Private room,49,2,114,2019-06-29,1.87,4,240 +3400645,Charming 1BR Private GARDEN Apt!,178784,Michael,Brooklyn,Boerum Hill,40.68572,-73.98602,Entire home/apt,115,3,6,2017-09-15,0.10,1,0 +3400739,Brooklyn Cozy and Convenient,17151343,Ayodele,Brooklyn,Crown Heights,40.67132,-73.9325,Private room,78,21,60,2016-12-01,0.99,1,0 +3401083,Sunny Bushwick Brownstone,17153037,Janice,Brooklyn,Bushwick,40.69195,-73.92068,Entire home/apt,125,7,25,2018-08-13,0.41,1,270 +3401271,Suite Lounge,5851210,Amy,Manhattan,East Harlem,40.79191,-73.94433,Entire home/apt,135,3,225,2019-07-01,3.69,2,13 +3401911,Battery Park City Sunny Bedroom ,17156530,Lily,Manhattan,Battery Park City,40.71062,-74.01537,Private room,110,1,0,,,1,0 +3402474,"Modern 1 Bedroom with Large Windows, Lots of Light",17157906,Brendon,Manhattan,Financial District,40.70765,-74.00761,Entire home/apt,205,2,8,2017-01-01,0.16,1,0 +3403034,Modern Manhattan Living Suite 2A,17161465,Judette,Manhattan,Harlem,40.82967,-73.94428,Entire home/apt,95,30,36,2019-04-30,0.61,1,245 +3404472,Charming Boutique Room in Bushwick,17169449,Kip,Brooklyn,Bushwick,40.69502,-73.90645,Private room,55,3,225,2019-06-30,3.70,1,15 +3404668,"Comfy room, minutes from metro for up to 3 people!",17170345,Carl,Brooklyn,Brownsville,40.66682,-73.92303,Private room,47,2,118,2019-06-10,1.99,1,310 +3404873,Spot in the Heights!,17171419,Mordechai,Manhattan,Washington Heights,40.85083,-73.9287,Private room,39,4,48,2019-06-12,0.82,2,12 +3408897,Gorgeous 2 Bedroom Loft in the Heart of Chelsea,17190169,Craig,Manhattan,Chelsea,40.7476,-73.99195,Entire home/apt,349,5,19,2019-05-04,0.45,1,358 +3410516,Luxurious Living in Williamsburg/Brooklyn,17196239,Sabine,Brooklyn,Williamsburg,40.71082,-73.95186,Entire home/apt,250,1,7,2019-04-26,0.12,1,170 +3411006,"COOL, ARTSY & CENTRAL APARTMENT",4903508,Dee,Manhattan,East Village,40.73165,-73.98715,Entire home/apt,290,7,90,2019-06-14,1.53,1,41 +3411815,"Lovely, Sunny Bedroom in Huge DUMBO Apartment",1649108,Allie,Brooklyn,Vinegar Hill,40.7044,-73.98153,Private room,85,1,83,2019-05-31,1.51,3,21 +3411912,"Charming Apt, Perfect for Couples!",2574806,Liz,Brooklyn,Bushwick,40.69349,-73.92211,Entire home/apt,170,2,1,2015-12-09,0.02,1,0 +3412633,Sunny top floor loft with skylight in downtown NY,1964249,Stina,Manhattan,Lower East Side,40.72012,-73.99092,Entire home/apt,146,11,50,2019-06-04,0.82,1,0 +3412893,Studio Apt. 15 min from Manhattan,17206543,Griffin,Queens,Astoria,40.77056,-73.92159,Entire home/apt,99,2,7,2018-09-04,0.12,1,0 +3414607,Sweet 2 bed in Elevator Building,3640784,Marta,Brooklyn,Prospect Heights,40.68148,-73.96674,Entire home/apt,150,3,25,2019-07-06,0.42,1,18 +3414885,Artsy Modern Hideout | Two bedrooms with backyard!,5722995,Blake,Brooklyn,Williamsburg,40.71122,-73.94893,Entire home/apt,240,2,87,2019-06-28,1.46,1,77 +3415102, 3 bedroom loft in Williamsburg,17218916,Randall,Brooklyn,Williamsburg,40.7117,-73.96321,Entire home/apt,500,2,48,2019-05-05,0.80,1,365 +3415455,Bright & Spacious 15 mins to Midtown Manhattan,4345336,Steve,Queens,Sunnyside,40.7468,-73.92218,Private room,48,2,33,2019-06-28,0.92,1,113 +3420223,Sunny Bushwick Apartment / Morgan L,17241205,Abigail,Brooklyn,Williamsburg,40.70791,-73.93396,Entire home/apt,129,1,21,2016-09-05,0.36,1,0 +3420648,Lovely Near Time square in 1bedroom,16345041,Han,Manhattan,Hell's Kitchen,40.76477,-73.98542,Entire home/apt,750,3,16,2015-08-19,0.27,1,365 +3421589,Adorable Soho Apartment,17243187,Lana,Manhattan,SoHo,40.72511,-74.00016,Entire home/apt,180,5,9,2019-04-14,0.15,1,87 +3423032,"Cozy 1 BD in Astoria, City Bike & NYFerry nearby",12483101,FLora,Queens,Long Island City,40.76844,-73.93819,Private room,70,3,1,2018-08-25,0.09,1,342 +3423516,Independence in NYC,17256091,Timothy,Manhattan,Upper East Side,40.77565,-73.95086,Entire home/apt,150,2,0,,,1,0 +3424458,Sun-soaked 1BR in Park Slope with amazing NYC view,17247205,Laura,Brooklyn,Park Slope,40.66891,-73.97987,Entire home/apt,240,1,1,2017-10-31,0.05,1,0 +3425054,Gorgeous 1BR Park Slope Apt/Garden,7398990,Laura,Brooklyn,Park Slope,40.67505,-73.97795,Entire home/apt,100,5,10,2018-01-05,0.17,1,0 +3425168,East Village Apt at Great Location ,10665748,Gabi,Manhattan,East Village,40.73005,-73.98525,Entire home/apt,122,30,7,2019-05-16,0.12,1,339 +3426233,2 Bd/1 Bath Apartment Upper East Side NYC,17272284,Geoffrey,Manhattan,Upper East Side,40.76349,-73.95969,Entire home/apt,400,3,9,2019-04-28,0.36,2,0 +3429765,Sunny Private Room,16286162,Pat,Bronx,Allerton,40.86689,-73.85776,Private room,47,2,75,2018-07-05,1.27,4,172 +3430612,Beautiful Brooklyn 3 bdrm in Prospect Heights,17289499,Laura,Brooklyn,Prospect Heights,40.67998,-73.96743,Entire home/apt,140,3,12,2017-09-04,0.20,1,4 +3431378,Luxe Tuscan Suite Private Room,17292935,Anne,Bronx,Mott Haven,40.81055,-73.92482,Private room,55,1,231,2019-06-22,3.95,2,16 +3431816,APT IN PROSPECT/CROWN HEIGHTS ,4274268,Konstantino,Brooklyn,Crown Heights,40.67183,-73.95491,Entire home/apt,110,4,3,2016-01-03,0.05,1,0 +3432660,"Neat, Classy, and Simple.",17299359,Lionel,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95792,Entire home/apt,175,3,1,2014-10-24,0.02,2,365 +3434211,Luxury Furnished Apt @TriBeCa/Soho,11081628,Arjun,Manhattan,Civic Center,40.71663,-74.00231,Entire home/apt,80,7,6,2018-05-29,0.18,1,0 +3434303,Cute Studio in Midtown East/UES!,16914467,Sharon,Manhattan,Midtown,40.75812,-73.96171,Entire home/apt,150,2,4,2016-11-10,0.07,1,0 +3434471,Spacious 2 BDR Apt. Upper West Side,13148521,Kira,Manhattan,Upper West Side,40.79037,-73.97195,Entire home/apt,200,4,4,2015-08-11,0.07,1,0 +3435260,Private Sunny Room in Park Slope,17315514,Ana,Brooklyn,Sunset Park,40.66201,-73.99719,Private room,50,10,1,2016-11-08,0.03,2,0 +3437101,Sparkling Brick APT Heart UES +Yoga,17318747,Jay,Manhattan,Upper East Side,40.77343,-73.95979,Private room,99,1,21,2019-06-15,0.47,2,82 +3439207,Comfortable and Convenient,5634395,Sarah,Manhattan,Harlem,40.82186,-73.95672,Private room,60,7,11,2018-08-26,0.18,2,0 +3440135,Cozy studio in the heart of Greenwich Village,7356757,Casey,Manhattan,Greenwich Village,40.73232,-74.0002,Entire home/apt,225,1,39,2019-06-18,2.73,1,49 +3440741,Charming Tudor 1BD Uptown,17339848,Elizabeth,Manhattan,Washington Heights,40.85529,-73.9398,Entire home/apt,175,3,5,2016-09-09,0.08,1,0 +3441130,New Building in Williamsburg,6045456,Daniel,Brooklyn,Williamsburg,40.71409,-73.93979,Private room,60,7,16,2019-04-05,0.26,1,313 +3442067,Spacious Studio in Luxury Building,17198795,Julie,Manhattan,Upper East Side,40.78284,-73.94825,Entire home/apt,255,2,1,2015-09-28,0.02,1,341 +3442140,Large room in renovated apartment in Williamsburg,8697041,Gaspard,Brooklyn,Williamsburg,40.71266,-73.94829,Private room,75,15,4,2015-09-30,0.07,2,0 +3442152,Stunning Park Slope 2BR,17347275,Jean-Cosme,Brooklyn,Gowanus,40.68094,-73.98205,Entire home/apt,190,3,2,2015-08-16,0.03,1,0 +3445138,The Sunniest of Brooklyn Brownstones,17051201,G,Brooklyn,Park Slope,40.67224,-73.97837,Entire home/apt,495,3,15,2019-05-27,0.27,3,198 +3447238,"Spacious, Sunny 1 Bedroom Apartment",13637847,Sasha,Brooklyn,Crown Heights,40.67432,-73.95949,Entire home/apt,98,5,11,2019-06-17,0.18,1,188 +3447448,Waterfront Experience,14509754,Wally,Brooklyn,Williamsburg,40.71936,-73.96181,Private room,150,1,0,,,1,364 +3448037,Modern Pad in Prime Williamsburg!,634096,Naomi,Brooklyn,Williamsburg,40.71644,-73.95876,Entire home/apt,250,1,0,,,1,0 +3450210,Spacious Apt in Townhouse near Columbia University,17389236,Emilie,Manhattan,Harlem,40.80493,-73.95677,Entire home/apt,215,1,107,2019-06-22,1.80,1,47 +3452721,Prime Williamsburg 1 bd apartment,17130308,David Jerome,Brooklyn,Williamsburg,40.72154,-73.95449,Entire home/apt,200,5,7,2016-01-02,0.12,1,0 +3452835,"Artsy, Garden Getaway in Central Brooklyn",666862,Amy,Brooklyn,Clinton Hill,40.68266,-73.96743,Entire home/apt,100,2,45,2016-11-27,0.98,1,0 +3453488,Huge Loft in prime Williamsburg - monthly rental,2533026,Omar,Brooklyn,Williamsburg,40.71204,-73.95628,Entire home/apt,200,30,0,,,1,0 +3455983,Perfect Apartment For Young Family,178551,Jena,Manhattan,Harlem,40.81525,-73.95279,Entire home/apt,200,6,0,,,1,0 +3457770,Cute 1 BR in the Lower East Side,9604972,Alexia,Manhattan,Lower East Side,40.7212,-73.98893,Entire home/apt,110,1,1,2014-08-09,0.02,1,0 +3458525,Modern & Cozy 1BD Garden Apt,17430718,Natasha,Manhattan,Harlem,40.81511,-73.94315,Entire home/apt,115,3,64,2019-06-19,1.05,2,211 +3461872,Private BR in 3 BR Apt - E. Harlem,5220670,Jonathon,Manhattan,East Harlem,40.80278,-73.94001,Private room,75,1,3,2015-10-04,0.05,1,0 +3462975,Boutique Loft Condo In West Village,17159358,Richard,Manhattan,West Village,40.73476,-74.001,Entire home/apt,289,1,7,2015-09-24,0.12,1,0 +3463385,Gorgeous room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76717,-73.95532,Private room,95,1,202,2019-05-27,3.31,2,263 +3463475,☆ PERFECT MANHATTAN LOCATION NEAR SUBWAY & CAFES!☆,1384256,Jenny,Manhattan,Lower East Side,40.71812,-73.98619,Entire home/apt,197,1,285,2019-06-30,4.83,1,8 +3464727,Fabulous 1 Bedroom Apt for 1 week,17456385,Kelsey,Manhattan,Hell's Kitchen,40.76753,-73.98397,Entire home/apt,150,1,0,,,1,0 +3464971,Sunny Home on Brooklyn Border: 15 min to Manhattan,17457445,Kermit & Azadeh,Queens,Ridgewood,40.70706,-73.91437,Entire home/apt,225,7,0,,,1,0 +3465604,Elegant Brownstone Duplex,12220316,Mary,Brooklyn,Fort Greene,40.6857,-73.97088,Entire home/apt,375,3,6,2018-08-27,0.10,1,252 +3465651,"“No Place Like Home” +1st Floor Suburban Apt.",4060346,"Lisa, Nancy & John",Staten Island,Eltingville,40.54268,-74.16254,Private room,56,1,145,2019-07-05,2.38,1,258 +3465977,Next to Central Park and Natural Science Museum,1535732,Pablo,Manhattan,Upper West Side,40.78478,-73.97668,Entire home/apt,225,15,15,2019-06-16,0.45,1,266 +3468486,2br with Balcony in East Harlem!,17475146,C,Manhattan,East Harlem,40.80409,-73.93988,Entire home/apt,70,7,1,2014-07-28,0.02,1,0 +3468914,Luxury One Bedroom CentralPark West,17477908,Mat,Manhattan,Upper West Side,40.79098,-73.96745,Entire home/apt,264,30,6,2018-05-24,0.10,10,281 +3468942,Luxury Studio Central Park West,17477908,Mat,Manhattan,Upper West Side,40.79219,-73.96862,Entire home/apt,199,30,11,2019-04-24,0.19,10,365 +3469115,5-Star Park Slope Suite w/King Bed,17051201,G,Brooklyn,Park Slope,40.6705,-73.97954,Entire home/apt,149,2,19,2019-04-07,0.33,3,28 +3469171,Red Hook Prime 1 BR Priv. Garden 3 blks NYC Ferry,1499484,Tom,Brooklyn,Red Hook,40.67851,-74.01591,Entire home/apt,142,1,169,2019-06-24,2.80,2,306 +3469295,Harlem Renovated Duplex Townhouse ,17479416,Tae,Manhattan,East Harlem,40.80422,-73.93841,Entire home/apt,299,4,58,2019-06-22,0.97,2,324 +3473305,One bedroom apartment,16718001,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95013,Entire home/apt,50,3,15,2016-06-21,0.25,1,0 +3474320,Private brownstone studio Brooklyn,12949460,Asa,Brooklyn,Park Slope,40.67926,-73.97711,Entire home/apt,160,1,488,2019-07-01,8.14,1,269 +3476105,Your own private big Brooklyn apt!,5810978,Ala,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95666,Entire home/apt,127,4,142,2019-05-28,2.34,1,2 +3476431,Charming Fort Greene Studio,4374828,Michelle,Brooklyn,Clinton Hill,40.68407,-73.96715,Entire home/apt,110,3,39,2019-01-01,0.85,1,0 +3478771,Great Room in Heart of LES,6230230,John,Manhattan,Lower East Side,40.71922,-73.98472,Private room,69,2,36,2019-06-30,0.60,3,5 +3479019,Lovely and quiet Brownstone!!!!,17299359,Lionel,Brooklyn,Bedford-Stuyvesant,40.68448,-73.95854,Entire home/apt,175,3,4,2014-11-02,0.07,2,365 +3479614,Charming East Village Apartment,3395227,Brian,Manhattan,East Village,40.72402,-73.98771,Entire home/apt,179,5,72,2016-11-22,1.18,1,0 +3479639,Designer's duplex loft with 16' ceilings,17527788,Taylor,Brooklyn,Bushwick,40.69642,-73.93361,Entire home/apt,144,1,51,2019-06-15,0.84,2,85 +3482919,Awesome SoHo/Little Italy 1BD,4320908,David,Manhattan,Nolita,40.72044,-73.99645,Entire home/apt,175,7,0,,,1,0 +3485146,"Sun Soaked, NYC Brownstone Apt",6707119,Parnell,Manhattan,Harlem,40.8079,-73.94887,Entire home/apt,150,1,1,2014-12-30,0.02,1,0 +3486103,Best of Brooklyn & 5 min to Manhattan!,3841446,Tony,Brooklyn,Williamsburg,40.71023,-73.95688,Entire home/apt,109,2,214,2019-06-27,4.58,1,127 +3487445,Sunny and Spacious 1 bedroom apt,2553182,Esty,Manhattan,Upper East Side,40.77097,-73.94848,Entire home/apt,350,1,0,,,1,0 +3488283,1BR Apt in the Bay Ridge!,17208512,Aleksandar,Brooklyn,Bay Ridge,40.63195,-74.0214,Entire home/apt,75,3,4,2019-04-28,0.08,1,0 +3488989,"Sunny, Quiet Apt. in Manhattan",17568735,William,Manhattan,Harlem,40.82639,-73.94186,Entire home/apt,135,3,3,2015-09-08,0.05,1,0 +3489095,Location Silma,3250450,Petya,Queens,Maspeth,40.74064,-73.89956,Private room,39,30,0,,,18,352 +3489242,Location little Elio,3250450,Petya,Queens,Astoria,40.771,-73.92563,Private room,38,30,8,2019-06-12,0.14,18,358 +3490317,Lovely sun-lit 3-bedroom apartment,15697051,Assiati,Brooklyn,Bedford-Stuyvesant,40.68885,-73.92354,Entire home/apt,195,2,231,2019-06-22,3.82,1,251 +3492910,Manhattan Columbia University Courtyard Studio,17266994,Tom,Manhattan,Morningside Heights,40.8081,-73.95647,Entire home/apt,146,3,91,2019-06-06,1.52,2,223 +3493833,Huge Artist Loft with BBQ deck - WILLIAMSBURG,17592620,Paul,Brooklyn,Williamsburg,40.71788,-73.96021,Entire home/apt,318,5,19,2019-06-01,0.32,1,268 +3495686,Lofted Murray Hill 1-bedroom w/ spiral staircase,721833,Joshua,Manhattan,Kips Bay,40.74593,-73.97915,Entire home/apt,184,3,0,,,1,0 +3495854,Studio loft - Williamsburg/Bushwick,17601262,Enrico,Brooklyn,Williamsburg,40.7139,-73.9353,Entire home/apt,140,2,133,2019-06-27,2.52,2,283 +3496384,Interfaith Retreat Guest Rooms (Om),16677326,Alex And Zeena,Manhattan,Chelsea,40.74977,-73.99647,Private room,85,1,145,2019-06-24,3.48,12,342 +3496438,NYC 1BD near Central Park & Shops,17604079,Meghan,Manhattan,Harlem,40.80724,-73.94739,Entire home/apt,170,1,1,2014-08-05,0.02,1,0 +3499016,House 1 Bed $100/ night per person,17618198,Edvaldo,Queens,Ditmars Steinway,40.77902,-73.90768,Private room,100,2,2,2014-09-22,0.03,1,365 +3499174,"One of a Kind, Penthouse Apartment ",6145540,Eddie,Manhattan,Nolita,40.7208,-73.99436,Entire home/apt,350,4,8,2017-05-06,0.13,1,196 +3499251,Classic Upper West Side studio loft,10034987,Izzy,Manhattan,Upper West Side,40.78273,-73.97319,Entire home/apt,199,3,25,2016-12-31,0.42,1,0 +3499326,"Sunny, Tall Artsy Loft @ Williamsburg",380728,Ligeia,Brooklyn,Williamsburg,40.71119,-73.96703,Private room,77,6,17,2015-09-01,0.29,1,188 +3504289,Cheap accommodation in Manhattan,11308483,Nathan,Manhattan,Kips Bay,40.73877,-73.98171,Private room,80,1,2,2014-07-11,0.03,1,0 +3507112,"#1 PRIVATE STUDIO IN BX,15MINS NYC.",17658078,Richard,Bronx,Mott Haven,40.81049,-73.9043,Private room,79,2,11,2016-03-19,0.19,1,0 +3509822,"Cute Room, Courteous Hosts",17671787,Nicole,Brooklyn,Bushwick,40.69601,-73.92236,Private room,550,3,5,2015-06-05,0.10,1,358 +3510929,Apartment in beautiful Brooklyn Heights,130216,Maria,Brooklyn,Brooklyn Heights,40.69088,-73.99416,Entire home/apt,155,5,7,2018-07-17,0.12,1,17 +3511778,10th St / W Village Junior Loft,17681072,Brooks,Manhattan,Greenwich Village,40.73331,-73.9941,Entire home/apt,275,30,12,2016-09-25,0.20,1,358 +3511883,Williamsburg Garden Escape,17347754,Benjamin,Brooklyn,Williamsburg,40.71187,-73.93593,Entire home/apt,119,2,10,2017-10-09,0.18,1,0 +3511898,"Cute & Cozy Greenpoint Apt, Great Location",17682043,Adi,Brooklyn,Greenpoint,40.73689,-73.95488,Entire home/apt,85,20,5,2017-07-31,0.09,1,0 +3511934,Beautiful West Harlem brownstone,17682312,Arnold,Manhattan,Harlem,40.82947,-73.95104,Private room,84,1,0,,,1,0 +3512428,Lovely room in doorman building,17616305,Gabrielle,Manhattan,Harlem,40.82774,-73.9508,Private room,90,2,127,2019-07-06,2.15,1,58 +3512620,Garden Floor Duplex with patio,617127,Amy,Brooklyn,Crown Heights,40.67619,-73.94389,Entire home/apt,135,5,53,2019-06-24,0.90,1,191 +3513303,CHEAP BIG room in Williamsburg,4904811,Megan,Brooklyn,Williamsburg,40.70848,-73.95323,Private room,90,3,230,2019-06-16,3.79,1,125 +3513662,Luxury 2 bed apt in WILLIAMSBURG BK,6153186,Michael,Brooklyn,Williamsburg,40.71784,-73.95521,Entire home/apt,150,1,5,2015-12-17,0.08,1,0 +3513960,AMAZING ROOM ARTSY BKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64246,-73.95443,Private room,38,3,76,2019-06-03,1.30,3,253 +3517621,Amazing Renovated studio MurrayHill,1475015,Mike,Manhattan,Kips Bay,40.74318,-73.97858,Entire home/apt,87,30,4,2019-06-30,0.07,52,343 +3517646,"Spacious, light-filled home by Prospect Park",17711637,Carrie,Brooklyn,Kensington,40.6451,-73.97798,Entire home/apt,210,5,3,2018-08-13,0.05,1,0 +3518682,Beautiful Room in Park-Side Apt,5407403,Marissa,Manhattan,Inwood,40.86176,-73.93082,Private room,80,2,50,2017-05-21,0.83,1,6 +3519172,Gallery Suite,17719747,Rhonda,Brooklyn,Fort Greene,40.68902,-73.96976,Entire home/apt,250,3,20,2019-06-23,0.39,1,323 +3521162,Studio in the heart of Chelsea,17730490,Ashley,Manhattan,Chelsea,40.74252,-73.9975,Entire home/apt,175,1,18,2016-05-11,0.31,1,0 +3522244,Charming Brooklyn Room,922478,Brad,Brooklyn,Clinton Hill,40.6825,-73.95888,Private room,65,1,52,2019-06-09,0.87,2,82 +3522329,East Village 1 Bedroom,17737666,Allie,Manhattan,East Village,40.73136,-73.98714,Entire home/apt,140,1,48,2016-01-17,0.81,1,0 +3522513,Central Park home away from home,17739111,Christopher,Manhattan,Harlem,40.80297,-73.95132,Entire home/apt,129,4,17,2019-06-24,0.28,1,64 +3522539,"Musician's Loft 1BR w/ Outdoor Space, WiFi, Parks",515946,Jonathan,Manhattan,East Village,40.73041,-73.9896,Entire home/apt,159,4,45,2019-06-12,0.75,1,87 +3523001,"Lovely Tudor Home with Studio in Queens, NY",10628463,Pat & Ray,Queens,Fresh Meadows,40.75037,-73.79154,Private room,125,7,0,,,1,365 +3526122,W Village Apt w/ Private Roof,4254072,Sean,Manhattan,West Village,40.73022,-74.00421,Entire home/apt,249,3,44,2019-06-21,0.74,1,332 +3529500,Gorgeous pre war rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68388,-73.94427,Entire home/apt,151,5,52,2019-06-19,0.91,5,333 +3529503,Quiet room+bath w/ separate entry.,6491377,Zaineb,Brooklyn,Bedford-Stuyvesant,40.69334,-73.94608,Private room,79,4,70,2019-06-24,1.19,1,308 +3529888,Architect's Oasis,9952523,Fabi,Brooklyn,Crown Heights,40.66919,-73.95079,Entire home/apt,125,3,10,2017-03-10,0.22,1,0 +3530122,Cozy Harlem Flat!,228012,Kev,Manhattan,Harlem,40.81792,-73.94236,Entire home/apt,135,5,76,2019-07-06,1.28,1,257 +3530395,1 BR in Great NYC Neighborhood,7665324,Edward,Manhattan,Lower East Side,40.72274,-73.99169,Entire home/apt,151,2,5,2019-04-08,0.10,2,46 +3530517,2 Story Loft!! Tribeca/Soho :-) best neighborhood,17773625,Josie,Manhattan,Tribeca,40.72113,-74.00478,Entire home/apt,600,3,73,2019-06-14,1.23,1,282 +3531018,It's The Brooklyn Way !!!,12291588,Maximus,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92975,Entire home/apt,59,1,142,2019-07-01,2.63,1,318 +3531190,"Cozy/Hip LES 2 bedroom, sleeps 2-4",1457351,Michael,Manhattan,Lower East Side,40.72007,-73.99078,Entire home/apt,273,4,85,2019-07-05,1.41,1,91 +3531345,Ensuite in Duplex Brownstone with Private Terrace!,12337318,Andrew,Manhattan,Harlem,40.82435,-73.94507,Private room,70,2,28,2019-04-26,0.82,2,80 +3531959,Charming Artists in the Heights,17781037,Gideon & Chantal,Manhattan,Harlem,40.82447,-73.95076,Private room,95,1,2,2014-10-20,0.03,1,0 +3533180,6BDRM*APT TRAIN TO NYC 15 MIN,254846,Brendan,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9256,Entire home/apt,399,3,49,2019-06-12,0.96,4,269 +3533604,Private Room in a two bedroom apt.,9510645,Rylan,Brooklyn,Bushwick,40.70399,-73.92813,Private room,96,1,332,2019-07-06,5.57,2,355 +3533669,Charming West Village Apartment,6828085,Ricardo,Manhattan,West Village,40.73622,-74.00147,Shared room,110,1,47,2019-06-03,0.81,1,362 +3533741,Private Room in Famed Artistic Flat,17791294,Taylor,Manhattan,Hell's Kitchen,40.76878,-73.98719,Private room,110,1,0,,,1,0 +3533777,Private Room In Clean Spacious Apt,17791467,Anthony,Manhattan,Harlem,40.82233,-73.93779,Private room,69,2,249,2019-06-16,4.12,2,132 +3534137,Beautiful sunny bedroom just off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65732,-73.95991,Private room,85,2,67,2019-07-04,1.56,3,264 +3534443,Lower East Side Studio- Great Location!,13337141,Aurea,Manhattan,Lower East Side,40.71867,-73.98612,Entire home/apt,150,2,121,2019-02-03,2.02,1,0 +3539618,Large modern studio in Gramercy,506909,Nevena,Manhattan,Kips Bay,40.73788,-73.98048,Entire home/apt,170,1,9,2015-05-21,0.15,1,0 +3539882,Renovated Studio - LES,16583238,Tommy,Manhattan,Lower East Side,40.72165,-73.98759,Entire home/apt,125,5,12,2015-12-31,0.20,1,0 +3540370,Sunny room in East Village!,17820079,Kent,Manhattan,East Village,40.72673,-73.98004,Private room,130,1,191,2019-05-27,3.17,1,0 +3540722,Modern Bohemian Studio,17820464,Allison,Manhattan,East Village,40.72454,-73.97836,Entire home/apt,145,1,358,2018-12-03,5.96,1,3 +3542523,HEART of Williamsburg w/ Rooftop!,747031,Jack,Brooklyn,Williamsburg,40.71466,-73.96429,Entire home/apt,500,1,138,2017-12-20,2.34,1,282 +3543227,Private Suite 15min to Times Square,3912009,Brendan,Manhattan,Harlem,40.82193,-73.94499,Private room,95,3,160,2019-07-01,2.78,2,0 +3544273,3BR condo Brooklyn/Prospect Heights,17842194,Cathleen,Brooklyn,Crown Heights,40.67893,-73.96262,Entire home/apt,150,4,9,2017-12-31,0.15,2,0 +3544610,Apartment near the US Open,17845064,Ingrid,Queens,Forest Hills,40.73334,-73.85433,Entire home/apt,150,1,0,,,1,364 +3544828,PrivateRoom in Beautiful Brownstone,17224426,Jillian,Brooklyn,Bedford-Stuyvesant,40.68643,-73.92208,Private room,56,2,180,2019-01-02,3.04,1,0 +3544858,"Private room in Greenpoint, BK",7879349,Abby,Brooklyn,Greenpoint,40.72472,-73.94135,Private room,60,1,1,2014-08-18,0.02,1,0 +3544899,Cozy Family Gateaway!!!,7458731,Esther,Brooklyn,East Flatbush,40.66123,-73.93428,Entire home/apt,85,3,37,2018-08-06,0.62,1,310 +3545066,Cozy Apartment in Chinatown/LES,7250241,Irene,Manhattan,Lower East Side,40.71306,-73.98856,Private room,80,5,3,2015-08-29,0.05,1,0 +3548393,Charming West Village apartment,6212988,Kim,Manhattan,West Village,40.73326,-74.00604,Private room,100,3,16,2016-03-22,0.26,1,0 +3549074,Modern Townhouse - Chic Sunny Room - L/J/A/C Train,17866326,Rony,Brooklyn,Bushwick,40.70228,-73.92824,Private room,54,3,2,2017-01-02,0.05,2,0 +3549478,Tasteful French 1BD Apt w/ Garden,3563304,Fanny,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95693,Entire home/apt,113,4,38,2019-07-07,0.63,1,191 +3549798,Sunny Private Williamsburg Space,6309019,John,Brooklyn,Williamsburg,40.71474,-73.95662,Entire home/apt,200,2,175,2019-07-02,2.93,1,303 +3550298,"Bright, big, BEAUTIFUL room in renovated apt",16974369,Robert,Manhattan,Harlem,40.81813,-73.9398,Private room,75,5,5,2018-06-30,0.10,1,0 +3550879,Beautiful Harlem apt with views,17874864,Kayvon,Manhattan,Harlem,40.8214,-73.95675,Shared room,200,1,31,2016-11-01,0.53,1,365 +3551778,"Faboules 1 br, in trendy Park Slope",1439449,Ilona,Brooklyn,South Slope,40.66308,-73.98309,Entire home/apt,110,30,4,2016-05-19,0.07,1,220 +3552043,Zen Loft: Huge Brooklyn Loft for Shoots & Events,319077,Shell,Brooklyn,Clinton Hill,40.68761,-73.96096,Entire home/apt,500,3,19,2019-05-05,0.36,4,365 +3552693,"2 room, by Sutton Place",17885257,David,Manhattan,Midtown,40.75503,-73.96711,Entire home/apt,180,1,0,,,1,0 +3553361,Awesome Loft in Williamsburg,15735446,Thomas,Brooklyn,Williamsburg,40.71707,-73.94708,Entire home/apt,200,1,14,2019-06-30,0.24,1,336 +3553679,Room in Upper East Side,2879920,Alberto,Manhattan,Upper East Side,40.76189,-73.96298,Private room,69,60,9,2016-04-04,0.16,2,90 +3553768,"Serene, minimalist studio W Village",17891677,Arianna,Manhattan,West Village,40.73496,-74.00005,Entire home/apt,200,5,64,2019-06-24,1.09,1,329 +3554230,Beautiful 1200 sf 3 bedroom apt off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95972,Entire home/apt,140,5,7,2019-01-01,0.15,3,14 +3554285,Entire Room Brooklyn NYC!!!,2120259,Sue,Brooklyn,Crown Heights,40.66518,-73.95109,Private room,45,4,37,2019-06-24,0.64,4,281 +3554287,Academic Summer Sublet/Sunset Park,6504434,Ayanna,Brooklyn,Sunset Park,40.64993,-74.00191,Private room,35,7,0,,,1,0 +3554599,"Great Apartment, Great Location",3902832,Elizabeth,Brooklyn,Greenpoint,40.7322,-73.95882,Private room,80,3,0,,,1,0 +3556241,Private Bamboo Garden Studio,636319,Roger,Brooklyn,South Slope,40.66252,-73.98433,Entire home/apt,150,2,0,,,1,0 +3556577,Landmark Brownstone Sunny 3 Rooms,7245581,Michael,Manhattan,Washington Heights,40.83365,-73.94059,Entire home/apt,70,180,7,2018-07-06,0.12,19,308 +3556615,TimeSq/Brdway/Midtown/A Cozy Petit Versaille/Quiet,17906693,Earle,Manhattan,Hell's Kitchen,40.76553,-73.9953,Private room,200,2,62,2019-06-09,1.06,1,304 +3559515,"Christmas in NYC! Spacious King Suite, 2 bath apt",17920050,Deidre,Manhattan,Midtown,40.76524,-73.98018,Entire home/apt,308,2,9,2018-12-02,0.15,1,0 +3559695,Soho/Nolita Studio Loft with Beautiful Terrace,17920926,Gerald,Manhattan,Nolita,40.71987,-73.9947,Entire home/apt,270,5,8,2018-08-24,0.21,1,0 +3561828,Converted Carriage House,2401823,Erin,Brooklyn,Clinton Hill,40.68695,-73.9631,Entire home/apt,150,3,0,,,1,0 +3562245,"Quiet Sunny 1-Bedroom, Prime East Village Location",8924899,Theresa,Manhattan,East Village,40.72832,-73.9852,Entire home/apt,365,2,62,2019-07-01,1.02,1,28 +3563271,Williamsville Sleep & Stay,6911276,Brian & Arlette,Brooklyn,Clinton Hill,40.6818,-73.96238,Private room,99,1,83,2019-06-12,1.39,1,248 +3565617,Modern sunny one bed apt,17953139,Oisin,Manhattan,Lower East Side,40.7211,-73.98397,Entire home/apt,175,7,9,2018-12-07,0.27,1,255 +3567258,Beautiful Loft in Union Square,298914,Fara,Manhattan,Gramercy,40.73711,-73.98985,Entire home/apt,220,4,60,2019-06-24,1.01,1,4 +3568596,Beautiful 1 BR in The Heights!,7499240,Candy,Manhattan,Washington Heights,40.8362,-73.94033,Private room,80,1,3,2015-10-19,0.05,2,314 +3569374,"Lovely 1BR Park Slope, near trains!",1673750,Valerie,Brooklyn,Park Slope,40.66617,-73.97593,Entire home/apt,230,2,7,2016-01-02,0.15,1,0 +3574304,Semi-furnished room in a large 3 bedroom apt,7438973,Telora,Manhattan,Harlem,40.81464,-73.95351,Private room,60,30,2,2018-11-12,0.19,1,183 +3575859,GREENWICH VILLAGE ROOM WITH PR.BATH (DM 4 monthly),1239959,Naz,Manhattan,Greenwich Village,40.72802,-73.99644,Private room,120,14,1,2016-09-23,0.03,1,0 +3575918,The Artist's House (with roof garden!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65698,-73.95761,Private room,45,14,8,2019-06-09,0.81,4,31 +3576160,One Bedroom in East Harlem,18008945,Francesco,Manhattan,East Harlem,40.79805,-73.94533,Entire home/apt,100,4,50,2019-05-12,0.83,1,12 +3578158,"1 bedroom apt, Brownstone in central Harlem",17891224,Jan,Manhattan,Harlem,40.80612,-73.95678,Entire home/apt,138,4,0,,,1,0 +3580577,Park Slope beauty,18032197,Domenick,Brooklyn,Sunset Park,40.66273,-73.99111,Entire home/apt,100,4,25,2019-01-03,1.11,1,0 +3581153,Modern 1BD Chelsea Apartment,18038832,Crystal & John,Manhattan,Chelsea,40.74767,-73.99393,Entire home/apt,230,1,29,2019-05-26,0.49,1,0 +3581652,Duplex in SoHa,18041691,Sebastien,Manhattan,Harlem,40.80411,-73.95624,Entire home/apt,225,1,5,2016-07-29,0.09,1,0 +3582816,Brownstone Apt with Sunny Garden,3771272,Smith O'Brien,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95031,Entire home/apt,120,2,60,2019-06-30,1.00,1,156 +3583482,Huge modern Private room available,3609048,Ken,Brooklyn,Crown Heights,40.67089,-73.93323,Private room,99,2,8,2016-06-24,0.17,3,365 +3583605,2 Bedroom in Hudson Heights ,18051675,Alexandra,Manhattan,Washington Heights,40.85153,-73.93815,Entire home/apt,150,3,0,,,1,0 +3583702,Brooklyn's Finest,18018059,Erin,Brooklyn,Bushwick,40.68258,-73.90472,Entire home/apt,122,1,157,2019-07-01,2.64,1,235 +3584528,Spacious Loft with Spiral Staircase,11495235,Leslie,Brooklyn,Bushwick,40.70204,-73.92109,Entire home/apt,150,1,2,2016-01-05,0.03,1,0 +3585452,A Beautiful Brownstone Apartment,17943391,Michael,Manhattan,Harlem,40.809,-73.94263,Entire home/apt,140,2,292,2019-06-26,4.95,2,186 +3585974,1BD in Lower East Side ,3588028,Elisa,Manhattan,Lower East Side,40.72158,-73.98998,Entire home/apt,150,3,18,2018-05-16,0.30,1,0 +3586141,"Brooklyn private room, by F,Gtrain",14898658,Chadanut,Brooklyn,Windsor Terrace,40.65015,-73.97945,Private room,38,30,77,2019-04-28,1.28,11,309 +3587219,Nice studio in heart of the of the West Village,8483704,Patrick,Manhattan,West Village,40.73002,-74.00653,Entire home/apt,200,7,16,2019-07-02,1.09,1,50 +3591107,Gorgeous Bedroom by the Park,6310115,Lanny,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95512,Private room,50,1,12,2019-01-01,0.31,1,0 +3593491,Cozy room in NYC,5164854,Lilia,Manhattan,Harlem,40.82071,-73.93813,Private room,45,6,13,2018-07-14,0.23,8,346 +3593821,Bedroom in Williamsburg w/ Terrace,18105672,Eric,Brooklyn,Williamsburg,40.71659,-73.9458,Private room,90,30,1,2015-07-26,0.02,1,0 +3594408,Bedr w Priv Bathr+Balc 15m frm city,6150064,Sonya,Queens,Astoria,40.76972,-73.9206,Private room,85,2,2,2015-08-25,0.04,1,0 +3595503,Charming bedroom in Comfy apt,18115202,Robie,Manhattan,East Village,40.7296,-73.99054,Private room,85,1,0,,,1,0 +3595554,Jackson Stayover Apt,18108212,Adriana,Queens,St. Albans,40.69283,-73.75828,Entire home/apt,108,2,81,2019-06-27,1.35,1,328 +3595574,Cheery Studio with Separate Kitchen,18115545,Olivia,Brooklyn,Prospect Heights,40.6751,-73.96558,Entire home/apt,129,3,15,2019-05-23,0.25,1,204 +3600108,Great location! Fort Greene!!!,7076239,Annie And Joan,Brooklyn,Fort Greene,40.68744,-73.9747,Entire home/apt,275,2,180,2019-06-19,2.99,2,290 +3600496,Large & Spacious **Prime Location ,12485770,Raanan,Manhattan,Midtown,40.74596,-73.98411,Entire home/apt,148,30,9,2019-03-25,0.15,9,329 +3600518,Sunny Grammercy Park Getaway,4367602,Anne,Manhattan,Gramercy,40.73389,-73.98724,Entire home/apt,250,31,0,,,1,365 +3600961,Charming 1 Bed in Trendy Location!,18142696,Morgan,Manhattan,East Village,40.72974,-73.98372,Entire home/apt,160,2,5,2015-08-20,0.08,1,0 +3601324,7even Days Sleep Near Prospect Park,16834792,Louis,Brooklyn,Crown Heights,40.66529,-73.9557,Entire home/apt,130,5,150,2019-07-03,2.48,2,309 +3601743,Classic Brooklyn brownstone,18146661,Richard,Brooklyn,Park Slope,40.66884,-73.97575,Private room,180,3,192,2019-06-29,3.20,1,60 +3601900,Cozy Private Room in the heights!,18147523,Carli,Manhattan,Washington Heights,40.84943,-73.93146,Private room,50,1,14,2018-01-01,0.23,1,0 +3602534,Gorgeous Room in Historic Townhouse,18150845,Sara,Manhattan,Washington Heights,40.83473,-73.93982,Private room,145,6,61,2019-05-17,1.17,1,257 +3602739,Private BR in Huge 2BR in Chinatown,18151946,Dave,Manhattan,Chinatown,40.71445,-73.99287,Private room,94,7,17,2017-04-17,0.28,1,0 +3603134,Amazing 1 Bedroom Apt CENTRAL PARK,17898189,Danielle,Manhattan,Upper East Side,40.77487,-73.949,Entire home/apt,180,2,24,2015-09-27,0.41,1,0 +3603287,Beautiful Furnished Room in SOHO,146825,Masaki,Manhattan,Nolita,40.72061,-73.99472,Private room,80,6,3,2016-03-26,0.07,1,0 +3603426,Brooklyn Getaway-Special Discount,18156556,Rachel,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91856,Entire home/apt,97,3,15,2018-09-30,0.25,1,0 +3604145,UNIQUE APT COZY APARTMANT,11430190,Maria,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94082,Entire home/apt,90,2,51,2018-10-29,0.86,1,179 +3605388,Serengeti Comfy APT,14157138,Justa,Brooklyn,Brownsville,40.66748,-73.92554,Entire home/apt,70,2,56,2018-10-29,0.94,1,1 +3605493,Spacious Private Apt. Near All!,16809056,Jason,Queens,Astoria,40.75997,-73.90926,Entire home/apt,120,3,29,2016-08-02,0.55,1,0 +3605524,"Midtown Apt, Quiet, Walk to Subway",17958831,Tomer,Manhattan,Kips Bay,40.74173,-73.97906,Entire home/apt,120,3,116,2019-05-29,1.95,1,261 +3605654,Large 1 bedroom/bathroom w/balcony,18170442,Giuliana,Manhattan,Financial District,40.7055,-74.00866,Entire home/apt,165,1,0,,,1,0 +3605896,Clean Private Room in Renovated Apartment,1921498,Pedro Pablo,Manhattan,Washington Heights,40.84464,-73.9355,Private room,59,9,26,2019-05-25,0.44,3,109 +3608353,Prospect Park South,18183144,Timothy,Brooklyn,Flatbush,40.64802,-73.97095,Private room,91,3,33,2019-07-01,0.65,1,90 +3609762,Sunny spacious 3 BR/ 2Bth in Bayside townhouse,18189519,Irma,Queens,Bay Terrace,40.77995,-73.78506,Entire home/apt,184,3,146,2019-06-19,2.46,1,143 +3611620,Private Room In Gorgeous Apartment July 1st-30th!,18198406,Joseph,Brooklyn,Bedford-Stuyvesant,40.692,-73.93852,Private room,45,1,13,2017-07-31,0.26,1,0 +3611813,Discount! Central Clean & Quiet,8410380,Marshall,Manhattan,Gramercy,40.73755,-73.98595,Private room,150,4,147,2019-06-14,2.44,1,344 +3613161,Exquisite SoHa/Columbia area large 2 BR,11976676,David,Manhattan,Harlem,40.80465,-73.95365,Entire home/apt,139,3,24,2017-04-26,0.49,1,0 +3613839,Cozy and sunny room in Manhattan,17450462,Esther,Manhattan,Harlem,40.82544,-73.9402,Private room,65,7,45,2019-06-09,0.92,1,290 +3614113,Private Room in East Village Manhattan,2033003,Darren,Manhattan,East Village,40.72966,-73.98515,Private room,65,2,13,2019-05-05,0.28,2,157 +3614159,"Bright, Spacious, and Well Designed",461269,Anna,Brooklyn,Prospect Heights,40.67426,-73.96586,Private room,150,2,13,2016-05-01,0.26,1,0 +3614680,"Great View, Close to City in Queens",18212957,Eddie,Queens,Astoria,40.7638,-73.91622,Entire home/apt,115,2,5,2015-12-30,0.08,1,0 +3616001,Luxury 1 Bedroom in FiDi,4421323,Justin,Manhattan,Financial District,40.70883,-74.01266,Entire home/apt,299,7,6,2018-04-29,0.19,1,0 +3616003,Large Clean Apt in Ditmas Park,18219988,Deanna,Brooklyn,Flatbush,40.63981,-73.95712,Entire home/apt,80,2,103,2019-05-27,1.70,1,0 +3616173,PRIVATE BEDROOM YOU'LL LOVE,2383619,Elma,Brooklyn,Carroll Gardens,40.68184,-73.99308,Private room,80,21,88,2018-04-02,1.50,1,364 +3616527,Pvt 1 Bed in Fort Greene,16669342,Matthew,Brooklyn,Clinton Hill,40.69741,-73.96942,Entire home/apt,100,1,0,,,1,0 +3616946,Great room near Chelsea market,18225315,Alain,Manhattan,Chelsea,40.74016,-74.00049,Private room,135,1,14,2015-12-14,0.27,1,0 +3617498,"Comfy, convenient bedroom in Bklyn!",6643482,Andy,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.96046,Private room,80,2,122,2019-06-06,2.07,1,227 +3619399,Best Cozy & Modern Room in Town,17619450,Sean,Brooklyn,Flatbush,40.63631,-73.95313,Private room,69,1,4,2015-10-20,0.09,1,0 +3623158,Private bedroom apartment 5A#1,18212433,Veronique Camille,Manhattan,East Harlem,40.7946,-73.94105,Private room,75,30,2,2018-08-05,0.04,8,352 +3623201,Charming brownstone top floor 1BD,14273136,Allegra,Brooklyn,Park Slope,40.66981,-73.98462,Entire home/apt,94,10,26,2019-06-22,0.52,1,0 +3623946,Sunny and Spacious Two Bedroom Duplex with Terrace,18254730,Valeria,Brooklyn,South Slope,40.66748,-73.98971,Entire home/apt,192,4,6,2019-04-28,0.14,1,8 +3624205,Private bedroom apartment 4B,18212433,Veronique Camille,Manhattan,East Harlem,40.79319,-73.94209,Private room,50,21,3,2019-02-12,0.30,8,350 +3624380,Private bedroom apartment 4B/2,18212433,Veronique Camille,Manhattan,East Harlem,40.7942,-73.94136,Private room,58,21,2,2017-07-04,0.04,8,331 +3624387,"Beautiful Apt x Rent in Astoria, NY",4666670,Jeanny,Queens,Long Island City,40.76481,-73.93163,Entire home/apt,120,6,25,2019-05-21,0.42,4,346 +3624653,S 2/Bedford Well-Lit Private Room,6472334,Matthew,Brooklyn,Williamsburg,40.71286,-73.96244,Private room,69,2,11,2016-04-29,0.18,2,0 +3624952,Oasis in Queens: Private BR/ bath,2574452,Samita,Queens,Jackson Heights,40.75193,-73.89085,Private room,50,4,2,2014-09-20,0.03,1,0 +3625075,Available Manhattan Apt,18260128,Neal,Manhattan,Harlem,40.82279,-73.94947,Entire home/apt,125,3,8,2018-08-13,0.13,1,0 +3625117,60s-inspired @ a penthouse loft!,18260299,Ota,Brooklyn,Bushwick,40.69217,-73.90768,Private room,50,30,14,2019-06-10,0.23,6,88 +3625870,Modern Style Meets Old World,18264329,Joaquin,Brooklyn,Sunset Park,40.64894,-74.00621,Private room,85,3,47,2019-06-23,0.81,1,299 +3626302,Beautiful Clean & Quiet Room! Rm#2,11674837,Christopher,Queens,Ridgewood,40.70554,-73.90729,Private room,59,1,173,2019-06-19,2.87,3,352 +3626426,Gorgeous! Newly Renovated 2-BR Flat,13347167,AFI Apartments,Manhattan,Upper East Side,40.77274,-73.95732,Entire home/apt,130,30,3,2018-08-10,0.08,29,308 +3626609,Entire Awesome One Bed-Lower East Side Manhattan,3038687,Karen,Manhattan,Lower East Side,40.71749,-73.99016,Entire home/apt,104,30,11,2019-03-16,0.19,8,80 +3626699,Vintage NY apt - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74365,-73.91632,Entire home/apt,95,30,8,2018-11-21,0.16,3,332 +3627106,Great 1BR-private balcony/doorman,18212433,Veronique Camille,Manhattan,Hell's Kitchen,40.76385,-73.9905,Entire home/apt,199,5,40,2019-05-20,0.68,8,43 +3627326,Spain Room,5652395,Julio,Bronx,Concourse,40.81954,-73.92715,Private room,105,1,3,2018-09-16,0.14,2,365 +3627589,Cozy Single private room.,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68599,-73.95182,Private room,34,6,81,2019-07-04,1.35,3,92 +3628190,Sunny Private Apt in Ditmas Park,14905237,Tina,Brooklyn,Flatbush,40.64372,-73.95969,Entire home/apt,120,3,12,2018-08-19,0.22,1,0 +3628328,2BR Apartment in Doorman Building,1279211,Aldo,Bronx,Concourse Village,40.82603,-73.92312,Entire home/apt,87,6,11,2019-06-04,0.28,1,0 +3628553,1 Bedroom Apartment close to Northwell & JFK,3552711,Louann,Queens,Queens Village,40.7229,-73.7462,Entire home/apt,125,1,30,2019-03-14,0.50,2,158 +3629217,Spacious 2BR townhouse,10262649,Andrew,Brooklyn,Bushwick,40.68779,-73.90521,Entire home/apt,170,2,41,2016-01-25,0.69,2,0 +3629381,Cozy UES apartment with balcony near Central Park,18287550,Grace,Manhattan,Upper East Side,40.77242,-73.96212,Entire home/apt,250,7,3,2016-12-31,0.06,1,0 +3629580,Upper East Renovated 1 Bedroom,18289867,Dan,Manhattan,East Harlem,40.79032,-73.94523,Private room,55,1,3,2014-08-27,0.05,1,0 +3630304,Spacious Bedroom 15 mins from NYC!,18297103,Beatriz,Queens,Sunnyside,40.74269,-73.91518,Private room,80,1,57,2019-06-08,0.97,1,253 +3630309,1BR Comfy Apt - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74493,-73.91528,Entire home/apt,95,30,10,2019-04-19,0.28,3,332 +3632258,Awesome NYC/UWS private bed/bath in private home,3325418,Patricia,Manhattan,Morningside Heights,40.80309,-73.96367,Private room,150,1,13,2019-04-15,1.27,3,273 +3634361,3 Bedroom Duplex,740032,Dexter,Brooklyn,Windsor Terrace,40.65413,-73.97684,Entire home/apt,140,5,28,2019-07-07,0.60,1,192 +3635348,BKLYN Brownstone- Glam Getaway!,3096525,Kini,Brooklyn,Bedford-Stuyvesant,40.67927,-73.93208,Entire home/apt,150,3,117,2019-06-21,1.96,1,242 +3635624,Cozy 1BD in the lower east side,6050632,Yana,Manhattan,Lower East Side,40.72138,-73.98371,Entire home/apt,159,3,1,2014-08-28,0.02,1,0 +3636601,"Sunny and Quiet private apartment, great location!",7245581,Michael,Manhattan,Chelsea,40.74994,-73.99612,Entire home/apt,95,75,13,2019-04-30,0.23,19,245 +3636967,Sunny 2BR Flex Loft in Greenpoint,7503643,Vida,Brooklyn,Greenpoint,40.72705,-73.94033,Entire home/apt,159,30,3,2016-09-09,0.08,52,365 +3637029,Cozy Wiliamsburg!,18343265,Melissa,Brooklyn,Bushwick,40.69942,-73.91209,Private room,65,4,18,2015-12-22,0.30,1,0 +3638841,Cozy 1 BD apartment in Sunset park,17917168,Karina,Brooklyn,Sunset Park,40.65046,-74.00402,Entire home/apt,100,1,26,2019-03-24,2.52,1,0 +3638852,Sunny room in Alphabet City,3563235,Andra,Manhattan,East Village,40.72135,-73.98,Private room,85,5,12,2016-09-06,0.20,1,0 +3641819,Sunlight filled top floor refuge with roof deck,534776,Shawna,Brooklyn,Prospect Heights,40.6786,-73.96694,Entire home/apt,175,2,25,2019-01-05,0.43,1,2 +3642278,Brooklyn Carroll Gardens Charmer!,18388112,Brett,Brooklyn,Carroll Gardens,40.68235,-73.99806,Entire home/apt,175,3,4,2016-10-03,0.07,1,0 +3642325,Luxurious Brooklyn 2BD w/ Parking,16916853,Olga,Brooklyn,Sheepshead Bay,40.58363,-73.93553,Entire home/apt,260,7,3,2017-03-13,0.05,2,363 +3642801,"Cozy Brooklyn studio, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.95816,Entire home/apt,80,3,24,2019-06-23,0.40,3,19 +3643392,Relaxed Elegance in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.93246,Private room,69,2,56,2019-07-02,0.95,7,66 +3643673,Chill 1bdrm Bk getaway,10263308,Isaiah,Brooklyn,Bedford-Stuyvesant,40.68949,-73.92784,Entire home/apt,100,3,36,2018-08-02,0.60,1,89 +3644017,"Lovely, quiet, private, close to everything",5909599,Danica,Queens,Ditmars Steinway,40.77591,-73.9145,Private room,85,1,31,2019-06-04,0.51,2,84 +3644037,Bright & Modern Apt. in Brooklyn NY,14945045,Anna,Brooklyn,Bay Ridge,40.63777,-74.02497,Entire home/apt,95,3,2,2015-08-23,0.03,1,0 +3645284,Reno 2BR~Sleeps5~Prime Upper east~,2119276,Host,Manhattan,Upper East Side,40.76043,-73.95992,Entire home/apt,160,30,15,2019-04-07,0.25,39,333 +3645866,Welcome to Kensington,946672,Josh,Brooklyn,Kensington,40.63402,-73.97556,Private room,49,2,6,2016-09-05,0.10,1,0 +3646059,Quiet Room in East Williamsburg,17525930,Jillian,Brooklyn,Williamsburg,40.71566,-73.941,Private room,65,1,35,2016-11-13,0.88,1,0 +3646551,Gramercy~Reno New 1BR-Sleeps 4~,2119276,Host,Manhattan,Gramercy,40.73568,-73.98062,Entire home/apt,150,30,2,2015-08-07,0.03,39,331 +3652120, AMAZING TIME SQUARE!!BRICK WALLS!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76073,-73.99215,Entire home/apt,115,30,3,2016-02-22,0.06,52,342 +3652230,Bay Beauty - Room On The Water!,681225,Haya,Queens,Rockaway Beach,40.5903,-73.8143,Private room,113,2,36,2019-07-07,0.74,1,365 +3653996,"BRAND NEW 1BD, Columbus Circle!!",1475015,Mike,Manhattan,Hell's Kitchen,40.76882,-73.98699,Entire home/apt,110,30,10,2019-03-15,0.18,52,323 +3654510,"Sunny, spacious room in 3BR apt",7920086,Susan,Manhattan,East Harlem,40.78698,-73.944,Private room,75,11,14,2018-03-15,0.23,3,0 +3654511,ROOFTOP SWIMMING-POOL 1/BR APT.,15784,Francesco,Manhattan,Midtown,40.7509,-73.96963,Entire home/apt,250,5,2,2017-08-07,0.04,1,0 +3655007,Great Room for International Students!,18492106,Sharon,Bronx,Wakefield,40.88855,-73.85127,Private room,50,7,12,2018-09-15,0.55,1,0 +3655367,Sunny/Cozy 1BD,18495460,Frank,Brooklyn,Crown Heights,40.6737,-73.95335,Entire home/apt,81,30,99,2019-01-06,1.67,3,318 +3659544,Home Away from Home-Room in Midtown,12327430,Marco,Manhattan,Hell's Kitchen,40.76625,-73.99387,Private room,69,3,168,2019-06-23,2.88,2,129 +3660983,Amazing LOFT in Prime Williamsburg,8182126,Maggie,Brooklyn,Greenpoint,40.71952,-73.94844,Private room,125,5,1,2016-05-14,0.03,2,0 +3661168,Private Room in Williamsburg,3344830,Caitlin,Brooklyn,Williamsburg,40.71202,-73.96665,Private room,65,5,2,2015-01-04,0.03,1,0 +3662091,Beautiful 1 BR - Downtown Union Square,18556644,Heike,Manhattan,East Village,40.73312,-73.99097,Entire home/apt,150,62,0,,,1,358 +3662724,5144-Prime Doorman!78ST & Madison ,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77448,-73.96102,Entire home/apt,175,30,2,2019-05-30,0.06,96,281 +3662795,Comfortable Place in Brooklyn,18565670,Maia,Brooklyn,Midwood,40.62401,-73.95775,Private room,49,2,26,2019-04-15,0.54,1,362 +3662827,Nolita Duplex w/ private terrace,8200795,Brooke,Manhattan,Nolita,40.72168,-73.99544,Entire home/apt,191,3,51,2019-06-30,0.88,1,55 +3662887,1 Bedroom Apartment in Gramcery!,14041891,Tom,Manhattan,Flatiron District,40.7411,-73.98455,Entire home/apt,200,4,0,,,1,0 +3662949,Stylish & Spacious Perfect for Pride!,18567895,Ryan,Manhattan,Hell's Kitchen,40.76522,-73.99486,Entire home/apt,250,2,6,2016-06-17,0.11,1,0 +3663178,"Landmark Cottage, Brownstone block",710916,Adam,Brooklyn,Crown Heights,40.67541,-73.94408,Entire home/apt,216,1,233,2019-07-02,3.89,1,295 +3663423,Beautiful duplex for family w/kids ,18570567,Gisela,Brooklyn,Bedford-Stuyvesant,40.68412,-73.95039,Entire home/apt,200,3,0,,,1,0 +3663798,"Big WBurg Rm, 5 min from L, Fits 4!",18272570,Qian,Brooklyn,Williamsburg,40.70917,-73.94918,Private room,119,2,43,2016-06-30,0.72,1,0 +3663984,Sunny & Modern 1-BR | Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77222,-73.95604,Entire home/apt,118,30,4,2019-02-02,0.08,29,341 +3664439,"Murray Hill, The Heart of Manhattan",6913016,Alicia,Manhattan,Midtown,40.74911,-73.98202,Private room,95,3,67,2019-06-11,1.65,1,355 +3664714,Great Greenpoint Apartment,5872286,Tim,Brooklyn,Greenpoint,40.73526,-73.95375,Entire home/apt,110,3,34,2018-05-19,0.57,1,12 +3666653,Brooklyn Brownstone,17544112,Robert,Brooklyn,Bay Ridge,40.62356,-74.024,Entire home/apt,170,4,137,2019-07-04,2.55,1,302 +3666709,Cozy Private UES Studio Apt!,18594426,Amanda,Manhattan,Upper East Side,40.7729,-73.95276,Entire home/apt,99,3,9,2019-05-30,0.15,1,0 +3670659,"Bright & New Reno, Quiet Block",16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68337,-73.95819,Entire home/apt,172,30,9,2019-03-27,0.16,21,342 +3672455,Private RM | Queens | 20min to city,6966831,Victoria,Queens,Sunnyside,40.74532,-73.91974,Private room,75,2,3,2015-07-23,0.06,1,0 +3673938,Affordable long stay room for individual,4578923,Normandy,Brooklyn,Bedford-Stuyvesant,40.69437,-73.95841,Private room,50,5,18,2019-05-19,0.79,1,0 +3674757,Cozy Vintage Artist Flat(Williamsburg/Bushwick),2702080,Drew & Kristen,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94714,Private room,77,2,145,2019-06-02,2.42,1,365 +3675957,"Brooklyn Loft Studio, One Subway from Manhattan",2076525,Douglas,Brooklyn,Navy Yard,40.69839,-73.97666,Entire home/apt,125,14,15,2019-06-18,0.41,1,32 +3677769,Beautiful Large Sunny Bedroom,18681479,Pamela,Queens,Sunnyside,40.74189,-73.92375,Private room,75,2,111,2019-06-24,1.89,1,348 +3677995,Modern Harlem Flat,9553177,Joshua,Manhattan,Harlem,40.80677,-73.94977,Entire home/apt,350,2,13,2017-06-09,0.35,1,0 +3678064,Per/night Room Brklyn New York,2120259,Sue,Brooklyn,Crown Heights,40.66709,-73.9514,Private room,55,4,27,2019-07-05,0.46,4,261 +3678796,beautiful brownstone,18693665,Linda Green And Norga,Brooklyn,Bedford-Stuyvesant,40.68138,-73.95018,Entire home/apt,99,2,216,2019-06-24,3.61,1,321 +3678829,Bright. Clean. Elegant. A perfect Brooklyn home.,17051201,G,Brooklyn,Park Slope,40.67164,-73.97761,Entire home/apt,545,2,6,2018-12-29,0.12,3,227 +3678990,Sunny Warm Quiet NYC Retreat,7474069,Carrie,Manhattan,Washington Heights,40.84686,-73.94181,Private room,70,2,277,2019-06-13,4.67,3,244 +3683236,Peaceful 2BR inside a brownstone,378737,Parris,Brooklyn,Bedford-Stuyvesant,40.68908,-73.92893,Private room,250,2,0,,,1,365 +3683241,Spacious 2 bedroom 1 bathroom BRKLY,18726889,Suzanne,Brooklyn,Bushwick,40.68781,-73.91377,Entire home/apt,150,4,2,2014-08-21,0.03,1,0 +3684144,(Hidden by Airbnb) ! BrooklynCleanRoom!!,2955491,Natsuko,Brooklyn,Bushwick,40.69753,-73.93619,Private room,55,2,20,2019-06-25,0.41,1,19 +3684302,Crown Hts Beauty: Quiet and Cozy!,18030682,Amanda,Brooklyn,Crown Heights,40.67472,-73.94737,Entire home/apt,100,7,46,2019-06-29,0.87,1,0 +3685433,Stunning Studio in Fort Greene,15817252,Nicole,Brooklyn,Clinton Hill,40.69494,-73.96888,Entire home/apt,100,5,7,2017-01-04,0.12,1,0 +3685704,Private Apt. in Brooklyn Brownstone + Garden,2640773,Nick,Brooklyn,Bedford-Stuyvesant,40.68822,-73.94357,Entire home/apt,95,2,116,2019-05-29,2.18,1,226 +3686493,Irving Place!Doorman!Laundry 5135,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73632,-73.98475,Entire home/apt,175,30,0,,,96,312 +3686972,1 BR Apt steps from Central Park! #10223,18690148,Luci,Manhattan,Upper West Side,40.77905,-73.97939,Entire home/apt,200,4,22,2019-07-01,0.45,1,2 +3687172,Enchanting Studio in West Village,5771331,Alex,Manhattan,Greenwich Village,40.72858,-73.99951,Entire home/apt,190,1,20,2016-05-04,0.33,1,0 +3687227,"spacious, quiet room w/private bath: BK brownstone",4765290,Emily,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95333,Private room,65,2,3,2016-08-08,0.06,1,0 +3688168,The Brooklyn Public House Apartment,2461535,Andriana,Brooklyn,Fort Greene,40.68927,-73.96957,Entire home/apt,400,2,120,2019-06-23,2.05,1,300 +3688197,Peaceful and breezy one bedroom,11371357,Julienne,Brooklyn,Kensington,40.64644,-73.9756,Entire home/apt,95,1,10,2018-12-29,0.21,1,0 +3689140,"West Village Loft, 2nd floor",2267864,Gary,Manhattan,West Village,40.73419,-74.00213,Entire home/apt,197,2,207,2019-06-30,3.46,2,166 +3692566,Spacious 5 BR house in Brooklyn,2673332,Alexandra,Brooklyn,Kensington,40.64295,-73.97632,Entire home/apt,395,3,20,2018-08-14,0.34,1,9 +3693901,THE BEST HOUSE IN BROOKLYN !,17696653,Arleta,Brooklyn,Bedford-Stuyvesant,40.69134,-73.94468,Private room,100,1,2,2016-08-28,0.04,1,365 +3694441,"Modern, Bright, Airy Brooklyn Apt",1010344,Ian & Sady,Brooklyn,Bedford-Stuyvesant,40.68592,-73.95502,Entire home/apt,200,3,6,2016-01-01,0.10,1,0 +3694498,Welcome to Williamsburg!,18646528,Catherine,Brooklyn,Williamsburg,40.71385,-73.94156,Entire home/apt,165,3,6,2017-04-01,0.10,1,0 +3695776,"Sunny, Spacious Carroll Gardens 1BR",1176165,Corey,Brooklyn,Carroll Gardens,40.68431,-73.99782,Entire home/apt,145,5,4,2015-11-07,0.07,1,0 +3696043,Weeklong Discounted Bklyn Apt by Train & Near Dwtn,807340,Kevin,Brooklyn,Brownsville,40.66827,-73.92509,Entire home/apt,75,1,135,2019-07-01,2.27,1,174 +3696746,Fabulous Loft Studio in Gramercy,18138735,Jed,Manhattan,Gramercy,40.73343,-73.98634,Entire home/apt,180,3,72,2019-01-02,1.22,1,25 +3697432,Experience NYC to the fullest @UES!,18836774,Jime,Manhattan,Upper East Side,40.77542,-73.95437,Private room,73,4,48,2019-01-19,0.80,5,153 +3698111,Your NYC home in the Upper East Side!,18836774,Jime,Manhattan,Upper East Side,40.77579,-73.9557,Private room,87,3,61,2019-05-29,1.01,5,132 +3698241,Your NYC headquarters @ the Upper East Side!,18836774,Jime,Manhattan,Upper East Side,40.77688,-73.95616,Private room,74,3,60,2019-06-27,1.00,5,169 +3698367,Amazing Location!,5465947,Rose,Brooklyn,Prospect Heights,40.67948,-73.97219,Private room,65,1,6,2015-08-21,0.12,1,0 +3700364,Greenwich Village in the Sky,7644834,Dawnie,Manhattan,Greenwich Village,40.7284,-73.99812,Entire home/apt,199,8,48,2019-06-19,1.06,1,37 +3701708,Quaint Room in Brooklyn,18866837,Barbara,Brooklyn,Park Slope,40.67916,-73.97454,Private room,65,60,2,2016-09-07,0.03,1,0 +3701890,1 bedroom apartment on the UWS,3146957,Alexandra,Manhattan,Upper West Side,40.77918,-73.9874,Entire home/apt,160,7,5,2016-07-05,0.09,1,0 +3702400,Brooklyn Apartment W/ Balcony,10972334,Rob,Brooklyn,Bushwick,40.69825,-73.92788,Private room,175,1,6,2015-11-04,0.10,2,0 +3703037,SUBLET in the UWS,18876264,Daniel,Manhattan,Upper West Side,40.77817,-73.97844,Entire home/apt,200,1,0,,,1,0 +3703633,Reno 2BR~prime union squar~,2119276,Host,Manhattan,East Village,40.73268,-73.98689,Entire home/apt,195,30,7,2017-10-22,0.14,39,331 +3703805,Cozy spacious room in Crown Heights,6932160,Terry,Brooklyn,Crown Heights,40.66935,-73.9485,Private room,99,5,27,2018-10-25,0.70,1,365 +3704067,Garden Apartment with private patio in Townhouse,188896,Ellen,Brooklyn,Clinton Hill,40.69034,-73.96675,Entire home/apt,175,1,121,2019-01-21,2.03,2,171 +3706213,A Beautiful Alvoce Studio,10856201,Neda,Manhattan,Hell's Kitchen,40.76027,-73.99081,Entire home/apt,190,1,0,,,1,0 +3709013,Huge 1.5BR Artist Home in Brownstone Brooklyn :),7420906,Alix,Brooklyn,Bedford-Stuyvesant,40.68473,-73.95697,Entire home/apt,99,3,10,2018-11-13,0.28,1,66 +3710162,"CENTRAL Clean, Peaceful Private Room NoLita",1788746,Nathalie,Manhattan,Nolita,40.7216,-73.99558,Private room,100,2,6,2018-01-01,0.16,1,0 +3710230,Stunning renovated greystone,18929364,Abigail,Brooklyn,Prospect-Lefferts Gardens,40.66271,-73.95392,Entire home/apt,199,2,18,2018-08-25,0.30,1,0 +3710436,THREE BEDROOM APARTMENT IN BROOKLYN,318729,Mitch,Brooklyn,Bedford-Stuyvesant,40.67862,-73.94687,Entire home/apt,199,3,118,2019-07-01,2.12,1,23 +3710685,Vintage NYC apt 15min from Times Sq,15789646,Steven,Queens,Sunnyside,40.74502,-73.9169,Entire home/apt,100,3,70,2019-07-01,1.21,2,319 +3711039,Summer Porch: Taking Manhattan? Sleep in Astoria!,3007815,Alia,Queens,Astoria,40.76977,-73.91596,Shared room,45,2,38,2019-07-04,1.60,2,38 +3715638,Sunny Private Room at Central Park!,9784206,Saint,Manhattan,East Harlem,40.79508,-73.94895,Private room,72,1,204,2019-07-05,3.41,1,219 +3715824,Quiet spot in NYC,13042411,Walt,Manhattan,East Village,40.72669,-73.98419,Entire home/apt,129,2,179,2019-06-08,2.99,1,179 +3716193,Beautiful 2 Bedroom Townhouse,18970667,"Erin, Avi, Kaleb & Shiloh",Brooklyn,Bedford-Stuyvesant,40.68205,-73.94239,Entire home/apt,100,3,168,2019-06-27,2.81,1,317 +3717689,CHARMING BROOKLYN LOFT WITH PATIO,18393872,Natalie,Brooklyn,Bedford-Stuyvesant,40.69141,-73.95886,Entire home/apt,85,7,2,2017-05-15,0.03,1,0 +3717749,Two Porches & Private Room,5573250,Jason,Brooklyn,Kensington,40.6413,-73.98233,Private room,70,1,2,2015-07-06,0.03,1,0 +3718713,Sleek 1 bdrm in East W'burg/Bwick,18988423,Amanda Reil,Brooklyn,Williamsburg,40.70536,-73.94229,Entire home/apt,100,2,5,2015-12-27,0.09,1,0 +3720404,Sunny South Williamsburg Apartment,1363910,Emily,Brooklyn,Williamsburg,40.70914,-73.95236,Entire home/apt,160,3,1,2014-09-01,0.02,1,0 +3721826,Amazing apartment with your old private bathroom,19011946,John,Manhattan,Upper East Side,40.77883,-73.95498,Entire home/apt,185,30,1,2014-09-15,0.02,2,365 +3725902,"Sunny zen apt in Park Slope, BK",4830699,Jennifer,Brooklyn,Gowanus,40.6779,-73.98421,Entire home/apt,162,1,9,2016-09-06,0.23,1,0 +3727816,Great place near Flushing Meadow,19044620,Claudiu,Queens,Forest Hills,40.73538,-73.853,Private room,80,1,2,2014-10-22,0.03,1,0 +3727861,Manhattan Apartment- low rate ,19044783,Jasmine,Manhattan,Harlem,40.80257,-73.9548,Private room,200,1,0,,,1,0 +3728309,Private room in 3 bedroom apartment Bed Stuy,19046961,Amanda,Brooklyn,Bedford-Stuyvesant,40.68905,-73.92685,Private room,45,5,8,2019-05-01,0.31,1,247 +3728837,Factory Converted Studio Loft in GP,7503643,Vida,Brooklyn,Greenpoint,40.72533,-73.94204,Entire home/apt,129,30,6,2019-04-01,0.12,52,188 +3731209,"Quaint, Quiet 1BD",19067223,Mohini,Brooklyn,Williamsburg,40.71795,-73.95804,Private room,55,1,1,2015-06-17,0.02,1,0 +3731871,Sunny Bedroom in Bushwick Luxury Building,19072805,Carly,Brooklyn,Bushwick,40.69865,-73.92972,Private room,68,5,12,2018-12-05,0.26,1,14 +3731965,Williamsburg Brooklyn quiet abode,7598755,Elliot,Brooklyn,Williamsburg,40.71985,-73.94422,Entire home/apt,120,2,1,2016-03-13,0.02,1,0 +3735483,Beautiful Room in Sunny Brooklyn Apartment,5064699,Juliana,Brooklyn,Bedford-Stuyvesant,40.68732,-73.94058,Private room,55,2,41,2019-01-04,1.09,2,0 +3737180,Sanctuary Quiet Room in Apartment,19107278,Jaime,Brooklyn,Bushwick,40.70033,-73.91197,Private room,50,5,0,,,2,0 +3737847,Sanctuary Close To Manhattan ,19107278,Jaime,Brooklyn,Bushwick,40.7001,-73.91204,Private room,50,5,2,2016-06-01,0.03,2,0 +3738529,True Industrial Loft in Brooklyn,19111611,Chaim,Brooklyn,Navy Yard,40.69817,-73.9654,Entire home/apt,150,1,7,2016-07-11,0.12,1,0 +3738756,1 BR Beautiful Central Williamsburg,10675384,John,Brooklyn,Williamsburg,40.72037,-73.9596,Entire home/apt,140,30,21,2016-09-13,0.38,1,252 +3738815,"Large apartment, 2BR, Midtown NYC! 3D",17770287,Nina,Manhattan,Midtown,40.75068,-73.98177,Entire home/apt,136,30,9,2018-12-16,0.17,14,220 +3739126,Beautiful Private Bedroom in Soho,3586725,Sophie,Manhattan,Nolita,40.72339,-73.99477,Private room,92,5,0,,,1,0 +3739712,Rest your head-West Side Manhattan,2523466,Samuel,Manhattan,Hell's Kitchen,40.76215,-73.99036,Private room,125,3,133,2019-06-26,2.25,1,9 +3739864,Large Bedroom in Brooklyn for June and July.,14102923,Mark,Brooklyn,Flatbush,40.65136,-73.95974,Private room,48,5,0,,,1,0 +3740402,NYC: an Upper-Eastside room of your own!,18836774,Jime,Manhattan,Upper East Side,40.77693,-73.95632,Private room,82,3,56,2019-06-29,0.94,5,138 +3741405,2br in Manhattan NY ,10577253,Nataly,Manhattan,Harlem,40.81217,-73.95303,Entire home/apt,150,1,3,2016-01-02,0.05,1,0 +3741530,Large Light-Filled Brownstone 1-BR,19131844,Gemma,Brooklyn,Bedford-Stuyvesant,40.68237,-73.94811,Entire home/apt,90,8,17,2019-03-12,0.42,1,0 +3741728,Missy's Place,19133023,Melissa,Brooklyn,Bedford-Stuyvesant,40.68667,-73.93897,Entire home/apt,117,5,105,2019-06-27,1.77,1,6 +3741945,Have your NYC experience with us!,18836774,Jime,Manhattan,Upper East Side,40.77707,-73.95652,Private room,71,3,55,2019-06-01,1.03,5,156 +3742373,Beautiful apartment by Columbus Circle,9859391,Andrew,Manhattan,Chelsea,40.74944,-73.99631,Entire home/apt,390,3,10,2019-01-02,0.17,1,9 +3743048,*WARM*Beautiful*Room*ST. GEORGE steps to ferry!,19143974,Meghan,Staten Island,St. George,40.64408,-74.07834,Private room,58,3,93,2019-05-06,2.10,1,279 +3747107,Clean+Comfy+Cozy Room in NYC Home,9535767,Nayoung,Queens,Woodside,40.74626,-73.9009,Private room,50,5,3,2015-08-07,0.05,1,0 +3747240,Stunning 2BR Apartment in Top Location,2203817,Debbie,Brooklyn,Park Slope,40.67256,-73.97212,Entire home/apt,150,5,10,2018-01-03,0.17,1,0 +3747392,Private Rm in heart of Williamsburg,15805343,Tessa,Brooklyn,Williamsburg,40.71858,-73.95711,Private room,150,1,9,2016-06-07,0.19,1,0 +3747567,Sunny Bedroom in El Barrio,522065,Liz And Melissa,Manhattan,East Harlem,40.79416,-73.93984,Private room,80,7,47,2019-05-23,0.80,2,121 +3749971,Williamsburg Apt. w/ private patio,10094431,Sofia,Brooklyn,Williamsburg,40.71623,-73.96415,Private room,115,1,78,2019-07-01,1.31,1,8 +3750917,SPACIOUS LIVINGROOM IN BROOKLYN,19191737,Joshua,Brooklyn,Windsor Terrace,40.65084,-73.97334,Private room,70,10,0,,,1,0 +3751048,GREAT ONE BED! ELEVATOR/LAUNDRY ,1475015,Mike,Manhattan,Upper East Side,40.77175,-73.95742,Entire home/apt,95,30,10,2018-11-10,0.22,52,336 +3751919,A Fantastic Master Bedroom Suite in a 3BD apt,15270760,Ed,Brooklyn,Bedford-Stuyvesant,40.69411,-73.93987,Private room,85,2,1,2018-01-01,0.05,1,0 +3752035,New & Modern 2 BR Brownstone Apt.,14961638,Elito,Brooklyn,Bedford-Stuyvesant,40.68772,-73.95484,Entire home/apt,180,3,72,2019-06-17,1.31,1,291 +3755474,New Bright & Modern Apartment within a Brownstone,9928037,Elliot,Manhattan,Murray Hill,40.74735,-73.97671,Entire home/apt,149,3,8,2018-01-02,0.17,1,0 +3757178,last minute TRIBECA CONDO AVAILABLE,19233588,Jupira,Manhattan,Tribeca,40.71726,-74.01134,Entire home/apt,200,7,16,2017-09-19,0.34,1,0 +3757461,"Manhattan Sun Drenched +Near Gramercy",17465563,Lola,Manhattan,Gramercy,40.73601,-73.98205,Private room,69,2,177,2019-06-22,2.98,1,285 +3758296,Central Park West & Columbia U: Comfy Private Room,19240279,Ms. Yvonne,Manhattan,Morningside Heights,40.80645,-73.95804,Private room,85,5,25,2019-01-02,0.44,1,198 +3758686,★ Convenience & Comfort Awaits! ♥️ Your Stay! ★,19242857,O.D.,Brooklyn,Crown Heights,40.67472,-73.93,Entire home/apt,117,1,82,2019-06-16,1.39,1,280 +3759009,Spacious Studio in West Village!,18270150,Nancy,Manhattan,West Village,40.73243,-74.00052,Entire home/apt,219,1,68,2019-06-25,1.15,1,122 +3760029,Charming studio for rent in Astoria,19250606,Sylvia,Queens,Astoria,40.75508,-73.91673,Entire home/apt,100,2,141,2019-07-02,2.43,1,216 +3760158,Hey Beautiful Brooklyn Brownstone!,10491406,Donna,Brooklyn,Prospect Heights,40.67609,-73.96459,Entire home/apt,320,3,39,2019-04-21,0.71,1,242 +3760592,Large Room in Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74213,-73.9801,Private room,95,30,54,2018-12-16,0.91,26,335 +3760824,Bushwick Room w/ Private Entrance & Bathroom!,12720552,Julie,Brooklyn,Bushwick,40.70322,-73.92913,Private room,110,1,16,2019-06-15,0.32,5,345 +3762842,Perfect mid summer apart available,19272788,Pierre,Manhattan,Harlem,40.80581,-73.95374,Entire home/apt,105,24,2,2018-08-31,0.04,1,60 +3764540,"Beautiful 1BR with Yard, Williamsburg",3022504,Michael,Brooklyn,Williamsburg,40.7151,-73.95422,Entire home/apt,134,4,46,2019-06-18,0.89,1,32 +3765095,Sunny Private Room Facing Beautiful Prospect Park,5242693,Neysa,Brooklyn,Flatbush,40.65441,-73.96257,Private room,45,10,9,2018-05-16,0.26,1,90 +3765357,Feel at home in Manhattan at charming NY apartment,5160726,Tony,Manhattan,Kips Bay,40.73967,-73.98041,Entire home/apt,200,13,3,2016-05-15,0.05,1,166 +3766496,THEATRE DISTRICT - LARGE ROOM,5086937,Josh,Manhattan,Hell's Kitchen,40.76559,-73.99221,Private room,110,2,79,2019-06-24,1.33,1,80 +3766770,Romantic 1 bedroom Part2 Harlem USA,17479416,Tae,Manhattan,East Harlem,40.80592,-73.93653,Entire home/apt,150,3,72,2019-04-29,1.23,2,283 +3767156,Mid-Century Modern Garden Paradise,16351647,Carmia And Joe,Brooklyn,Bushwick,40.6825,-73.90818,Entire home/apt,149,2,234,2019-06-23,3.90,1,255 +3767267,Lovely private room in Manhattan,3231109,Trish,Manhattan,Morningside Heights,40.81065,-73.96312,Private room,85,2,52,2019-06-05,0.91,2,329 +3767674,2BR Apt with huge outdoor space,4951037,Carolina,Brooklyn,Bedford-Stuyvesant,40.68818,-73.959,Entire home/apt,200,7,5,2016-09-10,0.09,1,0 +3768977,"2 bedroom Duplex condo ++ yard 7 min to Manhattan",18953786,Ehsan,Queens,Astoria,40.76403,-73.92162,Entire home/apt,170,3,116,2019-06-13,1.96,2,355 +3769052,Great Sunny Spacious Room,3086826,Melody,Bronx,Mount Hope,40.84611,-73.91036,Private room,40,3,59,2019-04-05,1.00,1,343 +3769257,Spacious Stylish Sunny Retreat,19315796,Andrew,Manhattan,Midtown,40.75911,-73.96299,Private room,70,1,0,,,1,0 +3771656,Amazing Upper East Side Location,19331457,Yevgeny,Manhattan,Upper East Side,40.77632,-73.95458,Private room,95,1,389,2019-07-01,6.51,2,254 +3771845,Private Room in Great NYC Nbrhood,7665324,Edward,Manhattan,Lower East Side,40.72144,-73.99356,Private room,95,1,64,2019-06-23,1.12,2,266 +3772256,Modern Studio at The Manhattan Club,15765273,Schatzie,Manhattan,Midtown,40.76514,-73.98058,Private room,350,1,9,2018-08-25,0.20,1,0 +3775259,BED-STUY SOUTHERN COMFORT ,19356930,Ella,Brooklyn,Bedford-Stuyvesant,40.6872,-73.93805,Entire home/apt,165,3,173,2019-07-06,2.97,1,297 +3775379,Peaceful Studio in Prospect Heights,2274845,Liz,Brooklyn,Prospect Heights,40.67262,-73.96542,Entire home/apt,120,2,21,2019-05-19,0.51,1,13 +3775978,Private Room in Flatiron,19359650,Julian,Manhattan,Midtown,40.74596,-73.98678,Private room,130,3,10,2017-09-19,0.38,1,0 +3779230,"Bright, cozy den in 4 bedrm duplex.",23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68826,-73.9385,Private room,40,1,8,2019-06-05,0.16,4,335 +3779262,BKLYN BROWNSTONE: The Stuyvesant,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.6825,-73.92519,Entire home/apt,130,3,135,2019-05-28,2.27,2,206 +3780113,Studio apartment,5785240,Laurent,Manhattan,Harlem,40.80919,-73.94815,Entire home/apt,120,3,80,2019-06-29,1.37,1,245 +3780206,Perfect Brooklyn Studio Apartment,6739436,Madeline,Brooklyn,Bushwick,40.70716,-73.92171,Entire home/apt,90,1,40,2016-01-16,0.68,1,0 +3780715,Akua's Bed-Stuy Study,18880856,Carlton,Brooklyn,Bedford-Stuyvesant,40.68358,-73.94838,Private room,120,2,82,2019-06-21,1.60,1,328 +3780951,Charming Harlem apartment,16065171,Gina,Manhattan,Harlem,40.81022,-73.94266,Shared room,115,1,16,2019-05-26,0.27,1,365 +3782283,HUGE space at the heart of Meatpacking - Chelsea .,7196556,Eilon,Manhattan,Chelsea,40.73986,-74.00035,Entire home/apt,150,2,1,2014-09-01,0.02,1,0 +3782441,cute convenient village suite,5003239,Ali,Manhattan,Greenwich Village,40.7311,-74.00014,Private room,170,1,20,2019-05-02,0.40,1,364 +3782925,Cute apartment with Backyard,3363799,Andrew,Brooklyn,Williamsburg,40.70967,-73.94945,Entire home/apt,124,5,85,2019-06-23,1.45,1,238 +3783016,Luxury Studio on (Email hidden by Airbnb),3716641,Ofer,Manhattan,Upper West Side,40.79253,-73.97378,Entire home/apt,104,30,16,2018-12-23,0.28,8,101 +3783021,Entire Luxury Newly Renovated Studio,3716641,Ofer,Manhattan,Upper West Side,40.79203,-73.97299,Entire home/apt,99,30,14,2019-06-19,0.24,8,135 +3783639,Quiet private room in luxury bldg facing park,10193030,Kaori,Manhattan,Harlem,40.82217,-73.94149,Private room,85,3,0,,,2,88 +3785438,Quiet Oasis in the Middle of it All,16437254,Benjamin,Brooklyn,Fort Greene,40.68961,-73.97781,Entire home/apt,158,30,5,2019-03-30,0.10,21,278 +3787867,Lower East Side Luxury,15047361,Brooke,Manhattan,Lower East Side,40.72046,-73.99237,Entire home/apt,400,3,0,,,1,0 +3789265,Lovely Walk Up in the Heights,5680409,Jennifer,Manhattan,Washington Heights,40.85672,-73.9302,Shared room,100,2,0,,,1,363 +3789758,1 Bed Apt in Greenpoint Brooklyn ,18609156,Tim,Brooklyn,Greenpoint,40.72793,-73.95011,Entire home/apt,115,1,2,2015-06-18,0.03,1,0 +3790118,Metro-luxe Tuscan Suite Private Room,17292935,Anne,Bronx,Mott Haven,40.8105,-73.92507,Private room,55,1,276,2019-06-17,4.63,2,19 +3790746,Tidy Sweet Room in Sugar Hill/Hamilton Heights,1317384,Tamara,Manhattan,Harlem,40.82621,-73.94596,Private room,72,3,154,2019-06-22,2.72,2,153 +3791244,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73254,-74.00698,Entire home/apt,170,30,12,2018-08-12,0.22,39,252 +3791325,1BR Clinton Hill Apt Beautiful Garden - Video,3028267,Vernon,Brooklyn,Clinton Hill,40.69352,-73.96556,Entire home/apt,150,7,15,2019-05-25,0.27,1,280 +3791554,Cosy Inwood apartment,5810195,Emilie,Manhattan,Inwood,40.85988,-73.92709,Private room,39,1,13,2019-06-30,1.18,2,233 +3792246,private bedroom in NYC apartment,7508547,Pamela,Queens,Ridgewood,40.7012,-73.90008,Private room,49,2,77,2019-06-22,1.53,1,1 +3793161,location Vera,3250450,Petya,Queens,Woodside,40.75338,-73.90618,Private room,39,30,9,2019-05-14,0.16,18,318 +3793246,large 1 BR in heart of East Village,2331719,Marina,Manhattan,East Village,40.72695,-73.98617,Entire home/apt,200,3,78,2019-05-12,1.33,1,336 +3793542,Vintage Williamsburg 1BR near park!,700913,Gage,Brooklyn,Williamsburg,40.71601,-73.95359,Entire home/apt,185,30,12,2018-08-13,0.20,1,0 +3793874,Beautiful West Village 1 BR Apt--Best Location!,19106718,Leena,Manhattan,West Village,40.73223,-74.00355,Entire home/apt,200,4,17,2019-06-28,0.29,1,35 +3797183,Room in spacious Boerum Hill duplex,2538522,Emma,Brooklyn,Boerum Hill,40.68558,-73.9815,Private room,110,3,1,2014-08-19,0.02,1,0 +3798874,Spacious Duplex Garden Apt Park Slope Brooklyn,19510462,Tracey,Brooklyn,Park Slope,40.68098,-73.97925,Entire home/apt,275,3,4,2016-09-17,0.07,1,0 +3798941,Williamsburg Penthouse Guestroom,6642777,Martin,Brooklyn,Williamsburg,40.71231,-73.95313,Private room,105,1,372,2019-06-21,6.23,2,59 +3799598,★Unique two bedroom on 2nd Avenue★,7558452,Zev,Manhattan,East Village,40.72328,-73.98926,Entire home/apt,260,1,299,2019-06-23,5.04,2,232 +3800332,South Williamsburg large parlor apt.,3245596,Scottie,Brooklyn,Williamsburg,40.71283,-73.96714,Entire home/apt,175,25,4,2016-04-08,0.07,1,0 +3800547,PrivatePeaceful Pad near JFKairport,7453027,Marie Yves,Brooklyn,Canarsie,40.64287,-73.90228,Entire home/apt,90,3,96,2019-06-24,1.66,1,295 +3800549,Williamsburg Studio,810266,Jonathan,Brooklyn,Williamsburg,40.71694,-73.96017,Entire home/apt,125,21,1,2015-04-30,0.02,1,0 +3801407,Art Boutique Stateroom at JFK Airport,10162529,Jay,Queens,St. Albans,40.7012,-73.75041,Entire home/apt,239,3,11,2018-11-20,0.45,2,355 +3801701,Private Studio Near Union Square,12090062,Annie,Manhattan,Chelsea,40.73996,-73.99919,Entire home/apt,195,2,31,2018-12-09,0.52,1,10 +3802218,Cozy Private Bedroom,19533769,Chandra,Bronx,Mott Haven,40.80772,-73.91791,Private room,53,1,321,2019-06-12,5.46,1,44 +3802538,Best location in NYC,16677444,Jeevan,Manhattan,Hell's Kitchen,40.75882,-73.99168,Private room,99,1,147,2019-05-19,2.84,1,4 +3802966,One bedroom in Inwood Apartment,19539944,Jen,Manhattan,Inwood,40.86711,-73.92742,Private room,52,7,0,,,1,0 +3804690,Statue of Liberty Views Downtown,19550968,Silvia,Manhattan,Battery Park City,40.71019,-74.01705,Entire home/apt,130,60,4,2015-05-07,0.07,1,13 +3808093,Amazing 1BR condo with water views,19569660,Brian,Manhattan,Battery Park City,40.71031,-74.01557,Entire home/apt,325,30,9,2015-06-17,0.16,1,0 +3808119,"Charming, Airy 2 Bedroom Brownstone in Bed-Stuy",19569725,Cathy,Brooklyn,Bedford-Stuyvesant,40.68419,-73.92217,Entire home/apt,135,2,252,2019-06-22,4.37,1,35 +3808230,Big Beautiful Bedroom w/Private Bathroom,7848968,Morgan,Brooklyn,Prospect Heights,40.67548,-73.96802,Private room,85,2,206,2019-06-18,3.50,2,3 +3808323,Large Private Rm in Historic Central Harlem Home,265278,Atlantis & Carmen,Manhattan,Harlem,40.80384,-73.94692,Private room,68,3,164,2019-06-21,2.85,1,87 +3808358,Room 15. min from Midtown in Super Safe Area,19569282,Kay,Queens,Astoria,40.76315,-73.92709,Private room,45,14,1,2014-08-16,0.02,1,0 +3808620,Great Renovations. Columbus Circle,1475015,Mike,Manhattan,Hell's Kitchen,40.76867,-73.98541,Entire home/apt,87,30,6,2019-04-21,0.11,52,365 +3811186,Chandelier Room on Historic Brooklyn Block,19524858,Isa,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.95419,Private room,89,1,52,2018-09-23,1.44,1,188 +3811639,Beautiful sun-filled Loft BROOKLYN,10603767,Samantha,Brooklyn,Bushwick,40.70784,-73.92224,Entire home/apt,150,3,203,2019-06-22,3.42,1,308 +3811757,Elegant Gramercy Park Studio,3997854,Andre,Manhattan,Flatiron District,40.73923,-73.98589,Entire home/apt,124,30,10,2016-08-13,0.17,1,0 +3812133,"Sunny, Central, Quiet, UWS, 72&Bway",1529179,Gs,Manhattan,Upper West Side,40.77885,-73.98178,Entire home/apt,169,7,0,,,1,0 +3812222,"Suite w/private bath, Forest Hills",19597910,Ruth,Queens,Forest Hills,40.72356,-73.83982,Private room,125,2,128,2019-05-18,2.17,3,332 +3812554,"Master Bedrm, Steam Shr/Jacuzzi, FH",19597910,Ruth,Queens,Forest Hills,40.727,-73.83924,Private room,145,2,75,2019-05-19,1.27,3,358 +3816424,3,23633,Eugene,Brooklyn,Bushwick,40.70248,-73.93225,Private room,75,1,0,,,2,0 +3816499,2,23633,Eugene,Brooklyn,Bushwick,40.70315,-73.93124,Private room,75,2,2,2015-11-01,0.04,2,0 +3817216,Doorman nice 1bd/ United Nations!!,1475015,Mike,Manhattan,Murray Hill,40.74915,-73.97196,Entire home/apt,87,30,7,2019-05-31,0.12,52,340 +3817304,"Stay 30 min to Times Sq in quaint Sunnyside, Qns",6615826,Chad,Queens,Sunnyside,40.74219,-73.92585,Private room,50,5,6,2019-06-24,1.41,1,54 +3817666,ColumbusCircle~W/D~new BLDG~Balcony,2119276,Host,Manhattan,Hell's Kitchen,40.7662,-73.98612,Entire home/apt,150,30,11,2019-03-23,0.20,39,313 +3818187,Sunny Room in Shared Apartment,19633755,Corey,Manhattan,Upper West Side,40.79744,-73.97098,Private room,95,30,2,2016-05-27,0.04,1,365 +3818279,Reno1BR~RiverView~Luxury24D~Roof~,2119276,Host,Manhattan,Murray Hill,40.74445,-73.97181,Entire home/apt,200,30,7,2018-08-20,0.14,39,188 +3818298,Sunny 1bed Oasis in South Harlem/Upper West Side,3856533,Amanda,Manhattan,Harlem,40.80293,-73.95586,Entire home/apt,120,1,23,2019-01-07,0.45,1,0 +3819407,"UWS Charmer, Central Park/Lincoln Center",9784802,Tina,Manhattan,Upper West Side,40.77627,-73.98081,Entire home/apt,325,3,70,2019-05-26,1.19,1,71 +3819656,SoHo/Village Studio,19644902,Russell,Manhattan,Greenwich Village,40.72774,-74.00004,Entire home/apt,165,2,2,2015-06-26,0.04,1,0 +3819703,5107-Studio Doorman GYM LuX,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79082,-73.97452,Entire home/apt,140,30,4,2017-09-04,0.09,96,342 +3819946,Great cozy in Brooklyn,20169857,Fabeye & Nabou,Brooklyn,Bedford-Stuyvesant,40.69634,-73.9441,Private room,33,1,52,2019-04-08,0.87,2,255 +3821676,Lower East Side Artist's Sanctuary,14908547,Elyse,Manhattan,Lower East Side,40.71962,-73.98434,Entire home/apt,169,4,7,2016-01-03,0.14,1,0 +3822172,Colorful 2 Bedroom in Brooklyn,19663195,Alison,Brooklyn,Williamsburg,40.71863,-73.94416,Entire home/apt,75,24,0,,,1,27 +3825437,Trendy East Village Penthouse Apt,7018154,Maha,Manhattan,Gramercy,40.73293,-73.9836,Entire home/apt,190,5,5,2016-01-02,0.08,1,0 +3826037,Location Little Lapa ( only female ),3250450,Petya,Queens,Astoria,40.76577,-73.91471,Private room,39,30,9,2018-07-26,0.19,18,237 +3826226,Brooklyn 2 bedroom Apartment,15733420,Marcus,Brooklyn,Bedford-Stuyvesant,40.68252,-73.94443,Entire home/apt,165,4,138,2019-06-24,2.66,2,322 +3826908,"Home, Sweet Home!",19691070,Haim,Queens,Long Island City,40.74622,-73.94277,Private room,79,1,39,2019-07-06,0.83,1,297 +3827311,Cozy & Sunny Hamilton Heights Apt ,19693124,Maia,Manhattan,Harlem,40.82654,-73.9462,Entire home/apt,125,1,10,2019-06-12,0.17,1,297 +3827442,"Large, Luxurious 1 bdrm W. Village",1484799,Matthew,Manhattan,West Village,40.73016,-74.00259,Entire home/apt,349,4,10,2016-09-05,0.17,1,0 +3829039,Prime Williamsburg Brooklyn Apartment for Holidays,4702135,Jared,Brooklyn,Williamsburg,40.71328,-73.95787,Private room,130,1,0,,,1,0 +3829261,Beautiful Terrace Room,19708200,Larry,Brooklyn,Canarsie,40.63881,-73.91751,Private room,40,3,41,2019-05-03,0.70,3,278 +3829609,Brooklyn's finest. Renovated apt!,4928083,Fernando,Brooklyn,Crown Heights,40.67767,-73.95162,Entire home/apt,76,5,14,2019-04-11,0.28,1,0 +3831962,Lg Quiet Artist Home -Ditmas Park -,2236848,Liz,Brooklyn,Flatbush,40.64699,-73.96307,Entire home/apt,50,24,0,,,1,0 +3832444,Bushwick schoolhouse,19239110,Kurt,Brooklyn,Bushwick,40.70098,-73.93959,Private room,45,30,25,2019-03-28,0.53,1,197 +3832774,"Sunny, charming 1 bedroom apartment",18982191,Todd,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93797,Entire home/apt,80,3,2,2016-08-15,0.06,1,0 +3832863,1 Bedroom w/ huge Deck in West Village/SOHO,18094896,Wendy,Manhattan,West Village,40.72912,-74.00298,Entire home/apt,265,4,21,2019-03-30,0.36,1,334 +3832932,Beautiful Sunset Park,15192022,Kaykay,Brooklyn,Sunset Park,40.64752,-74.0059,Shared room,65,2,7,2017-05-13,0.12,1,0 +3833538,Classic Brownstone 1 Bed. Apt.,2141246,Polly,Brooklyn,Bedford-Stuyvesant,40.68127,-73.94865,Entire home/apt,90,3,2,2016-09-11,0.05,1,0 +3835052,"Sunny, Charming Boho Apt Near all in the Village!",3284613,Jana,Manhattan,Greenwich Village,40.72917,-73.99974,Private room,115,25,70,2018-08-26,1.27,1,31 +3835334,UWS one br near Central Park,539204,Joaquin,Manhattan,Upper West Side,40.79998,-73.96404,Entire home/apt,145,15,0,,,1,0 +3835633,The Emerald Room,19708200,Larry,Brooklyn,Canarsie,40.63888,-73.91729,Private room,45,3,23,2019-06-23,0.39,3,327 +3835681,"Great location, new lower rates!!!",3339701,Angelo,Queens,Ditmars Steinway,40.77478,-73.91913,Private room,50,1,164,2019-06-20,2.78,4,308 +3835740,Cozy & Comfy in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68769,-73.93074,Private room,72,2,36,2019-06-29,0.61,7,71 +3835757,...New lower rates for low season!!,3339701,Angelo,Queens,Ditmars Steinway,40.77376,-73.91855,Private room,50,1,207,2019-06-21,3.48,4,311 +3835766,Oasis in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68565,-73.93249,Private room,57,2,43,2019-05-26,0.72,7,58 +3836180,Beautiful West Village 1 BR Gem!,19758346,Adriana,Manhattan,West Village,40.73648,-74.00173,Entire home/apt,225,3,5,2016-06-19,0.08,1,0 +3836189,"Amazing, Spacious Bedroom in BK",9314076,Naeem,Brooklyn,Bedford-Stuyvesant,40.69291,-73.95142,Private room,80,1,0,,,1,0 +3836199,"2 bedroom with yard, 4 mins to LGA",19758179,Telmo,Queens,East Elmhurst,40.76287,-73.88367,Entire home/apt,120,3,102,2019-06-04,1.73,1,300 +3838056,Unique stylish garden apartment,4091348,Ila,Brooklyn,Williamsburg,40.71241,-73.9653,Entire home/apt,450,4,0,,,1,0 +3838375,"Cheerful, Comfortable & Convenient",177233,Lisa,Manhattan,Upper West Side,40.79903,-73.96451,Entire home/apt,249,2,80,2019-07-06,1.35,1,58 +3838388,Large Sunny Nicely Furnished Studio,19772879,Kim,Manhattan,Washington Heights,40.83818,-73.94303,Entire home/apt,100,1,0,,,1,0 +3838416,Beautiful Huge 2Br House w/Backyard,107340,Eric,Brooklyn,Prospect-Lefferts Gardens,40.65806,-73.95815,Entire home/apt,225,4,3,2014-10-19,0.05,1,0 +3839364,"Fabulous Large 1 Bed in Riverdale, Bronx NYC",9332835,Karen,Bronx,Fieldston,40.89022,-73.9039,Entire home/apt,95,14,3,2019-07-05,0.13,1,0 +3840000,4 ROOM RAILROAD - WILLIAMSBURG,19783353,Ryan,Brooklyn,Williamsburg,40.70955,-73.95085,Entire home/apt,90,4,17,2019-01-24,0.29,1,4 +3840127,Cozy yet spacious apt in Brooklyn,1459837,Geeta,Brooklyn,Bedford-Stuyvesant,40.68056,-73.9151,Entire home/apt,101,10,16,2018-05-27,0.29,1,0 +3840286,"Modern, sunny two bedroom",1482208,Allison,Brooklyn,Williamsburg,40.71159,-73.94043,Entire home/apt,246,2,25,2019-03-31,0.54,2,0 +3840324,Williamsburg + private patio garden,10366196,Matt,Brooklyn,Williamsburg,40.70859,-73.94639,Entire home/apt,120,5,18,2019-02-26,0.32,1,188 +3840541,Spacious Modern Loft in Cobble Hill,19785817,Gary,Brooklyn,Downtown Brooklyn,40.69054,-73.99039,Entire home/apt,150,3,68,2019-06-13,1.35,1,88 +3841033,"Bright, clean studio by subway",9708374,Anaïs,Brooklyn,Bay Ridge,40.63592,-74.02704,Entire home/apt,119,1,1,2016-01-09,0.02,1,0 +3841048,"2BR, Heart of Lower East Side",18286622,Ryan,Manhattan,Lower East Side,40.72174,-73.98501,Entire home/apt,150,1,8,2015-06-19,0.13,1,0 +3841113,Cozy private room in UES,2222500,Valerie,Manhattan,Upper East Side,40.77993,-73.94939,Private room,80,5,18,2017-11-18,0.30,2,118 +3842694,Spacious Home by the Bay,1277222,Sanda,Brooklyn,Sheepshead Bay,40.58581,-73.9383,Entire home/apt,189,2,13,2016-10-25,0.27,1,0 +3847733,"Sunny Apt in Bed Stuy, A/C/E Trains",12971995,Kate,Brooklyn,Bedford-Stuyvesant,40.68082,-73.93599,Private room,90,3,39,2015-05-23,0.67,1,0 +3848324,West Village apt - 2 Bedroom,11495251,(Email hidden by Airbnb),Manhattan,West Village,40.73123,-74.00428,Entire home/apt,200,5,1,2014-08-30,0.02,1,0 +3848431,Apt in Harlem 1 month minimun stay,19839188,Dolores,Manhattan,Harlem,40.82019,-73.95448,Entire home/apt,120,25,6,2019-01-23,0.11,1,225 +3849226,Gorgeous Room in Heart of Soho,5369757,Leighann,Manhattan,SoHo,40.72569,-74.00331,Private room,149,1,55,2019-05-22,0.94,1,354 +3849347,Beautiful 1b Bloomingdales location,1475015,Mike,Manhattan,Upper East Side,40.76236,-73.96642,Entire home/apt,130,30,2,2016-07-16,0.04,52,365 +3850254,"Private Room in Bushwick, fully furnished",5175407,Holly,Brooklyn,Bushwick,40.6998,-73.93265,Private room,35,10,20,2018-02-01,0.34,1,0 +3850493,JOE'S PARADISE 5019,19349568,Joseph,Brooklyn,Flatlands,40.6225,-73.92578,Entire home/apt,139,3,108,2019-07-06,1.83,1,353 +3850967,"A bright, beautiful treehouse",3424306,Kristina,Brooklyn,Crown Heights,40.6692,-73.94739,Entire home/apt,100,2,11,2016-08-08,0.24,1,0 +3851498,L,19860559,Nancy,Manhattan,Upper West Side,40.78802,-73.97509,Private room,65,30,12,2017-09-30,0.21,1,336 +3851623,"Convenient, Greenwich/West Village Apartment",1582736,Pam,Manhattan,Greenwich Village,40.7338,-73.99498,Entire home/apt,200,5,7,2019-01-05,0.18,1,0 +3851719,Amazing 1brm in the Best Location,4940167,Theodora,Manhattan,Gramercy,40.73608,-73.9857,Entire home/apt,99,4,26,2017-04-27,0.49,1,0 +3851911,large sunny pre war studio ,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.6847,-73.94523,Entire home/apt,115,2,59,2019-06-08,1.02,5,337 +3852261,SUNNY ROOM FOR TWO @ ELEGANT HOME NEAR JFK,19866189,Natasha,Queens,Arverne,40.58835,-73.79565,Private room,149,1,91,2019-07-01,1.53,5,358 +3852988,"Lovely, modern townhouse",12615927,Kate,Brooklyn,Sunset Park,40.65957,-73.99253,Entire home/apt,135,3,15,2019-07-07,0.32,1,10 +3857180,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65575,-73.9609,Private room,150,5,11,2016-10-31,0.23,2,0 +3857863,Studio In Townhouse,19902271,John & Catherine,Manhattan,Washington Heights,40.83602,-73.94294,Private room,105,3,104,2019-06-24,1.79,1,288 +3858105,Light and Airy top floor apartment ,5174082,Rebecca,Brooklyn,Columbia St,40.68404,-74.004,Entire home/apt,75,8,1,2014-08-25,0.02,1,0 +3858822,"Big, Sunny and QUIET West Village Studio",7782769,Alexander,Manhattan,West Village,40.73824,-74.00027,Entire home/apt,175,3,45,2018-07-17,1.05,1,0 +3860464,"BedStuy Fly, a relaxing retreat.",1812825,Samita,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92947,Entire home/apt,135,3,8,2015-09-10,0.14,1,0 +3860762,Amazing Big Sunny Room with Porch,1908606,Suleman,Brooklyn,Bedford-Stuyvesant,40.68989,-73.95428,Private room,72,5,0,,,1,88 +3860899,Huge room in East Williamsburg,12749383,Joseph,Brooklyn,Williamsburg,40.70684,-73.94227,Private room,60,1,0,,,1,0 +3861713,2 BRs with private entrance/kid-fr,13644183,Maria And Mariano,Brooklyn,Greenpoint,40.72241,-73.94179,Private room,97,5,3,2015-09-16,0.06,1,0 +3861943,Spacious Studio in Time Square,14733148,Susan,Manhattan,Hell's Kitchen,40.76052,-73.99115,Entire home/apt,860,4,39,2016-08-17,0.67,1,365 +3864528,Amazing Priv 1 BR in Hells Kitchen,19800918,Will,Manhattan,Hell's Kitchen,40.76053,-73.99002,Private room,200,1,0,,,1,0 +3866538,Home Away from Home,19961114,Chris,Manhattan,Upper West Side,40.78789,-73.97427,Entire home/apt,98,3,233,2019-06-26,3.97,1,33 +3866843,"Renovated, Nice 1BD Central Park",1475015,Mike,Manhattan,Upper West Side,40.76908,-73.98483,Entire home/apt,87,30,5,2019-03-16,0.10,52,365 +3866888,Midtown NYC 2bdrm with patio! 2D,17770287,Nina,Manhattan,Midtown,40.7495,-73.98313,Entire home/apt,150,30,13,2019-05-05,0.23,14,331 +3867293,Breathtaking Penthouse Skyline Room & 20min to NYC,18260299,Ota,Brooklyn,Bushwick,40.69349,-73.90726,Private room,50,4,3,2019-01-09,0.06,6,79 +3867705,5146-Doorman Pool!1 bedroom View,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7937,-73.9659,Entire home/apt,185,30,2,2018-07-16,0.13,96,310 +3868100,Heart of LES + Patio,47459,James,Manhattan,Lower East Side,40.72168,-73.98876,Entire home/apt,225,2,16,2019-04-28,0.28,1,0 +3868344,elegant pre war two bedroom flat,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68374,-73.942,Entire home/apt,151,5,51,2019-06-07,0.87,5,318 +3869398,private Greenpoint apt,2718526,Kory,Brooklyn,Greenpoint,40.73385,-73.95418,Entire home/apt,75,1,42,2019-06-18,0.72,1,10 +3869762,Upper East Side Manhattan 1 Bed Apt,8180517,Manuel,Manhattan,Upper East Side,40.78124,-73.95227,Entire home/apt,110,1,0,,,1,0 +3869779,Loft in Bushwick/East Williamsburg,4089400,Alex,Brooklyn,Bushwick,40.70818,-73.92256,Entire home/apt,150,2,254,2019-06-20,4.33,1,294 +3870158,Cozy East Village/Gramercy Studio by Union Square,19986984,Eliane,Manhattan,East Village,40.73263,-73.98728,Entire home/apt,145,4,17,2019-06-17,0.29,1,0 +3870294,Large 1-Bedroom by Subway with Elevator and Charm!,736815,Irena,Manhattan,East Village,40.72471,-73.98673,Entire home/apt,250,4,28,2019-06-09,0.49,1,4 +3870793,"Only 20 min to Times Sq., US Open",19993822,Tony,Queens,Elmhurst,40.74122,-73.88641,Private room,170,1,4,2015-09-27,0.07,1,90 +3874702,A garden apartment in a brownstone.,16765013,Marek,Brooklyn,Clinton Hill,40.68423,-73.96242,Entire home/apt,145,5,53,2019-06-02,0.90,1,14 +3874870,Charming 1-Bedroom in East Village,4564600,Roxanne,Manhattan,East Village,40.72915,-73.98501,Entire home/apt,200,6,19,2017-07-06,0.32,1,0 +3875294,Beautiful Brooklyn Bedroom!,20022909,Jessica,Brooklyn,Crown Heights,40.6749,-73.95166,Private room,50,1,5,2016-09-25,0.09,1,0 +3876850,Beautiful - Upper West Side ,20033436,Michael,Manhattan,Upper West Side,40.79254,-73.97531,Private room,250,1,6,2015-05-19,0.10,1,365 +3880588,Penthouse Apt with Roofdeck,4084075,Taz And Nayyirah,Manhattan,Murray Hill,40.74712,-73.97434,Entire home/apt,229,2,21,2018-12-31,0.36,1,0 +3881808,"Park Ave, Sunny 2beds 6 train, WiFi",18051112,Caleb,Manhattan,East Harlem,40.78697,-73.94999,Entire home/apt,129,2,12,2016-05-10,0.20,1,0 +3882103,5136-Doorman 2 bedroom 3 beds!,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76665,-73.9866,Entire home/apt,250,30,0,,,96,281 +3882466,5132- Huge Studio! SWIMMING POOL,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79563,-73.9664,Entire home/apt,168,30,4,2019-03-31,0.16,96,283 +3882682,Private sunny room in Harlem house w/garden,194994,Nora,Manhattan,Harlem,40.81419,-73.94717,Private room,80,4,27,2018-10-29,0.46,1,196 +3883020,Huge Apartment! Convenient! Artsy! Comfy!,12556197,Rez,Brooklyn,Crown Heights,40.66856,-73.95619,Entire home/apt,104,5,45,2019-06-30,0.77,2,159 +3884105,"Big, Bright Studio Blocks from Park and Subway",20084270,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96001,Entire home/apt,100,2,7,2018-08-26,0.12,1,0 +3884893,Convenient Lovely Manhattan Private Bathroom,16715941,Ian,Manhattan,East Harlem,40.79887,-73.94178,Private room,95,1,297,2019-07-03,5.03,2,127 +3885177,"Clean/nice Suite 5m T LIRR,B,Q65,13",4680747,Del,Queens,Flushing,40.75664,-73.79975,Private room,95,2,2,2019-05-19,0.06,1,267 +3887138,Kid friendly next to Prospect Park,176285,Ari,Brooklyn,Prospect Heights,40.6742,-73.96639,Entire home/apt,200,7,2,2015-06-24,0.03,1,0 +3887381,Modern 2BR Near Union Square,8179499,Brent,Manhattan,East Village,40.73177,-73.98598,Entire home/apt,180,5,0,,,1,0 +3888469,Private room,8834412,Deborah,Bronx,Longwood,40.81321,-73.90259,Private room,100,3,2,2019-01-02,0.22,2,207 +3888752,"Bright, quiet, cozy 1BR by C Park!",20116872,Michael,Manhattan,Upper West Side,40.77571,-73.97757,Entire home/apt,195,1,401,2019-06-30,6.76,1,178 +3889997,Prime West Village/Chelsea 1B SUPERB VIEW/Location,3150902,Dan,Manhattan,Chelsea,40.74057,-73.99977,Entire home/apt,299,5,1,2018-03-03,0.06,1,0 +3890417,Sunrise & Sunset in Penthouse - 20min to Manhattan,18260299,Ota,Brooklyn,Bushwick,40.69439,-73.90715,Private room,45,30,7,2019-01-02,0.74,6,92 +3891031,LAST DAY TO BOOK Bedroom on Wall St,20133610,Shi Qing,Manhattan,Financial District,40.7094,-74.00278,Private room,139,365,13,2015-07-15,0.23,1,365 +3891370,"Heart of Nolita, close to SoHo",20136355,Aalap,Manhattan,Nolita,40.72241,-73.99592,Entire home/apt,200,4,3,2015-09-13,0.05,1,0 +3892700,Cozy 1BR-Country living in NYC!,46969,Aurelie,Staten Island,Clifton,40.6205,-74.07451,Entire home/apt,70,2,242,2019-06-30,4.09,1,256 +3895289,Unique room in historic Greenpoint,20156576,Glenn,Brooklyn,Greenpoint,40.72829,-73.95354,Private room,50,7,1,2014-08-28,0.02,1,0 +3895455,Bedroom in Spacious Loft-Like Apt.,157795,Madeline,Brooklyn,Crown Heights,40.67658,-73.94683,Private room,42,4,4,2018-07-17,0.11,2,0 +3895930,Beautiful 2br in Williamsburg,20166817,Amitai,Brooklyn,Greenpoint,40.71959,-73.94795,Entire home/apt,116,28,45,2019-05-31,0.76,1,35 +3896579,1 Bedroom Apt in Chelsea,20171951,Mary,Manhattan,Chelsea,40.73957,-74.00027,Entire home/apt,200,4,1,2015-09-19,0.02,1,0 +3896701,Spacious Master Bed w Private Ensuite Bath in EV,20172814,Jesse,Manhattan,East Village,40.72859,-73.97915,Private room,129,4,32,2019-05-25,0.56,1,365 +3897387,Bed & Bath in Park Slope Mansion,20177472,Virginia,Brooklyn,Park Slope,40.67927,-73.97434,Private room,125,2,117,2019-06-30,1.99,1,270 +3897601,In the heart of Park Slope,18572906,Eylem,Brooklyn,Park Slope,40.67053,-73.98558,Private room,55,3,4,2016-09-19,0.07,1,0 +3898329,Best views of Manhattan!,20177186,Ted,Manhattan,Financial District,40.70943,-74.01405,Entire home/apt,200,2,6,2015-10-12,0.10,1,0 +3902156,Fort Greene Gem,5072123,Sandra,Brooklyn,Fort Greene,40.69098,-73.97989,Entire home/apt,165,29,7,2019-01-04,0.27,2,159 +3902791,Luxury West Village 1 bdrm w/ views,6426063,Sarah,Manhattan,West Village,40.73377,-74.0057,Entire home/apt,199,5,5,2016-04-29,0.08,1,0 +3903173,One bedroom in Greenwich Village,18481203,Ellie,Manhattan,Greenwich Village,40.73374,-73.9976,Entire home/apt,150,3,15,2016-07-30,0.26,1,0 +3903284,Most amazing spot in Williamsburg,9990930,Alexander,Brooklyn,Williamsburg,40.71751,-73.95895,Private room,95,1,0,,,1,0 +3904135,Authentic Williamsburg Appartment,2316267,Nicole,Brooklyn,Williamsburg,40.7083,-73.94846,Private room,90,1,10,2019-01-03,0.17,1,365 +3905849,Stylish Gramercy Park Duplex LOFT,3097631,Max,Manhattan,Gramercy,40.7364,-73.98436,Entire home/apt,120,10,51,2019-07-01,0.86,1,64 +3907413,Great cozy for summer in Brooklyn,20169857,Fabeye & Nabou,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94314,Private room,40,1,73,2019-06-08,1.23,2,190 +3907603,Nyc! Cozy room in Williamsburg,14890430,Evy,Brooklyn,Williamsburg,40.71223,-73.94169,Private room,75,3,174,2019-07-01,2.96,1,311 +3908094,Spacious Comfy Bedroom in Bushwick,5879951,Marine,Brooklyn,Williamsburg,40.70617,-73.93674,Private room,68,5,5,2017-09-20,0.11,1,0 +3908257,Big Room by Metro/Subway-15mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68137,-73.9565,Private room,75,2,99,2019-06-11,1.67,3,365 +3911451,Haven near Riverside Park n 1 train,10352213,Nicole,Manhattan,Morningside Heights,40.81488,-73.96058,Entire home/apt,45,2,7,2017-07-16,0.12,2,0 +3911453,"Sweet Studio Near Subway, LGA, and Central Park",20260083,Tim,Manhattan,East Harlem,40.79332,-73.94105,Shared room,45,1,6,2017-09-14,0.21,1,0 +3911632,Cozy rooms with private bath,12348871,Hetty,Brooklyn,Kensington,40.64487,-73.97895,Private room,65,1,74,2019-07-02,1.26,2,21 +3912794,"Park Slope 1 Bedroom, 1.5 Bath",102525,David,Brooklyn,South Slope,40.66714,-73.98401,Private room,75,3,14,2019-05-19,0.24,2,347 +3913541,Lovely Private Rm in the heart of NYC! Hells Ktchn,4934489,Jessica,Manhattan,Hell's Kitchen,40.76008,-73.992,Private room,84,2,5,2018-12-23,0.09,3,0 +3913635,Sunny Central Location!,18834080,Jake,Manhattan,Chinatown,40.71672,-73.99184,Entire home/apt,130,2,101,2017-07-28,1.71,1,0 +3914400,"Big Private Room, Prospect Heights",960861,Schuyler,Brooklyn,Prospect Heights,40.67652,-73.96442,Private room,50,30,12,2017-05-09,0.20,1,0 +3914773,Upper West Side Museum/Central Park,2045335,Jonathan,Manhattan,Upper West Side,40.78099,-73.97416,Private room,150,3,50,2019-01-01,0.85,1,365 +3914962,Beautiful Prvt Rm w. NEW 1/2 Bth,20278196,Stephanie,Brooklyn,East Flatbush,40.66165,-73.92536,Private room,95,2,7,2018-10-13,0.13,3,365 +3915042,Murray Hill / Midtown East Studio,9081271,Samantha,Manhattan,Murray Hill,40.74933,-73.9724,Entire home/apt,300,1,2,2014-12-08,0.03,1,0 +3915796,Central Park Life! Beautiful 1 Bed.,1475015,Mike,Manhattan,Upper West Side,40.76904,-73.98494,Entire home/apt,113,30,8,2018-07-01,0.13,52,258 +3916312,Cozy Artist Space,20286123,Kenneth,Manhattan,Harlem,40.82079,-73.95115,Entire home/apt,145,1,23,2019-06-02,0.39,1,219 +3917007,Williamsburg BK Studio Luxury Bldg,4718049,Anup,Brooklyn,Williamsburg,40.71981,-73.95558,Entire home/apt,150,3,0,,,1,0 +3920562,Large & Beautiful Manhattan NYC,16715941,Ian,Manhattan,East Harlem,40.79882,-73.94266,Private room,90,1,295,2019-06-27,4.99,2,155 +3922417,"Safe, Quiet and Bright near Subways has 2 beds",7245581,Michael,Manhattan,Chelsea,40.75076,-73.99588,Entire home/apt,95,30,15,2019-01-15,0.27,19,204 +3923128,Sunny 1-BR Apt with Soaking Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77237,-73.95536,Entire home/apt,118,30,3,2018-08-31,0.10,29,282 +3923538,Large Retro Style Pre-War Studio,20324827,Catherine,Brooklyn,Flatbush,40.64117,-73.96167,Entire home/apt,75,5,2,2015-09-23,0.03,1,0 +3924092,Lincoln Center Area Apartment,13135873,Jan,Manhattan,Upper West Side,40.77595,-73.97966,Entire home/apt,225,7,26,2019-05-23,0.68,1,85 +3924325,"Beautiful, Mdrn, Nwly Renovated Rm",20278196,Stephanie,Brooklyn,East Flatbush,40.66336,-73.92656,Private room,81,2,4,2016-10-31,0.08,3,364 +3924397,Quiet Location with two balconies,20329737,Aleksandra,Brooklyn,Williamsburg,40.71267,-73.95721,Entire home/apt,190,2,4,2015-09-29,0.08,1,0 +3924506,Room in sunny & plant filled apt!,452781,Lian,Brooklyn,Crown Heights,40.67297,-73.95489,Private room,75,1,3,2015-10-11,0.05,1,0 +3924619,Gorgeous Room Near Prospect Park,1216362,Camila,Brooklyn,Flatbush,40.65271,-73.96074,Private room,59,2,12,2017-02-10,0.20,4,189 +3924820,Manhattan - Next to Subway!,1632428,Matias & Marlana,Manhattan,Harlem,40.82035,-73.95529,Private room,99,1,75,2018-06-27,1.31,2,361 +3925426,Room in Gorgeous apartment,2224374,Younes,Brooklyn,Williamsburg,40.71293,-73.95321,Entire home/apt,270,7,0,,,1,0 +3928241,1 Bedroom in the Lower East Side,14549202,Jeff,Manhattan,Lower East Side,40.71957,-73.9863,Entire home/apt,140,70,0,,,1,83 +3928525,Stunning 2 bed 2bath Wall St. Luxury Apt,16101222,Andrew M.,Manhattan,Financial District,40.70563,-74.00878,Entire home/apt,275,3,9,2018-05-26,0.19,1,0 +3928833,Brooklyn townhouse for filming,1331180,Matt -N- Jenny,Brooklyn,Bushwick,40.6845,-73.91193,Entire home/apt,1000,2,0,,,1,0 +3929669,Sunny 1 br in Greenpoint,622694,Shawn,Brooklyn,Greenpoint,40.72942,-73.95291,Entire home/apt,120,28,12,2016-12-22,0.22,1,0 +3930149,Charming and Beautiful 1-BR Apt ,92782,Payal,Brooklyn,Greenpoint,40.723,-73.94237,Entire home/apt,125,3,11,2015-10-24,0.19,1,0 +3930842,1BR+BA IN LXRY CONDO W POOL+PARKING,1568383,Joshua,Brooklyn,Williamsburg,40.71494,-73.93906,Private room,75,30,1,2019-04-28,0.42,1,271 +3930878,Clean One Bedroom Apartment,20364466,Michael,Manhattan,East Village,40.72509,-73.97898,Entire home/apt,117,3,7,2018-05-25,0.12,1,7 +3933059,Where Love and Happiness Live,20377328,MaryEllen,Manhattan,Washington Heights,40.85749,-73.93258,Entire home/apt,80,1,4,2015-12-07,0.07,1,0 +3933382,Private room 5 min from manhattan!,20379079,Zack,Queens,Long Island City,40.7512,-73.94019,Private room,60,6,3,2016-07-26,0.08,1,0 +3936970,XL Fort Greene Garden Apt,1406214,Patric,Brooklyn,Fort Greene,40.6926,-73.97337,Private room,103,3,169,2018-12-30,2.88,1,192 +3939041,Private cozy studio apartment,284199,Avijit,Queens,Jackson Heights,40.74946,-73.89505,Entire home/apt,65,1,1,2018-02-12,0.06,2,0 +3939086,"Call this Home (for a spell, at least....)",881214,Mysia,Bronx,Mott Haven,40.80866,-73.92069,Private room,45,5,14,2017-08-26,0.28,1,0 +3939535,JFK/LGA Queens Modern Apt.,20411855,Chuck,Queens,Briarwood,40.71009,-73.8196,Private room,70,3,64,2018-09-26,1.16,1,282 +3940301,1 bdrm in Washington Hgts-Park side,7837510,Anna,Manhattan,Washington Heights,40.85722,-73.93354,Entire home/apt,90,7,1,2014-10-17,0.02,1,124 +3942731,Top Floor Doorman Apt-Water Views,2555556,Laura,Manhattan,Battery Park City,40.70797,-74.01693,Entire home/apt,225,5,7,2015-12-31,0.12,1,0 +3943279,ENTIRE FURNISHED 1BD APT.,20433199,Merritt,Manhattan,East Village,40.72186,-73.97663,Entire home/apt,125,14,2,2018-08-26,0.04,1,3 +3943879,Prime Williamsburg loft on Bedford,20435647,Mette,Brooklyn,Williamsburg,40.71713,-73.95669,Entire home/apt,175,2,76,2019-06-21,1.29,1,19 +3944200,A Safe & Pleasant Time in NYC,20438402,Geoff & Aurelia,Manhattan,East Harlem,40.79508,-73.93256,Entire home/apt,195,3,25,2018-11-05,0.43,3,0 +3944233,Huge space and MILLION DOLLAR VIEWs,12351216,Kevin,Manhattan,Theater District,40.75848,-73.98414,Private room,130,4,177,2019-06-21,3.01,1,235 +3944499,Cozy Bedroom in Crown Heights Brooklyn,6771709,Lauren,Brooklyn,Crown Heights,40.67081,-73.95761,Private room,96,3,1,2014-09-18,0.02,1,0 +3944625,Huge serene room in a perfect area!,20440955,Mario,Brooklyn,Brooklyn Heights,40.69417,-73.99443,Private room,129,2,199,2019-07-06,3.42,1,298 +3944627,Gramercy One Bedroom w Two Beds,71418,Matt,Manhattan,Gramercy,40.73845,-73.98373,Entire home/apt,200,7,10,2018-06-29,0.17,1,100 +3945796,Grand Central/UN/Langone. Lrg Rm Vu's. Own1/2 Bath,20447869,Burton,Manhattan,Kips Bay,40.74533,-73.97956,Private room,95,4,11,2019-01-02,0.19,2,0 +3946018,Luxury Building in Time Square,20449160,Mark,Manhattan,Theater District,40.75977,-73.98763,Entire home/apt,189,2,57,2019-07-07,1.18,1,9 +3946115,Large 3 bedroom on Upper West Side,20449763,Christine,Manhattan,Upper West Side,40.80075,-73.9677,Entire home/apt,450,1,1,2016-12-30,0.03,1,121 +3946177,"A Safe & Pleasant Time in NYC, 2",20438402,Geoff & Aurelia,Manhattan,East Harlem,40.7948,-73.93457,Entire home/apt,264,3,38,2018-10-01,0.65,3,0 +3946201,"Spacious king size redwood bedroom, 20 min to NYC",5650180,Jessica,Queens,Elmhurst,40.74471,-73.88075,Private room,45,30,20,2018-11-09,0.34,2,188 +3946239,Clinton Hill Apartment 2 BR,20449694,Luis,Brooklyn,Clinton Hill,40.68646,-73.95975,Entire home/apt,150,2,11,2018-06-08,0.42,1,0 +3946288,"A Safe & Pleasant Time in NYC, 3",20438402,Geoff & Aurelia,Manhattan,East Harlem,40.79365,-73.9349,Entire home/apt,540,3,20,2018-12-05,0.38,3,350 +3946471,Bedford Avenue,7739416,Ade,Brooklyn,Flatbush,40.65101,-73.95517,Private room,95,3,0,,,1,365 +3948939,Comfy 1 bd/1 bath-Upper West Side,20464791,Olga,Manhattan,Upper West Side,40.78829,-73.97053,Entire home/apt,230,6,1,2014-10-24,0.02,1,0 +3950114,"Warm, Spacious, Convenient and Cozy",10528897,Erika,Queens,Astoria,40.76957,-73.91502,Private room,65,2,16,2019-07-01,0.27,1,302 +3951363,Historical Cozy Home in Bushwick,9769764,Skyler,Brooklyn,Bushwick,40.68819,-73.91594,Private room,70,30,0,,,1,0 +3952093,Entire 2 bdrm/2 bth UWS/RiversdePrk,20484008,Mike,Manhattan,Upper West Side,40.79407,-73.97513,Entire home/apt,160,4,75,2019-06-29,1.31,2,8 +3952676,Designer Apartment in Williamsburg,3097283,Leta,Brooklyn,Williamsburg,40.71305,-73.94334,Entire home/apt,200,6,0,,,1,0 +3952731,Entire Flat in quiet neighborhood,20435679,Frank,Brooklyn,Windsor Terrace,40.65527,-73.97853,Entire home/apt,138,5,1,2018-09-26,0.10,1,0 +3953314,Hamiltons Hideway Lower Level Apt NYC,295128,Carol Gloria,Bronx,Clason Point,40.81192,-73.85334,Entire home/apt,155,1,19,2019-07-01,0.35,7,332 +3953415,LL2,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85349,Private room,75,2,0,,,7,349 +3953585,Manhattan Private Room15min=TimesSQ,7580038,Jack Andrew,Manhattan,Harlem,40.82546,-73.94629,Private room,39,4,33,2019-06-04,0.57,3,292 +3953942,Spacious 1 Bedroom Apt in Brooklyn,8015051,Justine,Brooklyn,Crown Heights,40.67042,-73.95608,Entire home/apt,115,2,76,2019-06-16,1.30,1,283 +3957619,"Prime SoHo! shops, food, fun",12485770,Raanan,Manhattan,SoHo,40.72699,-74.0012,Entire home/apt,110,30,3,2017-03-26,0.05,9,333 +3958460,Central Park-Lincoln Center,10194688,Mariela,Manhattan,Upper West Side,40.77323,-73.98014,Private room,100,3,172,2019-07-01,2.93,1,214 +3959369,Luxurious 1BR Best Views in NYC! ,2032408,Kimberly,Manhattan,Battery Park City,40.71185,-74.01719,Entire home/apt,225,3,2,2015-11-03,0.04,1,0 +3962389,Two bedroom fully furnished apt.,20534981,Charlayne,Brooklyn,Flatlands,40.61938,-73.92471,Entire home/apt,125,14,10,2019-01-25,0.21,1,180 +3962586,Sunny private room in Gramercy,20536249,Daphne,Manhattan,Gramercy,40.73371,-73.98576,Private room,150,1,1,2014-09-14,0.02,1,0 +3963137,Beautiful Bed-Stuy Brownstone,5742948,Tommy,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91472,Entire home/apt,199,4,9,2017-07-01,0.23,1,0 +3963345,Large Duplex Apt. with Balcony near Union Square,978546,Shivani,Manhattan,East Village,40.73152,-73.98676,Entire home/apt,250,3,12,2018-02-11,0.25,1,0 +3963635,"A 2-story, 2-bedroom house - 20min to Downtown",20543178,Pervaiz,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93705,Entire home/apt,210,2,10,2019-05-18,0.21,2,180 +3967160,Firehouse Loft with Harbor Views,20555401,Susannah,Staten Island,Stapleton,40.63628,-74.07763,Entire home/apt,180,2,139,2019-06-23,2.42,1,263 +3967492,East Village Studio Apt.,5160894,Pat,Manhattan,East Village,40.72777,-73.99005,Entire home/apt,129,5,26,2019-06-03,0.58,1,0 +3967945,Great Apt steps from Central Park,18481481,Jeff And Jessica,Manhattan,East Harlem,40.79347,-73.95029,Private room,90,1,265,2019-01-06,4.50,1,36 +3968434,SUNNY HUDSON RIVER VIEW 2BATHRM APT NEAR SUBWAY,1100494,Mike&Mavi,Manhattan,Harlem,40.82257,-73.95565,Private room,50,30,46,2017-08-24,0.79,3,330 +3968610,Charming apt in Greenwich Village!,20567256,Marina,Manhattan,Greenwich Village,40.72818,-73.9981,Entire home/apt,140,1,37,2019-06-26,0.66,1,19 +3970224,Groovy Two Story Garden Apartment,1033829,Joe & Michael,Brooklyn,Bedford-Stuyvesant,40.68692,-73.93113,Entire home/apt,150,2,5,2018-12-29,0.09,1,0 +3970345,Luxury large Penthouse /Fireplace / City views..,363472,Barry,Manhattan,East Village,40.72088,-73.98149,Entire home/apt,233,30,17,2018-07-15,0.33,1,364 +3970562,In The Heart of The East Village,15309829,Natalie,Manhattan,East Village,40.73057,-73.98726,Entire home/apt,170,2,1,2019-01-01,0.16,1,0 +3970701,Beautiful Private Room in Newly Renovated Apt,20278196,Stephanie,Brooklyn,East Flatbush,40.66303,-73.92526,Private room,60,2,6,2019-02-03,0.26,3,326 +3970724,Spacious 2 bedroom in trendy hood,3339819,Jennifer,Brooklyn,Crown Heights,40.6723,-73.95951,Entire home/apt,200,2,3,2015-05-26,0.05,1,0 +3970755,Sunny Junior 1 Bedroom,3164949,Robert,Brooklyn,Cobble Hill,40.68781,-73.99415,Entire home/apt,160,4,0,,,1,0 +3970936,"Prime Gramercy, Luxury 1BD DOORMAN ",1475015,Mike,Manhattan,Gramercy,40.73771,-73.98058,Entire home/apt,150,30,1,2014-10-08,0.02,52,342 +3971065,Spacious Modern Apt that feels like HOME,20580437,Adam,Brooklyn,Williamsburg,40.71276,-73.95114,Entire home/apt,140,2,3,2017-09-04,0.12,1,0 +3971526,"Sunny, Spacious Room in Brooklyn!",1840581,Angelica,Brooklyn,Flatbush,40.63762,-73.96155,Private room,65,1,0,,,1,0 +3971534,SpaciousBedroom in Brownstone Bklyn,14741088,Victoria,Brooklyn,Carroll Gardens,40.67845,-73.99983,Private room,60,3,3,2017-12-01,0.07,1,0 +3971580,Entire apartment 1st Floor,17576229,Mary,Brooklyn,Bay Ridge,40.63562,-74.0235,Entire home/apt,130,3,1,2018-05-26,0.07,1,83 +3971948,Charming sunny room in Brooklyn,19808313,Georgia,Brooklyn,Clinton Hill,40.68316,-73.96163,Entire home/apt,103,1,0,,,1,0 +3973944,Ground & Rejuvenate PR Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.70974,-73.95612,Private room,89,2,30,2019-05-26,0.52,3,219 +3974464,Art Studio Loft in Manhattan (UWS),20047729,Fabio,Manhattan,Upper West Side,40.78789,-73.97679,Private room,50,5,0,,,1,0 +3975630,Beautiful 1 bedroom in NYC,20604091,Eliana E,Queens,Woodside,40.74433,-73.91172,Entire home/apt,150,2,110,2019-06-27,1.86,1,294 +3979360,!!Studio next to Empire State Bldg.,20624434,Matti,Manhattan,Midtown,40.74819,-73.9856,Entire home/apt,240,3,7,2015-04-07,0.13,1,0 +3979611,Located at the heart of Manhattan,19407840,Peng,Manhattan,Roosevelt Island,40.75592,-73.95515,Entire home/apt,1400,90,31,2015-12-03,0.53,1,88 +3979613,ECO-CHIC PALLET DESIGN APARTMENT,20625992,Christian,Queens,Jackson Heights,40.74892,-73.88883,Entire home/apt,200,2,0,,,1,364 +3979628,BR/Private Bath 10Mins to TIME SQ,2766755,Mara,Manhattan,Harlem,40.8095,-73.95395,Private room,88,2,171,2019-06-16,2.93,2,234 +3979714,Central Park North 1BD,557329,James,Manhattan,Harlem,40.8012,-73.95424,Shared room,75,1,6,2019-06-13,0.10,1,315 +3980487,Awesome Apartment near Times Sq.,3424328,Jd,Manhattan,Chelsea,40.73923,-73.99827,Entire home/apt,500,1,27,2016-09-17,0.46,1,90 +3983422,Chelsea Home with a View,17546682,Angela,Manhattan,Chelsea,40.74496,-73.99934,Entire home/apt,125,4,1,2018-07-19,0.08,1,0 +3983469,Private room near Columbia University,8734291,Mike,Manhattan,Upper West Side,40.80311,-73.96648,Private room,75,1,65,2019-07-05,1.12,1,301 +3983643,Gorgeous 1BD Best Gramercy Park ,1475015,Mike,Manhattan,Gramercy,40.73731,-73.98338,Entire home/apt,130,30,2,2015-10-30,0.04,52,335 +3984168,Union Square~Reno 2BR~Great Value,2119276,Host,Manhattan,East Village,40.73256,-73.98558,Entire home/apt,170,30,11,2019-05-09,0.19,39,319 +3985673,NYC Artists Loft in Chelsea,6337882,Michael,Manhattan,Chelsea,40.75319,-74.00159,Entire home/apt,300,2,11,2019-05-20,0.19,1,137 +3987571,Garden Apartment with Private Entry,20670026,Monifa & Saint,Brooklyn,Bedford-Stuyvesant,40.68084,-73.94779,Entire home/apt,115,2,259,2019-06-30,4.43,1,285 +3987599,"Great 3 Bdrm- Internships, Students",20670246,Jaxon,Brooklyn,Bushwick,40.6876,-73.9167,Entire home/apt,93,30,23,2018-06-24,0.40,1,226 +3989564,Brooklyn Garden Apartment ,1272714,Arielle,Brooklyn,Bedford-Stuyvesant,40.68313,-73.9413,Entire home/apt,119,2,209,2019-06-19,3.62,1,241 +3992326,Bohemian Den in Chinatown-New York,20694703,Pablo,Manhattan,Lower East Side,40.71421,-73.98793,Entire home/apt,180,6,24,2018-10-10,0.41,2,51 +3993392,Stylish 2bdr harlem brownstone,11790239,Mina,Manhattan,Harlem,40.81453,-73.94807,Entire home/apt,226,3,8,2015-10-19,0.14,3,303 +3993553,North Park Slope Studio,6198638,Carla,Brooklyn,Park Slope,40.67814,-73.9778,Entire home/apt,155,2,2,2015-12-01,0.04,1,0 +3999228,Best Location NYC! Studio in heart of The Village,14545465,Tom,Manhattan,West Village,40.73455,-74.00614,Entire home/apt,115,4,16,2017-03-17,0.27,1,0 +4000133,Ditmas Park townhouse front bedroom,20738908,James,Brooklyn,Flatbush,40.64119,-73.96295,Private room,50,2,4,2015-10-29,0.07,1,0 +4000561,Large apartment in Manhattan UWS,3325418,Patricia,Manhattan,Morningside Heights,40.80395,-73.96436,Entire home/apt,600,1,0,,,3,344 +4000571,Private Suite/Bath in Manhattan NYC,3325418,Patricia,Manhattan,Morningside Heights,40.80452,-73.96393,Private room,200,1,30,2018-04-30,0.52,3,0 +4000579,Sunny 1 BR Brooklyn Loft Apartment ,3146353,Sara,Brooklyn,Clinton Hill,40.68329,-73.9609,Entire home/apt,157,4,3,2014-10-22,0.05,1,0 +4000621,Hancock House cozy Garden Level,1542375,Nicci & David,Brooklyn,Bedford-Stuyvesant,40.6835,-73.92754,Entire home/apt,145,3,122,2019-06-10,2.14,1,269 +4003515,Charming New York town house,2787824,Martyn,Queens,Glendale,40.70591,-73.89264,Private room,95,2,46,2017-06-23,1.15,1,0 +4006264,Cozy Parkside 1 Bedroom Apartment,942933,David,Manhattan,Harlem,40.80489,-73.95759,Entire home/apt,115,1,1,2014-09-25,0.02,1,0 +4007277,Convenient and Affordable in the Heart of Astoria,3120671,Benham,Queens,Astoria,40.76294,-73.91545,Private room,65,2,5,2019-07-07,5,1,2 +4007770,One Bedroom in Heart of Harlem,16949652,Derrick,Manhattan,Harlem,40.80655,-73.94854,Entire home/apt,275,1,0,,,1,0 +4008443,"Private room in Astoria, NY!!",20741468,Sarah,Queens,Astoria,40.75568,-73.91578,Private room,250,2,22,2018-01-02,0.43,1,123 +4013339,Amazing Private Room in the Heart of Manhattan,2090439,Matt,Manhattan,Little Italy,40.72023,-73.99693,Private room,95,3,135,2019-06-16,2.31,1,9 +4013668,Spacious Park Slope brownstone,20809866,David,Brooklyn,Park Slope,40.66972,-73.97954,Entire home/apt,185,4,111,2019-06-07,1.90,1,9 +4016069,1C. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80732,-73.93775,Private room,55,1,163,2019-05-14,2.76,10,359 +4016121,Located in the heart of NoLita.,14707270,Hamish,Manhattan,Nolita,40.72322,-73.99351,Entire home/apt,350,1,1,2016-01-05,0.02,1,0 +4016142,Big Bedroom in Sunny & New Lower East Side Apt,20822611,Robin,Manhattan,Lower East Side,40.71891,-73.98592,Private room,170,5,22,2018-10-14,0.38,1,259 +4016173,Turn of the Century Railroad Flat /4 day Wknd,9639040,Joanne,Brooklyn,Park Slope,40.66723,-73.98043,Entire home/apt,100,2,18,2019-06-24,0.31,1,58 +4016791,Sunny Private Bedroom,20827756,Jillian,Manhattan,Washington Heights,40.84787,-73.93306,Private room,36,2,10,2017-10-01,0.20,1,0 +4017226,Comfortable room in Brooklyn,20830484,Lorcán,Brooklyn,Gowanus,40.68163,-73.98088,Private room,60,1,1,2014-09-21,0.02,1,0 +4020957,Sunny Room in Bedstuy,12876904,Marla,Brooklyn,Bedford-Stuyvesant,40.67918,-73.95318,Private room,125,2,1,2015-06-05,0.02,1,0 +4024936,"Beautiful, Bright, Williamsburg apt",10263619,Chloe,Brooklyn,Williamsburg,40.71908,-73.95675,Entire home/apt,120,2,135,2019-07-03,2.32,1,66 +4025313,One Bed Studio at Wall Street,17249397,Sushant,Manhattan,Financial District,40.70457,-74.00733,Shared room,90,1,8,2015-05-21,0.14,2,0 +4025329,SPACIOUS STUDIO-HIGH END FINISHES,9743617,Patricia,Manhattan,Harlem,40.81586,-73.94117,Entire home/apt,129,5,91,2019-06-17,1.63,2,260 +4026150,"Personal, Private and Pretty NYC Apartment",16514175,Karen,Queens,Elmhurst,40.74561,-73.88514,Entire home/apt,78,2,133,2019-06-23,2.26,5,107 +4028670,Luxury 1 Bedroom Sublet ,7877288,James,Manhattan,Lower East Side,40.72102,-73.98622,Entire home/apt,120,1,0,,,1,0 +4031297,Clean Bedroom in Greenwich Village,4163733,Mike,Manhattan,Greenwich Village,40.72924,-74.00148,Private room,99,2,21,2017-11-02,0.36,1,268 +4031463,Comfortable Private space with a terrace,20900568,Mike,Bronx,Norwood,40.87786,-73.87641,Private room,50,1,108,2019-06-28,1.84,1,261 +4031809,Prewar classic NYC apartment.,20902552,Miquel,Manhattan,Washington Heights,40.83456,-73.94344,Private room,16,14,0,,,1,0 +4032229,Beautiful airy room in nice family home,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85696,-73.91439,Private room,47,2,122,2019-07-02,2.15,4,71 +4033300,Sunny and comfortable 2 bedroom apt,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68693,-73.95725,Entire home/apt,150,5,18,2019-06-26,2.57,3,254 +4033422,The Lighthouse Manor,20911928,Judith,Staten Island,Lighthouse Hill,40.57718,-74.13981,Entire home/apt,200,2,49,2018-12-31,0.92,1,360 +4033444,Big New York City Suite Near Subway,20912185,Saya & Diego,Brooklyn,Crown Heights,40.66649,-73.92855,Entire home/apt,125,2,130,2019-06-23,2.23,1,293 +4033521,Brooklyn 1 BR Near Subway,1369577,Thomas & Gaby,Brooklyn,Crown Heights,40.67441,-73.92371,Entire home/apt,60,6,144,2019-06-18,2.50,2,59 +4033998,Chic and peaceful,11818785,Fabio,Queens,Jackson Heights,40.7525,-73.88592,Private room,200,30,0,,,1,88 +4037379,"Bright, Spacious Studio in Brooklyn",5642757,Ilona,Brooklyn,Flatbush,40.62918,-73.96348,Entire home/apt,100,3,9,2016-04-05,0.16,1,0 +4037522,"Cozy, Safe & Clean room in Astoria",608396,Kiara,Queens,Astoria,40.76269,-73.90816,Private room,99,1,15,2019-02-16,0.26,1,322 +4038794,Bright room with private bathroom,19638238,Elke,Manhattan,Washington Heights,40.83428,-73.94738,Private room,75,2,25,2019-05-30,0.53,1,198 +4039020,"HUGE, PRIVATE BATH, STEPS FRM TRAIN",430188,Pam,Brooklyn,Williamsburg,40.70588,-73.95422,Private room,140,5,1,2014-09-14,0.02,6,185 +4039789,Harmonious Sanctuary near Yankee Stadium.,20945243,Michael,Bronx,Concourse Village,40.83331,-73.91742,Entire home/apt,90,30,1,2017-05-12,0.04,1,358 +4040900,Couch in times square,3789165,Lisa,Manhattan,Theater District,40.75974,-73.9866,Shared room,59,2,58,2019-06-01,0.99,1,345 +4040926,1BR Apartment- Fantastic Location!,15742426,Lauren,Manhattan,East Village,40.73118,-73.98794,Entire home/apt,111,3,51,2019-04-29,0.88,1,198 +4041189,"Cozy 1 bedroom + air mattress, 2 cats, sleeps 3",19755511,Agnieszka,Manhattan,Washington Heights,40.83469,-73.93961,Entire home/apt,80,4,3,2018-12-06,0.05,1,0 +4041351,Private Room In A Comfy 3BR Apt,2034343,David,Brooklyn,Crown Heights,40.67152,-73.92687,Private room,80,1,0,,,1,0 +4041383,Harlem Knight - the heart of Manhattan,20955075,Rk,Manhattan,Harlem,40.81118,-73.93977,Private room,50,14,5,2017-05-26,0.14,1,0 +4044625,LES Studio with Large Patio,20971414,Tuvia,Manhattan,Chinatown,40.71399,-73.99107,Entire home/apt,300,4,7,2016-04-02,0.12,1,0 +4044906,Ft Greene / Garden / Sauna,15582617,Andrew,Brooklyn,Fort Greene,40.6878,-73.97167,Entire home/apt,90,4,3,2017-07-30,0.12,1,0 +4046281,Spacious and Sunny Private Bedroom!,20979850,David,Manhattan,East Village,40.72087,-73.97952,Private room,119,1,49,2019-06-19,1.40,1,84 +4047638,NYC-Great Cost x Benefit-Huge Room-Next to Subway.,20987432,Valeria,Queens,Astoria,40.7653,-73.92661,Private room,69,4,22,2019-06-04,0.38,1,311 +4047751,Beautiful Upper West 1 BR Apartment,16325217,Sarah,Manhattan,Upper West Side,40.7908,-73.97723,Entire home/apt,260,2,0,,,1,0 +4047791,Spacious Sunny 2BR/Prime Greenpoint,20987992,Alicja,Brooklyn,Greenpoint,40.72414,-73.95355,Entire home/apt,185,2,114,2019-07-07,1.94,1,16 +4047815,Jackson Heights charmer!,20988865,Elizabeth,Queens,Jackson Heights,40.7517,-73.89478,Entire home/apt,100,2,24,2018-12-30,0.42,1,0 +4047932,Central Park Housing,20989479,Arnab,Manhattan,Upper West Side,40.77222,-73.98923,Shared room,85,1,33,2015-12-28,0.56,1,0 +4048043,1 BR in Exposed Brick SoHo apt,10135,Jason,Manhattan,SoHo,40.71972,-73.99986,Private room,135,2,125,2019-06-16,2.14,2,340 +4050254,Mid-Century Modern En-Suite in Brownstone!,9492212,Emily And Joel,Brooklyn,Park Slope,40.66898,-73.97831,Private room,169,1,151,2019-01-19,2.58,4,0 +4050765,Harmony House 3 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68852,-73.92393,Private room,38,2,50,2019-06-25,1.35,3,126 +4050795,Cozy Contempo Rustic Chic (stay w/a local artist!),21004091,Tony,Brooklyn,Bushwick,40.70102,-73.92864,Private room,90,2,52,2019-05-22,2.21,1,288 +4051643,Cozy Chic Uptown Home,21009723,Magen,Manhattan,Harlem,40.8242,-73.93789,Private room,45,4,1,2016-06-02,0.03,1,0 +4052514,Wow! Two Bedroom Apartment in Safe Neighborhood!,2037149,Steve & Anna,Brooklyn,Windsor Terrace,40.6501,-73.97985,Entire home/apt,149,4,143,2019-06-24,2.62,1,254 +4053249,Quiet 2 bdrm in cozy Clinton Hill!,21019043,Jason,Brooklyn,Clinton Hill,40.68436,-73.96223,Entire home/apt,200,2,14,2016-11-29,0.24,1,0 +4053287,Spacious Apartment with River Views!,21019260,Michael And Donna,Manhattan,Roosevelt Island,40.76365,-73.94914,Entire home/apt,125,60,6,2019-06-30,0.11,1,278 +4053471,Apartment in Heart of Greenpoint,3967335,Molly,Brooklyn,Greenpoint,40.72607,-73.95103,Private room,65,2,26,2019-06-20,0.45,2,6 +4053517,Two-Bedroom Greenpoint Apartment,3967335,Molly,Brooklyn,Greenpoint,40.72527,-73.95016,Entire home/apt,174,2,31,2019-06-02,0.54,2,12 +4053564,Beautiful room with bathroom,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93848,Private room,89,2,24,2019-05-31,0.41,5,339 +4053597,Artist's Creative Cozy Studio in Park Slope,5133495,Mary Kathryn,Brooklyn,South Slope,40.66202,-73.98589,Entire home/apt,150,3,8,2019-05-27,0.15,1,0 +4053912,"Lots of space, great location",21017521,Isis,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.95915,Private room,75,18,0,,,1,0 +4053987,Small Private Room for 1 person,1960128,Luana,Queens,Ozone Park,40.6844,-73.8472,Private room,58,1,2,2015-08-16,0.04,2,364 +4054332,awesome location.,21026294,Gilda,Brooklyn,Park Slope,40.67017,-73.97752,Private room,103,30,45,2016-10-05,0.82,1,0 +4054450,Comfortable & Spacious Home in NYC,4054295,Charles,Manhattan,Hell's Kitchen,40.76331,-73.99262,Entire home/apt,383,3,24,2019-06-28,0.41,1,251 +4055732,Stay in Clinton Hill sprout house!,12368114,Rachelle,Brooklyn,Clinton Hill,40.68454,-73.96382,Private room,40,1,1,2015-06-07,0.02,1,0 +4057361,"Large, Bright, Studio-Style Bedroom",2075509,Melissa,Queens,Long Island City,40.75977,-73.92904,Private room,76,1,14,2019-04-11,0.41,1,225 +4058701,Spare bedroom for rent in UWS-NYC,20484008,Mike,Manhattan,Upper West Side,40.79408,-73.9757,Private room,170,1,3,2015-11-10,0.05,2,0 +4058949,3C. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80617,-73.93868,Private room,45,1,151,2019-05-09,2.59,10,357 +4059037,Light Filled Studio,20441343,Lilah,Brooklyn,Bedford-Stuyvesant,40.69587,-73.95114,Private room,100,3,0,,,1,352 +4059620,Heart of Soho/Nolita,2788262,Stara,Manhattan,SoHo,40.72525,-73.99636,Entire home/apt,199,2,167,2019-06-23,3.17,1,17 +4060446,Modern spacious flat in Manhattan,21060554,Rob,Manhattan,Inwood,40.87279,-73.91991,Entire home/apt,99,5,61,2019-04-21,1.06,1,1 +4060526,Private Room A,10384906,Susan,Brooklyn,Sunset Park,40.64047,-74.00842,Private room,39,1,51,2019-06-09,0.88,5,273 +4060993,Spacious apt. 15 min to Manhattan,21064077,Dan,Queens,Ridgewood,40.70046,-73.90692,Entire home/apt,60,21,5,2017-10-31,0.10,1,0 +4063357,Stuvesant East,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.68439,-73.92811,Entire home/apt,130,3,132,2019-06-21,2.53,2,257 +4066224,Williamsburg Gem With Private Patio!,4050500,Kelly,Brooklyn,Williamsburg,40.71236,-73.9379,Entire home/apt,200,1,170,2019-06-30,2.96,1,303 +4067861,Newly Renovated BR in Heart of BK!,21096602,Khadija,Brooklyn,East Flatbush,40.64434,-73.94831,Private room,65,1,0,,,1,0 +4068216,Unbelievable Upper East Side Loc.,19331457,Yevgeny,Manhattan,Upper East Side,40.77462,-73.95461,Private room,105,1,239,2019-06-29,4.13,2,287 +4069228,1BR condo right by Prospect Park,14793862,Eleanor,Brooklyn,East Flatbush,40.65301,-73.95241,Entire home/apt,115,3,64,2018-06-08,1.13,1,0 +4069341,Urban Rustic Retreat,21105084,Sugeiry,Manhattan,Harlem,40.81575,-73.9537,Entire home/apt,145,7,34,2017-10-23,0.58,2,0 +4069681,"""DECO CASA"" 2 Bedroom Greenpoint Brooklyn",20741012,Devin,Brooklyn,Greenpoint,40.73357,-73.95439,Entire home/apt,75,2,102,2019-06-30,4.27,1,30 +4070025,Luxury Flat with Outdoor and Study Room,21110000,Shahram,Brooklyn,DUMBO,40.70452,-73.98583,Entire home/apt,250,2,150,2019-07-05,2.57,1,309 +4070027,Room at East 110th St Upper East/E. Harlem,5558013,Suzanne,Manhattan,East Harlem,40.7941,-73.94045,Private room,80,2,2,2016-08-26,0.06,1,0 +4071007,Cozy 1 BR in Exposed Brick SoHo Apt,10135,Jason,Manhattan,SoHo,40.71995,-73.99975,Private room,120,3,71,2019-06-11,1.21,2,304 +4074248,Skylight Room in BK Duplex in Williamsburg,6459254,Todd,Brooklyn,Williamsburg,40.71413,-73.94868,Private room,100,4,32,2019-06-09,0.56,1,0 +4074892,Huge shared apt Near Times Sq & Convention Center,13322263,Aj,Manhattan,Hell's Kitchen,40.75735,-73.99603,Private room,125,10,12,2016-10-16,0.20,1,0 +4076084,Alcove Studio & Terrace best part of Williamsburg!,7116594,Russell,Brooklyn,Williamsburg,40.71009,-73.96471,Entire home/apt,132,3,2,2017-12-30,0.05,1,0 +4077090,Quiet Haven in Park Slope Huge 2BR,316474,Ellie,Brooklyn,South Slope,40.66693,-73.98801,Entire home/apt,225,2,66,2019-01-02,1.13,1,158 +4077427,"Bright, Modern loft in Williamsburg",4148174,Daniel,Brooklyn,Williamsburg,40.70808,-73.94757,Entire home/apt,175,2,2,2014-10-12,0.03,1,0 +4077428,Amazing park view in the LES!!!,21149119,David,Manhattan,Chinatown,40.71585,-73.99014,Entire home/apt,225,3,2,2015-10-04,0.03,1,221 +4077460,Brooklyn modern 2 BR Garden Floor,21149129,Jenny,Brooklyn,Bedford-Stuyvesant,40.69013,-73.92805,Entire home/apt,215,1,167,2019-06-20,2.86,1,250 +4081707,Red Hook Architectural with huge outdoor area,4792032,Cee,Brooklyn,Red Hook,40.67815,-74.01443,Entire home/apt,300,7,9,2019-04-23,0.18,1,32 +4081800,Classic Brownstone Apartment,4835582,Julia,Manhattan,Harlem,40.80856,-73.94573,Entire home/apt,130,2,185,2019-06-17,3.76,1,300 +4081926,1 BDR APARTMENT 7 MINS FROM JFK 5 STAR RATED,21171867,Jennifer And Basil,Queens,Springfield Gardens,40.67425,-73.75796,Entire home/apt,110,1,279,2019-06-16,5.02,1,355 +4082062,Unique room w/2 Twin beds..wifi*metro* quiet*safe,310670,Vie,Bronx,Eastchester,40.8806,-73.83433,Private room,75,2,37,2019-06-16,0.73,13,364 +4082357,Big bedroom in Brooklyn!,3801427,Liz,Brooklyn,Greenpoint,40.72631,-73.94127,Private room,36,14,18,2019-04-27,0.34,1,0 +4083049,Modern Brooklyn Brownstone,1335736,Ozlem,Brooklyn,Bedford-Stuyvesant,40.68634,-73.92516,Entire home/apt,299,4,8,2017-08-02,0.15,1,279 +4084603,Prime East Village 1 Bedroom,7861502,Aviad,Manhattan,East Village,40.72878,-73.98521,Entire home/apt,200,1,1,2015-05-24,0.02,1,0 +4085647,Cozy and Convenient – Spacious 1 Bedroom Apartment,21145652,Kathisha,Brooklyn,East New York,40.65741,-73.87854,Entire home/apt,110,3,9,2018-12-21,0.16,1,36 +4088506,"Modern, central WBurg 2BR w/rooftop",2436652,Krzysztof,Brooklyn,Williamsburg,40.71381,-73.96065,Entire home/apt,160,30,44,2019-06-10,0.76,1,226 +4089102,Serenity Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68407,-73.95487,Entire home/apt,152,3,146,2019-05-24,2.51,2,287 +4089189,Stunning Parlor Garden Apartment,5317124,Caroline,Brooklyn,Clinton Hill,40.6921,-73.96797,Entire home/apt,145,3,16,2019-06-15,0.31,1,96 +4089492,BUSHWICK (1 block from Jefferson L),21210898,Fagan,Brooklyn,Bushwick,40.70794,-73.92168,Private room,120,2,11,2019-06-22,0.20,2,365 +4089915,"PRIVATE, Airy, 1 Bedroom Apt in Central Bushwick",2917387,Emily,Brooklyn,Bushwick,40.7041,-73.92476,Entire home/apt,84,3,120,2019-06-19,2.29,1,224 +4090748,Entire Manhattan Apt in Upper East,21217401,Yong,Manhattan,Upper East Side,40.76965,-73.96258,Entire home/apt,160,5,13,2016-09-20,0.22,1,0 +4091629,"DO DROP IN, LLC",21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95373,Entire home/apt,150,5,14,2017-12-27,0.28,2,363 +4092826,Forest Hills Villa 皇后区“曼哈顿”-森林小丘别墅!,21228368,Jessica,Queens,Forest Hills,40.71291,-73.84678,Entire home/apt,180,2,105,2019-06-25,1.80,5,190 +4093399,DOMINIQUE'S NY*chic* quiet room*wifi*metro,310670,Vie,Bronx,Eastchester,40.88009,-73.83442,Private room,68,2,41,2019-01-01,0.74,13,365 +4093511,Soho 1 Bedroom,21232737,Donour,Manhattan,SoHo,40.72651,-74.00014,Entire home/apt,125,1,0,,,1,1 +4093591,1 Room & 1 Bath,11090576,Michael,Brooklyn,Bushwick,40.69216,-73.90859,Private room,25,1,8,2015-01-15,0.14,1,0 +4096470,THE THOMPSON SUITE,4065620,Debbie,Brooklyn,Bedford-Stuyvesant,40.68663,-73.9379,Entire home/apt,155,3,1,2019-07-01,1,2,342 +4097279,A room with a window,2705041,Alexa,Manhattan,East Village,40.73131,-73.98321,Private room,105,2,0,,,1,0 +4097284,"Bklyn, private Three Bedroom.",11948817,Leslie,Brooklyn,Canarsie,40.63056,-73.89043,Entire home/apt,75,2,91,2019-06-09,1.56,2,289 +4098078,Hamilton Heights Convent Ave Apartment,15277039,Ryan,Manhattan,Harlem,40.8236,-73.94743,Private room,80,4,2,2015-12-31,0.05,1,0 +4098271,"Spacious Bedroom, L.E.S.",20245055,Sade,Manhattan,Lower East Side,40.71273,-73.9882,Private room,72,3,56,2019-06-30,0.96,2,304 +4098814,Private Single Room,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68641,-73.94735,Private room,52,2,29,2019-05-05,0.50,4,335 +4102208,"Convenient, clean and chic apartment",21279472,Zheni,Brooklyn,Carroll Gardens,40.67335,-73.99886,Entire home/apt,125,3,93,2019-06-21,1.82,1,30 +4102483,Sunny room on quiet block,4473954,Milena,Manhattan,Upper West Side,40.78156,-73.97796,Private room,85,29,10,2018-12-01,0.36,1,241 +4103623,Prospect Park Neighborhood Retreat,61463,Channa,Brooklyn,Windsor Terrace,40.65157,-73.97383,Private room,58,4,18,2019-07-01,0.42,1,58 +4103970,Private room in hip east Williamsburg/Greenpoint,1637916,Mandy,Brooklyn,Greenpoint,40.72122,-73.94121,Private room,100,1,36,2019-06-21,2.69,1,335 +4108547,East Village Queen Bed - Breakfast - Subway 2 Blk,21315876,Helen,Manhattan,East Village,40.72333,-73.98838,Private room,65,1,139,2019-06-27,3.64,2,103 +4108799,Gorgeous Big & Bright Greenpoint Apt,622779,Kat,Brooklyn,Greenpoint,40.72452,-73.93916,Entire home/apt,300,1,12,2018-03-30,0.32,1,362 +4109246,Calm Bushwick Room--Next to subway!,7714918,Carrie-Anne,Brooklyn,Bushwick,40.70569,-73.92268,Private room,40,28,191,2019-05-15,3.36,2,95 +4109420,"Accessible, large & stylish 2BR apt in Astoria!",19914713,Samantha,Queens,Astoria,40.76177,-73.91359,Entire home/apt,110,2,47,2019-07-07,0.81,2,0 +4110645,Art deco apartment in Brooklyn,21327210,David,Brooklyn,Bay Ridge,40.63745,-74.02534,Private room,85,2,45,2019-06-22,0.77,2,90 +4115327,The Garden Apartment,21352288,Deborah Lily,Brooklyn,South Slope,40.66617,-73.98627,Entire home/apt,158,3,87,2019-06-26,1.53,1,204 +4116403,Bright Room in Great Location,4314639,Brad,Brooklyn,Crown Heights,40.67284,-73.9521,Private room,65,1,0,,,1,0 +4117134,Beautiful Room in the heart of NYC. Hell's Kitchen,4934489,Jessica,Manhattan,Hell's Kitchen,40.76032,-73.99076,Private room,100,2,8,2018-12-09,0.97,3,0 +4117817,East Williamsburg Oasis,4516038,Zak,Brooklyn,Williamsburg,40.71673,-73.94316,Private room,64,5,4,2016-09-11,0.07,1,0 +4118244,3-LvPenthouse NYC skyline Subwy 50m,21362718,Rafael,Brooklyn,Carroll Gardens,40.67823,-73.99515,Entire home/apt,395,4,33,2018-05-18,0.65,1,158 +4118907,Charming 2-Bedroom Townhouse Apt,21367938,Rayna,Queens,Sunnyside,40.74947,-73.91472,Entire home/apt,120,10,30,2017-06-22,0.52,1,142 +4119763,"Large, Sunny 25 min to Central Park",10172703,HayNoor,Bronx,Norwood,40.87184,-73.88622,Private room,51,4,109,2019-07-04,1.88,1,212 +4119794,Large studio in Seaport Area,21371406,Anthony,Manhattan,Two Bridges,40.70989,-74.00105,Entire home/apt,149,6,1,2018-01-01,0.05,1,0 +4120122,Cosy room in Williamsburg,21373495,Lara,Brooklyn,Williamsburg,40.7105,-73.9438,Private room,65,1,113,2019-06-21,3.99,1,308 +4120182,Master Bedroom 别墅二楼主卧房,21228368,Jessica,Queens,Forest Hills,40.71293,-73.84915,Private room,70,1,11,2016-11-05,0.19,5,183 +4121110,Upper West Side studio with private terrace,1923075,Andrew,Manhattan,Upper West Side,40.79145,-73.97709,Entire home/apt,170,5,1,2014-10-19,0.02,1,0 +4121173,Large Studio in Luxury Building,17249397,Sushant,Manhattan,Financial District,40.70499,-74.00819,Entire home/apt,150,1,2,2015-06-07,0.04,2,0 +4121363,Large Garden Alcove Studio Apartment in Manhattan,21380762,Rachel,Manhattan,East Harlem,40.80738,-73.93707,Entire home/apt,75,30,6,2019-05-22,0.12,1,203 +4125398,Private Room in prime UWS duplex!,21400083,Katherine,Manhattan,Upper West Side,40.78732,-73.97489,Private room,100,1,10,2016-08-17,0.21,1,0 +4125515,Cute room in Large Crown heights Apartment,21400616,LeKethia,Brooklyn,Crown Heights,40.67673,-73.9362,Private room,38,2,12,2018-01-01,0.21,2,351 +4126452,Quiet Two Bedroom Apartment ,21405141,Altin,Manhattan,Gramercy,40.73327,-73.98503,Entire home/apt,200,3,13,2015-10-19,0.22,1,157 +4126676,Great Apt 5min from Time Square NYC,19802029,Roger,Manhattan,Hell's Kitchen,40.76468,-73.98514,Entire home/apt,145,7,37,2019-02-11,0.65,1,97 +4127402,Brand New Furnished Brooklyn Apt.,21336880,Madison,Brooklyn,Crown Heights,40.67822,-73.95883,Entire home/apt,150,5,14,2016-11-01,0.29,1,0 +4127524,Entire 1BD Apt in Long Island City!,828682,Leora,Queens,Long Island City,40.74264,-73.95122,Entire home/apt,200,1,2,2015-12-01,0.04,1,0 +4128337,Entire Apartment - charming 1BR-20min to Downtown,20543178,Pervaiz,Brooklyn,Bedford-Stuyvesant,40.67879,-73.93653,Entire home/apt,125,2,191,2019-06-23,3.27,2,311 +4128428,Sunny Bedroom in quirky apartment,21416490,Elizabeth,Manhattan,Murray Hill,40.74713,-73.98075,Private room,175,2,8,2019-06-07,0.43,1,177 +4128450,"Sunny, Spacious 1BR in BoCoCa",6885530,P,Brooklyn,Cobble Hill,40.6883,-73.99132,Entire home/apt,180,2,2,2014-10-18,0.03,1,0 +4128603,Cute 1 bedroom apt in East Village,8280108,Prune,Manhattan,East Village,40.72884,-73.98277,Entire home/apt,175,3,6,2016-06-05,0.13,1,18 +4129195,2 sleeping areas for 2 people together +2 singles,702419,Lars,Manhattan,Chelsea,40.75097,-73.99562,Entire home/apt,175,14,78,2019-03-10,1.36,1,0 +4129212,Large 1 Bedroom apartment with office room.,11555258,Patrick,Brooklyn,Kensington,40.64449,-73.97238,Private room,50,3,8,2016-07-25,0.14,2,14 +4129365,Beautiful SUNLIGHT in quiet apt!,21422095,Timothy,Brooklyn,Flatbush,40.64335,-73.96316,Entire home/apt,109,2,37,2019-06-16,0.64,1,356 +4129487,Peaceful Retreat in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68706,-73.93077,Private room,67,2,21,2019-05-21,0.36,7,58 +4129513,Haven of Tranquility in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68707,-73.93247,Private room,57,2,22,2019-03-06,0.38,7,71 +4129541,Wonderful Getaway in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68627,-73.93131,Private room,77,2,38,2019-03-16,0.66,7,66 +4129909,"Great View, only one block to metro",9234456,Angelo,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93387,Private room,80,2,61,2019-05-09,1.05,2,0 +4129992,Country in the City,20169986,Victoria,Brooklyn,Flatbush,40.63146,-73.96486,Entire home/apt,85,3,12,2018-09-21,0.21,1,97 +4130266,Spacious Sunny Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69562,-73.93792,Private room,86,2,11,2018-01-01,0.19,5,311 +4132116,Beautiful house top floor 1-3 large bedrooms,15908653,Gil,Brooklyn,Flatbush,40.63268,-73.96059,Private room,120,2,114,2019-04-07,1.96,2,312 +4134035,Sunny Studio in Brooklyn,7677048,Florrie,Brooklyn,Downtown Brooklyn,40.69682,-73.9837,Entire home/apt,140,3,131,2019-06-29,3.24,1,28 +4135674,Warm & lovely garden duplex in BK,2011110,Rebecca,Brooklyn,Fort Greene,40.68786,-73.97339,Entire home/apt,300,1,5,2015-07-10,0.09,1,0 +4135848,Cozy Bedroom with en suite bathroom,21455632,Venessa,Manhattan,Harlem,40.82498,-73.93629,Private room,90,1,5,2017-08-26,0.11,1,0 +4135876,"""The Studio"" Harlem Brownstone",21455957,Jason & Agnes,Manhattan,Harlem,40.81892,-73.94647,Private room,70,3,86,2019-01-15,1.48,2,157 +4136252,Chic NYC apt - near train & 42st St,14952623,Ammy,Manhattan,Harlem,40.80985,-73.94348,Private room,90,2,82,2018-02-01,1.53,1,0 +4136596,Entire Home/1 Bedroom Apt LES,21459667,Joanna,Manhattan,Lower East Side,40.72005,-73.98649,Entire home/apt,200,30,35,2019-06-26,0.61,1,286 +4137414,"Sunny, Charming, and Zen",9232428,Scott,Manhattan,East Village,40.72934,-73.98603,Entire home/apt,135,1,6,2015-12-27,0.10,1,0 +4137415,Private room overlooking yard in prime Bushwick,7410674,Jess And Josh,Brooklyn,Bushwick,40.70495,-73.9209,Private room,37,1,202,2019-07-01,3.74,1,73 +4137645,Beautiful Williamsburg Private Room,11134688,Noelle,Brooklyn,Williamsburg,40.71243,-73.95655,Private room,60,1,1,2014-09-23,0.02,1,0 +4137680,"LUXURY entire apt, steps to Central Park",3507684,Michael,Manhattan,Upper West Side,40.77607,-73.98035,Entire home/apt,419,2,10,2019-04-21,0.47,1,10 +4137756,Gorgeous Newly-Renovated Apt,3145112,Emma,Queens,Ridgewood,40.70293,-73.90771,Entire home/apt,130,7,2,2016-01-07,0.03,1,0 +4137789,"Sunny 2BR in Brooklyn townhouse, steps to subway",21466751,Elizabeth,Brooklyn,Windsor Terrace,40.65282,-73.97394,Entire home/apt,180,3,56,2019-05-28,0.99,1,121 +4137900,Beautiful apartment on the UES,6087686,Tal,Manhattan,Upper East Side,40.76968,-73.9593,Entire home/apt,160,2,7,2016-05-03,0.12,1,0 +4137979,Williamsburg/Greenpoint Studio,7243674,Eric,Brooklyn,Greenpoint,40.72126,-73.94328,Entire home/apt,125,2,204,2019-06-30,3.51,1,71 +4140622,Spacious room in Bed-Stuy,21480710,Theodore,Brooklyn,Bedford-Stuyvesant,40.68514,-73.93207,Entire home/apt,100,1,0,,,2,0 +4140776,Basement 别墅的地下室,21228368,Jessica,Queens,Forest Hills,40.71146,-73.84677,Private room,65,4,20,2019-05-25,0.35,5,133 +4142125,Modern South Slope Studio w View,18189742,Kat,Brooklyn,Sunset Park,40.66355,-73.99547,Entire home/apt,140,1,0,,,1,0 +4144519,1 Bedroom & Semi- Private Living Area,1756624,Samer,Queens,Sunnyside,40.74059,-73.91985,Private room,79,3,23,2018-08-31,0.40,1,88 +4144630,Bedford Ave,21500500,Juan,Brooklyn,Williamsburg,40.71794,-73.95682,Private room,125,2,0,,,1,0 +4144849,Cozy little studio in Chelsea,21501965,Yulia,Manhattan,Chelsea,40.74411,-74.00204,Entire home/apt,115,3,33,2019-06-15,0.57,1,11 +4145124,Studio Apt,651818,Lucio,Manhattan,Hell's Kitchen,40.7555,-73.9926,Private room,100,23,12,2018-08-04,0.22,1,23 +4145494,Very Sunny Private Room with Bath,21505913,Geri,Brooklyn,Crown Heights,40.67205,-73.95092,Private room,90,12,24,2017-06-19,0.41,1,64 +4148088,Central Harlem Private Studio,11950557,Loni & Russ,Manhattan,Harlem,40.80709,-73.94952,Entire home/apt,135,2,232,2019-06-23,4.01,1,192 +4148280,Comfy and Smart on Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.66079,-73.95693,Private room,50,3,47,2019-03-31,0.84,3,76 +4150932,Cozy Bedroom in BK Apt,7848968,Morgan,Brooklyn,Prospect Heights,40.67579,-73.9679,Private room,71,2,174,2019-07-03,3.00,2,3 +4150972,"1 BDRM APT, 15 MINS FROM MANHATTAN",21535262,Cecilia,Queens,Ridgewood,40.70599,-73.89755,Entire home/apt,80,30,4,2017-02-01,0.08,1,220 +4152752,Location is Everything. And Quiet Too!,21546973,Niko,Manhattan,Hell's Kitchen,40.76444,-73.98965,Private room,103,1,394,2019-06-30,6.79,1,237 +4154009,Luxury One Bedroom View on CP,17477908,Mat,Manhattan,Upper West Side,40.79545,-73.96595,Entire home/apt,250,30,5,2017-08-02,0.10,10,303 +4155012,true 1 BR in prime east village,21560088,Sarah,Manhattan,East Village,40.72784,-73.99104,Entire home/apt,219,2,9,2017-09-22,0.15,1,0 +4155099,Large Group Friendly Rental,11948817,Leslie,Brooklyn,Canarsie,40.62864,-73.89265,Entire home/apt,225,2,11,2019-06-02,0.22,2,305 +4156015,Cozy East River 1 bed/1 bath,21565088,ZVIPCO LLC (Robert),Manhattan,East Harlem,40.79591,-73.93316,Entire home/apt,99,1,50,2019-07-06,0.87,1,333 +4157064,16' x 11' Furnished BR with Balcony,3563,Arnie,Brooklyn,Sunset Park,40.64076,-74.0224,Private room,35,6,1,2014-11-28,0.02,1,0 +4157451,Bedroom in Manhattan - Prime Location,9432174,Daniel,Manhattan,Upper East Side,40.76805,-73.95424,Private room,90,4,87,2019-06-13,2.01,1,10 +4158078,Private room in Loft,19139700,Tanya,Queens,Ridgewood,40.69518,-73.9038,Private room,47,30,4,2017-08-05,0.07,1,157 +4160934,Luxury Private 2 Beds nr C/3 Subways,17462748,Steven,Brooklyn,Crown Heights,40.67495,-73.93845,Private room,75,5,125,2019-06-27,2.15,5,108 +4161127,An Open and Peaceful Space Great for Families,6580488,Sandy,Brooklyn,Windsor Terrace,40.65337,-73.97483,Entire home/apt,170,4,43,2019-06-27,0.77,1,275 +4162292,Charming Full 1BR Apt w/Backyard,21601222,Joan,Brooklyn,Flatbush,40.63512,-73.95815,Entire home/apt,150,3,37,2019-07-01,0.86,1,320 +4162519,Happy cozy Manchi GUEST ROOM,1267556,Mari J,Brooklyn,Flatbush,40.63995,-73.96196,Shared room,30,1,81,2019-06-29,1.39,1,319 +4163020,Gorgeous UWS apt with OWN full bath,6897051,Corey,Manhattan,Upper West Side,40.78398,-73.97795,Private room,119,4,7,2017-05-11,0.12,2,0 +4163710,Cozy private room in beautiful apt ,21609476,Beatrice,Brooklyn,Midwood,40.6251,-73.96163,Private room,40,15,1,2014-11-03,0.02,1,0 +4163742,Lovely 1BR in Ft. Greene,17451048,Ritchie,Brooklyn,Fort Greene,40.6888,-73.97635,Entire home/apt,85,2,1,2016-10-22,0.03,1,0 +4163781,Sun Soaked & Cozy PR Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.71007,-73.95653,Private room,99,3,19,2019-07-06,0.33,3,354 +4163804,Classic UWS 1 Bed in Doorman Bldg,15573381,Lindsay,Manhattan,Upper West Side,40.78085,-73.98471,Entire home/apt,250,1,0,,,1,0 +4165278,HUGE Room in an AMAZING Location!,4403262,Adam,Manhattan,Lower East Side,40.71906,-73.98433,Private room,79,9,5,2016-08-15,0.09,1,0 +4168660,Northside Williamsburg Private Bdrm,20979241,Amy,Brooklyn,Williamsburg,40.72022,-73.96055,Private room,60,3,5,2016-05-19,0.10,1,0 +4168812,PRIVATE 1BR APT: Free WIFI & DIRECT TV,5243122,R,Brooklyn,Bedford-Stuyvesant,40.6805,-73.93775,Entire home/apt,115,3,131,2019-06-22,2.27,2,241 +4169094,"Room in 2br apt Location by N,W,M60bus,Beer Garden",21634948,Monika,Queens,Ditmars Steinway,40.77375,-73.91646,Private room,90,3,17,2019-06-30,0.31,1,340 +4169840,Trendy Bushwick neighborhood,9452830,David,Brooklyn,Bushwick,40.70732,-73.91926,Private room,65,1,32,2015-11-10,0.55,1,188 +4170460,#1 Superhost Special Offer in NYC!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.6956,-73.94827,Private room,65,1,357,2019-06-22,6.19,4,321 +4170796,MODERN AND COZY FLAT w/ BACKYARD,733543,Monica,Manhattan,Harlem,40.80849,-73.9446,Entire home/apt,131,3,10,2019-07-01,0.27,1,12 +4171272,"Clean, Bright 1BD in Bushwick!",21645208,Grace,Brooklyn,Bushwick,40.69917,-73.93146,Entire home/apt,150,1,3,2016-01-02,0.05,1,0 +4171406,Private room in artist's loft!,6032480,Anna,Brooklyn,Williamsburg,40.7095,-73.94945,Private room,55,2,86,2019-06-11,1.49,2,38 +4171692,Luxe New Queen Br near Subways,17462748,Steven,Brooklyn,Crown Heights,40.67412,-73.93833,Private room,70,5,92,2019-07-06,1.58,5,148 +4172633,Cozy one bedroom apt at the center of Astoria,21652004,June,Queens,Astoria,40.75637,-73.92132,Entire home/apt,160,2,1,2017-07-03,0.04,1,0 +4172947,Your Own 2-Bd ~ Comfortable and Unique ~ Bed-Stuy,21653460,Zoya,Brooklyn,Bedford-Stuyvesant,40.6942,-73.95269,Entire home/apt,95,7,69,2018-12-07,1.79,2,0 +4173751,Lovely Apartment in Harlem West,9197440,Ana,Manhattan,Harlem,40.81619,-73.94003,Entire home/apt,99,3,5,2016-07-02,0.09,1,0 +4174115,Spacious Soho Loft,5739699,Rosemary,Manhattan,SoHo,40.7244,-73.99763,Entire home/apt,500,3,3,2015-05-05,0.05,1,0 +4174286,Bushwick BR/Private Bathroom,21660125,Chris,Brooklyn,Bushwick,40.69358,-73.91914,Private room,35,15,1,2016-04-15,0.03,1,0 +4174847,Quiet bedroom in a waste free household,21663531,Dana,Queens,Ridgewood,40.7078,-73.90177,Private room,50,21,38,2018-09-30,0.76,2,245 +4178152,"Modern Private Entrance Bedroom, Nr A/C Subways",17462748,Steven,Brooklyn,Crown Heights,40.67599,-73.93995,Private room,77,5,108,2019-06-28,2.14,5,129 +4178851,Lofty Living: Heart of Williamsburg,21680683,Jenny,Brooklyn,Williamsburg,40.71961,-73.95837,Entire home/apt,380,3,105,2019-06-30,1.82,2,264 +4179420,Cozy victorian peace of mind ,21682640,Clarise,Brooklyn,Flatbush,40.64251,-73.9597,Private room,65,30,0,,,2,365 +4180643,luxury one bedroom apt in prime LES location,21688467,Avril,Manhattan,Lower East Side,40.71814,-73.98411,Entire home/apt,150,60,9,2019-03-27,0.16,1,210 +4181598,"HUGE 1BD, RENOVATED, TIME SQUARE !!",1475015,Mike,Manhattan,Hell's Kitchen,40.76239,-73.99227,Entire home/apt,125,30,0,,,52,331 +4182262,BedStuy Brooklyn Charm Awaits U - 3BR Apt,18049970,Lou,Brooklyn,Bedford-Stuyvesant,40.68312,-73.92507,Entire home/apt,199,3,82,2019-07-07,1.78,2,269 +4182568,WilliamsburgBrooklynPrivateBedroom,3267848,June,Brooklyn,Williamsburg,40.70969,-73.96225,Private room,150,1,12,2019-06-02,0.21,1,180 +4183424,Charming West Village 1 bdrm,9405848,Susie,Manhattan,West Village,40.73314,-74.00475,Entire home/apt,145,3,11,2019-04-08,0.34,1,0 +4183664,Cozy Room for 1,21705739,Maha,Brooklyn,Crown Heights,40.67196,-73.93824,Private room,70,7,20,2016-01-21,0.35,1,364 +4183801,"Colorful apt, 25 mins to Manhattan",21706654,Katerina,Brooklyn,Bedford-Stuyvesant,40.68454,-73.93178,Entire home/apt,120,30,131,2019-01-07,2.29,1,336 +4183989,SPRING in the City!! Zen-Style Tranquil Bedroom,919218,,Manhattan,Harlem,40.80606,-73.95061,Private room,86,3,34,2019-05-23,1.00,1,359 +4187387,Beautiful Studio in posh Upper East,20289059,Cristina,Manhattan,Upper East Side,40.7661,-73.9573,Entire home/apt,139,2,160,2019-06-27,2.76,1,248 +4187653,Great Deal.,12360407,Firas,Brooklyn,Bay Ridge,40.62433,-74.02892,Private room,85,2,1,2015-05-09,0.02,1,0 +4187747,UPPER EAST Landmark Blding:Walk to Central Park,5309160,Elizabeth And Roberto,Manhattan,Upper East Side,40.77065,-73.95064,Entire home/apt,94,30,15,2016-02-21,0.26,1,309 +4188351,"Cozy, charming private apt in Brooklyn",610819,Brian,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93058,Entire home/apt,116,2,148,2019-06-16,2.56,1,0 +4188807,Spacious Bedroom in a Brooklyn House,4152484,Oates + Bill,Brooklyn,Prospect-Lefferts Gardens,40.66018,-73.96005,Private room,72,1,229,2019-06-24,3.94,1,20 +4189428,Gorgeous Park Slope Space & Light,21734605,Jenn,Brooklyn,Park Slope,40.67925,-73.97463,Entire home/apt,95,4,0,,,2,0 +4190301,Cool room while I'm away!,21739563,Redding,Brooklyn,Bedford-Stuyvesant,40.69525,-73.93768,Private room,100,1,0,,,1,0 +4191257,Spacious 2 story Apt in Midtown!!,17106992,Alejandro,Manhattan,Murray Hill,40.74643,-73.97536,Entire home/apt,200,1,1,2014-10-27,0.02,1,0 +4192400,Private+Cozy Room w/ Superhost ($0 Cleaning Fee)!,21751476,Grace,Brooklyn,Bushwick,40.69233,-73.90579,Private room,72,1,360,2019-07-07,6.22,1,66 +4194010,Idealistic Inwood,21759005,Alaina,Manhattan,Inwood,40.86496,-73.9262,Entire home/apt,100,3,15,2018-01-02,0.27,1,0 +4194494,Unique Full-Floor 2br/2bath in the Heart of SoHo,10367443,J,Manhattan,SoHo,40.72149,-73.99815,Entire home/apt,900,3,10,2018-12-30,0.17,1,0 +4195677,Clean private room in safe area near Manhattan,191324,Keith,Queens,Sunnyside,40.74944,-73.91361,Private room,80,2,76,2019-06-24,1.31,2,102 +4196039,Artist's Studio Apartment,21768291,Jo,Brooklyn,Greenpoint,40.72401,-73.94016,Entire home/apt,75,2,0,,,1,0 +4197760,Stylish 1 BedRoom very quiet Upper East Side Apt!,21777274,Kelly,Manhattan,Upper East Side,40.76169,-73.95682,Entire home/apt,92,4,179,2019-06-17,3.14,1,245 +4198391,"Manhattan 1-Bedroom, East Village",7805184,Valeria,Manhattan,East Village,40.72956,-73.98275,Entire home/apt,160,3,0,,,1,0 +4198695,Large and furnished,21782731,Marley,Brooklyn,Midwood,40.62735,-73.95704,Private room,50,7,7,2016-07-31,0.12,1,364 +4199411,Greenwich Village Living!,21787420,Mo,Manhattan,East Village,40.73062,-73.99122,Entire home/apt,350,2,0,,,1,0 +4199782,Park Slope's - Pied à Terre (1-Bedroom Apt),21789707,Alexandre,Brooklyn,South Slope,40.6656,-73.98575,Entire home/apt,135,2,128,2019-04-24,2.23,1,245 +4201905,Sunny 1 Bedroom -Financial District,4738242,Meghna,Manhattan,Financial District,40.70956,-74.01341,Entire home/apt,160,7,3,2015-01-03,0.05,1,0 +4203460,1 Br Near Empire State Building,12419083,Andre,Manhattan,Kips Bay,40.7444,-73.98031,Entire home/apt,270,1,0,,,1,0 +4204083,The White House,21811394,Hazel,Brooklyn,Bedford-Stuyvesant,40.6789,-73.94001,Entire home/apt,129,1,223,2019-06-20,3.91,1,230 +4204302,Prime W. Village location 1 bdrm,17550546,Genevieve,Manhattan,Greenwich Village,40.73293,-73.99782,Entire home/apt,180,1250,2,2014-11-09,0.03,1,365 +4204988,Charming Soho One Bedroom + Loft,1162642,Emily,Manhattan,NoHo,40.72577,-73.99337,Entire home/apt,350,2,0,,,2,0 +4205232,Private Room in Brooklyn,6468894,Cherng-Mao,Brooklyn,Williamsburg,40.71564,-73.95107,Private room,75,1,10,2016-04-19,0.17,1,0 +4205816,Spacious South Slope apartment,20312973,Diana,Brooklyn,Sunset Park,40.66423,-73.99565,Entire home/apt,119,5,6,2015-12-27,0.11,1,0 +4206034,Clean and Huge Studio in Safe Area,18382740,Takao & Aiko,Staten Island,Tompkinsville,40.63481,-74.09591,Entire home/apt,99,7,35,2019-05-30,0.61,1,326 +4206087,Spacious Artist's Studio,2423107,Brad,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.95965,Entire home/apt,120,1,4,2015-05-03,0.07,1,0 +4208547,Sweet Luxe Bed w/Private Backyard,17462748,Steven,Brooklyn,Crown Heights,40.67417,-73.94028,Private room,73,5,102,2019-07-06,1.88,5,147 +4209106,Bright Private Apartment w/ Manhattan Views,4218058,Jessica,Brooklyn,Fort Greene,40.68526,-73.97154,Entire home/apt,500,7,11,2018-07-31,0.20,2,173 +4209595,"",20700823,Jesse,Manhattan,Greenwich Village,40.73473,-73.99244,Entire home/apt,225,1,1,2015-01-01,0.02,1,0 +4211276,"Beautiful, Spacious Brooklyn Home ",21064917,Alissa,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95198,Entire home/apt,275,3,3,2015-01-01,0.05,1,0 +4211510,Simple Astoria Room 20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.76989,-73.90735,Private room,50,1,127,2019-06-20,2.25,5,52 +4215595,LowerEastSide apt share shortterm 3,7549,Ben,Manhattan,Lower East Side,40.71329,-73.99047,Shared room,40,1,88,2019-05-19,1.53,4,197 +4216183,Cozy and Vibey Apt in Williamsburg,14565233,Gabriela,Brooklyn,Williamsburg,40.71543,-73.94159,Entire home/apt,115,2,3,2015-01-04,0.05,1,0 +4216435,Cozy hideaway,1361993,Daniel,Bronx,Kingsbridge,40.88399,-73.89502,Entire home/apt,110,2,0,,,1,0 +4216745,Sunlit Private Room / Spacious Pre-War Apartment,21881605,Julie,Brooklyn,Crown Heights,40.67658,-73.9444,Private room,100,1,0,,,2,83 +4216774,Stay in the heart of Williamsburg!,15243531,Amanda,Brooklyn,Williamsburg,40.71722,-73.95862,Entire home/apt,150,2,4,2015-11-16,0.07,1,0 +4216813,Penthouse w/Terrace Williamsburg,9904977,Matt,Brooklyn,Greenpoint,40.72309,-73.93767,Entire home/apt,200,3,95,2019-06-26,1.65,1,358 +4217268,1 Bedroom Apartment in Washington Heights - Summer,21886798,Robert,Manhattan,Washington Heights,40.84261,-73.93771,Entire home/apt,75,7,1,2018-08-12,0.09,1,0 +4217758,Beautiful Apartment in Bushwick/Ridgewood,10618980,Lumin And Hendrik,Queens,Ridgewood,40.70729,-73.91697,Entire home/apt,98,2,157,2019-07-05,2.73,1,15 +4218034,Urban Jungle Garden Duplex,6841194,Eric,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91971,Entire home/apt,199,2,222,2019-07-04,3.92,2,238 +4218067,Central One Bedroom Manhattan Apt,20448670,Crystal,Manhattan,Harlem,40.81422,-73.94844,Entire home/apt,109,2,11,2016-10-03,0.19,1,0 +4218098,"Sunny, small apartment near Central Park-Columbia",21892444,Francesca,Manhattan,Harlem,40.80653,-73.95194,Entire home/apt,110,4,26,2019-06-24,0.45,1,14 +4218129,Special OFFER on Airbnb NYC Room!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94786,Private room,59,1,350,2019-06-24,6.05,4,328 +4219851,"Bushwick Brooklyn NYC Apt, with LG kitchen & yard!",21902316,Amy,Brooklyn,Bushwick,40.70071,-73.92913,Entire home/apt,95,2,19,2019-05-27,0.44,2,172 +4220151,"Clean/Quiet Apt, Great Location, with washer/dryer",21903562,David,Manhattan,Chelsea,40.74588,-74.00055,Entire home/apt,159,1,202,2019-06-19,3.53,1,234 +4221999,Spacious & Bright: 1 BR Midtown!,20335235,Stephen,Manhattan,Midtown,40.75576,-73.96548,Entire home/apt,225,1,10,2018-08-22,0.18,1,0 +4224091,Brooklyn - Boerum Hill Beauty,21921207,Nick,Brooklyn,Boerum Hill,40.68449,-73.98524,Entire home/apt,195,2,116,2019-07-03,2.02,1,260 +4225569,Lovely Astoria Studio-close to NYC!,21929547,Orinda,Queens,Astoria,40.76273,-73.90579,Entire home/apt,96,1,196,2019-07-07,3.44,1,316 +4225745,Cute Studio in Trendy Neighborhood,21930475,Whitney,Brooklyn,Clinton Hill,40.68275,-73.96542,Entire home/apt,73,2,7,2018-08-13,0.13,1,0 +4226098,W. 80's Central Park 3 Blocks Walk,21930989,Mark,Manhattan,Upper West Side,40.78883,-73.97616,Private room,88,1,319,2019-06-25,5.60,2,251 +4226269,Private 1 bedroom in Williamsburg,20112613,Simone,Brooklyn,Williamsburg,40.70013,-73.95165,Entire home/apt,90,2,3,2016-05-24,0.05,1,0 +4226535,Bright Top Floor Apartment In The Heart Of BK,14543419,Juli,Brooklyn,Crown Heights,40.6721,-73.95372,Entire home/apt,99,5,16,2018-12-06,0.28,1,0 +4227018,Amazing View in East Williamsburg ,21937306,William,Brooklyn,Williamsburg,40.71752,-73.94187,Shared room,150,1,0,,,1,0 +4227141,Cozy Bedroom,21938126,Reenie,Brooklyn,Bedford-Stuyvesant,40.68724,-73.94218,Private room,35,2,11,2019-06-02,0.81,2,11 +4227161,New York I Love You 7 Bedrooms,20318233,Nirit (Nina),Brooklyn,Bedford-Stuyvesant,40.68542,-73.95184,Entire home/apt,1050,3,121,2019-06-10,2.19,1,327 +4227207,Park Slope perfectly renovated 1BR+,21938678,Christophe,Brooklyn,South Slope,40.66752,-73.98892,Entire home/apt,175,2,76,2019-07-01,1.33,1,308 +4227499,Cozy Home w/Private Garden&Hot Tub!,2811458,Brandon,Manhattan,Chelsea,40.74724,-74.00355,Entire home/apt,395,4,73,2018-01-03,1.27,1,2 +4227554,"Big 2BR, just minutes to Manhattan!",21941065,David,Queens,Woodside,40.7426,-73.90706,Entire home/apt,195,3,124,2019-06-26,2.20,1,305 +4232255,Super Clean Newly Furnished in Prime Bay Ridge,21962039,Beatriz,Brooklyn,Bay Ridge,40.62605,-74.03014,Private room,49,10,7,2019-03-05,0.14,1,281 +4232356,Studio Apartment ,9368118,Peter,Manhattan,Upper East Side,40.77065,-73.95163,Entire home/apt,150,1,0,,,1,0 +4232865,Beautiful Oasis,21964818,Anita,Manhattan,Upper West Side,40.78278,-73.97437,Entire home/apt,250,1,1,2015-11-01,0.02,1,0 +4233025,Huge Loft in Brooklyn 15 mins from Manhattan,651771,Cristina,Brooklyn,Williamsburg,40.7068,-73.93772,Entire home/apt,150,4,17,2019-06-08,0.30,1,170 +4233705,looking for someone to stay 12days,11243583,Joseph,Manhattan,Upper West Side,40.77715,-73.98235,Entire home/apt,260,1,0,,,1,0 +4235620,Elegant furnished 1BR apartment,21979970,Louise & Thomas,Queens,Flushing,40.73303,-73.79736,Entire home/apt,100,7,9,2019-06-28,0.16,1,268 +4235843,Charming Bedroom Bright and Cozy A2,20559017,Yohan,Manhattan,East Harlem,40.78627,-73.94316,Private room,55,30,4,2018-08-27,0.07,9,339 +4235961,Central 2 Bedroom in Chelsea,16276317,Lee,Manhattan,Chelsea,40.74366,-73.99721,Entire home/apt,275,3,1,2016-07-07,0.03,1,0 +4236107,nice apt in west village,14729523,Zherui,Manhattan,West Village,40.73408,-74.0057,Private room,110,1,0,,,1,0 +4236725,"Spacious, elegant home in Brooklyn",3650005,Rae,Brooklyn,Clinton Hill,40.69191,-73.96624,Entire home/apt,150,3,0,,,1,0 +4240861,Small Private Studio!,22005943,Tameisha,Brooklyn,Bushwick,40.69108,-73.91443,Private room,80,2,129,2019-06-16,2.24,1,346 +4241028,Private Studio Apartment ,22006854,Kishorie,Queens,Jamaica,40.6852,-73.7962,Entire home/apt,89,1,352,2019-06-16,6.10,1,359 +4241486,Floor Through East Village Lux Apt,22009089,Lorcan,Manhattan,East Village,40.72685,-73.98638,Entire home/apt,280,2,92,2019-07-04,1.59,1,173 +4243533,Private Bedroom in Large Apartment,8732038,Lorna,Queens,Woodside,40.74808,-73.90404,Private room,100,1,0,,,1,0 +4244174,Quiet room in Greenpoint,21062282,Madison,Brooklyn,Greenpoint,40.73235,-73.95106,Private room,80,2,0,,,1,0 +4244242,Best Bedroom in Bedstuy/Bushwick. Ensuite bathroom,22023014,BrooklynSleeps,Brooklyn,Bedford-Stuyvesant,40.69496,-73.93949,Private room,70,1,110,2019-06-23,1.96,1,323 +4244476,Sunny and Funky Greenpoint Room,782008,Lori,Brooklyn,Greenpoint,40.73093,-73.95332,Private room,75,1,1,2015-07-10,0.02,1,0 +4244528,Williamsburg Beauty,4162754,Angel,Brooklyn,Williamsburg,40.71295,-73.9623,Private room,80,1,52,2019-05-27,1.12,1,297 +4244576,Very clean/comfortable shared room,21977919,Nathaniel,Manhattan,Washington Heights,40.8544,-73.93091,Shared room,41,1,1,2015-06-05,0.02,1,0 +4247883,Sunny & quiet 2BR in great location,22010885,Anja,Manhattan,West Village,40.73545,-74.00097,Entire home/apt,195,4,1,2014-12-27,0.02,1,0 +4248788,W70s Lg. Studio with outdoor space,22047286,Chloe,Manhattan,Upper West Side,40.77881,-73.97726,Entire home/apt,250,2,5,2015-11-27,0.11,1,0 +4249131,BEST LOCATION in MANHATTAN!,12534414,Gina,Manhattan,East Village,40.73175,-73.98756,Entire home/apt,96,1,198,2019-06-21,3.47,1,169 +4249342,Perfect Private Room in Luxury Bldg w/Gym/Rooftop,2495483,Andy,Manhattan,Financial District,40.70948,-74.00654,Private room,98,7,23,2019-06-01,0.55,1,116 +4250746,Newly-Renovated 2BR/1BTH Garden Apt,22057975,Kevin,Brooklyn,Bushwick,40.69271,-73.92535,Entire home/apt,140,4,120,2019-06-10,2.09,1,100 +4252172,Williamsburg Penthouse w/ Balcony,13949526,Fran,Brooklyn,Williamsburg,40.70028,-73.95439,Private room,99,1,0,,,1,0 +4256091,Charming West Village Apartment ,1542713,Brandon,Manhattan,West Village,40.73539,-74.00818,Entire home/apt,175,2,105,2019-05-04,1.88,1,276 +4257572,Charming Studio in the Heart of NYC,19644682,Janet,Manhattan,Upper West Side,40.78245,-73.98163,Entire home/apt,120,6,5,2016-04-21,0.09,1,0 +4257889,Large Room@ColumbiaUniversity/15min toTime Square,22096807,Stephenie,Manhattan,Morningside Heights,40.8049,-73.96558,Private room,89,1,46,2019-07-05,1.33,1,363 +4258443,Private bedroom in Bushwick,20408723,Andrea,Brooklyn,Bushwick,40.69863,-73.91235,Private room,90,3,0,,,1,0 +4258867,Charming Brownstone Apt Fort Greene,1663994,Hellen,Brooklyn,Fort Greene,40.68796,-73.97735,Entire home/apt,178,3,11,2019-07-02,0.24,1,32 +4259427,Appartement en duplex de 3 chambres,21833312,Solange Et Michel,Brooklyn,Crown Heights,40.67027,-73.94033,Entire home/apt,210,6,27,2019-05-02,0.47,1,302 +4260964,"Charming, private 1BR garden apt",16212001,Erin,Manhattan,Harlem,40.81774,-73.94595,Entire home/apt,150,4,82,2019-05-22,1.53,1,46 +4261214,Cozy place in Uptown Manhattan,22022473,Gita,Manhattan,Harlem,40.80936,-73.94454,Entire home/apt,149,2,82,2019-06-05,1.43,1,215 +4261951,Beautiful 1 Bedroom in Midtown West,8533891,Lev,Manhattan,Hell's Kitchen,40.76443,-73.99184,Entire home/apt,225,3,2,2015-01-03,0.03,1,0 +4262120,Columbus Circle and Park Views,6914968,Lisa,Manhattan,Upper West Side,40.7681,-73.98377,Entire home/apt,2695,1,0,,,1,0 +4262707,"Upscale, JFK/Beach, modern 1BR apt.",22124628,Aj,Queens,Howard Beach,40.65443,-73.84605,Entire home/apt,63,30,2,2014-10-11,0.03,1,362 +4263488,Columbus Circle 2br,7651028,Jesse,Manhattan,Hell's Kitchen,40.76842,-73.98589,Entire home/apt,150,1,0,,,1,0 +4263624,LOVELY GARDEN APT FOR 2 TO 4,22131209,Gregory,Brooklyn,Crown Heights,40.67566,-73.93944,Entire home/apt,106,3,15,2019-04-22,0.26,1,0 +4263802,Fort Greene - Parlor One Bed,11189753,Sj,Brooklyn,Fort Greene,40.68562,-73.9693,Entire home/apt,165,10,36,2019-06-25,0.63,4,328 +4263880,Nice room available in modern Apt.,3609048,Ken,Brooklyn,Crown Heights,40.67009,-73.9329,Private room,75,2,25,2016-10-09,0.43,3,365 +4264049,Location Little Marcela,3250450,Petya,Queens,Astoria,40.76496,-73.91169,Private room,39,31,5,2018-01-26,0.10,18,310 +4264127,Location Lucy ( only female ),3250450,Petya,Queens,Astoria,40.75896,-73.9153,Private room,39,30,13,2018-09-09,0.26,18,341 +4265471,Ladies Shared Dorm Room (Top Bunk),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.68676,-73.95801,Shared room,30,2,13,2019-07-01,0.37,3,339 +4267133,Large private room in huge LES Apt,6793885,Nick,Manhattan,Lower East Side,40.72156,-73.98712,Private room,70,1,2,2015-06-10,0.03,1,0 +4268286,Cozy brownstone bed & bath; pvt.ent,22158091,Marjorie,Manhattan,East Harlem,40.79608,-73.93819,Private room,100,3,140,2019-07-06,2.45,1,66 +4270499,Cozy One Bedroom Apt - Astoria,22171095,George & Diana,Queens,Astoria,40.76369,-73.92291,Entire home/apt,125,2,112,2018-06-18,1.94,2,0 +4270683,Very nice studio 15 mins to the heart of Manhattan,5835210,Daniela,Queens,Astoria,40.76386,-73.91002,Entire home/apt,110,3,3,2019-01-07,0.05,1,342 +4271059,Huge 2.5 bdrm in North Brooklyn!,208565,Maria,Brooklyn,Greenpoint,40.73527,-73.95398,Entire home/apt,145,2,7,2016-08-16,0.13,2,0 +4271119,Private bedroom in Hell's Kitchen,15638520,Joseph & Hector,Manhattan,Upper West Side,40.76845,-73.9832,Private room,112,3,126,2019-07-01,2.92,1,230 +4271877,New Private Bathroom Master Bedroom,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.6869,-73.92254,Private room,69,1,121,2019-06-22,2.68,3,286 +4273931,UPPER EAST SIDE DOORMAN BUILDING,22188911,Alessio,Manhattan,Upper East Side,40.76751,-73.96309,Entire home/apt,300,4,57,2016-11-28,1.08,1,0 +4274443,Wyndham 45 Midtown NYC,22131245,Roberta,Manhattan,Midtown,40.75195,-73.97191,Private room,260,2,1,2016-05-17,0.03,1,177 +4274462,Spacious and cosy private room.,22189723,Diego,Queens,Ridgewood,40.70439,-73.91111,Private room,49,2,37,2019-05-28,0.73,2,298 +4274589,Modern XL Tribeca apt with terrace ,16666294,Lp,Manhattan,Tribeca,40.71743,-74.00623,Entire home/apt,215,2,23,2017-04-12,0.40,1,187 +4274595,Garden Oasis Apartment - 2 bedroom,22088164,Julia,Manhattan,East Harlem,40.80751,-73.94097,Entire home/apt,200,3,162,2019-06-15,2.84,1,208 +4275729,Two room suite for rent in Bushwick,22198017,Ezra,Brooklyn,Bushwick,40.69341,-73.92266,Entire home/apt,100,15,0,,,1,0 +4276532,Harlem Getaway Jazz Mansion,9854191,Joyce,Manhattan,Harlem,40.80469,-73.94594,Entire home/apt,1000,3,38,2019-06-09,0.72,1,270 +4276618,"Great location, great value",1405217,James,Manhattan,Chelsea,40.75238,-73.9945,Entire home/apt,120,3,18,2018-01-03,0.31,1,0 +4276762,5Bedroom Manhattan townhome triplex,2807798,Sean,Manhattan,Harlem,40.83048,-73.9437,Entire home/apt,310,1,64,2019-07-07,1.32,2,7 +4277614,Private Room in a Spacious & Bright Apartment,14279331,James,Brooklyn,Gowanus,40.67044,-73.99157,Private room,70,4,91,2018-12-29,3.64,1,0 +4277724,"Bright, Spacious Wburg APT w/ VIEW!",6894447,Andrew,Brooklyn,Williamsburg,40.71484,-73.96742,Entire home/apt,195,2,57,2019-06-24,0.99,1,15 +4277980,The Jewel of Crown Heights- Franklin Ave {NEW},22209733,SooKi,Brooklyn,Crown Heights,40.67484,-73.95751,Entire home/apt,110,2,32,2019-06-13,0.56,1,264 +4278084,Midtown NYC Studio Apartment 4E,17770287,Nina,Manhattan,Midtown,40.75062,-73.98247,Entire home/apt,75,30,13,2019-01-17,0.23,14,167 +4278389,M1 Twin couch bed sleeps 1 guest,295128,Carol Gloria,Bronx,Clason Point,40.81231,-73.85535,Shared room,45,1,7,2019-07-01,0.14,7,365 +4278568,The Lower East Side Experience,1143151,Mila,Manhattan,Lower East Side,40.72184,-73.98755,Entire home/apt,165,3,23,2019-05-27,0.41,1,0 +4279260,Spacious Scandi-inspired apt in private house,22216726,Linda,Queens,Ridgewood,40.70463,-73.90132,Entire home/apt,150,2,77,2019-06-09,1.50,1,24 +4279323,"Cozy/spacious 3bd, room for rent",21140491,Ariel,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.9484,Private room,80,1,2,2014-11-09,0.03,1,0 +4279550,Pure Serenity 1BR in the Lower East Side,22218694,Lea,Manhattan,Lower East Side,40.71912,-73.9863,Entire home/apt,180,2,122,2019-07-01,2.15,2,362 +4280053,Clean Room by Metro/Subway -15mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68206,-73.95441,Private room,80,2,100,2019-06-27,1.73,3,365 +4280118,"Lovely, light-filled Bushwick flat",1990602,Jessica,Brooklyn,Bushwick,40.70741,-73.92239,Private room,60,3,2,2016-06-22,0.04,1,0 +4281241,Can't Beat this Central Location!,22227178,Daniel,Manhattan,Greenwich Village,40.73341,-73.99489,Entire home/apt,149,1,26,2016-07-31,0.45,1,0 +4282178,A Superhost SALE! DELUXE Room!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69724,-73.94914,Private room,53,1,351,2019-06-24,6.09,4,0 +4282998,Spacious 1 BR & terrace on 19th floor viewing NYC,9471525,Chris,Manhattan,Kips Bay,40.74092,-73.97817,Entire home/apt,200,7,9,2019-01-05,0.16,1,291 +4284031,BRIGHT BEAUTIFUL CHELSEA APT,4532548,Tess,Manhattan,Chelsea,40.74305,-73.99733,Entire home/apt,160,2,79,2019-06-06,1.38,1,108 +4284158,Homey East Village Private Bedroom ,22240717,Steven,Manhattan,East Village,40.72833,-73.98917,Private room,199,1,0,,,1,0 +4285876,LES/Chinatown One Bedroom apt (all to yourself),22248783,Xiao,Manhattan,Lower East Side,40.71281,-73.99174,Entire home/apt,140,1,16,2019-04-06,0.28,1,0 +4286196,Two bedroom in Prime East Village,6280254,Jc,Manhattan,East Village,40.73045,-73.98392,Entire home/apt,199,4,8,2018-12-14,0.19,2,232 +4286662,1 Bedroom in Greenwich Village!,22253568,Brian,Manhattan,Greenwich Village,40.73032,-73.99976,Entire home/apt,190,1,43,2019-07-01,0.75,1,3 +4287589,"LG GARDEN Apt ON Sunset Park, on41ST near 6th Ave",15715046,Katie,Brooklyn,Sunset Park,40.65031,-74.00239,Entire home/apt,125,2,51,2019-07-01,0.89,1,351 +4288276,"New Apt near Central Park, Broadway, Museums",3750547,Angela,Manhattan,Upper East Side,40.76051,-73.96083,Entire home/apt,145,3,62,2019-05-28,1.10,1,50 +4288361,Cozy 1BD on historic Stuyvesant St.,1994261,Anna,Manhattan,East Village,40.73046,-73.98808,Entire home/apt,150,3,1,2014-11-14,0.02,1,0 +4291200,"Comfy Rm, Hallway Bath, Forest Hills",19597910,Ruth,Queens,Forest Hills,40.7269,-73.83952,Private room,95,2,42,2019-05-09,0.74,3,334 +4291654,Private room in Bushwick Loft,22280299,Brad,Brooklyn,Williamsburg,40.70407,-73.93562,Private room,100,1,0,,,1,0 +4293935,Beautiful brownstone room,1141935,Ana,Brooklyn,Crown Heights,40.67391,-73.9472,Private room,99,1,74,2019-06-09,1.34,3,290 +4294546,Bright Apt Williamsburg-Greenpoint,13402436,Manuela,Brooklyn,Greenpoint,40.7223,-73.94938,Entire home/apt,130,1,43,2019-05-05,0.84,1,0 +4294640,"Bedroom, balcony and best of NY.",21499988,Joey,Brooklyn,Williamsburg,40.71613,-73.95336,Private room,56,1,1,2014-10-26,0.02,1,0 +4294969,Welcome to my home,4473916,Ross,Manhattan,Greenwich Village,40.73175,-73.99518,Entire home/apt,450,1,1,2015-01-03,0.02,1,0 +4295108,Large Sunny Master Private bedroom,19841476,Rasheeda,Manhattan,East Harlem,40.80161,-73.94277,Private room,75,1,7,2016-12-08,0.20,1,0 +4295542,Private 1 Bdrm Suite in Historic Brownstone,19174715,Judith,Brooklyn,Brooklyn Heights,40.69276,-73.9963,Private room,240,2,45,2019-05-22,0.79,1,348 +4295603,Beautiful Loft in flawless factory conversion,7503643,Vida,Brooklyn,Greenpoint,40.7255,-73.9409,Entire home/apt,129,30,1,2015-03-27,0.02,52,300 +4295733,Comfortable Room w/access to full apartment,10981052,Talisa,Brooklyn,East Flatbush,40.64768,-73.95138,Private room,45,1,5,2018-07-27,0.27,1,0 +4296126,POSH High Rise near Times Square,22299389,Lindsay Alexa,Manhattan,Hell's Kitchen,40.7555,-73.99369,Entire home/apt,259,4,25,2019-06-17,0.44,1,255 +4296291,"100 st! cozy, clean, private UES E Harlem",22303517,Danielle,Manhattan,East Harlem,40.78907,-73.94877,Entire home/apt,75,1,107,2019-06-27,1.91,1,116 +4296710,NICE SPACE IN NYC ,1260921,Victor,Bronx,Kingsbridge,40.86809,-73.90201,Private room,37,2,63,2019-06-24,1.15,2,305 +4296956,Sharbell’s vacation,22307859,Sharon,Brooklyn,Canarsie,40.63621,-73.89407,Entire home/apt,210,3,11,2019-07-07,2.75,5,83 +4297952,Awesome Chelsea 1 bedroom,22305520,James,Manhattan,Chelsea,40.7492,-73.99847,Entire home/apt,199,2,194,2019-07-06,3.37,2,178 +4299536,10 Minutes to Manhattan,17164818,Victoria,Brooklyn,Clinton Hill,40.68566,-73.96022,Entire home/apt,189,8,33,2019-06-22,0.58,1,271 +4302293,Private Room with 2nd Full Bath in Modern Art Apt,4600692,J.,Queens,Long Island City,40.74742,-73.94647,Private room,58,1,33,2019-06-06,1.98,1,101 +4303600,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68531,-73.95185,Private room,60,30,44,2019-05-19,0.78,8,99 +4303825,Cute apartment with 2 big bedrooms,3578009,Walther,Queens,Long Island City,40.74853,-73.95068,Entire home/apt,190,1,34,2019-03-10,0.60,2,182 +4305170,Cute ethnic cosy private studio!,5918341,Mona,Brooklyn,Clinton Hill,40.68147,-73.96488,Entire home/apt,139,2,88,2019-06-22,1.53,2,82 +4308612,Holiday special! Best location!,16798055,Ehud,Manhattan,Hell's Kitchen,40.76502,-73.98932,Entire home/apt,125,1,186,2019-06-30,3.28,1,193 +4308633,Wonderful Willi!,22364611,Basil,Brooklyn,Williamsburg,40.71603,-73.9547,Private room,94,2,46,2019-06-03,0.90,1,267 +4308798,Upper East Side 1-Bedroom,16906759,Karen,Manhattan,Upper East Side,40.77254,-73.96193,Entire home/apt,100,2,58,2019-06-11,1.02,1,9 +4308991,Big Room with Private Bathroom,6195809,Dean,Manhattan,East Village,40.72607,-73.98867,Private room,149,364,8,2019-01-07,0.17,1,90 +4309079,Big Sunny Room in Apartment With Views,22367030,Tarek,Manhattan,East Village,40.72603,-73.98897,Private room,128,7,15,2019-04-13,0.26,1,249 +4309648,Ebony & Ivory Close to Manhattan,13063145,Vinneth,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95266,Entire home/apt,160,3,149,2019-06-24,2.61,2,303 +4309757,Beautiful Studio apartment in Prime Park Slope,1918986,Roni,Brooklyn,Park Slope,40.66651,-73.97922,Entire home/apt,160,31,8,2018-10-29,0.17,1,296 +4310501,Spacious Bedroom in East Village,21127377,Orhun,Manhattan,East Village,40.72627,-73.98915,Private room,110,3,64,2019-06-30,1.26,1,14 +4311648,Modern & Sunny w/ Private Terrace,4644513,Liana,Brooklyn,Williamsburg,40.71436,-73.96362,Entire home/apt,285,3,43,2019-05-26,0.75,1,12 +4315934,The Brooklyn Haven,22405856,Val And Taylor,Brooklyn,Bedford-Stuyvesant,40.6792,-73.90937,Entire home/apt,75,10,2,2018-11-02,0.10,1,349 +4318364,Beautiful Loft in Meatpacking,22420381,Ahmad,Manhattan,Chelsea,40.74039,-74.00356,Entire home/apt,650,7,6,2019-07-02,0.13,1,358 +4320934,Central Harlem large beautiful studio,11790239,Mina,Manhattan,Harlem,40.81599,-73.94676,Entire home/apt,133,1,20,2019-05-22,0.36,3,345 +4325244,East Village Comfort & Convenience,2999445,Sindhu,Manhattan,East Village,40.73073,-73.98105,Entire home/apt,149,2,36,2018-06-30,0.79,1,0 +4325284,"Lovely, Clean, Comfy w/River Views!",22459182,Sean,Manhattan,Upper East Side,40.78535,-73.94997,Entire home/apt,210,1,0,,,1,0 +4325329,Charming Brownstone Apt Steps from Central Park!,1537663,Madeline,Manhattan,Upper West Side,40.78667,-73.96924,Entire home/apt,200,2,56,2019-06-28,0.98,1,226 +4329728,Spacious room with view in Chelsea,2657430,Rahul,Manhattan,Chelsea,40.74751,-74.00086,Private room,110,6,20,2018-01-01,0.36,2,0 +4331684,Modern 2-Bed Apt.- Great Location!,22487371,John,Manhattan,Hell's Kitchen,40.75579,-73.99154,Entire home/apt,375,3,13,2018-06-23,0.23,1,0 +4331691,Full apartment - cute & quirky,22490457,Danielle,Manhattan,Lower East Side,40.71845,-73.986,Entire home/apt,95,10,2,2016-11-17,0.04,1,0 +4333204,Harlem cosy renovated unit for two,11790239,Mina,Manhattan,Harlem,40.81618,-73.94517,Entire home/apt,94,1,23,2019-07-03,0.57,3,316 +4334446,"Cozy 1 bdrm Park Slope, Brooklyn,",8659738,Janine,Brooklyn,South Slope,40.6631,-73.98603,Entire home/apt,120,3,118,2019-06-23,2.07,1,266 +4334513,1 bed/bath condo steps from Bedford,2357221,Swati,Brooklyn,Williamsburg,40.71104,-73.95917,Entire home/apt,150,5,1,2015-01-02,0.02,1,0 +4338177,Sleeps 4! Prime Chelsea~large 1BR,2119276,Host,Manhattan,Chelsea,40.73947,-74.00114,Entire home/apt,160,30,6,2018-10-04,0.12,39,267 +4338541,Beautiful 1BR apt Upper West Side,22410033,Georges,Manhattan,Morningside Heights,40.80801,-73.9582,Entire home/apt,132,2,9,2017-01-04,0.16,1,0 +4338548,Gorgeous Sunny Bohemian Duplex with Garden,910592,Angie And Matthew,Brooklyn,Bedford-Stuyvesant,40.6845,-73.93968,Entire home/apt,102,1,10,2019-01-26,0.18,1,4 +4339188,Fantastic Comfortable Space. Affordable,22526585,Chema,Brooklyn,Bedford-Stuyvesant,40.6933,-73.94976,Entire home/apt,85,1,84,2019-07-01,1.46,1,286 +4339189,"Big, Bright Fort Greene Apartment! ",3341356,Katie,Brooklyn,Fort Greene,40.69172,-73.9703,Entire home/apt,142,6,2,2015-11-28,0.04,1,0 +4339202,"**ASTORIA one private cozy, cute room** Nihongo ok",22527661,Mio,Queens,Astoria,40.76261,-73.91767,Private room,70,3,2,2019-05-23,0.05,1,23 +4339924,"Penthouse Flat, Million-$-View, Best Area!",22530714,Murad,Brooklyn,Bushwick,40.6989,-73.92904,Entire home/apt,200,90,91,2016-10-04,1.59,1,365 +4340609,Gorgeous 2BR XL Loft @ Habitat 101,7503643,Vida,Brooklyn,Greenpoint,40.72603,-73.94147,Entire home/apt,199,30,5,2018-03-24,0.09,52,339 +4341158,"Large, Cozy & Comfortable Apartment",22448247,Leatha,Brooklyn,East Flatbush,40.65337,-73.91229,Entire home/apt,100,3,62,2019-06-24,1.19,1,343 +4342895,The Perfect 1brm Apartment - Sunny & Spacious!,3800365,Mei-Ling,Brooklyn,Williamsburg,40.71874,-73.94055,Entire home/apt,123,3,21,2017-11-22,0.61,1,0 +4342924,Large Sunlight House,356690,LaToya,Brooklyn,Flatlands,40.62677,-73.9326,Entire home/apt,175,2,17,2018-08-27,0.49,1,0 +4343011,City Studio in the Upper East Side,3822369,Maria,Manhattan,Upper East Side,40.7681,-73.96018,Private room,100,4,14,2016-07-06,0.25,1,0 +4343312,Room For Rent,22548091,Cynthia,Manhattan,Harlem,40.80733,-73.95642,Private room,57,7,3,2019-07-06,0.22,2,222 +4343401,Room #1 Private Room,22384027,Shahana,Brooklyn,Crown Heights,40.67122,-73.91813,Private room,39,1,153,2019-06-14,2.66,10,178 +4343956,Large Spacious Room For Rent,22548091,Cynthia,Manhattan,Morningside Heights,40.8067,-73.95799,Private room,107,6,12,2019-01-03,0.47,2,251 +4347579,NY Duplex Apartment in Flatiron,22568643,Jose,Manhattan,Flatiron District,40.73956,-73.98774,Entire home/apt,2000,7,0,,,1,0 +4349695,Rustic Chic Private Living Room,22578720,Derek,Brooklyn,Flatbush,40.64507,-73.95933,Private room,69,1,33,2017-10-30,0.59,1,0 +4350120,Spacious 3-room apt. in prime area of Brooklyn.,21457707,Peter,Brooklyn,Greenpoint,40.72623,-73.94298,Entire home/apt,137,5,26,2019-05-06,1.16,1,344 +4350406,Studio apartment in heart East Village,1717520,Andrew,Manhattan,East Village,40.7239,-73.98312,Entire home/apt,150,5,0,,,2,0 +4350464,"LargeApt 1 BLOCK frm A,C,B,D,2,3",6697886,Mandy,Manhattan,Harlem,40.81588,-73.94591,Private room,65,3,1,2015-10-21,0.02,2,0 +4350495,Private Room for Rent,14194388,Michael,Manhattan,East Harlem,40.79008,-73.94766,Private room,66,4,1,2015-11-27,0.02,1,0 +4350952,Brooklyn Brownstone Clinton hill,5982086,Joshua,Brooklyn,Clinton Hill,40.68485,-73.9643,Private room,77,14,9,2017-11-24,0.16,1,0 +4351563,Rooftop Apt in Prospect Heights,16504161,Gung,Brooklyn,Prospect Heights,40.67757,-73.96412,Entire home/apt,110,3,8,2018-12-30,0.14,1,0 +4352537, Beautiful Room In Gramercy!!!,22595345,Abel,Manhattan,Gramercy,40.73541,-73.98061,Private room,64,26,47,2019-02-04,0.82,1,331 +4354764,A private humble abode for you,16572955,Sandra,Brooklyn,Canarsie,40.63969,-73.89548,Entire home/apt,90,2,112,2019-06-16,1.96,1,349 +4354901,Williamsburg Apt Flexible for December,14730409,Ken,Brooklyn,Williamsburg,40.70941,-73.94556,Private room,50,5,0,,,1,0 +4356396,Cozy Studio in a great neighborhood (Upper East),20539345,Husain,Manhattan,Upper East Side,40.7786,-73.95104,Entire home/apt,146,5,21,2019-03-24,1.01,1,0 +4357134,Beautiful NY Gem,7809661,Mamie,Queens,Ditmars Steinway,40.77172,-73.91769,Entire home/apt,200,1,0,,,1,0 +4357892,New!!! 4 BR/2 Bth in a private house.,22727798,Roman,Queens,Bay Terrace,40.77774,-73.78376,Entire home/apt,189,3,85,2019-06-15,1.88,1,330 +4358291,Stunning Brooklyn Brownstone,22622958,Wayne,Brooklyn,Park Slope,40.67761,-73.97667,Entire home/apt,985,2,20,2019-07-05,1.60,2,19 +4359219,Eagle-eye view of New York,20599015,Farrell,Brooklyn,Bedford-Stuyvesant,40.69103,-73.95441,Entire home/apt,285,2,37,2016-05-09,0.65,1,0 +4359718,Charming 2BD flt in Trendy Bushwick,841179,Treasure,Brooklyn,Bushwick,40.69584,-73.90794,Entire home/apt,140,3,122,2019-06-19,2.21,1,251 +4359756,"MANHATTANs BEST, 12minutes from TIMES SQUARE",2129777,Aj,Queens,Long Island City,40.75259,-73.94104,Private room,97,2,14,2019-04-20,0.55,2,90 +4359921,Bright Loft Style place in the best of ASTORIA,22240236,Tony & Lea,Queens,Astoria,40.7672,-73.91198,Entire home/apt,180,2,7,2018-12-19,0.31,1,90 +4362474,Adorable East Village 1 Bedroom,13481367,Anna,Manhattan,East Village,40.72841,-73.98231,Entire home/apt,199,2,10,2016-05-10,0.18,1,0 +4362570,Welcoming Park Slope Garden Apt.,19735589,Felicia,Brooklyn,Park Slope,40.67683,-73.97617,Entire home/apt,220,2,83,2019-04-29,1.48,1,253 +4363228,Magnificent Loft in East Village,3905383,Gillian,Manhattan,Lower East Side,40.71847,-73.98246,Entire home/apt,180,3,5,2018-10-09,0.13,1,226 +4364789,"Sunny Williamsburg, Brooklyn Studio",22656394,Julie,Brooklyn,Williamsburg,40.70874,-73.95439,Entire home/apt,88,14,5,2018-05-13,0.09,1,0 +4364924,Pre-War Gem in the heart of the UWS,22657141,Phin,Manhattan,Upper West Side,40.77859,-73.9816,Entire home/apt,350,4,0,,,1,0 +4365276,Entire 2BR APT (not a railroad),3081990,Amanda,Brooklyn,Williamsburg,40.70698,-73.95406,Entire home/apt,170,1,141,2019-06-22,3.05,1,28 +4365328,"Clean, cozy bedroom in sunny East Village/LES apt",2814004,Jasmine,Manhattan,East Village,40.72325,-73.98336,Private room,120,14,14,2015-10-25,0.24,2,0 +4365491,Cozy room in East Village,2814004,Jasmine,Manhattan,East Village,40.72242,-73.98262,Private room,105,2,9,2015-10-18,0.16,2,0 +4365756,Brownstone Parlor Floor Suite by Superhost!,22661286,Steef,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93678,Entire home/apt,110,2,192,2019-07-02,3.35,1,132 +4365765,Beautiful spacious bedroom,22661810,Marie,Brooklyn,East Flatbush,40.63213,-73.94598,Private room,55,4,10,2019-01-01,0.20,2,100 +4365833,"Lux Baby Friendly Apt, Williamsburg, Brooklyn",208410,Mauricio,Brooklyn,Williamsburg,40.71759,-73.95407,Entire home/apt,150,5,7,2019-02-18,0.12,1,0 +4366049,Sleeps 6 by Metro/Subway - 15 mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68204,-73.95642,Entire home/apt,180,3,50,2018-10-28,0.97,3,365 +4366115,Bright duplex apartment,14400653,Belinda,Brooklyn,Greenpoint,40.72668,-73.94728,Entire home/apt,110,2,4,2017-01-04,0.12,1,0 +4369737,"Bright 1 Bedroom, Perfect Location!",15154,Gloria,Manhattan,Upper West Side,40.78,-73.97793,Entire home/apt,160,3,5,2016-03-29,0.09,1,0 +4370230,"",22686810,Michaël,Manhattan,Nolita,40.72046,-73.9955,Entire home/apt,215,7,5,2016-01-02,0.09,1,0 +4375146,Beautiful & spacious apartment,22715031,Fernando,Queens,Astoria,40.76575,-73.92092,Private room,75,5,1,2014-11-10,0.02,1,0 +4375375,"Artsy 2 Bedroom Apt. in Harlem, NY",22716230,M. Johanne,Manhattan,East Harlem,40.80006,-73.9459,Entire home/apt,200,5,0,,,1,0 +4377337,Beautiful Railroad Style Apartment!,18893494,Leonella,Manhattan,East Harlem,40.79872,-73.9411,Entire home/apt,120,3,6,2019-06-18,0.96,1,279 +4377929,Spacious 1Br in East Village,7245580,David,Manhattan,East Village,40.72627,-73.98303,Entire home/apt,198,4,180,2019-06-18,3.22,1,269 +4378816,"Room in Bushwick Brooklyn NYC, LG KITCHEN & YARD",21902316,Amy,Brooklyn,Bushwick,40.70253,-73.92898,Private room,60,2,63,2019-06-17,1.68,2,352 +4378951,Child-friendly 2BR w/ Yard access and Free Parking,510577,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68578,-73.93965,Entire home/apt,170,3,207,2019-06-22,3.76,1,151 +4379145,specious 1bd apt on Saint Marks Pl,16598048,Yervand,Manhattan,East Village,40.72902,-73.98814,Entire home/apt,248,6,1,2014-11-02,0.02,1,0 +4379271,Spacious Bklyn Apt Near Manhattan,22738480,Aaron,Brooklyn,Cobble Hill,40.68874,-73.99855,Private room,100,8,1,2015-01-05,0.02,1,0 +4379307,"West Village Apt with patio, Steps from subway!",11742895,Jonathan,Manhattan,West Village,40.73858,-74.00145,Entire home/apt,180,2,1,2016-06-17,0.03,1,0 +4383734,Sunny room with private entrance,18674671,Lindsay,Brooklyn,Bushwick,40.69435,-73.91852,Private room,60,2,12,2016-12-19,0.21,1,0 +4384181,Livin' La Vida Brooklyn!!!,457976,Bellamy,Brooklyn,Bedford-Stuyvesant,40.69017,-73.93951,Entire home/apt,83,2,88,2019-06-30,4.66,1,165 +4384442,Bedroom in Crown Heights,7010789,Adriana,Brooklyn,Crown Heights,40.67054,-73.95668,Private room,45,2,1,2016-06-29,0.03,1,0 +4384820,N 6th & Bedford PRIME Williamsburg ,22764554,Linda,Brooklyn,Williamsburg,40.71797,-73.95981,Private room,135,1,1,2014-11-04,0.02,1,0 +4385360,Massive 1BR in the Lower East Side,7809712,Eliot,Manhattan,Lower East Side,40.71938,-73.98906,Entire home/apt,275,3,0,,,1,0 +4386513,"2 Bedroom Duplex, INCREDIBLE views! 30day discount",10556597,Dan,Manhattan,East Village,40.72478,-73.97771,Entire home/apt,230,3,12,2019-06-10,0.21,1,4 +4386598,1 Bedroom in Top Lower East Side Address,356933,Jessica,Manhattan,Lower East Side,40.71962,-73.98567,Entire home/apt,180,2,178,2019-07-01,3.11,1,227 +4386718,One bedroom near Central Park West,22502212,Kristen,Manhattan,Upper West Side,40.78749,-73.97087,Entire home/apt,175,21,1,2014-11-15,0.02,1,0 +4387007,Beautiful Beach & Great Space,21802126,Mark,Queens,Belle Harbor,40.57321,-73.85769,Private room,110,2,1,2019-06-23,1,1,325 +4387152,Petit chalet with secret garden,22262958,Kanae,Brooklyn,Williamsburg,40.71142,-73.95535,Entire home/apt,160,3,87,2019-06-19,1.63,1,302 +4387491,"Light Filled Spacious 1BR, with Cat",3597708,Brittan,Brooklyn,Bedford-Stuyvesant,40.68708,-73.9577,Entire home/apt,115,2,9,2015-09-06,0.16,1,0 +4390865,Upper East Side 1 Bedroom Gem,22688555,Marc,Manhattan,Upper East Side,40.77126,-73.95483,Shared room,169,2,3,2016-07-09,0.07,1,0 +4392066,one room bushwick,5605897,Sarah,Brooklyn,Williamsburg,40.70903,-73.9394,Private room,100,1,0,,,1,0 +4392351,MURRAY HILL! your home.. BEAUTIFUL,1475015,Mike,Manhattan,Kips Bay,40.74111,-73.97951,Entire home/apt,87,30,4,2018-08-12,0.09,52,325 +4392596,Great room in a 2 BD apartment,20820856,Waleed,Queens,Ditmars Steinway,40.77431,-73.9114,Private room,75,1,4,2019-05-26,1.85,1,0 +4392996,Heart of Upper West Side 1BR,844096,Joe,Manhattan,Upper West Side,40.78568,-73.97698,Entire home/apt,130,1,10,2016-09-23,0.19,1,0 +4393126,West Village - Charming Studio,22805263,Gena,Manhattan,West Village,40.7322,-74.00423,Entire home/apt,115,30,7,2017-03-08,0.13,1,251 +4393502,Attic Space - 三楼阁楼,21228368,Jessica,Queens,Forest Hills,40.7132,-73.84901,Private room,50,1,1,2015-08-10,0.02,5,183 +4393519,Penthouse for 4th of July Weekend,6032373,Vyacheslav,Manhattan,Hell's Kitchen,40.7659,-73.99543,Entire home/apt,200,2,2,2015-01-02,0.04,1,0 +4393628,Double-deck bed room 别墅二楼卧房,21228368,Jessica,Queens,Forest Hills,40.71233,-73.84848,Private room,55,1,13,2016-12-01,0.23,5,281 +4394687,Upper East Side Studio,10952317,Angela,Manhattan,Upper East Side,40.77626,-73.95246,Entire home/apt,125,1,7,2016-10-03,0.13,1,0 +4396142,Entirely private suite in our townhouse!,1167801,Pascal & Karin,Queens,Long Island City,40.75227,-73.95012,Entire home/apt,160,4,79,2019-06-30,1.38,1,133 +4396299,"Cozy Private Bedroom, Brooklyn NY.",22384027,Shahana,Brooklyn,Brownsville,40.66938,-73.91831,Private room,39,1,158,2019-06-24,2.77,10,32 +4396939,Private Room in Midtown Manhattan,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76049,-73.99569,Private room,89,4,56,2019-06-01,0.98,2,301 +4397455,Quiet 2 bedroom retreat in the heart of Brooklyn,5912357,Gina,Brooklyn,Canarsie,40.63269,-73.90358,Entire home/apt,85,4,60,2019-06-22,1.12,1,247 +4399721,Bedroom in Beautiful Brooklyn Loft,22840018,Emily,Brooklyn,Crown Heights,40.67828,-73.96228,Private room,50,1,4,2019-03-25,0.11,1,0 +4401013,3BR/2BA Duplex - 1min to subway!,2007928,Erin,Brooklyn,Bedford-Stuyvesant,40.67849,-73.91672,Entire home/apt,229,2,195,2019-06-24,3.41,1,254 +4401193,"Private Studio, Columbia University",22205787,Adrien,Manhattan,Morningside Heights,40.80699,-73.95937,Entire home/apt,130,4,4,2015-09-26,0.07,1,0 +4402117,GORGEOUS 2 Bedroom in Queens NYC,22780462,Mark,Queens,Kew Gardens Hills,40.72891,-73.82588,Entire home/apt,149,3,82,2019-06-23,1.55,2,327 +4402805,LRG 2br BKLYN APT CLOSE TO TRAINS AND PARK,22807362,Jenny,Brooklyn,Prospect-Lefferts Gardens,40.66025,-73.9627,Entire home/apt,120,3,3,2018-08-28,0.05,1,16 +4403159,Cute bedroom in Williamsburg,13061093,Priscillia,Brooklyn,Williamsburg,40.70953,-73.95994,Private room,45,1,1,2016-03-16,0.02,1,0 +4403928,Modern Apt Close to Manhattan,2558779,Marina,Queens,Ridgewood,40.70216,-73.90716,Private room,56,3,45,2019-06-15,0.88,2,304 +4403972,Upper east doorman,22860848,Seth,Manhattan,Upper East Side,40.77891,-73.9484,Entire home/apt,295,6,0,,,1,0 +4404544,"Beautiful, bright, quiet room w/ private bathroom",22864208,Rustam,Brooklyn,Bushwick,40.69703,-73.93207,Private room,75,2,53,2019-06-17,1.23,1,340 +4404818,Bountiful Space and Cozy Home,2909990,Daniel,Manhattan,Washington Heights,40.85104,-73.93617,Entire home/apt,110,7,0,,,1,0 +4405156,CHEAP & CONVENIENT,5787701,Christine,Manhattan,East Harlem,40.78802,-73.95026,Entire home/apt,115,4,68,2019-06-25,1.20,1,10 +4405874,Master room super clean in Prospect Park!!!! :),2770375,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95414,Private room,90,4,12,2019-06-10,0.37,1,365 +4407787,"Clean Charming, Walk-In Closet + Garden",22880393,Sara,Manhattan,Lower East Side,40.71287,-73.98685,Private room,109,3,83,2019-06-02,1.57,2,355 +4407790,Retreat Room,16286162,Pat,Bronx,Allerton,40.86682,-73.85812,Private room,49,2,42,2019-06-21,0.74,4,227 +4408381,Apartment Crown Heights Brooklyn NY,263500,Claire,Brooklyn,East Flatbush,40.66428,-73.92911,Entire home/apt,100,1,102,2019-06-16,1.85,2,243 +4409074,Spacious 3BDR Prime Location!,22886115,Kristen,Manhattan,East Village,40.73112,-73.98572,Entire home/apt,295,2,4,2016-08-24,0.09,1,0 +4410626,Spacious neo-country seaside loft,22893493,Nick,Brooklyn,Red Hook,40.68039,-74.01729,Entire home/apt,245,1,50,2019-06-02,0.92,1,19 +4412533,cozy tucked away in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79765,-73.94022,Private room,79,3,56,2019-05-27,1.10,2,90 +4415695,Cozy Room in Classic NY Apt//Lively Midtown Area,10074473,Dominique,Manhattan,Hell's Kitchen,40.76638,-73.98741,Private room,60,1,22,2018-02-10,0.63,1,0 +4416667,"Quiet Brooklyn Hideaway, At the Subway",980118,Alex,Brooklyn,Bedford-Stuyvesant,40.69024,-73.95197,Entire home/apt,125,3,7,2018-07-16,0.12,1,0 +4416970,Soaring Space in Laid-back Brooklyn,22628166,Caroline,Brooklyn,Bushwick,40.69787,-73.93202,Private room,55,1,8,2016-08-20,0.17,1,0 +4417147,New year in New York City,22927481,Howard,Manhattan,Midtown,40.76564,-73.98013,Private room,425,7,1,2015-01-02,0.02,3,0 +4417912,Huge Apartment on Prospect Park,21571748,Chad,Brooklyn,Windsor Terrace,40.65783,-73.97501,Entire home/apt,150,14,1,2016-08-17,0.03,1,0 +4421355,Your own apartment in Brooklyn!,16744487,Estelle,Brooklyn,Bedford-Stuyvesant,40.69367,-73.93981,Entire home/apt,130,5,0,,,1,0 +4421826,Manhattan Studio,22927646,Chad,Manhattan,Upper East Side,40.77371,-73.95007,Entire home/apt,250,1,0,,,1,0 +4422017,"Private Spacious Rm, Prospect Park",22954228,Cassandra,Brooklyn,Flatbush,40.65339,-73.962,Private room,49,3,7,2016-01-06,0.12,2,0 +4422602,East Village Walkup Jam,651770,Mark,Manhattan,East Village,40.72801,-73.98336,Entire home/apt,250,3,0,,,1,0 +4423650,Private Room - Central Park View,7183243,Annette,Manhattan,Upper West Side,40.79913,-73.95932,Private room,97,2,114,2019-06-24,2.00,1,363 +4423782,Large studio in trendy Harlem,22963957,Travis,Manhattan,Harlem,40.80479,-73.9529,Entire home/apt,115,1,8,2016-04-12,0.16,1,0 +4424261,Large 1 BR with backyard on UWS,3447311,Sarah,Manhattan,Upper West Side,40.80188,-73.96808,Entire home/apt,200,2,22,2019-05-21,0.50,1,0 +4424391,Cozy Studio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.78278,-73.9482,Entire home/apt,250,30,4,2018-05-15,0.07,9,311 +4424405,Lovely 2 BR Upper East NYC - 1 month min,15310997,Mor,Manhattan,Upper East Side,40.78368,-73.94942,Entire home/apt,200,30,8,2018-09-05,0.14,9,336 +4424511,"Great location, cozy, near F, G, R!",3641595,Deirdre,Brooklyn,Park Slope,40.67099,-73.98791,Entire home/apt,160,1,323,2019-06-22,5.81,1,211 +4426780,Convenient Harlem studio,22980167,Maria,Manhattan,Harlem,40.81613,-73.93765,Entire home/apt,90,30,20,2019-06-01,0.36,1,249 +4426877,"Sunny 2BR, 2BA duplex",11636894,Gena,Brooklyn,Fort Greene,40.68499,-73.97403,Entire home/apt,239,3,19,2018-12-25,0.33,1,257 +4427442,Large Apt. in NYC w/natural light,22984252,Toby,Manhattan,Washington Heights,40.85083,-73.94093,Entire home/apt,290,4,21,2019-01-03,0.37,1,193 +4428027,True Brooklyn Loft Experience ,10396079,Anissa,Brooklyn,Prospect Heights,40.67734,-73.96814,Entire home/apt,150,6,5,2016-01-01,0.09,1,0 +4428854,Charming Furnished Private Room,1447684,Rosa,Brooklyn,Greenpoint,40.72951,-73.95525,Private room,55,1,75,2019-06-19,1.52,3,173 +4428906,Family Friendly Park Slope House,2119928,Rachael,Brooklyn,South Slope,40.66421,-73.98706,Entire home/apt,380,4,7,2018-08-29,0.12,1,62 +4429337,"Large, stylish & sun-filled 1BDRM loft",1728899,Tanya,Brooklyn,Williamsburg,40.70789,-73.94811,Entire home/apt,120,2,19,2019-07-06,1.82,1,11 +4430645,Brooklyn Townhouse Duplex,819257,Nina,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95225,Entire home/apt,200,7,0,,,1,0 +4430657,Coming soon,22992909,Joshua,Brooklyn,Carroll Gardens,40.68592,-73.99285,Private room,188,2,0,,,1,0 +4430747,Adorable 1Bd Next to Subway in Bushwick - Brooklyn,747934,Lia,Brooklyn,Bedford-Stuyvesant,40.69175,-73.92834,Entire home/apt,103,2,5,2019-01-03,0.09,1,211 +4430808,Studio-Private Entrance /Bath/Kitchen Near JFK,23002099,Sol & Izak,Queens,Jamaica Estates,40.71873,-73.80324,Entire home/apt,64,2,192,2019-06-17,3.47,1,234 +4430819,Prime East Village One Bedroom Apt!,23002143,Amanda,Manhattan,East Village,40.72847,-73.98682,Entire home/apt,195,5,3,2015-08-03,0.05,1,0 +4431247,1st Time/Solo/Duo Travelers!Charming Studio Share!,22382732,Sue,Manhattan,Chelsea,40.74726,-74.00213,Shared room,70,2,126,2019-06-29,2.61,1,309 +4431674,HOME AWAY FROM HOME,21841949,Patwell,Manhattan,Harlem,40.80066,-73.95147,Entire home/apt,150,2,36,2018-11-06,0.78,2,0 +4435766,West Village - Celebrities + LIGHT,23025661,Lee,Manhattan,West Village,40.73191,-74.00679,Entire home/apt,300,3,0,,,1,0 +4436185,Charming Park Slope Studio Sublet,3708965,Nicole,Brooklyn,Sunset Park,40.66063,-73.98894,Entire home/apt,60,1,0,,,1,0 +4436944,COMFORTABLE & COZY-2 STOPS BARCLAY,21841949,Patwell,Brooklyn,Crown Heights,40.66825,-73.95304,Private room,150,7,21,2019-06-10,0.54,2,292 +4437053,Sunlit 1 bedroom in NoLita,23030943,Kristin,Manhattan,Nolita,40.72144,-73.99435,Private room,105,1,102,2019-06-16,1.79,1,362 +4438029,Chelsea High End Apartment,974868,Jackie,Manhattan,Chelsea,40.74635,-73.99604,Entire home/apt,360,3,28,2019-04-22,0.50,1,128 +4438223,Hip 1 bedroom in perfect location,22606202,Gerald,Manhattan,Harlem,40.80743,-73.95663,Private room,165,2,6,2019-01-02,0.12,1,363 +4438459,Gorgeous 1 Bedroom in the heart of NYC: Chelsea,4967319,Jessica,Manhattan,Chelsea,40.73974,-73.99985,Entire home/apt,325,2,19,2016-09-08,0.34,1,0 +4438470,Home away from home East Village ,3289567,Campbell,Manhattan,East Village,40.72607,-73.98045,Private room,105,2,9,2017-11-19,0.19,2,191 +4438931,FURNISHED CHARMING ROOM IN MANHATTA,1405374,Jane,Manhattan,Inwood,40.86626,-73.92543,Private room,57,4,0,,,1,4 +4439602,East Village Bedroom,14612223,Alex,Manhattan,East Village,40.72624,-73.99018,Private room,100,6,10,2019-07-01,0.61,1,200 +4439839,Entire 3BR Private Apt 20min>Manhattan,23044811,Ettrick,Brooklyn,Bedford-Stuyvesant,40.68687,-73.94518,Entire home/apt,129,2,179,2019-06-16,3.14,2,285 +4440020,2 Bedrooms and One Bath Room,195137,James,Manhattan,Harlem,40.82272,-73.94942,Entire home/apt,229,5,38,2019-06-03,0.75,2,332 +4440181,One bedroom in 2 bedroom apartment,23046908,Melissa,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95952,Private room,64,1,14,2018-11-05,0.28,1,0 +4440611,Bright Spacious Bushwick Home,14546480,Irena,Brooklyn,Bushwick,40.7026,-73.92787,Entire home/apt,100,3,4,2016-06-04,0.08,1,0 +4440751,Entire Amazing Chic Studio @ Lower East,3716641,Ofer,Manhattan,Lower East Side,40.72169,-73.98773,Entire home/apt,99,30,21,2019-03-11,0.38,8,52 +4444204, 2-3 bedroom UWS garden triplex ,5162192,Amy,Manhattan,Upper West Side,40.79795,-73.96175,Entire home/apt,300,30,4,2015-10-06,0.07,12,310 +4445185,2 Level Loft room in Artist Studio,7351,Tanda,Brooklyn,South Slope,40.66483,-73.98892,Private room,84,2,11,2018-09-04,0.20,3,87 +4446178,Bright & big apt 3 blks from subway,946323,Ran,Brooklyn,Flatbush,40.63826,-73.96815,Entire home/apt,125,3,6,2016-07-08,0.11,1,0 +4446862,Charming Room in Prospect Heights!,23077718,,Brooklyn,Crown Heights,40.67512,-73.96146,Private room,50,1,0,,,1,0 +4447524,Charming West Village Studio,9685363,Ceyda,Manhattan,West Village,40.73634,-74.00841,Entire home/apt,200,2,9,2018-05-19,0.16,1,0 +4447611,1 BR in Gramercy Park,10471097,Jared,Manhattan,Gramercy,40.73577,-73.98455,Entire home/apt,350,1,0,,,1,0 +4447904,Beautiful Upper West Side,23083111,Michael,Manhattan,Upper West Side,40.77783,-73.9815,Entire home/apt,80,30,5,2018-08-12,0.09,1,180 +4449058,Cozy Private Room in Upper WestSide,23089516,Lisa,Manhattan,Harlem,40.81693,-73.95421,Private room,180,1,26,2019-06-25,0.47,1,0 +4449559,Very Bright Modern Apartment 2 Mins from Manhattan,23092836,Gary,Bronx,Concourse,40.82636,-73.92655,Entire home/apt,105,30,18,2019-06-02,0.48,1,52 +4449611,Big Duplex 1 BR/Loft w/ outdoors,16761703,Michael,Brooklyn,Bushwick,40.69796,-73.93124,Entire home/apt,200,7,0,,,1,0 +4450020,Entire One Bedroom apartment,23095202,Victoria,Brooklyn,East Flatbush,40.63395,-73.94772,Entire home/apt,100,2,1,2018-10-07,0.11,2,363 +4452723,Cozy 2BR apartment,2050338,Verena,Queens,Richmond Hill,40.69947,-73.82795,Entire home/apt,90,30,11,2019-03-04,0.20,3,189 +4453233,Cozy Hells Kitchen/Times Sq 2BR,5827529,Ariel,Manhattan,Hell's Kitchen,40.76221,-73.99028,Entire home/apt,160,1,8,2015-10-18,0.14,1,0 +4453484,Prime Artist Loft & Exposed Brick,2166065,Peter,Brooklyn,Williamsburg,40.71909,-73.95897,Entire home/apt,250,2,103,2019-06-20,1.87,1,315 +4454122,Cozy Harlem Hideaway **,1390414,Loryn,Manhattan,Harlem,40.81071,-73.94433,Entire home/apt,115,2,84,2019-06-18,1.51,1,50 +4454400,NYC UES charming 1 bedroom,454009,Nicholas,Manhattan,Upper East Side,40.77481,-73.95562,Entire home/apt,250,2,0,,,1,0 +4454538,"Bright, Spacious Entire Studio",22552201,Lane,Manhattan,Upper West Side,40.7982,-73.97119,Entire home/apt,130,5,9,2015-12-31,0.16,1,0 +4455094,West Village Style and Charm,13541655,Michael,Manhattan,West Village,40.73014,-74.00754,Private room,159,2,150,2019-06-28,3.19,1,54 +4455301,Pretty and Private in Clinton Hill,8490286,Jan,Brooklyn,Clinton Hill,40.68653,-73.96412,Entire home/apt,110,3,189,2019-07-01,3.40,1,268 +4456004,Spacious Bedroom in Bushwick w/AC,1171707,Gabriel,Brooklyn,Bushwick,40.70112,-73.91201,Private room,60,3,4,2016-06-12,0.09,1,0 +4456312,Large Cheerful Private Bronx Room for Med Students,3551179,Veralisa,Bronx,Kingsbridge,40.87829,-73.89337,Private room,57,3,20,2019-06-30,0.43,1,311 +4456555,Entire flr-thru 2bdrm apartment near ProspectPark!,747671,Sarah Jazmine,Brooklyn,South Slope,40.66347,-73.98438,Entire home/apt,180,1,7,2017-01-01,0.12,1,0 +4456880,Superhost 3 bedroom DISCOUNT,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69725,-73.94908,Entire home/apt,250,1,4,2016-02-29,0.07,4,165 +4457556,cozy queen for 2 in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79849,-73.93843,Private room,92,3,48,2019-06-17,0.94,2,115 +4460838,The Elizabeth,14758012,Stéphane,Manhattan,Nolita,40.72421,-73.99304,Entire home/apt,195,3,66,2018-04-15,1.24,1,0 +4462008,Twin room,16286162,Pat,Bronx,Allerton,40.86814,-73.85874,Private room,47,2,97,2019-06-12,1.81,4,262 +4462491,Beautiful Loft in LES Manhattan!,302529,Cynthia,Manhattan,Lower East Side,40.71331,-73.98189,Entire home/apt,175,3,2,2015-12-08,0.05,1,0 +4462553,Greenwich / West Village 2 Bedroom,15778416,Courtney,Manhattan,West Village,40.73066,-74.00371,Entire home/apt,175,1,0,,,2,0 +4464418,Charming 1BD Pre-War Apartment ,6526979,Kim,Manhattan,Upper West Side,40.78962,-73.97718,Entire home/apt,165,2,9,2015-05-19,0.16,1,0 +4464508,Flatbush Gardens,23162890,Terrance,Brooklyn,Flatbush,40.6489,-73.96374,Private room,79,3,35,2018-10-28,0.62,2,336 +4467771,Beautiful Chelsea 2 Bedroom apt,23178728,SabinaAndTahir,Manhattan,Chelsea,40.74998,-73.99772,Entire home/apt,345,7,95,2019-06-29,1.70,1,13 +4469264,Cute brick wall Br in Williamsburg.,10304755,Michael,Brooklyn,Williamsburg,40.71156,-73.95826,Private room,80,2,108,2019-06-01,1.93,2,4 +4469650,Huge 5BR Townhouse - LEGAL NYC B&B!,23189353,Elizabeth,Manhattan,Harlem,40.80521,-73.94519,Entire home/apt,300,4,143,2019-06-23,2.56,1,204 +4469679,Sunny Lower East Side Penthouse,19336493,Ryan,Manhattan,Lower East Side,40.71777,-73.99011,Entire home/apt,325,4,0,,,1,0 +4470423,Large One Bedroom near Union square,5838331,Katie,Manhattan,Gramercy,40.73549,-73.98311,Entire home/apt,249,1,0,,,1,0 +4471513,The Ultimate Luxury!,3740730,S,Manhattan,Theater District,40.75607,-73.98593,Entire home/apt,699,6,186,2019-07-05,3.27,2,254 +4472904,Dorm Sz Room. Near 2 & 5 train 180 st Bronx zoo,1532337,Monica,Bronx,Van Nest,40.8423,-73.87055,Private room,25,30,6,2019-05-28,0.17,4,219 +4472978,Charming Studio in a Great location,5800619,Catia,Manhattan,Hell's Kitchen,40.75531,-73.99945,Entire home/apt,195,1,136,2019-07-05,2.94,1,203 +4473156,"NYC,Modern and Spacious Apt",23208658,Iryna,Manhattan,East Harlem,40.8002,-73.94079,Entire home/apt,165,2,146,2019-06-22,2.60,3,277 +4475128,Amazing Single Bedroom Only 5min From Central Park,16066343,Curtis,Manhattan,East Harlem,40.78834,-73.9472,Private room,65,2,219,2019-06-28,3.88,2,35 +4476605,Great 4 Families Near Parade + Park,23226529,Marc,Manhattan,Upper West Side,40.77706,-73.98407,Entire home/apt,550,4,0,,,1,0 +4476945,Modern Brownstone in Harlem,23228839,Tiffany,Manhattan,Harlem,40.81056,-73.94627,Entire home/apt,149,3,28,2019-05-19,0.50,1,329 +4479556,Amazing convenient 5 min to city,23243453,Rodney,Queens,Long Island City,40.74681,-73.94586,Entire home/apt,225,1,1,2015-01-04,0.02,1,0 +4479625,"Charming 1 bedroom, great location!",2380912,Helen,Brooklyn,Williamsburg,40.71234,-73.94158,Entire home/apt,135,2,0,,,1,0 +4479632,Charming duplex garden flat in SoHo,20431437,Richard,Manhattan,SoHo,40.72736,-74.00192,Entire home/apt,495,30,159,2019-06-12,2.83,1,129 +4480308,"Charming, Sunny Downtown Studio",5152761,Jane,Manhattan,Chinatown,40.71759,-73.9922,Entire home/apt,200,2,23,2016-10-24,0.41,1,0 +4480793,B's Suite,23249630,Sheila,Brooklyn,Bedford-Stuyvesant,40.68256,-73.94326,Entire home/apt,125,3,24,2019-06-19,0.44,2,69 +4481427,1BR w/ Large Patio on Ridgewood/Bushwick border.,1816417,Raoul,Queens,Ridgewood,40.69945,-73.90651,Entire home/apt,95,4,44,2019-07-01,0.81,1,271 +4481474,B's Elegant Parlor Suite,23249630,Sheila,Brooklyn,Bedford-Stuyvesant,40.68339,-73.9422,Entire home/apt,135,3,15,2019-07-02,0.27,2,89 +4481694,*NEW* Modern Sunny Loft in Bushwick/Brooklyn,567972,Melanie,Brooklyn,Bushwick,40.69815,-73.93616,Entire home/apt,120,3,4,2017-01-06,0.08,1,157 +4482158,Lovely and Spacious Park Slope Home,23256032,Katharine,Brooklyn,Park Slope,40.66767,-73.9828,Entire home/apt,160,14,1,2015-01-04,0.02,1,36 +4482584,Private & clean 1 bd/1br Willamsburg w/ roofdeck.,304346,Andy,Brooklyn,Williamsburg,40.71498,-73.96437,Entire home/apt,225,2,0,,,1,0 +4482783,"❤️ of Wburg, Private Living+Entrance",1869332,Elli,Brooklyn,Williamsburg,40.7188,-73.95775,Private room,139,2,6,2017-07-29,0.12,3,36 +4483117,Large private br in renovated apt/close to subway,23159248,Christie,Manhattan,Upper East Side,40.77473,-73.94859,Private room,69,2,11,2019-01-10,0.19,1,240 +4483517,Stunning room. 15mins to Manhattan!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92508,Private room,100,30,2,2015-04-28,0.04,4,7 +4483672,Warm and Cozy Room in Harlem,17065184,Fallon,Manhattan,Harlem,40.80743,-73.94256,Private room,71,3,211,2019-07-05,3.72,1,6 +4484212,King size bed -Private bdrm,21938150,Niraj,Manhattan,Gramercy,40.7373,-73.98392,Private room,250,1,4,2015-09-16,0.08,1,365 +4484620,Large Sunny Private Room in 2BR steps from subway,2589436,Sarah,Brooklyn,Williamsburg,40.71594,-73.95649,Private room,70,2,15,2018-03-23,0.29,2,0 +4484899,Classic East Village Studio,8713930,Zane,Manhattan,East Village,40.72908,-73.97901,Entire home/apt,225,1,0,,,1,0 +4485286,Luxury Apartment on Wall Street,14138135,Sabir,Manhattan,Financial District,40.70388,-74.00633,Entire home/apt,170,1,2,2015-08-03,0.04,1,0 +4488882,Lovely Garden Apartment in Bklyn,23287601,Petal,Brooklyn,Flatlands,40.62598,-73.92509,Entire home/apt,125,3,2,2016-09-21,0.05,1,161 +4490268,Elegant Bushwick Apartment,23293704,Su-Ling,Brooklyn,Bushwick,40.68488,-73.91225,Entire home/apt,139,2,190,2019-07-04,4.15,1,218 +4491140,Tranquility in The Heart of Astoria,15823911,Rand,Queens,Long Island City,40.76063,-73.92801,Private room,69,1,0,,,1,0 +4492303,"Bright 1 bdrm apt near Central Park, shops & metro",7567309,Susan,Manhattan,Upper West Side,40.78137,-73.98183,Entire home/apt,199,2,19,2019-05-20,0.35,1,0 +4492678,Heart of the East Village- Best Loc,18601618,Chris,Manhattan,East Village,40.72724,-73.98639,Entire home/apt,175,1,2,2015-01-06,0.04,1,0 +4492821,"Great location, spacious apt.",743716,Santiago,Brooklyn,Boerum Hill,40.68348,-73.98087,Entire home/apt,120,3,3,2016-01-05,0.05,1,0 +4493474,Cozy Bedroom in best area of FiDi,5777821,Denis,Manhattan,Financial District,40.70428,-74.00952,Private room,100,5,2,2016-01-01,0.04,1,0 +4493526,"Amazing Location, Incredible Space",23308381,Priya,Manhattan,West Village,40.73647,-73.99814,Private room,150,1,0,,,1,0 +4493658,Cute & Modern 1 Bedroom Apt,1869421,David,Brooklyn,Williamsburg,40.71256,-73.94188,Entire home/apt,100,8,14,2016-03-24,0.25,1,0 +4494217,Stylish West Village Artists Penthouse Loft,22720650,Duane,Manhattan,West Village,40.73604,-74.0056,Entire home/apt,130,30,1,2018-12-24,0.15,2,0 +4494588,Cosy apartment in the East Village,23314412,Olivia,Manhattan,East Village,40.72347,-73.98116,Entire home/apt,150,5,0,,,1,0 +4494705,1 bedroom in Brooklyn,11228023,Danielle,Brooklyn,Sunset Park,40.65188,-74.00611,Private room,50,30,2,2017-06-27,0.04,1,0 +4497294,"Clean, quiet, safe 25Min Dwntn NYC",22831759,Ruth,Brooklyn,Flatbush,40.64617,-73.97018,Private room,80,2,11,2015-10-11,0.19,1,0 +4497963,Iconic West Village Apartment,10225905,Kym,Manhattan,West Village,40.73474,-74.00867,Entire home/apt,250,2,0,,,1,0 +4498688,"Large, Immaculate Brooklyn 2 BR apt, sleeps 4-5",12881527,Tanya,Brooklyn,Bedford-Stuyvesant,40.684,-73.95002,Entire home/apt,227,1,17,2018-08-27,0.31,1,362 +4498927,Manhattan townhouse near subway,23334165,Patricia,Manhattan,Harlem,40.82257,-73.94543,Entire home/apt,300,5,91,2019-06-21,1.65,3,288 +4499097,Upper West Side Studio doorman bld,23334541,Josh,Manhattan,Upper West Side,40.77998,-73.98462,Entire home/apt,130,2,17,2019-05-27,0.37,1,2 +4499976,Large Sunny 2 Bedroom + den - UWS,23338742,Aneela,Manhattan,Upper West Side,40.78878,-73.97386,Entire home/apt,225,30,17,2018-06-15,0.31,1,179 +4500272,"HUGE STUDIO-Cozy,Centrally Located!",2829908,Rahul,Manhattan,Murray Hill,40.74685,-73.97598,Entire home/apt,149,2,1,2016-01-01,0.02,1,0 +4500615,"Chelsea, balcony and 2 bedrooms!",6519939,Raj,Manhattan,Chelsea,40.75005,-73.99718,Entire home/apt,320,3,0,,,1,0 +4500794,"Sunny/artistic, Manhattan 2 bedroom",23342156,Shelby,Manhattan,Washington Heights,40.83714,-73.93713,Private room,75,1,9,2016-05-06,0.20,1,0 +4500897,Cozy Brooklyn Apartment!,2781725,Julia,Brooklyn,Kensington,40.64687,-73.98182,Entire home/apt,115,7,6,2018-08-19,0.11,1,183 +4501164,Union Square Apartment + Private Backyard,17074459,Mattan,Manhattan,East Village,40.73325,-73.98789,Private room,97,3,64,2017-07-24,1.15,3,0 +4502339,Centrak Park North cozy apartment,23349530,Yely,Manhattan,Harlem,40.80204,-73.95656,Shared room,80,1,0,,,1,59 +4502545,XL off Fifth Avenue & Central Park,23084155,Stefani,Manhattan,Upper East Side,40.7671,-73.96968,Entire home/apt,275,2,20,2019-01-02,0.45,1,0 +4503472,Park Slope Home away from Home,23353897,Barbara,Brooklyn,Park Slope,40.66763,-73.98156,Entire home/apt,163,4,58,2019-05-29,1.38,1,132 +4504049,Blissfully Quiet Room,16151285,Carol,Bronx,Williamsbridge,40.87896,-73.84978,Private room,55,28,27,2019-05-28,0.53,4,338 +4504353,"Sunny, Artsy Brooklyn Room",1607087,Iyabo,Brooklyn,Crown Heights,40.6771,-73.95994,Private room,75,2,2,2015-11-15,0.04,1,0 +4504493,Studio Apartment- Furnished,10303277,Alexis,Brooklyn,Fort Greene,40.69059,-73.97853,Entire home/apt,110,5,0,,,1,0 +4507262,Luxurious Village 1 bed!,2282450,Philip,Manhattan,West Village,40.73553,-74.00546,Entire home/apt,247,2,21,2018-05-02,0.41,2,173 +4508885,Upper West Apartment Block Away from Central Park!,301549,Michelle,Manhattan,Upper West Side,40.76885,-73.98254,Entire home/apt,180,14,0,,,1,0 +4509357,Clean-Cozy-Beside 3 train station,15313939,Jeremy,Manhattan,Harlem,40.82412,-73.93872,Private room,69,1,22,2017-01-03,0.47,1,365 +4509500,Prime Chelsea~XL1Br~Terrace~Sleeps4,2119276,Host,Manhattan,Chelsea,40.73984,-74.0006,Entire home/apt,150,30,7,2019-06-14,0.15,39,339 +4509560,Reno Studio Gramercy~Sleeps3!,2119276,Host,Manhattan,Gramercy,40.73505,-73.98212,Entire home/apt,140,30,9,2018-08-11,0.17,39,344 +4509664,2BR - Great West Village Location,23383529,Joseph,Manhattan,West Village,40.73277,-74.00413,Entire home/apt,205,2,6,2016-03-27,0.13,1,0 +4512045,Beautiful Exposed Brick Studio Loft,13282162,Manuel,Manhattan,Upper West Side,40.78294,-73.98474,Entire home/apt,148,3,35,2019-07-01,0.63,1,207 +4512093,manhattan (UWS) townhouse,11760806,Raj,Manhattan,Upper West Side,40.79994,-73.97001,Private room,299,1,1,2019-05-23,0.64,1,88 +4512329,Spacious Room in Sugar Hill,16685925,Douglas,Manhattan,Washington Heights,40.83089,-73.94125,Private room,49,3,3,2016-07-14,0.05,2,0 +4513084,Beautiful Sunny Private Penthouse Suite,23401472,Heather,Manhattan,Harlem,40.82624,-73.94527,Entire home/apt,150,30,1,2016-07-30,0.03,2,244 +4513190,Beautiful 1 Bedroom Apt,23401743,Ticemen,Manhattan,East Harlem,40.79917,-73.93995,Entire home/apt,195,2,0,,,1,0 +4514042,Bushwick Duplex 1,3709510,Deacon,Brooklyn,Bushwick,40.69213,-73.92371,Private room,80,1,4,2019-05-28,0.34,3,342 +4516766,"Large, Luxury Bedroom nr JMZ subway",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93467,Private room,68,5,81,2019-06-07,1.47,6,83 +4516939,"Zen Oasis in Bushwick, near JMZ Subways",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93427,Private room,72,5,89,2019-05-22,1.65,6,322 +4517117,BELLA CASA-Pvt Rm-2 beds-Sleeps 4. Near Columbia!!,16480700,Eddie&Vlad,Manhattan,Harlem,40.82014,-73.95433,Private room,97,2,146,2019-06-10,2.59,7,83 +4517177,1 bedroom apt 1 stop from Manhattan,23419852,Gazelle,Queens,Long Island City,40.74236,-73.95641,Entire home/apt,170,2,84,2019-05-28,1.51,1,178 +4517848,"Landmark 1 Bedroom has 2 beds, Free WiFi",7245581,Michael,Manhattan,Washington Heights,40.83335,-73.94048,Entire home/apt,67,74,7,2018-08-31,0.14,19,251 +4518242,Zen MiniPalace Astoria,23424461,Alex,Queens,Astoria,40.76369,-73.91601,Entire home/apt,80,1,3,2016-01-02,0.05,1,0 +4519764,Private Space in Manhattan 8/25-9/9,16310013,Tan,Manhattan,Washington Heights,40.85181,-73.93824,Private room,29,7,0,,,1,0 +4520113,"Lovely - Spacious, Garden + Garden View",22880393,Sara,Manhattan,Lower East Side,40.71452,-73.9871,Private room,120,3,66,2019-06-15,1.27,2,295 +4520449,"Spacious 1 Bedroom in Midwood, BK!",9196903,George,Brooklyn,Midwood,40.62403,-73.9618,Private room,100,1,0,,,1,0 +4520941,"SPACIOUS, 2 bedrooms, sleeps 4, private bath",23439479,Victoria,Manhattan,Inwood,40.86644,-73.92677,Private room,250,3,18,2018-10-29,0.35,2,336 +4523324,Large private 2 bedroom near Union Sq .,20019392,Shirley,Manhattan,East Village,40.73337,-73.98828,Private room,200,2,109,2019-06-21,2.15,1,336 +4524289,Private room in South Slope,2138902,Asher,Brooklyn,Gowanus,40.66694,-73.99299,Private room,90,1,0,,,1,0 +4525475,"Manhattan, UWS, Bright, 1BR, & Loft",12149644,Brandon,Manhattan,Upper West Side,40.78304,-73.98146,Entire home/apt,125,1,0,,,1,0 +4525589,Spacious studio apt in Jackson Hts,20627511,Mark,Queens,Jackson Heights,40.75034,-73.89215,Entire home/apt,90,3,0,,,1,0 +4530085,Cosy East Village apartment!,2277244,Victoria,Manhattan,East Village,40.72949,-73.97894,Entire home/apt,180,1,2,2016-05-28,0.05,1,0 +4530154,Park Slope Sky Parlor,3201774,Ashley,Brooklyn,South Slope,40.66388,-73.9905,Private room,53,1,105,2019-06-21,2.11,2,137 +4530160,Large apt in heart of Williamsburg,9997747,Devon,Brooklyn,Williamsburg,40.71906,-73.95798,Entire home/apt,200,3,7,2016-06-27,0.12,1,0 +4530432,Landmark Parlor Studio near train has 2 beds.,7245581,Michael,Manhattan,Washington Heights,40.83488,-73.93843,Entire home/apt,66,180,7,2018-12-16,0.14,19,330 +4531802,Sunny East Village 1 Bedroom,6197480,Christine,Manhattan,East Village,40.72568,-73.98823,Entire home/apt,200,2,0,,,1,0 +4531990,Charming and Clean Brooklyn Apt.,23497375,Liat,Brooklyn,Bedford-Stuyvesant,40.68157,-73.92023,Private room,75,1,0,,,1,0 +4532435,Beautiful 2 Bedroom Apartment in Williamsburg,13888249,Omer,Brooklyn,Williamsburg,40.70798,-73.95374,Entire home/apt,165,3,15,2018-05-12,0.27,2,158 +4532913,Williamsburg private clean cozy RM,20164579,Oliver,Brooklyn,Williamsburg,40.71909,-73.95998,Private room,45,1,170,2019-06-20,5.90,1,245 +4533010,Spacious Manhattan One Bedroom Apt,23503432,Luke,Manhattan,Washington Heights,40.8552,-73.93354,Entire home/apt,80,1,150,2019-06-28,2.68,1,35 +4536637,Kosher new studio close to subway,11010205,Jacob,Brooklyn,Bensonhurst,40.61576,-73.99166,Private room,125,2,4,2018-04-11,0.07,2,0 +4537198,Huge room wt bathroom + entrance,6926899,Liana,Brooklyn,Williamsburg,40.7113,-73.94938,Private room,90,3,4,2016-06-11,0.07,1,0 +4537297,Rosa B Private Apartment! Quiet and Safe Area.,1509863,Eddie,Queens,Rego Park,40.72937,-73.86804,Entire home/apt,40,7,53,2019-06-25,0.94,1,10 +4537389,New Years In New York City,22927481,Howard,Manhattan,Midtown,40.76377,-73.98103,Private room,400,3,0,,,3,0 +4537500,Location Nancy,3250450,Petya,Queens,Astoria,40.76496,-73.9282,Private room,39,31,2,2017-09-29,0.04,18,310 +4537520,1 bdrm apartment in boerum hill!,8737911,Laura,Brooklyn,Boerum Hill,40.6875,-73.99027,Entire home/apt,125,1,2,2015-01-01,0.04,1,0 +4538012,Bright Harlem Home in New Building!,12879538,Gregory,Manhattan,Harlem,40.82102,-73.94633,Private room,85,1,21,2018-01-01,0.38,2,343 +4538019,Luxury Queen Bed_Plush Mattress,22384027,Shahana,Brooklyn,Brownsville,40.67061,-73.91672,Private room,39,1,130,2019-06-21,2.32,10,26 +4538238,Sunny studio apartment in the heart of Manhattan,3473330,Shira,Manhattan,Kips Bay,40.7401,-73.97994,Entire home/apt,150,2,23,2018-10-28,0.41,1,12 +4538274,"Country Vibe, Big City Feel",23532244,Wendy,Queens,Astoria,40.77002,-73.91498,Entire home/apt,100,2,18,2019-05-27,0.38,1,83 +4538901,Entire Apt. in E. Williamsburg,4806989,Ava,Brooklyn,Williamsburg,40.70826,-73.94059,Entire home/apt,189,1,0,,,1,0 +4539483,Colorful Studio Near Columbia Univ.,2968247,Lauren,Manhattan,Harlem,40.80583,-73.95712,Entire home/apt,99,3,18,2017-08-26,0.33,1,0 +4539520,Spacious 1 Bedroom in Bohemian Comfort,23538896,DeeDee,Brooklyn,Crown Heights,40.67771,-73.96286,Entire home/apt,167,4,6,2019-01-02,0.12,1,0 +4539906,"Bright 1BR, central location",23540800,Carl,Manhattan,Hell's Kitchen,40.75381,-73.99491,Entire home/apt,205,2,0,,,1,0 +4540852,Williamsburg Apartment,10718241,Jason,Brooklyn,Greenpoint,40.7191,-73.94964,Private room,50,1,0,,,1,0 +4541102,"Perfect 2 Bed Bklyn Apt, near SUNY Downstate!",23548583,Shari,Brooklyn,East Flatbush,40.65262,-73.94211,Entire home/apt,109,30,23,2019-05-01,0.44,2,221 +4541187,Cozy 1BR Apartment in Astoria,23185328,Deniz,Queens,Ditmars Steinway,40.77672,-73.90878,Entire home/apt,127,2,12,2016-11-23,0.25,2,0 +4545882,Amazing studio/Loft with a backyard,23569951,Kaveh,Manhattan,Upper East Side,40.7811,-73.94567,Entire home/apt,220,3,28,2019-05-23,0.50,1,293 +4545999,Your Brooklyn Nook,23570473,James,Brooklyn,Crown Heights,40.67414,-73.95368,Private room,45,1,22,2019-07-02,0.96,3,339 +4546034,1BR by 1&A trains,23570593,Joshua,Manhattan,Washington Heights,40.84769,-73.93512,Private room,75,2,24,2019-06-30,0.44,1,321 +4546721,Large 1 bdrm near L in Williamsburg,23573737,Michelle,Brooklyn,Williamsburg,40.71171,-73.94575,Entire home/apt,120,5,1,2014-12-31,0.02,1,0 +4547143,CHARMING bedroom in BedStuy,23575706,Blair,Brooklyn,Bedford-Stuyvesant,40.6958,-73.94515,Private room,55,1,0,,,1,0 +4547273,Beautiful Spacious Studio By Park,10411359,Alison,Manhattan,Upper West Side,40.78316,-73.97269,Entire home/apt,120,3,33,2019-07-01,0.62,1,0 +4549155,Quaint Brownstone with Garden,1443186,Ash,Manhattan,East Harlem,40.80985,-73.93919,Entire home/apt,108,4,3,2016-08-29,0.07,1,0 +4549248,Cozy One Bedroom in Williamsburg!,22089583,Cesar,Brooklyn,Williamsburg,40.71901,-73.95618,Entire home/apt,200,3,3,2015-10-22,0.05,1,0 +4549555,"Studio Space, 10 minutes to Central Park and river",6571805,Agata,Manhattan,Upper West Side,40.79407,-73.97679,Shared room,55,2,54,2019-06-26,1.40,2,336 +4549557,Central Harlem ,23588055,Genine,Manhattan,Harlem,40.81208,-73.94243,Private room,205,2,3,2018-07-10,0.05,1,364 +4549627,Large Room with Private Bathroom,2748575,Charlotte,Manhattan,Hell's Kitchen,40.75506,-73.99622,Private room,129,4,0,,,1,0 +4549930,Charming apt close to everything!,19196381,Kimia,Manhattan,Upper East Side,40.77127,-73.95108,Entire home/apt,150,3,74,2019-05-27,1.33,1,263 +4550015,Greenwich/West Village Private Room,15778416,Courtney,Manhattan,West Village,40.73033,-74.00284,Private room,110,1,0,,,2,0 +4550041,Bright! LARGE 2 BEDS near Manhattan,23591164,Angela,Queens,East Elmhurst,40.76539,-73.87636,Private room,65,1,356,2019-06-23,6.31,4,341 +4550494,"2BR, 2 Full Bath, SPACE, Short term monthly",785283,Melinda,Queens,Ditmars Steinway,40.77648,-73.91595,Entire home/apt,150,28,50,2019-05-05,0.89,2,38 +4550557,Bright LARGE 2 BEDS! near Manhattan,23591164,Angela,Queens,East Elmhurst,40.7668,-73.87759,Private room,65,1,426,2019-06-17,7.53,4,312 +4550602,Cozy & Clean #3,23533897,Fatou,Brooklyn,Crown Heights,40.6759,-73.95274,Private room,75,1,77,2019-06-11,1.40,7,340 +4550747,Cozy & Clean #4,23533897,Fatou,Brooklyn,Crown Heights,40.67565,-73.95121,Private room,85,2,37,2019-05-19,0.67,7,325 +4553528,Brownstone Williamsburg room with skylight Create,2480939,Charles,Brooklyn,Williamsburg,40.71839,-73.95996,Private room,58,1,210,2019-07-02,3.80,3,217 +4553721,Art Large bedroom Brownstone for 1 or 2 persons,2480939,Charles,Brooklyn,Williamsburg,40.71994,-73.9599,Private room,90,1,194,2019-07-05,3.81,3,229 +4554473,"Bright and Spacious, near the Park",20042936,Yarimar,Brooklyn,Prospect Heights,40.67376,-73.96373,Entire home/apt,120,5,1,2016-05-17,0.03,1,0 +4554577,Bright and Cheerful Prospect Heights 1-bedroom,22568612,Ilana,Brooklyn,Prospect Heights,40.6803,-73.97185,Entire home/apt,115,6,3,2017-08-27,0.06,1,0 +4555241,"Clean, Cozy, Close to City (15min)",23342410,Amy,Queens,Long Island City,40.75985,-73.92979,Entire home/apt,99,2,0,,,1,0 +4555470,Lovely One Bedroom Heart Of Astoria,22348314,Mike,Queens,Astoria,40.76542,-73.92115,Entire home/apt,105,25,14,2018-07-31,0.27,1,277 +4556564,Private Room in Spacious Uptown Apt,23612276,Janine Renee,Manhattan,Harlem,40.82083,-73.95436,Private room,69,7,15,2019-06-11,0.27,1,213 +4556760,"Beautiful, Spacious Room in Loft",3074432,Minka,Brooklyn,Greenpoint,40.73298,-73.95813,Private room,80,1,0,,,1,0 +4557206,Cozy 1BD Apartment near Manhattan,6246089,Sara,Queens,Astoria,40.76587,-73.92157,Entire home/apt,125,5,27,2019-06-05,0.50,1,2 +4557370,Holiday in Manhattan! Great Views!,7257731,Anna,Manhattan,Inwood,40.86335,-73.92822,Entire home/apt,90,7,7,2019-06-21,0.15,1,249 +4558046,Spacious Studio in Brooklyn,23629361,Paris,Brooklyn,Crown Heights,40.66953,-73.92686,Entire home/apt,80,7,0,,,1,0 +4559096,$99 Manhattan/Time Sq.,23635670,Johnny,Manhattan,Hell's Kitchen,40.75856,-73.99569,Private room,125,1,186,2019-07-07,3.33,1,271 +4563401,MIDTOWN APARTMENT WITH SPECTACULAR VIEW,22885233,Peter,Manhattan,Hell's Kitchen,40.76575,-73.99241,Entire home/apt,215,6,39,2019-06-01,1.57,1,24 +4564292,HEART of NEW YORK // ニューヨークの中心,23659408,Marcello,Manhattan,Hell's Kitchen,40.75811,-73.99073,Entire home/apt,107,21,193,2017-10-27,3.42,1,310 +4564695,"Sunny, Quiet Queen Bedroom, Best Block in LES",619991,David,Manhattan,Lower East Side,40.72082,-73.98952,Private room,89,4,91,2019-06-01,1.86,1,16 +4564840,"Woodsy-chic Lofted 1BR, Office, AC",1019170,Sebastian,Manhattan,East Village,40.72312,-73.98255,Entire home/apt,175,2,81,2018-06-27,1.59,1,0 +4565734,Spacious 2 Bedroom + Study,54712,Nick,Brooklyn,Greenpoint,40.73351,-73.95459,Entire home/apt,245,3,0,,,2,280 +4566340,Spacious 2BR Greenpoint Getaway,54712,Nick,Brooklyn,Greenpoint,40.73455,-73.95489,Entire home/apt,245,3,0,,,2,0 +4566571,Penthouse loft with private patio,3814458,Ole,Manhattan,Midtown,40.75186,-73.98557,Entire home/apt,450,3,12,2016-04-10,0.23,1,0 +4566818,1 bedroom in Cozy 2 bedroom upper west side,23671946,Yonatan,Manhattan,Harlem,40.81622,-73.95885,Private room,100,3,0,,,2,0 +4566989,10 Minutes From Manhattan,23673285,Marisa,Queens,Astoria,40.76413,-73.92374,Entire home/apt,98,6,38,2019-06-02,0.67,1,306 +4567433,Room #2 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Brownsville,40.67068,-73.91633,Private room,39,1,89,2018-08-16,1.57,10,0 +4567518,Cozy 2BD Near Columbia Univ,23671946,Yonatan,Manhattan,Morningside Heights,40.81473,-73.96039,Entire home/apt,160,4,10,2019-06-02,0.43,2,0 +4567703,2 Bdr Cozy Apartment in Park Slope,22935835,Gislane,Brooklyn,South Slope,40.66616,-73.99009,Entire home/apt,150,2,0,,,1,0 +4567765,★3BR/2BA Amazing East Village Penthouse+Pvt Terr★,1277144,T.,Manhattan,East Village,40.72809,-73.98188,Entire home/apt,299,2,63,2019-06-01,1.15,1,210 +4567820,Lovely Studio on the edge of the McGolrick Park,5650951,Simon,Brooklyn,Greenpoint,40.7249,-73.94528,Private room,75,8,6,2018-11-05,0.14,1,0 +4571518,Park Slope - Furnished room in 2BR,23697064,Matt,Brooklyn,South Slope,40.66289,-73.98176,Private room,99,5,1,2015-10-09,0.02,1,0 +4571925,Funky East Village Garden Apt.,23699355,Harmony And Eric,Manhattan,East Village,40.7309,-73.98785,Entire home/apt,165,2,40,2016-06-29,0.73,1,0 +4572225,Columbia UWS 1BD Apt-Quiet & Comfy,14768898,Yiyi,Manhattan,Morningside Heights,40.80747,-73.9603,Entire home/apt,145,1,12,2015-09-08,0.21,1,0 +4573728,Cool & Cozy 2B/1BA in prime LES!,23708028,Ivan,Manhattan,Lower East Side,40.72058,-73.98674,Entire home/apt,239,3,145,2019-06-30,2.63,1,1 +4573897,Private BR in 2 BR Modern Apartment,21935479,Crysdian,Manhattan,Inwood,40.86821,-73.92128,Private room,76,2,70,2019-06-08,1.37,1,352 +4574224,GREAT SPACIOUS PRIVATE ROOM,11308807,Mathew,Manhattan,Harlem,40.82158,-73.9533,Private room,65,1,0,,,2,0 +4574225,Bright and Cozy Bedroom NYC A1,20559017,Yohan,Manhattan,East Harlem,40.78617,-73.94421,Private room,60,30,2,2017-08-26,0.04,9,312 +4575364,Zen Den & Modern Outdoor Space,23038979,Carmen,Brooklyn,Cypress Hills,40.68711,-73.87336,Entire home/apt,50,3,114,2019-06-24,2.02,1,18 +4576206,Brooklyn Brownstone Beauty,22017065,Marycatherine,Brooklyn,Prospect Heights,40.68137,-73.97081,Entire home/apt,250,3,27,2019-07-05,0.49,1,266 +4576821,"Charming apt. in Brooklyn, New York",4362140,María,Brooklyn,Bedford-Stuyvesant,40.68798,-73.95678,Entire home/apt,140,3,11,2015-09-22,0.20,1,0 +4578471,CHARMING 1-BD w CITY VIEWS,4263114,LeeAnne,Manhattan,Hell's Kitchen,40.76612,-73.99324,Entire home/apt,125,5,5,2015-08-24,0.09,1,0 +4581479,曼哈顿上西区林肯中心附近优质公寓短租!,23748343,Apple,Manhattan,Upper West Side,40.77334,-73.99031,Shared room,80,1,0,,,1,0 +4581788,"",21600904,Lucie,Brooklyn,Williamsburg,40.7137,-73.94378,Private room,150,1,0,,,1,0 +4581942,"Clean, Cozy - South ParkSlope - NYC",4618480,Justin,Brooklyn,Sunset Park,40.65687,-74.00489,Private room,75,1,0,,,1,0 +4582087,Thanksgiving Vacation ,23751556,Tai,Manhattan,Hell's Kitchen,40.75835,-73.99286,Private room,200,4,0,,,1,0 +4582684,Comfortable one bedroom with patio,23754530,Josh,Brooklyn,Fort Greene,40.68859,-73.9767,Entire home/apt,150,2,99,2019-06-29,1.77,1,246 +4582781,Prime Williamsburg duplex Bedford L,6780571,Julia,Brooklyn,Williamsburg,40.71765,-73.95772,Entire home/apt,220,2,79,2019-06-25,1.62,1,143 +4582785,Between Central Park and the Subway,13161042,Tom,Manhattan,Upper East Side,40.78555,-73.95311,Entire home/apt,180,2,18,2017-07-30,0.33,1,0 +4585734,"NYC, Modern and Spacious Apt fits 6",23208658,Iryna,Manhattan,East Harlem,40.79826,-73.94145,Entire home/apt,260,3,20,2019-06-20,2.74,3,283 +4586330,Artist Loft in Greenpoint/Williamsb,23677128,Darby,Brooklyn,Greenpoint,40.72712,-73.95499,Private room,80,1,0,,,1,0 +4586448,East Village Townhouse,8503180,Kathy,Manhattan,East Village,40.73118,-73.98885,Entire home/apt,1500,30,24,2019-04-22,0.43,2,358 +4586880,Vintage Room in Brooklyn,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92925,Private room,50,2,100,2019-07-04,3.21,3,260 +4587321,Bright 3 bdrm in East Village,23778946,Katie,Manhattan,East Village,40.72523,-73.97999,Entire home/apt,400,3,1,2015-01-02,0.02,1,0 +4587905,New 2 br Apt Williamsburg,3693416,Carolina,Brooklyn,Greenpoint,40.72214,-73.94835,Entire home/apt,450,1,0,,,1,0 +4588273,"UWS Penthouse, Amazing Deck",1500858,Adrienne,Manhattan,Upper West Side,40.77926,-73.97877,Entire home/apt,225,30,7,2015-06-18,0.13,1,173 +4588678,Gorgeous bohemian Apt. in a Brownstone,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68596,-73.94068,Entire home/apt,100,2,2,2017-08-08,0.05,2,0 +4588689,One Bedroom East Village New York,5926785,Cynthia,Manhattan,East Village,40.72556,-73.98504,Entire home/apt,205,1,0,,,1,0 +4589819,Cozy bedroom in a luxury building with 24h doorman,7852646,Tysha,Brooklyn,Fort Greene,40.69563,-73.98193,Private room,110,1,38,2019-07-07,2.06,1,46 +4592475,Private Terrace in Brooklyn!,4445796,Courtney,Brooklyn,Greenpoint,40.72557,-73.95243,Private room,95,1,7,2015-06-02,0.14,1,0 +4593609,1 Bedroom Apt in Hell's Kitchen !,23810895,Scott & Ellyn,Manhattan,Hell's Kitchen,40.7592,-73.98902,Entire home/apt,150,2,42,2019-06-18,0.76,1,258 +4593770,Sunny & spacious 1 bedroom gem!,23812318,Chelsea,Queens,Jackson Heights,40.75401,-73.88236,Entire home/apt,100,2,21,2019-04-08,0.38,1,124 +4593939,Charming and Convenient Garden Apt,5050537,Melissa,Brooklyn,Bedford-Stuyvesant,40.68402,-73.94164,Entire home/apt,69,1,40,2019-06-19,0.83,1,3 +4594389,Furnished 2BR in UES (30 DAYS MIN),23772724,Elem,Manhattan,Upper East Side,40.78302,-73.94647,Entire home/apt,110,30,12,2019-02-18,0.27,15,332 +4594620,Spacious Full 2br Holiday Home ,1520215,Brad,Brooklyn,Boerum Hill,40.68598,-73.98004,Entire home/apt,250,3,0,,,1,0 +4596378,Nice and cozy near Laguardia,23824219,Joshua,Queens,East Elmhurst,40.75943,-73.89553,Private room,44,3,46,2019-03-17,0.83,1,88 +4598265,"Hamilton Hts Beauty, Manhattan 1 BR",23834677,Kumar,Manhattan,Harlem,40.82863,-73.94358,Entire home/apt,155,1,242,2019-06-30,4.40,2,238 +4600556,Beautiful 2 BR Apt UES- Min 30 Days,15310997,Mor,Manhattan,Upper East Side,40.78318,-73.94556,Entire home/apt,300,30,10,2019-02-28,0.19,9,331 +4601325,Cozy private bedroom in Manhattan,23847354,Nicole,Manhattan,East Harlem,40.78882,-73.94869,Private room,67,1,2,2016-02-07,0.05,1,0 +4602440,Great 2 bedroom Greenpoint BK,6949069,Laura,Brooklyn,Greenpoint,40.72403,-73.95055,Entire home/apt,175,4,2,2015-12-30,0.04,1,0 +4603012,Spacious 1BR Apt in Greenpoint,45609,Sean,Brooklyn,Greenpoint,40.73132,-73.95831,Entire home/apt,149,15,22,2019-04-30,0.39,1,0 +4603954,BRIGHT MODERN BEDROOM,23718461,Ingrid,Brooklyn,Flatlands,40.62949,-73.92703,Private room,85,2,0,,,1,365 +4604991,Confortable and private room.,23861788,Luis&Victor,Brooklyn,Bedford-Stuyvesant,40.70007,-73.94338,Private room,75,2,224,2019-07-03,4.44,1,74 +4605455,Private Room & Bathroom in LES,23575977,Carly,Manhattan,Two Bridges,40.71205,-73.99463,Private room,120,5,0,,,1,0 +4605840,Large Sunny Bedroom With great View,23788242,Suzanne,Brooklyn,Bedford-Stuyvesant,40.68853,-73.9498,Private room,100,3,50,2019-06-15,1.08,1,339 +4606017,Studio with Loft bed by the river,23867361,Kurt,Manhattan,Upper West Side,40.79284,-73.97675,Entire home/apt,129,12,20,2019-05-01,0.37,1,193 +4606385,Coziest 2BD Brownstone in Jefftown,3184878,Maggie,Brooklyn,Bushwick,40.70545,-73.91929,Entire home/apt,150,1,1,2015-03-17,0.02,1,0 +4606473,Radiant 2bed E Village Apartment,23862900,Cecily,Manhattan,East Village,40.72887,-73.98633,Entire home/apt,219,5,1,2014-12-26,0.02,1,0 +4606614,Uptown Convenience & Comfort,23870076,Sam,Manhattan,Morningside Heights,40.80549,-73.96393,Entire home/apt,185,3,10,2018-08-24,0.38,1,0 +4606675,Private Room 2 Beds New York City!,23591164,Angela,Queens,East Elmhurst,40.7661,-73.87739,Private room,65,1,21,2017-07-27,0.38,4,0 +4607923,LOVELY LARGE SUNNY ROOM Sunset Park,1113080,Audrey,Brooklyn,Sunset Park,40.64722,-74.00475,Private room,55,7,98,2019-05-22,1.75,3,312 +4611004,Christmas Harlem! Duplex,626876,Kimberly,Manhattan,Washington Heights,40.83653,-73.94277,Entire home/apt,350,3,0,,,3,0 +4611203,Large 1 bedroom apt - can sleep 4,11702175,Meghan,Manhattan,East Harlem,40.79038,-73.94412,Entire home/apt,170,3,6,2017-01-01,0.11,1,0 +4611256,Upper East Side Manhattan,626876,Kimberly,Manhattan,Upper East Side,40.77963,-73.94864,Private room,250,1,0,,,3,0 +4611295,Upper East Side Manhattan #2,626876,Kimberly,Manhattan,Upper East Side,40.77941,-73.94862,Private room,250,1,0,,,3,0 +4612401,Bushwick Pad,21906247,Sam,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93537,Private room,70,1,0,,,1,0 +4613154,New York City Studio,23899573,Oscar,Manhattan,Hell's Kitchen,40.76679,-73.98598,Entire home/apt,150,7,23,2016-06-26,0.42,1,0 +4614091,"Big Kitchen, Beautiful Bathroom",16437254,Benjamin,Brooklyn,Sunset Park,40.6642,-73.99322,Entire home/apt,172,30,5,2019-06-25,0.09,21,328 +4614146,Stay on St. Marks Place for your NYC Vacation!,4293340,Teena,Manhattan,East Village,40.72764,-73.98748,Private room,79,2,2,2017-12-25,0.10,1,0 +4614435,Bright Studio on Riverside Park,8530836,Katarina,Manhattan,Harlem,40.82458,-73.95223,Entire home/apt,100,4,5,2017-09-25,0.09,1,105 +4614838,"2 Bedroom, 1 Bath Hell's Kitchen",1698391,Pat,Manhattan,Hell's Kitchen,40.76142,-73.99177,Entire home/apt,272,2,7,2019-04-30,0.13,3,277 +4615631,Charming Bedroom in Cozy NYC Apt.,22350590,Veronica,Manhattan,Harlem,40.82351,-73.94047,Private room,85,10,57,2019-06-10,1.03,1,6 +4615887,Lofted duplex in Kips Bay,23073152,Cara,Manhattan,Kips Bay,40.7396,-73.98228,Entire home/apt,350,2,0,,,1,0 +4616452,Upper East Side Spacious 2 Bedrooms,23915731,Helene,Manhattan,Upper East Side,40.77439,-73.94965,Entire home/apt,249,3,1,2016-07-19,0.03,1,0 +4616700,Cozy sun drenched 2br Fort Greene,1403669,Simone,Brooklyn,Fort Greene,40.68547,-73.96886,Entire home/apt,180,4,20,2018-09-05,0.39,1,208 +4616865,Colorful Room in Crown Heights,6028908,Kelly,Brooklyn,Crown Heights,40.67569,-73.95548,Private room,38,10,0,,,1,0 +4619579,One bedroom loft in West Village ,23929065,Eli,Manhattan,West Village,40.73173,-74.00904,Entire home/apt,450,3,0,,,1,0 +4620262,Cozy bedroom in heart of Manhattan,1599319,Lakshmi,Manhattan,Little Italy,40.71954,-73.9975,Private room,60,7,5,2016-04-26,0.09,1,0 +4620505,1br - Williamsburg Luxury Sublet ,12511067,Jaclyn,Brooklyn,Williamsburg,40.718,-73.95344,Entire home/apt,95,1,0,,,1,0 +4620954,"Tranquil, clean bedroom,",23935018,Marlon,Brooklyn,Bedford-Stuyvesant,40.68175,-73.95417,Private room,85,3,1,2015-10-24,0.02,1,0 +4620962,Beautiful one bedroom apt 850 sqf!!,21685221,Sael,Manhattan,Upper West Side,40.79293,-73.97126,Entire home/apt,199,1,0,,,1,0 +4621213,"Cozy 2 bedroom, near Central Park",23899821,Maria,Manhattan,Upper West Side,40.78604,-73.97363,Entire home/apt,260,2,54,2019-07-01,0.98,1,16 +4621217,Gramercy~New 1BR~Sleeps4~Rono~,2119276,Host,Manhattan,Gramercy,40.73346,-73.98216,Entire home/apt,140,30,7,2018-09-10,0.13,39,332 +4621713,Prime Union Square! Large 1BR~Great value,2119276,Host,Manhattan,Gramercy,40.7339,-73.98548,Entire home/apt,185,30,5,2019-01-24,0.10,39,1 +4621923,Spacious 1BD in lovely Clinton Hill,7947211,Meredith,Brooklyn,Prospect Heights,40.68153,-73.96669,Entire home/apt,126,1,44,2019-07-02,0.78,1,7 +4622869,Huge LES 3 BD 3 BA Elevator + Patio,2593268,Rose,Manhattan,Chinatown,40.7157,-73.99094,Entire home/apt,399,2,122,2019-06-15,2.24,1,109 +4623217,Bright and Charming Studio East V.,23945185,Natalia,Manhattan,East Village,40.726,-73.97773,Entire home/apt,100,7,6,2016-03-02,0.11,1,0 +4623622,Victorian with Stunning Views of NYC Harbor,22506665,William,Staten Island,St. George,40.64571,-74.07835,Entire home/apt,1000,1,0,,,1,364 +4623635,Historic Brownstone Duplex,1136842,Amanda,Brooklyn,Fort Greene,40.69249,-73.97068,Entire home/apt,225,7,3,2019-01-01,0.05,1,44 +4623696,Great deal in Heart of Greenpoint,2378231,Romy,Brooklyn,Greenpoint,40.73108,-73.95416,Entire home/apt,85,4,4,2015-12-29,0.07,1,0 +4623771,Bright + Cheerful Apt- the Real NYC,23267314,Millie,Manhattan,East Harlem,40.79127,-73.94431,Entire home/apt,147,2,45,2019-05-15,0.92,2,154 +4624521,Financial District Oasis-Queen Bedroom,9072771,Kindra,Manhattan,Financial District,40.70581,-74.00948,Private room,90,14,8,2019-05-29,0.23,2,146 +4624657,Modern Duplex with yard in Bedstuy,23952819,Jason,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93286,Entire home/apt,500,1,1,2015-08-30,0.02,2,362 +4624874,Flatbush Gardens II,23162890,Terrance,Brooklyn,Flatbush,40.65039,-73.96393,Private room,72,3,37,2018-10-15,0.66,2,334 +4625126,Bedroom and art studio/office space,7799229,Artem,Brooklyn,Williamsburg,40.71387,-73.95652,Private room,41,4,14,2018-10-06,0.37,2,0 +4628603,Bright and Sunny Williamsburg Oasis,6465286,Masha,Brooklyn,Williamsburg,40.71191,-73.96376,Entire home/apt,180,3,103,2019-06-06,1.92,2,0 +4628804,Cozy Room in NYC! =),23971734,Rene,Queens,Sunnyside,40.73978,-73.92124,Private room,67,5,4,2016-10-26,0.07,1,0 +4629211,Brooklyn - Funky 1 Bedroom,3754729,Mike,Brooklyn,Bushwick,40.69087,-73.90917,Entire home/apt,122,3,48,2019-06-04,0.87,1,256 +4629359,"ENTIRE home - Modern, huge, sunny 2BD",23974215,Alex,Manhattan,Harlem,40.80797,-73.95181,Entire home/apt,105,3,29,2019-03-20,0.52,2,0 +4629599,Coozy Room In Park Slope.,22503794,Shawn,Brooklyn,South Slope,40.66238,-73.98457,Private room,95,1,2,2015-08-08,0.04,1,364 +4629726,Sunny Studio,23971405,Monica,Queens,Kew Gardens,40.70705,-73.83346,Entire home/apt,100,2,1,2016-01-02,0.02,1,0 +4629870,"Super Quiet, Private Patio",16437254,Benjamin,Brooklyn,Boerum Hill,40.68851,-73.98655,Entire home/apt,130,30,3,2017-09-03,0.07,21,312 +4632542,Queen Sized Bedroom in Spacious Apartment,6762751,Alexander,Manhattan,Harlem,40.80096,-73.95776,Private room,107,2,92,2019-05-20,1.64,1,157 +4632795,Location Top Manhattan,3250450,Petya,Manhattan,Upper West Side,40.78628,-73.97264,Private room,100,30,12,2017-05-23,0.24,18,364 +4632852,"Spacious, rustic barn style bedroom",23991556,Natasha,Bronx,Concourse,40.83719,-73.92015,Private room,85,1,9,2017-10-16,0.18,1,342 +4633258,Room 15 min from Manhttn.,23993707,Bogna,Queens,Woodside,40.74626,-73.89727,Private room,30,5,2,2017-12-29,0.04,2,0 +4635425,Modern Studio with Loft in the LES.,23876129,Juan Carlos,Manhattan,Chinatown,40.71648,-73.9912,Entire home/apt,175,4,57,2017-03-02,1.04,1,0 +4636323,1x furnished Bdr in 2Bdr Apt-Wburg,24006197,Piper,Brooklyn,Williamsburg,40.7118,-73.93729,Private room,95,1,0,,,1,0 +4636643,"Sunny, Spacious 1 Bdrm in E. Vil.",24007762,Kate,Manhattan,East Village,40.72639,-73.98827,Entire home/apt,125,1,8,2018-03-02,0.15,1,0 +4636874,Nice room 15 min from Manhattan!,23993707,Bogna,Queens,Woodside,40.74668,-73.89723,Private room,35,5,9,2018-12-30,0.16,2,0 +4637014,法拉盛中心温馨两房两厅公寓。近一切。2 br close to everything,12459436,Zena,Queens,Flushing,40.75398,-73.82778,Entire home/apt,119,3,26,2019-06-30,0.46,2,319 +4637053,Beautiful Astoria apt next to Mtan,24009463,Vadim,Queens,Astoria,40.76794,-73.93413,Entire home/apt,150,3,149,2019-07-06,2.71,2,133 +4637145,Cozy apartment in Williamsburg,3123405,Pénélope,Brooklyn,Williamsburg,40.7033,-73.94305,Private room,55,1,4,2018-02-22,0.13,1,0 +4637146,Gorgeous Parlor Floor Suite near Subway,1755097,Jay,Brooklyn,Bedford-Stuyvesant,40.69084,-73.93079,Entire home/apt,115,2,214,2019-06-21,4.07,2,108 +4637858,Chic apartment in Brooklyn with stunning view,5552587,Chris,Brooklyn,Bedford-Stuyvesant,40.69492,-73.95839,Private room,99,5,14,2017-09-25,0.25,1,306 +4638668,Beautiful Apartment in Greenpoint,6569891,Brandon,Brooklyn,Greenpoint,40.73396,-73.95537,Private room,150,1,0,,,1,0 +4638967,"Sunny/Huge private room, by Columbia/Jazz clubs",23974215,Alex,Manhattan,Harlem,40.80649,-73.95225,Private room,84,2,38,2019-06-15,0.68,2,147 +4639015,Elite Exclusive Chic NYC Times Square LuxuryApt,14380678,S Barn,Manhattan,Hell's Kitchen,40.76195,-74.00001,Private room,129,2,13,2019-06-27,0.27,1,176 +4639179,"Private room, minutes from subway!",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.68951,-73.9565,Private room,44,5,86,2017-12-31,1.67,4,0 +4639451,Comfortable Greenpoint Bedroom,24020898,Rebekah,Brooklyn,Greenpoint,40.72499,-73.94481,Private room,55,6,0,,,1,0 +4639746,Charming Studio in Carroll Gardens,6470787,Franklin,Brooklyn,Carroll Gardens,40.68244,-73.99539,Entire home/apt,100,3,15,2016-06-13,0.27,1,0 +4640515,"Small, Cozy, Clean and Modern private room!",23355801,Andrey,Manhattan,Harlem,40.8257,-73.93786,Private room,65,1,40,2019-06-25,2.88,1,45 +4641291,Room in queens covenient safe locat,24030482,Eddie,Queens,Bellerose,40.72401,-73.72901,Private room,99,1,3,2019-05-19,0.23,1,365 +4641406,Cozy Loft-Style Studio Near Subway ,17281607,Alexis,Manhattan,Harlem,40.80297,-73.95537,Entire home/apt,100,7,2,2016-01-05,0.04,1,0 +4642539,Spacious 2 BDRM near Times Square,5025692,Annika,Manhattan,Hell's Kitchen,40.7616,-73.99677,Entire home/apt,225,5,13,2018-09-28,0.24,1,0 +4642913,Spacious Bright and Airy,16035346,Jonathan,Brooklyn,Windsor Terrace,40.65057,-73.97858,Entire home/apt,120,7,23,2019-01-05,0.41,1,196 +4643192,Quiet 1 Bedroom near Union Square,6694436,Itai,Manhattan,Gramercy,40.73533,-73.98384,Entire home/apt,139,2,5,2016-05-10,0.11,1,0 +4643199,NEW! 2-BR Apt with Whirlpool Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77167,-73.95735,Entire home/apt,142,30,3,2018-12-31,0.09,29,321 +4643295,Great one bedroom loft space in Manhattan,8555319,Simsim,Manhattan,Chinatown,40.71399,-73.99744,Entire home/apt,140,4,13,2019-04-29,0.65,1,0 +4644632,"Brooklyn Life, Easy to Manhattan (30+ Days only)",10992588,Joni,Brooklyn,Bedford-Stuyvesant,40.68797,-73.94696,Entire home/apt,130,200,271,2019-07-03,4.84,2,64 +4644669,Upper East Side,24046558,M David,Manhattan,Upper East Side,40.76358,-73.96464,Entire home/apt,325,5,64,2019-06-08,1.15,1,330 +4644688,2 Bedroom New York Charmer,16927633,Lee,Manhattan,Hell's Kitchen,40.76198,-73.98718,Entire home/apt,350,2,9,2016-07-12,0.21,1,0 +4644828,Hip&Central! Charming Williamsburg!,805843,Johnny,Brooklyn,Williamsburg,40.71745,-73.95961,Entire home/apt,175,2,5,2017-01-06,0.12,1,0 +4645170,Private Room with Queen size bed,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76025,-73.99555,Private room,89,4,59,2019-06-30,1.06,2,286 +4645319,Beautiful private unit in the heart of Brooklyn,2520125,Katja,Brooklyn,East New York,40.66171,-73.89891,Entire home/apt,69,4,159,2019-06-23,3.25,2,48 +4645824,"Room in front of Prospect Park, 1 block to subway",1660261,Andres Mekos,Brooklyn,Prospect-Lefferts Gardens,40.65859,-73.96196,Private room,40,6,10,2019-04-15,0.21,1,0 +4645831,Light filled room w/full size bed in LES,24052348,Tara,Manhattan,East Village,40.72052,-73.98003,Shared room,65,10,21,2017-12-30,0.38,4,0 +4649468,BRIGHT!-STEPS TO PARK!-SUBWAY OUTSIDE!-FITS 4!,2592109,Lia,Manhattan,Upper East Side,40.76904,-73.95902,Entire home/apt,160,14,20,2019-06-20,0.37,1,43 +4649627,"Spacious 1 BR, En Suite in Brownstone!",9492212,Emily And Joel,Brooklyn,Park Slope,40.6702,-73.97885,Private room,135,2,88,2018-12-31,1.60,4,0 +4650123,"Stunning Lower East 2 Bed, Live New York Style!",6230230,John,Manhattan,Lower East Side,40.71927,-73.98511,Entire home/apt,109,3,42,2019-06-13,1.13,3,7 +4650725,Lovely Room in a 2 BR in Greenpoint,24075308,Saskia,Brooklyn,Greenpoint,40.72518,-73.93844,Private room,85,14,3,2015-07-03,0.05,1,0 +4651354,Lower East Side True 1 BR,24020050,Max,Manhattan,Chinatown,40.71566,-73.99076,Entire home/apt,189,4,25,2019-04-15,0.48,1,191 +4651486,Prospect Park 2BR Near MANHATTAN!!!,2563415,Anthony,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.96109,Entire home/apt,125,3,56,2019-06-16,2.42,1,19 +4652629,Classic East Village Apartment,9953720,Eva,Manhattan,East Village,40.72921,-73.98631,Private room,140,1,1,2015-01-03,0.02,1,0 +4653508,1 BR in shiny new building + bikes!,6349214,David,Brooklyn,Fort Greene,40.69492,-73.97061,Entire home/apt,160,3,4,2017-12-30,0.07,1,0 +4654785,"Parkslope, 1 bdrm, steps to subway",24094211,Rebecca,Brooklyn,Park Slope,40.67256,-73.97229,Entire home/apt,115,5,4,2017-01-02,0.08,1,0 +4656361,"Large, Cozy One Bedroom Apartment",8291260,Elizabeth,Manhattan,Washington Heights,40.85171,-73.92894,Entire home/apt,80,3,31,2019-06-29,0.56,1,68 +4658293,Luxury 1BD apt by Prospect Park,7518105,Dan & Michelle,Brooklyn,Windsor Terrace,40.64961,-73.97465,Entire home/apt,198,2,7,2017-06-04,0.13,1,0 +4658860,Astoria Queens great room for rent!,24109809,Jonathon,Queens,Astoria,40.77271,-73.93159,Private room,200,1,0,,,1,0 +4659046,Large eclectic studio East Village,1420868,Oksana,Manhattan,East Village,40.7257,-73.9795,Entire home/apt,230,1,46,2019-05-10,0.84,1,353 +4659285,Manhattan! Bunk beds for 10+,23334165,Patricia,Manhattan,Harlem,40.82396,-73.94388,Entire home/apt,450,5,81,2019-06-09,1.48,3,303 +4660022,Best Block Clean Luxury Loft in SoHo,745486,Re,Manhattan,SoHo,40.72592,-73.99933,Entire home/apt,895,1,66,2019-06-24,1.18,1,365 +4660633,Quiet and cozy 2BR. Great location!,4517642,Kali,Manhattan,Morningside Heights,40.8104,-73.95977,Entire home/apt,170,3,6,2016-05-23,0.11,1,0 +4660939,Large Sunny Apartment in Astoria,24117644,Joshua,Queens,Astoria,40.75583,-73.92596,Private room,120,3,18,2017-01-11,0.33,2,0 +4660964,"Cozy 1BR, 5 minutes from the train",24118443,Megan,Brooklyn,Williamsburg,40.7193,-73.94502,Entire home/apt,140,2,18,2018-12-28,0.33,1,0 +4661135,SUNNY GUEST BDRM in Fort Greene!,3175065,Taya,Brooklyn,Fort Greene,40.69207,-73.97407,Private room,70,14,18,2019-06-30,0.35,1,128 +4661662,"""The Green Room"": Harlem Brownstone",21455957,Jason & Agnes,Manhattan,Harlem,40.81995,-73.94607,Private room,70,3,122,2019-06-29,2.19,2,243 +4662584,Best value single room in New York B5,20559017,Yohan,Manhattan,East Harlem,40.78644,-73.9438,Private room,45,30,4,2018-02-14,0.08,9,311 +4662784,Lovely Duplex in Brooklyn,21688465,William,Brooklyn,Crown Heights,40.67489,-73.93081,Private room,140,3,148,2019-07-03,2.88,1,0 +4662889,Pre-War Apt on Central Park West!,24041562,Darren,Manhattan,Upper West Side,40.78697,-73.96929,Entire home/apt,600,5,6,2016-08-05,0.11,1,0 +4663122,Beautiful 2 Bdrm Duplex w Backyard,16018853,Sasha,Brooklyn,Clinton Hill,40.69289,-73.96701,Entire home/apt,195,4,0,,,1,0 +4663804,Cozy Room by CentralPark-Times Sq,24132118,Deborah,Manhattan,Hell's Kitchen,40.76793,-73.98817,Private room,79,7,1,2015-06-17,0.02,1,0 +4663807,Entire 2 Bedroom Apartment - 20 min to Times Sqr,4098538,Olga,Manhattan,Harlem,40.82768,-73.94737,Entire home/apt,55,14,2,2017-01-08,0.05,1,0 +4666584,Unique 2 Bed/2 Bath Duplex Apt,24144577,Bill,Manhattan,Harlem,40.80382,-73.94476,Entire home/apt,275,3,41,2019-05-12,0.79,1,258 +4666794,Cozy Bedroom in Large Apartment,18511357,Meagan,Queens,Ditmars Steinway,40.77272,-73.90757,Private room,60,7,1,2017-07-01,0.04,1,0 +4667046,Idy Safe Secure mins to Times Square 5*,24146326,Julien,Queens,Astoria,40.76638,-73.93236,Entire home/apt,195,3,86,2019-06-08,1.69,2,248 +4667146,Best value double room in New York B4,20559017,Yohan,Manhattan,East Harlem,40.78512,-73.94409,Private room,50,30,5,2018-12-30,0.11,9,330 +4667148,1 Bdrm in Greenwich Village,2312420,Marie-Claire,Manhattan,West Village,40.73317,-74.00118,Entire home/apt,125,30,31,2019-05-12,0.83,2,346 +4667707,Beautifully Furnished 1 BR w/Office,24149026,Nychele,Bronx,Concourse Village,40.82393,-73.92414,Entire home/apt,145,5,1,2016-01-02,0.02,1,0 +4668252,Furnished studioA UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77388,-73.95343,Entire home/apt,99,30,15,2019-04-30,0.31,15,341 +4671552,Garden Level Brooklyn Brownstone,10860081,Hillary,Brooklyn,Clinton Hill,40.68241,-73.96354,Entire home/apt,130,1,9,2015-12-27,0.16,1,0 +4671712,Spacious luxury loft Downtown NYC,1901846,Andre,Manhattan,Lower East Side,40.7136,-73.98936,Entire home/apt,115,3,8,2016-07-19,0.16,1,0 +4671824,Master Bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83212,-73.93054,Private room,60,1,56,2019-06-23,1.09,3,355 +4672445,West Village upscale apartment,966461,Jon,Manhattan,West Village,40.73814,-74.00047,Entire home/apt,199,4,108,2019-06-08,1.93,1,162 +4672452,"Great bright 1BR,in true BK style",3108161,Michelle,Brooklyn,Williamsburg,40.71596,-73.95876,Entire home/apt,170,3,22,2017-09-26,0.40,1,0 +4677056,"1,200 sq/ft loft +private backyard ",10476487,Avi,Manhattan,SoHo,40.72632,-74.00749,Entire home/apt,385,3,1,2015-02-16,0.02,1,365 +4677469,Cozy 1-BDR apartment on Manhattan,24191104,Timur,Manhattan,Morningside Heights,40.81099,-73.95759,Entire home/apt,125,4,0,,,1,0 +4677654,"Good, clean quite, and private!",10387090,Luis Enrique,Brooklyn,Bushwick,40.68348,-73.90817,Private room,37,30,6,2015-09-01,0.11,5,333 +4678514,Cozy 1BR in the heart of Harlem,23939128,Mariela,Manhattan,Harlem,40.8136,-73.94999,Entire home/apt,80,5,5,2017-11-23,0.10,1,0 +4678568,Spacious private BR 2 Queen beds & 3 mins to train,24195428,Maireni,Brooklyn,Crown Heights,40.66811,-73.93393,Private room,65,1,222,2019-06-17,3.99,1,292 +4678742,2 Bedroom West Village Manhattan,24195790,Patrick,Manhattan,Greenwich Village,40.73444,-73.99761,Entire home/apt,600,1,0,,,1,0 +4678795,sunny & spacious one-bedroom ,24048208,Maura,Brooklyn,Bedford-Stuyvesant,40.6848,-73.95728,Entire home/apt,140,3,0,,,1,0 +4679967,Big quiet room in Harlem,7304425,Elia,Manhattan,Harlem,40.82888,-73.94467,Private room,56,1,7,2016-06-07,0.14,1,0 +4680299,Sunny Lg BR in 2BR apt- sleeps 2,23047797,Marie,Manhattan,Washington Heights,40.85658,-73.92656,Private room,70,2,7,2016-09-28,0.13,1,0 +4681193,Entire Apt in Jackson Heights-25 min to Manhattan,24201950,Ceci,Queens,Jackson Heights,40.752,-73.88898,Entire home/apt,105,7,3,2019-06-27,0.17,1,141 +4681219,"""Central Park"" View Prvt Room,Mnh ",24208781,William Hakan,Manhattan,Harlem,40.80126,-73.95777,Private room,70,2,68,2019-05-19,1.31,1,129 +4685448,"Cozy 2BD, 20 mins to Times SQ",2368446,Chelsey,Queens,Ditmars Steinway,40.77443,-73.90756,Private room,60,1,0,,,1,0 +4685985,Living room & Bedroom_Williamsburg,4357223,Itziar,Brooklyn,Williamsburg,40.70574,-73.95552,Private room,120,1,0,,,1,0 +4686678,LARGE GREAT STUDIO HELLS KITCHEN,7759020,Valmik,Manhattan,Hell's Kitchen,40.76663,-73.9895,Entire home/apt,150,1,3,2015-06-08,0.05,1,0 +4686821,"Bright, contemporary and best location",24232061,Tracy,Manhattan,Upper East Side,40.77345,-73.95848,Private room,112,10,38,2019-05-14,0.78,3,157 +4687730,"PRICE REDUCED! Clean, safe, & roomy",529546,Aditi,Manhattan,Hell's Kitchen,40.76865,-73.98672,Private room,145,3,0,,,2,0 +4687896,Adelphi Garden Apartment,24236837,Faye,Brooklyn,Fort Greene,40.69549,-73.97144,Entire home/apt,80,30,6,2017-05-31,0.11,1,187 +4688418,Spacious 2BR in UES - 30 DAYS MIN,23772724,Elem,Manhattan,Upper East Side,40.7734,-73.95357,Entire home/apt,99,30,6,2018-08-16,0.11,15,332 +4690677,Flatiron studio next to Madison Pk,19007585,Darren,Manhattan,Flatiron District,40.744,-73.9907,Entire home/apt,110,7,11,2016-03-25,0.20,1,0 +4691130,Cozy room in center of Park Slope,24253453,Lisah,Brooklyn,Park Slope,40.67489,-73.97963,Private room,70,2,120,2018-01-04,2.47,2,68 +4691649,New Studio Loft in Williamsburg w/ Private Terrace,8501698,Meghan,Brooklyn,Williamsburg,40.71971,-73.95919,Entire home/apt,140,4,1,2016-06-01,0.03,1,0 +4693338,"Brooklyn off J/Z, Newly Renovated",9123948,Chris,Brooklyn,Bedford-Stuyvesant,40.68229,-73.91574,Private room,46,4,3,2016-01-03,0.05,1,0 +4694179,Artsy and Cozy 1b. - Walk Everywhere!,3753306,Michelle,Manhattan,Gramercy,40.73287,-73.98585,Entire home/apt,180,1,1,2017-09-15,0.05,1,0 +4694480,1000 SQ FT Cobble Hill Übercharmer,24268565,Daniel,Brooklyn,Cobble Hill,40.68982,-73.99675,Entire home/apt,250,1,185,2019-07-05,3.32,1,209 +4694622,Cozy Garden Apartment in Bushwick!!,24269297,Caitlin,Brooklyn,Bushwick,40.69935,-73.9228,Private room,75,3,41,2019-06-25,0.81,1,294 +4694625,"Chic 2Br/2bath, Lower Manhattan",1843216,Guillermo,Manhattan,Lower East Side,40.7135,-73.988,Entire home/apt,250,4,26,2019-06-15,0.61,1,102 +4694688,Happy Chic Convenient New Listing!,4217567,Emily,Manhattan,Chelsea,40.7416,-73.99681,Entire home/apt,250,3,2,2016-01-03,0.04,1,0 +4695408,Spacious bedroom for Summer Months,15642271,Julissa,Manhattan,Washington Heights,40.8442,-73.93721,Private room,60,1,3,2015-07-13,0.05,1,0 +4697809,Cozy | Spacious | Great Location,4259327,Cole,Manhattan,Flatiron District,40.74128,-73.98428,Private room,95,7,10,2018-05-26,0.18,1,331 +4698079,Sunny Cozy East Village Apartment,24067453,Danny,Manhattan,East Village,40.72274,-73.98143,Entire home/apt,138,11,5,2017-01-03,0.09,1,0 +4698707,NY TIMES Featured Dumbo Penthouse,5352419,Brian,Brooklyn,Vinegar Hill,40.70213,-73.9838,Entire home/apt,550,20,1,2018-06-12,0.08,1,220 +4699061,Cosy room in Brooklyn!2min to Sbwy,24291213,Joerg,Brooklyn,Sunset Park,40.64009,-74.01714,Private room,35,1,0,,,2,0 +4699123,Huge Bdr in Loft in Williamsburg,11708876,Paloma,Brooklyn,Williamsburg,40.7114,-73.96293,Private room,90,1,0,,,1,0 +4699289,Charming two bedroom in Greenpoint,17014518,Jessica,Brooklyn,Greenpoint,40.73039,-73.9541,Entire home/apt,180,1,0,,,1,0 +4699535,Light and Spacious your 1BR Fort Greene Apt Awaits,41358,Jen,Brooklyn,Fort Greene,40.6908,-73.97332,Entire home/apt,145,2,1,2015-09-28,0.02,1,0 +4699963,"Cozy 1BD in PLG, Brooklyn!",24295835,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.66074,-73.96035,Entire home/apt,100,3,15,2017-05-24,0.27,1,0 +4700082,Fort Greene Brooklyn 1 bedroom apt,21409261,Trey,Brooklyn,Fort Greene,40.69477,-73.97258,Entire home/apt,119,4,19,2017-07-23,0.36,1,0 +4700265,Fantastic Room in Williamsburg,14320459,Hillary,Brooklyn,Williamsburg,40.70985,-73.94738,Private room,70,2,0,,,1,0 +4700565,Charming Bohemian Bushwick Apt,24298733,Tuva,Brooklyn,Bushwick,40.69167,-73.92169,Private room,48,4,1,2015-08-22,0.02,2,0 +4700809,Cozy Two-bedroom Apt in a Cute House in Brooklyn!,24298733,Tuva,Brooklyn,Kensington,40.6367,-73.97434,Private room,35,4,0,,,2,0 +4700894,PEACEFUL NYC 2-Bedroom FLAT,10535719,Mike,Manhattan,East Harlem,40.79863,-73.93795,Entire home/apt,200,7,28,2019-06-23,0.55,3,363 +4701270,Cozy bedroom in the heart of Lower East Side,15702523,Elia,Manhattan,Lower East Side,40.7198,-73.98434,Private room,64,2,58,2018-12-09,1.05,1,0 +4701425,Master Bedroom in E.Village Triplex,7460434,Rocco,Manhattan,East Village,40.72119,-73.98021,Private room,120,3,25,2019-06-06,0.46,2,89 +4701749,Brooklyn Oasis,24304871,Heather,Brooklyn,Flatbush,40.6536,-73.95811,Private room,50,2,23,2019-04-01,0.42,1,0 +4701802,Boerum Hill Brownstone with Skylights,10568263,Stephanie,Brooklyn,Boerum Hill,40.68518,-73.9853,Entire home/apt,190,2,8,2019-06-08,0.87,1,0 +4704813,New York Upper East Side Luxury Apt,24319884,Pete & Laurie,Manhattan,Upper East Side,40.77429,-73.95628,Entire home/apt,235,7,8,2017-08-29,0.16,1,0 +4705670,"Private, quiet spacious room with tons of sun!",24117644,Joshua,Queens,Astoria,40.75572,-73.92632,Private room,70,3,74,2019-06-26,1.38,2,285 +4706957,Amazing location! Cozy apartment!,633339,Sara,Manhattan,East Harlem,40.80651,-73.93776,Shared room,60,1,4,2015-08-31,0.08,1,0 +4707057,"Private, sunny room!",6327629,Bb,Manhattan,Harlem,40.82502,-73.94404,Private room,90,3,1,2014-12-08,0.02,1,0 +4707159,NEAR TIMES SQUARE & CENTRAL PARK!,529546,Aditi,Manhattan,Hell's Kitchen,40.76689,-73.98612,Private room,125,1,1,2014-12-27,0.02,2,0 +4708314,Spacious Williamsburg Retreat,1265619,Felipe,Brooklyn,Williamsburg,40.72018,-73.96055,Entire home/apt,120,2,8,2019-03-17,0.16,1,8 +4708609,Skyline View Piano Room,19972390,Melissa,Brooklyn,Greenpoint,40.73262,-73.95795,Private room,55,1,24,2016-06-17,0.44,1,157 +4708909,"Manhattan, modern chic - 2BR/2Bath",670367,Paul,Manhattan,Hell's Kitchen,40.75614,-73.99341,Entire home/apt,225,7,0,,,1,0 +4709252,ROOM AVAILABLE IN PERFECT FLAT,1511206,Mauricio,Manhattan,East Harlem,40.79912,-73.94187,Private room,150,2,1,2015-09-30,0.02,1,0 +4710102,Harlem Renaissance,24343117,Sachin,Manhattan,East Harlem,40.80038,-73.94656,Entire home/apt,175,3,44,2016-09-28,0.80,1,280 +4710310,GREAT ROOM IN ASTORIA QUEENS,24344136,Steffany,Queens,Astoria,40.76888,-73.90807,Private room,70,5,0,,,1,0 +4710315,Comfy 2Bdr Railroad in Greenpoint,129558,Osvaldo,Brooklyn,Greenpoint,40.72907,-73.95468,Entire home/apt,112,2,8,2016-10-10,0.18,1,0 +4710488,Stunning Pre-war Penthouse Studio ,24344873,Christopher,Manhattan,Kips Bay,40.74512,-73.98041,Entire home/apt,200,10,3,2016-01-01,0.05,1,0 +4711070,RENTING SPACE IN WOODSIDE NYC,24347671,Ioanna,Queens,Sunnyside,40.74607,-73.91415,Shared room,105,1,19,2019-05-26,0.54,1,364 +4713896,Charming brownstone,10148113,Caylah,Brooklyn,Bedford-Stuyvesant,40.68927,-73.94767,Private room,70,2,3,2015-02-04,0.05,1,0 +4714600,"Spacious bedroom,amazing location! ",12098551,Ashley,Manhattan,Kips Bay,40.73937,-73.98187,Private room,115,3,1,2015-01-02,0.02,2,0 +4714854,Cozy 2BR in the UES (MIN 30 DAYS),23772724,Elem,Manhattan,Upper East Side,40.78171,-73.94617,Entire home/apt,99,30,6,2019-03-10,0.15,15,225 +4715740,1 BR with Steinway Grand Piano (30 Day Min),13976132,Joseph,Manhattan,Harlem,40.79973,-73.95541,Entire home/apt,120,3,133,2019-06-22,2.39,1,4 +4716349,Fully Furnished Private Bedroom,21208237,Sam,Manhattan,East Harlem,40.79311,-73.94587,Private room,80,1,0,,,1,0 +4716613,Private Room w/ Patio Near L Train!,2466294,Ian,Brooklyn,Bushwick,40.70131,-73.91745,Private room,90,2,8,2018-05-21,0.16,2,363 +4717237,Spacious Apt in Bushwick!,2358032,Vanessa,Brooklyn,Bushwick,40.70027,-73.9231,Entire home/apt,70,4,8,2017-09-17,0.33,1,0 +4717267,LARGE QUEEN ROOM FOR THE HOLIDAYS,24370211,Yety,Brooklyn,Williamsburg,40.71138,-73.95385,Private room,52,6,1,2016-01-11,0.02,2,0 +4717296,"Luxury Astoria 1BD apt, 20min from Manhattan",24009463,Vadim,Queens,Long Island City,40.76586,-73.93342,Entire home/apt,150,3,63,2019-06-20,1.34,2,187 +4717440,"Bright, art-filled elevator apt, LES/Chinatown",3237577,Eddie,Manhattan,Chinatown,40.71585,-73.98982,Entire home/apt,170,3,94,2019-06-23,1.71,1,7 +4718031,Cool artist apartment in Williamsburg/Bushwick,9633085,Henrique,Brooklyn,Williamsburg,40.70659,-73.94049,Entire home/apt,132,4,7,2018-08-20,0.16,1,0 +4718314,Cozy apartment in Brooklyn,24374791,Emelie,Brooklyn,Bedford-Stuyvesant,40.67893,-73.95236,Entire home/apt,90,4,12,2016-04-14,0.22,2,0 +4718436,VIEWS VIEWS VIEWS from Designer Apt,4655338,Danny,Brooklyn,Williamsburg,40.71751,-73.95839,Entire home/apt,525,6,28,2019-06-16,0.50,1,365 +4718809,Private Retreat on Central Park,8778846,Max,Manhattan,East Harlem,40.79315,-73.94787,Entire home/apt,249,1,67,2016-09-23,1.25,1,0 +4719825,Ideal One Bedroom on UWS,24381419,Adam,Manhattan,Upper West Side,40.79973,-73.9711,Entire home/apt,160,2,6,2015-08-09,0.11,1,0 +4720086,Harlem Brownstone - It's Historic!,24382598,Leesa,Manhattan,Harlem,40.81455,-73.94471,Entire home/apt,125,1,142,2019-07-01,2.55,1,266 +4720121,Luxurious Upper East Side Duplex,34915,Anna,Manhattan,Upper East Side,40.77169,-73.95583,Entire home/apt,500,7,0,,,1,0 +4720142,"Fresh, Quite and Poppin.",21466735,Stephen,Brooklyn,Carroll Gardens,40.68234,-73.9932,Private room,65,1,0,,,1,0 +4720326,Gramercy/Kips Bay 1BR- the best! ,5279180,Jane,Manhattan,Kips Bay,40.73951,-73.9827,Entire home/apt,170,3,0,,,1,0 +4720460,Charming Upper West Side Studio,1887912,Anna,Manhattan,Upper West Side,40.78657,-73.97161,Entire home/apt,150,30,31,2019-05-21,0.59,1,213 +4720558,Room in a 4 bedroom Apt. in Harlem,14140782,Adam,Manhattan,Harlem,40.81535,-73.95322,Private room,80,1,0,,,1,0 +4720719,Bright Design Loft Perfect for Photoshoots,19924780,Ani,Manhattan,Chelsea,40.74968,-73.99381,Entire home/apt,1000,2,95,2018-12-30,1.70,1,353 +4720752,Huge Sunny Room in UES Townhouse ,23752440,Cris,Manhattan,Upper East Side,40.77065,-73.95702,Private room,175,30,0,,,1,365 +4720783,Cosy bedroom in Brooklyn duplex,9288052,Lauren,Brooklyn,Clinton Hill,40.68563,-73.95956,Private room,50,2,15,2018-09-09,0.29,2,0 +4720789,"Spacious, sun filled village haven",855266,Jennifer,Manhattan,West Village,40.73767,-74.0065,Entire home/apt,250,5,1,2017-10-17,0.05,1,0 +4721007,Cozy Bedroom in Brooklyn,6720617,Nadine,Brooklyn,Crown Heights,40.67116,-73.93582,Private room,40,1,1,2015-01-06,0.02,1,0 +4724857,Bed-Stuy Brownstone,12729740,Petey,Brooklyn,Bedford-Stuyvesant,40.68467,-73.92863,Private room,75,1,0,,,1,0 +4724943,Charming 1BD Across from Park,24403405,Naomi,Brooklyn,Crown Heights,40.67163,-73.94265,Entire home/apt,82,1,1,2015-01-01,0.02,1,0 +4725251,Gorgeous Sunny Studio,24404709,Jane,Manhattan,Upper West Side,40.78635,-73.97616,Entire home/apt,93,30,16,2019-01-07,0.29,1,271 +4725852,Cozy home in south Williamsburg,405090,Sacha,Brooklyn,Williamsburg,40.7119,-73.96377,Entire home/apt,100,7,6,2019-01-09,0.15,1,0 +4726749,Harlem,11686822,Douglas,Manhattan,Harlem,40.81169,-73.94301,Private room,75,1,0,,,1,0 +4726941,"Stylish 3,000 sq ft loft in TriBeCa",724633,Yaroslav,Manhattan,Tribeca,40.72325,-74.00991,Entire home/apt,1000,2,6,2018-03-14,0.25,1,19 +4727369,Sunny and spacious private room,24413323,Yana,Brooklyn,Williamsburg,40.70828,-73.95481,Private room,65,1,13,2017-11-22,0.24,1,128 +4727731,Prime Williamsburg Loft Oasis with Garden!,18746337,Adam,Brooklyn,Williamsburg,40.71064,-73.96335,Entire home/apt,250,2,5,2019-06-27,5,1,204 +4727889,Beautiful Light Filled Apartment in New York City!,10679309,Kirac,Manhattan,Midtown,40.74578,-73.98076,Entire home/apt,130,1,3,2019-04-07,0.08,2,0 +4727912,"Cosy 2 bed, Gramercy, NYC Apartment",24415699,Charlie,Manhattan,Civic Center,40.71395,-74.00545,Entire home/apt,199,6,0,,,1,0 +4728136,Private 2-room space (ba and kitchen shared),12261576,Bohdana,Brooklyn,Sunset Park,40.65014,-74.00615,Private room,37,3,10,2019-04-22,0.20,1,6 +4729374,Sunny Private Bedroom in Bushwick,799566,Sarah,Brooklyn,Bushwick,40.69702,-73.93365,Private room,80,2,0,,,1,0 +4730371,Hipster-Chic Bushwick Apartment,6898927,Sarah,Brooklyn,Bushwick,40.69738,-73.91162,Private room,33,2,9,2019-01-01,0.19,1,0 +4730379,Bedroom in Spacious East Village Apt,10503555,Amanda,Manhattan,East Village,40.72717,-73.991,Private room,55,26,0,,,1,0 +4730857,West Village Gorgeous Chic 1BR Apt,24429897,Roger,Manhattan,West Village,40.73552,-74.00521,Entire home/apt,299,5,0,,,1,0 +4733949,Beautiful Brooklyn Apartment Share (Purple Room),706623,Emilia,Brooklyn,Bushwick,40.69439,-73.9068,Private room,69,4,5,2016-02-10,0.09,4,98 +4734069,BEAUTIFUL WILLIAMSBURG BROWNSTONE,1279274,Jena,Brooklyn,Williamsburg,40.71334,-73.96207,Entire home/apt,200,30,0,,,1,0 +4734170,Modern 1 BD near Prospect Park,17893360,Charles,Brooklyn,Crown Heights,40.67238,-73.95768,Entire home/apt,109,1,18,2017-04-14,0.38,1,0 +4734709,Bright & quiet 2 bedroom brownstone,6274029,Belle,Brooklyn,Prospect Heights,40.67895,-73.97233,Entire home/apt,200,4,5,2016-12-31,0.10,1,21 +4735505,Greenwich Village w Private Garden,3570170,John,Manhattan,Greenwich Village,40.72874,-74.00088,Private room,95,2,4,2017-06-02,0.08,1,0 +4736480,Upper East Side Apatments,4568686,Amy,Manhattan,Upper East Side,40.77556,-73.95245,Entire home/apt,375,4,0,,,1,0 +4736912,Room in Manhattan (Upper West Side),24454737,Umberto,Manhattan,Morningside Heights,40.81088,-73.95774,Private room,50,14,1,2015-01-08,0.02,1,0 +4737392,"Luxurious bed in a clean, cozy home",24418383,Christopher,Queens,Astoria,40.75916,-73.91427,Private room,60,1,72,2018-10-16,1.30,1,364 +4737830,great room in the best place,24459029,Nima,Brooklyn,Crown Heights,40.67083,-73.94944,Private room,44,1,3,2015-07-15,0.05,1,0 +4737930,Spanish Harlem Apt,1235070,Olson,Manhattan,East Harlem,40.79264,-73.93898,Entire home/apt,9999,5,1,2015-01-02,0.02,1,0 +4738250,room in prime williamsburg,24461143,Jisoo,Brooklyn,Williamsburg,40.71754,-73.96228,Private room,77,1,0,,,1,0 +4738406,Holiday Sublet! 20 min to midtown,24462091,Jasmin,Manhattan,Washington Heights,40.84749,-73.9391,Private room,40,6,0,,,1,0 +4738429,M3 Hamilton's Hideaway Studio,295128,Carol Gloria,Bronx,Clason Point,40.81214,-73.85371,Entire home/apt,110,1,15,2019-06-23,0.49,7,325 +4738946,"Amazing, classy, safe & convenient!",15821855,Tessa,Manhattan,Morningside Heights,40.81615,-73.95921,Private room,65,1,1,2015-09-14,0.02,1,0 +4739407,"Spacious, Cool 1-BD in Brooklyn",24467359,Juan-Pablo,Brooklyn,Crown Heights,40.67656,-73.94542,Entire home/apt,85,5,14,2016-02-18,0.26,1,0 +4739703,1BR Duplex in Heart of Brooklyn with 2 cats!!!,24468833,Amanda,Brooklyn,Prospect Heights,40.67906,-73.96602,Entire home/apt,175,3,19,2015-09-09,0.34,2,88 +4742068,Spacious 1 Bedroom Apartment,22616989,Don,Brooklyn,Bensonhurst,40.61957,-73.9936,Entire home/apt,93,3,52,2019-06-22,0.99,1,325 +4742102,Our home is your home.(Vegetarian),6932195,Mindy (...And I'M Jeff),Queens,Fresh Meadows,40.7312,-73.78579,Entire home/apt,375,2,30,2019-07-01,0.66,1,351 +4742842,Cozy Harlem Escape 20 mins to Times Square,7111318,Morgan Marie,Manhattan,Harlem,40.82784,-73.93704,Entire home/apt,100,3,111,2019-06-23,3.15,1,9 +4743840,"My home in West Village--Huge, Modern",895109,Jeffrey,Manhattan,West Village,40.73571,-74.00341,Entire home/apt,258,3,57,2019-06-23,1.10,1,320 +4744276,Huge Room in First Floor Brownstone,24487418,Daniel,Brooklyn,Crown Heights,40.67318,-73.94842,Private room,75,2,19,2016-08-26,0.39,1,0 +4744487,Williamsburg Carriage House w/ yard,24487842,David,Brooklyn,Williamsburg,40.71181,-73.95736,Entire home/apt,118,30,29,2019-01-23,0.52,1,295 +4744592,Quiet & Peaceful Upper West Escape,6648212,Mike,Manhattan,Morningside Heights,40.81509,-73.96019,Entire home/apt,120,4,4,2015-05-30,0.07,1,0 +4745012,Charming UES 1bdr near Central Park,1766929,Stephanie,Manhattan,Upper East Side,40.76339,-73.95832,Entire home/apt,154,4,17,2017-08-05,0.31,1,0 +4745212,Bright & Spacious in Williamsburg,2665225,Sila,Brooklyn,Williamsburg,40.71717,-73.95688,Entire home/apt,150,3,1,2016-01-03,0.02,1,0 +4745876,Urban sanctuary in the heart of NYC,21047204,Michael,Queens,Long Island City,40.74821,-73.94803,Entire home/apt,150,2,1,2014-12-31,0.02,1,0 +4745879,West Village / Bleecker & Cornelia,18975770,Martina,Manhattan,West Village,40.7325,-74.00453,Private room,145,2,93,2019-06-22,1.82,2,193 +4746171,Modern 2BR Apartment in Heart of East Village,24450948,Peter,Manhattan,East Village,40.72649,-73.98284,Entire home/apt,250,2,11,2017-01-01,0.20,1,0 +4747068,Lovely Studio next to Park/Subway,24500940,Jesse,Brooklyn,Windsor Terrace,40.65131,-73.97405,Entire home/apt,100,5,24,2017-05-08,0.44,1,0 +4747624,Convenient clean downtown private room + BREAKFAST,24109763,Tang,Manhattan,Two Bridges,40.7123,-73.9956,Private room,155,1,193,2019-07-05,8.21,1,37 +4748873,Capturing Meditation Style Room ,24508767,Angelina,Brooklyn,Williamsburg,40.71174,-73.94353,Private room,100,1,0,,,1,0 +4750486,Sun-drenched 1BD in Upper East Side,13631524,Hernan & Chelsea,Manhattan,East Harlem,40.79774,-73.93244,Private room,75,2,262,2019-06-09,4.73,1,166 +4750578,Cozy Boutique Studio in Brooklyn,11950208,Luisa,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95759,Entire home/apt,110,1,0,,,1,0 +4751686,Beautiful Bedroom in Williamsburg,21247073,Bowie,Brooklyn,Williamsburg,40.71573,-73.96172,Private room,50,12,4,2018-01-13,0.10,1,0 +4752020,Historic Jumel Terrace Manhattan ,24454906,Kristopher,Manhattan,Washington Heights,40.83301,-73.9394,Entire home/apt,225,1,0,,,1,0 +4752249,Beautiful artist brownstone,12112004,Kylie,Brooklyn,Bedford-Stuyvesant,40.68369,-73.92336,Private room,150,1,0,,,1,365 +4752659,Enjoying New York like a local. Share my Apartment,24525377,Jin,Manhattan,East Village,40.72513,-73.98064,Private room,125,1,73,2018-08-25,1.51,1,154 +4753571,Your own West Village/ Soho home,24529969,Ellie,Manhattan,SoHo,40.72704,-74.00558,Entire home/apt,200,3,10,2017-03-31,0.21,1,0 +4753639,Heaven On Riverside,24530713,Byron,Manhattan,Harlem,40.82332,-73.95471,Private room,90,2,16,2019-04-30,0.30,3,235 +4753866,Nirvana On Riverside,24530713,Byron,Manhattan,Harlem,40.82501,-73.95373,Private room,125,1,4,2015-11-27,0.08,3,365 +4753918,Bushwick Duplex 3 (suite),3709510,Deacon,Brooklyn,Bushwick,40.69258,-73.92528,Private room,125,2,0,,,3,280 +4754646,Room in a great UWS apartment,6649124,Yuval,Manhattan,Upper West Side,40.80149,-73.96458,Private room,70,1,0,,,1,0 +4756125,Habitación muy soleada en Bushwick!,2702777,Vicky,Brooklyn,Bushwick,40.6984,-73.91476,Private room,55,1,0,,,1,0 +4756297,Perfect 1BD in Gramercy/Union Sq,840590,Ben,Manhattan,Gramercy,40.73348,-73.98562,Entire home/apt,199,2,3,2019-06-30,0.07,1,19 +4756551,Bedroom w/Private Bath,4031913,Sheena,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.96055,Private room,89,2,139,2019-06-18,2.53,1,94 +4756578,"Clean | Green | Spacious +WB BK Sanctuary! 2BR/2BA",24544724,Katrina,Brooklyn,Williamsburg,40.71383,-73.96289,Entire home/apt,298,3,16,2019-06-23,0.39,1,4 +4756856,"",1832442,Carolina,Brooklyn,Bushwick,40.70046,-73.92825,Private room,70,1,0,,,1,0 +4757212,Studio apartment Midtown East in NY,10563051,Eveline,Manhattan,Murray Hill,40.74811,-73.97298,Entire home/apt,110,15,26,2016-07-29,0.47,1,0 +4757941,Cute & Cozy 1BR in the East Village,24551170,Neil,Manhattan,East Village,40.72619,-73.98284,Entire home/apt,239,2,2,2015-02-05,0.04,1,0 +4758028,Beautiful and great located UES apt,9150099,Melisa,Manhattan,Upper East Side,40.76244,-73.96215,Entire home/apt,300,3,2,2016-01-06,0.04,1,0 +4758601,Sunny Room in Charming Bed-stuy Apartment,24554369,Laina,Brooklyn,Bedford-Stuyvesant,40.68778,-73.92484,Private room,31,5,1,2015-08-01,0.02,1,0 +4758877,Bedroom in the Lower East Side,24555605,Robert,Manhattan,Lower East Side,40.72229,-73.9873,Private room,70,2,0,,,1,0 +4758924,Luxury Apt in Artsy Bushwick ,24555785,Shanna,Brooklyn,Bushwick,40.69685,-73.92933,Private room,73,1,1,2015-01-03,0.02,1,0 +4759361,Comfy large room in Wash Heights,15055041,Nathan,Manhattan,Washington Heights,40.83779,-73.94328,Private room,70,2,248,2019-07-05,4.65,1,12 +4759680,HUGE Beautiful Brooklyn Loft,11045893,Nicky,Brooklyn,Red Hook,40.67915,-74.00707,Private room,63,25,10,2019-05-31,0.20,1,290 +4759906,Cute & Charming Studio W/ Private Outdoor Space NY,15310997,Mor,Manhattan,Upper East Side,40.78032,-73.95249,Entire home/apt,200,30,9,2019-03-04,0.21,9,332 +4760076,Beautiful Apt in the Center of NYC,7741110,Victoria,Manhattan,Midtown,40.74245,-73.9845,Entire home/apt,220,4,149,2019-06-21,2.68,1,287 +4760085,Roomy/sunny/quiet/fun/great locale,24561040,Ame,Brooklyn,Park Slope,40.67851,-73.97678,Private room,95,2,132,2019-06-23,2.70,3,265 +4760107,"Tall Ceilings, Large Windows",16437254,Benjamin,Brooklyn,Boerum Hill,40.68902,-73.98632,Entire home/apt,127,30,7,2019-01-08,0.15,21,342 +4760504,Williamsburg Loft Bedroom,302865,Gamze,Brooklyn,Williamsburg,40.71337,-73.9642,Private room,85,8,0,,,1,0 +4762718,Unique 1BR / Upper West Side,22814290,Maximiliano,Manhattan,Upper West Side,40.78143,-73.98321,Entire home/apt,250,5,0,,,1,0 +4763327,"Luxurious, best location, spa inc'l",24576978,,Brooklyn,Greenpoint,40.72035,-73.95355,Entire home/apt,195,1,1,2015-10-20,0.02,1,0 +4765123,Beautiful Apt in West Harlem,24584990,Travis,Manhattan,Harlem,40.8261,-73.95074,Private room,50,3,8,2016-09-02,0.15,1,0 +4765631,Sunny Room- Prospect Heights- Bklyn,24587292,Rania,Brooklyn,Crown Heights,40.67507,-73.96092,Private room,60,7,0,,,2,0 +4765659,Beautiful live/work Brooklyn artists loft,24587457,James,Brooklyn,Bedford-Stuyvesant,40.69776,-73.96006,Private room,58,9,2,2015-09-09,0.04,1,0 +4766198,Private Room with Own Entrance,24590092,Debbie,Queens,Astoria,40.75962,-73.91419,Private room,80,1,2,2015-06-26,0.04,1,0 +4766284,Large queen size bedroom in huge loft apt,420111,Angie,Manhattan,East Harlem,40.79796,-73.93856,Private room,73,2,15,2019-06-29,0.33,2,250 +4766468,Lovely and Immaculate Bushwick Apt,24591281,James,Brooklyn,Bushwick,40.69913,-73.91484,Entire home/apt,91,15,1,2017-01-02,0.03,1,0 +4766582,"Clean, big room in SoHo",24591710,Ela,Manhattan,SoHo,40.72494,-74.00839,Private room,100,30,19,2016-11-13,0.50,1,0 +4766618,Cozy room mins from Central Park!,16066343,Curtis,Manhattan,East Harlem,40.78825,-73.94861,Private room,52,3,186,2019-06-16,3.39,2,49 +4766819,1 bedroom in Prime Williamsburg,13705706,Rebecca,Brooklyn,Williamsburg,40.71887,-73.94845,Private room,65,1,0,,,1,0 +4767139,Large room in two-story Brownstone,15815124,Tanya,Brooklyn,Prospect Heights,40.68163,-73.97122,Private room,70,2,45,2018-11-19,0.85,1,0 +4767549,Charming Apartment Up in the Trees,207356,Martin & Julia,Brooklyn,Carroll Gardens,40.68171,-73.99765,Entire home/apt,150,5,1,2016-09-06,0.03,1,0 +4767748,"Apt in Astoria, Queens.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77206,-73.91124,Entire home/apt,107,7,105,2019-07-02,2.07,8,261 +4768030,East Harlem Private Room ,24598868,Elijah,Manhattan,East Harlem,40.79588,-73.93646,Private room,80,1,0,,,1,0 +4768982,Beautiful Bedroom / Winter Getaway,7182609,Hannah,Brooklyn,Bushwick,40.70016,-73.91572,Private room,45,12,0,,,1,0 +4771964,Bright Brooklyn Bedroom next to Subway,23062393,Yalda,Brooklyn,Bedford-Stuyvesant,40.6894,-73.95357,Private room,62,20,2,2018-04-27,0.11,1,0 +4772857,Spacious queen size room; 15 min to Midtown NYC,24597265,Freda,Queens,Ditmars Steinway,40.77075,-73.91018,Private room,49,7,4,2019-04-01,0.10,8,309 +4772987,Queen size bedroom. 15 min to NYC,24597265,Freda,Queens,Ditmars Steinway,40.77183,-73.90973,Private room,50,6,17,2019-06-02,0.34,8,365 +4773463,Bright new studio in heart of LIC,7156474,Haley,Queens,Long Island City,40.74651,-73.954,Entire home/apt,175,1,0,,,1,0 +4774041,3 Bedroom apartment & Yard next to Subway sleeps 6,22565253,Yinny,Brooklyn,Bay Ridge,40.6342,-74.02337,Entire home/apt,129,5,48,2019-06-15,0.87,4,91 +4774190,Charming East Village/Gramercy Park Studio,17921968,Danielle,Manhattan,Gramercy,40.73196,-73.9823,Entire home/apt,198,3,103,2019-06-02,1.99,1,0 +4774496,Five star large one bedroom!,24517455,Terry,Manhattan,Upper East Side,40.77792,-73.9539,Entire home/apt,185,1,121,2019-06-17,2.19,1,337 +4774629,Beautiful Spacious Suite..,1660841,Syreeta,Brooklyn,Prospect-Lefferts Gardens,40.65713,-73.9537,Private room,90,1,0,,,1,0 +4774658,"",24625694,Josh,Manhattan,Washington Heights,40.85198,-73.93108,Private room,40,1,0,,,1,0 +4774763,1BR 2-blocks from BK Museum,24404928,Jeremy,Brooklyn,Crown Heights,40.67117,-73.95934,Entire home/apt,130,1,9,2016-05-28,0.16,1,0 +4774924,Sunny and Quiet Williamsburg Room,6465286,Masha,Brooklyn,Williamsburg,40.71217,-73.96367,Private room,100,2,32,2018-10-07,0.55,2,74 +4775278,Private Apartment In Heart Of Brooklyn,6948005,Matt,Brooklyn,Bedford-Stuyvesant,40.69294,-73.96001,Private room,75,1,1,2016-01-01,0.02,1,0 +4775547,"Private Studio On Roof, Private bath + Deck",4601412,Mia,Brooklyn,Bushwick,40.69437,-73.92607,Private room,90,5,107,2018-04-13,2.03,2,133 +4775737,A Cozy Studio in Clinton Hill,24630374,Takako,Brooklyn,Clinton Hill,40.68233,-73.96418,Entire home/apt,110,4,14,2016-12-25,0.25,1,0 +4776045,Sunny Bedroom in BK,8873293,Helena S,Brooklyn,Bedford-Stuyvesant,40.68897,-73.95477,Private room,65,2,8,2019-01-05,0.15,2,175 +4776065,Lovely Large Room with Private Bathroom,12300501,Paul,Manhattan,Hell's Kitchen,40.75984,-73.99214,Private room,49,1,102,2019-06-11,1.84,1,1 +4776107,Modern (Website hidden by Airbnb) Sq Apt!,24631934,Idris,Manhattan,East Village,40.72781,-73.97646,Entire home/apt,400,3,42,2016-09-21,0.77,1,363 +4777063,Big Sunny Room 10secs from L train,1641589,Lauren,Brooklyn,Williamsburg,40.71172,-73.93973,Private room,60,2,0,,,1,0 +4777166,"Super Clean, Quiet & Spacious Room",24636847,Troy,Queens,Woodhaven,40.69634,-73.8563,Private room,31,3,3,2018-07-11,0.23,1,0 +4777236,Private floor and entrance in townhouse,3295012,Marc & Farnoosh,Queens,Rego Park,40.72018,-73.86322,Private room,70,1,28,2019-06-22,0.61,1,325 +4777269,Two story apt with rooftop terrace,24585465,Amy,Manhattan,Upper West Side,40.77871,-73.97733,Entire home/apt,250,2,23,2019-06-17,0.48,1,0 +4777597,Beautiful Apt - Flatiron/ Chelsea,10319096,Saville,Manhattan,Chelsea,40.73932,-73.99264,Entire home/apt,215,1,0,,,1,0 +4777745,"600 SF appartment in NYC, Manhattan",24639120,Alexander,Manhattan,Midtown,40.76022,-73.9744,Entire home/apt,235,6,13,2017-01-10,0.25,1,0 +4777903,SOHO GALLERY,1581845,Indi,Manhattan,Tribeca,40.71883,-74.00357,Entire home/apt,2400,1,2,2016-10-19,0.05,1,365 +4778638,Affordable room in a friendly house,24643923,Toby,Manhattan,Harlem,40.80882,-73.94165,Private room,35,20,2,2015-01-10,0.04,1,0 +4781069,Cool Room In Cool Harlem ,482242,Roy,Manhattan,Harlem,40.81651,-73.94319,Private room,59,1,0,,,1,0 +4781700,Cool Room in NYC,24655252,Gabriel,Manhattan,Hell's Kitchen,40.7637,-73.98985,Private room,65,17,24,2019-06-03,0.45,1,86 +4782243,Charming LES studio w/ BBQ patio,2715121,Miriam,Manhattan,Lower East Side,40.71801,-73.99078,Entire home/apt,180,1,5,2016-05-22,0.09,1,0 +4782252,PENTHOUSE STUDIO WITH LARGE TERRACE,24657274,Daniel,Manhattan,Upper West Side,40.79202,-73.97947,Entire home/apt,175,1,0,,,1,0 +4782569,Private 1st level studio near NYC,5071632,Rose,Brooklyn,Borough Park,40.61959,-73.97857,Entire home/apt,81,3,47,2019-03-28,1.06,1,287 +4782799,Spacious Studio- Midtown Manhattan!,2910317,Megan,Manhattan,Midtown,40.7555,-73.96575,Entire home/apt,225,1,14,2016-04-26,0.25,1,0 +4783057,HOUSE SUITE,24660443,Hollis,Brooklyn,Bushwick,40.69504,-73.92709,Entire home/apt,100,4,123,2019-06-08,2.48,1,184 +4783437,Amazing Private & Cozy Williamsburg Room *rooftop*,186888,Matthew,Brooklyn,Williamsburg,40.70936,-73.94109,Private room,75,3,125,2019-07-03,3.26,1,134 +4783614,Master bedroom w/ private bathroom and free gym,3805240,Lika,Brooklyn,Bushwick,40.7001,-73.93009,Private room,85,7,2,2018-02-12,0.09,1,0 +4783738,MODERN Luxury Hotel Residence in Midtown,7655962,Dee J,Manhattan,Hell's Kitchen,40.7574,-73.99361,Entire home/apt,99,6,11,2018-11-01,0.22,1,0 +4783809,"Quiet, value & convenience in NYC's best hood!",177846,Alexandra,Brooklyn,Fort Greene,40.68916,-73.977,Entire home/apt,175,4,27,2019-06-22,0.49,2,11 +4784618,Private Room With Balcony UES,24666854,Namrata,Manhattan,Upper East Side,40.77321,-73.95175,Private room,90,1,0,,,1,0 +4784741,Private entrance Private roofdeck NO CLEANING FEE,12374283,Ryan,Manhattan,East Village,40.72333,-73.97948,Private room,125,1,39,2019-07-02,0.80,4,0 +4784846,1 BR in loft / Bushwick,24667595,Pierre,Brooklyn,Bushwick,40.69169,-73.92351,Private room,30,1,8,2017-06-25,0.15,1,0 +4784867,Great location w/ Terrace!,198387,Kim,Brooklyn,Williamsburg,40.71349,-73.9629,Entire home/apt,165,5,26,2016-10-12,0.47,1,0 +4785105,Cozy Nolita Apt - 1 BDR + Study,18156463,Bethany,Manhattan,Nolita,40.72405,-73.99518,Entire home/apt,149,3,0,,,1,0 +4785563,Holiday Sublet in Carroll Gardens,1977947,Stephanie,Brooklyn,Carroll Gardens,40.67725,-73.99968,Private room,100,1,0,,,1,0 +4785941,Beautiful Greenwich Village Loft,1786943,Nikolaos,Manhattan,Greenwich Village,40.72904,-74.00129,Entire home/apt,200,4,2,2016-04-13,0.04,1,0 +4786030,East Village sunny/new bedroom,24672682,Panayota,Manhattan,East Village,40.72879,-73.97959,Private room,110,1,1,2015-01-01,0.02,1,0 +4786139,Designer 1BD w/ backyard space,1760609,Matt + Allie,Manhattan,East Village,40.7223,-73.98128,Entire home/apt,315,1,2,2015-08-31,0.04,1,0 +4786675,Contemporary Luxury Studio Apartment,23852000,Aram,Brooklyn,Williamsburg,40.71975,-73.96285,Entire home/apt,148,30,16,2019-04-19,0.37,1,195 +4787201,Sunny and Spacious Brooklyn Apartment,7365719,Annika,Brooklyn,Bedford-Stuyvesant,40.67958,-73.94581,Entire home/apt,150,5,12,2018-08-19,0.24,1,9 +4787386,Spacious East Village Apartment,24678971,Nir,Manhattan,East Village,40.72454,-73.98688,Private room,175,1,41,2016-07-24,0.77,1,0 +4787527,"Home Sweet Home! +Spring fling!",9767363,Roger,Manhattan,East Harlem,40.79637,-73.93371,Private room,59,2,151,2019-07-02,2.75,1,308 +4788812,Comfy apt next to Central Park!,23020530,Val,Manhattan,Upper West Side,40.77917,-73.97397,Entire home/apt,139,1,1,2016-02-04,0.02,1,0 +4790969,"Room in Brooklyn, 20 min from Manh",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95936,Private room,50,3,50,2019-06-20,0.92,3,98 +4791389,Penthouse on Park Ave,4923436,Simon,Manhattan,Gramercy,40.73877,-73.98707,Entire home/apt,250,30,2,2015-03-22,0.04,1,0 +4791542,Lovely Bedroom in Trendy Brooklyn,14608821,Jiawen,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95422,Private room,42,7,0,,,1,0 +4791964,Bohemian Retreat in Williamsburg,1725974,Elani,Brooklyn,Williamsburg,40.70973,-73.96056,Private room,100,1,0,,,1,0 +4792192,BROOKLYN Authentic artsy LOFT :),16297020,Kasia,Brooklyn,Williamsburg,40.71234,-73.96601,Private room,80,1,0,,,1,0 +4792219,"Heart of Astoria, Spacious 2 bdrm, 15min to City!",11479819,Marnie,Queens,Astoria,40.76235,-73.9217,Entire home/apt,90,14,0,,,1,0 +4792342,Cozy 1-bedroom apt ,6328283,Steven,Manhattan,Harlem,40.82291,-73.94171,Entire home/apt,105,2,49,2019-06-30,0.90,1,193 +4792430,Bedroom in 19th Century Charmer - Clinton Hill,13343955,Sarah,Brooklyn,Clinton Hill,40.68451,-73.96461,Private room,75,2,6,2019-05-23,0.20,1,133 +4792529,Restored Bungalow of Rockaway Beach,57101,Maribel & Carolina,Queens,Rockaway Beach,40.58822,-73.81299,Entire home/apt,130,1,186,2019-06-23,3.35,1,292 +4792705,Elegant Quiet Spacious 2BD Brownstone Brooklyn NYC,3471761,Kevin & Yuan,Brooklyn,Bedford-Stuyvesant,40.68811,-73.92398,Entire home/apt,149,2,145,2019-07-02,2.62,2,305 +4794322,True one bedroom,24704747,Eli,Manhattan,Upper East Side,40.77378,-73.95684,Entire home/apt,200,1,3,2016-03-27,0.07,1,0 +4794512,Bohemian 1 Bedroom Loft with city view,7503643,Vida,Brooklyn,Greenpoint,40.72545,-73.94039,Entire home/apt,149,30,2,2018-08-15,0.06,52,358 +4795029,Morning Side Heights Private Room,24710778,Nick,Manhattan,Harlem,40.81004,-73.95231,Private room,60,1,1,2015-01-03,0.02,1,0 +4795088,Charming West Harlem Apartment,24711105,Stephanie,Manhattan,Harlem,40.82796,-73.9505,Private room,100,1,0,,,1,0 +4795390,Cozy Private Room,16151285,Carol,Bronx,Williamsbridge,40.88016,-73.84923,Private room,43,28,15,2019-05-31,0.30,4,336 +4795485,"Beautiful, sunny, large 1BD!",24712268,L & R,Brooklyn,Gowanus,40.66845,-73.99181,Entire home/apt,145,5,11,2019-06-16,0.24,1,40 +4795857,Spacious 2 Bedroom apartment in Washington Heights,8902883,Matthias,Manhattan,Washington Heights,40.83729,-73.94372,Entire home/apt,85,30,10,2019-06-30,0.28,1,147 +4796070,1A GREAT APT NEW YORK CITY !!!,24715671,Julia,Manhattan,Midtown,40.74439,-73.98329,Entire home/apt,275,30,39,2018-09-29,0.72,4,365 +4796255,"Pvt room in 2br/1bath, Crown Hghts",810311,Farai,Brooklyn,Crown Heights,40.66596,-73.9549,Private room,100,3,3,2018-10-08,0.08,1,89 +4798723,Adorable sunny studio great area-For monthly stays,23982388,Jolie,Manhattan,Midtown,40.75235,-73.96781,Entire home/apt,105,30,2,2015-08-11,0.04,5,315 +4798794,Roomy West Village Studio,1660906,Victoria,Manhattan,West Village,40.73245,-74.00275,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +4799245,"1 Bedroom - 1 Bathroom MIDTOWN,NYC",24728241,Eddie,Manhattan,Kips Bay,40.74317,-73.97508,Entire home/apt,180,1,0,,,1,0 +4799839,Private Room in Hell's Kitchen NYC,5999440,Gaetano,Manhattan,Hell's Kitchen,40.75511,-73.99247,Private room,175,2,188,2019-07-03,4.01,1,203 +4800921,"Comfy 4br, 2 full baths, 3 fls, 2 living rooms",1559494,Hill,Brooklyn,Williamsburg,40.71262,-73.95026,Entire home/apt,600,2,20,2019-06-23,3.30,1,283 +4801661,Another Large Room in Midtown Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74156,-73.97968,Private room,95,30,37,2016-12-01,0.68,26,365 +4802299,"Spacious 1 BDR in Astoria, Queens ",24740606,Zsuzsanna,Queens,Astoria,40.76457,-73.91205,Entire home/apt,150,2,2,2015-05-24,0.04,1,0 +4802374,Charming Upper East Side Studio,12968821,Anupam,Manhattan,Upper East Side,40.77613,-73.9462,Entire home/apt,119,10,12,2016-07-20,0.22,1,0 +4802648,One Bed Room Apt In Midtown East,13026391,Kenneth,Manhattan,Midtown,40.75456,-73.96626,Entire home/apt,165,2,11,2016-04-24,0.21,1,0 +4803244,Fabulous bedroom in the heart of BK,24744819,Diego Fernando,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94951,Private room,50,1,0,,,1,0 +4803623,great location luxury buiding,24747103,Rachel,Manhattan,Hell's Kitchen,40.7646,-73.98799,Entire home/apt,225,1,0,,,1,0 +4803750,Sugarhill Studio,932245,Angelina,Manhattan,Harlem,40.82775,-73.94313,Entire home/apt,80,2,22,2019-05-27,0.48,1,87 +4804228,Kosher Upper West Side Studio Apt,24750076,Chaz,Manhattan,Upper West Side,40.79331,-73.97537,Entire home/apt,149,4,15,2019-04-27,0.30,1,0 +4807244,"Clean, New Private Garden Level Apartment in BKLYN",24761711,Aron,Brooklyn,Windsor Terrace,40.64865,-73.97947,Entire home/apt,195,2,186,2019-06-30,3.55,2,230 +4807492,"quiet, sunny, floor-through brownstone",1870841,David,Brooklyn,Prospect Heights,40.67995,-73.97021,Entire home/apt,130,3,5,2018-05-08,0.11,1,0 +4807899,Complete 1 bedroom near Columbia U,3422859,Martin,Manhattan,Harlem,40.80434,-73.95476,Entire home/apt,95,3,9,2016-07-16,0.16,1,0 +4808065,Midtown East Lovely Nice Studio,23982388,Jolie,Manhattan,Midtown,40.75244,-73.96619,Entire home/apt,125,30,5,2017-04-15,0.10,5,331 +4808239,Loft Studio Near UN Building-30 days min stay,23982388,Jolie,Manhattan,Midtown,40.75248,-73.96695,Entire home/apt,95,30,3,2016-03-15,0.06,5,318 +4808505,"Cozy, CLEAN & SAFE room",24765924,Cesar,Queens,East Elmhurst,40.76313,-73.88368,Private room,50,1,55,2019-07-07,1.21,1,332 +4808745,Monthly studio-heart of Manhattan,23982388,Jolie,Manhattan,Midtown,40.75427,-73.96689,Entire home/apt,85,30,2,2019-05-08,0.05,5,83 +4809056,Entire Basement + Yard Access. ,5715779,Jessi,Brooklyn,Bushwick,40.70468,-73.92863,Shared room,95,1,0,,,1,0 +4809337,Cozy 1BD close to Prospect Park,24770709,Sakina,Brooklyn,Crown Heights,40.67033,-73.95262,Private room,50,1,0,,,1,0 +4809346,Spacious Sunny Brooklyn Sanctuary,24766218,Anna,Brooklyn,Clinton Hill,40.68917,-73.96545,Private room,80,14,2,2015-08-16,0.04,1,335 +4813140,Private Roof 4 bedroom 2.5Baths 15m to Manhattan,22643930,Joe,Brooklyn,Bushwick,40.69711,-73.93373,Entire home/apt,320,3,125,2019-06-23,3.42,1,269 +4813236,beautiful ROOFTOP apartment,24789838,Aljosha,Brooklyn,Bushwick,40.68876,-73.90824,Private room,37,17,0,,,2,0 +4813259,Big & Bright near Park & Museum,4312196,Joshua,Brooklyn,Crown Heights,40.6794,-73.9616,Private room,90,4,1,2015-07-08,0.02,1,0 +4813342,Times Square Cozy Studio ,23982388,Jolie,Manhattan,Hell's Kitchen,40.76497,-73.98854,Entire home/apt,95,30,4,2018-06-11,0.11,5,337 +4813781,"Private room in cozy, large UWS apt",24792241,Stephanie,Manhattan,Upper West Side,40.7915,-73.96697,Private room,85,3,6,2019-05-31,0.15,1,193 +4813832,Cozy room in Prospect Heights,13486673,David,Brooklyn,Prospect Heights,40.67904,-73.97289,Private room,79,13,8,2019-03-13,0.19,3,24 +4814075,EPIC east village room!,24793480,Nathan,Manhattan,East Village,40.72771,-73.98549,Private room,100,7,0,,,1,0 +4814810,"Quiet retreat, peaceful stay",24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67234,-73.92721,Private room,54,2,50,2019-06-05,2.26,4,302 +4815028,affordable and convenient Manhattan studio,24797535,Leslie,Manhattan,Upper West Side,40.80123,-73.96248,Entire home/apt,129,10,29,2019-07-02,0.54,1,0 +4815848,"Elegant NYC, 10mins to Manhattan!",3211,Catherine,Queens,Long Island City,40.76308,-73.92843,Private room,90,4,21,2018-10-06,0.41,1,89 +4815886,Amazing Artist Loft,7351,Tanda,Brooklyn,South Slope,40.66442,-73.99047,Entire home/apt,254,2,8,2019-06-16,0.23,3,365 +4817139,Studio Apartment in Midtown,21671443,Leandro,Manhattan,Hell's Kitchen,40.76557,-73.98745,Entire home/apt,159,2,16,2016-12-21,0.31,1,0 +4817208,Perfect private studio in NYC,3514707,Kaori,Manhattan,East Harlem,40.7945,-73.94298,Entire home/apt,90,5,2,2015-09-26,0.04,1,0 +4820897,Comfy & Cozy in Best Hood in Bk,177846,Alexandra,Brooklyn,Fort Greene,40.68864,-73.97669,Private room,85,5,47,2019-05-06,0.85,2,9 +4821218,A Mini Home Away From Home,24827152,Wendy,Brooklyn,Bedford-Stuyvesant,40.68383,-73.95298,Private room,45,3,5,2016-01-06,0.09,1,0 +4821331,Lofty Brownstone Floor-Through,24827643,Danny,Brooklyn,Cobble Hill,40.68617,-73.99632,Entire home/apt,275,10,1,2016-05-06,0.03,1,1 +4821605,1 BR in Spacious 4 BR duplex,24828814,Aaron,Brooklyn,Bushwick,40.70295,-73.91354,Private room,38,1,1,2016-04-02,0.03,1,0 +4821786,Sunny & Cozy 1 Bedroom Apartment,1543006,Sophia,Brooklyn,Bedford-Stuyvesant,40.68675,-73.93749,Entire home/apt,100,2,3,2015-09-18,0.06,1,0 +4822057,Room in Airy Williamsburg Apt,19660044,Jennifer,Brooklyn,Williamsburg,40.70816,-73.94244,Private room,103,1,7,2016-05-31,0.13,1,0 +4822181,"Amazing 2BR (5) UES, (MIN 30 DAYS)",23772724,Elem,Manhattan,Upper East Side,40.77427,-73.95325,Entire home/apt,99,30,8,2019-04-23,0.28,15,270 +4822324,NYC Duplex + Terrace in East 60s ,24832100,Lindsay,Manhattan,Upper East Side,40.76172,-73.96074,Entire home/apt,185,3,7,2016-07-24,0.13,1,0 +4822557,Cozy room in Brooklyn!!,24832418,Patrick,Brooklyn,Bedford-Stuyvesant,40.69253,-73.94681,Private room,90,1,0,,,1,0 +4822822,Luxury Building $80 per night,11708118,Brian,Manhattan,Financial District,40.70373,-74.00827,Private room,86,4,2,2016-08-29,0.06,1,0 +4823105,Cozy Affordable Room Available In NYC!!,24835471,Olga,Manhattan,Washington Heights,40.84359,-73.94134,Private room,40,3,23,2019-06-29,0.43,1,70 +4823386,Lovely 2 Bedroom Family Apartment Close to City,16514175,Karen,Queens,Elmhurst,40.74632,-73.88681,Entire home/apt,165,2,58,2019-06-14,2.10,5,163 +4823529,Perfectly Located UpperWest Futon,6677425,Isabel,Manhattan,Upper West Side,40.79584,-73.96381,Shared room,35,2,134,2019-05-23,2.48,2,66 +4823682,Cat-sit in our Awesome Apartment!,2921076,Kelly,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94634,Entire home/apt,2000,7,3,2015-12-30,0.05,1,0 +4823910,Spacious and light-filled Manhattan apartment,10503302,Florence,Manhattan,Upper West Side,40.79228,-73.97414,Entire home/apt,117,14,0,,,1,15 +4823959,Private room for 2 in cool BK apt,24633966,Phil,Brooklyn,Kensington,40.64469,-73.97086,Private room,50,14,0,,,1,0 +4824052,"Big, bright Park Slope 2.5 bedroom!",24839116,Ainsley,Brooklyn,South Slope,40.66437,-73.9823,Entire home/apt,175,3,14,2017-07-22,0.25,1,0 +4824146,Spacious Apt in Bushwick,24840863,Daniel,Brooklyn,Bushwick,40.70092,-73.92945,Entire home/apt,95,1,1,2015-01-04,0.02,1,0 +4824211,Bright Comfy Room in East Village,24841295,Micheline,Manhattan,East Village,40.72503,-73.97696,Private room,70,2,5,2017-06-08,0.14,1,0 +4824310,Lovley loft in Williamsburg!,7402258,Golsana,Brooklyn,Williamsburg,40.7091,-73.94279,Entire home/apt,100,3,18,2019-05-29,0.33,1,3 +4824361,Modern Living,1445060,Chi,Brooklyn,Williamsburg,40.70777,-73.94816,Private room,150,4,3,2018-11-09,0.21,1,362 +4824521,Cozy 1 Bedroom Apt In Great Location!,24842701,Mel,Manhattan,Upper East Side,40.77493,-73.95874,Entire home/apt,169,3,130,2019-07-01,2.36,1,274 +4824808,Cozy Room in Crown Heights,24844547,Cristina,Brooklyn,Crown Heights,40.66934,-73.94976,Private room,50,1,0,,,1,0 +4824847,Times Square Midtown Mahattan Room,20934972,Kai,Manhattan,Kips Bay,40.74246,-73.9767,Private room,99,1,5,2015-11-03,0.11,1,0 +4824849,2 Bedrooom- near Columbus Circle,24844621,Paul,Manhattan,Midtown,40.76609,-73.98038,Entire home/apt,200,1,0,,,1,0 +4825359,Bright & Spacious GP/N Williamsburg,3800548,Phoebe,Brooklyn,Greenpoint,40.73176,-73.95371,Private room,70,4,6,2017-01-01,0.11,1,0 +4828336,Spacious Sunny 2 Bedroom Close to the Subway!,7552191,Lindsey,Brooklyn,Bedford-Stuyvesant,40.68515,-73.91981,Entire home/apt,130,14,33,2019-06-30,0.72,1,105 +4829068,Studio - Midtown East,17883343,Myles,Manhattan,Murray Hill,40.74768,-73.97562,Private room,125,1,0,,,1,0 +4829088,1BR apartment in the heart of SoHo,854458,Brian,Manhattan,Greenwich Village,40.72812,-73.99983,Entire home/apt,180,2,11,2017-05-22,0.22,1,0 +4829779,Sunlit Room in Brooklyn Brownstone,1631807,Jillian,Brooklyn,Clinton Hill,40.6868,-73.96517,Private room,80,5,1,2016-07-07,0.03,1,0 +4830154,"Furnished room with Bed, Closet, TV",24865745,Subramanian,Queens,Ozone Park,40.68337,-73.8431,Private room,45,1,0,,,1,0 +4830158,Loft in Brooklyn / Clinton Hill,21191214,Alex,Brooklyn,Clinton Hill,40.68348,-73.96394,Entire home/apt,99,5,0,,,1,0 +4830494,Charming & sunny studio apartment,2489199,Michael,Manhattan,Harlem,40.82376,-73.94492,Entire home/apt,99,25,16,2019-07-01,0.30,1,157 +4830799,bright and clean! vintage style!,3677131,Alex,Brooklyn,Red Hook,40.67627,-74.00625,Private room,99,1,58,2019-06-14,1.15,1,88 +4831603,Cozy Lower East Side Apartment,24872048,Kelly,Manhattan,Lower East Side,40.72229,-73.98913,Entire home/apt,225,1,0,,,1,0 +4831703,Astoria Gem: 15min. From Manhattan,24614110,Adreanna,Queens,Astoria,40.76042,-73.92073,Entire home/apt,150,1,3,2015-05-15,0.06,1,0 +4831795,Walk everywhere! Soho Charm. Bargain *NOW* Nolita,323771,Maxi,Manhattan,Nolita,40.72351,-73.99627,Entire home/apt,100,3,0,,,1,13 +4832126,HUGE SUNNY SUITE w Private Entrance 3 min to city,6707311,T-Po,Brooklyn,Williamsburg,40.71895,-73.95604,Private room,73,2,39,2019-06-13,0.71,1,260 +4833294,Spacious Apt-1 BDRM & Office,24878584,Spencer,Manhattan,East Village,40.72999,-73.98764,Private room,180,1,0,,,1,0 +4833671,Comfortable and Cozy!,20038668,Sheila,Manhattan,Harlem,40.82899,-73.95024,Private room,80,1,9,2019-06-30,0.19,1,364 +4836986,Private bedroom,24895956,Giorgi,Manhattan,East Harlem,40.78712,-73.95365,Private room,80,1,39,2017-06-16,0.91,1,189 +4837865,"Spacious, sunlit room w/balconies by Central Park",19636200,Sonam And Roommates,Manhattan,Upper West Side,40.77692,-73.97977,Private room,85,1,34,2019-07-02,0.71,1,8 +4837935,New Large 1 Bedroom East Village,24899760,Christopher,Manhattan,Stuyvesant Town,40.72912,-73.97624,Entire home/apt,175,4,0,,,1,0 +4838260,Large private room in the sky,20357771,Jun,Brooklyn,Williamsburg,40.71114,-73.94438,Private room,100,1,1,2015-05-19,0.02,1,0 +4838271,Modern fully furnished bedroom,1304390,Barry,Brooklyn,Bushwick,40.70037,-73.92821,Private room,85,4,2,2018-07-02,0.07,1,364 +4838540,"103rd st/lex/clean, Comfort and big room",10600973,Mj,Manhattan,East Harlem,40.79113,-73.94792,Private room,65,5,7,2018-05-14,0.22,1,80 +4839016,Queen Room in Penthouse Fidi Apt,24903878,Herbie,Manhattan,Financial District,40.70465,-74.00773,Private room,150,1,1,2015-01-01,0.02,1,0 +4839323,Perfect 2-bedroom in the best part of Williamsburg,988069,Angelina,Brooklyn,Williamsburg,40.71983,-73.96465,Entire home/apt,249,30,0,,,1,0 +4839357,1 Bedroom apartment with Backyard ,854567,Oketo,Brooklyn,Bushwick,40.68843,-73.91577,Private room,40,1,0,,,2,0 +4839805,Beautiful Room by Central Park,6430105,Lisa,Manhattan,Upper West Side,40.77773,-73.97764,Private room,200,1,1,2015-06-22,0.02,1,0 +4839932,"Super spacious cozy one-bedroom apartment, Astoria",24907501,Milena,Queens,Astoria,40.76974,-73.91819,Entire home/apt,124,14,8,2019-01-03,0.15,1,0 +4840211,Cozy Queen BR in Hell's Kitchen,24821875,Rosalia,Manhattan,Hell's Kitchen,40.76451,-73.9882,Private room,200,1,0,,,1,0 +4840381,"Chill 2B UWS, close to A,C,E/1,2,3",12730517,Robert,Manhattan,Upper West Side,40.80107,-73.96065,Entire home/apt,50,1,1,2016-03-16,0.02,1,0 +4840794,1 Bedroom Apt. in Nolita/Chinatown,24833732,Bobby,Manhattan,Little Italy,40.71763,-73.99753,Entire home/apt,160,2,6,2017-04-17,0.12,1,0 +4840841,"Quiet, Modern Gem in LES w balcony!",4244200,Claire,Manhattan,Lower East Side,40.71942,-73.98605,Entire home/apt,200,2,0,,,1,0 +4840977,Spacious Chinatown/LES 2 Bedroom,24913141,Mara,Manhattan,Lower East Side,40.7182,-73.99326,Entire home/apt,300,6,0,,,1,0 +4841187,Well-kept Studio/♥ of Chelsea,14923355,Ra-Ey,Manhattan,Chelsea,40.74583,-74.00405,Entire home/apt,200,3,7,2017-07-12,0.13,1,0 +4841431,Spacious 1BR By Prospect Park,24915465,Oded,Brooklyn,Prospect-Lefferts Gardens,40.66244,-73.95813,Entire home/apt,139,1,44,2016-05-08,0.80,1,0 +4841843,"Huge, Sunny Bedroom in Bushwick",15615036,Ronnie,Brooklyn,Bushwick,40.69091,-73.91402,Private room,49,4,19,2018-11-15,0.35,2,0 +4842054,Cozy Bedroom in hip Williamsburg,24918898,Javier,Brooklyn,Williamsburg,40.70765,-73.95116,Private room,55,4,13,2016-06-14,0.24,2,0 +4842112,2 bed / 2 bath East Village top floor AMAZING,7065271,Sophie,Manhattan,East Village,40.72551,-73.98542,Entire home/apt,260,10,4,2018-08-31,0.08,1,31 +4842507,Two Bedrooms in Chelsea Apartment,6954001,Arian,Manhattan,Chelsea,40.74372,-73.99682,Private room,150,1,0,,,1,0 +4845237,East Village Beauty,12485770,Raanan,Manhattan,East Village,40.72829,-73.98072,Entire home/apt,110,30,8,2018-08-14,0.18,9,280 +4846199,Beautiful Boerum Hill apartment!,5545129,Brady,Brooklyn,Boerum Hill,40.68896,-73.98961,Entire home/apt,110,5,2,2015-10-12,0.04,1,0 +4846449,Perfect room/Great Safe Location 20mins to TimesSq,6486116,Ari,Manhattan,East Harlem,40.78804,-73.94906,Private room,81,1,142,2019-06-01,2.81,4,223 +4846754,Basement apartment in bedstuy,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68266,-73.95032,Entire home/apt,60,1,23,2019-07-05,1.99,15,83 +4846877,A Crown Heights Holiday ,6706914,Leanne,Brooklyn,Crown Heights,40.67278,-73.95688,Private room,65,1,1,2015-01-04,0.02,2,0 +4847312,Clinton Hill Guest Room,24941494,Rudy And Joan,Brooklyn,Clinton Hill,40.68924,-73.96453,Private room,175,3,0,,,1,83 +4847624,Cozy 1BR in Brooklyn Heights ,22930715,Natalie,Brooklyn,Brooklyn Heights,40.69191,-73.99331,Entire home/apt,130,2,1,2015-01-03,0.02,1,0 +4847648,Spacious Williamsburg Home,157051,Agatha,Brooklyn,Williamsburg,40.71411,-73.9495,Entire home/apt,240,2,9,2017-12-28,0.20,1,0 +4848500,Cesco's House,6902571,Francesco,Brooklyn,Bedford-Stuyvesant,40.68886,-73.95212,Entire home/apt,130,2,6,2018-04-24,0.29,1,0 +4848528,"STUNNING 1BD BRIGHT UNIT, RENOVATED",1475015,Mike,Manhattan,Hell's Kitchen,40.76719,-73.98533,Entire home/apt,97,30,6,2017-08-09,0.12,52,365 +4849266,Room for rent in Sheepshead bay,24950473,Dasha,Brooklyn,Sheepshead Bay,40.58414,-73.95489,Private room,50,2,0,,,1,0 +4849703,Huge Loft In heart of Bushwick,21209568,Greg,Brooklyn,Bushwick,40.70516,-73.91946,Entire home/apt,88,7,2,2015-09-27,0.04,1,0 +4849864,Cozy Quiet Apt 10min to Manhattan,2464823,Andy,Queens,Astoria,40.7643,-73.92637,Entire home/apt,112,7,5,2016-10-04,0.10,1,0 +4850000,1 Bedroom in Bushwick APT,22219331,Sam,Brooklyn,Bushwick,40.70141,-73.91782,Private room,65,1,0,,,1,0 +4853011,Charming apt in beautiful Brooklyn!,24967136,Paul,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93183,Entire home/apt,105,7,53,2018-10-28,1.12,2,77 +4853287,Currently Not Avail,23621417,Agel,Brooklyn,Williamsburg,40.70969,-73.94925,Entire home/apt,120,1,0,,,1,0 +4853365,2 Bedroom midcentury Brooklyn Brownstone apartment,414477,Ajay,Brooklyn,Crown Heights,40.6776,-73.94918,Entire home/apt,70,2,15,2019-03-24,0.27,1,18 +4853437,Comfortable Room in Great Location,24880134,Cam,Brooklyn,Prospect Heights,40.67935,-73.96912,Private room,75,3,1,2018-09-15,0.10,3,0 +4853647,Modern & luxurious close to trains,6162041,Nick,Queens,Ozone Park,40.68559,-73.8496,Entire home/apt,99,2,129,2019-06-30,2.33,1,344 +4853870,Amazing Brooklyn Heights 2BR+patio,11064999,Andrei,Brooklyn,Brooklyn Heights,40.69454,-73.99547,Entire home/apt,275,5,0,,,1,0 +4854552,Apartment Downtown New York ,24973819,Wen,Manhattan,Stuyvesant Town,40.73001,-73.97579,Private room,600,1,0,,,1,0 +4855004,Cozy UWS room with amazing Hudson view,12220,Corina E.,Manhattan,Upper West Side,40.77904,-73.98899,Private room,90,1,24,2019-05-18,0.46,3,341 +4855612,Cozy Spacious Apartment,24448659,Christian,Brooklyn,Midwood,40.62971,-73.95069,Entire home/apt,60,3,1,2015-01-02,0.02,1,0 +4855835,"Brooklyn luxury bldg, with rooftop and balcony!",2306320,Michelle,Brooklyn,Crown Heights,40.6785,-73.96041,Entire home/apt,125,1,7,2016-10-30,0.20,1,0 +4856857,Great location with private access & private bath,14747290,Corinne,Brooklyn,Bushwick,40.70583,-73.91658,Private room,65,10,4,2018-07-13,0.27,1,349 +4857075,Beautiful apartment in Bushwick,4306959,Arikia,Brooklyn,Bushwick,40.69986,-73.9298,Entire home/apt,159,3,30,2018-01-01,0.54,1,0 +4857619,Entire One-Bedroom Apartment Near Columbia Univers,19263941,John,Manhattan,Morningside Heights,40.80442,-73.96338,Entire home/apt,145,5,3,2016-01-02,0.06,1,0 +4859716,Cozy Room - Best Manhattan Location,3449749,Jeana Paola,Manhattan,Upper East Side,40.76203,-73.96183,Private room,130,1,0,,,1,0 +4859903,Entire 1 Bedroom 1 Bath Central Park APT,15398647,Kathy,Manhattan,Upper West Side,40.7838,-73.97266,Entire home/apt,255,2,47,2019-06-08,0.92,1,352 +4860430,Location is Everything!,25002053,Shailah,Manhattan,Upper West Side,40.78866,-73.96908,Private room,90,2,157,2019-06-23,2.95,1,85 +4860650,Happy Brooklyn! Happy Konakolo!,25001808,Hanayo,Brooklyn,South Slope,40.66003,-73.98567,Entire home/apt,150,3,73,2019-06-18,1.34,1,120 +4860876,Huge Classic Williamsburg 2BR loft,2503221,Shuang,Brooklyn,Williamsburg,40.72104,-73.96034,Entire home/apt,295,2,75,2019-06-17,1.50,1,339 +4861046,Beautiful light cozy apartment,7355953,Carmen,Queens,Astoria,40.75741,-73.92509,Entire home/apt,125,1,0,,,1,0 +4863176,Large room in Uptown Manhattan near Cloisters,25015010,Irina,Manhattan,Inwood,40.86648,-73.92754,Entire home/apt,75,1,5,2016-09-01,0.11,1,31 +4863419,NEW LISTING-Great for Traveler! Duplx 3 Bdrm/2 Bth,25017014,Quincy,Brooklyn,Bedford-Stuyvesant,40.68662,-73.9479,Entire home/apt,188,2,23,2019-07-02,3.47,1,75 +4865377,Spacious Studio Apartment ,11457159,Logan,Manhattan,Upper East Side,40.78335,-73.94822,Entire home/apt,130,1,2,2017-10-25,0.09,1,0 +4865387,"Spacious, Cozy 1 Bedroom",7017213,Lenore,Brooklyn,Flatbush,40.64919,-73.96129,Entire home/apt,72,1,3,2016-06-05,0.07,1,0 +4865454,"Cozy room in Queens, 20 min to NYC",5650180,Jessica,Queens,Elmhurst,40.74513,-73.8825,Private room,45,3,12,2019-04-28,0.37,2,201 +4866426,Private Room in Prime Brooklyn Spot,2346300,Donna And Joaquin,Brooklyn,Boerum Hill,40.68983,-73.99114,Private room,80,1,168,2019-06-30,3.11,1,272 +4866620,Private room on Upper East Side,1292274,Forest,Manhattan,Upper East Side,40.78343,-73.94764,Private room,94,1,51,2019-06-11,0.93,2,88 +4866867,"Brooklyn. Room, private bath & private entrance",1113080,Audrey,Brooklyn,Sunset Park,40.64605,-74.00338,Private room,70,22,16,2019-06-02,0.29,3,173 +4866875,2BD loft with 180 Manhattan view,87473,Sibin,Brooklyn,Greenpoint,40.72996,-73.95302,Entire home/apt,150,6,1,2019-01-03,0.16,1,0 +4867016,Charming Brooklyn Getaway,1968327,Azza,Brooklyn,Bedford-Stuyvesant,40.69268,-73.95575,Private room,70,2,6,2019-05-20,0.12,1,365 +4867504,"Quite Room, Private Bath Easy Tra!",10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.6815,-73.91267,Private room,42,30,3,2016-01-02,0.05,5,348 +4867749,Sunny apt in heart of The Village!,4952537,Eric,Manhattan,Greenwich Village,40.72904,-74.00116,Entire home/apt,225,3,0,,,1,0 +4867876,Sunny and Spacious Brooklyn Apt,25037051,Ruth,Brooklyn,Crown Heights,40.67006,-73.9553,Private room,70,1,10,2017-01-02,0.18,2,0 +4868048,Room in Down town Brooklyn Parkslop,15442902,Akim,Brooklyn,Boerum Hill,40.6832,-73.98109,Private room,60,1,0,,,1,0 +4868150,Gorgeous quiet & central NYC apt!,3336995,Tamara,Manhattan,Hell's Kitchen,40.76736,-73.98383,Entire home/apt,180,2,8,2017-09-24,0.15,1,10 +4868571,Beautiful & Cozy true 2 Bedroom in SoHo/Nolita,25043292,Vane,Manhattan,Nolita,40.72011,-73.99465,Entire home/apt,150,3,2,2019-01-02,0.08,2,0 +4869988,Private Room - 2 blocks from Central Park,1509237,Leandro,Manhattan,East Harlem,40.7951,-73.94716,Private room,105,2,88,2019-05-27,2.03,2,266 +4870239,2 bdrms in 3 Bdrm Lovely Brownstone,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69627,-73.94371,Entire home/apt,100,5,9,2018-11-24,0.17,3,262 +4871966,Williamsburg Brooklyn Apartment,3896287,Andrew And Clara,Brooklyn,Williamsburg,40.71396,-73.94021,Entire home/apt,225,4,9,2016-07-18,0.16,1,0 +4873207,Bright Beautiful Spacious 1 bedroom,12708335,Sara,Brooklyn,Crown Heights,40.66948,-73.95157,Entire home/apt,125,15,0,,,1,0 +4873690,"Private room, 10min to Times Square",4712698,Jonathan,Queens,Long Island City,40.74282,-73.94994,Private room,82,2,116,2019-05-25,2.10,1,58 +4873699,"Classic Tenement 1BR, Center of LES",22840947,Michael,Manhattan,Chinatown,40.71633,-73.99133,Entire home/apt,140,1,0,,,1,0 +4874334,2 Bedroom Apt in downtown Brooklyn,25073318,Brook,Brooklyn,Fort Greene,40.69203,-73.97088,Entire home/apt,250,4,0,,,1,0 +4874519,Garden Spot in Bushwick,6439895,Bradley,Brooklyn,Bushwick,40.70253,-73.91889,Private room,69,4,0,,,1,0 +4874735,Beautiful Apt in Prime NY Location,516877,Julie,Manhattan,Hell's Kitchen,40.76332,-73.9863,Entire home/apt,275,2,0,,,1,0 +4877884,Bright + Stylish *THREE* Bedroom BK Apt Near Train,25093848,Faye + Amiyr,Brooklyn,Bedford-Stuyvesant,40.68175,-73.9153,Entire home/apt,145,3,209,2019-06-18,3.79,1,219 +4879530,LUXURY PRIVATE MANHATTAN APARTMENT,25102191,Andy,Manhattan,East Harlem,40.80732,-73.93972,Entire home/apt,125,7,0,,,1,0 +4879911,"Sunny, spacious bedroom with a view",1473630,Hillela,Brooklyn,Gowanus,40.68234,-73.98168,Private room,100,1,2,2015-04-25,0.04,1,0 +4880277,Large 1 Bedroom Artist Loft in the Lower East Side,18254644,Sarah,Manhattan,Lower East Side,40.71951,-73.98449,Entire home/apt,100,5,131,2019-01-01,2.40,1,108 +4880542,Artists Home with Large Sunny Backyard+Parking,66276,Lee,Brooklyn,Williamsburg,40.7077,-73.94785,Entire home/apt,190,6,8,2019-01-02,0.16,1,5 +4880811,A writer's den in Nolita ...,3568184,Brock,Manhattan,SoHo,40.72219,-73.99742,Entire home/apt,200,1,49,2016-07-29,0.94,1,0 +4880985,"Modern, south facing and spacious UWS 1BR",25110559,Max,Manhattan,Upper West Side,40.77669,-73.97696,Entire home/apt,125,31,1,2015-04-01,0.02,1,41 +4881017,"Spacious, 3 bedrooms, 2 bath",23439479,Victoria,Manhattan,Inwood,40.86494,-73.92672,Entire home/apt,300,4,3,2018-10-08,0.06,2,316 +4881420,LARGE COZY STUDIO BEST LOCATION - PARADISIAC OASIS,25112856,Mio,Manhattan,West Village,40.73933,-74.00313,Entire home/apt,159,4,40,2019-06-24,0.83,1,267 +4884601,1BD UWS Apt. 1 block from C. Park,12417880,Carson,Manhattan,Upper West Side,40.79527,-73.96486,Entire home/apt,225,2,0,,,1,0 +4885240,2BR Entire Floor Apt in Flatiron,210602,Deepen,Manhattan,Chelsea,40.73932,-73.99032,Entire home/apt,300,1,0,,,1,0 +4885569,"Heart of Greenwich Village - Large, Clean Space",17056215,Yaniv And Vanessa,Manhattan,Greenwich Village,40.73055,-74.0007,Entire home/apt,180,2,28,2018-12-31,0.58,1,0 +4885595,1 bd apt in Astoria,25134822,Irena,Queens,Astoria,40.77029,-73.92493,Entire home/apt,99,1,38,2019-06-28,0.74,2,263 +4885673,Stylish Apartment with Spacious Private Room,24943630,Sarah,Manhattan,Greenwich Village,40.73222,-73.9969,Private room,120,4,19,2019-07-05,0.35,1,339 +4885975,Large Bedroom by Grand Central Station in NYC,21817218,Jason,Manhattan,Midtown,40.75163,-73.9722,Private room,90,7,27,2018-08-09,0.50,1,35 +4886678,Big & Sunny room w Private Entrance,2470606,Ben,Brooklyn,Greenpoint,40.72418,-73.94757,Private room,59,1,2,2015-06-02,0.04,1,0 +4887250,VICTORIAN SUNFILLED APT DREAM VIEW,1705071,Nika,Queens,Long Island City,40.74741,-73.94712,Private room,95,1,141,2019-06-24,2.77,2,331 +4887473,Cozy Brownstone Room Near NYU Hospital,24982697,Fidelia,Brooklyn,Sunset Park,40.64132,-74.01767,Private room,65,30,11,2019-04-12,0.20,2,312 +4887638,"Sunnyside, New York - Stay and get connected",25145883,Sp,Queens,Sunnyside,40.74461,-73.91514,Private room,40,2,2,2019-06-29,2,1,5 +4887727,Spend the Fall in NoLita!,3339901,Meghan,Manhattan,Nolita,40.72285,-73.99409,Entire home/apt,250,4,7,2015-10-21,0.14,1,0 +4889948,Cozy Quiet Room in Williamsburgs,17928071,Mabel,Brooklyn,Williamsburg,40.71009,-73.9575,Private room,85,3,23,2019-04-01,0.42,2,280 +4890335,Spacious Rm in 3br apt-private bath,7920086,Susan,Manhattan,East Harlem,40.78615,-73.94295,Private room,71,30,19,2018-10-28,0.35,3,0 +4891172,Peaceful 1BD in Historic W. Harlem,14813211,Vriana,Manhattan,Harlem,40.81964,-73.9468,Entire home/apt,109,4,0,,,1,0 +4891441,"166 Reviews, Single-Family House",3417940,Jeremy,Brooklyn,Gowanus,40.67308,-73.99333,Entire home/apt,262,2,166,2017-09-29,3.06,1,0 +4891477,Bedford Loft in Williamsburg,6438118,Zachary,Brooklyn,Williamsburg,40.71279,-73.9641,Private room,55,3,0,,,1,0 +4891616,"Very spacious, clean Manhattan Apt",25168328,Daniel,Manhattan,Harlem,40.82389,-73.94033,Entire home/apt,70,1,1,2016-02-01,0.02,1,0 +4891701,NYC GORGEOUS LIGHT SPACE RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82191,-73.95736,Entire home/apt,109,14,3,2015-01-03,0.05,3,0 +4892675,20 min from Union Square,25175433,Pablo,Queens,Ridgewood,40.69958,-73.90825,Private room,40,3,0,,,1,0 +4896937,Cute 1 Bedroom in 2BR Apartment,9845403,Lenur,Queens,Long Island City,40.75358,-73.92336,Private room,70,1,0,,,1,0 +4897673,Room available for long term,14035846,Monica,Queens,Sunnyside,40.74383,-73.92077,Private room,50,15,2,2018-08-12,0.17,1,341 +4900034,Gorgeous Loft apt. Prime Location with Rooftop,14289427,Francesca,Manhattan,Chinatown,40.71579,-73.99253,Private room,120,5,8,2018-11-21,0.15,3,318 +4901020,Summer sublet sunny room in Harlem,10450922,Prerna,Manhattan,Harlem,40.8076,-73.95274,Private room,80,50,0,,,1,0 +4901269,Brooklyn Heights ,6285979,Alexandra,Brooklyn,Brooklyn Heights,40.6945,-73.99543,Entire home/apt,200,3,6,2016-11-10,0.11,1,0 +4901424,HOME SWEET HOME - VISIT NYC!,25230336,Juan Carlos,Brooklyn,Clinton Hill,40.68382,-73.96292,Entire home/apt,300,3,0,,,1,0 +4901617,"Bright, Spacious 1BR - West Village",16460889,Daniel,Manhattan,Greenwich Village,40.72969,-73.9995,Entire home/apt,175,1,4,2016-01-03,0.08,1,0 +4902025,BIG ROOM IN BROOKLYN!! ,5564276,Monica,Brooklyn,Bedford-Stuyvesant,40.68998,-73.95646,Private room,75,1,0,,,1,0 +4902143,"Large One Bedroom Apartment, 15 mins to Manhattan",557918,Bill & Regina,Queens,Sunnyside,40.74628,-73.9196,Entire home/apt,119,6,15,2019-03-09,0.46,1,1 +4902497,CLOSE- EAST SIDE HOSPITALS- 2 Bedroom Apt 5C,25237492,Juliana,Manhattan,Upper East Side,40.76067,-73.9602,Entire home/apt,165,30,11,2018-03-31,0.21,34,274 +4904582,Boutique Retreat,25249481,Jacqueline,Bronx,Mount Hope,40.85062,-73.90251,Private room,40,14,5,2017-06-17,0.13,1,322 +4905118,TOWNHOUSE NEAR RSD PARK - Spacious 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper West Side,40.78286,-73.98339,Entire home/apt,265,30,14,2018-11-04,0.26,34,274 +4905248,*DYLAN* Exquisite 1 BR & Terrace - Contemporary,25237492,Juliana,Manhattan,Upper West Side,40.78141,-73.98445,Entire home/apt,130,30,12,2019-04-18,0.23,34,292 +4905337,"Clean and Serene Kensington, Bk",13772270,Mariano,Brooklyn,Kensington,40.6461,-73.97332,Entire home/apt,85,2,3,2017-05-10,0.08,1,351 +4906823,Beautiful sunny apt near prospect park!,25263341,Dana,Brooklyn,Crown Heights,40.66412,-73.95591,Private room,70,15,1,2015-12-31,0.02,1,314 +4906961,Gorgeous Waterfront Studio: Williamsburg,551139,Owen,Brooklyn,Williamsburg,40.70666,-73.96526,Entire home/apt,210,3,31,2019-05-13,0.57,1,0 +4907206,New Year's Eve in the Heart of NYC!,25264954,Andrew,Manhattan,Hell's Kitchen,40.7583,-73.99001,Private room,225,1,0,,,1,0 +4907369,Funky and Fresh room in Brooklyn ,25037051,Ruth,Brooklyn,Crown Heights,40.66915,-73.95339,Private room,46,1,8,2017-08-28,0.15,2,333 +4907749,Cosy room in spacious apartment,25268374,Gabriela,Brooklyn,Crown Heights,40.6741,-73.94496,Private room,75,1,0,,,1,0 +4907861,Huge Brooklyn Oasis only 1 block from subway!,25268900,Jessica,Brooklyn,Bushwick,40.70083,-73.91679,Entire home/apt,126,3,98,2019-06-13,1.95,1,180 +4908078,Modern Minimalism w/ Private Bath,25242899,Dave,Brooklyn,Sunset Park,40.65616,-74.00091,Private room,88,4,42,2019-07-01,0.82,1,261 +4908331,Beautiful and Spacious 2 bedroom West Harlem Apt.,25266756,Antoinette,Manhattan,Harlem,40.80739,-73.95159,Entire home/apt,150,5,14,2019-06-20,0.26,1,66 +4908634,Cozy Downtown Brooklyn Apartment,25273326,Dennis,Brooklyn,Fort Greene,40.68528,-73.97528,Entire home/apt,175,1,89,2019-04-28,1.77,1,0 +4908978,"1BR in Murray Hill, E 26th & 2nd Ave (30 DAYS MIN)",23772724,Elem,Manhattan,Hell's Kitchen,40.76102,-73.98882,Entire home/apt,380,30,5,2017-04-18,0.11,15,332 +4909080,2 Stops to MANHATTAN!,25276263,Charles,Brooklyn,Boerum Hill,40.6881,-73.98699,Entire home/apt,500,6,29,2016-09-02,0.53,1,89 +4909427,Oasis in Prime LES,6230230,John,Manhattan,Lower East Side,40.71806,-73.98493,Private room,110,20,13,2016-01-02,0.25,3,0 +4909438,New Year's in the East Village,24127267,Arnell,Manhattan,East Village,40.73037,-73.98268,Entire home/apt,175,1,1,2015-01-02,0.02,1,0 +4916150,Great location in South Manhattan,236659,Justin,Manhattan,Financial District,40.7082,-74.00139,Private room,78,1,1,2015-02-20,0.02,1,0 +4916323,Luxurious 2BD Perfect for Kids,4422415,Damien,Manhattan,Upper East Side,40.77716,-73.94779,Entire home/apt,250,2,11,2019-04-26,0.21,2,358 +4916340,Central Park Suite,81335,Evan,Manhattan,Upper West Side,40.78334,-73.97452,Entire home/apt,125,1,171,2019-07-03,4.63,3,121 +4917122,Beautiful 1 br Williamsburg apt,4445005,Jamaal,Brooklyn,Williamsburg,40.71281,-73.9657,Entire home/apt,200,2,3,2018-08-30,0.10,1,16 +4917217,Labor Day Special: Brooklyn Base Camp,1780076,Ashleigh,Brooklyn,Crown Heights,40.6763,-73.95764,Private room,55,3,0,,,2,0 +4918117,Lovely room!- 15 min to Manhattan!!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68679,-73.92327,Private room,65,2,9,2015-05-20,0.17,4,280 +4920912,Stylish & New Chelsea Apartment,22338025,Kerrie,Manhattan,Chelsea,40.74244,-73.99854,Entire home/apt,175,1,0,,,1,0 +4921548,"*OASIS* 2 BEDROOM, 2 BATH & Garden! Great UWS Area",25237492,Juliana,Manhattan,Upper West Side,40.7813,-73.98319,Entire home/apt,205,30,20,2018-12-27,0.38,34,274 +4924590,Beautiful Apartment near subway,25365628,Brian,Queens,Woodside,40.74468,-73.91102,Entire home/apt,90,1,0,,,1,0 +4925050,"Beautiful Guest Room in Fort Greene, Brooklyn",23069182,Richard,Brooklyn,Fort Greene,40.68346,-73.97214,Private room,100,1,55,2019-06-23,4.16,1,342 +4925368,Great Room with Good Amenities,331579,Marlon,Brooklyn,Bedford-Stuyvesant,40.68744,-73.92322,Private room,60,3,29,2019-06-04,0.60,2,232 +4925517,L♥vely 1BR! Times Square BROADWAY Theatre District,22210080,Kyle,Manhattan,Hell's Kitchen,40.76175,-73.9892,Private room,99,1,318,2019-06-24,5.78,1,0 +4926610,Panoramic City Views in Lux bldg,7537442,Loydeen,Manhattan,East Harlem,40.80315,-73.94017,Private room,50,7,25,2019-06-28,0.50,1,151 +4927853,"All-Inclusive Room, Super Cute Apt",331579,Marlon,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92331,Private room,50,3,32,2019-06-23,0.72,2,329 +4928303,Cozy & Clean #2,23533897,Fatou,Brooklyn,Crown Heights,40.67419,-73.95251,Private room,68,1,91,2019-06-17,1.78,7,329 +4929917,"Huge, Cozy 1BR in the ❤️️ of Harlem",25003560,Adam,Manhattan,Harlem,40.81405,-73.95285,Entire home/apt,125,1,31,2018-09-03,0.57,1,188 +4930306,Charming One Bedroom in Chelsea,25394253,Pete,Manhattan,Chelsea,40.74141,-73.99996,Entire home/apt,175,1,1,2015-02-20,0.02,1,0 +4930683,This cozy space is a newly renovate,25399747,Ron,Brooklyn,Bedford-Stuyvesant,40.68168,-73.9368,Entire home/apt,100,3,91,2019-01-01,2.00,1,160 +4930951,Quiet queen bed in bustling Greenwich Village,15824660,Jack,Manhattan,Greenwich Village,40.7282,-74.00165,Private room,85,2,0,,,1,0 +4931807,Cozy & Quaint,25401356,Krystle,Manhattan,East Harlem,40.79717,-73.93298,Entire home/apt,125,2,7,2016-01-09,0.15,1,0 +4932075,Brooklyn Beauty! Private Bed+Bath,5037211,Mariana,Brooklyn,Greenpoint,40.72023,-73.9479,Private room,118,3,1,2015-09-29,0.02,2,188 +4932139,Luxury in Best Location,25404246,Stacey,Manhattan,Nolita,40.72139,-73.99688,Entire home/apt,346,198,163,2018-11-21,2.96,1,0 +4932714,1 bd Artist Retreat in Brooklyn,25295888,Alanna,Brooklyn,Bedford-Stuyvesant,40.67917,-73.92565,Private room,52,2,16,2017-09-30,0.37,1,0 +4933043,Mid Century Modern 2 Bedroom Apt,864735,Jason,Queens,Astoria,40.75782,-73.92128,Entire home/apt,107,30,15,2018-12-04,0.29,8,311 +4936023,Nice studio in Midtown Manhattan,8183266,Zahid,Manhattan,Midtown,40.75462,-73.96869,Entire home/apt,99,2,168,2019-06-16,3.10,1,46 +4936254,Big & bright 2 bedroom apartment! Lower East Side!,22087408,Dominik,Manhattan,Lower East Side,40.71763,-73.98359,Entire home/apt,150,1,17,2019-07-07,0.36,3,264 +4936694,PenthousPrivate room & bath w roof,2439175,Gary,Brooklyn,Bedford-Stuyvesant,40.69147,-73.94113,Private room,65,4,180,2019-06-17,3.37,1,6 +4937135,Big & bright apt in Harlem!,25439443,Joel,Manhattan,Harlem,40.81831,-73.93833,Entire home/apt,85,30,5,2017-07-31,0.11,1,7 +4941141,Cozy Apt.Near Park/Museums & Subway,15297517,Christopher,Manhattan,Upper East Side,40.78096,-73.9475,Entire home/apt,155,4,9,2015-10-27,0.19,1,0 +4941771,Perfectly Located Brooklyn Studio,25468442,Alexandra,Brooklyn,Prospect Heights,40.67273,-73.96361,Entire home/apt,125,2,34,2017-12-26,0.64,1,0 +4942200,A lovely room in heart of NY,519554,Umut&Deniz,Manhattan,Lower East Side,40.72007,-73.98775,Private room,59,3,36,2019-06-18,0.80,5,349 +4942523,Huge Room 15 min to Grand Central,25473311,Michael,Queens,Sunnyside,40.73835,-73.92636,Private room,70,7,56,2019-01-01,1.18,2,90 +4942985,Quirky BrwnStone Studio in Harlem ,25476493,Taylor,Manhattan,Harlem,40.80607,-73.94805,Entire home/apt,115,1,0,,,1,0 +4943742,Beautiful full-service UWS studio ,3834614,Jilly,Manhattan,Upper West Side,40.79432,-73.97637,Private room,175,10,0,,,1,0 +4946624,Stylish Apartment in post-war walk-up Building,25494876,Vivienne,Manhattan,Lower East Side,40.71959,-73.9919,Entire home/apt,149,2,14,2018-09-09,0.28,1,0 +4947174,Open Room for 12 Days this February,25412718,Benjamin,Brooklyn,Crown Heights,40.66948,-73.93638,Private room,50,5,0,,,1,0 +4947515,Your Home with View in Greenpoint!,1556712,Margrethe,Brooklyn,Greenpoint,40.73208,-73.95653,Entire home/apt,190,3,32,2019-06-04,0.60,1,265 +4948928,HUGE 1 BED@TIMES SQUARE@BRAND NEW!!,914838,Lior,Manhattan,Hell's Kitchen,40.76537,-73.99438,Entire home/apt,80,20,5,2017-01-17,0.15,7,346 +4948953,Greenpoint apartment,19965673,Amanda,Brooklyn,Greenpoint,40.72086,-73.94609,Private room,75,1,0,,,1,0 +4950357,"Quiet Room, Near Columbia University & Subway",8253604,James & Shaun,Manhattan,Harlem,40.81561,-73.95264,Private room,89,1,203,2019-06-28,3.89,2,162 +4950807,Amazing Central Park view,25517905,Andreias,Manhattan,Upper West Side,40.79751,-73.96168,Private room,123,3,176,2019-06-21,3.39,3,253 +4951402,Best Location on the UWS!!,10795846,Sasha,Manhattan,Upper West Side,40.78936,-73.97502,Private room,78,2,171,2018-01-14,3.43,2,0 +4952989,Sun-Filled Apartment 1 Minute From Subway,25379501,Rivka,Brooklyn,Crown Heights,40.66585,-73.94993,Private room,62,1,44,2019-06-23,1.26,1,77 +4956293,South Slope Pied-A-Terre Studio,7463662,Nick,Brooklyn,South Slope,40.66599,-73.9869,Entire home/apt,120,2,149,2018-06-14,2.76,1,0 +4956469,Contemporary & Clean 1 bdrm Apartment(Lower Level),25537637,Emmanuel,Queens,Bayside,40.7583,-73.77232,Entire home/apt,80,2,123,2019-07-05,4.69,1,108 +4956896,"Modern, Bright, One Bedroom",8951256,Solomon,Manhattan,Lower East Side,40.71316,-73.9916,Entire home/apt,180,3,38,2019-06-07,0.81,1,36 +4957358,A Romantic Loft plus terrace Heart of Brooklyn,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93141,Entire home/apt,145,2,222,2019-06-26,4.15,4,109 +4958223,Beautiful Central Park View,25517905,Andreias,Manhattan,Upper West Side,40.7962,-73.96156,Private room,99,1,277,2019-06-23,5.44,3,294 +4961949,Huge Bright 1BR+Office in Downtown Manhattan NYC!,1649951,Sameer,Manhattan,Lower East Side,40.72091,-73.98475,Entire home/apt,300,3,57,2019-06-23,1.12,1,168 +4963215,East Village Floor Thru plus Garden,7245581,Michael,Manhattan,East Village,40.72251,-73.97677,Entire home/apt,87,100,5,2019-01-02,0.10,19,7 +4963237,"DOMINIQUE'S NYC cosy,2 bedrm crashPad*Stay here*",310670,Vie,Bronx,Eastchester,40.87829,-73.83471,Entire home/apt,155,2,11,2019-05-19,0.29,13,348 +4963511,Dominiq's NY cosy 3bedrm crashpad*metro*wifi*$$ale,310670,Vie,Bronx,Eastchester,40.88017,-73.83484,Entire home/apt,250,1,15,2019-06-02,1.08,13,357 +4965152,Stylish and cozy SOHO loft bedroom,14854832,Alix,Manhattan,SoHo,40.72101,-74.00189,Private room,130,1,9,2016-12-16,0.17,1,0 +4966559,cozy room 5 minutes to manhattan,25602663,Mizo,Queens,Long Island City,40.75202,-73.93588,Shared room,65,4,1,2018-10-16,0.11,2,1 +4967004,Funky Union Square Apartment,2007148,Chris,Manhattan,Gramercy,40.73721,-73.98887,Entire home/apt,156,3,4,2017-01-03,0.08,1,0 +4967098,"Bronx, 1Bdrm in 3Bdrm Apt.",25605654,Cindy,Bronx,Morris Park,40.85465,-73.85669,Private room,50,1,2,2015-02-23,0.04,1,0 +4967114,Beautiful One Bedroom Apartment,25605887,Cindy,Manhattan,Hell's Kitchen,40.7666,-73.98475,Entire home/apt,450,1,0,,,1,0 +4967258,private room avail in lovely BK apt,25082897,Fen,Brooklyn,Bushwick,40.70516,-73.91609,Private room,40,1,0,,,1,0 +4968633,Private Cozy Bright Brooklyn Studio,248490,Leecia,Brooklyn,Bedford-Stuyvesant,40.68045,-73.93796,Entire home/apt,95,3,51,2019-07-02,1.19,2,194 +4968798,Room in Jackson Heights (Queens),23345098,Jorge,Queens,East Elmhurst,40.75703,-73.87667,Private room,45,7,30,2019-04-14,0.56,1,115 +4968817,Hostal : FULL SIZE BUNK BED ( Bottom on floor),2793778,Fernando,Queens,Forest Hills,40.71543,-73.83564,Shared room,60,4,45,2019-04-12,0.87,5,0 +4970846,GREAT ROOM IN HELL'SKITCHEN!!,9271872,Anthony,Manhattan,Hell's Kitchen,40.76543,-73.99154,Private room,100,4,117,2019-06-28,2.44,2,162 +4973452,Canal Street bedroom ,693815,Jimmy,Manhattan,Chinatown,40.71652,-73.99801,Private room,75,1,0,,,1,0 +4973520,Sunny Room near Central Park,12342828,Marco,Manhattan,East Harlem,40.79399,-73.94255,Private room,84,4,99,2019-06-28,2.06,2,11 +4974843,Charming private Studio,25641892,Tonia,Staten Island,West Brighton,40.63182,-74.124,Entire home/apt,70,2,196,2019-06-21,3.63,1,231 +4976848,a cozy room in manhattan!,519554,Umut&Deniz,Manhattan,Lower East Side,40.71904,-73.98962,Private room,69,2,80,2019-06-24,1.49,5,331 +4976919,"Huge artist loft, heart of W'Burg!",373019,Leah,Brooklyn,Williamsburg,40.71189,-73.94632,Private room,62,30,3,2015-09-29,0.06,1,319 +4977744,Lower East Side Gem,10350245,Brian,Manhattan,Lower East Side,40.72076,-73.98925,Entire home/apt,200,1,1,2015-01-18,0.02,1,0 +4977756,1bd in fantastic BK location,25659180,Justin,Brooklyn,Crown Heights,40.6729,-73.96003,Entire home/apt,100,2,4,2016-04-29,0.08,1,0 +4978214,The Golden Room,3737351,Lawrence,Brooklyn,Canarsie,40.64027,-73.91751,Private room,45,4,33,2019-06-11,0.66,1,323 +4978241,CHARMING GARDEN APT IN TOWNHOUSE,271527,Richard,Manhattan,Harlem,40.81007,-73.94007,Entire home/apt,170,3,52,2019-06-24,1.00,2,316 +4978607,Cute and Cozy UWS Studio,2316247,Lam,Manhattan,Upper West Side,40.78124,-73.98475,Entire home/apt,150,7,10,2016-10-08,0.18,1,68 +4982699,Two Bedroom Apartment,25686141,Linden,Queens,Ozone Park,40.67924,-73.84771,Entire home/apt,99,3,66,2018-07-21,1.29,1,189 +4982969,Beautiful room in Brooklyn,2803589,Helida,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.95196,Private room,45,1,0,,,1,0 +4983264,Comfortable room steps from Central Park,25688822,Lucie,Manhattan,Harlem,40.79967,-73.95444,Private room,95,3,70,2019-06-30,1.38,1,117 +4983691,Greenpoint is the place to be!,4162067,Citlali,Brooklyn,Greenpoint,40.72811,-73.94925,Private room,95,4,1,2015-10-28,0.02,1,0 +4984951,Home Away From Home,23570473,James,Brooklyn,Crown Heights,40.6726,-73.95364,Private room,79,1,37,2019-05-27,0.72,3,339 +4986843,Amazing Loft/ Bed-Stuy/ Full Cleaning Service.,2628658,Marc-Antoine,Brooklyn,Bedford-Stuyvesant,40.68301,-73.93738,Entire home/apt,120,30,2,2018-12-21,0.18,2,0 +4987238,Chic Downtown 1 Bedroom,17985595,Lora,Manhattan,Greenwich Village,40.73189,-73.9947,Entire home/apt,375,14,26,2018-12-18,0.59,1,147 +4987355,Great Spacious Appartment,23929877,Ely,Manhattan,East Harlem,40.7912,-73.94318,Entire home/apt,120,5,23,2019-06-18,1.25,1,151 +4987370,1 Bedroom in a Williamsburg Loft,25711730,Natsuki,Brooklyn,Williamsburg,40.7116,-73.96774,Shared room,85,1,0,,,1,0 +4987929,Near Subway -15 min to Manhattan,25715117,Lilia,Queens,Astoria,40.76357,-73.92829,Private room,100,5,46,2019-06-14,0.91,1,338 +4988556,Sun-Filled Room near Central Park,12342828,Marco,Manhattan,East Harlem,40.79492,-73.94087,Private room,84,4,79,2019-06-29,2.06,2,8 +4988687,Chelsea Oasis 1 Bedroom Brownstone,25720293,Lena,Manhattan,Chelsea,40.74481,-74.00148,Entire home/apt,549,4,17,2017-12-20,0.33,3,6 +4989295,"Huge, Beautiful Artist's 2 bedroom",637688,Dan,Brooklyn,Prospect Heights,40.67347,-73.96544,Entire home/apt,230,7,12,2018-12-26,0.24,1,5 +4991235,"Cozy, quiet 2-story place by subway",25271688,Margot,Brooklyn,Greenpoint,40.7313,-73.95341,Private room,100,14,1,2015-09-21,0.02,1,0 +4991895,"Bright & spacious room, 2 minutes to subway!",10635169,Jin,Brooklyn,Crown Heights,40.67067,-73.95693,Private room,70,1,49,2019-07-02,4.45,1,47 +4993422,A Beautiful and Sunny Artist's Home,25744379,Sonia,Queens,Astoria,40.76958,-73.92223,Entire home/apt,72,3,36,2019-06-28,0.71,1,10 +4994058,MyModernCrib w/ Empire State Views ,25747773,Ellen!,Manhattan,Kips Bay,40.74045,-73.98175,Private room,140,5,2,2016-05-21,0.05,1,0 +4994264,1 Bdrm in Luxury High Rise,41398078,Jimmy,Manhattan,Financial District,40.7076,-74.01367,Private room,125,3,0,,,1,0 +4994266,Midtown Launching Pad,24620881,Jack,Manhattan,Midtown,40.75765,-73.96466,Entire home/apt,135,1,168,2019-06-21,3.21,1,287 +4995083,East Village Studio,25748492,David,Manhattan,East Village,40.72954,-73.98337,Entire home/apt,120,1,8,2016-05-30,0.18,1,0 +4995739,"Private room in Brooklyn, Calico Cat in the house!",25757883,Sayaka,Brooklyn,Bushwick,40.70213,-73.91472,Private room,49,1,43,2018-11-19,0.82,1,25 +4996027,Rare Find - Oversized 1BR in Williamsburg center,45384,Nicole,Brooklyn,Williamsburg,40.70971,-73.96561,Entire home/apt,240,14,20,2019-06-20,0.43,1,238 +4996877,"Awesome, Sunny Loft - Two Floors!",317718,Andrew,Brooklyn,Greenpoint,40.72514,-73.95392,Entire home/apt,380,4,0,,,1,177 +4998025,Perfect apt in UES,25773982,Yas,Manhattan,Upper East Side,40.77569,-73.95721,Entire home/apt,150,1,9,2019-05-13,0.24,2,364 +4998221,汤母小屋,25774748,Dong Ming,Queens,Flushing,40.76435,-73.83211,Private room,89,1,3,2019-05-19,0.06,2,365 +4998294,"Enjoy Central Park,",25773982,Yas,Manhattan,Upper East Side,40.77595,-73.95573,Private room,100,3,28,2019-05-22,0.55,2,364 +5002867,The Red House,262760,Megan,Brooklyn,Flatbush,40.6404,-73.9612,Private room,75,1,24,2017-05-31,0.52,1,0 +5003266,A hop to La Guardia Airport in quiet College Point,19918657,Tommy,Queens,College Point,40.78631,-73.83923,Private room,50,5,5,2019-03-28,0.47,1,310 +5004463,Spacious Private Room ,25807709,Shula,Brooklyn,Midwood,40.6216,-73.95315,Private room,60,10,27,2019-07-05,0.50,1,322 +5006113,LUXURY MID-CENTURY MODERN LOFT SOHO,6095946,Fiona,Manhattan,SoHo,40.72177,-74.00356,Entire home/apt,760,14,1,2017-08-19,0.04,1,292 +5006114,Charming Private Bedroom in 2 Bedroom Apartment,4830078,Wesley William,Brooklyn,Williamsburg,40.70853,-73.95368,Private room,85,3,15,2019-06-14,0.57,1,82 +5006927,PRIVATE SUNNY ROOM IN BUSHWICK! ,25821864,Viva,Queens,Ridgewood,40.70739,-73.91498,Private room,65,3,5,2015-10-07,0.09,1,0 +5010368,Upper East Side Gem!,25840204,Daniel,Manhattan,Upper East Side,40.77546,-73.95165,Entire home/apt,150,3,75,2019-04-27,1.44,1,234 +5010729,Quaint One Bed Apartment on UES,7847292,Tom,Manhattan,Upper East Side,40.77537,-73.95029,Entire home/apt,169,4,147,2019-06-23,2.76,1,310 +5011693,Harlem Studio w/ view!!,8834234,Jeremy,Manhattan,Harlem,40.81419,-73.95033,Entire home/apt,85,2,25,2019-06-09,0.52,1,58 +5013302,Best location & Amazing view / Apt in Tribeca,10207681,Sol,Manhattan,Tribeca,40.71732,-74.00981,Entire home/apt,350,3,13,2019-05-16,0.36,1,69 +5013556,"Sunny, modern 1BR in Crown Heights",1387175,David,Brooklyn,Crown Heights,40.67279,-73.96033,Entire home/apt,148,7,56,2019-06-14,1.05,1,44 +5014831,Cozy Studio Close to Everything,5349999,David,Brooklyn,Crown Heights,40.67777,-73.95131,Entire home/apt,100,6,13,2019-01-04,0.26,1,0 +5015281,Gramercy Park View Pied A Terre,25870353,Amie,Manhattan,Gramercy,40.73661,-73.98706,Entire home/apt,1000,7,0,,,1,365 +5019183,Large 1 Bedroom in Brooklyn,25894037,Margaret,Brooklyn,Crown Heights,40.67477,-73.94961,Entire home/apt,125,1,0,,,1,0 +5019373,"Cozy Apt, Terrace in Williamsburg",25895198,Mateo,Brooklyn,Williamsburg,40.71505,-73.93936,Entire home/apt,80,7,10,2016-06-20,0.22,1,0 +5020687,BRAND NEW condo in Flushing!,10366837,Jia,Queens,Flushing,40.75784,-73.83181,Entire home/apt,72,2,94,2019-07-01,3.40,3,102 +5020842,Private BR in amazing neighborhood,17770322,Nicole,Brooklyn,Carroll Gardens,40.68138,-73.9926,Private room,125,1,8,2019-07-07,0.16,1,191 +5021376,Easily accessible cozy room! R202,17638424,Sophie,Queens,Elmhurst,40.74602,-73.87338,Private room,34,1,95,2019-07-02,2.37,8,175 +5025771,Full Prospect Heights Brownstone!,630519,Alex,Brooklyn,Prospect Heights,40.67676,-73.96683,Entire home/apt,288,1,2,2016-01-03,0.05,1,0 +5028135,Modern Prime Williamsburg 1BR w/ Terrace & Views,3560446,Jay,Brooklyn,Williamsburg,40.7169,-73.95087,Entire home/apt,167,2,59,2019-05-25,1.20,1,0 +5028264,Charming Studio Apartment,25881276,Jordana,Manhattan,Upper West Side,40.7921,-73.97918,Entire home/apt,125,21,45,2019-05-27,0.86,2,176 +5028478,Spacious and welcoming 1 bedroom apt,3116461,Kyala,Brooklyn,East Flatbush,40.65308,-73.95109,Entire home/apt,100,2,67,2019-06-14,1.27,1,153 +5028653,Sun drenched art filled apartment,5244243,Mie,Manhattan,Financial District,40.71068,-74.00713,Entire home/apt,290,5,0,,,1,0 +5029202,"Spacious 2 Bedroom, 2 Bath, 5th Avenue Entire Apt",14362471,Andy And TJ,Manhattan,East Harlem,40.79641,-73.94847,Entire home/apt,229,30,6,2019-02-14,0.12,1,61 +5029204,Boho Williamsburg Room W/ Private Entrance,3646549,Katherine,Brooklyn,Williamsburg,40.71735,-73.94465,Private room,100,2,49,2019-06-15,0.90,1,149 +5029573,Private Room w/ Bath and Balcony,25961456,Adam,Brooklyn,Prospect Heights,40.67824,-73.96514,Private room,60,1,0,,,1,0 +5029703,PRIME LOCATION - Beautiful 3BR Artist Oasis w/Deck,25318403,Bethany,Brooklyn,Williamsburg,40.71281,-73.95796,Entire home/apt,225,3,87,2019-07-05,1.63,3,275 +5030256,Spacious Room in Apt with Backyard,8707742,Kanhar,Brooklyn,Bedford-Stuyvesant,40.6955,-73.94385,Private room,70,2,0,,,1,0 +5031178,Beautiful Bushwick - 3BR Apartment,21721684,S.,Brooklyn,Bushwick,40.68594,-73.90653,Entire home/apt,174,3,198,2019-06-09,3.70,2,269 +5031539,GORGEOUS 1BR IN MIDTOWN 1/15-1/19,25974544,Patrick,Manhattan,Hell's Kitchen,40.76263,-73.9887,Entire home/apt,350,1,0,,,1,0 +5033691,*GALAXY* Spectacular 2 Bedroom - Spacious & Light!,25237492,Juliana,Manhattan,Upper West Side,40.78147,-73.98315,Entire home/apt,250,30,13,2019-06-15,0.25,34,304 +5034136,CHARMING TOWNHOUSE NEAR RSD PARK - STUDIO APT,25237492,Juliana,Manhattan,Upper West Side,40.78215,-73.98349,Entire home/apt,105,30,15,2019-04-19,0.31,34,285 +5036261,LARGE ROOM IN A GREAT NEIGHBORHOOD,15929586,Jorge,Queens,Ditmars Steinway,40.77645,-73.90566,Private room,40,3,95,2019-05-20,1.75,1,336 +5036659,Relaxing Brooklyn Oasis - Prime Location,25999700,Jacqueline,Brooklyn,Crown Heights,40.67615,-73.95776,Private room,50,14,43,2019-06-22,0.80,1,313 +5037654,East River view,26005018,Pia,Manhattan,Roosevelt Island,40.76193,-73.94942,Private room,65,3,43,2019-05-28,0.81,1,35 +5037892,Stay in Harlem 1 - 3 months!,6228539,Michelle,Manhattan,Harlem,40.80535,-73.95407,Private room,75,30,1,2019-05-03,0.45,2,330 +5038299,Beautiful Fort Greene Studio,17465490,Tarun,Brooklyn,Fort Greene,40.68752,-73.9795,Entire home/apt,180,31,1,2015-01-21,0.02,1,0 +5039939,Spacious Room in Bushwick Brooklyn,26018110,Vincent,Brooklyn,Williamsburg,40.70898,-73.93286,Private room,60,25,0,,,1,0 +5040218,LUX Blg-Prime Area! Lg PRIVATE RM & BATH w/VIEWS!,26019828,Sonia,Manhattan,Hell's Kitchen,40.76159,-73.99824,Private room,69,2,22,2019-03-20,0.64,2,7 +5040653,"Spacious Room at Broome St, LES",19195540,Dor,Manhattan,Chinatown,40.71723,-73.99164,Private room,150,4,36,2019-06-04,0.71,3,294 +5040919,Furnished room in DUMBO/Fort Greene,26024349,Joyce,Brooklyn,Downtown Brooklyn,40.6978,-73.98396,Private room,200,1,0,,,1,0 +5040951,Charming 1BR near Union Square,26024433,Sal,Manhattan,Gramercy,40.73272,-73.9852,Entire home/apt,125,3,21,2019-06-02,0.40,1,7 +5041891,Historic Upper West Side Townhouse,26031034,David,Manhattan,Upper West Side,40.79693,-73.96348,Entire home/apt,795,4,22,2019-06-20,0.42,1,249 +5046189,Modern/Spacious 4BR +Tent Perfect for LARGE groups,23732730,Buddy,Bronx,Allerton,40.87054,-73.84681,Entire home/apt,450,2,45,2019-07-02,0.84,4,342 +5046190,Cozy Room available in UES Apt,22776830,Ella,Manhattan,Upper East Side,40.77209,-73.95083,Private room,80,1,0,,,1,0 +5046422,Big 2-story home in Brooklyn Hts.,2370532,Nick,Brooklyn,Brooklyn Heights,40.69119,-73.99438,Entire home/apt,300,2,8,2016-10-24,0.22,1,0 +5046894,"Cozy Space in Harlem, Manhattan",6454648,Laksen & Nikki,Manhattan,Harlem,40.81549,-73.95278,Shared room,80,1,29,2019-06-12,0.62,1,357 +5048535,Great Gramercy Share Apt,905563,Courtney,Manhattan,Gramercy,40.73718,-73.98373,Private room,75,5,0,,,1,0 +5049823,NYC New Years Penthouse suite,22927481,Howard,Manhattan,Midtown,40.7655,-73.98018,Private room,500,3,1,2015-11-11,0.02,3,0 +5050156,Wake Up In The City That Never Sleeps,193488,Jane,Manhattan,East Village,40.73273,-73.98969,Private room,135,1,14,2019-05-26,0.28,2,332 +5050369,East Village Ageloff Towers,23465153,Darrin,Manhattan,East Village,40.72536,-73.9856,Entire home/apt,250,1,0,,,1,0 +5050664,"Simple, sweet in NOLITA-NYC",93292,Alexa,Manhattan,Chinatown,40.71848,-73.99549,Private room,80,3,153,2019-06-25,2.90,1,238 +5050799,Great Prospect / Crown Heights 1BR,16616158,Will,Brooklyn,Crown Heights,40.67586,-73.9621,Entire home/apt,85,5,22,2015-10-28,0.42,1,0 +5051597,Restored 1910 Brooklyn Loft Suite,10975987,Lisa,Brooklyn,Bushwick,40.68386,-73.90936,Entire home/apt,150,4,119,2019-06-20,2.23,1,273 +5052495,Sunny Room in Historic Williamsburg Loft,26089087,Karron,Brooklyn,Williamsburg,40.70907,-73.96396,Private room,60,1,33,2019-06-26,2.75,1,19 +5052897,Beautiful Manhattan 1br apartment close to subway!,26079021,Michael,Manhattan,Upper East Side,40.76173,-73.96183,Entire home/apt,249,3,85,2019-06-28,1.59,1,158 +5054072,*SPLENDID* Fantastic 2 BR Apt near many Hospitals,25237492,Juliana,Manhattan,Upper East Side,40.7606,-73.96028,Entire home/apt,155,30,17,2019-02-02,0.32,34,316 +5054397,Large & Sunny Bedroom - super close to subway,8873293,Helena S,Brooklyn,Bedford-Stuyvesant,40.68951,-73.95524,Private room,65,2,14,2018-05-26,0.27,2,0 +5055033,"Railroad Apt in Greenpoint, BKLYN",26100862,Ira,Brooklyn,Greenpoint,40.72474,-73.94733,Entire home/apt,90,1,0,,,1,0 +5056421,1 BR Apartment in UES - 5' walk to CentralPark,13220337,Brian,Manhattan,East Harlem,40.79213,-73.94974,Entire home/apt,150,3,27,2019-05-24,0.50,1,0 +5058683,It's always sunny in Williamsburg!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71301,-73.95374,Private room,96,1,175,2019-06-16,3.27,4,44 +5059402,1BR with backyard in Williamsburg!,26124805,Laura,Brooklyn,Williamsburg,40.71677,-73.95773,Private room,90,1,0,,,1,0 +5060771,Large Room in Greenwich Village,26133955,William,Manhattan,West Village,40.73345,-74.00302,Private room,89,1,1,2016-04-21,0.03,1,365 +5061165,Private Bedroom in Upper Manhattan,9018446,Javier,Manhattan,Washington Heights,40.83554,-73.93849,Private room,80,1,307,2019-06-29,5.66,1,54 +5061178,near Columbia Hospital,26136707,Jorge,Manhattan,Washington Heights,40.8447,-73.93369,Private room,77,4,80,2019-06-16,1.57,1,66 +5061309,Sunny room in Bushwick; Minutes from subway!,13501341,Fiorella,Brooklyn,Bushwick,40.70171,-73.91344,Private room,60,1,155,2019-06-20,3.39,2,170 +5065185,"Spaceful 1 BR apartment, sleeps 3",10428997,Marta,Manhattan,Upper West Side,40.79463,-73.97061,Entire home/apt,165,4,72,2019-06-24,1.35,1,0 +5065276,"Sunny, comfy room in quiet Park Slope apmt",25963759,Andrew,Brooklyn,South Slope,40.66135,-73.98726,Private room,70,1,3,2015-10-05,0.06,1,363 +5065630,2 Bedroom in Bed Stuy,8813443,Win,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95758,Entire home/apt,83,1,0,,,1,0 +5066526,Lovely Big Bedroom in Clinton Hill,26162659,Kylie,Brooklyn,Bedford-Stuyvesant,40.69494,-73.95507,Private room,70,1,0,,,1,0 +5066813,Reduced$ EastVillage Entire 1BD APT,1445871,Gregory,Manhattan,East Village,40.73096,-73.98376,Entire home/apt,139,1,62,2019-06-30,1.15,1,240 +5066900,Private Bedroom in BK Brownstone,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69604,-73.94504,Private room,50,7,13,2019-05-16,0.33,3,227 +5066963,Humble 1BR in Bushwick,26164700,Nico,Brooklyn,Bushwick,40.69709,-73.91003,Private room,50,1,0,,,1,0 +5067097,"Cute, Cozy in Prime Williamsburg",2372310,Liz,Brooklyn,Williamsburg,40.71343,-73.94842,Entire home/apt,220,5,0,,,1,21 +5067348,Million Dollar Listing :Times Square,6278351,Scott,Manhattan,Hell's Kitchen,40.75977,-73.98981,Entire home/apt,250,3,26,2019-06-29,0.51,1,96 +5067417,Study in 1885 Gothic Brownstone.,8954264,Rod,Manhattan,Harlem,40.80858,-73.95132,Private room,177,10,25,2019-06-08,0.51,1,213 +5068972,Modern 1br downtown Manhattan,23340108,Andrew,Manhattan,Financial District,40.71182,-74.00497,Entire home/apt,150,3,7,2016-05-25,0.13,1,0 +5069145,Cozy private bedroom in duplex,26176627,Jon,Brooklyn,Bushwick,40.70126,-73.93731,Private room,50,1,0,,,1,0 +5070183,Sunny NYC APT - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74513,-73.91685,Entire home/apt,90,30,10,2019-05-23,0.28,3,332 +5070378,BR in heart of trendy williamsburg,26184062,Laura,Brooklyn,Williamsburg,40.71223,-73.95681,Private room,150,7,1,2016-08-31,0.03,1,179 +5075659,Cozy New York Studio,192852,Dim,Manhattan,Upper East Side,40.77407,-73.95238,Entire home/apt,125,3,211,2019-06-22,3.95,1,230 +5077231,Charming Bright Upper East Space,7021059,Katie,Manhattan,Upper East Side,40.77636,-73.95099,Entire home/apt,150,1,0,,,2,0 +5078828,Lovely Victorian Brooklyn 6BR Home,3196390,Orli,Brooklyn,Flatbush,40.63854,-73.95814,Entire home/apt,415,4,3,2015-07-03,0.06,1,0 +5079124,Clean & Cozy Private Room,12603113,Stephanie & Linda,Brooklyn,Kensington,40.63953,-73.97214,Private room,50,2,39,2019-06-24,0.77,1,245 +5081207,Charming Townhouse Near RSD Park! 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper West Side,40.78305,-73.98398,Entire home/apt,165,30,16,2019-06-15,0.31,34,326 +5082455,15 mins to Times Square + Sleeps 4,2908101,Mahesh,Manhattan,Harlem,40.82846,-73.94393,Entire home/apt,175,4,29,2018-11-05,0.55,1,7 +5083907,Large Room In Beautiful Brownstone ,63613,Patricia,Brooklyn,Clinton Hill,40.69105,-73.96789,Private room,50,60,0,,,2,210 +5084095,Great 2 bedroom on The Upper East Side,1700398,Vered,Manhattan,Upper East Side,40.77421,-73.95361,Entire home/apt,250,4,0,,,1,0 +5084887,Clean & Warm East Village Escape!,26265097,Nancy,Manhattan,East Village,40.7295,-73.98398,Entire home/apt,100,5,1,2015-02-06,0.02,1,0 +5085803,Beautiful Studio in the Upper East (30 DAYS MIN),23772724,Elem,Manhattan,Upper East Side,40.78151,-73.94775,Entire home/apt,99,30,12,2019-04-27,0.29,15,208 +5091056,Comfy Bedroom quite neighborhood ,26301893,Claude,Queens,Forest Hills,40.71158,-73.85273,Private room,80,1,12,2019-01-03,0.35,1,59 +5093174,flexible 1BD LIVE/ WORK space BK,17312709,Matthew,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94719,Entire home/apt,140,5,4,2015-06-06,0.08,1,0 +5093352,Room w/artwork & huge window on historic block!,19850240,Neal,Manhattan,Harlem,40.80954,-73.94227,Private room,83,7,18,2019-03-03,0.66,1,0 +5094593,Cozy room in a quite neighborhood,7801481,Inez,Queens,Bay Terrace,40.78598,-73.77915,Private room,99,3,4,2018-05-04,0.08,2,7 +5096158,Fun Space in the Heart of Williamsburg,21201361,Jamie,Brooklyn,Williamsburg,40.71102,-73.95627,Private room,79,1,1,2018-08-26,0.09,1,89 +5101342,Quiet private retreat high above Brooklyn.,19293586,Adam,Brooklyn,Williamsburg,40.71759,-73.94388,Private room,100,2,19,2019-06-29,0.61,1,34 +5102006,Quaint Sunny Cobble Hill Brownstone,26360956,Jen,Brooklyn,Cobble Hill,40.68854,-73.99533,Entire home/apt,160,4,16,2016-11-21,0.30,1,0 +5102132,Huge Sunny Private Room in Bushwick,26260328,Alec,Brooklyn,Bushwick,40.70206,-73.91342,Private room,45,7,1,2016-02-16,0.02,1,0 +5102389,Top Floor Williamsburg Beauty,26362901,William,Brooklyn,Williamsburg,40.71124,-73.95717,Entire home/apt,225,1,63,2017-11-14,1.27,1,0 +5104668,Alcove Studio 1 blk from Times Sq,24915685,Naveen,Manhattan,Hell's Kitchen,40.75928,-73.99036,Entire home/apt,180,1,0,,,1,0 +5105514,Modern Studio Apt in Williamsburg,26380626,Shamim,Brooklyn,Williamsburg,40.71768,-73.95355,Entire home/apt,90,7,1,2018-04-29,0.07,1,0 +5105632,Lovely room in Prospect Heights,15321576,Daniel,Brooklyn,Prospect Heights,40.67467,-73.96557,Private room,60,1,0,,,1,0 +5105768,"Close to subway, Manhattan, & shops with kitchen",26382036,William,Queens,Elmhurst,40.74038,-73.87599,Entire home/apt,120,5,31,2019-05-27,0.64,2,64 +5105805,Best Location in Midtown Manhattan,8329975,Gore,Manhattan,Hell's Kitchen,40.76645,-73.98539,Entire home/apt,150,4,15,2019-06-29,0.41,1,5 +5106041,I LOVE BROOKLYN PRIVATE 1-BR APT,4265630,Nowme And Ra,Brooklyn,Flatbush,40.64801,-73.95623,Entire home/apt,80,4,51,2019-06-22,0.97,2,306 +5106214,Historic West Village Charmer,22984995,Erin,Manhattan,West Village,40.73822,-74.00606,Entire home/apt,275,2,11,2018-07-18,0.21,1,0 +5106749,Cozy 1BD near midtown Manhattan,26388856,Kat,Queens,Long Island City,40.7599,-73.9285,Entire home/apt,110,14,35,2019-05-24,0.69,1,177 +5110224,Room in artist apartment/ close to Ferry,26405093,Jeff,Staten Island,Stapleton,40.6375,-74.07654,Private room,85,1,0,,,2,359 +5110541,Upper East Side Beautiful Studio,1965783,Cranford,Manhattan,Upper East Side,40.76996,-73.95875,Entire home/apt,245,1,3,2015-05-24,0.06,1,0 +5112761,Master bedroom in Williamsburg,2638171,Renan,Brooklyn,Williamsburg,40.71577,-73.94604,Private room,90,3,0,,,1,364 +5113910,Designer's Red Hook Apartment,10125456,Carly,Brooklyn,Red Hook,40.67404,-74.01021,Entire home/apt,115,5,51,2019-05-15,0.95,1,8 +5115372,Comfy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76374,-73.87103,Private room,54,1,430,2019-07-03,13.45,5,347 +5115534,Large williamsburg apt. Sleeps 4.,26433326,Martha,Brooklyn,Williamsburg,40.70783,-73.94858,Entire home/apt,195,2,3,2015-12-30,0.06,1,0 +5116726,Stunning townhouse in Park Slope,7203997,Gosia,Brooklyn,Park Slope,40.67034,-73.97512,Entire home/apt,995,2,43,2019-06-13,0.82,2,328 +5116727,Amazingly bright and cozy apartment,2897021,Julia,Manhattan,East Village,40.72695,-73.98675,Entire home/apt,120,10,7,2017-01-04,0.13,1,0 +5117339,Quiet Bdrm w/Private Bath & TV in BIG apartment!,26446036,Buddy,Manhattan,Upper West Side,40.78648,-73.9692,Private room,135,2,78,2019-06-02,1.68,1,0 +5119201,"SpaciousRoom in the heart of New York,Times Square",17450152,Tiba,Manhattan,Hell's Kitchen,40.76332,-73.9884,Private room,150,1,38,2019-06-21,0.77,5,307 +5122899,Cozy Private Room for one female,9059339,Christine,Manhattan,East Harlem,40.78744,-73.95211,Private room,61,7,167,2019-05-22,3.21,1,292 +5123033,BEAUTIFUL 2 BED/ BRICK WALLS/ 52ST,1475015,Mike,Manhattan,Midtown,40.75587,-73.96856,Entire home/apt,115,30,0,,,52,281 +5126391,1bd in a sunny 2 bd Ft. Greene Apt,26003292,Carrie,Brooklyn,Fort Greene,40.69454,-73.97166,Private room,63,1,104,2019-06-23,2.16,1,11 +5127131,Cozy one-bedroom in E Village,1946840,Nick,Manhattan,East Village,40.72982,-73.98316,Entire home/apt,185,7,21,2019-06-04,0.40,1,27 +5131879,"Large, comfy 1br in Williamsburg!",26529661,Alexis,Brooklyn,Williamsburg,40.7127,-73.94643,Entire home/apt,1763,60,0,,,1,0 +5132306,Monthly Rental in Crown Heights,24711354,Forrest,Brooklyn,Crown Heights,40.66809,-73.93373,Private room,33,28,20,2019-04-06,0.37,1,282 +5132986,NOT AVAILABLE,2086194,Robert,Brooklyn,Prospect Heights,40.68163,-73.96709,Private room,55,2,3,2015-05-17,0.06,1,189 +5133942,"Sunny 1000 sqft, heart of Crown Hts",7088204,Genesis,Brooklyn,Crown Heights,40.67131,-73.94979,Entire home/apt,150,5,8,2019-05-20,0.36,1,118 +5135121,Roomy Studio at Prospect Park,5125933,Penelope,Brooklyn,Prospect-Lefferts Gardens,40.65621,-73.95696,Entire home/apt,80,21,3,2017-08-27,0.07,1,0 +5136673,Spacious Brooklyn Loft/private room,8118080,Theresa,Brooklyn,Bedford-Stuyvesant,40.68716,-73.91882,Private room,40,7,0,,,1,0 +5136833,Spacious private room upper west side,26558533,Jinqiu,Manhattan,Upper West Side,40.79678,-73.96545,Private room,79,2,8,2016-10-16,0.22,1,0 +5137531,LUXURY*Doorman*Walk to Central Park,7881946,Emmanuel,Manhattan,Harlem,40.80657,-73.95532,Entire home/apt,140,2,5,2015-03-05,0.09,1,0 +5141379,True 1BR Apt in Greenwich Village,21112602,Maggie,Manhattan,Greenwich Village,40.73253,-73.99826,Entire home/apt,198,2,15,2016-09-29,0.29,1,0 +5143959,Master Bedroom in Lefferts Garden,20518366,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.95105,Private room,65,1,0,,,2,0 +5144689,Harlem Style Spacious and Sunny,26597048,M. Elizabeth,Manhattan,Harlem,40.80516,-73.94299,Entire home/apt,117,3,126,2019-07-05,3.91,2,66 +5144831,Modern and convenient,2055698,Nadia Dara,Manhattan,Upper East Side,40.77944,-73.95296,Entire home/apt,125,3,2,2016-08-25,0.05,1,0 +5146173,*Designer West Village Dream Home*,26606802,Christina,Manhattan,West Village,40.73451,-74.00746,Entire home/apt,510,3,12,2016-10-23,0.24,1,364 +5148878,"GORGEOUS 2 BD PENTH., 500SF TERRACE",215570,Dirk,Brooklyn,Williamsburg,40.71135,-73.96596,Entire home/apt,125,2,5,2018-01-01,0.12,1,0 +5149368,Luxury penthouse in FiDi,1867263,Lisa,Manhattan,Financial District,40.70663,-74.0117,Private room,170,1,0,,,1,0 +5152230,Convenience & Chill,26640253,Rachel,Manhattan,Harlem,40.82383,-73.94639,Private room,65,1,61,2019-04-24,1.16,1,323 +5159567,Perfect One Bedroom in Greenpoint,22011099,David,Brooklyn,Greenpoint,40.72981,-73.95268,Entire home/apt,195,6,21,2018-08-15,0.44,1,42 +5159990,Huge 1 Bedroom in East Harlem,115669,Lauren,Manhattan,East Harlem,40.79643,-73.93543,Entire home/apt,115,3,8,2017-05-17,0.15,1,183 +5160871,Cozy Chelsea Studio,8780729,Ellen,Manhattan,Chelsea,40.7417,-73.9978,Entire home/apt,135,3,31,2016-12-05,0.63,1,0 +5161173,3BDR architect's garden home,1027417,Julien,Brooklyn,Park Slope,40.67365,-73.9814,Entire home/apt,350,3,5,2019-02-19,0.12,1,22 +5162578,Best place for families & groups in Manhattan NYC!,23719409,Carlina,Manhattan,Harlem,40.82774,-73.95181,Private room,115,1,28,2018-12-08,1.13,4,6 +5162580,Convenient place to stay in Manhattan!,23719409,Carlina,Manhattan,Harlem,40.82801,-73.95167,Private room,45,1,205,2019-06-21,3.86,4,0 +5164045,"Cozy, sunny private room",26710027,Sara,Brooklyn,Bedford-Stuyvesant,40.68074,-73.92513,Private room,65,2,21,2016-07-17,0.43,1,0 +5168749,LIC Super Sunny & Spacious 1BR Apt,10433019,Serene,Queens,Long Island City,40.74401,-73.95094,Entire home/apt,135,30,3,2019-06-30,0.06,1,231 +5172992,1br in duplex of luxury building,23386756,Daniel,Brooklyn,Williamsburg,40.70792,-73.94602,Private room,40,6,0,,,1,0 +5173154,"COZY, AFFORDABLE, PVT. BEDSTUY ROOM",26756453,Tyler,Brooklyn,Bedford-Stuyvesant,40.68833,-73.94329,Private room,70,1,0,,,1,0 +5175054,Perfect Times Square 1 bedroom ,22305520,James,Manhattan,Hell's Kitchen,40.76064,-73.99112,Entire home/apt,199,30,119,2019-06-11,2.21,2,215 +5178944,Amazing BR in Doorman Building!,18388649,Brian,Manhattan,Harlem,40.82415,-73.94113,Private room,100,2,0,,,1,364 +5179493,Gorgeous Renovated One Bedroom ues,4406876,Maureen,Manhattan,Upper East Side,40.76761,-73.95391,Entire home/apt,195,6,5,2019-06-13,0.11,1,329 +5179556,Huge 3BR on Prospect Park,26789544,Martin,Brooklyn,Windsor Terrace,40.65494,-73.97478,Entire home/apt,200,3,0,,,1,0 +5179785,3 bedroom 2 1/2 bath duplex Park Slope,10711342,Mr. & Mrs. Kris,Brooklyn,Sunset Park,40.66298,-73.99012,Entire home/apt,150,5,1,2018-08-14,0.09,1,0 +5180624,"Cozy Room in Bushwick, Brooklyn",26794599,Carmen,Brooklyn,Bushwick,40.69237,-73.92097,Private room,60,2,1,2015-09-21,0.02,1,0 +5181492,"Spacious, sunny, private loft bdrm!",15714652,Tejal,Brooklyn,Bushwick,40.70041,-73.93816,Private room,70,11,21,2019-05-18,0.40,1,134 +5181720,Bushwick Live/Work,5399418,Jennifer,Brooklyn,Bushwick,40.69092,-73.90443,Private room,30,1,0,,,1,0 +5183502,"Airy, Modern, Large Room W'burg two blocks subway",1762555,Arti,Brooklyn,Williamsburg,40.71508,-73.94586,Private room,100,4,38,2019-06-12,1.06,1,10 +5184986,Large studio in Manhattan,26819401,Alberto,Manhattan,Upper East Side,40.77594,-73.95584,Entire home/apt,180,3,3,2016-02-16,0.06,1,0 +5185359,1.5 Bedroom - Artist's Retreat,5788393,Amy,Queens,Long Island City,40.76117,-73.9265,Entire home/apt,105,2,19,2018-02-17,0.41,1,0 +5188746,FANTASTIC MANHATTAN LIVING 5 day Minimum,5896802,Patricio,Manhattan,Harlem,40.81502,-73.9546,Entire home/apt,110,90,7,2018-02-26,0.28,1,90 +5188840,Home 4 Medical Professionals-St John's Episcopal 2,26377263,Stat,Queens,Far Rockaway,40.59642,-73.75606,Private room,38,6,5,2017-12-02,0.11,43,313 +5191617,"Cozy Room in Clinton Hill, Bk",3977023,Vaida,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95603,Private room,70,1,1,2015-08-31,0.02,2,0 +5191630,Comfortable & Spacious 1 BR apt,21538710,Marýa,Brooklyn,Crown Heights,40.67116,-73.94293,Entire home/apt,72,7,11,2016-11-11,0.21,1,0 +5191965,Bright room in townhouse with yard!,610690,Julien,Brooklyn,Bedford-Stuyvesant,40.68006,-73.91113,Private room,75,1,35,2019-06-26,0.69,2,80 +5192165,Classic Harlem Brownstone - Manhattan,26856159,Glenda,Manhattan,Harlem,40.82306,-73.94688,Private room,63,1,209,2019-06-13,4.12,3,274 +5192219,Metro Retreat - - Harlem,26856159,Glenda,Manhattan,Harlem,40.82153,-73.94651,Private room,58,1,194,2019-06-22,3.81,3,307 +5192459,Quiet Room in 4BR UWS Brownstone,10677483,Greg,Manhattan,Upper West Side,40.80173,-73.96625,Private room,70,1,0,,,1,0 +5193421,Sunny 1BR in the East Village center,1002840,Vladimir,Manhattan,East Village,40.72669,-73.98275,Entire home/apt,145,5,63,2019-06-24,1.24,1,242 +5193916,Private room available in Dumbo Brooklyn,26867230,Kayla,Brooklyn,Fort Greene,40.69605,-73.98207,Private room,45,1,3,2016-07-15,0.08,2,0 +5194812,"Cozy, Convenient, Clean & Colorful!",23909946,Robin Laverne,Brooklyn,Bushwick,40.68755,-73.91856,Private room,60,2,77,2019-06-19,1.56,3,28 +5195409,Upper West Nest,12879620,Neda,Manhattan,Upper West Side,40.79148,-73.97828,Entire home/apt,158,100,2,2018-08-01,0.04,1,290 +5195568,private room,26877037,Catherine,Brooklyn,Sheepshead Bay,40.60059,-73.95899,Private room,139,1,3,2015-10-14,0.06,2,0 +5195654,Large Size Room Next to Subway,26877931,Nikki,Brooklyn,Bedford-Stuyvesant,40.69467,-73.9501,Private room,45,5,20,2017-10-23,0.38,1,52 +5199439,Furnished studioB UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77339,-73.95421,Entire home/apt,99,30,13,2019-05-25,0.26,15,333 +5199814,Sunny 1bedroom with yard ,26899122,Katherine,Brooklyn,South Slope,40.66437,-73.98353,Entire home/apt,85,3,1,2015-09-01,0.02,1,0 +5200433,Soothing Place in the City,24052348,Tara,Manhattan,East Village,40.72042,-73.97998,Private room,85,10,14,2019-04-03,0.27,4,18 +5204458,Vintage Jewel in Crown Heights,1238879,Kristen,Brooklyn,Crown Heights,40.67198,-73.93011,Entire home/apt,95,3,2,2015-08-27,0.04,1,0 +5205123,"Spacious, Bright, & Modern Apt",81928,Evan,Brooklyn,Bedford-Stuyvesant,40.6856,-73.95332,Entire home/apt,150,3,45,2018-12-24,0.96,1,0 +5205171,Comfy 1BD + Private Bath in Williamsburg,1242374,Erin & Brad,Brooklyn,Williamsburg,40.71495,-73.93997,Private room,96,3,82,2019-06-16,1.58,1,289 +5207973,Bright 2BD in East Village,26942242,Alfred,Manhattan,East Village,40.7295,-73.98623,Entire home/apt,230,2,1,2015-03-31,0.02,1,0 +5210286,Chic Apartment in Sunny Brownstone Building,8353665,Alexandra,Manhattan,Harlem,40.82227,-73.94878,Entire home/apt,150,4,4,2019-05-15,0.07,1,33 +5211090,"Central 1 bdrm, W/D, roof deck",26958002,Justin,Manhattan,Kips Bay,40.74041,-73.98176,Entire home/apt,225,2,2,2015-06-25,0.04,1,0 +5211296,Chez Louise sunny BK garden apt.,17448220,Louise,Brooklyn,Bedford-Stuyvesant,40.68383,-73.92226,Entire home/apt,130,3,138,2019-06-18,2.59,1,254 +5212133,Large 1 Bedroom Apartment w/ Office in Greenpoint!,2265800,Sky,Brooklyn,Greenpoint,40.72862,-73.95495,Entire home/apt,116,1,0,,,1,0 +5213963,Cozy East Harlem 1BD,26975156,Vanessa,Manhattan,East Harlem,40.80302,-73.93476,Entire home/apt,115,4,1,2015-04-01,0.02,1,0 +5214511,North Brooklyn Experience.,25762289,Amar,Brooklyn,Greenpoint,40.72614,-73.94813,Entire home/apt,126,3,3,2019-06-04,0.06,1,110 +5216799,Three-bedroom apartment in beautiful house,26564745,Lisa And Jessica,Brooklyn,Prospect-Lefferts Gardens,40.65649,-73.95854,Entire home/apt,174,5,17,2016-01-03,0.32,1,15 +5217507,Great 1-bd apartment in Murray Hill,3510638,Eugene,Manhattan,Murray Hill,40.74479,-73.97573,Entire home/apt,149,5,13,2018-05-20,0.24,1,0 +5219488,Luxury Upper East Side Studio Apt,26781249,Harman,Manhattan,Upper East Side,40.76802,-73.95653,Entire home/apt,150,4,10,2018-05-29,0.19,1,0 +5224210,Feel at home,1220404,Tom,Brooklyn,East New York,40.66811,-73.89394,Entire home/apt,100,2,1,2016-05-03,0.03,2,292 +5225088,Glorious Mornings Townhouse,2265022,K. Zovia,Staten Island,Mariners Harbor,40.62726,-74.1588,Entire home/apt,150,5,16,2019-05-17,0.33,1,299 +5227024,"Extra Large Room in Huge, Serene Harlem Brownstone",27046912,Tara & Carl,Manhattan,Harlem,40.80669,-73.95655,Private room,89,4,56,2019-06-20,1.07,2,15 +5229212,BRIGHT MODERN CLEAN townhouse 4 Bedroom 6 guests,1226742,Johnny,Brooklyn,Clinton Hill,40.68383,-73.96319,Entire home/apt,308,2,62,2019-06-24,2.01,2,294 +5231104,Spacious room available in Brooklyn,27072226,Winona,Brooklyn,Crown Heights,40.66926,-73.93603,Private room,40,1,0,,,1,0 +5231817,UES LRG 1BR SLEEPS 4~61ST~Gr8 value,2119276,Host,Manhattan,Upper East Side,40.76201,-73.96084,Entire home/apt,150,30,5,2018-03-28,0.11,39,228 +5232121,".Safe, cozy & minutes to NYC",3339701,Angelo,Queens,Ditmars Steinway,40.77776,-73.91612,Private room,55,1,90,2019-06-21,1.72,4,310 +5232570,"Cozy room awaits, best location, center of NYC",27081028,Norman,Manhattan,Midtown,40.759,-73.9701,Private room,55,1,16,2019-05-18,0.52,1,0 +5233279,"Quiet, Cozy studio walk to Central Park",19034179,Jennifer,Manhattan,Upper East Side,40.76902,-73.95807,Entire home/apt,139,2,2,2017-01-03,0.07,1,0 +5233345,Cosy style private bedroom with Queen bed,27084741,Paul,Queens,Woodside,40.74436,-73.91141,Private room,90,1,27,2018-10-22,0.55,2,365 +5236146,Cozy 2bdr 1 block from Central Park,4655245,Douglas,Manhattan,East Harlem,40.79462,-73.94923,Entire home/apt,249,3,150,2019-06-18,2.91,1,159 +5236234,"1BR, elevator, kitchen, doorman!",12762559,Jeremy,Manhattan,Upper East Side,40.78633,-73.95218,Entire home/apt,150,1,0,,,1,0 +5237336,Warm and Inviting 1 Bedroom In Fort Greene,189275,Erika,Brooklyn,Fort Greene,40.69658,-73.97116,Entire home/apt,95,1,49,2019-06-30,6.77,1,40 +5237422,Private modern BR & Bath in BK,1297675,Helena,Brooklyn,Prospect Heights,40.68093,-73.97182,Private room,135,2,79,2019-06-19,1.49,2,11 +5238491,Cozy Greenpoint Private Room,675317,Elvira,Brooklyn,Greenpoint,40.73712,-73.95521,Private room,45,17,0,,,1,0 +5240711,2 BEDROOM IN MIDTOWN EAST,27121854,Olga,Manhattan,Midtown,40.75239,-73.9707,Entire home/apt,289,10,169,2019-01-02,3.23,1,3 +5241757,Eclectic Loft 20 min-> Union Sq! ,1884659,Brett,Brooklyn,Bushwick,40.70827,-73.92264,Entire home/apt,97,2,47,2019-06-09,0.88,2,345 +5242156,Park Slope townhouse apartment,956379,David,Brooklyn,South Slope,40.66309,-73.98497,Entire home/apt,180,30,84,2019-05-31,1.70,1,204 +5247202,Gem-like UES writer's studio,172672,Tara,Manhattan,Upper East Side,40.77828,-73.94768,Entire home/apt,75,30,32,2019-05-06,0.67,1,4 +5248975,Large Penthouse in Williamsburg,9423379,Francois,Brooklyn,Williamsburg,40.71526,-73.95016,Entire home/apt,320,6,10,2018-08-21,0.20,1,0 +5251338,"Stay in beautiful Carroll Gardens, Brooklyn!! 1BD",17129810,Jeffrey,Brooklyn,Red Hook,40.66541,-74.01407,Private room,60,5,66,2018-11-02,1.75,5,326 +5251340,Beautiful big room in Carroll Gardens Brooklyn!!!,17129810,Jeffrey,Brooklyn,Columbia St,40.68173,-74.00366,Private room,60,3,118,2019-07-07,2.84,5,326 +5251586,Large & Sunny Apt in Prime Location,5102579,Maggie,Brooklyn,Park Slope,40.68247,-73.97961,Entire home/apt,144,15,6,2016-09-01,0.11,1,0 +5251624,"Sunny, Warm, Comfortable Room",3114551,Jules,Brooklyn,Bushwick,40.69888,-73.92081,Private room,40,14,0,,,1,0 +5251673,Quiet Space Directly Off L Train,27181264,Jaclyn,Brooklyn,Williamsburg,40.71843,-73.95725,Private room,115,1,0,,,1,0 +5251719,1 Bedroom in Luxury Wall street Apt,27181498,Ben,Manhattan,Financial District,40.70573,-74.00855,Shared room,75,1,0,,,1,0 +5252343,Close to LGA/JFK & 15min to Midtown,419629,Nicky,Queens,Elmhurst,40.74125,-73.89035,Private room,47,2,2,2015-02-23,0.04,1,17 +5257388,Private room in 3rd bedroom apt.,27212322,Krupa,Manhattan,Hell's Kitchen,40.75563,-73.99424,Private room,1450,1,0,,,1,0 +5258014,"Williamsburg Gardens Flat, Large Room Private Bath",3605729,Drew,Brooklyn,Williamsburg,40.70709,-73.95191,Private room,100,3,19,2019-05-05,0.42,1,0 +5258459,Urban Oasis for the Single Traveler,1519119,Jason,Manhattan,Washington Heights,40.8545,-73.93169,Shared room,50,1,0,,,1,89 +5259407,2BR Prime West village~Sleeps 5,2119276,Host,Manhattan,West Village,40.73226,-74.00644,Entire home/apt,250,30,3,2015-12-23,0.06,39,365 +5260942,"Spacious Luxury Condo-1 bedroom, NYC",1478146,Anne,Manhattan,Harlem,40.80177,-73.9571,Entire home/apt,115,8,9,2018-10-15,0.18,1,111 +5261712,Large bedroom in East Village,17491348,Valentin,Manhattan,East Village,40.72878,-73.97747,Private room,60,7,1,2015-05-15,0.02,1,0 +5261913,"Small, Comfortable Bedroom w/Private Bathrm for 2",27238076,Stephanie,Manhattan,Hell's Kitchen,40.76432,-73.98599,Private room,135,2,195,2019-06-28,3.69,1,241 +5262076,Tiny Cozy Room in West Harlem!,4534649,L & A,Manhattan,Harlem,40.81617,-73.95371,Private room,50,2,170,2019-06-23,3.20,3,84 +5262333,Excellent Midtown Location!,27053744,Antal,Manhattan,Midtown,40.76186,-73.97324,Entire home/apt,149,3,1,2015-02-28,0.02,1,0 +5266736,Cozy Garden Flat.,27261471,Philmore,Brooklyn,Canarsie,40.64716,-73.89403,Entire home/apt,120,2,1,2019-06-30,1,2,140 +5266888,Spacious East Village 1 Bedroom,14684238,Matthew,Manhattan,East Village,40.7249,-73.98852,Entire home/apt,150,5,22,2019-06-19,0.41,1,6 +5267177,Spacious 1BR Bushwick Surfers Loft!,27263990,Lindsey,Brooklyn,Bushwick,40.69544,-73.93046,Entire home/apt,110,3,0,,,1,0 +5268045,Beautiful room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76578,-73.95509,Private room,95,1,21,2019-02-09,0.39,2,188 +5268960,Cozy 1 Bdrm Greenpoint-Williamsburg,6155803,Barrie,Brooklyn,Greenpoint,40.72402,-73.95025,Entire home/apt,190,2,12,2017-10-15,0.29,1,0 +5269840,Remsen Village Rental,27277459,Dawn,Brooklyn,East Flatbush,40.65491,-73.9222,Entire home/apt,139,4,77,2019-06-26,1.65,2,340 +5270589,"Large, Furnished East Village Room",26732630,Bennett,Manhattan,East Village,40.72787,-73.98969,Private room,115,1,0,,,1,0 +5271661,Master Bedroom available with en suite bathroom.,6960329,Edna,Manhattan,Upper West Side,40.77484,-73.98659,Private room,130,2,2,2019-06-30,0.94,1,150 +5271997,NEW YORK CITY!!! LOCATION LOCATION!,6716330,Chris,Manhattan,Upper West Side,40.77311,-73.98606,Private room,125,3,124,2019-06-24,2.32,3,347 +5276602,Fully Furnished Brownstone Bedroom,20114391,Lisa,Brooklyn,Fort Greene,40.68557,-73.97073,Private room,45,21,14,2019-01-14,0.27,2,48 +5276704,"Cozy, Sunny, Clean UES Home in central location",27314977,Roza,Manhattan,Upper East Side,40.76771,-73.95844,Entire home/apt,110,4,8,2018-12-20,0.15,1,0 +5276908,SUN FILLED 1BR in ARTSY FORT GREENE,8858347,Rob,Brooklyn,Fort Greene,40.68792,-73.97319,Entire home/apt,120,21,12,2018-08-13,0.22,1,22 +5277117,Comfortable Crown Heights Room,6023360,Ali,Brooklyn,Crown Heights,40.67221,-73.95584,Private room,50,1,1,2015-05-16,0.02,1,0 +5277242,Sleek Bushwick Loft,8627814,Alex,Brooklyn,Williamsburg,40.70629,-73.92884,Entire home/apt,100,2,3,2016-04-13,0.06,1,0 +5278810,Cozy room in a newly renovated apt!,6900870,Harish,Brooklyn,Prospect Heights,40.67382,-73.96782,Private room,75,2,14,2016-09-19,0.27,1,0 +5278927,Bohemian Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72546,-73.94046,Entire home/apt,129,30,7,2019-06-01,0.14,52,328 +5279859,Large Bohemian Studio- Gramercy!,6339750,Gabrielle,Manhattan,Kips Bay,40.74084,-73.98008,Entire home/apt,196,5,66,2019-07-02,1.23,1,323 +5279902,Mod. Apartment NYC w/ Outdoor Space,7181834,Juan,Manhattan,Chelsea,40.73861,-73.99482,Entire home/apt,400,1,0,,,1,0 +5279925,Apt available - Best NYC Location,153675,Matteo,Manhattan,East Village,40.73279,-73.98746,Entire home/apt,140,12,1,2015-09-01,0.02,2,164 +5284341,Quiet Cottage with Private Yard,15264295,Toby,Queens,Maspeth,40.73973,-73.90731,Private room,60,1,0,,,1,0 +5285141,Big Williamsburg BR near the J train!,11483208,Claire,Brooklyn,Williamsburg,40.70903,-73.95936,Private room,55,1,4,2016-04-24,0.10,1,0 +5285553,Beautiful Views from a Warm Home,2423067,Clara,Manhattan,East Harlem,40.79303,-73.93368,Entire home/apt,175,2,24,2019-03-11,0.56,2,0 +5285867,Spacious Full 1 Bedroom Apartment,11601961,Amy,Brooklyn,Flatbush,40.64858,-73.96378,Entire home/apt,90,3,24,2019-04-07,0.45,1,29 +5286096,Amazing Studio-EmpireStateBuilding,3866196,Guillaume,Manhattan,Midtown,40.7461,-73.98632,Entire home/apt,281,1,3,2016-04-22,0.07,1,0 +5286482,"New York Brooklyn Midwood Area +PRIVATE ROOM",27371081,Igor,Brooklyn,Midwood,40.62636,-73.9627,Private room,50,2,21,2019-04-21,1.47,1,179 +5287414,"A BETTA share -Low maintanence guests, e20's NYC!",27376622,Eja,Manhattan,Gramercy,40.73765,-73.98366,Shared room,65,1,49,2019-06-19,0.93,1,353 +5287733,Cozy Room,27379417,Dr.Sally,Queens,South Ozone Park,40.66788,-73.82419,Private room,85,1,243,2018-04-30,4.54,1,281 +5288228,Sunny Room across CrotonaPark for Women Only Space,860636,Shawn(Ta),Bronx,Tremont,40.83875,-73.88728,Private room,38,3,15,2018-10-01,0.28,3,0 +5288376,Cozy room on Upper West Side,11297009,Lex,Manhattan,Upper West Side,40.78785,-73.97717,Private room,59,1,15,2017-09-04,0.29,4,330 +5288942,Quaint and cozy sun-filled room,1189622,Janira,Queens,Ridgewood,40.69804,-73.90683,Private room,40,4,15,2016-11-14,0.30,1,0 +5292616,Chelsea Apartment - GREAT LOCATION!!!!,16427090,Frank,Manhattan,Chelsea,40.73933,-73.99879,Entire home/apt,229,3,2,2016-11-01,0.06,1,0 +5293662,Ft Greene/Clinton Hill Jr 1 Bedroom,6177121,Casey,Brooklyn,Clinton Hill,40.69358,-73.96966,Entire home/apt,70,2,1,2016-01-03,0.02,1,0 +5295884,Spacious East Harlem apartment with sunset views,27428173,Lisa E,Manhattan,East Harlem,40.799,-73.9428,Entire home/apt,190,7,2,2019-07-06,2,1,135 +5297292,Charming 2BR Brownstone near subway,26134830,Isabel,Brooklyn,Bedford-Stuyvesant,40.68211,-73.92121,Entire home/apt,150,3,109,2019-06-15,2.10,1,343 +5297788,"Charming Room in Luxe New Home, near C/3 Subways",17462748,Steven,Brooklyn,Crown Heights,40.67411,-73.93843,Private room,68,5,115,2019-06-30,2.20,5,149 +5298299,Sunny Private Bedroom in Chelsea,11462251,Danielle,Manhattan,Chelsea,40.73885,-73.99701,Private room,109,2,2,2015-09-21,0.04,1,0 +5298458,"Upper West SIDE,Washington bridge,Time Square 30'",2730883,Seb,Manhattan,Washington Heights,40.85341,-73.93181,Entire home/apt,37,30,3,2017-12-26,0.06,2,82 +5298896,Unique NYC Loft - Guest Room,3868692,Lucas,Manhattan,Financial District,40.70457,-74.00952,Private room,124,1,107,2019-07-07,3.21,2,62 +5299177,Bright & Spacious Apt in Prime Brooklyn,11414889,Ben,Brooklyn,Prospect Heights,40.67986,-73.97027,Entire home/apt,190,2,9,2018-06-10,0.25,1,0 +5300082,CLEAN AND STYLISH EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.72956,-73.98166,Entire home/apt,160,1,210,2019-06-23,3.93,4,265 +5301003,Newly renovated 1BR+ in Park Slope,1763862,Jing,Brooklyn,South Slope,40.66485,-73.98543,Entire home/apt,160,1,111,2019-06-22,2.23,1,253 +5302719,Spacious & Bright Apt in Park Slope,9846230,Celine,Brooklyn,Park Slope,40.6774,-73.98247,Entire home/apt,145,5,0,,,1,0 +5303100,"Cute & Cozy Room in Greenpoint, BK",25854571,Bryn,Brooklyn,Greenpoint,40.72556,-73.94104,Private room,49,1,2,2016-06-08,0.05,1,0 +5304431,Sunny 2BR Flex w/CityView From Bed!,7503643,Vida,Brooklyn,Greenpoint,40.72738,-73.94077,Entire home/apt,159,30,9,2019-03-31,0.21,52,362 +5305619,"Newly Renovated Flat, McKibbin Loft",5663328,Scott,Brooklyn,Williamsburg,40.70429,-73.93793,Private room,75,14,0,,,1,0 +5309343,Serene West Village Sun-flooded apt,27502743,John,Manhattan,West Village,40.73183,-74.00649,Entire home/apt,175,90,0,,,1,89 +5309460,Spacious Room in Uptown Manhattan,7989115,Nikki,Manhattan,Washington Heights,40.83299,-73.94527,Private room,150,2,8,2018-06-23,0.16,1,364 +5309810,Private room near Columbia,24528234,Hua,Manhattan,Harlem,40.80446,-73.95786,Private room,65,1,8,2015-11-27,0.18,1,0 +5309959,"A room in private house,",22420999,Herman,Queens,Richmond Hill,40.69509,-73.83203,Private room,50,2,20,2018-11-02,0.47,5,347 +5313584,"Large Sunny Room, Crown Heights, BK",1747467,Kristina,Brooklyn,Crown Heights,40.67464,-73.95735,Private room,52,1,0,,,1,0 +5315796,Spacious Private West Village Studio,839021,Laura,Manhattan,West Village,40.73075,-74.00233,Entire home/apt,176,5,7,2018-04-12,0.21,1,8 +5315798,Williamsburg Apt. S 2nd & Bedford,22761603,Dan,Brooklyn,Williamsburg,40.71425,-73.96054,Private room,90,1,1,2015-03-17,0.02,1,0 +5316158,Sunny 2-bedroom in Clinton Hill ,936258,Kelsey,Brooklyn,Clinton Hill,40.68378,-73.96483,Entire home/apt,175,2,8,2016-08-22,0.15,1,0 +5316266,Studio in North Manhattan ,27538684,Pat,Manhattan,Harlem,40.81186,-73.94019,Entire home/apt,125,6,2,2015-08-25,0.04,1,0 +5316377,"5 Bedroom, 2 Bath, Steps to Train. FREE PARKING!",11137400,Eli,Brooklyn,Crown Heights,40.6686,-73.93037,Entire home/apt,249,3,193,2019-06-05,3.61,1,344 +5316908,Beautiful 1BD/ NEW RENOVATIONS/ELEV,1475015,Mike,Manhattan,Upper West Side,40.76917,-73.98488,Entire home/apt,87,30,7,2018-12-23,0.18,52,365 +5317871,Private Room in Fort Greene! (Baby Friendly),7389379,Nikki,Brooklyn,Fort Greene,40.68436,-73.9735,Private room,65,2,0,,,1,0 +5318322,"Triplex 3 bedroom Private Apt, Deck, yard & pond!",8354345,Gennaro,Brooklyn,Gowanus,40.68095,-73.98901,Entire home/apt,495,2,95,2019-06-17,1.94,1,285 +5319150,"Modern Williamsburg Apt. Comfort, style, ease!",3865502,Roy,Brooklyn,Williamsburg,40.71323,-73.95852,Entire home/apt,120,30,21,2019-03-30,0.40,1,219 +5319431,Beautiful Design studio next to Central Park!,27315132,Stratos,Manhattan,East Harlem,40.78866,-73.95461,Entire home/apt,110,6,25,2018-07-22,0.49,1,161 +5319785,Charming 1-BR in Gramercy,5734689,Eunice,Manhattan,Gramercy,40.73627,-73.9802,Entire home/apt,159,2,13,2019-06-16,0.25,1,10 +5320983,Beautiful bright renovated 2BR w Balcony-sleeps 5!,588270,Dikla,Brooklyn,DUMBO,40.7043,-73.98667,Entire home/apt,189,2,177,2019-06-09,3.33,2,235 +5325551,"Large Room, Private Entrance",27591905,Gene,Brooklyn,Bedford-Stuyvesant,40.68076,-73.91673,Private room,58,2,0,,,1,0 +5326138,Eclectic Loft Room 20 min-Union Sq!,1884659,Brett,Brooklyn,Bushwick,40.70745,-73.92255,Private room,59,1,12,2019-03-16,0.23,2,358 +5327035,The Long Hallway,7363727,Tanmaya,Brooklyn,Crown Heights,40.67784,-73.94995,Private room,51,7,0,,,1,0 +5327598,Convenient & Updated- prime East Village location!,11576606,Katie,Manhattan,East Village,40.72259,-73.98502,Entire home/apt,199,3,1,2016-10-02,0.03,1,0 +5328543,Private Bedroom Private Bathroom,322716,Alex,Brooklyn,Crown Heights,40.67209,-73.94899,Private room,52,12,1,2015-03-06,0.02,5,89 +5334478,One Bedroom Apartment in Chelsea,5074654,Seth,Manhattan,Chelsea,40.74326,-74.00004,Entire home/apt,199,2,98,2019-06-26,1.88,2,33 +5335792,Great East Village bedroom NYC,7877557,Guy,Manhattan,East Village,40.72825,-73.98879,Private room,100,2,0,,,1,0 +5336588,"Sun filled room- Manhattan, steps to Express train",12213641,Joshua,Manhattan,East Harlem,40.80249,-73.93463,Private room,54,1,46,2019-06-30,0.91,2,14 +5337757,"Beautiful, Sunny, by Park, with Private Entrance",117949,Ariel,Brooklyn,Greenpoint,40.72722,-73.94209,Private room,49,3,59,2019-06-08,1.12,1,99 +5338293,"Soho loft, Private bed & bath w/ luxury amenities",14794302,Vanessa,Manhattan,SoHo,40.72578,-73.99998,Private room,250,1,10,2019-04-11,0.26,1,364 +5340170,Spacious room in Park Slope,27240422,Hardik,Brooklyn,Park Slope,40.67487,-73.98459,Private room,45,1,2,2015-07-09,0.04,1,0 +5340262,纽约之家(Sunnyhome7),27673980,Amy,Queens,Flushing,40.74569,-73.83299,Private room,50,1,214,2019-06-24,4.08,8,56 +5341379,Modern Doorman Apt with Great Views,17502474,Sylvia,Brooklyn,Fort Greene,40.68894,-73.9803,Entire home/apt,600,1,0,,,1,0 +5343821,Quiet Midtown Oasis - Sutton Place,27589508,James,Manhattan,Midtown,40.75624,-73.96417,Entire home/apt,200,2,84,2019-06-25,2.21,1,272 +5344850,Cozy room 15 min from Manhattan,27698133,Jakub,Queens,Woodside,40.74705,-73.89564,Private room,38,5,13,2018-12-18,0.25,1,0 +5345293,Historic Landmark Neighborhood,27700855,Peter,Brooklyn,Brooklyn Heights,40.69165,-73.99764,Entire home/apt,300,2,62,2019-06-30,1.19,1,274 +5346488,Huge Sunny Room With En Suite,4731044,Becky,Brooklyn,Bedford-Stuyvesant,40.694,-73.93472,Private room,50,14,0,,,1,0 +5346743,Beautiful room close to Manhattan,7451917,Fe,Brooklyn,Bay Ridge,40.63304,-74.02811,Private room,55,15,7,2018-12-13,0.13,2,317 +5352301,Housing for SGU/AUA/SABA/ROSS students,27741331,Lyn,Brooklyn,East Flatbush,40.65777,-73.92263,Private room,27,30,9,2019-03-23,0.18,2,345 +5352802,Unique loft space in the middle of Manhattan!,5740424,Maria,Manhattan,Midtown,40.75045,-73.98456,Entire home/apt,200,6,1,2016-12-30,0.03,1,0 +5353312,Fabulous studio UES 30 days min,23772724,Elem,Manhattan,Upper East Side,40.77528,-73.95238,Entire home/apt,99,30,13,2019-03-24,0.30,15,323 +5353431,Charming Studio close to everything,16548665,Britta,Brooklyn,Bedford-Stuyvesant,40.69365,-73.95841,Entire home/apt,80,5,5,2016-01-05,0.09,1,0 +5353612,Beautiful private suite-like 2FL apt. West Village,9350960,Victoria,Manhattan,West Village,40.73433,-74.00588,Entire home/apt,250,2,168,2019-06-23,4.39,1,222 +5353815,Top Floor Brooklyn Apartment,27748965,Cecilia And Bryan,Brooklyn,Flatbush,40.6549,-73.95432,Entire home/apt,95,3,0,,,1,0 +5354632,Private Room Inwood Park Top of Manhattan,19931875,Luz & Ruben,Manhattan,Inwood,40.87206,-73.92946,Private room,59,4,13,2018-08-18,0.28,3,157 +5354796,Spacious airy room perfect for two!,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85535,-73.91388,Private room,57,2,106,2019-06-20,2.02,4,82 +5358354,New BLDG~Balcony~W/D~Prime location,2119276,Host,Manhattan,Hell's Kitchen,40.76685,-73.98644,Entire home/apt,170,30,20,2019-05-09,0.43,39,320 +5359410,"Comfy Room, Close to the Train! ",27782348,Morgan,Brooklyn,Bushwick,40.6983,-73.92607,Private room,50,1,1,2015-03-10,0.02,1,0 +5361021,Beautiful Washington Heights room,27790643,Carl,Manhattan,Washington Heights,40.84522,-73.93952,Private room,49,1,1,2015-03-23,0.02,1,0 +5361824,"1BR bright studio w/ priv bathroom, own entrance!",1290741,Kelvin,Brooklyn,Williamsburg,40.71539,-73.95426,Private room,65,4,2,2018-11-20,0.04,1,0 +5362041,Columbia U/Harlem Townhouse Duplex,27796188,John,Manhattan,Harlem,40.80917,-73.95405,Entire home/apt,250,3,104,2019-06-11,2.07,2,266 +5362279,Stylish 1br in Brooklyn Heights,9787502,Shehzad,Brooklyn,Brooklyn Heights,40.69482,-73.99222,Entire home/apt,200,4,24,2017-07-01,0.45,1,0 +5363669,Brand new apt close to Central Park,13483550,Eleanor,Manhattan,East Harlem,40.79312,-73.94115,Entire home/apt,110,2,10,2016-08-15,0.19,1,0 +5363874,2br Duplex w/Roof Deck Close to Empire State Build,17982486,Cheri,Manhattan,Kips Bay,40.74205,-73.97997,Entire home/apt,250,30,13,2018-04-30,0.25,1,274 +5364134,Sunny Park Slope Bedroom,3201774,Ashley,Brooklyn,South Slope,40.66305,-73.9886,Private room,73,1,199,2019-07-02,4.15,2,142 +5364337,1 Private Bedroom w/ private bath,27807705,Isoke,Brooklyn,Bedford-Stuyvesant,40.68767,-73.94147,Private room,70,1,0,,,1,0 +5364814,Artist Loft in Bushwick,9881214,Darcy,Brooklyn,Bushwick,40.70018,-73.92586,Entire home/apt,125,1,1,2015-04-01,0.02,1,0 +5365190,Amazing 2 BR Loft-Style Apt in South Williamsburg!,27551876,Charlie,Brooklyn,Williamsburg,40.71186,-73.96115,Entire home/apt,195,1,0,,,1,50 +5366126,Great Private Bedroom,569577,John,Brooklyn,Prospect-Lefferts Gardens,40.66126,-73.96257,Private room,75,1,0,,,1,0 +5370580,Private room in 2/bed doorman condo,12621774,Calogero,Queens,Corona,40.73886,-73.85147,Private room,36,1,69,2019-07-01,1.32,1,354 +5371463,Charming sun drenched sanctuary,1295576,Johnny,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95481,Entire home/apt,99,1,100,2019-01-01,1.97,1,158 +5372082,Cozy Vacation Getaway,20806507,Nat,Brooklyn,Boerum Hill,40.68558,-73.98175,Entire home/apt,100,2,8,2018-07-02,0.17,1,359 +5372526,Great share - central location downtown,1223259,Jeff,Manhattan,Lower East Side,40.71952,-73.99313,Private room,71,10,56,2019-05-14,1.08,1,131 +5373297,Comfy 1 Bedroom Apt with Guest Room,26951283,Alexsis,Brooklyn,Park Slope,40.67092,-73.98759,Entire home/apt,100,2,4,2016-10-23,0.08,1,0 +5373703,Sunny Fort Greene Suite,10887881,Erin,Brooklyn,Clinton Hill,40.68943,-73.96635,Private room,85,1,28,2016-03-27,0.53,1,0 +5374226,Homey Well-Located Apartment!,6917906,Michelle,Manhattan,Gramercy,40.73554,-73.98855,Entire home/apt,169,2,16,2016-09-03,0.31,1,0 +5376069,W Village - Airy & Charming Studio,10306287,Debra,Manhattan,West Village,40.73666,-74.00691,Entire home/apt,149,2,3,2017-06-17,0.10,1,0 +5381943,"Cozy, quiet room near Central Park",4693468,Melissa,Manhattan,Upper East Side,40.77993,-73.94879,Private room,89,1,91,2019-06-14,1.71,1,166 +5382755,Home 4 Medical Professionals-Kngbr6,26377263,Stat,Brooklyn,East Flatbush,40.6593,-73.93512,Private room,44,30,1,2016-09-30,0.03,43,273 +5383005,"Gorgeous, Luxurious, Modern Apt in Williamsburg!",27660118,Alan,Brooklyn,Williamsburg,40.70713,-73.94537,Entire home/apt,150,2,233,2019-06-23,4.38,1,5 +5384643,Adorable Studio in Heart of BKLYN,1564111,Madeline,Brooklyn,Fort Greene,40.69105,-73.97356,Entire home/apt,125,2,73,2019-06-08,1.39,1,20 +5384774,"Home For Medical Professionals - ""The Singultus""",26377263,Stat,Queens,Far Rockaway,40.59696,-73.75524,Private room,42,6,2,2015-07-31,0.04,43,151 +5385943,Spacious Room in Awesome Apt Sublet,27919611,Matthew,Manhattan,Washington Heights,40.83242,-73.93931,Private room,28,20,0,,,1,0 +5386402,Bohemian Paradise in Williamsburg,4624753,Casey,Brooklyn,Williamsburg,40.71395,-73.96298,Entire home/apt,155,4,0,,,1,0 +5389907,House 10 min from Manhattan w/ parking near subway,3641421,Martha & Remo,Queens,Astoria,40.7636,-73.926,Entire home/apt,300,7,1,2019-01-01,0.16,1,42 +5390483,Snowfort penthouse with lots of natural light,4589525,Michael,Manhattan,Upper West Side,40.77461,-73.98899,Private room,250,7,3,2015-11-07,0.06,1,0 +5390882,Charming Bedroom in Harlem,27944388,Charles,Manhattan,East Harlem,40.80226,-73.94506,Private room,70,1,325,2019-06-19,6.19,1,108 +5392517,A Spacious Private Peaceful Studio,1509452,Sayam,Brooklyn,Crown Heights,40.67494,-73.95841,Entire home/apt,80,15,2,2015-10-31,0.04,1,0 +5395116,Studio in UWS- Manhattan,14586567,Paula,Manhattan,Upper West Side,40.79368,-73.97324,Entire home/apt,150,1,0,,,1,0 +5395679,Large Private Room in Spacious Apt,27969560,Zach,Queens,Ridgewood,40.69829,-73.90771,Private room,65,2,132,2019-06-24,2.54,1,261 +5396325,Clean and Cozy in Greenpoint/W'burg,1721426,Ashia,Brooklyn,Greenpoint,40.72559,-73.95384,Entire home/apt,167,5,2,2015-06-09,0.04,1,0 +5396701,Union square~reno Studio~Terrace,2119276,Host,Manhattan,East Village,40.73117,-73.98335,Entire home/apt,130,30,10,2019-05-31,0.20,39,311 +5396801,Premium Apartment in Brooklyn,22249707,Alex,Brooklyn,Sheepshead Bay,40.58343,-73.95386,Entire home/apt,115,2,60,2019-06-23,1.15,1,0 +5397157,Private studio by McCarren Park!,27530449,Estefania,Brooklyn,Greenpoint,40.72071,-73.94902,Private room,94,4,199,2019-06-14,3.75,2,246 +5397568,New York 2 to 8 Guest + Private ROOFTOP SUPERHOST,9209691,Anatha Angèle,Manhattan,Harlem,40.82313,-73.94982,Entire home/apt,185,4,137,2019-06-28,2.83,2,261 +5401148,"Artful Chelsea 1-BR Apt, BR Faces Garden",27998261,Adrienne,Manhattan,Chelsea,40.74742,-73.99617,Entire home/apt,195,7,14,2018-09-24,0.29,1,0 +5402239,Full Apt. in PRIME Williamsburg!,27159364,Brett,Brooklyn,Williamsburg,40.71475,-73.95557,Entire home/apt,90,4,1,2015-03-14,0.02,1,0 +5402632,Private BDR/BATH in Luxury Condo near Times Square,27927011,Ashley,Manhattan,Hell's Kitchen,40.75755,-73.99305,Private room,99,365,7,2018-03-08,0.14,1,337 +5402672,Luxurious 1BR/1.5Bath Park Ave Apt,28005408,Srini,Manhattan,Murray Hill,40.74746,-73.97883,Entire home/apt,499,30,4,2015-10-27,0.09,1,364 +5404201,Sun-filled Brownstone in Brooklyn,28013319,Gagandeep,Brooklyn,Prospect Heights,40.67665,-73.97094,Entire home/apt,180,2,135,2019-06-16,2.62,1,151 +5404627,Sun Drenched Williamsburg Apt,5175035,Francesca And Angelique,Brooklyn,Williamsburg,40.71208,-73.95091,Entire home/apt,300,2,3,2016-06-02,0.07,1,0 +5406041,Mod 3 BR duplex-East Village,27974744,Cara,Manhattan,East Village,40.72755,-73.97876,Private room,100,2,156,2019-06-19,3.90,1,197 +5406067,Great Value Great Location!,17062221,Vanessa,Manhattan,Kips Bay,40.73879,-73.97994,Private room,134,3,139,2019-07-02,2.66,2,3 +5406167,Spacious and sunny private room,22189723,Diego,Queens,Ridgewood,40.70696,-73.91155,Private room,49,2,49,2019-06-02,0.95,2,303 +5406187,Sunny Room by Prospect Park,400240,Murat,Brooklyn,Flatbush,40.65323,-73.96223,Private room,47,2,91,2019-07-07,1.73,2,51 +5409372,Artsy English Basement Apartment,7016520,Patricia,Brooklyn,Windsor Terrace,40.65497,-73.97459,Entire home/apt,120,2,17,2019-06-24,0.33,1,0 +5409607,SPACIOUS 2 Bedroom Apt Near Upper East HOSPITALS,25237492,Juliana,Manhattan,Upper East Side,40.76235,-73.96005,Entire home/apt,185,30,9,2018-12-07,0.18,34,342 +5410897,Fab Park Slope garden apt w/ patio,5768957,Michael,Brooklyn,South Slope,40.66832,-73.98754,Entire home/apt,169,30,136,2019-07-05,2.70,1,279 +5411787,Art deco apartment in Bay Ridge,21327210,David,Brooklyn,Bay Ridge,40.63692,-74.0276,Entire home/apt,130,14,23,2019-05-27,0.48,2,33 +5412567,Bright & Colorful Studio in BK,19655924,Dominique,Brooklyn,Bedford-Stuyvesant,40.68856,-73.95315,Entire home/apt,110,1,3,2015-11-16,0.06,1,0 +5413565,Artist/Musician Loft (HUGE space!),11968309,Raviv,Brooklyn,Williamsburg,40.70882,-73.93705,Entire home/apt,122,4,21,2019-05-12,0.41,1,306 +5414178,Master bedroom in prime Brooklyn,28065838,Dana,Brooklyn,Prospect Heights,40.6769,-73.96485,Private room,150,1,2,2015-04-24,0.04,1,0 +5414471,Cool Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72533,-73.94014,Entire home/apt,129,30,1,2018-05-31,0.07,52,340 +5414911,“纽约之家 ”独立洗手间PrivateBathroom,27673980,Amy,Queens,Flushing,40.74428,-73.8333,Private room,65,1,76,2019-04-08,1.46,8,25 +5418312,*PIZZAZZ* Fantastic Studio Apartment-Upper East!,25237492,Juliana,Manhattan,Upper East Side,40.76181,-73.96127,Entire home/apt,115,30,18,2019-06-30,0.35,34,311 +5418807,Home away From Home in Queens!,27614204,Stella,Queens,Bayswater,40.59968,-73.76452,Private room,60,2,81,2019-06-16,1.60,1,312 +5419405,Cozy 1BR with Backyard,1020326,Michael & Andrea,Brooklyn,Carroll Gardens,40.67757,-73.99617,Entire home/apt,150,7,1,2015-08-03,0.02,1,0 +5420456,"clean, quiet, 1 bdrm, great locale",28100741,Michael,Manhattan,Upper West Side,40.77529,-73.98192,Entire home/apt,200,6,35,2019-06-24,0.69,1,11 +5423135,New York/Upper East Side Loft Apt,11650470,Ingrid,Manhattan,Upper East Side,40.78026,-73.9529,Entire home/apt,110,30,1,2015-04-02,0.02,1,188 +5424042,4 Bedroom Apt On Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.75077,-73.80676,Entire home/apt,259,1,72,2019-05-20,1.37,6,257 +5424994,Ideal SoHo 1BR,9488731,Steven,Manhattan,SoHo,40.72593,-74.00185,Entire home/apt,150,1,5,2018-06-08,0.10,1,0 +5429358,Converted Church Loft -Williamsburg,420993,Yanwen,Brooklyn,Williamsburg,40.71813,-73.95758,Entire home/apt,295,3,0,,,1,0 +5430560,Columbus Circle Studio Apt,15402737,Gabriella,Manhattan,Upper West Side,40.7717,-73.98759,Private room,140,1,2,2016-10-21,0.04,1,0 +5430658,nice room in bedstuy F,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68182,-73.95152,Private room,70,1,49,2019-06-27,0.94,15,359 +5431845,Beautiful Fully Furnished 1 bed/bth,3680008,Aliya,Queens,Long Island City,40.75104,-73.93863,Entire home/apt,134,500,30,2018-06-24,0.57,1,90 +5432089,Manhattan house for large groups,23334165,Patricia,Manhattan,Harlem,40.82249,-73.94479,Entire home/apt,825,5,28,2019-06-01,0.59,3,290 +5432178,Great Space in Williamsburg's Heart,28000421,Luca,Brooklyn,Williamsburg,40.71551,-73.9436,Private room,100,1,0,,,2,0 +5432597,1 Full Bed Room Apt in NYC,17822208,Kristin,Manhattan,Kips Bay,40.74352,-73.97859,Entire home/apt,175,2,0,,,1,0 +5432743,Quiet Room with a View,23163374,Kyle,Brooklyn,Bushwick,40.69987,-73.93216,Private room,60,1,0,,,1,0 +5433287,"Perfect Location Downtown, Walk Everywhere!",5261137,Nazieh,Manhattan,East Village,40.73418,-73.9893,Entire home/apt,250,1,15,2019-06-23,0.40,1,15 +5433367,Huge Bedroom in a Charming House with Private Yard,6480337,Sandra,Brooklyn,Greenpoint,40.72665,-73.94832,Private room,58,2,4,2017-08-21,0.17,1,0 +5433746,European eco-chic in trendy Bklyn,28187447,Francis,Brooklyn,Bedford-Stuyvesant,40.68406,-73.91612,Entire home/apt,142,4,106,2019-06-26,2.07,2,247 +5433967,Bedstuy Garden Half Block to Subway,3674378,Jane,Brooklyn,Bedford-Stuyvesant,40.68369,-73.91349,Entire home/apt,120,3,194,2019-06-20,3.72,1,213 +5434150,CHARMING NYC Studio Loft NEAR SOHO!,27813383,O,Manhattan,Greenwich Village,40.72937,-74.00125,Entire home/apt,136,30,43,2019-01-25,0.85,1,338 +5434197,Convenient Room Near Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.81663,-73.95315,Private room,55,2,71,2016-12-15,1.34,3,0 +5434655,New York City Dreaming - Upper West,3810454,Michael,Manhattan,Upper West Side,40.79584,-73.97156,Entire home/apt,185,3,0,,,1,0 +5439148,Private Room in Duplex Apartment,24468833,Amanda,Brooklyn,Prospect Heights,40.67734,-73.96433,Private room,75,1,1,2015-08-09,0.02,2,188 +5439372,A Historic Harlem Abode,19066350,Eric,Manhattan,East Harlem,40.79963,-73.94628,Entire home/apt,103,2,98,2019-06-24,1.94,1,237 +5442054,Chef's Kitchen and private garden,16437254,Benjamin,Brooklyn,Fort Greene,40.68969,-73.97797,Entire home/apt,193,30,1,2018-11-16,0.13,21,311 +5442313,3 Fully Furnished Apts 1 House!,3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91374,Entire home/apt,700,1,6,2017-02-15,0.13,3,322 +5442584,one bedroom in the middle of it all,27204642,Anna,Manhattan,Theater District,40.76115,-73.98224,Entire home/apt,200,30,14,2019-05-09,0.29,1,284 +5443318,Prime Columbus C~New BLDG~1BR~W/D,2119276,Host,Manhattan,Hell's Kitchen,40.76615,-73.9879,Entire home/apt,145,30,11,2019-06-09,0.24,39,351 +5443581,Bright New Mod 1bd+RoofDeck/WBurg,28234750,Ashley,Brooklyn,Williamsburg,40.70892,-73.94982,Entire home/apt,200,14,14,2017-08-28,0.28,1,0 +5445314,Beautiful Artist loft,21838149,Marcia,Brooklyn,DUMBO,40.70299,-73.98624,Private room,160,1,54,2019-06-20,1.03,1,10 +5445743,"Cozy, private room in Bed-Stuy Apt!",17246368,Sam,Brooklyn,Bedford-Stuyvesant,40.6848,-73.94939,Private room,45,2,43,2019-03-29,0.82,1,302 +5447255,Cozy 1BR Near Theater Distict!,28255422,Sara,Manhattan,Hell's Kitchen,40.76387,-73.99039,Entire home/apt,151,7,12,2015-10-26,0.24,1,0 +5447434,A cozy night in the heart of NYC,28173937,Jeehee,Manhattan,Hell's Kitchen,40.7634,-73.98928,Private room,98,2,20,2016-01-03,0.41,1,0 +5451108,Beautiful room with large windows,7159349,Marian,Brooklyn,Greenpoint,40.73556,-73.9557,Private room,75,6,0,,,1,0 +5454050,Gorgeous 1BR New W/D Modern_BestLocation!NYC,2119276,Host,Manhattan,Hell's Kitchen,40.76494,-73.9881,Entire home/apt,185,30,15,2018-10-09,0.29,39,336 +5458432,Large Industrial Apt. Near Trains & Yankee Stadium,1364903,Farah,Bronx,Concourse Village,40.83161,-73.91958,Entire home/apt,150,4,6,2019-06-10,0.32,1,346 +5465270,"Sunny, and Spacious in Cobble Hill!",4413909,Adam,Brooklyn,Boerum Hill,40.68557,-73.99074,Entire home/apt,170,3,7,2016-08-07,0.14,1,0 +5466630,588A Brownstone Hospitality,28183109,Dara,Brooklyn,Bedford-Stuyvesant,40.68481,-73.93187,Entire home/apt,119,2,83,2019-06-16,1.58,1,217 +5466680,1 BR TSquare balcony great view,18212433,Veronique Camille,Manhattan,Hell's Kitchen,40.76602,-73.99249,Entire home/apt,229,5,5,2018-09-11,0.09,8,43 +5470350,Spacious rm 15 mins from downtown!,1340207,Deena,Manhattan,Harlem,40.81574,-73.94877,Private room,80,2,5,2016-09-19,0.10,1,0 +5475870,Prime Location - Large Private Room,22709931,Richard,Manhattan,Hell's Kitchen,40.76909,-73.98639,Private room,100,5,0,,,1,0 +5476046,Large Duplex Near Subway! 5bdrm/2ba,10297692,Dee,Brooklyn,Crown Heights,40.67615,-73.92945,Entire home/apt,500,1,68,2019-04-27,1.41,2,313 +5476474,Amazing HK one bedroom apartment,20318406,Dimitriy,Manhattan,Hell's Kitchen,40.76571,-73.99482,Entire home/apt,120,1,12,2018-07-19,0.24,1,163 +5477034,Comfy room in Williamsburg Loft Apt,4687722,Mav,Brooklyn,Williamsburg,40.71538,-73.94527,Private room,85,1,0,,,1,0 +5477876,Stylish Greenpoint Gem,1506972,Vanessa & Christian,Brooklyn,Greenpoint,40.73406,-73.95551,Entire home/apt,135,3,17,2019-06-08,0.32,1,8 +5478741,"Garden, Walk to Empire State, B'way, Subway 2 Blks",28411613,Marea,Manhattan,Midtown,40.74447,-73.98362,Entire home/apt,524,3,57,2019-06-09,1.14,1,115 +5478901,Private Room in Harlem,20121732,Alison,Manhattan,Harlem,40.82205,-73.94523,Private room,60,1,0,,,1,0 +5481762,Artfully Renovated Brownstone Space,5515591,Tina,Brooklyn,Bedford-Stuyvesant,40.68685,-73.95526,Entire home/apt,159,4,142,2019-01-04,2.74,2,24 +5482031,Beautiful Spacious 2 Bedroom Apt,8817100,Ulysses,Manhattan,Washington Heights,40.8434,-73.94139,Entire home/apt,200,2,0,,,1,0 +5482918,Pleasant-Place JFK Private Housings Complex,26602392,Dean&Paula,Queens,Springfield Gardens,40.6631,-73.76749,Private room,73,1,148,2019-05-30,3.82,2,347 +5487204,Spacious Room in Brooklyn,6834165,Amanda,Brooklyn,Crown Heights,40.67044,-73.94292,Shared room,70,2,2,2015-08-25,0.04,1,0 +5490366,Spacious Private Room + Full Bath!,28468845,Jacob,Brooklyn,Bushwick,40.69024,-73.9059,Private room,168,7,1,2015-03-21,0.02,1,179 +5490833,Brooklyn Luxury,11463877,Danielle,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93487,Private room,75,1,0,,,1,0 +5491149,Located in the heart of EVERYTHING!,59185,Gabriela,Manhattan,Upper East Side,40.76272,-73.96775,Entire home/apt,169,3,76,2018-12-15,1.48,1,126 +5492696,"Lovely Studio, a Block from Trains!",15107994,Saad,Queens,Jackson Heights,40.74761,-73.89466,Entire home/apt,85,4,6,2016-01-06,0.11,1,0 +5494750,Home 4 Medical Professionals-Kngbr4,26377263,Stat,Brooklyn,East Flatbush,40.66087,-73.93516,Private room,38,30,1,2019-03-30,0.29,43,331 +5495026,Home 4 Medical Professionals-Kngbr5,26377263,Stat,Brooklyn,East Flatbush,40.65881,-73.93376,Private room,48,30,2,2016-05-07,0.04,43,306 +5495927,Crotona Park Sunny Room at SUMMIT!,860636,Shawn(Ta),Bronx,Tremont,40.83887,-73.88805,Private room,42,2,25,2018-09-30,0.47,3,0 +5497874,Sunny spacious private unit close CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77045,-73.95564,Private room,80,30,57,2018-10-10,1.10,3,245 +5500197,Luxurious studio w/ rooftop & gym,6050250,Aram,Brooklyn,Williamsburg,40.71404,-73.93982,Entire home/apt,145,3,8,2016-10-24,0.16,1,0 +5500740,Room Two in sun bathed walk-up_2,26080167,Douglas,Manhattan,Washington Heights,40.83551,-73.94232,Private room,72,2,18,2019-05-05,0.35,3,145 +5502282,Great Room in Williamsburg (uriel),3398752,Alessandra,Brooklyn,Williamsburg,40.71074,-73.95429,Private room,95,2,186,2019-06-22,3.75,2,62 +5504568,Spacious European Room for rent!,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95291,Private room,45,4,49,2019-07-04,0.93,3,40 +5505726,Modern One Bed Apt Near Time Square,25602417,Jardeen,Manhattan,Hell's Kitchen,40.7624,-73.99136,Entire home/apt,250,2,64,2019-06-21,1.96,1,27 +5505918,Winter Deal! Cosy room available in East Village,28557212,Marion,Manhattan,Gramercy,40.73305,-73.98255,Private room,73,5,4,2017-02-21,0.08,1,0 +5506438,Luxury High Rise Apartment,2263462,Anna Meng,Manhattan,Murray Hill,40.74467,-73.97202,Private room,100,1,1,2015-10-03,0.02,1,0 +5507371,No sleep till....Brooklyn!,28564535,Emily,Brooklyn,Bedford-Stuyvesant,40.69129,-73.93338,Private room,50,1,1,2016-07-29,0.03,1,0 +5507784,Bushwick Artist Loft,1924825,Gilad,Brooklyn,Williamsburg,40.70565,-73.93518,Entire home/apt,165,1,75,2019-06-27,1.45,1,365 +5509771,"Modern, renovated garden apartment",1098902,Amy,Brooklyn,Park Slope,40.66999,-73.98079,Entire home/apt,184,3,123,2019-07-07,2.35,2,292 +5509802,High rise building. On 5th Avenue.,25134906,Jonathan,Manhattan,East Harlem,40.79582,-73.9479,Entire home/apt,295,2,0,,,1,365 +5509980,★NEW YORK APT★ 20 Minutes to Manhattan ★1ST Floor,6145618,Rocio & Dejan,Queens,Ridgewood,40.70612,-73.9079,Entire home/apt,135,2,97,2019-06-30,1.85,1,0 +5510725,Fun in the Heart of Manhattan,7580514,Mekado,Manhattan,Hell's Kitchen,40.76181,-73.98757,Entire home/apt,160,2,53,2019-06-09,1.06,1,0 +5511036,1BR bottom fl apt Prospect Heights,28584269,Andre,Brooklyn,Crown Heights,40.67687,-73.96242,Entire home/apt,99,3,72,2019-06-23,1.40,1,266 +5511067,"Studio in heart of Cobble Hill, BK",28577246,Nick,Brooklyn,Boerum Hill,40.68607,-73.99048,Entire home/apt,85,10,3,2015-09-28,0.06,1,0 +5512274,West Village Ground Floor Studio,7033514,Paul,Manhattan,West Village,40.73426,-74.00525,Entire home/apt,199,1,1,2015-10-30,0.02,1,0 +5518629,Cozy East Village 1Bdrm Apt w/ Yard,2353777,Natalie,Manhattan,East Village,40.72843,-73.97872,Entire home/apt,195,2,3,2015-10-12,0.06,1,0 +5519207,Chez Jesse Vacation Spot - Garden,3191371,Jesse,Manhattan,East Harlem,40.80843,-73.93722,Private room,80,1,134,2019-06-13,2.69,3,211 +5521107,Bright and Cozy in Crown Heights,9862957,Miklos,Brooklyn,Crown Heights,40.67049,-73.94177,Private room,69,15,21,2018-09-26,0.43,1,360 +5522518,Cozy & Bright West Village 1BR Apt!,201390,Meggie,Manhattan,West Village,40.73174,-74.00309,Entire home/apt,145,3,13,2016-05-06,0.25,1,0 +5523413,Oasis in Kensington,12212944,Janine,Brooklyn,Kensington,40.64321,-73.98294,Private room,52,3,8,2019-05-18,0.15,2,27 +5523654,Hamilton Heights Heaven,28645131,Nadeen,Manhattan,Harlem,40.81777,-73.95753,Entire home/apt,80,5,2,2017-04-05,0.06,1,0 +5523876,Light and Airy with Hudson Views,119911,Kristin,Manhattan,Harlem,40.82056,-73.95661,Entire home/apt,300,2,9,2015-11-14,0.18,1,0 +5524950,Modern 1 Br Apartment,18950563,Naio,Manhattan,Washington Heights,40.85396,-73.93785,Entire home/apt,75,20,2,2019-05-19,0.04,1,100 +5525206,Gorgeous Studio UWS Lincoln Center!,1854977,Amanda,Manhattan,Upper West Side,40.77361,-73.97908,Entire home/apt,180,3,7,2016-01-02,0.15,1,0 +5525510,Cozy Bohemian Room in New York City,23086547,Arya,Manhattan,Chinatown,40.71705,-73.99668,Private room,62,6,62,2019-06-23,1.27,1,317 +5526210,The TriBeCa Apartment — Spacious Living with View,8278521,Ross,Manhattan,Tribeca,40.71966,-74.00984,Entire home/apt,750,1,50,2019-06-30,1.07,1,345 +5528111,Cozy room right on BROADWAY - Washington Heights,28669815,Nga,Manhattan,Washington Heights,40.84503,-73.93978,Private room,31,7,0,,,1,0 +5533000,Modern and spacious with backyard,28690907,Dwayne,Brooklyn,Bushwick,40.69525,-73.91385,Entire home/apt,250,3,16,2019-07-01,0.31,2,72 +5534192,"Spacious, cozy 1BR in Washington Heights",28696923,Steven,Manhattan,Washington Heights,40.84347,-73.93406,Entire home/apt,99,1,8,2016-12-04,0.23,1,0 +5534660, Studio apartment in Greenpoint,28699661,Andrzej,Brooklyn,Greenpoint,40.73066,-73.955,Entire home/apt,120,7,17,2016-01-05,0.33,1,0 +5534962,Cozy Getaway in The ❤ of SoHo,1539848,Edythe,Manhattan,SoHo,40.72092,-73.99966,Entire home/apt,150,3,58,2019-07-01,2.78,1,40 +5536023,Luxury Home Base of Operations,28706617,Ruben,Manhattan,East Harlem,40.80177,-73.93532,Entire home/apt,100,7,0,,,1,0 +5536560,"Classy neighborhood, close to everything.",257479,Colleen,Manhattan,Upper West Side,40.78257,-73.97681,Entire home/apt,150,14,6,2017-03-05,0.12,1,0 +5536638,Bedford Ave N. WBurg Room in 2BR-1,28709982,Sidiq,Brooklyn,Williamsburg,40.71986,-73.95619,Private room,99,2,35,2017-01-02,0.68,3,76 +5536824,2 BEDROOM GREAT APT ON LEXINGTON AVE MUST SEE,24715671,Julia,Manhattan,Midtown,40.74294,-73.98499,Entire home/apt,200,30,9,2018-07-19,0.17,4,342 +5536844,Park Slope Master Bedroom,28711190,Adam,Brooklyn,Park Slope,40.6682,-73.98196,Private room,75,1,0,,,1,0 +5538353,Home 4 Medical Professionals-KingsC,26377263,Stat,Brooklyn,Prospect-Lefferts Gardens,40.65604,-73.94221,Private room,45,30,0,,,43,361 +5538410,Home 4 Medical Professionals-Dwnst8,26377263,Stat,Brooklyn,East Flatbush,40.65546,-73.94619,Private room,45,30,0,,,43,361 +5538720,A room in the dreamland waiting for,28722667,Qudsia,Brooklyn,Flatlands,40.62506,-73.93046,Private room,59,1,75,2019-05-12,1.46,3,322 +5538798,Beautiful 1BR Brooklyn Brownstone,16862116,Denise,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93823,Private room,84,2,5,2016-09-19,0.10,1,364 +5541897,TOWNHOUSE NEAR RSD PARK - 1 Bedroom Apt & Terrace,25237492,Juliana,Manhattan,Upper West Side,40.78182,-73.98492,Entire home/apt,140,30,11,2019-07-01,0.22,34,204 +5543210,Sunny Oasis in Carroll Gardens,3424719,Demetria,Brooklyn,Columbia St,40.68255,-74.00224,Private room,90,4,8,2019-05-13,0.16,1,0 +5543996,Large 1 bdrm in Brooklyn - NYC,28745989,Jordan,Brooklyn,Midwood,40.61056,-73.96558,Entire home/apt,125,1,0,,,1,0 +5545560,1892 Brownstone on Landmarked Block,28752891,Sarah,Manhattan,Upper West Side,40.79093,-73.9678,Private room,250,3,33,2019-07-01,2.31,2,38 +5545876,Sunny one bedroom blocks from park and trains,10014288,Jaclyn,Brooklyn,Prospect-Lefferts Gardens,40.65739,-73.95983,Entire home/apt,100,5,0,,,1,0 +5546217,4 bedroom Townhouse/Brownstone/Prospect Park,11369454,Mimi,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.95975,Entire home/apt,190,2,119,2019-06-17,2.42,1,243 +5547081,Spacious 2 Story Apt. Near Subway,6289792,Che-Wei,Brooklyn,Bedford-Stuyvesant,40.68937,-73.95097,Entire home/apt,298,3,17,2019-05-14,0.33,1,35 +5549530,Sun-filled bedroom in East Village / Gramercy NYC,322697,Jeff & TJ,Manhattan,Gramercy,40.7317,-73.98272,Private room,99,2,136,2019-07-03,2.67,1,33 +5550377,Sunny East Village,13972159,Erin,Manhattan,East Village,40.72681,-73.97994,Entire home/apt,250,2,12,2017-12-12,0.26,1,0 +5550788,"Cozy 3 and 1/2 bedroom apt ,near Times Square",1982425,Nya,Manhattan,Hell's Kitchen,40.75702,-73.99458,Private room,95,7,2,2019-05-15,0.14,1,335 +5556358,Doesn't get any better than this!!,28513635,Shayan,Brooklyn,Williamsburg,40.71755,-73.95437,Private room,110,6,0,,,1,0 +5557097,A private room in New York. One block from A,3447539,Nick,Manhattan,Washington Heights,40.84898,-73.93642,Private room,59,4,109,2019-06-27,2.08,2,284 +5557135,Beautiful Chic Studio,28809821,Michelle,Manhattan,Murray Hill,40.74444,-73.97174,Shared room,115,1,7,2016-11-06,0.15,1,0 +5557536,The Ruppe Railroad,28812204,Kate,Queens,Ridgewood,40.70463,-73.91272,Entire home/apt,200,2,6,2019-04-27,0.13,1,349 +5557684,Private Rm/Bath in Fab Brickstone,9035762,Laura & Tim,Brooklyn,Bushwick,40.69099,-73.91665,Private room,75,1,8,2017-01-01,0.17,1,281 +5558242,Sunny Park Slope Studio Brownstone,16548032,Galya,Brooklyn,Park Slope,40.66907,-73.97609,Entire home/apt,115,5,4,2017-06-23,0.08,1,0 +5558596,Cozy and Warm 1 bedroom,28473177,Niki,Manhattan,Upper West Side,40.77122,-73.98135,Entire home/apt,146,3,45,2019-07-01,0.87,1,211 +5561355,Large charming bedroom,640117,Simon,Brooklyn,Williamsburg,40.71193,-73.95605,Private room,110,3,4,2017-09-03,0.08,5,0 +5562394,Cozy Bedroom Off Eastern Parkway,17548709,Robert,Brooklyn,Crown Heights,40.67151,-73.95789,Private room,60,1,0,,,1,0 +5562420,Gorgeous 6 BED Family Home / Williamsburg,1693243,Jason,Brooklyn,Williamsburg,40.71544,-73.94771,Entire home/apt,450,5,137,2019-06-21,2.63,1,226 +5562710,CLEAN & COZY EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.73097,-73.98178,Entire home/apt,160,1,169,2019-06-21,3.22,4,238 +5562962,Lovely upper east side studio,1389487,Lina,Manhattan,Upper East Side,40.77399,-73.95101,Entire home/apt,149,2,15,2017-06-22,0.29,1,0 +5567220,Spacious 2-bedroom in a modern bldg,27201435,Svetlana,Manhattan,East Harlem,40.80015,-73.94043,Entire home/apt,100,2,32,2016-05-25,0.62,1,0 +5567278,Spacious Bright West Village Apt!,2306485,Sam,Manhattan,West Village,40.73296,-74.00235,Entire home/apt,220,3,118,2019-05-20,2.26,1,180 +5567361,Modern Apt - Vibrant Neighborhood!,7797690,Danica,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.95824,Entire home/apt,120,1,282,2019-07-07,5.51,1,187 +5567401,Bright 1BR w balconies + roof deck!,134936,April,Brooklyn,Williamsburg,40.70893,-73.94832,Entire home/apt,99,25,24,2017-03-25,0.46,1,0 +5568799,Lovely room in 2 bedroom apartment,13299977,Sofia,Manhattan,Harlem,40.81608,-73.9397,Private room,65,1,27,2018-11-12,0.52,1,1 +5569167,Private room in Heart of Astoria,13728275,Elvira,Queens,Astoria,40.76272,-73.92004,Private room,50,4,1,2015-03-16,0.02,1,0 +5569302,"Sunny Apt, park view - Jeffreson L",5074343,Josh,Brooklyn,Bushwick,40.70336,-73.92416,Entire home/apt,65,5,0,,,1,0 +5569464,Sun-filled apartment in Greenpoint ,2729850,Alienor,Brooklyn,Greenpoint,40.72658,-73.94031,Entire home/apt,125,1,0,,,1,0 +5571405,Beautiful MASTER BEDROOM East side C7,20559017,Yohan,Manhattan,Upper East Side,40.76324,-73.96251,Private room,75,30,8,2018-09-21,0.16,9,303 +5572393,Shared Living and Bathroom Brooklyn Rental,28891151,Kimesha,Brooklyn,East New York,40.66905,-73.88976,Private room,85,2,3,2019-06-09,0.22,4,353 +5578843,Private cozy Bedroom in Brooklyn ,26098783,Sam,Brooklyn,Sunset Park,40.65137,-74.00666,Private room,2000,40,28,2015-12-06,0.54,2,0 +5579147,"Bright, Big 2 bedroom in Park Slope",10054163,Jaclyn,Brooklyn,South Slope,40.6642,-73.98435,Entire home/apt,149,2,1,2015-04-09,0.02,1,0 +5579629,Lovely sunlit room in Brooklyn,329917,Clémentine,Brooklyn,Greenpoint,40.72905,-73.95755,Private room,53,2,5,2016-10-21,0.13,1,0 +5580236,Make Our Home Your Home,19512999,Bennett,Manhattan,Upper West Side,40.80251,-73.96532,Entire home/apt,325,3,2,2015-09-14,0.04,1,0 +5580648,SunnyPrivateRoom TrendyNeighborhood,21497854,Meaghan,Brooklyn,Bushwick,40.70124,-73.92218,Private room,45,2,13,2015-08-17,0.25,1,0 +5581272,"Home 4 Medical Professionals - The ""Horripilation""",26377263,Stat,Queens,Far Rockaway,40.59535,-73.75441,Private room,38,30,4,2018-11-03,0.08,43,222 +5581273,"Clean, Cozy One Bedroom Apartment",28937325,Em,Manhattan,Washington Heights,40.85769,-73.93374,Shared room,120,3,38,2016-09-03,0.74,1,178 +5581442,Home 4 Medical Professionals- St Johns Episcopal 4,26377263,Stat,Queens,Far Rockaway,40.59594,-73.75492,Private room,38,30,5,2017-05-13,0.10,43,312 +5582283,Cozy bedroom in Brooklyn Sunsetpark,26098783,Sam,Brooklyn,Sunset Park,40.65118,-74.00842,Private room,2000,2,0,,,2,365 +5588253,"Bright, Clean Room, Ideal location",28974263,Maria,Brooklyn,Williamsburg,40.70945,-73.95491,Private room,60,3,31,2019-06-26,0.77,1,147 +5588684,Spacious + Modern with Yard,489950,Maria,Brooklyn,Greenpoint,40.73111,-73.95592,Entire home/apt,190,3,16,2018-10-13,0.40,1,0 +5590387,Village One Bedroom,20573060,Jenna,Manhattan,East Village,40.72566,-73.98032,Private room,125,2,16,2019-06-02,0.37,1,18 +5590400,"Charming, Artsy 1 Bedroom w/office",28984530,Genni And Stephen,Manhattan,Harlem,40.81251,-73.95102,Entire home/apt,100,6,0,,,1,0 +5590966,Riverside Suite,28723165,Taylor & Tee,Manhattan,Harlem,40.82778,-73.94884,Private room,70,1,131,2018-01-20,2.50,1,0 +5591612,"Huge 1br, 22min to Manhattan, steps to Prospect Pk",7434416,Nicole,Brooklyn,Flatbush,40.64913,-73.96379,Entire home/apt,130,1,45,2019-06-23,0.86,1,7 +5593205,Room Available in Fort Greene,20083880,Maryam,Brooklyn,Fort Greene,40.69701,-73.97353,Private room,45,1,1,2016-01-01,0.02,1,0 +5593679,Luxury Upper West Side Studio,5855080,Sue,Manhattan,Upper West Side,40.78965,-73.9687,Entire home/apt,110,30,7,2019-04-30,0.14,1,67 +5593725,Large/comfy/beautiful BR near ABCD Manhattan..!!!,29003805,Akemi,Manhattan,Harlem,40.82753,-73.94602,Private room,60,3,18,2019-07-01,1.17,2,0 +5593975,Adorable Private Room w/ backyard!,29005043,Brianna,Brooklyn,Bedford-Stuyvesant,40.67861,-73.9453,Private room,125,14,7,2016-10-03,0.15,1,179 +5594865,Large Bedroom in Two Bedroom Apartment,1342014,Christian,Manhattan,Lower East Side,40.71369,-73.98828,Private room,81,1,3,2019-04-24,0.68,1,0 +5594883,"One private guest room in a 3 bedroom +Condo.",29011140,Nebiyu,Manhattan,Harlem,40.80672,-73.95404,Private room,80,5,0,,,1,0 +5598465,1 BR Bohemian Oasis in Astoria,18941320,Alexandra,Queens,Astoria,40.76327,-73.92457,Entire home/apt,105,1,7,2017-10-22,0.14,1,0 +5600260,Gorgeous Studio in Greenwich Village,29034854,Viviana,Manhattan,Greenwich Village,40.72918,-73.99882,Entire home/apt,200,7,1,2016-08-01,0.03,1,23 +5601147,Spacious 1BR apt - Columbia U,11658596,Lucas,Manhattan,Morningside Heights,40.80469,-73.96381,Entire home/apt,100,1,0,,,1,0 +5602027,Sunny Room in Trendy Williamsburg,7798111,Shlomit,Brooklyn,Williamsburg,40.70827,-73.95229,Private room,100,2,0,,,1,61 +5602200,Quiet artist's den,24665235,Ippei,Brooklyn,Bedford-Stuyvesant,40.68417,-73.94977,Entire home/apt,75,2,9,2016-04-19,0.20,1,0 +5602369,3 bedroom brownstone duplex,1407325,Przemek,Brooklyn,Prospect Heights,40.67909,-73.97315,Entire home/apt,250,5,17,2018-12-31,0.33,1,36 +5604005,Make Yourself At Home NYC,3852579,Merylin & David,Manhattan,Nolita,40.72092,-73.99386,Entire home/apt,400,2,101,2019-06-29,1.94,1,258 +5604704,Spacious Chique Brooklyn Gem,19523446,Aundre,Brooklyn,Crown Heights,40.67644,-73.95991,Entire home/apt,160,3,134,2019-07-02,2.62,1,338 +5605209,Cozy Room for 2 in Chinatown/LES,28576665,Anna & Ben,Manhattan,Chinatown,40.7175,-73.99264,Private room,110,1,175,2019-06-24,3.34,2,43 +5605790,So clean so convenient.,28690907,Dwayne,Brooklyn,Bushwick,40.69363,-73.91329,Entire home/apt,220,1,76,2019-07-03,2.95,2,81 +5605822,Sunny 2 bedroom Apt in Brownstone,517966,Shean,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93886,Entire home/apt,135,3,148,2019-06-21,2.86,2,134 +5606308,Amazing 1 BR in Loft in Williamsburg,4514390,Stephanie,Brooklyn,Williamsburg,40.71061,-73.96764,Private room,99,2,41,2019-06-22,0.82,1,143 +5611893,Clean BD: Heart of the East Village,5934575,Karly,Manhattan,East Village,40.72795,-73.98539,Private room,89,4,6,2019-06-24,0.14,1,35 +5613334,Beautiful room in Brownstone Bklyn,7322898,Clemencia,Brooklyn,Prospect Heights,40.67928,-73.97013,Private room,110,7,0,,,1,0 +5615835,"Nice Room with Loft Bed- Manhattan, East Village",29106164,Christina,Manhattan,East Village,40.72805,-73.98415,Private room,75,3,32,2019-05-24,1.39,1,72 +5616298,Lux 2Bed/2.5Bath Central Park View!,836168,Henry,Manhattan,Upper West Side,40.7747,-73.98708,Entire home/apt,2000,30,9,2016-01-28,0.18,11,364 +5618341,"Quaint 2 bdrm apt in Greenpoint, BK",11904076,Keith,Brooklyn,Greenpoint,40.73046,-73.95211,Entire home/apt,160,1,0,,,1,0 +5619149,Vibrant Manhattan Artist Loft,3868692,Lucas,Manhattan,Financial District,40.70462,-74.00986,Entire home/apt,475,2,57,2019-03-01,1.11,2,141 +5621141,Large Sunny 1BD in Chelsea!,23747060,Cathy,Manhattan,Chelsea,40.74406,-73.99551,Entire home/apt,230,4,41,2019-06-30,0.80,1,236 +5623799,Sunny lofty BR on Express A/D line,9311147,Esther,Manhattan,Harlem,40.82417,-73.94496,Private room,49,1,0,,,1,0 +5624616,Master w/ private bath and sleeping loft. 2 beds,20469855,Kate,Manhattan,Upper West Side,40.78913,-73.97021,Private room,125,2,7,2016-05-17,0.14,1,248 +5624807,"Luxury 2BR, Prime Location, 20 Min to Manhattan",15775091,Asaf,Brooklyn,Crown Heights,40.67051,-73.95851,Entire home/apt,180,2,2,2017-06-11,0.07,1,0 +5625386,1 bdrm apt near Prospect Park,6372947,Michelle & Sebastien,Brooklyn,Flatbush,40.65305,-73.95818,Entire home/apt,80,5,1,2015-09-15,0.02,1,0 +5626601,Easy Tourist resting place!,29161738,Gerardo,Manhattan,Harlem,40.82855,-73.94745,Private room,55,1,7,2016-06-12,0.18,1,0 +5627418,"Charming, quiet and comfortable 1BR",13451939,Dana,Brooklyn,Bedford-Stuyvesant,40.68153,-73.93825,Entire home/apt,135,3,140,2019-07-02,2.75,2,197 +5627944,Huge Studio Midtown Manhattan -BEST,29167335,Yedda,Manhattan,Midtown,40.7555,-73.96826,Entire home/apt,182,4,56,2019-06-14,1.08,2,148 +5628539,3 B GREAT 1BR APT IN NEW YORK CITY,24715671,Julia,Manhattan,Midtown,40.74197,-73.98373,Entire home/apt,209,30,14,2018-06-10,0.28,4,0 +5629953,Large Private Bedroom in NYC!!!,23863437,Sheresa,Manhattan,Harlem,40.82955,-73.9477,Private room,78,7,26,2017-08-18,0.71,1,0 +5631916,One Bedroom Upper East Side,14358525,Pierre-Hubert,Manhattan,Upper East Side,40.76873,-73.95487,Entire home/apt,202,1,0,,,1,0 +5632551,"Home 4 Medical Professionals- The ""Zona""",26377263,Stat,Brooklyn,Bushwick,40.70406,-73.91811,Private room,48,30,3,2019-03-02,0.06,43,224 +5636395,"Sunny, comfy and quiet room",11363708,Nanie,Brooklyn,Bedford-Stuyvesant,40.70021,-73.9447,Private room,81,4,165,2019-06-21,3.26,1,15 +5638270,Bohemian Den Sofa-Bed Chinatown NYC,20694703,Pablo,Manhattan,Lower East Side,40.71286,-73.98849,Shared room,80,2,12,2019-06-30,0.24,2,89 +5638792,Incredible Location!,3128437,Natalie,Queens,Astoria,40.7576,-73.92134,Private room,60,1,0,,,2,89 +5638917,Spacious and Sunny Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72751,-73.94078,Entire home/apt,129,30,5,2019-06-22,0.10,52,342 +5640394,"Airy, Bright Bushwick Apt W/ Views",240584,Aswini,Brooklyn,Bushwick,40.7001,-73.93602,Entire home/apt,100,3,28,2018-12-18,0.54,1,0 +5641644,Private Cozy Room in Crown Heights,25354313,Tommy,Brooklyn,Crown Heights,40.67413,-73.95916,Private room,35,3,54,2019-01-27,1.18,2,0 +5641857,New York City Historical Brownstone First Floor.,8000315,Naima,Manhattan,Harlem,40.8215,-73.95006,Entire home/apt,100,2,243,2019-06-28,4.65,2,250 +5642982,Room One in cozy apartment_1,26080167,Douglas,Manhattan,Washington Heights,40.83481,-73.94317,Private room,82,2,11,2019-05-31,0.32,3,364 +5646613,Room available in 2 br apartment,9503725,Shane,Queens,Astoria,40.76224,-73.92023,Private room,80,7,0,,,1,0 +5647213,"Experience Brownstone Brooklyn: Comfy, Roomy 2BR",16482147,Margenett,Brooklyn,Bedford-Stuyvesant,40.68294,-73.92672,Entire home/apt,128,4,44,2019-06-20,1.98,1,88 +5647416,Paris in Manhattan with 2 balconies,2458750,Stephanie,Manhattan,Upper East Side,40.76923,-73.95034,Entire home/apt,159,30,14,2019-05-23,0.30,1,265 +5649163,Sun drenched 1 bed - few mins walk from subway,643512,Kizzy,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95016,Entire home/apt,101,7,4,2019-05-26,0.11,1,365 +5649580,4th fl Large Private Room - Central Park & Rooftop,29278028,Alexis,Manhattan,Upper East Side,40.77618,-73.95627,Private room,195,5,56,2019-03-03,1.10,4,145 +5649623,Lux 2Bed/2Bath Central Park Views!,836168,Henry,Manhattan,Upper West Side,40.77306,-73.98637,Entire home/apt,2000,30,9,2015-10-19,0.17,11,364 +5651523,Modern + Spacious 1 bd w/ the works,9680175,Becca,Manhattan,East Harlem,40.79331,-73.9408,Entire home/apt,160,2,57,2019-07-07,1.11,1,129 +5651679,Sunny Room w/Master Bathroom in NYC,6165258,Gita,Manhattan,Harlem,40.80302,-73.94477,Private room,100,7,0,,,3,365 +5651944,5th fl Private Suite & Bath - Central Park,29278028,Alexis,Manhattan,Upper East Side,40.77789,-73.95731,Private room,195,5,62,2019-02-19,1.20,4,84 +5652403,Room in Clean/Quiet/Funky Space!,3999695,Sarah,Brooklyn,Bedford-Stuyvesant,40.69561,-73.93603,Private room,475,3,1,2015-09-26,0.02,1,0 +5652542,"Spacious, Quiet 1 bdrm on the Park",29279330,Sarah,Manhattan,Inwood,40.85991,-73.93193,Entire home/apt,122,3,34,2017-06-28,0.68,1,0 +5652946,Sunny Bedroom Near Prospect Park,19233353,Kallie,Brooklyn,Prospect-Lefferts Gardens,40.65758,-73.95866,Private room,45,14,6,2018-10-15,0.12,2,0 +5656458,Quiet Cobble Hill Gem 2BR Duplex,16091512,Ana,Brooklyn,Cobble Hill,40.68534,-73.99471,Entire home/apt,235,5,10,2016-02-25,0.21,1,0 +5656639,Modern Luxury in brownstone at Central Park,5790236,Clay,Manhattan,Upper West Side,40.78974,-73.97018,Entire home/apt,275,7,15,2019-05-24,0.29,2,45 +5659180,Brooklyn's Finest! Huge apt next to train & park!,1394543,Jennifer,Brooklyn,Flatbush,40.65044,-73.96327,Entire home/apt,99,2,35,2019-04-28,0.76,2,15 +5659204,Room Three with loft bed_3,26080167,Douglas,Manhattan,Washington Heights,40.83514,-73.94334,Private room,78,5,0,,,3,364 +5659417,Charming East Village Nook,29332408,William,Manhattan,East Village,40.72866,-73.9806,Entire home/apt,125,3,51,2019-06-13,1.06,1,67 +5659666,Andy's Place,29336125,Don,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92909,Entire home/apt,125,3,64,2019-05-30,1.26,1,132 +5660972,Recently Renovated Boerum Hill Apt,4653182,Kayla,Brooklyn,Boerum Hill,40.68282,-73.98112,Entire home/apt,170,1,0,,,1,0 +5661080,Cozy&Central:EmpireState/Highline/Times Square,29345363,Simone,Manhattan,Chelsea,40.74924,-73.99784,Entire home/apt,165,3,58,2019-06-20,1.72,1,138 +5661276,1-Br Hell's Kitchen / Times Square,21503931,Steve,Manhattan,Hell's Kitchen,40.76561,-73.99439,Entire home/apt,129,1,178,2019-07-01,3.43,1,272 +5661603,2 bedroom home in Brooklyn,27755788,Gian-Murray,Brooklyn,Park Slope,40.67812,-73.97353,Entire home/apt,150,6,1,2018-08-26,0.09,1,209 +5661631,Home 4 Medical Professionals-Intrf8,26377263,Stat,Brooklyn,Crown Heights,40.677,-73.93763,Private room,45,30,0,,,43,303 +5663222,Elegant Private Studio - Town House,29358602,Lillybeth & Crystal,Manhattan,Harlem,40.80663,-73.94991,Private room,90,1,151,2019-06-30,4.42,1,129 +5670038,Private Room + Bath in East Village (+ Roof deck!),10807892,Nora,Manhattan,East Village,40.724,-73.98905,Private room,175,3,85,2018-12-01,1.65,1,0 +5670672,Entire Floor of Sunny Brownstone,5515591,Tina,Brooklyn,Clinton Hill,40.68699,-73.96049,Entire home/apt,188,3,146,2019-06-21,2.93,2,135 +5671103,"Chic, clean, and comfortable!",1686834,Daniel,Queens,Astoria,40.76632,-73.91873,Private room,80,3,11,2016-11-07,0.21,1,0 +5671922,Perfect Holiday House in NYC,1434654,Andrew,Queens,Ridgewood,40.7073,-73.91775,Entire home/apt,160,7,3,2016-08-13,0.06,2,15 +5672196,"Come, relax, and explore NYC",29408218,Corey,Brooklyn,Crown Heights,40.67092,-73.95301,Private room,50,1,0,,,1,0 +5672288,Cozy 1 br apartment in Williamsburg,15586243,Andrew And Coline,Brooklyn,Williamsburg,40.7095,-73.94933,Entire home/apt,100,3,1,2015-04-27,0.02,1,0 +5672471,Sunny Room close to Express Train,142695,Lynn,Brooklyn,Bedford-Stuyvesant,40.6813,-73.9476,Private room,65,1,0,,,1,0 +5672615,Room in Big Duplex and Backyard!,2423554,Mark,Brooklyn,Crown Heights,40.67531,-73.94967,Private room,50,4,15,2019-05-24,0.32,1,324 +5672704,Cozy Room in Times Square,6003891,Inigo,Manhattan,Hell's Kitchen,40.76196,-73.99194,Private room,70,3,3,2016-04-22,0.07,1,0 +5678143,Perfect Studio on Ft. Green Park!,93781,Devin,Brooklyn,Fort Greene,40.6918,-73.9729,Entire home/apt,130,7,83,2019-06-21,1.59,1,67 +5679129,1 Bedroom Apt in Tree Line Block,2671902,Iki,Brooklyn,Bedford-Stuyvesant,40.68024,-73.93987,Entire home/apt,60,14,0,,,1,59 +5679557,Charming Brooklyn Brownstone Home - GREAT LOCATION,14513121,C.,Brooklyn,Park Slope,40.67731,-73.97475,Entire home/apt,180,3,21,2019-07-07,0.40,1,125 +5679938,Stunning Furnished Modern Studio,1303542,Frank,Manhattan,Financial District,40.70909,-74.00579,Entire home/apt,150,90,3,2016-10-06,0.06,1,86 +5681611,Private room in Jackson Heights Apartment 2+,16514175,Karen,Queens,Elmhurst,40.74595,-73.88691,Private room,69,1,20,2018-10-26,0.57,5,65 +5681742,European Host in Manhattan,4029415,Maggie,Manhattan,Harlem,40.81645,-73.94483,Private room,62,5,47,2019-05-23,0.90,1,89 +5681745,Charming1 Bedroom Apt in Greenpoint,29456424,Dallas,Brooklyn,Greenpoint,40.73125,-73.95905,Entire home/apt,150,2,8,2015-11-09,0.16,1,0 +5684147,Sun Drenched Amazing large 1 br,1606397,Andrew,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.95969,Entire home/apt,118,5,1,2015-05-26,0.02,1,0 +5684940,Sunny apt. in Renovated brownstone,470675,Edna Luise,Manhattan,East Village,40.72322,-73.98283,Entire home/apt,195,12,10,2017-06-25,0.20,1,64 +5690007,New York City Private Room near Metro,22020703,Patricio,Manhattan,Washington Heights,40.85494,-73.93179,Private room,75,1,155,2019-07-07,4.42,1,314 +5691347,Lovely studio - Clinton Hill/Barclays Center area.,26264587,Nancy,Brooklyn,Clinton Hill,40.68319,-73.96766,Entire home/apt,135,14,20,2019-06-13,0.46,1,41 +5691755,Charming West Village Apartment,24575626,Melissa,Manhattan,West Village,40.73398,-74.00369,Entire home/apt,450,2,3,2018-07-07,0.08,1,260 +5692492,Cozy room in unique artsy apartment,3148473,Maria,Manhattan,Washington Heights,40.83891,-73.93758,Private room,45,1,10,2016-09-04,0.19,1,0 +5692807,Charming Two Bedroom in Chelsea 30 days+,1803036,Eric,Manhattan,Chelsea,40.74405,-73.99915,Entire home/apt,250,3,164,2019-06-17,3.21,1,71 +5692870,Greenpoint Master Bedroom,4471002,Janet,Brooklyn,Greenpoint,40.72705,-73.95504,Private room,70,5,0,,,2,0 +5693978,1 large bedroom apartment available,29518961,Akshay,Manhattan,Upper West Side,40.77937,-73.97805,Entire home/apt,120,1,1,2015-03-22,0.02,1,0 +5694862,Lovely Brooklyn Room & Private Bath,12419033,Rachel,Brooklyn,Gowanus,40.68202,-73.98151,Private room,125,2,40,2019-06-13,0.77,1,295 +5695055,Newly Renovated Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.7711,-73.95627,Entire home/apt,118,30,4,2018-07-28,0.08,29,283 +5695509,Private room in great apt bwick,15897880,Sander,Queens,Ridgewood,40.70066,-73.90964,Private room,50,1,0,,,1,0 +5695523,Stay European in Brooklyn,36841,Irene & Alban,Brooklyn,Bedford-Stuyvesant,40.68421,-73.92608,Entire home/apt,100,2,107,2019-07-03,2.23,1,41 +5695566,Cozy room for short term sublet,29528182,Jerie,Brooklyn,Bedford-Stuyvesant,40.6792,-73.95358,Private room,40,10,2,2015-04-08,0.04,1,0 +5697062,"Sunny, Open Studio Apartment",29537636,Lauren,Manhattan,Financial District,40.7091,-74.01286,Entire home/apt,225,1,3,2015-10-24,0.07,1,0 +5697237,New bldg~Junior 1~colombus circle~Terrace~WD,2119276,Host,Manhattan,Hell's Kitchen,40.76646,-73.98805,Entire home/apt,185,30,6,2018-05-23,0.20,39,281 +5697517,"Quiet, Meatpacking/W.Village",93779,Kat,Manhattan,West Village,40.74033,-74.00872,Private room,225,1,17,2017-09-28,0.34,1,365 +5697556,Magical rowhouse and garden in Williamsburg,946943,Annie,Brooklyn,Williamsburg,40.71212,-73.94965,Entire home/apt,155,4,58,2019-06-28,1.21,3,3 +5699348,Spacious UES 1 bedroom apartment,8686625,Marie,Manhattan,Upper East Side,40.78301,-73.95085,Entire home/apt,165,1,166,2019-06-23,3.30,1,210 +5705775,"Bright & Beautiful, Private Garden",16437254,Benjamin,Brooklyn,Boerum Hill,40.68897,-73.98634,Entire home/apt,165,30,3,2019-02-20,0.06,21,339 +5706202,"New City View 1BR Loft, Greenpoint",7503643,Vida,Brooklyn,Greenpoint,40.72573,-73.94071,Entire home/apt,149,30,1,2017-10-15,0.05,52,357 +5706280,New! 2-Bed Apt Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95557,Entire home/apt,142,30,3,2018-08-10,0.10,29,315 +5707711,Cozy & clean private bedroom&bath-LGBTQIA welcome!,29592244,S,Queens,Forest Hills,40.71811,-73.83368,Private room,59,4,138,2019-06-18,2.69,1,35 +5707888,"Homey, Large, Gorgeous 2 BR Apt!",3780975,Shira,Manhattan,Harlem,40.80403,-73.95615,Entire home/apt,200,2,6,2016-01-03,0.12,1,0 +5708360,Large 1 bdrm in Prospect Heights,2946319,Heather,Brooklyn,Prospect Heights,40.67758,-73.96452,Entire home/apt,125,7,1,2017-01-31,0.03,1,0 +5715049,Park Block Studio,29628369,Nick,Brooklyn,Park Slope,40.66568,-73.9774,Entire home/apt,181,2,238,2019-06-23,4.57,1,302 +5717355,Private 1 BR Apt in Exciting Bushwick,29641189,Joseph,Brooklyn,Williamsburg,40.70314,-73.93656,Private room,90,2,3,2019-06-02,1.73,1,18 +5717674,Welcome to Brooklyn!,29642992,Annalyn,Brooklyn,Kensington,40.63694,-73.97487,Private room,70,3,8,2016-10-18,0.17,1,0 +5718494,Spacious studio between NoLiTa and LES,11559667,Veronica And Tyler,Manhattan,Lower East Side,40.72019,-73.99297,Entire home/apt,150,2,3,2017-09-15,0.13,1,0 +5718935,Spacious Studio - Central Park!,29651191,Adam,Manhattan,Upper West Side,40.79589,-73.96187,Entire home/apt,225,3,13,2018-01-02,0.25,1,0 +5719742,"Great location, close to everything",87105,Jeff,Manhattan,Upper West Side,40.77737,-73.98355,Entire home/apt,240,7,8,2019-06-04,0.16,1,38 +5720133,Cozy apt next to park & train for 4,5735779,Aubrey,Brooklyn,Prospect-Lefferts Gardens,40.66012,-73.96078,Entire home/apt,98,5,11,2017-03-25,0.24,1,0 +5720569,NYC 1-Bedroom Apt in the Heights,29661897,Eric,Manhattan,Washington Heights,40.8558,-73.93025,Entire home/apt,100,5,15,2017-10-23,0.29,1,30 +5720988,Perfect Studio in the West Village,29664627,Luis,Manhattan,West Village,40.73271,-74.00545,Entire home/apt,200,2,8,2016-07-06,0.19,1,0 +5725154,DNTWN BK / Boerum Hill Sky Loft,29683852,Lindsay,Brooklyn,Downtown Brooklyn,40.68927,-73.98423,Entire home/apt,150,1,2,2015-04-12,0.04,1,0 +5726139,Room in Williamsburg,14001033,Hadrien,Brooklyn,Williamsburg,40.71239,-73.96178,Private room,65,5,0,,,1,0 +5726773,Your Brooklyn Nest,23570473,James,Brooklyn,Crown Heights,40.67219,-73.95461,Private room,129,30,18,2016-09-26,0.36,3,339 +5727093,Urban Rustic Room In Artist's Loft!,29693386,Jeffrey,Brooklyn,Williamsburg,40.70506,-73.93201,Private room,65,7,1,2015-04-08,0.02,1,0 +5727850,Beautiful Room Near S. St. Seaport,29697292,Hans,Manhattan,Financial District,40.70854,-73.99992,Private room,70,7,12,2019-05-21,0.28,1,318 +5728014,Cozy & Quiet 1 BR - Lincoln Center,29698290,Allie,Manhattan,Upper West Side,40.77655,-73.98074,Entire home/apt,200,3,9,2019-01-01,0.19,1,0 +5728500,Cozy Private Room in Astoria,23185328,Deniz,Queens,Ditmars Steinway,40.77842,-73.90994,Private room,58,1,34,2017-01-23,0.66,2,129 +5728502,Hand Crafted Williamsburg Sanctuary,26955105,Danny,Brooklyn,Williamsburg,40.70835,-73.95226,Entire home/apt,180,4,67,2019-06-30,1.32,1,304 +5728806,Large private room in Nolita,4271676,Nat,Manhattan,Nolita,40.72217,-73.99481,Private room,120,7,3,2015-09-01,0.06,3,0 +5729118,REAL LUXURY my SUNNY alcove studio,12020405,Jen,Manhattan,Upper West Side,40.77556,-73.98416,Entire home/apt,244,4,38,2019-06-12,0.74,1,222 +5729222,Cozy and bright room with a closet,27281731,Sergii,Brooklyn,Flatbush,40.64295,-73.95276,Private room,40,3,20,2019-07-07,0.38,1,131 +5729530,1Br apt on the UES accomodates two,29707420,Riki,Manhattan,Upper East Side,40.76939,-73.9504,Entire home/apt,150,1,0,,,1,0 +5735314,"Large, sunny, private studio Apt 2R",29739883,Adam & Allen,Brooklyn,Greenpoint,40.72102,-73.94382,Entire home/apt,135,2,249,2019-07-04,4.84,2,248 +5735323,Central Park Brownstone Studio,29741575,Tyson,Manhattan,Upper West Side,40.78519,-73.97032,Entire home/apt,150,5,0,,,1,0 +5735447,Charming 1BR in Brooklyn Brownstone,4471002,Janet,Brooklyn,Fort Greene,40.68914,-73.97406,Entire home/apt,200,1,0,,,2,0 +5736059,Single room in townhouse with yard!,610690,Julien,Brooklyn,Bedford-Stuyvesant,40.6801,-73.90976,Private room,65,1,24,2019-07-01,0.47,2,80 +5736925,Park Slope center Garden Studio ,16621177,Susan,Brooklyn,Park Slope,40.66812,-73.98303,Entire home/apt,140,2,232,2019-07-04,4.46,1,326 +5737678,Amazing room in Williamsburg!!!,6094516,Lupe,Brooklyn,Williamsburg,40.70905,-73.95152,Private room,80,1,0,,,1,0 +5737759,Sunny Studio Loft in Greenpoint,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94051,Entire home/apt,129,30,1,2018-11-07,0.12,52,311 +5738785,Compact cosy studio with separate kitchen,22557949,Ray,Queens,East Elmhurst,40.7583,-73.87679,Entire home/apt,112,2,3,2019-05-19,0.35,1,338 +5739031,"Great space, amazing location",9080758,Mary & Ewen,Brooklyn,Gowanus,40.67959,-73.98713,Private room,80,2,48,2018-07-29,0.93,1,0 +5742615,"Spacious, Renovated 1 BR Loft Apt",29784880,Amy,Manhattan,Chinatown,40.71491,-73.99182,Entire home/apt,149,7,6,2019-06-25,0.12,1,241 +5742795,Big Bedroom in Huge Loft. W.37thNYC,29786027,Peter,Manhattan,Hell's Kitchen,40.75437,-73.99334,Private room,99,4,2,2015-06-14,0.04,1,0 +5743959,Private Room Available!,29792577,Nina,Manhattan,Harlem,40.82171,-73.95515,Private room,50,1,6,2016-08-16,0.12,1,0 +5746781,Luxury apartment in Bushwick,22677829,Daniel,Brooklyn,Bushwick,40.69226,-73.92286,Entire home/apt,190,2,34,2018-09-17,0.69,1,341 +5748301,"Sleeping in NYC, like home.",29817997,Alberto,Queens,Rego Park,40.72799,-73.85543,Private room,70,2,175,2019-06-26,3.45,2,349 +5749147,Quiet Attic Room for Single Female Traveler,860636,Shawn(Ta),Bronx,Tremont,40.84061,-73.88858,Private room,30,3,11,2018-10-02,0.45,3,0 +5749382,Massive Private Bedroom/Bath and Beautiful Terrace,24911518,Erion,Manhattan,East Harlem,40.79733,-73.9363,Private room,96,21,14,2019-06-03,1.38,1,3 +5749889,Sunny back bedroom in duplex,16727332,Emily,Brooklyn,Park Slope,40.66801,-73.98142,Private room,85,7,0,,,1,0 +5756241,1 bedroom in a 2 bedroom apartment,11732381,Teri,Manhattan,Midtown,40.75858,-73.96342,Entire home/apt,200,2,0,,,1,0 +5756464,Sunny & Spacious Apt Near Subway,13347167,AFI Apartments,Manhattan,Upper East Side,40.7729,-73.95587,Entire home/apt,118,30,3,2018-03-31,0.11,29,204 +5756476,"Bright, sunny Gramercy apartment!",27583102,Sarah,Manhattan,Kips Bay,40.73894,-73.98049,Entire home/apt,150,2,21,2019-06-17,0.40,1,191 +5756643,Spacious Private room near Columbia University,4275400,Siwen,Manhattan,Morningside Heights,40.80317,-73.96338,Private room,50,20,0,,,1,0 +5756767,CLEAN SUNNY ARTSY APARTMENT,75815,Marie Sophie & Christopher,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92079,Entire home/apt,99,3,0,,,1,0 +5757333,Manhattan Full Apt Next to Subway!,1632428,Matias & Marlana,Manhattan,Harlem,40.82003,-73.95745,Entire home/apt,350,1,4,2019-04-20,0.08,2,365 +5757509,Luxury/Midtown East,29867161,Tal,Manhattan,Murray Hill,40.74415,-73.97322,Private room,165,1,0,,,1,0 +5758234,Soaring Bushwick 3 Bedroom,21823,Greg,Brooklyn,Bushwick,40.6878,-73.91452,Entire home/apt,225,3,82,2019-06-18,1.58,3,255 +5760510,Lower East Side Studio !,1613244,Ariel,Manhattan,Lower East Side,40.72292,-73.99242,Entire home/apt,110,30,17,2019-05-25,0.34,9,276 +5760776,Architects Central SoHo 1BR Home,29885916,Axel,Manhattan,SoHo,40.72386,-74.00462,Entire home/apt,245,4,8,2019-01-02,0.16,1,52 +5761032,Comfy Bedroom- Artsy Townhouse- Location Location,29887425,Cheryl,Manhattan,Harlem,40.81732,-73.94757,Private room,65,2,58,2019-07-03,1.12,1,24 +5761564,East Village - Private Room in 2 BR,10532169,Ben,Manhattan,East Village,40.73065,-73.98444,Private room,100,1,0,,,1,0 +5762947,“纽约之家” 独立洗手间PrivateBathroom,27673980,Amy,Queens,Flushing,40.74513,-73.83139,Private room,60,1,100,2019-05-27,1.93,8,76 +5763191,"BEAUTIFUL APT UPPER WEST SIDE, 68St ONLY GIRLS",29901463,Nadia,Manhattan,Upper West Side,40.7726,-73.97928,Shared room,68,3,105,2019-06-23,2.09,1,302 +5766499,Sunny Bedroom in Brooklyn Loft,19735540,Hannah,Brooklyn,Bushwick,40.70754,-73.92138,Private room,55,2,0,,,1,0 +5766895,Charmingly Rustic Apt in Ft Greene,3448931,Rachel,Brooklyn,Clinton Hill,40.69174,-73.96872,Entire home/apt,195,3,6,2017-05-29,0.12,1,0 +5769218,"24 h doorman,luxury 1Bdr Upper East",29452212,Bengu,Manhattan,Upper East Side,40.76545,-73.95668,Entire home/apt,120,7,0,,,1,0 +5770283,Awesome apartment in Williamsburg!,11722846,Anael,Brooklyn,Williamsburg,40.715,-73.95018,Entire home/apt,80,10,3,2018-08-05,0.06,1,0 +5770483,Cozy Quiet 1 BR Apt Hell's Kitchen,29936494,Monica,Manhattan,Hell's Kitchen,40.76525,-73.98953,Entire home/apt,195,5,55,2019-06-14,1.09,1,34 +5771361,Newly renovated 2 bed 2 bath in EV,21191263,Jonny,Manhattan,East Village,40.72915,-73.98866,Entire home/apt,275,1,1,2015-03-30,0.02,1,0 +5771366,Authentic New York Vintage Home,1211067,"Hans, Sandra & Son",Staten Island,Tompkinsville,40.62105,-74.08723,Private room,49,2,151,2019-06-30,3.06,2,277 +5771655,Brooklyn Bargain for August!,12212944,Janine,Brooklyn,Kensington,40.64455,-73.98298,Private room,30,21,1,2015-06-19,0.02,2,1 +5773199,Lovely apartment on Upper West Side,2446016,Aryeh,Manhattan,Upper West Side,40.79246,-73.97481,Entire home/apt,150,5,48,2019-07-04,0.93,1,0 +5774245,Bright Peaceful Clean | One Bedroom,25859072,Elizabeth,Brooklyn,Clinton Hill,40.6896,-73.96761,Entire home/apt,140,5,5,2017-10-03,0.10,1,0 +5779471,New Sunny East Village Apartment,1674428,Jules,Manhattan,East Village,40.72478,-73.9755,Entire home/apt,160,7,9,2016-11-13,0.24,1,0 +5779752,East Village with 2x Balcony + Roof,19498957,Peter,Manhattan,East Village,40.72481,-73.98216,Private room,125,3,4,2015-10-07,0.08,1,0 +5783307,Large Bedroom in Bushwick,30002976,Lora,Brooklyn,Bushwick,40.70212,-73.93032,Private room,48,7,0,,,1,0 +5783517,Cozy & Clean #1,23533897,Fatou,Brooklyn,Crown Heights,40.67383,-73.95137,Private room,50,2,61,2019-06-26,1.17,7,285 +5783899,"Live like a local! Queen size bed, private room.",23977712,Sarah,Manhattan,East Harlem,40.79088,-73.94597,Private room,100,1,315,2019-06-27,6.10,2,76 +5783925,"Shared room, full size bed & Skyline view!",23977712,Sarah,Manhattan,East Harlem,40.79082,-73.94615,Shared room,50,1,181,2019-06-30,3.49,2,46 +5784146,"2 Bedroom, Doorman. Roof deck. Skyview!",19446943,Roger,Manhattan,Upper East Side,40.76236,-73.95827,Entire home/apt,320,30,9,2018-08-31,0.19,1,215 +5784897,Spacious Private Room in Wash Hts!,29888597,Eric,Manhattan,Washington Heights,40.84347,-73.93978,Private room,200,7,41,2017-12-22,0.80,1,87 +5789606,Cozy BedRoom in a great location.,30037999,Loyda,Manhattan,Morningside Heights,40.80593,-73.9583,Private room,70,2,200,2019-06-29,3.92,1,202 +5790990,Big Private Bedroom in Williamsburg Townhouse,8818661,Jordan,Brooklyn,Williamsburg,40.71335,-73.9655,Private room,70,3,16,2018-08-27,0.49,1,0 +5791540,Brooklyn Heights gem,30046603,Jane,Brooklyn,Brooklyn Heights,40.69758,-73.99139,Entire home/apt,200,2,2,2017-06-13,0.05,1,0 +5791707,#1 LARGE STUDIO NEAR CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77107,-73.95517,Entire home/apt,100,30,71,2019-06-25,1.42,3,248 +5792144,Wall Street luxury short term stay,15175443,Val,Manhattan,Financial District,40.70471,-74.00817,Private room,150,3,2,2015-07-28,0.04,1,0 +5792453,Renovated 1 BDRMUnion Sq/E.Village,30050649,Samantha,Manhattan,East Village,40.73141,-73.98737,Entire home/apt,185,1,9,2016-11-06,0.24,1,0 +5793707,Lower East Side Minimalist Studio,8390853,Warren & Jessica,Manhattan,Lower East Side,40.7189,-73.99182,Entire home/apt,125,3,117,2019-06-23,2.29,1,228 +5794806,Brooklyn Soul,257676,Linda,Brooklyn,Flatbush,40.65409,-73.96025,Private room,148,1,11,2019-01-04,0.22,2,90 +5796405,Manhattan Condo at Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75245,-73.97342,Private room,295,1,6,2017-09-19,0.12,3,0 +5797398,"1 bedroom, large williamsburg loft",30078721,Elizabeth,Brooklyn,Williamsburg,40.71375,-73.96312,Private room,80,7,0,,,1,0 +5803068,AFFORDABLE COZY PRIVATE ROOM,16151285,Carol,Bronx,Williamsbridge,40.8789,-73.84855,Private room,45,14,27,2018-01-01,0.55,4,325 +5803875,"New, Modern, Brooklyn Apartment ",278576,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.95071,Entire home/apt,114,2,81,2019-06-20,1.57,2,160 +5804170,"Queens,Woodside.NY",30063582,Vic,Queens,Woodside,40.74905,-73.90185,Private room,37,1,0,,,1,0 +5804184,Dreamy belltower room in huge loft,30112106,John,Brooklyn,Bushwick,40.70033,-73.93964,Private room,45,6,13,2019-06-23,0.25,1,0 +5804451,The Perfect Studio in Brooklyn,13501779,Alex,Brooklyn,Crown Heights,40.67169,-73.95117,Entire home/apt,85,2,14,2019-02-26,0.28,2,0 +5805232,Comfortable room near everything,3974808,Noah,Queens,Ditmars Steinway,40.7778,-73.9144,Private room,150,1,0,,,1,0 +5805561,Cozy Chelsea Carriage House Apt,19390428,Ardeana,Manhattan,Chelsea,40.74157,-74.00141,Entire home/apt,240,1,0,,,1,0 +5806273,Great and private place to stay in Manhattan!,23719409,Carlina,Manhattan,Harlem,40.8261,-73.95139,Private room,65,1,157,2019-06-08,3.04,4,137 +5806416,Soho/Nolita - Best Location - Large 1 BDRM.,12484957,Marina,Manhattan,Nolita,40.72102,-73.99469,Entire home/apt,280,3,122,2019-06-24,2.35,1,113 +5806687,Comfortable bedroom in Bushwick ,18060780,Jessica,Brooklyn,Bushwick,40.69611,-73.92258,Private room,65,1,1,2015-05-05,0.02,1,0 +5806803,White private room with 0min to bus stop,17997408,Nancy,Brooklyn,Clinton Hill,40.69439,-73.96484,Private room,65,1,136,2019-06-24,5.72,2,11 +5806817,"Sleeping in NYC, like home (1).",29817997,Alberto,Queens,Rego Park,40.72846,-73.85546,Private room,65,1,120,2019-06-01,2.35,2,355 +5806829,"LOVELY APARTMENT, BIG LIVING ROOM",4473420,Sophiane,Brooklyn,Boerum Hill,40.68821,-73.9903,Private room,120,1,0,,,1,0 +5811254,A beautiful Brownstone in Bed-Stuy.,6877794,Ron&Leetal,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94171,Entire home/apt,255,6,12,2018-10-04,0.24,1,66 +5811500,Cozy Nest 15 Minutes from Manhattan,2558779,Marina,Queens,Ridgewood,40.70152,-73.90568,Private room,54,3,47,2019-05-20,0.93,2,321 +5812875,"Large studio, view on Central Park",5963594,Geoffroy,Manhattan,Upper West Side,40.77647,-73.98211,Entire home/apt,175,1,0,,,1,0 +5816130,AWESOME SUNNY ROOM C IN A CHARMING AREA!,29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69307,-73.96073,Private room,90,30,30,2019-03-30,0.58,6,338 +5816145,AWESOME MODERN ROOM IN CHARMING AREA +SWEET ROOF 2,29650513,Katie Graham,Brooklyn,Clinton Hill,40.69454,-73.96198,Private room,90,30,47,2019-03-13,0.91,6,297 +5816151,AWESOME MODERN ROOM IN CHARMING AREA+ SWEET ROOF B,29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9607,Private room,90,30,47,2019-05-12,0.92,6,323 +5818551,"Cozy apartment ,in uptown Manhattan",30196119,Mark,Manhattan,Harlem,40.82943,-73.9407,Entire home/apt,120,5,28,2019-05-23,0.82,1,355 +5821886,"Sunny,Private,Williamsburg 1BD Apt",10553573,William,Brooklyn,Williamsburg,40.71122,-73.95602,Entire home/apt,210,1,3,2015-07-01,0.06,1,0 +5823337,Beautiful 2BR Upper West Side,30224326,Matthew,Manhattan,Morningside Heights,40.8063,-73.96268,Entire home/apt,150,7,2,2016-08-11,0.05,1,0 +5823579,Amazing location!!!!!!! Upper East Side Manhattan,30224269,Todd,Manhattan,Upper East Side,40.77907,-73.95211,Entire home/apt,140,2,135,2019-06-16,2.68,1,228 +5824543,Private room for 2 (10 min to city) - Females only,30232055,Qasim,Bronx,Longwood,40.82209,-73.90086,Private room,80,1,2,2019-04-30,0.32,1,255 +5825173,Apt. in Classic Brooklyn Brownstone,2483427,Vasuki,Brooklyn,Crown Heights,40.66907,-73.94168,Entire home/apt,200,2,61,2019-06-23,1.18,1,341 +5825911,Stunning Brooklyn brownstone 20 mins to Manhattan,22627992,Ed,Brooklyn,Park Slope,40.67681,-73.97535,Entire home/apt,450,6,12,2018-12-29,0.24,1,2 +5826468,Large 2 bed 2 bath w private patio!,27894798,Aya,Manhattan,East Harlem,40.79372,-73.94316,Entire home/apt,200,30,0,,,1,0 +5826475,NYC Charming Harlem Brownstone w/ private garden!,30242959,Celine And Ken,Manhattan,Harlem,40.82682,-73.94634,Private room,116,2,129,2019-07-02,2.50,1,89 +5826518,Chic Downtown Getaway: Large 1BR Flat,4731948,Kiki,Manhattan,Chinatown,40.71647,-73.99116,Entire home/apt,215,1,36,2019-06-30,1.45,4,0 +5826700,Beautiful Spacious Uptown Apartment,26328221,Geoff,Manhattan,Harlem,40.82505,-73.95294,Entire home/apt,160,30,36,2017-03-26,0.70,2,0 +5831012,Spacious bedroom in Oversized Apt.,1409854,Didi,Manhattan,Upper East Side,40.77155,-73.94763,Private room,150,25,2,2018-04-24,0.04,1,110 +5833530,Shared Room in Apartment,30280316,Victor,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92056,Private room,40,1,0,,,1,0 +5834668,Phenomenal 1br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72704,-73.94007,Entire home/apt,149,30,7,2019-06-01,0.15,52,335 +5838858,Cozy Apartment in Lower Manhattan,30314132,Devin,Manhattan,Chinatown,40.71509,-73.9967,Entire home/apt,65,5,108,2018-08-14,2.10,1,0 +5839029,Modern Williamsburg Treehouse,580009,Timothy,Brooklyn,Williamsburg,40.71603,-73.94785,Entire home/apt,260,7,56,2019-05-31,1.08,1,132 +5840936,Large Outdoor Patio Space for Small Events,16245414,Shae,Brooklyn,Bushwick,40.69476,-73.92359,Entire home/apt,400,1,2,2017-07-15,0.04,4,179 +5842819,"Amazing Apartment, Heart of Willy!",3560299,Auminea,Brooklyn,Williamsburg,40.71671,-73.95591,Private room,90,1,1,2015-06-03,0.02,1,0 +5845124,Beautiful Astoria Apartment,30346554,Kristin,Queens,Astoria,40.76956,-73.91787,Private room,75,2,6,2016-06-06,0.12,1,0 +5846050,Cozy Harlem Stay,22534207,Jemar,Manhattan,East Harlem,40.80906,-73.93686,Private room,75,2,45,2019-06-03,0.94,1,123 +5846654,HUGE 1BR on the Upper East Side ,30354449,Avraham,Manhattan,Upper East Side,40.77139,-73.95766,Entire home/apt,110,1,3,2016-02-14,0.07,1,0 +5846745,"Spacious room in fun, quiet house",24561040,Ame,Brooklyn,Park Slope,40.68018,-73.97596,Private room,115,2,153,2019-07-05,3.00,3,0 +5847182,Lefferts Gardens Brooklyn Room,30357478,Ingrid,Brooklyn,East Flatbush,40.65406,-73.9506,Private room,20,1,0,,,1,0 +5847724,Private Room In Bushwick,8968224,Julia,Brooklyn,Bushwick,40.68917,-73.91549,Private room,49,1,0,,,1,0 +5847793,Large private room on quiet street,30360956,Kimberly,Queens,Ridgewood,40.70573,-73.89873,Private room,100,180,0,,,1,266 +5848422,Doorman buildng studio-East Village,13465396,Ami,Manhattan,East Village,40.72956,-73.98613,Entire home/apt,82,5,3,2016-01-20,0.07,1,0 +5848515,Sunny bedroom in the West Village,28252018,Ellie,Manhattan,West Village,40.73379,-74.00422,Private room,90,1,5,2015-10-26,0.10,1,0 +5849386,Delightful Lighthouse -Direct Train To JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68638,-73.91368,Private room,69,2,148,2019-06-27,2.86,5,112 +5849810,Traveler’s Nest - Straight train from JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.6863,-73.91378,Private room,69,3,127,2019-06-24,2.48,5,40 +5849991,3 bedroom Apt at $249 per Night.,9898029,Anthony,Brooklyn,East Flatbush,40.65041,-73.92574,Entire home/apt,249,3,10,2019-06-03,0.65,5,156 +5850040,The Charmer - Straight shot from JFK Arprt!,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68691,-73.91317,Private room,89,3,116,2019-06-24,2.24,5,83 +5850148,"Entire Floor, Private Bathroom -Direct ride to JFK",5541374,Hassan And Patti,Brooklyn,Bushwick,40.6864,-73.9133,Private room,159,3,30,2019-04-22,0.59,5,254 +5850978,"Huge, central & artsy Park Ave apt!",2843970,M&J,Manhattan,Flatiron District,40.74121,-73.98648,Entire home/apt,220,1,1,2015-06-17,0.02,1,0 +5851054,Serenity in the Heart of Brooklyn,26440049,Samantha,Brooklyn,Bushwick,40.70088,-73.91831,Private room,95,3,12,2017-12-10,0.25,1,0 +5856685,Private Room in “Hipster Times Square”,4194830,Stephanie,Brooklyn,Williamsburg,40.71047,-73.95732,Private room,60,1,13,2019-04-23,0.39,1,0 +5856760,"Renovated 1BR in exciting, convenient area",29408349,Chad,Manhattan,Chinatown,40.7149,-73.99976,Entire home/apt,179,5,7,2017-04-18,0.14,1,0 +5857212,Fantastic Room in Midtown Manhattan,8953823,Lisa,Manhattan,Hell's Kitchen,40.76348,-73.99344,Private room,120,3,0,,,1,0 +5857515,SUN-FILLED WILLIAMSBURG APT w/DECK!,2171626,Shawnelle,Brooklyn,Williamsburg,40.71228,-73.96103,Entire home/apt,275,5,0,,,1,0 +5857519,"Large Room, Hamilton Heights Section of Manhattan",27378293,Lendy,Manhattan,Harlem,40.82862,-73.94706,Private room,86,1,8,2018-08-11,0.17,3,325 +5857692,Private Room in Williamsburg,30382692,Cecilia,Brooklyn,Williamsburg,40.71251,-73.9517,Private room,62,3,47,2019-06-12,1.14,1,24 +5858505,Fantastic Studio with King bed- Best Location!,30418082,CA & Gray,Manhattan,Upper East Side,40.77554,-73.95141,Entire home/apt,165,6,46,2019-01-03,0.92,1,3 +5858757,Long term sublet Brooklyn,4267075,Jen,Brooklyn,Clinton Hill,40.68498,-73.96618,Entire home/apt,89,14,4,2017-03-01,0.11,2,343 +5859030,Perfect Home Away from Home in NYC!,13347167,AFI Apartments,Manhattan,Upper East Side,40.7717,-73.95572,Entire home/apt,116,30,2,2016-11-29,0.05,29,333 +5860123,Tall Ceilings & Sunlight Galore,16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68449,-73.95893,Entire home/apt,172,30,6,2019-05-11,0.14,21,221 +5861303,"Pet friendly, homey 1 BR in Lower East Side, NYC",30432695,LisaMarie,Manhattan,Lower East Side,40.71832,-73.98325,Entire home/apt,125,7,11,2019-06-28,0.22,1,20 +5861963,One bedroom Apt,30436731,Kristine,Queens,Astoria,40.76279,-73.92039,Entire home/apt,90,2,16,2019-03-31,0.31,1,0 +5866656,Home 4 Medical Professionals-MAIM0,26377263,Stat,Brooklyn,Borough Park,40.64032,-73.99728,Private room,50,30,0,,,43,361 +5869197,Large/Modern Apt - Lincoln Center,30475154,Cynthia,Manhattan,Upper West Side,40.77636,-73.98937,Entire home/apt,250,1,3,2015-12-28,0.07,1,0 +5870127,❤️Lovely Historic Brownstone Charm❤️ LEGAL LISTING,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.68469,-73.93467,Entire home/apt,185,3,213,2019-06-22,4.14,3,298 +5871372,Tiny Private Artist's Studio in NYC,5309143,Ayesha,Bronx,Williamsbridge,40.87765,-73.86318,Entire home/apt,63,5,85,2019-07-02,2.24,1,235 +5872177,Sunny One Bedroom-Amazing Location,9893040,Sari,Manhattan,Chelsea,40.74302,-74.00015,Entire home/apt,163,3,12,2016-05-12,0.24,1,0 +5873309,Columbia University Dorm,30498160,Celia,Manhattan,Upper West Side,40.8034,-73.96832,Shared room,40,1,0,,,1,0 +5873714,East Village - Beautiful 1 Bedroom,30500226,Majeed,Manhattan,East Village,40.73182,-73.9845,Private room,195,5,19,2016-11-28,0.37,1,178 +5874326,A nice room and free parking,28722667,Qudsia,Brooklyn,Flatlands,40.62345,-73.93001,Private room,89,1,68,2019-06-23,1.31,3,365 +5875384,Comfy Futon- 20mins Times Sq.,9235481,Reynaldo,Manhattan,Washington Heights,40.8538,-73.93197,Shared room,45,2,2,2016-12-05,0.04,2,0 +5878382,"Beautiful, bright and friendly",18527346,Kaley,Brooklyn,Prospect Heights,40.67417,-73.96518,Private room,60,1,5,2016-06-12,0.10,1,0 +5881122,"Lovely, bright & cozy room in Manhattan!",22087408,Dominik,Manhattan,Lower East Side,40.71735,-73.98213,Private room,125,1,44,2019-06-10,1.15,3,284 +5881858,Newly renovated 1 bedroom apartment,3311124,Georgie,Manhattan,East Village,40.73172,-73.98874,Entire home/apt,220,2,0,,,1,0 +5882068,Comfortable classy 1br in Ditmas Pk,2533934,Leeore,Brooklyn,Flatbush,40.64802,-73.96063,Entire home/apt,85,2,11,2019-06-20,0.78,1,0 +5882725,Beautiful Private Williamsburg Suite with Terrace,20557884,Anita,Brooklyn,Williamsburg,40.70691,-73.9481,Entire home/apt,165,4,73,2019-06-25,1.42,1,237 +5883159,Beautiful One-Bedroom Apartment Near Central Park,436365,Jessica M.,Manhattan,Upper East Side,40.76813,-73.95354,Entire home/apt,144,7,17,2018-05-24,0.35,3,0 +5883655,Unique Furnished Loft Sublet,30554435,Max,Brooklyn,Greenpoint,40.72684,-73.95628,Private room,75,1,0,,,1,0 +5885101,one large private bedroom/ two bedroom apartment,21364540,Francisca,Brooklyn,Williamsburg,40.70217,-73.93737,Private room,60,4,3,2017-09-02,0.09,2,25 +5885201,SUNNY ROOM A IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9598,Private room,95,30,40,2019-06-01,0.80,11,331 +5885280,CHARMING ROOM A - PRIVATE BALCONY!!,4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69442,-73.96016,Private room,95,30,53,2019-03-16,1.05,11,201 +5885396,SUNNY ROOM 2 IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69344,-73.96153,Private room,95,30,46,2019-05-22,0.90,11,317 +5885402,CHARMING ROOM W/ ROOF DECK ACCESS 1 :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69498,-73.96002,Private room,95,30,35,2019-05-28,0.69,11,340 +5885542,SUNNY ROOM 1 IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69292,-73.96151,Private room,95,30,43,2019-02-23,0.84,11,312 +5889379,"Che' Randall +SoBro +10 min from Manhattan!",30585124,Rawn,Bronx,Longwood,40.81935,-73.90772,Private room,65,5,15,2019-06-09,0.69,2,150 +5891777,Cozy 1BD side apartment w/parking,18014128,Inessa,Staten Island,Great Kills,40.5517,-74.14636,Entire home/apt,65,5,62,2019-05-21,1.22,1,336 +5892693,"Large, sunny, private studio Apt 2F",29739883,Adam & Allen,Brooklyn,Greenpoint,40.72232,-73.9434,Entire home/apt,110,2,248,2019-06-13,4.82,2,1 +5892733,Room in 3 bedroom apt.,10859726,Don Luis,Queens,Astoria,40.77093,-73.93291,Private room,47,5,7,2019-05-28,0.13,3,236 +5893277,Enjoy Views of NYC Skyline,30606207,Liza,Queens,Ditmars Steinway,40.77842,-73.92549,Private room,175,30,5,2019-03-25,0.31,1,283 +5894720,Bright Lux 1BR in Williamsburg,8201914,Faye,Brooklyn,Williamsburg,40.71124,-73.95256,Entire home/apt,234,4,11,2018-08-26,0.23,1,0 +5894824,Hotel Gabrielle,26554386,Gabrielle,Brooklyn,Prospect-Lefferts Gardens,40.65516,-73.95882,Entire home/apt,105,14,43,2019-01-02,0.83,1,319 +5895056,2 Flushing Sunny Garden View 舒适阳光房,30616879,Anna,Queens,Flushing,40.754,-73.80701,Private room,47,2,40,2017-10-12,0.81,3,311 +5895082,45 Ave 159 st Flushing private room,30616879,Anna,Queens,Flushing,40.76173,-73.80767,Private room,55,2,55,2019-02-28,1.12,3,342 +5897622,Manhattan Columbia Sunny and Quiet Private Studio.,17266994,Tom,Manhattan,Harlem,40.80796,-73.95623,Entire home/apt,146,5,67,2019-07-03,2.17,2,239 +5899598,1-BdRm Entire Apartment St. George,6319915,Jason,Staten Island,St. George,40.64567,-74.08368,Entire home/apt,60,4,118,2019-06-20,2.54,2,17 +5902510,Clean & Cozy room in Great Location,30656279,Jill,Manhattan,Hell's Kitchen,40.76799,-73.98644,Private room,61,12,31,2018-03-19,0.60,4,102 +5903889,PRIVATE BEDROOM on Lower East Side,30616009,Daniel,Manhattan,Chinatown,40.71758,-73.99201,Private room,84,1,2,2017-06-25,0.08,1,2 +5904098,La Bohème/ Authentic NYC Experience,766580,Michael And Kimberly,Manhattan,East Harlem,40.78935,-73.94788,Entire home/apt,179,2,55,2016-07-08,1.06,1,185 +5904178,Private Bedroom Minutes to Midtown,30665412,Adrian,Queens,Astoria,40.76384,-73.92023,Private room,100,1,0,,,1,365 +5904490,Spacious & Sunny Near McCarren Park,30667498,Cristina,Brooklyn,Greenpoint,40.72492,-73.95097,Entire home/apt,175,1,1,2015-07-16,0.02,1,0 +5904522,2 Bedroom Apartment in Chelsea,30667653,Adam,Manhattan,Chelsea,40.74621,-73.99119,Entire home/apt,250,2,1,2015-10-26,0.02,1,0 +5904538,Spacious Midtown-East Bedroom/Apt,30667773,Alexander,Manhattan,Kips Bay,40.74405,-73.97781,Private room,150,1,0,,,1,0 +5905128,European eco-chic in trendy Bklyn 2,28187447,Francis,Brooklyn,Bedford-Stuyvesant,40.68336,-73.91449,Entire home/apt,83,3,57,2019-06-08,1.13,2,264 +5905501,BROOKLYN BEDSTUY PIED-A-TERRE,9053876,Amy,Brooklyn,Crown Heights,40.67768,-73.93682,Entire home/apt,105,1,59,2018-01-03,1.15,2,213 +5913433,Spacious apartment in Greenpoint,30710562,Tim,Brooklyn,Greenpoint,40.7229,-73.94775,Entire home/apt,125,2,5,2015-10-12,0.10,1,0 +5915351,Amazing apartment!,30719563,David,Brooklyn,Bedford-Stuyvesant,40.67953,-73.95136,Private room,150,7,12,2018-08-26,0.25,1,0 +5916713,Williamsburg Sunny Large Loft,2272846,Zack,Brooklyn,Williamsburg,40.71614,-73.95282,Private room,69,30,16,2019-06-06,0.45,2,225 +5917209,"Secret Garden Apartment in Bed Stuy, Brooklyn",7956482,Lauren,Brooklyn,Bedford-Stuyvesant,40.68701,-73.95412,Entire home/apt,190,2,1,2017-06-26,0.04,1,0 +5917563,Charming Room off the L train,4327985,Maria Ana,Brooklyn,Williamsburg,40.71288,-73.94406,Private room,76,2,34,2018-09-30,0.70,1,39 +5917687,1300 usd monthly Private Bedroom Brooklyn Heights,30731188,Megan,Brooklyn,Brooklyn Heights,40.69713,-73.99235,Private room,45,120,0,,,1,146 +5918053,1 Quiet Private Room in Heart of Soho!,2938204,Veronica,Manhattan,SoHo,40.72741,-74.00178,Private room,142,5,8,2017-12-21,0.16,1,188 +5918356,Heart of times square Best location,2588808,Arturo,Manhattan,Hell's Kitchen,40.76115,-73.98707,Entire home/apt,125,7,4,2018-02-19,0.08,1,0 +5919646,*** Gorgeous 2BD apt with Terrace ***,410962,Mike,Manhattan,Hell's Kitchen,40.76738,-73.98466,Entire home/apt,200,3,14,2019-07-07,0.32,1,9 +5925343,The Notorious B.N.B. { The William Henry },1177497,Jessica,Brooklyn,Clinton Hill,40.68963,-73.96713,Private room,259,1,94,2019-06-26,1.85,11,365 +5925550,Classic 4 BR brownstone,30768511,Richard,Brooklyn,Park Slope,40.67616,-73.97418,Entire home/apt,275,5,1,2016-07-30,0.03,1,0 +5926854,Modern Studio Loft in Downtown NYC,557157,Sumit,Manhattan,NoHo,40.72951,-73.99203,Entire home/apt,179,1,28,2017-11-25,0.54,1,0 +5926953,"Modern, Cozy & Bright Private Room and Bathroom",30430827,Steve,Brooklyn,Fort Greene,40.69634,-73.97296,Private room,70,1,152,2019-06-24,3.02,1,249 +5927152,Room in heart of East Village,30775529,Adam,Manhattan,East Village,40.73101,-73.99087,Private room,300,2,0,,,1,0 +5928949,Convienent Midtown West getwaway!,28362995,Landa,Manhattan,Hell's Kitchen,40.76042,-73.99021,Entire home/apt,300,3,0,,,1,0 +5931103,Bright and Cheerful,24982374,David,Brooklyn,Clinton Hill,40.69354,-73.96152,Entire home/apt,259,2,99,2019-06-28,3.07,1,296 +5931824,LARGE SUNNY QUIET NY APARTMENT,23116198,Sash,Manhattan,Harlem,40.82896,-73.94059,Private room,50,1,0,,,1,0 +5932543,Quiet 1BD in West Village,30803097,Nikki,Manhattan,West Village,40.72934,-74.00276,Entire home/apt,300,2,6,2018-04-08,0.27,1,0 +5934108,Cozy Park Slope Ground Floor Apt,4461578,Jose,Brooklyn,Park Slope,40.6748,-73.97736,Entire home/apt,95,3,4,2015-08-24,0.08,1,270 +5934255,"Artist loft in prime WILLIAMSBURG, art everywhere!",1407676,Jessica,Brooklyn,Williamsburg,40.71604,-73.9589,Private room,132,1,143,2019-06-26,2.99,4,273 +5935275,~*Awesome Room in LIC w/ backyard*~,28846474,Adam,Queens,Long Island City,40.7477,-73.94438,Private room,80,4,3,2015-09-02,0.06,1,0 +5936796,Room-Convenient UES Near everything,30824695,Idamil,Manhattan,Upper East Side,40.7817,-73.94613,Private room,85,3,3,2017-08-16,0.09,1,0 +5939328,Modern Clean Loft in Prime Brooklyn,14152383,Scott,Brooklyn,Gowanus,40.6777,-73.99126,Entire home/apt,246,4,0,,,1,0 +5940268,The Big Room in Flushing,30839692,Stavros,Queens,Flushing,40.75518,-73.80422,Private room,50,1,154,2019-07-06,3.05,3,243 +5940868,Sunlit Gem in Happening Greenpoint,2862308,Auran,Brooklyn,Greenpoint,40.72777,-73.95231,Entire home/apt,75,2,6,2017-01-04,0.14,1,0 +5940920,Luxurious Designer 2 Bedm Union Square/Gramercy,30836013,Ellen,Manhattan,Gramercy,40.73536,-73.98393,Entire home/apt,209,30,27,2019-05-11,0.53,1,197 +5941888,Full Floor Loft Style Apt/Noho/Bond,1679702,Kristy,Manhattan,NoHo,40.72634,-73.9932,Entire home/apt,330,2,4,2015-10-14,0.08,1,0 +5942962,Large BED in Amazing LIVING SPACE,2981156,Kia,Queens,Long Island City,40.7618,-73.92728,Shared room,55,1,26,2018-12-02,0.55,2,84 +5943770,Chambre Privée près de Central Park,18002339,Juliette,Manhattan,Upper West Side,40.79788,-73.9618,Private room,60,7,1,2015-06-15,0.02,1,0 +5944460,views to die for apartment on water,17300177,Peggy,Brooklyn,Williamsburg,40.70965,-73.96817,Entire home/apt,180,30,4,2017-06-22,0.13,1,13 +5944801,Brownstone Duplex Harlem/Columbia U,27796188,John,Manhattan,Harlem,40.80947,-73.95392,Entire home/apt,300,2,60,2019-07-05,1.18,2,198 +5945548,Breakfast in Manhattan on terrace!,30865924,Eva,Manhattan,Inwood,40.87093,-73.91737,Entire home/apt,175,3,6,2018-08-31,0.13,1,0 +5946137,Spacious UWS pre-war guest room!,11237515,Lindiwe,Manhattan,Harlem,40.82335,-73.94887,Private room,100,3,4,2015-07-01,0.08,1,358 +5954466,Sunny Elegant Parkside Apartment,30909882,Peter,Brooklyn,Greenpoint,40.72102,-73.94808,Entire home/apt,175,5,21,2019-04-16,0.41,1,0 +5956257,Private Prospect Park Bed and Bath ,30918671,Conor,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.95222,Private room,60,1,0,,,1,0 +5957111,1bd garden apartment in Fort Greene,5449480,Jana,Brooklyn,Fort Greene,40.69134,-73.97229,Entire home/apt,175,10,1,2016-07-06,0.03,1,189 +5958299,Cozy NYC Bedroom in the Best Manhattan Location!,30454464,Sterling,Manhattan,Chelsea,40.74717,-73.99179,Private room,105,1,158,2019-07-04,3.08,1,105 +5965198,Private Vintage L Shaped Studio,1566167,Beth,Brooklyn,Kensington,40.63555,-73.97151,Entire home/apt,49,5,21,2019-03-20,0.42,1,34 +5965946,Private Master Bed-Queen Pillowtop & PRIVATE BATH,4308068,Crystal,Brooklyn,Bushwick,40.69904,-73.91282,Private room,65,2,37,2019-06-23,0.78,1,0 +5967998,2 Bedroom Appartment with Rooftop-Central Park,29278028,Alexis,Manhattan,Upper East Side,40.77635,-73.95616,Entire home/apt,450,5,37,2019-07-05,0.86,4,108 +5977676,"Bright, Clean, Spacious Upper West Zen w/Balcony",3912042,Katie,Manhattan,Upper West Side,40.79092,-73.97426,Entire home/apt,185,3,59,2019-06-19,1.17,1,4 +5978999,Clean Loft Bed 17min from Manhattan,31040344,Richard,Brooklyn,Bedford-Stuyvesant,40.68402,-73.95176,Private room,57,2,104,2018-01-03,2.33,1,0 +5979675,`AMAZING BROOKLYN HOME,7039396,Sol And Coach,Brooklyn,Cypress Hills,40.68085,-73.88895,Entire home/apt,79,1,91,2019-06-29,1.81,2,255 +5985742,"Park Slope, Sunny, Private, Quiet, 2 Bedroom",31074353,Peter,Brooklyn,South Slope,40.66923,-73.98714,Entire home/apt,218,2,137,2019-06-26,2.79,1,250 +5986444,BRAND NEW HUGE 1 BED@TIMES SQ!!!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.75709,-73.99545,Entire home/apt,70,30,11,2018-10-07,0.23,7,333 +5990045,"As seen on Netflix! Bright, 3-bedroom in Red Hook",12411178,Brandon,Brooklyn,Red Hook,40.67477,-74.01046,Entire home/apt,350,2,71,2019-06-13,1.45,1,287 +5990467,Peaceful Private Room with deck & garden,31102831,Marj,Brooklyn,Boerum Hill,40.68401,-73.98521,Private room,100,4,120,2019-06-16,2.36,1,22 +5991434,Charming Studio Apt w Home Theater,31108509,David,Brooklyn,Borough Park,40.6409,-73.99891,Entire home/apt,150,3,51,2019-06-28,1.07,1,180 +5991641,Charming Pre-War Apt in NYC,429305,Becca,Queens,Ridgewood,40.70914,-73.90737,Entire home/apt,45,4,0,,,1,0 +5991675,Peaceful room in sweet neighborhood,22388424,Leslie,Queens,Ridgewood,40.70399,-73.91195,Private room,46,4,17,2018-09-08,0.39,2,262 +5992438,Room in Historic Fort Greene Apt.,2537749,Anna,Brooklyn,Fort Greene,40.6942,-73.97104,Private room,50,1,2,2016-09-23,0.06,1,0 +5993541,Chic Loft Like 2 bed-2bath,4562182,Florence,Manhattan,Harlem,40.81506,-73.94851,Entire home/apt,285,30,74,2019-05-23,1.47,4,284 +5998890,Classic Brooklyn Row House,5574620,Lynn,Brooklyn,Crown Heights,40.67215,-73.95753,Entire home/apt,220,2,5,2015-08-11,0.10,1,0 +5998978,Small room in heart of Manhattan,4198853,Chad,Manhattan,Lower East Side,40.71769,-73.98801,Private room,125,1,1,2015-05-04,0.02,1,0 +5999786,"Central Park- 5 mins. away, Subway on corner(med.)",4714927,Elisa,Manhattan,East Harlem,40.79155,-73.94746,Private room,80,1,70,2019-06-18,1.36,4,102 +6000709,Comfortable Room in 3BR apartment,10859726,Don Luis,Queens,Astoria,40.7701,-73.93219,Private room,58,1,2,2019-07-01,0.04,3,249 +6000785,Charming 1BR Bed-Stuy Garden Apt,31150792,Micah,Brooklyn,Bushwick,40.69709,-73.93538,Entire home/apt,100,2,143,2019-05-18,3.41,1,0 +6000868,Charming Brownstone Apartment,2787900,Maggie,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94662,Entire home/apt,175,2,42,2019-02-09,0.82,1,0 +6000898,Magnificent Townhouse - Upper East Side - NYC,23708009,Eric,Manhattan,Upper East Side,40.78155,-73.95175,Entire home/apt,1200,5,43,2019-05-23,0.90,1,309 +6002382,Cozy room in Great Neighborhood,4266202,Jackeline,Queens,Astoria,40.76105,-73.92068,Private room,60,2,0,,,1,0 +6004052,Beautiful Apartment with Garden Access,27175572,Susanne,Brooklyn,Prospect Heights,40.67949,-73.97172,Entire home/apt,160,2,105,2019-06-01,2.05,1,18 +6004200,Cozy Harlem Experience,20109767,Jennifer,Manhattan,Harlem,40.82846,-73.94492,Private room,65,1,6,2015-06-18,0.12,1,341 +6004567,BEST LOCATION 12ST BY UNION SQUARE,28720717,Albert,Manhattan,East Village,40.73235,-73.98646,Entire home/apt,499,30,11,2019-03-03,0.52,2,332 +6004786,Lovely Soho / Village 1BR,14477996,Simone,Manhattan,SoHo,40.72703,-74.00286,Entire home/apt,350,2,10,2015-12-21,0.20,1,0 +6005231,The Hub for Two,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68459,-73.93985,Entire home/apt,105,2,127,2019-06-27,3.88,3,113 +6005868,"Sunny, Spacious & Sweet 2BD home!",31177258,Sam,Brooklyn,Williamsburg,40.71151,-73.95339,Entire home/apt,245,5,32,2019-04-26,0.63,1,305 +6005910,3 BDR Apt-Just Minutes to Manhattan,23044811,Ettrick,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94358,Entire home/apt,139,2,119,2019-06-09,2.31,2,175 +6006387,FABULOUS SUNNY BEDROOM IN HARLEM,31181172,T.,Manhattan,Harlem,40.82442,-73.95203,Private room,50,20,9,2018-01-27,0.24,1,300 +6006603,"Private Room, 33rd and 2nd",31182668,Jerry,Manhattan,Kips Bay,40.74349,-73.97577,Private room,90,5,0,,,1,0 +6006661,Beautiful Spacious Studio,31183039,Jai,Queens,Jackson Heights,40.74936,-73.88698,Entire home/apt,90,7,2,2015-12-05,0.04,1,0 +6006711,Awesome Place in the Heart of EV,28429835,Arpan,Manhattan,East Village,40.72753,-73.98749,Private room,250,1,1,2015-05-22,0.02,1,0 +6006837,Large private bdrm in S. Park Slope,6527023,Sehrish,Brooklyn,Sunset Park,40.66343,-73.99324,Private room,70,4,1,2015-05-13,0.02,1,0 +6012187,1 BR apt East Village,25796636,Michael,Manhattan,East Village,40.72425,-73.98866,Entire home/apt,150,1,44,2017-07-30,0.91,1,0 +6013171,Master Private Room in Midtown,13917722,Fan,Manhattan,Theater District,40.76164,-73.98594,Private room,150,1,0,,,1,0 +6013186,Lovely 1BR Garden Apartment w/Private Garden,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68446,-73.93956,Entire home/apt,109,3,79,2019-06-30,2.07,3,0 +6014926,Charming Stylish E. Village Studio,820011,Ike,Manhattan,East Village,40.72646,-73.98685,Entire home/apt,140,7,59,2019-06-23,1.17,1,268 +6015754,Comfortable and Large Room,8636732,Kay,Brooklyn,Flatbush,40.63676,-73.96713,Private room,31,10,1,2015-11-02,0.02,2,0 +6018325,COLUMBIA PRESBYTERIAN MED CTR * 2 Bedroom Apt*,25237492,Juliana,Manhattan,Washington Heights,40.84245,-73.93918,Entire home/apt,140,30,8,2019-06-17,0.17,34,312 +6018589,Charming Private Room,31241183,Lilian,Manhattan,Washington Heights,40.83741,-73.93928,Private room,65,2,36,2019-06-22,0.74,2,273 +6019386,Boarding Room-style mini apartment/Harlem Oasis,31245355,Kiela,Manhattan,Harlem,40.80991,-73.94058,Entire home/apt,85,2,18,2019-06-02,0.38,1,90 +6020044,Park Slope Bedroom,12154854,Ryan,Brooklyn,Gowanus,40.67092,-73.98997,Private room,35,1,0,,,1,0 +6020237,Beautiful 1BR in West Harlem!,28422099,D,Manhattan,Morningside Heights,40.81134,-73.95531,Entire home/apt,155,5,87,2019-05-25,1.70,1,99 +6020382,Cozy Room in Brooklyn Brownstone,1511065,Mitra,Brooklyn,Bedford-Stuyvesant,40.6825,-73.94709,Private room,65,1,0,,,1,0 +6021955,Delightful Brooklyn digs!,31260008,Charlotte,Brooklyn,Williamsburg,40.70532,-73.93868,Private room,100,5,0,,,1,88 +6025389,Large Room in Washington Heights,31274483,Erlingur,Manhattan,Washington Heights,40.83413,-73.94297,Private room,100,1,0,,,1,0 +6026166,Perfect 1BD in East Village,3372156,Kate,Manhattan,East Village,40.7254,-73.98854,Private room,125,3,2,2016-01-03,0.04,1,0 +6026546,Beautiful Studio Steps from the Met,22613302,Brittany,Manhattan,Upper East Side,40.77793,-73.9602,Entire home/apt,170,5,2,2015-10-05,0.04,1,0 +6027345,Newly renovated historic brownstone,2881,Loli,Brooklyn,Bedford-Stuyvesant,40.68242,-73.94774,Private room,65,2,280,2019-07-05,5.51,2,249 +6027485,1 bedroom in 3 bedroom apartment,31283971,Ana,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95237,Private room,38,3,1,2017-12-31,0.05,1,0 +6027682,"Beautiful, Bright Private-Room in West Harlem!",31284832,Marina,Manhattan,Harlem,40.82875,-73.94371,Private room,68,2,0,,,1,0 +6029332,Very private & large room Wburg BK,1257611,Arthur,Brooklyn,Williamsburg,40.71192,-73.94161,Private room,110,2,4,2015-08-29,0.08,1,0 +6029809,Charming Brownstone apartment in Brooklyn,4049004,Poppy,Brooklyn,Bedford-Stuyvesant,40.68245,-73.91951,Entire home/apt,100,3,106,2019-07-05,2.28,1,52 +6029987,Spacious & Trendy Uptown Apartment,15635060,Chris,Manhattan,Washington Heights,40.84305,-73.94045,Entire home/apt,125,2,10,2016-06-29,0.21,1,0 +6031895,Private Bedroom near Time Square,6396863,Tianhui,Manhattan,Theater District,40.76257,-73.98574,Private room,60,1,1,2015-08-02,0.02,1,0 +6031904,Charming Room in West Village Apartment,20667334,Irene,Manhattan,West Village,40.73261,-74.00116,Private room,80,3,129,2019-06-14,2.52,1,78 +6033449,COLUMBIA PRESBYTERIAN MED CTR *AURA* Studio Apt,25237492,Juliana,Manhattan,Washington Heights,40.84035,-73.94089,Entire home/apt,95,30,11,2019-05-25,0.25,34,97 +6037761,Spacious Room in East Village/NoHo,7256281,Sne,Manhattan,East Village,40.72816,-73.98843,Private room,163,2,396,2019-06-23,7.71,1,143 +6040757,Big & Bright w Terrace near park!,23713669,Vanessa & Martin,Brooklyn,Prospect Heights,40.67554,-73.96384,Entire home/apt,225,3,29,2019-06-04,0.58,1,56 +6041875,Harlem 2bdr apt,30354475,Pepper,Manhattan,East Harlem,40.8124,-73.9347,Entire home/apt,150,2,0,,,1,0 +6042335,In The Middle of It All!,17199564,Mark,Brooklyn,Boerum Hill,40.68686,-73.98231,Entire home/apt,170,10,2,2015-10-12,0.04,1,0 +6042635,Spacious Studio,31358851,Mo,Manhattan,Washington Heights,40.85882,-73.92897,Entire home/apt,65,4,38,2019-06-30,0.79,1,307 +6043199,Big Room in Central BK Neighborhood,9745447,Clara,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95116,Private room,60,1,11,2017-10-08,0.32,1,0 +6043671,HEART of Manhattan,16458904,Margaret,Manhattan,Murray Hill,40.74725,-73.97431,Entire home/apt,168,30,12,2017-05-30,0.25,1,58 +6043733,Cozy 1 BR - Prospect Heights,6475110,Meg,Brooklyn,Crown Heights,40.67652,-73.96147,Entire home/apt,100,2,3,2016-10-27,0.09,1,0 +6044268,Family summer on the Hudson - 1 wk. min. 8/16-9/4,6657363,Amy,Manhattan,Battery Park City,40.71111,-74.01567,Entire home/apt,195,7,0,,,1,0 +6044964,Beach Lovers Dream!,31204745,Monika,Queens,Arverne,40.58921,-73.79479,Entire home/apt,89,2,150,2019-06-11,3.00,1,268 +6045055,Entire floor. Private bathroom. Great location.,3435092,Elena,Manhattan,Upper East Side,40.78234,-73.94907,Private room,109,4,191,2019-06-20,3.75,3,243 +6045917,Perfect Private Room for 1 or 2 per,31376201,William,Queens,Kew Gardens,40.70664,-73.83395,Private room,150,1,0,,,3,365 +6046877,Private room in queens New York,31376201,William,Queens,Kew Gardens,40.7064,-73.83327,Private room,150,1,0,,,3,363 +6048412,Partially Furnished 3BR - UES,11884842,David,Manhattan,Upper East Side,40.77727,-73.95089,Entire home/apt,150,2,0,,,1,0 +6048583,3 Bedroom Apartment - Greenwich Vlg,31389734,Matt,Manhattan,Greenwich Village,40.72966,-73.99787,Entire home/apt,120,4,1,2015-08-22,0.02,1,0 +6051044,Private Garden View — Eco Home — 3 Min to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67815,-73.91518,Private room,40,3,101,2019-06-24,2.01,6,180 +6051782,Oversized 1BR~Union square~Sleeps 4~Best Value,2119276,Host,Manhattan,Gramercy,40.73342,-73.98545,Entire home/apt,150,30,10,2019-04-11,0.21,39,67 +6051856,Homey Room w/ Lots of Sunlight!,9828418,Gabriela,Manhattan,Washington Heights,40.84411,-73.93764,Private room,45,2,3,2016-05-07,0.07,1,0 +6052119,Loft in South Park Slope (Brooklyn),8893700,John,Brooklyn,Sunset Park,40.66124,-73.99449,Entire home/apt,159,30,8,2018-11-11,0.81,2,51 +6052129,A Charming & Spacious Flat in NYC,7809025,Omri,Manhattan,East Harlem,40.79816,-73.94111,Entire home/apt,149,4,14,2019-06-01,0.28,1,0 +6054194,"Bright, Clean 1 Bd 2 Blks to Trains",2568690,Collin,Queens,Astoria,40.75673,-73.9253,Entire home/apt,125,3,3,2015-06-11,0.06,1,0 +6054400,Cozy Brooklyn Apartment,18874199,Alina,Brooklyn,Greenpoint,40.73629,-73.95208,Entire home/apt,75,1,27,2015-10-05,0.53,1,0 +6054864,"Sunny, Spacious, Perfect Location!",3088202,Pete,Brooklyn,Carroll Gardens,40.68051,-73.99743,Entire home/apt,109,4,6,2017-03-05,0.12,1,0 +6056028,Central Park W Pristine Apartment,10622869,Lori,Manhattan,Upper West Side,40.78826,-73.96767,Entire home/apt,499,1,19,2019-06-11,0.38,1,296 +6059556,Beautifully renovated brownstone,1098902,Amy,Brooklyn,Park Slope,40.66955,-73.98174,Entire home/apt,480,3,0,,,2,191 +6062060,2 large rooms in sunny brownstone,24561040,Ame,Brooklyn,Park Slope,40.67975,-73.97666,Private room,220,2,9,2017-05-21,0.20,3,251 +6063050,Private Room in 3BD Apt with a queen bed,9897580,David,Brooklyn,Bedford-Stuyvesant,40.68669,-73.93452,Private room,55,3,51,2019-06-19,1.00,1,340 +6064471,Big Manhattan Apartment 3 bedrooms big Living Room,31477675,Jango,Manhattan,Lower East Side,40.7208,-73.9867,Entire home/apt,341,3,138,2019-06-08,2.87,1,58 +6065370,Cute One-Bedroom on treelined block,31483029,Jaclyn,Brooklyn,Greenpoint,40.72661,-73.95153,Entire home/apt,108,2,3,2019-06-16,0.06,1,33 +6065778,Sunny Apt near Park and Subways in Windsor Terr,12811150,Sarah,Brooklyn,Windsor Terrace,40.65888,-73.98013,Entire home/apt,128,5,83,2018-12-26,1.63,1,52 +6066563,Garden House in the East Bronx,19810363,Eric,Bronx,Clason Point,40.8115,-73.85607,Entire home/apt,110,2,95,2019-06-23,1.91,1,283 +6069703,Urban sanctuary near Bedford L!,17958459,Maria,Brooklyn,Williamsburg,40.71462,-73.96309,Entire home/apt,179,8,39,2019-01-01,0.77,1,113 +6070899,Spacious Family Apt Block from Park,13934385,Jesse,Manhattan,Upper West Side,40.77684,-73.97979,Entire home/apt,175,5,2,2017-10-18,0.04,1,0 +6071347,"Cozy, Entire Apt, Close to L train",3987736,Marcel,Brooklyn,Bushwick,40.70069,-73.91114,Entire home/apt,80,5,8,2017-09-08,0.16,1,0 +6071456,Super cool and sunny apartment in Crown Heights,21248779,Charles,Brooklyn,Crown Heights,40.67406,-73.95234,Entire home/apt,149,2,22,2019-06-25,0.49,1,365 +6071870,Live in Harlem close to Columbia U!,21940966,Mekkie,Manhattan,Morningside Heights,40.80465,-73.95827,Private room,50,2,7,2019-01-07,0.15,2,191 +6072842,Convenient and cozy space!,31522185,Dimitri,Queens,Astoria,40.76602,-73.91742,Shared room,75,5,4,2016-08-28,0.08,1,0 +6074676,West wing private room in NYC loft,6600505,Jami,Manhattan,Financial District,40.70763,-74.00778,Private room,100,3,24,2018-08-09,0.48,2,186 +6074975,Home On Kissena Park in Flushing NYC,23234988,Ann,Queens,Flushing,40.74896,-73.80715,Entire home/apt,369,2,74,2019-05-28,1.46,6,256 +6076202,A Modern 1 bedroom Apartment in Brooklyn,12692690,Sebastian,Brooklyn,Brooklyn Heights,40.69384,-73.99261,Entire home/apt,198,7,7,2018-01-04,0.14,1,4 +6077354,Cozy attic with private bath,31545214,Paul & Hana,Queens,Middle Village,40.72399,-73.87088,Private room,100,2,49,2019-06-08,0.96,1,365 +6078234,"Chic, Spacious & Quiet UWS Manhattan NYC 1BDR Gem!",31425596,Kevin,Manhattan,Upper West Side,40.78866,-73.97878,Entire home/apt,195,3,67,2019-06-30,1.33,1,85 +6078788,"LES 3 BR Apt, CENTRALLY LOCATED!",1820750,Eric,Manhattan,Lower East Side,40.72004,-73.98896,Entire home/apt,257,3,11,2017-08-02,0.22,1,0 +6079079,4 bedrooms private house,30214562,Sharon,Queens,Jamaica Estates,40.72362,-73.791,Entire home/apt,145,4,38,2017-06-28,0.75,1,125 +6079197,Single private room near train 1,31555753,Naichen,Manhattan,Upper West Side,40.80272,-73.96634,Private room,45,1,7,2015-08-02,0.14,1,0 +6084475,"Room in Lic, Queens brick townhouse",31534322,Nia,Queens,Long Island City,40.74637,-73.94615,Private room,60,2,83,2019-06-03,1.65,4,81 +6085109,Spacious 1BD Red Hook Apartment,8448216,Rhys,Brooklyn,Red Hook,40.67529,-74.0099,Entire home/apt,120,43,0,,,1,0 +6085932,"Historic, Sunny Prospect Park Apt!",1211856,Kim,Brooklyn,Prospect-Lefferts Gardens,40.6586,-73.96104,Private room,80,3,4,2019-01-01,0.22,1,331 +6087827,One Block From Train - 4/23-4/30,31594375,Jesseca,Brooklyn,Bedford-Stuyvesant,40.69962,-73.94102,Private room,85,1,0,,,1,0 +6087959,2000sq $2 million 3 story townhouse,28023382,Edwin,Brooklyn,Gowanus,40.684,-73.98859,Entire home/apt,99,1,183,2019-06-30,3.74,1,196 +6088910,Charming 1 Bed Room/ Exposed Brick,31599293,Courtney,Manhattan,Hell's Kitchen,40.75749,-73.99657,Entire home/apt,180,3,1,2015-05-04,0.02,1,0 +6090186,Location Angel Marlie ( only female),3250450,Petya,Queens,Jackson Heights,40.75181,-73.89064,Private room,40,25,1,2018-09-04,0.10,18,364 +6091208,BK Private Room&Bath - comfortable!,4183050,Brett,Brooklyn,Williamsburg,40.7168,-73.94073,Private room,96,3,28,2016-07-02,0.56,1,0 +6091224,Sunny 1 Bedroom in Harlem!,2798394,Dana,Manhattan,Harlem,40.80386,-73.95369,Entire home/apt,105,4,9,2019-01-02,0.18,1,0 +6091850,Cozy 1BD in a cool neighborhood.,31614694,Silvia,Queens,Long Island City,40.76019,-73.92915,Entire home/apt,80,3,177,2019-06-24,3.66,1,196 +6092607,Manhattan 1BR for $2000/mo Sublet,7271842,Arlen,Manhattan,Washington Heights,40.83987,-73.94279,Entire home/apt,100,2,1,2016-11-01,0.03,1,0 +6093352,Sunny Room 15min from Manhattan,31621291,Elisabeth,Brooklyn,Williamsburg,40.7058,-73.93803,Private room,58,1,270,2019-07-01,5.29,2,83 +6093459,The very heart of Williamsburg,26414016,Guillermo,Brooklyn,Williamsburg,40.7186,-73.95951,Private room,89,5,6,2016-11-27,0.12,2,0 +6094046,Central Times Square w prvte bath,31626212,Troy,Manhattan,Theater District,40.75863,-73.98472,Private room,105,90,163,2019-06-08,3.21,5,316 +6094708,"Lower East Side, Private 1BD+ for2",31629890,Takuya,Manhattan,Lower East Side,40.71724,-73.98546,Entire home/apt,85,1,0,,,1,0 +6099485,Enormous Sunny Room in Prime Clinton Hill Brooklyn,15763944,Maral,Brooklyn,Clinton Hill,40.69069,-73.96043,Private room,68,3,2,2018-06-25,0.11,1,0 +6100514,1BR 5 minute walk to Times Square,6230173,Luke,Manhattan,Hell's Kitchen,40.76017,-73.99198,Entire home/apt,200,4,30,2017-10-24,0.65,1,0 +6101104,1 BR UPPER EAST SIDE,9107715,Michele,Manhattan,Upper East Side,40.77526,-73.95075,Entire home/apt,170,5,26,2019-05-18,0.55,1,115 +6103146,Beautiful 1 BR by Prospect Park,182477,Shante,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96148,Entire home/apt,60,5,9,2018-04-18,0.19,1,0 +6103273,Chic 2bed-2bath Manhattan Dream,4562182,Florence,Manhattan,Harlem,40.81128,-73.94647,Entire home/apt,285,30,104,2019-06-30,2.07,4,249 +6103774,Studio Apt East Harlem,27289632,Willa,Manhattan,East Harlem,40.79842,-73.93549,Entire home/apt,90,3,138,2019-07-02,2.74,1,71 +6104187,Cute Studio close to subway for monthly rental,31673092,Ayal,Brooklyn,Crown Heights,40.67757,-73.94886,Entire home/apt,75,30,101,2019-06-08,2.06,1,62 +6104542,Nice cozy studio apt close to all,19661729,Sopchok,Queens,Jackson Heights,40.74898,-73.88638,Entire home/apt,115,1,51,2019-07-01,1.03,1,78 +6104951,2 Bed/2 Bath - Driveway & Backyard!,815619,Rajesh,Brooklyn,East Flatbush,40.64685,-73.95,Entire home/apt,118,30,1,2015-08-25,0.02,1,68 +6105140,Bright Room w/ Private Bathroom and Roof Deck,946182,Zachary,Brooklyn,Bedford-Stuyvesant,40.68582,-73.94231,Private room,76,1,19,2019-05-26,0.70,1,89 +6105240,Ideal Greenpoint Location,184833,Edward,Brooklyn,Greenpoint,40.72123,-73.95357,Entire home/apt,245,7,6,2018-05-08,0.12,1,67 +6105342,One Bedroom Available (May 1-May 6),31678869,Sonya,Manhattan,Harlem,40.8251,-73.93899,Private room,200,1,0,,,1,0 +6106142,Studio Apartment/ 3 blocks from Central park,2077383,Tatiana,Manhattan,Upper East Side,40.77724,-73.95883,Entire home/apt,75,3,3,2016-06-14,0.06,1,0 +6106445,Hell's Kitchen 1 Bedroom,7241674,Danielle,Manhattan,Hell's Kitchen,40.76378,-73.98847,Entire home/apt,200,6,24,2019-05-20,0.70,1,188 +6106544,Beautiful HUGE Studio.. 52ST 3AVE.,1475015,Mike,Manhattan,Midtown,40.75621,-73.96802,Entire home/apt,85,30,4,2018-12-03,0.12,52,342 +6107289,Beautiful Brownstone in Greenpoint,13920011,Andrea,Brooklyn,Greenpoint,40.72987,-73.95296,Entire home/apt,350,5,11,2018-08-25,0.23,1,12 +6107592,Private Room in a Shared Apt by Columbia Univ,30080463,Barbi,Manhattan,Harlem,40.80226,-73.94976,Private room,101,3,65,2019-06-22,1.28,1,138 +6108021,Large Park Slope Alcove Studio,10873558,Michelle,Brooklyn,Gowanus,40.67743,-73.98464,Entire home/apt,110,2,0,,,2,0 +6114161,Beautiful Apartment in SoHo,21327551,Liza,Manhattan,Nolita,40.72191,-73.99587,Private room,125,1,1,2015-05-19,0.02,1,0 +6114353,"Ideal ""Hotel Style"" Bedroom in LES",16923190,Chris,Manhattan,Lower East Side,40.71974,-73.98549,Private room,89,3,19,2019-01-01,0.41,1,0 +6115275,Cozy studio near Grand Central,8164199,An,Manhattan,Midtown,40.75102,-73.97447,Entire home/apt,180,1,0,,,1,0 +6115341,Beautiful Apartment close to Metro Line.,24216745,Luiz,Brooklyn,Williamsburg,40.71482,-73.93863,Entire home/apt,120,30,1,2017-12-31,0.05,1,128 +6117178,Large room in beautiful Park Slope,31737002,Tim,Brooklyn,Gowanus,40.66928,-73.99019,Private room,50,5,0,,,1,0 +6117496,The Manhattan Club studio New York,30787515,Brooke,Manhattan,Midtown,40.76365,-73.98057,Entire home/apt,299,2,8,2015-12-14,0.16,1,176 +6121052,Chic calm in the heart of Soho,13525339,Robert,Manhattan,SoHo,40.72337,-73.99724,Entire home/apt,195,2,60,2019-06-24,1.18,1,16 +6121300,Charming Bedroom in Greenwich,7655328,Jessica,Manhattan,Greenwich Village,40.72923,-73.99949,Private room,78,1,3,2016-01-31,0.06,3,0 +6124097,Amazing 2 Bedroom Chelsea,3035426,Dimitri,Manhattan,Chelsea,40.74089,-74.00181,Entire home/apt,250,2,28,2019-05-26,0.56,1,328 +6128992,"LOCATION, LOCATION, LOCATION -NYC!!",301346,Dawn,Manhattan,Chelsea,40.75054,-73.99683,Entire home/apt,150,14,1,2015-05-20,0.02,1,0 +6129158,Large modern 1BR w/ Balcony!,31796292,Mary,Manhattan,Upper East Side,40.777,-73.95253,Entire home/apt,350,1,0,,,1,0 +6130145,Moma Casanova. New Additions!,29871437,Ester,Queens,Sunnyside,40.74315,-73.91733,Private room,78,3,113,2019-07-01,2.23,1,285 +6131266,BIG SUNNY ROOM IN CROWN HEIGHTS,3940516,Ali,Brooklyn,Crown Heights,40.67331,-73.95863,Private room,55,1,1,2015-05-15,0.02,1,0 +6131580,Classic Soho Brownstone,311608,Richard,Manhattan,SoHo,40.72716,-74.0032,Entire home/apt,300,10,7,2019-06-21,2.04,1,239 +6131606,Harmony House 2 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68875,-73.92377,Private room,38,2,39,2019-06-20,0.86,3,99 +6132230,"Quiet 1 Bed, Heart of SoHo",6976808,Tim,Manhattan,SoHo,40.72708,-74.00055,Entire home/apt,150,5,36,2017-09-08,0.71,1,0 +6132646,queen sized room for one-Great View,15078552,Christine,Manhattan,Lower East Side,40.71869,-73.98282,Private room,75,1,0,,,1,0 +6133150,Spend Your Fall in Bed-Stuy,31817441,André,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93305,Private room,52,2,1,2015-11-01,0.02,1,0 +6134199,Stylish Pop-Art studio on trendy UWS,6003040,Lalo,Manhattan,Upper West Side,40.78926,-73.96989,Entire home/apt,198,2,161,2019-06-29,3.21,1,252 +6134906,"Clean, comfy & casual private room - 1min to train",6541721,Erika,Brooklyn,Sunset Park,40.64027,-74.01774,Private room,49,1,67,2019-06-23,1.56,1,8 +6138423,Manhattan Multi-Million $ Luxury Central Park View,1978841,Diane,Manhattan,Upper West Side,40.79233,-73.9643,Entire home/apt,950,4,6,2019-06-06,0.13,1,274 +6140695,Orchard Street Studio !,1613244,Ariel,Manhattan,Lower East Side,40.72003,-73.98901,Entire home/apt,105,30,12,2017-10-06,0.24,9,227 +6141401,Large Alcove Studio,10529692,Jon,Manhattan,Kips Bay,40.74257,-73.98207,Entire home/apt,225,30,276,2019-06-21,5.54,1,338 +6141561,Beautiful room & Amazing location,6984488,Jessica,Brooklyn,Prospect Heights,40.67483,-73.9646,Private room,125,4,16,2016-10-30,0.32,2,339 +6142960,CleanLovely 1BR Apt in Clinton Hill,10520210,Scarlet,Brooklyn,Bedford-Stuyvesant,40.69315,-73.95998,Entire home/apt,110,2,19,2016-06-10,0.44,1,0 +6145124,Spacious Bedroom in Brooklyn,31876574,Morteza,Brooklyn,Crown Heights,40.66739,-73.9501,Private room,44,1,1,2015-05-21,0.02,1,0 +6145637,SPACE IN APT IN PERFECT LOCATION,9532490,Alexandra,Manhattan,East Village,40.73065,-73.98899,Shared room,77,2,57,2019-06-02,1.13,3,311 +6146081,Wow Historical Brooklyn New York!@!,1943161,Al,Brooklyn,East Flatbush,40.64944,-73.93376,Entire home/apt,97,3,62,2019-06-23,1.23,1,326 +6146783,"Quiet, quaint room in Victorian TH",14796247,Sandra And Cary,Brooklyn,Flatbush,40.64224,-73.96273,Private room,45,5,59,2019-06-24,1.46,4,247 +6149507,2B Williamsburg Loft Apartment,21558108,Emma,Brooklyn,Williamsburg,40.712,-73.96666,Entire home/apt,157,1,1,2015-05-07,0.02,1,0 +6150778,Guest Suite in Prime Williamsburg,608113,Adam,Brooklyn,Williamsburg,40.71059,-73.9506,Private room,80,4,1,2015-05-20,0.02,1,0 +6151450,Large room in Hamilton Heights,26790498,Esther,Manhattan,Harlem,40.82366,-73.9461,Private room,50,3,1,2018-05-28,0.07,1,0 +6152725,A Cozy 4 bedrm Apt Queen(5minsLGA),31916657,Rosario,Queens,East Elmhurst,40.76509,-73.877,Entire home/apt,275,3,96,2019-07-01,1.90,1,333 +6155072,A Gem in Fort Greene Brooklyn,15395133,Brett,Brooklyn,Clinton Hill,40.68732,-73.96654,Private room,129,3,103,2019-05-22,2.02,1,156 +6155857,Heart of West Village cozy apt,7573842,Christina,Manhattan,West Village,40.73405,-74.00283,Entire home/apt,250,3,1,2016-07-21,0.03,1,0 +6155877,Solo traveler oasis,18248926,Yana,Manhattan,Harlem,40.82434,-73.94816,Shared room,36,1,84,2019-06-15,2.26,1,347 +6156278,Cozy Studio - Midtown West,10154856,Ayumu,Manhattan,Hell's Kitchen,40.76881,-73.98832,Entire home/apt,200,5,0,,,1,0 +6156319,Bright Studio Perfect for the Wknd!,7775447,Sara,Manhattan,Upper East Side,40.78073,-73.94976,Entire home/apt,185,1,4,2015-12-07,0.08,1,0 +6156442,2 bedroom in hell's kitchen,31937844,Ryan,Manhattan,Hell's Kitchen,40.76329,-73.99554,Entire home/apt,130,1,2,2015-04-28,0.04,1,0 +6157276,Bright LARGE BED near Manhattan,23591164,Angela,Queens,East Elmhurst,40.76664,-73.87577,Private room,65,1,466,2019-06-22,9.16,4,331 +6161282,Loft in Williamsburg,31963371,Rajan,Brooklyn,Williamsburg,40.71014,-73.96253,Entire home/apt,275,3,78,2018-11-08,1.53,1,0 +6163657,Cosy and sunny studio for you!,6090087,Giulia,Manhattan,Upper East Side,40.77253,-73.95789,Entire home/apt,120,1,9,2017-01-02,0.18,1,0 +6164719,Spacious Sunny Studio in LES,886109,Tzveta,Manhattan,Lower East Side,40.72134,-73.99104,Entire home/apt,180,2,25,2018-08-06,0.51,1,200 +6165032,Entire apt right at the park!,25406101,Sara,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.96114,Entire home/apt,123,2,2,2015-07-27,0.04,1,0 +6165564,Large room in newly renovated apt,30906910,Yuriy,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94339,Private room,750,1,0,,,1,0 +6167683,Charming one bedroom Central Park,25228783,Laurence,Manhattan,Upper West Side,40.77804,-73.97611,Entire home/apt,210,6,7,2017-08-26,0.14,1,0 +6167817,Sunny studio West Village/Chelsea,31997128,Rachel,Manhattan,West Village,40.73905,-74.0014,Entire home/apt,139,3,4,2016-09-05,0.08,1,0 +6168331,Sun-filled living room with futon!,32001723,Lena,Brooklyn,Bushwick,40.69505,-73.93161,Shared room,45,1,1,2015-05-05,0.02,1,0 +6168663,Private bedroom in sunny apt,15743117,Alice,Manhattan,Harlem,40.81192,-73.95239,Private room,79,5,2,2015-10-07,0.04,1,0 +6169068,"Prime Park Slope Townhouse, 4 BR and Garden",9773128,Deborah,Brooklyn,Park Slope,40.66798,-73.9761,Entire home/apt,345,30,0,,,1,156 +6169172,Relaxing Brooklyn Getaway,3598306,Afaliah,Brooklyn,Fort Greene,40.69677,-73.97622,Private room,90,1,2,2016-12-16,0.06,2,364 +6169335,Contemporary Modern Studio,32007353,Vanesa,Queens,Ridgewood,40.70801,-73.9011,Entire home/apt,150,2,65,2019-07-03,1.32,1,171 +6169897,Wonderful Large 1 bedroom,10720264,John,Manhattan,Harlem,40.82135,-73.95521,Entire home/apt,75,500,0,,,1,362 +6169981,Spacious Gramercy Penthouse Studio,32011239,Mike,Manhattan,Gramercy,40.73556,-73.98679,Entire home/apt,200,2,14,2016-09-10,0.28,1,0 +6170979,Cozy 1 Bedroom apartment fitting 4,31104121,Alexander,Brooklyn,Clinton Hill,40.68678,-73.96044,Entire home/apt,100,3,127,2019-06-24,2.62,1,290 +6171211,Room in Prospect Heights,32018795,Ciara,Brooklyn,Crown Heights,40.66746,-73.96073,Private room,32,7,0,,,1,0 +6179073,Mini Studio in NY city safest area,32052000,Gennady + Laura,Brooklyn,Manhattan Beach,40.5777,-73.93988,Private room,45,4,118,2019-07-06,2.34,2,269 +6179500,"Ideal Location, Spacious IBr",26819117,Sagnes,Manhattan,Kips Bay,40.74174,-73.97878,Private room,115,7,1,2015-05-31,0.02,1,0 +6180121,Modern Vibrant Large Cozy Bedroom* 正面能量,8826175,Grover,Bronx,Concourse,40.82122,-73.92773,Private room,56,2,132,2019-06-26,2.61,3,52 +6180741,2BR Lower East Side,14318669,Grady & Cristina,Manhattan,Lower East Side,40.71526,-73.9867,Entire home/apt,210,2,44,2017-05-25,1.16,1,0 +6180762,BRAND NEW 1BD / STEPS CENTRAL PARK!,1475015,Mike,Manhattan,Upper West Side,40.76877,-73.9846,Entire home/apt,87,30,3,2017-11-30,0.10,52,275 +6181131,"Share quiet, clean and spacious apt",32060911,Elvis,Staten Island,West Brighton,40.63438,-74.11518,Private room,40,30,6,2019-03-31,0.12,2,354 +6182580,Private Room In a Goodhome,10576263,Odalys & Maya,Brooklyn,Crown Heights,40.67603,-73.95302,Private room,58,4,1,2016-01-02,0.02,1,332 +6184748,"Sunny, Charming Williamsburg 1-BR",8389213,Danny,Brooklyn,Williamsburg,40.70778,-73.94953,Entire home/apt,125,4,7,2016-09-29,0.14,1,0 +6184827,Large and Beautiful 1 Bedroom in Bushwick,1912541,Clayton,Brooklyn,Bushwick,40.68994,-73.92125,Entire home/apt,100,2,3,2015-08-19,0.06,1,0 +6184855,Artist Loft Heart of Williamsburg,23593179,Alexander,Brooklyn,Williamsburg,40.71998,-73.95838,Entire home/apt,195,2,3,2015-06-20,0.06,1,0 +6185426,"Big bedroom, heart of Williamsburg",5689587,Delphine,Brooklyn,Williamsburg,40.71178,-73.95684,Entire home/apt,90,15,27,2019-04-11,0.68,1,173 +6185599,Nice and Comfortable Private Room,31241183,Lilian,Manhattan,Washington Heights,40.83776,-73.94087,Private room,65,2,43,2019-03-31,0.85,2,279 +6185629,Large Room with a Balcony *10 mins to Manhattan*,32083955,Esin,Brooklyn,Bedford-Stuyvesant,40.69542,-73.9497,Private room,100,14,0,,,1,123 +6185880,Student/Family Friendly Near Schools Parks Dining,3341690,Martha,Manhattan,Upper West Side,40.80121,-73.96163,Entire home/apt,200,31,2,2018-07-14,0.04,1,212 +6187204,Chinatown/Lower East Side Room,32092775,Jess,Manhattan,Chinatown,40.71546,-73.99226,Private room,75,4,23,2018-11-18,0.45,1,212 +6188014,Spacious 1 BR Near Central Park!,32096696,Matt,Manhattan,Upper West Side,40.77901,-73.97596,Entire home/apt,220,1,4,2016-01-03,0.08,1,0 +6188022,Handsome historic Greenpoint 2BR,1811344,Jennifer,Brooklyn,Greenpoint,40.73163,-73.95434,Entire home/apt,225,3,1,2015-08-01,0.02,1,0 +6192999,Zen urban sanctuary.,32117091,Marc,Brooklyn,Williamsburg,40.70776,-73.95886,Entire home/apt,163,30,37,2019-06-05,0.74,1,186 +6195564,Beautiful Room near L train,14600914,Greg,Brooklyn,Williamsburg,40.71371,-73.95433,Private room,85,1,118,2019-07-01,2.38,1,327 +6196265,Charming House in Astoria,10618197,Ambre,Queens,Ditmars Steinway,40.7802,-73.90913,Entire home/apt,150,7,1,2015-07-02,0.02,1,0 +6196354,A Couch In East Williamsburg Near Train.,31621291,Elisabeth,Brooklyn,Williamsburg,40.70472,-73.93784,Shared room,38,1,236,2019-06-30,4.63,2,56 +6196860,Comfy convenient apt. by the trains,32135311,Oliver,Manhattan,Inwood,40.85901,-73.92874,Entire home/apt,79,4,4,2016-01-20,0.09,1,0 +6197119,Sunny 1 bd -Prospect Park!,26908204,Bridgette,Brooklyn,Crown Heights,40.66356,-73.95667,Entire home/apt,90,4,59,2019-06-26,1.17,1,28 +6197134,Private Rooms @ Townhouse,10014644,Myrta,Brooklyn,Park Slope,40.6681,-73.98319,Private room,100,3,97,2019-06-24,1.91,2,300 +6197915,LES SUNNY STUDIO on Chrystie Street,1613244,Ariel,Manhattan,Lower East Side,40.72182,-73.99263,Entire home/apt,99,30,8,2019-05-10,0.17,9,197 +6198343,Calm airy top floor W'burgh 1.5 bed,1245722,Jen,Brooklyn,Williamsburg,40.71776,-73.94538,Entire home/apt,200,3,30,2019-07-01,0.65,1,364 +6198636,Studio steps from park & train!,31877774,Alexandra,Manhattan,Upper West Side,40.77889,-73.98155,Entire home/apt,190,2,1,2015-05-22,0.02,1,0 +6200613,"BIG PRIVATE ROOM, UPSCALE LOCATION",10418386,Tatiana,Manhattan,Upper West Side,40.79422,-73.97565,Private room,90,7,0,,,1,0 +6200692,ColumbiaUniversityHousing 9.1-9.6,32155871,Ashley,Manhattan,Morningside Heights,40.81143,-73.95987,Private room,60,1,0,,,1,0 +6201730,Beautiful Washington Heights Apt!,32158960,Rachel And Ari,Manhattan,Washington Heights,40.83562,-73.94581,Private room,90,1,0,,,1,0 +6201914,"Plush King Size Bed, Great Location",9671470,Jacob,Manhattan,Harlem,40.81422,-73.95199,Private room,75,2,129,2019-06-22,3.01,2,6 +6208002,Oasis in Manhattan on Hudson river!,15498912,Ksenia,Manhattan,Washington Heights,40.85677,-73.93715,Private room,70,3,14,2019-05-30,0.30,1,0 +6208855,Upper East Side - Private Room,32195844,Jiaying,Manhattan,Upper East Side,40.78428,-73.94872,Private room,85,4,1,2015-05-19,0.02,1,0 +6209084,Spacious room in Williamsburg,14772147,Javier,Brooklyn,Williamsburg,40.71295,-73.93716,Private room,50,4,2,2016-01-21,0.04,1,0 +6209147,Sunny 1 Bedroom Apt in East Harlem!,32197200,Sabrina,Manhattan,East Harlem,40.79614,-73.93787,Entire home/apt,130,2,34,2016-07-31,0.69,1,0 +6209619,"A fine, modern, spacious apartment",32199364,Guillermo,Manhattan,Harlem,40.80686,-73.9554,Entire home/apt,199,1,0,,,1,0 +6209799,"Spacious, new studio, in Gramercy",7894614,Daniel,Manhattan,Gramercy,40.73697,-73.98074,Entire home/apt,150,7,5,2015-08-24,0.10,1,0 +6209994,4500 SQ FT Quiet Brooklyn Loft for Shoots & Events,319077,Shell,Brooklyn,Clinton Hill,40.68556,-73.96238,Entire home/apt,750,1,15,2019-05-19,0.34,4,364 +6210050,Room in Beautiful Brownstone,12422467,Tyler,Brooklyn,Bedford-Stuyvesant,40.68901,-73.94054,Private room,80,1,0,,,1,0 +6215083,Comfy Space in Williamsburg!,26811311,Betsy,Brooklyn,Williamsburg,40.70431,-73.94528,Shared room,62,2,45,2019-06-17,0.90,1,325 +6216318,"Cozy room in a fun, low-key neighb!",16970067,Jesse,Brooklyn,Williamsburg,40.7137,-73.94214,Private room,105,14,0,,,1,0 +6220514,Amazing 3 bedrooms in East Village,31617949,Lana,Manhattan,East Village,40.72551,-73.97893,Entire home/apt,250,30,25,2018-10-06,0.51,1,0 +6220699,Amazing Airy Hs w Old World Details,770004,Milyoung,Brooklyn,Clinton Hill,40.68346,-73.96264,Entire home/apt,350,1,2,2015-08-17,0.04,1,0 +6221877,Brooklyn Zen Gem w/Personal Balcony,31675601,Sophie,Brooklyn,Bay Ridge,40.62672,-74.02802,Private room,65,30,56,2018-09-02,1.14,4,208 +6223929,Charming studio near Little Italy!,1613244,Ariel,Manhattan,Nolita,40.72342,-73.99292,Entire home/apt,95,30,13,2019-05-04,0.27,9,137 +6224336,"5 min from midtown, but peaceful.",32279718,Mike,Queens,Long Island City,40.74253,-73.9549,Entire home/apt,153,4,77,2019-06-02,1.62,1,252 +6225501,1-bedroom in heart of Williamsburg!,150832,Katie,Brooklyn,Williamsburg,40.71479,-73.96048,Entire home/apt,150,4,95,2018-03-08,1.88,1,0 +6225766,Large condo with stunning park views,7702854,Matei,Manhattan,Lower East Side,40.72014,-73.99268,Entire home/apt,280,3,46,2019-06-24,3.17,1,64 +6225935,Columbia University in Manhattan,19682564,Yi,Manhattan,Upper West Side,40.80301,-73.96644,Private room,70,4,2,2015-06-28,0.04,1,0 +6225968,"Amazing 1bedroom uptown, Manhattan",19007308,Luca,Manhattan,Harlem,40.82337,-73.94529,Entire home/apt,155,5,22,2019-05-10,0.44,1,362 +6225974,Central Williamsburg Room,909577,Jaclyn,Brooklyn,Williamsburg,40.714,-73.96253,Private room,71,2,162,2019-07-03,3.18,3,332 +6226327,Midtown EAST 1 BDR APT - BEST area of Manhattan,29167335,Yedda,Manhattan,Midtown,40.75531,-73.966,Entire home/apt,182,4,51,2019-05-31,1.03,2,317 +6226794,1 bedroom in a 2 bedroom apartment,32295605,Yana,Manhattan,Upper East Side,40.76449,-73.96169,Private room,105,3,75,2019-06-12,1.57,1,338 +6227027,Bright and Beautiful UWS Treasure!!,6089159,Samantha,Manhattan,Upper West Side,40.78302,-73.98057,Entire home/apt,100,14,3,2019-05-20,0.13,1,205 +6227341,Cozy & Convenient Room in Bed-Stuy,26595479,Emily,Brooklyn,Bedford-Stuyvesant,40.67998,-73.9452,Private room,45,1,0,,,1,0 +6227680,"Amazing 2 Bedroom Bklyn apt, near SUNY Downstate!",23548583,Shari,Brooklyn,East Flatbush,40.65336,-73.94345,Entire home/apt,109,30,23,2018-10-27,0.46,2,188 +6227871,You have chosen...wisely!,36119,Seth,Brooklyn,Clinton Hill,40.68465,-73.96051,Entire home/apt,95,14,3,2016-07-19,0.08,1,0 +6228461,Brooklyn Zen Gem Serenity Bedroom,31675601,Sophie,Brooklyn,Bay Ridge,40.62674,-74.02996,Private room,65,30,67,2019-05-19,1.31,4,252 +6232987,"Spacious Studio, Freedom Tower View",32340523,Lindsay,Manhattan,Murray Hill,40.74409,-73.97145,Entire home/apt,250,1,0,,,1,0 +6233779,Cozy South Williamsburg Bedroom off Bedford Ave!,32345728,Michael,Brooklyn,Williamsburg,40.70834,-73.96646,Private room,60,2,0,,,1,339 +6233819,Shared Room in Luxurious 2BD,4422415,Damien,Manhattan,Upper East Side,40.7755,-73.9475,Private room,130,1,1,2015-05-19,0.02,2,364 +6234096,Charming 1 bedroom on the water!,32347526,Heather,Manhattan,East Harlem,40.79445,-73.93307,Entire home/apt,120,3,116,2019-06-20,2.29,1,231 +6234329,Luxury 1 Bedroom in Astoria,13324888,Duygu,Queens,Astoria,40.77262,-73.92364,Entire home/apt,200,7,2,2016-09-18,0.04,1,0 +6236181,On the Park -- one-bedroom.,16419236,Karen,Manhattan,Upper West Side,40.78078,-73.97466,Entire home/apt,190,2,2,2018-05-24,0.04,1,21 +6237065,NEW YORK CITY WITH AN OCEAN BREEZE,32365131,Sawyer,Brooklyn,Brighton Beach,40.58148,-73.96696,Private room,129,3,0,,,1,365 +6237443,"Large Room in Spacious Flat , Central Location",32305413,Laurence,Brooklyn,Prospect Heights,40.67554,-73.96835,Private room,85,1,156,2019-06-24,3.11,1,150 +6237974,Brownstone! Entire Garden Apt w/ Private Entrance!,25689357,Peter,Brooklyn,Bedford-Stuyvesant,40.682,-73.92246,Entire home/apt,125,3,165,2019-07-01,3.27,1,249 +6238281,One bedroom in Midtown,32374510,Shannon,Manhattan,Hell's Kitchen,40.76497,-73.9933,Entire home/apt,175,1,0,,,1,0 +6239508,Brooklyn New York City - JFK/LGA,32384960,Saf,Brooklyn,Cypress Hills,40.68465,-73.8684,Entire home/apt,130,1,94,2019-06-23,1.92,1,0 +6239643,"Marilyn's Home Stay 1, Brooklyn, NY",23290881,Marilyn,Brooklyn,Flatbush,40.64943,-73.96245,Private room,70,3,121,2019-07-01,2.63,1,341 +6242355,Great Loft in Williamsburg-Brooklyn,32405588,Marco,Brooklyn,Williamsburg,40.71046,-73.96054,Entire home/apt,184,10,1,2016-08-06,0.03,2,6 +6242600,Double Bed In a Central Location,32406934,Alleyne,Brooklyn,Bedford-Stuyvesant,40.67986,-73.94259,Private room,180,2,9,2018-03-19,0.36,1,364 +6243991,Quiet Park Slope Apartment,1892681,Richard,Brooklyn,South Slope,40.66586,-73.97948,Entire home/apt,100,1,183,2019-06-28,5.17,1,1 +6244089,Modern 3BR Brownstone Apartment,17264040,Junior,Bronx,Mount Hope,40.84819,-73.90648,Entire home/apt,125,2,41,2019-05-19,0.81,2,342 +6244461,Bright studio in the heart of Brooklyn,7290581,Juliana,Brooklyn,Prospect Heights,40.67847,-73.96694,Entire home/apt,150,2,2,2017-01-14,0.06,1,0 +6245408,Sweet Harlem studio,7038817,Sarah,Manhattan,Harlem,40.80373,-73.95523,Entire home/apt,105,5,5,2016-12-30,0.10,1,0 +6245521,Ensuite Redroom,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93641,Private room,35,1,162,2019-06-20,3.20,5,162 +6245792,Orange Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93532,Private room,30,1,163,2019-06-18,3.21,5,134 +6246010,Skyview Private Small Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.9369,Private room,30,1,170,2019-06-23,3.34,5,165 +6246559,"Quiet, Sunny Studio in Downtown NYC",519483,Ashley,Manhattan,East Village,40.72587,-73.98244,Entire home/apt,125,2,3,2015-10-30,0.06,1,0 +6246681,Sun-Drenched Williamsburg Apartment,27428499,Allyssa,Brooklyn,Williamsburg,40.71475,-73.93782,Entire home/apt,190,2,1,2015-09-28,0.02,1,0 +6247104,NYC space,30586356,Susana,Manhattan,Washington Heights,40.85475,-73.93372,Shared room,95,1,36,2019-06-25,3.03,1,27 +6247466,Comfy Room in E Williamsburg Loft,4336757,Geoff,Brooklyn,Williamsburg,40.71905,-73.93905,Private room,55,3,4,2015-08-26,0.08,1,0 +6248093,BEAUTIFUL UES Apt w/ Door Man,32443084,Jordan,Manhattan,Upper East Side,40.76288,-73.96084,Entire home/apt,130,3,2,2015-12-28,0.04,1,0 +6248335,Neat Home 20 min to LGA Airport,32445083,Sandra,Bronx,Longwood,40.82883,-73.88854,Entire home/apt,119,4,48,2019-07-05,0.98,1,223 +6249050,300 Square Foot Private Room - in MANHATTAN!!,18418581,Pooja,Manhattan,Washington Heights,40.85228,-73.93498,Private room,67,1,297,2019-07-03,5.92,3,271 +6249100,Spacious room next to 96 st Station,14614459,Dario,Manhattan,Upper East Side,40.78354,-73.94699,Private room,90,5,4,2015-12-16,0.08,4,0 +6249465,Lovely bedroom near Central Park,31914305,Guangyu,Manhattan,Morningside Heights,40.80461,-73.96401,Private room,60,1,0,,,1,0 +6249740,"Brooklyn Brownstone, 3-Bdr & Garden",6493905,Christine,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95402,Entire home/apt,199,3,10,2018-11-24,0.20,1,0 +6252815,Park Slope Garden Level Studio,32479008,Christiana,Brooklyn,Park Slope,40.66936,-73.98116,Entire home/apt,150,7,47,2019-06-23,0.96,1,291 +6253399,A Perfect Stay,32482524,Gomez,Brooklyn,Williamsburg,40.71494,-73.95472,Private room,115,3,40,2019-06-30,2.80,1,18 +6255407,Cozy & Bright 1 Bedroom,8095903,Christelle,Manhattan,Harlem,40.82903,-73.94123,Entire home/apt,100,1,2,2015-08-26,0.04,1,0 +6255597,FT Greene - Oversized Parlor,11189753,Sj,Brooklyn,Fort Greene,40.68698,-73.97097,Entire home/apt,165,6,30,2019-06-21,0.59,4,0 +6256470,The Most Affordable 3BR Apartment,17264040,Junior,Bronx,Mount Hope,40.84626,-73.90473,Entire home/apt,105,2,80,2019-06-15,1.66,2,365 +6257586,Skylight on Hart,11757212,Jasmine,Brooklyn,Bushwick,40.69755,-73.92748,Private room,49,1,170,2019-06-22,3.36,4,356 +6257715,Sunny top floor of a brownstone,1856829,Annie,Brooklyn,Fort Greene,40.68559,-73.96932,Entire home/apt,100,2,1,2015-05-10,0.02,1,0 +6258983,"Large Bedroom, Lovely Backyard & Separate WC",32517582,Elissa,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95642,Private room,94,1,46,2019-06-09,1.81,1,72 +6259928,Private Bedroom in St. Marks Place,31405259,Oliver,Manhattan,East Village,40.72745,-73.98362,Private room,75,6,3,2017-01-07,0.06,1,0 +6259989,Large room in Prospect Heights,11131161,Tina,Brooklyn,Crown Heights,40.67822,-73.96069,Private room,60,7,0,,,1,0 +6260442,Strawberry Fields,32527193,Kenneth,Manhattan,Upper West Side,40.77894,-73.98099,Entire home/apt,322,4,89,2019-07-03,1.76,1,76 +6261696,Private Room in E. Williamsburg,1197823,Elliott,Brooklyn,Williamsburg,40.70839,-73.94538,Private room,119,3,126,2018-01-27,2.49,2,0 +6261890,Williamsburg Penthouse with Stunning Views,32537024,Steve,Brooklyn,Williamsburg,40.71234,-73.94085,Entire home/apt,100,30,63,2018-09-12,1.25,1,321 +6261971,Morningside Heights Cathedral Lane,32537929,Sara,Manhattan,Upper West Side,40.80146,-73.96132,Private room,50,2,0,,,1,0 +6262339,Cozy room with a view of the Hudson,4153233,Ted,Manhattan,Washington Heights,40.85457,-73.94062,Private room,90,2,2,2017-10-15,0.08,2,0 +6262496,Bedroom right in Chelsea!,4582357,Dennis,Manhattan,Chelsea,40.73889,-73.99749,Private room,150,1,1,2015-05-06,0.02,1,0 +6262536,Centrally Located Studio - Times Sq,405555,Prerna,Manhattan,Theater District,40.76295,-73.98435,Entire home/apt,230,1,1,2015-06-05,0.02,1,0 +6262562,"25 minutes to Manhattan,near subway",15743237,Champson,Queens,Forest Hills,40.71448,-73.85286,Private room,59,1,2,2015-08-16,0.04,2,0 +6262645,Queen-sized bed in sunny East Harlem private room,32304586,Amanda,Manhattan,East Harlem,40.79115,-73.94663,Private room,90,3,95,2019-06-18,1.88,1,175 +6262821,"Manhattan, near subway, quiet street in LES!",1190853,Tanner,Manhattan,Lower East Side,40.7175,-73.98435,Private room,95,2,247,2019-06-27,4.87,1,60 +6263101,Williamsburg Loft w/ Amazing Roof,7322303,Matt,Brooklyn,Williamsburg,40.71335,-73.95789,Private room,75,45,0,,,1,92 +6268515,Large bedroom outside Times Square!,32576167,Jaime,Manhattan,Midtown,40.75179,-73.98606,Private room,85,1,0,,,1,0 +6269439,"Spacious&Pretty, heart of Brooklyn",32800,Naama,Brooklyn,Bedford-Stuyvesant,40.68739,-73.94859,Entire home/apt,85,10,4,2018-11-06,0.08,1,0 +6269517,Tailored Studio in Williamsburg BK,9524360,Michael,Brooklyn,Williamsburg,40.7137,-73.93734,Entire home/apt,150,3,139,2019-06-27,2.74,2,238 +6269608,Heavenly Hell's Kitchen 2 bedroom,32582256,James,Manhattan,Hell's Kitchen,40.75546,-73.99701,Entire home/apt,189,5,9,2018-07-15,0.25,2,0 +6269610,Heavenly Hell's Kitchen private room in 2bdrm,32582256,James,Manhattan,Hell's Kitchen,40.75691,-73.9984,Private room,99,2,35,2019-07-01,0.69,2,28 +6269646,"近地铁及市中心,交通方便,干净,明亮,到曼哈頓只要30分鐘",25915648,正川,Queens,Flushing,40.75532,-73.8206,Private room,41,2,151,2019-05-12,3.09,2,0 +6269808,Bright 3 bd/ 2 bath on the park.,233161,Mac,Brooklyn,Windsor Terrace,40.65246,-73.97369,Entire home/apt,150,6,0,,,1,0 +6269945,Manhattan Apartment (Female Guests),32583105,Nancy,Manhattan,Upper East Side,40.77867,-73.95121,Private room,90,1,75,2019-06-14,1.49,1,359 +6269968,"近地铁及市中心,干净 NYC 30 min to Manhattan",25915648,正川,Queens,Flushing,40.75717,-73.82004,Private room,37,2,128,2019-02-25,2.53,2,20 +6271152,Luxury 2bdr 2bath in Tribeca,1118139,Moran,Manhattan,Tribeca,40.71296,-74.00982,Entire home/apt,300,1,0,,,1,0 +6272125,NY Executive Apartment,3773133,Daniel,Brooklyn,Williamsburg,40.7207,-73.96217,Private room,380,1,1,2015-05-07,0.02,1,0 +6272181,Room available in a 3 bdrm apt!,32596841,Katie,Brooklyn,Crown Heights,40.67905,-73.95612,Private room,75,1,0,,,2,0 +6273469,Beautiful West Village Studio,4248868,Nancy,Manhattan,West Village,40.73674,-74.00832,Entire home/apt,200,1,0,,,1,0 +6273500,"Cozy Room, great Apartment, nice and safety area",3759052,Aracelli,Manhattan,East Harlem,40.7882,-73.94762,Private room,50,3,5,2019-03-26,0.13,1,188 +6274181,"Large, Bright & Airy 2BR Loft in ❤️of Williamsburg",32608639,Randall,Brooklyn,Williamsburg,40.71544,-73.95552,Entire home/apt,225,3,24,2019-05-27,0.47,1,17 +6277476,Cozy in Upper East Manhattan,3764548,Lori,Manhattan,Upper East Side,40.78042,-73.95128,Entire home/apt,150,14,2,2015-10-01,0.04,1,0 +6278513,Little Brownstone,29111260,Kham,Brooklyn,Bedford-Stuyvesant,40.69148,-73.9388,Private room,55,1,2,2016-06-17,0.05,1,0 +6279160,1 Bedroom steps from Central Park,9742010,Peter,Manhattan,Upper West Side,40.78203,-73.97644,Private room,175,2,0,,,1,0 +6283028,A Gorgeous 1BR in a Luxury Building,3603806,Shir,Manhattan,Upper West Side,40.7722,-73.98119,Entire home/apt,276,4,46,2019-04-27,1.15,1,9 +6283933,Large room w its own bathroom (& bath),41612,Toni,Brooklyn,Carroll Gardens,40.67678,-73.99708,Private room,45,2,0,,,1,0 +6284582,Sunny/Spacious 2 Bedroom Washington Heights,7474069,Carrie,Manhattan,Washington Heights,40.84656,-73.94143,Entire home/apt,199,1,39,2019-05-13,0.89,3,192 +6285403,Colorfull and Modern Bedroom UES A3,20559017,Yohan,Manhattan,East Harlem,40.78709,-73.94423,Private room,48,30,4,2018-11-24,0.15,9,341 +6285844,2BR. Brooklyn Loft,8726203,Mario,Brooklyn,Bushwick,40.70451,-73.92685,Entire home/apt,145,3,99,2019-07-05,1.97,1,327 +6286253,SunLit Room in Hip Neighborhood,32678605,Rebekah,Brooklyn,Bushwick,40.69756,-73.92209,Private room,100,1,0,,,1,0 +6286307,Terrific Location in Prospect Heights,1771148,Alex & Laura,Brooklyn,Crown Heights,40.67809,-73.95903,Private room,62,4,12,2016-09-02,0.24,1,0 +6287961,East Village Oasis,4405241,Guy,Manhattan,East Village,40.73112,-73.98364,Entire home/apt,230,6,6,2019-02-18,0.13,1,0 +6288004,Cozy Room with Exposed Bricks,27054429,Hien,Manhattan,Two Bridges,40.71063,-73.99526,Private room,90,10,133,2019-06-22,2.64,1,81 +6290301,Brooklyn Modern Spacious Studio,32142173,Yury,Brooklyn,Sheepshead Bay,40.58662,-73.94263,Entire home/apt,83,3,29,2017-10-23,0.58,1,227 +6290988,The Heart of Fort Greene,612221,Yvette,Brooklyn,Fort Greene,40.68648,-73.97525,Entire home/apt,120,1,7,2016-05-22,0.17,1,239 +6291371,Brooklyn Zen Gem Restful Retreat,31675601,Sophie,Brooklyn,Bay Ridge,40.62449,-74.02977,Private room,65,30,57,2019-05-02,1.13,4,307 +6291454,Spacious & Sunny Williamsburg Apt,20565470,Branden,Brooklyn,Williamsburg,40.71859,-73.95598,Entire home/apt,140,3,2,2015-06-18,0.04,1,0 +6291568,2 Bedroom in Wburg w/ living room,987621,Tommy,Brooklyn,Williamsburg,40.70792,-73.94274,Private room,80,1,2,2015-05-25,0.04,1,0 +6292309,Cozy studio apartment,931790,Rebekah & Jason,Brooklyn,Kensington,40.63822,-73.97123,Entire home/apt,75,1,0,,,1,0 +6292334,Cozy UES Studio,7189415,Jennifer,Manhattan,Upper East Side,40.77357,-73.95193,Entire home/apt,300,1,0,,,1,0 +6292828,Beautiful room in Williamsburg!,28980092,Meghan,Brooklyn,Williamsburg,40.71075,-73.95168,Private room,110,1,0,,,1,0 +6292866,Modern Quiet Gem Near All,32722063,,Brooklyn,East Flatbush,40.65263,-73.93215,Entire home/apt,85,2,182,2019-06-19,3.59,2,318 +6292893,Great East Village Studio,2563284,Jonas,Manhattan,East Village,40.72232,-73.98289,Entire home/apt,120,3,6,2016-11-06,0.12,1,0 +6297266,Cozy Family Home. Two Floors,32745492,Tami,Brooklyn,Sunset Park,40.66066,-73.99257,Entire home/apt,100,10,5,2017-04-23,0.10,1,0 +6300353,Lovely private space! 15min > city!,29854689,Danielle,Brooklyn,Bushwick,40.69793,-73.92775,Private room,65,2,17,2019-06-16,0.45,1,30 +6300424,Sunny Room! Block From park! SwEeT!,19575935,Dov,Brooklyn,Greenpoint,40.72469,-73.95099,Private room,80,1,2,2016-04-03,0.05,1,0 +6300809,Lovely 1-bed w Terrace by Cen Park!,4505274,Alexandra,Manhattan,Upper West Side,40.77468,-73.97966,Entire home/apt,299,7,3,2015-10-20,0.06,1,0 +6301965,Beautiful SoHo Loft,655506,Silvia,Manhattan,SoHo,40.7234,-73.99967,Entire home/apt,16,3,3,2018-01-08,0.16,1,0 +6302159,King Loft Bed in Bushwick Loft,20451969,Grace,Brooklyn,Bushwick,40.69985,-73.94001,Private room,46,4,0,,,1,0 +6302423,Perfectly Located West Village Loft,31913986,Rachel,Manhattan,West Village,40.73318,-74.00745,Entire home/apt,245,3,62,2019-06-23,1.23,1,350 +6302460,Private Bedroom and Office,21211868,Cliff,Brooklyn,Bedford-Stuyvesant,40.68728,-73.94104,Private room,55,5,1,2015-06-21,0.02,1,0 +6302996,Spacious Room in Washington Heights,18671223,Josette,Manhattan,Washington Heights,40.84773,-73.93346,Private room,45,1,1,2015-06-26,0.02,1,0 +6303109,COBBLE HILL SUMMER HAVEN,32778868,Jacqueline Mia,Brooklyn,Cobble Hill,40.68749,-73.99899,Entire home/apt,100,60,2,2017-05-25,0.04,1,0 +6303611,Spacious 2 Bd & 2 bath Apartment,6283678,Duncan,Brooklyn,Greenpoint,40.72666,-73.94819,Entire home/apt,165,17,0,,,1,0 +6303845,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95112,Private room,60,30,26,2019-06-06,0.52,8,236 +6304002,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68563,-73.94953,Private room,60,30,23,2019-03-29,0.48,8,244 +6304307,Charming 1BR Apt in Williamsburg!,10384362,Michael,Brooklyn,Williamsburg,40.716,-73.94666,Entire home/apt,140,2,7,2017-05-27,0.14,1,0 +6304803,Bright and airy Brooklyn townhouse,1528333,Jon,Brooklyn,Clinton Hill,40.69322,-73.96554,Entire home/apt,300,2,1,2016-05-07,0.03,1,0 +6304928,Huge Backyard - Williamsburg Loft,886705,Nicholas,Brooklyn,Williamsburg,40.71749,-73.96525,Entire home/apt,249,2,4,2015-06-22,0.08,1,0 +6305027,Beautiful Boerum Hill 2 Bedroom,309393,Thomas,Brooklyn,Boerum Hill,40.68492,-73.97913,Entire home/apt,175,30,1,2015-08-31,0.02,1,45 +6305553,BK Room Available 5/17-5/24,32798845,Justin,Brooklyn,Kensington,40.64345,-73.98258,Private room,35,1,0,,,1,0 +6309328,BBoho Room in Williamsburg/Bushwick,30494262,Sanam,Brooklyn,Bushwick,40.70227,-73.92926,Private room,55,2,4,2016-05-18,0.08,1,0 +6311716,1 Bedroom Greenpoint Close To All,32826638,Nadia,Brooklyn,Greenpoint,40.73284,-73.95822,Entire home/apt,135,3,2,2015-08-14,0.04,1,0 +6311978,LES Private Room in 3BR Apt,4309521,Sarah,Manhattan,Lower East Side,40.71959,-73.98984,Private room,60,1,1,2016-01-05,0.02,1,0 +6313624,Small Room in Beautiful Apartment/Building,9864136,Anthony,Manhattan,Kips Bay,40.74253,-73.98006,Private room,75,30,1,2018-12-07,0.14,26,345 +6314148,"Beautiful, SEXY apartment",24874937,Brigitte,Manhattan,NoHo,40.72652,-73.99259,Entire home/apt,300,1,0,,,1,0 +6314794,Bright Room at the Hudson!,3944633,Siobhan,Manhattan,Harlem,40.82782,-73.95155,Private room,79,1,0,,,1,0 +6315050,Great Private Room in Bedstuy,6844007,Alicia,Brooklyn,Bedford-Stuyvesant,40.69053,-73.95466,Private room,65,3,0,,,1,0 +6315659,GORGEOUS BEDROOM IN VICTORIAN HOME W/PRIVATE BATH,3249903,Kamilya,Brooklyn,Flatbush,40.63598,-73.95611,Private room,129,3,12,2018-12-15,0.26,3,75 +6316005,well designed apt with yard!,656798,Manny,Brooklyn,Bedford-Stuyvesant,40.68068,-73.92874,Entire home/apt,280,3,152,2019-06-24,3.01,1,274 +6316121,"Cozy, quiet and comfortable 1BR",13451939,Dana,Brooklyn,Bedford-Stuyvesant,40.68321,-73.93666,Entire home/apt,132,3,120,2019-07-06,2.37,2,214 +6316666,Sunny private room in Park Slope,1231888,Alejandra,Brooklyn,Park Slope,40.67173,-73.97724,Private room,70,1,1,2015-07-01,0.02,1,0 +6316786,Cozy Room in Super Convenient Area,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66083,-73.96247,Private room,52,1,26,2018-07-31,0.52,3,332 +6321475,a Peace House and free parking,28722667,Qudsia,Brooklyn,Flatlands,40.62536,-73.929,Private room,148,1,8,2019-06-30,0.16,3,365 +6322937,Large Sunny NYC entire apt 15 mins!,80447,Francesca,Queens,Long Island City,40.7645,-73.93181,Entire home/apt,115,5,6,2016-10-16,0.13,1,0 +6323445,Beautiful UES 1BR Apartment,24070095,Ryan,Manhattan,Upper East Side,40.77032,-73.96161,Entire home/apt,175,3,0,,,1,0 +6323975,Luxury Apartment in Midtown West,32904968,Yulia,Manhattan,Hell's Kitchen,40.75815,-73.99374,Shared room,130,1,0,,,1,0 +6324190,1 Bedroom in Giant Bushwick House,4157362,Casey,Brooklyn,Bedford-Stuyvesant,40.69564,-73.93335,Private room,35,10,0,,,1,0 +6325210,Elegant Master Suite NYC Brownstone,3471761,Kevin & Yuan,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92347,Entire home/apt,109,5,2,2016-06-04,0.04,2,0 +6326345,Comfortable private room Brooklyn,23589288,Fabian,Brooklyn,Bedford-Stuyvesant,40.68851,-73.9574,Private room,60,3,9,2017-01-16,0.18,1,0 +6326410,Stylish 1 bed room in the East Village,32922532,Jillian,Manhattan,East Village,40.73069,-73.98515,Entire home/apt,150,3,107,2019-06-23,2.16,1,99 +6326568,W Village - 3 BR - 5/31 to 7/2,32924122,Jeffrey,Manhattan,West Village,40.73623,-74.00036,Entire home/apt,207,1,1,2015-06-29,0.02,1,0 +6326582,"Sunny, Quiet, Open Space Uptown",32924087,Faiven,Manhattan,Washington Heights,40.8327,-73.94028,Shared room,63,1,2,2015-08-17,0.04,2,0 +6326681,Cozy apt convenient to everything!,241395,Ruby,Manhattan,East Village,40.72526,-73.99201,Entire home/apt,185,3,10,2018-12-30,0.21,1,275 +6326865,Best of Carroll Gardens,29594719,Beth,Brooklyn,Carroll Gardens,40.6795,-73.99468,Entire home/apt,445,5,1,2015-06-27,0.02,1,0 +6326959,Unique 1BR near Columbia Medical,16152105,Marc,Manhattan,Washington Heights,40.8531,-73.94091,Entire home/apt,125,7,6,2018-02-01,0.13,1,0 +6327222,Ensuite Turquoise Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68497,-73.93669,Private room,35,1,174,2019-06-09,3.45,5,153 +6327529,Beautiful West Village Apartment,27289127,Joel,Manhattan,West Village,40.74039,-74.00665,Entire home/apt,200,5,3,2016-01-01,0.06,1,0 +6328046,Spacious 1BDR apartment Upper West Side,31033526,Natalia,Manhattan,Upper West Side,40.79466,-73.96623,Entire home/apt,141,7,4,2018-06-17,0.16,1,0 +6328175,Large apartment near Columbia Univ,25697753,Eduardo,Manhattan,Morningside Heights,40.80692,-73.96434,Entire home/apt,120,4,2,2016-06-22,0.04,1,0 +6328394,"Trendy, newly renovated 1 BD Apt.",8876603,Tammy,Manhattan,Harlem,40.81356,-73.94807,Entire home/apt,145,3,143,2019-06-24,2.95,1,252 +6329973,Times Square room with private bath,31626212,Troy,Manhattan,Theater District,40.75731,-73.98479,Private room,120,60,140,2019-06-24,2.81,5,283 +6330321,2-Bdrm Entire Apartment St. George,6319915,Jason,Staten Island,St. George,40.64524,-74.08326,Entire home/apt,89,4,129,2019-06-30,2.57,2,25 +6331598,Stylish Apt in the Heart of BedStuy,32958503,Shatia,Brooklyn,Bedford-Stuyvesant,40.686,-73.93793,Entire home/apt,90,1,2,2016-09-21,0.04,1,0 +6332130,Lefferts Apt in Brownstone @ Park,21725994,Tim,Brooklyn,Prospect-Lefferts Gardens,40.65597,-73.95807,Entire home/apt,95,2,77,2019-06-18,1.61,2,83 +6333850,Nice Cozy Space,11127879,Roger,Brooklyn,Crown Heights,40.6726,-73.92859,Private room,120,1,0,,,2,177 +6333994,Two Bedroom in a townhouse with a patio in Nolita!,4194894,Esef,Manhattan,Nolita,40.72131,-73.99429,Entire home/apt,295,2,94,2019-05-07,1.98,2,272 +6334236,Brooklyn Tranquil Artist Space,32901759,Danielle,Brooklyn,Crown Heights,40.6756,-73.92305,Entire home/apt,104,3,60,2019-05-24,1.20,1,320 +6334292,Charming and Sunny Central Brooklyn,139311,Michael,Brooklyn,Boerum Hill,40.68363,-73.98011,Entire home/apt,150,2,63,2018-11-03,1.26,1,0 +6334492,Spacious PRIVATE Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.57679,-73.96016,Private room,75,1,127,2019-06-30,2.54,2,247 +6334808,05/19- 05/27 Big East Village Room,32979427,Maria,Manhattan,East Village,40.72786,-73.988,Private room,170,5,0,,,1,0 +6335490,Best location in NYC!,4365980,Benjamin,Manhattan,Gramercy,40.73481,-73.98669,Entire home/apt,194,2,8,2017-01-19,0.16,1,0 +6336480,Available in August only. One room with twin bed.,12459436,Zena,Queens,Flushing,40.73627,-73.81305,Private room,49,15,0,,,2,27 +6336738,Bklyn Brownstone 2Bedroom Apartment w/Office Space,32992675,Hollie,Brooklyn,Bedford-Stuyvesant,40.68351,-73.93224,Entire home/apt,125,3,90,2019-06-23,1.88,1,155 +6336834,SPACIOUS WILLIAMSBURG DESTINATION,32991339,Eric,Brooklyn,Williamsburg,40.70841,-73.95497,Private room,84,2,190,2019-06-16,3.82,2,254 +6337725,Cozy Harlem 1BD 15 mins to midtown,33000709,Casey,Manhattan,Harlem,40.81412,-73.95185,Entire home/apt,140,2,2,2015-08-27,0.04,1,0 +6338068,#1 Private room near CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77072,-73.95424,Private room,50,30,14,2018-09-23,0.28,3,310 +6342741,PRIVATE Bedroom & bathroom TRIBECA,29893120,Marco,Manhattan,Tribeca,40.71466,-74.00802,Private room,89,3,9,2016-05-13,0.18,1,0 +6343619,Room in Historical Crown Heights,33037772,Acadia,Brooklyn,Crown Heights,40.66756,-73.95187,Private room,55,1,5,2015-08-26,0.10,1,0 +6343641,Private Room Right by Subway to Manhattan *alt*,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.96083,Private room,62,1,54,2017-10-25,1.10,3,343 +6343837,Central Fort Greene Apt w deck,32849197,Kate,Brooklyn,Fort Greene,40.68673,-73.97318,Entire home/apt,100,1,0,,,1,0 +6344926,Brooklyn private room,14898658,Chadanut,Brooklyn,Kensington,40.64423,-73.98224,Private room,40,30,43,2019-01-08,0.87,11,99 +6344936,Modern 2-bedroom Loft in Greenpoint,9680171,Tracy,Brooklyn,Greenpoint,40.73148,-73.95929,Entire home/apt,350,3,1,2015-08-17,0.02,1,0 +6345234,Brownstone in Clinton Hill,2427529,Drew,Brooklyn,Clinton Hill,40.68409,-73.96264,Private room,75,1,0,,,1,0 +6345728,Dwtn 1 Bedroom W/Spectacular Views,13275837,Jaime,Manhattan,Greenwich Village,40.73109,-73.99411,Entire home/apt,190,3,7,2017-04-10,0.15,1,0 +6346456,Modern 1BR on Soho's Bowery,32846930,Erica,Manhattan,Nolita,40.72098,-73.99493,Entire home/apt,350,1,0,,,1,0 +6346496,East Village Apartment with Terrace,14087588,Drew,Manhattan,East Village,40.72514,-73.9896,Entire home/apt,300,1,1,2016-05-30,0.03,1,0 +6346662,Perfect West Village Studio!,1659891,Laurie,Manhattan,West Village,40.73854,-74.00147,Entire home/apt,295,5,6,2017-05-28,0.12,1,0 +6347548,Furnished Room with View of E River,33063310,Judy,Manhattan,Kips Bay,40.73789,-73.97493,Private room,113,1,2,2015-06-29,0.04,1,0 +6347713,Huge Private Room in the BEST location,33064443,Judy,Manhattan,Flatiron District,40.74169,-73.9933,Private room,95,3,1,2017-07-14,0.04,1,0 +6347729,Modern& Pretty Bedroom UpperBest!!!!,33064599,Yukee,Manhattan,Upper West Side,40.80168,-73.96543,Private room,59,3,68,2019-04-19,1.42,6,319 +6348548,Family Friendly Getaway,33070890,Susan,Brooklyn,Flatbush,40.63025,-73.96555,Entire home/apt,100,28,0,,,1,4 +6348972,Cosy & Quiet BD in Central Harlem,33074274,Vigil,Manhattan,Harlem,40.80581,-73.95,Private room,69,6,40,2019-05-02,0.80,2,329 +6349111,Perfect location!,10562062,Dajana,Manhattan,East Village,40.72297,-73.98604,Private room,190,2,1,2015-05-25,0.02,1,0 +6349524,1 bedroom in East village,8852945,Pierre,Manhattan,East Village,40.72852,-73.9856,Private room,110,4,0,,,1,0 +6355217,Cozy Brooklyn Studio with Parking,33108060,Shay,Brooklyn,Flatlands,40.62276,-73.93289,Entire home/apt,65,14,1,2015-08-01,0.02,1,0 +6356070,Ocean Hill - Beautiful 3 Bedroom,20320155,Alex & Family,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91156,Entire home/apt,185,1,69,2019-06-16,1.40,1,309 +6356359,Gorgeous home steps from the park!,31600563,Beatrice,Brooklyn,Park Slope,40.67194,-73.97247,Entire home/apt,152,3,1,2015-06-02,0.02,1,0 +6356366,Extra Large 1 Bdroom Sunny/Spacious,33113275,Iz,Manhattan,East Village,40.72872,-73.98043,Entire home/apt,249,3,3,2015-10-21,0.06,1,0 +6357058,Chambre disponnible,23975421,Marine,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94948,Private room,100,1,0,,,1,0 +6357128,Private Bedroom in Beautiful Apartment,20156894,Florence And Peter,Manhattan,Harlem,40.80627,-73.94896,Private room,95,4,20,2018-10-02,0.51,1,69 +6357527,Great UWS Studio Apartment,18762837,Gino,Manhattan,Upper West Side,40.79159,-73.97809,Entire home/apt,130,2,3,2015-05-29,0.06,1,0 +6358723,2 Bedroom Duplex,33125859,Sylvia,Brooklyn,Prospect Heights,40.67758,-73.97239,Entire home/apt,145,3,18,2019-06-25,0.37,1,0 +6359111,"A huge, debonair loft in midtown",5720429,Gregory,Manhattan,Murray Hill,40.74853,-73.98192,Entire home/apt,325,1,66,2019-07-02,1.33,1,67 +6359266,"1 Train, Delis, Duane Read,Eat Outs",33128992,Sundar,Manhattan,Morningside Heights,40.81444,-73.95863,Private room,75,1,1,2015-05-18,0.02,1,0 +6360224,"Sunny, Private room in Bushwick",33134899,,Brooklyn,Bushwick,40.70146,-73.92792,Private room,37,1,1,2015-07-01,0.02,1,0 +6360639,The city cabin,3320288,Jerry,Queens,Ridgewood,40.70365,-73.90351,Entire home/apt,75,1,52,2019-06-08,1.78,1,317 +6361102,Cozy Artist Bedroom — Only a 3 Min Walk to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67682,-73.91597,Private room,50,3,102,2019-06-23,2.02,6,364 +6361204,Million Dollar Views of Manhattan!!,33138892,Roy,Queens,Long Island City,40.74725,-73.95669,Entire home/apt,150,14,0,,,1,0 +6362061,Entire Prime Upper West Side Large Studio,3716641,Ofer,Manhattan,Upper West Side,40.78185,-73.97844,Entire home/apt,99,30,13,2019-01-29,0.27,8,140 +6362227,"Cozy room with beautiful yard and huge, soft bed",28645487,Ilana,Brooklyn,Bushwick,40.6952,-73.92396,Private room,50,4,11,2018-09-23,0.48,1,0 +6362662,Private room 3min from Bedford stop,33149697,Signe,Brooklyn,Williamsburg,40.72026,-73.96111,Private room,65,1,0,,,1,0 +6363059,FIDI brand new studio on 33th floor,33152462,Elly,Manhattan,Financial District,40.70778,-74.00685,Entire home/apt,150,1,9,2015-07-11,0.18,1,0 +6363796,Colorful & Spacious near A Express,14104449,Andrew,Manhattan,Washington Heights,40.85111,-73.93325,Private room,88,2,48,2019-06-30,0.97,1,122 +6364086,Spacious Luxury Studio-96th and WEA,3471132,Robin,Manhattan,Upper West Side,40.7966,-73.97154,Entire home/apt,190,4,8,2016-11-27,0.16,1,0 +6364117,Lovely Lofted Room in UWS,7532832,Wing-Yee,Manhattan,Upper West Side,40.80066,-73.96941,Private room,125,1,1,2015-06-09,0.02,1,0 +6364150,Colorful flat in heart of E Village,32162351,A.J.,Manhattan,East Village,40.72917,-73.98223,Entire home/apt,284,4,11,2018-09-14,0.22,2,0 +6364280,Breathtaking Light & View West Village Apartment,4358400,Shehzad,Manhattan,West Village,40.73707,-74.00524,Private room,150,1,1,2015-05-26,0.02,1,0 +6364324,The Oasis.,33106693,Elena,Manhattan,Harlem,40.82159,-73.95013,Private room,16,2,43,2019-07-01,1.66,3,154 +6364404,Luxury High-Rise in Center of NYC/Manhattan,6415669,Nisha,Manhattan,Midtown,40.74832,-73.98814,Entire home/apt,190,6,0,,,1,0 +6364807,Your home away from home,33166971,Miriam,Brooklyn,Bushwick,40.6861,-73.91241,Private room,60,2,70,2019-07-01,1.39,2,70 +6370032,Cozy 1Br Apt❤️of Upper East Side near Central Park,33182386,Ulysse,Manhattan,East Harlem,40.78775,-73.94891,Private room,99,4,49,2019-04-21,0.97,1,97 +6370773,Best Location - HUGE 2 bedroom by Times Square!,2683773,Michael Shane,Manhattan,Hell's Kitchen,40.76521,-73.98776,Entire home/apt,100,3,63,2019-06-20,1.25,1,7 +6370889,1 BD in Washington Heights,33198779,Catherine,Manhattan,Washington Heights,40.84064,-73.93727,Private room,35,1,4,2015-10-31,0.08,1,0 +6371191,"Charm and Comfort, Heart of the UWS",33200237,Christopher,Manhattan,Upper West Side,40.78576,-73.97629,Entire home/apt,167,7,2,2019-06-17,0.07,1,14 +6371373,Save$PrivateRoom walking distance to Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76525,-73.98895,Private room,140,1,159,2019-06-30,3.17,5,249 +6371504,Sunny Upper West Side Summer Rental,26484511,Emily,Manhattan,Upper West Side,40.78293,-73.97667,Entire home/apt,175,3,4,2016-06-18,0.08,1,0 +6371593,Fantastic Apt. Amazing LES Location,11740479,Brian,Manhattan,Lower East Side,40.71818,-73.9935,Entire home/apt,249,1,6,2015-12-30,0.12,1,0 +6371890,Private bedroom in SOHO,6771594,Charlotte,Manhattan,Tribeca,40.71959,-74.00429,Private room,110,1,0,,,1,0 +6373379,Large Apartment w/ Amenities,33212205,Firas,Manhattan,Midtown,40.75506,-73.96887,Entire home/apt,250,1,0,,,1,0 +6373582,Gowanus Brooklyn Bed,33213436,Alec,Brooklyn,Gowanus,40.67883,-73.98407,Private room,129,1,116,2019-06-24,2.38,8,236 +6373770,Huge private bedroom for quiet sleep in Manhattan!,3867,Luke,Manhattan,Two Bridges,40.71213,-73.99661,Private room,95,1,92,2019-06-29,2.40,2,47 +6373790,Enjoy a comfy apartment on the UWS,26818265,Gat,Manhattan,Upper West Side,40.79745,-73.96916,Entire home/apt,280,1,1,2015-07-05,0.02,1,0 +6374545,Studio one block from Central Park,33221872,Jocelyn,Manhattan,Upper West Side,40.78587,-73.97181,Entire home/apt,200,7,3,2015-08-21,0.06,1,0 +6375124,Park Slope -Sunny 3BR duplex,738918,Birgitta,Brooklyn,Park Slope,40.67619,-73.97726,Entire home/apt,276,3,19,2019-07-02,0.38,2,78 +6375331,1bdrm east village,32203454,Curtis,Manhattan,East Village,40.72378,-73.98385,Entire home/apt,130,3,26,2016-01-20,0.51,1,0 +6376345,!!BEAUTIFUL APARTMENT WITH GARDEN!!,33232851,Luis,Manhattan,Marble Hill,40.87494,-73.91057,Entire home/apt,40,3,2,2016-02-01,0.05,1,0 +6376487,Our Astorian Alcove,2321422,Angela,Queens,Astoria,40.76273,-73.91316,Entire home/apt,122,6,0,,,1,13 +6376606,"Gramercy Apt, Private Bedroom",33234599,Smit,Manhattan,Kips Bay,40.74025,-73.98323,Private room,64,3,4,2016-04-13,0.08,1,0 +6377161,Steps from Gramercy Park,14141873,Scott,Manhattan,Gramercy,40.73637,-73.98619,Entire home/apt,399,1,28,2019-06-17,0.61,1,354 +6377384,Spacius and quiet loft in Greenwich village,1993978,Sylvie,Manhattan,Chelsea,40.74068,-74.00346,Entire home/apt,495,5,8,2016-11-23,0.16,1,0 +6377624,Duplex garden brownstone apt,25472836,Maeva & Aaron,Brooklyn,Clinton Hill,40.68672,-73.96376,Entire home/apt,145,2,2,2016-08-10,0.06,1,0 +6377669,"""Your home away from home #2",33166971,Miriam,Brooklyn,Bushwick,40.68541,-73.91211,Private room,53,2,56,2019-06-01,1.12,2,81 +6378298,"Well-located Apt in Sunnyside, NYC",33163646,Kyoung,Queens,Sunnyside,40.74444,-73.92451,Entire home/apt,100,1,72,2018-01-18,1.46,1,0 +6380118,Brooklyn artist apartment,6645134,May,Brooklyn,Bushwick,40.70104,-73.91813,Private room,42,3,5,2017-08-20,0.10,1,298 +6380761,Modern Stdio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.77643,-73.95086,Entire home/apt,200,30,3,2018-01-01,0.09,9,353 +6384275,GARDEN OASIS CLINTON HILL BROWNSTON,252121,Emiliano,Brooklyn,Clinton Hill,40.68374,-73.96452,Entire home/apt,130,3,97,2019-06-17,1.95,1,348 +6384383,Penthouse Triplex/ Union Sq / Roof,1245695,Chris,Manhattan,East Village,40.73249,-73.9887,Private room,200,30,8,2016-10-22,0.16,1,365 +6384560,Sublet in Furnished Master Bedroom,4233168,Kim,Brooklyn,Prospect-Lefferts Gardens,40.65628,-73.95753,Private room,75,1,1,2015-07-10,0.02,1,0 +6384622,Sunny room right by park!,31752474,Tine,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.96197,Private room,45,14,9,2017-04-06,0.19,2,0 +6385039,Historic room in renovated brownstone,2881,Loli,Brooklyn,Bedford-Stuyvesant,40.68473,-73.946,Private room,52,2,110,2019-07-01,2.63,2,220 +6385364,Front bdrm in massive NoLita Loft,3922258,Alex,Manhattan,Lower East Side,40.7188,-73.99452,Private room,100,1,1,2015-08-10,0.02,1,0 +6385547,3 Bedroom Greenpoint Townhouse,834483,Dorothy,Brooklyn,Greenpoint,40.72833,-73.94781,Entire home/apt,350,3,15,2015-09-14,0.30,1,0 +6386823,Cozy Manhattan room ★ 3 mins to subway,21361229,Vivian Yuen Ting,Manhattan,Washington Heights,40.83998,-73.94295,Private room,70,1,88,2019-06-30,3.66,1,0 +6387739,"Room in Bushwick, Brooklyn",33297467,Camilla,Brooklyn,Bushwick,40.70104,-73.92278,Private room,39,4,4,2018-12-17,0.13,1,0 +6388315,UPPER WEST SIDE one bedroom apt,9815198,Nicola,Manhattan,Upper West Side,40.77724,-73.97699,Entire home/apt,120,150,0,,,1,365 +6388721,"Amazing windows, large West Village one-bedroom",3269171,Alison,Manhattan,West Village,40.73507,-74.00826,Entire home/apt,239,2,6,2017-01-01,0.18,1,0 +6389473,1785 The Oldest Row House in New York.,7202402,Ross,Manhattan,Chinatown,40.71399,-73.99707,Entire home/apt,375,2,15,2016-10-26,0.30,2,365 +6390092,Desirable apt. in prime location,33159253,Julianne,Brooklyn,Williamsburg,40.71999,-73.94551,Entire home/apt,125,1,1,2015-05-29,0.02,1,0 +6390777,Bkln (Vinegar Hill) duplex w/garden,33317997,Anna,Brooklyn,Vinegar Hill,40.70098,-73.98211,Entire home/apt,375,14,0,,,1,0 +6391062,"Cozy, artistic room in Brooklyn Apt",5972246,Elle,Brooklyn,Bedford-Stuyvesant,40.68217,-73.9534,Private room,45,3,3,2018-01-07,0.06,1,0 +6391286,Private room in spacious house,3911265,Ali,Queens,Long Island City,40.75405,-73.93717,Private room,60,7,1,2015-10-01,0.02,1,0 +6391465,Room in Condo,33323743,Coral,Brooklyn,Crown Heights,40.67371,-73.92743,Private room,75,1,5,2019-01-01,0.55,1,65 +6395425,The Golden Chamber,33346283,Jonathan,Manhattan,Harlem,40.83001,-73.94815,Private room,70,5,42,2019-05-27,0.87,3,348 +6395433,Charming Private Suite in the South Bronx,23693099,Justin,Bronx,Concourse Village,40.82809,-73.9159,Entire home/apt,65,4,107,2019-06-24,2.30,1,210 +6397059,Sunny Bedroom in West Village Loft,33355603,Lisa,Manhattan,West Village,40.73314,-74.00835,Private room,250,2,0,,,1,0 +6397592,Lower East Side/Chinatown Bedroom,2696970,Sasha,Manhattan,Two Bridges,40.71193,-73.99454,Private room,99,2,28,2018-11-08,0.55,1,296 +6397963,Room in BushBurg Apt w/ Rooftop,21894410,Jordan,Brooklyn,Williamsburg,40.70125,-73.94061,Private room,95,1,3,2016-03-28,0.06,1,0 +6398715,Studio!Astoria station in 3min!,31762883,Daisuke,Queens,Ditmars Steinway,40.77915,-73.90902,Private room,46,7,0,,,1,0 +6399305,"Spacious, unique apt - see reviews! Last minute ok",264659,Nikhil,Manhattan,East Village,40.72361,-73.98775,Entire home/apt,275,1,35,2017-12-08,0.70,1,0 +6399885,Beautiful 2bdroom apartmnt,33368633,John,Queens,Forest Hills,40.72391,-73.84407,Entire home/apt,168,3,133,2019-06-07,2.64,2,336 +6400055,Private bedroom in two bedroom APT,1535739,Ron,Brooklyn,Williamsburg,40.70956,-73.95328,Private room,45,31,3,2018-08-05,0.06,1,0 +6400170,Fantastic Cozy Stay-NYC. 4B,24833181,Andres,Brooklyn,Bedford-Stuyvesant,40.69385,-73.9481,Entire home/apt,80,1,93,2019-06-29,2.00,2,0 +6400255,Studio in Lux Building on UWS!,5707879,Laura,Manhattan,Upper West Side,40.78017,-73.98317,Entire home/apt,150,16,0,,,1,0 +6400482,"NEW! SAFE, Bright in the Heights",15195194,Akiea,Manhattan,Washington Heights,40.839,-73.94543,Entire home/apt,115,1,4,2015-07-30,0.08,1,0 +6400649,Cosy Bedroom in typical brownstone,11731168,Candice,Brooklyn,Boerum Hill,40.68848,-73.99009,Private room,65,2,6,2016-07-06,0.13,1,0 +6401500,"Wburg Penthouse, Private elevator, balcony, roof",5463220,Nick And Jade,Brooklyn,Williamsburg,40.71258,-73.95556,Entire home/apt,201,2,175,2019-07-01,3.53,1,68 +6401592,Brooklyn Summer,10645724,Daliso,Brooklyn,Crown Heights,40.67704,-73.93955,Private room,55,7,0,,,1,0 +6402424,Bright Private Room in Williamsburg!,7256646,Surabhi,Brooklyn,Williamsburg,40.70609,-73.95332,Private room,120,1,3,2016-06-26,0.08,1,0 +6402712,Private Room in Astoria,30166510,Alina,Queens,Astoria,40.77006,-73.93043,Private room,50,1,1,2015-08-10,0.02,1,0 +6402807,Stylish central 1 BR apartment,6354467,Robert,Manhattan,Chelsea,40.74476,-73.99862,Entire home/apt,100,4,4,2017-01-03,0.09,1,0 +6403485,Homey 1 BR apartment in Harlem,33394459,Alana,Manhattan,Harlem,40.80645,-73.95261,Entire home/apt,100,14,2,2016-01-07,0.04,1,0 +6403755,Entire Williamsburg Music Lovers Palace―1 Blk to L,33396510,Christopher,Brooklyn,Williamsburg,40.70745,-73.94223,Entire home/apt,59,7,9,2019-06-12,0.19,1,0 +6403795,Twin Loft Nook in Brooklyn,21090508,Jarad,Brooklyn,Bushwick,40.69914,-73.93591,Shared room,44,5,27,2018-08-14,0.54,2,0 +6404584,Tree-lined block+Roof+private rooms,33403059,Joshua,Brooklyn,Crown Heights,40.67725,-73.95994,Private room,79,5,3,2015-10-16,0.06,3,0 +6405859,Eclectic Williamsburg Townhouse,10396710,Robbie,Brooklyn,Williamsburg,40.70933,-73.95577,Private room,56,3,2,2016-06-13,0.04,1,0 +6407534,"Clean, bright, renovated apt in Lower East Side",5919678,Carole,Manhattan,Lower East Side,40.71983,-73.98801,Entire home/apt,140,5,8,2018-06-14,0.16,1,0 +6408849,MODERN NYC APARTMENT,33426004,Joshua,Manhattan,Murray Hill,40.74583,-73.97834,Entire home/apt,160,1,5,2015-09-25,0.10,1,0 +6410511,"Big space, great price, a home by Mnhn, best in BK",10136764,Michael,Brooklyn,Crown Heights,40.67766,-73.93934,Entire home/apt,119,4,91,2019-06-21,1.81,1,316 +6410814,Spacious Studio + Patio,15613411,Stacey,Manhattan,Lower East Side,40.7187,-73.99043,Entire home/apt,185,3,26,2017-05-06,0.52,1,0 +6410924,Quiet Bedroom in Large Charming Apt,1503493,Phi Lee,Brooklyn,Prospect-Lefferts Gardens,40.65901,-73.96045,Private room,55,3,0,,,1,0 +6412693,Cozy Room in Washington Heights Apt,11555845,Elizabeth And Elias,Manhattan,Washington Heights,40.84543,-73.94283,Private room,58,1,148,2019-06-12,3.58,1,280 +6416714,1 private bedroom in Williamsburg,24448775,Mo,Brooklyn,Williamsburg,40.70883,-73.94068,Private room,85,4,4,2015-09-19,0.08,1,0 +6420850,Great sunny room in a fun house,2216353,Kat,Brooklyn,Bedford-Stuyvesant,40.69435,-73.93294,Private room,100,1,1,2015-06-09,0.02,1,0 +6421011,"Cozy ""Jr."" 1B, historic brownstone",33499491,Seth,Brooklyn,Crown Heights,40.67699,-73.95179,Entire home/apt,110,1,5,2016-01-01,0.10,1,0 +6421335,Cozy room near LES/Chinatown,6680071,Billy,Manhattan,Chinatown,40.71489,-73.99168,Private room,80,5,1,2015-05-25,0.02,1,0 +6421429,Dominique's LowerLevel 1 bdrm pad*video projects,310670,Vie,Bronx,Eastchester,40.88241,-73.83422,Entire home/apt,115,1,6,2019-06-30,0.18,13,364 +6421799,relaxed and simple in Williamsburg,3011903,Matthew,Brooklyn,Williamsburg,40.7105,-73.9451,Private room,99,4,58,2019-05-27,1.25,1,307 +6422511,My Little Guest Apartment,2680820,Linda,Queens,Flushing,40.75348,-73.81785,Entire home/apt,105,2,204,2019-06-24,4.05,3,313 +6422762,Cozy Room in UES Apartment,13341919,Jennifer,Manhattan,Upper East Side,40.78396,-73.95218,Private room,110,2,3,2015-12-27,0.06,1,0 +6422875,Brooklyn Creative Snooze Factory,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69271,-73.94353,Private room,70,1,397,2019-06-28,7.97,2,35 +6423521,Private Room w/ access to Terrace,33513998,Mackenzie,Manhattan,Upper West Side,40.77883,-73.97494,Private room,160,1,7,2016-05-21,0.14,1,0 +6423589,Lofted bedroom in large loft space full of plants,6767463,Tim,Brooklyn,Bushwick,40.70746,-73.92054,Private room,150,30,10,2017-02-28,0.20,1,0 +6423799,UWS STUDIO,26624082,Maurine,Manhattan,Upper West Side,40.78885,-73.98013,Entire home/apt,90,4,1,2016-03-26,0.03,1,0 +6424227,Bright and Sunny Apartment DUMBO,6969910,Ben,Brooklyn,DUMBO,40.70372,-73.9899,Entire home/apt,150,7,0,,,1,0 +6424961,"Skylighted Floor, All Yours, 23 Mins to Manhattan",30641136,Michael,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95162,Entire home/apt,86,30,10,2019-05-31,0.33,1,302 +6425712,Roomy and quiet 2BR in Manhattan!,16598550,Candace,Manhattan,Washington Heights,40.85516,-73.9378,Entire home/apt,200,1,2,2015-06-27,0.04,1,0 +6425751,LUXURY DOORMAN HIGH RISE One Bedroom,33530934,Jason,Manhattan,Hell's Kitchen,40.76525,-73.99056,Entire home/apt,272,1,38,2019-05-09,0.89,1,360 +6425850,"Spacious, charming studio",32715865,Yelena,Manhattan,Upper West Side,40.79169,-73.97498,Entire home/apt,86,1,5,2017-09-23,0.13,1,0 +6426032,Beautiful Apartment in Williamsburg,33533091,Maeve,Brooklyn,Williamsburg,40.70885,-73.94927,Entire home/apt,200,5,0,,,1,0 +6426292,"Comfy Apt! Private Bathroom, Prime Location, Patio",33535691,Jonathan,Manhattan,Hell's Kitchen,40.75674,-73.99774,Private room,129,2,290,2019-06-25,5.92,1,26 +6428482,2C Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80749,-73.93803,Private room,50,1,103,2019-05-31,2.07,10,365 +6428581,Nolita Room - Convenient & Quaint,3760161,Sharmilli,Manhattan,Nolita,40.72066,-73.99566,Private room,95,4,1,2016-06-11,0.03,1,0 +6428913,COBBLE HILL BROWNSTONE,13043852,Claire,Brooklyn,Cobble Hill,40.68477,-73.99825,Entire home/apt,400,6,5,2017-07-16,0.10,1,85 +6428942,Entire 1 BR apt in luxury building!,21694306,Brooke,Manhattan,Financial District,40.70949,-74.01379,Entire home/apt,212,1,0,,,1,0 +6429905,Unique Space in Red Hook,33558572,Kim,Brooklyn,Red Hook,40.67731,-74.0112,Entire home/apt,160,2,64,2019-06-16,1.27,1,341 +6432836,Enormous bedroom in UWS 2-bed,19251040,Barr,Manhattan,Upper West Side,40.79275,-73.97199,Private room,90,3,1,2015-06-11,0.02,1,0 +6433445,Sunny Studio in Clinton Hill,1905361,Gillian,Brooklyn,Clinton Hill,40.68404,-73.96714,Entire home/apt,145,6,17,2019-05-30,0.34,1,15 +6433621,Forest Hills home shares its breathtaking beauty,33582013,Nate,Queens,Forest Hills,40.71345,-73.85658,Entire home/apt,125,2,44,2019-06-30,0.91,1,319 +6436433,Upper East Side + 2 queen size bed,2433524,Daniel,Manhattan,Upper East Side,40.78125,-73.94851,Entire home/apt,250,3,0,,,1,0 +6437014,"Family Friendly & Cozy Apt Near Subway, 1 Bedroom",17382690,Erica,Brooklyn,South Slope,40.66632,-73.99013,Entire home/apt,100,3,100,2019-06-25,1.98,1,6 +6437262,"Cozy private room, close to the subway & beach",33605594,Misha,Brooklyn,Sheepshead Bay,40.59225,-73.95026,Private room,75,1,8,2019-05-15,0.26,1,311 +6437347,Cosy Williamsburg,7108862,Estelle,Brooklyn,Williamsburg,40.7103,-73.96622,Private room,75,4,2,2015-06-13,0.04,1,0 +6438239,A spacious studio in Midtown / UES,11885649,Jay,Manhattan,Upper East Side,40.76313,-73.96192,Entire home/apt,195,3,0,,,1,0 +6438254,Charming Brooklyn 1BD+Den,33611370,Christopher,Brooklyn,Carroll Gardens,40.68303,-73.99686,Entire home/apt,125,14,2,2015-10-26,0.04,1,0 +6438456,"Private! entire studio, own entrance, private bath",33614329,Walter,Brooklyn,Bushwick,40.69528,-73.93079,Entire home/apt,85,1,208,2019-07-06,4.14,4,197 +6443330,West Village Studio,33640698,Peter,Manhattan,West Village,40.73404,-74.00955,Entire home/apt,200,1,0,,,1,0 +6444554,3 bedrooms in Upper East Side with amazing terrace,7853594,Hans,Manhattan,Upper East Side,40.76235,-73.9626,Entire home/apt,449,4,6,2018-12-30,0.14,2,4 +6445126,Williamsburg 2 Bedroom,32850071,Mary Kate,Brooklyn,Williamsburg,40.71411,-73.95771,Entire home/apt,150,2,1,2015-05-25,0.02,1,0 +6445173,Luxury Williamsburg Duplex w/ Yard!,5622480,Gigi,Brooklyn,Williamsburg,40.71106,-73.94918,Entire home/apt,250,2,176,2019-06-23,3.51,1,275 +6445656,Big Room in Heart of Williamsburg,13873277,Elan,Brooklyn,Williamsburg,40.71599,-73.95539,Private room,100,28,0,,,1,0 +6447136,Magical Oasis in Bushwick! 20 min to City,33648474,Leah,Brooklyn,Bushwick,40.6971,-73.92046,Entire home/apt,120,2,56,2019-07-04,1.11,1,314 +6447332,"Perfect Room, East Village Dream",2223278,Michael,Manhattan,East Village,40.72644,-73.97866,Private room,115,2,246,2019-06-29,4.94,1,69 +6447797,L.E.S. / Chinatown,33616159,Jada,Manhattan,Chinatown,40.71762,-73.99328,Private room,89,4,3,2015-09-29,0.06,1,0 +6449002,SoHo/Greenwich Village 1BR Apt,11179499,Jeffrey,Manhattan,Greenwich Village,40.72846,-74.00113,Entire home/apt,180,3,2,2015-05-31,0.04,1,0 +6449238,Astoria next to Beer Garden!,517772,Faye,Queens,Ditmars Steinway,40.77387,-73.91778,Entire home/apt,70,4,2,2015-09-17,0.04,1,0 +6449718,Sunny Bohemian Tasteful East Harlem,33675739,Giselle,Manhattan,East Harlem,40.79276,-73.93854,Private room,140,2,50,2019-01-01,1.01,2,0 +6450118,Sunny Spacious Room/Friendly Rates,9522524,Nancy,Brooklyn,Canarsie,40.64548,-73.8949,Private room,37,5,72,2019-05-28,1.43,5,322 +6450240,Brooklyn Cute Room + Private Bath!,4498389,Zuzi,Brooklyn,Clinton Hill,40.68384,-73.96042,Private room,70,1,4,2015-10-26,0.08,1,0 +6450252,Large Sunny Room in Williamsburg,640117,Simon,Brooklyn,Williamsburg,40.71339,-73.95546,Private room,88,4,7,2015-11-14,0.14,5,0 +6450408,3 Bedroom Apt in Williamsburg w Private Rooftop,640117,Simon,Brooklyn,Williamsburg,40.71408,-73.95708,Entire home/apt,320,4,56,2019-06-23,1.13,5,141 +6450457,Wonderful Kips Bay 1 BR + Elevator!,33680384,Jeff,Manhattan,Kips Bay,40.74077,-73.98085,Entire home/apt,200,2,0,,,1,0 +6451892,Spacious room is Park Slope,20192028,Alexander,Brooklyn,Gowanus,40.66683,-73.99308,Private room,55,1,1,2015-06-16,0.02,1,0 +6452019,Loft Studio Midtown Lux Doorman,17408676,Patrick,Manhattan,Midtown,40.74957,-73.98255,Entire home/apt,195,3,5,2018-05-19,0.10,1,0 +6452027,Spacious South Williamsburg Apartment,1471506,Ryan,Brooklyn,Williamsburg,40.70798,-73.95095,Private room,115,3,0,,,1,0 +6452138,Large Midtown East Duplex,12060709,Joshua,Manhattan,Midtown,40.75545,-73.96896,Private room,125,1,0,,,1,0 +6452188,The Brownstone 2 / Luxury 1 Bd Apt,276291,Simon,Manhattan,East Harlem,40.80755,-73.94141,Entire home/apt,155,3,116,2019-06-29,2.36,2,247 +6452251,Modern 1BR Next To Central Park,33433635,Casey,Manhattan,Harlem,40.80273,-73.95748,Entire home/apt,170,3,1,2015-07-18,0.02,1,0 +6452585,"Cozy, sunny East Village bedroom",6826449,Lucas,Manhattan,East Village,40.72672,-73.98514,Private room,115,2,0,,,1,0 +6452764,Spacious One Bedroom Apartment,33695968,R.J.,Brooklyn,Prospect-Lefferts Gardens,40.66102,-73.96224,Entire home/apt,74,2,0,,,1,0 +6452788,Huge Bright Room in Williamsburg,28000421,Luca,Brooklyn,Williamsburg,40.71532,-73.9442,Private room,100,1,0,,,2,0 +6452940,Spacious Studio in Midtown,19475826,Mark,Manhattan,Murray Hill,40.7487,-73.97358,Entire home/apt,125,2,21,2016-12-30,0.44,1,0 +6457121,Bright Nordic Serenity in Brooklyn,33721278,Margrethe,Brooklyn,Midwood,40.61839,-73.95762,Private room,70,1,0,,,1,0 +6457367,Studio Apt With Backyard,33722691,Danny And June,Brooklyn,Clinton Hill,40.69298,-73.96851,Entire home/apt,110,1,179,2019-06-15,3.56,2,118 +6458979,Beautiful Condo w/ Private Rooftop,26408268,Neil,Brooklyn,Williamsburg,40.71161,-73.95957,Entire home/apt,395,4,9,2019-05-12,0.25,1,10 +6459617,Prime Williamsburg LOFT next to Bedford L,1531125,Marek,Brooklyn,Williamsburg,40.71741,-73.95555,Entire home/apt,215,3,14,2018-09-28,0.33,1,0 +6460353,A True Gem.,11775328,Kamilah,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96162,Entire home/apt,150,2,17,2019-05-19,0.37,1,336 +6460927,Classic Parlor Level Brownstone,33741028,Cristy,Manhattan,Gramercy,40.73235,-73.98392,Private room,295,3,22,2016-12-30,0.46,1,0 +6461245,Big room with private bathroom in Bushwick,33607986,Anisia,Brooklyn,Bushwick,40.69113,-73.91501,Private room,60,4,6,2019-06-30,0.13,1,2 +6461789,"Cozy private room in Brooklyn, NYC.",33746505,Viktoriya,Brooklyn,Gravesend,40.6075,-73.96763,Private room,55,1,135,2019-02-02,2.79,1,22 +6462046,Cozy 1BD | 15 min. to Grand Central,33736005,Sarah,Queens,Sunnyside,40.7453,-73.92311,Entire home/apt,85,1,3,2015-10-12,0.06,2,0 +6462078,Great room near CUMC!,16549175,Alana,Manhattan,Washington Heights,40.84441,-73.94218,Private room,40,6,0,,,1,0 +6462454,"Spacious, Bright, Brooklyn Beauty",3210626,Matthew,Brooklyn,Park Slope,40.6761,-73.97509,Entire home/apt,200,1,0,,,1,0 +6462513,"Sunny Private Room, & bath",33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68521,-73.93707,Private room,90,2,115,2019-05-25,2.29,2,0 +6462549,Private room,3312204,Olga,Manhattan,Upper East Side,40.77224,-73.94844,Private room,49,2,78,2018-04-16,1.66,2,182 +6463098,Sweet Home at Washington high everyone is welcome,32430692,Frank,Manhattan,Washington Heights,40.84405,-73.93796,Private room,50,1,10,2019-07-06,8.82,1,71 +6464881,Cozy Studio in Prospect Heights,18412434,Felami,Brooklyn,Prospect Heights,40.67485,-73.9632,Entire home/apt,85,7,52,2019-05-06,1.05,1,24 +6466301,Entire rowhouse+garden+deck in Park Slope/Gowanus,21176015,Jennifer,Brooklyn,Park Slope,40.67844,-73.98136,Entire home/apt,350,4,1,2019-04-24,0.39,1,14 +6466590,Room in spacious apt near the park,7455366,Sidra,Brooklyn,Flatbush,40.64876,-73.96279,Private room,38,30,2,2016-08-26,0.05,1,0 +6467264,Spacious room w/private roof deck,33782884,Kate,Brooklyn,Carroll Gardens,40.67674,-73.99805,Private room,158,2,4,2015-07-02,0.08,2,0 +6467509,Modern Rustic NYC Chic in the LES,253533,Matt,Manhattan,Chinatown,40.71507,-73.99033,Entire home/apt,245,4,27,2018-05-18,0.58,1,0 +6467744,Cozy Williamsburg Brooklyn Space,645887,Dave & Theresa,Brooklyn,Williamsburg,40.71323,-73.94699,Entire home/apt,110,3,137,2019-07-03,3.51,2,154 +6467905,Harlem Home Away From Home,33788184,Tiana,Manhattan,Harlem,40.82948,-73.94876,Private room,55,2,0,,,1,0 +6470740,Luxury Apt in Financial District,33803881,Lisa,Manhattan,Financial District,40.70516,-74.00798,Entire home/apt,275,1,0,,,1,0 +6471117,"Clean room in a cozy, peaceful home",10380050,Lisa,Manhattan,Harlem,40.82373,-73.95144,Private room,50,1,37,2016-09-15,0.74,1,0 +6472275,"Cozy,newly furnished room inAstoria",24597265,Freda,Queens,Ditmars Steinway,40.77077,-73.90903,Private room,45,6,4,2017-06-15,0.09,8,318 +6473307,Modern Mulberry St Room for 1 Female Guest,33817646,A,Manhattan,Little Italy,40.71864,-73.99753,Private room,85,2,79,2019-02-10,1.70,1,0 +6474699,1 bedroom apt in pvt 2 fam house,33825321,Debra,Brooklyn,Crown Heights,40.67255,-73.93328,Entire home/apt,150,1,24,2019-06-22,0.51,1,299 +6476242,Huge duplex apartment with garden!,33833944,Andreas Per Daniel,Manhattan,Midtown,40.76015,-73.96378,Entire home/apt,247,5,25,2019-02-23,0.51,1,0 +6476333,1BR in East Harlem apt,18693139,Eliana,Manhattan,East Harlem,40.80182,-73.94014,Private room,105,2,5,2019-01-01,0.10,1,273 +6476426,3 Bedroom Downtown NYC loft,25646971,Ella,Manhattan,Financial District,40.71095,-74.00912,Entire home/apt,400,2,8,2018-08-16,0.19,1,44 +6477272,Astoria HUGE Balcony PRIME location,6696648,Chris,Queens,Astoria,40.7666,-73.92079,Entire home/apt,155,6,4,2017-01-01,0.11,1,173 +6477558,2 Bdrm apt Near Empire State Building,17770287,Nina,Manhattan,Midtown,40.75085,-73.98266,Entire home/apt,150,30,5,2018-12-16,0.13,14,217 +6477586,A large 1-bedroom apartment,29690360,Olga,Manhattan,Inwood,40.86743,-73.92643,Entire home/apt,120,3,0,,,1,0 +6478141,Cheap & Basic Temporary Airbed Room,15743237,Champson,Queens,Elmhurst,40.734,-73.86596,Private room,69,1,14,2015-10-27,0.28,2,0 +6478214,Studio apartment in the heart of Chelsea,7898046,Zachariah,Manhattan,Chelsea,40.73992,-73.99888,Entire home/apt,199,2,71,2017-08-05,1.42,1,0 +6478459,Duplex 3BR SOHO Penthouse w.Terrace,18897568,Meriem,Manhattan,Greenwich Village,40.72764,-74.00076,Entire home/apt,499,5,3,2015-08-15,0.06,1,0 +6479559,Best location! Chelsea/West Village/Meatpacking,33774886,Ryan,Manhattan,Chelsea,40.74026,-73.99746,Entire home/apt,150,2,150,2019-06-23,2.99,1,2 +6479956,Spacious private room,13356805,Sophie,Brooklyn,Park Slope,40.66753,-73.97747,Private room,300,1,0,,,1,0 +6480490,Wburg 1 bedroom - Spacious & Sunny,1871609,Franky,Brooklyn,Williamsburg,40.72008,-73.94464,Entire home/apt,105,5,33,2019-04-28,0.66,1,8 +6480685,"Cozy, single bed room.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77209,-73.91082,Private room,45,6,25,2019-01-03,0.53,8,307 +6481924,"Brooklyn, Sundrenched & Peaceful",1862576,Gan,Brooklyn,Sunset Park,40.65168,-74.00178,Entire home/apt,105,7,3,2016-01-06,0.06,1,0 +6484983,Master bedroom + private bathroom,3499548,Costanza,Manhattan,Hell's Kitchen,40.7644,-73.99338,Private room,130,3,14,2019-05-28,0.63,1,293 +6487196,Huge&Bright Room in Greenwich Vill.,3263765,Shef,Manhattan,Greenwich Village,40.72986,-73.99468,Private room,75,2,4,2015-11-02,0.08,1,0 +6487933,BK Heights Apartment for cat lovers,14063,Meredith & Dave,Brooklyn,Brooklyn Heights,40.7007,-73.99257,Entire home/apt,150,5,15,2017-08-04,0.31,1,0 +6489828,Industrial Flex 2br duplex Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72583,-73.94177,Entire home/apt,159,30,3,2016-08-07,0.07,52,340 +6491278,Cozy home in Williamsburg!,818508,Souheil,Brooklyn,Williamsburg,40.71515,-73.94798,Entire home/apt,100,7,15,2018-12-16,0.30,1,0 +6492185,A beautiful and friendly beach area,33929905,Oleg,Brooklyn,Manhattan Beach,40.57872,-73.95251,Entire home/apt,145,4,59,2019-06-17,1.24,1,157 +6492190,Live like a real New Yorker right by Central Park,1982268,Chloe,Manhattan,Upper West Side,40.79,-73.97318,Entire home/apt,220,2,13,2018-08-25,0.26,1,0 +6492449,Spacious Duplex for Spring Retreat,6804278,Randy,Brooklyn,Bedford-Stuyvesant,40.68084,-73.93075,Entire home/apt,160,4,9,2015-10-26,0.18,1,365 +6492778,"2 Bedroom fully furnished apt,Clinton Hill BK",21575456,Myrdith,Brooklyn,Clinton Hill,40.68502,-73.96073,Entire home/apt,175,1,150,2019-07-05,2.98,1,300 +6492864,Private Artisitic Room East Village,1480124,Goldwyn,Manhattan,East Village,40.72174,-73.98418,Private room,82,3,11,2015-09-26,0.23,1,0 +6493181,"Sunny & Tall 1 BR, Central Pk,Train",26270573,Joe,Manhattan,Upper East Side,40.77025,-73.95491,Entire home/apt,200,5,95,2019-05-26,1.95,2,182 +6493288,NY City for the 4th of July!,2938550,Jon,Manhattan,Midtown,40.76571,-73.98023,Entire home/apt,300,1,0,,,1,0 +6493737,Steps to Grand Central! Large 1BDR,33941066,Kennedi,Manhattan,Murray Hill,40.74696,-73.9767,Entire home/apt,199,1,0,,,1,0 +6494256,"Spacious, Peaceful Room",33527075,Brooke,Queens,Elmhurst,40.74525,-73.87627,Private room,85,2,188,2019-07-04,3.75,2,2 +6499058,Great Upper East Side Location!,33970775,McClain,Manhattan,Upper East Side,40.764,-73.9587,Entire home/apt,135,3,11,2016-05-30,0.22,1,0 +6499870,Kid friendly 2 bedroom in Harlem,33975064,Jessica,Manhattan,Harlem,40.80571,-73.95429,Entire home/apt,150,3,2,2016-08-06,0.04,1,0 +6500246,BROWNSTONE BUILDING IN CLINTON HILLS,33977124,Donovan,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95535,Private room,65,2,49,2019-06-14,1.42,2,310 +6501082,3BR Williamsburg Duplex w/Backyard,33977623,Britt,Brooklyn,Williamsburg,40.71238,-73.96451,Entire home/apt,395,5,16,2019-07-03,0.32,1,67 +6501996,Private Terrace in the East Village,1304710,Ashley,Manhattan,East Village,40.72275,-73.98525,Entire home/apt,379,7,45,2019-06-29,0.91,1,364 +6502493,Stylish Apartment in GREAT West Village Location,14231957,Milan,Manhattan,West Village,40.73408,-74.00263,Entire home/apt,250,2,5,2016-09-20,0.14,1,0 +6502954,NICEQUIET10 MINUTES TO TIME SQUARE.,17344881,El,Manhattan,Harlem,40.80454,-73.95133,Private room,90,2,11,2019-07-01,0.22,3,282 +6504972,Gem of Bushwick,5785497,Jaamil,Brooklyn,Bushwick,40.70154,-73.92154,Private room,40,10,22,2019-05-16,0.47,1,4 +6505898,Riverside and 160th--Long Stay,34009194,Seán,Manhattan,Washington Heights,40.83771,-73.94638,Entire home/apt,200,2,1,2015-06-30,0.02,1,0 +6505927,Casa de la Luna -Bedford Stuyvesant,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.68997,-73.94205,Entire home/apt,133,2,49,2019-06-24,1.00,3,319 +6506449,"Large, charming studio on UWS",34013546,Yelena,Manhattan,Upper West Side,40.79324,-73.97489,Entire home/apt,140,1,2,2015-06-22,0.04,1,0 +6507084,Renovated 2BR apartment MIN 30 DAY,23772724,Elem,Manhattan,East Harlem,40.79726,-73.9329,Entire home/apt,100,30,12,2019-03-22,0.25,15,342 +6509338,Vintage 1B Artist Loft in Brooklyn,25441469,Kyle,Brooklyn,Prospect-Lefferts Gardens,40.6587,-73.95911,Entire home/apt,85,2,2,2018-03-04,0.09,1,0 +6509750,Art Deco NYC Upper West 2br Apt,696487,Ted,Manhattan,Upper West Side,40.7837,-73.97851,Entire home/apt,385,30,0,,,1,0 +6511675,Sunny room 30 min from Manhattan,10077626,Nelesi,Brooklyn,Flatbush,40.65208,-73.95341,Private room,50,10,0,,,1,0 +6512429,Charming Park Slope 1BR w/ Patio,34049419,Becky And John,Brooklyn,South Slope,40.6675,-73.98898,Entire home/apt,140,3,14,2016-08-18,0.28,1,0 +6512929,Large Studio on the Upper East Side,34052554,Whitney,Manhattan,Upper East Side,40.77499,-73.94875,Entire home/apt,120,1,1,2015-06-29,0.02,1,0 +6515562,STUDIO in the East Village,14979188,Esther,Manhattan,East Village,40.72781,-73.9862,Entire home/apt,110,4,3,2015-08-27,0.06,1,0 +6515686,Lovely room In Williamsburg,4224588,Olivia,Brooklyn,Williamsburg,40.71155,-73.94883,Private room,106,14,0,,,1,0 +6516344,Beautiful Spacious 1 Bed in Hip Harlem Neighborhd,25865233,Leonarda,Manhattan,Harlem,40.81698,-73.95259,Entire home/apt,115,3,71,2019-04-07,1.43,1,4 +6519873,Houseboat in the Rockaways,829717,Ambrose And Florence,Queens,Arverne,40.59428,-73.78855,Entire home/apt,120,1,26,2019-06-28,0.53,1,14 +6520350,The Kook House - Rockaways BEST Summer House!!,4089529,Michael,Queens,Arverne,40.59399,-73.79693,Entire home/apt,300,1,67,2019-07-07,1.34,1,344 +6522849,Home Sweet Home :),26439972,Leonit,Brooklyn,Sheepshead Bay,40.60078,-73.96527,Private room,59,1,5,2019-01-03,0.13,1,319 +6522938,COZY HOUSE 10 MINS FROM LA GUARDIA!,34113764,Nick,Queens,Ditmars Steinway,40.77086,-73.89578,Entire home/apt,140,3,2,2019-06-15,1.33,2,363 +6523409,Large BR w/Private Ent & Living Rm!,2124716,Jules,Brooklyn,Park Slope,40.66923,-73.98134,Private room,99,1,100,2017-09-18,2.11,1,1 +6524806,Great room for couples on a budget!,34124276,Nicole,Queens,Long Island City,40.75235,-73.93714,Private room,52,1,4,2016-07-28,0.08,1,0 +6525622,Garden Apt. East Village NY,33733944,John,Manhattan,East Village,40.72152,-73.97761,Entire home/apt,125,1,4,2017-09-04,0.09,1,0 +6525765,Room for rent in corona queens,34129674,Angelo,Queens,Corona,40.74826,-73.86755,Private room,150,2,0,,,1,363 +6528040,NYC ROOM GORGEOUS LIGHT! RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82119,-73.95773,Private room,65,4,37,2019-06-15,0.76,3,196 +6528046,Immaculate Gramercy One-Bedroom,34142649,Joseph,Manhattan,Gramercy,40.73742,-73.98052,Entire home/apt,249,2,0,,,1,0 +6528060,Furnished Unit (115 and Amsterdam),34142729,Connor R,Manhattan,Morningside Heights,40.80625,-73.96176,Private room,84,1,0,,,1,0 +6528103,Spacious bedroom in Astoria,34143084,Sam,Queens,Astoria,40.77238,-73.92446,Private room,53,3,2,2018-12-29,0.22,1,0 +6534409,Unbelievable NYC Apt Avail Nov!,34174768,Dana,Manhattan,Midtown,40.75055,-73.98679,Entire home/apt,340,2,19,2015-10-25,0.38,1,0 +6536719,Perfect Room in Brooklyn,34186180,Grant,Brooklyn,Bushwick,40.70252,-73.9279,Private room,80,7,2,2015-07-25,0.04,1,0 +6536744,Spacious One-Bedroom near Prospect Park,8479809,A,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96241,Entire home/apt,75,5,0,,,1,0 +6538963,Art filled Brooklyn Hideaway with private bathroom,34197591,Daniela,Brooklyn,Bedford-Stuyvesant,40.6832,-73.95455,Private room,80,3,131,2019-07-06,2.64,1,140 +6539114,Private Room in Williamsburg Apt,111837,Emeka,Brooklyn,Williamsburg,40.71145,-73.95302,Private room,78,2,1,2015-06-16,0.02,1,0 +6539778,Large 1BR in heart of Williamsburg!,34201688,Samantha,Brooklyn,Williamsburg,40.71834,-73.95867,Entire home/apt,149,30,35,2019-05-17,0.83,1,0 +6540907,Sunny Bedroom near major stations,31298029,Cynthia,Brooklyn,Fort Greene,40.68626,-73.97138,Private room,80,2,124,2019-06-15,2.50,1,251 +6541214,Huge one bedroom apartment,7155183,Stephanie,Brooklyn,Crown Heights,40.67191,-73.95265,Entire home/apt,115,5,1,2015-08-23,0.02,1,0 +6541532,Amazing UWS /Central Park West Location,33975302,Kirsten,Manhattan,Upper West Side,40.79909,-73.9602,Private room,90,1,185,2019-07-07,3.71,1,60 +6542603,PRIVATE one Bedroom in Williamsburg,3057531,Jeffrey,Brooklyn,Williamsburg,40.71839,-73.94329,Entire home/apt,175,3,10,2019-01-05,0.20,1,0 +6542818,Luxury Apt on Central Park South,23116237,Kate,Manhattan,Midtown,40.76622,-73.97783,Entire home/apt,350,1,0,,,1,364 +6542929,Clean & Cozy East Village Home Steps From Park,6789992,L,Manhattan,East Village,40.72496,-73.98289,Entire home/apt,194,2,36,2016-11-16,0.74,1,0 +6543312,Lovely 1 BR duplex in prime Chelsea,18342421,Patty,Manhattan,Chelsea,40.73963,-73.99898,Entire home/apt,175,4,5,2017-01-05,0.10,1,0 +6543581,Dreamy Luxury Penthouse w/ Terrace,2436695,Jerome,Manhattan,Chelsea,40.74218,-73.99963,Entire home/apt,350,14,0,,,1,0 +6543852,Sunny Apt. in Historic Harlem Bldg.,2482106,Jennifer,Manhattan,Harlem,40.82553,-73.93875,Private room,63,1,6,2016-05-18,0.13,1,0 +6544347,Spend Summer in Park Slope,2232455,Zach,Brooklyn,Park Slope,40.67289,-73.97129,Entire home/apt,150,7,4,2018-08-06,0.08,1,94 +6544899,Beautiful Greenwich Village Apartment,34233009,Carol,Manhattan,West Village,40.73638,-74.00393,Entire home/apt,180,28,0,,,1,0 +6545310,"House of Music and Art, Small Happy ROom",3992566,Clay,Brooklyn,Bushwick,40.69918,-73.92886,Private room,64,2,32,2019-06-16,0.64,3,14 +6545519,Amazing Studio-Loft w/Outdoor Space,3174520,Peter,Manhattan,Greenwich Village,40.73399,-73.99305,Entire home/apt,185,2,52,2019-01-01,1.04,1,35 +6546016,Harlem luxury w/ great amenities!,10771238,Justin,Manhattan,Harlem,40.82589,-73.95094,Private room,80,2,126,2019-06-19,2.65,3,173 +6550596,Studio-Heart of Harlem****,34262042,Jodil H.,Manhattan,Harlem,40.81781,-73.9347,Entire home/apt,75,2,15,2018-12-19,0.32,1,0 +6553257,Royal Oxford,34272645,Jean,Staten Island,Tompkinsville,40.63489,-74.08592,Entire home/apt,105,3,69,2019-06-16,1.49,1,343 +6553559,"City view, Long Island City 1 BR",33945670,Eli,Queens,Long Island City,40.74876,-73.94507,Entire home/apt,130,1,137,2019-06-13,2.82,2,197 +6553874,"PERFECT 1 BR, Elevator, BEST Area!!",34276823,Mike,Manhattan,West Village,40.73626,-74.00181,Entire home/apt,264,2,5,2017-01-01,0.12,1,0 +6554833,Fun & Trendy Kid Friendly Family Home,33125778,Kt,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95466,Entire home/apt,215,3,5,2017-07-23,0.10,1,0 +6554879,Adorable room on the Upper East Side!,13262455,Bridget,Manhattan,Upper East Side,40.77323,-73.95567,Private room,85,20,2,2016-09-27,0.06,3,128 +6555262,Comfortable and Spacious Bedroom,14098887,Fareed,Queens,Ridgewood,40.70503,-73.91433,Private room,35,2,0,,,1,0 +6555427,"Inviting,sunny grdn 15 min to Manhattan",24597265,Freda,Queens,Ditmars Steinway,40.77209,-73.91096,Private room,50,6,11,2019-05-31,0.24,8,358 +6555586,A 2BR Oasis in Red Hook,34285520,Penny,Brooklyn,Red Hook,40.67811,-74.00606,Entire home/apt,145,7,2,2015-09-01,0.04,1,0 +6555997,"Sunny, Clean & Spacious in the LES",11513446,Erica,Manhattan,Lower East Side,40.71908,-73.99446,Entire home/apt,150,3,2,2016-01-01,0.04,1,0 +6556848,Bright and Airy Brooklyn Abode,9119676,Angeline,Brooklyn,Prospect Heights,40.6815,-73.97309,Entire home/apt,175,2,10,2015-12-28,0.20,1,0 +6557289,1 Room in a 2 Bedroom Available,7074531,Jonathan,Bronx,Longwood,40.82639,-73.90363,Private room,680,1,0,,,1,0 +6558125,Amazing apartment with great views,28305098,Bishal,Manhattan,Chelsea,40.74574,-73.99226,Entire home/apt,900,3,13,2016-01-20,0.26,1,24 +6558729,"Artist Loft In Bushwick, Brooklyn",12764940,Robert,Brooklyn,Williamsburg,40.70608,-73.93223,Private room,95,1,0,,,1,0 +6559453,Private Rm–Industrial Loft–Bushwick,34306160,Dan,Brooklyn,Williamsburg,40.70306,-73.93629,Private room,60,4,87,2019-06-27,1.75,1,96 +6559615,Brooklyn Zen Gem Spacious Bedroom,31675601,Sophie,Brooklyn,Bay Ridge,40.62487,-74.02949,Private room,70,30,54,2019-06-30,1.17,4,288 +6559926,"Sunny 1Bdr + 2 Big Sofabed, Clean!",26270573,Joe,Manhattan,Upper East Side,40.77205,-73.95339,Entire home/apt,240,5,82,2019-06-08,1.87,2,158 +6559985,big bright Bushwick loft 2 blocks from Jefferson L,3531344,Eleanor & Greg,Brooklyn,Bushwick,40.70755,-73.92277,Entire home/apt,150,3,16,2018-09-02,0.33,1,0 +6560055,Lovely uptown furnished 1 bedroom,34310803,Michel,Manhattan,Washington Heights,40.85509,-73.93744,Entire home/apt,150,30,0,,,1,0 +6560165,Large Upper West Side 1 bedroom,23311838,Adrianna,Manhattan,Upper West Side,40.7791,-73.98565,Entire home/apt,175,1,4,2016-06-11,0.08,1,0 +6560257,Luxury 1-Bedroom King Suite with Central Park View,836168,Henry,Manhattan,Upper West Side,40.79222,-73.96445,Entire home/apt,1000,30,27,2017-05-04,0.57,11,364 +6560459,"Chill, Sunny Room Bed-Stuy Bushwick",34313950,Bee,Brooklyn,Bedford-Stuyvesant,40.68584,-73.92294,Private room,48,1,0,,,1,0 +6561328,Artist Loft in Brooklyn,24860438,Stephanie,Brooklyn,Williamsburg,40.70313,-73.93566,Private room,42,8,1,2015-09-08,0.02,1,0 +6561509,"airy, earthy room in artistic apt",34322623,Elizabeth,Manhattan,Washington Heights,40.85133,-73.93844,Private room,80,2,18,2019-05-31,0.36,1,326 +6567114,Funky Studio Apartment,34345802,Gloria,Brooklyn,Crown Heights,40.67569,-73.95563,Entire home/apt,150,5,15,2018-06-12,0.34,1,342 +6568523,2 Bdrm in Luxury Condo on Hudson,33459378,Karen,Manhattan,Battery Park City,40.7101,-74.01721,Entire home/apt,195,7,2,2015-08-16,0.04,1,0 +6569350,Bright Brooklyn Bed-Stuy Apartment,22261783,Gregory,Brooklyn,Bedford-Stuyvesant,40.68258,-73.93893,Entire home/apt,145,3,130,2019-07-06,2.63,2,105 +6570517,Comfy Room Close the Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.8179,-73.9539,Private room,75,2,52,2017-03-08,1.04,3,0 +6570718,Spacious Railroad in LIC/Astoria,9630921,Vasilios,Queens,Long Island City,40.75628,-73.92072,Entire home/apt,85,7,0,,,1,0 +6571039,WoodyAllen FilmSet-Like Digs (Apt),1808103,Maria,Brooklyn,Williamsburg,40.70723,-73.95515,Entire home/apt,90,2,85,2019-06-09,1.99,2,4 +6571441,Brooklyn Brownstone Master Bedroom,31458100,Drew,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95307,Private room,53,2,11,2016-04-11,0.23,1,0 +6571890,1 bedroom-Manhattans East Village,34372907,Meagan,Manhattan,East Village,40.72872,-73.98639,Entire home/apt,155,2,36,2019-01-02,0.80,1,164 +6572344,WoodyAllen FilmSet-Like Digs (Room),1808103,Maria,Brooklyn,Williamsburg,40.70664,-73.95399,Private room,49,3,13,2017-07-24,0.26,2,181 +6572570,Charming Private Entrance — 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.677,-73.91677,Private room,78,3,108,2019-05-30,2.17,6,158 +6573055,"Charming, Quiet, Light-Filled Room",31234460,Arielle,Manhattan,East Village,40.72854,-73.98118,Private room,100,1,0,,,1,0 +6574353,Tranquil Garden Level Apartment,34386255,Nicholas,Brooklyn,Bedford-Stuyvesant,40.67922,-73.95383,Private room,85,1,0,,,1,0 +6574537,Bright & Spacious,34387513,Michael,Queens,Long Island City,40.7583,-73.9315,Private room,225,1,0,,,1,365 +6574595,Two Adjoined Rooms Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71329,-73.96232,Private room,199,1,2,2018-01-04,0.06,3,346 +6575471,NYC 2 Bedroom,33247865,Anthony,Manhattan,Greenwich Village,40.72911,-73.99915,Entire home/apt,350,2,34,2017-01-01,0.74,1,0 +6576327,"manhattan uptown 2/b, excellent for big family",33680030,Ruby,Manhattan,Harlem,40.82033,-73.95632,Entire home/apt,120,1,3,2015-07-28,0.06,1,0 +6576336,Large Private Studio Newly Renevated,34397256,Nanda,Queens,Ozone Park,40.6904,-73.83727,Private room,70,2,114,2019-06-28,2.47,1,310 +6581248,Upper West Side Spacious Home,34426902,Susan,Manhattan,Upper West Side,40.8017,-73.96991,Entire home/apt,250,15,0,,,1,39 +6582117,Cozy Private Bdrm/Bthrm in Midtown,23607132,Rebecca,Manhattan,Midtown,40.76539,-73.97897,Private room,180,2,62,2019-05-25,1.34,1,261 +6582467,Entire 1 Bedroom Apt,2566034,Megan,Brooklyn,Park Slope,40.67326,-73.98077,Entire home/apt,145,7,1,2015-07-01,0.02,1,8 +6584448,Perfect with or w/out kids!,3450556,Ahna,Manhattan,Inwood,40.86719,-73.92679,Entire home/apt,130,2,0,,,1,0 +6585028,ROOFTOP TERRACE ROOM @ ELEGANT HOME NEAR JFK,19866189,Natasha,Queens,Arverne,40.58977,-73.79498,Private room,149,1,56,2019-07-06,1.14,5,361 +6585852,1 bedroom close to Central Park,1263574,Lauren,Manhattan,Upper West Side,40.80133,-73.96574,Private room,60,4,5,2015-07-22,0.10,1,0 +6586663,Studio in the LES,34453577,Chris,Manhattan,Lower East Side,40.72101,-73.98905,Entire home/apt,140,4,119,2019-05-27,2.43,1,29 +6588947,Sunny Prospect Park 2 Bedroom,19233353,Kallie,Brooklyn,Prospect-Lefferts Gardens,40.65599,-73.95746,Private room,60,3,0,,,2,0 +6589412,Beautiful Park Slope Brownstone,34748949,Julienne,Brooklyn,Park Slope,40.67533,-73.9793,Entire home/apt,350,7,0,,,1,0 +6590549,Luxury 1bdrm w/ private terrace,6495511,Kari,Brooklyn,Williamsburg,40.71214,-73.95111,Entire home/apt,175,3,5,2016-08-15,0.10,1,0 +6590569,Private bedroom in Chelsea,20113500,Clement,Manhattan,Chelsea,40.74465,-73.9955,Private room,110,3,2,2015-09-06,0.04,1,0 +6590570,Harlem Treasure,9777215,Theresa,Manhattan,Harlem,40.81346,-73.94458,Entire home/apt,177,3,122,2019-06-20,2.49,3,199 +6594861,Park Slope Brownstone Duplex (unfurnished),34501360,Eric,Brooklyn,Park Slope,40.6746,-73.97901,Entire home/apt,275,30,12,2017-09-03,0.25,1,70 +6595943,Cozy 1 bedroom in a quiet neighborh,34113764,Nick,Queens,Ditmars Steinway,40.76962,-73.89604,Entire home/apt,99,1,49,2018-09-03,0.99,2,0 +6596747,Bedroom in FABULOUS W. Village Apt!,4654046,Kate,Manhattan,West Village,40.73086,-74.00507,Private room,105,2,111,2019-07-04,2.31,1,92 +6596927,"Lambe’s Vacation Rentals- Maspeth, Queens",8934751,Mike,Queens,Maspeth,40.72721,-73.89346,Entire home/apt,200,4,1,2019-05-23,0.64,2,129 +6597854,Charming Spacious Harlem Share,5280006,Jennifer,Manhattan,Harlem,40.82606,-73.95075,Private room,58,3,27,2016-12-10,0.54,1,0 +6598334,Upper West Side Manhattan,13106591,Valentino,Manhattan,Upper West Side,40.80157,-73.96635,Private room,100,9,3,2016-01-02,0.06,1,0 +6598376,Spacious Room in Adorable Apartment,8838164,Mia,Brooklyn,Bedford-Stuyvesant,40.69224,-73.95865,Private room,45,14,0,,,1,0 +6598624,"Private Bed, Bath & Patio in prime Williamsburg !",17382149,Rosie,Brooklyn,Williamsburg,40.71684,-73.95907,Private room,110,1,48,2018-12-27,2.17,1,0 +6599302,"An ENTIRE, Lovely NYC Apartment",15386409,Mateo,Manhattan,Harlem,40.82879,-73.93821,Entire home/apt,80,3,3,2017-08-15,0.06,1,0 +6599689,Beautiful room upper manhttn.,34475475,Richard,Manhattan,Washington Heights,40.85131,-73.94059,Private room,75,1,0,,,1,0 +6599950,studio : chelsea/west villlage,1651102,Lauren,Manhattan,West Village,40.73752,-74.00113,Entire home/apt,700,1,0,,,1,0 +6601120,Entire place in Williamsburg. Rustic Den.,34534668,Gohe,Brooklyn,Williamsburg,40.71297,-73.96409,Entire home/apt,165,2,5,2018-04-29,0.27,1,0 +6601194,Modern prime location in Williamsburg,7155363,Lauren,Brooklyn,Williamsburg,40.71198,-73.96114,Private room,80,2,12,2019-05-19,0.38,1,356 +6601284,Gorgeous Garden Apartment in Park Slope,1021060,Marc,Brooklyn,South Slope,40.66564,-73.98465,Entire home/apt,145,3,133,2019-07-07,3.69,1,277 +6601606,Large Lower East Side Room with a View,6864230,Danica,Manhattan,Lower East Side,40.71343,-73.98826,Private room,125,1,0,,,1,0 +6601683,Sunny lrg 1 BR in Chilled Bushwick,5226684,Kate,Brooklyn,Bushwick,40.70338,-73.91374,Private room,45,1,2,2015-08-07,0.04,1,0 +6603534,Private Small Grey Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.93473,Private room,30,1,107,2019-06-15,2.18,5,345 +6603756,Amazing Bright bedroom in Harlem,22222260,Simone,Manhattan,Harlem,40.81894,-73.93871,Private room,81,4,20,2019-04-26,0.41,2,334 +6607833,Amazing & Safe Brooklyn Location,570850,Yovel,Brooklyn,Midwood,40.61814,-73.97078,Entire home/apt,49,4,5,2019-07-04,0.20,1,179 +6608246,Duplex Suite Sleeps 8,26415767,Christopher,Brooklyn,Sunset Park,40.6655,-73.99501,Entire home/apt,225,3,52,2019-06-25,1.12,1,297 +6608666,Lively Rm w/Private Entrance & Bath,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92827,Private room,70,2,131,2019-06-24,2.63,3,255 +6609293,Spacious brownstone apt in Park Sl,26228337,Jon,Brooklyn,Park Slope,40.6801,-73.97918,Entire home/apt,120,7,20,2018-05-18,0.43,1,0 +6609871,COMFORTABLE NYC RETREAT,6375533,LaNola,Manhattan,East Harlem,40.78828,-73.9484,Entire home/apt,175,1,70,2019-06-27,1.62,2,123 +6610244,Sunny Jewel In Historic Harlem,7701992,Grace,Manhattan,Harlem,40.82536,-73.94383,Entire home/apt,130,1,0,,,1,0 +6610516,Bright and Sunny 2 Bedroom,5753744,Rindon,Brooklyn,Prospect-Lefferts Gardens,40.66058,-73.95825,Entire home/apt,130,4,2,2015-08-21,0.04,2,0 +6610629,Art Gallery in Harlem,23152983,Nicholas,Manhattan,Washington Heights,40.83206,-73.94261,Entire home/apt,150,4,11,2019-07-03,0.24,1,319 +6611547,Private Park Slope Brooklyn Hideaway,34595916,Andrew,Brooklyn,South Slope,40.66934,-73.98793,Entire home/apt,95,5,161,2019-07-01,3.22,3,207 +6611557,GC Bushwick First Floor 4 Bedroom,21823,Greg,Brooklyn,Bushwick,40.68781,-73.91421,Entire home/apt,300,3,18,2019-06-05,0.45,3,217 +6611592,Modern luxury apartment - easy subway to Manhattan,4124666,Rafik,Queens,Ditmars Steinway,40.7724,-73.90474,Entire home/apt,180,1,145,2019-07-04,3.55,1,33 +6611652,Garden Commons Bushwick 5 Bedroom,21823,Greg,Brooklyn,Bushwick,40.68779,-73.91407,Entire home/apt,375,3,46,2019-06-20,1.07,3,217 +6611774,Bright Bedroom in Park Slope,3183567,Ale,Brooklyn,Park Slope,40.6777,-73.98106,Private room,75,2,0,,,1,0 +6612664,Great BedRoom in Hell's Kitchen,1797304,Marg,Manhattan,Hell's Kitchen,40.7617,-73.99244,Private room,75,5,53,2019-06-26,1.34,1,239 +6612737,Furnished Bedroom in Murray Hill,28181993,Anshul,Manhattan,Kips Bay,40.73909,-73.9788,Private room,70,15,0,,,1,0 +6612744,Sunny&Stylish 1BR★Terrace★Doorman,24261066,Lisa,Manhattan,Lower East Side,40.71966,-73.99236,Entire home/apt,300,2,5,2016-01-03,0.10,1,0 +6612941,1 Bedroom Apt. Sunnyside Queens!,33976673,Jake,Queens,Sunnyside,40.74137,-73.9234,Private room,60,7,11,2015-09-29,0.22,1,0 +6613106,Private Room/Single Bed,10014644,Myrta,Brooklyn,Park Slope,40.66775,-73.98151,Private room,60,3,18,2019-05-24,0.36,2,0 +6613154,Duplex Bedroom w/Private Rooftop,33782884,Kate,Brooklyn,Gowanus,40.67711,-73.99577,Private room,158,2,3,2015-07-06,0.06,2,0 +6613354,CHARMING ONE BEDROOM APT IN LES/CHINATOWN,34608427,Aixa,Manhattan,Lower East Side,40.71855,-73.9895,Entire home/apt,184,4,11,2019-06-08,1.20,1,273 +6614604,"Nice, cozy double size bedroom",6492234,Martin,Manhattan,Washington Heights,40.83721,-73.93894,Private room,50,4,0,,,1,0 +6619100,Cozy studio in the heart of Chelsea,34642925,Anastasia,Manhattan,Chelsea,40.74327,-73.99807,Entire home/apt,230,2,1,2015-06-07,0.02,1,0 +6619187,Stylish NYC Art Loft,34643568,Dave,Manhattan,East Harlem,40.79229,-73.93954,Private room,95,3,24,2019-07-02,0.49,6,334 +6619589,PRIVATE MODERN ENTIRE APT FOR YOU,4265630,Nowme And Ra,Brooklyn,Flatbush,40.64683,-73.95429,Entire home/apt,110,3,58,2019-06-24,1.18,2,205 +6619797,Sunny Apartment near Columbia & beautiful parks!,4769812,Georgina,Manhattan,Harlem,40.81287,-73.95186,Entire home/apt,120,10,7,2019-03-29,0.19,1,8 +6619984,Charming Home in Brooklyn Townhouse,263882,Eva Maria,Brooklyn,Bedford-Stuyvesant,40.68023,-73.91047,Entire home/apt,189,2,92,2019-06-30,1.95,2,239 +6620407,Cozy one bedroom in bushwick!,31880074,Rachel,Brooklyn,Bedford-Stuyvesant,40.69666,-73.93548,Entire home/apt,98,10,7,2016-01-06,0.14,1,0 +6620911,Gramercy Studio w/ Private Garden,2128805,Lola,Manhattan,Gramercy,40.73391,-73.98552,Entire home/apt,150,3,12,2019-06-10,0.24,1,38 +6622389,Bright and Spacious in Trendy Area,5025809,Sarah,Brooklyn,Crown Heights,40.6737,-73.95913,Entire home/apt,100,1,1,2015-07-06,0.02,1,0 +6625406,1 Bedroom in Williamsburg!,23527094,Ginevra,Brooklyn,Williamsburg,40.71187,-73.96342,Private room,85,1,11,2019-01-23,0.33,1,154 +6626581,Cute East Village 2BR,27077862,Alex,Manhattan,East Village,40.72699,-73.98694,Entire home/apt,200,1,0,,,1,0 +6626894,Beautiful 2BR on Riverside Park,13500220,Jim,Manhattan,Upper West Side,40.78283,-73.98396,Entire home/apt,450,3,1,2015-08-02,0.02,1,0 +6627016,Spacious 1BR in Prime Williamsburg,263614,Justin,Brooklyn,Williamsburg,40.71932,-73.95446,Entire home/apt,250,3,1,2015-06-25,0.02,1,0 +6627254,Private room - Perfect location!,10899109,Dave & Nat,Brooklyn,South Slope,40.66526,-73.98449,Private room,100,2,1,2015-06-26,0.02,1,0 +6627553,MODERN LOFT 3 STOPS TO MANHATTAN!!,16941743,Ernesto,Queens,Astoria,40.76482,-73.92514,Private room,40,2,36,2017-09-16,0.73,1,0 +6627650,Private Bedroom in Spanish Harlem,34690679,Kay,Manhattan,East Harlem,40.79601,-73.93454,Private room,50,2,0,,,1,0 +6627668,Central Park North - 15min de T SQ,27462282,Quentin,Manhattan,Harlem,40.80133,-73.95251,Private room,80,1,0,,,1,0 +6627752,"Cosy Apt. in Brooklyn, near subway",25599307,Julia,Brooklyn,Flatbush,40.63915,-73.95451,Entire home/apt,90,6,33,2017-05-31,0.69,1,0 +6627931,Spacious 2 Bedroom + Backyard in Fort Greene BK,33722691,Danny And June,Brooklyn,Clinton Hill,40.69374,-73.96727,Entire home/apt,150,4,2,2019-04-24,0.06,2,22 +6628117,Cozy room in heart of Williamsburg,24839107,Brittany,Brooklyn,Williamsburg,40.71681,-73.96141,Private room,80,1,7,2015-11-02,0.14,1,0 +6628193,Private Bedroom near Central Park,3274213,Levi & Kaz,Manhattan,Upper West Side,40.78602,-73.97729,Private room,89,2,133,2019-07-01,2.80,1,155 +6628493,Large Williamsburg (Brooklyn) Room,20587549,Nick,Brooklyn,Williamsburg,40.70784,-73.94698,Private room,90,2,15,2019-06-30,0.41,1,188 +6631351,Beautiful Brooklyn brownstone with lots of light,34712280,Helen,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95832,Entire home/apt,91,2,16,2019-07-07,1.70,1,10 +6633613,Cozy Room in a Luxury Apartment,22058409,Abigail,Manhattan,Financial District,40.7061,-74.0157,Private room,85,1,2,2016-11-26,0.05,2,0 +6635179,Home in Lower East Side,3173147,Andrea,Manhattan,Lower East Side,40.71968,-73.98708,Entire home/apt,250,3,68,2019-06-08,1.36,2,166 +6635985,New Bedroom for ONE (1) Professional.,34720872,Carlos,Queens,Long Island City,40.75529,-73.92961,Private room,50,1,4,2019-06-15,1.62,1,107 +6636389,perfect west village location!,27439632,Brian,Manhattan,West Village,40.73204,-74.00399,Entire home/apt,160,4,0,,,1,0 +6636906,Romain's home,3858150,Romain,Manhattan,Morningside Heights,40.81165,-73.95639,Private room,60,9,7,2017-08-15,0.15,1,0 +6636968,1 BR and a sleeper sofa,34738375,Robert,Brooklyn,Prospect-Lefferts Gardens,40.66205,-73.96301,Entire home/apt,150,5,12,2018-01-04,0.34,1,0 +6636993,Room available in Williamsburg,20123174,Brian,Brooklyn,Williamsburg,40.71178,-73.94617,Private room,90,1,0,,,1,0 +6637311,Spacious Contemporary NoMad Loft,34740215,Previn,Manhattan,Midtown,40.74801,-73.98817,Entire home/apt,225,3,11,2016-05-16,0.23,1,0 +6638042,City convenience--country calm,5609081,Jonathan,Queens,Richmond Hill,40.70054,-73.83781,Entire home/apt,290,4,13,2018-11-20,0.28,1,277 +6638377,Lightfilled studio in Brooklyn,31889552,Chris,Brooklyn,Fort Greene,40.68711,-73.9747,Entire home/apt,95,3,1,2015-07-27,0.02,1,0 +6638446,"Modern, Spacious 2BR Apartment",23032146,Florian,Manhattan,Washington Heights,40.84239,-73.93574,Entire home/apt,139,4,3,2016-09-27,0.07,1,0 +6638539,Spacious family House in Old Neighborhood,562114,Sveva,Brooklyn,Bay Ridge,40.63314,-74.02896,Entire home/apt,295,5,4,2019-04-27,0.13,1,19 +6639120,King Bed in Trendy Lower East Side,240740,Ariel,Manhattan,Lower East Side,40.7192,-73.99139,Private room,140,1,221,2019-06-18,4.59,1,187 +6642187,Sunny & Modern 1 Bedroom with Amazing view of NY,2536417,Anna,Manhattan,Upper East Side,40.76555,-73.95791,Entire home/apt,399,3,38,2019-07-01,0.77,1,311 +6643716,Private room in Nolita PH,2329581,Michael,Manhattan,Nolita,40.72299,-73.99344,Private room,100,7,11,2017-10-24,0.22,2,0 +6644449,Sunny 1BR Private Room in Williamsburg,15537676,Alex,Brooklyn,Williamsburg,40.71082,-73.94276,Private room,80,10,1,2015-10-11,0.02,1,0 +6644669,1 bedroom Upper West Side apartment,34779392,Joseph,Manhattan,Upper West Side,40.77689,-73.98103,Entire home/apt,135,5,8,2019-05-18,0.16,1,0 +6645224,6 bedroom apt on Union Square,34782697,Alexander,Manhattan,Chelsea,40.73783,-73.99383,Private room,100,21,0,,,1,0 +6645263,Brooklyn at its finest,351650,Nick,Brooklyn,Williamsburg,40.71084,-73.96557,Entire home/apt,175,3,2,2016-07-06,0.05,1,0 +6645963,Sunny private room in Spanish Harlem art house,24260658,Kristy,Manhattan,East Harlem,40.79478,-73.93416,Private room,70,2,32,2019-06-24,0.64,5,63 +6646009,Loft Space in South Williamsburg!,4580943,Brian,Brooklyn,Williamsburg,40.70569,-73.95329,Private room,50,1,1,2015-06-12,0.02,1,0 +6646365,Lovely Brooklyn Room With Balcony,23582893,Laramie,Brooklyn,Bushwick,40.69038,-73.91462,Private room,52,18,24,2019-05-08,0.49,8,76 +6647114,COZY CORNER GREENWICH VILLAGE,3579116,Kristin,Manhattan,West Village,40.73267,-74.00379,Private room,140,3,64,2019-06-20,1.29,2,5 +6649555,Amazing 1BR - heart of West Village,20700509,Gunnar,Manhattan,West Village,40.73592,-74.00492,Entire home/apt,169,4,11,2016-03-19,0.22,1,0 +6650704,"Beautiful, Comfortable Park Slope Home",18081869,Francesca,Brooklyn,South Slope,40.66561,-73.98843,Entire home/apt,173,3,1,2015-07-27,0.02,1,0 +6651156,Brooklyn Heights Dream Apt w/ Private Deck & Views,34813492,Susan,Brooklyn,Boerum Hill,40.68932,-73.99082,Entire home/apt,169,2,49,2019-06-26,1.00,1,4 +6652170,Bunk Bed room share in Bklyn near Brooklyn College,17927814,Malisa,Brooklyn,Flatlands,40.62787,-73.94276,Shared room,27,5,0,,,1,0 +6652353,Bienvenue à NY - 2BDM with a view,7106617,Nacer,Manhattan,Upper West Side,40.79828,-73.97231,Entire home/apt,150,5,6,2016-08-30,0.12,1,0 +6652755,The Art Loft! Spacious and Bright!,16718896,Kim,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96029,Entire home/apt,145,5,25,2018-01-02,0.51,1,0 +6653095,Come to Know New York III,25812962,Claudio & Rose,Manhattan,East Harlem,40.79052,-73.94364,Private room,70,1,33,2019-05-11,1.28,3,313 +6654081,4-BR Townhouse on Quiet Brooklyn Block,2979971,Anna,Brooklyn,Prospect-Lefferts Gardens,40.66016,-73.95382,Entire home/apt,205,3,1,2019-01-06,0.16,1,0 +6654202,Great One bedroom in Midtown East,34824417,Kate,Manhattan,Murray Hill,40.74522,-73.97505,Entire home/apt,145,5,18,2019-06-01,0.38,1,179 +6654304,"Charming, Cozy & spacious bedroom in Brooklyn",34828488,Pauline,Brooklyn,Canarsie,40.64372,-73.90361,Private room,88,2,12,2019-06-28,0.26,1,180 +6654323,Sunny Deck and Private Garden,16437254,Benjamin,Brooklyn,Fort Greene,40.6882,-73.97719,Entire home/apt,179,30,0,,,21,0 +6654984,Beautiful apartment in trendy Brooklyn,5417600,Elvira,Brooklyn,Park Slope,40.67376,-73.98397,Entire home/apt,200,365,4,2018-06-16,0.14,1,173 +6655786,"Sunny, modern 1 bedroom condo",7088466,Carly,Brooklyn,Prospect Heights,40.67904,-73.967,Entire home/apt,165,2,13,2016-07-04,0.27,1,0 +6656441,Beautiful Room in Clinton Hill,1418498,Meryl,Brooklyn,Clinton Hill,40.68402,-73.96637,Private room,89,4,0,,,1,0 +6656567,Modern Room in Huge Apartament in Manhattan,33622924,Besinfe,Manhattan,Harlem,40.83155,-73.94804,Private room,85,1,52,2019-06-19,1.39,4,355 +6657134,"Spacious 2BR/2BA, Great Location!",1131394,Jeremy,Manhattan,Upper East Side,40.78071,-73.95309,Entire home/apt,240,5,4,2019-02-23,0.09,1,0 +6657454,Spacious & sunny in Clinton Hill :),6913285,Marc,Brooklyn,Bedford-Stuyvesant,40.69154,-73.95544,Entire home/apt,95,5,4,2016-06-03,0.08,1,0 +6658870,"Modern, Cute Room in The Heart of Williamsburg",30858029,Becca,Brooklyn,Williamsburg,40.71018,-73.94988,Private room,99,1,0,,,1,0 +6659165,Room available in BUSHWICK!,12720552,Julie,Brooklyn,Bushwick,40.70168,-73.92845,Private room,70,1,20,2019-05-27,0.42,5,332 +6659371,Cute Mid-Century Bushwick sleeps 3!,192349,Peter,Brooklyn,Bushwick,40.70323,-73.92836,Entire home/apt,99,1,3,2015-09-09,0.06,1,0 +6660046,Bespoke Williamsburg Row House,1761447,Marc,Brooklyn,Williamsburg,40.7123,-73.95401,Entire home/apt,177,3,78,2019-06-03,1.68,2,177 +6660117,Cosi 2 Beds East Village- 2 months Minimum,2196224,Sally,Manhattan,East Village,40.73082,-73.98182,Entire home/apt,120,30,0,,,4,213 +6660330,Charming West Village 2.5bd Apt,1586060,Tom,Manhattan,West Village,40.73608,-74.00039,Entire home/apt,300,1,7,2016-03-26,0.14,1,0 +6660373,Come to Know New York II,25812962,Claudio & Rose,Manhattan,East Harlem,40.79131,-73.94344,Private room,40,1,62,2019-07-05,1.35,3,257 +6660511,Highly Desired LOCATION East V. NYC,34861715,Diana,Manhattan,East Village,40.72639,-73.98875,Entire home/apt,280,2,29,2019-01-01,0.59,1,0 +6660518,NY Queens Penthouse Share = 1BR aka Brooklyn Room,34861728,Iris,Queens,Kew Gardens,40.70945,-73.83132,Private room,59,9,12,2019-05-31,0.26,4,318 +6660816,Light Filled Apartment on Tree-Lined Street,1546620,Alison,Brooklyn,Bedford-Stuyvesant,40.68657,-73.94072,Entire home/apt,100,3,1,2016-10-06,0.03,1,0 +6661923,"Hell´s Kitchen, cozy functional 2br",15008796,Admir,Manhattan,Hell's Kitchen,40.7611,-73.99316,Entire home/apt,150,4,1,2015-07-05,0.02,1,0 +6662112,Charming Manhattan 2 Bedroom,29212339,Linda,Manhattan,Harlem,40.79982,-73.95405,Entire home/apt,140,1,52,2019-05-28,1.05,1,222 +6662241,NYC Brownstone Duplex With Backyard in Chelsea.,30208406,Yaron,Manhattan,Chelsea,40.73857,-73.99787,Entire home/apt,400,1,4,2017-12-31,0.08,1,0 +6662422,"Modern Park Slope Family 2 BR, 2 BA",34873920,Joedan,Brooklyn,Park Slope,40.68018,-73.97557,Entire home/apt,250,6,0,,,1,0 +6662487,Beautiful & Private Manhattan Room,34874378,Jessica,Manhattan,Harlem,40.82398,-73.94846,Private room,75,1,59,2017-09-15,1.19,2,0 +6662511,Beautiful and sunny,6984488,Jessica,Brooklyn,Prospect Heights,40.67679,-73.96502,Entire home/apt,175,4,34,2019-06-30,0.79,2,286 +6662967,Very comfortable room,34876980,Alfredo,Manhattan,Harlem,40.80132,-73.9547,Private room,85,1,19,2019-06-27,0.39,1,365 +6669443,Bedroom with Empire St Bldg View!,8816218,Alexa,Brooklyn,Williamsburg,40.71162,-73.94551,Private room,125,1,0,,,1,0 +6670191,"Size, Splendor & High Ceilings",16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68356,-73.95851,Entire home/apt,179,30,0,,,21,274 +6671082,Cozy East Village Getaway,1287185,Michelle,Manhattan,East Village,40.72865,-73.98023,Entire home/apt,150,35,7,2016-01-02,0.14,1,304 +6672758,Cool Large 3 bedrooms in the heart of East village,2196224,Sally,Manhattan,East Village,40.73037,-73.98158,Entire home/apt,197,30,1,2018-03-10,0.06,4,191 +6672812,Cozy room in light-filled apartment,1549512,Ilene,Brooklyn,Clinton Hill,40.68385,-73.96748,Private room,68,7,0,,,2,0 +6673630,Stylish L.E.S Studio,6591262,Natasha,Manhattan,Lower East Side,40.71661,-73.98916,Entire home/apt,150,3,1,2015-08-01,0.02,1,0 +6673638,A clean private room in Brooklyn,19600872,Pianpian Carolyn,Brooklyn,Gravesend,40.6046,-73.97772,Private room,69,1,0,,,1,0 +6674155,Upper East Side Alcove Studio,1208337,Sandra,Manhattan,Upper East Side,40.76832,-73.96118,Entire home/apt,200,1,4,2016-01-31,0.08,1,0 +6674342,NYC Hell's Kitchen/Midtown West 1BR,5143511,Danyel,Manhattan,Hell's Kitchen,40.76127,-73.99161,Entire home/apt,125,3,0,,,1,0 +6674363,"New Building, Best Location in NYC",6725667,Megan,Manhattan,Chelsea,40.73969,-73.99447,Private room,130,3,11,2019-05-11,0.23,1,106 +6674482,Private Bedroom in East Harlem,34933217,Emilie,Manhattan,East Harlem,40.79435,-73.94071,Private room,97,1,0,,,1,0 +6676250,Comfortable bed in a great room!,12720552,Julie,Brooklyn,Bushwick,40.70161,-73.92919,Shared room,50,1,9,2019-05-05,0.19,5,365 +6676383,2 Bedroom apartment in Brooklyn,34943122,Hadrien,Brooklyn,Bedford-Stuyvesant,40.68566,-73.95808,Entire home/apt,175,1,5,2017-12-29,0.10,2,0 +6677647,Large private room / Williamsberg,34950721,Samuel,Brooklyn,Williamsburg,40.70621,-73.94903,Private room,100,1,1,2015-06-15,0.02,2,0 +6678082,Newly renovated amazing 2 bedrooms,34371968,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68207,-73.93279,Entire home/apt,150,4,70,2019-06-26,1.54,1,293 +6678277,Charming Grand Central Two Bedroom Apartment (4R),34954047,Heather,Manhattan,Murray Hill,40.74912,-73.98007,Entire home/apt,145,30,2,2016-05-11,0.05,1,189 +6678351,Spacious Private Bedroom+Bathroom !,7577024,Daphne,Manhattan,Harlem,40.82875,-73.94574,Private room,100,1,0,,,1,0 +6679063,Luxury Apt near Time Square,7409073,Leiya,Manhattan,Hell's Kitchen,40.75885,-73.99584,Private room,130,7,2,2015-11-07,0.04,1,0 +6680201,NYC Crash Pad,30839692,Stavros,Queens,Flushing,40.75394,-73.80538,Private room,45,2,186,2019-06-26,3.74,3,170 +6684189,PRETTY CLINTON HILL BROWNSTONE!,4028339,Nadine,Brooklyn,Clinton Hill,40.68542,-73.96103,Entire home/apt,600,4,28,2019-06-23,0.58,1,295 +6684697,"Modern Williamsburg apt w/Gym, Roof",315082,Nicholas,Brooklyn,Williamsburg,40.70877,-73.94889,Entire home/apt,125,3,20,2017-05-07,0.40,1,0 +6685873,Sunny & Quiet Luxury NYC Oasis,1030526,Elizabeth,Brooklyn,Fort Greene,40.69023,-73.98086,Entire home/apt,95,2,0,,,1,0 +6686140,1 bedroom apartment in Nolita,6743604,Lauren,Manhattan,Nolita,40.72227,-73.99526,Entire home/apt,130,1,13,2016-10-09,0.26,1,0 +6686165,Astoria Room,34995566,Alexa,Queens,Long Island City,40.76177,-73.92627,Private room,44,28,14,2019-04-20,0.39,1,275 +6686332,Modern/Sunny Apt Close to Train!,30340506,Alyson,Brooklyn,Bushwick,40.69207,-73.92312,Entire home/apt,190,1,0,,,1,0 +6687933,"Clean, Trendy, Private Room in LES",35000945,Jacqueline,Manhattan,Lower East Side,40.71748,-73.98364,Private room,60,1,0,,,1,0 +6688119,Cozy Apartement,35005938,Carole,Brooklyn,South Slope,40.66136,-73.98437,Entire home/apt,199,1,1,2015-06-06,0.02,1,0 +6688617,"Quiet, Spacious, Safe Studio in BK",35008385,Abe,Brooklyn,Williamsburg,40.71366,-73.94021,Entire home/apt,49,7,1,2015-06-09,0.02,1,0 +6688780,"Private Room at ""The Boat House""",11199830,Meagan,Manhattan,Marble Hill,40.87495,-73.90982,Private room,45,2,1,2015-11-09,0.02,1,0 +6689548,Cozy apartment in Nolita/SoHo,4271676,Nat,Manhattan,Nolita,40.72287,-73.99593,Entire home/apt,265,2,90,2019-06-22,1.95,3,11 +6690696,Sunny Prewar 2BR/2BA in Fort Greene,3131306,Alissa,Brooklyn,Clinton Hill,40.68623,-73.96755,Entire home/apt,220,30,1,2015-08-09,0.02,1,0 +6691625,Elegant private room in beautiful apartment,2135117,Susan,Brooklyn,Windsor Terrace,40.65766,-73.97927,Private room,52,2,53,2019-07-07,2.87,1,55 +6691723,Bright Cozy Lux 1BR w/Balcony,35025150,Chris,Brooklyn,Williamsburg,40.72006,-73.95694,Entire home/apt,180,2,6,2019-01-02,0.14,1,0 +6692213,Well Furnished Upper East Side Studio,6847312,David & Derek,Manhattan,Upper East Side,40.78165,-73.94825,Entire home/apt,127,2,30,2019-03-17,0.62,1,0 +6692573,Sunny 1BR in hip East Village,35030648,Corey,Manhattan,East Village,40.72354,-73.9819,Private room,108,2,17,2016-08-01,0.35,1,0 +6692574,Cozy 1br apt in center flushing,22727131,Iris,Queens,Flushing,40.75529,-73.83043,Entire home/apt,150,7,1,2015-11-01,0.02,1,0 +6692633,"Stylish, family-friendly house, Prospect Heights",481921,Sean,Brooklyn,Prospect Heights,40.67604,-73.96875,Entire home/apt,440,4,23,2019-06-23,0.47,1,7 +6692975,Cozy room in Chelsea,29417590,Alice,Manhattan,Chelsea,40.7465,-73.991,Private room,100,1,2,2015-08-24,0.04,1,0 +6693052,Kid-friendly house with parking/back patio,398440,Marla,Brooklyn,Bedford-Stuyvesant,40.6913,-73.92934,Entire home/apt,200,3,4,2019-03-25,0.53,1,14 +6693403,PERFECT FOR A SMALL GET AWAY.,10717539,Eddie,Brooklyn,Flatbush,40.63485,-73.96208,Entire home/apt,175,1,0,,,1,0 +6693612,Beautiful One Bedroom Apartment (Midtown) NYC,4316973,Alberto,Manhattan,Hell's Kitchen,40.75335,-73.99525,Entire home/apt,180,3,2,2019-05-19,0.76,1,2 +6698963,Artist's Apt in Downtown Manhattan,12432650,Yazmany,Manhattan,Chinatown,40.7142,-73.99119,Entire home/apt,250,5,14,2018-12-29,0.45,1,5 +6699725,Quiet room around corner fr. Subway,34914311,Sandrine,Bronx,Longwood,40.8198,-73.90341,Private room,99,1,0,,,1,0 +6699912,Good size room in large 3 bedroom,35070587,Tim,Brooklyn,Sunset Park,40.65972,-73.9937,Private room,75,7,0,,,1,0 +6700860,"Family Friendly, Brooklyn, NYC 2br",35075473,Amanda,Brooklyn,Carroll Gardens,40.67885,-74.00027,Entire home/apt,150,5,5,2016-08-28,0.10,1,0 +6701706,"Large Light Room for Female, Cat Friendly",13953653,Liora,Queens,Sunnyside,40.74573,-73.92261,Private room,49,6,15,2017-12-08,0.30,1,128 +6702693,"Designer Fifth Ave 4BR 5Ba 6,000sf Modern Loft",8730,Allison,Manhattan,Chelsea,40.73692,-73.99219,Entire home/apt,1495,1,11,2016-11-16,0.22,1,0 +6703091,Charming East Village Apartment,35087743,Joshua,Manhattan,East Village,40.72132,-73.98263,Entire home/apt,100,5,0,,,1,0 +6703106,"Cozy 1BR in Williamsburg, Brooklyn",34841020,Tara,Brooklyn,Williamsburg,40.71056,-73.94906,Private room,110,1,1,2015-06-18,0.02,1,0 +6704000,Sunny Room in Astoria NYC!,34578795,Ryan,Queens,Astoria,40.75929,-73.9173,Private room,45,10,1,2015-08-14,0.02,1,0 +6705158,Luxury Central Park North Apartment,35100060,Jessica,Manhattan,Harlem,40.80144,-73.95193,Entire home/apt,399,4,15,2019-04-29,0.31,2,5 +6705558,Spacious Bright Room in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71506,-73.96182,Private room,103,2,1,2017-02-15,0.03,3,0 +6705604,Beautiful Private Bedroom in NY,35103293,Maria,Bronx,Norwood,40.87225,-73.88748,Private room,33,7,40,2018-11-27,0.82,1,0 +6705606,Your NYC spot,35103206,Anthony And Laura,Queens,Rego Park,40.7262,-73.8672,Entire home/apt,86,3,3,2017-08-29,0.09,1,0 +6706074,Beautiful neighborhood,25071191,Khamis,Queens,Ditmars Steinway,40.78112,-73.91079,Entire home/apt,110,5,5,2018-09-10,0.10,1,0 +6706494,2 BR Apt w/ patio close to the L,2466294,Ian,Brooklyn,Bushwick,40.70264,-73.91702,Entire home/apt,160,2,3,2015-11-13,0.06,2,359 +6706703,"Cheap, basic room",8556751,Adam,Queens,Ditmars Steinway,40.77583,-73.9131,Private room,50,3,0,,,1,0 +6709867,Large Private Room in prime BK,11039369,Mike,Brooklyn,Fort Greene,40.68881,-73.97391,Private room,55,1,1,2016-03-24,0.02,1,0 +6711306,Brownstone in Heart Of Park Slope!,14946552,Nathan,Brooklyn,Park Slope,40.66866,-73.98214,Private room,100,14,0,,,1,0 +6712530,⭐️Harlem getaway w/ great amenities,10771238,Justin,Manhattan,Harlem,40.82608,-73.9525,Private room,80,2,185,2019-06-19,3.72,3,203 +6712618,"Big room 2 blocks from Central Park, UWS Manhattan",22651758,Tiphaine,Queens,Sunnyside,40.74147,-73.91997,Entire home/apt,85,1,2,2015-09-08,0.04,1,0 +6713005,Large one bedroom,35144920,Kevin,Manhattan,Upper East Side,40.767,-73.95456,Private room,100,1,0,,,1,0 +6713521,Your Garden Oasis in Brooklyn!,1401919,Mike,Brooklyn,Bedford-Stuyvesant,40.68447,-73.9543,Entire home/apt,275,3,21,2018-11-24,0.44,1,5 +6713742,Midtown Gem - Nestled by Hotel Row,35149173,L.M.,Manhattan,Midtown,40.75549,-73.97149,Entire home/apt,450,2,2,2015-07-02,0.04,1,364 +6713821,Spacious Room w/ Queen Bed,12447185,Craig,Brooklyn,Crown Heights,40.67547,-73.95711,Private room,80,1,0,,,1,0 +6713911,"Perfect studio w/ Coutryard, piano!",34988058,Sheri,Manhattan,Upper East Side,40.76217,-73.96622,Entire home/apt,275,1,0,,,1,0 +6716066,Harlem/Columbia historic landmark,6226676,Aparna,Manhattan,Harlem,40.80748,-73.94922,Entire home/apt,120,2,1,2015-06-24,0.02,1,0 +6716154,Luxury alcove studio on high floor,35108277,Yury,Manhattan,Upper East Side,40.76685,-73.95265,Entire home/apt,250,5,0,,,1,0 +6716160,Park Slope Family Oasis w/ Patio,171653,Stefanie,Brooklyn,Park Slope,40.6669,-73.97827,Entire home/apt,250,2,1,2016-09-11,0.03,1,0 +6716199,large private bedroom,31765814,Yassine,Queens,Astoria,40.76561,-73.92056,Private room,85,1,3,2019-05-12,0.06,1,0 +6716444,Large and Quiet Private Bedroom,24466159,Tim,Manhattan,East Village,40.72879,-73.98575,Private room,100,7,2,2015-06-26,0.04,1,0 +6716695,Private Entrance in Prime Burg,23082955,Pj,Brooklyn,Williamsburg,40.70873,-73.95219,Private room,65,1,107,2018-05-13,2.17,1,0 +6717053,Lovely Studio in Flushing/kew Garde,34992043,Frances,Queens,Flushing,40.74024,-73.83105,Private room,68,1,222,2019-07-04,4.48,2,330 +6717309,Marvellous spacious Upper East apt,15444104,Willem,Manhattan,Upper East Side,40.77878,-73.94491,Entire home/apt,170,10,11,2017-05-16,0.24,1,0 +6717544,Relaxing Home for your NY Trip,35174506,Michelle,Brooklyn,Bensonhurst,40.61625,-73.9916,Private room,50,2,9,2019-06-23,1.41,1,81 +6717607,Spacious Private Room/Bath in Bushwick!,4130512,Tanni,Brooklyn,Bushwick,40.69093,-73.91291,Private room,45,30,1,2016-11-25,0.03,1,0 +6718257,"Home 4 Medical Professionals - The ""Clinomania""",26377263,Stat,Brooklyn,East Flatbush,40.66079,-73.9342,Private room,48,30,2,2018-09-22,0.06,43,249 +6718383,Home 4 Medical Professionals-Kngbr1,26377263,Stat,Brooklyn,East Flatbush,40.66058,-73.93383,Private room,43,30,1,2015-11-28,0.02,43,347 +6719207,Home 4 Medical Professionals-Kngbr3,26377263,Stat,Brooklyn,East Flatbush,40.66037,-73.93316,Private room,47,30,0,,,43,311 +6722799,Spacious 2 BR sun-filled apartment in Chelsea,21079341,Georgina,Manhattan,Chelsea,40.74558,-74.00325,Entire home/apt,260,2,2,2018-12-30,0.18,1,0 +6723207,spacious apartment in Ditmas Park,5013592,Anton,Brooklyn,Flatbush,40.638,-73.96742,Entire home/apt,75,7,0,,,1,0 +6725463,Sunny Midtown Apartment,19406327,Ze,Manhattan,Murray Hill,40.74786,-73.97277,Shared room,160,1,0,,,1,365 +6726337,Beautiful 2 Bedroom Apartment!! NYC,21444167,Rony,Bronx,Kingsbridge,40.88238,-73.90689,Entire home/apt,159,3,8,2019-06-02,0.17,2,112 +6726361,"South Facing Brownstone, 2nd Floor",921857,Victoria,Brooklyn,Bedford-Stuyvesant,40.68354,-73.92612,Private room,50,7,3,2016-12-29,0.06,1,31 +6726702,One bedroom in quiet Brooklyn,7588851,Jamie,Brooklyn,Prospect-Lefferts Gardens,40.6637,-73.94644,Entire home/apt,100,5,0,,,1,0 +6728550,"Cozy, Spacious Bedstuy Pad",34058193,Beverly,Brooklyn,Bedford-Stuyvesant,40.68972,-73.95629,Entire home/apt,60,5,5,2015-11-25,0.10,1,0 +6729568,Cozy room in beautiful light-filled apt,6386894,Adrienne,Brooklyn,Cobble Hill,40.68701,-73.99054,Private room,80,2,4,2018-02-16,0.19,2,0 +6729589,Sunny 1.5 BR Charmer!,6386894,Adrienne,Brooklyn,Boerum Hill,40.68542,-73.98916,Entire home/apt,115,4,13,2019-05-14,0.64,2,18 +6730056,Sunny Studio in Chelsea,7186661,Sabrina,Manhattan,Chelsea,40.74688,-74.00145,Entire home/apt,200,1,4,2017-09-16,0.09,1,0 +6730582,"3 bdrms, fully equip bth/rm kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68491,-73.75895,Entire home/apt,160,3,29,2019-01-16,0.59,3,179 +6731170,Nice & Sweet Apartment in Manhhatan,24131487,Liu,Manhattan,Harlem,40.80352,-73.95079,Entire home/apt,109,3,1,2015-08-29,0.02,1,0 +6731373,Brooklyn Yellow,35086035,Sammy,Brooklyn,Crown Heights,40.66913,-73.93199,Private room,25,2,5,2018-12-31,0.27,1,158 +6731463,Large Brooklyn 3 Bedroom Apartment,63588,Dimitri,Brooklyn,Prospect Heights,40.67731,-73.96683,Entire home/apt,280,5,5,2018-08-21,0.10,2,0 +6731564,1 bedroom apt in Astoria,35254359,Romain,Queens,Astoria,40.76774,-73.92414,Entire home/apt,120,1,0,,,1,0 +6731830,Williamsburg Apartment on Bedford,30345458,Thomas,Brooklyn,Williamsburg,40.71444,-73.96024,Entire home/apt,98,3,8,2017-06-24,0.21,1,0 +6732446,Sunny & Happy Room in Williamsburg,5532810,Sandy,Brooklyn,Williamsburg,40.71676,-73.9439,Private room,70,2,99,2019-06-16,2.02,2,37 +6733512,A Serine Stay in Bedstuy,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68814,-73.93089,Private room,55,10,14,2019-05-06,0.31,3,301 +6737048,"Owesome entire apart, Bushwick 20 min Manhattan!!!",35280507,Elimara,Queens,Ridgewood,40.70737,-73.91439,Entire home/apt,100,3,17,2018-12-11,1.41,1,0 +6737815,Chic Modern Apt w/ View of Hudson,10576227,Alexander,Manhattan,Chelsea,40.7481,-74.00533,Entire home/apt,200,5,1,2015-07-05,0.02,1,0 +6738207,Heart of Lower East Side,8965532,Claire,Manhattan,Lower East Side,40.71937,-73.99098,Entire home/apt,120,1,11,2017-06-29,0.27,1,0 +6738524,"Stunning, sunny 1bedroom, Greenpoit",35287916,Naum & Alexandra,Brooklyn,Greenpoint,40.73401,-73.95471,Entire home/apt,150,14,1,2015-09-01,0.02,1,0 +6739145,Ranch style house with driveway,25368839,Florence,Staten Island,Dongan Hills,40.58115,-74.09182,Entire home/apt,155,3,63,2019-06-22,1.29,1,0 +6741023,Big Room @ the Heart of Brooklyn!!,1012583,Mariano,Brooklyn,Williamsburg,40.71458,-73.96181,Private room,60,7,6,2017-11-13,0.13,2,0 +6741094,Gorgeous Luxury Apartment,35299368,Adriana,Manhattan,Murray Hill,40.74798,-73.9814,Private room,200,1,1,2015-06-21,0.02,1,0 +6742680,Spacious & Charming Duplex in Upper East,6028102,Ana,Manhattan,Upper East Side,40.77259,-73.95647,Entire home/apt,200,3,47,2019-03-24,0.95,1,0 +6743346,Wildlife Loft Living room adventure,5556571,Chris,Brooklyn,Williamsburg,40.70645,-73.9379,Shared room,25,1,25,2019-04-28,0.50,3,358 +6743935,Whole West Village Studio,740756,Lydia,Manhattan,West Village,40.73742,-74.00171,Entire home/apt,199,2,14,2016-05-08,0.29,1,0 +6746003,Retro Style Living In New York City,1211067,"Hans, Sandra & Son",Staten Island,Tompkinsville,40.62154,-74.08701,Private room,49,2,100,2019-06-29,2.12,2,284 +6747106,New York apt in beautiful area for Summer,2388537,Andrea,Manhattan,Morningside Heights,40.81666,-73.96074,Entire home/apt,105,15,33,2019-01-02,0.69,2,5 +6747193,Room & Breakfast- Room 2,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92783,Private room,49,1,107,2019-07-06,2.19,3,69 +6747308,Luxury 2 BD with spectacular views,3282552,Roger,Manhattan,Upper West Side,40.77818,-73.98959,Entire home/apt,256,4,11,2017-07-27,0.23,1,0 +6747685,Beautiful 1205 ft classic NoHo Loft,29769754,Tom,Manhattan,NoHo,40.7259,-73.9939,Entire home/apt,499,3,35,2019-05-27,0.72,1,223 +6747958,1 cozy & centrally located bedroom,20904647,Christina,Brooklyn,Fort Greene,40.68662,-73.97602,Private room,90,4,32,2019-07-03,0.67,1,295 +6748032,Beloved Brooklyn style apartment,35329789,Simone,Brooklyn,Sunset Park,40.66002,-73.99073,Entire home/apt,80,4,152,2019-06-19,3.08,1,142 +6748711,Awesomely Sunny 1 Bedroom w Balcony,3900093,Damien,Brooklyn,Williamsburg,40.71054,-73.95669,Entire home/apt,180,3,35,2017-01-28,0.71,1,18 +6748933,Cozy 1 BR in ideal location,1490702,Amanda,Manhattan,Chelsea,40.74121,-74.00122,Entire home/apt,145,6,2,2017-06-26,0.04,1,0 +6748952,Private Room w/Bathroom / W'Berg BK,34950721,Samuel,Brooklyn,Williamsburg,40.70799,-73.94888,Private room,100,1,1,2015-06-15,0.02,2,0 +6749285,Sunny 2 Bedroom Brownstone Apt.,4195861,Doris,Brooklyn,Crown Heights,40.67837,-73.95517,Entire home/apt,150,3,208,2019-07-01,4.36,2,238 +6749837,2 beds in 3 bed with balcony in elevator bldng!,25111342,Alix,Brooklyn,Kensington,40.6345,-73.97271,Private room,95,2,0,,,1,0 +6750178,Brooklyn Comfort w Rooftop View,173938,Vuong,Brooklyn,Bedford-Stuyvesant,40.68491,-73.94919,Private room,55,5,4,2018-02-08,0.08,1,21 +6750443,Stunning & Comfortable Home in Williamsburg,35288455,Gabriela,Brooklyn,Williamsburg,40.71154,-73.96424,Entire home/apt,147,3,55,2018-12-26,1.29,1,5 +6751450,Next to Empire State building,7209,Liz,Manhattan,Midtown,40.74642,-73.98516,Entire home/apt,220,3,108,2019-06-21,2.17,1,24 +6757821,Riverside Dr Apartment,28813132,Junyuan,Manhattan,Morningside Heights,40.81656,-73.96122,Private room,70,1,0,,,1,0 +6758846,"Williamsburg, BK large apt",22894987,Daniel,Brooklyn,Williamsburg,40.71085,-73.94894,Entire home/apt,100,1,0,,,1,0 +6758849,UPPER EAST SIDE 5BR/4BA GARDEN APT,35384978,Hans,Manhattan,Upper East Side,40.77635,-73.94813,Entire home/apt,888,2,42,2019-07-07,0.86,2,35 +6759052,Bed-Stuy apt with central air,5693024,Peter,Brooklyn,Bedford-Stuyvesant,40.68675,-73.94497,Private room,40,1,1,2015-07-28,0.02,1,0 +6759264,Cozy private bedroom & bathroom,35386618,Andrea,Queens,Astoria,40.75706,-73.91834,Private room,70,1,7,2016-05-25,0.15,1,325 +6759527,Room Available in Sunset Park!,35388074,Maddie,Brooklyn,Sunset Park,40.64465,-74.01881,Private room,150,1,1,2015-06-12,0.02,1,0 +6760295,"Sunny, couple-friendly MasterBedroom in Greenpoint",12432739,Monica,Brooklyn,Greenpoint,40.73511,-73.95551,Private room,75,7,1,2016-11-15,0.03,1,0 +6760353,City living in a suburb on NYC,35391852,Sunita,Brooklyn,Bushwick,40.69545,-73.92336,Entire home/apt,85,5,2,2015-06-20,0.04,1,0 +6760893,Central Park / Full Apartment / 5th Ave,11631535,Scott,Manhattan,East Harlem,40.79596,-73.94958,Entire home/apt,124,3,6,2016-08-26,0.14,1,0 +6761084,mhttnfullapt lowprce,29239547,Emanuel,Manhattan,Washington Heights,40.85322,-73.93563,Entire home/apt,89,2,25,2019-06-23,0.79,1,346 +6761717,Brooklyn Heights Brownstone Duplex,1549503,Alison,Brooklyn,Brooklyn Heights,40.69009,-73.99355,Entire home/apt,195,3,1,2015-06-28,0.02,1,0 +6761985,Williamsburg Sunlit Sanctuary.,2521069,Emma,Brooklyn,Williamsburg,40.71374,-73.9627,Entire home/apt,160,3,27,2019-06-24,0.55,1,193 +6763899,"Bright, spacious room in Manhattan",5360450,Sarah,Manhattan,Harlem,40.81791,-73.95357,Private room,60,1,5,2015-09-15,0.10,1,0 +6764316,GIANT LOFT IN DUMBO -- BY BROOKLYN BRIDGE PARK,362418,Julia,Brooklyn,DUMBO,40.70318,-73.9878,Private room,125,3,181,2019-07-05,3.67,1,111 +6764999,"Large, light-filled W. Village condo w/river views",35415860,Debra,Manhattan,West Village,40.7342,-74.00854,Entire home/apt,225,2,6,2016-08-28,0.12,1,0 +6765697,Cozy bedroom for 2 in Astoria,35417042,Maria,Queens,Astoria,40.76855,-73.92583,Private room,86,4,28,2019-04-23,0.59,1,364 +6765965,Williamsburg Cozy Apartement,35421272,Joffrey,Brooklyn,Williamsburg,40.71128,-73.954,Entire home/apt,119,4,6,2016-09-26,0.12,1,0 +6766169,Nice and spacious 1BR in Brooklyn,35422693,Raquel,Brooklyn,Crown Heights,40.66922,-73.94682,Entire home/apt,70,15,9,2018-07-25,0.19,1,0 +6766259,Lovely & Cozy Room Heart of Astoria,35423181,Cidinha,Queens,Astoria,40.7665,-73.91759,Private room,75,1,10,2018-10-07,0.22,1,357 +6766662,Gorgeous 1 Bedroom: Balcony + View!,35426209,Talia,Queens,Astoria,40.76964,-73.91402,Entire home/apt,150,3,3,2016-08-01,0.06,1,0 +6766875,"2 bedroom apartment, Fort Greene",35426480,Loukia,Brooklyn,Fort Greene,40.69297,-73.9741,Entire home/apt,145,25,1,2015-07-21,0.02,1,0 +6766894,"Private room, Williamsburg Brooklyn",27103894,Lee,Brooklyn,Williamsburg,40.70965,-73.94411,Private room,115,1,0,,,1,0 +6766908,Renovated & Spacious Apt.,308930,Andres,Brooklyn,Prospect-Lefferts Gardens,40.65577,-73.95903,Entire home/apt,130,5,7,2017-12-18,0.15,1,0 +6767047,Bright Big Room With Fireplace,23582893,Laramie,Brooklyn,Bushwick,40.69047,-73.91565,Private room,53,21,24,2019-05-31,0.49,8,114 +6767603,Quiet and spacious midtown apt,35432501,Sterling,Manhattan,Midtown,40.75861,-73.96939,Private room,110,1,0,,,1,0 +6767911,"Private Floor, 1BR 1BTH, PR Entry",24742173,Tammy,Manhattan,Upper West Side,40.79745,-73.96936,Entire home/apt,130,4,16,2018-04-20,0.32,3,0 +6768399,3)Cozy Sunny Warm Room 阳光温馨单房 停车容易,30616879,Anna,Queens,Flushing,40.75443,-73.80787,Private room,48,2,53,2019-04-07,1.07,3,153 +6769535,"1 brm, fully equip bth/rm & kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68511,-73.76012,Entire home/apt,105,3,7,2017-09-17,0.14,3,0 +6775098,Soho/West Village 1 bedroom apt,23985505,Liz,Manhattan,Greenwich Village,40.72835,-74.00259,Entire home/apt,150,1,0,,,1,0 +6775943,JFK Studio Flat with Kitchen and Private bathroom,9284163,Antonio,Queens,Woodhaven,40.68982,-73.85379,Entire home/apt,65,2,85,2019-06-24,2.40,3,311 +6776230,Ridgewood 2 Bedroom,35474215,Gregory,Queens,Ridgewood,40.70966,-73.90064,Entire home/apt,100,4,1,2015-07-15,0.02,1,0 +6776698,JFK SPACIOUS ROOM / A 4 BLOCKS TO SUBWAY,9284163,Antonio,Queens,Woodhaven,40.68955,-73.85348,Private room,39,2,262,2019-06-23,5.28,3,346 +6776711,"Classic NYC, Upper East Side Apt",35476099,Alec,Manhattan,Upper East Side,40.76966,-73.95319,Entire home/apt,150,5,2,2016-12-26,0.04,1,0 +6777603,Sunny Bedroom in Bushwick,6378149,Laurel,Brooklyn,Bushwick,40.6987,-73.91578,Private room,50,2,28,2017-12-04,0.56,3,0 +6778776,Private Room in Bohemian Haven,18591697,Heidi,Manhattan,Washington Heights,40.83705,-73.9399,Private room,55,7,4,2016-07-31,0.09,1,0 +6779136,West Village on the Hudson River,35488245,Jillian,Manhattan,West Village,40.73212,-74.01051,Entire home/apt,195,1,1,2015-08-25,0.02,1,0 +6780285,Beautiful Williamsburg townhouse on a park.,230856,Gabrielle & Malcolm,Brooklyn,Williamsburg,40.7154,-73.93866,Entire home/apt,295,30,6,2018-04-19,0.13,1,0 +6781648,2BR Creative Oasis,3403868,Cusi,Manhattan,West Village,40.73643,-74.00351,Entire home/apt,140,4,0,,,1,0 +6782407,"",31147528,Huei-Yin,Brooklyn,Williamsburg,40.71354,-73.93882,Private room,45,1,0,,,1,0 +6782841,Bright Brookyn Room W/ Bay Windows,23582893,Laramie,Brooklyn,Bushwick,40.69058,-73.91471,Private room,50,91,42,2018-10-02,0.85,8,218 +6783518,PRIVATE Room||Luxury Apt,35512327,Mayowa,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94243,Private room,75,3,0,,,1,0 +6784171,Bright and Clean Little Italy Apt.,18268348,Paul,Manhattan,Little Italy,40.71968,-73.9968,Private room,110,4,12,2017-08-02,0.26,1,0 +6784207,Single Room in 2 bedroom apt.,6387355,Eric,Brooklyn,Bushwick,40.69959,-73.92975,Private room,64,2,48,2019-06-22,1.00,2,318 +6784378,Large Room & Own Bath by train,7788268,Marites,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95947,Private room,75,2,10,2018-05-07,0.22,1,52 +6784406,1BR (IN 2BR FLEX) - MANHATTAN FIDI,12764250,Ravi,Manhattan,Financial District,40.70793,-74.00411,Private room,125,1,0,,,1,0 +6784669,Charming one bedroom Upper East,29509026,Melissa,Manhattan,Upper East Side,40.76644,-73.95803,Entire home/apt,130,1,6,2016-06-01,0.13,1,0 +6784807,"One bedroom in Queens , with 2 single beds",15724675,Juan,Queens,Woodside,40.74375,-73.90678,Private room,50,2,16,2017-04-17,0.42,2,0 +6784873,Spacious Greenpoint 3BR/2BA Apt w/ Organic Garden,2903840,Sari,Brooklyn,Greenpoint,40.72298,-73.94545,Entire home/apt,270,4,4,2019-03-24,0.09,1,7 +6784908,Spacious/quiet one bedroom apt,18186682,Catherine,Manhattan,Inwood,40.87211,-73.91544,Entire home/apt,78,30,2,2019-03-31,0.09,1,15 +6786181,R&S Modern Spacious Hideaway,32722063,,Brooklyn,East Flatbush,40.64345,-73.93643,Entire home/apt,100,2,157,2019-06-19,3.18,2,342 +6786761,[202] 5 min WALK to Times Square!,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76037,-73.99084,Private room,155,1,176,2019-06-19,3.57,11,248 +6787310,[205] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76044,-73.98903,Private room,210,1,182,2019-06-23,3.69,11,249 +6791173,Room Available in Large 3 Bdrm Apt!,32596841,Katie,Brooklyn,Crown Heights,40.67852,-73.9557,Private room,59,1,1,2015-06-28,0.02,2,0 +6792415,Family getaway with amazing roof.,8198108,Gabriel,Brooklyn,Greenpoint,40.72278,-73.94478,Entire home/apt,140,2,8,2016-08-15,0.17,1,0 +6792702,Bright room in lovely Greenpoint apartment,12965328,Delaney,Brooklyn,Greenpoint,40.73632,-73.95445,Private room,59,3,0,,,1,0 +6792888,ONE BR SUNNY APT-15 MIN FROM TIMESQ,35340889,Uros,Queens,Sunnyside,40.74589,-73.91956,Entire home/apt,89,5,4,2015-10-09,0.09,1,0 +6794912,Large room in NYC - 2 months,24973811,Toma,Manhattan,Inwood,40.86623,-73.91993,Private room,50,1,1,2015-08-27,0.02,1,0 +6795252,Private Room in Large 2BR Apartment,12541502,Ryan,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94438,Private room,85,3,0,,,1,0 +6795568,[203] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.7614,-73.98954,Private room,155,1,179,2019-06-20,3.66,11,243 +6795657,Beautiful newly renovated apartment,33622924,Besinfe,Manhattan,Harlem,40.83174,-73.94686,Private room,75,1,134,2019-06-30,3.13,4,354 +6796530,Stay in our wonderful loft!,35574300,Spanky,Brooklyn,Gowanus,40.67928,-73.98254,Private room,98,1,238,2019-07-01,4.85,1,236 +6797129,Spacious 1BR & Loft near Park,8924676,Taeler,Manhattan,Upper West Side,40.77824,-73.97701,Entire home/apt,375,1,0,,,1,0 +6797564,Summer in Gramercy Park. New York,35581556,Emma,Manhattan,Gramercy,40.73727,-73.98432,Entire home/apt,120,1,0,,,1,0 +6797905,Elegant studio in the UES,11013095,Giorgia,Manhattan,Upper East Side,40.77734,-73.95997,Entire home/apt,150,8,0,,,1,0 +6798068,SUNNY 2 BEDROOM IN WILLIAMSBURGGGGG,1320538,Tyler,Brooklyn,Williamsburg,40.70995,-73.96609,Entire home/apt,102,10,8,2019-01-09,0.20,1,277 +6798811,"Spacious, quiet and comfortable 1BR",33279657,Mariya,Brooklyn,Midwood,40.61291,-73.94972,Entire home/apt,85,2,20,2017-04-26,0.41,1,0 +6799118,2 Bedroom Apt. Available July 15 thru Sept. 1,35590273,Nikima,Brooklyn,Red Hook,40.67728,-74.00572,Entire home/apt,80,1,0,,,2,0 +6799130,1 Bedroom available for the entirety of September,35590273,Nikima,Brooklyn,Red Hook,40.67659,-74.00643,Private room,35,10,1,2015-09-02,0.02,2,0 +6799692,[206] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.7618,-73.99093,Private room,255,1,192,2019-06-26,3.91,11,305 +6799814,[306] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76207,-73.98945,Private room,245,1,162,2019-06-30,3.29,11,1 +6799895,[301] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76146,-73.99109,Private room,155,1,201,2019-06-28,4.10,11,240 +6799932,[302] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76015,-73.99086,Private room,155,1,200,2019-06-16,4.07,11,240 +6799944,Brooklyn Bright Times,257676,Linda,Brooklyn,Flatbush,40.65348,-73.95978,Private room,148,1,12,2018-06-18,0.24,2,90 +6799957,[303] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.75987,-73.99056,Private room,155,1,203,2019-06-13,4.13,11,211 +6799999,[305] 5 min WALK to Times Square!,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76036,-73.99073,Private room,165,1,153,2019-06-15,3.16,11,271 +6800277,[307] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76185,-73.99126,Private room,155,1,189,2019-06-23,3.86,11,245 +6800548,Spacious 4bed/2bath-heart of W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71296,-73.96148,Entire home/apt,389,3,18,2016-07-24,0.37,3,0 +6800576,1 BEDROOM IN 3 BEDROOMS APARTMENT,7858210,Maxime,Manhattan,Harlem,40.81456,-73.94159,Private room,65,2,105,2019-06-14,2.12,4,180 +6800858,Charming and private room in W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71481,-73.96262,Private room,89,8,6,2015-11-11,0.13,3,0 +6804319,"Big, sunny garden apt in Brooklyn",20279153,Matthew,Brooklyn,Crown Heights,40.67702,-73.96261,Entire home/apt,250,5,3,2017-07-01,0.06,1,0 +6805817,Bedroom on Riverside Park,7323687,Russell,Manhattan,Upper West Side,40.79304,-73.97725,Private room,125,1,0,,,1,0 +6806165,Large Private Room Uptown,32924087,Faiven,Manhattan,Washington Heights,40.8334,-73.93913,Private room,81,2,8,2019-01-03,0.16,2,0 +6806282,Cozy Room in Charming East Village,4055091,Tina,Manhattan,East Village,40.72949,-73.98012,Private room,80,1,0,,,1,0 +6807079,Luxury Apartment in Brooklyn,7853731,Hod,Brooklyn,Crown Heights,40.67367,-73.96079,Entire home/apt,200,5,3,2018-12-22,0.06,2,157 +6807281,Bright spacious 1BR on the park,35634594,Eden,Brooklyn,Prospect-Lefferts Gardens,40.66233,-73.9615,Entire home/apt,130,7,1,2015-08-14,0.02,1,0 +6807871,MANHATTAN STUDIO,35637698,Yaniv,Manhattan,Kips Bay,40.74362,-73.98058,Entire home/apt,100,6,4,2016-10-10,0.08,1,0 +6808818,Big Room With Piano & Tin Ceilings,23582893,Laramie,Brooklyn,Bushwick,40.68908,-73.91452,Private room,61,2,59,2019-06-23,1.22,8,102 +6809332,"Cozy, Warm Home in the West Village",198010,Shenaz,Manhattan,West Village,40.73728,-74.00773,Entire home/apt,95,5,4,2016-02-21,0.09,1,0 +6812061,"6 minutes from La Guardia Airpt. Quiet, Clean Room",35660592,Luis,Queens,Maspeth,40.73878,-73.89423,Private room,65,2,92,2019-06-15,1.87,6,79 +6812270,Bushwick/Bed Stuy Border,21130473,Justin,Brooklyn,Bedford-Stuyvesant,40.68587,-73.92094,Private room,40,5,4,2015-11-25,0.08,1,0 +6812456,Large 2 bedroom apartment,400240,Murat,Brooklyn,Flatbush,40.65303,-73.96164,Entire home/apt,120,6,1,2018-09-04,0.10,2,0 +6812690,Sunny Big Room With Garden Views,23582893,Laramie,Brooklyn,Bushwick,40.69054,-73.91403,Private room,59,2,36,2019-07-01,0.83,8,218 +6812717,View Waterfront Studio - Manhattan,2608356,Dimitry,Manhattan,Battery Park City,40.70944,-74.01829,Entire home/apt,100,21,0,,,1,222 +6812924,Charming 1BD- 10 min to Manhattan & Central Park,19109608,Elle,Queens,Astoria,40.76219,-73.91963,Entire home/apt,135,1,229,2019-06-16,4.65,3,89 +6813041,*Musician's Apartment* in Brooklyn,1550419,Gordon,Brooklyn,Fort Greene,40.6892,-73.96976,Private room,50,1,0,,,1,0 +6813226,Large 2BR 2BH duplex-Central Park!,24742173,Tammy,Manhattan,Upper West Side,40.79866,-73.9681,Entire home/apt,460,4,11,2016-01-05,0.23,3,0 +6820048,BEAUTIFUL STUDIO IN BROWNSTONE,2264481,Sara,Brooklyn,Bedford-Stuyvesant,40.68552,-73.93581,Entire home/apt,110,4,15,2018-08-13,0.31,1,97 +6820637,Modern 1 BR w/ Private Patio in Boerum Hill!,1153591,Megan,Brooklyn,Boerum Hill,40.68724,-73.98596,Entire home/apt,225,2,24,2019-05-05,0.49,1,189 +6821839,"1 BR Apt., historic Jackson Heights",35726649,Chris,Queens,Jackson Heights,40.75129,-73.88784,Entire home/apt,135,5,8,2019-06-29,0.17,1,0 +6821978,"Charming, Sunny Home in Heart of BK",13219494,New,Brooklyn,Clinton Hill,40.68636,-73.96207,Entire home/apt,125,1,1,2015-07-14,0.02,1,0 +6822519,Sun filled private room in Brooklyn,1456436,Kevin And Regard,Brooklyn,Bushwick,40.69859,-73.92401,Private room,64,5,32,2017-05-01,0.65,1,0 +6822854,Two Story Room With Reclaimed Bed,23582893,Laramie,Brooklyn,Bushwick,40.6904,-73.91538,Private room,58,6,31,2019-05-25,0.63,8,147 +6823578,Beautiful home in the Heights,35350208,Zachary,Manhattan,Washington Heights,40.84872,-73.93633,Private room,69,1,1,2015-07-18,0.02,1,0 +6824996,"Upper East Side Sublet, Cute Street",7021059,Katie,Manhattan,Upper East Side,40.76806,-73.95227,Private room,59,1,0,,,2,0 +6827028,ROOMY 2BA/3BD - Parking Included,10630723,Nancy,Brooklyn,Bedford-Stuyvesant,40.6888,-73.93545,Entire home/apt,177,3,144,2019-07-02,3.02,2,260 +6829632,Sunny spacious apt at Jefferson L!,5967944,April,Brooklyn,Bushwick,40.7027,-73.92512,Entire home/apt,150,1,0,,,1,0 +6829746,Bright Williamsburg/Shwick Art Loft,28509737,Michael,Brooklyn,Williamsburg,40.70412,-73.93555,Private room,69,14,1,2015-06-23,0.02,2,0 +6829990,Garden/Parlor Apt - Fort Greene,3759488,Isabelle,Brooklyn,Fort Greene,40.6886,-73.97409,Entire home/apt,275,4,1,2015-08-21,0.02,1,146 +6831518,Awesome Location with Best Commute,35788303,Kimihiro,Manhattan,Chelsea,40.74733,-73.99023,Private room,99,1,17,2019-01-01,0.39,1,0 +6832599,Room in Williamsburg opposite park,26185036,Tim,Brooklyn,Williamsburg,40.71647,-73.93824,Private room,65,1,0,,,1,0 +6833000,Studio in the heart of Manhattan,1587123,Raymond,Manhattan,Upper East Side,40.76716,-73.96366,Entire home/apt,135,3,4,2016-05-24,0.09,1,0 +6833049,Sunny Spacious 1BR in West Village,1787313,Lauren,Manhattan,West Village,40.73185,-74.00271,Entire home/apt,150,4,5,2017-12-11,0.10,1,0 +6833395,Amazing panoramic view loft,10767841,Manon,Manhattan,Lower East Side,40.71321,-73.99099,Entire home/apt,2000,1,18,2019-03-10,0.39,1,365 +6833755,New Charming Brooklyn 1 Bed Apartment,2851131,Craig,Brooklyn,Bedford-Stuyvesant,40.68175,-73.91144,Entire home/apt,90,2,23,2019-05-28,3.65,1,190 +6833911,Bright art loft in E. Williamsburg,28509737,Michael,Brooklyn,Williamsburg,40.70299,-73.93585,Private room,59,5,2,2015-09-01,0.04,2,0 +6834972,Floorthru Two Bed & Private Yard,438545,Christie,Brooklyn,Carroll Gardens,40.68276,-74.00016,Entire home/apt,275,4,0,,,1,0 +6835487,"Cozy one bdrm apt, Lower East Side",2947857,Jocelyn,Manhattan,Lower East Side,40.71966,-73.98166,Entire home/apt,215,14,1,2015-08-12,0.02,1,0 +6836485,Lovely and quiet garden studio,14261988,Gretchen,Brooklyn,Flatbush,40.6412,-73.95302,Entire home/apt,70,2,150,2019-06-22,3.34,1,222 +6837529,1 BR available in lovely LES unit,35829854,Ben,Manhattan,Lower East Side,40.72082,-73.98592,Private room,135,1,6,2016-05-07,0.12,1,0 +6843145,"Perfect, 1 block from Central Park",5361360,Michael,Manhattan,Upper West Side,40.78787,-73.97116,Entire home/apt,200,3,6,2017-07-17,0.16,1,0 +6845877,Big & Bright & Elevator on the UES,14171882,Brett,Manhattan,Upper East Side,40.77372,-73.94986,Entire home/apt,120,1,6,2016-09-11,0.12,1,0 +6846956,"ONE-OF-A-KIND, EXPOSED-BRICK, 2-BR LOFT w/ VIEWS",2558534,Nash,Brooklyn,Williamsburg,40.71571,-73.96556,Entire home/apt,85,3,93,2019-06-16,1.90,1,13 +6847053,Room in Sunny & Spacious Uptown Apt,35878048,Avia,Manhattan,Morningside Heights,40.81103,-73.95804,Private room,82,1,0,,,1,0 +6849332,"Clean, Convenient & Calming Space",973817,Carol,Manhattan,Washington Heights,40.85151,-73.93789,Entire home/apt,105,2,0,,,1,0 +6850752,Large Bright Williamsburg Apartment - Lorimer St.,35897162,Monica,Brooklyn,Williamsburg,40.70954,-73.94808,Private room,52,20,6,2018-05-08,0.23,1,0 +6850801,3 Bedroom Kid-Friendly Apartment,27287584,Chana,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.94457,Entire home/apt,250,4,0,,,1,0 +6851685,Hudson Luxury Suite - Water and Bridge Views,33605216,Elam,Manhattan,Washington Heights,40.8395,-73.9447,Private room,145,3,1,2015-07-15,0.02,1,3 +6851700,Private room in quintessential BK!,35902297,Meg,Brooklyn,Carroll Gardens,40.67416,-73.99955,Private room,40,1,0,,,1,0 +6852315,Cozy and ideally located Greenwich village apt,6959884,Josephine,Manhattan,Greenwich Village,40.729,-74.00066,Entire home/apt,245,3,18,2019-07-02,0.38,1,307 +6852731,Cozy apt in very hip Greenpoint!,2407990,Linsy,Brooklyn,Greenpoint,40.72982,-73.95503,Entire home/apt,120,3,2,2015-12-14,0.05,1,0 +6853271,Unique Studio apartment in the heart of Chelsea!,3997451,Maria,Manhattan,Chelsea,40.74153,-74.00036,Entire home/apt,150,2,106,2019-06-30,2.29,1,318 +6853661,"Clean, Spacious LES 1 Bdrm",35914632,Pete,Manhattan,Lower East Side,40.71905,-73.98487,Entire home/apt,250,2,2,2015-09-28,0.04,1,0 +6853752,Three-story house in prime Wburg,946943,Annie,Brooklyn,Williamsburg,40.71332,-73.94952,Entire home/apt,295,2,0,,,3,0 +6853761,Prime Williamsburg sanctuary,946943,Annie,Brooklyn,Williamsburg,40.71238,-73.94776,Entire home/apt,125,4,148,2019-07-03,3.01,3,11 +6854013,Beautiful Penthouse Apartment,22136368,Anna,Brooklyn,Bedford-Stuyvesant,40.68382,-73.9215,Entire home/apt,120,2,0,,,1,0 +6854221,Convenient Room In Greenpoint,14495918,Sam,Brooklyn,Greenpoint,40.73376,-73.95443,Private room,40,7,2,2016-08-24,0.05,1,0 +6854372,Beautiful bedroom in Brooklyn,1461503,Phillip,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92425,Private room,55,1,2,2015-10-25,0.04,1,0 +6854404,Beautiful Apt. Above WTC Memorial,35919822,Christian,Manhattan,Financial District,40.70892,-74.01325,Entire home/apt,130,14,1,2015-09-12,0.02,1,0 +6855514,Clean & sunny private room (fits 3),24260658,Kristy,Manhattan,East Harlem,40.79487,-73.93477,Private room,110,2,68,2019-06-22,1.39,5,44 +6860656,Your Cozy NYC Private Room Getaway!,15783878,Steven,Manhattan,Harlem,40.82094,-73.95622,Private room,185,2,14,2019-06-15,0.33,1,155 +6862191,"2 Bedroom Apartment in Dumbo, Brooklyn",17782625,David,Brooklyn,DUMBO,40.70212,-73.9851,Entire home/apt,245,3,8,2019-05-27,0.16,2,0 +6862482,$100 per night with purchase agreement.,4754282,Daniel,Manhattan,Midtown,40.76493,-73.98066,Entire home/apt,700,2,5,2018-12-23,0.10,1,63 +6862600,Bright Parkside Brownstone,21705761,Jonathan,Brooklyn,Park Slope,40.66722,-73.97811,Entire home/apt,215,2,2,2016-04-05,0.05,1,0 +6863691,BKLYN'S Best 3BR Townhouse W/Garden,700224,Shane & Nicole,Brooklyn,Gowanus,40.68338,-73.98657,Entire home/apt,250,29,16,2019-04-30,0.36,4,300 +6863948,Studio + loft space in Gramercy,3313475,Mimi,Manhattan,Kips Bay,40.74229,-73.98165,Entire home/apt,150,2,2,2015-07-25,0.04,1,0 +6864482,Queer friendly lofted Bedstuy room,35798207,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69468,-73.94729,Private room,80,1,0,,,1,0 +6865053,Bright and Calm in Manhattan's LES,35969865,Justin,Manhattan,Lower East Side,40.71449,-73.9874,Private room,89,3,68,2019-06-15,1.38,1,252 +6865662,"Loft style, chill, charming East Village sanctuary",29480685,Anna,Manhattan,East Village,40.72148,-73.98235,Entire home/apt,244,2,22,2019-07-02,0.45,1,1 +6866040,Pretty Artists Apt Private BR in Williamsburg,844227,Barbara,Brooklyn,Williamsburg,40.71117,-73.95292,Private room,74,3,9,2019-03-19,0.66,1,18 +6866061,Delightful & Roomy 1 Bdrm Apt,4939720,Masha,Brooklyn,Crown Heights,40.66689,-73.95882,Entire home/apt,88,1,8,2016-01-29,0.17,1,0 +6866397,Ideal Manhattan Escape #4,3256433,Ira,Manhattan,Lower East Side,40.72215,-73.9914,Entire home/apt,150,30,17,2019-05-01,0.36,7,0 +6866960,Elegant 3 BR in Victorian Home by Brooklyn College,35983559,Laura,Brooklyn,East Flatbush,40.63868,-73.95049,Entire home/apt,150,4,93,2019-07-03,1.93,3,320 +6867325,Private Cosy Harlem Bedroom,13667779,Miriam,Manhattan,Harlem,40.82443,-73.93843,Private room,40,2,27,2019-06-24,0.55,2,345 +6869363,Location! Upper West Side,35997540,Luis,Manhattan,Upper West Side,40.78748,-73.98023,Entire home/apt,150,1,0,,,1,0 +6869940,Furnished Room in a Spacious Apt,731601,Idil,Queens,Astoria,40.77199,-73.93159,Private room,55,15,1,2015-08-13,0.02,2,0 +6871251,Large UWS Apartment by the Park,34780872,Natalie,Manhattan,Upper West Side,40.7787,-73.98088,Entire home/apt,259,3,20,2017-12-30,0.41,1,0 +6871600,Cozy room in Nolita/SoHo,4271676,Nat,Manhattan,Nolita,40.7214,-73.99635,Private room,100,1,18,2017-06-06,0.38,3,0 +6879485,Charming Classic Brooklyn Railroad,26490481,Matthew,Brooklyn,Greenpoint,40.72424,-73.95303,Entire home/apt,125,1,1,2015-08-29,0.02,1,0 +6880873,Parkside Renovated 1 bedroom,17475096,Rosemary,Brooklyn,Flatbush,40.65194,-73.95997,Entire home/apt,85,2,2,2016-10-03,0.05,2,0 +6880990,En suite room Upper West Side,36055888,Ryan,Manhattan,Harlem,40.83019,-73.94991,Private room,75,2,1,2015-07-26,0.02,1,0 +6881827,Times Square/Hells Kitchen Home,25111426,David,Manhattan,Hell's Kitchen,40.76308,-73.99,Private room,190,2,0,,,1,0 +6882689,Cool centrally located LES apt.,4040200,Bobby,Manhattan,Lower East Side,40.71952,-73.98535,Entire home/apt,198,2,17,2016-04-05,0.35,1,0 +6883096,Brand NEW built luxury Apartment,14510607,Gregory,Queens,Astoria,40.76257,-73.92634,Entire home/apt,300,2,13,2016-10-12,0.27,1,365 +6883404,Chic and homey Chelsea Studio,35651501,Elizabeth,Manhattan,Chelsea,40.73983,-73.9988,Entire home/apt,295,1,17,2019-05-15,0.35,1,175 +6884147,Bedroom with huge windows and space,36072139,Hyun Na,Brooklyn,Bushwick,40.69296,-73.9242,Private room,50,1,0,,,1,0 +6884254,Cozy quiet room off of Broadway,19789003,Mike,Brooklyn,Bedford-Stuyvesant,40.68666,-73.91972,Private room,35,1,1,2015-08-22,0.02,1,0 +6884509,Comfy Room in Williamsburg,640117,Simon,Brooklyn,Williamsburg,40.71314,-73.95535,Private room,80,3,8,2017-09-04,0.17,5,0 +6884647,3 bed 3 bath in Bedstuy brownstone,36074783,Brian,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95211,Entire home/apt,200,5,0,,,1,0 +6884974,Private Bedroom in Cozy Loft,7238334,Ethan,Brooklyn,Greenpoint,40.72253,-73.94733,Private room,110,1,1,2015-07-20,0.02,1,0 +6885369,Beautiful Apt in Lefferts Gardens,1442860,Godfrey,Brooklyn,Flatbush,40.6548,-73.95388,Private room,40,2,32,2019-07-01,0.68,1,82 +6885767,Real New York City Cozy Living,36080537,Samara,Manhattan,Hell's Kitchen,40.75603,-73.99247,Entire home/apt,95,1,0,,,1,0 +6885805,Private room in South Williamsburg,5743711,Frasier,Brooklyn,Williamsburg,40.70748,-73.95503,Private room,75,2,2,2015-10-11,0.04,1,0 +6886371,Bright Large Hell's Kitchen Studio,1694147,Rachel,Manhattan,Hell's Kitchen,40.76734,-73.98676,Entire home/apt,199,3,13,2019-05-28,0.27,1,4 +6887405,Private Room in Comfy NYC Apt!,11081099,Rob,Manhattan,Harlem,40.82878,-73.94625,Private room,50,1,1,2015-06-27,0.02,1,0 +6887755,Spacious and nice 2BR near Subway,21426910,Allen,Brooklyn,Gravesend,40.59627,-73.97287,Entire home/apt,109,2,224,2019-07-05,4.70,2,73 +6892731,"Clean Safe Apartment Kitchen, Wifi Parking +more",36119026,Mila,Brooklyn,Sheepshead Bay,40.58804,-73.95674,Entire home/apt,120,2,15,2019-06-23,0.40,1,334 +6895056,Nice Single room sublet for April 1st onward!,10348305,Devin,Brooklyn,Flatbush,40.63967,-73.96424,Private room,50,27,3,2018-07-31,0.06,1,17 +6895123,"Large, Sunny 1 BR GREENPOINT",7107154,Zyanna,Brooklyn,Greenpoint,40.73659,-73.95354,Entire home/apt,95,5,4,2017-01-01,0.11,1,0 +6896715,Charming 1br apartment in midtown,10489933,Michelle,Manhattan,Midtown,40.76003,-73.96969,Entire home/apt,180,30,0,,,1,177 +6897911,Chic and Cozy Heart of Williamsburg,72773,Guillerma,Brooklyn,Williamsburg,40.72004,-73.95615,Private room,100,3,51,2019-06-22,1.07,1,345 +6898240,Spacious Midtown Retreat!,11395856,Claire,Manhattan,Kips Bay,40.74508,-73.97854,Entire home/apt,350,3,6,2015-12-29,0.13,1,0 +6898600,Bright cozy apartment,32775769,Remigijus,Brooklyn,Midwood,40.61679,-73.95521,Entire home/apt,89,7,5,2019-01-05,0.10,1,251 +6899995,Come to Know New York I,25812962,Claudio & Rose,Manhattan,East Harlem,40.78968,-73.94202,Private room,80,1,39,2019-06-10,0.82,3,306 +6900168,Wanderlust. A perfect private space to unwind.,2831384,Mustafa,Queens,Woodside,40.74198,-73.89558,Entire home/apt,125,1,262,2019-07-06,5.37,1,246 +6901401,Spacious Contemporary Living,36164182,Glender,Brooklyn,Bushwick,40.69712,-73.93325,Entire home/apt,155,2,114,2019-06-30,2.86,3,250 +6901484,Williamsburg - Berry and N 9th,36166165,Johnathon,Brooklyn,Williamsburg,40.71909,-73.95811,Private room,62,1,1,2017-09-17,0.05,1,0 +6901734,Spacious Apt Near Central Park,36167966,Justin,Manhattan,Harlem,40.80054,-73.95497,Entire home/apt,93,12,5,2017-06-29,0.14,1,0 +6901856,Spacious Modern Contemp Living 2,36164182,Glender,Brooklyn,Bushwick,40.69768,-73.93359,Private room,80,2,51,2019-05-11,1.04,3,249 +6902147,Studio Apartment in Crown Heights,88032,Timothy,Brooklyn,Crown Heights,40.67659,-73.95417,Entire home/apt,65,7,0,,,1,0 +6902855,Loft-like Apt on the Park / 18 min to Manhattan,36176332,Marcel,Brooklyn,Flatbush,40.65146,-73.96634,Entire home/apt,120,5,19,2016-07-25,0.39,1,1 +6908140,Lovely Brick Townhouse,21705530,Jessica,Brooklyn,Clinton Hill,40.69439,-73.96898,Entire home/apt,450,7,1,2017-07-12,0.04,1,0 +6908209,PrimChelsea~1BR~Sleeps4~hugeOutdoor,2119276,Host,Manhattan,Chelsea,40.74138,-74.00072,Entire home/apt,155,30,6,2019-03-30,0.13,39,289 +6908837,**Caribbean Blue- 8 mins to JFK **,36205028,Mrs. T,Queens,Jamaica,40.68637,-73.79214,Private room,53,1,189,2019-06-21,3.90,2,348 +6909447,Cozy & perfectly located Studio,36207962,Ariel,Manhattan,Upper West Side,40.78267,-73.97661,Entire home/apt,150,3,13,2015-11-28,0.26,1,0 +6909615,Nifty room near Express A train!,36208205,Jakob,Manhattan,Washington Heights,40.84666,-73.9379,Private room,45,1,1,2015-08-25,0.02,1,0 +6910072,Sunny Room in Bushwick & central AC,36211685,Vienna,Queens,Ridgewood,40.70588,-73.91464,Private room,85,1,1,2015-08-17,0.02,1,0 +6911965,Private Bedroom on Prospect Park,1106323,Sebastian,Brooklyn,Windsor Terrace,40.66036,-73.98214,Private room,59,1,1,2016-04-25,0.03,2,0 +6912211,Retreat Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68402,-73.95573,Entire home/apt,122,3,101,2019-05-09,2.08,2,293 +6913023,A Hideaway Room,36227371,Brittney,Brooklyn,Bushwick,40.70035,-73.92316,Private room,75,1,0,,,1,0 +6913240,Bedroom + Study with private bath,15792771,Wenxin,Queens,Rego Park,40.72597,-73.86131,Private room,80,4,2,2015-09-15,0.04,1,0 +6913431,Garden Level Nest in Brooklyn,36229779,Juliana,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95767,Entire home/apt,105,1,9,2015-08-09,0.18,1,0 +6913773,"Home 4 Medical Professionals - The ""Delirium""",26377263,Stat,Brooklyn,Bushwick,40.70376,-73.91765,Private room,47,30,3,2019-02-02,0.07,43,144 +6913795,Nevena's,10716661,Dimitrios,Queens,Ditmars Steinway,40.77228,-73.91345,Entire home/apt,75,3,2,2016-01-31,0.04,1,0 +6913969,"Home 4 Medical Professionals - The ""Necrosis""",26377263,Stat,Brooklyn,Bushwick,40.70393,-73.91679,Private room,47,30,3,2018-08-18,0.06,43,259 +6914268,Room in apartment,36166297,Tejal,Manhattan,Stuyvesant Town,40.7339,-73.97743,Private room,45,1,0,,,1,0 +6914516,Large Bedroom with Private Terrace,36237566,Nora,Manhattan,East Village,40.72714,-73.97894,Private room,100,1,1,2015-11-18,0.02,1,0 +6915467,clean room close to subway station,27962518,Xiangyu,Queens,Elmhurst,40.73713,-73.8741,Private room,85,1,1,2015-07-02,0.02,2,0 +6919797,1BR TSquare with Terrace and View,4112404,Vero,Manhattan,Hell's Kitchen,40.76441,-73.99245,Entire home/apt,269,7,31,2018-06-23,0.66,3,11 +6919971,Studio Apartment on Upper West Side,36268893,Brittany Nicole,Manhattan,Upper West Side,40.80108,-73.9705,Entire home/apt,70,1,1,2016-07-18,0.03,1,0 +6921004,Stunning room factory building apt,1544412,Carlota,Brooklyn,Williamsburg,40.71761,-73.9641,Private room,90,5,18,2019-05-30,0.40,1,37 +6921831,Home Sweet Harlem,36279488,Brian,Manhattan,Harlem,40.8122,-73.95246,Private room,172,3,8,2017-10-30,0.17,1,0 +6921974,Williamsburg Studio,35921273,Andrew,Brooklyn,Williamsburg,40.7173,-73.9532,Entire home/apt,160,1,1,2015-07-14,0.02,1,0 +6921984,The Perfect West Village Stay!,619693,Nick,Manhattan,West Village,40.73323,-74.00434,Entire home/apt,198,2,3,2016-10-22,0.07,1,0 +6922490,Perfect Location! Large One Bedroom,742729,Michael,Manhattan,East Village,40.72691,-73.98534,Entire home/apt,154,2,37,2019-06-18,0.81,1,0 +6922505,Large 2 Bedrooms Apt. in Greenpoint/Williamsburg,12738054,Aude,Brooklyn,Greenpoint,40.72532,-73.95338,Entire home/apt,230,2,6,2019-06-04,0.13,2,272 +6922758,Scandi Apartment w/ Roofdeck & Manhattan Views,896708,Kat,Brooklyn,Cobble Hill,40.68391,-73.99583,Entire home/apt,285,5,4,2019-03-17,0.36,2,19 +6923000,Williamsburg Luxury Apartment,1164568,Emilie,Brooklyn,Williamsburg,40.71199,-73.96022,Entire home/apt,180,3,3,2016-08-25,0.06,1,0 +6923161,Cozy room just off Central Park,36285615,Selim,Manhattan,Harlem,40.80152,-73.9509,Private room,90,2,12,2016-07-05,0.24,1,0 +6924363,Private bedroom in NYC,12072392,Valerie,Manhattan,Harlem,40.80286,-73.94997,Private room,120,1,0,,,1,0 +6924400,West Village Apartment With Character,32767789,Josh,Manhattan,Greenwich Village,40.73256,-74.00008,Private room,60,14,0,,,1,0 +6924793,Private Apt. Downtown LES. 2 blocks from subway.,4019055,Katherine,Manhattan,Lower East Side,40.7179,-73.98477,Entire home/apt,99,2,57,2019-01-28,1.17,1,0 +6924942,Perfect Spot while visiting NYC,1325961,Chris,Manhattan,East Harlem,40.79721,-73.94328,Entire home/apt,111,3,6,2017-08-25,0.13,2,0 +6925777,Lofty/Sunny Private Rm in Bushwick!,26330490,Sandy,Brooklyn,Bushwick,40.70479,-73.92316,Private room,40,7,5,2016-08-09,0.11,1,0 +6926449,Lovely room off Prospect Park,36308476,Erica,Brooklyn,Flatbush,40.64924,-73.96714,Private room,35,4,2,2016-08-21,0.06,1,157 +6926686,CLEAN and COMFY room avail in SoHo!,4667102,Alexia,Manhattan,Little Italy,40.7185,-73.99805,Private room,95,5,1,2015-08-24,0.02,1,0 +6927027,Charming & private room in W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71488,-73.96148,Private room,89,8,2,2015-12-13,0.04,3,0 +6929738,CLOSE TO EAST SIDE HOSPITALS- Modern 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper East Side,40.76044,-73.96068,Entire home/apt,195,30,7,2018-10-30,0.20,34,304 +6930780,Beautiful Sunny Top Floor 1BD Flat,36333834,Paul,Brooklyn,Bedford-Stuyvesant,40.68378,-73.93573,Entire home/apt,139,4,152,2019-06-13,3.26,1,281 +6933326,STUNNING NYC ROOM RIVER VIEW/LIGHT!,25168888,Svjetlana,Manhattan,Harlem,40.82231,-73.95626,Private room,75,3,14,2019-01-02,0.29,3,20 +6933582,Cozy home in the heart of Astoria,35914251,Loren,Queens,Astoria,40.76371,-73.92049,Entire home/apt,100,4,2,2015-12-31,0.04,1,0 +6934249,"Location, light, and charm",24465231,Gael,Brooklyn,Greenpoint,40.72464,-73.9533,Entire home/apt,149,7,7,2018-07-01,0.15,1,0 +6934770,Cozy and Large 1 bedroom Apartment,36356923,Ali,Queens,Astoria,40.76348,-73.91995,Private room,55,1,0,,,1,0 +6936794,Modern 3 Beds in Gorgeous Building,12028820,Kim,Manhattan,Upper East Side,40.76348,-73.95884,Entire home/apt,900,7,28,2019-05-05,0.58,1,340 +6936903,Williamsburg Oasis w/ Private Yard!,36369314,Rinat,Brooklyn,Williamsburg,40.71616,-73.94352,Entire home/apt,199,7,3,2016-08-07,0.06,1,0 +6937480,BUSHWICK Beaut! Private bed & bath,36373090,Erika,Brooklyn,Bushwick,40.70043,-73.92167,Private room,70,5,1,2015-08-19,0.02,1,0 +6937871,Large Private Room on Prospect Park,1106323,Sebastian,Brooklyn,Windsor Terrace,40.66036,-73.98244,Private room,65,3,0,,,2,0 +6937897,Tasteful Duplex in Gramercy Park,36375657,John,Manhattan,Kips Bay,40.73873,-73.98153,Shared room,800,30,1,2015-09-14,0.02,1,0 +6938378,Big Sunny room in NYC (M5),5164854,Lilia,Manhattan,Harlem,40.81961,-73.93937,Private room,43,6,6,2017-12-18,0.12,8,324 +6938827,Prime apartment in prime Park Slope location!,36381094,Gidon,Brooklyn,Park Slope,40.67177,-73.97882,Entire home/apt,229,3,22,2018-12-26,0.46,1,0 +6939024,Chic 1 BR in East Village,34930811,Paloma,Manhattan,East Village,40.72517,-73.98742,Entire home/apt,195,1,15,2015-12-06,0.31,1,0 +6939175,Beautiful Greenpoint Apartment,2419331,Ameira,Brooklyn,Greenpoint,40.73407,-73.95314,Entire home/apt,150,14,3,2016-04-18,0.06,1,0 +6939597,Full garden apartment in Brownstone,2723812,Libertad,Bronx,Mott Haven,40.80993,-73.92613,Entire home/apt,100,2,57,2019-06-23,1.17,2,284 +6939638,Heart of Tribeca next to everything,36307255,Josh,Manhattan,Tribeca,40.715,-74.0094,Entire home/apt,700,1,8,2016-01-03,0.16,1,0 +6939668,Lovely 1BR on the Upper West Side,36387290,Megan,Manhattan,Upper West Side,40.78147,-73.97806,Entire home/apt,150,1,0,,,1,0 +6939719,Bright and Spacious Two Room Studio in Midtown!!!,36006178,Eric,Manhattan,Hell's Kitchen,40.76497,-73.98848,Entire home/apt,300,7,8,2018-10-08,0.21,1,0 +6939758,Mid-century Apt. Next To Subway,3266476,Jack,Manhattan,Kips Bay,40.74206,-73.98014,Private room,100,5,11,2018-05-31,0.23,1,0 +6939859,"Nice room, very close to the subway",36388501,Loralee,Brooklyn,Williamsburg,40.70658,-73.93801,Private room,50,3,5,2015-09-16,0.10,1,0 +6940108,Classic Upper East Side 1 Bed (king bed) Apt,13031379,Esther,Manhattan,Upper East Side,40.77252,-73.9556,Entire home/apt,140,2,57,2019-06-16,1.18,1,0 +6941601,Manhattan Club,36400642,Abdul Rahman,Manhattan,Midtown,40.76448,-73.98187,Entire home/apt,175,7,0,,,1,0 +6942211,Sunny UWS Apt Steps to Central Park,10124757,Ning,Manhattan,Upper West Side,40.78905,-73.96748,Entire home/apt,185,8,3,2016-01-03,0.06,1,0 +6944665,Gorgeous room!! Open for summer!,36413917,Kory,Brooklyn,Williamsburg,40.70703,-73.95234,Private room,73,14,0,,,1,0 +6946479,Lovely 3 Story Cottage in Park Slope,204472,Raul,Brooklyn,South Slope,40.66672,-73.98462,Entire home/apt,250,3,2,2016-08-28,0.04,1,0 +6947017,Private room. Amazing location!,35968845,Andre,Manhattan,Upper West Side,40.79421,-73.97097,Private room,89,3,1,2015-07-26,0.02,2,0 +6947196,5th ave Flatiron Loft,36425465,Eli,Manhattan,Chelsea,40.73857,-73.99256,Entire home/apt,800,15,0,,,1,0 +6947477,Private room. Amazing location!,35968845,Andre,Manhattan,Upper West Side,40.79265,-73.97108,Private room,89,1,1,2015-07-19,0.02,2,0 +6948161,Awesome Studio in Chelsea,24806455,Julian,Manhattan,Chelsea,40.74815,-73.99417,Entire home/apt,250,1,0,,,1,0 +6948441,Cozy 2BR at Chelsea with Balcony,2176547,Amy,Manhattan,Chelsea,40.74723,-73.9916,Entire home/apt,220,31,4,2019-05-27,0.12,1,54 +6949104,"Chelsea Flat-Gorgeous, Bright, Safe",6884282,Matthew,Manhattan,Chelsea,40.74682,-74.00417,Private room,135,5,1,2015-08-09,0.02,1,0 +6949526,"Brooklyn's heart, + Ft Greene! 1day free bicycle",36434721,Gabriel,Brooklyn,Fort Greene,40.68503,-73.9742,Entire home/apt,160,1,70,2019-06-30,1.43,1,356 +6949554,Clean bedroom with private bathroom,10609847,Kristie,Brooklyn,Williamsburg,40.70781,-73.95553,Private room,93,3,0,,,1,0 +6950074,"Beautiful, Cozy Apartment",6434434,Jenna,Queens,Ditmars Steinway,40.7789,-73.90688,Entire home/apt,110,2,14,2017-12-10,0.29,1,0 +6950477,Cozy Studio in Historic Brownstone,7253422,Nate',Manhattan,Harlem,40.82599,-73.94545,Entire home/apt,76,1,3,2015-08-22,0.06,1,0 +6950807,Spacious 1bdrm in Long Island City,36441990,Samir,Queens,Astoria,40.75671,-73.91749,Entire home/apt,105,1,5,2016-08-13,0.10,1,0 +6952302,2BR- Downtown Brooklyn,31883140,Fabiana,Brooklyn,Fort Greene,40.69173,-73.97756,Entire home/apt,120,4,1,2016-07-04,0.03,1,0 +6953013,One bedroom apt in East Harlem,36453453,Khaled,Manhattan,East Harlem,40.79063,-73.94718,Entire home/apt,110,5,3,2017-07-24,0.06,1,0 +6954288,Cozy and Chic 1 Bedroom!!,14379468,Pamela,Manhattan,Harlem,40.81254,-73.94118,Entire home/apt,125,1,4,2016-11-20,0.09,1,0 +6955143,Large Sunny Private Bedroom,16533401,Aaron,Brooklyn,Gowanus,40.67781,-73.9851,Private room,130,1,0,,,1,0 +6955782,The Sweet Spot!,21976382,Emily,Brooklyn,Boerum Hill,40.68564,-73.98408,Entire home/apt,105,14,48,2019-05-23,1.02,1,74 +6956358,Spacious & happy gem in LES!,7013442,Rafael,Manhattan,Lower East Side,40.71996,-73.98729,Private room,100,3,2,2015-08-30,0.04,1,0 +6956731,New! Beautifully Designed & Modern,13347167,AFI Apartments,Manhattan,Upper East Side,40.77566,-73.95335,Entire home/apt,118,30,4,2019-03-31,0.09,29,258 +6956956,SPACIOUS Room Near Manhattan!,18091740,Brittany,Brooklyn,Williamsburg,40.70198,-73.947,Private room,70,4,1,2016-12-08,0.03,1,0 +6957168,Charming Carroll Gardens 2 bed apt,22346913,Gideon,Brooklyn,Carroll Gardens,40.68153,-74.0016,Entire home/apt,220,2,118,2019-06-19,2.51,1,277 +6957272,"Beautiful, spacious & sunny 1BR",15647782,Reinier,Manhattan,Upper West Side,40.80271,-73.96853,Entire home/apt,155,4,10,2017-05-12,0.21,1,0 +6957328,Williamsburg❤️Central Location Queen Bed A/C,330976,Daniel,Brooklyn,Williamsburg,40.70875,-73.95364,Private room,85,1,20,2018-07-27,0.42,1,0 +6958652,Brooklyn Room Available [furnished],33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93153,Private room,40,20,42,2019-06-09,1.12,2,257 +6958924,Upper WestSide NYC Central Park II,36489857,Janice,Manhattan,Upper West Side,40.78768,-73.97238,Entire home/apt,85,3,29,2018-12-30,0.75,1,309 +6959212,A Well Equipped Studio,28601986,Isiah,Manhattan,East Harlem,40.79952,-73.93502,Entire home/apt,84,3,10,2019-01-02,0.21,1,0 +6965441,1 Bedroom on Tree Lined Street in Chelsea,19228782,Ben,Manhattan,Chelsea,40.74438,-74.00178,Entire home/apt,150,3,2,2016-06-14,0.05,1,1 +6965529,Big comfy space close to Yankees.,2001830,Jose And Ysaira,Bronx,Morris Heights,40.85073,-73.9128,Private room,50,3,20,2019-04-22,0.47,2,316 +6966936,Single Family Bushwick Oasis,36208562,Rebecca & Warren,Brooklyn,Bushwick,40.69847,-73.92787,Entire home/apt,250,2,23,2016-10-29,0.49,1,0 +6966985,Large Room in Central Apt,2714997,Shirly,Manhattan,Upper West Side,40.801,-73.96647,Private room,70,30,76,2018-07-11,1.57,1,0 +6967201,Huge Room on Central Park,36530547,Tj,Manhattan,Upper West Side,40.79126,-73.96738,Private room,110,1,0,,,1,0 +6967305,Prospect Heights garden apartment,36531150,Stephanie,Brooklyn,Prospect Heights,40.67886,-73.96802,Entire home/apt,164,1,2,2015-08-16,0.04,1,0 +6967861,A huge apartment near Manhattan,36534042,Rabie,Brooklyn,Fort Hamilton,40.62084,-74.03739,Entire home/apt,120,7,1,2015-08-01,0.02,1,0 +6968488,One bedroom in Brooklyn-Fort Greene,8080357,Kathryn,Brooklyn,Fort Greene,40.69246,-73.97171,Private room,55,4,0,,,1,0 +6968520,Entire Townhouse in Red Hook 2 unit,36537579,Amyt,Brooklyn,Red Hook,40.67819,-74.00924,Entire home/apt,500,1,0,,,1,0 +6968737,Park Slope Brooklyn for July,36538690,Thomas,Brooklyn,South Slope,40.6648,-73.98044,Entire home/apt,224,4,1,2015-07-31,0.02,1,0 +6969011,"BIG Beautiful private bedroom, 5 minutes to subway",107016,Grace,Brooklyn,Crown Heights,40.67618,-73.95133,Private room,47,14,9,2019-04-04,0.19,1,8 +6969425,Large Room w/ personal Bath in Bed-Wick Near All!,12906455,Jennifer,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93333,Private room,61,2,29,2019-06-22,0.59,1,5 +6969473,SOHO GEM 2750 SQ FT,30247261,Nima,Manhattan,Little Italy,40.72039,-73.99683,Entire home/apt,999,7,1,2015-12-27,0.02,1,0 +6970005,"Artist home, Greenwich Village, NYC",23026033,Charlotte,Manhattan,Greenwich Village,40.73104,-73.99708,Entire home/apt,230,7,1,2015-09-19,0.02,1,0 +6970372,*RAZZMATAZZ* Upper East Side 2 Bedroom,25237492,Juliana,Manhattan,Upper East Side,40.76112,-73.9619,Entire home/apt,150,30,12,2018-11-14,0.27,34,298 +6970776,*ESSENTIAL* Convenient Studio- Upper East Side!,25237492,Juliana,Manhattan,Upper East Side,40.76216,-73.96195,Entire home/apt,115,30,12,2019-05-02,0.26,34,331 +6970965,"Cozy and Spacious, 1 Bedroom, Astoria",36551297,Sebastian,Queens,Astoria,40.76194,-73.91881,Private room,70,2,8,2016-12-23,0.16,1,0 +6971141,Upper East Side 2 bedroom- close to Hospitals-,25237492,Juliana,Manhattan,Upper East Side,40.76222,-73.9603,Entire home/apt,325,30,2,2019-06-08,0.21,34,191 +6971348,Close to East Side Hospitals- Modern 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper East Side,40.76249,-73.96217,Entire home/apt,155,30,6,2019-01-31,0.14,34,295 +6971639,ACADIA Spacious 2 Bedroom Apt - Close to Hospitals,25237492,Juliana,Manhattan,Upper East Side,40.76021,-73.96157,Entire home/apt,165,30,10,2018-11-18,0.22,34,346 +6971750,*ENCHANTMENT* Upper East Side 2 bedroom- Sunny!,25237492,Juliana,Manhattan,Upper East Side,40.76244,-73.96031,Entire home/apt,165,30,9,2018-09-30,0.20,34,280 +6971871,*JAMES* Amazing Spacious 2 Bedroom- Bright!,25237492,Juliana,Manhattan,Upper East Side,40.76035,-73.96133,Entire home/apt,155,30,8,2019-06-11,0.27,34,339 +6972046,Large Private Upper West Side Room,23574544,Maxwell,Manhattan,Upper West Side,40.78567,-73.97665,Private room,150,1,7,2015-09-26,0.14,1,0 +6972089,*ODYSSEY* Sunny 1 Bedroom Apt- Bright & Cheery!,25237492,Juliana,Manhattan,Upper West Side,40.78181,-73.98466,Entire home/apt,130,30,10,2019-04-01,0.26,34,303 +6972192,*WINDSONG* Serene 1 BR in Townhouse near Park,25237492,Juliana,Manhattan,Upper West Side,40.78289,-73.98477,Entire home/apt,125,30,17,2019-06-17,0.38,34,202 +6972271,"2BR Cozy, Large & Central Apartment",31213925,Philippe,Manhattan,Midtown,40.74462,-73.98272,Entire home/apt,150,2,0,,,1,0 +6972534,Nice room in a super nice apartment,21803081,Terry,Brooklyn,Williamsburg,40.71591,-73.9417,Private room,55,7,2,2015-08-16,0.04,1,0 +6972554,Nice 1 BR Apartment at Central Park,17155244,Drew,Manhattan,East Harlem,40.7984,-73.94777,Entire home/apt,155,4,4,2015-09-08,0.08,1,0 +6972673,Spacious one bedroom with en-suite,13698410,Rawan,Brooklyn,Clinton Hill,40.69489,-73.96496,Private room,80,7,12,2017-06-25,0.25,1,0 +6973011,Beautiful Large Private 1 Bd w/ Mediation Space,19247979,Neelam,Brooklyn,Flatbush,40.63488,-73.96546,Entire home/apt,85,3,0,,,1,0 +6973159,Bed-stuy belle,4225192,Gaby,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94653,Private room,40,1,1,2015-07-11,0.02,1,0 +6973286,Private bedroom w/ roofdeck NO CLEANING FEE,12374283,Ryan,Manhattan,East Village,40.72297,-73.97973,Private room,99,3,12,2019-04-29,0.26,4,0 +6973292,Book Now & Save: Spend July in New York City!,5577926,Lou,Queens,Astoria,40.76583,-73.91086,Private room,59,1,108,2019-06-06,2.23,4,0 +6973463,"Penthouse Apt w/private roofdeck, NO cleaning fee",12374283,Ryan,Manhattan,East Village,40.72403,-73.97783,Entire home/apt,300,2,1,2017-11-26,0.05,4,0 +6973598,Large bedroom in Astoria/LIC area,36566148,Felicia,Queens,Long Island City,40.75328,-73.92244,Private room,55,1,5,2015-07-28,0.10,1,0 +6974249,Prime Williamsburg Location,6623402,Robert,Brooklyn,Williamsburg,40.7196,-73.95599,Entire home/apt,125,1,6,2016-08-28,0.13,1,0 +6974728,"Private Room, Bath & Terrace on UWS",36571434,Zack,Manhattan,Upper West Side,40.80016,-73.96448,Private room,139,2,24,2018-06-22,0.50,1,20 +6974801,"1BR with Roof, Balcony, best 'hood!",21175506,Peter,Brooklyn,Greenpoint,40.73006,-73.95694,Entire home/apt,165,1,1,2015-07-03,0.02,1,0 +6975129,"Large room, cozy, 15min Manhattan",36575095,Hana,Brooklyn,Clinton Hill,40.68409,-73.96531,Private room,50,1,1,2015-07-03,0.02,1,0 +6976045,Cozy apt in lively Carroll Gardens,1373836,Carlotta,Brooklyn,Carroll Gardens,40.68151,-73.99285,Entire home/apt,150,5,3,2016-12-27,0.06,1,0 +6977204,Private Room in Very Convenient Location,687062,Sarah,Manhattan,Harlem,40.81398,-73.95213,Private room,65,1,142,2019-06-21,4.22,1,93 +6982174,Room for rent shared bathroom,36610302,Eudelia,Brooklyn,Bedford-Stuyvesant,40.68682,-73.92019,Private room,50,1,0,,,1,0 +6985434,*SKYTRAIN* Studio Loft Apartment - Great Space!,25237492,Juliana,Manhattan,Upper West Side,40.78201,-73.98379,Entire home/apt,120,30,9,2019-04-30,0.24,34,339 +6985888,*TERRA GARDEN* 1 Bedroom Garden Apartment,25237492,Juliana,Manhattan,Upper West Side,40.7818,-73.98483,Entire home/apt,115,30,7,2018-10-31,0.19,34,325 +6987811,Cozy Brooklyn Room W/ Skylight,23582893,Laramie,Brooklyn,Bushwick,40.69054,-73.91446,Private room,51,13,20,2019-06-26,0.41,8,14 +6988265,Great for a family of 4!,36634420,Kobi,Manhattan,Washington Heights,40.85183,-73.94022,Entire home/apt,120,1,0,,,1,0 +6988793,"Perfect for Cat, Book, Park Lovers!",13857446,Laura,Brooklyn,Flatbush,40.65371,-73.95623,Entire home/apt,90,2,12,2015-12-19,0.25,1,0 +6988794,Private Room in large 2 bedroom apt,36641477,David,Queens,Forest Hills,40.724,-73.84962,Private room,75,3,1,2015-08-31,0.02,1,0 +6988905,A Perfect Midtown Studio (24/hr Doorman),36133913,Matt,Manhattan,Midtown,40.7544,-73.97345,Entire home/apt,190,2,25,2018-11-19,0.51,1,4 +6989258,Cozy Gem in Harlem Close to ALL!,7339760,Maritza,Manhattan,East Harlem,40.79243,-73.93952,Entire home/apt,130,2,1,2015-08-13,0.02,1,0 +6989436,Spanish Harlem with terrace.,36644635,Ingrid,Manhattan,East Harlem,40.79229,-73.94962,Private room,80,2,142,2018-12-16,3.05,1,0 +6990524,3BR Gramercy Apt in heart of NYC,36650631,Alissa,Manhattan,Kips Bay,40.73912,-73.9825,Entire home/apt,300,1,0,,,1,0 +6991749,NO LONGER AVAILABLE,16978260,Dominque,Manhattan,Harlem,40.81161,-73.94306,Shared room,70,1,0,,,1,365 +6991910,"Discount! Mins to SOHO -Cozy, Good Sized Bedroom",36656552,Kandee,Manhattan,Lower East Side,40.71947,-73.99327,Private room,150,1,2,2016-09-23,0.04,3,0 +6992300,Tranquility On Riverside,24530713,Byron,Manhattan,Harlem,40.82416,-73.95306,Private room,75,1,11,2019-05-29,0.25,3,332 +6992310,A Serene NYC Skyline Room w Breakfast!,18260299,Ota,Brooklyn,Bushwick,40.69347,-73.90703,Private room,50,30,2,2018-07-06,0.04,6,5 +6992831,Big 1 Bedroom Brooklyn Ditmas Park,36663321,Mel,Brooklyn,Flatbush,40.63504,-73.96603,Private room,60,3,173,2019-06-25,3.52,1,281 +6992939,"Beautiful Cute Studio, Fort Greene",1281637,Jessica,Brooklyn,Fort Greene,40.6873,-73.97225,Entire home/apt,140,2,1,2015-08-24,0.02,1,0 +6992973,1 Bedroom in Prime Williamsburg,5162530,,Brooklyn,Williamsburg,40.71838,-73.9563,Entire home/apt,145,1,0,,,1,0 +6993265,Huge Loft - Heart of Williamsburg,36666388,Gabriel,Brooklyn,Williamsburg,40.7166,-73.96379,Entire home/apt,375,2,0,,,1,0 +6994064,The Most Efficient Efficiency Ever,35928174,Greg,Brooklyn,Williamsburg,40.70458,-73.94095,Entire home/apt,110,2,15,2019-07-01,0.31,1,12 +6994259,Beautiful apartment in awesome Clinton Hill!,36673376,Xristina&Keith,Brooklyn,Bedford-Stuyvesant,40.69213,-73.95869,Entire home/apt,100,15,5,2019-05-20,0.26,1,24 +6999056,Manhattan at its best! Trendy area,415502,Enrica,Manhattan,Harlem,40.80418,-73.95513,Private room,70,1,3,2015-08-21,0.06,1,0 +7001872,Perfect UES; steps from Park Ave,36708202,Robert,Manhattan,Upper East Side,40.76425,-73.96811,Entire home/apt,195,7,26,2019-06-30,0.54,1,1 +7002139,Must Love Dogs / Bushwick Brooklyn,2720363,Ange,Brooklyn,Bushwick,40.68802,-73.91474,Private room,125,2,4,2019-06-01,0.19,1,310 +7002250,Sunny studio in the Upper East Side,36452416,Allie,Manhattan,Upper East Side,40.77138,-73.94809,Entire home/apt,95,14,2,2017-09-16,0.06,1,4 +7002269,15 min walk to Prospect Park!,10945786,Keith,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94882,Private room,30,6,1,2015-09-17,0.02,1,0 +7002406,Near Columbia University,36710507,Tao,Manhattan,Morningside Heights,40.81514,-73.95954,Private room,80,1,0,,,1,0 +7002884,Studio with East River View,36713105,Markus,Manhattan,East Harlem,40.78551,-73.94167,Entire home/apt,99,3,4,2016-06-15,0.10,1,0 +7002915,Charming UWS 1-bedroom w/loft,1599175,Louise,Manhattan,Upper West Side,40.77828,-73.9764,Entire home/apt,165,3,1,2017-03-20,0.04,1,0 +7003507,Whole Apartment - Beautiful Sunny Studio,6968630,Doug,Brooklyn,Crown Heights,40.67627,-73.94775,Entire home/apt,95,4,5,2018-07-23,0.10,1,1 +7003697,Furnished room in Astoria apartment,20582832,Kathrine,Queens,Astoria,40.7681,-73.91651,Private room,10000,100,2,2016-02-13,0.04,1,0 +7003788,Luxury Apt 10mins Manhattan,21773199,Joo,Queens,Long Island City,40.74406,-73.94504,Entire home/apt,149,4,4,2015-10-17,0.09,1,0 +7004408,Cozy & Zen Manhattan Soho Studio,21641864,Yann,Manhattan,SoHo,40.72745,-74.0027,Entire home/apt,190,6,61,2019-06-07,1.27,1,275 +7006151,Warm Cozy Manhattan Studio,36727985,Patricia,Manhattan,Midtown,40.74379,-73.98795,Entire home/apt,177,3,22,2019-06-21,0.45,1,0 +7006494,Chelsea Square Apartment,36726560,Curtis,Manhattan,Chelsea,40.74613,-74.00468,Entire home/apt,350,1,0,,,1,0 +7009152,Four stops to Manhattan!,22908412,Donna,Brooklyn,Crown Heights,40.67259,-73.95831,Private room,65,2,155,2019-06-22,3.17,1,117 +7010135,Upper East Side - 1 Bedroom Queen,24706492,Dani,Manhattan,Upper East Side,40.77734,-73.95779,Shared room,130,7,0,,,1,0 +7010681,Gorgeous Garden Apt Steps To Park,36754170,Steve,Brooklyn,Prospect-Lefferts Gardens,40.65703,-73.95964,Entire home/apt,110,1,2,2015-08-10,0.04,1,0 +7015831,Relaxing bedroom in 6br apartment,36029533,John,Brooklyn,Bushwick,40.69034,-73.91666,Private room,35,1,1,2015-07-28,0.02,1,0 +7017768,W.B. Spacious Contemporary Living 3,36164182,Glender,Brooklyn,Bushwick,40.6969,-73.93435,Private room,75,2,46,2019-05-07,0.94,3,256 +7018619,Cozy Bedroom in Renovated Harlem Apartment,4783045,Delesia,Manhattan,Harlem,40.81435,-73.94588,Private room,52,2,1,2016-07-20,0.03,1,0 +7019122,Giant Sunny East Williamsburg LOFT!,1733462,Kim,Brooklyn,Williamsburg,40.71351,-73.92999,Entire home/apt,160,4,40,2019-06-20,0.83,1,138 +7019534,Beautiful convenient Brooklyn loft,34908118,Linda,Brooklyn,Williamsburg,40.70711,-73.95136,Entire home/apt,100,3,5,2016-12-14,0.11,1,0 +7020266,Private room in sunny apt.,3524653,Simona,Brooklyn,Williamsburg,40.71688,-73.94162,Private room,90,2,18,2019-05-20,0.37,1,280 +7020776,Mid Century Beauty In East Village,6406576,Wendy,Manhattan,East Village,40.72795,-73.98503,Entire home/apt,250,5,0,,,1,0 +7021346,Nice and Cozy Room,6661559,Melissa,Manhattan,East Village,40.72294,-73.9857,Private room,99,1,0,,,1,0 +7023033,♡Private Rm/Women's Safe Art Home♡,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93208,Private room,99,1,4,2015-10-07,0.08,3,189 +7023437,Loft rental off of Graham!,1298759,Frances,Brooklyn,Williamsburg,40.71303,-73.94063,Entire home/apt,220,7,2,2016-08-23,0.04,1,0 +7023583,LG Bright Apartment,36816110,Katie,Manhattan,Morningside Heights,40.80481,-73.96375,Private room,45,21,4,2018-01-06,0.09,1,0 +7023636,"Safe,quiet,cozy,Washington Hts Apt",36816089,Lynn,Manhattan,Washington Heights,40.84454,-73.94188,Private room,70,1,0,,,1,0 +7023739,Charming One Bedroom in UES!,23833056,Mira,Manhattan,Upper East Side,40.7688,-73.9535,Private room,150,1,0,,,1,0 +7023818,Near Central Park & Grand Central,36817279,Steve,Manhattan,Midtown,40.7587,-73.96705,Private room,105,2,17,2019-04-28,0.55,1,190 +7024079,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.80395,-73.96531,Private room,50,3,3,2015-08-17,0.06,2,0 +7024138,Sunny - Large Two Bedroom,12930988,Be,Manhattan,Upper East Side,40.78402,-73.94974,Entire home/apt,222,2,94,2019-06-23,2.16,1,281 +7024303,LIGHTFILLED ONE BEDROOM LOFT,2750745,Sarah,Brooklyn,Bedford-Stuyvesant,40.69039,-73.95947,Entire home/apt,120,2,4,2017-10-29,0.08,1,0 +7024342,"Custom Designed Cozy Garden Apt,",36579485,Jean& Toney,Brooklyn,Canarsie,40.64574,-73.90781,Entire home/apt,600,7,0,,,3,365 +7024474,Beautiful Private Room,15929157,Christina,Brooklyn,East New York,40.6724,-73.88118,Private room,34,20,29,2019-03-30,0.59,3,192 +7024538,Sublet entire apt in Brooklyn,16112564,Laszlo Jakab,Brooklyn,Brooklyn Heights,40.69382,-73.99334,Entire home/apt,130,7,1,2015-06-29,0.02,1,0 +7024774,Our beautiful apt in Fort Greene,703023,Rebecca,Brooklyn,Fort Greene,40.69276,-73.97061,Entire home/apt,205,3,3,2019-06-30,0.06,1,0 +7024778,Charming & Modern One Bedroom in BK,238354,Israel,Brooklyn,Clinton Hill,40.68524,-73.9607,Entire home/apt,150,3,125,2019-06-25,2.60,1,271 +7025026,Prime West Village w/Outdoor Patio,3011750,Drew,Manhattan,West Village,40.73669,-74.00375,Entire home/apt,149,3,5,2016-05-15,0.10,1,0 +7025693,Beautiful Brooklyn Brownstone,3743867,Megan,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95275,Private room,100,1,0,,,1,0 +7026258,Airy Living Room | 15 min. to GC,33736005,Sarah,Queens,Sunnyside,40.74439,-73.92163,Shared room,50,1,1,2015-06-28,0.02,2,0 +7028199,NO FEE RENTAL *Lease Takeover Modern Apt Downtown,4051711,Monica,Manhattan,Financial District,40.70809,-74.0017,Entire home/apt,210,1,0,,,1,0 +7031803,1 bdr in the heart of Harlem,1971850,Jonathan,Manhattan,Harlem,40.81054,-73.94447,Private room,135,1,0,,,1,0 +7032396,Large 1Br Apt + Balcony in LES!,3716646,Elena,Manhattan,Lower East Side,40.72115,-73.98308,Entire home/apt,240,5,1,2015-09-16,0.02,1,0 +7032855,Clean & Cozy- Private Room by Park and Subway!,7651357,Jayanthi,Brooklyn,Flatbush,40.65452,-73.9596,Private room,48,2,55,2018-06-14,1.12,1,0 +7032930,BROWNSTONE DUPLEX HUGE 1 BEDROOM,14104350,Irving,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94232,Entire home/apt,90,5,25,2019-06-03,0.53,2,347 +7033271,Amazing room in uptown Manhattan,27439022,Boris,Manhattan,Washington Heights,40.85008,-73.94277,Private room,85,2,95,2019-07-06,1.96,1,321 +7034609,Comfy room close to Columbia,36871638,Francisco,Manhattan,Morningside Heights,40.81142,-73.95978,Private room,70,4,5,2018-01-02,0.10,1,0 +7034787,Furnished Bedroom in 2 Bedroom apt.,36881439,Etkin,Queens,Long Island City,40.756,-73.9205,Private room,60,7,0,,,1,365 +7034953,"Elegant 1BR, Private Bath in Brownstone",9492212,Emily And Joel,Brooklyn,Park Slope,40.6688,-73.97865,Private room,139,1,184,2019-02-10,3.86,4,0 +7035051,park slope duplex with yard,33821265,Liz,Brooklyn,Park Slope,40.67792,-73.98035,Private room,200,1,0,,,1,0 +7035513,Sunny 1BR on UES.,36885571,Vitaly,Manhattan,Upper East Side,40.77098,-73.95034,Entire home/apt,153,1,76,2019-06-23,1.61,1,305 +7035579,Bright spacious 1BR w high ceilings,36885622,James,Manhattan,Upper West Side,40.7855,-73.97642,Entire home/apt,125,1,0,,,1,0 +7036079,2BR apt. in converted church with large terrace,5781885,Annika,Brooklyn,Cobble Hill,40.68836,-73.99763,Entire home/apt,285,6,6,2018-10-27,0.13,1,0 +7036285,Couch or space in shared apartment,36889987,Lisa,Manhattan,East Village,40.72815,-73.97598,Shared room,100,1,0,,,1,0 +7036290,NYC Chauncey 2 .20 min to manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68237,-73.91977,Private room,50,1,123,2019-03-17,2.95,4,349 +7036435,Quiet Bushwick Bedroom,5476372,Stonie,Brooklyn,Bushwick,40.69289,-73.92312,Private room,35,1,3,2017-01-11,0.06,1,0 +7037537,Gigantic Private Brooklyn Apartment,36897569,Nikki,Brooklyn,Greenpoint,40.72442,-73.93957,Entire home/apt,115,10,2,2016-07-06,0.04,1,0 +7037585,Sunny & Spacious near Central Park,2170381,Guida,Manhattan,East Harlem,40.79674,-73.94449,Private room,73,5,4,2016-01-06,0.08,1,242 +7037791,Alexander's 2BR Luxury Quarters,36899834,Juan,Brooklyn,Bedford-Stuyvesant,40.6874,-73.9383,Entire home/apt,180,3,123,2019-06-26,2.53,1,211 +7037918,"Near LGA, Citifield, US Open Tennis",36242220,Carmen,Queens,East Elmhurst,40.76578,-73.86424,Private room,60,1,209,2019-06-11,4.38,1,364 +7037999,Bright Bedroom in Bustling Bed Stuy Brooklyn,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92825,Private room,50,2,34,2019-07-01,0.70,3,279 +7038801,Private room in the best part of BK,36907706,Brad,Brooklyn,Crown Heights,40.66743,-73.94712,Private room,58,7,49,2019-06-01,1.01,1,81 +7041968,1 BR apartment sublet.,36926132,Tassili,Manhattan,Harlem,40.80594,-73.95363,Entire home/apt,80,5,0,,,1,0 +7043746,2 block walk from the beach in NYC,36935244,Vladimir,Queens,Arverne,40.5927,-73.7899,Entire home/apt,250,2,89,2019-05-26,1.82,1,300 +7043817,Williamsburg family home -3 bedroom,20270730,Lou,Brooklyn,Williamsburg,40.71558,-73.93926,Entire home/apt,499,5,4,2016-03-27,0.08,1,0 +7047076,Patio Oasis in Upper East Side,3434070,Margaret,Manhattan,Upper East Side,40.77703,-73.94773,Entire home/apt,159,4,8,2016-08-08,0.17,1,0 +7047329,Adorable One-Bed in Williamsburg!,36956206,Taylor,Brooklyn,Williamsburg,40.71687,-73.94656,Entire home/apt,140,1,66,2019-06-16,1.35,1,5 +7047808,"Loft Space for Events, Meetings & Shoots",1299252,Kalin,Manhattan,Flatiron District,40.74068,-73.98999,Entire home/apt,850,1,177,2019-06-29,3.78,1,268 +7048195,Lrg room 1 block from Prospect Park,90316,Dave,Brooklyn,Flatbush,40.65231,-73.96189,Private room,38,3,0,,,1,7 +7048331,Wonderful artists' loft in Brooklyn,1154790,Daniel,Brooklyn,Crown Heights,40.66673,-73.96127,Entire home/apt,289,1,0,,,1,0 +7048398,Columbus Ave Apt 1 block from Park,21323838,Lawrence,Manhattan,Upper West Side,40.77408,-73.98181,Entire home/apt,245,5,17,2019-01-04,0.35,1,346 +7048418,3BR/1 Ba in TriBeCa w/ outdoor deck,36962150,Nick,Manhattan,Tribeca,40.71845,-74.01183,Entire home/apt,500,1,0,,,1,0 +7048508,"Welcoming, Clean, Cheap on St Marks",26389845,Felipe,Manhattan,East Village,40.72826,-73.98422,Private room,130,1,8,2015-09-06,0.16,2,0 +7048518,Spare room in Williamsburg,36962041,Krik,Brooklyn,Williamsburg,40.70862,-73.94651,Private room,80,1,0,,,1,0 +7050316,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.8046,-73.96545,Private room,50,1,1,2015-07-06,0.02,2,0 +7050731,"Comfy, bright room in Brooklyn",2042568,Megan,Brooklyn,Park Slope,40.67505,-73.98045,Private room,95,3,0,,,1,0 +7051619,Big Studio-One Stop from Midtown,36980964,Christopher,Queens,Long Island City,40.74989,-73.93777,Entire home/apt,155,2,5,2015-10-11,0.10,1,0 +7052026,585 sf Luxury Studio,36976268,Rebecca,Manhattan,Upper West Side,40.76807,-73.98342,Entire home/apt,400,1,0,,,1,0 +7053353,Large PB w/ Half Bath in Astoria,8002698,Jeremy,Queens,Astoria,40.75966,-73.90924,Private room,27,30,3,2017-10-15,0.07,1,0 +7053496,Charming private room,15542610,Carol,Manhattan,Washington Heights,40.84289,-73.93925,Private room,60,1,86,2017-01-09,1.94,1,0 +7053502,Artist Ft Greene Brownstone Garden View,36894011,Miriam,Brooklyn,Fort Greene,40.68835,-73.9736,Private room,120,2,77,2019-06-26,1.68,2,0 +7053815,HUGE Entire Flr. Private Entry/Bath,18600674,Jeannie,Brooklyn,Williamsburg,40.71805,-73.93973,Private room,103,100,128,2018-05-10,2.63,1,358 +7054267,"Clean, quiet Upper East Side apt .",36998520,Alex And Lindsey,Manhattan,Upper East Side,40.76719,-73.95358,Entire home/apt,155,15,0,,,1,0 +7054405,Large room in Prospect Park,36999491,Kyle,Brooklyn,Flatbush,40.65326,-73.96011,Private room,80,1,0,,,1,0 +7054468,Lovely Light-Filled Room,29702921,Navarra,Manhattan,East Village,40.72206,-73.97982,Private room,80,1,0,,,1,0 +7054585,"Spacious Loft in NYC, close to all",24830540,David,Brooklyn,Williamsburg,40.71188,-73.95088,Private room,85,1,1,2015-10-07,0.02,1,0 +7054797,"2 brm, fully equip bth/rm, kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68485,-73.76063,Entire home/apt,150,3,7,2019-05-27,0.19,3,179 +7054824,West Village 1 BR spectacular views,8082431,Samriti,Manhattan,West Village,40.73489,-74.00182,Entire home/apt,220,1,84,2019-06-25,1.75,1,6 +7059663,WALk 2MOMACENTRAL PARK 1bedroomliving roomQtrain,29204097,Jason,Manhattan,Upper East Side,40.77516,-73.95224,Entire home/apt,160,1,18,2019-06-23,0.95,1,180 +7061944,"Charming, bright and airy studio",2180889,Lisa,Brooklyn,Brooklyn Heights,40.69454,-73.99499,Entire home/apt,125,1,0,,,1,24 +7062446,Midtown Manhattan Hideout,16639377,Brad,Manhattan,Midtown,40.74631,-73.98551,Private room,150,1,0,,,1,0 +7062987,FULL cozy 1 bedroom apt in the UES,4193378,Laureen,Manhattan,Upper East Side,40.77269,-73.95055,Entire home/apt,140,7,8,2018-01-04,0.18,1,0 +7063158,Luxury Studio in High-End Building,37035401,Sam,Manhattan,Upper West Side,40.7736,-73.98428,Entire home/apt,500,3,36,2019-06-10,0.75,1,85 +7063407,Duplex w/Backyard in Fort Greene,12605496,Brooks,Brooklyn,Fort Greene,40.68859,-73.972,Entire home/apt,205,2,0,,,1,0 +7064148,Sunny room w/ Private Bath&Balcony!,11068937,Kara,Brooklyn,Greenpoint,40.73136,-73.95276,Private room,140,2,21,2016-05-30,0.43,2,0 +7064199,One-month SUBLET - bright big room,37040263,Hector And Miriam,Brooklyn,Bushwick,40.69682,-73.91458,Private room,80,1,1,2015-07-14,0.02,1,0 +7064935,Private Room in Gorgeous Apartment In Manhattan,33622924,Besinfe,Manhattan,Harlem,40.8298,-73.94683,Private room,70,1,141,2019-06-20,2.99,4,348 +7065307,Central Soho Apartment,4242708,Jen,Manhattan,SoHo,40.726,-74.00204,Entire home/apt,150,4,12,2019-01-01,0.31,1,0 +7065653,Modern One Bedroom in Kips Bay (4),1306850,Kalpana,Manhattan,Kips Bay,40.7402,-73.97935,Entire home/apt,195,2,7,2016-11-19,0.15,1,0 +7065748,1 Room in Spacious East Village Apt,37047337,Will,Manhattan,East Village,40.72332,-73.97985,Private room,57,1,0,,,1,0 +7066122,1 BEDROOM PENTHOUSE W AMAZING VIEWS,7951613,Andrew,Queens,Long Island City,40.7419,-73.95738,Entire home/apt,125,2,7,2016-07-03,0.14,1,0 +7066414,Fabulous Apartment with Soaking Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77553,-73.95343,Entire home/apt,120,30,2,2018-12-22,0.08,29,209 +7067406,Lovely Apt. heart of W. Village,10174191,Chris,Manhattan,West Village,40.73055,-74.00435,Entire home/apt,275,3,58,2019-06-14,1.20,1,59 +7069743,Private Bedroom in Shared Apartment,17475096,Rosemary,Brooklyn,Flatbush,40.65192,-73.96023,Private room,75,1,0,,,2,0 +7070287,Bushwick Artist's Bedroom,16602154,Travis,Brooklyn,Bushwick,40.69811,-73.93051,Private room,60,3,1,2015-07-24,0.02,1,0 +7070947,Exposed Brick Large Soho Nolita Apt,17470984,Andy,Manhattan,Chinatown,40.71813,-73.99665,Private room,89,3,7,2019-04-30,0.18,1,317 +7071657,1 BR UPPER EAST SIDE,4909308,Francesco,Manhattan,Upper East Side,40.77344,-73.95035,Entire home/apt,243,1,26,2019-06-22,1.10,1,149 +7071672,Top floor apartment weside Harlem,37077066,Drew,Manhattan,Harlem,40.81863,-73.95748,Private room,90,1,0,,,1,0 +7071677,"Cozy room in Bushwick, Dekalb L train, Backyard!",37076121,Christopher,Brooklyn,Bushwick,40.69899,-73.92286,Private room,50,2,2,2017-08-31,0.06,1,0 +7072245,Room in Heart of East Village!,6474887,Dean,Manhattan,East Village,40.72397,-73.97855,Private room,115,1,0,,,1,0 +7072541,"1Bdr Artist Apt. (L,M,J,Z trains)",35819315,Hui & Jon,Brooklyn,Bushwick,40.6942,-73.92024,Entire home/apt,150,4,11,2017-05-22,0.23,2,8 +7073418,Mod Glamor in Bed-Stuy Garden Flat,4582256,Consuelo,Brooklyn,Bedford-Stuyvesant,40.68297,-73.93804,Entire home/apt,250,2,3,2015-10-20,0.06,1,0 +7073436,Williamsburg Private Retreat_NYC,2141626,Alejandro,Brooklyn,Williamsburg,40.71067,-73.95419,Private room,109,2,118,2019-07-01,2.54,1,14 +7074232,Studio with Outdoor Space,4133458,Rob,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95282,Entire home/apt,120,2,0,,,1,0 +7074488,"Bilevel Penthouse: Park, City Views",43772,David,Brooklyn,Greenpoint,40.72074,-73.94741,Entire home/apt,272,3,3,2015-08-31,0.06,1,0 +7074504,Lovely private room with half bath,37091023,Olivia,Brooklyn,Park Slope,40.67102,-73.9808,Private room,100,1,1,2015-07-19,0.02,1,0 +7074961,"Spacious bright 2-bed duplex in Bed-Stuy, Brooklyn",37095710,Mary,Brooklyn,Clinton Hill,40.68664,-73.95981,Entire home/apt,170,7,3,2016-09-09,0.08,1,0 +7075103,1BR Greenwich Village Apt. NYC,37096607,Neil,Manhattan,Greenwich Village,40.72968,-74.00114,Entire home/apt,175,2,5,2015-12-30,0.11,1,0 +7075449,Bushwick Beauty,11453695,Sasha,Brooklyn,Bushwick,40.70317,-73.92724,Private room,85,6,1,2015-07-06,0.02,1,0 +7082866,Comfy Alcove Studio,6766728,Javier,Manhattan,East Village,40.72639,-73.98756,Entire home/apt,150,4,1,2016-01-02,0.02,1,0 +7083264,"PERFECT: Times Squ., Broadway CntPrk, Bars, Eats,",32212535,Bronson & Sam,Manhattan,Hell's Kitchen,40.76551,-73.98899,Shared room,116,2,101,2018-12-01,2.07,2,42 +7084130,Large Sunny Private Room,22095455,Danni,Manhattan,Civic Center,40.71674,-74.00334,Private room,100,5,1,2015-08-03,0.02,1,0 +7084621,Renovated W. Village 2 bed 2 bath,27919510,Alexander,Manhattan,West Village,40.73634,-74.00485,Entire home/apt,350,1,7,2017-01-01,0.15,1,0 +7086310,Chic room in big apt near Columbia Medical Center,37138042,John And Kelsey,Manhattan,Washington Heights,40.83621,-73.94646,Private room,80,3,112,2019-06-21,2.29,1,144 +7086331,"Quiet city stay, steps to subway, 15 to Times Sq.",3923244,Bryan,Queens,Astoria,40.76623,-73.91902,Entire home/apt,80,5,17,2019-04-07,0.35,1,12 +7086539,LARGE APARTMENT near TRAIN!!,24982709,Jermaine Antonio,Brooklyn,Bushwick,40.68774,-73.9155,Entire home/apt,110,29,103,2019-02-28,2.16,1,222 +7087255,Charming Windsor Terrace Home,3974249,Amanda,Brooklyn,Windsor Terrace,40.65459,-73.97475,Entire home/apt,267,2,14,2018-12-29,0.42,1,1 +7087528,Private Cozy Bedroom,5476918,Joann,Bronx,Kingsbridge,40.87183,-73.90371,Private room,75,1,0,,,1,0 +7087549,Riverside Park One Bedroom w/ King,10566585,Evyan,Manhattan,Upper West Side,40.7777,-73.9896,Entire home/apt,200,1,0,,,1,0 +7087752,Lovely Room in Wonderful Apartment,12602098,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68115,-73.95074,Private room,55,1,2,2015-07-15,0.04,1,0 +7089310,One of a kind big home in Queens,37157641,Madi,Queens,Jamaica Estates,40.72223,-73.78565,Entire home/apt,398,4,55,2019-06-30,1.28,1,82 +7089639,"Cozy Room, Heart of East Village",19834927,Ryan,Manhattan,East Village,40.72382,-73.98171,Private room,80,1,3,2016-01-02,0.06,1,0 +7090264,UNFURNISHED Bed-Stuy 1BR garden apt,10285950,Christina,Brooklyn,Bedford-Stuyvesant,40.68403,-73.92071,Entire home/apt,125,30,3,2017-07-21,0.11,3,308 +7090512,"Bedroom #4, Basement level, Park, express Q train",2478675,Gina,Brooklyn,Flatbush,40.6541,-73.95814,Private room,38,1,41,2019-06-30,0.87,5,335 +7091014,Cute and Cozy in South Slope/Gowanus Brooklyn,24825760,Jacky,Brooklyn,Gowanus,40.66664,-73.99348,Private room,80,2,18,2017-10-08,0.52,1,189 +7091125,"Flatiron Studio Loft, Elevator Bldg",7719262,Ryan,Manhattan,Flatiron District,40.74138,-73.98814,Entire home/apt,299,28,160,2019-06-22,3.39,1,315 +7091390,Apartment on Riverside,14329995,Nikolas,Manhattan,Harlem,40.82632,-73.95168,Entire home/apt,125,4,2,2018-06-25,0.04,1,0 +7091660,1BR in large apt on Lower East Side,37170055,Sara,Manhattan,Lower East Side,40.72348,-73.99095,Private room,250,1,0,,,1,1 +7092505,Beautiful duplex studio with 2 queen beds,7503643,Vida,Brooklyn,Greenpoint,40.72568,-73.94142,Entire home/apt,129,30,4,2019-06-15,0.08,52,357 +7092618,Central Park Studio,16381764,Rachel,Manhattan,Upper East Side,40.7604,-73.96257,Entire home/apt,190,1,36,2019-05-21,0.75,1,358 +7093122,Perfect Downtown Location in Nolita,36562419,Dan,Manhattan,Nolita,40.72123,-73.99513,Private room,90,1,1,2015-07-17,0.02,1,0 +7093920,Roosevelt Island Charm,37181980,Svetlana,Manhattan,Roosevelt Island,40.76193,-73.94933,Private room,83,2,178,2019-07-05,3.72,1,255 +7093979,1st Floor 3 Bedroom Apt Midtown NYC,3946744,Raj,Manhattan,Midtown,40.75651,-73.96696,Entire home/apt,450,2,0,,,1,0 +7094110,Cozy apartment near Central Park!,25109461,Alex,Manhattan,East Harlem,40.79326,-73.93988,Entire home/apt,102,1,0,,,1,11 +7094112,"Stuyvesant, East Village",12749467,Naomi,Manhattan,East Village,40.73022,-73.98893,Entire home/apt,198,30,5,2019-01-08,0.11,1,301 +7094262,53rd & 3rd Midtown Manhattan,22625462,Gwendolyn,Manhattan,Midtown,40.75788,-73.9689,Entire home/apt,149,2,14,2016-05-01,0.30,1,0 +7094462,Adorable One Bedroom in Greenpoint,10896584,Julianna,Brooklyn,Greenpoint,40.7324,-73.95828,Entire home/apt,120,2,6,2015-10-04,0.13,1,0 +7094539,Tranquil haven in bubbly Brooklyn,2052211,Adriana,Brooklyn,Windsor Terrace,40.6536,-73.97546,Entire home/apt,143,14,2,2016-08-27,0.04,1,10 +7094619,Luxury Apt in Prime Location,37186427,Olta,Manhattan,Kips Bay,40.7449,-73.97959,Private room,120,1,1,2015-07-24,0.02,1,0 +7094976,1 private bedroom in cool BK hood!!,1714147,Nastasha,Brooklyn,Crown Heights,40.67101,-73.9525,Private room,44,4,0,,,1,0 +7095125,"Discount! Mins to SOHO -Queen bed, spacious",36656552,Kandee,Manhattan,Lower East Side,40.71892,-73.99241,Private room,150,1,51,2018-09-06,1.05,3,0 +7095426,Stunning studio on Wall street,2252859,Anne-Sophie,Manhattan,Financial District,40.70668,-74.00913,Entire home/apt,160,200,0,,,1,365 +7095534,Private BR in ABC,37191710,Kevin,Manhattan,East Village,40.72474,-73.98273,Private room,110,1,1,2015-07-23,0.02,1,0 +7095708,NYC Brooklyn Rooftop Full Apartment,37191929,John,Brooklyn,Crown Heights,40.67921,-73.9603,Entire home/apt,125,2,31,2018-03-04,0.67,1,0 +7095783,"Charming , sweet , and cozy Manhattan apartment.",9819284,Alexis,Manhattan,Upper East Side,40.76533,-73.96163,Entire home/apt,270,4,44,2019-07-02,0.92,1,335 +7095888,A Spacious & Homelike Brooklyn Stay,32252422,Mckinley,Brooklyn,Canarsie,40.64796,-73.89176,Entire home/apt,110,2,38,2019-07-06,0.81,2,290 +7101296,Cute apartment in Upper West Side,37011739,Stacey,Manhattan,Upper West Side,40.79435,-73.9745,Entire home/apt,145,5,7,2018-08-01,0.16,1,0 +7101822,Bright & airy 2BR penthouse apt,3627066,Andrea,Brooklyn,South Slope,40.66657,-73.98725,Entire home/apt,190,7,2,2015-10-17,0.04,1,0 +7105709,Great place in Chelsea/West Village,3664074,Kudjo,Manhattan,West Village,40.73894,-74.00067,Entire home/apt,250,2,5,2016-08-22,0.10,1,0 +7105865,Large Room in Upper Manhattan,24797068,Amber,Manhattan,Washington Heights,40.83663,-73.94502,Private room,45,9,1,2016-08-19,0.03,1,0 +7106154,Beautiful Spacious private studio,37229098,Alexandra,Brooklyn,Bushwick,40.70041,-73.93957,Entire home/apt,200,2,9,2019-07-01,0.19,1,357 +7108992,Huge Upper West Side Apartment - 3 rooms,3801047,Anna,Manhattan,Upper West Side,40.7982,-73.96931,Entire home/apt,187,3,1,2015-09-05,0.02,1,0 +7110657,1BR Perfect Williamsburg Location,37248762,Roger,Brooklyn,Williamsburg,40.71643,-73.95431,Private room,90,3,0,,,1,0 +7111050,Cozy Couch In Great Space Perfect For Backpackers,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92989,Shared room,29,2,102,2019-07-01,2.11,3,288 +7111775,Charming Park Slope Studio,37252712,Shira,Brooklyn,Park Slope,40.66817,-73.98406,Entire home/apt,100,3,5,2018-02-24,0.17,1,0 +7112684,Sunny & Clean Apt ideal location E.Williamsburg!,26998839,Shahar,Brooklyn,Williamsburg,40.70684,-73.93854,Entire home/apt,90,7,6,2019-06-07,0.15,2,302 +7113258,Private sunny room in Bushwick,11725595,Basil,Brooklyn,Bushwick,40.70415,-73.92551,Private room,100,1,0,,,1,0 +7113393,King size Bed/room in 2 Bed Apt in E.Williamsburg,26998839,Shahar,Brooklyn,Williamsburg,40.70675,-73.93909,Private room,85,11,7,2016-09-17,0.14,2,316 +7114665,Large room,34866720,Louis,Queens,Ridgewood,40.70866,-73.90578,Private room,69,1,0,,,1,0 +7116034,Beautiful room. Private bathroom.,16296388,Mario,Brooklyn,Bushwick,40.68412,-73.91045,Private room,43,1,4,2017-06-06,0.13,1,0 +7116071,30 Minutes to Manhattan / Sleeps 7,36903907,Moe,Brooklyn,Bensonhurst,40.61112,-74.00028,Entire home/apt,145,2,207,2019-07-02,4.26,1,287 +7116273,Sunny private room close to all,37166807,Jake,Brooklyn,Sunset Park,40.65702,-73.99874,Private room,65,7,37,2016-09-08,0.78,1,0 +7116654,Big room overlooking Prospect Park!,7078254,Leila,Brooklyn,Prospect-Lefferts Gardens,40.65683,-73.9609,Private room,45,1,2,2015-09-07,0.04,1,0 +7116799,Spring special ~,37291339,Latoya,Queens,Jamaica,40.69121,-73.78342,Entire home/apt,130,2,77,2019-04-23,1.65,1,322 +7116864,Central Park 1BR Apt NYC Manhattan,20515254,Gill,Manhattan,Upper West Side,40.76812,-73.98341,Entire home/apt,99,3,99,2019-06-23,2.08,1,45 +7122067,Finally! A room with amazing vibes!,37275619,David,Manhattan,Washington Heights,40.85471,-73.93021,Private room,90,1,0,,,1,0 +7122588,Cheap NYC APT! 20 Day Stay!,33002613,Preston,Manhattan,Washington Heights,40.8347,-73.94413,Private room,45,10,0,,,1,0 +7124028,Soho Loft,1788377,Janis,Manhattan,SoHo,40.72621,-74.00186,Entire home/apt,200,1,0,,,1,0 +7124926,Sunny 2BR in Heart of Fort Greene,2055744,Hila,Brooklyn,Fort Greene,40.68842,-73.97254,Entire home/apt,149,4,1,2015-12-31,0.02,1,0 +7125107,Room steps away from LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77005,-73.87691,Private room,45,1,448,2019-07-07,9.63,5,166 +7125323,Beautiful UWS apartment in doorman building,5549408,Aryeh,Manhattan,Upper West Side,40.79033,-73.9729,Entire home/apt,140,2,4,2016-10-26,0.09,1,0 +7125699,East Williamsburg Artist Retreat,19187413,Melissa,Brooklyn,Williamsburg,40.70485,-73.93863,Private room,60,20,0,,,2,88 +7126110,Sunny East Village Bedroom,37325763,Noah,Manhattan,East Village,40.72393,-73.98271,Private room,100,1,0,,,1,0 +7126996,Williamsburg 2 BR Apt w View of NYC,37191276,Deniz,Brooklyn,Williamsburg,40.71255,-73.95121,Private room,125,2,0,,,1,0 +7127458,Great 1 bdr in a 1 bedroom apartment. Great deal!,37332180,Thibault,Queens,Astoria,40.76264,-73.91156,Entire home/apt,70,4,10,2017-10-10,0.21,1,0 +7127600,"Spacious Room in Crown Heights, BK",950041,Caitlin,Brooklyn,Crown Heights,40.66851,-73.95936,Private room,70,3,5,2016-02-29,0.11,1,21 +7127684,Private bedroom in Bushwick BK,37331914,Timothy,Brooklyn,Bushwick,40.69683,-73.92372,Private room,50,2,0,,,1,0 +7128293,Room With a View – Minimalist Respite in Bed-Stuy,1574618,Alyson,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94501,Private room,95,4,47,2019-05-28,1.01,1,3 +7129972,"Beautiful, modern SoHo/TriBeCa apt",3704762,Akash,Manhattan,Civic Center,40.71649,-74.00267,Entire home/apt,169,4,8,2016-05-15,0.17,1,0 +7131007,Cozy Home in Brooklyn Brownstone,2830197,Roberta & Rob,Brooklyn,Bedford-Stuyvesant,40.6852,-73.95636,Entire home/apt,110,3,14,2017-10-15,0.29,1,0 +7132520,"Cozy Room In Clinton Hill, BK",37357605,Camille,Brooklyn,Clinton Hill,40.69139,-73.961,Private room,40,5,0,,,1,0 +7132891,Bohemian & Chic Apartment.,23988743,Rachid,Brooklyn,Bushwick,40.69319,-73.92375,Private room,75,2,22,2019-06-04,0.46,1,362 +7133306,"Bright Room in Creative Brooklyn Neighborhood, JMZ",37362312,Francesco,Brooklyn,Bedford-Stuyvesant,40.69464,-73.93369,Private room,65,2,0,,,2,19 +7133488,Private room in Astoria Broadway st,37188098,Ashraful,Queens,Astoria,40.75878,-73.92615,Private room,85,2,32,2016-07-02,0.67,2,177 +7134343,Modern Apartment in a Historic Home,37368735,Harry,Brooklyn,Bedford-Stuyvesant,40.67995,-73.90922,Entire home/apt,97,2,120,2019-06-27,2.75,1,292 +7134550,LES Bowery FULL 1 BDRM APARTMENT,36715249,Abdur,Manhattan,Chinatown,40.71706,-73.99285,Entire home/apt,110,3,0,,,1,0 +7140625,Cosy apartment West Harlem close to Central Park,37396328,Cécile,Manhattan,Harlem,40.80712,-73.95323,Private room,51,7,0,,,1,4 +7141549,"Sunny, beautiful and spacious room in Midtown",16396714,Andrea,Manhattan,Kips Bay,40.74281,-73.97981,Private room,120,7,11,2019-04-27,0.32,3,2 +7142734,1 Bedroom w/Jacuzzi in Private Home,37405985,Jenny,Queens,Forest Hills,40.71818,-73.84944,Private room,109,1,86,2019-06-30,1.78,1,344 +7143587,Quiet 1-BR in SoHo; Private Rooftop,37410263,David,Manhattan,SoHo,40.72179,-73.99829,Entire home/apt,159,31,8,2016-09-04,0.17,1,0 +7144379,Sunny bedroom in the heart of LES,34582356,Christina,Manhattan,Lower East Side,40.71754,-73.99025,Private room,75,1,1,2015-07-09,0.02,1,0 +7144807,"Spacious, Clean , Close to Local Transportation",37360127,Mel,Staten Island,Castleton Corners,40.61363,-74.12152,Private room,45,30,0,,,1,365 +7148121,Cozy LARGE NYC Bedroom w/homeoffice,4036685,Norman,Queens,Bayside,40.75873,-73.76244,Private room,99,1,3,2018-09-07,0.06,2,322 +7149408,Cozy private room in Manhattan,37440707,Jacqui,Manhattan,Upper West Side,40.79355,-73.97122,Private room,95,1,0,,,1,0 +7149452,Clinton Hill Apartment,16478353,Ali,Brooklyn,Clinton Hill,40.68538,-73.96479,Private room,65,14,6,2017-06-21,0.16,1,0 +7149710,Full bed/air-conditioned/secluded,37442404,Eric,Manhattan,Washington Heights,40.83255,-73.94411,Private room,38,1,0,,,1,0 +7151565,"Bottom half of duplex, Williamsburg",37453881,Hadrien,Brooklyn,Williamsburg,40.71827,-73.94258,Private room,95,1,6,2018-10-20,0.17,1,0 +7153138,Sunny and Airy near Manhattan,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92782,Entire home/apt,120,2,74,2019-04-30,1.83,2,60 +7155442,Huge Room in Prime Williamsburg,1279181,Matthew,Brooklyn,Williamsburg,40.7155,-73.95603,Private room,150,1,0,,,1,0 +7158408,Warehouse loft apartment,5602641,David,Brooklyn,Bedford-Stuyvesant,40.67939,-73.94939,Entire home/apt,135,2,174,2019-06-12,3.58,1,5 +7158417,Dov & Naomi's Beautiful Apt.,15878233,Dov,Brooklyn,Kensington,40.64456,-73.97723,Entire home/apt,115,4,3,2018-07-31,0.09,1,0 +7159258,Forrest and Bogart,292421,Steven,Brooklyn,Bushwick,40.70272,-73.93151,Private room,100,1,14,2018-09-13,0.37,1,0 +7160363,LOVE Central Park Room Private Bath,25517905,Andreias,Manhattan,Upper West Side,40.79632,-73.96225,Private room,99,1,222,2019-06-20,4.56,3,251 +7160545,Sunny East Village Nest,334348,Juju,Manhattan,East Village,40.72299,-73.97756,Entire home/apt,148,3,9,2019-01-25,0.19,1,8 +7161189,Modern and spacious in Bed Stuy,37503617,Sonia,Brooklyn,Bedford-Stuyvesant,40.69325,-73.94819,Entire home/apt,150,7,3,2015-10-05,0.06,1,0 +7162435,Bright Modern Apartment in Chelsea,19055216,Fabrice,Manhattan,Chelsea,40.74219,-73.99903,Entire home/apt,599,5,0,,,1,0 +7170149,Hipster Apt in The Middle of it All,32212535,Bronson & Sam,Manhattan,Hell's Kitchen,40.76546,-73.98782,Entire home/apt,349,3,31,2019-06-13,0.65,2,157 +7172107,Upper West Side Family Escape,37565381,Rebecka,Manhattan,Upper West Side,40.79527,-73.96695,Entire home/apt,165,5,5,2016-04-14,0.10,1,0 +7173864,"Beautiful, spacious 1 bedroom in BK",20914965,Karen,Brooklyn,Kensington,40.64621,-73.98163,Entire home/apt,95,1,4,2015-07-19,0.08,1,0 +7174067,Quiet 1 bedroom near Fort Greene Park,25912623,Allison,Brooklyn,Fort Greene,40.68726,-73.97616,Entire home/apt,129,1,9,2019-06-15,0.41,1,157 +7174361,2 BEDROOM APT IN MANHATTAN midtown SLEEPS 5 GUESTS,37579015,Ana,Manhattan,Hell's Kitchen,40.75788,-73.99223,Private room,250,2,17,2019-01-06,0.37,5,130 +7174695,"Lux, UES, 3Beds, Family Apt",36903246,Dana,Manhattan,Upper East Side,40.77614,-73.95037,Entire home/apt,700,1,1,2015-09-05,0.02,1,0 +7175595,Private Room in Gorgeous Apartment,37588475,Alex,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92963,Private room,66,1,0,,,1,0 +7176975,New/spacious 2 bedrooom 1.5 bath!,32933539,Maria,Manhattan,Washington Heights,40.83524,-73.943,Entire home/apt,165,4,1,2016-06-29,0.03,1,0 +7177666,"Stellar Duplex Home w/Garden,HotTub",37587378,Cecilia,Brooklyn,Gowanus,40.67916,-73.98911,Entire home/apt,450,2,8,2019-04-21,0.17,1,263 +7177958,Convienent 1-bedroom near Columbia,780952,Maria,Manhattan,Morningside Heights,40.80441,-73.96409,Entire home/apt,120,2,7,2016-10-10,0.15,1,0 +7178887,Park slope brownstone-ish,15115649,Malka,Brooklyn,Park Slope,40.67267,-73.97871,Private room,65,1,0,,,1,0 +7179646,Cozy Room in the Heart of Brooklyn!,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.66898,-73.9514,Private room,55,2,47,2017-03-16,0.98,3,0 +7180015,"private room, cute&cozy apartment",37614545,Linda,Queens,Astoria,40.75871,-73.91112,Private room,85,1,0,,,1,0 +7180335,Comfortable Bedroom,3508047,Brian,Brooklyn,Bushwick,40.69765,-73.93334,Private room,35,5,1,2019-01-01,0.16,3,0 +7181422,Cute 1br in Williamsburg,4993337,Stephanie,Brooklyn,Williamsburg,40.71044,-73.953,Entire home/apt,110,1,2,2015-08-10,0.04,1,0 +7192809,Luxury 2200sf Two Bedroom Loft w/ Private Elevator,37668524,Brian,Manhattan,Chelsea,40.73888,-73.99897,Entire home/apt,500,3,11,2016-11-26,0.23,1,2 +7193201,Private RM in Heart of East Village,33739627,Natasha,Manhattan,East Village,40.72896,-73.9843,Private room,99,1,4,2015-10-24,0.08,1,0 +7193370,King Bedroom w/ Private Bath: BUSHWICK L Train,9484908,Aj,Queens,Ridgewood,40.71005,-73.91956,Private room,64,3,0,,,2,77 +7194042,Spacious Williamsburg Loft Studio,7546816,Emma,Brooklyn,Williamsburg,40.71781,-73.96251,Entire home/apt,168,2,20,2018-11-11,0.41,1,0 +7194138,Nice Carroll Gardens 2BR by F Train,16782665,Andrew,Brooklyn,Carroll Gardens,40.6748,-74.00006,Entire home/apt,200,2,28,2016-12-20,0.59,1,0 +7194538,"Big home, 3 floors, good 4 families",37633503,Tina,Manhattan,Harlem,40.80595,-73.94882,Entire home/apt,355,3,42,2019-06-22,1.03,1,116 +7194972,"Charming, Central Park Studio Apt",22502429,Doug,Manhattan,Upper West Side,40.78363,-73.97485,Entire home/apt,190,3,9,2015-10-28,0.19,1,0 +7195202,Sunny central Wmsburg Apartment,2902496,Craig,Brooklyn,Williamsburg,40.7113,-73.94249,Entire home/apt,99,1,2,2015-11-29,0.04,1,0 +7197915,The Heart of the Lower East Side!,37691482,Andrew,Manhattan,Lower East Side,40.72135,-73.98668,Entire home/apt,180,2,8,2018-05-28,0.19,1,0 +7198592,"Lovely 2 Bdrm. Trains, Parks, Food!",140817,Carly,Manhattan,Inwood,40.86717,-73.91943,Entire home/apt,145,3,9,2018-12-30,0.23,1,0 +7198878,sunny + comfy bedroom in greenpoint,30066276,Rachel,Brooklyn,Greenpoint,40.72328,-73.94041,Private room,55,1,1,2015-07-21,0.02,1,0 +7199049,Quaint Room with street view,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.6927,-73.94656,Private room,65,1,5,2019-01-01,0.11,10,158 +7199258,"Private Apt & Patio (spacious, stocked and bright)",11241369,Elizabeth,Brooklyn,Crown Heights,40.67026,-73.9497,Entire home/apt,130,2,151,2019-05-19,3.16,1,36 +7199464,Upper West Side Rm by Central Park!,21651082,Brooks,Manhattan,Upper West Side,40.78487,-73.97816,Private room,68,6,1,2015-07-27,0.02,1,0 +7201169,midtown apartment,37243004,Barry,Manhattan,Midtown,40.75255,-73.98003,Entire home/apt,167,1,0,,,1,0 +7201615,Unique Artist Loft in Soho,6674211,Anders,Manhattan,SoHo,40.72525,-73.99998,Entire home/apt,375,14,0,,,1,0 +7202170,Midtown East penthouse studio,37711914,Aleksandar,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,160,10,25,2019-06-30,0.53,1,1 +7202368,Chic Studio Apartment in Bed Stuy,23952819,Jason,Brooklyn,Bedford-Stuyvesant,40.68651,-73.933,Entire home/apt,98,3,91,2019-06-23,1.92,2,217 +7202612,"Queen Bed, Quiet Room, Prime Williamsburg!",7252535,Wes,Brooklyn,Williamsburg,40.71279,-73.96037,Private room,90,2,262,2019-06-20,5.41,2,226 +7203943,Waterfront in Williamsburg,21381325,Tara,Brooklyn,Williamsburg,40.70999,-73.9689,Private room,100,1,0,,,1,0 +7204443,Peaceful Room in Dumbo Art Loft,37723496,Anna,Brooklyn,DUMBO,40.70429,-73.98773,Private room,125,2,152,2019-06-23,3.16,2,166 +7204547,HUGE 1BD! 5 min to MNHTN!,7065810,Chiara,Brooklyn,Fort Greene,40.68677,-73.97791,Entire home/apt,150,2,0,,,1,0 +7204721,Charming Cozy Brooklyn 1BR,37188272,Rachel,Brooklyn,Crown Heights,40.67357,-73.95268,Entire home/apt,95,2,4,2016-07-25,0.11,1,0 +7205212,Sunny Studio Next to Central Park,35651880,Ayesha,Manhattan,Upper West Side,40.79874,-73.96034,Entire home/apt,130,3,18,2017-09-30,0.39,1,0 +7205456,Enjoy a few days in Greenpoint,16282382,Natalie,Brooklyn,Greenpoint,40.7359,-73.95799,Entire home/apt,130,2,3,2016-01-02,0.06,1,0 +7205668,Sunny room in GPoint/Williamsburg,25712247,Alyssa,Brooklyn,Greenpoint,40.72283,-73.95232,Private room,140,1,0,,,1,0 +7205861,Putnam Gardens -Brooklyn Brownstone,37731444,Debbie,Brooklyn,Bedford-Stuyvesant,40.68435,-73.93806,Entire home/apt,125,3,17,2019-05-20,0.37,1,80 +7205945,Beautiful West Village Apartment,37731966,Ella,Manhattan,West Village,40.73525,-74.00217,Entire home/apt,165,10,10,2016-09-03,0.21,1,0 +7206060,Cozy + Quiet Private Bedroom in Prime Bushwick!,37731938,Brendan,Brooklyn,Bushwick,40.70093,-73.92375,Private room,90,2,11,2019-06-26,0.24,1,89 +7206401,Wonderful Inwood,17383399,Catlin,Manhattan,Inwood,40.86755,-73.92336,Entire home/apt,175,1,0,,,1,0 +7206568,Comfortable Room + Private Bathroom,37735816,Ali,Manhattan,Upper West Side,40.7972,-73.96922,Private room,65,3,95,2018-12-10,1.97,1,0 +7206579,"Sunny, Spacious Room- Heart of Williamsburg!",15491509,Autumn,Brooklyn,Williamsburg,40.71544,-73.95433,Private room,66,2,6,2018-01-25,0.13,1,0 +7206796,The Heart of Fort Greene 2bedrooms,37737721,Tracey,Brooklyn,Fort Greene,40.68919,-73.97474,Entire home/apt,225,2,117,2019-06-29,2.48,1,242 +7207594,Perfect Rental Near Prospect Park!,22792227,Kylie,Brooklyn,Crown Heights,40.67031,-73.95859,Private room,45,1,0,,,1,0 +7208745,Beautiful Furnished Master Bedroom,3415,Nataraj,Queens,Fresh Meadows,40.73859,-73.78891,Private room,59,3,4,2019-06-02,0.09,1,365 +7215836,Quaint&Cozy 1BR-Gem in East Village,12460557,Joyce,Manhattan,East Village,40.72873,-73.98793,Private room,90,8,3,2016-01-01,0.06,1,0 +7216192,Room in classic Harlem brownstone,17464442,Kirsti,Manhattan,Harlem,40.80492,-73.94486,Private room,125,2,3,2016-07-25,0.08,1,0 +7217351,Red Hook Loading Dock Loft,10910216,Kate,Brooklyn,Red Hook,40.67993,-74.00688,Entire home/apt,450,1,5,2019-04-20,0.10,1,207 +7218561,Bed-Stuy BKNY FREEWasher/Dryer,1283476,Mark,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94409,Private room,50,15,4,2017-04-29,0.09,2,0 +7221239,Lovely 1 Bdrm Boerum Hill Apt,6466155,Katherine,Brooklyn,Boerum Hill,40.68618,-73.98837,Entire home/apt,124,2,1,2018-09-02,0.10,1,0 +7221446,# sunny skylit sanctuary in the heart of BK! #,1903737,Natalie,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93384,Private room,29,3,30,2019-03-24,0.65,3,0 +7221712,"Williamsburg, Brooklyn Artist Loft",92436,Yasmin,Brooklyn,Williamsburg,40.70833,-73.9564,Entire home/apt,86,7,1,2015-08-01,0.02,1,0 +7222354,"Sunny Upper East Side Apt, Balcony",18489745,Fon,Manhattan,Upper East Side,40.76446,-73.95603,Private room,86,2,2,2016-03-13,0.04,1,0 +7222833,2BR/2BA luxury condo in W'Burg,6403403,Tony,Brooklyn,Williamsburg,40.71992,-73.95536,Entire home/apt,299,2,18,2017-04-17,0.38,1,0 +7224028,Modest and Cute Room in Bushwick Brooklyn!,5998033,Eddie,Brooklyn,Bushwick,40.68929,-73.90484,Private room,36,2,3,2017-07-01,0.06,1,0 +7224086,Private Bedroom in Bushwick,5570436,Fay,Brooklyn,Bushwick,40.70548,-73.91776,Private room,100,1,15,2019-05-20,0.33,1,359 +7224484,Charming Studio on Orchard Street !,1613244,Ariel,Manhattan,Lower East Side,40.71992,-73.98822,Entire home/apt,110,30,10,2018-10-03,0.23,9,263 +7225366,"Spacious, Modern Times Square 3Bdrm *****",9288577,Tina,Manhattan,Chelsea,40.74923,-73.99376,Entire home/apt,450,4,206,2019-07-03,4.24,1,1 +7226624,"Brooklyn Alcove, Convenient Locale!",6407741,Graham,Brooklyn,Bedford-Stuyvesant,40.69499,-73.9469,Private room,39,1,0,,,1,0 +7227235,All Nations Home II-PVT br Queenbed,1639755,Adriana,Brooklyn,Fort Hamilton,40.61985,-74.03255,Private room,55,2,56,2019-06-28,1.23,2,306 +7227418,All Nations Home II - pvt br. 2 twin beds,1639755,Adriana,Brooklyn,Fort Hamilton,40.61999,-74.03181,Private room,55,1,34,2019-06-16,0.80,2,281 +7227435,Brooklyn loft with huge livingroom,9166253,Jonas,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9589,Private room,60,3,0,,,2,0 +7228259,NYC Excitement Meets Quiet and Comfort!,37101663,Adam,Manhattan,Harlem,40.82101,-73.95436,Private room,71,30,66,2018-12-23,2.99,1,0 +7228397,West Harlem Apartment,700231,Benjamin,Manhattan,Harlem,40.82918,-73.94857,Entire home/apt,500,10,0,,,1,0 +7230002,Large Sunny Room in Williamsburg!,11107448,Jessica,Brooklyn,Williamsburg,40.71965,-73.9428,Private room,63,4,3,2018-05-27,0.08,2,0 +7234538,Lovely sun-filled Brownstone!,1793569,Frances,Brooklyn,Park Slope,40.68073,-73.97515,Entire home/apt,170,1,0,,,1,0 +7237763,BROOKLYN HEIGHTS Luxury Harbor View,1762355,Evan,Brooklyn,Brooklyn Heights,40.6947,-73.99304,Entire home/apt,250,7,11,2019-05-20,0.24,1,225 +7238041,Williamsburg bliss,8438140,Kim,Brooklyn,Williamsburg,40.71335,-73.93957,Entire home/apt,159,3,14,2019-05-29,0.30,1,31 +7238562,"Lovely Williamsburg, BK apartment",19806276,Joseph,Brooklyn,Williamsburg,40.71133,-73.96533,Entire home/apt,200,4,0,,,1,0 +7239527,CLEAN AND COZY UES,37903935,Gabriel,Manhattan,East Harlem,40.79831,-73.93961,Private room,70,1,1,2015-07-20,0.02,1,0 +7239575,"2 Bedroom, UES",37904263,Talal,Manhattan,Upper East Side,40.76364,-73.9588,Entire home/apt,120,5,5,2016-07-20,0.13,1,0 +7240002,Nice and Perfect Location Studio,14905080,Justin You,Manhattan,Morningside Heights,40.80569,-73.96058,Entire home/apt,75,25,1,2015-09-04,0.02,1,0 +7240464,Perfect family getaway!,37909191,Kim,Brooklyn,Bushwick,40.69246,-73.91909,Entire home/apt,195,1,0,,,1,0 +7240563,Brooklyn Sanctuary 1 block to train,4419418,Jocelyn,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9405,Entire home/apt,90,5,9,2019-06-11,0.19,1,8 +7240997,Modern 19th C West Village Charmer,2519631,Chavi,Manhattan,West Village,40.7363,-74.00317,Entire home/apt,233,30,10,2018-11-05,0.21,1,14 +7241020,Spacious & Bright Artist Retreat,6697833,John And Laurie,Manhattan,Washington Heights,40.85487,-73.93777,Entire home/apt,115,7,2,2015-10-29,0.04,1,0 +7243708,Spacious sunny room in Clinton Hill,3302103,Steph,Brooklyn,Clinton Hill,40.69158,-73.96699,Private room,65,2,6,2016-11-19,0.12,1,0 +7244171,Cozy Studio Duplex,37915862,Greg,Brooklyn,East New York,40.6752,-73.89218,Entire home/apt,80,5,49,2019-06-07,1.01,2,217 +7244824,Inviting Private Room in NYC.,37932285,Sarah,Manhattan,Harlem,40.82028,-73.95381,Private room,65,1,3,2018-01-03,0.08,1,0 +7244923,East Village Duplex Private Yard,37934478,Edward,Manhattan,East Village,40.72877,-73.98175,Private room,139,1,9,2016-10-02,0.23,1,0 +7245289,Charming 2BR apartment in Brooklyn,9481957,Joanna,Brooklyn,Bushwick,40.69818,-73.91356,Entire home/apt,210,1,0,,,1,0 +7245876,Beautiful Studio in Bed Stuy,9539044,Nicholas,Brooklyn,Williamsburg,40.71292,-73.94873,Entire home/apt,66,6,3,2017-03-02,0.06,1,0 +7246159,Charming apt on UWS 8/3-8/7,31245915,Jenna,Manhattan,Upper West Side,40.79024,-73.97911,Entire home/apt,200,1,0,,,1,0 +7246609,LES sunny and charming apartment,920222,Rosie,Manhattan,Lower East Side,40.72259,-73.99311,Entire home/apt,200,3,18,2019-01-02,0.37,1,188 +7246757,Amazing LES Manhattan Apt in LES,3586177,Marianna,Manhattan,Lower East Side,40.7201,-73.9841,Entire home/apt,175,3,44,2019-06-23,0.92,1,34 +7246903,Cozy Townhouse with Private Deck,26411218,Desmond,Queens,Maspeth,40.73456,-73.88891,Entire home/apt,96,3,139,2019-06-30,3.14,2,21 +7247033,Sunny Lower E. Side Ap. near BDFMJZ,37947830,Marcus,Manhattan,Chinatown,40.71574,-73.99107,Private room,100,1,13,2019-05-18,0.27,1,2 +7247763,Master bedroom in artsy Bushwick,2483508,Sarah,Brooklyn,Bushwick,40.70464,-73.91596,Private room,44,5,1,2015-07-27,0.02,1,0 +7254952,Prime Park Slope Family Home,16183358,Kim,Brooklyn,Park Slope,40.67545,-73.98234,Entire home/apt,175,4,5,2015-09-07,0.10,1,13 +7254986,Country House in the City,3695529,Jenni,Brooklyn,Carroll Gardens,40.68358,-73.99474,Entire home/apt,600,5,12,2019-05-16,0.25,2,174 +7255372,~Room for Guest in Stunning BK Apt~,37987441,Addie,Brooklyn,Bedford-Stuyvesant,40.68538,-73.92447,Private room,32,3,7,2019-01-27,0.15,1,0 +7255577,Cool room Manhattan - Sleeps up to 3 guests,37579015,Ana,Manhattan,Hell's Kitchen,40.75834,-73.99277,Private room,98,1,147,2019-06-13,3.03,5,149 +7256741,1BR @ East Village - better than a luxury hotel,1468231,Alan,Manhattan,East Village,40.7333,-73.98943,Entire home/apt,219,2,30,2019-06-10,0.62,1,2 +7257163,Super Charming West Village Place,1467387,Ali,Manhattan,West Village,40.7332,-74.00281,Entire home/apt,175,21,17,2017-08-10,0.36,1,0 +7257311,Cozy Walk-up Apt in the Historic Lower East Side.,14726038,Kimberly,Manhattan,Chinatown,40.71475,-73.9912,Entire home/apt,120,2,13,2018-04-04,0.37,1,0 +7258306,Studio in the Heart of Greenwich!!!,23387933,John,Manhattan,Greenwich Village,40.73088,-74.00035,Entire home/apt,140,1,1,2015-07-13,0.02,1,0 +7258864,No better location in Williamsburg!,2662538,Conrad,Brooklyn,Williamsburg,40.71563,-73.95737,Private room,84,1,204,2019-06-22,4.24,1,319 +7259369,1 Bedroom Apartment in Nolita/ Soho,20404001,Emma,Manhattan,Nolita,40.7208,-73.99647,Entire home/apt,80,1,1,2015-07-12,0.02,1,0 +7259804,Beautiful Place near Manhattan,5499064,Akira,Brooklyn,Bedford-Stuyvesant,40.68754,-73.92522,Private room,45,3,87,2019-06-30,1.91,1,258 +7260012,Spacious Brownstone Getaway,24269641,Kai,Brooklyn,Bedford-Stuyvesant,40.68782,-73.935,Entire home/apt,115,1,0,,,1,0 +7261121,Private Room for a Female,38010132,Jennifer,Queens,Astoria,40.77268,-73.92503,Private room,36,1,0,,,1,0 +7262068,Studio apt. Central Park West,24884055,Monada,Manhattan,Upper West Side,40.79715,-73.96873,Private room,80,1,0,,,1,0 +7262439,Bright & cozy room in Brooklyn!,37325782,Elise,Brooklyn,Bedford-Stuyvesant,40.68397,-73.95136,Private room,40,7,0,,,1,0 +7263899,Large Room in Bushwick Near Trains!,38029848,Ramona,Brooklyn,Bedford-Stuyvesant,40.69649,-73.93645,Private room,38,1,2,2015-11-07,0.04,1,0 +7264263,Beautiful classic NYC studio,5030772,Jessica,Manhattan,Upper East Side,40.77258,-73.95213,Entire home/apt,120,1,13,2016-12-27,0.27,1,0 +7264471,Sunset Park Sublet,15416709,Me'lissa,Brooklyn,Sunset Park,40.65295,-74.00411,Private room,70,5,0,,,1,0 +7264496,MorningsideHeights/Columbia Studio,38032297,Melissa,Manhattan,Morningside Heights,40.80445,-73.9649,Entire home/apt,140,4,2,2015-08-21,0.04,1,0 +7264560,"Spacious Room in Creative Neighborhood, JMZ line",37362312,Francesco,Brooklyn,Bushwick,40.69622,-73.93394,Private room,70,1,1,2017-05-07,0.04,2,115 +7264659,Olivier,6994503,Olivier,Manhattan,Upper West Side,40.78931,-73.9752,Entire home/apt,200,5,12,2018-01-30,0.25,1,25 +7265079,Park Slope sweet cozy home! Wifi!,912400,Ming,Brooklyn,Park Slope,40.6756,-73.97781,Private room,89,5,102,2019-06-19,2.17,1,255 +7265118,177st. Manhattan,7118658,Tim,Manhattan,Washington Heights,40.84828,-73.94284,Private room,250,3,11,2018-05-24,0.24,1,345 +7265249,"South Slope Sunny 2 Bedroom, 2 bath",38038797,Robin,Brooklyn,Sunset Park,40.66226,-73.98956,Entire home/apt,125,2,11,2018-12-27,0.23,1,10 +7265253,1 Bed in a Lux Apt on Wall Street,15899061,Amelia,Manhattan,Financial District,40.70583,-74.00717,Shared room,47,1,2,2015-08-17,0.04,1,0 +7269771,CLEAN COZY & COMFY E. VILLAGE PAD,16155254,Lina,Manhattan,Stuyvesant Town,40.7305,-73.98043,Entire home/apt,160,1,150,2019-06-01,3.21,4,238 +7271876,Cozy 1 Bedroom Bushwick Apt off Dekalb L,38073985,Nicole,Brooklyn,Bushwick,40.7005,-73.91816,Entire home/apt,75,60,0,,,1,0 +7272453,East Village Spacious Room,38076944,Hanna,Manhattan,East Village,40.73031,-73.98784,Private room,90,3,0,,,1,0 +7272530,Lovely Room Close to the City,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94678,Private room,65,1,6,2019-01-03,0.13,10,158 +7272680,Sunny Double Room,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94666,Private room,63,1,3,2017-01-15,0.07,10,306 +7274441,Beautiful BedStuy Brownstone Apt,7079175,Al-Nisa,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93193,Private room,100,1,0,,,1,0 +7275122,Stunning NYC Views,21336136,Brooklyn,Brooklyn,Vinegar Hill,40.70107,-73.98391,Entire home/apt,178,3,163,2019-06-30,3.40,1,201 +7275273,Cozy & Super Convenient Studio!,16398769,Michelle,Manhattan,Chelsea,40.74116,-73.99523,Entire home/apt,200,1,0,,,1,0 +7275655,Cosy 1 bed in trendy East Village!,19491505,Kristine,Manhattan,East Village,40.72457,-73.98142,Entire home/apt,170,2,5,2016-04-04,0.11,1,0 +7276534,LaGuardia Room with Private Entrance(1),31851704,Laura,Queens,East Elmhurst,40.7582,-73.87656,Private room,50,1,211,2019-06-24,4.37,2,339 +7277102,"4 Bed, Duplex Garden Apt. on lovely, quiet block",228858,Jada,Brooklyn,South Slope,40.66163,-73.98602,Entire home/apt,295,9,2,2015-08-25,0.04,2,1 +7277143,Quiet private room upper east side,24821272,Sabrina,Manhattan,Upper East Side,40.77877,-73.94824,Private room,100,1,3,2015-10-23,0.06,1,0 +7277180,"Bedroom in Financial District, NYC",38101644,Lucia,Manhattan,Financial District,40.70811,-74.01301,Private room,65,1,1,2015-08-04,0.02,1,0 +7277600,Upper east haven,24772574,Jack,Manhattan,Upper East Side,40.76483,-73.95367,Entire home/apt,175,1,0,,,1,0 +7277878,Sunny and Spacious 1 Bedroom!,6862694,Hayley,Brooklyn,Prospect Heights,40.67628,-73.96425,Entire home/apt,90,5,1,2015-09-02,0.02,1,0 +7278762,"Private Rooftop balcony, skylight PH 2 beds",22816592,Susi,Queens,Elmhurst,40.73626,-73.87143,Entire home/apt,158,30,130,2019-06-23,2.71,1,311 +7279583,The Harlem Mansion,1557442,Chris,Manhattan,Harlem,40.80682,-73.95196,Entire home/apt,450,2,48,2017-09-06,1.04,1,188 +7279657,1 Bdr. Apt. in Ridgewood/Bushwick,13904931,Nick,Queens,Ridgewood,40.70735,-73.90696,Entire home/apt,110,1,0,,,1,0 +7280322,Brownstone Studio with EVERYTHING,7705129,Junho,Brooklyn,Park Slope,40.67128,-73.97863,Entire home/apt,100,5,0,,,1,0 +7286166,Private room & bath in modern apt,5369287,Tatiana,Brooklyn,Williamsburg,40.70995,-73.96722,Private room,130,1,13,2017-05-08,0.28,1,188 +7286324,"Cozy private room in Astoria, 15 min to Manhattan",97580,Igor,Queens,Long Island City,40.7631,-73.92936,Private room,70,3,137,2019-06-24,2.84,1,8 +7288752,Comfortable Greenpoint Apt. Short or Longer Stay,38169148,Liz,Brooklyn,Greenpoint,40.72642,-73.94519,Private room,70,7,3,2016-11-16,0.06,1,0 +7292825,New York City Luxury Building!,13976139,Lori,Manhattan,Upper West Side,40.7905,-73.97385,Entire home/apt,120,10,0,,,1,0 +7292891,Large 2 BR Apartment in Chelsea,9403624,Carol,Manhattan,Chelsea,40.74482,-73.99917,Entire home/apt,170,5,13,2019-05-25,0.30,1,4 +7293506,Charming Upper West Side Apartment,2993160,Lauren,Manhattan,Upper West Side,40.78629,-73.98056,Entire home/apt,200,7,0,,,1,0 +7294225,East Vlg 2 bdrm Private Apt - 1 Block to Union Sq,10353278,James,Manhattan,East Village,40.73125,-73.98675,Entire home/apt,480,3,2,2016-08-01,0.04,2,0 +7302762,Spacious Duplex With Private Deck,1533248,Emily,Brooklyn,Greenpoint,40.7272,-73.95134,Entire home/apt,120,3,2,2016-08-10,0.05,1,0 +7304034,SPACIOUS Lower East Side DUPLEX 3 bed 2 ba COMFY,37623794,Amanda,Manhattan,East Village,40.72545,-73.98802,Entire home/apt,299,1,69,2019-06-16,1.52,1,257 +7305718,"Cozy, clean studio with a view!",38269863,Andrea,Manhattan,Harlem,40.81882,-73.956,Entire home/apt,150,3,0,,,1,0 +7306096,"Big, nice, private room.",38272413,Vasily,Brooklyn,Kensington,40.64028,-73.97396,Private room,45,4,5,2015-09-15,0.10,2,0 +7307027,Large room in two-story brownstone,16237939,Seth,Brooklyn,Prospect Heights,40.67958,-73.96956,Private room,70,2,4,2016-07-11,0.09,1,0 +7307468,Large Room in Brooklyn w/ Office,26364541,Claire,Brooklyn,Bedford-Stuyvesant,40.69381,-73.944,Private room,49,1,1,2015-07-20,0.02,1,0 +7308118,Cozy Artful Zen East Village Nook,38284667,Ruth,Manhattan,East Village,40.72819,-73.98589,Private room,115,1,1,2015-08-07,0.02,2,0 +7308735,Big room with great natural light,38288441,Nathaniel,Manhattan,Harlem,40.82416,-73.94623,Private room,55,3,8,2017-06-26,0.22,1,0 +7308927,cool room in Bushwick loft,34873213,Melody,Brooklyn,Williamsburg,40.70909,-73.9256,Private room,55,1,1,2015-07-22,0.02,1,0 +7309129,Beautiful Airy Lower East Side Loft,7737249,Casandra,Manhattan,Chinatown,40.71431,-73.99142,Entire home/apt,250,30,48,2019-04-29,1.83,2,341 +7309427,Beautiful Architect Renovated Home,38292974,Mark,Brooklyn,South Slope,40.66691,-73.98658,Entire home/apt,399,3,11,2019-01-06,0.31,1,18 +7309459,"Large duplex in trendy Brooklyn, New York",14715701,Daniel & Lia,Brooklyn,Cobble Hill,40.68628,-73.99681,Entire home/apt,198,3,1,2018-08-19,0.09,1,5 +7309633,Small One Bedroom BK - Quiet n Cute,38294553,Joan,Brooklyn,Bedford-Stuyvesant,40.68211,-73.94775,Entire home/apt,78,1,1,2015-08-08,0.02,1,0 +7310097,"3 Bedroom, 1st Fl, family apt.",38297695,Suvi,Brooklyn,Prospect Heights,40.67797,-73.9701,Entire home/apt,200,2,1,2016-01-05,0.02,1,0 +7310330,East Village! Beautiful 2BD Apt.,38294027,Rushil,Manhattan,East Village,40.7228,-73.98562,Entire home/apt,300,23,1,2015-07-21,0.02,1,0 +7310413,Beautiful Spacious Ground Floor Apt,1603343,Carina,Brooklyn,Bushwick,40.70403,-73.91276,Entire home/apt,225,2,3,2015-11-28,0.06,1,0 +7310835,SoHo 2 Bedroom 2 Full Bath with Private Terrace,3390947,Yulia,Manhattan,SoHo,40.72268,-74.00269,Entire home/apt,650,2,24,2019-06-29,0.51,1,23 +7311209,SUPER HUGE ROOM IN GREENPOINT BK,1641537,Lauren,Brooklyn,Greenpoint,40.72503,-73.93909,Private room,53,7,7,2016-03-09,0.15,2,0 +7318332,Our lovely nest in the West Village,38337856,Antoine,Manhattan,Greenwich Village,40.73378,-73.99714,Entire home/apt,159,5,22,2018-12-27,0.46,1,22 +7319512,Modern & Bright Queen Bedroom-Green C8,20559017,Yohan,Manhattan,Upper East Side,40.76164,-73.95995,Private room,65,30,3,2019-05-06,0.08,9,342 +7319582,Room in Bed Stuy - Full Bed,18605510,Reah,Brooklyn,Bedford-Stuyvesant,40.68555,-73.94873,Private room,45,1,0,,,1,0 +7319791,Cozy room at trendy Lower east side,19195540,Dor,Manhattan,Lower East Side,40.71894,-73.99205,Private room,120,3,86,2019-06-06,1.82,3,99 +7319856,450ft Square Studio in Gramercy NY,11773680,Adam,Manhattan,Kips Bay,40.73813,-73.98098,Entire home/apt,280,1,4,2016-05-22,0.09,1,225 +7320160,Charming Old-School Apartment 2,19692652,Benjamin,Brooklyn,Clinton Hill,40.69387,-73.96841,Private room,60,2,42,2017-08-14,0.87,1,0 +7320353,"Clean,quiet room near prospect park",5499953,R Demetre,Brooklyn,Crown Heights,40.67047,-73.95372,Private room,100,1,2,2015-10-08,0.04,2,365 +7320522,Large Apt in Theatre District,38350446,Chris,Manhattan,Hell's Kitchen,40.76146,-73.9896,Private room,160,5,5,2016-11-28,0.13,1,0 +7321054,"Great room, 7 min from Manhattan!",38352423,Ashley,Queens,Long Island City,40.75508,-73.92918,Private room,45,1,1,2015-07-20,0.02,1,0 +7322088,A Bedroom in a Kosher Appartment,24259346,Johnathan Boev,Queens,Rego Park,40.72644,-73.85477,Private room,39,1,2,2015-09-07,0.04,1,0 +7322656,Clean & Quiet room in Bushwick,38360286,Cody,Brooklyn,Bushwick,40.68992,-73.91408,Private room,50,1,0,,,1,0 +7323905,Stylish East Village One Bedroom Apartment,2303270,Zeina,Manhattan,East Village,40.72947,-73.9813,Entire home/apt,120,4,21,2019-06-24,1.23,1,9 +7324746,Cozy & Sunny Sage Room in Townhouse,942252,Kimberly,Brooklyn,Prospect Heights,40.67885,-73.96838,Private room,99,1,8,2015-09-02,0.17,2,0 +7324832,UWS Bedroom with Rooftop Access!,379663,Kenya,Manhattan,Upper West Side,40.78763,-73.97308,Private room,129,3,5,2015-09-26,0.10,1,0 +7325230,Artist Renovated Loft + Roof Garden,38373441,J,Brooklyn,Bushwick,40.70174,-73.92662,Entire home/apt,350,3,58,2019-06-10,1.21,1,81 +7325293,Big Room in the heart of Upper East,1841169,Clara,Manhattan,Upper East Side,40.77016,-73.95716,Entire home/apt,300,1,1,2015-09-29,0.02,1,0 +7326871,Brooklyn Flavor Atelier,38380486,Tiffany,Brooklyn,Williamsburg,40.70521,-73.94258,Entire home/apt,140,2,4,2018-01-01,0.08,1,0 +7327096,Modern 1 BR in the East Village,33300449,Rachel,Manhattan,East Village,40.72869,-73.97653,Entire home/apt,120,1,2,2016-02-21,0.05,1,0 +7327782,Light-Drenched Private 1 Bedroom,38388018,Ruth,Brooklyn,Crown Heights,40.66664,-73.92805,Private room,64,2,56,2019-06-27,2.65,1,184 +7327833,Charming Apartment in Crown Heights,27630423,Julianne,Brooklyn,Crown Heights,40.67464,-73.94276,Entire home/apt,120,2,2,2015-10-03,0.04,1,0 +7328260,Private room (Uptown) Washington Heights,38390671,Sharlene,Manhattan,Washington Heights,40.83769,-73.94207,Private room,40,7,12,2019-06-16,0.27,1,48 +7328319,Cool Apartment in Chinatown,15743291,Maria,Manhattan,Chinatown,40.71479,-73.99284,Entire home/apt,120,4,7,2017-12-31,0.15,1,0 +7328712,Flatiron 1 Bedroom,2482069,Lor,Manhattan,Flatiron District,40.74145,-73.98828,Private room,95,1,0,,,1,0 +7328775,The studio on the park!,38392850,Emma,Brooklyn,Fort Greene,40.68794,-73.97393,Entire home/apt,150,3,10,2016-03-28,0.21,1,0 +7329781,NoLita Design Studio,38398698,Andrew,Manhattan,Nolita,40.72044,-73.99568,Entire home/apt,650,6,14,2018-06-26,0.29,1,90 +7330488,Charming Classic UWS Bedroom & Balcony,18008678,Clayton,Manhattan,Upper West Side,40.80243,-73.9706,Private room,100,2,33,2018-04-20,0.68,2,0 +7331070,Your own house in NYC,22373907,James,Queens,Bayside,40.76729,-73.77162,Entire home/apt,290,1,74,2019-06-09,1.59,1,338 +7331201,Sunny and Homie BK Apartment,681331,Wes,Brooklyn,Crown Heights,40.66539,-73.96041,Entire home/apt,120,3,5,2016-10-17,0.11,1,0 +7331835,Bright Studio heart of LES,23851015,Suwan,Manhattan,Lower East Side,40.72157,-73.98489,Entire home/apt,130,2,0,,,1,0 +7331850,Lovely room in Astoria,38405623,Alena,Queens,Long Island City,40.76432,-73.93401,Private room,70,5,0,,,1,0 +7331958,Sunny luxurious loft Studio,2282450,Philip,Manhattan,West Village,40.73529,-74.00323,Entire home/apt,235,3,111,2019-06-10,2.38,2,126 +7332196,Bright and Hip in Morningside,5628243,Drew,Manhattan,Harlem,40.81024,-73.9525,Private room,95,1,10,2017-01-17,0.21,1,0 +7336085,Midtown West short term sublet,38433605,Huishan,Manhattan,Hell's Kitchen,40.75979,-73.99402,Private room,80,18,0,,,1,0 +7338771,Design Forward East Village 1Br Apt,9892766,Ariel,Manhattan,East Village,40.72261,-73.98196,Entire home/apt,280,30,1,2017-11-24,0.05,1,116 +7339716,Perfect West Village Apt,36625404,Jeff,Manhattan,West Village,40.73545,-74.00686,Entire home/apt,195,2,30,2018-06-26,0.62,1,189 +7339802,"HUGR 1BR+ in Sugar Hill, Harlem",38452274,Aly,Manhattan,Harlem,40.82196,-73.94247,Entire home/apt,100,3,14,2018-01-12,0.29,1,0 +7340318,Private Greenpoint Studio Floor 1,6772512,Curtis,Brooklyn,Greenpoint,40.72138,-73.94709,Entire home/apt,100,3,7,2016-10-28,0.14,1,0 +7340902,Cozy Apt 10 minutes to Central Park,11354707,Andre,Queens,Long Island City,40.75588,-73.93117,Entire home/apt,130,3,6,2016-01-09,0.13,1,0 +7341077,Classic Lower East Side Apartment,21498479,Cate,Manhattan,East Village,40.72168,-73.98418,Entire home/apt,130,7,2,2015-09-22,0.04,1,0 +7341406,Private Spacious Room with bathroom,38460304,Leon,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94101,Private room,125,4,27,2019-03-09,0.57,2,312 +7341983,Brooklyn Studio apartment,38460304,Leon,Brooklyn,Bedford-Stuyvesant,40.69169,-73.93142,Entire home/apt,130,4,34,2019-04-28,0.73,2,340 +7342107,"Cozy, Comfy, City Living.",13891989,Gregory,Bronx,East Morrisania,40.82873,-73.89553,Entire home/apt,120,1,142,2019-06-23,3.10,1,345 +7343048,Comfy 1 Bed 1 Bath - great location,24742173,Tammy,Manhattan,Upper West Side,40.79708,-73.969,Entire home/apt,180,2,3,2019-05-04,0.06,3,70 +7344720,Clean and comfortable 3 person private room,24260658,Kristy,Manhattan,East Harlem,40.7946,-73.93572,Private room,80,2,97,2019-07-07,2.03,5,22 +7344761,Luxury Tribeca Apartment w/Roofdeck,12149983,Kerry,Manhattan,Civic Center,40.71645,-74.00402,Entire home/apt,250,2,2,2016-04-24,0.04,1,0 +7345333,Lg Bedroom Trendy Williamsburg BK,38480809,Christina,Brooklyn,Williamsburg,40.71711,-73.94259,Private room,125,1,0,,,1,0 +7345443,Spacious 3 bedroom on Prospect Park,38480982,Arnold,Brooklyn,South Slope,40.66378,-73.97813,Entire home/apt,166,3,6,2016-09-05,0.13,1,0 +7346434,Cozy/Private Bdrm By Central Park!,9166875,Clara,Manhattan,Upper West Side,40.80304,-73.96582,Private room,64,4,1,2015-08-28,0.02,1,0 +7347350,Room in East Williamsburg 1 Block from L Train,6284410,Fiona,Brooklyn,Williamsburg,40.70794,-73.93976,Private room,35,5,1,2016-07-21,0.03,1,0 +7347733,Studio in central historical Harlem,21056821,Martina,Manhattan,Harlem,40.80819,-73.94315,Entire home/apt,120,1,1,2016-07-13,0.03,1,0 +7348008,Sunny Park Slope Bedroom,3369909,Ian,Brooklyn,Park Slope,40.68006,-73.98053,Private room,60,2,7,2016-10-21,0.16,1,0 +7348509,Modern 1BR in Heart of Williamsburg,38497438,Don,Brooklyn,Williamsburg,40.71969,-73.9562,Entire home/apt,215,1,1,2015-08-02,0.02,1,0 +7348959,Beautiful Room in Brownstone - Prime Location,4579626,Karen,Brooklyn,Park Slope,40.67618,-73.98122,Private room,58,1,211,2019-07-07,5.13,2,178 +7349064,Luxury apartment near Central Park,5042891,Alon,Manhattan,Midtown,40.76579,-73.98057,Entire home/apt,260,5,0,,,1,0 +7349256,Big Cozy Room,15147904,Viviana,Brooklyn,Bushwick,40.69508,-73.91053,Private room,40,3,71,2019-06-29,1.47,1,24 +7349421,Comfortable private room in Harlem,31469635,Ricky,Manhattan,Harlem,40.82606,-73.94659,Private room,78,1,4,2019-07-01,0.09,2,55 +7349633,$500/wk 1br - 150ft2 - Dec 23-Jan 4,38507835,Matt,Manhattan,East Village,40.72492,-73.97914,Private room,80,6,1,2015-07-22,0.02,1,0 +7350310,East Village Studio Like Room,26925894,Alice,Manhattan,East Village,40.72962,-73.9836,Shared room,80,2,2,2015-08-29,0.04,1,0 +7354701,Brooklyn Brownstone duplex + garden,3484734,JaimeLee & Travis,Brooklyn,Bedford-Stuyvesant,40.68396,-73.92872,Entire home/apt,159,7,6,2019-01-04,0.19,1,1 +7355158,Artistic Brooklyn Apartment,12644018,Mary,Brooklyn,Bushwick,40.70055,-73.92193,Private room,150,1,0,,,1,0 +7358093,Brooklyn Brownstone with Backyard,26202073,Raven,Brooklyn,Bushwick,40.68833,-73.91676,Entire home/apt,89,5,0,,,1,0 +7358801,Luxury Hip Brand New LES ROOM w/ Terrace!,2127057,Nick And Julia,Manhattan,Lower East Side,40.72065,-73.98273,Private room,145,2,148,2019-07-03,3.16,1,134 +7359313,Luxury Doorman Apt in Midtown East!,38445572,Jennifer,Manhattan,Murray Hill,40.74823,-73.97447,Private room,130,1,2,2015-09-21,0.04,1,0 +7359878,Bedroom in 4bed/1bath in Brooklyn!,13896003,Shane,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95472,Private room,50,1,0,,,1,0 +7361434,Ditmas Park Spacious Studio Apt,38569616,Quinn,Brooklyn,Flatbush,40.64691,-73.95855,Entire home/apt,100,1,2,2015-12-30,0.04,1,0 +7361457,Lovely private bedroom,38567763,Deidrea,Brooklyn,Bedford-Stuyvesant,40.68856,-73.9547,Private room,63,3,2,2015-08-19,0.04,1,0 +7362840,Beautiful Private Area in Flatbush,2164856,Jasmine,Brooklyn,East Flatbush,40.64939,-73.94791,Private room,50,1,0,,,1,0 +7363109,Manhattan Getaway - LES,34834676,Loreta,Manhattan,Lower East Side,40.71729,-73.98442,Entire home/apt,189,5,21,2019-06-17,0.47,1,239 +7364008,Bohéme 1BR steps from Prospect Park,38583557,Ian,Brooklyn,Flatbush,40.65349,-73.95527,Entire home/apt,99,7,2,2015-08-17,0.04,1,0 +7364374,New York Apt in the Heart of NY,8144621,Thomas,Manhattan,Chelsea,40.74627,-73.99142,Private room,150,1,0,,,1,0 +7366831,"Sunny, big room available in 3 BDRM",38599690,Chantal,Manhattan,East Harlem,40.80023,-73.93822,Private room,35,1,1,2015-07-22,0.02,1,0 +7367039,Welcome to our Luxury home,1472993,Yoav,Manhattan,Financial District,40.7078,-74.00914,Entire home/apt,200,1,6,2017-08-18,0.13,1,0 +7367165,Sunny Room Overlooking Harlem,4964848,Jakob,Manhattan,Harlem,40.82681,-73.9426,Private room,35,5,2,2016-02-02,0.05,1,0 +7367484,Huge private room with bathroom,31452390,Jennifer,Manhattan,Washington Heights,40.83428,-73.94446,Private room,60,1,1,2015-07-23,0.02,1,0 +7367913,Brooklyn oasis with breathtaking skyline view!,38606448,Hanna,Brooklyn,Bedford-Stuyvesant,40.68889,-73.95406,Private room,80,2,8,2018-08-27,0.17,1,281 +7368190,"Bright, Airy, Quiet 1 Bd",3890297,Babita,Manhattan,Kips Bay,40.73943,-73.98135,Entire home/apt,199,3,20,2019-03-08,0.42,1,0 +7369427,"Large 2 bedroom APT, 20mins to Times Square.",6486116,Ari,Manhattan,East Harlem,40.78858,-73.94742,Entire home/apt,174,1,19,2019-05-02,0.43,4,322 +7369852,spacious private rooms in 5bd 4bth,9059810,Vlad,Brooklyn,Sheepshead Bay,40.59244,-73.95633,Private room,85,7,0,,,3,90 +7376952,Brownstone@Central Park❤️Manhattan historic area,32004384,Karen,Manhattan,Upper West Side,40.77976,-73.97837,Private room,120,7,11,2019-06-09,1.16,1,362 +7378773,Clean and Sunny Brooklyn apt!!,11129295,Melissa,Brooklyn,Bushwick,40.70178,-73.92829,Entire home/apt,98,4,1,2015-09-04,0.02,1,0 +7379929,Great E.Village Apt. Best Location!,27283579,Alexi,Manhattan,East Village,40.72423,-73.99013,Private room,119,2,4,2015-08-12,0.08,1,0 +7380251,Private Room in New Bed-Stuy Lofts,38661692,Dee,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95205,Private room,1600,1,0,,,1,0 +7381038,South Slope Modern + Spacious with Outdoor Deck,16283468,Philip,Brooklyn,Sunset Park,40.66196,-73.99177,Private room,75,1,113,2019-06-18,2.33,2,233 +7381236,Authentic Brownstone New York Living,33365473,Paul,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94119,Entire home/apt,450,2,34,2019-04-26,0.76,2,337 +7381893,cozy + bright room in BK!,12866178,Klara,Brooklyn,East New York,40.65918,-73.89226,Private room,55,2,9,2017-11-04,0.19,1,342 +7382396,Bushwick Oasis,38672291,Randy,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93436,Private room,64,1,24,2016-06-10,0.50,1,0 +7382573,Bright room in Williamsburg loft,16548316,Phil,Brooklyn,Williamsburg,40.70767,-73.94821,Private room,70,14,0,,,1,0 +7382982,Bright double room in West Village,19504544,Saga,Manhattan,West Village,40.72911,-74.00338,Private room,106,5,2,2016-01-02,0.04,1,0 +7383380,Large loft in Bushwick,4907734,Paul,Brooklyn,Williamsburg,40.70068,-73.94103,Private room,45,3,14,2018-08-29,0.35,1,0 +7383722,Stunning 1BR - SoHo Prime Location!,14281112,Andrew,Manhattan,SoHo,40.7221,-74.00464,Private room,125,2,2,2015-10-09,0.04,1,0 +7383804,1 room available for in midtown NYC,38678875,Stanley,Manhattan,Midtown,40.75277,-73.96686,Private room,70,1,2,2015-07-31,0.04,1,0 +7385568,Spacious Renovated Apt. in Harlem,1163720,Zack,Manhattan,Harlem,40.81355,-73.94407,Private room,40,1,2,2015-08-14,0.04,1,0 +7385651,Sunny apartment in the heart of LIC,25705189,Greta,Queens,Long Island City,40.74364,-73.95392,Entire home/apt,100,5,0,,,1,0 +7385692,"Huge 1 bdr, convenient location!",38404959,Maria,Queens,Ditmars Steinway,40.77742,-73.90965,Private room,85,3,3,2018-09-05,0.06,2,163 +7386119,"Large, sunny, quiet, 2 bed apt",12517331,Robert,Brooklyn,Prospect Heights,40.67876,-73.9715,Entire home/apt,75,1,4,2015-11-28,0.08,1,0 +7386558,Big Bright Modern East Village 1 BR,38694062,Mike,Manhattan,East Village,40.72164,-73.97927,Entire home/apt,175,1,9,2016-06-27,0.24,1,31 +7387862,Cozy bedroom in E. Village in July,38702813,Alexander,Manhattan,Lower East Side,40.72309,-73.98926,Private room,150,1,0,,,1,0 +7387919,2 bed apartment 2 blocks from 42 st,37993952,Andrew,Manhattan,Hell's Kitchen,40.76171,-73.99478,Private room,150,1,1,2015-07-23,0.02,1,0 +7389120,Boutique apartment by the Ocean,7365834,Alex,Brooklyn,Sheepshead Bay,40.58294,-73.95897,Entire home/apt,129,2,45,2019-06-23,0.93,5,256 +7389278,Bushwick! Unlimited Metro Card!,38712916,Taylor,Brooklyn,Bushwick,40.69927,-73.92133,Private room,60,1,0,,,1,0 +7391230,Cosy bedroom in Williamsburg,1173652,Seb,Brooklyn,Williamsburg,40.71058,-73.9672,Private room,80,2,74,2019-06-03,1.64,1,210 +7394136,One bedroom available in Astoria,38741040,Priscila,Queens,Long Island City,40.75547,-73.92017,Private room,40,1,0,,,1,0 +7395202,Big room in Clinton Hil near subway,23425862,Gagandeep,Brooklyn,Bedford-Stuyvesant,40.69172,-73.95862,Private room,90,1,0,,,2,0 +7396662,Chateau Ludlow,7489344,Noëmi,Manhattan,Lower East Side,40.71508,-73.98973,Private room,120,1,18,2016-09-15,0.37,1,0 +7397237,~Sunny quiet apartment in Brooklyn~,38757107,Joanne,Brooklyn,Bedford-Stuyvesant,40.68978,-73.94444,Entire home/apt,100,7,2,2015-09-06,0.04,1,0 +7397649,"Astoria 1 Bed, 2 Blocks to Train",9991314,Jenna,Queens,Astoria,40.76448,-73.92714,Entire home/apt,125,2,0,,,1,0 +7397699,Room in the heart of Williamsburg!,38759330,Nathaniel,Brooklyn,Williamsburg,40.7122,-73.9511,Private room,35,1,3,2015-09-13,0.06,1,0 +7398144,2 Bedroom in Heart of Williamsburg,7983308,Michael,Brooklyn,Williamsburg,40.71452,-73.95486,Entire home/apt,269,1,1,2015-08-17,0.02,1,0 +7398163,Furnished BR in a 2BR apt Gramercy,28269324,Daniel,Manhattan,Gramercy,40.73448,-73.98056,Private room,45,30,2,2015-08-31,0.04,1,0 +7398507,Chic apartment on Central Park West,5898139,Nicholas,Manhattan,Upper West Side,40.79933,-73.95949,Entire home/apt,185,1,1,2015-09-02,0.02,1,0 +7399036,Amazing apartment available for a year to rent!,38706510,Sarah,Manhattan,Upper West Side,40.78015,-73.97875,Entire home/apt,120,30,2,2017-09-28,0.08,1,200 +7399178,Cozy Room in the LOWER EAST SIDE!,38767720,Caitlin,Manhattan,Lower East Side,40.71934,-73.98424,Private room,97,1,2,2015-12-29,0.04,1,0 +7399449,Modern 1 Bdrm Apt in Mid Manhattan,393944,Guillermo,Manhattan,Murray Hill,40.74537,-73.97462,Entire home/apt,230,2,0,,,1,0 +7399754,Spacious 1BR,4343834,Sean,Brooklyn,Carroll Gardens,40.68189,-73.99695,Entire home/apt,150,1,6,2016-08-02,0.12,1,0 +7400486,My Spacious & Comfy Home Away,32604265,Shaquana,Brooklyn,Crown Heights,40.67647,-73.94813,Entire home/apt,135,2,23,2017-06-12,0.59,1,0 +7400940,Spacious Graham Ave Room Aug 1 -21,3911807,Jean,Brooklyn,Williamsburg,40.71576,-73.94468,Private room,45,5,0,,,1,0 +7401048,Big Cozy Room 2 Blocks From Trains,10832128,Josh,Brooklyn,Sunset Park,40.644,-74.01092,Private room,47,3,2,2015-11-02,0.04,1,0 +7402303,Artists' Sunny 1-BR Apt in Astoria,11962385,Dusan,Queens,Astoria,40.76778,-73.92201,Entire home/apt,120,1,3,2015-08-20,0.06,1,0 +7402608,Charming Williamsburg 1 Bedroom,38788236,William,Brooklyn,Williamsburg,40.70649,-73.94505,Entire home/apt,100,1,11,2015-12-28,0.23,1,0 +7403108,Colorful Apartment Upper West Side,38791434,Kit,Manhattan,Morningside Heights,40.80419,-73.96268,Entire home/apt,60,1,0,,,1,0 +7403161,Entire 1 Bedroom apartment,15107351,NYC Hostess,Manhattan,NoHo,40.72579,-73.99341,Entire home/apt,245,3,14,2019-05-14,0.30,1,198 +7403613,Spacious NOMAD 1 BR for 4,1405974,Alexander,Manhattan,Midtown,40.74603,-73.98364,Entire home/apt,150,3,1,2015-08-07,0.02,1,0 +7403721,Manhattan Club sleeps 4,38796373,Helena,Manhattan,Midtown,40.76441,-73.98058,Entire home/apt,386,7,0,,,1,0 +7404540,Room with a View,3401676,Nadine,Manhattan,Kips Bay,40.73774,-73.97343,Private room,95,28,1,2016-05-01,0.03,1,72 +7410868,Great spot in Lower East Side,5417646,EmiLy,Manhattan,Lower East Side,40.71546,-73.9896,Entire home/apt,120,4,3,2016-05-13,0.08,1,0 +7411044,"French charm at Château Village, Greenwich Village",38827405,John,Manhattan,Greenwich Village,40.7292,-74.00209,Private room,145,3,62,2018-06-06,1.30,1,0 +7411421,Hip & Trendy Williamsburg 2 BR 2BA Apartment,3750905,Louis,Brooklyn,Williamsburg,40.71303,-73.9558,Entire home/apt,109,2,28,2019-06-22,0.61,1,170 +7411499,Master Bedroom in Luxury Apartment,1023985,Andrew,Brooklyn,Williamsburg,40.71376,-73.95293,Private room,80,3,2,2015-08-03,0.04,1,0 +7411733,Sunny apartment overlooking park,38832294,Samantha,Brooklyn,Crown Heights,40.67358,-73.94351,Entire home/apt,105,1,7,2018-09-11,0.15,1,0 +7415011,Cozy room in 1bedroom apt,15824880,Israel,Queens,Astoria,40.7722,-73.93105,Private room,37,1,0,,,1,0 +7415905,Luxury Modern Brownstone Full Apt,38850307,Elwanda,Brooklyn,Bedford-Stuyvesant,40.6846,-73.94478,Entire home/apt,125,3,130,2019-07-06,2.72,1,217 +7417371,Private room in Nolita / SOHO,3417039,David,Manhattan,Nolita,40.72411,-73.99563,Private room,80,2,1,2015-09-06,0.02,1,0 +7417444,Studio in Lincoln Sq - Columbus Cir,11239404,Sholeh,Manhattan,Upper West Side,40.77088,-73.98061,Entire home/apt,140,2,2,2015-12-01,0.04,1,0 +7417520,East Village Two Bedroom,37028138,Matt,Manhattan,East Village,40.72228,-73.9838,Entire home/apt,250,3,21,2017-11-26,0.44,1,0 +7418754,"Affordable, quiet, brownstone home",601586,Luke,Brooklyn,Bedford-Stuyvesant,40.68148,-73.93145,Private room,79,1,0,,,1,0 +7418874,Huge Lower East Side 2 Bedroom,6575777,Pippa,Manhattan,Lower East Side,40.71864,-73.98346,Entire home/apt,450,7,1,2015-10-18,0.02,1,0 +7419040,Sunny Greenpoint 1 Bedroom with vintage feel,30423241,Nick,Brooklyn,Greenpoint,40.72927,-73.95707,Entire home/apt,120,3,6,2018-04-18,0.17,2,43 +7419230,East Village Penthouse With Rooftop,22805576,Will,Manhattan,East Village,40.72163,-73.97888,Private room,100,1,0,,,1,0 +7419334,Bright and beautiful 1 bedroom Apt.,19135506,Rosalia,Manhattan,Upper West Side,40.7777,-73.98796,Entire home/apt,150,1,1,2015-08-10,0.02,1,0 +7419517,Comfy room in Gramercy Park,4875631,Max,Manhattan,Gramercy,40.73579,-73.98175,Private room,200,1,0,,,1,0 +7421930,Long Island City- Furnished Studio,22344488,Jess,Queens,Long Island City,40.75226,-73.94089,Entire home/apt,110,1,9,2015-09-26,0.19,1,0 +7426597,Sunny family-friendly 2br & parking,38902136,Michal,Brooklyn,Gowanus,40.66892,-73.99136,Entire home/apt,165,3,178,2019-06-23,3.70,1,134 +7428365,"City retrieve1 -large bedroom, comfortable / quite",3542562,Jana,Manhattan,Harlem,40.82622,-73.9498,Private room,69,31,1,2017-01-07,0.03,4,64 +7428891,"City retrieve2-comfort, quite, sunny room and desk",3542562,Jana,Manhattan,Harlem,40.82605,-73.94783,Private room,69,31,3,2018-09-30,0.08,4,32 +7429161,BLUE SKIES AND GREEN TREES IN NYC.,38914517,Jean,Brooklyn,Flatbush,40.64213,-73.95298,Private room,180,1,22,2016-11-20,0.50,2,89 +7431316,Large private room in W. Heights,16617981,Emmanuel,Manhattan,Washington Heights,40.83523,-73.9398,Private room,40,1,2,2015-12-18,0.05,1,0 +7432146,2 twins bed Private room in Brooklyn,4279384,Tanya,Brooklyn,Flatbush,40.64167,-73.95465,Private room,40,3,4,2017-08-01,0.09,2,0 +7433174,Apt.-private entrance -Townhouse- 10mins. to JFK,34789416,Carl,Queens,Springfield Gardens,40.67205,-73.75343,Private room,109,1,1,2018-06-16,0.08,1,365 +7433796,Room Epic View Near Freedom Tower,2134232,Crystal,Manhattan,Tribeca,40.71928,-74.01125,Private room,100,1,15,2017-06-08,0.34,2,0 +7434316,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65628,-73.96014,Private room,70,5,3,2015-09-22,0.06,2,0 +7434420,Steps Away From Grand Central,38943127,Tricia,Manhattan,Murray Hill,40.74981,-73.9786,Entire home/apt,198,5,1,2015-09-13,0.02,1,0 +7435181,Refreshing Bushwick Enclave,38946305,Allon,Brooklyn,Bushwick,40.69496,-73.93088,Private room,50,3,4,2015-12-27,0.08,1,0 +7435223,Patricia's Place near Williamsburg,38948315,Patricia,Brooklyn,Bushwick,40.69644,-73.92707,Entire home/apt,130,2,106,2019-06-08,2.20,1,210 +7435577,Comfy Modern Bklyn 1BR + Guest BR,28460565,Su,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92831,Entire home/apt,135,2,6,2015-12-07,0.13,1,0 +7435882,Bushwick Room,4807448,David,Brooklyn,Bushwick,40.70647,-73.92093,Private room,35,20,0,,,1,0 +7435904,1 BR Apartment Upper West Side,38952124,Joanna,Manhattan,Upper West Side,40.79555,-73.96578,Entire home/apt,399,3,0,,,1,0 +7436186,Beautiful bedroom in Ditmas Park!!!,6367907,J And Lana,Brooklyn,Flatbush,40.63198,-73.95988,Private room,108,2,59,2019-06-23,1.24,1,344 +7437623,Charming UES PreWar 24/7 Doorman 2 bed/2 bath apt,1025745,Meredith,Manhattan,Upper East Side,40.78271,-73.95288,Entire home/apt,595,2,30,2019-06-19,0.63,1,332 +7437824,2BR + Roof Top-20min from Manhattan,17942384,Maud,Brooklyn,Park Slope,40.66835,-73.97981,Entire home/apt,129,5,2,2015-08-23,0.04,1,0 +7438254,"Sunny, cozy, and convenient room in Harlem",38965196,Jen,Manhattan,Harlem,40.80649,-73.95565,Private room,88,4,16,2017-05-28,0.43,1,0 +7438743,Spacious Studio Room with Beautiful view NYC,38840706,Lance,Queens,Flushing,40.76735,-73.81801,Private room,75,1,28,2018-01-01,0.60,1,363 +7439512,One room in artsy Williamsburg,38973529,Abby,Brooklyn,Williamsburg,40.71723,-73.96285,Private room,85,1,0,,,1,0 +7439572,Cozy apt. near the subway in uptown Manhattan,25615380,Mariza,Manhattan,Washington Heights,40.85619,-73.93117,Private room,70,1,2,2016-12-03,0.06,1,145 +7448093,stylish apartment w/ backyard,6223874,Rachael,Brooklyn,Greenpoint,40.73059,-73.95651,Entire home/apt,185,1,3,2017-02-11,0.06,1,0 +7450047,Calm & Quiet in Clinton Hill,3676701,Margo,Brooklyn,Clinton Hill,40.68128,-73.96286,Entire home/apt,145,3,5,2016-09-07,0.10,1,0 +7451145,RARE! Vintage 2 Bed Artist's Flat,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68686,-73.94973,Entire home/apt,150,1,1,2015-12-20,0.02,3,0 +7452987,Big sunny 1BR in Ditmas Park with kitten!,429925,Jordan,Brooklyn,Flatbush,40.63767,-73.95637,Entire home/apt,50,21,0,,,1,0 +7453537,Lg Prospect Hts Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67883,-73.97051,Private room,70,1,258,2019-06-30,5.45,13,320 +7454378,Beautiful Home for seasonal rental,39039509,Emmanuelle,Brooklyn,East Flatbush,40.64563,-73.9419,Entire home/apt,150,2,36,2019-05-31,0.77,1,248 +7454426,Private room in WILLIAMSBURG LOFT,38944275,Hilary,Brooklyn,Williamsburg,40.7138,-73.96798,Private room,100,1,12,2018-10-27,0.26,1,89 +7454585,Private Room in Shared Apartment,8670155,Jason,Manhattan,Kips Bay,40.74085,-73.98153,Private room,69,1,1,2015-09-02,0.02,1,0 +7454629,Brooklyn's finest by Prospect Park,38609509,Casey,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.95888,Entire home/apt,115,3,65,2018-09-17,1.37,1,127 +7455580,Minimal Central Chelsea Studio,2801316,Arty,Manhattan,West Village,40.73778,-73.99941,Entire home/apt,120,5,17,2019-06-24,0.56,1,28 +7455635,Unique Artists' Studio in Manhattan,1407021,Gabe,Manhattan,Chinatown,40.71624,-73.99015,Entire home/apt,180,3,30,2018-01-03,0.63,1,0 +7456166,Large 1 Bdrm for 5; close to Roberta's / Morgan L,36849759,Peter,Brooklyn,Bushwick,40.70222,-73.93294,Entire home/apt,147,3,109,2019-07-01,2.50,2,191 +7456691,Large One Bedroom with Backyard,5553132,Carver,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95666,Entire home/apt,125,2,6,2015-08-25,0.12,1,0 +7457099,Luxury Upper East Side Apartment,39055176,Bo,Manhattan,Upper East Side,40.76205,-73.96382,Entire home/apt,328,2,145,2019-06-12,3.05,1,298 +7457673,NEW Modern Brooklyn 1BR Apt!,2203415,James,Brooklyn,Bedford-Stuyvesant,40.68678,-73.9513,Entire home/apt,85,1,6,2015-11-29,0.13,1,0 +7460009,One bedroom apartment,37077716,Biruta,Brooklyn,Bay Ridge,40.63014,-74.027,Entire home/apt,60,7,10,2018-08-06,0.21,1,0 +7460677,Cozy Sublet in Brooklyn,32691187,Paul,Brooklyn,Bedford-Stuyvesant,40.68618,-73.93273,Private room,60,3,7,2015-10-22,0.15,1,0 +7460748,East Williamsburg /Bushwick Room,1910452,Thuy,Brooklyn,Williamsburg,40.70608,-73.9433,Private room,46,2,0,,,2,0 +7460803,Large private bed/bath by Times Sq,18922562,Ishan,Manhattan,Hell's Kitchen,40.75538,-73.99751,Private room,90,2,0,,,1,0 +7460924,Experience Brooklyn,14925591,Juan,Brooklyn,Williamsburg,40.70275,-73.93445,Entire home/apt,150,1,191,2019-06-16,3.97,1,290 +7460933,Large Private Room in Greenpoint/ Williamsburg,12738054,Aude,Brooklyn,Greenpoint,40.72435,-73.95154,Private room,95,1,119,2019-06-24,2.57,2,1 +7461611,Extraordinary One Bedroom Apartment,28316637,Lisa,Brooklyn,Crown Heights,40.66514,-73.95688,Entire home/apt,185,3,56,2019-06-26,1.25,1,333 +7461720,Townhouse Bonus Room w/Private Bath,942252,Kimberly,Brooklyn,Prospect Heights,40.68024,-73.96658,Private room,89,1,213,2019-07-01,4.42,2,38 +7461910,Brooklyn Brownstone In Historic Bed Stuy - LEGAL,15539137,Natasha,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93751,Entire home/apt,67,2,149,2019-06-24,4.08,1,142 +7462019,LAKOU LAKAY- A HOME AWAY FROM HOME,39085295,Guerline,Brooklyn,Flatbush,40.63968,-73.95215,Entire home/apt,125,3,105,2019-06-25,2.67,1,195 +7462108,1 BR in a shared flat East Village,39085072,Pierre,Manhattan,Gramercy,40.73366,-73.98313,Private room,80,1,4,2015-12-25,0.08,1,0 +7470123,Entire apartment in Williamsburg,39126862,Alexandra,Brooklyn,Williamsburg,40.70732,-73.95259,Entire home/apt,199,3,4,2016-01-04,0.08,2,0 +7470216,Room in Nolita with great Rooftop,1534857,Sandro,Manhattan,Nolita,40.72261,-73.99333,Private room,79,12,0,,,2,0 +7471102,"Centrally Located, Spacious, and Quiet!",13001047,Mark,Manhattan,Gramercy,40.73768,-73.98727,Entire home/apt,225,3,0,,,1,0 +7471859,Williamsburg Walk Up,3504234,Ben,Brooklyn,Williamsburg,40.7128,-73.94175,Entire home/apt,125,1,0,,,1,0 +7471933,Brooklyn corner loft! Great views+elevator✌️,34315772,Shawn,Brooklyn,Williamsburg,40.70414,-73.93408,Entire home/apt,360,6,34,2019-07-02,0.72,1,76 +7472465,"Large, sunny apartment with rooftop",3700637,Hannah And Michael,Brooklyn,Williamsburg,40.71332,-73.95291,Entire home/apt,200,3,1,2015-08-04,0.02,1,0 +7472710,"The large, sunny two people room. 20 min to city!",26388084,Barbara & Andrzej,Queens,Sunnyside,40.74824,-73.91361,Private room,80,4,42,2019-07-03,0.89,2,1 +7473810,Light-filled urban cabin,39143718,Sean,Brooklyn,Bedford-Stuyvesant,40.68141,-73.95841,Entire home/apt,400,7,9,2019-01-02,0.20,2,365 +7473909,Beautiful Room in Central Brooklyn House,14291580,Ben,Brooklyn,Park Slope,40.68049,-73.97662,Private room,65,8,7,2018-09-02,0.15,1,11 +7475079,Quiet bright clean and convenient in 2 Bdroom apt.,39148503,Ramiro,Brooklyn,Williamsburg,40.70891,-73.94161,Private room,70,3,8,2019-01-01,0.17,2,0 +7475552,"Zen Oasis: Quiet, Comfortable Bushwick Room",22652051,Eric,Brooklyn,Bushwick,40.70414,-73.92888,Private room,85,2,24,2017-05-07,0.58,1,0 +7475708,2 Bedroom in Gramercy,12535775,Christina,Manhattan,Gramercy,40.73764,-73.9819,Entire home/apt,200,1,0,,,1,0 +7478570,Chic pad steps from Prospect Park,10183117,Cam,Brooklyn,Prospect-Lefferts Gardens,40.66037,-73.95901,Entire home/apt,68,2,7,2016-07-25,0.15,1,0 +7479520,Room in cozy Prime-Williamsburg Apt,9942424,Ilinca,Brooklyn,Williamsburg,40.71326,-73.9542,Private room,50,10,0,,,1,0 +7480066,"130/night, big and cozy, Brooklyn",4336763,Lary,Brooklyn,Gowanus,40.6798,-73.98231,Entire home/apt,130,1,4,2015-11-17,0.08,1,0 +7480520,Renovated & Spacious Chelsea Studio,15887987,Benjamin,Manhattan,Chelsea,40.73925,-74.0,Entire home/apt,215,3,94,2019-05-25,2.02,1,8 +7480729,BRIGHT & PRIVATE EAST VILLAGE STUDIO APARTMENT,12161280,Taylor,Manhattan,East Village,40.72528,-73.97882,Entire home/apt,165,4,38,2019-06-16,0.80,1,0 +7480795,1 bedroom in The East Village,18576994,Jennie,Manhattan,East Village,40.72361,-73.98395,Private room,100,1,6,2015-08-10,0.12,1,0 +7482448,Stylish garden apartment,10558084,Gennadiy,Brooklyn,Bedford-Stuyvesant,40.68558,-73.9281,Entire home/apt,85,3,1,2015-11-02,0.02,1,0 +7482767,Apartment share - Private Bedroom,39186813,Robert,Brooklyn,Carroll Gardens,40.67541,-73.99812,Private room,75,1,0,,,1,0 +7482792,Prospect Heights BK Studio,8435624,Heidi,Brooklyn,Crown Heights,40.68073,-73.96369,Entire home/apt,105,2,15,2016-07-20,0.31,1,0 +7482821,Bushwick Artist Haven w Private Yard by JMZ subway,4157435,Blair,Brooklyn,Bushwick,40.69696,-73.93433,Entire home/apt,100,5,71,2019-05-24,1.54,1,238 +7482970,"Time Square, New York City Center. Quiet Oasis!",14084147,Devin,Manhattan,Hell's Kitchen,40.75864,-73.99056,Entire home/apt,499,3,149,2019-07-02,3.11,1,201 +7483034,Spacious Chelsea Private Bedroom,7202390,Drew,Manhattan,Chelsea,40.74582,-73.99472,Private room,195,1,0,,,1,0 +7483049,Lovely 2-Bedroom Near Prospect Park,11816453,Natalie,Brooklyn,South Slope,40.66266,-73.98885,Entire home/apt,150,3,4,2017-09-30,0.09,1,0 +7483853,"Spacious, private UES room",33983182,Kaivan,Manhattan,Upper East Side,40.78235,-73.95058,Private room,54,25,4,2016-07-01,0.08,1,0 +7483951,PH With Big Terrace & City View!!!!,35321797,Miyako,Brooklyn,Williamsburg,40.71802,-73.95228,Entire home/apt,250,1,1,2016-05-01,0.03,1,0 +7484548,Cozy Comfy Private Room,39200438,William,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93983,Private room,40,1,23,2019-05-07,0.56,1,365 +7491626,Balcony Oasis & Open View - 20 min to Manhattan,30662827,Nicole,Queens,Astoria,40.767,-73.93051,Entire home/apt,95,4,1,2016-07-08,0.03,1,0 +7491713,NYC Lavish Studio Apartment Steps from SoHo!,30283594,Kara,Manhattan,Financial District,40.70862,-74.01408,Entire home/apt,169,30,3,2018-12-07,0.09,121,364 +7492539,urban cottage,6004716,Rosalyn,Queens,Astoria,40.7573,-73.92773,Private room,75,1,0,,,1,0 +7495477,Times Square luxury elevator doorman alcove studio,23224059,Zachary,Manhattan,Hell's Kitchen,40.76432,-73.99396,Entire home/apt,175,4,19,2019-05-30,0.43,1,343 +7495497,Park Slope Loft,2045777,Michael & Katherine,Brooklyn,South Slope,40.66707,-73.98994,Entire home/apt,145,1,4,2015-10-12,0.09,1,0 +7496211,Lower Manhattan Studio Alcove Apt,6520502,Jim,Manhattan,Financial District,40.70725,-74.01533,Entire home/apt,450,1,0,,,1,0 +7496720,Artist's Loft,3530591,Nanda,Manhattan,East Village,40.72295,-73.98246,Entire home/apt,135,4,4,2017-02-11,0.09,1,0 +7496824,Upper West Side Apt,39262419,Stacey,Manhattan,Upper West Side,40.7787,-73.98407,Entire home/apt,125,3,2,2015-12-11,0.05,1,0 +7497287,Massive Bedroom by Prospect Park,241593,Thomas,Brooklyn,Flatbush,40.65036,-73.96306,Private room,70,1,0,,,2,0 +7497370,"Spacious, Cozy Upper East Side Apt",39268020,Lorrin,Manhattan,Upper East Side,40.77673,-73.95078,Private room,100,1,7,2017-04-11,0.20,1,0 +7498074,Modern & Renovated | Great Location,13347167,AFI Apartments,Manhattan,Upper East Side,40.77085,-73.95725,Entire home/apt,118,30,4,2019-04-13,0.11,29,315 +7498271,"3Bdr Artist Apt. (L,M,J,Z trains)",35819315,Hui & Jon,Brooklyn,Bushwick,40.69593,-73.92057,Entire home/apt,172,3,135,2019-06-28,2.99,2,247 +7498508,The big little room,24377694,Kori,Brooklyn,Crown Heights,40.67804,-73.95411,Private room,105,1,1,2017-09-24,0.05,3,0 +7498981,The little big room,24377694,Kori,Brooklyn,Crown Heights,40.67628,-73.95422,Private room,55,1,1,2017-08-19,0.04,3,0 +7499452,Fully equiped room. TV AC,7443028,Ivan,Brooklyn,Bushwick,40.68949,-73.91191,Private room,60,5,0,,,1,0 +7500030,Two bedroom with two fold out bed,19976579,Damask,Manhattan,East Village,40.72682,-73.97845,Entire home/apt,250,1,0,,,1,0 +7500228,"Charming cozy bedroom, Downtown",16960158,Monte,Manhattan,Battery Park City,40.71011,-74.01457,Private room,99,2,31,2016-06-26,0.65,1,0 +7500270,Peaceful and Spacious Brooklyn Gem,21742272,Jenny,Brooklyn,Midwood,40.62467,-73.96406,Entire home/apt,88,2,13,2017-09-14,0.37,1,0 +7500390,Modern Apartment in NOHO / SOHO,11279503,Bobby,Manhattan,NoHo,40.7256,-73.99555,Private room,125,1,3,2015-09-21,0.06,1,0 +7500571,Gorgeous 1 Bedroom in Bed-Stuy,39288710,Audra,Brooklyn,Bedford-Stuyvesant,40.68544,-73.93872,Entire home/apt,102,3,64,2019-06-24,1.38,1,296 +7500903,HUGE room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64305,-73.99959,Private room,40,2,1,2015-08-09,0.02,2,0 +7501154,Charming sunny studio - Boerum Hill,2260108,Caroline,Brooklyn,Boerum Hill,40.68852,-73.98697,Entire home/apt,119,5,12,2017-08-21,0.25,1,0 +7501292,Gorgeous 1BR w huge private terrace,5565918,Ted,Brooklyn,Bedford-Stuyvesant,40.69141,-73.934,Entire home/apt,101,4,54,2019-04-28,1.14,1,0 +7501668,"Great Room in Bushwick, Brooklyn!",39249461,Justin,Brooklyn,Bushwick,40.70512,-73.92187,Private room,65,3,3,2015-08-20,0.06,1,0 +7501694,Prolonged Traveler's Dream( a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81335,-73.8873,Private room,40,30,15,2019-06-30,0.32,6,333 +7501794,Nice & Sweat Apartment in Manhhatan,10131727,Alex,Manhattan,Harlem,40.8051,-73.95069,Entire home/apt,109,2,1,2015-09-03,0.02,1,0 +7502146,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81395,-73.88675,Private room,40,30,21,2019-06-22,0.44,6,343 +7507877,Cozy house in Sunnyside gardens,22079796,Fatima Vélez,Queens,Sunnyside,40.74601,-73.9149,Entire home/apt,250,15,0,,,1,18 +7508560,Beautiful and Convenient,39335488,Mirlande,Manhattan,East Harlem,40.81211,-73.9378,Private room,75,3,134,2019-06-02,2.88,1,90 +7508742,Wild Flower Nice quiet space Queen size bed.,26354652,Philbert,Brooklyn,Flatbush,40.64935,-73.96485,Private room,90,2,24,2019-07-02,1.48,1,175 +7509362,Great BIG Upper West Side Apartment,29156329,Andrew,Manhattan,Upper West Side,40.8012,-73.96382,Private room,87,3,9,2018-09-19,0.19,1,0 +7510415,2 BR modern apartment in historic Harlem,30200529,Mark,Manhattan,Harlem,40.81095,-73.9443,Entire home/apt,185,2,12,2018-05-21,0.65,1,0 +7510770,Cozy Small Bedroom w/Bathroom. Balcony & Open Bar.,39347667,Keisher,Brooklyn,Bushwick,40.68496,-73.91107,Private room,45,14,15,2018-07-10,0.48,1,0 +7511452,Historic WoHo Townhouse,2588427,Rip,Manhattan,SoHo,40.72547,-74.01,Private room,300,7,51,2018-01-05,1.11,2,156 +7511610,Ft. Greene cozy & modern studio!,7094504,Ingrid,Brooklyn,Fort Greene,40.68799,-73.97314,Entire home/apt,140,2,19,2019-07-07,0.40,1,1 +7512240,Charming Top Floor Apartment w/ Roof Patio,39355825,Cole,Brooklyn,Williamsburg,40.71477,-73.94761,Private room,70,5,5,2016-07-10,0.11,1,0 +7512407,Heart of Williamsburg w/Backyard,23584870,Sandy,Brooklyn,Williamsburg,40.71733,-73.95566,Entire home/apt,150,6,0,,,1,0 +7512811,A True Brooklyn experience,13873590,Ricky,Brooklyn,Williamsburg,40.70884,-73.95742,Private room,80,1,3,2015-08-24,0.06,1,0 +7512967,Master Bedroom w/ private bathroom,1497263,Melissa,Brooklyn,Williamsburg,40.71704,-73.94509,Private room,60,1,0,,,1,0 +7514135,"1 Bedroom, Bushwick, Brooklyn",37407363,Patrick,Brooklyn,Bushwick,40.70192,-73.92928,Private room,45,1,7,2015-12-05,0.15,1,0 +7515281,"Clean private room, 20min from City",18277294,Noel,Brooklyn,Crown Heights,40.67065,-73.93544,Private room,40,8,1,2015-08-09,0.02,1,0 +7515694,A charming Parisian style apartment,1825554,Chris,Manhattan,Chelsea,40.7394,-73.99838,Entire home/apt,210,1,10,2019-01-01,0.22,1,6 +7516218,Modern 1 Bedroom in Dumbo / Vinegar Hill,60046,John,Brooklyn,Vinegar Hill,40.70146,-73.98188,Entire home/apt,225,30,23,2019-06-11,0.49,1,268 +7516992,Bedroom in Midtown Apartment,29544115,Chisom,Manhattan,Midtown,40.75737,-73.96916,Private room,70,1,1,2015-08-24,0.02,1,0 +7517579,Super Cute Brooklyn Loft,15772306,Jasmine,Brooklyn,Clinton Hill,40.69188,-73.9607,Private room,45,5,0,,,1,0 +7517614,"Cute, Eclectic, & Family Friendly",39389693,Sara,Manhattan,Washington Heights,40.8327,-73.94486,Entire home/apt,120,1,3,2015-09-19,0.06,1,0 +7518327,"13 Essex St, 202",39394883,文立,Manhattan,Chinatown,40.71612,-73.99121,Entire home/apt,150,1,0,,,1,0 +7519160,Comfy room (only) in my apt - UWS,397423,Travis,Manhattan,Upper West Side,40.77778,-73.9781,Private room,133,2,183,2019-07-01,3.90,1,263 +7524934,Large light-filled master bedroom.,39298265,Julia,Manhattan,Harlem,40.80313,-73.95742,Private room,60,2,1,2015-07-25,0.02,1,0 +7526715,Spacious Bedroom in Central Harlem,11203708,Elizabeth,Manhattan,Harlem,40.81189,-73.94148,Private room,64,2,20,2018-12-09,0.42,1,0 +7528664,"Small & Cozy Bedroom, L.E.S",20245055,Sade,Manhattan,Lower East Side,40.71289,-73.98877,Private room,69,3,27,2019-06-21,0.56,2,261 +7529231,"Small One Bedroom, Brooklyn Apt",39457267,Mike,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95393,Private room,40,1,2,2015-09-03,0.04,1,0 +7531309,Studio in the Heart of Wall Street,810560,Jen,Manhattan,Financial District,40.70552,-74.00841,Entire home/apt,190,1,3,2015-07-25,0.06,1,0 +7534543,Garden apt with private entrance,12215421,Brian,Brooklyn,Park Slope,40.66889,-73.97617,Entire home/apt,275,2,60,2018-10-28,1.26,1,0 +7535342,2 BR in Times Sq: The heart of NYC,16387794,Layka,Manhattan,Hell's Kitchen,40.7603,-73.99222,Entire home/apt,200,3,203,2019-06-29,4.27,1,271 +7535450,Upper East Side private bedroom near Central Park,39480845,Jen,Manhattan,East Harlem,40.79042,-73.94641,Private room,75,4,37,2017-03-04,0.77,1,0 +7535791,"Big, bright loft in Williamsburg",39483454,Laura,Brooklyn,Williamsburg,40.7129,-73.95565,Entire home/apt,180,14,2,2015-08-05,0.04,1,0 +7539610,"Private room, shared bathroom.",39503857,Craig,Manhattan,Harlem,40.82034,-73.94345,Private room,200,1,0,,,1,0 +7541249,Cozy room in sunny BK apt,31086628,Lindsay,Brooklyn,Gowanus,40.67758,-73.98519,Private room,59,2,96,2019-07-03,2.07,1,41 +7541444,Beautiful treeline BK apartment!,1110017,Bettina,Brooklyn,Greenpoint,40.72402,-73.9415,Entire home/apt,149,5,2,2016-10-14,0.04,1,0 +7542500,Cozy Brooklyn Apartment,9646150,Lila (Eli),Brooklyn,Prospect-Lefferts Gardens,40.65736,-73.96094,Private room,55,1,107,2019-06-23,2.22,2,46 +7542840,Room in Upper West Side Manhattan,31799541,Eugene,Manhattan,Upper West Side,40.79452,-73.97065,Private room,75,1,12,2017-02-19,0.27,1,0 +7543993,Triplex with private garden,7753501,B,Manhattan,Harlem,40.80772,-73.951,Entire home/apt,400,2,1,2015-08-12,0.02,1,0 +7544709,Cool 1 Bdrm Apt in Lower East Side,39533449,Arthur,Manhattan,Lower East Side,40.71281,-73.98705,Entire home/apt,169,4,68,2019-05-27,2.54,1,44 +7545060,Perfect UWS Studio Sanctuary!,24265578,Jasmine,Manhattan,Upper West Side,40.79955,-73.96369,Entire home/apt,125,2,7,2016-10-23,0.15,1,0 +7545168,Private room in hip & historic area,2277452,Ilean,Brooklyn,Bedford-Stuyvesant,40.68346,-73.95551,Private room,58,2,30,2019-04-30,1.97,1,0 +7545274,Charming 1 Bedroom Apt - Midtown East,25846948,Morgan,Manhattan,Upper East Side,40.7631,-73.96393,Entire home/apt,151,3,19,2017-06-26,0.41,1,0 +7545750,Light Filled Studio Apartment,39539952,Jennifer,Manhattan,Inwood,40.86464,-73.92768,Entire home/apt,67,14,7,2018-09-08,0.15,1,21 +7545751,Edgecombe Ave Room,39539913,Adam,Manhattan,Harlem,40.82599,-73.94238,Private room,100,1,0,,,1,0 +7546039,Charming West Village Studio,39541748,Marcello,Manhattan,West Village,40.73764,-73.99887,Entire home/apt,185,3,4,2015-09-18,0.08,1,0 +7546944,Modern In Classic Brownstone,198538,Francesco,Brooklyn,Crown Heights,40.67215,-73.94126,Entire home/apt,190,2,63,2018-10-25,1.41,1,0 +7547439,"Quaint, Quiet East Village 1 BR",39549996,T.,Manhattan,East Village,40.72962,-73.98932,Private room,78,16,9,2019-04-18,0.19,1,23 +7547481,Adorable Brooklyn Apartment,9646150,Lila (Eli),Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96064,Private room,60,1,140,2019-06-24,4.00,2,40 +7547536,Greenwich Village: BEST Block,17122110,Paul,Manhattan,Greenwich Village,40.73528,-73.99744,Entire home/apt,210,2,193,2019-07-01,4.13,1,169 +7547750,"ENTIRE, SUNNY APT IN HEART OF LIC",9970061,Nicole,Queens,Long Island City,40.7432,-73.95565,Entire home/apt,139,2,6,2016-01-03,0.13,1,0 +7555283,Lovely 2 Bedroom in Upper West Side,39599671,Sara,Manhattan,Upper West Side,40.79045,-73.97361,Entire home/apt,200,5,12,2018-06-16,0.26,1,0 +7555693,Clean White Room overlooking Bridge & River,39603420,Graham,Manhattan,Harlem,40.82652,-73.95304,Private room,75,1,151,2019-05-30,3.17,1,0 +7556153,Fort Greene Sanctuary,16437254,Benjamin,Brooklyn,Fort Greene,40.68896,-73.97737,Entire home/apt,123,30,7,2019-03-09,0.19,21,342 +7556587,Sunny Room in Harlem,39608626,,Manhattan,Harlem,40.82929,-73.94182,Private room,28,1,1,2015-08-01,0.02,1,0 +7556669,Garden Facing Quiet Retreat,16437254,Benjamin,Brooklyn,Boerum Hill,40.68857,-73.98668,Entire home/apt,120,30,7,2018-05-05,0.15,21,360 +7556814,Top Floor Brownstone - Park Slope,3894475,Kyle,Brooklyn,South Slope,40.66671,-73.98172,Private room,85,2,5,2018-07-24,0.10,3,0 +7557546,Bright & Charming 2bdrm Minutes to Manhattan,9443343,Roula,Queens,Ditmars Steinway,40.77672,-73.91956,Entire home/apt,122,3,109,2019-07-03,2.34,1,271 +7559243,Christmas in New York,39624147,Pauline,Manhattan,Midtown,40.76372,-73.98081,Entire home/apt,700,7,0,,,1,0 +7560291,Upper West Side Studio Near All NYC,20670988,Moran,Manhattan,Upper West Side,40.794,-73.97632,Entire home/apt,99,5,16,2017-08-08,0.34,1,0 +7560654,Beautiful 1BR in upper Manhattan- close to subway!,22863142,Sarah And Mike,Manhattan,Washington Heights,40.83353,-73.94393,Private room,110,4,45,2019-06-17,2.23,1,59 +7560658,Perfect Brooklyn Loft Studio,8726365,Puja,Brooklyn,Williamsburg,40.70641,-73.96801,Entire home/apt,185,1,0,,,1,0 +7560918,"Williamsburg Studio, oudoor patio",39635423,Maura,Brooklyn,Williamsburg,40.71272,-73.96632,Entire home/apt,120,1,0,,,1,0 +7561257,"Beautiful, private 1BR in large shared apartment.",19914713,Samantha,Queens,Astoria,40.76254,-73.91415,Private room,89,2,7,2019-06-09,0.15,2,0 +7561314,Private room in modern Bushwick Apt,39636434,Peter,Brooklyn,Bushwick,40.69095,-73.92386,Private room,48,4,8,2017-08-30,0.17,1,0 +7561432,CHARMING ROOM W/ ROOF DECK ACCESS 2 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69342,-73.9611,Private room,90,30,20,2018-08-19,0.42,11,249 +7561584,SUNNY COZY ROOM FOR 1 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69411,-73.96151,Private room,90,30,31,2018-10-10,0.66,11,314 +7561686,Cozy Large Studio - Yankee Stadium,39639929,John,Bronx,Concourse,40.82381,-73.92725,Entire home/apt,110,1,1,2015-08-08,0.02,1,0 +7561847,Large and sunny 1br in Harlem!,10095503,Sophia,Manhattan,Harlem,40.82112,-73.94962,Entire home/apt,150,1,7,2016-10-30,0.15,1,10 +7561953,No better place than Prospect Place,1348134,Mareike,Brooklyn,Crown Heights,40.67552,-73.96041,Entire home/apt,120,5,4,2018-12-31,0.09,1,10 +7562552,Classic 1BR Brownstone w/ Backyard,39639169,Marlene,Brooklyn,Bedford-Stuyvesant,40.68338,-73.92072,Entire home/apt,110,3,125,2019-06-25,2.66,1,315 +7562611,Renovated 2 Rooms with balcony and ensuite bath,10475653,Izabel,Brooklyn,Windsor Terrace,40.64813,-73.97237,Private room,45,1,66,2019-07-01,1.38,3,228 +7563487,Great private room open for Aug!!,3353772,Jackie,Brooklyn,Williamsburg,40.70889,-73.94113,Private room,75,1,1,2015-08-04,0.02,1,0 +7563493,"Small Studio Private Suite by the Park近公園新小套房,鬧中取靜",39648442,A,Queens,Flushing,40.74823,-73.8084,Private room,65,1,158,2019-06-23,3.35,2,355 +7563529,Apartment in Chelsea btwn 6th-7th Aves,39652597,Mackenzie,Manhattan,Chelsea,40.74466,-73.99504,Entire home/apt,170,2,4,2016-09-22,0.09,1,0 +7563717,Spacious Studio in Midtown East,39655899,Ron,Manhattan,Midtown,40.75176,-73.96921,Entire home/apt,140,1,1,2015-08-26,0.02,1,0 +7570475,Cosy Master bedroom in Midtown West,16173306,Ali,Manhattan,Hell's Kitchen,40.76548,-73.99155,Private room,90,1,0,,,1,0 +7572103,Charming one bedroom NYC treasure! #10268,39699925,Avantika,Manhattan,Chinatown,40.71379,-73.99112,Entire home/apt,170,3,39,2019-07-03,0.85,1,19 +7572534,Comfortable cool - Manhattan - up to 2 guests,37579015,Ana,Manhattan,Hell's Kitchen,40.75894,-73.9915,Private room,90,1,142,2019-06-21,3.10,5,164 +7572637,Lovely 2 bedroom prime location,4398238,Andrew,Brooklyn,Prospect Heights,40.67505,-73.96711,Entire home/apt,175,2,5,2016-09-18,0.11,1,0 +7573103,Large 2.5 BR Apt In Park Slope,4565614,Jonathan,Brooklyn,South Slope,40.66293,-73.9838,Entire home/apt,135,1,3,2015-12-31,0.06,1,0 +7573221,"Cozy, clean in Greenpoint Brooklyn!",5287536,Kaya,Brooklyn,Greenpoint,40.72961,-73.95656,Entire home/apt,120,1,0,,,1,0 +7573321,Great NYC Apartment,1242357,Sam,Manhattan,Upper West Side,40.79397,-73.97376,Entire home/apt,175,3,1,2015-08-14,0.02,1,0 +7573430,"Private, renovated & furnished room",6031454,Melanie,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.95866,Private room,40,15,2,2015-11-28,0.04,1,0 +7574515,Furnished Columbia Apartment,38699335,Tom,Manhattan,Morningside Heights,40.80674,-73.96141,Private room,65,1,0,,,1,0 +7574757,"Family-friendly, cozy guest room",39713675,Quami,Brooklyn,Bedford-Stuyvesant,40.68366,-73.9247,Private room,69,2,186,2019-06-05,3.89,1,6 +7575626,Charming West Village Full Bed Apt,35307662,Lauren,Manhattan,Greenwich Village,40.73049,-74.00111,Private room,119,2,0,,,1,0 +7576910,"Private Modern room, stained glass view",39725165,Amanda,Manhattan,Harlem,40.80256,-73.94524,Private room,85,30,27,2018-12-31,0.61,1,0 +7577608,1 Large Bedroom plus 2nd bed,1355616,Carly,Brooklyn,Boerum Hill,40.68234,-73.98088,Private room,100,3,0,,,1,0 +7579573,Sunny NYC studio in prime location,39742177,Elle,Manhattan,Upper West Side,40.78323,-73.97721,Entire home/apt,155,3,1,2015-08-07,0.02,1,0 +7580481,Bright & Stylish Studio in the LES,10622338,Hester,Manhattan,Lower East Side,40.71767,-73.99004,Entire home/apt,160,1,26,2016-12-31,0.54,1,0 +7581611,Room in Spacious Williamsburg Loft,18770940,Ronald,Brooklyn,Williamsburg,40.70461,-73.93845,Private room,50,21,16,2016-10-31,0.34,1,0 +7581690,Spacious 2 Bedroom Apt,62791,Tal,Manhattan,Harlem,40.81208,-73.95097,Entire home/apt,125,3,1,2016-10-14,0.03,1,0 +7581727,SOHO LUXURIOUS LOFTED STUDIO,27921486,Judd,Manhattan,SoHo,40.72487,-73.99858,Entire home/apt,350,1,0,,,1,0 +7582706,1000 square feet of Luxury!,12757332,Jeremy,Manhattan,Financial District,40.70406,-74.01227,Entire home/apt,350,1,0,,,1,0 +7583507,Lovely Clinton Hill Bedroom,23124921,Kyle,Brooklyn,Clinton Hill,40.68973,-73.96073,Private room,65,2,2,2015-08-16,0.04,1,0 +7583901,Gorgeous 1 bedroom apt West Village,23299199,Marine,Manhattan,West Village,40.73453,-74.00656,Entire home/apt,247,1,0,,,1,0 +7584885,Charming large room ...,23129690,Jing,Manhattan,Upper West Side,40.80089,-73.96752,Shared room,85,1,0,,,1,0 +7590712,Cute & Cozy Short or Long Term Stay!,39805148,Chris,Queens,Jamaica,40.68692,-73.78022,Private room,45,1,63,2018-11-01,1.34,2,250 +7592433,Sunny & stylish 1 BR in Greenpoint,3751296,Matt & Alex,Brooklyn,Greenpoint,40.72717,-73.94697,Entire home/apt,139,2,21,2016-10-03,0.45,1,188 +7593263,Brand new 2bed/2bath garden apt steps from train,39808438,Easton,Brooklyn,Bushwick,40.68902,-73.9156,Entire home/apt,85,2,172,2019-06-17,3.60,5,136 +7593556,Big Cozy Apt w/ lrg outdoor space!,34312106,Kenny,Queens,Ridgewood,40.69962,-73.90439,Entire home/apt,125,2,108,2019-06-16,2.28,1,321 +7593985,UES - Private Studio with Kitchen,16382059,Sabrina,Manhattan,Upper East Side,40.77459,-73.9476,Private room,115,2,18,2016-02-15,0.38,1,0 +7594252,"Charming, large and peaceful",13283118,Nathalie,Brooklyn,South Slope,40.66627,-73.98954,Entire home/apt,175,60,1,2019-04-22,0.38,1,282 +7596078,"Funky, Quiet, Safe EV Walk-Up",4582155,Aaron,Manhattan,East Village,40.72475,-73.98009,Entire home/apt,140,3,0,,,1,0 +7596341,Midtown Manhattan best Location,17675081,Nathalia,Manhattan,Midtown,40.7601,-73.96746,Private room,125,1,0,,,1,0 +7597750,"One person, cozy room, real bed. 20 min to city!!!",26388084,Barbara & Andrzej,Queens,Long Island City,40.75037,-73.91265,Private room,59,4,28,2019-06-29,0.59,2,364 +7597951,Private BR in Modern Apt @ LES,17868326,Joshua,Manhattan,Lower East Side,40.72028,-73.98182,Private room,80,3,1,2016-04-27,0.03,1,0 +7599569,Quiet room in Bushwick! Looking for 1 month sublet,15762897,Davey,Brooklyn,Bushwick,40.69574,-73.9286,Private room,50,14,10,2016-06-06,0.21,1,0 +7599621,"Sunny 1 Bed Apt. Greenpoint, BK",19037938,Abby,Brooklyn,Greenpoint,40.72541,-73.95279,Private room,45,12,0,,,1,0 +7599873,GREAT APARTMENT IN BED STUY,7182520,Drew,Brooklyn,Bedford-Stuyvesant,40.6862,-73.9542,Entire home/apt,90,4,7,2018-08-08,0.15,1,18 +7600297,Midcentury Inspired Plantlovers Apt,7399447,Lee And Kara,Brooklyn,Williamsburg,40.71163,-73.95186,Entire home/apt,250,7,33,2017-01-14,0.70,1,0 +7601496,Spacious 1BR in Williamsburg,39706334,Erin,Brooklyn,Williamsburg,40.71009,-73.95398,Entire home/apt,140,1,0,,,1,0 +7601870,Chelsea Chic,35102629,Marino,Manhattan,Chelsea,40.75013,-74.0033,Entire home/apt,215,1,75,2019-05-26,1.61,1,331 +7602400,Stylish 1 BR in the heart of SoHo,2619307,Kameryn & Rob,Manhattan,SoHo,40.72634,-74.00101,Entire home/apt,180,3,6,2016-09-05,0.14,1,0 +7602426,Charming Classic UWS 2BR & Balcony,18008678,Clayton,Manhattan,Upper West Side,40.80193,-73.97038,Entire home/apt,250,2,18,2018-05-19,0.38,2,0 +7602442,Chelsea Apt Great Location,39868106,Michael,Manhattan,Flatiron District,40.74334,-73.99204,Entire home/apt,400,1,0,,,1,0 +7602826,Amazing Chelsea-Flatiron Condo-Loft,2859398,Zafrullah,Manhattan,Chelsea,40.7457,-73.9939,Entire home/apt,700,5,1,2015-10-07,0.02,1,0 +7603075,Adorable room in heart of Brooklyn,17163531,Beck,Brooklyn,Flatbush,40.65353,-73.95611,Private room,65,1,0,,,1,0 +7603389,Private Room in Downtown Manhattan,39875363,James,Manhattan,Chelsea,40.7438,-73.99751,Private room,118,2,259,2019-07-01,5.44,1,47 +7603640,Brand new in the heart of Tribeca,8617411,Benjamin,Manhattan,Tribeca,40.71978,-74.00968,Private room,1500,1,0,,,1,365 +7603716,Zen Private Bedroom in Brooklyn Gem,10831168,Jennifer,Brooklyn,Fort Hamilton,40.61926,-74.03272,Private room,70,1,15,2019-06-30,0.39,1,22 +7604021,Cozy studio close to Central Park,39880500,Marie,Manhattan,Upper West Side,40.79203,-73.96967,Entire home/apt,110,7,9,2019-05-27,0.19,1,19 +7610785,Modern CottageStyle EarlyBirdDiscount! TimeSquare,39915290,A. Kaylee,Manhattan,Harlem,40.81095,-73.95296,Entire home/apt,299,3,90,2019-06-09,1.96,2,304 +7611169,Spacious bedroom with large closet & quiet balcony,39916890,Marianne,Manhattan,East Village,40.7324,-73.98883,Private room,95,4,3,2016-07-23,0.08,1,0 +7611764,Private Bedroom in Renovated Apt,87494,Kevin,Manhattan,Washington Heights,40.83431,-73.9402,Private room,70,2,2,2015-08-26,0.04,1,0 +7612100,Sunny Spotless Manhattan apartment,39921605,Rachel,Manhattan,Upper West Side,40.80417,-73.96874,Private room,167,30,44,2018-03-06,0.92,5,188 +7612456,"Private Bathroom, Room and Entrance on the UWS!",4936739,Bindia,Manhattan,Upper West Side,40.791,-73.9722,Private room,103,5,42,2019-07-01,1.49,1,221 +7615409,AMAZING 1 BR APT LES/Chinatown NYC,39938343,Aleksey,Manhattan,Lower East Side,40.71813,-73.99231,Entire home/apt,145,6,13,2018-06-03,0.27,1,0 +7615496,88 By The Park w/Parking Space,37676608,Akini,Brooklyn,Canarsie,40.63118,-73.89679,Entire home/apt,100,2,187,2019-06-16,3.93,1,300 +7615693,Amazing 4 Bdrm Brownstone Apt,39940356,Craig,Brooklyn,Fort Greene,40.6874,-73.97484,Entire home/apt,275,6,8,2019-04-28,0.23,1,9 +7616651,Cute room in large apartment.,3663218,John Conor,Brooklyn,Williamsburg,40.71405,-73.94129,Private room,60,1,1,2015-08-18,0.02,2,0 +7617511,Cute room in Williamburg,6828611,Ashley,Brooklyn,Williamsburg,40.70854,-73.95281,Private room,70,1,4,2015-12-29,0.09,1,0 +7618832,NoLiTa Creative Live/Work Pad,1464880,Costas,Manhattan,Nolita,40.72118,-73.99575,Entire home/apt,300,4,4,2019-06-04,0.09,1,89 +7619082,Sunny & Spacious W'burg 2 Bed & 2 Bath Penthouse,710443,Andrew,Brooklyn,Williamsburg,40.71534,-73.96633,Entire home/apt,370,2,132,2019-07-06,3.14,1,257 +7619996,"Relaxing, cozy corner of Harlem",16662303,Grace,Manhattan,Harlem,40.81835,-73.94138,Private room,50,1,2,2015-09-14,0.04,1,0 +7620336,$1200/ Feb.16th---Mar.13th *^COZY STUDIO APARTMENT,39968155,Brad,Manhattan,East Harlem,40.79106,-73.94588,Entire home/apt,65,20,0,,,1,0 +7620355,Sunny large room in Bushwick,38670785,Maxime,Brooklyn,Bushwick,40.70189,-73.92872,Private room,68,1,1,2015-08-31,0.02,1,0 +7620763,Lovely Bsmt Apt. Nr trn to NYC - No Cleaning Fee,15163256,Faigie,Brooklyn,Sheepshead Bay,40.60633,-73.95704,Private room,92,3,60,2019-06-17,1.29,3,334 +7621629,Your cozy spot in Upper West Manhat,39977656,Hongqing,Manhattan,Upper West Side,40.80299,-73.96465,Private room,40,9,0,,,1,0 +7621698,A cozy place in Astoria,39978385,Andraz,Queens,Astoria,40.76979,-73.92019,Entire home/apt,100,10,7,2019-06-29,0.15,1,0 +7622042,"Sunny, quiet home away from home",35743318,David,Manhattan,Upper East Side,40.77756,-73.94859,Private room,140,7,9,2018-09-13,0.60,1,204 +7627784,Modern & Stylish HK Private Bedroom,6684858,Jd,Manhattan,Hell's Kitchen,40.76769,-73.99405,Private room,150,3,17,2019-05-24,0.37,1,364 +7629563,Bright and Clean Room for You!,13866555,Kelli,Brooklyn,Bedford-Stuyvesant,40.68268,-73.92825,Private room,45,1,2,2015-09-03,0.04,1,0 +7629972,"1br w/full ba,spacious and private",16929791,Tijana,Brooklyn,Columbia St,40.6851,-74.00228,Private room,70,7,2,2019-05-21,0.17,1,32 +7630422,Upper West Side Perfection,37138251,Matthew,Manhattan,Upper West Side,40.78733,-73.97364,Entire home/apt,230,1,161,2019-06-21,3.39,1,347 +7631233,Room at astoria,22994376,Yoshihisa,Queens,Ditmars Steinway,40.78261,-73.91452,Private room,49,1,0,,,1,0 +7631585,Spacious Well Kept Apartment 5 min to Midtown,40034304,Finley,Queens,Long Island City,40.75203,-73.9361,Private room,80,3,8,2018-10-23,0.56,1,0 +7632128,Huge BR in Hell's Kitchen,19650141,Rahim,Manhattan,Hell's Kitchen,40.75563,-73.99742,Private room,105,1,0,,,1,0 +7632166,1 private bedroom in cozy Apartment in Brooklyn,4596309,Daphne,Brooklyn,Bedford-Stuyvesant,40.68317,-73.91432,Private room,40,3,3,2016-09-12,0.07,1,0 +7632182,Murray Hill Luxury ApT w/ BALCONY,40037773,Brandon,Manhattan,Kips Bay,40.7438,-73.9781,Private room,90,3,19,2016-03-22,0.43,1,0 +7632731,"3 Bdr Upper West Side Elegance, 2500sq ft",39455276,Doug,Manhattan,Upper West Side,40.7874,-73.97381,Entire home/apt,600,10,2,2018-08-03,0.06,1,36 +7632804,Private room in shared apt.,40041424,Marisela,Brooklyn,Crown Heights,40.67215,-73.94281,Private room,50,2,2,2015-09-09,0.04,1,0 +7633154,3 bedrms; ideal for 4-5 persons,3672503,Steven,Brooklyn,South Slope,40.66307,-73.9834,Entire home/apt,195,3,84,2019-07-06,1.77,1,18 +7633507,Spacious West Village Apartment,15192120,David,Manhattan,West Village,40.73866,-74.00537,Entire home/apt,200,3,0,,,1,0 +7634327,Spacious 2BR Duplex in East Village,9584747,Aaron,Manhattan,East Village,40.72178,-73.98212,Entire home/apt,250,2,11,2017-01-03,0.24,1,0 +7636280,Calm and Cute Entire Studio,40058595,Sloane,Manhattan,Upper East Side,40.77865,-73.94858,Entire home/apt,175,2,4,2016-05-29,0.08,1,0 +7636474,Big Room in Greenpoint/Williamsburg,40062888,Kevin,Brooklyn,Greenpoint,40.7252,-73.95276,Private room,100,13,0,,,1,0 +7636986,Cozy studio close to seven subway lines,1723544,Alessandro,Queens,Long Island City,40.75215,-73.93913,Entire home/apt,150,7,9,2018-05-25,0.19,1,9 +7637047,Beautiful Studio on Park Avenue,15090552,Max,Manhattan,Midtown,40.74559,-73.98325,Entire home/apt,175,1,1,2015-08-01,0.02,1,0 +7637101,Spacious 1 bedroom,2484520,Marcus,Manhattan,Morningside Heights,40.81033,-73.95897,Private room,150,1,0,,,1,0 +7637112,Wyndham Vacation Resorts Condos,40068023,John,Manhattan,Midtown,40.75219,-73.97133,Entire home/apt,400,6,0,,,1,0 +7637472,Bright room in 2BR apt in Nolita!,24170584,Lauren,Manhattan,Little Italy,40.71959,-73.99604,Private room,99,2,2,2015-10-06,0.04,2,0 +7637901,"Perfect location, 15 min.Manhattan",39835878,Tuba,Queens,Ditmars Steinway,40.77648,-73.90987,Private room,70,3,13,2016-11-18,0.28,1,219 +7638537,Private Bedroom on Queens Blvd,40072723,Maksud,Queens,Rego Park,40.72929,-73.8574,Private room,48,1,32,2017-08-29,0.92,1,0 +7643399,APARTMENT WITH PARKING BY HOSPITAL,39918716,Kazi,Brooklyn,East Flatbush,40.65551,-73.94206,Entire home/apt,199,2,6,2017-10-02,0.16,1,130 +7643901,Great Location For New Year's Weekend,39706100,Dan,Manhattan,Upper West Side,40.79317,-73.96956,Private room,90,3,6,2015-08-28,0.13,1,0 +7644203,Spacious private apt in pre-war building,33853401,Frances,Brooklyn,Crown Heights,40.67714,-73.9486,Entire home/apt,130,2,3,2016-07-25,0.06,1,0 +7644505,Contemporary Brooklyn Town House,29999716,Scott,Brooklyn,South Slope,40.66393,-73.98728,Entire home/apt,300,7,0,,,1,0 +7645359,Old World Charm in Hip Brooklyn,7500,Russ,Brooklyn,Clinton Hill,40.68864,-73.96759,Entire home/apt,175,30,7,2019-03-02,0.17,1,27 +7646092,Spacious room in Williamsburg,24001156,Jenny,Brooklyn,Williamsburg,40.71905,-73.94937,Private room,48,5,3,2015-11-18,0.06,1,0 +7646751,Great Room in Williamsburg Brooklyn,40027302,Kooky,Brooklyn,Williamsburg,40.72002,-73.96028,Private room,70,3,90,2019-06-30,1.89,1,323 +7646832,Historic Clinton Hill Townhouse,6182854,Douglas,Brooklyn,Clinton Hill,40.68458,-73.96332,Entire home/apt,380,3,5,2016-11-27,0.11,1,0 +7647268,NiceRoomNiceNeighborhoodCloseMaimonidesHospital,40124500,Regina,Brooklyn,Borough Park,40.63741,-74.00118,Private room,45,1,43,2019-06-29,0.99,2,310 +7647651,Private Bedroom in Large Loft,6072700,Adam,Brooklyn,Red Hook,40.67791,-74.0072,Private room,55,5,5,2019-06-22,0.10,1,0 +7649693,"Beautiful, large and sunny bedroom",40138709,Dani,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95634,Private room,32,1,0,,,1,0 +7651418,Cute 1 Bed Apt in Lower East Side,40151792,Neil,Manhattan,Lower East Side,40.71903,-73.9904,Entire home/apt,160,5,10,2019-06-12,0.21,1,11 +7651459,Trendy TriBeCa SoHo Suite,39726069,James,Manhattan,Tribeca,40.7187,-74.00384,Private room,107,1,2,2015-09-30,0.04,1,0 +7651474,Bright Brownstone 2BR BedStuy Apt,405908,Robin & Bob,Brooklyn,Bedford-Stuyvesant,40.68248,-73.92811,Entire home/apt,155,2,139,2019-06-30,2.93,1,235 +7651547,New York 3 Bedroom 3 Bath & Backyard City College,9209691,Anatha Angèle,Manhattan,Harlem,40.82206,-73.95234,Entire home/apt,275,4,5,2019-06-29,2.78,2,284 +7652181,Sunny Room in Tropical Apartment,63607,Felix,Brooklyn,Williamsburg,40.71242,-73.95009,Private room,80,2,33,2017-12-30,0.70,1,0 +7652877,Suite in The Upper East Side,40163236,Manuela,Manhattan,Upper East Side,40.77018,-73.95947,Entire home/apt,205,2,23,2017-01-05,0.61,1,0 +7652929,Studio Apartment on Upper West Side,27784469,Elizabeth,Manhattan,Upper West Side,40.78557,-73.97214,Private room,150,1,2,2015-08-23,0.04,1,0 +7652936,"Sunny, Tree-top Studio",18985761,Abraham,Brooklyn,Carroll Gardens,40.67763,-74.00108,Entire home/apt,99,59,17,2019-06-01,0.49,1,58 +7654931,Private Moonlight Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.6884,-73.9305,Private room,59,1,237,2019-06-28,5.09,7,70 +7656308,Large Private Bedroom in Williamsburg Apartment,1311104,Christopher,Brooklyn,Williamsburg,40.71256,-73.95695,Private room,45,30,19,2019-03-21,0.43,1,0 +7657879,Beautiful GRDN Apt Chelsea Meatpacking Min 30 days,1163318,Vanessa,Manhattan,Chelsea,40.74376,-74.00387,Entire home/apt,270,30,195,2019-03-17,4.26,1,270 +7659042,Cozy Room 25 Minutes from Manhattan,23187157,Andrew,Brooklyn,Bushwick,40.70036,-73.91723,Private room,80,1,0,,,1,0 +7660252,beautiful and spacious one bedroom.,18953786,Ehsan,Queens,Astoria,40.7655,-73.92169,Entire home/apt,150,3,21,2019-06-19,0.46,2,349 +7660853,Lefferts Garden 1 bedroom,40010465,Luca,Brooklyn,East Flatbush,40.65429,-73.94917,Private room,35,1,1,2015-08-31,0.02,1,0 +7661020,Marvelous Manhattan Apartment! DEAL,40204929,Gian Maria,Manhattan,Washington Heights,40.83436,-73.94735,Entire home/apt,99,5,5,2018-06-20,0.11,1,0 +7661218,Brooklyn Garden House,345252,Thomas,Brooklyn,Prospect Heights,40.6799,-73.96416,Entire home/apt,150,7,9,2018-09-12,0.19,3,0 +7661735,Large Studio - Meatpacking District,19071455,Dan,Manhattan,West Village,40.74036,-74.00416,Entire home/apt,190,3,0,,,1,0 +7662160,Sunny Private Room in Crown Heights,6338005,Joy,Brooklyn,Crown Heights,40.67139,-73.94,Private room,50,3,7,2017-07-29,0.15,1,0 +7662874,"Quiet, sunny, renovated",40223271,Max,Manhattan,Harlem,40.82883,-73.94468,Entire home/apt,79,15,22,2019-05-05,0.49,1,0 +7663043,Large(1000 sq ft) 3BR w 1.5 baths,1599136,Sharon,Brooklyn,Bedford-Stuyvesant,40.68716,-73.9243,Entire home/apt,199,7,35,2019-06-08,0.78,1,283 +7663262,Two-Room Astoria Studio,11528105,Gina,Queens,Astoria,40.76508,-73.90935,Entire home/apt,65,14,0,,,1,0 +7663730,Private room in Brooklyn,33007145,Daphne,Brooklyn,Bushwick,40.69589,-73.93232,Private room,65,1,3,2016-05-25,0.06,1,0 +7664062,Private bedroom in booming brooklyn,31250964,Katherine,Brooklyn,Crown Heights,40.67034,-73.95848,Private room,75,1,0,,,1,0 +7664066,Cheerful Private Bedroom 5min to F & N Trains,17466612,Tanya,Brooklyn,Bensonhurst,40.6089,-73.97866,Private room,43,2,22,2018-10-09,0.54,2,0 +7664263,Spacious Fabulous Harlem 1 bedroom,25266538,RaVal,Manhattan,Harlem,40.81541,-73.94149,Entire home/apt,130,5,12,2017-05-27,0.25,1,0 +7664343,"Sunny, East Village Apartment!",15716203,Morgane,Manhattan,East Village,40.72399,-73.98869,Entire home/apt,180,2,2,2015-08-29,0.04,1,0 +7664594,1 Bedroom Park Slope 1 Block Subway,40234779,Tristan,Brooklyn,Sunset Park,40.66016,-73.99813,Private room,60,1,0,,,1,0 +7664692,SemiPrivateLivingRoomTwinBed/MaimonidesLutheranHos,40124500,Regina,Brooklyn,Borough Park,40.63574,-74.00329,Shared room,33,1,73,2019-07-01,1.53,2,365 +7664789,Cozy room in the heart of Astoria/10 min Manhattan,433207,Maryann,Queens,Astoria,40.76205,-73.91379,Private room,45,1,190,2019-07-07,5.20,2,132 +7664863,A Cozy Room In A Brooklyn House,40236384,Oates,Brooklyn,Prospect-Lefferts Gardens,40.65933,-73.95931,Private room,65,1,35,2017-04-30,0.73,2,0 +7664959,Nice and cozy room!,40237377,Lena,Brooklyn,Sheepshead Bay,40.5994,-73.95941,Private room,119,1,0,,,1,126 +7665230,Sunny Master Bedroom in Sunset Park,15892935,Theresa,Brooklyn,Sunset Park,40.64153,-74.01562,Private room,50,1,2,2015-08-22,0.04,1,0 +7665764,US Open? Perfect Lg 1 BR apartment,40244009,Marvin,Queens,Sunnyside,40.73926,-73.92045,Entire home/apt,150,3,2,2015-09-13,0.04,1,0 +7666157,Noel Palace,40164647,Michele,Brooklyn,Midwood,40.62713,-73.95221,Private room,150,3,0,,,1,0 +7669319,"Sunny Studio, Amazing Neighborhood",2048347,Andrea,Brooklyn,Prospect Heights,40.67293,-73.96678,Entire home/apt,99,7,11,2019-06-15,0.23,1,216 +7670562,JFK 10 & LGA 15 MINUTES A/C PRIVATE BEDROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69604,-73.82449,Private room,50,1,424,2018-11-25,8.86,5,0 +7673007,Bright 1 br apt in Greenpoint Brooklyn,3526617,Kyle,Brooklyn,Greenpoint,40.73604,-73.95415,Entire home/apt,250,2,4,2017-08-27,0.16,1,322 +7675781,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69463,-73.8261,Private room,50,1,408,2018-11-24,8.56,5,0 +7675917,PRIVATE ROOM WITH PRIVATE BACKYARD!,40236486,Priscilla,Manhattan,Washington Heights,40.8403,-73.93833,Private room,50,1,6,2018-05-06,0.13,3,64 +7675994,Prime location and room for 1,844862,Cj,Manhattan,East Village,40.73107,-73.98213,Private room,100,2,14,2019-05-27,0.30,2,342 +7676933,Beautiful&New Bedrooms near everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80188,-73.96696,Private room,59,1,26,2019-04-19,0.68,6,326 +7677565,Private Room With Queen Bed in NYC,40316314,Chris,Manhattan,East Village,40.72338,-73.98239,Private room,80,1,1,2015-08-16,0.02,2,0 +7677595,"Bright, one-bedroom in Brooklyn",326952,Ingrid,Brooklyn,Prospect Heights,40.67309,-73.96354,Entire home/apt,95,3,4,2015-11-25,0.09,1,0 +7678187,Stylish Modern Comfort in Bed-Stuy,40319733,Sam,Brooklyn,Bedford-Stuyvesant,40.68548,-73.94988,Entire home/apt,110,2,3,2015-09-24,0.06,1,0 +7678453,Beautiful Sunny Bedroom in BedStuy,39197422,Caitlin,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9303,Private room,60,5,1,2016-03-28,0.03,1,0 +7678743,FISHGRALA - Bedroom & Private Bathroom + Backyard,1477833,Blue & Elli,Brooklyn,Red Hook,40.67894,-74.0128,Private room,64,1,128,2019-06-19,2.71,1,76 +7679094,Bright and Airy Astoria Loft,3130040,Ana María,Queens,Ditmars Steinway,40.77679,-73.9212,Entire home/apt,175,2,7,2018-10-07,0.15,1,0 +7679236,Belle Harbor 4 BR 2 bath- 1 bl from Beach,40327248,Sarina,Queens,Neponsit,40.57215,-73.85822,Entire home/apt,350,2,5,2019-07-07,2.88,1,334 +7679691,Nice bedroom - Lower East Side,7065413,Johanna,Manhattan,Lower East Side,40.72014,-73.98498,Private room,80,1,2,2015-08-24,0.04,1,0 +7679697,Midtown West Modern Charming 1BD Apt near Times Sq,5513694,Paul,Manhattan,Hell's Kitchen,40.76377,-73.98786,Entire home/apt,200,2,49,2019-05-10,1.06,1,205 +7679943,Colorful 2 bedroom in great Brooklyn neighborhood,40332331,Joyce,Brooklyn,Windsor Terrace,40.65758,-73.97801,Entire home/apt,128,3,10,2019-06-25,0.21,2,3 +7680504,Ground Fl Apt. w/ backyard-Long term stay welcomed,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.68001,-73.94971,Entire home/apt,150,30,11,2019-05-31,0.29,3,332 +7680750,New 2BR+1BA For Up To 6 Ppl Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92795,Entire home/apt,100,3,120,2019-06-18,2.63,3,220 +7685764,Sunny Modern Gem Overlooking UWS,268419,Kevin,Manhattan,Upper West Side,40.79387,-73.97136,Entire home/apt,300,5,0,,,1,0 +7686940,The Wielingen,40371157,Jimmy,Bronx,Longwood,40.82417,-73.90156,Private room,95,1,182,2019-01-01,3.82,2,0 +7687937,Cozy apt in heart of the e village,40076332,Steven,Manhattan,East Village,40.72644,-73.98403,Entire home/apt,175,5,0,,,1,0 +7688481,Perfect Location - Meticulously Kept Flat,12620454,Will,Brooklyn,Bushwick,40.70442,-73.92484,Entire home/apt,220,5,27,2017-01-01,0.57,1,0 +7688839,Garden Apt in Historic Brownstone!,2060383,Lisa,Brooklyn,Cobble Hill,40.68732,-73.99245,Entire home/apt,147,3,23,2019-06-16,0.51,1,2 +7689346,East Village Private Room & Terrace,39956905,Can,Manhattan,East Village,40.72811,-73.98453,Private room,95,2,1,2015-08-29,0.02,2,0 +7689495,Cosy apartment in Carroll Gardens,33064750,Suzan,Brooklyn,Carroll Gardens,40.68282,-73.99774,Entire home/apt,160,5,2,2017-08-08,0.06,1,0 +7689651,Cozy One BR in Queens near Airport,33068587,Falana,Queens,Jamaica,40.68547,-73.78924,Private room,99,3,0,,,1,365 +7691534,"2 bed, 2 bath in Battery Park City",40394783,Richard,Manhattan,Battery Park City,40.70803,-74.01735,Entire home/apt,200,1,0,,,1,0 +7692326,Designer 5 BR home by Prospect Park,255597,Cassandra,Brooklyn,Crown Heights,40.66465,-73.95372,Entire home/apt,225,3,105,2019-06-30,2.28,1,94 +7692660,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81229,-73.88887,Private room,40,30,19,2019-06-29,0.40,6,287 +7692701,My home in Harlem,40401163,Stefan,Manhattan,Harlem,40.80591,-73.95525,Private room,75,14,0,,,1,0 +7692870,Privacy in Unique Shipping Container Home,3587751,Janet-David,Brooklyn,Williamsburg,40.70841,-73.9539,Private room,120,1,205,2019-06-28,4.39,2,349 +7693040,"Park Facing, Spacious 1 BR APT",4073947,Chris,Brooklyn,Crown Heights,40.66542,-73.96062,Entire home/apt,110,1,0,,,1,0 +7693124,Upper West Side 64th and Amsterdam,20691165,Ahnastasia,Manhattan,Upper West Side,40.77368,-73.98704,Private room,60,3,4,2017-08-01,0.08,1,0 +7693424,Shared Apartment to share,40404813,Ingrid,Brooklyn,East Flatbush,40.64588,-73.94961,Private room,100,1,2,2016-01-05,0.05,1,365 +7694064,Quiet Sanctuary right by the Subway,24666317,Keenan,Brooklyn,Clinton Hill,40.68443,-73.96737,Private room,77,2,12,2018-08-19,0.25,1,0 +7694418,Close to Central Park,1784925,Karen,Manhattan,Upper West Side,40.791,-73.96809,Entire home/apt,150,3,10,2018-01-02,0.21,1,0 +7695043,"Beautiful studio aprt Cobble Hill, BK",1338262,Rachel,Brooklyn,Boerum Hill,40.68589,-73.99102,Entire home/apt,160,3,38,2019-06-06,0.80,3,249 +7695442,Big sunny bedroom - heart of LES!,6654378,Veronica,Manhattan,Lower East Side,40.71796,-73.99032,Private room,58,10,0,,,1,0 +7696314,Private Bedroom in Midtown West,16932691,Tarin,Manhattan,Hell's Kitchen,40.75946,-73.99083,Private room,70,1,5,2015-10-22,0.11,1,0 +7696645,BrooklynBridge/Ft Greene,7590543,Dolores,Brooklyn,Navy Yard,40.69855,-73.97595,Entire home/apt,215,4,99,2019-07-06,2.09,1,0 +7696654,Spacious Harlem 1-Br. Terrace Apt with Doorman,5742112,Maximillian,Manhattan,Harlem,40.81236,-73.94142,Entire home/apt,100,4,0,,,1,0 +7696843,Room in the heart of Williamsburg,40425528,Matthew,Brooklyn,Williamsburg,40.71608,-73.95967,Private room,60,3,1,2015-10-21,0.02,1,0 +7697161,Beautiful 1 BR w/ Private Backyard,40427171,Lyle,Brooklyn,Cobble Hill,40.68665,-73.9922,Entire home/apt,125,1,0,,,1,0 +7697256,Room in a lovely UWS Apartement,17326743,Antoine,Manhattan,Upper West Side,40.78506,-73.97723,Private room,130,1,9,2016-03-30,0.19,1,0 +7697425,Private room in Williamsburg loft,40428881,Miles,Brooklyn,Williamsburg,40.71119,-73.96471,Private room,99,3,1,2015-10-26,0.02,1,0 +7697504,Industrial style Artist loft,40429192,K.,Brooklyn,Greenpoint,40.72831,-73.949,Entire home/apt,175,3,96,2019-06-02,2.06,1,328 +7698593,Bedstuy Brownstone Duplex w/ HUGE Backyard,5974094,Cody,Brooklyn,Bedford-Stuyvesant,40.69351,-73.94011,Entire home/apt,200,2,3,2019-05-27,0.09,1,188 +7698619,Room in Williamsburg Duplex,35997506,Michael,Brooklyn,Williamsburg,40.70939,-73.96758,Private room,85,1,0,,,1,0 +7698722,"2 BR Brownstone Retreat, 2nd Fl.",31919780,Neil,Brooklyn,Bedford-Stuyvesant,40.68599,-73.9394,Entire home/apt,99,3,98,2019-06-23,2.39,2,52 +7699037,Airy Basement Apartment,40439772,Ezra,Manhattan,Washington Heights,40.85076,-73.93049,Private room,45,3,29,2019-01-05,0.61,2,0 +7699156,One bedroom at Dream Location,820649,Ivo,Manhattan,Murray Hill,40.74751,-73.97676,Entire home/apt,190,1,0,,,1,0 +7699516,HUGE 2 bdrm 30 m ride from Midtown,40443551,Sherry,Manhattan,Washington Heights,40.8508,-73.94004,Entire home/apt,112,1,1,2015-09-02,0.02,1,0 +7699542,Master bedroom in a 3BR apt in UES,22703843,Haïssam,Manhattan,Upper East Side,40.76102,-73.96124,Private room,95,1,1,2015-08-07,0.02,1,0 +7699703,Private Brooklyn room by the L line,15420345,Anastassia,Brooklyn,Bushwick,40.70005,-73.91882,Private room,65,1,0,,,1,0 +7700054,Carroll Gardens Retreat,3074287,Gianni,Brooklyn,Carroll Gardens,40.68167,-73.99276,Entire home/apt,150,4,96,2019-05-19,2.02,2,3 +7700185,Cozy studio apartment in W Harlem.,40448425,Grayson,Manhattan,Harlem,40.81882,-73.9468,Entire home/apt,77,1,1,2015-08-31,0.02,1,0 +7700741,Spacious Private Room near train station :-)!,3284564,Mahrokh,Manhattan,Harlem,40.81406,-73.95282,Private room,69,2,1,2015-09-22,0.02,1,0 +7707191,1 room in 3 bdrm apt 78th and 3rd,38301594,Shana,Manhattan,Upper East Side,40.77484,-73.95726,Private room,80,1,2,2015-09-19,0.04,2,0 +7707274,"Sunny, top-floor apt (East Village)",19056507,Anastasia (Tess),Manhattan,East Village,40.72448,-73.9895,Entire home/apt,175,2,9,2017-09-17,0.19,1,0 +7708934,Beautiful sunny bedroom with balcony,6238227,Cecilia,Brooklyn,Bedford-Stuyvesant,40.69551,-73.95075,Private room,60,5,0,,,1,0 +7709293,master bedroom in a 4 bed 2 bath,40498479,Meryl,Manhattan,Harlem,40.82364,-73.95122,Private room,59,1,0,,,1,0 +7710250,Midtown East Bedroom Available,40503855,Dana,Manhattan,Midtown,40.75669,-73.96411,Private room,90,1,3,2015-10-11,0.06,1,0 +7710442,Light-filled cozy Greenpoint Brooklyn two bedroom,6432385,Tyler,Brooklyn,Greenpoint,40.72446,-73.94008,Entire home/apt,70,30,4,2016-01-02,0.09,1,34 +7710608,2 Bed in Center of West Village,278713,Kristin,Manhattan,West Village,40.73351,-74.00454,Entire home/apt,350,3,0,,,1,0 +7711161,Large and Sunny room in Downtown NY,3737483,Miguel,Manhattan,Chinatown,40.71382,-73.99769,Private room,75,6,2,2016-04-30,0.05,1,0 +7711451,Manhattan/ private room & private toilet.,5663719,Asger,Manhattan,Little Italy,40.71912,-73.99776,Private room,61,2,6,2019-07-07,0.13,1,213 +7711899,FEMALE ONLY 'Heaven'PrivateBed/SharedSpace w/Wifi,40509550,Denise,Manhattan,Washington Heights,40.84805,-73.94209,Shared room,42,1,14,2018-11-01,0.30,1,363 +7712022,Perfect Escape in NYC! #6,3256433,Ira,Manhattan,Nolita,40.72276,-73.99314,Entire home/apt,350,60,10,2018-08-19,0.22,7,0 +7712750,светлая комната с балконом,40516440,Galina,Brooklyn,Sheepshead Bay,40.58851,-73.9558,Private room,45,4,52,2019-06-12,1.09,1,341 +7713509,"Brooklyn, Clinton Hill, Private rm",12303720,Cameron,Brooklyn,Clinton Hill,40.68405,-73.96681,Private room,75,3,2,2015-09-14,0.04,1,0 +7714405,"Ideal Apt for US Tennis Open, 2BR",40527701,Christine,Queens,Elmhurst,40.73726,-73.88065,Entire home/apt,150,2,2,2015-08-17,0.04,1,0 +7714664,Authentic Apartment in the heart of Brooklyn,2520125,Katja,Brooklyn,East New York,40.66045,-73.89873,Entire home/apt,72,4,121,2019-06-24,2.54,2,33 +7715342,Beautiful Home Away From Home,11272233,Kat,Brooklyn,Crown Heights,40.6735,-73.93856,Private room,59,1,199,2019-06-22,4.19,2,288 +7715344,1 Bedroom Apart in Spanish Harlem,15581933,Mary,Manhattan,East Harlem,40.79324,-73.94513,Entire home/apt,90,2,4,2016-03-31,0.08,1,0 +7716148,Whole Floor In Cobble Hill,40206276,Jon,Brooklyn,Cobble Hill,40.6881,-73.99498,Entire home/apt,145,2,4,2016-07-08,0.09,1,0 +7716322,Huge Room with a View on Manhattan!,19411025,Natalija,Queens,Sunnyside,40.74633,-73.91293,Private room,115,1,0,,,1,0 +7716489,Idyllic Studio in Williamsburg,22770300,Melody,Brooklyn,Williamsburg,40.71331,-73.96347,Entire home/apt,225,1,0,,,1,0 +7717284,"Brooklyn Apt Near Park, Franklin Av",27474206,Juliana,Brooklyn,Crown Heights,40.67317,-73.95419,Private room,45,1,1,2015-12-12,0.02,1,0 +7717598,Cozy Brooklyn Private Home,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.67982,-73.91347,Entire home/apt,35,3,63,2019-01-21,1.33,4,0 +7717785,George Washington Bridge Delight- Entire Apt!,11003269,Sally,Manhattan,Washington Heights,40.85159,-73.94036,Entire home/apt,150,1,32,2019-06-30,1.18,1,358 +7718452,Cosy and Convenient Carroll Garden,3074287,Gianni,Brooklyn,Carroll Gardens,40.68333,-73.99369,Entire home/apt,147,4,91,2019-05-27,2.10,2,3 +7718995,Private Space with Outdoor Patio,25169596,Jessica,Manhattan,Upper West Side,40.77148,-73.98226,Private room,182,1,221,2019-06-10,4.65,2,327 +7724031,Apartment is in Washington heights,40585281,Teddy,Manhattan,Washington Heights,40.84687,-73.94004,Private room,110,1,0,,,1,0 +7724136,Large Lower East Side 1 BDR,40585961,Miguel,Manhattan,Lower East Side,40.72092,-73.98849,Private room,85,1,0,,,1,0 +7724865,Gramercy Apartment,36195153,Ben,Manhattan,Kips Bay,40.73999,-73.98122,Private room,175,3,174,2019-06-24,3.66,1,194 +7725030,Contemporary Clinton Hill 1BR Condo,7456416,Leah,Brooklyn,Clinton Hill,40.6867,-73.9621,Entire home/apt,250,1,2,2015-11-29,0.04,1,0 +7725042,1BR in a 3BR Apt by Columbia,23715762,Joon,Manhattan,Upper West Side,40.80113,-73.96566,Private room,50,1,0,,,1,0 +7725075,Come Be A Part of NYC,40591396,Eric,Queens,Long Island City,40.74229,-73.95427,Private room,70,1,5,2015-10-11,0.10,1,0 +7725197,Huge Bed-Stuy Townhouse,3320167,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94662,Private room,47,7,0,,,1,0 +7725573,Huge Private Bedroom in Harlem Apt,10872717,Mala,Manhattan,Harlem,40.81469,-73.94887,Private room,75,1,1,2016-03-31,0.03,1,0 +7725825,COMFORT 25 MINS FROM NEW YORK,40595718,Adria,Queens,Ozone Park,40.68792,-73.83752,Entire home/apt,79,1,22,2019-04-15,0.49,1,130 +7726296,Beautiful 1 Bedroom Apartment,7375767,Daniel,Brooklyn,Bedford-Stuyvesant,40.68927,-73.95277,Entire home/apt,115,1,0,,,1,0 +7727061,Bright Private room NYC Near train,25843005,Daljit,Queens,Astoria,40.75818,-73.92679,Private room,35,2,191,2019-06-30,4.00,3,24 +7727644,Charming 2 Bedroom Apt in Midtown,40539880,Reid,Manhattan,Hell's Kitchen,40.76104,-73.9885,Entire home/apt,300,3,4,2016-10-31,0.12,1,0 +7727798,Room with its private bathroom and garden access,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69461,-73.93406,Private room,86,3,91,2019-07-02,1.99,7,20 +7728018,Beautiful Upper East Side,40608098,Nicole,Manhattan,East Harlem,40.78502,-73.94763,Entire home/apt,189,1,14,2015-11-29,0.30,1,0 +7728262,Sunny Bed-Stuy Cove,23420949,Bekah,Brooklyn,Bedford-Stuyvesant,40.69451,-73.94419,Entire home/apt,70,1,2,2015-08-17,0.04,1,0 +7728265,clinton Hill - bedsty,6623512,Nitzan,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95779,Private room,32,7,0,,,1,0 +7728553,GR8 CARROLL GARDENS/ENTIRE STUDIO/!,40611169,Sol,Brooklyn,Carroll Gardens,40.67793,-73.99531,Entire home/apt,150,1,78,2019-05-09,2.22,5,365 +7728860,Flex 2br+sofa bed+kitchen,7503643,Vida,Brooklyn,Greenpoint,40.72674,-73.94004,Entire home/apt,159,30,2,2018-12-22,0.05,52,0 +7729804,Spacious Pre-War in Crown Heights,18066933,Emily,Brooklyn,Crown Heights,40.67517,-73.94421,Private room,50,1,2,2016-07-04,0.04,2,0 +7730160,Furnished NYC 1BR apt near Rockefeller Center!!!,30283594,Kara,Manhattan,Theater District,40.75967,-73.98573,Entire home/apt,135,30,0,,,121,174 +7730865,Haha,21256980,Peiyu,Manhattan,Murray Hill,40.7459,-73.97607,Private room,170,1,0,,,1,0 +7731215,Beautiful Studio near Times Square,21297782,David,Manhattan,Hell's Kitchen,40.76292,-73.99551,Entire home/apt,140,5,5,2016-10-07,0.11,1,0 +7731348,Perfect UWS Apartment,40627479,Mindy,Manhattan,Upper West Side,40.79433,-73.97333,Entire home/apt,175,1,5,2015-11-19,0.11,1,0 +7733236,Spacious Room in Lovely Sunnyside Apartment,5085741,Maggie,Queens,Sunnyside,40.73678,-73.92437,Private room,55,7,0,,,1,0 +7733241,Amazing room in Williamsburg House,16683784,Charles,Brooklyn,Williamsburg,40.71375,-73.94342,Private room,72,2,5,2017-06-30,0.11,1,0 +7733315,sunny and spacious respite,3010260,Genevieve & Brett,Brooklyn,Crown Heights,40.66983,-73.95332,Entire home/apt,198,4,4,2018-08-12,0.08,1,0 +7733651,Perfect 2BR for a family!,36539736,Katie,Brooklyn,Boerum Hill,40.68658,-73.9891,Entire home/apt,180,2,17,2017-01-01,0.36,1,0 +7733862,Modern 2 bed in Park Slope,1289713,Rachel,Brooklyn,Park Slope,40.67757,-73.98195,Entire home/apt,200,4,12,2018-08-25,0.25,1,5 +7733896,Big Master bedroom with attached Private Bathroom,1036161,Blake,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95016,Private room,220,1,88,2019-06-02,1.84,2,60 +7734034,Ocean view studio with balcony,35976278,Yin,Queens,Arverne,40.59029,-73.79032,Entire home/apt,125,1,9,2019-06-24,0.20,1,340 +7734176,Spacious two bedroom in NYC,40645778,Angela,Manhattan,Hell's Kitchen,40.76444,-73.98592,Entire home/apt,300,3,12,2019-01-01,0.26,1,33 +7734670,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81387,-73.88797,Private room,37,30,13,2019-02-28,0.28,6,333 +7740527,Sunny Air Conditioned Bedroom,40684968,Matt,Manhattan,Harlem,40.8127,-73.95004,Private room,60,1,1,2015-08-09,0.02,1,0 +7741113,Prospect Park Room,910884,Kristian,Brooklyn,Prospect-Lefferts Gardens,40.65606,-73.95902,Private room,49,10,1,2016-04-16,0.03,1,0 +7742287,Spacious furnished room,40694772,Data05,Queens,Flushing,40.73331,-73.80811,Private room,55,2,0,,,1,0 +7742486,"Charming Park Slope 1BR! Near F, G, R",40695843,Maia,Brooklyn,Park Slope,40.67202,-73.98531,Entire home/apt,145,5,18,2019-01-03,0.50,1,0 +7742889,"Cozy, parkside room in Inwood",8692598,Jen,Manhattan,Inwood,40.86363,-73.93002,Private room,48,1,5,2015-09-27,0.11,1,0 +7743287,HUGE Private Loft Bedroom! (June),40699990,Liesl,Brooklyn,Crown Heights,40.67589,-73.9287,Private room,75,2,0,,,1,0 +7744239,"Garden Apt, Brooklyn - 2 nights min",1641361,Nadia,Brooklyn,Carroll Gardens,40.68229,-73.99369,Entire home/apt,200,1,0,,,1,0 +7744805,Harlem's Finest Beautiful Garden Apt w/Backyard!,40703442,Graham,Manhattan,Harlem,40.80739,-73.94196,Entire home/apt,153,4,91,2018-12-31,1.95,3,4 +7745375,Cozy Private Room in Williamsburg,15905720,Dennis,Brooklyn,Williamsburg,40.71278,-73.96292,Private room,69,1,0,,,1,0 +7745868,Private Room in East Williamsburg,7876900,Taylor,Brooklyn,Williamsburg,40.7088,-73.93983,Private room,45,1,3,2016-03-30,0.06,1,0 +7746285,1br/1office big apartment w garden,20156140,Sam,Brooklyn,Greenpoint,40.7334,-73.95639,Entire home/apt,104,5,0,,,1,0 +7746303,127 soundspace and meeting place,40703442,Graham,Manhattan,Harlem,40.80872,-73.94228,Entire home/apt,150,1,2,2018-03-30,0.07,3,0 +7746872,Stylish 2BR! 5 min to Central Park!,16641806,Noa,Manhattan,East Harlem,40.78824,-73.94687,Entire home/apt,195,1,112,2019-06-06,2.38,1,262 +7747237,Central Harlem Loft Bdrm + Garden,40703442,Graham,Manhattan,Harlem,40.8098,-73.94443,Private room,90,2,1,2015-09-21,0.02,3,0 +7748044,Neat room with private bath $60,40140854,Soojeong,Queens,Elmhurst,40.73607,-73.87981,Private room,60,1,1,2015-08-08,0.02,1,0 +7748422,Great 4 Fl walk up studio apt w/den,1353426,Katie,Brooklyn,Clinton Hill,40.68202,-73.96273,Entire home/apt,145,3,2,2018-09-24,0.06,1,0 +7749069,Large 1BR apt only 20 minutes to Manhattan.,40735098,Joel,Brooklyn,Borough Park,40.64346,-73.99814,Entire home/apt,120,2,35,2019-06-15,0.78,1,346 +7749239,"1BR w/roof: Williamsburg, Brooklyn",10784441,Aaron,Brooklyn,Williamsburg,40.7149,-73.95588,Entire home/apt,111,2,15,2017-12-24,0.32,1,0 +7749367,"Park Slope gem, Best of Brooklyn",40732314,Catherine,Brooklyn,Park Slope,40.67621,-73.97238,Entire home/apt,140,5,1,2015-09-03,0.02,1,0 +7749472,Sunny Peaceful Harlem Space,13667779,Miriam,Manhattan,Harlem,40.82453,-73.93952,Private room,60,2,9,2019-06-04,0.19,2,280 +7749763,Shared male Room on Manhattan. Amazing view! II,39528519,Max,Manhattan,Lower East Side,40.70993,-73.987,Shared room,35,14,6,2019-02-16,0.25,28,201 +7749818,Dream bedroom with private bathroom.,40221604,John,Manhattan,Harlem,40.82312,-73.94539,Private room,93,1,100,2019-06-16,2.74,3,49 +7750936,$30 per night private room Bushwick,3508047,Brian,Brooklyn,Bushwick,40.69845,-73.93495,Private room,30,1,3,2016-09-14,0.07,3,0 +7754916,Awesome room! 10 min to the city!!,15931768,Teodoro,Brooklyn,Bedford-Stuyvesant,40.69704,-73.94761,Private room,60,5,2,2015-09-29,0.04,1,0 +7756711,Charming garden apt in a brownstone,40784273,Anne,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91819,Entire home/apt,99,5,1,2015-08-27,0.02,1,0 +7757549,Spacious Chelsea Penthouse w/roof!,8314981,Kevin,Manhattan,Chelsea,40.74212,-73.99828,Private room,210,2,20,2016-09-01,0.42,2,0 +7758577,2 Bed apart in the heart of Chelsea,30669247,Rui,Manhattan,Chelsea,40.74313,-73.99844,Entire home/apt,175,3,2,2016-03-12,0.04,1,0 +7760204,"LG, quiet room nr Cloisters, A, 1",8335684,Mary,Manhattan,Inwood,40.86274,-73.92842,Private room,22,1,13,2019-01-02,0.28,3,0 +7760406,Modern Chelsea Studio,39060578,Scott,Manhattan,Chelsea,40.74336,-74.00278,Entire home/apt,200,6,45,2018-01-02,0.99,1,0 +7760545,"COZY STUDIO in Sunnyside/Queens, NY",40812784,Elena,Queens,Sunnyside,40.74494,-73.91513,Entire home/apt,120,30,29,2018-10-27,0.62,1,178 +7760808,West 57th Hilton Breakfast/Wine 30 sec from Parade,4403646,Paul,Manhattan,Midtown,40.76352,-73.9777,Entire home/apt,319,4,9,2018-09-09,0.24,1,358 +7761394,One room in a 4 Bedroom apt.,40812084,Chris,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92494,Private room,45,4,2,2015-09-29,0.04,1,0 +7762201,"Studio Apartment, Brooklyn",3189999,Sebastian,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94962,Entire home/apt,99,5,1,2015-09-08,0.02,1,0 +7762374,Artsy townhouse in Sugar Hill (Manhattan),1273607,David,Manhattan,Harlem,40.82651,-73.94871,Entire home/apt,450,3,35,2019-06-28,0.77,1,264 +7763203,Large comfy room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95595,Private room,89,5,28,2019-06-15,0.60,3,282 +7763869,The Dream Room near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66026,-73.93992,Private room,65,2,71,2019-05-14,1.57,4,170 +7764285,Spacious Modern Williamsburg Apt,489734,Andrew,Brooklyn,Williamsburg,40.71264,-73.94622,Entire home/apt,185,3,8,2016-07-01,0.17,1,0 +7764516,Furnished quiet clean room,40834217,Jay,Queens,Whitestone,40.78223,-73.80724,Private room,35,7,0,,,1,365 +7768661,Brand new Manhattan Apartment sleeps 7!,39921605,Rachel,Manhattan,Upper West Side,40.80328,-73.96898,Entire home/apt,238,30,14,2019-04-03,0.31,5,91 +7769782,Beautiful Room in Bushwick.,40867860,Patricia,Brooklyn,Bedford-Stuyvesant,40.68053,-73.90879,Private room,63,1,4,2019-06-28,2.18,1,240 +7769946,Lovely House in the Hill/ 2bedrm apt,40863179,Kevin,Brooklyn,Fort Greene,40.68504,-73.9696,Entire home/apt,150,7,43,2019-06-13,1.20,1,53 +7770529,Charming Studio in the West Village,514455,Elana,Manhattan,West Village,40.73162,-74.00928,Entire home/apt,180,1,0,,,1,0 +7770735,Private Room close to subway (3/3),40874834,Esteban,Queens,Jackson Heights,40.75421,-73.86435,Private room,75,1,96,2019-06-22,2.06,3,339 +7771170,Creative Woodside Studio,8134104,Kaplan,Queens,Woodside,40.74507,-73.90738,Entire home/apt,500,1,10,2016-07-18,0.21,1,0 +7771351,NYC Queen size Bedroom w/private bathroom.,40877319,Ray,Bronx,Pelham Bay,40.84423,-73.83602,Private room,59,3,113,2019-06-06,2.42,1,290 +7771777,Private bedroom and bathroom,14139134,Eliza,Manhattan,Morningside Heights,40.8061,-73.96641,Private room,90,1,1,2015-08-14,0.02,1,0 +7772377,"Large, Spacious, Bright Apartment",16000650,Jamal,Brooklyn,Park Slope,40.68193,-73.97807,Entire home/apt,150,5,1,2015-09-12,0.02,1,0 +7774167,"Basement Beach Apartment, Rockaways",40895369,Vanda,Queens,Rockaway Beach,40.58881,-73.81066,Entire home/apt,70,1,70,2019-07-02,2.45,1,336 +7774182,Family House 7 Minutes To Manhattan,40895328,Beatriz & Will,Queens,Astoria,40.75743,-73.92366,Entire home/apt,289,2,176,2019-06-30,4.07,2,309 +7774373,I Love NY Studio Deluxe,40895919,Jules,Manhattan,Chelsea,40.74327,-73.99848,Entire home/apt,245,3,115,2019-07-02,2.43,1,125 +7774519,Bushwick Sunny Private Room,1503022,Regard,Brooklyn,Bushwick,40.69866,-73.92498,Private room,53,14,0,,,1,0 +7775128,Quiet apartment in Chelsea,2640056,Yuval,Manhattan,Chelsea,40.74148,-74.00048,Entire home/apt,225,4,2,2016-10-13,0.04,1,0 +7775431,Spacious and Charming UES Bedroom in Best Location,10054959,E.F.,Manhattan,Upper East Side,40.78339,-73.95239,Private room,149,4,33,2018-12-06,0.83,1,53 +7775627,Bright apartment in Lower Manhattan,40905449,Abby,Manhattan,Financial District,40.70689,-74.01451,Entire home/apt,160,2,7,2016-07-01,0.15,1,0 +7775711,1 bedroom in Bed-Stuy,33190103,Kris,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9478,Entire home/apt,70,2,1,2015-08-11,0.02,1,0 +7775879,2br Near Brooklyn Bridge,24560401,Danuza,Brooklyn,Fort Greene,40.69705,-73.97743,Entire home/apt,165,3,120,2019-06-21,2.54,1,170 +7775924,AUG 16-31 - LARGE FURNISHED 1 BDRM,3002111,Ana,Manhattan,Kips Bay,40.74056,-73.98389,Private room,70,15,0,,,1,0 +7780335,Sunny studio in Williamsburg,7285322,Allie,Brooklyn,Williamsburg,40.71607,-73.95352,Entire home/apt,150,3,9,2017-12-29,0.20,1,0 +7782176,Newly Renovated Private Room,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94495,Private room,65,1,11,2018-04-22,0.24,10,260 +7782340,Fabulous Apartment in NYC,25881276,Jordana,Manhattan,Upper West Side,40.79063,-73.97864,Entire home/apt,175,2,13,2016-04-09,0.28,2,0 +7783855,"Cozy 2 Bedrooms Bedstuy,Brooklyn",40958326,Gerald,Brooklyn,Bedford-Stuyvesant,40.68528,-73.91573,Entire home/apt,175,4,99,2019-06-15,2.12,1,334 +7784365,Great cozy room 5 minutes to city,25602663,Mizo,Queens,Long Island City,40.75255,-73.93654,Private room,90,4,19,2018-09-16,0.41,2,286 +7785582,Basement Room with Private Bathroom,11048791,Jarred,Brooklyn,Bushwick,40.70068,-73.91621,Private room,40,7,2,2018-05-22,0.04,1,0 +7785952,Spacious Studio UES,4797755,William,Manhattan,Upper East Side,40.7829,-73.94694,Entire home/apt,170,2,53,2019-05-27,1.19,1,0 +7786903,Huge bedroom in Brooklyn duplex!,4263734,Nisa,Brooklyn,Crown Heights,40.67195,-73.95535,Private room,70,3,8,2016-10-10,0.17,1,0 +7787799,Home 4 Medical Professionals-Wyckoff Heights MC 1,26377263,Stat,Brooklyn,Bushwick,40.70326,-73.91822,Private room,50,30,1,2016-05-28,0.03,43,203 +7787983,**Caribbean Blush-8 mins to JFK**,36205028,Mrs. T,Queens,Jamaica,40.68542,-73.7926,Private room,52,1,179,2019-06-24,3.79,2,350 +7788438,Home 4 Medical Professionals-Wykof3,26377263,Stat,Brooklyn,Bushwick,40.70249,-73.91904,Private room,47,30,0,,,43,347 +7788565,Home 4 Medical Professionals-Wykof4,26377263,Stat,Brooklyn,Bushwick,40.70468,-73.91935,Private room,47,30,0,,,43,257 +7788880,"Home 4 Medical Professionals- The ""Camphor""",26377263,Stat,Brooklyn,Bushwick,40.70387,-73.91665,Private room,47,30,4,2018-08-18,0.13,43,144 +7789152,Charming exposed brick apartment,1439611,Dipak,Manhattan,Lower East Side,40.71783,-73.98392,Entire home/apt,175,4,36,2019-04-17,0.77,1,0 +7789213,Home 4 Medical Professionals-Wykof8,26377263,Stat,Brooklyn,Bushwick,40.70233,-73.9175,Private room,47,30,2,2017-05-13,0.06,43,229 +7789346,"Home 4 Medical Professionals - The ""Noxious""",26377263,Stat,Brooklyn,Bushwick,40.70619,-73.9191,Private room,47,30,3,2018-08-18,0.07,43,291 +7789408,"Home 4 Medical Professionals - The ""Acidotic""",26377263,Stat,Brooklyn,Bushwick,40.70468,-73.91683,Private room,47,2,4,2018-09-27,0.11,43,222 +7789606,"Spacious, Light Filled - 2 BR in BK",40994490,Nisha Mary,Brooklyn,Bushwick,40.70153,-73.93064,Entire home/apt,200,3,0,,,1,0 +7789678,"哥伦比亚大学附近公寓内客厅一间,30美元一天",40995200,Yi,Manhattan,Morningside Heights,40.81483,-73.9609,Private room,30,1,0,,,1,0 +7789850,Huge Room with Private Backyard - 25% OFF,1418015,Reuben,Brooklyn,Crown Heights,40.67839,-73.95434,Private room,80,2,158,2019-06-30,3.47,4,204 +7790838,"Quiet, Charming Studio in UES",17550956,Kelsie,Manhattan,Upper East Side,40.77357,-73.94729,Entire home/apt,142,2,48,2019-04-27,1.02,1,329 +7790911,"Clean,Huge Furnished Room in Safe Neighborhood",16962694,Guanshan,Brooklyn,Bensonhurst,40.60788,-73.98161,Private room,69,7,3,2015-09-27,0.06,1,0 +7791635,"Dominique's mini room NYC-sleep, shower & go*wifi",310670,Vie,Bronx,Eastchester,40.88001,-73.8345,Private room,62,2,5,2017-07-11,0.12,13,320 +7791636,**Dominique's NYC couch bed **sleep*shower & go**,310670,Vie,Bronx,Eastchester,40.88211,-73.83625,Shared room,45,1,1,2019-04-20,0.37,13,318 +7796446,Spacious apt right off the highline,19693990,Marc,Manhattan,Chelsea,40.75194,-74.00468,Entire home/apt,300,30,0,,,1,0 +7798327,Private bedroom in Lower East Side,41046343,Brian,Manhattan,Lower East Side,40.72235,-73.98769,Private room,75,1,1,2015-09-04,0.02,1,0 +7798542,Cozy and Homey Brooklyn Apartment,21150000,Tamar,Brooklyn,Flatbush,40.65474,-73.95448,Entire home/apt,80,3,10,2019-05-27,1.53,1,124 +7798930,UWS - Columbia and @CentralParkNYC,41049217,Jose Manuel,Manhattan,Upper West Side,40.79882,-73.96382,Entire home/apt,200,1,0,,,1,0 +7798935,Large & very comfortable 2br/2bath by Ditmas Park,33593407,Stefan,Brooklyn,Flatbush,40.63219,-73.95835,Entire home/apt,90,1,3,2016-07-10,0.06,1,0 +7799045,Fabulous 2 bedroom apartment in Harlem,3467798,Laila,Manhattan,Harlem,40.80877,-73.94456,Entire home/apt,173,30,12,2019-05-31,0.28,2,194 +7800079,Great space with artist's studio and garden,5134018,Momo,Brooklyn,Williamsburg,40.70694,-73.93246,Entire home/apt,100,14,10,2018-12-14,0.24,1,249 +7800835,Big 1.5 bedroom on a great block-Private apt,11549078,Kristian,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93092,Entire home/apt,160,5,148,2019-07-02,3.24,1,149 +7800905,Sunlit oasis in WILLIAMSBURG BK,41059169,Alex,Brooklyn,Williamsburg,40.71003,-73.96097,Private room,116,2,17,2019-05-07,0.37,3,329 +7801023,Cute room right by Prospect Park,41060321,Maria,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.95015,Private room,35,1,0,,,1,0 +7801034,"Great, sunny 1 bedroom apartment in prime location",41060870,Dan And Lily,Manhattan,Lower East Side,40.72077,-73.98551,Entire home/apt,160,4,0,,,1,0 +7801169,Spacious apt in the heart of EV,1619994,Emma,Manhattan,East Village,40.72822,-73.98639,Entire home/apt,150,4,11,2019-04-09,0.25,1,0 +7801262,"COZY ZEN 1 bedroom, top of CENTRAL PARK! safe :)",2083759,Mei,Manhattan,Harlem,40.79996,-73.95485,Entire home/apt,104,3,42,2019-06-08,0.89,1,219 +7801783,Private 2 Bedroom Apartment in the East Village,2033003,Darren,Manhattan,East Village,40.72935,-73.98465,Entire home/apt,200,2,6,2019-04-08,0.13,2,134 +7802086,Sunny Apt in Prime Location,12904034,Shan,Queens,Long Island City,40.74462,-73.95521,Entire home/apt,80,2,1,2015-09-14,0.02,1,0 +7802198,"Large, Sunny, 1 Bedroom Rental",26358061,Avalon,Manhattan,Upper East Side,40.77059,-73.95686,Entire home/apt,150,1,0,,,1,0 +7803475,Large 2 Bdrm in prime UWS location,25847311,Mandy,Manhattan,Upper West Side,40.77849,-73.98527,Entire home/apt,374,30,16,2017-01-02,0.35,1,363 +7803828,Spacious Private Bedroom,8375500,Rosario,Manhattan,Washington Heights,40.83261,-73.94328,Private room,46,2,9,2017-05-20,0.19,1,0 +7804337,Williamsburg Studio Apartment,41079797,Emma Leigh,Brooklyn,Williamsburg,40.71158,-73.94653,Entire home/apt,94,1,28,2019-06-16,0.62,1,274 +7805443,Simple and Central Near Times Sq,30467944,Reymon,Manhattan,Hell's Kitchen,40.76294,-73.99248,Private room,92,2,1,2015-09-16,0.02,1,0 +7806322,Beautiful Zen 3BR Apartment,37915862,Greg,Brooklyn,East New York,40.67351,-73.89267,Entire home/apt,155,5,80,2019-07-03,1.73,2,256 +7807146,UWS Private Bedroom with patio,37353953,Sabrina,Manhattan,Upper West Side,40.78101,-73.98533,Private room,70,3,4,2016-09-07,0.11,1,0 +7807454,Ideal Downtown Brooklyn 1 Bedroom,16853124,James,Brooklyn,Boerum Hill,40.68671,-73.98541,Entire home/apt,75,1,2,2015-09-30,0.04,1,0 +7808266,Garden apt with private backyard,40080883,Jill,Brooklyn,Williamsburg,40.71225,-73.96246,Entire home/apt,150,2,1,2015-10-28,0.02,1,0 +7808356,U.E.S 1 Bedroom Spacious Apartment,17141160,Brian,Manhattan,Upper East Side,40.78086,-73.95029,Entire home/apt,130,4,0,,,1,0 +7808565,Room w Private Bath in Brooklyn,6947307,Charles,Brooklyn,Williamsburg,40.70497,-73.94194,Private room,75,1,1,2015-09-07,0.02,1,0 +7808745,Private Room in Shared Apartment,41106580,Adam,Manhattan,Kips Bay,40.74111,-73.97959,Private room,70,7,0,,,1,0 +7809535,Brooklyn Brownstone Beautiful,1103465,Julia,Brooklyn,Clinton Hill,40.68332,-73.96271,Entire home/apt,145,6,35,2019-06-08,0.76,1,31 +7810109,1 bedroom garden apartment,30247185,Samantha,Queens,Ridgewood,40.70994,-73.90201,Entire home/apt,65,1,2,2015-09-03,0.04,1,0 +7814575,Charming Park Slope 2 bed w/Garden,41140356,Jana,Brooklyn,Park Slope,40.67231,-73.98069,Entire home/apt,195,7,14,2019-04-19,0.37,1,326 +7815865,Manhattan Club (1 bedroom/Sleeps 4),41147578,Kleon,Manhattan,Midtown,40.76387,-73.98021,Entire home/apt,420,1,3,2017-09-30,0.07,1,0 +7816449,Dreamlike Soho loft and rooftop,1317360,John,Manhattan,SoHo,40.72219,-74.0014,Entire home/apt,500,7,44,2017-09-25,0.94,2,365 +7817350,1 Room in 3 bedroom Apt - 70s & 3rd,38301594,Shana,Manhattan,Upper East Side,40.77441,-73.95692,Private room,100,1,0,,,2,0 +7818701,Brooklyn Studio near ALL subways,41162207,Edixon,Brooklyn,Fort Greene,40.68854,-73.97789,Entire home/apt,85,2,4,2017-01-20,0.13,1,0 +7819539,1BR GARDEN APT 25 MIN TO MANHATTAN,5623834,Anna,Brooklyn,East Flatbush,40.64569,-73.94776,Entire home/apt,100,30,29,2019-05-22,0.74,1,326 +7819704,Quaint Sunny apartment in Bed-stuy,40070423,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.92622,Private room,70,3,5,2016-05-16,0.11,1,0 +7819706,East Village 1 Bedroom,13612070,Steph,Manhattan,East Village,40.7305,-73.98416,Entire home/apt,150,1,0,,,1,0 +7820423,Large 2 Bedroom apt near Union Sq,4068324,Heidi,Manhattan,Greenwich Village,40.73415,-73.99814,Entire home/apt,425,4,68,2019-06-16,1.45,1,36 +7820664,Spacious Chelsea Apartment w/Roof!,8314981,Kevin,Manhattan,Chelsea,40.74221,-73.99822,Entire home/apt,490,3,1,2016-01-03,0.02,2,0 +7820825,Beautiful Sunny Room Near A/D & 2/3,2327346,John,Manhattan,Harlem,40.80689,-73.94784,Private room,70,1,0,,,1,0 +7821813,Sunny apartment in Greenpoint,1249116,Eric,Brooklyn,Greenpoint,40.72971,-73.95834,Private room,135,7,2,2015-09-18,0.04,1,0 +7823121,Nice Private Room Near Columbia U.,37402024,Shichao,Manhattan,Morningside Heights,40.80379,-73.96571,Private room,80,1,4,2015-08-29,0.08,1,0 +7823396,Quiet Home Away from Home,41190629,Michael,Brooklyn,Crown Heights,40.66443,-73.94822,Entire home/apt,90,1,3,2015-10-12,0.06,1,0 +7823495,Elegant Oasis - Private Roof Terrace,11898556,Ola,Manhattan,Chelsea,40.7414,-73.99815,Entire home/apt,800,30,22,2019-06-08,0.48,1,266 +7823546,Cozy 1 bdrm in a 2 Bdr apt. Great location.,39148503,Ramiro,Brooklyn,Williamsburg,40.70866,-73.94122,Private room,70,4,7,2019-06-07,0.21,2,364 +7824018,"Hell's Kitchen, the ❤️ of the city!",41193978,Caroline,Manhattan,Hell's Kitchen,40.76222,-73.99088,Private room,100,3,4,2016-10-15,0.09,1,0 +7824945,Small Room on the Upper West Side,37138145,C,Manhattan,Upper West Side,40.80111,-73.96539,Private room,75,1,205,2019-07-03,4.32,2,197 +7826033,Sapphire Suite,36070324,Luke,Manhattan,Harlem,40.83107,-73.9486,Private room,88,3,6,2019-06-21,0.33,1,82 +7826411,Private room in trendy LES,24881130,Fred,Manhattan,Lower East Side,40.72184,-73.9868,Private room,100,3,0,,,1,0 +7827616,Private Room in Cozy NYC Apartment,41219108,Darsell,Queens,Astoria,40.76257,-73.91803,Private room,50,3,1,2016-09-05,0.03,1,0 +7827908,Private Entrance/ Private Bathroom,41201538,Faith,Brooklyn,Bushwick,40.70126,-73.918,Private room,63,2,104,2019-06-08,2.19,1,230 +7828204,Large Room Close to NYC,30379314,Caitlin,Queens,Sunnyside,40.74447,-73.92547,Private room,50,1,1,2015-09-09,0.02,1,0 +7831486,Private room in Financial District!,41240531,Lauren,Manhattan,Financial District,40.70501,-74.01395,Private room,90,5,2,2016-05-26,0.05,1,0 +7834712,Sunny 1 Bedroom in Brooklyn,41262382,Catherine,Brooklyn,Bedford-Stuyvesant,40.68237,-73.95257,Entire home/apt,85,2,10,2018-11-15,0.21,1,0 +7834733,"Beautiful, Airy, Minimal Apartment",13425453,Peter,Brooklyn,Clinton Hill,40.68096,-73.95902,Private room,69,1,0,,,1,0 +7834765,✦Artsy Loft Master Suite✦Private Bath/High Ceiling,41261306,Hsiang Wei,Brooklyn,Clinton Hill,40.69218,-73.96127,Private room,90,2,32,2019-06-29,1.24,1,20 +7835470,"Spacious, 2 Bedroom Bed Stuy home",2682346,Seema N James,Brooklyn,Bedford-Stuyvesant,40.6891,-73.93926,Entire home/apt,75,2,4,2016-06-27,0.08,1,0 +7835680,West Village one bedroom,1302599,Ashley,Manhattan,West Village,40.72966,-74.00234,Entire home/apt,150,2,1,2015-09-27,0.02,1,0 +7835778,Bright room in quiet Brooklyn home,40693481,Miles,Brooklyn,Kensington,40.64493,-73.97801,Private room,38,5,1,2015-08-31,0.02,1,0 +7836591,True Brooklyn Loft,10786794,Fig,Brooklyn,Williamsburg,40.70492,-73.93832,Private room,70,3,1,2015-08-23,0.02,1,0 +7837347,Pre-War Apartment By Riverside Park,13089720,Garret,Manhattan,Morningside Heights,40.81411,-73.96073,Entire home/apt,180,2,0,,,1,0 +7837583,Huge Bedroom w/ Private Bathroom,7641397,Melissa,Brooklyn,Williamsburg,40.71621,-73.93984,Private room,65,12,2,2015-10-14,0.04,1,0 +7837685,Bright bedroom with private bathroom,41007099,Romina,Brooklyn,Crown Heights,40.66855,-73.92945,Private room,75,10,12,2019-05-21,0.26,1,0 +7837816,"Bright, Cozy room in Brooklyn",19483885,Edgar,Brooklyn,Bedford-Stuyvesant,40.69695,-73.95951,Private room,60,1,184,2019-07-02,4.83,2,240 +7837952,Excellent Location Gramercy Studio,2610233,Julia,Manhattan,Flatiron District,40.73947,-73.98593,Entire home/apt,221,3,99,2019-06-17,2.26,1,110 +7838393,Stunning 2bed/2bath W'burg luxury apt w/ VIEWS!,3147660,Georgia,Brooklyn,Williamsburg,40.70985,-73.96923,Entire home/apt,500,2,39,2019-05-30,0.84,1,330 +7838854,Charming Central Park Abode,12650039,Danielle,Manhattan,Upper West Side,40.78718,-73.97521,Entire home/apt,150,2,0,,,1,0 +7839096,prime midtown~charming Huge Loft~hi,2119276,Host,Manhattan,Midtown,40.74926,-73.98201,Entire home/apt,250,30,2,2018-08-12,0.04,39,98 +7839972,Manhattan Penthouse 1 Bdrm Apt,2905589,Phong,Manhattan,Midtown,40.74645,-73.9853,Entire home/apt,239,4,4,2015-10-26,0.09,1,0 +7840953,Large Lofted Brooklyn Studio,7579910,Christine,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93944,Entire home/apt,105,30,5,2018-12-31,0.11,1,363 +7841464,Williamsburg Crow's Nest,3064885,Michael,Brooklyn,Williamsburg,40.71086,-73.96088,Private room,50,1,2,2015-09-06,0.04,1,0 +7841904,Modern Private Room in Meatpacking,24976518,Mike,Manhattan,West Village,40.74005,-74.00466,Private room,75,3,4,2017-01-02,0.09,1,0 +7842116,Huge room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64362,-74.00046,Private room,55,1,0,,,2,0 +7842276,Charming & Colorful 1BR in Brooklyn,7634973,Alyssa,Brooklyn,Boerum Hill,40.68357,-73.98285,Entire home/apt,108,1,40,2019-04-25,0.87,1,0 +7842671,Bedroom in Soho/Nolita Two-bedroom,3599088,Chris,Manhattan,Nolita,40.72113,-73.99465,Private room,59,2,10,2018-02-18,0.21,2,0 +7843122,Luxury Highrise Condominium,8475475,Claire,Manhattan,Upper West Side,40.78128,-73.98184,Entire home/apt,149,2,3,2016-05-22,0.06,1,0 +7843320,Bright Airy 1 Bed in Williamsburg,328951,Mathew,Brooklyn,Williamsburg,40.70955,-73.95678,Entire home/apt,150,1,20,2019-04-28,1.44,1,35 +7843582,"Spacious, Quiet One Bedroom Apt",1246073,Josh,Brooklyn,Crown Heights,40.67042,-73.95677,Entire home/apt,119,2,27,2019-07-01,0.58,1,154 +7843604,"Big, cozy & chic! 1BR Apt in Harlem",41329387,Calatayud Family,Manhattan,Harlem,40.80755,-73.95104,Entire home/apt,100,2,193,2019-06-14,4.17,1,213 +7843696,Private Cozy Bedroom w Divider Wall,41330687,Alex,Manhattan,Gramercy,40.73363,-73.98545,Private room,79,1,0,,,1,0 +7843851,Private room in artsy Brooklyn home,41332081,Stephanie,Brooklyn,Crown Heights,40.67689,-73.94884,Private room,85,3,8,2015-11-18,0.17,1,179 +7844193,Great Crown Heights Room (w/ roof!),14199417,Preston,Brooklyn,Crown Heights,40.67053,-73.95136,Private room,45,1,1,2015-08-24,0.02,1,0 +7850400,Quiet charming Duplex,41367164,Haim,Manhattan,Lower East Side,40.72147,-73.98733,Entire home/apt,295,3,63,2019-07-01,1.40,1,214 +7851047,2000 sq/ft AMAZING apt East Village,41371043,Patrick,Manhattan,East Village,40.7246,-73.98953,Entire home/apt,400,1,0,,,1,0 +7851219,- A - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71631,-73.96353,Private room,60,2,121,2019-06-18,2.55,8,69 +7851753,CHAMBRE BROOKLYN,24570526,Agathe Et Francois,Brooklyn,Fort Greene,40.69565,-73.9711,Private room,90,1,0,,,1,0 +7853110,"Carroll Gardens, 25 ft from F/G",631747,Logan,Brooklyn,Carroll Gardens,40.67986,-73.9945,Private room,60,2,1,2015-08-23,0.02,1,0 +7853561,2Br~Union square~Newly furnished,2119276,Host,Manhattan,Gramercy,40.73337,-73.98524,Entire home/apt,200,30,5,2019-01-13,0.11,39,331 +7853584,Charming Apt in Historic Harlem,41385305,Khalid,Manhattan,Harlem,40.81899,-73.94694,Entire home/apt,80,2,1,2016-03-09,0.02,1,0 +7854307,- H - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71692,-73.96353,Private room,60,2,97,2019-06-15,2.07,8,83 +7854999,private bedroom in greenpoint pad,41392993,Niki,Brooklyn,Greenpoint,40.72555,-73.94846,Private room,50,3,2,2016-07-02,0.05,1,0 +7856476,"Private floor with private half-bath, living area",24629261,Natalie,Staten Island,Randall Manor,40.63878,-74.10636,Private room,69,3,23,2019-06-07,0.52,1,172 +7856749,"Easy Access, Cute Space",16437254,Benjamin,Brooklyn,Boerum Hill,40.68782,-73.98514,Entire home/apt,123,30,7,2019-04-30,0.23,21,319 +7857040,Cozy Brooklyn Bedroom Available,41405875,Nichole,Brooklyn,Bedford-Stuyvesant,40.69457,-73.93889,Private room,36,1,0,,,1,0 +7857185,Midtown great location private Apt,41406733,George,Manhattan,Midtown,40.75399,-73.96967,Entire home/apt,135,1,214,2019-06-19,4.50,1,170 +7858023,Luxury 1BR Overlooking Manhattan Skyline,41411996,Abdirazak,Manhattan,East Village,40.72316,-73.97706,Entire home/apt,400,2,9,2017-05-24,0.25,1,0 +7858096,Large Bedroom in Kips Bay/Gramercy,41411803,Dan,Manhattan,Gramercy,40.7357,-73.98087,Private room,87,3,3,2015-10-05,0.06,1,0 +7858468,The Artist's Experience,8552927,Jeffrey,Manhattan,Hell's Kitchen,40.76425,-73.99162,Private room,99,1,309,2019-07-07,6.61,1,254 +7858532,Cozy artsy space in Brooklyn,735786,Christine,Brooklyn,Crown Heights,40.67082,-73.9278,Private room,55,2,39,2019-05-31,0.83,1,311 +7858541,Creative NoLita Apartment,6181443,Gehad,Manhattan,Nolita,40.71987,-73.99436,Entire home/apt,225,5,9,2017-10-15,0.33,1,0 +7858673,- I - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71767,-73.96252,Private room,60,2,92,2019-06-08,1.94,8,87 +7858741,Your own West Village flat!,2577242,Braden,Manhattan,West Village,40.73039,-74.00223,Entire home/apt,250,4,0,,,1,0 +7858824,Spacious apt - GREAT location,27655084,Michelle,Manhattan,Midtown,40.75709,-73.96972,Entire home/apt,299,2,7,2016-11-27,0.15,1,0 +7859630,Brooklyn Room Available (furnished),33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92989,Private room,40,20,23,2019-05-13,0.49,2,206 +7859723,Spacious Studio in Chelsea,8554194,Andy,Manhattan,Chelsea,40.74453,-73.99988,Entire home/apt,120,3,39,2019-06-16,0.84,1,1 +7860155,Private bedroom in the heart of NYC,24559181,Aldi,Manhattan,Upper East Side,40.76312,-73.96624,Private room,89,1,148,2019-06-23,3.18,3,351 +7861113,Upper West Side 2 bedroom/1 bath,37138145,C,Manhattan,Upper West Side,40.80021,-73.96634,Entire home/apt,195,1,0,,,2,0 +7862762,Spacious pre-war apartment,40548594,Justine,Manhattan,Financial District,40.70623,-74.0051,Entire home/apt,150,2,52,2019-06-23,1.11,1,72 +7863289,1 XLrg BR w backyard - Heart of city next to PENN,9367710,Prem,Manhattan,Hell's Kitchen,40.75543,-73.99662,Private room,140,1,0,,,1,0 +7864877,Bright and Convenient 2 Br,36264666,Dins,Manhattan,Harlem,40.80156,-73.95128,Entire home/apt,240,3,2,2015-08-30,0.04,1,0 +7866421,"Big Sunny Room in BedStuy, Brooklyn",40511631,Joey,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93867,Private room,36,2,6,2017-06-25,0.13,2,0 +7867805,Best location in manhattan,41464907,Furkan,Manhattan,Kips Bay,40.74086,-73.9803,Entire home/apt,67,1,1,2015-08-20,0.02,1,0 +7867890,UWS Apartment and Garden Terrace,17714726,Craig,Manhattan,Upper West Side,40.80268,-73.969,Entire home/apt,140,4,11,2018-07-24,0.23,1,10 +7869449,Cozy room in Bushwick!,30541205,Mya,Brooklyn,Bushwick,40.69994,-73.92176,Private room,50,3,0,,,1,0 +7869876,"Entire floor of house Very Private 2BR suite,SUNNY",17382996,Eileen,Bronx,Port Morris,40.80247,-73.91435,Entire home/apt,90,2,152,2019-06-30,3.25,1,299 +7870258,- C - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71755,-73.96419,Private room,60,2,99,2019-06-15,2.10,8,77 +7870403,Mins to Manhattan and Williamsburg!,39840590,Sachiko,Queens,Long Island City,40.74365,-73.95377,Entire home/apt,138,1,227,2019-06-21,4.83,1,21 +7870442,Spacious Upper West Side Studio,25613217,Maya,Manhattan,Upper West Side,40.80049,-73.96064,Entire home/apt,96,1,2,2016-07-04,0.05,1,0 +7871818,"Artist/Musician Apartment, Bushwick",4769886,Tom & Nic,Brooklyn,Bushwick,40.69533,-73.92053,Private room,109,2,105,2019-06-27,2.25,2,244 +7871858,Putnam Garden -2BDR Garden Apt,10659447,Keisha,Brooklyn,Bedford-Stuyvesant,40.68439,-73.95231,Entire home/apt,135,4,106,2019-06-26,2.23,1,282 +7871985,Your Perfect Home Away From Home,5577926,Lou,Queens,Astoria,40.75793,-73.90959,Entire home/apt,58,30,7,2019-03-19,0.15,4,134 +7872172,"Private room, home away from home",1212731,Emilia,Manhattan,Upper West Side,40.79943,-73.968,Private room,65,1,2,2016-09-02,0.04,1,0 +7872617,Stylish Uptown 2Bd Family Apt,38337141,Natalie,Manhattan,Washington Heights,40.84984,-73.94187,Entire home/apt,225,3,2,2015-09-27,0.04,1,0 +7873524,lovely apartment at central park,37282412,Meredith,Manhattan,Harlem,40.80009,-73.95313,Entire home/apt,130,3,1,2015-09-07,0.02,1,0 +7873655,- G - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71714,-73.96234,Private room,60,2,107,2019-06-21,2.26,8,84 +7873893,Private Room - Condo @ FiDi,3593739,Andres,Manhattan,Financial District,40.70518,-74.0127,Private room,80,2,0,,,1,0 +7874958,Luxury Williamsburg Apt with Views,10447370,Jennifer,Brooklyn,Williamsburg,40.7167,-73.95272,Entire home/apt,210,2,2,2015-12-02,0.04,1,0 +7877599,Luxury Townhouse in Brownstone Brooklyn,34595916,Andrew,Brooklyn,South Slope,40.66921,-73.98813,Entire home/apt,275,6,28,2019-04-30,0.68,3,0 +7880998,NoMad One Bedroom on Park Ave,41543076,Kelsey,Manhattan,Midtown,40.74321,-73.98474,Entire home/apt,175,7,1,2016-07-01,0.03,1,0 +7881023,Charming Chelsea Home,66354,Laura,Manhattan,Chelsea,40.7468,-74.00493,Entire home/apt,175,1,6,2016-05-07,0.13,1,0 +7884731,Big Spacious Room - North Manhattan,41565192,Austin,Manhattan,Washington Heights,40.84877,-73.93515,Private room,43,3,1,2015-08-27,0.02,1,0 +7884922,Artsy Duplex in Chelsea w/ Terrace,7139819,Nauman,Manhattan,Chelsea,40.74716,-74.00047,Entire home/apt,250,3,2,2016-12-04,0.05,2,0 +7885044,Bedroom in Williamsburg's Heart,20792304,Baptiste,Brooklyn,Williamsburg,40.71413,-73.95044,Private room,79,2,3,2015-08-31,0.06,1,0 +7886308,Union Square/Gramercy Apartment,41574770,Hadi,Manhattan,Gramercy,40.73428,-73.98521,Entire home/apt,300,3,0,,,1,0 +7886635,- E - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71636,-73.96246,Private room,60,2,97,2019-06-18,2.13,8,122 +7887966,The City Farmhouse APT B **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75837,-73.91387,Entire home/apt,100,30,61,2019-03-28,1.39,3,224 +7889596,Large sunny room close to N&D train LGBTQ friendly,11010205,Jacob,Brooklyn,Bensonhurst,40.61391,-73.99128,Private room,79,2,2,2019-06-22,0.22,2,365 +7891403,"BIG SUNNY 2 1/2 BR, 1 STOP FR. NYC",2829145,Charlotta,Brooklyn,Fort Greene,40.6923,-73.97123,Entire home/apt,285,3,66,2019-05-27,1.41,2,292 +7893820,Prime Wburg renovated 2 bedroom,1330961,Julian,Brooklyn,Williamsburg,40.71502,-73.96436,Entire home/apt,220,1,0,,,1,0 +7894007,MyPlace2Beach,41619645,D.,Queens,Arverne,40.58875,-73.79109,Private room,200,2,70,2019-06-24,1.48,1,90 +7894084,Cozy and modern studio by the park,41620310,Olivia,Manhattan,Upper East Side,40.77391,-73.94816,Entire home/apt,100,3,0,,,1,0 +7894907,Cosy studio in East Village,1830864,Natasha,Manhattan,East Village,40.72395,-73.98001,Entire home/apt,150,2,25,2016-07-22,0.55,1,0 +7895157,Midtown West Studio,39531775,Mark,Manhattan,Hell's Kitchen,40.76449,-73.9934,Entire home/apt,175,3,0,,,1,0 +7897229,Bright Comfy Studio!,598090,Adrienne,Manhattan,Upper West Side,40.777,-73.97708,Private room,180,1,8,2017-07-30,0.17,1,0 +7898302,Upper West Side charming brownstone,41644172,Jody,Manhattan,Upper West Side,40.78888,-73.97723,Entire home/apt,150,1,1,2015-08-19,0.02,1,0 +7899605,COZY ROOM CLOSE TO TOUR SITES,39472987,Eileen,Manhattan,Harlem,40.82861,-73.94127,Private room,58,1,5,2016-09-19,0.11,1,0 +7899658,MANHATTAN LIVING!,40605120,(Ari) HENRY LEE,Manhattan,East Harlem,40.78938,-73.94679,Entire home/apt,140,7,3,2017-12-08,0.06,1,56 +7900119,Bright Room in Williamsburg,2697468,Vera,Brooklyn,Williamsburg,40.71058,-73.95191,Private room,80,1,2,2015-09-26,0.04,1,0 +7900437,Studio/Brick Wall/Fireplace/Patio,32828988,Annie,Manhattan,Theater District,40.75995,-73.98617,Entire home/apt,100,15,5,2015-10-28,0.11,1,0 +7900575,"Charming, quiet West Village studio",41657584,Beatriz,Manhattan,West Village,40.73519,-74.00642,Entire home/apt,200,3,9,2019-06-02,0.20,1,168 +7900722,Sunlit Big 1BR in Williamsburg,37728157,Aya,Brooklyn,Williamsburg,40.71139,-73.94176,Entire home/apt,175,11,11,2018-10-01,0.24,1,0 +7900908,Clean Cozy & Comfy Apartment!,41658748,Ben,Manhattan,Gramercy,40.73518,-73.98047,Entire home/apt,250,2,105,2019-06-11,2.26,3,307 +7900957,Delightful Refuge in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.6869,-73.93074,Private room,74,2,22,2019-06-24,0.63,7,76 +7901635,- F - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71544,-73.96211,Private room,60,2,99,2019-06-23,2.10,8,100 +7901715,Cozy bedroom with full-size bed,29599415,Zhaoyu,Manhattan,Harlem,40.80356,-73.95666,Private room,60,1,2,2015-09-15,0.04,1,0 +7901928,Cozy Room in the Heart of Astoria,4646764,Amanda,Queens,Astoria,40.76281,-73.91554,Private room,60,1,2,2015-11-09,0.04,1,0 +7902089,UES Pincushion Living,41666655,Andrea,Manhattan,Upper East Side,40.77098,-73.95965,Entire home/apt,150,2,5,2016-02-25,0.11,1,157 +7902291,"Large room, rooftop, queen bed",41667978,Doreen,Manhattan,Lower East Side,40.71449,-73.987,Private room,70,2,1,2015-09-05,0.02,1,0 +7902556,Room in NYC Financial district apt,3041587,Richy,Manhattan,Financial District,40.70395,-74.00995,Private room,98,14,121,2019-06-01,2.58,1,204 +7908355,"Loft Bedroom in Clinton Hill, Brooklyn",21657314,Luke,Brooklyn,Clinton Hill,40.69143,-73.96079,Private room,108,4,21,2019-06-15,2.31,1,12 +7911249,Huge Room in Lower East Side Loft,16430135,Hannes,Manhattan,Lower East Side,40.71846,-73.98672,Private room,80,4,3,2015-12-19,0.06,1,0 +7911437,Private Studio in Queens,15904258,Monika,Queens,Maspeth,40.72172,-73.8881,Entire home/apt,60,3,45,2019-06-28,1.06,1,219 +7911571,2BR Warehouse Style Apt in Williamsburg w/rooftop,4152479,Conor,Brooklyn,Williamsburg,40.70978,-73.95143,Entire home/apt,220,3,5,2017-12-29,0.13,2,0 +7911917,Beautiful Studio // East Village,24732939,Suraj,Manhattan,East Village,40.72578,-73.98236,Entire home/apt,140,5,16,2019-06-29,0.72,1,1 +7912513,"New Yorker-Featured, Light-Filled 3 Bedroom Loft",1696219,George,Manhattan,East Village,40.7336,-73.99006,Entire home/apt,1200,3,9,2018-01-02,0.25,1,359 +7912525,Prospect Heights Apartment,18118610,Amy,Brooklyn,Prospect Heights,40.67308,-73.96336,Entire home/apt,120,2,0,,,1,0 +7913426,LUX 1-Bedroom NYC Apartment Near Times Square!,30283594,Kara,Manhattan,Theater District,40.75654,-73.98891,Entire home/apt,369,30,0,,,121,364 +7913704,Quiet Room in Harlem Apartment,2405940,Hannah,Manhattan,Harlem,40.82457,-73.94984,Private room,42,2,3,2016-09-06,0.08,1,0 +7914369,Charming 1 Bedroom Garden Apt!,2010157,Alex,Brooklyn,Bedford-Stuyvesant,40.68372,-73.91994,Entire home/apt,120,2,92,2019-07-03,2.02,1,54 +7914401,The perfect nightlife spot,22282829,Kyle,Manhattan,East Village,40.72686,-73.98743,Private room,69,5,10,2017-10-08,0.28,1,0 +7915525,"Bedroom in Clinton Hill, Brooklyn",34943122,Hadrien,Brooklyn,Clinton Hill,40.68433,-73.95982,Private room,85,1,14,2018-03-11,0.30,2,0 +7915596,"Large, Bright NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.69919,-73.93818,Private room,75,2,226,2019-06-10,4.78,2,128 +7915831,"Lovely, Room/with Private bathroom",5719436,Leonie,Brooklyn,Flatbush,40.63982,-73.96634,Private room,1100,1,1,2016-09-11,0.03,1,365 +7916103,Sunny Private Room by Prospect Park,29235148,Ehi,Brooklyn,Prospect-Lefferts Gardens,40.65508,-73.95689,Private room,60,2,3,2016-09-24,0.07,1,0 +7916684,Room in Stylish Hells Kitchen Apt.,41743945,George - Francis,Manhattan,Hell's Kitchen,40.76328,-73.99347,Private room,160,3,3,2016-03-27,0.06,2,0 +7916802,Exposed brick Room- Columbus Circle,20336015,Miranda,Manhattan,Hell's Kitchen,40.7699,-73.98985,Private room,120,1,1,2015-09-07,0.02,1,0 +7917251,"Amazing LES apt - cool, bright...",41747327,Amy,Manhattan,Lower East Side,40.71909,-73.99028,Entire home/apt,95,1,98,2019-06-23,2.13,1,240 +7917755,Comfort & Ease in East Village 1BR,16262059,Nathan,Manhattan,East Village,40.72304,-73.97696,Entire home/apt,180,1,1,2015-09-27,0.02,1,0 +7919094,Spacious 1 Bd in Heart of WillyB,41757762,Sara,Brooklyn,Williamsburg,40.71122,-73.95663,Entire home/apt,170,13,6,2018-03-01,0.17,1,0 +7919303,Huge Brooklyn Flat by Jefferson L,10399992,Jesse,Brooklyn,Bushwick,40.70098,-73.92674,Private room,39,14,1,2016-01-17,0.02,1,0 +7919372,Cozy & Clean #6,23533897,Fatou,Brooklyn,Crown Heights,40.67568,-73.95124,Private room,75,1,38,2019-06-16,1.12,7,322 +7919636,Beautiful and spacious 3BR UES,41760536,Austin,Manhattan,Upper East Side,40.7695,-73.95115,Private room,100,1,0,,,1,0 +7919803,Comfy & Charming 2 Bedroom Home,4549552,Jill,Brooklyn,Bedford-Stuyvesant,40.69118,-73.95928,Entire home/apt,160,2,14,2016-05-21,0.30,1,0 +7920072,East Village - private room - chill,10353278,James,Manhattan,East Village,40.73243,-73.98692,Private room,96,2,114,2019-06-28,2.47,2,98 +7920170,Sunny room in a contemporary modern apartment,36089884,Adrian,Manhattan,Washington Heights,40.85597,-73.9333,Private room,50,2,93,2019-06-05,3.37,1,208 +7920394,SoHo- Spacious 1 Bed/Bath- Private Apartment,6272532,Dan,Manhattan,SoHo,40.72521,-74.00213,Entire home/apt,145,5,8,2018-09-04,0.19,1,0 +7921643,Luxury studio in Brooklyn,15102423,Prachal,Brooklyn,Fort Greene,40.69011,-73.98053,Entire home/apt,225,1,0,,,1,0 +7922002,Studio in heart of LES (Manhattan),41775303,Shinsuke,Manhattan,Lower East Side,40.72131,-73.98541,Entire home/apt,100,3,1,2015-09-06,0.02,1,0 +7927838,Spacious Sunny Brownstone Room - Great Location!,6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.6796,-73.93022,Private room,95,2,153,2019-06-21,3.27,3,296 +7928219,Crown Heights Gem w/ pvt. balcony,6238742,Kilolo,Brooklyn,Crown Heights,40.67702,-73.959,Entire home/apt,115,1,0,,,1,0 +7928917,Studio in Full Service Chelsea Bldg,41810578,Anisha,Manhattan,Chelsea,40.7393,-73.99609,Entire home/apt,215,1,0,,,1,0 +7929441,Beautiful Loft w/ Waterfront View!,1453898,Anthony,Brooklyn,Williamsburg,40.71268,-73.96676,Private room,105,2,232,2019-06-19,5.00,3,64 +7931059,Bedroom near Columbia,6312322,Aditya,Manhattan,Harlem,40.8215,-73.95565,Private room,75,1,0,,,1,0 +7931180,Beautiful Converted School House,28398689,Ryan,Brooklyn,Bedford-Stuyvesant,40.68179,-73.92947,Private room,150,1,0,,,1,0 +7932177,Private room with patio,41827222,Michael,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94962,Private room,35,6,10,2017-06-10,0.28,2,0 +7932428,Bushwick 1 bedroom w/ private roof,21468915,Adrianna,Brooklyn,Bushwick,40.69559,-73.92783,Entire home/apt,80,1,1,2015-09-07,0.02,1,0 +7933257,Artist's brownstone apartment in Brooklyn,109981,Rosie,Brooklyn,Bedford-Stuyvesant,40.68279,-73.92135,Entire home/apt,120,2,11,2019-01-01,0.93,1,6 +7933400,Astoria Nice Neighborhood,40336543,Simon,Queens,Long Island City,40.76422,-73.93169,Private room,89,2,0,,,2,364 +7933773,BK sunny 1 BR close to trains,41764756,Luz,Brooklyn,Prospect-Lefferts Gardens,40.65602,-73.95891,Entire home/apt,130,3,20,2018-09-25,0.43,1,0 +7933896,Huge Lower East Side 1 bedroom,8363605,Jimmy,Manhattan,Two Bridges,40.71106,-73.99576,Entire home/apt,122,1,0,,,1,0 +7936161,Room in a Beautiful East Village Apt!,12589844,Asif,Manhattan,East Village,40.72157,-73.97861,Private room,71,7,42,2019-04-30,0.89,1,0 +7936698,"Spacious, sunny bedroom next to Prospect Park!",2128535,Lily,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96246,Private room,50,3,5,2017-01-14,0.11,1,0 +7937398,Serene Brownstone Living Close To It All!,6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.67973,-73.93058,Private room,72,2,151,2019-06-16,3.23,3,288 +7937553,Riomaggiore Room. Queen Bedroom in Bklyn Townhouse,2787,John,Brooklyn,Bensonhurst,40.60951,-73.97622,Private room,99,1,21,2018-10-27,0.50,6,153 +7938424,Carroll Gardens Brownstone,5504415,Bailey,Brooklyn,Carroll Gardens,40.68129,-73.99426,Entire home/apt,110,1,2,2015-09-26,0.04,1,0 +7938492,Upper East Side Studio,355259,Priscilla,Manhattan,Upper East Side,40.76637,-73.95345,Entire home/apt,118,1,2,2016-08-23,0.04,1,0 +7939788,Apt. with yard near Central Park,26297795,Jesse,Manhattan,East Harlem,40.79025,-73.9482,Private room,75,1,5,2016-06-28,0.11,1,0 +7945940,Roof garden & River Sunsets Zen,7020836,Jeeku,Manhattan,West Village,40.73849,-74.00589,Entire home/apt,225,3,159,2019-06-24,3.40,1,132 +7949344,Large Chill and Vibes 1 Bedroom,41919914,Austin,Brooklyn,Bushwick,40.69881,-73.93057,Private room,80,1,2,2015-10-03,0.04,1,188 +7949480,City Island Sanctuary BR & Pvt Bath à la française,119445,Linda & Didier,Bronx,City Island,40.85205,-73.78868,Private room,107,1,73,2019-06-30,1.73,1,173 +7950368,Williamsburg Bedford Ave L Train,1696218,David,Brooklyn,Williamsburg,40.7187,-73.95606,Entire home/apt,500,26,9,2018-02-25,0.19,1,178 +7951281,Brand new 2BR heart of Fort Greene,292522,Jonathan,Brooklyn,Fort Greene,40.68857,-73.97385,Entire home/apt,200,2,120,2019-07-04,2.61,2,287 +7951346,Cozy Room with private balcony close to La Guardia,7057608,Andres And Salina,Queens,East Elmhurst,40.75712,-73.89365,Private room,42,2,25,2019-07-06,0.54,1,283 +7952315,Designer's Large 1BR in Chelsea,11081810,Sam,Manhattan,Chelsea,40.74768,-73.99625,Entire home/apt,350,4,3,2016-07-27,0.06,1,0 +7952963,Gorgeous Pre War Sanctuary - 1 block from Union Sq,3333577,Julia,Manhattan,Gramercy,40.73523,-73.98668,Private room,160,2,53,2019-07-01,1.16,2,344 +7953220,Huge Modern Luxury Brooklynite (2k+sqrft),41939599,Noah,Brooklyn,Prospect Heights,40.68024,-73.97173,Entire home/apt,164,30,0,,,1,0 +7953690,L Train · 11' Windows · Rooftop,10556524,Ryan,Brooklyn,Williamsburg,40.70649,-73.92954,Private room,89,2,2,2016-06-19,0.05,2,0 +7953819,Lovely Brooklyn Brownstone w Yard,2665690,Mercedes,Brooklyn,Bedford-Stuyvesant,40.68432,-73.93227,Entire home/apt,150,30,10,2017-01-03,0.25,1,30 +7954940,East Village Private Room & Bath,39956905,Can,Manhattan,East Village,40.72775,-73.9863,Private room,100,2,0,,,2,0 +7955150,Entire Apartment in South Slope,41951749,Erin,Brooklyn,South Slope,40.66495,-73.99147,Entire home/apt,120,2,8,2015-11-10,0.17,1,0 +7955889,"Gorgeous, clean, room for rent.",6263244,Nkatha,Manhattan,Harlem,40.82036,-73.94219,Private room,73,1,10,2019-06-14,0.29,2,365 +7955984,Elegant Accommodation On A Budget!,6263244,Nkatha,Manhattan,Harlem,40.81944,-73.9408,Private room,73,1,27,2019-06-19,0.59,2,340 +7956149,"Studio Apartment in New York, NY",32502064,Danielle,Manhattan,Financial District,40.7044,-74.00851,Entire home/apt,200,1,0,,,1,0 +7956593,Brooklyn Beauty w/private garden!,5555793,Lindsay,Brooklyn,Carroll Gardens,40.67857,-73.99485,Entire home/apt,140,3,3,2015-10-12,0.06,2,0 +7956643,Authentic Brooklyn - Near Prospect Park,3251778,Megan,Brooklyn,Crown Heights,40.67323,-73.9619,Entire home/apt,125,2,4,2016-10-16,0.09,1,0 +7957339,Luxury Waterfront Building 1Bd/1Bth,32088026,Robert,Brooklyn,Sheepshead Bay,40.58479,-73.9388,Entire home/apt,109,1,0,,,1,0 +7962707,SPACIOUS APT CLOSE TO MANHATTAN!!,42008401,Adam,Queens,Long Island City,40.75403,-73.91814,Entire home/apt,140,1,9,2016-04-19,0.19,1,0 +7965847,Modern Room Near Express Train to Manhattan,2762022,Skye,Brooklyn,Bedford-Stuyvesant,40.69398,-73.9338,Private room,48,4,22,2018-12-17,0.47,1,0 +7966153,Spacious 2 BR for Weekend Rental,42030960,Michael,Brooklyn,Bay Ridge,40.63519,-74.02634,Entire home/apt,135,1,0,,,1,0 +7966358,NYC High End 2BR Midtown West Apt,30283594,Kara,Manhattan,Midtown,40.76633,-73.98145,Entire home/apt,335,30,0,,,121,201 +7966447,SOHO NYC SEPT ROOM AVAILABLE!!,42034713,Olivia,Manhattan,SoHo,40.72251,-73.99957,Private room,50,1,0,,,1,0 +7966943,BEAUTIFUL 1 BDR APT W/ PRIVATE ROOF,4352069,Rebecca,Manhattan,East Village,40.72672,-73.97965,Entire home/apt,400,1,15,2019-01-02,0.34,2,6 +7967503,Perfect midtown west studio,2781031,Paolo,Manhattan,Hell's Kitchen,40.76885,-73.98631,Entire home/apt,165,3,68,2019-06-19,1.46,1,195 +7967829,Bright large bedroom in Bushwick,42043282,Arielle,Brooklyn,Bushwick,40.70335,-73.92891,Private room,70,2,1,2015-09-07,0.02,1,0 +7967922,Big Private Room in Ridgewood,4094837,Siebren,Queens,Ridgewood,40.71111,-73.91689,Private room,52,10,8,2019-03-10,0.17,1,36 +7967942,West Village/Meatpacking Loft!,24707895,Regi,Manhattan,Chelsea,40.74052,-74.00423,Entire home/apt,385,3,3,2016-06-20,0.07,1,0 +7968283,Large room & private bathroom,42045746,Owen,Brooklyn,Bushwick,40.68935,-73.9127,Private room,45,1,1,2015-10-06,0.02,1,0 +7968983,4 bedroom 3 bath duplex w roof deck & washer/dryer,780477,Donavan,Brooklyn,East New York,40.66125,-73.89976,Entire home/apt,275,3,77,2019-07-03,1.67,1,256 +7969111,Charming Chelsea Flat,42050222,Jose,Manhattan,Chelsea,40.74192,-73.99978,Private room,135,3,250,2019-07-02,5.36,1,111 +7970110,ASTORIA APARTMENT AVAILABLE,4831239,Mariand,Queens,Astoria,40.76583,-73.92878,Entire home/apt,75,1,0,,,1,0 +7970450,Adorable Upper East Side Apartment,39651842,Samantha,Manhattan,Upper East Side,40.77285,-73.94715,Private room,110,1,0,,,1,0 +7970578,Magical 3-bed/3-bath fabulous views,20233558,Ruth,Brooklyn,Greenpoint,40.73175,-73.95403,Entire home/apt,350,2,5,2019-06-22,0.11,1,0 +7972210,Large room in Bushwick!,12720552,Julie,Brooklyn,Bushwick,40.70158,-73.92724,Private room,100,1,22,2019-06-22,0.48,5,324 +7972825,"Lovely, kitschy 1BR + Foldout Couch",42073103,Brent,Queens,Astoria,40.75535,-73.92609,Entire home/apt,100,2,4,2015-11-29,0.09,1,0 +7972839,Spacious apt. near Prospect Park,1287826,Alexander,Brooklyn,Prospect Heights,40.67603,-73.96941,Entire home/apt,135,4,2,2015-10-17,0.04,1,0 +7973484,Sunny Apt. on the UES in NYC,17770287,Nina,Manhattan,Upper East Side,40.76769,-73.95236,Entire home/apt,115,30,12,2019-02-08,0.27,14,239 +7973730,Sunny Williamsburg apartment,5828974,Farah,Brooklyn,Williamsburg,40.71147,-73.95312,Entire home/apt,150,6,2,2017-07-12,0.04,1,0 +7973933,The Blue Room,42082221,Katherine,Manhattan,Washington Heights,40.83713,-73.94343,Private room,60,1,3,2016-07-20,0.07,1,0 +7974235,Spacious cozy apartment,42082780,Judith,Brooklyn,Flatbush,40.64689,-73.96048,Entire home/apt,99,2,85,2018-06-03,1.83,1,342 +7975360,Harlem Row House 2 BDRM Apt-City Col/Columbia Univ,12986426,Lovelynn,Manhattan,Harlem,40.82215,-73.95601,Entire home/apt,180,5,95,2019-07-04,2.09,1,60 +7979200,1 Bed Apt in ClintonHill Brownstone,12739246,Pete,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95669,Entire home/apt,95,5,11,2016-09-03,0.23,1,0 +7979237,New Guest Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.6796,-73.96948,Private room,60,1,197,2019-07-01,4.19,13,324 +7979433,Comfortable 1B in hot-spot Queens,37801911,Marissa,Queens,Astoria,40.75959,-73.92439,Entire home/apt,100,1,2,2015-09-21,0.04,1,0 +7980191,1 Bedroom Apt in Midtown Manhattan,27331181,Telitha,Manhattan,Murray Hill,40.74763,-73.9733,Entire home/apt,250,2,26,2017-01-02,0.58,1,0 +7981341,Couch for the Night,42125531,Michelle,Manhattan,Chelsea,40.75091,-73.99414,Shared room,200,1,0,,,1,0 +7982304,Brooklyn townhouse-2 floors..,27712561,Richard,Brooklyn,Gowanus,40.6834,-73.98549,Entire home/apt,150,3,0,,,1,0 +7982720,"Spacious One Bedroom in PreWar Building, Ft Greene",41112084,Aria,Brooklyn,Clinton Hill,40.68817,-73.96852,Entire home/apt,145,3,3,2018-05-29,0.06,1,0 +7983640,Great Loft Steps From All Williamsburg Hotels,13037911,Erica,Brooklyn,Williamsburg,40.72124,-73.95847,Entire home/apt,250,1,54,2019-05-19,1.15,1,365 +7984555,Your Spacious Home Away From Home!,43671,Anna,Brooklyn,Carroll Gardens,40.68502,-73.99306,Entire home/apt,150,2,8,2018-06-09,0.17,1,196 +7985333,"Chic, Modern 2 Bedroom in Bright, Airy High Rise",32218896,Nick,Manhattan,Chelsea,40.74904,-74.00164,Entire home/apt,400,3,15,2019-07-06,0.39,1,0 +7985537,Cozy Apartment in BKLYN near Prospect Park!,15311573,Alicia And Zach,Brooklyn,Prospect-Lefferts Gardens,40.65798,-73.95985,Private room,83,3,14,2017-01-02,0.31,1,0 +7986666,Spacious Studio Apt in Williamsburg,6491050,Zack,Brooklyn,Williamsburg,40.71939,-73.94356,Entire home/apt,150,13,8,2017-07-26,0.17,1,0 +7987209,Floor 35th in the heart of New York,42154621,Ricardo,Manhattan,Theater District,40.7566,-73.98329,Entire home/apt,1195,3,109,2019-06-02,2.37,1,264 +7987212,Large Private Bedroom in Williamsburg,30487854,Ben,Brooklyn,Williamsburg,40.71067,-73.96005,Private room,68,5,14,2019-07-03,0.30,2,10 +7987306,Huge room in a cool neighbourhood,34149113,Jeremy,Brooklyn,Bushwick,40.70227,-73.92362,Private room,50,2,0,,,1,0 +7987971,Comfy Room in Trendy Brooklyn!,4277896,Tzooli And Ay,Brooklyn,Clinton Hill,40.6917,-73.96508,Private room,70,2,173,2019-07-01,3.80,2,93 +7988259,Private room with your own backyard,5555793,Lindsay,Brooklyn,Gowanus,40.67705,-73.99607,Private room,65,1,3,2015-10-26,0.06,2,0 +7988385,"Cozy, simple, uncluttered.",42160853,Jessica,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93003,Private room,45,1,2,2015-08-28,0.04,1,0 +7988411,Heart of Greenwich Village!,276042,Kathleen,Manhattan,Greenwich Village,40.72913,-74.00074,Private room,75,1,32,2019-01-01,1.63,1,0 +7988491,"Cute, Peaceful - East Williamsburg",83834,Jill,Brooklyn,Williamsburg,40.71381,-73.93619,Entire home/apt,115,7,0,,,1,0 +7995078,A King Size Bed in private room in NYC!,38793847,Chad & David,Manhattan,Harlem,40.82291,-73.95172,Private room,65,2,80,2019-07-02,1.71,1,347 +7995140,Loft with garden - Williamsburg,3318161,Etienne,Brooklyn,Williamsburg,40.71212,-73.95888,Entire home/apt,170,3,36,2019-05-27,0.77,1,1 +7997433,30 Mins to Times Square -Javits Ctr! Awesome food!,42215969,Isaac,Queens,Woodside,40.74583,-73.90059,Entire home/apt,450,1,0,,,1,341 +7998385,Spectacular Manhattan Skyline View,975656,Jennifer,Brooklyn,Crown Heights,40.66783,-73.93042,Entire home/apt,100,5,11,2017-07-28,0.24,1,0 +7999409,Amazing Riverside Park Studio,9835167,Abby,Manhattan,Upper West Side,40.78129,-73.98572,Shared room,65,2,7,2015-10-22,0.15,2,0 +7999574,Beautiful 3bdrm Apt w/ 2 Entrances!,30529,Marianne,Brooklyn,Prospect Heights,40.67354,-73.96359,Entire home/apt,280,2,24,2019-04-18,0.52,2,151 +7999671,Cozy 1 bdrm with balcony,40536602,Rachel,Brooklyn,Midwood,40.62022,-73.95622,Entire home/apt,65,7,0,,,1,0 +8000640,1 bedroom APT with private garden,42233780,Nicole,Brooklyn,Clinton Hill,40.69485,-73.96254,Entire home/apt,150,2,9,2017-05-19,0.20,1,0 +8000716,luxury 1 bedroom apartment midtown Manhattan,3348610,Ronnie,Manhattan,Chelsea,40.75014,-73.99069,Entire home/apt,250,6,17,2019-06-16,0.37,1,0 +8001648,New 3BR~Prime Midtown~Design Loft,2119276,Host,Manhattan,Midtown,40.74947,-73.98257,Entire home/apt,250,90,3,2017-05-31,0.08,39,0 +8002080,Luxury suite.(private),42243297,Wilson,Brooklyn,Bensonhurst,40.61059,-74.00602,Entire home/apt,65,1,287,2019-07-06,7.31,1,308 +8005645,BEST DEAL – 1BR APT – 15 MIN from MANHATTAN!,11360525,James,Queens,Sunnyside,40.74667,-73.92361,Entire home/apt,130,5,4,2019-01-03,0.09,1,0 +8007908,Rare Find: Stylish West Village Townhouse,390117,Coco,Manhattan,West Village,40.73221,-74.00928,Entire home/apt,375,3,19,2019-02-19,0.46,2,0 +8009332,My cozy artistic Apartment,37849636,Maggie,Brooklyn,Sheepshead Bay,40.60991,-73.95677,Shared room,48,1,59,2019-07-05,1.26,1,90 +8009966,Sunny 1-bedroom in south Brooklyn,3491228,Courtney,Brooklyn,Sunset Park,40.6529,-74.00399,Entire home/apt,80,10,2,2017-12-07,0.04,1,0 +8010033,Upscale Apt blocks to Columbia Med./Presb. Hosp.,1883133,Christian,Manhattan,Washington Heights,40.84269,-73.93605,Entire home/apt,110,1,133,2019-06-28,2.85,1,267 +8011605,"Sunny, Clean, Safe, Zen!",42295490,C-S,Manhattan,Chinatown,40.71608,-73.99425,Private room,72,4,12,2019-05-11,0.25,2,0 +8012041,Bedroom by the River,16762482,Tessa Marie,Brooklyn,Greenpoint,40.73219,-73.95776,Private room,49,1,16,2016-01-14,0.34,1,0 +8012334,2 BR/2BA Near Lincoln Center/Central Park/Trains,21267483,Monica,Manhattan,Upper West Side,40.77569,-73.98028,Entire home/apt,250,1,3,2016-11-26,0.07,1,0 +8012976,Master Suite w/ Private Bath in Financial District,48165,Donna,Manhattan,Financial District,40.70726,-74.00593,Private room,120,2,128,2019-06-15,2.74,1,246 +8013358,Bedford-Stuyvesant 3 bedroom 2 bathroom duplex,8687068,Terrie,Brooklyn,Bedford-Stuyvesant,40.68318,-73.95002,Entire home/apt,240,1,33,2019-06-24,2.96,1,83 +8013498,Huge Studio! Prime Harlem! Clean!,42309351,Lyuba,Manhattan,Harlem,40.82987,-73.94625,Entire home/apt,77,15,2,2015-10-12,0.04,1,0 +8013780,Cute East Village Room for 1,24496111,Tessa,Manhattan,Gramercy,40.7331,-73.984,Private room,65,11,0,,,1,0 +8013947,ICONIC STUDIO MIDTOWN 5TH AVENUE!,29338009,Guilherme,Manhattan,Midtown,40.74921,-73.98445,Entire home/apt,185,7,17,2018-03-31,0.36,1,0 +8014087,Prime location Chelsea/Flatiron RM,38857566,Gabi,Manhattan,Chelsea,40.74042,-73.99714,Private room,100,1,2,2018-01-01,0.04,1,0 +8014298,BEST QUICK STAY CROWN HEIGHTS BKLYN,42315851,Matthew,Brooklyn,Crown Heights,40.66827,-73.93255,Private room,50,1,1,2015-09-06,0.02,1,0 +8014315,Cozy Victorian Hideaway in Bushwick,259826,Cass,Brooklyn,Bushwick,40.69312,-73.9236,Private room,50,1,1,2015-10-08,0.02,1,0 +8014773,"Cozy, peaceful, sunny, pristine- Prime Astoria",20413250,Sara,Queens,Astoria,40.76189,-73.9225,Private room,90,14,0,,,2,0 +8014811,1 bedroom/1 Bath/Balcony/Wash-Dryer,42320409,Timothy,Brooklyn,Williamsburg,40.7076,-73.94072,Entire home/apt,87,1,3,2015-10-24,0.07,1,0 +8015917,Room in Brownstone Apartment,12474780,Mike,Brooklyn,Park Slope,40.66948,-73.97797,Private room,30,1,6,2016-08-01,0.14,1,0 +8016681,Cozy private room up in the Heights,21787440,Yi-Chen,Manhattan,Washington Heights,40.84074,-73.93544,Private room,65,1,11,2016-04-23,0.24,2,0 +8016747,Modern Manhattan Oasis,1444040,Ethan,Manhattan,Lower East Side,40.72126,-73.98482,Entire home/apt,109,1,76,2016-09-29,1.65,1,0 +8017587,Lovely 1BR West Village Apartment,10779300,Marlow,Manhattan,West Village,40.7383,-74.00602,Entire home/apt,150,4,0,,,1,0 +8021914,Manhattan Studio with Huge Garden!,39921605,Rachel,Manhattan,Upper West Side,40.80189,-73.96962,Private room,152,1,39,2016-12-30,0.83,5,157 +8024051,Spacious 2BD near Prospect Park!,312080,Gwen,Brooklyn,Prospect Heights,40.67427,-73.96511,Entire home/apt,150,3,28,2019-05-15,0.60,1,168 +8025808,Mid-Century Modern Oasis in the LES,40082650,Momo,Manhattan,Chinatown,40.71555,-73.99298,Entire home/apt,300,3,30,2019-05-21,0.66,1,87 +8028767,"Clean, Comfy Bright Small Bedroom",20490026,Josie,Queens,Sunnyside,40.74109,-73.91577,Private room,55,90,15,2017-04-19,0.32,1,365 +8029217,MASSIVE UNION SQ LOFT - Labor Day,36640518,Michelle,Manhattan,Chelsea,40.737,-73.99576,Entire home/apt,500,1,0,,,1,0 +8030123,Private rm in Prime Boerum Hill 2BR,22221590,Danny,Brooklyn,Downtown Brooklyn,40.68973,-73.98563,Private room,70,10,1,2015-09-08,0.02,2,0 +8031617,"Big Private, Sunny, and Quiet Room",28185540,Ayse,Brooklyn,Williamsburg,40.7083,-73.95473,Private room,60,1,4,2016-05-28,0.10,1,0 +8032689,Charming Studio in Prospect Heights,2073942,Miriam,Brooklyn,Prospect Heights,40.67874,-73.96842,Entire home/apt,150,1,1,2015-09-24,0.02,1,0 +8033609,Studio Apartment with King Bed,33213436,Alec,Brooklyn,Gowanus,40.67872,-73.98286,Private room,119,1,171,2019-06-19,3.82,8,236 +8033860,Spacious 1 Bedroom Apartment,42418809,Mallory,Manhattan,Washington Heights,40.85563,-73.93509,Entire home/apt,74,1,3,2015-11-01,0.07,1,0 +8034514,Sunny & Spacious Apartment in LES,1346505,Jovan & Zaga,Manhattan,Lower East Side,40.72045,-73.99016,Entire home/apt,250,3,4,2016-02-13,0.09,1,0 +8034665,Cozy & Comfortable Bedroom,42237225,Orlando,Manhattan,Harlem,40.80083,-73.95584,Private room,250,1,22,2017-01-01,0.47,1,365 +8035074,Beautiful Brownstone near the Park,58546,Jason,Manhattan,Upper West Side,40.79791,-73.96951,Entire home/apt,130,3,4,2015-09-21,0.09,1,0 +8036524,Renting very clean bedroom,42436366,Sun,Manhattan,Murray Hill,40.7484,-73.97298,Private room,200,1,0,,,1,0 +8040050,Spacious Manhattan studio w patio!,39921605,Rachel,Manhattan,Upper West Side,40.80377,-73.96903,Private room,163,1,30,2017-01-04,0.64,5,188 +8042732,Beautiful One Bedroom Apartment,1229609,Glenn,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95218,Entire home/apt,125,3,2,2016-09-28,0.06,1,0 +8043824,Spacious Williamsburg apartment,183594,Hannah,Brooklyn,Williamsburg,40.71693,-73.94477,Entire home/apt,149,1,7,2016-08-15,0.15,1,0 +8044856,Williamsburg/Billburg/The Burg,42404417,Erin,Brooklyn,Williamsburg,40.71848,-73.95834,Entire home/apt,135,4,54,2019-06-22,1.17,1,158 +8045421,NYC Chelsea Luxury 1BR Apt,30283594,Kara,Manhattan,Chelsea,40.74465,-73.99253,Entire home/apt,129,30,3,2017-12-31,0.07,121,161 +8045552,"A Gem Studio Apartment +Astoria,NYC",42488595,Tony,Queens,Astoria,40.76762,-73.90727,Entire home/apt,87,3,151,2019-06-17,3.32,1,210 +8047711,"Clean, Modern, Minimal Bedroom",23027887,John,Brooklyn,Greenpoint,40.72569,-73.95179,Private room,55,4,2,2015-12-30,0.04,1,0 +8052046,Traveler's Bunk Beds in Brooklyn,21090508,Jarad,Brooklyn,Bushwick,40.69758,-73.93417,Shared room,54,5,73,2018-10-05,1.56,2,0 +8052159,"Great Studio- East Village, NYC",42524168,Peter,Manhattan,East Village,40.72351,-73.98288,Entire home/apt,110,4,6,2016-06-06,0.13,1,0 +8052243,Modern 1BR Apt in Williamsburg,16396888,Emily,Brooklyn,Williamsburg,40.71062,-73.95274,Entire home/apt,250,1,3,2015-09-25,0.06,1,0 +8052841,"Bright, spacious, midtown studio",39084892,Devon,Manhattan,Midtown,40.75512,-73.96826,Entire home/apt,150,4,15,2017-01-03,0.32,1,0 +8053024,Modern apt with exposed brick,3367355,Jane,Manhattan,Upper East Side,40.78451,-73.94939,Entire home/apt,150,1,0,,,1,0 +8053664,Bare Bones Backyard Bungalow,1112829,Erin,Brooklyn,Bushwick,40.70011,-73.92119,Private room,40,5,1,2015-09-18,0.02,1,0 +8054277,Modern Condo in Heart of Harlem,42535703,Fma,Manhattan,Harlem,40.80025,-73.95519,Entire home/apt,295,3,32,2017-05-09,0.70,2,0 +8054523,1BR in Prime spot Cozy Stylish Williamsburg Apt,965061,Roman,Brooklyn,Williamsburg,40.71278,-73.96471,Private room,130,3,7,2018-05-18,0.15,1,278 +8054651,Private Sunlight Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68929,-73.93079,Private room,79,1,296,2019-06-27,6.37,7,59 +8055508,Private Spring Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68917,-73.92901,Private room,69,1,291,2019-07-01,6.23,7,68 +8055582,Private Autumn Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69003,-73.93085,Private room,79,1,284,2019-06-09,6.09,7,67 +8055598,"SPACIOUS APT, A/C, WIFI, SUBWAY!",2799733,Vinny,Manhattan,Washington Heights,40.85296,-73.93527,Entire home/apt,147,7,27,2019-07-04,0.78,1,294 +8055721,Private Garden View in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69022,-73.93077,Private room,79,1,291,2019-06-29,6.26,7,26 +8055778,Classic Elegance in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93035,Private room,69,1,327,2019-07-02,7.07,7,41 +8055859,Private Bedroom and Bath in Spacious Duplex,14019268,Seth,Brooklyn,Bushwick,40.69702,-73.93167,Private room,70,2,67,2019-06-29,1.45,2,353 +8058693,Large Bedroom & Private Bath – 15 min fr Manhattan,4304095,Amelie & Pascal,Brooklyn,Clinton Hill,40.68352,-73.96348,Private room,119,4,115,2019-06-10,2.47,1,26 +8061409,Private Bedroom in Quiet Brooklyn Neighborhood,1100659,Joe,Brooklyn,Bushwick,40.7052,-73.91549,Private room,49,1,107,2019-06-09,3.04,1,340 +8063109,"True Bed-Stuy, Brooklyn, New York",42586851,Brigitte,Brooklyn,Bedford-Stuyvesant,40.69132,-73.93866,Entire home/apt,132,2,81,2017-07-27,1.94,1,10 +8063277,"Spacious 2 br in Williamsburg, BK",4671519,Sue,Brooklyn,Williamsburg,40.71549,-73.94712,Entire home/apt,155,31,8,2018-05-31,0.17,1,331 +8063565,Light-filled Brooklyn duplex loft,5072735,Rory,Brooklyn,Clinton Hill,40.6854,-73.96741,Entire home/apt,150,7,0,,,1,0 +8065272,Bright & quiet West Village studio,2928867,Irene,Manhattan,West Village,40.7354,-74.00861,Entire home/apt,179,2,10,2019-01-01,0.22,1,0 +8065705,Large Room Next to Central Park,42601948,Tyson,Manhattan,Upper West Side,40.80115,-73.96043,Private room,60,1,0,,,1,0 +8066385,Share A Rustic Forte Greene studio w/ adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68667,-73.9676,Entire home/apt,104,2,15,2019-05-19,0.39,2,100 +8067561,Private room with queen size bed.,19510122,Frank,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95798,Private room,40,2,9,2016-09-11,0.20,1,0 +8067738,Rm @Top Floor of a Luxury Building!,3958647,Yegor,Brooklyn,Bushwick,40.69955,-73.92225,Private room,90,3,0,,,1,0 +8068089,Cozy One Bedroom-Lower East Side,7890158,Matthew,Manhattan,Lower East Side,40.71373,-73.98465,Entire home/apt,80,3,16,2018-11-05,0.34,1,1 +8068363,Big Bedroom with Private Bathroom,1433657,Evy,Brooklyn,Williamsburg,40.7079,-73.95598,Private room,89,2,86,2019-06-27,1.90,2,307 +8069030,Clinton Hill Flat,42619297,John,Brooklyn,Clinton Hill,40.69242,-73.96828,Entire home/apt,999,2,141,2019-04-28,3.04,2,67 +8069316,Spacious Apt w/ Balcony in Bushwick,7363236,Scott,Brooklyn,Bushwick,40.69715,-73.92865,Entire home/apt,85,25,2,2015-11-01,0.04,1,0 +8069765,Brooklyn Jeff L Huge Room and yard!,42623155,Edward,Brooklyn,Bushwick,40.70343,-73.92538,Private room,75,10,1,2015-09-16,0.02,1,0 +8069858,Room avail in Bowery neighborhood,29896455,Josh,Manhattan,Chinatown,40.71743,-73.99372,Private room,59,6,72,2019-06-16,1.57,2,200 +8071607,Lovely duplex in Williamsburg,22470446,Louise,Brooklyn,Williamsburg,40.70803,-73.94868,Private room,45,3,2,2015-10-11,0.04,1,0 +8071687,Historic Townhouse Apartment,36481078,Timur,Manhattan,SoHo,40.72731,-74.00472,Entire home/apt,350,3,74,2019-07-05,1.60,1,247 +8072371,❤️ Beautiful Artistic 2 Level Brownstone ❤️LEGAL❤️,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.684,-73.93227,Entire home/apt,395,3,60,2019-06-03,1.29,3,17 +8072744,One floor kitchen and living room,40085749,Garvin,Brooklyn,East Flatbush,40.63774,-73.93714,Private room,200,1,0,,,1,0 +8075854,The Manhattan Studio,42660040,Henri,Manhattan,Midtown,40.75513,-73.96446,Entire home/apt,180,4,20,2019-07-02,1.46,1,13 +8077469,"Cozy room, great area, near train",42667448,Rachel,Brooklyn,Williamsburg,40.71982,-73.94409,Private room,46,7,2,2016-08-07,0.04,1,0 +8078896,Upscale Studio Apt in NYC'S Theatre District!,30283594,Kara,Manhattan,Theater District,40.76145,-73.98556,Entire home/apt,203,30,0,,,121,365 +8081037,Lavish Studio with Great Amenities in FiDi,30283594,Kara,Manhattan,Financial District,40.7055,-74.00812,Entire home/apt,189,30,4,2019-01-28,0.11,121,365 +8081193,2 bedroom Home..2 metro/train stops to NY City,14946082,Alexandra,Queens,Long Island City,40.75644,-73.93486,Entire home/apt,195,3,121,2019-07-02,2.59,1,66 +8082651,"Private room in bright, clean home!",42691960,Marie,Manhattan,Harlem,40.80557,-73.94618,Private room,39,4,14,2018-01-01,0.30,2,0 +8083295,UES Studio Crash Pad,9489975,Zac,Manhattan,Upper East Side,40.7795,-73.94778,Entire home/apt,57,7,0,,,1,0 +8083931,Private Bedroom In Refurbished Apt!,15585119,Ryan,Brooklyn,Bushwick,40.70111,-73.92935,Private room,65,1,1,2015-09-08,0.02,1,0 +8085420,*COMFORTABLE bedroom for FEMALE*,42700722,Yudu,Manhattan,East Harlem,40.79985,-73.93836,Shared room,35,120,0,,,1,0 +8086028,Nicely furnished one bedroom apt,42701501,Ersellia,Brooklyn,Greenpoint,40.72218,-73.93894,Entire home/apt,140,4,18,2019-07-04,0.39,1,30 +8087274,"HUGE Master Suite + Private bath, up to 4 Guests!",1903737,Natalie,Brooklyn,Bushwick,40.69542,-73.93258,Private room,65,2,5,2018-11-18,0.11,3,4 +8087725,Beautiful Upper East 1 Bedroom,12483260,Chris,Manhattan,Upper East Side,40.77343,-73.95651,Entire home/apt,118,1,1,2015-08-31,0.02,1,0 +8088779,[201] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.75989,-73.989,Shared room,250,1,134,2019-06-07,2.88,11,306 +8089062,Cozy bed in Midtown,18655157,Phuong,Manhattan,Midtown,40.74475,-73.98512,Shared room,55,5,32,2019-06-22,0.69,3,0 +8089270,Upper east side townhouse apt 2,42718751,Anita,Manhattan,Upper East Side,40.76511,-73.96555,Entire home/apt,155,30,9,2018-12-01,0.20,1,316 +8090529,"Modern studio in Queens, NY",17377835,Alex,Queens,Sunnyside,40.74674,-73.91881,Entire home/apt,250,3,0,,,1,364 +8097567,Giant Sunny Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67811,-73.97126,Private room,85,1,222,2019-06-27,4.98,13,290 +8100914,Beautiful Apt on the UpperWest,20739852,Jenn,Manhattan,Upper West Side,40.79494,-73.97221,Entire home/apt,168,1,2,2016-01-06,0.04,1,0 +8101258,Cozy Studio Apartment,39156453,Yessenia,Brooklyn,South Slope,40.66594,-73.98814,Entire home/apt,110,2,10,2016-06-19,0.22,1,0 +8101762,Spacious & sunny 1 bdrm w views,16420179,Natasha,Brooklyn,Columbia St,40.68274,-74.00433,Entire home/apt,125,2,2,2015-09-28,0.04,1,0 +8101848,"Charming, Exposed Brick 1 Bedroom",5489956,Megan,Brooklyn,Fort Greene,40.68886,-73.97687,Entire home/apt,125,3,3,2015-12-01,0.06,1,0 +8102145,Charming UWS Private Room,26163238,Nadalie,Manhattan,Upper West Side,40.78856,-73.97368,Private room,115,1,1,2017-06-04,0.04,1,0 +8103766,Charming duplex downtown manhattan,42788707,Filippo,Manhattan,Chinatown,40.71475,-73.99257,Entire home/apt,130,180,15,2016-10-24,0.35,1,365 +8104879,Here comes the sun!,1831760,Vishnu,Brooklyn,Gowanus,40.68334,-73.9847,Private room,64,7,1,2015-10-03,0.02,1,0 +8105749,Beautiful 1 bedroom in city center,23613165,Gia,Manhattan,Midtown,40.75932,-73.96396,Entire home/apt,140,2,2,2016-01-07,0.04,1,0 +8106774,BRIGHT HARLEM FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81525,-73.94552,Entire home/apt,165,7,86,2019-06-28,1.84,3,99 +8106902,Cosy clean modern apartment,202211,Pon,Manhattan,Gramercy,40.73284,-73.98511,Entire home/apt,160,2,1,2015-09-13,0.02,1,0 +8107212,Large Private Room in Williamsburg,19668001,Marie,Brooklyn,Williamsburg,40.71061,-73.94971,Private room,70,1,40,2018-10-01,0.87,1,125 +8108376,"home, sweet home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74267,-73.78737,Entire home/apt,100,1,59,2019-06-09,1.58,3,132 +8110973,Spacious 1 bedroom in East Village,2035326,Katie,Manhattan,East Village,40.72873,-73.98399,Entire home/apt,225,2,2,2015-09-27,0.04,1,0 +8111321,Huge 1 BR entire apt,32441059,Cory,Queens,Astoria,40.768,-73.92429,Entire home/apt,70,2,13,2019-01-11,0.28,1,159 +8113156,Room in heart of Williamsburg,23075765,Amandine,Brooklyn,Williamsburg,40.7151,-73.96037,Private room,60,1,2,2015-11-29,0.04,1,0 +8114144,Sunny Duplex in Heart of Bushwick,9659956,Alexandra,Brooklyn,Bushwick,40.7027,-73.92811,Entire home/apt,120,1,2,2015-10-26,0.04,1,0 +8114639,Cozy Private Bedroom in heart of Williamsburg,19058116,Sarah,Brooklyn,Williamsburg,40.7105,-73.94693,Private room,50,1,3,2016-07-29,0.08,1,0 +8115321,Private Room close to subway (1/3),40874834,Esteban,Queens,Jackson Heights,40.75526,-73.86468,Private room,75,1,114,2019-06-17,2.45,3,328 +8115423,Private Room close to subway (2/3),40874834,Esteban,Queens,Jackson Heights,40.75548,-73.86632,Private room,75,1,102,2019-06-23,2.21,3,362 +8117209,Location Dali ( rail road room ) only girls.,3250450,Petya,Queens,Long Island City,40.75547,-73.91867,Private room,37,15,12,2019-06-12,0.26,18,361 +8117213,Luxury Highline living West Chelsea Hudson Yards,722831,Jennifer,Manhattan,Chelsea,40.75165,-74.00074,Entire home/apt,225,29,9,2018-12-30,0.24,1,280 +8117729,Comfy Quiet Modern E Village Studio,1106804,Ari,Manhattan,East Village,40.7281,-73.98106,Entire home/apt,250,31,2,2015-11-26,0.04,1,358 +8118112,Bed-Stuy Brooklyn Garden Apartment,22261783,Gregory,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93961,Entire home/apt,125,3,92,2019-06-19,1.97,2,121 +8118692,Charming Studio by Bryant Park,37670256,Elaine,Manhattan,Midtown,40.75245,-73.98442,Entire home/apt,170,1,3,2016-04-20,0.07,1,0 +8119018,Private Room In Upper East Side,42874738,Dogan,Manhattan,Upper East Side,40.77887,-73.95406,Private room,110,4,81,2019-05-27,1.75,1,360 +8123857,New / Priv Deck / Cntrl Park (UES),10606799,Craig,Manhattan,Upper East Side,40.76777,-73.96393,Entire home/apt,299,7,0,,,1,0 +8125640,Amazing Water View from Midtown Apt,8301365,Jacob,Manhattan,Murray Hill,40.74553,-73.97302,Private room,100,6,5,2019-05-21,0.14,1,25 +8126091,Spacious Quiet Room,42911814,Chris,Brooklyn,Williamsburg,40.70788,-73.9426,Private room,50,10,3,2019-04-17,0.09,1,0 +8126282,Quintessential West Village apartment,3228421,Ilton,Manhattan,West Village,40.73319,-74.00502,Entire home/apt,205,3,47,2019-06-23,1.01,1,262 +8126631,Cozy room harlem,16746108,April,Manhattan,Harlem,40.81993,-73.94704,Private room,45,2,0,,,1,0 +8126777,Sunlit Oasis in WILLIAMSBURG BK (2 Bedrooms),41059169,Alex,Brooklyn,Williamsburg,40.7124,-73.96314,Entire home/apt,90,3,17,2019-07-01,0.36,3,77 +8130534,Lovely BR w/Access to Everything!,3692257,Tasia,Brooklyn,Kensington,40.64423,-73.98019,Private room,49,1,1,2015-11-05,0.02,2,0 +8130551,Clean and Spacious Room on the UWS,13164593,Majd,Manhattan,Upper West Side,40.80266,-73.96465,Private room,88,1,0,,,1,0 +8131285,Modern one bed in Alphabet City,17478311,Stephen,Manhattan,East Village,40.72573,-73.97926,Entire home/apt,129,3,5,2018-06-28,0.11,1,0 +8131995,Studio with Million Dollar Views,42942193,John,Manhattan,Kips Bay,40.73845,-73.9795,Entire home/apt,165,3,2,2017-09-22,0.04,1,0 +8132082,Lovely 1br in Heart of Brooklyn,4983838,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68499,-73.93918,Entire home/apt,103,7,14,2019-01-01,0.31,1,13 +8133275,Victorian House near Brooklyn College,33519200,George,Brooklyn,East Flatbush,40.63939,-73.94988,Entire home/apt,97,2,100,2019-06-30,2.15,1,307 +8133707,Best Private Room in Times Sq!,42951928,Prashanth,Manhattan,Theater District,40.76205,-73.9845,Private room,49,1,8,2017-08-21,0.18,1,0 +8135144,Time Square! 2 Fully Furnished apt!,42959506,Vapee,Manhattan,Hell's Kitchen,40.76127,-73.99181,Entire home/apt,245,4,55,2019-06-21,1.29,1,261 +8135887,Private Room in Modern Apartment,27362570,Autumn,Queens,Ridgewood,40.70136,-73.89608,Private room,52,1,4,2015-10-24,0.09,1,0 +8139311,Modern Beauty in Brooklyn!,7849109,Victoria,Brooklyn,Bedford-Stuyvesant,40.68041,-73.92972,Entire home/apt,280,1,1,2015-10-12,0.02,1,0 +8141256,Beautiful Riverside Park Apartment,9835167,Abby,Manhattan,Upper West Side,40.78143,-73.98638,Entire home/apt,120,3,0,,,2,0 +8141967,Bel appartement meublé de 75m2,33747092,Tom,Brooklyn,Bedford-Stuyvesant,40.6795,-73.90899,Private room,30,7,0,,,1,0 +8142536,Perfect Luxury Space in NYC!,42991737,Kent,Manhattan,Financial District,40.70517,-74.01142,Entire home/apt,350,3,0,,,1,0 +8143588,2 bedroom private apt - boerum hill,22221590,Danny,Brooklyn,Downtown Brooklyn,40.68967,-73.98664,Entire home/apt,150,3,0,,,2,0 +8144049,Sunny Room In Historic Central Harlem,2126994,Andres,Manhattan,Harlem,40.80679,-73.94408,Private room,62,3,5,2018-06-01,0.11,1,0 +8144798,Lovely East Village Apartment,18223173,Kelly,Manhattan,East Village,40.72777,-73.98545,Entire home/apt,195,1,0,,,1,0 +8145339,Chelsea 2-Bedroom Doorman Apt NEW,24430182,Carole,Manhattan,Chelsea,40.74318,-73.9982,Entire home/apt,129,1,6,2016-11-27,0.13,1,0 +8145441,Roomy Brooklyn Brownstone,7950356,Liz,Brooklyn,Park Slope,40.66766,-73.98257,Entire home/apt,175,2,10,2016-09-14,0.25,1,0 +8145603,"Spacious, Beautiful, Private Room",43007744,Ardis,Queens,Ditmars Steinway,40.77433,-73.91734,Private room,80,4,32,2019-06-21,0.72,1,303 +8146444,Sunny 1 bedroom in Brooklyn!,12796091,Rebeckah,Brooklyn,Crown Heights,40.67658,-73.95786,Entire home/apt,90,3,14,2017-01-02,0.30,1,0 +8146609,Large room in Williamsburg,8860559,James,Brooklyn,Williamsburg,40.70939,-73.95155,Private room,77,4,1,2015-09-13,0.02,1,0 +8151183,"Light, Bright and Cozy!",5983145,Benjamin,Brooklyn,Bushwick,40.69867,-73.91134,Entire home/apt,120,30,51,2018-10-27,1.28,1,202 +8151536,Sunny Room in Williamsburg Brooklyn,24982391,Maythem,Brooklyn,Williamsburg,40.71248,-73.96379,Private room,90,1,5,2015-10-19,0.11,1,0 +8151605,Amazing 2BR in Bed-Stuy,1740952,Kaila,Brooklyn,Bedford-Stuyvesant,40.68355,-73.94129,Entire home/apt,180,2,1,2015-09-26,0.02,1,0 +8151782,Prospect Park Cozy Abode,43034440,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.96177,Entire home/apt,100,30,43,2019-06-12,0.94,1,43 +8151925,Modern Studio in Cultural LES,43038322,Autumn,Manhattan,Lower East Side,40.71826,-73.99199,Entire home/apt,159,3,170,2019-06-24,3.64,1,37 +8152675,CLEAN & COZY 2 bedroom apartment,34920172,Angela,Manhattan,East Village,40.72995,-73.98135,Entire home/apt,200,1,101,2019-06-24,2.19,1,247 +8152985,Private BR in 3 BR Apt,10134825,Kara,Manhattan,Lower East Side,40.7146,-73.98423,Private room,89,3,5,2016-01-02,0.11,4,0 +8153005,Sunny 2 BR apartment in E Village,19966390,John,Manhattan,East Village,40.72845,-73.97989,Entire home/apt,200,2,3,2015-10-12,0.06,1,0 +8153235,Large room in central SOHO,28888685,Shakeh,Manhattan,SoHo,40.72528,-74.00223,Private room,72,2,5,2016-09-30,0.11,1,0 +8153240,Cozy 3 Bedroom Apartment - LES,10134825,Kara,Manhattan,Lower East Side,40.71358,-73.98456,Entire home/apt,250,3,0,,,4,0 +8155028,"Battery Park Monthly rental, great location.",43052750,Pat,Manhattan,Battery Park City,40.70956,-74.01605,Entire home/apt,165,30,6,2019-04-26,0.13,1,43 +8160542,Private Balcony and views of WTC!,43075550,Leyla,Manhattan,Tribeca,40.72018,-74.00981,Private room,100,1,18,2019-06-22,0.38,1,31 +8161540,Artist's Room in Bushwick,11315661,Angel,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92198,Private room,90,1,0,,,1,0 +8162214,"Large Room, Full Bed, Trendy LES",41087164,Jordan,Manhattan,Lower East Side,40.71349,-73.98473,Private room,90,10,8,2016-03-04,0.17,1,0 +8162587,Studio in Midtown East (1 q+couch),43082153,Ema,Manhattan,Midtown,40.75249,-73.96866,Entire home/apt,120,4,3,2016-07-10,0.06,1,0 +8162607,Brownstone Apt near Central Park,22372311,Alyshia,Manhattan,Upper West Side,40.79877,-73.96259,Entire home/apt,185,3,200,2019-07-02,4.31,1,6 +8163660,Lower East Side Garden Apartment,6816235,Maggie,Manhattan,Lower East Side,40.71977,-73.98176,Private room,100,1,0,,,1,0 +8164253,Huge Studio -East Vill/Alphbet City,43091823,Elizabeth,Manhattan,East Village,40.72362,-73.98519,Entire home/apt,120,5,0,,,1,0 +8164402,"Luxury, Cozy 1BD, walk to CentrPark",43092626,Jennifer,Manhattan,Upper East Side,40.78338,-73.95008,Entire home/apt,159,1,126,2019-06-25,2.70,1,338 +8164877,Private Room 1 Stop From Manhattan,9862206,Devon,Brooklyn,Williamsburg,40.71697,-73.95919,Private room,70,1,19,2016-07-01,0.41,1,0 +8165315,1BR in Spacious 3Bed/3ba w/backyard,19990876,Sharan,Brooklyn,Bedford-Stuyvesant,40.68389,-73.95557,Private room,80,3,4,2016-06-23,0.09,1,0 +8166218,Spacious Parisian style apartment,2881763,Miguel,Manhattan,Chelsea,40.73921,-73.99717,Entire home/apt,220,2,3,2016-11-18,0.06,1,0 +8166737,1 bedroom Prospect-Lefferts Gardens,6101617,Joe,Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96131,Entire home/apt,89,4,3,2016-05-30,0.07,1,0 +8167145,Cherry Blossom Apartment,1510638,Alessandro,Queens,Astoria,40.75535,-73.91397,Entire home/apt,135,7,2,2015-10-02,0.04,1,157 +8167182,Central Park North 1 Bedroom Apt,19982835,Maria,Manhattan,Harlem,40.79965,-73.95446,Entire home/apt,150,2,13,2019-06-16,0.28,1,362 +8167884,Greenpoint Brooklyn Modern Charm,43108922,Robbin,Brooklyn,Greenpoint,40.72176,-73.94393,Entire home/apt,165,2,129,2019-06-06,2.80,2,235 +8168619,Steps away from Laguardia airport,37312959,Maya,Queens,East Elmhurst,40.77006,-73.87683,Private room,46,1,543,2019-07-01,11.59,5,163 +8170072,179st Hub Room with balcony,20912691,Jeff,Queens,Jamaica,40.71036,-73.78261,Private room,50,2,24,2019-05-31,0.95,7,0 +8170276,Beautiful 2BR Apt in UES NYC,43119699,Shea,Manhattan,Upper East Side,40.78222,-73.94791,Entire home/apt,100,1,1,2015-09-09,0.02,1,0 +8170917,HK SWEET SPOT,41466973,Christopher,Manhattan,Hell's Kitchen,40.75849,-73.9907,Entire home/apt,200,2,1,2015-09-22,0.02,1,161 +8171965,Astoria Room Facing the Park,40336543,Simon,Queens,Long Island City,40.76211,-73.92894,Private room,100,1,1,2015-09-02,0.02,2,364 +8172864,Your Convenient Sanctuary 1br apt.,3692257,Tasia,Brooklyn,Kensington,40.64277,-73.97947,Entire home/apt,81,1,1,2015-09-06,0.02,2,0 +8172995,Open Plan & Garden Brownstone Apt,43134580,Danielle,Manhattan,East Harlem,40.80965,-73.93912,Entire home/apt,150,4,111,2019-06-10,2.44,1,99 +8173226,Small cosy room in Lower East Side,12485696,Julien,Manhattan,Chinatown,40.71343,-73.99532,Private room,60,2,3,2015-10-19,0.07,1,0 +8173232,Bright studio on Upper East Side!,14196588,Julia,Manhattan,Upper East Side,40.77914,-73.94965,Entire home/apt,180,14,0,,,1,0 +8173434,LOFT2bdrm apt near metro20min to Manhattan/wall st,38378985,Rebekah,Brooklyn,Bedford-Stuyvesant,40.67797,-73.93967,Entire home/apt,239,5,147,2019-06-18,3.19,1,142 +8173559,Bright Private Room with Big Closet,24982697,Fidelia,Brooklyn,Sunset Park,40.64355,-74.01908,Private room,70,7,13,2019-05-04,0.28,2,326 +8173563,Cosy double bedroom in Brooklyn #1,27990825,Sophie,Brooklyn,Bushwick,40.70128,-73.92666,Private room,45,2,7,2016-01-02,0.15,2,0 +8173609,Cozy Apartment Next To Central Park,43137812,Lenny,Manhattan,Harlem,40.80089,-73.95674,Entire home/apt,200,2,113,2019-06-21,2.46,1,197 +8174397,Roosevelt Island-great location,9511935,Jocelyn,Manhattan,Roosevelt Island,40.76641,-73.94561,Shared room,45,1,1,2015-09-13,0.02,1,0 +8174635,Modern Brooklyn Apartment,20538121,Michelle,Brooklyn,Bedford-Stuyvesant,40.68372,-73.95551,Entire home/apt,45,2,7,2019-06-22,0.15,1,14 +8182759,Original Old Skool 2 Bedroom Brooklyn LOFT,3538661,Phillip,Brooklyn,Williamsburg,40.71519,-73.96174,Entire home/apt,400,4,0,,,2,170 +8183112,Bright Home in Heart of Brooklyn,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.6683,-73.94977,Entire home/apt,110,1,5,2017-02-14,0.12,3,0 +8183217,Spacious Room in Heart of Brooklyn,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.6682,-73.94927,Private room,65,14,0,,,3,0 +8183563,"Quiet, Clean, Beautiful East Village Loft",10963050,Dave,Manhattan,East Village,40.73178,-73.98842,Entire home/apt,250,2,48,2019-06-22,1.07,1,211 +8184502,Private Room in Luxury Building,43175172,Keith,Manhattan,Financial District,40.7066,-74.00396,Private room,120,1,2,2015-09-27,0.04,1,0 +8185845,1-Bedroom Upper East Side Apartment!,30283594,Kara,Manhattan,Upper East Side,40.76391,-73.95938,Entire home/apt,249,30,2,2018-07-28,0.10,121,273 +8186068,Bright&Beautiful BR in Williamsburg,2182167,Mez,Brooklyn,Williamsburg,40.71288,-73.94137,Private room,80,2,2,2015-09-23,0.04,1,0 +8186181,AMAZING LOCATION Large Studio Centrally Located,56350,Steven,Manhattan,Midtown,40.75463,-73.97445,Entire home/apt,124,2,14,2018-06-28,0.42,1,0 +8186924,Airy 1500 sq ft Exposed Brick Apt,22751337,Philip,Brooklyn,Fort Greene,40.69262,-73.97245,Entire home/apt,175,3,2,2016-05-01,0.04,1,0 +8187719,Location au coeur de Brooklyn!,6898461,Marie,Brooklyn,Bushwick,40.70511,-73.91755,Private room,45,1,0,,,1,0 +8189063,Cute Room in Williamsburg Apartment,3663218,John Conor,Brooklyn,Williamsburg,40.71321,-73.94099,Private room,60,1,0,,,2,0 +8189121,Sunny & Spacious in Carroll Gardens,333195,Anne,Brooklyn,Carroll Gardens,40.68326,-73.99327,Entire home/apt,115,3,27,2018-09-03,0.58,1,166 +8190219,Huge apartment on tree-lined street,1597935,Elyse,Brooklyn,Prospect Heights,40.67697,-73.97069,Entire home/apt,99,7,11,2018-04-13,0.24,1,0 +8190747,cozy apartment,43203249,Gina,Queens,Woodside,40.74715,-73.91104,Private room,75,7,1,2017-03-19,0.04,1,364 +8191699,Studio near Central Park.,13184549,Mila,Manhattan,Upper East Side,40.77569,-73.95202,Entire home/apt,140,7,3,2016-08-14,0.06,1,0 +8192079,Spacious room in shared apartment!,31804977,Laura,Manhattan,Harlem,40.82488,-73.94472,Private room,75,4,0,,,1,0 +8192443,- J - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71596,-73.96215,Private room,60,2,106,2019-06-23,2.29,8,104 +8192532,Room in Woodside,13871584,Pj,Queens,Woodside,40.74693,-73.90146,Private room,132,1,0,,,1,0 +8192768,Pleasant room on garden floor,2808153,Basil And Jacqueline,Manhattan,Harlem,40.80577,-73.94708,Private room,120,2,11,2017-06-22,0.25,2,263 +8192789,Spacious Private Parlor Suite in Heart of Harlem,2808153,Basil And Jacqueline,Manhattan,Harlem,40.80565,-73.94621,Entire home/apt,150,2,13,2019-06-08,0.42,2,271 +8193127,Spacious TriBeCa 3BR w/ Balcony,28421010,Roberto,Manhattan,Tribeca,40.72095,-74.00918,Entire home/apt,500,3,0,,,1,0 +8193608,Top location Heart of Manhattan!,10473601,Fabiana,Manhattan,Upper East Side,40.7734,-73.95832,Entire home/apt,150,5,11,2016-06-09,0.24,1,0 +8194369,Cute room in huge artist loft!,13076168,Jaimie,Brooklyn,Bedford-Stuyvesant,40.67889,-73.9481,Private room,49,14,9,2018-10-02,0.20,1,0 +8194497,Charming Fort Greene park studio!,7430851,Aaron,Brooklyn,Fort Greene,40.68791,-73.97438,Entire home/apt,110,2,2,2015-09-18,0.04,1,0 +8195335,Cozy room in renovated Harlem apt,43226806,Jacqueline,Manhattan,Harlem,40.80214,-73.95325,Private room,65,6,1,2017-01-31,0.03,1,0 +8195719,Luxury Apartment in Williamsburg Br,24128401,Yonatan,Brooklyn,Williamsburg,40.71387,-73.95697,Entire home/apt,190,13,1,2015-10-11,0.02,1,0 +8202455,Beautiful Upper West Side Studio,43257501,Tara,Manhattan,Upper West Side,40.77795,-73.9825,Entire home/apt,125,2,1,2015-09-06,0.02,1,0 +8204305,Gorgeous Penthouse next to Central Park,32791632,Pratik,Manhattan,Upper West Side,40.77354,-73.98462,Private room,92,2,21,2019-06-14,0.46,1,39 +8204392,"Entire House in East Williamsburg, Brooklyn!",11268108,Meredith,Brooklyn,Williamsburg,40.71468,-73.93774,Entire home/apt,100,2,0,,,1,3 +8205572,Cool Chill Space In a 5BR 2.5 bath,10387090,Luis Enrique,Brooklyn,Bushwick,40.68358,-73.90884,Private room,36,20,0,,,5,346 +8206060,2 bed duplex with private garden!,3039478,Leela,Brooklyn,Bedford-Stuyvesant,40.69352,-73.94376,Entire home/apt,325,5,9,2019-06-29,0.21,1,0 +8207003,Comfy East Village Studio,4307662,Umar,Manhattan,East Village,40.72555,-73.97713,Entire home/apt,120,4,3,2015-12-28,0.07,1,0 +8207453,Quiet Relaxed Room in Williamsburg,1194064,Alexandra,Brooklyn,Williamsburg,40.70788,-73.95106,Private room,60,5,1,2015-12-16,0.02,1,0 +8207764,Beautiful & Cozy One Bedroom Apt,9911159,Vicky,Manhattan,East Harlem,40.79505,-73.93925,Entire home/apt,175,3,24,2017-01-02,0.52,1,0 +8208090,Modern private apartment in historic brownstone,43282186,Damien,Brooklyn,Bushwick,40.68989,-73.92128,Entire home/apt,200,2,147,2019-06-18,3.24,1,103 +8208285,Cute East Village 2 Bedroom Apt.,22572797,Amy,Manhattan,East Village,40.72504,-73.97905,Entire home/apt,180,1,146,2019-06-19,3.14,1,270 +8208317,Apartment share with stunning sunset views,17686601,Lauren,Manhattan,Theater District,40.76365,-73.98484,Private room,155,1,0,,,1,0 +8208997,Comfy home in heart of Williamsburg,43286973,Ivory,Brooklyn,Williamsburg,40.71887,-73.96069,Entire home/apt,120,1,0,,,1,0 +8210379,Comfy garden level room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.678,-73.97118,Private room,60,1,186,2019-07-06,3.99,13,293 +8210423,Chelsea Charm: shared apartment,19477617,Essam,Manhattan,Chelsea,40.74513,-74.00076,Private room,95,3,100,2019-06-26,2.16,1,80 +8210686,Beautiful Room in Greenpoint Loft,4998154,Minka,Brooklyn,Greenpoint,40.73266,-73.95841,Private room,80,3,0,,,1,0 +8210840,Penthouse Dream in Brooklyn,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68498,-73.93192,Entire home/apt,230,2,203,2019-06-27,4.55,4,283 +8211314,Cosy double bedroom in Brooklyn #2,27990825,Sophie,Brooklyn,Bushwick,40.70015,-73.92693,Private room,45,2,1,2015-10-26,0.02,2,0 +8211513,"Cozy Room, In Quiet Neighborhood",43299973,Alex,Queens,Ridgewood,40.70468,-73.90553,Private room,40,2,1,2015-10-13,0.02,1,0 +8212051,Monty,43302952,Monty,Brooklyn,East Flatbush,40.66383,-73.92706,Shared room,95,2,7,2015-10-30,0.15,1,238 +8213015,Crown Heights Stunner,13563861,Mandi,Brooklyn,Crown Heights,40.67211,-73.94947,Entire home/apt,200,2,0,,,1,0 +8213227,-CENTRAL PARK - 3 stops by subway(32'' TV room),43298076,Gordon M,Manhattan,Harlem,40.8224,-73.95402,Private room,42,2,34,2019-05-01,0.73,4,101 +8213488,Bed-Stuy Gem with Private Entrance,28025816,Bridgett,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95103,Private room,70,2,255,2019-06-27,5.46,1,11 +8217454,The Notorious B.N.B. {Custom},1177497,Jessica,Brooklyn,Clinton Hill,40.68971,-73.96695,Private room,199,1,20,2019-01-03,0.45,11,365 +8219648,Beautiful Apartment in Manhattan NYC,7806471,Chester,Manhattan,Washington Heights,40.84111,-73.93698,Private room,65,3,157,2019-07-05,3.40,1,287 +8221965,Artist's Loft in Garment District,42849963,Anne,Manhattan,Hell's Kitchen,40.75383,-73.99536,Entire home/apt,190,30,4,2018-08-03,0.09,1,9 +8222742,Lovely nest in Greenwich Village,22529847,Sam And Roxanna,Manhattan,Greenwich Village,40.72853,-73.99914,Entire home/apt,200,2,146,2019-06-20,3.13,1,264 +8222951,Artsy Studio near The Brooklyn Museum,19379151,David,Brooklyn,Crown Heights,40.6766,-73.95987,Entire home/apt,75,3,21,2019-04-08,1.06,1,0 +8223230,Bright and Cozy Room Williamsburg,43361668,Lia,Brooklyn,Greenpoint,40.71923,-73.95204,Private room,98,1,31,2019-06-21,0.67,1,343 +8224368,Bushwick Brooklyn Morgantown Oasis,4591602,Alec & Laura,Brooklyn,Bushwick,40.7043,-73.92719,Private room,120,2,78,2019-06-03,1.79,1,206 +8225035,International Meeting Place_Room 4,43371802,Sinaly,Brooklyn,Flatlands,40.62802,-73.92729,Private room,130,4,9,2019-05-27,0.20,5,365 +8225210,Doorman Harlem Apt with Great Views,43370599,John,Manhattan,Harlem,40.81243,-73.9392,Entire home/apt,250,1,0,,,1,89 +8225997,Bright 1BD in happening E Village,11004198,Caroline,Manhattan,East Village,40.72057,-73.97997,Entire home/apt,125,31,2,2016-04-01,0.04,1,204 +8226137,1-Bedroom Apartment in Heart of UWS,37440683,Ben,Manhattan,Upper West Side,40.77832,-73.98069,Entire home/apt,225,2,0,,,1,0 +8226346,"Cozy, light, private room",41962603,Dmitry,Brooklyn,Bushwick,40.6972,-73.92697,Private room,96,3,0,,,1,0 +8228217,Bold and bodacious in the fall,43390488,Valvil,Brooklyn,Flatbush,40.64438,-73.95408,Private room,55,5,4,2018-09-10,0.09,1,89 +8231648,1st Fl Comfortable Room in Manhatan,43330303,Cristian,Manhattan,Washington Heights,40.85369,-73.93187,Private room,68,3,8,2019-06-17,0.20,2,160 +8234295,"Sunny, spacious, bedroom for rent",481603,Lindsey,Brooklyn,Bushwick,40.69017,-73.91291,Private room,45,15,0,,,1,0 +8234510,"Beautiful Astoria Apt 1BR, 2bath",7853503,Lindsay,Queens,Astoria,40.7713,-73.92628,Entire home/apt,140,1,2,2016-01-02,0.05,1,0 +8234740,Nice Studio in Hell's kitchen,37440412,Rebecca,Manhattan,Hell's Kitchen,40.76016,-73.98929,Entire home/apt,160,4,5,2016-06-12,0.11,1,0 +8235820,Brand new Williamsburg apt!,13716326,Oran,Brooklyn,Williamsburg,40.70828,-73.95246,Private room,77,7,1,2015-09-18,0.02,1,0 +8236539,"Quiet room in Greenpoint, Brooklyn",43434198,Dee,Brooklyn,Greenpoint,40.72784,-73.94937,Private room,90,1,1,2015-09-21,0.02,1,0 +8236660,Large & Cozy Manhattan LES 2BR Apt,8332684,Mostafa,Manhattan,Lower East Side,40.71868,-73.99036,Entire home/apt,208,13,1,2015-09-28,0.02,1,0 +8237244,Charming Studio + Private Balcony,38363621,Michael,Manhattan,East Village,40.72765,-73.98634,Entire home/apt,215,3,72,2019-03-23,1.56,1,0 +8238934,I bedroom w/ private bathroom,43446271,Crystal & Allan,Manhattan,Harlem,40.80204,-73.95794,Private room,100,2,21,2019-06-21,0.45,1,79 +8239111,"Sunlit, Spacious & Near train",36192346,Robert,Manhattan,Washington Heights,40.85415,-73.93108,Private room,40,2,9,2016-01-16,0.20,1,0 +8239352,Private Room 12x12 close to manhattan,43449898,Ashley,Queens,Maspeth,40.72194,-73.91138,Private room,59,1,85,2019-06-30,1.85,1,176 +8239650,"Waterfront, perfect NYC getaway!",13407785,Frank And Anna,Bronx,Throgs Neck,40.81476,-73.80001,Entire home/apt,325,2,44,2019-07-02,2.23,1,153 +8240016,Large Brooklyn Apt Artsy & Centric,36791609,Paul,Brooklyn,Bushwick,40.69836,-73.93521,Entire home/apt,98,1,201,2019-06-24,4.37,1,293 +8241378,West Village: the best part of town,43461780,Andrew,Manhattan,West Village,40.73618,-74.00201,Private room,109,1,0,,,1,0 +8241545,Spacious Sunny Rm in Stylish Duplex,21628945,Keith,Brooklyn,Bedford-Stuyvesant,40.68167,-73.92525,Private room,69,3,13,2017-08-14,0.28,2,333 +8241894,1 large bedroom 10mins to Manhattan,6865699,Yuxi,Queens,Long Island City,40.75363,-73.93463,Private room,80,3,1,2015-09-14,0.02,1,0 +8247721,Charming Crown Heights Brownstone,43494916,Tilly,Brooklyn,Crown Heights,40.67791,-73.95337,Entire home/apt,80,3,0,,,2,0 +8249156,Room #3 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Brownsville,40.67065,-73.91643,Private room,39,1,45,2019-05-21,0.97,10,158 +8250280,Zee's Brooklyn nest,9775058,Nazifa,Brooklyn,Kensington,40.64125,-73.9763,Private room,70,2,7,2019-07-03,2.63,1,37 +8250457,"Heart of W. Village 1-BR, Renovated",43509184,Catrina,Manhattan,West Village,40.73418,-74.0046,Entire home/apt,194,3,117,2018-01-11,2.58,1,0 +8250925,NYC Lofted Room in the Lower East Side,7455706,Amanda,Manhattan,East Village,40.72255,-73.97813,Private room,90,5,92,2019-06-07,2.01,2,8 +8251228,Private Bedroom Near Manhattan NYC,22384027,Shahana,Brooklyn,Crown Heights,40.67115,-73.91621,Private room,39,1,70,2019-06-21,1.51,10,33 +8252369,Cute Sunny Loft Space Williamsburg,10276104,Alice,Brooklyn,Williamsburg,40.71219,-73.95623,Private room,85,2,71,2019-06-24,1.53,1,151 +8253376,large house with inground pool/spa,43524236,Miran,Staten Island,Todt Hill,40.60926,-74.10092,Entire home/apt,429,2,4,2015-11-06,0.09,1,0 +8254405,Classic Harlem --- Economy Room,26856159,Glenda,Manhattan,Harlem,40.82205,-73.9467,Private room,42,1,161,2019-06-17,3.46,3,259 +8254640,Large Beautiful BedStuy Apartment,123713,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68178,-73.94179,Entire home/apt,200,2,1,2015-10-27,0.02,1,0 +8254674,NOHO ART LOFT ON LAFAYETTE. BEST LOCATION IN NYC,4910739,Max,Manhattan,NoHo,40.72847,-73.99302,Entire home/apt,700,2,31,2019-07-01,1.29,1,54 +8255329,Private room in middle of Bushwick,19963678,Erin,Brooklyn,Bushwick,40.70299,-73.92648,Private room,50,1,4,2015-10-10,0.09,1,0 +8255464,Great new 1 bdrm condo in Greenwood :),43534773,Christine,Brooklyn,Sunset Park,40.65585,-73.99918,Entire home/apt,100,1,1,2015-09-21,0.02,1,0 +8255964,"Safe,Convenient,economical,Clean 2",18183596,Danny,Brooklyn,Crown Heights,40.67743,-73.95523,Entire home/apt,150,4,61,2019-06-30,1.33,1,365 +8256749,Luis and Melanie's B and B,41514104,Luis,Brooklyn,Bushwick,40.6938,-73.92562,Entire home/apt,100,5,85,2019-06-15,1.84,1,269 +8256930,*Lovely Apt in Heart of Park Slope*,5973406,Andrew,Brooklyn,Park Slope,40.66826,-73.98223,Entire home/apt,85,30,26,2018-12-12,0.56,2,282 +8257585,Spacious apartment in trendy neighborhood,41547419,Candy,Manhattan,Greenwich Village,40.72681,-73.99952,Entire home/apt,240,1,72,2019-01-18,1.80,1,0 +8257903,"Sanctuary Oasis, Midtown Manhattan",43549138,Romona,Manhattan,Kips Bay,40.74123,-73.97731,Entire home/apt,135,7,2,2015-10-30,0.04,1,0 +8257999,awesome private studio on ues !,37376980,Jared,Manhattan,Upper East Side,40.78086,-73.94974,Entire home/apt,135,14,3,2015-12-10,0.07,1,0 +8265482,Cozy Private Room Near Bronx Zoo,43583032,Stephanie,Bronx,West Farms,40.84328,-73.88173,Private room,79,1,3,2018-10-08,0.16,1,179 +8266287,East Village apt w/ ESB views,32277262,Mickey,Manhattan,East Village,40.72305,-73.98834,Private room,150,2,10,2017-08-27,0.31,1,0 +8266641,2 bedroom in Stuyvesant Heights,43588775,Anthony,Brooklyn,Bedford-Stuyvesant,40.68137,-73.94233,Private room,139,4,84,2019-05-08,1.83,1,307 +8266871,"Cozy, comfortable private room",983006,Gabriela,Brooklyn,Bedford-Stuyvesant,40.68632,-73.95093,Private room,38,2,2,2019-01-01,0.04,1,0 +8266933,Bright Bedroom in a Brooklyn Loft,32492147,Grete,Brooklyn,Downtown Brooklyn,40.69579,-73.98296,Private room,100,4,65,2017-12-22,1.43,1,0 +8266969,Cozy and Comfortable,43590457,Michael,Queens,Astoria,40.76599,-73.91777,Private room,75,3,0,,,1,0 +8267425,Ridgewood/Bushwick ~ Bungalow,21148770,Ian,Queens,Ridgewood,40.70995,-73.90959,Entire home/apt,170,4,6,2017-01-04,0.13,1,0 +8268465,Beautiful Private Room and Bath in Historic Harlem,43600713,Julie,Manhattan,Harlem,40.82137,-73.94769,Private room,70,2,57,2018-12-10,1.48,1,188 +8268849,Private Floor in SOHO Townhouse,43599290,Scott,Manhattan,SoHo,40.72409,-74.00241,Private room,199,3,107,2019-06-23,2.69,2,276 +8269241,Room #5 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Crown Heights,40.67073,-73.91799,Private room,39,1,62,2018-11-25,1.34,10,159 +8269318,Dreamy Private Bedroom Near Manhattan NYC.,22384027,Shahana,Brooklyn,Crown Heights,40.67112,-73.91685,Private room,39,1,73,2019-05-10,1.57,10,33 +8269681,Sunny Clean Bedroom,43601551,Anamaria & Ricardo,Manhattan,East Harlem,40.78987,-73.94883,Private room,75,2,13,2019-01-02,0.28,2,325 +8270710,Gorgeous sunny apt steps to park!,3959655,Eric And Aoife,Brooklyn,Windsor Terrace,40.65106,-73.97704,Entire home/apt,99,20,30,2017-06-11,0.65,2,65 +8272122,Cozy Room 4 stops from 5 avenue,2417692,Verena,Queens,Astoria,40.75748,-73.91221,Private room,100,15,15,2019-07-01,0.32,2,61 +8272327,Quiet Brownstone Parlor Studio,38465372,Nadege & Charles,Brooklyn,Cobble Hill,40.6869,-73.99741,Entire home/apt,225,3,38,2019-06-30,0.96,1,135 +8272749,Prime Room with View in Brooklyn Heights,25728891,Melissa,Brooklyn,Brooklyn Heights,40.69449,-73.99727,Private room,99,2,72,2019-06-14,1.62,1,231 +8272818,"Three-Story Brick Brownstone, Perfect for Families",179246,Francis & Daniele,Brooklyn,Bedford-Stuyvesant,40.67804,-73.90997,Entire home/apt,469,9,7,2019-01-02,0.16,2,48 +8274113,Bed-Stuy Apartment w/ Rooftop Patio,1804684,Daniel,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93884,Private room,67,60,6,2019-06-22,0.13,1,266 +8274440,Upper Manhattan Luxury Town Home - Mins to Midtown,43628713,Ed,Manhattan,Harlem,40.80801,-73.9486,Private room,180,3,18,2019-05-21,0.39,1,362 +8274516,Central Park west. Big Cozy Room,16805656,Fernando,Manhattan,Upper West Side,40.79927,-73.96235,Private room,100,1,87,2019-06-22,1.88,2,263 +8274711,Penthouse Studio in Historic Harlem,1017231,Susan,Manhattan,Harlem,40.82755,-73.93787,Entire home/apt,125,3,8,2016-03-19,0.17,1,1 +8274931,Stunning apartment with view only 5 min from metro,43633040,Nika,Queens,Astoria,40.76086,-73.92604,Entire home/apt,85,3,25,2019-06-03,0.55,1,0 +8275069,Duplex Upper East side,9597454,Robin,Manhattan,Upper East Side,40.77001,-73.95691,Private room,175,2,3,2016-07-18,0.08,1,0 +8275331,Affordable and Spacious room,32379616,Fabiola,Bronx,Williamsbridge,40.88301,-73.85452,Private room,65,5,17,2017-10-03,0.40,2,123 +8275346,Brooklyn Apt,43635876,Denise,Brooklyn,Borough Park,40.64077,-73.99268,Private room,52,2,6,2019-05-20,2.09,1,90 +8275455,Lovely Inwood Studio,424343,Melissa,Manhattan,Inwood,40.85911,-73.928,Entire home/apt,85,3,3,2016-07-04,0.07,1,0 +8275676,LOVELY Clean&Safe 2 BR NYC Suburban,43637999,Martha,Staten Island,Great Kills,40.5455,-74.14829,Private room,99,1,82,2019-06-30,1.78,1,325 +8276819,International Meeting Place_Room 3•,43371802,Sinaly,Brooklyn,Flatlands,40.62841,-73.92591,Private room,130,4,3,2019-05-19,0.07,5,364 +8276961,Cozy 1 BR Apt- Perfect Location NYC,43645608,C,Manhattan,Hell's Kitchen,40.76128,-73.99617,Entire home/apt,189,2,39,2019-05-06,0.86,1,37 +8281340,"Spacious, Townhouse Garden Apt",21628945,Keith,Brooklyn,Bedford-Stuyvesant,40.68223,-73.9269,Entire home/apt,121,2,16,2019-01-28,0.42,2,0 +8281889,"Williamsburg, Brooklyn space",43669213,Jasmine,Brooklyn,Williamsburg,40.70309,-73.94788,Private room,150,1,4,2017-03-19,0.09,1,363 +8281967,Stylish Studio in Midtown East,43669488,Shwetha,Manhattan,Midtown,40.7579,-73.96243,Entire home/apt,170,1,1,2015-10-01,0.02,1,0 +8283627,Private Room Steps from Time Square,11428056,Brian,Manhattan,Hell's Kitchen,40.76039,-73.99002,Private room,70,2,11,2016-08-22,0.24,1,0 +8283646,A cozy room on the Upper West Side.,21221987,Joshua,Manhattan,Upper West Side,40.79512,-73.97479,Private room,80,5,1,2015-09-08,0.02,1,0 +8283693,Nice apt in New York,15809410,Gabriela,Manhattan,Morningside Heights,40.81464,-73.96185,Entire home/apt,186,7,0,,,1,0 +8285992,Large and Charming East Village Apt,1181122,Matin,Manhattan,East Village,40.72824,-73.97543,Entire home/apt,174,3,11,2018-07-30,0.24,1,0 +8286139,Private BR in 3 BR Apartment,10134825,Kara,Manhattan,Lower East Side,40.71413,-73.9864,Private room,89,1,5,2015-11-04,0.11,4,0 +8286476,Prime Location & Tech Entrepreneurs,23936958,Alex,Manhattan,East Village,40.72749,-73.98894,Private room,109,3,4,2015-11-01,0.09,1,0 +8286494,Huge apt w New York City Skyline view,43691297,Camille,Brooklyn,Greenpoint,40.72788,-73.95408,Entire home/apt,100,4,26,2018-11-15,0.57,1,0 +8286580,Modern Williamsburg Apt w/ Balcony,6112537,David,Brooklyn,Williamsburg,40.71078,-73.94061,Private room,80,5,5,2015-10-12,0.11,2,0 +8287001,Cozy skylight room in Victorian Town House,14796247,Sandra And Cary,Brooklyn,Flatbush,40.6419,-73.96421,Private room,41,7,16,2019-04-04,0.35,4,292 +8290210,Overlooking NYC skyline in Greenpoint,41152325,I-Nu,Brooklyn,Greenpoint,40.72373,-73.94537,Entire home/apt,120,5,0,,,1,0 +8290724,Sunny Greenwich Village 1BR Apt!,2857722,Joseph,Manhattan,West Village,40.73435,-73.99903,Entire home/apt,230,8,23,2018-04-29,0.50,1,0 +8291897,Cozy with Great location !!,43719073,Nora,Brooklyn,Sheepshead Bay,40.6,-73.95612,Shared room,45,1,126,2019-07-01,2.94,5,342 +8292864,Charming East Village Apartment,19194060,Ryan,Manhattan,East Village,40.7241,-73.97992,Entire home/apt,600,3,0,,,1,0 +8293281,GREAT LOCATION QUIET BKLYN STREET,634004,Chris,Brooklyn,Prospect Heights,40.67835,-73.97074,Entire home/apt,125,2,80,2019-06-24,2.83,1,105 +8293802,Epic 1BR in Heart of East Village,3901962,Dylan,Manhattan,East Village,40.72948,-73.98664,Entire home/apt,149,2,1,2015-09-26,0.02,1,0 +8294259,Room in Private House(Queen Bed) by Montefiore-NYC,11305944,Yahaira,Bronx,Allerton,40.86789,-73.85999,Private room,63,4,40,2018-07-16,0.87,5,0 +8294525,Studio in Bensonhurst - Near subway,25266527,Maria,Brooklyn,Bensonhurst,40.62054,-73.99828,Entire home/apt,60,3,6,2017-01-17,0.13,1,0 +8301159,Big Sunny Room in Manhattan!!! (B6),5164854,Lilia,Manhattan,Harlem,40.81959,-73.9379,Private room,57,3,17,2019-01-02,0.38,8,341 +8301850,Private top floor,36955448,Indira,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95893,Entire home/apt,160,2,59,2019-06-16,1.58,1,304 +8302680,Sunny 2BR Apartment in Williamsburg,3038856,Samir,Brooklyn,Williamsburg,40.7124,-73.96259,Entire home/apt,164,1,10,2018-05-06,0.23,3,0 +8303074,Two bedroom apt near prospect park,5499953,R Demetre,Brooklyn,Crown Heights,40.66916,-73.95288,Entire home/apt,250,2,10,2019-06-20,0.22,2,365 +8303337,Your Riverside Romance: Sunny and Bright Apartment,8791857,Mario,Manhattan,Morningside Heights,40.81067,-73.96377,Entire home/apt,194,5,29,2019-06-22,0.75,1,102 +8304576,Beautiful studio in FIDI,14386700,Elsa,Manhattan,Financial District,40.70698,-74.01383,Entire home/apt,140,10,0,,,1,0 +8304809,Parkway Chic ( 2 Bedrooms),43443842,Rigoberto,Brooklyn,Crown Heights,40.66889,-73.93045,Entire home/apt,205,3,84,2019-06-20,1.85,1,172 +8305649,International Meeting Place_Room 1*,43371802,Sinaly,Brooklyn,Flatlands,40.6283,-73.92619,Private room,129,4,5,2017-01-04,0.11,5,365 +8306427,Williamsburg Penthouse Apartment,7784911,Marc,Brooklyn,Williamsburg,40.70948,-73.94081,Entire home/apt,250,4,0,,,2,188 +8306839,1 Week NYC during the Holidays!,41007625,Cheryl,Manhattan,Midtown,40.76502,-73.98198,Private room,399,6,0,,,1,0 +8307946,Spacious Greenwich Village 1 Bed,6502766,Katie,Manhattan,Greenwich Village,40.73637,-73.99746,Entire home/apt,150,2,16,2017-01-01,0.37,1,0 +8308683,Couples' Nest.,10129919,Jorge,Brooklyn,Cypress Hills,40.68537,-73.8775,Entire home/apt,75,3,160,2019-06-20,3.44,2,256 +8308797,shared space with Great location!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59836,-73.95417,Shared room,45,1,135,2019-07-07,2.91,5,351 +8309474,Comfy room in East Williamsburg.,51414,Jose Xavier,Brooklyn,Williamsburg,40.71525,-73.94742,Private room,65,2,9,2018-11-01,0.20,1,0 +8309731,Convenient studio,43804373,Solange,Manhattan,Upper East Side,40.76096,-73.95964,Entire home/apt,250,1,13,2016-02-12,0.28,1,0 +8311468,Huge Loft Studio in Hip Greenpoint!,10023505,Gabriel,Brooklyn,Greenpoint,40.7347,-73.95727,Shared room,185,1,1,2015-10-24,0.02,1,0 +8312148,West Village 1 Bedroom w/ fireplace,8550571,Nolan,Manhattan,West Village,40.73105,-74.00541,Entire home/apt,400,2,10,2017-08-11,0.25,1,0 +8313551,Recently renovated private floor,5268758,Jennifer,Queens,Sunnyside,40.73633,-73.92641,Entire home/apt,125,1,172,2019-07-06,4.48,1,234 +8316959,Sun-soaked Oasis in Astoria.,41817016,G. Angela,Queens,Ditmars Steinway,40.77188,-73.91555,Private room,175,1,5,2017-09-03,0.11,1,87 +8319488,Spacious park slope 2 bedroom,43126563,Andrew,Brooklyn,Park Slope,40.67173,-73.98303,Entire home/apt,300,3,70,2019-06-30,1.51,1,338 +8319784,~Lavish 1 Bedroom Upper East Side NYC Apt!,30283594,Kara,Manhattan,Upper East Side,40.76483,-73.95801,Entire home/apt,249,30,1,2017-06-29,0.04,121,273 +8320129,Cozy Studio Apt Upper East Side Near Hospitals,30283594,Kara,Manhattan,Upper East Side,40.76137,-73.96042,Entire home/apt,199,30,3,2018-04-22,0.11,121,365 +8320702,Convenient full 1 bdrm + loft apt,39047190,Stacy,Manhattan,Gramercy,40.73858,-73.98882,Entire home/apt,180,4,2,2015-10-19,0.04,1,0 +8321236,Conveniently Located Brooklyn Apt,4818113,Veralyn,Brooklyn,Brownsville,40.6678,-73.92526,Private room,60,3,34,2019-05-26,0.73,1,116 +8321495,CLEAN & BRIGHT 1BR IN WILLIAMSBURG,30866347,Ignacio,Brooklyn,Williamsburg,40.70866,-73.94116,Private room,55,7,2,2016-01-16,0.05,1,0 +8322478,Designers brownstone in Bed-Stuy,5008870,Mia,Brooklyn,Bedford-Stuyvesant,40.68211,-73.9236,Entire home/apt,135,2,129,2019-07-01,3.32,1,242 +8323015,Caribbean Retreat in the heart of Brooklyn,43876308,Everol,Brooklyn,East Flatbush,40.64464,-73.94807,Entire home/apt,90,2,4,2019-07-02,1.85,1,93 +8323765,Master Bedroom in East Village,14156051,Brooke,Manhattan,East Village,40.73305,-73.98668,Private room,130,4,1,2015-09-28,0.02,1,0 +8324941,Charming studio apartment,43885876,Nicholas,Bronx,Pelham Bay,40.85362,-73.82949,Shared room,150,1,0,,,1,364 +8325605,Big & Sunny Greenpoint Room,43889585,Allyson,Brooklyn,Greenpoint,40.73747,-73.95289,Private room,80,1,0,,,1,0 +8326389,Exquisite Apartment in Hip Hamilton Heights,43893277,Edward,Manhattan,Harlem,40.82523,-73.95383,Private room,85,3,37,2019-06-11,0.81,1,61 +8326753,Prime Location in Theatre District,34934128,Aly,Manhattan,Theater District,40.76095,-73.98668,Private room,150,2,3,2017-06-19,0.08,1,0 +8327302,Spacious bedroom,43897442,Nick,Brooklyn,Flatbush,40.65309,-73.95523,Private room,62,1,73,2019-06-19,1.58,1,334 +8327773,"Gorgeous Brooklyn Brownstone Flat, Great Location!",6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.68121,-73.93038,Entire home/apt,155,2,188,2019-06-19,4.06,3,262 +8328900,Private room in a 4 bedroom loft,890425,Lea,Brooklyn,Bedford-Stuyvesant,40.67889,-73.94326,Private room,40,2,3,2018-09-30,0.27,1,0 +8334574,Unbeatable NY room in East Village!,5283853,Chara,Manhattan,East Village,40.72972,-73.9875,Private room,140,2,35,2017-08-21,0.78,2,28 +8335539,Comfy bed in a beautiful apartment!,12720552,Julie,Brooklyn,Bushwick,40.69902,-73.93102,Shared room,50,1,5,2019-06-25,0.11,5,365 +8335547,W Hotel Style 2 BR w/ Private Patio,1237358,David,Manhattan,East Village,40.72342,-73.98871,Entire home/apt,250,2,1,2015-09-26,0.02,1,0 +8337597,Spacious Clinton Hill Room,43949321,Ronald,Brooklyn,Clinton Hill,40.68717,-73.96015,Private room,70,7,1,2015-10-04,0.02,1,0 +8338312,Vacation Rental in Prospect Heights,1854179,Fedor,Brooklyn,Prospect Heights,40.68043,-73.96781,Entire home/apt,160,5,5,2018-07-15,0.11,1,0 +8339036,Top Floor 1 Bedroom Apt XpressTrain,11995451,Sam,Brooklyn,Midwood,40.62857,-73.94828,Entire home/apt,78,2,114,2019-06-20,2.65,1,217 +8339140,Historic Little Italy / Chinatown Jewel,43956548,Baizy,Manhattan,Chinatown,40.71631,-73.99694,Entire home/apt,139,4,8,2018-06-03,0.17,1,350 +8340381,CHEAP & LOVELY ROOM IN MANHATTAN!!!,20990447,Adir,Manhattan,Washington Heights,40.85338,-73.93061,Private room,50,5,4,2017-04-19,0.09,1,0 +8340665,True One BR - Upper East Side,43964253,Rob,Manhattan,Upper East Side,40.77455,-73.94982,Entire home/apt,145,2,31,2018-12-30,0.69,1,0 +8341556,-MANHATTAN - Upper West BIG ROOM w/tv,43298076,Gordon M,Manhattan,Harlem,40.82323,-73.95494,Private room,55,2,84,2019-05-26,1.82,4,72 +8341669,Upper West Side Luxury Rental,43969051,Kate,Manhattan,Upper West Side,40.79061,-73.97335,Entire home/apt,215,5,1,2015-09-27,0.02,1,0 +8341919,Brand New Luxury Apt Lease Takeover,43945071,Shining,Queens,Long Island City,40.74654,-73.95778,Entire home/apt,199,480,0,,,1,365 +8342009,Cozy apartment with lots of light,43375242,Gabriela,Queens,Long Island City,40.75653,-73.93268,Private room,120,2,9,2019-04-22,0.20,2,89 +8342053,Chelsea apartment with a backyard,26012172,Katarina,Manhattan,Chelsea,40.75093,-73.99675,Entire home/apt,160,3,9,2016-11-30,0.19,1,0 +8342200,"Upper West Side, Close to Park",37131217,Rowdy,Manhattan,Upper West Side,40.7816,-73.97638,Entire home/apt,125,5,0,,,1,0 +8342917,Cozy 1 bedroom uptown,43976299,Sean,Manhattan,Harlem,40.83057,-73.94582,Entire home/apt,99,1,0,,,1,0 +8343222,"New Apartment, Close to Ferry",43977828,Mona And Wally,Staten Island,Silver Lake,40.62257,-74.09984,Entire home/apt,80,2,147,2019-07-05,3.19,1,324 +8347980,Large Modern Studio Next To The Park,4230646,Jonathan,Manhattan,East Village,40.72595,-73.98218,Entire home/apt,150,2,6,2017-01-01,0.18,1,0 +8348832,BUSHWICK ground floor beauty,15756065,Genna,Brooklyn,Bushwick,40.69795,-73.92162,Private room,110,1,2,2015-12-04,0.04,1,0 +8353055,Bright Brooklyn Penthouse +Roofdeck,619330,Nancy,Brooklyn,South Slope,40.66616,-73.98904,Entire home/apt,360,4,5,2016-07-31,0.12,1,0 +8354383,Artist 1.5 bedroom WHOLE apartment!,38204730,Kathy,Manhattan,Gramercy,40.73524,-73.98441,Entire home/apt,239,5,2,2019-01-05,0.05,3,30 +8355713,Cozy Private Brooklyn Bed room,44042396,Gabriel,Brooklyn,Crown Heights,40.66754,-73.95265,Private room,40,4,3,2016-04-30,0.07,1,0 +8355794,New York Upper West Near Columbia U,15833732,Yawen,Manhattan,Upper West Side,40.80285,-73.9657,Private room,60,5,2,2015-12-01,0.05,1,0 +8356955,Find Serenity in this Harlem Studio,30460662,Gabrielle-Renée,Manhattan,Harlem,40.82117,-73.94306,Entire home/apt,87,2,11,2017-12-12,0.25,1,0 +8357147,Perfect Solo Traveler Room in Williamsburg,33874814,Victor,Brooklyn,Williamsburg,40.70617,-73.95055,Private room,44,2,0,,,1,6 +8358047,Nice Bedroom in Harlem (Sugar Hill),44050884,Amaurys,Manhattan,Harlem,40.8272,-73.94137,Private room,80,1,0,,,1,0 +8361443,"Cozy studio, with fantastic light",10618178,Greg,Manhattan,Upper East Side,40.78174,-73.94829,Entire home/apt,119,6,4,2015-10-30,0.09,1,0 +8362098,Lovely 1.5 bed in South Park Slope,2128335,Julian,Brooklyn,Sunset Park,40.66198,-73.99785,Entire home/apt,69,5,9,2016-12-30,0.20,1,0 +8364733,Pleasant Enviornment,44087298,Catherine,Manhattan,Washington Heights,40.84707,-73.93541,Private room,50,1,38,2017-06-12,0.84,2,0 +8364979,Modern • Sleek • Brooklyn,8489997,Evonne,Brooklyn,Williamsburg,40.71111,-73.95141,Entire home/apt,200,10,27,2019-05-21,0.59,1,280 +8365647,1 Bedroom/1 Bathroom in Riverdale (close to HIR),10024006,Long,Bronx,Riverdale,40.88837,-73.90939,Private room,65,1,202,2019-05-18,4.35,1,0 +8367125,Nice & clean studio for a couple,44099001,Agnieszka,Queens,Elmhurst,40.7452,-73.89086,Entire home/apt,78,2,1,2016-09-18,0.03,1,0 +8367271,Cozy Studio in Heart of Ft Greene,2477248,Christopher,Brooklyn,Fort Greene,40.68602,-73.97386,Entire home/apt,150,4,4,2017-01-04,0.09,1,0 +8367486,Private Bed/Bath-Central Park Views,44096608,Ericka,Manhattan,Upper West Side,40.7965,-73.96179,Private room,99,2,165,2019-06-18,3.56,1,105 +8368708,Cozy 1 bedroom apt Prime Location!!,20413250,Sara,Queens,Astoria,40.76307,-73.92247,Entire home/apt,150,14,0,,,2,0 +8368794,Modern Lux Furnished 1 Bedroom Apt,4167576,Sid,Manhattan,Chelsea,40.7368,-73.9925,Entire home/apt,140,1,71,2019-06-01,1.56,1,256 +8368928,Private 2BD Apartment in Manhattan,15789077,Lisa,Manhattan,Murray Hill,40.74716,-73.97607,Entire home/apt,500,1,1,2015-09-28,0.02,1,0 +8368973,Modern & Comfortable 1 BR,28916226,Suzy,Brooklyn,Prospect-Lefferts Gardens,40.65774,-73.95202,Entire home/apt,75,1,0,,,1,0 +8369401,Peaceful South Slope Living Quarters,31104953,Deborah,Brooklyn,Windsor Terrace,40.66012,-73.98343,Entire home/apt,123,3,141,2019-07-03,3.09,1,0 +8369701,INTER HOUSE entire apt minim 16 day,43371802,Sinaly,Brooklyn,Flatlands,40.62862,-73.92629,Entire home/apt,414,16,5,2018-08-11,0.12,5,365 +8369857,International Meeting Place_Room 2,43371802,Sinaly,Brooklyn,Flatlands,40.62868,-73.92739,Private room,125,4,13,2019-05-19,0.29,5,180 +8369895,Spacious Chelsea Loft!,40376473,Matthew,Manhattan,Chelsea,40.74451,-73.99226,Entire home/apt,299,2,25,2019-05-03,1.22,1,221 +8370236,Barbara's Home Stay,44107591,Barbara,Brooklyn,Flatbush,40.65216,-73.96119,Private room,55,3,219,2019-07-02,4.73,1,286 +8371626,Cozy little room UWS,44123353,Griffin,Manhattan,Upper West Side,40.78583,-73.9768,Private room,55,3,2,2015-09-30,0.04,1,0 +8372368,The Herkimer House Room #2,27708645,Malik,Brooklyn,Bedford-Stuyvesant,40.67831,-73.93903,Private room,65,3,3,2015-10-13,0.07,1,342 +8372650,Luxurious 1BR in Herald Square,25360921,Darwaysh,Manhattan,Midtown,40.74911,-73.9877,Entire home/apt,300,3,0,,,1,0 +8373265,Huge Private Cool 1BR Harlem -Close 2 Central Park,15094887,Lisa,Manhattan,Harlem,40.80582,-73.95355,Entire home/apt,150,5,11,2019-01-02,0.82,1,0 +8381173,Charming Hell's Kitchen nest -- bedroom 2,19838610,Scott,Manhattan,Hell's Kitchen,40.76859,-73.9872,Private room,79,1,5,2017-05-13,0.14,1,0 +8381381,Studio in Manhattan,2284111,Su,Manhattan,Hell's Kitchen,40.76599,-73.98388,Entire home/apt,152,1,0,,,1,0 +8381953,Tranquil Apt with Garden Access,44171084,Sheena,Manhattan,Harlem,40.82244,-73.94773,Entire home/apt,124,3,102,2019-06-15,2.66,1,247 +8382660,One cozy bedroom in Bay Ridge NY,44170892,"Keiko, Harumi & Eric",Brooklyn,Bay Ridge,40.63421,-74.0263,Private room,85,2,36,2019-06-26,0.94,1,281 +8385108,Cozy private room,2448006,El Haj,Manhattan,Harlem,40.80311,-73.94858,Private room,100,3,6,2019-01-02,0.13,3,349 +8385284,"2 bdrm apt in Bushwick off L,M",13501341,Fiorella,Brooklyn,Bushwick,40.70054,-73.91185,Entire home/apt,82,4,8,2019-02-24,0.22,2,0 +8386220,Yankee Stadium Lavished Bedroom,2422554,Brais,Bronx,Highbridge,40.83746,-73.92268,Private room,59,4,51,2017-02-24,1.11,2,0 +8386889,Penthouse Floor Room in Luxury Apt,44193702,Dylan,Manhattan,East Village,40.72137,-73.97786,Private room,75,1,5,2015-10-29,0.11,1,0 +8387244,Bushwick for Thanksgiving/Christmas,26909087,Jordan,Brooklyn,Bedford-Stuyvesant,40.69067,-73.92643,Private room,65,1,2,2015-10-11,0.04,1,0 +8387338,Private Room Available in 2BedApt,44195923,Dawn,Staten Island,Tompkinsville,40.63378,-74.08726,Private room,50,1,0,,,1,0 +8388278,Bright Williamsburg Apartment,25370219,Sacha,Brooklyn,Williamsburg,40.71495,-73.96321,Private room,65,2,12,2017-01-31,0.26,1,0 +8388776,"Massive, Cozy, Modern 1BR in Heart of Chelsea!",2227376,Eunwoo,Manhattan,Chelsea,40.74501,-73.99725,Entire home/apt,109,3,10,2018-10-08,0.33,1,0 +8388864,Quiet Bedroom in Cobble Hill,36688169,Sloan,Brooklyn,Boerum Hill,40.68863,-73.98935,Private room,59,1,151,2019-06-29,3.37,1,325 +8389259,Great 1bdrm in lower UES near Park,23968798,Anthony,Manhattan,Upper East Side,40.76436,-73.96471,Entire home/apt,300,4,7,2016-09-17,0.16,1,188 +8389302,Elegant Sanctuary close to all,4168247,Lidia,Brooklyn,Fort Greene,40.69371,-73.97076,Entire home/apt,135,6,12,2019-01-25,0.32,1,188 +8389603,"Sunny, Open, East Harlem 1 bedroom",32588705,Abraham,Manhattan,East Harlem,40.79771,-73.93449,Entire home/apt,110,2,1,2016-01-01,0.02,1,0 +8390906,"Big living room, w/ 3 big bedrooms",10953390,Sam,Manhattan,East Village,40.72369,-73.98998,Entire home/apt,300,2,1,2015-09-21,0.02,1,0 +8391035,Private room in Washington Heights,2321776,Hugo,Manhattan,Washington Heights,40.83368,-73.94314,Private room,80,4,0,,,1,0 +8391096,Stylish 1 Bdr. Apt. on Upper East,5338040,Jackie,Manhattan,Upper East Side,40.77372,-73.94803,Private room,185,5,7,2016-10-28,0.15,1,341 +8392929,AFFORDABLE & COZY IN SUNSET PARK,1182180,"Isaac, Linda & Noelia",Brooklyn,Sunset Park,40.64985,-74.00207,Private room,35,6,26,2019-06-30,0.57,1,160 +8398120,one bedroom apt 1000sqf,17871237,Mandy,Brooklyn,Williamsburg,40.71599,-73.95514,Private room,250,5,0,,,1,0 +8398566,Room in 1-Br by Columbus Circle,43779028,Allan,Manhattan,Upper West Side,40.76974,-73.98743,Private room,90,2,2,2016-01-03,0.05,1,0 +8398955,LaGuardia Room with Private Entrance(2)!,31851704,Laura,Queens,East Elmhurst,40.75819,-73.87504,Private room,50,1,209,2019-06-24,4.53,2,1 +8400115,Brooklyn bohemian haven,43768534,AnnMarie,Brooklyn,Greenpoint,40.72403,-73.94306,Private room,60,7,11,2019-05-31,0.24,1,0 +8401484,Private Rm in Cozy Williamsburg Apt,1278978,Nelly,Brooklyn,Williamsburg,40.71602,-73.94645,Private room,70,3,1,2017-10-10,0.05,1,0 +8401620,NICE AND BRIGHT ROOM UPPER WEST!,44262118,Martin,Manhattan,Upper West Side,40.77915,-73.97794,Private room,130,2,3,2016-07-20,0.06,1,0 +8402207,BEDROOM PRIVATE COMFY NEAR 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.82939,-73.86514,Private room,28,2,98,2019-06-21,2.12,3,108 +8402882,Peaceful BR in Historic Brownstone,3687880,Veola,Brooklyn,Bedford-Stuyvesant,40.68293,-73.93437,Private room,35,14,0,,,1,0 +8403327,Sunny Apt in Williamsburg Brooklyn,15928518,Karen,Brooklyn,Williamsburg,40.7127,-73.94048,Entire home/apt,110,3,10,2019-01-01,0.22,1,0 +8404181,Crown Heights Great Single Bedroom,44273727,Wes,Brooklyn,Crown Heights,40.67416,-73.93854,Private room,70,1,3,2015-11-02,0.06,1,0 +8404499,Spacious and sunny 1BR w terrasse,6630320,Florie,Brooklyn,Williamsburg,40.71109,-73.95918,Entire home/apt,200,2,7,2017-07-06,0.15,1,0 +8405978,Eclectic bedroom in FiDi Brick Loft,15807888,Jared,Manhattan,Financial District,40.70963,-74.00759,Private room,90,2,71,2019-04-15,1.55,1,0 +8407092,Historic Ridgewood Brick Townhouse,9684993,Randy,Queens,Ridgewood,40.70928,-73.89795,Entire home/apt,139,5,3,2018-07-30,0.16,1,0 +8407577,Real New York Home - Times Square,44206893,Ana,Manhattan,Hell's Kitchen,40.7595,-73.98967,Entire home/apt,360,1,13,2016-01-17,0.28,1,188 +8407963,Gilded Age Bohemia,1938669,Amanda,Manhattan,Midtown,40.74268,-73.98401,Entire home/apt,185,4,15,2019-05-19,0.33,1,7 +8408695,15 MIN FROM MANHATTAN,10181589,Jodi,Queens,Sunnyside,40.74592,-73.92399,Entire home/apt,95,1,0,,,1,0 +8408853,Top-Floor Williamsburg Apt Bedroom,6112537,David,Brooklyn,Williamsburg,40.71116,-73.94014,Private room,100,1,2,2016-02-20,0.05,2,0 +8409178,Private large bedroom in the heart of NYC!!,25802929,Michelle,Manhattan,Midtown,40.76146,-73.96649,Private room,195,3,67,2019-06-27,1.64,1,265 +8409246,Charming East Village Garden Apt.,3266068,Alex,Manhattan,East Village,40.72625,-73.98173,Entire home/apt,235,3,4,2015-12-05,0.09,1,0 +8409459,Greenpoint Brooklyn Modern Charm II,43108922,Robbin,Brooklyn,Greenpoint,40.72321,-73.9433,Entire home/apt,150,3,107,2019-06-18,2.38,2,277 +8410347,"Haven In The Heights - Huge, Bright Bedroom!",44303500,Bruce & Suzanne,Manhattan,Washington Heights,40.8484,-73.93972,Private room,70,2,1,2019-01-02,0.16,2,0 +8410796,"Welcoming, Clean, Cheap on St Marks",26389845,Felipe,Manhattan,East Village,40.72696,-73.98406,Private room,95,2,2,2015-09-27,0.04,2,0 +8411164,New York - Theatre District- Luxury Building,19939430,Salvatore,Manhattan,Hell's Kitchen,40.76041,-73.99496,Entire home/apt,450,6,15,2019-06-30,0.44,1,364 +8411226,Cozy Master Bedroom Upper Manhattan,44308521,David,Manhattan,Harlem,40.82355,-73.94881,Private room,50,2,0,,,1,0 +8411390,Comfy Upper West Side haven,9247072,Jennifer,Manhattan,Upper West Side,40.79879,-73.96721,Private room,100,1,9,2018-05-21,0.19,1,0 +8412352,Apt on President St & Kingston Ave,44314131,Raphael,Brooklyn,Crown Heights,40.66852,-73.9425,Entire home/apt,160,1,1,2015-10-06,0.02,1,0 +8414314,Huge Space in Williamsburg BK,44322686,Matt,Brooklyn,Williamsburg,40.71193,-73.94266,Private room,65,1,9,2019-03-16,0.19,1,35 +8416015,Cozy apt 20 minutes to Manhattan,44329555,Enzo,Queens,Jackson Heights,40.75273,-73.87144,Entire home/apt,104,2,166,2019-06-22,3.63,1,195 +8416681,Massive Apartment in the LES! Amazing rooftop too!,6722310,Rob,Manhattan,Lower East Side,40.71915,-73.98546,Private room,60,2,12,2017-07-03,0.26,1,0 +8419475,Clean and quiet Bushwick Apartment,44344360,Jeremiah,Brooklyn,Bushwick,40.69882,-73.91771,Private room,60,7,0,,,1,0 +8420572,Cozy Room in East Williamsburg!,44347591,Kyle,Brooklyn,Bushwick,40.7034,-73.9296,Private room,50,2,0,,,1,0 +8420870,"Perfect, Private 1-Bdrm Union Squar",44350279,Jp,Manhattan,Gramercy,40.73572,-73.98735,Entire home/apt,190,2,134,2019-06-27,3.20,4,270 +8421771,~Spacious~Sunny~Stylized~Suite~,44343181,Monica,Brooklyn,Greenpoint,40.72522,-73.94563,Private room,60,6,0,,,1,0 +8422085,Cozy apartment in Brooklyn,9996343,Leticia,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9463,Private room,55,3,18,2017-05-31,0.39,1,0 +8423636,"Large Brooklyn Apt,Private Backyard",31230100,Elissa,Brooklyn,Crown Heights,40.67352,-73.95633,Entire home/apt,80,7,45,2019-06-29,1.06,3,161 +8423666,"""Bloom of Floral Park"" 1 BR Basement Suite",44361695,Mordeana,Queens,Bellerose,40.73351,-73.71299,Private room,65,2,39,2019-05-29,0.85,1,222 +8424350,Cozy 2BR apt in Midtown West/Chelsea/Hells Kitchen,41808609,Emma,Manhattan,Hell's Kitchen,40.75711,-73.99665,Entire home/apt,235,2,20,2018-01-02,0.43,1,0 +8425148,*Amazing Lower East Side Apartment*,21940002,Zlatko,Manhattan,Lower East Side,40.71978,-73.98424,Entire home/apt,205,2,6,2017-01-01,0.13,1,0 +8425657,Sun-filled Clinton Hill apartment.,3404110,Kristofer,Brooklyn,Clinton Hill,40.69561,-73.969,Entire home/apt,109,3,1,2015-09-21,0.02,1,0 +8426309,Private Bdrm in 2 BR Brooklyn Apt,14564141,Teddy,Brooklyn,Clinton Hill,40.68255,-73.96167,Private room,85,2,12,2018-10-14,0.26,1,0 +8426584,Sunny large apt facing huge park. 20min2Manhattan,5354888,Clifford,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96144,Private room,80,1,169,2019-05-27,4.11,1,233 +8426874,Private Holiday Loft in the East Village,17853061,Jonathan,Manhattan,East Village,40.73106,-73.98467,Entire home/apt,120,3,4,2019-01-01,0.09,1,0 +8427028,Room for 2 in Amazing duplex Loft,17473615,Bleik,Manhattan,Hell's Kitchen,40.75548,-73.99706,Private room,130,1,1,2015-10-03,0.02,1,0 +8427638,NYC CHIC!!! LARGE STUDIO APT on UWS,9036787,Katie,Manhattan,Upper West Side,40.80109,-73.97093,Entire home/apt,190,4,46,2019-05-12,1.02,1,207 +8427707,Studio Condo,44382810,Terrell,Manhattan,Midtown,40.75188,-73.97252,Entire home/apt,455,2,0,,,1,0 +8427772,The real deal 2 blox away from CP!,21737404,Miklos,Manhattan,Harlem,40.8022,-73.95737,Private room,99,4,2,2015-10-26,0.04,1,0 +8428777,Awesome 1Bdr Apt. in Wash Hts,1905482,Steven,Manhattan,Washington Heights,40.84747,-73.94279,Entire home/apt,125,30,0,,,1,0 +8431626,Lovely bedroom/private full bath in Brooklyn,44398705,Victoria,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92805,Private room,52,4,3,2019-05-06,0.35,2,157 +8431906,Lovely 2 bed/2 bath Bed Stuy oasis,44398705,Victoria,Brooklyn,Bedford-Stuyvesant,40.68942,-73.9287,Entire home/apt,110,4,5,2019-05-28,0.11,2,50 +8431998,Cozy Private Room in Ridgewood,2945143,Ahmed,Queens,Ridgewood,40.70588,-73.90821,Private room,75,2,0,,,1,0 +8435067,"Bright, Light & Sunny Room",18830662,Jack,Manhattan,Chinatown,40.71707,-73.99066,Private room,99,3,1,2015-10-12,0.02,2,0 +8438775,Private BR & Bath near Central Park,41042927,Gabi,Manhattan,Upper West Side,40.77697,-73.97698,Private room,137,1,163,2019-06-28,3.55,1,32 +8439030,One Room in Murray Hill / Midtown,44433249,Sarah,Manhattan,Murray Hill,40.7465,-73.97734,Private room,85,5,2,2015-10-10,0.04,1,0 +8439145,"Beautiful, Secure, Central NYC Apartment!",7654837,George,Manhattan,Midtown,40.75287,-73.97439,Entire home/apt,149,10,3,2019-01-01,0.13,1,14 +8439191,Sunny Williamsburg Apt with View,2761047,Katarina,Brooklyn,Williamsburg,40.71175,-73.96092,Entire home/apt,124,2,13,2016-05-01,0.28,1,0 +8439758,Modern 1BR w/ Gorgeous Balcony View,44436646,Jaqui,Manhattan,East Village,40.72529,-73.97756,Private room,125,2,23,2017-01-01,0.51,1,0 +8440352,Private bedroom in great LES spot,7137049,Susie,Manhattan,Lower East Side,40.71323,-73.9878,Private room,70,1,212,2019-06-21,4.64,1,41 +8441969,"Full Bedroom Avaliable, Astoria",1411399,Carlos,Queens,Astoria,40.76615,-73.91325,Private room,99,1,6,2019-06-17,0.13,5,323 +8442642,Private Bath/Master Bedroom Astoria,1411399,Carlos,Queens,Astoria,40.76799,-73.91234,Private room,109,1,2,2016-05-12,0.04,5,138 +8442997,"1,000 Square Foot Apt - in MANHATTAN!",18418581,Pooja,Manhattan,Washington Heights,40.85432,-73.93198,Entire home/apt,235,1,28,2019-03-10,0.64,3,364 +8444013,Cozy Wkd Getaway Spot in Prime BK,11625123,Jennifer,Brooklyn,Crown Heights,40.67501,-73.95873,Entire home/apt,95,2,20,2019-04-26,0.44,1,0 +8444115,2br Design in the heart of LES,15231059,Apollo,Manhattan,Lower East Side,40.71978,-73.98705,Entire home/apt,250,2,8,2016-07-23,0.17,4,297 +8444227,Private Room in Heart of Soho,44457589,Joel,Manhattan,SoHo,40.72607,-74.00166,Private room,95,1,152,2019-06-04,3.34,2,9 +8444619,NYC Room near Central Park East !!!,4821374,Millie,Manhattan,Upper East Side,40.77564,-73.9533,Private room,85,1,71,2019-06-20,1.55,2,186 +8444730,Greenwich Village Studio,44460139,Chloe,Manhattan,Greenwich Village,40.72815,-74.00084,Entire home/apt,190,4,4,2016-05-05,0.09,1,0 +8445883,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72831,-73.98481,Private room,125,1,2,2015-10-26,0.04,2,0 +8446914,"Custom design, Cozy Manhattan stay",36573037,Tracey,Manhattan,Inwood,40.87126,-73.91722,Entire home/apt,125,2,20,2018-12-25,0.46,2,164 +8450523,Mint 2 bedroom w rooftop terrace!,39921605,Rachel,Manhattan,Upper West Side,40.8037,-73.96803,Entire home/apt,374,1,31,2017-03-31,0.69,5,188 +8454886,"Super Cozy, Warm Eclectic Oasis",16954469,Michele,Brooklyn,Crown Heights,40.66999,-73.94735,Private room,160,2,2,2015-10-02,0.04,1,364 +8455561,Lorenna Gonzalez,17607789,Lorenna,Manhattan,East Harlem,40.79866,-73.94148,Private room,59,1,0,,,1,0 +8456825,Bushwick Oasis,44516268,Tom And Claudia,Brooklyn,Bushwick,40.70337,-73.93071,Entire home/apt,70,2,171,2019-06-22,3.74,1,183 +8458505,Rosie's Home away from HomeBrooklyn,44506171,Yvette And Ashley,Brooklyn,East Flatbush,40.63401,-73.93808,Entire home/apt,55,1,47,2019-06-23,1.03,1,348 +8458863,"Spacious Studio, Upper East Side",44086736,Darren,Manhattan,Upper East Side,40.78465,-73.94914,Entire home/apt,100,1,7,2016-12-26,0.20,1,0 +8458966,Bedroom In Midtown East,24559181,Aldi,Manhattan,Upper East Side,40.76301,-73.96734,Private room,95,1,60,2019-05-24,1.31,3,351 +8459183,Lower East side Ideal Location #7,3256433,Ira,Manhattan,Lower East Side,40.72116,-73.99124,Entire home/apt,250,30,8,2018-08-17,0.20,7,4 +8459687,Park Slope apt. w/ private yard,3626916,Alisa & Dante,Brooklyn,Park Slope,40.67307,-73.97235,Entire home/apt,95,1,1,2016-08-23,0.03,1,0 +8459744,Studio style Room with private bath,30791331,Tsepak,Queens,East Elmhurst,40.7568,-73.88894,Entire home/apt,89,2,9,2019-05-27,0.20,2,331 +8460304,Sleeps 4 people - Prime Madison Sq Park/Park Ave,44534342,Faith,Manhattan,Midtown,40.74568,-73.98324,Entire home/apt,285,7,8,2018-11-10,0.18,1,302 +8467862,Heart of Downtown Tribeca,35302724,Wei,Manhattan,Tribeca,40.71924,-74.01165,Private room,127,2,2,2015-11-02,0.04,1,0 +8467950,One bedroom apartment in NoLita,44593150,Alberto,Manhattan,Civic Center,40.7139,-74.00621,Entire home/apt,150,1,0,,,1,0 +8468180,Upper Westside 1 BR/1.5 Bath Apt,44593642,Charlie,Manhattan,Upper West Side,40.78385,-73.97466,Entire home/apt,225,30,1,2016-01-05,0.02,1,0 +8468662,Cozy Loft in the UWS Manhattan,19244346,Emanuele,Manhattan,Upper West Side,40.79893,-73.96769,Entire home/apt,150,4,1,2015-12-16,0.02,1,0 +8468835,Private room in Brooklyn,6518093,Mathilde,Brooklyn,Bedford-Stuyvesant,40.67968,-73.90764,Private room,50,1,2,2015-09-29,0.04,1,0 +8470281,Cozy room in the city,31469635,Ricky,Manhattan,Harlem,40.82497,-73.94595,Private room,60,1,1,2019-01-01,0.16,2,363 +8470974,$199 SPECIAL VERY QUIET WVILLGMTPKGCHLS 65”TV/BOSE,2742979,Lawrence,Manhattan,Chelsea,40.73983,-74.00102,Entire home/apt,275,7,6,2017-06-15,0.14,1,0 +8471063,"Spacious, light-filled room in NYC",14817413,Jessica,Manhattan,Kips Bay,40.74088,-73.98285,Shared room,65,1,8,2016-06-03,0.17,1,0 +8472069,Cute & Comfy Williamsburg Refuge,3826160,Josh & Chris,Brooklyn,Williamsburg,40.71032,-73.9517,Private room,80,1,215,2019-06-29,4.68,1,232 +8472812,2 bedroom apt 1 min walk to train,9295237,Noelle,Queens,Astoria,40.75763,-73.91389,Entire home/apt,130,5,2,2019-05-31,0.04,2,0 +8472997,"LIC 1 BR, City & River Views",3191699,Tori,Queens,Long Island City,40.74534,-73.95557,Entire home/apt,199,2,0,,,1,0 +8473532,"Beautiful, rustic room in artistic apt.",44623374,Jordan,Brooklyn,Crown Heights,40.67763,-73.95943,Private room,65,1,5,2016-06-20,0.11,1,0 +8473623,"Large, sunny Williamsburg room",5803786,Bailey,Brooklyn,Williamsburg,40.70727,-73.94025,Private room,75,2,1,2015-09-28,0.02,1,0 +8473811,NYC.ANGUS.5. 20.min to manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68251,-73.91944,Entire home/apt,200,1,52,2019-06-22,1.82,4,359 +8474260,Columbia University Apartment,40696448,Zhehui,Manhattan,Morningside Heights,40.80773,-73.95977,Private room,40,4,2,2016-03-07,0.05,1,0 +8474806,"Huge 1 BR Apt close to A,B,C,D &1 trains",44630169,Stephen,Manhattan,Harlem,40.82725,-73.9453,Entire home/apt,68,2,9,2017-06-12,0.29,1,0 +8474859,Beautiful 1 Bedroom + futon,44631190,Eli,Brooklyn,Columbia St,40.68053,-74.00387,Entire home/apt,130,3,15,2019-05-19,0.33,1,356 +8479799,CLASSIC GUEST ROOM - UWS Townhouse,44660079,Leslie,Manhattan,Upper West Side,40.7786,-73.98554,Private room,135,3,79,2019-07-05,2.19,2,20 +8480087,West Side Studio Apartment,44660079,Leslie,Manhattan,Upper West Side,40.77875,-73.9875,Entire home/apt,165,5,25,2019-05-24,0.54,2,70 +8481074,Last minute! East Village Apartment,44666806,Alex,Manhattan,East Village,40.72767,-73.98452,Entire home/apt,250,1,2,2015-10-01,0.04,1,0 +8482165,Charming living room in Astoria,32833549,Siju,Queens,Astoria,40.76541,-73.92009,Shared room,52,1,1,2015-09-27,0.02,1,363 +8482952,"Warm, Comfortable West Village Apt with Courtyard",44675456,Mark,Manhattan,West Village,40.73798,-73.99963,Entire home/apt,170,2,1,2016-12-29,0.03,1,0 +8483688,Sunny private room in Brooklyn,9246269,Nick,Brooklyn,Bedford-Stuyvesant,40.69498,-73.94237,Private room,42,5,0,,,1,0 +8484152,Cozy room in Brooklyn loft,26443890,Matthieu,Brooklyn,Williamsburg,40.70496,-73.93689,Private room,65,3,2,2015-10-15,0.04,1,0 +8485057,Affordable Artistic Apartment,10364617,Nikolina,Brooklyn,Sunset Park,40.64685,-74.01097,Entire home/apt,80,3,34,2019-06-16,0.75,1,0 +8485529,Central Park/UES,30376992,Chloé,Manhattan,Upper East Side,40.77964,-73.95474,Entire home/apt,130,2,5,2018-06-16,0.11,1,0 +8485571,Furnished Apt. in Upper East Side,5805675,Avik,Manhattan,Upper East Side,40.76693,-73.95911,Entire home/apt,140,7,2,2016-01-02,0.05,1,0 +8485671,Gramercy Park Studio by Manhattan,29821368,Matthew,Manhattan,Gramercy,40.73809,-73.98215,Entire home/apt,200,2,2,2015-10-17,0.04,1,0 +8486828,Architect's Room in Large apt w/ rooftop deck,44697034,Kevin,Brooklyn,Bedford-Stuyvesant,40.69504,-73.94807,Private room,55,1,14,2017-08-31,0.30,1,0 +8486946,Private Bright Garden Room|Bushwick,39769788,Nico,Brooklyn,Bushwick,40.7012,-73.92682,Private room,50,3,0,,,1,0 +8488615,Spacious 1 BD w/washer dryer in UES,3969780,Zaka,Manhattan,Upper East Side,40.77843,-73.95191,Entire home/apt,175,2,1,2015-10-27,0.02,1,0 +8496270,Sunny Loft Studio on 46th and 10th,44742061,Megan,Manhattan,Hell's Kitchen,40.76326,-73.99142,Entire home/apt,500,1,0,,,1,0 +8496622,Studio in heart of NYC,29408645,Tara,Manhattan,Chinatown,40.71879,-73.99586,Entire home/apt,99,2,4,2019-07-01,0.09,1,18 +8498323,Great UES location for Pope visit,44751629,Jeffrey,Manhattan,Upper East Side,40.77532,-73.95132,Entire home/apt,650,2,0,,,1,0 +8498885,2 Full Size Beds Lower East Side,32583045,Charles,Manhattan,Lower East Side,40.71297,-73.98561,Entire home/apt,200,1,4,2015-12-28,0.09,1,0 +8498999,Historically located 1 bdroom,44754726,Danielle,Manhattan,Harlem,40.81646,-73.9369,Entire home/apt,180,1,0,,,1,0 +8499719,"Huge Room, Safe Neighborhood,Near Manhattan",3501090,Sebastian & Andrea,Queens,Astoria,40.76404,-73.91174,Private room,75,4,86,2019-06-18,1.88,1,324 +8501589,ENTIRE APARTMENT in L.E.S. (-30% exceptional deal),28783846,Fleur,Manhattan,Lower East Side,40.71435,-73.98924,Entire home/apt,90,6,7,2018-07-28,0.23,1,0 +8501697,Airy private room near E/F/M/R/7 and LGA,938086,Benjamin,Queens,Elmhurst,40.74537,-73.88337,Private room,51,1,12,2018-01-21,0.26,1,0 +8501823,Spacious Master Bedroom in Bushwick,17530762,Ian,Brooklyn,Bushwick,40.70374,-73.93016,Private room,62,5,1,2015-11-15,0.02,1,0 +8502814,Comfortable Junior One Bedroom,8636732,Kay,Brooklyn,Flatbush,40.63682,-73.9676,Entire home/apt,70,3,0,,,2,0 +8503064,Minimalistic en suite in Bushwick,17028800,Gina,Brooklyn,Bushwick,40.69856,-73.93087,Private room,90,1,1,2015-10-02,0.02,1,0 +8503280,1 Bedroom near Williamsburg,25913948,Natalie,Brooklyn,Bushwick,40.70145,-73.93798,Private room,45,3,1,2015-10-29,0.02,1,0 +8504231,*Clean & Bright Master Room - UWS*,44779572,Justin,Manhattan,Upper West Side,40.80096,-73.96671,Private room,109,1,7,2016-01-02,0.15,1,0 +8504263,Room for Female in NoHo/EastVillage,38361857,Betsy,Manhattan,East Village,40.72612,-73.99043,Private room,100,3,98,2019-04-20,2.15,1,0 +8504666,Brownstone DUPLEX - Near Subway,44782700,Danielle,Brooklyn,Bedford-Stuyvesant,40.68426,-73.91939,Entire home/apt,200,3,63,2019-06-13,1.39,1,354 +8504873,Private Bedroom in Chic East Village Apartment,20338412,Dallas,Manhattan,East Village,40.7298,-73.9791,Private room,149,3,86,2019-06-19,1.88,1,62 +8505781,Immaculate Bedroom,43220439,Annesha,Queens,Jamaica,40.67068,-73.76711,Private room,55,5,29,2019-07-07,0.64,1,314 +8505892,"Bright, Spacious, Art Filled Apt",11241345,Madison,Manhattan,Lower East Side,40.72027,-73.98565,Entire home/apt,275,1,0,,,1,0 +8506167,Brooklyn Basement Apartment,44791079,Mike,Brooklyn,Kensington,40.64291,-73.97928,Entire home/apt,70,1,1,2015-11-02,0.02,1,0 +8506745,Comfy Bed in Clinton Hill Loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96042,Shared room,29,8,41,2019-02-26,0.89,4,53 +8506757,Brownstone in Brooklyn Heights,3599579,Andrew,Brooklyn,Brooklyn Heights,40.69472,-73.99856,Entire home/apt,195,5,94,2019-06-04,2.04,1,26 +8506867,"Sunny, spacious UWS abode with view",258023,Johann,Manhattan,Upper West Side,40.77799,-73.98205,Entire home/apt,220,1,2,2016-03-10,0.05,1,0 +8507219,"NYC Room, NO Extra or Hidden Fees",20985328,​ Valéria,Queens,Astoria,40.76152,-73.92254,Private room,80,5,30,2018-11-05,0.66,2,249 +8507643,Cozy One BR with Ideal Location,5557052,Saket,Queens,Astoria,40.76436,-73.92628,Private room,110,1,5,2017-01-01,0.14,1,0 +8507768,"Charming Bedroom, Prime Manhattan Near Museum Mile",436365,Jessica M.,Manhattan,Upper East Side,40.7696,-73.95275,Private room,70,3,31,2019-05-17,0.68,3,345 +8511404,"Big bed, cosy room, groovy LES apt!",21180293,Illtyd,Manhattan,Chinatown,40.71342,-73.99045,Private room,90,2,47,2019-06-24,1.04,1,28 +8513839,Huge Gorgeous1 Bed Apt Williamsburg,2876700,Anais,Brooklyn,Williamsburg,40.71369,-73.95523,Entire home/apt,130,10,2,2017-07-25,0.04,1,0 +8515213,Studio 250 New York City,44837740,David,Manhattan,Theater District,40.75601,-73.98909,Entire home/apt,2000,1,3,2017-11-06,0.07,1,0 +8516438,Charming East Village Studio,32768581,Veronica,Manhattan,East Village,40.72948,-73.98856,Entire home/apt,149,5,107,2019-06-13,2.84,1,12 +8518051,Cozy Living Environment,44850669,Taft,Bronx,Clason Point,40.81773,-73.86164,Entire home/apt,100,2,58,2019-07-03,1.26,1,324 +8518280,Convenient 1Bdr with Outdoor Space (sleeps 4),4264360,Matt,Brooklyn,Williamsburg,40.71263,-73.9591,Entire home/apt,100,2,6,2017-01-29,0.13,1,0 +8518878,Cute and roomy Bushwick apartment!,4277248,Dorothy,Brooklyn,Bushwick,40.69999,-73.93863,Entire home/apt,125,2,1,2015-11-05,0.02,1,0 +8519400,2 Bedroom Near Meatpacking,44857362,Bao,Manhattan,Chelsea,40.74041,-74.00141,Entire home/apt,200,1,0,,,1,0 +8520094,Quaint 1 Bedroom in Happenin' E.V,44862166,Ed,Manhattan,East Village,40.72689,-73.98676,Entire home/apt,199,1,205,2019-07-06,4.50,1,349 +8520667,Room in 4 Bedroom Brooklyn Apt,9864136,Anthony,Brooklyn,Bushwick,40.68623,-73.91374,Private room,50,1,2,2016-11-01,0.06,26,365 +8520836,HUGE 3Bedroom Duplex in Meatpacking,44866282,Michelle,Manhattan,Chelsea,40.74026,-74.00091,Entire home/apt,300,1,2,2015-09-29,0.04,1,0 +8521188,1 Bed Room BEST LOCATION EPIC VIEWS,684398,Deepak,Manhattan,Hell's Kitchen,40.75744,-73.99269,Entire home/apt,285,4,2,2016-10-09,0.04,1,0 +8521692,Location! Large 1 bedroom oasis w elevator,3321346,Jade,Manhattan,East Village,40.72903,-73.98938,Entire home/apt,330,3,12,2018-11-22,0.32,1,58 +8522395,Harmony House 1 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68793,-73.92179,Private room,39,2,57,2019-06-24,1.25,3,117 +8522756,In the heart of the East Village,44875359,Sandra,Manhattan,East Village,40.72184,-73.98165,Shared room,60,10,0,,,2,0 +8522933,Charming Cottage in Huge Victorian,44018877,Yves,Brooklyn,Flatbush,40.6394,-73.95136,Entire home/apt,77,2,136,2019-07-01,3.00,2,265 +8523688,1BR Railroad Apt in Heart of Wburg,12649916,Mari,Brooklyn,Williamsburg,40.71383,-73.95273,Entire home/apt,115,1,2,2015-10-22,0.04,1,0 +8523742,Uptown Studio With Character,44881523,Russell,Manhattan,Harlem,40.8294,-73.94695,Entire home/apt,99,3,13,2017-08-07,0.28,1,0 +8523910,Tompkins Square/East Village Apt.,44882587,Rachel,Manhattan,East Village,40.72613,-73.98062,Entire home/apt,250,1,1,2015-11-29,0.02,1,0 +8525172,Shared Studio (NO PRIVACY) On The Upper East Side,44887928,Brianna,Manhattan,Upper East Side,40.7851,-73.95254,Shared room,62,1,104,2019-06-23,2.26,1,333 +8525292,Williamsburg home w/Private Garden,44225290,Jacqueline,Brooklyn,Williamsburg,40.71323,-73.94866,Entire home/apt,105,3,26,2017-04-20,0.58,1,0 +8525477,Room in private Victorian house,22420999,Herman,Queens,Richmond Hill,40.69474,-73.83038,Private room,55,1,7,2019-05-18,0.15,5,344 +8530517,"Sundrenched, Beautiful New Reno",16437254,Benjamin,Brooklyn,Sunset Park,40.66406,-73.9949,Entire home/apt,172,30,2,2019-06-13,0.46,21,362 +8531441,"Monthly only, Cozy, Quaint, Central",11234583,Sarah,Manhattan,Midtown,40.75547,-73.96467,Entire home/apt,100,1,0,,,1,0 +8532128,Beautiful UES 1 Bedroom,44923714,Carolyn,Manhattan,Upper East Side,40.7818,-73.95122,Entire home/apt,120,1,0,,,1,0 +8532358,Smile APT in BK,44924968,Stephan,Brooklyn,Crown Heights,40.67677,-73.94804,Private room,60,2,42,2019-01-01,0.94,1,354 +8532763,D Rm 12 Sgl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68347,-73.97971,Private room,72,1,201,2019-06-26,4.45,4,5 +8532876,中央公园旁的现代公寓,34021565,Yujun,Manhattan,Upper West Side,40.79401,-73.96432,Private room,80,1,0,,,1,0 +8533225,Huge Duplex only minutes from NYC,1420715,Omar And Kareema,Brooklyn,Bushwick,40.68821,-73.9187,Entire home/apt,229,3,159,2019-06-16,3.54,3,231 +8533457,"Close to everything, transportation",44924379,Roland,Queens,Jamaica,40.69872,-73.78614,Private room,70,1,68,2019-06-13,1.50,3,349 +8534267,STARTUP SPACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64487,-73.94919,Shared room,40,30,3,2017-01-01,0.07,7,360 +8534893,East Village Gem,406843,Trevor,Manhattan,East Village,40.72904,-73.97946,Private room,99,2,50,2019-06-20,1.10,2,131 +8535125,Stay in Astoria's heart,44932338,Maria,Queens,Astoria,40.7657,-73.92469,Private room,100,2,15,2016-10-01,0.33,1,318 +8535332,Modern Room in Trendy LES,32289994,Michael,Manhattan,Lower East Side,40.72195,-73.98797,Private room,78,4,5,2017-09-07,0.11,1,0 +8535434,Large Soho Studio Loft,19100918,James,Manhattan,SoHo,40.72792,-74.00323,Entire home/apt,125,1,88,2019-06-30,1.91,1,320 +8536270,"Walk to UN, Macy's & Empire State B",44941648,Mike,Manhattan,Murray Hill,40.74648,-73.97726,Entire home/apt,190,3,130,2019-07-02,2.83,1,249 +8536679,East Village Apt for New Years,44875359,Sandra,Manhattan,East Village,40.72367,-73.98131,Shared room,100,15,0,,,2,0 +8537400,Times Square Area Studio,43523900,Shaun,Manhattan,Hell's Kitchen,40.76366,-73.99438,Entire home/apt,135,2,2,2015-10-20,0.04,1,0 +8538077,Cozy bright apt with a touch of rustic charm -,44950182,Dawn,Brooklyn,Cobble Hill,40.68665,-73.99151,Entire home/apt,250,2,23,2019-06-24,1.04,1,0 +8538668,"Spacious, clean studio in Kips Bay",6193870,Erin,Manhattan,Murray Hill,40.74469,-73.97443,Entire home/apt,125,4,0,,,1,0 +8539830,Gorgeous renovated apt w garden,1841463,Baptiste,Brooklyn,Greenpoint,40.72361,-73.94123,Entire home/apt,228,1,0,,,1,0 +8540941,Sunny & Quiet Room in Woodside,6653707,David,Queens,Sunnyside,40.74854,-73.91338,Private room,37,1,0,,,1,0 +8541831,Luxury Apt in Chelsea,44967011,Jose,Manhattan,Chelsea,40.75215,-74.00426,Entire home/apt,116,120,0,,,1,0 +8541991,Comfortable Private Apartment in Heart of Flatbush,27615247,Judy,Brooklyn,Midwood,40.62419,-73.96287,Entire home/apt,99,5,67,2019-06-17,1.83,3,27 +8542461,JFK Airport Spacious and gorgeous Room,14046692,Pedro J,Queens,Howard Beach,40.65918,-73.83038,Private room,50,1,5,2017-10-20,0.24,2,0 +8547335,BedStuy's Chillest,44992001,SidewalksofRIO,Brooklyn,Bedford-Stuyvesant,40.69562,-73.94734,Private room,54,30,9,2016-10-25,0.20,1,0 +8547630,Brand new Building. Great space.,44996314,Chris,Brooklyn,Williamsburg,40.71179,-73.96092,Private room,70,3,26,2018-12-28,0.57,1,0 +8547691,Amazing view from luxury building near Times Sq,44996501,Dave,Manhattan,Hell's Kitchen,40.7633,-73.98591,Private room,135,2,58,2019-05-05,2.16,1,42 +8548971,Reno'ed 2bed/2bath walk-up~East Village~Pristine!,23296023,Nick,Manhattan,East Village,40.72828,-73.98602,Entire home/apt,425,2,95,2019-06-22,2.17,1,0 +8549497,My GREENPOINT apt just for you!,45003774,Fernando,Brooklyn,Greenpoint,40.73248,-73.95237,Entire home/apt,122,5,3,2016-08-24,0.07,1,189 +8550041,NYC Studio outside Columbus Circle,22910743,Noah,Manhattan,Upper West Side,40.77205,-73.98924,Entire home/apt,141,6,2,2015-12-13,0.04,1,0 +8551866,The Epic: Right by MSG,45016174,Jared,Manhattan,Chelsea,40.74789,-73.98953,Entire home/apt,800,1,0,,,1,0 +8552070,Sunny Greenpoint Room,3656083,Juan,Brooklyn,Greenpoint,40.73464,-73.95413,Private room,70,4,17,2019-05-20,0.37,2,159 +8553197,Prospect-Lefferts near Prospectpark,1603471,Arthur,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95287,Private room,90,1,0,,,1,0 +8553287,Cozy 2 Bedroom on famous St Marks,45023742,Anne,Manhattan,East Village,40.72623,-73.98452,Entire home/apt,150,1,2,2016-01-07,0.05,1,0 +8554425,14th St 1BR,45029559,Alex,Manhattan,Chelsea,40.74068,-74.00279,Entire home/apt,250,1,1,2015-09-30,0.02,1,0 +8555250,"Nice small room for 1 person, near Times Square!",45033175,Eugene,Manhattan,Theater District,40.75731,-73.98435,Private room,115,4,122,2019-06-16,2.71,3,29 +8555411,CLEAN/QUIET APT IN UPPER EAST SIDE!,45033715,Mina,Manhattan,Upper East Side,40.7796,-73.94806,Entire home/apt,130,2,19,2016-09-24,0.42,1,0 +8555872,C Rm 11 Dbl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68498,-73.97856,Private room,74,1,241,2019-06-24,5.42,4,4 +8558627,Tulsi's Private Cozy Studio,45045974,Shivaul,Brooklyn,Cypress Hills,40.68173,-73.87314,Private room,48,2,58,2019-04-15,1.34,1,248 +8563025,Cozy Apartment Near Central Park,13313020,Carmen,Manhattan,Hell's Kitchen,40.76389,-73.99072,Shared room,85,1,8,2016-01-02,0.17,1,0 +8563124,Modern Apartment in Charming Nolita,25170062,Ayesha,Manhattan,Nolita,40.72271,-73.99545,Entire home/apt,180,3,2,2016-07-01,0.04,1,0 +8564804,Luxury Studio Apartment with private outdoor space,24632224,Kendra,Brooklyn,Crown Heights,40.67902,-73.96101,Entire home/apt,97,5,2,2016-10-31,0.04,1,0 +8566656,Harlem Cozy One Bedroom,6178560,Alan,Manhattan,Harlem,40.81951,-73.93715,Entire home/apt,131,1,0,,,1,0 +8568094,CONDO big space lots of mirrors,45093051,Vincent,Manhattan,Harlem,40.80255,-73.95347,Private room,100,1,36,2019-06-09,2.52,2,365 +8568363,Spacious 1 Bedroom Available,45094827,Rivkie,Brooklyn,Sheepshead Bay,40.60676,-73.96012,Entire home/apt,100,1,0,,,1,0 +8569534,Cozy 3 BD in the East Village,45100854,Will & Tash,Manhattan,East Village,40.72249,-73.98042,Private room,105,5,74,2018-10-04,1.61,2,0 +8569922,Beautiful Bright Williamsburg Home,3062365,Claudia,Brooklyn,Williamsburg,40.71894,-73.95713,Entire home/apt,100,6,3,2016-01-03,0.07,1,0 +8571594,3 Bdrm Family Friendly Suite,45112353,Sherry & Ivan,Brooklyn,Bedford-Stuyvesant,40.68528,-73.92296,Entire home/apt,145,4,59,2019-05-21,1.37,1,242 +8576773,"Modern, Sunny Apt in West Village",6926778,Maurice,Manhattan,West Village,40.73932,-74.00382,Entire home/apt,289,3,10,2018-08-31,0.22,1,88 +8577949,Large Victorian home in Brooklyn,11623096,Pietta,Brooklyn,Flatbush,40.64697,-73.96465,Entire home/apt,800,3,1,2015-12-21,0.02,1,0 +8582762,1 private bedroom in 3 bedroom apt,45082108,Kristen,Brooklyn,Greenpoint,40.72564,-73.94885,Private room,90,1,0,,,1,0 +8583175,Big Bedroom in Manhattan with an Artist,28272799,Este,Manhattan,Harlem,40.82855,-73.94033,Private room,29,3,27,2018-12-19,0.59,1,0 +8588016,"Big studio in Brooklyn, suitable for 2",45197192,Kathryn,Brooklyn,Prospect-Lefferts Gardens,40.65869,-73.95652,Entire home/apt,70,2,7,2016-07-25,0.15,1,0 +8588357,Spacious Williamsburg with backyard,2636827,Erin,Brooklyn,Williamsburg,40.71795,-73.94273,Private room,80,3,6,2017-01-02,0.16,2,0 +8588390,Sunny private room and bath room.,10312377,Harvey,Manhattan,Harlem,40.80458,-73.94888,Private room,120,3,0,,,1,0 +8588621,Room in beautiful Brownstone Apt,25889382,Erin,Brooklyn,Crown Heights,40.67649,-73.94657,Private room,60,2,79,2019-05-30,1.75,1,268 +8589299,Temporary Stay for 2 Weeks,45203510,Francis,Manhattan,Tribeca,40.72075,-74.00982,Private room,80,1,0,,,1,0 +8589444,Large Sunny Williamsburg Apt Near L Train #1,45204053,Curtis,Brooklyn,Williamsburg,40.71681,-73.9408,Private room,70,5,22,2019-06-01,0.48,2,359 +8589668,"Gorgeous, sun-filled LES 1 bedoom",32228,Brooke,Manhattan,Chinatown,40.7148,-73.99248,Entire home/apt,175,5,16,2019-05-03,0.35,1,0 +8589729,Magnolia House Saint George,45201692,Danforth,Staten Island,St. George,40.64779,-74.0846,Entire home/apt,144,1,105,2019-06-30,2.30,1,258 +8590198,Room in Bright Brooklyn Apt.,32792372,Paul,Brooklyn,Crown Heights,40.66872,-73.95362,Private room,40,2,18,2017-06-30,0.40,1,0 +8590275,Studio midtown west,45208389,Maria Luna,Manhattan,Hell's Kitchen,40.75589,-73.99729,Entire home/apt,340,1,0,,,1,0 +8590777,BEAUTIFUL&BRIGHT 1 bd (E. Village),6346333,Zac,Manhattan,East Village,40.72917,-73.98517,Private room,180,1,27,2017-02-22,0.59,2,0 +8593656,SMALL AND COZY PARISIAN STYLE APT IN EAST HARLEM,45226022,Caroline,Manhattan,East Harlem,40.79802,-73.94003,Private room,75,4,162,2019-06-23,3.55,1,60 +8593798,"Rustic, Warm Decor in Historic Crown Heights",45226868,Jovanna,Brooklyn,Crown Heights,40.67455,-73.93968,Entire home/apt,80,4,56,2019-05-25,1.23,1,343 +8594833,Spacious and Sunny Duplex with Deck,9737872,Michal And John,Brooklyn,Red Hook,40.67521,-74.01103,Entire home/apt,352,3,7,2017-11-26,0.16,1,0 +8595036,Cozy room in the heart of Astoria,45232769,Nadir,Queens,Astoria,40.76685,-73.91762,Private room,69,2,62,2019-06-24,1.37,3,67 +8595149,"Prime location, Renovated,Inspiring",45231777,Elena,Manhattan,Upper East Side,40.76517,-73.96665,Entire home/apt,150,2,134,2019-06-28,2.95,1,36 +8595191,Greenwich Village Hotspot,19564640,Dave,Manhattan,Greenwich Village,40.73008,-74.0005,Entire home/apt,500,1,0,,,1,0 +8595346,Elegant Brooklyn Heights 2 BR Apt,642004,John,Brooklyn,Brooklyn Heights,40.69162,-73.99252,Entire home/apt,250,30,6,2016-07-31,0.14,1,0 +8595349,BEAUTIFUL&BRIGHT 2bd/2ba(E Village),6346333,Zac,Manhattan,East Village,40.72756,-73.98588,Entire home/apt,280,4,2,2016-05-28,0.05,2,0 +8595394,Sunny Room in Renovated Brooklyn Townhouse,6424258,Alihan,Brooklyn,Clinton Hill,40.69589,-73.96261,Private room,55,3,16,2019-05-12,0.37,1,0 +8597141,"Private Room, 15min from MANHATTAN",43908809,M&L,Queens,Woodside,40.74921,-73.9037,Private room,50,1,3,2016-06-08,0.07,3,65 +8597265,"Cozy 1 BR on Bedford Avenue, Wburg",43298844,Christina,Brooklyn,Williamsburg,40.71764,-73.95689,Private room,49,1,1,2016-01-03,0.02,1,0 +8603083,Park Slope Light and Location,21734605,Jenn,Brooklyn,Park Slope,40.67786,-73.97412,Private room,135,4,0,,,2,0 +8605739,Bedroom in artist apartment,3210447,Caitlin,Brooklyn,Bushwick,40.69784,-73.9284,Private room,45,4,2,2016-11-01,0.05,1,0 +8608243,Boerum Hill Central Downtwn BK Apt!,28781526,Devon,Brooklyn,Downtown Brooklyn,40.68879,-73.98127,Entire home/apt,150,1,68,2019-04-29,1.49,1,74 +8608841,3BR Private Williamsburg Apartment,17258663,Christopher,Brooklyn,Williamsburg,40.71006,-73.95726,Entire home/apt,120,3,1,2016-05-24,0.03,1,0 +8609130,Great Nolita Apartment!,2520559,Victoria,Manhattan,SoHo,40.72214,-73.99793,Entire home/apt,150,2,89,2019-06-02,1.94,1,55 +8609779,Spacious Brooklyn Home Close to NYC,4586854,Ajna,Brooklyn,Bedford-Stuyvesant,40.68552,-73.95328,Entire home/apt,120,30,143,2019-04-16,3.17,1,221 +8610093,Spacious One bedroom apartment,45295976,Nicholas,Manhattan,Morningside Heights,40.81281,-73.95882,Entire home/apt,80,14,3,2017-01-05,0.07,1,0 +8611817,Central Park North Apt,45303998,Sheying,Manhattan,Harlem,40.80171,-73.95303,Private room,60,5,78,2019-06-17,2.32,1,30 +8612715,"NYC-Room,NoHiddenFees+FreeBreakfast",20985328,​ Valéria,Queens,Astoria,40.76258,-73.92141,Private room,70,3,1,2015-10-12,0.02,2,36 +8613175,Time SQ Dream Suite in Midtown w/ Projector,27018630,Richard,Manhattan,Hell's Kitchen,40.76069,-73.99068,Entire home/apt,239,2,163,2019-07-05,4.18,1,118 +8614125,Cozy One Bedroom -Beautiful Terrace,45315085,Anthony,Manhattan,Upper West Side,40.77866,-73.98065,Entire home/apt,275,1,0,,,1,0 +8614204,"Top (2nd) Floor Limestone +Ideal for Large Groups",1367316,Deb,Brooklyn,Prospect-Lefferts Gardens,40.66301,-73.95487,Entire home/apt,89,2,58,2019-05-20,1.50,1,279 +8614790,Prime Park Slope apartment,45318624,Max,Brooklyn,Park Slope,40.67858,-73.97902,Entire home/apt,300,1,0,,,1,0 +8614862,Sunny Bedroom with a huge window,6272317,Mariana,Manhattan,Washington Heights,40.84957,-73.93959,Private room,50,3,6,2018-02-19,0.13,1,0 +8615012,Private Tent - Shared Room (Bed-2),44620317,Claudia,Queens,Corona,40.73977,-73.85777,Shared room,37,1,34,2018-09-21,0.76,4,362 +8615062,WEST VILLAGE CHARM - BEST LOCATION!,45319781,Jenny,Manhattan,West Village,40.73464,-74.00084,Entire home/apt,239,1,272,2019-07-07,5.98,1,305 +8615333,Amazing Duplex Loft in Williamsburg,14035150,Stephanie,Brooklyn,Williamsburg,40.71186,-73.95098,Entire home/apt,190,4,0,,,1,0 +8615681,Charming Artistic Loft with Terrace,3699016,Veronika,Brooklyn,Bedford-Stuyvesant,40.67912,-73.9506,Entire home/apt,150,4,12,2017-09-27,0.27,2,0 +8616102,Cozy Upper East Side Apartment,13487080,Mary,Manhattan,Upper East Side,40.77065,-73.95205,Private room,150,1,1,2015-10-11,0.02,1,0 +8616888,THE LINCOLN DUPLEX - 5 BEDROOMS,9209820,Althea,Brooklyn,Crown Heights,40.67017,-73.94852,Entire home/apt,360,3,12,2018-10-15,0.37,3,261 +8620134,CHARM & LOCATION! Private Ensuite Bathroom in UES!,17428203,Christine,Manhattan,Upper East Side,40.77127,-73.95175,Private room,115,7,90,2019-06-28,1.97,2,23 +8621113,Charming Mini Loft/ Lower East Side,4308094,Laure,Manhattan,Lower East Side,40.71848,-73.99091,Entire home/apt,150,1,2,2016-04-13,0.04,1,0 +8621133,✪ Friends & Family Downtown ✪ 2BR / 3 Bed ✪ Best !,41420696,Camila,Manhattan,Lower East Side,40.72135,-73.98915,Entire home/apt,207,4,84,2019-06-23,2.16,1,88 +8622301,Astoria Full Basement Apartment,45354224,'Cil,Queens,Astoria,40.76914,-73.92118,Private room,120,2,240,2019-07-01,5.22,1,298 +8622987,Huge luxury 1 bedroom apt in Fidi,4228414,Lucy,Manhattan,Financial District,40.7083,-74.00415,Entire home/apt,160,7,1,2016-09-03,0.03,1,0 +8623370,Private luxury apartment,45359132,Patricia,Queens,Queens Village,40.72001,-73.75402,Entire home/apt,85,2,57,2019-07-01,1.26,1,317 +8623922,Red Hook Brooklyn Apartment,11796122,Candace,Brooklyn,Red Hook,40.67916,-74.00467,Entire home/apt,100,1,2,2015-10-05,0.04,1,0 +8624104,Large and Sunny Private Room near Prospect Park,45293333,Melody,Brooklyn,Flatbush,40.65336,-73.95305,Private room,45,2,3,2019-05-01,0.69,1,249 +8627561,Carroll Gardens Studio,17286936,Stephanie,Brooklyn,Carroll Gardens,40.6787,-73.99857,Entire home/apt,160,5,79,2019-07-06,1.72,1,271 +8627973,"2BR2BA apartment, PRIVATE bathroom & AC inside",19303369,Hiroki,Queens,Elmhurst,40.74073,-73.87591,Private room,40,29,1,2019-05-31,0.77,37,30 +8628425,LRG furnished Loft Space,4481005,Karen,Brooklyn,Park Slope,40.67397,-73.98237,Private room,49,2,43,2019-04-27,0.94,2,283 +8628970,"1BR available in Bedstuy, Brooklyn!",45383901,Eric,Brooklyn,Bedford-Stuyvesant,40.69333,-73.94184,Private room,40,1,0,,,1,0 +8629187,ARTSY UNIQUE GIANT TWO FLOOR APARTMENT,200782,Keith,Manhattan,Kips Bay,40.74262,-73.98063,Entire home/apt,495,15,4,2017-05-20,0.09,1,0 +8630185,Bedford Ave N. WBurg Room in 2BR-2,28709982,Sidiq,Brooklyn,Greenpoint,40.72014,-73.95496,Private room,89,3,19,2018-05-30,0.42,3,76 +8630560,Romantic 2-Bedroom UWS Charmer!,33200173,Paige,Manhattan,Upper West Side,40.78709,-73.97755,Entire home/apt,220,3,7,2018-11-25,0.16,2,4 +8630662,Most desired EastVillage retreat,45391169,Tania,Manhattan,East Village,40.72781,-73.98398,Private room,99,2,78,2019-06-20,1.71,1,363 +8630853,East Village Apartment,27504587,Megan,Manhattan,East Village,40.72979,-73.98905,Entire home/apt,160,1,0,,,1,0 +8631355,One Bedroom Available in 2BR APT,19480603,Michele,Brooklyn,Crown Heights,40.67589,-73.95196,Private room,80,5,2,2016-07-31,0.04,1,0 +8632393,Brooklyn's Coolest One Bedroom,4920604,Eric,Brooklyn,Williamsburg,40.71872,-73.9603,Private room,78,2,23,2016-10-31,0.51,1,0 +8634024,East Williamsburg Bedroom,45399701,Dorthy,Brooklyn,Williamsburg,40.70828,-73.94572,Private room,110,1,1,2015-10-12,0.02,1,0 +8634515,"★ Hidden Gem. Spacious. Restaurants, Cafés Galore.",24188973,Lei,Manhattan,Harlem,40.80449,-73.94743,Entire home/apt,130,31,31,2019-05-27,0.69,1,66 +8635363,Studio in Amazing UES Location,20008462,Sara,Manhattan,Upper East Side,40.76643,-73.95809,Entire home/apt,150,1,2,2016-03-18,0.05,1,0 +8635762,"Studio Close To LIJ, JFK.Private Entry,欢迎中国朋友来住",45404928,Joan,Queens,Queens Village,40.71412,-73.73008,Entire home/apt,59,1,113,2019-07-07,2.79,1,346 +8635964,Cozy Williamsburg Apartment,2568318,Katie,Brooklyn,Williamsburg,40.7172,-73.95983,Private room,80,9,1,2015-10-14,0.02,1,0 +8636811,Amazing bedroom in South Harlem !,45329725,Alexis,Manhattan,Harlem,40.80316,-73.95447,Private room,80,3,1,2015-10-27,0.02,1,0 +8642428,Village apt on tree-lined street,45433475,Richard,Manhattan,East Village,40.72976,-73.98245,Entire home/apt,160,2,8,2016-06-17,0.18,1,0 +8642982,Cozy BK RM for 2! 30min > Manhattan,13440686,Samuel,Brooklyn,Bedford-Stuyvesant,40.68233,-73.91001,Private room,45,1,87,2017-08-28,1.90,1,0 +8643939,Private Bedroom in Upper East Side,32970856,Jason,Manhattan,Upper East Side,40.78406,-73.95294,Private room,94,14,1,2015-11-25,0.02,1,0 +8646618,NYC suite w/ Bath & Balcony near LGA JFK Manhattan,10164435,Stella,Queens,Astoria,40.7571,-73.92792,Private room,77,1,254,2019-06-24,5.61,3,11 +8647773,Park Slope Brooklyn brownstone apt,7374372,Julie,Brooklyn,Park Slope,40.67374,-73.97976,Entire home/apt,149,6,108,2019-07-06,2.38,1,268 +8648134,5star review Beautiful&Spacious Apt,15954226,Jen,Brooklyn,Bedford-Stuyvesant,40.68222,-73.95284,Entire home/apt,130,7,2,2015-11-02,0.04,1,0 +8648818,Private Bedroom + Live/Workspace - best location!,2591842,Alan,Queens,Astoria,40.75758,-73.9206,Private room,57,3,2,2018-12-27,0.19,1,5 +8649144,Spacious & Bright 1BR Williamsburg,8733761,Eli,Brooklyn,Williamsburg,40.70821,-73.95187,Entire home/apt,150,5,9,2016-10-16,0.20,1,0 +8649999,Cozy private room in Queens NY,45464080,Paula,Queens,Jackson Heights,40.75167,-73.89171,Private room,55,4,6,2015-12-23,0.13,1,249 +8650076,NYC luxury apt in W Style building,9094952,Marisa,Manhattan,Financial District,40.70428,-74.01067,Entire home/apt,127,2,3,2016-04-27,0.07,1,0 +8650119,BAYRIDGE LOVELY ROOM.,8137499,Moni,Brooklyn,Bay Ridge,40.6328,-74.02748,Private room,60,2,20,2017-07-02,0.44,1,363 +8650854,Beautiful and Large Private Room 1Block from train,21508828,Nguyen,Manhattan,Washington Heights,40.85289,-73.93508,Private room,64,1,16,2019-01-02,0.36,2,249 +8651132,Simple clean room,9917136,Rani,Brooklyn,Crown Heights,40.677,-73.92363,Private room,40,1,22,2019-04-20,0.50,3,67 +8651887,Cool and cozy room in the Heights,45471621,Sean,Manhattan,Washington Heights,40.85041,-73.92645,Private room,50,3,122,2019-06-28,2.68,1,199 +8652556,A Rm 8 Dbl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68522,-73.97856,Private room,83,1,202,2019-06-25,4.53,4,0 +8652653,Whole apartment in Greenpoint.,21169602,Jonathan,Brooklyn,Greenpoint,40.72714,-73.95088,Entire home/apt,200,1,3,2019-03-31,0.11,1,0 +8652729,Beautiful room in a great location NYC!,4154037,Rajiv,Manhattan,Harlem,40.82305,-73.94555,Private room,49,14,25,2019-06-15,0.55,2,276 +8652866,B Rm 9 Sgl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68477,-73.97833,Private room,60,1,194,2018-09-30,4.29,4,0 +8653449,Private room with Shared Bathroom,31598220,Adishwar,Queens,Jackson Heights,40.74766,-73.88949,Private room,45,20,1,2016-06-20,0.03,1,0 +8653999,Charming Upper West Side Apartment,43219894,Lauren,Manhattan,Upper West Side,40.78322,-73.97435,Entire home/apt,180,1,2,2016-11-27,0.04,1,0 +8654929,Tranquilo y soleado XL Bushwick loft w/breakfast,39031994,Florencia,Brooklyn,Bushwick,40.69428,-73.90679,Private room,45,2,4,2018-12-15,0.34,1,34 +8662518,Beautiful Brooklyn Basement Studio,24856634,Luis,Brooklyn,Bay Ridge,40.63461,-74.03164,Entire home/apt,89,2,101,2019-06-24,2.26,1,291 +8662610,Private Room - BedStuy - 2 Flr Unit,45513630,Thomas,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94485,Private room,25,2,1,2015-11-12,0.02,1,0 +8662997,2 BEDROOM IN WILLIAMSBURG MINUTES FROM MANHATTAN,45468039,Kevin,Brooklyn,Williamsburg,40.71871,-73.95862,Entire home/apt,285,2,53,2019-05-26,1.20,1,13 +8663101,Large room in UWS 92nd near RivPark,45516192,Philip,Manhattan,Upper West Side,40.7936,-73.97442,Private room,100,5,91,2019-06-17,2.07,1,279 +8663831,Room in a beautiful apartment,16339935,Amy,Queens,Long Island City,40.75819,-73.93213,Private room,90,3,1,2015-10-24,0.02,1,0 +8664611,Affordable Luxury Minutes to Manhattan,45519775,Ayman,Staten Island,Randall Manor,40.62859,-74.12272,Entire home/apt,75,2,131,2019-07-02,2.85,1,310 +8664615,Stylish Astoria Apartment,45446889,Justin,Queens,Astoria,40.76707,-73.91473,Entire home/apt,75,3,1,2016-08-31,0.03,1,0 +8664721,Private room & bathroom in the sky,23073564,Evan,Manhattan,Midtown,40.74576,-73.98146,Private room,200,2,150,2018-10-21,3.32,1,0 +8664965,shared space with Great location!!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59852,-73.95481,Shared room,35,1,116,2019-06-25,2.55,5,351 +8665047,Zen Apartment With Backyard,17074459,Mattan,Manhattan,East Village,40.7316,-73.98543,Entire home/apt,297,1,9,2017-06-19,0.24,3,0 +8665778,Huge loft type 1 bedroom in NYC,22044830,Sol,Brooklyn,Bushwick,40.68697,-73.91592,Private room,150,1,0,,,1,0 +8667280,3BR w/ Patio by Subway (Rate covers 4 guests),31876150,Rose-Marie,Brooklyn,Sunset Park,40.66567,-73.99509,Entire home/apt,195,3,116,2019-06-23,2.56,1,38 +8667450,Bushwick Brooklyn 1 Bedroom,45533710,John,Brooklyn,Bushwick,40.70498,-73.92115,Entire home/apt,80,3,4,2017-12-12,0.15,1,0 +8668115,Zen Room in Crown Heights Brooklyn,8996336,Laura,Brooklyn,Crown Heights,40.67255,-73.94914,Private room,50,500,10,2016-09-22,0.22,1,365 +8668418,Times Square Area Neat & clean and exclusive AAA+,22251283,Nir,Manhattan,Hell's Kitchen,40.75679,-73.99547,Entire home/apt,115,30,18,2019-05-19,0.41,4,37 +8668701,Centrally Located Park Slope Duplex,11540159,Summer,Brooklyn,Park Slope,40.67376,-73.98195,Entire home/apt,70,5,4,2018-08-22,0.26,2,0 +8668932,Bright and Artsy Crown Heights Apt!,10595966,Jennifer,Brooklyn,Crown Heights,40.66687,-73.95662,Entire home/apt,119,4,13,2018-06-05,0.29,1,0 +8671663,Two bus stops to World Trade Center,45550171,Michael,Staten Island,Concord,40.60514,-74.07367,Entire home/apt,120,1,26,2019-02-16,0.58,1,333 +8671786,Room in pre-war space,6639602,Allie,Brooklyn,Williamsburg,40.71151,-73.96665,Private room,400,3,0,,,1,0 +8672280,Large Studio - Midtown Manhattan Near Times Sq,4068325,Regina,Manhattan,Midtown,40.75594,-73.96874,Entire home/apt,250,3,8,2019-06-16,0.19,1,1 +8673141,Near Yankee Stadium,45557152,Rodney,Bronx,Morrisania,40.82424,-73.91316,Entire home/apt,225,1,0,,,1,0 +8676240,Comfortable & Clean Zen Bedroom,27973696,Sarah,Manhattan,Washington Heights,40.83401,-73.94254,Entire home/apt,45,1,1,2016-02-07,0.02,1,0 +8679596,1 bedroom in nyc,4360949,Denetrias,Manhattan,Hell's Kitchen,40.76366,-73.98849,Entire home/apt,260,1,0,,,1,0 +8680417,Sunny beautiful home Audubon Distr,12190039,Lyndell,Manhattan,Washington Heights,40.83591,-73.94777,Entire home/apt,155,5,3,2016-05-23,0.08,2,0 +8681709,Shared living in New York City,1644914,Obi,Manhattan,Kips Bay,40.73842,-73.98008,Shared room,97,1,1,2015-11-15,0.02,1,0 +8681776,"20 Mins to Manhattan, 7 mins LGA",17794638,Burak,Queens,Ditmars Steinway,40.77442,-73.91465,Private room,75,2,4,2016-10-01,0.12,1,0 +8682875,Stylish 1 BDR in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76942,-73.96705,Entire home/apt,155,30,7,2019-05-03,0.19,12,52 +8683432,Spacious Apartment in Midtown West!,45598282,Niki,Manhattan,Hell's Kitchen,40.76414,-73.99296,Entire home/apt,237,3,6,2016-11-28,0.15,2,0 +8683482,Perfect room in Williamsburg loft,45598132,Jacob,Brooklyn,Williamsburg,40.71358,-73.95906,Private room,80,5,0,,,1,0 +8683610,Beautiful one bedroom in Tribeca!,28518140,Sophie,Manhattan,Tribeca,40.7252,-74.01054,Entire home/apt,250,3,8,2016-07-28,0.18,1,0 +8683858,纽约之家(PrivateBathroom4),45600001,Amy,Queens,Flushing,40.74491,-73.83355,Private room,60,1,27,2019-05-27,0.59,3,76 +8684074,The Tranquility Room-large & light,45601111,Dlb,Queens,Laurelton,40.67168,-73.74744,Private room,42,2,54,2018-05-27,1.22,5,189 +8684082,Spacious Room in Hell's Kitchen!!,45598282,Niki,Manhattan,Hell's Kitchen,40.76443,-73.99219,Private room,105,3,17,2017-01-02,0.40,2,0 +8684292,Times Sq/Restaurant Row Apartment,45601660,John,Manhattan,Hell's Kitchen,40.759,-73.98894,Entire home/apt,300,1,0,,,1,0 +8684886,Private Entrance Bed & Bath with Garden and Deck,45604174,Jennifer,Brooklyn,South Slope,40.668,-73.98702,Private room,120,2,125,2019-07-05,2.75,1,177 +8685857,Spacious Brooklyn Getaway,42713726,Emily,Brooklyn,Crown Heights,40.66882,-73.95396,Private room,80,1,1,2016-01-05,0.02,1,0 +8686040,LARGE MANHATTAN ONE BEDROOM,45608786,Virginia,Manhattan,Washington Heights,40.85845,-73.92861,Entire home/apt,125,1,6,2015-11-22,0.13,1,0 +8686167,"1BR, Steps from the 7 Train",20234611,Tyler,Queens,Sunnyside,40.74454,-73.92394,Entire home/apt,125,1,14,2017-01-01,0.33,1,0 +8686361,Elegant Queen size bed room.,24597265,Freda,Queens,Ditmars Steinway,40.77114,-73.90968,Private room,50,14,2,2018-11-30,0.06,8,317 +8687096,Full Floor in Sunny Brooklyn Duplex,45613202,Miles,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95548,Private room,60,2,10,2018-07-28,0.22,1,0 +8687556,NYC Garden apartment next to trains/restaurants,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97418,Entire home/apt,90,4,68,2019-07-01,1.78,2,267 +8687767,"Prime East Village, Sunny room",3856750,Sabra,Manhattan,East Village,40.7229,-73.98313,Private room,60,5,0,,,2,0 +8688783,Fun Unique Spacious Midtown Getaway,45620787,William,Manhattan,Upper East Side,40.7644,-73.9693,Entire home/apt,275,2,148,2019-06-23,3.26,1,216 +8689608,Charming and Modern Home Base,19808319,Lilian,Manhattan,Harlem,40.80706,-73.94665,Private room,100,30,146,2019-05-07,3.22,2,44 +8691258,Luxury Apartment by Time Square,45632792,Nickie,Manhattan,Theater District,40.7599,-73.98542,Private room,200,1,1,2015-10-13,0.02,2,0 +8693545,Great affordable room.,42421006,Jose,Manhattan,Washington Heights,40.84874,-73.94202,Private room,99,1,129,2019-01-24,3.75,2,299 +8698671,Perfect 8th Avenue Apt in Chelsea,45667135,Jen,Manhattan,Chelsea,40.7411,-74.00184,Private room,112,5,31,2016-06-18,0.68,1,0 +8698962,Brooklyn loft with huge livingroom,9166253,Jonas,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95826,Private room,65,1,1,2015-10-11,0.02,2,0 +8703355,Eclectic 1 Bdrm off Park Ave South,7991797,Jamaal,Manhattan,Midtown,40.74509,-73.98268,Entire home/apt,200,1,9,2016-04-08,0.20,1,0 +8703711,Cozy Suite near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66159,-73.94129,Entire home/apt,98,5,135,2019-06-19,2.96,4,102 +8703888,Private room with Full size Bed M,30791331,Tsepak,Queens,Jackson Heights,40.7553,-73.88702,Private room,50,2,49,2019-01-02,1.08,2,356 +8704348,Spacious & Artsy Astoria Apartment,9376458,Jorge,Queens,Astoria,40.76512,-73.92431,Entire home/apt,135,3,11,2016-10-02,0.24,1,0 +8704528,Private bedroom & bath in Red Hook Bklyn for solo,45694156,Marjorie,Brooklyn,Red Hook,40.67807,-74.01397,Private room,50,1,190,2019-06-27,4.23,1,188 +8704967,UES Studio with backyard,45696732,Carol,Manhattan,Upper East Side,40.77858,-73.95059,Entire home/apt,145,4,2,2016-07-05,0.05,1,0 +8709068,Great UWS apt with amazing terrace!,43820172,Paul,Manhattan,Upper West Side,40.79494,-73.96545,Entire home/apt,450,28,0,,,1,365 +8709326,East 60's - Amazing Private Room,41638669,Karan,Manhattan,Upper East Side,40.76574,-73.95875,Private room,141,1,2,2015-10-29,0.04,1,0 +8712309,Large and cosy room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69473,-73.93437,Private room,110,2,86,2019-07-02,1.90,7,316 +8712745,Private Room Near Central Park -UWS,22502130,Laura,Manhattan,Upper West Side,40.8005,-73.96211,Private room,107,2,0,,,1,0 +8713401,Walk to beach...Brighton Beach 2BD,1613244,Ariel,Brooklyn,Brighton Beach,40.58176,-73.96264,Entire home/apt,110,30,7,2018-08-08,0.19,9,284 +8713685,Brooklyn Apt w/ Recording Studio,9739435,Maureen And Ned,Brooklyn,Gowanus,40.67475,-73.99707,Entire home/apt,1000,2,0,,,1,365 +8717373,West Village 2 Bed/2 Bath Loft Apt!,10111580,Jen,Manhattan,West Village,40.73406,-74.00963,Entire home/apt,299,2,2,2016-01-05,0.05,1,0 +8719522,Charming Upper East Side apt,2610741,Olivia,Manhattan,Upper East Side,40.775,-73.95071,Entire home/apt,190,2,26,2019-07-01,0.58,1,42 +8719788,"Big, Convenient, Working Fireplace!",18052038,Caroline,Brooklyn,Fort Greene,40.68601,-73.97813,Entire home/apt,175,1,0,,,1,0 +8719948,Private Bedroom in Nolita/Soho,3869531,Mei,Manhattan,Nolita,40.72143,-73.99427,Private room,70,3,13,2016-06-20,0.29,1,0 +8719984,Charming STUDIO w/ PATIO MIDTOWN,42788011,Ambria,Manhattan,Kips Bay,40.74279,-73.97833,Entire home/apt,75,1,4,2017-07-02,0.09,1,0 +8720070,Central & Cute Studio by Union Sq!,4319369,Sarena,Manhattan,Gramercy,40.73438,-73.9853,Entire home/apt,155,3,17,2016-08-10,0.37,1,0 +8720655,UES - True 1 BR | Clean & Quiet,729279,Corey,Manhattan,Upper East Side,40.77243,-73.95016,Entire home/apt,96,2,34,2019-06-24,0.75,1,0 +8720865,Spacious Brooklyn Home w/ Backyard,2636827,Erin,Brooklyn,Williamsburg,40.7171,-73.94289,Entire home/apt,350,3,2,2016-01-02,0.04,2,0 +8720923,Sunny and Spacious Private Bedroom,41324442,Richard,Manhattan,Lower East Side,40.71971,-73.98494,Private room,90,4,59,2019-07-01,1.36,1,2 +8721348,Midcentury Modern Duplex 3BR/2BA in Times Square,45774138,Jeff & Stephanie,Manhattan,Hell's Kitchen,40.76302,-73.98833,Entire home/apt,500,3,55,2019-06-24,1.23,1,46 +8721414,Charming private bedroom Park Slope,8315176,Dharshana,Brooklyn,South Slope,40.66852,-73.9895,Private room,40,1,0,,,1,0 +8721444,Huge Apt on Central Park South,45774825,Saman,Manhattan,Midtown,40.7675,-73.98228,Entire home/apt,175,7,15,2018-07-08,0.34,1,0 +8722224,"$1,400/month Summer Rental: Spacious One Bdrm",45778782,Genéa,Brooklyn,Prospect-Lefferts Gardens,40.65949,-73.94852,Entire home/apt,50,5,1,2015-12-23,0.02,1,0 +8729771,Private Studio Apartment in Harlem,2101644,Tom,Manhattan,Harlem,40.82248,-73.94891,Entire home/apt,130,1,289,2019-06-19,6.46,1,217 +8729819,Spacious Room in East Willamsburg,3910533,Paolo,Brooklyn,Williamsburg,40.70696,-73.94349,Private room,90,2,1,2015-10-18,0.02,1,0 +8729960,"huge, clean and great loft space",420111,Angie,Manhattan,East Harlem,40.79699,-73.93882,Private room,65,2,38,2019-04-30,0.83,2,270 +8731224,"Bright, cozy East Village apartment",45815117,Kacy,Manhattan,East Village,40.72895,-73.98789,Entire home/apt,200,1,1,2016-05-31,0.03,1,0 +8731667,ENTERING WINTER FESTIVALS,38914517,Jean,Brooklyn,Flatbush,40.64201,-73.95425,Entire home/apt,63,5,35,2019-06-12,0.78,2,98 +8732919,Private room in Upper West Side,960850,Francia,Manhattan,Upper West Side,40.80093,-73.96308,Private room,110,1,2,2018-12-17,0.07,1,0 +8733472,20 mins to Manhattan Entire Studio,475986,Mary Beth,Queens,Kew Gardens,40.71065,-73.83015,Entire home/apt,100,1,14,2019-01-01,0.31,1,90 +8733480,"Apartment on upper west side, NYC",45823919,Ed,Manhattan,Morningside Heights,40.81669,-73.96029,Private room,60,2,11,2017-06-10,0.25,1,188 +8733620,Lg private room minutes from subway,3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69053,-73.95632,Private room,45,5,32,2017-12-26,0.70,4,0 +8734174,Sunny Duplex w/Private Roof Deck Monthly Rental,19808319,Lilian,Manhattan,Harlem,40.80864,-73.95007,Entire home/apt,117,28,125,2018-11-17,2.77,2,29 +8735399,Spacious + Cozy Loft in Williamsburg,22171747,Aaron,Brooklyn,Williamsburg,40.71104,-73.96113,Entire home/apt,175,5,10,2019-06-13,0.23,1,32 +8736827,Rain or Shine Studios: Dedicated to Production,45837698,Brian,Brooklyn,Sheepshead Bay,40.58599,-73.92762,Entire home/apt,2000,1,1,2015-10-27,0.02,1,365 +8736934,Great sun drenched room near park!,12639098,Imrul,Brooklyn,Flatbush,40.65315,-73.95538,Private room,60,1,0,,,1,0 +8736973,Cozy Studio for your Business Trip,45837872,Faith,Manhattan,Midtown,40.75531,-73.9655,Private room,148,1,30,2019-07-04,0.84,1,16 +8737468,Spacious Private Room,16934136,Tracey,Queens,Queens Village,40.71341,-73.74804,Private room,65,1,0,,,1,0 +8737991,Master Bedroom in Roofdeck Lux Apt,5270447,Sean,Brooklyn,Bushwick,40.70076,-73.92828,Private room,150,4,0,,,1,0 +8738025,An Exquisite Private Bedroom.,44508730,Cadet,Brooklyn,Prospect-Lefferts Gardens,40.65973,-73.94826,Private room,100,1,5,2017-10-29,0.22,1,89 +8738086,Furnished 2BR in the UES (94th and 2nd),23772724,Elem,Manhattan,Hell's Kitchen,40.76612,-73.98545,Entire home/apt,200,30,3,2018-04-30,0.07,15,336 +8738438,Harlem Haven - Stunning Duplex,3784682,Trace,Manhattan,Harlem,40.80745,-73.9418,Entire home/apt,650,2,1,2017-03-05,0.04,1,0 +8739326,1BR APT in LES with PRIVATE BACKYARD,2851789,Raquel,Manhattan,Chinatown,40.71569,-73.99174,Entire home/apt,199,2,18,2019-06-15,1.28,1,1 +8740683,AMAZING 2BR Apartment Elev/laundry!,1475015,Mike,Manhattan,Midtown,40.7569,-73.96408,Entire home/apt,115,30,1,2017-01-27,0.03,52,341 +8741020,Voted #1 Location Quintessential 1BR W Village Apt,45854238,John,Manhattan,West Village,40.73631,-74.00611,Entire home/apt,245,3,51,2018-09-19,1.12,1,0 +8741446,"Clean, inviting apt.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77058,-73.91091,Entire home/apt,187,6,57,2019-06-09,1.33,8,275 +8741489,Awesome Private Artist Studio for FEMALE Traveler,45857976,J.,Manhattan,Harlem,40.8186,-73.94413,Entire home/apt,88,2,24,2019-06-29,0.53,1,39 +8741676,"Spacious 2BR, close to central park",45859613,Emma,Manhattan,Upper West Side,40.77812,-73.98067,Entire home/apt,280,1,1,2015-10-13,0.02,1,0 +8742567,Alcove Studio in Heart of Chelsea!,45864201,Lindsay B,Manhattan,Chelsea,40.74043,-73.99913,Entire home/apt,200,1,0,,,1,0 +8743269,Studio: Heart of Harlem w backyard,12226733,Henna,Manhattan,Harlem,40.81132,-73.94496,Entire home/apt,95,2,1,2015-10-20,0.02,1,0 +8750772,Charming East Village Corner 2 BD,24032852,Jessica,Manhattan,East Village,40.72774,-73.97934,Entire home/apt,260,2,170,2019-07-01,3.85,1,236 +8750901,Prime Location 63rd St + First Ave,45897508,Antonio,Manhattan,Upper East Side,40.76127,-73.95815,Entire home/apt,148,2,1,2015-12-29,0.02,1,0 +8752714,HUGE STUDIO! LOFT STYLE! PRIVATE !,1475015,Mike,Manhattan,Midtown,40.75618,-73.966,Entire home/apt,100,30,2,2016-04-17,0.05,52,365 +8753832,"Bright, airy, private room/shared bath-W Harlem",21180442,Ed,Manhattan,Harlem,40.82219,-73.9448,Private room,100,1,58,2019-06-23,1.27,1,78 +8754339,Gran Fondo Cyclist Haven,20261309,Sarah,Manhattan,Washington Heights,40.8465,-73.94319,Shared room,60,1,0,,,1,0 +8754560,Manhattan Private Room with a Garden View (Room 1),45913415,Grisula,Manhattan,Harlem,40.81146,-73.94589,Private room,64,3,142,2019-07-06,3.12,2,210 +8755259,1 BR in Carroll Gardens Townhouse,7706697,Barbara,Brooklyn,Carroll Gardens,40.67763,-73.99628,Private room,125,2,30,2019-06-27,0.67,2,80 +8756017,BronxHattan,26129793,Corey,Bronx,Fordham,40.86711,-73.89525,Private room,65,1,0,,,1,0 +8757920,CathedraNYC,8235517,Valjean,Manhattan,Harlem,40.81925,-73.94073,Entire home/apt,110,2,4,2017-07-23,0.11,1,0 +8758534,Large 3 bdrm apt in Manhattan (downtown) village,45619483,Lesley,Manhattan,East Village,40.73138,-73.99002,Entire home/apt,745,1,0,,,1,0 +8759876,Stylish 1BR apt in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76942,-73.96614,Entire home/apt,140,30,5,2019-04-12,0.15,12,0 +8760003,Cozy Room in Willamsburg Loft,45937698,Rhea,Brooklyn,Greenpoint,40.72604,-73.95536,Private room,35,1,9,2017-03-06,0.20,1,0 +8760442,Private studio in Jackson Heights w/free parking,45937956,Fahim,Queens,Jackson Heights,40.75115,-73.8939,Entire home/apt,85,3,91,2019-06-24,2.11,2,50 +8760775,Lexington Avenue Luxury Condominium,45941254,Tianyou,Manhattan,Murray Hill,40.7494,-73.97823,Private room,111,1,4,2015-10-30,0.09,1,0 +8761013,"STUNNING 1661SFT, SOHO/TRIBECA LOFT",18062807,Marcelo,Manhattan,SoHo,40.72613,-74.00826,Entire home/apt,399,90,5,2018-05-02,0.11,1,365 +8761292,Private Tent- Shared Room (Bed 1),44620317,Claudia,Queens,Corona,40.74049,-73.85607,Shared room,40,1,39,2019-07-01,0.87,4,351 +8761451,Chic Bachelorette Pad,45944532,Deborah,Manhattan,Greenwich Village,40.73076,-73.99567,Entire home/apt,300,1,0,,,1,0 +8762135,2 Bedroom in Trendy Clinton Hill,4277896,Tzooli And Ay,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95976,Private room,180,5,12,2019-04-27,0.28,2,189 +8762969,Charming room Chinatown Manhattan,45951143,Alexandra,Manhattan,Chinatown,40.71319,-73.99265,Private room,100,1,1,2015-10-13,0.02,1,0 +8763502,Stay here and love Williamsburg!!,45955013,Jason,Brooklyn,Williamsburg,40.70894,-73.94554,Entire home/apt,150,2,198,2019-06-23,4.48,1,92 +8764617,Bedroom avail in Bowery neighborhod,29896455,Josh,Manhattan,Chinatown,40.7182,-73.99562,Private room,63,1,52,2019-06-15,1.14,2,276 +8770660,Spacious apt. with a great feel,2972546,Manrique And Ticiani,Manhattan,Washington Heights,40.84478,-73.94132,Entire home/apt,175,1,1,2015-12-27,0.02,1,0 +8772365,LARGE private bdrm & private bthrm!,2399157,Jaime,Brooklyn,Bushwick,40.69911,-73.91601,Private room,84,3,17,2016-08-19,0.38,1,0 +8772654,Friendly-colorful-cozy W/ breakfast,45990565,Alba & Genesis,Bronx,Morris Heights,40.85311,-73.90861,Private room,33,2,103,2019-05-31,2.27,2,282 +8775324,Fantastic Private Room with Own Bathroom -,6408132,Michael,Brooklyn,Crown Heights,40.67553,-73.94195,Private room,50,5,1,2016-01-02,0.02,1,35 +8775344,Private spacious master bedroom,4205149,La,Brooklyn,Crown Heights,40.67869,-73.95498,Private room,75,1,1,2015-10-27,0.02,1,0 +8775910,AMAZING UNIQUE COZY MANHATTAN APT,46004430,Michael,Manhattan,Kips Bay,40.74433,-73.97769,Private room,125,2,10,2018-10-22,0.22,1,256 +8776479,East Williamsburg / Bushwick loft,8822845,Adam,Brooklyn,Williamsburg,40.70353,-73.93482,Entire home/apt,140,7,16,2019-03-15,0.49,1,1 +8777316,Sunny and pleasant Sunset Park apt,44524700,Sheryl,Brooklyn,Sunset Park,40.64962,-74.0035,Entire home/apt,85,5,0,,,1,0 +8777936,Prime carroll gardens chrming 2 bed rooms,40611169,Sol,Brooklyn,Carroll Gardens,40.67778,-73.9952,Entire home/apt,250,1,50,2019-06-25,1.46,5,365 +8780378,1 bedroom in large clean apt,2774528,Andrew,Brooklyn,Bushwick,40.70021,-73.92241,Private room,60,3,1,2015-10-14,0.02,1,0 +8781396,Awesome 1 privet room apartment,45408439,AHm,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95472,Private room,45,1,0,,,1,0 +8781837,"Amazing, Modern East Village Loft",4380547,Rishie,Manhattan,East Village,40.73046,-73.98094,Entire home/apt,395,7,0,,,1,0 +8782401,The Quiet Part of New York City,5170691,David,Manhattan,Inwood,40.86729,-73.92716,Entire home/apt,140,1,49,2019-06-26,1.23,1,16 +8783567,Studio Apt on The Upper West Side,46039971,Brady,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,190,5,15,2019-03-21,0.35,1,0 +8793166,"Cool, cozy urban pad",13456636,Cathy,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92584,Entire home/apt,91,2,166,2019-07-01,3.66,1,38 +8793503,"Large private room in BK,.5 bath",46066063,Mungyu,Brooklyn,Bedford-Stuyvesant,40.6945,-73.93113,Private room,40,4,34,2018-12-24,0.75,2,105 +8794495,1 Bedroom in a Modern Mid-Town Apt,12330542,Angela,Manhattan,Midtown,40.75417,-73.97279,Private room,135,1,0,,,1,0 +8794624,"Cozy Bedroom in Crown Heights, BK",11918958,Elizabeth,Brooklyn,Crown Heights,40.68003,-73.96123,Private room,50,1,0,,,1,0 +8795721,Spacious studio 10 min to Manhattan,6672223,Katia,Queens,Astoria,40.76196,-73.924,Entire home/apt,72,3,7,2016-01-18,0.15,1,0 +8796283,Sunny flat in lovely brownstone,9138796,Eli And Maggie,Brooklyn,Bedford-Stuyvesant,40.68967,-73.93381,Entire home/apt,130,3,115,2019-06-23,2.83,1,49 +8796876,Big private bed/bath in penthouse!,46096478,Laurent,Brooklyn,Prospect Heights,40.68078,-73.96816,Private room,90,1,6,2018-06-22,0.13,1,0 +8797770,Large Room available in Seaport.,4455698,Pierre,Manhattan,Financial District,40.70867,-74.0003,Private room,100,15,2,2018-04-16,0.06,3,313 +8798403,Bed and Breakfast in Manhattan!,37818581,Sofia,Manhattan,East Harlem,40.80275,-73.93904,Private room,150,1,225,2018-09-30,4.95,4,0 +8798499,"Large Bedroom with everything, Great location !",46105205,William,Manhattan,Chinatown,40.71591,-73.99488,Private room,62,10,32,2018-11-22,0.74,1,144 +8799529,Private Studio in Times Square,7512454,Christina,Manhattan,Hell's Kitchen,40.75902,-73.99112,Entire home/apt,100,7,5,2016-05-09,0.11,1,0 +8799559,ROOM WITH VIEW IN MANHATTAN!,37818581,Sofia,Manhattan,East Harlem,40.80109,-73.93887,Private room,150,1,207,2019-02-21,4.55,4,0 +8800003,Large Serene Garden Apartment Historic Harlem,46112296,Tina,Manhattan,Harlem,40.81057,-73.94565,Entire home/apt,95,2,3,2017-05-07,0.11,1,6 +8800203,Spacious Williamsburg 1 bedroom!,22159648,Sinat,Brooklyn,Williamsburg,40.7057,-73.94258,Entire home/apt,170,1,8,2018-09-19,0.19,2,0 +8800996,"Bright, sunny, airy room in Victorian TH",14796247,Sandra And Cary,Brooklyn,Flatbush,40.63976,-73.96419,Private room,40,7,16,2018-08-11,0.39,4,130 +8801963,Sunny Room With Charming Slate Fireplace,23582893,Laramie,Brooklyn,Bushwick,40.69036,-73.91608,Private room,54,9,23,2019-05-21,0.53,8,135 +8802289,Private Room in Bushwick off of the DeKalb L Stop,26033344,Aj,Brooklyn,Bushwick,40.70438,-73.92117,Private room,30,1,4,2016-09-28,0.12,1,0 +8806104,"1 Bedroom Garden Apartment, Harlem",7650414,Keith,Manhattan,Harlem,40.80281,-73.94644,Entire home/apt,150,6,51,2019-04-30,1.13,2,66 +8806783,Large 1 BD Upper East With Roof Top,8115401,Quili (Sounds Keelee),Manhattan,Midtown,40.75606,-73.97004,Entire home/apt,250,2,33,2019-05-04,0.73,1,7 +8807842,Spacious arty loft in Bushwick,13318184,Rebecca,Brooklyn,Williamsburg,40.70548,-73.93698,Private room,50,1,1,2015-11-08,0.02,4,0 +8808863,Studio Apartment in Park Slope!,496979,Razan,Brooklyn,Park Slope,40.67424,-73.97717,Entire home/apt,120,1,1,2015-12-01,0.02,1,0 +8809245,Classic NY Apartment. Prime Manhattan Location,3333577,Julia,Manhattan,Gramercy,40.73563,-73.98801,Entire home/apt,410,30,3,2019-05-27,0.15,2,346 +8809420,"Spacious, Sunny & Clean, 1 bed, 1.5 bath Apt",33899056,Ashley,Brooklyn,Bushwick,40.69609,-73.92369,Entire home/apt,73,45,3,2016-08-20,0.07,1,21 +8809578,Beautiful Quiet Chelsea Apartment,14914020,Cihan,Manhattan,Chelsea,40.7442,-74.00123,Entire home/apt,250,1,1,2015-12-16,0.02,1,0 +8810949,NYC Upscale Midtown East 3BR Apt,30283594,Kara,Manhattan,Midtown,40.74867,-73.96734,Entire home/apt,1170,80,0,,,121,365 +8811514,Two Floor Open Space Perfect 'Hood,7227499,John,Manhattan,West Village,40.73523,-74.00607,Entire home/apt,250,2,2,2015-11-08,0.04,1,0 +8811687,Nature in the Heart of Manhattan,17074459,Mattan,Manhattan,East Village,40.73128,-73.98596,Private room,139,1,6,2017-06-14,0.13,3,0 +8812730,"LES, 5 min to subway, quiet street",41865488,Sergio,Manhattan,Lower East Side,40.71292,-73.98496,Entire home/apt,149,5,11,2017-02-04,0.28,1,0 +8813306,Cozy Apartment Near Times Square,4385138,Mike,Manhattan,Hell's Kitchen,40.7567,-73.99277,Entire home/apt,185,2,241,2019-06-24,5.65,1,22 +8813547,For Christmas-Large New 1 BR Near Central Park,30350590,Natasha,Manhattan,Theater District,40.76268,-73.98407,Private room,230,5,10,2016-09-10,0.23,1,0 +8813854,Stay next to TimesSquare & Broadway,45850983,Peter,Manhattan,Hell's Kitchen,40.76455,-73.99297,Entire home/apt,175,1,49,2019-05-05,1.11,1,4 +8814070,Charming 1 bdr near Central Park,10167933,Karina,Manhattan,Upper West Side,40.78481,-73.97414,Entire home/apt,150,2,1,2015-12-19,0.02,1,0 +8814936,"Lovely Home, Heart of Williamsburg!",4185064,Paulina,Brooklyn,Williamsburg,40.71554,-73.96246,Entire home/apt,325,1,264,2019-06-16,5.85,2,47 +8815120,Comfortable 1 bedroom apt in Brooklyn just for you,46178050,Shyann,Brooklyn,East New York,40.66586,-73.89443,Shared room,100,4,0,,,1,270 +8815979,"Комната в Манхеттене, 19-24 октября",46182625,Kateryna,Manhattan,East Harlem,40.79333,-73.94274,Private room,50,1,0,,,1,0 +8816070,LOVELY APT IN MANHATTAN! 1 block from the subway!,40236486,Priscilla,Manhattan,Washington Heights,40.84121,-73.93881,Entire home/apt,80,12,27,2018-08-10,0.67,3,88 +8816465,"Large, Sunny Family-Friendly Apt. (Smoke-Free)",40800505,Beverly,Brooklyn,Bedford-Stuyvesant,40.68691,-73.93294,Entire home/apt,135,28,29,2018-11-10,0.65,1,268 +8817102,Sunlit Bedroom in Forest Hills Apartment,4430927,Martha,Queens,Forest Hills,40.73122,-73.85302,Private room,32,60,3,2018-12-21,0.08,1,0 +8819442,*PRIME* Linen & Lavender in the LES (Clinton St.),24628477,Jessy & Grant,Manhattan,Lower East Side,40.71963,-73.98499,Entire home/apt,261,4,196,2019-06-05,4.30,1,125 +8823472,Appartment in Lefferts Gardens,1415417,Lorenzo,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95688,Entire home/apt,60,3,0,,,1,0 +8823897,Massive Room in Brownstone - 25% OFF,1418015,Reuben,Brooklyn,Crown Heights,40.67722,-73.95305,Private room,57,2,91,2019-06-23,2.06,4,228 +8825297,SPACIOUS 2 BEDROOM MANHATTAN DUPLEX!!,46224845,Angela,Manhattan,East Harlem,40.8081,-73.93807,Entire home/apt,225,2,62,2019-06-19,1.62,1,231 +8825701,"Modern Condo in Greenpoint, BK",414999,Brandon,Brooklyn,Greenpoint,40.72922,-73.95134,Entire home/apt,200,3,1,2015-11-03,0.02,1,0 +8826129,Private bedroom Private Living Room,46230558,Joseph,Queens,Glendale,40.70302,-73.89499,Private room,115,2,0,,,1,0 +8826833,Spacious Studio: Upper East Side,46234202,Alex,Manhattan,Upper East Side,40.769,-73.9541,Entire home/apt,200,2,5,2016-05-22,0.11,1,0 +8829421,2 Bed/ 2 Bath in Heart of SOHO/ LES,4087478,Nicole,Manhattan,Lower East Side,40.72159,-73.99234,Entire home/apt,699,6,0,,,1,0 +8830825,Spacious Rooms near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.93993,Private room,65,2,81,2019-04-08,1.79,4,131 +8832355,"Open Space, Outdoor Space",4703687,Daphne,Brooklyn,Greenpoint,40.72311,-73.93819,Entire home/apt,150,2,1,2016-02-27,0.02,2,0 +8837432,NEW: 2 BR Steps from Times Square,41743945,George - Francis,Manhattan,Hell's Kitchen,40.76206,-73.9937,Entire home/apt,375,3,3,2016-01-02,0.07,2,0 +8838341,Beautiful Oversized King Bedroom - Entire Apt,5172606,Paula,Manhattan,Upper West Side,40.78698,-73.97005,Entire home/apt,175,3,0,,,1,0 +8838513,Room in colorful Bushwick SUPER close to subways!,1423123,Gretchen,Brooklyn,Bedford-Stuyvesant,40.69937,-73.94447,Private room,45,1,9,2019-03-06,0.27,1,0 +8838861,UWS One Bedroom Pre-War Gem,46289881,Jerry,Manhattan,Upper West Side,40.79221,-73.96588,Entire home/apt,225,3,2,2015-11-02,0.04,1,0 +8838957,Lovely Space in the heart of SoHo!,10595200,Lauren,Manhattan,SoHo,40.72549,-74.00523,Entire home/apt,165,10,31,2019-05-16,0.71,1,55 +8839938,Beautiful 1BR in Chelsea,46293809,Courtney,Manhattan,Chelsea,40.74336,-73.99706,Entire home/apt,250,1,0,,,1,0 +8840563,Sunny 1 bedroom long or short term,42621530,Maory,Brooklyn,Williamsburg,40.71097,-73.95886,Entire home/apt,1150,7,2,2015-12-07,0.04,1,0 +8840959,1-Bedroom in Brooklyn Brownstone,39556296,Lizzie,Brooklyn,Bedford-Stuyvesant,40.6802,-73.95768,Entire home/apt,85,3,1,2016-09-08,0.03,1,0 +8841107,Beautiful and Homey Enclave,21332287,John,Brooklyn,Park Slope,40.67129,-73.98277,Entire home/apt,135,2,0,,,1,0 +8841646,Art & Light-Filled Apt By The Park,5380471,John,Manhattan,East Harlem,40.79037,-73.9445,Entire home/apt,125,1,2,2015-11-29,0.04,1,0 +8842185,Staten Island NYC Marathon,46305818,Elizabeth,Staten Island,Shore Acres,40.60597,-74.06208,Private room,300,1,0,,,1,0 +8842667,Brooklyn apartment in Boreum Hill,10261855,Ruby,Brooklyn,Boerum Hill,40.68338,-73.98231,Entire home/apt,120,4,0,,,1,0 +8842752,1 Bedroom Apt in Williamsburg,4586937,Matt,Brooklyn,Williamsburg,40.70658,-73.94413,Entire home/apt,100,1,2,2017-06-02,0.05,1,0 +8842793,Private Patio in Soho/NoLita,3411058,Kevin,Manhattan,Nolita,40.72337,-73.99574,Entire home/apt,179,3,26,2019-06-16,0.58,1,6 +8843403,Cute room in charming Bk share,4231636,David,Brooklyn,Bedford-Stuyvesant,40.68721,-73.94257,Private room,50,3,4,2016-01-13,0.09,1,0 +8843681,LARGE 2 BEDROOM DUPLEX WITH YARD,14104350,Irving,Brooklyn,Bedford-Stuyvesant,40.68363,-73.94142,Entire home/apt,115,5,28,2019-07-08,0.70,2,347 +8843995,Charming and Artsy Studio Apartment,46314409,Jake And Catharine,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93268,Entire home/apt,100,3,151,2019-06-29,3.32,1,105 +8844402,Cozy room in the Heart of Astoria,45232769,Nadir,Queens,Astoria,40.76628,-73.91761,Private room,75,2,94,2019-07-07,2.08,3,35 +8844652,Quiet living room in Greenpoint 1BR,34738391,Rae,Brooklyn,Greenpoint,40.7308,-73.95394,Private room,60,1,4,2016-10-23,0.09,1,0 +8845002,Beautiful One Bedroom Chelsea,21172422,Ellie,Manhattan,Chelsea,40.74197,-74.00409,Entire home/apt,240,2,1,2015-11-02,0.02,1,0 +8845289,Yve's Getaway,46322064,Yve,Manhattan,Harlem,40.81147,-73.9471,Entire home/apt,290,3,58,2018-01-02,1.33,1,188 +8845441,Comfy private bedroom in Bushwick,46323110,Dan,Brooklyn,Bushwick,40.69639,-73.91008,Private room,56,5,76,2019-04-11,1.74,2,68 +8845805,Large Sunny Private Room,46322730,Tia,Manhattan,Washington Heights,40.84444,-73.9399,Private room,95,2,32,2019-06-30,0.72,1,170 +8845951,Cozy & Private Harlem Bedroom,4035773,T.,Manhattan,Harlem,40.80769,-73.95497,Private room,70,1,76,2019-06-18,1.78,1,293 +8845982,Superb loft in Manhattan,15641304,Jean-Noël,Manhattan,East Harlem,40.79387,-73.94202,Entire home/apt,125,4,8,2017-06-18,0.18,1,0 +8846233,East Village Apartment,3285026,Jordanna,Manhattan,East Village,40.72704,-73.98783,Entire home/apt,195,1,4,2015-10-31,0.09,1,0 +8846293,5min from airport,46087238,Michion,Queens,Jamaica,40.68858,-73.78961,Private room,45,1,25,2019-01-31,0.65,2,335 +8846634,442 w 57st. hanover apt sharing,23521722,Jinwon,Manhattan,Hell's Kitchen,40.76767,-73.98783,Shared room,64,2,0,,,1,0 +8847200,Sunny Room in Ditmas Park,46329096,Mia,Brooklyn,Flatbush,40.64272,-73.95852,Private room,50,3,9,2016-10-22,0.20,1,0 +8847268,Apartment with terrasse greenpoint brooklyn,1818225,Amael,Brooklyn,Greenpoint,40.72212,-73.9378,Entire home/apt,80,3,0,,,1,0 +8847542,private bathroom and balcony,6630815,Emmanuelle,Brooklyn,Bushwick,40.68769,-73.91377,Private room,55,2,197,2019-06-24,4.46,2,21 +8847577,Beautiful Brooklyn Brownstone,21052756,Odette,Brooklyn,Cobble Hill,40.68561,-73.99572,Entire home/apt,1000,5,1,2016-01-03,0.02,1,0 +8848162,"Great, Clean NYC Apartment",46122430,Liana,Queens,Astoria,40.76114,-73.91398,Private room,42,60,1,2015-10-26,0.02,1,0 +8848243,Cozy and Clean Room,39975694,Dante,Brooklyn,Williamsburg,40.70813,-73.95104,Private room,80,4,0,,,1,0 +8849684,"Super clean, Great location!!",10549906,Mikael,Brooklyn,Clinton Hill,40.68313,-73.96165,Entire home/apt,105,1,54,2019-06-11,1.19,1,365 +8849758,Peaceful Retreat,23270872,Jason,Brooklyn,Bedford-Stuyvesant,40.68519,-73.91494,Private room,45,3,11,2018-09-11,0.24,1,66 +8855930,Chic and Inviting East Village Apartment,46365876,Josefine,Manhattan,East Village,40.73113,-73.98295,Entire home/apt,125,2,2,2016-08-31,0.06,1,0 +8857546,Comfy Rooms,45601111,Dlb,Queens,Laurelton,40.66943,-73.74778,Private room,45,2,85,2019-05-26,1.99,5,333 +8857842,Bright Charming Artistic Loft: Relax or Work,46372931,Bahar,Brooklyn,Clinton Hill,40.69096,-73.96052,Private room,95,2,10,2019-06-15,0.22,1,22 +8858228,Spacious yet cozy apt; heart of BK,2232742,Kate,Brooklyn,Cobble Hill,40.68954,-73.99383,Entire home/apt,200,5,7,2019-01-01,0.16,1,0 +8860450,Stylish One-Bedroom in Gramercy!,12838732,Elizabeth,Manhattan,Gramercy,40.73743,-73.98652,Entire home/apt,190,2,76,2019-06-14,1.68,1,12 +8861269,Harlem Vacation Rental,9933134,Darryl,Manhattan,Harlem,40.80519,-73.94974,Entire home/apt,170,4,28,2019-06-18,0.82,1,364 +8861340,Spacious 2 Bedroom in Brooklyn,46388202,Diana,Brooklyn,Columbia St,40.6893,-74.00023,Entire home/apt,250,7,0,,,1,0 +8861719,Right in the heart of Brooklyn,46389507,Kenneth,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91142,Private room,54,2,2,2016-01-02,0.05,1,0 +8863005,Quaint Midtown Studio,46395463,Heather,Manhattan,Midtown,40.75556,-73.96817,Entire home/apt,150,1,3,2015-12-28,0.07,1,0 +8863296,Incredible 750sqft East Village 1BR,27657527,Sean,Manhattan,East Village,40.72417,-73.98391,Entire home/apt,300,2,1,2016-01-03,0.02,1,0 +8863320,Brooklyn Museum at your window,46397067,Nia & David,Brooklyn,Prospect Heights,40.67381,-73.96496,Private room,115,2,2,2019-06-23,0.92,1,362 +8864262,Greenwich Village Stylish Studio,46401172,Anne Marie,Manhattan,West Village,40.73458,-74.00808,Entire home/apt,225,1,83,2019-06-17,1.90,1,344 +8864404,Darian Place,46401675,Benjamin,Manhattan,East Harlem,40.7929,-73.94108,Private room,83,1,0,,,1,0 +8864740,Charming 1 Bedroom in Townhouse,45595980,Tny,Manhattan,Upper East Side,40.76941,-73.96694,Entire home/apt,125,30,10,2019-05-18,0.27,12,0 +8865020,Manhattan Club Oct 16-Oct 18,46404051,Brenda,Manhattan,Midtown,40.76385,-73.98212,Entire home/apt,250,1,1,2015-10-18,0.02,1,0 +8865499,"Rustic, 1-bdrm retreat w/roof deck.",986623,Armando Rafael,Brooklyn,Greenpoint,40.72216,-73.94255,Entire home/apt,129,3,93,2019-05-28,2.10,1,0 +8866178,Clean cozy and convenient stay,1596626,Gypsy,Manhattan,Hell's Kitchen,40.76262,-73.98677,Entire home/apt,135,2,115,2019-06-23,2.56,1,19 +8866435,RARE & AWESOME Williamsburg Loft!,3629010,William,Brooklyn,Williamsburg,40.71248,-73.96679,Entire home/apt,200,20,0,,,1,0 +8866669,Gorgeous Loft in Greenpoint!,2452616,Arielle,Brooklyn,Greenpoint,40.73072,-73.95416,Entire home/apt,175,2,12,2019-01-13,0.77,1,0 +8867383,Cozy Bedroom - 1 Stop to Manhattan,46414646,Giovana,Queens,Long Island City,40.75085,-73.93743,Private room,55,3,6,2015-11-20,0.13,1,0 +8868762,Room in Loft,7234603,Frida,Brooklyn,Williamsburg,40.70953,-73.92657,Private room,50,1,0,,,1,0 +8869029,Private room in East Village,18048584,Stanley,Manhattan,East Village,40.72988,-73.98713,Private room,125,1,2,2015-12-30,0.05,1,0 +8869381,Elegant Brooklyn Heights Studio,9444795,Emilie,Brooklyn,Brooklyn Heights,40.69933,-73.99249,Entire home/apt,200,3,2,2017-04-17,0.06,1,0 +8869383,Lefferts Garden/ Prospect Park Gem,46420811,Stacy,Brooklyn,Prospect-Lefferts Gardens,40.65631,-73.95535,Private room,40,10,12,2019-06-30,0.28,1,343 +8869857,纽约之家(SunnyHome6),45600001,Amy,Queens,Flushing,40.74651,-73.83195,Private room,50,1,71,2019-05-11,1.57,3,83 +8869998,Triplex Penthouse with 3 Balconies,1845920,Matt,Brooklyn,Williamsburg,40.70883,-73.94415,Private room,166,1,16,2016-11-14,0.36,1,0 +8873479,Beautiful modern room with private bathroom,27240092,Darin,Manhattan,Gramercy,40.73557,-73.98353,Private room,124,1,118,2019-06-23,2.70,1,278 +8877466,"Spacious Apt, 15min from the city",46458011,Emma,Brooklyn,Bushwick,40.69497,-73.92598,Private room,65,2,28,2019-03-19,0.70,1,204 +8878172,"Sunny, spacious - 35 mins Times Sq",46399563,Angela,Manhattan,Inwood,40.86689,-73.92224,Private room,57,1,6,2017-01-02,0.13,1,1 +8880194,"Private Bedroom, Huge Apt.",18023496,Bobby,Manhattan,Midtown,40.74382,-73.98798,Private room,100,1,1,2015-10-15,0.02,1,0 +8880524,Attic Cove,3758073,Marcos,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9567,Private room,60,3,9,2018-07-28,0.20,1,0 +8880999,NicE Room with Private Bathroom BK:) SUPERHOST :),3441272,Jasmin,Brooklyn,Bushwick,40.69883,-73.93364,Private room,90,1,254,2019-06-23,5.59,5,222 +8881253,A piece of Heaven in Hells Kitchen,21366569,Quentin,Manhattan,Hell's Kitchen,40.76374,-73.99422,Private room,130,1,66,2019-07-03,1.75,2,289 +8881765,Location! Great for families/groups,218425,Odile,Brooklyn,Park Slope,40.66848,-73.98002,Entire home/apt,350,4,18,2016-11-24,0.42,1,0 +8881955,Big ass room in Brooklyn,46476909,Eric,Brooklyn,Crown Heights,40.67052,-73.95621,Private room,60,2,1,2015-10-21,0.02,1,0 +8882549,Private room in the East Village!,26123839,Oliver,Manhattan,East Village,40.72285,-73.98133,Private room,80,2,7,2016-03-01,0.15,1,0 +8883032,"Studio Apt, Prospect Park, Brooklyn",46481544,Jose,Brooklyn,Prospect-Lefferts Gardens,40.65874,-73.96108,Entire home/apt,70,1,0,,,1,0 +8883074,"Private bdr in Bushwick, Brooklyn",46474221,Faina,Brooklyn,Bushwick,40.70554,-73.91934,Private room,41,7,0,,,1,0 +8883269,Cute 1 bedroom apt close to all,46482708,Djamal,Queens,Maspeth,40.72582,-73.90549,Entire home/apt,100,3,74,2019-05-20,1.63,1,321 +8883877,Gorgeous Director’s Penthouse,14889425,Julian,Manhattan,East Village,40.72887,-73.98835,Entire home/apt,500,1,0,,,1,53 +8884181,Greene Hill 3BR Brownstone Apt,46486441,Holly/Rick,Brooklyn,Bedford-Stuyvesant,40.68846,-73.95653,Entire home/apt,200,3,115,2019-07-07,2.61,1,243 +8885835,Cozy Sunny Bedroom in Hell's Kitchen / Time Square,30426158,Bryan,Manhattan,Hell's Kitchen,40.76285,-73.99159,Private room,120,6,17,2017-10-18,0.38,2,0 +8886292,Spacious MasterBedRoom 15min to NYC,43908809,M&L,Queens,Woodside,40.74968,-73.90333,Private room,170,1,1,2016-06-08,0.03,3,90 +8887748,Sunny room in Downtown Brooklyn,46501842,Charlotte,Brooklyn,Park Slope,40.67603,-73.98239,Private room,42,15,3,2017-05-18,0.07,1,0 +8887907,Luxurious Manhattan Getaway for 1 adult,36573037,Tracey,Manhattan,Inwood,40.87157,-73.91744,Private room,50,1,38,2019-07-01,0.85,2,344 +8888689,1BR apartment on Broadway (UWS),11469296,Michael,Manhattan,Morningside Heights,40.80596,-73.96471,Entire home/apt,170,1,7,2016-10-08,0.16,1,0 +8889118,Glamorous one bedroom Nolita.,46509461,Mike,Manhattan,Little Italy,40.71855,-73.99791,Entire home/apt,189,1,168,2019-06-22,3.71,1,347 +8889423,Beautiful Upper West Side Large 1BD,10328631,Yulia,Manhattan,Upper West Side,40.78671,-73.97825,Entire home/apt,150,2,11,2016-06-26,0.24,1,0 +8889664,Cozy East Village Apartment,7006490,Jibran,Manhattan,East Village,40.72797,-73.97787,Private room,77,1,9,2016-09-10,0.21,1,0 +8892174,Vintage WB Nest with Backyard,24297041,Alexandra,Brooklyn,Williamsburg,40.7069,-73.93754,Entire home/apt,150,1,0,,,1,0 +8894773,Cozy bedroom in Bushwick,46323110,Dan,Brooklyn,Bushwick,40.6965,-73.91036,Private room,60,5,165,2019-05-21,3.63,2,261 +8895019,1 Bd Ap. in Hell's Kitchen Times Sq,1020828,Philipp,Manhattan,Hell's Kitchen,40.76392,-73.99514,Entire home/apt,150,1,1,2016-05-08,0.03,1,0 +8897305,Cozy Apartment on the Upper East,46544348,Kim,Manhattan,Upper East Side,40.77688,-73.94687,Entire home/apt,120,1,2,2015-12-16,0.05,1,0 +8899450,Cozy 2 Story Home in U-UES,31067208,Brianna,Manhattan,East Harlem,40.79714,-73.94023,Entire home/apt,85,1,2,2016-06-29,0.05,1,0 +8899476,"ENTIRE Floor,PRIVATE Bath&Entrance! SUPERHOST :))",3441272,Jasmin,Brooklyn,Bushwick,40.69699,-73.93387,Private room,85,1,270,2019-06-21,5.94,5,227 +8900026,"BOUTIQUE LUXURY 2 Bedroom, 2 bath Apt in Chelsea",2543296,Jazil,Manhattan,Chelsea,40.74339,-73.99414,Entire home/apt,450,6,2,2018-12-29,0.05,1,0 +8901538,WELCOME TO MY HUMBLE ABODE!!!!!,46562860,Paisha,Bronx,Longwood,40.82226,-73.88906,Private room,60,3,8,2018-01-03,0.19,1,363 +8901901,Spacious apartment in Harlem,15433113,Christine,Manhattan,Harlem,40.80541,-73.95198,Entire home/apt,95,2,5,2016-02-21,0.11,1,0 +8903147,Yankees Room in the Bronx,3684360,Enrique,Bronx,Norwood,40.87709,-73.88228,Private room,38,1,50,2018-06-27,1.10,4,267 +8903855,Queens Condo w/ Manhattan View,46573375,Loren,Queens,Long Island City,40.75216,-73.94099,Shared room,150,3,0,,,1,0 +8904076,Forest Hills 3 Bedroom Apartment,46574350,Sean,Queens,Forest Hills,40.71372,-73.83693,Entire home/apt,125,1,2,2016-08-10,0.05,1,0 +8904662,"Central Park, Museum Mile",20367564,Irene,Manhattan,East Harlem,40.79212,-73.95032,Private room,125,2,1,2015-11-03,0.02,1,0 +8905176,Beautiful Upper East Side Studio,46579560,Federico,Manhattan,Upper East Side,40.77837,-73.95318,Entire home/apt,130,5,0,,,1,0 +8905651,Cozy room in E.Williamsburg + Rooftop & Backyard,3989837,Nadav,Brooklyn,Williamsburg,40.7074,-73.94063,Private room,59,3,59,2019-06-30,1.30,2,119 +8906260,Cozy Harlem Studio,9597041,Che,Manhattan,Harlem,40.82494,-73.943,Entire home/apt,65,2,32,2019-06-17,0.73,1,16 +8907184,Williamsburg 3 Bedroom Loft,9012184,Cyrus,Brooklyn,Williamsburg,40.72227,-73.95788,Entire home/apt,259,2,222,2019-06-17,4.90,1,250 +8907362,1 Bdr in 3bdr East Village Apt,46537493,Erica,Manhattan,East Village,40.72822,-73.98128,Private room,90,3,0,,,1,0 +8914109,Conveniently located Central Harlem,13951574,Andrea,Manhattan,Harlem,40.81491,-73.94779,Private room,60,30,22,2019-05-15,0.51,1,0 +8914649,2 Rooms! Steps from the L train!,5109475,Liam,Brooklyn,Bushwick,40.70544,-73.91993,Private room,95,2,20,2019-06-02,0.45,2,191 +8915246,Cozy Sofa Bed for Nightly Stays,2968774,Alexis,Brooklyn,Crown Heights,40.66838,-73.95624,Shared room,45,1,1,2015-11-11,0.02,2,0 +8916387,"Large, bright Upper West Studio",25688324,Shannon,Manhattan,Upper West Side,40.77757,-73.97932,Entire home/apt,133,3,38,2019-06-30,0.89,1,2 +8916716,Lovely 2 Bedroom Apartment. Perfect Getaway!,46632551,J,Manhattan,Hell's Kitchen,40.75994,-73.98812,Entire home/apt,259,2,103,2019-06-21,2.29,1,34 +8916960,Central Park Slope Garden Apt,46632214,Patrick,Brooklyn,Park Slope,40.6711,-73.9772,Entire home/apt,150,7,40,2019-06-25,0.89,1,279 +8920714,A Spacious Room in Bushwick Apt,46650449,Sam,Brooklyn,Bushwick,40.69846,-73.91202,Private room,35,1,0,,,1,0 +8920794,Charming Lower-East Side apartment,15995278,Camille,Manhattan,Lower East Side,40.72189,-73.99187,Entire home/apt,139,3,6,2016-10-27,0.13,1,0 +8920816,Upper West Side room near Columbia,4262510,Ibrahim,Manhattan,Morningside Heights,40.81417,-73.9603,Private room,39,3,6,2016-01-23,0.13,1,0 +8920988,1 BDRM APT BROOKLYN (REDHOOK),29823680,Jonathan,Brooklyn,Red Hook,40.67668,-74.00247,Entire home/apt,125,1,0,,,1,0 +8921125,Superbe appartement vue sur Central Park,36264739,Carole,Manhattan,Upper West Side,40.7941,-73.96314,Entire home/apt,434,5,1,2018-01-03,0.05,1,0 +8924038,Huge Unique Two Story E.Vill Oasis,46665505,Cj,Manhattan,East Village,40.72179,-73.97951,Entire home/apt,500,2,0,,,1,0 +8924552,Sunny 2 bedroom apartment!,6818674,Emily,Brooklyn,Greenpoint,40.73262,-73.95209,Entire home/apt,100,1,2,2015-11-29,0.05,1,0 +8924966,1BR+Futon+Terrace 20' to Manhattan,27502041,Alex,Queens,Sunnyside,40.74746,-73.91416,Entire home/apt,99,3,40,2019-06-10,0.91,1,128 +8925072,Big Bright Room in Bushwick NEXT to L and M Train,4077292,Unue,Brooklyn,Bushwick,40.69744,-73.90773,Private room,70,4,57,2019-06-23,1.44,2,333 +8925082,Chic apt on cutest corner in Soho,33834627,Charlotte,Manhattan,Nolita,40.72217,-73.99375,Entire home/apt,200,1,0,,,1,0 +8929521,Private studio room - Brownstone - Brooklyn,46690777,Michael,Brooklyn,Crown Heights,40.67653,-73.93766,Private room,88,4,64,2019-05-11,1.44,1,68 +8930935,Cozy apartment in Brooklyn,4824082,Amel,Brooklyn,Bedford-Stuyvesant,40.68112,-73.94409,Entire home/apt,115,1,0,,,1,0 +8931373,Delightful flat near the Park,719497,Cinjon,Manhattan,Harlem,40.81425,-73.9516,Private room,75,3,0,,,1,0 +8931635,Bright New 1bd Central Park Slope,5641193,Melissa,Brooklyn,Park Slope,40.66795,-73.98053,Entire home/apt,140,40,59,2017-08-28,1.31,1,126 +8932049,Big manhattan room w gorgeous views.,16877292,D,Manhattan,East Harlem,40.79207,-73.94196,Private room,80,1,16,2019-05-04,1.15,2,345 +8932929,Spacious Room in Bushwick with a back yard.,12502512,Ashley,Brooklyn,Bushwick,40.69451,-73.92397,Private room,44,1,1,2015-12-27,0.02,1,0 +8934119,Deluxe 1 Bedroom Chelsea NYC Apt!,30283594,Kara,Manhattan,Chelsea,40.74226,-73.99608,Entire home/apt,269,30,0,,,121,337 +8935528,*Spectacular Sublet - All inclusive,35430339,Melissa,Brooklyn,Prospect Heights,40.6791,-73.97369,Entire home/apt,150,1,0,,,1,0 +8936266,Prime West Village haven,6764705,Kirk,Manhattan,West Village,40.7382,-74.00299,Entire home/apt,299,5,4,2016-07-05,0.09,1,0 +8937816,L-Train - 3BR Duplex in Brooklyn,3538412,Tom,Brooklyn,Williamsburg,40.70573,-73.92887,Entire home/apt,195,4,85,2019-06-19,1.93,1,63 +8939341,Stay in the heart of Williamsburg,46628999,Sabine,Brooklyn,Williamsburg,40.71282,-73.95537,Entire home/apt,140,3,8,2018-11-09,0.18,1,0 +8940685,Central Park Time SQ Chic Studio,7918948,Elle,Manhattan,Hell's Kitchen,40.76263,-73.98909,Entire home/apt,180,1,1,2015-12-13,0.02,1,0 +8941092,Sunnyside:Large 1 bedroom apartment,45738364,Joe,Queens,Sunnyside,40.74153,-73.91806,Entire home/apt,84,2,0,,,1,0 +8941820,Ensuite privacy close to Manhattan,46741696,Manchang,Queens,Woodside,40.74688,-73.90674,Private room,70,3,138,2019-06-20,3.10,1,54 +8942272,Huge Brooklyn Room in Bushwick,9864136,Anthony,Brooklyn,Bushwick,40.68587,-73.91435,Private room,55,1,4,2018-05-20,0.19,26,365 +8942360,Calm and Cozy Bed-Stuy Room in an Inspiring House,11659708,Malav,Brooklyn,Bedford-Stuyvesant,40.69349,-73.94746,Private room,65,5,1,2016-03-06,0.02,1,0 +8942367,Large Room in Trendy Bushwick,9864136,Anthony,Brooklyn,Bushwick,40.68591,-73.91344,Private room,45,1,18,2018-02-26,0.41,26,250 +8942467,Your own hip and cozy 1BD apartment,36821356,Vitaly And Lena,Brooklyn,Borough Park,40.62251,-73.99397,Entire home/apt,96,14,93,2019-06-23,2.06,1,73 +8943358,Loved by NYLocals Private Room SoHo,2695451,Elle,Manhattan,SoHo,40.72476,-74.00387,Private room,82,1,228,2019-07-05,5.11,2,28 +8948898,"Bright, Modern Studio in Upper East",5548597,Katie,Manhattan,Upper East Side,40.77162,-73.95808,Entire home/apt,150,1,6,2016-07-26,0.14,1,0 +8949503,"Huge, Sumptuous En-Suite Bedroom",46778191,Zoe,Brooklyn,Williamsburg,40.71454,-73.95894,Private room,125,3,1,2015-10-27,0.02,1,0 +8950064,Brooklyn Apt with AMAZING NYC view,30116009,Veronica,Brooklyn,Sunset Park,40.6503,-74.00231,Entire home/apt,115,5,1,2016-01-03,0.02,1,0 +8950419,Bright Artistic Downtown Studio,3736228,Graham,Manhattan,Chinatown,40.71719,-73.99109,Entire home/apt,145,30,60,2019-06-20,1.38,1,15 +8951083,Bright Studio in the trees of North Williamsburg,46785121,Mel,Brooklyn,Greenpoint,40.72024,-73.95483,Entire home/apt,169,1,22,2019-07-02,2.59,1,39 +8951315,Cozy (2) bedrooms in Brooklyn NYC.,46786142,Janet & Vincent,Brooklyn,East Flatbush,40.65012,-73.94056,Private room,75,1,15,2018-10-08,0.33,1,355 +8951480,Unique townhouse apartment,46787065,C,Manhattan,Upper West Side,40.80356,-73.9698,Entire home/apt,100,7,2,2016-08-16,0.05,1,0 +8951763,Cozy 1 Bedroom apt right by park!,31752474,Tine,Brooklyn,Prospect-Lefferts Gardens,40.66141,-73.9615,Entire home/apt,69,45,1,2016-09-01,0.03,2,0 +8952816,CHARMING ROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76786,-73.92433,Private room,45,1,137,2019-06-16,3.06,9,283 +8953050,Beautiful private studio,46794554,Bhargav,Queens,Ditmars Steinway,40.77987,-73.90309,Entire home/apt,75,7,0,,,1,0 +8953200,CLASSIC BEDROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76783,-73.92316,Private room,55,1,143,2019-06-21,3.19,9,276 +8953404,LARGE BEDROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76801,-73.92501,Private room,55,1,78,2019-06-20,1.78,9,311 +8953625,"PRIVATE, CLEAN, ROOM CLOSE TO MANH",45416627,Lolita,Queens,Astoria,40.76832,-73.92346,Private room,48,1,150,2019-06-23,3.39,9,323 +8954037,BIG NEW ROOM,45416627,Lolita,Queens,Astoria,40.76942,-73.92343,Private room,50,1,99,2019-05-20,2.21,9,341 +8955506,Large Room in Artist Loft,20627781,Grace,Brooklyn,Greenpoint,40.72569,-73.95515,Private room,56,2,1,2016-01-03,0.02,1,0 +8955543,Jewel On Parkside 2,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.9607,Private room,65,28,13,2019-02-05,0.30,3,319 +8955750,Sunny Brooklyn Brownstone apartment,46182242,Kristen,Brooklyn,Sunset Park,40.64469,-74.01035,Entire home/apt,140,2,74,2018-12-16,1.65,1,2 +8956253,BRKLYN - Comfy & Chic private space,46810144,Emmanoele,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.95405,Private room,95,2,57,2019-06-24,1.27,1,209 +8957187,Lovely Room in Sunny & Modern Apartment,1317384,Tamara,Manhattan,Harlem,40.82647,-73.94747,Private room,73,2,92,2019-06-12,2.08,2,177 +8957189,Cozy 2 BR in heart of East Village,25492187,Abigail,Manhattan,East Village,40.72566,-73.98323,Entire home/apt,230,1,0,,,1,0 +8963790,New York City 2bd-apt in great location!,46846064,Frahydel,Manhattan,Roosevelt Island,40.76348,-73.94859,Entire home/apt,180,7,2,2017-01-02,0.05,2,0 +8963968,Large room in cute neighborhood,1610862,Madelyn,Brooklyn,Prospect Heights,40.67985,-73.96454,Private room,47,7,8,2017-06-14,0.18,1,0 +8964008,Cozy Bed in Midtown Manhattan,18655157,Phuong,Manhattan,Midtown,40.74387,-73.98496,Shared room,55,5,5,2019-06-20,0.12,3,0 +8964308,Relaxing Modern Brooklyn Space,2968774,Alexis,Brooklyn,Crown Heights,40.66776,-73.957,Entire home/apt,125,2,10,2016-04-18,0.22,2,0 +8964446,Cozy Bedroom in Astoria Two Bedroom Apartment.,46848226,Jessica,Queens,Astoria,40.7601,-73.91929,Private room,60,2,5,2018-06-01,0.21,1,0 +8964740,Alcove Studio in Murray Hill,46851431,Anthony,Manhattan,Murray Hill,40.74637,-73.97469,Entire home/apt,104,1,0,,,1,0 +8966368,Beautiful Apartment in Cobble Hill,321710,Piero,Brooklyn,Cobble Hill,40.68653,-73.99288,Entire home/apt,225,3,1,2016-04-12,0.03,1,0 +8971258,Gorgeous Three Bedroom Split Level,46881049,Elizabeth,Brooklyn,Canarsie,40.64455,-73.90978,Entire home/apt,169,2,30,2019-06-30,0.87,1,345 +8971863,"Coliving in Brookln, New York / Private room / Fl",27974952,Alex,Brooklyn,East Flatbush,40.64595,-73.9504,Private room,45,30,7,2017-02-16,0.15,7,124 +8972219,Cozy apartment East Village NYC,12933114,Ausra,Manhattan,East Village,40.72143,-73.97824,Entire home/apt,130,5,4,2017-01-01,0.09,1,0 +8972807,Cosy loft 20 mins to Manhattan,46888345,Amélie,Brooklyn,Williamsburg,40.70666,-73.93788,Private room,53,3,1,2015-12-31,0.02,1,0 +8972957,"Artsy 3-Bdrm, 2 bath, Sleeps 10, 1 min from subway",806818,Jasmine,Brooklyn,Bedford-Stuyvesant,40.67851,-73.92002,Entire home/apt,150,2,121,2019-06-14,2.69,1,287 +8973075,"Large Private Room, great location!",8595112,Adrien,Manhattan,Midtown,40.75531,-73.97147,Private room,140,1,13,2016-05-17,0.29,2,0 +8973292,Cozy Upper East Side two bedroom,1372837,Manoj,Manhattan,Upper East Side,40.77595,-73.94969,Entire home/apt,295,4,0,,,1,0 +8973682,1 Room in Apt. near Columbia Univ.,26271616,Ian,Manhattan,Upper West Side,40.80101,-73.96076,Private room,98,2,1,2015-12-20,0.02,2,0 +8973873,Sunny Loft in Clinton Hill,11458977,Robin,Brooklyn,Clinton Hill,40.68699,-73.9639,Entire home/apt,120,3,88,2019-06-26,2.04,1,49 +8974121,Cozy Sizeable Sutton Place Studio!,46815771,Tide,Manhattan,Midtown,40.75687,-73.96639,Entire home/apt,170,3,1,2015-12-09,0.02,1,0 +8974316,"Great room in Upper Manhattan, New York!!!",4154037,Rajiv,Manhattan,Harlem,40.82325,-73.94444,Private room,47,14,19,2019-05-26,0.54,2,210 +8975190,Fresh and great 2BR,46901221,Sandy,Brooklyn,Sheepshead Bay,40.5974,-73.96211,Entire home/apt,129,2,137,2019-07-02,3.55,2,133 +8975201,Great 2BR Apartment,46901221,Sandy,Brooklyn,Sheepshead Bay,40.59629,-73.96367,Entire home/apt,119,2,174,2019-06-30,3.88,2,65 +8980303,Serene Brooklyn Apt w/ Terrace,9903826,Robin,Brooklyn,Clinton Hill,40.68713,-73.96226,Shared room,99,3,0,,,1,0 +8984018,Quaint 1BR In West Village,3256202,Kyle,Manhattan,Chelsea,40.74044,-74.00326,Entire home/apt,225,1,0,,,1,0 +8984085,Bedroom with private bathroom & rooftop in duplex,4428757,Benjamin,Brooklyn,Crown Heights,40.6758,-73.93185,Private room,50,6,24,2018-05-13,0.54,1,0 +8985316,Upper East close to the subway PERFECT LOCATION,46941561,Maria,Manhattan,Upper East Side,40.76066,-73.96372,Entire home/apt,100,20,16,2019-05-31,0.60,1,49 +8985856,1 bdr w Private balcony Fort Greene!,27670390,Leigha,Brooklyn,Fort Greene,40.69402,-73.97274,Private room,55,1,3,2018-12-31,0.09,1,0 +8986308,King Sized Bed Park Slope,21293445,Ryan,Brooklyn,Gowanus,40.66864,-73.99484,Private room,155,1,0,,,1,0 +8986585,Williamsburg Two Bedroom/Two Bath,46946480,Danielle,Brooklyn,Williamsburg,40.71223,-73.94864,Entire home/apt,275,3,51,2017-12-03,1.14,1,0 +8987285,Beauty bedroom in 1899 gem,2948932,Natalie,Brooklyn,Bushwick,40.69689,-73.93333,Private room,65,2,6,2016-09-10,0.13,1,156 +8987462,Lux Apt by Botanic Garden & Museum,2932525,Joel,Brooklyn,Crown Heights,40.66352,-73.96005,Entire home/apt,170,3,28,2018-10-01,0.62,1,0 +8988451,New York City Living,46953097,Lauren,Bronx,Concourse Village,40.82705,-73.91337,Private room,95,2,6,2016-08-14,0.14,1,173 +8988997,Beautiful Furnished 1 Bedroom NYC Apartment,30283594,Kara,Manhattan,Chelsea,40.74569,-73.99183,Entire home/apt,129,30,0,,,121,164 +8989320,1 BEDROOM SUITE IN HARLEM FAMILY TOWNHOUSE,15105912,Maribel,Manhattan,Harlem,40.80473,-73.94763,Entire home/apt,175,3,186,2019-07-05,4.12,1,187 +8989430,Furnished Luxury 1BR apt. in the heart of NYC!,30283594,Kara,Manhattan,Chelsea,40.74463,-73.9919,Entire home/apt,136,30,0,,,121,349 +8990063,UWS/Elevator/CENTRAL/SUBWAYS/PARK,46962156,Martha,Manhattan,Upper West Side,40.78172,-73.97825,Entire home/apt,190,1,0,,,1,0 +8990116,Bright and spacious 1 bedroom,5485733,Jelena,Brooklyn,Williamsburg,40.70862,-73.95432,Entire home/apt,150,2,19,2017-10-14,0.42,1,0 +8990988,The Most Happening Hood in BK!,9060143,Amelia,Brooklyn,Bushwick,40.69502,-73.93126,Entire home/apt,75,3,6,2017-08-29,0.15,1,0 +8992423,Luxury 2BDR apt - 45 floor top view,8113248,Francesco,Manhattan,Theater District,40.75935,-73.9875,Entire home/apt,590,1,0,,,2,0 +8992666,Newly reno 1BR Harlem brownstone,579126,Banna,Manhattan,Harlem,40.80307,-73.946,Entire home/apt,169,5,0,,,1,0 +8992714,Thanksgiving in Beautiful Bed-Stuy,40552516,Henry,Brooklyn,Bedford-Stuyvesant,40.6863,-73.92635,Private room,51,1,2,2015-11-28,0.05,1,0 +8992894,CENTRAL PARK TOWNHOUSE Near Columbia Univ,46973966,Lorena,Manhattan,Harlem,40.80049,-73.95533,Entire home/apt,899,6,52,2019-06-22,1.16,2,287 +8993461,One bedroom and shared space,46976876,Carolina,Manhattan,East Village,40.72477,-73.98836,Private room,90,7,0,,,2,0 +8993857,Comfy place to stay in Brooklyn / Flatbush / 4,27974952,Alex,Brooklyn,East Flatbush,40.64601,-73.94886,Shared room,25,30,8,2017-07-01,0.18,7,343 +8993871,"Sunny bedroom with balcony, Queens",46979077,Maya,Queens,Elmhurst,40.74085,-73.89022,Private room,65,1,123,2019-06-22,2.76,2,333 +8993887,NYC.CHAUNCEY1 15.min to Manhattan.,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68003,-73.92094,Private room,42,1,122,2019-06-23,2.84,4,340 +8994025,Sunny & Spacious Room w/ Private Bathroom,12774739,Stefan,Brooklyn,Bedford-Stuyvesant,40.68654,-73.95044,Private room,40,5,12,2019-03-10,0.28,1,0 +8994058,Brooklyn Bliss 1,44929652,Lawanne,Brooklyn,East Flatbush,40.64335,-73.94888,Private room,60,2,9,2019-07-01,0.21,4,361 +8994197,1 Bedroom in the heart of Greenwich Village / SoHo,4974196,Dan,Manhattan,Greenwich Village,40.72744,-73.99979,Entire home/apt,157,3,2,2017-11-25,0.10,1,0 +8994423,1 bedroom on lower east side,2599664,Maria,Manhattan,Lower East Side,40.7154,-73.98473,Entire home/apt,170,1,1,2015-11-26,0.02,1,0 +8995042,Private room in Brooklyn,25077909,Carlos,Brooklyn,Bedford-Stuyvesant,40.68915,-73.92467,Private room,50,3,15,2019-02-28,0.33,2,217 +8995426,Manhattan skyline Rm,13813923,Maria,Queens,Long Island City,40.74417,-73.94964,Private room,55,1,33,2019-04-22,2.10,2,293 +9002096,Queen Size Bedroom with full closet,47013708,Mark,Brooklyn,Crown Heights,40.67867,-73.96276,Private room,45,3,3,2015-11-25,0.07,1,0 +9003691,Luxury Studio Apartment in NYC'S Chelsea District,30283594,Kara,Manhattan,Chelsea,40.7449,-73.99167,Entire home/apt,109,30,1,2016-10-31,0.03,121,184 +9004946,One bedroom garden apartment.,47025665,Heather,Brooklyn,Bedford-Stuyvesant,40.68973,-73.93785,Entire home/apt,105,4,131,2019-06-17,2.92,1,55 +9004969,New and stylish NYC pad with skylight,47022650,Jillian,Manhattan,East Harlem,40.79405,-73.93429,Entire home/apt,150,1,48,2019-06-23,1.07,3,326 +9005771,6 week sublet in Harlem,31666407,Nathan,Manhattan,Harlem,40.81999,-73.93933,Private room,45,14,1,2016-01-05,0.02,1,0 +9006920,Chill place in Brooklyn / Flatbush,27974952,Alex,Brooklyn,East Flatbush,40.64517,-73.94843,Shared room,40,30,5,2018-05-03,0.11,7,365 +9007591,Lg Top Flr Rm Park Slope Brownstone,25344446,Philip,Brooklyn,Park Slope,40.67037,-73.97637,Private room,105,5,32,2019-05-25,0.71,2,312 +9007767,Spacious Modern Alcove Studio 4,45595980,Tny,Manhattan,Midtown,40.76135,-73.96707,Entire home/apt,135,30,8,2018-09-09,0.19,12,282 +9010782,Quiet and Spacious luxury townhouse,7324559,William,Manhattan,Lower East Side,40.71067,-73.98695,Private room,180,1,0,,,1,0 +9011614,Bed-Stuy Brownstone,31019553,Miranda,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92576,Entire home/apt,150,1,1,2015-11-02,0.02,1,0 +9013280,Luxury studio Bedstuy Brooklyn,8011670,Joel,Brooklyn,Bedford-Stuyvesant,40.68757,-73.93032,Entire home/apt,70,2,77,2019-06-29,1.77,1,274 +9013350,Sunny Clinton Hill Apartment,4048695,Deniz,Brooklyn,Clinton Hill,40.68724,-73.96361,Entire home/apt,120,2,28,2019-06-30,0.64,1,294 +9014126,Cozy Bedroom in East Village,24622525,Hannah,Manhattan,East Village,40.7268,-73.98027,Private room,89,1,0,,,1,0 +9014320,Cute Doublebed in Lower East Side,36228511,Nieve,Manhattan,East Village,40.72247,-73.98435,Private room,100,1,5,2017-01-04,0.12,1,0 +9015649,Charming duplex Morningside Heights-Private Floor,47076540,Edlira,Manhattan,Morningside Heights,40.81111,-73.95465,Private room,125,1,27,2019-05-28,2.87,1,80 +9016650,Spacious 1 BR Apartment - Sleeps 4,24677080,Patrick,Manhattan,Upper East Side,40.77762,-73.9516,Entire home/apt,170,1,190,2019-06-17,4.36,1,260 +9022118,Single room in apartment share,8311526,Sean,Manhattan,Upper West Side,40.79807,-73.96894,Private room,80,1,1,2015-11-03,0.02,1,0 +9022913,"Stylish Townhouse, 2 large bedrooms + ensuite bths",47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93228,Private room,249,3,5,2019-07-02,0.45,3,360 +9023240,Duplex Penthouse & Private Rooftop,7366091,Harry,Brooklyn,Williamsburg,40.71623,-73.9579,Entire home/apt,350,3,4,2016-05-22,0.09,1,0 +9024193,LUXURY XLARGE/24/7 DOORMAN~MIDTOWN,2856748,Ruchi,Manhattan,Midtown,40.75251,-73.97262,Entire home/apt,175,30,0,,,49,365 +9024549,Spacious & Lofted in Williamsburg,8313697,Koppel,Brooklyn,Park Slope,40.673,-73.98076,Private room,120,20,0,,,1,365 +9024661,TRUE2BR-PRIME MIDTOWN EAST~53rd&3rd,2856748,Ruchi,Manhattan,Midtown,40.75759,-73.96902,Entire home/apt,230,30,0,,,49,332 +9024747,Tranquil Room :),47113234,Bryan,Brooklyn,Bushwick,40.69989,-73.92352,Private room,100,1,0,,,1,0 +9024874,Beautiful Apartment in East Village,410665,Jayden,Manhattan,East Village,40.7232,-73.98561,Entire home/apt,139,3,11,2018-05-28,0.25,1,0 +9025421,Charming comfy apt in hip Bushwick!,4422465,Isabel,Brooklyn,Bushwick,40.70288,-73.91506,Entire home/apt,89,4,5,2018-09-06,0.12,1,2 +9025565,Flex 2BR Loft ( 1br +Sleep Loft +Sofa Bed )!,7503643,Vida,Brooklyn,Greenpoint,40.72614,-73.94007,Entire home/apt,159,30,6,2019-06-04,0.15,52,343 +9025602,Luxury 1-Bedroom Financial District Apartment!,30283594,Kara,Manhattan,Financial District,40.70726,-74.01429,Entire home/apt,229,30,0,,,121,184 +9026203,Subway-Ocean-Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.58892,-73.97379,Private room,70,3,67,2018-10-07,1.53,2,40 +9026474,UWS 1 BR/High Ceilings/Central Park,4619655,Neil,Manhattan,Upper West Side,40.78487,-73.9754,Entire home/apt,125,1,0,,,1,0 +9026479,2 Bedroom East Village Americana Oasis,2266437,Rachel,Manhattan,East Village,40.72314,-73.97929,Entire home/apt,200,5,10,2018-12-28,0.26,1,0 +9026485,Luxury Studio Apt in NYC Financial District!,30283594,Kara,Manhattan,Financial District,40.70776,-74.01514,Entire home/apt,169,30,2,2016-06-28,0.05,121,364 +9027607,Bright West Village Apartment,19435113,Mark,Manhattan,West Village,40.73139,-74.00452,Entire home/apt,175,1,0,,,1,0 +9028399,LOWER EAST SIDE GEM,3754629,Gina,Manhattan,Lower East Side,40.71873,-73.98394,Entire home/apt,150,1,0,,,1,0 +9028493,"Charming & Spacious, 2 bedrooms in❤️of Greenpoint",24780521,Alisa,Brooklyn,Greenpoint,40.72698,-73.94911,Private room,90,1,116,2019-06-09,3.17,1,76 +9028527,Sunny duplex near Central Park,1584064,Adrienne,Manhattan,Harlem,40.80093,-73.95012,Entire home/apt,165,1,0,,,2,0 +9028589,Gramercy & Madison Park CONDO 3 BED 2BATH,47129484,Michelle,Manhattan,Gramercy,40.73744,-73.98413,Entire home/apt,305,3,175,2019-06-21,3.89,1,132 +9028839,3 bdroom apt off Montrose L,3248277,Sara,Brooklyn,Williamsburg,40.70742,-73.94185,Entire home/apt,200,3,0,,,1,0 +9029289,Stylish Boutique Apt Close to Central Park,46473604,Paul,Manhattan,Upper West Side,40.77739,-73.98231,Entire home/apt,88,29,71,2019-06-02,1.62,1,95 +9030997,ARTISTIC STUDIO FOR TWO,47139912,Claude,Manhattan,Upper East Side,40.77029,-73.95812,Entire home/apt,110,3,69,2018-09-10,1.78,1,5 +9031216,"upstairs apartment private, spacious",47140247,Hilary,Queens,Bellerose,40.72756,-73.71795,Entire home/apt,42,3,0,,,1,0 +9033081,Steps from Museum of Art,39763202,Kya & Evan,Brooklyn,Crown Heights,40.66869,-73.96022,Entire home/apt,150,2,11,2016-10-09,0.24,1,0 +9033218,HUGE room in beautiful apartment,7252221,Zhenya,Brooklyn,Flatbush,40.65061,-73.96125,Private room,50,27,6,2017-09-30,0.14,2,0 +9035181,Cute Clinton Hill brownstone apt!,15055897,Heather,Brooklyn,Clinton Hill,40.6921,-73.96603,Entire home/apt,125,3,3,2017-01-02,0.08,2,0 +9036422,Columbus Circle/Hell's Kitchen Gem,45296989,Patrick,Manhattan,Upper West Side,40.77188,-73.98847,Entire home/apt,125,7,4,2017-04-08,0.10,1,0 +9037702,An Artists' Home in Chinatown - B,254860,Ricky,Manhattan,Chinatown,40.71434,-73.99342,Private room,80,4,1,2015-11-02,0.02,1,0 +9039236,"Sunny, spacious Washington Heights!",47176167,Christopher,Manhattan,Washington Heights,40.8512,-73.93693,Private room,75,1,0,,,1,0 +9040796,Lovely Studio in Midtown,21716352,Alice,Manhattan,Kips Bay,40.74208,-73.98084,Entire home/apt,120,1,4,2016-04-01,0.10,1,0 +9040931,Queen bedroom & huge private bath,29213,Angela,Brooklyn,Fort Greene,40.68785,-73.97682,Private room,79,7,1,2015-10-23,0.02,1,0 +9042254,Beautiful & Spacious EV Bedroom,47187008,Francesca,Manhattan,East Village,40.72737,-73.98605,Private room,90,7,0,,,1,0 +9043652,Great 1 bedroom apartment in the heart of soho,6304221,Phil,Manhattan,SoHo,40.72038,-73.99818,Entire home/apt,190,2,10,2019-07-01,0.97,1,41 +9043722,Lavish 1BR in FiDi + city views,30283594,Kara,Manhattan,Financial District,40.70574,-74.00809,Entire home/apt,239,30,2,2018-06-10,0.09,121,186 +9043905,"Bright, Charming APT in West Village/SoHo",3331710,Amy,Manhattan,Greenwich Village,40.72874,-74.00122,Entire home/apt,200,2,29,2019-01-01,0.65,1,0 +9045427,Sunrise Condominium Apartment,47198995,Diana,Staten Island,Grymes Hill,40.61201,-74.09513,Entire home/apt,200,1,1,2015-11-01,0.02,1,0 +9045876,BEAUTIFUL BROWNSTONE PARLOR FLOOR,7380428,Mel,Manhattan,Harlem,40.81345,-73.94659,Entire home/apt,175,7,44,2019-06-29,0.99,3,193 +9046095,Private & Quaint West Village Gem!,12995701,Robyn,Manhattan,West Village,40.73208,-74.00393,Entire home/apt,200,4,1,2016-01-01,0.02,1,0 +9046203,Large renovated 2 bedroom apt.,47202400,Alister,Brooklyn,Bedford-Stuyvesant,40.67867,-73.92282,Entire home/apt,130,3,129,2019-06-11,2.93,1,163 +9046808,Sunny East Harlem one bedroom,21647215,Vadim,Manhattan,East Harlem,40.79717,-73.93519,Entire home/apt,95,1,2,2015-11-18,0.04,1,0 +9047417,"King Bed,Entire Home Downtown, WiFi",31153462,Talia,Manhattan,Lower East Side,40.72176,-73.99345,Entire home/apt,140,7,3,2016-01-05,0.07,1,0 +9047816,Beautiful Home 1 Stop from Midtown,2660650,Allan (& Max),Queens,Long Island City,40.74977,-73.93979,Private room,100,4,46,2019-06-29,1.18,1,284 +9048630,Upper Manhattan Inwood - Beautiful,47212879,Mary,Manhattan,Inwood,40.86703,-73.93007,Private room,75,3,1,2016-07-08,0.03,1,89 +9049505,Spacious Room in West Harlem,2413971,Teresa,Manhattan,Harlem,40.80193,-73.95573,Private room,74,1,0,,,1,0 +9049582,1 br in a spacious 2 br apt in UES,47217135,Cal,Manhattan,Upper East Side,40.7737,-73.95616,Shared room,80,1,17,2016-04-23,0.38,1,0 +9049607,Room In Central and Spacious Williamsburg Loft!,14456700,Simone,Brooklyn,Williamsburg,40.71594,-73.95991,Private room,60,2,1,2019-05-12,0.52,1,0 +9050105,"Prospect Park 3 bedroom, Sleeps 8",47219962,Babajide,Brooklyn,Prospect-Lefferts Gardens,40.66289,-73.96175,Entire home/apt,125,2,125,2019-06-30,2.79,2,229 +9050144,"Sunny Apt, Clinton Hill Brownstone",7360880,Kay,Brooklyn,Bedford-Stuyvesant,40.68532,-73.9571,Private room,80,1,2,2015-12-29,0.05,1,0 +9050373,Peaceful & Colorful Brooklyn Oasis Near Park+Train,1393469,Tatiana,Brooklyn,Flatbush,40.65228,-73.96428,Entire home/apt,97,2,22,2019-05-21,0.54,1,2 +9050597,"Charming,Quiet & Relaxing",7407846,Alison,Manhattan,Harlem,40.82642,-73.93668,Private room,79,1,0,,,1,0 +9051314,Private Room in Fab East Village,22007415,Hannah,Manhattan,East Village,40.72246,-73.97912,Private room,110,3,2,2016-06-12,0.05,1,0 +9051437,"Bright, spacious and cozy",14544355,Elizabeth,Brooklyn,Crown Heights,40.66588,-73.95677,Entire home/apt,140,3,60,2019-06-10,1.34,1,37 +9051763,"Room in 3BR Condo, FREE WASHER/DRYER",1283476,Mark,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94572,Private room,57,5,14,2019-05-29,0.37,2,216 +9052018,Near Museum Mile and Central Park,47228873,James,Manhattan,East Harlem,40.78972,-73.9503,Private room,195,1,0,,,1,0 +9057283,Renovated Modern-right on Times Sqr,2856748,Ruchi,Manhattan,Theater District,40.75891,-73.9845,Entire home/apt,175,30,0,,,49,333 +9058854,"Bright, Sunny Room in Crown Heights",10701169,Christine,Brooklyn,Crown Heights,40.67192,-73.95116,Private room,50,3,1,2016-06-30,0.03,1,0 +9059397,Spacious apartment close to 96St St,14614459,Dario,Manhattan,Upper East Side,40.7837,-73.94877,Entire home/apt,180,1,1,2016-01-05,0.02,4,0 +9061117,LOVELY 1BR. 15Min. to Times Square,4087778,Katie,Queens,Sunnyside,40.74502,-73.91355,Entire home/apt,180,3,0,,,1,0 +9061331,Sunny Harlem penthouse,4186597,Michael Francis,Manhattan,Harlem,40.80822,-73.94264,Entire home/apt,180,2,18,2019-06-13,0.42,1,29 +9062257,Spacious 1-bedroom in Crown Heights,6075567,Yasmin,Brooklyn,Crown Heights,40.67089,-73.94825,Entire home/apt,100,2,13,2018-09-09,0.31,1,0 +9062515,"Adorable, Artsy 1BR; Hip Location!",21804910,Brinn,Brooklyn,Greenpoint,40.73258,-73.95582,Entire home/apt,175,2,21,2019-05-19,1.40,1,38 +9063028,1bdr in luxury 2bdr apt - 45 floor,8113248,Francesco,Manhattan,Theater District,40.7594,-73.98634,Private room,210,3,0,,,2,0 +9063139,Prime Location & Tech Entrepreneurs,13530279,Chris,Manhattan,East Village,40.72517,-73.99023,Private room,100,3,3,2016-01-03,0.07,1,0 +9063266,Sunny 1BR in Heart of Williamsburg,47275801,Eric,Brooklyn,Williamsburg,40.71256,-73.95224,Entire home/apt,250,2,1,2015-12-06,0.02,1,0 +9063376,Pre-Thxgiving Park Slope Large 2br,3819001,Tracy,Brooklyn,South Slope,40.6647,-73.97791,Entire home/apt,55,3,0,,,2,0 +9063972,Chill Bushwick Suite,3040551,Olu Bliss,Brooklyn,Bushwick,40.69709,-73.91435,Private room,80,3,0,,,1,0 +9064238,Large 1-bedroom in midtown sleeps 1-4 people,4166175,Rob,Manhattan,Midtown,40.75454,-73.97083,Entire home/apt,103,6,0,,,1,0 +9064688,2 bedroom with yard! Near L train!,1606152,Laura,Brooklyn,Williamsburg,40.70697,-73.94291,Entire home/apt,150,1,1,2015-11-29,0.02,1,0 +9064714,1870's 3-story house private bedroom,26379512,Sheila,Queens,Long Island City,40.74495,-73.9557,Private room,90,3,34,2019-07-06,1.02,1,3 +9065297,Charming 2 Bed apt/Uptown Manhattan,17713747,Polly,Manhattan,Washington Heights,40.85479,-73.93313,Entire home/apt,150,5,6,2016-11-26,0.14,3,37 +9066389,Cozy 2 bedroom in heart of LES,47289872,Kara,Manhattan,Lower East Side,40.72004,-73.99026,Entire home/apt,190,1,2,2015-11-25,0.05,1,0 +9073600,Upper East Side 2 Bedroom Sleeps 4,6942997,Deborah,Manhattan,Upper East Side,40.7834,-73.94556,Entire home/apt,95,2,0,,,1,0 +9074702,Private Room Downtown,260958,Aura,Manhattan,Lower East Side,40.71334,-73.99025,Private room,75,1,91,2018-10-08,2.07,3,0 +9074921,Spacious Williamsburg Apartment,8163703,Mariana,Brooklyn,Williamsburg,40.71238,-73.9559,Entire home/apt,150,3,12,2016-07-19,0.28,1,0 +9074963,Lovely room available in large apt!,47329500,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.67852,-73.94377,Private room,48,15,0,,,1,0 +9075249,Spacious Ft. Greene room near subway/restaurants,7019923,Allison,Brooklyn,Clinton Hill,40.69161,-73.96572,Private room,65,30,8,2019-01-05,0.18,1,18 +9077858,Beautiful shared apartment / Coliving in Brooklyn,27974952,Alex,Brooklyn,East Flatbush,40.64509,-73.94825,Shared room,27,30,7,2019-03-20,0.16,7,342 +9078222,"Prospect Park 3 bdrm, Sleeps 8 (#2)",47219962,Babajide,Brooklyn,Prospect-Lefferts Gardens,40.66086,-73.96159,Entire home/apt,150,2,123,2019-07-01,2.74,2,263 +9078632,Private room in Manhattan,42570179,Joanne,Manhattan,Washington Heights,40.83559,-73.94552,Private room,75,2,53,2018-06-29,1.18,1,0 +9078739,Modern Williamsburg Loft Great View,1453898,Anthony,Brooklyn,Williamsburg,40.71254,-73.96849,Private room,80,2,38,2018-07-28,0.89,3,0 +9079335,Spacious Apartment in East Village,3724325,Anne-Laure,Manhattan,East Village,40.72162,-73.97923,Entire home/apt,185,2,4,2016-09-10,0.09,1,0 +9079542,Cozy room + backyard in Bushwick,2123463,Eyal,Brooklyn,Bushwick,40.69342,-73.91116,Private room,55,1,2,2016-10-01,0.05,1,0 +9079628,ღ Spacious and chill studio 웃♥유,46019410,Regina,Brooklyn,Sheepshead Bay,40.59631,-73.95743,Entire home/apt,98,2,12,2018-06-24,0.27,1,320 +9079871,NYCHaven1: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65422,-73.93784,Entire home/apt,165,1,232,2019-06-23,5.18,4,231 +9080286,Quiet room close to subway.,47353889,Marcelo,Brooklyn,Prospect Heights,40.67939,-73.97126,Private room,75,4,40,2016-09-30,0.89,1,0 +9087285,Modern Upper East Side Studio,34398769,Sean,Manhattan,Upper East Side,40.76773,-73.95456,Entire home/apt,145,1,3,2016-01-02,0.07,1,0 +9089306,"East Village, 1 Bed, Clean & Clear.",5671308,Jordan,Manhattan,East Village,40.73164,-73.98454,Entire home/apt,135,3,10,2016-03-24,0.23,1,0 +9089397,"Hosting single travelers, Weekends",47394476,Alexander,Queens,Astoria,40.76352,-73.91353,Private room,50,2,1,2015-11-03,0.02,1,0 +9090351,"Huge TriBeCa Loft, Shared Space 1Br",47399155,Dan,Manhattan,Tribeca,40.72024,-74.00866,Private room,100,1,25,2017-10-20,0.72,1,0 +9091373,Cozy and Creative in Clinton Hill,3829471,Julian,Brooklyn,Bedford-Stuyvesant,40.69045,-73.95852,Private room,100,6,0,,,1,0 +9091710,Sunny East Village Apartment,47403089,Kathleen,Manhattan,East Village,40.72281,-73.97768,Entire home/apt,130,1,6,2015-12-30,0.13,1,0 +9092024,Enjoy a Private Room in SoHo,47406119,Jacqueline,Manhattan,SoHo,40.72558,-74.00195,Private room,145,2,1,2015-10-27,0.02,1,0 +9092331,"Large, beautiful and sunny room",47407352,Dorota,Manhattan,Inwood,40.86444,-73.92899,Private room,45,5,0,,,1,0 +9092903,"Cosy Loft, Studio - lots of light",552067,Miriam,Brooklyn,Williamsburg,40.70994,-73.94915,Entire home/apt,120,7,9,2018-12-11,0.21,1,0 +9093219,Serenity Space,47411697,Marie,Manhattan,Harlem,40.81185,-73.94579,Private room,90,2,67,2019-06-22,1.54,1,211 +9093261,Large East Village 1 bedroom,47036828,David,Manhattan,East Village,40.732,-73.98518,Entire home/apt,190,1,0,,,1,0 +9093358,2 bedroom apt on Upper East Side,8093077,Annie,Manhattan,Upper East Side,40.76717,-73.95317,Entire home/apt,250,2,3,2016-07-30,0.07,1,0 +9093389,Studio Apartment in Brooklyn,38738475,Homero,Brooklyn,Park Slope,40.67036,-73.97776,Entire home/apt,90,5,1,2016-01-05,0.02,1,0 +9093866,2-bedroom in Landmark building on W116th. Special,47414802,Jason,Manhattan,Harlem,40.8035,-73.95105,Entire home/apt,165,120,7,2018-08-08,0.22,2,139 +9093991,Beautiful East Village Apartment,4655737,Saara,Manhattan,East Village,40.72742,-73.98968,Entire home/apt,175,5,9,2017-08-27,0.20,1,0 +9096381,Brownstone apt in historic Brooklyn,2653685,Marisa & Tom,Brooklyn,Bedford-Stuyvesant,40.68282,-73.93289,Entire home/apt,120,2,74,2019-07-01,1.65,1,333 +9096478,"Open, private room, Central Harlem",47426195,Shawn,Manhattan,Harlem,40.80891,-73.94113,Private room,85,1,3,2017-10-22,0.07,1,0 +9096630,Apartment in Lower Manhattan,23948552,Chikezie,Manhattan,Chinatown,40.71544,-73.99106,Private room,90,1,1,2015-10-28,0.02,1,0 +9096938,Sunny plant-filled Park Slope apt,14356,Amy,Brooklyn,South Slope,40.66255,-73.983,Private room,70,6,9,2017-08-31,0.21,1,0 +9104108,Cozy Large 1 BR Apt -Hamilton Hts,47457325,Miranda,Manhattan,Harlem,40.8239,-73.95393,Entire home/apt,110,3,1,2015-11-29,0.02,1,0 +9104505,Fully-Furnished 1-BR New York City Apt,30283594,Kara,Manhattan,Financial District,40.70535,-74.00672,Entire home/apt,239,30,0,,,121,186 +9104995,Times Square Area Neat & clean all inclusive AAA+,22251283,Nir,Manhattan,Hell's Kitchen,40.75633,-73.99439,Entire home/apt,125,30,8,2019-05-31,0.30,4,56 +9105223,Modernly Furnished 1 Bedroom Apt in FiDi,30283594,Kara,Manhattan,Financial District,40.70358,-74.00824,Entire home/apt,239,30,0,,,121,186 +9105853,Cushy Room in Cool Bk Neighborhood,32848328,Barbra,Brooklyn,Bushwick,40.70107,-73.91983,Private room,55,1,0,,,1,0 +9106735,West Village Apartment,29721928,Isabella,Manhattan,West Village,40.73001,-74.00369,Entire home/apt,195,3,5,2017-03-12,0.14,1,0 +9106756,Santuary from the City - Sunny Greenpoint Apt,1692708,Rebecca,Brooklyn,Greenpoint,40.72782,-73.95459,Entire home/apt,150,14,0,,,1,42 +9106907,"2 Private Rooms for price of 1, Downtown NYC",23338493,Ryan,Manhattan,Chinatown,40.71665,-73.99633,Private room,104,3,65,2017-05-26,1.46,1,0 +9107046,"Charming Room in East Village, NY",4336010,Audrey,Manhattan,East Village,40.72786,-73.98693,Private room,95,3,0,,,1,0 +9107118,Bright loft style room in Bed-Stuy,42786873,Geoffrey,Brooklyn,Bedford-Stuyvesant,40.6948,-73.94161,Private room,45,1,2,2015-11-02,0.04,1,0 +9107450,Spacious 2BR apt in UES,3664194,Michael,Manhattan,Upper East Side,40.78419,-73.94851,Entire home/apt,210,5,0,,,1,0 +9107626,Luxurious studio apt. across from Battery Park!,30283594,Kara,Manhattan,Financial District,40.70415,-74.00688,Entire home/apt,189,30,0,,,121,365 +9107681,A Dreamy Brooklyn Solarium nearby Prospect Park!,16154600,Kai,Brooklyn,Kensington,40.64584,-73.97303,Private room,40,4,1,2016-01-02,0.02,1,0 +9107772,Beautiful 1-Bedroom near Columbia!,4055295,Sara,Manhattan,Harlem,40.82673,-73.94995,Entire home/apt,100,2,17,2016-12-27,0.39,1,0 +9107788,Brownstone in Heart of West Village,301887,Andres,Manhattan,West Village,40.73658,-74.00121,Entire home/apt,295,4,2,2016-07-23,0.05,1,0 +9107846,UWS Lovely NYC Home - Private Entry&Bath,6509584,Lila,Manhattan,Upper West Side,40.80059,-73.96552,Entire home/apt,75,1,123,2019-07-01,2.89,1,80 +9108196,Cozy Room,45601111,Dlb,Queens,Laurelton,40.67106,-73.74833,Private room,34,2,71,2019-01-29,1.72,5,282 +9108295,"2 bedroom apt in Bushwick, Brooklyn",2581079,Harriet,Brooklyn,Bushwick,40.70246,-73.91756,Entire home/apt,200,5,0,,,1,0 +9110077,Room in East Williamsburg,19885346,Mireia,Brooklyn,Williamsburg,40.70448,-73.94208,Private room,75,3,6,2016-08-16,0.16,1,0 +9110135,Affordable stay in NYC,7486909,Allie,Manhattan,East Harlem,40.79311,-73.93928,Entire home/apt,110,1,85,2019-05-06,1.90,1,304 +9111561,"East Harlem Cozy, Rustic Apartment!",35905254,Rose,Manhattan,East Harlem,40.79423,-73.94214,Private room,100,1,0,,,1,0 +9112240,Charming East Village/ABC City 1 Bedroom Apt,2069753,Jessica,Manhattan,East Village,40.73014,-73.98019,Entire home/apt,185,2,2,2016-09-25,0.06,1,0 +9112463,"Cozy 1 bedroom, close to it all in Manhattan !",39916377,Jaclyn,Manhattan,Upper East Side,40.76295,-73.95725,Entire home/apt,145,6,49,2019-06-21,2.38,1,76 +9112676,"!! CLASSIC, LUXURY & CHARM !! By Central Park UWS",1202621,Lizzy And Ryan,Manhattan,Upper West Side,40.78607,-73.97347,Entire home/apt,250,7,34,2019-06-30,0.78,1,147 +9112776,"Spacious, Comfortable BK Room",47489718,Eric,Brooklyn,Bedford-Stuyvesant,40.68516,-73.9533,Private room,55,2,0,,,1,0 +9113032,Large 1 Bedroom apartment in 1897 landmarked house,15175378,Missy & Julien,Brooklyn,Crown Heights,40.67594,-73.94839,Entire home/apt,145,5,98,2019-06-29,2.26,2,88 +9113702,"Beautiful Apartment in Harlem, NY!",47493116,Elsa,Manhattan,Harlem,40.8243,-73.94258,Entire home/apt,150,1,0,,,1,0 +9114642,Large 1Br in Brooklyn cottage,7390259,Sean,Brooklyn,Williamsburg,40.71591,-73.95695,Private room,70,6,0,,,1,0 +9114773,Cozy Upper East Side 1 bedroom apt,47408505,Anya,Manhattan,Upper East Side,40.77038,-73.95829,Entire home/apt,195,4,4,2016-05-14,0.09,1,0 +9115251,Midtown East Room,27012583,Dasha,Manhattan,Midtown,40.7606,-73.97181,Private room,86,1,3,2015-11-02,0.07,1,0 +9115536,Peaceful,47500192,Satvic,Brooklyn,Prospect-Lefferts Gardens,40.66059,-73.95842,Entire home/apt,120,5,0,,,1,190 +9115832,Lge bedroom (2 pers) in Bushwick,47501348,Margot,Brooklyn,Bushwick,40.69824,-73.93231,Private room,60,1,0,,,1,0 +9116018,Full-Sized Harlem Room with Style,12690012,Sonskeshana,Manhattan,Harlem,40.83013,-73.94112,Private room,65,3,17,2019-04-18,0.39,1,280 +9116126,Sunny Vibrant Historic 1 Bdrm Apt on CENTRAL PARK,3883685,Dan,Manhattan,Upper West Side,40.78627,-73.97112,Entire home/apt,199,28,17,2019-06-04,0.63,1,114 +9116734,"Large, fully renovated room in Brooklyn, Bed-Stuy!",20318052,Laura,Brooklyn,Bedford-Stuyvesant,40.69587,-73.9453,Private room,55,2,67,2019-06-23,1.72,2,110 +9116752,!Spacious & Modern Brooklyn Loft!,8862886,Rachel,Brooklyn,Bushwick,40.70842,-73.9208,Entire home/apt,150,2,40,2018-09-03,0.90,1,0 +9116831,1 Bedroom w/ GARDEN -Williamsburg,3922367,Christophe,Brooklyn,Williamsburg,40.71617,-73.95395,Entire home/apt,165,4,0,,,1,0 +9116868,"Gorgeous, Cozy Studio w/ Projector!",8503277,Cathy,Manhattan,East Village,40.7281,-73.97952,Entire home/apt,100,5,3,2018-01-13,0.07,1,0 +9117817,CLASSY BROWNSTONE FOR UP TO 5!! Fee for extra beds,46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68357,-73.94126,Entire home/apt,149,2,26,2019-06-23,0.67,3,360 +9117976,Cozy Artistic Haven,41510712,Jac,Manhattan,Harlem,40.82827,-73.9493,Private room,36,1,1,2015-12-27,0.02,1,0 +9118958,Nice Room in private house,22420999,Herman,Queens,Richmond Hill,40.69417,-73.83072,Private room,50,2,3,2018-01-07,0.08,5,346 +9121896,1 RED BEDROOM IN 3 BEDROOMS APT,7858210,Maxime,Manhattan,Harlem,40.81614,-73.94116,Private room,50,2,66,2019-05-29,1.51,4,180 +9125862,Luxury large one-bedroom apartment,47541749,Aline,Manhattan,Midtown,40.75807,-73.96308,Entire home/apt,300,1,0,,,1,0 +9125917,Cosy private room in the City !,20233581,Sofia,Manhattan,Kips Bay,40.73833,-73.98058,Private room,73,1,4,2016-01-05,0.09,1,0 +9125932,Modern and Quaint (long term 3 weeks or more),1519189,Annie,Brooklyn,Bedford-Stuyvesant,40.69342,-73.94322,Entire home/apt,100,15,3,2016-08-01,0.07,2,211 +9127011,Luxury 1 Bed apt in the heart of chelsea,19627702,Andrea,Manhattan,Chelsea,40.74384,-73.99383,Entire home/apt,193,1,8,2017-12-30,0.23,1,0 +9127163,Quiet retreat- exclusive. Access NYC attractions.,47546771,June,Queens,Holliswood,40.72402,-73.76828,Private room,79,3,4,2019-06-02,0.31,1,180 +9128491,Rooftop View from Brooklyn,47549695,Lena,Brooklyn,Crown Heights,40.67846,-73.96242,Private room,60,4,2,2016-05-28,0.05,1,0 +9129113,Private Room in Bushwick - Brooklyn,17497762,Marco,Brooklyn,Bushwick,40.69836,-73.9212,Private room,60,3,1,2015-12-14,0.02,1,0 +9130275,The BEST LOCATION in MANHATTAN!,47556575,Kira,Manhattan,Gramercy,40.7356,-73.99049,Entire home/apt,159,1,188,2018-11-20,4.19,1,157 +9132614,Room in the heart of Williamsburg,9870919,Sebastian,Brooklyn,Williamsburg,40.71253,-73.96023,Private room,75,4,2,2017-07-07,0.04,1,0 +9132731,"2800 SQ FT Loft for Off-Sites, Events, & Shoots",6674503,Evelyn,Brooklyn,Clinton Hill,40.68567,-73.96272,Entire home/apt,750,1,6,2019-06-14,0.17,1,365 +9132760,"Private Room, Upper East Side",14829766,Jake,Manhattan,Upper East Side,40.77549,-73.95196,Private room,235,1,2,2015-11-06,0.04,1,0 +9132807,Modernly Furnished Studio Apt in Midtown NYC,30283594,Kara,Manhattan,Midtown,40.75242,-73.97187,Entire home/apt,139,30,0,,,121,360 +9133278,This Empty Nest is the Best!,25459,Christine,Manhattan,Harlem,40.82711,-73.93989,Private room,41,1,124,2019-06-25,2.78,2,37 +9133645,Whole floor apt in old 5 points,7202402,Ross,Manhattan,Chinatown,40.71381,-73.99784,Entire home/apt,220,2,93,2019-06-22,2.48,2,293 +9133959,"Top floor, Hudson River views",3092054,Shirley,Manhattan,Hell's Kitchen,40.76642,-73.98621,Entire home/apt,120,360,0,,,1,365 +9136581,East Village,47584049,Jonathan,Manhattan,East Village,40.72524,-73.9882,Entire home/apt,180,4,5,2016-11-27,0.11,1,0 +9136814,NYC Midtown APT near Time Square,44034234,Jay,Manhattan,Hell's Kitchen,40.75911,-73.98932,Entire home/apt,185,6,10,2018-11-27,0.23,1,0 +9137194,East Village Large Studio,15278522,Matt,Manhattan,East Village,40.72479,-73.98849,Entire home/apt,225,2,1,2016-01-05,0.02,1,0 +9137941,1 BR UES Apartment,4223044,Alexandra,Manhattan,Upper East Side,40.77012,-73.95777,Entire home/apt,200,1,0,,,1,0 +9138319,Huge 2BR in the heart of Brooklyn,2264413,Zachary,Brooklyn,Prospect-Lefferts Gardens,40.65838,-73.96048,Entire home/apt,150,2,9,2018-12-29,0.21,1,6 +9138664,Private Lg Room 15 min to Manhattan,47594947,Iris,Queens,Sunnyside,40.74271,-73.92493,Private room,74,2,6,2019-05-26,0.13,1,5 +9140055,Room and Breakfast - Room 1,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92926,Private room,49,1,136,2019-07-07,3.05,3,200 +9144999,Central and Vibrant Chelsea Home,47621361,Denise,Manhattan,Chelsea,40.74526,-73.99545,Private room,140,14,1,2016-01-01,0.02,1,0 +9145070,Great Deal! Steps to Central Park,3025128,David,Manhattan,Upper West Side,40.77942,-73.97627,Entire home/apt,180,1,43,2016-08-27,0.98,1,0 +9145150,Lrg Private Bedroom in Williamsburg,31980952,Emily,Brooklyn,Williamsburg,40.71076,-73.96328,Private room,50,3,2,2015-12-29,0.05,1,0 +9145202,Room near JFK Queen Bed,47621202,Dona,Queens,Jamaica,40.6673,-73.76831,Private room,47,1,629,2019-07-05,14.58,2,333 +9146175,BRAND NEW RENOVATED 2BR~TIMES SQR,2856748,Ruchi,Manhattan,Midtown,40.75687,-73.97321,Entire home/apt,245,30,1,2016-08-15,0.03,49,331 +9146595,Super cozy private 1 bedroom garden apartment,835110,Charlotte,Brooklyn,Bedford-Stuyvesant,40.68984,-73.92703,Entire home/apt,115,1,131,2019-06-23,2.92,1,241 +9146709,Beautiful Private Rm in Trendy Area,47627249,Colin,Brooklyn,Bushwick,40.69907,-73.92723,Private room,50,7,1,2016-01-02,0.02,1,0 +9147025,Cozy City Island Cottage,403032,Diane,Bronx,City Island,40.84487,-73.78954,Entire home/apt,110,2,112,2019-07-01,2.60,1,162 +9147431,Lge Rm Middle Park Slope Brownstone,25344446,Philip,Brooklyn,Park Slope,40.67143,-73.97538,Private room,125,5,26,2019-05-20,0.59,2,292 +9148875,Lovely E. Harlem Brownstone PH,3201337,Diego,Manhattan,East Harlem,40.79779,-73.93648,Entire home/apt,150,3,90,2019-06-25,2.11,2,37 +9149182,a,47636934,Rob,Manhattan,Kips Bay,40.73975,-73.98073,Entire home/apt,139,1,1,2015-11-09,0.02,1,0 +9149435,Bright and Spacious Park Slope 1BR,46561509,John,Brooklyn,Park Slope,40.67286,-73.97133,Entire home/apt,220,1,0,,,1,0 +9149930,Prime west village ~Charming 1BR,2119276,Host,Manhattan,West Village,40.73533,-74.00378,Entire home/apt,150,30,10,2019-01-25,0.39,39,241 +9150194,Sunny Private Room nr 4 Train Lines,22489244,Jared,Brooklyn,Williamsburg,40.7048,-73.94294,Private room,79,2,78,2019-06-12,1.91,1,58 +9151490,Wdful 2 br/2bth apt in Williamsbug,8133069,Maria,Brooklyn,Williamsburg,40.70919,-73.94804,Entire home/apt,240,1,1,2017-10-09,0.05,1,0 +9151677,Light filled apt. on quiet street,40880743,Soph,Brooklyn,Clinton Hill,40.68481,-73.9656,Entire home/apt,115,5,1,2015-11-06,0.02,1,0 +9152795,Studio Bedroom Apt in Williamsburg,1443812,Luciana,Brooklyn,Williamsburg,40.71083,-73.96401,Entire home/apt,120,3,184,2019-06-27,4.10,2,262 +9152932,Spacious Duplex w/ Additional Loft.,4313126,Andy,Brooklyn,Bushwick,40.69844,-73.9334,Entire home/apt,200,1,1,2015-11-27,0.02,2,0 +9152965,Spacious Duplex w/ additional loft.,4313126,Andy,Brooklyn,Bushwick,40.69885,-73.93371,Entire home/apt,200,10,1,2016-01-07,0.02,2,0 +9153256,NEWLY RENOVATED 1BDR PRIME LOCATION,9787825,Rebecca,Manhattan,Flatiron District,40.74283,-73.99246,Entire home/apt,150,7,1,2017-07-29,0.04,1,0 +9155206,2 BATHS & 2 BEDROOMS IN PENTHOUSE!,46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94038,Entire home/apt,165,2,53,2019-06-22,1.24,3,289 +9155212,Affordable & Cozy East Village Room,47661247,Lydia,Manhattan,East Village,40.72525,-73.98691,Private room,85,6,10,2019-01-02,0.23,1,36 +9155475,Prime Chelsea 1BR Minimalist W16th,4900788,Jonathan,Manhattan,Chelsea,40.73868,-73.99647,Entire home/apt,130,2,4,2016-04-01,0.10,1,0 +9155741,1 private bedroom,47663806,Anshu,Manhattan,Kips Bay,40.7427,-73.98231,Private room,85,1,1,2015-11-08,0.02,1,0 +9156676,2 Bedrooms 100% Private,43825074,Masud,Brooklyn,Cypress Hills,40.6845,-73.87706,Entire home/apt,90,3,82,2019-06-24,1.83,3,351 +9157504,曼哈顿上西区比邻哥伦比亚大学一室一厅可住2-3人温馨小屋,47672492,Jingyi,Manhattan,Morningside Heights,40.80447,-73.96621,Private room,120,1,0,,,1,0 +9162161,Huge new modern chic reno 2 bed TSQ,914838,Lior,Manhattan,Hell's Kitchen,40.76321,-73.99297,Entire home/apt,70,20,2,2018-05-18,0.06,7,341 +9165191,Sunny Garden Facing Bedroom,16947579,Hayet,Brooklyn,Bedford-Stuyvesant,40.68201,-73.93802,Private room,40,5,8,2019-05-26,0.23,1,289 +9166769,Zen State,44087298,Catherine,Manhattan,Washington Heights,40.84699,-73.9362,Private room,55,7,24,2018-01-01,0.54,2,0 +9167889,A Unique studio apartment,17943391,Michael,Manhattan,Harlem,40.80843,-73.94125,Entire home/apt,130,2,210,2019-07-04,4.73,2,237 +9168009,Room available in Midtown West NYC,47577737,Ye,Manhattan,Midtown,40.7662,-73.98321,Private room,60,3,1,2016-04-24,0.03,1,0 +9168809,Guest Room with Queen Bed.,47718277,Steven And John,Brooklyn,Bedford-Stuyvesant,40.68878,-73.93109,Private room,65,1,71,2018-11-12,1.61,1,0 +9170129,New Apt -2 Blocks CENTRAL PARK Near COLUMBIA UNIV,46973966,Lorena,Manhattan,Harlem,40.79939,-73.9547,Entire home/apt,249,7,107,2019-06-23,2.40,2,249 +9171140,Private Room PRIME Williamsburg!!,12986471,Grayson,Brooklyn,Williamsburg,40.71984,-73.9588,Private room,75,1,1,2015-11-25,0.02,1,0 +9172067,2 BR Pent House Loft in NYC!,47731857,Gerard,Manhattan,Chelsea,40.74809,-73.99272,Entire home/apt,500,2,2,2016-02-08,0.05,1,0 +9172192,"2BR 30days MIN! Less than 30, BOOK MY ROOMS BELOW!",47705853,Katherine,Manhattan,Hell's Kitchen,40.75525,-73.99412,Entire home/apt,169,1,66,2017-08-28,1.51,3,231 +9172277,Chic and Rustic Townhouse,6615642,Derek,Brooklyn,Crown Heights,40.67342,-73.9561,Entire home/apt,300,4,0,,,1,0 +9173061,Walk to Times Square and More!,8167329,Katie,Manhattan,Hell's Kitchen,40.76236,-73.99261,Entire home/apt,95,1,6,2016-05-16,0.14,1,0 +9173352,Beautiful Brooklyn Apartment Share (Yellow Room),706623,Emilia,Brooklyn,Bushwick,40.69513,-73.90881,Private room,69,1,0,,,4,334 +9174180,Entire Apartment-Brooklyn heights,12901128,Yasmin,Brooklyn,Brooklyn Heights,40.69927,-73.994,Private room,240,1,0,,,1,0 +9175286,"Quiet studio in the UES, Manhattan",47741973,Agnieszka,Manhattan,Upper East Side,40.76935,-73.95381,Entire home/apt,120,3,1,2015-11-10,0.02,1,0 +9175459,"Location, Location, Location Meat Packing District",10621862,Shawn,Manhattan,Chelsea,40.74236,-74.00656,Entire home/apt,180,4,13,2019-06-26,0.35,1,4 +9178165,Great Space.. Central Park Area!,527811,D. Christopher,Manhattan,Harlem,40.79724,-73.94968,Private room,80,1,200,2019-06-23,4.51,1,58 +9181483,My Casa Ur Home Away From Home,47773961,Jhovana,Manhattan,East Village,40.72403,-73.97741,Private room,90,4,72,2019-06-27,1.62,1,63 +9182008,Huge beautiful 2 bedroom Apt in BEST Area,16176030,Amal,Queens,Ditmars Steinway,40.77497,-73.91425,Entire home/apt,140,4,11,2017-08-26,0.25,1,38 +9182754,Charming Apartment in East Village,9859148,Jacob,Manhattan,East Village,40.72603,-73.98614,Entire home/apt,200,1,1,2016-01-03,0.02,1,0 +9183131,Private room in unique Chelsea loft,872654,Adam,Manhattan,Chelsea,40.74406,-73.99287,Private room,139,1,3,2015-12-20,0.07,1,0 +9184688,BEAUTIFUL APT ON CENTRAL PARK WEST,8737065,Barbara And Dan,Manhattan,Upper West Side,40.79644,-73.96135,Entire home/apt,250,7,0,,,1,0 +9184982,Cozy Bedroom in Harlem,31291159,Sean,Manhattan,Harlem,40.81686,-73.94129,Private room,47,7,2,2015-12-09,0.04,1,0 +9185329,"Sunny, Spacious, Botanical Greenpoint 1 Bdrm",17615713,Merrily,Brooklyn,Greenpoint,40.72697,-73.94712,Entire home/apt,108,7,19,2019-06-21,0.43,1,21 +9185689,"Homie,cozy,artsy,warm,sweet,Harlem!",47790612,Hannah,Manhattan,Harlem,40.81344,-73.95007,Entire home/apt,85,1,0,,,1,0 +9185696,Excellent 1 Bedroom Apt. in Queens,47790995,Harman,Queens,Queens Village,40.71846,-73.75584,Entire home/apt,75,5,85,2019-05-25,1.90,1,332 +9185754,A Tree Grows in Brooklyn,46547144,Jane,Brooklyn,Williamsburg,40.70782,-73.95462,Private room,60,1,2,2015-11-23,0.05,1,0 +9186894,Cozy large and sunny bedroom in Greenpoint,6217827,Krzysztof,Brooklyn,Greenpoint,40.73051,-73.95496,Private room,80,2,2,2016-05-16,0.05,1,0 +9187221,Sunny room in the heart of Bushwick,36297318,Josh,Brooklyn,Bushwick,40.70269,-73.92626,Private room,60,1,0,,,1,0 +9187379,"The room . 25 min to time square, Midway LGA/JFK",1495355,John,Queens,Forest Hills,40.7232,-73.84426,Private room,50,1,9,2019-04-21,0.42,2,0 +9191908,Studio in the Financial District,14340851,Sophia,Manhattan,Financial District,40.70437,-74.00952,Entire home/apt,120,2,0,,,1,0 +9193390,Luxury stay near Lincoln Center NYC,47825300,Sid,Manhattan,Upper West Side,40.77616,-73.98974,Private room,300,1,0,,,1,0 +9194620,NYC Loft Living Close to Everything!,3129612,Jonathan,Manhattan,Upper East Side,40.7605,-73.96053,Entire home/apt,275,30,4,2016-08-20,0.09,1,253 +9195534,"Park Slope 1 Bed, Roofdeck, Laundry",47835171,Lynette,Brooklyn,Park Slope,40.67384,-73.97765,Private room,100,1,0,,,1,0 +9196297,in the heart of the Upper East Side,34907341,Ragan,Manhattan,Upper East Side,40.76579,-73.96168,Private room,65,2,24,2016-12-27,0.54,1,0 +9196408,Large Sunny Room in West Harlem,47838741,Ibrahima,Manhattan,Harlem,40.82411,-73.94404,Private room,65,5,2,2016-01-05,0.05,1,159 +9197311,Stunning 3 BR Apartment Fort Greene,26474885,Alvaro,Brooklyn,Clinton Hill,40.69517,-73.96702,Entire home/apt,350,3,0,,,1,0 +9197829,"Spacious, Bright and Comfortable",7897952,Nima,Brooklyn,Gowanus,40.67652,-73.99682,Entire home/apt,132,1,1,2015-12-01,0.02,1,0 +9199020,COMFY SOFA BED IN MY 1 BEDROOM APT!,40236486,Priscilla,Manhattan,Washington Heights,40.8398,-73.9385,Shared room,35,1,25,2019-05-24,0.63,3,55 +9199352,"Sunny, charming Soho studio",1459609,Tift,Manhattan,Greenwich Village,40.72796,-74.00194,Entire home/apt,150,7,0,,,1,0 +9201458,Gorgeous bedroom near Central Park,13794250,Jackie,Manhattan,Upper West Side,40.78107,-73.97817,Private room,75,5,1,2015-11-21,0.02,1,0 +9201479,Chelsea NYC Shared Apartment,47860375,Todd,Manhattan,Chelsea,40.74188,-73.99865,Private room,100,1,2,2015-12-03,0.05,1,0 +9201989,"Peaceful, Sun-drenched Apartment in Vibrant Area",39939246,Sara,Brooklyn,Clinton Hill,40.68363,-73.96305,Entire home/apt,89,3,3,2017-12-28,0.07,1,0 +9207023,Clean private room with bathroom,47886371,Megan,Brooklyn,Midwood,40.62402,-73.97071,Private room,50,1,1,2015-12-29,0.02,1,0 +9207124,West 57th Street by Hilton Club,25798603,Jill,Manhattan,Midtown,40.76331,-73.97911,Private room,300,3,0,,,1,0 +9208886,Cozy SpaHa Apartment,47893591,Stephen,Manhattan,East Harlem,40.79804,-73.93127,Private room,50,13,0,,,1,0 +9211087,Midtown 2B/2BTH w large living room,47903548,Juan,Manhattan,Midtown,40.75505,-73.96714,Entire home/apt,400,1,0,,,1,0 +9211258,Midtown Hells Kitch. Next to Timesq,36430529,Bharathi,Manhattan,Hell's Kitchen,40.75997,-73.99265,Entire home/apt,250,2,0,,,1,0 +9211534,"Spacious, Private Room For Rent",43846246,Zoey,Queens,Astoria,40.76547,-73.92079,Private room,70,1,0,,,1,0 +9211969,Upper East Side At Its Best,17634934,Zahra,Manhattan,Upper East Side,40.78179,-73.947,Entire home/apt,135,1,0,,,1,0 +9212510,Spacious 2-Bedroom near Highline,28570275,Brian,Manhattan,Chelsea,40.74799,-73.99993,Entire home/apt,450,2,9,2018-04-16,0.23,1,0 +9214148,Spacious One Bedroom,47917120,Christina,Manhattan,East Harlem,40.78748,-73.95102,Entire home/apt,80,2,2,2018-10-09,0.05,1,0 +9215307,Beautiful Room: Charming Apt Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71292,-73.96215,Private room,90,1,46,2019-06-09,1.04,3,16 +9216664,Brand New Chic Building-Fort Greene,1651250,Shervin,Brooklyn,Fort Greene,40.68766,-73.97837,Private room,100,1,1,2016-08-01,0.03,2,0 +9217460,2 bedroom Artist's Sunny top floor Brownstone apt,19648898,Debra,Manhattan,Harlem,40.80542,-73.9455,Entire home/apt,90,3,1,2016-06-12,0.03,1,0 +9217592,Charming + Spacious Brownstone Apt,881301,Camillia,Brooklyn,Clinton Hill,40.68356,-73.96152,Entire home/apt,145,3,3,2019-06-17,0.07,1,0 +9217707,Sunny and charming one bedroom,47932600,Marina,Queens,Rego Park,40.7303,-73.86674,Entire home/apt,125,5,6,2018-09-04,0.16,1,157 +9217745,Artsy Loft In Prime Location,13318184,Rebecca,Brooklyn,Williamsburg,40.70521,-73.93623,Private room,50,1,2,2015-11-12,0.04,4,0 +9217837,Quaint South Slope Retreat,8838044,Aaron,Brooklyn,South Slope,40.66249,-73.98704,Entire home/apt,150,3,34,2019-05-01,0.77,1,0 +9218051,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72647,-73.98379,Private room,95,1,2,2015-11-10,0.04,2,0 +9219569,"Quiet, cozy, and big Bushwick Apt!",47672228,Danielle,Brooklyn,Bushwick,40.69064,-73.921,Entire home/apt,125,1,9,2016-07-23,0.21,1,0 +9219588,"Cozy, yet Spacious Apt in Astoria!",12864943,Tegan,Queens,Astoria,40.75855,-73.91021,Entire home/apt,120,1,1,2015-12-27,0.02,2,0 +9222165,Upscale 3 Bedrooms + 2 Bath Apt +Washer/Dryer,47952362,Ys,Manhattan,Upper East Side,40.77707,-73.94994,Entire home/apt,400,3,124,2019-06-30,2.82,1,245 +9227929,Manhattan Townhome Garden Apartment,2807798,Sean,Manhattan,Harlem,40.82993,-73.9435,Entire home/apt,201,1,162,2019-07-05,4.46,2,73 +9230523,Cozy private space,15565209,Violette,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95703,Private room,50,2,38,2017-12-09,1.06,1,98 +9230605,Times Square,47985489,Sam,Manhattan,Hell's Kitchen,40.76018,-73.98916,Entire home/apt,199,2,5,2016-05-19,0.11,1,0 +9230690,Cosy and quiet Williamsburg room,8439782,Tim,Brooklyn,Williamsburg,40.71322,-73.95199,Private room,49,5,0,,,1,0 +9230738,Charming 1-bed apt w/ private deck,4031222,Romain,Manhattan,Upper West Side,40.77431,-73.97883,Entire home/apt,185,5,14,2019-04-21,0.38,1,4 +9231083,Beautiful Loft Home in Bushwick!,20956615,Cheryl,Brooklyn,Bedford-Stuyvesant,40.68698,-73.91861,Private room,85,1,8,2018-09-04,0.19,1,364 +9231257,Cozy Studio,45168846,Hang,Brooklyn,Flatbush,40.64631,-73.96258,Entire home/apt,89,1,0,,,1,0 +9231341,BRIGHT AND HUGE ROOM - BED STY BK,14667282,Pénélope,Brooklyn,Bedford-Stuyvesant,40.69436,-73.93144,Private room,100,1,0,,,1,0 +9231791,Hip Bushwick apartment,47989547,Hannah,Brooklyn,Bushwick,40.69647,-73.92495,Private room,60,1,3,2016-05-01,0.07,1,0 +9232861,Midtown East Modern Alcove Studio 5,45595980,Tny,Manhattan,Midtown,40.7598,-73.96684,Entire home/apt,132,30,5,2019-05-01,0.13,12,220 +9233068,Williamsburg Brooklyn 1 Bedroom,42528111,Heejoo,Brooklyn,Greenpoint,40.71964,-73.94719,Entire home/apt,125,2,0,,,1,0 +9233338,"Quiet, cozy, sunlit Brooklyn home",47995413,Sethu,Brooklyn,Flatbush,40.64873,-73.96419,Entire home/apt,100,1,10,2016-07-17,0.23,1,0 +9233883,Artsist's NYC Downtown Luxury Loft,43538528,Andrea,Manhattan,Financial District,40.7092,-74.00699,Entire home/apt,175,5,0,,,1,0 +9235437,"Luxury Midtown West 1BR w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.7602,-73.99868,Entire home/apt,304,30,0,,,3,176 +9236348,Spacious two bedroom with backyard,48007438,Daniel,Brooklyn,Bushwick,40.70198,-73.91571,Entire home/apt,95,1,0,,,1,0 +9237142,"Charming, Clean 1BR in Brooklyn",11013791,Guy,Brooklyn,Clinton Hill,40.68864,-73.96154,Entire home/apt,100,30,4,2017-07-25,0.11,1,0 +9237147,2 BR in Theater Dist./Times Square,47743811,Fritz,Manhattan,Hell's Kitchen,40.76416,-73.98807,Entire home/apt,300,2,8,2019-05-27,0.18,1,181 +9237600,Private Cozy studio NBPC/Tribeca,17051015,Kerry,Manhattan,Battery Park City,40.71704,-74.0162,Entire home/apt,175,1,0,,,1,0 +9237857,Penthouse Suites Midtown Manhattan,17507097,Ravi,Manhattan,Midtown,40.76371,-73.98204,Entire home/apt,300,3,3,2017-11-26,0.07,1,0 +9238214,Sublet Cozy Spacious Private Room near Manhattan,48016303,Nelson,Queens,Astoria,40.75546,-73.91768,Private room,39,4,9,2019-04-25,0.21,1,0 +9238295,Modern Spacious Apartment near UN (doorman bldg),24272490,Slavka,Manhattan,Midtown,40.75145,-73.97162,Entire home/apt,179,1,9,2017-09-11,0.21,1,189 +9238515,Cozy studio just off Main Street,48017685,Gonzalo,Queens,Flushing,40.7544,-73.82866,Shared room,20,3,3,2019-01-25,0.07,1,0 +9238861,One-bedroom in Morningside Heights,4396038,Egor,Manhattan,Morningside Heights,40.80874,-73.9589,Entire home/apt,120,2,2,2018-03-02,0.05,1,0 +9239252,A clean and warm master bedroom!,47052253,Wenjia,Manhattan,Lower East Side,40.71244,-73.98756,Private room,82,5,0,,,1,0 +9240067,Cozy studio on the Upper East Side!,20761853,Elena,Manhattan,Upper East Side,40.78167,-73.95004,Entire home/apt,170,1,137,2019-06-23,3.06,2,289 +9240346,Charming Union Sq Studio w/Elevator,2598539,Carol,Manhattan,Gramercy,40.73318,-73.98449,Entire home/apt,120,1,206,2019-06-23,4.64,1,278 +9240606,"Sunny, Book-Filled Room in Carroll Gardens",14078910,Andy,Brooklyn,Carroll Gardens,40.68172,-73.99358,Private room,75,2,42,2018-06-06,0.96,1,0 +9241147,Bushwick 2 bdrm near JMZ train stop,39768761,Latane,Brooklyn,Bushwick,40.69813,-73.93433,Entire home/apt,110,2,50,2018-12-25,1.15,1,0 +9241956,The New Downtown* 1 bdrm,23267314,Millie,Manhattan,Hell's Kitchen,40.75474,-73.99836,Entire home/apt,177,2,123,2019-06-28,2.81,2,261 +9242243,Cozy 1bdrm apt in Midtown Manhattan,3335559,Sworupa,Manhattan,Midtown,40.76362,-73.97542,Private room,180,1,10,2019-06-06,0.30,1,175 +9247687,Newly renovated apartment.,48055483,Vincent,Queens,Middle Village,40.71527,-73.89829,Private room,70,1,1,2016-01-05,0.02,1,364 +9247923,Stunning Greenwich Village Triplex,46631730,Anne,Manhattan,Greenwich Village,40.73297,-73.99217,Entire home/apt,325,2,9,2016-11-03,0.21,1,0 +9248049,NYC Fantastic Apartment (very quiet &private bath),48054322,Nina,Manhattan,Hell's Kitchen,40.76637,-73.98342,Private room,165,1,193,2019-07-05,4.37,1,213 +9248239,Private Room in Williamsburg Loft,48057837,Diana,Brooklyn,Williamsburg,40.71914,-73.96477,Private room,75,1,2,2015-12-28,0.05,1,0 +9248558,1 Queen Bed,48059119,Wolcott,Manhattan,Midtown,40.74784,-73.9862,Private room,159,1,0,,,3,365 +9249597,Typical Cozy 1BR - Prime Upper West,20694807,Alexandre,Manhattan,Upper West Side,40.77912,-73.97976,Entire home/apt,150,6,1,2016-01-01,0.02,1,0 +9249776,1 Bedroom in USW 71/Columbus,11120994,Christine,Manhattan,Upper West Side,40.77741,-73.97789,Entire home/apt,150,1,0,,,1,0 +9250196,Furnished 1-BR near all NYC'S major attractions!,30283594,Kara,Manhattan,Theater District,40.76063,-73.98577,Entire home/apt,230,30,0,,,121,363 +9250241,2 Twin Beds,48059119,Wolcott,Manhattan,Midtown,40.74702,-73.98778,Private room,159,1,1,2018-05-11,0.07,3,365 +9250374,Entire home-- Brownstone Brooklyn,733282,Tabitha,Brooklyn,Carroll Gardens,40.68152,-73.99518,Entire home/apt,250,28,4,2018-07-21,0.09,1,0 +9250731,Bright and spacious 1 bedroom,798653,Chrissy And Scott,Brooklyn,Williamsburg,40.7131,-73.94422,Entire home/apt,119,1,7,2016-04-11,0.16,1,0 +9251088,-Deluxe Furnished 1 Bedroom Apartment in Midtown,30283594,Kara,Manhattan,Theater District,40.75856,-73.98221,Entire home/apt,239,30,0,,,121,363 +9253112,Spacious Beautiful 1BR APT,1941852,Helga,Brooklyn,Crown Heights,40.66965,-73.95517,Entire home/apt,80,1,17,2017-08-30,0.38,1,0 +9253505,Spacious room in Midtown East,3001268,Tianni,Manhattan,Midtown,40.75261,-73.97063,Private room,99,1,0,,,1,0 +9253823,Spacious 2BR (4 rooms) in the Upper West Side,31537314,Katja,Manhattan,Upper West Side,40.80118,-73.96642,Entire home/apt,250,5,12,2019-06-15,0.27,1,20 +9253827,Close to train - Williamsburg Garden Apartment,48078451,Mathew,Brooklyn,Williamsburg,40.71673,-73.94193,Entire home/apt,125,3,93,2019-06-30,2.69,1,23 +9255049,"Designy, cozy, & kid friendly!",902703,Jessica,Brooklyn,Bushwick,40.69975,-73.92051,Entire home/apt,150,5,30,2019-05-14,0.76,1,284 +9256750,Sunny bedroom with backyard (L Jefferson),16865342,Elene,Brooklyn,Bushwick,40.70484,-73.91942,Private room,50,3,71,2019-05-27,1.85,2,2 +9259254,Large Apartment - East Village,12587611,Logan,Manhattan,East Village,40.72614,-73.98795,Entire home/apt,200,4,0,,,1,0 +9260415,Comfy Room Near Bronx Zoo and NYBG!,48106825,Julia,Bronx,Pelham Gardens,40.86617,-73.848,Private room,47,2,138,2019-05-20,3.22,2,353 +9260616,Large Modern Apartment w Backyard,8996900,Kristine,Brooklyn,Kensington,40.64735,-73.97611,Entire home/apt,150,4,1,2015-12-02,0.02,1,0 +9260911,Luxury Apt in EV - 2 Spacious BR + 2 Full Bath!!,1974661,Em,Manhattan,East Village,40.72788,-73.9869,Entire home/apt,299,1,177,2019-06-22,4.05,1,91 +9260951,Home for the Holidays: Midtown West,3509166,Anders,Manhattan,Hell's Kitchen,40.76375,-73.98885,Entire home/apt,142,20,0,,,1,0 +9261302,Spacious top floor townhouse in BK,12780893,Jessica,Brooklyn,South Slope,40.66905,-73.9877,Entire home/apt,150,1,0,,,1,0 +9261392,Modern Lux APT Private Bath 15 min to Times Sq,7174662,K,Queens,Sunnyside,40.74461,-73.92004,Private room,88,2,132,2019-06-01,3.23,1,14 +9263457,1 bed/bath w/ Cali King bed- duplex,30637963,Deena,Manhattan,Upper West Side,40.79355,-73.96641,Private room,800,5,0,,,1,0 +9266394,Spacious apt next to Botanic Garden,48133396,Katherine,Brooklyn,Crown Heights,40.66563,-73.96118,Entire home/apt,85,90,0,,,1,0 +9269126,Cleanest times square room,9372538,Fabiola,Manhattan,Hell's Kitchen,40.76121,-73.98895,Private room,169,1,9,2019-05-03,0.21,2,89 +9269191,Beautiful Private Parlor-Level 1-BR Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.683,-73.93305,Entire home/apt,110,2,104,2019-06-16,2.38,2,155 +9270122,Beautiful Room in Artistic Loft,48148603,Ricardo,Brooklyn,Greenpoint,40.73469,-73.95778,Private room,60,1,1,2016-01-03,0.02,1,0 +9271742,Spacious Private Ground Floor Studio Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.68375,-73.93313,Entire home/apt,110,2,122,2019-07-04,2.76,2,159 +9273161,Located in the heart of Soho!!,48161896,Kate,Manhattan,SoHo,40.72356,-74.00472,Entire home/apt,78,5,2,2017-05-22,0.08,1,0 +9274832,"Apartment in Bay Ridge, Brooklyn",48169083,Rebekah,Brooklyn,Bay Ridge,40.63066,-74.02577,Entire home/apt,110,1,0,,,1,0 +9275199,"Sunny, Spacious Apartment",48170780,Christopher,Brooklyn,Bedford-Stuyvesant,40.67936,-73.93388,Private room,46,1,0,,,1,0 +9275453,"Spacious House, 20 min to Manhattan",48171900,Michael,Queens,Ditmars Steinway,40.77707,-73.91398,Private room,80,1,2,2016-01-03,0.05,1,0 +9276587,Convenient Hell's Kitchen 1br/2-4pp,2782391,Jeff,Manhattan,Hell's Kitchen,40.76639,-73.98727,Entire home/apt,150,3,12,2019-06-14,0.27,2,1 +9276634,2-bedroom in the heart of the EV!,46323876,Mario,Manhattan,East Village,40.72765,-73.98199,Entire home/apt,199,2,1,2015-11-28,0.02,1,0 +9277581,"Clean, mid-century modern decorated",25687571,Jorge,Manhattan,East Village,40.72959,-73.98245,Entire home/apt,125,2,15,2017-12-03,0.34,1,0 +9277608,Soho 3BR/2BA Everything is just outside your door!,42047615,Jonathan & Nancy,Manhattan,Nolita,40.72347,-73.99302,Entire home/apt,650,3,130,2019-06-05,3.11,2,235 +9278192,*LARGE PRIVATE ROOM WITH A LARGE WINDOW*,48183551,Carlos,Queens,Elmhurst,40.74507,-73.88352,Private room,58,6,76,2019-06-21,1.75,5,279 +9278786,Great 2br East Village Apartment,1449710,Whitney,Manhattan,East Village,40.72404,-73.98838,Entire home/apt,200,1,2,2015-12-13,0.05,1,0 +9279920,Charming Gramercy Studio Furnished,48190744,Samantha,Manhattan,Gramercy,40.73438,-73.98615,Entire home/apt,145,21,0,,,1,0 +9280902,"Clean, Quiet, Hip Apt in Bed Stuy",1747007,Hanson,Brooklyn,Bedford-Stuyvesant,40.69029,-73.95443,Entire home/apt,98,14,9,2018-06-04,0.20,1,6 +9281688,Cozy Cove in Crown Heights,114649,Onome,Brooklyn,Crown Heights,40.66933,-73.9252,Private room,40,7,23,2018-12-26,0.57,1,130 +9281747,TIMES SQ BLCK AWAY w/ SUNNY BDRM. NO INSTANT BOOKN,11526455,Joey,Manhattan,Hell's Kitchen,40.76046,-73.9901,Private room,135,2,123,2019-06-27,2.81,1,124 +9282032,Cozy 1br in the Heart of Kips Bay,4835399,Felicia,Manhattan,Kips Bay,40.74138,-73.98048,Entire home/apt,250,5,0,,,1,0 +9282443,"HUGE Artist's 1 bedroom LOFT, Lower East Side.",5603037,Anna,Manhattan,Lower East Side,40.72014,-73.98277,Entire home/apt,250,13,9,2019-04-23,0.21,1,44 +9282987,"Park Slope, Brooklyn Charm",11607339,Nani,Brooklyn,Park Slope,40.67815,-73.97878,Entire home/apt,130,2,4,2016-12-31,0.09,1,0 +9283104,Cozy room in heart of Brooklyn!,26885466,Sergey,Brooklyn,Midwood,40.61949,-73.95443,Private room,60,2,54,2017-08-19,1.22,1,0 +9288411,Heart of St Marks 2 Bedroom,6640038,Kasia,Manhattan,East Village,40.72789,-73.98756,Entire home/apt,350,3,0,,,1,0 +9289159,"Beautiful 5bedrm duplex, sleeps 11 comfortably!",43963802,Tanya,Manhattan,Harlem,40.8228,-73.94567,Entire home/apt,465,3,46,2019-06-29,1.22,2,325 +9291870,Cozy Upper East Side 1 Bed,48244550,Janice,Manhattan,Upper East Side,40.76405,-73.95967,Entire home/apt,126,1,3,2016-06-04,0.07,1,0 +9292072,Spacious 1 Bedroom Apartment,23429756,Maggie,Manhattan,Upper East Side,40.77638,-73.9476,Entire home/apt,215,1,0,,,1,0 +9295059,"1BR steps from park, museums, more",11797330,Casey,Manhattan,Upper East Side,40.78397,-73.95041,Entire home/apt,139,3,18,2016-07-25,0.44,1,0 +9296077,Central Park - spacious 1 bedroom -,42064476,Marine,Manhattan,Upper East Side,40.77234,-73.96045,Entire home/apt,200,1,9,2016-10-13,0.20,1,0 +9296089,Fantastic Upper West Side!,34734634,David,Manhattan,Upper West Side,40.79174,-73.97755,Entire home/apt,200,6,0,,,1,0 +9296598,i would like to sublet for 3 months,48264527,Roberta,Manhattan,Upper West Side,40.77944,-73.98518,Entire home/apt,40,1,1,2016-03-31,0.03,1,0 +9296742,Room Available- Prospect Park South,48264768,Wesley,Brooklyn,Flatbush,40.64905,-73.96799,Private room,55,1,0,,,1,0 +9297852,Cozy Loft Apartment in Bushwick,48261452,Carolina,Brooklyn,Bushwick,40.70686,-73.91961,Entire home/apt,99,30,7,2017-11-26,0.16,1,0 +9297960,Master Bedroom in Williamsburg Loft,10646374,Aurora,Brooklyn,Williamsburg,40.70801,-73.94787,Private room,82,3,0,,,1,0 +9298825,Charming Brooklyn One Bedroom,4631581,Kim And Jordan,Brooklyn,Cobble Hill,40.68805,-73.99634,Entire home/apt,185,2,3,2016-10-16,0.07,1,0 +9298895,Spacious Sunny room in East Village,3856750,Sabra,Manhattan,East Village,40.72283,-73.98356,Private room,60,7,6,2018-01-05,0.18,2,0 +9299515,Luxury Studio in Chelsea/Flat Iron,48277456,Mariya,Manhattan,Chelsea,40.73936,-73.99352,Entire home/apt,200,7,0,,,1,0 +9299707,Upper East Side Studio - 77/1st Ave,48278499,Daniel,Manhattan,Upper East Side,40.77161,-73.95295,Entire home/apt,140,1,0,,,1,0 +9300556,A Express train Bed Stuy Getaway,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.68061,-73.94996,Entire home/apt,94,30,3,2017-12-03,0.08,3,355 +9300634,Cozy Boerum Hill Apartment,15895218,Amy,Brooklyn,Carroll Gardens,40.68423,-73.98996,Entire home/apt,134,2,2,2016-02-22,0.05,2,0 +9301562,Cozy Loft in Trendy Brooklyn area,48287405,Alicia,Brooklyn,Williamsburg,40.70644,-73.93759,Private room,60,1,0,,,1,0 +9301647,Semi-Private Space in Prime Midtown East,9226879,Christina,Manhattan,Midtown,40.75249,-73.97412,Private room,70,3,6,2019-06-29,0.28,2,233 +9301755,Amazing Loft on the Lower East Side,4865452,Rj,Manhattan,Lower East Side,40.71269,-73.98171,Entire home/apt,200,1,1,2015-12-03,0.02,1,0 +9302921,Cozy and Friendly Central Park Room,31038604,Olivia,Manhattan,Harlem,40.79912,-73.95204,Private room,90,2,66,2018-06-25,1.50,1,0 +9308016,Spacious Greenpoint Duplex w/Yard,1516920,Jonathan,Brooklyn,Greenpoint,40.73077,-73.95851,Entire home/apt,115,1,1,2015-12-27,0.02,2,0 +9309192,Large 1BR in Heart of LES,84320,Kevin,Manhattan,Lower East Side,40.71692,-73.98259,Entire home/apt,245,10,6,2017-01-03,0.14,1,0 +9310390,Chic East Village 2BR,21893700,Ben,Manhattan,East Village,40.72837,-73.98631,Entire home/apt,375,1,110,2019-06-23,2.47,1,134 +9310959,"Cozy, 1 bedroom Brownstone Apt",7065964,Ashley,Brooklyn,Crown Heights,40.66722,-73.948,Entire home/apt,75,2,161,2019-06-28,3.65,1,183 +9311761,Cozy apartment in Lower East Side,6655182,Tim,Manhattan,Lower East Side,40.71846,-73.98727,Private room,150,2,2,2016-09-24,0.05,1,0 +9312190,"Gorgeous, convenient apt, sleeps 7",6930315,Diana,Bronx,Concourse,40.81897,-73.92735,Entire home/apt,159,1,0,,,1,0 +9313531,Great room with FULL private Bath,10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.68244,-73.91092,Private room,40,15,0,,,5,342 +9313758,Spacious Room in Greenpoint Duplex,1516920,Jonathan,Brooklyn,Greenpoint,40.73274,-73.95505,Private room,57,1,10,2016-03-17,0.22,2,0 +9314139,Spacious 2 bedroom loft (1600 sf),48345272,Dino,Manhattan,Tribeca,40.71474,-74.01101,Entire home/apt,425,5,1,2016-01-01,0.02,1,0 +9315478,Darling West Village Studio,15815555,Meredith,Manhattan,West Village,40.7356,-74.00405,Entire home/apt,200,1,0,,,1,0 +9315567,I am Minutes from it All.,48351548,Kandisann,Manhattan,Harlem,40.80157,-73.95407,Private room,65,1,11,2016-07-04,0.25,1,0 +9315797,Sunny room in heart of Greenpoint,1838431,Tomas,Brooklyn,Greenpoint,40.73419,-73.95264,Private room,65,15,1,2016-07-01,0.03,1,0 +9316528,Spacious Room in Beautiful Apartment in Brooklyn!,48356150,Tomas,Brooklyn,Bedford-Stuyvesant,40.68465,-73.91528,Private room,75,14,3,2018-07-15,0.13,1,0 +9316653,Central Park/Museum Mile,31245408,Ginger,Manhattan,East Harlem,40.79259,-73.95171,Private room,90,1,0,,,1,0 +9317779,Bedroom for two near St Marks,30738895,Enzo,Manhattan,East Village,40.72518,-73.98439,Private room,100,1,0,,,1,0 +9319328,"Cozy Bowery Studio (6, BDFM trains)",48370995,James,Manhattan,NoHo,40.72624,-73.99317,Entire home/apt,100,1,8,2016-11-15,0.19,1,0 +9319688,EXCELLENT LOCATION near Manhattan!!,48372942,Magdalena,Queens,Astoria,40.76354,-73.91789,Private room,77,2,1,2018-05-06,0.07,1,364 +9324841,Large artist one bedroom in Williamsburg!,9659504,Danny,Brooklyn,Williamsburg,40.71676,-73.94575,Entire home/apt,165,4,10,2018-07-31,0.23,1,0 +9325951,"",33377685,Jonathan,Manhattan,Hell's Kitchen,40.76436,-73.98573,Entire home/apt,190,4,1,2016-01-05,0.02,1,0 +9325979,Gorgeous Loft in the LES/Chinatown!,48402458,Mo,Manhattan,Chinatown,40.71377,-73.99311,Entire home/apt,190,2,119,2019-06-23,2.72,1,78 +9327458,Sunny Bedroom in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66641,-73.99078,Private room,45,3,7,2018-04-01,0.16,2,0 +9328355,Stylish and Comfy in Bed Stuy,2754405,Janice,Brooklyn,Bedford-Stuyvesant,40.69153,-73.94263,Entire home/apt,72,30,11,2019-06-22,0.26,1,251 +9328578,"Sleeps 5, 2.5 bedrooms. Families or small group.",43963802,Tanya,Manhattan,Harlem,40.82287,-73.94561,Entire home/apt,230,3,52,2019-06-04,1.33,2,325 +9329015,MANHATTAN SWEET 2 Bd/3Bd DEAL,11241615,Faruk,Manhattan,East Harlem,40.79598,-73.94288,Entire home/apt,250,5,33,2019-05-14,0.76,1,28 +9329090,Prime MidTown East Spacious Studio,9226879,Christina,Manhattan,Midtown,40.75145,-73.9752,Entire home/apt,140,4,1,2016-01-10,0.02,2,223 +9330135,Brand new 1 BR apt Steps from train,48423154,Evelyn,Brooklyn,Brighton Beach,40.57808,-73.96253,Entire home/apt,85,5,0,,,1,0 +9330771,East Village Studio Apartment,28396398,Cy,Manhattan,East Village,40.72919,-73.98104,Entire home/apt,99,30,0,,,1,0 +9330884,"Downtown Manhattan, 2 Bedroom",48427159,Kyle,Manhattan,Lower East Side,40.7225,-73.9894,Entire home/apt,200,3,0,,,1,0 +9331036,Spacious Master BR Near BK Museum,20267329,Nika,Brooklyn,Prospect Heights,40.67263,-73.96437,Private room,99,2,3,2017-01-02,0.07,1,0 +9331114,Bright One Bedroom in Williamsburg,1698259,Jeff,Brooklyn,Williamsburg,40.71108,-73.94799,Entire home/apt,140,7,31,2019-03-25,0.72,1,209 +9331413,Beautiful Apartment in Center of Williamsburg,17433287,Efrat,Brooklyn,Williamsburg,40.71786,-73.95588,Entire home/apt,181,4,4,2017-05-02,0.09,2,188 +9331520,Large Brooklyn Apartment In Townhouse,6894897,Autumn,Brooklyn,Bedford-Stuyvesant,40.69122,-73.94377,Entire home/apt,165,2,166,2019-07-01,3.76,1,8 +9331671,Essential Lower East Side,48431029,Kevin,Manhattan,Lower East Side,40.72201,-73.98775,Entire home/apt,175,3,14,2019-06-17,1.86,1,51 +9331683,SuperSunny Apt 20min From Manhattan,45589955,Jacopo,Brooklyn,Crown Heights,40.67637,-73.95951,Entire home/apt,100,6,1,2016-01-07,0.02,1,0 +9332872,Charming Carroll Gardens 2 BR,48356908,David & Nancy,Brooklyn,Carroll Gardens,40.68047,-73.99594,Entire home/apt,209,1,178,2019-06-18,4.47,1,228 +9332926,Room in 3br apt,48437907,Filip,Manhattan,Washington Heights,40.83819,-73.94373,Private room,110,1,1,2015-11-10,0.02,1,0 +9333533,Private Room in Williamsburg,48442001,Carlos,Brooklyn,Williamsburg,40.70723,-73.94811,Private room,50,7,4,2016-03-20,0.09,1,0 +9334086,"Large 1BR apt,25min to Times Square",25402037,Khaleed,Manhattan,Washington Heights,40.84465,-73.93733,Entire home/apt,80,2,3,2016-03-30,0.07,1,0 +9334185,Trendy but cozy private bdrm & bath,48249473,Marisol,Bronx,Kingsbridge,40.87842,-73.9029,Private room,75,1,59,2019-06-23,1.45,2,354 +9334228,Cozy Studio in an Amazing Location,1423321,Olivera,Manhattan,East Village,40.72695,-73.99012,Entire home/apt,70,7,1,2015-12-08,0.02,1,0 +9334365,1bd steps from Central Park/museum,20592462,Julia,Manhattan,Upper East Side,40.77751,-73.9556,Entire home/apt,125,1,1,2015-11-23,0.02,1,0 +9334840,Cozy warm one bedroom,2716515,Nick,Queens,Astoria,40.7576,-73.9067,Entire home/apt,70,1,1,2015-11-11,0.02,1,0 +9336526,Small room with convenient commute,27962518,Xiangyu,Queens,Elmhurst,40.73682,-73.875,Private room,180,1,0,,,2,0 +9339253,Clean ground floor apartment,48471249,Kimberly,Brooklyn,Clinton Hill,40.69306,-73.96813,Private room,100,2,7,2018-10-28,0.19,1,310 +9340975,Sunny & Spacious Park Slope Gem,1939202,Sarah,Brooklyn,Park Slope,40.66675,-73.97571,Entire home/apt,200,8,2,2016-06-07,0.05,1,0 +9341144,Inviting & immaculate 1BR - 15 min to midtown,377783,Sandra,Manhattan,Harlem,40.80786,-73.94313,Entire home/apt,100,30,3,2018-07-22,0.16,1,0 +9341196,Quiet Upper West Side Private Room,5549166,Jesse,Manhattan,Upper West Side,40.7915,-73.97197,Private room,95,3,0,,,1,0 +9341671,2BR apt 10 min to Midtown!,350553,Stav,Manhattan,Harlem,40.81293,-73.95191,Entire home/apt,150,5,0,,,2,0 +9342019,Cozy 2 Bedroom in Historic District,22308430,Benjamin,Queens,Jackson Heights,40.75462,-73.88284,Entire home/apt,144,2,13,2019-03-24,0.30,1,288 +9342478,"Beautiful, airy, light-filled room",10406276,Kathleen,Brooklyn,Williamsburg,40.70491,-73.93098,Private room,42,3,0,,,1,0 +9343313,Charming Bdrm Mins from Lively LES,11824700,Rachel,Manhattan,Lower East Side,40.71514,-73.98293,Private room,95,1,13,2018-05-18,0.32,2,0 +9343350,Charming 2 bd 1 br Apartment in LES,11824700,Rachel,Manhattan,Lower East Side,40.71549,-73.9834,Entire home/apt,220,2,3,2016-12-23,0.07,2,0 +9343634,Private Bedroom in Luxury Highrise,48492929,Benjamin,Manhattan,Kips Bay,40.74198,-73.9768,Private room,209,3,7,2019-06-20,0.22,1,317 +9344858,Beautiful room in Center of Williamsburg!,17433287,Efrat,Brooklyn,Williamsburg,40.71896,-73.95423,Private room,118,3,5,2017-05-31,0.16,2,0 +9345056,Cozy Room in Bushwick Apartment!,16963843,Martina,Brooklyn,Bushwick,40.69902,-73.92195,Private room,50,5,28,2018-08-20,1.36,2,0 +9345131,Master Bedroom- Beautiful Bed Stuy,4429743,Maria,Brooklyn,Bedford-Stuyvesant,40.68534,-73.95709,Private room,95,1,0,,,1,0 +9345523,Cute Private Bedroom | East Village,39333015,XiWei,Manhattan,East Village,40.7228,-73.98352,Private room,85,1,1,2015-11-14,0.02,1,0 +9347368,Family Friendly 2BR/1BA in UWS,48511336,Peter,Manhattan,Upper West Side,40.78479,-73.97521,Entire home/apt,200,5,5,2017-08-18,0.12,1,0 +9348111,Charming 2BR Apartment: Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71294,-73.96224,Entire home/apt,161,2,21,2019-06-30,0.48,3,2 +9348923,Modern/Spacious 1Br-1 stop to city!,6264251,Chris,Brooklyn,Williamsburg,40.71968,-73.9602,Entire home/apt,110,2,24,2017-10-13,0.56,1,0 +9348941,Spacious 1 BR in Midtown East,7992346,Nikali,Manhattan,Midtown,40.75218,-73.97217,Entire home/apt,149,1,0,,,1,0 +9349010,Smart & Chic Studio Prime Location,3716641,Ofer,Manhattan,Upper West Side,40.79273,-73.97216,Entire home/apt,104,30,5,2017-02-26,0.13,8,156 +9349116,Great place - heart of Williamsburg,5854655,Ian,Brooklyn,Williamsburg,40.71824,-73.95455,Entire home/apt,200,1,1,2016-01-01,0.02,1,0 +9349221,Charming & Sunny Williamsburg Apt,35489917,Erin,Brooklyn,Williamsburg,40.71401,-73.96333,Private room,99,1,5,2016-05-01,0.12,1,0 +9349950,Spacious Bohemian Apartment,10621509,Taylor,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91479,Entire home/apt,80,5,12,2017-06-15,0.28,1,0 +9350295,Gorgeous 2br West Village Getaway,2539393,Sandy,Manhattan,West Village,40.73486,-74.00386,Entire home/apt,400,1,3,2016-11-27,0.08,1,0 +9350645,Entire 2bed apt in Brooklyn,13031745,Madeline,Brooklyn,Williamsburg,40.7073,-73.94219,Entire home/apt,98,4,3,2016-03-23,0.07,3,0 +9350729,Cozy room in the heart of Brooklyn,2953015,Soria,Brooklyn,Clinton Hill,40.69223,-73.96879,Private room,63,2,2,2016-06-11,0.05,1,0 +9351006,Cozy & Comfortable Private Room | Private Bathroom,47784768,Yemi,Brooklyn,Brownsville,40.66447,-73.91743,Private room,69,2,75,2019-06-21,1.73,2,249 +9351013,"Boutique Living, 10 min from NYC",48532777,Alexander,Queens,Ditmars Steinway,40.77627,-73.90963,Entire home/apt,89,1,16,2017-12-31,0.45,1,36 +9351679,"1Bdr APARTMENT, Astoria, NY [10min from Manhattan]",48534909,Despina,Queens,Astoria,40.76483,-73.91522,Entire home/apt,99,4,4,2019-01-04,0.09,1,0 +9352565,Studio Apartment in Herald Square,33281828,Vikram,Manhattan,Midtown,40.74966,-73.98781,Entire home/apt,140,4,2,2015-12-28,0.05,1,0 +9355498,Amazing Brownstone,10909829,Richelle And Pela,Brooklyn,Bedford-Stuyvesant,40.68346,-73.93121,Entire home/apt,150,4,76,2019-06-25,1.78,2,274 +9356909,Airy & Open Apt. In Carroll Gardens Brooklyn,9038714,Elyssa,Brooklyn,Carroll Gardens,40.67578,-73.99814,Entire home/apt,199,2,6,2019-06-30,1.40,1,73 +9358066,Luxury Studio in Financial District,34654571,Priyanka,Manhattan,Financial District,40.71035,-74.01343,Entire home/apt,120,20,0,,,1,0 +9358718,Chez Sullivan,23716267,Michael,Manhattan,Hell's Kitchen,40.75505,-73.99354,Entire home/apt,175,1,0,,,1,0 +9359564,"Beautiful 2BD Apt. in Trendy Lower East side,NYC",19195540,Dor,Manhattan,Lower East Side,40.71806,-73.99222,Entire home/apt,300,3,25,2019-06-24,0.58,3,0 +9359933,Private Room & Modern Feel,1733622,Nathan,Brooklyn,Crown Heights,40.67246,-73.93401,Private room,40,1,3,2016-01-01,0.07,1,0 +9360968,Sunny 2nd Bedroom in Cheery Bushwick Apt,29988752,Charis,Brooklyn,Bushwick,40.7047,-73.92109,Private room,100,2,22,2017-11-06,0.50,1,0 +9361107,Light and airy 2 bedroom apartment.,48576700,Ayanna,Brooklyn,Clinton Hill,40.69545,-73.96796,Entire home/apt,170,2,127,2019-05-29,2.90,2,236 +9361349,400 Sq Ft 1 BR - East Village - Prime Location,48577772,Ben,Manhattan,East Village,40.72787,-73.98718,Entire home/apt,120,8,6,2017-09-07,0.14,1,0 +9362344,Spacious Room in Trendy Brooklyn Area with Yard,820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94249,Private room,60,1,145,2019-07-01,3.26,3,313 +9362388,Beautiful Large 1 BED in Upper Manhattan,4983133,Mo,Manhattan,Harlem,40.82339,-73.95271,Entire home/apt,90,7,7,2019-04-27,0.16,1,269 +9362527,Quiet roomy space,48582770,Kyron,Manhattan,Inwood,40.86227,-73.92943,Private room,60,5,1,2015-12-30,0.02,1,0 +9362788,Large Family Size Apt. Ground Zero,812866,Vicki,Manhattan,Battery Park City,40.70941,-74.01774,Entire home/apt,450,1,0,,,1,0 +9363966,2 BR available for summer rental!!!,48588586,Adam,Manhattan,Midtown,40.75511,-73.96825,Private room,75,1,0,,,1,0 +9364184,Upper West Side Studio,24708016,Clark,Manhattan,Upper West Side,40.78228,-73.97748,Entire home/apt,170,3,11,2018-08-19,0.31,1,0 +9364626,"Your sunny, large room in Brooklyn!",22141007,Sarine,Brooklyn,Prospect Heights,40.68048,-73.97463,Private room,75,2,0,,,1,0 +9364750,Feel at home.,48592068,Gregory,Manhattan,Washington Heights,40.84864,-73.94046,Private room,75,1,0,,,1,1 +9365025,Light filled room in Greenpoint,2376644,Katherine,Brooklyn,Greenpoint,40.72741,-73.94337,Private room,80,2,0,,,1,0 +9365126,Fully Furnished studio in Brooklyn,48593631,George,Brooklyn,Gowanus,40.67696,-73.99569,Entire home/apt,139,3,10,2018-09-07,0.70,1,0 +9365176,Fifth Ave. Modern Studio,48593893,Alex,Manhattan,Midtown,40.75103,-73.98349,Entire home/apt,250,2,10,2017-05-24,0.23,1,0 +9365502,Cozy 1 bdrm Chelsea/Meatpacking,3843401,Chanel,Manhattan,Chelsea,40.74097,-73.99953,Entire home/apt,150,1,1,2015-11-17,0.02,1,0 +9366053,Sunny and Spacious Room in Bushwick,258409,Stephanie,Brooklyn,Bushwick,40.701,-73.91593,Private room,90,3,6,2019-01-02,0.32,1,0 +9366256,Serene Private Room w/ River View!,10549294,Mona,Manhattan,Upper East Side,40.76999,-73.9477,Private room,55,4,14,2019-06-02,0.33,1,8 +9366707,Loft on the Bowery w/roofdeck,48601058,Marc,Manhattan,NoHo,40.72711,-73.99198,Entire home/apt,296,2,24,2019-06-23,1.69,1,0 +9366904,Sun-filled Nolita 1 Bdrm Apt - prime location,31668272,Ava,Manhattan,Little Italy,40.719,-73.99565,Entire home/apt,150,2,9,2019-06-04,1.41,1,89 +9367337,HUGE Sundrenching Apartment Waiting Just For YOU!,48603884,Katherine,Bronx,Parkchester,40.83735,-73.85997,Entire home/apt,139,3,30,2019-05-21,0.69,1,357 +9367923,Greenwhich Village Luxury Loft,24975940,William,Manhattan,Greenwich Village,40.73294,-73.99726,Private room,249,4,0,,,2,0 +9368365,Perfect 1 BR in UWS,22157668,Sofi,Manhattan,Upper West Side,40.78074,-73.98393,Entire home/apt,250,5,0,,,1,0 +9368754,"Spacious, Fun 1BR Home in Village",801176,Jenny,Manhattan,Greenwich Village,40.72893,-74.00176,Entire home/apt,205,3,2,2016-05-19,0.05,1,0 +9369426,Spacious Bushwick 1Br off Morgan L. Sleeps 2.,943095,Talia,Brooklyn,Bushwick,40.70267,-73.92923,Entire home/apt,90,2,2,2017-07-20,0.07,1,0 +9369514,STARTUP CHEAP PLACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64603,-73.94869,Shared room,25,30,5,2018-05-08,0.12,7,365 +9370370,Garden Apartment with patio,48618336,Yvonne,Queens,Astoria,40.76507,-73.90577,Entire home/apt,65,30,32,2017-09-23,0.72,1,67 +9370538,Charming 1 bedroom apt ...,6452596,Juliana,Manhattan,Chinatown,40.71544,-73.99052,Entire home/apt,250,2,1,2015-11-28,0.02,1,0 +9370896,Castle View Brownstone,46638648,Geert,Brooklyn,Bedford-Stuyvesant,40.68503,-73.93809,Entire home/apt,140,29,12,2018-08-20,0.31,1,339 +9371009,"Neat, Safe and Well Located Apt.",5993775,Vanessa K,Manhattan,Upper East Side,40.775,-73.94842,Entire home/apt,110,3,4,2016-08-16,0.09,1,0 +9371045,Large terrace 1 bed room (br) apt,32975805,Khalil,Manhattan,Murray Hill,40.74961,-73.97846,Entire home/apt,200,2,0,,,1,0 +9371171,Large and cozy Apart NYC.,149430,Tida,Manhattan,East Harlem,40.7884,-73.94533,Entire home/apt,120,5,79,2019-06-28,1.82,2,307 +9371173,1 bedroom in Williamsburg,6337128,Tara,Brooklyn,Greenpoint,40.72096,-73.94574,Entire home/apt,120,4,0,,,1,0 +9373167,E.village Uber cool Ensuite room,3289567,Campbell,Manhattan,East Village,40.72502,-73.97835,Private room,110,2,2,2018-04-26,0.06,2,188 +9374263,Ashes Cove,48638439,Aston,Queens,Springfield Gardens,40.66203,-73.7698,Entire home/apt,200,30,68,2019-07-03,1.66,2,365 +9377185,Light-filled Room in Renovated Apt,1021134,Manny,Brooklyn,Williamsburg,40.7069,-73.96833,Private room,60,2,1,2016-08-08,0.03,1,0 +9379983,Gooood Morning America!,48664130,Connor,Manhattan,Theater District,40.75572,-73.98531,Entire home/apt,205,2,1,2015-12-06,0.02,1,0 +9380474,Private master bedroom with TV - Williamsburg,48578050,Chris,Brooklyn,Williamsburg,40.71439,-73.96256,Private room,50,7,4,2017-07-18,0.11,1,0 +9381315,comfy NYC studio apartment,7379511,Anhad,Manhattan,East Village,40.72847,-73.98579,Entire home/apt,183,1,1,2016-01-09,0.02,1,0 +9381449,Holidays in Williamsburg!,27499750,Donovan,Brooklyn,Williamsburg,40.70943,-73.94277,Entire home/apt,125,1,0,,,1,0 +9381657,Sunny room in great location,822839,Sarah,Brooklyn,Williamsburg,40.70704,-73.95522,Private room,70,2,47,2019-05-18,1.10,1,54 +9382195,"Private, modern South Slope studio",48674244,Jessica,Brooklyn,Sunset Park,40.66289,-73.99584,Entire home/apt,90,14,7,2017-08-31,0.16,1,0 +9382719,Center of Williamsburg - Modern apt w HUGE PATIO,8237570,Akash,Brooklyn,Williamsburg,40.71801,-73.9526,Entire home/apt,375,1,23,2018-05-20,0.52,2,364 +9383071,"Bright, Comfortable space in Historic Brownstone!",48677964,Lincoln,Brooklyn,Bedford-Stuyvesant,40.69329,-73.95069,Private room,50,3,6,2018-10-08,0.14,1,10 +9383406,ENTIRE Upper East Side Loft Apartment,6991164,Mike,Manhattan,Upper East Side,40.76854,-73.95532,Private room,199,1,49,2019-06-17,1.11,1,230 +9384367,Spacious Bedroom on the East River,48627335,Judy,Manhattan,Kips Bay,40.73763,-73.97284,Private room,130,1,0,,,1,0 +9384723,North of Madison Square Park Duplex,13838573,Zachary Robert,Manhattan,Midtown,40.74538,-73.98313,Entire home/apt,285,31,5,2016-05-24,0.12,1,365 +9384981,Relax in your Brooklyn Private Bed with Key,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.6947,-73.93481,Private room,72,4,100,2019-06-28,2.34,6,113 +9385790,Great Big Room near Prospect Park,23268312,Rachel,Brooklyn,Prospect-Lefferts Gardens,40.65822,-73.95439,Private room,36,15,14,2019-06-07,0.49,1,15 +9386923,Private Master Bedroom / Bushwick,4769886,Tom & Nic,Brooklyn,Bushwick,40.69535,-73.9184,Private room,84,2,48,2019-06-30,1.11,2,263 +9387120,"Private Room/Full Bed, East Village",48695642,Anne,Manhattan,East Village,40.72314,-73.98066,Private room,100,1,1,2015-12-01,0.02,1,0 +9387436,Rhonda's bed and breakfast,48696992,Rhonda,Brooklyn,Bedford-Stuyvesant,40.68925,-73.94462,Private room,130,2,16,2019-01-01,0.41,1,262 +9387914,Amazing 3 Bedroom in East Village,6753765,Austin,Manhattan,East Village,40.72219,-73.98409,Entire home/apt,285,4,1,2016-01-03,0.02,3,0 +9390084,*SOHO 1 bedroom plus pullout sofa*,47581480,Alex,Manhattan,SoHo,40.72667,-74.00257,Entire home/apt,175,4,0,,,1,0 +9390729,Manhattan Brownstone Great Location,15280538,Elisabeth,Manhattan,East Harlem,40.78758,-73.95026,Entire home/apt,465,3,74,2019-07-06,1.67,1,62 +9391430,Charming 1 BR in Heart of Nolita,6487616,Eli,Manhattan,Nolita,40.72291,-73.9945,Entire home/apt,175,3,6,2016-02-03,0.14,1,0 +9391509,"Lovely, Serene Brooklyn (NYC) Charm with ACs.",48712266,Eka,Brooklyn,Greenpoint,40.72528,-73.94488,Entire home/apt,165,5,201,2019-06-27,4.70,2,212 +9391541,Design Lux 1 bed ! Doorman Gym!5222,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79312,-73.96606,Entire home/apt,156,30,1,2018-08-31,0.10,96,252 +9391609,Doorman 1 Bedroom Furnished LUX5156,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79155,-73.97477,Entire home/apt,191,30,0,,,96,341 +9392042,Sunny 2 full bedroom apartment :),9703540,Lucy,Brooklyn,Williamsburg,40.70973,-73.94289,Entire home/apt,160,14,1,2016-08-28,0.03,1,0 +9393005,"Sunny, Near Times Sq & Central Park",14847501,Zachary,Manhattan,Hell's Kitchen,40.76646,-73.9929,Entire home/apt,305,1,0,,,2,0 +9393127,LUXURY SUNLIT place in the EAST VILLAGE!,47730499,Katherine,Manhattan,East Village,40.72161,-73.98013,Entire home/apt,200,1,52,2019-06-30,1.20,1,74 +9393134,Spacious 3br Williamsburg Apt One Block From Water,32812120,Bjorn,Brooklyn,Williamsburg,40.7196,-73.95956,Entire home/apt,260,3,4,2017-05-29,0.11,2,0 +9393314,Bright Room near Times Sq/Central Pk.,14847501,Zachary,Manhattan,Hell's Kitchen,40.76747,-73.99422,Private room,105,5,0,,,2,0 +9393332,Little house on 12th Street,46467513,Patricia,Brooklyn,Gowanus,40.67017,-73.99029,Private room,85,1,0,,,1,0 +9393343,Spacious 1 bedroom near 125th St.,35899921,Alexandra,Manhattan,Harlem,40.81176,-73.94999,Entire home/apt,100,3,2,2016-02-22,0.05,1,0 +9393610,Big room in Williamsburg Penthouse,48723117,Gaute,Brooklyn,Williamsburg,40.7116,-73.9521,Private room,79,4,0,,,1,0 +9393674,Staying with Mike in Hells Kitchen/Times Square.,1557889,Michael,Manhattan,Hell's Kitchen,40.75925,-73.99136,Private room,120,5,125,2018-09-29,2.83,2,177 +9393885,three bedroom in east village,48723057,Carlo,Manhattan,East Village,40.72339,-73.9833,Entire home/apt,300,3,0,,,1,0 +9394188,Room for 1 Female or Couple,38805180,Maria,Bronx,Mott Haven,40.8113,-73.92465,Private room,65,3,2,2019-01-02,0.05,1,356 +9394266,Chelsea studio,48726094,Antonia,Manhattan,Chelsea,40.75088,-73.99951,Private room,100,2,151,2019-06-17,3.46,1,0 +9394419,Sunny Clinton Hill Brownstone Apt,3732336,Moira,Brooklyn,Clinton Hill,40.68215,-73.96121,Entire home/apt,127,1,7,2017-07-23,0.16,1,0 +9395128,"LGA/TimeSqaure/Private BDroom+Bath, Queens",36577517,Nan,Queens,Elmhurst,40.74449,-73.88096,Private room,49,2,21,2019-06-15,0.48,2,311 +9396442,Upper west Apt close to Central Pk,26347594,Mahesh,Manhattan,Upper West Side,40.77772,-73.98514,Private room,108,1,11,2017-12-08,0.25,1,0 +9400570,Be comfortable in Harlem,48489264,Claudio,Manhattan,Harlem,40.81443,-73.94121,Entire home/apt,121,30,0,,,1,0 +9401453,High Luxury Thanksgiving Stay,39694819,Montana,Manhattan,Chelsea,40.74081,-74.00296,Entire home/apt,180,1,1,2015-11-21,0.02,1,0 +9401508,Private RM in 3 bedroom brownstone in Bedstuy,48757168,Eva,Brooklyn,Bedford-Stuyvesant,40.6869,-73.95496,Private room,34,5,34,2019-01-14,0.77,1,7 +9401601,Quiet Renovated Chinatown Apartment,10999333,Tam,Manhattan,Two Bridges,40.71271,-73.99512,Entire home/apt,180,4,0,,,1,0 +9401880,NEW Penthouse UnionSq Wraparound Terrace,24530091,Jt,Manhattan,Greenwich Village,40.73491,-73.99231,Entire home/apt,250,53,2,2018-02-14,0.05,1,365 +9402784,Sunny Greenpoint Junior 1 Bedroom,20475463,Adam,Brooklyn,Greenpoint,40.72264,-73.93823,Entire home/apt,100,5,3,2019-06-03,0.25,1,78 +9403937,Doorman Gym Studio Deck!5155,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79224,-73.97417,Entire home/apt,175,30,0,,,96,265 +9404068,Doorman Swimming Pool Gym Modern Furnished!5208,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79285,-73.967,Entire home/apt,175,30,7,2019-06-24,0.18,96,280 +9404707,Spacious & Sunny East Village Studio,381669,Ashley,Manhattan,East Village,40.73047,-73.98576,Entire home/apt,190,4,10,2018-12-28,0.23,1,0 +9404709,Stylish apartment in Sunset Park Brooklyn,2743716,Spyridon,Brooklyn,Sunset Park,40.64577,-74.00532,Entire home/apt,90,7,6,2018-07-01,0.17,1,0 +9404985,UNBEATABLE LOCATION/TIMES SQUARE!,48771768,Leo,Manhattan,Hell's Kitchen,40.75735,-73.99007,Entire home/apt,160,2,143,2019-07-05,3.29,1,215 +9405124,1 Bed available in 2 BR Apt in UWS,19059946,Andrew,Manhattan,Upper West Side,40.79947,-73.964,Private room,51,1,1,2016-01-05,0.02,1,0 +9405466,Quiet 1 bdr UWS Apartment,3414967,Thomas,Manhattan,Upper West Side,40.77668,-73.97815,Entire home/apt,150,1,1,2015-12-14,0.02,1,0 +9405895,Stylish and zen Brooklyn retreat,48775347,Mathieu,Brooklyn,Fort Greene,40.68914,-73.97853,Entire home/apt,325,3,16,2019-04-20,0.42,1,103 +9407719,The LOFT in Bushwick+ Arcade!,8712984,William,Brooklyn,Bushwick,40.70889,-73.92135,Entire home/apt,99,3,9,2019-06-04,0.23,1,42 +9407921,1 Bedroom Luxury Apartment on 33rd,48784045,Jake,Manhattan,Kips Bay,40.74379,-73.97803,Private room,150,1,0,,,2,0 +9408123,Beautiful Loft - Willimsbrg Bedford,31368679,Brenda,Brooklyn,Williamsburg,40.71914,-73.95709,Entire home/apt,280,1,13,2016-10-29,0.30,1,363 +9408218,Charming One Bed Room Apartment,48784879,Olga,Manhattan,East Harlem,40.79417,-73.94331,Entire home/apt,110,2,166,2019-06-15,3.78,1,229 +9408391,Private Room in Beautiful Williamsburg Apt.,24338701,Alexa,Brooklyn,Williamsburg,40.71787,-73.95396,Private room,100,5,0,,,1,0 +9409457,Two Bedroom Apt w/Private Balcony & Small Bathroom,48790146,Violet,Brooklyn,Bedford-Stuyvesant,40.69182,-73.95696,Entire home/apt,125,2,127,2019-06-17,2.92,1,126 +9409873,Greenwich Village - SoHo Duplex+Balcony+Terrace,1442864,Alex,Manhattan,Greenwich Village,40.72824,-73.99517,Entire home/apt,275,4,18,2019-07-01,1.90,1,85 +9410042,Modern Southwestern Retreat- Spacious 1 Bed,2370614,Leslie,Brooklyn,Williamsburg,40.71133,-73.96924,Entire home/apt,308,2,22,2019-06-23,0.55,1,109 +9410527,Spacious modern 3 BR in Park Slope,1401316,Karoline,Brooklyn,South Slope,40.66548,-73.98279,Entire home/apt,200,4,3,2016-01-03,0.07,1,0 +9410580,Room #3 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79668,-73.93379,Private room,60,2,136,2019-04-21,3.07,4,48 +9411914,Great room in Greenwich Village!,17234494,Fer,Manhattan,West Village,40.73319,-74.00225,Private room,65,1,2,2016-01-03,0.05,1,0 +9412276,UWS Railroad Apartment,7683847,David,Manhattan,Upper West Side,40.79632,-73.96879,Entire home/apt,110,1,0,,,1,0 +9412522,City living without all the noise.,48249473,Marisol,Bronx,Kingsbridge,40.879,-73.90062,Entire home/apt,189,1,8,2019-04-26,0.22,2,354 +9412636,Safe&Cozy bdoom/5 mins to Manhattan,24244132,Yuhao,Manhattan,Roosevelt Island,40.76168,-73.95059,Private room,60,2,1,2016-05-30,0.03,1,0 +9412913,Private Room - Midtown West NYC,26926354,Pavan,Manhattan,Hell's Kitchen,40.76534,-73.9925,Private room,90,5,0,,,1,0 +9413287,Ensuite Bathroom in Luxury Duplex,3337974,Erik,Brooklyn,Williamsburg,40.71605,-73.95176,Private room,65,3,1,2015-12-01,0.02,1,0 +9413809,Bright & Calm Brooklyn Retreat,492064,Melanie,Brooklyn,Clinton Hill,40.68281,-73.96446,Entire home/apt,128,2,37,2018-11-25,0.84,1,0 +9414019,Yogi's Luxury on Prospect Park,1333485,Jenny,Brooklyn,Windsor Terrace,40.6491,-73.97434,Entire home/apt,200,2,19,2017-01-02,0.45,1,0 +9414237,Your Park Slope Retreat,14435697,Jacob,Brooklyn,Park Slope,40.67159,-73.97482,Entire home/apt,120,14,0,,,1,0 +9414317,Cozy Private Room in 2 bedroom APT,48811662,Kelly,Brooklyn,Prospect-Lefferts Gardens,40.65837,-73.96115,Private room,75,3,67,2019-06-09,1.52,1,296 +9414496,Gorgeous studio available!,37169371,Shannon,Manhattan,Inwood,40.85945,-73.92834,Entire home/apt,69,1,1,2015-11-27,0.02,1,0 +9414521,"Perfect apartment, Manhattan NYC",23850513,Fabiana,Manhattan,Morningside Heights,40.80887,-73.95917,Entire home/apt,120,5,3,2017-01-01,0.07,1,0 +9415026,Murray Hill NYC Apartment,14995329,Sierra,Manhattan,Kips Bay,40.7435,-73.97907,Private room,95,1,1,2015-12-14,0.02,1,0 +9415109,Quiet modern space,48816743,Wesley,Brooklyn,Bedford-Stuyvesant,40.69856,-73.94368,Entire home/apt,142,2,18,2017-01-02,0.44,1,0 +9415568,Cozy 1BR,17764174,Mike,Manhattan,Inwood,40.87045,-73.9183,Entire home/apt,210,1,0,,,1,365 +9415685,Master Room & private bathroom 15m to Manhattan,43908809,M&L,Queens,Woodside,40.75066,-73.90424,Private room,155,2,14,2018-04-29,0.33,3,90 +9415828,Large & Bright in West Village!,43864152,Kristina,Manhattan,West Village,40.73129,-74.00237,Entire home/apt,300,2,3,2016-10-24,0.08,1,0 +9416007,Subway. Ocean. Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.5888,-73.97278,Private room,70,3,46,2019-06-13,1.05,2,92 +9416198,Cute private space in an Awesome Location,48823036,Fred,Manhattan,Midtown,40.75452,-73.96767,Entire home/apt,180,1,156,2019-06-27,3.58,1,22 +9420768,Come Enjoy My Trendy Harlem,48603189,Marcella,Manhattan,Harlem,40.82402,-73.9456,Private room,70,1,17,2018-01-03,0.40,1,0 +9422196,Private Room in Gramercy Park,12154291,Cindy,Manhattan,Gramercy,40.73537,-73.98244,Private room,95,1,1,2016-06-13,0.03,1,0 +9422573,Private Light-Filled 2-Room Space,248490,Leecia,Brooklyn,Bedford-Stuyvesant,40.68041,-73.93612,Entire home/apt,100,3,83,2019-05-31,1.90,2,224 +9423397,"Brooklyn Gem nr Shops, Subways",48854322,Yuna,Brooklyn,Bushwick,40.69994,-73.92378,Entire home/apt,129,5,89,2019-05-26,2.02,2,72 +9424217,"Monthly+. Quiet, Upscale Neighborhood",12122228,Joseph,Manhattan,Upper East Side,40.77557,-73.94615,Private room,62,30,0,,,1,174 +9425220,Cozy private bedroom in 3BR Apt,48861563,Kalyani,Manhattan,Washington Heights,40.84899,-73.94018,Private room,40,1,2,2016-01-03,0.05,1,0 +9425357,Large bedroom available in 2-bedroom apt.,31985378,Adrian,Brooklyn,Williamsburg,40.7158,-73.95587,Private room,90,2,3,2019-06-10,0.48,1,6 +9425524,Big Bright Private Room in Brooklyn,5753744,Rindon,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.9588,Private room,42,1,1,2016-10-02,0.03,2,0 +9426406,Stunning 2 bd home in historic limestone,12241602,Crystal,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94276,Entire home/apt,125,7,0,,,1,0 +9426418,Modern Williamsburg Apartment,32725953,Andrew,Brooklyn,Williamsburg,40.7197,-73.95519,Entire home/apt,100,4,0,,,1,0 +9426526,NEW HUGE 2 ROOMS TIMES SQ CHIC NY!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76465,-73.99499,Entire home/apt,70,30,1,2018-11-14,0.13,5,365 +9427331,Huge/private studio right off the L,48870194,Brad,Brooklyn,Bushwick,40.70505,-73.92239,Entire home/apt,108,2,4,2016-07-01,0.09,1,0 +9427868,Grand Home On Kissena Park in Flushing NYC,23234988,Ann,Queens,Flushing,40.75114,-73.80695,Entire home/apt,500,2,20,2019-05-31,0.85,6,243 +9428356,Trendy 1 BR in the LES NY,47507350,Alyssa,Manhattan,Lower East Side,40.72278,-73.98878,Private room,115,1,0,,,1,0 +9429015,Amazing Location! mid-70s 1BR @ Columbus,13129524,Whitney,Manhattan,Upper West Side,40.78198,-73.97803,Entire home/apt,275,1,4,2016-06-26,0.09,1,0 +9430502,Stay in the coolest neighborhood,3100823,Kyle,Brooklyn,Bushwick,40.70383,-73.92853,Private room,40,1,0,,,1,0 +9431085,Hi! Stylish Spotless 2Bdr w Terrace,1601345,Sonia,Brooklyn,Williamsburg,40.71409,-73.96359,Entire home/apt,289,3,128,2019-06-21,2.89,1,92 +9433088,Relaxing Retreat in Williamsburg,34236533,Stan,Brooklyn,Williamsburg,40.70851,-73.94244,Private room,130,5,102,2019-07-01,2.48,1,288 +9434105,Huge room in El Barrio.,26299995,Luiz & Daniel,Manhattan,East Harlem,40.79733,-73.93988,Private room,55,3,125,2019-06-20,2.87,1,1 +9434432,Roomy Manhattan Studio,8012008,Sean,Manhattan,Kips Bay,40.74015,-73.98038,Entire home/apt,125,2,0,,,1,0 +9434464,Sunny Studio Apt in Historic Harlem,1241420,Justin,Manhattan,Harlem,40.81051,-73.94723,Entire home/apt,130,4,94,2019-06-21,2.20,1,27 +9434495,Cozy room in a spacious house,48899796,Beth,Brooklyn,Midwood,40.62186,-73.95347,Private room,60,2,62,2019-05-23,1.45,2,107 +9434513,2000sq $2 million 3 story townhouse,48899736,Lindsay,Brooklyn,Boerum Hill,40.68632,-73.98796,Entire home/apt,99,1,140,2019-06-09,3.20,1,363 +9434801,Cozy Bedroom in Sunny Apartment,10335025,Sharif,Brooklyn,Bushwick,40.70254,-73.93095,Private room,50,5,12,2017-08-03,0.27,1,0 +9435315,Beautiful Duplex with Patio!!!,35539248,Ashish,Manhattan,East Village,40.72117,-73.98126,Private room,78,25,0,,,1,0 +9435428,Cozy Studio in East Harlem,48904356,Hasan,Manhattan,East Harlem,40.79335,-73.94583,Entire home/apt,150,1,1,2016-01-02,0.02,1,0 +9435503,Library BnB by the Park - Upper West Side,16722827,MaElena,Manhattan,Morningside Heights,40.80294,-73.96007,Private room,90,2,62,2019-05-10,1.73,1,320 +9435931,2Bed/ 2Bath Impeccable Stylish Brooklyn Home,5037211,Mariana,Brooklyn,Greenpoint,40.72104,-73.94805,Entire home/apt,275,5,77,2019-06-29,1.89,2,6 +9436038,Huge New Reno Slick Times Sq Quiet!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76365,-73.99472,Entire home/apt,70,30,3,2018-06-30,0.07,5,339 +9436049,Huge room with private bathroom in Brooklyn,7117596,Fernando,Brooklyn,Bedford-Stuyvesant,40.68964,-73.94884,Private room,39,3,0,,,1,0 +9436311,Location Location Location!!!!,4284267,Al,Manhattan,Theater District,40.75732,-73.98276,Entire home/apt,185,3,177,2019-06-22,4.16,1,216 +9437085,BIG bedroom in Uptown Manhattan,48913242,Alec,Manhattan,Washington Heights,40.83907,-73.94256,Private room,49,2,0,,,1,0 +9437574,"Large, Sunny Room in Bushwick!",20496152,Michaela,Brooklyn,Bushwick,40.69798,-73.93206,Private room,69,1,30,2018-01-01,0.80,1,0 +9443911,4 Bedroom Downtown Brooklyn,48943908,Aaron,Brooklyn,Clinton Hill,40.6846,-73.96536,Entire home/apt,330,2,84,2019-06-23,2.03,1,327 +9444324,Boutique Studio,15873085,Alana,Manhattan,Upper West Side,40.7894,-73.9762,Entire home/apt,110,5,0,,,1,7 +9444819,Upper East Side doorman building.,14266812,Rona,Manhattan,Upper East Side,40.77254,-73.9493,Entire home/apt,450,1,0,,,1,0 +9444997,Central Park Room for 2 on the UWS,29417940,Tolley,Manhattan,Upper West Side,40.77813,-73.97574,Private room,150,2,2,2016-08-22,0.05,2,0 +9445342,Times Sq brand huge new 2 room!!!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.75591,-73.99499,Entire home/apt,80,30,10,2019-03-31,0.24,5,357 +9445501,Modern reno 2 room Times Sq quiet!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76376,-73.99323,Entire home/apt,80,30,5,2018-06-16,0.12,5,365 +9445593,"SoHo Apt. in Historic Townhouse, Private Terrace",48949937,Jocelyn,Manhattan,SoHo,40.72419,-74.00451,Entire home/apt,310,3,117,2019-06-22,2.88,1,57 +9445789,Reno huge 2 room quiet Times Sq!!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76373,-73.99297,Entire home/apt,70,30,5,2019-01-27,0.12,5,341 +9447274,True 2 BR in heart of Chelsea,9703336,Jeff,Manhattan,Chelsea,40.7411,-73.99978,Entire home/apt,325,1,2,2016-01-03,0.05,1,0 +9450180,Private Room Available,7989399,Esin,Queens,Sunnyside,40.7388,-73.92501,Private room,65,3,13,2019-05-18,0.58,2,167 +9451126,Cosy Carroll Garden Apartment,48970186,Margarita,Brooklyn,Carroll Gardens,40.68315,-73.99387,Entire home/apt,155,4,128,2019-05-26,2.89,2,0 +9451334,Beautiful &Cozy&Spacious!,3718888,Ana,Brooklyn,Bushwick,40.68943,-73.90574,Private room,45,1,2,2016-01-10,0.05,1,0 +9451492,"Best location, Midtown Times Square",25406270,Dan,Manhattan,Hell's Kitchen,40.76355,-73.98914,Entire home/apt,125,4,148,2019-07-05,3.69,1,129 +9451597,beautiful room with balcony,6630815,Emmanuelle,Brooklyn,Bushwick,40.68817,-73.91257,Private room,49,2,213,2019-06-24,4.90,2,30 +9451768,New Years in Hudson Heights!,48977782,Miriam,Manhattan,Washington Heights,40.85128,-73.93907,Private room,150,1,0,,,1,0 +9451784,Trendy Williamsburg Apartment!,22953164,Caroline,Brooklyn,Williamsburg,40.71028,-73.95445,Private room,80,2,4,2016-09-05,0.09,1,0 +9452124,LUXURY@ Reasonable Price! Few Mins 2 Times Square!,34403316,Ben,Manhattan,East Harlem,40.79382,-73.94334,Entire home/apt,145,1,152,2019-06-21,3.43,1,200 +9452237,2 BED STEP TO THE TRAIN,5855145,Edward,Queens,Ditmars Steinway,40.77588,-73.90782,Entire home/apt,125,2,38,2019-06-03,0.87,2,330 +9452728,❤️ Charming and Quiet NYC Guestroom ❤️,48983104,Lily,Queens,Middle Village,40.7206,-73.87382,Private room,60,1,95,2019-06-23,2.22,3,80 +9452887,Lovely Little Literary Loft!,23909946,Robin Laverne,Brooklyn,Bedford-Stuyvesant,40.68632,-73.91793,Private room,50,3,70,2019-06-17,1.59,3,25 +9453245,Light Room In Little Italy,3784521,Matiss,Bronx,Belmont,40.85487,-73.88711,Private room,70,7,0,,,1,0 +9453653,Beautiful penthouse in Williamsburg,48988714,Luigi,Brooklyn,Williamsburg,40.71174,-73.95544,Entire home/apt,531,1,119,2019-06-23,2.71,3,353 +9457270,COMFY East Village w loft sleep 6 Coffee included,48320077,Michael,Manhattan,East Village,40.72443,-73.98289,Entire home/apt,199,1,81,2019-07-06,1.91,2,318 +9457285,The Central Park Studio,8604689,Emel,Manhattan,Upper East Side,40.76892,-73.96845,Entire home/apt,214,3,151,2019-06-26,3.58,1,219 +9457917,Cozy 1 Bed Rm Appt in Kipps Bay !,49011283,Murtaza,Manhattan,Kips Bay,40.74404,-73.97564,Entire home/apt,70,3,0,,,1,0 +9458150,1BR Beautifull Bright Very Spacious,7571483,Veronica,Brooklyn,Crown Heights,40.66971,-73.95645,Entire home/apt,105,4,1,2016-08-23,0.03,1,0 +9458704,"Large 1BR Apartment, near Times Sq (2nd Floor)",49015331,Iradj,Manhattan,Hell's Kitchen,40.76037,-73.99016,Entire home/apt,240,2,64,2019-06-30,1.68,2,262 +9459037,Gorgeous studio,33368633,John,Queens,Forest Hills,40.72484,-73.84505,Entire home/apt,114,4,74,2019-06-27,1.69,2,350 +9459232,Bedroom in spacious apt w/ backyard,4052055,Lorien,Manhattan,East Village,40.724,-73.98376,Private room,45,1,1,2015-12-21,0.02,1,0 +9460093,Private Room in SAFE area of Harlem,17263290,Valerie,Manhattan,Harlem,40.82241,-73.9412,Private room,45,1,0,,,1,0 +9461187,Apartment 20 minutes from Manhattan,49027658,Loretta,Brooklyn,Greenpoint,40.73391,-73.95679,Entire home/apt,143,1,0,,,1,0 +9461236,Artist & art filled apartment in williamsbourg,29408743,Monika,Brooklyn,Williamsburg,40.7121,-73.96101,Entire home/apt,145,10,18,2019-04-30,0.43,1,157 +9461660,Room in a Historic Old Brownstone,11611066,Nazgol,Manhattan,Harlem,40.8096,-73.94099,Private room,90,1,0,,,1,0 +9461669,Centrally Located Bedroom with Private Garden,29518662,Jennifer,Brooklyn,Park Slope,40.68182,-73.97704,Private room,75,3,14,2019-04-04,0.33,1,352 +9461803,Private room in classic SoHo loft,2611503,Ronnie,Manhattan,SoHo,40.72675,-74.00757,Private room,225,3,49,2019-06-06,1.44,1,322 +9461851,Charming Upper West Side Studio,1374432,Quentin,Manhattan,Upper West Side,40.78743,-73.96855,Entire home/apt,150,2,51,2019-06-15,1.21,1,0 +9462694,Beautiful 1BR Garden Apt in BK,10240786,Sam,Brooklyn,Carroll Gardens,40.68177,-73.99393,Entire home/apt,150,1,1,2015-12-06,0.02,1,0 +9463039,Wonderful 1-BR apt in Chelsea,5857948,Dimitrios,Manhattan,Chelsea,40.74163,-74.00102,Entire home/apt,182,20,6,2019-05-05,0.17,1,32 +9463261,"Clean bright room, Upper West Side",30942491,Aga,Manhattan,Morningside Heights,40.80473,-73.96528,Private room,62,20,0,,,1,0 +9464046,Beautiful New Apt-perfect location!,1607111,Damian,Brooklyn,Williamsburg,40.7075,-73.95385,Private room,65,6,3,2016-04-28,0.07,1,0 +9464137,Elegant High Rise Condo w/ Doorman,42956813,Naomi,Manhattan,Upper East Side,40.7713,-73.95443,Entire home/apt,175,1,15,2016-09-05,0.35,1,0 +9464318,Huge NYC 4BR Condo ByD'subwaySlp 12,48890727,Ruth,Brooklyn,Carroll Gardens,40.67939,-73.99598,Entire home/apt,525,4,11,2018-10-09,0.28,1,159 +9464543,Prime Location in CHELSEA,15208048,Philipp,Manhattan,Chelsea,40.74601,-73.99987,Private room,98,1,1,2015-12-14,0.02,1,0 +9464605,Private Cozy BR near Union Square - FEMALE only,5776966,Lily,Manhattan,Gramercy,40.73683,-73.98191,Private room,61,3,21,2019-07-05,0.47,1,16 +9464835,Modern Studio UWS,33580313,Kristina,Manhattan,Upper West Side,40.78339,-73.98018,Entire home/apt,159,30,21,2018-04-22,0.48,1,141 +9466003,Best house for New York 欢迎中国游客短租,39981142,Bryant,Queens,Maspeth,40.73329,-73.89463,Private room,68,1,0,,,1,0 +9469009,Luxury Studio in Artsy Brooklyn,15674613,Masha,Brooklyn,Bushwick,40.69395,-73.92418,Entire home/apt,69,10,11,2017-06-25,0.27,1,226 +9469827,"Spacious, Upper East Side apartment",1240958,Caroline,Manhattan,East Harlem,40.78763,-73.95111,Private room,125,5,0,,,1,0 +9470528,"Sunshine 1BR Apt near M&L Subways, Kitchenette",48854322,Yuna,Brooklyn,Bushwick,40.69979,-73.92261,Entire home/apt,115,4,132,2019-06-25,3.00,2,71 +9470554,Private bedroom available in the East Village,49082748,Robert,Manhattan,East Village,40.72911,-73.98151,Private room,85,14,99,2019-07-03,2.32,1,21 +9470677,Fifth Ave/Central Park 1BR IN A TownHouse Garden,49083612,Joe,Manhattan,Upper East Side,40.76656,-73.97038,Entire home/apt,209,1,116,2019-06-23,2.63,1,168 +9471893,Newly Renovated Soho Apt: 2 bedroom/2 bathroom,49090209,Jack,Manhattan,Greenwich Village,40.72772,-74.0013,Entire home/apt,225,1,1,2016-01-02,0.02,1,0 +9471997,Lovely 1-bedroom apartment in SoHo!,10208450,Olai,Manhattan,SoHo,40.72615,-74.00225,Entire home/apt,100,4,1,2016-03-08,0.02,1,0 +9473492,1 Bedroom in 2 bdr Bushwick apt,49099055,Charles,Brooklyn,Bushwick,40.68983,-73.90512,Private room,55,1,1,2015-12-27,0.02,1,0 +9473646,Cozy Private Room in Cobble Hill,6240859,Sarah,Brooklyn,Carroll Gardens,40.68535,-73.99192,Private room,80,2,11,2016-11-03,0.27,1,0 +9473837,Cozy Room in Artistic Apartment,13713658,Isabelle,Brooklyn,Williamsburg,40.7161,-73.94264,Private room,80,1,1,2016-01-02,0.02,1,0 +9473889,"CHARMING, QUIET ONE BEDROOM APT W/ BACK YARD",49101398,Nicholas,Brooklyn,Gravesend,40.59592,-73.97523,Entire home/apt,85,30,9,2019-06-02,0.21,3,216 +9474607,Brand new apt in heart of Midtown!,43951918,Mian,Manhattan,Hell's Kitchen,40.75553,-73.9923,Entire home/apt,280,4,0,,,1,0 +9475052,"Super Cool Brooklyn, Near Manhattan",49108001,Manne,Brooklyn,Bedford-Stuyvesant,40.68735,-73.94541,Entire home/apt,125,2,180,2019-06-18,4.09,1,116 +9475136,Williamsburg Room & Private Bath,13034246,Clinton,Brooklyn,Williamsburg,40.71642,-73.95298,Private room,90,1,0,,,1,0 +9475494,Upper East Side - amazing location!,3394386,Kevin,Manhattan,Upper East Side,40.78113,-73.95452,Entire home/apt,175,1,1,2015-12-27,0.02,1,0 +9475907,Spacious alcove studio in Tribeca,1991700,Rajat,Manhattan,Financial District,40.71124,-74.00834,Entire home/apt,150,3,0,,,1,0 +9476198,Amazing 1BR Apt in the heart of East Village,49115124,Kin,Manhattan,East Village,40.72636,-73.98454,Entire home/apt,180,2,51,2019-07-07,4.77,1,6 +9476212,Awesome Green Vill. Penthouse Apt.,9721574,Gregory,Manhattan,West Village,40.73338,-74.00752,Entire home/apt,250,1,0,,,1,0 +9476397,Spacious room in the heart of Astoria!,40503875,Hebert,Queens,Astoria,40.75823,-73.90881,Private room,60,1,49,2019-02-04,1.13,2,0 +9476449,Spacious Park Slope 3 Bb APT,13859188,Julien,Brooklyn,Park Slope,40.66737,-73.97822,Entire home/apt,200,2,2,2016-08-28,0.05,1,0 +9476774,2 BR/2BA UWS Luxury Apartment w Private Backyard,15145088,Izi,Manhattan,Upper West Side,40.78613,-73.9732,Entire home/apt,295,30,2,2017-03-08,0.06,8,332 +9476831,Private room in Wash Heights NYC,49118721,Raphael,Manhattan,Washington Heights,40.85068,-73.93046,Private room,40,4,1,2016-01-02,0.02,1,0 +9476850,Cozy UWS Studio by Central Park,40947332,Michelle,Manhattan,Upper West Side,40.77877,-73.97872,Entire home/apt,150,3,39,2019-04-16,0.89,1,0 +9477096,Holiday Rental in NYC!,49120717,Sarah,Manhattan,Harlem,40.82516,-73.95288,Private room,40,1,1,2015-12-21,0.02,1,0 +9477359,"Bright, airy East Village apartment",22063782,Jennifer,Manhattan,East Village,40.72311,-73.98389,Entire home/apt,180,7,1,2016-01-03,0.02,1,0 +9477489,1 bedroom clean & simple in manhattan.,49123284,Kyriaki,Manhattan,Two Bridges,40.71255,-73.99673,Entire home/apt,145,6,106,2019-06-24,2.48,2,249 +9477988,Sunny and Close to Everything!,7530710,Lili And Antoine,Brooklyn,Prospect Heights,40.67768,-73.97114,Entire home/apt,175,10,11,2016-10-10,0.25,1,0 +9478196,"Spacious W.Village Triplex, terrace",26748898,Abby,Manhattan,West Village,40.73431,-74.00635,Entire home/apt,275,3,4,2016-07-20,0.11,1,0 +9478370,Spacious and comfortable 1Br apt close to NYC.,8200337,María Cristina,Queens,Sunnyside,40.74538,-73.92139,Entire home/apt,115,2,6,2018-07-02,0.18,1,0 +9479084,Cosy studio / newly renovated,1177400,Bella,Manhattan,Two Bridges,40.71183,-73.99685,Entire home/apt,175,4,3,2017-01-02,0.08,1,0 +9479324,Subletting my room (Jan-May),49133999,Eli,Brooklyn,Clinton Hill,40.69585,-73.96344,Private room,65,60,0,,,1,0 +9479348,Penthouse Duplex & Roof Top Terrace,369154,Michael,Manhattan,Harlem,40.81319,-73.94423,Entire home/apt,345,4,16,2019-04-30,0.37,1,206 +9484346,Handsome Lower East Side 1-bedroom,49158190,Sarah,Manhattan,Chinatown,40.71564,-73.99169,Entire home/apt,150,1,3,2016-01-03,0.07,1,0 +9484892,"Cozy, E.Vill room w/ private bath!",13667539,Brian,Manhattan,East Village,40.72145,-73.97881,Private room,75,1,2,2016-01-01,0.05,1,0 +9485047,Cozy 1 bed Apt in Hell's Kitchen!,49160243,Paulo,Manhattan,Hell's Kitchen,40.76472,-73.98813,Entire home/apt,219,4,130,2019-02-14,3.04,1,329 +9485566,Spacious Artist's Loft,46142110,Charlotte,Brooklyn,Williamsburg,40.72182,-73.95576,Entire home/apt,300,3,0,,,1,0 +9485606,Big 2BR with large living area,49164778,Dmitriy,Manhattan,Harlem,40.81041,-73.9445,Entire home/apt,225,3,76,2019-06-16,1.78,1,360 +9486111,Clean 2 Bedroom Apt w. Washer/Dryer,14565422,Janelle,Manhattan,East Harlem,40.78591,-73.94832,Entire home/apt,275,2,95,2019-06-23,2.51,2,248 +9486229,"Stylish and clean apt, sleeps 5",49167739,Carine,Manhattan,Greenwich Village,40.72797,-74.0019,Entire home/apt,350,4,47,2019-05-15,1.06,2,283 +9486332,Brand New Upper East Side!,49167534,Andrea,Manhattan,Upper East Side,40.77281,-73.95822,Entire home/apt,175,2,0,,,1,0 +9486961,Large Bright Bushwick Private Room!,49170998,Nina,Brooklyn,Bushwick,40.70138,-73.92168,Private room,60,7,3,2018-01-01,0.07,1,0 +9487424,South Slope house for Families!,7526931,Margaret,Brooklyn,Sunset Park,40.66214,-73.99223,Entire home/apt,350,4,0,,,1,0 +9487497,"Sunny, Charming Brooklyn 1 Bedroom!",2448332,Robyn,Brooklyn,Cobble Hill,40.69035,-73.99633,Entire home/apt,119,8,37,2019-06-19,0.87,1,85 +9487684,Nice and cozy studio in the Upper West Side.,4515330,Alo,Manhattan,Upper West Side,40.7795,-73.98258,Entire home/apt,175,4,2,2016-06-06,0.05,1,0 +9488285,J&D Vacation Home,49177258,Mrs .D,Brooklyn,Bedford-Stuyvesant,40.68282,-73.92934,Entire home/apt,335,2,21,2019-06-16,0.53,1,304 +9488756,A tranquil base for exploring NYC,1657540,Charlie,Brooklyn,Bedford-Stuyvesant,40.68023,-73.94487,Private room,70,7,2,2015-12-07,0.05,1,0 +9488762,Comfy Bushwick Apartment,3848874,Becky,Brooklyn,Bushwick,40.70479,-73.92054,Entire home/apt,180,4,0,,,1,0 +9488878,Manhattan furnished 2 bedrooms #2,49176019,Marie-Louise,Manhattan,Upper West Side,40.7996,-73.9621,Entire home/apt,299,4,114,2019-06-20,2.62,1,282 +9489073,Mi Casa Es Su Casa NYC,49181430,Grace,Manhattan,East Harlem,40.79351,-73.93388,Entire home/apt,99,5,13,2019-06-28,0.30,1,127 +9490080,"Cozy, Artsy Apartment in Upper NYC",49186493,Danni,Manhattan,Washington Heights,40.84369,-73.93828,Entire home/apt,95,4,0,,,1,0 +9490600,Room in Williamsburg penthouse,26415140,Gabriele,Brooklyn,Williamsburg,40.71002,-73.94796,Private room,50,5,0,,,1,0 +9490959,Brooklyn Comfort.,49191712,Stephen Dayo,Brooklyn,Bedford-Stuyvesant,40.69372,-73.94578,Entire home/apt,150,2,59,2019-06-14,1.38,1,19 +9491126,Charming Tenament Apt Great View,5658754,G,Manhattan,East Village,40.72776,-73.98328,Private room,655,3,1,2015-12-02,0.02,1,0 +9491448,Bright 1 bedroom in Hells Kitchen,47066108,Karla,Manhattan,Hell's Kitchen,40.76393,-73.99124,Private room,99,3,5,2017-05-18,0.12,1,0 +9492069,Fabulous FiDi home away from home,171213,Jamie,Manhattan,Financial District,40.70864,-74.00675,Entire home/apt,250,1,0,,,1,0 +9492678,Gorgeous 1BR in Williamsburg church,1335392,Matthew,Brooklyn,Williamsburg,40.71584,-73.95868,Entire home/apt,450,2,0,,,1,0 +9492750,Spacious and quiet Manhattan Harlem 1-bed apt!,15441931,Aaron,Manhattan,Harlem,40.80965,-73.94553,Entire home/apt,190,3,102,2019-07-05,2.33,1,281 +9492969,Spacious Prospect Heights Room,826493,David,Brooklyn,Crown Heights,40.67252,-73.96154,Private room,58,1,0,,,1,0 +9493142,"Cozy, clean apartment in Greenpoint",49202910,Megan,Brooklyn,Greenpoint,40.72637,-73.94467,Private room,70,1,0,,,1,0 +9493324,Private Comfortable Room,1857387,Jake,Brooklyn,Williamsburg,40.7139,-73.94628,Private room,41,3,1,2015-11-23,0.02,1,0 +9494304,1 BD BALCONY APT SECURE ELEVATOR BLDG W/ ROOFTOP,224009,Michelle,Manhattan,East Harlem,40.79478,-73.94178,Entire home/apt,325,7,5,2018-09-26,0.12,1,358 +9495205,Comfy & Sunny Studio Rental,33058791,Amanda,Brooklyn,Clinton Hill,40.6858,-73.96789,Entire home/apt,180,2,0,,,1,0 +9495238,Old World Manhattan One-Bedroom,45514903,Trevor,Manhattan,Washington Heights,40.84687,-73.94228,Entire home/apt,95,5,2,2017-01-05,0.05,1,0 +9495907,"Huge, 2-Bedroom West Village Apt",8920162,Brandon,Manhattan,West Village,40.73302,-74.00585,Entire home/apt,500,1,0,,,1,0 +9496094,Modern Flat in the Heart of Chelsea,41066327,Netanya,Manhattan,Chelsea,40.74603,-74.00147,Entire home/apt,160,4,2,2016-09-14,0.05,1,0 +9496137,1BR newly renovated - 5 min walk to Central Park,42573050,Jesse,Manhattan,Midtown,40.75903,-73.96287,Entire home/apt,303,5,0,,,1,0 +9496176,Hells Kitchen hideaway,1557889,Michael,Manhattan,Hell's Kitchen,40.75826,-73.98923,Entire home/apt,400,5,15,2019-06-24,0.35,2,78 +9496213,Queen Bed in williamsburg Brooklyn,6515431,Solange,Brooklyn,Williamsburg,40.70564,-73.93646,Private room,46,1,2,2015-11-23,0.05,1,0 +9496372,W 4th Ground Floor 1bd Apt,8472477,Scott,Manhattan,West Village,40.73095,-74.00242,Entire home/apt,132,1,1,2016-01-03,0.02,1,0 +9496398,"Sunny, spacious 1 BR apt in Harlem",49220133,Venessa,Manhattan,Harlem,40.81297,-73.93922,Entire home/apt,125,3,0,,,1,0 +9496559,Charming PreWar Bedroom in Flatbush,20160518,Jenny,Brooklyn,East Flatbush,40.65343,-73.95175,Private room,50,3,0,,,1,129 +9497513,"Sunny, quiet place room 1",1850477,Michela,Brooklyn,Crown Heights,40.67797,-73.94675,Private room,45,3,0,,,2,320 +9502150,Modern 1 Bedroom Harlem Apt,49245656,Amal & Alex,Manhattan,Harlem,40.80211,-73.94573,Entire home/apt,165,5,42,2019-06-02,0.97,1,281 +9504043,BRIGHT & SPACIOUS ROOM!,31155262,Deborah,Brooklyn,Williamsburg,40.71165,-73.94898,Private room,79,56,0,,,1,0 +9504843,Charming 3 bedroom/2ba in Brooklyn,19410959,Kristie,Brooklyn,Bushwick,40.69914,-73.91471,Entire home/apt,215,3,0,,,1,0 +9505047,Private Room/Bath in Modern Williamsburg Apt.,49255756,Sol,Brooklyn,Williamsburg,40.71848,-73.95817,Private room,80,7,11,2019-05-04,0.25,1,0 +9505268,Chelsea studio,7098925,Dimitri,Manhattan,Chelsea,40.75182,-73.99779,Entire home/apt,150,5,1,2016-01-05,0.02,1,0 +9505449,"Private room in heart of Boerum Hill, Brooklyn",338562,Shanika,Brooklyn,Boerum Hill,40.6836,-73.98285,Private room,62,2,4,2017-05-08,0.11,1,0 +9505990,whole apartment & 2 cats!,49260425,Fernanda,Brooklyn,Bushwick,40.69544,-73.93221,Entire home/apt,68,3,1,2016-07-25,0.03,1,0 +9506014,A COOL APARTMENT in MANHATTAN Perfect for Holiday,37579015,Ana,Manhattan,Theater District,40.75598,-73.98796,Entire home/apt,300,5,7,2019-04-22,0.16,5,82 +9507100,Modern luxurious studio apt. 15 mins to Times Sq.,49182321,Julie,Queens,Long Island City,40.75211,-73.94082,Entire home/apt,149,5,4,2017-10-20,0.14,1,0 +9507112,Perfect one Bed in central Location #12,3256433,Ira,Manhattan,Lower East Side,40.72292,-73.99307,Entire home/apt,200,30,7,2018-10-22,0.19,7,0 +9507521,Beautiful Renovated Brownstone,49268145,James,Brooklyn,South Slope,40.66872,-73.98648,Entire home/apt,275,2,2,2016-01-01,0.05,1,0 +9508202,Sugar Hill Airbnb,43707936,Adriaan,Manhattan,Washington Heights,40.83279,-73.94174,Private room,110,2,0,,,1,0 +9508780,Pretty 1 BR 2 mins from subway,10039346,Valeria,Brooklyn,Flatbush,40.62924,-73.96311,Entire home/apt,83,2,0,,,1,0 +9509148,Beautiful Condo Prospect Heights,5023498,Kalana,Brooklyn,Crown Heights,40.67682,-73.96178,Entire home/apt,150,4,116,2019-04-19,2.74,1,165 +9509218,Large 1 Bedroom Gem in A+ location.,49275064,Chelsea,Manhattan,East Village,40.73161,-73.9896,Entire home/apt,166,3,54,2019-06-23,1.24,1,0 +9509369,Gorgeous sunny studio & perfect beautiful NYC area,24767704,Danielle,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93262,Entire home/apt,79,2,4,2016-06-20,0.09,1,0 +9510158,Luxury Stay in my 2brm humble abode,21366569,Quentin,Manhattan,Hell's Kitchen,40.7638,-73.99298,Entire home/apt,220,5,49,2019-05-31,1.15,2,251 +9510385,Lovely bedroom,49279577,Yone,Queens,Astoria,40.76737,-73.91244,Private room,70,2,26,2019-05-22,0.75,1,128 +9511490,Williamsburg Secret Treasure with deck,240471,Roberto,Brooklyn,Williamsburg,40.70766,-73.94739,Private room,60,3,6,2017-06-02,0.14,2,188 +9511685,Apartment in Stuy Town,49286334,Tairan,Manhattan,Stuyvesant Town,40.73288,-73.97984,Private room,80,1,1,2016-01-06,0.02,1,0 +9512372,Near Hudson River and Subway quiet apt,4110869,Golden&Mavy,Manhattan,Harlem,40.82243,-73.95447,Private room,50,30,10,2019-06-16,0.23,2,359 +9512472,Sunny apt in heart of Greenpoint!,33136017,Julia,Brooklyn,Greenpoint,40.72689,-73.94674,Entire home/apt,120,1,0,,,1,0 +9513152,A nice private room in East Village,20019653,威,Manhattan,East Village,40.72309,-73.98285,Private room,50,1,1,2015-12-28,0.02,1,0 +9513278,Sunny and chic SoHo apartment,49293535,Aleksandra,Manhattan,SoHo,40.72741,-74.00178,Entire home/apt,185,3,2,2016-05-26,0.05,1,0 +9513287,3 bedroom brownstone bklyn backyard,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68481,-73.92763,Entire home/apt,320,80,0,,,3,25 +9513379,"Cozy Private Room, Williamsburg",24295818,Sarah,Brooklyn,Williamsburg,40.70968,-73.94575,Private room,45,10,0,,,1,0 +9513511,Spacious & Sunny Room Perfect for Medical Students,49293611,Gloria,Bronx,Allerton,40.85753,-73.86605,Private room,85,7,9,2019-06-26,0.25,1,364 +9513743,"Central Park West, private terrace!",49295995,Elise,Manhattan,Upper West Side,40.77685,-73.9771,Entire home/apt,300,30,5,2019-06-14,0.12,1,263 +9514193,CUTE PLACE & QUIET DREAMS W BALCONY,48936457,Raquel,Manhattan,East Village,40.72536,-73.98252,Entire home/apt,199,7,36,2018-08-19,0.84,1,164 +9514730,Lovely 1 BR Close to Central Park,2005639,Kasey,Manhattan,Upper West Side,40.78462,-73.97273,Entire home/apt,150,1,0,,,1,0 +9514772,Private Entrance Trendy Greenpoint Williamsburg BK,5668894,Sunim,Brooklyn,Greenpoint,40.72396,-73.95182,Private room,50,5,2,2017-06-20,0.05,1,0 +9514805,Brooklyn Family Getaway,912101,Adrian,Brooklyn,Prospect Heights,40.67806,-73.96735,Entire home/apt,180,5,0,,,1,0 +9514860,Amazing last minute Thanksgiving,16675838,Marc,Manhattan,Hell's Kitchen,40.76526,-73.99096,Entire home/apt,299,1,0,,,1,0 +9514935,Lovely East Williamsburg room,38342237,Leonore,Brooklyn,Williamsburg,40.70725,-73.94187,Private room,66,2,0,,,1,0 +9515597,Brooklyn Brownstone in Fort Greene,49305338,Elizabeth,Brooklyn,Fort Greene,40.68719,-73.97777,Entire home/apt,410,1,0,,,1,0 +9515733,Modern Boho Apt. in Prime Brooklyn Location,888939,Amber,Brooklyn,Boerum Hill,40.68644,-73.9857,Entire home/apt,200,2,8,2018-04-01,0.35,1,0 +9516142,In the Heart of Williamsburg,42597922,Al,Brooklyn,Williamsburg,40.71171,-73.95704,Entire home/apt,149,1,87,2019-06-16,1.99,1,151 +9517131,Cleanly Kept Manhattan Bedroom FiDi,42807409,Sami,Manhattan,Financial District,40.71002,-74.00723,Private room,98,3,0,,,1,0 +9517488,Studio in the fabulous West Village,31248442,Hayley Lynn,Manhattan,West Village,40.7347,-74.00784,Entire home/apt,150,2,1,2018-05-21,0.07,1,0 +9519514,NYC Town House,3338222,Damian,Manhattan,West Village,40.73837,-74.00586,Entire home/apt,1200,6,1,2019-01-04,0.16,1,290 +9520489,Furnished 2 bed | 2 bath w/ views,14466771,Michael,Manhattan,Battery Park City,40.70702,-74.01676,Entire home/apt,300,180,0,,,1,0 +9521009,Amazing loft in East Williamsburg,34066586,Alessandro,Brooklyn,Williamsburg,40.70501,-73.93738,Private room,55,14,0,,,1,0 +9521704,Cute apartment in East Village,14391637,Maxime,Manhattan,East Village,40.72286,-73.9834,Entire home/apt,200,1,3,2016-01-02,0.07,1,0 +9522763,Chic and beautiful apt by the park!,1216362,Camila,Brooklyn,Prospect-Lefferts Gardens,40.65497,-73.96169,Entire home/apt,140,2,45,2019-06-23,1.08,4,345 +9523488,Welcome to Williamsburg,19733878,Sabrina,Brooklyn,Williamsburg,40.71018,-73.95488,Entire home/apt,110,3,4,2017-01-01,0.11,1,0 +9523761,NYC Great View&Private Bathroom,39072477,Yujie,Manhattan,Roosevelt Island,40.76689,-73.94564,Private room,80,10,2,2015-12-21,0.05,1,0 +9524033,Cozy UWS private room,37606128,Kristin,Manhattan,Harlem,40.80319,-73.95432,Private room,60,1,6,2016-07-04,0.14,1,0 +9525241,Clean & Quiet 1br @ Chelsea/Village,2787066,Nate,Manhattan,Chelsea,40.73945,-73.99616,Entire home/apt,126,4,8,2017-05-18,0.18,1,0 +9525335,"Single Bedroom in West Harlem, NYC",49347979,Matthew,Manhattan,Harlem,40.81376,-73.95321,Private room,55,1,2,2015-12-25,0.05,1,0 +9525490,Charming East Village Brownstone,41094794,Benjamin,Manhattan,East Village,40.72826,-73.98871,Entire home/apt,325,3,2,2016-01-03,0.05,1,0 +9525925,Brooklyn Best - Sunny&Spacious Apt,8702561,Kat,Brooklyn,Fort Greene,40.69027,-73.97847,Entire home/apt,140,90,78,2019-05-16,1.83,1,126 +9527309,Sunny Bushwick Room with Balcony,5341236,Christina,Brooklyn,Bushwick,40.69745,-73.92527,Private room,50,2,30,2018-11-07,0.68,2,0 +9528920,"Quiet, Clean, Lit @ LES & Chinatown",3906464,Amy,Manhattan,Lower East Side,40.71355,-73.98507,Private room,9999,99,6,2016-01-01,0.14,1,83 +9529332,Flat in Historic Fort Greene Home,49364392,Michou,Brooklyn,Fort Greene,40.69093,-73.97046,Entire home/apt,186,3,104,2019-06-20,2.52,1,249 +9529493,Large hip open-space loft,1461344,Adam,Brooklyn,Williamsburg,40.71218,-73.95766,Entire home/apt,245,3,20,2019-07-01,0.46,1,128 +9529607,Soho/Little Italy Privat Room for 2,43333475,Jp,Manhattan,Nolita,40.72132,-73.99708,Private room,150,1,3,2019-04-02,0.90,1,178 +9529662,Room #1 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79735,-73.93386,Private room,99,2,80,2019-06-23,1.83,4,158 +9530079,Posh Upper West 2 BR w/ Doorman,49367316,Tara,Manhattan,Morningside Heights,40.80542,-73.9623,Entire home/apt,290,5,0,,,1,0 +9530293,Private Room in Sunny & Spacious WaHi Retreat,21100276,Cory,Manhattan,Washington Heights,40.85617,-73.93141,Private room,43,4,70,2019-03-07,1.61,1,0 +9530381,Suite #2 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79823,-73.9326,Private room,85,2,155,2019-06-12,3.55,4,141 +9530515,Room #4 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79886,-73.93373,Private room,95,2,169,2019-06-30,3.87,4,166 +9531148,5* Columbus Circle Location*5168,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.76941,-73.98162,Entire home/apt,180,30,1,2016-01-09,0.02,96,280 +9531437,Room in Seaport (Financial District,4455698,Pierre,Manhattan,Two Bridges,40.70889,-73.99964,Private room,100,20,2,2019-05-10,0.25,3,330 +9532048,Adorable light-filled room in BK,485349,Delna,Brooklyn,Crown Heights,40.67483,-73.94697,Private room,40,1,0,,,1,0 +9532665,Studio apartment by Central Park,49379520,Taylor,Manhattan,Upper West Side,40.78572,-73.97036,Entire home/apt,129,1,0,,,1,0 +9533058,Spacious Apartment Steps From Park,24120376,Warren,Brooklyn,Greenpoint,40.72484,-73.94307,Entire home/apt,130,4,1,2017-04-10,0.04,1,0 +9533144,"Beautifully renovated, spacious 2br",12260878,Konstans,Queens,Astoria,40.75762,-73.9144,Entire home/apt,280,2,0,,,1,0 +9534327,Elegant Spacious Brownstone Apt,12449641,Heather,Brooklyn,Bedford-Stuyvesant,40.68216,-73.93178,Entire home/apt,165,10,0,,,2,0 +9538618,"Sunny, Cozy, Modern and Spacious Prospect Heights",396819,Sandy,Brooklyn,Prospect Heights,40.67413,-73.96497,Entire home/apt,100,3,4,2017-03-07,0.13,1,0 +9539912,1BDRM 25 min subway to Times sq,49411357,Viacheslav,Queens,Forest Hills,40.71425,-73.84503,Entire home/apt,100,14,0,,,1,0 +9540193,Washington Heights 1 bedroom beauty,49412548,Laiona,Manhattan,Washington Heights,40.84335,-73.94059,Entire home/apt,85,1,28,2019-05-25,0.65,1,27 +9540414,Cozy Carroll Gardens Ground Floor Apartment,2027404,Kat And Chris,Brooklyn,Carroll Gardens,40.68048,-73.99379,Entire home/apt,160,7,46,2019-06-19,1.06,1,254 +9540974,Great room in PERFECT location,6904334,Francisco,Manhattan,Chelsea,40.74556,-74.00156,Private room,195,2,0,,,1,0 +9541017,Das Haus: our cozy NYC home,55480,Erin,Queens,Long Island City,40.76227,-73.93034,Entire home/apt,150,1,0,,,1,0 +9541320,Gorgeous BK Apt steps from Barcalys,19698371,Ben,Brooklyn,Gowanus,40.68068,-73.98186,Entire home/apt,63,5,2,2019-01-04,0.05,1,0 +9541753,2 Bedroom Prospect Heights Hideaway,11460541,Nick,Brooklyn,Prospect Heights,40.67939,-73.96631,Entire home/apt,60,1,1,2016-06-22,0.03,1,0 +9541921,Clean & Convenient Room in UES,13262455,Bridget,Manhattan,Upper East Side,40.7709,-73.95561,Private room,95,5,1,2016-09-15,0.03,3,0 +9542259,Clean and Bright (READ NOTES),13778440,Cinthia,Manhattan,Washington Heights,40.85256,-73.93598,Private room,50,2,95,2019-06-23,2.19,1,315 +9542827,BIG room with bath & balcony in BK!,2966628,Mike,Brooklyn,Bedford-Stuyvesant,40.68795,-73.94173,Private room,59,1,2,2016-01-01,0.05,1,0 +9543557,Modern Williamsburg Apartment,48498097,Benjamin,Brooklyn,Williamsburg,40.71849,-73.95212,Entire home/apt,175,3,0,,,1,0 +9543637,Lovely studio in East Village,10681247,Sonja,Manhattan,East Village,40.7229,-73.98414,Entire home/apt,83,3,31,2019-02-16,0.73,1,0 +9543678,"Bay Ridge,Brooklyn 20minutes to NYC",49413208,Sotira,Brooklyn,Fort Hamilton,40.61605,-74.03642,Entire home/apt,80,5,4,2018-10-10,0.10,2,269 +9544242,"Charming 2BD Cozy & Quiet, 6 Train",17888644,Elizabeth,Manhattan,East Harlem,40.78987,-73.9482,Entire home/apt,200,2,39,2019-05-27,1.14,1,19 +9544410,Large 1-bedroom near Times Square (3rd Floor),49015331,Iradj,Manhattan,Hell's Kitchen,40.76103,-73.99001,Entire home/apt,265,2,88,2019-06-28,2.01,2,278 +9544812,Doorman Brand Penthouse 2 bed 2 bath 5207,16098958,Jeremy & Laura,Manhattan,Theater District,40.76251,-73.98552,Entire home/apt,350,30,0,,,96,327 +9544914,"King Bed, Private Room in Crown Heights, Comedian",22423049,Abraham,Brooklyn,Crown Heights,40.67157,-73.94117,Private room,36,2,100,2017-07-31,2.28,1,0 +9545059,private bedroom and private bath,49431548,Isabelle,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95777,Private room,78,1,1,2015-12-03,0.02,1,0 +9545498,Private Room in East Village,40316314,Chris,Manhattan,East Village,40.72363,-73.98234,Private room,80,1,1,2015-11-29,0.02,2,0 +9546039,Found a tree I like so built a nest,49435973,Jason,Brooklyn,Williamsburg,40.70665,-73.93529,Entire home/apt,218,3,102,2019-06-11,2.46,1,171 +9546695,Entire Apt in Trendy Williamsburg!,34000566,Andrew,Brooklyn,Williamsburg,40.71069,-73.95283,Entire home/apt,95,2,0,,,1,0 +9546994,Spacious 1BR in UES townhouse,45595980,Tny,Manhattan,Upper East Side,40.76866,-73.96562,Entire home/apt,130,30,10,2019-01-07,0.41,12,13 +9547361,Charming 1BR in Upper Eastside,45595980,Tny,Manhattan,Upper East Side,40.76719,-73.96565,Entire home/apt,130,30,11,2019-04-29,0.30,12,28 +9547920,Private room in East Williamsburg,24337956,Vince,Brooklyn,Williamsburg,40.70714,-73.93611,Private room,51,1,1,2016-01-05,0.02,1,0 +9548422,Nice Room in Beautiful Clinton Hill,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.69002,-73.96002,Private room,45,12,2,2016-05-04,0.05,3,281 +9548756,Manhattan 1-BR by Grand Central,21188854,Sarah,Manhattan,Midtown,40.75553,-73.97251,Entire home/apt,200,2,0,,,1,0 +9549544,Luxury Suite in Theater District - Midtown NYC,49451877,Sean,Manhattan,Midtown,40.76374,-73.98089,Entire home/apt,350,2,2,2016-12-30,0.05,1,0 +9549937,"Cozy, updated 2 bedroom in Nolita!",24170584,Lauren,Manhattan,Little Italy,40.72011,-73.99729,Entire home/apt,265,1,1,2016-12-10,0.03,2,0 +9550171,"Perfectly located, vibrant studio!",49455312,Jonatan,Manhattan,Upper West Side,40.77472,-73.98323,Entire home/apt,228,2,14,2017-05-21,0.41,1,0 +9550485,Private Bedroom in Heart of Soho,34691404,Noah,Manhattan,SoHo,40.72501,-74.00353,Private room,90,3,2,2016-03-05,0.05,1,0 +9550620,❤️❤️Relaxing Guestroom by a Lovely Park ❤️❤️,48983104,Lily,Queens,Middle Village,40.72058,-73.87493,Private room,60,2,72,2019-04-20,1.68,3,81 +9550714,"Brooklyn Charmer, Close to Everything NYC!",48399349,Lakan,Brooklyn,Downtown Brooklyn,40.69072,-73.99034,Entire home/apt,120,2,1,2016-10-10,0.03,1,0 +9550807,Large Studio-Style Bedroom,21787440,Yi-Chen,Manhattan,Washington Heights,40.84005,-73.93735,Private room,65,1,1,2016-01-01,0.02,2,0 +9550884,Cute basement apartment,1459446,Katie,Brooklyn,Windsor Terrace,40.64801,-73.97562,Private room,90,3,4,2018-11-04,0.09,1,290 +9551417,"Modern 2BR Apt by Central Park, & Subway",49349133,Onur,Manhattan,East Harlem,40.79665,-73.94824,Entire home/apt,225,2,31,2019-06-09,0.70,1,160 +9555648,15 Minutes from Central Park - Studio apartment,23815371,Tina,Queens,Ditmars Steinway,40.78115,-73.90883,Entire home/apt,103,1,126,2019-06-11,3.20,1,245 +9556028,Large 3 BR Greenwich Village Apartment,41863600,Ken,Manhattan,East Village,40.73068,-73.98949,Entire home/apt,500,5,4,2018-12-28,0.22,1,0 +9556983,Private modern room with NYC skyline view,49485109,Spencer,Brooklyn,Bushwick,40.70111,-73.92202,Private room,62,6,18,2019-06-09,0.51,1,4 +9558052,Sunny Room Minutes from the Subway,49489331,Henry,Brooklyn,Crown Heights,40.66528,-73.93293,Private room,45,2,1,2016-01-10,0.02,1,0 +9559239,Stunning 2 story Duplex in SOHO,608275,Helen,Manhattan,Greenwich Village,40.72704,-73.99954,Entire home/apt,300,3,1,2016-01-03,0.02,1,0 +9559335,Designer Duplex - Highline. Brand new mattresses!,49494701,Rand,Manhattan,Chelsea,40.74835,-74.00336,Entire home/apt,299,1,176,2019-06-22,4.02,1,297 +9560034,Huge room in LES townhouse,23854797,Joel,Manhattan,Lower East Side,40.72136,-73.98767,Private room,85,1,1,2016-06-06,0.03,1,0 +9560584,Cozy Room In Chinatown!,17493980,Bridget,Manhattan,Financial District,40.71142,-74.00535,Private room,80,30,0,,,1,67 +9561251,Upper East Side Luxury Rooftop & Doorman Building,49502599,Alisa,Manhattan,Upper East Side,40.76928,-73.96163,Private room,250,1,1,2015-12-13,0.02,1,0 +9561650,AMAZING Clean Location on a budget!,2316568,Rani,Manhattan,East Village,40.72564,-73.98088,Private room,49,1,0,,,1,0 +9562515,Duplex in Historic Fort Greene,253057,Jim,Brooklyn,Fort Greene,40.68965,-73.97169,Entire home/apt,220,55,10,2018-05-07,0.23,1,0 +9562872,"Close to subway, all shops, restaurants!",49509847,Abhilasha Ashiv,Queens,Rego Park,40.72478,-73.85579,Entire home/apt,109,3,88,2019-07-01,2.49,1,357 +9563266,Beautiful cozy LES apartment!,49511227,Alex,Manhattan,Lower East Side,40.71582,-73.98812,Entire home/apt,300,2,60,2019-06-15,1.36,2,118 +9563436,The PERFECT Nolita vacation,7969836,Ohad,Manhattan,SoHo,40.71927,-73.99943,Entire home/apt,300,2,4,2016-06-04,0.09,1,0 +9563529,Clean and spacious apartment,48937383,Sophia,Manhattan,Inwood,40.86458,-73.92883,Private room,90,1,0,,,1,0 +9563868,Downtown Airy Designer Loft,49513668,Jaclyn,Manhattan,Financial District,40.71143,-74.00596,Entire home/apt,289,2,180,2019-06-26,4.13,1,253 +9563873,1 ROOM IN A NEW HOUSE IN QUEENS,49514708,Steve,Queens,Jamaica,40.69009,-73.79555,Private room,37,4,42,2019-07-07,0.98,1,228 +9564986,Super Cozy Room in Floor Through Apartment,5532810,Sandy,Brooklyn,Williamsburg,40.71731,-73.943,Private room,50,2,42,2018-11-24,1.33,2,244 +9571665,Brightly Tucked into Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.71032,-73.95482,Private room,75,3,17,2019-06-09,0.49,3,355 +9572219,-TIMES SQUARE - 19 MinutesBIG ROOM,43298076,Gordon M,Manhattan,Harlem,40.82292,-73.95373,Private room,44,2,12,2019-05-13,0.28,4,45 +9572448,Lovely room in the heart of BK,49482081,Bianca,Brooklyn,Bedford-Stuyvesant,40.69886,-73.94617,Private room,45,1,1,2015-12-10,0.02,1,0 +9573394,Cozy studio in Brooklyn,26787684,Karlee,Brooklyn,Windsor Terrace,40.65863,-73.98435,Entire home/apt,120,2,0,,,1,0 +9573876,Sunny 1 Bedroom Apartment - 2 Cats,49561278,Weijia,Manhattan,Lower East Side,40.71752,-73.99077,Entire home/apt,110,4,1,2016-01-02,0.02,1,0 +9574823,1 Bedroom Loft in Williamsburg,2699292,Eric,Brooklyn,Greenpoint,40.72066,-73.95308,Entire home/apt,195,3,39,2019-06-13,0.94,1,54 +9574936,Convenient Place in Midtown,49566321,Timur,Manhattan,Hell's Kitchen,40.76515,-73.9847,Shared room,100,2,18,2017-04-04,0.41,1,365 +9574953,Beautiful 2BR Apt in Williamsburg,4025647,Eduardo,Brooklyn,Williamsburg,40.71259,-73.96037,Entire home/apt,200,7,3,2019-01-02,0.08,1,216 +9575089,2 Bedroom Private Garden Apartment,48966726,Grace,Brooklyn,Crown Heights,40.66996,-73.94989,Entire home/apt,160,2,35,2019-05-05,0.90,1,8 +9575562,Sunny Apt in the Heart of Brooklyn,23254783,Amanda,Brooklyn,Williamsburg,40.71219,-73.94826,Entire home/apt,115,3,43,2019-07-07,1.03,1,0 +9575567,20 Minutes to Manhattan,7252221,Zhenya,Brooklyn,Flatbush,40.65221,-73.96289,Private room,55,14,5,2019-06-30,0.24,2,21 +9575790,Entire Spacious Apt: LIMITED DATES,43632142,Michael,Queens,Astoria,40.76275,-73.92052,Entire home/apt,150,3,0,,,1,220 +9575809,Huge Space in Clinton Hill,49570763,Colin,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95896,Entire home/apt,70,1,0,,,1,0 +9575903,"Heart of Crown Heights, 15 min to Manhattan",1115741,Stephan,Brooklyn,Crown Heights,40.67228,-73.9573,Entire home/apt,130,30,6,2018-05-19,0.14,1,8 +9575930,Gorgeous 1bd in 2bd Apt. Manhattan,16417917,Karina,Manhattan,Morningside Heights,40.80774,-73.95703,Private room,100,2,17,2019-06-14,0.39,1,0 +9575961,Chelsea / High Line Oasis,69510,Brian,Manhattan,Chelsea,40.7465,-74.0036,Entire home/apt,375,3,0,,,1,0 +9576230,Penthouse Room in Williamsburg,10619345,Max,Brooklyn,Williamsburg,40.7157,-73.96011,Private room,49,1,1,2016-02-15,0.02,1,0 +9576278,NEW CLEAN COMFORTABLE PRIVATE ROOM,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.68664,-73.92318,Private room,49,1,113,2019-06-03,2.89,3,288 +9576478,Angelina,49572701,Vitaliy,Manhattan,Harlem,40.80948,-73.94739,Entire home/apt,245,3,69,2019-06-11,1.61,1,226 +9576812,Spectacular Designer Loft,4562182,Florence,Manhattan,Harlem,40.81246,-73.94506,Entire home/apt,250,30,57,2019-06-27,1.32,4,224 +9577006,Private Bedroom,44620317,Claudia,Queens,Corona,40.73703,-73.85861,Private room,55,2,33,2018-02-19,0.75,4,280 +9577296,1BD in West Village,49577355,J.J.,Manhattan,West Village,40.74029,-74.00578,Entire home/apt,225,2,185,2019-06-21,4.24,1,250 +9577748,Beautiful bedroom w/ private bath,4451240,Eli,Manhattan,Morningside Heights,40.80536,-73.96228,Private room,68,14,1,2016-01-17,0.02,1,0 +9577777,Large 1 BR bright designer gem,1439333,Crystal,Manhattan,West Village,40.73866,-74.00063,Entire home/apt,220,6,79,2019-07-04,1.90,1,81 +9577968,Cozy BR | Private Floor & Terrace,3389541,Tal,Brooklyn,Crown Heights,40.67859,-73.96076,Private room,75,1,117,2019-06-24,2.82,1,96 +9578181,Spacious & Convenient Midtown Apt,19510808,Ding,Manhattan,Murray Hill,40.74755,-73.98054,Entire home/apt,120,2,2,2018-05-20,0.05,1,0 +9578325,"Lovely, Cozy Loft Carroll Gardens",1407251,Ute,Brooklyn,Gowanus,40.67924,-73.98718,Entire home/apt,129,1,120,2019-06-22,2.73,2,275 +9578639,HUGE 2 bed/2 bath in doorman building,2335786,Rom,Manhattan,Upper East Side,40.77919,-73.94733,Entire home/apt,199,4,10,2019-05-05,0.26,1,0 +9578683,Cozy room in the heart of LES,49511227,Alex,Manhattan,Chinatown,40.71668,-73.98954,Private room,92,1,120,2018-03-19,2.74,2,0 +9578848,Amazing apartment Brooklyn Highs,20510488,Apic,Brooklyn,Prospect Heights,40.67748,-73.96469,Entire home/apt,185,5,0,,,1,0 +9579542,Large and Sunny Artistic Apt / City Center,49287218,Misha,Manhattan,Hell's Kitchen,40.76661,-73.98439,Entire home/apt,179,2,27,2019-06-23,0.63,1,8 +9580218,Comfy Space in Gramercy/Manhattan,49592958,Jared,Manhattan,Gramercy,40.73684,-73.98194,Private room,80,1,0,,,1,0 +9585027,Cozy Oversized Room - near Park Ave,45632792,Nickie,Manhattan,Kips Bay,40.74231,-73.97697,Private room,80,1,2,2015-12-05,0.05,2,0 +9585339,Sunny 1 BR apt in West Chelsea,49616729,Annie,Manhattan,Chelsea,40.75164,-74.00146,Entire home/apt,100,2,5,2016-04-18,0.12,1,0 +9586086,"Bright, Beautiful House w/ Yard",397900,Kari,Brooklyn,Kensington,40.63984,-73.97197,Entire home/apt,225,4,0,,,1,0 +9586258,PRIVATE COSY ROOM IN BROOKLYN,27065592,Shane,Brooklyn,Clinton Hill,40.68402,-73.96094,Private room,60,1,2,2016-01-02,0.05,1,0 +9587933,Old World in New York with Location! Location!,47933513,Jim,Manhattan,Upper East Side,40.78039,-73.95863,Entire home/apt,166,2,8,2019-05-19,0.39,1,3 +9588196,Cozy & sunny room in Bushwick,4739974,Naomi,Brooklyn,Bushwick,40.70641,-73.92158,Private room,70,4,0,,,1,0 +9588699,"LargeApt 1 BLOCK frm A,C,B,D,2,3",6697886,Mandy,Manhattan,Harlem,40.81613,-73.94546,Private room,63,1,0,,,2,0 +9588828,Comfortable UES 2BDR Apt,49630478,Kaitlyn,Manhattan,Upper East Side,40.78007,-73.94677,Entire home/apt,115,4,1,2015-12-29,0.02,1,0 +9588992,One Bedroom for Rent,9910378,Donna,Brooklyn,Bushwick,40.69276,-73.92493,Private room,65,14,0,,,1,0 +9589030,Modern+cozy room in Bushwick,10061428,Wipawe,Brooklyn,Bushwick,40.69911,-73.92441,Private room,55,1,6,2016-08-20,0.14,1,0 +9589086,Modern Duplex Apt with courtyard!,21086012,Babak,Brooklyn,Bedford-Stuyvesant,40.69422,-73.94616,Private room,76,1,4,2016-08-22,0.09,1,0 +9589179,Nolita 1br near Little Italy/SoHo,6312670,Kevin,Manhattan,Nolita,40.72097,-73.99605,Entire home/apt,140,20,1,2015-12-30,0.02,1,0 +9590519,Fun Spacious Midtown Apt near U.N. & Central Park,49383811,Christian,Manhattan,Midtown,40.75435,-73.96729,Entire home/apt,150,1,142,2019-06-25,3.52,1,58 +9590866,Amazing 1bd in the heart of NYC!!!,49641082,Gary,Manhattan,Harlem,40.81872,-73.94491,Private room,39,1,0,,,1,0 +9591852,Soho Greenwich Village 3+ BDR Duplx,49645950,Karen,Manhattan,SoHo,40.72546,-74.00036,Entire home/apt,450,3,12,2019-04-27,0.28,2,3 +9591913,"New Studio, 10 mn to Manhattan, Clinton Hill",34503055,Chrystelle,Brooklyn,Clinton Hill,40.68275,-73.96705,Entire home/apt,105,14,9,2019-02-03,0.21,1,285 +9592655,Spacious Room (Double Bed/Sofa Bed),49649740,Jd,Manhattan,Harlem,40.81026,-73.95279,Private room,80,5,0,,,1,0 +9592781,Overlooking Fort Greene Park,12982906,Kate,Brooklyn,Fort Greene,40.69338,-73.97322,Entire home/apt,110,3,19,2019-06-17,0.44,3,0 +9593093,Beautiful Spacious Apt In Harlem,49651648,Morgan,Manhattan,Harlem,40.80196,-73.95261,Private room,75,1,0,,,1,0 +9594892,Beautiful Luxury Soho 2 bedroom,10651357,Jeanne,Manhattan,SoHo,40.72468,-74.00746,Entire home/apt,450,3,2,2016-01-05,0.05,1,0 +9594995,Beautiful private 1BR apt in Harlem,49661200,Alex And Tom,Manhattan,Harlem,40.82458,-73.95038,Entire home/apt,150,1,287,2019-06-21,6.57,1,198 +9595222,Cozy Park Slope Apartment,4397614,Sarah,Brooklyn,Park Slope,40.67809,-73.97324,Entire home/apt,125,1,0,,,1,0 +9595353,Bright 1 Bedroom in 2 BR Apt,49662115,Sherry,Manhattan,Midtown,40.74606,-73.98688,Private room,125,3,0,,,1,0 +9595863,Cozy Private Room in Williamsburg,33906084,Manon,Brooklyn,Williamsburg,40.7171,-73.95273,Entire home/apt,80,4,1,2015-12-23,0.02,1,0 +9596551,Blocks Away From Central Park - NYC,37058836,Andrew,Manhattan,East Harlem,40.79682,-73.94876,Entire home/apt,260,1,1,2016-01-01,0.02,1,0 +9596608,Family friendly upper west side apt,4931159,Rob,Manhattan,Upper West Side,40.7924,-73.97265,Entire home/apt,85,4,17,2019-04-21,0.55,1,0 +9596708,BEAUTIFUL WHITE BEDROOM/TIMES SQUARE/8 AVE,47705853,Katherine,Manhattan,Hell's Kitchen,40.75452,-73.99267,Private room,199,2,93,2019-06-20,2.14,3,232 +9596854,Large Bright 1 bdr in newly renovated building,21498793,Tiffany,Brooklyn,Crown Heights,40.67726,-73.95928,Entire home/apt,135,3,21,2018-12-30,0.56,1,15 +9597031,Cozy Apartment 20 min to Manhattan!,49671297,Kujtim,Queens,Ridgewood,40.70777,-73.898,Entire home/apt,100,3,27,2018-08-27,0.63,1,107 +9597111,BEAUTIFUL SMALL BEDROOM/TIMES SQUARE/8 AVENUE,47705853,Katherine,Manhattan,Hell's Kitchen,40.75429,-73.99198,Private room,99,2,5,2018-10-02,0.11,3,252 +9597258,Cozy and affordable room.,32379616,Fabiola,Bronx,Williamsbridge,40.88165,-73.85625,Private room,34,5,17,2019-05-31,0.40,2,313 +9597325,Perfect Studio in Brooklyn/Queens,2736439,Cindy & Jeremy,Queens,Maspeth,40.71382,-73.91282,Entire home/apt,89,3,54,2019-06-19,1.26,1,331 +9597627,Beautiful Room - 20 min. to Lower Manhattan,37450458,Olivia,Brooklyn,Bedford-Stuyvesant,40.68125,-73.91272,Private room,77,1,118,2019-06-30,2.74,2,216 +9597629,Lovely Park Slope Bklyn Brownstone,24951732,Anne,Brooklyn,South Slope,40.66519,-73.98264,Entire home/apt,350,2,0,,,1,0 +9602518,Beautifully Private Brooklyn Apt,11491789,Neev,Brooklyn,Williamsburg,40.70721,-73.93957,Entire home/apt,190,4,64,2019-05-21,1.54,1,159 +9603611,Light-filled Artist Loft in the heart of Bushwick,47710992,Emilie,Brooklyn,Bushwick,40.70831,-73.92095,Entire home/apt,115,2,9,2017-12-10,0.27,1,1 +9603803,Brooklyn Charm,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68777,-73.9387,Private room,40,2,5,2019-04-08,0.12,4,87 +9603991,Homely Apartment For The Holidays!!,6725302,Nancy,Manhattan,Hell's Kitchen,40.76769,-73.988,Entire home/apt,200,2,0,,,1,0 +9605039,"Sunny, Clean One bedroom!",2513586,Marguerite,Manhattan,Upper East Side,40.78495,-73.9503,Entire home/apt,135,7,1,2016-01-01,0.02,1,0 +9606832,HIP MODERN 2BR1b Williamsburg/Grnpt,49709755,Julianna,Brooklyn,Greenpoint,40.72304,-73.95239,Entire home/apt,135,1,0,,,1,0 +9607482,Cozy Studio in Midtown East,36380016,Eman,Manhattan,Midtown,40.7532,-73.96711,Entire home/apt,99,1,7,2016-01-27,0.16,1,0 +9607855,Beautiful apt in Soho,46222477,Karoliina,Manhattan,SoHo,40.7261,-74.00281,Entire home/apt,145,2,61,2017-10-30,1.40,1,0 +9607952,Extra large downtown apartment,6590142,C,Manhattan,Financial District,40.70835,-74.00702,Entire home/apt,349,2,5,2016-07-23,0.13,1,0 +9607995,Cozy 3 BD in NYC's East Village,45100854,Will & Tash,Manhattan,East Village,40.72401,-73.98061,Private room,75,5,4,2017-02-22,0.09,2,0 +9609049,Modern Apt in Williamsburg-roofdeck,2816129,Anne-Laure,Brooklyn,Greenpoint,40.71984,-73.95386,Entire home/apt,200,4,25,2019-05-26,0.58,1,6 +9609246,Private bedroom w/Terrace,49720830,Sarah,Manhattan,Murray Hill,40.74899,-73.97301,Private room,119,1,1,2015-12-31,0.02,1,0 +9609762,Room on the UWS (near Columbia U),9144442,Samantha,Manhattan,Upper West Side,40.80219,-73.96618,Private room,65,3,9,2016-12-31,0.21,1,0 +9609800,"*Huge, Clean & Spacious Stay in NYC*",12651062,Adam,Manhattan,Washington Heights,40.83625,-73.93753,Private room,50,3,2,2018-09-17,0.05,1,5 +9609825,Chelsea 1 BR - Brand New Apartment,27158859,Harrison,Manhattan,Chelsea,40.74761,-73.99761,Entire home/apt,199,4,15,2017-09-15,0.38,1,0 +9610704,Private Room in the West Village,15337454,Henriette,Manhattan,West Village,40.73436,-73.99994,Private room,80,1,1,2016-01-05,0.02,1,0 +9610982,A private room in an apartment,47511212,Aanchal,Manhattan,Morningside Heights,40.80508,-73.96262,Private room,55,2,4,2016-05-11,0.09,1,0 +9611121,Penthouse in Crown Heights,1192413,Yoav,Brooklyn,Crown Heights,40.66909,-73.95144,Entire home/apt,99,1,0,,,1,0 +9611372,Bright space in beautiful area,5238157,Jessica,Brooklyn,Carroll Gardens,40.68002,-73.99626,Entire home/apt,125,1,5,2016-09-05,0.12,1,0 +9611586,Modern Minimal Central Chelsea Loft,8797100,Adam,Manhattan,Chelsea,40.74361,-73.99503,Entire home/apt,235,4,107,2019-06-23,2.98,1,27 +9612260,Lovely Brooklyn Apt,8871082,Houston,Brooklyn,Carroll Gardens,40.6776,-74.0014,Entire home/apt,110,5,1,2016-07-02,0.03,1,0 +9612938,Studio apt in Historic House Museum,49736436,George,Manhattan,Washington Heights,40.83549,-73.93968,Entire home/apt,120,3,10,2019-07-01,0.70,2,244 +9613369,Beautiful studio - Upper West Side,49737913,Jacqueline,Manhattan,Upper West Side,40.78095,-73.98178,Entire home/apt,195,3,1,2015-12-22,0.02,1,0 +9613465,Central Park - Cozy Room for 2,37626481,Lugao,Manhattan,Upper West Side,40.79622,-73.97059,Private room,109,1,113,2019-06-30,2.58,2,197 +9613541,Open Room for December,49738780,Katie,Queens,Astoria,40.77211,-73.92055,Private room,100,1,0,,,1,0 +9613626,Clean & Simple Brooklyn Bedroom,7371085,Alisha,Brooklyn,Williamsburg,40.70436,-73.93225,Private room,55,7,2,2016-01-02,0.05,1,0 +9614378,"Hip, Young & Fabulous Midtown",49742527,Lumduan,Manhattan,Midtown,40.75246,-73.97171,Entire home/apt,150,4,76,2019-06-21,1.79,1,299 +9614552,Huge brownstone apt. on cute block!,766920,Archie,Brooklyn,Carroll Gardens,40.68316,-73.99775,Entire home/apt,100,2,4,2016-04-18,0.09,1,0 +9614672,Beautiful Apartment Hells Kitchen,7534128,Kevin,Manhattan,Hell's Kitchen,40.76406,-73.98705,Entire home/apt,450,1,0,,,1,0 +9614785,Serene in Sunset,6040624,Dan,Brooklyn,Sunset Park,40.6454,-74.00782,Entire home/apt,155,1,138,2019-06-22,3.14,1,225 +9614933,Prime location Williamsburg Apt,32971323,Shivangi,Brooklyn,Williamsburg,40.70863,-73.95328,Private room,80,14,0,,,1,0 +9614969,Cozy Room in East Harlem,49673620,Vanessa,Manhattan,East Harlem,40.79651,-73.93184,Private room,60,3,10,2019-01-02,0.23,1,0 +9615209,Cozy Studio in Luxury Building LIC,49746656,Elva,Queens,Long Island City,40.74572,-73.95679,Entire home/apt,85,5,1,2016-08-13,0.03,1,0 +9615417,"Private BRoom ,Bathroom & backyard",6628233,Maia,Brooklyn,Bedford-Stuyvesant,40.68534,-73.95533,Private room,90,4,0,,,1,0 +9615485,Spacious private bedroom 1 stop to Manhattan,35320945,Peggy,Manhattan,Roosevelt Island,40.76108,-73.95058,Private room,70,2,5,2017-03-25,0.14,1,0 +9615727,Slice of paradise in Bushwick!,3501254,Brett,Brooklyn,Bushwick,40.70393,-73.9284,Private room,50,5,1,2016-01-06,0.02,1,66 +9615815,Sunny and Cozy apt in Midtown,16396714,Andrea,Manhattan,Kips Bay,40.74054,-73.97626,Entire home/apt,120,3,1,2017-07-08,0.04,3,0 +9616453,Room next to Columbia University,49753169,Juan Luis,Manhattan,Morningside Heights,40.80838,-73.95995,Private room,75,2,1,2016-01-06,0.02,1,0 +9616729,cute and cozy room in brooklyn,49754509,Ornella,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95057,Private room,31,2,1,2015-12-30,0.02,1,0 +9617219,Studio One Deluxe Private Room (private bathroom),47784768,Yemi,Brooklyn,Brownsville,40.66374,-73.91733,Private room,79,2,70,2019-06-23,1.60,2,253 +9618477,Warm Warm Wooded Quiet City Escape,38284667,Ruth,Manhattan,East Village,40.72888,-73.98193,Entire home/apt,160,160,2,2015-12-14,0.05,2,363 +9618986,1 Bedrom Apt(One Block From Subway),49764808,Danielle,Brooklyn,Bedford-Stuyvesant,40.67695,-73.91567,Entire home/apt,99,2,96,2019-06-23,2.50,2,357 +9619848,Beautiful apt 2 blocks from Central Park,1509237,Leandro,Manhattan,East Harlem,40.79686,-73.9459,Entire home/apt,199,2,5,2019-05-02,0.12,2,177 +9623722,One of a Kind Duplex Garden Apt,518931,Amal,Manhattan,Harlem,40.80263,-73.94662,Entire home/apt,260,3,38,2019-07-02,0.94,1,296 +9624177,Great modern apt in Williamsburg,623474,Bridget,Brooklyn,Williamsburg,40.70983,-73.96494,Entire home/apt,200,6,0,,,1,0 +9625266,West 57th Street in Manhattan,41702722,Pür,Manhattan,Midtown,40.76278,-73.97443,Entire home/apt,395,7,0,,,1,0 +9625826,Home Sweet Home in Brooklyn,11497855,Lina,Brooklyn,Prospect-Lefferts Gardens,40.66145,-73.96005,Private room,65,10,1,2016-01-12,0.02,1,0 +9625926,2 bedroom in Cobble Hill,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68406,-73.99156,Entire home/apt,219,2,0,,,2,0 +9627513,Cozy 4br in the heart of Harlem,36792245,Kilandra,Manhattan,Harlem,40.80272,-73.95564,Private room,60,2,8,2016-08-22,0.19,1,0 +9628471,Peaceful Brooklyn Sancutary,2247187,Simone,Brooklyn,Bedford-Stuyvesant,40.68545,-73.95883,Private room,45,25,1,2018-01-02,0.05,1,19 +9630295,Beautiful Bed Stuy Brownstone Subl,49807145,Eric,Brooklyn,Bedford-Stuyvesant,40.68379,-73.94648,Private room,60,60,34,2018-08-02,0.79,1,189 +9630342,Quiet Studio in Prime East Village,49807312,Ryan,Manhattan,East Village,40.72554,-73.9838,Entire home/apt,107,3,19,2019-06-23,0.44,1,72 +9631380,Doorman Laundry Large Studio 5195,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7659,-73.98674,Entire home/apt,230,30,1,2018-10-31,0.12,96,281 +9631464,Doorman Swim. Pool 2 bed 2bath!5126,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79509,-73.96649,Entire home/apt,288,30,0,,,96,311 +9633119,Feel.Like.A.Local in Williamsburg,47640633,Murat,Brooklyn,Williamsburg,40.71621,-73.93941,Private room,50,7,0,,,1,0 +9633323,EmpireStateView one bedroom apart,23312516,Vera,Queens,Astoria,40.75697,-73.91847,Entire home/apt,130,3,39,2019-06-30,0.89,1,331 +9633740,1 Bedroom within Full Apartment,6753765,Austin,Manhattan,East Village,40.72422,-73.98465,Shared room,85,2,2,2017-01-04,0.05,3,0 +9633920,"Sunny, quiet, minimalist 1 bdrm apt in Brooklyn",7631412,Amy,Brooklyn,Crown Heights,40.66426,-73.94758,Entire home/apt,80,2,18,2019-05-27,0.42,1,0 +9634829,Spacious 1bd in 2bd Harlem/UWS Area,12298772,Harrison,Manhattan,Harlem,40.80464,-73.95637,Private room,84,2,3,2016-05-21,0.07,1,0 +9634880,"Spacious, private living + bedroom in BedStuy",18330683,Iris,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93015,Private room,63,3,15,2018-09-16,0.35,1,0 +9635223,Beautiful Red Brick Room,49827772,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91944,Private room,45,2,1,2016-01-02,0.02,1,0 +9635607,Suite Oasis - Luxurious & Cozy Apt,49831860,Robert,Brooklyn,Canarsie,40.6424,-73.91275,Entire home/apt,125,2,172,2019-06-23,4.01,2,155 +9635880,Private room in Lux Boho Loft,49742862,Angela,Brooklyn,Greenpoint,40.73168,-73.95829,Private room,160,2,5,2018-03-31,0.12,2,0 +9635981,Sweet apt by Prospect Park - 20 minutes from NYC,298841,Ella,Brooklyn,Windsor Terrace,40.65992,-73.98403,Private room,63,2,22,2019-05-14,0.51,1,48 +9637937,Art Lovers Lower East Side 2bedroom,24298532,Brian,Manhattan,Lower East Side,40.72043,-73.98916,Private room,125,1,85,2019-06-29,2.23,1,335 +9644430,Cosy room in a sunny Brooklyn flat,11132113,Arno,Brooklyn,Bedford-Stuyvesant,40.68673,-73.95829,Private room,45,3,1,2016-01-09,0.02,1,0 +9644961,Amazing loft in Williamsburg,7897771,Nour,Brooklyn,Williamsburg,40.71769,-73.9544,Private room,115,3,3,2016-01-26,0.07,1,0 +9645073,Downtown Manhattan Modern Gem!!,49808435,Alexandra,Manhattan,Gramercy,40.73857,-73.98335,Entire home/apt,269,3,145,2019-06-20,3.31,1,110 +9645338,Lovely room in prime Crown Heights,14965776,Kyra,Brooklyn,Crown Heights,40.66931,-73.9555,Private room,55,5,5,2017-08-04,0.12,1,0 +9645768,Prime West village studio apartment,49873719,Jil,Manhattan,West Village,40.72941,-74.00481,Entire home/apt,150,7,0,,,1,0 +9645934,Great NYC Apt in Forest Hills,2204011,Beto,Queens,Forest Hills,40.71322,-73.83493,Entire home/apt,100,4,11,2019-01-15,0.31,1,15 +9646346,Large 1 Bed Apartment East Village,18668835,Elaine,Manhattan,East Village,40.7233,-73.98819,Entire home/apt,190,1,0,,,1,0 +9646874,"Cozy, bohemian, modern oasis",1120455,Shetal,Brooklyn,Greenpoint,40.72798,-73.95038,Entire home/apt,150,7,0,,,1,0 +9647235,Excellent condition condo Apt,49879147,Rohit,Queens,Forest Hills,40.7276,-73.85183,Private room,75,1,0,,,1,0 +9647450,Be Comfy Loft Bedroom,47341341,Imad,Brooklyn,Midwood,40.61952,-73.96928,Private room,59,28,2,2015-12-09,0.05,1,365 +9649558,Sunny with 2 large bedrooms,48576700,Ayanna,Brooklyn,Clinton Hill,40.69347,-73.967,Entire home/apt,173,2,179,2019-06-15,4.18,2,228 +9652170,Best Location in S. Williamsburg,49898234,Lemuel,Brooklyn,Williamsburg,40.71205,-73.95787,Private room,60,7,0,,,1,0 +9652365,Sunny Room in Design Loft - Heart of Greenpoint,16356851,Sophia,Brooklyn,Greenpoint,40.73419,-73.95905,Private room,115,5,24,2019-05-19,0.56,2,179 +9652413,1 Bedroom Near Columbia/Morningside,17065519,Chelsea,Manhattan,Harlem,40.80407,-73.95762,Entire home/apt,89,1,1,2015-12-26,0.02,1,0 +9652438,"Private room in Bushwick, Brooklyn",8308648,Kristina,Brooklyn,Bushwick,40.68781,-73.91695,Private room,70,1,5,2018-07-09,0.14,2,0 +9652591,Cozy comfort minutes to Manhattan!,22855974,Lauren + Reggie,Queens,Astoria,40.76561,-73.9248,Private room,89,2,53,2019-06-30,1.33,1,39 +9652949,REALLY HUGE&COZY ROOM ASTORIA 10 MIN TO MANHATTAN,433207,Maryann,Queens,Astoria,40.76112,-73.9146,Private room,60,1,150,2019-06-17,3.75,2,179 +9653005,Lovely apartment near Prospect Park,4878479,Patrik,Brooklyn,Crown Heights,40.67629,-73.96208,Entire home/apt,130,5,0,,,1,0 +9654190,Central Park/Museum of Natural Hist,49907738,Ashley,Manhattan,Upper West Side,40.78494,-73.97663,Entire home/apt,400,1,2,2015-12-26,0.05,1,0 +9660635,Brownstone!- 15 min to Manhattan!!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92369,Entire home/apt,90,4,8,2019-03-25,0.19,4,0 +9660751,1 BR in heart of East Village,45166068,Derrick,Manhattan,East Village,40.72316,-73.9844,Entire home/apt,200,2,8,2017-01-01,0.19,1,188 +9662070,Large private bedroom in bushwick,506208,Erin,Brooklyn,Bushwick,40.70435,-73.91646,Private room,65,1,2,2016-07-24,0.06,1,0 +9663062,Location Eden,3250450,Petya,Queens,Astoria,40.75806,-73.91345,Private room,43,30,3,2018-11-07,0.08,18,310 +9664497,Room in Modern Brooklyn Apartment,32173907,Oliver,Brooklyn,Bushwick,40.70433,-73.92652,Private room,55,3,6,2017-04-14,0.14,1,0 +9665709,Spacious 1 BR apartment,49951208,Steven,Queens,Long Island City,40.74391,-73.95461,Entire home/apt,120,2,0,,,1,0 +9668485,Private BR+Bath Near Central Park,49963831,Mariella,Manhattan,East Harlem,40.79479,-73.94919,Private room,110,1,123,2019-06-10,3.07,1,264 +9668948,Huge affordable studio in Wash Hts,13197498,Tazo,Manhattan,Washington Heights,40.85,-73.93797,Entire home/apt,95,7,0,,,1,0 +9669305,Mid Nolita Soho Lit. Italy Village,49967558,Joao,Manhattan,NoHo,40.72459,-73.99366,Entire home/apt,145,1,3,2016-01-01,0.07,1,0 +9670233,3 Bed - 3 Bath East Village Oasis w Private Patio,49970809,Enzo,Manhattan,East Village,40.72846,-73.98987,Entire home/apt,550,1,141,2019-07-01,3.29,1,302 +9674142,1 bed in Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76768,-73.90986,Private room,59,1,156,2019-07-02,3.59,4,208 +9674453,ENTIRE Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76923,-73.91203,Entire home/apt,239,3,8,2019-01-02,0.19,4,274 +9674869,Cozy room in Chic Apt Astoria NY,49620552,Raul,Queens,Astoria,40.76933,-73.91164,Private room,49,1,14,2019-06-16,0.32,4,89 +9674880,"Large bright room,near Times Square",30312537,Mounia,Manhattan,Hell's Kitchen,40.7608,-73.9947,Private room,95,3,0,,,1,0 +9675061,Cozy 1 BR on the Upper East Side,23048845,Carolin,Manhattan,Upper East Side,40.7718,-73.94916,Entire home/apt,160,2,0,,,1,0 +9675064,"Clean Quiet 2 Bedroom Apartment, Private",49991005,Petrona,Brooklyn,Canarsie,40.63013,-73.90809,Entire home/apt,90,2,214,2019-06-08,4.89,1,82 +9675609,HUGE sunny room in Williamsburg-2 min from L train,5480274,Mia,Brooklyn,Williamsburg,40.70997,-73.94297,Private room,80,2,9,2017-11-06,0.41,1,0 +9676482,Sunny Loft Apartment 5 min. Walk to Pratt! #01401,9966670,Gene,Brooklyn,Bedford-Stuyvesant,40.68986,-73.95892,Entire home/apt,125,3,42,2019-07-02,0.98,1,226 +9676890,Spacious Room available,1387286,Felicia,Brooklyn,Williamsburg,40.70796,-73.95035,Private room,65,1,1,2016-04-02,0.03,2,0 +9677744,Affordable Studio next to Subway,50001302,David,Manhattan,Harlem,40.82476,-73.9438,Entire home/apt,77,4,63,2018-04-16,1.56,1,0 +9677912,"3 BR 2 BA Brownstone Duplex, Yard, sleeps 6, W/E +",50001799,Halona,Brooklyn,Bedford-Stuyvesant,40.69218,-73.93574,Entire home/apt,220,2,26,2019-06-30,0.61,1,8 +9678112,Entire 2 bed apartment in Prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71462,-73.94641,Entire home/apt,150,40,4,2018-07-21,0.16,2,0 +9678327,Bright Williamsburg Apartment,5731898,Sofia,Brooklyn,Williamsburg,40.71,-73.95507,Private room,200,5,8,2017-08-28,0.19,2,0 +9678488,Studio in the Heart of WVillage,50003858,Michael,Manhattan,West Village,40.73702,-74.00633,Entire home/apt,200,1,5,2017-04-16,0.12,1,0 +9678870,Sunny Heart of Park Slope 1 Bedroom,50005319,Chris,Brooklyn,Park Slope,40.67632,-73.98116,Entire home/apt,160,4,0,,,1,0 +9679058,Private bedroom in Williamsburg,5731898,Sofia,Brooklyn,Williamsburg,40.70794,-73.9566,Private room,90,3,28,2017-12-10,0.65,2,0 +9679278,Our Unique 3br Home in Bushwick,50006995,Josh And Amanda,Brooklyn,Bushwick,40.7005,-73.92814,Entire home/apt,230,1,1,2016-01-05,0.02,1,0 +9679289,"Entire Large Basement, very quiet.",50006975,William,Brooklyn,Bushwick,40.70633,-73.92231,Private room,55,1,1,2016-01-05,0.02,1,0 +9679310,Two Large Rooms in Union Sq Duplex,25165109,Alex,Manhattan,Gramercy,40.73429,-73.98689,Private room,160,2,1,2015-12-13,0.02,1,0 +9679337,Huge private room in the heart of Williamsburg,4369380,Emmanuel,Brooklyn,Williamsburg,40.71436,-73.95421,Private room,46,3,11,2017-05-22,0.26,1,0 +9679935,"Wyndham Resort Midtown 45 NYC Studio Sep 1-4, 2019",24199235,Dar,Manhattan,Midtown,40.75328,-73.97212,Private room,224,3,0,,,1,3 +9682617,mid century modern apartment,50015739,Anne,Manhattan,Murray Hill,40.74695,-73.98062,Entire home/apt,300,2,13,2017-04-24,0.30,1,0 +9682862,Large Apartment in Manhattan!,50016613,Becky,Manhattan,Harlem,40.8241,-73.95259,Private room,100,3,1,2016-03-28,0.03,1,0 +9682898,Bright room in Williamsburg,17261034,Cillian,Brooklyn,Williamsburg,40.71211,-73.95949,Private room,95,12,1,2017-01-01,0.03,1,0 +9683486,Mater bedroom in Roosevelt Island,39093118,Song,Manhattan,Roosevelt Island,40.75965,-73.95125,Private room,100,1,0,,,1,0 +9683691,Spacious Room + Separate Office,1885068,Joe,Brooklyn,Flatbush,40.65373,-73.95535,Private room,47,1,0,,,1,0 +9684366,"UWS, Big Private Room, CP + Metro!",16024390,M,Manhattan,Upper West Side,40.79499,-73.96631,Private room,139,1,0,,,1,0 +9684503,Big Comfy Bedroom 20 mins from Midtown Manhattan!,50024703,Emily,Queens,Astoria,40.75658,-73.92181,Private room,68,3,6,2017-10-07,0.14,1,0 +9684732,Spacious pre-war apartment in Crown Heights,11054692,Samuel,Brooklyn,Crown Heights,40.66951,-73.94931,Entire home/apt,110,1,0,,,1,0 +9684998,Sunny 1 bedroom in Upper East Side,6115134,Masa,Manhattan,Upper East Side,40.77849,-73.95046,Entire home/apt,112,4,13,2019-03-08,0.30,1,0 +9685104,Beautiful room at nice NYC location,46846064,Frahydel,Manhattan,Roosevelt Island,40.76359,-73.94982,Private room,85,3,32,2018-12-29,0.90,2,0 +9685114,Live in the clouds,33833815,Bradley,Brooklyn,Fort Greene,40.68878,-73.97995,Entire home/apt,450,1,0,,,1,0 +9685158,Awesome East Village Apartment!,28191353,Norah And James,Manhattan,East Village,40.72912,-73.97854,Entire home/apt,390,7,0,,,1,0 +9685213,Winter Sublet 24Dec-18Jan (Midtown),50028109,Kriti,Manhattan,Morningside Heights,40.81109,-73.95904,Private room,55,1,0,,,1,0 +9685865,Pvt Room W/Pvt Bathroom; NO KITCHEN!,50031308,Raj,Brooklyn,Midwood,40.63009,-73.96671,Private room,55,4,47,2019-07-03,1.09,1,304 +9686167,Beautiful Large Bedroom on UWS !!,50032395,Wayne And Yesim,Manhattan,Upper West Side,40.80023,-73.96678,Private room,85,1,7,2016-04-02,0.16,2,188 +9689359,Cozy & Modern ..... 2 Bedroom,50045329,Joann,Brooklyn,Dyker Heights,40.6186,-74.0071,Entire home/apt,160,3,52,2019-06-29,1.20,1,291 +9689477,Large Studio - Lincoln Center,42694270,Thomas,Manhattan,Upper West Side,40.77401,-73.99056,Entire home/apt,155,4,6,2017-08-02,0.14,1,0 +9690687,Huge Brooklyn Apartment,2088995,Padraic,Brooklyn,Flatbush,40.65326,-73.95513,Entire home/apt,70,2,1,2019-04-10,0.33,1,0 +9691204,Spacious / Garden Condo Ft. Greene,50053165,Carina,Brooklyn,Fort Greene,40.68574,-73.97045,Entire home/apt,185,1,1,2015-12-31,0.02,1,0 +9691842,"New, Bright&Spacious cool apartment",38596175,Noa,Brooklyn,Williamsburg,40.71654,-73.94104,Entire home/apt,90,7,0,,,1,0 +9692074,Student apt. 3 minutes from the 1/C,34796316,Tripp,Manhattan,Morningside Heights,40.80562,-73.95978,Private room,200,7,1,2016-01-18,0.02,1,0 +9692090,LES Private Bedroom,9507017,Andrew,Manhattan,Lower East Side,40.71954,-73.99067,Private room,58,10,0,,,1,0 +9692205,East Manhattan (March 10th-18th),42950170,Jenn,Manhattan,East Village,40.72636,-73.98231,Private room,70,4,2,2017-03-10,0.05,1,0 +9692740,Convenient apartment in Manhattan,50013026,Abby,Manhattan,Upper West Side,40.80012,-73.96441,Private room,50,1,2,2015-12-04,0.05,1,0 +9693080,Entire 1BR apartment in NYC,634195,Luis,Queens,Sunnyside,40.74509,-73.9236,Entire home/apt,85,4,2,2016-08-11,0.05,1,0 +9693821,2 Bedroom + Futon - Manhattan,35321358,Collin,Manhattan,East Harlem,40.78626,-73.94295,Entire home/apt,200,6,0,,,1,0 +9694001,West Village Studio Apartment,28422539,Tomas,Manhattan,West Village,40.73713,-74.00059,Entire home/apt,250,7,0,,,1,0 +9694297,Private room in Historic Queens NY,50064597,David,Queens,Woodhaven,40.69472,-73.84856,Private room,45,2,5,2017-08-21,0.12,1,0 +9694633,Renovated Greenpoint Apartment,3245480,Mike,Brooklyn,Greenpoint,40.73154,-73.95485,Entire home/apt,109,4,4,2019-01-01,0.09,1,0 +9695052,Owl's Landing - The Twins,50068597,Alex,Staten Island,Stapleton,40.63573,-74.0772,Private room,48,2,112,2019-07-02,2.60,3,316 +9695552,Comfty 1BR apt in Upper West Side,14651590,Eva,Manhattan,Morningside Heights,40.80462,-73.96074,Entire home/apt,150,7,4,2017-01-04,0.09,1,0 +9696139,BK Oasis- Private 1BD in Heart of Williamsburg,2024620,Anika,Brooklyn,Williamsburg,40.71753,-73.95742,Entire home/apt,350,2,9,2017-09-07,0.27,1,130 +9696307,"Small, cozy studio in the UWS",25499953,Magdalena,Manhattan,Upper West Side,40.80246,-73.96884,Entire home/apt,100,2,1,2016-02-14,0.02,1,0 +9696357,Huge 1BD near Central Park Sleeps 5,48678883,D,Manhattan,Upper East Side,40.76871,-73.95479,Entire home/apt,177,1,136,2019-06-19,3.12,1,258 +9696653,Stylish 1br apt west village,5291029,Qiyao,Manhattan,Greenwich Village,40.73411,-73.99787,Entire home/apt,108,1,111,2019-02-25,2.57,1,0 +9697749,Private bedroom in BedStuy!,43380791,Ali,Brooklyn,Bedford-Stuyvesant,40.68762,-73.92318,Private room,28,10,1,2016-01-06,0.02,1,0 +9697969,East Village 3 Bedroom Apt,50080673,Eric,Manhattan,East Village,40.73033,-73.98788,Private room,101,1,0,,,1,0 +9698613,"1 Bedroom Sublet in Astoria, NY",50084376,Asijah,Queens,Ditmars Steinway,40.77472,-73.90993,Private room,35,1,2,2016-01-05,0.05,1,0 +9698691,"Big 1 Bed, kitchen, living room, TV",50084137,Andrew,Queens,Jackson Heights,40.75251,-73.8898,Entire home/apt,105,7,2,2016-01-31,0.05,1,0 +9698905,Cozy private room w/ensuite bathroom!!,2262706,Shabari,Brooklyn,Carroll Gardens,40.68378,-73.992,Private room,95,1,2,2017-04-23,0.06,1,0 +9698992,-CLEAN ROOM - New Apartment - Manhattan,43298076,Gordon M,Manhattan,Harlem,40.82195,-73.95373,Private room,62,2,24,2019-06-14,0.55,4,97 +9699378,"Spacious, Quiet, 20 steps to subway",24445542,Nicole,Manhattan,Harlem,40.82569,-73.94277,Private room,65,2,0,,,1,0 +9699559,Newly Renovated Midtown Apartment,3655401,Stephen,Manhattan,Kips Bay,40.74106,-73.97818,Entire home/apt,150,3,2,2016-01-02,0.05,1,0 +9703075,2BR in Beautiful Brownstone!!!,38014669,Stephanie,Brooklyn,Bushwick,40.68996,-73.92046,Entire home/apt,113,7,38,2019-05-24,0.94,1,355 +9705782,Spacious Brooklyn Brownstone 3BR+,8144242,Kerry,Brooklyn,Bedford-Stuyvesant,40.68382,-73.95566,Entire home/apt,300,2,24,2017-07-04,0.56,1,0 +9705958,"Comfy, family-friendly BedStuy apt",20007675,Veleda And Orion,Brooklyn,Bedford-Stuyvesant,40.68389,-73.93437,Entire home/apt,65,2,4,2016-01-13,0.09,1,0 +9706724,Cozy Apartment in Crown Heights,50086145,Liam,Brooklyn,Crown Heights,40.66916,-73.95125,Private room,55,2,5,2017-01-01,0.12,1,0 +9707469,"Brooklyn Heights ""Tree House""",7185488,Jeff,Brooklyn,Brooklyn Heights,40.69565,-73.99663,Entire home/apt,150,8,0,,,1,0 +9707498,"Sunny, Quiet Home in Brooklyn's Best Area (Legal)",43438475,Viviana,Brooklyn,South Slope,40.66759,-73.99009,Entire home/apt,120,3,152,2019-06-27,3.60,3,180 +9707531,Bright & Clean 1bed apt *PRIME* LES,35671352,Erin,Manhattan,Lower East Side,40.71941,-73.98534,Entire home/apt,160,1,2,2016-03-20,0.05,1,0 +9707671,Cozy Apartment,14811787,Will,Manhattan,Upper East Side,40.76675,-73.95144,Private room,135,2,10,2019-07-01,0.23,2,339 +9707735,Entire 2 BR Williamsburg Apt (parking/near train),15647614,Lin,Brooklyn,Williamsburg,40.7162,-73.95384,Entire home/apt,175,1,11,2019-05-12,0.36,2,37 +9708577,Miriams Place,50126257,Miriam,Brooklyn,Borough Park,40.63692,-73.99063,Entire home/apt,300,2,51,2019-06-30,2.06,1,297 +9709428,Apt Williamsburg! Perfect location!,40044130,Daniela,Brooklyn,Williamsburg,40.71009,-73.953,Private room,80,6,2,2016-06-13,0.05,1,0 +9709801,Large room,50131208,Rob,Queens,Astoria,40.76994,-73.91841,Private room,40,1,0,,,1,0 +9710169,Doorman 1 bedroom GYM Deck Luxury!5203,16098958,Jeremy & Laura,Manhattan,Midtown,40.76601,-73.97789,Entire home/apt,170,30,1,2017-05-14,0.04,96,332 +9710184,1 br Apt in Washington Heights,20709383,Elena,Manhattan,Washington Heights,40.84504,-73.93658,Entire home/apt,85,90,1,2017-01-08,0.03,1,0 +9710538,Beautiful apartment with a loft.,50132533,Kristy,Bronx,Riverdale,40.88422,-73.90886,Entire home/apt,85,1,0,,,1,0 +9710620,1-bed Apt in Crown Heights,7027191,Matthew,Brooklyn,Crown Heights,40.6773,-73.95001,Entire home/apt,84,10,2,2017-01-22,0.05,1,0 +9711313,Cozy 4BD 2.5BR w/Jacuzzi & Parking,14163805,Michael,Brooklyn,Prospect-Lefferts Gardens,40.66001,-73.94664,Entire home/apt,399,3,129,2019-06-24,3.20,1,237 +9711921,The Archive West Village,30707611,Beth,Manhattan,West Village,40.73123,-74.00684,Entire home/apt,450,1,0,,,1,0 +9712126,••BEST Manhattan Downtown Location!••,9339714,Jessica,Manhattan,Gramercy,40.73304,-73.9843,Entire home/apt,140,3,103,2019-06-24,2.46,2,270 +9712682,Brownstone 1 BR with Huge Backyard,2412806,Amadou,Brooklyn,Fort Greene,40.68792,-73.97904,Entire home/apt,210,2,115,2019-06-21,2.66,1,247 +9712796,Charming Upper West Side 1BR Apt,50143518,Penda And Sebastien,Manhattan,Upper West Side,40.80172,-73.9656,Entire home/apt,135,4,0,,,1,0 +9712829,Light and Airy Loft in Williamsburg,8262339,Michael,Brooklyn,Williamsburg,40.71287,-73.96325,Entire home/apt,200,3,3,2019-05-05,0.42,1,0 +9713045,Lovely and spacious 2BR/2 bath apt,50144728,Cedrick,Manhattan,Harlem,40.80463,-73.95044,Entire home/apt,200,2,148,2019-06-18,3.47,1,0 +9713048,Large Bedstuy/Bushwick Room,50144624,Christian,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93746,Private room,47,2,2,2016-06-10,0.05,1,0 +9713116,Cheerful 1BR Bed-Stuy Apartment with Cat,50144878,Bailey,Brooklyn,Bedford-Stuyvesant,40.68362,-73.94646,Entire home/apt,50,7,1,2016-08-01,0.03,1,0 +9713594,Cozy roof top apartment,11575335,Alejandro,Brooklyn,Crown Heights,40.67762,-73.95764,Private room,95,2,9,2017-09-09,0.21,1,342 +9713626,Meatpacking - Luxury Brownstone,13148824,Ali,Manhattan,Chelsea,40.74186,-74.00528,Entire home/apt,280,2,6,2017-01-01,0.14,1,0 +9713934,Beautiful Apartment in the heart of Brooklyn,16164068,Richard,Brooklyn,Bedford-Stuyvesant,40.68,-73.95526,Private room,50,3,5,2017-05-29,0.13,1,0 +9713997,Extra BR in dreamlike soho loft,1317360,John,Manhattan,SoHo,40.72145,-74.00231,Private room,200,1,16,2019-05-22,0.83,2,365 +9714004,Spacious and Bright Two Bedroom Bedroom Apartment.,50148553,Anna,Manhattan,Theater District,40.76278,-73.98498,Private room,197,3,18,2017-09-08,0.46,1,0 +9714870,Lovely Brooklyn Garden Apt,202665,Joy & Jesse,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95865,Entire home/apt,120,5,4,2017-11-25,0.12,1,0 +9714880,Brooklyn Artist Loft-Style,50152355,Kevin,Brooklyn,Bushwick,40.69715,-73.92243,Entire home/apt,60,14,0,,,1,0 +9715404,1 Bedroom in the Upper East Side,6105861,Shayan,Manhattan,Upper East Side,40.76496,-73.95801,Private room,100,1,0,,,1,0 +9715759,nice small room in upper east side,43198464,Geoffray,Manhattan,Upper East Side,40.7651,-73.95812,Private room,84,1,0,,,1,0 +9715891,"Rooftop, Doorman, Luxury Building",6365575,Samir,Queens,Long Island City,40.74723,-73.94144,Entire home/apt,200,3,0,,,1,0 +9715973,Amazing view midtown studio,50157334,Ada,Manhattan,Kips Bay,40.74285,-73.97468,Entire home/apt,150,5,1,2015-12-27,0.02,1,0 +9716234,Cozy with Great location !!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59878,-73.95425,Shared room,35,1,104,2019-07-08,2.45,5,352 +9716437,Chill Gramercy Flat,956269,Justin,Manhattan,Gramercy,40.73725,-73.98439,Entire home/apt,195,3,19,2019-06-21,0.43,1,34 +9717662,"Serene, Spacious Bedroom in 2BR Apt",4549440,HanJie,Manhattan,Harlem,40.82347,-73.93944,Private room,37,1,0,,,1,0 +9717766,Cozy studio,50165358,Ekaterina,Manhattan,Murray Hill,40.74987,-73.97293,Entire home/apt,200,1,0,,,1,0 +9720768,"Midtown Times Square bright room, private bath",31626212,Troy,Manhattan,Theater District,40.75699,-73.98493,Private room,125,3,141,2019-06-22,3.29,5,226 +9720809,Centrally located Times Square large room,31626212,Troy,Manhattan,Midtown,40.74826,-73.98653,Private room,100,30,2,2019-06-22,2,5,248 +9724452,Small cozy studio WashingtonHeights,45198805,Erika,Manhattan,Washington Heights,40.83288,-73.93821,Entire home/apt,70,1,0,,,1,0 +9725232,"LUX Prospect Park Historic 1BR near 2,5,Q&B trains",290908,Claudia,Brooklyn,Prospect-Lefferts Gardens,40.66195,-73.95275,Entire home/apt,125,6,155,2019-06-24,3.54,1,155 +9725508,"Super Quiet, Your Oasis",16437254,Benjamin,Brooklyn,Boerum Hill,40.68788,-73.98551,Entire home/apt,123,30,10,2019-05-10,0.27,21,246 +9726043,Family apt w/ junglegym-bed for kids,292084,Liliana,Brooklyn,Kensington,40.64463,-73.97057,Entire home/apt,95,7,5,2019-07-05,0.12,1,59 +9726143,"Huge 1-Bedroom, A+ Midtown Location",37803660,Adrienne,Manhattan,Midtown,40.75088,-73.96918,Entire home/apt,199,4,1,2016-01-05,0.02,1,0 +9726720,"Sunny, modern apt on Prospect Park",31543325,David,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.961,Entire home/apt,125,20,0,,,1,0 +9727332,"Bedroom in Brooklyn, NYC",50199816,Meaghan,Brooklyn,Bushwick,40.70168,-73.92593,Private room,45,1,1,2015-12-23,0.02,1,0 +9728168,*Manhattan Luxury Apt - Walk to TSQ,5124437,Anna,Manhattan,Hell's Kitchen,40.76172,-73.99917,Entire home/apt,189,3,4,2015-12-15,0.09,1,0 +9728203,Sunny Room in heart of Crwn Heights,3758471,Stephanie,Brooklyn,Crown Heights,40.6744,-73.95902,Private room,50,2,1,2016-01-02,0.02,2,0 +9728739,Luxury private room near Times Sqr,27163319,Stefano,Manhattan,Hell's Kitchen,40.76444,-73.98728,Private room,120,5,0,,,1,8 +9730117,Carriage House Loft with Fireplace,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68968,-73.95213,Entire home/apt,250,1,11,2018-10-29,0.32,3,365 +9730432,Quiet Apartment in Sunset Park.,50207684,Cyrille,Brooklyn,Sunset Park,40.64962,-74.00028,Entire home/apt,95,3,74,2019-07-01,1.72,1,251 +9730784,Private Space in Lower East Side,1038645,Kim,Manhattan,Lower East Side,40.72133,-73.9877,Private room,140,1,5,2018-05-15,0.12,1,0 +9731039,Studio/Office in heart of Sunnyside,50213378,Mark,Queens,Sunnyside,40.74463,-73.91918,Entire home/apt,99,1,0,,,1,0 +9731134,Peaceful Bohemian Studio,29877911,Saadia,Manhattan,Harlem,40.79989,-73.95213,Entire home/apt,120,30,33,2019-06-01,0.81,1,247 +9731178,Spacious duplex in Bed Stuy,8693741,John,Brooklyn,Bedford-Stuyvesant,40.69616,-73.94737,Private room,35,1,2,2016-06-27,0.05,1,0 +9731739,2BR - TIMES SQUARE - MODERN,34939187,Meredith,Manhattan,Hell's Kitchen,40.76564,-73.98759,Entire home/apt,195,3,30,2016-10-23,0.68,1,0 +9732432,2nd floor bedroom in Bushwick house,14974205,Gabriel,Brooklyn,Bushwick,40.69351,-73.92309,Private room,35,1,1,2016-01-14,0.02,1,0 +9732612,LARGE TRIBECA LOFT WITH ROOF DECK,33624354,Joshua,Manhattan,Tribeca,40.72117,-74.00592,Entire home/apt,250,1,1,2015-12-24,0.02,1,0 +9732834,"Sunny,Cool,Greenpoint apartment...",50220666,Rodin,Brooklyn,Greenpoint,40.72594,-73.95174,Private room,70,7,2,2018-07-14,0.05,1,0 +9733138,Large 1BR with yard in Williamsburg,14800483,Elliot,Brooklyn,Williamsburg,40.71702,-73.94339,Entire home/apt,140,7,0,,,1,0 +9733227,Huge Modern Apartment Williamsburg,4396337,Nicolo,Brooklyn,Williamsburg,40.71964,-73.95538,Entire home/apt,159,28,4,2018-04-30,0.10,1,0 +9733280,"Quiet, 1 Bedroom, Patio, Gramercy",11763414,Ashley,Manhattan,Gramercy,40.73606,-73.98242,Entire home/apt,149,7,13,2018-04-03,0.33,1,0 +9733741,Best Neighborhood Brand New 1 BDRM!,9408069,Maky,Manhattan,Lower East Side,40.72082,-73.98728,Entire home/apt,180,1,130,2019-06-03,2.98,1,328 +9734068,"1 BED ROOM ACCOMMODATION 4, 5 GUEST",50189863,"Manny , Job",Manhattan,East Harlem,40.79566,-73.9448,Entire home/apt,110,1,198,2019-06-23,4.58,1,250 +9735503,Full 1BR+Balcony 17min to Midtown,166014,Matt & Virginia,Queens,Astoria,40.77066,-73.92181,Entire home/apt,100,7,2,2016-08-06,0.05,1,0 +9735931,Private room in spacious apartment,6501582,Gaia,Brooklyn,Crown Heights,40.67693,-73.93234,Private room,50,7,11,2019-05-12,0.26,1,0 +9735957,Unique Duplex Loft Private Roof,49494357,Lindsee And Peter,Manhattan,Nolita,40.72116,-73.9959,Entire home/apt,425,2,23,2019-06-04,0.64,1,54 +9736071,COOL STUDIO IN THE HEART OF MIDTOWN,17870643,Matt,Manhattan,Midtown,40.75843,-73.96265,Entire home/apt,195,1,0,,,1,0 +9736123,Spacious 1BR with river view in the heart of NYC,19135883,Thales,Manhattan,Kips Bay,40.74178,-73.97313,Entire home/apt,260,4,15,2018-10-15,0.35,1,34 +9736227,TIMES SQR 3 BR Modern+NYC Center,9245509,Alex,Manhattan,Hell's Kitchen,40.76,-73.98972,Entire home/apt,499,2,4,2017-01-02,0.09,1,0 +9736600,Furnished Apartment in Morningside,50235395,Nick,Manhattan,Morningside Heights,40.80569,-73.96333,Private room,75,14,0,,,1,0 +9737064,Amazing 2 BR apt in West Village,33075414,Joakim,Manhattan,West Village,40.73053,-74.00297,Entire home/apt,250,3,3,2019-06-03,0.08,1,16 +9737153,Spacious new and luxurious apartment!,267959,Beatriz,Brooklyn,Williamsburg,40.72038,-73.95993,Entire home/apt,350,2,5,2018-01-01,0.12,1,0 +9737362,Spacious 2B apt - KipsBay Manhattan,14786085,Andrew,Manhattan,Kips Bay,40.74302,-73.98098,Entire home/apt,275,5,3,2016-07-30,0.08,1,0 +9737516,Awesome Williamsburg Apartment,9392189,Collin,Brooklyn,Williamsburg,40.71134,-73.95192,Entire home/apt,325,5,0,,,1,0 +9737840,2 Bedrooms & 2 Bathrooms Apt in Hell's Kitchen,40169737,Alex G,Manhattan,Hell's Kitchen,40.76553,-73.98709,Entire home/apt,300,1,268,2019-06-26,6.12,1,261 +9738193,Private Room in Gorgeous Loft Space,30968452,Ellen,Brooklyn,Bushwick,40.68881,-73.92017,Private room,75,3,5,2018-01-02,0.12,1,365 +9738605,Bedford Palace,50054847,Lauryn,Brooklyn,Crown Heights,40.66842,-73.95601,Private room,100,1,0,,,1,0 +9739888,One room in a 4 bedroom apaprtment.,50252837,Abhinaya,Manhattan,Harlem,40.81656,-73.95725,Private room,45,1,0,,,1,0 +9740010,PRIVATE STUDIO: L TRAIN WATERFRONT,389899,Maria,Brooklyn,Williamsburg,40.7179,-73.95938,Entire home/apt,146,28,208,2019-05-26,4.80,2,200 +9740150,Bright and Cosy bedroom,50145118,Sonia,Manhattan,Harlem,40.80857,-73.942,Private room,89,1,19,2019-01-04,0.44,3,0 +9740264,Bright Studio in Harlem Near Trains,11462920,Ijeoma,Manhattan,Harlem,40.81788,-73.93583,Entire home/apt,75,2,19,2016-06-14,0.44,1,0 +9740386,Chic 1 BR in Meatpackiing,50255130,Mary,Manhattan,Chelsea,40.74098,-74.00513,Entire home/apt,175,4,0,,,1,0 +9745297,Big Bedroom in Huge Loft Apartment,18830662,Jack,Manhattan,SoHo,40.72051,-74.00168,Private room,75,1,1,2015-12-17,0.02,2,0 +9745484,"Sun-filled 1 Bdrm, Above Subway",7230698,Megan,Manhattan,Harlem,40.82749,-73.94329,Entire home/apt,102,5,20,2018-07-22,0.52,2,18 +9746225,"Sunny, clean, contemporary Soho Apt",14005489,Jonathan,Manhattan,SoHo,40.72823,-74.00571,Entire home/apt,250,4,0,,,1,0 +9746604,Stylish 2BR ★ Sleeps 6 ★ C.Park,50279938,Gilad,Manhattan,East Harlem,40.78857,-73.94328,Entire home/apt,190,2,118,2019-06-20,2.74,1,237 +9747059,"UWS, Close to Park, Shops, Transpor",50282201,Dinara,Manhattan,Upper West Side,40.80027,-73.96971,Private room,120,1,0,,,1,0 +9747647,Big and sunny room in Greenpoint,8768792,Fernando,Brooklyn,Greenpoint,40.72449,-73.95149,Private room,70,5,1,2015-12-15,0.02,1,0 +9747682,"Private, Serene, Exposed Brick Realness Brownstone",4018726,Lorraine,Brooklyn,Bedford-Stuyvesant,40.69297,-73.94522,Private room,63,3,6,2019-06-30,2.77,1,60 +9748012,"Lovely, 2BR sun filled apartment",9895399,Julian,Brooklyn,Greenpoint,40.72484,-73.9472,Entire home/apt,100,6,1,2016-01-05,0.02,1,0 +9748877,4 person private room in Spanish Harlem,24260658,Kristy,Manhattan,East Harlem,40.79443,-73.93501,Private room,130,2,49,2019-06-19,1.52,5,76 +9749211,Studio- Prime East Village Location,50289490,Michael,Manhattan,East Village,40.72613,-73.98621,Entire home/apt,140,5,0,,,1,0 +9749603,New York artistic house &Queens,19256647,Jiao,Queens,Flushing,40.73157,-73.83263,Entire home/apt,65,7,0,,,1,0 +9750139,Sunset Retreat - Charming Oasis,50292584,Haydee,Brooklyn,Sunset Park,40.64218,-74.01175,Entire home/apt,90,2,75,2019-06-06,1.84,2,364 +9750308,Bushwick artist den: 1 min to L train AC +backyard,50291368,Zoey,Brooklyn,Bushwick,40.6882,-73.90598,Private room,46,2,18,2019-04-27,0.42,1,0 +9750406,Bushwick studio,3051323,Casey,Brooklyn,Bushwick,40.69917,-73.93178,Entire home/apt,72,20,0,,,1,0 +9751043,☆ Easy Access To The Best Of Brooklyn ☆,393473,Bobby,Brooklyn,Bedford-Stuyvesant,40.69227,-73.95187,Entire home/apt,115,2,142,2019-06-17,3.38,2,89 +9752005,A Quiet Room in the West Village,4173415,Pedro,Manhattan,West Village,40.73737,-74.00591,Private room,90,1,103,2019-06-27,2.40,1,239 +9752053,"Private room in Greenpoint, BK",1587834,Bradford,Brooklyn,Greenpoint,40.72212,-73.94423,Private room,65,2,0,,,1,0 +9753018,1200 SQFT Open Loft Williamsburg,1527888,Ilya,Brooklyn,Williamsburg,40.7109,-73.95236,Entire home/apt,250,31,8,2017-01-03,0.19,1,0 +9753240,Sun-drenched SoHo Duplex Loft,1342653,Andrew,Manhattan,SoHo,40.72543,-74.00242,Entire home/apt,1000,4,10,2018-11-26,0.23,1,326 +9753443,Big Studio W/ Prive Patio +Amenity,2147475,Will,Brooklyn,Greenpoint,40.72107,-73.95376,Entire home/apt,159,1,3,2017-01-02,0.10,1,0 +9754436,Awesome room in 2br design Apartment in LES,15231059,Apollo,Manhattan,Lower East Side,40.7203,-73.98698,Private room,99,3,24,2019-04-07,0.56,4,333 +9754751,Large 1 Bedroom Apartment,19067539,Rajesh,Queens,Kew Gardens,40.70344,-73.83435,Entire home/apt,100,1,2,2017-08-10,0.09,1,0 +9754968,Sunny Manhattan Apartment!!,10611392,Lola,Manhattan,East Harlem,40.79331,-73.94149,Entire home/apt,250,4,13,2018-10-08,0.32,1,35 +9755074,Parkside Brooklyn Brownstone,33401596,Luke,Brooklyn,Bedford-Stuyvesant,40.69048,-73.94763,Entire home/apt,120,3,5,2016-06-27,0.12,1,0 +9755384,Private queen room - Hell's Kitchen,9262409,Danielle,Manhattan,Hell's Kitchen,40.76504,-73.98718,Private room,80,3,1,2015-12-28,0.02,1,0 +9755479,Beautiful 1BR NYC,18799694,Evan,Manhattan,East Village,40.73333,-73.99075,Entire home/apt,300,1,0,,,1,0 +9755785,"540 Main Street, Apt 428",47512544,Yingyuan,Manhattan,Roosevelt Island,40.76206,-73.94904,Private room,45,3,1,2016-01-05,0.02,1,0 +9756236,Quiet and large one bedroom,18954539,Tamara,Manhattan,Upper East Side,40.76374,-73.96583,Entire home/apt,200,1,0,,,1,0 +9756258,Room for Female-Upper West Side,11513145,Jessica,Manhattan,Upper West Side,40.78641,-73.97739,Private room,65,1,2,2016-01-08,0.05,1,0 +9756612,Cute space in Manhattan,39631811,Tarini,Manhattan,Morningside Heights,40.80929,-73.95826,Private room,70,1,0,,,1,0 +9756729,Bright new apt in a luxury building,33349807,Dorit,Brooklyn,Bedford-Stuyvesant,40.6801,-73.92873,Entire home/apt,60,13,0,,,1,0 +9756996,Perfect West Village Apartment,1587220,Blossom,Manhattan,West Village,40.73577,-74.00582,Entire home/apt,240,1,0,,,1,0 +9757018,Cozy room in a big house!,50318467,Seyi,Manhattan,Marble Hill,40.87663,-73.91041,Private room,50,1,2,2016-01-01,0.05,1,0 +9757167,1 Full Size Bed with Bike Rental,4422477,Crystal,Manhattan,East Village,40.72936,-73.97882,Private room,100,2,1,2016-07-31,0.03,1,0 +9757351,Two Bedroom next to Central Park,7952263,Anne,Manhattan,Upper East Side,40.78389,-73.95306,Entire home/apt,200,4,1,2016-08-27,0.03,1,0 +9757762,Cute Apartement in Williamsburg,3696938,Z,Brooklyn,Williamsburg,40.70935,-73.95207,Entire home/apt,180,1,0,,,1,0 +9757875,NY Queens Penthouse Share = 1LOFT aka Queens' Loft,34861728,Iris,Queens,Kew Gardens,40.7092,-73.82984,Private room,65,7,8,2018-10-25,0.18,4,320 +9758041,Spacious Williamsburg Beauty,50323495,Angie,Brooklyn,Williamsburg,40.70357,-73.9474,Entire home/apt,130,4,52,2019-07-01,1.20,1,321 +9758320,NYC Hamilton Heights Apartment,50324996,Electra,Manhattan,Harlem,40.83113,-73.94597,Entire home/apt,125,21,0,,,1,0 +9758378,Prospect Heights/Park slope condo next to the Park,50324962,John,Brooklyn,Prospect Heights,40.67545,-73.96884,Entire home/apt,250,30,13,2019-05-11,0.34,1,319 +9758735,1 Bedroom Holiday Sublet in Bklyn,411677,Eli,Brooklyn,Flatbush,40.63565,-73.96434,Entire home/apt,70,20,0,,,1,0 +9759444,Beautiful apartment in Park Slope,13342524,Carola,Brooklyn,South Slope,40.66352,-73.98488,Entire home/apt,100,3,6,2017-01-04,0.14,1,0 +9759525,Central Park South Artist's Studio,50331528,Sarah,Manhattan,Hell's Kitchen,40.76599,-73.98404,Entire home/apt,90,5,3,2016-04-20,0.08,1,0 +9759592,5 minutes to JFK airport bed/bath -room A,50331556,Marilee & Gene,Queens,Rosedale,40.67836,-73.729,Private room,90,1,54,2019-05-19,1.26,1,180 +9759704,Lovely Lofted Artist's Room,6706379,Robyn,Brooklyn,Bedford-Stuyvesant,40.69133,-73.9426,Private room,31,3,2,2016-01-05,0.05,1,0 +9759957,One Bedroom in Washington Heights,9039711,Lorraine,Manhattan,Washington Heights,40.83358,-73.94113,Private room,45,1,2,2016-06-10,0.05,1,0 +9760401,Modern apt by lincoln square,18080415,Dan,Manhattan,Upper West Side,40.77594,-73.98449,Entire home/apt,188,3,0,,,1,0 +9765011,Cute Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6502,-73.95509,Private room,39,7,6,2018-01-05,0.17,4,278 +9765276,Private Room Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6518,-73.95894,Private room,39,7,13,2018-07-27,0.30,4,346 +9765762,"Room w/ private bathroom, entrance",9662924,Albert,Brooklyn,Williamsburg,40.70669,-73.94943,Private room,85,5,1,2016-01-05,0.02,1,0 +9765897,BRIGHT & QUIET BEDROOM IN CLINTON HILL BROWNSTONE,10366292,Lea,Brooklyn,Clinton Hill,40.68552,-73.96481,Private room,40,5,2,2017-09-05,0.06,3,0 +9765944,SUNNY BEDROOM IN BROOKLYN BROWNSTON,10366292,Lea,Brooklyn,Clinton Hill,40.68522,-73.96326,Private room,75,1,0,,,3,0 +9766228,Deluxe Williamsburg Apartment,38297722,Joe,Brooklyn,Williamsburg,40.71691,-73.93953,Entire home/apt,200,2,1,2016-01-03,0.02,1,0 +9766922,Spacious Uptown bedroom,19874128,Jennifer,Manhattan,Harlem,40.82083,-73.95407,Private room,88,2,0,,,1,0 +9767424,Brooklyn's Finest - ML,50364039,Cathy,Brooklyn,Williamsburg,40.71602,-73.96248,Entire home/apt,130,2,67,2019-07-07,1.57,3,252 +9767864,Owl's Landing- The Loft,50068597,Alex,Staten Island,Tompkinsville,40.63661,-74.07868,Private room,40,2,157,2019-07-01,3.67,3,324 +9768159,Large Room in Morningside Heights,618803,New,Manhattan,Washington Heights,40.83424,-73.94275,Private room,65,3,0,,,1,0 +9768199,Unique & Whimsical-Entire 1-BRM Apt UWS,50366054,Blake,Manhattan,Upper West Side,40.80055,-73.96011,Entire home/apt,129,3,6,2019-05-14,0.14,1,0 +9768313,Luxury doorman building w amenities,670690,Robert,Manhattan,Chelsea,40.73809,-73.99695,Entire home/apt,500,1,0,,,1,0 +9768333,"Spacious 1BD, City View, Near Train",9144218,Daniel,Queens,Astoria,40.76476,-73.91935,Entire home/apt,125,8,0,,,1,0 +9768360,"Quiet, clean, modern 1-bed/1-bath",50368164,Hattie,Brooklyn,Windsor Terrace,40.64845,-73.97302,Entire home/apt,100,1,7,2016-12-29,0.16,1,0 +9768492,BROOKLYN 2 BEDROOM,50368837,Jorge,Brooklyn,Crown Heights,40.67735,-73.94468,Entire home/apt,100,3,1,2018-01-02,0.05,2,0 +9768765,Room in quiet Brooklyn home,50369736,Benjamin,Brooklyn,Kensington,40.64637,-73.97863,Private room,24,18,1,2016-01-29,0.02,1,0 +9769423,Garden Apartment at House on 11th,50372319,Carlo Fabricio,Brooklyn,Gowanus,40.66948,-73.9903,Entire home/apt,160,2,70,2018-01-02,1.63,1,342 +9769817,Eclectic space in Prime Williamsburg,50374022,Elana,Brooklyn,Williamsburg,40.71162,-73.9639,Entire home/apt,125,5,13,2017-01-02,0.31,2,0 +9770041,Two Bedroom In Williamsburg,96598,Michelle,Brooklyn,Greenpoint,40.72061,-73.94886,Entire home/apt,205,7,2,2019-01-01,0.19,1,0 +9770249,WOW! Luxury East Village 3 Bed | 1 Bath Apt,2001524,John,Manhattan,East Village,40.73027,-73.98759,Entire home/apt,750,3,97,2019-06-19,2.22,1,47 +9770459,Private room in Bed Stuy brownstone,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68124,-73.94188,Private room,75,14,18,2019-06-30,0.50,3,189 +9771893,Irving place -Elevator Doorman 1 bed - 5152,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73558,-73.9852,Entire home/apt,150,30,1,2017-08-31,0.04,96,282 +9772152,Quaint West Chelsea Studio near it all. 3,47577639,Jc,Manhattan,Chelsea,40.74105,-74.00401,Entire home/apt,195,4,48,2019-06-19,1.19,2,280 +9772486,Williamsburg 2000sqft,50385630,Bradley,Brooklyn,Williamsburg,40.71712,-73.94671,Private room,477,2,1,2016-10-10,0.03,1,358 +9772539,Sky VieW Doorman Gym Pool!5171,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79569,-73.96583,Entire home/apt,275,30,1,2016-01-19,0.02,96,332 +9773158,"The Spring St Residence,SoHo -Perfect For Families",31758028,Danai,Manhattan,SoHo,40.72496,-74.00928,Entire home/apt,699,7,0,,,1,37 +9773384,Captivating rooftop apartment,3816296,Luke,Manhattan,Chinatown,40.71611,-73.99539,Entire home/apt,180,1,0,,,1,0 +9775055,"Relaxing, Clean Room in Brooklyn",12974174,Brandy,Brooklyn,Crown Heights,40.66782,-73.92969,Private room,60,1,1,2016-01-01,0.02,1,0 +9775146,"Comfy 2BR + Outdoor patio/ Subway 2,3",50396427,Anu -Nicole,Brooklyn,Prospect Heights,40.67702,-73.96445,Entire home/apt,128,28,12,2019-05-09,0.31,1,256 +9775237,Spacious high-rise 1BD with an INCREDIBLE view!,38263259,Michelle,Manhattan,Harlem,40.81949,-73.95676,Entire home/apt,140,5,7,2018-05-21,0.16,1,0 +9775296,"Sunny, quiet Crown Heights apt",24894370,Alex,Brooklyn,Crown Heights,40.67042,-73.95072,Entire home/apt,98,1,5,2016-01-03,0.12,1,0 +9775397,Apartment at the St.Regis Hotel,50397134,Masaichi,Manhattan,Midtown,40.76103,-73.97512,Entire home/apt,1200,1,0,,,1,0 +9776054,Christmas and New Years in NYC,22098830,Alfred,Brooklyn,Bedford-Stuyvesant,40.68581,-73.94689,Entire home/apt,800,3,33,2016-06-12,0.76,1,178 +9777387,East village lovely bedroom!,502563,Cloe,Manhattan,East Village,40.73052,-73.98461,Private room,130,3,134,2019-06-23,3.08,2,23 +9777504,Industrial Williamsburg Loft with Awesome Rooftop!,9424650,Anna,Brooklyn,Williamsburg,40.71761,-73.95423,Entire home/apt,325,3,74,2019-06-27,1.73,1,179 +9777601,Sunny East Village Apartment,2491622,Katherine,Manhattan,East Village,40.72745,-73.98979,Private room,200,1,0,,,1,0 +9777669,Charming 1 BD in Washington Heights,20068971,Jacqueline,Manhattan,Washington Heights,40.85147,-73.93771,Entire home/apt,125,2,0,,,1,0 +9777883,cozy harlem room,4098796,Lux,Manhattan,Harlem,40.82021,-73.95421,Private room,62,2,0,,,1,0 +9778049,PRIVATE STUDIO Central Park West,11026504,Alinka,Manhattan,Upper West Side,40.78818,-73.96928,Entire home/apt,144,2,30,2019-04-07,0.80,1,0 +9778407,Beautiful Room...15 min to NYC,40571321,Dana,Brooklyn,Bedford-Stuyvesant,40.69335,-73.93107,Private room,90,1,0,,,1,0 +9778579,LES sweet bedroom (Female only),50411330,Sophia,Manhattan,Lower East Side,40.71504,-73.98879,Private room,45,1,2,2016-06-22,0.05,1,0 +9778583,Private room in HUGE Apartment!,34351124,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68768,-73.92069,Private room,75,1,1,2016-01-03,0.02,1,0 +9778855,Room in Modern Bushwick Townhouse,10262649,Andrew,Brooklyn,Bushwick,40.69134,-73.90895,Private room,85,4,24,2016-10-13,0.57,2,0 +9778978,upper manhattan rivervie new studio,32525636,Piner,Manhattan,Harlem,40.82094,-73.95745,Entire home/apt,50,3,1,2016-05-22,0.03,1,0 +9779136,Cozy Room in heart of Crown Heights,3758471,Stephanie,Brooklyn,Crown Heights,40.67377,-73.95887,Private room,50,10,1,2016-01-06,0.02,2,0 +9779228,Sunny Winter Union Square Sublet,15401907,Eric,Manhattan,Gramercy,40.73524,-73.98812,Entire home/apt,86,20,0,,,1,0 +9779960,Brooklyn NY min away from Manhattan,30793816,Sap,Brooklyn,Bushwick,40.68589,-73.91486,Private room,60,1,17,2017-10-08,0.40,1,205 +9785516,Beautiful Luxury Manhattan 3bed/2bath!,4094857,Anat,Manhattan,Upper West Side,40.79113,-73.96645,Entire home/apt,372,3,23,2018-12-30,0.54,1,17 +9785847,Heart of Williamsburg 1 BD,42424450,Tyler,Brooklyn,Williamsburg,40.71988,-73.95591,Private room,75,2,1,2015-12-31,0.02,1,0 +9786021,"Beautiful & spacious room, Brooklyn",50442604,Beatriz,Brooklyn,Flatbush,40.63655,-73.95424,Private room,60,1,1,2016-01-01,0.02,1,0 +9786182,Lovely room in Harlem,26627436,Mike,Manhattan,Harlem,40.81602,-73.94316,Private room,29,28,42,2018-08-19,1.00,1,16 +9786398,LOCATION! Private room with yard.,1698487,Chelsea,Brooklyn,Prospect Heights,40.67835,-73.96846,Private room,85,1,90,2019-06-16,2.08,1,345 +9786543,Private bdrm in bedstuy brownstone,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68666,-73.92724,Private room,60,15,14,2019-05-16,0.38,3,251 +9786769,Large Upper West Side apartment,50445531,Wendy,Manhattan,Upper West Side,40.79827,-73.97321,Private room,124,1,0,,,1,0 +9787107,Sunny private room in Spanish Harlem,24260658,Kristy,Manhattan,East Harlem,40.79471,-73.93482,Private room,90,2,17,2019-04-21,0.45,5,0 +9787590,"",50448556,Miguel,Manhattan,Harlem,40.80316,-73.95189,Entire home/apt,300,5,0,,,5,0 +9787634,Studio in Upper East Side,20328794,Maxim,Manhattan,Upper East Side,40.77507,-73.94896,Entire home/apt,70,10,3,2017-08-21,0.07,1,0 +9788114,Large Private Garden Apartment in Townhouse,785524,Eric,Bronx,Concourse,40.82023,-73.92844,Entire home/apt,87,1,132,2019-06-29,3.11,2,211 +9788141,Bedroom in UWS,50448556,Miguel,Manhattan,Harlem,40.80518,-73.95099,Private room,100,1,1,2015-12-03,0.02,5,0 +9789339,"BIG and Comfortable apt, by Park!",10338528,Jared,Brooklyn,Flatbush,40.65411,-73.95816,Private room,55,4,8,2018-12-26,0.19,1,173 +9789350,Cozy 1 Bedroom in Upper East Side,50455731,Timea,Manhattan,Upper East Side,40.77227,-73.94968,Entire home/apt,139,3,26,2018-01-25,0.60,1,0 +9790098,Bedroom in UWS 118th st,50448556,Miguel,Manhattan,Harlem,40.80345,-73.95067,Private room,200,1,0,,,5,0 +9790355,Heart of Manhattan's West Village,50459536,Ryan,Manhattan,West Village,40.73455,-74.00312,Private room,300,1,0,,,1,0 +9790462,Room in Spacious good vibes home,2949577,Ariela,Brooklyn,Crown Heights,40.66593,-73.95082,Private room,50,4,2,2016-05-02,0.05,1,0 +9790748,Doorman 2 bed 1.5 Ba! Sky view!5173,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.7773,-73.95305,Entire home/apt,260,30,1,2019-03-30,0.30,96,336 +9790995,Cozy room around Union Square,39615319,Yiling,Manhattan,East Village,40.73352,-73.98896,Private room,120,2,3,2016-04-18,0.08,1,0 +9791355,Beautiful studio in Gramercy Park,50463621,Josh,Manhattan,Kips Bay,40.7412,-73.98171,Entire home/apt,110,4,0,,,1,0 +9791362,Cozy Room in Heart of Williamsburg,8265805,Amanda,Brooklyn,Williamsburg,40.71725,-73.96447,Private room,50,3,0,,,1,0 +9792286,Private room in East Village Apt.,48593918,Aaron,Manhattan,East Village,40.72265,-73.98365,Private room,90,2,187,2019-07-07,4.31,1,86 +9792315,Sunny Astoria 2BR with Porch!,5814274,Sam,Queens,Astoria,40.77254,-73.92853,Entire home/apt,225,4,0,,,1,0 +9792323,Brand New Studio!! UNITED NATIONS!!,1475015,Mike,Manhattan,Midtown,40.75185,-73.97001,Entire home/apt,83,30,3,2019-04-19,0.09,52,331 +9792367,Crown Heights Room Winter Sublet,50467679,Gerard,Brooklyn,Crown Heights,40.67176,-73.93387,Private room,30,3,3,2017-12-18,0.10,1,0 +9792720,Semi-Private Room Next to TimeSqare,20337316,Matt,Manhattan,Hell's Kitchen,40.76646,-73.99345,Shared room,65,1,1,2015-12-24,0.02,1,0 +9793213,Room in Williamsburg Flatshare,7036796,Julie,Brooklyn,Williamsburg,40.71891,-73.96133,Private room,60,5,0,,,1,0 +9793465,Cozy Apartment in Spanish Harlem,13811334,Rachel,Manhattan,East Harlem,40.79197,-73.94711,Entire home/apt,140,1,1,2016-04-13,0.03,1,0 +9793542,Stunning SoHo 1400sqft LOFT/DUPLEX on Best Street,50472471,Allegra,Manhattan,SoHo,40.7209,-74.00229,Entire home/apt,799,3,16,2019-04-28,0.40,1,365 +9793665,Modern Apt in Thriving W'Burg,11358093,Hugh,Brooklyn,Williamsburg,40.71283,-73.9593,Entire home/apt,330,5,0,,,1,0 +9793676,3 Bed Apt - 63rd St and Madison,50473263,Joshua,Manhattan,Upper East Side,40.76875,-73.96763,Entire home/apt,1100,1,0,,,1,0 +9794077,Bright Private Greenpoint Room,23698012,Amelia,Brooklyn,Greenpoint,40.72276,-73.94857,Private room,75,1,0,,,1,0 +9794251,400 sq foot studio east village,50475515,Gilad,Manhattan,East Village,40.72407,-73.98236,Entire home/apt,140,12,0,,,1,0 +9794364,Large Room in Manhattan Duplex,8546088,Jonathan,Manhattan,Upper West Side,40.8,-73.96404,Private room,100,2,42,2019-03-19,1.02,1,0 +9794402,Cute Apartment - heart of Astoria,17490821,Pierre,Queens,Astoria,40.7609,-73.92288,Entire home/apt,100,3,1,2015-12-28,0.02,1,0 +9794825,Cozy Room in Hell's kitchen,18998261,Flavien,Manhattan,Hell's Kitchen,40.76339,-73.99404,Private room,110,5,0,,,1,0 +9795890,Room in a loft in Tribeca,23372553,Valentine,Manhattan,Tribeca,40.71561,-74.00642,Private room,75,1,1,2015-12-27,0.02,1,0 +9795958,Cute 1 Bedroom in Hells Kitchen,4205782,Jesse,Manhattan,Hell's Kitchen,40.76223,-73.99296,Entire home/apt,150,4,0,,,1,0 +9796155,"Sublet Room in Bushwick, Brooklyn",34202667,Sarah,Brooklyn,Bushwick,40.69084,-73.92075,Private room,90,3,0,,,1,0 +9796737,Private Room in lower east side NYC,41003664,Conor,Manhattan,Lower East Side,40.71282,-73.98448,Private room,70,9,2,2017-06-12,0.05,1,0 +9797293,East Harlem Holiday Stay,5474579,Seun,Manhattan,East Harlem,40.79617,-73.93452,Entire home/apt,85,1,0,,,1,0 +9797510,Idyllic Greenwich Village Apartment,50490104,Ocean,Manhattan,Greenwich Village,40.72939,-74.00225,Entire home/apt,150,2,0,,,1,0 +9798242,Sunlit Private Rm Btwn Times Sq/Central Park/HK,22247089,Min,Manhattan,Hell's Kitchen,40.76576,-73.98383,Private room,145,2,51,2019-06-15,1.19,1,139 +9800247,East Village Bedroom in Duplex!,36585734,Pj,Manhattan,East Village,40.72955,-73.98058,Private room,77,1,0,,,1,0 +9802654,Lovely apartment in West Village,4050348,Bayly,Manhattan,Greenwich Village,40.72935,-74.00064,Private room,200,1,0,,,1,0 +9804243,Beautiful large bedroom in Brooklyn,2330750,Thomas,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95021,Private room,60,3,4,2018-08-17,0.13,1,0 +9804299,Private room in Williamsburg,3285138,Raffi,Brooklyn,Williamsburg,40.71776,-73.9605,Private room,70,5,1,2016-01-05,0.02,1,0 +9804368,Local and authentic in Chelsea,48705835,Leo,Manhattan,Chelsea,40.74566,-73.99989,Entire home/apt,365,6,100,2019-06-19,2.37,1,257 +9804516,High rise apartment with Central Park views!,49347242,Josephine,Manhattan,Hell's Kitchen,40.7682,-73.98467,Entire home/apt,180,1,3,2016-08-22,0.08,1,0 +9804814,Cozy Midtown East apt,10487850,Nael,Manhattan,Midtown,40.75287,-73.96708,Entire home/apt,230,1,0,,,1,0 +9804849,1 private BR in prime location,12996782,Carol,Manhattan,Theater District,40.76278,-73.98178,Private room,79,7,0,,,1,0 +9805128,Spacious Cosy Room with Queen Bed,50520029,Jeremy,Brooklyn,Bushwick,40.69184,-73.90593,Private room,49,7,2,2016-09-01,0.05,1,0 +9805274,Rare Penthouse Master Bedroom/Bath Nolita,2329581,Michael,Manhattan,Nolita,40.72248,-73.99481,Private room,165,7,4,2017-12-26,0.12,2,0 +9806373,"Bright Spacious Brooklyn Gem, 3 BR",50523735,Grace,Brooklyn,Prospect-Lefferts Gardens,40.6576,-73.94609,Entire home/apt,140,2,131,2019-06-23,3.06,1,273 +9806634,Cozy room in sweet East Village Apt!,4765305,Haffro,Manhattan,East Village,40.72288,-73.98454,Private room,72,1,3,2019-06-24,0.08,4,201 +9806799,#Beautifully furnished 2 BR apt. near Central Park,30283594,Kara,Manhattan,Hell's Kitchen,40.76681,-73.98365,Entire home/apt,369,30,0,,,121,331 +9807059,A room of one's own near Columbia U,50526314,Kay,Manhattan,Morningside Heights,40.81047,-73.95735,Private room,63,1,0,,,1,0 +9807758,Doorman One bedroom Laundry!5128,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73564,-73.98611,Entire home/apt,165,30,2,2017-05-31,0.05,96,321 +9808151,"Lovely XL Studio,Lux bldg,24hr drmn",30223110,Deniz,Manhattan,Midtown,40.75134,-73.96807,Entire home/apt,112,4,1,2016-04-28,0.03,1,0 +9808637,"Beautiful, Bright, Farmhouse Apt",10316525,Daniel,Brooklyn,Williamsburg,40.71197,-73.96061,Entire home/apt,119,3,3,2016-09-03,0.07,1,0 +9808859,Doorman Laundry One bedroom!5134,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76565,-73.98587,Entire home/apt,160,30,1,2016-11-30,0.03,96,365 +9809458,Deluxe Large 1-Bedroom Apt in WILLIAMSBURG NYC,3829864,Jeff,Brooklyn,Williamsburg,40.71907,-73.95434,Entire home/apt,170,2,6,2018-12-02,0.32,1,0 +9809784,Lux Interior Designer Brookyln Flat,3976298,Sidra,Brooklyn,Prospect Heights,40.67815,-73.96823,Entire home/apt,995,5,1,2016-01-02,0.02,1,89 +9809911,Classic Brooklyn Charm,50537550,Howard,Brooklyn,Bedford-Stuyvesant,40.68441,-73.91625,Entire home/apt,185,2,24,2019-06-24,0.56,1,365 +9810235,Tribeca Loft,50539403,Yuri,Manhattan,Tribeca,40.71819,-74.00833,Entire home/apt,500,4,0,,,1,0 +9810271,Private room in 4 BR on Riverside,50539477,Brian,Manhattan,Harlem,40.8226,-73.95468,Private room,48,30,100,2019-05-31,2.31,2,183 +9810506,Beautiful Luxury Tribeca Apartment,50540315,Rebecca,Manhattan,Battery Park City,40.71775,-74.01509,Private room,150,3,0,,,1,0 +9810696,MANNYS' PLACE,50541121,Jesus,Manhattan,Hell's Kitchen,40.76385,-73.98669,Entire home/apt,199,2,137,2019-06-24,3.14,1,317 +9811274,Large Room for 2! Hipstest hood for summer!,16003028,Analá,Brooklyn,Greenpoint,40.72974,-73.95163,Private room,80,5,2,2016-06-28,0.05,1,0 +9813364,"1 lg. bedroom, north central park",13275669,Tenzin,Manhattan,Harlem,40.80145,-73.95428,Private room,60,3,0,,,1,0 +9818465,Sunny apt in morningside heights,24554945,Michael E.,Manhattan,Morningside Heights,40.80761,-73.95841,Entire home/apt,125,6,5,2019-01-01,0.16,1,1 +9819018,A cozy room in Lower East Manhattan,49861582,Emily,Manhattan,Lower East Side,40.71209,-73.98794,Private room,62,28,2,2016-01-14,0.05,1,0 +9819164,Large Bay-Windowed by Citi-College,17557243,Wolfgang,Manhattan,Harlem,40.8216,-73.95583,Shared room,60,1,0,,,1,0 +9819437,3BR Modern Upper West CPW w/doorman,1106592,Scott,Manhattan,Upper West Side,40.79502,-73.96703,Entire home/apt,600,3,0,,,1,0 +9819545,Huge Space in E. Williamsburg Apt.,22159648,Sinat,Brooklyn,Williamsburg,40.70657,-73.94234,Private room,75,1,2,2019-01-02,0.21,2,0 +9819589,Designer's Studio with Cats +Yard,2290932,Jack,Brooklyn,Fort Greene,40.68579,-73.97455,Entire home/apt,80,2,4,2018-05-27,0.17,1,0 +9820053,SoHo Studio,22440410,David,Manhattan,SoHo,40.72688,-74.00058,Entire home/apt,195,2,1,2016-01-06,0.02,1,0 +9820308,"Furnished 1 BR, near Times Square",50583919,Samkit,Manhattan,Hell's Kitchen,40.75992,-73.9879,Private room,68,3,1,2016-01-18,0.02,1,0 +9820483,A room in East Village: 2 weeks min,50584770,Anton,Manhattan,East Village,40.72246,-73.98006,Private room,45,14,0,,,1,0 +9820533,1 BR Artist's Haven in Bed-Stuy,4400935,V,Brooklyn,Bedford-Stuyvesant,40.68259,-73.92358,Entire home/apt,90,2,5,2016-10-15,0.12,1,0 +9820968,Large Stylish & Modern 1 BR Apt.,16352538,Alexis,Manhattan,Hell's Kitchen,40.76379,-73.99378,Entire home/apt,200,2,1,2016-01-02,0.02,1,0 +9821359,"Adorable, quiet Astoria apartment",50588693,Robb,Queens,Astoria,40.76125,-73.91008,Private room,30,1,0,,,1,0 +9821370,"Elegant, sunny and spacious room in Harlem",50588394,Alizé,Manhattan,Harlem,40.82391,-73.93881,Private room,80,1,28,2018-11-04,0.72,1,364 +9821408,Cozy East Village apartment w Steinway piano,1010435,Carol,Manhattan,East Village,40.72792,-73.98718,Entire home/apt,125,7,4,2019-04-22,0.17,1,1 +9822032,Shiyi Wang,50591230,Shiyi,Brooklyn,Bushwick,40.69557,-73.9315,Private room,70,1,0,,,1,0 +9822110,Bushwick Room in 3Bedroom Apt,23914377,Bobby,Brooklyn,Bushwick,40.70179,-73.93689,Private room,50,1,0,,,1,0 +9822635,Beautiful Serene Bedroom,50593630,Yari,Brooklyn,Crown Heights,40.67239,-73.93225,Private room,110,1,6,2016-09-19,0.14,1,0 +9822738,Beautiful Upper East Side Apt!,50593964,Laura,Manhattan,Upper East Side,40.77641,-73.95505,Entire home/apt,199,4,1,2016-01-03,0.02,1,0 +9822983,31 Dec - 1 Jan lovely Prospect room,4119786,Shimrit,Brooklyn,Prospect Heights,40.6733,-73.9647,Private room,40,1,1,2015-12-23,0.02,2,0 +9823085,Private room in bright apartment!,46256682,Jose,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95019,Private room,65,5,10,2019-05-04,0.49,1,3 +9823636,Cozy Room in Hell's Kitchen,25153542,Andrea,Manhattan,Hell's Kitchen,40.76057,-73.99038,Private room,85,1,1,2015-12-19,0.02,1,0 +9823806,Spacious 1BD-1 Block to Bedford L!,18195071,Ben,Brooklyn,Williamsburg,40.71481,-73.95475,Entire home/apt,160,3,0,,,1,0 +9824042,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74423,-73.97742,Private room,69,4,107,2019-04-15,2.50,2,0 +9824463,BK's Finest Courtyard Rm close to transportation,50600973,Joyell,Brooklyn,Bushwick,40.69452,-73.9284,Private room,42,1,216,2019-06-24,5.00,7,61 +9824613,Studio near GramercyPark w/ Kitchen,50601765,Xinyan,Manhattan,Kips Bay,40.74195,-73.98242,Entire home/apt,120,2,4,2016-09-05,0.11,1,0 +9824682,1 bedroom apartment w/ Private yard,19103161,Jonathan,Brooklyn,Greenpoint,40.72691,-73.94802,Entire home/apt,150,1,0,,,1,0 +9824807,Sunny Apt by Central Park North,1583768,Grace,Manhattan,Harlem,40.79982,-73.95375,Entire home/apt,130,2,18,2017-08-14,0.42,1,0 +9825420,Great for Work/Leisure w NYC Views!,1570949,DeAnna,Brooklyn,South Slope,40.66817,-73.98774,Private room,85,2,0,,,1,0 +9825939,"Room in Luxury Apt, Williamsburg",9055412,Alexandra,Brooklyn,Williamsburg,40.70663,-73.94701,Private room,100,1,0,,,1,0 +9826062,One Bedroom Midtown East Cozy 1 BR,28768715,Tom,Manhattan,Murray Hill,40.74852,-73.97521,Entire home/apt,210,3,59,2019-07-03,1.54,1,248 +9826081,"Bright apartment, Crown Heights",5385509,Ingrid Harvold,Brooklyn,Crown Heights,40.67534,-73.94958,Private room,28,14,3,2017-01-25,0.07,1,0 +9826494,large room in 3 bedroom apartment,18215000,Haley,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95345,Private room,60,2,1,2016-09-01,0.03,1,0 +9826628,"Cozy Room, Huge Yard, Trendy Brooklyn",820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.6913,-73.9406,Private room,60,1,113,2019-06-27,2.66,3,332 +9826822,Beautiful/Comfy 1BR Brownstone,15312389,Taylor Jo,Brooklyn,Bedford-Stuyvesant,40.68752,-73.9567,Entire home/apt,140,2,5,2018-01-01,0.12,1,0 +9827236,Beautiful Room with Private Balcony,25752230,Bruno,Brooklyn,Bushwick,40.69224,-73.91834,Private room,69,2,0,,,1,0 +9827941,"Rm in Pvt Home, Nr Trn To NYC - NO CLEANING FEE",15163256,Faigie,Brooklyn,Sheepshead Bay,40.60596,-73.95672,Private room,73,3,77,2019-06-27,2.04,3,354 +9828004,Private Rm - near NYC Transit - No Cleaning Fee,15163256,Faigie,Brooklyn,Sheepshead Bay,40.60666,-73.9575,Private room,67,3,62,2019-07-07,1.65,3,338 +9831392,Cozy Modern Apartment Above Subway,49453860,Xionghui,Queens,Forest Hills,40.72126,-73.84542,Entire home/apt,123,1,0,,,1,0 +9832827,Full apartment,50638417,Nany,Manhattan,East Harlem,40.78442,-73.94722,Entire home/apt,110,5,70,2019-06-28,1.81,2,310 +9832882,Greenwich Village 2BR family apt.,50640005,Gwendollyn,Manhattan,Greenwich Village,40.73393,-73.9982,Entire home/apt,250,2,0,,,1,0 +9833212,Charming UWS Studio Loft,15584022,Alicia,Manhattan,Upper West Side,40.77633,-73.97932,Entire home/apt,80,5,7,2016-04-29,0.16,1,0 +9833953,East Village 3br 2 bath Luxury,45911716,Peter,Manhattan,East Village,40.72804,-73.97638,Entire home/apt,325,3,17,2017-06-04,0.46,1,0 +9835402,"Manhattan, luxury, 2 bedroom condo",47785416,Peter,Manhattan,Upper East Side,40.78333,-73.94996,Entire home/apt,300,1,0,,,1,0 +9835950,Vibey Bedroom in 2BR - Williamsburg,2409133,Kristy,Brooklyn,Williamsburg,40.70848,-73.94584,Private room,44,47,7,2017-04-15,0.16,1,0 +9836020,Newly Renovated Tribeca 2 br,33908393,Jay,Manhattan,Tribeca,40.71982,-74.01134,Entire home/apt,197,1,0,,,1,0 +9836642,Spacious & upscale room (Long-term),50656310,Adam,Manhattan,Hell's Kitchen,40.76487,-73.99143,Private room,60,21,0,,,1,0 +9836940,Bright & Sunny 2-Bed - Bushwick/Bed-Stuy Border!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9196,Entire home/apt,165,3,36,2019-07-06,4.37,2,274 +9836960,Cozy Room in Cozy Apartment,38064272,Son,Brooklyn,Bedford-Stuyvesant,40.68535,-73.95036,Private room,30,1,3,2017-06-11,0.11,1,0 +9837205,Cozy private room in Bayridge Brooklyn New York,16209547,Gina,Brooklyn,Fort Hamilton,40.61634,-74.03378,Private room,120,2,9,2019-04-09,0.23,2,365 +9837588,Bright Brooklyn Apartment,46080859,Ellery,Brooklyn,Bedford-Stuyvesant,40.68307,-73.92894,Entire home/apt,119,5,13,2019-06-19,0.30,1,3 +9838053,"Large, Furnished Bedroom in Bushwick",48939879,Ena,Brooklyn,Bushwick,40.70311,-73.91264,Private room,39,10,2,2019-01-14,0.28,1,0 +9838145,Bright 3 BR East Village apartment,5904463,Katherine,Manhattan,East Village,40.72451,-73.98369,Entire home/apt,250,1,0,,,4,0 +9838585,Pre-war 1 br in heart of BK Heights,18982207,Kate,Brooklyn,Brooklyn Heights,40.69237,-73.99412,Entire home/apt,130,4,0,,,1,0 +9838832,1 bd in 2bd steps 2 Lincoln Center,1426080,Jacquelyn,Manhattan,Upper West Side,40.78763,-73.97204,Private room,100,3,21,2017-09-09,0.49,2,0 +9838920,1 bedroom in Morningside Apartment,12745771,Amanda,Manhattan,Washington Heights,40.85509,-73.93236,Private room,28,1,1,2015-12-31,0.02,1,0 +9839017,The new MBnb: No Breakfast. All Business.,3510997,Joe,Manhattan,Harlem,40.82545,-73.94969,Entire home/apt,149,31,24,2019-06-30,0.58,1,149 +9839263,Location Little Nana (only female),3250450,Petya,Queens,Astoria,40.76036,-73.924,Private room,39,18,0,,,18,310 +9839378,Exposed Brick in the East Village,5657756,Jenny,Manhattan,East Village,40.72464,-73.98861,Entire home/apt,225,4,7,2018-11-22,0.19,1,0 +9839532,Large bedroom in Williamsburg- 10min Manhattan,11303788,Paul,Brooklyn,Williamsburg,40.71229,-73.95695,Private room,100,14,0,,,1,88 +9839906,Beautiful sunny room in Brooklyn,14018666,Laura,Brooklyn,Sheepshead Bay,40.587,-73.95588,Private room,45,1,9,2016-10-01,0.22,1,0 +9840355,Gorgeous apartment in West Village,3242525,Ther,Manhattan,West Village,40.73113,-74.00314,Entire home/apt,120,4,1,2016-07-06,0.03,1,0 +9841191,Cozy Studio in the Heart of the UWS,25131945,Abigail,Manhattan,Upper West Side,40.78528,-73.98091,Entire home/apt,99,2,5,2017-04-30,0.12,1,0 +9841695,"Beautiful , Peaceful , Paradise",50678424,Don,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94793,Entire home/apt,206,1,35,2019-01-01,0.81,2,365 +9842117,Cozy and comfortable apart,50638417,Nany,Manhattan,East Harlem,40.79088,-73.94261,Entire home/apt,120,5,52,2019-07-01,1.29,2,323 +9842363,Luxury apartment across One World,50680790,Felipe,Manhattan,Financial District,40.7088,-74.01455,Entire home/apt,275,2,0,,,1,0 +9842492,Vibrant 1 Bedroom Apt.in Midtown,50681342,Joe,Manhattan,Hell's Kitchen,40.76542,-73.98702,Entire home/apt,290,2,55,2019-06-24,1.37,1,0 +9842780,Grand apartment on 5th avenue,145616,Lauren,Manhattan,Greenwich Village,40.73238,-73.99517,Entire home/apt,300,3,0,,,1,0 +9843277,Columbia apartment - Upper West,4210456,Ignacio,Manhattan,Morningside Heights,40.80638,-73.96245,Entire home/apt,75,15,0,,,1,0 +9843634,"Spacious, quiet Greenpoint 1-bedroom",3820569,Eleanore,Brooklyn,Greenpoint,40.73528,-73.95647,Entire home/apt,80,3,2,2016-10-11,0.06,1,0 +9843884,Beautiful and Warm Garden Apartment,50686888,Nadine,Brooklyn,East New York,40.6682,-73.88541,Entire home/apt,150,30,16,2018-11-03,0.37,1,365 +9843892,Cozy East Village Brownstone,92272,Kristin,Manhattan,Gramercy,40.73307,-73.9835,Private room,80,2,23,2019-06-20,0.54,3,362 +9843956,Cheerful studio near Prospect Park,50687223,Jenna,Brooklyn,Prospect-Lefferts Gardens,40.66044,-73.96114,Entire home/apt,70,6,4,2016-07-24,0.09,1,0 +9844047,Spacious Home South Prospect Park,29241227,Ken,Brooklyn,Kensington,40.64689,-73.97446,Entire home/apt,130,4,1,2015-12-30,0.02,2,0 +9844161,[Prospect park] Brand New Huge Room,44791860,Laura,Brooklyn,Prospect-Lefferts Gardens,40.66112,-73.95462,Private room,50,1,0,,,1,0 +9844482,Garden apartment oasis.,9523962,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95352,Entire home/apt,125,9,10,2016-08-24,0.24,1,0 +9844509,Prospect Park Palace,23806994,Michael,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.96003,Entire home/apt,150,2,1,2016-01-02,0.02,1,0 +9844805,Bespoke 2 Building Garden Apartment,1761447,Marc,Brooklyn,Williamsburg,40.71032,-73.95345,Entire home/apt,290,6,1,2017-05-05,0.04,2,95 +9844892,Family-friendly Village Apartment,50690190,Ryan,Manhattan,Greenwich Village,40.72969,-74.00117,Entire home/apt,210,1,0,,,1,0 +9845284,Clean Classic NYC Studio,1134635,Amelia,Manhattan,Midtown,40.74251,-73.98414,Entire home/apt,150,2,1,2017-01-04,0.03,1,0 +9845314,Beautiful Duplex in Bushwick,2580352,Isaac,Brooklyn,Bushwick,40.69923,-73.9308,Entire home/apt,129,7,5,2017-06-05,0.12,1,0 +9846114,"Spacious, Sunny,Beautiful Apartment",20271650,Bj,Bronx,Mott Haven,40.81192,-73.90949,Private room,64,3,36,2019-05-25,0.84,1,1 +9846616,"Spacious Private Room, East Village",21269488,Shirley,Manhattan,East Village,40.73145,-73.98384,Private room,100,3,1,2016-01-01,0.02,1,0 +9847917,Furnished East Village room,7511881,Nika,Manhattan,East Village,40.72608,-73.97843,Private room,60,2,1,2016-01-05,0.02,1,0 +9851704,Beautiful 1 bedroom apt in Bedstuy,12871485,Chris,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94628,Entire home/apt,120,2,9,2016-12-31,0.21,1,0 +9853674,Doorman 2 Bedroom W/ 3 beds Doorman Laundry!5213,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7665,-73.98675,Entire home/apt,180,30,6,2019-05-31,0.16,96,255 +9853884,1 Month Huge 1 Bdr UWS Morningside,50727041,Tristan,Manhattan,Morningside Heights,40.81536,-73.96246,Private room,45,15,0,,,1,0 +9853919,There's an Avenue D?,7033731,Ericka,Manhattan,East Village,40.7243,-73.97684,Private room,90,3,40,2018-10-28,0.94,1,0 +9854420,Beautiful one bedroom in Soho,33889947,Gautier,Manhattan,SoHo,40.72767,-74.00344,Entire home/apt,200,2,20,2017-04-24,0.48,1,0 +9855028,Upscale 1 Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76482,-73.98216,Entire home/apt,239,30,0,,,121,351 +9855043,Cozy Tribeca Studio,5259567,Ross,Manhattan,Tribeca,40.71813,-74.00509,Entire home/apt,139,5,0,,,1,0 +9855273,Modern 1 bedroom apt. near Columbus Circle!,30283594,Kara,Manhattan,Hell's Kitchen,40.76667,-73.98341,Entire home/apt,279,30,0,,,121,352 +9855566,Beautiful Room in Greenpoint Apt,43943644,Alvaro,Brooklyn,Greenpoint,40.72612,-73.95113,Private room,95,1,0,,,1,0 +9855876,Large Room in LES ($80-100/night),18282,Daniel,Manhattan,Lower East Side,40.71813,-73.98715,Private room,70,1,3,2017-01-22,0.07,1,0 +9856683,"Large n Cozy Apt, 30 min to Midtown,Month Discount",3709185,Margarita,Manhattan,Inwood,40.87045,-73.91765,Entire home/apt,90,5,4,2018-06-21,0.09,1,0 +9856995,Calm and Comfy room in Brooklyn,50729557,Miho,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95471,Private room,70,2,63,2019-07-05,1.46,1,322 +9857249,Big Bright 1BR Bed-Stuy Brownstone,8033291,Julia,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94678,Entire home/apt,94,4,6,2017-06-20,0.16,1,0 +9857658,Sunny 2 bedroom Apt (Chelsea),6355999,Natalie,Manhattan,Chelsea,40.74387,-74.00134,Entire home/apt,250,2,3,2016-05-16,0.07,1,0 +9857920,SWING FROM THE CHANDELIER,29941633,William,Manhattan,Tribeca,40.71454,-74.00816,Entire home/apt,850,4,0,,,1,0 +9857967,Big Private Bedroom,1433657,Evy,Brooklyn,Williamsburg,40.70888,-73.95622,Private room,85,2,37,2019-05-26,0.95,2,334 +9858259,"Private guest studio in the heart of Astoria, NYC",50451849,Bianca,Queens,Astoria,40.76993,-73.91762,Entire home/apt,65,2,92,2019-07-03,2.19,1,12 +9858642,NYC Midtown West 2-BR Apt near Theater District!,30283594,Kara,Manhattan,Midtown,40.76704,-73.98153,Entire home/apt,369,30,1,2016-01-20,0.02,121,345 +9858645,Fabulous 1BA/1BD near Times Square,7611383,Leah,Manhattan,Hell's Kitchen,40.76457,-73.98525,Private room,200,3,0,,,1,0 +9859181,2 bed/3 bed with parking,10237786,Livia,Queens,Ditmars Steinway,40.78274,-73.91318,Entire home/apt,88,3,117,2019-07-05,2.88,1,192 +9859888,Apartment in Harlem,50750250,Ryan,Manhattan,Harlem,40.80728,-73.94987,Entire home/apt,65,1,3,2015-12-30,0.07,1,0 +9860190,Deluxe Furnished 1-Bedroom Midtown West Apartment,30283594,Kara,Manhattan,Theater District,40.75943,-73.98302,Entire home/apt,239,30,0,,,121,363 +9860571,The RoyaltySpace @Williamsburg BK3,24120303,Charles Jnr,Brooklyn,Williamsburg,40.70848,-73.94945,Private room,79,1,13,2016-08-21,0.30,1,0 +9860670,Deluxe Furnished 1-BR NYC apt. near Central Park!,30283594,Kara,Manhattan,Theater District,40.76064,-73.98554,Entire home/apt,239,30,0,,,121,363 +9860948,Modern 1 bedroom apt. near Grand Central Station!,30283594,Kara,Manhattan,Theater District,40.75864,-73.98197,Entire home/apt,239,30,0,,,121,363 +9861196,Luxury 1-Bedroom Apartment in Midtown Gym+Pool,30283594,Kara,Manhattan,Theater District,40.76105,-73.98638,Entire home/apt,239,30,1,2018-04-28,0.07,121,363 +9861323,Cozy 10th St. Park Slope 1bdr apt,50755667,Kyla,Brooklyn,Park Slope,40.66854,-73.98482,Entire home/apt,120,3,71,2019-06-24,2.12,3,200 +9861747,Breathtaking view 30th floor Bedroom in FIDI,3965200,Daniel,Manhattan,Financial District,40.70629,-74.0098,Private room,175,3,55,2019-06-20,2.95,1,26 +9861797,Premium Central Park Experience,5559432,Francis,Manhattan,Upper West Side,40.79322,-73.96726,Entire home/apt,200,5,2,2016-09-21,0.05,1,0 +9862199,Cozy Studio Home on the UWS!,32787246,Heather,Manhattan,Upper West Side,40.80383,-73.96793,Entire home/apt,103,3,1,2016-01-01,0.02,1,0 +9862831,Pleasant studio Chelsea (Manhattan),50761842,Michael,Manhattan,Chelsea,40.74443,-74.00259,Entire home/apt,80,5,0,,,1,0 +9862872,A cozy place in Bayridge,50762019,Aditya,Brooklyn,Bay Ridge,40.63266,-74.0284,Private room,80,1,1,2015-12-30,0.02,1,0 +9862913,Room in Sunny Apt in Great Area,7532013,Jennifer,Brooklyn,Fort Greene,40.69431,-73.97316,Private room,60,3,1,2016-01-27,0.02,1,0 +9863097,"Bright, cozy, room in Greenpoint",18900298,Johanna,Brooklyn,Greenpoint,40.72522,-73.95124,Private room,50,1,0,,,1,0 +9863626,"Private room in charming, comfortable & bright apt",11402864,Milen,Brooklyn,Crown Heights,40.66891,-73.9533,Private room,50,2,4,2017-07-24,0.10,1,0 +9864121,Chelsea Studio - great city views,39322,Katrina,Manhattan,Midtown,40.74612,-73.98948,Entire home/apt,145,21,0,,,1,0 +9864137,Townhouse in beautiful brownstone area!,3011547,Wendy,Brooklyn,Boerum Hill,40.68651,-73.98624,Entire home/apt,425,14,4,2018-11-01,0.09,3,205 +9864199,Greenwich Village Penthouse,38795245,Tomo,Manhattan,Greenwich Village,40.73418,-73.99887,Entire home/apt,275,10,0,,,1,0 +9864749,Spacious Bedroom in Flat Iron,50769650,Miguel,Manhattan,Midtown,40.74501,-73.98574,Private room,150,4,0,,,1,0 +9864900,SPACIOUS MIDTOWN APT WITH BACKYARD,50770601,Diana,Manhattan,Midtown,40.75622,-73.96467,Entire home/apt,229,1,0,,,5,306 +9864926,GRAMERCY 1 BD APARTMENT - CENTRAL!!,50770601,Diana,Manhattan,Gramercy,40.73683,-73.97926,Entire home/apt,200,1,1,2016-06-06,0.03,5,335 +9865262,Sunny 3 bedroom LES apartment,50772475,Megan,Manhattan,Lower East Side,40.7201,-73.98984,Entire home/apt,300,3,1,2015-12-13,0.02,1,0 +9865344,Room in beautiful Ditmas Park,50772718,Ross,Brooklyn,Flatbush,40.63443,-73.96703,Private room,47,4,2,2016-07-02,0.05,1,0 +9865374,Lovely 1Br Near Highline! (+2 cats),13757674,Elisabeth,Manhattan,Chelsea,40.74807,-74.00209,Entire home/apt,200,3,0,,,1,0 +9865506,Modern & Sun Filled 1BR in Gramercy,26920640,Kendall,Manhattan,Gramercy,40.73637,-73.98107,Entire home/apt,200,2,2,2016-03-27,0.05,1,0 +9865901,"Quiet, Spacious Studio - Moments from attractions!",109879,Anna,Manhattan,Hell's Kitchen,40.76355,-73.98815,Entire home/apt,180,7,5,2017-06-08,0.19,1,0 +9866039,"Modern, Large & Cozy 1 BR NYC Apt",314008,Charline,Manhattan,Midtown,40.75247,-73.97196,Entire home/apt,270,4,8,2018-04-10,0.19,1,0 +9866779,Big bedroom with private bathroom!,50680795,Sierra,Manhattan,Harlem,40.82976,-73.94663,Private room,30,8,1,2016-01-02,0.02,1,0 +9867629,Spacious Apt in East Williamsburg,8013847,Michole,Brooklyn,Williamsburg,40.70774,-73.94139,Entire home/apt,170,2,17,2019-04-28,0.44,2,270 +9872904,Room in lovely LES apartment,29111960,Daniel,Manhattan,Lower East Side,40.72168,-73.99183,Private room,55,7,1,2015-12-12,0.02,1,0 +9874042,Modern Bushwick Apt,4498059,Claire,Brooklyn,Bushwick,40.70419,-73.92114,Entire home/apt,185,2,0,,,1,0 +9874418,Private room in Greenpoint,7410082,Ricardo,Brooklyn,Greenpoint,40.72515,-73.9397,Private room,30,8,1,2016-01-05,0.02,1,0 +9874710,Lux 1BR in the heart of NYC Theater district!,30283594,Kara,Manhattan,Theater District,40.76118,-73.98535,Entire home/apt,139,30,1,2017-05-17,0.04,121,306 +9875791,Cozy Big Room Next To Central Park,14811787,Will,Manhattan,Upper East Side,40.76678,-73.95171,Private room,101,3,4,2019-06-29,0.15,2,345 +9875822,"Sunny, Quiet, Huge Room in UWS",36830075,Camila,Manhattan,Harlem,40.8292,-73.94874,Private room,85,4,0,,,2,0 +9876335,No Sleep 'Till Brooklyn! 2 Train (accommodates 1),37401126,Leah,Brooklyn,East Flatbush,40.64165,-73.94062,Private room,50,2,32,2019-07-04,0.74,4,362 +9876492,"Spacious Room in Bushwick, Brooklyn",22967540,Anna,Brooklyn,Bushwick,40.70079,-73.92095,Private room,38,7,3,2016-02-29,0.07,1,0 +9876971,"❤️ of Wburg, 2.5 Rms, Sep Entrances",1869332,Elli,Brooklyn,Williamsburg,40.71947,-73.95677,Entire home/apt,219,30,3,2017-05-21,0.09,3,36 +9877776,Standard Triple Room,48059119,Wolcott,Manhattan,Midtown,40.74673,-73.98667,Private room,325,1,0,,,3,360 +9879167,Beautiful apartment in Williamsburg,1090021,Ian,Brooklyn,Williamsburg,40.714,-73.94062,Entire home/apt,100,20,0,,,1,51 +9879216,Stay in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.71811,-73.96222,Private room,69,3,0,,,3,0 +9879235,Luxury 1 Bedroom Apt. in Midtown,50831724,Humberto,Manhattan,Hell's Kitchen,40.76234,-73.98732,Entire home/apt,275,2,6,2016-09-05,0.15,1,0 +9879556,**Luxury 1 Bedroom Upper East Side NYC Apt,30283594,Kara,Manhattan,Upper East Side,40.76257,-73.95915,Entire home/apt,249,30,1,2018-01-25,0.06,121,273 +9879796,Modern 2 Bedroom by Memorial Sloan Kettering!,30283594,Kara,Manhattan,Upper East Side,40.76429,-73.95774,Entire home/apt,249,30,0,,,121,272 +9880049,Furnished 1BR apt. near Empire State Building!,30283594,Kara,Manhattan,Midtown,40.7655,-73.98308,Entire home/apt,239,30,0,,,121,352 +9880140,"Huge amazing 1bdrm, Upper Manhattan",3460956,Anya & Marco,Manhattan,Washington Heights,40.85884,-73.93356,Entire home/apt,100,5,13,2018-02-19,0.35,1,0 +9880294,Bohemian Bushwick Loft,2569188,Ana,Brooklyn,Bushwick,40.70021,-73.94081,Private room,49,1,2,2015-12-26,0.05,1,0 +9880495,NYC Midtown West Luxury 1 bedroom apartment!,30283594,Kara,Manhattan,Midtown,40.76555,-73.98224,Entire home/apt,239,30,0,,,121,351 +9880664,A TASTE OF BROOKLYN,21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68243,-73.9534,Entire home/apt,150,2,2,2016-10-10,0.06,2,364 +9880673,Lavish 1BR apt. near Madison Square Park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76702,-73.9834,Entire home/apt,239,30,0,,,121,352 +9880827,NYC luxury 1 BR apt near the Chrysler Building!,30283594,Kara,Manhattan,Midtown,40.76693,-73.98139,Entire home/apt,239,30,0,,,121,352 +9881195,HUGE Apartment - Close to Subway,5913612,John-Paul,Queens,Astoria,40.76197,-73.92208,Entire home/apt,150,1,1,2016-01-03,0.02,1,0 +9881339,light filled chic west village apt,23500650,Victoria,Manhattan,West Village,40.7385,-74.00378,Entire home/apt,200,1,0,,,1,0 +9881516,Private Bedroom in Heart of NYC,50839249,Alexandra,Manhattan,Chelsea,40.74836,-73.99031,Private room,50,7,0,,,1,0 +9881685,Upscale and spacious 2bed/2bath Midtown West apt.,30283594,Kara,Manhattan,Midtown,40.76665,-73.98281,Entire home/apt,190,30,1,2017-04-30,0.04,121,286 +9882012,Stay in an artist warehouse!,5229579,Ryan,Brooklyn,Williamsburg,40.71801,-73.96405,Private room,59,3,0,,,3,0 +9882147,Private Room + Office in Duplex,7408257,Jocelyn,Brooklyn,Bedford-Stuyvesant,40.6948,-73.95101,Private room,40,15,0,,,1,0 +9882254,Owl's Landing - Garden Room,50068597,Alex,Staten Island,Stapleton,40.63516,-74.07735,Private room,52,2,137,2019-07-01,3.17,3,340 +9882271,Sunny Greenpoint minimalist rental,4483467,Daniel,Brooklyn,Greenpoint,40.73081,-73.95466,Entire home/apt,89,2,2,2017-05-15,0.07,1,0 +9882440,"Spectacular, high-end 2BR apt close to Bryant Park",30283594,Kara,Manhattan,Hell's Kitchen,40.76704,-73.98355,Entire home/apt,369,30,3,2019-01-10,0.07,121,345 +9883197,old style tenement apartment,50846116,Sarah Justine,Manhattan,Lower East Side,40.72156,-73.98866,Entire home/apt,100,5,0,,,1,0 +9883768,Best location in Williamsburg!,21966105,Ryan,Brooklyn,Williamsburg,40.72049,-73.95894,Private room,90,6,2,2018-07-31,0.16,1,331 +9883870,2 BR Apt Near Central Park UES,22962853,Brandon,Manhattan,Upper East Side,40.78306,-73.94581,Entire home/apt,115,2,8,2016-03-20,0.18,1,0 +9884175,LES Private Room + Private Bath,8936829,Ashley,Manhattan,Lower East Side,40.72282,-73.98908,Private room,150,20,0,,,1,0 +9884237,Central Park Luxury Studio,16177882,Craig,Manhattan,Midtown,40.76566,-73.97873,Entire home/apt,400,1,0,,,1,0 +9884516,Gorgeous Space in LIC/Astoria,47653056,Jamie,Queens,Long Island City,40.75342,-73.9237,Private room,66,7,1,2016-01-05,0.02,1,0 +9884725,New Condo Studio in Downtown NYC,17108566,Faline,Manhattan,East Village,40.73271,-73.98638,Entire home/apt,180,2,0,,,1,0 +9885430,West Village 1-bedroom in co-op,40302046,David,Manhattan,West Village,40.73194,-74.00241,Entire home/apt,149,3,0,,,1,0 +9885501,Private Bedroom in LES/East Village,1762558,Evan,Manhattan,East Village,40.72143,-73.97892,Private room,89,2,24,2017-04-28,0.56,1,0 +9885815,"Studio in Chelsea, New York",42453789,Bernardo,Manhattan,Chelsea,40.74192,-73.99677,Entire home/apt,85,7,0,,,1,0 +9885866,"",37306329,Juliette,Manhattan,Chinatown,40.71632,-73.99328,Private room,67,4,0,,,1,0 +9886034,Charming Crown Heights Apartment,50857647,Shaina,Brooklyn,Crown Heights,40.67797,-73.95397,Private room,75,14,0,,,1,0 +9886606,Beautiful Bedroom & Bath For Rent!!,221266,James,Manhattan,East Harlem,40.79108,-73.94642,Private room,94,2,3,2019-02-12,0.07,1,0 +9886735,Bohemian Room in 2 bdr apt.,17023017,Sade,Brooklyn,Crown Heights,40.66555,-73.95613,Private room,80,2,0,,,1,0 +9887326,"HUGE room, close to subway and CU!",33499326,Hannah,Manhattan,Upper West Side,40.79961,-73.96654,Private room,70,15,2,2016-06-25,0.05,1,0 +9887681,NEW SUNNY PEACEFUL ROOM in Prime Williamsburg,8119817,Mila,Brooklyn,Williamsburg,40.71821,-73.94116,Private room,115,2,0,,,2,121 +9887763,Spacious and comfortable rm in LIC,31534322,Nia,Queens,Long Island City,40.7484,-73.94604,Private room,90,2,59,2019-01-02,1.37,4,33 +9888174,2-bd apt 20min metro to Manhattan,56326,Mehrnoush,Brooklyn,Flatbush,40.65234,-73.95329,Entire home/apt,155,1,1,2016-01-06,0.02,1,0 +9894602,Large Room in Sunny Astoria Apt,10456845,Taylor,Queens,Astoria,40.75764,-73.92283,Private room,65,1,2,2018-08-11,0.05,2,0 +9894741,Uptown Chic,1418854,Charli,Manhattan,Harlem,40.83021,-73.94765,Private room,60,2,0,,,1,0 +9894820,Upper East Side Manhattan 2 Bedroom,50894847,Aidan,Manhattan,Upper East Side,40.7692,-73.96754,Entire home/apt,149,1,1,2015-12-19,0.02,1,0 +9895587,"Exposed brick bedroom, LIC Queens",31534322,Nia,Queens,Long Island City,40.7484,-73.94651,Private room,70,2,113,2019-05-11,2.60,4,63 +9896731,BEDROOM IN UWS,50448556,Miguel,Manhattan,Harlem,40.80489,-73.95171,Private room,100,2,1,2015-12-09,0.02,5,0 +9897418,Beautiful 1B apartment in Harlem!,49120239,Milena,Manhattan,Harlem,40.81437,-73.93833,Entire home/apt,120,7,0,,,1,0 +9898107,Murray Hill Luxury Furnished Rental,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74636,-73.9783,Entire home/apt,150,30,1,2016-02-19,0.02,31,125 +9898409,Small Cozy Studio - Brownstone,40709140,Lee,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94758,Entire home/apt,160,1,0,,,1,0 +9898894,"Charming, spacious UES studio",19529891,Shilpa,Manhattan,Upper East Side,40.7687,-73.9556,Entire home/apt,135,3,0,,,1,0 +9899132,Spacious Private 1-Bedroom Apartment,9995094,Jim,Queens,Long Island City,40.74691,-73.95348,Entire home/apt,200,3,93,2019-07-03,2.17,1,86 +9899499,Beautiful Greenpoint Apartment,10836122,Laurance,Brooklyn,Greenpoint,40.72522,-73.94022,Private room,50,1,1,2015-12-26,0.02,1,0 +9899970,Cozy Nolita Apartment,2574856,Audrey,Manhattan,Nolita,40.72051,-73.99513,Entire home/apt,225,2,29,2019-04-27,0.68,1,176 +9900100,"Sunny, Cozy Double Room in Brooklyn",34991003,Karen,Brooklyn,East Flatbush,40.6458,-73.92384,Private room,35,7,9,2019-05-20,0.39,3,326 +9900120,Bedroom built for... just sleeping,50914877,Kyle,Manhattan,Harlem,40.8185,-73.9442,Private room,45,4,1,2015-12-30,0.02,1,0 +9900224,"Quiet, private room Upper West Side",3879284,Aidan,Manhattan,Upper West Side,40.77578,-73.97794,Private room,140,2,16,2018-04-01,0.47,1,0 +9900885,Entire Huge East Harlem Apt,1345812,David,Manhattan,East Harlem,40.79795,-73.9442,Entire home/apt,160,13,21,2019-07-01,0.88,1,0 +9901423,Sunny Room in Brooklyn,34991003,Karen,Brooklyn,East Flatbush,40.64604,-73.92511,Private room,35,3,19,2018-09-22,0.47,3,272 +9901546,cute spacious bk apartment,914972,Diana,Brooklyn,Prospect Heights,40.67946,-73.96494,Entire home/apt,125,2,7,2018-12-09,0.19,1,0 +9901614,Modern sunny Wall St. apartment,6567286,David,Manhattan,Financial District,40.70844,-74.0124,Entire home/apt,160,3,1,2016-01-01,0.02,1,0 +9901706,Cute big one bedroom,1904415,Natalie,Manhattan,Upper West Side,40.77789,-73.97701,Entire home/apt,180,1,0,,,1,0 +9902123,PERFECT 1 BEDROOM NEAR CENTRAL PARK,50904121,Alex,Manhattan,Upper West Side,40.78366,-73.97899,Entire home/apt,179,2,5,2016-06-22,0.12,1,0 +9902263,Upper West Side furnished studio,2350080,Yiwei,Manhattan,Upper West Side,40.8004,-73.96849,Entire home/apt,120,9,0,,,1,0 +9902314,Room in dreamy Greenpoint loft,35407948,Steph,Brooklyn,Greenpoint,40.73739,-73.95568,Private room,70,1,2,2017-01-01,0.05,1,0 +9902343,Cozy Williamsburg,5325431,Bil,Brooklyn,Williamsburg,40.71374,-73.96336,Private room,68,2,0,,,1,0 +9902915,BEDROOM IN UWS,50448556,Miguel,Manhattan,Harlem,40.80519,-73.95091,Private room,100,6,0,,,5,0 +9902932,Big! 2.5 BR Heart of West Village,6079156,Doug,Manhattan,West Village,40.73434,-74.00462,Entire home/apt,300,4,104,2019-07-05,2.46,1,58 +9903132,large Tribeca loft,50925964,Patrice,Manhattan,Chinatown,40.71844,-74.00228,Entire home/apt,152,3,16,2019-06-03,0.37,1,0 +9904386,East Village / Alphabety City Apt,10396448,Caroline,Manhattan,East Village,40.72626,-73.97822,Private room,100,1,4,2016-06-27,0.09,1,0 +9904570,HighRise Bryant Park Apt w NYC View,3631872,Rui,Manhattan,Midtown,40.75342,-73.98729,Entire home/apt,200,4,3,2016-03-22,0.07,1,0 +9905142,New York NY Downtown (East Village),15869370,Bernie,Manhattan,East Village,40.73036,-73.98673,Entire home/apt,250,7,20,2019-05-13,0.47,1,13 +9905474,Hamilton Heights Gem,246710,Daniel,Manhattan,Harlem,40.8235,-73.95139,Entire home/apt,200,2,0,,,1,0 +9906178,"Clean, cozy, & renovated apartment",11940121,Madison,Manhattan,Greenwich Village,40.73007,-74.00193,Entire home/apt,200,2,2,2016-04-10,0.05,1,0 +9906415,"Spacious, modern 1BR by Times Sq",50939666,Selin,Manhattan,Hell's Kitchen,40.76109,-73.99417,Entire home/apt,245,2,1,2016-06-26,0.03,1,0 +9906768,Soho/Greenwich Village Bedroom,7655328,Jessica,Manhattan,Greenwich Village,40.72791,-73.99997,Private room,79,1,3,2016-06-27,0.07,3,0 +9907257,"1 Bdr. Lower East Side, NY, 2 beds",50943387,Lincoln,Manhattan,Lower East Side,40.71759,-73.9842,Entire home/apt,175,1,1,2016-01-03,0.02,1,0 +9908067,"LARGE, SUNNY ROOM!",15381858,Craig,Brooklyn,Clinton Hill,40.68336,-73.96122,Private room,45,1,0,,,1,0 +9908400,East Village 1BR with private patio,29505367,Lenka,Manhattan,East Village,40.72738,-73.98076,Entire home/apt,180,3,0,,,1,0 +9910133,1 bed cozy studio @ Gramercy on Lex,17131739,Xenia,Manhattan,Midtown,40.7415,-73.98354,Entire home/apt,139,7,1,2016-01-02,0.02,1,0 +9911887,Bright Loft in Heart of Williamsbug,1999466,Robin,Brooklyn,Williamsburg,40.71432,-73.94615,Entire home/apt,220,2,25,2019-01-01,0.65,1,5 +9915508,Luxury Private Room With A View!,14537404,Danielle,Brooklyn,Fort Greene,40.69283,-73.98061,Private room,70,2,6,2016-10-16,0.14,1,0 +9915643,Lovely Suite (private bath) near Botanical garden,33021531,Felix,Brooklyn,Prospect-Lefferts Gardens,40.66184,-73.96001,Private room,99,1,186,2019-07-04,4.73,1,232 +9916371,Beautiful stylish Brooklyn apartmen,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94138,Entire home/apt,120,3,3,2016-08-09,0.08,2,0 +9917384,Sunny Brooklyn 1 BR Condo with Balcony,50988308,Ashley,Brooklyn,Gowanus,40.66896,-73.9918,Entire home/apt,178,2,12,2018-12-09,0.56,1,0 +9918524,Queen size room near Columbia Uni.,24919557,Ana Carolina,Manhattan,Morningside Heights,40.80756,-73.96724,Private room,55,21,0,,,1,0 +9918963,Brooklyn Apt with Patio in Heart of Fort Greene,50994782,Clay,Brooklyn,Fort Greene,40.68974,-73.97316,Entire home/apt,124,2,20,2019-06-01,0.49,1,0 +9919042,East Village Two Bedroom,50997070,Panayiota,Manhattan,East Village,40.72964,-73.98095,Entire home/apt,380,1,0,,,1,0 +9919518,Spacious bedroom in shared 3 bdrm,22954228,Cassandra,Brooklyn,Prospect-Lefferts Gardens,40.65433,-73.96117,Private room,55,3,0,,,2,0 +9919728,Nice Queens townhome with parking!,50997424,Mark,Queens,Middle Village,40.71578,-73.87713,Entire home/apt,250,7,5,2019-05-28,0.13,2,363 +9920191,Bright 2 Bdrm Apt in Williamsburg,6896056,Jonathan,Brooklyn,Williamsburg,40.71569,-73.93735,Entire home/apt,180,7,0,,,1,0 +9920363,Convenient Ridgewood Brownstone,50997424,Mark,Queens,Ridgewood,40.70422,-73.8984,Entire home/apt,375,4,5,2019-05-17,0.13,2,364 +9920607,Perfectly Located West Village 2BR,15445809,Andrew,Manhattan,Greenwich Village,40.73383,-73.99899,Entire home/apt,200,2,0,,,1,0 +9920626,Gorgeous 2BD LES Apartment,36054372,Camille,Manhattan,Chinatown,40.71401,-73.99063,Entire home/apt,180,1,0,,,1,0 +9920941,Jewel On Parkside,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95934,Private room,65,28,11,2019-06-01,0.26,3,320 +9921366,Luxury Apartment w/ Rooftop Patio,51002691,Paul,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94537,Entire home/apt,65,1,0,,,1,0 +9921802,Sunny Cozy Room in Lovely Bed-Stuy,19844147,Emory,Brooklyn,Bedford-Stuyvesant,40.68125,-73.94044,Private room,60,3,8,2019-02-10,0.58,1,296 +9922513,Cozy Room in Hell's Kitchen,49964890,Hanson,Manhattan,Hell's Kitchen,40.76684,-73.98766,Private room,60,1,1,2015-12-26,0.02,1,0 +9922753,Private room in Park Slope,51009239,Lilly,Brooklyn,South Slope,40.66249,-73.97921,Private room,45,1,1,2016-01-05,0.02,1,0 +9923319,Private room in brand new condo,3400687,Allen,Brooklyn,Flatbush,40.65353,-73.95528,Private room,50,1,0,,,1,0 +9923485,Quiet Brooklyn Apartment,5879729,Stephanie,Brooklyn,Williamsburg,40.7138,-73.94581,Entire home/apt,74,1,1,2016-01-03,0.02,2,27 +9923887,Large (150sf) Sun-Drenched Room,17646340,Donald,Brooklyn,Williamsburg,40.70293,-73.94279,Private room,50,7,26,2016-08-04,0.63,2,0 +9924665,Private Room in Greenpoint,26714887,Anthony,Brooklyn,Greenpoint,40.73036,-73.95453,Private room,60,1,3,2016-08-23,0.07,2,0 +9925100,Luxury Apartment on Park ave,29413554,Hoda,Manhattan,Flatiron District,40.73926,-73.98758,Entire home/apt,150,1,1,2015-12-28,0.02,1,0 +9925373,Spacious East Williamsburg Duplex!,10799035,Alana,Brooklyn,Williamsburg,40.70728,-73.94144,Private room,55,1,0,,,1,0 +9925507,The Fig: Brooklyn's TinyHome Cabin in Williamsburg,2955215,Bee,Brooklyn,Williamsburg,40.71255,-73.94881,Entire home/apt,40,1,95,2019-06-22,2.24,1,7 +9925760,300sqft Bedroom in LES Duplex,51021121,Brian,Manhattan,Lower East Side,40.7202,-73.98284,Private room,120,1,1,2015-12-30,0.02,1,0 +9926058,"Spacious, Private Bushwick Room",46887682,Anusheh,Brooklyn,Bushwick,40.7049,-73.92,Private room,35,1,1,2015-12-26,0.02,1,0 +9926377,Amazing 1 Bedroom Greenwich Village,1455309,Scott,Manhattan,Greenwich Village,40.7274,-73.99991,Entire home/apt,250,3,0,,,1,0 +9926520,BK/NYC Apt near Prospect Prk,432318,Taylor,Brooklyn,Kensington,40.644,-73.98091,Entire home/apt,85,7,3,2019-01-02,0.14,1,0 +9926599,Spacious Studio Size One bedroom,16616941,Dave,Manhattan,Murray Hill,40.74807,-73.98091,Private room,125,1,0,,,1,0 +9926792,Clean Spacious Artsy Private Room,6161265,John,Manhattan,Hell's Kitchen,40.75578,-73.99523,Private room,146,2,26,2018-06-07,0.60,1,30 +9926917,Large Private Bedroom,51027744,Hamid,Brooklyn,Crown Heights,40.67621,-73.94913,Private room,99,1,4,2017-04-15,0.12,1,342 +9926940,Lofted Tuck-A-Way Private Bedroom,30283911,Rachel,Brooklyn,Bushwick,40.69924,-73.92392,Private room,69,2,1,2016-01-08,0.02,1,0 +9927400,bedroom in converted warehouse,22414947,Frank,Brooklyn,Williamsburg,40.71147,-73.96745,Private room,70,1,1,2016-01-05,0.02,1,0 +9927666,Clean Spacious Apt in Williamsburg,23599716,Derrick,Brooklyn,Williamsburg,40.71896,-73.9592,Entire home/apt,159,3,6,2019-06-16,0.15,2,0 +9928024,Get cozy on a historic Brooklyn St,27371503,Erin,Brooklyn,Bedford-Stuyvesant,40.68389,-73.92659,Private room,40,1,0,,,1,0 +9928031,Minimalist Room in Hip Williamsburg,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71081,-73.94061,Private room,65,2,15,2019-07-04,5.62,3,155 +9928644,Cool room in a Loft in Greenpoint/Williamsburg,10677584,Angelina,Brooklyn,Greenpoint,40.73271,-73.95751,Private room,45,30,5,2017-02-28,0.14,4,0 +9931841,Large Room Close to Midtown,61042,Marlon,Manhattan,Harlem,40.82198,-73.95418,Private room,42,5,7,2018-10-14,0.16,6,24 +9933667,Large Sunny Studio with a View!,31222791,Emily,Brooklyn,Prospect-Lefferts Gardens,40.65986,-73.96163,Entire home/apt,100,1,15,2017-12-25,0.35,1,0 +9934510,Creative Bed-Stuy Brownstone,2670322,Amina,Brooklyn,Bedford-Stuyvesant,40.6894,-73.9518,Private room,40,2,0,,,1,0 +9934696,Super cozy Chic - Brooklyn - Williamsburg,51006349,Medina,Brooklyn,Williamsburg,40.71269,-73.94979,Entire home/apt,175,2,16,2019-06-08,0.37,1,364 +9935095,"Entire pvt. house for rent ,2 floors + 3 bdrms., 2.5 baths. Newly renovated,avail. From Nov (Phone number hidden by Airbnb) thru April (Phone number hidden by Airbnb) / month",51024536,Nadia,Brooklyn,Sheepshead Bay,40.59195,-73.94639,Private room,500,30,0,,,2,173 +9935509,Bright Bedroom in Lower East Side,12838834,Tania,Manhattan,Lower East Side,40.72143,-73.98434,Private room,90,5,5,2018-01-01,0.12,2,0 +9935737,2 bedrooms avail. In my house,51024536,Nadia,Brooklyn,Crown Heights,40.66565,-73.95006,Entire home/apt,400,30,0,,,2,173 +9935888,Private Apartment w Outside Space,28565101,Robert,Brooklyn,Gowanus,40.67264,-73.98802,Entire home/apt,130,2,45,2019-06-30,1.05,1,58 +9935894,Spacious living area near Q and 6 train! :),19242683,Jennifer,Manhattan,East Harlem,40.78929,-73.94178,Shared room,70,1,4,2016-12-27,0.09,1,0 +9935949,Spacious Room in Great Neighborhood,1504702,Casey,Brooklyn,Clinton Hill,40.69353,-73.96784,Private room,48,1,2,2016-01-02,0.05,1,0 +9935992,Lux Studio Apt in Downtown NYC - Gym included!,30283594,Kara,Manhattan,Financial District,40.70749,-74.01413,Entire home/apt,169,30,2,2017-11-17,0.06,121,364 +9936109,"Comfy apartment, close to train, beautiful street!",970003,Cyntia,Manhattan,Morningside Heights,40.81218,-73.96112,Entire home/apt,200,3,1,2016-06-13,0.03,1,0 +9936805,"Spacious, Bright Studio w/ Balcony",2239025,Kelvin,Brooklyn,South Slope,40.66495,-73.98989,Entire home/apt,100,3,0,,,1,0 +9937307,Gigantic private room in BedStuy,17543924,Jet,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92987,Private room,50,6,8,2017-07-01,0.19,1,0 +9937333,Bright Studio Loft Bed Stuy,1714427,Minka,Brooklyn,Bedford-Stuyvesant,40.67902,-73.94747,Entire home/apt,80,30,7,2016-11-29,0.16,1,0 +9937434,"Upper WestSide, Spacious 1 Bdrm Apt",13169974,Paul,Manhattan,Upper West Side,40.78048,-73.98211,Entire home/apt,200,1,11,2018-05-18,0.26,1,0 +9937547,Upscale 2-Bedroom Upper Eastside Apt,30283594,Kara,Manhattan,Upper East Side,40.76453,-73.95911,Entire home/apt,369,30,0,,,121,297 +9937558,Central Park South Luxury 2 Bedroom 2 Bathroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76625,-73.97886,Entire home/apt,215,29,4,2018-03-15,0.11,31,146 +9937667,Central Park South Luxury 3 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76542,-73.97844,Entire home/apt,249,30,5,2019-02-15,0.12,31,125 +9938066,Madison Avenue Studio Suite (4),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74892,-73.9828,Entire home/apt,110,30,7,2018-12-15,0.17,31,179 +9938208,Madison Avenue Studio Suite (3),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74909,-73.98253,Entire home/apt,110,30,1,2016-02-15,0.02,31,145 +9938594,Sublet in Bushwick 1 month,45928403,Iris,Brooklyn,Bushwick,40.69525,-73.90848,Private room,30,1,0,,,1,0 +9938746,Spacious Room in Williamsburg,1968682,Jay,Brooklyn,Williamsburg,40.70926,-73.95037,Private room,50,2,0,,,1,0 +9939029,"Bright and Cozy Studio, Park Slope!",5417308,Tamara,Brooklyn,South Slope,40.66557,-73.97896,Entire home/apt,86,30,1,2016-02-21,0.02,1,0 +9940253,COZY&BIG ROOM FOR YOU:),51087754,卷妮,Manhattan,Roosevelt Island,40.76046,-73.95125,Private room,79,2,3,2016-05-29,0.07,1,0 +9940337,Top floor of Brooklyn townhouse - South Slope,14314420,Josh,Brooklyn,South Slope,40.66086,-73.98421,Entire home/apt,150,2,21,2019-04-21,0.82,1,11 +9940966,Best of Both Worlds Chelsea Studio,51088203,John,Manhattan,Chelsea,40.74676,-73.99562,Entire home/apt,199,4,52,2017-07-17,1.25,1,1 +9941890,Artsy 2-bdrm apartment Sleeps 6. 1 min from Subway,793833,Jason,Brooklyn,Bedford-Stuyvesant,40.6793,-73.91968,Entire home/apt,85,2,133,2019-06-19,3.25,1,34 +9943111,Large Manhattan Private Room,51099309,Nathan And Brock,Manhattan,Inwood,40.86615,-73.92332,Private room,50,1,0,,,1,0 +9943258,Cozy studio in Upper West Side,20765208,Martina,Manhattan,Upper West Side,40.78148,-73.97869,Entire home/apt,140,4,0,,,1,0 +9943427,Cozy Studio 15 minutes to Manhattan,26444500,Hana,Queens,Sunnyside,40.74024,-73.92428,Private room,59,1,0,,,1,0 +9943776,Walk to the American Museum of Natural History,37441611,Jamie,Manhattan,Upper West Side,40.78469,-73.9738,Entire home/apt,330,2,119,2019-06-19,2.78,1,258 +9943876,"Bright, sunny, cozy, convenient Williamsburg 1-BR",19758408,Nicholas,Brooklyn,Williamsburg,40.71817,-73.95635,Entire home/apt,175,2,3,2016-07-05,0.08,1,0 +9944013,Large bedroom in chinatown,50615055,Daniel,Manhattan,Chinatown,40.71521,-73.99606,Private room,91,1,1,2016-01-03,0.02,1,0 +9944320,Nice Spacious Room for a Month,19878684,Lakshey,Queens,Ozone Park,40.68247,-73.84368,Shared room,25,10,0,,,1,0 +9944415,Clean and Cozy BedStuy Apt,47060168,Serik,Brooklyn,Bedford-Stuyvesant,40.69345,-73.93304,Entire home/apt,75,7,2,2016-02-27,0.05,1,0 +9944426,Lower Manhattan Luxury,51105827,Dax,Manhattan,Battery Park City,40.71192,-74.01572,Entire home/apt,225,90,1,2016-03-18,0.02,1,362 +9944710,Cozy Room in the heart of Hell’s Kitchen!,51108205,Alyssa,Manhattan,Hell's Kitchen,40.76322,-73.99354,Private room,66,2,0,,,1,0 +9944808,Modern Brooklyn Duplex,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68818,-73.93826,Private room,40,1,4,2019-04-15,0.12,4,365 +9944860,arty east village,663517,D,Manhattan,Lower East Side,40.71908,-73.98633,Entire home/apt,174,2,142,2019-06-25,3.31,1,198 +9945127,Convenient & Spacious & Feel Good Apartment,14521821,Koen,Brooklyn,Brooklyn Heights,40.69261,-73.99252,Entire home/apt,200,2,2,2016-07-25,0.05,1,0 +9945496,Luxury Upscale Apartment in Midtown,12574877,Leroy,Manhattan,Hell's Kitchen,40.76443,-73.98728,Entire home/apt,150,1,65,2019-06-19,1.56,1,186 +9945515,Sunny and Cozy Private Room by L train,8515724,J,Brooklyn,Williamsburg,40.70896,-73.94129,Private room,102,1,30,2018-08-27,0.70,3,10 +9950923,Bright Sunny Soho /W village loft,51137245,Robert,Manhattan,Greenwich Village,40.72778,-73.99899,Private room,85,2,0,,,1,0 +9952636,Bright and stylish BR in trendy Brooklyn. Yard!,820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94204,Private room,76,1,25,2019-07-01,0.58,3,141 +9953403,Marc Alfred,2361525,Marc,Brooklyn,Crown Heights,40.67565,-73.91582,Shared room,75,1,2,2019-04-06,0.19,1,318 +9953443,Large 1 BR LES,3598016,Beatriz,Manhattan,Lower East Side,40.71607,-73.98439,Entire home/apt,135,2,0,,,1,0 +9953924,Spacious Kips Bay NYC studio !,1397160,Jessie,Manhattan,Kips Bay,40.74238,-73.97652,Entire home/apt,175,2,1,2016-01-02,0.02,1,0 +9954585,Heart of Williamsburg 1 bedroom,201232,Brittany,Brooklyn,Williamsburg,40.71104,-73.96287,Entire home/apt,100,5,3,2016-05-29,0.07,1,0 +9955143,"Sunny, comfortable LES apartment for two guests",40597585,Audra,Manhattan,Lower East Side,40.71282,-73.98915,Entire home/apt,145,3,70,2019-06-29,1.64,1,230 +9955765,Comfy room in a loft in Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73343,-73.95638,Private room,49,3,3,2018-01-16,0.10,4,244 +9955886,Sunny Peaceful Furnished Room w/Dresser,16568093,Karla,Manhattan,East Harlem,40.79111,-73.94077,Private room,50,3,1,2016-07-19,0.03,1,0 +9956834,Historic Striver's Row Apartment,18999923,Guirlaine,Manhattan,Harlem,40.82011,-73.94434,Entire home/apt,120,3,92,2019-06-20,2.39,1,32 +9956933,Cute Madison Ave Apartment,10338497,Ashley,Manhattan,Upper East Side,40.78614,-73.95541,Private room,50,10,0,,,1,0 +9957205,Beautiful Bedford Bedroom.,3358001,Erica,Brooklyn,Williamsburg,40.71748,-73.95685,Private room,50,6,5,2017-06-10,0.13,1,0 +9957535,1 MASTER BR-FULL BATH,50735735,Sidika,Queens,Richmond Hill,40.70249,-73.83251,Private room,60,2,10,2017-07-01,0.23,1,0 +9958322,"1BD,shared bath&kitchen in lic",31534322,Nia,Queens,Long Island City,40.74767,-73.94468,Private room,55,2,107,2019-06-23,2.47,4,46 +9958442,NYC 2BR ap for HOLIDAYS in the CITY,10558287,Julian,Manhattan,Kips Bay,40.7439,-73.97974,Entire home/apt,199,10,0,,,1,0 +9958558,Lincoln Center Fully Furnished,51171909,Siyi,Manhattan,Upper West Side,40.77481,-73.98144,Private room,90,20,12,2018-08-31,0.28,1,23 +9959328,"Beautiful, bright, serene Astoria 1 bedroom",51176545,Jennifer,Queens,Astoria,40.77168,-73.9222,Entire home/apt,189,1,0,,,1,0 +9959880,great room in sunny cornerapartment,29871124,Pieter,Manhattan,Morningside Heights,40.81508,-73.95935,Private room,49,1,1,2016-04-11,0.03,1,0 +9960135,Large Room in Spacious Apartment,42741722,Tanya,Manhattan,Harlem,40.82042,-73.95256,Private room,65,2,5,2018-04-22,0.14,2,0 +9965305,Beautiful room in Brooklyn,887115,Liis,Brooklyn,Crown Heights,40.67665,-73.95734,Private room,90,1,1,2016-01-02,0.02,1,0 +9966717,"Spacious, Sunny, Holiday in Brklyn!",51216049,Natalie,Brooklyn,Crown Heights,40.67758,-73.93547,Private room,49,1,2,2016-01-02,0.05,1,0 +9967218,"Large, Open, Beautiful Apartment",7461203,Christopher,Brooklyn,Clinton Hill,40.68715,-73.96433,Entire home/apt,75,3,4,2016-09-26,0.09,1,0 +9967360,Private room for one or two,51219881,Michele,Manhattan,Upper East Side,40.77878,-73.95148,Private room,100,1,2,2016-01-01,0.05,1,0 +9968223,Cozy Bedroom in heart of WillyBurg,23599716,Derrick,Brooklyn,Williamsburg,40.71901,-73.9594,Private room,59,3,82,2018-09-02,1.92,2,0 +9968402,"Luxurious, modern, clean studio apt",6172959,Sanjay,Manhattan,Battery Park City,40.70431,-74.0168,Entire home/apt,130,1,0,,,1,0 +9969559,Prime Upper East Side 1Br Apartment,3859737,Yuan,Manhattan,Upper East Side,40.76481,-73.95651,Entire home/apt,225,3,5,2019-06-25,0.53,1,0 +9969565,Child friendly 1 Bedroom,51230222,Hamish,Manhattan,Morningside Heights,40.80541,-73.96576,Entire home/apt,97,1,0,,,1,0 +9969773,Airy Brooklyn Townhouse,39695769,Avra,Brooklyn,South Slope,40.66719,-73.98957,Entire home/apt,250,7,0,,,1,0 +9970462,Large East Village Apartment,28336810,Gabi,Manhattan,East Village,40.72571,-73.98833,Entire home/apt,150,1,3,2016-03-15,0.07,1,0 +9970995,"Private BR in nice 4BR, Brooklyn",24332919,Gregoire,Brooklyn,Williamsburg,40.72003,-73.94147,Private room,63,7,1,2016-01-05,0.02,1,0 +9971730,Beautiful Private Apt Times Square,31068253,Trish,Manhattan,West Village,40.73342,-74.00615,Entire home/apt,200,4,10,2018-09-05,0.25,1,0 +9973134,Location Location!! 1 bed apt,7614268,Ronnie,Manhattan,West Village,40.73299,-74.00444,Entire home/apt,139,7,0,,,1,0 +9973211,"2nd Floor, 2 Family House",51248093,Amy,Queens,Ditmars Steinway,40.77623,-73.91503,Entire home/apt,250,1,0,,,1,0 +9973600,Comfortable studio in Midtown,3778297,Gabriel,Manhattan,Hell's Kitchen,40.76455,-73.98855,Entire home/apt,140,5,2,2017-01-01,0.05,1,0 +9973654,Quintessential New York Apartment,50928025,Tommy,Manhattan,Upper West Side,40.7859,-73.9779,Private room,95,1,1,2016-12-31,0.03,1,0 +9973680,Private Bedroom in Williamsburg!,33876689,Fionn,Brooklyn,Williamsburg,40.70986,-73.95927,Private room,55,7,1,2016-01-26,0.02,1,0 +9973900,Big and sunny room!,11095923,Tobias,Brooklyn,Flatbush,40.64722,-73.95987,Private room,32,10,3,2016-01-02,0.07,3,0 +9975425,Most Colorful Hamilton Heights Home,4844390,Jade,Manhattan,Harlem,40.82502,-73.95186,Entire home/apt,110,5,9,2017-10-23,0.22,1,0 +9975682,QUIET AND COZY ROOM,11069084,Laura,Brooklyn,Flatbush,40.6465,-73.96066,Private room,30,1,0,,,1,0 +9976190,Two Bedroom Apartment,46976876,Carolina,Manhattan,East Village,40.72537,-73.99054,Entire home/apt,250,2,0,,,2,0 +9976264,Spacious/Beautiful Private Room,51262617,Sandra,Brooklyn,Greenpoint,40.72722,-73.95247,Private room,100,2,101,2019-07-01,2.75,1,284 +9976536,"Safe, Convenient, Sunny apartment",4829216,Aria,Brooklyn,Kensington,40.64682,-73.98036,Entire home/apt,115,1,0,,,1,0 +9976820,Spacious UES room for your travels!,6608183,Elena,Manhattan,Upper East Side,40.76276,-73.96009,Private room,90,1,4,2016-05-28,0.09,1,0 +9976986,Charming Getaway in West Village,15523549,Tanny,Manhattan,West Village,40.73491,-74.00578,Entire home/apt,139,2,11,2019-06-02,0.27,1,49 +9977113,"Huge Private Room, great location",8595112,Adrien,Manhattan,Midtown,40.75606,-73.97108,Private room,150,2,2,2016-02-15,0.05,2,0 +9977283,Tribeca launchpad!,929983,Franck,Manhattan,Tribeca,40.71854,-74.00439,Private room,170,5,7,2019-04-29,0.56,1,6 +9977322,Private bedroom in Tribeca,12573771,Guerin,Manhattan,Tribeca,40.71689,-74.00563,Private room,75,1,0,,,1,0 +9978426,"Bright, spacious BR in East Village",5904463,Katherine,Manhattan,East Village,40.72431,-73.98312,Private room,120,1,1,2016-01-02,0.02,4,0 +9978606,"Bright, brick BR in East Village",5904463,Katherine,Manhattan,East Village,40.7237,-73.98223,Private room,80,1,2,2016-01-05,0.05,4,0 +9978664,"Clean, private bedroom in Bushwick",34010790,Saif,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9206,Private room,50,1,0,,,1,0 +9978722,"Private, comfy BR in East Village",5904463,Katherine,Manhattan,East Village,40.72504,-73.98242,Private room,100,1,0,,,4,0 +9979094,Sunny Room Downtown Queens NYC,51278789,Grace,Queens,Corona,40.74071,-73.86498,Private room,36,16,55,2019-05-28,1.43,2,110 +9979270,Clean condo apartment in TS,6837486,Onusa,Manhattan,Theater District,40.75927,-73.98646,Entire home/apt,100,1,0,,,1,0 +9979707,Lincoln Center Luxury Sunny & Modern Br,936114,Marcela,Manhattan,Upper West Side,40.77208,-73.98907,Private room,129,28,22,2019-06-30,0.52,2,261 +9984143,Quiet Riverside Park 1 bdrm w gym,51300628,Peter,Manhattan,Upper West Side,40.7939,-73.9761,Entire home/apt,199,10,0,,,1,0 +9985852,Garden View Bedroom in Brownstone,310458,Emily,Brooklyn,Park Slope,40.66588,-73.97833,Private room,60,14,1,2016-04-01,0.03,2,0 +9987456,Great location next to Times Square,45832664,Monica,Manhattan,Hell's Kitchen,40.76059,-73.99475,Private room,60,1,2,2016-02-08,0.05,1,0 +9987543,Lovely Private Browstone Apt,9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68945,-73.94595,Private room,60,1,2,2016-01-05,0.05,2,0 +9988233,Cozy Two Room Studio Astoria,404692,Romina,Queens,Astoria,40.76248,-73.91279,Entire home/apt,99,5,15,2018-06-01,0.43,1,0 +9988434,"Home in Ditmas Park, Brooklyn!",3694186,R,Brooklyn,Flatbush,40.64295,-73.96137,Entire home/apt,101,1,2,2015-12-30,0.05,1,0 +9989616,"Large, Bright, Astoria Room",10702860,Sophia,Queens,Astoria,40.76498,-73.91765,Private room,55,10,0,,,1,0 +9989842,Cozy 2 BR Apt in Prime Location!,5445371,Negar,Manhattan,Upper West Side,40.78364,-73.97632,Entire home/apt,219,2,1,2016-11-07,0.03,1,0 +9990026,NYC: AMAZING Gramercy Cool Triplex,51327044,Joanne,Manhattan,Gramercy,40.73882,-73.9857,Entire home/apt,150,7,0,,,1,0 +9990200,Artist Escape With Private Terrace,4878363,Jessie,Brooklyn,Bedford-Stuyvesant,40.68624,-73.94349,Private room,25,1,7,2018-08-28,0.19,2,8 +9990448,Luggage/Shower Depot!!!/US Open/LGA/JFK,21216008,Jose,Queens,Jackson Heights,40.75024,-73.87849,Shared room,26,1,15,2019-06-22,0.68,4,365 +9990560,Loft Room in East Williamburg,8013847,Michole,Brooklyn,Williamsburg,40.70852,-73.94387,Private room,90,2,45,2019-06-25,1.15,2,245 +9991265,Iconic NY loft apt in West village,2974643,Zoe,Manhattan,West Village,40.73105,-74.00464,Entire home/apt,500,7,0,,,1,365 +9991319,1 Bedroom Apt near the Empire State,7367006,Juanjo,Manhattan,Midtown,40.74604,-73.98555,Entire home/apt,120,1,0,,,1,0 +9992479,"Spacious room in Manhattan, NYC",51337085,Jan,Manhattan,Harlem,40.83,-73.94299,Private room,59,1,1,2016-01-06,0.02,1,0 +9992525,Huge & Beautiful Bedroom - Manhattan,34874378,Jessica,Manhattan,Harlem,40.82362,-73.95063,Private room,70,1,7,2018-04-04,0.23,2,0 +9992743,Exposed Brick Midtown East Apt,19131159,Patrick,Manhattan,Midtown,40.75199,-73.97193,Private room,100,4,0,,,1,0 +9992903,Williamsburg Large Modern Studio,431884,Morgan,Brooklyn,Williamsburg,40.71532,-73.93951,Entire home/apt,115,4,38,2019-01-02,0.89,1,0 +9994304,New and modern NYC home,47022650,Jillian,Manhattan,East Harlem,40.7933,-73.93424,Entire home/apt,150,1,48,2019-07-01,1.26,3,321 +9994765,Room In Williamsburg LOFT,35082637,Ollya,Brooklyn,Williamsburg,40.71841,-73.96389,Private room,105,5,7,2019-06-20,0.16,2,212 +9995077,Cozy Bedford Garden Bedroom,51348096,Stanley,Brooklyn,Flatbush,40.65134,-73.958,Private room,65,1,0,,,1,0 +9995163,Spacious Private Brownstone Apt | 2 Bedroom,12877954,Brian,Brooklyn,Bedford-Stuyvesant,40.68076,-73.93996,Entire home/apt,113,3,174,2019-07-01,4.02,1,63 +9995513,Private Room Avail in 3BR LES Apt,51349952,Lauren,Manhattan,Lower East Side,40.71858,-73.98613,Private room,70,1,1,2016-01-02,0.02,1,0 +9995719,Sunny St. Mark's Place Oasis,16222762,Kevin,Manhattan,East Village,40.72788,-73.98436,Entire home/apt,199,1,14,2016-08-23,0.33,1,0 +9995725,Huge beautiful place - Williamsburg,2703735,Carlos,Brooklyn,Williamsburg,40.71638,-73.96357,Entire home/apt,125,3,2,2016-04-22,0.05,1,0 +9996144,"Romantic, Pretty Apt with Kitty",9212402,Alden,Brooklyn,Williamsburg,40.70973,-73.95301,Entire home/apt,140,4,12,2017-11-05,0.29,1,0 +9996642,Friendly place with garden,50865592,Christophe,Brooklyn,Park Slope,40.6735,-73.97644,Private room,85,1,133,2019-06-20,3.23,1,230 +9996793,BEDROOM3 FOR RENT 10min from Manh,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94839,Private room,70,30,1,2018-07-01,0.08,4,249 +9996830,Morningside Heights Apartment,51356178,Andres,Manhattan,Morningside Heights,40.8046,-73.9654,Entire home/apt,89,1,3,2016-07-29,0.07,1,0 +9996946,Private Rm&Bthrm - 10 min Manhattan,19109608,Elle,Queens,Astoria,40.76273,-73.91642,Private room,95,2,55,2019-06-22,1.28,3,244 +9997006,Sunny and cozy Astoria room!,50695071,Noran,Queens,Ditmars Steinway,40.7756,-73.90825,Private room,70,1,0,,,1,0 +9997433,Cozy 1BR apt in East Village/USQ,51358854,Manny,Manhattan,East Village,40.73048,-73.98197,Entire home/apt,154,5,0,,,1,0 +9997449,Entire 2br apartment in the heart of Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73927,-73.99833,Entire home/apt,220,1,8,2016-08-29,0.19,2,0 +9997702,"Spacious, Cozy Bedroom in Bushwick",5123299,Ian,Brooklyn,Bushwick,40.70352,-73.93104,Private room,45,1,4,2018-01-01,0.09,1,0 +9997980,Quiet 2B duplex in Nolita / Soho,8302904,Anthony,Manhattan,Nolita,40.72336,-73.99618,Private room,59,60,6,2016-11-26,0.15,1,0 +9998091,A bedroom in Chinatown,22735666,Simon,Manhattan,Chinatown,40.71346,-73.99592,Private room,95,1,1,2016-01-02,0.02,1,0 +9998154,Spacious Master Bedroom in EV,32993860,Zach,Manhattan,East Village,40.72658,-73.97827,Private room,129,1,0,,,1,0 +9998296,Beautiful Modern Large 1 Bedroom,36865981,Samantha,Brooklyn,Crown Heights,40.67665,-73.95534,Entire home/apt,115,3,1,2017-01-01,0.03,1,0 +9998688,Large Hell's Kitchen Home,51364562,Michael,Manhattan,Hell's Kitchen,40.76019,-73.99299,Private room,105,3,4,2018-05-29,0.09,1,0 +9998898,Sunny Modern Beauty with Deck,9108035,Ashley,Brooklyn,Bedford-Stuyvesant,40.68636,-73.93104,Entire home/apt,93,4,5,2017-07-28,0.12,1,0 +9998930,Upper West Room Near Columbia U,36279810,Lingzi,Manhattan,Upper West Side,40.80085,-73.96468,Private room,40,6,5,2017-02-01,0.12,1,0 +9999220,"BEAUTIFUL, LARGE, BRIGHT 2 Bedroom",51367478,Brandon,Queens,Long Island City,40.76406,-73.9349,Private room,88,5,0,,,1,0 +9999252,Artistic! Sunny! 1BR Brownstone Apt,2880824,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93176,Entire home/apt,85,1,1,2016-01-03,0.02,1,0 +9999351,Cozy two bedroom apartment,51368588,Paula,Manhattan,Upper East Side,40.76438,-73.95871,Entire home/apt,170,3,35,2019-04-25,0.82,2,0 +9999939,1 bd available in 3bd apt in UWS,51371360,Minoo,Manhattan,Upper West Side,40.78347,-73.97748,Private room,75,2,2,2016-11-26,0.05,1,0 +10000070,Spacious Large Private Room By Pr. Park w Aircon,51372003,Ninell,Brooklyn,Flatbush,40.64881,-73.96724,Private room,55,2,5,2017-08-13,0.12,2,213 +10000470,Charming and CLEAN Room!!,51374331,Daniel,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93893,Private room,57,2,175,2019-06-28,4.08,1,38 +10000943,1 Bedroom in UWS Manhattan,6891770,Mido,Manhattan,Upper West Side,40.78239,-73.97581,Entire home/apt,199,2,10,2017-04-18,0.25,1,0 +10001022,One Bedroom Apartment In Astoria,27078779,Emmanuel,Queens,Astoria,40.76047,-73.92288,Entire home/apt,105,1,0,,,1,0 +10002428,The authentic TriBeCa artist loft experience!,5885714,Micheal,Manhattan,Tribeca,40.71742,-74.00396,Entire home/apt,485,3,14,2019-01-01,0.36,1,54 +10008615,Classic NYC loft apt in brownstone,3841035,Christina,Manhattan,Harlem,40.83034,-73.94902,Entire home/apt,125,2,31,2019-06-12,0.72,1,14 +10008874,YOUR HOME FOR THE HOLIDAY,4409832,Chris,Manhattan,Washington Heights,40.85139,-73.93722,Entire home/apt,150,6,0,,,1,0 +10009737,1 BR available in Midtown,4513827,Salman,Manhattan,Murray Hill,40.74622,-73.97913,Private room,95,14,19,2019-05-06,0.52,1,96 +10010012,CORPORATE RENTAL ON HISTORIC BLOCK!,43014167,Mark,Manhattan,Washington Heights,40.83403,-73.93867,Entire home/apt,200,1,1,2016-05-20,0.03,1,0 +10010845,Modern 1 bedroom 5min Cental Park,49903913,Lily,Manhattan,Upper West Side,40.7993,-73.96642,Entire home/apt,90,1,171,2019-06-10,3.98,1,53 +10011009,Charming and bright UWS apartment,8936313,Maurad & Maria,Manhattan,Upper West Side,40.78146,-73.97845,Entire home/apt,120,5,0,,,1,0 +10011086,"Clean, renovated 1 bedroom apt close to 1 train",22257525,Andrea,Manhattan,Harlem,40.82501,-73.95125,Entire home/apt,100,3,1,2016-08-19,0.03,1,0 +10011763,"Beautiful quiet apartment, Bushwick",24190730,Lara,Brooklyn,Bushwick,40.68353,-73.90484,Private room,70,1,21,2016-09-26,0.50,1,0 +10011850,Madison Avenue Studio Suite (2),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74963,-73.98098,Entire home/apt,110,30,5,2018-09-04,0.16,31,157 +10012292,"Entire 2 bedroom in Williamsburg, Brooklyn!",51422606,Kensey,Brooklyn,Williamsburg,40.71237,-73.93929,Entire home/apt,96,2,17,2019-01-02,0.40,1,0 +10012372,Large Sunny Room/ East Williamsburg,51422338,Kelly,Brooklyn,Williamsburg,40.71993,-73.94479,Private room,50,1,0,,,1,0 +10012551,Cute and Sunny 2 BR Wburg Apt,14910665,Rebeka,Brooklyn,Williamsburg,40.71273,-73.95749,Entire home/apt,175,1,3,2016-03-20,0.07,1,0 +10013355,Affordable Room in Trendy LES/Soho,6570788,Natalie,Manhattan,Lower East Side,40.72173,-73.99351,Private room,70,3,1,2016-01-19,0.02,1,0 +10013750,Beautiful Garden Rooms In Lower East Side,20222376,Olya,Manhattan,Lower East Side,40.71814,-73.99166,Private room,75,10,17,2019-06-19,0.46,1,128 +10014783,Super cozy room,51430742,Jan,Bronx,Morris Heights,40.85292,-73.91683,Private room,51,2,36,2019-05-08,0.96,1,364 +10015137,"1BR-near to park, subway, cafes!",51433399,Meghan,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.96101,Entire home/apt,80,1,1,2016-01-05,0.02,1,0 +10015195,Madison Avenue 1 Bedroom Suite,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.75093,-73.98096,Entire home/apt,110,30,1,2016-09-30,0.03,31,133 +10015258,Beautiful sunny bedroom Upper West,5041830,Edna,Manhattan,Upper West Side,40.80137,-73.9615,Private room,80,3,1,2016-07-06,0.03,1,0 +10015340,Bedroom in Williamsburg Available!,51434460,DJ Timothy,Brooklyn,Williamsburg,40.70998,-73.95956,Private room,60,1,0,,,1,0 +10016124,Madison Avenue 3 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74908,-73.98095,Entire home/apt,170,30,1,2016-08-13,0.03,31,142 +10016343,Grand Madison Avenue Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.75065,-73.98204,Entire home/apt,155,29,0,,,31,327 +10016353,Cozy Orchard St. Bedroom in the Lower East Side,16664377,D,Manhattan,Lower East Side,40.71835,-73.99138,Private room,65,1,178,2019-07-04,4.16,3,79 +10016503,Madison Avenue 3 Room Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74906,-73.98276,Entire home/apt,165,29,3,2017-03-01,0.09,31,134 +10016601,Murray Hill 1 Bedroom Apartment (62),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74711,-73.97694,Entire home/apt,115,30,5,2019-03-17,0.14,31,179 +10016832,Murray Hill 2 Bedroom Apartment (63),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74537,-73.97652,Entire home/apt,150,30,1,2018-05-19,0.07,31,125 +10017050,"Nice and Quiet, lots of trees.",45483124,Maria,Queens,East Elmhurst,40.75836,-73.87631,Private room,700,1,1,2016-01-03,0.02,1,97 +10017087,Classic Murray Hill 1 Bedroom Apartment (64),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74677,-73.97846,Entire home/apt,125,30,4,2017-12-16,0.11,31,111 +10017099,Cozy Room for Rent in Williamsburg!,51439873,Nina,Brooklyn,Williamsburg,40.71557,-73.94004,Private room,75,1,0,,,1,0 +10017170,Murray Hill 2 Bedroom Suite,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74676,-73.97682,Entire home/apt,150,30,3,2019-03-30,0.10,31,107 +10017359,Pre-War Charm with Modern Chic in Hell's Kitchen,36638599,Chelsea,Manhattan,Hell's Kitchen,40.76316,-73.9884,Private room,170,1,112,2017-07-10,2.63,1,0 +10017458,Murray Hill 2 Bedroom Townhouse,50760546,CRNY Monthly Rentals,Manhattan,Kips Bay,40.74495,-73.97627,Entire home/apt,150,30,4,2018-08-04,0.11,31,156 +10017561,Murray Hill 2 Bedroom Classic (84),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74672,-73.97841,Entire home/apt,150,30,4,2018-11-02,0.12,31,128 +10017871,Sound Bath Sanctuary II Manhattan,7217937,Joule,Manhattan,Inwood,40.8686,-73.92594,Private room,45,2,6,2019-06-17,0.50,2,64 +10017920,Cozy East Village Apartment,13507716,Regina,Manhattan,East Village,40.72324,-73.98195,Entire home/apt,55,1,0,,,1,0 +10018549,Private room in gorgeous 2 floor Williamsburg apt,1909320,Peter,Brooklyn,Williamsburg,40.7167,-73.96327,Private room,89,1,96,2019-06-23,2.24,3,237 +10018550,Open Room in Luxury Apartment,27952234,Brett,Manhattan,Financial District,40.70623,-74.00906,Private room,100,1,0,,,1,0 +10018963,Budget room in Downtown Brooklyn,48487386,Kazuhiro,Brooklyn,Gowanus,40.6824,-73.98824,Private room,35,2,112,2019-06-20,2.70,1,27 +10019023,BROOKLYN 1 BEDROOM,50368837,Jorge,Brooklyn,Crown Heights,40.6781,-73.94584,Entire home/apt,70,3,2,2016-08-08,0.05,2,88 +10019312,Comfy Spacious room/Lower Manhattan - East Side,44216429,Maria,Manhattan,Gramercy,40.73628,-73.98549,Private room,100,4,115,2019-07-07,2.67,1,268 +10019335,Your home in the historic district,48818023,Sarah,Manhattan,Harlem,40.82909,-73.94183,Entire home/apt,78,5,0,,,1,0 +10019508,Glam Hipster Digs,51095356,Tamu,Brooklyn,Bushwick,40.69966,-73.93241,Private room,59,2,41,2018-10-29,0.96,1,301 +10020060,Charming West Village Apartment,51450214,Danny,Manhattan,West Village,40.73004,-74.00381,Entire home/apt,148,1,0,,,1,0 +10020815,Large and light Brooklyn apartment,564585,Mark,Brooklyn,Clinton Hill,40.68731,-73.96446,Entire home/apt,125,6,0,,,1,0 +10021301,Architects' Home in Brooklyn!,12227689,Jen,Brooklyn,Crown Heights,40.67694,-73.95575,Entire home/apt,155,2,24,2018-01-02,0.57,1,0 +10021499,Comfy Private Room in Williamsburg,48446355,Alexandra,Brooklyn,Williamsburg,40.71074,-73.95145,Private room,61,1,1,2016-01-02,0.02,1,0 +10021643,Spacious Room -- Upper West Side,44118283,Guillaume,Manhattan,Upper West Side,40.79546,-73.97497,Private room,100,15,1,2016-02-15,0.02,1,0 +10021680,Experience the Diversity of Queens!,51458776,Frankie,Queens,Jackson Heights,40.75161,-73.88315,Private room,55,2,42,2019-06-19,1.04,1,118 +10021707,Private Room in Bushwick,11275734,Josh,Brooklyn,Bushwick,40.69791,-73.93615,Private room,40,14,1,2016-01-31,0.02,1,0 +10021820,2 BR in Soho/Greenwich Village,7655328,Jessica,Manhattan,Greenwich Village,40.72799,-74.00046,Entire home/apt,196,1,0,,,3,0 +10022144,Modern & Upgraded in Midtown,10770088,Tim,Manhattan,Midtown,40.75221,-73.97157,Entire home/apt,101,2,1,2015-12-28,0.02,1,0 +10022956,Huge room in 4 BR on Riverside,50539477,Brian,Manhattan,Harlem,40.82203,-73.95612,Private room,50,30,77,2019-06-02,3.26,2,190 +10022997,"A clean, spacious studio apartment",4628519,Hana,Manhattan,Upper West Side,40.79072,-73.97252,Entire home/apt,150,3,0,,,1,0 +10023629,"Chic and Spacious 1BD, minutes from Times Sq!",13056751,Eleni,Manhattan,Hell's Kitchen,40.76458,-73.99007,Private room,102,1,49,2019-06-24,1.70,1,134 +10023653,"Sunny, Light room with Loft Bed",7581707,Brianna,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95081,Private room,30,1,0,,,1,0 +10030753,NYC Lower East Side - New Years,51496578,Aline,Manhattan,Lower East Side,40.71504,-73.98072,Entire home/apt,250,1,0,,,1,0 +10030920,Artist Studio in Central Manhattan!,38204730,Kathy,Manhattan,Gramercy,40.73652,-73.98458,Private room,115,4,0,,,3,249 +10031336,GREAT location LARGE 1BR $129 night,21801127,Carlos,Manhattan,Upper East Side,40.77668,-73.94819,Entire home/apt,129,3,0,,,1,0 +10031436,Spacious Sunny room in East Village,51499758,Sabra,Manhattan,Lower East Side,40.71686,-73.98346,Private room,90,4,0,,,1,0 +10031678,Nice 1 Bedroom Apartment China town,46540057,Fabrizio,Manhattan,Chinatown,40.71474,-73.99778,Entire home/apt,120,5,15,2017-12-18,0.61,1,0 +10031902,Great studio near TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76262,-73.99283,Entire home/apt,150,30,3,2019-05-24,0.08,31,210 +10031933,Beautiful Updated Midtown Apartment,8343891,Shauna,Manhattan,Upper East Side,40.76501,-73.95862,Entire home/apt,146,1,0,,,1,0 +10032285,Charming bedroom in Manhattan,20884486,Luis,Manhattan,Morningside Heights,40.80483,-73.96486,Private room,70,1,0,,,1,0 +10032487,Soho Old School,51504193,Hans,Manhattan,SoHo,40.72515,-73.99919,Entire home/apt,115,28,12,2018-12-21,0.31,1,77 +10032495,Private Room on Upper West Side,2830735,Joshua,Manhattan,Upper West Side,40.80195,-73.96714,Private room,49,5,1,2015-12-22,0.02,1,0 +10032560,Cozy and Chic UES Studio,39945901,Mercy,Manhattan,East Harlem,40.78866,-73.94941,Entire home/apt,200,3,28,2019-06-03,0.65,1,3 +10033868,NICE 2 BED APT NEAR TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76244,-73.99295,Entire home/apt,166,30,7,2019-01-03,0.18,31,195 +10034090,Cute Bedroom in Very Cute BK Apt!,7763913,Dawn,Brooklyn,Williamsburg,40.71049,-73.94515,Private room,40,1,1,2016-01-07,0.02,1,0 +10034187,Unique Studio Loft in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72913,-73.9436,Private room,137,3,39,2019-05-06,0.91,13,53 +10034364,Spacious and sunny bedroom,1653404,Erica,Brooklyn,Williamsburg,40.70872,-73.95689,Private room,58,5,1,2015-12-18,0.02,1,0 +10034493,My Artsy Haven in Bed Stuy,10970798,Atiya,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95599,Private room,55,14,0,,,1,0 +10034709,"Fun, Cute, Sunny Bushwick Room",51513260,Morgan,Brooklyn,Bushwick,40.70136,-73.91857,Private room,35,6,1,2016-02-25,0.02,1,0 +10034817,Spacious 1 bed near TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76343,-73.99381,Entire home/apt,150,30,1,2016-06-14,0.03,31,339 +10035023,Upper East Side 1 Bedroom,28640162,Jordan,Manhattan,Upper East Side,40.78352,-73.94973,Entire home/apt,150,3,0,,,1,0 +10035098,Upper West ... Museums/Parks/Subway,51513795,Doug,Manhattan,Upper West Side,40.77845,-73.97985,Entire home/apt,175,2,1,2016-01-03,0.02,1,0 +10035471,Deluxe Loft Suite in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72762,-73.94443,Entire home/apt,189,3,26,2019-06-24,0.61,13,69 +10035706,Sunny room in a great new Apt,51517754,Max,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93705,Private room,42,10,0,,,1,0 +10035920,Best of Brooklyn,51502398,Sasha,Brooklyn,Crown Heights,40.6698,-73.94992,Entire home/apt,175,3,77,2019-06-17,1.80,1,54 +10035950,Room With a View!,50520440,Jessica,Manhattan,Battery Park City,40.71777,-74.01493,Private room,150,4,1,2016-01-03,0.02,1,0 +10036313,Modern Luxury Chelsea Apt w/ Large Sunny Patios,35890377,Carrie,Manhattan,Chelsea,40.74135,-73.99507,Entire home/apt,425,2,59,2019-06-27,1.38,1,39 +10036394,"Huge, Sunny Loft for Rent",583269,Kenzo,Brooklyn,Bedford-Stuyvesant,40.69998,-73.9413,Private room,110,1,0,,,1,0 +10036516,Small but warm and cozy. (^_^) Female Only Please.,51520983,Jeannette,Manhattan,East Harlem,40.80681,-73.93956,Private room,75,3,4,2016-10-19,0.09,1,0 +10037605,Spacious 1BD In Chelsea,24225915,Jason,Manhattan,Chelsea,40.74845,-73.99635,Entire home/apt,170,4,1,2016-02-24,0.02,1,0 +10037631,1bdroom Kid Friendly Quiet Street,51525788,Whitney,Manhattan,Inwood,40.86569,-73.92865,Entire home/apt,120,1,1,2016-01-02,0.02,1,0 +10037800,Room in beautiful plant filled Greenpoint loft,1558222,Nikki,Brooklyn,Greenpoint,40.72809,-73.94365,Private room,65,3,2,2016-09-18,0.06,3,0 +10038170,Brooklyn Deluxe Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72917,-73.94354,Entire home/apt,350,3,1,2017-09-14,0.05,13,74 +10038410,Beautiful Loft Suite in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72717,-73.94479,Entire home/apt,199,3,26,2019-06-25,0.61,13,74 +10038633,Room for Xmas and New Years in NYC,19049309,Willem,Manhattan,East Harlem,40.79586,-73.94332,Private room,67,1,1,2016-01-02,0.02,1,0 +10038693,Studio Loft in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72734,-73.94451,Entire home/apt,189,3,7,2019-05-07,0.21,13,74 +10038695,Master Bedroom & Private Office,16260491,Gregory,Manhattan,East Village,40.72627,-73.9802,Private room,80,5,0,,,1,0 +10038776,Newly renovated room/ 10min LGA #1,51531044,Angela,Queens,Jackson Heights,40.75164,-73.87644,Private room,50,1,84,2019-06-16,2.10,4,302 +10038823,"Apartment for 5, Midtown Manhattan",48681257,Celia,Manhattan,Midtown,40.75828,-73.96286,Entire home/apt,220,1,116,2019-06-23,2.89,1,264 +10039238,1 room in 3BR/1B in East Village,41316877,R David,Manhattan,East Village,40.72434,-73.98447,Private room,79,3,0,,,1,0 +10039250,"JFK,LGA,Manhattan,TimeSq,privateBathroom,Queens",36577517,Nan,Queens,Elmhurst,40.74556,-73.88118,Private room,49,2,1,2016-03-11,0.02,2,83 +10039579,Harlem Hearth - Loft Living on a Grand Scale,7727013,Toby Steven,Manhattan,Harlem,40.81184,-73.94287,Entire home/apt,226,3,61,2019-06-22,2.57,2,276 +10039992,Loft @ Heart of Williamsburg,19912320,Charles,Brooklyn,Williamsburg,40.71686,-73.95428,Private room,79,5,3,2017-01-02,0.07,2,0 +10040649,Sunny and spacious corner apartment,12435489,Dymphna,Brooklyn,Greenpoint,40.72088,-73.95375,Private room,80,5,1,2015-12-30,0.02,1,0 +10040717,Great walk-in studio Apartment in a private house,9059810,Vlad,Manhattan,Civic Center,40.71316,-74.00498,Private room,169,4,0,,,3,89 +10041002,1st Floor Beautiful Brownstone Apt,7503132,Whitney,Brooklyn,Clinton Hill,40.68399,-73.96192,Entire home/apt,100,5,7,2016-11-27,0.16,1,0 +10041376,Studio Apartment in Midtown NYC,51542781,Jessica,Manhattan,Hell's Kitchen,40.7666,-73.99256,Entire home/apt,98,7,6,2018-11-26,0.14,1,0 +10041531,A Large Room in a Huge Apartment,50007401,Jessica,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94833,Private room,45,2,0,,,1,0 +10041589,Large Bright Room with Private Bathroom,49535506,Nic,Queens,Sunnyside,40.73839,-73.93,Private room,70,4,4,2018-08-19,0.10,1,25 +10043064,"Full Apartment NYE! 2BR, fits 6!",51552511,Shelby,Manhattan,Harlem,40.82364,-73.94556,Entire home/apt,150,2,2,2016-01-03,0.05,1,0 +10043483,Cozy Private Entrance & Bathroom,10737943,David,Manhattan,Upper East Side,40.77292,-73.95015,Private room,125,1,210,2019-06-15,4.89,10,81 +10043942,Near to Manhattan and large 2BD Apt,51556615,Edmund,Queens,Sunnyside,40.74444,-73.91467,Entire home/apt,155,4,66,2019-06-28,1.54,1,307 +10046083,Great Studio - Awesome Location,1523549,Moti,Manhattan,Kips Bay,40.74396,-73.9758,Entire home/apt,179,29,4,2016-11-09,0.11,1,0 +10049335,BEAUTIFUL ROOM IN HEART OF BROOKLYN,5065719,Melissa,Brooklyn,Greenpoint,40.73226,-73.95285,Private room,60,1,2,2016-01-01,0.05,1,0 +10049711,Cozy Room in 2BDR Apt UES,2784447,James,Manhattan,Upper East Side,40.76206,-73.95705,Private room,90,8,0,,,1,0 +10049766,1 Bedroom in a 3 bedrooms loft,35083661,Julien,Brooklyn,Williamsburg,40.71741,-73.95978,Private room,65,1,0,,,1,0 +10050536,Studio Loft in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72766,-73.94393,Entire home/apt,179,3,36,2019-06-14,0.84,13,53 +10050847,"Cozy, Bright room in Williamsburg",51584665,Andrew,Brooklyn,Williamsburg,40.71229,-73.96245,Private room,50,10,3,2016-07-15,0.07,1,0 +10052289,"",49522403,Vanessa,Brooklyn,Brownsville,40.66409,-73.92314,Private room,50,3,3,2016-08-18,0.07,1,362 +10052587,Beautiful Loft Suite in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72829,-73.94356,Private room,189,3,34,2019-06-15,0.79,13,74 +10052674,Garden level apt w Bocci court/grill in backyard,5769728,Adam,Brooklyn,Bedford-Stuyvesant,40.69455,-73.95144,Entire home/apt,67,2,12,2019-01-05,0.59,1,332 +10053943,Historic Designer 2 Bed. Apartment,2697686,Glenn H.,Manhattan,Harlem,40.82915,-73.94034,Entire home/apt,99,999,2,2018-01-04,0.07,1,42 +10053993,Cozy 1 BR in heart of West Village,25821059,Jenna,Manhattan,West Village,40.73482,-74.00834,Entire home/apt,140,2,6,2016-07-25,0.15,1,0 +10054040,Cozy and Warm Astoria Apartment,13203690,Zach,Queens,Astoria,40.76805,-73.90906,Entire home/apt,90,2,0,,,1,0 +10054480,"Lovely, cozy private room available",16179625,Kt,Manhattan,Harlem,40.82624,-73.9434,Private room,55,3,58,2019-06-23,1.76,1,0 +10054708,Stunning and Cozy Room in Brooklyn,707992,Andrea,Brooklyn,Sunset Park,40.64041,-74.01497,Private room,80,20,0,,,1,0 +10054892,Our casa is your casa!,7271269,Rick,Brooklyn,Williamsburg,40.71575,-73.94224,Entire home/apt,170,1,1,2016-01-02,0.02,1,0 +10054894,Spacios Room in Gorgeous Apt!,280883,Graciela,Manhattan,Harlem,40.82353,-73.93824,Private room,90,1,0,,,1,0 +10055149,Sunny & Quiet Studio w/ private patio - E Village!,18198859,Angel,Manhattan,East Village,40.72655,-73.97826,Entire home/apt,175,1,59,2019-06-30,1.44,1,307 +10055548,Modern 1-Bedroom Downtown,14852867,Jason,Manhattan,Financial District,40.70938,-74.01371,Entire home/apt,117,2,0,,,1,0 +10055872,Room in loft apartment above bakery,51605949,Miriam,Brooklyn,Clinton Hill,40.69459,-73.96408,Private room,43,1,0,,,1,0 +10055925,Greenpoint Studio Loft w/ Terrace,47554473,Henry Norman,Brooklyn,Greenpoint,40.7287,-73.94504,Private room,189,3,21,2018-05-14,0.49,13,0 +10056245,Spacious room in Brooklyn,25866647,Nick,Brooklyn,Midwood,40.62259,-73.96107,Private room,35,3,175,2019-06-14,4.10,1,49 +10056541,"Bright Studio - Park Slope, BK",10807649,Yehua,Brooklyn,South Slope,40.66218,-73.98385,Entire home/apt,61,2,20,2019-05-30,0.57,1,0 +10057826,Deluxe Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72778,-73.94472,Entire home/apt,205,3,5,2018-02-18,0.12,13,72 +10057854,Room in LIC - females only please,51614806,Justyna,Queens,Long Island City,40.74967,-73.9396,Private room,35,14,1,2016-01-16,0.02,1,0 +10058942,"Columbia Univer, female/couple only",12245536,Rong,Manhattan,Harlem,40.82083,-73.95795,Private room,39,2,3,2016-07-21,0.07,2,0 +10058944,Private Master Bedroom & Full Bath,9050420,Anton,Manhattan,East Village,40.7278,-73.98041,Private room,190,1,0,,,1,0 +10059344,Quaint 2 Bedroom Apt in LES (6 ppl),11068351,Bobby,Manhattan,Little Italy,40.71924,-73.99719,Entire home/apt,249,1,0,,,1,0 +10059699,Amazing Flatiron Entire Studio Apt,51623576,Charlie,Manhattan,Chelsea,40.73719,-73.99336,Entire home/apt,159,3,1,2017-01-02,0.03,1,0 +10065056,Lovely West Village Studio,36905682,Adrian,Manhattan,West Village,40.73454,-74.00141,Entire home/apt,125,1,0,,,1,0 +10065831,Private Bedroom in Bedstuy!,51652888,Sesenu,Brooklyn,Bedford-Stuyvesant,40.68678,-73.95572,Private room,37,7,2,2016-07-26,0.05,1,0 +10066875,NoHo 2 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,NoHo,40.72888,-73.99199,Entire home/apt,299,30,1,2017-04-03,0.04,31,160 +10067083,Entire apt in the heart of uber hip & cool Nolita,22217087,Gabriela,Manhattan,Nolita,40.72321,-73.99532,Entire home/apt,175,3,12,2019-06-02,0.28,1,0 +10067199,Private room in Upper West Side Apt,47472192,Johanna,Manhattan,Upper West Side,40.79954,-73.9626,Private room,42,12,0,,,1,0 +10067809,One bedroom apartment in Greenpoint,9294273,Ayten,Brooklyn,Greenpoint,40.72712,-73.95146,Entire home/apt,110,4,1,2016-02-15,0.02,1,0 +10067924,Cozy & Lux Studio in Nolita,36866768,Lisa,Manhattan,Nolita,40.72238,-73.99631,Entire home/apt,179,7,0,,,1,0 +10067936,1 Bedroom in Crown Heights,51662642,Alex,Brooklyn,Crown Heights,40.67023,-73.95257,Entire home/apt,90,1,0,,,1,0 +10068269,"Large Rm In Williamsburg, Brooklyn",51664119,Toyosi,Brooklyn,Williamsburg,40.71274,-73.94513,Private room,130,2,1,2016-01-03,0.02,1,0 +10068386,An open and airy charming studio,49905246,Ying Ying,Brooklyn,Park Slope,40.67163,-73.98584,Entire home/apt,140,2,89,2019-06-29,2.11,1,9 +10068693,Cozy Mozy apt in Cobble Hill,16591072,Marianna,Brooklyn,Boerum Hill,40.68869,-73.98899,Entire home/apt,168,1,1,2016-01-05,0.02,1,0 +10069174,Spacious Family Apartment near Prospect Park,2436599,Rachel,Brooklyn,Flatbush,40.65132,-73.95691,Entire home/apt,128,3,2,2017-04-30,0.07,1,0 +10069376,Spacious room in Beautiful Bedstuy,13358864,Matthew,Brooklyn,Bedford-Stuyvesant,40.6943,-73.9481,Private room,64,3,6,2016-06-06,0.14,2,0 +10069586,Cozy room in a dynamic Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.67154,-73.94981,Private room,35,14,1,2017-01-19,0.03,2,0 +10069601,Cozy bedroom in beautiful apartment,13358864,Matthew,Brooklyn,Bedford-Stuyvesant,40.69453,-73.94725,Private room,60,3,0,,,2,0 +10069720,Clean Modern Apartment,1522922,Timothy,Brooklyn,Crown Heights,40.67617,-73.95536,Entire home/apt,200,2,0,,,1,0 +10069964,Bright & Modern Williamsburg 1BR,12616662,Anthony,Brooklyn,Williamsburg,40.71742,-73.95511,Entire home/apt,199,3,3,2016-05-07,0.08,1,0 +10070145,Massive apt in prime Williamsburg,8820573,Ali,Brooklyn,Williamsburg,40.714,-73.96395,Entire home/apt,175,3,105,2019-06-19,2.45,1,104 +10070235,"位于曼哈顿纽约上城,高级住宅区",51525183,Sophia,Manhattan,Harlem,40.81566,-73.94293,Private room,95,180,0,,,1,358 +10070294,Beautiful Brooklyn Apartment!,27915373,Lukre,Brooklyn,Bedford-Stuyvesant,40.68273,-73.94786,Private room,55,1,18,2018-12-29,0.49,1,65 +10070350,Beautiful Studio Apartment NYC,39765154,Dave,Manhattan,Upper West Side,40.7986,-73.96168,Entire home/apt,125,9,0,,,1,0 +10070663,Bedroom in Upper Westside Apartment,51674579,Brittany,Manhattan,Upper West Side,40.79616,-73.97506,Private room,45,1,0,,,1,0 +10070693,Convenient Upper East Studio Apt,51651427,Sayaka,Manhattan,Upper East Side,40.7612,-73.96254,Entire home/apt,95,16,8,2018-01-03,0.20,1,0 +10071188,"Beautiful, bright and spacious home",15065559,Daniella,Brooklyn,Crown Heights,40.67105,-73.94324,Entire home/apt,153,4,105,2019-06-10,2.45,1,9 +10071225,Sweet and affordable nook in bk,40532707,Isidora,Brooklyn,Bedford-Stuyvesant,40.68729,-73.95556,Private room,39,1,1,2016-01-06,0.02,1,0 +10071232,Riverside Drive Harlem Apartment,6050369,Dave,Manhattan,Harlem,40.82697,-73.95236,Entire home/apt,200,1,0,,,1,0 +10071464,Christopher Street: Heart of The West Village,51678353,Robert,Manhattan,West Village,40.73326,-74.00577,Private room,85,2,2,2016-01-01,0.05,1,0 +10072022,Spacious 1 bedroom in the heart of Soho,31281230,Brian,Manhattan,SoHo,40.72697,-74.00098,Entire home/apt,315,2,29,2019-06-25,1.31,1,177 +10072678,OPEN LOFT WITH PRIVATE BACKYARD,50687547,Michael,Brooklyn,Bedford-Stuyvesant,40.68843,-73.94537,Entire home/apt,89,5,10,2017-08-29,0.23,1,64 +10072750,Beautiful apt for the winter,51684417,Eduardo,Manhattan,Upper West Side,40.80082,-73.96059,Entire home/apt,350,7,0,,,2,0 +10073940,Welcome to NYC! Modern Luxury 2 BR-5 min from JFK,51688993,Taran & Najla,Queens,Jamaica,40.6896,-73.80446,Entire home/apt,179,1,103,2019-07-02,2.67,2,324 +10073995,Peaceful Bushwick Pad.,1737876,Gray & Alara,Brooklyn,Bushwick,40.68984,-73.91507,Private room,37,1,0,,,1,0 +10074308,Luxury Apt in Downtown Brooklyn,51690846,Devaki,Brooklyn,Downtown Brooklyn,40.6965,-73.98377,Private room,75,5,0,,,1,0 +10076836,Convenient Upper West Apt- Sleeps 3,28504839,Yina,Manhattan,Upper West Side,40.7863,-73.97658,Entire home/apt,150,3,5,2017-09-20,0.13,1,0 +10078736,Newly Renovated Carriage House,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.68886,-73.93084,Entire home/apt,225,2,68,2019-06-04,1.69,3,273 +10080979,One Bedroom - Gramery Park,51728257,Joseph,Manhattan,Gramercy,40.73462,-73.98227,Entire home/apt,140,4,1,2015-12-21,0.02,1,0 +10082057,"Victorian Home, Welcoming Comfort",51734800,Laura,Brooklyn,Flatbush,40.63066,-73.96496,Private room,115,2,5,2018-03-31,0.13,2,358 +10083580,Cozy apartment in Brooklyn,22068394,Julian,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94765,Private room,58,2,2,2016-06-13,0.05,1,0 +10083682,Beautiful Bedford apartment,51742426,Miri,Brooklyn,Williamsburg,40.71193,-73.96383,Entire home/apt,190,4,63,2019-06-28,1.58,1,257 +10083881,Well Equipped One-Bedroom Apartment,51743699,Oliver,Manhattan,Morningside Heights,40.80986,-73.95945,Entire home/apt,100,1,1,2015-12-23,0.02,1,0 +10083973,Williamsburg Getaway,3870120,Sawyer,Brooklyn,Williamsburg,40.71139,-73.96002,Private room,119,2,82,2019-06-03,2.06,1,0 +10084380,Charming Williamsburg apartment,5882165,Pavel,Brooklyn,Williamsburg,40.71171,-73.96256,Entire home/apt,139,5,0,,,1,0 +10085449,Clean room in a nice apartment,51749922,Marianne,Manhattan,Kips Bay,40.73956,-73.98163,Private room,140,1,0,,,1,0 +10085478,Deluxe Brooklyn Loft,47554473,Henry Norman,Brooklyn,Greenpoint,40.72845,-73.94477,Entire home/apt,129,3,16,2019-06-27,0.37,13,71 +10086029,West Village Duplex with Backyard!,2072706,Umang,Manhattan,West Village,40.73191,-74.00493,Entire home/apt,800,3,0,,,1,0 +10086307,Private Suite - room with bathroom,13792543,Gregory,Manhattan,Harlem,40.80729,-73.95238,Private room,110,3,76,2019-06-26,1.78,3,281 +10087575,Chic NYC Brownstone,2144034,Brandon,Manhattan,Harlem,40.82753,-73.94862,Entire home/apt,90,1,2,2016-05-02,0.05,1,0 +10087874,Large room with private bath in Brooklyn home,28840058,Karen,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9189,Private room,61,1,4,2018-01-02,0.10,1,0 +10088464,Cozy East-Village Room + Rooftop :),51764491,Rachel,Manhattan,East Village,40.73076,-73.98374,Private room,65,2,4,2016-02-01,0.09,1,0 +10088612,"Full size bed, 2 guests, Manhattan Upper Westside",216227,Victor,Manhattan,Harlem,40.82069,-73.95549,Private room,60,1,229,2019-07-05,6.25,3,310 +10088636,"2 Twin beds, 2 guests - Manhattan, Upper West Side",216227,Victor,Manhattan,Harlem,40.82232,-73.95696,Private room,60,1,219,2019-06-23,5.95,3,280 +10089333,Amazing loft on the Uper East Side,16684382,Fred & Liz,Manhattan,Upper East Side,40.76266,-73.95989,Entire home/apt,150,2,25,2019-06-23,0.66,1,0 +10089727,"St Regis Hotel, NYC Luxury Hotel Rooms by Owners",51772392,Mark,Manhattan,Midtown,40.76039,-73.9736,Private room,587,1,3,2018-10-03,0.16,1,365 +10090735,Studio Apt at the Heart of Chelsea,6772290,Andrew,Manhattan,Chelsea,40.74156,-74.00037,Entire home/apt,175,3,136,2019-06-28,3.18,1,288 +10091829,Cozy Apartment Close to Everything!,42332704,Connie,Brooklyn,Crown Heights,40.67176,-73.95937,Private room,60,1,0,,,1,0 +10096352,West Village Dream *Newly Renovated,12485770,Raanan,Manhattan,West Village,40.7313,-74.00154,Entire home/apt,166,30,5,2018-12-31,0.13,9,332 +10096515,Prime East Village *Spacious,12485770,Raanan,Manhattan,East Village,40.72962,-73.98078,Entire home/apt,120,30,4,2019-06-08,0.11,9,338 +10096707,Bright & Spacious Apartment. A Williamsburg Gem.,51813565,Yoav,Brooklyn,Greenpoint,40.72034,-73.95478,Entire home/apt,135,2,18,2019-06-30,0.42,1,0 +10096773,Easy 1 Bedroom in Chelsea,34607505,Scott,Manhattan,Chelsea,40.74577,-74.00074,Entire home/apt,145,2,1,2016-01-03,0.02,1,0 +10096788,The Red Door,51813748,Genny & Gina,Brooklyn,Williamsburg,40.71936,-73.94225,Entire home/apt,185,4,77,2019-06-20,1.80,1,25 +10098890,Ideal location in Williamsburg,1822420,Mark,Brooklyn,Williamsburg,40.71119,-73.96515,Entire home/apt,120,1,0,,,1,0 +10098921,restfully space,50678424,Don,Brooklyn,Bedford-Stuyvesant,40.68666,-73.94739,Private room,206,1,1,2017-09-17,0.05,2,365 +10099080,Private large room in Bushwick,7375144,Polly,Brooklyn,Bushwick,40.70348,-73.91477,Private room,65,1,0,,,1,0 +10099517,Master room in a luxury apartment,16869971,Han,Manhattan,Roosevelt Island,40.76947,-73.94303,Private room,80,1,1,2016-01-05,0.02,2,0 +10099859,"1 Bed 1 Bath in Jackson Heights, NY",51829088,Joshua,Queens,Jackson Heights,40.74856,-73.88906,Entire home/apt,139,1,0,,,1,0 +10100121,Modern One Bedroom in Meatpacking,51830532,Alex,Manhattan,Chelsea,40.74201,-74.00325,Entire home/apt,239,4,55,2019-07-02,1.29,1,161 +10100241,"Airy 4 BR Triplex - Private Yard, Trendy Bed-Stuy",23215098,Erica & David,Brooklyn,Bedford-Stuyvesant,40.68513,-73.95286,Entire home/apt,399,4,39,2019-07-07,0.91,1,29 +10100474,"CLEAN, LARGE AND MODERN LOFT",3582774,Dana,Manhattan,Little Italy,40.71756,-73.99824,Entire home/apt,550,5,0,,,1,0 +10100512,Room in spacious house in Brooklyn!,271073,Besanya,Brooklyn,Midwood,40.62391,-73.96146,Private room,30,1,0,,,1,0 +10100799,Spacious Garden Apartment in Heart of Park Slope,9250639,Amy,Brooklyn,Park Slope,40.67622,-73.97953,Entire home/apt,125,2,7,2019-06-30,0.20,1,0 +10101013,East Village/Noho Garden Apartment,6866192,Omar & Ashley,Manhattan,East Village,40.7271,-73.99092,Entire home/apt,195,2,0,,,1,0 +10101097,Beautiful house in the heart of Williamsburg,5073789,Julia,Brooklyn,Williamsburg,40.7184,-73.95359,Entire home/apt,500,2,111,2019-07-01,2.92,1,88 +10101135,Room Near JFK Twin Beds,47621202,Dona,Queens,Jamaica,40.66939,-73.76975,Private room,47,1,576,2019-06-27,13.40,2,173 +10101148,Cozy private room in Woodside,51680319,Michael,Queens,Sunnyside,40.74181,-73.90783,Private room,69,1,0,,,1,0 +10101358,Heart of the East Village,51835429,Timothy,Manhattan,East Village,40.72597,-73.9838,Private room,90,2,0,,,1,0 +10101765,Large private bedroom on Upper East side,51838759,Lucia,Manhattan,Upper East Side,40.76256,-73.9632,Private room,99,2,122,2019-06-08,2.95,1,77 +10101791,Private Room for Rent,51839283,Ashley,Manhattan,Washington Heights,40.85064,-73.93833,Private room,75,1,1,2016-01-02,0.02,1,0 +10102206,Futon in Brooklyn near subway,33480709,Katherine,Brooklyn,Crown Heights,40.67114,-73.93561,Shared room,35,1,0,,,1,0 +10102792,Great room*City View*Huge roofdeck*,8832880,Ashley,Brooklyn,Greenpoint,40.73321,-73.9561,Private room,55,2,0,,,1,0 +10103745,"Cozy 1-Bd, Bushwick (L/M/J train)",2350144,Roxanne,Brooklyn,Bushwick,40.69611,-73.91891,Entire home/apt,80,31,1,2016-11-03,0.03,1,0 +10104123,East Village Bedroom w/Roof Deck,51850937,Joe,Manhattan,East Village,40.73061,-73.98335,Private room,100,2,51,2019-07-02,1.19,3,4 +10104130,"Bright, Spacious Brooklyn Space w/ Private Bath",51851212,Ugi,Brooklyn,Crown Heights,40.67418,-73.95958,Private room,60,1,4,2018-08-26,0.09,1,0 +10104806,Spacious and cozy room!,11095923,Tobias,Brooklyn,Bushwick,40.69802,-73.91472,Private room,40,1,0,,,3,0 +10105110,Studio next to Washington Sq Park,27341303,Yue,Manhattan,Greenwich Village,40.73009,-73.99965,Entire home/apt,118,5,1,2016-01-02,0.02,1,0 +10105477,Midtown Manhattan,1428501,Michael,Manhattan,Hell's Kitchen,40.76407,-73.98579,Private room,97,6,36,2018-07-05,0.84,2,0 +10105606,"UWS large, Elev./Security 1-Bedroom",51857384,Sam,Manhattan,Upper West Side,40.77836,-73.9822,Entire home/apt,210,2,51,2019-06-09,1.19,1,11 +10106530,Sunny One Bedroom in Crown Heights,8511553,J,Brooklyn,Crown Heights,40.6774,-73.94726,Entire home/apt,55,2,6,2016-06-29,0.14,1,0 +10106768,Peaceful Artist Bedroom—Just 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67762,-73.9159,Private room,62,3,69,2019-01-19,1.70,6,27 +10113787,"Newly renovated, 1.5 bdr SoHo apt",51902072,Ben,Manhattan,SoHo,40.72485,-74.00254,Entire home/apt,185,1,1,2016-01-18,0.02,1,0 +10114830,Studio on the Upper West Side,49871658,Michelle,Manhattan,Upper West Side,40.78778,-73.97498,Entire home/apt,200,3,0,,,1,0 +10115137,NYCHaven2: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65382,-73.93903,Entire home/apt,165,1,216,2019-06-22,5.49,4,194 +10115193,Double bedroom downtown,29923547,Meredith,Manhattan,Lower East Side,40.71886,-73.98881,Private room,125,1,0,,,1,0 +10115542,Chic Studio in Heart of Manhattan!,16682678,Casey,Manhattan,Kips Bay,40.74091,-73.98271,Entire home/apt,102,1,3,2016-03-09,0.07,1,0 +10115781,Cozy bedroom in heart of Bedford,10221694,Zhamal,Brooklyn,Williamsburg,40.71276,-73.963,Private room,80,1,2,2016-01-03,0.05,1,0 +10115792,3 Bedroom Luxury Apartment on 33rd,48784045,Jake,Manhattan,Kips Bay,40.7452,-73.97779,Entire home/apt,449,1,0,,,2,0 +10116081,Apartment in Midtown East of NYC,51913270,Andrew,Manhattan,Midtown,40.75939,-73.96949,Entire home/apt,200,1,0,,,1,0 +10116220,Twin Cabin Two,51913826,The Bowery House,Manhattan,Nolita,40.72354,-73.99333,Private room,84,1,1,2019-03-31,0.30,8,0 +10116351,"Large 1,000 SF UES Apt w/ Balcony",8869875,Christina,Manhattan,Upper East Side,40.76427,-73.962,Entire home/apt,95,1,5,2016-01-28,0.12,1,0 +10116619,"Sunny, spacious room in heart of BK",17794202,Taylor,Brooklyn,Boerum Hill,40.68485,-73.9819,Private room,65,3,2,2016-01-03,0.05,1,0 +10116734,Spacious Apartment D on 61st St. 1st & 2nd ave,30370192,Rachel,Manhattan,Upper East Side,40.75979,-73.96079,Entire home/apt,152,1,42,2019-06-02,1.06,1,357 +10117223,"Charming Room in Bushwick, Brooklyn Apt",18782603,Kimberly,Brooklyn,Bushwick,40.68539,-73.9092,Private room,50,3,2,2016-08-15,0.06,1,0 +10117624,Well-furnished studio w/ patio!,12190846,Kerry,Brooklyn,Williamsburg,40.72097,-73.9548,Entire home/apt,250,1,0,,,1,0 +10117636,❤︎ly room in duplex & garden,48535457,Eric,Brooklyn,Williamsburg,40.71975,-73.95964,Private room,149,2,15,2016-05-31,0.35,1,0 +10118660,Queen Cabin with Window One,51913826,The Bowery House,Manhattan,Nolita,40.72288,-73.99466,Private room,124,1,19,2019-03-21,0.46,8,0 +10118847,Large Private Bedroom on the River,6388652,Molly,Manhattan,Washington Heights,40.83871,-73.9468,Private room,58,3,49,2019-06-22,1.28,1,275 +10119376,Queen Cabin with Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72152,-73.99476,Private room,159,1,9,2019-03-16,0.22,8,0 +10120021,2BR Gut-Renovated Apartment,51844270,Alex,Manhattan,East Village,40.73046,-73.98643,Entire home/apt,250,7,1,2016-01-10,0.02,1,0 +10120414,The LES Apartment,33231070,Mert,Manhattan,Lower East Side,40.72063,-73.98944,Entire home/apt,150,3,0,,,1,0 +10122449,Spacious Chelsea 2 Bed/2 Bathroom,24347,Lyla,Manhattan,Chelsea,40.74441,-73.99915,Entire home/apt,250,4,11,2017-04-11,0.35,1,0 +10123090,Midtown Manhattan steps from 5thAve,51948055,Yvonne,Manhattan,Midtown,40.76372,-73.97692,Entire home/apt,500,29,5,2016-09-26,0.13,1,88 +10124343,Hip Trendy and Convenient!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69508,-73.94856,Private room,58,2,256,2019-06-16,5.96,4,38 +10124372,Elegant and Comfortable Stay,51940393,Denise,Brooklyn,Bedford-Stuyvesant,40.68353,-73.94877,Entire home/apt,199,2,74,2019-06-18,1.84,1,231 +10125213,"Cozy, Artistic Room with Comfy Bed",15109029,Zane,Manhattan,East Harlem,40.80197,-73.93888,Private room,55,1,0,,,1,0 +10125955,Beautiful huge Williamsburg room with private bath,18139498,Yonathan,Brooklyn,Williamsburg,40.70987,-73.95392,Private room,95,4,16,2019-06-12,0.46,1,10 +10126128,Temporary habitat home,43128266,常春,Manhattan,Washington Heights,40.83379,-73.94141,Shared room,36,1,20,2019-06-23,0.47,3,324 +10127534,Luxurious Modern West Village Loft,24673896,Jun,Manhattan,West Village,40.73182,-74.01,Entire home/apt,165,4,4,2017-01-01,0.10,1,0 +10130342,Your NYC Home!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69566,-73.95001,Private room,72,2,255,2019-06-16,5.95,4,0 +10130925,Standard Room/kitchen (sleeps 3 ),51991283,Jennifer,Manhattan,Harlem,40.80057,-73.95468,Private room,179,1,2,2016-04-17,0.05,5,309 +10130963,Family room with Shared Bathroom,51991283,Jennifer,Manhattan,Harlem,40.79945,-73.95411,Private room,209,1,1,2019-03-21,0.27,5,244 +10131082,The Central Park North/Economy Room,51991283,Jennifer,Manhattan,Harlem,40.79865,-73.95295,Private room,149,1,0,,,5,281 +10132356,Giant Loft with a Huge Deck and Kitchen,21247379,Paul,Manhattan,Harlem,40.80926,-73.95455,Entire home/apt,150,3,25,2019-06-14,1.20,1,22 +10133128,Prime Williamsburg Spacious Duplex + Huge Yard,16272340,Joel,Brooklyn,Williamsburg,40.71351,-73.95117,Private room,375,2,2,2016-09-05,0.05,1,0 +10133195,Private room 20mins from the city!,15640532,Kelly,Queens,Elmhurst,40.74157,-73.88389,Private room,65,4,1,2016-01-02,0.02,1,0 +10133350,2 bedroom Upper east side,52004369,Chelsea,Manhattan,Upper East Side,40.7664,-73.95854,Entire home/apt,275,2,9,2017-08-19,0.24,1,0 +10133534,Artsy/Neat 1 Bedroom Apartment in the heart of LES,6606618,Louise,Manhattan,Lower East Side,40.7178,-73.98504,Shared room,110,2,4,2016-12-11,0.11,1,0 +10134285,"Cute bedroom in Chinatown,",566660,Markus,Manhattan,Chinatown,40.71615,-73.99539,Private room,99,1,42,2018-01-01,0.98,1,0 +10134298,1 Bedroom in HUGE Full Floored Apt.,2017504,Fataah,Manhattan,Gramercy,40.73375,-73.98474,Private room,85,1,2,2016-10-23,0.06,2,0 +10134546,Family Room/Kitchen/Shared Bathroom,51991283,Jennifer,Manhattan,Harlem,40.79933,-73.95296,Private room,189,1,7,2019-06-23,0.16,5,291 +10134557,1 Bedroom in East Village,6753765,Austin,Manhattan,East Village,40.72423,-73.98327,Shared room,100,5,0,,,3,0 +10135104,Nice And Clean Apartment.,14439022,Cristina,Manhattan,Harlem,40.82774,-73.94983,Private room,75,3,86,2019-07-01,2.01,1,224 +10136508,Charming private room in Astoria-20 min to Midtown,17653796,Diana,Queens,Ditmars Steinway,40.77575,-73.91419,Private room,45,1,27,2019-06-24,0.75,1,16 +10136634,Williamsburg/Greenpoint Brooklyn,11615226,Jolynn,Brooklyn,Greenpoint,40.72308,-73.95071,Private room,75,1,0,,,1,0 +10136994,Beautiful East Village Apartment,4946655,Jack,Manhattan,East Village,40.72435,-73.98461,Entire home/apt,125,2,6,2016-07-06,0.14,1,0 +10137048,Gorgeous Upper West Side Studio,52022983,Ashley,Manhattan,Upper West Side,40.7937,-73.9652,Entire home/apt,150,1,0,,,1,0 +10138349,"Cute Brooklyn Apt, Close to Trains.",10474877,Rachel,Brooklyn,Boerum Hill,40.68358,-73.98127,Private room,71,7,11,2018-11-27,0.42,1,98 +10138784,Room near LGA airport and 35 mins to Times Square,52031360,Cheer,Queens,Jackson Heights,40.74953,-73.88025,Private room,46,3,137,2019-07-05,3.21,1,286 +10138870,Studio in Little Italy,52031473,Hanna,Manhattan,Nolita,40.72148,-73.99581,Private room,105,2,44,2019-05-30,1.03,1,35 +10138996,Queen Bed/Private Room w/ Backyard,52031734,Edward,Brooklyn,Bedford-Stuyvesant,40.69503,-73.94986,Private room,41,1,1,2016-01-20,0.02,1,0 +10142056,Authentic studio-UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77349,-73.95225,Entire home/apt,99,30,7,2018-12-31,0.18,15,327 +10142499,"Prívate room in Queens, NY",38260715,Lady,Queens,Corona,40.7394,-73.85527,Private room,37,1,74,2019-06-30,1.73,1,135 +10143705,Studio Apartment,31698014,Janine,Manhattan,East Village,40.72747,-73.98833,Entire home/apt,60,5,2,2016-01-17,0.05,1,0 +10144140,Gorgeous Bushwick 3 BR Private Yard,9153601,David,Brooklyn,Bushwick,40.68594,-73.91448,Entire home/apt,218,2,70,2019-05-09,1.67,1,335 +10148201,Beautiful Full Bedroom-sunny-comfi,502563,Cloe,Manhattan,East Village,40.72888,-73.98496,Private room,150,3,17,2019-05-05,0.40,2,43 +10148581,Furnished Apartment in Chelsea,290094,Charlotte,Manhattan,Chelsea,40.7456,-73.99852,Private room,52,2,2,2016-11-04,0.06,1,0 +10148955,Gorgeous 2BDRM Apartment,7342535,Chris,Brooklyn,Clinton Hill,40.68142,-73.95889,Entire home/apt,210,1,3,2016-02-14,0.07,1,0 +10149393,Cozy Studio + Sunroom near Times Square,5461672,Ginji,Manhattan,Hell's Kitchen,40.76374,-73.98872,Entire home/apt,115,3,1,2016-01-03,0.02,1,0 +10149453,SoHo Gem *Amazing Deal!!,12485770,Raanan,Manhattan,SoHo,40.72542,-74.00158,Entire home/apt,105,30,2,2019-03-03,0.06,9,327 +10153654,East Village Bedroom Available,52112891,Brent,Manhattan,East Village,40.72774,-73.98211,Private room,80,2,3,2016-03-24,0.07,1,0 +10154138,Amazing Apt in the West Village,23419527,Diana,Manhattan,West Village,40.73713,-74.00358,Entire home/apt,225,3,1,2016-01-02,0.02,1,0 +10154444,Cozy apartment (East Williamsburg),1260413,Helena,Brooklyn,Williamsburg,40.71275,-73.94299,Entire home/apt,175,3,2,2019-05-26,0.05,3,0 +10154702,"Pool, Gym, Rooftop, East 50's1 bedroom /1 bathroom",9369977,John,Manhattan,Midtown,40.75763,-73.96359,Private room,120,7,4,2018-01-03,0.09,1,0 +10154762,Central Park - Comfy Futon Couch for 2,37626481,Lugao,Manhattan,Upper West Side,40.79637,-73.96996,Shared room,65,1,55,2019-06-04,1.34,2,0 +10155003,"Studio Loft in Greenpoint, Brooklyn",47554473,Henry Norman,Brooklyn,Greenpoint,40.7276,-73.94495,Entire home/apt,99,3,29,2019-06-25,0.70,13,50 +10156290,"Sunny, 4th floor elevator building",342734,Kim,Manhattan,Lower East Side,40.7191,-73.98812,Entire home/apt,160,1,9,2016-05-01,0.21,1,0 +10156314,Cozy room in East Village!!,52127857,Beto,Manhattan,East Village,40.72314,-73.9797,Private room,60,1,1,2016-05-23,0.03,2,0 +10156441,Super cute 1+1 Apartment,28105866,J,Manhattan,East Harlem,40.79739,-73.94054,Entire home/apt,90,1,0,,,1,0 +10156574,Great loft for a couple or family,4023912,Guy,Manhattan,Financial District,40.70524,-74.01278,Entire home/apt,230,5,6,2018-06-21,0.15,1,208 +10157256,"Gramercy Park restful, cozy, sun-filled home",28722501,Javier,Manhattan,Gramercy,40.73618,-73.9833,Entire home/apt,250,2,47,2019-07-06,2.15,1,89 +10157977,NYC 3 Bedroom Loft Apt LES Downtown Manhattan,173218,Alex,Manhattan,Lower East Side,40.7213,-73.98559,Entire home/apt,299,30,60,2019-01-05,1.71,1,332 +10158141,Noho Broadway 2 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,NoHo,40.72895,-73.9934,Entire home/apt,499,30,0,,,31,167 +10160215,Torre del Lago Room.,2787,John,Brooklyn,Gravesend,40.60755,-73.9741,Private room,79,1,17,2019-06-26,0.40,6,174 +10161361,"Cozy room, near LaGuardia Airport",2995352,Rachel,Queens,Jackson Heights,40.75658,-73.86807,Private room,46,1,0,,,1,0 +10162752,Modern PH + Balcony&Skyline view,25169027,Max,Brooklyn,Bushwick,40.70491,-73.92367,Entire home/apt,110,4,3,2016-06-24,0.07,1,0 +10163240,Private room in 3 br in Manhattan,41535999,Amber,Manhattan,Morningside Heights,40.80348,-73.9632,Private room,70,1,1,2016-01-12,0.02,1,0 +10163617,Spacious 2 bdr Bed-Stuy Brownstone,4273661,Julia,Brooklyn,Bedford-Stuyvesant,40.69145,-73.93536,Entire home/apt,150,2,1,2016-05-31,0.03,1,0 +10163936,"Cozy Apartment in Williamsburg, BK",27537912,Kenny,Brooklyn,Williamsburg,40.70379,-73.94228,Private room,59,15,12,2017-07-09,0.28,1,0 +10165064,❤️FAB APT WITH PRIVATE GARDEN NEAR CENTRAL PARK!,39603281,Marty,Manhattan,Upper West Side,40.79437,-73.97152,Entire home/apt,165,1,188,2019-07-05,4.42,1,328 +10165181,Beautiful Unique Greenpoint Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72919,-73.94512,Private room,149,3,32,2019-06-29,0.75,13,74 +10165313,Deluxe Loft Living in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72888,-73.94486,Entire home/apt,129,3,3,2017-10-31,0.08,13,74 +10165410,Peaceful room in Bushwick,30658746,Isik,Brooklyn,Bushwick,40.69392,-73.92262,Private room,42,1,3,2016-04-05,0.07,1,0 +10165663,Cozy Private Garden Apartment,52183960,Michael & Bethany,Brooklyn,Bedford-Stuyvesant,40.68025,-73.91199,Entire home/apt,120,2,141,2019-07-06,3.35,1,215 +10166820,Brooklyn apartment 20 min to Manhattan,486147,Christopher,Brooklyn,Park Slope,40.67174,-73.98616,Private room,63,30,17,2018-09-01,0.44,1,73 +10166883,Spacious railroad style 3 bedroom apt in Manhattan,35215309,Victor,Manhattan,East Harlem,40.79805,-73.93943,Entire home/apt,180,4,24,2019-05-24,0.56,2,3 +10166986,Resort-like living in Williamsburg,14461742,Mohammed,Brooklyn,Williamsburg,40.71552,-73.93869,Entire home/apt,220,5,1,2016-01-01,0.02,1,0 +10167436,Sunny Cozy Private Room in East Williamsburg,8515724,J,Brooklyn,Williamsburg,40.7075,-73.94055,Private room,68,1,29,2019-06-04,0.77,3,0 +10167860,"Sunny, Spacious Private BR in East Village!",21430239,Edward,Manhattan,East Village,40.72828,-73.98901,Private room,119,1,134,2018-07-02,3.15,1,0 +10171782,Great Affordable Room In Manhattan,37256833,Jazzy,Manhattan,Harlem,40.82914,-73.94254,Private room,37,2,11,2017-07-05,0.28,1,0 +10172621,Gorgeous and Sunlit 1 BR 31/1-3/1,52228249,Shy,Bronx,Bronxdale,40.85592,-73.86743,Entire home/apt,80,7,0,,,1,0 +10173750,Simple Affordable Room in Brooklyn,24840827,Prashast,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93444,Private room,55,1,0,,,1,0 +10174245,Clean & Cozy room near Central Park,7940120,Yasmine,Manhattan,Upper West Side,40.79958,-73.96403,Private room,50,1,0,,,1,0 +10174662,NOLITA AMAZING Spacious!,40640586,Gary,Manhattan,Lower East Side,40.72299,-73.99251,Entire home/apt,199,2,168,2019-06-22,3.93,1,65 +10175187,Beautiful Brownstone on Tree Lined Block,52243765,Jessie,Brooklyn,Crown Heights,40.67851,-73.95566,Private room,50,3,0,,,1,0 +10175678,Townhouse in Williamsburg,10590489,Caroline,Brooklyn,Williamsburg,40.71367,-73.94228,Private room,60,2,7,2017-05-11,0.17,1,0 +10176552,Astoria LIC 1 bdrm apt 30th ave,15312592,Andrea,Queens,Astoria,40.76722,-73.92203,Entire home/apt,135,3,44,2018-01-02,1.03,1,0 +10177726,"Cute, clean, room in Williamsburg!",12378834,Ana Bess,Brooklyn,Williamsburg,40.70512,-73.94347,Private room,64,1,1,2016-01-05,0.02,1,0 +10182058,Like your cousin house,41326856,Jeerathinan,Queens,Elmhurst,40.74674,-73.87995,Private room,80,1,34,2019-07-01,0.88,5,49 +10184162,In the heart of Williamsburg,50466143,Louis,Brooklyn,Williamsburg,40.71215,-73.95801,Private room,65,2,0,,,1,0 +10185955,Blue Magic,14785032,Jake,Queens,St. Albans,40.69112,-73.77761,Private room,48,1,165,2019-07-02,4.64,1,365 +10185960,Brownstone in Carroll Gardens,42487547,Peter,Brooklyn,Carroll Gardens,40.67875,-73.99599,Entire home/apt,115,3,9,2019-01-03,0.21,1,0 +10186192,Only Steps away from LaGuardia arpt,37312959,Maya,Queens,East Elmhurst,40.77026,-73.87561,Private room,45,1,459,2019-07-07,10.72,5,175 +10186787,Cozy Room In Williamsburg Apartment,10855721,Anthony,Brooklyn,Williamsburg,40.70352,-73.93798,Private room,38,7,1,2016-01-21,0.02,1,0 +10186876,"Lovely LES 1BR, W/D & Elevator: DEC. SUBLET PREFR.",20992861,Chloe,Manhattan,Lower East Side,40.71757,-73.99028,Private room,85,5,1,2016-01-05,0.02,1,0 +10187402,Turtle Bay/UN Brownstone Garden Apt,52320213,Kashif,Manhattan,Midtown,40.7533,-73.97162,Entire home/apt,275,4,77,2018-12-15,1.84,1,0 +10191601,Spacious Astoria Home with Garden,26111326,Larry & Deb,Queens,Astoria,40.76951,-73.93077,Entire home/apt,125,2,26,2017-10-14,0.64,1,0 +10192564,"Lovely,Spacious,UpperWestSide/Spend a SummerMonth",52320041,Lori,Manhattan,Upper West Side,40.80114,-73.96772,Entire home/apt,250,30,17,2018-09-05,0.47,1,190 +10192593,"Cozy Room in LIC, 7 min to TimesSq",1589909,Alosha,Queens,Long Island City,40.74392,-73.95147,Private room,79,15,9,2019-01-03,0.26,2,259 +10192898,"Heart of West Village, over NYE!",7108710,Katie,Manhattan,West Village,40.7344,-74.00262,Private room,105,1,0,,,1,0 +10193343,Steps from subway and Central Park,15891234,Dan,Manhattan,East Harlem,40.794,-73.94585,Entire home/apt,100,2,6,2016-03-29,0.14,1,0 +10193392,great private room,16869971,Han,Manhattan,Roosevelt Island,40.76882,-73.94315,Private room,70,1,7,2016-08-23,0.19,2,0 +10199699,Welcome Students! Huge Very Private Uptown Room,16978120,Chip,Manhattan,Harlem,40.83,-73.94931,Private room,65,30,0,,,2,308 +10200715,"Flatbush Manor, Industrial-Deco 1BR Apt",569864,Jason,Brooklyn,Prospect Heights,40.68007,-73.97317,Entire home/apt,60,2,12,2017-11-26,0.28,1,0 +10201295,private modern room (long term 1 month or more),1519189,Annie,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94273,Private room,50,2,3,2019-06-28,0.09,2,316 +10202835,Cozy room in Artist House,37561828,Evan,Brooklyn,Bushwick,40.69387,-73.92666,Private room,35,3,33,2016-09-05,0.78,1,0 +10204682,NYC Apartment near Central Park!,4821374,Millie,Manhattan,Upper East Side,40.77791,-73.95362,Entire home/apt,180,3,22,2019-07-01,0.83,2,273 +10205011,Entire 1 Bedroom Apt Available In Ditmas Park,43192686,Naudia,Brooklyn,Borough Park,40.62586,-73.98079,Entire home/apt,70,5,33,2018-05-29,0.81,1,27 +10205130,Large Luxury Studio with a view,52430092,Shosh,Manhattan,East Harlem,40.80107,-73.93656,Entire home/apt,220,2,59,2019-07-07,1.47,1,185 +10206990,Cozy Studio Heart Of Midtown!5160,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76544,-73.98651,Entire home/apt,135,30,5,2018-07-13,0.16,96,311 +10207267,Swimming Pool Doorman Studio! 5161,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79544,-73.96736,Entire home/apt,140,30,2,2018-08-26,0.06,96,244 +10207451,Private BR & Bath - Victorian Home,50549394,Susan,Brooklyn,Flatbush,40.63267,-73.96199,Private room,175,2,6,2019-05-12,0.22,1,178 +10207629,Design Swimming Pool!LUX***** 5140,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79534,-73.96583,Entire home/apt,180,30,4,2019-01-03,0.12,96,319 +10207847,Design By Stark!Basket Ball!Washer& Dryer !5230,16098958,Jeremy & Laura,Manhattan,Financial District,40.70503,-74.00674,Entire home/apt,165,30,0,,,96,329 +10208954,Cozy & Elegant Private 1 Bedroom,52445657,Christopher,Queens,Flushing,40.72946,-73.8075,Private room,55,2,16,2018-03-12,0.46,1,0 +10209278,"One Bedroom Apt, Hell's Kitchen",52454608,David,Manhattan,Hell's Kitchen,40.7631,-73.98753,Entire home/apt,100,1,0,,,1,0 +10209973,GREAT BIG ROOM IN APT. W/ BALCONY,9532490,Alexandra,Manhattan,East Village,40.73008,-73.98996,Private room,91,4,8,2018-04-12,0.19,3,0 +10210556,Venerable Chelsea Loft (Small Br),52342677,Austin,Manhattan,Chelsea,40.74729,-73.99107,Private room,175,1,0,,,1,0 +10211452,Lovely Light Filled Room in BedStuy,20086355,Josefina,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95151,Private room,70,5,0,,,1,0 +10212685,Maryhills Brownstone in Park Slope,42413378,Hilal & Maryam,Brooklyn,South Slope,40.6641,-73.98036,Entire home/apt,143,3,180,2019-06-23,4.20,2,263 +10212862,"Tranquil Room in Airy, Sunny Bushwick Loft",2109282,Olga,Brooklyn,Bushwick,40.69688,-73.93448,Private room,55,14,2,2016-09-04,0.06,1,0 +10222008,East Village studio,52526463,Amy,Manhattan,East Village,40.73133,-73.98747,Entire home/apt,110,3,1,2016-01-05,0.02,1,0 +10224557,"Huge room, ready for you, CHEAP!",287634,Asal,Brooklyn,Prospect-Lefferts Gardens,40.65568,-73.95892,Private room,30,1,0,,,1,0 +10224832,Great room,10590166,Vivian,Queens,Fresh Meadows,40.7492,-73.78445,Private room,90,1,3,2018-10-28,0.30,1,87 +10224998,Standard Room/kitchen(sleeps 4),51991283,Jennifer,Manhattan,Harlem,40.80033,-73.9528,Private room,199,1,1,2016-01-11,0.02,5,267 +10226511,Charming Bedroom in Gramercy,52551507,Alisha,Manhattan,Gramercy,40.73728,-73.9842,Private room,99,1,0,,,1,0 +10228901,Sunny private room on LowerEastSide,32824042,Carlos,Manhattan,Lower East Side,40.71334,-73.98575,Private room,40,1,0,,,1,0 +10229075,"Sunny, kid friendly in Midtown East",9504403,Shawna,Manhattan,Kips Bay,40.74443,-73.97949,Entire home/apt,235,3,2,2016-03-15,0.05,1,0 +10229444,"Great Location, 15 mint from Midtown Manhattan.",24884472,Ruveyda,Queens,Astoria,40.7662,-73.92027,Private room,62,2,9,2019-06-03,0.24,1,358 +10230403,"2 room, lower level home in Queens",52573647,Terri,Queens,Rosedale,40.65108,-73.73402,Private room,85,2,9,2016-10-29,0.23,1,87 +10230429,Great room,52539349,Rhonda,Queens,Springfield Gardens,40.67035,-73.7541,Entire home/apt,60,1,212,2019-07-07,4.95,1,297 +10231294,Cozy private room with own TV,52577963,Mark,Queens,Woodhaven,40.69454,-73.85041,Private room,45,5,34,2019-06-10,0.85,6,212 +10231620,Private 2 Bedroom Apt Minutes from Times Square,29452204,Cynthia,Manhattan,Hell's Kitchen,40.76124,-73.98897,Entire home/apt,155,2,0,,,1,0 +10232344,Cozy studio in heart of Manhattan,52584471,Paul,Manhattan,Murray Hill,40.74666,-73.97847,Entire home/apt,135,1,0,,,1,0 +10232553,"PRIVATE BEDROOM,PRIVATE BATH,PRIVATE LIVING ROOM !",389899,Maria,Brooklyn,Williamsburg,40.71742,-73.95847,Entire home/apt,165,1,58,2019-04-07,1.36,2,287 +10233048,"Times Square 2 blks away, Happy NY!",14064072,Ben,Manhattan,Hell's Kitchen,40.76166,-73.99197,Private room,295,1,0,,,1,0 +10233196,The Suite Spot @ Washington Heights,51169036,Francois & Keith,Manhattan,Washington Heights,40.83473,-73.93858,Private room,77,1,89,2019-05-27,2.29,1,228 +10233244,"Sunny, Cozy Room Near Train, Cafes & Parks",11554193,Rishe,Brooklyn,Crown Heights,40.66671,-73.94981,Private room,43,5,16,2018-09-27,0.40,2,38 +10233563,纽约市曼哈顿中城East 52nd st_2室1厅_$4500/月,4227531,Wendy,Manhattan,Midtown,40.75686,-73.96723,Entire home/apt,230,180,0,,,1,365 +10233905,"Sunny Brooklyn, NYC Apartment",14590096,Sophia,Brooklyn,East New York,40.6729,-73.88919,Entire home/apt,70,30,62,2019-01-01,1.56,1,7 +10234090,Park Slope Garden Apartment,52577563,Rosa,Brooklyn,Sunset Park,40.6642,-73.99371,Entire home/apt,105,5,1,2016-01-03,0.02,3,365 +10234232,"Charming, warm room in Bushwick",21094081,Matthew,Brooklyn,Bushwick,40.69675,-73.92964,Private room,54,4,6,2016-09-24,0.14,1,0 +10234437,"Sunny, large 2-bedroom Williamsburg apartment",655234,Julien,Brooklyn,Williamsburg,40.71523,-73.95503,Entire home/apt,199,3,0,,,1,0 +10235422,3 BEDROOMS BROOKLYN - NEW YORK CITY,52604429,Martin,Brooklyn,Bedford-Stuyvesant,40.69171,-73.94891,Entire home/apt,145,4,63,2019-06-16,1.60,2,37 +10241876,Modern Williamsburg BR for rent,39126862,Alexandra,Brooklyn,Williamsburg,40.70635,-73.95175,Private room,97,2,0,,,2,0 +10242095,Huge Room w/ Amazing Queen Bed in S. Williamsburg!,4209540,Aaron,Brooklyn,Williamsburg,40.70154,-73.94759,Private room,55,3,26,2019-05-16,0.68,1,1 +10243895,Beautiful restored full floor apt,5162192,Amy,Manhattan,Upper West Side,40.78273,-73.97553,Entire home/apt,285,5,79,2019-07-02,2.09,12,153 +10244467,Gramercy Suite at The Loralei B&B,18652590,Robert2,Brooklyn,Flatbush,40.63177,-73.96341,Private room,185,2,0,,,1,0 +10244876,Huge room w/ Private outdoor space,52656488,Adeola,Manhattan,Harlem,40.81052,-73.94008,Private room,200,2,0,,,1,0 +10245677,One bedroom in great NYC location!,52661714,Chelsea,Manhattan,Hell's Kitchen,40.76214,-73.98985,Private room,300,1,0,,,1,0 +10246056,Williamsburg Renovated Vintage 3BR,52663715,Mo,Brooklyn,Williamsburg,40.7126,-73.94668,Entire home/apt,255,3,97,2019-05-31,2.37,1,230 +10246479,The St. Johns: A 5-Bedroom Townhouse Near the Park,22693737,Estee,Brooklyn,Crown Heights,40.67146,-73.94377,Entire home/apt,500,30,96,2019-06-23,2.38,1,339 +10246816,Charming Park Slope One+ Bedroom,22663500,Carrie,Brooklyn,South Slope,40.66622,-73.98357,Private room,75,5,1,2018-06-24,0.08,1,0 +10247766,Spacious Brooklyn Room,52674088,Emma,Brooklyn,Greenpoint,40.72738,-73.95553,Private room,150,1,0,,,1,0 +10247799,Cozy Williamsburg Space,2348712,Abe,Brooklyn,Williamsburg,40.70727,-73.96057,Private room,64,2,2,2016-12-31,0.06,1,0 +10249075,Nice comfy pad near Times Square,36494040,Peter,Manhattan,Hell's Kitchen,40.7609,-73.99405,Entire home/apt,250,1,0,,,1,0 +10249886,Cozy 1BR located in Midtown Manhattan,50914821,Ken,Manhattan,Hell's Kitchen,40.76577,-73.9855,Private room,135,1,101,2019-06-25,2.36,1,365 +10250433,Spacious Sunny 1 bed private room in Ditmas Park,21147839,Adrian,Brooklyn,Flatbush,40.64543,-73.96456,Private room,70,7,1,2016-11-01,0.03,1,0 +10251082,"Large, private 2BR in historic brownstone",14084903,Polina,Brooklyn,Prospect Heights,40.67473,-73.96529,Entire home/apt,295,3,182,2019-06-26,4.33,1,226 +10251768,spacious pretty east harlem apt.,19927798,Siobhan,Manhattan,East Harlem,40.79366,-73.94059,Entire home/apt,135,1,4,2016-10-11,0.11,1,0 +10252499,Great Hells Kitchen sofa,2782391,Jeff,Manhattan,Hell's Kitchen,40.76646,-73.98704,Shared room,50,2,2,2016-05-11,0.05,2,0 +10252921,"Central Located Private Apartment, New York Queens",52705961,Harish,Queens,Forest Hills,40.73352,-73.85237,Entire home/apt,69,1,85,2019-07-01,2.13,1,308 +10253159,Newly renovated house 4 bedroom. Minutes from NYC,10721093,Jonathan,Staten Island,Castleton Corners,40.61042,-74.12277,Entire home/apt,299,3,49,2019-06-30,1.91,1,350 +10253315,15 Mins to Times Square & Manhattan-3 Bedroom Apt.,27431753,Lasata,Queens,Sunnyside,40.7388,-73.92327,Entire home/apt,204,4,188,2019-07-04,4.49,1,0 +10253377,Modern luxury condo in Williamsburg,8885753,Dimitri,Brooklyn,Williamsburg,40.71702,-73.95356,Private room,80,3,0,,,1,0 +10257476,Private Room in Artsy Home - Heart of Manhattan,5903619,Kimberly,Manhattan,Hell's Kitchen,40.76464,-73.99403,Private room,125,1,45,2019-06-29,1.13,1,322 +10262473,Awesome Dyker Heights apartment!,11904916,Helen,Brooklyn,Dyker Heights,40.62296,-74.01483,Entire home/apt,69,3,35,2019-06-15,0.88,1,0 +10265988,Serene Apartment Park Ave - UES,6713072,Dana,Manhattan,Upper East Side,40.78464,-73.95142,Entire home/apt,139,4,3,2016-09-21,0.08,1,0 +10267242,Cinque Terre Room. Clean and Quiet Queen Bedroom,2787,John,Brooklyn,Gravesend,40.6081,-73.97541,Private room,149,1,24,2019-05-11,0.64,6,180 +10267693,"Cute beach bungalow by the beach, 80min Manhattan",52793525,J.C.,Queens,Far Rockaway,40.59607,-73.75911,Entire home/apt,100,6,9,2019-05-10,0.22,1,0 +10268663,SkyView - 2 bed 2ba W&D Gym!5175,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.7776,-73.95277,Entire home/apt,360,30,1,2018-10-06,0.11,96,213 +10268712,Hipster Williamsburg Welcomes You!,52799398,Hayley,Brooklyn,Williamsburg,40.71386,-73.94742,Private room,99,3,35,2017-01-09,0.82,1,0 +10268868,Big room at 15min from Times Square,22543733,Leo,Queens,Sunnyside,40.74701,-73.92314,Private room,60,2,5,2017-04-23,0.12,1,0 +10270377,Cozy Bedroom in Apartment Uptown,52601644,Shamroz,Manhattan,Harlem,40.80338,-73.95734,Private room,60,1,2,2016-01-08,0.05,1,0 +10270687,Family Home 2FL 7 Mins To Manhattan,40895328,Beatriz & Will,Queens,Astoria,40.75691,-73.92879,Entire home/apt,275,2,147,2019-07-05,3.43,2,325 +10271071,BROOKLYN'S HAVEN,9346894,Gade,Brooklyn,Cypress Hills,40.68203,-73.89374,Private room,65,1,75,2019-06-06,1.80,2,361 +10271753,BROOKLYN 2 BEDROOM APT,9346894,Gade,Brooklyn,Cypress Hills,40.68281,-73.89509,Entire home/apt,149,1,119,2019-06-23,2.81,2,361 +10272718,Comfortable Room in 3 bedroom Apt,42278723,Ariel,Manhattan,East Harlem,40.78593,-73.94169,Private room,60,1,1,2016-01-24,0.02,1,0 +10273251,Cozy Place - Convenient Location,13187595,Angelica,Brooklyn,Bushwick,40.70161,-73.93131,Entire home/apt,120,4,77,2019-07-05,1.92,1,1 +10276934,位于曼哈顿岛上125街Broadway性价比超高房间短租~,52756677,Yingxiang,Manhattan,Harlem,40.81667,-73.95695,Private room,35,3,0,,,1,0 +10277010,FAMILY FRIENDLY 3BR DUPLEX,5610823,(Email hidden by Airbnb),Brooklyn,Clinton Hill,40.68274,-73.96367,Entire home/apt,261,1,5,2016-08-23,0.14,1,0 +10279086,The Mahogany Suite(Private Studio Apartment),52862385,The Mahogany Suite(Studio Apartment,Brooklyn,Crown Heights,40.66404,-73.93334,Entire home/apt,99,2,110,2019-06-30,2.81,3,271 +10280162,Great room in Awesome Williamsburg,24411752,Sahil,Brooklyn,Williamsburg,40.71042,-73.95071,Private room,49,2,0,,,1,0 +10280345,"Room 5, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64316,-73.96285,Private room,65,1,105,2019-07-03,2.54,2,111 +10280355,Super Cute + Cozy Park Slope Apt.,17607084,Christine,Brooklyn,South Slope,40.6627,-73.98353,Entire home/apt,150,3,0,,,1,0 +10280439,"Comfortable room, lots of sunlight",23156396,Fernando,Manhattan,Harlem,40.82042,-73.95305,Private room,65,1,0,,,1,0 +10280549,"Room 4, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64396,-73.96328,Private room,60,1,138,2019-06-24,3.36,2,122 +10281054,Spacious Private Room in Brooklyn,2238052,Chris,Brooklyn,Bushwick,40.69288,-73.90831,Private room,69,2,54,2019-06-09,1.26,1,0 +10282307,Ideal Brooklyn Location/Spacious+Bright 1-Bed,18272255,Przemek,Brooklyn,Prospect Heights,40.67357,-73.96577,Entire home/apt,150,2,77,2019-06-27,2.56,1,142 +10283008,Large Room in BK Quaint Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67607,-73.95121,Private room,37,21,11,2019-05-23,0.28,2,0 +10283574,Apt next to Astoria park,35518413,Suhel,Queens,Long Island City,40.76322,-73.93334,Entire home/apt,100,1,206,2019-07-04,5.25,2,304 +10289124,"2 BR Brownstone Retreat, 3rd Fl.",31919780,Neil,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93888,Entire home/apt,99,3,88,2019-06-05,2.19,2,47 +10291127,Doorman XL one bedroom!5109,16098958,Jeremy & Laura,Manhattan,Midtown,40.75295,-73.98889,Entire home/apt,160,30,4,2019-03-04,0.12,96,365 +10292758,"**3BR, Large Duplex/private Garden, Time Square!!",52950465,Gal,Manhattan,Hell's Kitchen,40.76195,-73.99224,Entire home/apt,225,30,18,2017-12-05,0.45,12,173 +10293298,Private Room/Private Bath in Gorgeous Brooklyn 2BR,52954055,Victoria Maria,Brooklyn,Bedford-Stuyvesant,40.68574,-73.93022,Private room,51,5,13,2019-06-26,0.33,1,89 +10297427,Charming Loft on the UES,52978874,Isaac,Manhattan,East Harlem,40.78703,-73.95196,Entire home/apt,250,90,0,,,1,363 +10297582,Sunny and huge room in Astoria!,52973925,Alexis,Queens,Astoria,40.75619,-73.91881,Private room,66,1,0,,,1,0 +10298783,Comfortable cozy room,52981364,Rosaly,Manhattan,Harlem,40.80621,-73.94461,Private room,65,2,167,2019-06-25,4.16,1,209 +10301359,"Clean, renovated 1 bed apartment",40826687,Ishwarjot,Brooklyn,Williamsburg,40.71081,-73.94238,Entire home/apt,120,5,34,2018-06-16,0.83,1,0 +10307009,Great UES apt with outdoor space,12518470,Norman,Manhattan,Upper East Side,40.78162,-73.9475,Shared room,125,1,6,2019-05-19,0.15,1,365 +10308738,Prime Upper West Side family home top floor,1250061,John,Manhattan,Upper West Side,40.79121,-73.96963,Entire home/apt,260,3,82,2019-07-02,2.05,1,12 +10310874,Art Inspired One Bedroom Apt in Bedford Stuyvesant,36753915,Ozzy,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94539,Entire home/apt,94,2,37,2018-02-04,0.88,1,0 +10311049,Spacious Sunlit Room in Manhattan 18m Times Square,6057887,Mutaz,Manhattan,Washington Heights,40.8471,-73.93803,Private room,79,3,4,2019-06-09,0.10,5,17 +10314305,Big and quiet room!,11095923,Tobias,Brooklyn,Flatbush,40.64569,-73.95849,Private room,49,8,0,,,3,0 +10314411,Ultra-Modern 6-bedroom House (Great for Groups),4393578,Jack,Manhattan,Chelsea,40.74234,-74.00032,Entire home/apt,1731,10,84,2019-03-31,2.80,2,97 +10316551,Brooklyn Queen Bed,33213436,Alec,Brooklyn,Gowanus,40.67843,-73.98393,Private room,99,1,176,2019-06-04,4.14,8,365 +10318675,Minimalist Urban Jungle with Exposed Brick,13031745,Madeline,Brooklyn,Williamsburg,40.70764,-73.94231,Private room,41,1,1,2016-03-16,0.02,3,0 +10319419,Comfy Queen bedroom near East Village LES,4685913,Paul,Manhattan,East Village,40.72156,-73.97902,Private room,90,1,3,2016-09-01,0.08,2,0 +10319699,Cool Private Apt in Manhattan w/ Comfy Queen Bed!,40501530,Dani,Manhattan,Harlem,40.82317,-73.94507,Entire home/apt,69,3,4,2018-11-30,0.34,1,0 +10322621,Luxury High-Rise Manhattan Apt,20193547,Rosa,Manhattan,Chelsea,40.75168,-73.99376,Private room,81,1,0,,,1,0 +10329264,Artist's Nook,53153865,Grant,Brooklyn,Brooklyn Heights,40.69267,-73.99793,Entire home/apt,113,5,77,2019-06-21,1.99,1,44 +10332161,A large sunny bedroom,53169195,Ehssan,Bronx,Fordham,40.85598,-73.90052,Private room,35,3,2,2016-08-20,0.06,1,0 +10332393,Cute and clean apt in East Harlem!,5744448,Katrina,Manhattan,East Harlem,40.79346,-73.94613,Entire home/apt,85,1,0,,,1,0 +10334395,Private Room in Brooklyn Artist Apt,10197136,Kait,Brooklyn,Bedford-Stuyvesant,40.68086,-73.92746,Private room,45,1,0,,,1,0 +10336440,"Sunny, spacious Clinton Hill 1.5 BR",283636,Nathan & Ximena,Brooklyn,Clinton Hill,40.68545,-73.96048,Entire home/apt,200,3,22,2019-06-03,0.54,1,363 +10337217,NYC Sweetheart Studio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.77467,-73.95405,Entire home/apt,100,30,7,2019-02-08,0.21,9,331 +10338696,Studio Apartment in Safe Neighborhood.,50742613,Reed,Bronx,Pelham Bay,40.84721,-73.83222,Entire home/apt,37,5,10,2018-07-04,0.25,1,0 +10338839,Beautiful Executive 1 bedroom Suite,53206623,Wayde,Queens,Edgemere,40.59606,-73.77882,Entire home/apt,180,1,19,2019-06-10,0.54,1,361 +10339291,New Modern Industrial Studio Apt,53209258,Michelle,Brooklyn,Bushwick,40.69724,-73.932,Private room,105,1,0,,,1,0 +10339835,*Chic Oasis in Trendy Union Square*,3599608,Angella,Manhattan,Gramercy,40.73555,-73.98994,Entire home/apt,200,28,4,2019-06-15,0.11,1,73 +10340695,Spacious bedroom near Prospect Park,53217509,Kelsey,Brooklyn,Crown Heights,40.67434,-73.95762,Private room,45,4,0,,,1,0 +10340705,Luxurious Private Room in Harlem,53216788,Jason,Manhattan,Harlem,40.81015,-73.94728,Private room,80,1,27,2019-05-10,0.79,1,302 +10340745,"Cozy, Renovated, 1BD/1BA Manhattan Apt",8292025,Eric,Manhattan,East Village,40.72551,-73.99075,Entire home/apt,122,3,0,,,1,0 +10340849,Executive retreat in Midtown West,5836431,Darryl,Manhattan,Hell's Kitchen,40.76367,-73.98613,Entire home/apt,400,3,0,,,1,0 +10340994,1 room in 2 bedroom apartment,50828435,Madonna,Brooklyn,Bay Ridge,40.62317,-74.02535,Private room,55,1,1,2016-01-27,0.02,1,0 +10341003,"Clean and spacious,grnd floor apt",53218990,Samuel,Manhattan,Harlem,40.82377,-73.94565,Entire home/apt,110,1,0,,,1,0 +10341262,Authentic 2BR in UES 30 days MIN,23772724,Elem,Manhattan,Upper East Side,40.78165,-73.94647,Entire home/apt,110,30,7,2018-07-31,0.22,15,331 +10342448,Heart Of Hell's Kitchen,53228755,Kodchakorn,Manhattan,Hell's Kitchen,40.75427,-73.9928,Entire home/apt,135,1,3,2017-07-04,0.09,1,0 +10342806,Cozy Washington Heights Bedroom,48370755,Sheldon,Manhattan,Washington Heights,40.85143,-73.93089,Private room,45,1,3,2017-07-24,0.08,1,0 +10343320,"UWS 1 bedroom, tree-lined street between 2 parks!",21359759,Kristen,Manhattan,Upper West Side,40.79939,-73.96875,Entire home/apt,145,1,20,2019-06-30,0.48,1,0 +10343542,student friendly and cozy in Brooklyn!,13400096,Ron,Brooklyn,Crown Heights,40.6765,-73.94277,Private room,37,10,6,2018-10-12,0.14,3,0 +10343638,Sunlit & Spacious 2 Bedroom Brooklyn Apt,17929902,Jesse & Rotem,Brooklyn,Bedford-Stuyvesant,40.68676,-73.92192,Entire home/apt,90,1,163,2019-07-01,3.94,1,25 +10346503,Beautiful UWS Apt with Balcony,1288080,Jessica,Manhattan,Upper West Side,40.78986,-73.96825,Entire home/apt,305,2,21,2018-08-10,0.54,1,177 +10350120,Nice Suite with Kitchen,53268392,Crystal,Manhattan,Upper West Side,40.80076,-73.96389,Shared room,100,1,0,,,1,0 +10351249,Spacious 2 Bedroom Lower East Side,53281880,Sandra,Manhattan,Chinatown,40.71288,-73.9974,Entire home/apt,180,2,167,2019-06-25,4.04,1,261 +10351593,Ed's Place,53274087,Edgar,Manhattan,Harlem,40.82284,-73.94199,Private room,90,1,151,2019-07-06,5.34,1,22 +10352280,Spacious and Well-Lit One Bedroom,18471568,Alex,Manhattan,Upper East Side,40.76824,-73.95858,Entire home/apt,135,3,5,2016-10-16,0.13,1,0 +10353094,Clean room for rent in Park Slope,53284346,Steven,Brooklyn,Park Slope,40.66932,-73.98321,Private room,49,5,2,2016-03-08,0.05,1,0 +10354038,Quaint place in seaside Red Hook,22423634,Peter,Brooklyn,Red Hook,40.67741,-74.0139,Entire home/apt,95,3,12,2017-09-20,0.30,1,0 +10355146,Brooklyn's Finest,3530446,Maurice,Brooklyn,Crown Heights,40.67785,-73.95217,Entire home/apt,155,3,71,2019-07-01,1.81,3,302 +10355806,Sunny & Bright Private Room,28340799,Steph,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95936,Private room,47,14,1,2016-06-20,0.03,1,0 +10356093,"Top Floor, Historic Brownstown",2321360,David,Brooklyn,Bedford-Stuyvesant,40.6858,-73.93465,Entire home/apt,120,2,0,,,1,0 +10357730,Live like a local in Astoria Queens,16823940,Missy,Queens,Ditmars Steinway,40.77651,-73.91009,Private room,38,4,54,2019-05-31,1.40,2,24 +10358093,Entire nice 2 bedroom Apt with Balcony in Brooklyn,3609048,Ken,Brooklyn,Crown Heights,40.6695,-73.93298,Entire home/apt,199,2,9,2019-04-07,0.61,3,90 +10358108,Cozy modern room in the heart of NYC!,53308963,Aj,Manhattan,Chinatown,40.71424,-73.9968,Private room,87,3,27,2019-05-25,0.71,2,12 +10359702,Private room with a bathroom,53319402,Yauheniya,Queens,Astoria,40.76301,-73.91295,Private room,80,1,0,,,1,0 +10360144,Live like a local in NYC! Next to Ditmars subway,16823940,Missy,Queens,Ditmars Steinway,40.77673,-73.90993,Private room,40,2,8,2019-06-08,0.20,2,229 +10360180,Seconds to the City!!!,53321966,Robert,Brooklyn,Bushwick,40.69177,-73.90451,Entire home/apt,155,2,207,2019-06-23,4.89,1,20 +10361885,Dreamy Brownstone Brooklyn Duplex,53330133,Deirdre,Brooklyn,Carroll Gardens,40.67905,-74.00089,Entire home/apt,125,21,0,,,1,0 +10365373,Dream Pad,8049682,Krysta,Brooklyn,Crown Heights,40.67433,-73.9575,Private room,81,3,120,2019-07-02,2.81,1,0 +10365516,Charming Brooklyn apartment w/patio,30983216,Meredith,Brooklyn,Bushwick,40.69358,-73.92409,Entire home/apt,129,2,114,2019-07-06,2.75,1,235 +10365991,"Sunny and Spacious 2BR, Murray Hill",17790870,Zal,Manhattan,Murray Hill,40.74673,-73.97343,Entire home/apt,83,1,2,2016-01-31,0.05,1,0 +10367220,Private room in West Harlem,5764600,Sarah,Manhattan,Harlem,40.81388,-73.95229,Private room,70,2,0,,,1,0 +10367884,Cozy studio in Park Slope,724870,Lindy,Brooklyn,Park Slope,40.6732,-73.97282,Entire home/apt,130,2,16,2017-07-28,0.40,1,0 +10368055,Classic Brooklyn Brownstone,29466025,Alex,Brooklyn,Park Slope,40.67992,-73.9776,Entire home/apt,325,4,2,2016-08-14,0.05,1,0 +10368714,Martha's Apartment,53369750,Martha,Manhattan,Washington Heights,40.8379,-73.94095,Private room,30,3,119,2019-06-30,3.19,1,3 +10369038,纽约之家 (Sunny Home2),27673980,Amy,Queens,Flushing,40.74651,-73.83176,Private room,50,1,112,2019-06-10,2.78,8,84 +10369047,纽约之家(Sunny Home1),27673980,Amy,Queens,Flushing,40.74609,-73.83175,Private room,50,1,98,2019-06-02,2.32,8,79 +10371643,Nice room in the Upper West Side,53387593,Nora,Manhattan,Upper West Side,40.79988,-73.9612,Private room,45,27,0,,,1,0 +10377405,Little Italy/Soho,2983459,Jesper,Manhattan,Nolita,40.72174,-73.99639,Entire home/apt,200,2,5,2016-10-07,0.12,1,0 +10377445,Beautiful High-Rise Studio Condo.,53412784,Mark,Manhattan,Midtown,40.74357,-73.98466,Private room,600,1,0,,,1,0 +10381948,Spacious Cozy Greenpoint Apartment,29741970,Jacob,Brooklyn,Greenpoint,40.72508,-73.94488,Private room,80,2,14,2017-03-11,0.37,1,0 +10382430,Private bedroom located in Bushwick,53445174,Robert,Brooklyn,Bushwick,40.68597,-73.91417,Private room,35,1,1,2016-01-31,0.02,1,0 +10383284,Bushwick Suite,53411078,Caroline,Brooklyn,Bushwick,40.6863,-73.91365,Private room,75,1,1,2018-06-24,0.08,1,158 +10383291,"Comfortable, cozy, dorm-like room",53450065,Maria,Queens,Flushing,40.72211,-73.80908,Private room,30,1,0,,,1,0 +10385262,UPPER WEST SIDE GEM ON PARK BLOCK,53462017,Harry,Manhattan,Upper West Side,40.78923,-73.96802,Entire home/apt,135,30,1,2019-06-21,1,1,30 +10386341,Minutes to the Metro!!!,53468381,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69507,-73.94332,Entire home/apt,125,2,202,2019-06-24,4.76,1,276 +10386831,Cozy Room in Boerum Hill,15895218,Amy,Brooklyn,Gowanus,40.68444,-73.98847,Private room,62,2,1,2016-01-18,0.02,2,0 +10386936,Private Room in Williamsburg!,53471415,Mark,Brooklyn,Williamsburg,40.71141,-73.95155,Private room,1002,365,10,2016-05-19,0.25,1,365 +10387839,Cute 2 bed Williamsburg railroad,53477091,Elena,Brooklyn,Williamsburg,40.71436,-73.95445,Entire home/apt,100,1,5,2016-07-06,0.12,1,0 +10388512,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM A,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69317,-73.82527,Private room,50,1,96,2018-11-22,3.77,5,0 +10390252,NEW listing! Large Prospect Park 1 Bed,2581816,Lindsay,Brooklyn,Flatbush,40.65003,-73.96,Entire home/apt,80,7,0,,,1,0 +10390256,East Village Apartment,3078092,Amanda,Manhattan,East Village,40.73144,-73.98355,Private room,75,1,0,,,1,0 +10390481,STUDIO APARTMENT IN LUXURY BUILDING,53492531,Kyla,Brooklyn,Crown Heights,40.67778,-73.96091,Entire home/apt,60,1,2,2016-01-25,0.05,1,0 +10390902,Cozy spot off L train - 20min>City,53495399,Blake,Brooklyn,Bushwick,40.70526,-73.91964,Private room,75,1,1,2016-03-24,0.02,1,0 +10393619,Spacious room in large funky home!,12258594,Rosa,Brooklyn,Crown Heights,40.66386,-73.93876,Entire home/apt,65,3,8,2016-05-04,0.19,2,0 +10401534,West Village Private Bedroom,51309850,Danielle,Manhattan,Greenwich Village,40.73013,-74.00172,Private room,80,1,1,2016-03-13,0.02,1,0 +10403070,Brownstone in Brooklyn,52657843,Yuchen,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94723,Private room,130,3,6,2017-09-09,0.23,1,0 +10403199,Mid-Century Museum Sleepover,29065752,Cullen,Brooklyn,Williamsburg,40.71863,-73.94528,Entire home/apt,333,7,0,,,1,365 +10403231,Cozy Studio in Excellent Location,9870528,Amit,Manhattan,Chelsea,40.73968,-73.99693,Entire home/apt,120,1,0,,,1,0 +10403667,Nice studio with view of the UN,46714717,Gabriella,Manhattan,Murray Hill,40.74796,-73.97018,Entire home/apt,144,3,0,,,1,0 +10403922,Brooklyn Park Slope Queen Bed,33213436,Alec,Brooklyn,Gowanus,40.67991,-73.98368,Private room,149,1,93,2019-02-18,2.48,8,365 +10405694,Modern 2 bedroom apt in Bushwick,12306936,Liz,Brooklyn,Bushwick,40.68413,-73.90731,Entire home/apt,150,3,45,2017-09-23,1.10,1,129 +10405711,Williamsburg Luxury,9679291,Indiana,Brooklyn,Williamsburg,40.71077,-73.96259,Shared room,60,1,1,2016-03-26,0.03,1,0 +10405891,Charming & bright Williamsburg loft,2360150,Simona,Brooklyn,Greenpoint,40.72025,-73.95195,Entire home/apt,190,2,0,,,1,0 +10407271,Luxury Bushwick Apartment,53582731,Jayson,Brooklyn,Bushwick,40.69995,-73.92937,Entire home/apt,100,5,14,2018-06-28,0.33,1,1 +10407723,Fort Greene Hideaway,814747,Maeve,Brooklyn,Fort Greene,40.68805,-73.96952,Entire home/apt,150,2,131,2019-04-29,3.09,2,0 +10408285,Charming Brooklyn One-Bed,3113491,Michelle,Brooklyn,Crown Heights,40.67008,-73.9571,Entire home/apt,170,3,1,2016-12-03,0.03,1,354 +10409669,Cool Large Room In 3 Min From Manhattan,35421139,Shaun,Queens,Long Island City,40.7457,-73.94497,Private room,65,4,38,2019-06-30,0.93,1,12 +10409905,Beautiful One Bedroom East Harlem Apt,8775113,Omar,Manhattan,East Harlem,40.79037,-73.9428,Entire home/apt,90,2,1,2017-06-04,0.04,1,0 +10411679,Cute Comfy Room in Greenpoint,15235299,Hai-Hsin,Brooklyn,Greenpoint,40.73345,-73.95973,Private room,55,2,26,2019-03-25,0.81,2,0 +10412006,Best street in New York.,53618094,Matthew,Manhattan,Nolita,40.72265,-73.99493,Entire home/apt,250,1,0,,,1,0 +10412649,Large bright room in prime Bushwick,36892974,Nikolai,Brooklyn,Bushwick,40.69886,-73.92957,Private room,80,10,0,,,1,0 +10413474,Beautiful 2 bed Artists Loft - Williamsburg,53627366,Nick,Brooklyn,Williamsburg,40.71156,-73.96343,Entire home/apt,319,3,75,2019-06-25,1.84,1,112 +10413492,Great apartment (midtown area ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76343,-73.99391,Entire home/apt,120,30,5,2018-04-16,0.13,31,345 +10413576,Quiet home free ferry to Manhattan,53627900,Mahmood,Staten Island,New Brighton,40.64465,-74.09272,Private room,50,1,149,2019-07-01,3.70,1,276 +10414065,Large Private Minimalist Loft Room,525663,Steven,Manhattan,Chinatown,40.71489,-73.991,Private room,100,1,0,,,1,0 +10417282,Best bedroom in heart of Astoria,53652520,Allie,Queens,Astoria,40.76771,-73.91675,Private room,60,1,0,,,1,0 +10423846,Renovated sunny studio,24796157,Soonbin,Brooklyn,Fort Greene,40.68797,-73.97288,Entire home/apt,175,5,16,2019-05-20,0.46,1,129 +10425572,Large Bedroom in 2BR spacious brownstone,265152,Marta,Brooklyn,Fort Greene,40.68665,-73.9774,Private room,67,3,14,2019-03-19,0.41,3,0 +10427351,Doorman Studio Gym Deck!5108,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79141,-73.97345,Entire home/apt,140,30,0,,,96,338 +10429094,Private bedroom & 1/2 bath in Wburg,6320146,Caroline,Brooklyn,Williamsburg,40.71855,-73.9438,Private room,90,2,0,,,1,0 +10429566,Gorgeous Apartment on Prime waterfront location,52616278,Dominique,Brooklyn,Williamsburg,40.71966,-73.96265,Entire home/apt,165,30,14,2019-05-28,0.36,1,330 +10433284,"Awesome location, and spacious room",5487321,Xinxin,Manhattan,Gramercy,40.73562,-73.98308,Private room,90,1,0,,,1,0 +10434806,Studio near to TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76486,-73.99479,Entire home/apt,150,30,8,2018-05-04,0.20,31,298 +10435733,Cute Spacious Williamsburg Apt,5927655,Ann,Brooklyn,Williamsburg,40.71892,-73.95616,Private room,115,3,27,2018-10-29,0.69,1,56 +10435862,Two Beds OR KingSize Bed by Subway; Washer/Dryer,9372363,Tj,Brooklyn,Midwood,40.61465,-73.96065,Private room,65,2,8,2019-04-07,0.19,2,321 +10438662,Kick Back and Relax in this Oasis,53773419,Wesleyan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.94805,Private room,70,3,33,2018-09-03,0.81,1,365 +10439129,East Village Exposed Brick Studio,4289557,Dimitri,Manhattan,East Village,40.72647,-73.99061,Entire home/apt,219,2,3,2019-05-31,0.09,1,306 +10444139,Budget Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67833,-73.96904,Private room,45,1,204,2019-07-04,4.82,13,324 +10445597,Cosy room in a Brooklyn brownstone,299236,Eleonora,Brooklyn,Bedford-Stuyvesant,40.68379,-73.9405,Private room,55,1,2,2019-05-19,0.06,1,365 +10446429,Studio in West Village/Cornelia St,11386786,Sam,Manhattan,West Village,40.7327,-74.00341,Private room,80,1,0,,,1,0 +10446926,Renovated Harlem Private Room,53819985,Matthew,Manhattan,Harlem,40.81699,-73.94254,Private room,45,1,15,2016-10-28,0.35,1,0 +10446989,Large Room with own entrance: Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67887,-73.97006,Private room,65,1,64,2019-07-04,1.53,13,329 +10447691,Sunny room in Lower East Side Apt!,183151,Lynh,Manhattan,Lower East Side,40.71578,-73.98201,Private room,47,1,0,,,1,0 +10448095,Private Studio in Beautiful Duplex,11742675,Malik,Manhattan,Upper East Side,40.77686,-73.95084,Private room,65,5,7,2017-10-30,0.19,2,0 +10449807,Charming Lofty 1bd on Quiet Street,2981910,Daphne,Manhattan,Greenwich Village,40.73466,-73.99539,Entire home/apt,229,1,0,,,1,0 +10450820,Beautiful bright huge pre-war in Williamsburg,1918272,Seva,Brooklyn,Williamsburg,40.71419,-73.94368,Entire home/apt,160,5,1,2019-01-01,0.16,1,305 +10452249,3 Bedroom 1.5 Bath Duplex,49167739,Carine,Manhattan,SoHo,40.72768,-74.00233,Entire home/apt,500,5,24,2019-04-14,0.58,2,321 +10452541,Artsy Bushwick NY 2 Beds with laundry & balcony,3370169,Lydia,Brooklyn,Bushwick,40.70086,-73.93063,Entire home/apt,120,2,99,2019-06-21,2.46,1,288 +10452737,"Large Room, High Floor w/ Views - Times Square",6158370,David,Manhattan,Chelsea,40.75126,-73.99498,Private room,139,3,0,,,1,0 +10454844,Tribeca/Soho Garden Apartment,53327491,Scott,Manhattan,Tribeca,40.71934,-74.00998,Entire home/apt,400,6,40,2019-06-11,1.02,1,105 +10458099,room in Bushwick,53884572,Hans,Brooklyn,Bedford-Stuyvesant,40.69433,-73.93262,Private room,45,5,2,2019-05-27,0.06,1,342 +10460113,BELLA CASA-Private Room-queen bed-historical NYC!!,16480700,Eddie&Vlad,Manhattan,Harlem,40.82021,-73.95307,Private room,87,1,80,2018-12-28,2.29,7,55 +10469388,1 br in the Heart of Williamsburg,32812120,Bjorn,Brooklyn,Williamsburg,40.71986,-73.96046,Private room,50,3,0,,,2,0 +10470258,Stylish & Inviting Brownstone Apt,53955282,Jennifer And Kenneth,Manhattan,East Harlem,40.80985,-73.93838,Entire home/apt,115,3,118,2019-06-30,2.85,1,157 +10471763,"Awesome Apartment, Stunning Views",778746,Paul,Brooklyn,Williamsburg,40.71319,-73.96406,Private room,51,1,0,,,1,0 +10472004,☆ 3min walk to train station. Cute Room!,53966115,Nora,Brooklyn,Bedford-Stuyvesant,40.69693,-73.93725,Private room,43,30,5,2019-05-01,0.12,2,311 +10473052,Room in the heart of Williamsburg,41832478,Caroline,Brooklyn,Williamsburg,40.71852,-73.95897,Private room,70,1,0,,,1,0 +10473676,Modern Apartment in Harlem,6385674,Daniel,Manhattan,Harlem,40.80639,-73.95551,Entire home/apt,125,3,7,2019-03-03,0.19,1,0 +10473730,Private Room in Sunlit & Art-filled Apartment,9383056,Dave,Brooklyn,Bedford-Stuyvesant,40.69664,-73.93628,Private room,55,5,3,2017-07-26,0.09,1,0 +10474780,Private Room next to park,40312267,Trini,Brooklyn,Flatbush,40.65398,-73.96377,Private room,50,2,5,2016-05-11,0.12,1,0 +10475047,Large Bohemian Room in Brownstone Apartment,24094081,Isabella,Brooklyn,Bushwick,40.69808,-73.93174,Private room,60,1,1,2016-09-13,0.03,1,0 +10476556,Close to zoo and Botanical Gardens,53717769,Travis,Bronx,Parkchester,40.83953,-73.85717,Entire home/apt,88,1,121,2019-06-23,2.90,1,170 +10476782,Artist Apartment with Tons of Space,47573846,Jemier,Bronx,Wakefield,40.88808,-73.86017,Entire home/apt,85,20,10,2019-06-04,0.24,1,277 +10477767,Spacious & Relaxing Garden Apartment,347475,Chialing,Brooklyn,Columbia St,40.68606,-74.00122,Entire home/apt,275,2,18,2017-05-07,0.46,1,292 +10478114,cozy large room located in Brooklyn,52172297,Dannale,Brooklyn,Bedford-Stuyvesant,40.68168,-73.93574,Private room,65,1,9,2019-06-23,0.24,1,343 +10478482,Park Slope 2 BR Long Term Rental,9122037,Chris,Brooklyn,Park Slope,40.66564,-73.97666,Entire home/apt,135,30,0,,,1,341 +10478526,A cozy two bedroom apartment,16300728,Hamid,Brooklyn,Sunset Park,40.64953,-74.00011,Private room,40,2,9,2019-07-01,0.25,1,20 +10482237,Interfaith Retreat Guest Rooms (Ganges),16677326,Alex And Zeena,Manhattan,Chelsea,40.74751,-73.99483,Private room,85,1,165,2019-06-24,3.96,12,338 +10482409,Interfaith Retreat Guest Rooms (Faith),16677326,Alex And Zeena,Manhattan,Chelsea,40.74896,-73.99657,Private room,85,1,146,2019-06-16,3.62,12,352 +10482554,Interfaith Retreat Guest Rooms (Mary),16677326,Alex And Zeena,Manhattan,Chelsea,40.74973,-73.99515,Private room,85,1,162,2019-05-22,3.91,12,344 +10484019,Beautiful and bright garden studio,1692144,Cecil,Brooklyn,South Slope,40.66388,-73.98587,Entire home/apt,120,1,5,2016-09-07,0.12,1,0 +10487548,Stylish peaceful oasis,587918,Elle,Manhattan,East Village,40.72315,-73.98251,Entire home/apt,220,2,48,2019-06-14,1.21,1,135 +10488146,Large Sunny Private Room w/Balcony & Roof,2355573,Sarah,Brooklyn,Williamsburg,40.71957,-73.94199,Private room,80,5,81,2019-06-27,1.96,2,308 +10488505,3 bedroom duplex next to Central Pk,5162192,Amy,Manhattan,Upper West Side,40.79783,-73.96405,Entire home/apt,275,30,10,2018-12-28,0.25,12,219 +10489240,Entire 2 Bedroom in a smart new house,16782573,Dorina,Queens,Middle Village,40.71852,-73.88373,Entire home/apt,125,4,93,2019-07-02,2.22,4,306 +10489896,Extra Bed in a Cozy & Sunny Studio,54074349,Razan,Manhattan,Chelsea,40.74398,-73.99664,Shared room,46,1,0,,,1,0 +10489923,Beautiful Spacious NYC Apartment,54074445,Catherine,Manhattan,Roosevelt Island,40.76859,-73.94359,Entire home/apt,65,1,3,2016-02-15,0.07,1,0 +10490073,Charming big room by Propect Park,2503478,Hajra,Brooklyn,Prospect-Lefferts Gardens,40.65436,-73.96179,Private room,58,1,5,2017-05-18,0.13,1,2 +10491207,Priv. Room in Bushwick near L Train,54081802,Urs,Queens,Ridgewood,40.70017,-73.91014,Private room,60,1,0,,,1,0 +10491594,one bedroom apt in a new house,16782573,Dorina,Queens,Middle Village,40.71632,-73.88297,Entire home/apt,115,4,6,2018-11-13,0.14,4,314 +10497886,Lots of Light Brooklyn Apartment,21820535,Patrice,Brooklyn,Crown Heights,40.67104,-73.93859,Private room,65,3,0,,,1,0 +10498577,Cozy bedroom in Astoria,54123180,Shirley (Fred),Queens,Astoria,40.75869,-73.91899,Private room,49,1,5,2019-05-26,0.13,1,332 +10499025,Light-filled Greenpoint 2 bedroom apartment,5829904,Erin,Brooklyn,Greenpoint,40.72709,-73.95326,Entire home/apt,70,3,2,2018-04-12,0.11,1,0 +10500033,Big Manhattan room w. private bath,54130768,Aida,Manhattan,Washington Heights,40.85823,-73.93612,Private room,95,1,0,,,1,158 +10500222,Adorable West Village Apartment,22364252,Federica,Manhattan,West Village,40.73492,-74.00457,Entire home/apt,196,15,2,2016-04-01,0.05,1,31 +10500406,Cozy UES bedroom with private bath,16572048,Melissa,Manhattan,Upper East Side,40.76574,-73.95915,Private room,80,5,5,2016-09-07,0.12,1,0 +10502523,Private Room For 1 w/ Separate Entrance Student / Intern / Traveler,43392243,Rita,Staten Island,Concord,40.60077,-74.07788,Private room,35,4,73,2019-05-01,2.10,4,320 +10509662,Spacious bedroom available in SoHo,8255336,Darren,Manhattan,SoHo,40.72302,-74.00487,Private room,82,5,12,2018-12-17,0.30,2,0 +10512575,Prime UWS studio with loft bed South expo !!,26584499,Ofir,Manhattan,Upper West Side,40.7832,-73.98189,Entire home/apt,136,31,2,2019-05-13,0.10,8,365 +10512812,Bright central Manhattan bedroom,6429683,Andrew,Manhattan,Upper East Side,40.76278,-73.96638,Private room,75,1,89,2019-06-29,2.10,1,268 +10512932,Beautiful 1 bedroom apt.,40861618,Greg,Manhattan,Inwood,40.86818,-73.92708,Entire home/apt,68,6,24,2019-06-26,0.60,1,0 +10513228,Beautiful room in HUGE 2 bedroom loft style apt,853118,Felix,Brooklyn,Bedford-Stuyvesant,40.68709,-73.92059,Private room,64,4,25,2019-05-27,0.59,1,18 +10513499,Sunny 1 bedroom Apartment,54206554,Pippa,Brooklyn,Bedford-Stuyvesant,40.68577,-73.95179,Entire home/apt,100,3,1,2016-03-22,0.02,1,0 +10514166,Spacious Room in hip Williamsburg,48170471,Johanna,Brooklyn,Williamsburg,40.71886,-73.96234,Private room,65,2,2,2016-03-02,0.05,2,0 +10514203,Giant Landmark Apartment in the Sky,3710888,Lisa,Brooklyn,Park Slope,40.67546,-73.97528,Private room,350,365,0,,,1,364 +10514879,"2BR Luxury Sunny Apt, East Village",4118478,Katherine,Manhattan,East Village,40.72948,-73.98885,Entire home/apt,450,1,1,2016-03-27,0.03,1,0 +10516610,Lovely Room in Historic Brownstone,54210823,Kristin,Manhattan,Upper West Side,40.79004,-73.97308,Private room,99,1,0,,,1,157 +10519216,Beautiful LARGE one bedroom apt,54235059,Emmett,Queens,Long Island City,40.74399,-73.95321,Entire home/apt,195,1,0,,,1,0 +10520825,1br Large furnished bedroom in cool Bushwick,54242258,Steven,Brooklyn,Bushwick,40.70206,-73.92964,Private room,48,1,1,2016-10-02,0.03,1,0 +10522830,Beautiful garden studio in Bushwick,1855214,Marie-Adele,Brooklyn,Bushwick,40.69366,-73.91608,Entire home/apt,85,2,99,2019-06-17,2.50,1,29 +10524082,Two blocks from Bedstuy-Nostrand G,54262760,Howard,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95387,Private room,70,1,0,,,1,0 +10524365,Parlor apt 1 block from Times Sq,48705078,Mike,Manhattan,Hell's Kitchen,40.76165,-73.99062,Entire home/apt,180,2,136,2019-06-30,3.45,1,253 +10524983,Midtown West luxury one bedroom,49380531,Autumn,Manhattan,Hell's Kitchen,40.76696,-73.99139,Private room,90,1,0,,,1,0 +10525616,Prime Park Slope Apartment,14076423,J,Brooklyn,Park Slope,40.67626,-73.98211,Entire home/apt,175,7,43,2018-08-01,1.07,1,0 +10525911,Big Bright Quiet Williamsburg Townhouse Family Apt,41177070,Dennis,Brooklyn,Williamsburg,40.71402,-73.94432,Entire home/apt,245,3,16,2018-09-24,0.40,2,66 +10526335,Awesome Loft in Brooklyn-- easy access to the city,13200818,Jay,Brooklyn,Bushwick,40.69913,-73.91814,Private room,45,3,11,2018-04-16,0.31,1,0 +10526745,Large Private Bedroom in Comfy Home,54279433,Mfoniso,Queens,Sunnyside,40.74286,-73.91635,Private room,34,1,1,2016-01-26,0.02,1,0 +10526930,UES Studio with roof access,54280519,Russell,Manhattan,Upper East Side,40.76705,-73.95126,Entire home/apt,125,1,0,,,1,0 +10527142,Beautiful and Cozy Garden Level Brooklyn Townhouse,54282449,Michael,Brooklyn,Bedford-Stuyvesant,40.68449,-73.92773,Entire home/apt,75,1,38,2019-06-25,3.79,1,195 +10527274,"Luxury Apt, Near Subway, Perfect for Work or Play!",54283244,Kara,Brooklyn,Bedford-Stuyvesant,40.67895,-73.92851,Entire home/apt,125,3,75,2019-07-02,3.27,1,316 +10527546,Central Park Quiet 1BR,14290739,Stanton,Manhattan,Upper West Side,40.79182,-73.96564,Entire home/apt,200,31,8,2018-08-14,0.22,3,342 +10534018,Sunny Studio ~ Great Location!,17500155,Karol,Queens,Long Island City,40.74775,-73.94797,Entire home/apt,100,12,5,2016-07-25,0.13,1,0 +10537651,Beautiful Central Harlem Apartment,2650644,Bianca,Manhattan,Harlem,40.81306,-73.94141,Entire home/apt,70,7,12,2019-01-19,0.33,1,38 +10537769,Private Room in Greenpoint Brooklyn,54339185,Julio,Brooklyn,Greenpoint,40.72963,-73.94937,Private room,45,1,0,,,1,0 +10538353,Beautiful designer studio on 1st,7203997,Gosia,Brooklyn,Park Slope,40.67094,-73.97388,Entire home/apt,154,3,123,2019-06-23,3.01,2,289 +10539341,"Sunny, one bedroom apartment UES",54120025,Emma,Manhattan,Upper East Side,40.78271,-73.9451,Entire home/apt,300,31,1,2017-09-04,0.04,1,358 +10539491,Kid Friendly Central Park West Apt.,54348871,Suzette,Manhattan,Upper West Side,40.79753,-73.96211,Entire home/apt,250,1,88,2019-06-20,2.13,1,329 +10539779,"Our home away from home +“Cosy studio”",54351163,Sonia,Manhattan,East Village,40.72834,-73.98048,Entire home/apt,140,7,65,2019-06-25,1.65,1,242 +10540337,Comfy Queen Bed in Spacious Room,54353888,David,Manhattan,Harlem,40.83338,-73.95051,Private room,59,5,26,2018-04-22,0.61,1,0 +10540383,Stylish Bedroom (16 min from TIMES SQUARE),40221604,John,Manhattan,Harlem,40.82385,-73.94687,Private room,80,2,86,2019-06-22,2.43,3,63 +10540910,Greenpoint 2BR in Townhouse w/Parking,53713798,Maryla,Brooklyn,Greenpoint,40.7264,-73.95405,Entire home/apt,230,5,33,2019-06-30,0.94,1,26 +10541080,Gorgeous & cozy studio in Manhattan,36710280,Carolina,Manhattan,Upper West Side,40.78975,-73.97001,Entire home/apt,150,1,4,2017-04-18,0.11,1,0 +10542066,Cozy Room/ 10min LGA #2,51531044,Angela,Queens,Jackson Heights,40.75009,-73.87578,Private room,45,1,78,2019-03-22,1.94,4,337 +10542174,Luxury 1-Bdrm in Downtown Brooklyn,10099253,Ashley,Brooklyn,Fort Greene,40.69406,-73.98102,Entire home/apt,144,3,1,2016-02-21,0.02,1,0 +10542347,Mega comfy pullout QN - clean apartment,30423241,Nick,Brooklyn,Greenpoint,40.7299,-73.95782,Private room,44,4,47,2019-05-21,1.30,2,0 +10542658,1 bed room apartment in Greenpoint,2470568,Jonathan,Brooklyn,Greenpoint,40.7235,-73.94203,Entire home/apt,75,1,0,,,1,0 +10542679,Cozy Guest Room in Brooklyn,18802626,Brittni,Brooklyn,Bedford-Stuyvesant,40.69367,-73.93286,Private room,45,10,25,2019-03-03,0.62,1,29 +10544239,Charming East Village apartment,16911296,Gurdane,Manhattan,East Village,40.72997,-73.98633,Private room,129,1,11,2016-10-31,0.27,1,0 +10544439,Room in Soho Apartment,54375099,Rob,Manhattan,SoHo,40.72566,-74.00275,Private room,75,1,1,2016-03-13,0.02,1,0 +10545027,Clinton Hill - pied-à-terre,54378184,Eej,Brooklyn,Clinton Hill,40.68895,-73.96489,Entire home/apt,220,12,13,2019-06-08,0.31,3,354 +10545815,Whole Apt. in East Williamsburg,4148248,Guillermo,Brooklyn,Williamsburg,40.70687,-73.93981,Entire home/apt,125,4,138,2019-06-01,3.50,2,37 +10546254,Fort Greene Studio-Flat,54378184,Eej,Brooklyn,Fort Greene,40.68706,-73.97065,Entire home/apt,150,30,20,2019-06-09,0.47,3,326 +10546363,Uber Cool East Village Apartment,18030603,Madeline,Manhattan,Gramercy,40.73331,-73.98229,Private room,63,1,3,2016-03-27,0.07,1,0 +10546568,Bright Studio Loft Prime Location,8007003,Bridget,Manhattan,West Village,40.73557,-74.006,Entire home/apt,120,1,0,,,1,0 +10546606,Cozy Private Room in Spacious Apt,13558726,Dory,Brooklyn,Bedford-Stuyvesant,40.68645,-73.95711,Private room,45,7,0,,,1,0 +10546729,Beautiful bright modern apartment,1520623,Bec,Brooklyn,Columbia St,40.68591,-74.00164,Entire home/apt,120,7,0,,,1,0 +10548768,Newly Renovated 1 Bedroom in NYC,54401446,Tucker,Manhattan,Harlem,40.83113,-73.94924,Entire home/apt,125,1,0,,,1,0 +10548910,Cozy Spacious 1 Bedroom Apartment,52262589,Samantha,Manhattan,Kips Bay,40.73988,-73.97968,Entire home/apt,450,2,2,2016-10-05,0.05,1,0 +10549650,Prime Location Luxury Tribeca Loft,25996073,Jonathan,Manhattan,Tribeca,40.71991,-74.00641,Entire home/apt,1250,30,0,,,1,342 +10551015,Big cozy room with 2 windows,880323,Vincent,Brooklyn,Bushwick,40.69447,-73.92213,Private room,36,2,1,2016-02-07,0.02,1,0 +10551695,Sunny Apt in Cultural Neighborhood,54422839,Sarah,Brooklyn,Prospect Heights,40.68018,-73.96572,Private room,48,3,4,2017-08-22,0.10,1,0 +10553095,Beautiful Guest Room(B),44547688,Carol,Brooklyn,East New York,40.67283,-73.87785,Private room,50,1,35,2019-06-11,0.92,2,365 +10554070,Loft Room near to NYC Attractions,6650002,Christina,Queens,Long Island City,40.75951,-73.92821,Private room,59,3,42,2019-06-13,0.99,1,3 +10560986,Sublet Beautiful Room in Brooklyn!,45531690,Anjulika,Brooklyn,Greenpoint,40.72853,-73.95533,Private room,39,1,1,2016-01-15,0.02,1,0 +10561771,La Casa Azul,30356325,Joel,Manhattan,Harlem,40.80734,-73.94666,Entire home/apt,70,2,4,2016-04-11,0.10,1,0 +10562085,Up to 1 Week Rental in Williamsburg,5769963,Anoush,Brooklyn,Williamsburg,40.7172,-73.95557,Entire home/apt,150,1,0,,,1,0 +10562990,Cozy Brooklyn One Bedroom,9932811,Alison,Brooklyn,Flatbush,40.64875,-73.96978,Entire home/apt,100,5,2,2016-04-11,0.05,1,0 +10563076,Large Sunny East Williamsburg Loft,15105293,Ryan,Brooklyn,Williamsburg,40.70777,-73.9435,Entire home/apt,80,6,0,,,1,0 +10563686,Large Private 2BR Apartment by Park,1258469,Mark,Brooklyn,Fort Greene,40.68983,-73.97327,Entire home/apt,125,1,75,2019-05-11,1.81,1,171 +10564375,Chelsea Studio + Private Garden!,304651,Egbert Miles,Manhattan,Chelsea,40.74666,-74.00201,Entire home/apt,180,1,0,,,1,0 +10564483,Big room in East Williamsburg Loft,17012496,Lisa,Brooklyn,Williamsburg,40.71987,-73.93705,Private room,45,4,1,2016-08-14,0.03,1,0 +10564616,Beautiful 2bed apt near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76467,-73.99422,Entire home/apt,185,30,8,2019-03-09,0.21,31,332 +10566341,Front Bedroom in Beautiful Apt,17191693,Moss,Brooklyn,Williamsburg,40.70732,-73.95466,Private room,60,2,18,2017-01-04,0.46,2,0 +10567332,Private room 1 block from Bedford L,22499760,Jonny,Brooklyn,Williamsburg,40.71532,-73.95352,Private room,40,1,1,2016-01-17,0.02,1,0 +10568208,Luxurious Private Suit in 3BR Apt,17191693,Moss,Brooklyn,Williamsburg,40.70692,-73.95501,Private room,80,3,35,2017-02-22,0.85,2,0 +10568646,Spacious apt in hip Williamsburg,48170471,Johanna,Brooklyn,Williamsburg,40.71906,-73.96338,Entire home/apt,85,2,0,,,2,0 +10573225,Charming Spacious Park Slope Studio,54539364,Ildiko,Brooklyn,South Slope,40.6651,-73.98307,Entire home/apt,135,3,134,2019-06-16,3.18,1,241 +10574818,Your stay at NYC Artist's Home,54548232,Anna,Manhattan,Harlem,40.825,-73.95226,Private room,70,2,84,2018-12-31,2.23,2,311 +10574909,Grand Loft in Prime Williamsburg,1802807,Lily,Brooklyn,Williamsburg,40.71412,-73.95895,Entire home/apt,600,30,7,2019-05-17,0.17,2,67 +10575777,One Bedroom w/Huge Window & Ceiling,25475028,Mark,Manhattan,Chinatown,40.71448,-73.99157,Private room,110,1,1,2016-03-28,0.03,1,0 +10575811,Large studio in elevator building Cobble Hill,14611780,Paige,Brooklyn,Columbia St,40.68928,-73.99903,Entire home/apt,105,1,5,2018-12-30,0.14,1,0 +10576172,LRG PRVT ROOM IN NYC NEAR METRO & ACTIVITIES,5479882,Nata,Manhattan,Harlem,40.80512,-73.953,Private room,100,2,72,2019-07-02,2.08,1,19 +10576212,"Sunny, charming room in a 2 bedroom",5304248,Drew,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95,Private room,65,5,8,2017-09-19,0.21,1,0 +10576404,Perfect Studio in the Perfect Location on the UES,10406845,Amanda,Manhattan,Upper East Side,40.76952,-73.95688,Entire home/apt,125,14,28,2019-05-18,1.29,1,22 +10576498,Cozy Room in an Eclectic Vintage Styled Apt.,1424084,Claire,Brooklyn,Bushwick,40.69349,-73.91109,Private room,50,1,9,2019-05-26,0.92,1,179 +10585031,Luxury affordable in Williamsburg!,48988714,Luigi,Brooklyn,Williamsburg,40.71362,-73.95617,Entire home/apt,360,1,4,2019-06-22,0.18,3,201 +10586622,Beautiful Apt w/ rooftop view,14944507,Jason & Carlos,Brooklyn,Park Slope,40.67225,-73.97357,Entire home/apt,160,5,16,2019-05-08,0.40,1,11 +10587891,Chelsea Apartment (2 bedroom),32712155,Russell,Manhattan,Chelsea,40.7408,-74.00127,Entire home/apt,225,1,0,,,1,0 +10589384,Beautiful Views & Apt in Brooklyn!,1558246,Modupe,Brooklyn,Fort Greene,40.68811,-73.97621,Private room,105,3,0,,,1,0 +10591658,Beautiful Studio in Soho - Greenwich Village,14077910,Sabrina And Antoine,Manhattan,Greenwich Village,40.72843,-73.9999,Entire home/apt,175,60,28,2019-03-29,0.70,1,126 +10592839,Light-filled Bushwick apartment,4745560,Michelle,Brooklyn,Bushwick,40.70158,-73.91851,Entire home/apt,130,1,0,,,1,0 +10593675,"La Spezia room. Clean, quiet and comfortable bed",2787,John,Brooklyn,Bensonhurst,40.60951,-73.97642,Shared room,79,1,15,2018-09-29,0.43,6,180 +10595000,Spacious Room in Park Slope,16919131,Joseph,Brooklyn,Park Slope,40.6668,-73.97713,Private room,90,2,56,2019-05-29,1.34,1,60 +10595374,Elegant Chic Brooklyn Duplex House. Private Deck,13731605,Antonella,Brooklyn,Crown Heights,40.6764,-73.93819,Entire home/apt,283,4,92,2019-07-03,2.34,2,234 +10596856,Luxurious 1 King bedroom in NYC.,54675040,Christopher,Queens,Woodside,40.74706,-73.90434,Private room,50,1,0,,,1,0 +10600032,Very nice 1 bedroom house/bungalow,53894093,Rafael,Staten Island,Midland Beach,40.57411,-74.09436,Entire home/apt,100,2,0,,,1,0 +10605445,Big Sunny 3rd fl Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67897,-73.9709,Private room,70,1,238,2019-07-05,5.87,13,313 +10605897,Chic Modern Luxury Apartment. 2 bed 2 bath. Patio,13731605,Antonella,Brooklyn,Crown Heights,40.67689,-73.93967,Entire home/apt,199,4,52,2019-06-24,1.31,2,242 +10608951,BedStuy Parlor near A&J Trains JFK,43816209,Shawn,Brooklyn,Bedford-Stuyvesant,40.68616,-73.92514,Private room,45,4,30,2019-06-29,0.77,1,286 +10609249,Magnificent New 2 BR near park Ave,1515120,Dino,Manhattan,Midtown,40.755,-73.96562,Private room,325,3,9,2016-12-28,0.23,1,88 +10609963,"Sleek Loft, Premium Location",5179817,Damien,Manhattan,Flatiron District,40.74102,-73.98961,Entire home/apt,275,1,0,,,1,0 +10611168,Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76295,-73.99432,Entire home/apt,130,30,6,2019-06-15,0.15,31,331 +10612067,Beautiful Upper East Side Apartment,24938988,Eli,Manhattan,Upper East Side,40.77032,-73.95268,Entire home/apt,179,1,138,2019-06-16,3.30,1,252 +10612199,Serene luxury in Harlem,54761069,Erika,Manhattan,Harlem,40.80708,-73.95211,Private room,80,3,10,2019-01-05,0.28,1,332 +10612564,Apartment share near Lincoln Center,54763152,Mary Sue,Manhattan,Upper West Side,40.77929,-73.98513,Private room,99,4,68,2019-06-06,1.62,1,57 +10614204,Bright Clean North Central Park,13620283,Brenn,Manhattan,Harlem,40.8027,-73.94629,Entire home/apt,135,3,16,2019-01-01,0.39,1,0 +10615883,Huge Sunny Morocco-Chic Music Pad,4966907,Hatim,Brooklyn,Bedford-Stuyvesant,40.69506,-73.95019,Entire home/apt,145,3,41,2019-05-04,1.00,1,0 +10625484,"Midcentury Feel, Hipster Pad (Hipsters Only)",4274594,Matt,Brooklyn,Bedford-Stuyvesant,40.6859,-73.9576,Entire home/apt,69,90,43,2018-06-27,1.16,1,0 +10628495,Palatial Prime Crown Heights Apt,5812675,Danny,Brooklyn,Crown Heights,40.66791,-73.95914,Entire home/apt,89,5,0,,,1,0 +10630048,Sunny modern oasis near THE Park,9273561,Nadine,Manhattan,East Harlem,40.79013,-73.94473,Private room,75,2,21,2016-09-19,0.50,1,0 +10631201,Luxury apartment 3BDR with balcony,37806185,David,Manhattan,Murray Hill,40.7441,-73.97224,Shared room,200,1,0,,,1,0 +10634636,Cozy room 15mins Manhattan & 10 LGA,697477,Kesang,Queens,Woodside,40.75427,-73.90646,Private room,55,1,54,2019-06-21,1.28,1,297 +10635913,Murray Hill Studio,54908827,Nina,Manhattan,Murray Hill,40.74976,-73.97748,Entire home/apt,80,1,0,,,1,0 +10636997,One Bedroom Beauty in Bushwick,54917558,Valeria,Brooklyn,Bushwick,40.68678,-73.90629,Entire home/apt,75,2,154,2019-06-29,4.04,1,15 +10637010,Harlem Cottage,11160340,Jerome,Manhattan,Morningside Heights,40.80387,-73.96096,Entire home/apt,90,3,1,2018-04-05,0.07,2,0 +10637554,Private Studio: Landmark Dt (Smart TV/Wifi/Cable),54921733,Louise,Brooklyn,Flatbush,40.64295,-73.96704,Entire home/apt,98,4,106,2019-06-24,2.59,3,273 +10647977,Cozy studio in WaHi,32298504,Cassy,Manhattan,Washington Heights,40.83723,-73.94249,Entire home/apt,70,3,34,2018-10-24,0.81,1,0 +10648971,Large Modern 1 BR on UpperWestSide,10489069,Alexandr,Manhattan,Upper West Side,40.79886,-73.96157,Entire home/apt,132,7,0,,,1,0 +10650510,Furnished room + full amenities,25104068,Michael,Brooklyn,Crown Heights,40.66938,-73.95722,Private room,50,2,24,2019-06-22,1.79,1,47 +10651757,LUX 650SQF Balcony Gym W&D 5119,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.75685,-73.99569,Entire home/apt,250,30,1,2018-11-20,0.13,96,331 +10656360,This is a place in the UES,55036405,Shoaib,Manhattan,Upper East Side,40.77524,-73.94682,Shared room,199,1,0,,,1,0 +10657080,Charming 1bed! sleeps4 SOHO Location!Location!,36199306,Shelby,Manhattan,Nolita,40.72396,-73.99445,Entire home/apt,99,2,43,2018-06-30,1.05,1,0 +10657189,"Charming room in South Williamsburg, Brooklyn.",10571574,Claudia,Brooklyn,Bedford-Stuyvesant,40.69892,-73.94645,Private room,77,2,74,2019-06-29,1.88,1,343 +10658564,Cozy 1 Bedroom on Upper east side,21229563,Ankita,Manhattan,Upper East Side,40.78231,-73.94571,Entire home/apt,100,1,0,,,1,0 +10658613,NYC designer loft amazing City view,2645592,De & Claudia,Queens,Astoria,40.75666,-73.91449,Entire home/apt,130,3,50,2019-07-01,1.27,2,352 +10659825,Private room,55060863,Rob,Brooklyn,Midwood,40.61155,-73.96337,Private room,60,1,1,2016-04-18,0.03,1,0 +10660249,Cute Apartment in Hell's Kitchen,55062858,Jennifer,Manhattan,Hell's Kitchen,40.75645,-73.99404,Entire home/apt,200,1,207,2019-06-23,5.01,1,245 +10666314,2 bedroom apartment in Bushwick,9466826,Marion,Brooklyn,Williamsburg,40.70788,-73.93889,Entire home/apt,117,10,3,2019-06-03,0.43,1,1 +10671589,"2 bd, 1.5 bath by Prospect Park",11375436,Sharra,Brooklyn,Windsor Terrace,40.65412,-73.97706,Entire home/apt,89,1,1,2016-03-05,0.02,1,0 +10672698,"COZY FOR 1 TO 2. SHARED BED, SEPARATE FOR A FEE .",8136206,Rob,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95836,Private room,44,2,31,2019-06-30,0.75,2,297 +10674243,Cal King lovely room withTVwasher-dryer in kitchen,40733633,Betsy,Manhattan,Inwood,40.86912,-73.91988,Private room,70,1,1,2016-08-28,0.03,1,312 +10674836,Sunny Room in Prime East Village,51238762,Marcin,Manhattan,East Village,40.73058,-73.98286,Private room,39,1,4,2016-03-03,0.10,1,0 +10675118,Large Renovated Apt. Mins Away From Subway!,2199280,Rosa,Manhattan,Morningside Heights,40.81535,-73.95862,Entire home/apt,150,31,15,2017-05-28,0.36,1,0 +10675218,New York style loft space,7556789,Samuel,Manhattan,East Harlem,40.80523,-73.93929,Private room,60,1,0,,,1,0 +10676786,dreamy Sunset Park one bedroom,12672672,Rebecca,Brooklyn,Sunset Park,40.64179,-74.01147,Entire home/apt,75,1,0,,,1,0 +10676959,Intimate and cozy,47121117,Cindy,Manhattan,Harlem,40.80097,-73.9489,Private room,89,1,8,2017-08-08,0.21,1,0 +10677426,"Bright, Spacious Alcove 1 Bedroom",41474488,Gina,Manhattan,Greenwich Village,40.7276,-74.00075,Entire home/apt,200,2,47,2019-06-16,1.14,1,205 +10679702,Clinton Hill - Garden Apt,48415933,Judene,Brooklyn,Clinton Hill,40.68256,-73.96108,Entire home/apt,124,2,97,2019-07-06,2.45,1,104 +10679740,Spacious Cute room in Williamsburg,55165952,Liz,Brooklyn,Williamsburg,40.71507,-73.94093,Private room,60,1,0,,,1,0 +10680745,Private huge BDR in East Village!,29882817,Nick,Manhattan,East Village,40.72553,-73.9777,Private room,70,4,0,,,1,0 +10681362,BK LOFT: Unique/Modern/Fun,5075354,Ted,Brooklyn,Crown Heights,40.67755,-73.95108,Entire home/apt,100,4,8,2017-11-25,0.19,1,0 +10681555,Doorman XLL Studio Midtown! 5163,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7653,-73.98536,Entire home/apt,117,30,2,2018-04-26,0.07,96,198 +10681986,Fully furnished room in 2BR NYC Apt,55179950,Emilio,Manhattan,Washington Heights,40.83865,-73.93782,Private room,100,1,0,,,1,0 +10682290,Lovely Room w/backyard in Bushwick,41494545,Connie,Brooklyn,Bushwick,40.70123,-73.91865,Private room,50,5,2,2017-01-04,0.07,1,0 +10682316,Spacious Sanctuary in Bushwick,8655790,Romany,Brooklyn,Bushwick,40.69887,-73.9227,Private room,75,20,1,2018-10-19,0.11,1,93 +10682536,"Bright, central, prime Williamsburg",50296635,Siobhán,Brooklyn,Williamsburg,40.71455,-73.9618,Private room,75,2,3,2016-06-11,0.07,1,0 +10684164,Private 1 Bdrm Apt - Prospect Park,19227044,Adam,Brooklyn,Flatbush,40.64945,-73.9624,Entire home/apt,75,7,1,2016-02-13,0.02,1,0 +10684843,Manhattan 웨스트빌리지에 위치한 고급 스튜디오 (도어맨),55197031,단비,Manhattan,West Village,40.73242,-74.00411,Entire home/apt,150,1,0,,,1,0 +10685403,Urban Bliss - Bushwick,55201743,William,Brooklyn,Bushwick,40.697,-73.92176,Private room,65,1,1,2017-03-16,0.04,1,0 +10685496,"Cozy shared space, heart of Astoria",18192996,Jessica And Danny,Queens,Ditmars Steinway,40.7794,-73.91646,Shared room,22,1,14,2016-12-12,0.34,2,0 +10686287,Brick Wall Charmer in Kips Bay,36998357,Lev,Manhattan,Kips Bay,40.7388,-73.98024,Entire home/apt,120,1,0,,,1,0 +10686350,Chic and Cozy Chinatown Loft,10558652,Teddy,Manhattan,Two Bridges,40.71287,-73.99573,Entire home/apt,320,4,6,2019-01-01,0.18,2,142 +10686406,Master Bedroom w/ en suite,55207670,David,Queens,Astoria,40.76446,-73.92988,Private room,65,2,0,,,1,0 +10686809,Feel at home in Brooklyn,15927582,Hena,Brooklyn,Park Slope,40.67706,-73.98227,Entire home/apt,95,1,0,,,1,0 +10686958,"Lovely and quiet large 1 bedroom in Inwood, NYC",8784903,Terra,Manhattan,Inwood,40.86679,-73.92699,Entire home/apt,115,30,1,2018-08-09,0.09,1,0 +10692885,Cool Chelsea studio for chilling!,2541529,Sarah,Manhattan,Chelsea,40.74237,-74.00063,Entire home/apt,120,2,2,2016-06-08,0.05,1,0 +10695252,"Master Room in 2,300sf Soho Loft",488202,Emlyn,Manhattan,SoHo,40.72112,-74.00039,Private room,150,1,0,,,1,0 +10695321,Ditmas Park Brooklyn private room,55257448,Daniel,Brooklyn,Flatbush,40.64205,-73.96622,Private room,40,5,0,,,1,0 +10696159,Lovely BK 4-BR Duplex with Garden,55261821,Celine,Brooklyn,Park Slope,40.67631,-73.97224,Entire home/apt,425,5,2,2016-07-09,0.05,1,0 +10697652,COZY Brooklyn Apartment 20 minutes to City,55270457,Karolina,Brooklyn,Bushwick,40.68696,-73.91382,Entire home/apt,75,2,179,2019-06-30,4.47,1,123 +10701027,Prospect Heights - Large Sunny Apt,345252,Thomas,Brooklyn,Crown Heights,40.6803,-73.96261,Entire home/apt,150,21,23,2019-06-24,0.57,3,0 +10702489,Charming room in Victorian house,14796247,Sandra And Cary,Brooklyn,Flatbush,40.64266,-73.96492,Private room,49,7,22,2019-02-28,0.54,4,269 +10702506,Large studio w/ doorman and elevator,23778489,Valissa,Manhattan,East Village,40.72215,-73.98496,Entire home/apt,165,4,8,2018-10-21,0.21,1,351 +10702865,Sunny and chic NYC apartment,55300400,Katherine,Manhattan,SoHo,40.72523,-74.00127,Entire home/apt,200,1,0,,,1,0 +10704981,Spacious UWS Studio w/Private Patio,6716450,Lacy,Manhattan,Upper West Side,40.79816,-73.97178,Entire home/apt,175,2,1,2016-10-10,0.03,1,0 +10708300,Beautiful Garden Apartment Close to Train,55334250,Kara & Tyler,Brooklyn,Crown Heights,40.6643,-73.95196,Private room,97,1,209,2019-06-24,5.02,1,9 +10709205,"Light, Large Apt Near Central Park",11774630,Jane,Manhattan,East Harlem,40.79018,-73.94689,Entire home/apt,270,4,171,2019-06-26,4.14,2,15 +10709249,Newly renovated luxury apartment,35761677,Sandrine,Brooklyn,Bedford-Stuyvesant,40.682,-73.91851,Entire home/apt,155,2,156,2019-07-06,3.74,1,223 +10709846,"Sunny, spacious room in Greenpoint",7822683,,Brooklyn,Greenpoint,40.73539,-73.95838,Private room,55,10,2,2016-11-05,0.05,1,0 +10710179,COZY EAST VILLAGE-PRIVATE SPACE,45085848,Joel & Renee,Manhattan,East Village,40.72999,-73.98275,Private room,80,3,72,2019-06-23,1.79,1,133 +10719039,RIVERDALE GRANDVIEW,55395596,Vian,Bronx,Fieldston,40.88777,-73.9059,Private room,70,1,1,2016-08-07,0.03,1,0 +10723142,Cozy and Small bedroom in Astoria!!,24981045,Julio,Queens,Astoria,40.76061,-73.91767,Private room,35,1,1,2016-02-01,0.02,1,0 +10724373,Gorgeous Gramercy Studio,1913404,Ellie,Manhattan,Gramercy,40.73804,-73.9852,Entire home/apt,110,1,3,2017-11-22,0.07,1,0 +10724792,"New, Lux Doorman,U.N. Grand Central",52950465,Gal,Manhattan,Midtown,40.75279,-73.97251,Entire home/apt,129,30,4,2016-09-22,0.11,12,328 +10725897,"Sunny, Arty East Williamsburg Loft",55433649,Brian,Brooklyn,Williamsburg,40.71504,-73.93613,Private room,45,1,169,2019-07-04,4.11,1,134 +10729454,Comfortable and eclectic UES room.,3139829,Tyler,Manhattan,Upper East Side,40.76797,-73.95369,Private room,50,1,2,2016-03-11,0.05,1,0 +10729951,Spacious Oasis w/ Private Entrance,10954437,Riah,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94864,Private room,105,1,24,2017-01-08,0.69,1,0 +10730086,Spacious Brooklyn Room for Travelers,28546873,Justin,Brooklyn,Bedford-Stuyvesant,40.68995,-73.92844,Private room,45,3,9,2019-03-20,0.34,1,80 +10731035,"Nice private room, 2 blocks from Times Square.",45033175,Eugene,Manhattan,Hell's Kitchen,40.76175,-73.99041,Private room,83,2,15,2019-04-22,0.37,3,1 +10731317,Cozy NYC apartment shared space female only,10525320,Candace,Manhattan,Upper East Side,40.77141,-73.9534,Shared room,40,1,56,2019-03-15,1.35,2,173 +10731618,Gramercy Apartment,29880001,Saket,Manhattan,Flatiron District,40.74095,-73.98554,Private room,85,1,0,,,1,0 +10731680,3 bedroom in the heart of Manhattan,12133055,Martin,Manhattan,Hell's Kitchen,40.75981,-73.99071,Entire home/apt,400,3,124,2019-06-17,3.00,1,261 +10732197,Live on an island in NYC!,22774265,Pika,Manhattan,Roosevelt Island,40.76189,-73.94934,Private room,64,3,51,2019-06-30,1.28,1,40 +10732341,Entire Home Cozy Studio on Upper East Side,34040597,Joseph F,Manhattan,Upper East Side,40.76443,-73.95833,Entire home/apt,130,2,19,2019-07-01,0.45,1,13 +10732870,Private Bedroom in the Heights,53224546,Zachory,Manhattan,Washington Heights,40.83365,-73.94459,Private room,65,3,0,,,1,0 +10733505,Entire Apartment to yourself in the Heart of NYC!!,45005719,Nia,Manhattan,Hell's Kitchen,40.76504,-73.98856,Entire home/apt,200,1,1,2016-11-05,0.03,1,364 +10741931,Comfort Home,55532612,Chantelle,Queens,Arverne,40.5903,-73.79247,Entire home/apt,200,1,15,2019-06-23,1.23,1,354 +10746511,Your Own Garden Apt in Brooklyn,55558315,Euvin,Brooklyn,Crown Heights,40.6713,-73.95603,Entire home/apt,120,2,0,,,1,0 +10747156,"Cozy room, Queens, New York",24489871,Adriana,Queens,Rego Park,40.73462,-73.85705,Private room,60,1,64,2017-03-07,1.57,2,280 +10748040,"On Broadway, clean & comfy room",55567227,Neida,Manhattan,Harlem,40.82903,-73.94747,Private room,60,3,124,2019-07-05,3.16,2,82 +10751336,Helen's apartment,15546330,Helen,Manhattan,Morningside Heights,40.80554,-73.96422,Entire home/apt,80,1,1,2016-02-01,0.02,1,0 +10752737,HUGE Bedroom in Lower East Side,20358661,Ryan,Manhattan,Lower East Side,40.71823,-73.98319,Private room,90,7,0,,,1,0 +10753780,Gorgeous Duplex in the Heart of BK,2423061,Mike,Brooklyn,Clinton Hill,40.6837,-73.96505,Entire home/apt,125,5,1,2016-03-17,0.02,1,0 +10753967,☆Williamsburg Cute Room Sublet☆,8794068,Marico,Brooklyn,Williamsburg,40.71113,-73.95457,Private room,40,20,0,,,1,0 +10755415,Harlem Bed and BYOBreakfast,35301269,Maria,Manhattan,Harlem,40.80526,-73.95509,Private room,80,2,69,2019-06-15,1.72,1,140 +10755419,"Hip, renovated 1-bedroom",55617221,Chad,Manhattan,Civic Center,40.71331,-73.99822,Entire home/apt,100,2,0,,,1,0 +10755640,Artist friendly: cozy&sunny in quiet Prospect Park,25514430,Alisha,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.9489,Entire home/apt,50,6,1,2017-08-08,0.04,1,0 +10755963,A Room in Brooklyn,33859930,Ghe,Brooklyn,East Flatbush,40.64528,-73.93457,Private room,37,1,16,2018-05-22,0.46,1,0 +10765309,Designed west village with PATIO,8851665,Ohad,Manhattan,West Village,40.73303,-74.00118,Entire home/apt,200,3,1,2016-07-02,0.03,1,0 +10765607,Great location • Cozy • Clean,243427,Mar,Brooklyn,Williamsburg,40.71327,-73.96438,Private room,65,3,9,2017-11-05,0.24,1,0 +10766309,Heart Of Chelsea Family Vacation,13713796,Mikael,Manhattan,Chelsea,40.74358,-73.99758,Private room,130,2,32,2019-06-30,0.79,1,355 +10766339,Gorgeous 2BR by Brooklyn Museum,9358748,Uri,Brooklyn,Crown Heights,40.67039,-73.95959,Entire home/apt,95,14,3,2016-10-19,0.08,1,0 +10769752,Brooklyn Bright Room Prospect Park w AirCon.,51372003,Ninell,Brooklyn,East Flatbush,40.65058,-73.94859,Private room,54,2,63,2018-12-09,1.52,2,316 +10770836,Upper West Side Studio,55709707,Ethan,Manhattan,Upper West Side,40.79176,-73.97329,Entire home/apt,82,1,0,,,1,0 +10771369,Awesome Midtown Get-A-Way,55713233,Ryan,Manhattan,Murray Hill,40.7462,-73.97707,Entire home/apt,105,3,3,2016-09-06,0.08,1,0 +10771754,Cozy Studio Near Prospect Park,47062311,Maggie,Brooklyn,Flatbush,40.64681,-73.95901,Shared room,30,3,5,2017-02-05,0.14,1,189 +10772141,Luxury Building 5 Mins- Times Sq,55718379,Aaash,Manhattan,Hell's Kitchen,40.76407,-73.98868,Entire home/apt,169,30,0,,,1,364 +10773150,Upper East Side Little Private Room,55725808,Xin,Manhattan,East Harlem,40.7869,-73.95285,Private room,45,1,2,2016-02-02,0.05,1,0 +10774325,Convenient Studio Apartment!,3068641,Erum,Manhattan,Harlem,40.80806,-73.9435,Entire home/apt,100,4,0,,,1,0 +10782718,Studio (200 square feet),55785222,Ryan,Queens,Astoria,40.76636,-73.90393,Entire home/apt,75,1,0,,,1,0 +10784650,"East Village 3 Beds, 2 bedrooms. Sleeps 5 MAX",48320077,Michael,Manhattan,East Village,40.7276,-73.98635,Entire home/apt,219,1,101,2019-07-01,2.46,2,341 +10786240,nice apartment in New york city,55808233,John,Manhattan,Hell's Kitchen,40.75979,-73.99216,Private room,75,2,0,,,1,0 +10786987,Bright & Spacious living room,55813598,Karen,Brooklyn,Gravesend,40.6074,-73.97458,Shared room,25,3,119,2019-07-02,2.90,2,349 +10787042,Studio 5 min walk to Time Square,16430584,Karen,Manhattan,Hell's Kitchen,40.76371,-73.99306,Entire home/apt,250,3,3,2016-11-16,0.08,1,0 +10788568,Houston St. 1 BDRM East Village/LES,55823684,Timothy,Manhattan,East Village,40.72381,-73.9892,Entire home/apt,149,1,0,,,1,0 +10789121,Big private room in crown heights,329931,Patricia,Brooklyn,Crown Heights,40.67393,-73.9546,Private room,33,7,0,,,1,0 +10789911,One Bedroom in Astoria,32003714,Christopher,Queens,Ditmars Steinway,40.77567,-73.92202,Private room,90,7,3,2018-08-05,0.09,1,358 +10790350,Brooklyn For Life - Park Slope,14171743,Douglas,Brooklyn,South Slope,40.66323,-73.98117,Private room,87,2,112,2019-06-30,2.74,1,10 +10792883,"Cozy , peaceful place to relax",55853534,Megan,Brooklyn,Bedford-Stuyvesant,40.68542,-73.93965,Private room,60,4,0,,,1,0 +10798553,Gorgeous Greenpoint: Sublet April 10th - 27th,798949,Rachel,Brooklyn,Greenpoint,40.7254,-73.95246,Entire home/apt,99,10,0,,,1,0 +10801094,FT Greene Flat Private Entrance,11189753,Sj,Brooklyn,Fort Greene,40.68729,-73.96995,Entire home/apt,225,10,10,2019-06-24,0.26,4,350 +10801474,Spacious room in a 3 bedroom Apt,55908144,Setareh,Manhattan,Harlem,40.81389,-73.95205,Private room,45,7,6,2016-08-11,0.15,1,0 +10803759,"Bright Williamsburg 1 BD, Bedford L",18575991,Gregory,Brooklyn,Williamsburg,40.7178,-73.95595,Entire home/apt,129,4,5,2017-11-26,0.12,1,0 +10805767,East Village 2bdr/1bath,11522679,Andie,Manhattan,East Village,40.73117,-73.98593,Entire home/apt,325,1,0,,,1,0 +10807749,Chic 1-BR in Lovely Park Slope,45082547,Gretta J.,Brooklyn,South Slope,40.66686,-73.98907,Entire home/apt,120,2,5,2016-04-26,0.12,1,0 +10807838,Spacious Room Near Public Transport and shopping,55948559,Barry,Bronx,Pelham Gardens,40.86553,-73.83993,Private room,35,1,67,2019-07-04,1.81,4,11 +10808086,Huge Quiet Fun Spot In Heart o LES!,15129374,Ben,Manhattan,Lower East Side,40.72088,-73.98533,Entire home/apt,200,2,1,2016-03-30,0.03,1,0 +10808493,This quaint 2 bedroom apart in NYC,6198203,Janice,Brooklyn,East Flatbush,40.66101,-73.9302,Entire home/apt,100,2,29,2019-06-08,2.17,1,318 +10810807,Bright w/ stunning Manhattan views,5397742,Natalie,Brooklyn,Downtown Brooklyn,40.70007,-73.99091,Entire home/apt,250,1,0,,,1,0 +10811465,The Quintessential Bushwick Loft: The Brig,6778614,Lindsey,Brooklyn,Bushwick,40.70807,-73.92113,Private room,122,2,11,2018-07-15,0.82,2,0 +10811548,Historic Greenwich Village apt.,19408191,Julien,Manhattan,Greenwich Village,40.72891,-74.00109,Entire home/apt,149,5,0,,,1,0 +10811681,Madison Square Park Luxury Apt,6044561,John,Manhattan,Midtown,40.74662,-73.98965,Entire home/apt,295,1,0,,,1,0 +10811875,Spacious 2BR apt with deck,768181,Darius,Brooklyn,Williamsburg,40.71377,-73.94092,Entire home/apt,120,1,1,2016-03-01,0.02,1,0 +10812027,Cozy 1 bedroom bricked wall loft,6126518,Serafima,Manhattan,Upper East Side,40.77949,-73.94973,Entire home/apt,150,6,11,2019-04-06,0.30,1,174 +10812136,well lit East Williamsburg apt.,4827009,Liat,Brooklyn,Williamsburg,40.70528,-73.94384,Private room,60,1,0,,,1,0 +10812263,Garden Apartment with Backyard in Carroll Gardens,1639309,Fiona,Brooklyn,Columbia St,40.68403,-74.00192,Entire home/apt,110,30,1,2017-01-02,0.03,1,312 +10812612,Enjoy One of a Kind Spectacular NYC Views,55982547,Nick,Manhattan,Battery Park City,40.70642,-74.01756,Entire home/apt,245,3,59,2019-06-16,1.49,1,184 +10812960,Beautiful Duplex in Crown Heights,17052634,Mike,Brooklyn,Crown Heights,40.67204,-73.94614,Private room,100,1,0,,,1,0 +10813133,Homie and cool apartment,16326744,Dariusz,Brooklyn,Bushwick,40.70373,-73.92455,Entire home/apt,75,1,0,,,1,0 +10822131,True 1 bedroom apt in Gramercy,24304455,Natallia,Manhattan,Flatiron District,40.73967,-73.98643,Entire home/apt,99,14,0,,,1,0 +10824421,"Large Apartment in Greenpoint, BK",7911103,David,Brooklyn,Greenpoint,40.72639,-73.94764,Entire home/apt,205,2,0,,,1,0 +10824871,Beautiful Jr 1 Br In SoHo,12485770,Raanan,Manhattan,SoHo,40.72689,-74.00086,Entire home/apt,110,30,2,2016-12-24,0.06,9,333 +10826734,Wonderous Womb Room,10295496,Courtney,Brooklyn,Bushwick,40.68446,-73.90851,Private room,33,1,1,2016-02-22,0.02,1,0 +10827567,Renovated 1 bdrm apt close to city,31411094,Ronit,Brooklyn,Crown Heights,40.6725,-73.93981,Entire home/apt,98,3,128,2019-06-06,3.10,1,342 +10827775,1BR on the best block in the East Village,5075049,Cyrus,Manhattan,East Village,40.7297,-73.98192,Entire home/apt,133,28,2,2019-04-14,0.05,1,0 +10828230,"Sunny, Cozy, Prospect Heights Apt.",56066018,Alex,Brooklyn,Crown Heights,40.6786,-73.9621,Private room,45,1,1,2016-03-01,0.02,1,0 +10829701,Room/s in lovely Williamsburg,697990,Alvaro,Brooklyn,Williamsburg,40.70516,-73.95088,Private room,65,3,2,2016-08-25,0.05,1,0 +10830083,Beautiful well kept private home!,56078939,Tony,Staten Island,Tottenville,40.49979,-74.24084,Private room,110,2,0,,,1,364 +10830815,Bohemian Bedroom for Art Lovers,2276842,Debbie,Brooklyn,Williamsburg,40.7054,-73.94283,Private room,80,2,5,2017-01-01,0.15,2,0 +10830834,Spacious Loft: Williamsburg BK,56082757,Rj,Brooklyn,Williamsburg,40.71074,-73.96276,Entire home/apt,150,2,0,,,1,0 +10833173,Cozy 2BR in the heart of Wburg,1334808,Kristina,Brooklyn,Williamsburg,40.71414,-73.95761,Entire home/apt,110,5,0,,,2,0 +10835801,Spacious Luxury 1bdrm on Bklyn Waterfront,12353168,Ali,Brooklyn,Williamsburg,40.71716,-73.96456,Entire home/apt,149,5,20,2019-06-22,1.08,1,0 +10836260,"Wyndham Midtown 45, New York City",17592675,Jennifer,Manhattan,Midtown,40.75299,-73.97154,Entire home/apt,400,1,0,,,1,0 +10836805,A Zen oasis Harlem apartment,56119624,Neta,Manhattan,Harlem,40.81195,-73.95274,Private room,150,1,17,2017-08-09,0.43,1,363 +10837039,Private Room in Spacious 3BR 2BA,2252514,April,Brooklyn,Prospect-Lefferts Gardens,40.65791,-73.95009,Private room,35,1,2,2016-11-21,0.06,1,0 +10837800,Room in Harlem,43533460,Laurène,Manhattan,Washington Heights,40.83525,-73.9452,Private room,36,1,3,2016-06-28,0.08,1,0 +10838084,UPTOWN FABULOUS,3881467,Robert,Manhattan,Washington Heights,40.85612,-73.93024,Private room,45,1,50,2019-06-23,1.32,1,90 +10838743,Bushwick Room & 2 Awesome Roomies,56112494,Shannon,Brooklyn,Bushwick,40.6887,-73.90598,Private room,65,2,0,,,1,0 +10839007,Lower East Side Walk Up Apartment,56124518,David,Manhattan,Lower East Side,40.72005,-73.98409,Private room,90,5,1,2016-05-28,0.03,1,0 +10847901,"Huge, sunny private room - 1 block from train",38116129,Marissa,Brooklyn,Bensonhurst,40.60729,-74.00117,Private room,68,2,39,2019-01-02,1.10,1,0 +10848827,Prospect Park Adventures HQ,34698196,Nic,Brooklyn,Flatbush,40.65123,-73.96436,Private room,36,1,1,2016-08-18,0.03,1,0 +10849166,Large Brooklyn Apartment.,39261381,Nathaniel,Brooklyn,Flatlands,40.62361,-73.93423,Private room,34,1,7,2017-08-27,0.17,2,349 +10849426,Charming Loft on Upper East Side,56193545,Danny,Manhattan,Upper East Side,40.77516,-73.9555,Shared room,80,1,0,,,1,0 +10849750,Brownstone Beauty 1 Bedroom,185847,Faizal,Brooklyn,Fort Greene,40.68584,-73.97571,Entire home/apt,135,2,1,2016-08-15,0.03,1,0 +10850008,Big Private BR Steps to Barnard Columbia & Subways,56197328,Paul,Manhattan,Morningside Heights,40.80732,-73.9648,Private room,128,1,33,2019-05-23,0.85,2,235 +10850026,Renovated Hamilton Heights apt,7594757,Chaz,Manhattan,Washington Heights,40.83625,-73.94062,Private room,40,2,18,2017-11-24,0.44,1,0 +10851925,Large sunny room in great apartment,8573805,Eve,Queens,Ridgewood,40.70384,-73.91145,Private room,40,7,0,,,1,0 +10853313,Luxury 1 bdrm Apt in Clinton Hills.,56214524,Kathleen,Brooklyn,Clinton Hill,40.6869,-73.96324,Entire home/apt,155,3,161,2019-06-21,3.94,1,251 +10853955,"Sunny, private room; Quick to NYC. Females only.",35494734,Jennifer,Queens,Woodside,40.75293,-73.90304,Private room,50,4,49,2019-05-08,1.21,2,211 +10855464,"A Spacious, Bright Brooklyn Bedroom",790177,Erin,Brooklyn,Sunset Park,40.64553,-74.00221,Private room,40,2,119,2017-11-01,2.88,1,0 +10857454,Artist Garden Duplex Ft. Greene - 2.5 Bedroom,36894011,Miriam,Brooklyn,Fort Greene,40.6884,-73.97527,Entire home/apt,250,2,109,2019-06-24,3.22,2,243 +10858150,"Large, sunny, East Village loft",14460656,Anna,Manhattan,East Village,40.72633,-73.98068,Entire home/apt,295,1,7,2017-08-04,0.18,1,0 +10859700,Beautiful Large 2 Bedroom Apartment,53199312,Zamena,Queens,East Elmhurst,40.76327,-73.88655,Entire home/apt,145,2,61,2019-06-10,1.52,1,302 +10863225,Brownstone Apt Near Central Park,47898830,Dennis,Manhattan,Upper West Side,40.77774,-73.97701,Entire home/apt,199,2,0,,,1,0 +10864440,Red Hook Family Railroad Style Aprt,20408271,Francois,Brooklyn,Red Hook,40.67529,-74.01514,Entire home/apt,140,1,0,,,2,0 +10869804,Studio for 1,56312532,Danoulo28,Manhattan,Upper West Side,40.80283,-73.96504,Entire home/apt,60,15,0,,,1,0 +10874577,Unbelievable luxury apartment,43220844,Adil,Manhattan,Upper East Side,40.76309,-73.95794,Entire home/apt,175,1,1,2016-02-16,0.02,1,0 +10875244,Funky apartment,56342651,Valeria,Manhattan,Upper West Side,40.803,-73.96459,Entire home/apt,150,1,0,,,1,0 +10880196,Beautiful Large Apartment in NYC,617990,Christopher,Queens,Jackson Heights,40.75055,-73.88366,Private room,89,14,4,2017-02-07,0.10,2,0 +10880473,Small Cozy Bedroom In A Classic Brownstone,2478644,Kim,Brooklyn,Bedford-Stuyvesant,40.68926,-73.94074,Private room,38,2,0,,,1,43 +10881164,Sunny Clinton Hill Brownstone Apt w/ 600sq.ft Deck,56376946,Cory,Brooklyn,Clinton Hill,40.68683,-73.96177,Entire home/apt,350,4,1,2018-01-01,0.05,1,86 +10881719,charming Soho/Little Italy nest,30410829,Michelange,Manhattan,Chinatown,40.71786,-74.00009,Entire home/apt,105,1,16,2016-08-25,0.40,1,0 +10882066,Romantic Williamsburg Apartment,14585417,Samantha,Brooklyn,Williamsburg,40.71319,-73.95669,Entire home/apt,185,2,122,2019-06-10,3.12,1,105 +10883053,Artsy Lofty Studio,27360886,Kaya,Manhattan,Upper East Side,40.77617,-73.94677,Entire home/apt,195,1,136,2019-06-18,3.26,1,103 +10885211,Trendy studio btwn Grand Central and Central Park,15651999,Kunjan,Manhattan,Midtown,40.75598,-73.96664,Entire home/apt,135,3,4,2018-09-20,0.13,1,0 +10886372,BK Bedroom in a Comfortable Apartment by the Park!,56410306,Cole,Brooklyn,Prospect-Lefferts Gardens,40.6607,-73.96168,Private room,60,1,0,,,1,0 +10886532,2000sf Williamsburg Apt. w/ Theater,17646340,Donald,Brooklyn,Williamsburg,40.70094,-73.9435,Entire home/apt,120,7,0,,,2,0 +10886628,Large Bedroom Available in 5BR Apt,56412357,Scott,Brooklyn,Greenpoint,40.72527,-73.94803,Private room,34,1,0,,,1,0 +10886971,Cozy Btful Private Room In Brooklyn,8261208,Shakima,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94875,Private room,45,2,27,2019-07-05,0.78,1,339 +10887262,Kid's friendly two levels apartment with a yard,4343152,Anna,Manhattan,Harlem,40.81223,-73.94313,Entire home/apt,199,4,2,2016-10-11,0.05,1,0 +10887852,Cozy Hell's Kitchen Apt,39754804,Karen,Manhattan,Hell's Kitchen,40.76438,-73.99482,Entire home/apt,125,1,64,2019-06-22,1.88,1,0 +10888320,Bronx Home - 30 mins from Midtown!,971075,Jabari,Bronx,Mount Hope,40.8506,-73.90231,Entire home/apt,109,3,62,2019-05-27,1.51,2,58 +10899004,Stylish Windsor Terrace Flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65627,-73.97955,Entire home/apt,250,7,0,,,3,0 +10901062,Stylish Windsor Terrace flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65636,-73.97945,Entire home/apt,150,4,1,2016-03-30,0.03,3,0 +10901255,"6 BEDROOM W VILLAGE TOWNHOUSE, NYC",605463,West Village,Manhattan,West Village,40.73303,-74.005,Entire home/apt,1100,6,4,2019-05-24,0.12,4,313 +10902752,Cozy winter sanctuary,32265481,Neena,Manhattan,Harlem,40.82289,-73.94915,Private room,52,3,0,,,1,0 +10903055,Stay in The Heart of NYC,28378670,Jesse,Manhattan,Chelsea,40.7487,-73.99514,Private room,119,2,134,2019-06-30,3.42,1,66 +10904914,Room in Huge Union Sq Rooftop Apt!,56514111,Jenna,Manhattan,Chelsea,40.7386,-73.99775,Private room,70,1,2,2016-03-27,0.05,1,0 +10909987,Private Bedroom at Central Park N.,5429885,Ergie,Manhattan,Harlem,40.79929,-73.95199,Private room,100,3,147,2019-07-02,3.55,1,66 +10919160,Gorgeous 1BR in Prime E. Village!,25498781,Lauren,Manhattan,East Village,40.72931,-73.98222,Entire home/apt,250,2,9,2016-08-24,0.22,1,0 +10919968,Entire 1BR apt on UWS w/ roof deck,4497387,Cristina,Manhattan,Upper West Side,40.79277,-73.97613,Entire home/apt,150,1,16,2016-12-28,0.40,1,0 +10921091,Stuido apt near Lincoln Center,56607815,Jonathan,Manhattan,Upper West Side,40.77035,-73.98638,Entire home/apt,150,2,0,,,1,0 +10921135,Gorgeous Large Sunny 2 BR,3411196,Tasha,Brooklyn,Kensington,40.64751,-73.97814,Entire home/apt,100,1,0,,,1,0 +10922736,Welcoming Warm and Walk to all!,56616493,Daniele,Queens,Forest Hills,40.72272,-73.84206,Private room,30,14,0,,,1,0 +10922889,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.70985,-73.98724,Shared room,35,14,2,2017-10-01,0.08,28,320 +10924304,"Harlem, NY +Historical Sugar Hill Neighborhood",25461543,David,Manhattan,Harlem,40.83117,-73.94281,Entire home/apt,200,1,3,2019-06-08,0.38,2,365 +10925309,Comfortable Private Room - West Village,36081529,Jon,Manhattan,West Village,40.72965,-74.00261,Private room,99,12,60,2019-05-31,1.60,1,0 +10925844,Bedroom in Bushwick,7364894,Mac,Brooklyn,Bushwick,40.70128,-73.9253,Private room,40,7,0,,,1,0 +10926362,Charming Midtown West - Entire Apt,3576466,Kevin,Manhattan,Hell's Kitchen,40.76364,-73.9898,Entire home/apt,170,2,18,2019-05-13,0.45,2,63 +10928250,Modern Central Harlem Townhouse,7650414,Keith,Manhattan,Harlem,40.80257,-73.94693,Entire home/apt,399,5,9,2018-08-29,0.25,2,12 +10930279,House Near Subway,25044529,Xin,Manhattan,Upper West Side,40.79583,-73.97493,Entire home/apt,87,1,0,,,1,0 +10937904,Spacious Room in Sunny Harlem Apt,17601552,Ashley,Manhattan,Harlem,40.81794,-73.94326,Private room,75,1,0,,,1,0 +10938202,"Spacious, bright, living/bedroom",2455178,Nessa,Brooklyn,Flatbush,40.64145,-73.96642,Private room,55,5,6,2016-11-14,0.17,1,0 +10938544,"Spacious, Private Room Near Subway",10583598,Devon,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.95963,Private room,40,2,9,2016-08-24,0.22,1,0 +10939255,Master Bedroom - Bathroom en Suite,7501803,Hannah,Brooklyn,Flatbush,40.65188,-73.96411,Private room,55,4,3,2017-10-09,0.07,1,0 +10939344,huge sunny 1 bed Times Square!!!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.76382,-73.99498,Entire home/apt,140,30,3,2019-05-07,0.08,7,365 +10939710,NEW YORK LOFTLIKE APARTMENT,9192860,Alex,Queens,Ridgewood,40.70286,-73.90649,Private room,71,3,62,2019-06-09,2.76,1,291 +10940559,Modern and comfortable is this 2 bedrooms,56726605,Weisbrod,Brooklyn,Canarsie,40.6344,-73.8948,Entire home/apt,177,3,23,2018-10-07,0.60,3,363 +10941762,New Museum 2 BR Loft,56732131,Désirée,Manhattan,Lower East Side,40.72221,-73.99284,Entire home/apt,395,2,57,2019-06-28,1.41,1,279 +10943209,Cozy Room In East Village!,52761277,Min,Manhattan,East Village,40.72387,-73.979,Private room,80,2,1,2018-10-07,0.11,1,87 +10943915,Historic Sugar Hill 2 Bdrm Apt Great For families!,56710089,Kate,Manhattan,Harlem,40.8263,-73.94375,Entire home/apt,198,5,42,2019-06-03,1.07,1,267 +10944845,Lower East Side Apartment,56752163,Sabina,Manhattan,Lower East Side,40.71731,-73.99108,Entire home/apt,199,3,4,2018-12-25,0.16,2,0 +10945632,All to yourself home away from home,56758927,Carol,Queens,Queens Village,40.70684,-73.74627,Entire home/apt,97,2,252,2019-06-23,6.08,1,290 +10946644,3 bedrm beauty in Crown Heights,18495460,Frank,Brooklyn,Crown Heights,40.6735,-73.95486,Entire home/apt,162,30,26,2019-04-30,0.64,3,18 +10947986,Entire 1br apartment in Riverdale,56775169,Rose,Bronx,Kingsbridge,40.88214,-73.90847,Entire home/apt,99,3,1,2018-05-20,0.07,1,311 +10949554,Bright Spacious Luxury 1 BR,20903132,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69187,-73.95408,Entire home/apt,80,90,0,,,1,89 +10957871,East Village Apartment w/ NYC Charm,56836468,Mark,Manhattan,East Village,40.72663,-73.97852,Private room,65,1,1,2016-02-20,0.02,1,0 +10958463,Nice bedroom at Manhattan -Upper East Side/Harlem,21784104,Paulo,Manhattan,East Harlem,40.79226,-73.93895,Private room,150,3,73,2019-05-25,1.85,1,32 +10958668,Large Cozy Room in Prospect Heights,4269459,Lindsey,Brooklyn,Crown Heights,40.67734,-73.96076,Private room,35,1,2,2016-03-13,0.05,1,0 +10966240,Private Room in Artist Apt BK,56887361,Ariel,Brooklyn,Bedford-Stuyvesant,40.68636,-73.92599,Private room,30,1,1,2016-02-27,0.02,1,0 +10967026,Quaint Room in Upper Manhattan,4837798,Jayson,Manhattan,Harlem,40.82561,-73.9446,Private room,50,3,107,2019-07-01,2.57,1,209 +10967300,Cozy room in the heart of Hamilton Heights,7781522,Angela,Manhattan,Harlem,40.82332,-73.94705,Private room,40,3,4,2016-09-05,0.11,1,0 +10967749,Luxury Highrise Near Times Square,834052,A.J.,Manhattan,Hell's Kitchen,40.76254,-73.99974,Entire home/apt,259,7,5,2018-11-03,0.14,1,122 +10972148,Lofty 1-Bedroom with Garden Views,11559235,Katherine,Manhattan,Harlem,40.82765,-73.94889,Private room,125,2,3,2016-08-18,0.07,1,87 +10974609,"Cozy couch, free parking, near park",48573590,Sherrilyn,Brooklyn,East Flatbush,40.66209,-73.93947,Shared room,85,1,1,2018-10-08,0.11,1,365 +10978135,Midtown Manhattan East Large Studio Apatment,56754697,Liz,Manhattan,Midtown,40.75862,-73.96841,Entire home/apt,160,3,50,2019-06-02,1.23,1,4 +10980168,Three-story brownstone with garden,22858411,Tracy,Brooklyn,South Slope,40.66252,-73.97911,Entire home/apt,450,5,2,2017-12-28,0.06,1,9 +10980678,"Brooklyn 1 BR Beauty, Great Hood!",79339,Ann,Brooklyn,Bedford-Stuyvesant,40.6811,-73.9542,Entire home/apt,90,14,12,2019-06-26,0.45,1,64 +10983426,"Bright modern apt in a ""tudor"" home",56984176,Giuseppa,Queens,Rego Park,40.72147,-73.86317,Entire home/apt,140,3,84,2019-07-06,2.09,1,32 +10984202,Chic Apt in Doorman Bldg Fashion Wk,23865843,Carlin,Manhattan,Upper West Side,40.78116,-73.9786,Entire home/apt,265,1,0,,,1,0 +10984999,Spacious Room in Penthouse in LES,22702361,Lisa-Marie,Manhattan,Chinatown,40.71628,-73.98999,Private room,85,1,1,2016-03-24,0.02,1,0 +10985093,PEACEFUL PRIVATE ROOM/BATH IN BEAUTIFUL GARDEN APT,56995315,Nina,Manhattan,Roosevelt Island,40.76366,-73.9479,Private room,79,2,29,2019-07-05,0.74,1,321 +10985169,One Bedroom Apartment in Townhouse,825856,Rubi,Brooklyn,Bedford-Stuyvesant,40.68389,-73.92128,Entire home/apt,76,2,2,2016-12-30,0.05,1,0 +10985734,Clean & Quiet Greenpoint Apartment,56998739,Myles & Christian,Brooklyn,Greenpoint,40.72729,-73.95138,Entire home/apt,125,2,0,,,1,0 +10987342,Big & Bright in BK Heights with Private Balcony,7903382,Annie,Brooklyn,Brooklyn Heights,40.69449,-73.99188,Entire home/apt,150,3,7,2016-07-15,0.17,1,0 +10988682,Spacious 1 BR - 5min to Manhattan,57015584,Peter,Queens,Long Island City,40.74129,-73.95004,Entire home/apt,175,3,22,2017-07-13,0.54,1,0 +10990088,"Downtown, Renovated 2 Bedroom Apt",24361297,Summer,Manhattan,Chinatown,40.71781,-73.99569,Entire home/apt,100,1,0,,,1,0 +10992335,Cozy 1BR near subway,19000768,Karina,Queens,Sunnyside,40.74219,-73.92485,Entire home/apt,90,2,3,2017-11-06,0.12,2,0 +10994530,Cozy Renovated 2br Apartment! Close to Manhattan!,11501945,Victoria,Brooklyn,Flatbush,40.63649,-73.95614,Entire home/apt,92,1,25,2018-01-01,0.63,2,0 +10995738,Cozy Private Room,1755999,Lindsey,Brooklyn,Williamsburg,40.70532,-73.92814,Private room,39,5,0,,,1,0 +10995810,Room in gorgeous Astoria Apartment,57055185,Halley,Queens,Astoria,40.76802,-73.91685,Private room,33,1,0,,,1,0 +10996466,"Big, Bright, Beautiful Room",38794144,Hannah,Brooklyn,Crown Heights,40.67754,-73.96163,Private room,64,1,2,2019-01-03,0.07,1,21 +11003247,Two bedroom Apt. in Wash Heights,57097075,Matt,Manhattan,Washington Heights,40.84901,-73.93859,Entire home/apt,90,12,1,2016-08-16,0.03,1,0 +11005300,East Village Sanctuary,57107571,Molly,Manhattan,East Village,40.72808,-73.98763,Entire home/apt,200,30,22,2019-06-09,0.65,1,112 +11006093,West Soho/Hudson Square Gem 1b/1bath,56498254,Tecla,Manhattan,SoHo,40.72761,-74.00902,Entire home/apt,150,7,9,2019-02-18,0.22,1,190 +11006134,Chelsea Apt w/ Private Rooftop Deck,24625891,T,Manhattan,Chelsea,40.74815,-74.00493,Entire home/apt,125,3,0,,,1,0 +11007370,~Lux 2-Bedroom NYC Apt near Times Square,30283594,Kara,Manhattan,Theater District,40.7598,-73.98537,Entire home/apt,369,30,0,,,121,148 +11008081,Cozy Europa,57122538,Balla,Manhattan,Harlem,40.82564,-73.94143,Private room,60,1,6,2019-07-02,2.43,1,83 +11009529,Very Large room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67824,-73.97106,Private room,65,1,245,2019-06-15,5.87,13,339 +11010008,Private Spacious Room ~ Near Trains,57069872,Allison,Queens,Astoria,40.76101,-73.91573,Private room,70,3,65,2019-06-20,1.66,1,89 +11011567,Sweet & Bright Two Bedroom Artist Flat Brooklyn,22861935,Jessica,Brooklyn,Columbia St,40.68443,-74.00392,Entire home/apt,162,3,37,2019-05-20,1.06,1,22 +11011759,"Modern, fun and sophisticated 1BR",38968716,Ali,Manhattan,Kips Bay,40.73939,-73.983,Entire home/apt,250,28,5,2017-05-30,0.13,1,0 +11014346,Big private room ~ 1 bed-1 person.,53051331,James And Mina,Brooklyn,Crown Heights,40.67156,-73.95684,Private room,75,2,13,2019-07-02,0.47,1,354 +11020169,Luxurious one bedroom apartment in a quiet area.,57165692,Charles,Bronx,Baychester,40.87223,-73.84335,Entire home/apt,95,3,206,2019-07-01,4.98,2,144 +11020841,Sage - Charming 2 Room Studio #7,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68366,-73.94607,Private room,75,2,129,2019-06-21,3.36,3,227 +11023993,SunnyHome,27673980,Amy,Queens,Flushing,40.74514,-73.83137,Private room,60,1,66,2019-06-16,3.07,8,67 +11030761,Amazing 1BR Heart of East Village!,57242530,Jack,Manhattan,East Village,40.72794,-73.98731,Entire home/apt,189,2,9,2018-12-30,0.23,1,23 +11031059,Private Room in Bedstuy Brownstone,44776542,Danielle,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94898,Private room,66,1,0,,,1,0 +11032588,Beautiful bedroom in Williamsburg,6265305,Federico,Brooklyn,Williamsburg,40.7169,-73.94714,Private room,100,2,0,,,1,0 +11032957,"Glorious brownstone apt w/ outdoor, Clinton Hill",57254931,Courtney,Brooklyn,Clinton Hill,40.68121,-73.96319,Entire home/apt,190,7,60,2019-02-17,1.66,1,0 +11033476,Spacious Bedroom near Prospect Park,57257971,Jenna,Brooklyn,Sunset Park,40.66227,-73.99138,Private room,50,1,1,2016-02-12,0.02,1,0 +11033590,West Village 2 Bed & Private Roof,16141222,Somar,Manhattan,West Village,40.7341,-74.00434,Entire home/apt,814,3,31,2019-04-11,0.78,1,353 +11035889,Cozy Bedroom in the Lower East Side,57269448,Chantal,Manhattan,Lower East Side,40.72104,-73.98298,Private room,100,2,1,2016-06-14,0.03,1,0 +11036071,Fully Private Suite in Home,57265004,Patricia,Brooklyn,Prospect-Lefferts Gardens,40.65993,-73.95725,Entire home/apt,125,1,151,2019-06-09,3.86,1,37 +11037023,BR in amazing Apt - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70818,-73.94952,Private room,90,1,17,2018-01-02,0.44,3,0 +11037105,Sunny in heart of Williamsburg,57275881,Allegra,Brooklyn,Williamsburg,40.71187,-73.95566,Entire home/apt,250,1,0,,,1,0 +11039706,"Bright, Open, Family Friendly",57289930,Stephanie,Queens,Sunnyside,40.74214,-73.92463,Entire home/apt,115,1,0,,,1,0 +11040458,Huge 3 bedroom apt in West Harlem,20607397,Jonathan,Manhattan,Harlem,40.80735,-73.95684,Entire home/apt,300,2,26,2019-06-26,0.64,1,176 +11042240,Lovely 1.5BR Near Park and Subway,57305837,Yair,Brooklyn,South Slope,40.66355,-73.98056,Entire home/apt,145,3,147,2019-07-03,3.62,1,235 +11042350,Charming Bedroom with Private Bath,1607646,Dee,Manhattan,East Harlem,40.80771,-73.93967,Private room,65,7,7,2018-10-31,0.30,1,0 +11043540,Sunny LES Pied a Terre,5546836,Natalie,Manhattan,Lower East Side,40.71884,-73.98594,Entire home/apt,150,1,1,2016-06-18,0.03,1,0 +11043651,Private room in two fl apartment,31879354,Zach,Brooklyn,Bushwick,40.70131,-73.93032,Private room,50,2,0,,,1,0 +11043970,HUGE 1 BED!TIME SQ!MODERN!,914838,Lior,Manhattan,Hell's Kitchen,40.75774,-73.99523,Entire home/apt,80,30,3,2018-10-15,0.07,7,356 +11044326,Typical NY duplex ap with a garden!,1395401,Peter,Manhattan,Upper East Side,40.78119,-73.9468,Entire home/apt,200,5,6,2018-08-19,0.17,1,67 +11044453,Convent Ave & 127st Col Univ RM 2,57049951,Eliahu,Manhattan,Harlem,40.81238,-73.95319,Private room,69,2,128,2019-05-26,3.16,9,365 +11045529,Centrally located Midtown 1BR,57322543,Richard,Manhattan,Hell's Kitchen,40.76355,-73.99391,Entire home/apt,150,1,52,2019-06-20,1.26,1,7 +11046443,MANHATTAN Studio 10 SECONDS Walk to Subway,17171841,Bond,Manhattan,East Harlem,40.79736,-73.94203,Entire home/apt,79,1,149,2019-06-23,3.63,1,290 +11046598,Huge 3 bdrm in Ditmas Park/Flatbush,10573152,Dasha,Brooklyn,Flatbush,40.64261,-73.95779,Entire home/apt,219,2,119,2019-06-19,2.93,1,275 +11049502,Sunny East Village 1 Bedroom,36369973,Sarah,Manhattan,East Village,40.7264,-73.97889,Entire home/apt,199,2,67,2019-06-09,1.64,1,39 +11057550,Penthouz 1200SQF W&D 2bd 2.5ba 350SQF Terrace 5197,16098958,Jeremy & Laura,Manhattan,West Village,40.73134,-74.00215,Entire home/apt,450,30,0,,,96,327 +11059197,Clean and warm room in Flushing,57398859,Sean,Queens,Flushing,40.76726,-73.81217,Private room,27,1,0,,,1,0 +11060328,5BED OASIS IN 3BEDROOM/3BATH DUPLEX W/BACKYARD,12872352,Jada,Manhattan,Midtown,40.75912,-73.9621,Entire home/apt,550,1,57,2019-05-06,1.44,3,267 +11061063,Spacious 1 BD in Hells Kitchen,30918593,Cindy,Manhattan,Hell's Kitchen,40.76578,-73.99309,Entire home/apt,120,1,0,,,1,0 +11062438,"Private and super quiet, Step to Subway",3419036,Ofer,Manhattan,Upper East Side,40.78482,-73.95191,Entire home/apt,90,4,9,2019-04-29,0.22,1,0 +11062629,room with awesome view,6961443,Victoria,Manhattan,Midtown,40.75957,-73.96802,Private room,70,1,1,2016-02-15,0.02,2,0 +11063065,Spacious room in mid manhattan!,6961443,Victoria,Manhattan,Midtown,40.76163,-73.96956,Private room,70,1,2,2016-03-29,0.05,2,0 +11065341,Greenpoint Apartment,45896206,Dora,Brooklyn,Greenpoint,40.73144,-73.95745,Entire home/apt,110,2,0,,,1,0 +11065571,Charming Brooklyn Heights Studio,57434801,Reese,Brooklyn,Brooklyn Heights,40.69257,-73.99304,Entire home/apt,100,1,0,,,1,0 +11065633,Luxury Doorman Building/Murray Hill,19340034,Ross,Manhattan,Gramercy,40.73788,-73.98103,Private room,150,1,2,2016-03-13,0.05,1,0 +11067934,"Clean, well located Chinatown apt.",8243103,Paul,Manhattan,Civic Center,40.71567,-74.00061,Entire home/apt,200,1,33,2016-10-28,0.80,1,0 +11068187,An Architect's Inviting Studio,9132107,Alice,Manhattan,Upper West Side,40.78731,-73.97407,Entire home/apt,145,3,2,2016-04-23,0.05,1,0 +11068607,"Cityview in E Williamsburg/Bushwick ""Great Place""",57452929,Jonathan,Brooklyn,Williamsburg,40.70673,-73.92695,Private room,79,2,134,2019-07-01,3.26,1,2 +11069190,"Mi Casa, Tu Casa.",390251,Lilly,Manhattan,Harlem,40.80129,-73.95389,Private room,95,2,2,2018-07-22,0.14,4,88 +11069291,A quiet & cozy home for travelers—free st parking,57460097,Pengfei,Queens,Elmhurst,40.73816,-73.88211,Private room,55,1,63,2019-04-07,2.92,1,21 +11077282,The Justice House,38068387,Xolie,Brooklyn,Clinton Hill,40.69308,-73.96649,Entire home/apt,207,2,58,2019-07-03,1.49,4,1 +11080142,Historic Heights-Private Queen Room,2155213,Andy,Manhattan,Washington Heights,40.84393,-73.94065,Private room,83,2,142,2019-06-30,3.55,1,80 +11083362,Bedroom with full size bed in Washington Heights!,30995829,David,Manhattan,Washington Heights,40.84411,-73.93784,Private room,50,3,89,2019-06-13,2.54,1,113 +11085352,"Amazing Williamsburg, Brooklyn Apt.",10994250,Jerry,Brooklyn,Williamsburg,40.70925,-73.94909,Private room,50,1,0,,,1,0 +11086888,"Spacious, Private, Comfortable N. HARLEM Apartment",118126,Pat,Manhattan,Harlem,40.83135,-73.94442,Entire home/apt,200,3,114,2019-07-02,3.19,1,165 +11089123,Awesome bedroom in 2br apartment <3,15231059,Apollo,Manhattan,Lower East Side,40.72118,-73.98875,Private room,100,3,19,2019-04-30,0.46,4,303 +11091309,"NYC-Legal 2br +parking, Metro- 4min, JFK -15min",7775937,Joseph,Brooklyn,East New York,40.66483,-73.88208,Entire home/apt,119,4,148,2019-06-30,3.75,1,111 +11095719,The Justice Suite,38068387,Xolie,Brooklyn,Clinton Hill,40.69458,-73.96757,Entire home/apt,175,1,58,2018-10-07,1.45,4,331 +11096801,BRIGHT & BEAUTIFUL,38120363,Brian,Brooklyn,Crown Heights,40.67415,-73.9163,Private room,49,2,115,2019-06-24,2.96,2,59 +11096888,Peaceful apartment close to F/G,2228137,Amanda,Brooklyn,Kensington,40.64779,-73.97956,Private room,45,500,0,,,1,358 +11097962,"Home, Sweet, Harlem. Welcome!",24800102,Kevin,Manhattan,East Harlem,40.79733,-73.93955,Entire home/apt,110,1,221,2019-06-28,5.53,1,348 +11098018,Sunny private room in Bushwick,10199059,Manasvi,Brooklyn,Bushwick,40.69712,-73.93055,Private room,70,1,0,,,1,0 +11100490,Massive 3 bedroom with Patio,57648603,Shpresa,Manhattan,Gramercy,40.73562,-73.98756,Entire home/apt,500,4,49,2019-06-22,1.23,1,249 +11100541,Garden Apartment in Carroll Gardens,48880382,Samaa,Brooklyn,Carroll Gardens,40.6785,-73.99594,Entire home/apt,180,4,37,2019-07-01,0.91,1,185 +11101754,Upscale Sun-Soaked Luxury apartment in Brooklyn,7872220,Charlie,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9579,Entire home/apt,145,1,153,2019-07-06,4.66,1,47 +11102591,Room in the heart of Williamsburg,4110759,Lorenzo,Brooklyn,Williamsburg,40.71725,-73.95392,Private room,60,7,0,,,1,0 +11105968,5*****Prime W/ Private Outdoor 5177,16098958,Jeremy & Laura,Manhattan,West Village,40.73198,-74.00239,Entire home/apt,550,30,0,,,96,352 +11107261,Hamilton Heights/Apollo Theater,57697937,Artie,Manhattan,Harlem,40.82645,-73.94426,Private room,57,3,90,2019-06-16,2.26,1,247 +11114607,Duplex Apartment,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68652,-73.93506,Entire home/apt,98,30,13,2018-07-23,0.32,3,140 +11117439,Artist Private Studio,57755346,Natalie,Manhattan,East Harlem,40.79014,-73.94698,Entire home/apt,120,3,33,2018-12-02,0.86,1,0 +11118296,Forest Hills Haven,57762390,Annette,Queens,Forest Hills,40.71813,-73.8386,Entire home/apt,100,2,1,2016-08-05,0.03,1,0 +11118641,1 BR in 2BR - Luxury High Rise,57765248,Chandni,Manhattan,Hell's Kitchen,40.75744,-73.9936,Private room,90,1,6,2016-05-18,0.14,1,0 +11120231,Private 1 BR in Brooklyn,15193965,Matt,Brooklyn,Crown Heights,40.66841,-73.93621,Entire home/apt,85,25,1,2016-04-04,0.03,1,0 +11120851,Luxury Apartment Downtown Brooklyn,46980935,Shay,Brooklyn,Downtown Brooklyn,40.69731,-73.98228,Entire home/apt,120,30,9,2016-11-27,0.22,1,0 +11121739,1 brd apartment for Easter week in NOHO,55425653,Alessandro,Manhattan,NoHo,40.72683,-73.99328,Entire home/apt,180,3,4,2019-03-16,0.59,1,0 +11123031,11' Windows · Rooftop · Queen Bed,10556524,Ryan,Brooklyn,Williamsburg,40.70606,-73.92884,Private room,149,1,0,,,2,0 +11123966,Charming Apartment With View,20794193,Carlo,Manhattan,Harlem,40.82546,-73.95292,Entire home/apt,90,10,6,2019-01-15,0.18,1,6 +11123996,Spacious Gramercy Loft,3135272,Han Sheng,Manhattan,Gramercy,40.73427,-73.98456,Entire home/apt,250,2,4,2017-06-03,0.14,1,0 +11128811,Cozy Walk up apartment in a great neighborhood!,42779345,Jodi,Queens,Long Island City,40.74523,-73.94906,Private room,50,2,3,2019-02-17,0.41,1,0 +11130697,Luxury New York Apartment,57843472,David,Manhattan,Hell's Kitchen,40.76198,-73.99739,Private room,550,1,0,,,1,0 +11132775,Manhattan - Washington Heights Apt,43082746,Hillary,Manhattan,Washington Heights,40.83219,-73.94334,Private room,50,1,0,,,1,0 +11136854,Modern Studio in Brooklyn,21986616,Valentina,Brooklyn,Gravesend,40.58571,-73.96711,Entire home/apt,90,7,32,2019-06-14,0.83,1,71 +11137382,"Modern Garden 2BD w/ Backyard, Dishwasher, Laundry",24839836,Kai,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94975,Entire home/apt,165,4,123,2019-06-23,3.08,1,43 +11138618,"Bright, Spacious, Brooklyn Bungalow",57885166,Emily,Brooklyn,Gowanus,40.67153,-73.988,Private room,70,1,3,2016-03-28,0.07,1,0 +11138823,A beautiful Cozy 1 BR Apartment.,57885474,Shully'S,Bronx,Wakefield,40.89694,-73.86055,Entire home/apt,90,2,199,2019-06-21,5.00,2,319 +11138910,HUGE apartment in GREAT location!!!,827235,Adam,Brooklyn,Bedford-Stuyvesant,40.68437,-73.95849,Entire home/apt,109,3,3,2018-08-17,0.08,1,0 +11139469,Privacy meets luxury and comfort,45677054,Lex And Raun,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91838,Entire home/apt,96,2,64,2019-06-16,1.58,1,256 +11140165,Tranquility in Park Slope House & Garden,923791,Daniel,Brooklyn,South Slope,40.66473,-73.98704,Entire home/apt,390,4,14,2019-06-29,0.36,2,13 +11141064,"Beautiful, True 1BR in Park Slope",49033458,Stephen,Brooklyn,Windsor Terrace,40.65895,-73.97768,Entire home/apt,78,5,1,2016-03-24,0.02,1,0 +11143891,Clean Private Bedroom in Bushwick,27087652,Louise,Brooklyn,Bushwick,40.69995,-73.92612,Private room,50,1,1,2016-04-14,0.03,1,0 +11144496,"New Spacious Master, Williamsburg",48819868,Nick,Brooklyn,Williamsburg,40.71119,-73.95097,Private room,200,1,0,,,1,0 +11144544,Habitación privada en Midtown NY,7401344,Fla,Manhattan,Midtown,40.74545,-73.98128,Private room,112,3,1,2016-02-15,0.02,1,0 +11145050,Doorman Studio Gym Rooftop 5170,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79191,-73.97322,Entire home/apt,117,30,4,2018-12-16,0.13,96,327 +11146432,Cozy top floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67963,-73.97054,Private room,50,1,257,2019-07-01,6.23,13,286 +11146878,North Williamsburg 2 BR Apt,57944278,Ashley,Brooklyn,Williamsburg,40.71874,-73.96077,Entire home/apt,200,1,0,,,1,0 +11147376,Luxury Apt in the Heart of Brooklyn,22218564,Jeremy,Brooklyn,Fort Greene,40.68675,-73.97923,Entire home/apt,185,30,13,2019-01-24,0.33,1,212 +11147993,A SUPERB One Bedroom Apartment,57954654,Olu,Bronx,Williamsbridge,40.87556,-73.8584,Entire home/apt,85,2,147,2019-07-01,3.88,1,304 +11148990,Sunny apartment downtown Manhattan,6980995,Dominik,Manhattan,Chinatown,40.71323,-73.99752,Entire home/apt,235,2,66,2019-06-23,1.63,5,184 +11153954,COZY STUDIO APARTMENT FOR 2 ♡,57995737,Remi O.,Manhattan,East Harlem,40.80586,-73.93861,Entire home/apt,75,5,2,2016-03-18,0.05,1,0 +11156579,TOWNHOUSE CHARME IN CITY~EAST 59th STUDIO,2856748,Ruchi,Manhattan,Midtown,40.7591,-73.96334,Entire home/apt,180,30,1,2016-06-02,0.03,49,364 +11157167,Cozy Chinatown studio apartment,17259339,Maia,Manhattan,Two Bridges,40.7113,-73.99442,Entire home/apt,100,4,26,2018-08-25,0.85,1,0 +11158160,Cozy Room Available in Brooklyn,4968801,Mary,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94516,Private room,75,1,0,,,1,0 +11162285,"Charming Brownstone Two-Bedroom, Fort Greene",4302160,Erica + Jonathan,Brooklyn,Fort Greene,40.68642,-73.97701,Entire home/apt,200,1,0,,,1,12 +11162475,"Big, Bright UWS Bedroom and Study",14713587,Annie,Manhattan,Upper West Side,40.80288,-73.96484,Private room,125,3,6,2017-05-18,0.15,1,0 +11162564,union square~Newly Reno~Sleeps 3,2119276,Host,Manhattan,Gramercy,40.73201,-73.98328,Entire home/apt,130,30,6,2018-10-31,0.17,39,246 +11162977,Beautiful Apartment by Astoria park,58061728,Clinton,Queens,Ditmars Steinway,40.78,-73.91672,Entire home/apt,99,4,17,2019-06-23,0.44,1,0 +11164047,Comfy Brownstone Room in Brooklyn,58070616,Brandon,Brooklyn,Bedford-Stuyvesant,40.69032,-73.93699,Private room,40,1,5,2018-06-17,0.12,1,0 +11164599,Top Floor Apartment with Roof Access.,5162894,Catherine,Manhattan,Midtown,40.74389,-73.98515,Private room,120,1,28,2019-05-19,0.89,1,17 +11164714,Brooklyn Factory Loft,58076069,Rochel,Brooklyn,Williamsburg,40.71617,-73.95379,Entire home/apt,350,5,54,2019-06-18,1.38,1,274 +11165881,Private Room With Manhattan Skyline Views,36574113,Johnny,Queens,Long Island City,40.75332,-73.93343,Private room,84,1,25,2019-06-29,2.56,1,69 +11166140,Beautiful Studio/Doorman Building/43 St & 2 Ave,1475015,Mike,Manhattan,Murray Hill,40.74544,-73.9748,Entire home/apt,83,30,1,2018-08-11,0.09,52,311 +11167618,1 Bedroom Getaway in Park Slope,58098561,Megan,Brooklyn,Park Slope,40.67923,-73.97659,Entire home/apt,125,2,8,2018-03-08,0.20,1,0 +11168007,Beautiful Studio in luxury building,6032945,Tabata,Brooklyn,Greenpoint,40.71987,-73.95427,Entire home/apt,110,3,0,,,1,0 +11168411,Big sunny room 20 min to Manhattan,23435560,Iris & Renato,Brooklyn,Bedford-Stuyvesant,40.69823,-73.9431,Private room,38,7,0,,,1,0 +11173173,PERFECT STUDIO FOR 2 EAST 60th ST,2856748,Ruchi,Manhattan,Upper East Side,40.76162,-73.96588,Entire home/apt,138,30,2,2016-08-30,0.05,49,341 +11175261,"Nice, Comfortable Cozy 1 Bedroom.",32124237,Damian,Brooklyn,Prospect-Lefferts Gardens,40.65505,-73.96086,Entire home/apt,100,4,4,2016-10-23,0.11,1,0 +11176819,Stairway to Heaven,58164974,Jeff,Manhattan,Hell's Kitchen,40.75925,-73.99427,Private room,150,4,37,2018-01-02,0.92,1,0 +11178582,Charming bedroom downtown,6980995,Dominik,Manhattan,Chinatown,40.71312,-73.99669,Private room,90,1,5,2017-05-19,0.12,5,0 +11183567,Charming 1BR in UES Townhouse,45595980,Tny,Manhattan,Upper East Side,40.76792,-73.96724,Entire home/apt,154,30,8,2019-05-20,0.22,12,18 +11183878,Unique Duplex Loft in Gated Compound,20609201,Maurice,Brooklyn,Crown Heights,40.6774,-73.94888,Private room,75,3,29,2019-06-16,0.85,1,67 +11185885,CHARMING 1 BEDROOM IN PERFECT LOC!,1613244,Ariel,Manhattan,East Village,40.72438,-73.98782,Entire home/apt,110,30,10,2018-08-12,0.28,9,337 +11186765,"Lovely room with private bathroom, near Manhattan",58234433,Martin,Queens,Sunnyside,40.7359,-73.91912,Private room,129,1,52,2019-06-16,1.27,8,250 +11187353,Cute Cozy 1 bdrm in Carroll Garden!,3285470,Joannie,Brooklyn,Cobble Hill,40.68498,-73.9996,Entire home/apt,190,31,23,2019-06-22,0.62,1,288 +11187722,Midtown Manhattan Hideaway,2772230,Jase,Manhattan,Hell's Kitchen,40.75577,-73.99466,Entire home/apt,185,2,205,2019-06-20,5.83,1,233 +11190303,Nouveau Bohemian in East Village,35672187,Sharda,Manhattan,East Village,40.72196,-73.98345,Private room,108,2,36,2019-06-21,1.18,1,51 +11190497,Sunny bedroom downtown,6980995,Dominik,Manhattan,Civic Center,40.71327,-73.99853,Private room,98,1,10,2017-08-20,0.24,5,0 +11190701,Large room in spacious apartment,1549512,Ilene,Brooklyn,Bushwick,40.69931,-73.91603,Private room,39,4,0,,,2,0 +11190831,Suite1442,18833883,Norga,Brooklyn,Bedford-Stuyvesant,40.67981,-73.94372,Entire home/apt,145,2,125,2019-06-30,3.23,1,271 +11191242,2 Bedroom in The East Village!,35320932,Samantha,Manhattan,Gramercy,40.73598,-73.98161,Entire home/apt,125,1,19,2016-06-23,0.47,1,0 +11192547,bedroom,58274544,Austin,Brooklyn,Crown Heights,40.67305,-73.94533,Private room,85,1,1,2016-02-13,0.02,1,0 +11194693,NYC Private Apt by Subway and Yankee Stadium,29510402,Douglas,Bronx,Longwood,40.82345,-73.9033,Entire home/apt,89,1,185,2019-07-07,4.52,3,104 +11198278,2BR WITH PRIVATE PATIO EAST VILLAGE,2856748,Ruchi,Manhattan,Greenwich Village,40.73455,-73.99171,Entire home/apt,245,30,0,,,49,364 +11199622,EAST VILLAGE~ MASSIVE 1BR &1.5BATH,2856748,Ruchi,Manhattan,East Village,40.7318,-73.98998,Entire home/apt,230,30,0,,,49,363 +11199645,Cozy Minimalist Room in Brooklyn,22123619,Antoine,Brooklyn,Crown Heights,40.67502,-73.9178,Private room,43,3,10,2018-10-21,0.25,2,305 +11204018,"Comfy, quiet room next to subway!",7678663,Ella,Brooklyn,Crown Heights,40.66727,-73.95274,Private room,40,4,1,2016-03-27,0.03,1,0 +11206278,Awesome bdrm+office+lvnroom in design Apart in LES,15231059,Apollo,Manhattan,Lower East Side,40.72003,-73.98646,Private room,200,3,8,2019-06-13,0.21,4,333 +11210604,The Study - UWS Bedroom In Luxury Building,58388047,Jay,Manhattan,Upper West Side,40.79481,-73.97185,Private room,40,21,11,2018-08-12,0.27,1,177 +11210829,"Huge, Sunny & Quiet",58389790,Claudia & Turi,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93257,Entire home/apt,85,180,0,,,1,1 +11211612,Private Room in Williamsburg BK,57069428,Stuart,Brooklyn,Williamsburg,40.715,-73.95,Private room,50,1,0,,,1,0 +11212414,"Spacious, Family-Friendly NYC Apt",58405281,Cristina,Manhattan,Harlem,40.82485,-73.93774,Entire home/apt,75,1,1,2016-02-21,0.02,1,0 +11213418,Lease Chinatown Little Italy 5 bedrm 2 bath,34813079,Jennifer (And My Brother Gordon),Manhattan,Little Italy,40.71862,-73.997,Entire home/apt,255,31,0,,,1,317 +11216918,Cozy 1 Bdr In the West Village,58437137,David,Manhattan,West Village,40.73386,-74.0046,Entire home/apt,199,1,10,2016-04-27,0.25,1,0 +11218995,Nice Room in Comfortable BK apt,24880134,Cam,Brooklyn,Prospect Heights,40.67801,-73.96739,Private room,70,5,2,2016-09-17,0.05,3,0 +11219289,A big Sunny Room.,58453451,Michael,Brooklyn,East New York,40.67327,-73.8872,Private room,33,1,147,2019-07-02,4.08,2,231 +11221362,Private room in the hearth of NYC,58467654,Thomas,Manhattan,Midtown,40.75771,-73.96872,Private room,90,3,3,2017-01-02,0.07,1,0 +11222221,Stunning West Village Loft,18284376,Carol,Manhattan,West Village,40.73618,-74.009,Entire home/apt,150,1,0,,,1,0 +11223328,Mins to SOHO-Good sized 2 Bdrms w/ real comfy beds,36656552,Kandee,Manhattan,Lower East Side,40.71894,-73.99293,Entire home/apt,229,2,147,2019-06-14,3.90,3,283 +11224100,"Charming, Quiet Room with Full Bed",683203,Suguna,Brooklyn,Prospect Heights,40.675,-73.9656,Private room,34,2,2,2016-03-10,0.05,1,0 +11226811,Sunny refuge surrounded by parks,16103591,April,Manhattan,Inwood,40.86609,-73.92638,Entire home/apt,115,3,6,2018-04-17,0.18,1,0 +11227558,Amazing Two-Floor Artist Loft!,58514808,David,Brooklyn,Williamsburg,40.71319,-73.95807,Entire home/apt,171,1,201,2019-07-01,4.87,1,293 +11228502,SMALL ROOM in private House,22420999,Herman,Queens,Richmond Hill,40.69585,-73.83098,Private room,50,2,5,2018-12-31,0.25,5,344 +11228512,Great 1 BR available in UES!,58523861,Doris,Manhattan,Upper East Side,40.77837,-73.94802,Private room,70,1,0,,,1,0 +11228611,COZY CLEAN ROOM 7 MIN FROM JFK,20134231,Paulette,Queens,Springfield Gardens,40.66275,-73.76391,Private room,40,2,375,2019-06-16,9.26,3,336 +11229663,"Joyce and Donovan's, Room for One",56878925,Joyce,Queens,Forest Hills,40.72282,-73.85571,Private room,37,25,15,2018-08-18,0.45,2,330 +11234747,Mins away to Manhattan Suite Residence,24146326,Julien,Queens,Astoria,40.76626,-73.93054,Shared room,1800,3,5,2017-04-09,0.13,2,90 +11236273,Private furnished room in BK apartment,219970,Fely,Brooklyn,Crown Heights,40.67648,-73.9634,Private room,36,1,19,2019-05-31,0.53,2,0 +11238715,Penthouse King Bedroom w/Amazing Views,26434803,Zach,Brooklyn,Bushwick,40.69967,-73.91403,Private room,65,7,1,2016-05-10,0.03,2,0 +11239207,The Blair House Rental,33535733,Andrew,Manhattan,Midtown,40.76096,-73.9672,Private room,120,5,0,,,1,0 +11239248,Charming 1BD in hip east village,12317978,Megan,Manhattan,East Village,40.72814,-73.98018,Entire home/apt,135,2,25,2018-09-09,0.62,1,0 +11240650,Beautiful upper west side townhouse,25713263,Jess,Manhattan,Upper West Side,40.79101,-73.97961,Entire home/apt,2000,4,2,2016-08-23,0.06,1,75 +11242469,"Very Sunny, Couple/Family-friendly",17861935,Yoon,Queens,Flushing,40.76015,-73.79105,Entire home/apt,70,4,0,,,1,0 +11244921,SPACIOUS Designer Loft - 1BR,24058309,Abigail,Manhattan,Midtown,40.75266,-73.97378,Entire home/apt,160,3,1,2016-02-26,0.02,1,0 +11253351,One room available in apartment,55688014,Juliann,Manhattan,Hell's Kitchen,40.76112,-73.99075,Private room,70,1,0,,,1,0 +11254989,"Sunny, Quiet East Vil/LES APT",58730304,Adrienne,Manhattan,East Village,40.72434,-73.98904,Entire home/apt,140,1,6,2016-12-29,0.18,1,0 +11255694,Private room w/ bathroom & kitchen!,181201,Caroll,Brooklyn,Bedford-Stuyvesant,40.68472,-73.93145,Private room,69,3,23,2019-01-01,0.57,1,317 +11257497,"Sunny, Kid Friendly 2 Bedroom",56066134,Jocelyn,Manhattan,Washington Heights,40.85585,-73.93741,Entire home/apt,125,5,2,2017-01-01,0.05,1,0 +11257690,Luxury 2200ft² 4Bed in East Village,29182025,Jonty,Manhattan,Gramercy,40.73268,-73.98551,Entire home/apt,700,5,87,2019-06-22,2.12,1,266 +11259934,Light-Filled Loft (Morgan L),5440411,Dom,Brooklyn,Williamsburg,40.70647,-73.93265,Private room,64,3,10,2017-08-02,0.27,1,0 +11261146,Williamsburg Pied-à-terre,58779931,Nicholas,Brooklyn,Williamsburg,40.71554,-73.94115,Entire home/apt,250,3,7,2019-01-02,0.38,1,0 +11271036,Room in East Harlem,8145820,Felix,Manhattan,East Harlem,40.79606,-73.94881,Private room,30,1,1,2016-02-24,0.02,1,0 +11272222,LA MAISON JOYEUSE - 12 min walk to Yankee Stadium,58857198,Melanie,Bronx,Concourse Village,40.82731,-73.91632,Private room,100,2,54,2017-01-02,1.32,1,0 +11272815,Private Room Off Morgan L Train Stop In Huge Loft,1373616,Gregory,Brooklyn,Williamsburg,40.70346,-73.93523,Private room,40,5,0,,,1,0 +11276229,Triplex w/ 2 full bed/bath and high ceilings,47481444,Trace,Manhattan,Gramercy,40.7357,-73.98396,Private room,200,1,0,,,1,0 +11276513,Large Room in Park Slope,10262436,Jenn,Brooklyn,Park Slope,40.67788,-73.98086,Private room,90,5,0,,,1,0 +11279590,"Cozy and Simple Studio, UES NYC",22492254,Diana Mia,Manhattan,Upper East Side,40.77416,-73.95259,Entire home/apt,145,5,54,2019-07-05,1.43,1,236 +11279820,Newly Renovated 2 Bedroom in Soho!,22292023,Jordon,Manhattan,Lower East Side,40.72224,-73.99192,Entire home/apt,170,1,0,,,1,0 +11279847,Cozy/bright Clinton Hill studio,525856,Rick,Brooklyn,Clinton Hill,40.68354,-73.96748,Entire home/apt,70,6,18,2019-07-04,0.47,1,203 +11281365,Private Room in Uptown Manhattan,24258262,Hannah,Manhattan,Washington Heights,40.83336,-73.94333,Private room,70,2,118,2019-06-30,2.93,1,283 +11281913,Apt in the heart of West Village,3040512,Andrea,Manhattan,West Village,40.73292,-74.00222,Entire home/apt,168,1,1,2016-03-01,0.02,1,0 +11282208,"Sunny ""green"" brownstone duplex with deck & garden",1779599,Bettina,Brooklyn,Bedford-Stuyvesant,40.68556,-73.92767,Entire home/apt,195,4,5,2018-08-16,0.14,1,15 +11282348,Unique Lincoln Square 1 BR Apt,58931360,Juliana,Manhattan,Upper West Side,40.77616,-73.98485,Entire home/apt,250,3,6,2016-07-06,0.15,1,0 +11282499,Hells Kitchen private room 3BR/2BA,5408649,Steven,Manhattan,Hell's Kitchen,40.76508,-73.99087,Private room,55,10,0,,,1,0 +11282788,Gorgeous Brooklyn Master Bedroom,3925093,Nina,Brooklyn,Prospect Heights,40.68018,-73.96582,Entire home/apt,75,16,9,2016-12-26,0.24,1,0 +11284520,Charming Pad in Prime Bushwick,4592263,Natalie,Brooklyn,Bushwick,40.70192,-73.92464,Private room,55,30,0,,,1,0 +11284626,Large BR in Spacious Artist Loft,7519175,Ira,Brooklyn,Bushwick,40.7066,-73.92115,Private room,75,3,0,,,1,0 +11291712,One Bedrm BK Brownstone Beauty,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9434,Private room,50,7,10,2019-01-17,0.25,3,243 +11293006,Queen Bedroom in East Village,59007500,Matt,Manhattan,East Village,40.72814,-73.97995,Private room,85,1,4,2016-07-24,0.11,1,0 +11294566,Bright & comfy room in Bed Stuy 3BR,59018284,Dorien,Brooklyn,Bedford-Stuyvesant,40.69062,-73.93497,Private room,28,1,5,2016-04-25,0.12,1,0 +11295457,Manhattan -Harlem- private room / single bed,7055854,Diane,Manhattan,East Harlem,40.80296,-73.94399,Private room,60,5,39,2019-06-06,1.20,5,271 +11295918,"CLEAN, QUIET, COMFORTABLE APARTMENT",4671389,Samuel,Brooklyn,Prospect-Lefferts Gardens,40.66143,-73.95999,Private room,70,1,0,,,1,0 +11296590,One Bedroom apartment in the heart of Chelsea,59032240,Matt,Manhattan,Chelsea,40.74322,-73.99744,Entire home/apt,165,6,4,2019-04-18,0.19,1,13 +11298300,Stylish 2 BR on the Upper West Side,4726696,Maria,Manhattan,Upper West Side,40.79589,-73.96811,Entire home/apt,145,1,1,2016-03-24,0.02,1,0 +11301136,Cute & Cozy Studio_C2S @ UES 81,59066199,DaKyung,Manhattan,Upper East Side,40.77511,-73.95276,Entire home/apt,125,10,5,2019-04-27,0.12,1,88 +11304325,West Village 2 Br,59095370,Gabriella,Manhattan,West Village,40.73313,-74.00336,Entire home/apt,250,1,1,2016-02-25,0.02,1,0 +11304836,Sunny 1-Bdrm Near Shopping,6761373,Iquo,Brooklyn,Flatbush,40.64495,-73.95896,Entire home/apt,69,5,1,2019-04-13,0.34,1,0 +11305815,Fourth of July getaway,59105771,Rachel,Manhattan,Inwood,40.86083,-73.92626,Entire home/apt,140,3,5,2016-12-27,0.13,1,8 +11305912,_Special Offers: Guest Assistance,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67771,-73.96979,Private room,250,1,25,2019-05-01,0.63,13,0 +11309973,ULTRA CHIC 3BR APT IN EAST VILLAGE!,2856748,Ruchi,Manhattan,East Village,40.73157,-73.98792,Entire home/apt,278,30,0,,,49,339 +11311470,EAST VILLAGE 3BR ~WITH GARDEN VIEW!,2856748,Ruchi,Manhattan,East Village,40.73235,-73.98823,Entire home/apt,285,30,0,,,49,364 +11315999,Summer in the City,5577926,Lou,Queens,Astoria,40.76821,-73.9125,Private room,60,1,72,2019-06-15,1.82,4,0 +11316570,Sun-Filled Bedroom in Artist Apartment,3530018,Scott,Brooklyn,Bedford-Stuyvesant,40.69873,-73.93937,Private room,30,50,2,2018-01-02,0.05,1,0 +11317209,Modern Apartment in Williamsburg,20527254,Eddy,Brooklyn,Williamsburg,40.70821,-73.94719,Private room,65,2,9,2016-12-05,0.25,1,0 +11319227,A HOME AWAY FROM HOME IN NYC! UPTOWN,51025844,Kdn,Manhattan,Inwood,40.86761,-73.92718,Shared room,29,1,93,2019-06-15,2.28,3,90 +11320246,Room for rent in East Village,47625541,Jeff,Manhattan,East Village,40.72152,-73.97999,Private room,65,2,4,2016-07-21,0.10,2,1 +11320482,living affordably in prim RIVERDALE,24789838,Aljosha,Bronx,Kingsbridge,40.88599,-73.89868,Private room,45,6,0,,,2,0 +11321187,Entire 1Br Apt on UES,59215698,Daniela,Manhattan,Upper East Side,40.76796,-73.95205,Entire home/apt,130,1,21,2019-07-07,0.56,2,53 +11321484,Williamsburg Abode,59215650,Jil,Brooklyn,Williamsburg,40.71259,-73.95974,Private room,75,3,0,,,1,0 +11322391,Sunny room w/Laundry + own entrance,17824959,Allison,Brooklyn,Bushwick,40.69585,-73.92585,Private room,50,2,1,2016-04-21,0.03,1,0 +11322591,Large 1 bd in East Williamsburg,1525033,Monique,Brooklyn,Williamsburg,40.71055,-73.95017,Entire home/apt,160,7,4,2017-10-06,0.10,1,0 +11324531,PRIVATE ROOM - GREENPOINT,31860430,Grayson,Brooklyn,Greenpoint,40.73733,-73.95336,Private room,65,1,0,,,1,0 +11324565,Private Room. Twin Bed. Great Stay!,59070885,Eric Charles,Manhattan,Upper East Side,40.76658,-73.95224,Private room,39,1,5,2016-04-16,0.12,1,0 +11325107,Cozy 1 Bedroom in the Village,3417090,Trevor,Manhattan,Gramercy,40.7328,-73.9841,Entire home/apt,145,1,125,2019-02-24,3.63,1,0 +11325635,Lovely Brownstone close to subway,404629,Jazzy,Brooklyn,Bedford-Stuyvesant,40.68079,-73.95556,Entire home/apt,195,4,122,2019-06-30,3.01,1,236 +11326009,Cozy SunLit Room Next To TimeSquare,13125944,Calvin,Manhattan,Hell's Kitchen,40.7651,-73.98854,Private room,79,1,2,2016-05-21,0.05,2,0 +11334160,Sunny New Apartment in Artsy Area!,41616878,Melissa,Brooklyn,Bushwick,40.69033,-73.9083,Private room,50,30,12,2019-05-31,0.31,4,326 +11334476,Comfortable Bedroom,47515751,Jennyfer,Manhattan,Inwood,40.86679,-73.92552,Private room,35,3,10,2019-03-24,0.24,2,31 +11334624,Sunny Friendly 3BR Lower East Side,35095754,Lorraine,Manhattan,Lower East Side,40.72048,-73.9906,Private room,325,2,130,2019-06-21,3.30,2,139 +11335874,Huge bedroom in luxurious apartment,5650826,Colin,Manhattan,East Harlem,40.78626,-73.94429,Private room,40,4,2,2016-04-02,0.05,1,0 +11337187,"Cute, cozy, hip Williamsburg nest",22570120,Charles,Brooklyn,Williamsburg,40.70969,-73.9592,Entire home/apt,95,30,10,2019-02-09,0.30,2,27 +11337913,Private Bedroom Midtown,3660628,Michelle,Manhattan,Upper West Side,40.76898,-73.98453,Private room,105,4,0,,,1,0 +11338529,Private room in Uptown Manhattan,59345189,Jenniffer,Manhattan,Inwood,40.86313,-73.92162,Private room,43,2,55,2018-04-22,1.98,1,0 +11339109,Sunny Artist PH - Williamsburg w/PrivateTerrace,58179165,Meg,Brooklyn,Williamsburg,40.71175,-73.96728,Entire home/apt,225,1,6,2018-10-07,0.28,1,89 +11339154,Renovated Large Studio Apartment,10990986,Daniel,Manhattan,Upper West Side,40.79153,-73.97174,Entire home/apt,175,3,3,2016-04-07,0.08,1,0 +11341650,"Room off Jefferson L, Bushwick",978580,Marta,Brooklyn,Bushwick,40.70515,-73.925,Private room,75,1,0,,,1,0 +11343196,Charming Studio in Great Location,5368671,Kevin,Brooklyn,Cobble Hill,40.68963,-73.99259,Entire home/apt,94,1,39,2019-06-02,0.98,1,4 +11344203,"Cozy lofted room, with patio",26082446,Natali,Brooklyn,Bushwick,40.69607,-73.92295,Private room,100,1,0,,,1,0 +11351798,West Village penthouse loft w roof,29658310,Nathaniel,Manhattan,Greenwich Village,40.73469,-73.99838,Entire home/apt,200,3,1,2016-05-18,0.03,1,0 +11352664,Gated Manhattan Enclave,26024758,Sabia,Manhattan,East Harlem,40.81357,-73.93575,Entire home/apt,95,2,74,2019-06-02,1.85,1,92 +11355476,Cozy studio living-room sharing in Little Italy,49621731,Angel,Manhattan,Little Italy,40.71987,-73.99729,Shared room,65,5,19,2019-06-15,0.67,1,89 +11356941,Sleek Modern Loft w/ Balcony,7194539,Chris,Brooklyn,Williamsburg,40.717,-73.9565,Entire home/apt,349,2,42,2019-06-30,1.07,1,337 +11357182,Cozy room in Williamsburg apartment,6369681,Juliann,Brooklyn,Williamsburg,40.7106,-73.95884,Private room,41,1,4,2016-06-20,0.10,1,0 +11359026,One bedroom apt near Times Square,59499901,Nate,Manhattan,Hell's Kitchen,40.76189,-73.98961,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +11359148,Cozy Garden Apartment,42389158,Han And Denyce,Brooklyn,Flatbush,40.64181,-73.9522,Entire home/apt,85,2,168,2019-07-06,4.22,1,246 +11359913,Gramercy Townhouse,53356372,Brenda,Manhattan,Gramercy,40.73546,-73.98057,Entire home/apt,1200,2,0,,,1,0 +11360407,"Rm in 3BR Dplx/1Bth, ClintonHill off WashingtonAve",59509831,Jaleelah A.,Brooklyn,Clinton Hill,40.68073,-73.96217,Private room,150,2,3,2019-06-17,0.08,1,35 +11360854,1 BEDROOM IN COZY APARTMENT,1565924,Johanna,Manhattan,East Harlem,40.79191,-73.94613,Private room,65,1,1,2016-12-30,0.03,1,0 +11362569,Private Hell's Kitchen Two person room,59529529,Han,Manhattan,Hell's Kitchen,40.76179,-73.99403,Private room,110,1,161,2019-06-30,4.42,6,165 +11363349,Cute bedroom in the East Village,29392554,Yana,Manhattan,East Village,40.72916,-73.97816,Private room,75,120,0,,,1,173 +11370047,Sunny and Spacious Room in Central Harlem,6669178,Jay,Manhattan,Harlem,40.81696,-73.94164,Private room,80,3,69,2019-05-25,1.70,1,3 +11370207,"Bright, modern room in clean appt",12797993,Richard,Brooklyn,Bushwick,40.69783,-73.90998,Private room,45,3,6,2016-11-06,0.15,1,0 +11371099,Charming 1 Bedroom Brooklyn Apt,59595517,Lisa,Brooklyn,Bedford-Stuyvesant,40.68164,-73.93497,Entire home/apt,83,4,106,2019-06-16,2.64,1,201 +11371535,Cozy and bright bedroom with a queen size bed.,55618434,Donald,Bronx,Bronxdale,40.85324,-73.86506,Private room,40,2,83,2019-06-16,2.08,1,276 +11371773,Sunny room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69627,-73.9345,Private room,79,3,37,2019-06-30,0.94,7,358 +11371974,1 bedroom Apt in Prospect Heights,32974295,Jacqueline,Brooklyn,Prospect Heights,40.67893,-73.97068,Entire home/apt,70,1,0,,,1,0 +11372330,Manhattan Apartment + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81312,-73.94273,Entire home/apt,177,3,90,2019-06-22,2.59,3,175 +11373565,Private room in Williamsburg,59609062,Evan,Brooklyn,Williamsburg,40.70718,-73.94672,Private room,60,1,0,,,1,0 +11374387,Beautiful home close to CentralPark,4275336,Andy,Manhattan,Upper West Side,40.77271,-73.98811,Entire home/apt,190,1,2,2016-09-20,0.05,1,0 +11374453,Large 3 Br on Central Park North,7605261,Ian,Manhattan,East Harlem,40.79766,-73.94756,Entire home/apt,240,2,5,2017-07-23,0.13,1,0 +11375631,Spacious 1 BR Apartment - UES,58110428,Mac,Manhattan,Upper East Side,40.7695,-73.9532,Entire home/apt,150,2,10,2017-01-04,0.25,1,0 +11377233,"Spacious, modern room in Bedstuy",42626435,Will,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9441,Private room,31,29,10,2017-05-28,0.25,1,0 +11377777,Great Apartment in Manhatan,16969920,Talita,Manhattan,Morningside Heights,40.81633,-73.96147,Entire home/apt,110,1,3,2017-01-10,0.09,1,0 +11378048,Charming One Bedroom in Boerum Hill,4161553,Michael,Brooklyn,Gowanus,40.6848,-73.98894,Entire home/apt,120,2,5,2016-05-09,0.13,1,0 +11378564,Love Where You Live! 3BR Garden Apartment Duplex,5120972,Rachel And Bart,Brooklyn,Greenpoint,40.72555,-73.95323,Entire home/apt,176,3,122,2019-06-26,3.63,1,54 +11381288,Lower East Side Living,49021868,Conor,Manhattan,Lower East Side,40.7213,-73.989,Entire home/apt,199,4,9,2019-01-03,0.22,1,0 +11387473,Hipster Central,17598715,Ryan,Brooklyn,Red Hook,40.67941,-74.0124,Entire home/apt,200,1,0,,,1,0 +11389037,Private room in Greenpoint Apt.,51425591,Matthew,Brooklyn,Greenpoint,40.72347,-73.94199,Private room,70,1,0,,,1,0 +11389773,Chambre au coeur de Manhattan,59746634,Joël,Manhattan,Chelsea,40.74721,-73.98968,Private room,65,1,0,,,1,0 +11391101,Hip Bushwick right on the L train!,59756933,Magdalena,Brooklyn,Bushwick,40.70223,-73.9148,Private room,60,2,1,2016-03-19,0.02,1,0 +11396225,Beautiful Brownstone apt in Central Harlem,9585945,Tom & Emma,Manhattan,Harlem,40.80761,-73.94249,Entire home/apt,140,4,7,2018-11-08,0.20,1,128 +11396922,Designer 1Bd with Treelined Terrace,2821175,Theresa,Brooklyn,Prospect Heights,40.67948,-73.96567,Entire home/apt,150,21,1,2016-04-30,0.03,1,0 +11397141,Luxury apartment in Williamsburg,31284498,Abe,Brooklyn,Williamsburg,40.71905,-73.95426,Entire home/apt,200,1,0,,,1,0 +11398939,Stay in Private Room in PARK SLOPE,4218873,Elizabeth,Brooklyn,Sunset Park,40.66216,-73.98985,Private room,55,1,1,2019-03-31,0.30,1,0 +11399898,"Huge, spacious 2 bdrm, 2 bath apartment on the LES",23590752,Neriza,Manhattan,East Village,40.72201,-73.98277,Entire home/apt,200,2,7,2019-07-07,3.68,1,36 +11401884,Charming Pied-à-terre à New York!,59849677,Tom & Mel,Manhattan,East Harlem,40.79736,-73.94442,Private room,100,2,77,2019-07-06,1.90,1,235 +11407817,Wonderful apartment with view & Rooftop!!!!,9290968,Marco,Queens,Astoria,40.77349,-73.92648,Entire home/apt,112,1,2,2017-05-28,0.07,1,0 +11411361,Sunny private bedroom,57287881,Ivy,Brooklyn,Williamsburg,40.71097,-73.94549,Private room,45,5,0,,,1,0 +11411839,"sunny, cozy room near subway",18873268,Sandy,Brooklyn,Bedford-Stuyvesant,40.69586,-73.95026,Private room,75,5,3,2016-09-11,0.08,1,0 +11412104,Furnished Room in Williamsburg,59916586,Eugenia,Brooklyn,Williamsburg,40.70723,-73.94939,Private room,45,1,1,2016-04-02,0.03,1,0 +11412169,Condo at Wyndham Midtown 45,40744172,Laurie,Manhattan,Midtown,40.75225,-73.97177,Private room,499,3,0,,,1,0 +11412980,Private Garden Apartment,59922151,Pierce,Brooklyn,Cobble Hill,40.6885,-73.99526,Entire home/apt,160,2,205,2019-06-30,5.08,1,6 +11414971,"SUNNY, SAFE and FRIENDLY minutes to Manhattan!",6705983,Laurie,Queens,Jackson Heights,40.75179,-73.89015,Entire home/apt,100,2,6,2017-09-24,0.17,1,0 +11415455,Cute East Village Studio Apartment,20868549,Kerri,Manhattan,East Village,40.72793,-73.98771,Entire home/apt,175,1,2,2016-05-21,0.05,1,0 +11419133,Private sunny room in Chelsea,6034691,Eleena,Manhattan,Chelsea,40.74448,-73.99221,Private room,80,40,2,2016-12-20,0.05,1,0 +11419512,Brand New Building/Apt - Great Area,59913399,Michael,Brooklyn,Williamsburg,40.71016,-73.96076,Private room,60,3,8,2018-11-20,0.36,1,3 +11419898,Doorman 1 bedroom Amazing Location 5151,16098958,Jeremy & Laura,Manhattan,Financial District,40.70425,-74.00845,Entire home/apt,175,30,2,2016-05-07,0.05,96,312 +11420840,Lovely room in Jackson Heights,45404393,Say,Queens,Jackson Heights,40.75106,-73.88349,Private room,65,2,17,2019-06-16,0.44,1,314 +11421477,West Village Modern Studio,1746436,Dami,Manhattan,West Village,40.73682,-74.00238,Entire home/apt,159,2,47,2019-05-27,1.16,1,361 +11421994,Spacious Flat in HeArt of Bushwick!,51276298,Kayan,Queens,Ridgewood,40.70679,-73.91692,Entire home/apt,118,2,153,2019-06-16,3.77,1,337 +11422056,Lovely & Cozy Apartment in Queens!,59996301,Joseph,Queens,Maspeth,40.7416,-73.90684,Entire home/apt,120,3,88,2019-06-19,2.25,1,303 +11422779,High Rise Elevator Building in NYC,7505413,Tim,Manhattan,Lower East Side,40.71523,-73.98489,Private room,91,2,42,2019-05-16,1.10,1,80 +11431526,"Huge, Sunny Carroll Gardens 1BR Apt",1449155,Hadley,Brooklyn,Carroll Gardens,40.68285,-73.99495,Entire home/apt,125,5,1,2016-07-05,0.03,1,0 +11431871,"Crown Heights, Franklin Ave- Sunny Room",60059749,Amanda,Brooklyn,Crown Heights,40.67283,-73.95551,Private room,55,1,21,2017-07-26,0.53,2,0 +11433561,Fresh East Village 4K Pre-War Remix w Full Bar!,3395433,Nick,Manhattan,East Village,40.73117,-73.98386,Entire home/apt,175,3,6,2019-06-02,1.91,1,0 +11434339,"Nice, Sunny and by Yankee Stadium",60077790,Veronica,Manhattan,Harlem,40.82044,-73.93605,Private room,100,1,0,,,1,0 +11434570,Spacious park block garden studio,5162192,Amy,Manhattan,Upper West Side,40.79804,-73.96135,Entire home/apt,140,30,19,2019-03-03,0.47,12,256 +11434848,Private room in Manhattan,12925391,Claire,Manhattan,Harlem,40.8006,-73.95314,Private room,55,1,0,,,1,0 +11435529,Light filled room in hip Gowanus,30545042,Waciuma,Brooklyn,Gowanus,40.67937,-73.98404,Private room,40,3,1,2016-03-22,0.02,1,0 +11435936,Huge 1bd Doorman GYM Roof 5224,16098958,Jeremy & Laura,Manhattan,Theater District,40.76241,-73.98587,Entire home/apt,180,30,5,2018-06-09,0.15,96,303 +11436132,Long Island City Penthouse 1 stop 2 Manhattan,217922,Eileen,Queens,Long Island City,40.74859,-73.93904,Entire home/apt,110,30,32,2019-05-17,0.84,1,66 +11437634,Modern 1-bdrm apt near Manhattan and Central Park,25194025,Tessa & Negra,Queens,Astoria,40.75579,-73.9148,Entire home/apt,90,2,101,2019-06-28,2.91,1,266 +11437792,Hipster Room in South Williamsburg,354385,Chris,Brooklyn,Williamsburg,40.71004,-73.95644,Private room,50,1,2,2017-02-12,0.07,1,0 +11438189,Everything you need in NYC! 3BR,4422962,Remo,Brooklyn,Bedford-Stuyvesant,40.67834,-73.92442,Entire home/apt,135,30,155,2019-05-21,3.97,1,281 +11439208,1 bedroom in 2 bed-apt in the best of Brooklyn,9896078,Geraldine,Brooklyn,Williamsburg,40.71745,-73.9569,Private room,60,3,1,2017-01-03,0.03,1,0 +11439224,Huge bedroom in the heart of NYC,60112093,Miranda,Manhattan,Kips Bay,40.74308,-73.98172,Private room,200,2,12,2017-12-08,0.52,1,0 +11440252,Cozy room in Adorable 2BR apt inUES special price,1721738,Amir,Manhattan,Upper East Side,40.77327,-73.94982,Private room,90,10,23,2019-05-21,0.60,1,8 +11441498,Lincoln Center Apartment,26104727,Ambika,Manhattan,Upper West Side,40.77137,-73.98321,Entire home/apt,180,1,0,,,1,0 +11441692,Modern West Village Studio,6501137,Dee,Manhattan,West Village,40.73982,-74.00807,Entire home/apt,228,1,10,2017-01-01,0.25,1,0 +11442506,Apt in Upper West near Central Park,24405972,Paula,Manhattan,Upper West Side,40.77661,-73.98228,Entire home/apt,250,4,3,2019-01-02,0.08,1,0 +11442670,Females Only Private Room JFK 1Omin,60145132,Annett And Chuck,Queens,Jamaica,40.69462,-73.80178,Private room,40,1,1,2016-10-08,0.03,1,88 +11444671,"Great Home & Host, Next to 1 train.",60163700,Dee,Manhattan,Harlem,40.82283,-73.95247,Private room,65,14,42,2019-05-24,1.04,4,185 +11450373,STUDIO IN VILLAGE CHARM~PERRY STREET!,2856748,Ruchi,Manhattan,West Village,40.73642,-74.00263,Entire home/apt,188,30,2,2016-11-01,0.06,49,342 +11451070,Spacious studio near Central Park,31500454,Maria,Manhattan,Morningside Heights,40.8042,-73.96507,Entire home/apt,130,5,1,2016-03-04,0.02,1,0 +11451660,Great apartment -North Williamsburg,2266717,Thais & Antoine,Brooklyn,Greenpoint,40.72306,-73.94786,Entire home/apt,140,2,43,2019-01-06,1.06,1,0 +11452070,Great Private Room in West Village,17038671,Anthony,Manhattan,West Village,40.73133,-74.00459,Private room,130,1,74,2018-07-27,1.86,2,243 +11452547,"Family friendly, amazing garden in Cobble hill",1621363,Elizabeth,Brooklyn,Boerum Hill,40.68623,-73.98956,Entire home/apt,300,29,7,2019-01-13,0.19,2,312 +11452989,Simple but spaced - Near to subway,12531773,Renata,Manhattan,Harlem,40.82195,-73.95508,Private room,50,4,64,2019-06-16,3.31,2,162 +11453029,Cozy Groundfloor Apartment w/Garden,22169347,Laura,Brooklyn,Crown Heights,40.6758,-73.95578,Entire home/apt,75,4,6,2018-08-27,0.16,1,0 +11453784,Prime Chelsea~roof deck~laundry...,2119276,Host,Manhattan,Chelsea,40.7437,-73.99476,Entire home/apt,200,30,7,2019-06-14,0.49,39,311 +11455372,Space for Small Events /Gatherings/Dinner Parties,16245414,Shae,Brooklyn,Bushwick,40.69322,-73.92378,Entire home/apt,250,1,6,2018-03-11,0.15,4,0 +11456047,【完全個室】1BR、専用バストイレ、キッチン付き(Queens),60239797,Hazuki,Queens,Elmhurst,40.73958,-73.87288,Private room,100,1,0,,,1,0 +11456592,"Brooklyn Love, Close to the City!!",60244293,Savannah,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92849,Entire home/apt,112,2,168,2019-06-21,4.11,2,291 +11456821,"Luxury Midtown West Studio w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.75994,-73.99781,Entire home/apt,230,30,0,,,3,176 +11457413,Designed By Stark!Basket Ball Gym 5150,16098958,Jeremy & Laura,Manhattan,Financial District,40.70563,-74.00658,Entire home/apt,170,30,3,2017-04-22,0.10,96,312 +11457547,"NEW! Furnished, East Village Gem",16589150,Daniel,Manhattan,East Village,40.72526,-73.99031,Private room,79,2,14,2016-06-17,0.34,1,0 +11457577,Private Room Near Times Square!,45033175,Eugene,Manhattan,Hell's Kitchen,40.76071,-73.99188,Private room,125,3,0,,,3,0 +11458818,Dooman GYM prime location!5178,16098958,Jeremy & Laura,Manhattan,Theater District,40.76279,-73.9854,Entire home/apt,285,30,7,2018-12-16,0.19,96,311 +11458973,"Luxury Midtown West 2BR w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.76144,-73.99827,Entire home/apt,421,30,0,,,3,0 +11459084,LES sunny bedroom with roof access,20175896,Zack,Manhattan,Lower East Side,40.72132,-73.98369,Private room,110,3,26,2019-04-22,0.64,1,0 +11459958,Amazing spacious Loft in Williamsbu,60266817,Alberto,Brooklyn,Williamsburg,40.71213,-73.95654,Entire home/apt,690,1,91,2019-06-23,2.28,1,169 +11460993,Harlem Gem,60278793,Lisa,Manhattan,Harlem,40.81575,-73.94913,Entire home/apt,169,3,96,2019-06-17,2.51,1,39 +11461331,Spacious & Sunny Urban Treehouse,12981247,Allison,Brooklyn,Crown Heights,40.67677,-73.93783,Private room,60,3,1,2016-04-01,0.03,1,0 +11461524,Spacious Loft Greenpoint/Williamsbr,16919101,Eric,Brooklyn,Greenpoint,40.72474,-73.95508,Private room,70,2,28,2018-10-12,1.12,1,0 +11461798,Central Park - 2 Cozy Rooms (Max. 7 People),60281397,Lugao,Manhattan,Upper West Side,40.79576,-73.96856,Private room,150,2,21,2019-05-08,0.53,3,333 +11462440,Sweet and Cosy apartment,14076492,Shira,Manhattan,Upper West Side,40.7989,-73.96775,Private room,120,12,0,,,1,0 +11462944,Big Cozy Apartment in West Uptown,46453731,Gabriela,Manhattan,Harlem,40.80136,-73.95476,Entire home/apt,140,4,0,,,1,0 +11465084,1 Bedroom Apartment -Tompkins sq Park/East Village,48870027,Selim,Manhattan,East Village,40.72697,-73.98072,Entire home/apt,160,4,19,2019-06-11,0.48,1,343 +11470210,"Delightful, Cozy and Convenient Room in Brooklyn!!",60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69165,-73.943,Private room,50,1,210,2019-05-28,5.17,4,189 +11474664,Family-friendly 2 bed apt.near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68165,-73.84558,Entire home/apt,120,4,70,2019-06-05,1.76,4,51 +11474808,Huge Apt for Family Close to Trains,1524765,Christopher,Brooklyn,Clinton Hill,40.68701,-73.96174,Entire home/apt,140,3,4,2016-08-07,0.11,1,0 +11477869,Lovely Home in Prime Brooklyn,60401178,Dan,Brooklyn,Gowanus,40.67884,-73.99238,Entire home/apt,619,5,9,2019-04-21,0.23,1,54 +11478813,"Lovely 3 Bedroom, 2 Bath Flatiron Area Loft",60409176,C.E.,Manhattan,Flatiron District,40.73994,-73.99005,Entire home/apt,600,5,28,2019-05-26,0.71,1,338 +11479334,Fantastic 1 Bdrm | Entire Apartment,24031106,James,Manhattan,Harlem,40.81086,-73.94037,Entire home/apt,76,14,2,2017-09-03,0.05,1,0 +11480835,Brooklyn Bushwhick Private Room,7990995,Juno,Brooklyn,Bushwick,40.70017,-73.92081,Private room,35,1,0,,,1,0 +11481037,A slice of heaven on earth in NYC,60294559,Vidya,Manhattan,Midtown,40.75321,-73.97215,Shared room,75,1,2,2018-01-01,0.10,1,0 +11481639,Master Room in Downtown Queens NYC,51278789,Grace,Queens,Corona,40.73884,-73.8665,Private room,40,16,34,2019-05-11,0.87,2,146 +11483117,Brooklyn Style Apartment,60446325,Taniesha,Brooklyn,Clinton Hill,40.69483,-73.96403,Private room,54,2,30,2019-06-05,1.17,1,333 +11484489,Soho sanctuary in perfect location,10174622,Ash,Manhattan,Nolita,40.72225,-73.99473,Entire home/apt,140,2,44,2019-07-07,1.10,1,110 +11484596,WEST 56TH COLUMBUS CIRCLE-LUXURY DOORMAN/GYM/DECK,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76584,-73.98422,Entire home/apt,225,30,0,,,49,348 +11486357,"Sunny Room, Hamilton Heights Section of Manhattan",27378293,Lendy,Manhattan,Harlem,40.8285,-73.94889,Private room,87,1,2,2018-11-30,0.23,3,332 +11486601,Beautiful Spacious Loft near subway and train,4964682,Luis And Oriana,Manhattan,Marble Hill,40.87665,-73.90855,Entire home/apt,131,3,43,2019-06-15,1.18,1,317 +11488593,LUXURY DOORMAN STUDIO ON EAST 44th STREET,2856748,Ruchi,Manhattan,Midtown,40.75066,-73.97037,Entire home/apt,198,30,0,,,49,364 +11490215,Gorgeous family friendly 3BR by Columbia campus,8536366,Shai,Manhattan,Morningside Heights,40.80792,-73.96728,Entire home/apt,450,5,9,2019-06-24,0.33,1,329 +11490744,Beautiful Apartment in Historic Brooklyn Townhouse,24743701,Renata And Howard,Brooklyn,Prospect-Lefferts Gardens,40.65976,-73.95604,Entire home/apt,175,2,123,2019-06-23,3.32,2,67 +11491051,NYC Studio Apartment,60500336,Adam,Manhattan,Murray Hill,40.74573,-73.97802,Entire home/apt,100,1,1,2016-04-01,0.03,1,0 +11491696,Studio apartment close to subway,60502606,Brooke,Manhattan,Upper West Side,40.78838,-73.97892,Entire home/apt,250,1,0,,,1,0 +11493255,Central Park / UWS,60516459,Ana,Manhattan,Upper West Side,40.77156,-73.98284,Private room,280,2,60,2019-06-18,1.47,1,317 +11495721,Full apartment available,51646459,Attika,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93375,Entire home/apt,135,30,26,2017-01-01,0.64,1,365 +11495792,Huge 1 bdrm apt; sublet March-Aug,60535622,Adela,Brooklyn,Crown Heights,40.66391,-73.95179,Entire home/apt,2100,120,0,,,1,363 +11495797,1br Suite - St Regis Residence Club,60535711,Bruce,Manhattan,Midtown,40.7604,-73.9741,Entire home/apt,1100,2,20,2019-05-16,0.53,2,268 +11496210,Sunny family-friendly 1 bed. apt near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68084,-73.84765,Entire home/apt,87,4,86,2019-06-10,2.13,4,58 +11496607,Trendy 1 Bedroom Harlem Brownstone,60542135,Amal & Emad,Manhattan,Harlem,40.80187,-73.94705,Entire home/apt,165,3,60,2019-06-17,1.49,1,278 +11496968,1BD apartment with balcony on park,831572,Rupert,Brooklyn,Fort Greene,40.69277,-73.97449,Entire home/apt,170,1,12,2016-10-16,0.30,1,0 +11497795,"Cheap, clean, 15 min. to Manhattan",6067526,Matt,Queens,Jackson Heights,40.74852,-73.8889,Private room,50,1,0,,,1,188 +11497938,One Bedroom with kids room / office,60501531,John,Bronx,Spuyten Duyvil,40.88058,-73.91812,Entire home/apt,79,186,7,2016-07-30,0.18,1,365 +11503335,Small Room Double Bed and 25 x 15 ft livingroom,6502531,Andrea,Manhattan,Chelsea,40.74549,-73.99473,Private room,84,1,13,2018-08-27,0.36,2,23 +11503509,Riverside park and Columbia Univ,60596749,Neil,Manhattan,Morningside Heights,40.80752,-73.96713,Entire home/apt,375,7,5,2016-09-06,0.14,1,0 +11505981,Sunny Manhattan Studio - perfect for couples,60615372,Katy,Manhattan,Upper East Side,40.78222,-73.94725,Entire home/apt,135,2,31,2018-01-03,0.83,1,0 +11506248,Private Room & Bathroom with Sauna,923791,Daniel,Brooklyn,South Slope,40.66397,-73.98538,Private room,125,1,7,2017-10-19,0.17,2,0 +11509497,HUGE LIGHTENED ROOM / APARTMENT BROOKLYN,60639864,Joseph,Brooklyn,Bedford-Stuyvesant,40.68962,-73.95169,Private room,79,1,16,2019-06-19,0.41,1,0 +11511431,Historic Upper West Side Townhouse 1 or 2 Bdrms,23901404,Ray,Manhattan,Harlem,40.82334,-73.94811,Entire home/apt,165,2,90,2019-07-07,2.58,1,35 +11511466,Manhattan: 80's upper east side - entire apartment,1827164,Diana,Manhattan,Upper East Side,40.77287,-73.95292,Entire home/apt,300,31,1,2016-10-18,0.03,1,201 +11511592,Super-cute apartment in Harlem!,17752872,Cleo,Manhattan,Harlem,40.83038,-73.94531,Private room,45,1,2,2016-04-26,0.05,1,0 +11512962,Central Park 2BR Luxury building~24H DM Newly Reno,2119276,Host,Manhattan,Midtown,40.76687,-73.98273,Entire home/apt,400,30,2,2016-12-11,0.06,39,188 +11513480,Spacious & sunny room in Brooklyn!,47105925,Afnan,Brooklyn,Crown Heights,40.6718,-73.94266,Private room,40,2,2,2016-03-23,0.05,1,0 +11514023,Chill place near subway/park/river.,50462669,Mo,Manhattan,Upper West Side,40.7939,-73.97404,Private room,60,3,2,2016-04-15,0.05,1,0 +11514756,RENOVATED/BEST LOCATION in MIDTOWN,60688035,Marta,Manhattan,Midtown,40.75921,-73.97361,Private room,250,3,167,2019-06-15,4.42,2,198 +11514862,Large (clean) private bedroom in Crown Heights,54772069,Dominic,Brooklyn,Crown Heights,40.67634,-73.94133,Private room,55,30,0,,,1,365 +11521447,Sunny & Spacious 1br Lower East Side Apartment,19249692,Peter,Manhattan,Chinatown,40.71659,-73.98949,Entire home/apt,199,3,92,2019-07-06,2.28,1,48 +11522815,Cute 1bd w/balcony E Williamsburg,60753668,Therese,Brooklyn,Williamsburg,40.71946,-73.94193,Entire home/apt,130,30,42,2018-06-29,1.06,1,0 +11524437,Private Room - One of a kind chance in East Harlem,21937063,Ari,Manhattan,East Harlem,40.79712,-73.93469,Private room,44,6,14,2019-06-03,0.35,1,335 +11526590,Large 1br in central Nolita / SoHo,576387,Noah,Manhattan,Nolita,40.7219,-73.99669,Entire home/apt,200,5,5,2016-10-17,0.12,1,0 +11526684,Cozy Loft in Flushing,21960625,Erjon,Queens,Flushing,40.75485,-73.82138,Entire home/apt,90,3,1,2016-03-25,0.02,1,0 +11526771,Superb Steps away from Union Square,15152746,Joseph,Manhattan,Gramercy,40.7339,-73.98523,Private room,139,1,0,,,1,0 +11528951,Spacious duplex in townhouse.,1141610,Maria,Brooklyn,Crown Heights,40.67578,-73.92731,Entire home/apt,250,7,0,,,1,0 +11529142,Colorfull apart in NY.,149430,Tida,Manhattan,East Harlem,40.78687,-73.94542,Entire home/apt,120,5,35,2019-07-01,1.27,2,303 +11529406,"Cozy 1 Bedroom in Bay Ridge, NYC",14406362,Melissa,Brooklyn,Bay Ridge,40.62637,-74.02989,Entire home/apt,100,4,2,2017-10-23,0.09,1,0 +11529467,"Comfy, Convenient and a Balcony!",60802539,Hannah,Brooklyn,Crown Heights,40.67509,-73.9572,Entire home/apt,133,2,0,,,1,0 +11530901,Modern Condo in Heart of Harlem,42535703,Fma,Manhattan,East Harlem,40.79922,-73.94677,Private room,120,3,0,,,2,0 +11531130,Prime Williamsburg 2 Balcony & Roof,740029,Emily,Brooklyn,Williamsburg,40.70997,-73.9647,Entire home/apt,100,1,1,2016-03-13,0.02,1,0 +11531154,Beautiful Apartment in Chelsea,27906470,Robin,Manhattan,Chelsea,40.74161,-74.00162,Private room,70,1,0,,,1,0 +11531322,"Cheerful, large 3BR w/ yard! Perfect for families!",60817772,Robina,Brooklyn,Sunset Park,40.66052,-73.9939,Entire home/apt,200,4,1,2016-08-12,0.03,1,0 +11531744,Charming Upper East Side priv. room + private bath,420399,Gautam,Manhattan,Upper East Side,40.76973,-73.9566,Private room,89,5,16,2019-06-29,0.40,2,80 +11532023,In the Heart of Williamsburg,60821050,Ashley,Brooklyn,Williamsburg,40.72005,-73.95677,Private room,75,1,1,2016-03-30,0.03,1,0 +11532518,1 Bedroom Apt East Village/USQ,24319977,Charles,Manhattan,East Village,40.72895,-73.98558,Entire home/apt,200,1,0,,,1,0 +11534035,Room - Manhattan! Walking distance to Central Park,11670284,Val,Manhattan,Upper East Side,40.76991,-73.95145,Private room,90,1,38,2019-06-08,0.95,2,361 +11535506,Bright bedroom in Soho / roof access,7539044,Vinciane,Manhattan,SoHo,40.72705,-74.00314,Private room,190,2,53,2019-04-08,1.42,2,38 +11542467,Manhattan Gem-Space & Convenience,52203920,Jennifer,Manhattan,Washington Heights,40.8348,-73.94067,Entire home/apt,150,2,119,2019-06-30,2.95,1,300 +11543453,Hudson COLUMBIA PRESBYTERIAN MED CTR * Studio Apt*,25237492,Juliana,Manhattan,Washington Heights,40.84077,-73.93924,Entire home/apt,85,30,6,2018-11-10,0.17,34,311 +11544438,Clean Room in Prime Hip LES,35664937,Zachary,Manhattan,Lower East Side,40.71713,-73.98906,Private room,65,1,14,2016-10-01,0.35,1,0 +11544577,COLUMBIA PRESBYTERIAN MED CTR *1 Bedroom* Apt,25237492,Juliana,Manhattan,Washington Heights,40.84098,-73.94085,Entire home/apt,110,30,7,2018-12-01,0.18,34,252 +11544648,Sofa bed for FEMALE only on the Lower East Side,60915621,Lynn,Manhattan,Chinatown,40.71556,-73.99209,Shared room,70,1,88,2019-06-29,5.44,1,55 +11545797,Cozy room with queen bed in 4b,8167445,Pedro,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94242,Private room,55,3,10,2017-11-10,0.25,1,0 +11546462,Midtown East Master Bedroom,44357881,Lauren,Manhattan,Midtown,40.74512,-73.98176,Private room,75,1,0,,,1,0 +11546806,Bright Midtown Apartment,13125944,Calvin,Manhattan,Hell's Kitchen,40.7653,-73.98825,Private room,59,1,1,2016-03-19,0.02,2,0 +11547077,Beautiful with private terrace,8200984,Emilie,Brooklyn,Park Slope,40.67764,-73.97835,Entire home/apt,200,3,4,2018-01-02,0.10,1,0 +11547246,"Large, sunny room - Lower East Side",22551065,Tamir,Manhattan,Lower East Side,40.71931,-73.98393,Private room,85,5,1,2016-05-16,0.03,1,0 +11547352,Modern Bushwick rm perf for 1 or 2!,36625256,Allison,Brooklyn,Bushwick,40.70273,-73.91565,Private room,85,1,0,,,1,0 +11548744,Sunny 2BR Railroad Apt. in LIC,55601638,Sarah,Queens,Long Island City,40.74493,-73.9537,Entire home/apt,158,1,1,2016-07-10,0.03,1,0 +11549676,Spacious Room w private bathroom,27751504,Liz,Brooklyn,Kensington,40.63974,-73.97439,Private room,35,14,2,2018-04-30,0.06,1,0 +11549838,Rustic charm in BKLYN // QUEEN Bed!,697442,Chris And Zach,Brooklyn,East Flatbush,40.64885,-73.94681,Private room,57,1,206,2019-07-07,5.20,3,89 +11552389,Great Studio nearby Times Square!,18002193,Jay,Manhattan,Hell's Kitchen,40.76035,-73.99052,Entire home/apt,138,1,20,2019-07-04,0.50,1,265 +11552402,Comfy NYC Studio 15 Min. To Midtown,60990988,Terrence,Manhattan,Harlem,40.81032,-73.95415,Entire home/apt,90,2,198,2019-06-19,4.87,1,39 +11553357,Brick House: Unique Garden Apartment! King Bed!,3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68174,-73.91365,Entire home/apt,125,2,40,2019-07-01,0.99,3,354 +11553360,King 7,42619297,John,Brooklyn,Fort Greene,40.69413,-73.9723,Entire home/apt,999,2,94,2019-06-02,2.85,2,361 +11553426,Luxury Apt Steps from Central Park!,39226206,Rae,Manhattan,East Harlem,40.79504,-73.94584,Entire home/apt,225,2,4,2016-06-05,0.10,1,0 +11553543,Cozy Room Astoria,26138712,,Queens,Ditmars Steinway,40.77587,-73.91775,Private room,45,1,5,2017-01-01,0.13,1,0 +11553765,"Room in Chic, Cozy Chinatown Loft",10558652,Teddy,Manhattan,Chinatown,40.71351,-73.99692,Private room,150,5,37,2019-04-06,0.91,2,0 +11553908,Comfy 1 bedroom Upper East Side Apartment (82/2nd),61003876,Darren,Manhattan,Upper East Side,40.77505,-73.95357,Entire home/apt,150,1,3,2018-03-19,0.10,1,0 +11554224,Upper West Side 1BD with terrace,56043282,Emily,Manhattan,Upper West Side,40.77872,-73.98025,Entire home/apt,140,1,8,2017-07-01,0.20,1,0 +11554255,❤️PRIVATE ROOM❤️ Female guest only,60126047,Renuca,Queens,Jamaica,40.67667,-73.79829,Private room,40,3,11,2017-10-15,0.33,1,318 +11557387,EAST RIVER VIEW~HIRISE STUDIO,2856748,Ruchi,Manhattan,Midtown,40.75453,-73.96473,Entire home/apt,205,30,0,,,49,364 +11558167,LUXURY MURRAY HILL STUDIOS/GYM/DECK,2856748,Ruchi,Manhattan,Murray Hill,40.7471,-73.97263,Entire home/apt,190,30,0,,,49,364 +11563821,Private bedroom located in the heart of Chelsea,10307134,Anna,Manhattan,Chelsea,40.74118,-74.00012,Private room,110,1,48,2019-06-16,1.80,2,67 +11564373,2 Bedroom 10 Minutes from JFK Airport 2nd Floor,52997121,Iwona,Queens,Jamaica,40.6756,-73.78244,Entire home/apt,150,1,257,2019-06-30,7.38,4,80 +11564448,Cozy upper east side studio,33856311,Brooke,Manhattan,Upper East Side,40.76769,-73.95616,Entire home/apt,100,1,0,,,1,0 +11564960,1BR Walkup on Upper East Side,61088024,John,Manhattan,Upper East Side,40.77697,-73.95372,Entire home/apt,75,1,0,,,1,0 +11565841,Artsy Bsmnt Apt in Bklyn Brownstone,60687546,Dan,Brooklyn,Prospect-Lefferts Gardens,40.66258,-73.95205,Entire home/apt,115,2,44,2019-06-21,1.11,2,126 +11566601,Book filled nook,61099962,Rhianna,Brooklyn,Prospect Heights,40.67525,-73.96418,Private room,50,1,0,,,1,0 +11567121,Spacious West Village Studio Apt,11523568,Kate,Manhattan,West Village,40.72983,-74.00557,Entire home/apt,190,1,25,2018-11-25,0.67,1,158 +11567179,"Bright, sunny quite room Bushwick",10929225,Louise,Queens,Ridgewood,40.71112,-73.91932,Private room,60,2,2,2016-08-24,0.05,1,0 +11567796,Great Apartment in Midtown New York,48024019,Andrea,Manhattan,Midtown,40.74644,-73.98389,Entire home/apt,200,1,0,,,1,0 +11567815,"Bright, Modern, Spacious Duplex Apt",1253313,Gabriel,Queens,Astoria,40.76964,-73.92117,Entire home/apt,90,2,28,2018-12-31,0.70,1,0 +11568026,Beautiful Tribeca Loft,5333348,Francesco & Olivia,Manhattan,Tribeca,40.71526,-74.01044,Entire home/apt,500,3,0,,,1,0 +11569227,Beautiful Modern Studio in Bushwick,1432593,Val,Brooklyn,Bushwick,40.70024,-73.92055,Entire home/apt,115,3,33,2019-07-03,0.89,1,20 +11569560,Midtown East Alcove Studio,55504410,Vanita,Manhattan,Murray Hill,40.74969,-73.97298,Entire home/apt,140,5,0,,,1,0 +11571180,Beautiful East Harlem Apartment,48202082,Ian,Manhattan,East Harlem,40.80147,-73.93706,Private room,50,30,0,,,1,345 +11573269,"SUNNY STUDIO - 23rd FLOOR, DOORMAN",11764237,David,Manhattan,Kips Bay,40.74342,-73.97505,Entire home/apt,135,1,1,2016-04-04,0.03,1,0 +11573292,Cool East Village apt,59493714,Mirinda,Manhattan,East Village,40.72367,-73.98401,Private room,109,3,0,,,1,0 +11573695,Sunny Huge Bedroom in Brownstone,7041668,Karen,Brooklyn,Crown Heights,40.67075,-73.9447,Private room,60,1,0,,,1,0 +11574674,"Bright 2 bedroom aparment, Bushwick",61175876,Raquel,Brooklyn,Bushwick,40.69531,-73.92248,Entire home/apt,148,5,77,2019-06-30,1.96,2,275 +11574785,"Queen bed & Air Conditioning, views of Chatham Sq",3867,Luke,Manhattan,Chinatown,40.7138,-73.99758,Private room,95,1,80,2019-07-02,2.00,2,49 +11575073,Warm and Cozy Room in Hip Iconic Brooklyn!!!,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94266,Private room,50,1,192,2019-05-30,4.72,4,189 +11575101,Private studio apartment,61175876,Raquel,Brooklyn,Bushwick,40.69549,-73.92249,Entire home/apt,79,4,97,2019-07-01,2.42,2,250 +11580884,Cozy Artists Bushwick Loft!,59075666,Das,Brooklyn,Williamsburg,40.70395,-73.93367,Private room,50,6,11,2018-09-07,0.27,1,0 +11581420,Nice apartment 4 Springbreak in NY,61229318,Hector,Manhattan,Morningside Heights,40.81045,-73.95961,Private room,40,3,1,2016-03-23,0.02,1,0 +11581737,1 Bedroom apt - near Central Park,196298,Hiershenee B.,Manhattan,Upper West Side,40.78638,-73.97004,Entire home/apt,101,30,10,2019-01-08,0.40,1,0 +11582123,Oasis in old WorldBrooklyn,130023,Lloyd,Brooklyn,Bedford-Stuyvesant,40.68165,-73.93267,Entire home/apt,135,5,63,2019-06-11,1.60,2,281 +11583439,Private room in Midtown East Manhat,5466759,Johann,Manhattan,Midtown,40.75438,-73.96576,Private room,99,4,0,,,1,0 +11584288,1 Bedroom in Modern Williamsburg Duplex,61252195,Matthew,Brooklyn,Williamsburg,40.71308,-73.94077,Private room,95,1,0,,,1,0 +11584340,Super Cute and Sunny Studio,10563705,Hailey,Manhattan,Washington Heights,40.85043,-73.936,Entire home/apt,110,4,0,,,1,0 +11587722,Central Park Dreams,5099080,Bridget,Manhattan,Upper West Side,40.79795,-73.96156,Entire home/apt,299,4,7,2017-09-15,0.19,1,0 +11587779,Upper West Side- 1 room in 3bed apt,27125291,Arthur,Manhattan,Upper West Side,40.79908,-73.96141,Private room,79,1,4,2017-05-21,0.10,1,0 +11587997,"Quiet, Clean, Lit @ Lower East Side",40470433,Hana,Manhattan,Lower East Side,40.71303,-73.98645,Private room,52,1,0,,,1,0 +11588003,Charming Prewar Upper West Side Apt,4732500,Daniel,Manhattan,Upper West Side,40.79828,-73.97166,Entire home/apt,95,1,0,,,1,0 +11589391,"Beautiful, light filled, spacious",17862696,Shahla,Brooklyn,Gowanus,40.6717,-73.99247,Entire home/apt,295,4,2,2017-04-30,0.07,1,326 +11589713,Williamsburg Loft,15524268,Joseph,Brooklyn,Williamsburg,40.71117,-73.95197,Private room,65,1,0,,,1,0 +11589895,Park Avenue Studio Suite,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74596,-73.98195,Entire home/apt,110,30,4,2018-04-02,0.14,31,126 +11590055,Park Avenue 3 Bedroom Apartment,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.7455,-73.98112,Entire home/apt,215,30,2,2017-02-19,0.06,31,125 +11591118,"Bay RIdge, Brooklyn NY",49413208,Sotira,Brooklyn,Fort Hamilton,40.61731,-74.0344,Entire home/apt,100,15,3,2018-08-27,0.14,2,365 +11591276,Condo w/ Balcony UES nr Lex subway,23387829,Auroni,Manhattan,Upper East Side,40.76105,-73.96222,Entire home/apt,450,1,0,,,1,0 +11591364,"Heart of Williamsburg, Floor thru!",2487433,Octavio,Brooklyn,Williamsburg,40.71826,-73.95795,Entire home/apt,95,30,11,2019-06-11,0.28,1,32 +11591798,3rd Floor 3br Timeless Brooklyn Apt,51528392,Kevin,Brooklyn,Crown Heights,40.67169,-73.94612,Entire home/apt,140,4,130,2019-07-01,3.23,1,30 +11593365,Historic Central Chinatown Apt,10703999,Evan,Manhattan,Chinatown,40.71469,-73.9995,Entire home/apt,220,4,0,,,1,0 +11595172,LUXURY 2 BR 2 BATH -WASHER/DRYER/DOORMAN-E 52nd ST,2856748,Ruchi,Manhattan,Midtown,40.75615,-73.9649,Entire home/apt,355,30,0,,,49,364 +11595739,CHIC STUDIOS ON E 54TH~PRIME LOCATION~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75505,-73.96484,Entire home/apt,185,30,0,,,49,364 +11596767,CITY VIEWS & BALCONY~GORGEOUS 2BR IN MURRAY HILL,2856748,Ruchi,Manhattan,Murray Hill,40.74754,-73.97199,Entire home/apt,297,30,1,2016-06-30,0.03,49,311 +11602050,Museum Mile 1 BR - Madison Ave,61391963,Corporate Housing,Manhattan,Upper East Side,40.78465,-73.95735,Entire home/apt,133,30,7,2019-01-19,0.22,91,311 +11602485,Private Room in mid town west,39123185,Eva,Manhattan,Hell's Kitchen,40.76714,-73.99229,Private room,100,1,0,,,1,0 +11602574,Elegant 2 Bedroom with light & amenities!,16899697,Martín,Manhattan,Lower East Side,40.71854,-73.98362,Private room,250,2,2,2017-01-02,0.07,1,0 +11603201,"1 bedroom in Astoria, Queens",7982432,Joe,Queens,Long Island City,40.76485,-73.93959,Private room,65,1,1,2016-04-18,0.03,1,0 +11603743,Chic Room with Exposed Brick,13031745,Madeline,Brooklyn,Williamsburg,40.70878,-73.94071,Private room,50,3,3,2018-07-01,0.07,3,0 +11603913,Doorman Gym Roofdeck Design 5129,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7906,-73.97267,Entire home/apt,135,30,2,2019-03-18,0.06,96,313 +11604307,Great Room in Sunny Apt in Brooklyn,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.68023,-73.93586,Private room,80,2,77,2019-06-08,1.91,3,12 +11604885,LARGE Loft,28369674,Ramond,Brooklyn,Williamsburg,40.70357,-73.93444,Private room,69,3,66,2019-07-02,1.90,2,91 +11605693,Noir Apartment in Chinatown - Private Room,61420312,Jay,Manhattan,Two Bridges,40.71222,-73.99566,Private room,75,2,25,2019-06-10,1.04,1,271 +11605983,Brownstone living - 1BR in BK,12352188,Jasmin,Brooklyn,Boerum Hill,40.68792,-73.98999,Entire home/apt,125,5,8,2017-07-10,0.20,1,0 +11609108,Luxurious SOHO 1 Bedroom,61391963,Corporate Housing,Manhattan,Little Italy,40.71885,-73.99572,Entire home/apt,142,30,6,2019-03-13,0.15,91,342 +11609114,Studio APT Murray Hill (Gramercy),50556696,Jeremy,Manhattan,Kips Bay,40.74296,-73.97771,Entire home/apt,200,1,0,,,1,0 +11610515,Opening my space while I travel,19479273,Ryan,Brooklyn,Bushwick,40.69019,-73.91574,Private room,45,1,0,,,1,0 +11611298,Gramercy Garden Terrace,56372211,Gordon,Manhattan,Gramercy,40.73737,-73.97995,Private room,97,3,120,2019-07-01,3.04,1,18 +11611809,2BR MODERN APT CONVENIENT LOCATION,1143620,Kris,Manhattan,Murray Hill,40.74742,-73.97724,Entire home/apt,229,3,1,2016-03-23,0.02,1,0 +11617815,True NY Living- Times SQ 1 BR Apt,1265437,Niket,Manhattan,Hell's Kitchen,40.75573,-73.99228,Entire home/apt,175,1,57,2019-06-23,1.41,1,273 +11618338,Beautiful new apt in Williamsburg,4829797,Chris,Brooklyn,Williamsburg,40.70589,-73.94749,Private room,63,7,1,2016-03-18,0.02,1,0 +11618854,Walking distance to LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77107,-73.87559,Private room,45,1,412,2019-07-01,10.19,5,159 +11619745,Hells Kitchen 3 Bedroom,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76406,-73.991,Entire home/apt,185,30,3,2018-11-30,0.08,91,0 +11619832,Luxury One Bedroom in Manhattan,51446803,Jibari,Manhattan,Harlem,40.83122,-73.94475,Shared room,50,1,67,2019-07-06,1.65,1,216 +11619987,Luxurious SOHO 2 Bedroom,61391963,Corporate Housing,Manhattan,Little Italy,40.71957,-73.99573,Entire home/apt,175,30,3,2018-07-31,0.16,91,161 +11620062,Brand New Luxurious 1 BR - Outdoor Space,61391963,Corporate Housing,Manhattan,Kips Bay,40.74053,-73.97906,Entire home/apt,133,30,7,2019-04-15,0.20,91,312 +11620118,Amazing view from a private roof!,55468128,Reina,Brooklyn,Windsor Terrace,40.65959,-73.98222,Private room,62,1,208,2019-07-04,5.28,7,260 +11620821,Great! Private Room in Sunnyside,58234433,Martin,Queens,Sunnyside,40.7364,-73.91923,Private room,90,1,36,2019-06-13,0.99,8,346 +11624287,Best Neighborhood in Brooklyn!,23607758,Stefan,Brooklyn,Cobble Hill,40.68874,-73.99525,Private room,99,2,46,2019-06-22,1.15,1,66 +11624421,Prvt Bedroom in Brooklyn Brownstone,20114391,Lisa,Brooklyn,Fort Greene,40.68465,-73.97069,Private room,61,60,2,2018-08-21,0.09,2,43 +11624694,Newly Furnished 1BD Near Train!,2666654,Frankie,Queens,Ditmars Steinway,40.77536,-73.90781,Entire home/apt,120,1,268,2019-06-29,6.78,1,139 +11625684,Astoria Suite - 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.77123,-73.90932,Private room,100,1,107,2019-06-09,2.67,5,32 +11627123,Warm and cozy,43128266,常春,Manhattan,Washington Heights,40.83463,-73.94,Shared room,32,1,32,2018-11-15,0.83,3,332 +11627443,Upper East Side cozy private room,61601216,Sara,Manhattan,Upper East Side,40.7687,-73.95705,Private room,80,2,11,2017-04-17,0.31,1,0 +11632924,Spacious One Bedroom Apartment,4383413,Alanna,Brooklyn,East Flatbush,40.64583,-73.94693,Entire home/apt,90,3,5,2017-01-02,0.14,1,0 +11633801,Prospect Heights Three Bedroom,28808966,Christopher,Brooklyn,Crown Heights,40.67815,-73.96232,Entire home/apt,180,1,0,,,1,0 +11634575,"Sunny, enchanting, spacious bedroom",61382075,Elena,Manhattan,Washington Heights,40.84398,-73.94064,Private room,65,4,2,2017-05-22,0.05,2,0 +11634797,Fully furniture huge room in great apt,4187747,Carmel,Bronx,Riverdale,40.9008,-73.90639,Private room,49,6,2,2017-01-01,0.05,1,340 +11635717,"Luxurious, sunny 2-bedroom apt.",61382075,Elena,Manhattan,Washington Heights,40.84326,-73.93901,Entire home/apt,100,14,1,2016-05-23,0.03,2,0 +11636784,Spacious Art Duplex: 4 Full Beds + 3 BR + 3 Bath,22686950,Emily & Joseph,Brooklyn,Bushwick,40.69868,-73.93518,Entire home/apt,380,3,75,2019-06-17,1.94,1,290 +11637578,Spacious and sunny room for rent,61684714,Grace,Manhattan,Washington Heights,40.84248,-73.93849,Private room,26,7,0,,,1,0 +11638302,Washington Heights 1 bedroom,524597,Anjela,Manhattan,Washington Heights,40.8481,-73.93585,Entire home/apt,100,3,2,2017-01-01,0.06,1,0 +11638339,Sunny bedroom with amazing view in East Village,1547578,Luc,Manhattan,East Village,40.72868,-73.98635,Private room,90,15,1,2017-04-20,0.04,1,0 +11639083,The Heart of Lower East Side,25141383,Azeez,Manhattan,Lower East Side,40.71936,-73.98878,Private room,89,2,0,,,1,0 +11639297,Modern New Condo 20 minutes to upper west side,61699814,Shanthi,Bronx,Kingsbridge,40.8787,-73.90098,Private room,35,30,7,2019-06-08,0.49,2,155 +11639940,Peaceful + Sunny Greenpoint Room,2375701,Paul,Brooklyn,Greenpoint,40.7307,-73.95568,Private room,66,1,1,2016-03-12,0.02,1,0 +11640318,"Executive Room Central Park-Comfort,Classy-Midtown",1709718,Victoria,Manhattan,Midtown,40.76453,-73.97769,Private room,285,1,32,2019-01-02,1.39,2,365 +11640637,Riverside Single Room near Columbia,34220831,Yilin,Manhattan,Morningside Heights,40.81377,-73.96166,Private room,46,1,2,2016-07-29,0.05,1,0 +11641258,Classic Loft in Gramercy/Flatiron - Amazing Value,61719199,Sameer,Manhattan,Flatiron District,40.73955,-73.98568,Entire home/apt,275,2,4,2018-01-01,0.10,1,0 +11646497,Spacious Room in Stuyvesant Heights,21480710,Theodore,Brooklyn,Bedford-Stuyvesant,40.68486,-73.932,Private room,89,1,0,,,2,0 +11649223,"3 Bedroom, family ready, in Harlem",254650,Brandi,Manhattan,Harlem,40.80306,-73.95308,Entire home/apt,250,1,1,2016-04-08,0.03,2,0 +11649232,Modern Garden View Apartment,2483628,Nicoletta,Brooklyn,Williamsburg,40.713,-73.9653,Entire home/apt,200,4,50,2019-06-19,1.24,1,50 +11650429,Spacious 2bd Condo w/ Private Patio,2422648,Sheena,Brooklyn,Prospect Heights,40.68112,-73.96492,Entire home/apt,175,2,15,2018-12-16,0.39,1,4 +11650863,Cozy East Village Home,61800014,Shasta,Manhattan,Lower East Side,40.72093,-73.98493,Entire home/apt,140,1,144,2019-06-23,3.63,1,98 +11651283,Luxurious 2 Bedroom,61391963,Corporate Housing,Manhattan,Upper East Side,40.78126,-73.94655,Entire home/apt,133,30,9,2018-12-21,0.26,91,311 +11651455,Midtown East 2 Bedroom 3 Beds,61391963,Corporate Housing,Manhattan,Midtown,40.75688,-73.96815,Entire home/apt,150,30,9,2019-01-31,0.26,91,206 +11651505,"与众不同,方便停车。值得一试!",61804662,Niki,Queens,Flushing,40.76049,-73.81633,Private room,55,1,126,2019-06-18,3.13,2,180 +11651554,Luxurious SOHO Apartment,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72818,-73.99886,Entire home/apt,142,30,10,2019-05-27,0.25,91,157 +11651929,"Large Sunny 1BR, 1 Block to Subway",3927655,Alexander,Manhattan,Washington Heights,40.83441,-73.93706,Entire home/apt,95,7,1,2016-03-18,0.02,1,0 +11651980,Updated Midtown East 2 Bedroom 3 Beds,61391963,Corporate Housing,Manhattan,Midtown,40.75605,-73.96503,Entire home/apt,165,30,0,,,91,180 +11652262,Sunny Williamsburg 1 Bedroom apt,1479763,Anthony,Brooklyn,Williamsburg,40.71228,-73.94211,Entire home/apt,150,3,7,2018-09-14,0.18,1,0 +11652590,Chic Rooms in Large NYC Apt,26405086,Bill & May,Manhattan,Harlem,40.80069,-73.95341,Private room,99,28,2,2017-05-23,0.07,4,365 +11652872,Executive 1 BR - Elevator & Laundry,61391963,Corporate Housing,Manhattan,Midtown,40.75589,-73.96753,Entire home/apt,133,30,7,2018-07-31,0.21,91,310 +11653081,Mod Home Steps from Prospect Park,282655,Jenna,Brooklyn,Flatbush,40.64841,-73.96969,Entire home/apt,150,3,125,2019-07-01,3.32,3,264 +11653913,spacious 1 BR heart of astoria,10575779,Andrea,Queens,Astoria,40.7588,-73.91762,Entire home/apt,190,2,1,2016-03-26,0.03,1,0 +11654372,Amazing Combo Bedroom/Living Space,6001746,Kevin,Brooklyn,Bushwick,40.70478,-73.92767,Private room,60,21,0,,,1,0 +11655500,Cozy Studio Apt in Prospect Heights,61842904,Catherine,Brooklyn,Crown Heights,40.67727,-73.96251,Entire home/apt,106,7,7,2019-06-20,0.18,3,26 +11656367,Charming Brooklyn Apartment,61851697,Vivienne,Brooklyn,Bedford-Stuyvesant,40.69207,-73.94321,Entire home/apt,165,3,0,,,1,273 +11656396,Designer Williamsburg Apt with Terrace,6392776,Stuart,Brooklyn,Williamsburg,40.71762,-73.94354,Entire home/apt,190,2,181,2019-06-25,4.51,1,229 +11656721,3 bedroom near Park,46502890,Jackie,Queens,Jamaica Estates,40.72191,-73.78207,Private room,750,1,0,,,2,0 +11656750,"Sunny, enormous apt, historic bldg",17548437,Michael,Bronx,Melrose,40.8183,-73.91938,Entire home/apt,150,5,58,2019-07-02,1.45,1,37 +11657285,"Lofty 1 BDR w/huge, private backyard",15835554,Jessica,Brooklyn,Gowanus,40.67553,-73.98533,Entire home/apt,150,2,0,,,1,0 +11657725,Spacious one-bedroom Apartment,61863502,Wei,Manhattan,Upper East Side,40.77933,-73.94862,Entire home/apt,119,5,1,2016-06-19,0.03,1,0 +11657888,Super Comfy Convenient Room in Hip Brooklyn!!!!!,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69165,-73.94345,Private room,62,1,244,2019-05-29,6.02,4,189 +11658950,Huge King Size Room in East Village,21382844,Imran,Manhattan,Gramercy,40.73458,-73.98128,Private room,99,1,5,2017-04-23,0.16,1,0 +11659008,"Safe, comfy convenient",52347885,Nicole,Brooklyn,Flatlands,40.63052,-73.92181,Private room,34,2,91,2019-06-23,3.10,2,78 +11659242,Studio in Vibrant Lower East Side,24856724,George,Manhattan,Lower East Side,40.72005,-73.98911,Entire home/apt,129,4,78,2019-06-15,2.07,1,26 +11659296,Apartment in Williamsburg - Long term lease,49572092,Laura,Brooklyn,Williamsburg,40.71976,-73.94234,Entire home/apt,105,180,10,2017-11-28,0.25,1,1 +11660015,Charming Soho artist studio,8856151,Scott,Manhattan,SoHo,40.72616,-74.00102,Entire home/apt,229,4,0,,,1,0 +11667455,Large pre-war apartment UWS,61938683,Lone,Manhattan,Upper West Side,40.78629,-73.98062,Entire home/apt,350,7,0,,,1,0 +11667910,Great location-Newly updated-great new features,60500199,Valery,Manhattan,Harlem,40.80797,-73.94243,Entire home/apt,205,3,71,2019-06-03,1.76,1,331 +11668469,Rockaway Beach Sunshine Paradise,61945871,Peter,Queens,Rockaway Beach,40.58587,-73.81652,Private room,85,2,15,2019-05-26,0.38,1,330 +11670639,Sunny Apartment with a balcony,61962183,Christopher,Queens,Ditmars Steinway,40.77687,-73.90386,Private room,30,15,0,,,1,0 +11671588,Townhouse 2 BR Central Park West,61391963,Corporate Housing,Manhattan,Upper West Side,40.78833,-73.97026,Entire home/apt,150,30,5,2019-05-31,0.27,91,311 +11672400,BRIGHT Modern Spacious East Village Studio Apt,61972032,Giovanni,Manhattan,Gramercy,40.7318,-73.98322,Entire home/apt,186,2,169,2019-06-24,4.17,1,0 +11672539,Downtown Brooklyn Luxury Building,52794726,Wendi,Brooklyn,Downtown Brooklyn,40.69789,-73.98259,Private room,50,1,0,,,1,0 +11672600,Sunny Brownstone in Park Slope!!!!!,4992559,Drew,Brooklyn,Park Slope,40.67821,-73.97484,Entire home/apt,200,2,12,2016-10-01,0.31,1,0 +11672849,Sunny room along riverside on 66th,57694481,Jillian,Manhattan,Upper West Side,40.7783,-73.98807,Entire home/apt,172,12,13,2019-06-22,0.37,1,34 +11673282,LUX Doorman Gym ! 2 Bedroom5179,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77688,-73.95505,Entire home/apt,250,30,1,2017-04-05,0.04,96,333 +11674309,Executive 1 BR - Washer Dryer,61391963,Corporate Housing,Manhattan,Kips Bay,40.74021,-73.97992,Entire home/apt,133,30,5,2018-03-05,0.15,91,311 +11675095,Beauty Lrg furnished Stu 77 & B'way Bay Windows,26584499,Ofir,Manhattan,Upper West Side,40.7824,-73.98215,Entire home/apt,150,30,4,2018-10-06,0.10,8,220 +11675256,Luxury Apartment with Epic Views,34564001,Mike,Manhattan,Chelsea,40.74866,-73.98986,Entire home/apt,290,2,62,2019-03-06,1.53,1,19 +11675341,1 bdrm Spacious Beautiful Apartment,62001039,Liz,Queens,Forest Hills,40.72227,-73.84173,Entire home/apt,120,2,4,2016-06-05,0.10,1,0 +11675715,Cozy 1 BR Basement Apartment,56714504,Josue,Bronx,City Island,40.85139,-73.78414,Entire home/apt,95,1,227,2019-06-18,5.65,1,16 +11675817,Your Own Studio in Lower East Side,1534857,Sandro,Manhattan,Chinatown,40.71674,-73.98995,Entire home/apt,120,7,1,2016-04-08,0.03,2,0 +11676984,Luxury STUDIO * PVT Entrance * WOW,62014546,Nissim,Manhattan,Upper East Side,40.77654,-73.94904,Entire home/apt,165,1,141,2019-06-23,3.54,1,262 +11677431,Serene and Minimal Room + Studio,3850478,Lili,Brooklyn,Greenpoint,40.72435,-73.94004,Private room,50,1,0,,,1,0 +11677489,1 BR APT LOWER EAST SIDE,8756821,Franco,Manhattan,Chinatown,40.71555,-73.99091,Entire home/apt,180,2,10,2017-10-02,0.25,1,0 +11678327,Sunny loft in Brooklyn,9073820,Lisa,Brooklyn,Bedford-Stuyvesant,40.69144,-73.95891,Private room,38,1,0,,,1,0 +11679675,Huge Brooklyn Studio,61553719,Katrina,Brooklyn,Bedford-Stuyvesant,40.68205,-73.94469,Entire home/apt,85,2,39,2018-11-17,0.98,1,190 +11680027,Charming 1BR Apt in LES Side,13305499,J. Ryan,Manhattan,Lower East Side,40.72025,-73.98372,Entire home/apt,145,2,3,2016-05-08,0.07,1,0 +11684682,Bright sunny room in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.67031,-73.94088,Private room,29,2,142,2019-05-19,3.54,5,0 +11685868,"Modern, Sunlit Apartment w/ Balcony",3792156,Sophia,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95203,Entire home/apt,120,1,6,2016-07-31,0.16,1,0 +11687738,1 Bedroom with Outdoor Space,61391963,Corporate Housing,Manhattan,Upper East Side,40.76087,-73.96217,Entire home/apt,117,30,9,2019-05-31,0.27,91,173 +11689818,Spacious Brooklyn Apartment,22808020,Genevieve,Brooklyn,Bushwick,40.69473,-73.91882,Entire home/apt,70,7,1,2016-08-09,0.03,1,0 +11690836,Extended stay in a great studio,46036778,Elle,Manhattan,Upper East Side,40.75977,-73.95917,Entire home/apt,180,14,0,,,1,0 +11691699,big & bright 2-bedroom by subway,12010675,Beverly,Brooklyn,Sunset Park,40.64997,-74.00347,Entire home/apt,115,2,4,2016-08-10,0.11,1,0 +11693193,*CoZy Private Williamsburg Home*,62130666,Sal,Brooklyn,Williamsburg,40.70998,-73.94854,Entire home/apt,225,2,110,2019-07-07,2.74,1,124 +11695094,Spacious UES 1BR with outdoor deck,45595980,Tny,Manhattan,Upper East Side,40.76798,-73.96755,Entire home/apt,140,30,4,2019-05-06,0.30,12,57 +11695338,Quiet and Modern Haven in NYC,16234492,Denise,Bronx,Soundview,40.82442,-73.86193,Private room,45,2,6,2016-08-07,0.15,1,0 +11696801,Large Private Room in 3 bdr apt-East Village,33214549,Alexandre,Manhattan,East Village,40.72573,-73.98406,Private room,119,1,1,2019-04-29,0.42,5,0 +11697308,Spacious 1 BR Upper East Side,61391963,Corporate Housing,Manhattan,Upper East Side,40.78002,-73.95284,Entire home/apt,125,30,8,2019-05-31,0.23,91,343 +11698352,Room avl from 03/30 to 04/03 in NYC,22769314,Sandra,Brooklyn,Williamsburg,40.71588,-73.95515,Private room,46,1,0,,,1,0 +11699080,Single room in Bushwick w/backyard,1838844,Andrew,Brooklyn,Bushwick,40.70153,-73.9169,Private room,50,1,0,,,1,0 +11700121,Historic Bed Stuy Floorthrough,1640615,Sarah,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93478,Entire home/apt,150,5,1,2016-07-19,0.03,1,0 +11701404,Luxury building studio in UWS,62192916,Anna,Manhattan,Upper West Side,40.77609,-73.98991,Entire home/apt,120,5,20,2019-06-07,0.50,1,34 +11707920,"Brooklyn private bath by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64188,-73.98042,Private room,45,1,108,2019-06-19,2.68,11,23 +11710327,Beautiful Ft. Greene Guest Suite w/ Full Kitchen,62249912,Myra,Brooklyn,Fort Greene,40.6876,-73.97083,Private room,115,28,39,2018-01-01,1.05,1,3 +11712888,Private room available with river view!,412228,Natalie,Manhattan,Upper West Side,40.77889,-73.9878,Private room,95,14,0,,,1,0 +11713899,Modern Exposed Brick Studio,39149459,Daisy,Manhattan,East Village,40.72428,-73.98748,Entire home/apt,110,1,1,2016-05-23,0.03,1,0 +11714137,Charming home in Brooklyn,1486872,Kelly,Brooklyn,Gowanus,40.67061,-73.9904,Entire home/apt,250,7,5,2019-05-17,0.15,2,1 +11714323,100% 5★ Reviews - Big 2-Bed 2-Bath – Central Wburg,10078038,Robert,Brooklyn,Williamsburg,40.71765,-73.95189,Entire home/apt,300,5,46,2019-06-22,1.18,1,29 +11714752,Safe+Artsy+Clean Haven Near Manhattan/LGA!,17156658,Native,Queens,Astoria,40.76207,-73.90852,Private room,45,5,50,2019-06-28,1.27,1,145 +11715256,Luxurious 2 BR - Gramercy,61391963,Corporate Housing,Manhattan,Kips Bay,40.74168,-73.9804,Entire home/apt,159,30,8,2019-03-25,0.37,91,190 +11715392,"Two bedroom, Amazing location #10",3256433,Ira,Manhattan,Lower East Side,40.72223,-73.99189,Entire home/apt,220,30,3,2017-10-13,0.12,7,2 +11715651,Brand New Luxurious 2 BR,61391963,Corporate Housing,Manhattan,Kips Bay,40.74044,-73.98029,Entire home/apt,159,30,3,2018-04-15,0.14,91,312 +11716677,Private East village Studio NO roommates Full bath,23902914,John,Manhattan,East Village,40.73082,-73.98445,Entire home/apt,70,1,144,2019-06-25,3.55,1,49 +11716947,"Plant-filled, sunlit home w/ yard",62298504,Jordan,Brooklyn,Greenpoint,40.7258,-73.9515,Private room,45,7,2,2016-09-08,0.05,1,0 +11718329,Luxury Bright NYC Apartment,41411171,Asem,Manhattan,Upper West Side,40.79469,-73.96575,Private room,40,1,0,,,1,0 +11718547,"Spacious Private Room, lots of character & light",18562674,Belkis,Manhattan,Harlem,40.8284,-73.94461,Private room,81,1,102,2019-06-01,2.70,2,90 +11720001,Private Clean Bright Apt. in Harlem,62320186,Doris,Manhattan,Harlem,40.81327,-73.94628,Entire home/apt,190,2,46,2019-07-01,1.17,1,323 +11720130,Luxurious 1BR Apt (Times Square),59625377,Bryan,Manhattan,Hell's Kitchen,40.75705,-73.99265,Entire home/apt,225,5,24,2019-06-25,0.96,1,42 +11721727,Spacious Room near CUMC Campus,62335395,Franchesca,Manhattan,Washington Heights,40.85029,-73.93645,Shared room,360,1,0,,,1,0 +11724873,Hell's Kitchen Hideaway,62359474,Brandon,Manhattan,Hell's Kitchen,40.75926,-73.99304,Entire home/apt,125,2,104,2019-07-03,2.63,1,5 +11728836,roomy sunny apt in <3 of Astoria,10620222,Rebecca,Queens,Astoria,40.76711,-73.92046,Entire home/apt,95,3,1,2016-03-26,0.03,1,0 +11730376,Creative Sanctuary Studio/1BR,1700752,Iliana,Queens,Elmhurst,40.74297,-73.87508,Entire home/apt,62,2,1,2019-03-29,0.29,1,0 +11730504,Charming Brownstone Garden 1BR Historic Apartment,11292325,Diva,Manhattan,Harlem,40.81613,-73.94622,Entire home/apt,150,30,17,2018-12-15,0.42,1,157 +11732848,Fort Greene Brooklyn mint rowhouse,292522,Jonathan,Brooklyn,Fort Greene,40.69014,-73.97347,Entire home/apt,495,5,10,2019-07-05,0.27,2,21 +11732961,"Small, Cozy 1BD Apartment",5362257,Ron,Manhattan,Harlem,40.8249,-73.94288,Entire home/apt,130,3,74,2019-06-26,1.87,1,16 +11735378,Inspired Space on Troutman,18466740,Ali,Brooklyn,Bushwick,40.69862,-73.93066,Private room,80,5,7,2019-01-04,0.18,1,300 +11737524,Sunny studio in Greenpoint,11544181,Aram,Brooklyn,Greenpoint,40.72522,-73.94124,Private room,89,1,199,2019-06-23,5.07,1,114 +11737916,Sunny Room 1/2 block from MTA,2350014,Laine,Brooklyn,Crown Heights,40.67073,-73.95021,Private room,55,1,0,,,1,0 +11738831,Spacious 1 BDRM near Central Park,25116430,Michael,Manhattan,Upper East Side,40.77559,-73.95263,Entire home/apt,140,1,183,2019-06-05,4.56,1,63 +11738951,Financial District Luxury building,61303786,孙浩,Manhattan,Financial District,40.70666,-74.00597,Private room,60,15,1,2016-05-02,0.03,1,0 +11739071,XL Corporate 1 BR - Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75639,-73.96593,Entire home/apt,142,30,3,2019-05-31,0.19,91,357 +11739168,Updated 1 BR - Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77034,-73.96257,Entire home/apt,125,30,11,2019-04-11,0.32,91,105 +11739698,Elevator 1 BR - Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.75892,-73.98949,Entire home/apt,133,30,7,2019-06-22,0.21,91,281 +11740163,Modern 1 Bdrm Apt off Bedford Ave,1709729,Jill,Brooklyn,Williamsburg,40.72138,-73.95757,Entire home/apt,200,30,45,2018-03-20,1.27,1,310 +11740386,Williamsburg Loft,24458604,Austin,Brooklyn,Williamsburg,40.71813,-73.96464,Entire home/apt,85,5,2,2017-05-02,0.07,1,0 +11741555,Fabulous Entire Townhouse in West Village!,62466366,Stephen,Manhattan,West Village,40.73405,-74.00789,Entire home/apt,625,5,12,2019-06-16,0.47,1,130 +11742647,Your own cozy room in Gramercy,19962052,Thikshan,Manhattan,Gramercy,40.73586,-73.98028,Private room,100,2,33,2019-06-06,0.82,3,44 +11743513,Sweet Brooklyn digs next to Pratt U (Classon Ave),19285185,Joel,Brooklyn,Clinton Hill,40.69388,-73.96201,Entire home/apt,176,5,12,2019-02-07,0.31,1,236 +11745621,5 min walk to Times Square! Sleeps 4!,8208493,Teresa,Manhattan,Hell's Kitchen,40.76235,-73.98872,Entire home/apt,175,1,179,2019-07-07,5.71,1,116 +11750272,"""Off the Beaten Path"" NYC OASIS",25059970,Jeffrey And Anna Rita,Staten Island,Clifton,40.62375,-74.07373,Entire home/apt,75,5,81,2019-06-19,2.04,1,155 +11750766,SWEEPING VIEWS 23d FLR~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75754,-73.96129,Entire home/apt,245,30,0,,,49,334 +11751327,Midtown East Elevator 1 Bedroom,61391963,Corporate Housing,Manhattan,Midtown,40.75387,-73.96744,Entire home/apt,125,30,11,2019-06-01,0.29,91,157 +11751718,Modern 2 BR with high end Finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74128,-73.98039,Entire home/apt,159,30,3,2019-03-01,0.11,91,310 +11751916,Large 2BR apt. steps from Subway,62530335,Adam,Bronx,Concourse,40.8199,-73.9281,Entire home/apt,110,1,0,,,1,0 +11752905,"Midtown East 2 BR, 3 Beds",61391963,Corporate Housing,Manhattan,Midtown,40.75573,-73.96835,Entire home/apt,150,30,7,2018-10-01,0.18,91,188 +11753010,brooklyn rent apartment,62535444,Alex,Brooklyn,Brighton Beach,40.57891,-73.95388,Entire home/apt,99,1,88,2019-06-26,2.22,2,364 +11753116,Luxury Style Space: ideal for short or longterm!,50199714,Dellasie,Brooklyn,Crown Heights,40.672,-73.94247,Private room,49,1,86,2019-06-10,2.16,1,4 +11753760,Gorgeous apartment in Brownstone,62542300,Gary,Brooklyn,South Slope,40.66736,-73.98773,Private room,140,2,141,2019-07-05,3.63,1,268 +11753792,MyrtleWash Townhouse,15423103,Jessica,Brooklyn,Clinton Hill,40.6954,-73.96705,Entire home/apt,200,30,1,2018-08-06,0.09,1,9 +11754084,"Sunny, East Vil 1BR w Rooftop view!",8488826,Julia,Manhattan,East Village,40.72941,-73.98336,Entire home/apt,148,4,5,2017-01-01,0.13,1,0 +11754456,Amazing 2 BR in SOHO,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72815,-74.00111,Entire home/apt,165,30,7,2019-05-14,0.28,91,142 +11755816,Super Comfortable Room for Rent!,41616878,Melissa,Brooklyn,Bushwick,40.69172,-73.9087,Private room,59,20,33,2019-05-04,0.82,4,361 +11755946,Bright Room for Rent Close 2 Train!,41616878,Melissa,Brooklyn,Bushwick,40.6913,-73.90998,Private room,45,30,17,2019-06-08,0.43,4,335 +11756047,Beautiful Room for Rent! L Train!,41616878,Melissa,Brooklyn,Bushwick,40.69164,-73.90968,Private room,45,30,16,2019-03-31,0.43,4,334 +11758988,Your Harlem home away from home,3150538,Sarah,Manhattan,Harlem,40.82066,-73.95259,Entire home/apt,225,3,25,2019-01-01,0.63,1,0 +11760308,Cozy Bedroom for 2 in E Harlem,62588398,Daniel,Manhattan,East Harlem,40.79945,-73.9346,Private room,70,3,54,2019-04-23,1.36,1,40 +11767644,2 BEDROOM Apartment - Walk to Train!,62634797,Demetra,Queens,Sunnyside,40.73949,-73.9282,Entire home/apt,95,21,102,2019-01-08,2.90,1,138 +11769558,"Large 2 bedroom apartment, 100% private, Bushwick",62649248,Benjamin,Brooklyn,Bushwick,40.70663,-73.9175,Entire home/apt,100,30,28,2019-04-26,0.81,2,87 +11769741,Bright and spacious room with mini-kitchen,17638424,Sophie,Queens,Elmhurst,40.74517,-73.87496,Private room,59,1,75,2019-04-07,1.87,8,106 +11771598,Quiet and Sunny room in Harlem!,36830075,Camila,Manhattan,Harlem,40.82884,-73.94868,Private room,50,1,0,,,2,0 +11774815,Upper East Side Prewar,62685348,Karen,Manhattan,Upper East Side,40.77815,-73.96158,Entire home/apt,400,1,0,,,1,0 +11775127,Charming & Sunny 1BR @ East Village,15265556,Or,Manhattan,East Village,40.72547,-73.98717,Entire home/apt,100,1,3,2016-03-15,0.07,1,0 +11775347,"Beautiful ""pop-art"" studio near Times Square !",60081723,Antoine,Manhattan,Hell's Kitchen,40.76226,-73.99285,Entire home/apt,199,3,157,2019-07-07,3.95,2,215 +11775483,Sunny little Nook in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.66898,-73.94209,Private room,35,3,165,2019-04-10,4.09,5,272 +11775601,"Spacious bedroom, in Crown heights",15495404,Melanie,Brooklyn,Crown Heights,40.67091,-73.93247,Private room,65,5,0,,,1,0 +11776880,Minimalist 1-BD close to subway,6598000,Adetutu,Brooklyn,Prospect-Lefferts Gardens,40.66156,-73.94882,Entire home/apt,95,3,9,2017-04-15,0.23,1,0 +11778761,Rose: Warm STG Welcome Yankees!,13750728,Gayle,Bronx,Longwood,40.81778,-73.90858,Private room,60,2,63,2019-06-24,1.68,4,336 +11782120,Times Square Two Bedroom,40219037,Ziv,Manhattan,Hell's Kitchen,40.76452,-73.99439,Entire home/apt,200,4,107,2019-06-26,2.73,1,203 +11782585,Beautiful Studio in heart of UWS,46778061,Amy,Manhattan,Upper West Side,40.77826,-73.97703,Entire home/apt,200,3,43,2019-06-08,1.08,1,14 +11784410,Beautiful Blue Room in West Harlem,62557719,Leomaris,Manhattan,Harlem,40.83155,-73.94489,Private room,50,7,21,2019-06-26,0.55,3,363 +11786053,Upscale in The Heights,37055110,Teri,Manhattan,Washington Heights,40.84443,-73.94118,Private room,102,2,29,2017-08-11,0.76,1,178 +11786452,Amazing 1 bed in Greenwich Village,46583440,Sophie,Manhattan,Greenwich Village,40.73573,-73.99496,Entire home/apt,152,1,1,2016-04-01,0.03,1,0 +11786930,"Luxury 4-storey, 3br with Media Den",672573,Meg,Brooklyn,Cobble Hill,40.68706,-73.99893,Entire home/apt,490,7,1,2016-07-15,0.03,1,0 +11787290,2BR Penthouse Aprtmt on Park Avenue,29244447,Sohit,Manhattan,Murray Hill,40.74773,-73.98079,Entire home/apt,250,1,1,2016-03-20,0.02,1,0 +11788559,Huge townhouse near Central Park!,4284154,Jennifer,Manhattan,Harlem,40.8014,-73.95469,Entire home/apt,450,7,6,2018-08-18,0.17,2,229 +11790047,Prospect Park - Quiet 2 Room Studio,62787599,Ro,Brooklyn,Prospect-Lefferts Gardens,40.65799,-73.94924,Entire home/apt,98,4,15,2019-05-05,0.49,2,341 +11790749,"Big, bright apartment by the beach.",46798824,Matt,Brooklyn,Brighton Beach,40.57844,-73.95822,Entire home/apt,199,1,0,,,1,0 +11791225,"Spacious bedroom in Astoria, NY",23269511,Michael,Queens,Astoria,40.76792,-73.91175,Private room,50,5,1,2016-05-27,0.03,1,0 +11791673,Quiet 2 Bedrm w 3 Beds-ProspectPark,62787599,Ro,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.94791,Entire home/apt,109,4,25,2019-04-29,0.65,2,324 +11792006,"Spacious, Sunny Brooklyn 2BR Duplex Apartment",1850179,Tyson,Brooklyn,Bedford-Stuyvesant,40.68265,-73.94466,Entire home/apt,145,4,18,2019-01-01,0.49,1,0 +11793542,Room in Apt. near Columbia w/ Views,26271616,Ian,Manhattan,Upper West Side,40.80109,-73.96128,Private room,96,1,0,,,2,0 +11796761,LRG Sunny One Bedroom Garden APT w/ Big Backyard.,1039519,Brian,Brooklyn,Bedford-Stuyvesant,40.68407,-73.9531,Entire home/apt,165,4,5,2018-07-07,0.13,1,0 +11798782,Private Bedroom & Bath- Brooklyn,26865924,Donminique,Brooklyn,Crown Heights,40.67228,-73.93569,Private room,65,1,1,2016-06-13,0.03,1,0 +11799451,Cozy and ideal studio in the middle of Manhattan..,33547829,Hetor,Manhattan,Midtown,40.75561,-73.96424,Entire home/apt,130,2,118,2019-06-02,2.93,1,226 +11800108,"Clean, comfortable and convenient UES Studio",28551360,Kate,Manhattan,Upper East Side,40.78226,-73.95332,Entire home/apt,120,1,11,2016-11-13,0.30,1,0 +11801800,Brooklyn 2 Bedroom Duplex Apartment,62850827,Monzura,Brooklyn,Crown Heights,40.67386,-73.95271,Entire home/apt,165,30,3,2016-10-09,0.09,1,365 +11801942,"Cozy, Clean and Minimal Design in Park Slope",62852022,Stine And Andrew,Brooklyn,South Slope,40.66485,-73.98822,Entire home/apt,200,2,9,2019-05-31,0.24,1,0 +11801984,"Bright, contemporary and best location.",24232061,Tracy,Manhattan,Upper East Side,40.77189,-73.9554,Private room,122,9,12,2018-10-27,0.32,3,160 +11802086,5 rooms in clean apartment /West Harlem,62852828,Latrisha,Manhattan,Harlem,40.82443,-73.95265,Entire home/apt,400,3,2,2018-05-11,0.06,2,88 +11803487,Home 4 Medical Professionals-Brooklyn Hospital,26377263,Stat,Brooklyn,Fort Greene,40.68906,-73.97763,Private room,54,30,0,,,43,361 +11803893,Home 4 Medical Professionals-LIU,26377263,Stat,Brooklyn,Fort Greene,40.69006,-73.98056,Private room,54,30,0,,,43,361 +11804245,Home 4 Medical Professionals-Methodist Hospital,26377263,Stat,Brooklyn,Park Slope,40.66873,-73.97916,Private room,54,30,0,,,43,361 +11812986,Charming Soho Loft,1162642,Emily,Manhattan,Nolita,40.72295,-73.99481,Private room,250,1,2,2016-03-26,0.05,2,0 +11814079,Top floor on historic block,411437,Xela,Manhattan,Harlem,40.81118,-73.94313,Entire home/apt,120,14,9,2017-01-02,0.23,1,0 +11814184,Spacious room - Prime Williamsburg,8697041,Gaspard,Brooklyn,Williamsburg,40.71118,-73.947,Private room,75,1,0,,,2,0 +11816864,Bright Room in Spacious Astoria Apt,62939516,Garth,Queens,Long Island City,40.76079,-73.93215,Private room,65,1,5,2018-01-02,0.13,1,0 +11817212,Spacious sun filled private room.,264366,Neil,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94118,Private room,60,2,0,,,1,0 +11817955,Artist's Loft - South Park Slope,4629474,Jonathan,Brooklyn,Sunset Park,40.66162,-73.99122,Entire home/apt,179,3,0,,,1,0 +11818137,Cozy and spacious studying bedroom,17638424,Sophie,Queens,Elmhurst,40.74624,-73.87376,Private room,43,1,105,2019-06-17,2.61,8,140 +11821598,Quaint West Village Studio,62968595,Bethann,Manhattan,West Village,40.73892,-74.00385,Entire home/apt,130,5,0,,,1,0 +11822193,Small studio/Central Park/Upper West Side,62971703,Mary,Manhattan,Upper West Side,40.78484,-73.97707,Entire home/apt,154,3,78,2019-06-21,1.95,1,17 +11822434,Cozy & Colorful 1 Bedroom Apt in BK,62974212,Elvin,Brooklyn,Bushwick,40.69931,-73.92067,Entire home/apt,135,2,10,2018-10-21,0.26,1,88 +11823125,"Peaceful, cozy and safe condo/apt",62978797,Hasi,Queens,Woodside,40.75631,-73.90199,Private room,86,2,4,2019-01-01,0.15,1,365 +11825152,Modern Comfort in Upscale BK- Steps from Ferry!,19633984,Katlyn,Brooklyn,Columbia St,40.68912,-74.00121,Private room,85,2,61,2018-06-24,1.57,1,0 +11826442,Comfy Sanctuary walk to Laguardia!!,4348515,Olga,Queens,East Elmhurst,40.76969,-73.87912,Entire home/apt,80,3,68,2019-06-20,1.79,1,334 +11826892,Private Room in Gorgeous Loft,50556869,Kristen,Brooklyn,Bedford-Stuyvesant,40.68738,-73.91906,Private room,70,2,2,2017-10-09,0.05,1,0 +11827037,Spacious apt in Prospect Lefferts,63002307,Natalie,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95443,Private room,65,1,0,,,1,0 +11827175,Cozy one bedroom City College,3716130,Nina,Manhattan,Harlem,40.82325,-73.9478,Entire home/apt,100,1,7,2017-01-01,0.18,1,0 +11827224,"2 BR, 24-hour doorman, Gramercy",16058022,Jackie,Manhattan,Gramercy,40.73755,-73.98041,Entire home/apt,130,5,1,2016-04-22,0.03,1,0 +11827451,Cozy 1 Bedroom Apt.. Just like home,63006814,Jamilya,Brooklyn,Crown Heights,40.66429,-73.94994,Entire home/apt,139,2,67,2019-06-28,1.70,1,75 +11829419,1-bedroom in Brooklyn,62915940,Baochen,Brooklyn,Borough Park,40.6311,-74.00445,Private room,35,1,9,2016-08-09,0.24,1,0 +11833497,"August '19 in cozy, bright South Slope 1.5 br",9946550,Andrew,Brooklyn,South Slope,40.66432,-73.98847,Entire home/apt,100,7,1,2016-07-31,0.03,1,0 +11837681,"Private bedroom rental, spacious",44071830,Sharon,Manhattan,East Harlem,40.78583,-73.94316,Private room,60,1,0,,,1,0 +11837962,1 BR heart of Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.7566,-73.96956,Entire home/apt,133,30,7,2018-09-29,0.22,91,127 +11839668,Madison Square Park - Midtown East LUX Sleeps 6,62829649,Galina,Manhattan,Flatiron District,40.74341,-73.9895,Entire home/apt,275,2,136,2019-06-15,3.40,1,170 +11840057,BedRoom in lower East Side,51447330,Nicolas,Manhattan,Lower East Side,40.72049,-73.98821,Private room,112,1,0,,,1,0 +11840404,1 BR High End Renovations & Design,61391963,Corporate Housing,Manhattan,Kips Bay,40.74025,-73.97896,Entire home/apt,142,30,9,2019-06-05,0.36,91,157 +11840545,"2BR in Brooklyn, NY",45526701,Elizabeth,Brooklyn,Crown Heights,40.67237,-73.95172,Entire home/apt,135,2,22,2019-06-28,1.68,1,92 +11841709,"4 Bedroom Apt. Prospect Lefferts Gardens, Bklyn",63097249,Devon,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95081,Entire home/apt,165,1,19,2018-10-21,0.80,1,0 +11841988,Upper West Side Dream Apartment,37809789,Zabrina,Manhattan,Upper West Side,40.77727,-73.98355,Entire home/apt,200,1,0,,,1,0 +11842127,Passover NYC Rental,17980647,Alaethia,Manhattan,Upper West Side,40.79622,-73.96988,Entire home/apt,425,5,0,,,1,0 +11842300,Luxury Entire APT in Manhattan,29936265,Swan,Manhattan,Financial District,40.70544,-74.01616,Entire home/apt,110,1,2,2016-12-22,0.05,1,0 +11842735,"Cozy room available in Bed-Stuy, BK",2384086,Sal,Brooklyn,Bedford-Stuyvesant,40.689,-73.95241,Private room,40,5,0,,,1,0 +11843397,Room 1/2 block from Central Park!,23994508,Erika,Manhattan,East Harlem,40.79533,-73.94764,Private room,70,2,169,2019-06-16,4.27,1,38 +11844556,Beautiful room in West Harlem,62557719,Leomaris,Manhattan,Harlem,40.83039,-73.94532,Private room,65,30,6,2016-11-04,0.16,3,365 +11844776,Vintage NYC apt - Monthly Rates!,3864301,Sen,Queens,Sunnyside,40.74356,-73.91685,Entire home/apt,95,30,3,2018-06-08,0.09,2,357 +11845193,Available 23rd-28th March,13318184,Rebecca,Brooklyn,Williamsburg,40.70523,-73.94072,Private room,100,1,0,,,4,0 +11847204,GREAT APT w BALCONY in BEST AREA,9532490,Alexandra,Manhattan,East Village,40.73065,-73.9886,Entire home/apt,140,2,4,2019-06-09,0.10,3,0 +11850334,New 1BR: Midtown Modern in Manhattan,2682322,Ramy,Manhattan,Kips Bay,40.74381,-73.98016,Entire home/apt,150,2,0,,,1,0 +11850380,Sunny Spacious Sublet near Prospect Park,5245797,Sarah,Brooklyn,Kensington,40.64225,-73.97197,Entire home/apt,115,2,5,2017-04-30,0.13,1,0 +11850782,"Spacious, Artsy Room!",39476438,Rachel,Manhattan,Harlem,40.81616,-73.93885,Private room,74,2,3,2016-07-31,0.08,2,363 +11850900,"STYLISH SPACIOUS WILLIAMSBURG LOFT APT, SLEEPS 4.",63157598,Luca,Brooklyn,Williamsburg,40.70807,-73.94007,Entire home/apt,175,4,6,2019-04-26,0.16,1,157 +11850918,Convenient 2BR/2BA - East Village,14363695,Heda,Manhattan,East Village,40.72852,-73.98064,Entire home/apt,275,5,1,2016-04-19,0.03,1,0 +11851288,"spacious 1BR, 15 min to Manhattan",42308954,Tugce,Queens,Sunnyside,40.74156,-73.91866,Entire home/apt,110,3,6,2017-03-20,0.16,1,0 +11858737,Great Room in the Lower East Side,40068602,Jeremy,Manhattan,East Village,40.72099,-73.97993,Private room,69,1,1,2016-03-23,0.02,1,0 +11859901,Room plus private bath near dumbo,26867230,Kayla,Brooklyn,Downtown Brooklyn,40.69796,-73.98268,Private room,50,1,3,2016-04-01,0.07,2,0 +11861349,Nice BR in Luxury Williamsburg Apt,12440590,Thu Anh,Brooklyn,Williamsburg,40.71079,-73.95428,Private room,85,6,12,2017-11-17,0.30,1,0 +11862941,1 Bedroom Heart of Financial Dist,23914324,Hamza,Manhattan,Financial District,40.71111,-74.00936,Private room,110,2,0,,,1,0 +11863468,Stunning Elevator 1 BR Chelsea,61391963,Corporate Housing,Manhattan,Chelsea,40.74392,-74.00113,Entire home/apt,142,30,7,2019-02-18,0.25,91,316 +11864530,Clean Room in a Renovated Apartment in Manhattan,45859087,Maya,Manhattan,Harlem,40.82403,-73.95379,Private room,75,20,18,2019-03-10,0.67,2,232 +11865398,"Spacious 1 bdrm apt, East Village",43174657,Patricia,Manhattan,East Village,40.73062,-73.98524,Entire home/apt,133,3,3,2017-01-01,0.08,1,0 +11866156,Apt in Heart of Hell's Kichen,988788,Marissa,Manhattan,Hell's Kitchen,40.76362,-73.99033,Private room,79,1,1,2016-04-03,0.03,1,0 +11866301,Beautifully spacious 1 bedroom,63256824,Xavier,Bronx,Norwood,40.87925,-73.88254,Entire home/apt,80,1,2,2016-05-26,0.05,1,0 +11866751,Views of the Hudson NYC Apt.!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76072,-73.99818,Entire home/apt,239,30,2,2017-04-03,0.07,121,365 +11867573,Manhattan beautiful studio.,6544323,Rachel,Manhattan,East Harlem,40.78967,-73.94741,Entire home/apt,100,4,0,,,1,0 +11868050,Amazing spacious 1 BR Park Slope BK,10002513,Ethan,Brooklyn,Park Slope,40.68125,-73.97974,Entire home/apt,159,3,3,2017-04-30,0.08,1,0 +11868110,111 St. Marks Place,63269523,John,Manhattan,East Village,40.72804,-73.98281,Entire home/apt,140,1,1,2016-03-21,0.02,1,0 +11868495,Heart of the West Village!,1633721,Meg,Manhattan,West Village,40.73354,-74.00549,Entire home/apt,250,2,23,2017-01-01,0.58,1,0 +11869400,NYCHaven3: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65146,-73.93966,Entire home/apt,135,1,193,2019-06-23,4.87,4,270 +11871690,Big Brooklyn bedroom near subway/Prospect Park,9361557,Joe,Brooklyn,Prospect-Lefferts Gardens,40.66275,-73.96122,Private room,65,10,94,2017-08-22,2.40,2,0 +11871903,Cozy Bedroom on UWS steps to CPW !!,50032395,Wayne And Yesim,Manhattan,Upper West Side,40.80029,-73.96626,Private room,75,1,1,2016-03-28,0.03,2,188 +11871932,Apt. across from Lincoln Center,63294576,Emily,Manhattan,Upper West Side,40.77248,-73.98108,Entire home/apt,195,1,3,2016-10-23,0.08,1,0 +11872337,"Spacious loft apt, with plenty of light",3803638,Shai,Brooklyn,Bedford-Stuyvesant,40.69178,-73.95917,Entire home/apt,99,3,35,2019-07-01,0.90,1,39 +11873498,Clean Cozy Room in Manhattan,45859087,Maya,Manhattan,Harlem,40.82247,-73.95341,Private room,70,30,25,2019-01-19,0.65,2,187 +11881208,Lavish Studio Apt in Midtown West NYC!,30283594,Kara,Manhattan,Hell's Kitchen,40.76078,-73.99864,Entire home/apt,199,30,0,,,121,365 +11884931,Sunny Room near subway!!,18221107,Darya,Manhattan,Inwood,40.86087,-73.92724,Private room,65,3,36,2018-06-10,0.90,1,249 +11885997,Beautiful loft in DUMBO Brooklyn,17782625,David,Brooklyn,Vinegar Hill,40.70211,-73.98418,Entire home/apt,245,2,3,2017-12-13,0.08,2,0 +11888497,Spacious Bright + Clean Studio Near Central Park,1414412,Jiyoung,Manhattan,Upper East Side,40.77384,-73.95619,Entire home/apt,150,4,17,2019-01-01,0.43,1,26 +11888603,"Lovely, spacious room",35211977,Maria,Brooklyn,Bushwick,40.70578,-73.92375,Private room,55,1,1,2016-03-28,0.03,1,0 +11890279,"Beautiful Flatiron 3 Bedroom, 2 Bath Loft",63407204,C,Manhattan,Flatiron District,40.73987,-73.98982,Entire home/apt,650,5,42,2019-05-24,1.07,1,335 +11890882,Private Room in NYC Apartment,60617592,Ricky,Queens,Astoria,40.76487,-73.91377,Private room,50,1,1,2016-03-24,0.02,1,0 +11891948,Lovely home located by pier,63291733,Carlyne,Brooklyn,Canarsie,40.63672,-73.88814,Entire home/apt,81,2,43,2019-06-29,1.18,1,309 +11892476,Beautiful Artsy 1BD Home,39476438,Rachel,Manhattan,Harlem,40.81487,-73.93937,Entire home/apt,92,5,4,2018-08-28,0.11,2,0 +11893359,"Private Room w/Wifi, Prime Location",20348541,Jessica,Manhattan,West Village,40.73146,-74.00392,Private room,105,1,14,2016-06-28,0.36,1,0 +11894427,Beautiful 2 Bedroom Apt w/ One Bedroom for Rent,10750483,Mark,Manhattan,East Harlem,40.79556,-73.9325,Private room,89,4,1,2019-01-02,0.16,1,365 +11901356,Spacious 5 Bedroom Apt Williamsburg,30733725,Jessie,Brooklyn,Williamsburg,40.71283,-73.95785,Entire home/apt,348,2,1,2016-04-17,0.03,1,0 +11901938,1st Floor Apt in Heart of Brooklyn,3752523,Ari,Brooklyn,Crown Heights,40.66952,-73.94287,Entire home/apt,168,2,63,2019-06-07,1.66,2,344 +11902812,Spacious Bushwick BR; Yard! ~175ft to Subway,40883799,Amos,Brooklyn,Bushwick,40.70518,-73.92165,Private room,65,1,52,2019-06-29,1.70,3,179 +11903561,Rock & Roll Living in the Heart of NYC,3937437,Lisa,Manhattan,East Village,40.72093,-73.97964,Entire home/apt,100,2,0,,,1,0 +11904191,Spacious Harlem Brownstone apartment,63499716,Vanessa,Manhattan,Harlem,40.80678,-73.94976,Entire home/apt,175,4,130,2019-07-03,3.33,1,53 +11904345,PRIVATE GARDEN-LEVEL CITY OASIS!,3577509,Eric,Brooklyn,Bedford-Stuyvesant,40.69175,-73.93504,Entire home/apt,100,4,113,2019-06-25,2.87,2,287 +11905096,Cozy Modern Luxury with Full Balcony,63506844,Andre,Brooklyn,Flatbush,40.63397,-73.9654,Entire home/apt,119,3,121,2019-07-08,3.38,1,280 +11905189,Sunny and Charming BedStuy 1-BR/Studio Apt,4323335,Jamie,Brooklyn,Bedford-Stuyvesant,40.686,-73.94629,Entire home/apt,105,4,22,2019-06-29,0.67,1,11 +11906169,Sunny Apartment in Crown Heights,2103550,Anna,Brooklyn,Crown Heights,40.67765,-73.95432,Entire home/apt,200,1,0,,,1,0 +11909308,SoHo Studio on Spring Street,4392739,René,Manhattan,SoHo,40.72671,-74.01035,Entire home/apt,290,2,69,2019-06-08,1.73,1,99 +11909622,cozy bedroom in BedStuy Brooklyn,35362734,Gregoire,Brooklyn,Bedford-Stuyvesant,40.67958,-73.92509,Private room,62,1,0,,,1,0 +11910257,Cozy Nest 15 Minutes From Midtown,50661711,Cory,Manhattan,Washington Heights,40.83288,-73.94306,Private room,70,1,0,,,1,0 +11910278,Sunny Spacious Crown Heights Studio,174570,Holly,Brooklyn,Crown Heights,40.67807,-73.95913,Entire home/apt,65,4,1,2016-05-22,0.03,1,0 +11910848,Beautiful TriBeCa Apartment,63544192,Annie,Manhattan,Tribeca,40.71893,-74.00485,Private room,60,25,2,2018-07-31,0.05,1,0 +11911783,Modern Upper West Side Luxury!!,9143200,Steven,Manhattan,Upper West Side,40.79466,-73.97173,Entire home/apt,160,3,2,2016-06-13,0.05,1,0 +11912865,CrashPadsUSA for Airline Crew. Nightly HOTBEDS,63560790,A.B.,Queens,Kew Gardens,40.70375,-73.8304,Shared room,45,1,17,2019-05-19,0.72,2,365 +11920660,Brightly Skylit 3 Bedroom Soho Loft,62316222,C E,Manhattan,SoHo,40.72064,-73.99957,Entire home/apt,595,5,51,2019-06-06,1.29,1,347 +11922306,Sunlit bright home.,63623329,Marina,Brooklyn,Crown Heights,40.67832,-73.95128,Private room,60,3,5,2016-10-10,0.13,1,0 +11923007,Trendy & spacious Williamsburg Apt,7640852,Markus,Brooklyn,Williamsburg,40.71178,-73.95779,Private room,95,2,0,,,1,0 +11923881,"Magical Artist Brownstone, Beautiful Colors Room",41099363,Maria,Brooklyn,Fort Greene,40.68762,-73.97516,Private room,150,4,2,2019-04-09,0.18,3,193 +11923955,Big Sunny 1 Bdrm Apt - Midtown NYC,35587586,Platon,Manhattan,Hell's Kitchen,40.76594,-73.9851,Entire home/apt,200,1,0,,,1,0 +11924652,Upper west side luxury building,39111035,Veronica,Manhattan,Upper West Side,40.78079,-73.98826,Private room,160,2,2,2016-08-31,0.06,1,0 +11924694,Artist Apartment in Heart of West Village ❤️,3167887,Sarah,Manhattan,West Village,40.73178,-74.00173,Entire home/apt,300,5,88,2019-06-24,2.32,1,121 +11926941,Cozy 1 bdrm near Prospect Park/BK,4501003,Brooke,Brooklyn,Flatbush,40.64117,-73.96038,Entire home/apt,99,1,3,2016-05-20,0.08,1,0 +11927032,Charming Modern Bed-Stuy Brooklyn Townhouse W/Yard,12986134,Nicole,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91516,Entire home/apt,150,3,0,,,1,334 +11927300,Cosy Room in Ridgewood/Bushwick,4386682,Francesco,Queens,Ridgewood,40.7024,-73.9106,Private room,35,5,7,2019-03-02,0.19,3,0 +11927624,Light filled modern APT in DUMBO,5251483,Sasha,Brooklyn,Vinegar Hill,40.70328,-73.98314,Entire home/apt,170,4,2,2016-07-23,0.05,1,0 +11928097,Sunny room in a 2 bedroom apartment,17737517,Martin,Manhattan,East Harlem,40.80012,-73.94272,Private room,65,1,0,,,1,0 +11928713,Sunny living room and great location in Brooklyn,3274929,Agustin,Brooklyn,Flatbush,40.63549,-73.95817,Shared room,38,3,27,2019-04-24,0.95,1,84 +11929230,Spacious Room in Williamsburg,31919152,Ryan,Brooklyn,Williamsburg,40.70878,-73.94441,Private room,60,7,0,,,1,0 +11933676,Soho PH 2 Bedroom Private Terrace,63702305,Caroline,Manhattan,SoHo,40.72289,-73.9974,Entire home/apt,500,4,72,2019-07-01,1.80,1,330 +11935301,"Spacious, Sunny Room in Park Slope",24253453,Lisah,Brooklyn,Park Slope,40.67549,-73.98057,Private room,85,2,1,2016-06-24,0.03,2,0 +11937647,Entire Williamsburg apt.,12446288,Micki & Kristian,Brooklyn,Williamsburg,40.71541,-73.93748,Entire home/apt,110,3,4,2018-05-30,0.10,1,0 +11939910,Cozy room in Upper East Side,9427555,Leila,Manhattan,East Harlem,40.78825,-73.9487,Private room,60,8,6,2017-06-29,0.16,1,0 +11940117,1BR Bright & Spacious in West Harlem,27488921,Jorge,Manhattan,Harlem,40.80403,-73.95427,Entire home/apt,148,6,44,2019-06-23,1.12,1,280 +11941755,"Stylish, Spacious 1 BR Apt in Heart of Village",63755360,Matt,Manhattan,East Village,40.72548,-73.9857,Entire home/apt,133,2,72,2019-06-24,1.82,1,0 +11943700,Alcove Studio,19586959,Philip,Manhattan,Hell's Kitchen,40.75519,-73.99331,Entire home/apt,160,1,0,,,1,0 +11943846,Spacious Modern Manhattan 2BR,50976547,Young,Manhattan,East Village,40.72175,-73.98088,Entire home/apt,250,3,1,2016-05-02,0.03,1,0 +11944668,10minutes to Manhattan from Astoria,37188098,Ashraful,Queens,Astoria,40.76088,-73.92233,Private room,95,1,13,2016-08-07,0.33,2,183 +11944718,Central Park North- 1 bed Apt to share (female),13509844,Ara,Manhattan,East Harlem,40.79665,-73.94928,Private room,69,7,7,2016-08-14,0.18,1,0 +11946206,Luxurious 1 Bedroom Apt!,2705455,Rei,Queens,Long Island City,40.74284,-73.95755,Entire home/apt,180,6,1,2016-05-20,0.03,1,0 +11947067,Artist's Budget Apartment,63790712,Layla,Manhattan,Harlem,40.80477,-73.95454,Private room,40,2,16,2019-01-04,0.40,2,0 +11948586,Large Bedroom,63800453,Harry,Brooklyn,Flatbush,40.63836,-73.95698,Private room,85,1,6,2017-01-01,0.16,1,0 +11949531,Private room available in 2 bedroom apartment,3630684,Habby,Brooklyn,Bushwick,40.70487,-73.92127,Private room,65,3,11,2019-06-02,0.37,1,0 +11950107,Private Bedroom Near Prospect Park,32306916,Vin,Brooklyn,Crown Heights,40.67324,-73.95157,Private room,55,1,4,2016-05-15,0.10,1,0 +11950302,East Village Couch Crash 9PM-9AM,1212041,Michelle,Manhattan,East Village,40.72982,-73.98823,Shared room,75,1,4,2016-09-15,0.10,2,0 +11959165,Charming 1 BR apartment east of Central Park,13209857,Tania,Manhattan,East Harlem,40.7887,-73.94736,Entire home/apt,125,3,11,2018-08-21,0.28,1,0 +11959854,Affordable Private Cozy Room!,45990565,Alba & Genesis,Bronx,Morris Heights,40.8522,-73.91014,Private room,26,3,21,2019-06-08,0.64,2,127 +11960466,Spacious 1BR Williamsburg Apartment,18994094,Kailei,Brooklyn,Williamsburg,40.71214,-73.95837,Entire home/apt,175,2,28,2019-04-22,0.70,1,0 +11961053,Sunlit Red Hook Pied-à-terre,3752933,Steve,Brooklyn,Red Hook,40.67849,-74.01178,Private room,85,2,66,2019-06-24,4.58,1,59 +11963123,Bright Apartment in Clinton Hill,7306184,Jasper,Brooklyn,Clinton Hill,40.68517,-73.9666,Entire home/apt,179,5,0,,,1,0 +11965263,Huge sunny bedroom in Crown Heights,9028473,Molly,Brooklyn,Crown Heights,40.67265,-73.94674,Private room,75,1,0,,,1,0 +11965862,SUNNY and SPACIOUS room in Brooklyn,63914230,Kay,Brooklyn,Williamsburg,40.7128,-73.9605,Private room,76,5,1,2016-07-12,0.03,1,0 +11966139,Quiet Chelsea One Bedroom,29084038,Stephan And Liz,Manhattan,Chelsea,40.73911,-74.00047,Entire home/apt,225,30,87,2019-06-08,2.17,1,280 +11967737,Beautiful Bedroom on Hudson River/Riverside Park,63928471,David,Manhattan,Harlem,40.83342,-73.94949,Private room,40,1,6,2019-03-22,0.16,1,0 +11968539,Fully Furnished & Sunny UES Studio,22089496,Sara,Manhattan,Upper East Side,40.76053,-73.96181,Entire home/apt,110,2,22,2019-06-02,0.55,1,0 +11968680,Posh Madison Ave Apt,61391963,Corporate Housing,Manhattan,Upper East Side,40.78328,-73.95695,Entire home/apt,117,30,8,2019-04-21,0.25,91,311 +11968958,Beautiful studio,63935825,Marianna,Queens,Ditmars Steinway,40.77872,-73.91396,Entire home/apt,78,1,4,2016-05-28,0.10,1,0 +11969727,Artistic NEW LOFT 4 br/2 bath in Times Sq,63940105,One,Manhattan,Hell's Kitchen,40.76268,-73.99235,Entire home/apt,800,3,59,2019-06-23,1.51,1,263 +11970778,One Bedroom Apartment in Greenpoint!,15817123,Stephanie,Brooklyn,Greenpoint,40.73164,-73.95323,Entire home/apt,65,1,152,2019-06-18,3.80,3,1 +11970867,Modern Clean Studio 2 blocks from Central Park,1410306,Eugene,Manhattan,Upper West Side,40.78592,-73.97447,Entire home/apt,105,1,181,2019-07-06,4.61,1,175 +11971174,Huge room in central Bushwick flat,4411040,Maya,Brooklyn,Bushwick,40.69669,-73.92785,Private room,45,1,3,2016-06-25,0.08,1,0 +11971334,Your cozy and cute space 7 train,17638424,Sophie,Queens,Elmhurst,40.74561,-73.87344,Private room,34,1,89,2019-07-03,2.35,8,164 +11971580,The Heart of west HARLEM-With a European flair,5388411,Timothy,Manhattan,Harlem,40.82776,-73.94701,Entire home/apt,90,3,0,,,1,0 +11972141,Lovely Room in Beautiful Brooklyn,54043278,Marina,Brooklyn,Bedford-Stuyvesant,40.68583,-73.95677,Private room,65,3,0,,,1,0 +11973701,2BR Comfy Apt - 15min from MIDTOWN,15789646,Steven,Queens,Sunnyside,40.74518,-73.91704,Entire home/apt,150,30,7,2019-01-04,0.18,2,338 +11980791,Clean/Elegant HK Apt. w/ Cute Bear,10461612,Devon,Manhattan,Hell's Kitchen,40.76257,-73.98603,Entire home/apt,160,3,20,2017-05-29,0.50,1,0 +11981021,Prime Brand New 1 bed!5206,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74962,-73.97431,Entire home/apt,250,30,2,2019-01-09,0.17,96,337 +11981145,Mysig tvåa på Upper East Side,64027912,Carolin,Manhattan,Upper East Side,40.76955,-73.95002,Entire home/apt,106,1,0,,,1,0 +11981509,COLUMBIA PRESBYTERIAN MED CTR *ARIA* 1 Bedroom Apt,25237492,Juliana,Manhattan,Washington Heights,40.84216,-73.94101,Entire home/apt,95,30,7,2018-02-04,0.19,34,322 +11982174,Large Private Room in Midtown East,46889591,Hatsumi,Manhattan,Upper East Side,40.76272,-73.96269,Private room,69,1,4,2016-05-15,0.10,1,0 +11982791,Bed-Sty Fly,27709477,Jasmine,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94384,Entire home/apt,145,2,100,2019-06-23,2.52,1,296 +11984115,Sunny 1 BR Apt in Bed Stuy,25810,Sasha,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95089,Entire home/apt,75,5,7,2018-08-10,0.18,1,0 +11984762,A cozy place to set your mind free.,59473349,Judy,Brooklyn,East New York,40.67729,-73.87996,Entire home/apt,70,5,37,2019-06-28,1.48,1,263 +11985793,Huge apartment in beautiful Brooklyn Brownstone,9217610,Virginie,Brooklyn,Greenpoint,40.7279,-73.94494,Entire home/apt,225,6,0,,,2,0 +11988251,Cozy & Comfortable Private Bedroom,28121352,Franklin,Queens,Elmhurst,40.74503,-73.87671,Private room,43,2,27,2017-10-31,0.68,1,0 +11989954,Sunny and comfortable Apartment,35253342,Tee,Brooklyn,Fort Hamilton,40.62168,-74.03023,Entire home/apt,121,20,23,2019-04-13,0.60,3,294 +11990841,Private room in Bushwick!,13318184,Rebecca,Brooklyn,Williamsburg,40.70553,-73.94203,Private room,50,1,0,,,4,0 +11991426,"Cozy, quiet, studio apartment",1598283,Anna,Manhattan,East Village,40.73072,-73.99174,Entire home/apt,198,3,31,2019-06-11,0.80,1,57 +11993790,Gorgeous large sunny room in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.6703,-73.94209,Private room,109,2,115,2019-06-30,2.87,5,352 +12000030,"Sunny, Quiet Downtown 1BR Apt - Great location!",42047615,Jonathan & Nancy,Manhattan,Chelsea,40.74069,-74.00069,Entire home/apt,199,30,1,2016-10-31,0.03,2,292 +12000603,Well located apartment near NY City,64170911,Anne,Bronx,Riverdale,40.8883,-73.91665,Entire home/apt,150,2,79,2019-06-30,1.99,1,267 +12000617,Comfortable Bedroom right by express subway!,64170751,Dani,Brooklyn,Crown Heights,40.66759,-73.95187,Private room,49,3,5,2017-04-09,0.13,1,0 +12000676,~Luxury 1 bedroom apt. near Columbus Circle,30283594,Kara,Manhattan,Midtown,40.76528,-73.98175,Entire home/apt,239,30,0,,,121,351 +12000916,Entire Large Park Slope 2BR Apt,6132748,Chip,Brooklyn,Park Slope,40.68224,-73.97785,Entire home/apt,100,1,0,,,1,0 +12001322,NYC Midtown-West Luxury 1BR Apt.,30283594,Kara,Manhattan,Midtown,40.76554,-73.98289,Entire home/apt,239,30,0,,,121,352 +12001638,NYC modern 1 bedroom apt. near Carnegie Hall!,30283594,Kara,Manhattan,Midtown,40.76537,-73.98332,Entire home/apt,239,30,0,,,121,352 +12001650,"Stunning, Waterfront Views! Williamsburg Brooklyn",2295610,Rebecca,Brooklyn,Williamsburg,40.71214,-73.96866,Entire home/apt,170,3,21,2019-06-02,0.53,1,0 +12001854,Luxury 1-Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76573,-73.98295,Entire home/apt,239,30,1,2017-11-22,0.05,121,352 +12001984,Brooklyn / Williamsburg / Cozy Large Private Room,43170685,Koji,Brooklyn,Williamsburg,40.71135,-73.94435,Private room,80,1,1,2016-04-17,0.03,1,0 +12002288,Luxury 1-Bedroom NYC apt. near Rockefeller Center!,30283594,Kara,Manhattan,Midtown,40.76497,-73.98201,Entire home/apt,239,30,0,,,121,351 +12002548,Luxury 1 Bedroom Midtown West Apartment!,30283594,Kara,Manhattan,Midtown,40.76526,-73.9817,Entire home/apt,239,30,0,,,121,352 +12003048,Sleek 1 bedroom apt. near Times Square!,30283594,Kara,Manhattan,Hell's Kitchen,40.76685,-73.98363,Entire home/apt,239,30,0,,,121,352 +12003146,Sunshine Studio near Columbia U,22099204,Cinthia,Manhattan,Upper West Side,40.80229,-73.96719,Entire home/apt,80,1,2,2016-11-23,0.05,1,0 +12003341,Charming Brownstone w/Backyard,4106320,Sachea,Brooklyn,Bedford-Stuyvesant,40.67909,-73.93222,Entire home/apt,140,2,33,2019-06-09,0.87,1,145 +12004174,Studio in the Heart of Gramercy!,21661360,Julie,Manhattan,Gramercy,40.73638,-73.98453,Entire home/apt,240,2,0,,,1,0 +12004175,Private Master Bedroom in Luxury Bu,13340829,Lin,Brooklyn,Crown Heights,40.67543,-73.96312,Private room,60,5,1,2016-08-18,0.03,1,0 +12004547,Prime Central Park West Pied à Terre,44596503,Josh & Jessica,Manhattan,Upper West Side,40.78466,-73.97276,Entire home/apt,200,2,128,2019-06-17,3.31,1,231 +12004744,Spacious Lower Manhattan Apt!,18978289,Julian,Manhattan,Two Bridges,40.71127,-73.99838,Entire home/apt,159,2,3,2017-09-24,0.11,1,0 +12005195,Adorable One Bedroom Apartment w/ Balcony!,15817123,Stephanie,Brooklyn,Greenpoint,40.73203,-73.95263,Entire home/apt,65,1,56,2018-10-27,1.58,3,0 +12005318,Large Private Room in Kips Bay/Murray Hill,5707158,Yuan,Manhattan,Kips Bay,40.74418,-73.97565,Private room,70,3,2,2016-09-29,0.05,2,0 +12005922,Plush 2 Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76647,-73.9829,Entire home/apt,369,30,0,,,121,345 +12005923,Penthouse with PRIVATE ROOFTOP on Upper West Side,36076005,Stephen,Manhattan,Upper West Side,40.77961,-73.98441,Private room,120,3,9,2017-09-25,0.23,1,365 +12006201,High-end bright 1 bedroom apt. in Midtown West,30283594,Kara,Manhattan,Midtown,40.76484,-73.98326,Entire home/apt,239,30,0,,,121,348 +12006770,East Village- The location,14731964,Pete,Manhattan,East Village,40.73273,-73.98667,Private room,125,1,36,2019-07-07,1.40,1,81 +12007258,Spacious One Bedroom with Private Roof,59489089,Molly,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95773,Entire home/apt,200,3,6,2018-07-31,0.15,1,0 +12007456,Nice And Clean Room In East Harlem,63403077,Sebastian,Manhattan,East Harlem,40.79741,-73.93884,Private room,50,29,40,2019-04-30,1.14,2,0 +12009651,GREAT Bright Manhtattan Apartment!,87266,David,Manhattan,Harlem,40.8245,-73.94264,Entire home/apt,120,150,10,2019-05-07,0.46,1,331 +12009685,East Village Apt with Balcony,26806527,Avir,Manhattan,Gramercy,40.73477,-73.98069,Shared room,100,1,0,,,1,0 +12009779,Loft w/ Manhattan skyline view,1534297,Bárbara,Brooklyn,Williamsburg,40.70843,-73.96924,Private room,80,1,2,2016-06-17,0.05,1,0 +12009807,Cozy centrally located LES apt,39856008,Tanya,Manhattan,Lower East Side,40.71869,-73.99141,Entire home/apt,140,1,1,2016-04-17,0.03,1,0 +12015378,Sunset Retreat - Top Floor Oasis,50292584,Haydee,Brooklyn,Sunset Park,40.6423,-74.01275,Entire home/apt,105,2,66,2019-06-09,1.68,2,360 +12017066,Vibrant Crown Heights,51159504,Mariana,Brooklyn,Crown Heights,40.66676,-73.92957,Private room,49,3,3,2018-10-07,0.08,1,365 +12019589,House On Henry Parlor Apartment,11481,Annette,Brooklyn,Carroll Gardens,40.6789,-74.00117,Entire home/apt,180,4,5,2019-05-08,0.13,3,333 +12019843,Full-size loft bed in East Village,14476679,Michael,Manhattan,East Village,40.72659,-73.97848,Private room,70,1,3,2016-06-26,0.08,1,0 +12020835,East Village Oasis,42435983,Mark,Manhattan,East Village,40.72296,-73.98322,Entire home/apt,450,1,45,2019-07-01,1.17,1,287 +12021544,Comfy Bedroom in Crown Heights close to Subway,62345719,Adam,Brooklyn,Crown Heights,40.66734,-73.94232,Private room,44,2,5,2018-06-26,0.38,1,0 +12022098,Charming Park Slope Apartment,8303104,Christen,Brooklyn,South Slope,40.66801,-73.98773,Private room,89,1,102,2019-07-03,2.56,1,269 +12022728,Prime Carroll Gardens Apartment,35027358,Thomas,Brooklyn,Carroll Gardens,40.68268,-73.99687,Entire home/apt,172,2,90,2019-06-30,2.31,1,87 +12022833,Luxury building- 2BR/2BA in Chelsea,438593,SaeHo,Manhattan,Chelsea,40.74391,-73.99582,Entire home/apt,350,1,2,2016-04-17,0.05,2,0 +12025076,I just need to lay my head down,64341665,Nka,Manhattan,Harlem,40.81942,-73.94264,Private room,68,1,49,2019-05-26,1.23,2,365 +12025968,Cozy And Clean Harlem Room,63403077,Sebastian,Manhattan,East Harlem,40.79796,-73.93921,Private room,52,32,57,2019-02-02,1.46,2,39 +12026418,Cozy room in a brand new building !,64355945,Catharina,Queens,Rego Park,40.72526,-73.85973,Private room,70,2,32,2019-07-01,0.81,1,89 +12028322,Charming house in Coney Island,52474491,Arthur,Brooklyn,Sea Gate,40.57804,-74.01024,Entire home/apt,223,1,1,2016-03-28,0.03,3,0 +12028495,Comfortable and Spacious Bedroom,52474491,Arthur,Brooklyn,Sea Gate,40.57857,-74.01012,Private room,71,1,0,,,3,0 +12028733,Comfortable and Spacious Bedroom B,52474491,Arthur,Brooklyn,Sea Gate,40.57774,-74.01022,Private room,97,1,2,2016-03-28,0.05,3,0 +12032987,Room right on Central Park!,20353296,Mia,Manhattan,East Harlem,40.79663,-73.94893,Private room,75,1,5,2016-08-20,0.13,1,0 +12034085,Private Theatre District Bedroom,7695223,David,Manhattan,Hell's Kitchen,40.75857,-73.98942,Private room,65,2,6,2016-12-17,0.16,1,0 +12034640,Comfortable 420 Friendly Room,64411228,Virginia,Brooklyn,Williamsburg,40.70922,-73.95232,Private room,64,1,25,2019-05-13,0.63,1,0 +12037967,Nice Big Room With Backyard.,7913863,Joey,Brooklyn,Williamsburg,40.70766,-73.95216,Private room,59,2,138,2019-06-20,3.63,1,268 +12038181,Modern Artsy Room in BK Near Subway,11028022,Tyrone,Brooklyn,Crown Heights,40.66633,-73.93507,Private room,100,3,0,,,1,0 +12038773,Beautiful Sunny Fire Escape Room,64444742,Sushanti,Brooklyn,Bushwick,40.69305,-73.90825,Private room,60,2,21,2019-06-11,0.53,1,364 +12039579,NY Queens Penthouse = 1MASTER aka Manhattan Room,34861728,Iris,Queens,Kew Gardens,40.70911,-73.8296,Private room,73,9,2,2018-09-10,0.17,4,276 +12039894,NY Queens Penthouse HOME with Patio,34861728,Iris,Queens,Kew Gardens,40.70764,-73.83116,Entire home/apt,219,9,2,2019-01-03,0.22,4,273 +12040331,Lrg 2 BR Duplex Top 2 Flrs Terrace West Village,64454893,Atul,Manhattan,Greenwich Village,40.73426,-73.99476,Entire home/apt,999,3,11,2019-05-04,0.28,1,164 +12050280,On 5th Ave! Easy to shopping,64528384,Eva,Manhattan,Chelsea,40.73844,-73.99262,Private room,150,60,0,,,1,0 +12050885,Your lovely and cozy space 7 train,17638424,Sophie,Queens,Elmhurst,40.74485,-73.87552,Private room,52,1,108,2019-07-07,2.71,8,174 +12050932,Luxury IBR apmt in Crown Heights,64534798,Olivia Loksing,Brooklyn,Crown Heights,40.66505,-73.95213,Entire home/apt,90,2,2,2016-05-14,0.05,1,0 +12051116,1BD Park views UWS,6255163,Tracy,Manhattan,Upper West Side,40.79982,-73.96192,Entire home/apt,150,2,16,2019-06-01,0.42,1,220 +12052143,Stunning Central Park West Location,36306552,Jarett,Manhattan,Upper West Side,40.77713,-73.97758,Entire home/apt,325,1,43,2019-06-21,1.12,1,223 +12052609,Cozy private 1.5BR Garden Apartment w/ backyard,44332076,Amber,Manhattan,Washington Heights,40.84915,-73.93317,Entire home/apt,170,5,24,2019-04-24,1.39,1,121 +12053427,Modern Studio in Middle Village,8896489,Florin,Queens,Maspeth,40.72153,-73.88753,Entire home/apt,79,3,64,2019-06-23,1.60,1,311 +12053637,Forte Green Townhouse Room Rental,8456000,Brian,Brooklyn,Clinton Hill,40.69619,-73.96944,Private room,175,1,17,2019-06-01,1.51,2,179 +12054286,Private Room in Upper West Side,45103252,Ruokun,Manhattan,Upper West Side,40.78807,-73.97406,Private room,75,1,0,,,1,0 +12054516,The Healing Place,39863896,Valerie,Brooklyn,Crown Heights,40.67292,-73.94033,Entire home/apt,120,3,70,2019-06-03,1.79,1,208 +12054723,"Big apartment, comfy - calm bedroom",64561100,Nicolas,Manhattan,Harlem,40.81574,-73.94871,Private room,72,1,98,2019-06-20,2.50,1,204 +12055540,Beautiful Studio Near Prospect Park,64568425,Christine,Brooklyn,Prospect-Lefferts Gardens,40.66099,-73.96083,Entire home/apt,80,1,0,,,1,0 +12056517,Adorable Upper East Side Studio,64576222,Kristin,Manhattan,Upper East Side,40.78115,-73.9466,Entire home/apt,175,4,0,,,1,0 +12056684,Luxury Harlem Apartment,64578817,Bryant,Manhattan,Harlem,40.8097,-73.94256,Entire home/apt,125,5,15,2017-09-04,0.38,1,0 +12063562,Cozy Room,5017724,R,Manhattan,Theater District,40.75827,-73.98825,Private room,200,5,4,2016-10-17,0.10,1,365 +12064283,Luxury Penthouse w/ Roofdecks,64632152,Albert,Manhattan,East Village,40.72399,-73.99109,Entire home/apt,1000,4,19,2019-05-17,0.51,1,349 +12064423,Beautiful private room in Bedstuy,13406868,Andrew,Brooklyn,Bedford-Stuyvesant,40.68464,-73.95002,Private room,45,4,1,2016-05-15,0.03,1,0 +12067652,Charming 1 Bedroom in Chelsea!,3555480,Melissa,Manhattan,Chelsea,40.74507,-73.99452,Entire home/apt,175,7,6,2017-09-09,0.16,1,0 +12069335,Luxury room in 2 bedroom apartment,20161989,Zhenni,Brooklyn,Midwood,40.62462,-73.95508,Private room,89,2,5,2017-10-23,0.13,1,365 +12070965,Downtown style in the Bronx,64678583,Mark,Bronx,Mott Haven,40.8098,-73.92149,Private room,500,10,0,,,1,358 +12070985,"Spacious, Sunny, Happy Studio",41280277,Anna,Manhattan,Washington Heights,40.85496,-73.93406,Entire home/apt,84,2,0,,,1,0 +12071038,"UES area ,Luxury modern quiet private Apt",64676041,Mey,Manhattan,East Harlem,40.78784,-73.94998,Entire home/apt,149,5,88,2019-06-24,2.23,1,326 +12071153,Comfy Bed Stuy 1br with Balcony,2596681,Christine,Brooklyn,Bedford-Stuyvesant,40.69764,-73.94929,Entire home/apt,110,3,10,2018-07-05,0.26,1,0 +12071454,TRENDY Brooklyn room,48764969,Alina,Brooklyn,Bushwick,40.6826,-73.90411,Private room,40,6,28,2019-04-14,0.70,2,298 +12072069,Cute & Cozy Cobble Hill Apt,37820765,Carla,Brooklyn,Columbia St,40.68685,-74.00112,Entire home/apt,98,2,14,2017-05-02,0.36,1,0 +12078997,Spacious Studio Apartment,5749328,Beth,Manhattan,Upper West Side,40.7771,-73.97729,Entire home/apt,160,3,36,2019-06-23,0.93,1,318 +12079099,Cozy shared male room in center of Manhattan III\),39528519,Max,Manhattan,Lower East Side,40.71171,-73.98871,Shared room,32,14,0,,,28,341 +12079993,Luxury Full Central Park View Apart,35329442,Tanya,Manhattan,Upper West Side,40.80031,-73.95847,Entire home/apt,380,2,6,2016-12-11,0.16,1,0 +12081254,Sunny Private Brooklyn Bedroom w/ Backyard Access,31230100,Elissa,Brooklyn,Crown Heights,40.67298,-73.95561,Private room,35,7,1,2016-07-15,0.03,3,157 +12081327,Private bedroom for 2-4 night stay in Clinton Hill,2134560,Patrick,Brooklyn,Clinton Hill,40.69011,-73.96656,Private room,100,2,0,,,1,0 +12082624,NYC Midtown West 1 bedroom luxury apartment!,30283594,Kara,Manhattan,Midtown,40.76571,-73.98312,Entire home/apt,239,30,0,,,121,352 +12082737,Location Chambre,47954479,Erwan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.95084,Private room,51,1,0,,,1,0 +12083016,Entire huge 2BR Apt in East Village - Aug. 14-27!!,7226962,John,Manhattan,East Village,40.72716,-73.98264,Entire home/apt,200,4,3,2016-08-26,0.08,1,0 +12083625,Plush Studio Apartment in Midtown West NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76626,-73.98342,Entire home/apt,129,30,0,,,121,133 +12083868,Sleek 1 BR apt. near major attractions in NYC!,30283594,Kara,Manhattan,Midtown,40.76536,-73.98199,Entire home/apt,239,30,0,,,121,351 +12084009,Cozy Upper East Side 1 Bedroom,64765550,Stefano,Manhattan,Upper East Side,40.77924,-73.94924,Entire home/apt,140,1,4,2016-07-01,0.10,1,0 +12084100,Lux 1 BR NYC Midtown West Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76642,-73.98326,Entire home/apt,239,30,0,,,121,364 +12084205,East Village 1B in 3B apt,51924404,Angela,Manhattan,East Village,40.72966,-73.98476,Private room,56,1,2,2016-06-01,0.05,1,0 +12085008,Sophisticated 1 bedroom apt. in Midtown West!,30283594,Kara,Manhattan,Midtown,40.76567,-73.98308,Entire home/apt,239,30,0,,,121,352 +12085680,Delightful 1BR close to upscale shopping in NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76666,-73.98306,Entire home/apt,239,30,1,2018-03-31,0.06,121,352 +12086180,Lux 1BR NYC apt. steps from Carnegie Hall!,30283594,Kara,Manhattan,Midtown,40.76511,-73.98345,Entire home/apt,239,30,0,,,121,352 +12086351,Peaceful Private Room In Warm Brooklyn Apt,4462547,Ryan,Brooklyn,Prospect Heights,40.67834,-73.96685,Private room,37,180,0,,,1,0 +12086985,"Private room in sunny, modern Bushwick apartment!",5095576,Isra,Brooklyn,Bushwick,40.70045,-73.91673,Private room,91,2,30,2018-06-25,0.86,1,0 +12087608,Luxury finished MIDTOWN 1 Bed Apt.,43483337,Alex,Manhattan,Hell's Kitchen,40.75547,-73.99501,Entire home/apt,170,5,0,,,1,0 +12087785,Clinton Hill Oversized One Bedroom,54378184,Eej,Brooklyn,Clinton Hill,40.69106,-73.96529,Entire home/apt,169,12,13,2019-06-24,0.34,3,365 +12088134,"Spacious, bright on Upper East Side",64791940,Charles,Manhattan,Upper East Side,40.77433,-73.94854,Private room,35,11,9,2018-03-31,0.24,1,0 +12088314,Huge and Sunny Mid Century 1BR,2875590,Gilad,Brooklyn,Crown Heights,40.67833,-73.9629,Entire home/apt,180,3,2,2017-04-15,0.05,1,0 +12088765,"Bright, Sunny Room in Clinton Hill",1712843,Anne,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95795,Private room,55,4,4,2016-10-28,0.11,1,0 +12089013,NYC MIDTOWN WEST LUXURY 1BR APT! CITY VIEWS!,30283594,Kara,Manhattan,Midtown,40.76545,-73.98156,Entire home/apt,239,30,1,2019-02-28,0.23,121,351 +12089237,1 Bedroom Apt in the heart of NYC by Central Park,30283594,Kara,Manhattan,Hell's Kitchen,40.76678,-73.98336,Entire home/apt,239,30,0,,,121,352 +12089661,Luxury bldg Near Flatiron- Chelsea,438593,SaeHo,Manhattan,Chelsea,40.74491,-73.99536,Private room,175,1,1,2016-04-08,0.03,2,0 +12089692,Ground Floor Apartment in Brooklyn!,268961,Erica & Tayo,Brooklyn,Bedford-Stuyvesant,40.6805,-73.94612,Entire home/apt,67,3,88,2019-01-31,2.22,1,0 +12089889,-Modern Living in the Heart of NYC - 1 BR apt.,30283594,Kara,Manhattan,Hell's Kitchen,40.7663,-73.98359,Entire home/apt,239,30,0,,,121,165 +12090887,Private bedroom 5 mins to ColumbiaU,18370504,Emily,Manhattan,Morningside Heights,40.8131,-73.96074,Private room,65,2,5,2016-08-29,0.13,1,0 +12091679,Upper West Side Split Layout 1 BR,61391963,Corporate Housing,Manhattan,Upper West Side,40.78342,-73.97312,Entire home/apt,125,30,9,2019-01-05,0.25,91,127 +12092403,Holiday in 2br2ba Williamsburg Apt!,1909320,Peter,Brooklyn,Williamsburg,40.71697,-73.96204,Entire home/apt,200,1,16,2019-06-27,0.41,3,239 +12092786,Large 1 Bdrm Apartment in Midwood,34758340,Jonathan,Brooklyn,Sheepshead Bay,40.60655,-73.952,Entire home/apt,81,5,9,2019-01-04,0.24,1,1 +12093078,Charming Times Square garden floor apt (sleeps 5),64825610,Michel And Antoine,Manhattan,Hell's Kitchen,40.76156,-73.99127,Entire home/apt,325,3,99,2019-06-19,2.56,2,246 +12093494,Midtown Sleep 6 Central Convenience,62031986,Adam,Manhattan,Midtown,40.75237,-73.98769,Entire home/apt,333,1,246,2019-06-21,6.38,1,323 +12095161,"Sunny, clean, classic NYC apartment",19965375,Remy,Manhattan,Chinatown,40.7137,-73.99638,Private room,90,1,0,,,1,0 +12095501,Sunny Sanctuary,7403959,L.R.,Manhattan,Hell's Kitchen,40.75915,-73.99932,Entire home/apt,245,2,24,2019-06-02,0.61,1,48 +12095636,Sunny Artesian apartment,64846981,Maria,Brooklyn,Bushwick,40.69993,-73.92504,Private room,90,2,6,2017-05-08,0.15,1,358 +12096332,Amazing Views 3BR 2BA Bright and Spacious,64052858,Elizabeth Anne,Manhattan,Midtown,40.7442,-73.98748,Entire home/apt,999,2,54,2019-06-19,1.49,1,58 +12099852,Spacious 1 Bedroom with City Views,42905408,Carolyn,Queens,Astoria,40.76856,-73.92591,Entire home/apt,165,1,0,,,1,0 +12102526,HIGH END 2 bed 2ba W&D in Unit!5113,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79565,-73.96584,Entire home/apt,400,30,1,2016-12-05,0.03,96,311 +12105132,DSGN by Starck!GYM BasketBall Court!5182,16098958,Jeremy & Laura,Manhattan,Financial District,40.705,-74.00682,Entire home/apt,160,30,2,2018-10-08,0.07,96,336 +12106132,Bed-Stuy Brownstone Studio,38967549,John,Brooklyn,Bedford-Stuyvesant,40.68592,-73.9398,Entire home/apt,75,3,3,2016-11-27,0.08,1,0 +12106348,Best Place in the Center of NYC!,64916208,Tim,Manhattan,Chelsea,40.73974,-74.00069,Entire home/apt,206,1,55,2019-01-01,1.41,1,0 +12106946,Room in sunny art-filled Harlem apt,5075103,Shawn,Manhattan,Harlem,40.82119,-73.95556,Private room,70,1,16,2016-10-16,0.40,2,0 +12107055,Sunny 1 bedroom in Williamsburg,64921358,Kendra,Brooklyn,Williamsburg,40.7139,-73.95615,Private room,65,1,1,2016-03-30,0.03,1,0 +12108264,"Cool Brooklyn, Close to Manhattan",64930464,Maya,Brooklyn,Bedford-Stuyvesant,40.68823,-73.93367,Entire home/apt,126,2,181,2019-06-23,4.73,1,182 +12108512,"nice backyard, cool roommates",64932133,Kenny,Brooklyn,Crown Heights,40.67458,-73.94214,Private room,40,10,0,,,1,0 +12109347,Modern 1BR apt- prime Times Square location!!,30283594,Kara,Manhattan,Midtown,40.76506,-73.98236,Entire home/apt,239,30,0,,,121,352 +12109533,Sunny Charming Clinton Hill Apartment,3160780,Ben,Brooklyn,Bedford-Stuyvesant,40.68158,-73.95798,Entire home/apt,129,31,6,2019-05-31,0.15,1,0 +12110383,Tudor Studio (Wifi/Premium Cable) w Private Entry,54921733,Louise,Brooklyn,Flatbush,40.64319,-73.96729,Entire home/apt,92,1,5,2017-08-07,0.14,3,0 +12110663,Large Quiet Bedroom in South Harlem,64948443,Kim,Manhattan,Harlem,40.80726,-73.95178,Private room,82,5,106,2019-06-19,2.70,1,39 +12110990,Amazing 2 BR NYC apt. with up-to-date amenities!,30283594,Kara,Manhattan,Midtown,40.76657,-73.98201,Entire home/apt,369,30,1,2018-10-30,0.12,121,345 +12111387,Luxury 2BR-Apt. next to Central Park,30283594,Kara,Manhattan,Midtown,40.76537,-73.98298,Entire home/apt,369,30,0,,,121,345 +12113015,5th ave & Broadway nr Times Square,26802681,Feli,Manhattan,Midtown,40.74749,-73.98873,Entire home/apt,99,1,172,2019-06-14,4.33,1,213 +12113045,"Prime Williamsburg, Brooklyn",64967307,Dave,Brooklyn,Williamsburg,40.71334,-73.96056,Private room,78,1,0,,,1,0 +12113280,Brooklyn Summer Haven- Private Room!,64963967,Ruby,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92687,Private room,44,1,0,,,1,0 +12113494,Cute and Cozy 1br one block from Central Park,3554055,Jemme,Manhattan,Upper East Side,40.7672,-73.9695,Entire home/apt,160,3,0,,,1,0 +12113879,"Sunny, Large West Village 1 BR Near Everything",5300585,,Manhattan,Chelsea,40.73949,-73.99801,Entire home/apt,220,4,81,2019-07-02,2.11,1,217 +12114017,SoBro Guest House,64976141,Fran & Jason,Bronx,Mott Haven,40.80903,-73.92143,Entire home/apt,125,3,142,2019-06-25,3.59,1,185 +12114040,Studio Apt. near Empire State Bldg 4B,17770287,Nina,Manhattan,Midtown,40.74939,-73.98292,Entire home/apt,99,30,9,2019-04-21,0.24,14,227 +12114228,Charming UES Studio,47864677,Alicia,Manhattan,Upper East Side,40.77117,-73.95851,Entire home/apt,75,7,13,2017-08-20,0.34,1,0 +12114628,"Spacious, Family-Friendly, UWS Duplex w/ Huge Yard",17845933,Amos Rothschild,Manhattan,Upper West Side,40.7889,-73.9729,Entire home/apt,300,5,3,2018-12-31,0.08,1,9 +12114756,Studio + private outdoor Patio UWS,64674589,Pooran,Manhattan,Upper West Side,40.78216,-73.9835,Entire home/apt,140,1,8,2019-03-10,0.20,1,7 +12115597,Convenient Apt w/ private bathroom!,53282710,Weiyi,Manhattan,Upper West Side,40.79546,-73.96452,Private room,98,3,2,2016-08-06,0.05,1,0 +12122102,Huge Bedroom in Upper Manhattan - Near A&1 Subway!,12859795,Jeff,Manhattan,Inwood,40.86399,-73.92321,Private room,99,3,150,2019-06-30,3.85,1,320 +12125287,DSGN By Starck/ Washer & Dryer Basket Ball!5149,16098958,Jeremy & Laura,Manhattan,Financial District,40.7035,-74.00713,Entire home/apt,178,30,2,2016-12-31,0.06,96,332 +12129245,"Cozy, Private Room in Astoria!",43740859,Katie,Queens,Astoria,40.76703,-73.9166,Private room,59,1,0,,,1,0 +12129960,LuXe*Chef'sKitchen*forestGarden*patio.Marble.ART,4128829,Sara,Brooklyn,Bushwick,40.69055,-73.92071,Entire home/apt,75,1,48,2019-01-03,1.22,2,36 +12130236,Cozy studio steps to the beach,65096495,Eric,Queens,Belle Harbor,40.57941,-73.84844,Private room,225,1,35,2019-06-30,0.92,1,364 +12130620,RENOVATED APT NEXT TO EXPRESS TRAIN,11338827,Caty,Manhattan,Harlem,40.826,-73.94314,Private room,60,2,5,2016-08-31,0.13,1,0 +12131147,Modern loft,3206521,Dee,Manhattan,West Village,40.73552,-74.00615,Entire home/apt,268,1,3,2016-07-23,0.08,2,0 +12132022,Family Friendly 2.5 Bedroom,34736562,Helena,Brooklyn,Carroll Gardens,40.68124,-73.99601,Entire home/apt,300,7,0,,,1,0 +12132427,Spacious 1 BR in East Village!,10584659,Mike,Manhattan,Gramercy,40.73375,-73.98704,Entire home/apt,177,3,12,2016-07-21,0.30,1,0 +12132772,Iris: STG GoYankees!,13750728,Gayle,Bronx,Longwood,40.81928,-73.90933,Private room,60,2,47,2019-05-10,1.22,4,249 +12133132,Perfect Location in New York City,49045679,Vanessa,Manhattan,Lower East Side,40.71251,-73.9889,Private room,60,3,8,2016-08-08,0.21,1,0 +12133746,Warm & Cozy Sunflower Room:STG,13750728,Gayle,Bronx,Longwood,40.81725,-73.90929,Private room,55,2,31,2019-03-18,0.81,4,280 +12134113,Jasmine: Lovely Secret Tea Garden!,13750728,Gayle,Bronx,Longwood,40.81911,-73.90939,Private room,60,2,77,2019-06-12,1.96,4,171 +12135851,Cozy 1 bd apt In the heart of Crown Heights,2613671,Lonnie,Brooklyn,Crown Heights,40.67593,-73.94291,Entire home/apt,135,1,38,2019-07-01,2.49,1,359 +12135856,Master Bedroom w/ King Bed,15025923,Stephen,Brooklyn,Fort Hamilton,40.61645,-74.03108,Private room,43,23,0,,,1,0 +12136198,5th ave/Broadway near Empire State,65143341,Noel,Manhattan,Midtown,40.74771,-73.98727,Entire home/apt,139,1,186,2019-06-24,4.68,1,230 +12145189,Central Park studio at great price!,2961779,Carmen,Manhattan,Hell's Kitchen,40.76735,-73.98578,Entire home/apt,100,2,6,2017-01-01,0.16,1,0 +12145578,Spacious Parkside Abode,2589215,Caroline,Brooklyn,Flatbush,40.65206,-73.96149,Private room,100,4,5,2018-11-09,0.14,1,7 +12145875,"Private, cozy room, 20 min to Manhattan",22117154,Dorota,Queens,Ridgewood,40.70009,-73.90505,Private room,40,1,48,2019-07-07,1.24,1,1 +12145887,Room in sunny art-filled apartment,5075103,Shawn,Manhattan,Harlem,40.82127,-73.95669,Private room,55,1,1,2016-08-22,0.03,2,0 +12147723,Luxury Wall St. Apartment Building,5120853,Mackenzie,Manhattan,Financial District,40.70433,-74.00782,Entire home/apt,175,2,2,2016-07-08,0.05,1,0 +12148081,"Sexy, Cozy, Work, Play Loft for 4",23913300,Kelly,Brooklyn,Williamsburg,40.71265,-73.96574,Entire home/apt,300,2,33,2019-06-25,0.86,2,76 +12148215,Luxury April Sublet in Manhattan NY,53930780,Thomas,Manhattan,Harlem,40.80422,-73.95495,Private room,45,1,1,2016-04-06,0.03,1,0 +12151638,Spacious 2 bedroom Garden apartment,9558116,Ruma,Brooklyn,Clinton Hill,40.68099,-73.96343,Entire home/apt,144,2,49,2019-07-03,1.28,1,69 +12153428,Comfy KING bed in modern NYC apt,65258815,Mrs. Alabi,Brooklyn,Crown Heights,40.67409,-73.92607,Private room,60,2,129,2019-06-26,3.32,2,39 +12153709,Private room in a high floor apt,167796,Kamini,Manhattan,East Harlem,40.80237,-73.9437,Private room,250,1,0,,,1,365 +12154621,Beautiful Room in Crown Heights,3604124,William,Brooklyn,Crown Heights,40.67564,-73.95449,Private room,45,4,4,2017-12-17,0.18,1,0 +12155351,"Cute Apt, heart of east Village!",34507633,Paul,Manhattan,East Village,40.72772,-73.97978,Private room,80,1,1,2016-05-26,0.03,1,0 +12155460,Modern 2BR in the UES (94th and 2nd) 30 DAYS MIN,23772724,Elem,Manhattan,Upper West Side,40.79226,-73.97299,Entire home/apt,136,30,0,,,15,317 +12156078,Stylish East Village Studio + Outdoor Space!,18261318,Daniel,Manhattan,East Village,40.72592,-73.99026,Entire home/apt,149,2,16,2018-05-06,0.43,1,0 +12166897,Life Is Beautiful near Central Park,4350664,Denia,Manhattan,East Harlem,40.79636,-73.94342,Private room,89,5,62,2019-07-02,1.82,1,271 +12166912,Sunny Prime Heart of East Village Room,50200840,Katherine,Manhattan,East Village,40.72827,-73.9863,Private room,110,3,36,2019-07-01,0.91,1,292 +12167152,"Chelsea ,Duplex ,Calm ,Fantastic",51434373,Yael,Manhattan,Chelsea,40.73971,-73.99829,Private room,179,3,69,2019-06-19,1.80,1,104 +12167819,Adr Grand Charming Luxurious Premier!,65359432,Ren,Queens,Astoria,40.76452,-73.92804,Shared room,500,2,15,2017-02-16,0.39,2,365 +12167857,Sunny & quiet family apartment in BK,6520757,Jeen,Brooklyn,Bedford-Stuyvesant,40.69574,-73.9515,Entire home/apt,150,4,11,2019-06-11,0.29,1,0 +12168087,Gorgeous 2 Bedroom APT!,65361160,Peter,Queens,Ridgewood,40.70719,-73.91414,Entire home/apt,175,6,29,2019-07-05,0.83,1,55 +12168212,`A BEAUTY IN BK,7039396,Sol And Coach,Brooklyn,Cypress Hills,40.68202,-73.88943,Entire home/apt,79,1,130,2019-06-26,3.48,2,258 +12169531,3 bedrooms with amazing view of the Big Apple,11218119,James,Brooklyn,Clinton Hill,40.69315,-73.96412,Entire home/apt,117,3,1,2016-04-04,0.03,1,0 +12170307,Williamsburg Vintage Chic w/Garden,64652921,Irit,Brooklyn,Williamsburg,40.71707,-73.95859,Entire home/apt,91,5,0,,,1,0 +12170991,cheap and safe place in Manhattan,57070933,Yiin,Manhattan,Upper West Side,40.79902,-73.96043,Private room,65,2,3,2016-06-16,0.08,2,0 +12171619,The Manhattan Club - NYC Marathon Weekend,56098700,Jim,Manhattan,Midtown,40.76593,-73.9812,Entire home/apt,500,3,0,,,1,0 +12171671,Interfaith Retreat Guest Rooms (Govinda),16677326,Alex And Zeena,Manhattan,Chelsea,40.74971,-73.99533,Private room,85,1,210,2019-06-23,5.34,12,321 +12172457,Park Avenue 2 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74545,-73.98113,Entire home/apt,150,29,1,2018-11-30,0.14,31,143 +12173205,Private Room in Gorgeous Loft! (no cleaning fee),59928816,Elizabeth,Queens,Ridgewood,40.70724,-73.91228,Private room,80,2,177,2019-07-05,4.48,2,245 +12173904,Cozy apartment on upper west side,65402364,Aleksandra,Manhattan,Upper West Side,40.78942,-73.96768,Entire home/apt,200,5,0,,,1,0 +12174580,Spacious Duplex in Brooklyn,22887864,Simone,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91817,Entire home/apt,325,2,76,2019-06-24,1.93,1,160 +12174966,Big Room@ UES clean comfy Apt,28895303,Harry,Manhattan,Upper East Side,40.7674,-73.95559,Private room,95,1,10,2016-06-09,0.25,1,0 +12175508,Quaint room in East Village walk-up,65415391,Katherine,Manhattan,East Village,40.73185,-73.98431,Private room,100,1,0,,,1,0 +12177276,Work In Progress,12446229,Peter,Manhattan,Upper West Side,40.78864,-73.97452,Shared room,85,2,47,2019-07-01,1.20,1,76 +12181485,"Sunny, beautiful Brooklyn studio",794042,Rhea,Brooklyn,Clinton Hill,40.68459,-73.96499,Entire home/apt,115,5,8,2016-08-16,0.21,1,0 +12181549,Charming Two Bridges Hideout,808189,Ashley,Manhattan,Two Bridges,40.71279,-73.99445,Entire home/apt,111,1,41,2019-06-23,1.17,1,4 +12184165,Private Bedroom on Upper West Side,65476654,Geri,Manhattan,Upper West Side,40.7823,-73.98081,Private room,84,1,27,2018-12-09,0.69,1,0 +12184956,Private Room in Greenpoint Brooklyn,36959636,Panagiotis,Brooklyn,Greenpoint,40.72099,-73.94566,Private room,75,3,0,,,1,0 +12185578,Beautiful bright clean room | long term,19552418,Neil,Manhattan,Harlem,40.80807,-73.94868,Private room,95,12,4,2017-12-07,0.10,1,0 +12186043,Clean and Cozy Crown Heights Studio,264111,Albert,Brooklyn,Crown Heights,40.66714,-73.95819,Entire home/apt,110,2,6,2018-06-24,0.15,1,0 +12186697,"Spacious, sunny room in Greenpoint",14208923,Sasha,Brooklyn,Greenpoint,40.72599,-73.94434,Private room,50,4,1,2016-04-30,0.03,1,0 +12187800,"Spacious, sunlit room",6555513,Preeti,Brooklyn,Brooklyn Heights,40.69619,-73.99296,Private room,115,1,0,,,2,0 +12188651,Spacious home in heart of NYC,6997786,Mara,Manhattan,Chelsea,40.74369,-73.99571,Entire home/apt,225,2,5,2016-10-09,0.14,1,0 +12188721,"Cozy room in bushwick, Brooklyn",517866,Jose,Brooklyn,Bushwick,40.69021,-73.91019,Private room,80,3,0,,,1,83 +12189652,"Cozy, boho room in heart of Bedstuy",14131713,Liz,Brooklyn,Bedford-Stuyvesant,40.6848,-73.93471,Private room,110,1,2,2016-05-12,0.05,2,342 +12190495,"1 BD in stylish renovated 2BDs, Clinton Hill",66127,Aurélien,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95604,Private room,49,7,13,2019-05-21,0.36,1,0 +12190880,Upper West Side One Bedroom on Central Park,65527002,(Email hidden by Airbnb),Manhattan,Upper West Side,40.7961,-73.963,Private room,90,1,60,2019-07-06,2.91,1,188 +12191010,Chic Spacious Beachfront House,65482154,Antoinette,Queens,Arverne,40.58734,-73.79971,Entire home/apt,299,3,4,2019-05-27,0.31,1,318 +12191116,cheap & safe next to Central PK,57070933,Yiin,Manhattan,Upper West Side,40.79981,-73.96097,Private room,60,1,5,2016-07-12,0.14,2,0 +12191735,DSGN by Starck! GYM W&D Basket Ball Court !5183,16098958,Jeremy & Laura,Manhattan,Financial District,40.70538,-74.00664,Entire home/apt,175,30,3,2017-01-13,0.08,96,311 +12192216,Artsy Spot in Spanish Harlem,3104581,Andrea,Manhattan,East Harlem,40.79073,-73.94669,Entire home/apt,115,2,18,2019-07-06,0.48,1,3 +12196647,"Amazing, large private room",5744488,Lindsay,Brooklyn,Bedford-Stuyvesant,40.69438,-73.94726,Private room,45,4,0,,,1,0 +12202225,"Bed Stuy beauty. Books, sunlight :)",59979344,Greg,Brooklyn,Bedford-Stuyvesant,40.69188,-73.94742,Private room,57,1,0,,,1,0 +12202511,Cozy & Charming Chinatown/LES Spot!,9314442,Adam + Yulu,Manhattan,Chinatown,40.71532,-73.99343,Entire home/apt,120,3,2,2016-10-04,0.05,1,0 +12204161,"Spacious, sunny apt in BK Heights",6555513,Preeti,Brooklyn,Brooklyn Heights,40.69453,-73.99423,Entire home/apt,409,1,1,2016-06-30,0.03,2,0 +12205049,2Story4Bedroom 2Full Bath New York Palace,65625445,Tony,Queens,Rosedale,40.67112,-73.73529,Entire home/apt,350,40,15,2017-07-05,0.39,1,365 +12205604,Caribbean Room - Inn Your Element,19866189,Natasha,Queens,Arverne,40.58859,-73.7938,Private room,95,1,31,2018-05-13,0.79,5,361 +12206029,"Private BR, Bed-Stuy w/backyard",5897784,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92673,Private room,49,1,1,2016-05-13,0.03,1,0 +12206323,Cozy Apartment in Upper East Side,65639106,Brigid,Manhattan,East Harlem,40.78821,-73.94927,Entire home/apt,155,1,2,2016-07-05,0.05,1,0 +12209944,"Comfy Brooklyn apt, near train and Manhattan",65667120,Brandee,Brooklyn,Bedford-Stuyvesant,40.68264,-73.94238,Entire home/apt,265,4,123,2019-06-30,3.25,1,285 +12210323,HUGE DUPLEX apartment with BACKYARD,65670239,Kelly,Brooklyn,East Flatbush,40.64062,-73.94733,Entire home/apt,215,2,44,2019-07-04,1.28,1,279 +12210448,2 Bed Private Room + Private Bath in Lovely Loft!,59928816,Elizabeth,Queens,Ridgewood,40.70707,-73.91384,Private room,120,2,162,2019-06-27,4.12,2,268 +12210730,Zen room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.68979,-73.94299,Private room,54,2,1,2016-04-17,0.03,3,319 +12211018,Buck room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.6886,-73.94153,Private room,79,2,0,,,3,319 +12212943,Upper East Side Brand New Apt,65690091,Mohine,Manhattan,Upper East Side,40.78173,-73.94621,Private room,185,1,0,,,1,0 +12220661,Cute and comfy 1bedroom apartment,65217454,Carla,Manhattan,Washington Heights,40.85264,-73.92976,Entire home/apt,60,5,16,2019-05-25,0.41,1,4 +12221970,Ziggy Stardust Surf House - A Beautiful Houseboat,9040879,Ben,Queens,Arverne,40.59491,-73.78851,Entire home/apt,750,1,14,2019-06-08,0.36,2,352 +12222304,Upper East Side Rooftop Escape,23821373,Kaitlyn,Manhattan,Upper East Side,40.76676,-73.95753,Entire home/apt,160,1,0,,,1,0 +12223159,Bright Modern Greenwich Village 1BR,9545279,Mitchell,Manhattan,Greenwich Village,40.72837,-73.99952,Entire home/apt,210,1,58,2019-07-06,1.49,1,2 +12223531,Spacious and sun-drenched bedroom,2018172,Mimi,Brooklyn,Williamsburg,40.70751,-73.95441,Private room,80,1,2,2016-08-17,0.05,1,0 +12223866,Melissa And Ray's Oasis,11157618,Ray,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95969,Entire home/apt,85,5,93,2019-06-10,2.38,1,0 +12224443,La Maison She She (Brownstone Private Apt.),65760387,Shelia,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92142,Entire home/apt,99,2,43,2017-11-01,1.16,1,0 +12225502,700 Squ.Ft Studio / Loft,65757870,M.,Manhattan,East Village,40.72637,-73.97682,Entire home/apt,200,2,0,,,1,0 +12225838,Sunny bohemian room heart of williamsburg,62316080,Janelle,Brooklyn,Williamsburg,40.71394,-73.94995,Private room,84,1,181,2019-06-23,4.59,1,282 +12226927,"Quiet, cozy and family friendly",38969372,Miki,Brooklyn,Kensington,40.64528,-73.97621,Entire home/apt,105,4,7,2018-08-26,0.18,1,20 +12227008,South Williamsburg Private Room,65776450,Emily,Brooklyn,Williamsburg,40.70952,-73.95567,Private room,150,2,0,,,1,0 +12227645,The beach - it's just across the street,54129736,Donna,Queens,Rockaway Beach,40.58341,-73.8165,Private room,88,2,32,2017-09-04,0.84,1,0 +12228023,Big Bedroom in UES Apartment,65786525,Eric,Manhattan,Upper East Side,40.77631,-73.9556,Private room,65,1,0,,,1,0 +12228640,Bed Stuy Home Away From Home,27953420,Qaim,Brooklyn,Bedford-Stuyvesant,40.68696,-73.95094,Entire home/apt,110,1,0,,,1,0 +12228859,NYC Full Studio Walkable to Central Park,5138621,Clare,Manhattan,Upper East Side,40.77619,-73.95106,Entire home/apt,140,2,1,2016-11-07,0.03,1,0 +12230361,Cozy private room in Brooklyn,65802264,Rick,Brooklyn,Crown Heights,40.66877,-73.93318,Private room,50,3,14,2016-09-30,0.35,1,0 +12230921,Bright and Beautiful Abode,5679552,Genevieve,Brooklyn,Williamsburg,40.7193,-73.95731,Entire home/apt,175,2,2,2016-04-23,0.05,1,0 +12230928,Villa DiGioia visit NYC via SI,65806798,Michael J,Staten Island,Tottenville,40.50708,-74.24285,Private room,100,2,0,,,1,365 +12230978,cozy private rm in sunny Bklyn apt,30529247,Amy,Brooklyn,Fort Greene,40.69706,-73.97422,Private room,50,4,15,2019-06-24,0.38,1,0 +12231254,Flushing Master Room w/ Private bathroom,65809485,Shirley,Queens,Flushing,40.74979,-73.82911,Private room,60,5,66,2019-05-19,1.69,12,141 +12231304,Private Room in Luxury Bushwick Apt,18287406,Claudio,Brooklyn,Bushwick,40.70307,-73.91765,Private room,51,3,0,,,1,0 +12231331,Bright Brooklyn Room,27379452,Kevin,Brooklyn,Williamsburg,40.70611,-73.93966,Private room,55,5,0,,,1,0 +12231443,Private bedroom in Brooklyn,44376809,Chelsea,Brooklyn,Bushwick,40.70265,-73.91701,Private room,85,1,0,,,1,0 +12233692,Modern Room in a Duplex Loft,65598016,Ivana And Tami,Brooklyn,Crown Heights,40.66946,-73.95306,Private room,60,2,136,2019-06-23,3.45,1,346 +12234139,1 Bedroom Outside Columbus Circle,13089400,Mckenzie,Manhattan,Upper West Side,40.77116,-73.98796,Entire home/apt,143,2,32,2019-04-22,0.81,1,0 +12234835,UNBEATABLE LOCATION - SUPREME APARTMENT,65832104,Sam,Manhattan,Lower East Side,40.71877,-73.98913,Entire home/apt,85,5,4,2019-06-15,0.11,1,282 +12236124,Large apartment mins away from Manhattan.,24637162,Angelica,Queens,Sunnyside,40.74594,-73.91727,Entire home/apt,110,2,24,2019-06-27,1.52,1,128 +12242301,First rate 2 bed/2 bath apt. in Midtown West!,30283594,Kara,Manhattan,Midtown,40.76686,-73.98198,Entire home/apt,449,30,0,,,121,345 +12242672,Comfortable Hamilton Heights Apt,18362341,Michael,Manhattan,Harlem,40.83086,-73.94478,Private room,35,1,0,,,1,0 +12243378,Lux 2BR-Apt.- NYC near Madison Square Garden!,30283594,Kara,Manhattan,Midtown,40.76539,-73.98348,Entire home/apt,369,30,1,2017-06-02,0.04,121,345 +12243556,Clean and Modern Space in Upper West Side,2863689,Nabilah,Manhattan,Morningside Heights,40.80514,-73.96349,Private room,70,8,0,,,1,0 +12243947,"Nice & clean 3 bedroom, great area! Free yoga !!",63289810,Loretta,Brooklyn,Gowanus,40.68081,-73.98945,Entire home/apt,295,2,70,2019-06-10,1.80,1,292 +12245906,One Bedroom On Upper West Side,65364483,Irina,Manhattan,Upper West Side,40.7992,-73.96792,Entire home/apt,110,120,2,2016-08-27,0.05,2,34 +12247741,BEDROOM AVAILABLE IN UES,14906645,Michael,Manhattan,Upper East Side,40.77685,-73.95727,Private room,65,1,2,2016-05-01,0.05,1,0 +12249359,Cozy Apt in BEST LOCATION,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76322,-73.99005,Entire home/apt,109,30,8,2018-12-30,0.28,91,159 +12249461,Cosy room in Brooklyn! 2min to Sbwy,24291213,Joerg,Brooklyn,Sunset Park,40.63877,-74.01993,Private room,35,1,2,2016-04-08,0.05,2,0 +12250653,Small Cozy Room in Artsy Apartment,20043119,Anita,Brooklyn,Clinton Hill,40.6881,-73.96281,Private room,50,1,3,2017-05-17,0.10,1,0 +12251481,"Large Room in Apt w/ Library, Priv Entrance",17624300,Stephen,Brooklyn,Williamsburg,40.70244,-73.94421,Private room,44,1,8,2019-06-02,0.23,1,357 +12252035,SPACIOUS 2BR PRIME EAST VILLAGE APT,4534893,Alex,Manhattan,East Village,40.72705,-73.98787,Entire home/apt,275,2,70,2019-07-01,1.84,4,307 +12252205,PRIME EAST VILLAGE BEDROOM,4534893,Alex,Manhattan,East Village,40.72553,-73.98831,Private room,110,2,46,2019-06-08,1.17,4,307 +12252513,Cool Williamsburg Loft,9280078,Frederikke,Brooklyn,Williamsburg,40.70845,-73.96742,Entire home/apt,120,1,1,2016-05-08,0.03,1,0 +12252583,Cozy Bedroom In Prime Location,49121324,Zhaoyan,Brooklyn,Clinton Hill,40.68645,-73.96691,Private room,50,7,4,2016-07-20,0.11,1,0 +12252993,Cozy & Chic Studio Apartment,65968828,Tracey,Brooklyn,Crown Heights,40.6733,-73.91235,Entire home/apt,87,3,87,2019-06-23,2.25,1,260 +12253338,Hudson River view Washington Height,51547958,Melissa,Manhattan,Washington Heights,40.83498,-73.94801,Private room,78,1,0,,,1,0 +12253809,Beautiful View of Hudson and City,12608878,Doug,Manhattan,Washington Heights,40.8528,-73.94114,Private room,49,2,0,,,1,0 +12254118,Master Bedroom with Balcony in Soho,65979198,Marc,Manhattan,Nolita,40.72232,-73.99433,Private room,109,7,3,2017-01-03,0.09,1,0 +12254147,Spacious Room in 3 bedroom Duplex Apartment,43380926,Zineb,Manhattan,East Harlem,40.78771,-73.94197,Private room,65,1,1,2016-07-22,0.03,1,0 +12265378,"Unique, spacious & bright room in Manhattan!",22087408,Dominik,Manhattan,Lower East Side,40.71909,-73.98473,Private room,150,1,41,2019-06-23,1.07,3,274 +12266323,"The Heart Of NYC, 3min Walk To Grand Central",5004109,Michelle,Manhattan,Murray Hill,40.75001,-73.97739,Entire home/apt,225,1,45,2019-06-30,1.16,1,255 +12267015,UWS BEAUTIFUL 1 Bedroom Available,12759735,Natalie,Manhattan,Upper West Side,40.784,-73.97148,Entire home/apt,100,1,1,2016-04-24,0.03,1,0 +12267599,Bright Harlem Apt. in New Building!,12879538,Gregory,Manhattan,Harlem,40.82033,-73.94358,Entire home/apt,125,1,103,2019-07-02,2.67,2,339 +12267734,Studio/Heart of the East Village,4899404,Jessica,Manhattan,East Village,40.72838,-73.98539,Entire home/apt,115,4,46,2019-06-15,1.19,1,0 +12268056,"BRIGHT, MODERN, PRIVATE BEDROOM BK",7119612,Becky,Brooklyn,Bushwick,40.69897,-73.92705,Private room,62,1,1,2016-04-20,0.03,1,0 +12269953,Queen bed w/ attached bathroom,66089191,Jordan,Brooklyn,Bushwick,40.69177,-73.92509,Private room,50,7,2,2017-05-31,0.06,1,0 +12271309,Bright E. Village Home on Serene Street! #DGM,2079709,Doni,Manhattan,East Village,40.72795,-73.98567,Entire home/apt,200,2,39,2019-03-31,1.15,1,0 +12272376,The James Franco! Beautiful Floating Surf Safari!,9040879,Ben,Queens,Arverne,40.59413,-73.78991,Entire home/apt,225,1,6,2019-06-23,0.56,2,352 +12272850,Stunning 2 BEDROOM Luxury Finishes & Washer Dryer,61391963,Corporate Housing,Manhattan,Kips Bay,40.74205,-73.97828,Entire home/apt,159,30,5,2019-06-01,0.18,91,281 +12273048,"Central Location, Time Square, 24 hour doorman",49580011,Amy,Manhattan,Theater District,40.76237,-73.98285,Entire home/apt,150,28,4,2019-03-09,0.11,1,331 +12273688,Sunny Private Rm in Bushwick,44468180,Kristen,Brooklyn,Bushwick,40.69414,-73.92877,Private room,29,2,4,2017-07-02,0.11,1,0 +12274576,"3 BR, Bklyn, Long/Short Term",2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94392,Entire home/apt,150,1,0,,,3,359 +12274662,Cozy Bushwick-1br w private bath,5606004,Feather,Brooklyn,Bushwick,40.70062,-73.92785,Private room,80,2,9,2018-05-30,0.23,1,0 +12274909,Beautiful spacious bedroom BayRidge FEMALES only,60756664,Carol,Brooklyn,Bay Ridge,40.63456,-74.02483,Private room,35,1,33,2019-06-12,0.84,1,337 +12274916,Gorgeous 1 BR on Upper East Side,4285208,Brian,Manhattan,Upper East Side,40.77346,-73.9559,Entire home/apt,250,7,8,2018-09-20,0.22,1,294 +12281070,A simple place to make your space,66173032,Andrew,Manhattan,Upper East Side,40.77441,-73.95815,Entire home/apt,160,1,0,,,1,0 +12282434,Calm and Cosy Apt Nolita LES,2672883,Natalie,Manhattan,Lower East Side,40.72231,-73.99069,Entire home/apt,175,30,12,2016-12-11,0.32,1,0 +12282543,"Top floor skyline view, Bright in Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70528,-73.92938,Entire home/apt,150,2,11,2019-05-06,0.28,7,330 +12282916,Architects cozy home in Astoria,66182162,Alexandra,Queens,Long Island City,40.75888,-73.9312,Entire home/apt,165,2,3,2016-10-23,0.08,1,0 +12283602,"Greenpoint Haven, 12min walk from 7",12603183,Paulina,Brooklyn,Greenpoint,40.73675,-73.95382,Entire home/apt,150,3,0,,,1,0 +12283732,"Spacious, Trendy, Convenient! Stay in Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70454,-73.9299,Entire home/apt,159,2,13,2019-04-28,0.34,7,317 +12284280,"Legal full floor by Sunset Park, 20mins to Soho",4964784,Jon,Brooklyn,Sunset Park,40.65031,-74.00176,Entire home/apt,140,2,108,2019-07-07,2.89,1,278 +12285861,Amazing 2 Bd Loft -PRIME Williamsbu,8182126,Maggie,Brooklyn,Williamsburg,40.71791,-73.94646,Entire home/apt,159,3,2,2016-05-01,0.05,2,0 +12286191,Charming Exposed Brick Apartment in Manhattan,40288829,Savion,Manhattan,Washington Heights,40.83294,-73.94167,Private room,77,7,17,2019-05-26,0.46,1,311 +12286939,Cute little room in S Williamsburg!,24918898,Javier,Brooklyn,Williamsburg,40.70755,-73.95117,Private room,49,3,3,2016-05-30,0.08,2,0 +12287479,Private bedroom facing street.,66215731,Eric,Brooklyn,Gowanus,40.67692,-73.98339,Private room,55,1,56,2019-06-18,1.46,2,281 +12287516,Flat on President - Private Room,66215731,Eric,Brooklyn,Park Slope,40.67719,-73.98142,Private room,50,1,113,2019-06-16,2.87,2,352 +12287838,3.5 - 4.5* Bedrms Apt in NYC + Private Backyard,26405086,Bill & May,Manhattan,Washington Heights,40.83471,-73.94288,Entire home/apt,359,1,96,2019-06-28,2.48,4,309 +12287938,Cozy Lofted Room in Homey 3BR,66191982,Barrie,Brooklyn,Bedford-Stuyvesant,40.69445,-73.94459,Private room,50,3,3,2016-05-08,0.08,1,0 +12290567,Clean studio apartment for sleeping,66240027,Bianca,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95999,Entire home/apt,40,1,2,2016-04-28,0.05,1,0 +12292226,Luxury 1BR Midtown East-Near the UN,26521212,Laura,Manhattan,Midtown,40.75314,-73.97367,Entire home/apt,219,2,5,2019-01-01,0.13,3,0 +12292255,New & Bright Garden Apartment,5468528,Christine,Brooklyn,South Slope,40.6679,-73.98703,Entire home/apt,189,4,68,2019-06-15,1.73,1,83 +12292409,Charming Quiet & Bright Studio -LES,23638897,Adrien,Manhattan,Lower East Side,40.71849,-73.98334,Entire home/apt,140,5,2,2018-01-01,0.05,1,0 +12293900,Comfortable modern 2 bed apartment. Backyard!,11206175,Kris,Queens,Maspeth,40.72163,-73.90612,Entire home/apt,96,30,17,2019-04-26,0.47,2,325 +12294008,Furnished Duplex with Garden,27742760,Josh,Brooklyn,Boerum Hill,40.68469,-73.98603,Entire home/apt,300,180,0,,,1,365 +12294124,Friendly and Inviting Unit,66269338,Peggy,Queens,Jackson Heights,40.74838,-73.88767,Private room,125,1,11,2019-05-26,0.28,4,301 +12296996,Bright apartment in Brooklyn,30826804,Salima & Carlos,Brooklyn,East Flatbush,40.6403,-73.94959,Private room,150,3,11,2019-05-20,0.28,1,364 +12299794,Hawai memories,66309874,Rich,Brooklyn,Cypress Hills,40.68615,-73.87646,Private room,60,3,32,2019-06-04,0.81,3,90 +12300734,W70's apt steps to central park and express lines,7195103,Swathi,Manhattan,Upper West Side,40.77992,-73.98046,Private room,99,4,51,2018-07-06,1.31,1,0 +12301028,NY historic brownstone,66309874,Rich,Brooklyn,Cypress Hills,40.68577,-73.8777,Private room,60,3,15,2019-06-29,0.41,3,90 +12301489,Modern Loft Studio with Views,18276764,Stephanie,Manhattan,Gramercy,40.7363,-73.98691,Entire home/apt,198,2,37,2017-06-27,0.98,1,0 +12302170,Midtown Manhattan Two Full Bedrooms - Private,66326553,Pierre,Manhattan,Hell's Kitchen,40.76149,-73.99159,Entire home/apt,350,6,124,2019-06-18,3.16,2,247 +12302429,*Lovely Apt In Heart Of Park Slope*,5973406,Andrew,Brooklyn,Park Slope,40.66977,-73.98042,Entire home/apt,85,14,4,2019-05-31,0.15,2,275 +12303877,ROOM in Great Location,51522009,Diego,Manhattan,Hell's Kitchen,40.76446,-73.99175,Private room,80,3,0,,,1,0 +12304523,Cozy Boho Williamsburg Studio,5741089,Shaye,Brooklyn,Williamsburg,40.71278,-73.949,Entire home/apt,80,2,6,2017-10-15,0.15,1,0 +12304938,Cozy Doorman! On Broadway!Gym 5111,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7918,-73.97413,Entire home/apt,135,30,6,2019-05-15,0.16,96,311 +12307809,Discover Windsor Terrace! -- a treasure. 2 BR apt,26535250,Sheila,Brooklyn,Windsor Terrace,40.65722,-73.9793,Entire home/apt,61,1,91,2019-05-18,2.38,3,246 +12308695,Room in musicians loft/music venue,33049782,Dustin,Brooklyn,Bushwick,40.69084,-73.90314,Private room,45,3,3,2017-08-22,0.08,1,0 +12309399,Big Bright room in Bushwick,4206804,Jam,Brooklyn,Bushwick,40.70376,-73.92718,Private room,70,3,2,2018-03-22,0.06,1,249 +12309858,Convenient Room Near Subway and Central Park!,66383919,Fernando,Manhattan,Harlem,40.80513,-73.95445,Private room,60,1,40,2017-05-07,1.02,2,0 +12310495,Small New-York-Style Room by Central Park!,66383919,Fernando,Manhattan,Harlem,40.80713,-73.9542,Private room,75,2,46,2017-03-11,1.17,2,0 +12310556,Beautiful Greenpoint Apartment,13716703,David & Suzanne,Brooklyn,Greenpoint,40.73334,-73.95607,Entire home/apt,165,2,3,2018-11-05,0.08,1,0 +12311270,Sunny Greenpoint Designer's Pad!,473701,Cla,Brooklyn,Greenpoint,40.73708,-73.95454,Entire home/apt,112,10,11,2019-04-25,0.28,1,21 +12315833,A lovely home to lay your head down,64341665,Nka,Manhattan,Harlem,40.82039,-73.94147,Private room,69,1,38,2019-06-30,0.97,2,365 +12317276,Nice room near everything in NYC,66440767,Aric,Brooklyn,Sheepshead Bay,40.60016,-73.95393,Private room,39,3,22,2019-06-18,0.56,1,360 +12317903,Newly Renovated Studio Midtown East,1512462,Evan & Maria,Manhattan,Midtown,40.75489,-73.9666,Entire home/apt,239,4,132,2019-06-21,3.39,2,242 +12318497,Classic East Village 1 BR,40726506,Quintin,Manhattan,East Village,40.72591,-73.98,Entire home/apt,150,2,0,,,1,0 +12318604,Private room on the Upper East Side,10199873,Andjela,Manhattan,Upper East Side,40.77398,-73.94607,Private room,42,31,0,,,1,0 +12321473,Chic Greenwich Village One Bedroom,32924486,Alysha,Manhattan,Greenwich Village,40.73064,-73.99937,Entire home/apt,195,7,0,,,1,0 +12321626,East Village Loft Two Bedroom,38353649,Sean,Manhattan,East Village,40.72228,-73.98409,Entire home/apt,194,4,5,2016-12-29,0.13,1,0 +12322066,Room with Private Bathroom,8952737,Graham,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9535,Private room,75,2,1,2016-05-13,0.03,1,0 +12322150,Cute Carroll Gardens Apartment.,87988,Samantha,Brooklyn,Carroll Gardens,40.68233,-73.99373,Entire home/apt,130,2,0,,,2,16 +12322923,Bright and Charming in Chelsea,66484647,Serkan,Manhattan,Chelsea,40.74419,-73.99861,Entire home/apt,165,3,110,2019-06-09,2.87,1,222 +12322999,Furnished room close to subway/CU,21901103,Alankrit,Manhattan,Morningside Heights,40.80464,-73.96418,Private room,70,3,0,,,1,0 +12324203,Top location amazing cozy 1BR,6360636,Anna B,Manhattan,East Village,40.72387,-73.98939,Entire home/apt,200,2,3,2016-10-06,0.08,1,0 +12324428,Comfy Room in Large E Williamsburg Apartment,1702298,Sofia,Brooklyn,Williamsburg,40.71378,-73.93762,Private room,40,15,0,,,1,0 +12324757,⚜ Two-Floor Vibrant 2BR Sanctuary with Patio! ⚜,2861820,Natalie And Dan,Brooklyn,Williamsburg,40.71172,-73.9417,Entire home/apt,205,2,7,2019-06-01,0.18,1,4 +12325036,Large Backyard Facing Bedroom & Private Backyard,30848788,Jamie,Brooklyn,Bedford-Stuyvesant,40.69324,-73.94656,Private room,45,4,35,2019-06-14,0.91,2,89 +12325045,IDEAL One bedroom apt by Central Park!,66501870,K Alexandra,Manhattan,Midtown,40.76016,-73.9691,Entire home/apt,139,2,132,2019-06-30,3.66,1,154 +12325291,2F Live Like a Real NYer in Real 3Bd!,26405086,Bill & May,Manhattan,Washington Heights,40.83326,-73.94215,Entire home/apt,339,1,87,2019-06-30,2.28,4,318 +12326402,Comfy spacious apartment with wi-fi,66513544,Michele,Brooklyn,Brownsville,40.65775,-73.90486,Entire home/apt,49,14,3,2018-11-17,0.08,1,291 +12326470,Charming 1BR by Central Park,1304893,Tanya,Manhattan,Upper West Side,40.78495,-73.9731,Entire home/apt,190,4,1,2018-06-29,0.08,1,118 +12328112,GREENPOINT OASIS,1180190,Justin,Brooklyn,Greenpoint,40.731,-73.9548,Entire home/apt,450,365,17,2019-01-03,0.50,1,365 +12332789,"Brooklyn Private Bath&Bed Steps to F,G trains",14898658,Chadanut,Brooklyn,Kensington,40.64345,-73.98015,Private room,45,1,103,2019-03-11,2.68,11,0 +12333456,"Bright, Airy Wburg 1BR w/ Roof View of NYC Skyline",66566329,Jacqueline,Brooklyn,Williamsburg,40.71926,-73.94206,Entire home/apt,199,2,29,2019-05-26,0.74,1,174 +12333601,"Cozy room in Carroll Gardens, Brooklyn",9632055,Daniel,Brooklyn,Carroll Gardens,40.68378,-74.00046,Entire home/apt,55,2,0,,,1,0 +12335391,Sexy red room with the softest bed!,49746853,Ilya,Brooklyn,Bedford-Stuyvesant,40.68042,-73.91811,Private room,33,13,7,2018-07-24,0.20,1,297 +12336343,Waterfront Apt with Stunning View!!,15753023,Peter,Brooklyn,Williamsburg,40.71102,-73.9689,Entire home/apt,149,4,5,2016-11-27,0.14,1,0 +12336668,Convenient location + Rooftop Acces,4207560,Amanda,Brooklyn,Williamsburg,40.70928,-73.95286,Private room,80,1,54,2017-07-21,1.37,1,0 +12337005,Beautiful Fort Greene Loft,2774967,Gabriel,Brooklyn,Fort Greene,40.6921,-73.97279,Entire home/apt,120,3,25,2019-06-19,0.72,1,0 +12338559,In the heart of Williamsburg!,26414016,Guillermo,Brooklyn,Williamsburg,40.71806,-73.95775,Private room,73,1,4,2016-10-02,0.11,2,0 +12339863,Loft,10035055,Claudine,Manhattan,Tribeca,40.72138,-74.00767,Entire home/apt,2500,4,0,,,1,89 +12341856,SUNNY BEDROOM IN LARGE BK APT!,9123131,Sean,Brooklyn,Crown Heights,40.67068,-73.94084,Private room,44,3,32,2019-06-03,0.83,2,0 +12342004,Lovely West Harlem Apartment,6416695,Patrice,Manhattan,Washington Heights,40.83549,-73.94729,Entire home/apt,105,3,8,2017-07-05,0.21,1,0 +12342269,Newly Renovated Upper East Side Apartment,1892706,Madeleine,Manhattan,East Harlem,40.78993,-73.94718,Private room,70,1,0,,,1,0 +12342297,Private bedroom in high-ceiling 4BR apartment!,19953913,Alejandro,Manhattan,Hell's Kitchen,40.76116,-73.99016,Private room,120,2,17,2017-04-28,0.43,1,0 +12342441,"Sunny, Spacious, Parkside Room!",21340955,Shean,Brooklyn,Flatbush,40.65402,-73.96073,Private room,57,3,33,2019-05-31,0.85,3,345 +12342876,Cozy&Spacious in Beautiful Astoria,8389062,Eliza,Queens,Astoria,40.76202,-73.91467,Entire home/apt,120,1,1,2016-06-12,0.03,1,0 +12342979,Beautiful Room - Ideal for Business Travelers!,1462483,Danny,Manhattan,Midtown,40.74566,-73.9834,Private room,100,4,40,2019-06-19,3.36,2,164 +12343098,Fabulously Located Comfortable 3 Bedroom Loft,66640174,E.C.,Manhattan,Flatiron District,40.7411,-73.99024,Entire home/apt,525,5,49,2019-06-13,1.26,1,314 +12343127,Centre of Williamsburg,8854804,Nicolin,Brooklyn,Williamsburg,40.71635,-73.95746,Private room,100,3,0,,,1,0 +12343793,Cozy room in Prime Williamsburg,7476145,Alexis,Brooklyn,Williamsburg,40.71811,-73.95793,Private room,75,3,3,2017-01-16,0.09,1,0 +12344255,JULY/AUG SUBLET,66649328,Carlos,Brooklyn,Sheepshead Bay,40.60754,-73.95297,Entire home/apt,45,1,0,,,1,0 +12344391,Big sunny room in Bushwick,8308648,Kristina,Brooklyn,Bushwick,40.6879,-73.91767,Private room,65,1,2,2016-12-31,0.06,2,0 +12344456,"NEWLY RENOVATED, studio in Park Slope",40040638,Karen,Brooklyn,Park Slope,40.67522,-73.98063,Entire home/apt,132,1,67,2019-06-27,1.77,1,264 +12344949,Brand new luxury 2 br Harlem condo,33993577,Nick,Manhattan,Harlem,40.80882,-73.94654,Entire home/apt,350,5,0,,,1,0 +12345178,Flushing Deluxe Room w/1Full and 1Twin Size Bed,65809485,Shirley,Queens,Flushing,40.74849,-73.82914,Private room,50,7,83,2019-05-12,2.15,12,171 +12345354,Tidy relaxing and sunny bedroom,921269,Fer,Manhattan,East Harlem,40.79711,-73.93647,Private room,60,3,27,2016-12-09,0.69,1,0 +12345615,Natural light comfortable room!,52196858,Danny,Bronx,Parkchester,40.83648,-73.85812,Private room,59,1,120,2019-07-02,3.11,2,336 +12345786,Wonderful East Village Bedroom,44223203,Mike,Manhattan,East Village,40.72803,-73.98853,Private room,80,1,32,2019-05-05,0.85,1,0 +12346131,★ HEBREWS 13:2 ★,23732730,Buddy,Bronx,Pelham Gardens,40.86323,-73.84638,Entire home/apt,450,2,81,2019-07-06,2.07,4,342 +12346483,Nice Room in a Sweet Bushwick Apt,42032781,Matt,Brooklyn,Williamsburg,40.70496,-73.93024,Private room,45,3,7,2019-06-18,0.41,1,133 +12353119,3F 4bd/2bath Luxury Apt in Manhattan/NYC,26405086,Bill & May,Manhattan,Washington Heights,40.83543,-73.94456,Entire home/apt,359,1,126,2019-07-01,3.21,4,318 +12355067,Highline view,31502455,Jonathan,Manhattan,Chelsea,40.74553,-73.99784,Private room,200,1,1,2016-05-21,0.03,1,0 +12356709,Spacious 1 BR by Central Park!,52656626,Cassandra,Manhattan,Upper West Side,40.79772,-73.9626,Entire home/apt,120,3,11,2017-08-17,0.32,1,0 +12356873,"Sunny, spacious Upper East Side studio, sleeps 3",43806964,Evan,Manhattan,Upper East Side,40.77667,-73.95463,Entire home/apt,140,2,6,2016-10-10,0.17,1,0 +12358117,Big House near express trains,37978030,Doug,Brooklyn,Flatbush,40.63129,-73.96611,Entire home/apt,436,3,9,2019-07-02,0.37,1,27 +12358120,Sunny 1BR apartment in Chelsea,2640854,Bryan,Manhattan,Chelsea,40.74045,-73.99824,Entire home/apt,249,3,9,2016-10-31,0.23,1,0 +12358495,Beautiful 1 bed Apt in Midtown!,16596850,Robby,Manhattan,Midtown,40.75761,-73.96217,Entire home/apt,300,1,0,,,1,0 +12359146,Spacious Place in Brooklyn New York,39549563,Young,Brooklyn,Bedford-Stuyvesant,40.68075,-73.91099,Entire home/apt,140,30,38,2018-09-21,1.10,1,312 +12360207,One station from Manhattan Bedford,3922831,Serra,Brooklyn,Williamsburg,40.71592,-73.96265,Entire home/apt,170,5,35,2019-06-26,0.90,1,290 +12360254,Prime Williamsburg balcony cityview,32193665,Nicolas,Brooklyn,Williamsburg,40.71671,-73.94989,Entire home/apt,200,2,0,,,1,0 +12360322,Cozy Bdr 15 min from Manhattan!,11626567,Francisco,Brooklyn,Williamsburg,40.70661,-73.93642,Private room,60,1,2,2016-04-17,0.05,1,0 +12360660,Large Furnished room in New two bedroom apt.,5074556,Bob,Manhattan,Chinatown,40.71703,-73.99338,Private room,94,3,4,2017-10-15,0.10,1,364 +12362194,Upper West Side Quiet Gem,11039974,Poppi,Manhattan,Upper West Side,40.78039,-73.98426,Entire home/apt,399,1,0,,,2,0 +12363920,Rent a room in modern Bushwick apt,66787512,Henrik,Brooklyn,Bushwick,40.69969,-73.91896,Private room,45,1,7,2016-06-19,0.18,1,0 +12365206,"Large Brooklyn Room, close to train",24038764,Nataly,Brooklyn,Cypress Hills,40.67708,-73.89236,Private room,60,3,2,2016-07-13,0.05,1,0 +12365836,Beautiful 2 bedroom Duplex Apartment,35660592,Luis,Queens,Maspeth,40.73976,-73.8954,Private room,169,3,27,2019-05-18,0.78,6,256 +12366132,Cozy East Village Loft!,66614646,Britta,Manhattan,East Village,40.72444,-73.98136,Private room,80,3,1,2016-06-28,0.03,1,0 +12366226,Spacious 1BD/BA in heart of Bushwick,22288459,Alexi,Brooklyn,Bedford-Stuyvesant,40.69537,-73.93494,Private room,55,1,12,2019-05-19,0.75,2,22 +12366408,Near to Central Park and 1 ride to Times Sq!,66807700,Gabi,Manhattan,East Harlem,40.79505,-73.94361,Entire home/apt,220,2,140,2019-05-27,3.60,3,341 +12366762,Bergen Beach 3 or 4 Bedrooms 2 bath,66810906,Carmen,Brooklyn,Bergen Beach,40.6235,-73.91056,Entire home/apt,235,4,32,2019-06-11,0.88,1,322 +12367315,Large 1 Bdrm in Clinton Hill,5960171,Jackie,Brooklyn,Clinton Hill,40.68809,-73.96027,Entire home/apt,125,3,2,2016-06-29,0.05,1,0 +12367449,I HEART LIC...you will too!,3121134,Allison,Queens,Astoria,40.7619,-73.91985,Private room,66,1,1,2016-08-06,0.03,1,0 +12367673,Large cosy room-Financial District,12326402,Daniela,Manhattan,Financial District,40.70873,-74.00601,Private room,80,1,5,2016-11-09,0.13,1,0 +12368099,Home 4 Medical Professionals-St Johns Hospital,26377263,Stat,Queens,Far Rockaway,40.5978,-73.75296,Private room,40,30,0,,,43,354 +12368109,Private room in a nice neighborhood,5741728,Ben,Queens,Astoria,40.76625,-73.91448,Private room,57,2,14,2017-01-03,0.37,1,0 +12370347,Super Sunny Room with Fireplace!,116382,Anthony,Brooklyn,Crown Heights,40.66882,-73.9404,Private room,48,2,107,2019-06-29,2.74,5,268 +12375976,Tompkins Square Apartment,16617640,Martin,Manhattan,East Village,40.72376,-73.97975,Entire home/apt,99,20,2,2017-01-10,0.06,1,0 +12376365,SERENITY ROOM,45601111,Dlb,Queens,Laurelton,40.66952,-73.74624,Private room,40,2,47,2019-02-15,1.19,5,173 +12377267,4 Bedroom Apartment on the UWS (1A),65364483,Irina,Manhattan,Upper West Side,40.79839,-73.96804,Entire home/apt,250,90,0,,,2,90 +12379298,New Colorful East Village Modern Apt off Bowery,66904643,Elizabeth,Manhattan,East Village,40.72421,-73.99041,Private room,180,1,14,2018-09-06,0.40,1,90 +12380717,"1 BR/BA right next to trains, Central Park + more",41265342,Michael,Manhattan,Upper East Side,40.76769,-73.9585,Entire home/apt,115,2,7,2017-06-18,0.20,1,0 +12381255,Cozy Bedroom with Balcony in Williamsburg Apt,4249297,Martina,Brooklyn,Williamsburg,40.71065,-73.95115,Private room,104,2,19,2019-06-30,0.49,2,249 +12381336,Glorious Williamsburg Penthouse,66919869,Jonathan,Brooklyn,Williamsburg,40.71742,-73.95777,Entire home/apt,325,4,12,2019-06-21,0.49,1,6 +12382140,Luxury 2BR Midtown East-Near the UN,26521212,Laura,Manhattan,Midtown,40.75322,-73.97321,Entire home/apt,299,2,14,2019-05-03,0.36,3,0 +12383041,Room in Renovated BK Brownstone,17001409,Caitlin,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94316,Private room,40,1,5,2016-06-07,0.13,1,0 +12383067,Cherry Blossom Room on East 95th Street,24532289,Alice,Manhattan,Upper East Side,40.78755,-73.95493,Private room,89,1,9,2019-06-23,0.23,1,198 +12384862,Bright Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76302,-73.99416,Entire home/apt,100,30,7,2019-04-10,0.19,31,244 +12385002,Private 1 Bedroom Apartment SLEEPS 4 -Close to All,66949758,Shanie,Queens,Jamaica,40.70085,-73.81284,Entire home/apt,59,1,27,2019-05-22,0.70,2,62 +12385794,"CLEAN,SPACIOUS,CONVENIENT,FiDi/NYC Apartment",7511223,Shan,Manhattan,Financial District,40.70799,-74.00977,Entire home/apt,300,3,100,2019-06-22,2.66,1,335 +12386361,One Bedroom Heart of New York City,2017504,Fataah,Manhattan,Gramercy,40.73365,-73.98481,Private room,65,1,0,,,2,0 +12386579,Charming Private Library-Room,66961444,JoJo,Manhattan,Inwood,40.87133,-73.91562,Private room,50,2,74,2019-04-27,1.98,1,310 +12387018,Modern 1BR in Downtown Manhattan,31280252,Josef,Manhattan,Lower East Side,40.71894,-73.98738,Entire home/apt,120,1,0,,,1,0 +12387215,Private Room with 1/2 Bath in LES!,14278457,Jessica,Manhattan,Lower East Side,40.71257,-73.98671,Private room,125,1,0,,,1,0 +12387961,BEAUTIFUL 1bd/1bath available in Williamsburg,59742433,Franco,Brooklyn,Williamsburg,40.70851,-73.95443,Private room,80,4,2,2019-05-06,0.77,1,66 +12388091,Diamond in Upper West Side,1704335,Rem,Manhattan,Upper West Side,40.79749,-73.96307,Private room,56,7,1,2016-06-05,0.03,1,0 +12388347,Designer 1BR in Hell's Kitchen NYC,6884235,Kyle,Manhattan,Hell's Kitchen,40.76038,-73.98781,Entire home/apt,219,7,100,2019-06-22,2.66,1,235 +12388494,Hells Kitchen Studio,66977773,Catherine,Manhattan,Hell's Kitchen,40.768,-73.98557,Entire home/apt,197,1,0,,,1,0 +12389574,"More Space, 3 BR, 2 Bath, 2 floors",42329946,Collin,Brooklyn,Bushwick,40.69294,-73.92287,Entire home/apt,260,4,105,2019-06-15,2.85,1,48 +12389931,1 bedroom PRIVATE backyard in heart of Flatiron,5017615,Marie,Manhattan,Flatiron District,40.73922,-73.98886,Entire home/apt,115,14,3,2018-10-27,0.13,1,0 +12390529,Clean freshly renovated room,52196858,Danny,Bronx,Parkchester,40.83703,-73.85648,Private room,75,2,63,2019-05-18,1.80,2,150 +12396603,Dean Street Oasis,20942935,Miriam,Brooklyn,Crown Heights,40.67529,-73.93671,Private room,66,1,1,2016-05-02,0.03,1,0 +12397447,Cozy big bedroom with private balcony,35031188,Aldo,Queens,Astoria,40.77479,-73.93546,Private room,75,1,21,2019-06-21,0.55,1,364 +12398308,Huge family friendly loft in Soho,14136274,Stacey,Manhattan,SoHo,40.7244,-74.00681,Entire home/apt,500,2,0,,,1,0 +12400242,Spacious Brownstone with 5 beds on Second floor!,67045498,Jocelyne,Queens,Ridgewood,40.70918,-73.90089,Entire home/apt,215,1,38,2019-06-28,1.75,1,77 +12403252,Suite One at Bryant Manor,67069129,Kevin,Manhattan,Harlem,40.80967,-73.95295,Entire home/apt,175,2,136,2019-06-23,3.51,2,280 +12403816,Cozy and privat studio near Times Sq,67073298,K.Arina,Manhattan,Hell's Kitchen,40.76058,-73.99603,Entire home/apt,140,7,131,2019-06-28,3.37,1,111 +12404677,Loft room by the Brooklyn Bridge!,59958998,Alex,Brooklyn,Downtown Brooklyn,40.69449,-73.98367,Private room,80,1,0,,,1,0 +12404679,Studio- Wyndham Midtown 45,61532697,Tania,Manhattan,Midtown,40.75228,-73.97337,Private room,359,5,0,,,1,0 +12404734,Clean and Cozy Room in Williamsburg!,13406954,Jackie,Brooklyn,Williamsburg,40.7121,-73.96156,Private room,80,1,1,2016-05-23,0.03,3,0 +12404820,Perfect Neighborhood sublet,40015388,Daniel,Brooklyn,Park Slope,40.67086,-73.97847,Private room,935,1,0,,,1,0 +12404998,Cosy 1 bedroom apartment in Astoria,47380199,Kim,Queens,Astoria,40.76869,-73.91966,Entire home/apt,120,7,1,2016-06-05,0.03,1,0 +12405814,Sunny + Family Friendly Artist's Apartment,1468472,Eugenia,Bronx,Longwood,40.81384,-73.90514,Entire home/apt,85,5,4,2018-08-03,0.31,1,0 +12406683,Sunny Spacious South Slope Studio,25095488,Jason,Brooklyn,Sunset Park,40.66248,-73.99667,Entire home/apt,100,2,3,2017-01-13,0.10,1,0 +12406906,Bright Sunny Apartment Near Subway,11554193,Rishe,Brooklyn,Crown Heights,40.66753,-73.95099,Private room,64,5,7,2016-09-09,0.18,2,0 +12407244,"Charming, Sunny Room in Amazing LES",5790819,Gracie,Manhattan,Lower East Side,40.7192,-73.98431,Private room,75,2,3,2017-01-06,0.08,1,0 +12408850,1 BR in 2 BR Apt (Upper East Side),67105547,Jeffrey Paul,Manhattan,East Harlem,40.78898,-73.95478,Private room,62,1,32,2018-10-01,0.83,1,0 +12409217,Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76347,-73.99296,Entire home/apt,96,30,5,2018-06-10,0.13,31,246 +12409364,Modern Luxury 1BR with Patio,36663219,Amber,Manhattan,Kips Bay,40.74462,-73.97746,Entire home/apt,350,3,0,,,1,0 +12409508,"Cozy, Central Park, UES, Train 6",13755526,Christos,Manhattan,Upper East Side,40.7673,-73.9594,Entire home/apt,100,1,0,,,1,0 +12410412,Victorian Flatbush Family Friendly,6662358,Elizabeth,Brooklyn,Flatbush,40.64933,-73.96478,Entire home/apt,290,5,4,2018-08-19,0.11,1,0 +12411380,Small Bedroom Steps From the 1 Train,67123961,Carole,Manhattan,Harlem,40.82088,-73.95628,Private room,50,2,12,2017-08-28,0.31,2,0 +12411737,Great Location 1 BR Apt - Manhattan,52559052,Abe,Manhattan,Midtown,40.76657,-73.98207,Entire home/apt,150,2,0,,,1,0 +12412900,Cozy 5Min2CentralPark/BroadwayShows/TimesSquareNY,2874126,Joseph,Manhattan,Hell's Kitchen,40.76535,-73.98874,Private room,81,4,27,2018-06-25,0.70,1,188 +12417189,Largest room in Astoria! Close to all mass transit,13168457,Rob,Queens,Astoria,40.76555,-73.91458,Private room,70,2,18,2016-11-15,0.46,1,89 +12419487,Cozy bedroom w/private bathroom & backyard,44781865,Manon,Brooklyn,Clinton Hill,40.68761,-73.95979,Private room,70,2,31,2019-05-26,0.83,1,0 +12420694,Spacious room with private rooftop!,20471565,Harry,Manhattan,East Village,40.72522,-73.98114,Private room,150,3,0,,,1,0 +12420947,Williamsburg entire apartment,3642404,Maya,Brooklyn,Williamsburg,40.70965,-73.95675,Entire home/apt,95,4,10,2019-06-23,0.37,1,0 +12421102,"Sunny Floor-thru, Prospect Heights",3518697,Donnell,Brooklyn,Crown Heights,40.67634,-73.96177,Entire home/apt,150,1,1,2016-07-06,0.03,1,188 +12422277,Spacious Studio w/ Patio- Ft Greene,43924728,Shawn,Brooklyn,Fort Greene,40.68702,-73.97506,Entire home/apt,169,2,136,2019-06-16,3.46,1,251 +12422777,Large room in 3 bedroom apartment,26819014,Zuri,Brooklyn,Cypress Hills,40.67893,-73.89423,Private room,25,1,0,,,1,0 +12422969,Huge Flatiron Designer Studio,22627365,Chin-Feng,Manhattan,Flatiron District,40.74047,-73.98932,Entire home/apt,154,1,0,,,1,0 +12423497,Luxury building studio apartment,2455544,Viola,Manhattan,Midtown,40.76507,-73.98393,Entire home/apt,140,5,1,2016-05-04,0.03,1,0 +12423868,Small Sunny 1BR Apt Bradhurst Park,9754272,Tim,Manhattan,Harlem,40.82616,-73.94023,Entire home/apt,130,2,5,2016-10-30,0.13,1,0 +12425266,Violet Terrace,67208195,Clarissa,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91761,Private room,60,2,53,2019-07-07,1.37,2,365 +12425296,Location/Charm/Comfort-Live the West Village dream,43585775,Rachel,Manhattan,West Village,40.73475,-74.0044,Entire home/apt,250,3,0,,,1,0 +12426775,"Great Room & Location, Williamsburg",9249156,Kevin,Brooklyn,Williamsburg,40.71019,-73.95439,Private room,55,3,2,2016-06-29,0.05,1,0 +12426778,TH BRKLYN,7963317,Rob,Brooklyn,Boerum Hill,40.68834,-73.98601,Private room,150,1,0,,,1,0 +12426957,Room for 2,20069770,Bryant,Brooklyn,Bushwick,40.69336,-73.9213,Private room,45,2,2,2017-06-16,0.08,1,0 +12427898,NEW Modern Apartment w/ OutdoorDeck,67223979,Arkadiy,Brooklyn,Sunset Park,40.66482,-73.99609,Entire home/apt,199,1,164,2019-06-20,4.25,1,340 +12430126,Beautiful 2 BR by Columbia,31796914,Jenna,Manhattan,Morningside Heights,40.80507,-73.96465,Entire home/apt,290,4,3,2018-01-05,0.08,1,0 +12430153,Brownstone charm-1st Fl with yard,26010563,Scott,Manhattan,Upper West Side,40.78054,-73.97779,Entire home/apt,85,2,7,2016-06-26,0.18,1,0 +12431649,1 bed Apt Near to Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76306,-73.99257,Entire home/apt,150,30,3,2018-11-05,0.12,31,332 +12433088,Simple Suite with Private Bathroom,65258815,Mrs. Alabi,Brooklyn,Crown Heights,40.6736,-73.92612,Entire home/apt,60,2,23,2019-06-27,6.22,2,33 +12433302,Lovely Brownstone Garden Apartment,425363,Marni,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95231,Entire home/apt,170,5,55,2019-07-03,1.44,1,82 +12433898,Cuarto muy confortable. 2 personas. Cerca de todo.,67261284,Dante,Queens,Jackson Heights,40.75302,-73.8797,Private room,47,1,15,2018-12-20,0.39,2,0 +12434717,Comfortable Small Room with wifi,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.94542,Private room,55,2,60,2019-06-23,1.62,4,88 +12443469,Private patio on the LES.,970831,Phillip,Manhattan,Chinatown,40.71472,-73.99081,Entire home/apt,195,2,80,2019-06-16,2.04,1,14 +12445316,"One train ride to Times SQ, Central Park, LOCATION",66807700,Gabi,Manhattan,East Harlem,40.79456,-73.94345,Entire home/apt,186,2,139,2019-06-19,3.60,3,73 +12445714,Sun kissed 1br Harlem (WHOLE apt),67332509,Nkem,Manhattan,Harlem,40.82579,-73.94324,Entire home/apt,99,1,3,2016-05-29,0.08,1,0 +12446494,Cozy 2Bed in Hell's Kitchen,21742264,Maggie,Manhattan,Hell's Kitchen,40.76304,-73.99166,Entire home/apt,155,1,0,,,1,0 +12446548,Sunny Quiet Bedroom in Brooklyn,102525,David,Brooklyn,South Slope,40.66768,-73.98425,Private room,60,3,27,2019-05-20,0.71,2,308 +12447273,Sunny room in 3 bedroom apt.,67341852,Grace,Brooklyn,Gowanus,40.68474,-73.98862,Private room,100,1,1,2016-05-15,0.03,1,0 +12450591,"2 bed, 2 bath near parks, subway",35079352,Heidi,Manhattan,Upper West Side,40.7992,-73.97158,Entire home/apt,500,5,3,2018-06-29,0.09,1,44 +12450817,Ft Green Sunlit 1 Bedroom Apartment,67063688,Kali,Brooklyn,Fort Greene,40.68521,-73.97131,Entire home/apt,150,2,68,2019-06-23,1.74,1,319 +12451425,amazing studio in heart of Manhatta,60996330,Nassim,Manhattan,Murray Hill,40.74893,-73.97037,Entire home/apt,175,1,3,2017-04-19,0.09,1,0 +12452110,Traveller's Flat – Hell's Kitchen,12327430,Marco,Manhattan,Hell's Kitchen,40.76386,-73.99707,Entire home/apt,148,4,104,2019-06-23,2.70,2,145 +12453775,Stunning Central Park - 1BR,7695686,Martin,Manhattan,Harlem,40.80057,-73.9556,Private room,130,3,44,2019-05-26,1.15,1,80 +12454556,Fun room in East Village,8671253,Atlanta,Manhattan,East Village,40.72414,-73.9801,Private room,80,2,3,2016-05-31,0.08,1,0 +12462634,Sunny and Beautiful UWS 1BDRM,48091946,Alexis,Manhattan,Upper West Side,40.77775,-73.98169,Entire home/apt,150,2,5,2016-11-18,0.13,1,0 +12464635,Sunny & Stylish 2BR in Williamsburg,639785,Aunim,Brooklyn,Williamsburg,40.71774,-73.95466,Entire home/apt,285,2,17,2017-09-03,0.44,1,0 +12465732,Sunny Room in NYC,47638752,Adrien,Manhattan,Chinatown,40.7133,-73.9956,Private room,70,3,1,2016-05-20,0.03,1,0 +12467421,Luxury studio heart of Manhattan,67471774,Grace.EJ,Manhattan,Upper West Side,40.77504,-73.9896,Entire home/apt,150,1,0,,,1,0 +12468908,"High-end, garden view, near Prospect Park",16437254,Benjamin,Brooklyn,Prospect Heights,40.67631,-73.96635,Entire home/apt,155,30,1,2018-08-14,0.09,21,61 +12470877,Cozy East Village Apartment,67493763,Katherine,Manhattan,East Village,40.72952,-73.98214,Private room,82,1,4,2017-07-31,0.16,1,0 +12471447,Great UWS 1 bedroom duplex,36966894,Sarah,Manhattan,Upper West Side,40.77835,-73.97655,Entire home/apt,200,3,5,2016-05-29,0.13,1,0 +12472230,Cozy Cat Cave in Bushwick,51520084,Samantha,Brooklyn,Bedford-Stuyvesant,40.69687,-73.93542,Private room,60,1,0,,,1,0 +12472883,Private room in apt,12114372,Kaylin,Manhattan,Gramercy,40.73631,-73.98525,Private room,150,7,0,,,1,0 +12477280,QUEEN-SIZED ROOM IN LUXURIOUS PARK AVENUE FLAT,283395,H,Manhattan,Murray Hill,40.7493,-73.9794,Private room,159,1,17,2017-12-10,0.44,2,155 +12482870,Cozy private room with city charm,4620141,Ellen,Manhattan,Washington Heights,40.84659,-73.93252,Private room,38,5,11,2017-08-22,0.31,2,0 +12485134,Charming 1 bedroom East Village Apt,5206786,Eli,Manhattan,East Village,40.72804,-73.98867,Entire home/apt,155,5,12,2019-04-26,0.31,1,2 +12485862,Sunny apt w/HUGE terrace & rooftop,33936693,Sara,Brooklyn,Williamsburg,40.71173,-73.96646,Entire home/apt,184,4,79,2019-06-18,2.21,1,222 +12487909,旅途中的家,66574216,Mabel,Queens,Flushing,40.76564,-73.82043,Private room,65,1,122,2019-06-24,3.16,1,86 +12492242,The Sunset Boudoir,38864859,Candi,Manhattan,Upper East Side,40.7842,-73.95105,Entire home/apt,150,1,0,,,1,0 +12492594,Brooklyn bedroom near Prospect Park & subway,9361557,Joe,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96193,Private room,50,1,70,2018-07-22,1.79,2,0 +12492941,Spacious Room with Private a Patio!,67640934,Paulette,Brooklyn,Bedford-Stuyvesant,40.68361,-73.93845,Private room,60,2,34,2017-09-27,0.88,1,0 +12493228,Bright Airy Cozy Spacious Bedroom,816008,Elika,Manhattan,Hell's Kitchen,40.76093,-73.99014,Private room,100,5,8,2017-07-31,0.21,1,0 +12493291,Sunny room with great transit,6119244,Rachel,Queens,Jackson Heights,40.75069,-73.89476,Private room,60,2,26,2019-03-31,0.78,1,307 +12494415,H. Potter theme place,67651553,Yunqiu,Manhattan,Upper West Side,40.80302,-73.96511,Entire home/apt,110,10,0,,,2,0 +12494870,Private Room in Beautiful Apartment,12140588,Kiri,Brooklyn,Greenpoint,40.72619,-73.95563,Private room,50,3,2,2017-01-02,0.06,1,0 +12495520,Manhattan Club Penthouse Suite,57769941,Mario,Manhattan,Midtown,40.7659,-73.98211,Entire home/apt,325,1,0,,,1,0 +12495562,Zen Artist Village Studio,2821521,Zach,Manhattan,Greenwich Village,40.73372,-73.99834,Entire home/apt,225,3,60,2019-06-23,1.54,1,18 +12495831,Sunny studio loft in midtown with elevator!,22527211,Nathan,Manhattan,Midtown,40.75914,-73.96591,Entire home/apt,190,29,53,2019-04-30,1.40,1,165 +12495887,Bright & Sunny Greenpoint Studio,2104160,Brendon,Brooklyn,Greenpoint,40.7369,-73.95288,Entire home/apt,119,4,4,2017-05-09,0.10,1,0 +12496037,1/2 block to Central Park - W 84th Street,23870466,Susan,Manhattan,Upper West Side,40.78475,-73.9717,Entire home/apt,650,30,3,2018-10-15,0.09,1,137 +12496118,Entire Home in NYC- 1 bedroom/ Private Entrance,11305944,Yahaira,Bronx,Allerton,40.86947,-73.85993,Entire home/apt,104,2,33,2019-06-12,0.85,5,86 +12497438,"Large, beautiful 1 bedroom downtown Manhattan",67674810,Cristina,Manhattan,Chinatown,40.7164,-73.99743,Entire home/apt,175,30,4,2018-06-24,0.11,1,0 +12497757,Fully Furnished Williamsburg Apt,50137233,Courtney,Brooklyn,Williamsburg,40.712,-73.94609,Private room,190,1,0,,,1,0 +12497783,Clean and safe department in NYC.,67677095,Baochan,Manhattan,Upper West Side,40.8015,-73.96605,Private room,40,3,1,2016-07-16,0.03,1,0 +12502633,New Apt. in Park Slope / Gowanus,379619,J. E,Brooklyn,Gowanus,40.667,-73.99233,Entire home/apt,100,1,378,2019-07-07,9.67,1,48 +12504542,Charming Brooklyn Brownstone!,3982538,Joel,Brooklyn,Prospect Heights,40.67908,-73.97333,Private room,75,1,0,,,1,0 +12505852,Upper West Side 1 bedroom,5775272,Lindsey,Manhattan,Upper West Side,40.78406,-73.98431,Entire home/apt,125,1,0,,,1,0 +12508552,"Convenient Room, at the Center of Manhattan Living",7475578,MaTT,Manhattan,Little Italy,40.71941,-73.99706,Private room,85,5,26,2019-05-06,0.67,2,160 +12509350,Williamsburg/GreenPoint Room,31376006,Carlos Esteban,Brooklyn,Greenpoint,40.72191,-73.94405,Private room,60,1,2,2016-05-08,0.05,1,0 +12511986,Historic Harlem 4,3905432,Rose,Manhattan,Harlem,40.81614,-73.94429,Private room,90,6,8,2018-12-25,0.22,2,296 +12513217,Upper West Side Manhattan Comfort 1,67768251,Felipe,Manhattan,Upper West Side,40.78461,-73.97787,Private room,53,30,4,2019-03-17,0.17,3,185 +12519042,Private-cozy Brooklyn Apt. Room,67803853,Juan,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94793,Private room,50,3,26,2018-10-14,0.68,1,0 +12519645,Upper East Side Room,56623911,Christa,Manhattan,East Harlem,40.78809,-73.95333,Private room,45,1,3,2016-05-20,0.08,1,0 +12519757,On Central Park West,3207402,John 'Lance',Manhattan,Upper West Side,40.79904,-73.96045,Private room,110,4,7,2017-12-30,0.23,1,125 +12519774,Sunny Two Bedroom in South Slope,2593193,Fiona,Brooklyn,Sunset Park,40.66127,-73.99154,Entire home/apt,200,7,0,,,1,11 +12520066,Luxury townhouse Greenwich Village,66240032,Linda,Manhattan,Greenwich Village,40.73046,-73.99562,Entire home/apt,6000,1,0,,,1,0 +12521735,Cozy Apartment in Queens — 20 Min to Manhattan,34790915,Katie,Queens,Ridgewood,40.7003,-73.89983,Private room,70,2,0,,,1,0 +12522024,GREAT STUDIO IN HEART OF EAST VILLAGE!,10665495,Tom,Manhattan,East Village,40.72626,-73.9894,Entire home/apt,199,4,3,2017-05-29,0.08,1,0 +12523287,"Clean Cozy Room, close to Subway Shops Restaurants",5069809,Hua,Queens,Forest Hills,40.71915,-73.84397,Private room,65,2,29,2019-06-10,0.77,1,333 +12532453,Spacious Williamsburg Apartment,18004909,Josh,Brooklyn,Williamsburg,40.71513,-73.94848,Private room,95,2,1,2016-05-01,0.03,1,9 +12534110,Spacious Room in Downtown Brooklyn,6604691,Dhruti,Brooklyn,Downtown Brooklyn,40.69531,-73.98306,Private room,80,5,0,,,1,0 +12535946,LUX One Bedroom Doorman W&D 5133,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79433,-73.96518,Entire home/apt,200,30,1,2018-11-27,0.13,96,337 +12536976,Sunny & Luxurious West Village Apartment!,55457305,Mila & Jon,Manhattan,West Village,40.72981,-74.00348,Entire home/apt,274,6,37,2019-06-23,0.94,1,339 +12537157,CoZy RooM & Private Bathroom BK:) SUPERHOST :),3441272,Jasmin,Brooklyn,Bushwick,40.69758,-73.93493,Private room,50,2,93,2019-06-18,2.39,5,202 +12537221,Great Location,67884746,Linda,Brooklyn,Prospect Heights,40.67947,-73.96466,Private room,105,2,172,2019-06-24,4.50,1,83 +12538440,20 Day Room Rental in Manhattan!!,67931669,Indigo,Manhattan,Harlem,40.81498,-73.95078,Private room,45,20,0,,,1,0 +12539250,1BR in Midtown West Apartment,10158478,Peter,Manhattan,Hell's Kitchen,40.76148,-73.99489,Private room,350,1,0,,,1,0 +12539359,Cute and cosy one bedroom,60946174,Zineb,Manhattan,Upper East Side,40.78093,-73.95175,Private room,350,1,9,2016-10-08,0.23,1,90 +12542485,2 BDRM Apt. in the Middle of NYC apt. 3B,17770287,Nina,Manhattan,Murray Hill,40.7493,-73.98132,Entire home/apt,180,30,5,2019-03-09,0.14,14,210 +12542544,Near Times Square,64837317,Michael,Manhattan,Hell's Kitchen,40.76231,-73.9952,Entire home/apt,225,4,128,2019-07-07,3.39,1,218 +12542909,Huge 800 sq ft 1 bedroom apt,67758079,Janelle,Queens,Sunnyside,40.74706,-73.92076,Entire home/apt,100,1,1,2016-05-10,0.03,1,0 +12543988,Sunny Williamsburg Sublet,17763535,Greta,Brooklyn,Williamsburg,40.71183,-73.94918,Private room,1300,1,0,,,1,0 +12545436,A cozy home,43128266,常春,Manhattan,Washington Heights,40.83271,-73.94007,Private room,55,1,5,2018-04-01,0.13,3,332 +12546799,Beautiful Sunlight Studio Apt,3089851,Christie,Brooklyn,Bedford-Stuyvesant,40.69175,-73.95554,Entire home/apt,70,7,4,2018-04-07,0.12,1,0 +12547169,"Prime, Modern & Spacious Williamsburg Apartment",4354856,Jay,Brooklyn,Williamsburg,40.71486,-73.94826,Private room,50,60,0,,,2,0 +12547357,Spacious Bedroom on Eastern Parkway,12335685,Rebecca,Brooklyn,Crown Heights,40.67045,-73.95895,Private room,67,1,1,2016-05-17,0.03,1,0 +12547481,Big 1BR apt near Central Park & Times Square!,43436738,Abe & Gail,Manhattan,Midtown,40.76589,-73.98068,Entire home/apt,150,2,1,2016-06-25,0.03,1,0 +12549290,One Bedroom Wall St Luxury Apt,68013836,Mency,Manhattan,Financial District,40.70592,-74.00928,Private room,35,3,3,2016-08-26,0.09,1,0 +12553612,Sunny Bedroom w/ Private Bathroom in Williamsburg,24225572,Monica,Brooklyn,Williamsburg,40.71353,-73.95261,Private room,90,2,15,2019-06-16,1.05,1,6 +12554945,Manhattan Sunny Private Room,20586090,Grant,Manhattan,Harlem,40.82356,-73.95457,Private room,53,5,8,2017-01-05,0.23,1,0 +12556300,Lovely flat heart of New-York,15074852,Chloé Et Jean-Philippe,Manhattan,Hell's Kitchen,40.76253,-73.98939,Entire home/apt,300,2,0,,,1,0 +12558102,Studio Apt with Private Backyard,68070597,Joe,Brooklyn,Bedford-Stuyvesant,40.69756,-73.93893,Entire home/apt,80,21,0,,,1,0 +12558307,Luxury 2BR Midtown East-Near UN!,26521212,Laura,Manhattan,Midtown,40.75207,-73.97351,Entire home/apt,299,2,5,2019-05-05,0.15,3,0 +12558745,BK'S FINEST CLOSE 2 TRANSPORTATION-,50600973,Joyell,Brooklyn,Bushwick,40.69452,-73.92807,Private room,41,1,72,2018-06-09,1.88,7,0 +12559933,"Private Bedroom, Bath & Living room",68082818,Neil,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93526,Private room,50,2,1,2016-06-01,0.03,1,0 +12560110,Sunny Studio Apartment in Ridgewood,20907226,Michael,Queens,Ridgewood,40.70005,-73.8952,Entire home/apt,70,1,5,2017-08-07,0.21,1,0 +12560137,1BR. SugarHill. 15 Min Midtown.,51093380,Joe,Manhattan,Harlem,40.82302,-73.94477,Entire home/apt,500,1,0,,,1,365 +12560942,QUIET CLEAN APT IN THE HEART OF IT ALL 4,47577639,Jc,Manhattan,Chelsea,40.74137,-74.00399,Entire home/apt,185,4,49,2019-06-26,1.31,2,279 +12561615,Stunning Bedroom in Midtown East,68094755,Athena,Manhattan,Midtown,40.75709,-73.96327,Private room,98,3,98,2019-07-03,2.66,1,278 +12561681,"Penthouse 2BR w skylight,terrace, and a roof deck.",68094795,Diane And Ward,Manhattan,Upper East Side,40.76532,-73.9615,Entire home/apt,399,4,55,2019-06-17,1.47,2,237 +12561755,"Lrg sunny aprtmt, UWS/Central Park",2898343,Jamie (& Jacob),Manhattan,Upper West Side,40.79865,-73.96419,Entire home/apt,170,4,12,2017-12-26,0.31,1,0 +12562075,High Rise Financial District Apt,8756366,Amy,Manhattan,Financial District,40.70666,-74.00529,Private room,80,1,0,,,1,0 +12563738,Beautiful spacious brownstone in Central Harlem,10312167,Razia,Manhattan,Harlem,40.80276,-73.94976,Entire home/apt,376,28,53,2019-03-03,1.40,2,310 +12564287,Modern & cosy Bronx apt w/ parking,11761831,Lydie,Bronx,Wakefield,40.89118,-73.84987,Entire home/apt,99,3,68,2019-04-30,1.78,1,2 +12566262,2 bed apt: heart of Times Square,32503657,Gillian,Manhattan,Hell's Kitchen,40.75756,-73.99318,Entire home/apt,200,1,0,,,1,0 +12566957,Lovely Bed-Stuy Brownstone Parlor Apartment 1BR,26813492,Caleb,Brooklyn,Bedford-Stuyvesant,40.69065,-73.93708,Entire home/apt,91,5,3,2017-09-15,0.12,1,0 +12567631,Bedstuy Flat Sublet 3 WEEK MIN,3910530,Mathew,Brooklyn,Bedford-Stuyvesant,40.68459,-73.94993,Entire home/apt,60,1,0,,,1,0 +12567868,Nice bedroom in east village apartment,68138404,Phil,Manhattan,East Village,40.72997,-73.98009,Private room,60,3,50,2019-06-23,1.31,1,240 +12567993,Private bedroom near L & M trains,68139079,Gary,Brooklyn,Bushwick,40.70076,-73.92371,Private room,50,1,0,,,1,0 +12568401,"West village, great location!",57786447,Anne,Manhattan,West Village,40.73764,-74.00146,Entire home/apt,250,2,1,2016-05-18,0.03,1,0 +12568741,Large 1bdr perfect Village location,68145886,Emory,Manhattan,Greenwich Village,40.73432,-73.9972,Entire home/apt,209,2,75,2019-06-02,1.93,1,8 +12581875,Sunny Private Bedroom in Park Slope,342510,Maya,Brooklyn,South Slope,40.66383,-73.98252,Private room,65,1,0,,,1,0 +12582348,Large room in Astoria home,34546087,Rina,Queens,Astoria,40.7704,-73.91701,Private room,48,2,11,2017-11-25,0.29,1,0 +12583907,"1 Bedroom, Close to 4, 5, 6 trains",68250800,Anna,Manhattan,East Harlem,40.80015,-73.93764,Private room,60,1,137,2019-06-30,3.55,2,98 +12584072,Historic Gem Close to SI Ferry,68252461,Natalia,Staten Island,Clifton,40.62349,-74.07596,Entire home/apt,165,1,108,2019-06-20,2.78,1,298 +12585015,FANTASTIC FLOOR THROUGH ONE BEDROOM,18901504,Ronald,Manhattan,Midtown,40.755,-73.96671,Entire home/apt,218,5,69,2019-06-30,1.81,2,152 +12585126,Greenwich village West 4th Street,24018769,Takagi,Manhattan,West Village,40.73326,-74.00186,Entire home/apt,160,1,0,,,1,0 +12587017,Airy Apt w/ Balcony by Central Park,62850707,Madeleine,Manhattan,Upper West Side,40.78434,-73.97867,Entire home/apt,200,2,154,2019-05-31,4.02,1,51 +12587102,Spacious Loft in Williamsburg,1623346,Christopher,Brooklyn,Williamsburg,40.71468,-73.95841,Private room,53,2,2,2018-05-21,0.14,1,0 +12587698,Brooklyn Beauty - Private Room,26225727,Xiomara,Brooklyn,Bushwick,40.68601,-73.91167,Private room,65,3,76,2019-06-25,1.98,1,23 +12590077,Sunny Duplex in Brooklyn's Best Area,43438475,Viviana,Brooklyn,South Slope,40.66872,-73.98906,Entire home/apt,280,3,30,2019-06-10,0.79,3,125 +12590964,"Private room in Charming, Cozy and Sunny Apt",1520629,Pillo,Brooklyn,Clinton Hill,40.68374,-73.96719,Private room,60,1,67,2019-06-22,1.85,1,310 +12591059,2 Bedroom next to Prospect Park!,68240110,Elizabeth,Brooklyn,Prospect-Lefferts Gardens,40.65785,-73.96068,Entire home/apt,800,1,4,2016-05-22,0.10,1,357 +12592427,Lovely apartment as home,68309691,Cindy,Queens,Flushing,40.72635,-73.80237,Entire home/apt,99,1,229,2019-06-24,5.97,1,7 +12593389,"Modern, Central Park relaxation",10737943,David,Manhattan,Upper West Side,40.7998,-73.96098,Entire home/apt,120,30,18,2018-09-30,0.47,10,189 +12594614,1BR Avaliable in 3Br Condo,17603414,Kaan,Manhattan,Harlem,40.82471,-73.94332,Private room,70,4,27,2019-07-01,0.75,2,156 +12598128,UWS Duplex 3bdrm next to Central Pk,5162192,Amy,Manhattan,Upper West Side,40.79895,-73.95949,Entire home/apt,235,30,4,2018-12-22,0.10,12,209 +12598446,Spacious 4bdrm next to CentralPk,5162192,Amy,Manhattan,Upper West Side,40.7986,-73.96229,Entire home/apt,275,30,4,2019-01-09,0.15,12,199 +12600198,Luminous room,10577784,Julian,Queens,Astoria,40.76494,-73.92752,Private room,86,4,28,2019-01-03,0.74,2,242 +12600583,Shared Bedroom in Upper East Side!,13406954,Jackie,Manhattan,Upper East Side,40.78305,-73.95381,Shared room,49,1,3,2016-05-19,0.08,3,0 +12600938,Sunny light filled comfy bedroom,9848712,Randy,Manhattan,East Harlem,40.80118,-73.94513,Private room,85,3,86,2019-06-16,2.28,2,240 +12601401,"Astoria living, like a true NY'er",5059784,Seth,Queens,Astoria,40.76465,-73.92625,Entire home/apt,125,1,10,2016-07-11,0.26,1,0 +12601807,Sunny light filled bedroom,9848712,Randy,Manhattan,East Harlem,40.80073,-73.94465,Private room,85,3,89,2019-06-05,2.37,2,228 +12601900,Magical 1 BR in Crown Heights,16702803,Jacob,Brooklyn,Crown Heights,40.67426,-73.93968,Entire home/apt,70,2,2,2016-06-04,0.05,1,0 +12602212,Violet Sunset Room,67208195,Clarissa,Brooklyn,Bedford-Stuyvesant,40.68601,-73.91772,Private room,60,2,71,2019-06-30,1.84,2,363 +12602408,Cozy little room in beautiful brownstone house !,57059509,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69221,-73.93823,Private room,50,20,19,2018-08-31,0.56,1,2 +12604187,A top floor in Midtown,18901504,Ronald,Manhattan,Midtown,40.75369,-73.96632,Entire home/apt,218,5,81,2019-06-29,2.10,2,185 +12606349,SPACIOUS 2 BR APT WITH PRIVATE BACKYARD,9293730,Inna,Manhattan,East Harlem,40.7888,-73.94247,Entire home/apt,135,30,13,2019-01-24,0.37,16,330 +12606676,"Large, next to park, subway gardens",13822373,Brian,Brooklyn,Prospect-Lefferts Gardens,40.66223,-73.95955,Private room,120,2,2,2017-01-01,0.06,1,0 +12609695,Comfy in Queens!,66734502,Laura,Queens,Astoria,40.76188,-73.91766,Private room,55,3,3,2016-08-24,0.08,2,0 +12611122,"Styled, Spacious Ft Greene Studio",6444711,Emily,Brooklyn,Fort Greene,40.68672,-73.97555,Entire home/apt,150,2,7,2017-05-15,0.19,1,0 +12619450,Quiet-Private Large Brooklyn Studio,1539941,Ron,Brooklyn,Kensington,40.63568,-73.97383,Entire home/apt,75,2,10,2019-05-27,0.26,1,362 +12621050,"Clean, Mod & Quick to Times Square",15218314,Ronald,Manhattan,Harlem,40.81251,-73.95412,Private room,43,7,0,,,1,0 +12622115,1 Block from Times Sq. and Broadway,49262827,Joei,Manhattan,Hell's Kitchen,40.76192,-73.98817,Entire home/apt,115,2,150,2019-06-24,4.06,1,1 +12622845,Your SUNNYROOM 15mnts to Manhattan!,14498263,Penélope,Queens,Sunnyside,40.74431,-73.92024,Private room,60,2,105,2019-06-30,2.72,1,101 +12623332,Sun-drenched Park Slope Studio,11732822,Megan,Brooklyn,Park Slope,40.67776,-73.9743,Entire home/apt,160,4,33,2019-06-15,0.87,1,1 +12624890,Pull-out Sofa in Central Harlem,657869,J,Manhattan,Harlem,40.81027,-73.9408,Shared room,39,4,47,2019-06-09,1.22,2,131 +12625113,Rest and Relax,4057761,Natalie,Manhattan,Harlem,40.82458,-73.95175,Private room,45,3,49,2019-06-21,1.26,1,0 +12625717,"XL room in artists' home, Flatbush/Ditmas Park",1166833,Liz,Brooklyn,Flatbush,40.64966,-73.96459,Private room,45,3,5,2017-07-29,0.19,1,0 +12625934,Private oasis in Hamilton Heights.,68551886,Sandra,Manhattan,Harlem,40.82859,-73.9497,Private room,25,1,0,,,1,0 +12626567,Private room for sublet,68556398,Alice,Brooklyn,Bushwick,40.69285,-73.92703,Private room,65,12,0,,,1,0 +12626663,Gorgeous Harlem 1br best location,2480467,Noreen,Manhattan,Harlem,40.80854,-73.94305,Entire home/apt,125,7,1,2017-01-07,0.03,1,0 +12628500,Private room for 2 NY Close to LGA No hidden fees,67261284,Dante,Queens,Jackson Heights,40.75123,-73.87993,Private room,67,1,204,2018-12-16,5.27,2,0 +12629865,NEW! American Private Cozy Room,16740102,Anton,Brooklyn,Bedford-Stuyvesant,40.68634,-73.94414,Private room,52,3,0,,,1,0 +12630337,APT in LES with view,516563,Michael,Manhattan,Lower East Side,40.71412,-73.98984,Entire home/apt,110,6,5,2019-01-03,0.13,1,12 +12630697,"Huge, Sunny, Good Vibes Authentic Artist's LOFT",227369,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95952,Entire home/apt,177,4,82,2019-01-26,2.22,1,73 +12630799,Cozy Sunny room,65820457,Marilyn,Queens,Ridgewood,40.70595,-73.90871,Private room,25,5,0,,,1,0 +12641611,Park Slope Gem,35383368,Cristina,Brooklyn,Park Slope,40.67466,-73.97711,Entire home/apt,175,3,0,,,1,0 +12642845,Newly renovated! Spacious Park Slope Apt. Quiet St,228858,Jada,Brooklyn,South Slope,40.66271,-73.98818,Entire home/apt,150,3,73,2019-07-04,1.89,2,259 +12643171,Sunny Cozy Loft Bedroom,26054687,Danielle,Brooklyn,Williamsburg,40.71586,-73.94859,Private room,75,7,0,,,1,0 +12643924,Peaceful and beautiful room by park,1216362,Camila,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.96122,Private room,41,1,43,2019-05-07,1.19,4,188 +12644989,Modern high-end studio!,9997184,Kelly,Manhattan,Upper West Side,40.79376,-73.96734,Entire home/apt,185,2,10,2016-09-01,0.26,1,0 +12645495,Newly Renovated Private 3 bedroom Apt.Near,60077920,Nicole,Queens,East Elmhurst,40.76107,-73.86664,Entire home/apt,175,2,74,2019-06-24,2.42,1,141 +12645769,Spacious Harlem room in tidy 4th-floor walkup,68684053,Rose,Manhattan,Harlem,40.82095,-73.94007,Private room,40,1,1,2016-05-14,0.03,1,0 +12648471,Spacious 3 Bedroom in Park Slope,52577563,Rosa,Brooklyn,Sunset Park,40.66455,-73.99205,Entire home/apt,135,4,9,2017-10-07,0.23,3,365 +12649685,Peaceful Greenpoint Sanctuary,6389984,Pepper,Brooklyn,Greenpoint,40.73081,-73.95551,Entire home/apt,195,2,34,2017-06-09,0.97,1,0 +12650830,Quiet room in Bed-Stuy,68585649,Joseph,Brooklyn,Bedford-Stuyvesant,40.69186,-73.94038,Private room,30,80,0,,,1,0 +12650991,"Homey, Peaceful, and Spacious Space",709939,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94784,Private room,50,30,4,2017-04-19,0.11,1,0 +12651245,Relaxing room in vibrant Brooklyn,68719139,Nick,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95773,Private room,40,4,4,2016-10-24,0.11,1,0 +12652765,Private Studio in Herald Square,68729762,Tulika,Manhattan,Midtown,40.7504,-73.98775,Entire home/apt,150,1,2,2016-05-14,0.05,1,0 +12652786,Beautiful Room in Artist's Home,3629866,Shirah,Brooklyn,Bedford-Stuyvesant,40.69409,-73.94815,Private room,75,3,5,2016-07-15,0.13,1,301 +12652833,Spacious Penthouse Bedroom,68729548,Sebastian,Manhattan,Greenwich Village,40.72994,-73.99455,Private room,100,1,0,,,1,0 +12652939,"Sunny, Friendly, Brooklyn Apartment",24944767,Andrea,Brooklyn,Bushwick,40.70068,-73.91985,Private room,65,1,3,2016-05-19,0.08,1,0 +12652964,Cozy 1 bedroom in 2BD apt. in Bed-Stuy. Long term!,13996246,JaNae,Brooklyn,Bedford-Stuyvesant,40.68198,-73.95347,Private room,250,60,2,2016-06-08,0.05,1,0 +12653674,Charming Sun-lit Two-Story Apartment,68735532,Mike,Manhattan,Harlem,40.8181,-73.94632,Entire home/apt,136,1,30,2016-12-28,0.82,1,0 +12655465,Quiet Soho/Nolita Garden Alcove Studio,3635907,Deeva,Manhattan,Nolita,40.72176,-73.99424,Entire home/apt,180,2,166,2019-06-26,4.44,1,213 +12655523,Quiet & Cozy Bushwick Bedroom,46228833,Nina,Brooklyn,Bushwick,40.69617,-73.91119,Private room,55,2,4,2016-09-26,0.11,1,0 +12655931,Birds singing and sunsets in NYC!,18597974,Derric,Queens,Astoria,40.77419,-73.93017,Private room,65,2,0,,,1,0 +12656371,Luxury 2BR Condo in Williamsburg,2686052,Aamir,Brooklyn,Williamsburg,40.71185,-73.94738,Entire home/apt,225,2,39,2019-05-12,1.25,1,0 +12656785,Loft @ Williamsburg Bedford,19912320,Charles,Brooklyn,Williamsburg,40.71572,-73.95376,Private room,99,5,6,2017-09-09,0.17,2,0 +12657039,Heart of Williamsburg - Best Location,62058232,Kuma,Brooklyn,Williamsburg,40.71194,-73.95742,Private room,90,5,3,2016-08-25,0.08,1,0 +12657527,sunny room in NYC!,46047223,Sarah,Brooklyn,Crown Heights,40.66612,-73.93696,Shared room,20,1,0,,,1,0 +12657888,"convenient, furnished APT",68769040,Eva,Manhattan,Upper West Side,40.80183,-73.96373,Private room,980,20,1,2016-07-02,0.03,1,90 +12658099,Cozy Chelsea Apt Great Location,68771036,Mica,Manhattan,Chelsea,40.74516,-73.9959,Private room,100,2,63,2019-07-01,1.88,1,33 +12664893,Sunny Private room Central Harlem,657869,J,Manhattan,Harlem,40.80991,-73.94273,Private room,73,4,69,2019-06-08,1.77,2,122 +12665113,Sunny Townhouse - Brooklyn,18753186,Florence,Brooklyn,Gowanus,40.681,-73.98882,Entire home/apt,380,6,9,2018-08-19,0.26,2,0 +12666669,Private bedroom in the Upper East!,13406954,Jackie,Manhattan,Upper East Side,40.78265,-73.95364,Private room,99,1,2,2016-05-23,0.05,3,0 +12669490,The Oasis of Utica,16623502,Racquel,Brooklyn,East Flatbush,40.64741,-73.92588,Entire home/apt,105,1,43,2018-11-24,1.17,1,13 +12669603,Sunny Suite with Bath near Prospect Park,39185689,Cupid,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95155,Private room,35,3,12,2019-07-02,0.31,1,176 +12670809,Beautiful apartment in Williamsburg,55121,Alexandre,Brooklyn,Williamsburg,40.71351,-73.9647,Entire home/apt,200,5,10,2019-01-03,0.28,1,117 +12670883,Entire private # in a privately own brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93495,Private room,105,10,2,2018-08-17,0.11,3,31 +12671359,Charming 1BR Near Park & Metro!,24012333,Alyss,Manhattan,Upper West Side,40.7842,-73.97467,Entire home/apt,180,1,0,,,1,0 +12672036,CENTRAL PARK / COLUMBUS CIRCLE /1BR,1475015,Mike,Manhattan,Hell's Kitchen,40.76747,-73.98613,Entire home/apt,87,30,2,2018-05-30,0.06,52,365 +12674423,Summer in Brooklyn!,37234211,Chloe,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.95887,Private room,50,1,0,,,1,0 +12674934,[Midtown NYC] Private room w/ private bathroom,17016231,June,Manhattan,Hell's Kitchen,40.76358,-73.993,Private room,69,1,5,2016-05-30,0.13,1,0 +12675052,Large sunny apartment nr Gramercy,54130816,Stephanie,Manhattan,Kips Bay,40.7398,-73.98208,Entire home/apt,150,4,2,2016-05-18,0.05,1,0 +12675481,Perfect for couples visiting NYC,68250800,Anna,Manhattan,East Harlem,40.79991,-73.9363,Private room,75,1,20,2019-02-20,0.53,2,128 +12676400,"Quiet, pre-war apt on 30th Ave",68878222,Hernan,Queens,Astoria,40.76508,-73.9204,Entire home/apt,215,1,0,,,1,0 +12676434,Charming Upper East Side Apartment,2750607,Roxanne,Manhattan,Upper East Side,40.77963,-73.94897,Entire home/apt,150,4,0,,,1,0 +12679172,Massive 2 Bed near Columbia Univ.,43733051,Hannah,Manhattan,Harlem,40.81171,-73.95491,Entire home/apt,100,2,27,2018-01-20,0.76,1,0 +12679291,Nice and quiet apt Bdway/Times Sq.,44530717,Vincent,Manhattan,Hell's Kitchen,40.75965,-73.99035,Entire home/apt,224,6,1,2016-05-30,0.03,1,0 +12680171,Near all shopping & transportation,68848703,Rupi,Queens,Forest Hills,40.71933,-73.84984,Private room,119,2,21,2019-05-16,0.57,2,363 +12681206,Very big room in Designed apt.15 mins to Manhattan,68909853,Belgin,Queens,Sunnyside,40.73944,-73.92687,Private room,80,2,53,2019-06-09,1.37,1,364 +12681210,Cozy and Comfy in Crown Heights!!!,47187182,Keri,Brooklyn,Crown Heights,40.67428,-73.94373,Private room,75,3,0,,,1,89 +12681730,"Sunny, Chelsea Manhattan apartment",12534916,Jonathan,Manhattan,Chelsea,40.74187,-74.00175,Private room,125,2,0,,,1,0 +12681868,NYC deluxe room 15 min to Manhattan,68907781,Dafni,Queens,Astoria,40.77008,-73.92878,Private room,58,2,67,2019-06-24,1.76,3,20 +12683452,Two Nice Private Rooms in Brooklyn!,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67798,-73.93734,Private room,128,2,3,2016-10-11,0.08,3,12 +12684235,3 day Washington heights/inwood sub,68930733,Nora,Manhattan,Inwood,40.86158,-73.92393,Private room,60,1,0,,,1,0 +12684394,LUXURIOUS APT in MANHATTAN w TERRACE and GYM,49902290,Nikkita,Manhattan,Harlem,40.82469,-73.94029,Private room,115,1,2,2016-12-06,0.05,1,0 +12684755,Simple Apartment in SoHo,39637568,Terence,Manhattan,SoHo,40.72042,-73.99844,Private room,105,1,0,,,1,0 +12685482,Manhattan - Near Subway!,68929870,Ben,Manhattan,Harlem,40.82617,-73.95173,Private room,69,2,0,,,1,0 +12685533,Cute Room in Big Apt in Brooklyn,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67858,-73.93713,Private room,76,2,69,2019-06-06,1.81,3,11 +12686241,Large Middle Bedroom & Private Backyard,30848788,Jamie,Brooklyn,Bedford-Stuyvesant,40.69415,-73.9481,Private room,45,4,41,2019-05-17,1.06,2,89 +12687169,Sunny bedroom in gorgeous ParkSlope,49024977,Shelby,Brooklyn,Park Slope,40.67687,-73.97848,Private room,80,1,2,2016-06-05,0.05,1,0 +12693458,Great room with INCREDIBLE view,65884381,Annie,Brooklyn,Williamsburg,40.71249,-73.94674,Private room,75,1,7,2016-09-10,0.19,1,0 +12696421,2BR-E 60TH RESIDENCIES WITH DOORMAN,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96252,Entire home/apt,200,30,0,,,49,324 +12698900,Room in the HEART of Williamsburg,8314626,Janine,Brooklyn,Williamsburg,40.71694,-73.95628,Private room,89,1,148,2019-06-22,3.81,1,303 +12699413,Williamsburg Large Bedroom,66556483,Graham,Brooklyn,Williamsburg,40.71332,-73.94071,Private room,80,1,0,,,1,0 +12700609,Doorman Gym W&D RoofDeck!5112,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79613,-73.96638,Entire home/apt,197,30,2,2017-07-31,0.06,96,104 +12702755,Amazing cozy shared male room on Manhattan IV\),39528519,Max,Manhattan,Lower East Side,40.71187,-73.98878,Shared room,35,14,0,,,28,318 +12703851,Large stylish Mid Century Duplex in Clinton Hill,11109705,Valeska,Brooklyn,Clinton Hill,40.68678,-73.96178,Entire home/apt,180,7,10,2019-05-07,0.78,1,0 +12704159,"Luxury, doorman Building- FIDI",2676750,Shayna,Manhattan,Financial District,40.70789,-74.01521,Private room,90,3,0,,,1,0 +12705155,Spacious Gowanus Apt,69063239,Michael,Brooklyn,Gowanus,40.67246,-73.99164,Entire home/apt,125,1,3,2016-05-23,0.08,1,0 +12705303,SUNNY 1BR / 1B UES APT,3836868,Nina,Manhattan,Upper East Side,40.77458,-73.95116,Entire home/apt,170,3,2,2016-09-19,0.05,1,0 +12705519,Heights Haven,1372942,Drew,Manhattan,Washington Heights,40.8317,-73.9429,Entire home/apt,180,30,6,2017-06-24,0.15,1,0 +12708671,2 bedroom near Time Sq,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76344,-73.9929,Entire home/apt,142,30,4,2018-09-15,0.13,31,307 +12710376,Private Bedroom #5,66269338,Peggy,Queens,Jackson Heights,40.74839,-73.88818,Private room,60,1,14,2019-05-20,0.40,4,300 +12710904,Separate Bedroom on UES - 1 person,59215698,Daniela,Manhattan,Upper East Side,40.76625,-73.9539,Private room,98,2,8,2018-09-22,0.21,2,241 +12711153,Comfortable Private Room w/ 1 Full Bed,65809485,Shirley,Queens,Flushing,40.74903,-73.82938,Private room,40,14,107,2019-06-03,2.75,12,323 +12711232,Private Room In Hamilton Heights,45941973,Sigal,Manhattan,Harlem,40.8273,-73.94904,Private room,59,1,3,2017-11-06,0.08,1,0 +12711351,Cozy Private Room w/ 1 Queen Bed,65809485,Shirley,Queens,Flushing,40.74807,-73.82775,Private room,40,7,102,2019-04-29,2.73,12,105 +12713090,Beautiful West Village Apartment,23919461,Cesar,Manhattan,West Village,40.73399,-74.00549,Entire home/apt,250,3,30,2019-05-27,0.77,2,18 +12713289,Private Bed and Bath for Two!,25076118,Janet,Brooklyn,Sunset Park,40.6367,-74.01516,Private room,80,3,4,2016-09-18,0.11,1,0 +12713863,Private Bedroom #2,66269338,Peggy,Queens,Jackson Heights,40.74776,-73.88827,Private room,50,1,70,2018-07-26,1.82,4,345 +12713950,Comfortable Room Near Columbia U,69124785,Yutian,Manhattan,Morningside Heights,40.81567,-73.95951,Private room,50,7,2,2016-08-13,0.05,1,0 +12713995,Private Full Size Bed #4,66269338,Peggy,Queens,Jackson Heights,40.74859,-73.88628,Private room,65,1,49,2019-06-12,1.31,4,329 +12714891,"Cozy 1BD w Private Terrace, Walk to Museums & Park",69131589,Zhenya And Lenka,Manhattan,Upper East Side,40.78293,-73.94691,Entire home/apt,140,30,6,2016-11-10,0.16,1,0 +12720048,NE..Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68807,-73.92348,Private room,47,3,32,2019-05-12,0.91,4,258 +12723066,NYC 2 BDRM Apt. Apt. 3A,17770287,Nina,Manhattan,Midtown,40.7503,-73.98144,Entire home/apt,184,30,9,2019-05-17,0.25,14,332 +12725523,Top Floor Newly Renovated 1-Bedroom,6472334,Matthew,Brooklyn,Williamsburg,40.70832,-73.95336,Entire home/apt,139,4,12,2016-11-28,0.31,2,0 +12726907,Sunny Williamsburg apartment,4658415,Michael,Brooklyn,Williamsburg,40.71502,-73.94749,Entire home/apt,57,1,5,2018-07-29,0.13,1,0 +12727438,Entire 1 BR Williamsburg apt,69203926,Marios,Brooklyn,Williamsburg,40.70614,-73.94983,Entire home/apt,150,7,0,,,1,0 +12727779,Bright single bedroom in duplex with backyard.,69205600,Daniel,Brooklyn,Bushwick,40.70324,-73.92943,Private room,43,1,0,,,1,0 +12728514,1 Bedroom in a 4 Bedroom Apartment,69210611,Corey,Manhattan,Harlem,40.8244,-73.944,Private room,50,1,1,2016-05-31,0.03,1,0 +12730083,Elegant 2 Bdrm Apt W/ Add. 2 Rms on Lower Level,15089968,Anna,Queens,Richmond Hill,40.69961,-73.84158,Entire home/apt,250,3,40,2019-01-01,1.04,2,189 +12730434,"Bright, airy apartment in Brooklyn",19710054,Leah,Brooklyn,Bedford-Stuyvesant,40.68831,-73.95602,Entire home/apt,125,2,5,2017-08-08,0.14,1,0 +12730600,Garden View Room Available,3673451,Nikki,Brooklyn,Williamsburg,40.70577,-73.95193,Private room,50,3,3,2018-12-31,0.21,2,0 +12731689,Flatiron NYC 1 Bed/1 Bath Apt!,1911171,Justin,Manhattan,Midtown,40.7421,-73.98319,Entire home/apt,240,4,59,2019-06-17,1.56,1,37 +12732671,"Sunny Room in Flatlands, Brooklyn!",69236458,Monique Ngozi,Brooklyn,Flatlands,40.62551,-73.93545,Private room,60,5,4,2018-09-11,0.12,1,346 +12733430,Bright & Spacious Studio,10777637,Andrea,Brooklyn,Williamsburg,40.71696,-73.95382,Entire home/apt,160,1,9,2016-09-26,0.24,1,0 +12733742,Cozy room in Manhattan Morningside,69243005,Jen,Manhattan,Harlem,40.82555,-73.95159,Private room,45,3,1,2016-06-14,0.03,2,0 +12734487,1 Single Room in 4-Bedroom APT,69243005,Jen,Manhattan,Harlem,40.82433,-73.95049,Private room,38,5,0,,,2,0 +12734936,Huge Room with Private Bathroom,20354912,James,Brooklyn,Bedford-Stuyvesant,40.69355,-73.93361,Private room,100,3,0,,,1,0 +12735625,Private Bedroom in 2 BR apartment,69254072,Morgan,Manhattan,Inwood,40.86468,-73.92209,Private room,85,1,0,,,1,0 +12735969,Furnished FUNky room in artist loft,2711820,Adam,Brooklyn,Bedford-Stuyvesant,40.69301,-73.93098,Private room,50,7,2,2016-05-17,0.05,1,0 +12735986,Spacious Studio 15 min to Manhattan,69258420,Arturo,Queens,Astoria,40.75953,-73.91182,Entire home/apt,135,5,18,2019-05-26,0.47,1,363 +12736761,Comfortable and cozy Apartment in Manhattan,50601037,Monika,Manhattan,Harlem,40.82863,-73.94757,Entire home/apt,259,3,57,2019-06-10,1.51,1,175 +12737192,Great Harlem room,20557896,Michele,Manhattan,Harlem,40.82322,-73.94002,Private room,50,20,0,,,1,42 +12737335,Room for two in NYC!,69267322,Jacob,Manhattan,Washington Heights,40.8342,-73.94303,Private room,60,1,1,2016-06-04,0.03,1,0 +12737660,Large and sunny BR Bushwick,69269694,Mickael,Brooklyn,Williamsburg,40.70474,-73.93812,Private room,70,3,3,2016-08-23,0.08,1,0 +12737915,Artist Loft East Williamsburg,15019621,Kennedy,Brooklyn,Williamsburg,40.71401,-73.93672,Private room,99,1,2,2016-05-11,0.05,1,0 +12738047,clean and tidy separated livingroom,21492250,Zhenyu,Manhattan,Upper West Side,40.79997,-73.96529,Shared room,80,5,0,,,1,0 +12738346,Lightfull and Quiet apartment 15 min to Manhattan.,69274944,Dimitris,Queens,Astoria,40.76421,-73.92138,Entire home/apt,190,3,32,2019-06-09,0.85,1,53 +12738473,Large Modern Studio Apartment UES,69276225,Amanda,Manhattan,Upper East Side,40.77873,-73.94917,Entire home/apt,115,14,1,2016-08-17,0.03,1,0 +12738790,Bright & Spacious E. Village 1 Bdrm,18351258,Michael,Manhattan,East Village,40.72872,-73.98098,Entire home/apt,250,2,29,2018-05-13,0.76,1,0 +12740226,Cozy room in heart of Williamsburg,3038856,Samir,Brooklyn,Williamsburg,40.71403,-73.96171,Private room,70,1,9,2018-05-28,0.24,3,0 +12740726,Gorgeous new apartment with amazing views,11526146,Nick,Brooklyn,Williamsburg,40.7119,-73.94638,Entire home/apt,225,3,19,2018-12-02,0.85,1,0 +12744759,Private bedroom in Crown Heights!,38557313,Charlötte,Brooklyn,Crown Heights,40.67295,-73.95395,Private room,31,5,1,2016-05-31,0.03,1,0 +12747434,NW..Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68899,-73.92339,Private room,40,2,39,2019-04-15,1.02,4,236 +12747935,S...Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68962,-73.92346,Private room,37,3,40,2019-05-10,1.06,4,212 +12749145,Bright & Spacious Studio Apartment,2838615,Matt,Brooklyn,Williamsburg,40.71121,-73.96698,Entire home/apt,239,3,5,2018-01-02,0.13,1,0 +12749156,Your Hudson Heights Hideaway ◔‿◔,69189948,Ella,Manhattan,Washington Heights,40.84848,-73.9343,Private room,75,2,167,2019-07-07,4.60,3,310 +12751037,"Large, Private Bedroom near Union Square.",69355658,K,Manhattan,Gramercy,40.73328,-73.9859,Private room,90,3,23,2019-06-23,0.60,1,0 +12751471,Cozy 'n Quiet Upper Manhattan Room,4497670,Michael,Manhattan,Inwood,40.86927,-73.91719,Private room,46,7,1,2016-08-07,0.03,1,0 +12752736,"Columbia University,COSO房源2017暑假招租,5月31日-7月31日",69366248,岑,Manhattan,Upper West Side,40.8001,-73.9658,Private room,35,45,0,,,1,0 +12753144,"Charming, Spacious 1 Bd-Great area!",5895565,Sarah,Brooklyn,Flatbush,40.64123,-73.96289,Entire home/apt,85,21,0,,,1,0 +12753434,Entire Times Square 1BD Apartment,4549084,Judy,Manhattan,Hell's Kitchen,40.75657,-73.9942,Entire home/apt,175,3,59,2019-06-28,1.63,1,14 +12754199,Quiet Queens Basecamp,10135994,Laurence,Queens,Bayside,40.73975,-73.76157,Private room,60,1,0,,,1,0 +12755138,DSGN Doorman One Bedroom 5186,16098958,Jeremy & Laura,Manhattan,Financial District,40.70555,-74.00812,Entire home/apt,155,30,1,2016-08-13,0.03,96,335 +12755571,Studio in the heart of Manhattan,69384130,Nina,Manhattan,Midtown,40.75227,-73.97351,Entire home/apt,143,1,1,2016-05-13,0.03,1,0 +12757980,"East Village, sunny, five room, three beds.",69391155,Myles,Manhattan,East Village,40.73167,-73.98581,Entire home/apt,140,7,0,,,1,0 +12758216,Sunlit Studio on UWS!,68388626,Amanda,Manhattan,Upper West Side,40.78491,-73.97447,Entire home/apt,120,2,4,2016-08-22,0.11,1,0 +12759453,The Clean Comfortable Modern Lounge,48671504,Albert,Queens,Cambria Heights,40.68891,-73.73531,Entire home/apt,79,2,90,2019-06-24,2.35,1,331 +12760088,Modern Apartment. Central Park. B/C,52630170,Flora,Manhattan,Harlem,40.8033,-73.95771,Private room,50,3,2,2016-05-23,0.05,1,0 +12761910,3BR Queens (3rd fl)- 20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73854,-73.87407,Private room,289,2,115,2019-06-27,2.99,6,280 +12762497,Spacious Town House near Park,11811612,Heather,Brooklyn,Flatbush,40.65392,-73.95364,Entire home/apt,62,15,7,2018-09-06,0.19,1,0 +12763008,Spacious Master Bedroom 20 mins away from NYC,69433039,Jason,Queens,Sunnyside,40.73852,-73.92777,Private room,85,10,27,2019-05-27,0.71,1,125 +12763385,Bedroom in Classic Clinton Hill,9784153,Santiago,Brooklyn,Clinton Hill,40.68752,-73.9618,Private room,99,3,0,,,1,0 +12763721,"Comfortable, clean and inviting.",69435907,Ranny,Brooklyn,East Flatbush,40.65886,-73.91919,Private room,50,2,149,2019-07-07,3.86,1,92 +12764005,Brand New Clean and Sunny one bed!,7465850,Flower,Brooklyn,Bushwick,40.69761,-73.92495,Entire home/apt,120,4,43,2019-06-24,1.15,1,243 +12764378,Brooklyn Suite,69255438,Mark,Brooklyn,Crown Heights,40.67828,-73.95051,Entire home/apt,180,1,1,2016-05-23,0.03,1,0 +12764482,Times Square | Furnished | Apartment & Bedroom,69446151,Jinsoon,Manhattan,Hell's Kitchen,40.75726,-73.9953,Entire home/apt,90,5,1,2018-03-28,0.06,1,0 +12765391,Unlisted,3311487,Scott,Brooklyn,Williamsburg,40.71165,-73.96322,Private room,80,1,0,,,3,0 +12765858,Cozy room near central park,69457013,Dingyu,Manhattan,Upper West Side,40.79768,-73.9633,Private room,49,30,0,,,1,0 +12772942,Huge and cozy bedroom in the heart of Williamsburg,4979093,Nicole,Brooklyn,Williamsburg,40.70898,-73.95086,Private room,90,3,1,2018-01-02,0.05,1,0 +12772993,Penn Station / Chelsea North room,37521233,Jay,Manhattan,Chelsea,40.75053,-73.99685,Private room,55,2,5,2016-11-26,0.13,1,0 +12774144,Private big room/Queen bed/Nice Apt,65621401,Robert,Queens,Ditmars Steinway,40.77822,-73.90895,Private room,49,1,7,2019-06-07,0.18,1,341 +12774249,Uptown Bohemian 1BR with Park View,20892338,Elisse,Manhattan,Harlem,40.82064,-73.94646,Entire home/apt,105,2,3,2016-05-30,0.08,1,0 +12774885,"Spacious, cozy bedroom in a private home",69507287,Sarah,Bronx,Wakefield,40.88871,-73.86175,Private room,40,1,151,2019-07-01,4.01,1,338 +12774975,Hamiliton Heights Home,33363604,Lauren,Manhattan,Harlem,40.81934,-73.95668,Private room,50,2,0,,,1,0 +12775106,Apartment NYC - 10 to 20 June,1722054,Cristian,Queens,Long Island City,40.74657,-73.94555,Entire home/apt,120,5,1,2016-06-19,0.03,1,0 +12776694,Private Bedroom in the East Village,50533072,Kate,Manhattan,East Village,40.72591,-73.97947,Private room,90,1,3,2016-07-27,0.08,1,0 +12778383,Full 1 BR apartment in East Williamsburg/Bushwick,6513527,Blase,Brooklyn,Williamsburg,40.70585,-73.94178,Entire home/apt,110,6,4,2018-05-08,0.15,1,0 +12778678,East Midtown Modern Alcove Studio 3,45595980,Tny,Manhattan,Midtown,40.76049,-73.96621,Entire home/apt,140,30,5,2018-12-23,0.15,12,290 +12780475,Sunny Spacious Apt in Astoria w/ back yard access,48154615,Kasey,Queens,Astoria,40.75735,-73.92134,Entire home/apt,125,3,21,2019-06-25,0.58,1,345 +12780595,Luxury White Glove Apartment 57th St and Broadway,69545387,Marion,Manhattan,Midtown,40.76628,-73.98308,Entire home/apt,95,14,3,2018-08-26,0.13,1,159 +12780993,Washington Heights Studio,18111963,Patricia,Manhattan,Washington Heights,40.84205,-73.93716,Entire home/apt,75,5,0,,,1,0 +12781270,Nice and cozy little apt available,69548489,Alba,Bronx,Pelham Gardens,40.86412,-73.84664,Entire home/apt,75,2,92,2019-07-06,2.45,1,265 +12782370,2 bed Apartment close to Times Sq,280830,George,Manhattan,Hell's Kitchen,40.76153,-73.98915,Entire home/apt,244,2,176,2019-07-01,4.57,1,282 +12783632,NYC Mini Hotel,57230304,Imanuelly,Queens,Elmhurst,40.74037,-73.8861,Private room,75,1,2,2019-05-26,0.92,3,351 +12786165,Cozy Private room in Chelsea !,69598657,Vh,Manhattan,Chelsea,40.75094,-73.99748,Private room,75,2,115,2019-06-23,2.99,1,37 +12788962,WE'RE HOME TOTO! WE ARE HOME!,390251,Lilly,Manhattan,Harlem,40.79986,-73.95387,Private room,105,2,5,2019-04-08,0.36,4,15 +12791778,Newly renovated williamsburg bedroom near subway,17239096,David,Brooklyn,Williamsburg,40.71262,-73.94466,Private room,100,2,6,2018-02-19,0.28,1,0 +12792132,Gramercy Studio,29859280,Denise,Manhattan,Gramercy,40.7367,-73.98099,Entire home/apt,150,2,13,2019-06-02,0.34,1,26 +12793649,Charming 2br Near Yankee Stadium,69668616,Nathaniel,Bronx,Concourse,40.82575,-73.92421,Entire home/apt,175,1,0,,,1,0 +12794520,"Single bedroom, Manhattan",69677082,James,Manhattan,Washington Heights,40.84278,-73.93916,Private room,35,3,3,2016-05-16,0.08,1,0 +12794791,PRIVATE ROON IN NEW YORK MANHATTAN,11725608,Juan,Manhattan,Washington Heights,40.84021,-73.94191,Private room,51,3,68,2019-07-01,1.78,2,313 +12795006,"large studio ,private bathroom and own entrance",64350843,Diane,Manhattan,Upper East Side,40.77166,-73.95797,Private room,105,14,7,2019-06-29,0.19,1,29 +12795109,Charming Pr Room in E. Williamsburg,59375053,Jacqueline,Brooklyn,Williamsburg,40.70766,-73.94767,Private room,80,2,2,2016-05-29,0.05,1,0 +12795290,Room in East Village,4929873,Larissa,Manhattan,East Village,40.72073,-73.97839,Private room,84,3,163,2019-06-23,4.22,1,294 +12795851,Clean & Spacious Bushwick Loft (front),21467726,Tyler,Brooklyn,Williamsburg,40.70294,-73.93711,Private room,70,1,10,2019-04-14,0.29,2,281 +12796602,COZY STUDIO in BROOKLYN,66978896,Viviana,Brooklyn,Bushwick,40.69159,-73.91171,Entire home/apt,70,3,26,2019-07-05,0.67,2,206 +12796750,Large one bedroom apt in Greenpoint,69702850,Michael,Brooklyn,Greenpoint,40.72453,-73.95529,Entire home/apt,195,7,0,,,1,0 +12797047,Cute little Studio in East Village/Alphabet City,67311188,Viola,Manhattan,East Village,40.72125,-73.98058,Entire home/apt,150,5,1,2017-08-12,0.04,1,0 +12797684,"",69715276,Yan,Manhattan,Upper West Side,40.79843,-73.96404,Private room,100,1,0,,,2,0 +12797920,Large Bedroom near Subway,69715276,Yan,Manhattan,Upper West Side,40.79806,-73.96167,Private room,100,1,1,2016-07-31,0.03,2,0 +12798141,Cute private room in great location!,3231109,Trish,Manhattan,Morningside Heights,40.81127,-73.95922,Private room,85,3,9,2019-07-03,0.83,2,142 +12804309,Danish Modern in Brownstone,21221697,Devon,Brooklyn,Clinton Hill,40.68444,-73.96285,Entire home/apt,225,3,95,2019-06-22,2.48,1,122 +12804693,Quiet bedroom on St Marks,69782291,Karen,Manhattan,East Village,40.7291,-73.98628,Private room,120,5,13,2017-09-23,0.34,1,0 +12805625,"Sunny, modern apartment in Lower East Side",5826163,Ayesha,Manhattan,Lower East Side,40.71989,-73.98557,Private room,90,4,1,2019-04-28,0.42,1,90 +12806016,Ditmas Park Beauty,69794747,Anna,Brooklyn,Flatbush,40.64159,-73.95985,Entire home/apt,175,3,96,2019-06-22,2.50,1,209 +12806177,Acogedora habitación en el corazón de Manhattan,66469868,Zoraida,Manhattan,Washington Heights,40.83344,-73.94442,Private room,65,2,46,2019-06-23,1.20,1,72 +12806356,"Elegant/Classy Artist Loft, 2 Priv bdms/CLEAN",8416362,Margaret,Queens,Long Island City,40.74321,-73.95533,Entire home/apt,260,21,17,2018-12-16,0.46,1,42 +12806940,Huge New 1700sf Brownstone Duplex,1672734,Larry,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93862,Entire home/apt,225,2,33,2019-07-01,0.85,1,1 +12807447,BrownBrick in Park Slope Brownstone,42413378,Hilal & Maryam,Brooklyn,South Slope,40.66548,-73.98196,Entire home/apt,135,3,148,2019-06-21,3.84,2,91 +12810131,1 Bedroom June Through July,25971488,Kevin,Brooklyn,Brooklyn Heights,40.69299,-73.99283,Private room,135,1,0,,,1,0 +12810210,Sun Drenched Studio,140226,An,Brooklyn,Williamsburg,40.71764,-73.95291,Entire home/apt,195,3,23,2019-06-23,0.67,1,225 +12810452,Charming 1BR in heart of Chinatown,15867885,Marielle,Manhattan,Two Bridges,40.71114,-73.99874,Private room,99,2,3,2016-06-26,0.08,1,0 +12811459,Superhost-Designer Legal 4 Bed Townhouse Midtown 2,69852641,Lisa,Manhattan,Hell's Kitchen,40.76303,-73.98767,Entire home/apt,1000,2,24,2019-05-30,0.71,3,274 +12812370,Newly updated studio with luxury charm,9631746,Charese,Manhattan,Hell's Kitchen,40.7592,-73.99313,Entire home/apt,177,25,21,2019-04-03,0.65,1,10 +12812504,Cozy room close to Columbia,9472822,Catarina,Manhattan,Harlem,40.81995,-73.95266,Private room,59,1,0,,,1,0 +12812544,High SkyView W&D GYM Doorman 5180,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77725,-73.95137,Entire home/apt,190,30,3,2017-10-04,0.08,96,330 +12812577,Superhost-Pristine 4 Bed Legal Townhouse Midtown 1,69852641,Lisa,Manhattan,Hell's Kitchen,40.763,-73.98642,Entire home/apt,1000,2,23,2019-06-09,0.70,3,240 +12812618,Private room in Williamsburg,25233652,Mari,Brooklyn,Williamsburg,40.71279,-73.96291,Private room,80,2,6,2018-01-01,0.16,1,0 +12812630,Private Room rent temporary stay,69866168,Munnesa,Queens,Jamaica,40.69172,-73.79495,Private room,60,1,109,2017-07-30,2.84,1,98 +12813050,Family Friendly Gramercy Park Gem,30789837,Shane,Manhattan,Gramercy,40.73682,-73.98336,Entire home/apt,195,5,1,2016-05-13,0.03,1,0 +12813068,NEW NICE CLEAN & COZY PRIVATE ROOM,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.68552,-73.9227,Private room,60,1,104,2019-06-30,2.68,3,293 +12813206,Sunny Apartment Across from Sunset Park,7609268,Zoey,Brooklyn,Sunset Park,40.65038,-74.00551,Entire home/apt,99,3,25,2019-06-30,0.73,1,12 +12814195,Great room in Williamsburg,545273,Gabriel,Brooklyn,Williamsburg,40.71728,-73.94345,Private room,79,5,0,,,1,0 +12814578,Colorful Brooklyn Garden Casita,40332331,Joyce,Brooklyn,Windsor Terrace,40.65827,-73.97962,Entire home/apt,125,2,117,2019-07-08,3.08,2,262 +12814685,"Great location in NYC, clean, quiet and cozy",69890625,Grace,Brooklyn,Clinton Hill,40.68389,-73.96026,Private room,89,1,15,2019-05-14,0.43,1,179 +12814717,Big and cozy room,69891208,Anna,Manhattan,Washington Heights,40.85147,-73.93618,Private room,55,3,5,2017-08-25,0.14,1,0 +12814991,"NYC Sanctuary, Skyline Views & Rooftop",34034047,Cory,Queens,Ditmars Steinway,40.77423,-73.90715,Entire home/apt,130,3,17,2019-07-07,0.45,1,11 +12814997,Sunny room with a/c in new building,13007287,Brandon,Brooklyn,Bedford-Stuyvesant,40.68147,-73.95814,Private room,70,3,36,2017-06-23,0.95,1,0 +12815139,Beautiful Tranquil Bright Prime Location 1 bedroom,33816358,Rachel,Brooklyn,Prospect Heights,40.67764,-73.9647,Entire home/apt,110,3,8,2017-05-22,0.23,1,0 +12821417,"Private, Sunny Room in East Village",69944410,Michelle,Manhattan,East Village,40.73054,-73.98339,Private room,100,7,1,2016-05-04,0.03,1,0 +12823429,"Artistic, Cozy Room in Williamsburg",6707228,Emily,Brooklyn,Williamsburg,40.70748,-73.9461,Private room,145,1,0,,,1,0 +12825700,Comfortable Chelsea Oasis,5346314,Saskia,Manhattan,Chelsea,40.74267,-73.99915,Entire home/apt,195,3,1,2016-07-04,0.03,1,0 +12826965,Cozy Bright Private Room in NY (Only for female),69989416,Sammie,Queens,Flushing,40.7555,-73.82712,Private room,30,4,54,2019-04-21,1.39,1,64 +12827123,Beautiful Park Slope Room with Rooftop & Backyard,15398860,Harlan,Brooklyn,South Slope,40.66631,-73.98268,Private room,50,20,0,,,1,0 +12827146,"Cozy One Bedroom Apartment in Astoria, NYC",18922352,Israel,Queens,Astoria,40.76368,-73.91518,Entire home/apt,68,4,11,2017-10-11,0.31,1,0 +12827921,Spacious LES Room& Private Backyard,13023370,Andrew,Manhattan,Lower East Side,40.71902,-73.98506,Private room,90,1,6,2016-09-06,0.16,1,0 +12828338,Cozy Chic Harlem Apartment,7159107,Carly,Manhattan,Harlem,40.82563,-73.94091,Entire home/apt,85,3,1,2018-03-14,0.06,1,0 +12829063,Large & Unique multi Rooms Loft close to all,28303435,Ohad,Brooklyn,Prospect Heights,40.67983,-73.96931,Entire home/apt,200,1,43,2019-05-27,1.13,1,232 +12830516,Entire apartment next to McGolrick Park!,3510993,Aaron,Brooklyn,Greenpoint,40.72311,-73.94184,Entire home/apt,100,7,0,,,1,0 +12830905,Spacious East Village Bedroom,70026602,Kathryn,Manhattan,East Village,40.72817,-73.98041,Private room,150,2,18,2017-03-16,0.47,1,0 +12831088,Gorgeous 1BR near Columbus Circle,28340943,Jessica,Manhattan,Upper West Side,40.77861,-73.98336,Entire home/apt,199,1,0,,,1,0 +12831310,"Cozy bedroom, awesome East Village apartment!",70030943,Carolyn,Manhattan,East Village,40.72358,-73.97593,Private room,60,1,2,2016-07-06,0.05,1,0 +12832062,The Yellow Bungalow of Rockaway Beach,1106731,Alexander,Queens,Rockaway Beach,40.58943,-73.81192,Entire home/apt,135,2,27,2019-06-21,0.72,2,0 +12832227,Sunny Bedroom + Private Living Room,70039705,Nathan,Manhattan,Upper West Side,40.8032,-73.96495,Private room,100,1,5,2016-08-14,0.13,1,0 +12832371,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77102,-73.95873,Entire home/apt,163,30,1,2017-10-14,0.05,87,350 +12832899,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.76368,-73.96153,Entire home/apt,187,30,2,2017-10-31,0.09,87,287 +12833187,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76297,-73.96252,Entire home/apt,225,30,1,2017-12-27,0.05,87,365 +12834317,Private 1 Bedroom Garden Level Apt,3404004,Diana,Brooklyn,Brooklyn Heights,40.69816,-73.99361,Entire home/apt,120,1,1,2016-05-09,0.03,1,0 +12834386,Awesome spacious room by the park,1216362,Camila,Brooklyn,Flatbush,40.65424,-73.96008,Private room,73,1,43,2018-11-01,1.37,4,188 +12834748,A bay window on Brooklyn,10273704,Matt,Brooklyn,Fort Greene,40.68812,-73.97666,Private room,100,3,148,2019-06-22,3.83,2,42 +12835123,1 Bedroom Located in Trendy Williamsburg,70065232,Ramon,Brooklyn,Williamsburg,40.71154,-73.95795,Entire home/apt,99,5,1,2018-04-23,0.07,1,0 +12835664,"New 3BR, 2 Full Bath with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66618,-73.93156,Entire home/apt,300,3,39,2018-07-24,1.03,4,259 +12836932,Spacious Private room near Columbia,70082670,Gina,Manhattan,Morningside Heights,40.80539,-73.96409,Entire home/apt,92,1,2,2016-05-09,0.05,1,0 +12844709,comfy bedroom in williamsburg,2238348,Abigail,Brooklyn,Williamsburg,40.71311,-73.94016,Private room,42,8,0,,,1,0 +12845862,Upper East Side Private Room and Bath: A+ location,7443904,Mohammad,Manhattan,Upper East Side,40.77912,-73.95594,Private room,100,3,8,2017-06-29,0.21,1,0 +12845943,Fully Furnished Room in Quiet Apt,51663418,Melissa,Queens,Ditmars Steinway,40.77329,-73.9163,Private room,40,14,1,2016-08-10,0.03,1,0 +12846033,Spacious West Village Loft Studio,62225580,Elin,Manhattan,West Village,40.73326,-74.00844,Entire home/apt,225,14,0,,,1,0 +12846048,"PRIME LOCATION, PARK SLOPE -BKLYN: 4BR FAMILY TYPE",23144316,Anna,Brooklyn,Park Slope,40.66896,-73.97641,Entire home/apt,170,13,4,2018-08-20,0.11,1,46 +12846229,Beautiful family apt in Astoria,8752988,Julia,Queens,Astoria,40.7613,-73.9153,Entire home/apt,125,1,0,,,1,0 +12846584,1 bed room rail road apartment,70164336,Michael,Brooklyn,Greenpoint,40.73282,-73.9564,Entire home/apt,109,30,9,2017-03-31,0.26,1,0 +12847429,Spacious 2 BR in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76014,-73.99039,Entire home/apt,150,30,6,2019-05-31,0.32,91,126 +12847720,"Prime location, close to everything. Females only",10737943,David,Manhattan,Upper West Side,40.78528,-73.97623,Private room,50,30,3,2016-12-02,0.09,10,365 +12847902,Beautiful modern home!,46938101,Mario,Bronx,Concourse,40.83211,-73.92052,Private room,49,1,33,2019-06-21,0.87,1,348 +12848383,Lovely Brooklyn Duplex near Prospect Park 3BR,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65341,-73.97877,Entire home/apt,265,2,8,2017-01-02,0.21,4,0 +12850186,Cozy bedroom in Downtown Manhattan,70198067,Hector,Manhattan,Financial District,40.71028,-74.00929,Private room,80,1,0,,,1,0 +12850887,Zen-like Room with Exposed Brick in East Bushwick,64062688,Leanna,Brooklyn,East New York,40.67153,-73.89112,Private room,44,3,4,2016-09-11,0.11,1,0 +12850911,Huge Room in Stunning Pre-war NY Loft,44351733,Tana,Manhattan,Tribeca,40.71948,-74.00517,Private room,260,4,22,2018-12-21,0.58,1,3 +12851015,Midtown East XL 1 BR,61391963,Corporate Housing,Manhattan,Midtown,40.75755,-73.9666,Entire home/apt,133,30,3,2019-06-01,0.10,91,342 +12851100,New studio apartment 4mins from subway in Astoria,3248699,Snezhana,Queens,Ditmars Steinway,40.77141,-73.91415,Entire home/apt,80,7,15,2019-05-20,0.41,1,0 +12851307,Private Room in Williamsburg Duplex,70208173,Mark,Brooklyn,Williamsburg,40.71267,-73.95367,Private room,1000,35,6,2016-06-02,0.16,1,365 +12851607,Studio Apartment near Columbia U,68322243,Christopher,Manhattan,Upper West Side,40.80129,-73.96611,Entire home/apt,154,4,3,2016-08-26,0.08,1,0 +12852083,Boerum Hill Beautiful Spacious Two Bedrooms Apt.,700224,Shane & Nicole,Brooklyn,Gowanus,40.68349,-73.98518,Entire home/apt,150,29,9,2019-05-04,0.27,4,326 +12852935,Private room in the heart of NY,2344389,Yaniv,Manhattan,Hell's Kitchen,40.76205,-73.9888,Private room,150,5,0,,,1,0 +12853281,Brand New Luxurious Studio Midtown,61391963,Corporate Housing,Manhattan,Midtown,40.75572,-73.96936,Entire home/apt,125,30,7,2019-05-12,0.23,91,149 +12853330,COZY HARLEM ROOM BY THE WATER - CREATIVE SPACE,31237380,Keith,Manhattan,Harlem,40.82183,-73.9378,Private room,60,2,1,2016-06-26,0.03,1,0 +12854022,Cozy room in new duplex apartment!!,70235809,Sandra,Brooklyn,Bushwick,40.69301,-73.92683,Private room,95,1,0,,,1,0 +12854724,Great Modern Studio in Chelsea!,49622928,Oxana,Manhattan,Chelsea,40.74066,-73.99895,Entire home/apt,75,1,132,2019-06-23,4.58,1,317 +12854734,LIVE HERE!! COZY STUDIO IN CHELSEA!,70244331,Andrey,Manhattan,Chelsea,40.74078,-73.99923,Entire home/apt,100,1,198,2019-06-23,5.16,1,269 +12855469,Gorgeous Studio in Doorman Luxury!,70251988,Brendan,Manhattan,Upper East Side,40.78147,-73.95284,Entire home/apt,100,365,27,2018-01-03,0.78,1,17 +12855923,New York Space,33906660,Trevor,Manhattan,Harlem,40.8242,-73.94777,Private room,65,1,154,2019-07-02,4.03,1,361 +12856181,Charming 1 BR in West Village,18975770,Martina,Manhattan,West Village,40.73064,-74.00351,Entire home/apt,200,6,5,2018-11-24,0.24,2,17 +12856529,COZY APARTMENT NEXT TO CENTRAL PARK,1491770,Rene,Manhattan,Midtown,40.76386,-73.97702,Entire home/apt,180,3,1,2016-05-21,0.03,1,0 +12856720,5mn location from Manhattan midtown,33950089,Abdoulaye,Queens,Long Island City,40.75166,-73.94028,Private room,60,1,36,2019-06-04,1.05,1,316 +12856992,Awesome deal,15445748,Uğur,Queens,Sunnyside,40.73748,-73.92894,Private room,33,7,6,2016-10-28,0.18,1,337 +12862929,Bright and Airy Bedroom,1572315,Deanna,Manhattan,Murray Hill,40.74775,-73.97702,Private room,112,3,23,2019-07-04,0.61,1,18 +12863594,Bright Loft-Like Apartment,70321716,Y&O,Brooklyn,Crown Heights,40.67212,-73.9439,Entire home/apt,150,15,0,,,1,0 +12863815,"Amazing 1BR, heart of West Village",9679850,Mike,Manhattan,West Village,40.73361,-74.00218,Entire home/apt,230,2,39,2019-03-12,1.03,1,0 +12864095,Cute Room in Downtown BK,7953376,Mary,Brooklyn,Boerum Hill,40.68558,-73.98065,Private room,65,1,0,,,1,0 +12864193,Entire UWS Apartment for up to 6!,29417940,Tolley,Manhattan,Upper West Side,40.77814,-73.97627,Entire home/apt,375,2,2,2016-11-26,0.06,2,0 +12864784,Private Room - West Village/Soho,7977178,Abby,Manhattan,SoHo,40.72806,-74.00381,Private room,130,3,18,2018-07-21,0.49,3,304 +12864971,Large Studio Seconds From NYC,70333355,Makram,Queens,Ditmars Steinway,40.77852,-73.90836,Entire home/apt,400,1,0,,,1,0 +12865332,Room 108th and central park west,51684417,Eduardo,Manhattan,Upper West Side,40.80032,-73.95884,Private room,120,1,1,2016-07-31,0.03,2,0 +12865981,1 bed room Presidential Suite,70342170,K,Manhattan,Midtown,40.75337,-73.97289,Entire home/apt,900,3,0,,,1,358 +12867918,DESIGNER STUDIO NEAR CENTRAL PARK UPPER EAST SIDE,9293730,Inna,Manhattan,Upper East Side,40.76875,-73.95723,Entire home/apt,150,30,12,2019-06-01,0.35,16,325 +12867950,Beautiful summer sublet in Astoria,70358943,Jeff,Queens,Ditmars Steinway,40.78192,-73.91439,Private room,40,1,0,,,1,0 +12868264,Brownstone apartment in Bed Stuy,26295451,Jessica,Brooklyn,Bedford-Stuyvesant,40.68743,-73.93045,Private room,150,1,14,2017-05-21,0.40,1,0 +12869174,Homey space in great neighborhood,817948,Ariela,Brooklyn,Flatbush,40.63874,-73.95645,Private room,30,1,1,2016-05-12,0.03,1,0 +12869561,West 15th Street Cozy Chelsea 1bd Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73887,-73.99983,Entire home/apt,191,30,1,2018-07-31,0.09,87,323 +12869567,"West 33rd street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75225,-73.99508,Entire home/apt,219,30,5,2019-02-23,0.24,87,344 +12869662,Bright Williamsburg Loft w Balcony,8636489,Evan,Brooklyn,Williamsburg,40.71701,-73.95685,Entire home/apt,250,5,14,2018-07-01,0.41,1,0 +12869679,Loft Apartment in Williamsburg,1233402,Evan,Brooklyn,Williamsburg,40.7125,-73.9529,Entire home/apt,180,3,3,2016-06-06,0.08,1,0 +12869930,2 bedroom Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76313,-73.99482,Entire home/apt,115,30,4,2019-04-17,0.12,31,65 +12870344,MIDTOWN EAST PRIVATE ROOM,70382366,Alexandra,Manhattan,Midtown,40.75347,-73.97293,Private room,145,1,0,,,1,0 +12871039,Stylish Loft in Times Square with Roof Deck,30368670,Juan,Manhattan,Hell's Kitchen,40.76474,-73.99154,Entire home/apt,399,180,29,2018-08-03,0.84,2,0 +12871310,Charming and spacious Brooklyn apt,29959914,Peter,Brooklyn,Bushwick,40.68616,-73.91543,Private room,52,1,3,2016-09-26,0.08,1,0 +12871708,ENTIRE PLACE,70396243,Yvelisse,Manhattan,Washington Heights,40.85558,-73.93777,Entire home/apt,95,1,104,2019-06-23,3.30,1,81 +12872882,HUGE Willamsburg Duplex Loft,4391441,Mark,Brooklyn,Williamsburg,40.70678,-73.94918,Entire home/apt,190,2,84,2019-05-29,2.19,1,8 +12873159,5TH AVE~~RoofTop Deck ~~City Views @EMPIRE ST BLDG,70409953,Michael,Manhattan,Chelsea,40.74849,-73.98957,Entire home/apt,480,5,106,2019-06-29,2.99,1,263 +12873930,Upper West Side 1BR next to subway/Central Park,70419222,Doreen,Manhattan,Upper West Side,40.78458,-73.97836,Entire home/apt,180,3,2,2016-08-16,0.06,1,0 +12874443,Modern and Bright Studio Apt in Williamsburg,8534626,Shannon,Brooklyn,Greenpoint,40.72083,-73.95401,Entire home/apt,150,2,3,2019-01-20,0.08,1,0 +12874666,Holiday in Trendy Williamsburg Apt!,1909320,Peter,Brooklyn,Williamsburg,40.7155,-73.96188,Private room,150,1,6,2019-07-04,0.16,3,364 +12874869,Greenwich Village| Private Queen room,70429659,Kelly,Manhattan,Greenwich Village,40.73694,-73.99587,Private room,140,1,78,2019-06-16,2.23,1,321 +12876883,Comfortable bedroom in spacious apt,11452065,Arthur,Brooklyn,Borough Park,40.64052,-73.99668,Private room,70,2,1,2016-06-13,0.03,1,0 +12881611,Large bedroom in spacious & sunny Greenpoint Apt!,17204066,Maham,Brooklyn,Greenpoint,40.72846,-73.95033,Private room,70,2,21,2019-03-10,0.54,1,4 +12881712,High FL - Gym Doorman Alcove Studio 5205,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74859,-73.97243,Entire home/apt,197,30,1,2019-03-31,0.30,96,325 +12882914,Luxury Hi-Rise in the Gramercy,807404,Eddie,Manhattan,Gramercy,40.73831,-73.98319,Entire home/apt,310,4,0,,,1,0 +12883073,East Village 1 BDRM - Trendy Area - Subway 1.5 Blk,21315876,Helen,Manhattan,East Village,40.72472,-73.98665,Entire home/apt,128,1,28,2019-07-06,0.79,2,178 +12884594,Amazing entire apt on tree-lined st,3948462,Elizabeth,Manhattan,Chelsea,40.73924,-73.99825,Entire home/apt,150,2,4,2017-01-02,0.11,1,0 +12885249,Room in Bushwick Bk available June,65459567,Destiny,Brooklyn,Bushwick,40.68651,-73.91185,Private room,26,14,0,,,1,0 +12885472,Lovely large 2BR Apartment Close to Subway,2629017,Michelle,Queens,Ridgewood,40.70581,-73.90112,Entire home/apt,75,2,54,2019-07-05,1.99,1,64 +12885921,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74472,-73.99266,Entire home/apt,280,30,3,2019-03-03,0.10,87,364 +12886345,Cozy West Village apartment,31757138,Chris,Manhattan,West Village,40.73009,-74.00222,Private room,93,1,0,,,1,0 +12886380,SkyView Massive 2 bed 2 bath 5174,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77692,-73.95126,Entire home/apt,390,30,1,2018-04-05,0.07,96,239 +12887457,HUGE AMAZING STUDIO/ FEEL LIKE HOME,1475015,Mike,Manhattan,Midtown,40.75754,-73.96943,Entire home/apt,115,30,0,,,52,343 +12888052,"West 50th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Hell's Kitchen,40.76152,-73.98678,Entire home/apt,256,30,3,2018-09-11,0.09,87,358 +12888849,"Bright Luxury Studio, Central Loc.",16476167,Sarah,Manhattan,Midtown,40.74513,-73.98475,Entire home/apt,250,366,0,,,1,365 +12891996,Giant Sun-filled Chelsea Studio,70583598,Michael And Fernanda,Manhattan,Chelsea,40.74303,-73.99797,Entire home/apt,200,2,1,2016-06-02,0.03,1,0 +12892861,Great Apartment for 2~ right next to subway~!,70594777,Deqing,Brooklyn,Clinton Hill,40.68873,-73.96523,Entire home/apt,150,7,4,2016-07-31,0.11,1,0 +12895146,Cozy Budget Apt,63790712,Layla,Manhattan,Harlem,40.80476,-73.95416,Private room,41,21,2,2018-08-17,0.16,2,0 +12897133,Private Room in Hell's Kitchen,7560581,Vishnu,Manhattan,Hell's Kitchen,40.76274,-73.98733,Private room,100,4,0,,,1,0 +12897616,Upper West Side Room,70637655,Andrea,Manhattan,Upper West Side,40.80288,-73.96629,Private room,75,1,1,2016-06-13,0.03,1,0 +12897713,Chelsea Flat steps from Herald Sq,70638431,Michael,Manhattan,Chelsea,40.75041,-73.99489,Entire home/apt,300,1,2,2016-05-26,0.05,1,0 +12897946,Awesome 1 Bedroom for rent in BK,70640302,Querlim,Brooklyn,Flatbush,40.65468,-73.95703,Private room,50,3,3,2016-12-06,0.08,1,0 +12898943,Beautiful Pre-War on Prospect Park,10259868,Meredith,Brooklyn,Crown Heights,40.66676,-73.95991,Private room,85,7,0,,,1,0 +12898987,PARK SLOPE TOWNHOUSE,17984997,Josh Victor,Brooklyn,South Slope,40.66757,-73.98498,Entire home/apt,475,3,0,,,1,101 +12899112,BR in large 2BR.,70651602,Aj,Manhattan,East Harlem,40.78576,-73.94211,Private room,50,1,4,2016-05-16,0.10,1,0 +12900284,Elmhurst单房短租5/23-8/10交通便利,27885164,Yiping,Queens,Elmhurst,40.74182,-73.88875,Private room,50,1,0,,,1,0 +12901480,Artistic pad in East Williamsburg!,70674019,Jack,Brooklyn,Bushwick,40.69968,-73.92645,Entire home/apt,179,7,117,2019-06-26,3.04,2,137 +12902256,Cozy private bedroom with window,37782666,Kevin,Manhattan,Lower East Side,40.71366,-73.98799,Private room,72,4,59,2019-06-09,1.56,1,83 +12902467,Cozy and relaxing East Village home,1411232,Thomas,Manhattan,East Village,40.7266,-73.97872,Entire home/apt,150,1,3,2016-05-19,0.08,1,0 +12902686,BayRidge Brooklyn Apartment,70686576,Fotini,Brooklyn,Fort Hamilton,40.61707,-74.03473,Entire home/apt,110,1,1,2016-06-23,0.03,1,0 +12903772,"Luxury Studio + Gym, Rooftop, Elevator!",70646170,Andrew,Manhattan,Upper West Side,40.79167,-73.97273,Entire home/apt,200,2,6,2016-07-30,0.16,1,0 +12904061,Superior double Bedroom - Cozy & Comfy B6,20559017,Yohan,Manhattan,East Harlem,40.7862,-73.94413,Private room,50,30,1,2017-09-08,0.04,9,333 +12904840,Spacious and sunny room in Brooklyn,27634654,Elena,Brooklyn,Bay Ridge,40.6311,-74.03022,Private room,35,30,5,2018-01-03,0.13,2,0 +12905314,Medium sunny furnished room,16414492,Julia Marie,Manhattan,Washington Heights,40.83873,-73.94118,Private room,45,1,6,2017-07-18,0.16,1,0 +12905446,Park Slope Townhouse,2286611,Maddy,Brooklyn,South Slope,40.66455,-73.98479,Entire home/apt,195,3,6,2018-08-21,0.16,1,0 +12911110,"Sunny studio on UWS, steps to park",5317451,Kelly,Manhattan,Upper West Side,40.78397,-73.97063,Entire home/apt,90,8,1,2016-06-19,0.03,1,0 +12912510,Stunning Brooklyn loft in a church!,37241656,Zack,Brooklyn,Williamsburg,40.71638,-73.95684,Entire home/apt,325,2,27,2017-10-22,0.72,1,0 +12913007,Nice Large Well-Lit Studio in Clinton Hill,4090856,Brit,Brooklyn,Clinton Hill,40.68425,-73.96455,Entire home/apt,100,3,2,2018-05-28,0.09,1,8 +12914082,Clean and bright bedroom in Soho,8255336,Darren,Manhattan,SoHo,40.72258,-74.00358,Private room,85,30,5,2016-08-21,0.14,2,69 +12914239,Cherry Hill House - Plum Room,2464187,Jessica,Staten Island,St. George,40.63834,-74.08291,Private room,40,1,5,2017-03-30,0.14,2,0 +12914669,Double bedroom in West Harlem,44665470,Quentin,Manhattan,Harlem,40.80794,-73.9415,Private room,80,1,3,2016-06-03,0.08,1,0 +12914726,Charming West Village Apartment (Manhattan),21375734,Jay,Manhattan,West Village,40.73116,-74.00212,Private room,149,1,6,2018-07-15,0.18,1,0 +12914749,"Bright, Clean & Family-friendly Apartment!",8635103,Charis,Manhattan,Harlem,40.82125,-73.95,Private room,67,4,1,2016-07-03,0.03,1,0 +12915038,Renovated: 15min 4 Train ride to NYC-Crown Heights,25611454,Regina,Brooklyn,East Flatbush,40.65983,-73.93472,Private room,80,3,57,2019-07-03,1.58,1,14 +12915074,Nice Room in Classic Williamsburg Loft,16300594,Ari,Brooklyn,Williamsburg,40.71784,-73.95265,Private room,80,4,16,2018-11-21,0.43,3,0 +12915928,"Renovated 3BR, 2 Full Bath with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66623,-73.93113,Entire home/apt,275,3,27,2019-04-07,0.71,4,271 +12916073,10 min from JFK and 30min to NYC,70827984,Digna,Brooklyn,East New York,40.66921,-73.87797,Entire home/apt,123,4,63,2019-06-03,1.67,1,67 +12916138,2 Bedrooms by Central Park & Trains,70828773,Nick,Manhattan,East Harlem,40.79617,-73.94735,Entire home/apt,179,1,1,2016-05-23,0.03,1,0 +12916189,Family Friendly BK Townhome With Garden Oasis!,951917,Julia And Juan,Brooklyn,Sunset Park,40.66224,-73.99805,Entire home/apt,196,365,4,2018-05-20,0.12,1,365 +12916646,Nice Room in Hell's Kitchen 2 Blocks to Times Sq.,67359538,Vincent,Manhattan,Hell's Kitchen,40.75873,-73.99197,Private room,180,1,28,2018-05-22,0.73,1,0 +12916955,Brownstone in Trendy Bed-Stuy,70839024,Jace,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94843,Entire home/apt,500,2,0,,,1,0 +12917057,Lower East Side Apartment,26476746,Zachary,Manhattan,Lower East Side,40.72118,-73.98697,Entire home/apt,140,4,6,2018-01-03,0.16,1,0 +12917422,Cozy Room in West Harlem NYC,20220930,Oge,Manhattan,Harlem,40.82143,-73.95651,Private room,59,7,1,2016-08-14,0.03,1,0 +12917834,1BR Hell's Kitchen w balcony & view,3988031,Lee,Manhattan,Hell's Kitchen,40.76172,-73.99706,Entire home/apt,200,1,6,2016-09-27,0.16,1,0 +12924969,HANCOCK MASTER BEDROOM,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68709,-73.91989,Private room,165,1,2,2018-10-07,0.09,4,342 +12926448,Sunny Williamsburg 2BR apartment,19393925,Silvan,Brooklyn,Williamsburg,40.70973,-73.9626,Entire home/apt,230,5,0,,,1,0 +12926849,Comfy Room for May,28680349,Bryan,Brooklyn,Greenpoint,40.72577,-73.94981,Private room,90,1,7,2016-08-02,0.19,1,0 +12927770,"Amazing light, spacious & Modern",1289635,Alan,Queens,Long Island City,40.74069,-73.95604,Entire home/apt,200,5,4,2019-04-24,0.11,1,16 +12929852,"New York City Brownstone, Hip and Historic Harlem",58782992,Mark And Josephine,Manhattan,Harlem,40.82272,-73.94502,Entire home/apt,450,31,56,2019-05-28,1.50,2,341 +12932186,The Golden Hand in Harlem ☞ Bright + Modern 1BR,3718821,Matt,Manhattan,Harlem,40.81301,-73.94955,Private room,120,2,44,2019-06-12,1.18,1,96 +12932670,Flushing Spacious Room w/ 2 Queen Beds,65809485,Shirley,Queens,Flushing,40.74954,-73.82829,Private room,60,5,62,2019-06-18,1.64,12,174 +12933540,Comfortable Sofa bed 15 minutes to Manhattan,69711528,Lucia,Bronx,Parkchester,40.83049,-73.87354,Shared room,51,3,9,2017-05-20,0.26,2,89 +12936207,Newly Renovated Duplex Apartment,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93536,Entire home/apt,200,2,80,2019-06-15,2.09,3,286 +12941015,2BR Apt in East Village,406843,Trevor,Manhattan,East Village,40.72889,-73.98006,Entire home/apt,250,3,33,2019-06-23,0.90,2,80 +12941306,Penthouse studio 25min to Manhattan,14035480,Joseph,Brooklyn,Crown Heights,40.67493,-73.96195,Entire home/apt,160,3,0,,,1,0 +12941586,Amazing Studio. Enjoy the best of the UWS!,71093679,Philipe,Manhattan,Upper West Side,40.79458,-73.97077,Entire home/apt,180,2,7,2017-01-01,0.18,1,0 +12945400,Private Bedroom in Williamsburg,49836177,Ian,Brooklyn,Williamsburg,40.71264,-73.94751,Private room,66,1,1,2017-01-02,0.03,1,0 +12947454,"Awesome, Clean & Cozy UWS Apartment",33419138,George,Manhattan,Upper West Side,40.78175,-73.97576,Entire home/apt,180,1,1,2016-05-19,0.03,1,0 +12947660,Cute studio/room in the East Village,36948675,Hoan,Manhattan,East Village,40.72886,-73.9863,Private room,65,18,6,2017-10-10,0.17,1,0 +12947670,COZY BEAUTIFUL STUDIO /GREAT CENTRAL LOCATION,1475015,Mike,Manhattan,Kips Bay,40.74141,-73.97868,Entire home/apt,87,30,2,2018-10-30,0.16,52,365 +12949605,"Large, sun-light room in Brownstone",14131713,Liz,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93557,Private room,60,7,1,2016-06-01,0.03,2,0 +12949840,Remodeled Brand New Brooklyn Apartment,1386468,Jane Anne,Brooklyn,Bushwick,40.6898,-73.91774,Entire home/apt,124,2,104,2019-06-26,2.75,1,237 +12949937,True 2 bedroom apartment in the heart of the LES,71140140,Danielle,Manhattan,Lower East Side,40.71981,-73.99154,Entire home/apt,225,2,1,2016-05-15,0.03,1,0 +12950979,1BR Apt. in Inwood (Manhattan),71152156,Max,Manhattan,Inwood,40.86612,-73.9189,Entire home/apt,77,6,1,2016-05-18,0.03,1,0 +12950997,"Joellen's Place Roomy 1-Queen Bed, Bushwick Apt.",71150679,Joellen,Brooklyn,Bushwick,40.69021,-73.92207,Private room,79,2,57,2019-07-07,1.52,2,127 +12951215,Sleek 1 bedroom apartment near Rockefeller Center!,30283594,Kara,Manhattan,Hell's Kitchen,40.76222,-73.99889,Entire home/apt,239,30,2,2018-01-05,0.10,121,365 +12951417,"Joellen's Place Spacious 2-twin bed, Bushwick Apt.",71150679,Joellen,Brooklyn,Bushwick,40.69024,-73.92197,Private room,65,2,77,2019-06-22,2.04,2,116 +12953106,DUMBO/Vinegar Hill Luxury Apartment,41134220,Mohamed,Brooklyn,Vinegar Hill,40.70196,-73.98297,Entire home/apt,170,30,0,,,1,270 +12953234,Sofa Bed Available in Midtown Manhattan,3664485,Arnie,Manhattan,Hell's Kitchen,40.76455,-73.99128,Shared room,30,3,0,,,1,0 +12953717,Peaceful room in a lovely Brooklyn duplex,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65254,-73.98017,Private room,72,1,4,2016-09-05,0.10,4,0 +12953757,Huge + Cozy East Williamsburg Room,24747678,Caroline,Brooklyn,Bushwick,40.7029,-73.9296,Private room,75,3,5,2018-08-04,0.14,1,0 +12953862,Artist Den Across from Park,15515731,Mira,Brooklyn,Bedford-Stuyvesant,40.68645,-73.93994,Private room,35,5,1,2016-05-23,0.03,1,0 +12953867,Quiet artist apartment w/ backyard,69232570,Jamie,Brooklyn,Bushwick,40.70219,-73.9227,Private room,45,1,98,2019-07-01,2.58,1,16 +12954148,Cozy Room in Upper West Side Near Central Park,24517762,Laura,Manhattan,Upper West Side,40.80045,-73.96119,Private room,67,3,5,2016-06-02,0.13,1,0 +12954498,LOFT in Chelsea,1413546,Asher,Manhattan,Chelsea,40.7453,-73.99333,Entire home/apt,700,30,1,2016-08-07,0.03,2,236 +12955262,2 bedroom loft-like ground floor with patio,3710740,Daniel,Manhattan,Harlem,40.81806,-73.95374,Entire home/apt,150,1,49,2019-06-21,1.30,2,0 +12955281,Comfortable 1-2 bed space close to trains,25733361,Jon,Brooklyn,Bedford-Stuyvesant,40.70017,-73.94357,Entire home/apt,115,3,2,2016-07-05,0.05,1,0 +12955346,Suite with Private Gated Entrance,12160792,Sarah,Brooklyn,Brooklyn Heights,40.69183,-73.99592,Entire home/apt,150,1,107,2019-07-05,2.84,1,75 +12955402,Private room w/ lush garden quiet area,2714164,Jasmine,Brooklyn,Greenpoint,40.72311,-73.94489,Private room,50,2,15,2019-06-14,0.55,2,27 +12955453,Private room in Upper East Side,62172448,Jon,Manhattan,Upper East Side,40.76635,-73.95683,Private room,60,5,1,2016-08-04,0.03,2,0 +12955454,Cozy Room in the Big Apple,33622924,Besinfe,Manhattan,Harlem,40.83018,-73.9483,Private room,50,1,116,2019-07-01,3.06,4,352 +12955940,"large, affordable, clean,convenient",71211231,Ehsan,Bronx,Fordham,40.85396,-73.89872,Private room,34,1,2,2016-06-14,0.05,1,0 +12955943,Charming 1 bed apt in Williansburg,23050317,Ana Paula,Brooklyn,Williamsburg,40.70944,-73.9492,Entire home/apt,100,7,6,2017-12-31,0.16,1,0 +12956122,Studio in prime UWS location,11363395,Ingrid,Manhattan,Upper West Side,40.77998,-73.98018,Entire home/apt,125,1,0,,,1,0 +12956315,Room in 2BR Astoria apt (20min to Central Park),5226800,Katie,Queens,Ditmars Steinway,40.77374,-73.91903,Private room,100,5,0,,,1,0 +12958663,"Breathtaking, panoramic views of Downtown NYC/FiDi",71241926,Mike,Manhattan,Financial District,40.70951,-74.01476,Entire home/apt,125,32,99,2019-05-29,2.73,1,203 +12962482,Park front room in the heart of Bushwick L train,21262993,Nicole,Brooklyn,Bushwick,40.70267,-73.92383,Private room,45,1,2,2016-05-22,0.05,1,0 +12962798,Bright clean apartment in East Village!,321386,Grace,Manhattan,East Village,40.72859,-73.98348,Entire home/apt,198,2,32,2017-06-18,0.84,1,0 +12963341,PRIME EAST VILLAGE LARGE BEDROOM,4534893,Alex,Manhattan,East Village,40.72501,-73.98776,Private room,150,1,5,2018-11-03,0.13,4,121 +12964477,"Clean, Simple, & Private Bedroom (near N/R train)",28370925,En & Lora,Brooklyn,Sunset Park,40.63833,-74.01794,Private room,39,5,89,2018-07-25,2.34,4,0 +12964763,Apartment near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76504,-73.99491,Entire home/apt,150,30,4,2019-05-07,0.12,31,339 +12965288,"COZY HOME, BEST LOCAL ACCESS!",11071244,Nick,Queens,Long Island City,40.76591,-73.93434,Private room,80,2,49,2018-09-27,1.29,1,0 +12965883,"Spacious Haven in Wash Heights, A-train on block!",71188543,Courtney,Manhattan,Washington Heights,40.84909,-73.93829,Private room,46,2,2,2018-08-14,0.08,1,0 +12966225,"1 bedroom apt, comforts of home, close to all..",71312760,Don,Staten Island,Richmondtown,40.57093,-74.12429,Entire home/apt,78,3,79,2019-06-23,2.56,1,300 +12966504,Lovely Two Bedroom Apt in Prime North Williamsburg,28709982,Sidiq,Brooklyn,Williamsburg,40.71827,-73.95494,Entire home/apt,219,3,51,2019-06-09,1.36,3,71 +12966707,HUGE UWS bedroom w/ private bath and great light!,30101336,Jessica,Manhattan,Upper West Side,40.79832,-73.96291,Private room,145,2,1,2018-10-19,0.11,1,180 +12966771,Spacious Midtown Studio,37219626,Kate,Manhattan,Hell's Kitchen,40.76319,-73.98693,Entire home/apt,220,3,0,,,1,0 +12966974,Flatiron Oasis,71321195,Sonia,Manhattan,Chelsea,40.73737,-73.99475,Entire home/apt,225,1,0,,,1,0 +12967227,Bright studio on great location,71315006,Ege,Manhattan,Upper West Side,40.78528,-73.97111,Entire home/apt,2000,20,0,,,1,0 +12969014,Unique Artist's Apartment,9991075,Erika,Manhattan,Upper West Side,40.78116,-73.98104,Entire home/apt,175,1,11,2018-07-07,0.33,2,0 +12969574,Unique artist’s loft-heart of Wburg,160139,Amy,Brooklyn,Williamsburg,40.71559,-73.96385,Entire home/apt,220,4,42,2019-05-20,1.11,1,318 +12970866,Airy and bright room. Prospect Park,25749667,Kseniya,Brooklyn,Flatbush,40.65255,-73.96227,Shared room,85,1,1,2016-05-16,0.03,1,0 +12971882,Huge Bedroom in Beautiful Brownstone w/ Private BR,5265824,Greg,Brooklyn,Clinton Hill,40.69093,-73.96507,Private room,77,5,0,,,1,0 +12972040,BED FOR 1 IN LUXURIOUS PARK AVENUE FLAT,283395,H,Manhattan,Murray Hill,40.74933,-73.97937,Private room,110,1,31,2017-12-10,0.81,2,189 +12972292,Private Room for two guests in Cozy apartment,68139551,Kamil,Queens,Maspeth,40.72075,-73.89496,Private room,58,1,60,2019-05-06,1.57,3,346 +12972320,"Elegant 3 bed, 2 bath apt. on UWS",203039,Maria,Manhattan,Upper West Side,40.80077,-73.9681,Entire home/apt,350,6,5,2018-07-27,0.14,1,92 +12972533,Gorgeous Grand 2 BR LES Gem!,71382423,Jules,Manhattan,Lower East Side,40.71772,-73.98882,Entire home/apt,329,3,104,2019-06-23,2.79,1,205 +12972783,Private Room for Pair in the Cozy Apartament,68139551,Kamil,Queens,Maspeth,40.72143,-73.8932,Private room,58,1,37,2019-06-02,0.97,3,364 +12973288,Private room for pair,68139551,Kamil,Queens,Maspeth,40.72103,-73.89458,Private room,60,1,30,2019-01-05,0.78,3,364 +12973353,CrashPadsUSA Hotbeds for Airline Crew ONLY,63560790,A.B.,Queens,Kew Gardens,40.70542,-73.82979,Shared room,43,1,8,2019-06-30,0.73,2,362 +12973363,Prospect Park Brownstone,22846970,Paige,Brooklyn,Prospect Heights,40.675,-73.96406,Private room,88,2,46,2017-07-31,1.19,1,0 +12973819,"Huge 1BR 5 min to Park, Train",71402091,Jeff,Brooklyn,Flatbush,40.65421,-73.95945,Entire home/apt,90,4,7,2019-04-23,0.18,1,0 +12973878,"Nice,Safe&Quiet Great Value Room",45469626,Aleksey,Brooklyn,Sunset Park,40.64748,-73.99802,Private room,41,3,2,2016-07-05,0.05,1,0 +12973927,Private bedroom in Brooklyn.,15246785,Tiago And Renata,Brooklyn,Bedford-Stuyvesant,40.7001,-73.94326,Private room,65,4,36,2019-07-01,0.96,1,80 +12974423,Spacious & Sunny Apartment in Bushwick,3454707,Shaul,Brooklyn,Bushwick,40.70101,-73.92505,Entire home/apt,95,5,0,,,1,0 +12979100,South Street Seaport Loft Studio,14885449,Brian,Manhattan,Financial District,40.70725,-74.00206,Entire home/apt,160,6,2,2016-06-12,0.05,1,0 +12981106,Stylish unique Loft in prime area of Brooklyn,727410,Sophia,Brooklyn,Bedford-Stuyvesant,40.69116,-73.96039,Entire home/apt,140,6,18,2019-05-04,0.53,1,11 +12983699,"East 82nd Street, Upper East Side/Yorkville 1bd",22541573,Ken,Manhattan,Upper East Side,40.77301,-73.95045,Entire home/apt,169,30,1,2018-11-11,0.13,87,347 +12983995,"Cosy, neat 1bed apt 5mins to Central Pk & Columbia",71499258,Robbie,Manhattan,Upper West Side,40.80121,-73.96277,Entire home/apt,115,10,2,2018-05-21,0.09,1,4 +12984506,Artsy Home in the Heart of Bushwick,52498520,Mariella,Brooklyn,Bushwick,40.68622,-73.91026,Private room,67,1,20,2017-09-17,0.53,1,365 +12984535,Beautiful room in a spacious Brooklyn duplex,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65256,-73.9798,Private room,60,1,1,2016-08-14,0.03,4,0 +12984848,"Private Room in Greenpoint, Brooklyn",183504,Chris,Brooklyn,Greenpoint,40.73547,-73.9545,Private room,45,28,9,2019-06-01,0.37,1,332 +12984851,Private room in heart of LES,56752163,Sabina,Manhattan,Lower East Side,40.71884,-73.99294,Private room,60,2,3,2018-04-22,0.08,2,0 +12985547,Gorgeous- 2 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77219,-73.95588,Entire home/apt,142,30,2,2018-09-30,0.15,29,319 +12986700,2 bed 2 bath in North Williamsburg,1477622,Nahid,Brooklyn,Williamsburg,40.72113,-73.95574,Entire home/apt,350,2,3,2017-01-02,0.08,1,0 +12986728,HUGE room for rent in AUGUST in HAMILTON HEIGHTS,6069897,Justine,Manhattan,Harlem,40.82272,-73.95144,Private room,40,29,2,2018-08-31,0.08,1,0 +12987298,Artist Apartment in Park Slope,21541169,Erica,Brooklyn,South Slope,40.6617,-73.98221,Private room,65,14,8,2016-09-07,0.21,1,0 +12987983,Big Room in Brownstone Apartment!,4386682,Francesco,Queens,Ridgewood,40.70204,-73.91068,Private room,50,3,4,2018-07-21,0.15,3,0 +12988054,HUGE lofty room & tall ceilings Bushwick/Ridgewood,4386682,Francesco,Queens,Ridgewood,40.70435,-73.91207,Private room,42,7,3,2017-03-07,0.09,3,0 +12988898,"",71552588,Andrea,Bronx,Fordham,40.86032,-73.88493,Shared room,130,1,0,,,1,365 +12989612,Priv Rm w. Big Loft Living Room across from FIT,6502531,Andrea,Manhattan,Chelsea,40.74711,-73.99281,Private room,100,1,2,2018-07-13,0.05,2,65 +12989767,Beautiful Studio on Tree-Lined St.,16436459,Liz,Manhattan,Chelsea,40.74583,-74.00451,Entire home/apt,175,4,30,2019-07-01,0.82,1,48 +12990051,"Private, Quiet 2 BR in Heart of Times Square!",30045665,Boyd,Manhattan,Hell's Kitchen,40.76039,-73.99028,Entire home/apt,399,2,80,2019-06-24,2.11,1,212 +12990172,Furnished 1 Br Near Columbia,37194964,Shutong,Manhattan,Morningside Heights,40.81488,-73.95886,Entire home/apt,110,7,0,,,1,0 +12990232,Spacious Bushwick bedroom,29268760,Lena,Queens,Ridgewood,40.69284,-73.90348,Private room,45,7,0,,,1,0 +12990502,Cute small room in Astoria,2736755,Marian,Queens,Astoria,40.77091,-73.91875,Private room,40,2,36,2019-06-24,0.96,2,0 +12990578,Cozy Room with Window View near Times Square,49447536,Wing Yan,Manhattan,Hell's Kitchen,40.75484,-73.9922,Private room,100,1,1,2016-06-08,0.03,1,0 +12990587,"6BR, 4 Full Bath Duplex with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66629,-73.93073,Entire home/apt,575,3,33,2019-06-25,1.12,4,259 +12990926,Cozy private bedroom close to Manhattan,2736755,Marian,Queens,Astoria,40.7691,-73.91994,Private room,63,7,1,2017-01-02,0.03,2,0 +12995569,Simple Luxury in Columbus Circle,7199306,Katie,Manhattan,Hell's Kitchen,40.76814,-73.98476,Entire home/apt,177,2,2,2016-08-21,0.06,1,0 +12999167,Charming & Sunny Studio in the Heart of NYC,19726948,Willow,Manhattan,Lower East Side,40.72151,-73.98814,Entire home/apt,158,2,145,2019-06-24,4.81,1,193 +12999396,"Red Hook Beach House, Garden, Pool , Roof top",29210997,Stephanie,Brooklyn,Red Hook,40.67498,-74.01169,Entire home/apt,400,3,11,2019-07-01,0.29,1,6 +13000007,Bright Sunny Spacious Apt in Historic Neighborhood,124866,Addie,Brooklyn,Cobble Hill,40.68985,-73.99311,Entire home/apt,90,5,18,2019-05-08,0.87,1,2 +13000020,Sunny 1-bedroom apartment in the LES,1422833,Jaime,Manhattan,Lower East Side,40.7205,-73.98315,Entire home/apt,135,2,16,2017-11-12,0.44,1,0 +13000257,"Charming, bright Williamsburg apt",71665510,Aurora,Brooklyn,Williamsburg,40.71685,-73.9615,Entire home/apt,200,2,4,2019-05-07,0.15,1,318 +13000483,All New Garden Apartment,1261588,Julian,Brooklyn,Crown Heights,40.67968,-73.9595,Entire home/apt,155,30,132,2019-04-16,3.53,1,83 +13000527,Studio47 - bedroom in artists' loft,19866179,Jackson,Manhattan,Two Bridges,40.71098,-73.99296,Private room,100,30,1,2019-02-25,0.22,1,0 +13000571,Mid Century Modern Greenwich Village 1 Bedroom,3807299,Jerry,Manhattan,Greenwich Village,40.73418,-73.99338,Entire home/apt,315,3,5,2018-12-31,0.16,1,38 +13001082,Share space in E Harlem,4112409,Rick,Manhattan,East Harlem,40.79193,-73.9439,Shared room,45,1,52,2019-06-19,1.41,1,347 +13003338,Midtown Convenient Living Area Close to All,1475855,Tanya,Manhattan,Kips Bay,40.74358,-73.98096,Private room,125,3,0,,,1,0 +13004741,"Bedroom in Clean, Uptown Apartment",1921498,Pedro Pablo,Manhattan,Washington Heights,40.84524,-73.93508,Private room,49,90,17,2019-06-01,0.49,3,142 +13004961,GROUP/ FAMILY LOFT SUITE,4852748,Michelle,Manhattan,Harlem,40.80577,-73.94616,Entire home/apt,220,4,1,2018-06-23,0.08,6,364 +13004967,King suite with jacuzzi,4852748,Michelle,Manhattan,Harlem,40.80527,-73.94579,Private room,220,2,3,2018-10-03,0.09,6,365 +13004996,Beach Bungalow 2,71717596,Beth,Queens,Rockaway Beach,40.58977,-73.81324,Entire home/apt,100,2,50,2019-07-07,1.31,1,40 +13006002,Cozy room in a beautiful and quite apartment,31996442,Annalisa,Brooklyn,Clinton Hill,40.69475,-73.96848,Private room,70,1,3,2016-07-18,0.08,1,0 +13006794,Fully Furnished 1 Bedroom UWS APT,10838145,Yaakov (Jacob),Manhattan,Upper West Side,40.798,-73.96317,Entire home/apt,74,2,8,2016-08-24,0.21,1,0 +13007629,The spot in chinatown,3059285,Pierce,Manhattan,Chinatown,40.71536,-73.99794,Entire home/apt,290,2,3,2016-10-30,0.08,1,0 +13007839,Second floor apartment,71754921,Berta,Brooklyn,Crown Heights,40.66789,-73.94351,Entire home/apt,100,1,0,,,1,0 +13007925,Private Bedroom and Bath in Spacious Duplex,42835213,Zandelle,Brooklyn,East Flatbush,40.64645,-73.95047,Private room,85,4,42,2019-06-21,1.46,2,35 +13009244,"Real 1-BR Home in West Village, Central yet Quiet!",10458139,Jorge,Manhattan,West Village,40.73799,-74.00074,Entire home/apt,199,31,81,2019-06-24,2.36,1,85 +13013882,Williamsburg Private Bedrooom,71746226,Noah,Brooklyn,Williamsburg,40.70739,-73.94318,Private room,65,2,1,2016-06-04,0.03,1,0 +13014556,"Private, cozy room in the heart of Crown Heights",23269902,Mia,Brooklyn,Crown Heights,40.67251,-73.95334,Private room,45,2,26,2019-06-18,1.23,1,45 +13015322,Awesome bedroom in the heart of NYC,53308963,Aj,Manhattan,Chinatown,40.71415,-73.99806,Private room,95,2,6,2019-06-22,0.17,2,7 +13016082,Steps from Central Park: Bedroom in spacious apt,12127963,Ben,Manhattan,East Harlem,40.78804,-73.95382,Private room,95,5,4,2017-08-19,0.11,1,0 +13016230,Peaceful and Pleasant Studio,30074012,Laura,Brooklyn,Flatbush,40.63887,-73.96667,Entire home/apt,80,3,32,2018-09-21,0.85,1,0 +13016389,DAZZLING APT SKYLINE VIEW IN PRIME LOCATION,71838636,Michael,Manhattan,Chelsea,40.73596,-73.99228,Entire home/apt,300,5,22,2019-06-18,0.58,1,87 +13016411,Hanover Square Lux Downtown 1 Bd Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70519,-74.0082,Entire home/apt,259,30,0,,,87,302 +13016417,Studio Apt in Murray Hill w/ Qn Bed,33273074,Elizabeth,Manhattan,Kips Bay,40.74139,-73.9783,Entire home/apt,120,2,7,2016-12-06,0.18,1,0 +13017016,Greenwich village 1 bedroom - spacious!,69841552,Jacob,Manhattan,SoHo,40.72625,-74.00199,Entire home/apt,150,3,40,2019-04-22,1.05,1,4 +13017140,Bright & Cozy 1BR + Home Gym!,65727695,Shutong,Manhattan,Morningside Heights,40.81632,-73.96007,Entire home/apt,120,2,2,2017-01-02,0.06,1,0 +13018125,AMAZING CENTRAL MANHATTAN 1 BED W/BALCONY FITS 4!,10797290,Caroline,Manhattan,Chelsea,40.74469,-73.99858,Entire home/apt,225,1,32,2019-01-01,0.87,1,0 +13018127,Big Beautiful Master Bedroom in Williamsburg,22124777,Isabella,Brooklyn,Williamsburg,40.70961,-73.96352,Private room,100,1,37,2019-06-14,1.07,1,0 +13018248,Williamsburg True 1 Bedroom Apartment,1207773,Trista,Brooklyn,Williamsburg,40.70772,-73.95978,Entire home/apt,160,3,13,2018-05-28,0.35,2,0 +13018811,Private clean room in Manhattan,71865037,Elinor,Manhattan,Harlem,40.82032,-73.94457,Private room,49,3,0,,,1,0 +13019053,East Village Business and Leisure,24278208,Reah,Manhattan,East Village,40.72669,-73.98792,Entire home/apt,150,3,35,2019-01-02,0.92,1,0 +13019333,Sunny 1BR next to Central Park,3671013,Neha,Manhattan,Midtown,40.76232,-73.97614,Private room,100,2,0,,,2,0 +13019720,2 Bedroom Wyndham Midtown 45 Sleeps 6,57574248,Christine,Manhattan,Midtown,40.7533,-73.97346,Entire home/apt,275,3,16,2017-11-30,0.43,3,0 +13019851,Beautiful Brooklyn Bedroom!,59093909,Katherine E,Brooklyn,Clinton Hill,40.69525,-73.96604,Private room,45,1,3,2016-07-14,0.08,1,0 +13020422,Luxury 1BR Apartment with Washer & Dryer,4909923,Joel,Brooklyn,Williamsburg,40.71293,-73.9603,Entire home/apt,195,3,54,2019-06-26,1.42,1,97 +13023771,Prospect gardens,71853402,Lorraine,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95245,Private room,100,1,14,2019-04-30,0.37,2,304 +13025960,Bright & Cozy Furnitured 4 Sublet,71948176,Cristian,Brooklyn,Bedford-Stuyvesant,40.68917,-73.95528,Private room,1000,1,0,,,1,0 +13026702,"Modern, Spacious 1-bedroom Apt in Lower East Side",9455699,Shylie,Manhattan,Lower East Side,40.72033,-73.98767,Entire home/apt,195,1,9,2017-09-26,0.24,1,0 +13027365,Quiet Two Bedroom with Sunroom,48804458,Andrew,Queens,Ridgewood,40.70432,-73.90015,Entire home/apt,87,5,133,2019-06-24,3.50,2,49 +13027960,"Beautiful, Sunny Apt by the Park",14012039,Nicole & Tyson,Brooklyn,Flatbush,40.65359,-73.95631,Entire home/apt,120,3,3,2018-06-04,0.08,1,0 +13028533,1 BD Suite W/ Kitchen 550 SQFT Wyn Midtown 45 NYC,57574248,Christine,Manhattan,Midtown,40.75303,-73.97327,Entire home/apt,170,2,9,2017-12-15,0.26,3,0 +13030999,Manhattan downtown luxury apartment,59552219,Chunxiao,Manhattan,Financial District,40.70645,-74.01144,Entire home/apt,160,7,2,2017-01-23,0.05,1,0 +13031184,Large & sunny bedroom in Park Slope,923412,Eleanor,Brooklyn,South Slope,40.66573,-73.98947,Private room,50,7,0,,,1,0 +13031383,Spacious room + private bathroom in Williamsburg,5163395,Caitie,Brooklyn,Williamsburg,40.70775,-73.94725,Private room,75,2,0,,,1,0 +13031826,Modern Brooklyn Lifestyle,18933388,Efrem,Brooklyn,Crown Heights,40.67661,-73.95611,Entire home/apt,225,1,5,2016-07-17,0.13,1,0 +13031854,Samaria's Brownstone (Crown Heights),72019599,Maria,Brooklyn,Crown Heights,40.67218,-73.95368,Entire home/apt,125,2,70,2019-06-23,1.85,1,132 +13032261,2bd Presidential NYC,57571805,Gharet,Manhattan,Midtown,40.75315,-73.97339,Entire home/apt,350,2,3,2017-06-20,0.10,3,0 +13033170,Designer’s Penthouse with Terrace and Skyline View,2637408,Chris,Brooklyn,Williamsburg,40.71214,-73.94992,Entire home/apt,175,3,122,2019-06-15,3.37,2,128 +13033376,Private Parkside Room,21340955,Shean,Brooklyn,Flatbush,40.65272,-73.96127,Private room,65,3,28,2019-05-31,1.09,3,298 +13037692,Midtown 2 full bedrooms,66326553,Pierre,Manhattan,Hell's Kitchen,40.76111,-73.99248,Entire home/apt,350,6,97,2019-06-14,2.55,2,236 +13039122,Bk's Finest City life close to Transportation,50600973,Joyell,Brooklyn,Bushwick,40.69499,-73.9283,Private room,45,1,251,2019-06-20,6.68,7,69 +13039351,Whole Apartment in Fort Greene,751120,Nat,Brooklyn,Fort Greene,40.68715,-73.97388,Entire home/apt,120,2,21,2017-04-06,0.56,1,0 +13039849,"Peaceful, cozy, artistic studio.",283116,Lorie,Queens,Sunnyside,40.74625,-73.91643,Entire home/apt,75,5,0,,,1,0 +13040171,Cozy room in East Village,9460317,Diane,Manhattan,East Village,40.72906,-73.98006,Private room,100,3,2,2016-08-12,0.05,1,0 +13040221,"3,500 sqf Spectacular Luxury Downtown Loft",5302382,Torun,Manhattan,Chelsea,40.74574,-73.99633,Entire home/apt,850,2,10,2018-12-29,0.26,1,10 +13040618,Sunny and spacious private room,23457783,Stephanie,Brooklyn,Bushwick,40.6905,-73.90834,Private room,40,1,1,2016-05-15,0.03,1,0 +13040683,Airy livingroom in quiet restaurant neighborhood !,28868609,John,Queens,Ditmars Steinway,40.77266,-73.90268,Shared room,100,1,1,2016-05-23,0.03,1,0 +13042051,Modern Williamsburg Condo near restaurants + metro,43339525,Jeff,Brooklyn,Williamsburg,40.7163,-73.94394,Entire home/apt,178,2,22,2018-10-21,0.59,1,3 +13042637,Stunning 2BR Apartment in Sunnyside,9427289,Steve,Queens,Sunnyside,40.74691,-73.91763,Entire home/apt,170,2,149,2019-07-01,4.21,2,229 +13042752,Cozy Spacious Double Bed #1 Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69617,-73.85204,Private room,45,1,235,2019-06-30,6.15,4,278 +13043208,Modern Studio in Financial District,14060030,Emily,Manhattan,Financial District,40.70527,-74.00629,Entire home/apt,180,1,2,2016-05-28,0.05,1,0 +13043314,SUNNY ROOM ~ WILLIAMSBURG ~,6818577,Tom,Brooklyn,Williamsburg,40.70879,-73.95235,Private room,89,30,1,2016-09-24,0.03,1,0 +13043724,"Spacious, private room in Apt in Bushwick!",72157489,Yvonne,Brooklyn,Bushwick,40.6928,-73.91614,Private room,50,1,5,2019-05-10,0.13,2,0 +13044519,"Quiet, relaxing room in Greenpoint",2349563,Johann,Brooklyn,Greenpoint,40.73356,-73.95808,Private room,80,1,2,2016-07-26,0.05,1,0 +13044589,3 Bedroom House In Park Slope Brooklyn,6462802,Denise,Brooklyn,South Slope,40.6647,-73.98474,Entire home/apt,250,4,4,2016-12-30,0.11,1,0 +13044668,Master bedroom to rent in Flatiron District,72168153,Carlos,Manhattan,Midtown,40.74464,-73.98436,Private room,70,20,4,2018-10-29,0.11,1,8 +13044689,Chelsea 1 Bedroom Apartment in a doorman/elev bldg,3166393,Robert,Manhattan,Chelsea,40.74632,-74.00431,Entire home/apt,170,29,0,,,1,64 +13044815,Private room available!,72112652,Lauren,Manhattan,Financial District,40.70825,-74.01403,Private room,90,4,0,,,2,0 +13044964,Stylish and cute girly shared room in Manhattan,5288991,Tanya,Manhattan,Upper East Side,40.7775,-73.95262,Shared room,45,30,20,2019-05-26,0.53,6,258 +13044996,Large Sun-Lit 1 Br Apartment,60278094,Keith,Brooklyn,Flatbush,40.64053,-73.95785,Entire home/apt,100,2,21,2017-07-21,0.55,1,0 +13045196,Private room & bathroom available,24165646,Sacha,Brooklyn,Bushwick,40.68754,-73.91265,Private room,65,3,33,2018-09-30,0.86,1,189 +13045257,Glamorous shared room in Manhattan,5288991,Tanya,Manhattan,Upper East Side,40.77854,-73.95073,Shared room,45,30,22,2019-05-05,0.58,6,323 +13045435,Stylish shared room for a guy near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77927,-73.95071,Shared room,45,30,22,2018-12-22,0.58,6,289 +13045531,Super chic shared room for a guy near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77903,-73.95238,Shared room,45,30,22,2018-07-01,0.58,6,294 +13045629,Chic stylish amazing Manhattan room,5288991,Tanya,Manhattan,Upper East Side,40.77736,-73.95144,Private room,90,30,79,2019-06-18,2.08,6,246 +13046279,Cozy 2 bedroom apt in Manhattan,364558,Khatia,Manhattan,Washington Heights,40.83805,-73.94307,Entire home/apt,150,2,17,2019-07-02,0.45,1,15 +13047594,Sunny Room in East Williamsburg!,11107448,Jessica,Brooklyn,Williamsburg,40.71862,-73.94216,Private room,62,7,0,,,2,0 +13052968,Charming 1-BR Fort Greene Apartment,26959668,Flo And Erin,Brooklyn,Fort Greene,40.68748,-73.97397,Entire home/apt,125,3,19,2019-05-28,0.51,1,0 +13055236,Steps 2 Empire State Building amazing studio NYC,72280483,Marco,Manhattan,Murray Hill,40.74688,-73.97813,Entire home/apt,125,2,100,2019-06-17,2.63,1,34 +13055856,A Brooklyn Experience,72287701,Robert,Brooklyn,Crown Heights,40.67533,-73.95545,Entire home/apt,175,1,121,2019-04-29,3.17,1,7 +13056210,Very large room for 1 adult,72291606,Jon,Brooklyn,Bushwick,40.69029,-73.91899,Shared room,75,1,25,2017-03-07,0.66,1,155 +13057103,Spacious room in great neighborhood,27634654,Elena,Brooklyn,Bay Ridge,40.63095,-74.03026,Private room,30,90,1,2016-06-07,0.03,2,0 +13058232,1 Bedroom townhouse apt in Chelsea w/ back garden,72313021,Michael,Manhattan,Chelsea,40.74472,-74.00095,Entire home/apt,295,1,50,2019-07-07,1.33,1,77 +13058423,Charming 1 br - most perfect block!,26535250,Sheila,Brooklyn,Windsor Terrace,40.65841,-73.97753,Entire home/apt,50,1,74,2019-06-01,2.03,3,236 +13058496,Sunny Private Room in Brooklyn,72315258,Anna,Brooklyn,Crown Heights,40.67619,-73.93866,Private room,28,1,0,,,1,0 +13058729,Sunlit Bedroom in Crown Heights.,72318418,Francisca,Brooklyn,Brownsville,40.66783,-73.92192,Private room,69,2,104,2019-06-21,2.72,3,362 +13058888,Great Deal!!! Big Room in the Heart of Harlem,7701998,Pedro,Manhattan,Harlem,40.81569,-73.94622,Private room,75,1,0,,,1,0 +13059537,One Bedroom Luxury Furnished 5188,16098958,Jeremy & Laura,Manhattan,Financial District,40.7034,-74.00787,Entire home/apt,175,30,2,2018-03-01,0.10,96,365 +13059631,Nice room in up and coming Bushwick,15720806,Ralph,Brooklyn,Bedford-Stuyvesant,40.69349,-73.93031,Private room,50,3,0,,,1,0 +13059872,Cozy apartment in Noho/ Soho,3149121,Nika,Manhattan,Greenwich Village,40.72617,-73.99658,Private room,90,1,2,2016-06-13,0.05,1,0 +13061064,Sunny Guest Room in UES Apartment,16345024,Amy,Manhattan,Upper East Side,40.77687,-73.9546,Private room,100,2,1,2016-06-16,0.03,1,0 +13061422,"Stunning, spacious apt near nightlife + parks!",6324947,Sarah,Brooklyn,Greenpoint,40.72341,-73.94061,Private room,49,3,4,2019-06-23,0.30,1,7 +13062471,The Silver Room,33346283,Jonathan,Manhattan,Harlem,40.83141,-73.94722,Private room,55,5,31,2019-06-26,0.88,3,326 +13062975,UPSCALE JR. 1 Bedroom in HEART OF HISTORIC CHELSEA,59905183,Bc,Manhattan,Chelsea,40.74664,-74.00165,Entire home/apt,249,90,2,2016-09-18,0.06,1,177 +13063023,Cozy room in Astoria,1924750,Jasmina,Queens,Astoria,40.76437,-73.91304,Private room,36,2,37,2019-06-24,1.03,2,228 +13063360,Cozy Room in Sunny Home,13270888,Adriana,Queens,Astoria,40.76764,-73.91633,Private room,65,4,28,2018-12-14,0.74,1,0 +13064336,Cozy Private Bedroom - Williamsburg,1412548,Naomi,Brooklyn,Williamsburg,40.70806,-73.94224,Private room,60,3,1,2017-10-12,0.05,1,0 +13064382,Sunny East Village apartment,26378652,Guy,Manhattan,East Village,40.72791,-73.98916,Entire home/apt,180,4,3,2019-06-07,0.10,1,0 +13064386,Beautiful Red Brick Room,23909946,Robin Laverne,Brooklyn,Bedford-Stuyvesant,40.68604,-73.91924,Private room,50,5,39,2019-06-21,1.04,3,40 +13064443,Amazing Studio in Brooklyn Heights,15239567,Feliz,Brooklyn,Brooklyn Heights,40.69218,-73.99124,Entire home/apt,110,2,1,2016-05-23,0.03,1,0 +13064717,76 St & 2 Ave /Renovated studio/ Elevator/ Laundry,1475015,Mike,Manhattan,Midtown,40.76102,-73.96555,Entire home/apt,87,30,2,2017-02-19,0.05,52,365 +13064913,Sunny Studio in the Heart of Downtown Brooklyn.,3872251,Santron,Brooklyn,Fort Greene,40.68589,-73.97659,Entire home/apt,100,2,13,2016-08-30,0.35,1,0 +13065032,"Spacious, kid-friendly apt. 15 mins from Manhattan",10643230,Jacob,Queens,Sunnyside,40.7464,-73.91675,Entire home/apt,120,5,3,2018-08-20,0.08,1,0 +13065347,COOL Brooklyn Room,48764969,Alina,Brooklyn,Cypress Hills,40.68122,-73.90399,Private room,42,6,12,2019-05-19,0.96,2,207 +13065356,"""Quaint-Essential"" Living in the West Village",42399786,Braydon,Manhattan,West Village,40.73564,-73.99823,Entire home/apt,145,3,100,2018-09-15,2.62,1,0 +13065655,Charming 1BR in Astoria with HUGE Outdoor Space!,72398084,David,Queens,Astoria,40.76803,-73.93033,Entire home/apt,110,21,0,,,1,0 +13065949,Spacious East Village Bedroom,11362470,Kyle,Manhattan,East Village,40.73007,-73.98637,Private room,99,1,2,2016-05-20,0.05,1,0 +13066577,Beautiful 3 bedroom loft Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73333,-73.95699,Entire home/apt,129,2,87,2019-06-23,2.33,4,124 +13067176,Prime Location Sun Filled West Village Townhome,72420514,Cate,Manhattan,West Village,40.73745,-74.00725,Entire home/apt,186,1,197,2019-07-07,5.24,3,209 +13070577,"It's ""THAT DREAM HOUSE"" in Williamsburg",32525834,Lara,Brooklyn,Williamsburg,40.71968,-73.94368,Entire home/apt,350,3,2,2018-06-10,0.14,1,78 +13072490,Large apartment in charming neighborhood,19414202,Marie Clare,Brooklyn,Greenpoint,40.73046,-73.95706,Entire home/apt,165,3,8,2017-05-13,0.22,1,0 +13073569,"Duane Street, Upscale Tribeca Studio",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00679,Entire home/apt,210,30,1,2019-04-30,0.43,87,329 +13073701,Lovely Charming and quiet 2 bed apartment,35660592,Luis,Queens,Corona,40.75058,-73.8535,Entire home/apt,119,2,37,2019-07-02,1.01,6,336 +13075158,Private Room in Artsy Lower Manhattan Apartment,1516947,Mil,Manhattan,Civic Center,40.71287,-73.99811,Private room,75,17,17,2019-03-31,0.48,1,38 +13075169,NYC Upper East 3B Home with Private Garden,72496078,Steven,Manhattan,Upper East Side,40.77331,-73.95459,Entire home/apt,400,7,4,2018-12-08,0.33,1,31 +13076592,Cozy bedroom with brightly lit living space,3389514,Nathalie,Brooklyn,Bedford-Stuyvesant,40.69313,-73.93543,Private room,60,2,59,2019-07-02,1.56,1,6 +13076852,Stylish Art-Filled Clinton Hill Apartment,72513175,Deshawn,Brooklyn,Bedford-Stuyvesant,40.68934,-73.9579,Private room,140,4,8,2017-05-29,0.21,1,89 +13076887,Spacious Studio in Midtown Manhattan,41263120,Mia,Manhattan,Midtown,40.75325,-73.97016,Entire home/apt,190,4,0,,,1,0 +13077215,"Third Avenue, 1bd Serviced Apartment",22541573,Ken,Manhattan,Gramercy,40.7382,-73.98301,Entire home/apt,245,30,1,2018-11-01,0.12,87,236 +13077301,"Duane Street, Upscale Tribeca 1bd",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00667,Entire home/apt,245,30,1,2018-05-26,0.07,87,262 +13077317,"East 29th Street, Luxury Studio in NOMAD",22541573,Ken,Manhattan,Midtown,40.74426,-73.98535,Entire home/apt,192,30,0,,,87,334 +13077370,Modern Private Studio -20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73874,-73.87595,Entire home/apt,89,1,146,2019-06-25,3.85,6,252 +13077988,"East 29th Street, Luxury 1bd in NOMAD",22541573,Ken,Manhattan,Midtown,40.74556,-73.98542,Entire home/apt,219,30,0,,,87,343 +13078166,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73929,-73.9999,Entire home/apt,179,30,0,,,87,273 +13078201,Hanover Square Lux Downtown Studio Serviced Apt,22541573,Ken,Manhattan,Financial District,40.7052,-74.00974,Entire home/apt,199,30,0,,,87,344 +13079614,"West Street, Upscale Svcd 1bd Dwtn Financial Area",22541573,Ken,Manhattan,Financial District,40.70748,-74.01476,Entire home/apt,238,30,0,,,87,365 +13079618,Cozy Apartment in Fort Greene,7221835,Darian,Brooklyn,Fort Greene,40.6904,-73.97285,Entire home/apt,140,3,2,2016-10-24,0.05,1,0 +13080002,Clinton Hill room in two-bedroom apartment,2340370,Vivek,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95801,Private room,37,1,1,2016-11-01,0.03,1,0 +13080685,Shared room in Kips Bay/Murray Hill,5707158,Yuan,Manhattan,Kips Bay,40.7447,-73.97593,Shared room,49,2,23,2017-06-20,0.61,2,0 +13081306,Studio near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76517,-73.99331,Entire home/apt,115,30,6,2019-06-05,0.17,31,331 +13082571,Garden Overlook,72318418,Francisca,Brooklyn,Crown Heights,40.67002,-73.92054,Private room,69,2,132,2019-06-24,3.46,3,365 +13082588,Modern and Clean Upper East Side Studio,17671924,Emily,Manhattan,Upper East Side,40.77079,-73.95949,Entire home/apt,100,2,2,2016-07-17,0.05,1,0 +13082600,Cozy 1 bedroom apartment in the heart of Manhattan,4980733,Simona,Manhattan,Midtown,40.75584,-73.96979,Entire home/apt,300,1,38,2019-06-27,1.01,1,361 +13082957,"COMFY & SECURE NEAR AIRPORT, SHOPPING MALLS & PARK",5261297,Jackie,Queens,Corona,40.74332,-73.85469,Private room,52,1,45,2018-08-07,1.27,1,57 +13083020,Spacious Bedroom in the heart of Bedstuy,1892402,Emily,Brooklyn,Bedford-Stuyvesant,40.68347,-73.95462,Private room,50,3,4,2016-08-29,0.11,1,0 +13083030,Your own 2 Bedroom apartment available for 3 weeks,37093995,Marta,Manhattan,Inwood,40.86794,-73.92792,Entire home/apt,100,15,0,,,1,0 +13083221,1 bedroom in a 3 bedroom apartment,46407854,Deniz,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.94317,Private room,55,1,0,,,1,0 +13083638,Spacious & Sunny - Greenpoint,17176974,Michael,Brooklyn,Greenpoint,40.72764,-73.95579,Entire home/apt,199,3,8,2017-05-29,0.25,1,0 +13083988,Private Bedroom/Bath in Luxury Greenpoint Condo,154956,Katie,Brooklyn,Greenpoint,40.73443,-73.95678,Private room,90,7,2,2016-08-14,0.05,1,47 +13084004,Spacious Stylish Studio in Prospect Park South,2497082,Sadecia,Brooklyn,Flatbush,40.64523,-73.96213,Entire home/apt,65,5,13,2019-04-30,0.35,1,0 +13084019,Park Avenue Penthouse With Terrace,72596571,Trish,Manhattan,Midtown,40.75082,-73.98526,Entire home/apt,400,7,103,2019-06-17,2.70,1,344 +13084346,Sunny 1 Bedroom in Park Slope near Prospect Park,22423754,Priyanka,Brooklyn,Park Slope,40.66936,-73.97724,Entire home/apt,65,8,1,2016-05-30,0.03,1,0 +13090558,"Studio Apt in Queens, 15Mins to Midtown & Brooklyn",21930159,Eduardo,Queens,Sunnyside,40.74534,-73.91809,Entire home/apt,71,2,7,2019-06-02,1.96,1,0 +13091309,"Broadway, Luxury Studio in Times Square",22541573,Ken,Manhattan,Theater District,40.76069,-73.98319,Entire home/apt,199,30,1,2017-01-08,0.03,87,328 +13091684,"Sunny 2bdrm Apt. near Bryant Park, Apt 2B",17770287,Nina,Manhattan,Midtown,40.74927,-73.98303,Entire home/apt,163,30,4,2019-05-13,0.17,14,332 +13091737,Charming one BR apartment in heart of Nolita/SoHo,72677655,Christina,Manhattan,Nolita,40.72153,-73.99493,Entire home/apt,126,2,11,2016-11-15,0.29,1,0 +13092405,Midtown Apartment,72684665,David,Manhattan,Midtown,40.75733,-73.96577,Entire home/apt,150,1,136,2019-06-21,3.71,1,248 +13092482,Lux Studio Apt in Midtown NYC near Central park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76227,-73.99807,Entire home/apt,199,30,1,2016-10-04,0.03,121,365 +13092522,"Sunny, charming 1 bedroom in Crown Heights",27714436,Rebecca,Brooklyn,Crown Heights,40.67372,-73.95334,Private room,51,1,1,2016-05-21,0.03,1,0 +13092604,"Broadway, Luxury 1bd in Times Square",22541573,Ken,Manhattan,Theater District,40.76106,-73.9848,Entire home/apt,256,30,0,,,87,340 +13093161,"West 23rd Street, Lux Chelsea 1bd serviced Apt",22541573,Ken,Manhattan,Chelsea,40.74641,-74.00401,Entire home/apt,289,30,2,2018-11-05,0.08,87,339 +13093381,"West 23rd Street, Lux Chelsea Studio svcd apt",22541573,Ken,Manhattan,Chelsea,40.74651,-74.00563,Entire home/apt,219,30,1,2017-08-11,0.04,87,340 +13093642,Ivy Tower,72296750,Carla,Manhattan,Hell's Kitchen,40.75798,-73.99156,Entire home/apt,239,30,0,,,1,365 +13094020,Sunny 1 BR in Brooklyn,33656032,Warren,Brooklyn,Boerum Hill,40.686,-73.98579,Entire home/apt,125,3,1,2016-06-21,0.03,1,0 +13094250,Garden Bedroom in Carroll Gardens Brownstone,72701423,Isaac,Brooklyn,Carroll Gardens,40.6783,-73.99419,Private room,90,1,5,2016-06-27,0.13,1,0 +13094329,Designers Lovely UWS Full Floor Townhouse Apt!,372206,Liz,Manhattan,Upper West Side,40.7869,-73.97254,Entire home/apt,150,3,4,2016-10-02,0.11,1,0 +13094690,"Sunny, Bushwick Apartment",8106327,Dallas,Brooklyn,Bushwick,40.69819,-73.9334,Private room,40,2,1,2017-08-19,0.04,1,0 +13096146,"Garden Apartment in Crown Heights, Brooklyn",2762303,Jt,Brooklyn,Crown Heights,40.67336,-73.95451,Entire home/apt,120,4,7,2016-07-28,0.18,1,0 +13097050,Steps from Central Park: Bedroom in spacious apt,38671350,Alejandro,Manhattan,East Harlem,40.78843,-73.95504,Private room,200,5,0,,,1,0 +13098452,"3-6month SUBLET Sparkling, spacious, Manhattan 3BR",4942450,Sacha,Manhattan,Washington Heights,40.85073,-73.93851,Entire home/apt,126,68,17,2018-11-10,0.47,1,0 +13098627,Spacious 2 bedroom apartment,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7645,-73.99447,Entire home/apt,200,30,3,2017-11-26,0.12,31,341 +13098701,NYCHaven4:Entire house minutes from JFK and Casino,47351539,Jason,Queens,South Ozone Park,40.67321,-73.79247,Entire home/apt,195,1,239,2019-06-21,6.31,4,256 +13098705,Big & Beautiful 1-BR w/Private Backyard,14865754,Jerrell,Manhattan,Harlem,40.81829,-73.94686,Entire home/apt,175,2,34,2019-06-19,0.98,1,75 +13098805,"Clean, quiet, cozi Upper East Side studio apt",24494897,Isabella,Manhattan,Upper East Side,40.76704,-73.95722,Entire home/apt,159,6,0,,,1,0 +13099377,1 Bedroom in Quiet Hamilton Heights Neighborhood.,43518492,Angela,Manhattan,Harlem,40.82828,-73.94264,Private room,130,3,3,2019-05-20,0.10,1,0 +13099447,Great ZEN & Peaceful one bedroom in Time Square!,72765906,Carla,Manhattan,Hell's Kitchen,40.76212,-73.9882,Entire home/apt,170,4,112,2019-07-01,2.97,1,262 +13099742,Perfect Summer Apartment (1 Bedroom available),72770139,Francisco,Brooklyn,South Slope,40.66665,-73.98875,Private room,60,1,1,2016-07-09,0.03,1,0 +13100152,"BEAUTIFUL TOP-FLOOR SUBLET IN ASTORIA, NYC",620810,Jay,Queens,Astoria,40.76555,-73.9169,Entire home/apt,110,13,1,2016-09-01,0.03,1,0 +13100277,"Bright, inviting room-quick to NYC, females only.",35494734,Jennifer,Queens,Woodside,40.75266,-73.90336,Private room,70,5,9,2019-06-22,0.29,2,138 +13100305,Spacious 1 bedroom 1 bath,72779585,Vanessa,Brooklyn,Crown Heights,40.67702,-73.95864,Entire home/apt,105,2,7,2019-04-28,0.18,1,32 +13100373,Incredible 3 BR Union Square Loft,38331104,Anna,Manhattan,Gramercy,40.73627,-73.98986,Private room,100,7,0,,,1,0 +13100726,NYC living to it's fullest... in a good way!,16884931,Whitney,Manhattan,East Harlem,40.80637,-73.93722,Entire home/apt,140,1,28,2019-04-24,0.74,1,170 +13101260,Spacious Sun Drenched Brick Encrusted Loft,676499,Abe,Manhattan,East Village,40.72487,-73.98125,Entire home/apt,175,4,3,2017-06-30,0.08,1,0 +13101616,EAST 60TH ST&1ST AVE/ 2BR DOORMAN BLDG,2856748,Ruchi,Manhattan,Upper East Side,40.75993,-73.96056,Entire home/apt,198,30,0,,,49,331 +13101855,Garden level studio w/backyard,45197707,Claudine,Brooklyn,Flatlands,40.61529,-73.92567,Entire home/apt,90,2,125,2019-07-07,3.30,1,302 +13102116,DOWNTOWN BROOKLYN beautiful apt,17181881,Peter,Brooklyn,Fort Greene,40.69286,-73.98037,Entire home/apt,128,10,1,2016-06-30,0.03,1,0 +13102409,Large & comfortable studio in Financial District,2233249,Eve,Manhattan,Financial District,40.70931,-74.00959,Entire home/apt,110,6,5,2017-07-01,0.13,1,0 +13105778,Entire Astoria Hardwood Floor 1 BR Apartment,72839296,Megahn,Queens,Long Island City,40.76235,-73.92973,Entire home/apt,99,2,16,2016-12-10,0.44,1,0 +13107627,Private Bedroom w/ Private Bath/Mini Fridge,72542338,Mychelle,Brooklyn,Manhattan Beach,40.58078,-73.95356,Private room,125,2,21,2019-06-12,0.56,1,311 +13108073,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,2856748,Ruchi,Manhattan,Upper East Side,40.76174,-73.96366,Entire home/apt,160,30,0,,,49,364 +13108191,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74451,-73.99236,Entire home/apt,270,30,0,,,87,350 +13108192,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.7448,-73.99204,Entire home/apt,205,30,2,2016-12-21,0.06,87,0 +13108345,"Sixth Ave Chelsea, Studio Serviced Apartment*",22541573,Ken,Manhattan,Chelsea,40.74491,-73.99267,Entire home/apt,205,30,0,,,87,357 +13108573,"West 33rd street, Lux Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75148,-73.99397,Entire home/apt,230,30,1,2016-11-03,0.03,87,350 +13109268,One bedroom with great views of Manhattan,72874338,Augie,Brooklyn,Bushwick,40.69025,-73.90871,Private room,40,1,3,2017-01-03,0.08,1,0 +13109326,New York City Apt. w/ Incredible View of Manhattan,72874879,James,Brooklyn,Park Slope,40.67202,-73.97131,Entire home/apt,700,7,0,,,1,0 +13109817,Private room available for summer,23147852,Briana,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94515,Private room,69,90,0,,,1,365 +13109933,Luxury condo with views in Brooklyn,1642326,Steve,Brooklyn,Downtown Brooklyn,40.69202,-73.98469,Entire home/apt,225,3,36,2019-07-03,1.01,1,53 +13109949,"Sunny, couple-friendly BedStuy Apartment",72881006,Lane,Brooklyn,Bedford-Stuyvesant,40.69375,-73.95208,Private room,50,1,2,2016-06-20,0.05,1,0 +13111578,"Spacious Room w/ Bed & TV, etc.",72897900,Joseph,Brooklyn,Bedford-Stuyvesant,40.68696,-73.92905,Private room,45,1,7,2016-06-14,0.19,1,0 +13112297,Luxurious SOHO 2 BR Washington Sq Park,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72807,-74.00041,Entire home/apt,159,30,4,2019-06-16,0.14,91,281 +13112311,"***Lux Doorman/Furnished,Battery Park ***",52950465,Gal,Manhattan,Battery Park City,40.7109,-74.01768,Entire home/apt,250,30,0,,,12,280 +13112601,Beautiful light and lots of space,13769025,Alberto,Brooklyn,Bedford-Stuyvesant,40.69563,-73.95149,Private room,43,1,0,,,1,220 +13112855,Prime location Irving Place Doorman 1 bedroom 5191,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73505,-73.98565,Entire home/apt,180,30,1,2017-07-31,0.04,96,281 +13112895,Penthouse Exclusive Garden Top Apartment,7573341,Robert,Brooklyn,Sunset Park,40.63885,-74.01959,Entire home/apt,225,2,130,2019-06-28,3.48,2,306 +13113038,Large apartment with a balcony in a doorman bldg,72507521,Sam,Manhattan,Harlem,40.81245,-73.94085,Entire home/apt,190,1,0,,,1,0 +13113202,Private room with detached private bathroom,69427329,Michelle & Eddie,Queens,Elmhurst,40.73849,-73.87606,Private room,49,1,65,2019-07-01,1.70,6,355 +13113422,"Clean, Open 1 bdrm Upper West- Steps from train",72918560,Lauren,Manhattan,Upper West Side,40.77995,-73.9822,Entire home/apt,294,14,0,,,1,0 +13113626,Fantastic Midtown Apartment!-2b,46648109,Bridgestreet Corporate,Manhattan,Midtown,40.75722,-73.97842,Entire home/apt,559,30,2,2018-10-20,0.17,1,0 +13113906,Park Slope room steps from Subway&Prospect Park,72923241,Jean-Guy,Brooklyn,Park Slope,40.67073,-73.98719,Private room,109,3,68,2019-06-10,1.97,1,213 +13114019,Chic Unique Large Chelsea One Bedroom,34761471,Lincoln,Manhattan,Chelsea,40.74589,-74.0048,Entire home/apt,250,4,18,2018-09-29,0.49,1,0 +13114072,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Midtown,40.76367,-73.98345,Entire home/apt,269,30,1,2018-11-18,0.13,87,364 +13114237,Charming Sunny Designer Loft 1 stop to Manhattan,4043259,Tiffany,Brooklyn,Greenpoint,40.72536,-73.95712,Private room,81,2,131,2019-06-19,3.50,2,120 +13114437,Room and private bath in sunny Brooklyn apartment,42605385,Cameron,Brooklyn,Flatbush,40.63612,-73.96297,Private room,53,14,2,2016-08-01,0.05,3,0 +13114443,East Village Spacious 3 Bedroom Across from Park,72931015,Spencer,Manhattan,East Village,40.72527,-73.98347,Entire home/apt,206,1,1,2016-06-05,0.03,1,0 +13114542,NYC,58735878,Jiandong,Manhattan,Harlem,40.82889,-73.94599,Private room,40,1,1,2016-05-27,0.03,1,0 +13115616,"Spacious Charming NYC Apt, 10 min to Midtown",9197619,Samantha,Queens,Ditmars Steinway,40.77592,-73.91308,Entire home/apt,130,10,0,,,1,0 +13115864,Charming Studio in West Chelsea,16055560,Catalina,Manhattan,Chelsea,40.7453,-74.00242,Entire home/apt,105,2,6,2016-06-20,0.16,1,0 +13116397,Spacious Room in East Village Apartment,35959584,Kartik,Manhattan,East Village,40.72778,-73.97825,Private room,75,1,8,2016-09-29,0.21,1,0 +13116481,Gorgeous stylish townhouse in Brooklyn,350055,Claire,Brooklyn,Prospect Heights,40.67641,-73.96775,Entire home/apt,499,4,7,2019-04-15,0.20,1,25 +13117094,"On Fifth, Across From Central Park",72967204,Gerald,Manhattan,East Harlem,40.79485,-73.94868,Entire home/apt,165,7,49,2019-06-29,1.37,1,64 +13117160,Bedroom in Clean Uptown Apartment,1921498,Pedro Pablo,Manhattan,Washington Heights,40.84467,-73.93374,Private room,55,6,2,2019-05-10,0.08,3,3 +13117282,Cheerful & Practical Garden Apartment Near Subway,2988712,Sasha,Bronx,Claremont Village,40.83458,-73.91021,Entire home/apt,57,90,11,2019-05-10,0.31,7,68 +13117480,"Cozy Park Slope Apt, Next to BBG",70674019,Jack,Brooklyn,Prospect Heights,40.67329,-73.96291,Entire home/apt,201,30,66,2019-06-16,1.78,2,159 +13121809,Spacious Sunny One Bed in Williamsburg,24370211,Yety,Brooklyn,Williamsburg,40.71307,-73.95502,Entire home/apt,80,10,2,2017-01-07,0.05,2,0 +13122135,Room in BIG art-filled space in prime Brooklyn,9793190,Rebecca,Brooklyn,Greenpoint,40.72721,-73.94951,Private room,80,1,4,2018-02-25,0.24,1,0 +13122318,2bdrm apt w/private backyard in Artsy Bushwick,2689908,Emily,Brooklyn,Bushwick,40.69832,-73.92622,Entire home/apt,59,2,177,2019-06-24,4.74,1,3 +13122932,"East Village duplex: peaceful, bright & cheerful",73029190,Dina,Manhattan,East Village,40.72554,-73.98245,Entire home/apt,250,14,0,,,1,174 +13123232,Beautiful Private Room Near Hudson River,12341146,Michelle,Manhattan,Hell's Kitchen,40.76089,-73.99879,Private room,200,1,1,2016-06-06,0.03,1,0 +13123883,Bright Open Bedroom at the Heart of Wall Street,18438941,Junyi,Manhattan,Financial District,40.70883,-74.00764,Shared room,100,10,0,,,1,0 +13124637,Private BR in a 2 BR Central Park West,32132982,Vanessa,Manhattan,Upper West Side,40.79613,-73.96658,Private room,60,2,23,2017-02-21,0.62,1,0 +13124724,391 Hancock Street,27019686,Gool-Jitzu,Brooklyn,Bedford-Stuyvesant,40.68329,-73.9399,Entire home/apt,150,5,1,2018-06-16,0.08,1,0 +13125150,"Washington Street, Lux Svcd Studio in West Village",22541573,Ken,Manhattan,West Village,40.7304,-74.00887,Entire home/apt,215,30,0,,,87,365 +13125243,Home away from home,46087238,Michion,Queens,Jamaica,40.68723,-73.78791,Private room,40,1,14,2018-10-11,0.42,2,335 +13125552,Beautiful Bushwick Bungalow,20109188,Neanna,Brooklyn,Williamsburg,40.70413,-73.93205,Entire home/apt,175,2,102,2019-06-25,2.68,1,284 +13126457,Unique 2BR Apartment,31483931,Nick,Queens,Long Island City,40.74226,-73.94999,Entire home/apt,151,2,87,2019-07-05,2.30,1,17 +13126582,STUNNING ONE BEDROOM IN THE HEART OF NEW YORK CITY,73069526,Tony,Manhattan,Hell's Kitchen,40.7655,-73.98682,Entire home/apt,250,7,52,2018-09-04,1.40,1,0 +13127582,One bedroom in Beautiful Astoria with balcony!,42048980,Stephanie,Queens,Ditmars Steinway,40.77265,-73.91401,Private room,100,1,1,2016-05-30,0.03,1,0 +13127711,Elegantly designed 1bd room apt,71619228,Makeeba,Manhattan,Harlem,40.80501,-73.94249,Entire home/apt,200,7,0,,,1,178 +13128747,2 Bedroom/2 Bath Luxury Apartment With Terrace,10676792,Kristen,Brooklyn,Bedford-Stuyvesant,40.68457,-73.9262,Entire home/apt,120,2,5,2016-08-31,0.13,2,0 +13128861,"Cozy Studio in Clinton Hill, Brooklyn",16065842,Michael,Brooklyn,Clinton Hill,40.68511,-73.96638,Entire home/apt,100,2,64,2019-06-27,1.69,1,15 +13128992,UpperEastSide Sun Drenched 2 Bedrooms Close to All,8687162,Pinar,Manhattan,Upper East Side,40.77847,-73.95371,Entire home/apt,135,15,0,,,1,0 +13129120,"Central Park Bedroom - Spacious, Sunny, Subway",21077880,Camille,Manhattan,East Harlem,40.79525,-73.94912,Private room,80,2,29,2019-07-05,1.96,1,3 +13129533,Room in loft-like ground Floor apt,3710740,Daniel,Manhattan,Harlem,40.81777,-73.9535,Private room,60,1,63,2019-06-07,1.74,2,0 +13129607,Spacious Studio in the heart of NYC's East Village,11935406,Brandon,Manhattan,East Village,40.72684,-73.98938,Entire home/apt,123,2,7,2017-02-05,0.20,1,0 +13129664,Large/Modern 1 Bed Apt Williamsburg,65674570,Gabby,Brooklyn,Williamsburg,40.71529,-73.96398,Entire home/apt,189,3,6,2016-12-27,0.16,1,0 +13130036,Upper-East Side 1 Bedroom Gem Duplex with Garden,12810744,Vivian,Manhattan,Upper East Side,40.77586,-73.95164,Entire home/apt,235,120,8,2016-10-27,0.23,1,12 +13130313,Studio in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76502,-73.99277,Entire home/apt,90,30,11,2019-05-01,0.33,31,223 +13130332,Welcome to Williamsburg,16708043,Justin,Brooklyn,Williamsburg,40.71066,-73.95726,Private room,85,1,42,2017-11-24,1.14,1,0 +13130565,Private bedroom in two bedroom apartment one,73124477,Alexander,Brooklyn,Crown Heights,40.67433,-73.94243,Private room,40,5,119,2019-05-31,3.16,2,3 +13130744,Uptown Bronx Apartment,73126926,Real Estate To Go,Bronx,Williamsbridge,40.88493,-73.8618,Entire home/apt,67,3,205,2019-06-12,5.39,1,140 +13134161,"Peaceful home, industrial neighborhood",460765,Jack,Brooklyn,Gowanus,40.68164,-73.98631,Private room,63,2,2,2016-06-19,0.05,1,0 +13135097,"Beautiful, New, 1 BR, Heart of Williamsburg!",70178459,Chris,Brooklyn,Williamsburg,40.71401,-73.95664,Entire home/apt,150,1,6,2016-12-25,0.16,1,0 +13135589,"Clean and Spacious Apt. in Bay Ridge, Brooklyn, NY",73179534,Iman,Brooklyn,Fort Hamilton,40.61778,-74.02736,Private room,70,2,8,2018-11-04,0.59,1,0 +13135822,Gorgeous Bedroom in Manhattan Midtown West,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76454,-73.99114,Private room,75,4,146,2019-07-06,3.89,3,73 +13135904,"Cozy Studio in Times Square, NYC",10234636,Kunal,Manhattan,Hell's Kitchen,40.75855,-73.98931,Entire home/apt,99,30,19,2018-07-19,0.54,1,2 +13136376,Spacious 2 Bedroom with Balcony,16110448,Gingie,Manhattan,East Harlem,40.79658,-73.93287,Entire home/apt,199,2,30,2019-06-03,0.80,1,30 +13136536,SuiteBeach house near JFK & A Train to Manhattan,73190364,Reed,Queens,Edgemere,40.59534,-73.77209,Private room,195,4,0,,,1,0 +13136912,Brighton Beach Studio Half Block From the Ocean,6909591,Eli,Brooklyn,Brighton Beach,40.57509,-73.96603,Entire home/apt,67,1,1,2016-06-05,0.03,1,0 +13137538,Private Room minutes to/from Manhattan,206337,Anna,Queens,Sunnyside,40.7459,-73.92441,Private room,71,3,40,2019-05-21,1.06,1,286 +13137970,Charming room in light filled apt,9614283,Sara Cecilia,Brooklyn,Bushwick,40.70158,-73.92023,Private room,35,3,7,2017-07-08,0.22,1,0 +13139462,Lefferts garden gem,71853402,Lorraine,Brooklyn,East Flatbush,40.64302,-73.95022,Private room,100,1,30,2019-07-01,0.80,2,342 +13139565,Private room in Williamsburg,73227676,Lindsay,Brooklyn,Greenpoint,40.72098,-73.94639,Private room,158,1,0,,,1,0 +13139850,Big Room In Beautiful Bushwick 2br w/ Washer-Dryer,34731099,Matthew,Brooklyn,Bushwick,40.69096,-73.92352,Private room,30,1,0,,,1,0 +13140220,RARE UES APT W/PRIV STREET ENTRANCE,35384978,Hans,Manhattan,Upper East Side,40.77504,-73.94945,Entire home/apt,138,1,95,2019-06-07,2.54,2,215 +13140940,Large Sunlit Room-Quick Commute to Manhattan/NYC!,73247569,Sinida,Brooklyn,Bushwick,40.69989,-73.93617,Private room,52,1,97,2019-07-02,2.55,2,115 +13141460,"Great space, great location!",46309248,Heather,Queens,Astoria,40.76776,-73.92707,Private room,120,1,1,2016-06-14,0.03,1,0 +13142258,"Great 1 BR, 17 minutes to Times Square!",65652567,Wayne,Queens,Woodside,40.74377,-73.9024,Entire home/apt,125,2,156,2019-06-25,4.13,1,263 +13145377,West Village Studio,22363037,Jessica,Manhattan,West Village,40.73733,-74.00392,Entire home/apt,119,3,1,2016-08-03,0.03,1,0 +13148370,Beautiful Garden Level Apartment in Brooklyn,18893401,Angela,Brooklyn,Fort Greene,40.68457,-73.96969,Entire home/apt,225,2,11,2017-06-15,0.30,1,0 +13149690,Private Cozy Bedroom - Central Park North,72008788,Chris,Manhattan,Harlem,40.79952,-73.95248,Private room,75,3,107,2019-06-13,2.86,1,279 +13150529,Private Loft Bedroom in Bushwick,5561136,Yazmiyn,Brooklyn,Bushwick,40.6861,-73.90977,Private room,60,5,0,,,1,0 +13151072,Apartment in a heart of NY,52049429,Natalia,Manhattan,Hell's Kitchen,40.75989,-73.98832,Entire home/apt,70,2,112,2019-06-24,2.97,1,11 +13151075,ASTORIA APARTMENT OUTDOOR SPACE,18051286,Danielle,Queens,Astoria,40.77221,-73.92901,Private room,50,1,0,,,1,0 +13152876,Spacious & Sunny Private Room in Williamsburg!,65252597,Zac,Brooklyn,Williamsburg,40.71038,-73.95397,Private room,45,3,1,2016-10-27,0.03,1,0 +13152955,Peaceful West Village 1 Bedroom Apt,962936,Daniel,Manhattan,Greenwich Village,40.72953,-74.00148,Entire home/apt,600,5,24,2019-06-01,0.63,1,336 +13153265,"Private Garden Apt in Park Slope, Brooklyn, NYC",41084247,Dena,Brooklyn,Park Slope,40.67001,-73.98347,Entire home/apt,175,4,31,2019-05-31,0.86,1,254 +13153395,"Best Value 1,000SF 2BR Classic Brownstone",73400193,Spencer,Brooklyn,Crown Heights,40.67293,-73.95519,Entire home/apt,150,2,141,2019-07-06,3.79,1,299 +13153768,Bright Room w/ a Brilliant Manhattan View,4218058,Jessica,Brooklyn,Fort Greene,40.68641,-73.97085,Private room,76,3,23,2017-11-14,0.62,2,177 +13153856,Large 1BR Apt. in Williamsburg,47292710,Peter,Brooklyn,Williamsburg,40.71233,-73.94806,Entire home/apt,200,1,6,2016-07-25,0.16,1,0 +13153886,Feel at Home,73406935,Nicky,Brooklyn,Bedford-Stuyvesant,40.68145,-73.94208,Entire home/apt,170,3,72,2019-06-23,2.00,1,255 +13154343,Spacious Modern Alcove Studio in a Luxury Building,13739649,Alexander,Manhattan,Hell's Kitchen,40.76144,-73.99243,Entire home/apt,225,2,32,2019-06-25,0.85,1,44 +13155196,Artist's Room in Large Apartment,7532592,Nicole,Brooklyn,Fort Greene,40.69497,-73.97209,Private room,50,7,2,2016-06-25,0.05,1,0 +13155269,Modern Oasis in Central Park Slope,62660832,Deborah,Brooklyn,Park Slope,40.66954,-73.98226,Entire home/apt,150,30,42,2019-05-12,1.11,1,117 +13155478,"One BR upper east, walk out to garden",68234238,Kyle,Manhattan,Upper East Side,40.77626,-73.94693,Private room,100,1,2,2016-06-13,0.05,1,0 +13156126,"Brownstone garden 2 bedroom duplex, Central Park",5162192,Amy,Manhattan,Upper West Side,40.79831,-73.96052,Entire home/apt,202,30,8,2019-05-20,0.30,12,147 +13156351,Bright Cozy Private Room near Columbia Univ,11309985,Jean,Manhattan,Upper West Side,40.80279,-73.96535,Private room,60,2,2,2016-05-31,0.05,2,0 +13156625,1 bdrm/large studio in a great location,49125175,George,Brooklyn,Prospect Heights,40.67539,-73.96865,Entire home/apt,99,3,6,2016-12-10,0.16,1,0 +13156842,Cozy Private Room #2 Two Beds Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69546,-73.85062,Private room,38,1,170,2019-06-06,4.49,4,192 +13156881,"Cozy Bedroom- Beautiful, Historical Location",34160620,Charlotte And Mary,Manhattan,Harlem,40.82267,-73.94677,Private room,70,1,58,2019-06-13,1.55,2,0 +13156982,Sunny New Artist's 1BR In Greenpoint,62285182,Brian,Brooklyn,Greenpoint,40.73432,-73.95145,Entire home/apt,117,2,17,2016-11-19,0.47,1,0 +13156998,1 BR / studio right by Central Park,3671013,Neha,Manhattan,Midtown,40.76365,-73.97754,Entire home/apt,200,1,0,,,2,0 +13157014,"2 BEDROOMS, 1 BATH, FULL FRONTAL OCEANVIEW",65825355,Paul,Brooklyn,Brighton Beach,40.57762,-73.95662,Entire home/apt,99,3,0,,,1,0 +13157147,Spacious 1 BR Apartment w/ private backyard,2708284,Agustina,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94553,Private room,75,6,37,2019-06-17,1.53,1,329 +13157343,Spacious one bedroom by beautiful Fort Tryon park,73459264,Leslie,Manhattan,Inwood,40.86383,-73.92905,Entire home/apt,105,4,7,2019-01-02,0.19,1,0 +13162066,Convenient & comfortable studio near Penn Station,73505108,Ryan,Manhattan,Chelsea,40.75037,-73.99858,Entire home/apt,130,6,63,2019-06-23,1.68,1,34 +13162150,"Sunfilled, clean, MONTHly discount",4326776,Sabina,Queens,Woodside,40.74457,-73.90474,Private room,80,14,0,,,1,0 +13163474,"Cozy, Sunny, UWS Junior One Bedroom",16205472,Sami,Manhattan,Upper West Side,40.79296,-73.97456,Entire home/apt,100,4,2,2018-07-23,0.09,1,83 +13163670,Sunny 1BR in Crown Heights,23080138,Andrew,Brooklyn,Crown Heights,40.67194,-73.95182,Entire home/apt,195,2,0,,,1,0 +13164204,Beautiful Big Bedroom In Shared Apt-Roof/Balcony,55292741,Samantha,Brooklyn,Bushwick,40.70153,-73.92244,Private room,115,2,0,,,1,0 +13164373,Spacious art deco 2 BR in Hudson Heights,473497,Jennifer,Manhattan,Washington Heights,40.85487,-73.93509,Entire home/apt,175,1,0,,,1,0 +13164444,Luxury Loft in Renovated Warehouse with 2 terraces,15221605,Elizabeth,Brooklyn,Williamsburg,40.71102,-73.95123,Entire home/apt,269,7,1,2016-07-20,0.03,1,0 +13164658,Classic NYC Loft in the heart of Tribeca,10578546,Kara,Manhattan,Tribeca,40.71549,-74.00804,Entire home/apt,325,3,6,2018-07-04,0.18,1,333 +13164770,Sunny Bedroom in Beautiful Apartment in Bushwick,22851099,Elena,Brooklyn,Bushwick,40.69074,-73.91705,Private room,40,1,0,,,1,0 +13165250,Cozy Apartment In Inwood!,43272945,Corey,Manhattan,Inwood,40.8679,-73.91842,Entire home/apt,80,1,2,2016-07-18,0.06,1,0 +13165301,Three bedroom house in Forest Hills NY,68848703,Rupi,Queens,Forest Hills,40.71939,-73.85127,Entire home/apt,509,3,7,2018-09-13,0.20,2,264 +13165500,"Cozy, chic Williamsburg apartment",4104874,Lauren,Brooklyn,Williamsburg,40.71021,-73.94944,Entire home/apt,200,2,1,2016-06-12,0.03,1,0 +13166383,"Washington Street, Lux Svcd 1bd in West Village",22541573,Ken,Manhattan,West Village,40.72993,-74.01,Entire home/apt,278,30,0,,,87,350 +13166495,Large 1-bedroom apartment with amazing rooftop,73550526,Claudia,Manhattan,East Village,40.72884,-73.98548,Entire home/apt,195,2,7,2017-05-29,0.19,1,0 +13167017,"East 19th Street, Charming 1Bd Serviced Apt",22541573,Ken,Manhattan,Gramercy,40.73754,-73.98741,Entire home/apt,225,30,1,2017-07-31,0.04,87,249 +13167453,Crash Pad Close to LGA/JFK/Manhattan,21216008,Jose,Queens,Jackson Heights,40.74989,-73.87829,Shared room,35,1,120,2019-06-21,3.18,4,340 +13167611,Massive apartment minutes from Manhattan!,15430149,Ivette,Queens,Ditmars Steinway,40.77367,-73.91597,Entire home/apt,92,2,1,2018-10-07,0.11,1,0 +13167621,Your Home near the Central Park,73561955,Baichuan,Manhattan,Upper West Side,40.79559,-73.96434,Private room,65,7,0,,,1,0 +13168302,Gorgeous brownstone duplex in prime Boerum Hill,64098159,Lucinda,Brooklyn,Boerum Hill,40.68662,-73.98305,Entire home/apt,300,30,0,,,1,36 +13168677,"Tidy, Private Room in Brooklyn, a Commuter's Dream",45451107,Jamie,Brooklyn,Fort Greene,40.68445,-73.97168,Private room,95,2,54,2019-05-27,1.44,1,0 +13169181,LARGE BEDROOM AND PRIVATE BATHROOM ..ASTORIA!,5430458,Christian,Queens,Astoria,40.76672,-73.92769,Private room,95,4,45,2019-07-04,1.19,1,93 +13169559,Hell's Kitchen Enclave: a Diamond in the Rough.,73583445,Michael,Manhattan,Hell's Kitchen,40.76511,-73.99432,Entire home/apt,119,4,136,2019-06-15,3.59,1,17 +13169806,Unique Studio in Chelsea,988088,Tale,Manhattan,Chelsea,40.74729,-74.00244,Entire home/apt,154,2,23,2019-06-02,0.62,1,4 +13170049,Private Bedroom in a 3 BR Apt on Riverside Drive,7141050,Mayra,Manhattan,Inwood,40.86709,-73.92962,Private room,80,2,12,2017-12-27,0.34,2,49 +13170106,Bright & spacious east village apartment,21425186,Doug,Manhattan,East Village,40.72333,-73.98795,Entire home/apt,250,3,0,,,1,0 +13170159,Brooklyn Brand New Studio,62535444,Alex,Brooklyn,Manhattan Beach,40.57867,-73.95227,Entire home/apt,99,1,41,2019-07-04,1.10,2,363 +13170687,Beautiful En suit,73445541,Joseph,Queens,Bayside,40.77439,-73.77723,Private room,75,10,0,,,1,365 +13170825,Sunny and spacious 1 bedroom Brooklyn apartment,27556149,Ja'Tovia,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94822,Entire home/apt,75,5,2,2016-07-18,0.05,1,0 +13170860,"***Luxury Doorman, Grand Central, United Nations**",52950465,Gal,Manhattan,Midtown,40.75266,-73.97252,Entire home/apt,142,30,0,,,12,323 +13171614,Private Home Close To Coney Island Beach,72101538,Shelly,Brooklyn,Gravesend,40.59162,-73.9702,Entire home/apt,300,2,0,,,1,0 +13171703,"Park Avenue, Lux Studio Murray Hill apartment",22541573,Ken,Manhattan,Murray Hill,40.74855,-73.98019,Entire home/apt,199,30,2,2019-06-07,0.06,87,364 +13171746,Large Sunny Bedroom with Empire State Views,31154454,Elliot,Manhattan,Midtown,40.74244,-73.98316,Private room,99,1,180,2019-06-21,4.86,2,2 +13173176,"Large, New, Modern Uptown Room",9864136,Anthony,Manhattan,Harlem,40.82015,-73.94593,Private room,62,30,1,2016-07-17,0.03,26,188 +13173263,Massive Bedroom Prime Flatiron Location,6652697,Austen,Manhattan,Chelsea,40.73769,-73.99026,Private room,350,30,0,,,1,365 +13173415,"Times Square Luxury Apt, Private 1BD",73630116,Marla,Manhattan,Theater District,40.7615,-73.98527,Private room,180,14,15,2019-06-20,0.48,1,122 +13174320,Cute Studio in great UES location,30812813,Amanda,Manhattan,Upper East Side,40.77097,-73.95843,Entire home/apt,115,5,4,2016-08-16,0.11,1,0 +13174433,Modern West Village 1 Bedroom - PRIME LOCATION!,2926947,Amit,Manhattan,West Village,40.73908,-74.00186,Entire home/apt,150,2,11,2017-01-08,0.30,1,0 +13174455,Brooklyn room in a New Bldg - 20mns from Manhattan,73643860,Aicha,Brooklyn,Bedford-Stuyvesant,40.68846,-73.92155,Private room,65,2,5,2019-06-23,2.24,1,48 +13175725,Big Studio apt- Legal NY rental,65304194,Janelle,Brooklyn,East Flatbush,40.65742,-73.92385,Entire home/apt,85,1,117,2019-06-04,3.09,1,18 +13175743,cozy apartment with a room to rent family oriented,73663228,Rosa,Manhattan,Washington Heights,40.85735,-73.9298,Private room,70,1,37,2019-06-08,1.10,1,291 +13176134,Cozy Private Room 2MIN to subway 6MIN to Columbia,11309985,Jean,Manhattan,Upper West Side,40.8028,-73.96678,Private room,50,2,8,2016-07-01,0.21,2,0 +13182093,"Artsy, cozy room in Bed-Stuy",5401988,Maggie,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95341,Private room,65,2,5,2017-10-02,0.13,1,0 +13182297,Sculptor's Light-filled Loft (Bushwick),18742,Serra Victoria,Brooklyn,Bushwick,40.7043,-73.92491,Entire home/apt,117,7,0,,,1,0 +13182531,"Sunny, spacious 2 bedroom in upper Manhattan",73732590,George,Manhattan,Washington Heights,40.85261,-73.94203,Entire home/apt,150,10,12,2019-04-23,0.33,1,6 +13183047,2 bedroom Kid Friendly Cobble Hill,40306612,Christina,Brooklyn,Carroll Gardens,40.685,-73.99369,Entire home/apt,250,3,12,2019-03-14,0.32,1,0 +13183672,East Village Living,1363435,Erica,Manhattan,East Village,40.72665,-73.98717,Entire home/apt,140,31,37,2019-05-30,1.01,1,0 +13183816,Charming Bushwick Brownstone.,73737053,Elicia,Brooklyn,Bushwick,40.69068,-73.91418,Private room,70,1,111,2019-06-10,3.06,3,364 +13183826,BROOKLYN ROOM,31628863,Sasha,Brooklyn,Bensonhurst,40.60391,-73.99339,Private room,80,2,7,2018-09-03,0.23,1,0 +13184355,Spacious bushwick brownstone,73737053,Elicia,Brooklyn,Bushwick,40.69239,-73.91416,Private room,85,1,44,2019-06-23,1.26,3,365 +13184939,East Village Studio,11296515,Robert,Manhattan,East Village,40.72926,-73.98915,Entire home/apt,99,1,0,,,1,0 +13186007,Renovated garden studio in New York,2084322,Quinlan & Barbara,Queens,Astoria,40.76832,-73.9346,Entire home/apt,99,3,94,2019-05-27,2.52,1,1 +13186374,Sean,35143476,Sean,Brooklyn,Windsor Terrace,40.65182,-73.98043,Entire home/apt,400,7,0,,,1,0 +13186395,Relaxing bushwick brownstone,73737053,Elicia,Brooklyn,Bushwick,40.69239,-73.91443,Private room,75,1,117,2019-06-16,3.24,3,363 +13186447,The Hudson,73764539,Ed,Manhattan,Washington Heights,40.85241,-73.9368,Entire home/apt,99,2,3,2017-05-10,0.08,1,0 +13186655,2 bedroom apartment on Central Park,6721441,Kelsey,Manhattan,Harlem,40.8013,-73.95677,Entire home/apt,165,4,2,2016-12-29,0.06,1,0 +13186721,"Park Avenue, Luxury Studio Apt in Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74747,-73.98061,Entire home/apt,189,30,0,,,87,365 +13186741,"Cozy Alcove, Chelsea Doorman Bldg, Near Everything",11345677,Michelle,Manhattan,Chelsea,40.73887,-74.00011,Private room,85,2,22,2018-11-05,0.65,1,58 +13186804,"Park Avenue, Lux Svcd 1bd apartment in Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74881,-73.98059,Entire home/apt,268,30,0,,,87,365 +13187991,Cheap West Village Apartment,73792588,Peter,Manhattan,West Village,40.73011,-74.00267,Private room,55,1,7,2016-06-28,0.19,1,0 +13188543,"Quiet, clean, pre-war, spacious one bedroom apt.",8185477,Meggan,Brooklyn,Flatbush,40.6421,-73.96166,Entire home/apt,80,29,5,2018-09-04,0.14,1,68 +13188552,Large One Bedroom Apartment with Studio,18142892,Stacy,Queens,Ridgewood,40.70871,-73.89415,Entire home/apt,95,1,1,2016-08-01,0.03,1,0 +13188622,"Park Avenue, Luxury Studio apartment Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74789,-73.98057,Entire home/apt,179,30,0,,,87,115 +13188839,"Park Avenue, Luxury 1bd apartment Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74743,-73.97945,Entire home/apt,245,30,0,,,87,365 +13189500,Quaint & Charming 2BR + Futon,42429642,Judy,Manhattan,West Village,40.73179,-74.00149,Private room,300,1,0,,,1,0 +13190121,Lux Furnished 2BR steps from Central Park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76564,-73.98367,Entire home/apt,369,30,1,2016-07-16,0.03,121,345 +13191433,Big Private Bedroom perfect for Professionals,49117269,Varos,Queens,Long Island City,40.75768,-73.92897,Private room,75,15,14,2019-04-13,0.88,2,16 +13192097,Fab Studio Apt Nr Barclays Centre Off Road Parking,6281031,Lucy,Brooklyn,Prospect Heights,40.68066,-73.96696,Entire home/apt,136,2,169,2019-06-24,4.48,1,279 +13192217,Private Sunny Cool Bushwick Bedroom,94946,Taylor,Brooklyn,Bushwick,40.69746,-73.92065,Private room,101,1,28,2019-06-08,1.15,1,13 +13192379,Elegant room in Northern Manhattan,40439772,Ezra,Manhattan,Washington Heights,40.85244,-73.93126,Private room,40,2,11,2019-04-18,0.29,2,16 +13192876,Cozy Room Washington Heights,73857756,Anna,Manhattan,Washington Heights,40.83193,-73.9364,Private room,65,2,0,,,1,0 +13192944,"Private, cozy, Bedroom",73857837,Ling,Brooklyn,Dyker Heights,40.63009,-74.01342,Private room,43,1,30,2019-07-07,1.15,1,6 +13192965,"Best neighborhood in NYC, East Village apartment",32707981,Ben,Manhattan,East Village,40.72312,-73.98795,Private room,100,2,11,2017-06-04,0.29,4,0 +13193534,Private bedroom in Manhattan NYC,73864266,Roxane,Manhattan,Inwood,40.85981,-73.92835,Private room,40,3,78,2019-06-26,2.87,1,260 +13199140,luxury Upper East Side 1 BR,73924316,Rachael,Manhattan,Upper East Side,40.77575,-73.95304,Entire home/apt,165,16,1,2016-07-24,0.03,1,0 +13201181,"2BR heart of Williamsburg, luxury hipster heaven",19873203,Caitlin,Brooklyn,Williamsburg,40.71351,-73.95848,Entire home/apt,319,2,49,2019-06-03,1.32,1,82 +13201687,"Fantastic views, outdoor terrace, modern apartment",73953648,Mark,Manhattan,Hell's Kitchen,40.7661,-73.99053,Entire home/apt,295,3,0,,,1,0 +13202374,Spacious bedroom in light filled w'burg apartment,22913446,Rachael,Brooklyn,Williamsburg,40.71382,-73.94285,Private room,56,21,0,,,1,0 +13202401,"West 48th Street, Lux Studio near Rockefeller Ctr",22541573,Ken,Manhattan,Midtown,40.75641,-73.97812,Entire home/apt,219,30,0,,,87,342 +13202799,Astoria Room Fit for a Queen!,5402234,Maya,Queens,Ditmars Steinway,40.77481,-73.91562,Private room,50,2,9,2019-06-30,0.68,1,28 +13203601,"Sunny, cosmopolitan and modern apartment.",69286284,Kofi,Manhattan,East Harlem,40.79566,-73.94137,Entire home/apt,160,4,57,2019-05-29,1.51,1,31 +13204229,Luxury Room/ Wall St-Incredible Views,56656728,Bret,Manhattan,Financial District,40.70735,-74.01226,Private room,109,1,86,2019-06-24,2.33,5,161 +13205376,Very comfortable Apt in Manhattan,16300425,Isaac,Manhattan,Washington Heights,40.84989,-73.93044,Private room,95,2,0,,,1,90 +13205892,"Gigantic Apartment, Fun Roommates, Best Location!",1837583,Ben,Manhattan,Two Bridges,40.71141,-73.99408,Private room,100,3,0,,,1,0 +13206869,Brownstone Family Friendly with Yard,19169325,Casey,Brooklyn,Bedford-Stuyvesant,40.68393,-73.92303,Entire home/apt,200,4,0,,,1,310 +13207158,Furnished Room in Large Lefferts Gardens Apt.,10580223,Andy,Brooklyn,Flatbush,40.65335,-73.95663,Private room,50,3,2,2016-07-05,0.05,2,27 +13207484,Luxury High Rise in Forte Green Brooklyn,9149064,Kange,Brooklyn,Fort Greene,40.69388,-73.98085,Entire home/apt,150,1,15,2019-04-06,0.42,1,55 +13207548,"Spacious, sunny bedroom in Hudson Heights",24843404,Laura,Manhattan,Washington Heights,40.84996,-73.93937,Private room,50,5,1,2016-05-28,0.03,1,0 +13207586,Beautiful 1BR UES,74020712,Nicole,Manhattan,Upper East Side,40.7722,-73.95272,Entire home/apt,115,3,8,2017-02-20,0.22,1,0 +13208233,Spacious 1st floor apartment in fantastic location,6357668,Ragi,Queens,Astoria,40.76279,-73.91767,Entire home/apt,69,4,0,,,1,0 +13208365,"Lovely, quiet and smoke free environment",65659872,Claudia,Brooklyn,Bushwick,40.70918,-73.92182,Private room,60,15,0,,,1,0 +13208373,New construction in Gramercy with rooftop and gym!,74031395,Matt,Manhattan,Gramercy,40.73637,-73.98051,Entire home/apt,350,5,0,,,1,0 +13208685,Darling Midtown Getaway byTimes Sq.,1362083,Jennifer,Manhattan,Hell's Kitchen,40.76376,-73.98789,Private room,131,4,33,2019-01-03,0.88,1,180 +13208952,The Real Manhattan Upper East Side--Now Yours,290317,Katie,Manhattan,Upper East Side,40.77305,-73.96283,Shared room,99,3,48,2019-06-19,1.53,1,0 +13209317,Cozy Room in Suburban Home,74044417,Bridget,Queens,Rosedale,40.65973,-73.74098,Private room,160,1,1,2018-10-07,0.11,1,365 +13209380,"Luxe 1-br Large Loft in Tribeca, Entire Apt",6569229,Anna,Manhattan,Tribeca,40.71523,-74.0079,Entire home/apt,250,3,3,2017-10-29,0.09,1,0 +13209482,Peaceful 1 Bedroom in Prime E. Village,34386241,Jesse,Manhattan,East Village,40.72697,-73.98488,Entire home/apt,250,1,18,2017-02-08,0.47,2,0 +13209493,Family Friendly 2 BR in Park Slope Brooklyn,60928872,Andrea,Brooklyn,Park Slope,40.67002,-73.98496,Entire home/apt,150,3,3,2016-08-08,0.08,1,0 +13209514,super modern WeLive/WeWork shared Apt @WallStreet,6189263,Anni,Manhattan,Financial District,40.70433,-74.00706,Entire home/apt,150,2,6,2016-06-23,0.16,1,0 +13209699,Comfortable room 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77705,-73.91356,Private room,65,1,20,2019-06-16,2.23,3,20 +13210016,Private 2bdr apt. awesome LES/Chinatown location,6917811,Gia,Manhattan,Civic Center,40.71537,-74.00181,Private room,100,2,0,,,1,0 +13213869,Beautiful one bedroom home in Washington Heights,38284609,Emily,Manhattan,Washington Heights,40.8449,-73.94034,Private room,85,3,10,2019-01-01,0.30,1,362 +13215481,Charming Bedroom in E. Williamsburg by Graham L,74112289,Jean,Brooklyn,Williamsburg,40.71738,-73.94089,Private room,44,28,11,2019-05-01,0.31,2,0 +13215733,EAST 25TH ST~KIPS BAY/EAST VILLAGE/UNION SQUARE,2856748,Ruchi,Manhattan,Kips Bay,40.7394,-73.97996,Entire home/apt,225,30,0,,,49,364 +13215920,Beautiful Private room!,69977115,Jacob,Brooklyn,Bensonhurst,40.61608,-73.99056,Private room,79,2,0,,,4,179 +13216067,SUNNY APT Best location In Williamsburg!!!!!,49484132,Juan,Brooklyn,Williamsburg,40.71024,-73.96081,Entire home/apt,150,2,120,2019-06-15,3.29,1,149 +13216246,Comfy Greenpoint room w/ easy access to Manhattan!,6531491,Stephen,Brooklyn,Greenpoint,40.72217,-73.948,Private room,75,1,55,2019-07-08,1.46,1,0 +13216357,"Cozy, clean, Harlem studio",14052889,Mary,Manhattan,Harlem,40.82779,-73.94065,Entire home/apt,105,7,32,2019-05-08,0.91,1,290 +13217170,Cozy Apartment in Bed-Stuy,64172780,Eleni,Brooklyn,Bedford-Stuyvesant,40.68604,-73.95375,Private room,50,5,7,2017-01-01,0.21,1,40 +13217241,Amazing and Perfect 1BR in Beautiful SOHO/Nolita!,74130179,Gary,Manhattan,Nolita,40.72426,-73.99535,Entire home/apt,275,3,24,2019-05-30,0.66,1,82 +13217609,"Bright Guest Room with Balcony, Harlem",1514100,Wasim,Manhattan,Harlem,40.80991,-73.94597,Private room,149,3,16,2019-06-28,0.59,1,333 +13217755,Large Bedroom on upper west/columbia,47896181,Zichen,Manhattan,Upper West Side,40.80125,-73.96529,Private room,90,1,3,2016-07-04,0.08,1,0 +13217991,Bright Clinton Hill/Bed Stuy Room in Artist's Apt.,67641348,Perri,Brooklyn,Bedford-Stuyvesant,40.68484,-73.95759,Private room,56,3,17,2018-05-27,0.45,1,0 +13218512,Cute 2bdrm Apt in Crown Heights w backyard,33386679,Sarah,Brooklyn,Crown Heights,40.67538,-73.95308,Entire home/apt,220,1,1,2016-05-30,0.03,2,0 +13219269,"Lovely, clean, and quiet - close to Prospect Park",7592287,Emily,Brooklyn,East Flatbush,40.6531,-73.94965,Private room,42,3,6,2016-09-18,0.16,1,0 +13220375,Huge Authentic NYC Home In Fun Soho District,11975339,Allyson,Manhattan,Nolita,40.72315,-73.99507,Entire home/apt,129,2,6,2018-05-14,0.28,1,0 +13220720,Charming Bedroom in E. Williamsburg by Graham Av L,74112289,Jean,Brooklyn,Williamsburg,40.71756,-73.94063,Private room,50,24,10,2018-12-22,0.28,2,31 +13221331,Studio on Best Street in Historic Brooklyn Heights,67439911,Jennifer,Brooklyn,Brooklyn Heights,40.69707,-73.99632,Entire home/apt,110,30,3,2018-09-02,0.08,1,6 +13221528,Doorman Lux Huge Studio Prime 5176,16098958,Jeremy & Laura,Manhattan,Theater District,40.76264,-73.98569,Entire home/apt,160,30,3,2018-03-20,0.09,96,344 +13221788,Minimalist room next to the subway (2),74179880,Silvia,Brooklyn,East New York,40.67378,-73.88846,Private room,35,30,86,2019-06-23,2.29,8,326 +13222140,"Private appartment,minutes from NY citi. Fantastic loc ation, walking distance to manhattan ferry.",15523,Vadim,Staten Island,Tompkinsville,40.63342,-74.08249,Private room,72,2,25,2018-09-03,0.66,2,237 +13222669,"Charming Garden Studio in Sunnyside, NY",5955262,Leticia,Queens,Long Island City,40.73487,-73.92145,Entire home/apt,95,5,46,2019-06-24,1.23,1,244 +13222964,Charming studio West Harlem / sleep three,74196752,Lawrence,Manhattan,Harlem,40.81162,-73.95046,Entire home/apt,100,1,5,2016-06-28,0.13,1,0 +13223445,UWS Room May 30 - June 8,51756175,Khalil,Manhattan,Upper West Side,40.77282,-73.9808,Private room,115,10,1,2016-06-09,0.03,1,0 +13223949,Designer Apartment - Sunny and spacious 1 bedroom,7195006,Sarah,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95035,Entire home/apt,115,5,1,2016-07-05,0.03,1,0 +13225764,Large Clean and Modern Room Near Subway Lines,74227432,Tony,Manhattan,Harlem,40.82579,-73.9528,Private room,79,1,56,2019-06-09,1.49,1,74 +13225970,哥大附近卧室 Room on Upper West/Columbia,74231989,Siyu,Manhattan,Upper West Side,40.80205,-73.9658,Private room,36,15,1,2016-08-01,0.03,1,0 +13230556,BRIGHT & COZY STUDIO FOR 2~EAST 60TH STREET,2856748,Ruchi,Manhattan,Upper East Side,40.76139,-73.96208,Entire home/apt,138,30,0,,,49,365 +13230807,"Charming 1-Bed Apt, Brooklyn - 20 min to Manhattan",20907184,Valerie Lynn-McDonough,Brooklyn,Bay Ridge,40.63359,-74.02302,Entire home/apt,75,30,1,2016-06-12,0.03,1,191 +13231183,East 60th Street~Perfect Studio for 2,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96192,Entire home/apt,138,30,0,,,49,365 +13231399,Beautiful garden 1 bed 7/8-7/18,4316938,Skye,Manhattan,East Harlem,40.80735,-73.94064,Entire home/apt,175,9,0,,,1,365 +13231566,Large DT Bedroom! - TriBeCa/Financial Manhattan!,69545272,Ben,Manhattan,Financial District,40.71085,-74.0083,Private room,59,13,24,2019-05-14,0.68,2,166 +13231678,Bedroom in the East Village ❤️,54778990,Eve,Manhattan,East Village,40.72572,-73.98269,Private room,50,1,0,,,1,0 +13231961,Cozy Brooklyn Nest,62805890,Millie,Brooklyn,Prospect-Lefferts Gardens,40.6557,-73.95471,Entire home/apt,99,3,15,2019-05-22,0.43,1,167 +13232690,Room & Breakfast - Room 3,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92926,Private room,49,1,77,2019-07-07,2.44,3,239 +13232917,Hip Crown Heights 2 Bedroom!,52592877,Alexis,Brooklyn,Crown Heights,40.67294,-73.9581,Entire home/apt,113,1,3,2016-07-06,0.08,1,0 +13232952,Happy and spacious corner near 7 train,17638424,Sophie,Queens,Elmhurst,40.74576,-73.87407,Private room,47,1,87,2019-06-04,2.35,8,156 +13233113,Luxury Highrise 1bd -great views -central location,15774226,Mirza,Manhattan,Theater District,40.76318,-73.98473,Private room,104,5,0,,,1,0 +13233830,Beautiful Historic Brooklyn Townhouse! 4Br/3.5Bath,24743701,Renata And Howard,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.95567,Entire home/apt,650,5,3,2019-07-02,0.08,2,23 +13233856,"Cozy room, great location",22682349,Marwa,Manhattan,Upper West Side,40.79643,-73.97188,Private room,110,7,2,2017-01-01,0.06,1,0 +13234352,Amazing private Upper East loft!,72218656,Yuanyuan,Manhattan,Upper East Side,40.7626,-73.96031,Entire home/apt,199,3,57,2019-06-20,1.51,1,93 +13234446,Charming Room in Greenpoint,6244152,Julia,Brooklyn,Greenpoint,40.72779,-73.94323,Private room,67,4,0,,,1,0 +13234457,Cozy Clinton Hill Crib On Classon,2868,Letha M.,Brooklyn,Bedford-Stuyvesant,40.68258,-73.95871,Entire home/apt,60,29,2,2017-07-31,0.06,1,221 +13235417,Quiet and sunny SoHo studio,3343599,Devin,Manhattan,SoHo,40.72515,-74.00182,Entire home/apt,150,5,0,,,1,0 +13235840,"Studio for 1, Upper West Side (70s)",6098059,Paige,Manhattan,Upper West Side,40.77616,-73.97994,Entire home/apt,99,8,0,,,1,0 +13235951,Bright & spacious Room in Harlem,74330820,Rachel,Manhattan,East Harlem,40.81286,-73.93618,Private room,52,1,33,2018-11-19,0.91,2,4 +13236148,Garden level apartment in Bed-Stuy,33402262,Jordan,Brooklyn,Bedford-Stuyvesant,40.68378,-73.94118,Entire home/apt,155,2,94,2019-06-08,2.50,1,218 +13236366,Beautiful 2 Bed/2 Bath Duplex on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78396,-73.97691,Entire home/apt,171,30,3,2016-11-16,0.08,6,188 +13237057,City room 2 min walk from train (4),74179880,Silvia,Brooklyn,East New York,40.67323,-73.8892,Private room,39,3,71,2019-06-10,1.90,8,329 +13237190,Queen sofa in UES w BEST roommates,31460662,Morgan,Manhattan,Upper East Side,40.76995,-73.95604,Shared room,120,1,12,2017-04-30,0.32,1,0 +13237828,Amazing Open Floor Studio Extension,74351458,Harvey,Brooklyn,Bushwick,40.69893,-73.92624,Entire home/apt,115,5,54,2019-06-07,1.47,1,105 +13238211,West Village 1 Bedroom well lit CLEAN apartment,2584324,Justin,Manhattan,West Village,40.73334,-74.00104,Entire home/apt,165,1,13,2017-01-01,0.35,1,0 +13238321,Home away from home,40976536,Jeff,Manhattan,Harlem,40.82963,-73.9495,Private room,69,1,34,2019-07-05,0.91,1,180 +13238778,Spacious and Quiet Bedroom in Artsy Bushwick!,7550464,Wil,Brooklyn,Bushwick,40.70238,-73.92812,Private room,55,1,1,2016-06-07,0.03,1,0 +13239181,1 Bedroom in 2 Bedroom Apartment,15478812,Tai,Queens,Ridgewood,40.70422,-73.90978,Private room,60,1,0,,,1,0 +13239693,2-Floor Sunlit Apt In Greenpoint With Outdoor Deck,27652670,Noah,Brooklyn,Greenpoint,40.73239,-73.95449,Entire home/apt,133,2,12,2016-11-25,0.33,1,0 +13240737,Times Square / Broadway Area - Midtown Manhattan,74397192,Glenn,Manhattan,Hell's Kitchen,40.76345,-73.99298,Private room,79,3,136,2019-06-26,3.65,1,47 +13243615,Big Studio Apartment near Ocean Beach,17770598,Maya,Brooklyn,Manhattan Beach,40.5775,-73.94003,Entire home/apt,79,1,0,,,1,0 +13243946,Sunny one-bedroom two blocks from Central Park,5704909,Taeko,Manhattan,Harlem,40.80041,-73.95237,Entire home/apt,160,3,1,2016-06-12,0.03,1,0 +13244254,Luxury Studio in Harlem,10110888,Vlad,Manhattan,Harlem,40.80822,-73.95273,Entire home/apt,170,3,34,2019-06-30,1.00,1,198 +13245033,"Private room Queen close to Mall +5 mins to subway",50855262,Fone,Queens,Elmhurst,40.73727,-73.87853,Private room,45,5,2,2017-10-09,0.09,3,0 +13245721,Gorgeous 1 BD in the West Village,10039614,Parth,Manhattan,West Village,40.73506,-74.00518,Entire home/apt,249,1,0,,,1,0 +13245726,"Bright, spacious room in a fantastic neighborhood!",36434327,Caroline,Manhattan,Harlem,40.80698,-73.95272,Private room,66,14,4,2019-07-07,0.17,1,0 +13246042,"Sunny, Private Room with Separate Entrance",278393,Dylana,Brooklyn,Bushwick,40.69798,-73.92462,Private room,52,1,132,2019-06-19,3.59,3,74 +13246278,3 br 80s light loft in Lower East Side / Chinatown,6787564,Luke,Manhattan,Lower East Side,40.71258,-73.9901,Entire home/apt,200,4,6,2019-01-04,0.31,1,0 +13246804,One cozy private BR close to the mecca of shopping,4832845,Gg,Manhattan,Midtown,40.76026,-73.9659,Private room,80,1,275,2019-07-03,7.45,1,45 +13246949,Cozy Room in 4bdrm Apt in Hip Williamsburg,74468846,Diana,Brooklyn,Williamsburg,40.71225,-73.94413,Private room,75,2,30,2019-07-05,2.65,2,2 +13248480,Large room avail in a shared apartment,72359036,Brian,Manhattan,Upper East Side,40.77983,-73.94798,Private room,125,1,5,2016-06-26,0.13,1,0 +13248565,COZY 1 BEDROOM APARTMENT,74489237,Carmen,Bronx,Tremont,40.84268,-73.89294,Entire home/apt,68,1,0,,,1,0 +13248583,Spacious & cozy room in trendy SoHa !,3097033,Aida,Manhattan,Harlem,40.80304,-73.95148,Private room,65,2,50,2019-06-24,1.39,2,15 +13248742,Spacious BR in large 2 BR apt in Roosevelt Island,69706365,Bernardo,Manhattan,Roosevelt Island,40.76205,-73.94975,Private room,79,4,2,2016-06-11,0.05,2,0 +13248968,Luxurious 1 bdr apt with balcony!,15985137,Ferenc,Brooklyn,Bushwick,40.69476,-73.92943,Entire home/apt,125,5,42,2019-06-21,1.12,1,1 +13249407,LARGE SUNNY 2 BEDROOM APARTMENT IN BROOKLYN!,9123131,Sean,Brooklyn,Crown Heights,40.67206,-73.9429,Entire home/apt,105,4,13,2017-08-14,0.36,2,0 +13249656,renovated one bedroom in our beautiful townhouse,1996771,Arturo,Brooklyn,Bedford-Stuyvesant,40.68063,-73.95015,Entire home/apt,140,3,122,2019-06-25,3.26,1,275 +13250303,Single room in Bed-Stuy,38322121,Pierre-Alexis,Brooklyn,Bedford-Stuyvesant,40.69484,-73.95852,Private room,70,3,2,2016-06-23,0.05,1,0 +13250484,Beautiful 2000 sq. ft. loft in Hells Kitchen NYC,10196579,James,Manhattan,Hell's Kitchen,40.75647,-73.99848,Entire home/apt,2000,1,4,2017-01-06,0.11,1,362 +13251558,Beautiful NYC Apartment,74534871,Brennen,Manhattan,Harlem,40.82158,-73.93824,Private room,100,1,0,,,1,0 +13252064,1st Time/Solo Guests: Charming NYC Apt. Share!!!,41044972,Sue,Manhattan,Chelsea,40.74487,-74.00277,Shared room,75,2,9,2019-06-24,0.26,1,231 +13254260,"One room in beautiful 2BR apartment, Crown Heights",50485365,Paloma,Brooklyn,Crown Heights,40.66741,-73.9522,Private room,36,12,2,2017-12-11,0.09,1,0 +13254504,"Tree lined, light-filled in Chelsea",21350216,Karin,Manhattan,Chelsea,40.74858,-73.99887,Entire home/apt,240,1,1,2016-07-01,0.03,1,0 +13254864,2 Bed 1 Bedroom Flex Apartment - Greenwich Village,74573695,Ozge,Manhattan,Greenwich Village,40.72838,-73.99899,Entire home/apt,200,7,38,2019-06-30,1.03,1,205 +13256322,Comfortable 1BR on quiet street in Upper East Side,6945858,Lydia,Manhattan,Upper East Side,40.76969,-73.95509,Entire home/apt,250,30,0,,,1,0 +13256651,Large Comfy Couch in South Prospect Park,56142507,Marie,Brooklyn,Flatbush,40.64542,-73.96484,Shared room,46,1,22,2019-05-17,0.58,1,365 +13258556,Bright Manhattan Studio,5189524,Wallace,Manhattan,Kips Bay,40.74036,-73.98053,Entire home/apt,120,26,22,2018-01-02,0.60,1,0 +13259442,Amazing room UWS steps away from Columbia Univ.,6458590,Gillian,Manhattan,Upper West Side,40.80348,-73.96579,Private room,80,2,149,2018-05-17,3.98,1,0 +13260699,1BR charming and supercozy apt,74643411,Viviana,Manhattan,Upper West Side,40.77969,-73.97738,Entire home/apt,120,14,12,2018-08-23,0.34,1,261 +13261498,Garden Duplex in trendy South Park Slope,74653179,Kevin,Brooklyn,South Slope,40.66537,-73.98559,Entire home/apt,150,3,6,2018-08-19,0.17,1,1 +13261616,"Sunny, Accessible, UES Apt - Summer in the City",24693048,Tola,Manhattan,Upper East Side,40.77693,-73.94524,Entire home/apt,120,7,0,,,1,0 +13261922,Spacious artsy apartment near Gramercy/Flatiron,3490622,Calliea,Manhattan,Flatiron District,40.74154,-73.98515,Entire home/apt,200,5,1,2016-08-01,0.03,1,0 +13262082,Private BR in sunny East Village 2BR,18056150,Mark,Manhattan,East Village,40.72954,-73.98842,Private room,100,1,1,2016-06-25,0.03,1,0 +13262386,Charming 3 bedroom in Brooklyn!!,7195638,Dawn,Brooklyn,Bedford-Stuyvesant,40.685,-73.92022,Private room,73,3,5,2016-10-08,0.14,1,359 +13262935,Lovely large bedroom in Brownstone (garden),9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94636,Private room,60,2,9,2018-01-17,0.24,2,0 +13264012,Cozy Studio in the Heart of Brooklyn Heights,55471059,Britt,Brooklyn,Brooklyn Heights,40.69511,-73.9934,Entire home/apt,110,1,3,2016-07-28,0.08,1,0 +13264690,Beautiful and Comfy Private Room,38815234,Viviana,Manhattan,Harlem,40.82605,-73.94219,Private room,55,3,60,2019-06-21,1.68,2,246 +13265459,Sunny 1 bedroom right next to express A!,40863393,Nina,Manhattan,Washington Heights,40.85177,-73.93652,Entire home/apt,110,1,7,2017-04-23,0.19,1,0 +13265710,Sunny Bedroom in Harlem,74712074,Noel,Manhattan,Harlem,40.81834,-73.93929,Private room,70,1,4,2016-11-21,0.11,1,0 +13266202,Spacious living space in Williamsburg/Bushwick,14291958,Yiming (Steven),Brooklyn,Williamsburg,40.70644,-73.93968,Private room,60,3,2,2016-10-10,0.06,1,0 +13270298,Pure Luxury in Top Location,16437254,Benjamin,Brooklyn,Prospect Heights,40.67634,-73.96651,Entire home/apt,270,30,3,2018-08-14,0.11,21,255 +13272022,Spacious Private Room in Brooklyn,24765466,Alexandria,Brooklyn,Prospect-Lefferts Gardens,40.65588,-73.95062,Private room,35,20,0,,,1,0 +13272041,A queen size bed with a cat near Grand Central,4920111,Emily,Manhattan,Midtown,40.75242,-73.97261,Private room,100,1,4,2016-10-09,0.11,1,0 +13273660,Large BR available near Fort Tryon Park,74795588,Aden,Manhattan,Inwood,40.86059,-73.92986,Private room,50,7,0,,,1,0 +13273903,Studio apartment in Luxury building near Wall St.,6297445,Omar,Manhattan,Financial District,40.70662,-74.0051,Entire home/apt,150,3,6,2017-06-11,0.17,1,0 +13274918,Murray Hill Modern 1 bedroom (B),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74569,-73.98192,Entire home/apt,150,30,2,2018-07-03,0.07,31,64 +13274952,Helles und modernes Zimmer/Wohnung in Bushwick,11091997,Mario & Marijke,Brooklyn,Bushwick,40.70243,-73.92978,Private room,77,3,47,2019-07-01,1.25,2,46 +13275792,Luxury Double Room in Williamsburg,35433522,David,Brooklyn,Williamsburg,40.71281,-73.95127,Private room,59,2,87,2018-08-28,2.31,3,0 +13275896,"Gorgeous exclusive Room with all amenities, gym",71176668,David,Manhattan,Harlem,40.81646,-73.93795,Private room,110,2,4,2018-09-23,0.12,4,0 +13276227,KINGLY MANHATTAN RED ROOM WITH GYM AND AMENITIES,71176668,David,Manhattan,Harlem,40.81627,-73.93512,Private room,110,2,9,2019-05-04,0.26,4,280 +13276288,"BR in huge old Bushwick loft, brick, private roof",2723661,Caitlin,Brooklyn,Bushwick,40.69415,-73.92987,Private room,45,1,0,,,1,0 +13276320,Beautiful place sunny and quite,74823629,Roberto,Queens,Ditmars Steinway,40.77388,-73.91598,Private room,125,1,6,2016-12-29,0.17,1,0 +13276525,EXECUTIVE MANHATTAN GREEN ROOM WITH ALL AMENITIES,71176668,David,Manhattan,Harlem,40.81604,-73.94017,Private room,110,2,20,2019-06-03,0.58,4,5 +13276680,Amazing Double Room in Williamsburg,35433522,David,Brooklyn,Williamsburg,40.71234,-73.95,Private room,89,2,69,2018-08-27,1.83,3,0 +13277919,Bushwhick Room for Rent,14336676,Fadi And Michael,Brooklyn,Bushwick,40.69808,-73.93,Private room,75,2,7,2018-04-24,0.19,1,0 +13278166,Privat Bath and Bedroom overlooking the Park,18957252,Christopher Und Nora,Brooklyn,Greenpoint,40.72361,-73.95039,Private room,100,1,11,2017-11-10,0.30,1,0 +13278181,Comfortable 2 Bedroom in Brooklyn Heights,6671270,Cory,Brooklyn,Brooklyn Heights,40.69304,-73.99328,Entire home/apt,250,7,5,2017-08-24,0.14,1,0 +13278654,Large 1 Bed - Ideal UWS Location,8089285,Maura,Manhattan,Upper West Side,40.77865,-73.98104,Entire home/apt,149,2,1,2016-08-20,0.03,1,0 +13279036,Sunny cozy room with rooftop area in BK,72483475,Andrea,Brooklyn,Bushwick,40.69092,-73.91073,Private room,50,2,2,2016-06-14,0.05,1,0 +13280099,South Bronx Studio Near Yankee Stadium,73831041,Jake,Bronx,Concourse,40.82909,-73.92249,Entire home/apt,95,5,0,,,1,0 +13280112,2 Floor Private Apartment in Williamsburg,56589011,Ryan,Brooklyn,Williamsburg,40.71293,-73.95946,Entire home/apt,160,1,7,2017-01-02,0.19,1,0 +13280923,A room for mom or woman on adventure,74879324,Sophia,Manhattan,Harlem,40.80515,-73.95595,Private room,79,3,50,2018-10-14,1.33,1,36 +13281460,Charming 1 bedroom in the BEST neighborhood,1362963,Chelsea,Brooklyn,Fort Greene,40.69016,-73.97307,Entire home/apt,97,3,0,,,1,0 +13281809,Calm 1BR in 2BR,3562912,Landon,Brooklyn,Williamsburg,40.71505,-73.94403,Private room,75,3,0,,,1,0 +13282284,Beautiful Bedroom in Great Apt!,42682752,Katharine,Brooklyn,Cobble Hill,40.68868,-73.99206,Private room,65,2,17,2018-08-05,0.45,3,0 +13282385,Beautiful 2BR Apt. in Brand New Building,18840786,Michael,Brooklyn,Bushwick,40.69949,-73.92621,Entire home/apt,95,3,1,2016-06-07,0.03,1,0 +13282553,Comfortable Midtown Appartment 2BR,22656176,Gabrielle,Manhattan,Midtown,40.75604,-73.9681,Entire home/apt,185,1,2,2016-08-28,0.05,1,0 +13282638,Hip & Clean Bushwick Treasure,31753024,Marie-Luisa,Brooklyn,Bushwick,40.69818,-73.91941,Entire home/apt,68,2,4,2016-09-13,0.11,1,0 +13282840,Cozy Private room near Central Park,49328849,Dorothy,Manhattan,East Harlem,40.79532,-73.94454,Private room,85,4,46,2019-07-01,1.23,1,72 +13287347,"Carroll Gardens Beautiful, Private, Sunny Suite",424078,Jocelyn,Brooklyn,Gowanus,40.6772,-73.99354,Private room,150,2,215,2019-07-05,5.90,1,72 +13288854,Large Sunny Room in Big Loft,15798864,Tobias,Brooklyn,Bedford-Stuyvesant,40.69646,-73.96059,Private room,65,4,6,2018-01-04,0.16,1,0 +13289643,Charming 1BR Murray Hill Apt + Rooftop,74981965,Amara,Manhattan,Murray Hill,40.74436,-73.97292,Entire home/apt,200,270,2,2016-06-12,0.05,1,0 +13291508,Cozy comfortable private room in Brooklyn NY,67661003,Maki,Brooklyn,Windsor Terrace,40.65549,-73.98111,Private room,55,2,26,2019-06-23,1.36,1,75 +13291548,Large one bedroom with closet and bathroom!,75001749,Christina,Brooklyn,Greenpoint,40.73767,-73.95527,Private room,100,2,0,,,1,0 +13291853,Bright and Comfortable 1br in West Village,993817,Alex,Manhattan,West Village,40.7321,-74.00461,Entire home/apt,250,2,1,2016-06-18,0.03,1,0 +13292687,Cozy room in Williamsburg Apartment,75014265,Simon,Brooklyn,Williamsburg,40.70949,-73.96087,Private room,89,1,3,2017-04-25,0.08,1,0 +13292979,Park Slope luxury penthouse w/ private roof deck,75017049,Dylan,Brooklyn,South Slope,40.66662,-73.98168,Private room,100,31,1,2019-06-06,0.88,2,283 +13292993,Comfortable 2-bedroom centrally located in NYC!,29183572,Marissa,Manhattan,Kips Bay,40.74429,-73.97663,Entire home/apt,300,2,2,2016-09-19,0.05,1,0 +13293325,Cozy Beautiful Room Only 20min from Manhattan NYC!,75020731,Stefan,Queens,Ridgewood,40.70219,-73.89859,Private room,45,7,35,2019-07-01,1.29,1,18 +13294007,Large and Beautiful ELEVATOR 1 BR - Very Quiet,75029289,Rlg,Manhattan,Upper East Side,40.77375,-73.94963,Entire home/apt,133,30,10,2019-05-30,0.44,5,126 +13294137,"Quiet, Secure, Clean and very Private Apartment",75030399,Hardy,Bronx,Williamsbridge,40.87938,-73.86349,Entire home/apt,500,2,19,2018-11-05,0.56,1,345 +13294291,Heart of Williamsburg ❤,19529332,Lannon,Brooklyn,Williamsburg,40.71736,-73.95263,Private room,68,3,9,2017-08-17,0.25,1,0 +13294325,"Private Bedroom in Brownstone House, Bedstuy",75034279,Irina,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9512,Private room,56,2,43,2019-06-30,1.61,2,110 +13294856,"NYCT02-3: Private Sunny Rm, NYU, Baruch, SOHO",39890192,Laura,Manhattan,Little Italy,40.71728,-73.99859,Private room,75,15,15,2019-02-15,0.40,12,80 +13294859,Huge Bushwick loft Bedroom,20353229,Megan,Brooklyn,Williamsburg,40.70552,-73.93344,Private room,80,3,0,,,1,0 +13295331,Pretty&Brand-New room Close to Everything You Want,33064599,Yukee,Manhattan,Upper West Side,40.8002,-73.96727,Private room,299,1,3,2016-12-31,0.08,6,345 +13295693,Cozy private room in Homecrest Brooklyn,10633027,Sam,Brooklyn,Sheepshead Bay,40.59621,-73.95767,Private room,51,2,80,2019-06-22,2.42,3,35 +13296897,Beautiful Bedroom Mid Town Manhattan,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76283,-73.99331,Private room,115,2,30,2019-07-02,0.80,3,3 +13297200,Cozy Convenient Brooklyn Heights 1BR Apartment,7959692,Lucas,Brooklyn,Brooklyn Heights,40.69446,-73.99689,Entire home/apt,180,3,5,2018-06-17,0.14,1,0 +13298512,"Large Bedroom in Clinton Hill/Bed-Stuy, Brooklyn!",6444963,Tiffany,Brooklyn,Bedford-Stuyvesant,40.69041,-73.96026,Private room,50,6,3,2019-02-11,0.08,1,3 +13298526,AC room in a Huge Lux Greenpoint Loft,49742862,Angela,Brooklyn,Greenpoint,40.73052,-73.95876,Private room,80,2,2,2019-01-01,0.05,2,0 +13299243,Single family BBQ - 15 min to midtown,75092148,Sarah,Queens,Astoria,40.76026,-73.92235,Entire home/apt,300,4,4,2018-08-05,0.11,1,0 +13299532,Cozy 2 bedroom APT in the heart of Bushwick,34300852,Katelyn,Brooklyn,Bushwick,40.69472,-73.91405,Entire home/apt,79,2,156,2019-07-07,4.21,1,70 +13299818,Spacious & bright 1 BDR in Gramercy,17265086,Katie,Manhattan,Kips Bay,40.73898,-73.98233,Entire home/apt,150,2,18,2019-06-02,0.81,1,0 +13300059,Quiet Home Base for Exploring an Exciting City!,36478779,Isa,Brooklyn,Prospect-Lefferts Gardens,40.66071,-73.9558,Entire home/apt,94,3,98,2019-07-03,2.71,1,94 +13300113,Private bedroom + living room simple and cozy,74304509,Michel,Brooklyn,Prospect Heights,40.67951,-73.96926,Private room,65,1,16,2017-05-28,0.46,1,0 +13300645,"NYCT02-2 LES Newly renovated Rm, NYU, Soho, AC",39890192,Laura,Manhattan,Little Italy,40.71783,-73.99817,Private room,83,15,26,2019-06-02,0.74,12,125 +13303942,Spacious Bushwick Room with 3 Large Windows,48036408,Raul,Brooklyn,Bushwick,40.68584,-73.90587,Private room,50,20,0,,,1,0 +13305621,Cozy 1BR apartment in Clinton Hill,1331063,Maria,Brooklyn,Bedford-Stuyvesant,40.68235,-73.9535,Entire home/apt,120,14,1,2016-06-25,0.03,1,0 +13306081,Elgant double bed room in Brooklyn.,36579485,Jean& Toney,Brooklyn,Canarsie,40.6413,-73.90303,Private room,500,2,1,2016-06-23,0.03,3,179 +13306156,Large deluxe queen size bedroom,36579485,Jean& Toney,Brooklyn,Canarsie,40.6418,-73.90245,Private room,600,2,0,,,3,362 +13306254,A beautiful Park slope apartment,9603086,Leza,Brooklyn,Gowanus,40.6664,-73.99305,Entire home/apt,300,1,0,,,1,311 +13307480,Peaches Bungalow,74180901,Etta,Manhattan,Washington Heights,40.83791,-73.94075,Entire home/apt,150,1,89,2019-06-18,2.41,1,139 +13308110,Sunny & Spacious 1bdrm apt,1713791,Roshan,Brooklyn,Bushwick,40.70699,-73.92188,Entire home/apt,149,1,41,2019-06-02,1.10,1,69 +13308276,The Manhattan - Apartment Near Central Park,75085688,Mark,Manhattan,Upper West Side,40.801,-73.9613,Entire home/apt,150,2,11,2017-11-25,0.31,1,2 +13308629,Quiet Cozy Chinatown Room,41408521,David,Manhattan,Chinatown,40.71385,-73.99711,Private room,75,1,3,2017-08-12,0.08,1,0 +13309188,"Modern 1br apt, Manhattan skyline views!",21367825,Anna,Manhattan,Roosevelt Island,40.7672,-73.94552,Entire home/apt,195,14,1,2016-08-27,0.03,1,0 +13309259,Cute 1 bdrm in shared crown heights apt w backyard,33386679,Sarah,Brooklyn,Crown Heights,40.67512,-73.95248,Private room,80,1,1,2016-06-26,0.03,2,0 +13309409,Nolita/Soho - Quiet 1 Bedroom in Great Location!,75205085,Owen,Manhattan,Nolita,40.72271,-73.99518,Entire home/apt,250,4,11,2018-05-19,0.29,1,0 +13309667,Bright Modern West Village Studio with Skylight,2507664,Julie,Manhattan,West Village,40.73704,-74.00371,Entire home/apt,225,1,21,2016-12-04,0.56,1,0 +13309763,Large SOHO Artist Loft,75098888,Nate,Manhattan,SoHo,40.72535,-73.9966,Entire home/apt,450,2,41,2019-04-19,1.16,1,0 +13310836,Between Northern Blvd. and Main Street.,75216989,Wenqin,Queens,Flushing,40.7662,-73.82854,Private room,35,1,67,2019-06-01,1.78,4,339 +13311392,420 friendly COZY BRICK EXPOSED PVT RM,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68155,-73.91435,Private room,70,12,27,2019-06-16,0.73,4,342 +13311896,Cultural and Cozy in Crown Heights,35313655,Skye,Brooklyn,Crown Heights,40.67389,-73.93974,Private room,80,3,1,2016-06-15,0.03,1,0 +13312914,Unique art loft in Bushwick! 1 block from train!,25614735,Brad,Brooklyn,Bushwick,40.69809,-73.93435,Private room,75,2,0,,,1,0 +13312968,"Perfect, Charming Greenpoint Bedroom in 3BR Apt",52699613,Julia,Brooklyn,Greenpoint,40.73356,-73.96001,Private room,79,1,0,,,1,0 +13313377,"NYCT02-1 Canal St, Tribeca, Soho, LES, NYU",39890192,Laura,Manhattan,Chinatown,40.71552,-73.99731,Private room,84,14,25,2019-06-19,0.71,12,89 +13313576,Bright and orderly 1 BR apartment in LES,75246219,Gabriel,Manhattan,Lower East Side,40.72075,-73.98733,Entire home/apt,172,3,3,2016-07-10,0.08,1,0 +13314206,Beautiful Spacious Apt. in Washington Heights!,2383846,Lisa,Manhattan,Washington Heights,40.83945,-73.94353,Entire home/apt,110,14,5,2018-08-24,0.14,1,0 +13314442,Private bedroom in a 4 bed apartment in Bushwick!,35494785,Jonathan,Brooklyn,Bushwick,40.70044,-73.93909,Private room,55,1,1,2016-06-19,0.03,1,0 +13314752,Astoria-LIC Private Room,75061595,Cesar,Queens,Long Island City,40.76053,-73.92977,Private room,78,2,27,2017-08-21,0.72,1,0 +13315551,Charming Private Flat,8387315,Nicky,Brooklyn,Midwood,40.61567,-73.95488,Entire home/apt,115,1,75,2019-07-07,2.00,1,81 +13315940,Columbia University Spacious Clean 1 BR Apartment,14105586,Justin,Manhattan,Morningside Heights,40.80904,-73.95807,Entire home/apt,180,3,1,2016-07-01,0.03,1,0 +13315967,Authentic Industrial Loft with 35ft ceilings.,75275467,Yaron,Bronx,Port Morris,40.80884,-73.9302,Entire home/apt,139,2,28,2019-05-28,0.80,4,131 +13316028,Duplex Condo in Williamsburg- Pvt Ensuite Bath!,6459374,Juan,Brooklyn,Greenpoint,40.72446,-73.95235,Private room,120,2,10,2017-12-05,0.27,1,0 +13316545,"Great Place in Brooklyn, Close to Everything",75281770,Janea,Brooklyn,East Flatbush,40.65112,-73.95165,Entire home/apt,77,2,1,2016-06-15,0.03,1,0 +13316577,Spacious Upper Eastside Apt available July-August,7333982,Paulo,Manhattan,Upper East Side,40.77614,-73.94626,Entire home/apt,150,7,1,2016-08-20,0.03,1,0 +13316988,Great room close to Columbia University and Subway,11684392,Thomas,Manhattan,Upper West Side,40.79951,-73.96767,Private room,67,5,1,2016-07-24,0.03,1,0 +13318239,"Pleasant, peaceful & charming apt",75302217,C-Van,Manhattan,East Harlem,40.7885,-73.9494,Entire home/apt,159,30,12,2018-11-06,0.35,2,0 +13318272,Big Bedroom in Spacious Apt in East Williamsburg,185394,Gregory,Brooklyn,Williamsburg,40.70485,-73.94472,Private room,100,1,3,2016-06-27,0.08,2,0 +13324758,Sunny & Comfy room in Crown Heights,34547856,Angelica,Brooklyn,Crown Heights,40.67437,-73.95711,Private room,65,2,0,,,1,0 +13325664,"2 bed, 2 bath, roof deck artsy gem in East Village",38403770,Stacey,Manhattan,East Village,40.72792,-73.98106,Entire home/apt,199,2,4,2019-07-01,0.11,1,0 +13325767,Cozy Room In Brooklyn,10864311,Habib,Brooklyn,Clinton Hill,40.69248,-73.96899,Private room,75,3,7,2019-01-02,0.25,1,0 +13326584,"Cosy room in NYC, two blocks from Central Park!",37218085,Marie,Manhattan,Upper West Side,40.79964,-73.96437,Private room,70,3,2,2016-08-13,0.06,1,0 +13326731,Cozy room with Queen bed in spacious loft.,75275467,Yaron,Bronx,Port Morris,40.80872,-73.93051,Private room,49,2,59,2019-06-11,1.59,4,148 +13327345,Full size bed in Petite room with exposed brick.,75275467,Yaron,Bronx,Port Morris,40.80952,-73.93025,Private room,41,2,57,2019-06-17,1.54,4,146 +13328254,"Simple, Spacious Room in LES/Two Bridges Apt",20932025,David,Manhattan,Lower East Side,40.71336,-73.98977,Private room,150,3,6,2016-10-30,0.18,1,0 +13328405,NEW RENOVATION 16min from TIMES SQUARE,40221604,John,Manhattan,Harlem,40.82299,-73.94486,Private room,60,1,72,2019-06-03,1.94,3,73 +13329706,Charming apartment with parking in the heart of Qs,55829442,Shahar,Queens,Kew Gardens Hills,40.73078,-73.82232,Entire home/apt,40,10,4,2016-07-18,0.11,1,0 +13329860,Sunny & spacious in NYC,8273903,Rohit,Queens,Astoria,40.76417,-73.92816,Entire home/apt,99,31,4,2018-10-31,0.11,1,5 +13330602,Modern One Bedroom in Heart of Financial District,27977872,Dana,Manhattan,Financial District,40.70716,-74.01155,Entire home/apt,250,5,0,,,1,0 +13330638,Sun-drenched apartment w/ backyard,11724504,Carli,Brooklyn,Bushwick,40.69903,-73.91722,Private room,40,4,1,2016-08-09,0.03,1,0 +13330683,NYC From Astoria Queens,75443454,Ana,Queens,Ditmars Steinway,40.77293,-73.91846,Private room,100,3,34,2019-04-15,0.92,2,161 +13331393,1BR Luxurious Furnished NY Apt - Times Square!,30283594,Kara,Manhattan,Theater District,40.75956,-73.98512,Entire home/apt,239,30,0,,,121,363 +13332001,Beautiful Room in Brooklyn Apartment,75458749,Beck,Brooklyn,Flatbush,40.64107,-73.95325,Private room,50,4,3,2016-08-05,0.08,2,0 +13332334,Strivers Row Studio,11727297,Ivonne,Manhattan,Harlem,40.81816,-73.94305,Entire home/apt,110,2,9,2017-10-01,0.26,1,0 +13332859,Spacious & Quiet Brooklyn Carriage House,70713032,Daria,Brooklyn,Brooklyn Heights,40.69775,-73.99517,Entire home/apt,375,10,2,2019-06-29,0.18,1,22 +13333542,Beautifully Designed Island Style Garden Suite,75478154,Malene,Brooklyn,Bedford-Stuyvesant,40.68252,-73.93863,Entire home/apt,229,4,92,2019-06-15,2.54,1,236 +13333699,Artist Charming Modern Ft Greene Park 2 floor apt,3115626,Darcy And Ross,Brooklyn,Fort Greene,40.69056,-73.97752,Entire home/apt,175,2,132,2019-07-06,3.54,1,298 +13333916,Clean & Private Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63849,-74.02028,Private room,40,1,84,2018-07-24,2.23,4,0 +13335424,"i call it home, you'll call it home.",75506967,Mimie,Bronx,Tremont,40.84559,-73.89815,Private room,41,7,22,2019-06-24,0.61,2,68 +13337150,"Luxury Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81193,-73.95946,Private room,110,3,58,2019-06-22,1.62,6,129 +13340543,"Bright, Spacious Studio in Upper East Side",75561563,Mindy,Manhattan,Upper East Side,40.76284,-73.96038,Entire home/apt,150,1,25,2018-06-26,0.67,1,0 +13341570,Upper East Side Studio - Close to Met Museum,75572617,Kathryn,Manhattan,Upper East Side,40.77722,-73.94991,Entire home/apt,165,4,5,2017-10-09,0.13,1,0 +13341820,Upscale 1 Bedroom Hell's Kitchen Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76045,-73.9981,Entire home/apt,239,30,1,2017-04-20,0.04,121,365 +13341955,MODERN & CONTEMPORARY STUDIO,75577166,Diana,Queens,Jackson Heights,40.75274,-73.87777,Entire home/apt,125,3,86,2019-07-02,2.39,1,271 +13342037,Charming 1BR Apartment in Soho / Nolita,75575414,Michael,Manhattan,Nolita,40.72198,-73.99451,Entire home/apt,245,5,0,,,1,0 +13343144,Warm and Cozy Paradise,54807420,Emmanuel,Queens,Astoria,40.75619,-73.92546,Private room,80,60,3,2017-01-19,0.10,1,83 +13343199,Midwood Street Limestone,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96017,Entire home/apt,329,2,15,2019-01-22,0.98,2,0 +13344039,Downtown Brooklyn Apartment with Great Views!,5777244,Lyshaan,Brooklyn,Downtown Brooklyn,40.69209,-73.98499,Entire home/apt,175,1,10,2016-09-05,0.27,1,0 +13346091,"Bright, Quiet Apartment near City College",2571641,Erika,Manhattan,Harlem,40.81771,-73.952,Entire home/apt,150,3,3,2017-01-01,0.08,3,0 +13346113,"Entire 2 BR apartment, 15 steps from the subway!",16278677,Grant,Brooklyn,Williamsburg,40.71459,-73.93885,Entire home/apt,200,7,0,,,1,146 +13346741,Great location big one bedroom on the UWS,3256433,Ira,Manhattan,Upper West Side,40.79426,-73.96914,Entire home/apt,200,10,4,2019-06-08,0.12,7,154 +13347857,Private room in Williamsburg,4260505,Ania,Brooklyn,Williamsburg,40.71061,-73.94289,Private room,75,2,7,2018-02-10,0.22,1,0 +13348000,"Home*Sweet*Home +Quiet neighborhood",69546772,Dave And Shaceline,Bronx,Throgs Neck,40.83166,-73.81747,Entire home/apt,89,1,192,2019-06-26,5.15,1,303 +13355002,Newly renovated apt w/parking space,75730551,Jeffrey,Brooklyn,Canarsie,40.63672,-73.91154,Entire home/apt,120,2,193,2019-07-08,5.14,1,254 +13355711,Private room in Washington Heights,39644709,Adriana,Manhattan,Washington Heights,40.851,-73.93141,Private room,35,3,1,2016-07-31,0.03,1,0 +13355757,Private Room in Dumbo Loft,75739500,David,Brooklyn,DUMBO,40.704,-73.98464,Private room,100,3,23,2017-04-15,0.63,1,0 +13355833,Private Room in Williamsburg,5628991,Christian,Brooklyn,Williamsburg,40.7194,-73.96262,Private room,85,3,0,,,1,0 +13356748,"Charming, light-filled room in Williamsburg",31429931,Penny,Brooklyn,Williamsburg,40.71444,-73.94058,Private room,70,1,1,2016-09-05,0.03,1,0 +13358067,bright 1 bedroom by the park,7097844,Anne,Brooklyn,Greenpoint,40.72552,-73.94489,Entire home/apt,114,2,3,2018-09-11,0.08,1,0 +13358265,Full 1 Bedroom Apartment in heart of UWS,60380241,Vanessa,Manhattan,Upper West Side,40.778,-73.97912,Entire home/apt,200,2,117,2019-06-22,3.24,1,34 +13358405,Delightful Brownstone,75484381,Shon,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94866,Entire home/apt,225,30,0,,,1,249 +13358660,Large private room in a very spacious 2 Bed/2 Bath,75773748,Halston,Manhattan,Upper West Side,40.79918,-73.9635,Private room,120,2,0,,,1,0 +13359102,Lovely one bedroom - Heart of Greenwich Village,8714636,Vianney,Manhattan,Greenwich Village,40.73057,-73.99422,Entire home/apt,199,3,1,2016-12-14,0.03,1,0 +13359416,"Private 1 bedroom UWS, 2 blocks from Central Park!",28557516,Thomas,Manhattan,Upper West Side,40.80286,-73.96561,Private room,55,5,0,,,1,0 +13359578,Sun-filled spacious one bedroom in West Village,3148025,Nicole,Manhattan,West Village,40.73831,-74.00324,Entire home/apt,199,4,4,2019-06-15,0.11,1,127 +13359647,Budget Room in large apartment (Solo Travelers+),11070120,Vernon,Bronx,Fordham,40.85927,-73.90142,Private room,40,21,23,2019-02-28,0.61,2,266 +13359798,large 1 bedroom apt with private balcony Astoria,4413028,Michael,Queens,Astoria,40.76836,-73.91445,Entire home/apt,200,2,18,2019-03-17,0.49,1,6 +13359877,Private Bedroom in the Heart of Williamsburg,264025,Sarah-Joan,Brooklyn,Williamsburg,40.71896,-73.95673,Private room,80,3,0,,,1,0 +13360068,"Awesome one-bedroom in the UES, Manhattan",26928086,Alice,Manhattan,Upper East Side,40.77928,-73.94862,Entire home/apt,140,2,6,2017-06-30,0.17,1,0 +13360600,Cosy Studio in Forest Hills,6741942,Ioannis,Queens,Rego Park,40.7234,-73.85787,Entire home/apt,50,20,2,2018-08-25,0.08,1,0 +13361613,Bright Architectural Oasis w/Chef’s Kitchen #10305,8961407,Jamie,Manhattan,Harlem,40.8053,-73.94704,Entire home/apt,375,3,50,2019-05-27,1.50,3,351 +13361785,"Bridge View, Designer Brick & Timber Loft",9949656,Scott,Brooklyn,Williamsburg,40.71329,-73.96586,Entire home/apt,250,3,6,2019-05-21,0.18,1,114 +13362486,Bedroom in Park Slope Apartment,75828613,Colin,Brooklyn,Park Slope,40.67148,-73.97786,Private room,40,3,2,2016-08-02,0.06,1,0 +13369841,Charming LES Backyard w/ brick exposed large Bdrm,15318852,Patrick,Manhattan,Lower East Side,40.71775,-73.98612,Private room,99,2,22,2017-06-18,0.59,1,365 +13370053,Spacious creative waterfront loft,75915628,Farrah,Brooklyn,Greenpoint,40.73431,-73.95928,Entire home/apt,140,2,3,2016-12-21,0.08,1,0 +13370393,Charming.,13373889,Aaron,Staten Island,Concord,40.60556,-74.08274,Entire home/apt,150,7,1,2018-11-04,0.12,2,83 +13371473,Cozy Bedroom in Spacious Apt in East Williamsburg,185394,Gregory,Brooklyn,Williamsburg,40.70478,-73.9435,Private room,75,1,2,2016-06-27,0.05,2,0 +13371633,Charming & Spacious 1 BR; Steps to Brooklyn Museum,61265293,Robert,Brooklyn,Crown Heights,40.67383,-73.961,Private room,55,3,27,2019-06-19,0.80,1,48 +13371699,Beautiful Spacious Apartment near Prospect Park,2455767,Althea,Brooklyn,Windsor Terrace,40.65867,-73.97971,Entire home/apt,145,2,78,2019-06-29,2.18,1,314 +13372847,Studio apartment in Cobble Hill,75947654,Elise,Brooklyn,Carroll Gardens,40.68468,-73.99372,Entire home/apt,95,4,92,2019-06-30,2.56,1,39 +13372860,Cozy and simple Bedstuy studio right by the train,16755566,Ashton,Brooklyn,Bedford-Stuyvesant,40.69076,-73.92886,Entire home/apt,69,4,5,2016-11-23,0.13,1,0 +13373300,Sunny Apt in Historic Cobble Hill Brownstone,8190806,Lauren Wesley,Brooklyn,Cobble Hill,40.6885,-73.99443,Entire home/apt,175,5,53,2019-06-24,1.44,1,99 +13373898,Sunny Designer Gem for Families & Couples! #10304,8961407,Jamie,Manhattan,Harlem,40.8057,-73.94689,Entire home/apt,350,3,46,2019-06-30,1.30,3,297 +13374115,Charming 1 Bedroom in Harlem,17078225,Sarah-Jane,Manhattan,Harlem,40.81551,-73.94916,Private room,119,2,16,2017-12-30,0.44,2,0 +13374738,Beautifully Sunlight Harlem 2 Bedroom Apt,75968218,Carole,Manhattan,Harlem,40.80151,-73.95346,Private room,160,4,3,2016-08-04,0.08,1,0 +13375642,Huge sunny bedroom with private bathroom,1949282,Kyla,Brooklyn,Bushwick,40.69407,-73.91124,Private room,55,2,38,2019-04-16,1.51,5,0 +13375898,"PERFECT LOCATION, 15 MINUTES TO MANHATTAN",75981937,Cem,Queens,Astoria,40.76002,-73.92252,Private room,48,1,47,2019-06-22,1.27,2,71 +13375936,Private room in the heart of West Harlem,33248485,Wyatt,Manhattan,Harlem,40.80321,-73.9521,Private room,85,1,9,2016-07-19,0.24,1,0 +13376196,Great Location - Whole apt - 1 bedroom,73734452,Evan,Manhattan,Upper East Side,40.762,-73.96045,Entire home/apt,97,5,3,2017-06-16,0.08,1,0 +13376767,Sun-drenched corner apartment in East-Williamsburg,279989,Moenen,Brooklyn,Williamsburg,40.70489,-73.94112,Entire home/apt,110,6,18,2019-06-15,0.52,1,0 +13376886,LARGE RENOVATED STUDIO - Upper Manhattan,71496163,Landon,Manhattan,East Harlem,40.79747,-73.94106,Entire home/apt,91,1,1,2016-06-17,0.03,1,0 +13376891,Super Vibey Hang,16836964,Brendan,Brooklyn,Fort Greene,40.68877,-73.97795,Entire home/apt,150,2,1,2016-06-18,0.03,1,0 +13376968,Spacious Luxury In the Heart of the East Village,8278179,Will,Manhattan,East Village,40.72886,-73.98834,Private room,80,1,4,2016-07-29,0.11,1,0 +13377443,"Big, airy room in beautiful apartment",76004481,Sylvia,Brooklyn,Flatbush,40.65251,-73.96325,Private room,60,4,1,2017-07-03,0.04,1,0 +13377893,Spacious Room in Bushwick,74339725,Giselle,Brooklyn,Bushwick,40.69539,-73.9285,Private room,55,7,7,2019-06-18,0.19,1,0 +13378096,Bushwick 1 Bedroom,16626798,Chelsea,Brooklyn,Bushwick,40.70222,-73.92947,Private room,65,21,0,,,1,0 +13378177,Art-filled Mid-Century Modern Apartment,3686511,Kris,Brooklyn,Prospect-Lefferts Gardens,40.66128,-73.94797,Entire home/apt,163,3,16,2019-05-28,0.52,1,154 +13378207,Sunny - Private Room in Park Slope South,63227509,Alan,Brooklyn,Sunset Park,40.65886,-73.99054,Private room,60,2,0,,,1,41 +13378410,Hamilton Heights Abode,68600221,Victoria,Manhattan,Harlem,40.82429,-73.95225,Private room,54,7,2,2017-06-18,0.05,1,0 +13378438,Private BR + Bathroom in brand new BK brownstone!,28283747,Allison,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94686,Private room,46,7,1,2016-07-31,0.03,1,0 +13378609,Experience New York from our place. (Free parking),45937956,Fahim,Queens,Jackson Heights,40.75087,-73.89365,Entire home/apt,125,2,32,2019-06-09,0.85,2,50 +13378820,Sunlit 3BR Urban Retreat & Parking near City &JFK,10859834,Brian,Brooklyn,East New York,40.66405,-73.85676,Entire home/apt,150,2,179,2019-07-02,5.13,1,300 +13378919,Bright & Cozy Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63909,-74.01815,Private room,47,2,87,2018-07-23,2.32,4,0 +13379269,A sunny bedroom in a spacious loft,731601,Idil,Queens,Astoria,40.77159,-73.93089,Private room,40,90,0,,,2,0 +13379511,Charming Brownstone in Clinton Hill,76037379,Josh+Emily,Brooklyn,Clinton Hill,40.68594,-73.96293,Entire home/apt,120,3,2,2016-11-28,0.05,1,0 +13379688,Harlem Charmer,76040827,Gregory,Manhattan,Harlem,40.80184,-73.95591,Private room,67,1,8,2019-01-01,0.23,1,0 +13380662,Entire Floor/1 Min from N Train/Private Entrance,61393656,Jamie,Brooklyn,Borough Park,40.62023,-73.99103,Entire home/apt,73,1,65,2019-06-22,3.49,1,3 +13384425,Beautiful townhouse near Prospect Park,43242084,Petra,Brooklyn,Prospect-Lefferts Gardens,40.656,-73.95851,Entire home/apt,128,2,2,2019-07-07,2,1,133 +13386091,Modern 3bd close to everything,75793151,Ella,Brooklyn,Bensonhurst,40.61448,-74.00486,Entire home/apt,121,2,24,2019-04-21,0.64,1,14 +13386152,Penthouse apartment. Lots of sun and great views.,9782292,Joshua,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95316,Entire home/apt,250,2,3,2017-08-15,0.08,1,0 +13386360,Cozy - Perfect Location Studio LES,76103506,Catalina,Manhattan,Lower East Side,40.71962,-73.98241,Entire home/apt,80,1,4,2016-07-03,0.11,1,0 +13387453,"Cute, clean studio in Central Harlem",23273780,Rahel,Manhattan,Harlem,40.81619,-73.93798,Entire home/apt,77,1,2,2016-07-06,0.05,1,0 +13387572,RENOVATED STUDIO FOR 2~EAST 60TH STREET,76104209,Rated,Manhattan,Upper East Side,40.76113,-73.96092,Entire home/apt,139,30,0,,,33,362 +13388210,Midtown West Private Sublet - Best Value,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76334,-73.98909,Entire home/apt,117,30,9,2019-04-30,0.40,91,105 +13388285,"Newly renovated, sunny room with a private bath",39808438,Easton,Brooklyn,Bushwick,40.68936,-73.916,Private room,75,3,23,2018-08-19,0.62,5,0 +13388649,Spacious Private Home - 20m to Manhattan,1544804,Michelle,Queens,Astoria,40.76406,-73.90769,Entire home/apt,99,1,185,2019-06-19,5.28,1,211 +13388929,Sunny and Spacious 3 Bedroom Apt in West Village!,43433174,Stephen,Manhattan,West Village,40.73426,-74.00236,Entire home/apt,279,3,2,2016-09-05,0.05,1,0 +13389082,Ex-Artist Studio w/ Huge Skylight Guest Suite,9679974,Eddie,Manhattan,East Village,40.72966,-73.98187,Entire home/apt,140,2,55,2018-07-02,1.47,1,0 +13389177,Spacious East 39th Street Furnished Studio,2856748,Ruchi,Manhattan,Murray Hill,40.74637,-73.97207,Entire home/apt,200,30,0,,,49,364 +13389280,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Theater District,40.76375,-73.98387,Entire home/apt,257,30,0,,,87,364 +13389756,Spacious Light Palace in Heart of Williamsburg,6574489,Jilly,Brooklyn,Williamsburg,40.71769,-73.95275,Private room,95,2,9,2017-03-16,0.24,1,0 +13391063,Minimalist bedroom with garden access,51765884,Caitlin,Brooklyn,Greenpoint,40.72523,-73.95218,Private room,65,5,0,,,1,0 +13391165,"Gorgeous Room in EV, Private Patio, Open Kitchen!",34706197,Imri,Manhattan,East Village,40.72768,-73.98739,Private room,149,4,25,2019-06-13,0.68,2,156 +13392143,Astoria: 2 Weeks July 1st - 14th,39175915,Wesley,Queens,Ditmars Steinway,40.77643,-73.91364,Private room,29,14,0,,,1,0 +13392392,Sunny Apartment with Private Roof (East Village),10032007,Zachary,Manhattan,East Village,40.72591,-73.98917,Entire home/apt,250,1,2,2016-10-12,0.05,1,0 +13392646,Prime Beautiful Brooklyn Brownstone,76173252,Victoria,Brooklyn,Carroll Gardens,40.68132,-73.99757,Entire home/apt,150,2,14,2017-11-25,0.38,1,0 +13392858,A Small Kingdom in the Clouds,16437254,Benjamin,Brooklyn,Boerum Hill,40.68724,-73.98497,Entire home/apt,120,30,7,2019-06-19,0.38,21,342 +13392941,Private Bedroom w/ Queen Bed in Financial District,23335662,Kyle,Manhattan,Financial District,40.70514,-74.00921,Private room,85,1,3,2016-06-30,0.08,1,0 +13393092,Deluxe 1-Bedroom near Empire State Building!,30283594,Kara,Manhattan,Midtown,40.75186,-73.97062,Entire home/apt,259,30,0,,,121,184 +13394065,Beautiful and convenient room in Long Island city!,35029020,Danai,Queens,Long Island City,40.75174,-73.92967,Entire home/apt,90,7,0,,,1,0 +13394404,Charming Cozy 1 bedroom wood fl plenty of closets,29899972,Antonio,Queens,Astoria,40.75855,-73.91616,Entire home/apt,74,2,0,,,1,0 +13394558,MY ADORABLE BOWERY PLACE,76192815,Sam,Manhattan,Little Italy,40.71938,-73.9952,Entire home/apt,90,31,9,2019-02-20,0.24,5,221 +13394748,Cozy Spacious Double Bed #2A Near JFK & J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69628,-73.85255,Private room,45,1,141,2019-07-03,3.77,4,287 +13395084,Family getaway.,74789787,Sabina,Brooklyn,Clinton Hill,40.69558,-73.96872,Private room,100,7,2,2016-08-13,0.06,1,0 +13395329,Garden Flat Next to Central Park w/ Large Terrace,71679540,Brook,Manhattan,Morningside Heights,40.80273,-73.95924,Private room,89,1,131,2019-07-04,3.62,1,165 +13395362,Updated 1 Bedroom Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76409,-73.99122,Entire home/apt,199,30,4,2018-03-31,0.14,91,0 +13395513,Entire apartment in the heart of SOHO,74994238,Godfrey,Manhattan,SoHo,40.7207,-73.99815,Entire home/apt,76,30,10,2019-06-11,0.31,1,30 +13395955,Adorable Prospect Heights 1 Bedroom,34468399,Nancy,Brooklyn,Prospect Heights,40.67649,-73.96697,Entire home/apt,143,31,3,2018-07-21,0.08,1,0 +13396285,Kawaii Gamer's Paradise in Brooklyn!,37555641,Jessy,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94636,Shared room,40,1,31,2017-01-01,0.91,1,0 +13396969,"1 Bedroom apartment, heart of LES",96755,Hope,Manhattan,Chinatown,40.71579,-73.99158,Entire home/apt,125,4,31,2019-07-07,0.84,1,7 +13397316,Lovely Gem in Hell's Kitchen Midtown Manhattan,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76413,-73.99301,Entire home/apt,180,2,0,,,3,3 +13397762,"private oasis in sunnyside, queens",20167238,Erika,Queens,Sunnyside,40.74272,-73.92347,Entire home/apt,110,2,4,2017-07-27,0.11,1,0 +13397781,Sunny South Williamsburg Apartment,3386627,Sarah,Brooklyn,Williamsburg,40.71035,-73.95332,Entire home/apt,185,3,0,,,1,0 +13397786,"Huge bright room with own bathroom, Williamsburg",4445885,Alexandra,Brooklyn,Williamsburg,40.71685,-73.94668,Private room,85,5,0,,,1,0 +13398011,Modern East Village Apt Great Location 1-3 Bdrms,69050011,Kareem,Manhattan,East Village,40.72563,-73.99118,Entire home/apt,300,2,16,2018-05-06,0.43,1,0 +13398340,Historic Townhouse Apartment with Garden Oasis,5917464,Greg & Adriane,Brooklyn,Bedford-Stuyvesant,40.68697,-73.94506,Entire home/apt,99,2,148,2019-07-05,3.98,1,29 +13398348,Your Own Apartment corner of Bedford and Grand!,1570170,Kristina,Brooklyn,Williamsburg,40.7157,-73.95983,Entire home/apt,125,3,97,2019-06-24,2.65,2,216 +13398406,"Big Room, Big Living Room, Rooftop Hot Tub",76244490,Kunal,Brooklyn,Williamsburg,40.71605,-73.9518,Shared room,35,15,0,,,1,0 +13398837,Master Bedroom next to cute park on the LES,22166692,Kevin,Manhattan,Lower East Side,40.72057,-73.99185,Private room,80,5,27,2018-08-26,0.73,1,0 +13399051,"Modern Apartment LES, 2mn to train",4027689,Miguel,Manhattan,Lower East Side,40.71518,-73.98953,Private room,150,3,12,2017-10-30,0.32,2,0 +13400181,Perfect Apt In The Heart of Bushwick,75461641,John,Brooklyn,Bushwick,40.6979,-73.92852,Entire home/apt,90,3,0,,,1,0 +13404021,"One bedroom is Bushwick, near everything",76303329,Ana,Brooklyn,Bushwick,40.69405,-73.91403,Private room,40,1,1,2016-07-01,0.03,1,0 +13405322,Charming Free Standing Wooded Carriage House,76316036,Tobias,Brooklyn,Crown Heights,40.67587,-73.95467,Entire home/apt,250,7,3,2017-10-02,0.13,1,0 +13406622,CHELSEA 3 BEDROOM APARTMENT WITH PRIVATE GARDEN!!!,1501090,Betsy,Manhattan,Chelsea,40.74339,-73.99642,Entire home/apt,450,2,139,2019-06-20,3.73,1,221 +13407067,Carib breeze vybz,66309874,Rich,Brooklyn,Cypress Hills,40.68684,-73.87834,Private room,50,3,12,2018-12-08,0.33,3,90 +13407328,Spacious 1 Bedroom Apartment in Prospect Heights,23244570,Nell,Brooklyn,Prospect Heights,40.67318,-73.9655,Entire home/apt,75,1,5,2016-06-28,0.13,1,0 +13407354,COZY 1BR IN MIDTOWN EAST!,6455254,Alex,Manhattan,Midtown,40.75352,-73.96807,Entire home/apt,139,2,102,2019-06-23,2.74,1,235 +13407476,Spacious Midtown East 2 Bedroom,61391963,Corporate Housing,Manhattan,Midtown,40.75608,-73.96895,Entire home/apt,200,30,2,2018-03-31,0.12,91,101 +13407615,Lovely Apt. in Heart of Brooklyn,20754497,Robert,Brooklyn,Crown Heights,40.66703,-73.94054,Private room,65,1,101,2019-05-28,2.70,1,309 +13408222,Remsen Village Rental II,27277459,Dawn,Brooklyn,East Flatbush,40.65466,-73.9218,Entire home/apt,115,4,89,2019-06-22,2.44,2,282 +13408765,Upper East Side Getaway,51001469,Taylor,Manhattan,East Harlem,40.78749,-73.9504,Private room,70,1,4,2016-07-06,0.11,1,0 +13409920,"Simple, Spacious Studio With Rooftop Access",21573063,Deena,Brooklyn,Bedford-Stuyvesant,40.68547,-73.93209,Entire home/apt,50,1,2,2016-06-27,0.05,1,0 +13410276,Quiet Room + Living Room in the Upper West Side,544621,Eduardo,Manhattan,Upper West Side,40.78378,-73.97845,Private room,85,2,4,2017-01-01,0.11,1,0 +13410478,Artsy Studio / 1 Bedroom in the Heart of Chelsea,43311385,John,Manhattan,Chelsea,40.74921,-74.00416,Entire home/apt,275,3,1,2016-06-30,0.03,1,0 +13410813,1 br apartment(3’ to train)+access to coworking,43375242,Gabriela,Queens,Long Island City,40.7537,-73.93186,Entire home/apt,120,3,40,2019-06-30,1.45,2,365 +13411035,Charming 3 BR in Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76327,-73.98937,Entire home/apt,185,30,4,2018-08-31,0.13,91,0 +13411560,Cozy and charming studio in UWS,26676357,Connie,Manhattan,Upper West Side,40.77856,-73.98278,Entire home/apt,150,7,2,2017-01-08,0.05,1,0 +13411711,Beautiful 3 BR apartment steps from Central Park,76383917,Oded,Manhattan,Harlem,40.80521,-73.95213,Entire home/apt,145,31,3,2017-08-17,0.08,1,0 +13411759,Large 1 Bedroom close to Prospect Park,76353208,Jill,Brooklyn,South Slope,40.66018,-73.98074,Entire home/apt,130,2,1,2016-06-25,0.03,1,0 +13412231,1 - Bedroom APT in Bushwick BK,76193714,Heath,Brooklyn,Bushwick,40.68134,-73.9072,Entire home/apt,150,3,0,,,1,0 +13412918,"Affordable, Nice, Clean 1 BR Apt, Upper Manhattan.",76397212,Utku,Manhattan,Marble Hill,40.8754,-73.91263,Entire home/apt,88,1,2,2016-08-10,0.06,1,0 +13413386,Bed-Stuy Gem,62409721,Robert,Brooklyn,Bedford-Stuyvesant,40.69002,-73.9518,Private room,75,1,0,,,1,0 +13413420,simple room,15380275,Sierra64,Brooklyn,Bedford-Stuyvesant,40.68825,-73.93433,Private room,38,7,0,,,1,0 +13414523,Beautiful Bldg near Columbia Uni,76415404,Omar,Manhattan,Upper West Side,40.8021,-73.96629,Private room,64,4,1,2016-06-16,0.03,1,0 +13415100,Park Avenue 3 Bedroom 1.5 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74439,-73.98125,Entire home/apt,185,29,1,2017-05-31,0.04,31,139 +13415535,Large 1BR in Chelsea. Subw on block,3248595,Kai,Manhattan,Chelsea,40.74653,-73.99632,Entire home/apt,165,1,31,2017-10-28,0.90,1,358 +13415850,A Bay Window on Brooklyn,10273704,Matt,Brooklyn,Fort Greene,40.68831,-73.97549,Entire home/apt,200,7,3,2018-01-03,0.09,2,0 +13415925,Stay blocks from Yankee Stadium,11017415,Emmett,Bronx,Concourse Village,40.83041,-73.91838,Entire home/apt,75,1,0,,,1,0 +13415952,Large Bedroom in amazing Apt - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70821,-73.95001,Private room,90,2,24,2018-01-03,0.65,3,0 +13416582,Super cozy studio- the heart of Upper West Side,76443791,Amine,Manhattan,Upper West Side,40.77643,-73.98262,Entire home/apt,140,3,12,2017-08-13,0.33,1,0 +13416840,Modern Luxury apt in Design Centric Building,65590212,Andrew,Brooklyn,Downtown Brooklyn,40.69805,-73.9846,Entire home/apt,150,2,16,2016-11-16,0.43,1,0 +13417071,Sunny 1 bd apartment - Historic Brownstone Apt #2,76451668,Juan,Brooklyn,Bedford-Stuyvesant,40.68444,-73.9287,Entire home/apt,92,30,17,2019-04-30,0.50,2,113 +13417080,"Private Room, 2 beds, bath, Union Square location",44350279,Jp,Manhattan,Gramercy,40.73578,-73.98706,Private room,100,2,79,2019-06-05,2.12,4,243 +13417267,Park Slope Garden Lovers Duplex,65672074,Miriam,Brooklyn,South Slope,40.66781,-73.99024,Entire home/apt,135,7,1,2016-08-05,0.03,1,21 +13417410,Zions Destiny Home away from Home !,76453466,Devon,Brooklyn,East Flatbush,40.66167,-73.92854,Entire home/apt,45,1,112,2019-06-10,2.99,1,244 +13417723,"Big 4 Bedroom Apartment near Subway, All Renovated",2988712,Sasha,Bronx,Claremont Village,40.8357,-73.91023,Entire home/apt,110,90,11,2018-08-23,0.30,7,77 +13418942,A Touch of Modern in Cultural NYC,76477851,Andre,Manhattan,Harlem,40.83048,-73.95009,Private room,250,1,2,2019-06-23,0.05,1,358 +13419864,Massive Room available in Luxury UES Building,76487242,Naga,Manhattan,Upper East Side,40.78521,-73.95006,Private room,154,1,0,,,1,0 +13422992,Gorgeous Lower East Side Walk Up & Roof,11274802,Jeremy,Manhattan,Lower East Side,40.72079,-73.98965,Private room,175,1,35,2019-06-22,3.19,1,19 +13424027,LOFT-LIKE FLOOR THRU BROWNSTONE LIGHT SPACIOUS,4991034,Jyllian,Brooklyn,Prospect Heights,40.67735,-73.96581,Entire home/apt,175,7,5,2018-08-28,0.14,1,16 +13424903,Share a room Lower East Side,65942440,Tk,Manhattan,Lower East Side,40.71754,-73.9868,Shared room,50,1,0,,,1,0 +13424996,Breezy Bushwick Apartment with Backyard,4392549,Eleanor,Brooklyn,Bushwick,40.69507,-73.92081,Entire home/apt,99,2,4,2016-07-25,0.11,1,0 +13425518,Beautiful studio apt. near Hudson River Park!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76066,-73.99922,Entire home/apt,199,30,0,,,121,365 +13426171,Stunning New High-Rise Apartment - 1 Bedroom NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76207,-73.99937,Entire home/apt,239,30,0,,,121,365 +13426681,-Luxury NYC 1 Bedroom nearby Theater District!,30283594,Kara,Manhattan,Hell's Kitchen,40.76216,-73.99775,Entire home/apt,235,30,1,2017-08-02,0.04,121,365 +13427044,Ideal Bushwick Rental,25549474,Ruby,Brooklyn,Bushwick,40.70298,-73.92203,Private room,45,5,1,2016-07-08,0.03,1,0 +13427412,Stunning 1 Bedroom Apartment. 8 minutes to Ferry,3156684,Michael And Sandra,Staten Island,Tompkinsville,40.63163,-74.09297,Entire home/apt,85,2,110,2019-06-27,2.97,1,248 +13427591,Stunning 1 Bedroom Apt with Indoor Pool,30283594,Kara,Manhattan,Hell's Kitchen,40.76112,-73.99893,Entire home/apt,239,30,0,,,121,365 +13427658,Comfortable room 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77679,-73.91366,Private room,38,1,14,2019-06-30,1.46,3,24 +13427702,Cozy Room for 2 in Astoria!,11791633,Neel,Queens,Ditmars Steinway,40.77437,-73.91854,Private room,65,1,1,2016-07-13,0.03,1,0 +13427968,Hamilton Heights Haven with Private Garden,78258,Maija,Manhattan,Harlem,40.82291,-73.94958,Entire home/apt,79,7,42,2018-08-05,1.14,1,0 +13428478,Casa De Grattan,76566529,Brian,Brooklyn,Williamsburg,40.70624,-73.92861,Shared room,60,2,0,,,1,0 +13429535,Sunny Williamsburg Haven,3078690,Zack,Brooklyn,Williamsburg,40.71256,-73.94785,Private room,80,5,0,,,1,0 +13429562,**Stunning 1 bedroom Apt. + Amazing amenities,30283594,Kara,Manhattan,Hell's Kitchen,40.76258,-73.99771,Entire home/apt,239,30,1,2018-07-14,0.08,121,179 +13429591,"West 48th Street, Lux 1bd Apt near Rockefeller Ctr",22541573,Ken,Manhattan,Midtown,40.75695,-73.97988,Entire home/apt,279,30,0,,,87,332 +13429684,Private room in Bushwick,76578903,Mason,Brooklyn,Bushwick,40.69941,-73.92833,Private room,35,10,13,2018-04-13,0.37,1,0 +13430012,Gorgeous 1 Bedroom NYC + W/D in the Unit,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-73.99822,Entire home/apt,239,30,1,2017-08-08,0.04,121,365 +13430210,Prime Gramercy Apartment w Balcony,4027856,Omar,Manhattan,Flatiron District,40.74148,-73.98493,Entire home/apt,200,1,0,,,1,0 +13430458,Fun & Funky 2nd floor of loft.,75275467,Yaron,Bronx,Port Morris,40.80842,-73.93136,Private room,33,2,63,2019-06-10,1.75,4,145 +13430483,Lux 1-BR Apt near Port Authority/Times Square,30283594,Kara,Manhattan,Hell's Kitchen,40.76196,-73.99803,Entire home/apt,239,30,1,2017-06-20,0.04,121,365 +13430794,Lux 1-BR Apt In Midtown West-prime location!,30283594,Kara,Manhattan,Hell's Kitchen,40.76112,-73.99887,Entire home/apt,239,30,2,2017-07-04,0.07,121,365 +13431257,Luxurious 1BR Apt in Midtown West,30283594,Kara,Manhattan,Hell's Kitchen,40.76103,-73.99745,Entire home/apt,239,30,0,,,121,365 +13431552,Lincoln Center Area 1 Bed,3191545,Kyle,Manhattan,Hell's Kitchen,40.75833,-73.99019,Entire home/apt,229,30,2,2017-06-18,0.08,23,0 +13431664,Private Condo Room w/ Patio,74727409,Agustina,Bronx,Longwood,40.81937,-73.90978,Private room,45,2,68,2019-05-30,1.83,1,156 +13431793,"Luxurious 1BR Apt near Times Square, river views!",30283594,Kara,Manhattan,Hell's Kitchen,40.76213,-73.99972,Entire home/apt,239,30,1,2016-11-01,0.03,121,365 +13431961,Amazing Brownstone Studio @ Central Park West,76601346,Alexandrinho,Manhattan,Upper West Side,40.7847,-73.97155,Entire home/apt,179,2,98,2019-06-21,2.71,1,151 +13432015,"Stunning 1 Bedroom Apt. in NYC, w/d in the unit!",30283594,Kara,Manhattan,Hell's Kitchen,40.76201,-73.99755,Entire home/apt,239,30,0,,,121,365 +13432348,River Views! - Lux 1BR Apt near Midtown,30283594,Kara,Manhattan,Hell's Kitchen,40.76108,-73.99812,Entire home/apt,239,30,1,2018-01-13,0.06,121,357 +13432434,Entire floor in a brownstone.,9617573,Antonia,Manhattan,East Harlem,40.79751,-73.93271,Entire home/apt,107,3,0,,,1,0 +13432549,Private Bedroom&Bathroom in large Chinatown duplex,10870019,Courtney-Brooke,Manhattan,Chinatown,40.71377,-73.99464,Private room,125,1,0,,,1,0 +13432828,Elegant Large One Bed / 1.5 Bathroom- UWS,3469064,Amy,Manhattan,Upper West Side,40.7801,-73.97917,Entire home/apt,230,7,0,,,1,0 +13433027,Holistic Health Stay New York,69632344,Sister Shai,Queens,South Ozone Park,40.67866,-73.8068,Entire home/apt,100,5,44,2019-05-19,1.22,1,350 +13433684,"Cozy room w/AC, 2 blocks from L train",64440476,Matt,Brooklyn,Williamsburg,40.70353,-73.9344,Private room,55,2,7,2016-09-05,0.19,1,0 +13433870,Bright Bedroom with views of city,31162653,Laszlo,Brooklyn,Bushwick,40.7025,-73.92935,Private room,95,2,3,2018-01-03,0.09,1,0 +13434493,Private Trendy Bushwick Loft,74903132,Cassidy,Brooklyn,Bushwick,40.69375,-73.92123,Private room,41,3,2,2016-07-27,0.05,1,0 +13434959,1 Bd 10 mins to Manhattan Steps to Prospect Park,2559697,Steven,Brooklyn,Prospect-Lefferts Gardens,40.66058,-73.96132,Entire home/apt,40,2,25,2019-06-16,0.70,1,223 +13435285,Times Square Manhattan One Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75892,-73.99146,Entire home/apt,150,30,2,2017-05-21,0.06,23,213 +13435688,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76369,-73.98476,Entire home/apt,150,30,1,2019-05-31,0.77,23,335 +13436088,• Eye Catching Views | Luxurious 1 Bedroom •,3191545,Kyle,Manhattan,Midtown,40.76569,-73.98281,Entire home/apt,219,30,8,2017-06-30,0.30,23,362 +13436132,Bright studio in the heart of the east village,4996789,Christine,Manhattan,East Village,40.72741,-73.97529,Entire home/apt,142,1,146,2019-06-25,3.92,1,78 +13436258,One Bedroom Apartment in TownHouse,5944946,Nicole,Bronx,Concourse,40.81949,-73.92913,Entire home/apt,99,1,103,2019-06-18,2.87,1,264 +13436489,Small and Cozy Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63974,-74.01944,Private room,41,5,81,2018-07-22,2.18,4,0 +13437219,"Cozy, Private West Harlem Hamilton Heights Bedroom",3143680,Andrew,Manhattan,Harlem,40.8259,-73.94962,Private room,48,7,2,2017-03-24,0.06,1,0 +13440481,Magnificent Apartment Near the Central Park 4BDR!,17385374,Dennis J.,Manhattan,Upper East Side,40.76642,-73.97107,Private room,301,3,0,,,1,83 +13441680,Private Bedroom in a 3BR Apartment,7141050,Mayra,Manhattan,Inwood,40.86541,-73.92935,Private room,52,2,10,2018-06-15,0.28,2,0 +13442932,Modern and Clean 1 bed w/small balcony,29834506,Paul,Brooklyn,Greenpoint,40.7323,-73.95261,Entire home/apt,150,2,3,2017-10-08,0.12,1,0 +13443640,Deluxe 3-BR + 3.5Bath with sweeping city views!!,30283594,Kara,Manhattan,Midtown,40.75143,-73.96973,Entire home/apt,1100,120,0,,,121,184 +13443722,Cosy 1 bdr in Midtown West,76739836,Alisa,Manhattan,Hell's Kitchen,40.76425,-73.98654,Private room,160,1,10,2017-04-16,0.27,1,0 +13443794,"Convenient, cozy, and cheap room in Bushwick",60962117,Sayre,Brooklyn,Bushwick,40.68846,-73.90847,Private room,45,5,2,2016-06-24,0.05,1,0 +13444490,"Bright, spacious one bedroom in the East Village",1671824,Zoe,Manhattan,East Village,40.72471,-73.98891,Entire home/apt,106,3,0,,,1,0 +13444818,2 beds PH balcony & rooftop close to Manhattan,38915391,Clair&Charles,Queens,Elmhurst,40.73888,-73.87299,Entire home/apt,178,30,83,2019-06-30,2.22,1,342 +13444884,Manhattan Bedroom | Skyline Views,3191545,Kyle,Manhattan,Kips Bay,40.74448,-73.97776,Entire home/apt,176,30,4,2018-04-30,0.15,23,0 +13444902,Private cosy room Harlem,47073683,Cam,Manhattan,Harlem,40.81591,-73.93995,Private room,70,3,7,2016-10-10,0.19,1,0 +13445020,Quintessential Williamsburg Loft,36123030,Lucy,Brooklyn,Williamsburg,40.71303,-73.96574,Entire home/apt,190,2,9,2017-08-12,0.25,1,2 +13445027,Large sunny Bedroom in Brooklyn Loft,66786569,Raphaëlle,Brooklyn,Williamsburg,40.70475,-73.93663,Private room,62,2,5,2017-12-30,0.13,1,0 +13445935,Greenpoint Oasis,30678610,Joel,Brooklyn,Greenpoint,40.72673,-73.95406,Entire home/apt,175,2,1,2016-07-25,0.03,1,0 +13446050,"Upper West Side, Manhattan, NY",13752584,Raoul,Manhattan,Upper West Side,40.80289,-73.96741,Entire home/apt,125,6,2,2016-08-26,0.05,1,0 +13446124,Cozy front room in a 2 bedroom family apt near CU,18419593,Anna & Keith,Manhattan,Morningside Heights,40.81353,-73.95878,Private room,76,2,126,2019-06-14,3.40,1,12 +13446580,Casually chic 2+bedroom townhouse,50477855,Nancy And David,Brooklyn,South Slope,40.66378,-73.98621,Entire home/apt,225,5,2,2016-10-10,0.05,1,0 +13446921,Sunny Room with Back Yard in Brooklyn,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65211,-73.97872,Private room,65,1,13,2016-12-11,0.35,4,0 +13449748,Rent my Artist Studio,13567212,Justin,Brooklyn,Bushwick,40.69161,-73.90563,Private room,70,3,5,2018-01-02,0.14,1,0 +13449844,Upper West Side Apt. w/ Roof Deck,76809352,Kent,Manhattan,Upper West Side,40.78305,-73.97757,Entire home/apt,240,30,4,2017-01-02,0.11,1,0 +13451379,Large & sunny private bedroom in a townhouse.,24459217,Lee,Queens,Long Island City,40.74275,-73.95513,Private room,70,3,12,2018-09-29,0.42,1,77 +13451599,"Bright, Spacious 1 Bedroom in the East Village",14055452,Jessica,Manhattan,East Village,40.72118,-73.98066,Entire home/apt,130,2,1,2016-08-11,0.03,1,0 +13451720,One bedroom near Columbia University,44269461,Xier,Manhattan,Upper West Side,40.79936,-73.96105,Private room,50,1,1,2016-06-10,0.03,1,0 +13451786,Large comfy bright bedroom near sub,64748382,Marta,Brooklyn,Bedford-Stuyvesant,40.69091,-73.95435,Private room,70,3,61,2019-06-29,1.63,1,190 +13451943,Private Room in Bushwick Parlor Apartment,12524253,Kelly,Brooklyn,Williamsburg,40.70667,-73.92668,Private room,51,14,0,,,1,0 +13452384,Newly renovated private master & bathroom,2489602,Julian,Manhattan,East Village,40.72828,-73.97972,Private room,149,2,0,,,1,0 +13452474,Charming Studio-Columbus Circle/Hell’s Kitchen,16809858,Arman,Manhattan,Hell's Kitchen,40.76733,-73.98607,Entire home/apt,169,10,6,2018-10-14,0.17,1,280 +13452799,Small and cozy room in Williamsburg 2-Bedroom apt.,76849055,Mikalena,Brooklyn,Williamsburg,40.70885,-73.95349,Private room,50,1,3,2016-07-20,0.08,1,0 +13453023,"King Bed, Super Host, Near Central/Riverside Parks",17848380,Yi Qun,Manhattan,Upper West Side,40.79875,-73.97128,Private room,120,1,19,2019-05-10,0.57,3,360 +13453271,"NEAR CENTRAL PARK, TIMES SQUARE, COLUMBIA UNIV.",17848380,Yi Qun,Manhattan,Upper West Side,40.79669,-73.97126,Private room,120,1,12,2019-05-19,0.35,3,338 +13459473,Spacious room in Midtown East Manhattan,956383,Andrew,Manhattan,Midtown,40.75896,-73.96439,Private room,105,7,0,,,1,0 +13459691,Private Bedroom in Williamsburg!,8569221,Andi,Brooklyn,Williamsburg,40.71696,-73.95727,Private room,90,5,87,2019-03-24,2.43,2,305 +13459841,Sunny Williamsburg w Balcony - Long Term Rental,4841046,Jesse,Brooklyn,Williamsburg,40.71216,-73.95853,Entire home/apt,105,15,30,2019-05-26,0.84,1,85 +13460498,Beautiful Brownstone Parlor Floor Apartment,76931387,Kris,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95479,Entire home/apt,130,2,16,2019-01-01,0.59,1,0 +13460534,Amazing Luxury 1 Bedroom Apartment,3191545,Kyle,Manhattan,Kips Bay,40.74375,-73.97774,Entire home/apt,191,30,0,,,23,362 +13461123,Cozy Brooklyn apartment in Brownstone,406987,Lau,Brooklyn,Bedford-Stuyvesant,40.69261,-73.95069,Entire home/apt,100,4,3,2016-09-23,0.08,1,0 +13461289,Luxurious Studio at MidTown Manhattan,22462003,Tony,Manhattan,Midtown,40.74754,-73.98741,Entire home/apt,288,5,2,2017-07-21,0.06,1,0 +13461412,❤ of Midtown | Rooftop Terraces +,3191545,Kyle,Manhattan,Hell's Kitchen,40.76245,-73.98767,Entire home/apt,150,30,1,2017-06-02,0.04,23,332 +13461718,"Big, Nicely Decorated Loft: Great location & light",76940389,Matthew,Brooklyn,Williamsburg,40.71855,-73.96359,Private room,85,3,1,2016-06-26,0.03,1,0 +13463768,"Spacious, Affordable 1BR Apartment in Brooklyn",23121273,Samantha,Brooklyn,East Flatbush,40.64286,-73.94839,Entire home/apt,75,5,8,2019-04-10,0.22,1,0 +13464667,Private Room in Midtown Manhattan,18655157,Phuong,Manhattan,Midtown,40.74562,-73.98538,Private room,79,99,0,,,3,364 +13465546,Comfortable 2 BR in East Village/Cooper Square,9904775,Cooper,Manhattan,East Village,40.72627,-73.99145,Entire home/apt,200,3,27,2019-04-23,0.76,1,0 +13466084,welcome to my house,76998256,Laye,Manhattan,Harlem,40.82289,-73.9511,Entire home/apt,78,3,13,2016-08-15,0.35,1,0 +13466168,Like living in an art gallery.,12176919,Panya,Manhattan,Financial District,40.70711,-74.01437,Entire home/apt,234,2,4,2016-12-29,0.11,1,0 +13466302,Very central loft-like apartment on UWS,26297742,Valeria,Manhattan,Upper West Side,40.77981,-73.98499,Entire home/apt,325,5,7,2019-06-23,0.20,1,118 +13466561,Sunny and light bedroom in Downtown Manhattan,6980995,Dominik,Manhattan,Two Bridges,40.71159,-73.99884,Private room,119,1,3,2016-11-06,0.09,5,0 +13466663,Cozy bedroom in downtown Manhattan,6980995,Dominik,Manhattan,Civic Center,40.71259,-73.99897,Private room,95,1,10,2017-06-07,0.27,5,0 +13466842,"3bd apt w/yard in Astoria, 10 mins from Manhattan.",77011788,Dayne,Queens,Long Island City,40.75903,-73.92943,Entire home/apt,255,2,111,2019-07-06,3.18,1,268 +13467270,Sunnyside Modern Apartment that sleeps 4 people.,76840954,Angelo,Queens,Sunnyside,40.73691,-73.92826,Entire home/apt,125,2,17,2019-04-28,0.47,1,56 +13467433,This is NYC-Amazing Bedroom at Financial District,31373840,Emma,Manhattan,Financial District,40.70706,-74.00442,Private room,99,2,3,2016-07-11,0.08,1,0 +13467511,Modern 1-Bedroom Duplex Apartment in New York City,1711182,Allon,Manhattan,East Village,40.72229,-73.98175,Entire home/apt,175,3,27,2019-05-20,0.75,1,0 +13468421,PERFECT PRIVATE ROOM NYC,31376201,William,Queens,Kew Gardens,40.70789,-73.83333,Private room,150,1,0,,,3,364 +13468830,Brooklyn palace,1661309,Richard,Brooklyn,Bushwick,40.69887,-73.93564,Entire home/apt,75,6,9,2019-06-14,1.14,1,53 +13473267,Sunny Room in Bushwick Apartment,26517955,Breiana,Brooklyn,Bushwick,40.70273,-73.92724,Private room,50,5,1,2016-06-28,0.03,1,0 +13474455,Blueberries & Cream - Cozy 1 Bedroom Apt. #2,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9457,Entire home/apt,99,2,100,2019-06-16,3.27,3,308 +13475688,private entrance mini apt! part of my home,84557,Nat,Brooklyn,Bedford-Stuyvesant,40.68988,-73.93136,Entire home/apt,85,5,42,2019-06-20,1.27,1,52 +13476185,"1-bedroom in Midtown West, close to everything",6041148,Stephen,Manhattan,Hell's Kitchen,40.76571,-73.99101,Entire home/apt,137,3,2,2016-06-17,0.05,1,0 +13476685,"HOTTEST LOCATION! Cozy, convenient and chic.",2091070,Anna,Manhattan,Chelsea,40.7403,-74.0029,Entire home/apt,165,3,14,2018-08-19,0.38,1,10 +13477118,Artistic Escape in Brooklyn,77135414,Brett,Brooklyn,Williamsburg,40.70742,-73.94316,Entire home/apt,92,2,11,2019-06-23,0.31,1,7 +13477234,Midtown Luxurious 1 bedroom apt.,49939937,Julie,Manhattan,Midtown,40.7531,-73.97158,Entire home/apt,101,4,1,2016-07-06,0.03,1,0 +13477342,"Historical Sugar Hill, West Harlem",25461543,David,Manhattan,Harlem,40.83079,-73.9432,Private room,95,2,14,2019-05-14,0.38,2,89 +13477359,Clean bright room in spacious apt!,35824534,Mary,Manhattan,Morningside Heights,40.80728,-73.96634,Private room,119,1,4,2016-09-25,0.11,1,0 +13478244,Art-filled bright spacious 1 bedrm W'burg + deck,14942276,Susan,Brooklyn,Williamsburg,40.71983,-73.95675,Entire home/apt,195,2,145,2019-06-25,4.03,2,230 +13479302,Sunny 1BR in East Village,35309931,Eugene,Manhattan,Gramercy,40.73277,-73.98448,Entire home/apt,170,4,9,2018-06-25,0.24,1,0 +13479511,Midtown Studio near Central Park,25168709,Lili,Manhattan,Upper East Side,40.76184,-73.9569,Entire home/apt,150,4,45,2018-11-08,1.27,1,6 +13479649,Spacious 1br apartment with amazing views!,58639009,Jerrel,Manhattan,Harlem,40.81134,-73.94044,Entire home/apt,157,1,11,2016-08-01,0.29,1,0 +13480090,Private Queen Bedroom in Brooklyn,77179176,David,Brooklyn,Gravesend,40.60054,-73.99416,Private room,69,1,0,,,1,0 +13480134,cosy room with all confort,51329030,Zakaria,Bronx,Longwood,40.82716,-73.89911,Private room,30,1,11,2016-11-18,0.30,1,0 +13480162,"Williamsburg 2 Bed/2 Bath, close Subway/Waterfront",77162743,Bryan,Brooklyn,Williamsburg,40.71147,-73.95896,Entire home/apt,250,2,6,2016-09-11,0.16,1,0 +13481935,"Crown Heights, Franklin Ave- Private/Cozy Room!",60059749,Amanda,Brooklyn,Crown Heights,40.6737,-73.95669,Private room,40,3,3,2017-05-31,0.11,2,0 +13485043,"Beautiful hip location, with a light of sunshine.",16631094,Noemi,Queens,Ridgewood,40.70971,-73.89741,Entire home/apt,80,28,1,2018-09-15,0.10,1,365 +13485786,Private room in Stylish Williamsburg APT,5929127,Ange,Brooklyn,Williamsburg,40.71273,-73.96478,Private room,150,3,0,,,1,0 +13486680,Large room in Sugar Hill,16685925,Douglas,Manhattan,Harlem,40.82882,-73.94148,Private room,49,7,1,2016-08-30,0.03,2,0 +13486730,Large private bedroom in West Soho/West Village,3714721,James,Manhattan,SoHo,40.72689,-74.0089,Private room,101,2,102,2019-07-01,2.97,2,116 +13487852,Charming Oldschool NYC Apartment,53316033,Raymond,Manhattan,East Harlem,40.79659,-73.93501,Private room,69,3,0,,,1,0 +13488308,Spacious & Cosy 1BR apt in Gramercy with balcony!,1252131,Gianni,Manhattan,Kips Bay,40.73955,-73.98243,Entire home/apt,199,30,36,2019-05-31,0.98,1,242 +13488659,Basement Sublet Space open from June 28th-July17th,77280363,Michael,Queens,Ridgewood,40.69807,-73.90614,Private room,40,21,0,,,1,0 +13489132,"Amazing flat, stunning views!!, perfect location",48201284,Antoine,Brooklyn,Williamsburg,40.71026,-73.96841,Entire home/apt,175,1,1,2016-07-08,0.03,1,0 +13489234,Cozy 1BR in Midtown Manhattan,1455109,Nina,Manhattan,Midtown,40.75823,-73.96453,Entire home/apt,175,1,2,2016-06-23,0.05,1,0 +13489789,Roses Room - 10 mins to Williamsburg/LES/City,1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69285,-73.92849,Private room,50,1,42,2019-06-15,2.10,3,102 +13490097,Excellent Space for NYC Visit.,9235481,Reynaldo,Manhattan,Washington Heights,40.85413,-73.93172,Private room,45,3,1,2016-07-04,0.03,2,0 +13490175,AMAZING VIEW ENTIRE apt 10mins to midtown,77300379,Maria,Queens,Sunnyside,40.74472,-73.91788,Entire home/apt,110,1,37,2019-06-15,1.00,1,74 +13490372,Sunny one-bedroom with terrace in Park Slope,39177865,Alicia,Brooklyn,South Slope,40.6612,-73.98568,Entire home/apt,70,70,3,2018-04-08,0.08,1,0 +13490397,Beautiful Brooklyn Brownstone in Park Slope.,76008109,Ivan And Emily,Brooklyn,South Slope,40.66186,-73.98109,Entire home/apt,129,5,1,2016-07-13,0.03,1,0 +13490410,Perfect 1BDRM -Lincoln Center,25410835,Kylie,Manhattan,Upper West Side,40.7728,-73.98737,Entire home/apt,139,4,8,2018-10-23,0.23,1,0 +13491040,Gorgeous Duplex Apartment with a Garden,5165518,Ksenia,Brooklyn,Bedford-Stuyvesant,40.691,-73.93032,Entire home/apt,135,3,2,2016-08-01,0.06,1,0 +13491064,Modern and cozy apartment in the Upper East Side,37384607,Pepa,Manhattan,Upper East Side,40.77363,-73.95154,Entire home/apt,90,1,3,2016-08-29,0.09,1,0 +13491503,"Airy, Private, Spacious + Accessible",77317167,Stacey Rae,Brooklyn,Flatbush,40.65253,-73.96404,Entire home/apt,125,2,52,2019-03-06,1.41,2,20 +13491951,QUIET OASIS in Prime Chelsea LRGE APT PRIVATE back,51137325,Ellen,Manhattan,Chelsea,40.74494,-74.00116,Entire home/apt,225,30,0,,,1,280 +13492036,"Beautiful 1 bedroom in Astoria,Queens",77325010,Petros,Queens,Ditmars Steinway,40.77231,-73.90793,Entire home/apt,75,4,1,2016-07-31,0.03,1,0 +13492353,Bright Private BR in a 2BR apt in Upper West Side,69706365,Bernardo,Manhattan,Upper West Side,40.79201,-73.97423,Private room,65,3,5,2017-11-26,0.14,2,0 +13492449,[TRUE 1br] Heart of the West Village,31489150,Kelly,Manhattan,West Village,40.7332,-74.0039,Entire home/apt,190,2,2,2016-09-17,0.05,1,0 +13493430,"Fully Furnished, sunny 2BR 1BA Summer sublet!",3341869,Erez,Brooklyn,Kensington,40.64328,-73.97506,Entire home/apt,85,7,1,2016-08-14,0.03,1,0 +13493546,"Grand private apt with deck, one block to subway",10395888,Anne,Brooklyn,East Flatbush,40.65005,-73.94776,Entire home/apt,119,1,24,2019-05-28,1.04,1,313 +13494051,Gorgeous Master Bedroom near City College,2571641,Erika,Manhattan,Harlem,40.81733,-73.95384,Private room,48,2,0,,,3,0 +13494095,STUDIO LowerManhattan this week!,379827,Natalia,Manhattan,Financial District,40.70713,-74.00793,Entire home/apt,196,3,14,2019-05-06,0.52,1,29 +13494147,Beautiful Quiet Bedroom near City College,2571641,Erika,Manhattan,Harlem,40.81863,-73.95295,Private room,80,2,0,,,3,0 +13494532,"*Cozy apt Manhattan,Near Central Park !*",77355562,Anna,Manhattan,Upper East Side,40.77081,-73.95216,Private room,90,1,65,2019-06-30,1.76,1,338 +13494825,Large and Lovely with Lots of Light,1777483,Blake,Brooklyn,Bedford-Stuyvesant,40.68881,-73.94991,Private room,125,3,1,2016-10-09,0.03,1,0 +13494895,Big room in East Harlem apartment,50945119,Shannon,Manhattan,East Harlem,40.7977,-73.93736,Private room,65,28,1,2016-06-27,0.03,1,0 +13494898,Modern 1BR apartment amazing location in Chelsea,77365697,Adam,Manhattan,Chelsea,40.74032,-74.00265,Entire home/apt,110,4,6,2017-09-15,0.16,1,0 +13495012,World Trade Center Delight,9007512,Illy,Manhattan,Financial District,40.70566,-74.00865,Entire home/apt,100,20,3,2019-05-04,0.09,1,340 +13495082,private one bedroom apartment in williamsburg,77369325,Morgan,Brooklyn,Williamsburg,40.70844,-73.96176,Entire home/apt,200,2,0,,,1,0 +13495361,Charming 1BR in the heart of Greenwich Village,11414858,Alex,Manhattan,Greenwich Village,40.73006,-73.99981,Entire home/apt,200,4,0,,,1,0 +13495558,Bright apartment in Soho with roof access,7539044,Vinciane,Manhattan,SoHo,40.72795,-74.00454,Entire home/apt,360,2,22,2019-05-25,0.66,2,333 +13495691,Fort Greene bedroom w/private bathroom,26209213,Kaitlyn,Brooklyn,Fort Greene,40.69289,-73.98077,Private room,65,10,0,,,1,0 +13495754,"Peaceful, Light-filled Room - Greenpoint, BK",1439261,Michele,Brooklyn,Greenpoint,40.73265,-73.95393,Private room,65,7,38,2019-01-23,1.08,1,10 +13496129,LARGE bedroom in sun-lit Pre-War in Crown Heights,18066933,Emily,Brooklyn,Crown Heights,40.67555,-73.94493,Private room,65,2,21,2016-11-27,0.58,2,0 +13496176,Spacious duplex w/ backyard in Stuyvesant Heights.,7697189,Daniel,Brooklyn,Bedford-Stuyvesant,40.68015,-73.9355,Entire home/apt,160,2,3,2016-10-24,0.08,1,0 +13496318,Amazing Park Slope Duplex plus Finished Basement.,16288928,Julie,Brooklyn,Park Slope,40.67885,-73.97929,Entire home/apt,450,7,14,2019-06-08,0.64,2,360 +13496448,Sunny apartment in Lower East Side (LES),21604714,Roxy,Manhattan,Lower East Side,40.71934,-73.98172,Private room,75,2,3,2018-05-20,0.08,1,0 +13497305,"Stunning, Prime, Beautiful NYC",2861768,Justin,Manhattan,Harlem,40.81266,-73.95152,Private room,69,10,20,2018-05-29,0.54,3,0 +13497362,Modern High Rise Studio w/ Amazing Views (Sublet),75310656,C.S.,Brooklyn,Fort Greene,40.68921,-73.98038,Entire home/apt,203,7,4,2017-04-27,0.13,1,0 +13497388,Luxury 1 Bedroom in Midtown/Time Square with View,6736799,Sue,Manhattan,Theater District,40.75948,-73.98631,Private room,169,5,19,2018-12-07,0.51,1,88 +13498392,"Spacious, Bright, Private NYC",2861768,Justin,Manhattan,Harlem,40.81325,-73.95323,Private room,79,6,31,2019-05-23,0.84,3,18 +13502841,Huge lovely studio (size: one bedroom) in Midtown,3978669,DrAnita,Manhattan,Hell's Kitchen,40.75704,-73.99564,Entire home/apt,230,4,12,2018-01-02,0.33,1,41 +13503251,Cozy room near la Guardia airport.,9055702,Sarah,Queens,Woodside,40.74428,-73.90898,Private room,65,1,18,2018-05-12,1.11,1,278 +13503536,"Large, Private Room in Bushwick",77076962,Meghan,Brooklyn,Bushwick,40.70286,-73.92271,Private room,50,2,6,2016-08-09,0.16,1,0 +13503970,"Large, sunny, airy, spacious bdrm.",6776157,Giovanna,Brooklyn,Prospect Heights,40.67847,-73.96662,Private room,100,1,11,2019-05-27,0.30,2,365 +13505542,Cozy Room 1 Block from the Train,2417692,Verena,Queens,Astoria,40.75946,-73.91173,Private room,70,10,3,2019-06-14,0.40,2,250 +13506168,Spacious Beautiful 1 bdrm in Gramercy,25912717,Will,Manhattan,Gramercy,40.73813,-73.98213,Entire home/apt,175,2,1,2016-06-26,0.03,1,0 +13506967,Sunny 1-Bedroom in Cobble Hill with Outside Space,4337162,Neil,Brooklyn,Cobble Hill,40.68688,-73.999,Private room,142,3,8,2017-12-31,0.22,1,10 +13507377,"Sunny Apartment in Park Slope, Brooklyn",32706119,Shanee,Brooklyn,South Slope,40.66769,-73.98886,Entire home/apt,190,3,39,2019-06-25,1.07,2,226 +13507677,NYC 2500 sq ft home near yankee stadium/subway,29510402,Douglas,Bronx,Longwood,40.82412,-73.90266,Entire home/apt,350,7,0,,,3,14 +13508285,"Sunny, Quiet & Newly Renovated Upper East Side Apt",5390302,John,Manhattan,Upper East Side,40.76988,-73.95125,Entire home/apt,140,5,0,,,1,0 +13508567,"spacious, clean place in quiet building",75398380,Maris,Bronx,University Heights,40.86048,-73.91181,Entire home/apt,120,1,0,,,1,0 +13508766,VERY Spacious 3BR West Village Apartment,77523610,Charles,Manhattan,West Village,40.73458,-74.0028,Private room,372,2,0,,,1,0 +13509110,Large private ensuite room beside Brooklyn Bridge,27275952,Andrew,Brooklyn,Downtown Brooklyn,40.69739,-73.98512,Private room,61,2,8,2018-01-02,0.21,2,0 +13509320,Cosy private bedroom and bathroom in a 3 bedroom,13482882,Kanak,Queens,Ridgewood,40.70756,-73.914,Private room,65,5,0,,,1,0 +13510154,Cozy Private Room 2 Blocks from Central Park,77514775,Kyle,Manhattan,Harlem,40.8003,-73.95223,Private room,80,2,15,2016-11-08,0.41,1,0 +13510347,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76371,-73.96153,Entire home/apt,225,30,1,2016-11-12,0.03,87,341 +13511155,Gorgeous Spacious Room in Clinton Hill,718492,Asha,Brooklyn,Clinton Hill,40.69288,-73.96592,Private room,105,2,0,,,1,0 +13511266,"""FALL IN LOVE WITH NYC & MY HOME""",76192815,Sam,Manhattan,Lower East Side,40.71932,-73.99396,Entire home/apt,100,32,3,2018-05-10,0.11,5,243 +13511347,Sunny One bd apt in Brooklyn!,13616834,Carlos,Brooklyn,Borough Park,40.64459,-73.99825,Entire home/apt,50,15,1,2016-07-24,0.03,1,0 +13511359,visit nyc and live like a local,25750650,Bernadette,Manhattan,East Village,40.72152,-73.9838,Private room,109,4,25,2019-05-31,0.91,1,140 +13511798,Spacious Bedroom in The Heights,7385139,Nicole,Manhattan,Washington Heights,40.83702,-73.94199,Private room,75,1,11,2017-01-02,0.30,1,0 +13512636,"Sunny, Spacious Lower Harlem Condo",1402455,Damian,Manhattan,East Harlem,40.80153,-73.94435,Private room,100,2,0,,,1,0 +13513353,Bright Bedroom in Crown Heights,1490202,Jessica,Brooklyn,Crown Heights,40.67664,-73.95814,Private room,60,1,15,2016-09-17,0.41,1,0 +13513592,Cozy Private Room w/ Queen-sized Bed near Columbia,19540198,Wanyi,Manhattan,Morningside Heights,40.80346,-73.96488,Private room,50,7,0,,,1,0 +13513738,"Large, bright, 2bdr Manhattan apt",74330820,Rachel,Manhattan,East Harlem,40.81454,-73.93616,Entire home/apt,130,4,6,2018-07-30,0.16,2,0 +13514115,Bushwick Artist Loft - Zen Tree House Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70859,-73.9221,Private room,65,2,101,2019-06-22,2.83,3,300 +13514387,Spacious Private BR in Chelsea,35590013,Ryan,Manhattan,Chelsea,40.74675,-73.99555,Private room,90,2,6,2016-10-16,0.16,1,0 +13514680,Quiet 6th floor private room with rooftop views,3401026,Daniel,Brooklyn,Kensington,40.64455,-73.97826,Private room,50,14,1,2016-08-06,0.03,1,0 +13514745,Cozy BR in large quiet EV apt,24222,Lori,Manhattan,East Village,40.72628,-73.97952,Private room,67,4,11,2019-07-02,0.30,2,4 +13514940,Private sunny South Park Slope 1-bedroom loft,77603717,Howard,Brooklyn,Sunset Park,40.66197,-73.98907,Entire home/apt,100,1,14,2016-07-29,0.38,1,0 +13515087,"Cute&Cozy Apartment, 20 min to Grand Central",10743221,Masha,Queens,Astoria,40.77164,-73.92028,Entire home/apt,98,4,0,,,1,0 +13515865,"Cozy room in Greenpoint, Brooklyn",1797635,Daniel,Brooklyn,Greenpoint,40.727,-73.94249,Private room,50,1,0,,,1,0 +13519630,Luminous 2 bedroom apartment in Bushwick,1658443,Nicholas,Queens,Ridgewood,40.7011,-73.90964,Entire home/apt,100,5,1,2016-06-21,0.03,1,0 +13520598,"Beautiful 2 BR, 2 bath duplex w/ private patio",12267269,Ashley,Brooklyn,Prospect Heights,40.67671,-73.96466,Entire home/apt,300,3,17,2018-01-02,0.47,1,11 +13522613,Verita Room w/PrivateBathroom Bklyn,58631330,Veraalba,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95808,Private room,75,2,0,,,1,0 +13522873,Lux 1BR On Manhattan's West Side,30283594,Kara,Manhattan,Hell's Kitchen,40.76111,-73.99818,Entire home/apt,219,30,0,,,121,365 +13522948,"West 74th Street, Svcd Studio Apartment",22541573,Ken,Manhattan,Upper West Side,40.77936,-73.97874,Entire home/apt,167,30,1,2017-07-19,0.04,87,342 +13523692,RARE NYC LOFT in Perfect Location,16836897,Hudson,Manhattan,Lower East Side,40.71827,-73.98983,Entire home/apt,180,4,13,2017-10-23,0.35,1,0 +13525308,Spacious Brooklyn Apt near F/G train,50995154,Bev,Brooklyn,Kensington,40.64277,-73.9744,Entire home/apt,95,2,11,2019-04-15,0.30,1,0 +13525592,Columbus Circle Penthouse,3329894,Evan,Manhattan,Upper West Side,40.77326,-73.98888,Entire home/apt,250,1,0,,,1,0 +13525760,420 friendly Beautiful rm with plenty of sunlight,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91484,Private room,85,14,32,2019-01-02,0.92,4,115 +13526348,Private Red Apple Brownstone Suite - Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81635,-73.94467,Entire home/apt,115,4,119,2019-06-20,3.21,4,45 +13526398,Modern 1 Bedroom 4FL w/Marble Bthr,45595980,Tny,Manhattan,Midtown,40.76071,-73.96469,Entire home/apt,150,30,8,2019-03-12,0.36,12,267 +13526483,Simple and Beautiful Apartment in Flatbush,331223,Stephen,Brooklyn,Flatbush,40.64684,-73.96068,Entire home/apt,80,5,3,2018-07-27,0.08,1,0 +13526638,West Chelsea 1 bedroom 2 bathroom outdoor space.,76182346,Alison,Manhattan,Chelsea,40.74584,-74.00279,Entire home/apt,225,14,0,,,1,0 +13526990,Historic Brooklyn Brownstone,45691473,Cheryl,Brooklyn,South Slope,40.66446,-73.97987,Entire home/apt,400,4,0,,,1,0 +13527740,Stylish Williamsburg 2 bed with private roofdeck,2548974,Pippa,Brooklyn,Williamsburg,40.7186,-73.95427,Entire home/apt,325,5,2,2018-01-01,0.07,1,0 +13528101,Perfect NYC neighborhood! 15 min. to Central Park!,66981456,Iris,Manhattan,Upper East Side,40.77512,-73.95254,Private room,99,6,35,2019-06-22,1.06,1,59 +13528649,Terrific Master Bedroom/Bath in Great UWS Location,6445320,Judah,Manhattan,Upper West Side,40.79415,-73.97323,Private room,90,5,3,2019-06-13,0.08,1,66 +13529037,Private Green Apple Brownstone Studio Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81589,-73.94648,Entire home/apt,110,4,125,2019-06-20,3.37,4,44 +13529498,Awesome Room in the Heart of Bushwick!,23826651,Lorenzo,Brooklyn,Bushwick,40.70364,-73.92769,Private room,50,7,0,,,1,0 +13529607,"East 40th Street, Lux Serviced Studio Apt",22541573,Ken,Manhattan,Midtown,40.74992,-73.97223,Entire home/apt,189,30,0,,,87,188 +13529652,"Enjoy whole apartment, safe, 25 min ferry to NYC",70537782,Sen & Ti,Staten Island,Tompkinsville,40.63598,-74.07943,Entire home/apt,105,2,132,2019-06-30,3.55,1,318 +13529753,Comfortable Room in large 3 BED Apt,58104904,Michael,Brooklyn,Bushwick,40.70146,-73.91763,Private room,55,7,0,,,1,0 +13530036,Family home with private garden,2507277,Mark,Brooklyn,Fort Greene,40.68712,-73.97114,Entire home/apt,180,10,0,,,1,0 +13530166,Convenient place rest head,547029,Sheena,Bronx,Concourse,40.82162,-73.92698,Private room,50,2,0,,,1,0 +13530588,Sunny Cozy Room Located In Prime East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63292,-73.94569,Private room,80,2,7,2018-01-10,0.21,8,189 +13530958,Basically Your Own Apartment: Cobble Hill Gem,3302537,Marielle,Brooklyn,Cobble Hill,40.68796,-73.99229,Entire home/apt,120,1,2,2016-07-29,0.05,1,0 +13531132,Event Space | Backyard | Pool,77778146,Andre,Brooklyn,East Flatbush,40.63337,-73.94578,Private room,525,1,36,2018-09-29,0.99,8,189 +13531199,Classic New York Railroad Apartment,14524071,Brian,Manhattan,Upper West Side,40.78853,-73.9751,Entire home/apt,150,4,5,2019-05-12,0.23,1,157 +13531244,East Village 1BR w/ private deck,9327286,Alexander,Manhattan,East Village,40.73004,-73.98225,Entire home/apt,150,2,0,,,1,0 +13531852,Spacious Comfortable Room Located In East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63345,-73.94536,Private room,90,1,4,2018-05-09,0.11,8,189 +13532128,Colorful 1 bedroom Brooklyn Apartment,3239574,Miraya,Brooklyn,Bedford-Stuyvesant,40.68501,-73.95904,Entire home/apt,130,2,6,2016-12-11,0.18,1,0 +13532253,Crown Heights oasis with private patio,2972691,Llerone,Brooklyn,Crown Heights,40.67275,-73.95169,Entire home/apt,155,3,19,2018-05-18,0.53,1,0 +13532333,1 Bedroom in 3BR East Village NYC Apt,32707981,Ben,Manhattan,East Village,40.72424,-73.9906,Private room,90,2,8,2017-05-21,0.22,4,0 +13532366,Chill Private Room in Extremely Convenient Place,9540269,Josh,Manhattan,Upper West Side,40.76986,-73.98673,Private room,90,1,1,2016-08-09,0.03,1,0 +13532633,Cozy Couch in Wburg,8255157,Chris,Brooklyn,Williamsburg,40.71182,-73.95692,Shared room,130,1,0,,,1,0 +13532647,2 Bedroom Apartment in Prime Midtown West,26923140,Allan,Manhattan,Hell's Kitchen,40.7605,-73.99455,Entire home/apt,199,3,110,2019-06-20,3.02,1,246 +13532669,뉴욕의 꿈꾸는 집 (for women),77809736,Seohee,Manhattan,Morningside Heights,40.81005,-73.9599,Shared room,70,3,1,2017-03-19,0.04,2,0 +13532718,Small Private Room in quiet Manhattan Apt,7917224,Elizabeth,Manhattan,Harlem,40.82588,-73.9388,Private room,36,4,2,2016-08-29,0.06,1,0 +13532767,Sunny LES Apt W/ Luxury Bed A/C Views WIFI & More,77811516,Joel,Manhattan,Lower East Side,40.71429,-73.98755,Private room,59,2,14,2017-07-28,0.38,1,0 +13532789,Large 1BR Wood Floors/Exposed Brick,77812281,Bridget,Manhattan,East Village,40.72746,-73.97611,Entire home/apt,185,2,32,2019-07-03,0.92,1,26 +13532901,1 Bedroom Apartment Close To Subway,4518002,Arthur,Brooklyn,Flatbush,40.63736,-73.95669,Entire home/apt,75,30,46,2018-11-06,1.25,1,89 +13533165,Gem in the heart of South Harlem,285637,Joy,Manhattan,Harlem,40.80474,-73.95527,Entire home/apt,150,2,0,,,1,0 +13533366,Large Room with Private Entrance Easy commute,1535912,Sijia,Brooklyn,Bushwick,40.69849,-73.923,Private room,75,2,170,2019-07-01,4.58,1,37 +13536155,"1 bedroom w/ Queen bed, 5 minutes from Manhattan.",36815239,Henry,Queens,Long Island City,40.75293,-73.93757,Private room,74,1,210,2019-06-27,5.66,1,33 +13539571,Charming bedroom in E. Williamsburg,12377856,Bridget,Brooklyn,Williamsburg,40.70705,-73.94326,Private room,80,2,0,,,1,0 +13540233,Cozy and Warm Apartment in Greenwich Village!!,13425452,Eric,Manhattan,Greenwich Village,40.72871,-74.00149,Entire home/apt,161,1,27,2017-02-13,0.74,1,0 +13540817,"East 55th Street, Luxury 1bd Serviced Apt",22541573,Ken,Manhattan,Midtown,40.7588,-73.96611,Entire home/apt,260,30,1,2018-05-25,0.07,87,341 +13540829,Comfortable Affordable 2 bed Apt ASTORIA NEW YORK,26475189,Ellen,Queens,Astoria,40.7696,-73.92694,Entire home/apt,79,21,0,,,1,0 +13541505,East Williamsburg Bedroom,30801050,Alik,Brooklyn,Williamsburg,40.71438,-73.94742,Private room,43,14,0,,,1,0 +13542287,"Large, sunny private bedroom in E. Williamsburg",17860156,Cheryn,Brooklyn,Williamsburg,40.7042,-73.94193,Private room,60,1,3,2017-03-26,0.08,1,0 +13542521,Comfortable room in gay friendly apt in HK,77915011,Joshua,Manhattan,Hell's Kitchen,40.76806,-73.98672,Private room,100,2,1,2016-06-26,0.03,1,0 +13542768,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75897,-73.9617,Entire home/apt,210,30,0,,,87,188 +13542938,"East 58th Street, Lux Svcd 1bd Apt",22541573,Ken,Manhattan,Midtown,40.75724,-73.96384,Entire home/apt,245,30,0,,,87,280 +13543160,"Modern, Elegant, Private, Two-bedroom",49966,Sarah,Brooklyn,Bedford-Stuyvesant,40.69068,-73.95465,Entire home/apt,175,3,6,2018-04-08,0.17,1,0 +13543171,ENTIRE APARTMENT FOR FAMILIES OR GROUPS,32991339,Eric,Brooklyn,Williamsburg,40.70707,-73.9528,Entire home/apt,250,1,9,2018-11-11,0.27,2,254 +13544023,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75726,-73.96177,Entire home/apt,220,30,0,,,87,188 +13544120,MY HOME / YOUR HOME /BEAUTIFUL HUGE 1BR,1475015,Mike,Manhattan,Midtown,40.75683,-73.9659,Entire home/apt,95,30,5,2019-05-30,0.23,52,342 +13544302,Park Avenue 4 Bedroom 1 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74564,-73.98174,Entire home/apt,250,30,1,2017-05-14,0.04,31,215 +13544601,"West 87th Street, Svcd Studio Brownstone Apt",22541573,Ken,Manhattan,Upper West Side,40.79093,-73.97969,Entire home/apt,167,30,0,,,87,335 +13544874,Private room in the heart of Williamsburg!,21130844,Fernando,Brooklyn,Williamsburg,40.7154,-73.95469,Private room,76,2,7,2017-10-23,0.21,1,0 +13544987,Large Open 1 Bedroom Apartment in Murray Hill,26064594,Dori,Manhattan,Murray Hill,40.74686,-73.97981,Entire home/apt,200,3,1,2016-11-26,0.03,1,0 +13545453,"West 50th Street, Luxury Svcd Studio Apt",22541573,Ken,Manhattan,Hell's Kitchen,40.76294,-73.98574,Entire home/apt,199,30,1,2018-07-29,0.09,87,329 +13545656,Perfect 1 Br Apt. to explore the city,6493333,Zahra,Manhattan,Harlem,40.8114,-73.94014,Entire home/apt,140,2,34,2018-09-16,0.93,1,0 +13545733,Ideal location for those new to New York!,5677896,Keryn,Manhattan,Inwood,40.86182,-73.93088,Private room,57,14,4,2018-08-17,0.11,1,0 +13546425,Room in ground level brownstone with private yard,9501536,Morgan,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93935,Private room,60,2,2,2016-07-11,0.05,1,0 +13547426,Bay Ridge Beauty,68733807,Tracey,Brooklyn,Fort Hamilton,40.616,-74.02973,Entire home/apt,80,3,6,2016-09-23,0.17,1,0 +13548278,Lovely & Spacious Entire Apt- 18 mins to Manhattan,12777561,Philippia,Queens,Sunnyside,40.746,-73.91503,Entire home/apt,125,1,2,2017-01-01,0.06,1,0 +13548332,"Madison Ave 2 BR Penthouse, 3 Beds",61391963,Corporate Housing,Manhattan,Upper East Side,40.78531,-73.95683,Entire home/apt,150,30,2,2018-01-06,0.07,91,319 +13548357,"Convenient & Spacious Place in Brooklyn, NYC",19163998,Richard,Brooklyn,Flatbush,40.62978,-73.96207,Entire home/apt,70,6,70,2019-07-03,2.12,1,3 +13548515,Cozy Apartment Best Location,75029289,Rlg,Manhattan,Upper East Side,40.7746,-73.95546,Entire home/apt,125,30,7,2018-10-06,0.32,5,325 +13548885,Beautiful private room with balcony,25668027,Austin,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93594,Private room,56,7,1,2016-08-01,0.03,1,0 +13549391,Cozy Brooklyn Guesthouse Retreat by Localhaus,63494345,Lauren And Ben,Brooklyn,Sunset Park,40.66525,-73.99524,Entire home/apt,170,2,88,2019-07-06,2.67,1,65 +13549494,"Cozy Studio, close to everything!",4454121,Gayle,Manhattan,Upper East Side,40.76172,-73.96538,Entire home/apt,179,3,24,2019-06-16,0.65,1,3 +13549611,Bright and cozy apt next to park,59575555,Para,Brooklyn,Cypress Hills,40.68144,-73.89416,Entire home/apt,75,5,2,2016-08-15,0.06,1,0 +13549677,Bedroom in Bushwick,16240783,Tamara,Brooklyn,Bushwick,40.70024,-73.92655,Private room,65,2,0,,,1,0 +13549713,Luxury 2 Bed/2 Bath Duplex on the Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78435,-73.97579,Entire home/apt,295,30,2,2018-01-06,0.06,6,0 +13549750,Luxury One Bedroom Apt near Brooklyn Bridge,32128412,Ondina,Brooklyn,Vinegar Hill,40.69904,-73.98496,Entire home/apt,150,1,6,2017-06-02,0.16,1,0 +13550120,NYC Welcomes You! Beautiful 2 BR-5 min from JFK.,51688993,Taran & Najla,Queens,Jamaica,40.68993,-73.80334,Entire home/apt,174,1,67,2019-06-23,1.81,2,340 +13550201,"Manhattan-very close to everywhere +muy cercadetodo",71886811,W. Alvaro,Manhattan,Morningside Heights,40.81441,-73.9589,Private room,67,6,22,2019-04-27,0.59,3,90 +13550629,Large 1BR in the Heart of Hell's Kitchen!!,11736641,Will,Manhattan,Hell's Kitchen,40.76054,-73.98971,Entire home/apt,199,4,0,,,1,0 +13554710,"Modern Oasis l -Prospect Park, Close to B/Q Subway",47050813,Jewel,Brooklyn,Flatbush,40.65034,-73.96342,Private room,62,1,167,2019-06-27,4.52,2,48 +13556488,sunny room one block from the beach,22591516,Laura,Queens,Arverne,40.58928,-73.79531,Private room,150,1,2,2016-08-22,0.05,1,0 +13556607,Affordable Luxury 1,77134747,Marcus,Brooklyn,Cypress Hills,40.68017,-73.89031,Private room,115,3,3,2016-10-09,0.09,1,82 +13558030,"Comfy Room 10min/ LGA, 30min/ JFK, 30min/ City",51531044,Angela,Queens,Jackson Heights,40.75061,-73.87576,Private room,40,2,66,2019-06-09,1.82,4,293 +13558387,"East 74th street, UES 1bd Serviced Apartment*",22541573,Ken,Manhattan,Upper East Side,40.76911,-73.95738,Entire home/apt,200,30,0,,,87,365 +13558555,"East 74th street, Cozy UES Studio Svcd Apartment",22541573,Ken,Manhattan,Upper East Side,40.7706,-73.95725,Entire home/apt,149,30,2,2018-08-18,0.08,87,339 +13559208,Central Park Loft,81335,Evan,Manhattan,Upper West Side,40.78243,-73.97657,Entire home/apt,125,1,180,2019-06-26,4.88,3,125 +13559570,Manhattan-very close to everywhere muycerca detodo,71886811,W. Alvaro,Manhattan,Morningside Heights,40.81558,-73.95847,Private room,73,6,11,2018-10-21,0.31,3,90 +13560118,"AMAZINGLY LOCATED ONE BEDROOM, NEAR CENTRAL PARK",3752944,Jay Cee,Manhattan,Hell's Kitchen,40.76712,-73.98789,Entire home/apt,200,4,7,2019-04-09,0.22,1,3 +13561961,"Cozy, Artistic Room with Lots of Natural Light",75658258,Anne-Marie,Brooklyn,Bedford-Stuyvesant,40.68838,-73.9519,Private room,34,2,1,2016-08-27,0.03,1,0 +13562013,Lincoln Center 1 Bedroom Apartment,26546007,Francis,Manhattan,Upper West Side,40.7719,-73.99046,Entire home/apt,300,1,0,,,1,0 +13562635,West 55th street~Large 1BR~Columbus circle,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76646,-73.98649,Entire home/apt,220,30,0,,,49,365 +13563330,"Comfy, Lush Private Harlem Room",78165909,Gabriel,Manhattan,Harlem,40.82841,-73.94922,Private room,36,14,0,,,1,0 +13563766,Private Room near Brooklyn's best park,27567524,David,Brooklyn,Prospect Heights,40.67937,-73.96838,Private room,70,1,0,,,1,0 +13563835,Heart of Williamsburg! 10 min from Manhattan,1571120,Timothy + Gina,Brooklyn,Williamsburg,40.71072,-73.96131,Private room,89,2,150,2019-06-23,4.10,2,64 +13563973,"Visiting Brooklyn, stay here!",41913683,Aris,Brooklyn,Flatbush,40.65074,-73.96072,Entire home/apt,115,3,4,2017-09-15,0.11,1,0 +13564134,Beautiful Spacious 3 BR Cosy Apt.,78176513,Frank,Manhattan,Harlem,40.81497,-73.94781,Entire home/apt,200,3,50,2019-06-22,1.42,1,268 +13564490,Classic pre-war NYC apartment.,34911780,Daniel,Manhattan,Inwood,40.86076,-73.92781,Entire home/apt,100,4,41,2019-07-02,1.11,2,100 +13564911,Gorgeous exposed-brick 2 BR Apt in LES!,16904031,Kiley,Manhattan,Lower East Side,40.71692,-73.98874,Entire home/apt,175,2,0,,,1,0 +13565060,AWESOME MODERN WILLIAMSBURG APT AVAILABLE,14017165,Daniel,Brooklyn,Williamsburg,40.70744,-73.94485,Private room,58,2,1,2016-06-27,0.03,1,0 +13565111,Spacious room in trendy & picturesque neighborhood,44867769,Jessie,Manhattan,Harlem,40.82172,-73.94791,Private room,81,1,19,2016-09-30,0.52,1,0 +13567393,Private room near Lincoln Center,50165193,Stephanie,Manhattan,Upper West Side,40.77567,-73.9786,Private room,95,21,2,2016-08-20,0.05,1,281 +13569664,"Affordable, Clean / Cozy place near Subway",78150907,Gregory,Brooklyn,Midwood,40.62189,-73.96171,Private room,38,2,157,2019-06-25,4.27,1,67 +13569725,Little slice of paradise on the Lower East Side,19417913,Cate,Manhattan,Chinatown,40.71661,-73.99144,Entire home/apt,150,3,7,2018-03-12,0.19,1,11 +13571116,Private Room in Large Airy Apartment,54797779,Sofia,Manhattan,Harlem,40.82004,-73.95063,Private room,40,2,3,2017-01-23,0.10,1,0 +13571350,Perfect studio in Manhattan midtown,78258683,Srulik,Manhattan,Midtown,40.74311,-73.98286,Entire home/apt,150,5,0,,,1,0 +13572291,CLEAN Downtown Studio Crash Pad!,48681901,Krystina,Manhattan,East Village,40.72605,-73.98705,Entire home/apt,99,17,11,2019-06-01,0.30,1,0 +13572767,Heart of Williamsburg 2 bedroom sleeps 5,69541888,Edward,Brooklyn,Williamsburg,40.71758,-73.95015,Entire home/apt,250,1,1,2016-07-21,0.03,1,0 +13573101,Sunny room in heart of Chinatown,41217631,Paul,Manhattan,Chinatown,40.7153,-73.99938,Private room,69,1,1,2016-10-09,0.03,2,0 +13573103,"Private room in Bushwick, Brooklyn. backyard+roof!",78279322,Cortland,Brooklyn,Bushwick,40.69092,-73.91546,Private room,35,1,1,2016-07-05,0.03,1,0 +13573310,Private room in williamsburg/bushwick,78286572,Brian,Brooklyn,Williamsburg,40.70559,-73.93552,Private room,65,1,3,2017-05-29,0.08,1,0 +13573625,"Huge 1bdrm w pt Doorman, WiFi/Cable, Bottled Water",78285810,Shira,Manhattan,Midtown,40.75494,-73.96738,Entire home/apt,259,4,0,,,1,0 +13573790,"Sunny, Spacious Apartment in Prime Williamsburg",78292517,Chris,Brooklyn,Williamsburg,40.71578,-73.95879,Entire home/apt,150,2,5,2019-03-20,0.14,1,0 +13573828,"Historic, Modern Brownstone Bklyn Duplex, Backyard",9440328,Laura,Brooklyn,Crown Heights,40.67469,-73.94062,Entire home/apt,270,5,9,2018-12-29,0.25,1,0 +13574105,Private Bed-Stuy Flat,21016849,Silvia,Brooklyn,Bedford-Stuyvesant,40.69127,-73.95085,Entire home/apt,150,3,40,2019-06-02,1.08,1,327 +13574810,"Live/Work Artist Loft in Ridgewood , Queens NYC",2960765,Brian,Queens,Ridgewood,40.70087,-73.90571,Private room,100,1,0,,,1,0 +13575747,"One bedroom in Astoria, Queens - No Hidden Fees",19477508,Vincent And Jessica,Queens,Astoria,40.76626,-73.91835,Entire home/apt,119,2,19,2019-05-31,0.52,1,0 +13576581,Modern Central Park Apartment close to everything,78325795,Bozhena,Manhattan,Harlem,40.80573,-73.94994,Entire home/apt,129,1,160,2019-06-23,4.31,3,246 +13577207,Bright & Dramatic 3 bed/2bath Duplex,73234851,Shoshana,Brooklyn,Bedford-Stuyvesant,40.68343,-73.94394,Entire home/apt,175,2,103,2019-07-04,2.90,2,144 +13577416,Comfy Loft Bed in Sunny Room with plants,23505542,Sarah,Brooklyn,Sunset Park,40.65562,-74.00295,Private room,40,2,3,2016-10-19,0.08,1,0 +13578125,Whimsical Greenpoint Get Away,71308956,Anthony,Brooklyn,Greenpoint,40.72429,-73.94534,Entire home/apt,125,3,1,2016-07-18,0.03,1,0 +13578431,Private Apt in Queens NYC/less 5min walk to train,26382036,William,Queens,Elmhurst,40.73928,-73.87755,Entire home/apt,101,5,93,2019-06-30,2.52,2,7 +13578642,Medium size room in great location (88th & York),10737943,David,Manhattan,Upper East Side,40.77989,-73.94763,Private room,49,19,6,2018-08-31,0.17,10,285 +13578708,Modern Skyscraper in the Upper Westside Manhattan,1651250,Shervin,Manhattan,Upper West Side,40.7751,-73.98148,Entire home/apt,300,2,15,2016-11-25,0.41,2,3 +13580148,"Sunny Rms w Utilities Incl, 15 mins to Manhattan",2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.68232,-73.94401,Private room,75,2,1,2019-06-10,1,3,125 +13582811,Bright Bushwick Diamond In The Rough,78408136,Michael,Brooklyn,Cypress Hills,40.68015,-73.90504,Entire home/apt,85,1,182,2019-06-23,5.85,1,62 +13583633,Spacious 1 Bedroom Apt in heart of Williamsburg,23657588,Matthew,Brooklyn,Williamsburg,40.71307,-73.95084,Entire home/apt,185,1,49,2019-06-30,1.34,1,50 +13584582,Stylish Midtown Retreat,78430614,Jay,Manhattan,Hell's Kitchen,40.75666,-73.99444,Entire home/apt,185,2,174,2019-06-22,4.88,1,65 +13584889,COMFORTABLE & FRIENDLY,78218328,Ivonne,Brooklyn,Bedford-Stuyvesant,40.69191,-73.94636,Private room,50,6,0,,,1,0 +13585495,Great room in amazing Little Italy location!,15960548,Nathan,Manhattan,Little Italy,40.71955,-73.99707,Private room,110,2,1,2016-09-14,0.03,1,0 +13585835,Private Room in the ❤️ of Bushwick.,5352610,Mira,Brooklyn,Williamsburg,40.70648,-73.92997,Private room,65,4,47,2018-10-12,1.28,2,249 +13585905,"LOCATION,LOCATION! 51st/7 AV,2 bedroom luxury bldg",26386038,Alex,Manhattan,Theater District,40.76122,-73.98292,Entire home/apt,185,30,4,2018-11-30,0.21,1,292 +13586284,Brooklyn 3BR Oasis + Yard Featured in Apt Therapy,1725907,Jungwon,Brooklyn,Bedford-Stuyvesant,40.68541,-73.92392,Entire home/apt,195,3,4,2017-08-16,0.11,1,0 +13586426,Great room in Upper West Manhattan,997947,Miriam,Manhattan,Upper West Side,40.80056,-73.96035,Private room,85,2,26,2019-06-24,0.71,1,16 +13586614,East Village 2 BR Duplex Apt on Quiet Block,4047676,Patricia,Manhattan,East Village,40.72539,-73.97963,Entire home/apt,295,2,48,2018-08-09,1.33,1,0 +13587161,A Quiet Studio Apartment in Bedford-Stuyvesant :),78461025,Doreen,Brooklyn,Bedford-Stuyvesant,40.69123,-73.93599,Private room,120,2,21,2019-01-01,0.59,1,0 +13587436,Perfect 2 bedroom in Brooklyn,78464432,Dragica,Brooklyn,Crown Heights,40.6789,-73.96242,Entire home/apt,189,4,15,2019-01-02,0.41,1,15 +13588393,Private Room and Bathroom in Historic Bed-Stuy,50338266,Sammy,Brooklyn,Bedford-Stuyvesant,40.68731,-73.9478,Private room,60,1,0,,,1,0 +13589110,✺ SOHO Adorable Studio ✺ Downtown NYC!,8336084,Ryad,Manhattan,Nolita,40.72154,-73.99577,Entire home/apt,123,2,33,2019-06-15,0.90,1,1 +13589297,Brightly Lit Charming 1 Bed,77990284,Mariam,Manhattan,Upper West Side,40.79394,-73.97665,Private room,89,3,1,2016-07-02,0.03,1,0 +13589415,Cozy studio with HUGE PRIVATE terrace and grill,21283171,Valeryia,Manhattan,East Harlem,40.78706,-73.94798,Entire home/apt,140,1,6,2018-01-17,0.18,1,0 +13589669,East Brooklyn Garden Apartment,78485066,Corie,Brooklyn,East New York,40.6638,-73.89307,Entire home/apt,85,1,106,2019-06-13,2.87,2,337 +13590002,R&R on mount Morris,73850433,Ronald,Manhattan,East Harlem,40.80038,-73.94602,Entire home/apt,169,3,7,2019-06-21,3.28,1,242 +13590391,Cute 1 BD (can sleep up to 4) in the gorg UWS!,78507411,Mel And Laurie,Manhattan,Upper West Side,40.79671,-73.9712,Entire home/apt,145,3,4,2017-01-01,0.11,1,0 +13591017,Charming Designer’s Studio in Prime Williamsburg,10641733,Valentina,Brooklyn,Williamsburg,40.717,-73.96183,Entire home/apt,145,1,61,2019-06-08,1.74,1,11 +13591611,Eclectic Charm in the East Village,4523651,Rick,Manhattan,East Village,40.72552,-73.97879,Entire home/apt,165,2,13,2018-11-27,0.35,1,0 +13595786,Light and spacious 2 bedroom loft in Bushwick,6802844,Kaia,Brooklyn,Bushwick,40.70458,-73.92031,Entire home/apt,152,7,0,,,1,0 +13596286,Bright Top-Floor Suite in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66282,-73.98714,Private room,99,7,10,2018-10-09,0.28,4,36 +13596544,Blues Musician Escape Lodge!,2638806,Ellis,Manhattan,East Village,40.72296,-73.9776,Entire home/apt,110,2,0,,,1,0 +13597896,"Private bedroom in 2 bedroom, 2 bath- apartment",37425564,Joshua,Brooklyn,Midwood,40.6271,-73.97182,Private room,40,3,3,2017-07-30,0.09,1,0 +13599973,Private Room in Cozy 2-Bdrm Greenwich Village Apt.,4025420,Karine,Manhattan,Greenwich Village,40.72948,-73.99986,Private room,115,3,20,2019-07-04,0.59,2,15 +13600398,Helle und moderne Wohnung in Bushwick,11091997,Mario & Marijke,Brooklyn,Bushwick,40.70124,-73.93125,Entire home/apt,157,2,4,2019-03-18,0.12,2,0 +13601777,Planta Baja Studio,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95688,Entire home/apt,1000,1,10,2018-06-14,0.28,3,365 +13603093,Luxury One Bedroom Suite,78672740,Shamaine,Brooklyn,Flatbush,40.64809,-73.9677,Private room,72,1,25,2019-03-16,0.68,1,333 +13603364,Spacious room in Astoria,1924750,Jasmina,Queens,Astoria,40.76376,-73.91438,Private room,40,2,50,2019-05-31,1.63,2,179 +13603951,Cozy NYC 1bedroom - close to all,78499938,Dan,Manhattan,Midtown,40.75561,-73.96472,Entire home/apt,175,4,0,,,1,0 +13604485,Charming Loft-like Garden Apt in Bed-Stuy,56352735,Tunde,Brooklyn,Bedford-Stuyvesant,40.6878,-73.95493,Entire home/apt,90,3,82,2019-06-21,2.22,1,4 +13604794,Quiet room in Central Harlem,27123110,Angel,Manhattan,Harlem,40.80372,-73.95036,Private room,65,3,2,2018-08-23,0.18,1,0 +13605171,"Bright, quiet room in 2br close to park/trains.",14751888,Mary,Manhattan,Upper West Side,40.78697,-73.97351,Private room,79,2,6,2017-08-15,0.16,1,0 +13605192,4 Bedroom House Perfect for Cooperate Rental,62317991,Phillipa,Brooklyn,East Flatbush,40.64145,-73.9433,Entire home/apt,350,2,34,2019-06-24,1.00,1,344 +13606307,Modern stay w. 30 Min. to City Downtown on #4 line,2368191,Lexia,Brooklyn,East Flatbush,40.66375,-73.92974,Entire home/apt,71,6,46,2019-07-01,1.25,1,69 +13606337,"Spacious and clean room, near Columbia University",78727422,Xiaoxu,Manhattan,Morningside Heights,40.80325,-73.96433,Private room,50,10,1,2016-07-19,0.03,1,0 +13606847,1 bedroom furnished with WIFI and cable. Murr Hill,53179388,Raymond,Manhattan,Midtown,40.75004,-73.97089,Entire home/apt,115,30,5,2017-10-07,0.14,10,289 +13607904,Cozy Loft Right Off the Morgan L,42994195,Sean,Brooklyn,Williamsburg,40.70524,-73.93305,Private room,49,5,0,,,1,0 +13613052,Cute Apt in the Heart of Chelsea,25596158,Ashlee,Manhattan,Chelsea,40.74366,-74.0005,Private room,70,1,2,2016-07-28,0.06,1,0 +13613450,"East Village Studio, New York like in the Movies",78807434,Jennifer,Manhattan,East Village,40.72737,-73.97789,Entire home/apt,110,3,6,2019-07-01,0.17,1,34 +13613919,"Sunny, kid friendly apt in Carroll Gardens",40869788,Dominique,Brooklyn,Carroll Gardens,40.68354,-74.00139,Entire home/apt,140,1,4,2018-09-30,0.17,1,0 +13614714,Spacious and Bright in Hamilton Heights,78722739,Ashley,Manhattan,Harlem,40.83077,-73.94847,Entire home/apt,89,2,8,2019-01-02,0.34,1,5 +13614923,Gorgeous Zen Home at Crossroads of Nolita and Soho,305207,Lauren,Manhattan,SoHo,40.7205,-73.9986,Entire home/apt,259,2,3,2016-08-01,0.08,1,0 +13615270,"NYC & Luxury, quiet, safe well located",78826514,Niki,Manhattan,Upper East Side,40.76885,-73.96472,Entire home/apt,160,2,48,2019-06-30,1.30,1,40 +13615840,UES studio walking distance to central park,78832817,Heather,Manhattan,Upper East Side,40.76873,-73.95464,Entire home/apt,113,7,1,2016-08-29,0.03,1,0 +13616684,Bright and cozy walkup,2977429,Phoebe,Manhattan,East Village,40.72402,-73.97778,Entire home/apt,300,2,0,,,1,0 +13616940,MODERN & SPACIOUS NEAR CENTRAL PARK / HARLEM,3683612,Cynthia,Manhattan,Harlem,40.8018,-73.95166,Entire home/apt,125,3,26,2018-09-03,0.70,1,67 +13617449,Morningside Heights: Comfy and Cozy 1 BR,32219748,JacQueline,Manhattan,Morningside Heights,40.81005,-73.9572,Entire home/apt,105,5,2,2016-08-29,0.06,1,0 +13618148,"Room close to Prospect Park, minutes to NYC!",5110884,Giusy,Brooklyn,Flatbush,40.65226,-73.95732,Private room,70,2,0,,,1,0 +13618453,"Luxurious, Spacious, Private Bath, Nice Hosts too",41947929,Connie,Brooklyn,Crown Heights,40.67667,-73.94826,Private room,125,1,47,2019-07-01,1.36,2,151 +13619296,Full Apt 2 Bedrooms in Brooklyn - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70876,-73.95125,Entire home/apt,150,2,0,,,3,0 +13619385,Location Location Location! Chic Studio Available!,47502969,Nekeshia,Manhattan,West Village,40.73273,-74.00704,Entire home/apt,275,3,12,2018-09-26,0.33,1,12 +13619661,Williamsburg Private Room,78870889,Carlos,Brooklyn,Williamsburg,40.71791,-73.94242,Private room,65,3,0,,,1,0 +13620412,"Cozy, private bed & private bath",77765017,Isabelle,Brooklyn,Bedford-Stuyvesant,40.68499,-73.94433,Private room,65,3,124,2019-06-20,3.45,1,199 +13620503,SOHO LOFT WITH PRIVATE ROOF DECK,27175000,Amy,Manhattan,SoHo,40.72263,-74.00424,Entire home/apt,400,3,2,2016-08-08,0.06,1,0 +13621211,Luxurious 2 Bedroom with amazing finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74136,-73.98006,Entire home/apt,159,30,5,2019-05-01,0.14,91,312 +13622049,An urban nest; 7 minutes from Central Park,44700210,Christina,Manhattan,Upper East Side,40.7758,-73.95472,Entire home/apt,200,5,11,2016-11-27,0.30,2,0 +13622056,Luxury For Less In Downtown Manhattan,40425220,Lauren,Manhattan,Battery Park City,40.71617,-74.01468,Private room,225,1,1,2016-11-05,0.03,1,0 +13622454,"Large 1 Bed/1 Bath by Central Park, Hunter College",78912246,Priya,Manhattan,Upper East Side,40.76711,-73.96177,Entire home/apt,199,1,3,2016-10-01,0.09,1,0 +13622647,An urban nest; 7-min from Central Park/The Met,44700210,Christina,Manhattan,Upper East Side,40.77775,-73.95361,Shared room,75,1,6,2016-08-07,0.16,2,0 +13622777,Sunny bedroom in Bedstuy,68760676,Gina,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91507,Private room,44,1,1,2016-08-01,0.03,1,0 +13623182,"Spacious, Airy room in Williamsburg",7571391,Aidan,Brooklyn,Williamsburg,40.71673,-73.94832,Private room,100,5,1,2016-08-01,0.03,1,0 +13623187,Heart of Williamsburg 1 bedroom Bedford L train,13752339,Meg,Brooklyn,Williamsburg,40.72012,-73.95675,Entire home/apt,130,28,20,2018-08-27,0.59,1,80 +13623256,Stunning Large Family Home,21894419,Alba,Manhattan,Financial District,40.70994,-74.00706,Entire home/apt,408,2,3,2019-06-23,0.85,2,106 +13623275,"Sunny, Spacious, Greenpoint 1 Bed Apt",43125231,Freddy,Brooklyn,Greenpoint,40.7354,-73.95706,Entire home/apt,120,3,4,2017-09-21,0.12,1,0 +13623361,New York City with a VIEW,22533562,Lou,Manhattan,Theater District,40.75967,-73.98732,Entire home/apt,273,1,0,,,1,0 +13623452,Spacious 1BR apt by Prospect Park!,69591507,Mont,Brooklyn,East Flatbush,40.65275,-73.95119,Entire home/apt,85,1,0,,,1,0 +13623618,Lovely room close to subway in beautiful Astoria!,39375487,Suzanne,Queens,Long Island City,40.75353,-73.9289,Private room,80,2,16,2018-12-09,0.49,1,0 +13623671,Sunny Room in Hip Bushwick,26500909,Sarah,Brooklyn,Bushwick,40.70347,-73.92764,Private room,60,2,1,2016-06-27,0.03,1,0 +13623700,Spacious and Quiet Gramercy 1 Bedroom,21656569,Alana,Manhattan,Gramercy,40.73577,-73.98057,Entire home/apt,275,5,0,,,1,0 +13623747,Spacious studio in NEW apt building in Astoria,78931932,Melanie,Queens,Astoria,40.76764,-73.9279,Entire home/apt,125,25,5,2016-11-14,0.14,1,0 +13623880,Conveniently located 2 BR Time Square Apartment,78934668,Marissa,Manhattan,Hell's Kitchen,40.76395,-73.9884,Entire home/apt,200,2,25,2018-04-22,0.68,1,0 +13623891,Stunning Studio in Midtown BEST LOCATION,78929276,Blaine,Manhattan,Midtown,40.7441,-73.98834,Entire home/apt,199,2,106,2019-06-20,2.96,1,250 +13623987,Huge Charming One Bedroom Apartment,78936234,Damian,Manhattan,Upper East Side,40.77374,-73.95684,Entire home/apt,265,2,6,2019-03-22,0.18,1,364 +13624795,Large 4 BR West Village townhouse/roof garden,36435055,Barbara,Manhattan,West Village,40.73484,-74.00364,Entire home/apt,700,2,18,2018-07-22,0.50,2,0 +13624873,East Village Cottage,2010460,Thaya,Manhattan,East Village,40.72544,-73.9899,Private room,80,2,31,2019-06-30,0.94,1,28 +13625381,The perfect spot in Bushwhick,9320995,Jessie,Brooklyn,Bushwick,40.7035,-73.92912,Private room,35,3,1,2018-01-01,0.05,1,0 +13625610,Cute & Eclectic Studio in Lower East Side,78964994,Satsko,Manhattan,Lower East Side,40.71844,-73.9858,Entire home/apt,135,2,104,2019-06-23,2.81,1,76 +13627991,Private Room in a Huge Apartment (East Village),2080047,Lawrence,Manhattan,East Village,40.72392,-73.98719,Private room,70,3,2,2017-09-30,0.09,1,0 +13630755,Apartment Available in Bay Ridge Brooklyn,79020870,Sharn,Brooklyn,Fort Hamilton,40.62106,-74.03384,Shared room,179,1,0,,,1,0 +13631232,Spacious One-Bedroom in an ideal location,64182621,David,Manhattan,East Harlem,40.78584,-73.94899,Entire home/apt,99,5,0,,,1,0 +13632649,Charming Vinegar Hill 1-bedroom apt w/ backyard,50210611,Ali,Brooklyn,Vinegar Hill,40.7041,-73.98089,Entire home/apt,135,6,1,2016-07-24,0.03,1,0 +13632675,Amazing apartment in Brooklyn's best neighborhood,7408231,Bryan,Brooklyn,Gowanus,40.68331,-73.98609,Entire home/apt,104,2,0,,,1,0 +13632841,"Heart of Astor place, 1 bedroom Apt, doorman bldg",11686214,Jessica,Manhattan,East Village,40.73055,-73.99146,Entire home/apt,128,3,3,2016-08-28,0.08,1,0 +13633299,"Brooklyn Room, Calm Spacious Oasis, Prospect Park",6136799,Christina,Brooklyn,Flatbush,40.65257,-73.96259,Private room,60,2,44,2019-06-30,1.33,1,1 +13633400,2 Bedroom Modern Condo,4372467,Lana,Brooklyn,Boerum Hill,40.68882,-73.98911,Entire home/apt,170,5,2,2016-12-25,0.06,1,0 +13633468,Chill in Alphabet City,27379154,Elizabeth,Manhattan,East Village,40.72248,-73.98316,Private room,85,3,4,2016-11-28,0.11,1,0 +13634292,"Positive and Spacious Bedroom in Sunnyside, Queens",12722812,Dominic,Queens,Sunnyside,40.73846,-73.92273,Private room,60,4,6,2017-09-04,0.17,1,0 +13634496,It must be your BDAY because this deal is great,28841406,Jd,Manhattan,Two Bridges,40.71298,-73.99406,Private room,75,3,0,,,1,0 +13634685,"LUXURY apt, INCREDIBLE location, PERFECT stay!",1511614,Chris,Manhattan,Upper West Side,40.79229,-73.97308,Entire home/apt,349,3,29,2018-04-08,0.79,1,0 +13635848,Central Williamsburg Apt.,79078275,Jacqueline,Brooklyn,Williamsburg,40.72003,-73.95756,Private room,90,1,0,,,1,0 +13636044,"Sunny, Spacious Corner Room",13074730,Leah,Brooklyn,Flatbush,40.64503,-73.96027,Private room,55,1,0,,,1,0 +13637050,I HEART HARLEM,2727797,Emily,Manhattan,Harlem,40.82629,-73.94785,Private room,50,5,0,,,1,0 +13638026,Large 1 bed apt in heart of Williamsburg,3695865,Jessica,Brooklyn,Williamsburg,40.71911,-73.95828,Entire home/apt,200,2,3,2016-10-30,0.08,1,0 +13638122,Private Room in Bright 2 Bd Greenwich Village Apt,4025420,Karine,Manhattan,Greenwich Village,40.72875,-74.00169,Private room,110,4,1,2016-10-23,0.03,2,0 +13639075,"Bright, spacious and quiet two-bedroom Chelsea apt",79114007,Gary,Manhattan,Chelsea,40.74122,-73.99963,Entire home/apt,325,2,47,2019-06-30,1.30,1,0 +13639276,Sunny & Colorful Private BR in Crown Heights,30656620,Aliza,Brooklyn,Crown Heights,40.66887,-73.95292,Private room,70,2,0,,,1,0 +13640120,Perfect Prospect Park Pad,16696505,Charles,Brooklyn,South Slope,40.6638,-73.97935,Entire home/apt,180,5,2,2017-07-01,0.07,1,0 +13640690,Studio Apartment Near Central Park/Hell's Kitchen,34915405,Joshua,Manhattan,Hell's Kitchen,40.76751,-73.98483,Entire home/apt,134,1,24,2017-07-01,0.65,1,0 +13640966,"One Bedroom Apartment in Brownstone in Harlem, NYC",79141968,Conrad,Manhattan,Harlem,40.81044,-73.94916,Entire home/apt,150,3,13,2019-06-09,0.37,1,207 +13641625,Private rooms in beautiful apartment on UWS,26621764,Marit,Manhattan,Morningside Heights,40.80534,-73.96654,Private room,150,1,0,,,1,0 +13642019,"Historic, Lovely, Modern, Peaceful Apt in Brooklyn",14607718,Ella,Brooklyn,Greenpoint,40.73005,-73.95807,Entire home/apt,200,2,58,2019-05-19,1.71,1,257 +13642073,Bright spacious Brooklyn Apartment near Pratt,1316648,Savannah,Brooklyn,Bedford-Stuyvesant,40.69119,-73.9601,Entire home/apt,110,4,7,2019-04-23,0.20,1,0 +13642568,Luxe & Spacious Williamsburg Studio,79167228,Nate,Brooklyn,Williamsburg,40.71666,-73.95447,Entire home/apt,105,5,11,2018-08-06,0.30,1,0 +13642631,Doorman Chelsea One Bedroom- Convenient and Fun!,28115515,Andrew,Manhattan,Chelsea,40.74179,-73.99855,Entire home/apt,150,1,0,,,1,0 +13643063,Beautiful Brownstone Triplex,79176358,Jackie,Brooklyn,Boerum Hill,40.68601,-73.98335,Entire home/apt,200,5,0,,,1,0 +13649713,"Lovely, Sunny Studio near Central Park in UWS",45381744,Tatenda,Manhattan,Upper West Side,40.79759,-73.96544,Entire home/apt,165,1,3,2016-07-19,0.08,1,0 +13649833,Sunny Manhattan Apt (week / month discounts),4110677,Justin,Manhattan,Harlem,40.8085,-73.94113,Private room,75,14,4,2019-07-01,0.11,2,184 +13650177,"private yard & apt-near metro,direct to Manhattan",79258584,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94115,Entire home/apt,104,5,115,2019-06-24,3.13,1,182 +13650422,Convenient Financial District Studio,2486611,Jem,Manhattan,Financial District,40.70884,-74.00754,Entire home/apt,130,2,15,2018-05-31,0.42,1,0 +13651173,Spacious and cozy Lower East Side bedroom,79268929,Paulina,Manhattan,East Village,40.72383,-73.9839,Private room,130,1,4,2016-07-05,0.11,1,0 +13651250,Classic Gramercy Studio,35857384,Susan,Manhattan,Gramercy,40.73536,-73.98433,Entire home/apt,145,7,7,2017-11-05,0.23,1,0 +13651334,Beautiful and huge room.,810050,Gladys,Manhattan,Harlem,40.82633,-73.94459,Private room,60,1,1,2016-07-09,0.03,1,157 +13652851,"Cozy, Quiet Neat Room for You!",14798138,Marilyn,Queens,Cambria Heights,40.69061,-73.73917,Private room,40,5,1,2016-10-24,0.03,1,179 +13653116,Cute private room perfect as a travel base,19096739,Mimi,Manhattan,Harlem,40.82443,-73.95175,Private room,60,1,0,,,1,0 +13653343,Cozy Harlem Haven,299090,T,Manhattan,East Harlem,40.80767,-73.93913,Entire home/apt,99,2,7,2019-01-06,0.20,1,0 +13653647,"Newly Renovated, Cozy Brooklyn Room w/terrace",79293619,Peyton,Brooklyn,Bushwick,40.70381,-73.91922,Private room,75,2,0,,,1,0 +13653677,Spacious sunny room in Queens,79298323,Crispy,Queens,Maspeth,40.73359,-73.89227,Private room,70,14,35,2019-03-07,1.58,3,215 +13654166,"Cozy private Studio, easy 60 min. commute to NYC!",79305630,Elvira,Brooklyn,Gravesend,40.59535,-73.98946,Entire home/apt,109,4,80,2019-07-01,2.53,2,107 +13654347,Upper West Side Classic WHOLE 2 Bedroom apt,23684,Zhenya,Manhattan,Upper West Side,40.79774,-73.97274,Entire home/apt,250,3,5,2019-01-05,0.15,1,23 +13654429,Big West Harlem/Hamilton Heights Apt!,4622157,Katie,Manhattan,Harlem,40.82438,-73.9502,Entire home/apt,129,4,4,2017-12-08,0.11,1,0 +13654534,"Brooklyn Loft, Rooftop views, Street Parking....",4703687,Daphne,Brooklyn,Greenpoint,40.72341,-73.93616,Entire home/apt,90,4,0,,,2,0 +13654760,Spacious LES Studio with Private Outdoor Space,88260,Eric,Manhattan,Lower East Side,40.71967,-73.98506,Entire home/apt,150,3,47,2019-06-28,1.33,1,39 +13655779,Studio 1BR in the heart of East Village,5369934,Kacie,Manhattan,East Village,40.72857,-73.9854,Entire home/apt,198,3,5,2019-03-20,0.22,1,0 +13656529,Bushwick Music Mansion,57340330,Janeth,Brooklyn,Bushwick,40.68936,-73.90814,Private room,55,1,5,2018-09-15,0.14,1,89 +13656752,"Spacious 1 Bedroom in Vibrant Harlem, Manhattan",4278354,Demarius,Manhattan,Harlem,40.80927,-73.9427,Private room,61,1,4,2017-10-09,0.11,1,0 +13656902,Cozy 1 Bedroom Apartment with Back Patio,79340962,Ron,Queens,Astoria,40.76923,-73.91835,Entire home/apt,90,1,2,2016-08-06,0.05,1,0 +13657030,Convenient room in Manhattan close to Central Park,31252117,Weipeng,Manhattan,Harlem,40.80131,-73.9579,Private room,45,7,2,2016-07-30,0.06,1,0 +13657292,"Bright, Airy, Rockaway Beach House w/ Backyard",79341807,Tory,Queens,Arverne,40.59421,-73.80043,Entire home/apt,200,2,35,2019-07-06,0.95,1,4 +13657515,Private Room in Beautiful Crown Heights,29342746,Tanisha,Brooklyn,Crown Heights,40.67477,-73.95313,Private room,60,2,1,2018-05-27,0.07,1,0 +13657938,Calm & Clean 1 Bedroom in East Village/ Gramercy,75501075,Cara,Manhattan,Gramercy,40.73192,-73.98291,Entire home/apt,150,5,0,,,1,0 +13658407,Spacious Sunlit 1 Bedroom Williamsburg Apt,26929394,Sushil,Brooklyn,Williamsburg,40.71503,-73.94733,Entire home/apt,125,3,2,2017-07-17,0.08,1,0 +13658605,Master bedroom in penthouse apt of luxury building,30719074,Tanisha,Manhattan,Theater District,40.75927,-73.98592,Private room,80,7,0,,,1,0 +13658967,Private Room on the East River!,51432814,Miguel,Manhattan,East Harlem,40.7865,-73.94288,Private room,80,3,0,,,1,0 +13659004,"Sunlit, cozy bedroom in Bushwick:: needs owner!",79373292,Yenmin,Brooklyn,Bushwick,40.68392,-73.90654,Private room,35,6,2,2016-08-23,0.06,1,0 +13659055,Private sunny bedroom very close to Manhattan!,79373189,Laureta,Queens,Long Island City,40.75726,-73.93555,Private room,40,1,113,2019-05-27,3.17,2,57 +13659198,Huge Relaxing Room in Brooklyn Duplex Loft,8059211,Natalie,Brooklyn,Bushwick,40.69828,-73.93206,Private room,120,1,0,,,1,0 +13659914,Large & sunny 2-bedroom in Windsor Terrace,15588105,Anna,Brooklyn,Windsor Terrace,40.64999,-73.97307,Entire home/apt,100,30,2,2018-08-06,0.06,1,222 +13659949,2bdr BIG Oasis. Price cut for cat caretakers.,4606955,Jens,Brooklyn,Clinton Hill,40.68552,-73.9609,Entire home/apt,259,6,4,2018-05-14,0.11,1,7 +13659997,"Beautiful, sunny studio steps from Gramercy Park!",4411751,Danielle,Manhattan,Gramercy,40.73786,-73.98678,Entire home/apt,129,90,6,2018-02-28,0.25,1,0 +13660249,WHOLE 1st floor-Family Friendly-2 BdRm w/Backyard,46370904,Cynthia,Brooklyn,Sunset Park,40.64569,-74.00784,Entire home/apt,89,10,3,2018-08-23,0.09,1,1 +13661280,Room in Carroll Gardens,3977023,Vaida,Brooklyn,Carroll Gardens,40.6839,-73.99266,Private room,75,5,0,,,2,0 +13662078,Bright Spacious in S Williamsburg,182226,Alina,Brooklyn,Williamsburg,40.70845,-73.95397,Entire home/apt,135,7,9,2019-06-06,0.25,1,7 +13662692,Lovely 1bed apt (UWS) next to 72nd St. Subway & CP,79231531,Nimmi,Manhattan,Upper West Side,40.77778,-73.97795,Entire home/apt,200,4,1,2016-09-13,0.03,1,0 +13666116,Private Room in Morningside Heights,79459633,Andrew,Manhattan,Morningside Heights,40.80442,-73.96362,Private room,90,2,8,2017-09-11,0.22,1,0 +13666641,Park Slope living - bright 2BR,3988830,Pol,Brooklyn,South Slope,40.66658,-73.98117,Entire home/apt,200,3,1,2016-07-25,0.03,1,3 +13667440,Private room in the best location of NYC,22019073,Peter,Manhattan,Hell's Kitchen,40.75571,-73.99594,Private room,90,15,0,,,1,0 +13667633,"Gorgeous, cozy, serene flat in Brooklyn",461413,Kat,Brooklyn,Greenpoint,40.73516,-73.95532,Entire home/apt,150,2,68,2019-06-29,1.93,1,100 +13667739,"Charming 2 Bedroom Apartment, Incredible Location",8457214,Sarah,Manhattan,Nolita,40.7224,-73.99604,Entire home/apt,110,1,2,2016-07-01,0.05,2,0 +13667835,Beautiful cozy apartment Upper East Side,79479983,Paula,Manhattan,Upper East Side,40.78137,-73.95176,Entire home/apt,150,2,1,2016-08-13,0.03,1,0 +13668127,Private Room in Sunny Greenwich Village Apt.,6214982,Amy,Manhattan,Greenwich Village,40.72948,-74.00153,Private room,115,2,4,2017-01-03,0.11,1,0 +13668468,"Private room - Manhattan 25min, Prospect Park 5min",29013448,Mari,Brooklyn,Prospect-Lefferts Gardens,40.65668,-73.95969,Private room,42,1,8,2017-08-19,0.22,2,0 +13668573,Private Modern Room in Williamsburg,56044722,Simon,Brooklyn,Williamsburg,40.70922,-73.94722,Private room,75,2,1,2016-07-19,0.03,1,0 +13668833,Charming 1BR Perfect for Couples or Solo Traveller,79488969,Sadie,Manhattan,Upper West Side,40.77597,-73.98038,Entire home/apt,189,2,72,2019-07-01,1.95,1,27 +13668941,Hamilton Heights Apartment,79492070,Reylyn,Manhattan,Harlem,40.82022,-73.95358,Entire home/apt,125,1,7,2016-08-28,0.19,1,0 +13669049,Large Studio w/ Garden on the Park!,6057941,Marc,Brooklyn,Windsor Terrace,40.65879,-73.97733,Entire home/apt,150,5,0,,,1,0 +13669064,perfect Location! studio!best value!Sleeps3,2119276,Host,Manhattan,Kips Bay,40.73969,-73.98445,Entire home/apt,175,30,5,2017-12-19,0.14,39,283 +13669161,Comfortable-Private one room in LES,17605950,Denis,Manhattan,Lower East Side,40.71881,-73.98882,Private room,99,2,48,2018-02-03,1.30,1,0 +13669391,Spacious 1 bedroom in Woodlawn NYC,79340220,Kathryn,Bronx,Woodlawn,40.89984,-73.86902,Entire home/apt,85,2,43,2019-07-06,1.19,1,299 +13669423,XL Studio Prime location~newly designed~best value,2119276,Host,Manhattan,Flatiron District,40.74023,-73.98443,Entire home/apt,185,30,9,2019-06-05,0.29,39,346 +13669613,Spacious East Village 2 bedroom with living room.,79501489,Christopher,Manhattan,East Village,40.73172,-73.9846,Entire home/apt,177,1,2,2016-06-29,0.05,1,0 +13669942,Private Room and bathroom in the best of Brooklyn,3136445,Julie,Brooklyn,Carroll Gardens,40.6748,-74.00024,Private room,100,2,25,2017-01-15,0.68,1,0 +13670094,Spacious 1 Bedroom Near Central Park.,2637013,Mickey,Manhattan,East Harlem,40.79878,-73.94495,Entire home/apt,102,4,15,2017-08-15,0.42,1,0 +13670109,Cute Studio in the heart of East Village !,59938558,Thomas,Manhattan,East Village,40.72735,-73.98739,Entire home/apt,120,3,4,2016-10-09,0.11,1,0 +13670376,Bright and spacious 1 BR,79510521,Nina,Manhattan,Murray Hill,40.74327,-73.97202,Entire home/apt,155,5,2,2016-07-28,0.05,1,0 +13671558,Spacious private room in Harlem,7127392,Nzingha,Manhattan,Harlem,40.80549,-73.95595,Private room,67,2,36,2018-08-09,0.98,1,0 +13671936,Playful Room in Techie Loft,9371652,Albert,Brooklyn,Williamsburg,40.70704,-73.93763,Private room,50,2,1,2017-05-27,0.04,1,0 +13672890,"1 Bedroom in 2 Bedroom Flex - Doormen, Free Gym",66114992,Kyle,Manhattan,Upper East Side,40.76247,-73.96238,Private room,55,5,0,,,1,0 +13673242,Luxurious 1 or two bed rm private apartment,79505257,Darryle,Staten Island,Howland Hook,40.63245,-74.17065,Entire home/apt,100,3,21,2019-05-12,0.57,1,88 +13673459,"Cozy, Chic and Convenient One Bedroom Apt",79547468,Vanessa,Manhattan,East Harlem,40.79758,-73.94518,Entire home/apt,125,6,2,2016-12-31,0.06,1,0 +13673873,Beautiful bedroom in ideal Brooklyn location!,78285648,Sharina,Brooklyn,Kensington,40.63622,-73.97406,Entire home/apt,70,1,0,,,1,0 +13673951,Large private room & bath in sunny 2Bed 2Bath apt.,42605385,Cameron,Brooklyn,Flatbush,40.63624,-73.96365,Private room,39,4,2,2016-08-01,0.05,3,0 +13674053,Beautiful & Sunny Room in Vibrant Bushwick!,45369628,Maya,Brooklyn,Bushwick,40.7017,-73.92344,Private room,60,2,0,,,1,0 +13674169,Updated 1 BR with Great Layout and Design,75029289,Rlg,Manhattan,Upper East Side,40.77377,-73.9468,Entire home/apt,125,30,8,2019-06-24,0.25,5,0 +13674338,Sunny 2 Bedroom Best Location,75029289,Rlg,Manhattan,Upper East Side,40.77467,-73.95533,Entire home/apt,133,30,11,2019-05-12,0.34,5,126 +13674349,The Lefferts Manor $149per night,62028227,George,Brooklyn,Bedford-Stuyvesant,40.68114,-73.95795,Entire home/apt,149,3,3,2017-06-22,0.08,1,189 +13674799,Private suite in Carroll Gardens,30066784,Mark,Brooklyn,Gowanus,40.67674,-73.99642,Private room,110,2,204,2019-07-05,6.19,1,41 +13675000,Williamsburg Chill Haus,11279326,Ivan,Brooklyn,Williamsburg,40.70735,-73.95012,Private room,150,3,2,2016-09-10,0.06,1,0 +13675413,Inspired by you - Astoria Enclave w/ Large Rooms,79579355,Jay And Katt,Queens,Astoria,40.76985,-73.92481,Entire home/apt,205,3,50,2019-07-03,1.41,1,324 +13675798,Beautiful & Spacious Studio Near Central Park,77983246,Jenson,Manhattan,Upper East Side,40.77798,-73.95251,Entire home/apt,100,2,21,2018-11-18,0.57,1,16 +13676601,Here's a great offer on a spacious furnished room!,79598330,Nesha,Brooklyn,East Flatbush,40.66337,-73.92576,Private room,30,3,20,2018-03-31,0.54,1,27 +13679698,Private Bedroom close to Subway and Central Park,23088190,Florence,Manhattan,Morningside Heights,40.80364,-73.96541,Private room,69,3,1,2016-07-08,0.03,1,0 +13681859,B's SoHo Apartment,3522798,B,Manhattan,SoHo,40.72626,-74.00154,Entire home/apt,158,1,0,,,1,0 +13682508,"Sun Filled, Luxury 1BR with Pool, Gym, Roof Deck!",13030891,Robert,Brooklyn,Fort Greene,40.69595,-73.98173,Entire home/apt,190,1,3,2016-09-19,0.09,1,0 +13685550,Spacious BedSty bedroom with lovely summer garden,79704239,Alice,Brooklyn,Bedford-Stuyvesant,40.68888,-73.95492,Private room,36,7,0,,,2,0 +13685787,Cozy room with Private porch,69977115,Jacob,Brooklyn,Bensonhurst,40.61649,-73.99043,Private room,79,2,1,2016-07-18,0.03,4,179 +13685807,"Steps to Times Square, Radio City, West 50's",20446747,Josh,Manhattan,Hell's Kitchen,40.76638,-73.99013,Entire home/apt,176,4,105,2019-07-01,2.99,1,143 +13685871,Modern & Spacious Luxury 1-Bedroom in Williamsburg,2438907,Amjad,Brooklyn,Williamsburg,40.71894,-73.96403,Entire home/apt,199,3,23,2018-06-26,0.63,1,0 +13685932,Hudsonview Terrace in Hell's Kitchen,6608774,Dustin,Manhattan,Hell's Kitchen,40.76609,-73.99305,Private room,150,3,0,,,1,0 +13686022,Quiet bedroom in a shared apt at the center of BK.,57628579,Alexander,Brooklyn,Gowanus,40.68078,-73.984,Private room,64,2,2,2016-07-25,0.06,1,0 +13686122,Spacious 1 Bedroom steps away from Union Square,79713170,Jesse,Manhattan,East Village,40.73202,-73.98766,Entire home/apt,250,5,0,,,1,0 +13686425,"Cozy Room, Gorgeous Penthouse Apartment, Manhattan",46253146,Raquel,Manhattan,Harlem,40.82924,-73.94783,Private room,50,1,0,,,1,0 +13686914,Murray Hill/Midtown East Flex Bedroom,28250527,Elisa,Manhattan,Midtown,40.75257,-73.97148,Private room,65,1,0,,,1,0 +13686978,Sun-filled loft,79724562,Theodora,Manhattan,East Village,40.72577,-73.99169,Entire home/apt,118,10,1,2016-07-30,0.03,1,0 +13687060,Luxury drmn Bldg + Empire State Views & Roof Top!,21419119,Sebastien,Manhattan,Kips Bay,40.74033,-73.98268,Entire home/apt,189,365,7,2018-03-11,0.19,1,362 +13687101,Private room in a hip neighborhood,79725282,Izzi,Manhattan,Upper East Side,40.76601,-73.95814,Private room,79,1,3,2016-07-28,0.08,1,0 +13687180,Clean Comfy Room in Clinton Hill,27473592,Sam,Brooklyn,Clinton Hill,40.68297,-73.96115,Entire home/apt,75,1,2,2016-08-09,0.05,1,0 +13688249,Modern loft in great neighborhood,79743216,Stepha,Brooklyn,Bushwick,40.70416,-73.9211,Entire home/apt,100,5,2,2016-07-31,0.06,1,0 +13688316,Cozy 1BR on the UES near 6 Train,79744263,Eddy,Manhattan,Upper East Side,40.77386,-73.95348,Entire home/apt,200,6,0,,,1,0 +13688372,Quiet room 25 min from Manhattan,32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92196,Private room,65,1,126,2019-06-22,3.50,3,0 +13688670,Lovely 2-bed apt 20' to Manhattan. Walk to train,79751520,Julia,Queens,Forest Hills,40.71307,-73.84833,Entire home/apt,90,1,35,2019-06-14,3.31,2,310 +13688739,Comfy Cave Inn,79752355,Eduardo,Bronx,Fordham,40.85859,-73.89571,Entire home/apt,65,1,9,2017-09-02,0.25,1,0 +13688888,"Great Studio Apartment, 15-20mins from Downtown",79753770,Katrina,Manhattan,Washington Heights,40.83669,-73.94274,Entire home/apt,125,3,27,2019-05-23,0.79,2,308 +13689663,Great Room in Charming Nolita Apartment,8338942,Victor,Manhattan,Nolita,40.72241,-73.99377,Private room,124,1,168,2019-06-22,4.58,4,147 +13689706,If Tinkerbell Lived in Bedstuy Brooklyn <3,46083939,Keona,Brooklyn,Bedford-Stuyvesant,40.69008,-73.92661,Entire home/apt,120,1,34,2018-01-01,0.94,1,0 +13693976,Spacious Apartment in Crown Heights,79820757,Blondine,Brooklyn,Crown Heights,40.67611,-73.94106,Entire home/apt,300,3,83,2019-07-06,2.43,2,218 +13694021,"BasementSolo Private bedRoom No +Window in NYC, 2E",31307789,Luffy,Queens,Corona,40.74736,-73.85587,Shared room,27,2,13,2019-06-21,0.35,2,361 +13694127,Williamsburg 5 minutes from Manhattan,79824377,Inger-Lise,Brooklyn,Williamsburg,40.70902,-73.9511,Private room,75,4,0,,,1,0 +13694129,"Manhattan-very close to everywhere +muy cercadetodo",71886811,W. Alvaro,Manhattan,Morningside Heights,40.81596,-73.95999,Private room,86,6,34,2019-03-27,0.93,3,90 +13694279,Sunny Private 2 Bedroom Apt. in a Victorian House,42605385,Cameron,Brooklyn,Flatbush,40.63627,-73.96514,Entire home/apt,113,7,0,,,3,0 +13694429,Convenient Manhattan room above express trains,79738917,Kaushik,Manhattan,Harlem,40.80968,-73.95355,Private room,69,4,0,,,1,0 +13694692,Queens size bed in a safe & spacious bedroom,21325944,Xi,Manhattan,Harlem,40.81932,-73.95761,Private room,50,2,16,2019-06-28,0.46,1,0 +13695031,Beautiful Chelsea Apartment with many amenties,52237758,Lara,Manhattan,Chelsea,40.74075,-73.99567,Entire home/apt,155,2,1,2016-06-27,0.03,1,0 +13696003,"Beautiful, well-lit pre-war apt",3792661,Ben,Manhattan,Morningside Heights,40.80974,-73.96034,Private room,90,7,4,2017-12-17,0.12,1,0 +13696267,Pretty private room in Brooklyn by Prospect park,29013448,Mari,Brooklyn,Prospect-Lefferts Gardens,40.65836,-73.96161,Private room,44,2,15,2017-09-07,0.43,2,0 +13697001,A shared spacious bedroom with attached bathroom,52267190,Jas,Queens,Ozone Park,40.68226,-73.84396,Shared room,25,1,0,,,1,0 +13697770,Kid Friendly 2BDR in Greenwich Village w/ Balcony,3074354,Sachi,Manhattan,Greenwich Village,40.7293,-73.99479,Entire home/apt,499,4,0,,,1,0 +13698019,"Roof Deck, Grill & Private Room! Live like a local",24341064,Dori,Brooklyn,Sunset Park,40.66131,-73.99563,Private room,90,2,16,2016-11-07,0.44,1,0 +13698284,True 1 Bedroom Apt in Manhattan's Lower East Side,7147901,Sabrina,Manhattan,Lower East Side,40.71526,-73.98484,Entire home/apt,118,1,6,2016-09-24,0.16,1,0 +13698623,Melrose Place...,33862021,Victor,Bronx,Melrose,40.82296,-73.91429,Private room,42,2,2,2016-10-24,0.06,1,0 +13698789,Room Overlooking Hudson River in a Big Apartment,57123462,Sava,Manhattan,Harlem,40.82717,-73.95249,Private room,57,5,4,2017-05-24,0.11,1,0 +13699008,Warm sun bathed loft apartment in Greenpoint.,74310552,Jordan,Brooklyn,Greenpoint,40.73461,-73.95724,Entire home/apt,150,4,3,2019-02-10,0.24,1,0 +13699396,Room in Williamsburg close to L/G/M/J/Z trains,4283766,Francisco,Brooklyn,Williamsburg,40.71005,-73.95509,Private room,66,7,0,,,1,0 +13699944,Sunny beautiful bedroom in 1 bedroom apartment.,79834985,Sydnei,Manhattan,Tribeca,40.71798,-74.01253,Entire home/apt,95,7,0,,,1,0 +13700144,Great Room in NY close Upper East Side,33411808,Maxime,Manhattan,East Harlem,40.78559,-73.94345,Private room,40,3,0,,,1,0 +13700298,Private room w/ ac- in Manhattan,61585786,Brian,Manhattan,Washington Heights,40.83619,-73.94099,Private room,65,7,103,2019-06-07,2.79,1,11 +13700820,Private Room with Queen-size Bed,3856352,Bryan,Manhattan,East Harlem,40.7974,-73.9354,Private room,40,4,14,2018-11-27,0.41,1,0 +13700836,Your home in Flatiron NYC,4960457,Al,Manhattan,Flatiron District,40.7414,-73.99075,Entire home/apt,215,45,0,,,1,25 +13702697,2 Bdr gem by Time sq,79951689,Andrea,Manhattan,Hell's Kitchen,40.76496,-73.99415,Entire home/apt,199,5,0,,,1,0 +13705844,Master Bedroom in Quaint French Neighborhood,37707224,Mørgan Keon,Brooklyn,Gowanus,40.67961,-73.98886,Private room,65,1,0,,,1,0 +13707310,Beautiful spacious room available in Brooklyn,7747816,Brooks,Brooklyn,Crown Heights,40.67089,-73.96035,Shared room,70,1,0,,,1,0 +13707813,"Harlem Apt, along 1 train",79546891,Brigitte,Manhattan,Harlem,40.82,-73.95331,Private room,59,4,8,2018-07-16,0.26,1,0 +13708336,Stylish 1BD in the heart of East Village,840987,Pasha,Manhattan,East Village,40.72603,-73.98915,Entire home/apt,150,3,0,,,1,0 +13708345,"furnished basement level apartment , 1000 sq ft",80023687,Lb,Brooklyn,Greenpoint,40.73233,-73.95443,Entire home/apt,300,1,1,2016-07-02,0.03,1,83 +13708820,"Safe upper-class area,20 min to Manhattan/Airports",15838559,Weimin,Queens,Forest Hills,40.71429,-73.85088,Private room,59,3,15,2018-08-04,0.41,4,0 +13709910,CUTE & QUIET ROOM IN A BROWNSTONE IN CLINTON HILL,10366292,Lea,Brooklyn,Clinton Hill,40.6854,-73.96395,Private room,45,7,1,2017-10-11,0.05,3,0 +13710241,A Cozy Bedroom in 2 Bedroom Apt,6110471,Yarynka,Manhattan,Harlem,40.801,-73.95833,Private room,110,1,23,2019-06-09,1.00,1,146 +13711038,Beautiful room in Williamsburg (Roebling and N7),62149112,Sam,Brooklyn,Williamsburg,40.71576,-73.95576,Private room,65,1,3,2017-08-19,0.11,1,0 +13711439,Air-Conditioned 2BR w Stunning View,80068221,Scott,Brooklyn,Sunset Park,40.66448,-73.99407,Entire home/apt,130,2,3,2016-08-06,0.08,1,0 +13712165,A Clean Well-lighted Place (luxury 1BR w/balcony),22447216,Rodrigo,Manhattan,Kips Bay,40.73887,-73.98177,Entire home/apt,300,1,0,,,1,0 +13712179,Brooklyn Heights retreat,45924792,Liz,Brooklyn,Brooklyn Heights,40.69027,-73.99418,Entire home/apt,111,4,2,2016-07-21,0.05,1,0 +13712266,Large Private Sun Drenched Bedroom in Ridgewood,69001602,Eugene,Queens,Ridgewood,40.70605,-73.89928,Private room,48,2,6,2018-05-13,0.17,1,0 +13712336,NEAT AND TIDY EDEN,68404305,David,Brooklyn,Brownsville,40.66462,-73.91873,Private room,65,3,47,2019-01-17,1.28,1,300 +13713304,Private room in 2BR in Morningside Heights,80091971,Brian,Manhattan,Upper West Side,40.80421,-73.96738,Private room,75,2,17,2016-09-25,0.46,2,0 +13714218,Sunny apartment in Brooklyn brownstone,4230541,Aaron,Brooklyn,Clinton Hill,40.68446,-73.96528,Private room,200,2,0,,,1,0 +13714244,Cozy Little Italy Apartment,80107649,Haley,Manhattan,Lower East Side,40.7188,-73.99458,Private room,99,3,10,2017-01-01,0.28,1,0 +13714531,Huge 2 bed/2 bath in the heart of Clinton Hill!,19094327,Amy,Brooklyn,Clinton Hill,40.68141,-73.96268,Entire home/apt,225,1,3,2016-08-25,0.08,1,0 +13714537,Very cozy room in heart of Astoria,80114315,Ljubenka,Queens,Astoria,40.75965,-73.91095,Private room,65,5,10,2016-11-28,0.28,1,68 +13715386,"Large, basic room in great location",10737943,David,Manhattan,Upper East Side,40.77672,-73.94697,Private room,51,30,9,2019-06-22,0.25,10,220 +13715661,"2 BR, 2 BA Penthouse w 2 private decks",32928497,Jennifer,Brooklyn,Fort Greene,40.69503,-73.97286,Entire home/apt,175,3,5,2017-09-05,0.14,1,0 +13715798,1 Clean room in 2BR Apt Manhattan,19572312,Alejandra,Manhattan,East Village,40.72695,-73.98546,Private room,120,1,2,2016-07-25,0.06,1,0 +13715977,Cozy room in Central Harlem. Lively neighborhood.,60812510,Lisa,Manhattan,Harlem,40.81818,-73.93905,Private room,49,1,12,2017-08-24,0.33,1,0 +13716080,"Cute, Vintage UWS Private Room/Bath",41067998,Andrea,Manhattan,Upper West Side,40.78817,-73.98068,Private room,175,2,0,,,1,0 +13720750,Spacious Studio Apartment,80061565,Brian,Bronx,Schuylerville,40.8355,-73.83729,Entire home/apt,71,2,118,2019-07-01,3.24,1,34 +13721612,Large 1 Br in Upper East blocks from Central Park,79929686,Kyle,Manhattan,Upper East Side,40.77857,-73.9539,Entire home/apt,350,3,0,,,1,0 +13722149,1 bed room apt in NYC near Empire State Building,8327308,Faisal,Manhattan,Midtown,40.74754,-73.98309,Entire home/apt,119,7,1,2016-08-01,0.03,1,0 +13723312,Loft-like 1 br Apt in Brownstone in Central Harlem,5267723,Piero,Manhattan,Harlem,40.81139,-73.94094,Entire home/apt,110,7,0,,,1,0 +13723345,"Right in the center of Chelsea, quiet and private.",2305978,Emmanuel,Manhattan,Chelsea,40.7427,-73.99837,Entire home/apt,185,2,147,2019-06-20,4.07,2,114 +13724284,"LARGE APT-lovely, comfortable in vibrant Brooklyn!",9243105,Sam & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65727,-73.9601,Entire home/apt,115,1,227,2019-07-07,6.23,1,294 +13724932,1-bedroom on Franklin Ave,6263778,Shaeera,Brooklyn,Crown Heights,40.6698,-73.95835,Private room,90,2,0,,,1,0 +13725194,"Bright and spacious room in Bushwick, Brooklyn",49367785,Jordan,Brooklyn,Bushwick,40.69757,-73.92906,Private room,45,5,0,,,1,0 +13725208,Private room in Manhattan's Lower East Side,64571012,Sarah,Manhattan,Lower East Side,40.72009,-73.98631,Private room,50,2,1,2016-07-16,0.03,1,0 +13725947,"Large bedroom, with sunny deck backyard.",2352388,Mas,Brooklyn,Crown Heights,40.67992,-73.95902,Private room,80,1,22,2018-12-16,0.60,1,0 +13725995,Full 1-Bedroom in a Picturesque Brownstone,3571172,Hugh,Manhattan,Harlem,40.81251,-73.94524,Entire home/apt,95,1,2,2016-07-25,0.06,1,0 +13726217,"Private Rm in Williamsburg, thermarest",7377615,L.,Brooklyn,Williamsburg,40.70877,-73.96054,Private room,50,1,0,,,2,0 +13726629,CLEAN COMFORTABLE ROOM 7 MIN FR JFK,20134231,Paulette,Queens,Springfield Gardens,40.66298,-73.7621,Private room,40,2,187,2019-03-08,5.12,3,352 +13726934,East Village Manhattan NYC Sofas!,2208993,Chris,Manhattan,East Village,40.72376,-73.98303,Shared room,30,3,10,2019-05-19,0.27,3,0 +13727297,Beautiful 2 bedroom apartment in the West Village,7689009,Amanda,Manhattan,West Village,40.73208,-74.00784,Entire home/apt,225,2,1,2016-09-10,0.03,1,0 +13727995,Large Bedroom in Bushwick,579391,Yuan,Brooklyn,Bushwick,40.70091,-73.93809,Private room,65,2,12,2018-10-02,0.34,1,0 +13728033,Large Studio in quite Midtown East,58625222,Mike,Manhattan,Midtown,40.75449,-73.96545,Entire home/apt,199,3,0,,,1,0 +13728204,Apartment NYC,76314424,Alejandra,Queens,Long Island City,40.74543,-73.94595,Entire home/apt,125,5,12,2018-12-16,0.33,1,3 +13728712,Charming brick brownstone (2nd floor),2026554,Maggie,Brooklyn,Bushwick,40.70173,-73.91504,Entire home/apt,89,3,14,2018-11-17,0.39,1,0 +13729180,"Prime Village NOHO, renovated designed2BR~W/D unit",2119276,Host,Manhattan,East Village,40.72927,-73.99039,Entire home/apt,300,30,2,2017-05-02,0.06,39,310 +13729876,Bright Williamsburg Oversized Loft-like Space!,23424348,N-And-A,Brooklyn,Williamsburg,40.71301,-73.9495,Entire home/apt,200,30,47,2019-05-25,1.41,1,298 +13729934,Sunny One Bedroom Brownstone Apt by Central Park,3564306,Josh,Manhattan,Upper West Side,40.78829,-73.9701,Entire home/apt,200,1,17,2016-12-31,0.47,1,0 +13730254,East Village Sunny Studio,30708411,Ramses,Manhattan,East Village,40.73183,-73.98513,Entire home/apt,129,4,7,2018-08-27,0.31,1,0 +13730284,Modern E. Village 2BR/2BA - Private Back yard!,65227208,Barbara,Manhattan,East Village,40.72454,-73.97931,Entire home/apt,495,3,52,2019-05-06,1.51,1,285 +13730290,"Private suite, near Central Park & Columbia U.",75857,Beatrice,Manhattan,Harlem,40.80477,-73.94797,Private room,125,3,14,2019-07-01,0.42,1,121 +13730495,"Carroll Gardens, Private Garden Apartment (1BD)",37310365,Tiz,Brooklyn,Gowanus,40.67921,-73.99226,Entire home/apt,185,3,93,2019-06-23,2.58,1,77 +13731019,Huge Room in Penthouse Apartment (Upper West Side),80320245,Samantha,Manhattan,Upper West Side,40.77841,-73.98028,Private room,92,1,4,2017-03-25,0.11,1,0 +13731797,Beautiful Sugar Hill Brownstone apartment,62777136,Eszter,Manhattan,Harlem,40.82485,-73.94537,Entire home/apt,119,7,0,,,1,0 +13731898,Artist's House 3 blocks from L Train,149833,Joy And Mike,Brooklyn,Bushwick,40.70335,-73.91583,Entire home/apt,120,3,2,2016-08-22,0.06,1,0 +13732047,5 Star East-African Safari Experience + Concierge,37927366,Mufaro,Manhattan,Harlem,40.82971,-73.94521,Entire home/apt,500,5,0,,,1,0 +13732215,Beautiful place,80333311,Anmarie,Brooklyn,Canarsie,40.63723,-73.90854,Entire home/apt,80,1,104,2019-06-08,2.86,1,97 +13733036,2 bedroom apartment in heart of Chinatown!,36234842,Elise,Manhattan,Chinatown,40.71709,-73.99628,Entire home/apt,124,4,0,,,1,0 +13733309,Upper West Side apartment with balcony,60002757,Alex,Manhattan,Upper West Side,40.7921,-73.97031,Entire home/apt,85,2,3,2016-07-26,0.08,1,0 +13733733,Private Room in RENOVATED Brooklyn Apartment,9111709,Eric,Brooklyn,Flatbush,40.63964,-73.95629,Private room,55,1,11,2017-06-08,0.31,1,0 +13733766,Nice room w private bathroom in Bedstuy/Bushwick,32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92212,Private room,82,1,4,2018-05-13,0.15,3,0 +13733926,Complete apartment/room at 100th,37736307,Rafael,Manhattan,East Harlem,40.78918,-73.94995,Entire home/apt,150,3,18,2017-06-05,0.49,2,0 +13734035,One Br East Village Apt Close to All Things Good!,50204678,Euni,Manhattan,East Village,40.72753,-73.97825,Entire home/apt,250,2,3,2017-09-03,0.08,1,0 +13734814,Clean Lines Rule: Modern and Spacious and Orange,16725289,Sue,Brooklyn,Windsor Terrace,40.64785,-73.97595,Entire home/apt,150,2,1,2018-06-30,0.08,1,0 +13739108,Luxury 1 bedroom apt. Downtown Brooklyn/Dumbo,44941423,Bryan,Brooklyn,Downtown Brooklyn,40.69751,-73.98454,Entire home/apt,121,5,4,2017-08-09,0.12,1,0 +13740409,Perfect Home for US Open Stay,33064589,Elena,Queens,Flushing,40.74953,-73.79677,Entire home/apt,350,3,1,2016-08-27,0.03,1,0 +13740419,Silvertowers - Sky Collection Studio Loft 59th Fl,80437226,Alexander,Manhattan,Hell's Kitchen,40.7598,-73.99978,Entire home/apt,115,1,0,,,1,0 +13740704,"Cozy,budget friendly, cable inc, private entrance!",20583125,Michel,Brooklyn,Flatlands,40.63222,-73.93398,Private room,45,8,10,2018-12-12,0.70,1,85 +13740793,Beautiful Elevator Bldg near Columbia University,76590834,Omar,Manhattan,Upper West Side,40.80165,-73.96497,Private room,65,1,0,,,1,0 +13741194,Williamsburg Oasis,8237570,Akash,Brooklyn,Williamsburg,40.71782,-73.95013,Private room,200,1,5,2019-05-05,0.15,2,364 +13742783,Spacious Top Floor 2 BR Unit with Balcony,80463005,Anita,Brooklyn,Flatbush,40.63316,-73.96606,Entire home/apt,120,2,48,2018-04-08,1.36,1,53 +13743350,cozy two bedroom apt by central park,5490071,Alex,Manhattan,East Harlem,40.78672,-73.94519,Entire home/apt,175,3,119,2019-06-28,3.31,3,238 +13743786,City Views Close to SI Ferry,80470317,Sergey,Staten Island,Clifton,40.62356,-74.07571,Entire home/apt,120,1,82,2019-06-30,2.26,1,310 +13744371,An Architect's Room in Brooklyn,33381088,Dana,Brooklyn,Bedford-Stuyvesant,40.69218,-73.94678,Private room,49,3,2,2016-08-02,0.06,1,0 +13744765,Large family loft in the best Chelsea location,42782892,Masha,Manhattan,Chelsea,40.74107,-73.99595,Entire home/apt,250,5,4,2019-01-02,0.11,1,0 +13744807,Cooper Square Top-Floor Duplex with Terrace,438572,Adrian,Manhattan,East Village,40.7281,-73.99067,Entire home/apt,250,2,3,2016-08-15,0.08,1,0 +13745149,1 Bedroom Williamsburg Apartment,7377615,L.,Brooklyn,Williamsburg,40.70784,-73.95884,Entire home/apt,110,3,1,2016-08-03,0.03,2,0 +13745575,2 Bedroom Apartment / Prime Williamsburg Location,1571120,Timothy + Gina,Brooklyn,Williamsburg,40.71104,-73.96098,Entire home/apt,199,2,31,2019-05-22,0.88,2,23 +13745644,Luxury Apartment with a Spectacular Skyline View,10471651,Anna,Manhattan,Upper East Side,40.76309,-73.95697,Entire home/apt,350,3,12,2019-06-25,0.34,1,301 +13745898,Your own sunny apartment,2495361,Jillian,Manhattan,Two Bridges,40.71274,-73.99662,Entire home/apt,124,3,1,2016-07-26,0.03,1,0 +13746257,Prime North Williamsburg Luxury Studio,80501262,Raquel,Brooklyn,Williamsburg,40.718,-73.9525,Entire home/apt,175,2,9,2018-12-30,0.29,1,0 +13746962,Private room in a 2 Bedroom apartment - Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73938,-73.99855,Private room,150,3,0,,,2,0 +13747861,Sunny Bed Stuy Haven,7009626,Halle,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94309,Entire home/apt,295,2,16,2017-07-30,0.44,1,0 +13748546,Bright & Light Chelsea One Bedroom,80315972,Meghan,Manhattan,Chelsea,40.74361,-73.99885,Entire home/apt,210,2,1,2016-07-14,0.03,1,0 +13748851,Perfect Studio Facing Quiet Garden - East VIllage,80534927,Claire,Manhattan,East Village,40.72778,-73.98335,Entire home/apt,125,2,3,2016-10-15,0.08,1,0 +13749286,Cozy apartment 1 block from Washington Square Park,3137526,Phil,Manhattan,Greenwich Village,40.72994,-73.99953,Entire home/apt,112,7,0,,,2,0 +13749474,The Brooklyn RedStone,40507839,Terrie,Brooklyn,Bedford-Stuyvesant,40.68574,-73.92975,Entire home/apt,118,3,20,2019-07-01,3.21,1,33 +13750084,Spacious room in heart of Williamsburg,8035063,Mathew,Brooklyn,Williamsburg,40.70861,-73.95414,Private room,85,1,0,,,1,0 +13750448,Gloriously Sunny Brooklyn Pad!,6816955,Callie And Sean,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95457,Private room,53,2,121,2019-06-16,3.30,1,348 +13750770,Two Bed Apt w/ Private Patio in Prime EastVillage,58208399,Brett,Manhattan,East Village,40.72576,-73.98691,Entire home/apt,200,2,11,2018-08-12,0.30,1,0 +13750812,Private room w/ 2 Beds,65809485,Shirley,Queens,Flushing,40.74821,-73.82948,Private room,40,7,19,2019-06-23,0.52,12,251 +13751603,Private room close to the center of Williamburg,80571474,August,Brooklyn,Williamsburg,40.71428,-73.95172,Private room,60,1,0,,,1,0 +13751992,Spacious and charming living room in Brooklyn ;),16951458,Inna,Brooklyn,Midwood,40.61978,-73.95605,Shared room,50,1,16,2017-08-15,0.46,1,0 +13752222,"Chelsea -Cozy, quiet, and charming bedroom",4328118,Ned,Manhattan,Chelsea,40.74601,-74.00028,Private room,135,2,2,2019-06-23,1.20,1,336 +13752439,Your Home away from Home!,71564201,Fabian,Queens,Jamaica,40.6711,-73.76508,Private room,61,1,58,2017-04-29,1.77,1,0 +13752672,Cheap! Couch to crash - Upper East Side (Safe&Fun),28930916,Kay,Manhattan,Upper East Side,40.78112,-73.95214,Shared room,42,1,50,2019-07-02,1.41,1,343 +13752815,"Bright, Spacious Home Near Beach & Subway",36234811,Anna,Queens,Arverne,40.59051,-73.79152,Private room,69,1,51,2019-06-11,1.40,4,152 +13752982,Two Bedroom on the Upper East Side,80593607,Theodore,Manhattan,Upper East Side,40.77788,-73.95615,Entire home/apt,105,1,3,2016-08-23,0.08,1,0 +13753375,2 Bedroom apartment in Prime Williamsburg!,1434340,Yana,Brooklyn,Williamsburg,40.70938,-73.95435,Entire home/apt,150,1,174,2019-06-27,4.84,1,236 +13754002,Charming Upper East Side 1BR,34075048,George,Manhattan,Upper East Side,40.76991,-73.95189,Entire home/apt,240,4,26,2019-05-25,0.75,1,188 +13754150,Elegant Stu Suite in Midtown East -21,80479138,Gordon,Manhattan,Midtown,40.75965,-73.96543,Entire home/apt,140,30,14,2019-05-31,0.39,5,75 +13757434,"PRIVATE LARGE STUDIO FOR YOU, PLUS!",46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94101,Entire home/apt,90,2,113,2019-06-22,3.08,3,262 +13757845,Centrally Located One Bedroom Apt,5514044,Garron,Manhattan,Chelsea,40.73942,-74.00065,Entire home/apt,199,2,1,2016-09-16,0.03,1,0 +13760233,"Charming Bedroom, Incredible Location",8457214,Sarah,Manhattan,Nolita,40.72232,-73.99579,Private room,65,3,2,2016-08-13,0.05,2,0 +13760302,Private Micro Room 3,59529529,Han,Manhattan,Hell's Kitchen,40.76277,-73.99424,Private room,70,1,220,2019-06-30,6.00,6,180 +13761271,Flushing Private Room W/ bathroom W/2 Quee Bed/1FL,65809485,Shirley,Queens,Flushing,40.74988,-73.82884,Private room,60,7,82,2019-06-11,2.34,12,152 +13761654,Great room in a spacious apartment DT Manhattan,327900,T,Manhattan,Lower East Side,40.72144,-73.98655,Private room,69,1,10,2016-12-18,0.27,2,187 +13761856,Modern bright spacious duplex apartment,20183212,Jonathan,Manhattan,Harlem,40.8235,-73.94332,Entire home/apt,250,5,74,2019-07-03,2.03,1,216 +13762046,Private Micro Room 1,59529529,Han,Manhattan,Hell's Kitchen,40.76296,-73.99565,Private room,70,1,247,2019-07-01,6.74,6,161 +13762234,Lovely 1BR on the Upper East Side,9251010,Marina,Manhattan,Upper East Side,40.7732,-73.95173,Entire home/apt,175,2,8,2016-12-12,0.23,1,0 +13762667,"EAST VILLAGE, Tompkins Park, Private Rm + Bathroom",1003394,Deep,Manhattan,East Village,40.7294,-73.98021,Private room,110,4,12,2017-05-21,0.33,1,0 +13763369,Bedroom available with closet space,43688213,Ryan,Queens,Astoria,40.76736,-73.91462,Private room,50,5,3,2017-07-25,0.08,1,0 +13763512,Classic Exposed Brick Apartment in East Village,40008334,Jennifer,Manhattan,East Village,40.7282,-73.98001,Private room,75,1,159,2019-06-23,4.34,1,84 +13763917,Marabou,17370376,Christian,Brooklyn,Crown Heights,40.67431,-73.95399,Private room,55,30,19,2018-08-11,0.52,1,281 +13764238,SPACE & LIGHT 3 Blocks from Union Square,80721470,Alexandre,Manhattan,Gramercy,40.73491,-73.984,Private room,75,2,1,2016-07-26,0.03,1,0 +13764772,1br in Beautiful 2br-Prime location (LIC/Astoria),24295412,Shaheen,Queens,Astoria,40.75818,-73.92513,Private room,30,6,0,,,1,0 +13764984,Suburban Living in Brooklyn,80731010,Patricia,Brooklyn,Canarsie,40.6415,-73.88739,Entire home/apt,90,2,54,2018-07-22,1.47,1,64 +13765146,Private Room One Block North of Central Park,45543753,Jonathan,Manhattan,Harlem,40.80046,-73.95509,Private room,70,1,8,2016-08-01,0.22,1,0 +13765644,1 bedroom steps from Barclay center and 11 trains,5611600,Kyler,Brooklyn,Boerum Hill,40.68473,-73.97868,Entire home/apt,140,2,5,2016-08-27,0.14,2,0 +13765918,Eclectic Artist's Apartment in PRIME East Village,22069376,Alyssa,Manhattan,East Village,40.7257,-73.98635,Entire home/apt,200,1,38,2019-06-27,3.41,1,123 +13765949,Cute sunny Upper East Side Studio,64839278,Opeyemi,Manhattan,Upper East Side,40.77316,-73.94998,Entire home/apt,120,2,29,2017-12-30,0.80,1,0 +13766130,Sunny room in Williamsburg with view of Manhattan,29600525,Andrew,Brooklyn,Williamsburg,40.70854,-73.96242,Private room,85,2,122,2019-06-14,3.35,1,258 +13766690,Shady Listing - Authentic NY'r,13408910,Tmc,Bronx,Concourse,40.82948,-73.92364,Private room,82,4,0,,,2,0 +13767238,"2 bedroom w/ private back yard, laundry in unit!",24908787,William,Manhattan,SoHo,40.72541,-74.001,Entire home/apt,200,30,1,2016-07-06,0.03,1,0 +13767337,Huge sunlit 1 bedroom next tosubway,1777689,Lyoka,Brooklyn,Sheepshead Bay,40.60733,-73.95322,Entire home/apt,225,2,1,2018-07-08,0.08,1,364 +13767853,Sunny 1 bdrm w private outdoor deck in Greenpoint!,61170181,Gabriella,Brooklyn,Greenpoint,40.72748,-73.95272,Private room,75,3,0,,,1,0 +13768719,Cosy flat West Village,5950785,Xavier,Manhattan,West Village,40.73316,-74.00183,Entire home/apt,230,2,9,2018-05-12,0.25,1,0 +13769006,Spacious Bright Private Room in Bedstuy!,80778982,Ilham,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91762,Private room,50,1,0,,,1,0 +13769222,Cozy room in artsy Bushwick home,80780369,Lauren,Queens,Ridgewood,40.71118,-73.9151,Private room,35,1,2,2016-08-16,0.06,1,0 +13769300,Spacious Serene Room Located in Prime E. Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63348,-73.94737,Private room,95,1,20,2018-09-04,0.58,8,189 +13769545,Comfy bed in Cozy Home - GRAND ARMY PLAZA,80777352,Mary,Brooklyn,Prospect Heights,40.67403,-73.96798,Private room,48,2,131,2019-06-01,3.88,1,333 +13769969,Private bedroom with great views,24054404,Sahul,Brooklyn,Greenpoint,40.72249,-73.94776,Private room,50,5,3,2017-03-08,0.08,1,0 +13770179,Cozy Private masterRoom 2 Blocks from Central Park,80794677,Yi,Manhattan,Upper West Side,40.79938,-73.96235,Private room,48,1,4,2016-08-25,0.11,1,0 +13770490,Flushing Spacious Room w/ 2 Queen Beds (1FL),65809485,Shirley,Queens,Flushing,40.74879,-73.82958,Private room,55,3,47,2019-04-21,1.33,12,65 +13770587,Carroll Gardens 1 Bedroom Studio Apartment,64116761,Philip,Brooklyn,Carroll Gardens,40.67747,-73.99917,Entire home/apt,100,5,0,,,1,0 +13770680,Flushing Deluxe Room w/ 2 Bed (1FL),65809485,Shirley,Queens,Flushing,40.74875,-73.82775,Private room,50,7,55,2019-01-24,1.57,12,160 +13770759,Cozy Room w/ Queen Bed (1FL),65809485,Shirley,Queens,Flushing,40.75026,-73.82873,Private room,40,7,59,2019-06-12,1.67,12,120 +13770780,Super sunny and spacious! Privacy!,38404959,Maria,Queens,Ditmars Steinway,40.77697,-73.9082,Private room,60,2,10,2018-09-27,0.38,2,364 +13770856,Comfortable Room w/ 1 Full Bed (1FL),65809485,Shirley,Queens,Flushing,40.74944,-73.82772,Private room,40,3,51,2019-05-09,1.45,12,96 +13770959,Beautiful 2 BR Garden Dplx in BK (w/ opt nursery),978029,Meriwether,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95811,Entire home/apt,245,5,0,,,1,0 +13770996,Sunny spacious apartment in Heart of NYC,4923567,Jan,Manhattan,Upper East Side,40.7777,-73.9535,Entire home/apt,135,3,32,2019-04-07,0.88,1,84 +13771435,Friendly Upper West Side Apartment,2025836,Anna,Manhattan,Upper West Side,40.78176,-73.97822,Entire home/apt,150,1,2,2016-07-29,0.06,1,0 +13771529,"Beautiful, Clean, Private & Chic furnished Apt.",73717067,Nichole,Manhattan,Harlem,40.82661,-73.94165,Entire home/apt,100,4,6,2019-07-01,0.17,1,27 +13771885,Sweet room in Brooklyn,47577415,Marie And Alec,Brooklyn,Flatlands,40.62971,-73.93336,Private room,45,1,9,2017-11-22,0.26,1,189 +13771957,Cozy and clean room in 2 bedrooms apartment,22028840,Miki,Manhattan,Washington Heights,40.85308,-73.92878,Private room,55,3,71,2018-03-24,1.93,2,0 +13772304,Room in 2BR in Morningside Heights,80091971,Brian,Manhattan,Upper West Side,40.80268,-73.96684,Private room,80,1,2,2016-07-23,0.06,2,0 +13772589,Beachside Antique Themed Room,36380968,Alex,Brooklyn,Brighton Beach,40.57577,-73.96115,Private room,60,1,18,2019-07-05,2.78,2,343 +13777303,Chelsea Modern 1 BR. Apartment,70181692,Sayed,Manhattan,Midtown,40.74595,-73.98996,Entire home/apt,399,1,1,2016-08-08,0.03,1,0 +13778127,Studio with own back yard and new kitchen,80886117,Joanna,Manhattan,Upper East Side,40.7731,-73.95169,Entire home/apt,150,4,20,2019-04-28,0.55,1,82 +13778951,Iconic BK spot steps from mass transit.,5611600,Kyler,Brooklyn,Boerum Hill,40.68473,-73.97863,Shared room,47,1,0,,,2,0 +13779358,Home away from home. Contemporary!,80894027,Patrick,Queens,Jackson Heights,40.7532,-73.87731,Entire home/apt,125,3,12,2019-06-17,0.35,1,274 +13780126,Studio apartment 10minute to JFK 20m to Manhattan,80904983,Eddie,Queens,Briarwood,40.71116,-73.81514,Entire home/apt,75,2,57,2019-05-17,1.55,1,314 +13780748,"Downtown Brooklyn, Luxury-One bed Apartment",22541573,Ken,Brooklyn,Downtown Brooklyn,40.69037,-73.98206,Entire home/apt,202,30,1,2017-09-04,0.04,87,365 +13780778,Upper West Side,59788392,Abie,Manhattan,Upper West Side,40.78573,-73.97686,Private room,80,1,0,,,1,0 +13781978,Beautiful Room in Modern Duplex,71857900,Jacqueline,Queens,Astoria,40.77153,-73.93191,Private room,150,2,0,,,1,0 +13782517,Cozy Room in the lovely neighborhood of Bed Stuy,75442218,Loreto,Brooklyn,Bedford-Stuyvesant,40.68155,-73.93639,Private room,45,3,6,2017-12-10,0.18,1,0 +13782533,Very private/cute/spacious room,15700083,Sarah,Queens,Maspeth,40.71609,-73.9025,Private room,30,20,0,,,1,0 +13782654,Large master bedroom one block from Prospect Park,819636,Matt,Brooklyn,Prospect Heights,40.67575,-73.96546,Private room,102,1,5,2016-09-06,0.14,1,0 +13783769,"Private Studio Apt+Bath, Luxury King, Kitchenette",5684580,Ryan,Brooklyn,Williamsburg,40.71474,-73.94461,Entire home/apt,55,4,34,2019-06-18,1.07,1,0 +13784458,Amazing 1BD in Harlem,10411030,Frances,Manhattan,East Harlem,40.79921,-73.94749,Entire home/apt,155,6,7,2018-07-01,0.21,1,0 +13785383,Cute and Cozy 1 BDR In West Harlem,80275136,Lisa,Manhattan,Harlem,40.82408,-73.95434,Entire home/apt,120,3,0,,,1,0 +13785938,Cozy One Bedroom Near Fort Tryon Park,15197019,Kate,Manhattan,Inwood,40.86082,-73.92585,Entire home/apt,95,2,2,2016-08-15,0.06,1,0 +13787558,"Dramatic Duplex, Hosted, Huge>Slp.14, Subway 50 Yd",80968378,Itzchack,Brooklyn,Carroll Gardens,40.6788,-73.99559,Entire home/apt,525,4,5,2017-05-30,0.14,1,327 +13788013,Beautiful & Bright One bedroom in Manhattan UES,10371038,Valerio,Manhattan,Upper East Side,40.77094,-73.95126,Entire home/apt,199,1,0,,,1,0 +13788132,"Sunny, cozy room in Brooklyn.",19483885,Edgar,Brooklyn,Bedford-Stuyvesant,40.69651,-73.96147,Private room,45,1,60,2019-07-02,2.27,2,224 +13794590,Comfy Queen Bed in Harlem,81080113,Christopher,Manhattan,Harlem,40.81893,-73.94118,Private room,90,1,0,,,1,0 +13794689,Spacious NYC apt by CENTRAL PARK!,4508140,Shira,Manhattan,Upper West Side,40.79426,-73.96414,Entire home/apt,150,2,11,2017-12-19,0.30,1,212 +13794822,Cozy room in 2BR apartment - Greenpoint,5574626,Jana,Brooklyn,Greenpoint,40.72325,-73.9432,Private room,59,4,1,2016-08-02,0.03,1,0 +13795455,Beautiful Apartment in Quiet Neighborhood L Train,22161599,Sarah,Queens,Ridgewood,40.6997,-73.90243,Private room,75,3,8,2018-09-14,0.22,1,81 +13795744,"Bright Private Room on L/M in Bushwick, Queen-size",49294106,Alicia,Brooklyn,Bushwick,40.69956,-73.91888,Private room,69,2,62,2019-07-01,1.80,1,16 +13795756,"Lovely S.Slope 3BR in 4BR 1300 sf dplx,deck&birds!",514261,Vanessa,Brooklyn,South Slope,40.66537,-73.98784,Private room,300,2,2,2016-09-06,0.06,3,0 +13796187,Cozy room in UWS,3290750,Sara,Manhattan,Upper West Side,40.80078,-73.9641,Private room,60,4,11,2017-05-22,0.30,1,0 +13798188,Private bedroom for the weekend,17153180,Ade,Brooklyn,East New York,40.66337,-73.89806,Private room,50,1,1,2016-07-06,0.03,1,0 +13798719,Cool apartment in Williamsburg,23291979,Adam,Brooklyn,Williamsburg,40.71515,-73.93706,Entire home/apt,150,3,2,2016-07-31,0.06,1,0 +13799109,Blake's residents,76596461,Maxine,Queens,Queens Village,40.70975,-73.73347,Private room,85,1,5,2017-09-03,0.14,1,89 +13799217,"Beautiful 1br, in heart of city",81134987,Armen,Manhattan,Kips Bay,40.74099,-73.98139,Entire home/apt,210,3,14,2019-06-21,0.39,1,327 +13800652,Room on a quiet tree-lined block of Manhattan,45992029,Sarah,Manhattan,Harlem,40.82225,-73.94549,Private room,55,1,3,2016-07-13,0.08,1,0 +13801296,FORT GREENE- Private room in spacious apartment.,81161047,Fernando & Jess,Brooklyn,Fort Greene,40.69195,-73.97151,Private room,57,7,0,,,1,0 +13801326,Beautiful book-filled room + garden in Bed Stuy,1916501,Josephine,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95443,Private room,50,1,0,,,1,0 +13802195,"Comfy, Peaceful and Private studio basement!",43008736,Pamela,Brooklyn,Williamsburg,40.7171,-73.9573,Entire home/apt,100,10,0,,,1,0 +13802334,Bright chic room in Clinton hill,35775878,Lisa,Brooklyn,Clinton Hill,40.68366,-73.96563,Private room,65,7,10,2017-12-10,0.28,1,0 +13802521,"Very Clean, Comfortable Room Available",26022066,Yakup,Brooklyn,Midwood,40.61295,-73.95366,Private room,50,1,10,2019-04-28,0.30,1,0 +13802699,"Dottie's Place, Room #2...Just for You!",80819921,Traci,Queens,Rosedale,40.65218,-73.73498,Private room,70,1,0,,,1,0 +13803517,"Large, cozy 'n sweet",80770467,Tavish,Brooklyn,Bushwick,40.69306,-73.92106,Private room,40,4,1,2016-10-05,0.03,1,0 +13805038,MODERN WILLIAMSBURG DUPLEX NEAR ALL THE ACTION,8539684,Robert,Brooklyn,Williamsburg,40.70875,-73.9467,Entire home/apt,250,4,10,2017-03-05,0.27,1,0 +13808262,Nicely furnished room in a spacious apartment,177922,Dilini,Brooklyn,Prospect-Lefferts Gardens,40.65702,-73.96066,Private room,33,14,6,2017-11-25,0.17,1,0 +13810048,Brooklyn - Bushwick - NYC,81274648,Ming,Brooklyn,Bushwick,40.69677,-73.93027,Private room,46,2,126,2019-06-24,3.51,4,80 +13811008,Gorgeous Astoria 1 Br,78732090,Jonathan,Queens,Long Island City,40.74616,-73.94653,Private room,101,1,0,,,1,0 +13811490,Spacious 1BR apartment in elevator building,80040018,Azoil,Brooklyn,East Flatbush,40.65192,-73.95243,Entire home/apt,76,7,1,2016-09-01,0.03,1,0 +13811866,Cozy 1BR in Murray Hill,79086338,Enrique,Manhattan,Kips Bay,40.74077,-73.98245,Private room,70,1,1,2016-07-25,0.03,1,0 +13811933,Private furnished 1BR in a 4BR on Upper West Side,23672310,Samuel,Manhattan,Upper West Side,40.80057,-73.96679,Private room,95,4,0,,,1,0 +13812310,"Beautiful, Bright and Modern Space w/ a Fresh Feel",74885349,Kimberly,Brooklyn,Bushwick,40.68365,-73.91069,Entire home/apt,129,2,43,2019-06-23,1.20,1,80 +13812808,The trendiest block in Bedford Stuyvesant Brooklyn,81311292,Byron,Brooklyn,Bedford-Stuyvesant,40.68283,-73.94375,Private room,100,1,0,,,1,0 +13813731,Private Room in Charming Bedstuy,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67803,-73.92663,Private room,58,2,78,2019-06-30,2.20,3,82 +13814049,Subway accessible apartment in Brooklyn!,81329032,Ashlee,Brooklyn,Kensington,40.64231,-73.97974,Private room,50,5,0,,,1,0 +13814227,"Quiet light-filled apt, subway near",28345063,Jason,Manhattan,Harlem,40.82822,-73.94864,Entire home/apt,76,16,26,2019-06-19,0.76,1,31 +13814281,Twin size bed 2 blocks away L&M train to Manhattan,48985309,Serdar,Queens,Ridgewood,40.70183,-73.91146,Private room,35,7,16,2019-06-25,0.47,1,247 +13815162,Private room w/1Queen Bed (Lower level),65809485,Shirley,Queens,Flushing,40.74981,-73.82742,Private room,40,7,19,2019-06-21,0.84,12,134 +13815548,"West 86th Street, Charming UWS One Bd Serviced Apt",22541573,Ken,Manhattan,Upper West Side,40.78664,-73.97275,Entire home/apt,195,30,2,2018-09-26,0.06,87,45 +13816362,Cozy Modern Private Bedroom Hell's Kitchen,19247677,Abby,Manhattan,Hell's Kitchen,40.76518,-73.98406,Private room,80,3,1,2017-01-13,0.03,1,0 +13816385,Bk'S Finest feels Cozy Room Near Trains&bus,50600973,Joyell,Brooklyn,Bushwick,40.69425,-73.92781,Private room,44,1,157,2019-06-16,4.52,7,61 +13820083,Beautiful Cozy Garden Apt- Historic Clinton Hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68421,-73.96631,Entire home/apt,95,30,11,2019-06-21,0.31,2,43 +13820755,Modern NYC Studio Apartment Near Central Park!,30283594,Kara,Manhattan,Midtown,40.76647,-73.98146,Entire home/apt,199,30,0,,,121,189 +13821190,"Private room in Astoria, NY",81430151,Liliana,Queens,Astoria,40.75528,-73.91628,Private room,55,2,41,2019-06-02,1.19,1,278 +13821806,Charming 1BR in Williamsburg - perfectly located,7695239,Rachad,Brooklyn,Williamsburg,40.72128,-73.95782,Entire home/apt,249,3,0,,,1,0 +13822434,Private Room in Hamilton Heights,14078461,Emma,Manhattan,Harlem,40.82421,-73.95426,Private room,40,7,1,2016-08-02,0.03,1,0 +13822852,Beautiful two bedroom apartment in Astoria queens!,23436785,Cristy,Queens,Ditmars Steinway,40.77407,-73.90037,Entire home/apt,200,2,11,2019-05-19,0.52,1,363 +13823636,room,81453500,Amira,Manhattan,Upper West Side,40.80079,-73.96619,Private room,39,4,2,2016-07-28,0.05,1,53 +13824020,Park Slope Cluehouse,81290973,Caroline,Brooklyn,Park Slope,40.66958,-73.98623,Entire home/apt,700,1,2,2017-09-05,0.06,1,88 +13824091,"Empty 3 bedroom apartment in Bushwick, Brooklyn",5341236,Christina,Brooklyn,Bushwick,40.69477,-73.92376,Entire home/apt,45,5,8,2019-02-28,0.22,2,0 +13824675,Cozy 1 BR Apt in Brownstone Brooklyn,7248303,Ben,Brooklyn,Cobble Hill,40.68789,-73.99426,Entire home/apt,140,5,8,2018-06-29,0.22,1,0 +13827959,Private Studio Apartment in Heart of Brooklyn!!,27615247,Judy,Brooklyn,Midwood,40.62465,-73.964,Entire home/apt,99,5,57,2019-06-25,1.57,3,93 +13828701,California King of Elevated Castle,10231747,Jason,Manhattan,Hell's Kitchen,40.76404,-73.9926,Private room,175,2,120,2019-06-08,3.30,2,308 +13828922,Cozy room in Upper West Side luxury apartment,33588075,Evan,Manhattan,Upper West Side,40.79942,-73.96378,Private room,80,1,0,,,1,0 +13829549,Oct in Brooklyn One Bedroom Apartment,5700708,Offer,Brooklyn,Bedford-Stuyvesant,40.69509,-73.9367,Entire home/apt,75,10,2,2016-11-03,0.06,1,0 +13829927,"Cozy bedroom, convenient, Woodside, 7 train",79648088,Martha,Queens,Sunnyside,40.74582,-73.91233,Private room,50,1,78,2019-06-26,2.21,1,218 +13830415,Beautiful 2 bedroom apartment in West Harlem NYC,80491022,Mel,Manhattan,Harlem,40.82295,-73.95066,Entire home/apt,100,5,0,,,1,0 +13830463,Maria and Yiannis East Village studio,20549983,Ioannis,Manhattan,East Village,40.72712,-73.98705,Entire home/apt,100,3,18,2019-06-10,0.50,1,20 +13837891,"Spotless, Classy, Quiet Morningside Hts. Apartment",662794,MG & Larry,Manhattan,Morningside Heights,40.81171,-73.96352,Entire home/apt,200,5,22,2019-06-28,0.61,1,5 +13838042,Modern Uptown NYC Getaway,57573249,Kesina,Manhattan,Harlem,40.82636,-73.93867,Entire home/apt,80,2,3,2016-11-27,0.09,2,0 +13839238,Sunny room in modern building located in Bedstuy,252059,David,Brooklyn,Bedford-Stuyvesant,40.69181,-73.94312,Private room,60,5,3,2016-10-17,0.08,1,0 +13840253,Private elevator contemporary minimalist Brooklyn,19813391,Summer,Brooklyn,Prospect-Lefferts Gardens,40.65761,-73.94646,Entire home/apt,119,1,4,2017-01-01,0.11,2,0 +13840935,Spacious room in historic part of Manhattan,42520485,Helen,Manhattan,Harlem,40.82984,-73.94226,Private room,69,2,57,2019-07-04,1.57,1,287 +13841200,Stunning Brooklyn Townhouse,79575143,Andrew,Brooklyn,Park Slope,40.67198,-73.98278,Entire home/apt,400,5,1,2016-07-13,0.03,1,0 +13841569,The Parachute Loft Bedrm 2,62605071,Anna,Brooklyn,Coney Island,40.57476,-74.00101,Private room,95,1,41,2019-06-16,1.33,2,158 +13841625,Large Bedroom Brooklyn,23813425,Chaima,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94513,Private room,45,1,1,2016-08-30,0.03,1,0 +13842069,LEGO Garden 1BR Apt +Patio near JFK & LGA Airports,87601,Kazumi,Queens,Briarwood,40.71409,-73.82382,Private room,73,4,72,2019-06-30,2.11,1,282 +13842204,"Private Bedroom in Upper Manhattan/ Harlem, NYC!",2265770,Jeanine,Manhattan,Harlem,40.80742,-73.95214,Private room,123,4,1,2018-09-18,0.10,3,0 +13843270,New Upper East Side Studio,28497808,Emilie,Manhattan,Upper East Side,40.77758,-73.94642,Entire home/apt,130,4,5,2016-12-22,0.15,1,0 +13843286,Charming WV 1BR on Historic Street,11791986,Fawn,Manhattan,West Village,40.73511,-74.0037,Entire home/apt,325,3,29,2019-06-17,0.84,1,349 +13843681,Convienent Entire Upper Manhattan Apartment,81706032,Terry,Manhattan,Washington Heights,40.83484,-73.94009,Entire home/apt,95,4,3,2018-10-03,0.09,1,0 +13844921,Top location 1BR 5mins to Manhattan,8785272,Dimitar,Queens,Long Island City,40.74466,-73.95274,Entire home/apt,90,7,0,,,1,0 +13845597,1 Bedroom in williamsburg,81730337,Geoffray,Brooklyn,Williamsburg,40.70912,-73.94107,Entire home/apt,150,7,0,,,1,0 +13846934,Apartment near Central Park,81747071,Oleg,Manhattan,Harlem,40.80227,-73.95571,Entire home/apt,165,3,34,2019-04-08,0.96,1,0 +13847244,44 floor apt in luxury building near Central Park,52851248,Ella,Manhattan,Theater District,40.76324,-73.98459,Entire home/apt,250,10,1,2016-08-04,0.03,1,0 +13847278,Spacious and Comfy one large bedroom in Upper East,81752328,Deepti,Manhattan,Upper East Side,40.76927,-73.949,Entire home/apt,130,7,25,2019-06-29,0.92,1,0 +13848005,Harlem Vibrant Garden Apartment,81763260,Frédérique,Manhattan,Harlem,40.81106,-73.94467,Entire home/apt,200,3,48,2019-06-19,1.40,1,53 +13848199,Bright Room In Spacious Bright Apartment,4942658,Michael,Manhattan,Harlem,40.82508,-73.93884,Private room,70,1,14,2016-10-14,0.38,1,0 +13854483,"Cute 1 br, steps to train, BUSHWICK",14470110,Jennie,Brooklyn,Bushwick,40.69997,-73.92083,Entire home/apt,105,2,30,2018-10-03,0.84,1,291 +13855164,Spacious 2br Fort Greene apartment with yard!,11884239,Nellie,Brooklyn,Fort Greene,40.69153,-73.97078,Entire home/apt,150,7,2,2016-08-22,0.06,1,0 +13855981,"Gorgeous, spacious and naturally lit 3BR!",912993,Hadar,Manhattan,Morningside Heights,40.80595,-73.95812,Entire home/apt,172,4,0,,,1,0 +13856320,Spacious One Bedroom Steps From Prospect Park,2737854,Amy,Brooklyn,Windsor Terrace,40.65024,-73.9737,Entire home/apt,105,2,1,2016-09-22,0.03,1,0 +13856793,Private room in the WV 3rd floor,25330827,Art,Manhattan,West Village,40.73557,-74.00448,Private room,100,2,58,2019-07-02,1.62,1,190 +13856810,Cute Studio in the heart of East Village,81859848,Shivani,Manhattan,East Village,40.72783,-73.98904,Entire home/apt,150,3,5,2017-04-16,0.14,1,0 +13857003,Newly Furnished West Village Studio,12485770,Raanan,Manhattan,West Village,40.73201,-74.0032,Entire home/apt,133,30,0,,,9,15 +13857291,Beautiful Room/20 min downtown NYC,81865543,Rob,Manhattan,Inwood,40.86836,-73.92827,Private room,65,4,38,2019-06-09,1.04,1,149 +13857312,Renovated East Village 1BR,12485770,Raanan,Manhattan,East Village,40.729,-73.98098,Entire home/apt,125,30,6,2019-02-08,0.24,9,150 +13857521,Quaint Garden Apartment/ Historic Hamilton Heights,2701094,Jimmy,Manhattan,Harlem,40.82852,-73.94583,Entire home/apt,140,7,9,2019-04-28,0.25,1,27 +13858187,Large Two Story Loft in the Heart of West Village,79338533,Yasir,Manhattan,West Village,40.73103,-74.00906,Entire home/apt,300,3,1,2016-07-18,0.03,1,0 +13859134,Near Manhattan & ForestHStadium studio w/ pvt bath,79751520,Julia,Queens,Forest Hills,40.71249,-73.84942,Private room,90,1,31,2018-09-24,0.90,2,1 +13859196,Cozy Room In the Heart of Astoria,28003040,Adrian,Queens,Astoria,40.76249,-73.91176,Private room,30,2,56,2017-10-01,1.57,1,0 +13859473,Spacious Bushwick Room w/ Private Entrance & Bath,81888716,Angelika,Brooklyn,Bushwick,40.69715,-73.93166,Entire home/apt,109,2,117,2019-06-23,3.22,1,51 +13859707,Large Bedroom for $750 Monthly,81891866,Nataly,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94508,Private room,750,1,0,,,1,365 +13859896,Private Entrance Basement Studio,46643729,Samantha,Brooklyn,Williamsburg,40.71992,-73.96069,Entire home/apt,146,1,0,,,1,0 +13862377,Sunny and cozy Stuy Heights 1BR,2436411,Christina,Brooklyn,Bedford-Stuyvesant,40.68278,-73.93427,Entire home/apt,120,2,2,2016-09-25,0.06,1,0 +13862929,Spacious 1 BD in Williamsburg next to L train,23396858,Jesse,Brooklyn,Williamsburg,40.71256,-73.94505,Entire home/apt,125,1,3,2016-09-18,0.09,1,0 +13862932,1 bedroom for rent in quiet apartment (2bedrooms),9371687,Clementine,Manhattan,East Village,40.72976,-73.98802,Private room,80,6,0,,,1,0 +13863230,Completely Renovated Prewar Apartment in HOT Area,10346084,Lindsay,Queens,Astoria,40.75816,-73.91945,Entire home/apt,110,5,0,,,1,0 +13864221,"Live, Love, Stay in the Bronx!",3213737,Vernise,Bronx,Allerton,40.86066,-73.85414,Private room,50,1,8,2018-11-12,0.23,1,280 +13864224,Spacious Artist's Loft/Apartment,74011703,Stephanie,Manhattan,Financial District,40.71069,-74.00751,Entire home/apt,200,3,6,2016-10-14,0.16,1,0 +13864551,Comfy Room in Amazing East Village Apt,4396,Casey,Manhattan,East Village,40.72309,-73.98428,Private room,74,1,2,2016-11-06,0.05,2,188 +13864653,Spacious & Quiet Bedroom w/ Private Bathroom,1905137,Ryan,Brooklyn,Greenpoint,40.7317,-73.95473,Private room,100,2,8,2016-11-16,0.23,1,0 +13864705,Your home away from home...,81953225,Donald,Bronx,Wakefield,40.8947,-73.85601,Private room,52,3,63,2018-09-21,1.78,1,0 +13864889,Vintage Artist Loft-Studio on Upper West Side,28250,Waybridge,Manhattan,Upper West Side,40.78023,-73.97884,Entire home/apt,135,5,28,2019-07-01,0.80,1,24 +13865089,Convenient Gem in Midtown East,32833394,Arthur,Manhattan,Midtown,40.7542,-73.96862,Private room,90,12,0,,,1,70 +13865843,Summer Weekend in the City,81969914,Julie,Manhattan,Midtown,40.75248,-73.97332,Private room,200,2,0,,,1,0 +13866112,Sanctuary steps from the heart of downtown,4317379,B,Manhattan,East Village,40.72394,-73.98872,Entire home/apt,165,2,3,2017-12-09,0.08,1,0 +13866269,Light filled private bedroom in Bed Stuy's best.,7027982,Scott,Brooklyn,Bedford-Stuyvesant,40.68637,-73.94477,Private room,75,2,6,2016-12-14,0.17,1,0 +13867104,Light-Filled Williamsburg Loft,171250,Benjamin,Brooklyn,Williamsburg,40.71725,-73.95541,Private room,155,4,3,2016-12-11,0.09,1,0 +13867110,"Comfort First, in Williamsburg",50410819,Irma,Brooklyn,Williamsburg,40.7099,-73.95779,Entire home/apt,144,2,14,2016-12-15,0.39,1,0 +13868137,FEMALE ONLY,65846751,Luqian,Brooklyn,Sunset Park,40.64025,-74.01735,Private room,25,4,2,2016-08-10,0.06,1,0 +13873028,Penthouse in Midtown Manhattan,82054811,Carol,Manhattan,Midtown,40.76518,-73.98211,Private room,500,3,0,,,1,0 +13876073,Huge Room in Doorman Building,276207,Joshua,Manhattan,Upper West Side,40.79564,-73.97173,Private room,97,50,3,2019-01-01,0.09,1,201 +13876681,Cozy Room Times Square + ALL Museums Free Pass,82096395,Sergio,Manhattan,Hell's Kitchen,40.75981,-73.99118,Private room,150,5,20,2019-01-04,0.55,1,178 +13876809,Sunrise Loft Room in Luxurious Brooklyn Condo,82083094,Fay,Brooklyn,Canarsie,40.63927,-73.88145,Private room,65,2,13,2019-05-05,0.42,2,270 +13877683,"Perfect Private Garden Apartment, 2 blox to subway",57994,Martin & Hande,Brooklyn,Bedford-Stuyvesant,40.68082,-73.91128,Entire home/apt,99,2,142,2019-07-07,3.94,1,57 +13878195,Beautiful Harlem Doorman Bldg. One Bedroom Apt.,54060270,Maisha,Manhattan,Harlem,40.81691,-73.94835,Entire home/apt,100,3,2,2016-08-14,0.06,1,0 +13879280,Secret Alley Carriage House,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68774,-73.95477,Entire home/apt,250,1,29,2019-06-07,0.92,3,347 +13879391,Spaceous Bushwick Two Floor Apartment,6013624,Charlie,Brooklyn,Bushwick,40.6988,-73.91239,Private room,55,2,0,,,1,0 +13879611,"West 86th Street, Charming UWS One Bd Svcd Apt-A",22541573,Ken,Manhattan,Upper West Side,40.78593,-73.97284,Entire home/apt,169,30,1,2017-12-22,0.05,87,0 +13879965,Private Micro Room 2,59529529,Han,Manhattan,Hell's Kitchen,40.76289,-73.99419,Private room,70,1,218,2019-07-02,5.98,6,184 +13880183,Tribeca Light filled/ Views Apt,39919088,Jennifer,Manhattan,Tribeca,40.71928,-74.00799,Entire home/apt,1000,2,0,,,1,88 +13880280,Cozy living room sofa bed near Columbia University,19504744,Xu,Manhattan,Upper West Side,40.79405,-73.9658,Shared room,60,1,0,,,1,0 +13880509,THE crashpad for your Brooklyn adventure!,21468261,Rahul,Brooklyn,Bedford-Stuyvesant,40.68001,-73.94883,Private room,36,2,0,,,1,0 +13880697,"★ Master Bdrm | HBO, Netflix + Stocked Mini Fridge",82143608,Eric,Manhattan,East Harlem,40.7868,-73.94269,Private room,105,1,209,2019-07-07,5.79,2,76 +13880742,Center of the Action,30498797,Kate,Manhattan,Financial District,40.71052,-74.01135,Entire home/apt,315,3,0,,,1,0 +13880972,Wonderful private room fun apt in Hells Kitchen!,82147411,Vincent,Manhattan,Hell's Kitchen,40.76601,-73.99167,Private room,65,1,43,2019-01-03,1.27,1,0 +13881020,Courtyard facing private room in Sugar Hill,82148918,Kristen,Manhattan,Harlem,40.82903,-73.94502,Private room,50,2,55,2019-05-18,1.52,1,0 +13881135,****THE SUITE LIFE DUPLEX****,923465,Kila,Brooklyn,Bedford-Stuyvesant,40.68821,-73.93758,Private room,69,5,54,2019-07-02,1.55,1,320 +13881317,Deluxe Furnished Spacious Studio Apartment,44034761,Matt,Manhattan,Upper West Side,40.77906,-73.98507,Entire home/apt,110,1,65,2019-06-30,1.80,2,266 +13881521,Modern Furnished Studio in Luxury Doorman Building,82154865,Tate,Manhattan,Upper West Side,40.78935,-73.97462,Entire home/apt,95,30,0,,,1,67 +13881622,Comfy Williamsburg townhouse 950sf w gorgeous yard,80837608,Susan,Brooklyn,Williamsburg,40.71558,-73.93577,Entire home/apt,249,3,26,2018-10-22,0.76,1,0 +13881787,Williamsburg large and sunny private room,1002452,Florencia,Brooklyn,Williamsburg,40.71124,-73.94861,Private room,57,7,14,2019-05-04,0.39,2,0 +13881920,Prime west village! design 1BR~Best Value,2119276,Host,Manhattan,Greenwich Village,40.73478,-73.99791,Entire home/apt,150,30,8,2019-06-14,0.32,39,275 +13882394,VIP Duplex Townhouse with Private Garden!!!,49186997,Joseph,Manhattan,Greenwich Village,40.73305,-73.99373,Entire home/apt,3800,30,2,2017-01-27,0.06,1,180 +13882858,Serene and Spacious Sunnyside Retreat,80686298,Dean,Queens,Sunnyside,40.74498,-73.91385,Entire home/apt,99,2,2,2016-07-27,0.06,1,0 +13882864,Pre-War 1 BR with Scenic Manhattan Views,82168970,Michael,Staten Island,St. George,40.64475,-74.07811,Private room,50,1,0,,,1,0 +13883020,Amazing view in an artist's living 2bed/2bath apt,20471727,Krisztián,Brooklyn,Williamsburg,40.71118,-73.96342,Entire home/apt,370,6,5,2018-12-31,0.14,1,0 +13883029,Sunny Room in Williamsburg! $1200/Month,16899478,Nicole,Brooklyn,Williamsburg,40.71241,-73.95354,Private room,55,21,0,,,1,0 +13883249,West Village - Location Location Location!,48852712,Eric,Manhattan,West Village,40.73756,-73.99858,Entire home/apt,147,3,6,2016-12-26,0.17,1,0 +13883303,Sunny Bushwick room on Jefferson st,1932969,Chris,Brooklyn,Bushwick,40.70296,-73.92919,Private room,40,30,0,,,1,0 +13883393,One Bedroom Apartment- Only 15 min to Time Square!,82179512,Mingmar,Queens,Woodside,40.74399,-73.89817,Entire home/apt,87,1,162,2019-06-23,4.45,1,332 +13883481,1 Bdrm in Spacious Apartment with Amenities,8201520,Dhruv,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95084,Private room,65,2,0,,,1,0 +13884253,Private Sunny Bedroom in a Modern 2 Bedroom Co-op,48421955,Lori,Brooklyn,Kensington,40.64498,-73.98191,Private room,46,1,19,2018-01-02,0.56,1,0 +13884628,"Luxury Room (rm3), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81097,-73.96001,Private room,110,3,68,2019-06-24,1.88,6,128 +13884778,"Luxury Room (rm2), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81093,-73.95928,Private room,100,3,81,2019-06-22,2.24,6,133 +13885247,"Cozy, Convenient 1 Bed Apartment!!! UWS Manhattan",82208124,Yang,Manhattan,Upper West Side,40.77472,-73.98641,Entire home/apt,110,3,33,2019-06-23,0.91,2,0 +13885829,LUXE STUDIO SUITE - Midtown East - 22,80479138,Gordon,Manhattan,Midtown,40.75965,-73.96631,Entire home/apt,140,30,12,2019-03-31,0.39,5,68 +13885982,The Bushwick Museum,11841497,Amanda,Brooklyn,Bushwick,40.70112,-73.93086,Private room,55,1,3,2016-07-29,0.08,1,0 +13886618,"Cozy, quiet 1 bdrm centrally located",21003389,Alicia,Brooklyn,Crown Heights,40.66914,-73.9557,Private room,130,2,20,2019-05-19,0.55,1,89 +13889399,Great 3 Bedroom Apt Near Manhatthen,75919970,Scott,Queens,Ditmars Steinway,40.77415,-73.91695,Entire home/apt,125,1,1,2016-07-25,0.03,1,0 +13891181,Spacious Sunny Bedroom near JMZ Subways,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93319,Private room,73,5,89,2019-06-10,2.68,6,94 +13891302,Gorgeous 2 Bedroom New York City Apartment!,30283594,Kara,Manhattan,Hell's Kitchen,40.76062,-73.99741,Entire home/apt,479,30,1,2019-03-06,0.24,121,185 +13891485,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70358,-74.00854,Entire home/apt,270,30,0,,,87,190 +13891670,"Cozy room, easy trip to Manhattan & North Brooklyn",22861607,Emmie,Brooklyn,Bedford-Stuyvesant,40.68374,-73.95012,Private room,41,1,1,2016-08-09,0.03,1,0 +13892036,Private bedroom B in Heart of LES,9208421,Cody,Manhattan,Lower East Side,40.7209,-73.98822,Private room,85,1,120,2019-06-23,3.37,2,29 +13893264,Prospect Lefferts Terrific Townhouse,37413,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.66047,-73.95445,Entire home/apt,175,6,3,2018-08-28,0.13,1,12 +13893494,Idyllic Two Bedroom Apt in the heart of Chelsea,2700098,Kendall,Manhattan,Chelsea,40.73938,-74.00002,Entire home/apt,350,3,6,2017-05-29,0.17,1,0 +13893853,"Spacious Apt in Brand New Bldg, Private Yard!",11730237,Rita,Brooklyn,Bushwick,40.69095,-73.91909,Entire home/apt,140,3,0,,,1,0 +13893861,Light-filled full Apt near Cloisters and Parks,82302838,Jacob,Manhattan,Inwood,40.86118,-73.92758,Entire home/apt,89,3,6,2017-03-07,0.18,1,0 +13894254,87th ST ** ALL NEW ** Central PARK,82307155,Mor,Manhattan,Upper East Side,40.77773,-73.94938,Entire home/apt,450,2,110,2019-06-19,3.02,1,287 +13894339,Luxury 1 bedroom apt. -stunning Manhattan views,5143901,Erin,Brooklyn,Greenpoint,40.7326,-73.95739,Entire home/apt,10000,5,5,2017-07-27,0.16,1,0 +13894813,"Lg Times Square, cathedral windows",31626212,Troy,Manhattan,Theater District,40.75888,-73.98467,Private room,113,2,12,2019-06-23,0.39,5,197 +13895156,in the heart of williamsburg,2609335,Roei,Brooklyn,Williamsburg,40.71319,-73.95822,Entire home/apt,300,14,3,2018-09-22,0.08,1,345 +13895437,Bushwick Basement Large Room with Half Bath,2776152,Jessica,Brooklyn,Bushwick,40.69904,-73.91792,Private room,38,1,3,2016-09-19,0.08,1,0 +13896200,HUGE New Industrial Williamsburg Apartment,6000480,Douglas,Brooklyn,Williamsburg,40.71741,-73.93487,Entire home/apt,220,4,4,2017-10-31,0.11,1,0 +13898236,2 Floor Condo in Williamsburg with Pvt Terrace,2962330,Thobey,Brooklyn,Williamsburg,40.71684,-73.94578,Entire home/apt,250,1,0,,,1,0 +13899190,East Village One Bedroom,15099636,Natalie,Manhattan,East Village,40.72611,-73.97905,Entire home/apt,120,1,3,2016-07-25,0.08,1,0 +13899934,Light-filled apt offering private bedroom & bath,7262145,Colin,Manhattan,Upper East Side,40.78245,-73.94686,Private room,99,1,1,2016-07-31,0.03,1,0 +13900417,LUXURY HUGE 2BR DUPLEX NEAR TRAIN - PATIO OASIS!!,7958923,Vikas,Brooklyn,Bedford-Stuyvesant,40.68861,-73.94109,Entire home/apt,115,1,350,2019-06-26,9.61,2,137 +13900695,Private Room in Fun Neighborhood,23526253,David,Queens,Ridgewood,40.71164,-73.91879,Private room,30,15,0,,,1,0 +13900712,Homey 1BR close to US Open,63097027,J.A.,Queens,Jackson Heights,40.75145,-73.88946,Entire home/apt,150,3,4,2017-09-15,0.12,1,0 +13900901,Cozy comfortable room near JFK&LGA#3,82367658,John,Queens,Richmond Hill,40.69196,-73.82029,Private room,38,3,32,2019-06-04,0.89,5,212 +13901170,Comfy 1 Bedroom in commercial East Flatbush,82398569,Daniel And Christianne,Brooklyn,East Flatbush,40.65214,-73.93126,Entire home/apt,62,2,85,2019-06-15,2.36,1,33 +13902088,Peaceful and Spacious Master Bedroom,82412007,Janet,Manhattan,Gramercy,40.73517,-73.98176,Private room,120,2,3,2017-11-25,0.14,1,0 +13902591,Cozy and Cool East Williamsburg 1 BR in 2 BR,13499885,Arash,Brooklyn,Williamsburg,40.71281,-73.94603,Private room,60,6,2,2017-01-05,0.06,2,0 +13902725,There's a reason this room has a 5-star rating.,6034354,Leigh,Manhattan,Hell's Kitchen,40.75913,-73.98991,Private room,195,1,41,2019-05-23,1.19,1,170 +13903497,"Stunning, Unique, w/ Private Workspace",2861768,Justin,Manhattan,Harlem,40.81142,-73.95134,Private room,69,15,19,2019-06-15,0.54,3,106 +13905833,1 BDR PRIME HELLS KITCHEN LOCATION,82444858,Gilbert,Manhattan,Hell's Kitchen,40.7672,-73.98457,Entire home/apt,150,3,0,,,1,0 +13906636,Bedstuy Brownstone Gem,62785237,Fanny,Brooklyn,Bedford-Stuyvesant,40.68535,-73.94959,Entire home/apt,138,3,95,2019-07-05,2.74,1,71 +13907229,Beautiful Beach Home,82469513,Sonya,Queens,Rockaway Beach,40.58633,-73.80603,Private room,85,1,0,,,1,0 +13907872,Amazing One Bedroom apartment with private patio,60922011,Julien,Brooklyn,Williamsburg,40.70842,-73.95437,Entire home/apt,120,1,21,2017-10-10,0.58,1,0 +13910111,Beautiful room on Brownstone in Bushwick,16156297,Jose,Brooklyn,Bushwick,40.69283,-73.90961,Private room,41,2,42,2019-01-02,1.16,1,0 +13910919,Room,39476034,James,Queens,Jamaica,40.67088,-73.76672,Private room,159,1,0,,,2,363 +13911123,1 bedroom in 3 bedroom/2bath Bushwick Apt.,82512085,Hattie,Brooklyn,Bushwick,40.68987,-73.91548,Private room,35,1,1,2016-08-10,0.03,1,0 +13911206,Bright apartment across from Riverside Park,359424,Tal,Manhattan,Morningside Heights,40.80734,-73.9673,Entire home/apt,250,3,1,2016-08-15,0.03,1,0 +13911729,Peaceful Retreat with Garden in Brooklyn Heights,70834,Andy,Brooklyn,Brooklyn Heights,40.69389,-73.99586,Entire home/apt,215,3,4,2019-05-19,0.31,1,0 +13911835,Peaceful Private Space in Astoria,17927023,Rob,Queens,Astoria,40.76963,-73.93041,Entire home/apt,115,2,64,2019-07-01,1.77,1,89 +13912267,⚜ Sun-Filled 1BR in Upper East Side ⚜,79675471,Joanna,Manhattan,Upper East Side,40.76858,-73.95346,Entire home/apt,99,2,0,,,1,0 +13912712,SUNNY & QUIET STUDIO NEAR CENTRAL PARK UPPER EAST,9293730,Inna,Manhattan,Upper East Side,40.76911,-73.95694,Entire home/apt,129,30,10,2019-04-15,0.35,16,299 +13912725,Master bedroom with a California king size bed,8163438,PeiYoung,Queens,Astoria,40.75684,-73.92518,Private room,75,1,0,,,1,0 +13912926,Whole apartment in Forest Hills,1287719,Constanza,Queens,Forest Hills,40.71642,-73.8357,Entire home/apt,200,5,1,2016-08-29,0.03,1,0 +13913803,Bedroom in Clinton Hill,4310378,Autumn,Brooklyn,Clinton Hill,40.69561,-73.96269,Private room,79,3,26,2019-05-30,0.75,3,362 +13914201,❤️Gorgeous Townhouse Apt - 2 blocks from subway,324628,Lisa,Manhattan,Harlem,40.80403,-73.95125,Entire home/apt,160,30,122,2019-05-26,3.52,1,179 +13914226,Classic brownstone drenched with light,8812035,Claudia,Brooklyn,Clinton Hill,40.69244,-73.96501,Entire home/apt,130,7,1,2016-08-04,0.03,1,0 +13914237,Apt in Heart of NYC with AC !,6338590,Dashiell,Manhattan,Upper West Side,40.78173,-73.98601,Entire home/apt,70,2,7,2017-01-03,0.19,1,0 +13914512,Small Cozy comfortable room nearJFK#5,82367658,John,Queens,Richmond Hill,40.69018,-73.82141,Private room,32,2,10,2018-08-19,0.32,5,342 +13914735,Beautiful bedroom / in Beach home,82562435,Josephine,Queens,Arverne,40.59005,-73.79449,Private room,37,1,114,2019-06-04,3.18,2,305 +13914961,Cozy Bushwick Brooklyn Room -20 mins to Manhattan!,73247569,Sinida,Brooklyn,Bushwick,40.7017,-73.93716,Private room,55,1,88,2019-07-07,2.43,2,102 +13915004,"Sunlit, spacious NY apartment",7177483,Dani,Manhattan,Harlem,40.8038,-73.95569,Entire home/apt,250,3,10,2019-01-01,0.28,1,0 +13915699,Good Deal! Large Clean and Stylish 1Bedroom!,1279152,Alison,Brooklyn,Midwood,40.62803,-73.9675,Entire home/apt,75,3,6,2018-12-31,0.17,1,0 +13916105,Cozy room in the best neighborhood in town,54261444,Natalia,Manhattan,Greenwich Village,40.72869,-74.00157,Private room,150,6,0,,,1,0 +13917029,Private Room in a Great Brooklyn Loft,616808,Emine Gozde,Brooklyn,Williamsburg,40.70778,-73.9464,Private room,42,15,1,2016-07-27,0.03,1,0 +13919213,Spacious Harlem Garden Apartment,82623035,Alex And Maya,Manhattan,Harlem,40.82611,-73.94407,Entire home/apt,155,2,138,2019-06-23,3.79,1,232 +13920551,Vida Local,80974010,Lou,Bronx,Highbridge,40.83736,-73.92318,Private room,22,3,14,2017-10-10,0.39,1,42 +13920697,Brownstone apt in Bklyn w/ gorgeous natural light,29513490,Whitney,Brooklyn,Bedford-Stuyvesant,40.6837,-73.93325,Entire home/apt,125,2,4,2017-01-02,0.12,1,0 +13920801,Beautiful 2 bedroom private suite,10312167,Razia,Manhattan,Harlem,40.80297,-73.9505,Entire home/apt,99,28,76,2019-03-04,2.16,2,296 +13921462,Sunny and spacious apartment in Brooklyn,1481058,Aris,Brooklyn,Greenpoint,40.73273,-73.95764,Private room,60,4,30,2018-06-25,0.83,2,0 +13921768,"Convenient,Clean,Roomy Apt in WaHi",18177436,Joanna,Manhattan,Washington Heights,40.84156,-73.93884,Private room,45,2,3,2016-07-31,0.08,1,0 +13922353,Spacious BR next to Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76806,-73.9847,Private room,130,3,6,2017-11-06,0.17,3,0 +13923165,Cozy Private Bedroom in Uptown Manhattan,69376422,Abbey,Manhattan,Washington Heights,40.84198,-73.93816,Private room,40,2,1,2016-07-26,0.03,1,0 +13923255,Private Bedroom A in Heart of LES,9208421,Cody,Manhattan,Lower East Side,40.72102,-73.98891,Private room,95,2,16,2019-06-10,0.45,2,0 +13924403,Private Room in Kelly&Joes Loft Apt,78529013,Johannes,Queens,Astoria,40.75951,-73.91963,Private room,55,1,0,,,1,0 +13926029,SOUTH SLOPE Brooklyn - Bright and Spacious Bedroom,7007654,Dhwani,Brooklyn,Sunset Park,40.65976,-73.99191,Private room,35,2,0,,,1,0 +13926341,Gorgeous 1bdr in Lower East Side,1961818,Anais,Manhattan,Lower East Side,40.7194,-73.992,Entire home/apt,140,7,1,2016-09-14,0.03,1,0 +13926463,Stylish Private Room 3 subway stops to Manhattan,74906838,Priscila,Queens,Long Island City,40.75382,-73.91968,Private room,70,3,90,2019-07-04,2.60,1,24 +13926549,Beautiful 1 Bedroom 2 blocks from Central Park,82719112,Adam,Manhattan,Upper West Side,40.78296,-73.97743,Entire home/apt,250,1,1,2016-08-14,0.03,1,0 +13926604,Interfaith Retreat Guest Rooms (Śakti),16677326,Alex And Zeena,Manhattan,Chelsea,40.74779,-73.9966,Private room,85,1,51,2019-06-23,1.60,12,355 +13926664,Interfaith Retreat Guest Rooms (Seva),16677326,Alex And Zeena,Manhattan,Chelsea,40.74798,-73.99532,Private room,85,1,78,2019-05-27,2.26,12,360 +13926702,Peaceful 1 Bedroom/1 Bathroom on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78341,-73.97713,Entire home/apt,106,30,14,2019-06-10,0.41,6,242 +13927922,Gorgeous and Cosy Studio in Astoria!,82740389,Vanessa,Queens,Ditmars Steinway,40.78028,-73.91477,Entire home/apt,90,3,5,2016-09-18,0.14,1,0 +13927957,Charming Manhattan-Midtown Studio,82740724,Roman,Manhattan,Midtown,40.75259,-73.97061,Entire home/apt,129,1,159,2019-06-12,4.39,1,193 +13928461,Charismatic Flat in Astoria,24678224,Stephanie,Queens,Astoria,40.76482,-73.91996,Private room,100,3,11,2019-01-01,0.32,1,0 +13934790,Romantic Art-Filled Apartment with Large Backyard,21493738,Natalie,Brooklyn,Crown Heights,40.66957,-73.94804,Entire home/apt,150,3,0,,,2,0 +13934894,Spacious room in huge loft in Tribeca,6934546,Robert,Manhattan,Tribeca,40.71474,-74.00596,Private room,100,30,0,,,1,0 +13935360,Bright & Sunny 2-Bedroom in Hamilton Heights,80560845,Shelley,Manhattan,Harlem,40.83136,-73.94843,Entire home/apt,100,4,4,2017-08-05,0.11,1,0 +13935511,Great Appartment with cool roomates in Bushwick,6169992,Geraldine,Brooklyn,Williamsburg,40.70282,-73.94287,Private room,60,1,0,,,1,0 +13936824,Beautiful one bedroom apartment in Williamsburg,73843068,Naief,Brooklyn,Williamsburg,40.71822,-73.94454,Entire home/apt,120,4,53,2019-06-30,1.46,1,15 +13936825,Spacious master bedroom in Forest Hills,82857184,Shlomit,Queens,Forest Hills,40.73096,-73.84924,Private room,75,2,16,2019-01-01,0.61,1,157 +13937701,Entire Spacious Artist Apartment,36438456,Marco,Manhattan,Washington Heights,40.83625,-73.93915,Entire home/apt,140,2,10,2017-08-03,0.28,1,0 +13937820,Huge Private Room in Williamsburg/Buschwick!!,33902900,Cristina,Brooklyn,Williamsburg,40.70875,-73.94271,Private room,55,2,2,2016-08-01,0.06,1,0 +13937854,"Cozy 1 Bedroom in Crown Heights, right by subway!",7398239,Chana,Brooklyn,Crown Heights,40.66873,-73.9329,Entire home/apt,75,1,0,,,1,0 +13938420,Brooklyn at its Best!,25718914,Ainslie And John,Brooklyn,Prospect-Lefferts Gardens,40.65966,-73.95601,Private room,85,2,160,2019-07-02,4.44,2,136 +13939924,Spectacular Views! Gorgeous 25th flr Columbus Cl,17551179,Marissa,Manhattan,Midtown,40.76618,-73.98279,Entire home/apt,225,1,0,,,1,0 +13940091,Your own Midtown Manhattan Apt & private Garden,61649970,Chantelle,Manhattan,Murray Hill,40.74744,-73.97299,Entire home/apt,219,1,56,2019-06-09,1.58,2,217 +13941017,Charming Brooklyn apartment in historic brownstone,79840032,Heather,Brooklyn,Clinton Hill,40.69048,-73.96577,Entire home/apt,185,2,9,2019-03-09,0.25,1,0 +13941210,Bright Astoria Apt Near Manhattan,17452232,Lili,Queens,Ditmars Steinway,40.77121,-73.9171,Entire home/apt,70,2,9,2017-10-07,0.26,1,0 +13941236,1 Bedroom Apartment in Brooklyn fully renovated,21466891,Martin,Brooklyn,Bushwick,40.68374,-73.90988,Entire home/apt,100,4,85,2019-06-19,2.41,2,107 +13941308,"# CENTRAL PARK - 3 stops away (32""TV room)",82921914,G. Matthew,Manhattan,Harlem,40.81922,-73.95276,Private room,69,2,121,2019-06-30,3.44,3,65 +13941332,Sunny Suite in Bed Stuy with AC!,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94548,Private room,40,2,104,2019-06-24,2.88,3,97 +13941973,Affordable room near of LGA airport in Queens.,46712160,Lucilu,Queens,Woodside,40.74071,-73.89186,Private room,55,1,251,2019-06-23,9.30,2,31 +13941998,Private studio in the heart of Park Slope,34543957,Jasna,Brooklyn,Park Slope,40.67819,-73.98084,Entire home/apt,150,3,10,2017-11-15,0.28,1,0 +13942612,Modern Apt in Prime Brooklyn That Has it All,20536793,Igor,Brooklyn,Park Slope,40.67132,-73.98709,Entire home/apt,113,1,0,,,1,0 +13942921,Spacious Room with Character in BK,82951378,Talor,Brooklyn,Crown Heights,40.67285,-73.95734,Private room,45,1,3,2017-10-15,0.09,1,0 +13943523,Spacious Manhattan apartment with amazing view,24461849,Fredrik,Manhattan,Midtown,40.74569,-73.98592,Entire home/apt,280,3,2,2017-01-02,0.07,1,0 +13944942,GORGEOUS REMODELED 1-BEDROOM PRIME LOCATION,5732761,Alessandro,Manhattan,Upper West Side,40.79657,-73.9624,Private room,120,3,68,2019-04-22,1.87,1,0 +13945103,"Great quiet room,great location",82717014,Mary,Queens,Sunnyside,40.74379,-73.91277,Private room,90,1,1,2016-09-11,0.03,1,173 +13949732,Big 4 bedroom house with garden by the Park in PLG,1857899,Audrey,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95468,Entire home/apt,225,2,10,2017-05-30,0.29,1,0 +13950233,Updated East Side 2 Bedroom,61391963,Corporate Housing,Manhattan,Kips Bay,40.74096,-73.98055,Entire home/apt,159,30,4,2018-09-14,0.12,91,364 +13951405,Tribeca Luxury 2000sf Loft,65609488,Alex,Manhattan,Tribeca,40.71559,-74.00737,Entire home/apt,650,1,1,2016-07-17,0.03,1,0 +13951783,Time SQ Midtown West Central Park 3Beds Sleep6,82491369,Joel,Manhattan,Hell's Kitchen,40.76463,-73.98855,Entire home/apt,275,2,125,2019-06-11,3.44,1,146 +13951959,Newly Renovated Clinton Hill Duplex,66051630,Maya,Brooklyn,Clinton Hill,40.68265,-73.96631,Entire home/apt,325,5,80,2019-06-22,2.21,1,92 +13952269,Extremely spacious duplex with garden,12151986,Elaine,Brooklyn,Sunset Park,40.66053,-73.98929,Entire home/apt,359,5,8,2017-11-26,0.23,1,0 +13952319,Cosy Studio with a backyard in Forest Hills,7212175,Swati,Queens,Forest Hills,40.72143,-73.85522,Entire home/apt,99,1,143,2019-06-28,3.96,1,282 +13952384,Large Upper East Side Alcove Studio,14945903,Nicole,Manhattan,Upper East Side,40.76749,-73.96392,Entire home/apt,108,3,1,2016-07-23,0.03,1,0 +13952428,Cozy room w/private entrance in East Williamsburg,67961258,Kaitlin,Brooklyn,Williamsburg,40.70883,-73.93873,Private room,67,1,14,2017-04-12,0.40,1,0 +13952801,Greenpoint Artist Loft,25938509,Ashley,Brooklyn,Greenpoint,40.72675,-73.94219,Private room,25,7,2,2016-12-06,0.06,1,0 +13953224,Luxury Apt With Sunset View,83072717,Donna,Manhattan,Chelsea,40.7464,-73.9909,Entire home/apt,190,7,0,,,1,0 +13953640,Private apartment 45 min away from the city,83082749,Peter,Queens,Ozone Park,40.68345,-73.83378,Entire home/apt,125,1,11,2016-08-23,0.31,1,0 +13954028,Cozy Upper West Side Studio,6571805,Agata,Manhattan,Upper West Side,40.79301,-73.97544,Entire home/apt,124,2,28,2019-05-20,0.79,2,336 +13955012,1 large bedroom with private bathroom,82505349,Marwan,Brooklyn,Bushwick,40.69387,-73.91341,Private room,100,5,0,,,1,0 +13955139,Heart of Willimsburg- 1 block from bedford L stop,83101296,Ariana,Brooklyn,Williamsburg,40.71675,-73.95725,Private room,60,4,0,,,1,0 +13955160,Eclectic & Cozy Private Room in Prospect Hts!!!,78343124,Sherice,Brooklyn,Crown Heights,40.68035,-73.96239,Private room,55,2,1,2016-07-24,0.03,1,0 +13955165,2 BDRM/1.5 Bath Prospect Heights Brooklyn/Sleeps 6,4979473,Gary,Brooklyn,Prospect Heights,40.67959,-73.96486,Entire home/apt,175,3,0,,,1,0 +13956326,2 Bedroom Duplex with large backyard,18113574,William,Brooklyn,Williamsburg,40.7121,-73.93705,Entire home/apt,200,4,1,2016-08-07,0.03,1,0 +13956613,The Griffin B & B- 2 bedroom suite in Ditmas Park,24424456,Jeannine,Brooklyn,Flatbush,40.63273,-73.96385,Entire home/apt,200,2,10,2019-07-01,0.91,1,167 +13957261,Apartment in Ridgewood/Bushwick Neighborhood,8143711,Jon,Queens,Ridgewood,40.69968,-73.90697,Private room,60,2,0,,,1,0 +13957427,Luxury 1bdr in East Village,83131313,Johnny,Manhattan,East Village,40.72268,-73.98215,Entire home/apt,175,4,2,2018-06-27,0.08,1,16 +13957499,"Huge, Quiet Room, Near Columbia & Express Subways!",8253604,James & Shaun,Manhattan,Harlem,40.81557,-73.95295,Private room,88,1,147,2019-07-07,4.24,2,165 +13959100,East Flatbush- Sunny 1 bedroom apt,79696862,Jay,Brooklyn,Flatlands,40.62297,-73.93849,Private room,57,1,7,2018-05-12,0.20,1,311 +13959346,Room Available in Heart of Fort Greene,83156877,Nick,Brooklyn,Fort Greene,40.6875,-73.97605,Private room,145,1,0,,,1,0 +13959538,Luxurious 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74201,-73.97957,Entire home/apt,133,30,7,2019-04-09,0.29,91,342 +13959556,Comfy Accommodations in Queens NY (JFK - 8 Mins),74331597,Nickesha,Queens,St. Albans,40.68482,-73.76929,Private room,55,5,28,2019-06-15,0.81,5,365 +13959891,"Best Location - Modern 1 BR, very quiet",61391963,Corporate Housing,Manhattan,Upper East Side,40.77148,-73.96111,Entire home/apt,125,30,7,2019-06-30,0.21,91,157 +13960277,Stylish 1 bed just a block from Prospect Park,20518366,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.66204,-73.96052,Entire home/apt,80,5,4,2016-08-14,0.11,2,0 +13960907,Quiet and Sunny bedroom @Williamsburg bedford,11040921,Nicolas,Brooklyn,Williamsburg,40.71576,-73.95586,Private room,70,2,3,2016-08-31,0.08,1,0 +13961015,A Lovely One Bedroom Apartment!,29224381,Aurora,Bronx,Norwood,40.86853,-73.88301,Entire home/apt,120,10,7,2019-01-07,0.20,1,327 +13961073,Queen of Elevated Castle,10231747,Jason,Manhattan,Hell's Kitchen,40.76492,-73.99128,Private room,150,1,119,2019-05-22,3.29,2,316 +13961209,Fort Greene Studio with gardened backyard,83183600,Anthony,Brooklyn,Fort Greene,40.69626,-73.97276,Entire home/apt,90,3,5,2016-09-05,0.14,1,0 +13962117,Cozy One Bedroom Apartment in Lovely Clinton Hill,9856492,Johnny,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95952,Entire home/apt,115,7,9,2018-08-26,0.40,1,14 +13963005,Gorgeous 2 Bedroom apartment,41870118,Iveta,Queens,Forest Hills,40.72064,-73.83746,Entire home/apt,2350,365,0,,,1,364 +13963326,Cozy Bedroom,21408053,Tory,Manhattan,Harlem,40.82323,-73.9467,Private room,51,2,9,2016-09-09,0.25,1,0 +13968271,Two story Park Slope home with deck and garden,647256,Deena,Brooklyn,Park Slope,40.67922,-73.98157,Entire home/apt,200,1,0,,,1,0 +13968722,Charming 1BR at Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76686,-73.98393,Private room,105,2,3,2016-10-23,0.09,3,0 +13970217,Modern 2 BR Duplex apartment in Sutton Place - 42,80479138,Gordon,Manhattan,Midtown,40.76036,-73.96462,Entire home/apt,225,30,7,2019-03-14,0.22,5,321 +13971160,Cosy and Bright Bedroom *CENTRAL HARLEM*,50145118,Sonia,Manhattan,Harlem,40.80914,-73.94363,Private room,89,1,79,2019-06-19,2.24,3,0 +13971185,"Huge, private bedroom with bathroom",76975771,Claudia,Queens,Maspeth,40.73425,-73.89553,Private room,61,2,24,2018-08-21,0.69,1,281 +13971471,Nice Room in Charming Apartment,8338942,Victor,Manhattan,Nolita,40.72363,-73.99546,Shared room,70,1,228,2019-06-21,6.36,4,103 +13972708,#MANHATTAN - Upper West BIG ROOM w/tv,82921914,G. Matthew,Manhattan,Harlem,40.8197,-73.95326,Private room,69,2,72,2019-06-08,2.09,3,72 +13972766,Location!! Welcome to my Lovely Home.,14911571,Diane,Manhattan,Greenwich Village,40.72738,-74.00018,Private room,79,1,161,2019-06-22,4.43,1,125 +13973268,Simple room in the heart of Bed Stuy,48581287,Lydia,Brooklyn,Bedford-Stuyvesant,40.68583,-73.94112,Entire home/apt,83,1,7,2019-05-20,0.43,1,37 +13973514,Bright and Comfy near Prospect Park,14766250,Adam,Brooklyn,Crown Heights,40.66427,-73.95771,Private room,160,2,1,2016-08-30,0.03,1,0 +13974200,"Sunny, Pre-War Brooklyn Share",77317167,Stacey Rae,Brooklyn,Flatbush,40.65126,-73.96388,Shared room,40,1,5,2017-10-01,0.15,2,0 +13974584,Private Bedroom in 2-floor Bushwick Apartment,3152934,Cheno,Brooklyn,Bushwick,40.68758,-73.91321,Private room,50,1,2,2016-08-06,0.06,1,0 +13974993,# TIMES SQUARE - 19 MinutesBIG ROOM,82921914,G. Matthew,Manhattan,Harlem,40.82097,-73.95473,Private room,45,2,97,2019-06-22,2.79,3,101 +13975292,"Sunny, peaceful home in fantastic location",165566,Irene,Brooklyn,Gowanus,40.68203,-73.98427,Private room,85,1,1,2016-08-09,0.03,1,0 +13978036,2 BDR in Bushwick Brooklyn!,22484243,Andrew,Brooklyn,Bushwick,40.69647,-73.92474,Entire home/apt,100,3,102,2019-06-29,2.82,1,31 +13978084,Massive Beautiful Room!,116382,Anthony,Brooklyn,Crown Heights,40.67023,-73.94078,Private room,57,1,82,2019-07-05,2.28,5,356 +13978228,Airy Bright 1 Bedroom in Heart of Greenpoint BK,32704515,Lauren,Brooklyn,Greenpoint,40.72914,-73.9567,Entire home/apt,104,1,0,,,1,0 +13979519,"Heart of Williamsburg, Very Large Bedroom!",50327977,Jeffrey,Brooklyn,Williamsburg,40.7086,-73.94555,Private room,53,2,6,2016-11-06,0.17,1,0 +13979694,Cozy comfortable room near LGA&JFK#2,82367658,John,Queens,Richmond Hill,40.69054,-73.82185,Private room,38,3,19,2019-06-17,0.55,5,278 +13980280,Well Connected & Beautiful Sanctuary!,83403037,Severino,Brooklyn,Clinton Hill,40.68477,-73.96757,Entire home/apt,115,10,0,,,1,0 +13980828,Cozy sunlit 2bed w PRIVATE ROOFTOP in Brooklyn,11708912,Christine,Brooklyn,Bedford-Stuyvesant,40.68679,-73.957,Entire home/apt,139,1,2,2016-08-27,0.06,1,0 +13980860,LoraLisa's Flats,32772480,Lorna,Brooklyn,Prospect-Lefferts Gardens,40.66011,-73.95965,Entire home/apt,150,3,15,2019-06-26,1.46,2,154 +13980920,"Modern 3 BR home, 4 blocks from Public Transport!",36486481,Ann,Brooklyn,East Flatbush,40.65565,-73.93573,Entire home/apt,280,3,3,2018-12-09,0.33,1,0 +13980926,Newly renovated studio in heart of downtown NYC,858359,Joe,Manhattan,East Village,40.72441,-73.98683,Entire home/apt,90,5,5,2019-03-21,0.14,1,0 +13981865,纽约之家(Sunny Home4),27673980,Amy,Queens,Flushing,40.74447,-73.83186,Private room,50,1,60,2019-06-23,1.68,8,53 +13983092,"Quaint, Private Sunset Park Brownstone Experience",21889213,Debra,Brooklyn,Sunset Park,40.64637,-74.00558,Private room,45,21,0,,,1,0 +13986672,Bedroom in industrial huge loft in Greenpoint,1558222,Nikki,Brooklyn,Greenpoint,40.72828,-73.94225,Private room,70,5,0,,,3,0 +13987276,"Cozy, two bedrooms in a shared apartment.",83476674,Carmen,Manhattan,Harlem,40.83065,-73.94708,Private room,150,1,1,2016-08-21,0.03,1,87 +13987302,Large Studio Apartment Located Near Times Square,40060170,S,Manhattan,Hell's Kitchen,40.76488,-73.98597,Entire home/apt,155,14,75,2019-06-24,2.18,1,34 +13987339,Spacious Room in Central Location,14833533,Matthew,Manhattan,East Village,40.73395,-73.98899,Private room,109,5,25,2019-06-21,0.72,1,2 +13990819,"Cozy, Bright 1 Bedroom Fully Furnished Apartment",83526094,Mileaka,Brooklyn,Greenpoint,40.73773,-73.95489,Entire home/apt,150,1,12,2017-04-22,0.39,1,0 +13990841,"Best Location, 2bdr Park Slope, Bk",83523066,Jim,Brooklyn,Park Slope,40.67928,-73.97791,Entire home/apt,130,3,103,2019-06-21,2.94,2,101 +13991186,Well appointment apartment in doorman building,1419430,M,Manhattan,Midtown,40.76543,-73.97929,Entire home/apt,275,2,2,2017-04-09,0.06,1,0 +13991526,Brooklyn Apartment,14512391,Thomas,Brooklyn,Greenpoint,40.7205,-73.94125,Entire home/apt,100,1,1,2018-01-01,0.05,1,0 +13992183,Large Sunny Bedroom in Prospect Heights,20283580,Lucien,Brooklyn,Prospect Heights,40.67921,-73.97241,Private room,55,4,0,,,1,0 +13992442,Comfortable 1-bedroom in South Slope,57509618,Kelly,Brooklyn,Sunset Park,40.66206,-73.99767,Private room,50,1,0,,,1,0 +13992742,Cozy Studio in the Heart of Soho,83549989,Ezgi,Manhattan,NoHo,40.72618,-73.99523,Entire home/apt,215,3,2,2016-09-17,0.06,1,0 +13993046,Roomy and Comftable Room,75916476,Juan,Manhattan,Washington Heights,40.84844,-73.93611,Private room,40,10,2,2016-10-01,0.06,1,0 +13993376,SUNNY Spacious Oasis near Prospect Park!,6296368,Nancy,Brooklyn,Flatbush,40.63873,-73.95305,Private room,103,2,1,2016-09-01,0.03,1,0 +13994052,Private Room and Bathroom in Bright Apartment,10676792,Kristen,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92727,Private room,50,2,4,2016-10-01,0.11,2,0 +13995008,Awesome Chinatown Apartment,12455431,Tommy,Manhattan,Little Italy,40.71855,-73.99718,Shared room,500,1,0,,,1,0 +13995107,Spacious & quiet room w/ Balcony,39368803,Jorge,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95708,Private room,54,4,4,2017-09-21,0.12,1,0 +13995350,East Village Cozy Single Bed - Female Only,5822377,Shunan,Manhattan,East Village,40.72608,-73.98798,Shared room,79,1,1,2016-09-18,0.03,2,0 +13995561,Peaceful bedroom in Crown Heights Duplex,83585937,J.,Brooklyn,Crown Heights,40.67151,-73.91733,Private room,50,2,167,2019-06-28,4.73,2,162 +13995614,"Quiet bedroom in a bright loft, Heart of Manhattan",82539853,Pl,Manhattan,Midtown,40.74205,-73.98382,Private room,140,2,0,,,1,0 +13995891,Pre War Park Slope on Prospect Park Bedroom 2,1366270,Louisa,Brooklyn,South Slope,40.66432,-73.97954,Private room,59,4,28,2018-12-13,0.80,2,99 +13996108,Townhouse for rent,83593559,Inji,Brooklyn,Greenpoint,40.72704,-73.94587,Entire home/apt,150,14,0,,,1,0 +13996617,Cool Urban Brooklyn,40312918,Jordy,Brooklyn,Flatbush,40.65263,-73.95734,Private room,80,5,0,,,1,0 +13997385,"Best South Williamsburg Room, Sunny & Serene",41281138,Sarah,Brooklyn,Williamsburg,40.71026,-73.95165,Private room,85,3,1,2016-08-16,0.03,1,0 +13997415,"Steps to the Metro, Minutes to Manhattan!",83610543,Virgilio,Brooklyn,Bushwick,40.69974,-73.9338,Entire home/apt,185,2,169,2019-06-30,4.77,1,26 +13997539,Cozy Garden Apartment Heart of BK!,83611052,Sarah,Brooklyn,Fort Greene,40.69191,-73.97151,Entire home/apt,85,7,2,2017-04-17,0.06,1,0 +13997552,Modern 2-bedroom apartment near subway and parks,44502437,Negra,Queens,Astoria,40.75687,-73.91597,Entire home/apt,135,2,135,2019-07-06,3.80,1,168 +13997894,1 bedroom full apartment completely private!,83616984,Horacio,Queens,Corona,40.74598,-73.85683,Entire home/apt,85,7,60,2019-06-30,1.65,1,284 +13998049,Cozy Studio blocks from Time Square & the Hudson.,7245466,Steven,Manhattan,Hell's Kitchen,40.7621,-73.99424,Entire home/apt,150,1,2,2017-01-05,0.06,1,0 +13998064,Beautiful Studio with Back Patio,47988409,Eric,Brooklyn,Brooklyn Heights,40.69455,-73.99339,Entire home/apt,75,2,3,2016-10-10,0.08,1,0 +13998223,The People's Brownstone,61292168,Carol Ann,Manhattan,Harlem,40.81217,-73.94692,Entire home/apt,150,3,86,2019-07-01,2.43,1,226 +13998293,Sunny Designers Home w/Terrace - Heart of Downtown,2714018,Alexandria,Manhattan,East Village,40.72191,-73.9813,Entire home/apt,150,5,2,2016-10-03,0.06,1,0 +13998679,An Apartment to Call Home w/ Free Airport Pickup!,83627325,Jared,Queens,Sunnyside,40.74671,-73.91636,Entire home/apt,199,1,7,2018-12-30,0.20,4,365 +13999070,Sunny Cute Studio (15 Mins to Manhattan),83632643,Sheng,Queens,Woodside,40.74389,-73.89325,Entire home/apt,120,1,0,,,1,0 +13999916,Amazing Private room in LIC minutes to Manhattan,25537819,Joelle,Queens,Long Island City,40.74612,-73.94247,Private room,88,1,11,2016-08-25,0.30,2,0 +14000455,Spacious Studio/Pvt Bath 2 blks to Central Park N,83651013,Chapman,Manhattan,Harlem,40.80264,-73.9554,Private room,99,3,62,2017-07-14,1.74,1,0 +14006729,Cozy private bedroom in West Harlem,254650,Brandi,Manhattan,Harlem,40.80431,-73.95245,Private room,75,2,3,2016-08-25,0.08,2,0 +14006823,Great Studio near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76469,-73.99394,Entire home/apt,107,30,8,2019-05-04,0.24,31,332 +14007809,Colossal 1200 SF Nolita loft 15ft ceiling 1 bdrm,19462782,Michael,Manhattan,Nolita,40.72289,-73.99431,Entire home/apt,400,4,0,,,1,0 +14010200,"Scandinavean design in Crown Heights, BK",1683437,Boram,Brooklyn,Crown Heights,40.66477,-73.9506,Entire home/apt,89,5,9,2018-05-28,0.25,1,0 +14010252,"1br Apartment EastVillage,Manhattan",83757347,Leslie,Manhattan,East Village,40.72379,-73.98224,Entire home/apt,210,1,76,2019-06-15,2.10,1,311 +14010651,Perfect 3br in Lower East Side,55208833,Kevin,Manhattan,Lower East Side,40.71944,-73.98441,Entire home/apt,275,5,0,,,1,0 +14010699,Private & Spacious Master Suite w/ Full Bath,13730809,Kevin,Brooklyn,East New York,40.66172,-73.8975,Private room,57,5,22,2019-07-02,0.64,3,60 +14010951,"Huge Williamsburg private br + ba, in spacious 2br",32785916,Tim,Brooklyn,Williamsburg,40.71686,-73.95648,Private room,150,3,0,,,1,0 +14011318,Artsy basement with bathroom and private entrance,7658111,JesAnn,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93116,Private room,50,2,22,2018-10-14,0.63,1,8 +14011411,True 1BR in Prime West Village,15426862,Miles,Manhattan,West Village,40.73444,-74.00365,Entire home/apt,150,2,10,2019-06-09,0.29,1,13 +14011511,Private Room Beautiful Apartment,15929157,Christina,Brooklyn,East New York,40.67424,-73.88136,Private room,29,30,12,2018-11-01,0.38,3,193 +14011728,Large two-bedroom in Prime Location,54148881,Andrew,Brooklyn,Bedford-Stuyvesant,40.68129,-73.9487,Entire home/apt,100,2,1,2016-09-05,0.03,1,0 +14012274,Lovely and Cosy furnished 2 bedroom apartment,83786650,Bridge,Manhattan,Upper East Side,40.76026,-73.96204,Entire home/apt,152,30,1,2017-10-09,0.05,8,332 +14012606,Modern 4 Bedroom Lower Manhattan Apt in Soho,30283594,Kara,Manhattan,SoHo,40.72607,-74.00916,Entire home/apt,822,30,0,,,121,342 +14012748,NOHO 1BR 1BA,4308622,Christopher,Manhattan,East Village,40.72688,-73.98974,Entire home/apt,350,4,0,,,1,0 +14014128,Amazing Private Room - Custom Style,83809962,Tamara,Brooklyn,East Flatbush,40.66248,-73.92855,Private room,45,1,39,2019-06-12,1.27,2,365 +14014170,PRIVATE BEDROOM FOR 1 OR 2,83811169,Johno,Brooklyn,Flatbush,40.64943,-73.96202,Private room,49,2,41,2019-06-30,1.15,1,355 +14015822,Private room in 1Br Apartment,82805482,Konstantin,Brooklyn,East Flatbush,40.65367,-73.94872,Private room,45,27,6,2019-01-27,0.19,1,94 +14016202,Spacious Private Room/Full bath EAST VILLAGE,81939249,Tara,Manhattan,East Village,40.72383,-73.98289,Private room,120,2,0,,,1,0 +14016206,Williamsburg! 1 stop from Manhattan with backyard!,18881301,Brittany,Brooklyn,Williamsburg,40.71091,-73.96029,Private room,66,5,0,,,1,0 +14020396,"Westside Haven, Comfortable & Convenient !",77498973,Shaquana,Manhattan,Harlem,40.80266,-73.95792,Entire home/apt,122,1,41,2019-06-25,1.13,1,8 +14021649,Spacious Washington Heights 1 Bedroom,4300035,Charlotte,Manhattan,Washington Heights,40.85267,-73.93664,Entire home/apt,64,15,1,2016-08-06,0.03,1,0 +14022086,"Fun, Comfy, and Convenient Studio in Midtown West",13951935,Wayne,Manhattan,Hell's Kitchen,40.7598,-73.99681,Entire home/apt,135,2,8,2019-05-27,0.34,1,0 +14022980,HUGE Apt w/1 bedroom sublet in Brooklyn,7656555,Carly,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94817,Private room,33,2,11,2018-09-01,0.31,1,0 +14023316,chambre dans appartement arty de Brooklyn,31747645,Marie Salomé,Brooklyn,Clinton Hill,40.68583,-73.96434,Private room,70,2,0,,,2,0 +14024257,1 Room in 2 Bed Apt in the heart of Nolita/Soho,14399467,Caroline,Manhattan,Nolita,40.72203,-73.99498,Private room,320,4,6,2017-10-30,0.18,2,0 +14024708,Your beach-side bungalow awaits!,83930029,Fianna,Staten Island,New Dorp Beach,40.56464,-74.1,Entire home/apt,62,1,0,,,1,0 +14025561,MTW- Steffanie,83933642,Mona,Manhattan,Theater District,40.7607,-73.98347,Entire home/apt,130,30,1,2019-05-05,0.45,1,188 +14026544,Spacious Quiet Room in the East Village,18595434,Amanda,Manhattan,East Village,40.72588,-73.98198,Private room,95,1,7,2016-10-23,0.19,1,0 +14026862,Very Large 1 Bedroom with Large Patio,55703198,Henry,Queens,Ridgewood,40.70382,-73.90059,Entire home/apt,100,4,0,,,1,362 +14027065,Clean and comfortable stay,23502477,Yvonne Yuan,Manhattan,Midtown,40.75273,-73.96904,Private room,90,5,0,,,1,0 +14027110,"Awesome 1 BR in multi-cultural Queens, sleeps 4!",18873232,Laura,Queens,Elmhurst,40.73319,-73.87782,Entire home/apt,150,3,7,2017-01-07,0.20,1,261 +14027756,Large Soho Loft - Prime Location,57162807,Will,Manhattan,SoHo,40.72178,-73.99742,Entire home/apt,350,5,1,2016-09-23,0.03,1,0 +14028018,Gorgeous studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.763,-73.99452,Entire home/apt,120,30,6,2019-03-29,0.19,31,322 +14028280,NEW! BEST LOCATION !!! 3min to Rockefeller Plaza,60688035,Marta,Manhattan,Midtown,40.75938,-73.97235,Private room,250,3,152,2019-06-22,4.25,2,229 +14028380,Spacious 2 Floor 1 Bed Apartment!,7932698,Matthew,Brooklyn,Crown Heights,40.67244,-73.94426,Entire home/apt,106,1,30,2017-04-11,0.85,1,0 +14028513,"Two-Bedroom Apartment, 10 Minutes to Manhattan",864735,Jason,Queens,Astoria,40.7626,-73.91341,Entire home/apt,65,30,6,2019-06-19,0.17,8,201 +14028586,Perfect Luxury Studio in DUMBO,83977725,Mi,Brooklyn,Vinegar Hill,40.70125,-73.98582,Entire home/apt,175,2,114,2019-06-22,3.36,1,154 +14028597,Ground floor 2 Bedrooms with Backyard & BBQ,42106344,Mike,Brooklyn,Williamsburg,40.71723,-73.96703,Entire home/apt,360,5,8,2019-06-21,0.26,1,175 +14029633,Marine park studio,42204606,Allegra,Brooklyn,Sheepshead Bay,40.60778,-73.94194,Entire home/apt,119,1,12,2019-06-23,5.37,1,140 +14029776,peaceful space with a view,83996144,Amelia,Manhattan,Nolita,40.72202,-73.99451,Entire home/apt,85,2,0,,,1,0 +14030285,"Very large 3 bdrm, 1.5 bath, Flatbush/Ditmas Park",84003200,Elissa,Brooklyn,Flatbush,40.64314,-73.95817,Entire home/apt,189,2,88,2019-06-27,3.18,1,255 +14030375,Vanilla Tea - Cozy Studio Hideaway in Bed Stuy #5,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9447,Private room,68,2,134,2019-06-20,3.80,3,245 +14032445,Large One Bedroom Apartment,75853911,Sabrina,Manhattan,Harlem,40.80299,-73.95713,Entire home/apt,100,1,3,2016-09-16,0.09,1,0 +14036117,Comfortable 1BR with Laundry NYC,84071996,Clayton,Manhattan,Washington Heights,40.85519,-73.92705,Private room,40,3,3,2018-09-01,0.09,1,171 +14036591,Lovely room and location! - Williamsburg duplex,5367097,Benjamin,Brooklyn,Williamsburg,40.70658,-73.95001,Private room,45,30,0,,,1,0 +14036911,Stunning Clinton Hill Apartment,64109887,Emily,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9575,Private room,38,31,0,,,1,0 +14037145,B crownheights queen size bed$100,83147028,Shirley,Brooklyn,Crown Heights,40.67011,-73.92544,Private room,100,1,27,2018-10-30,0.75,2,365 +14037459,The BEST View in New York!,265832,Kathryn & Tobias,Manhattan,Harlem,40.81103,-73.9398,Private room,165,30,9,2016-11-05,0.25,1,88 +14039239,Spacious Room in Park Slope Apartment,78870551,Christina,Brooklyn,South Slope,40.66562,-73.98936,Private room,80,1,0,,,1,0 +14039287,Park Slope Railroad Room in July!,76114171,Priya,Brooklyn,Park Slope,40.67026,-73.97668,Private room,40,1,2,2016-07-28,0.06,1,0 +14041141,"Epic West Village, NYC rental",20971070,Melani,Manhattan,Chelsea,40.73819,-73.99835,Entire home/apt,175,27,2,2018-10-26,0.06,1,310 +14041196,Holiday @ Times Square One bedroom!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76161,-73.98995,Entire home/apt,99,4,82,2019-06-22,2.29,5,228 +14041447,Cosy Crown Heights Home Away From Home,84141923,Marisha,Brooklyn,Crown Heights,40.66856,-73.93929,Private room,50,3,45,2019-02-18,1.31,2,0 +14041548,Beautiful room for rent,84141567,Alida,Queens,Maspeth,40.73597,-73.90072,Private room,70,1,2,2017-08-31,0.07,3,188 +14041728,Spacious studio close to Manhatten,84146048,Michael,Queens,Sunnyside,40.73894,-73.92343,Entire home/apt,85,1,4,2016-09-13,0.11,1,0 +14042426,Riverdale - Room with Breakfast for Ladies Only,17365319,Fahmida,Bronx,Kingsbridge,40.88393,-73.90639,Private room,50,2,14,2019-07-05,0.40,2,26 +14043646,"Upscale safe area,20 minutes to Manhattan/Airports",15838559,Weimin,Queens,Forest Hills,40.71865,-73.8538,Private room,69,60,6,2016-08-21,0.17,4,0 +14043849,Comfy private room in Williamsburg's top location!,48100358,Ivan,Brooklyn,Williamsburg,40.70843,-73.9588,Private room,54,1,148,2019-06-22,4.11,3,19 +14044731,One bedroom apartment for rent in West Harlem,47260217,Tess,Manhattan,Harlem,40.82287,-73.9518,Private room,38,7,2,2016-07-27,0.06,1,0 +14048187,Beautiful Room in the Heart of Williamsburg,28700317,Dominick,Brooklyn,Williamsburg,40.71216,-73.94986,Shared room,300,2,0,,,1,0 +14050933,"Large, sunny room in Brooklyn",14235450,Elizabeth,Brooklyn,Sunset Park,40.64775,-74.00858,Private room,41,3,2,2016-09-11,0.06,1,0 +14053775,Prime apartment in private house + outdoor space,8071107,Tov,Brooklyn,Williamsburg,40.70582,-73.93696,Entire home/apt,199,2,68,2019-07-01,1.96,2,20 +14054091,Central Cozy 3 Bedrooms Apartment,83978541,Goerge,Manhattan,Midtown,40.75966,-73.96828,Entire home/apt,235,30,23,2019-04-12,0.68,1,134 +14055238,Spacious Prospect Park Garden Apt,84303682,Brian And Rachel,Brooklyn,Park Slope,40.67003,-73.974,Entire home/apt,240,2,144,2019-06-30,4.04,1,217 +14055341,Cozy Private Room in LIC close to Everywhere in NY,25537819,Joelle,Queens,Long Island City,40.74604,-73.94194,Private room,70,1,13,2018-08-24,0.36,2,0 +14056307,BIG GORGEOUS 1 bd 2 br in PRIME of Chelsea,32919123,Ryan,Manhattan,Chelsea,40.74616,-73.99773,Entire home/apt,250,7,1,2018-01-02,0.05,1,0 +14056447,Private space in GORGEOUS building,84339401,Mara,Brooklyn,Bedford-Stuyvesant,40.68543,-73.94571,Entire home/apt,91,1,4,2017-05-21,0.13,2,0 +14057678,Cozy Room in Chelsea,12750945,Luis,Manhattan,Chelsea,40.74465,-73.99883,Private room,125,1,10,2019-06-09,0.38,4,181 +14057802,Private room in the heart of Williamsburg!,48100358,Ivan,Brooklyn,Williamsburg,40.70973,-73.95939,Private room,55,1,147,2019-06-15,4.10,3,24 +14058251,Spacious room in Prospect Park,15579169,Nacho,Brooklyn,Flatbush,40.65258,-73.96013,Private room,75,1,12,2019-06-09,0.56,1,50 +14058357,"Clean, Cozy place to stay- Great Location in NYC!",84366617,Kathy,Brooklyn,Sheepshead Bay,40.58672,-73.96502,Private room,44,3,32,2019-06-10,1.24,2,42 +14058375,Sunny Private Room with Roof Terrace & River View,22058409,Abigail,Manhattan,Financial District,40.70476,-74.01557,Private room,90,1,2,2016-08-31,0.06,2,0 +14058880,"$2,800/m for 6/8-7/7! Long-term Deal in Park Slope",9273392,Makiko,Brooklyn,Park Slope,40.67356,-73.97742,Entire home/apt,100,28,75,2019-03-27,2.10,1,0 +14064701,"Courtyard duplex with piano, E Village / Union Sq",84441066,Elizabeth,Manhattan,East Village,40.73038,-73.98458,Private room,170,5,22,2019-06-19,0.61,1,143 +14065007,Spacious Apt. @ Brooklyn Botanic Garden/Museum,4095135,Julia,Brooklyn,Crown Heights,40.67033,-73.95949,Entire home/apt,140,2,10,2018-08-12,0.28,1,93 +14065198,Sleek 1BR in the heart of Williamsburg!,27178707,Brian,Brooklyn,Williamsburg,40.71597,-73.95223,Entire home/apt,199,3,2,2016-09-19,0.06,1,0 +14065448,Doorman GYM Studio Best Location 5193,16098958,Jeremy & Laura,Manhattan,Midtown,40.75337,-73.99058,Entire home/apt,156,30,2,2018-01-08,0.09,96,189 +14065821,Doorman Views Location One bedroom 5194,16098958,Jeremy & Laura,Manhattan,Midtown,40.75298,-73.98874,Entire home/apt,170,30,3,2018-12-08,0.10,96,0 +14066228,Spacious in 1BR East Harlem NYC,46460278,Amanda,Manhattan,East Harlem,40.79474,-73.9383,Entire home/apt,110,3,26,2019-06-23,0.73,1,5 +14066397,"Sunny, Clean, 1BR in Washington Heights",33990883,Summer,Manhattan,Washington Heights,40.85182,-73.92941,Entire home/apt,115,5,13,2019-05-22,0.37,1,0 +14066702,Room in Uptown Manhattan,84463909,Sandra,Manhattan,Washington Heights,40.8385,-73.94313,Private room,70,3,15,2017-05-02,0.43,1,95 +14068074,Soho Split-level Penthouse,13410839,Todd,Manhattan,Nolita,40.72339,-73.99461,Private room,250,91,55,2019-05-08,1.59,1,34 +14068646,Prime Location! 3 Rooms! newly furnished Apt!,2119276,Host,Manhattan,East Village,40.72752,-73.98969,Entire home/apt,200,30,6,2018-10-11,0.28,39,96 +14068668,OVERSIZED STUDIO IN EAST 37 TH~MURRAY HILL,2856748,Ruchi,Manhattan,Murray Hill,40.74733,-73.97865,Entire home/apt,197,30,0,,,49,329 +14069371,Big bedroom 3 stops/10 mins from Manhattan!,5581683,Brett,Brooklyn,Cobble Hill,40.68759,-73.99376,Private room,82,1,25,2017-08-31,0.70,1,0 +14069379,1br Apartment to relax in NYC,12614433,Kelly,Brooklyn,Bedford-Stuyvesant,40.69517,-73.93808,Entire home/apt,85,1,1,2016-08-12,0.03,1,0 +14070671,"Independent Basement Apt.(2 bed rooms, 1 Bath)",83377687,Fernando,Queens,Jackson Heights,40.75479,-73.85776,Entire home/apt,69,2,177,2019-06-28,5.13,2,105 +14070967,Chic pied-a-terre w/ terrace -15mins to Manhattan,84515464,Stephen,Queens,Astoria,40.7671,-73.91261,Entire home/apt,150,3,64,2019-07-07,1.84,1,264 +14071193,Large Sunny Studio in East Village,9111954,Miles,Manhattan,East Village,40.72191,-73.98141,Entire home/apt,150,2,69,2019-07-01,5.27,1,39 +14071357,Lofted Bedroom in Awesome Greenpoint Loft!,2432924,Charlie,Brooklyn,Greenpoint,40.73413,-73.95835,Private room,49,14,0,,,1,0 +14071436,Luxurious Full Floor 2 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Midtown,40.75683,-73.96901,Entire home/apt,165,30,0,,,91,147 +14071802,Serene private room in chic Astoria apartment.,72572525,Samantha,Queens,Astoria,40.76218,-73.92436,Private room,90,3,8,2018-08-04,0.23,2,0 +14071817,huge studio - harlem brownstone- 15 min to 14th st,970540,Jon,Manhattan,Harlem,40.80546,-73.94601,Entire home/apt,92,2,0,,,1,0 +14073163,NYC Wyndham 1 bedroom Presidential Condo sleeps 4,60617669,Rich,Manhattan,Midtown,40.7535,-73.97134,Entire home/apt,159,2,12,2019-01-30,0.35,4,0 +14076357,Modern 3br 2bath in trendy Williamsburg!,84584067,Kelsye,Brooklyn,Williamsburg,40.71928,-73.94539,Entire home/apt,280,3,43,2019-05-06,1.24,1,335 +14080022,Beautiful 2B/2B at Central Park and the AMNH,84632856,Brooke,Manhattan,Upper West Side,40.77743,-73.97616,Entire home/apt,325,3,4,2016-10-09,0.11,1,0 +14084988,Beautiful and super clean 1-bedroom in Morningside,64960421,Valeria,Manhattan,Morningside Heights,40.80408,-73.96347,Entire home/apt,120,3,6,2019-05-23,0.17,1,8 +14085389,Clean & Cozy room in Great Location,30656279,Jill,Manhattan,Hell's Kitchen,40.76738,-73.98743,Private room,61,30,3,2018-08-05,0.10,4,180 +14085512,Restful Superior Court,51826974,Rose,Brooklyn,Canarsie,40.63981,-73.90211,Entire home/apt,80,3,15,2019-07-01,0.42,2,365 +14086188,Nice room near Times Square BEST LOCATION ❤️,12086609,Laetitia,Manhattan,Hell's Kitchen,40.76126,-73.99117,Private room,90,1,11,2017-07-30,0.42,1,0 +14086584,Cozy Cool Room in my Charming Loft,51826974,Rose,Brooklyn,Canarsie,40.63794,-73.8988,Private room,51,3,0,,,2,365 +14086770,Cozy and Classy Private Duplex in UES,26111584,Joseph,Manhattan,Upper East Side,40.77601,-73.95441,Entire home/apt,178,2,72,2018-06-18,2.07,1,0 +14088558,Elegant apt in the heart of the Flatiron District,37073646,Aandrea,Manhattan,Chelsea,40.73902,-73.99143,Entire home/apt,1100,3,0,,,1,0 +14088971,Beautiful Sunny South Slope 1 BR,84737060,Remy,Brooklyn,Sunset Park,40.66142,-73.99078,Entire home/apt,119,3,63,2019-06-28,1.82,1,18 +14089094,Cozy 1 Bedroom in Brooklyn,84738777,Rohan,Brooklyn,Sunset Park,40.64187,-74.01252,Private room,30,2,1,2016-09-06,0.03,1,0 +14089282,"Comfy room in brownstone, Ridgewood",57517386,Ruthy,Queens,Ridgewood,40.70365,-73.89572,Private room,100,1,0,,,1,0 +14089808,Perfect UES location! Museum quality private room!,29170051,Jackie,Manhattan,East Harlem,40.78986,-73.94848,Private room,100,3,80,2019-07-02,2.26,1,112 +14090133,Coney Island cabana apt - 1/2 BLOCK FROM BEACH!,84754283,Markus,Brooklyn,Coney Island,40.5738,-73.99044,Entire home/apt,100,2,2,2016-08-28,0.06,1,0 +14091281,Studio | Heart of Greenwich Village,77174503,Ryley,Manhattan,West Village,40.73598,-74.00736,Entire home/apt,250,3,3,2018-10-08,0.09,1,328 +14091525,Large room with AC a in house with a porch,5725732,Scott,Brooklyn,Kensington,40.64023,-73.9717,Private room,30,2,1,2016-08-05,0.03,1,0 +14091664,Spacious 1BD w Amazing City views,24176743,Emma,Manhattan,Midtown,40.74572,-73.98285,Entire home/apt,240,2,5,2016-12-04,0.14,1,0 +14092217,Skylight Room in 3 bedroom duplex,84779589,Maba,Brooklyn,Crown Heights,40.67059,-73.9337,Private room,60,2,147,2019-07-02,4.10,3,0 +14092236,Big bright room in 3 bedroom duplex,84779589,Maba,Brooklyn,Crown Heights,40.67112,-73.93368,Private room,65,1,149,2019-06-25,4.17,3,185 +14092239,Two bedroom apt in house with private entrance,84779589,Maba,Brooklyn,Crown Heights,40.67114,-73.93238,Entire home/apt,140,2,137,2019-07-02,3.82,3,234 +14092722,Large 1BR in Heart of the West Village,25075066,Scott,Manhattan,West Village,40.7349,-74.0005,Entire home/apt,265,2,19,2019-04-25,0.55,1,5 +14092808,Great apt right by Grand Central!!,70671555,Summar,Manhattan,Midtown,40.75043,-73.97243,Private room,86,14,0,,,1,346 +14093073,SuperLuxuryRoom IconicBuilding Walk to WorldTrade,79188102,Sam,Manhattan,Financial District,40.70525,-74.01045,Private room,145,1,9,2018-12-10,0.25,1,90 +14093225,Luxury studio apartment with fantastic view,31250542,Kenneth,Manhattan,Financial District,40.70657,-74.00549,Entire home/apt,100,2,1,2016-07-23,0.03,1,0 +14094264,Upper East side Cozy apartment.,32764610,Ilkay,Manhattan,East Harlem,40.7992,-73.93879,Private room,75,1,0,,,1,0 +14094358,private 1 bedroom/Flat,84810879,Linda,Queens,Rosedale,40.6599,-73.73221,Entire home/apt,105,2,29,2019-06-04,0.81,3,38 +14094370,Huge Bedroom in Hip Williamsburg Loft-- Bedford L,5242569,Jj,Brooklyn,Williamsburg,40.71608,-73.95888,Private room,85,3,1,2016-08-16,0.03,1,0 +14094480,Studio close to Central Park and Museum Mile,4325334,Nikita,Manhattan,East Harlem,40.78992,-73.94888,Entire home/apt,150,2,5,2016-08-28,0.14,1,0 +14095224,Large Artsy Bedroom in hip & cool E. Village Apt!,4765305,Haffro,Manhattan,East Village,40.72166,-73.98327,Private room,100,3,3,2018-08-10,0.14,4,157 +14100416,Williamsburg w attached balcony - Manhattan view!,12658747,Sarah,Brooklyn,Williamsburg,40.70936,-73.94708,Private room,90,6,0,,,1,0 +14100582,Warm Central Park Upper West Side One Bedroom,55836825,Natalie,Manhattan,Upper West Side,40.78903,-73.96956,Entire home/apt,150,1,0,,,1,0 +14100743,beautiful one bedroom apartment,27126954,Este,Brooklyn,Midwood,40.62755,-73.96097,Entire home/apt,75,1,1,2016-07-21,0.03,1,0 +14101329,"Loft style apt, renovated",13225047,Lila,Brooklyn,Williamsburg,40.71912,-73.9572,Private room,60,1,53,2018-03-15,1.52,3,0 +14102790,"Clean and modern in prime Carroll Gardens, BK",84902242,Scott,Brooklyn,Carroll Gardens,40.67615,-74.00004,Private room,80,3,47,2019-05-13,1.40,1,308 +14103889,Luxury New Private Duplex in Trendy Bed-Stuy,41158436,Alina,Brooklyn,Bedford-Stuyvesant,40.69034,-73.9444,Entire home/apt,137,2,99,2019-06-01,2.76,1,221 +14104044,Privet outdoor space!!!,84914817,Alon,Manhattan,Murray Hill,40.74733,-73.97289,Entire home/apt,79,30,5,2019-01-06,0.36,2,308 +14104812,Pibbles and friends,2590902,Miho And Justin,Brooklyn,Fort Greene,40.6892,-73.97474,Private room,120,3,92,2019-06-24,2.57,1,130 +14105094,"Airy, light-flooded 2-bath West Village apartment",50663338,Olivia,Manhattan,West Village,40.73282,-74.00684,Entire home/apt,220,5,1,2016-08-06,0.03,1,0 +14105220,Sunlight Suite,48910353,Olivia & Fadia,Manhattan,West Village,40.73564,-74.00303,Entire home/apt,300,1,158,2019-07-02,4.39,1,172 +14107667,"West 89th Street, Luxury Svcd 1bd UWS Apartment",22541573,Ken,Manhattan,Upper West Side,40.78989,-73.97264,Entire home/apt,267,30,0,,,87,354 +14108460,AMAZING Entire-Floor Apt in Manhattan Brownstone,21792701,Sean,Manhattan,Washington Heights,40.83604,-73.94067,Entire home/apt,149,3,0,,,1,0 +14108509,"West 16th street, Charming Svced 1bd Apt",22541573,Ken,Manhattan,Chelsea,40.73929,-73.99914,Entire home/apt,195,30,0,,,87,57 +14108671,Clean & Cozy Close to Macy's,27165264,Elena,Manhattan,Chelsea,40.74767,-73.99003,Private room,90,1,9,2017-09-29,0.28,1,0 +14108870,Warm and cozy in Brooklyn,1805238,Aleksandra,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.958,Private room,48,1,68,2019-06-25,2.02,2,14 +14109485,Contemporary Park Slope Brooklyn Duplex,67252331,Ericka,Brooklyn,South Slope,40.66414,-73.98507,Entire home/apt,179,2,16,2019-05-27,0.45,1,1 +14109494,Clinton Hill Apartment Single Bedroom ! Pratt ~~,30610258,Santiago,Brooklyn,Clinton Hill,40.69591,-73.96284,Private room,58,2,1,2018-09-23,0.10,1,0 +14109521,Sunny Bedroom in trendy Bushwick Apt. w/Rooftop,83176398,Cynthia,Brooklyn,Bushwick,40.7038,-73.92712,Private room,50,14,0,,,1,0 +14109544,Cozy+Sunny 2 bedroom apt. close to Central Park,5302735,Thiago,Manhattan,Harlem,40.80719,-73.95303,Entire home/apt,49,4,137,2019-06-29,3.88,2,279 +14109893,Charming Artist Studio,3404898,Erica,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.96004,Entire home/apt,110,2,6,2016-10-23,0.17,1,0 +14110144,Cozy 1+ br apt. on Riverside Dr,8349334,Benjamin,Manhattan,Morningside Heights,40.80822,-73.96567,Entire home/apt,190,5,9,2019-01-02,0.26,1,0 +14110407,Relaxing Ocean Front Beach Home in Arverne!,84765662,Sita,Queens,Arverne,40.58843,-73.79905,Entire home/apt,450,3,15,2019-06-22,0.42,1,290 +14111092,SweetSpot in Upper Manhattan,85006429,Pedro,Manhattan,Harlem,40.82446,-73.94318,Private room,69,1,64,2019-07-01,1.81,1,322 +14111254,"NYC Chelsea Neighborhood, Studio Apartment",3730998,Chelsea,Manhattan,Chelsea,40.74011,-73.99829,Entire home/apt,250,2,45,2019-06-19,1.90,1,90 +14111390,Beautiful Chelsea loft perfect for families.,22897581,Levi,Manhattan,Chelsea,40.74438,-73.99329,Entire home/apt,400,5,0,,,1,0 +14111626,AMAZING DESIGNER TIMES SQUARE APARTMENT- BEAUTIFUL,85013173,Charly,Manhattan,Hell's Kitchen,40.76325,-73.98981,Entire home/apt,249,7,100,2019-06-10,2.82,1,237 +14111975,Cozy spot in the lovely East Village neighborhood,85021301,Seamus,Manhattan,East Village,40.72677,-73.98194,Entire home/apt,125,1,2,2016-08-08,0.06,1,0 +14115455,"Comfortable, Convenient in Central Park North Area",43268148,Emme,Manhattan,Harlem,40.79862,-73.953,Private room,96,2,0,,,1,0 +14115645,Cozy Bed/Bath w/Appliances Close to JFK/LGA,85062355,Carolyn,Queens,Cambria Heights,40.70219,-73.73296,Private room,60,1,78,2019-07-06,2.18,1,78 +14117696,Charming and Quiet West Village Studio,11796442,Thomas,Manhattan,West Village,40.73897,-74.0018,Entire home/apt,179,5,32,2019-06-30,0.90,1,41 +14120153,Large and Luminous room available for female only,44702712,Jasmine,Queens,Briarwood,40.70648,-73.81491,Private room,48,1,0,,,1,0 +14120431,Chelsea 1 bed/studio,11476179,Christina,Manhattan,Chelsea,40.74062,-73.99824,Entire home/apt,155,2,29,2018-11-25,0.83,1,8 +14120515,Comfy Sunnyside bedroom,35405142,Alvina,Queens,Sunnyside,40.7372,-73.919,Private room,65,5,12,2018-05-11,0.34,1,76 +14120620,Modern Downtown Space for Families: 3 bed | 2 bath,16962957,Nick,Manhattan,Chinatown,40.71655,-73.99203,Entire home/apt,499,1,116,2019-06-30,3.24,4,30 +14121045,Luxury TriBeCa Apartment with Amazing Water View,4348719,Myles,Manhattan,SoHo,40.72461,-74.01136,Entire home/apt,250,2,2,2016-09-11,0.06,1,130 +14121640,South Slope Modern 1+ Bedroom with Outdoor Space,16283468,Philip,Brooklyn,Sunset Park,40.66285,-73.9908,Entire home/apt,120,2,12,2018-07-08,0.33,2,27 +14122786,Nice Spot in Bushwick,1164515,Chris,Brooklyn,Bushwick,40.70318,-73.92609,Private room,50,1,64,2019-06-28,1.78,2,302 +14124792,Charming Poet's Room in Sunny Apartment,85172611,Cornelia,Brooklyn,Crown Heights,40.67147,-73.95181,Private room,48,2,2,2016-08-08,0.06,1,0 +14124987,Bushwick plays,2974873,Jourdain,Brooklyn,Bushwick,40.69271,-73.91361,Private room,45,30,5,2018-07-31,0.15,2,339 +14125183,Full bed in private Bushwick room,5914717,Kait,Brooklyn,Bushwick,40.69822,-73.92918,Private room,50,2,59,2018-04-22,1.67,1,0 +14125891,"1 br in Williamsburg, near L train",32545798,Sasha,Brooklyn,Williamsburg,40.71378,-73.96257,Private room,75,2,17,2017-07-30,0.47,5,0 +14125913,Charming Brooklyn Heights floor-through apartment,21592879,Perry,Brooklyn,Brooklyn Heights,40.69976,-73.99313,Private room,65,7,1,2016-08-14,0.03,1,0 +14126303,Huge Sunny Apartment in Heart of Harlem NYC,85191443,Evelyn,Manhattan,Harlem,40.82228,-73.93894,Private room,90,1,30,2018-01-04,0.84,1,0 +14126610,"Comfy bedroom, central in Manhattan",85196753,Grégoire,Manhattan,Kips Bay,40.74488,-73.98079,Private room,56,14,0,,,1,0 +14126853,Nini's Art Shack,21544501,Natalie,Brooklyn,Bushwick,40.68798,-73.90677,Private room,80,1,2,2016-11-01,0.06,2,281 +14129429,3 Bedroom Apartment for Rent,85235313,Richard,Manhattan,Greenwich Village,40.73085,-74.00079,Entire home/apt,174,360,0,,,1,365 +14131597,1920s Room 1 block from Prospect Park and Q Access,3620205,Nick,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.95989,Private room,43,1,6,2017-03-01,0.19,1,0 +14133414,Space to rest near LaGuardia Airport,37312959,Maya,Queens,East Elmhurst,40.77009,-73.87708,Private room,32,1,411,2019-07-04,11.40,5,161 +14134105,Sun Filled Pre-War Apartment near Fort Greene Park,68397685,Philip And Kerstin,Brooklyn,Fort Greene,40.69394,-73.97115,Shared room,39,1,12,2016-09-07,0.34,1,0 +14135050,"",85288337,Jeff,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93234,Private room,70,3,0,,,1,0 +14135904,Zen Bed/Bath in Historic Harlem,63361875,Elisa,Manhattan,Harlem,40.81667,-73.94342,Private room,75,3,6,2017-05-21,0.17,1,0 +14137017,Modern 1 BR Williamsburg Apartment with backyard,85313871,Andrew,Brooklyn,Williamsburg,40.70965,-73.95782,Entire home/apt,130,3,4,2016-12-26,0.12,1,0 +14137639,Brooklyn Oasis,18418244,Jocelyn,Brooklyn,Bushwick,40.69572,-73.9293,Private room,85,2,3,2017-09-28,0.10,1,83 +14138066,Mediterranean Style Charmer 20 mins to Manhattan,35910781,Zafir,Queens,Jackson Heights,40.74935,-73.88332,Shared room,23,1,0,,,1,0 +14138706,"Quirky, art filled Greenpoint Apartment!",3703456,Brooke,Brooklyn,Greenpoint,40.72488,-73.94085,Entire home/apt,95,1,39,2019-06-23,1.10,2,29 +14138800,Cozy Brooklyn Home with an Artistic Twist,85337174,Shilpa,Brooklyn,Bushwick,40.68128,-73.90546,Private room,90,2,26,2018-10-17,0.73,1,84 +14139170,Comfortable room in a Bushwick duplex with patio,1252743,Dory,Brooklyn,Bushwick,40.70175,-73.91525,Private room,45,1,9,2018-03-20,0.45,1,0 +14139187,Nice cheap place to stay in NYC,74707352,Amadeus,Bronx,Longwood,40.82148,-73.89122,Private room,60,1,8,2016-12-29,0.22,1,364 +14139553,CUTE STUDIO ON UPPER EAST SIDE @ CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.77007,-73.9569,Entire home/apt,119,30,12,2019-06-11,0.38,16,339 +14139651,Centrally Located Private Midtown Studio,19134246,Brendan,Manhattan,Kips Bay,40.74506,-73.97934,Entire home/apt,150,3,10,2019-06-15,0.37,1,8 +14140552,Awesome 2bdr in the heart of the East Village,2928701,Catalina,Manhattan,East Village,40.72872,-73.98267,Entire home/apt,295,7,12,2019-05-25,0.78,2,128 +14140905,Beautiful Bushwick loft for August,8133558,Gryphon,Brooklyn,Bushwick,40.69493,-73.9294,Private room,38,15,0,,,1,0 +14141050,Two bedrooms available in a cozy apartment.,1715674,Shriya,Brooklyn,Windsor Terrace,40.65544,-73.97491,Private room,130,2,4,2018-01-01,0.11,1,0 +14141215,private room in LES,85368273,Nir,Manhattan,Lower East Side,40.71795,-73.98553,Private room,70,1,1,2016-10-03,0.03,1,0 +14141622,Private cozy suite,85375269,Gladys,Queens,Woodhaven,40.68904,-73.85052,Entire home/apt,71,1,155,2019-07-01,4.34,1,173 +14141874,Bed in Semi-Private Room Close to Park and Train,71473335,Carolyn,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.958,Shared room,75,2,1,2017-09-05,0.04,1,0 +14142298,Charming and bright place with a good vibe!,46667080,Ellen,Queens,Woodhaven,40.6905,-73.85612,Entire home/apt,85,2,74,2019-07-02,2.08,1,52 +14143250,"Clean, cozy, comfortable private room. Perfect Loc",85400172,Joy,Brooklyn,Crown Heights,40.67564,-73.94798,Private room,67,3,29,2019-03-19,0.84,2,365 +14147107,"Spacious, Quiet 1 Bedroom in Hamilton Heights",76838000,Catherine,Manhattan,Harlem,40.83117,-73.94846,Entire home/apt,75,1,5,2018-08-26,0.14,1,0 +14148550,La Guardia Airport Cozy Attic studio with Spiral,35660592,Luis,Queens,Corona,40.75134,-73.85219,Entire home/apt,79,2,83,2019-07-02,2.32,6,320 +14148905,Brand new beautiful one bedroom apartment,85470054,Yi,Queens,Flushing,40.73851,-73.80106,Entire home/apt,72,1,256,2019-06-24,7.10,1,124 +14148988,"Heart of Manhattan, affordable place!",4478946,Elka,Manhattan,Midtown,40.75247,-73.97305,Entire home/apt,153,1,1,2016-07-31,0.03,1,0 +14149046,Faith,38294216,Rachel,Queens,Jamaica,40.68689,-73.80117,Private room,60,7,5,2019-06-01,0.27,4,160 +14149127,UES Oasis,16784527,Angie,Manhattan,Upper East Side,40.77711,-73.95367,Entire home/apt,150,5,47,2018-12-11,1.69,1,0 +14150846,Beautiful Cozy Apartment near Soho!,1013329,April,Manhattan,East Village,40.72564,-73.98772,Entire home/apt,142,3,15,2019-05-28,0.71,1,118 +14151551,Great location 15minutes to South central park NYC,57890723,John,Queens,Sunnyside,40.74305,-73.9168,Private room,55,2,67,2019-04-09,1.90,1,0 +14152806,"Large & unique, über-modern studio",31301220,Helen,Brooklyn,Williamsburg,40.71192,-73.9628,Entire home/apt,249,9,19,2017-10-04,0.66,1,0 +14153081,Vibrant Apartment with Backyard Oasis in Bushwick,1699871,Chloe,Brooklyn,Bushwick,40.68463,-73.90729,Entire home/apt,111,2,73,2019-06-02,2.06,3,170 +14153242,Large Sunny 1 BR - Heart of Manhattan!,7440944,Diana,Manhattan,East Village,40.72808,-73.98377,Entire home/apt,179,4,13,2018-10-27,0.38,1,0 +14153255,The Mahogany Suite- The Solo Adventurer l,52862385,The Mahogany Suite(Studio Apartment,Brooklyn,East Flatbush,40.6628,-73.93397,Private room,65,2,24,2019-06-17,0.71,3,290 +14154356,Private Bedroom in the Heart of Hell's Kitchen,85546351,Rachel,Manhattan,Hell's Kitchen,40.76094,-73.994,Private room,63,2,36,2018-12-16,3.06,1,59 +14154373,Quiet Full Bed - East Village / LES Comfy Colorful,4685913,Paul,Manhattan,East Village,40.72097,-73.97769,Private room,90,12,1,2016-08-14,0.03,2,0 +14155064,One Bedroom in Heart of Chelsea,2688383,Rachel,Manhattan,Chelsea,40.74121,-73.99995,Entire home/apt,143,4,1,2016-10-09,0.03,1,0 +14155795,"Room for rent. Quiet, safe.",65057965,Wanda,Manhattan,East Village,40.73058,-73.99002,Private room,85,2,10,2017-06-30,0.28,1,306 +14159853,Private Queen bedroom in Soho/Nolita Apartment,618586,Jennifer,Manhattan,Nolita,40.7232,-73.9946,Private room,67,1,86,2019-06-16,2.50,1,45 +14161086,nice room in bedstuy G,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68403,-73.94979,Private room,45,1,87,2019-07-02,2.50,15,305 +14161103,Gorgeous Sunset-facing Carroll Gardens 1 Bedroom,71211336,Patrick,Brooklyn,Gowanus,40.67963,-73.98951,Entire home/apt,299,2,0,,,1,0 +14161351,Trendy 2BR Apt Next to Prospect Park -Kid Friendly,1876539,Stephanie,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95773,Entire home/apt,150,6,9,2019-01-02,0.26,1,0 +14161597,Cool respite in the city,30739353,Laura,Manhattan,Upper East Side,40.7638,-73.95547,Entire home/apt,175,2,3,2017-09-02,0.08,1,310 +14163104,Cozy Studio in Astoria NYC,85667130,Anna,Queens,Ditmars Steinway,40.77943,-73.9117,Private room,90,2,80,2019-07-02,2.35,1,350 +14163220,"Large one bedroom in Forest Hills Gardens, Queens!",84279142,Katina,Queens,Forest Hills,40.71688,-73.84238,Entire home/apt,150,1,0,,,1,0 +14163324,Williamsburg Studio w/ Roof Deck and Gym,15061780,Nikki,Brooklyn,Williamsburg,40.71973,-73.94272,Entire home/apt,100,2,3,2016-11-14,0.09,1,0 +14163352,contemp. 1 BDRM in Trendy 2 BDRM Cyp. Hill,85669769,Dion,Brooklyn,East New York,40.67321,-73.86865,Private room,53,1,85,2019-05-25,2.39,1,54 +14164263,"Large, sunny and beautiful bedroom in Brooklyn",85684530,Ana,Brooklyn,Flatbush,40.64706,-73.9593,Private room,40,5,0,,,1,0 +14164319,Spacious and Sunny Greenpoint Townhouse,31277975,Alan,Brooklyn,Greenpoint,40.73101,-73.95248,Entire home/apt,250,3,80,2019-06-23,2.23,1,98 +14165982,Comfortable apartment in FH,19538448,Giuseppe,Queens,Forest Hills,40.72116,-73.83948,Entire home/apt,115,2,0,,,1,0 +14166695,Room in the heart of Williamsburg,12461120,Emine,Brooklyn,Williamsburg,40.71531,-73.94693,Private room,85,2,3,2016-09-06,0.09,1,0 +14167282,"Serene, light-filled pre-war apartment in Brooklyn",1211994,Shuchi,Brooklyn,Flatbush,40.64088,-73.96125,Private room,45,2,1,2016-07-31,0.03,1,0 +14167287,Peaceful Upper East Side Studio,3602785,James,Manhattan,Upper East Side,40.76666,-73.95507,Entire home/apt,65,7,1,2016-08-22,0.03,1,0 +14167380,Greenpoint/Williamsburg Comfortable New Apartment,44454496,Gino,Brooklyn,Greenpoint,40.73101,-73.9405,Entire home/apt,160,3,57,2019-06-11,1.63,1,314 +14167624,"1brm apartment ,Charming, with beautiful light",8671553,Sophia,Manhattan,East Harlem,40.79356,-73.94164,Entire home/apt,95,7,0,,,1,0 +14167763,Beautiful + Private 1 Bedroom in North Park Slope,85734571,Wayne,Brooklyn,Park Slope,40.68083,-73.97823,Entire home/apt,120,7,0,,,1,0 +14168034,Park Slope Artsy Gem,23688348,Renee,Brooklyn,South Slope,40.66548,-73.98025,Entire home/apt,151,2,0,,,1,0 +14168274,1 Bedroom in shared 2 bedroom NYC walkup apartment,20448276,A.R.,Manhattan,Hell's Kitchen,40.76367,-73.98912,Private room,98,5,0,,,1,0 +14168413,Large Bedroom - Great Location - Grand Central,18981759,Doug,Manhattan,Murray Hill,40.74702,-73.97563,Private room,100,1,11,2016-09-05,0.31,1,0 +14169102,COZY PRIVATE ROOM IN GRAMERCY,13616538,Tianna,Manhattan,Gramercy,40.737,-73.98231,Private room,74,2,8,2016-11-27,0.22,1,0 +14169266,Spacious bedroom in Inwood,2584371,Carina,Manhattan,Inwood,40.86531,-73.92725,Private room,50,1,39,2019-05-29,1.11,1,1 +14169399,New York City - World of Antiques,84985477,Krys,Queens,Ridgewood,40.70153,-73.89706,Entire home/apt,75,3,209,2019-06-16,5.87,1,14 +14171171,Super Comfortable Nest,58949132,Ike,Manhattan,East Harlem,40.81473,-73.93583,Entire home/apt,150,4,1,2018-07-18,0.08,1,0 +14174460,bargain in Flatbush,21700305,David,Brooklyn,Prospect-Lefferts Gardens,40.65776,-73.95218,Private room,30,6,1,2016-08-07,0.03,1,0 +14175040,"Great 1 bedroom Upper West: AC, TV & Dishwasher",30175811,Jane,Manhattan,Harlem,40.81745,-73.95164,Entire home/apt,200,1,10,2018-09-25,0.28,1,0 +14176286,Unique Cozy Designer Loft 1 stop to Manhattan,4043259,Tiffany,Brooklyn,Greenpoint,40.72521,-73.95575,Private room,67,2,103,2019-07-07,2.94,2,126 +14176519,Brand New Studio with Balcony @ Williamsburg!,702652,Ivana,Brooklyn,Williamsburg,40.70925,-73.95255,Entire home/apt,153,3,17,2019-06-28,0.48,1,31 +14176878,Sunny bedroom in Williamsburg,13933878,Christine,Brooklyn,Williamsburg,40.70937,-73.96128,Private room,75,3,0,,,1,0 +14177028,"Private Floor, Room and bathroom In Townhouse, BK",29219991,Doug,Brooklyn,Williamsburg,40.71555,-73.96325,Private room,98,10,62,2019-07-02,1.78,2,211 +14177069,AS CENTRAL AS YOU CAN GET ~SUTTON PLACE 3BR-LUXURY,2856748,Ruchi,Manhattan,Midtown,40.75546,-73.96454,Entire home/apt,375,30,0,,,49,245 +14178226,New Building Spacious 2 bed 2 bath E. Harlem!,55229297,Amanda,Manhattan,East Harlem,40.80326,-73.935,Entire home/apt,215,1,49,2019-06-19,1.42,1,316 +14179120,1 BDRM IN ASTORIA (PUBLIC TRANS) CLOSE TO US OPEN,42150813,Anthony,Queens,Astoria,40.7684,-73.91762,Private room,60,1,1,2016-10-09,0.03,1,0 +14180414,Private room in 2bedroom apartment @ East Village,85898729,Maxime,Manhattan,East Village,40.73178,-73.98613,Private room,100,3,12,2018-03-18,0.34,1,0 +14180715,"Cozy, Brooklyn Beauty. Great for a nice holiday!",84339401,Mara,Brooklyn,Bedford-Stuyvesant,40.6866,-73.94583,Entire home/apt,131,2,27,2019-06-24,0.76,2,96 +14181211,"Comfy 1-Bedroom, Just a block from the Subway!",1540903,Medina,Queens,Ditmars Steinway,40.77487,-73.91196,Entire home/apt,120,1,237,2019-06-26,6.62,1,71 +14181565,Perfect blend of urban and village atmosphere,85914840,Gina,Queens,Forest Hills,40.71298,-73.83601,Private room,75,1,16,2017-07-30,0.46,1,0 +14182564,lovely home on 38th street,84914817,Alon,Manhattan,Murray Hill,40.74737,-73.97407,Entire home/apt,79,29,4,2019-04-07,0.42,2,201 +14183466,COMFORTABLE BEDROOM GREAT LOCATION,85938655,Carlos,Manhattan,Hell's Kitchen,40.76439,-73.98943,Private room,120,3,53,2019-06-30,1.53,2,197 +14183900,Spacious Apartment in the Heart of LES,20132140,Helen,Manhattan,Lower East Side,40.72094,-73.98649,Entire home/apt,228,1,1,2016-08-08,0.03,1,0 +14184335,Private Room in Upper East Side - Queen bed,62172448,Jon,Manhattan,Upper East Side,40.76471,-73.95819,Private room,85,1,2,2016-08-20,0.06,2,0 +14185610,GORGEOUS STUDIO ON MIDTOWN,22860550,Oliver,Manhattan,Midtown,40.75601,-73.96625,Entire home/apt,115,8,24,2019-06-20,0.69,1,196 +14186028,2 Bed Private Entrance Williamsburg,85974062,Joshua,Brooklyn,Williamsburg,40.71339,-73.96369,Entire home/apt,130,1,78,2018-02-02,2.17,1,0 +14187014,Beautiful cozzy apartment in the Upper East Side,85986280,Marushka,Manhattan,Upper East Side,40.76848,-73.96014,Entire home/apt,109,1,25,2019-06-23,0.75,1,0 +14187084,Beautiful sunny room in Manhattan,85992351,Alessia,Manhattan,East Harlem,40.78752,-73.94314,Private room,65,4,0,,,1,0 +14187475,Very Sunny 1br in Bedstuy - Dog and Kids Friendly,280693,Auralís,Brooklyn,Bedford-Stuyvesant,40.68806,-73.95491,Entire home/apt,200,2,13,2017-12-27,0.37,1,0 +14191921,LUXURY 3 BR WITH DOORMAN~1600 BROADWAY,2856748,Ruchi,Manhattan,Theater District,40.75924,-73.98541,Entire home/apt,560,30,0,,,49,356 +14194024,One bedroom cutie in South Willamsburg,4908941,Alis,Brooklyn,Williamsburg,40.70698,-73.96193,Entire home/apt,180,4,43,2019-07-08,1.22,1,82 +14195437,Location Enya,3250450,Petya,Queens,Jackson Heights,40.74684,-73.89252,Shared room,35,30,1,2017-10-28,0.05,18,280 +14195493,"Spacious, Stylish, & Cozy in Bed-Stuy",2499618,Aurore And Jamila,Brooklyn,Bedford-Stuyvesant,40.68569,-73.92549,Entire home/apt,140,5,17,2019-04-27,0.49,1,330 +14195524,Lincoln Square - Upper West Side Haven,86090561,Alicia,Manhattan,Upper West Side,40.79919,-73.96249,Private room,110,1,84,2019-06-23,2.35,1,301 +14195677,Cute/Private 1 Bedroom Apt in Queens,61925777,Charis,Queens,Maspeth,40.71628,-73.90093,Entire home/apt,75,2,5,2018-06-03,0.14,1,0 +14195878,Artsy master suite with attached private bathroom,17218599,Shanthony,Brooklyn,Bedford-Stuyvesant,40.69249,-73.94298,Private room,50,15,2,2017-01-01,0.06,1,0 +14196798,Brooklyn (G)reenery,80942071,Warren,Brooklyn,Bedford-Stuyvesant,40.69484,-73.94616,Private room,89,2,1,2017-09-05,0.04,1,365 +14196990,Charming Midtown West 3 BR Exposed Brick,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.75999,-73.99274,Entire home/apt,175,30,5,2019-05-27,0.16,91,363 +14198486,"Large, quiet room with backyard garden",1816548,Ben,Brooklyn,Bedford-Stuyvesant,40.68774,-73.94867,Private room,65,3,0,,,1,0 +14199146,Cozy & Spacious Studio in Brooklyn,13332949,Kathy,Brooklyn,Kensington,40.63442,-73.97318,Entire home/apt,55,7,0,,,1,0 +14200676,"Ideal Bushwick, 2 bdrm, basement, private garden",309088,Alexandre,Brooklyn,Bushwick,40.69633,-73.92143,Entire home/apt,150,3,18,2018-05-28,0.53,1,0 +14200678,Charming 1 bdr apt. just 17 mins from MANHATTAN!,557669,Ryan,Queens,Woodside,40.74663,-73.89653,Entire home/apt,96,2,1,2016-08-08,0.03,1,0 +14201811,Adorable Abode in Harlem,23033819,Brandy-Courtney,Manhattan,Harlem,40.82085,-73.95398,Private room,75,2,0,,,1,0 +14202979,"Charming, Spacious 2-Bedroom on UWS",86182721,Jennifer,Manhattan,Upper West Side,40.78004,-73.98314,Entire home/apt,210,2,11,2018-10-07,0.32,1,242 +14203322,NYC apartment in the East Village,35605738,Rhonycs,Manhattan,East Village,40.72796,-73.98178,Entire home/apt,221,2,78,2019-06-16,2.24,1,270 +14203693,"Spacious Apartment, historic Brooklyn brownstone.",1756362,Jeremy & Angela,Brooklyn,Clinton Hill,40.69488,-73.96618,Entire home/apt,150,4,69,2019-06-12,1.93,1,114 +14204631,Charming pre-war in West Village,2063794,Laura,Manhattan,West Village,40.73778,-74.00287,Entire home/apt,350,2,16,2018-11-20,0.47,1,16 +14205217,"Private Rm/King Size Bed, just you +host in apt",68598597,Jazmin,Manhattan,Harlem,40.82418,-73.94893,Private room,65,1,45,2019-07-01,1.30,2,34 +14205364,Bright 3BR w/ large patio in vibrant Williamsburg,2343858,Claire,Brooklyn,Williamsburg,40.71635,-73.94982,Entire home/apt,325,2,87,2019-06-16,2.45,1,126 +14205634,Huge 2 Bed Loft Apt in Chic Downtown,1534634,Derek,Manhattan,NoHo,40.7259,-73.99336,Entire home/apt,407,30,12,2018-11-02,0.34,1,120 +14207287,"Cute room near Columbia University, Manhatta",86241021,Kate,Manhattan,Upper West Side,40.80189,-73.9655,Private room,60,20,4,2017-01-15,0.11,1,0 +14210928,Large Furnished Rm. Near the Park,10580223,Andy,Brooklyn,Flatbush,40.65345,-73.9566,Private room,91,1,1,2016-10-04,0.03,2,250 +14212273,Beautiful Brooklyn loft!,20612628,Jessica,Brooklyn,Williamsburg,40.7049,-73.92966,Private room,41,1,2,2017-04-18,0.06,1,0 +14213699,"West 50th street, Lux 1bd Serviced Apartment*",22541573,Ken,Manhattan,Hell's Kitchen,40.76297,-73.98588,Entire home/apt,215,30,1,2017-12-02,0.05,87,357 +14213784,"Large, Sunny Room in Spacious, Modern Apartment",1199690,Pete,Brooklyn,Williamsburg,40.70847,-73.94568,Private room,57,2,1,2016-10-09,0.03,1,0 +14214315,Prospect Heights Getaway,10055751,Julie,Brooklyn,Crown Heights,40.67417,-73.96111,Private room,65,30,11,2016-11-30,0.31,2,0 +14214403,Spacious & Clean Apartment + Patio. Close to metro,128480,Sam And Britt,Brooklyn,Bushwick,40.69295,-73.90792,Entire home/apt,149,2,102,2019-06-29,4.27,1,256 +14215061,Cozy Room in Astoria,75480489,Ramazan,Queens,Ditmars Steinway,40.7708,-73.90036,Private room,70,3,23,2019-01-02,0.66,1,365 +14215652,"LUXURY , FULL OF LIGHT, RENOVATED BIG 1BEDROOM",57283593,Olga,Manhattan,West Village,40.73624,-74.00311,Entire home/apt,290,3,59,2019-07-01,1.67,1,256 +14215681,AMAZING Room in a 2 Bd Apt on the UES!,37318666,Dijana,Manhattan,East Harlem,40.79014,-73.94035,Private room,70,1,60,2019-06-11,1.74,1,66 +14217692,Perfect Area in Williamsburg - Room,6702100,Dasha,Brooklyn,Williamsburg,40.71014,-73.95871,Private room,90,1,10,2017-07-30,0.28,1,0 +14218173,Bright UWS Studio with great location,3664605,Cha,Manhattan,Upper West Side,40.78558,-73.97704,Entire home/apt,150,4,2,2017-06-11,0.06,1,0 +14218548,Large Prime East Village Bedroom,86368554,Ryan,Manhattan,East Village,40.72646,-73.98498,Private room,100,2,1,2016-08-08,0.03,1,0 +14218722,Convenient Brooklyn One Bedroom Apartment,80788474,Ambre,Brooklyn,Bedford-Stuyvesant,40.68232,-73.95308,Entire home/apt,165,3,0,,,2,0 +14218742,Luxury/3bedroom/3bthrm/Privateprkng/beach/rstrnts,78824908,Ilona,Brooklyn,Sheepshead Bay,40.58531,-73.93811,Entire home/apt,224,30,2,2018-06-22,0.08,1,353 +14218795,Spacious 1BR with amazing rooftop,1815738,Emily,Manhattan,Financial District,40.70741,-74.0054,Entire home/apt,238,1,0,,,1,0 +14219018,Huge Lux Designer 1 BR. Renovated,10388850,David,Manhattan,Midtown,40.75637,-73.96338,Entire home/apt,379,20,0,,,1,364 +14219515,Private Room in Apartment with Balcony,59932595,Nnenna,Manhattan,East Harlem,40.80253,-73.94016,Private room,45,21,0,,,1,0 +14220422,Rockaway Beach Surf and Garden Apartment,51162561,Paul,Queens,Rockaway Beach,40.58626,-73.81465,Entire home/apt,125,4,1,2016-09-04,0.03,1,0 +14220943,Comfortable oasis in the heart of Brooklyn,86397793,Thorill,Brooklyn,East Flatbush,40.64474,-73.92297,Entire home/apt,49,2,77,2019-06-23,2.17,1,264 +14221071,Two bedroom near Grand Central with a view!!,7408622,Jerome,Manhattan,Midtown,40.75083,-73.97151,Entire home/apt,700,5,23,2019-05-08,0.68,1,179 +14221607,Beautiful Three Bedroom,52999390,Avery,Brooklyn,East Flatbush,40.66525,-73.92554,Entire home/apt,650,1,3,2016-09-30,0.08,1,0 +14222252,Cozy located studio in Manhattan,86415678,Alexandra,Manhattan,Washington Heights,40.85867,-73.92844,Entire home/apt,150,2,42,2019-06-18,1.61,1,83 +14228589,Cute bedroom with private entrance from hallway,22926868,Xenia,Brooklyn,Sunset Park,40.64697,-73.99885,Private room,50,20,46,2019-04-30,1.34,3,20 +14230982,Great private room with all amnetities!,86510175,Oonamaria,Brooklyn,Cypress Hills,40.68139,-73.89034,Private room,55,2,7,2016-08-29,0.20,1,0 +14231418,Spacious 1 bedroom off Prospect Pk,746006,Paul,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95841,Entire home/apt,90,2,3,2018-06-04,0.10,1,0 +14231606,La Dolce Vita Apartment in Garfield,86513733,Joann,Bronx,Van Nest,40.84166,-73.86818,Entire home/apt,425,5,0,,,1,363 +14231719,XTRA LARGE~PRIME UPPER EAST SIDE-1ST AVE&EAST 86TH,2856748,Ruchi,Manhattan,Upper East Side,40.7771,-73.9495,Entire home/apt,200,30,0,,,49,365 +14233670,Luxury 1 Bedroom Condo in Central Park South,86538929,Stella,Manhattan,Midtown,40.76566,-73.97748,Entire home/apt,349,2,6,2017-01-01,0.17,1,0 +14234046,Premier Suites Downtown,18762580,Joseph,Manhattan,Financial District,40.70885,-74.01074,Entire home/apt,200,30,0,,,1,87 +14234561,Newly renovated studio in hip Bushwick near subway,3605061,Carlota And Jessica,Brooklyn,Bushwick,40.69559,-73.90796,Entire home/apt,100,2,152,2019-07-01,4.29,1,251 +14235245,Nicest studio near Central Park and the 6 train,86560459,Cesar,Manhattan,East Harlem,40.79068,-73.94944,Entire home/apt,115,2,8,2017-01-01,0.23,1,0 +14236416,"the shoebox, west chelsea",20132009,Karen,Manhattan,Chelsea,40.74577,-74.00606,Entire home/apt,150,3,119,2019-06-29,3.45,2,58 +14236734,1 room West Village,86576234,Anne,Manhattan,Greenwich Village,40.72854,-74.00275,Private room,100,1,0,,,1,0 +14237346,Cozy room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67824,-73.96966,Private room,55,1,102,2019-06-27,2.98,13,281 +14237397,Conveniently located room near train.,25843005,Daljit,Queens,Long Island City,40.7591,-73.9278,Private room,49,2,105,2019-06-22,2.94,3,21 +14237735,"Private BR in comfy, international-vibe Harlem apt",12087651,Rachel,Manhattan,Harlem,40.82265,-73.94501,Private room,95,2,44,2019-06-24,1.27,1,90 +14238574,"Private, Sunny Room in Queens, NY",54986261,David,Queens,Flushing,40.75539,-73.83172,Private room,75,2,57,2019-05-14,1.64,1,335 +14238785,Ladies Dorm Shared Room (Single Twin Bed),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.6853,-73.95758,Shared room,45,2,10,2017-10-27,0.29,3,311 +14239259,West Village Apt in the Heart of the Action,5064742,Alex,Manhattan,West Village,40.73342,-74.00362,Entire home/apt,200,2,0,,,1,0 +14239534,Beautiful and sunny apartment in East Village!,55976102,John,Manhattan,East Village,40.72835,-73.98503,Entire home/apt,199,5,22,2019-05-29,0.62,1,68 +14240343,Artists townhouse next to Central Park! WOW!,38315339,Viktoria,Manhattan,Upper East Side,40.76282,-73.96734,Entire home/apt,195,1,109,2019-07-02,3.21,1,190 +14244430,Amazing Duplex with Best Amenities in NYC,28514966,Lan,Manhattan,Financial District,40.70615,-74.00914,Entire home/apt,349,3,38,2019-06-26,1.08,1,72 +14245157,Very Large Loft with a view of Statue of Liberty,86681077,Gaspard,Manhattan,Financial District,40.70423,-74.01235,Entire home/apt,270,2,113,2019-06-02,3.21,1,11 +14245274,Large+Amazing 2BR ( Flex) 800 SQFT-Upper East Side,2856748,Ruchi,Manhattan,Upper East Side,40.77744,-73.94501,Entire home/apt,230,30,0,,,49,284 +14245639,Wall St!Design One bedroom in Doorman Bldg 5187,16098958,Jeremy & Laura,Manhattan,Financial District,40.70379,-74.00946,Entire home/apt,165,30,0,,,96,365 +14245886,"Spacious one bedroom, next to the L and G trains",2021231,Sami,Brooklyn,Williamsburg,40.71417,-73.94765,Entire home/apt,159,2,1,2016-08-15,0.03,1,0 +14246251,Doorman Gym 2 bed With balcony River View 5138,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74463,-73.9722,Entire home/apt,196,30,1,2016-10-31,0.03,96,280 +14247423,"Cozy, cool, spacious Midtown!",19793290,Daniel,Manhattan,Murray Hill,40.74796,-73.97949,Shared room,103,1,3,2016-08-25,0.08,1,0 +14252537,Spacious Room in the Heart of Williamsburg,69093720,Mina,Brooklyn,Williamsburg,40.7133,-73.94838,Private room,92,4,18,2019-06-03,0.52,1,341 +14253050,Comfort and charm: 1BDR on Upper East Side,20852937,Ceri,Manhattan,Upper East Side,40.77371,-73.95167,Entire home/apt,150,3,37,2019-05-27,1.04,1,0 +14254221,"*Serenity & Heart* spacious, bright, sleeps 4 SOHO",86786513,J. Cobb,Manhattan,Nolita,40.72148,-73.99543,Entire home/apt,294,5,150,2019-06-29,4.19,1,105 +14254624,Full Cosy apart in the middle of Manhattan!,60366482,Aksa,Manhattan,Midtown,40.75095,-73.97115,Entire home/apt,110,4,36,2019-06-01,1.05,1,40 +14255485,Entire One Bedroom Apartment In Historic District,5682956,Maria,Bronx,Highbridge,40.84277,-73.92588,Entire home/apt,76,7,40,2019-05-27,1.15,1,34 +14261749,Apt 2or3 bedr for 4 or more guests in Williamsburg,86077156,Franco,Brooklyn,Williamsburg,40.71036,-73.95477,Entire home/apt,180,2,115,2019-06-22,3.34,2,82 +14262383,The Center Suites,86887132,Nepreil,Queens,St. Albans,40.69364,-73.78025,Entire home/apt,100,2,46,2019-06-30,1.34,2,361 +14262420,Quiet 1 BR in the Heart Crown Heights,49635984,Huw,Brooklyn,Crown Heights,40.67652,-73.94859,Entire home/apt,80,7,0,,,1,0 +14264490,Sunny Windsor Terrace 3 BR + deck,2487882,Craig,Brooklyn,Windsor Terrace,40.65092,-73.98054,Entire home/apt,120,5,1,2018-08-15,0.09,2,0 +14265052,HUGE master bedroom in TIME SQUARE,33518883,Melina,Manhattan,Hell's Kitchen,40.76086,-73.99147,Private room,90,1,15,2017-08-31,0.42,2,0 +14266097,The Brooklyn Vibe,12582591,Richard,Brooklyn,Prospect-Lefferts Gardens,40.65825,-73.96073,Entire home/apt,130,1,83,2019-06-17,2.34,1,0 +14267222,YOUR PRIVATE SPACE: Prospect Lefferts Gardens NYC!,86950026,Candy,Brooklyn,Prospect-Lefferts Gardens,40.66081,-73.94963,Entire home/apt,84,2,84,2019-07-05,2.39,1,211 +14272980,Clean 1 Bed/with En Suite Shower,84684940,Clyde,Brooklyn,Flatbush,40.64831,-73.96181,Private room,50,3,98,2019-06-20,2.77,2,140 +14274403,New York City Getaway; very close to LGA,87041889,Laverne & David,Queens,East Elmhurst,40.76777,-73.87733,Entire home/apt,76,2,75,2019-06-24,4.39,1,35 +14274809,Amazing Location 2 BR 2 Full Bath East Village,7118541,Jared,Manhattan,East Village,40.72714,-73.98668,Entire home/apt,316,3,74,2019-06-08,2.19,1,348 +14275887,"Private Lux Condo, w/ A Great 7th Story View",87065585,Kimberly,Queens,Jamaica,40.70796,-73.80117,Entire home/apt,115,2,32,2018-09-22,0.91,1,265 +14276224,Williamsburg Hideaway,35658806,Patty,Brooklyn,Williamsburg,40.71505,-73.95716,Entire home/apt,325,1,2,2018-01-05,0.06,1,0 +14276565,Cozy Clean Small Apartment 2 Bedrooms Nyc,87073749,Benedetta,Brooklyn,Williamsburg,40.71051,-73.95587,Entire home/apt,160,2,130,2019-06-23,3.72,2,69 +14276659,Greyhound Manor - twin bed with a share bath,87073939,Carol,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92284,Private room,47,2,39,2019-06-27,1.12,2,51 +14277478,Amazing View of NYC,576575,Rami,Manhattan,Hell's Kitchen,40.76044,-73.99051,Entire home/apt,200,3,9,2018-10-06,0.26,1,0 +14278303,Gorgeous Apartment with Balcony & Terrace,792365,Eytan,Brooklyn,Williamsburg,40.71677,-73.94124,Entire home/apt,200,4,9,2019-06-29,0.26,1,9 +14278418,Large Sunny Williamsburg Apt Near L train #2`,45204053,Curtis,Brooklyn,Williamsburg,40.71498,-73.94207,Private room,75,7,12,2019-04-29,0.35,2,359 +14280057,Cozy Room Right Next to Prospect Park!,27186608,Clara,Brooklyn,Flatbush,40.64562,-73.96446,Private room,39,3,13,2019-07-05,0.38,1,186 +14280163,Large modern chic 1-BR apt near World Trade Center,60557711,Sameer,Manhattan,Financial District,40.70851,-74.00563,Entire home/apt,300,6,3,2018-12-30,0.10,1,358 +14280778,Penthouse in the sky,46164403,Elizabeth,Manhattan,Upper West Side,40.79321,-73.97685,Entire home/apt,489,7,8,2018-07-29,0.22,1,328 +14281111,Private floor/Flat,84810879,Linda,Queens,Rosedale,40.65045,-73.74596,Entire home/apt,150,2,3,2018-07-27,0.08,3,364 +14281526,Queens Village Vacation Getaway,86209218,Sophia,Queens,Queens Village,40.71168,-73.74037,Entire home/apt,65,1,152,2019-07-05,4.67,1,335 +14281865,Serenity & Charm in Brooklyn's Best Area (Legal),43438475,Viviana,Brooklyn,South Slope,40.66847,-73.98893,Entire home/apt,120,4,139,2019-06-20,3.98,3,136 +14282356,Amazing Apt in Hells Kitchen!!,87152012,Steven,Manhattan,Hell's Kitchen,40.76249,-73.99103,Private room,80,1,117,2018-02-23,3.34,1,0 +14282491,Bedroom in East Williamsburg/ Bushwick Brooklyn,483600,Anne,Brooklyn,Williamsburg,40.70383,-73.94295,Private room,53,2,40,2019-05-11,1.15,1,1 +14283423,LUXURY BLDG - PRIVATE TERRACE/DOORMAN,40405299,Andra,Manhattan,Upper West Side,40.77174,-73.98934,Entire home/apt,200,3,16,2019-05-07,0.48,1,0 +14283546,Adorable Crown Heights Home Away From Home,84141923,Marisha,Brooklyn,Crown Heights,40.66902,-73.93771,Private room,50,3,100,2019-02-19,2.81,2,0 +14284714,Mid-town Manhattan (East Side near UN),38179715,Megan,Manhattan,Midtown,40.75259,-73.96797,Entire home/apt,150,2,13,2019-05-11,0.36,1,69 +14290760,Awesome room in heart of midtown!,87242862,Randi,Manhattan,Hell's Kitchen,40.76338,-73.98911,Private room,120,2,154,2019-06-17,4.47,1,266 +14292249,Charming Manhattan Pied a Terre,39241960,Jackie,Manhattan,Kips Bay,40.74164,-73.98275,Private room,175,2,41,2019-06-02,1.18,1,242 +14294585,"Top 7th floor sunny 1 bedroom - Sugar Hill, Harlem",24103270,Andres,Manhattan,Harlem,40.82485,-73.94366,Entire home/apt,49,30,11,2019-03-02,0.32,1,36 +14295885,WONDERFUL BED ROOM 10 MINS FROM JFK,74331597,Nickesha,Queens,St. Albans,40.686,-73.7691,Private room,59,2,4,2019-06-28,0.29,5,180 +14296299,Lovely private suite in charming historic house,4269804,Mollie,Queens,Ridgewood,40.70717,-73.89395,Private room,79,3,13,2018-05-18,0.39,1,64 +14296562,"Entire Home in Gramercy, Duplex Loft",6543299,Sun-Young,Manhattan,Kips Bay,40.73958,-73.98258,Entire home/apt,195,2,12,2018-07-08,0.41,1,0 +14296598,Art-filled bright spacious loft prime Wburg Brklyn,14942276,Susan,Brooklyn,Williamsburg,40.71932,-73.95649,Entire home/apt,249,3,99,2019-06-13,2.87,2,239 +14297036,Middle Size Room Super Convenient Area: ♥of Bklyn,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66291,-73.96257,Private room,53,1,42,2019-05-26,1.19,3,337 +14297224,Luxury Apt on Wall St - Amazing Views,87312106,Marc,Manhattan,Financial District,40.707,-74.00782,Private room,189,1,22,2017-07-15,0.67,1,0 +14300750,"Private room great for single travelers, near JFK",6762657,Yvette,Brooklyn,East New York,40.67324,-73.88292,Private room,60,2,38,2019-07-05,1.07,2,357 +14301857,Large Modern Studio with Free Parking in Driveway,47901176,Will & Clara,Queens,Ridgewood,40.70882,-73.9179,Entire home/apt,135,2,73,2019-07-06,2.11,1,345 +14301951,A beautiful cozy room with balcony,87370616,Francisca,Bronx,Longwood,40.81998,-73.90325,Private room,75,2,110,2019-06-17,3.18,2,350 +14302945,"Cozy, Beautiful Bedroom in Shared Apartment",4803103,Sharina,Brooklyn,Prospect Heights,40.68224,-73.97302,Private room,60,5,0,,,1,18 +14303789,BEAUTIFUL AND SPACIOUS APARTMENT 1st FLOOR,5613109,Lilly,Queens,Astoria,40.7581,-73.91975,Entire home/apt,120,2,13,2018-06-25,0.37,1,115 +14309960,Charming Bedroom in East Village,8108526,Emily Rose,Manhattan,East Village,40.73226,-73.98688,Private room,100,5,4,2018-02-25,0.17,1,0 +14311699,Sunny Williamsburg Loft,14559352,Jamis,Brooklyn,Williamsburg,40.71123,-73.96148,Private room,95,3,61,2019-05-31,1.73,2,56 +14312186,Classic NYC: ENTIRE 1-BR in Spacious Chelsea Apt,87487508,Adam,Manhattan,Chelsea,40.74029,-74.00233,Entire home/apt,185,1,2,2016-08-22,0.06,1,0 +14312497,Upper East Side Studio Apartment,38681372,Nicole,Manhattan,Upper East Side,40.76644,-73.95635,Entire home/apt,99,5,15,2017-05-01,0.45,1,0 +14314240,"Entire 2 bedroom apt ,Prime Williamsburg",11052217,Fabio,Brooklyn,Williamsburg,40.71358,-73.95429,Entire home/apt,180,4,94,2019-06-26,2.72,1,326 +14314562,Affordable 3 BR In City Center,78331155,Nick,Manhattan,Midtown,40.74426,-73.9825,Entire home/apt,350,5,24,2018-11-07,0.70,1,137 +14315012,"Cozy private room in downtown Manhattan, NYC",60995455,Melody,Manhattan,Greenwich Village,40.7305,-73.99647,Private room,69,1,4,2018-06-13,0.12,1,0 +14315241,COZY SPOT,87521021,Melissa & Rondie,Brooklyn,East Flatbush,40.65825,-73.92191,Private room,50,2,41,2018-03-18,1.15,1,250 +14316033,ONLY 4.5 MILES TO MANHATTAN,54438083,Charles,Queens,Maspeth,40.72211,-73.90905,Entire home/apt,144,2,113,2019-06-11,3.18,3,293 +14316198,Beautiful 1 bedroom in Brooklyn!!!!,72607058,Madi,Brooklyn,Prospect-Lefferts Gardens,40.65656,-73.95572,Entire home/apt,85,4,9,2017-08-27,0.25,1,0 +14316228,IMMACULATE 1-BDRM UPPER MANHATTAN,87537411,Dionne,Manhattan,Washington Heights,40.83406,-73.94731,Entire home/apt,100,5,13,2019-06-15,1.04,1,1 +14316284,Lovely One Bedroom West Village,1483451,Pipi,Manhattan,West Village,40.72921,-74.00345,Entire home/apt,240,5,52,2019-06-23,1.54,1,271 +14317785,Prospect Heights for the Holidays! 2 bedroom apt,10055751,Julie,Brooklyn,Crown Heights,40.67407,-73.96303,Entire home/apt,125,1,3,2017-01-02,0.09,2,0 +14317995,Central Park & Met Museum 1 Bedroom Gem!,8049219,Richard,Manhattan,Upper East Side,40.77666,-73.95625,Entire home/apt,165,2,22,2018-01-02,0.65,1,0 +14318774,New York Masterpiece,37718300,Martha,Queens,Rego Park,40.73541,-73.85632,Entire home/apt,145,3,88,2019-06-17,2.56,1,321 +14320998,1 Bedroom,84810879,Linda,Queens,Rosedale,40.66155,-73.73064,Private room,88,1,0,,,3,364 +14322170,Sweet & Artsy Williamsburg Room,21697957,Saba,Brooklyn,Williamsburg,40.70652,-73.94054,Private room,65,1,1,2016-08-08,0.03,1,0 +14322182,Greenpoint amazing private room,15235299,Hai-Hsin,Brooklyn,Greenpoint,40.73293,-73.95919,Private room,60,3,52,2019-05-05,1.49,2,0 +14322869,Charming Private Astoria Apt. 15 Min To Manhattan!,2370635,Aimee,Queens,Astoria,40.75868,-73.92615,Entire home/apt,122,2,128,2019-06-15,3.65,1,255 +14323475,"Spacious, sunlit, homey bedroom in Wash. Heights",22888115,Amy,Manhattan,Washington Heights,40.83613,-73.94472,Private room,65,7,0,,,1,0 +14323803,Cozy Bright Brooklyn by train,14898658,Chadanut,Brooklyn,Kensington,40.64386,-73.98195,Private room,42,1,95,2019-06-23,2.69,11,148 +14324811,Excellent Location! Sunny & Cozy!,4131257,Abeni,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95203,Private room,55,6,7,2019-01-07,0.54,1,179 +14330688,Beautiful Crown Heights Pre-War 1 Bedroom,5158569,Genevieve,Brooklyn,Crown Heights,40.6686,-73.93517,Entire home/apt,115,2,7,2019-01-01,0.21,1,0 +14330713,Opera House Lofts - Bushwick Studio,10022166,David,Brooklyn,Bushwick,40.69938,-73.93547,Entire home/apt,95,1,9,2018-02-25,0.25,1,0 +14330789,"Steps to the Metro, Minutes to Manhattan",22194698,Joe & Jay,Brooklyn,Bedford-Stuyvesant,40.69121,-73.92529,Entire home/apt,113,2,167,2019-07-03,4.71,2,167 +14331775,"Beautiful, Spacious Studio In VERY Convenient Area",11830475,Kristy,Manhattan,Upper East Side,40.76347,-73.96514,Entire home/apt,185,4,10,2019-05-15,0.28,1,329 +14332083,Large furnished room with 2 beds,87723508,Edyta,Queens,Glendale,40.69848,-73.89569,Private room,34,30,14,2019-07-02,0.41,2,365 +14332210,Duplex in Manhattan 15min to Times Square,3767367,Regina,Manhattan,Upper East Side,40.78255,-73.95123,Private room,80,3,90,2019-06-27,2.53,3,323 +14332446,Fold out couch in prime Brooklyn,31378,Kristine,Brooklyn,Crown Heights,40.67385,-73.96126,Shared room,50,1,55,2019-06-30,1.54,3,60 +14334031,Nice Private room on Broadway,7721149,Ricardo,Manhattan,Washington Heights,40.83735,-73.94351,Private room,55,3,89,2019-06-23,2.53,1,66 +14334508,Primary Midtown Location Highrise Apartment,57272703,Jenya,Manhattan,Murray Hill,40.74706,-73.97355,Entire home/apt,110,5,2,2018-01-05,0.06,1,0 +14335179,❤ of Greenwich Village ~ Walk/Transit Score 100,1528977,Stephanie,Manhattan,Greenwich Village,40.72915,-74.00106,Private room,115,5,65,2019-06-10,1.84,1,157 +14336338,Dwell Inspired Design~ Great Manhattan Location!,13547493,Chuck,Manhattan,Upper East Side,40.78025,-73.95183,Entire home/apt,239,3,17,2019-05-30,0.49,2,212 +14337001,Charming Room in Astoria Close to N and W Trains,45225936,Bekah,Queens,Astoria,40.75593,-73.92584,Private room,63,2,8,2017-08-21,0.31,1,0 +14339989,Lg Modern 1 Bedroom / Rooftop Bldg,9226441,Michael,Manhattan,Kips Bay,40.74042,-73.98139,Entire home/apt,295,2,42,2019-05-19,1.29,1,81 +14340033,1400 sq ft modern full floor loft,6804141,Alexander,Manhattan,Flatiron District,40.74076,-73.99307,Entire home/apt,425,7,0,,,1,363 +14340142,Private Room & Private Bathroom in NYC Brownstone,43817869,Veronica,Brooklyn,Bedford-Stuyvesant,40.69087,-73.92952,Private room,125,4,55,2018-12-12,1.59,1,0 +14340165,Luxury Modern Studio in The Bronx,9605945,Chondra,Bronx,Throgs Neck,40.81587,-73.81532,Entire home/apt,175,2,28,2019-05-28,0.92,1,36 +14340328,Great Room in Charming Nolita Apt,8338942,Victor,Manhattan,Nolita,40.72245,-73.99416,Shared room,90,1,10,2019-05-21,0.28,4,14 +14341006,"Bedroom in hip, artsy, unique loft apartment",1767228,Josh,Brooklyn,Williamsburg,40.70962,-73.9501,Private room,75,3,3,2018-01-03,0.09,1,0 +14341397,One bedroom apartment,87835557,Kostas,Queens,Astoria,40.76623,-73.90911,Entire home/apt,99,2,154,2019-06-30,4.38,1,283 +14342997,Calm&Cozy Bedroom - NoLIta/SoHo (private bathroom),1120651,Orianna,Manhattan,Nolita,40.72413,-73.99355,Private room,118,3,10,2017-09-09,0.29,1,0 +14347194,"Cozy Bedroom (East Harlem, Manhattan)",23816403,Talia,Manhattan,East Harlem,40.78807,-73.944,Private room,75,2,50,2018-03-24,1.46,1,0 +14347502,Sunny Studio in the Hearth of the Lower East Side,4023646,Luca,Manhattan,Lower East Side,40.72144,-73.98915,Entire home/apt,105,3,24,2019-02-25,0.68,1,0 +14348580,Just Right in Lovely Greenpoint,60852834,Manny & Gemma,Brooklyn,Greenpoint,40.7294,-73.94977,Private room,56,7,69,2018-05-06,1.96,2,163 +14349588,DUMBO Brooklyn Authentic Loft,32207621,Cynthia,Brooklyn,DUMBO,40.70267,-73.98828,Private room,125,12,24,2018-10-28,0.69,1,0 +14350781,West Village/SoHo - Small but Mighty Room!,7977178,Abby,Manhattan,SoHo,40.7277,-74.00375,Private room,80,2,8,2019-06-01,0.23,3,275 +14351180,Sunny Artist Loft with Pool and Spa,10282255,Liza,Bronx,Port Morris,40.80779,-73.93095,Entire home/apt,110,3,7,2019-06-09,0.20,1,42 +14351693,"Private room Bushwick, BK!",21544501,Natalie,Brooklyn,Bushwick,40.68876,-73.90578,Private room,75,1,24,2018-10-29,0.69,2,250 +14351733,Private Room beside the 7 Train!,46015557,Megan,Queens,Sunnyside,40.74611,-73.91295,Private room,60,2,15,2018-08-27,0.42,1,27 +14351787,1 room in Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76933,-73.91165,Private room,55,1,20,2019-06-27,0.63,4,252 +14353077,Beautiful room in newly renovated aptartment,39726129,Jacob,Manhattan,Stuyvesant Town,40.7294,-73.97751,Private room,60,2,2,2016-08-25,0.06,1,0 +14353103,Large room in new Williamsburg apartment,87967262,Oran,Brooklyn,Williamsburg,40.70805,-73.95442,Private room,200,4,9,2018-12-08,0.25,1,89 +14354698,Huge 1 Bedroom Central Harlem Express Subway Stop,4597403,Naseef,Manhattan,Harlem,40.81315,-73.95389,Private room,49,1,13,2019-07-07,0.37,1,0 +14354732,"Mary's Respite -Convenient, garden apt in Flushing",86786744,Gloria,Queens,Flushing,40.75842,-73.81996,Entire home/apt,200,2,93,2019-07-07,2.68,1,346 +14355431,Nice comfy room,58453451,Michael,Brooklyn,East New York,40.67333,-73.8872,Private room,40,2,84,2019-07-04,2.45,2,273 +14355768,"Park Avenue, Lux Studio Murray Hill apartment",22541573,Ken,Manhattan,Murray Hill,40.74829,-73.98041,Entire home/apt,179,30,0,,,87,365 +14357461,Cozy & Private 1 bedroom in Bedstuy,22177259,Cass,Brooklyn,Bedford-Stuyvesant,40.69329,-73.94055,Entire home/apt,75,2,12,2018-12-02,0.35,1,41 +14357487,Brooklyn Brownstone Oasis,48489969,Madelyn,Brooklyn,Bedford-Stuyvesant,40.68796,-73.91991,Private room,45,2,24,2019-06-09,0.68,1,5 +14357698,Penthouse Duplex 2 Bed/2 Bath on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78411,-73.97721,Entire home/apt,245,30,12,2019-06-30,0.37,6,245 +14357767,Cozy Brownstone Garden Apartment (King&Twin Bed ),40542519,Josefina,Brooklyn,Prospect Heights,40.67679,-73.96661,Entire home/apt,120,3,36,2019-01-14,1.06,1,89 +14358402,Clean and Spacious Brooklyn Loft (Rear),21467726,Tyler,Brooklyn,Williamsburg,40.70468,-73.93681,Private room,51,6,5,2018-10-02,0.22,2,358 +14359772,(1)Comfy Home Away From Home/Multiple rooms!!,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68787,-73.95332,Private room,83,1,110,2019-07-06,3.46,4,307 +14361378,"Sun Drenched, Huge Room-Park Slope",19877163,Heather,Brooklyn,Boerum Hill,40.68316,-73.97952,Private room,55,2,1,2016-08-11,0.03,1,0 +14362124,Simple PRIVATE ROOM in UNION SQUARE,88073013,Rui,Manhattan,Gramercy,40.73421,-73.98834,Private room,85,2,47,2019-06-04,1.32,1,18 +14365130,Park Avenue Studio Suite (3),50760546,CRNY Monthly Rentals,Manhattan,Kips Bay,40.74439,-73.98112,Entire home/apt,109,30,5,2018-10-01,0.15,31,134 +14366054,"Beautiful, large bedroom",5120169,Jason,Brooklyn,Bedford-Stuyvesant,40.68172,-73.95118,Private room,85,2,8,2017-11-12,0.23,2,0 +14366544,Doorman Penthouse One Bedroom Laundry 5196,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73486,-73.98611,Entire home/apt,179,30,2,2018-07-31,0.06,96,345 +14366918,Private BR in Beautiful Renovated East Village Apt,21882649,Joshua,Manhattan,East Village,40.73036,-73.98633,Private room,95,30,7,2016-12-29,0.20,1,238 +14367248,Cozy Brooklyn Studio Apt in Clinton Hill,25599142,Anthony,Brooklyn,Clinton Hill,40.68634,-73.9661,Entire home/apt,95,2,47,2019-06-23,1.34,1,0 +14367644,"Williamsburg Loft, Brooklyn, New York",70739054,Ariel,Brooklyn,Williamsburg,40.71144,-73.96795,Entire home/apt,170,3,87,2019-06-25,2.48,1,32 +14367695,Beach Bungalow with loft,81065498,Jules,Queens,Rockaway Beach,40.58656,-73.81565,Entire home/apt,110,1,75,2019-06-23,2.14,1,56 +14369923,"Bright, Welcoming 2 Bedroom Apt in Clinton Hill",24897395,Laura,Brooklyn,Bedford-Stuyvesant,40.68844,-73.95442,Entire home/apt,111,2,2,2017-07-05,0.08,1,0 +14370793,Modern Brooklyn oasis (PRIVATE ROOM),20309640,Rameera,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.94299,Private room,125,1,1,2016-09-17,0.03,1,87 +14370839,Private room in a shared 3 bed 1 bath in Bushwick,65344210,Carly,Brooklyn,Bushwick,40.6866,-73.91221,Private room,34,3,0,,,1,0 +14371241,Private Room - 15 min to Times Square.,9209911,Oscar,Manhattan,Harlem,40.81853,-73.9472,Private room,54,3,71,2019-07-01,2.01,1,15 +14371877,Spacious 1 bedroom in loft-style building,9725785,J.D. & Stephanie,Brooklyn,Williamsburg,40.7103,-73.96833,Private room,79,1,39,2019-06-13,1.11,2,152 +14372031,Williamsburg Loft w Large Private Bedroom & Bath,5662183,Brian,Brooklyn,Williamsburg,40.70786,-73.9503,Private room,80,2,166,2019-06-22,4.68,1,8 +14372624,"A Quiet, Private Room - Heart of Greenpoint/Wbg!",72512761,Erik,Brooklyn,Greenpoint,40.72226,-73.95044,Private room,89,4,31,2019-06-23,4.72,3,0 +14373121,Luxury Midtown High Rise,35573939,Brandon,Manhattan,Hell's Kitchen,40.76377,-73.98734,Entire home/apt,175,3,1,2016-08-18,0.03,1,0 +14373756,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :DD,3441272,Jasmin,Brooklyn,Bushwick,40.69903,-73.93021,Private room,85,1,188,2019-06-20,5.30,5,270 +14375153,Call it Home.,75506967,Mimie,Bronx,Claremont Village,40.83796,-73.9016,Private room,38,15,8,2018-08-02,0.23,2,24 +14378713,Big Bed in Brooklyn Room; close to train,2373229,Antonio,Brooklyn,Bushwick,40.70019,-73.94098,Private room,38,1,97,2019-06-21,2.73,2,0 +14378948,"Small Room, big bed, close to train brooklyn",2373229,Antonio,Brooklyn,Bedford-Stuyvesant,40.69981,-73.94111,Private room,29,1,63,2019-06-05,1.78,2,18 +14381060,Large Private Room in Hip Bushwick,65354277,Eleanor,Brooklyn,Bushwick,40.69918,-73.91316,Private room,45,2,5,2016-10-18,0.14,1,0 +14381523,Beautiful Tree Lined West Village Block!,797100,Rory,Manhattan,West Village,40.7334,-74.00546,Entire home/apt,229,2,3,2016-12-13,0.09,1,67 +14382631,Comfortable and Cozy Apartment In Williamsburg,59614258,Alejandra,Brooklyn,Williamsburg,40.71208,-73.96256,Entire home/apt,147,2,47,2018-10-29,1.34,1,0 +14383283,"(Room201)7分钟拉瓜迪机场,19分钟肯尼迪机场。皇后区法拉盛中心,地段超好。#201",75216989,Wenqin,Queens,Flushing,40.76333,-73.82879,Private room,35,1,61,2019-05-18,1.72,4,342 +14383299,Beverly Hills Studio,88314380,Stephen,Manhattan,Upper East Side,40.76242,-73.96058,Entire home/apt,300,3,0,,,1,179 +14383928,"Private, Sunny & Serene Penthouse Apartment",63365572,Marjorie,Brooklyn,Park Slope,40.67713,-73.97829,Entire home/apt,154,2,143,2019-06-29,4.11,1,269 +14384874,Upscale and charming West Village Pied a terre,88334116,Mark And Annunziata,Manhattan,West Village,40.73579,-74.00764,Entire home/apt,250,120,2,2017-10-25,0.09,1,273 +14385616,PRIME Williamsburg MODERN studio in doorman bldg!!,176332,Lauren,Brooklyn,Williamsburg,40.72207,-73.95697,Entire home/apt,150,4,10,2018-09-26,0.29,1,6 +14386245,Sunny & Spacious Room in Crown Heights,88352863,Daniel,Brooklyn,Crown Heights,40.67159,-73.95242,Private room,65,1,6,2018-06-25,0.17,1,0 +14386712,★1000 ft² designer loft in SOHO - Little Italy★,88329273,Zev,Manhattan,Little Italy,40.71725,-73.99811,Entire home/apt,250,1,180,2019-06-18,5.07,1,229 +14386892,"Private Comfy 2 Room Apt, 23min to Manhattan",88361314,Cindy,Brooklyn,Windsor Terrace,40.65823,-73.98059,Entire home/apt,99,4,75,2019-06-10,2.16,1,216 +14387471,Homey & Vivacious Brooklyn Bedroom,40070700,Kristin,Brooklyn,Bedford-Stuyvesant,40.69742,-73.94775,Private room,45,8,4,2017-05-01,0.11,1,0 +14387555,Cozy room in warm & sunny prime LES/Chinatown Apt,5997660,Victoria,Manhattan,Chinatown,40.71602,-73.99233,Private room,105,2,11,2018-05-24,0.53,1,0 +14388889,Sunny Private bedroom in Bushwick!,20302754,Ruben,Brooklyn,Bushwick,40.69494,-73.91298,Private room,45,3,101,2019-07-02,2.89,2,60 +14389886,Beautiful 1 bedroom in the heart of Manhattan!,88399191,Biljana,Manhattan,Flatiron District,40.74041,-73.98933,Entire home/apt,180,3,16,2018-05-09,0.47,1,0 +14394217,Beautiful studio apartment in Sunnyside,88450280,June,Queens,Sunnyside,40.74962,-73.91664,Entire home/apt,130,2,111,2019-06-27,3.19,1,252 +14397396,Lots of light Upper East Side Apartment.,8116703,Valentina,Manhattan,Upper East Side,40.77315,-73.95848,Entire home/apt,210,3,0,,,1,0 +14398950,Cozy private studio,9667684,Mihaela,Queens,Maspeth,40.72145,-73.90802,Entire home/apt,77,4,93,2019-06-21,2.69,1,198 +14401928,Private Room in Elevator building in Brooklyn,84260530,Sharon,Brooklyn,Flatbush,40.63953,-73.96308,Private room,450,1,1,2016-08-15,0.03,2,364 +14403485,Cozy private bdrm in Manhattan near Subway Station,88550022,Sheila & Tony,Manhattan,East Harlem,40.79105,-73.94376,Private room,85,2,123,2019-06-29,4.09,1,64 +14403574,COZY ROOM in a beautiful Bushwick apartment,12442710,Ben,Brooklyn,Bushwick,40.69467,-73.93113,Private room,67,3,97,2019-06-24,2.75,1,141 +14404240,"Private room near E,F trains近地铁单房",88400958,Yuliang,Queens,Forest Hills,40.71741,-73.8333,Private room,58,2,78,2019-06-16,2.22,1,0 +14406256,"Sunny bedroom, private backyard",88585692,Laura,Brooklyn,Bushwick,40.69641,-73.9252,Private room,149,3,19,2019-01-01,0.56,1,363 +14406807,My 2 br. Humble Abode,425806,Loren,Manhattan,Harlem,40.81257,-73.94606,Entire home/apt,150,2,29,2019-05-20,0.84,1,0 +14406826,"Cozy , Comfortable Accommodations!",88593699,Stacey-Ann,Brooklyn,Bedford-Stuyvesant,40.67984,-73.91151,Private room,80,1,15,2017-01-24,0.42,1,189 +14406923,"Location near Kissena Blvd. & Holly Ave., Flushing",71663192,Maverick,Queens,Flushing,40.74891,-73.82039,Private room,80,1,15,2019-05-01,0.43,1,288 +14408114,Unparalleled Luxury in Midtown Manhattan,836168,Henry,Manhattan,Midtown,40.76455,-73.97959,Entire home/apt,2500,30,4,2017-04-17,0.13,11,364 +14409723,Charming & Spacious Studio in NYC,88626648,Kerry,Manhattan,Upper East Side,40.76099,-73.96158,Entire home/apt,130,2,11,2018-01-01,0.32,1,0 +14415799,East Williamsburg Cozy Apartment with Rooftop!,48113730,Anastasia & Jeremy,Brooklyn,Williamsburg,40.70749,-73.93916,Entire home/apt,150,2,2,2016-10-16,0.06,1,0 +14417576,"Best View, Great Location, Concierge, Gym, Lounge",57910970,Adora,Manhattan,Financial District,40.71097,-74.01397,Entire home/apt,180,1,36,2017-05-09,1.05,1,0 +14417798,LES Minimalistic Studio,65356318,Tiffani,Manhattan,Lower East Side,40.71891,-73.99095,Entire home/apt,125,4,37,2019-06-15,1.05,1,0 +14419516,Spacious sunny bedroom (B) - East Village,3417321,David,Manhattan,East Village,40.72935,-73.9871,Private room,150,2,9,2019-06-23,0.26,2,0 +14420353,Private room in Prime Soho/Nolita location,6136511,Sky,Manhattan,Nolita,40.72057,-73.99462,Private room,89,12,3,2019-05-25,0.10,2,332 +14421258,1 BR in Williamsburg with private balcony!,31344441,Alexa,Brooklyn,Williamsburg,40.71346,-73.95689,Shared room,42,1,4,2017-01-01,0.12,1,0 +14421313,"Cozy Room, Clean & Quiet, Free laundry",42627213,Johnny,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91941,Private room,40,3,5,2016-09-19,0.14,1,0 +14421383,Beautiful Private Sunny Room with Backyard,27001949,Zach,Brooklyn,Bushwick,40.69514,-73.91903,Private room,70,3,72,2019-06-24,2.04,1,155 +14422308,Williamsburg Duplex,23266322,Jamil,Brooklyn,Williamsburg,40.71494,-73.94652,Entire home/apt,200,90,4,2018-10-07,0.40,1,364 +14423010,Convenient and Modern Midtown West Apartment,15978364,Kayleen,Manhattan,Hell's Kitchen,40.76395,-73.99007,Private room,64,2,1,2016-08-08,0.03,1,0 +14423024,Sunny bedroom in historic Bed Stuy BK brownstone,3380348,Lee-Ann,Brooklyn,Bedford-Stuyvesant,40.68545,-73.93074,Private room,75,14,10,2019-01-03,0.45,1,341 +14426680,Luxurious and Sunny 2 bed/2 bath home (1100 sqft),2678122,Tasha,Brooklyn,Williamsburg,40.71729,-73.94927,Entire home/apt,180,4,64,2019-06-06,2.00,3,57 +14427313,PRIVATE ROOOM IN GREENPOINT,26714887,Anthony,Brooklyn,Greenpoint,40.72988,-73.95494,Private room,75,3,0,,,2,0 +14429513,Sunlit Private Room in Centrally Located Chelsea,69021484,Jocelyn & Jake,Manhattan,Chelsea,40.75066,-73.99944,Private room,139,5,120,2019-07-02,3.91,1,52 +14429957,Amazing Private Room close Time Sq & Central Park.,713764,Michelle & Heddy,Manhattan,Hell's Kitchen,40.7632,-73.98875,Private room,149,2,121,2019-06-13,3.50,1,70 +14429976,Comfy private room in Williamsburg,78164397,Mike,Brooklyn,Williamsburg,40.71347,-73.96452,Private room,85,3,99,2019-06-13,3.09,1,19 +14430662,Spacious Brooklyn Apartment,42223963,Faiza,Brooklyn,Flatlands,40.62646,-73.94554,Private room,92,1,2,2017-04-07,0.06,1,364 +14437093,Sunny Alcove 1-bdrm- Rooftop with view & backyard!,4400586,Carrie,Manhattan,East Village,40.72397,-73.98329,Entire home/apt,129,7,10,2019-02-10,0.29,1,0 +14438244,"Lovely, Comfortable 1 Bedroom in East Village",2024430,Lauren,Manhattan,East Village,40.72919,-73.97894,Entire home/apt,150,2,1,2016-09-12,0.03,1,0 +14439638,Great 1 BDR in Upper East Side,1825030,Adrien,Manhattan,Upper East Side,40.7708,-73.95416,Private room,125,1,24,2018-03-23,0.70,1,188 +14440066,Bedroom in SoHo/Nolita,5073448,Alessandra,Manhattan,Nolita,40.72127,-73.99526,Private room,100,4,2,2019-05-07,0.32,1,0 +14441627,Zen Temple Vibe apt in heart of Hells Kitchen NYC,88884610,Lena,Manhattan,Hell's Kitchen,40.75987,-73.99008,Entire home/apt,198,3,15,2019-05-27,0.43,1,4 +14442338,Beautiful 1 Bedroom NYC Apartment - River Views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76082,-73.99937,Entire home/apt,239,30,1,2017-11-01,0.05,121,365 +14443766,Giant private room near east village and gramercy,484993,Andrew,Manhattan,Stuyvesant Town,40.73304,-73.97421,Private room,82,60,0,,,1,365 +14444988,"Charming, fun, private East Village apartment",16419280,John,Manhattan,East Village,40.72541,-73.97638,Entire home/apt,215,1,76,2019-06-23,2.16,1,245 +14445183,Family Friendly Stay in Brooklyn,88945872,Andria,Brooklyn,East Flatbush,40.6468,-73.9508,Entire home/apt,100,5,83,2019-06-30,2.50,1,31 +14445481,Times Square Studio Suite,88904682,Joshua,Manhattan,Hell's Kitchen,40.76549,-73.98582,Entire home/apt,180,2,2,2016-09-19,0.06,1,2 +14446717,"1 Bedroom Apt, West 69th St, bwtn BWay & Columbus",30045574,Barry,Manhattan,Upper West Side,40.77445,-73.98002,Entire home/apt,150,30,8,2019-06-28,0.24,1,328 +14446960,"Cozy 3 Bedroom, 20 Minutes to Times Square!",88960729,Chin,Queens,Woodside,40.74321,-73.89988,Entire home/apt,199,3,169,2019-06-24,4.80,1,302 +14448231,Cozy Sun Filled Fresh Guest Room in Artsy Bushwick,22246463,Lisa,Brooklyn,Bushwick,40.7023,-73.92935,Private room,99,2,26,2019-06-23,0.76,1,155 +14450837,Yoga Apartment next to La Guardia and Manhattan,89000911,Ursula,Queens,Jackson Heights,40.75533,-73.87804,Private room,40,1,81,2019-05-27,2.32,2,127 +14451686,Super relaxing West Village 1BR w/private terrace,60102990,Nicolas,Manhattan,West Village,40.73435,-74.0066,Entire home/apt,199,30,32,2018-10-06,0.91,1,343 +14452731,Cozy room just 15 mins from Central Park,8616291,Chikie,Manhattan,Harlem,40.82112,-73.95112,Private room,69,5,80,2019-06-20,2.26,2,0 +14453189,1BR Apartment,81673810,Max,Manhattan,Chinatown,40.71539,-73.99092,Entire home/apt,170,4,0,,,1,0 +14453434,Greenpoint Williamsburg Gold in the Heart of BK,89031106,Edyta,Brooklyn,Greenpoint,40.72173,-73.94768,Entire home/apt,110,30,4,2017-08-07,0.12,4,301 +14462592,A cozy luxurious bed and breakfast,79641851,Mia,Staten Island,Howland Hook,40.63014,-74.17459,Entire home/apt,100,4,20,2018-09-24,0.57,1,363 +14463527,Sunny Room in Greenpoint.,52040778,Sally,Brooklyn,Greenpoint,40.72408,-73.93952,Private room,50,25,0,,,1,5 +14464084,Swimming Pool/Gym/ Doorman 2 bed 2 bath W&D 5192,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.794,-73.96734,Entire home/apt,310,30,1,2017-03-26,0.04,96,294 +14464699,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :D,3441272,Jasmin,Brooklyn,Bushwick,40.69972,-73.93192,Private room,110,1,208,2019-06-24,5.89,5,293 +14465415,Forest Hills,88681982,"Nykaz, Llc",Queens,Forest Hills,40.73269,-73.85284,Entire home/apt,165,2,37,2019-06-21,1.08,1,86 +14466137,Crown Heights Cozy 2 Bedroom apt.,88001494,Mendy,Brooklyn,Crown Heights,40.66737,-73.93661,Private room,85,3,55,2019-07-06,1.56,3,49 +14466193,Spacious Bright Private Bedroom for 2,17466612,Tanya,Brooklyn,Bensonhurst,40.60909,-73.9769,Private room,65,2,14,2018-10-08,0.44,2,82 +14466418,"**Amazing, Luxury Doorman, VIEW ,Battery Park**",52950465,Gal,Manhattan,Battery Park City,40.71109,-74.01537,Entire home/apt,149,30,2,2017-12-08,0.06,12,281 +14467580,★STAY IN OUR MIDTOWN LUXURIOUS STUDIO SUITE★,64065593,ResortShare5,Manhattan,Midtown,40.7538,-73.97139,Entire home/apt,252,2,16,2019-03-21,0.49,13,327 +14467602,2500 Square Foot Artist Flat,89158733,Alex,Manhattan,Two Bridges,40.71073,-73.99311,Private room,130,120,2,2016-08-15,0.06,2,229 +14467915,MyPlaceYourSpace,89165708,Charles,Brooklyn,Crown Heights,40.67238,-73.92781,Private room,80,6,0,,,1,358 +14469621,★ Comfy Room ★ w/ Parking | Quiet Area | Near Park,87601091,Matthew,Queens,Flushing,40.77063,-73.8098,Private room,75,2,85,2019-06-30,2.42,1,159 +14469737,Spacious Room in the Heart of Williamsburg,6955481,Chloe,Brooklyn,Williamsburg,40.71916,-73.95749,Private room,75,5,4,2019-04-10,0.14,2,0 +14470437,Private Brooklyn Apartment and Garden,29997245,Jenny,Brooklyn,Crown Heights,40.67508,-73.9271,Entire home/apt,125,2,70,2019-06-15,2.01,1,71 +14471418,Studio - St Regis Residence Club,60535711,Bruce,Manhattan,Midtown,40.76079,-73.97528,Entire home/apt,650,2,6,2019-06-16,0.42,2,363 +14472272,Cozy One bedroom apartment,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69486,-73.94525,Entire home/apt,115,1,129,2019-06-16,3.78,10,255 +14472317,MODERN PENTHOUSE ROOM/BALCONY AMAZING LOCATION :),34226735,Bella,Brooklyn,Williamsburg,40.71354,-73.95095,Private room,90,2,28,2017-11-05,0.82,1,0 +14472385,Large Private 1BR Apartment- Best Location Chelsea,16756301,Alexis,Manhattan,Chelsea,40.7437,-73.99896,Entire home/apt,249,7,70,2019-07-02,2.03,1,266 +14473545,Heart of BK - 1 bedroom w/extra room,37419591,Phil,Brooklyn,Clinton Hill,40.6919,-73.96511,Entire home/apt,140,6,9,2018-01-01,0.26,1,0 +14473548,Luxury 2BR/2BATH TownhousUpper East Side Manhattan,89196907,Maud,Manhattan,Upper East Side,40.7613,-73.96414,Entire home/apt,795,4,26,2019-06-14,0.80,1,340 +14475417,Best “H.P TWIN Bed” 5 mins to LGA airport &US OPEN,32446721,Veronica,Queens,Corona,40.74889,-73.86489,Shared room,27,1,16,2019-06-28,0.71,6,364 +14479761,Charming Studio in Astoria,5760525,Michael,Queens,Long Island City,40.76266,-73.92773,Entire home/apt,105,2,51,2019-06-23,1.48,1,208 +14480047,Private Bedroom in Prime Bay Ridge Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61819,-74.03047,Private room,30,3,23,2019-05-27,0.66,4,211 +14480430,Large room in the heart of Bushwick,13143585,Robert,Brooklyn,Bushwick,40.69526,-73.92674,Private room,55,4,0,,,2,0 +14481668,Bright & Clean Bedroom Nice Area Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61838,-74.03227,Private room,65,3,19,2019-06-30,0.55,4,337 +14482103,Master Bedroom w/ Private Bathroom Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61825,-74.03188,Private room,65,3,42,2019-07-02,1.22,4,290 +14482700,A bedroom far from Home,1017772,Lane,Queens,Briarwood,40.71515,-73.8158,Private room,55,2,1,2016-09-18,0.03,1,56 +14483469,Sun Soaked 3-Bedroom w/ private roof deck,19928013,Blake,Manhattan,Greenwich Village,40.73389,-73.99335,Entire home/apt,800,1,0,,,1,0 +14483613,Modern Apt - 10 min from Manhattan,89211125,Caroline,Queens,East Elmhurst,40.7572,-73.89569,Entire home/apt,100,3,87,2019-06-13,2.52,1,322 +14484998,Perfect for Students/Interns seeking summer rental,2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94245,Private room,55,1,0,,,3,364 +14485082,Bright Cozy Home in Brooklyn,23727216,Sezer,Brooklyn,Sheepshead Bay,40.60776,-73.95545,Entire home/apt,73,15,2,2017-01-10,0.06,1,0 +14485372,Family Friendly 2 Bedrooms 1 Bath w. washer/dryer,89361094,Karen,Manhattan,East Harlem,40.78672,-73.94869,Entire home/apt,289,2,74,2019-06-10,2.09,1,243 +14485877,I call my place Susan's Villa,39158104,Susan,Brooklyn,Canarsie,40.64562,-73.90961,Private room,75,1,10,2019-06-23,0.29,1,162 +14486539,Welcome to your private room in my home,26267606,Hypha,Brooklyn,Prospect Heights,40.67325,-73.96348,Private room,100,3,1,2017-10-08,0.05,1,179 +14486682,Chic 1 br with huge private garden,1206310,Szilvia & Akos,Brooklyn,Bushwick,40.69369,-73.92421,Entire home/apt,120,10,3,2017-06-19,0.09,1,0 +14487072,Private room with own T.V.,52577963,Mark,Queens,Woodhaven,40.69461,-73.8486,Private room,45,5,23,2019-05-05,0.66,6,216 +14488817,Two bedrooms accommodate 4 guests,2766755,Mara,Manhattan,Harlem,40.80901,-73.95267,Private room,399,3,0,,,2,362 +14489610,Cosy Designer Apt - vacation or business,4149263,Red,Brooklyn,Greenpoint,40.73433,-73.95401,Entire home/apt,155,4,31,2019-01-04,0.91,1,24 +14489615,Cozy 1br mins from CASINO JFK & NYC (2nd Apt),8552126,Claudius,Queens,Jamaica,40.66933,-73.77818,Entire home/apt,60,3,60,2019-05-12,1.71,2,0 +14490720,Amazing apartment in NYC,34264721,Chris,Brooklyn,Sheepshead Bay,40.58721,-73.96018,Entire home/apt,100,20,0,,,1,364 +14491976,Long term sublet in Clinton Hill,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95967,Shared room,30,25,15,2019-04-10,0.43,4,78 +14497153,Private bedroom in Crown Heights BK w/ central AC!,19922104,Divya,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.95189,Private room,50,2,0,,,1,0 +14497942,Swimming Pool/ Amazing Layout W&D Doorman 5131,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79377,-73.96586,Entire home/apt,330,30,1,2017-10-30,0.05,96,250 +14499123,Spacious Home 15 Minutes Away From Manhattan,89523770,Ricky & Diana,Queens,Woodside,40.75328,-73.90855,Entire home/apt,300,2,73,2019-06-23,2.14,1,228 +14499377,Adrian's Place: Cozy 1br mins from JFK w/ 55' TV,89526812,Adrian,Queens,St. Albans,40.69654,-73.74893,Private room,65,2,52,2019-07-02,1.93,1,78 +14499400,"Cozy, Creative Loft - Same Block as Graham Ave L",2024671,Ashley,Brooklyn,Williamsburg,40.71459,-73.9468,Entire home/apt,200,10,4,2017-04-27,0.12,1,0 +14500533,Charming brick brownstone w/ backyard (ground flr),70397297,Amy,Brooklyn,Bushwick,40.70269,-73.91426,Entire home/apt,85,3,7,2018-08-20,0.20,1,0 +14500735,"3 Big Bedrooms, Park Best Location!",89541786,Joe,Brooklyn,Prospect-Lefferts Gardens,40.65831,-73.96075,Entire home/apt,139,30,4,2019-05-24,0.11,1,330 +14503754,Cozy Brownstone Apartment in Brooklyn,89579683,Tonya,Brooklyn,Crown Heights,40.6707,-73.94793,Entire home/apt,135,3,39,2018-08-16,1.12,1,311 +14505483,Beautiful King Bedroom in the heart of Ditmas Park,14942902,Bibi,Brooklyn,Flatbush,40.63135,-73.9651,Private room,150,5,0,,,1,358 +14506036,Heart of Harlem Living - NYC to it's fullest!,1215853,Pascal,Manhattan,East Harlem,40.80758,-73.93702,Entire home/apt,140,1,34,2019-07-01,0.98,1,170 +14506086,Cute Lofted Apt.,22847606,Patricia,Staten Island,Prince's Bay,40.52211,-74.18028,Entire home/apt,185,2,15,2018-08-07,0.44,1,0 +14506113,1 BED APT GREAT FOR FAMILIES/COUPLES NYC,89609176,Raul,Queens,Long Island City,40.75542,-73.93294,Entire home/apt,74,5,7,2017-05-21,0.20,1,90 +14507274,Large Bright East Village Flat,849356,Margo,Manhattan,East Village,40.72652,-73.97938,Entire home/apt,162,5,22,2019-07-02,0.64,1,156 +14516582,Bright One BR w/ Balcony | Bohemian Brooklyn Apt,89680675,Mateo,Brooklyn,Bedford-Stuyvesant,40.6909,-73.95333,Entire home/apt,185,5,53,2019-06-30,1.53,1,269 +14518257,Trundle bed in unprivate space,84260530,Sharon,Brooklyn,Flatbush,40.6462,-73.96114,Shared room,400,1,2,2016-09-01,0.06,2,364 +14518363,R & R on Broadway Uptown,69862540,Rina,Manhattan,Washington Heights,40.83885,-73.94161,Entire home/apt,160,3,12,2018-12-31,0.36,3,5 +14519882,Midtown in NYC for International Business Interns,70060476,Nathalia,Manhattan,Hell's Kitchen,40.76328,-73.9928,Entire home/apt,98,60,28,2019-04-26,0.82,1,343 +14520743,SPACIOUS room TIME SQUARE,33518883,Melina,Manhattan,Hell's Kitchen,40.76106,-73.99148,Private room,95,1,23,2017-08-31,0.66,2,0 +14521738,Prospect Park Brooklyn Private Studio Apt,22593050,Ronit,Brooklyn,Prospect-Lefferts Gardens,40.65988,-73.9612,Entire home/apt,59,1,9,2017-10-14,0.27,1,288 +14522175,Bohemian Home in Trendy LES! #10250,25760832,Alexandra,Manhattan,Lower East Side,40.71947,-73.98581,Entire home/apt,200,2,22,2019-01-05,0.64,1,4 +14522432,"New! Huge Terrace, Close to Manhattan, Great View!",1397078,Sam,Brooklyn,Boerum Hill,40.68882,-73.98629,Entire home/apt,200,2,2,2016-09-27,0.06,1,0 +14522716,"Beautiful, spacious one-bedroom in E. Williamsburg",1834630,Max,Brooklyn,Williamsburg,40.70728,-73.94413,Entire home/apt,100,7,26,2019-05-19,0.75,1,1 +14522966,Huge 3BR 2BA lux in LES! 2min walk to Train!,83543734,Kiev,Manhattan,Chinatown,40.71595,-73.98993,Entire home/apt,499,30,70,2019-06-24,2.04,1,0 +14524079,Times Square Best Location Studio (Entire apt),51446345,J.Y.,Manhattan,Midtown,40.75316,-73.9851,Entire home/apt,189,2,164,2019-06-19,4.72,1,206 +14524686,U.S. Open Special: Hospitality Beyond Expectations,89766221,Alan,Queens,Flushing,40.7568,-73.83055,Private room,185,2,25,2017-08-16,0.71,2,0 +14527923,Mini suite minutes from Central Park,20521058,Owen,Manhattan,East Harlem,40.79631,-73.94772,Private room,79,3,28,2017-10-17,0.80,1,0 +14529806,Designer Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80637,-73.94544,Private room,149,30,84,2019-05-18,2.43,4,337 +14530298,Upper West Side. Charming 2 Bedroom,595368,Joel,Manhattan,Upper West Side,40.79224,-73.97408,Entire home/apt,250,30,0,,,1,358 +14532445,Private Room,89855730,Rory,Manhattan,East Village,40.72661,-73.97894,Private room,105,5,4,2017-10-29,0.12,1,0 +14532520,Sunny room in Bedstuy w/fire escape,86629070,Giuseppe,Brooklyn,Bedford-Stuyvesant,40.69168,-73.9406,Private room,45,3,5,2019-02-08,0.15,1,220 +14533013,"Cozy, Clean ""Like Home"" Full 1 Bdrm",89873550,TiffanyJoy,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95188,Entire home/apt,125,3,38,2018-12-18,1.10,2,197 +14534676,"Private room in SUNNY gorgeous apt in Brooklyn,NYC",7156036,Ahmed,Brooklyn,Flatbush,40.64528,-73.9612,Private room,95,6,2,2019-01-02,0.06,1,249 +14535001,"Astoria, NY. 1 bedroom in a 2bed/1bath",89897015,Lesley,Queens,Ditmars Steinway,40.77443,-73.90758,Entire home/apt,75,1,0,,,1,0 +14535633,Spread out in Manhattan! :),89905737,Eric,Manhattan,Washington Heights,40.84723,-73.94045,Private room,30,14,1,2016-10-29,0.03,1,0 +14536003,Comfort in Manhattan,40238258,Francesca,Manhattan,Upper East Side,40.77715,-73.94802,Private room,175,4,7,2019-05-23,0.21,1,365 +14536056,3BR - Sunny and Vibrant Brooklyn loft,4120523,Aurelien,Brooklyn,Williamsburg,40.70512,-73.9348,Entire home/apt,149,2,28,2019-06-03,0.83,2,2 +14536245,Downtown NYC Studio Apt. near World Trade Center,30283594,Kara,Manhattan,Financial District,40.70782,-74.01525,Entire home/apt,189,30,1,2019-06-22,1,121,364 +14538181,Spacious 1 BR in a 2 BR apartment,9622750,Taran Pal,Manhattan,Kips Bay,40.74202,-73.98032,Private room,95,5,1,2016-09-04,0.03,3,0 +14539106,Queen Airbed studio female/couple,77001085,Avantika,Manhattan,Upper West Side,40.80449,-73.9678,Shared room,61,1,5,2016-12-20,0.15,2,0 +14541203,Independent 2 BR apt. close to all attractions,9622750,Taran Pal,Manhattan,Kips Bay,40.74191,-73.98112,Entire home/apt,190,5,0,,,3,0 +14547628,Comfy stay in the heart of NYC!,8946866,Megan,Manhattan,West Village,40.73546,-74.00263,Shared room,80,1,37,2017-11-05,1.05,1,0 +14547982,Modern Room with private bathroom in spacious apt,27427335,Tyler,Brooklyn,Greenpoint,40.71937,-73.95332,Private room,99,3,3,2017-10-28,0.13,1,0 +14548280,Comfy 1 bedroom in spacious lower east side apt,10013093,Shauna,Manhattan,East Village,40.72412,-73.98667,Private room,84,2,1,2016-08-28,0.03,1,0 +14548579,Brand New One Bedroom In Prime Bushwick,52441724,Asaf,Brooklyn,Bushwick,40.69834,-73.92755,Entire home/apt,125,1,19,2019-06-29,0.55,1,281 +14549011,room available for 2 weeks in shared accomadation,90034926,Natalie,Manhattan,Lower East Side,40.71311,-73.98482,Private room,43,1,0,,,1,0 +14549226,"Charming & Cozy Private Apt near Prospect Park, BK",89954209,A.J.,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95036,Entire home/apt,107,3,82,2019-06-20,2.34,1,284 +14549287,Convenient 1-BR in the Heart of LES,11302433,Joan,Manhattan,Lower East Side,40.71906,-73.98836,Entire home/apt,190,3,9,2019-01-02,0.28,1,188 +14551432,1 BR across from Prospect Park! / Windsor Terrace,3155648,Melanie,Brooklyn,Windsor Terrace,40.65271,-73.97361,Entire home/apt,125,2,24,2019-04-22,0.68,1,0 +14551508,Quiet private room for 1 or 2 people,89852528,Florentino,Queens,Ridgewood,40.70645,-73.90578,Private room,45,1,38,2018-12-01,1.11,1,0 +14551515,Large Bedroom in Bushwick,80771146,Tetyana,Brooklyn,Bushwick,40.696,-73.92964,Private room,65,3,0,,,1,0 +14551896,"Awesome, Sunny, and Spacious 1BR Apartment",22265887,Danielle,Manhattan,Harlem,40.80933,-73.945,Entire home/apt,174,5,6,2018-09-21,0.28,1,8 +14552533,Studio in the Best location in Manhattan,42415696,Michael,Manhattan,West Village,40.73175,-74.00419,Entire home/apt,170,1,127,2019-06-24,3.61,1,1 +14553862,"Spacious, Clean Upper West Side Apartment",2005927,Josh,Manhattan,Upper West Side,40.79873,-73.96782,Entire home/apt,200,1,2,2016-09-25,0.06,1,0 +14554093,Cozy West Village Studio with Beautiful Rooftop,1258319,Katherine,Manhattan,West Village,40.73933,-74.00241,Entire home/apt,250,60,4,2018-04-20,0.12,1,0 +14555269,Spacious bedroom in LES,4825815,Peter,Manhattan,Lower East Side,40.71879,-73.98362,Private room,95,4,9,2017-05-15,0.26,1,0 +14555440,Very Near Times Square! Perfect Location in NYC,57944900,Jorge,Manhattan,Hell's Kitchen,40.76104,-73.98831,Private room,250,2,66,2018-12-10,1.94,1,89 +14556236,Riverdale - 2 Pvt rooms for Ladies Only,17365319,Fahmida,Bronx,Kingsbridge,40.88444,-73.90583,Private room,80,2,2,2017-01-01,0.06,2,220 +14556587,Studio Apartment near Columbia Uni,77001085,Avantika,Manhattan,Upper West Side,40.80191,-73.9688,Entire home/apt,160,2,2,2016-08-30,0.06,2,0 +14556634,Brooklyn Nook,9974520,Michael,Brooklyn,Greenpoint,40.72804,-73.94599,Private room,45,2,1,2016-08-23,0.03,1,0 +14556661,"Sunny 1BR near Central Park, Columbia University",90125781,Sebastian,Manhattan,Harlem,40.80534,-73.95647,Entire home/apt,70,21,1,2016-11-04,0.03,1,0 +14557504,Cozy & Clean #5,23533897,Fatou,Brooklyn,Crown Heights,40.67479,-73.9519,Private room,75,1,22,2019-06-22,0.63,7,319 +14557713,Simple Williamsburg room in prime location!,14684457,Christine,Brooklyn,Williamsburg,40.71521,-73.96164,Private room,35,3,2,2016-08-31,0.06,1,0 +14566213,Geodesic Dome,39143718,Sean,Brooklyn,Bedford-Stuyvesant,40.68355,-73.95702,Entire home/apt,200,5,21,2019-05-23,0.60,2,364 +14568352,Charming 1 BD near train 3 stops from Manhattan,22886163,Lucy And Devin,Brooklyn,Sunset Park,40.65044,-74.00986,Entire home/apt,95,3,13,2019-05-06,0.38,1,11 +14568858,"Bright, charming luxury 1 BR with amazing rooftop",10441070,Rebecca,Brooklyn,Greenpoint,40.72038,-73.94233,Entire home/apt,250,4,4,2017-10-31,0.12,1,0 +14569577,Come Explore the Big Apple!,90104417,Sueann,Staten Island,Tottenville,40.51133,-74.23803,Entire home/apt,275,4,29,2019-06-03,0.83,2,313 +14569881,Artist Loft Bushwick,65800377,Benny,Brooklyn,Bushwick,40.70087,-73.92351,Private room,70,2,90,2019-06-23,2.57,3,33 +14570408,Private room in 2 BR on Woodside,70769144,Byungdo,Queens,Woodside,40.75105,-73.90152,Private room,30,7,1,2016-12-01,0.03,1,0 +14570492,6 Guests LUXURY MANHATTAN Condo With ROOFTOP!!!,90258665,Jason,Manhattan,Harlem,40.80742,-73.95205,Entire home/apt,289,3,5,2019-03-28,0.53,1,365 +14570963,Gorgeous Modern Penthouse Terrace by Central Park,47984525,Jennie,Manhattan,Upper West Side,40.78783,-73.97422,Entire home/apt,375,1,34,2019-05-27,0.98,1,7 +14571451,GREAT studio in heart of Manhattan PRIME LOCATION,32454701,Maria,Manhattan,East Village,40.72824,-73.97824,Entire home/apt,129,1,198,2019-07-06,5.63,1,21 +14571686,Beautifull Studio Apt. by Central Park,30283594,Kara,Manhattan,Midtown,40.76641,-73.98163,Entire home/apt,219,30,0,,,121,189 +14575253,Sunny Bushwick space with yoga loft,74471200,Austin,Brooklyn,Bushwick,40.69485,-73.92948,Private room,81,1,10,2017-09-18,0.29,1,35 +14576763,Big Private Room 2 Blocks Away from Time Square,51256572,Chris,Manhattan,Hell's Kitchen,40.75797,-73.991,Private room,75,1,2,2018-02-23,0.12,1,0 +14577253,Summer home for families with baby + toddler,387756,Miguel,Manhattan,Chelsea,40.74725,-73.99515,Entire home/apt,250,2,3,2018-12-30,0.13,1,358 +14577490,HUGE Studio-sized bedroom with own bath,10549144,Anne,Manhattan,Upper West Side,40.7991,-73.96963,Private room,99,5,42,2019-05-17,1.21,2,29 +14577930,2 Bedroom 2 Bathroom Upper West,10549144,Anne,Manhattan,Upper West Side,40.80065,-73.96944,Entire home/apt,225,5,18,2019-04-24,0.58,2,96 +14578109,Location Location - Spacious Room in Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.75912,-73.98985,Private room,106,1,63,2019-05-12,1.84,2,19 +14579123,Sunny & inviting BK Room 30mins from Manhattan.,76765350,Perin,Brooklyn,Bedford-Stuyvesant,40.68465,-73.95644,Private room,55,5,37,2019-06-30,1.16,2,72 +14582793,Nice and comfortable 2/B Apartment,1094833,Meng,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92672,Entire home/apt,110,2,0,,,1,0 +14586448,★ Luxury FiDi Studio - Elevator and Gym ★,90270616,Shaun,Manhattan,Financial District,40.70617,-74.01529,Entire home/apt,279,3,5,2016-12-31,0.15,1,0 +14587044,Entire APT in Heart of Harlem | Hamilton Heights,2887402,Dominic,Manhattan,Harlem,40.82896,-73.94799,Entire home/apt,94,1,11,2018-02-18,0.31,1,0 +14587950,Assemblage Place,200675,Li-Ann,Brooklyn,Clinton Hill,40.68605,-73.96116,Entire home/apt,220,3,12,2019-06-23,0.39,1,19 +14588156,Historic Brooklyn Brownstone,154866,Robert,Brooklyn,Crown Heights,40.67275,-73.94555,Entire home/apt,110,4,75,2019-06-29,2.26,1,48 +14588464,Spacious and Clean Get Away,90453529,Maria,Staten Island,South Beach,40.59116,-74.08174,Entire home/apt,275,4,24,2019-07-06,0.70,1,127 +14590476,Luxury Full-Floor 2 Bed Loft w/Huge Private Roof,90256030,Andrew,Manhattan,Chelsea,40.74775,-73.99167,Entire home/apt,999,2,1,2016-10-12,0.03,1,0 +14590480,AMAZING bedroom in the Heart of NYC,90477848,Theodore,Manhattan,Hell's Kitchen,40.76943,-73.9872,Private room,125,1,37,2019-06-06,1.06,1,310 +14591298,Master bedroom/private bathroom with Balcony,12188270,Adam,Brooklyn,Bedford-Stuyvesant,40.68511,-73.95452,Private room,90,3,5,2018-08-27,0.15,1,83 +14592009,1-bed Apartment in the East Village/Union Square,46723457,Elisabeth,Manhattan,East Village,40.73048,-73.98689,Entire home/apt,122,5,13,2017-12-29,0.42,1,0 +14594286,On Broadway & 3 stops to Times Square,55567227,Neida,Manhattan,Harlem,40.82957,-73.94535,Private room,60,3,89,2019-07-07,2.59,2,37 +14594441,Excellent Studio Space,49562545,Ella,Brooklyn,Williamsburg,40.70623,-73.94951,Entire home/apt,99,1,187,2019-06-23,5.43,2,39 +14596236,Brooklyn - Bushwick - NYC #2,81274648,Ming,Brooklyn,Bushwick,40.69664,-73.92921,Private room,48,2,91,2019-06-23,2.60,4,21 +14601503,Amazing 2 BR Washington Square Park/Soho,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72884,-74.00056,Entire home/apt,159,30,7,2019-04-30,0.25,91,280 +14602894,1 Bedroom steps from Bloomingdale's and Park,61391963,Corporate Housing,Manhattan,Upper East Side,40.76141,-73.96376,Entire home/apt,117,30,7,2019-05-31,0.22,91,312 +14607289,Airy Bedroom in Bushwick,25642456,Chasity,Brooklyn,Bushwick,40.68987,-73.92241,Private room,45,1,4,2018-08-02,0.34,1,0 +14608127,"Vibey Apartment, Empire State Bldg & Times Square!",90646927,Nicole,Manhattan,Kips Bay,40.74496,-73.97867,Private room,100,2,11,2019-06-23,2.02,1,20 +14608350,Bedroom in the <3 of Astoria close to the city,45986534,Tina,Queens,Astoria,40.76792,-73.91191,Private room,40,4,23,2019-04-23,0.73,1,30 +14609804,"Large, Sunny and Clean Studio Apt.in Chelsea",5111513,Jamie J.,Manhattan,Chelsea,40.74945,-73.99742,Entire home/apt,175,7,26,2019-06-18,0.80,1,188 +14610596,Private Room Couch close to Central Park,83586204,Doe2930,Manhattan,East Harlem,40.79281,-73.93955,Private room,40,1,19,2019-05-17,0.90,1,18 +14611399,Lovely studio,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.68446,-73.92998,Entire home/apt,85,1,113,2019-06-18,3.25,3,59 +14613942,Private room in a luxury building in DUMBO!,34161028,Agnese,Brooklyn,Downtown Brooklyn,40.69858,-73.98595,Private room,100,75,6,2018-06-03,0.17,3,0 +14614708,LOVELY Studio in Heart of Soho,30443527,Angelica,Manhattan,Greenwich Village,40.72936,-73.99911,Entire home/apt,195,4,17,2018-10-21,0.49,1,188 +14615541,Brooklyn @ Best ✨ cozy 1br garden,65595344,Shanise,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93344,Shared room,65,1,3,2017-05-28,0.09,1,0 +14616367,"Gem of Brooklyn, 3 bedroom private condo",14433834,Gary,Brooklyn,Crown Heights,40.67228,-73.92707,Entire home/apt,250,4,61,2019-07-02,1.89,1,324 +14616377,Perfect Location 2bd w Bklyn Charm,83523066,Jim,Brooklyn,Park Slope,40.68082,-73.97713,Entire home/apt,170,3,120,2019-06-11,3.51,2,96 +14619860,1 bedroom in Tribeca,6321996,Ana,Manhattan,Tribeca,40.71581,-74.00616,Entire home/apt,440,30,1,2017-11-30,0.05,1,87 +14622053,Cozy private room and bathroom in Brooklyn,90765758,Eric,Brooklyn,Sunset Park,40.64293,-74.01786,Private room,58,3,106,2019-06-30,3.06,1,3 +14624028,Bright Bedroom in Brooklyn!,16205633,Gea,Brooklyn,Kensington,40.64007,-73.97067,Private room,45,7,5,2018-08-19,0.14,1,343 +14624128,Room on the East River w/ balcony!,10098825,Casey,Manhattan,East Harlem,40.78525,-73.94178,Private room,65,1,25,2018-06-30,0.72,1,0 +14625676,Sunny & Spacious 3BR Bklyn Duplex w Private Garden,1239272,Michelle,Brooklyn,Gowanus,40.6702,-73.9896,Entire home/apt,299,2,35,2019-06-09,1.02,1,261 +14627598,Large bedroom in Harlem available,11911230,Eric,Manhattan,Harlem,40.82736,-73.95113,Private room,100,1,1,2018-10-07,0.11,1,363 +14627817,"Fullszbd, prvt room & bth, kitchen & living room",90807417,Gilbert,Manhattan,East Harlem,40.79505,-73.94204,Private room,99,1,14,2017-06-17,0.41,1,50 +14627819,Room on 5th Ave between Washington Sq and Union Sq,8525424,Rafael,Manhattan,Greenwich Village,40.73383,-73.99509,Private room,120,4,2,2017-01-01,0.06,1,0 +14628080,Elegant Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80622,-73.94622,Entire home/apt,149,30,86,2019-06-03,2.51,4,220 +14628409,WINTER PROMO! BKLN - LG 2bd/ modern/comfy/CLEAN!,7978333,Chana & Chike,Brooklyn,Greenpoint,40.72976,-73.95189,Entire home/apt,150,2,154,2019-06-30,4.50,1,271 +14629018,1 Bedroom Apt All Yours In Astoria!,59503891,B,Queens,Long Island City,40.74829,-73.93253,Entire home/apt,100,2,1,2016-10-10,0.03,1,0 +14629878,Shared Penthouse,46502890,Jackie,Queens,Richmond Hill,40.69858,-73.82893,Private room,60,30,1,2016-08-31,0.03,2,363 +14632080,California Vibes in NYC,90839719,Amy,Manhattan,Chinatown,40.7149,-73.99063,Entire home/apt,153,3,82,2018-12-29,2.42,1,0 +14633272,South Williamsburg,43810721,Mikey,Brooklyn,Williamsburg,40.71082,-73.95736,Private room,50,1,15,2019-04-18,0.44,1,0 +14633324,Modern Luxury Apartment in Heart of Williamsburg,90848714,Amir,Brooklyn,Williamsburg,40.71336,-73.96172,Entire home/apt,172,2,20,2019-06-27,0.58,1,7 +14633924,Designer Basement Apt by the Park 新精緻近公園舒適含窗半地下公寓,39648442,A,Queens,Flushing,40.75005,-73.81145,Entire home/apt,109,1,176,2019-06-22,5.07,2,316 +14646562,Velvet Retreat in the West Village,22218694,Lea,Manhattan,West Village,40.73455,-74.006,Entire home/apt,180,2,100,2019-07-01,2.90,2,344 +14648556,"14 min to Columbus Circle, 20 min to Times Square",597901,Johannes,Manhattan,Harlem,40.82663,-73.94624,Private room,60,1,55,2019-06-22,1.59,1,57 +14648838,Large 2 Story 2 Bedroom Corner Unit On Top Floor,33403059,Joshua,Brooklyn,Bushwick,40.69901,-73.93649,Entire home/apt,175,20,11,2018-10-09,0.32,3,0 +14650584,Private room in Sunnyside Gardens,2964414,Josefina,Queens,Sunnyside,40.74615,-73.91704,Private room,98,2,1,2016-08-28,0.03,1,88 +14651111,"Laid Back, Spacious 2BR All Yours!",45247861,Chris,Brooklyn,Crown Heights,40.67447,-73.94665,Entire home/apt,150,1,0,,,1,0 +14653800,Central Park South 2 Bedroom 1 Bathroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76552,-73.97661,Entire home/apt,199,29,2,2018-10-05,0.07,31,148 +14653831,Private room. Full size bed. 3rd floor. Cooper Sq,29824461,Labib,Manhattan,NoHo,40.72629,-73.99237,Private room,75,2,1,2016-11-27,0.03,1,0 +14654573,Independent apt in 2 family pvt. home,37328457,Passang,Queens,Sunnyside,40.74202,-73.92479,Entire home/apt,125,2,122,2019-06-20,3.53,1,214 +14654676,Double Twin Spacious Room In Small,17938076,Tyreq,Staten Island,Mariners Harbor,40.6363,-74.15911,Private room,200,1,0,,,1,365 +14655004,Inwood heights,91020843,Orquid,Manhattan,Inwood,40.86316,-73.92627,Shared room,300,1,0,,,2,363 +14655908,"Historic Brownstone (3Flrs). Pvt Deck, Garden,Park",89724008,Richard,Manhattan,Harlem,40.81919,-73.9443,Entire home/apt,750,3,0,,,1,87 +14661553,Bright and clean room in a quaint neighborhood,515095,Mei,Brooklyn,Carroll Gardens,40.67954,-73.99935,Private room,100,2,93,2019-06-23,2.78,2,74 +14661771,Museum Mile,5420713,Alice,Manhattan,Upper East Side,40.78517,-73.95678,Entire home/apt,225,5,16,2019-06-14,0.47,1,364 +14663344,Large room at luxury apartment bldg Times Square,91092037,Ozgur,Manhattan,Hell's Kitchen,40.76072,-73.98792,Private room,120,1,3,2018-01-01,0.09,1,0 +14665418,Spacious light drenched 3 bedroom,22935573,Matias,Brooklyn,Williamsburg,40.71433,-73.95857,Entire home/apt,295,2,78,2019-06-27,2.27,1,309 +14666364,Stylish 1 BD in Garment District,24898836,Trevor,Manhattan,Hell's Kitchen,40.75483,-73.99468,Entire home/apt,160,3,21,2019-06-24,0.60,1,3 +14666899,Modern Room in Great Location (Bushwick),91131716,Colin,Brooklyn,Bushwick,40.70061,-73.92721,Private room,40,3,2,2016-08-27,0.06,1,0 +14668622,Peaceful and Quiet in the heart of TriBeca,4613888,Daniel,Manhattan,Tribeca,40.71705,-74.00935,Entire home/apt,350,1,0,,,1,327 +14670074,Sunny Room in heart of Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76388,-73.98874,Private room,110,1,40,2019-05-17,1.16,3,345 +14670215,The Mahogany Suite-The Solo Adventurer-ll,52862385,The Mahogany Suite(Studio Apartment,Brooklyn,East Flatbush,40.66271,-73.93498,Private room,43,32,32,2019-05-13,0.93,3,345 +14670685,1 br available in a Lovely 2br Apt,751743,Lalla,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95166,Private room,50,3,59,2018-09-21,1.71,1,0 +14672067,Cozy spacious Brooklyn apartment!,89532341,Safiyah,Brooklyn,East Flatbush,40.6453,-73.94669,Entire home/apt,85,93,19,2017-05-21,0.54,1,89 +14672524,Awesome Private Room in Historic Village of Harlem,91194780,Rocky,Manhattan,Harlem,40.80048,-73.94864,Private room,56,2,79,2019-06-13,2.38,1,56 +14672920,Lovely stay next to Prospect Park,9030221,Alex,Brooklyn,Prospect-Lefferts Gardens,40.65563,-73.96052,Private room,73,2,137,2019-05-23,3.94,1,0 +14682338,Harlem Oasis,20872245,Ryan,Manhattan,Harlem,40.82626,-73.93831,Private room,175,3,37,2019-06-19,1.06,1,19 +14683118,Queen Bed/Awesome Space/Sauna & Spa Amenities,89985620,Annette C,Brooklyn,Flatlands,40.62379,-73.92995,Private room,49,2,71,2019-07-05,3.10,3,308 +14683956,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,2856748,Ruchi,Manhattan,Upper East Side,40.7608,-73.96136,Entire home/apt,175,30,0,,,49,365 +14683983,RATED ★★★★★ IN THIS 2 BEDROOM PRESIDENTIAL SUITE,64065593,ResortShare5,Manhattan,Midtown,40.75294,-73.9733,Entire home/apt,672,2,23,2019-05-15,0.87,13,268 +14684834,LG. RED AND WHITE COOL OASIS ROOM.,20134231,Paulette,Queens,Springfield Gardens,40.66383,-73.764,Private room,44,2,36,2019-06-19,1.03,3,357 +14685187,Quaint garden apartment in Clinton Hill,4961381,Ashley,Brooklyn,Clinton Hill,40.684,-73.96368,Private room,130,1,3,2019-06-08,0.45,1,299 +14685276,Gorgeous Loft,1459260,Jorge,Brooklyn,Bedford-Stuyvesant,40.6907,-73.96019,Entire home/apt,132,4,92,2019-06-16,2.69,1,260 +14686954,"Cozy master room,17mins to midtown by EFMR7 trains",40711894,Jessica,Queens,Elmhurst,40.73958,-73.88784,Private room,55,1,54,2019-05-22,2.14,4,0 +14689860,Sunny 1Bedroom in the ❤ of the city,74919443,Josh,Manhattan,Kips Bay,40.74207,-73.9824,Entire home/apt,250,1,13,2017-05-03,0.37,1,0 +14690331,Unique Designer 1BR in Best NYC Neighborhood,27984357,Patrick,Manhattan,West Village,40.73316,-74.00782,Entire home/apt,300,4,24,2019-06-20,0.70,1,61 +14691805,Madison home-,91359302,Kent,Brooklyn,Bedford-Stuyvesant,40.68895,-73.92146,Private room,35,1,35,2019-05-01,1.00,1,0 +14692426,Big & Bright Hamilton Heights Manhattan Bedroom,91364768,Richard,Manhattan,Harlem,40.82722,-73.9431,Private room,100,4,42,2019-06-29,1.37,1,62 +14692459,2BR fully furnished in the UES - minimum 30 days,23772724,Elem,Manhattan,Upper East Side,40.78316,-73.94662,Entire home/apt,175,30,4,2018-08-04,0.14,15,343 +14693952,Private Small Room 4,59529529,Han,Manhattan,Hell's Kitchen,40.7619,-73.995,Private room,75,1,205,2019-07-07,5.89,6,179 +14694447,near metro,91292951,Pengfei,Queens,Elmhurst,40.73259,-73.88083,Private room,30,1,0,,,1,15 +14694588,"Spacious Studio Room in Flushing, Queens",91381742,Pearl,Queens,Flushing,40.75577,-73.83263,Private room,60,2,42,2019-05-19,1.23,1,355 +14695540,Private Suite · Sparkling Clean · Memory Foam,12061634,Sarah,Brooklyn,Sunset Park,40.64737,-74.01357,Private room,47,2,60,2019-06-24,1.71,1,4 +14696215,Entire 1 Bedroom in Gramercy,91393670,William,Manhattan,Kips Bay,40.73903,-73.98267,Entire home/apt,200,2,3,2018-09-24,0.29,1,0 +14696542,"Bright, Modern, Cozy Room in Brooklyn Artist's Apt",91147323,Kaitlyn,Brooklyn,Bedford-Stuyvesant,40.69918,-73.94513,Private room,60,2,159,2019-07-06,4.56,1,153 +14698446,纽约之家(SunnyHome5),45600001,Amy,Queens,Flushing,40.7445,-73.83172,Private room,50,1,31,2019-06-16,0.91,3,79 +14699186,Spacious 1 bedroom with Private Deck with Grill,31483654,Marcus,Brooklyn,Kensington,40.64535,-73.9738,Entire home/apt,100,3,2,2016-11-15,0.06,1,0 +14703733,Gorgeous Brooklyn Studio Apartment,56279680,Abe,Brooklyn,Prospect-Lefferts Gardens,40.66349,-73.94222,Entire home/apt,80,28,9,2019-04-28,0.26,1,219 +14705110,Amazing Luxury located in the Middle of Manhattan!,3898624,Gene,Manhattan,Theater District,40.76112,-73.98473,Private room,125,5,91,2019-07-02,2.63,1,143 +14705209,Cozy Studio in Midtown,7104133,Shruti,Manhattan,Murray Hill,40.74993,-73.977,Entire home/apt,125,2,32,2019-06-19,0.91,1,0 +14706784,Friendly and well-located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6681,-73.97726,Shared room,78,1,46,2018-02-03,1.38,2,0 +14707466,Lovely Bijou!! 5MIN.to MANHATTAN,1705071,Nika,Queens,Long Island City,40.74493,-73.94679,Private room,75,1,86,2019-06-19,2.63,2,337 +14707648,Surfside Studio,10910171,Melissa,Queens,Rockaway Beach,40.58634,-73.81867,Entire home/apt,150,1,144,2019-07-07,4.13,2,134 +14707675,1 Person Only 1 Bdrm LES/East Village HugeDeck,2859516,Raymond,Manhattan,Lower East Side,40.72163,-73.98715,Private room,100,2,165,2019-06-17,4.77,2,2 +14708459,"Bright, Modern, Safe, Clean Apartment in Astoria",35375,Savannah,Queens,Astoria,40.76137,-73.91109,Entire home/apt,200,2,0,,,2,363 +14709693,A Warm Friendly Host for Everlast,91510178,Rahim,Manhattan,Inwood,40.86238,-73.92806,Entire home/apt,65,3,0,,,1,0 +14710763,"Home Base, Minutes to Manhattan!!!",91522394,Angelika,Brooklyn,Bedford-Stuyvesant,40.69532,-73.94407,Entire home/apt,145,2,133,2019-06-24,3.83,1,178 +14711796,Sunny huge FiDi loft w water views,424878,Julia,Manhattan,Financial District,40.70483,-74.01545,Entire home/apt,180,4,17,2019-06-08,0.67,1,203 +14712466,Comfortable place for short term stay.,42764722,Samuel,Brooklyn,East Flatbush,40.65446,-73.92613,Shared room,99,100,1,2016-10-10,0.03,1,0 +14713599,Williamsburg Dream Loft,5213766,Itay,Brooklyn,Williamsburg,40.70774,-73.94819,Private room,120,2,157,2019-07-01,4.54,1,68 +14713835,Upper Manhattan,91020843,Orquid,Manhattan,Inwood,40.86438,-73.92787,Private room,227,1,0,,,2,365 +14714093,Beautiful Apartment in the Heart of Harlem,29893675,Wendell,Manhattan,Harlem,40.82315,-73.93726,Private room,90,3,86,2018-06-18,2.47,2,38 +14714894,Perfect master bedroom in Brooklyn garden duplex,3103656,Laurel,Brooklyn,Bushwick,40.69174,-73.91141,Private room,99,3,3,2018-07-25,0.16,2,332 +14716077,"Spacious bedroom in Greenpoint, Brooklyn",34924990,Ashli,Brooklyn,Greenpoint,40.73374,-73.95617,Private room,55,20,3,2016-08-29,0.09,1,0 +14716155,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93696,Private room,55,30,85,2019-05-05,2.45,4,232 +14716403,Large room in Bushwick Loft!,70724038,Anna,Brooklyn,Williamsburg,40.70525,-73.93281,Private room,80,1,16,2018-03-25,0.51,1,0 +14716586,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69784,-73.93694,Private room,40,30,84,2019-04-20,2.53,4,284 +14721931,Stellar Midtown Apt Extended Stay,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76142,-73.99248,Entire home/apt,133,30,2,2018-10-31,0.15,91,4 +14722273,Midtown 3 BR Elevator - Best Location,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76071,-73.99032,Entire home/apt,175,30,4,2019-03-31,0.21,91,138 +14723039,Brooklyn Duplex in a beautiful brownstone,91645690,Shay & Anat,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95885,Entire home/apt,163,2,33,2019-06-09,1.08,1,255 +14723166,Spacious studio in amazing location,59954257,Sara,Manhattan,Gramercy,40.73711,-73.98573,Entire home/apt,250,5,7,2018-07-05,0.20,1,0 +14723697,"3-Bedroom Apartment, 10 Minutes from Manhattan",864735,Jason,Queens,Astoria,40.75539,-73.91709,Entire home/apt,117,30,7,2019-04-04,0.23,8,241 +14724015,Swimming Pool! 2 Bed 2 bath Amazing Layout!5143,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79371,-73.96708,Entire home/apt,295,30,2,2018-04-01,0.06,96,250 +14724181,Massive Brownstone Close to Express Trains,91657065,Milton,Manhattan,Harlem,40.8305,-73.9437,Private room,105,2,38,2019-01-01,1.09,1,0 +14724479,Clean & Amazing Semi Private NYC Room by #1 Train,30499687,Jovanni & Natasha,Bronx,Fieldston,40.89581,-73.89778,Private room,59,2,7,2017-04-17,0.21,2,0 +14726498,Inwood Manhattan everything close!!,91678787,Waldy,Manhattan,Inwood,40.86763,-73.91792,Private room,60,3,83,2019-05-31,2.39,1,300 +14726699,Private Ground Floor Studio Apartment Near JFK/LGA,66949758,Shanie,Queens,Jamaica,40.69961,-73.81264,Entire home/apt,49,1,79,2019-07-01,3.01,2,63 +14728630,Central Park Slope Garden Apartment,8066318,Declan,Brooklyn,Park Slope,40.66894,-73.98516,Entire home/apt,141,4,33,2018-11-19,0.96,1,159 +14728788,Cozy & Affordable Room for 2,81762491,Via,Brooklyn,Sheepshead Bay,40.58615,-73.94784,Private room,59,1,13,2018-07-30,0.38,1,332 +14730708,Breathtaking City Views 3 Bed Apt. in Lincoln Sq!,836168,Henry,Manhattan,Upper West Side,40.7791,-73.98182,Entire home/apt,3000,30,8,2016-12-10,0.24,11,365 +14733932,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69568,-73.93384,Private room,50,30,97,2019-05-04,2.79,4,312 +14737992,Large bedroom in Luxury bldg West Harlem,91804427,Laura,Manhattan,Harlem,40.82483,-73.95394,Private room,41,14,25,2019-06-05,0.75,1,6 +14738709,Modern furnished 2-Bedroom NYC Apartment!,30283594,Kara,Manhattan,Hell's Kitchen,40.76025,-73.99811,Entire home/apt,399,30,3,2018-11-15,0.10,121,185 +14741343,Modern Studio Apartment in perfect location!,6658730,Haley,Brooklyn,Prospect-Lefferts Gardens,40.65549,-73.96183,Entire home/apt,189,3,1,2016-10-07,0.03,1,83 +14741623,Cozy Private Bedroom and Bathroom in Brooklyn,39181402,Sarah,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95252,Private room,48,3,67,2019-06-22,1.95,1,70 +14743469,Bensonhurst Gem,19101984,Tuan-Phi,Brooklyn,Bensonhurst,40.60749,-73.99225,Entire home/apt,49,1,1,2016-08-28,0.03,1,0 +14744425,An Apartment for Families near by Tom's Restaurant,11158576,Mustafa,Manhattan,Morningside Heights,40.80429,-73.96499,Entire home/apt,175,2,2,2016-09-10,0.06,1,0 +14744735,Artist Loft w/ AMAZING views of Manhattan,943367,Tracie,Brooklyn,Greenpoint,40.7272,-73.94374,Private room,55,14,4,2018-08-15,0.12,1,17 +14744794,Hamilton Heights Sunny Bedroom,91874222,Laura,Manhattan,Harlem,40.82475,-73.9507,Private room,53,1,4,2017-08-20,0.16,1,0 +14744912,"sunny airy bohemian rm, private bath! hip 'shwick",948164,Theodora,Brooklyn,Bushwick,40.7014,-73.91798,Private room,80,2,4,2018-04-30,0.12,1,0 +14745847,Beautifu large studio in the heart of Manhattan,39939354,Roberto,Manhattan,Midtown,40.75797,-73.97004,Entire home/apt,150,7,29,2019-06-22,0.86,1,31 +14746873,"COZY KING SIZE BED, NEAR AIRPORTS",51550484,Zhur,Queens,Richmond Hill,40.69621,-73.84532,Private room,67,2,8,2018-12-23,0.23,2,337 +14747893,"HUGE ROOM,PRIVATE BATH FORT GREENE/CLINTON HILL",91909024,Jason,Brooklyn,Clinton Hill,40.68548,-73.96625,Private room,80,4,2,2016-11-07,0.06,1,0 +14749932,PRIME WILLIAMSBURG ROOM. ONE STOP FROM MANHATTAN,13066224,Valentina,Brooklyn,Williamsburg,40.71906,-73.95726,Private room,78,1,35,2019-06-23,1.01,1,247 +14756273,"Large private room in Astoria, 20 mins to mid-town",68276808,Summer,Queens,Ditmars Steinway,40.77392,-73.91678,Private room,50,2,10,2018-08-08,0.46,1,0 +14756913,Beautiful loft apt. on quiet Bed-Stuy block,128431,Valentina,Brooklyn,Bedford-Stuyvesant,40.68112,-73.9302,Entire home/apt,120,3,59,2019-06-22,1.73,1,57 +14756990,Bushwick Suite,92002479,Dee,Brooklyn,Bushwick,40.68891,-73.92084,Private room,75,1,6,2018-11-28,0.17,2,0 +14757774,Sunny room in PRIME Brooklyn!,6803612,Jessica,Brooklyn,Bushwick,40.70497,-73.9233,Private room,60,4,3,2018-09-23,0.09,1,0 +14759511,Big bedroom in the heart of Greenpoint,54892756,Nathaniel,Brooklyn,Greenpoint,40.73271,-73.95536,Private room,75,4,1,2016-09-14,0.03,1,0 +14759843,Cozy studio In Bed Stuy Brooklyn,14438618,Rodney,Brooklyn,Bedford-Stuyvesant,40.68253,-73.9501,Entire home/apt,99,1,31,2018-09-20,0.89,1,345 +14759851,Cozy room in convenient Midtown West location,8048669,Lin,Manhattan,Hell's Kitchen,40.76144,-73.98849,Private room,100,2,16,2019-05-16,0.47,1,6 +14759888,Sunny and Spacious Bedroom in the East Village,6049738,Fayth,Manhattan,East Village,40.73029,-73.98725,Private room,95,4,9,2018-03-16,0.26,2,0 +14760211,"Madison Ave Palace - Washer Dryer, Outdoor Deck",61391963,Corporate Housing,Manhattan,Upper East Side,40.78321,-73.95646,Entire home/apt,200,30,4,2019-04-30,0.21,91,311 +14760402,2br Apartment w/ Balcony & Free Airport Pickup!,83627325,Jared,Queens,Sunnyside,40.74634,-73.9179,Entire home/apt,249,1,6,2019-05-26,0.18,4,365 +14760567,Spacious Room in HUGE Manhattan flat!,42691960,Marie,Manhattan,Harlem,40.80676,-73.94658,Private room,33,4,9,2017-09-01,0.26,2,0 +14761949,Upper Westside Room w/ Private Bath & View,25543706,Christina,Manhattan,Harlem,40.82489,-73.95337,Private room,80,2,93,2019-06-27,2.69,1,215 +14763045,Location! Location! Location! ... in a cute studio,54743212,Brigid,Brooklyn,Williamsburg,40.71588,-73.94297,Entire home/apt,160,14,4,2017-09-10,0.12,1,0 +14763255,Private Large Studio-size Room,43585545,Angelo,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95004,Private room,50,1,25,2019-06-29,2.08,1,28 +14767195,"Quaint, sunny, and quiet room overlooking garden.",92110601,Amey,Queens,Sunnyside,40.73967,-73.92367,Private room,50,2,7,2016-11-13,0.21,1,0 +14768563,Large 1 Bedroom near Prospect Park,19918057,Sogol,Brooklyn,Prospect-Lefferts Gardens,40.66028,-73.961,Entire home/apt,100,2,1,2016-09-05,0.03,1,0 +14769619,Cozy minimalist room close to train (1),74179880,Silvia,Brooklyn,East New York,40.67539,-73.89039,Private room,33,3,101,2019-06-16,2.92,8,323 +14769785,Pr1vate Room(Queensizebed)$100,83147028,Shirley,Brooklyn,Crown Heights,40.67181,-73.925,Private room,100,1,16,2019-01-01,0.46,2,365 +14770256,Lovely bedroom in the heart of Brooklyn,42854068,Pau,Brooklyn,Midwood,40.61679,-73.96016,Private room,35,5,0,,,1,0 +14771917,1 bedroom w/PRIVATE full bathroom (BUSHWICK),20092334,Adhat,Brooklyn,Bushwick,40.70542,-73.92025,Private room,55,15,0,,,1,0 +14772328,Amazing Space in the Heart of Williamsburg,62126843,James,Brooklyn,Williamsburg,40.71417,-73.94463,Entire home/apt,60,10,1,2017-09-26,0.05,1,0 +14772701,2A Lovely one bedroom apartment in Williamsburg,49704571,Krzysztof,Brooklyn,Williamsburg,40.71943,-73.94255,Entire home/apt,89,30,11,2019-05-31,0.34,8,144 +14774206,South-By-Southwest Room,92193254,Max,Manhattan,Upper West Side,40.80093,-73.9601,Private room,97,3,96,2019-07-06,2.80,1,134 +14774459,Big Apartment with Balcony by Central Park,4064681,Aziz,Manhattan,East Harlem,40.79834,-73.94761,Entire home/apt,164,1,8,2017-02-22,0.23,1,0 +14776203,Home 4 Medical Professionals- Stuyvesant Heights 1,26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95246,Private room,57,30,1,2017-02-18,0.03,43,365 +14777684,Immaculate Private Apt Under $10 Uber to JFK*,72838963,Deborah,Queens,Jamaica,40.68358,-73.7967,Entire home/apt,66,1,94,2019-07-04,2.71,2,180 +14778622,"Modern and Safe Place,Free Wifi",92238446,Elliot,Queens,St. Albans,40.70052,-73.75184,Private room,400,4,0,,,1,365 +14779359,"3 BD,2 BTH, Doorman,15 mins to Midtown",47219202,Roy & Rita,Manhattan,Harlem,40.8222,-73.94323,Entire home/apt,199,2,15,2019-07-07,0.58,1,54 +14779590,Quiet room with loft bed,16300594,Ari,Brooklyn,Williamsburg,40.716,-73.955,Private room,52,5,57,2019-06-25,1.65,3,104 +14781268,Huge Sunny Private Bedroom in heart of Brooklyn,566200,Daniel,Brooklyn,Bushwick,40.69951,-73.92848,Private room,70,30,6,2019-03-22,0.18,1,0 +14783267,Lovely & bright apartment in center of Park Slope,950826,Talia,Brooklyn,Park Slope,40.66961,-73.97991,Entire home/apt,170,30,17,2019-06-09,0.50,1,0 +14783394,Bright Room in Bushwick,71379648,Jacob,Brooklyn,Bushwick,40.68815,-73.91344,Private room,62,3,7,2018-03-31,0.22,1,0 +14783847,Midtown East Pied-à-Terre,32507569,Cranston,Manhattan,Midtown,40.75586,-73.96185,Entire home/apt,200,6,23,2019-07-01,2.23,1,89 +14784377,Sunny Master Bedroom / Harlem,40223194,Kenny,Manhattan,Harlem,40.81285,-73.95439,Private room,75,2,3,2016-11-12,0.09,1,0 +14784557,Beautiful Designer 1 bedroom Apt Midtown Manhattan,767764,Jerald,Manhattan,Hell's Kitchen,40.76688,-73.99402,Entire home/apt,200,3,31,2019-07-03,0.94,1,51 +14784793,Ditmas Park Beautiful Spacious Apartment,11427836,Tiffany,Brooklyn,Flatbush,40.63825,-73.95654,Entire home/apt,160,2,18,2019-04-22,0.52,1,0 +14787061,Harlem River,92324633,Ermanno,Manhattan,East Harlem,40.81344,-73.93454,Private room,100,2,7,2017-09-04,0.21,1,32 +14787179,Large private bedroom&bath 2 min. away from subway,92325527,Barbara,Brooklyn,Williamsburg,40.71153,-73.94215,Private room,100,2,124,2019-07-03,3.65,1,58 +14787406,"Homey, accessible private bedroom",19544315,Cal,Manhattan,Washington Heights,40.83315,-73.94108,Private room,58,1,1,2016-09-21,0.03,2,0 +14787727,"1 Bedroom Apartment, Carroll Gardens",2724990,Valeska,Brooklyn,Carroll Gardens,40.68182,-73.99208,Entire home/apt,110,10,0,,,1,0 +14787776,1 Beautiful Private Bedroom In Prime Williamsburg,46220101,Nicolette,Brooklyn,Williamsburg,40.7121,-73.9623,Private room,120,3,2,2019-05-12,0.23,1,149 +14788009,Chris' Cozy Cave!,69029231,Chris,Queens,Ditmars Steinway,40.78031,-73.91003,Entire home/apt,95,3,89,2019-06-18,2.60,1,259 +14789008,"Spacious 1BR amazing view, Beach 5 min, airport 20",26759986,Aziz,Brooklyn,Manhattan Beach,40.58249,-73.95347,Entire home/apt,150,30,2,2016-09-20,0.06,1,0 +14790550,Large and inviting 3BR apartment,21426910,Allen,Brooklyn,Gravesend,40.59544,-73.97087,Entire home/apt,150,2,145,2019-07-01,4.24,2,35 +14795784,Studio Apartment Prospect Heights,2140246,Tanya,Brooklyn,Crown Heights,40.6758,-73.96251,Entire home/apt,95,3,10,2019-05-19,0.30,1,188 +14796894,21St&6Th Ave Prime Doorman 1bed !GYM 5204,16098958,Jeremy & Laura,Manhattan,Chelsea,40.74246,-73.9954,Entire home/apt,250,30,1,2017-01-07,0.03,96,319 +14798850,Cool Brooklyn spot,92441472,Scott,Brooklyn,Bedford-Stuyvesant,40.69576,-73.96137,Private room,37,2,1,2016-08-30,0.03,1,0 +14798941,Sunny Room with Queen Bed in Artsy Bushwick,1385016,Bradley,Brooklyn,Bushwick,40.70468,-73.92568,Private room,75,5,4,2017-09-26,0.12,1,88 +14800184,Spacious Bedroom in Gorgeous Renovated Apartment,82715129,Carlos,Brooklyn,Bedford-Stuyvesant,40.69063,-73.93947,Private room,67,2,87,2019-06-30,2.51,1,60 +14802377,Beautiful Home Away From Home,11272233,Kat,Brooklyn,Crown Heights,40.67532,-73.93986,Private room,59,1,7,2019-06-21,0.20,2,189 +14802396,"Park Slope Bklyn, Large 2 BD/2 BTH",42569610,Chris & Jayma,Brooklyn,Park Slope,40.67861,-73.98066,Entire home/apt,227,30,2,2017-02-12,0.06,1,250 +14803168,Cozy living in midtown close to EVERYTHING,92481239,Russell,Manhattan,Upper West Side,40.76938,-73.98689,Entire home/apt,160,3,4,2018-07-29,0.28,1,2 +14804661,"Cozy 4 beds, Free Ferry to Manhattan.",92493393,Eddie & Lois,Staten Island,West Brighton,40.63333,-74.11311,Entire home/apt,125,2,96,2019-07-01,2.82,5,362 +14804934,Spacious room on the East River!,14614459,Dario,Manhattan,East Harlem,40.78608,-73.94305,Private room,50,3,14,2018-06-03,0.41,4,0 +14805984,"Cozy NY Apt, Central to transport-LIVE as a LOCAL-",92509632,Nelly,Brooklyn,Canarsie,40.63949,-73.90585,Entire home/apt,80,2,83,2018-03-11,2.42,1,0 +14807279,Renovated brownstone apt w/ private outdoor patio,43853650,Eric,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95927,Entire home/apt,225,4,112,2019-06-30,3.23,1,136 +14807332,Duplex with Private Bathroom by Times Square,92520154,Michael,Manhattan,Hell's Kitchen,40.7658,-73.98795,Private room,180,1,319,2019-07-01,9.24,1,57 +14807716,Spacious 2 bedroom penthouse in Williamsburg,49704571,Krzysztof,Brooklyn,Greenpoint,40.72107,-73.943,Entire home/apt,109,30,6,2018-08-10,0.20,8,176 +14807890,Sunny Bloomingdale,9060571,Maurice,Manhattan,Upper West Side,40.79986,-73.96415,Private room,100,1,86,2019-07-05,2.50,1,34 +14808499,"Large studio in Williamsburg, 3B",49704571,Krzysztof,Brooklyn,Williamsburg,40.71984,-73.94303,Entire home/apt,79,30,11,2019-05-31,0.35,8,136 +14808561,"private cosy , clean 2 bedroom apt",15724675,Juan,Queens,Woodside,40.74185,-73.90684,Private room,105,2,9,2017-08-14,0.26,2,0 +14808832,"Bedroom & living area Upper East Side, 86th Subway",7917247,Daniel,Manhattan,Upper East Side,40.77544,-73.95577,Entire home/apt,125,2,102,2019-06-15,3.21,1,35 +14808890,Comfortable Twin Size Bed Near Airport,51550484,Zhur,Queens,Richmond Hill,40.69416,-73.84698,Private room,47,2,25,2019-06-10,1.13,2,152 +14809302,A Small Room With Futon Bed In A House In Brooklyn,40236384,Oates,Brooklyn,Prospect-Lefferts Gardens,40.65934,-73.95937,Private room,60,1,19,2017-04-04,0.55,2,0 +14809342,Soho/Nolita Apartment w/Rooftop Terrace,3599088,Chris,Manhattan,Nolita,40.72191,-73.99472,Entire home/apt,120,19,5,2018-03-25,0.17,2,0 +14815997,"Bright, quiet, super comfy chic in Upper East Side",3979831,Mj,Manhattan,Upper East Side,40.77273,-73.96344,Entire home/apt,195,2,90,2019-06-26,2.59,1,134 +14817571,Private room in astoria for a month!,90043913,Yudum,Queens,Astoria,40.77013,-73.92092,Private room,60,2,2,2019-06-10,1.22,2,34 +14817574,Spacious Room in the heart of Greenwich Village!,88398053,Colleen,Manhattan,Greenwich Village,40.72807,-73.99925,Private room,99,2,5,2017-08-20,0.15,1,0 +14818234,Spacious 3BR Duplex Apt + Loft in Gramercy NYC,80782387,Justin,Manhattan,Gramercy,40.73815,-73.98443,Entire home/apt,300,3,11,2019-05-27,0.32,1,0 +14819796,"Charming 2BR Prime Carroll Gardens/ F,G Train",40611169,Sol,Brooklyn,Carroll Gardens,40.67718,-73.99493,Entire home/apt,250,1,62,2019-06-28,1.79,5,178 +14821133,Bright 1 Bedroom in the heart of the East Village,1772952,Elizabeth,Manhattan,East Village,40.72931,-73.97925,Entire home/apt,105,4,18,2018-04-22,0.52,1,0 +14821494,Beautiful Furnished 1 BR Apt near Times Square,30283594,Kara,Manhattan,Chelsea,40.74461,-73.992,Entire home/apt,129,30,0,,,121,349 +14821756,"LowerLevel House NYC,Traveler ShortStay BedRoom",31307789,Luffy,Queens,Corona,40.74864,-73.85436,Shared room,27,2,16,2019-06-07,0.48,2,365 +14822309,"Relaxing, spacious, private room Riverside Drive",16978120,Chip,Manhattan,Harlem,40.82966,-73.95021,Private room,65,30,7,2019-04-30,0.21,2,225 +14823020,peaceful tree view room in sweet neighborhood,22388424,Leslie,Queens,Ridgewood,40.7058,-73.91041,Private room,42,3,6,2019-06-13,0.18,2,52 +14823077,Amazing Private Bedroom on UES of New York City,20707006,Tianna,Manhattan,East Harlem,40.78962,-73.94837,Private room,100,4,1,2017-01-03,0.03,1,0 +14823526,"Located in heart of SOHO, super convenient!",9390190,Amy,Manhattan,SoHo,40.72281,-73.9987,Private room,120,1,9,2018-10-28,0.35,4,89 +14824160,NYC Photographers Loft,1319462,Zi Ying,Manhattan,Chinatown,40.71775,-73.99509,Entire home/apt,199,3,19,2019-06-22,0.56,2,11 +14824230,Cozy quiet room in Morningside brownstone,92690603,Ruth,Manhattan,Morningside Heights,40.80576,-73.95832,Private room,85,3,49,2019-06-14,1.46,1,2 +14824875,Beautiful two bedroom apartment with backyard,68082479,Sunshine,Brooklyn,East New York,40.6735,-73.89635,Entire home/apt,135,30,108,2019-06-20,3.12,2,206 +14825405,Oceanview pull out bed in a SAFE area. No BS fees!,24676472,Gino,Brooklyn,Brighton Beach,40.57701,-73.96616,Shared room,50,1,1,2016-10-09,0.03,1,0 +14826817,Sid's Victorian Oasis,92720308,Sidney,Brooklyn,Flatbush,40.64088,-73.96306,Private room,120,1,87,2019-06-12,2.53,3,313 +14826900,Modern Williamsburg Loft,25161779,Maria,Brooklyn,Williamsburg,40.71122,-73.95922,Entire home/apt,160,3,2,2017-07-31,0.06,1,0 +14827265,private room in SOHO,9390190,Amy,Manhattan,SoHo,40.72194,-73.9983,Private room,120,1,25,2019-07-01,0.75,4,89 +14827418,private room in central SOHO,9390190,Amy,Manhattan,SoHo,40.72293,-73.99952,Private room,120,1,24,2019-05-19,0.71,4,89 +14827512,comfy bed in SOHO,9390190,Amy,Manhattan,SoHo,40.72364,-73.99923,Shared room,100,1,51,2019-07-01,1.48,4,82 +14827752,NEW Bright Modern Apt in the heart of DOWNTOWN NYC,17536826,Hanyuan (Yssi),Manhattan,East Village,40.72989,-73.9888,Entire home/apt,270,2,0,,,1,0 +14832329,Cosy Brooklyn Bedroom in Duplex Apt,12368999,Mathieu,Brooklyn,Clinton Hill,40.68439,-73.96336,Private room,72,1,2,2016-09-11,0.06,1,0 +14834097,"East 63rd street, Studio Serviced Apartment*",22541573,Ken,Manhattan,Upper East Side,40.76356,-73.96082,Entire home/apt,179,30,0,,,87,365 +14834733,"Stoner Abode in Bushwick +ADULTS ONLY!",92002479,Dee,Brooklyn,Bushwick,40.69018,-73.92166,Private room,72,1,96,2019-06-23,3.13,2,365 +14835065,West Village Apartment near Washington Square Park,77722758,Robert,Manhattan,Greenwich Village,40.73293,-73.99846,Entire home/apt,200,1,4,2017-12-30,0.12,1,0 +14835632,"Bright, conveniently located room in Bushwick",29480857,Elena,Brooklyn,Bushwick,40.70352,-73.92971,Private room,48,2,11,2017-12-30,0.32,1,0 +14835670,Classic Bed-Stuy Brownstone Garden Apartment,92602590,Richard,Brooklyn,Bedford-Stuyvesant,40.69042,-73.942,Entire home/apt,95,2,27,2018-05-05,0.79,1,0 +14837052,Fantastical Artist's loft in Tribeca,46564548,Meghan,Manhattan,Tribeca,40.7155,-74.00754,Entire home/apt,800,13,2,2018-07-16,0.14,1,173 +14837884,Small Bedroom in Heart of SoHo,91280958,Sandra,Manhattan,SoHo,40.72179,-73.99795,Private room,49,3,1,2016-09-15,0.03,1,0 +14838160,Bedroom in Beautiful Fort Greene Home,20480059,Mallary,Brooklyn,Fort Greene,40.69218,-73.97138,Private room,65,4,48,2019-05-22,1.38,3,0 +14838808,Private Bed/Bath in SOHO Townhouse +Office/Deck!!!,43599290,Scott,Manhattan,SoHo,40.72198,-74.00296,Private room,129,2,26,2019-05-22,0.76,2,89 +14839106,Modern Private Room-L Train in front of building!,60968776,Kaitlyn,Brooklyn,Williamsburg,40.70812,-73.94003,Private room,113,3,27,2019-06-19,0.78,1,37 +14839830,Modern Spacious Private One bedroom Free Parking.,48630747,Harvey,Queens,Flushing,40.72363,-73.80285,Entire home/apt,100,1,197,2019-06-24,5.81,1,342 +14839995,3 BR & Bath Sunny Quiet Entire Floor Brown,39543399,Michael,Brooklyn,Park Slope,40.67171,-73.97607,Entire home/apt,175,3,29,2019-05-06,0.85,1,282 +14840286,Artist's Townhouse,9977688,Lenissima,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92412,Entire home/apt,575,4,6,2018-12-31,0.19,1,179 +14840323,Loft in the heart of Bushwick (jefferson L),18198110,Jefferson,Brooklyn,Bushwick,40.70461,-73.92297,Entire home/apt,135,2,6,2016-10-31,0.17,1,0 +14840822,"East midtown, Steps from the UN +GC",74974718,Leah,Manhattan,Midtown,40.75015,-73.97082,Private room,200,5,41,2019-07-01,1.20,1,333 +14841128,"Cozy Quiet/NYC, Brooklyn apt next to subway!!",92333417,Valerie,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94943,Entire home/apt,152,3,132,2019-06-24,4.13,2,321 +14841838,Jackson Heights 2 bedrooms housing,92872782,Nicholas,Queens,Jackson Heights,40.75495,-73.87774,Entire home/apt,140,2,115,2019-06-24,3.34,1,298 +14842856,Unique Creative Artist Space in Brooklyn,90864500,Wilson,Brooklyn,Sunset Park,40.65348,-74.00255,Entire home/apt,800,1,1,2017-08-13,0.04,1,364 +14842991,Sunny Upper East Side Escape,4611487,Caroline,Manhattan,Upper East Side,40.76749,-73.95471,Private room,95,4,101,2019-06-26,2.94,1,49 +14843464,"Large studio in Williamsburg, 4B",49704571,Krzysztof,Brooklyn,Greenpoint,40.72043,-73.94253,Entire home/apt,80,30,8,2019-06-08,0.26,8,152 +14843553,Beautiful Alcove Studio in West Midtown,493093,Eyal,Manhattan,Chelsea,40.75122,-73.99658,Entire home/apt,215,3,88,2019-07-01,2.59,1,200 +14850904,"Sunny, Beautiful 2BR in Park Slope South",92963740,Remy,Brooklyn,Sunset Park,40.66148,-73.98942,Entire home/apt,140,2,83,2019-06-30,2.40,2,7 +14851247,Clean bright comfy 1BR east Harlem,51843917,John,Manhattan,East Harlem,40.79853,-73.93772,Entire home/apt,110,29,9,2018-04-02,0.26,1,35 +14851292,Gorgeous Sunlit One Bedroom - Uptown Manhattan,64161144,Nichole,Manhattan,East Harlem,40.81506,-73.93567,Entire home/apt,100,2,9,2017-01-15,0.26,1,0 +14851530,Eclectic Prime Williamsburg Space,50374022,Elana,Brooklyn,Williamsburg,40.71254,-73.96411,Private room,100,3,2,2017-05-22,0.06,2,0 +14853361,Charming 1BR with sun-nook in Brooklyn,92986768,Macushla,Brooklyn,Navy Yard,40.69803,-73.97205,Entire home/apt,94,3,5,2018-01-06,0.14,1,0 +14854002,Master bedroom with king size bed and private bath,3274903,Vicky,Queens,Sunnyside,40.73825,-73.92919,Private room,76,3,9,2019-06-16,0.97,1,112 +14854013,"1 Bedroom apartment in Woodside, NY",20616761,Eliana,Queens,Sunnyside,40.74473,-73.91334,Entire home/apt,150,2,51,2019-06-09,1.48,1,329 +14854430,Apartment in Center of East Village,39942789,Jackie,Manhattan,East Village,40.73001,-73.98464,Entire home/apt,195,2,48,2019-06-05,1.41,1,344 +14854453,Small room in great neighborhood,10737943,David,Manhattan,Upper East Side,40.77819,-73.94597,Private room,49,25,5,2019-06-01,0.15,10,284 +14855614,Luxury New York City Westside Suite,92067070,Rhondella,Manhattan,Midtown,40.76419,-73.98053,Entire home/apt,500,1,5,2018-09-26,0.15,1,361 +14856742,Penthouse Private Room w/Amazing Views,26434803,Zach,Brooklyn,Bushwick,40.69924,-73.91261,Private room,45,10,1,2016-09-05,0.03,2,0 +14856799,纽约之家(SunnyHome3),27673980,Amy,Queens,Flushing,40.7459,-73.83298,Private room,50,1,54,2019-04-15,1.56,8,78 +14858190,Brand New Luxury Apartment with Breathtaking Views,17540607,Floor,Manhattan,East Village,40.72088,-73.97825,Entire home/apt,295,4,2,2018-03-09,0.09,1,0 +14858485,Cozy nook in the Brook(lyn),93044732,Christopher,Brooklyn,Bedford-Stuyvesant,40.69328,-73.95447,Private room,65,1,3,2016-09-19,0.09,1,0 +14858544,BEST AREA IN CHELSEA. MODERN. COMPACT. HIGH LINE!!,93044932,Gina,Manhattan,Chelsea,40.75005,-73.99898,Entire home/apt,90,1,80,2019-06-22,2.32,1,73 +14858777,West Harlem Cosy and Spacious Room,9030453,Irie,Manhattan,Harlem,40.81172,-73.94456,Private room,71,5,6,2017-09-20,0.18,2,305 +14864014,"Ultramodern Luxury 1 BR w/ Terrace, Crown Heights",322716,Alex,Brooklyn,Crown Heights,40.67162,-73.95009,Entire home/apt,155,7,19,2019-06-18,0.56,5,333 +14865705,Shared 1br in Flushing for cheap,16795575,Zack,Queens,Flushing,40.75338,-73.82342,Private room,40,1,6,2016-09-13,0.17,2,0 +14867152,Cozy Bed Stuy Two Room Studio,32597915,Jason,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93094,Entire home/apt,50,2,4,2016-12-06,0.12,1,0 +14868158,Private Bedroom with Amazing Skyline View,93148942,Trey,Brooklyn,Bushwick,40.69945,-73.92771,Private room,50,1,9,2017-08-05,0.26,2,0 +14868347,NYC Studio Apt right by Central Park!!,30283594,Kara,Manhattan,Midtown,40.76556,-73.98197,Entire home/apt,199,30,1,2017-10-25,0.05,121,189 +14868631,Cozy Bed Stuy Getaway,40222216,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92598,Entire home/apt,136,2,7,2019-06-26,2.84,1,255 +14868857,Entire studio in Williamsburg,49704571,Krzysztof,Brooklyn,Williamsburg,40.71906,-73.94394,Entire home/apt,80,30,10,2019-04-21,0.32,8,97 +14869260,Modern Apartment on the UES,84403365,Hillary,Manhattan,Upper East Side,40.78194,-73.94791,Private room,65,1,1,2017-06-11,0.04,1,0 +14869271,"1 bdrm in Park Slope , Bklyn.",83611652,Phyllis,Brooklyn,Park Slope,40.67915,-73.98157,Entire home/apt,200,1,4,2018-08-20,0.15,1,20 +14869440,Crown Heights 1 BR w/ Style,7128634,Landon,Brooklyn,Crown Heights,40.67541,-73.95221,Entire home/apt,148,2,16,2018-09-30,0.49,1,0 +14870802,Private Room in the Heart of SoHo,34252002,Harriet,Manhattan,Nolita,40.72204,-73.99705,Private room,100,2,10,2017-03-19,0.29,1,0 +14871074,Spacious Artist's Apartment,7675569,Annika,Brooklyn,Bushwick,40.69983,-73.92981,Private room,90,2,5,2017-08-13,0.15,1,0 +14871736,An Urban Oasis in the Heart of Downtown Brooklyn,21327336,Alicia,Brooklyn,Boerum Hill,40.68475,-73.97986,Entire home/apt,239,2,10,2019-04-28,0.29,1,11 +14878046,Light Filled Chinatown Apartment,2909294,Erin,Manhattan,Chinatown,40.71534,-73.99918,Entire home/apt,150,1,23,2019-07-01,1.42,1,14 +14880613,"Cute, central East Village apt",4289248,Tamar,Manhattan,East Village,40.72891,-73.98868,Entire home/apt,300,2,22,2019-05-26,0.64,1,8 +14881637,Lovely 1 BR in Prime Location on E 26 & 3 - NYC,15310997,Mor,Manhattan,Midtown,40.76505,-73.97857,Entire home/apt,125,30,3,2019-05-04,0.09,9,0 +14881794,Nice bedroom by Riverside & Columbia University,45748188,Ali,Manhattan,Morningside Heights,40.81231,-73.95858,Private room,60,2,20,2017-08-13,0.59,1,0 +14882046,Harlem Comfort and Style,91466201,Heidi,Manhattan,Harlem,40.80697,-73.945,Entire home/apt,200,3,25,2019-06-21,0.73,1,89 +14882137,"Large, beautiful room near Bushwick",93316008,Chris,Queens,Ridgewood,40.70925,-73.91124,Private room,50,5,2,2016-09-21,0.06,1,280 +14882283,Country Manhattan Private Bedroom Suite,20912275,Gladys,Manhattan,Inwood,40.86541,-73.92106,Private room,75,5,0,,,1,0 +14882309,Sid's Victorian Peaceful Haven,92720308,Sidney,Brooklyn,Flatbush,40.64028,-73.96095,Private room,100,1,134,2019-06-19,3.95,3,307 +14883818,Cozy and close to Manhattan,93335548,Vytaute,Queens,Ridgewood,40.69901,-73.90168,Entire home/apt,50,3,111,2019-06-26,3.21,1,65 +14884030,FAIRY COTTAGE,93339266,Natasha,Queens,Long Island City,40.75253,-73.9315,Entire home/apt,150,2,0,,,1,0 +14885186,Huge Brownstone! Private Room! Clean! City in 15!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69385,-73.94413,Private room,50,3,86,2019-06-26,2.57,4,0 +14886600,"Midtown East Studio Apt ~ Private, Cozy & Bright",93373413,Meg,Manhattan,Midtown,40.75735,-73.96438,Entire home/apt,198,2,22,2019-06-30,0.64,1,8 +14887025,Upscale Furnished Studio near Union Square!!,30283594,Kara,Manhattan,Chelsea,40.74615,-73.99182,Entire home/apt,109,30,0,,,121,184 +14887088,"BEACH BLOCK IN ♡ OF ROCKAWAY, NYC",1352304,Nancy,Queens,Rockaway Beach,40.58664,-73.81295,Entire home/apt,200,3,24,2019-06-08,0.71,1,131 +14888012,Brooklyn Vibe,93392260,Kathleen,Brooklyn,East New York,40.67257,-73.89082,Private room,55,5,27,2019-06-08,0.81,2,42 +14892623,Cozy Space w/ Separate Entrance,93441980,Tanya,Staten Island,South Beach,40.59385,-74.08825,Private room,80,1,38,2019-05-05,1.10,1,308 +14894267,"Doorman, modern apart. on Broadway (Central Park)",10459594,S.,Manhattan,Upper West Side,40.79501,-73.97132,Entire home/apt,165,3,2,2017-10-17,0.06,1,0 +14899111,2 bed/2 bath floor - unique West Village townhouse,36435055,Barbara,Manhattan,West Village,40.73537,-74.00209,Entire home/apt,415,2,57,2019-07-01,1.68,2,22 +14899810,1 Bedroom in Upper East Side,57437690,Sanket,Manhattan,Upper East Side,40.77972,-73.94543,Private room,80,100,0,,,1,0 +14902084,Modern luxury apartment in downtown Manhattan,1445618,Th,Manhattan,Financial District,40.70402,-74.00776,Entire home/apt,235,3,3,2016-10-23,0.09,1,0 +14909867,"Beautiful basement apt in Forest Hills, Queens",75463219,Julia,Queens,Forest Hills,40.72,-73.85411,Private room,99,1,26,2019-06-10,0.93,1,284 +14911628,Modern 1BR Apt in the Heart Of NYC,87848042,Val,Manhattan,Hell's Kitchen,40.75611,-73.99387,Entire home/apt,180,7,17,2019-06-30,0.53,1,5 +14911767,Beautiful Park Slope apartment in great location!,3609819,Stephen,Brooklyn,Park Slope,40.66821,-73.98253,Entire home/apt,180,31,8,2019-03-04,0.23,1,179 +14912574,Spacious Living in Ditmas Park,107675,Lio & Kim And Yotam,Brooklyn,Flatbush,40.64189,-73.96066,Entire home/apt,100,3,4,2019-03-22,0.12,1,69 +14913167,"1BR on own floor, by park & subway",71093067,Matthew,Brooklyn,Crown Heights,40.67154,-73.96221,Private room,88,1,8,2016-10-23,0.23,1,0 +14913197,Serene & Clean Cuartito with Garden View,60852834,Manny & Gemma,Brooklyn,Greenpoint,40.72948,-73.94918,Private room,56,1,154,2019-06-15,4.49,2,44 +14913358,Brooklyn Gem: Stylish & Family Friendly,15670189,Evan,Brooklyn,Bedford-Stuyvesant,40.67854,-73.92321,Entire home/apt,98,2,6,2019-06-30,0.66,1,9 +14913941,Crown Heights and Cozy Self-Catering,51752700,Loretta,Brooklyn,Crown Heights,40.67564,-73.95497,Entire home/apt,93,3,48,2019-05-25,1.42,1,3 +14914048,"Spacious Private Bedroom, 10 min to Central Park",93691661,Rachel,Manhattan,Washington Heights,40.83503,-73.94166,Private room,60,2,73,2019-06-18,2.13,2,136 +14914739,Duplex apartment in the heart of Brooklyn,93699493,Andres&Ine,Brooklyn,Bedford-Stuyvesant,40.68381,-73.94346,Entire home/apt,250,3,41,2019-06-29,1.20,1,30 +14915099,Studio In Williamsburg w/ Amazing View Waterfront,7216016,Jason,Brooklyn,Williamsburg,40.7122,-73.96619,Entire home/apt,225,2,51,2019-04-21,1.51,1,0 +14915616,Spacious 3 Bedroom Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Prospect-Lefferts Gardens,40.65651,-73.95322,Entire home/apt,400,14,2,2016-10-30,0.06,4,90 +14916773,Bright Cozy Apartment next to Prospect Park,7848317,Gracelyn,Brooklyn,Windsor Terrace,40.65828,-73.98451,Entire home/apt,130,2,5,2017-07-21,0.15,2,0 +14916806,Voted “Best of Williamsburg” / 1000 sqft Loft,11227830,Logan,Brooklyn,Williamsburg,40.71865,-73.96392,Entire home/apt,249,2,43,2019-06-23,1.27,1,38 +14917475,"RENOVATED 2-Bedroom, Near subway, comfy & cosy!",93734865,Caroline,Brooklyn,Bushwick,40.68312,-73.9086,Entire home/apt,85,30,42,2019-02-28,1.24,1,355 +14917765,"Kingsbridge Heights, The Bronx, NY.",24421177,Eduardo,Bronx,Kingsbridge,40.86932,-73.90057,Private room,30,2,56,2019-06-12,1.68,1,38 +14918238,Beautiful Sunny Small Room,93743081,Sharon,Brooklyn,Bedford-Stuyvesant,40.68624,-73.95528,Private room,60,1,204,2019-07-04,5.92,1,163 +14918404,Sid's Victorian Quiet Hideaway,92720308,Sidney,Brooklyn,Flatbush,40.64018,-73.96152,Private room,80,1,97,2019-06-17,2.90,3,286 +14926631,Cozy Room Right Next to Central Park,93839620,Lisa,Manhattan,Hell's Kitchen,40.76793,-73.98561,Private room,129,1,133,2019-07-05,3.95,1,61 +14926698,DUMBO couch with A/C near the Brooklyn Bridge,2809938,Phillip,Brooklyn,Vinegar Hill,40.70156,-73.98199,Shared room,250,2,37,2019-06-06,1.09,1,83 +14928089,Beautiful room with all Amenities and gym,71176668,David,Manhattan,Harlem,40.8153,-73.93741,Private room,110,2,26,2018-10-24,0.76,4,280 +14928864,Big Room in Manhattan Apt,80957172,Richard,Manhattan,Washington Heights,40.84606,-73.93325,Private room,129,5,0,,,1,365 +14928996,1 BR in Williamsburg by Bedford Ave Station,32545798,Sasha,Brooklyn,Williamsburg,40.71449,-73.96311,Private room,75,2,8,2017-06-29,0.23,5,0 +14932887,Luxury Studio Apt Overlooking the Hudson River,30283594,Kara,Manhattan,Hell's Kitchen,40.76021,-73.99969,Entire home/apt,199,30,2,2019-05-10,0.08,121,365 +14933521,Sunny 1 Bedroom in Harlem,93020402,Esi,Manhattan,Harlem,40.81949,-73.94621,Entire home/apt,129,3,67,2019-07-01,1.96,1,0 +14933893,Cozy walk-up in The Upper East Side,60904698,Toby,Manhattan,Upper East Side,40.77334,-73.94848,Private room,75,1,3,2016-09-19,0.09,1,0 +14935001,Quaint Studio. 20 mins to City,59839625,Odi,Queens,Sunnyside,40.74211,-73.91646,Entire home/apt,105,2,48,2019-06-16,1.42,1,13 +14935151,Comfortable Bedroom near train.,69711528,Lucia,Bronx,Parkchester,40.83112,-73.87319,Private room,49,3,25,2018-06-15,0.73,2,0 +14936181,Apt with Modern Lights Available,11293255,Abdul Fattah,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9575,Private room,215,3,3,2017-09-24,0.10,1,0 +14936709,Entire 1bdr Manhattan NY,55547933,KaLisa & Christian,Manhattan,Inwood,40.8604,-73.92716,Entire home/apt,85,3,4,2018-07-13,0.18,1,0 +14945219,"Sunny Art Loft in Bushwick, Brooklyn + 1 Cute Cat",5792120,Julia,Brooklyn,Bushwick,40.70708,-73.92343,Entire home/apt,102,1,44,2019-06-26,1.30,1,38 +14945274,Bronx Retreat in Contemporary Apt,32357900,Tara,Bronx,Fieldston,40.88985,-73.90747,Private room,85,2,16,2017-09-01,0.47,1,0 +14945585,"Furnished Room, with spacious backyard",94039418,Shawn,Brooklyn,Bushwick,40.69251,-73.92478,Private room,25,2,1,2016-09-12,0.03,1,0 +14946346,**East Side NYC 1 Bedroom Apt**,30283594,Kara,Manhattan,Murray Hill,40.7481,-73.97417,Entire home/apt,279,30,0,,,121,365 +14946381,A Real NYC Experience,94044308,Sydney,Manhattan,Washington Heights,40.83849,-73.93809,Private room,41,2,57,2018-01-07,1.67,1,0 +14947252,5 Star Apt / Location Full of Character,14564237,Lauren,Brooklyn,Williamsburg,40.72022,-73.95727,Entire home/apt,280,10,5,2018-09-21,0.14,1,0 +14948249,"Bright, clean and peaceful apt in Hell's Kitchen",75310263,Thomas,Manhattan,Hell's Kitchen,40.76495,-73.98964,Entire home/apt,165,5,1,2016-09-21,0.03,1,0 +14949281,"The best deal, really close to Times Square",91445933,Adam,Manhattan,Theater District,40.75863,-73.98812,Private room,40,1,163,2019-06-19,4.75,1,102 +14949923,Luxury Apartment one block from Central Park,94087334,Aimee,Manhattan,Upper West Side,40.77718,-73.98023,Private room,120,1,20,2019-06-24,0.59,1,81 +14951904,Bedroom in beautiful apt near Central Park,21679450,Vicky,Manhattan,Harlem,40.80171,-73.95871,Private room,60,7,4,2018-11-02,0.12,2,0 +14952053,Private natural light oasis with Super Host!!,93368072,Ann,Brooklyn,Cypress Hills,40.67825,-73.89416,Private room,70,1,174,2019-06-30,5.06,1,109 +14952649,"Eclectic, relaxing yet steps away from the action",94118056,Steve,Manhattan,Washington Heights,40.8419,-73.93866,Entire home/apt,130,3,10,2018-09-03,0.29,1,188 +14959161,Upper East Side 1 Bedroom Near MSK,30283594,Kara,Manhattan,Upper East Side,40.7608,-73.96032,Entire home/apt,249,30,0,,,121,364 +14959195,Huge Bedroom with Private Shower and Bathroom,67126282,Brian,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94334,Private room,80,1,4,2016-11-24,0.12,1,0 +14959206,Cozy Modern Townhouse Studio Williamsburg BK,41177070,Dennis,Brooklyn,Williamsburg,40.71279,-73.94443,Entire home/apt,145,3,96,2019-06-26,2.87,2,0 +14959966,2 Bedroom in Convenient Upper East Apartment,7903711,Abby,Manhattan,Upper East Side,40.77979,-73.95379,Entire home/apt,260,2,8,2018-05-23,0.23,1,0 +14961122,Spacious studio with private garden in Brooklyn,16586817,Giorgia,Brooklyn,Bedford-Stuyvesant,40.68381,-73.91776,Entire home/apt,86,4,55,2019-05-31,1.62,1,17 +14961253,86th st express train/Private Patio/Clean One Bed,94196548,Kim,Manhattan,Upper East Side,40.77883,-73.95205,Entire home/apt,219,1,5,2017-05-21,0.16,1,0 +14963404,Bright cozy room with balcony near Prospect Park.,7848317,Gracelyn,Brooklyn,Windsor Terrace,40.65949,-73.98422,Private room,90,2,3,2017-10-21,0.11,2,0 +14963583,Room in South Harlem near Central Park,94219511,Gilles,Manhattan,Harlem,40.80167,-73.95781,Private room,70,3,3,2019-01-01,0.09,2,0 +14964655,brooklyn comfy safe near all,94232838,Joe,Brooklyn,Borough Park,40.6371,-73.99834,Private room,70,2,0,,,1,365 +14965582,Room in two bedroom apartment,94243268,Ayanna,Brooklyn,Bushwick,40.69296,-73.92092,Private room,64,1,0,,,1,83 +14966184,Stay in a beautiful apartment&experience Harlem!,9171744,Jack,Manhattan,East Harlem,40.79757,-73.94006,Private room,85,2,87,2019-06-28,2.54,1,1 +14966692,Large 1 bedroom to yourself. 1 block from subway,11685844,Joseph,Queens,Astoria,40.7609,-73.92516,Entire home/apt,125,5,2,2017-04-10,0.06,1,0 +14967790,"Master Bedroom,lots of natural and light furnished",94263025,Derek,Brooklyn,Bushwick,40.68918,-73.91217,Private room,60,1,11,2018-02-18,0.57,2,0 +14967881,Luxurious Studio by Central Park - Newly Renovated,8547368,David,Manhattan,Upper East Side,40.76404,-73.96628,Entire home/apt,225,2,84,2019-06-07,2.47,1,27 +14967994,Seaview Studio in Brooklyn New york.,94265445,Natasha,Brooklyn,Canarsie,40.63241,-73.89367,Entire home/apt,100,2,161,2019-06-26,4.78,1,327 +14968000,Spacious Comtemporary 3BR Apartment,24805685,Saif,Brooklyn,Park Slope,40.67124,-73.98625,Entire home/apt,218,2,117,2019-07-08,3.41,1,226 +14968403,"Warwick & Bethel stays at ""The Brooklyn Mansion""",49508002,Ivia,Brooklyn,Bushwick,40.69141,-73.92092,Entire home/apt,200,3,6,2018-08-27,0.22,1,194 +14968436,Gorgeous room in Historic Harlem street,16686968,Ricardo,Manhattan,Harlem,40.81041,-73.94337,Private room,55,2,114,2019-05-27,3.34,1,270 +14968939,Peaceful cove in Williamsburg!,33799659,Daniela,Brooklyn,Williamsburg,40.7119,-73.94431,Private room,90,3,17,2019-06-16,0.50,1,4 +14969217,Gorgeous brand new apartment in Bushwick,2260600,Lidia,Brooklyn,Bushwick,40.69096,-73.91055,Entire home/apt,105,5,26,2019-05-20,0.77,1,269 +14972714,Charming Harlem Townhouse Minutes from Midtown,26502234,George,Manhattan,Harlem,40.82316,-73.94478,Entire home/apt,195,7,28,2019-06-23,0.92,1,285 +14975651,"West Harlem, great location, new building!",4430266,Ashante,Manhattan,Civic Center,40.71391,-74.00624,Entire home/apt,170,2,0,,,1,19 +14976368,Cozy apt. Heart of Williamsburg NYC,4025366,Dana,Brooklyn,Williamsburg,40.71156,-73.95454,Entire home/apt,150,2,14,2019-06-15,0.41,1,363 +14976950,Brite/spacious 4bedroom/2bath next to Central Park,5162192,Amy,Manhattan,Upper West Side,40.79799,-73.96161,Entire home/apt,300,30,0,,,12,233 +14979450,Simple Spacious Apartment,21261796,John,Brooklyn,Greenpoint,40.73515,-73.95645,Entire home/apt,154,5,0,,,1,0 +14980174,"Cozy 1 bedroom in the Upper East Side, NYC",28220309,Ciro,Manhattan,Upper East Side,40.76744,-73.95901,Entire home/apt,185,4,2,2016-10-28,0.06,1,0 +14981124,Nice Private room in quiet 2 level Brownstone!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94529,Private room,50,3,63,2019-06-07,1.91,4,291 +14981522,Peaceful room in Artsy W'burg 3br,94404356,Jonathan,Brooklyn,Greenpoint,40.72151,-73.94141,Private room,70,1,39,2019-07-05,1.66,2,15 +14982260,Newly renovated 1-bm apt with a wooden deck.,10162189,Adrian,Queens,Astoria,40.76802,-73.91815,Entire home/apt,180,4,45,2019-06-30,1.32,1,351 +14982907,Comfy Private Bedroom-JFK (8 mins),74331597,Nickesha,Queens,St. Albans,40.68692,-73.76832,Private room,65,2,74,2019-05-11,2.16,5,174 +14983453,127 St & Convent Av NYC ABCD RM 3,57049951,Eliahu,Manhattan,Harlem,40.81205,-73.95273,Private room,69,2,100,2019-07-02,3.09,9,345 +14984002,"Manhattan, Times square 5* mins to Central park",65359432,Ren,Queens,Astoria,40.76326,-73.92569,Entire home/apt,500,3,3,2017-06-29,0.09,2,0 +14987023,Cozy 3rd floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67758,-73.97123,Private room,40,1,168,2019-07-06,4.91,13,309 +14987516,Musa Property,94467583,Clif,Queens,Rosedale,40.65378,-73.72582,Entire home/apt,85,2,31,2019-01-07,0.92,1,142 +14988134,"Beautiful, high-ceiling Gramercy one-bedroom",141914,Mary Catherine,Manhattan,Gramercy,40.7363,-73.98338,Entire home/apt,250,1,3,2018-12-20,0.15,1,312 +14988596,Convenient Modern 1 Bedroom Apt. Upper East Side,91545870,Michelle,Manhattan,Upper East Side,40.77357,-73.95149,Entire home/apt,69,1,99,2019-07-03,5.22,2,42 +14989532,East Harlem: Spacious 3BR,23208658,Iryna,Manhattan,East Harlem,40.79853,-73.94143,Entire home/apt,270,3,70,2019-06-16,2.06,3,255 +14989615,Cheap $45/night@15 minuets to Mahattaton,92596736,Jazzy,Queens,Elmhurst,40.74647,-73.88258,Private room,53,3,2,2019-07-07,0.06,1,358 +14991887,Brownstone Apartment on Tree Lined Street,94513501,Peter & Nora,Brooklyn,Bedford-Stuyvesant,40.68664,-73.93849,Entire home/apt,100,3,33,2019-06-23,2.12,1,166 +14992784,Prívate Cozy Room,24489871,Adriana,Queens,Forest Hills,40.73602,-73.85619,Private room,52,1,14,2017-04-16,0.43,2,249 +14994076,Dominiques NYC 4Bedrm crashpad**Stay here**metro,310670,Vie,Bronx,Eastchester,40.88207,-73.83538,Entire home/apt,299,2,2,2019-05-21,0.18,13,358 +14994367,Doorman Huge Studio Laundry 5167,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76748,-73.98609,Entire home/apt,175,30,1,2017-07-31,0.04,96,311 +14995212,Cozy private room near the Bronx Zoo,94553067,Maria,Bronx,Bronxdale,40.85499,-73.86728,Private room,43,4,10,2017-01-03,0.30,1,88 +14995382,Large Victorian in Brooklyn - Downstairs 2 Beds,94555248,Beryl,Brooklyn,East Flatbush,40.63948,-73.95008,Private room,50,1,35,2019-06-16,1.03,2,365 +14996256,Lovely Guestroom in Elevator Building,92322271,Mark,Brooklyn,Crown Heights,40.67059,-73.94798,Private room,88,2,0,,,2,0 +15001872,Cozy Convenience in Bushwick,91997718,Donna,Brooklyn,Bushwick,40.69078,-73.92167,Private room,70,1,109,2019-06-30,3.19,1,364 +15003711,@BrooklynWhisky's: Birdsnest-Guest Room,62345,Jaye (And Spike),Brooklyn,South Slope,40.66211,-73.98594,Private room,78,1,80,2019-06-26,2.44,1,30 +15003721,Large Victorian in Brooklyn - Downstairs 1 Bed,94555248,Beryl,Brooklyn,East Flatbush,40.64004,-73.94933,Private room,50,1,43,2019-06-20,1.26,2,266 +15003930,Best Upper East Side Studio,15310997,Mor,Manhattan,Upper East Side,40.77395,-73.95248,Entire home/apt,200,30,4,2019-02-02,0.17,9,364 +15004091,Cozy convenient Williamsburg bedrm!,50688724,S.A.,Brooklyn,Williamsburg,40.7065,-73.95568,Private room,60,3,76,2019-06-21,2.24,2,89 +15005115,Sunny and quiet Chinatown gem,440145,Saralena,Manhattan,Civic Center,40.71342,-73.99929,Entire home/apt,150,2,8,2018-12-29,0.23,1,58 +15008979,Cozy Room near Casino and Metro,94707512,Elvin,Queens,Ozone Park,40.67238,-73.83909,Private room,75,1,212,2019-06-30,6.19,1,164 +15009556,Modern & sunny 2BR Apt - 25 min to Manhattan,4522961,Roselle,Brooklyn,Sunset Park,40.66005,-73.99204,Entire home/apt,150,4,123,2019-06-22,3.61,1,101 +15009618,Huge private bedroom in the heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76408,-73.98996,Private room,129,1,98,2019-05-12,2.87,3,27 +15009751,1 Bedroom 1 Bathroom with Ralph Lauren City Vibe,20317929,Lisa,Manhattan,Upper West Side,40.77794,-73.9763,Entire home/apt,220,2,24,2019-06-10,0.70,1,207 +15016495,"Renting a bedroom, 1 week minimum",94777797,Maya,Brooklyn,Sunset Park,40.64925,-74.01147,Private room,60,7,0,,,1,88 +15016999,Crown Heights 1-Bedroom Near Parks and Museum,94782931,Joe,Brooklyn,Crown Heights,40.66692,-73.95205,Entire home/apt,105,1,7,2019-06-19,0.21,1,6 +15018397,Peaceful Room in Dumbo Art Loft Too,37723496,Anna,Brooklyn,DUMBO,40.70426,-73.98633,Private room,125,2,98,2019-06-29,2.88,2,164 +15018646,★1 BR DELUXE★ Near Grand Central Station -Midtown,64065593,ResortShare5,Manhattan,Midtown,40.75233,-73.97137,Private room,378,2,1,2017-09-22,0.05,13,285 +15019436,"Private Room in 3bdm, Astoria",61675294,Blake,Queens,Astoria,40.75692,-73.9293,Private room,61,2,15,2017-01-28,0.44,1,0 +15019959,Amazing huge furnished room!,445894,Alexa,Queens,Elmhurst,40.74596,-73.87762,Private room,60,2,0,,,2,66 +15021635,Cute private bedroom in Bushwick. Close to subway.,61140228,Nadia,Brooklyn,Bushwick,40.7005,-73.9144,Private room,75,2,2,2018-12-22,0.29,1,0 +15021783,Private Room in Chelsea 3 BR,94820583,Zoë,Manhattan,Chelsea,40.74063,-73.99843,Private room,80,5,2,2016-10-29,0.06,1,0 +15022347,Yankee Haven,94034963,Leah,Manhattan,Harlem,40.82986,-73.93965,Entire home/apt,151,2,0,,,1,0 +15024645,Huge Historic Brooklyn Loft Minutes From Manhattan,93350397,Jody,Brooklyn,Williamsburg,40.71933,-73.95993,Entire home/apt,259,1,157,2019-06-23,4.58,1,155 +15024889,WARM AND CHARMING 2 BED APARTMENT,26924376,Lucy,Queens,Ozone Park,40.68285,-73.85248,Entire home/apt,70,5,17,2019-06-29,0.49,1,331 +15025988,Cozy Lofted Bedroom in East Williamsburg,94864882,Hanley,Brooklyn,Williamsburg,40.70661,-73.93584,Private room,60,1,1,2016-10-01,0.03,1,0 +15026994,A large private room with indoor garden,46073068,Anu-Raga,Queens,Long Island City,40.76117,-73.92847,Private room,65,3,37,2019-05-11,1.09,1,18 +15027024,Newly renovated 1bd on lively & historic St Marks,8344620,Ethan,Manhattan,East Village,40.72693,-73.98385,Entire home/apt,180,3,10,2018-12-31,0.30,1,0 +15028194,"Stylish, Comfortable, and Affordable in Brooklyn",5957027,Zachary,Brooklyn,Crown Heights,40.67667,-73.9175,Entire home/apt,180,2,126,2019-06-14,3.74,1,74 +15031599,Lovely Cozy private room with own Television,52577963,Mark,Queens,Woodhaven,40.69626,-73.8488,Private room,45,5,15,2018-12-31,0.44,6,238 +15032254,Mid-town West/Private room/shared bath,78022684,Pamela,Manhattan,Midtown,40.76485,-73.98121,Private room,112,2,1,2017-05-08,0.04,2,0 +15033685,Authentic Living in Manhattan,6250141,Shelley,Manhattan,Upper West Side,40.78074,-73.97849,Entire home/apt,168,1,138,2019-06-22,4.08,1,32 +15034150,34th street &6th ave.! Doorman Gym Studio 5220,16098958,Jeremy & Laura,Manhattan,Midtown,40.75034,-73.9878,Entire home/apt,250,30,0,,,96,311 +15034827,Greenpoint One Bedroom,46483041,Erin,Brooklyn,Greenpoint,40.73379,-73.95461,Entire home/apt,130,1,13,2017-03-18,0.38,1,0 +15034950,"Large Scandinavian inspired room, Great light",16539899,Kevin,Brooklyn,Bedford-Stuyvesant,40.6892,-73.9506,Private room,50,1,0,,,1,0 +15035050,HEART OF SOHO UPDATED 1 BR,61391963,Corporate Housing,Manhattan,Nolita,40.72332,-73.99466,Entire home/apt,142,30,7,2019-03-26,0.24,91,66 +15035565,"Huge 2 Bedroom, Great Location, Express Metro",9671470,Jacob,Manhattan,Harlem,40.81438,-73.95183,Entire home/apt,199,4,6,2018-05-08,0.19,2,0 +15036330,Cozy Bedroom close to major subway lines!,3416935,Joy,Manhattan,Harlem,40.83043,-73.94672,Private room,60,1,5,2018-09-16,0.15,1,5 +15036516,Cozy Bedroom in an Awesome location,62604251,Jasmine,Brooklyn,Bedford-Stuyvesant,40.69467,-73.94833,Private room,45,3,0,,,1,0 +15036809,Private bedroom and bath heart of Upper West Side,94975490,Jessica,Manhattan,Upper West Side,40.78766,-73.97414,Private room,85,2,19,2018-06-19,0.60,1,0 +15037251,PRIVATE ENTIRE FLOOR -NEXT TO Central PARK !,94974597,Desi,Manhattan,Upper West Side,40.77201,-73.97994,Private room,99,3,123,2019-07-01,3.72,1,246 +15037461,Williamsburg Couch on a Budget,1207773,Trista,Brooklyn,Williamsburg,40.70719,-73.95927,Shared room,37,1,12,2018-09-18,0.35,2,362 +15037640,South Brooklyn Home for Wayward Grrls,144705,Deanna,Brooklyn,Kensington,40.64552,-73.97824,Private room,40,1,1,2016-09-21,0.03,1,0 +15038469,Prime Park Slope Room (10 min. train to Lower NYC),62587696,Andrew,Brooklyn,Gowanus,40.67127,-73.99006,Private room,45,2,97,2019-06-21,2.92,2,80 +15039238,Comfortable 1 and 1/2 Bedroom With Private Patio,9472223,Arthur,Manhattan,Harlem,40.80555,-73.95706,Entire home/apt,77,5,19,2019-01-01,0.56,3,1 +15040421,"Private Cozy, Comfy & Bright Room!",8048355,Vivian,Manhattan,East Harlem,40.79639,-73.9347,Private room,55,7,3,2019-05-15,0.09,1,215 +15041647,Private Bedroom in NYC w/ SUPERHOST.,69117812,Nixie & Hai,Queens,Corona,40.73702,-73.857,Private room,60,1,105,2019-07-03,3.07,1,347 +15041998,Spacious Bedroom in TriBeCa,95033682,Anna,Manhattan,Civic Center,40.71727,-74.00335,Private room,95,3,0,,,1,189 +15042314,"Huge, Sunny Apartment on Bushwick/Bed Stuy Border!",37435755,Ryan,Brooklyn,Bedford-Stuyvesant,40.69377,-73.9307,Entire home/apt,40,2,8,2019-07-06,0.24,1,10 +15042361,Airports Sleep Inn,57023844,Karlene,Queens,Jamaica,40.6871,-73.77887,Private room,68,3,16,2019-01-03,0.47,2,359 +15043180,Cozy 1 BD in lovely Bedstuy Apartment,95045653,Vanessa,Brooklyn,Bedford-Stuyvesant,40.68474,-73.93833,Private room,85,7,1,2016-09-19,0.03,1,0 +15043534,Private room in Sunnyside 2 46th St,84607966,Nurcan,Queens,Sunnyside,40.73912,-73.92075,Private room,55,1,168,2019-07-01,4.93,3,322 +15043788,Private Room in Sunnyside 3,84607966,Nurcan,Queens,Sunnyside,40.73908,-73.9203,Private room,45,1,134,2019-07-01,3.93,3,308 +15043817,Private room in Sunnyside 1,84607966,Nurcan,Queens,Sunnyside,40.7385,-73.91993,Private room,50,1,143,2019-05-29,4.25,3,323 +15048516,Full 1-bedroom near subway into midtown Manhattan,16323240,Oliver,Queens,Sunnyside,40.74651,-73.92283,Entire home/apt,54,3,29,2019-06-15,0.93,2,0 +15049253,Queens Comfy Private Room (JFK-8mins) with porch,74331597,Nickesha,Queens,St. Albans,40.68511,-73.76884,Private room,70,2,125,2019-05-21,3.65,5,365 +15050044,"1 private bdrm in Times Sq NYC, luxury building",4430657,Claudia,Manhattan,Hell's Kitchen,40.75842,-73.99276,Private room,60,2,0,,,1,0 +15050192,Private w/Backyard in Heart of Brooklyn,95117581,Michael,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95553,Entire home/apt,150,30,6,2016-12-31,0.18,1,0 +15051958,XLarge 1BR apartment in EastVillage,79369918,Bill,Manhattan,East Village,40.73213,-73.98517,Entire home/apt,249,5,24,2018-12-30,0.71,1,17 +15052056,Entire APT in Center of Park Slope Brooklyn,83171661,Yuichi,Brooklyn,South Slope,40.66752,-73.9849,Entire home/apt,90,6,2,2017-08-28,0.06,3,0 +15052112,"FLATIRON""""GRAND PANORAMA""""LUXURY~3 BR W/Roof Deck",57552512,Emanuel,Manhattan,Midtown,40.74296,-73.98691,Entire home/apt,584,5,89,2019-04-12,2.62,1,179 +15052156,Doorman Gym 2 Beds Luxury Building!5211,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74404,-73.97217,Private room,135,30,2,2017-03-31,0.07,96,303 +15052455,"XL Sunny, NYC Flat Close to Train, Cafes & Shops",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95578,Private room,55,2,41,2019-05-28,1.25,4,83 +15052971,"East 12th street, Lux 1bd in Greenwich Village**",22541573,Ken,Manhattan,East Village,40.73193,-73.99126,Entire home/apt,267,30,1,2017-07-30,0.04,87,356 +15053143,Gigantic 2-Story Skylight Loft—2 Blocks To Subway,8726843,Adam,Manhattan,East Harlem,40.79577,-73.9362,Entire home/apt,350,3,85,2019-07-01,2.50,1,175 +15053369,Art Gallery 1BD - Heart of East Village,95143048,Jeffree,Manhattan,East Village,40.72522,-73.9873,Entire home/apt,99,2,41,2017-10-14,1.24,2,23 +15053461,"Home 4 Medical Professionals- The ""Fasciculation""",26377263,Stat,Queens,Edgemere,40.59324,-73.77288,Private room,40,30,1,2017-08-05,0.04,43,354 +15054327,"Home 4 Medical Professionals - The ""Crepitus""",26377263,Stat,Queens,Edgemere,40.59304,-73.77339,Private room,40,30,0,,,43,313 +15054617,"Home 4 Medical Professionals - The ""Syncope""",26377263,Stat,Queens,Edgemere,40.59517,-73.77236,Private room,43,30,2,2019-02-09,0.07,43,306 +15054630,"Clean, large, private R room with queen sized bed",42561290,Carla,Brooklyn,East New York,40.66136,-73.8678,Private room,45,2,38,2019-02-11,1.24,4,159 +15056050,ENTIRE Cozy 1BR apt. 5 min from Q/B train,15198834,Leandro,Brooklyn,Flatbush,40.64837,-73.9618,Entire home/apt,88,4,8,2018-08-20,0.24,1,0 +15056492,GIGANTIC Beautiful Bedroom in LES Apartment,5330919,Rick,Manhattan,Chinatown,40.71676,-73.99369,Private room,90,20,0,,,1,188 +15056538,"Sixth Ave Chelsea, Studio Serviced Apt*",22541573,Ken,Manhattan,Chelsea,40.74481,-73.99264,Entire home/apt,225,30,0,,,87,236 +15056748,"Sunny private bedroom in Bushwick, Brooklyn",20598700,Natalia,Brooklyn,Bushwick,40.70015,-73.92507,Private room,40,1,5,2017-06-30,0.15,1,0 +15057686,"Home 4 Medical Professionals - The ""Parasthesia""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68785,-73.95046,Private room,54,30,0,,,43,285 +15057717,Master Bedroom— Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74653,-73.9739,Private room,115,1,15,2018-10-14,0.44,3,7 +15057784,Furnished Battery Park Apartment,80603103,Gary,Manhattan,Battery Park City,40.70707,-74.01702,Entire home/apt,105,30,0,,,1,0 +15058410,Spacious 1BD Luxurious room in Queens NYC,95101238,David,Queens,Ozone Park,40.68287,-73.85981,Private room,65,2,41,2019-06-03,1.20,1,353 +15059292,HUGE ROOM IN CENTER CITY! AMAZING LOCATION!,95205288,Anush,Manhattan,Midtown,40.76276,-73.97652,Private room,110,4,32,2019-06-17,0.94,1,167 +15060262,Amazing Brooklyn Townhouse Studio,34126778,Kwame,Brooklyn,Bedford-Stuyvesant,40.6898,-73.93746,Private room,99,7,0,,,1,72 +15062944,"Private full bed, prime location",10737943,David,Manhattan,Upper West Side,40.78017,-73.97574,Private room,47,30,10,2019-05-28,0.31,10,342 +15064512,The Center of NYC,24561882,Todd,Manhattan,Greenwich Village,40.73499,-73.99254,Private room,150,2,36,2019-06-09,1.06,1,13 +15065696,Spacious Williamsburg 2 Bedroom w/ Balcony & W/D,2805553,Diana,Brooklyn,Williamsburg,40.71096,-73.95685,Entire home/apt,249,6,49,2018-11-30,1.46,1,0 +15066466,★ Unreal Loft w/ Huge Private Roofdeck ★,83909332,David,Manhattan,Nolita,40.72222,-73.99545,Entire home/apt,225,2,15,2017-05-07,0.44,1,0 +15066701,"Huge, modern 3-bed 2-bath, 20mins from Manhattan",29637078,Chris,Brooklyn,Bedford-Stuyvesant,40.68881,-73.9497,Entire home/apt,195,2,128,2019-06-25,3.77,1,93 +15066761,Serene private room in chic Astoria apartment,72572525,Samantha,Queens,Astoria,40.76145,-73.92273,Private room,90,3,6,2017-10-23,0.18,2,10 +15067291,Manhattan Private Room with a Garden view (Room 2),45913415,Grisula,Manhattan,Harlem,40.8117,-73.94563,Private room,64,3,97,2019-07-05,2.90,2,272 +15068067,Historic Serene Chelsea Brownstone 2.5 Bed,9035097,Alex,Manhattan,Chelsea,40.74787,-74.00088,Entire home/apt,750,30,42,2019-01-04,1.24,1,281 +15069131,Walk to Yankee Stadium; revel in the atmosphere.,8815256,Thomas,Bronx,Concourse Village,40.82974,-73.92092,Entire home/apt,159,1,0,,,1,89 +15069259,Cozy Room in Historic BedStuy,57793192,Daniel,Brooklyn,Bedford-Stuyvesant,40.69264,-73.94267,Private room,59,3,0,,,1,0 +15071519,Sunlight + Space on Eastern Parkway,73046105,Yosef And Chava,Brooklyn,Crown Heights,40.67046,-73.94156,Entire home/apt,105,2,4,2016-12-05,0.12,1,0 +15073369,Lovely West Village Apt. Avail: May 25 - June 26,1678050,Liam,Manhattan,West Village,40.72989,-74.00541,Entire home/apt,215,30,16,2017-05-16,0.48,2,0 +15074005,"Home 4 Medical Professionals - The ""Trigeminal""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68943,-73.95186,Private room,54,30,0,,,43,328 +15079046,Quiet Clean and Charming! Entire Apt Fri-Sun!,43825948,Jeanie,Manhattan,Inwood,40.86582,-73.92582,Private room,79,4,26,2019-05-24,0.78,1,238 +15079215,Stay in Solar Powered Apartment in NYC!!!,2402292,Tamara,Queens,Long Island City,40.75957,-73.92863,Entire home/apt,155,2,95,2019-06-19,2.86,1,309 +15080267,"Huge Brownstone,Private Garden- Pet chicks & eggs.",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69059,-73.95602,Private room,99,3,20,2019-02-12,0.61,4,90 +15080936,"Home 4 Medical Professionals- The ""Tamponade""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68979,-73.95048,Private room,57,30,1,2017-10-07,0.05,43,216 +15080994,Cozy room in Times Square .,95419310,Felipe,Manhattan,Hell's Kitchen,40.76276,-73.98942,Private room,140,2,105,2018-12-15,3.09,1,0 +15081440,Eco private room for 4 best location to Mahanttan,92493393,Eddie & Lois,Staten Island,West Brighton,40.63215,-74.11403,Private room,69,2,56,2019-01-04,1.80,5,355 +15081663,"Large beautiful studio loft, high floor, views!",1998560,Jesse,Manhattan,Hell's Kitchen,40.76714,-73.98777,Entire home/apt,150,14,0,,,1,0 +15082723,"Williamsburg Private Room, Outdoor Space w/grill",33677512,Joseph,Brooklyn,Williamsburg,40.71204,-73.9656,Private room,95,3,29,2019-07-08,0.85,1,0 +15082930,"Beautiful, quiet, light-filled 1-bdrm apt",4169040,Elias,Brooklyn,Williamsburg,40.71111,-73.96299,Entire home/apt,150,4,12,2018-11-30,0.37,1,5 +15083267,Bedroom in the heart of NYC,3660702,Greg,Manhattan,Chelsea,40.74587,-73.99149,Private room,110,1,200,2019-06-19,5.87,4,60 +15083571,"Spacious 2 bdrm Apt. in the center of NYC, Apt 4C",17770287,Nina,Manhattan,Midtown,40.74949,-73.98277,Entire home/apt,175,30,5,2018-08-10,0.16,14,326 +15083823,Artists rustic 2 Room studio in Red Hook,7018895,Risha,Brooklyn,Red Hook,40.67748,-74.00989,Entire home/apt,85,2,132,2019-07-03,3.91,1,244 +15085230,Bright 1 Bedroom Apt Near Attractions and Transit,5437444,Panthea,Bronx,Bronxdale,40.85401,-73.86594,Entire home/apt,76,7,24,2018-08-24,0.71,1,0 +15085833,Brand New 1 Bedroom NYC Apartment & Outside Space,5525273,Bryan,Manhattan,Harlem,40.80466,-73.95582,Entire home/apt,399,3,1,2017-01-22,0.03,1,364 +15086143,$89.00 Queen Size Bed,95471771,Lynne,Queens,Jamaica,40.67537,-73.77355,Private room,79,1,5,2018-09-07,0.16,2,179 +15086862,Beautiful sunlight room in the heart of Bushwick!,2801522,Alina,Brooklyn,Bushwick,40.69935,-73.91332,Private room,41,4,4,2018-01-02,0.16,1,189 +15087285,Comfy Room in East Flatbush,77778146,Andre,Brooklyn,Flatlands,40.62979,-73.94431,Private room,85,1,2,2017-09-17,0.09,8,189 +15087746,Big Suite in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66684,-73.94753,Private room,120,30,8,2019-01-01,0.23,8,340 +15087800,Private Bedroom in Queen -JFK 8mins,74331597,Nickesha,Queens,St. Albans,40.68461,-73.76899,Private room,65,1,98,2019-06-23,2.87,5,180 +15088024,Cozy Private Room for Eager Travelers! :D,49807429,Russell,Brooklyn,Prospect-Lefferts Gardens,40.65916,-73.95074,Private room,54,3,169,2019-07-02,4.98,1,136 +15088367,"CLASSIC BRICK BROOKLYN. Rooftop, plants, books...",7834564,Rebecca,Brooklyn,Crown Heights,40.67415,-73.95627,Private room,60,4,2,2018-08-28,0.06,1,14 +15090815,The comfy spot away from home,89873907,Christine,Brooklyn,Cypress Hills,40.68004,-73.88709,Private room,51,3,0,,,1,317 +15094172,Spacious Sun Light Studio in Heart of Williamburg.,95552798,Susan,Brooklyn,Williamsburg,40.7176,-73.96148,Entire home/apt,250,3,19,2018-10-01,0.57,1,7 +15095005,"Charming, Cozy & Convenient 1 Bd Apartment",24696055,Pavle,Brooklyn,Park Slope,40.67634,-73.98311,Entire home/apt,125,14,10,2018-06-30,0.30,1,20 +15095408,One bedroom in luxury FiDi building,17423162,Rishab,Manhattan,Financial District,40.7083,-74.01406,Private room,80,5,1,2017-01-01,0.03,1,0 +15095439,Comfortable Harlem NYC 1 Bedroom Near Trains,43299076,Toyce,Manhattan,Harlem,40.82367,-73.93762,Entire home/apt,105,2,3,2017-08-13,0.09,1,0 +15095589,"Comfortable Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.65651,-74.0029,Private room,60,2,34,2019-06-13,1.00,2,181 +15095808,Cozy Getaway Rental Home,85202728,Lourdes,Queens,Holliswood,40.72468,-73.76681,Private room,239,3,11,2019-06-30,0.52,1,135 +15098153,Huge apartment in a beautiful house in Greenpoint,7694993,Charles,Brooklyn,Greenpoint,40.72596,-73.94643,Entire home/apt,200,3,8,2018-12-07,0.24,1,0 +15098355,Fantastic view of the Hudson river -1 Bedroom,23303311,Sandrine,Manhattan,Hell's Kitchen,40.76133,-73.99744,Entire home/apt,250,3,1,2016-10-15,0.03,1,158 +15098786,Cozy One Small Bedroom Soho House,95599073,Sarah,Manhattan,SoHo,40.72688,-74.0022,Entire home/apt,200,3,79,2019-06-23,2.33,1,28 +15099149,Brooklyn Space with Balcony!,16641600,Theresa,Brooklyn,Sunset Park,40.66303,-73.99431,Private room,75,10,13,2019-06-23,0.40,2,302 +15099669,Lower East Side large 1 bedroom,95608415,Cory,Manhattan,Lower East Side,40.71975,-73.98608,Entire home/apt,225,1,2,2016-10-20,0.06,1,0 +15100256,Central Park Vacation,22772389,Shane,Manhattan,Upper West Side,40.78492,-73.97992,Private room,110,2,41,2019-05-20,1.21,1,89 +15100760,Rockaway Beach House,22611054,Glenn,Queens,Arverne,40.58792,-73.80062,Private room,75,2,8,2019-05-18,0.68,1,67 +15100883,New york Multi-unit building,95623284,Pablo,Bronx,Fordham,40.86533,-73.89713,Private room,40,3,1,2018-09-24,0.10,1,179 +15101577,"Beautiful New Studio, perfect for couples!",278624,Joshua,Brooklyn,Fort Greene,40.69415,-73.97131,Entire home/apt,100,3,26,2018-05-04,0.76,1,0 +15102026,Large private bed/bath in 3BR close to transit,19983675,Ian,Brooklyn,Bedford-Stuyvesant,40.68678,-73.94467,Private room,55,2,3,2016-10-29,0.09,1,0 +15106603,Beautiful and Quiet Upper West Side Escape,9280524,Greg,Manhattan,Upper West Side,40.79778,-73.97232,Entire home/apt,185,2,1,2016-10-23,0.03,1,0 +15107136,GAMBA Z's Artist Residency for Traveling Artists,19187413,Melissa,Brooklyn,Williamsburg,40.70547,-73.93747,Private room,60,20,0,,,2,363 +15107952,"Cute, Sun filled Sudio Apartment in Manhattan",95467310,Karen,Manhattan,Midtown,40.74371,-73.98454,Entire home/apt,165,3,57,2019-04-28,1.70,1,157 +15110120,Great Location! Brooklyn Heights One Bedroom,3186019,Philippe,Brooklyn,Brooklyn Heights,40.69293,-73.99113,Entire home/apt,188,2,25,2019-06-27,0.74,1,30 +15111011,"Bright, Modern, Clean, Spacious, Brooklyn Home",25262268,Elaine,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95411,Entire home/apt,140,3,62,2019-06-26,1.88,1,275 +15111300,"Immaculate & Spacious Home - Astoria, Queens",95727501,Lydia,Queens,Long Island City,40.7579,-73.93052,Entire home/apt,115,2,5,2017-10-09,0.15,1,66 +15113377,"PH Cozy, Clean, Close to Everything",64821734,Whit,Brooklyn,Crown Heights,40.67933,-73.96219,Entire home/apt,150,2,16,2017-08-06,0.48,1,35 +15113479,3BR/2 bath/Duplex+YARD/Near Columbia/City College,79321760,Migdalia,Manhattan,Harlem,40.82158,-73.95592,Entire home/apt,300,4,69,2019-06-16,2.05,1,110 +15114181,Spacious Room In Luxury NYC Apartment,39300337,Maya,Manhattan,Murray Hill,40.74968,-73.97665,Private room,132,4,10,2019-07-05,0.57,2,364 +15114265,"★ UES | Cozy bedroom near LGA, free coffee & tea!",82143608,Eric,Manhattan,East Harlem,40.78762,-73.94303,Private room,95,1,78,2019-07-02,2.33,2,74 +15114433,Room In Gorgeous Gut Renovated NY Apartment,39300337,Maya,Manhattan,Murray Hill,40.74825,-73.97673,Private room,85,5,3,2019-01-14,0.17,2,364 +15114512,For all classical lover's 3@,95765103,Glory,Brooklyn,Sheepshead Bay,40.60892,-73.96221,Private room,65,3,14,2018-11-11,0.41,2,156 +15114550,"Spacious, Clean and Comfy 2 Bedroom",95766078,Alex,Brooklyn,Bedford-Stuyvesant,40.68385,-73.9523,Entire home/apt,150,2,66,2019-06-30,2.01,2,55 +15114715,Room in Bushwick Loft,36893255,Juliet,Brooklyn,Williamsburg,40.70623,-73.92808,Private room,100,4,12,2018-03-15,0.42,1,0 +15114935,Beautiful apt up in the heights,31070690,Shachar,Manhattan,Washington Heights,40.83839,-73.93819,Private room,119,2,12,2018-09-02,0.36,1,124 +15115143,46st Cozy Flat Midtown/Tms Squr/Javits Ctr/Pier 97,87565263,Clark,Manhattan,Hell's Kitchen,40.76338,-73.99552,Entire home/apt,200,3,170,2019-07-02,4.99,1,82 +15115382,Private Guestroom in Landmark Bklyn Brownstone,24155326,Mark Winston,Brooklyn,Crown Heights,40.67619,-73.94936,Entire home/apt,90,1,222,2019-06-25,6.61,1,32 +15115532,Cozy Duplex Studio in Manhattan,8832035,Dalibel,Manhattan,Kips Bay,40.7401,-73.98123,Entire home/apt,163,2,9,2019-01-01,0.27,1,0 +15116599,Greyhound Manor - 2 fullbd beds and private bathrm,87073939,Carol,Brooklyn,Bedford-Stuyvesant,40.68237,-73.92258,Private room,68,2,92,2019-07-02,3.17,2,139 +15122925,Sweet 2 Bedroom In South BK,15239415,Steven,Brooklyn,Bensonhurst,40.61238,-73.99805,Entire home/apt,100,3,54,2019-06-13,1.72,1,61 +15125599,Beautiful One Bedroom Apartment Near Central Park,3191545,Kyle,Manhattan,Theater District,40.761,-73.98522,Entire home/apt,169,30,5,2017-06-25,0.15,23,365 +15126304,Cozy studio,10209118,Emre,Manhattan,Upper East Side,40.77336,-73.95054,Entire home/apt,105,3,0,,,1,0 +15126360,"Live Like a NYer - small space, dope neighborhood",5424751,Joi,Manhattan,Midtown,40.75645,-73.97828,Entire home/apt,475,1,0,,,1,364 +15126483,Kitschy Corner Bedroom on a Friendly Astoria Block,4811900,Bridget,Queens,Ditmars Steinway,40.77021,-73.90947,Private room,70,2,59,2019-05-27,1.77,2,232 +15126686,Guest bedroom off of 30th ave,95886123,Melissa,Queens,Astoria,40.7656,-73.92293,Private room,90,1,43,2019-05-26,1.28,2,331 +15126948,"Large & Nice, Bright 1 Bdrm in East Village, NYC",23089531,Caitlin,Manhattan,East Village,40.72609,-73.98795,Private room,100,2,74,2019-06-24,2.20,3,62 +15128456,Clean room with private bathroom in Bushwick!,658618,Leticia,Brooklyn,Bushwick,40.69025,-73.91251,Private room,65,1,23,2019-06-21,0.69,1,290 +15129261,STUDIO NEAR UPPER EAST SIDE HOSPITALS- MODERN,25237492,Juliana,Manhattan,Upper East Side,40.76095,-73.96143,Entire home/apt,110,30,10,2018-10-22,0.34,34,277 +15130158,Spacious 1 Bdrm in Queens w Manhattan views,95913669,Ali,Queens,Maspeth,40.73834,-73.90774,Private room,46,1,1,2016-09-26,0.03,1,0 +15131279,Gorgeous Bedroom in Brooklyn,92237522,Amaru,Brooklyn,Flatbush,40.63714,-73.95316,Private room,40,3,28,2019-06-15,2.64,2,54 +15131952,1 Bedroom in a shared space with AC & garden.,50546859,Maria,Brooklyn,Bushwick,40.68342,-73.90993,Private room,80,1,19,2019-06-30,0.58,1,88 +15132151,1 bedroom apartment in great neighborhood,95939781,Sharan,Manhattan,Murray Hill,40.74438,-73.97365,Entire home/apt,249,1,1,2016-09-22,0.03,1,0 +15132221,A great room on the Upper East Side,14409957,Alex,Manhattan,Upper East Side,40.77511,-73.9553,Private room,110,3,7,2018-04-18,0.26,1,0 +15133055,Sunny Bushwick room & bed with exposed brick wall,95949907,Nathaniel,Queens,Ridgewood,40.70512,-73.91386,Private room,48,1,6,2019-05-31,2.90,1,158 +15133087,Bright room in Brooklyn historic district,17840677,Jazzy,Brooklyn,Crown Heights,40.67019,-73.9318,Private room,50,2,77,2019-06-23,2.30,1,3 +15133612,"Beautiful 2BR Apt, 1 Min Walk to Major Subway!",68082479,Sunshine,Brooklyn,East New York,40.67293,-73.89548,Entire home/apt,135,30,68,2019-05-14,2.01,2,247 +15133721,"A Clean, Quite, Great room for NY visit.",95936966,Yenpo,Queens,Forest Hills,40.71871,-73.8532,Private room,59,3,9,2017-02-19,0.27,1,95 +15133923,Private bedroom & bath/Times Square & Central Park,78022684,Pamela,Manhattan,Midtown,40.7641,-73.97989,Private room,149,2,24,2017-06-19,0.71,2,0 +15133972,Friendly and kind!Clean and safe!Best hostel ever!,95958773,Maryna,Brooklyn,Brighton Beach,40.57608,-73.9614,Shared room,35,1,34,2019-06-01,1.01,3,343 +15134876,Lovely studio 2 min walk to train/ subway C),74179880,Silvia,Brooklyn,East New York,40.67502,-73.89004,Entire home/apt,85,3,33,2019-04-14,0.97,8,356 +15140447,NYC 1 bed - Uptown - Steps away from train,48814097,Erica,Manhattan,Washington Heights,40.85797,-73.93286,Entire home/apt,120,4,13,2019-04-21,0.39,1,42 +15140627,Stunning 4 Bed Tribeca Penthouse w/ Huge Terrace!,30283594,Kara,Manhattan,Tribeca,40.72125,-74.00691,Entire home/apt,894,30,0,,,121,280 +15141661,New Development Prime Soho 2 Bedroom Apartment,30283594,Kara,Manhattan,SoHo,40.7249,-74.00105,Entire home/apt,643,30,0,,,121,249 +15141938,In a Chelsea loft: A PERFECT private room & bath,79289737,Yochi,Manhattan,Chelsea,40.74348,-73.99365,Private room,180,1,205,2019-07-05,6.07,1,90 +15142409,Union Square - Interior designer - Private 1 bdr,96024343,Julie,Manhattan,Gramercy,40.73405,-73.98862,Entire home/apt,299,1,103,2019-06-30,3.11,1,335 +15142578,Sunny bedroom in AMAZING LOCATION Williamsburg,6103075,Aviva,Brooklyn,Williamsburg,40.71435,-73.96336,Private room,60,14,1,2017-09-30,0.05,1,341 +15144105,Cosy room in Brooklyn Apartment,75458749,Beck,Brooklyn,Flatbush,40.64026,-73.95347,Private room,45,3,2,2016-10-19,0.06,2,0 +15144127,Sunny and Spacious Room in Sunset Park Apartment,23495738,Jesse,Brooklyn,Sunset Park,40.64487,-74.00893,Private room,50,1,49,2019-06-30,1.44,1,90 +15145285,UES charm,21255768,Breanne,Manhattan,Upper East Side,40.77962,-73.95069,Entire home/apt,300,1,0,,,1,0 +15147021,Big 2 Bedroom house w/ private yard. Graham L Stop,1903495,Pete,Brooklyn,Williamsburg,40.71411,-73.94402,Entire home/apt,151,2,13,2018-08-28,0.41,1,188 +15147943,303 1,96080998,Hector,Brooklyn,Downtown Brooklyn,40.69569,-73.98249,Private room,139,1,0,,,1,0 +15149137,Private Blu Penthouse Brownstone 1 BR Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.8155,-73.94578,Entire home/apt,160,5,102,2019-07-03,3.04,4,118 +15149187,Master bedroom in the heart of Greenpoint!,6314010,Kevin,Brooklyn,Greenpoint,40.72679,-73.94838,Private room,55,2,51,2017-09-26,1.52,1,0 +15149560,"Private, cozy room in the Center of Manhattan",13442714,Nuan,Manhattan,SoHo,40.72058,-73.99807,Private room,120,3,21,2019-06-15,0.63,2,82 +15149591,1 BDRM in Wyndham Midtown 45 *Great Location!,96098402,Wynpoints,Manhattan,Midtown,40.75376,-73.97132,Private room,699,3,4,2016-12-18,0.12,12,365 +15150240,Lovely Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Prospect-Lefferts Gardens,40.6552,-73.96063,Private room,65,7,2,2019-05-31,0.06,4,364 +15154905,"Huge bedroom suite in Greenpoint, Brooklyn",1103252,Arin,Brooklyn,Greenpoint,40.73287,-73.95211,Private room,130,1,104,2019-06-21,3.20,1,146 +15156627,Best part of Brooklyn! Large room in Bushwick.,39575635,Julian,Brooklyn,Bushwick,40.70342,-73.92829,Private room,70,1,15,2017-01-02,0.45,1,0 +15158194,Sunny Manhattan 1 bedroom in Landmark Brownstone,7245581,Michael,Manhattan,Washington Heights,40.83355,-73.93839,Entire home/apt,67,180,4,2019-05-31,0.15,19,331 +15158791,"SPECIAL: Luxury Apt, Close to Transp, Beach & Food",84558839,Mitch,Brooklyn,Manhattan Beach,40.58085,-73.93934,Entire home/apt,130,2,73,2019-06-30,2.15,1,330 +15159731,Executive Studio Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74018,-73.97962,Entire home/apt,117,30,9,2018-09-30,0.30,91,317 +15159758,Prospect Park family friendly apt,893136,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66198,-73.95798,Entire home/apt,98,2,4,2017-10-29,0.17,1,0 +15160268,Elegant Ground Floor Garden Apartment,345252,Thomas,Brooklyn,Crown Heights,40.67843,-73.96385,Entire home/apt,120,5,3,2016-10-21,0.09,3,0 +15160791,Private Room Williamsburg 3 Blocks from L Bedford,96186778,Masahiro,Brooklyn,Williamsburg,40.71865,-73.95875,Private room,75,3,72,2019-06-22,2.14,1,56 +15162388,West 57th Hilton Club in NYC - mid-November,96202421,Dan,Manhattan,Midtown,40.76529,-73.97713,Private room,350,3,0,,,1,0 +15164526,2MinToTrainsNiceRMaimonidesLutheranIndustryCity,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65607,-74.00306,Private room,60,1,25,2019-06-07,0.74,4,52 +15165888,The Brass Shack,33346283,Jonathan,Manhattan,Harlem,40.83185,-73.94806,Private room,40,5,19,2019-06-08,0.57,3,316 +15166481,Beautiful and Sunny Apt in heart of Williamsburg,96241686,Gee,Brooklyn,Williamsburg,40.70976,-73.96686,Private room,125,3,0,,,1,0 +15166520,2MinTrainLovelyRMaimonidesLutheranIndustryCity,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65306,-74.0039,Private room,60,1,34,2019-05-31,1.05,4,294 +15173557,Confort 1 bdrm convenient commute to Manhattan,11585415,Ding,Brooklyn,Williamsburg,40.7047,-73.94579,Private room,100,1,0,,,1,0 +15174230,"Clean, Safe, Convenient, Comfy in Harlem NYC",21142670,Michael,Manhattan,East Harlem,40.80771,-73.94112,Shared room,95,1,7,2018-12-17,0.21,1,179 +15175161,Camping in Nolita,91425821,Kristin,Manhattan,Nolita,40.72275,-73.99558,Entire home/apt,124,2,1,2016-09-30,0.03,1,0 +15176641,Near transportation private room,19923341,Ahmad,Queens,Whitestone,40.78573,-73.81062,Private room,85,1,0,,,1,365 +15177242,Cozy room in 2br Cobble Hill apartment,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68342,-73.9912,Private room,90,4,1,2016-10-02,0.03,2,0 +15177635,2MinTrainBigBeautyRMaimoLutherandIndustryCitty,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65657,-74.00358,Private room,70,1,23,2019-05-31,0.73,4,325 +15178725,2 BR Tropical Getaway near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.6437,-74.07944,Entire home/apt,150,1,23,2019-06-18,0.78,3,336 +15178929,Cozy NYC Studio (in Upper Manhattan / East Harlem),53309031,Madison,Manhattan,East Harlem,40.79528,-73.94418,Entire home/apt,93,2,38,2019-06-23,1.28,1,0 +15178955,Large 1 bedroom-Private Bath in 2 bed apartment,50860659,James,Queens,Ridgewood,40.70703,-73.90907,Private room,80,7,5,2019-01-04,0.15,1,188 +15179994,"BEAUTIFUL ROOM & PRIVATE BATHROOM...QUEENS, NY",10973901,Michelle,Queens,Kew Gardens Hills,40.71785,-73.82066,Private room,76,2,23,2019-06-18,0.68,1,178 +15180279,2 br in prime bushwick brooklyn,40611169,Sol,Brooklyn,Bushwick,40.69951,-73.91641,Entire home/apt,113,30,6,2018-09-30,0.18,5,365 +15181451,Lifestlye Stay In Downtown Brooklyn,2390711,Chen,Brooklyn,Fort Greene,40.69404,-73.98067,Entire home/apt,130,10,1,2016-11-13,0.03,1,0 +15181459,Time Square One Bedroom Apt,96361528,Wanhsuan,Manhattan,Theater District,40.76035,-73.98189,Entire home/apt,160,30,6,2018-08-21,0.19,1,168 +15182188,Amazing Location! NYC Midtown Nice Private Bedroom,96368935,Frank,Manhattan,Kips Bay,40.74385,-73.97827,Private room,89,3,3,2016-10-19,0.09,1,0 +15182306,Private room in 4 bdr apt!,96301426,Dillon,Brooklyn,Prospect-Lefferts Gardens,40.65714,-73.95,Private room,50,2,2,2018-08-23,0.17,1,0 +15187369,Clean and Cozy East Village Studio,96413175,Erik,Manhattan,East Village,40.72173,-73.98282,Entire home/apt,150,9,4,2017-11-15,0.13,1,0 +15188621,Comfortable One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67948,-73.96526,Entire home/apt,125,30,11,2019-05-21,0.34,3,87 +15188738,FABULOUS BED ROOM WITH 4 BEDS (JFK - 12 MINS),96424121,Pamela,Queens,St. Albans,40.70327,-73.76785,Private room,85,1,48,2019-06-08,1.41,3,180 +15189516,Cute House Near Train In Brooklyn,19694796,Stephen,Brooklyn,Kensington,40.63727,-73.97718,Private room,45,2,4,2017-01-01,0.13,1,0 +15189639,Prospect Heights,96347002,Noreen,Brooklyn,Crown Heights,40.67752,-73.96029,Entire home/apt,150,60,0,,,1,364 +15190865,Spacious private 2BR with Backyard Williamsburg,20309915,Lawrence,Brooklyn,Williamsburg,40.70778,-73.94884,Entire home/apt,170,2,94,2019-07-04,2.99,1,78 +15191179,Brand New small 1 Bedroom apt in Brooklyn,38790056,G,Brooklyn,Bath Beach,40.60979,-74.01121,Entire home/apt,85,1,38,2017-07-30,1.12,1,36 +15191225,Getaway❤️Romantic Retreat in a PRESIDENTIAL SUITE,64065593,ResortShare5,Manhattan,Midtown,40.75326,-73.97303,Entire home/apt,462,2,3,2018-12-17,0.10,13,299 +15191740,★★LUXURY at a MIDTOWN RESORT★★,64065593,ResortShare5,Manhattan,Midtown,40.75368,-73.97358,Private room,198,2,30,2019-04-11,0.89,13,333 +15191882,★★SLEEP ON CLOUD 9 IN OUR DOUBLE BED SUITE★★,64065593,ResortShare5,Manhattan,Midtown,40.75324,-73.97217,Entire home/apt,198,2,16,2018-11-08,0.51,13,263 +15192362,"Cozy private room, close to transportation",96335626,Josefina,Queens,Woodhaven,40.6922,-73.864,Private room,43,3,69,2019-05-21,2.08,1,283 +15194011,Gerrie,95471771,Lynne,Queens,Jamaica,40.67627,-73.77059,Private room,65,1,3,2018-12-30,0.12,2,179 +15194855,"Clean, Cozy, and Spacious Brooklyn Row House",68538563,Chitra,Brooklyn,Cypress Hills,40.68978,-73.87017,Private room,41,2,8,2016-10-29,0.24,1,0 +15195093,Private Bedroom & Large Living Room - Times Square,33936240,Jeff,Manhattan,Hell's Kitchen,40.76084,-73.98936,Private room,89,5,1,2016-09-27,0.03,1,0 +15195491,Private Room w/ Private Bath in Heart of Bed-Stuy,33612454,Lucey,Brooklyn,Bedford-Stuyvesant,40.68655,-73.94299,Private room,80,2,106,2019-06-24,3.14,1,47 +15196650,Cozy East Village home away from home...,22073094,Page,Manhattan,East Village,40.72782,-73.9862,Private room,110,1,0,,,1,0 +15203342,"Cosy, Awesome, Private Room in UES",2222500,Valerie,Manhattan,Upper East Side,40.77799,-73.94935,Private room,80,5,9,2019-05-11,0.29,2,118 +15204218,CLEAN Room w/PRVT BATH_NearSubway_3 StopsToManhatn,24201188,Monika,Queens,Astoria,40.7591,-73.91525,Private room,75,4,87,2019-06-27,2.61,2,57 +15204878,PRESIDENTIAL Condo 1 BDRM Wyndham Midtown 45 NYC,96098402,Wynpoints,Manhattan,Midtown,40.75362,-73.97158,Private room,749,2,5,2016-12-31,0.15,12,365 +15205915,2BdrmPRESIDENTIAL Luxury CONDO In the Heart of NYC,96098402,Wynpoints,Manhattan,Midtown,40.7521,-73.972,Private room,799,4,3,2017-01-13,0.09,12,365 +15206157,1Bdrm DELUXE Fully Renovated CONDO Wyndham Midtown,96098402,Wynpoints,Manhattan,Midtown,40.75331,-73.9733,Private room,599,3,8,2017-01-01,0.24,12,365 +15206272,Rooming has never been better.,95572265,Laura,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92676,Private room,75,3,18,2019-03-14,0.54,2,311 +15206331,"Big Quiet, Clean and Respectful APARTMENT.",46576732,Rosa,Manhattan,Washington Heights,40.85842,-73.92928,Private room,79,1,7,2017-03-19,0.21,1,0 +15206607,STUDIO Condo in luxurious Wyndham Midtown 45 NYC,96098402,Wynpoints,Manhattan,Midtown,40.75294,-73.9719,Private room,699,3,3,2016-12-11,0.09,12,365 +15206836,Studio King Wyndham Midtown 45 Hotel,96098402,Wynpoints,Manhattan,Midtown,40.75351,-73.97196,Private room,499,3,12,2016-12-18,0.36,12,365 +15206909,Le Petit Palace De Brooklyn - Clean Comfy 4 BR Apt,96591454,Chantal,Brooklyn,East Flatbush,40.64383,-73.94902,Entire home/apt,175,3,71,2019-07-01,2.23,1,162 +15207725,HugeTropical Bedrm near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.64057,-74.0786,Private room,110,1,20,2019-07-01,0.63,3,337 +15215887,Spacious Studio Apartment with Full Size Kitchen,96677104,Charles,Manhattan,Hell's Kitchen,40.76615,-73.98408,Private room,189,15,0,,,1,0 +15216398,Whimsical & Cute Private Room in 2 Bdrm Apt,3360346,Christen,Brooklyn,Williamsburg,40.71622,-73.94273,Private room,50,14,54,2019-05-06,1.61,2,86 +15216399,For all classical lover's,95765103,Glory,Brooklyn,Sheepshead Bay,40.60803,-73.96211,Private room,50,3,15,2019-03-31,0.45,2,211 +15216703,Downtown Dream on the Park,6107166,Julia,Manhattan,Chinatown,40.71348,-73.99135,Entire home/apt,150,20,38,2019-07-05,1.13,1,29 +15216895,Artist apt w/ Private room in Bed Stuy,50207365,Ben,Brooklyn,Bedford-Stuyvesant,40.69653,-73.94994,Private room,50,2,5,2017-10-22,0.15,1,0 +15218066,1Bdrm Deluxe WYNDHAM MIDTOWN 45*Great Location NYC,96098402,Wynpoints,Manhattan,Midtown,40.75388,-73.97308,Private room,799,3,2,2016-11-05,0.06,12,365 +15218299,Hotel Style KG/QN Room WYNDHAM MIDTOWN 45,96098402,Wynpoints,Manhattan,Midtown,40.75344,-73.97207,Private room,499,3,7,2016-12-09,0.21,12,365 +15218342,Cozy bright studio flat - Soho/Village,49645950,Karen,Manhattan,SoHo,40.7263,-74.00344,Entire home/apt,189,2,136,2019-07-06,4.09,2,30 +15218579,2 Double Bed WYNDHAM MIDTOWN 45 *NYC*,96098402,Wynpoints,Manhattan,Midtown,40.75359,-73.97295,Private room,649,2,13,2017-10-08,0.39,12,365 +15218699,2Bdrm PRESIDENTIAL CONDO Wyndham Midtown 45 Hotel,96098402,Wynpoints,Manhattan,Midtown,40.75375,-73.97295,Private room,799,4,3,2016-12-28,0.09,12,365 +15219855,Spacious one bedroom in Union Sq/Greenwich Village,10920393,Andrew,Manhattan,Greenwich Village,40.73506,-73.99203,Entire home/apt,275,2,5,2017-01-01,0.15,1,0 +15220143,Cozy Clean Room in Manhattan's Upper West Side,1317884,Angela,Manhattan,Upper West Side,40.79512,-73.9733,Private room,100,2,45,2019-05-24,1.36,1,83 +15221767,Charming pre-war near Central Park,22862376,Maimouna,Manhattan,Harlem,40.79992,-73.95502,Entire home/apt,70,30,14,2019-05-31,0.76,1,50 +15221833,Full size bed with drawer space!,75770804,Alyssa Faye,Manhattan,Harlem,40.82088,-73.93879,Private room,35,1,0,,,1,0 +15222861,"Private! entire studio, private bath, own entrance",33614329,Walter,Brooklyn,Bushwick,40.69555,-73.93069,Entire home/apt,95,1,81,2019-07-03,2.42,4,193 +15222972,Minimalistic 1 bedroom in the heart of Manhattan,4071035,D&N,Manhattan,Two Bridges,40.71231,-73.99257,Entire home/apt,140,3,137,2019-06-20,4.07,1,154 +15223434,new sunshine room in chinatown train F is around,89386217,Na,Manhattan,Chinatown,40.7135,-73.99121,Private room,75,1,318,2019-06-19,9.39,1,51 +15226075,Cozy 4 Bedroom's Times Square Apartment!,68315940,Patrick,Manhattan,Theater District,40.76093,-73.98327,Private room,302,3,0,,,1,179 +15226875,Versatile private room in Harlem/Hamilton Heights!,31616043,Edward,Manhattan,Harlem,40.82377,-73.94981,Private room,65,4,42,2019-06-18,1.34,1,10 +15229456,Spacious 2 Bedroom NYC Apt with River Views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76027,-73.99826,Entire home/apt,399,30,0,,,121,365 +15229619,Bluebird Hell's Kitchen Studio Apartment + Spa!!!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76221,-73.99795,Entire home/apt,321,30,0,,,18,365 +15230053,Bluebird Hell's Kitchen 1-BR + Full Service Spa!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76115,-73.99823,Entire home/apt,499,30,0,,,18,146 +15230339,Bluebird Lavish 1-BR Apt 1 Mile from Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7619,-73.99819,Entire home/apt,534,30,0,,,18,365 +15230576,Bluebird Hells Kitchen 2-BR Apt + Full Service Spa,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76075,-73.99893,Entire home/apt,748,30,0,,,18,365 +15230938,Bluebird Lavish 2-BR Apt Within Mile of Times Sq.,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7602,-73.998,Entire home/apt,748,30,0,,,18,185 +15232708,Bedroom w/ Gorgeous Tree Lined and River View,2118206,Andrea,Manhattan,Washington Heights,40.8337,-73.9458,Private room,33,10,5,2019-05-12,0.16,1,44 +15232776,2 Bedroom in the heart of Williamsburg,12334451,Nina,Brooklyn,Williamsburg,40.71958,-73.96123,Entire home/apt,350,2,19,2019-06-30,0.58,1,179 +15233134,Bluebird Deluxe 1-BR Apartment Near Central Park!,95459395,Bluebird,Manhattan,Midtown,40.76574,-73.98188,Entire home/apt,534,30,0,,,18,316 +15233387,#Bluebird Elegant 1-BR Apartment Near Times Square,95459395,Bluebird,Manhattan,Midtown,40.7671,-73.98148,Entire home/apt,300,30,0,,,18,364 +15233592,Bluebird Deluxe 2-BR Apartment Near Central Park!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76714,-73.9834,Entire home/apt,748,30,0,,,18,333 +15234201,#BBS 2-BR Apartment Near Times Square *Specials*,95459395,Bluebird,Manhattan,Midtown,40.76487,-73.98238,Entire home/apt,748,30,0,,,18,364 +15234755,Luxury One Bedroom,10528,Olivier,Manhattan,Upper West Side,40.77727,-73.98453,Entire home/apt,200,30,9,2019-02-09,0.28,2,139 +15234771,"LES ‘GEM’ - 1BR APARTMENT, GREAT LOCATION, STOCKED",85923274,Stewart,Manhattan,Lower East Side,40.72195,-73.98698,Entire home/apt,214,2,15,2019-05-20,0.48,1,17 +15235535,Nice private room in hip and trendy Brooklyn,59488330,Carla,Brooklyn,Bushwick,40.68687,-73.91564,Private room,40,2,21,2018-07-15,0.63,1,185 +15238184,Peaceful Private Room in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6883,-73.90596,Private room,39,2,104,2019-06-09,3.09,4,174 +15238740,Room for rent,17125263,Mario,Manhattan,East Harlem,40.79655,-73.93848,Private room,75,3,54,2019-07-07,1.61,2,271 +15241968,Wonderful Room in South Harlem near Central Park,79738498,Heroni,Manhattan,Harlem,40.8014,-73.95793,Private room,100,2,12,2017-05-28,0.36,1,0 +15246070,Lovely&Morden bedroom near everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80039,-73.96724,Private room,49,1,56,2019-04-19,1.83,6,326 +15247262,Charming 1 Bedroom Garden Apt,10777266,Aitan,Brooklyn,Prospect Heights,40.67688,-73.96735,Entire home/apt,185,3,109,2019-06-23,3.25,1,269 +15248135,Sun-lit room w/in steps of best of Williamsburg,48107620,Nathan,Brooklyn,Williamsburg,40.71145,-73.95887,Private room,100,3,9,2017-10-27,0.27,1,0 +15248948,Spacious quiet second floor brownstone apartment,22129681,Nicola,Brooklyn,Carroll Gardens,40.68048,-73.99322,Entire home/apt,130,4,8,2018-09-08,0.24,1,0 +15249063,Gorgeous 2 Bedroom apartment /Upper East side,12008116,Cristina,Manhattan,Upper East Side,40.77341,-73.95025,Entire home/apt,375,1,16,2019-06-23,0.51,1,110 +15249671,"East Brodway in Lower East Side, quiete and cute!",96975337,Paolo,Manhattan,Chinatown,40.71333,-73.9916,Private room,69,30,1,2016-12-16,0.03,1,359 +15250033,Luxurious Guestroom w/Private Bathroom & Entrance,96978953,Christine,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.95725,Private room,125,2,27,2019-05-09,0.88,1,136 +15250168,Bright Loft Room in a Charming Brooklyn Apartment,24273714,Aracelis,Brooklyn,Williamsburg,40.71381,-73.93903,Private room,85,1,31,2019-06-30,0.93,3,279 +15250435,"Huge Private Bedroom, Patio, + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.83014,-73.94656,Private room,59,3,49,2019-06-03,1.51,2,203 +15252848,Luxury bedroom - Nomad Chelsea area,52183380,Andy,Manhattan,Chelsea,40.74381,-73.9923,Entire home/apt,110,30,2,2016-10-22,0.06,1,0 +15253135,Huge 1BR Luxury Apartment in Williamsburg,1022070,Peter,Brooklyn,Williamsburg,40.71113,-73.95296,Entire home/apt,250,2,6,2017-01-01,0.18,1,0 +15253883,Spacious & Bright Midtown 1 Bedroom -Elevator Bldg,96867847,Matthew,Manhattan,Midtown,40.75723,-73.96313,Entire home/apt,175,2,10,2018-08-29,0.31,1,0 +15255254,Private room with private bathroom,8402190,Amanda,Brooklyn,Greenpoint,40.72342,-73.94838,Private room,99,2,38,2019-06-23,1.13,1,89 +15256150,"Newly Renovated, Bright 1 BR in Central Manhattan",27803037,Rebecca,Manhattan,Kips Bay,40.74089,-73.98094,Entire home/apt,175,3,20,2018-09-17,0.61,1,0 +15257524,Cozy Brooklyn Room,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91359,Private room,38,30,5,2018-10-14,0.15,4,0 +15259634,Amazing & Clean NYC Private Room by #1 Train,30499687,Jovanni & Natasha,Bronx,North Riverdale,40.90175,-73.89761,Private room,77,2,9,2017-04-30,0.29,2,0 +15260962,Luxury 2BR Penthouse in the hearth of Soho (Nyc),26830685,Gaia&Pietro,Manhattan,SoHo,40.72575,-74.00128,Entire home/apt,850,3,32,2019-06-24,1.04,1,262 +15261309,Private Room with a patio in Park Slope Brooklyn,17243984,Phines,Brooklyn,Sunset Park,40.66198,-73.98964,Private room,90,2,0,,,1,0 +15261353,Sunny Studio in Midtown Manhattan,2742827,Christiane,Manhattan,Kips Bay,40.74533,-73.9772,Entire home/apt,128,2,5,2018-05-28,0.19,1,0 +15262831,THE PRIVACY DEN ~ 5 MINUTES TO JFK,97086824,Miss Dy,Queens,Springfield Gardens,40.66735,-73.76647,Entire home/apt,49,1,434,2019-06-19,12.84,1,102 +15266254,The Manhattan Club in the heart of midtown!!!!,62563056,Endless Resort Options,Manhattan,Midtown,40.76382,-73.98007,Entire home/apt,305,4,0,,,1,124 +15266302,Borough Park/Kensington 3 room Apartment,38965064,Chaim,Brooklyn,Borough Park,40.63561,-73.97961,Entire home/apt,83,7,1,2017-04-18,0.04,1,0 +15268575,Private room in charming Brooklyn Apartment,219970,Fely,Brooklyn,Crown Heights,40.67642,-73.961,Private room,80,2,3,2016-11-28,0.09,2,0 +15268654,NEW & PRIVATE 2 bedroom apt in stately townhouse,67213712,Ken,Brooklyn,Gowanus,40.68255,-73.9899,Entire home/apt,400,30,118,2019-06-06,3.53,1,265 +15268792,"Fab Studio with Gym, Doorman & Elevator Sleeps 4",95436015,Abc,Manhattan,West Village,40.73322,-74.00853,Entire home/apt,450,30,12,2019-01-06,0.38,1,165 +15271865,Clean Private Bedroom - Bushwick Brooklyn New York,68746033,Leslie,Brooklyn,Bedford-Stuyvesant,40.68303,-73.91238,Private room,80,1,2,2016-10-09,0.06,1,0 +15271897,UNION SQUARE / Perfect Cozy Private Room!,97166562,Haru,Manhattan,Gramercy,40.73402,-73.9862,Private room,82,1,88,2019-06-20,2.76,1,14 +15273936,*ENJOY NYC*New Renovated Apartment(Private room),95796044,Sasha,Bronx,Woodlawn,40.88253,-73.86951,Private room,68,1,6,2018-10-09,0.19,1,87 +15280873,Cozy Apt in NYC Brownstone,97243693,Joyce,Manhattan,Murray Hill,40.74699,-73.97659,Entire home/apt,200,3,62,2019-07-01,3.19,2,49 +15282119,Private Retreat in Brooklyn,97122846,Tim & Rachel,Brooklyn,East Flatbush,40.65141,-73.92512,Entire home/apt,75,3,109,2019-06-20,3.29,1,232 +15282411,Private room for 1 or 2 in Chelsea. Prime location,2764786,Lindsay,Manhattan,Chelsea,40.74853,-73.99593,Private room,120,1,18,2017-01-11,0.55,1,0 +15284819,Wyndham Midtown 45 New York City Studio,60085031,Vacation Generation,Manhattan,Midtown,40.7536,-73.97306,Entire home/apt,125,2,9,2017-09-15,0.34,1,0 +15285181,Comfy room in quaint apartment above the Park,40411263,Katharine,Manhattan,East Harlem,40.79523,-73.94278,Private room,39,120,0,,,1,173 +15286036,Spacious Tribeca loft! Roofdeck & close to trains,51373228,Jamie,Manhattan,Civic Center,40.71625,-74.00401,Entire home/apt,350,2,0,,,1,0 +15286645,Newly Renovated Studio Near Manhattan,97300191,Zia,Queens,Woodside,40.74767,-73.90721,Entire home/apt,110,2,9,2017-06-03,0.27,1,8 +15286858,Luxury Apartment in Williamsburg!,35433522,David,Brooklyn,Williamsburg,40.71258,-73.95191,Entire home/apt,349,5,5,2018-06-14,0.16,3,0 +15287016,1 bedroom in sunny Nolita apartment,24385779,Lauren,Manhattan,Nolita,40.7215,-73.99395,Private room,85,2,5,2017-03-11,0.16,1,0 +15288601,Amazing Space...Awesome Location...Private Room,97323051,Mike,Brooklyn,Prospect Heights,40.67431,-73.9651,Private room,66,3,3,2018-10-16,0.09,1,0 +15288813,1 Bedroom (Queen) Mins From JFK and Casino,52997121,Iwona,Queens,Jamaica,40.67518,-73.78046,Private room,75,1,45,2019-06-28,1.33,4,8 +15289231,Colorful Artist Apartment in Park Slope Brooklyn,27227850,Caroline,Brooklyn,South Slope,40.66634,-73.98185,Entire home/apt,144,1,32,2019-05-27,0.96,1,0 +15289766,Historic Townhome for Shoots/Videos,7850260,Raymond,Manhattan,Harlem,40.80594,-73.9454,Entire home/apt,550,1,2,2018-10-22,0.17,3,88 +15294943,Beautiful Private Room near Columbia University,21594748,Gabriel,Manhattan,Morningside Heights,40.80751,-73.96619,Private room,110,2,5,2017-09-15,0.15,2,0 +15296557,Bushwick Bedroom (Available Daily Again),11757212,Jasmine,Brooklyn,Bushwick,40.69804,-73.92816,Private room,51,1,45,2019-05-31,1.35,4,351 +15296957,Gatsby Room,89388277,Maria,Manhattan,Lower East Side,40.72203,-73.98986,Private room,118,1,2,2017-08-06,0.08,3,0 +15297194,Cozy Island Bedroom near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.64055,-74.0784,Private room,70,1,60,2019-06-16,1.84,3,336 +15297704,Gatsby Room 2,89388277,Maria,Manhattan,Lower East Side,40.72205,-73.9913,Private room,118,1,3,2018-02-24,0.17,3,0 +15297862,LUXURY SUTTON PLACE RESIDENCY~DOORMAN/GYM/ELEVATOR,2856748,Ruchi,Manhattan,Midtown,40.75936,-73.96293,Entire home/apt,250,30,0,,,49,364 +15298236,Gatsby Room 1,89388277,Maria,Manhattan,Lower East Side,40.72342,-73.99108,Private room,118,1,0,,,3,0 +15299630,Bright & spacious apartment in East Williamsburg,4360212,Anu,Brooklyn,Williamsburg,40.70912,-73.94513,Entire home/apt,135,2,22,2019-07-07,0.66,1,5 +15299748,EPIC VIEWS ❤️ Wyndham Midtown 45 at NYC Studio ❤️,64065593,ResortShare5,Manhattan,Midtown,40.7531,-73.97321,Private room,252,2,3,2018-10-18,0.09,13,324 +15301499,~**GORGEOUS DOWNTOWN LOFTS**~ MULTIPLE SPACES,76192815,Sam,Manhattan,Chinatown,40.71745,-73.99409,Entire home/apt,300,1,23,2019-03-27,0.69,5,364 +15301517,Clean and Sunny room near Midtown Manhattan,25843005,Daljit,Queens,Astoria,40.75786,-73.92808,Private room,49,2,108,2019-06-30,3.20,3,20 +15301748,Comfy Private Room w/ Big TV,94536810,Belkis,Bronx,Bronxdale,40.85585,-73.86486,Private room,40,5,65,2019-06-04,1.94,2,328 +15301964,Beautiful Bedroom by Prospect Park,97441717,Tracy,Brooklyn,Flatbush,40.65228,-73.96402,Private room,65,3,1,2016-10-13,0.03,1,0 +15301966,Bright and modern 1 BR in Williamsburg w/balcony,39054866,Kevin,Brooklyn,Williamsburg,40.71238,-73.96279,Entire home/apt,160,3,1,2016-10-09,0.03,1,0 +15302149,Naturally lit room in Artsy Bushwick,22225635,Auzi,Brooklyn,Bushwick,40.69108,-73.91531,Private room,65,5,0,,,1,0 +15303092,Enjoy NYC and feel like your home!,97454026,Diana,Manhattan,Washington Heights,40.85679,-73.932,Private room,60,2,60,2019-06-23,1.79,1,60 +15307603,Beautiful Large Room,92195100,Airamis,Bronx,Bronxdale,40.85236,-73.86632,Private room,35,1,114,2018-10-09,3.48,1,0 +15307735,An artistic experience,11018460,Patricia,Brooklyn,Williamsburg,40.7155,-73.95632,Private room,125,5,15,2019-06-04,0.46,2,288 +15308451,Large one bed room pied a terre in Park Slope,1706073,Jean Victor,Brooklyn,Park Slope,40.67293,-73.98609,Entire home/apt,105,30,7,2018-10-28,0.24,1,189 +15308517,Fort Greene - Whole Apartment with washer & dryer,2910527,Lauren,Brooklyn,Fort Greene,40.68725,-73.97458,Entire home/apt,150,2,4,2017-05-13,0.12,1,0 +15309572,Spacious Room in IDEAL LES LOCATION,97513787,Daniel,Manhattan,Chinatown,40.7164,-73.99188,Private room,73,25,13,2019-05-08,0.48,5,38 +15310116,Sunny Space in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66631,-73.94764,Private room,95,30,3,2018-09-03,0.15,8,189 +15310417,Cozy Space in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66596,-73.94936,Private room,75,1,13,2018-12-06,0.39,8,311 +15310580,Nice apartment in Gramercy.,27336207,Juan Eduardo,Manhattan,Gramercy,40.73736,-73.98025,Entire home/apt,120,5,8,2018-02-25,0.25,2,0 +15311253,"2 Bedrooms, Luxury Doorman, Grand Central, Perfect",52950465,Gal,Manhattan,Midtown,40.75241,-73.97081,Entire home/apt,199,30,0,,,12,226 +15311733,Best of Wall Street (Full Studio ALL yours),28717495,Yasir,Manhattan,Financial District,40.70651,-74.00656,Entire home/apt,199,2,1,2016-10-10,0.03,1,0 +15311833,"Ideal vacationing spot for beach lovers, near JFK",97536353,Chadine,Queens,Arverne,40.58929,-73.79441,Private room,60,3,3,2017-06-21,0.10,2,0 +15312128,"Netflix and Rest, One quaint bedroom in Ft. Greene",97538710,Malik,Brooklyn,Fort Greene,40.68906,-73.97897,Private room,88,1,82,2019-06-09,2.45,1,67 +15314054,Cityscape Views at Lux 1 Bed/1 Bath in Lincoln Sq.,836168,Henry,Manhattan,Upper West Side,40.78065,-73.98253,Entire home/apt,1000,30,17,2017-04-16,0.51,11,365 +15314886,Artsy Duplex in Chelsea w/ Huge Terrace,7139819,Nauman,Manhattan,Chelsea,40.74738,-74.00134,Entire home/apt,179,3,3,2017-05-20,0.09,2,0 +15321266,Spacious 1BR Apt / Hamilton Heights,219320,Matt,Manhattan,Harlem,40.82218,-73.94593,Entire home/apt,120,1,4,2016-10-30,0.12,1,0 +15321861,Basement private room w/AC near LaGuardia Airport,97631810,Giovanni,Queens,East Elmhurst,40.75849,-73.87068,Private room,50,1,218,2019-07-07,6.91,1,153 +15323284,Comfortable Chelsea Room,2657430,Rahul,Manhattan,Chelsea,40.74681,-74.00006,Private room,110,7,3,2018-08-03,0.21,2,0 +15324045,TOWNHOUSE (Backyard/Rooftop + Photoshoots/Events),9049657,Benjamin,Brooklyn,Bushwick,40.69003,-73.90891,Entire home/apt,390,1,131,2019-07-07,4.11,1,321 +15325255,Wyndham Studio Condo with Kitchen SPECIAL TODAY!,96098402,Wynpoints,Manhattan,Midtown,40.75175,-73.97218,Private room,269,3,8,2016-12-06,0.24,12,365 +15326614,Private Room in Williamsburg,52428829,Manuel,Brooklyn,Williamsburg,40.70683,-73.94582,Private room,60,1,0,,,1,0 +15327553,Huge Room in Ideal LES location,97513787,Daniel,Manhattan,Chinatown,40.71592,-73.99332,Private room,65,25,20,2018-12-12,0.90,5,365 +15327611,Cosy Appartment in Upper East Side,15636131,Rémi,Manhattan,Upper East Side,40.76952,-73.94892,Entire home/apt,150,7,12,2019-04-18,0.39,1,32 +15328018,"Comfy & Vibrant Bedroomm of Bushwick, Jefferson L",93202618,Ritchie,Brooklyn,Bushwick,40.70588,-73.92302,Private room,45,1,7,2017-01-22,0.21,1,0 +15328237,"One Room in Luxury Apartment, 5min to Midtown",47617616,Joanna,Queens,Long Island City,40.74569,-73.94684,Private room,105,4,10,2019-05-29,0.33,1,70 +15328242,PRIVATE BED ROOM 12 MINS FROM JFK,96424121,Pamela,Queens,St. Albans,40.70348,-73.76621,Private room,55,1,71,2019-05-27,2.12,3,365 +15328271,"Huge Apt 5 miles to Manhattan, Parking available",77665938,Mag,Queens,Maspeth,40.72693,-73.90319,Entire home/apt,105,1,92,2019-06-25,2.75,1,316 +15329520,"JFK 20 and LGA 30, Heat Private 2 Bedrooms",92467975,Farida,Queens,Kew Gardens Hills,40.73216,-73.81841,Private room,399,1,0,,,1,241 +15333336,YOUR HOME AWAY FROM HOME -- NYC WELCOMES YOU!,84684940,Clyde,Brooklyn,Flatbush,40.64747,-73.96171,Private room,75,3,65,2019-05-17,1.95,2,335 +15334973,Chic room by the park in Bushwick,12573650,Patrick,Brooklyn,Bushwick,40.70191,-73.92298,Private room,38,1,11,2017-04-19,0.35,1,0 +15336596,Private bedroom in artsy NYC apartment.,77010815,Eean,Bronx,Norwood,40.8722,-73.87607,Private room,50,3,22,2019-06-02,0.76,1,342 +15337711,Fun time in Williamsburg stylish apartment!,97779735,Satomi,Brooklyn,Williamsburg,40.70879,-73.94937,Private room,70,7,15,2019-04-28,0.45,1,292 +15338155,BEAUTIFUL BEDROOM IN COZY APARTMENT,22534244,Jose,Queens,Woodside,40.74845,-73.89665,Private room,85,1,42,2019-06-28,1.26,1,364 +15339227,"Spacious room in a clean, quiet and cozy home.",97794621,Luis,Queens,Sunnyside,40.73922,-73.9265,Private room,70,1,76,2019-07-07,2.28,1,76 +15340613,Private Room on the Upper West Side,31932014,Andrea,Manhattan,Upper West Side,40.78319,-73.97762,Private room,85,2,8,2017-08-03,0.24,1,89 +15340649,Huge Beautiful Loft in the Heart of Williamsburg,114590,J.P.,Brooklyn,Williamsburg,40.72049,-73.96027,Entire home/apt,180,3,7,2019-06-24,0.21,1,54 +15340854,Amazing Townhouse in Harlem,97808036,Chelsea,Manhattan,Harlem,40.80869,-73.94205,Entire home/apt,600,4,16,2019-04-27,0.50,1,96 +15341726,Lovely Large Bedroom in West Harlem,42325192,Lauren,Manhattan,Harlem,40.81463,-73.95106,Private room,75,3,11,2018-12-31,0.35,1,14 +15342056,"Cozy Private Bedroom, Access to Terrace",918668,Eric,Brooklyn,Crown Heights,40.677,-73.95923,Private room,200,30,0,,,1,88 +15342164,JFK 15 AND LGA 18 MINUTES,97822063,Chima,Queens,St. Albans,40.70577,-73.75932,Private room,47,3,2,2018-12-16,0.06,1,56 +15342457,Beautiful 3 BR-2 BA duplex with deck in Park Slope,3998751,Gisele,Brooklyn,Windsor Terrace,40.65927,-73.97832,Entire home/apt,300,2,6,2018-12-26,0.18,1,16 +15342701,"New, elegant private apartment for 2 near JFK",97825348,Frank,Queens,Arverne,40.59065,-73.79563,Entire home/apt,150,2,20,2019-07-07,0.61,1,76 +15344255,"Trendy, Fully-Renovated Studio in West Chelsea",97842006,Michael,Manhattan,Chelsea,40.74624,-74.00371,Entire home/apt,225,1,51,2019-06-29,1.63,1,9 +15344495,MODERN COZY NYC APT,97763801,Huong,Queens,Astoria,40.7687,-73.91975,Entire home/apt,149,4,5,2018-04-07,0.15,1,66 +15344749,Comfy Apt in Chinatown/Lower East Side,30702769,Raymond,Manhattan,Chinatown,40.71305,-73.99443,Private room,100,1,154,2019-07-05,4.60,1,233 +15345019,NYC Firehouse-Greenpoint BRKLYN,88972153,Elizabeth,Brooklyn,Greenpoint,40.73218,-73.95647,Entire home/apt,425,3,0,,,1,344 +15345313,Bronx Beauty: Renovated historic rowhouse.,97853468,Steven,Bronx,Hunts Point,40.81658,-73.88889,Private room,59,14,13,2018-12-30,0.40,4,340 +15347268,Modern Luxury 2 Bed/ 2 Bath apartment in Midtown!,836168,Henry,Manhattan,Midtown,40.75425,-73.98312,Entire home/apt,2000,30,4,2017-03-11,0.12,11,365 +15349655,1 room in a 3 room LOFT,9271620,Arthur,Brooklyn,Williamsburg,40.71671,-73.94592,Private room,77,28,10,2018-12-30,0.30,1,315 +15354260,Beautiful 1-BDR apt 15 min from Manhattan,97961443,Nadia,Queens,Astoria,40.75954,-73.90548,Entire home/apt,129,20,0,,,1,0 +15355243,*PRIME* The ❤️ of Greenwich Village/SOHO SLEEPS 4,1862880,Joy,Manhattan,SoHo,40.72652,-74.00032,Entire home/apt,245,2,44,2019-06-18,1.34,1,0 +15355575,"Homey private room in Inwood, Manhattan",57954964,Sarah & JC,Manhattan,Inwood,40.86906,-73.9173,Private room,50,2,7,2018-10-08,0.23,1,155 +15355844,"Big East Village bedroom, heart of Manhattan",32707981,Ben,Manhattan,East Village,40.72396,-73.98941,Private room,120,2,5,2017-04-09,0.16,4,0 +15356132,1 RM in 3BR Brownstone: Quiet Upper East Side St.,16390627,Danny,Manhattan,Upper East Side,40.7723,-73.94746,Private room,55,8,1,2018-01-01,0.05,1,0 +15356673,WILLIAMSBURG AUTHENTIC ARTIST LOFT,1407676,Jessica,Brooklyn,Williamsburg,40.71727,-73.95753,Private room,110,1,102,2019-06-17,3.13,4,267 +15357493,Two Bedrooms with Dedicated Bath,5654072,Mark,Brooklyn,Flatbush,40.63503,-73.95127,Private room,150,3,10,2017-10-28,0.38,3,0 +15357503,Master Suite with Private Bath,5654072,Mark,Brooklyn,Flatbush,40.63409,-73.95245,Private room,71,3,20,2017-12-13,0.73,3,0 +15358881,Meatpacking Triplex - A small home within NYC,67097911,J.J.,Manhattan,Chelsea,40.74101,-74.00496,Entire home/apt,300,2,7,2017-08-05,0.21,1,0 +15359119,"Spacious, Sunny, 1 Bdrm Apt w/ King Bed",17796102,Gabriella,Manhattan,Inwood,40.86107,-73.92959,Entire home/apt,90,26,4,2019-06-27,0.35,1,58 +15360220,Bohemian Brooklyn Pad with Rooftop Garden Oasis,10109204,Alexandra,Brooklyn,Bushwick,40.70378,-73.91311,Private room,65,2,3,2018-02-10,0.09,1,0 +15360248,Modern Luxury Loft 3bd Williamsburg,76184970,Alex,Brooklyn,Williamsburg,40.71322,-73.9648,Entire home/apt,408,3,88,2019-06-26,2.68,1,267 +15360364,Cozy private room on the UES,51007432,Kristina,Manhattan,Upper East Side,40.7739,-73.94782,Private room,78,1,73,2019-05-17,2.18,1,1 +15360687,Modern & Hip in Bedstuy!,1454772,Brett,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94048,Entire home/apt,95,3,48,2019-06-29,1.57,1,338 +15360787,Large Bdrm/Full Bath for Guests/Gym/Elevator bldg.,98053423,Michelle,Manhattan,Harlem,40.80968,-73.94425,Private room,99,1,31,2019-07-06,2.63,1,123 +15361785,Central Park Sanctuary,97833986,Caro & Allen,Manhattan,Upper West Side,40.77851,-73.97645,Private room,77,4,93,2019-06-18,2.87,1,115 +15363266,Beautiful 1 bedroom apartment,3485640,Sophie,Manhattan,Washington Heights,40.83892,-73.94265,Entire home/apt,120,3,4,2019-05-28,0.13,1,7 +15367894,Bedford Stuyvesant / Clinton Hill 2 bedroom,2431238,Ted,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95444,Entire home/apt,125,3,93,2019-07-01,2.78,1,13 +15370219,Modern Apartment in Manhattan,30494687,Eduardo,Manhattan,Harlem,40.80887,-73.94889,Private room,90,3,3,2017-07-01,0.09,1,0 +15374564,Caribnb- Charming stay in a private 2 family home,33991916,Caribnb Hazel,Brooklyn,Flatbush,40.64361,-73.95367,Private room,86,2,53,2019-07-07,1.64,1,324 +15374777,Large room 5mins to NYC/Fridge/900Mb Internet,30384194,Patricio,Queens,Astoria,40.75771,-73.91385,Private room,99,3,47,2018-09-14,1.41,2,176 +15374796,Large UWS Apt close to Central Park,7610841,Jenny,Manhattan,Upper West Side,40.80088,-73.96194,Private room,115,2,72,2019-05-19,2.55,2,275 +15377187,Nature Lovers Dream,20862571,Marva,Brooklyn,Crown Heights,40.66892,-73.96079,Private room,32,2,1,2017-01-05,0.03,1,0 +15377407,MAGNIFICIENT LUX. STUDIO UNOBSTRUCTED RIVER VIEW,98267290,Heather,Manhattan,Upper West Side,40.77509,-73.98255,Entire home/apt,130,30,0,,,1,185 +15377806,Modern Room Uptown,8903368,Judith,Manhattan,Harlem,40.81668,-73.94407,Private room,100,1,3,2017-05-21,0.09,1,0 +15378469,"Private room with yard, in the heart of Bushwick",98279802,Philip,Brooklyn,Bushwick,40.70035,-73.92366,Private room,45,90,0,,,1,0 +15378960,BayRidge Cozy house near subway & shopping,98297464,Max,Brooklyn,Fort Hamilton,40.61937,-74.03132,Entire home/apt,95,6,20,2019-06-10,0.60,2,141 +15379480,In ❤️ of West Village- Entire Apt,16810685,Jennifer,Manhattan,Greenwich Village,40.72868,-73.99901,Entire home/apt,183,1,173,2019-07-07,5.21,1,271 +15379574,Private 2 BR Apartment Close to Subway,98308046,Pardis,Brooklyn,Bushwick,40.68946,-73.91537,Entire home/apt,150,2,110,2019-06-23,3.38,1,152 +15379923,Entire floor private 1 bedroom in Bushwick,1774499,Stephanie,Brooklyn,Bushwick,40.69909,-73.92279,Private room,75,3,2,2016-11-02,0.06,1,0 +15381675,"DESIGN, COLOR, MODERN, LIGHT!!! COOK'S KITCHEN!!!",98341498,Gabriel,Brooklyn,Bushwick,40.6886,-73.91209,Entire home/apt,150,4,77,2019-05-28,2.45,1,258 +15391726,Upper West Side & CENTRAL PARK at your doorstep,6357228,Brandon,Manhattan,Upper West Side,40.79915,-73.96086,Private room,90,14,0,,,1,0 +15392689,"Private, Spacious Bedroom in Harlem, single bed",7055854,Diane,Manhattan,East Harlem,40.80242,-73.94215,Private room,1500,4,1,2019-01-27,0.18,5,188 +15393322,Large Loft in Williamsburg,3002077,Jessica,Brooklyn,Williamsburg,40.71675,-73.96226,Entire home/apt,500,7,5,2018-12-30,0.16,1,106 +15393637,Uptown NEVER Felt so in the Middle of Everything,37435847,Jay,Manhattan,East Harlem,40.79534,-73.94526,Entire home/apt,100,1,73,2018-12-28,2.37,1,0 +15394295,1 Bedroom (Full) Mins From JFK and Casino,52997121,Iwona,Queens,Jamaica,40.67603,-73.78217,Private room,70,1,29,2019-01-09,0.90,4,8 +15394503,Cozy East Village Studio,7025954,Nathan,Manhattan,East Village,40.72188,-73.9826,Private room,99,3,11,2017-10-30,0.33,1,0 +15394525,"cozy, studio apartment in bed-stuy",56065753,Chary,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95593,Entire home/apt,80,1,5,2018-09-03,0.17,1,0 +15395942,"Relaxed, artist-inspired duplex in Bed Stuy",98485181,Christopher,Brooklyn,Bedford-Stuyvesant,40.6876,-73.92691,Private room,79,2,16,2019-06-16,1.12,1,173 +15396328,Private Room in Heart of East Village!,14295824,Josephine,Manhattan,East Village,40.72718,-73.98238,Private room,80,4,7,2019-01-03,0.33,1,0 +15396351,Bright studio in the heart of historic Harlem,20368225,Jessica,Manhattan,Harlem,40.80854,-73.94519,Entire home/apt,200,2,102,2019-06-21,3.50,3,101 +15397048,Huge 2 Bedroom in Brooklyn Brownstone,63746890,Alana,Brooklyn,Bedford-Stuyvesant,40.69002,-73.93733,Entire home/apt,100,3,92,2019-06-15,3.26,1,4 +15397893,Bright & chic 1BR in the West Village,22525595,Jasmine,Manhattan,West Village,40.73616,-74.00889,Entire home/apt,200,2,28,2019-05-23,1.32,1,66 +15399008,Spacious room in relaxing 2 BDR UWS apartment,46221302,Lana,Manhattan,Upper West Side,40.79858,-73.97301,Private room,95,6,4,2019-05-02,0.15,1,0 +15399031,Beautiful & Cozy Brownstone Apt In Gowanus,86592511,Chezi,Brooklyn,Gowanus,40.66734,-73.99383,Entire home/apt,135,2,19,2019-06-19,0.60,1,35 +15405532,NYU/UNION SQRE/EAST VILLAGE-QUIET STUDIO EAST 25TH,2856748,Ruchi,Manhattan,Kips Bay,40.73824,-73.97874,Entire home/apt,198,30,0,,,49,364 +15406357,Gorgeous Sunlit Modern Room on the Lower East Side,897121,Lori,Manhattan,Lower East Side,40.71838,-73.99149,Private room,85,1,135,2019-07-02,4.30,1,8 +15409309,"Cozy private bedrooms, near JFK & LGA.",42151184,Lisa,Queens,Kew Gardens,40.70899,-73.82814,Private room,90,90,0,,,1,365 +15411277,Discounted! Cute Unique 2BR Apartment in SoHo,1475812,Ignani,Manhattan,Nolita,40.72216,-73.99571,Entire home/apt,275,2,32,2019-07-01,1.14,3,41 +15411327,Very comfortable and cozy room in Williamsburg!!!,8113117,Kateryna,Brooklyn,Williamsburg,40.71228,-73.95323,Private room,80,2,181,2018-12-24,5.42,1,52 +15411945,"Clean, cozy bedroom in luxury building",28007844,Nan,Manhattan,Midtown,40.74459,-73.99061,Private room,108,1,1,2017-01-03,0.03,1,0 +15411988,Honey and milk - A creative studio apartment.,98714463,Georges,Manhattan,Hell's Kitchen,40.76043,-73.995,Private room,110,3,94,2019-06-24,2.83,1,26 +15419574,Historic Cottage-Style Garden Home in LIC,98810918,Robin,Queens,Long Island City,40.74629,-73.95199,Private room,95,3,56,2019-05-08,1.71,1,50 +15420038,Wonderful private room in Williamsburg,98816024,Elisa,Brooklyn,Williamsburg,40.7111,-73.94352,Private room,95,3,24,2018-06-25,0.73,1,5 +15421244,La Casa in Brooklyn: Stylish Apt. with Patio,98828133,Noelky,Brooklyn,Crown Heights,40.67183,-73.94934,Entire home/apt,160,2,129,2019-07-07,3.91,1,220 +15421279,comfortable private room in Hamilton Heights,21600813,Sajad,Manhattan,Harlem,40.82991,-73.94848,Private room,50,2,28,2018-08-26,0.85,1,0 +15422083,Comfy Room n Activist & Artist Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.68989,-73.95878,Private room,45,7,14,2018-09-30,0.42,3,364 +15422352,Private Room w/ .5 bath in Charming - West Harlem,62852828,Latrisha,Manhattan,Harlem,40.82415,-73.95283,Private room,200,2,0,,,2,89 +15423388,Designer's Loft in Williamsburg,25549229,Pauline,Brooklyn,Williamsburg,40.70677,-73.96745,Private room,101,1,91,2019-06-19,2.74,2,12 +15423552,Manhattan Upper West Side 1 BR by Central Park,98853519,Joe,Manhattan,Upper West Side,40.80209,-73.96196,Entire home/apt,174,4,12,2019-01-03,0.44,1,0 +15423623,Wonderful private room in Williamsburg,7157161,Patrick,Brooklyn,Williamsburg,40.71274,-73.94521,Private room,90,1,2,2016-10-23,0.06,1,341 +15423725,Cozy and spacious room with private bathroom,2807776,Axel,Brooklyn,Flatbush,40.65087,-73.96467,Private room,65,2,69,2019-06-24,2.08,2,60 +15423731,Historic and Quiet 2 Bedroom w Backyard,48804458,Andrew,Queens,Ridgewood,40.70349,-73.8994,Entire home/apt,94,6,96,2019-06-28,2.96,2,48 +15423923,Private room in Brooklyn,98726662,Lei,Brooklyn,Sheepshead Bay,40.60948,-73.95803,Private room,39,2,66,2019-07-05,2.01,3,62 +15423962,Cozy studio in Brooklyn,98726662,Lei,Brooklyn,Sheepshead Bay,40.60985,-73.95927,Private room,39,3,18,2019-03-16,0.54,3,1 +15425744,"Charming ,cozy private bedroom",96892684,Yahaira,Manhattan,Washington Heights,40.83923,-73.94557,Private room,65,1,113,2019-06-30,3.63,1,266 +15430782,Most walkable location for fun,14016646,Justin,Manhattan,Greenwich Village,40.72962,-73.99932,Private room,100,5,18,2017-10-29,0.56,1,0 +15431463,Brooklyn Heights brownstone garden-level studio,2000143,Steven,Brooklyn,Brooklyn Heights,40.69468,-73.99327,Entire home/apt,100,3,24,2019-03-07,0.72,1,2 +15433822,Large and bright cozy room in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77777,-73.94914,Private room,100,7,13,2018-01-02,0.41,3,0 +15435714,A calm & peaceful spot to relax in the buzzing NYC,57696968,Shapel,Queens,South Ozone Park,40.67711,-73.8054,Private room,29,1,73,2018-08-12,2.20,1,0 +15435899,"Artsy, Sun-Soaked Pre-War Williamsburg Apt",26328087,Genevieve,Brooklyn,Williamsburg,40.71373,-73.94794,Entire home/apt,150,10,4,2016-11-20,0.12,1,93 +15436384,Beautiful BR in quiet Greenpoint,5664607,Sean,Brooklyn,Greenpoint,40.73363,-73.95333,Private room,110,2,3,2019-05-11,0.12,1,2 +15436402,Modern style apartment with balcony in Astoria,11082833,Mash,Queens,Astoria,40.76231,-73.92354,Entire home/apt,80,2,1,2017-01-23,0.03,1,0 +15436666,Light filled Bowery 1BD apartment,28809087,Clara,Manhattan,Chinatown,40.71809,-73.99655,Private room,200,3,0,,,1,0 +15436800,Independent entrance,67619393,Arthur,Queens,Corona,40.73759,-73.86351,Private room,37,3,30,2019-06-18,0.98,1,48 +15436836,Carroll Gardens Apartment,8977158,Viki,Brooklyn,Carroll Gardens,40.68384,-73.99813,Entire home/apt,175,2,129,2019-06-22,3.92,2,206 +15436871,Entire Spacious 2 Bed Apt on UWS,7610841,Jenny,Manhattan,Upper West Side,40.80173,-73.96175,Entire home/apt,375,2,40,2019-06-15,1.54,2,285 +15437413,Spacious 1 Bedroom at Central Park,4970150,Sawyer,Manhattan,Upper West Side,40.78152,-73.97249,Entire home/apt,249,2,18,2018-11-04,0.55,1,0 +15437906,Southern comfort in Harlem,65147357,Tony,Manhattan,East Harlem,40.79543,-73.93539,Private room,80,1,15,2019-06-02,0.45,1,0 +15437922,"Bright Room, Luxury Building, 3 Stops To Manhattan",17849213,Alexey,Brooklyn,Williamsburg,40.71506,-73.93816,Private room,90,1,52,2019-07-06,2.88,2,52 +15438016,Awesome room and rooftop deck in East Williamsburg,27506975,Nick,Brooklyn,Williamsburg,40.70553,-73.94267,Private room,90,2,1,2016-10-17,0.03,1,0 +15444619,Brklyn Hts Luxury - Garden Calm & Downtown Verve,35648363,Luke,Brooklyn,Brooklyn Heights,40.69183,-73.99202,Entire home/apt,250,2,119,2019-07-01,3.62,1,230 +15445427,Doorman Time SQ View 2 bed 2 bath 5200,16098958,Jeremy & Laura,Manhattan,Theater District,40.76273,-73.98397,Entire home/apt,290,30,0,,,96,0 +15446631,"Light & Airy Chelsea Bungalow (ok, apartment)",73373504,Javier,Manhattan,Chelsea,40.74068,-74.00295,Entire home/apt,180,2,134,2019-06-27,4.17,1,70 +15447048,"Brooklyn, Where my story begins...",10238963,Cathy,Brooklyn,Bay Ridge,40.62652,-74.0196,Entire home/apt,95,3,7,2018-09-09,0.22,1,0 +15447090,"Luxury Condo, High Fl, River Views, Balcony, Food",96996010,Laurence,Manhattan,Murray Hill,40.74698,-73.97218,Private room,205,1,23,2019-05-02,0.91,1,363 +15447148,Modern luxury w/views of WTC,37694131,Sara,Brooklyn,Prospect-Lefferts Gardens,40.65737,-73.94607,Private room,87,1,11,2019-01-05,0.36,1,361 +15449415,Lux 2 Bedroom NYC Apt on the Hudson River!,30283594,Kara,Manhattan,Hell's Kitchen,40.76253,-73.99803,Entire home/apt,379,30,0,,,121,185 +15449434,LARGE CENTRAL & COZY BEDROOM,64205687,Letty,Manhattan,Hell's Kitchen,40.76297,-73.98888,Private room,69,4,126,2019-06-15,3.81,1,163 +15450257,A home away from home in the heart of the UES:),30116728,Emily,Manhattan,Upper East Side,40.78324,-73.95149,Entire home/apt,125,5,1,2018-01-01,0.05,1,0 +15450724,"15 min Manhattan. Quiet, Safe, Clean, Good price",99108929,Melih,Queens,Sunnyside,40.73707,-73.92082,Shared room,30,7,4,2019-05-26,0.43,2,206 +15450848,A Life in Brooklyn,25010766,Joseph,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93058,Entire home/apt,150,2,61,2017-09-02,1.83,1,0 +15452258,COZY COOL ROOM IN MANHATTAN APT / Manhattan,37579015,Ana,Manhattan,Hell's Kitchen,40.75689,-73.99315,Private room,98,1,42,2019-06-30,1.27,5,126 +15452878,Discounted! Comfy and quiet room in SoHo.,1475812,Ignani,Manhattan,Nolita,40.72104,-73.99498,Private room,130,2,123,2019-06-07,3.79,3,59 +15452971,Cozy 1 Bedroom Apartment in Downtown Flushing,60437472,Ting,Queens,Flushing,40.76491,-73.82561,Entire home/apt,122,3,32,2019-06-12,1.06,1,84 +15453102,Large Sofa in Artist's Apartment,41393276,Alexandra,Brooklyn,Flatbush,40.64083,-73.96436,Shared room,40,1,48,2019-06-30,1.45,1,17 +15453848,Cozy Room in Crown Heights! (Female Guests Only),11304670,Katya,Brooklyn,Crown Heights,40.66469,-73.95125,Private room,29,5,3,2019-01-01,0.10,1,206 +15453985,Sunny Apartment Close to NYC's Major Attractions,99139601,Rosalia,Bronx,Mott Haven,40.81201,-73.90823,Entire home/apt,100,2,170,2019-06-25,5.16,1,83 +15454216,Convenient 2 BRs in 4BR Apartment in Williamsburg,32545798,Sasha,Brooklyn,Williamsburg,40.7146,-73.96321,Private room,90,1,1,2016-12-25,0.03,5,0 +15454775,Commuters paradise - Cozy Townhouse!,22789212,Xenios,Queens,Long Island City,40.74965,-73.94019,Private room,99,2,4,2018-07-16,0.16,1,0 +15455305,Film / photography location in unique apartment,640117,Simon,Brooklyn,Williamsburg,40.70997,-73.9624,Entire home/apt,350,1,0,,,5,364 +15455678,Comfortable and convenient space for you!,48909179,Darris,Manhattan,Harlem,40.82834,-73.9496,Private room,49,2,55,2018-12-11,1.68,1,26 +15460904,Cozy bedroom in Upper West Side,58254001,Enrique,Manhattan,Upper West Side,40.80185,-73.96807,Private room,80,3,17,2019-07-04,0.51,1,129 +15461512,Spacious Private Bedroom in the North Bronx,99205045,Liliana,Bronx,Kingsbridge,40.88283,-73.89326,Private room,60,3,2,2017-05-25,0.07,1,363 +15462051,"Private Loft-style Bedroom & En-suite in S.I., NY",99202586,Thelma,Staten Island,Randall Manor,40.63135,-74.13023,Private room,79,2,21,2019-07-01,0.64,5,355 +15462208,Spacious 2 Bedroom Apartment by Central Park,26073602,Anna,Manhattan,East Harlem,40.79575,-73.94817,Entire home/apt,145,2,101,2019-01-12,3.07,1,0 +15462245,Authentic Bklyn location with Caribbean vibes,26495690,Maureen,Brooklyn,Crown Heights,40.67141,-73.92643,Entire home/apt,90,30,0,,,1,0 +15464934,Sunny SUMMER Special! LARGE 2BR Eco-Loft,99235017,Katrin,Brooklyn,Sunset Park,40.6471,-74.0075,Entire home/apt,138,3,74,2019-06-19,2.27,1,83 +15465050,"Full Size Bed, Private Bathroom & Shower",44350279,Jp,Manhattan,Gramercy,40.73352,-73.9873,Private room,90,2,87,2019-06-18,2.62,4,242 +15467130,"Beautiful Apartment +Great location- Holidays in NY",4047395,Blanca,Brooklyn,Clinton Hill,40.68572,-73.96627,Entire home/apt,95,14,5,2018-06-04,0.17,2,186 +15468038,Urban Rustic Retreat - Shared Space,21105084,Sugeiry,Manhattan,Harlem,40.81674,-73.95292,Shared room,65,1,23,2018-06-29,0.81,2,0 +15468765,Quiet & Spacious Brooklyn Apt for Cat-Lovers,12063606,Nicole,Brooklyn,Crown Heights,40.67747,-73.9466,Entire home/apt,90,9,7,2019-05-12,0.54,1,0 +15469541,Cozy two bedroom apartment.,92708653,Renette,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93675,Entire home/apt,130,3,34,2019-06-24,1.28,1,147 +15469963,Modern Sunny Room with Private Bathroom & Balcony,1419062,Igor,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.94278,Private room,70,2,48,2018-08-19,1.45,1,72 +15470122,Beautiful home in Red Hook,35095754,Lorraine,Brooklyn,Red Hook,40.67668,-74.01252,Entire home/apt,115,6,0,,,2,0 +15470678,Private Bedroom & Living Room in Williamsburg,46322461,Gabe,Brooklyn,Williamsburg,40.71996,-73.95767,Private room,100,1,7,2016-11-27,0.21,1,0 +15470951,Save$! Sleep Well! ❤NYC! Female Only!!!,99274925,Nelya,Brooklyn,Fort Hamilton,40.6179,-74.03282,Shared room,40,1,24,2019-06-28,0.78,1,89 +15473730,".ROOM, NearTrain, JFK5minLGA15min. Breakfast,2Peop",71176935,George,Queens,Richmond Hill,40.69015,-73.8297,Private room,33,1,20,2019-02-15,0.77,1,86 +15474504,Cozy Private Room 1 people by JFK,82854298,Tamicka,Queens,Cambria Heights,40.69837,-73.74255,Private room,39,1,64,2017-12-13,1.94,2,0 +15475362,1 Bedroom in Quiet Upper West Side,34687918,Nathan,Manhattan,Upper West Side,40.79284,-73.96858,Entire home/apt,120,1,0,,,1,0 +15476467,Large Space and Comfy Couch in New Apartment,13069275,Aleisha,Manhattan,Harlem,40.82245,-73.95675,Private room,75,1,19,2019-06-30,0.57,1,358 +15476794,Charming Private House,99346083,Stella,Queens,Queens Village,40.70811,-73.74103,Entire home/apt,125,30,0,,,1,365 +15477385,Charming Apartment in Brooklyn,15858985,Laura,Brooklyn,Bedford-Stuyvesant,40.68852,-73.9499,Entire home/apt,140,5,0,,,1,168 +15478604,Guest suite in owner-occupied private residence,36861300,Martin,Brooklyn,Bushwick,40.6998,-73.92167,Entire home/apt,70,2,72,2019-06-20,2.20,1,146 +15480133,BEST location & big cool apartment in Williamsburg,20534715,Ben,Brooklyn,Williamsburg,40.71434,-73.96085,Entire home/apt,250,3,16,2019-05-05,0.49,1,3 +15481609,Huge Loft Size Room with Private Bath in Hip Area!,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69115,-73.94526,Private room,65,1,194,2019-05-27,5.88,4,0 +15481730,Gorgeous Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70435,-73.92552,Private room,40,5,19,2019-06-15,0.62,3,0 +15482081,Spacious Room in Stylish Brooklyn - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69143,-73.94302,Private room,50,1,186,2019-05-29,5.65,4,0 +15482082,Spacious Studio Near the Subway,25673940,Ben,Queens,Long Island City,40.74422,-73.95432,Entire home/apt,78,3,5,2018-01-06,0.16,1,0 +15482512,Well Lit Spacious Room with Lots of Amenities,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69349,-73.94439,Private room,50,1,171,2019-05-14,5.17,4,0 +15482966,Cozy room in Sunnyside Gardens (near Manhattan),75458625,Lidia,Queens,Sunnyside,40.74693,-73.91896,Private room,72,3,9,2019-06-09,0.49,4,365 +15483201,Cute Bedroom for Two in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74777,-73.91685,Private room,108,3,36,2019-05-25,1.18,4,356 +15483662,"Spacious Room for 2 in Sunnyside, near Manhattan",75458625,Lidia,Queens,Sunnyside,40.74795,-73.91744,Private room,108,3,6,2019-05-28,0.36,4,29 +15484888,Sunny and Spacious Modern BK Heights Studio,10711869,Ayesha,Brooklyn,Downtown Brooklyn,40.69211,-73.99092,Entire home/apt,170,2,21,2019-05-26,0.64,1,8 +15484901,The Artist Retreat Duplex and Garden 1,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68271,-73.92991,Entire home/apt,125,2,118,2019-06-24,3.69,4,68 +15485880,Private entire floor/in duplex apartment...,99434002,Leo,Manhattan,East Village,40.7246,-73.97877,Entire home/apt,149,2,88,2019-06-26,2.69,1,76 +15486072,Cozy Apartment off J&M Subway Lines,19977987,Alisha,Brooklyn,Bushwick,40.70051,-73.93909,Entire home/apt,125,1,12,2017-09-26,0.38,1,0 +15492502,Nice Studio in Williamsburg,31627488,Anela,Brooklyn,Williamsburg,40.71923,-73.94258,Entire home/apt,70,1,86,2019-07-01,2.59,1,192 +15492561,Great 1 bedroom full Apartment!,7765138,Ally,Manhattan,Upper East Side,40.78057,-73.95734,Entire home/apt,120,2,13,2017-04-12,0.40,1,0 +15493096,Beautiful Private Bedroom in 2BR Apartment,14010411,Alex,Brooklyn,Prospect Heights,40.67419,-73.96423,Private room,149,3,4,2017-01-02,0.13,1,0 +15493595,Large room in an arty Brooklyn apartment,31747645,Marie Salomé,Brooklyn,Clinton Hill,40.68548,-73.96288,Private room,90,4,0,,,2,0 +15494542,Amazing Bedroom in Manhattan Midtown East Condo,31661494,Elise,Manhattan,Murray Hill,40.74817,-73.97595,Private room,150,2,74,2019-07-01,2.34,1,112 +15494796,Private Guest Room in Charming West Village Duplex,390117,Coco,Manhattan,West Village,40.73142,-74.01,Private room,250,3,8,2019-04-28,0.24,2,0 +15494968,Inviting Photographer's Loft in Tribeca,728477,Peter,Manhattan,Tribeca,40.72274,-74.00807,Entire home/apt,375,5,3,2019-06-13,0.33,1,296 +15495132,LARGE 2 BEDROOM APT NEAR CENTRAL PARK,9293730,Inna,Manhattan,East Harlem,40.78815,-73.9436,Entire home/apt,95,30,12,2019-05-14,0.38,16,338 +15495202,"*Lux Doorman,New & Modern ,Grand Central",52950465,Gal,Manhattan,Midtown,40.75315,-73.97253,Entire home/apt,129,30,2,2017-08-15,0.06,12,326 +15495356,Super quiet Apartment in East Williamsburg!!! =),26943880,Luca,Brooklyn,Williamsburg,40.71529,-73.94532,Private room,80,3,6,2017-11-05,0.20,1,0 +15495441,Quiet Room in Brownstone - Prime Location,4579626,Karen,Brooklyn,Park Slope,40.67633,-73.9793,Private room,45,1,45,2019-07-03,1.36,2,77 +15495653,Location Central Park ( only female guest ),3250450,Petya,Manhattan,Upper West Side,40.78895,-73.96754,Private room,53,31,2,2017-10-27,0.06,18,249 +15495897,Midtown East Stunner,61391963,Corporate Housing,Manhattan,Midtown,40.75592,-73.96891,Entire home/apt,125,30,8,2019-01-17,0.36,91,342 +15496314,Bluebird Hells Kitchen 1-BR + Indoor B.Ball Ct!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7624,-73.99915,Entire home/apt,534,30,0,,,18,365 +15496496,Private Oasis Room #1- Close to L and M Train.,28786801,Connie,Brooklyn,Bushwick,40.70268,-73.9265,Private room,65,1,3,2017-08-20,0.09,2,0 +15496616,Bluebird Hells Kitchen 1-BR Apt Near Central Park,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76038,-73.99951,Entire home/apt,534,30,0,,,18,365 +15497088,Bluebird Hell's Kitchen 1-BR Apt + Zero Edge Pools,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76212,-73.99756,Entire home/apt,534,30,0,,,18,365 +15497229,Bluebird Hell's Kitchen 1-BR + Killer City Views,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76188,-73.99806,Entire home/apt,534,30,0,,,18,365 +15497406,Bluebird Luxury 1 BR Apartment Near Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76173,-73.99937,Entire home/apt,534,30,0,,,18,365 +15497568,Quite & Cozy High Raise Atmosphere,23895443,Eva,Manhattan,Harlem,40.81545,-73.95806,Private room,99,1,2,2019-01-01,0.09,1,35 +15497673,Bluebird Hell's Kitchen Deluxe 2BR+ Zero Edge Pool,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7619,-73.99896,Entire home/apt,748,30,0,,,18,365 +15497821,Bluebird Hell's Kitchen 2-BR + Killer City Views,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76045,-73.99929,Entire home/apt,748,30,1,2018-06-17,0.08,18,365 +15498370,Room in Modern Apartment.,7529823,Sean,Brooklyn,Crown Heights,40.67453,-73.94537,Private room,45,2,109,2019-06-18,3.30,1,131 +15500135,NYC Elegance steps 2 Central Park see all pictures,99552750,Wendy,Manhattan,Upper East Side,40.76346,-73.96684,Entire home/apt,190,4,83,2019-06-22,2.58,1,104 +15500460,My tiny Chateau,72596124,Vincent,Queens,Jackson Heights,40.74912,-73.88667,Entire home/apt,80,1,202,2019-06-24,6.13,1,143 +15501506,Feng Shui in Astoria with Balcony 150mb WiFi,19338842,John,Queens,Ditmars Steinway,40.77508,-73.91231,Entire home/apt,125,18,0,,,1,0 +15505535,Bluebird Luxury 2 BR Apartment Near Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76053,-73.99809,Entire home/apt,748,30,0,,,18,365 +15506009,LARGE 1BR Apt 25 Mins to Manhattan,6218023,Fabe,Brooklyn,Crown Heights,40.67749,-73.94386,Entire home/apt,99,180,4,2017-01-29,0.12,1,365 +15506908,Be a New Yorker for a few days,39461895,Shai,Manhattan,Nolita,40.72021,-73.99592,Entire home/apt,229,10,9,2019-05-26,0.27,1,137 +15507375,"Private Studio, Oceanside beautiful and safe area",32052000,Gennady + Laura,Brooklyn,Manhattan Beach,40.57821,-73.94122,Entire home/apt,55,4,91,2019-06-28,2.82,2,215 +15507436,BEAUTIFUL RENOVATED APT. 208,99539943,Grand,Manhattan,Midtown,40.74828,-73.98401,Private room,189,1,4,2018-02-15,0.12,1,365 +15508132,Can’t Beat this Location!!,99629743,Leatha,Brooklyn,Clinton Hill,40.68769,-73.96604,Entire home/apt,449,2,78,2019-06-30,2.47,2,347 +15508399,Doorman Huge 2 bed with 3 Beds 5145,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76702,-73.98741,Entire home/apt,202,30,3,2017-09-06,0.11,96,327 +15509545,2Bedroom apt.+WF(1-5 guests) Private Bath/Kitchen,99643776,Claire,Manhattan,Lower East Side,40.71806,-73.99351,Entire home/apt,250,3,41,2019-06-22,1.42,2,147 +15509546,NYC SoHo Prime Location,49519202,Will,Manhattan,SoHo,40.72576,-74.00381,Private room,85,5,0,,,1,0 +15510233,PRIVATE ROOM IN COMFORTABLE APT.,43718548,Manuel,Manhattan,Inwood,40.8622,-73.93349,Private room,52,3,16,2018-10-15,0.49,1,0 +15510279,Studio in Mott Haven-1 subway stop from Manhattan,99651727,Lucia,Bronx,Mott Haven,40.81072,-73.92349,Entire home/apt,120,2,26,2019-06-19,0.85,1,260 +15511681,"Quiet, Cozy, ELEVATOR, Queen Bedroom near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77344,-73.94911,Private room,90,2,61,2019-05-25,1.84,3,0 +15511695,Hip&quiet,39837217,Leo,Brooklyn,Bushwick,40.70012,-73.93775,Private room,74,3,16,2019-05-18,0.48,2,131 +15511749,"New Listing---Clean, Spacious 1-Bedroom in SoHo",99665419,Nicole,Manhattan,SoHo,40.72391,-74.00658,Entire home/apt,75,4,9,2018-10-17,0.53,1,0 +15513127,Brooklyn Apartment,62644193,Elle,Brooklyn,East Flatbush,40.64335,-73.92981,Private room,70,1,0,,,1,157 +15517104,Top floor of a charming Brooklyn townhouse,1486872,Kelly,Brooklyn,Gowanus,40.66881,-73.99178,Entire home/apt,147,5,85,2019-02-24,2.58,2,0 +15517755,Huge Bedroom w/direct access to backyard,30047867,Camila,Brooklyn,Bedford-Stuyvesant,40.68707,-73.94437,Private room,50,2,3,2017-01-05,0.09,1,0 +15518025,"Cozy East-Village Walk, Blocks from Union Square",24634123,Amanda Brooke,Manhattan,East Village,40.72978,-73.98584,Entire home/apt,250,5,1,2016-10-18,0.03,1,0 +15519679,Private Room in Beautiful Apartment,2276763,Kristy,Manhattan,Harlem,40.81678,-73.93836,Private room,40,5,3,2019-01-01,0.16,1,0 +15520060,Charming Home in Chelsea,1098809,Michael,Manhattan,Chelsea,40.74244,-73.99781,Entire home/apt,200,3,41,2019-06-13,1.24,1,1 +15520503,Artsy room in warehouse style apartment,10966079,Ward,Brooklyn,Williamsburg,40.70915,-73.96102,Private room,80,4,116,2019-06-26,3.50,2,133 +15520792,Huge & Sunny Room in Williamsburg w Roof,42328181,Guillaume,Brooklyn,Williamsburg,40.71969,-73.94135,Private room,100,2,0,,,1,0 +15521674,Nice Room in Charming Apt.,8338942,Victor,Manhattan,Nolita,40.72228,-73.99582,Shared room,65,1,8,2019-05-18,0.24,4,0 +15522627,Cozy Quiet Upgraded Prvt Rm in House in the Slope!,90771408,Albert,Brooklyn,South Slope,40.66565,-73.99172,Private room,70,1,30,2019-06-05,0.91,1,297 +15523119,"3 bedroom, second floor and cozy",96148809,Raymond,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93479,Entire home/apt,150,2,100,2019-07-05,3.26,1,0 +15523281,1 bedroom to yourself in Midtown Manhattan!,96595601,Tristan,Manhattan,Midtown,40.75966,-73.96313,Entire home/apt,135,3,21,2019-05-12,0.67,1,0 +15527416,A sunny healthy big bedroom,99804239,Kartika,Queens,Elmhurst,40.74262,-73.87907,Private room,51,2,100,2019-06-18,3.05,1,296 +15528972,2 Bedroom in Upper West right next to Central Park,99865195,Sam,Manhattan,Upper West Side,40.79772,-73.96213,Entire home/apt,335,4,59,2019-05-12,1.89,1,263 +15529123,"Park slope, floor through garden apartment",8940513,Martha,Brooklyn,Park Slope,40.67148,-73.97479,Entire home/apt,198,7,43,2019-06-12,1.36,1,241 +15529336,Lower East Side Private Room - Elevator Building,94945743,Ryan,Manhattan,Lower East Side,40.71546,-73.98907,Private room,120,6,3,2018-05-26,0.09,1,0 +15529937,Private room in busy location Br,98726662,Lei,Brooklyn,Sheepshead Bay,40.60983,-73.95887,Private room,39,2,26,2019-01-02,0.98,3,101 +15531089,Spacious room in cozy 4-brm Union Square apt!,7453255,Nora,Manhattan,East Village,40.73199,-73.98956,Private room,51,7,0,,,1,0 +15531352,"Peaceful Getaway, minutes from NYC attractions!",94100727,Mirtha,Queens,Glendale,40.69426,-73.8964,Entire home/apt,87,2,36,2017-09-03,1.11,1,0 +15531889,Charming & Cool Bushwick 2 Bedroom,30380688,Ashley,Brooklyn,Bushwick,40.68502,-73.90883,Entire home/apt,145,2,142,2019-07-05,4.41,1,218 +15532430,Quiet room near beach in residential area.,6051934,Susan,Staten Island,Midland Beach,40.56933,-74.09493,Private room,80,1,7,2018-11-04,0.22,1,358 +15535079,"Cozy room in Williamsburg,only 1 stop to Manhattan",6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70908,-73.96146,Private room,90,2,2,2018-05-11,0.09,2,0 +15535391,BedStuy Beautiful Spacious Garden Apartment,5503249,Crystal,Brooklyn,Bedford-Stuyvesant,40.68127,-73.92686,Entire home/apt,125,7,29,2019-05-22,0.95,1,347 +15535864,Sleek 1BR + private bath in beautiful brownstone,59909443,Kobby,Brooklyn,Bedford-Stuyvesant,40.67764,-73.92241,Private room,75,3,5,2018-09-09,0.15,1,145 +15536769,Charming and Cozy one bedroom,27443229,Brit,Manhattan,Chinatown,40.7161,-73.99828,Entire home/apt,140,2,43,2019-01-03,1.32,1,0 +15537258,889 Bushwick Ave,74442807,Sean,Brooklyn,Bushwick,40.69477,-73.92611,Private room,2000,5,1,2019-01-05,0.16,1,0 +15538057,Cute room for rent,84141567,Alida,Queens,Maspeth,40.73577,-73.89981,Private room,75,1,1,2018-10-25,0.12,3,173 +15539709,"NYMT05-1 LUXURY! Studio, Time square/Doorman stu-5",39890192,Laura,Manhattan,Hell's Kitchen,40.76406,-73.98868,Entire home/apt,150,45,6,2019-03-31,0.21,12,267 +15542745,"Cozy , Cute and Spacious one bedroom Brooklyn Apt",37082109,Camille,Brooklyn,Bay Ridge,40.62413,-74.03085,Entire home/apt,90,1,0,,,1,0 +15543090,Brooklyn Room in Hip Neighborhood - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69172,-73.94446,Private room,61,1,181,2019-05-27,5.47,4,0 +15543169,Charming and Private Clinton Hill Hide-Away,11845677,Kim,Brooklyn,Clinton Hill,40.68229,-73.96154,Entire home/apt,160,2,97,2019-07-05,3.00,1,68 +15544672,Comfortable large room in a great neighborhood!,24880134,Cam,Brooklyn,Prospect Heights,40.67915,-73.96923,Private room,69,14,7,2018-10-31,0.33,3,0 +15545469,Modern Bedroom with Best View in Brooklyn,14482375,Lara & David,Brooklyn,Greenpoint,40.72214,-73.94345,Private room,199,3,20,2019-06-27,0.66,3,0 +15546982,Chill in Downtown Brooklyn Clinton Hill Pratt Univ,100718,Brian,Brooklyn,Clinton Hill,40.69278,-73.965,Entire home/apt,95,1,13,2019-06-23,0.41,1,0 +15548301,Small room w/backyard,97521826,Armelle,Brooklyn,Bedford-Stuyvesant,40.68816,-73.95791,Private room,120,3,1,2018-08-31,0.10,1,179 +15549056,Stay on Madison,53301314,Pascal,Manhattan,East Harlem,40.80832,-73.93889,Entire home/apt,200,3,58,2019-06-26,2.12,1,152 +15550900,Bright large Williamsburg 1 bed apartment,6521189,Paul,Brooklyn,Williamsburg,40.70953,-73.96445,Entire home/apt,190,5,18,2019-05-29,0.57,1,5 +15551245,可愛いレンガの壁のお部屋/ Manhattan,20915650,Ayami,Manhattan,East Harlem,40.79324,-73.94037,Private room,65,7,1,2016-12-31,0.03,1,0 +15552357,TOP FLOOR TRANQUIL & BEAUTIFUL BROWNSTONE LIVING,100107219,Antoine,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94614,Entire home/apt,160,2,68,2019-07-02,2.05,1,48 +15552862,Elegant NYC . Walk to Central Park. New clean safe,100113704,Max,Manhattan,Upper East Side,40.76443,-73.96603,Entire home/apt,235,4,75,2019-07-05,2.33,1,151 +15552901,Near at the JFK 15 minutes,84562269,Finely,Queens,Queens Village,40.71935,-73.75383,Private room,35,2,5,2019-04-23,0.18,2,0 +15553495,Sunny Room on Historic Clinton Ave. in Fort Greene,2500106,Ariel,Brooklyn,Clinton Hill,40.68908,-73.9678,Private room,65,2,18,2018-12-16,0.55,1,0 +15553994,Convenient & Cute in Gramercy,14676072,Michelle,Manhattan,Gramercy,40.73626,-73.98104,Entire home/apt,180,3,0,,,1,0 +15554154,Pvt room W/AC/Heater 9pm-9am 12mintoNY&10mintoLGA,100128949,Lisa,Queens,Long Island City,40.74364,-73.94676,Private room,55,14,20,2019-01-02,0.61,4,2 +15559457,"Furnished room close to most, 15min to Grand Cent.",100182541,Jill,Brooklyn,Greenpoint,40.73577,-73.95118,Private room,50,20,2,2017-05-26,0.07,1,0 +15560258,Tribeca/Chinatown Converted Loft,24297098,Christine,Manhattan,Chinatown,40.71807,-74.00215,Entire home/apt,100,6,1,2016-11-01,0.03,1,0 +15560799,BEAUTIFUL NEW Renovated Apt!!,100197679,Grand,Manhattan,Midtown,40.74768,-73.98723,Entire home/apt,195,1,2,2018-01-15,0.06,1,351 +15561163,"Large Cozy Bedroom Apartment, brownstone",100202479,Michelle,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92864,Entire home/apt,100,3,86,2019-06-28,3.02,1,25 +15562465,"Spacious Apt on the Park, 1 blk from L Train",7149725,Katie,Brooklyn,Bushwick,40.70236,-73.92232,Entire home/apt,185,5,2,2016-11-26,0.06,1,0 +15563361,Cozy One-Bedroom in Park Slope,23955743,Susan,Brooklyn,Park Slope,40.67879,-73.97438,Entire home/apt,135,1,12,2017-03-22,0.37,1,0 +15563416,Cozy apartment in East Village,8598491,Antonia,Manhattan,East Village,40.72275,-73.97598,Entire home/apt,175,2,27,2018-09-16,0.82,1,63 +15563563,NEW- Bright 2 Bed Williamsburg Loft w/Private Roof,40991179,Justin,Brooklyn,Williamsburg,40.72022,-73.95814,Entire home/apt,345,3,13,2019-05-27,0.41,2,9 +15564125,High End 4 bedroom in best location in Ditmas Park,12214869,Ches,Brooklyn,Flatbush,40.63766,-73.96611,Entire home/apt,275,2,102,2019-06-23,3.14,1,276 +15564955,Sleep Cosy in an Elegant Midtown East Apartment,437960,Denise,Manhattan,Midtown,40.76135,-73.96645,Private room,230,8,4,2018-04-12,0.17,1,87 +15565299,Cozy Bedroom & Beautiful Apt in Williamsburg,12126100,Darren,Brooklyn,Williamsburg,40.71538,-73.94712,Private room,85,2,26,2018-10-08,0.80,1,221 +15566106,Charming fun bohemian meets anthropology apt,10608644,Sarah,Brooklyn,Bedford-Stuyvesant,40.68526,-73.94099,Entire home/apt,130,3,10,2019-06-23,0.39,1,89 +15568616,Immaculate Apt 15 minutes to midtown NYC by train.,6588016,Joanne,Queens,Long Island City,40.76112,-73.92631,Entire home/apt,79,3,43,2019-06-23,1.35,1,105 +15568740,"Spacious, comfortable, UES private room",37907767,Lauren,Manhattan,Upper East Side,40.7673,-73.96043,Private room,110,1,1,2016-12-03,0.03,1,0 +15569399,LOVELY PRIVATE BED ROOM 12 MINS FROM JFK,96424121,Pamela,Queens,St. Albans,40.7036,-73.76637,Private room,63,1,63,2019-07-05,1.91,3,363 +15576821,New York City best 5 stars professional rooms.,55948559,Barry,Bronx,Pelham Gardens,40.86663,-73.84139,Private room,35,1,117,2019-06-23,4.66,4,34 +15581948,Comfortable Private Room in Historic Park Slope,66602200,Marie-Line,Brooklyn,Park Slope,40.67688,-73.97602,Private room,100,2,131,2019-06-25,3.97,1,126 +15582096,Cozy Private BR in PERFECT West Village Apt,80379,Ryan,Manhattan,West Village,40.7359,-74.00191,Private room,120,1,107,2019-07-01,3.25,1,83 +15582426,A Place For You tonight...,39476034,James,Queens,Jamaica,40.67203,-73.76711,Private room,159,1,0,,,2,179 +15582683,One of a kind Sun Filled Elegant Studio.,100401692,Tiffany,Brooklyn,East Flatbush,40.6393,-73.9472,Entire home/apt,90,3,53,2019-06-07,1.61,1,201 +15585484,Awesome apartment in the heart of Soho,100421535,Fernanda,Manhattan,SoHo,40.72524,-74.00218,Entire home/apt,350,5,2,2016-12-31,0.06,1,0 +15589099,PRIVATE SPACE L TRAIN BEDFORD STOP!,51779729,Andrew,Brooklyn,Williamsburg,40.71721,-73.95965,Entire home/apt,140,28,14,2019-04-30,0.42,1,234 +15591309,172 Henry St - Sunny & Big Room (5th Floor),8962305,Cici,Manhattan,Lower East Side,40.71214,-73.98955,Private room,90,5,10,2018-10-22,0.30,3,20 +15595648,MODERN & LUXURY HIRISE 2BR IN CHELSEA~SKYLINE VIEW,76104209,Rated,Manhattan,Chelsea,40.74476,-73.99266,Entire home/apt,487,30,0,,,33,364 +15595714,Sumptuous & Lovely Williamsburg 1 Bedroom,17301301,Catherine,Brooklyn,Williamsburg,40.70981,-73.94239,Entire home/apt,110,2,11,2018-02-19,0.35,1,0 +15596521,LUXURY HIRISE 1 BR IN CHELSEA~ENJOY THE CITY,76104209,Rated,Manhattan,Chelsea,40.74633,-73.99201,Entire home/apt,300,30,0,,,33,364 +15596539,Large Private Bedroom in a 3 Story Brown Stone,1427352,Tara,Brooklyn,Bedford-Stuyvesant,40.69098,-73.92622,Private room,40,2,2,2017-10-23,0.06,1,0 +15597119,Luxury Williamsburg apt w/rooftop,2456412,Amy,Brooklyn,Williamsburg,40.71524,-73.96229,Entire home/apt,200,2,3,2017-01-05,0.09,1,0 +15597266,Beautiful home near beach & JFK!,97536353,Chadine,Queens,Arverne,40.59055,-73.79281,Private room,60,1,5,2017-10-17,0.16,2,158 +15597600,Design Hideaway in a Classic Brooklyn Townhouse,1781401,Emily,Brooklyn,Bedford-Stuyvesant,40.68714,-73.93443,Entire home/apt,155,4,44,2019-06-15,1.71,1,98 +15598303,Cozy Bedroom in cute Clinton Hill brownstone apt!,15055897,Heather,Brooklyn,Clinton Hill,40.69043,-73.96736,Private room,75,2,1,2016-10-24,0.03,2,0 +15598367,Cozy Private Room 1-2people,82854298,Tamicka,Queens,Cambria Heights,40.69857,-73.74225,Private room,47,1,63,2017-10-22,1.95,2,0 +15598548,Charming Brooklyn Garden Apartment,263882,Eva Maria,Brooklyn,Bedford-Stuyvesant,40.68084,-73.91116,Entire home/apt,139,2,151,2019-06-30,4.64,2,284 +15602953,Central..Comfort. All inclusive room,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68817,-73.92319,Private room,39,3,33,2019-01-11,1.03,4,146 +15603347,Comfortable room in a chic and modern house,515095,Mei,Brooklyn,Carroll Gardens,40.67855,-74.00075,Private room,79,2,74,2019-07-01,2.24,2,45 +15604499,The Parachute Loft Bedrm 1,62605071,Anna,Brooklyn,Coney Island,40.57505,-74.00161,Private room,95,1,76,2019-07-05,2.44,2,163 +15604507,A Serene ambiance that will sooth your soul,100586983,Kessy-Ann,Brooklyn,East New York,40.66733,-73.88348,Entire home/apt,93,1,209,2019-06-15,6.35,1,86 +15605295,Incredible room in Brooklyn,24346282,Bharat,Brooklyn,Park Slope,40.67729,-73.98122,Private room,71,7,12,2018-09-11,0.36,1,0 +15606875,Private Studio Apartment in Bushwick,96101938,Mary,Brooklyn,Bushwick,40.69636,-73.92482,Entire home/apt,88,2,19,2018-12-29,0.62,1,0 +15614302,2. Private 1BR Suite in Shared Marine Park Apt.,78276061,David,Brooklyn,Flatlands,40.61863,-73.93183,Private room,55,2,39,2019-06-29,1.27,1,247 +15615535,Spacious Upper West Side Studio near Central Park,74815132,Kristen,Manhattan,Upper West Side,40.78825,-73.97231,Entire home/apt,115,5,5,2017-04-09,0.16,1,0 +15618325,Sunny Prospect Park One Bedroom Apartment,19313463,Jp,Brooklyn,Windsor Terrace,40.65136,-73.9746,Entire home/apt,75,5,25,2019-04-23,0.78,1,6 +15618546,Sunny Immaculate Spacious 1-bdrm-1 block to C Park,5598880,Debbie,Manhattan,Upper West Side,40.79985,-73.96138,Entire home/apt,135,7,7,2018-03-19,0.22,1,99 +15620823,LOCATION! | Fabulous Studio | Greenwich Village,23744032,Seth,Manhattan,West Village,40.7365,-73.99751,Entire home/apt,209,2,157,2019-06-26,4.80,1,16 +15620833,Only Steps Away from Central Park,95623010,Chad & Noel,Manhattan,Upper West Side,40.7762,-73.97944,Entire home/apt,185,2,145,2019-06-26,4.59,1,215 +15621557,Bedroom w/ own bathroom & backyard in Bushwick!,6433320,Daniel,Brooklyn,Bushwick,40.69907,-73.92115,Private room,40,5,0,,,1,0 +15624363,Furnished Bedroom w/Private Bath in BROOKLYN,52894477,Jennifer & Inam,Brooklyn,Crown Heights,40.67033,-73.96161,Private room,48,30,3,2019-05-15,0.24,1,136 +15625492,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,76104209,Rated,Manhattan,Upper East Side,40.761,-73.9615,Entire home/apt,154,30,0,,,33,342 +15625556,Private Room for 2 in Midtown West ☆,100721907,H,Manhattan,Chelsea,40.74929,-73.99658,Private room,78,3,87,2019-06-23,2.68,1,44 +15625579,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,76104209,Rated,Manhattan,Upper East Side,40.75954,-73.96099,Entire home/apt,163,30,0,,,33,364 +15627978,CENTRAL GORGEOUS STUDIO - HUGE PRIVATE TERRACE,100746171,Ana,Manhattan,East Village,40.72515,-73.9839,Entire home/apt,129,3,76,2019-06-30,2.32,1,74 +15628789,Newly Renovate 2 Bedroom Apartment in Central Area,100757200,(Mary) Haiy,Brooklyn,Bay Ridge,40.63461,-74.02451,Entire home/apt,126,1,188,2019-06-24,5.81,1,295 +15629854,"Big Backyard! Entire 2 Story House, Near Train",42986446,Nikki,Brooklyn,Bedford-Stuyvesant,40.69136,-73.92803,Entire home/apt,229,2,8,2018-09-03,0.25,1,0 +15631921,"East Village Flat-Clean,Comfy,Close",43227390,Rose,Manhattan,East Village,40.72216,-73.97806,Private room,110,3,7,2017-07-31,0.22,1,0 +15632312,Bright and Sunny 2 Bedroom Apt.,9329143,Janna,Manhattan,East Harlem,40.79931,-73.94196,Entire home/apt,170,6,3,2018-12-30,0.16,1,0 +15632470,"Cozy Bedroom in Astoria, 17 min from Times Square",84841205,Yorgos,Queens,Astoria,40.76227,-73.92316,Private room,55,4,104,2019-07-02,3.29,1,53 +15632516,Beautiful room in Spacious Duplex,1327518,Dawn,Brooklyn,Bushwick,40.69061,-73.91348,Private room,40,30,0,,,1,5 +15633510,Light-Filled Corner Glass Apartment,17328624,Marcus,Brooklyn,Prospect-Lefferts Gardens,40.65731,-73.94693,Entire home/apt,200,5,9,2018-07-16,0.29,1,166 +15633514,Great Bedroom in Homey Apartment,4808861,Christian,Manhattan,Midtown,40.75622,-73.96768,Private room,125,1,0,,,1,0 +15633727,Cute 1-bedroom in the East Village,16641743,Shy,Manhattan,East Village,40.72952,-73.98388,Entire home/apt,140,7,1,2016-11-07,0.03,1,0 +15634892,"Adorable, NYC studio for the holiday!",15353668,Bria,Manhattan,Midtown,40.75228,-73.97186,Entire home/apt,144,28,0,,,1,90 +15635167,Co-op Apartment in The Lombardy Hotel- 250 sq. ft.,100829279,Ian,Manhattan,Midtown,40.76195,-73.97148,Entire home/apt,210,1,202,2019-06-15,6.40,3,211 +15635287,Room near NYC airports + trains,87393824,Sylvette,Queens,Jamaica Hills,40.71245,-73.79806,Private room,65,1,16,2018-01-14,0.50,1,0 +15640345,TOP LOCATION/EXPOSED BRICK. CNTRL PRK AND MUSEUMS!,76667674,Robin,Manhattan,Upper East Side,40.76397,-73.96245,Entire home/apt,186,2,109,2019-06-27,3.42,1,77 +15641562,SPACIOUS STUDIO APT 3 IN PROSPECT LEFFERTS GARDENS,3270460,William M.,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.95865,Entire home/apt,100,5,54,2019-07-07,1.69,2,0 +15643425,Spacious Victorian home,11742138,Susan,Brooklyn,Flatbush,40.63667,-73.96705,Entire home/apt,250,4,3,2019-06-25,1.07,1,35 +15644644,Queen bedroom with private bathroom in Brooklyn,72029809,Flavia,Brooklyn,Bedford-Stuyvesant,40.69364,-73.93303,Private room,89,5,1,2016-10-23,0.03,1,0 +15646546,"Great apt, Next to 1 train.",98235552,Ali,Manhattan,Harlem,40.82364,-73.9533,Private room,60,3,0,,,1,0 +15646864,Williamsburg / Greenpoint 1500 square foot apt,8712217,Tim,Brooklyn,Greenpoint,40.72667,-73.95221,Entire home/apt,200,4,0,,,1,0 +15647143,Lovely 2 Bedroom with Balcony on UWS,531006,Kaya,Manhattan,Upper West Side,40.79039,-73.96789,Entire home/apt,180,4,9,2018-07-22,0.37,1,0 +15647980,"CLEAN, PRIVATE ROOM CLOSE TO THE CITY AND JFK.",100970583,Maria,Queens,Woodhaven,40.68774,-73.8593,Private room,50,4,82,2019-06-11,2.52,2,215 +15648008,Sunny studio loft in Brooklyn,18727732,Michelle,Brooklyn,Williamsburg,40.71783,-73.94104,Entire home/apt,160,3,12,2019-05-27,0.93,1,0 +15648096,Spacious 2 bedroom close to Manhattan,100971588,,Bronx,Highbridge,40.83844,-73.92489,Entire home/apt,75,4,37,2019-07-07,1.21,1,26 +15648413,"MUSEUM MILE, CENTRAL PARK & SUBWAY in #1 LOCATION!",80262218,Laila,Manhattan,Upper East Side,40.77117,-73.95599,Entire home/apt,145,30,5,2019-05-27,0.23,3,177 +15648993,Brooklyn Historic Brownstone with Garden,57125089,Lauren & Anthony,Brooklyn,Bedford-Stuyvesant,40.68118,-73.91107,Entire home/apt,119,2,152,2019-06-24,4.68,1,14 +15649021,"Cool private room in Astoria, New York!",14422390,Bill,Queens,Astoria,40.76625,-73.93295,Private room,49,1,12,2017-07-19,0.37,1,0 +15655332,Spacious Brooklyn Loft Apartment & Rooftop Deck,36743809,Hilary,Brooklyn,Williamsburg,40.71443,-73.94153,Entire home/apt,300,2,2,2016-11-26,0.06,1,310 +15657915,Beautiful modern room in SoHo,1475812,Ignani,Manhattan,Nolita,40.71995,-73.99461,Private room,140,2,66,2019-05-31,2.05,3,44 +15658350,Large Brooklyn loft close to everything,432149,Cressida,Brooklyn,Bedford-Stuyvesant,40.69905,-73.94451,Entire home/apt,98,2,0,,,1,0 +15659634,Carroll Gardens guest suite,8977158,Viki,Brooklyn,Carroll Gardens,40.68321,-73.99681,Entire home/apt,199,2,116,2019-06-23,3.78,2,230 +15659743,Super Cute Garden Apartment in Bed-Stuy!,62256292,Inez,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93648,Entire home/apt,125,3,91,2019-07-01,2.80,1,78 +15659791,Lovely studio near Grand Central /You will love it,1475015,Mike,Manhattan,Midtown,40.75105,-73.97045,Entire home/apt,95,30,0,,,52,297 +15660209,HUGE CHEERFUL PRIVATE STUDIO SUITE WITH BACKYARD,21640001,Anna,Queens,Rego Park,40.7184,-73.86015,Entire home/apt,95,2,7,2017-09-03,0.23,1,345 +15663344,Cozy Private Room in Williamsburg/Greenpoint Loft,20691787,Jeanne & Sara,Brooklyn,Greenpoint,40.72482,-73.95408,Private room,60,1,92,2018-12-23,2.85,1,0 +15663513,Townhouse South-facing ensuite,68094795,Diane And Ward,Manhattan,Upper East Side,40.76754,-73.96166,Entire home/apt,249,3,55,2019-06-30,1.75,2,1 +15663543,2 Bedrooms with room for 4,48498971,Adam,Brooklyn,Crown Heights,40.67741,-73.95386,Entire home/apt,160,30,2,2018-11-23,0.09,1,0 +15663586,Hudson Yards-Chelsea ️,101131690,Alberto,Manhattan,Hell's Kitchen,40.75751,-73.99401,Entire home/apt,175,1,22,2019-07-02,1.04,1,12 +15663603,Comfy Private Room in Hamilton Heights,101131904,Tarirai,Manhattan,Harlem,40.83124,-73.94501,Private room,40,2,59,2019-06-23,1.90,1,39 +15663646,Big furnished bedroom Williamsburg,844442,Sarah,Brooklyn,Williamsburg,40.70758,-73.94197,Private room,115,2,0,,,1,0 +15663653,"In-law unit - bedroom, living room, mini kitchen.",2305944,Misha,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.94532,Entire home/apt,79,5,48,2019-02-23,1.64,1,0 +15664037,Flatiron / Gramercy 2 Bed Studio,22067387,Blake,Manhattan,Flatiron District,40.7385,-73.98782,Entire home/apt,236,1,23,2017-07-24,0.71,1,0 +15664673,Big room in the heart of Chelsea.,86408170,Malin,Manhattan,Chelsea,40.74368,-73.99825,Private room,120,1,1,2016-10-27,0.03,1,0 +15665152,Charming 2-Bedroom Brownstone Garden Level Apt.,19282734,Eric,Brooklyn,Bedford-Stuyvesant,40.68134,-73.92226,Entire home/apt,120,3,117,2019-06-18,3.60,1,232 +15665469,Sunny and cozy bedroom in Ditmas Park,8832456,Ubi,Brooklyn,Kensington,40.64381,-73.97018,Private room,54,1,132,2019-06-23,4.03,1,70 +15665485,Sunlit Jungle Apartment,8164085,Lyles,Queens,Ridgewood,40.69692,-73.90008,Private room,56,2,9,2019-05-27,0.40,1,80 +15671751,"Cozy, Colorful Private Room on the Upper East Side",30653537,Rachel,Manhattan,East Harlem,40.78941,-73.94881,Private room,60,1,8,2017-05-14,0.25,1,0 +15672618,Beautiful Brooklyn bdrm in Prime Williamsburg,22963797,Lisa,Brooklyn,Williamsburg,40.71089,-73.96627,Private room,90,2,73,2019-06-23,2.31,1,338 +15672772,Williamsburg/Bedstuy Creative Loft,2394687,Nkoli,Brooklyn,Williamsburg,40.70005,-73.95101,Entire home/apt,260,1,1,2018-10-06,0.11,1,88 +15675274,Beautiful Upper East Side Studio,62641421,Tammy,Manhattan,Upper East Side,40.7754,-73.95236,Entire home/apt,125,2,8,2018-07-29,0.26,1,0 +15677846,Long Island City Apartment,101262037,Israel,Queens,Long Island City,40.75378,-73.93449,Private room,65,1,5,2019-04-27,0.15,1,66 +15678054,1br wburg w/ views of NYC + doorman,99145869,Sophie,Brooklyn,Williamsburg,40.71822,-73.95134,Entire home/apt,120,30,6,2018-09-24,0.29,1,164 +15678122,"Lovely Room in Greenpoint, Brooklyn",11262790,Kajsa,Brooklyn,Greenpoint,40.72474,-73.94859,Private room,55,5,3,2016-12-30,0.09,1,0 +15678623,"Spacious and Homey 2 bedroom, Express Subway Stop",3137269,Rosy,Brooklyn,Crown Heights,40.67587,-73.93175,Entire home/apt,130,3,7,2017-05-08,0.21,1,0 +15679326,豪华套间,101276529,Tracy,Queens,Flushing,40.75558,-73.83343,Private room,96,1,73,2019-06-19,2.30,1,343 +15681476,Luxury meets comfort in the heart of Williamsburg!,1314045,Tim,Brooklyn,Williamsburg,40.71361,-73.94804,Private room,109,1,228,2019-06-28,6.97,3,326 +15685669,Private room in Williamsburg. Very close to train!,1314045,Tim,Brooklyn,Williamsburg,40.71326,-73.94947,Private room,99,1,220,2019-06-30,6.71,3,352 +15686751,One bedroom in Williamsburg,48282875,Gonzalo,Brooklyn,Williamsburg,40.70604,-73.94307,Private room,55,3,4,2018-06-03,0.13,1,0 +15693063,Cloud Suite,97186572,Olive,Manhattan,West Village,40.73088,-74.00378,Entire home/apt,300,1,59,2019-06-28,1.83,1,73 +15693558,Large modern one bedroom apartment,19153021,Aliya,Manhattan,East Harlem,40.78982,-73.94263,Entire home/apt,220,7,0,,,1,0 +15699791,Cozy Winged Bedroom in the East Village,59962617,Jennifer,Manhattan,East Village,40.72635,-73.98578,Private room,155,1,1,2017-03-21,0.04,1,0 +15699803,Cozy Home in Harlem ✨,20414163,Sasha,Manhattan,Harlem,40.81102,-73.94712,Entire home/apt,133,4,23,2019-03-29,0.72,1,5 +15699850,Space & Comfort in Victorian Brooklyn home,57812046,Dave + Suzanne,Brooklyn,Flatbush,40.64008,-73.96579,Entire home/apt,180,3,5,2018-01-07,0.15,2,0 +15700484,SPACIOUS LUXURY 2 bedroom apartment in Brooklyn!,62413233,Eleanor & Kameon,Brooklyn,Bedford-Stuyvesant,40.67718,-73.91405,Entire home/apt,135,4,9,2018-05-20,0.29,1,0 +15701072,DREAM MIDTOWN RENOVATED STUDIO,101378990,Grand,Manhattan,Midtown,40.74634,-73.98704,Private room,179,1,4,2017-06-20,0.13,1,337 +15701663,Home sweet home in Harlem,26504092,Wangari,Manhattan,Harlem,40.81407,-73.95092,Entire home/apt,100,3,2,2017-01-05,0.06,1,0 +15701672,Hidden gem walking distance to Central Park.,34061867,Aydin,Manhattan,Upper East Side,40.77079,-73.95922,Private room,100,2,17,2019-07-02,0.52,1,4 +15702021,Large Room in Trendy Bushwick - 2,9864136,Anthony,Brooklyn,Bushwick,40.68602,-73.91522,Private room,45,1,2,2017-10-01,0.06,26,250 +15703294,Ultra-modern East Village apartment in luxury bldg,1446988,James,Manhattan,East Village,40.73281,-73.98686,Entire home/apt,250,4,12,2019-05-05,0.37,1,3 +15703497,Elevator Doorman GYM Deck! 5120,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74461,-73.97216,Entire home/apt,180,30,0,,,96,320 +15704180,ARTIST LOFT in WILLIAMSBURG,1407676,Jessica,Brooklyn,Williamsburg,40.71623,-73.95777,Private room,350,1,19,2019-07-03,0.64,4,244 +15704213,Room w/ Private Balcony River View,2134232,Crystal,Manhattan,Tribeca,40.71916,-74.01177,Private room,95,1,22,2017-08-18,0.68,2,0 +15706724,"Ground floor,Private garden Patio - sleeps 6 - UES",78832142,Rory,Manhattan,Upper East Side,40.77851,-73.94985,Entire home/apt,218,2,60,2019-06-19,1.85,1,305 +15706863,Jefferson Estates,101435219,Gretchen,Brooklyn,Bedford-Stuyvesant,40.69226,-73.93458,Entire home/apt,176,2,80,2019-07-01,2.52,2,197 +15707188,Beautiful Bedroom In the Heart of Harlem,50145118,Sonia,Manhattan,Harlem,40.8091,-73.94241,Private room,89,1,3,2017-08-19,0.10,3,0 +15709537,Cozy 1-bedroom apartment in LES,10773304,Lili,Manhattan,Lower East Side,40.71983,-73.98196,Entire home/apt,160,3,90,2019-06-22,3.17,1,147 +15713028,Artsy Bedroom for Solo Traveler,101113595,Chloe,Brooklyn,Bedford-Stuyvesant,40.68012,-73.93862,Private room,89,2,2,2017-01-01,0.07,1,0 +15713669,Cosy North Bronx studio apartment with Parking,101493347,Beverly,Bronx,Wakefield,40.89121,-73.85131,Entire home/apt,79,3,18,2018-09-25,0.57,1,5 +15715221,"Safe, Cozy Artist Apt Steps From Central Park",37447483,Riley,Manhattan,Harlem,40.80102,-73.95401,Private room,70,3,62,2019-06-30,1.94,1,73 +15715485,Beautiful Downtown Brooklyn Studio,8615868,Elle,Brooklyn,Park Slope,40.67829,-73.97891,Entire home/apt,100,1,0,,,1,0 +15715486,Authentic artist loft space in Prime Williamsburg,4075380,Tanya,Brooklyn,Williamsburg,40.71551,-73.96356,Entire home/apt,150,30,3,2019-05-31,0.09,1,179 +15715599,"Sprawling, Sunlit Gorgeous LOFT",7728010,Jane,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95876,Private room,63,5,9,2019-05-26,0.28,1,342 +15715946,Sunny room with private bathroom - 5m to L train,34875504,Juan P,Brooklyn,Bushwick,40.68992,-73.90951,Private room,63,2,20,2018-07-22,0.62,1,0 +15716189,Comfy private room in great Astoria neighborhood,18192996,Jessica And Danny,Queens,Ditmars Steinway,40.7785,-73.91693,Private room,55,1,5,2017-03-12,0.15,2,0 +15716633,Bright Spacious BK Room with Bath,22118802,Sara,Brooklyn,Bushwick,40.7007,-73.92359,Private room,90,3,3,2016-12-01,0.09,1,0 +15717652,Williamsburg Gem: Sleep up to 5,101529107,Natalie,Brooklyn,Williamsburg,40.71124,-73.96451,Entire home/apt,164,2,1,2017-01-04,0.03,1,0 +15717865,Beautiful private room in Queens NY,74782658,Gerardo,Queens,Glendale,40.70075,-73.88743,Private room,40,1,117,2019-07-01,3.63,1,300 +15718412,Sunny 2 bd + Private rooftop on best GP street,14521207,Megan & Matt,Brooklyn,Greenpoint,40.72831,-73.95634,Entire home/apt,250,3,2,2018-03-23,0.11,1,0 +15720448,Private Room in Luxury Building,101550977,Myko,Manhattan,Financial District,40.70488,-74.00744,Private room,95,5,45,2019-05-24,1.40,2,272 +15720449,Luxury Building - Private Room,101550977,Myko,Manhattan,Financial District,40.70602,-74.00891,Private room,90,4,61,2019-05-29,1.90,2,246 +15720498,Beautiful Bedroom: Spacious & Sunny!,25685076,Yoseph & Malky,Brooklyn,Kensington,40.63725,-73.97345,Private room,111,1,74,2019-06-30,2.28,1,156 +15720621,2 family home. Top floor with private entrance way,101557399,Lydia,Brooklyn,East Flatbush,40.6418,-73.93947,Entire home/apt,120,2,56,2019-07-07,1.82,1,85 +15721022,One-Bedroom Brooklyn Brownstone,34331702,Mariam,Brooklyn,Bedford-Stuyvesant,40.68887,-73.92903,Entire home/apt,95,4,20,2019-06-27,1.81,1,14 +15721376,Views ! - Unique penthouse in UWS,69652097,Michele,Manhattan,Upper West Side,40.80131,-73.97114,Entire home/apt,175,21,5,2019-06-24,0.19,1,0 +15721683,Your home while you explore NYC! Near Central Park,101569412,Agnes,Manhattan,East Harlem,40.78918,-73.94652,Entire home/apt,100,7,17,2018-09-17,0.54,1,11 +15721685,Perfect location: Central to everything!,39668851,Hyggens,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95075,Entire home/apt,100,5,11,2019-06-14,0.44,1,298 +15721847,Colorful Artist Loft w. your own Ocean Oasis,909710,Claire,Brooklyn,Williamsburg,40.70634,-73.95338,Private room,49,5,17,2018-04-30,0.53,1,0 +15725732,"2 Bedrooms apt,Modern New Renovated",101604346,Frank W,Brooklyn,Bay Ridge,40.63447,-74.02455,Entire home/apt,116,1,213,2019-07-01,6.55,1,314 +15726990,Two-bedroom in the heart of Chelsea,15600805,Nissim,Manhattan,Chelsea,40.73975,-73.99848,Entire home/apt,265,3,2,2016-11-27,0.06,1,0 +15728780,"SOMMwhere in NYC/ a unique, conscious artists loft",148108,Fatima,Manhattan,Lower East Side,40.72297,-73.98946,Private room,333,1,40,2019-06-10,1.27,2,62 +15729325,Cozy Bedroom in a great location.,101632253,Linnette,Manhattan,East Harlem,40.78857,-73.94952,Private room,100,3,20,2018-06-10,0.66,1,188 +15732405,Enjoy the city life without the noise,101643312,Tony,Queens,Queens Village,40.72816,-73.73874,Entire home/apt,320,30,0,,,2,180 +15732669,Doorman 2 Windows City View Studio GYM W&D 5199,16098958,Jeremy & Laura,Manhattan,Theater District,40.76258,-73.98575,Entire home/apt,155,30,1,2017-01-02,0.03,96,309 +15732778,"Huge space across from park, easy to Manhattan",3398280,Megan,Brooklyn,Prospect-Lefferts Gardens,40.65776,-73.96174,Private room,65,20,3,2019-04-30,0.39,1,35 +15732919,Cozy. Clean. And affordable,101643312,Tony,Queens,Queens Village,40.72828,-73.73542,Private room,149,30,0,,,2,90 +15733438,MASTER BR/ SUITE ( PRIVATE BATHROOM ),2908180,Simone,Manhattan,East Harlem,40.7898,-73.94213,Private room,125,5,59,2019-07-02,2.03,1,110 +15733597,Bright and Charming Private Room in Williamburg!,57109253,Naveen,Brooklyn,Williamsburg,40.71365,-73.96232,Private room,70,3,12,2018-10-10,0.38,1,188 +15733832,Ponerse las Pilas - VIVO NYC!!!,101653570,The Wrights,Brooklyn,Bedford-Stuyvesant,40.68955,-73.95117,Private room,59,2,195,2019-06-21,6.01,3,40 +15734642,"Sunny huge room, 15m away from Manhattan",8076786,Suri,Brooklyn,Sunset Park,40.65888,-74.00044,Private room,89,1,2,2019-06-25,0.10,3,281 +15734793,The Perfect Pied-à-Terre for You!!!,101653570,The Wrights,Brooklyn,Bedford-Stuyvesant,40.68908,-73.95545,Private room,59,2,171,2019-06-20,5.26,3,57 +15735169,Spacious studio in Upper East Side,85726670,Priscilla,Manhattan,Upper East Side,40.77043,-73.95557,Entire home/apt,150,3,2,2019-06-09,0.08,1,0 +15735305,Wyndham Midtown Condo with Full Kitchen SPECIAL!,96098402,Wynpoints,Manhattan,Midtown,40.75365,-73.97151,Private room,369,3,8,2017-02-13,0.25,12,365 +15736079,King Sized Serenity,17043144,Kat,Brooklyn,Bushwick,40.70018,-73.93858,Private room,55,3,1,2016-11-15,0.03,1,0 +15736953,Serenity Near Time Square,83246395,Roshelle,Manhattan,Hell's Kitchen,40.75764,-73.98963,Private room,150,2,0,,,1,0 +15739930,Cozy Room Amazingly Located in Williamsburg !,44706272,Sophia And Shannon,Brooklyn,Williamsburg,40.70835,-73.955,Private room,45,3,4,2017-07-30,0.13,1,0 +15740172,"Beautiful Room close to JFK, La Guardia, LIR",101712494,Alphanso,Queens,Rosedale,40.67126,-73.72982,Private room,55,2,4,2017-10-22,0.13,2,349 +15741448,"Convenient to JFK, La Guardia Airport and Dining",101712494,Alphanso,Queens,Rosedale,40.67104,-73.73006,Private room,55,2,12,2018-09-01,0.37,2,355 +15742916,Bright and Beautiful 1br Apartment in Little Italy,8881924,Seyhan,Manhattan,Little Italy,40.71819,-73.99786,Entire home/apt,196,6,6,2019-05-27,0.20,1,268 +15743151,❤️ Beautiful/Spacious/Convenient BK Apartment!,11075539,Brett,Brooklyn,Bushwick,40.69688,-73.93396,Private room,69,2,96,2019-06-30,2.93,1,36 +15745269,Cozy and spacious 1 BR near Columbia University,25851147,Victoria,Manhattan,Harlem,40.81736,-73.95294,Private room,65,3,49,2019-05-24,1.50,1,46 +15745411,Quiet Private Bedroom with Full Size Bed in LES,6109872,Severine,Manhattan,Lower East Side,40.7209,-73.98428,Private room,100,2,16,2017-12-10,0.50,1,66 +15745528,2 TwinXL Beds Walk-To TIME SQUARE #ForReal,51830483,Nathan,Manhattan,Hell's Kitchen,40.76028,-73.98846,Private room,92,1,140,2019-06-17,4.29,2,152 +15745537,★Hip ★Subway 1 min ★Backyard ★3Beds ★Huge ★Duplex,5321130,Anna,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95245,Entire home/apt,365,5,77,2019-06-20,2.44,1,112 +15746736,Stylish Williamsburg One Bedroom Apartment,101772343,Liz,Brooklyn,Williamsburg,40.71585,-73.95325,Entire home/apt,136,30,8,2019-04-16,0.30,1,0 +15751495,"Entire home in East Village, 2BD, Family friendly",1515114,Roman,Manhattan,East Village,40.72503,-73.97851,Entire home/apt,300,10,4,2019-05-14,0.53,1,16 +15753014,"Classic Brklyn brick house w 2 bedrooms, sleeps 6.",18314550,Tim,Brooklyn,Sunset Park,40.66451,-73.99342,Entire home/apt,175,2,6,2019-04-19,0.20,1,18 +15754561,A beautiful comfy & spacious room.,87370616,Francisca,Bronx,Longwood,40.82006,-73.90332,Private room,80,2,77,2019-07-07,2.37,2,365 +15755439,2 bedroom apartment in front of prospect park,3033622,Jose,Brooklyn,Windsor Terrace,40.65237,-73.97365,Entire home/apt,90,7,1,2017-12-31,0.05,2,210 +15756117,Chic Bedford Studio,3484474,Sophia,Brooklyn,Bedford-Stuyvesant,40.68561,-73.95431,Entire home/apt,150,30,13,2019-05-31,0.41,1,220 +15756248,Glamorous upper west side Private room,12210788,Moustafa,Manhattan,Upper West Side,40.79516,-73.96813,Private room,119,1,117,2019-06-09,3.61,1,365 +15757847,Cozy Top Floor Apartment in Lovely Astoria,24867105,Jane + Abe,Queens,Ditmars Steinway,40.77176,-73.90885,Private room,75,3,0,,,1,0 +15758511,"Super spacious LES apt, close to subway/good eats!",903086,Kasey,Manhattan,Lower East Side,40.71206,-73.98824,Private room,99,5,0,,,1,0 +15758526,3 bed duplex HUGE private deck/ PRIME Williamsburg,9718720,Teddie,Brooklyn,Williamsburg,40.71889,-73.95786,Entire home/apt,450,5,15,2019-05-19,0.49,1,60 +15758553,Luxurious Williamsburg Loft with Private Patio,14258860,Alvaro,Brooklyn,Williamsburg,40.71809,-73.95283,Entire home/apt,200,5,1,2016-11-13,0.03,1,0 +15758640,Large unit in Prospect Park area townhouse,5435740,Kim & Rupert,Brooklyn,Prospect-Lefferts Gardens,40.65989,-73.95386,Entire home/apt,99,2,96,2019-05-29,2.98,1,0 +15761285,Beautiful & spacious apartment on Upper East Side,24425145,Alexandra,Manhattan,Upper East Side,40.76395,-73.96196,Entire home/apt,270,1,3,2018-03-25,0.10,1,0 +15765350,Doorman 2 Bed GYM DECK 5212,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74437,-73.97295,Entire home/apt,190,30,4,2019-01-14,0.13,96,331 +15767882,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74565,-73.99183,Entire home/apt,205,30,1,2017-12-08,0.05,87,365 +15768540,"Cozy Bushwick room w/ balcony, Longterm avail.!",868197,Coco,Brooklyn,Bushwick,40.69945,-73.92255,Private room,39,16,38,2019-06-01,1.21,1,192 +15769652,Luxury Four-Bedroom/Six Bed Apt - Prime Chelsea,101976032,Jay,Manhattan,Chelsea,40.74407,-73.99366,Entire home/apt,499,4,69,2019-06-18,2.13,1,280 +15769964,Stunning 1-Bedroom NYC Apartment on the River!,30283594,Kara,Manhattan,Hell's Kitchen,40.7617,-73.99762,Entire home/apt,275,30,2,2017-09-17,0.08,121,365 +15770469,Large sunny room Williamsburg ten mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71512,-73.95655,Private room,80,2,29,2018-10-30,0.90,2,34 +15772067,"SOHO,TRIBECA,LOFT,4500sqft.",46990279,Phenix,Manhattan,Tribeca,40.71634,-74.00505,Entire home/apt,1500,2,4,2017-09-15,0.12,1,365 +15772447,Big Sunny Room in Huge DUMBO Loft,90025899,Craig,Brooklyn,DUMBO,40.70416,-73.98539,Private room,105,2,146,2019-06-30,4.52,1,62 +15772473,Duplex Penthouse between Union Sq and East Village,12733096,Nuno,Manhattan,East Village,40.73296,-73.98884,Entire home/apt,275,2,0,,,1,0 +15772750,"Bright, Cozy & Quiet ""TreeFort""-type ONE bedroom",88895712,Matthew,Brooklyn,Williamsburg,40.71738,-73.94527,Entire home/apt,150,4,11,2019-01-04,0.36,1,0 +15773388,Cozy room in South Williamsburg BK,795031,D M,Brooklyn,Williamsburg,40.70809,-73.9519,Private room,70,2,117,2019-06-18,3.71,2,35 +15773659,Cozy studio in Chelsea for one or two travellers,6834967,Harry,Manhattan,Chelsea,40.74124,-74.00025,Entire home/apt,150,6,1,2016-11-21,0.03,1,0 +15774003,Summer 2019 Modern 2 Bedroom Flat New York City,97657342,Will & Kim,Brooklyn,Sheepshead Bay,40.60396,-73.95761,Entire home/apt,146,3,98,2019-07-01,3.11,1,79 +15774166,Lovely Bright Upper East Side,28966357,Dorothy,Manhattan,East Harlem,40.78697,-73.94469,Private room,99,2,90,2019-05-12,2.79,3,92 +15774210,"beautiful artistic 1 bdrm in Park Slope, Brooklyn",14370,Misha,Brooklyn,Park Slope,40.67358,-73.97171,Entire home/apt,125,7,1,2017-01-04,0.03,1,0 +15774266,Private modern suite in tree lined Windsor Terrace,102016115,Elizabeth,Brooklyn,Windsor Terrace,40.65131,-73.97866,Private room,125,2,89,2019-06-23,2.78,1,310 +15774629,"Spacious, Great Location, Garden, 1 stop to City.",101883929,Timothy,Brooklyn,Boerum Hill,40.68326,-73.98004,Entire home/apt,182,4,83,2019-06-23,2.82,1,254 +15775049,Room in charming new apartment,16878736,Gabriela,Brooklyn,Bedford-Stuyvesant,40.67989,-73.94298,Private room,55,2,16,2019-01-01,0.52,1,311 +15775237,Beautiful Brownstone in Boerum Hill,5450219,Thomas,Brooklyn,Boerum Hill,40.68501,-73.98581,Entire home/apt,255,3,16,2019-06-09,0.52,1,33 +15777411,"NYMT21-6 LUXURY! 1 bedroom,Cozy,Gym,doorman Ap-2",39890192,Laura,Manhattan,Hell's Kitchen,40.76383,-73.98947,Entire home/apt,160,45,17,2019-05-09,0.54,12,281 +15778177,"NYMT03-1 Luxury! 1 bedroom apt,Cozy,Gym,Rooftop 3",39890192,Laura,Manhattan,Hell's Kitchen,40.76399,-73.98971,Entire home/apt,160,45,16,2019-05-10,0.52,12,345 +15781214,Large Cozy Bedroom in Manhattan,102072740,Lindsay,Manhattan,Washington Heights,40.83837,-73.94224,Private room,75,1,2,2018-05-23,0.06,1,0 +15781324,Inviting One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67821,-73.96588,Entire home/apt,125,30,6,2019-01-31,0.23,3,55 +15781521,Private Room in a 3 Bedroom Apartment!,24215329,Rohan,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92271,Private room,60,2,0,,,1,0 +15781578,Bedstuy Brooklyn Huge Bed Room with Two Windows,102075715,Juan Carlos,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95224,Private room,80,1,1,2019-06-30,1,1,350 +15782266,Two BDRM Perfect CHTWN Manhattan!,101978485,Karline,Manhattan,Two Bridges,40.71165,-73.9993,Entire home/apt,125,1,59,2019-04-20,1.82,1,88 +15782300,Dream Room in Modern Apartment,102080453,Gabriela,Brooklyn,Bedford-Stuyvesant,40.694,-73.94675,Private room,54,1,166,2019-06-22,5.09,2,0 +15783216,1889 Brooklyn Firehouse Apt. Clinton Hill-BedStuy,45009,Luke,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95934,Entire home/apt,170,2,149,2019-06-28,4.60,1,1 +15783413,Classic NYC House - Large 3-Bed 2-Bath Apartment,44498923,Alexandra,Queens,Sunnyside,40.74075,-73.92619,Entire home/apt,115,3,143,2019-06-23,4.43,1,3 +15783719,Private Room in Bright Roomy 3br Brooklyn Apart.,59059294,Eric,Brooklyn,Kensington,40.6378,-73.9696,Private room,65,4,7,2019-05-27,0.22,1,0 +15783766,Cozy easy village apartment in central location,1546439,Isabel,Manhattan,East Village,40.72868,-73.99036,Private room,50,4,1,2016-11-28,0.03,1,0 +15783953,"Sun-drenched apartment, 20 mins to Manhattan",12475280,George,Brooklyn,Bedford-Stuyvesant,40.68899,-73.95555,Private room,44,28,0,,,1,0 +15784377,"Sixth Ave Chelsea, 1bd Serviced Apartment*",22541573,Ken,Manhattan,Chelsea,40.74584,-73.99103,Entire home/apt,229,30,3,2019-03-08,0.12,87,364 +15784598,Sleeps 6! 2 beds/2 ba Manhattan 1300 sq feet huge,90095700,Lee,Manhattan,Financial District,40.70966,-74.00762,Entire home/apt,375,29,0,,,1,283 +15785088,"Spacious 2 BR Clinton Hill Apartment-Brooklyn, NY",102103075,Edna + Isaiah,Brooklyn,Crown Heights,40.67923,-73.96286,Entire home/apt,139,1,216,2019-06-30,6.64,1,257 +15785785,Harrigan Luxury Townhouse Suite,102108786,Marie,Brooklyn,East New York,40.6724,-73.88839,Private room,300,3,8,2019-05-06,0.26,2,80 +15786428,Entire Floor in Great Location & beautiful Garden,24360599,Iwona,Brooklyn,South Slope,40.66132,-73.98678,Entire home/apt,85,5,5,2019-01-03,0.16,1,0 +15787037,Huge room near Manhattan w/ balcony & free pickup!,83627325,Jared,Queens,Sunnyside,40.74481,-73.91671,Private room,139,1,3,2018-07-20,0.12,4,365 +15787042,"Cozy 1 Bedroom in Brooklyn, near park and shops",33626735,Maureen,Brooklyn,Crown Heights,40.67143,-73.92971,Entire home/apt,83,30,7,2019-01-06,0.22,1,311 +15787405,1 bedroom and office room or 2 beds,52835849,Heather,Brooklyn,Bushwick,40.70165,-73.92938,Private room,50,7,0,,,2,89 +15788050,Beautiful Room in Modern Apartment,102080453,Gabriela,Brooklyn,Bedford-Stuyvesant,40.69413,-73.94481,Private room,49,1,153,2019-06-23,4.72,2,0 +15788270,Bright 1 bedroom apartment in the Village,7755859,Pierre,Manhattan,East Village,40.72891,-73.98797,Entire home/apt,120,6,46,2019-07-06,1.75,1,40 +15788312,"Subway, Subway, Subway - AAA+ Location!!!",101653570,The Wrights,Brooklyn,Williamsburg,40.70006,-73.95388,Private room,79,2,167,2019-06-14,5.14,3,21 +15789023,Stay in a Private Room Close to Manhattan :),8076496,Agnes,Queens,Astoria,40.76982,-73.93501,Private room,60,4,6,2019-06-06,0.28,1,96 +15789384,Private NYC spot,35667639,Chris,Manhattan,Stuyvesant Town,40.73167,-73.98146,Private room,175,1,6,2017-05-22,0.19,1,180 +15789405,Bedroom available in Chic & Modern loft-like apt.,7607175,Rodney,Manhattan,Lower East Side,40.7208,-73.9819,Private room,75,5,1,2017-12-19,0.05,1,157 +15790071,Elegant spacious private room,20237633,Mike,Queens,Ridgewood,40.70639,-73.90058,Private room,50,2,13,2017-06-13,0.40,1,0 +15790640,Large 1 Bedroom Three Blocks from Central Park,66823224,Nathan,Manhattan,Upper West Side,40.79386,-73.97223,Private room,80,1,111,2019-07-01,3.51,1,42 +15790816,Lovely room,70963475,Ji,Manhattan,Upper West Side,40.80237,-73.96601,Private room,110,7,1,2017-01-05,0.03,1,87 +15790820,Beautiful Room in Clinton Hill,33924547,Laura,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95339,Private room,130,3,0,,,1,0 +15797693,Clean + Private Bedroom in NYC's Lower East Side,22195599,Christopher,Manhattan,East Village,40.72025,-73.97901,Private room,67,10,14,2018-07-04,0.49,1,7 +15797728,"Modern, Ambient 1-Bedroom Apartment",28189446,Michella,Staten Island,Eltingville,40.54106,-74.14666,Entire home/apt,70,5,83,2019-07-01,2.56,1,291 +15798809,"Private, Comfortable and Big Room89",102218558,Luz Dary,Queens,Jackson Heights,40.75523,-73.88418,Private room,70,1,52,2018-07-22,1.61,1,0 +15798969,"Own Floor in Brooklyn Home, 20 min to Manhattan",58390804,Jen And Lev,Brooklyn,Flatbush,40.6459,-73.9642,Entire home/apt,153,3,64,2019-06-24,2.07,1,277 +15799563,Beautiful Duplex in Historic Park Slope Brownstone,102112347,Joanna,Brooklyn,Park Slope,40.67427,-73.97652,Entire home/apt,350,2,22,2018-10-21,0.69,1,21 +15799603,Noisy room next to Prospect Park,391488,Thalith,Brooklyn,Prospect-Lefferts Gardens,40.65762,-73.96129,Private room,500,1,0,,,1,89 +15800258,Quiet Homestead,102228163,Cesar,Brooklyn,Carroll Gardens,40.67844,-74.00028,Entire home/apt,90,7,1,2018-05-12,0.07,3,50 +15800923,Spacious and peaceful apt in East Village,25495114,Guisela,Manhattan,East Village,40.73016,-73.98171,Entire home/apt,178,9,22,2018-03-22,0.71,1,0 +15801194,"Cute,comfortable room near Columbia University",12495861,Lu,Manhattan,Upper West Side,40.80096,-73.96758,Private room,60,1,0,,,1,0 +15801420,Living excellence- deluxe 2 bedroom apt. in NYC!,30283594,Kara,Manhattan,Hell's Kitchen,40.76626,-73.98338,Entire home/apt,369,30,1,2018-01-21,0.06,121,345 +15801639,Master bedroom/20min Manhattan/individual bathroom,61601937,Yuxi,Queens,Woodside,40.74246,-73.90125,Private room,40,1,7,2017-05-27,0.23,1,0 +15802947,Boerum Hill Charming Studio,102251846,Masoud,Brooklyn,Boerum Hill,40.68898,-73.98751,Entire home/apt,160,2,127,2019-06-30,3.90,1,270 +15805025,Private Master BR/Bath - 15 Minutes to Manhattan,64336536,Ian,Brooklyn,Williamsburg,40.71805,-73.94088,Private room,95,4,0,,,1,0 +15805327,One Bedroom in Heart of LES,73561233,Stefany,Manhattan,Lower East Side,40.71853,-73.98911,Private room,86,5,0,,,1,0 +15805694,Spacious 1 Bedroom in Bushwick,78421449,Meg,Brooklyn,Bedford-Stuyvesant,40.68631,-73.92629,Private room,200,2,0,,,1,0 +15806629,Fantastic Master Bedroom,26020769,Ryan,Brooklyn,Prospect-Lefferts Gardens,40.65678,-73.95154,Private room,99,2,5,2019-03-24,0.16,1,364 +15807946,Cute and comfortable niece room with a balcony.,84141567,Alida,Queens,Maspeth,40.73529,-73.90219,Private room,65,4,0,,,3,0 +15813342,PRIVATE ROOM CLOSE TO THE CITY AND JFK AIRPORT.,100970583,Maria,Queens,Woodhaven,40.68819,-73.86079,Private room,45,4,22,2019-07-01,0.68,2,266 +15813866,LADIES ONLY! Privacy in a shared space :),27260699,J,Brooklyn,Bushwick,40.69382,-73.90925,Shared room,28,1,117,2019-05-23,4.56,4,118 +15813993,Minimalistic 1 BR in little Italy/ China town,10146370,Sara,Manhattan,Chinatown,40.7152,-73.99947,Entire home/apt,159,6,39,2019-05-25,1.31,1,351 +15814037,Luxury immaculate 2 BR apartment Prime Brooklyn,102357305,Kylie,Brooklyn,Gowanus,40.67876,-73.9904,Entire home/apt,250,5,40,2019-06-12,1.32,1,70 +15814363,Cute Two Bed - East Village,11921184,Rachel,Manhattan,East Village,40.72461,-73.98172,Private room,85,2,37,2019-05-26,1.20,1,6 +15815905,Ground Floor apt with Backyard @Lower East Side,55149412,Ha,Manhattan,Lower East Side,40.71248,-73.98662,Entire home/apt,160,1,73,2019-06-16,2.38,4,229 +15816784,big cozy room in Bed-Stuy with separate entrance,20241220,William,Brooklyn,Bedford-Stuyvesant,40.68186,-73.92173,Private room,50,2,0,,,1,0 +15816930,Spacious & Cozy Bushwick Walk-up 3mins from Train,9439324,Chérie,Brooklyn,Bushwick,40.68844,-73.90531,Private room,49,1,74,2019-06-24,2.42,3,53 +15817291,Cozy Quiet Room in the Big Apple on Broadway!!!,102383709,Mark & Will,Manhattan,Harlem,40.82914,-73.94736,Private room,69,4,153,2019-07-01,4.74,2,125 +15818145,Massive Brooklyn Brick 2 Floor Oasis,5568352,Austin,Brooklyn,Fort Greene,40.68718,-73.97289,Entire home/apt,200,2,2,2019-07-03,2,1,15 +15818253,Private room in Red Hook Artist House,9549442,Lynn,Brooklyn,Red Hook,40.67749,-74.00761,Private room,62,5,6,2018-11-01,0.19,1,0 +15818608,Modern brand new apartment in NYC!,34506361,Haley,Manhattan,Murray Hill,40.74686,-73.97514,Entire home/apt,400,1,17,2019-06-08,0.54,2,364 +15818624,Sunny and spacious 1-bedroom in Brooklyn,18192430,Jamie,Brooklyn,Fort Greene,40.6967,-73.97477,Private room,80,1,53,2018-06-01,2.15,1,0 +15819031,"Beautiful Garden Townhouse Apt, Close to Parks.",37433861,Matthew,Queens,Kew Gardens Hills,40.72712,-73.8308,Entire home/apt,105,3,4,2018-03-18,0.12,1,1 +15819242,Sweet two bedroom in Crown Heights Bk,41191579,Maura,Brooklyn,Crown Heights,40.67034,-73.93902,Entire home/apt,87,1,9,2019-01-21,0.30,3,0 +15819665,Charming 2BR--20 min to Manhattan,30593595,Dorion,Brooklyn,Bushwick,40.68442,-73.9083,Entire home/apt,99,3,126,2019-07-03,3.93,1,46 +15819933,Gorgeous Spacious Bedroom In Ridgewood Queens,16494382,Mark,Queens,Ridgewood,40.70735,-73.89343,Private room,20,7,0,,,1,89 +15820512,Apartment with backyard in East Williamsburg,102415020,Guillermo,Brooklyn,Williamsburg,40.70653,-73.93864,Entire home/apt,109,4,91,2019-06-22,3.31,1,212 +15821383,Manhattan low price UWS Columbia big cozy bedroom,70403406,Tiffany,Manhattan,Upper West Side,40.80258,-73.9676,Private room,75,2,8,2017-08-04,0.26,1,0 +15825854,"Beautiful & centrally located, big 1 bedroom apt.",13454974,Michelle,Manhattan,Midtown,40.74665,-73.98042,Entire home/apt,175,2,11,2018-12-07,0.60,1,88 +15827516,Luxury NYC 1 Bed w/Gorgeous Views + Pool,102478101,Robert,Manhattan,Hell's Kitchen,40.75968,-73.99797,Entire home/apt,289,2,4,2017-01-02,0.13,1,0 +15827538,Williamsburg 2 BR Apartment! 1 stop to Manhattan,6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70944,-73.96161,Entire home/apt,209,2,23,2019-06-08,0.72,2,11 +15828883,*OH SO ZEN*~ Chill Bushwick Yoga Spot!!,102488175,Tim,Brooklyn,Bushwick,40.69748,-73.92588,Entire home/apt,75,2,84,2019-06-23,2.61,1,322 +15829202,"Single Bed room in townhouse, near subway",102482048,Susy,Brooklyn,Bushwick,40.68224,-73.90739,Private room,35,2,106,2019-06-24,3.26,4,349 +15830677,Upper East Side Gem Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77789,-73.95473,Entire home/apt,117,30,1,2019-05-30,0.75,91,311 +15831005,SleepEasyNY: PRIVATE SUITE | 5 STOPS TO MANHATTAN,102500495,Giedre & Andre,Brooklyn,East Flatbush,40.66048,-73.93335,Entire home/apt,80,1,127,2019-07-06,6.54,1,7 +15831628,1BR apartment with a spectacular view!,18143446,Courtney,Manhattan,Hell's Kitchen,40.7659,-73.98371,Entire home/apt,250,15,1,2019-04-14,0.35,1,52 +15832098,1.5 BATHRM SUNNY SPACIOUS ROOM BY SUBWAY,4110869,Golden&Mavy,Manhattan,Harlem,40.82284,-73.95546,Private room,50,30,4,2019-06-15,0.14,2,365 +15832372,Big bright room in fantastic location,10398617,Nathan,Brooklyn,Williamsburg,40.7121,-73.95892,Private room,70,2,19,2019-04-24,0.60,1,19 +15832702,Modern Light Filled 1 Bedroom in East Williamsburg,11727149,Silvana,Brooklyn,Williamsburg,40.70687,-73.9425,Entire home/apt,150,3,19,2018-03-26,0.59,1,0 +15832811,Financial District(FIDI) Studio,102518726,Nina,Manhattan,Financial District,40.70959,-74.00646,Entire home/apt,145,3,2,2017-01-03,0.06,1,0 +15833015,Fashion Designer Studio - Entire Apartment,18351549,Calixto,Manhattan,West Village,40.73428,-73.99969,Entire home/apt,221,30,3,2019-01-02,0.13,1,0 +15833471,Huge Brooklyn Backyard Studio w/ King size bed,102526456,Sira,Brooklyn,Bedford-Stuyvesant,40.68858,-73.92212,Entire home/apt,142,1,122,2019-06-30,3.80,1,80 +15833574,Delightful studio apartment.,102526590,Edward,Staten Island,Castleton Corners,40.62063,-74.13001,Entire home/apt,65,2,52,2019-06-30,1.95,1,40 +15834067,Charming 1BD Astoria Penthouse,100781220,Allison,Queens,Astoria,40.75732,-73.92019,Entire home/apt,110,2,67,2019-06-24,2.13,1,191 +15835247,Sunny bedroom in Alphabet City,7455706,Amanda,Manhattan,East Village,40.72117,-73.97839,Private room,80,6,10,2019-06-09,0.31,2,7 +15839085,"Double bed, Modern Skylight Room Near Train",102482048,Susy,Brooklyn,Bushwick,40.68315,-73.90908,Private room,35,2,44,2019-03-10,1.41,4,325 +15840089,Kid- (and Adult-) Friendly Uptown 2-Bedroom,99602138,Yolanda,Manhattan,Washington Heights,40.8349,-73.94829,Entire home/apt,150,3,36,2019-01-01,1.13,1,5 +15840527,Bedroom in shared apt next to Grand Central,2719866,Dora,Manhattan,Murray Hill,40.7487,-73.97842,Private room,40,5,0,,,1,0 +15841513,Gorgeous luxury place Williamsburg,8439929,Ducrot,Brooklyn,Williamsburg,40.7158,-73.94259,Entire home/apt,150,1,17,2019-07-07,0.60,1,102 +15842191,Cozy room in the heart of Park Slope.,18240752,Vadzim,Brooklyn,Park Slope,40.67538,-73.98117,Private room,47,2,7,2017-05-01,0.26,1,0 +15843671,FLUSHING APT!! BEST DEAL IN NYC!!!,102624893,Kevin,Queens,Flushing,40.75957,-73.82206,Entire home/apt,85,1,68,2017-12-24,2.13,1,0 +15844782,"Cozy Apt steps to Park, Subway, Restaurants, Bars",4702833,Tanya,Brooklyn,Windsor Terrace,40.65815,-73.98172,Entire home/apt,100,2,87,2019-06-06,2.78,1,77 +15844840,Room in Queens Close to Train Station!,98697139,Oscar,Queens,Corona,40.7507,-73.85774,Private room,40,1,43,2019-06-08,1.37,2,59 +15845077,"Sunny, 1 Bedroom in Bedstuy, Brooklyn",14566486,Daisy,Brooklyn,Bedford-Stuyvesant,40.68434,-73.95399,Entire home/apt,85,7,1,2016-11-07,0.03,1,0 +15845215,Cozy bedroom apt near to LGA airport. Free Parking,76536839,Tashi,Queens,Jackson Heights,40.75082,-73.89447,Entire home/apt,99,2,171,2019-06-23,5.30,2,1 +15845669,Beautiful Renovated Apartment NYC.,21444167,Rony,Bronx,Kingsbridge,40.88297,-73.90727,Entire home/apt,105,3,54,2019-06-24,1.68,2,278 +15846039,Affordable Private Spacious Room in Brooklyn,46382885,Peter,Brooklyn,East Flatbush,40.66011,-73.93202,Private room,33,2,119,2019-06-18,3.69,1,277 +15851507,Artsy charming room in Bushwick !,11297371,Maria,Brooklyn,Bushwick,40.69889,-73.92937,Private room,50,2,72,2019-06-03,2.35,2,293 +15851599,"Stunning 1 Br, West Village Luxury w/ great views",48815188,Kevin,Manhattan,Greenwich Village,40.73317,-73.99813,Entire home/apt,295,365,15,2018-04-24,0.49,1,0 +15853165,Private and Cozy Bedroom in Williamsburg,89759874,Pauline,Brooklyn,Williamsburg,40.70688,-73.96745,Private room,72,1,154,2019-07-06,4.79,1,215 +15854348,Stylish & Peaceful Retreat in LES Dream Location!,102731382,Davis & Coco,Manhattan,Chinatown,40.71454,-73.99271,Entire home/apt,300,7,58,2019-06-16,1.79,1,36 +15854548,Great Brooklyn location next to subway and cafes,1939376,Audrey,Brooklyn,Clinton Hill,40.68866,-73.96147,Private room,48,20,24,2019-05-01,0.78,1,304 +15855156,Cozy room in the heart of Astoria,40503875,Hebert,Queens,Astoria,40.75927,-73.9092,Private room,55,1,94,2019-04-16,2.91,2,0 +15855646,Private & comfortable room near Prospect Park,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9563,Private room,100,2,90,2019-06-23,2.95,2,0 +15856339,Charming Fort Greene Apartment,3948843,Aubrey,Brooklyn,Fort Greene,40.69012,-73.97252,Entire home/apt,180,2,5,2019-04-14,0.16,1,18 +15857118,Cozy 3BR apartment on Quiet Block,102754726,Paula,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94042,Entire home/apt,300,2,34,2019-06-03,1.11,1,180 +15857259,5 Star Luxury 2 BR Suite Heart of Manhattan,26556695,Alyssa,Manhattan,Midtown,40.7611,-73.97412,Entire home/apt,2000,2,3,2019-05-31,0.38,6,364 +15857334,5 Star Luxury Suite Heart of Manhattan,26556695,Alyssa,Manhattan,Midtown,40.76042,-73.97345,Entire home/apt,1020,1,12,2019-05-22,0.39,6,365 +15857916,A Nice Place to Stay in Bed Stuy,58118452,Baron,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94756,Private room,53,1,59,2018-03-02,1.90,1,188 +15857972,"Entire Flat in Crown Heights, Near Subway",1583461,Ben,Brooklyn,Crown Heights,40.66958,-73.95081,Entire home/apt,160,5,1,2017-09-03,0.04,1,290 +15858680,Cozy Private Room close to Central Park/Met Museum,100842144,Francis,Manhattan,Upper East Side,40.77502,-73.95536,Private room,143,2,8,2018-12-05,0.26,1,365 +15858847,"Classic Brownstone, a Private Studio Apartment",8715723,Jacob,Manhattan,Harlem,40.80783,-73.95419,Private room,164,1,141,2019-06-10,4.74,5,209 +15858922,"Brownstone Sanctuary, a Private Studio Apartment",8715723,Jacob,Manhattan,Harlem,40.80986,-73.95349,Private room,164,1,143,2019-06-21,4.82,5,221 +15859741,Large private room in heart of BK,5237407,Jenima,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.94668,Private room,48,2,74,2019-07-04,2.38,2,20 +15859962,1 Bd Kips Bay Luxury/Doorman. - Pool & Gym.,102792338,Henry,Manhattan,Kips Bay,40.74411,-73.98011,Shared room,65,4,0,,,1,0 +15860051,Cozy private room with King sizebed,99937669,Kary,Manhattan,East Village,40.72524,-73.97777,Private room,70,1,209,2019-07-06,6.45,1,203 +15860528,Big Apple Experience,102799406,Gail,Queens,Maspeth,40.71402,-73.90853,Entire home/apt,159,5,25,2019-06-21,0.97,2,299 +15861331,"Cozy, spacious room in Williamsburg",1260413,Helena,Brooklyn,Williamsburg,40.71368,-73.94236,Private room,89,5,26,2019-05-22,0.80,3,0 +15862199,Clean Apartment in A Warm Home,102811343,AGood,Queens,Astoria,40.77204,-73.93344,Entire home/apt,100,1,131,2019-07-02,4.12,1,8 +15865251,Manhattan - Upper East Side Lovely Private Bedroom,69406365,Yoko,Manhattan,Upper East Side,40.77097,-73.94862,Private room,60,1,27,2017-06-30,0.88,2,0 +15866121,A lovely unique space in the heart of Brooklyn,6181203,Segun,Brooklyn,Crown Heights,40.67638,-73.91578,Private room,42,4,13,2018-05-21,0.41,1,364 +15866130,PRIVATE ROOM - BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.696,-73.91303,Private room,57,4,17,2019-05-19,0.66,2,307 +15866496,"Large Room w Private Backyard, 20 mins to City",9193762,Hannah,Brooklyn,Bushwick,40.69702,-73.93269,Private room,43,1,1,2016-11-29,0.03,1,0 +15867248,Gorgeous Sanctuary Upper East Side,28966357,Dorothy,Manhattan,East Harlem,40.786,-73.94571,Private room,99,2,81,2019-05-26,2.51,3,88 +15867800,Private bedroom & bathroom in 2 bedroom 2 bath Apt,36669277,Eugenie,Brooklyn,Williamsburg,40.71805,-73.96416,Private room,105,1,38,2017-10-30,1.21,1,0 +15868431,Gorgeous 1BR brownstone in Harlem close to trains,8794266,Patricia,Manhattan,Harlem,40.8065,-73.94941,Entire home/apt,140,15,0,,,1,0 +15868654,Huge Room next to subway - 15min from Times Square,21503447,Anthony,Manhattan,Washington Heights,40.8451,-73.94101,Private room,65,5,3,2017-05-06,0.10,1,179 +15870454,Great Studio In Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76313,-73.9943,Entire home/apt,125,30,6,2019-05-09,0.19,31,323 +15870976,"1 Bedroom, Brand New, Ideal UWS Location",8616101,Chris,Manhattan,Upper West Side,40.78146,-73.97917,Entire home/apt,265,2,16,2019-07-02,0.52,1,16 +15872277,Room in Stuytown Apartment,37712463,Caroline,Manhattan,Gramercy,40.73267,-73.98259,Private room,100,3,1,2016-11-29,0.03,1,0 +15873841,"Cozy Private Room in Sunset Park,BK",53635805,William,Brooklyn,Sunset Park,40.64759,-73.99812,Private room,38,2,1,2016-11-10,0.03,1,0 +15874245,"Spacious, Cozy Home Away From Home",48961085,Anabelle,Queens,Astoria,40.76422,-73.92491,Private room,88,5,7,2017-06-22,0.22,1,0 +15874648,A cozy and private place,102924482,Luis,Manhattan,Harlem,40.82514,-73.95489,Private room,60,4,41,2019-06-09,1.31,1,98 +15875061,Stylish Parkside Midcentury Apt,73175609,Alex,Brooklyn,Windsor Terrace,40.65739,-73.9806,Entire home/apt,159,2,32,2017-08-28,0.99,1,0 +15876032,Great Bedroom in a great location. Fun hosts.,59358,V.Stephan,Manhattan,Upper East Side,40.7844,-73.94856,Private room,65,2,42,2019-06-13,1.31,2,0 +15881766,Cosy Holidays in NYC,42271764,Elena,Brooklyn,Crown Heights,40.67432,-73.95329,Private room,700,30,1,2017-01-02,0.03,1,87 +15882274,Quiet&convenient/1B/ UpperWestLuxury/ 2Sub nearby,56551795,Rylee,Manhattan,Upper West Side,40.79369,-73.96539,Entire home/apt,150,4,1,2017-01-01,0.03,1,0 +15884157,PRIVATE BEDROOM Bushwick close to L and J trains,16973022,Patrick,Brooklyn,Bushwick,40.69092,-73.91195,Private room,50,1,4,2016-11-26,0.12,1,0 +15884886,Brooklyn Stay,58368740,Bianca,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95043,Private room,70,1,1,2017-01-02,0.03,1,0 +15885355,Charming 2 Bedroom Space in Downtown Brooklyn,16221357,Theo,Brooklyn,Park Slope,40.68241,-73.97957,Private room,225,15,4,2018-05-24,0.13,1,0 +15886369,Large bright and quiet room with private bathroom,10191995,Nora,Manhattan,Chinatown,40.71622,-73.9912,Private room,61,5,25,2019-07-04,0.79,2,20 +15887617,Modern Contemporary Home near JFK,102742122,Shannon,Queens,South Ozone Park,40.66996,-73.8223,Private room,120,1,31,2019-06-16,1.03,1,352 +15888227,"Spacious, bright room, prime Williamsburg location",11917115,Claudia,Brooklyn,Williamsburg,40.71497,-73.96145,Private room,110,3,0,,,1,0 +15888448,"BKlyn:Artsy, old fashioned at affordable price !",5151544,Ale,Brooklyn,Cypress Hills,40.68148,-73.8904,Entire home/apt,63,4,54,2019-07-07,1.71,1,344 +15888785,Bushwick Chill Spot (Luxury Rental),65092392,Jed,Brooklyn,Bushwick,40.69912,-73.93508,Private room,65,3,72,2019-06-30,2.26,1,179 +15888899,Evergreen Cozy Bed for Female Travelers 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.6825,-73.87165,Shared room,25,1,64,2019-06-03,2.02,6,0 +15889590,A Stunning Private 1 Bedroom in Downtown Flushing,5962328,Alan,Queens,Flushing,40.76092,-73.82194,Entire home/apt,143,30,4,2019-06-09,0.22,15,7 +15890023,Spacious & Sunny 1 Bedroom Gramercy/Flatiron Apt,8330977,Forrest,Manhattan,Midtown,40.74226,-73.98344,Entire home/apt,197,2,47,2019-06-14,1.46,1,13 +15890547,Nice bedroom in lovely Greenpoint,19818873,Aline,Brooklyn,Greenpoint,40.72311,-73.9411,Private room,89,1,86,2019-05-10,2.70,1,173 +15894199,Crown Heights Duplex Apt.,103087934,Martha,Brooklyn,Crown Heights,40.67567,-73.93744,Entire home/apt,158,4,61,2019-05-31,1.92,1,264 +15895829,Entire JR. One bedroom PRIME West Village,4012934,Risa,Manhattan,West Village,40.73278,-74.00053,Entire home/apt,125,7,12,2019-04-28,0.38,1,0 +15896468,Charming Loft,2089329,Emanuele,Manhattan,East Harlem,40.79084,-73.93962,Entire home/apt,250,3,6,2019-01-06,0.22,1,0 +15896529,Bright and quiet room with private bathroom,10191995,Nora,Manhattan,Chinatown,40.71542,-73.99045,Private room,119,6,117,2019-06-17,3.65,2,207 +15899421,Perfect Location_Upper West Side_*Central Park*,103128664,Lina,Manhattan,Upper West Side,40.77409,-73.98031,Private room,128,7,71,2019-07-07,2.21,1,171 +15899432,"Chill, No Luxury Apt w/ Yard - 1 block to train!",103129069,Ed,Brooklyn,Bedford-Stuyvesant,40.69527,-73.9365,Entire home/apt,169,3,44,2019-06-24,1.40,1,64 +15902775,"Modern, Spacious & Pristine Room in Gramercy",103158392,Arthur,Manhattan,Kips Bay,40.73726,-73.97932,Private room,115,3,61,2019-06-25,1.94,1,137 +15903188,Private room in Astoria 10min ride to Central Park,57307079,Julian,Queens,Astoria,40.76785,-73.91596,Private room,70,1,19,2019-06-09,1.50,1,172 +15910575,Delightful place to stay,103131157,Grand,Manhattan,Midtown,40.74771,-73.98873,Private room,115,1,2,2017-07-29,0.08,1,88 +15910664,Comfy room near trendy Columbia University,2388537,Andrea,Manhattan,Morningside Heights,40.81676,-73.96069,Private room,100,3,6,2018-10-02,0.19,2,0 +15911064,2 Level Brownstone! Private room! Manhattan in 15!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69411,-73.94086,Private room,50,3,91,2019-07-05,2.83,4,262 +15911137,Amazing 2 bed 2 bath in Central Harlem.,1301576,Siobhan,Manhattan,Harlem,40.80811,-73.94486,Entire home/apt,200,7,3,2018-09-08,0.09,2,0 +15911434,Charming West Village Brownstone Apartment,10437339,Ro,Manhattan,West Village,40.73845,-74.00551,Entire home/apt,220,10,8,2019-02-28,0.27,2,0 +15912452,"Big Room, Refinished Place - 35 min to Times Sq.",31482341,Daniel,Manhattan,Inwood,40.86859,-73.91948,Private room,45,5,30,2019-01-02,0.94,2,0 +15913986,2 Room/1 Bath Entire Apt! Next to Colleges/Train!,2270624,Ny,Manhattan,Harlem,40.81462,-73.95248,Entire home/apt,203,3,13,2018-11-25,0.42,2,0 +15915152,Manhattan apt near Empire State & UN wfree US cell,21463097,Vanessa,Manhattan,Murray Hill,40.74494,-73.97554,Entire home/apt,180,7,95,2019-06-30,3.01,1,87 +15916709,Studio apartment near Monte Fiore hospital,18934273,Max,Bronx,Norwood,40.87529,-73.8762,Private room,40,1,1,2016-12-24,0.03,1,0 +15917098,650 Ocean Avenue,92947863,Matthew,Brooklyn,Flatbush,40.64569,-73.95938,Private room,42,2,0,,,1,0 +15917278,"Comfortable, cozy apartment in Bed Stuy",103270784,Aryanna,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92038,Entire home/apt,130,2,107,2019-06-23,3.47,1,81 +15917981,Apartment in Luxury Building ***GREAT PRICE***,103277215,Akshay,Manhattan,Theater District,40.76126,-73.98636,Entire home/apt,190,10,5,2019-01-02,0.16,1,0 +15918889,Private room in beautiful Williamsburg apartment,14315424,Alexa,Brooklyn,Williamsburg,40.70781,-73.95324,Private room,58,2,6,2017-12-31,0.20,1,0 +15926847,Super spacious & sunny 1-bedroom Fort Greene Apt.,19966776,Lidia,Brooklyn,Fort Greene,40.68386,-73.96813,Entire home/apt,150,2,1,2017-10-08,0.05,1,0 +15926876,Renovated rooms. Newly furnished 5 min from nyc.,103345244,Jeff,Bronx,Kingsbridge,40.88546,-73.90526,Private room,55,1,0,,,2,64 +15927071,Bright Modern Quiet Chelsea true 1bed,529412,Michael,Manhattan,Chelsea,40.74318,-74.00137,Entire home/apt,180,4,46,2019-06-22,1.48,1,0 +15927523,Newly renovated ground floor apt in Williamsburg,103349564,Jennifer,Brooklyn,Williamsburg,40.71463,-73.96474,Entire home/apt,250,2,53,2019-07-06,1.68,1,2 +15927695,900 sq. ft. Artist Loft in the Heart of Brooklyn,23832321,Aurora And John,Brooklyn,Bedford-Stuyvesant,40.69533,-73.95439,Entire home/apt,150,2,14,2017-11-27,0.46,1,0 +15928001,Brand New Apt off Lexington Ave Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77754,-73.95641,Entire home/apt,125,30,11,2019-04-15,0.38,91,342 +15928351,Williamsburg Room with PRIVATE Balcony,22902354,Jessy,Brooklyn,Williamsburg,40.70852,-73.94849,Private room,49,3,7,2019-05-26,0.32,1,37 +15928635,"Sunny, Cozy, Private Room In The Heart of Bushwick",278393,Dylana,Brooklyn,Bushwick,40.69906,-73.92431,Private room,40,2,96,2019-06-24,2.99,3,78 +15928774,Your joyful and comfy space near 7 train,17638424,Sophie,Queens,Elmhurst,40.74612,-73.87364,Private room,40,1,91,2019-06-30,2.82,8,162 +15928835,Live like a NY'er! Lovely apartment in Manhattan,7265110,Charles,Manhattan,Harlem,40.80703,-73.95354,Entire home/apt,130,4,32,2019-06-26,1.02,1,39 +15928889,Cozy private room in a new building in Bushwick,103273584,Kevin,Brooklyn,Bushwick,40.69283,-73.92702,Private room,900,15,3,2018-09-26,0.09,1,83 +15929281,new Private room Near Tompkins square park,1810885,Alex,Manhattan,East Village,40.72468,-73.9783,Private room,85,3,48,2019-06-24,1.51,3,44 +15929625,"East Village/Gramercy Park, 1 Bedroom",103367641,Nidhi,Manhattan,Gramercy,40.73338,-73.98535,Private room,110,1,8,2018-04-28,0.25,1,0 +15930495,Great apt in amazing East Village!,1778121,Jay,Manhattan,East Village,40.72692,-73.98781,Private room,119,3,8,2018-11-02,0.25,1,76 +15930602,Large Sunny Room in a Harlem Brownstone,8455776,Wendy,Manhattan,Harlem,40.82305,-73.95033,Private room,60,1,23,2019-06-16,0.73,2,97 +15930864,Beautiful 1- bdrm apt in tranquil Inwood building,8925370,Sarah,Manhattan,Inwood,40.87136,-73.91723,Entire home/apt,110,2,26,2018-06-17,0.82,1,0 +15931762,Vacation Music Studio + 1Bedroom in Bedstuy!,51035062,Matt,Brooklyn,Bedford-Stuyvesant,40.69543,-73.94448,Private room,200,2,0,,,1,89 +15936167,"Private room to rent - Hip Williamsburg, Brooklyn",46707487,Kerry,Brooklyn,Williamsburg,40.70884,-73.94354,Private room,50,2,77,2019-06-22,2.44,1,107 +15936959,1BR Apartment in Historic Park Slope Brownstone,5407657,Regina,Brooklyn,Park Slope,40.67574,-73.97773,Entire home/apt,110,5,48,2019-05-21,1.52,1,0 +15937164,Big and Relaxing studio ; great location.,19834899,Hector,Manhattan,Chelsea,40.74022,-74.00094,Entire home/apt,180,2,146,2019-07-01,4.55,1,259 +15937310,Grace,38294216,Rachel,Queens,South Ozone Park,40.66675,-73.81071,Private room,75,10,7,2019-04-13,0.27,4,197 +15938836,"Bright, All New Semi Basement Apartment",103450258,Asaf,Queens,Kew Gardens Hills,40.72136,-73.81717,Entire home/apt,105,4,12,2019-06-22,0.39,1,335 +15939056,"Sunny, Contemporary 1 Bedroom Apt W/ Large Patio",103452342,David,Queens,Kew Gardens Hills,40.72077,-73.81485,Entire home/apt,105,4,21,2019-05-31,0.69,1,352 +15939098,"Sunny, Quiet Urban Oasis w/ Elevator! Near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77221,-73.94819,Entire home/apt,300,2,19,2019-05-21,0.60,3,179 +15940176,Cute room in Williamsburg BK,1252820,Marc,Brooklyn,Williamsburg,40.71329,-73.96322,Private room,60,5,72,2019-07-06,2.35,1,7 +15940328,"Free parking, quiet, 5 stops on N/W to Manhattan",78619120,Dominique,Queens,Astoria,40.77145,-73.93008,Entire home/apt,100,4,78,2019-07-07,2.74,1,201 +15941474,"JFK 10 & LGA 15 minutes, One Bed Room",101657794,Dr. Shirin,Queens,Briarwood,40.70857,-73.8075,Private room,120,1,77,2019-07-06,2.39,6,361 +15942403,Cozy studio basement in heart of Brooklyn,57646925,Gaddi,Brooklyn,Flatlands,40.62846,-73.93355,Private room,35,2,0,,,1,0 +15943090,(2)Comfy Home Away From Home/Multiple Rooms!!!,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95402,Private room,45,1,45,2019-06-23,1.47,4,361 +15943475,Perfect Location! Spacious Upper West Side Flat,103434234,Ali Nicole,Manhattan,Upper West Side,40.7768,-73.98217,Entire home/apt,255,2,65,2019-06-10,2.04,1,5 +15943497,(3)Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68875,-73.95401,Private room,40,1,41,2019-05-24,1.34,4,352 +15944313,Holiday Sublet in Eco-Friendly Artist House,4263511,Miriam,Brooklyn,Flatbush,40.63992,-73.96074,Private room,42,7,0,,,1,0 +15948069,"4 bdrm/2 bath apt. Central Pk, Columbia U.",5162192,Amy,Manhattan,Upper West Side,40.79835,-73.9616,Entire home/apt,240,30,1,2019-05-08,0.48,12,211 +15949915,"Quiet, Private 3.5 rooms, Manhattan convenient",103545877,Jon,Staten Island,Oakwood,40.56233,-74.12673,Entire home/apt,100,2,2,2017-01-30,0.06,1,36 +15951107,Elegant Entire apartment prospect lefferts garden,103554758,Cg,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95478,Entire home/apt,110,3,88,2019-07-02,2.76,1,248 +15952447,"Privacy, comfort, style in the heart of Park Slope",97148702,Helen And Alfred,Brooklyn,Park Slope,40.67192,-73.97733,Entire home/apt,185,3,104,2019-06-25,3.28,1,262 +15952702,Cozy Studio in West Village,1499220,Melanie,Manhattan,West Village,40.73316,-74.00476,Entire home/apt,147,1,42,2019-06-23,1.32,1,4 +15952950,Spacious Bushwick Loft,58503744,Rachel,Brooklyn,Bushwick,40.69505,-73.90729,Private room,65,4,4,2018-06-14,0.12,1,0 +15954073,Clean and Comfortable Studio,3142220,Tiffanie,Manhattan,Kips Bay,40.74114,-73.97657,Entire home/apt,200,2,22,2019-05-26,0.81,1,11 +15954250,Beautiful 3000 SF Triplex house in Clinton Hill,38764806,Ami,Brooklyn,Clinton Hill,40.68764,-73.96782,Entire home/apt,950,4,19,2019-05-20,0.62,1,323 +15955297,Brooklyn Heights for Christmas,103597496,Catherine,Brooklyn,Brooklyn Heights,40.69798,-73.99344,Entire home/apt,275,7,0,,,1,0 +15955577,Comfy room in Williamsburg - Luxury Building,25039414,William,Brooklyn,Williamsburg,40.71612,-73.95085,Private room,200,5,11,2017-09-13,0.36,1,83 +15955940,"Space, comfort, views!",38866485,Eugene,Manhattan,Upper West Side,40.79402,-73.96398,Entire home/apt,100,4,3,2018-01-01,0.10,1,0 +15955961,2 Bedroom East Village NYC Apartment,883283,Alison,Manhattan,East Village,40.72739,-73.98274,Entire home/apt,350,2,0,,,1,0 +15956155,Only 15 minutes from Manhattan,103605111,Yukiko,Queens,Woodside,40.74381,-73.89726,Private room,45,2,36,2019-06-26,1.13,1,52 +15956162,Cozy room with balcony in 15mins Manhattan,103488282,Kaka,Queens,Sunnyside,40.74674,-73.92194,Private room,75,1,122,2019-06-24,3.78,5,0 +15956772,"Clean, Cozy Private Room in Classy Bushwick Apt",103611173,Jiyae,Brooklyn,Bushwick,40.69838,-73.91965,Shared room,60,1,0,,,1,0 +15956780,Cozy private room in nice neighborhood Brooklyn,103611863,Lucy,Brooklyn,Gravesend,40.59744,-73.96964,Private room,40,2,7,2019-01-04,0.22,1,318 +15958090,"Gorgeous, cozy, clean - 25mins to Times Square.",9112269,Tn,Queens,Astoria,40.75669,-73.91974,Entire home/apt,74,2,21,2018-09-13,0.89,1,0 +15958726,"Affordable 1 bedroom apt, in great neighborhood",103631576,Nayamkah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94494,Entire home/apt,100,2,5,2017-05-24,0.16,1,0 +15958841,Spacious Brooklyn Apt (2 Stops to NYC),778293,Jamin,Brooklyn,Sunset Park,40.65766,-73.99919,Entire home/apt,95,3,73,2019-07-01,2.39,1,131 +15961623,Cozy home away from home,83542652,Roger,Queens,Elmhurst,40.72381,-73.88688,Private room,59,3,8,2019-06-26,0.83,1,73 +15963447,"Sunny 3 Bdrms / 2 Bth in Brooklyn, Sleeps up to 8!",38503504,Ayo,Brooklyn,Bedford-Stuyvesant,40.68536,-73.94358,Entire home/apt,180,2,75,2019-06-13,2.35,1,237 +15963664,Bedroom (#2) in beautiful apt near Central Park,21679450,Vicky,Manhattan,Harlem,40.80251,-73.95765,Private room,50,2,0,,,2,0 +15964171,Charming studio located in Kips Bay!,103678761,Chaehyun,Manhattan,Kips Bay,40.74182,-73.97898,Entire home/apt,160,3,9,2017-05-01,0.28,1,0 +15964536,Nice one Bedroom in Williamsburg,16460821,Jehanne,Brooklyn,Williamsburg,40.70856,-73.95469,Entire home/apt,139,4,2,2017-01-04,0.07,1,0 +15966074,Evergreen Upper Bed for Female Traveler 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68313,-73.87077,Shared room,19,2,76,2019-06-20,2.40,6,120 +15966974,Bright apartment in West SoHo with Roof Access,19536090,Adriana,Manhattan,SoHo,40.72705,-74.00419,Entire home/apt,375,2,14,2019-05-19,0.73,2,335 +15967392,Spacious 1+ bedroom apt in NYC,102294498,Gee,Manhattan,East Harlem,40.79335,-73.94527,Entire home/apt,135,1,45,2017-07-02,1.40,1,0 +15968041,Wyndham Midtown 45 King Suite Times Square NYC,57574248,Christine,Manhattan,Midtown,40.75361,-73.97215,Entire home/apt,175,3,0,,,3,0 +15968094,Lovely & welcoming apartment in Bed-Stuy,84495247,Kyle,Brooklyn,Bedford-Stuyvesant,40.68318,-73.93497,Entire home/apt,169,4,78,2019-06-24,2.54,1,84 +15968426,Comfy spacious Astoria aptmt 15m from Manhattan,2753243,Jwanah,Queens,Astoria,40.76248,-73.92422,Private room,56,3,0,,,1,0 +15969097,Big Bright Alcove Studio in Upper East Side,64442357,Jaimie,Manhattan,Upper East Side,40.76323,-73.95916,Entire home/apt,200,4,2,2018-10-18,0.07,1,0 +15969964,Spacious and clean 1 bedroom - Brooklyn,41471799,Tessa,Brooklyn,Bushwick,40.70604,-73.92232,Entire home/apt,115,3,3,2017-04-26,0.10,1,0 +15969978,One Bedroom in Prospect Heights with a Cat!,21660871,Rebecca,Brooklyn,Crown Heights,40.67559,-73.96066,Entire home/apt,45,3,1,2016-11-16,0.03,1,0 +15970276,"Luxury 1BR in Times Square ""Urban Oasis""",12201187,Rex,Manhattan,Theater District,40.7612,-73.98631,Entire home/apt,400,4,12,2019-05-02,0.38,1,26 +15970318,"2 beds in single nice room, JFK&LGA 15 minutes.",101657794,Dr. Shirin,Queens,Briarwood,40.70839,-73.80623,Private room,65,1,47,2019-05-12,1.48,6,365 +15970947,Private room for 2 Guests • Female Only • 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68398,-73.87039,Private room,39,4,2,2017-06-19,0.07,6,0 +15971062,Cozy room 5 mn walk to central park,2448006,El Haj,Manhattan,Harlem,40.8036,-73.94603,Private room,80,2,3,2019-06-24,0.28,3,339 +15971308,Private Room with Private Bathroom in Harlem,1301576,Siobhan,Manhattan,East Harlem,40.80604,-73.94233,Private room,85,3,97,2019-06-24,3.07,2,14 +15971342,Bedroom with Private Living Room near Central Park,43936824,Kylia,Manhattan,Upper East Side,40.77968,-73.95307,Private room,150,1,11,2019-06-07,0.97,1,0 +15972733,Cozy Private Bedroom in the Lower East Side,40639815,Carolina,Manhattan,Lower East Side,40.71953,-73.98364,Private room,75,8,0,,,1,0 +15974141,100$,45404805,Bianca,Queens,Astoria,40.76938,-73.93227,Private room,120,5,1,2018-01-07,0.05,2,351 +15974157,Gorgeous sun drenched 2BR in Jackson Heights,1753251,Abeer,Queens,Jackson Heights,40.75109,-73.88049,Entire home/apt,100,4,4,2018-11-11,0.13,1,157 +15974364,"Colorful, Sun-filled ""Gypsy Cave"" Bedroom in 3BR",92272,Kristin,Manhattan,Gramercy,40.73266,-73.98412,Private room,75,2,18,2019-05-17,0.88,3,62 +15975039,NYC/ ✰ Prime Williamsburg ✰ w/ Private Patio,5179523,Max,Brooklyn,Williamsburg,40.71169,-73.95827,Private room,91,1,13,2019-06-12,0.55,3,85 +15979856,Large private bedroom+bathroom Central Park North,3587764,Jochen,Manhattan,Harlem,40.80031,-73.95514,Private room,150,1,2,2018-12-30,0.07,1,0 +15980715,High-ceilinged room in artist loft space -Bushwick,3619937,Freddi,Brooklyn,Bushwick,40.699,-73.92849,Private room,46,7,26,2019-06-19,0.91,2,0 +15981196,Bedroom w/ living room in heart of Crown Heights,100806,Madeline,Brooklyn,Crown Heights,40.67302,-73.94815,Private room,65,3,10,2019-05-26,0.93,1,12 +15981246,Charming midtown 2 br apartment,35980789,Shani,Manhattan,Upper East Side,40.76301,-73.95994,Entire home/apt,500,1,5,2018-12-29,0.16,1,362 +15982208,"Huge Yellow Room- AC, 20 Min to Manhattan",103841276,Cristina And Sasha,Brooklyn,Bushwick,40.69891,-73.93072,Private room,45,1,158,2019-06-25,4.93,2,201 +15982472,Cosy apartment in Bushwick,103843016,Wendy,Brooklyn,Bedford-Stuyvesant,40.69326,-73.93265,Private room,50,3,0,,,1,0 +15983139,Brownstone garden floor apt w/ patio mins to NYC,23423684,Nicole & Omari,Brooklyn,Bedford-Stuyvesant,40.68638,-73.92856,Entire home/apt,155,2,122,2019-06-30,3.96,1,59 +15983174,Spacious Apartment in Park Slope Brownstone,103848813,David,Brooklyn,Park Slope,40.67595,-73.97635,Entire home/apt,149,11,8,2019-04-27,0.26,1,0 +15983444,Wonderful Private Room with Spacious Outdoor Patio,103850896,Ashley,Brooklyn,Williamsburg,40.71644,-73.9433,Private room,60,2,5,2017-10-22,0.16,2,0 +15984242,"Clean, private room in Hamilton Heights",74895323,Kara,Manhattan,Harlem,40.82434,-73.94979,Private room,42,7,3,2019-01-02,0.10,1,53 +15984446,★City That Never Sleeps★ Hotel Room @ Midtown 45 ★,64065593,ResortShare5,Manhattan,Midtown,40.7523,-73.97288,Private room,198,2,23,2019-04-23,0.75,13,329 +15984590,Single room #2 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80778,-73.94345,Private room,45,30,6,2019-06-23,0.25,6,164 +15984809,Sun filled 1 bedroom in the heart of Crown Heights,95597107,Linda,Brooklyn,Crown Heights,40.67896,-73.95748,Entire home/apt,130,4,3,2018-05-03,0.10,1,13 +15984863,Peaceful Room in Sunny Bohemian Apartment,27844914,Kim,Brooklyn,Bedford-Stuyvesant,40.69637,-73.93995,Private room,44,14,38,2019-06-24,1.24,2,45 +15984877,Complitely Renovated in the heart of LES #14,3256433,Ira,Manhattan,Lower East Side,40.72068,-73.99291,Entire home/apt,250,30,3,2019-05-31,0.19,7,4 +15984905,Single room 2 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80762,-73.94446,Private room,50,30,5,2018-11-18,0.16,6,151 +15984984,Great Location by Subway!,9737900,Nilu,Brooklyn,Clinton Hill,40.68252,-73.96436,Entire home/apt,195,1,39,2019-06-30,1.25,1,62 +15985221,Single room #1 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80572,-73.94349,Private room,45,30,7,2019-05-04,0.23,6,175 +15985264,Quiet Furnished Room in Greenpoint/Williamsburg,103862923,Jane,Brooklyn,Greenpoint,40.72482,-73.9525,Private room,37,3,4,2018-01-01,0.13,1,0 +15985873,A Discounted room in heart of New York !,519554,Umut&Deniz,Manhattan,Lower East Side,40.71867,-73.98959,Private room,78,2,46,2019-06-16,1.45,5,341 +15986033,"Cozy Studio by public garden, Washington Heights!",46173411,Brittany & Matt,Manhattan,Washington Heights,40.8359,-73.93842,Entire home/apt,80,8,4,2018-07-09,0.13,1,0 +15986371,Harlem Humble Abode - 1 bedroom - Cute and Quaint,103839925,S,Manhattan,Washington Heights,40.83071,-73.94093,Entire home/apt,200,5,0,,,1,0 +15986677,"A Private Room in Manhattan, NYC !!!",519554,Umut&Deniz,Manhattan,Lower East Side,40.71858,-73.98968,Private room,78,2,7,2018-06-30,0.23,5,365 +15986775,Chambre disponible Harlem 1 semaine,103875907,Massimo,Manhattan,Harlem,40.81668,-73.94511,Private room,35,1,4,2016-11-26,0.12,1,0 +15986856,"Cozy for female, 10 min away from Manhattan",86569571,Sara,Queens,Long Island City,40.75748,-73.93119,Private room,52,1,0,,,1,0 +15987034,near Williamsburg/Manhattan/ Greenpoint - 1 b/1b,19803201,Gino,Brooklyn,Greenpoint,40.72388,-73.9404,Entire home/apt,150,3,0,,,2,364 +15987217,"Sunny Room- just south of Park, Brooklyn",103883083,Ariana,Brooklyn,Flatbush,40.64693,-73.95944,Private room,33,14,1,2017-02-21,0.03,1,0 +15987959,Cozy apartment in Upper East!,4122796,Sebastien,Manhattan,Upper East Side,40.78122,-73.94989,Entire home/apt,129,2,1,2016-11-18,0.03,1,0 +15988392,"Bright guest room Staten Island, New York",103281721,Marina,Staten Island,Stapleton,40.62903,-74.08206,Private room,49,1,17,2017-09-05,0.53,1,0 +15988494,QUEEN BEDROOM in sunny CENTRAL PARK apartment,103892907,Dali,Manhattan,Harlem,40.79935,-73.95399,Private room,103,1,2,2016-12-10,0.06,1,0 +15988664,Perfect Weekender in the East Village...,10003145,Samuel,Manhattan,East Village,40.72372,-73.97984,Entire home/apt,150,2,85,2019-06-30,3.33,1,194 +15989547,1 Bd in Sunny Bedstuy Apt,7380558,Angelica,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95068,Private room,41,7,9,2018-01-04,0.28,1,0 +15989608,Spacious room w/ own bathroom in the East Village,6049738,Fayth,Manhattan,East Village,40.7308,-73.98619,Private room,76,30,4,2018-08-31,0.13,2,0 +15990051,The Hub 2 for 4,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68327,-73.93858,Entire home/apt,120,3,9,2019-01-27,0.31,3,298 +15990199,Bright & Spacious 1br in the Heart of UWS,44949168,Tingting,Manhattan,Upper West Side,40.78602,-73.97537,Entire home/apt,167,3,3,2017-10-02,0.09,1,0 +15990316,1-Bedroom Apt Near Manhattan,14292409,Matt,Queens,Astoria,40.76332,-73.91351,Entire home/apt,95,4,20,2018-02-19,0.63,1,0 +15990572,Giant Green Room - AC and 20 Min to Manhattan,103841276,Cristina And Sasha,Brooklyn,Bushwick,40.69994,-73.93224,Private room,35,1,148,2019-06-24,4.63,2,169 +15992078,Best Location! Near Times Sq Javits Ctr Penn Sta,15679125,C.D.,Manhattan,Hell's Kitchen,40.75372,-73.99332,Shared room,99,1,8,2019-05-19,0.26,1,365 +15994498,Cozy garden floor apartment-Brownstone,75710434,George,Manhattan,Harlem,40.80878,-73.95206,Entire home/apt,150,2,81,2019-06-02,2.57,1,63 +15995824,Cozy room in Roosevelt Island.,21452718,Juan,Manhattan,Roosevelt Island,40.76375,-73.94856,Private room,65,20,2,2019-02-24,0.34,1,0 +15997148,Huge kid-friendly Brooklyn home with parking/patio,200060,Erin & Marla,Brooklyn,Bedford-Stuyvesant,40.69092,-73.92866,Entire home/apt,150,10,3,2017-06-07,0.09,1,0 +15997880,"Bright, cozy studio in Astoria",103981529,Eva,Queens,Long Island City,40.76184,-73.92839,Entire home/apt,76,3,9,2017-06-11,0.29,1,0 +15998138,❤️ POSH NYC RESORT - Midtown 45 - 2 Guests ❤️,64065593,ResortShare5,Manhattan,Midtown,40.7522,-73.97285,Entire home/apt,198,2,31,2019-05-17,1.19,13,322 +15998231,Cozy Room in Brownstone,20327528,Miller,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95597,Private room,35,3,0,,,1,0 +15999129,Railroad Style 1 B.R. Astoria Bachelor Pad,102278506,Alex,Queens,Astoria,40.75989,-73.91343,Entire home/apt,110,21,6,2018-01-19,0.19,1,0 +16000062,Charming Carriage House near Prospect Park,4366974,Ariana,Brooklyn,Crown Heights,40.6732,-73.96195,Entire home/apt,300,7,0,,,1,0 +16002841,Cozy studio in Chelsea,104025635,Majeed,Manhattan,Chelsea,40.74786,-73.99527,Entire home/apt,125,1,0,,,1,0 +16002946,Luxury and Contemporary,11017633,Matt,Brooklyn,Downtown Brooklyn,40.69744,-73.98445,Entire home/apt,225,5,0,,,1,0 +16004740,Luxury One Bedroom w/ City Views,17108681,Claudia,Manhattan,Upper East Side,40.77878,-73.95056,Entire home/apt,265,2,10,2018-08-20,0.45,1,3 +16004758,Cozy studio in the Heart of NYC,15980694,Quentin,Manhattan,Upper East Side,40.76435,-73.95782,Entire home/apt,110,3,2,2017-04-09,0.06,1,0 +16004776,Bright Garden Room with Kitchenette,7051379,Susan,Brooklyn,Downtown Brooklyn,40.69671,-73.98417,Private room,70,2,106,2019-07-06,3.59,2,53 +16004955,Beautiful Williamsburg Home on the Park,1151840,Antonio,Brooklyn,Williamsburg,40.71824,-73.95289,Entire home/apt,220,5,1,2016-12-27,0.03,1,0 +16004977,Cosy renovated studio apartment in Bed Stuy,26243457,Lina,Brooklyn,Bedford-Stuyvesant,40.68919,-73.94073,Entire home/apt,80,3,6,2017-09-29,0.24,1,0 +16005448,East Village Jewel,104055319,Esther,Manhattan,East Village,40.72757,-73.98439,Private room,55,3,12,2018-03-25,0.37,1,4 +16005960,Cozy Artsy Little Italy Apt!,104060705,Scott,Manhattan,Little Italy,40.71828,-73.99761,Entire home/apt,115,30,4,2019-05-05,0.12,1,35 +16009487,Stylish & Spacious Apartment in Harlem Brownstone,69613456,Elisia,Manhattan,Harlem,40.80891,-73.94247,Entire home/apt,265,2,113,2019-06-23,3.55,1,297 +16010302,"Chic Chelsea charming apartment, GREAT DECOR",18939173,Pablo,Manhattan,Chelsea,40.75133,-73.99965,Entire home/apt,228,4,16,2019-07-06,0.51,1,103 +16010428,Rustic room in renovated Bushwick apartment,5187497,Ignacio,Brooklyn,Bushwick,40.69175,-73.91516,Private room,50,1,2,2016-11-26,0.06,2,0 +16010783,Spacious Harlem Apartment perfect for groups,15757322,Devin T.,Manhattan,East Harlem,40.7958,-73.93186,Entire home/apt,280,2,53,2019-07-03,2.29,2,12 +16011441,15 minute train ride to Times Square,101602599,M,Queens,Woodside,40.74327,-73.90627,Private room,75,3,9,2018-08-26,0.28,2,7 +16011595,Top Floor Views Great Apartment in Williamsburg,24404906,Tony,Brooklyn,Williamsburg,40.70969,-73.95252,Entire home/apt,120,5,1,2019-01-03,0.16,1,0 +16012941,Cozy NYC apt!,8531067,Marina,Manhattan,Upper West Side,40.7953,-73.97248,Entire home/apt,250,2,2,2017-04-16,0.07,1,0 +16014578,Christmas Shopping in Manhattan,19080025,Elsa,Manhattan,Midtown,40.76365,-73.98149,Private room,350,4,0,,,1,0 +16014657,Private Bedroom for 1 Female - LIC great location!,104125363,Monica,Queens,Long Island City,40.74644,-73.94479,Private room,70,4,1,2019-01-04,0.16,1,0 +16014708,One bedroom escape,104134325,Chuck,Manhattan,Harlem,40.80313,-73.95027,Entire home/apt,135,2,113,2019-06-15,3.58,1,86 +16014791,Clean style apt. Central midtwn near Javits,801883,CZ Casa,Manhattan,Hell's Kitchen,40.75536,-73.9995,Private room,110,1,188,2019-06-26,5.87,1,158 +16015053,Nice Space in Williamsburg - Near Bedford L,8872284,Nick,Brooklyn,Williamsburg,40.71304,-73.96381,Entire home/apt,149,1,120,2019-06-16,3.75,1,329 +16015571,Bright and Spacious Living Room.,39261381,Nathaniel,Brooklyn,Flatlands,40.62531,-73.93414,Shared room,22,1,20,2019-07-03,1.28,2,160 +16017948,"5B-Netflix, TV, WI-FI, Heat",104166155,Suzie And Ryan,Brooklyn,East Flatbush,40.64277,-73.94715,Private room,49,2,18,2019-06-23,0.59,2,90 +16018094,STUDIO in Wyndham Midtown 45 New York City!,69545883,Chayla,Manhattan,Midtown,40.75381,-73.97125,Private room,899,2,2,2016-12-09,0.06,12,365 +16018596,Cozy room in Hamilton Heights,24444281,Paloma,Manhattan,Harlem,40.82204,-73.94517,Private room,40,5,4,2018-09-22,0.22,1,0 +16019792,Cozy brand new studio with private entrance,104188124,Sonia,Brooklyn,East Flatbush,40.63291,-73.94302,Entire home/apt,70,2,62,2019-07-02,1.94,1,40 +16023497,Huge Duplex in the Heart of Brownstone Brooklyn,1447642,Chana,Brooklyn,Gowanus,40.68309,-73.98529,Entire home/apt,340,3,12,2019-07-03,0.40,1,63 +16024539,"Beautiful Greenpoint, Brooklyn apt by the park",1622733,Cristina,Brooklyn,Greenpoint,40.72413,-73.9509,Entire home/apt,75,2,14,2019-06-08,0.70,1,93 +16025835,Spacious King Bedroom with Free parking Near Train,24296233,Victoria,Queens,Bayside,40.75555,-73.76515,Entire home/apt,53,6,0,,,1,66 +16026000,Nice Manhattan bedroom,34320426,Manny Lucas,Manhattan,Midtown,40.75976,-73.97178,Private room,90,1,6,2017-04-07,0.19,1,0 +16026135,Discover Ridgewood/Queens,23006467,Alexandra,Queens,Glendale,40.70564,-73.89246,Private room,105,12,0,,,1,0 +16026567,Cozy Room In Williamsburg Near Trains❤️,13394035,Samuel,Brooklyn,Williamsburg,40.70875,-73.94478,Private room,49,20,85,2019-05-27,2.74,1,35 +16026815,NEW RENO HUGE PRIVATE BED&BATH PLUS TERRACE,104254967,Anna,Queens,Long Island City,40.75559,-73.9208,Private room,95,2,62,2019-07-01,1.96,1,118 +16027312,"Upper Eastside Studio, Walk to Central Park",46627258,Travis,Manhattan,Upper East Side,40.7806,-73.95178,Entire home/apt,155,21,9,2018-07-26,0.28,1,0 +16027606,Parlour Apartment in PreWar Home,104262874,James,Brooklyn,Bedford-Stuyvesant,40.67776,-73.92754,Shared room,40,4,17,2018-10-08,0.53,1,0 +16027709,WILLIAMSBURG BEDROOM,50087191,Montana,Brooklyn,Williamsburg,40.7082,-73.94476,Private room,47,1,5,2019-02-01,0.74,1,4 +16027733,420 E 80th St. 2 BR fully furnished,53179388,Raymond,Manhattan,Upper East Side,40.77261,-73.94995,Entire home/apt,190,30,0,,,10,180 +16028015,1 Block to Central Park Manhattan Luxury Condo,63393629,Azure,Manhattan,Midtown,40.7635,-73.97677,Entire home/apt,700,10,15,2019-06-20,1.27,1,302 +16028674,Redford Room 1,104273977,Jasmine,Manhattan,Lower East Side,40.72008,-73.98865,Private room,109,1,3,2018-09-01,0.18,3,0 +16029127,Sleeps 4 Guest's | CENTRALLY LOCATED | Midtown 45,64065593,ResortShare5,Manhattan,Midtown,40.75246,-73.97356,Entire home/apt,198,2,27,2019-05-03,0.88,13,246 +16032177,Chelsea Apartment/Flat- sleeps up to 4,26784331,Kevin,Manhattan,Chelsea,40.74344,-73.99506,Entire home/apt,149,2,8,2017-01-28,0.25,1,0 +16036569,"1BR spacious, sunny (25 min to Manhattan)",64476314,Jd,Queens,Astoria,40.76435,-73.92001,Entire home/apt,101,17,9,2017-11-15,0.28,1,0 +16036654,In the heart of the West Village,104348941,Amanda,Manhattan,West Village,40.7341,-74.00104,Entire home/apt,150,3,1,2016-11-20,0.03,1,0 +16037130,Greenwich Village Apartment,11402865,Michael,Manhattan,Greenwich Village,40.72796,-74.00154,Entire home/apt,135,3,3,2017-07-31,0.10,1,0 +16037497,Luxury doorman 1br in West Village,2622616,Shaun,Manhattan,West Village,40.73596,-74.00927,Entire home/apt,220,4,0,,,1,0 +16037576,Large Private Room in Upper East Side,85294325,Phillip,Manhattan,Upper East Side,40.77128,-73.95787,Private room,80,4,19,2018-11-24,0.60,1,0 +16037703,Private roof deck - 18 min subway to Manhattan,8788534,Maayan,Brooklyn,Bushwick,40.68903,-73.91828,Entire home/apt,84,4,88,2019-07-01,2.88,1,155 +16039453,The Blue Floaty Studio,86887132,Nepreil,Queens,Jamaica,40.69469,-73.78196,Entire home/apt,99,2,13,2019-06-30,1.71,2,365 +16040229,Cute BR at Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76807,-73.98418,Private room,100,2,2,2017-11-06,0.09,3,0 +16040987,Modern Sleeper Sectional Sofa - Custom Design Apt,83809962,Tamara,Brooklyn,East Flatbush,40.66209,-73.92913,Shared room,50,1,23,2018-12-29,0.74,2,364 +16041091,124 W 60th 1 bedroom,53179388,Raymond,Manhattan,Upper West Side,40.77105,-73.9863,Entire home/apt,175,30,4,2018-01-09,0.14,10,160 +16048422,Cute Greenpoint room,25599837,Louise,Brooklyn,Greenpoint,40.73419,-73.95675,Private room,60,3,1,2017-01-02,0.03,1,0 +16050081,Spacious and sunny Carroll Gardens apartment,4087986,Sara,Brooklyn,Carroll Gardens,40.68257,-73.99626,Entire home/apt,170,2,2,2017-12-29,0.06,1,64 +16050276,Bed-Stuy Style & Comfort 2bed Private Living Space,104497453,Mark,Brooklyn,Bedford-Stuyvesant,40.68792,-73.92411,Entire home/apt,170,2,213,2019-06-29,6.90,3,37 +16050505,1 Bedroom Apartment with Balcony in Brooklyn,104500369,Eric,Brooklyn,Bedford-Stuyvesant,40.69519,-73.95107,Entire home/apt,75,1,3,2016-11-29,0.09,1,0 +16050862,Private Bedroom & bath - Huge Apt in Williamsburg,17995733,Idit,Brooklyn,Williamsburg,40.71683,-73.94448,Private room,75,10,0,,,1,0 +16051971,Family Style Home in Upper East/East Harlem,104516875,Matthew,Manhattan,East Harlem,40.78892,-73.94185,Entire home/apt,130,2,3,2017-01-16,0.10,1,0 +16053606,Huge Bedroom in the Upper West near Central Park,4372057,Rafael,Manhattan,Upper West Side,40.77815,-73.97574,Private room,88,7,3,2017-05-31,0.10,1,0 +16054200,Apartment 5A,104350692,Ridhima,Manhattan,Gramercy,40.73204,-73.98364,Private room,110,1,16,2019-05-27,0.50,1,0 +16054225,Luxury doorman building great view NYC,104542199,Ray,Manhattan,Upper East Side,40.782,-73.95143,Private room,200,2,3,2017-09-19,0.09,1,90 +16054732,Charming apt in Bed-Study! Central location,4233535,Mariam,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95851,Private room,60,1,0,,,1,0 +16054883,Onebedroom apartment with park view,46812877,Bradley And Ana,Manhattan,Inwood,40.86271,-73.92872,Entire home/apt,100,5,39,2019-05-05,1.28,1,12 +16055176,Stylish 1 Bedroom in heart of East Village,2407821,Susan,Manhattan,East Village,40.72754,-73.98329,Entire home/apt,190,2,23,2019-06-09,0.73,1,27 +16055506,Cozy private studio 10m fr LGA 30m to Manhattan,104558512,Olenka,Queens,Maspeth,40.7322,-73.89944,Entire home/apt,86,2,78,2019-06-29,2.55,1,149 +16056111,A Touch of Modern,36420662,Marc,Brooklyn,Williamsburg,40.70775,-73.94611,Private room,75,3,3,2017-04-29,0.11,1,0 +16056317,Cozy home away from home,104568045,Luisa,Bronx,Morris Heights,40.85018,-73.9167,Private room,55,2,0,,,1,364 +16056573,Spacious apartment in Brooklyn,617427,Ashfia & Amir,Brooklyn,Clinton Hill,40.68482,-73.96075,Entire home/apt,145,2,4,2018-05-23,0.13,1,0 +16058082,"Private Room in Bronx NY, Manhattan",104584267,Evguenia,Bronx,Morris Heights,40.84862,-73.92412,Private room,75,1,3,2019-05-19,0.32,1,365 +16062739,3 Cozy Zen Rooms In Beautiful Apt.,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95352,Private room,200,2,3,2016-12-11,0.09,4,189 +16063467,"Spacious Modern 1-bedroom in Greenpoint w/TV, heat",2332386,Ariel,Brooklyn,Greenpoint,40.73469,-73.95527,Entire home/apt,86,4,2,2017-03-17,0.06,1,0 +16063885,Spacious 1 Bedroom Apt in the heart of Harlem,83278784,Kennedy,Manhattan,Harlem,40.80761,-73.95416,Entire home/apt,160,1,41,2019-06-16,1.56,1,273 +16064539,"MARTIAL LOFT 3: REDEMPTION (upstairs, 1st room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69467,-73.923,Private room,59,3,11,2019-06-22,0.46,5,0 +16065618,Times Sqaure Gem,87518679,Michelle,Manhattan,Hell's Kitchen,40.76009,-73.98937,Entire home/apt,280,5,1,2017-01-02,0.03,1,0 +16066223,"Spacious, quiet 1 br apt in beautiful Inwood!",1713011,Natasha,Manhattan,Inwood,40.86757,-73.92699,Entire home/apt,89,14,14,2019-05-13,0.57,1,4 +16066417,Brooklyn Getaway,27294350,Jocelyn,Brooklyn,Bushwick,40.69369,-73.9291,Private room,55,3,0,,,1,0 +16067542,King sized bed in pre war apt,31378,Kristine,Brooklyn,Crown Heights,40.67001,-73.96197,Entire home/apt,100,4,8,2019-01-03,0.29,3,6 +16067816,Sunny Sunset Park Apt,17285612,Jessica,Brooklyn,Sunset Park,40.64908,-74.01418,Entire home/apt,75,4,5,2018-08-18,0.16,1,0 +16068067,colorful and huge 1BD near Prospect Park,15792248,Marina,Brooklyn,Kensington,40.63647,-73.97463,Entire home/apt,100,2,1,2017-01-02,0.03,1,0 +16068281,Spacious & Light room in hip Lower East Side,13324284,Rob,Manhattan,Chinatown,40.71608,-73.99233,Private room,95,4,1,2017-01-06,0.03,1,0 +16068953,Awesome room in Brooklyn!!,39872618,Felipe,Brooklyn,Crown Heights,40.6758,-73.93932,Private room,50,3,7,2018-05-15,0.31,1,249 +16069120,An Artist's Inspiration: Sun-Soaked Chelsea Loft,8455543,Jason,Manhattan,Chelsea,40.74292,-73.99969,Entire home/apt,599,2,3,2018-12-28,0.33,1,54 +16069784,Private room in a cozy apartment Flushing!,96303866,Juan Pablo & Andrea,Queens,College Point,40.78955,-73.83921,Private room,44,4,8,2017-04-23,0.27,1,3 +16069925,Great location in NYC!,13599766,David,Manhattan,Morningside Heights,40.80325,-73.96174,Private room,80,8,3,2018-06-03,0.10,1,79 +16071397,Small Private Room in Gramercy/East Village,7555939,Chelsea,Manhattan,Gramercy,40.73257,-73.98234,Private room,65,5,7,2018-09-15,0.26,1,0 +16072214,"One of a kind, entire Brooklyn apartment",49336986,Tor,Brooklyn,Flatbush,40.64111,-73.95667,Entire home/apt,98,2,27,2019-06-09,0.96,1,168 +16078800,Good Vibes and best location in East Village,8739010,Marni,Manhattan,East Village,40.72666,-73.97969,Entire home/apt,131,2,15,2018-09-23,0.49,1,11 +16081021,Artist Welcome! Huge room w/ private office,9563496,Jenny,Queens,Ridgewood,40.71032,-73.91461,Private room,69,7,0,,,1,0 +16081134,Well connected private room,24630962,Ercio,Brooklyn,Williamsburg,40.70627,-73.94947,Private room,70,10,17,2018-03-13,0.61,1,0 +16081163,Bright Brooklyn Bedroom in Crown Heights,17848497,Steve,Brooklyn,Crown Heights,40.67532,-73.94138,Private room,35,3,2,2017-04-23,0.07,1,0 +16081508,Park Slope Sanctuary,10457196,Richard,Brooklyn,Park Slope,40.66754,-73.98268,Entire home/apt,200,31,2,2019-01-06,0.17,11,310 +16082711,Private Room Perfect for Students / SIUH / 002 LL safe area,104812805,Amarjit S,Staten Island,Concord,40.59784,-74.08391,Private room,34,4,51,2018-10-27,1.69,8,316 +16082923,Modern Bungalow Escape,29474145,Brent,Queens,Arverne,40.59098,-73.80081,Entire home/apt,100,2,48,2019-06-16,1.57,1,167 +16083168,Private Room close to JFK & Manhattan,104816559,Cecily,Brooklyn,Bergen Beach,40.6266,-73.90375,Private room,85,3,30,2019-07-01,1.15,1,90 +16083752,Charming Upper East Side 1 Br on Historic Block,104821930,Elijah,Manhattan,Upper East Side,40.77129,-73.9501,Entire home/apt,120,1,9,2018-02-25,0.28,1,0 +16085004,"Bright, modern room with panoramic window",11206175,Kris,Queens,Maspeth,40.72254,-73.90561,Private room,37,30,10,2019-05-17,0.33,2,363 +16085088,"Safe, cozy comfy!",52347885,Nicole,Brooklyn,Flatlands,40.62876,-73.92203,Private room,34,2,94,2019-06-15,3.14,2,70 +16085206,Modern 2 BR Updated to Perfection,61391963,Corporate Housing,Manhattan,Kips Bay,40.74128,-73.97863,Entire home/apt,175,30,1,2017-09-01,0.04,91,126 +16085227,1 Bedroom Apt. in Prime Williamsburg,9195264,Pilar,Brooklyn,Williamsburg,40.72043,-73.95508,Entire home/apt,150,2,13,2017-04-17,0.41,1,0 +16085436,FLUSHING 停车方便。是你入住的最好选择。,61804662,Niki,Queens,Flushing,40.76904,-73.81687,Private room,48,1,54,2019-05-21,1.72,2,113 +16085817,"Brand New Modern Luxury Apt, Room A",104835356,Jerry,Brooklyn,Sunset Park,40.65563,-74.00197,Private room,73,1,10,2019-05-16,0.36,3,121 +16086039,The Coziest Bedroom of The Upper West Side,104838182,Larissa,Manhattan,Upper West Side,40.8013,-73.96669,Private room,85,7,14,2019-05-18,0.51,1,0 +16086320,"Brand New Modern Luxury Apt, Room B",104835356,Jerry,Brooklyn,Sunset Park,40.65477,-74.001,Private room,69,1,32,2019-06-16,1.14,3,292 +16086382,Modern loft in the heart of the East Village.,4630888,Ariana,Manhattan,East Village,40.73073,-73.98652,Entire home/apt,170,1,36,2019-06-22,1.14,1,36 +16086891,"Brand New Modern Luxury Apt, Room C",104835356,Jerry,Brooklyn,Sunset Park,40.65508,-74.00188,Private room,66,1,24,2019-06-15,0.80,3,324 +16086949,Spacious apartment in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77833,-73.94775,Entire home/apt,200,2,1,2016-12-29,0.03,3,0 +16087249,1 Bdrm Deluxe located in Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75356,-73.97155,Private room,799,3,1,2016-12-06,0.03,12,365 +16087406,2 BDRM Presidential Reserve at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75368,-73.97358,Private room,1599,3,2,2017-06-09,0.08,12,365 +16087737,Private Room for Students/Residents/ 001LL safe area,104812805,Amarjit S,Staten Island,Arrochar,40.59679,-74.083,Private room,34,4,39,2019-04-27,1.39,8,347 +16095062,THANKSGIVING up to 6 GUESTS + HOT TUB + FIREPLACE,104911818,Samantha,Brooklyn,Clinton Hill,40.69487,-73.96572,Private room,225,365,0,,,1,90 +16095115,Walk through room close to everything,62828813,Kate,Manhattan,Lower East Side,40.71339,-73.98926,Private room,69,3,47,2019-05-22,1.50,1,217 +16095512,"Large & Comfortable, Close to Train",15793354,Ebone,Brooklyn,Crown Heights,40.66675,-73.92958,Entire home/apt,73,2,4,2017-06-13,0.16,1,0 +16095875,"Perfect, Private Bedroom on Prospect Park",9488965,Stanley,Brooklyn,Prospect Heights,40.67414,-73.96723,Private room,125,1,0,,,1,15 +16096372,spacious 1 bdrm apt on the Hudson River,633395,Naama,Manhattan,Morningside Heights,40.809,-73.9661,Entire home/apt,150,5,3,2018-06-29,0.10,1,25 +16097336,Doctor's on Rotation (1),104927746,Amardeep,Staten Island,Concord,40.59703,-74.08676,Private room,33,4,18,2019-06-04,0.83,7,322 +16097690,Doctors lounge for 1 (Room 002),104927746,Amardeep,Staten Island,Concord,40.59704,-74.08716,Private room,32,4,30,2019-06-22,1.20,7,342 +16097822,Newly renovated Room for 1,104927746,Amardeep,Staten Island,South Beach,40.59587,-74.08614,Private room,35,4,10,2019-05-22,0.34,7,323 +16098020,1 Bdrm PRESIDENTIAL RESERVE at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75162,-73.9732,Private room,649,3,1,2016-12-09,0.03,12,365 +16098175,Writers Paradise 3 NYC,104927746,Amardeep,Staten Island,Concord,40.59719,-74.08754,Private room,32,4,23,2019-05-05,0.87,7,312 +16099007,Comfortable room and very clean!,104885443,Maiko,Queens,Astoria,40.76819,-73.92755,Private room,85,2,57,2019-06-22,1.86,2,306 +16099666,King/Queen Hotel Room at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.7524,-73.97153,Private room,699,3,1,2016-12-11,0.03,12,365 +16100032,KG Room Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75362,-73.97332,Private room,799,3,1,2016-12-11,0.03,12,365 +16100652,CHARMING HOME with TONES OF LIGHT & GREAT DESIGN,88191,Bea,Brooklyn,Carroll Gardens,40.6799,-73.99722,Entire home/apt,290,6,3,2017-08-28,0.10,1,0 +16100819,Renovated 2 Bedroom Williamsburg Dream Home,4198285,Greg And Amy,Brooklyn,Williamsburg,40.71026,-73.94744,Entire home/apt,145,3,43,2019-07-04,1.36,1,5 +16101054,Modern Studio overlooking Empire State building,13224803,Roxana,Manhattan,Kips Bay,40.74446,-73.98044,Entire home/apt,199,5,53,2019-05-10,1.67,1,0 +16103920,The Executive Loft Manhattan,79060345,Francisco,Manhattan,Chelsea,40.73992,-74.00221,Entire home/apt,200,4,31,2019-07-01,1.31,1,291 +16107664,Cozy loft in Chelsea,40744019,Alex,Manhattan,Chelsea,40.74694,-73.99728,Entire home/apt,181,1,158,2019-06-23,5.08,1,173 +16108194,"Quiet, Clean Room in Amazing Location!",2642093,Paloma,Brooklyn,Greenpoint,40.73124,-73.95527,Private room,75,5,1,2017-10-04,0.05,1,0 +16110204,"Cozy, convenient Park Slope 2br",394223,Anna,Brooklyn,South Slope,40.66459,-73.9905,Entire home/apt,130,4,1,2017-01-01,0.03,1,0 +16111812,One Bedroom Apt. Private House close to Citi Field,105049322,Celeste,Queens,Corona,40.75094,-73.85244,Entire home/apt,125,1,16,2017-11-12,0.52,1,157 +16112503,"Luxury Townhouse , Private Garden",105056232,Ramez,Manhattan,Greenwich Village,40.7324,-73.99708,Entire home/apt,300,5,0,,,1,0 +16112663,Sunny Spacious Family Friendly 2Bed/2Bath UES Apt,93742479,Alex,Manhattan,Upper East Side,40.77316,-73.94495,Entire home/apt,250,2,10,2019-01-12,0.33,1,0 +16113712,2 Bedroom Apartment in Harlem,105069538,Sohel,Manhattan,East Harlem,40.80764,-73.93963,Entire home/apt,175,1,8,2018-10-03,0.29,1,66 +16113842,Private room on Lovely block in Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72641,-73.94657,Private room,59,20,7,2019-04-28,0.27,3,342 +16119492,Monthly Trendy Studio w/Patio amazing location,44802851,Andrea,Brooklyn,Williamsburg,40.71603,-73.96426,Entire home/apt,180,4,63,2019-06-23,2.02,1,1 +16119541,Huge guest suite with private bath and kitchen.,700224,Shane & Nicole,Brooklyn,Boerum Hill,40.68424,-73.98545,Private room,250,5,0,,,4,50 +16120533,Room for Either One of Two (Has Two Beds),56878925,Joyce,Brooklyn,Canarsie,40.63485,-73.92055,Shared room,40,2,4,2017-12-27,0.13,2,3 +16120794,Private Apartment In the Heart of Chelsea,9584918,Ash,Manhattan,Chelsea,40.74208,-74.00121,Entire home/apt,156,5,4,2018-01-04,0.13,1,0 +16120840,Luxurious studio - West 57th Street Club by Hilton,8572778,Betsy,Manhattan,Midtown,40.76409,-73.9791,Entire home/apt,500,2,4,2018-04-21,0.13,1,91 +16122024,B & B in NYC!!,66915031,Sharon,Manhattan,Washington Heights,40.84657,-73.9357,Private room,65,2,55,2019-06-11,5.54,1,5 +16122082,Manhattan Landmark Sunny South facing Quiet Studio,7245581,Michael,Manhattan,Washington Heights,40.83493,-73.93859,Entire home/apt,68,150,4,2019-03-04,0.25,19,338 +16122223,Superb master bedroom on the Upper West Side,3740293,Paolo,Manhattan,Upper West Side,40.78859,-73.97568,Private room,60,14,1,2017-05-23,0.04,1,0 +16122441,Big and Bright Apartment with Balcony,6171011,Sebastian,Manhattan,East Harlem,40.81067,-73.93896,Entire home/apt,150,7,4,2019-04-02,0.30,1,127 +16123133,Sun dappled 2 bedroom brownstone apt on FG park!,1628075,Zoe,Brooklyn,Fort Greene,40.69015,-73.97264,Entire home/apt,265,31,33,2018-11-17,1.20,1,281 +16123657,Modern Large Apartment in Midtown East,6984985,Andres,Manhattan,Midtown,40.75574,-73.9705,Entire home/apt,279,5,3,2017-07-17,0.10,1,0 +16123943,"1BR 2nd floor, house",104661811,Elias,Staten Island,Arrochar,40.59412,-74.06955,Private room,105,1,12,2019-05-19,0.39,1,89 +16124987,Sunny Apartment in Harlem with over 800 sq ft,105163782,Nicole,Manhattan,Harlem,40.81783,-73.94051,Entire home/apt,110,2,60,2019-07-01,1.92,1,47 +16130658,Brooklyn Apartment on the Park,17138432,Georgia & Robin,Brooklyn,Greenpoint,40.72725,-73.944,Entire home/apt,130,4,10,2019-03-18,0.33,1,0 +16131672,Luxury 3 bedroom apartment on the Upper East Side,105225099,Christina,Manhattan,Upper East Side,40.7687,-73.95596,Entire home/apt,500,2,1,2016-12-29,0.03,1,0 +16132114,Sunny Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.63267,-74.08369,Private room,34,3,24,2019-06-10,0.78,3,159 +16133101,Sunny Room in Bed Stuy Brooklyn,1626704,Meghan,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94978,Private room,75,2,55,2018-12-30,1.95,1,0 +16133127,Cozy Alphabet City bedroom with private patio,105025187,Anima,Manhattan,East Village,40.72624,-73.978,Private room,49,3,1,2017-08-04,0.04,2,0 +16133543,Beautiful room in a Private House in Brooklyn,105239473,Joseph,Brooklyn,Cypress Hills,40.68239,-73.89319,Private room,65,3,22,2019-01-01,0.70,1,89 +16134738,Brooklyn Bedroom Near Subway with Washer/Dryer,9372363,Tj,Brooklyn,Borough Park,40.61426,-73.97746,Private room,65,3,8,2019-06-18,0.26,2,40 +16134745,Williamsburg floor through loft,471153,Ramsay,Brooklyn,Williamsburg,40.71014,-73.96384,Entire home/apt,300,7,2,2018-06-29,0.09,1,352 +16135399,Nice Room in the Upper West Side. Great Location.,105258361,Elena,Manhattan,Upper West Side,40.79528,-73.97325,Private room,100,3,38,2019-04-03,1.21,1,14 +16135897,LARGE ROOM lots of privacy in a 4 bedroom apt,104700532,Sehai,Brooklyn,Bedford-Stuyvesant,40.69383,-73.94326,Private room,55,1,1,2017-01-01,0.03,1,6 +16136213,Sunlit Brooklyn Bedroom w/ Private Entrance,1886695,Ronald,Brooklyn,Bushwick,40.68338,-73.9078,Private room,70,2,16,2019-06-30,0.87,1,29 +16136287,Bedroom in Large Artist Loft in Brooklyn,15863391,Cyril,Brooklyn,Clinton Hill,40.68987,-73.96095,Private room,49,5,16,2019-01-10,0.53,1,0 +16140364,30-day or more sublet in Clinton Hill Loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69278,-73.95987,Private room,50,30,11,2019-01-02,0.36,4,79 +16140940,"Beautiful, modern, near Prospect Park",105315535,Ben,Brooklyn,Prospect Heights,40.67549,-73.96598,Entire home/apt,158,30,7,2019-03-30,0.26,3,37 +16141267,Cozy room + unlimited metrocard,5187497,Ignacio,Brooklyn,Bushwick,40.6901,-73.91447,Private room,50,4,0,,,2,0 +16141887,Chateau Retreat in Artsy Bushwick Brooklyn,33651056,Danielle,Brooklyn,Bushwick,40.68778,-73.91381,Private room,120,3,1,2017-01-04,0.03,1,0 +16143844,Cozy room in Harlem,35281088,Tk,Manhattan,Harlem,40.82191,-73.9419,Private room,44,2,45,2019-06-29,1.43,1,18 +16143905,Williamsburg 1 bedroom amazing apt.,2125221,Roy,Brooklyn,Williamsburg,40.72171,-73.95487,Entire home/apt,150,4,19,2019-06-10,0.62,1,80 +16143977,Clinton Hill Cocoon,12018166,Laurent,Brooklyn,Bedford-Stuyvesant,40.68423,-73.95715,Entire home/apt,209,2,7,2019-05-01,0.23,1,201 +16144479,Cute Bright Studio,105348414,Chi,Manhattan,Greenwich Village,40.73385,-73.99928,Entire home/apt,200,5,1,2018-03-03,0.06,1,36 +16144586,"comfortable room, couples welcome, crown heights.",79751933,Amara,Brooklyn,Crown Heights,40.67034,-73.95169,Private room,30,3,1,2016-12-16,0.03,1,0 +16144596,Spacious Room in 2BR Sugar Hill apartment,105349749,Mattie,Manhattan,Harlem,40.82349,-73.94053,Private room,80,2,10,2019-06-28,0.32,1,8 +16145655,"Spacious 1-bd, sleeps 2, 20 min to Times Square",105359406,Lynne,Queens,Sunnyside,40.74535,-73.91985,Private room,135,7,1,2017-01-01,0.03,1,0 +16145871,#1 Rated 3br Park Slope Apt (1700sqf+Renovated!),30826993,Travis & Melissa,Brooklyn,Park Slope,40.6734,-73.98235,Entire home/apt,250,3,54,2019-06-14,1.72,1,0 +16145967,Cozy Room In A Friendly Apartment,15956611,Jay R.,Manhattan,East Harlem,40.80397,-73.93499,Private room,100,29,4,2018-12-31,0.18,2,66 +16146442,Affordable Bedroom in Brooklyn,20319948,Cesar & Nadia,Brooklyn,Crown Heights,40.66838,-73.93134,Private room,50,4,28,2018-04-30,0.95,1,0 +16146708,Cozy Well-Furnished Home in the Heart of Harlem,10332773,Phoebe,Manhattan,Harlem,40.81749,-73.94315,Private room,110,2,137,2019-07-03,4.37,1,102 +16146834,Your cozy and comfy space near 7 train,17638424,Sophie,Queens,Elmhurst,40.74658,-73.87358,Private room,30,1,106,2019-06-30,3.36,8,142 +16147001,"New reno - vibey, sun-filled studio",35093829,Chris,Brooklyn,Williamsburg,40.71319,-73.93606,Entire home/apt,160,2,11,2018-02-06,0.35,1,0 +16147164,Nolita Artist Loft Apartment Best Location NYC,620436,Adrianne,Manhattan,Nolita,40.72174,-73.99482,Entire home/apt,295,5,36,2019-06-27,1.40,1,16 +16147304,Studio/Full Kitchen at Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75302,-73.97221,Private room,699,3,2,2016-12-15,0.06,12,365 +16147405,Private room in Williamsburg,32545798,Sasha,Brooklyn,Williamsburg,40.71329,-73.96223,Private room,60,2,7,2017-06-12,0.23,5,0 +16148036,Cozy bed in private living room,94536810,Belkis,Bronx,Bronxdale,40.85711,-73.86474,Private room,45,5,30,2019-05-23,0.98,2,318 +16148051,Economy Brooklyn Space for your NYC Adventure!,40146897,Eric,Brooklyn,Crown Heights,40.67368,-73.92165,Private room,29,2,97,2019-06-24,3.07,5,145 +16148141,A charming Art-deco upper Manhattan,105384236,Aleksandra,Manhattan,Washington Heights,40.85425,-73.93585,Private room,80,1,11,2019-06-02,0.60,1,31 +16148374,Stunning 2BR Apt by Central Park and Subway,60628529,Saygin,Manhattan,East Harlem,40.796,-73.94863,Entire home/apt,265,3,111,2019-06-22,3.53,1,155 +16148563,Gorgeous Brand New Condo,19584296,Jeffrey,Manhattan,East Harlem,40.79147,-73.94791,Entire home/apt,225,5,6,2018-08-06,0.38,1,0 +16148691,Lovely 2 bed/2 bath 15 min. from TIMES SQUARE,3912009,Brendan,Manhattan,Harlem,40.82408,-73.94643,Entire home/apt,210,2,4,2018-06-03,0.13,2,0 +16148973,"Sun-drenched, Lux, village studio",28804489,Bobbi,Manhattan,East Village,40.73121,-73.98693,Entire home/apt,220,5,46,2019-07-01,1.81,1,92 +16149186,Cozy private room in the Bronx!,105375380,Yesenia,Bronx,Woodlawn,40.89743,-73.86983,Private room,68,2,1,2018-05-19,0.07,2,39 +16153863,Modern 1 bedroom in Prime Bushwick,34508225,Camilla,Brooklyn,Bushwick,40.70389,-73.92771,Entire home/apt,135,3,5,2018-07-01,0.20,1,0 +16154699,1 Bedroom Apartment on tree-lined street,102012893,Jeffrey,Manhattan,Harlem,40.80695,-73.94982,Entire home/apt,130,2,133,2019-07-07,4.21,2,21 +16154904,SoHo Apartment Room to Rent Ready,32610275,Mario,Manhattan,Nolita,40.72075,-73.99393,Private room,110,3,0,,,1,0 +16155648,Unique Retreat in the Heart of Bushwick!,21877498,Andy,Brooklyn,Bushwick,40.70272,-73.93005,Entire home/apt,140,3,0,,,2,0 +16156753,Quiet Bedroom with Own bathroom Near City,105455587,Lisa,Queens,Forest Hills,40.71746,-73.85667,Private room,60,1,0,,,1,0 +16157387,HUGE BEAUTIFUL 3 BEDROOMS APARTMENT WITH ALL,7858210,Maxime,Manhattan,Harlem,40.81588,-73.93984,Entire home/apt,400,2,3,2018-09-25,0.10,4,180 +16157731,Brooklyn Heights Garden Level,105461266,Stephen,Brooklyn,Brooklyn Heights,40.69107,-73.99378,Entire home/apt,200,4,71,2019-06-29,2.30,1,230 +16158270,"Studio w/EIK & Backyard, 23 Minutes to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.68301,-73.95305,Entire home/apt,76,30,7,2019-06-29,0.27,3,310 +16158314,Cozy Apartment in Williamsburg,20195183,Yossi,Brooklyn,Williamsburg,40.71749,-73.95246,Entire home/apt,200,2,9,2019-04-23,0.29,1,0 +16159444,YOUR IDEAL HOME / 20steps to Subway,27977412,Daria,Brooklyn,East Flatbush,40.64583,-73.9483,Shared room,25,30,10,2018-07-12,0.32,4,332 +16159778,Cozy room in Williamsburg,13483196,Noelle,Brooklyn,Williamsburg,40.71212,-73.96086,Private room,90,1,0,,,1,0 +16159901,1 Bedroom Presidential at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75228,-73.97185,Private room,799,2,1,2016-12-30,0.03,12,365 +16160189,Private Double Room in Bushwick Loft,6007970,Irem,Brooklyn,Williamsburg,40.70666,-73.93666,Private room,45,3,31,2019-03-03,1.01,1,0 +16160621,"Elegant, Prime West Village 1 Bedroom",105481269,Michael,Manhattan,West Village,40.73678,-74.00566,Entire home/apt,800,5,0,,,1,88 +16160783,Gorgeous Room with Private Bathroom in Manhattan,104926837,Julia,Manhattan,Financial District,40.70654,-74.00712,Private room,176,3,123,2019-06-30,3.90,3,17 +16161688,Big Room in Cool Williamsburg Loft - Long Stays,415660,Carmen,Brooklyn,Williamsburg,40.71332,-73.96585,Private room,85,6,7,2019-05-27,0.23,2,19 +16161819,Cozy Room in a 2BR Apartment,83732495,Debbie,Brooklyn,East Flatbush,40.65221,-73.93634,Private room,21,5,4,2017-04-30,0.15,1,0 +16161888,Chill 2BD in Brooklyn,105489342,Josephine,Brooklyn,Brownsville,40.66041,-73.91562,Entire home/apt,129,2,73,2019-06-24,2.34,1,82 +16161905,Large 2-bedroom Brownstone with Artistic Charm,30110593,Arash,Brooklyn,Bedford-Stuyvesant,40.68226,-73.9485,Entire home/apt,135,3,0,,,1,0 +16162247,Gorgeous 1 Bedroom in Prime Location in Brooklyn!,88384901,Nehia,Brooklyn,South Slope,40.66707,-73.98611,Private room,145,4,0,,,1,0 +16162363,Quiet Private Room in Manhattan,104926837,Julia,Manhattan,Financial District,40.70551,-74.00735,Private room,113,3,131,2019-07-04,4.21,3,12 +16162621,NEW! Exceptional 2BR/1BA Williamsburg Oasis,104781467,Russell,Brooklyn,Williamsburg,40.71306,-73.94856,Entire home/apt,199,3,1,2016-12-11,0.03,1,0 +16162933,Bronx Bed and Breakfast,101289150,David & Elaine,Bronx,Castle Hill,40.82286,-73.84765,Entire home/apt,86,2,86,2019-06-10,2.76,1,171 +16163275,Super Large & Cozy One Bedroom Apartment,78433586,Fayth,Queens,Astoria,40.76001,-73.91865,Entire home/apt,95,2,9,2017-08-26,0.29,1,212 +16163672,"1 Bedroom in the Heart of The Upper East Side, NY",60495305,Joe,Manhattan,Upper East Side,40.7732,-73.95857,Private room,100,2,14,2018-01-01,0.46,1,0 +16163725,ENTIRE 1BR in the heart of NYC !,68544687,Maria,Manhattan,Nolita,40.72321,-73.99514,Entire home/apt,199,3,3,2017-05-28,0.10,1,0 +16163768,Beautiful Queen Private Room in Financial District,104926837,Julia,Manhattan,Financial District,40.7054,-74.00763,Private room,146,3,104,2019-06-17,3.31,3,7 +16163874,Amazing Designer Brownstone Garden Apartment,105507665,Paul,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93234,Entire home/apt,150,4,73,2019-06-24,2.33,1,228 +16164264,**Cozy Room In Hip Ultra Location LES/NOLITA**,105511610,Laura,Manhattan,Lower East Side,40.71916,-73.99229,Private room,98,2,76,2019-06-24,2.42,1,46 +16164399,Lovely 3 Bedrm Apt Perfect for Groups & Families,1538057,Catherine,Brooklyn,Bedford-Stuyvesant,40.69501,-73.93363,Entire home/apt,25,2,50,2019-06-15,1.65,1,6 +16164497,"Quincy Lighthouse | Modern, Luxury 2-bedroom Oasis",105513623,Kristin,Brooklyn,Bedford-Stuyvesant,40.6885,-73.93283,Entire home/apt,130,2,51,2019-06-30,1.76,1,83 +16164613,Cozy studio with stunning views of Dwntwn,48832831,Ryan,Manhattan,Upper West Side,40.77146,-73.98906,Entire home/apt,200,2,3,2016-12-18,0.10,1,0 +16164699,"home away from home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74271,-73.78749,Entire home/apt,94,1,18,2019-05-02,0.60,3,173 +16164856,Sun filled gem in the heart of the East Village,12610226,Kumara,Manhattan,East Village,40.72315,-73.97878,Entire home/apt,150,5,8,2018-09-23,0.26,1,0 +16165498,"Private, Clean, Spacious Room with Full Bathroom",28875304,Sebastian,Brooklyn,Bushwick,40.68856,-73.91503,Private room,85,4,4,2019-01-02,0.13,2,8 +16166989,"Cozy Bedroom in Loft Apartment, W'burg Brooklyn",4936720,Mac,Brooklyn,Williamsburg,40.71545,-73.95406,Private room,110,1,77,2019-06-12,2.51,2,39 +16170544,Amazing studio in the heart of chelsea!,86115767,Liad,Manhattan,Chelsea,40.74485,-74.00186,Entire home/apt,60,1,124,2019-07-04,3.94,1,86 +16171293,Sunny cozy room next to park,10737943,David,Manhattan,Upper East Side,40.77257,-73.94616,Private room,48,30,7,2019-05-12,0.26,10,342 +16171595,Cozy Apartment,105162882,Jian,Manhattan,Upper West Side,40.7987,-73.9621,Private room,110,1,1,2016-12-07,0.03,1,0 +16171868,"Private room in Bushwick, 20 minutes to Manhattan!",73447493,Alana,Brooklyn,Bedford-Stuyvesant,40.69587,-73.93407,Private room,60,2,37,2019-06-24,1.18,1,90 +16172073,Sunny renovated 1 BR in Brooklyn by Prospect Park,105572605,Peter,Brooklyn,Flatbush,40.64745,-73.96207,Entire home/apt,72,1,15,2019-06-23,3.13,1,1 +16172162,"Gorgeous, sun-drenched private apt in Harlem",72808547,Jeremy,Manhattan,Harlem,40.80804,-73.943,Entire home/apt,120,4,22,2019-06-24,0.71,1,0 +16172498,Cozy and quiet room on Broadway 2!,102383709,Mark & Will,Manhattan,Harlem,40.83069,-73.94779,Private room,58,4,131,2019-06-26,4.17,2,115 +16172895,Studio in beautiful Chelsea - close to everything!,9007993,Mary,Manhattan,Chelsea,40.74111,-73.99594,Entire home/apt,150,3,2,2017-08-13,0.08,1,0 +16173500,"Cozy room w/ window in Ridgewood, Queens.",105582490,Joseph,Queens,Ridgewood,40.71041,-73.90977,Private room,40,2,20,2018-04-13,0.64,1,0 +16173564,The Gnome House “ Oasis in the city “,92828204,Claire,Manhattan,Midtown,40.75979,-73.96444,Entire home/apt,1200,1,36,2019-06-09,1.64,1,354 +16174233,QUIET OASIS IN THE MIDDLE OF MANHATTAN NYC,9293730,Inna,Manhattan,Upper East Side,40.76982,-73.95697,Entire home/apt,89,30,11,2019-06-22,0.40,16,261 +16174929,Cosy Room in Williamsburg House,22432953,Charles-Hugo,Brooklyn,Williamsburg,40.70816,-73.94822,Private room,55,4,3,2017-05-05,0.10,1,0 +16175367,New York Christmas in Astoria,1354727,Courtney,Queens,Astoria,40.77572,-73.9339,Entire home/apt,150,5,2,2019-01-01,0.07,2,0 +16175456,Large luxury private room in Williamsburg!,1314045,Tim,Brooklyn,Williamsburg,40.71341,-73.94824,Private room,99,1,230,2019-07-05,7.28,3,353 +16175740,"和缘阳光民宿 停车方便,环境优美 宽敞明亮,中英文服务。",105074140,Emmy,Queens,Flushing,40.76153,-73.80304,Private room,38,1,69,2019-02-27,2.19,4,0 +16177263,The Wild Wild West (village),45520477,Nina,Manhattan,West Village,40.73365,-74.0041,Entire home/apt,500,3,21,2019-05-28,0.73,1,365 +16177837,Stunning 1 BR with high end finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74,-73.97936,Entire home/apt,142,30,9,2019-06-03,0.30,91,342 +16177970,"Charming private room quiet, Doorman in Manhattan",65974774,Geo,Manhattan,Upper East Side,40.77372,-73.95418,Private room,114,1,40,2019-04-26,1.28,3,324 +16178531,2 Floor Epic Loft in Prime Bushwick,3473672,Andrew,Brooklyn,Williamsburg,40.70484,-73.9377,Entire home/apt,175,2,21,2019-06-28,0.81,1,313 +16178928,Unbeatable Location and Charm in the West Village,83929409,William,Manhattan,West Village,40.73621,-74.00612,Entire home/apt,350,2,5,2019-07-01,0.16,1,0 +16179502,Charming room well located !!!!,13325936,Madi,Manhattan,East Harlem,40.79275,-73.94191,Private room,60,5,1,2017-01-02,0.03,1,0 +16179862,Clean and Comfy Private Bedroom,95766078,Alex,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95101,Private room,75,1,0,,,2,0 +16180783,Spacious 2 Bedroom Apartment with Balcony,6338496,Jason,Queens,Middle Village,40.71157,-73.87619,Entire home/apt,85,30,0,,,1,280 +16182780,Newly Furnished Bedroom in NYC apt,105668518,Benny,Manhattan,Washington Heights,40.8407,-73.93886,Private room,100,2,4,2017-05-08,0.13,1,0 +16185437,Cozy Bedroom in Centrally Located Apartment,22243853,Annie,Brooklyn,Williamsburg,40.7142,-73.96408,Private room,60,3,21,2018-09-11,0.72,1,0 +16186828,Cleaning,563530,Misael,Bronx,Kingsbridge,40.86352,-73.90503,Private room,80,30,0,,,1,365 +16189705,Spacious and Cozy Room in the East Village,5998815,Brecht,Manhattan,Stuyvesant Town,40.73052,-73.9778,Private room,85,3,16,2019-06-21,0.51,1,9 +16190110,Private room in Flatbush Brooklyn!,19238497,Azu,Brooklyn,Prospect-Lefferts Gardens,40.65538,-73.96056,Private room,36,7,8,2017-08-19,0.26,1,0 +16190577,Private room with private bathroom,43729733,Rod,Manhattan,East Harlem,40.78565,-73.94268,Private room,150,1,56,2019-06-24,1.79,1,272 +16190902,Your point in Chelsea,32084117,Fernando,Manhattan,Chelsea,40.74183,-73.99997,Entire home/apt,330,2,124,2019-05-27,3.94,1,317 +16191596,Sunny Room B in China town of BK/ 8 min to Subway,105640471,Jason,Brooklyn,Sunset Park,40.64024,-74.01573,Private room,54,1,18,2018-11-11,0.61,8,241 +16191889,Williamsburg - Terrace apartment,12943509,Grace,Brooklyn,Williamsburg,40.713,-73.94109,Private room,35,3,0,,,1,0 +16191967,Sunny new room D/ 30mins to Manhattan3,105640471,Jason,Brooklyn,Sunset Park,40.64074,-74.01512,Private room,53,1,18,2019-06-17,0.63,8,360 +16192835,Modern Artist's Loft in East Williamsburg/Bushwick,47453782,Avi,Brooklyn,Williamsburg,40.70729,-73.93129,Entire home/apt,175,2,44,2019-05-12,1.43,1,3 +16193259,Sunny new room C/ 30mins to Manhattan,105640471,Jason,Brooklyn,Sunset Park,40.64052,-74.01539,Private room,48,1,10,2019-06-10,0.71,8,240 +16193729,Mini room with Full size bed A /8 min to Subway R,105640471,Jason,Brooklyn,Sunset Park,40.64167,-74.01532,Private room,39,3,23,2019-01-02,0.82,8,137 +16193749,Large 2 bed cozy room in queens,105753805,Kevin,Queens,Elmhurst,40.74396,-73.87476,Private room,70,1,8,2019-06-08,0.26,1,302 +16194283,Private Room in Beautiful Brooklyn Private House.,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68128,-73.91196,Private room,29,60,13,2019-05-01,0.42,4,51 +16194421,Historic Lower East Side,42734669,Rebecca,Manhattan,Chinatown,40.7155,-73.99198,Entire home/apt,120,20,4,2017-10-09,0.13,1,0 +16194651,Gorgeous one bedroom apartment.,105762561,Kim,Queens,Jamaica,40.68038,-73.77244,Entire home/apt,125,3,42,2019-06-10,1.85,3,348 +16194815,Renovated Harlem Brownstone Apartment,31820164,Tysun,Manhattan,Harlem,40.81816,-73.94544,Entire home/apt,100,4,62,2019-06-17,2.10,1,80 +16195143,Spacious RM in Home with Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.86914,-73.8951,Private room,79,3,73,2019-06-20,2.79,4,69 +16199608,Williamsburg. Non profit . Artist,312722,Kristian & Di,Brooklyn,Williamsburg,40.7087,-73.95427,Private room,70,20,3,2018-10-27,0.15,4,275 +16201857,Bahia Brazil Vibe,7824337,Miralva,Brooklyn,Flatbush,40.65202,-73.96325,Private room,95,3,14,2018-08-27,0.46,2,0 +16201959,Beautifull Bed Stuy 1bdrm apt with outdoor space!,67523,Kv,Brooklyn,Bedford-Stuyvesant,40.69097,-73.93612,Entire home/apt,77,2,51,2019-07-07,3.10,1,5 +16202083,"Modern Room in a Cozy, Colorful Apartment",11073179,Sandra,Brooklyn,Prospect-Lefferts Gardens,40.66122,-73.94867,Private room,75,1,3,2019-02-23,0.10,1,0 +16202095,Williamsburg Studio w/ Balcony & Stunning View,6277934,Alex,Brooklyn,Williamsburg,40.71868,-73.94918,Entire home/apt,210,4,0,,,1,0 +16202302,NYC Living!,104814891,Kirra,Manhattan,Chinatown,40.71521,-73.99169,Private room,80,2,152,2019-07-05,5.01,1,105 +16202962,"Stunning modern 1BR APT, 15min from grand central",105828180,Guy,Queens,Sunnyside,40.74604,-73.9217,Entire home/apt,120,2,78,2019-06-14,2.55,3,135 +16204030,Penthouse + private patio in Williamsburg,34307713,Sam,Brooklyn,Williamsburg,40.71422,-73.95732,Entire home/apt,175,2,71,2019-06-20,2.35,1,68 +16204655,Awesome spot in Bushwick,78119367,Joel,Brooklyn,Bushwick,40.7015,-73.9266,Private room,82,2,0,,,1,0 +16205027,"Private room, Sunny topfloor apartment Cobble Hill",22511613,James,Brooklyn,Cobble Hill,40.68714,-73.99283,Private room,114,1,2,2017-11-05,0.09,2,0 +16205154,"Cozy Ground Floor in Park Slope, BK",17167740,Andrea,Brooklyn,South Slope,40.66593,-73.9879,Private room,93,2,34,2018-01-04,1.11,1,34 +16205219,Double room in spacious Morningside apartment,28365672,Lucy,Manhattan,Morningside Heights,40.80793,-73.95799,Private room,55,6,0,,,1,0 +16205272,Sunny 2 Bed w/Terrace in Brownstone,104238268,Kory,Manhattan,Harlem,40.81309,-73.94614,Entire home/apt,199,30,16,2017-12-31,0.57,1,150 +16205431,Longer-term 2-bedroom in Nolita with terrace.,7618966,Steve,Manhattan,Nolita,40.72243,-73.996,Entire home/apt,387,1,0,,,1,0 +16205491,BEAUTIFUL 1-BEDROOM @ דירה שווה בוויליאמסבורג,8682765,Nimrod,Brooklyn,Williamsburg,40.71497,-73.93905,Entire home/apt,150,7,0,,,1,0 +16205941,Cozy 1 bedroom in brooklyn 30max to manhattan,63834432,Camille,Brooklyn,Williamsburg,40.70781,-73.93926,Private room,58,1,1,2016-12-08,0.03,1,0 +16206077,Two bedroom apartment in Williamsburg,1865198,Evelyne,Brooklyn,Williamsburg,40.71157,-73.95846,Entire home/apt,185,8,2,2017-05-22,0.07,1,59 +16206313,Convenient place in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77968,-73.94815,Private room,90,3,7,2018-01-15,0.22,3,0 +16206383,Bright Room in the Heart of Astoria,2568028,Maria,Queens,Astoria,40.76963,-73.92993,Private room,50,1,5,2016-12-17,0.16,1,0 +16206794,1BR apartment one block from Columbia U and subway,9601972,Samer,Manhattan,Morningside Heights,40.80724,-73.96348,Entire home/apt,189,2,1,2017-01-04,0.03,1,0 +16206887,Private room in Brooklyn house with backyard,43754478,Thomas,Brooklyn,Bedford-Stuyvesant,40.69878,-73.94607,Private room,50,5,5,2017-04-28,0.17,1,0 +16207381,Airy 2-Bedroom Apt with Terrace in Spanish Harlem,7913732,Sarah,Manhattan,East Harlem,40.79952,-73.93764,Entire home/apt,240,3,4,2018-09-03,0.17,1,7 +16208920,Home away from home in heart of BK,5237407,Jenima,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94674,Entire home/apt,131,2,20,2019-06-23,0.73,2,0 +16212477,Bright big bedroom in Brooklyn,9119410,Marie,Brooklyn,Kensington,40.63501,-73.97298,Private room,80,1,1,2016-12-10,0.03,1,0 +16212767,Studio with private entrance near Central Park.,6082745,Tracey,Manhattan,Upper West Side,40.78361,-73.9732,Entire home/apt,225,10,14,2019-04-24,0.52,1,11 +16213157,Huge Madison Avenue Loft,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.75089,-73.98059,Entire home/apt,139,30,2,2018-11-01,0.07,31,134 +16213608,Modern room very near Manhattan with free pickup!,83627325,Jared,Queens,Sunnyside,40.74554,-73.91778,Private room,109,1,5,2018-10-21,0.17,4,356 +16214199,Nice and spacious 3BR home in Queens,10762834,David,Queens,East Elmhurst,40.7617,-73.89134,Entire home/apt,165,2,32,2019-01-01,1.03,1,55 +16214404,"Small but cozy room in Roosevelt Island, Location!",31207419,Yandong,Manhattan,Roosevelt Island,40.76213,-73.94889,Private room,45,2,1,2016-12-25,0.03,1,0 +16214854,Spacious Brooklyn Apartment for Two,6134680,Amy,Brooklyn,Crown Heights,40.67476,-73.94209,Private room,50,1,35,2019-05-27,1.14,1,5 +16215826,supper sunny apt!,105328014,Allan,Manhattan,Gramercy,40.73565,-73.98056,Entire home/apt,90,30,5,2019-06-16,0.16,1,154 +16216301,Double Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.6339,-74.08513,Private room,55,3,6,2019-06-07,0.22,3,88 +16217520,Designer's Rail-Road Apartment-Prime Williamsburg,8300022,Siria,Brooklyn,Williamsburg,40.7092,-73.9506,Entire home/apt,130,5,1,2017-01-01,0.03,1,0 +16218094,Charming and Quiet West Village 1 BR,1873123,Belinda,Manhattan,West Village,40.73095,-74.00321,Entire home/apt,190,15,0,,,1,0 +16219145,Loft Studio in Heart of Fort Greene,40721357,Randi,Brooklyn,Fort Greene,40.68814,-73.97452,Entire home/apt,150,2,34,2019-05-27,1.11,1,3 +16220849,☝ Your Sweet Suite Spot ☝,69189948,Ella,Manhattan,Washington Heights,40.84862,-73.93299,Private room,75,2,45,2019-07-01,1.44,3,183 +16221732,"A Comfortable, Cozy Room",4013000,Mei,Queens,Bayside,40.75465,-73.77361,Private room,30,15,31,2019-05-06,0.99,2,142 +16224040,Romantic Rooftop Studio with 360 Brooklyn views!,3479852,Benjamin,Brooklyn,Gowanus,40.68275,-73.98562,Entire home/apt,150,1,179,2019-06-27,5.69,1,0 +16224408,Private one bedroom in Astoria (Halletts Point),1354727,Courtney,Queens,Astoria,40.77499,-73.93565,Private room,75,1,50,2019-06-18,1.59,2,61 +16224523,1 Bedroom w/ common space in 4br Loft in Bushwick,386795,Reuben,Brooklyn,Bedford-Stuyvesant,40.68712,-73.91847,Private room,30,7,0,,,1,0 +16226031,Spacious One Bedroom Apartment,106030531,Pablo,Manhattan,Morningside Heights,40.81456,-73.95953,Entire home/apt,110,7,1,2018-01-06,0.05,1,0 +16226066,Room near park · 2 stops to Manhattan on N/D train,29314677,Ignat,Brooklyn,Sunset Park,40.64832,-73.99913,Private room,64,1,87,2019-07-01,2.82,1,42 +16226219,"Williamsburg, Ground Flr Apt with Private Backyard",59101644,Anthony,Brooklyn,Williamsburg,40.71615,-73.94797,Entire home/apt,135,2,29,2019-06-07,0.93,1,82 +16226427,(Williamsburg) Large bedroom with private balcony,11313668,Adam,Brooklyn,Williamsburg,40.70089,-73.94997,Private room,55,1,8,2019-03-24,0.26,2,0 +16227237,"Spacious Studio in Prime Williamsburg, Brooklyn",1914516,Daniel,Brooklyn,Williamsburg,40.71134,-73.95953,Entire home/apt,165,1,3,2017-09-17,0.12,1,0 +16227469,"HUGE Private Room, Doorman Building, quiet !",65974774,Geo,Manhattan,Upper East Side,40.77585,-73.95754,Private room,132,1,14,2019-05-26,0.51,3,326 +16227620,Lovely 1 Bedroom Greenpoint Apartment Near Park,3548768,Elizabeth,Brooklyn,Greenpoint,40.72314,-73.94027,Entire home/apt,120,4,0,,,1,0 +16227708,"Large sunny private bedroom, private garden",106043391,Samuel,Brooklyn,Greenpoint,40.72743,-73.94491,Private room,60,3,0,,,1,0 +16227719,Queen Bed Room in Gowanus Boutique Hotel,33213436,Alec,Brooklyn,Gowanus,40.67831,-73.98358,Private room,169,1,34,2018-10-29,1.09,8,364 +16228346,ENTIRE UNIT: MID TOWN NYC - GRAND CENTRAL STATION,43828940,James,Manhattan,Midtown,40.75343,-73.97313,Entire home/apt,119,3,0,,,1,0 +16228505,Clean and Cozy Room in Meatpacking District,21422835,Kate,Manhattan,Chelsea,40.74383,-74.0034,Private room,120,3,0,,,1,0 +16228697,Beautiful brownstone in Harlem- $2.75 bus from LGA,86509759,Roanne,Manhattan,East Harlem,40.80802,-73.94013,Private room,77,3,30,2019-06-28,0.98,1,90 +16229170,big loft apartement in the Lower East Side,185745,Alessandra,Manhattan,Lower East Side,40.71278,-73.9919,Entire home/apt,200,1,26,2019-06-06,0.95,2,317 +16229583,1 Bedroom in a large apartment w/ a private patio!,29263011,Justin,Brooklyn,Red Hook,40.67705,-74.01436,Private room,85,2,68,2019-07-01,2.22,1,69 +16229585,Large Duplex on the west village with Backyard,2279300,Jay,Manhattan,West Village,40.73015,-74.00304,Entire home/apt,400,3,17,2019-07-02,1.16,1,334 +16229699,Cozy Studio in the heart of Washington Square Park,105799162,Taha,Manhattan,Greenwich Village,40.72925,-73.99927,Entire home/apt,200,1,12,2019-07-06,8.18,1,206 +16230057,Comfortable Room in 3 Bedroom Apartment,38288406,Justin,Queens,Ridgewood,40.70063,-73.90474,Private room,30,15,0,,,1,0 +16230255,Cozy room in the lively East Village,50053528,Julia,Manhattan,East Village,40.7246,-73.98258,Private room,80,3,110,2019-06-17,3.48,1,11 +16230313,Comfy Sofa Bed in Cozy Apartment,89873550,TiffanyJoy,Brooklyn,Bedford-Stuyvesant,40.68441,-73.95099,Shared room,68,3,0,,,2,0 +16230581,Cozy apartment in the heart of Williamsburg!,326185,Martina,Brooklyn,Williamsburg,40.71532,-73.95563,Entire home/apt,108,3,3,2017-07-28,0.10,1,0 +16230640,"Comfy, Convenient Upper West Side Condo Room",61585315,Rachel & Preston,Manhattan,Upper West Side,40.78513,-73.97737,Private room,75,2,3,2017-03-26,0.10,1,0 +16230905,Bright & Sunny Studio in the Upper East Side,49900664,Kelcey,Manhattan,Upper East Side,40.76954,-73.94904,Entire home/apt,91,2,2,2016-12-19,0.06,1,0 +16232783,Private 1Br aparmtent on Floor 1 of my house,6677922,Ilya,Staten Island,Great Kills,40.55616,-74.16027,Entire home/apt,51,4,29,2019-06-22,0.97,1,15 +16233577,Peaches Paradise.,101499766,Claudette,Queens,Springfield Gardens,40.68203,-73.75437,Private room,60,1,305,2019-07-07,9.83,2,341 +16236157,Beautiful townhouse apt on historic street,2748223,Ming,Manhattan,Harlem,40.80447,-73.94623,Entire home/apt,120,14,1,2017-01-01,0.03,1,188 +16236939,Charming light-filled apartment in Crown Heights,32031114,Joseph,Brooklyn,Crown Heights,40.67247,-73.95752,Entire home/apt,110,30,1,2017-01-02,0.03,1,0 +16237242,Williamsburg Waterfront 2br + 2bath Apartment,3088873,Dave,Brooklyn,Williamsburg,40.72052,-73.96239,Entire home/apt,149,2,9,2017-06-05,0.29,1,0 +16237773,Quiet and beautiful apartment near central park,18104054,Nicole,Manhattan,Upper East Side,40.76761,-73.95986,Entire home/apt,160,7,1,2017-01-01,0.03,1,0 +16238449,Lovely apartment near Prospect Park.,19585203,Franny & Zooey,Brooklyn,Kensington,40.64571,-73.97449,Entire home/apt,90,7,2,2017-01-16,0.07,1,0 +16238569,Beautiful Factory Loft in Greenpoint,9442323,Chelsea,Brooklyn,Greenpoint,40.73242,-73.9585,Entire home/apt,250,3,64,2019-06-29,2.15,1,72 +16238620,Studio Near Columbia University,31391525,Olive,Manhattan,Upper West Side,40.80103,-73.96546,Entire home/apt,74,27,1,2016-12-07,0.03,1,0 +16238779,Spacious Studio Duplex in Heart of Williamsburg!,36382944,Joshua,Brooklyn,Williamsburg,40.7152,-73.9623,Entire home/apt,230,31,2,2018-01-01,0.06,1,0 +16239225,1 bedroom next to Prospect Park & SubwayStation,59442523,Josh,Brooklyn,Flatbush,40.65158,-73.96428,Private room,90,1,2,2017-08-20,0.09,2,0 +16241319,Spacious Brooklyn 2BR house (with cat & parking!),24418469,Kirsten,Brooklyn,East Flatbush,40.64625,-73.95048,Entire home/apt,200,3,6,2019-01-01,0.20,1,0 +16241833,One bedroom available with great access to trains!,71147912,Rachel,Brooklyn,Bushwick,40.7046,-73.92538,Private room,49,4,3,2018-01-01,0.10,1,0 +16241951,Relax and Tune In,354891,Liz,Brooklyn,Crown Heights,40.67715,-73.94543,Shared room,100,2,0,,,1,364 +16242067,Private bedroom in Morningside Heights,11081130,Sai Swaroop,Manhattan,Morningside Heights,40.81447,-73.9593,Private room,37,5,0,,,1,0 +16242292,1 Bedroom Apartment in Willimasburg,45299546,Aude,Brooklyn,Williamsburg,40.71297,-73.93602,Private room,47,7,2,2017-07-16,0.07,1,12 +16242753,Beautiful Upper East Side 1 bedroom,33200665,Christie,Manhattan,Upper East Side,40.77026,-73.95208,Entire home/apt,127,3,0,,,1,0 +16242765,1 Bedroom w. private bath 15min to Central Park.,104177785,Carolina,Queens,Jackson Heights,40.75418,-73.88586,Private room,250,2,14,2017-09-10,0.51,1,1 +16243676,APT FOR UP TO 4! Dream location & private terrace!,3991905,Romina,Manhattan,Gramercy,40.73873,-73.98714,Entire home/apt,250,3,1,2017-06-04,0.04,1,0 +16243823,Warm Williamsburg Duplex Perfect for Christmas,32199225,Dania,Brooklyn,Williamsburg,40.7141,-73.94685,Entire home/apt,360,1,2,2016-12-26,0.06,1,0 +16243941,Modern Authentic New York Living 1 BR Apartment,69131939,Olivia,Manhattan,Lower East Side,40.71343,-73.98677,Entire home/apt,200,4,25,2019-05-27,1.12,1,352 +16244096,Room for rent in Brooklyn. 1 block from R train,106197850,Jamie,Brooklyn,Sunset Park,40.64318,-74.01329,Private room,50,7,1,2017-05-21,0.04,1,0 +16244553,"Modern Private Studio for 2 in Arverne, Rockaway",106197923,Huilin,Queens,Arverne,40.58873,-73.79573,Entire home/apt,85,2,99,2019-06-22,3.15,1,56 +16244634,Private Room/ 2BR Apt. Bedstuy/ Brooklyn,44458662,Melanie,Brooklyn,Bedford-Stuyvesant,40.68725,-73.93068,Private room,40,5,2,2017-07-20,0.08,1,0 +16244843,Cozy room in the East Village - Manhattan,53836757,Felipe,Manhattan,East Village,40.72947,-73.9785,Private room,85,4,20,2018-12-27,0.65,1,12 +16245005,Bedroom in the heart of Bushwick/Bed-stuy!!,3568330,Ken,Brooklyn,Bedford-Stuyvesant,40.69332,-73.93502,Private room,85,9,6,2018-07-22,0.22,1,10 +16248277,Cozy and classic home,106233552,Coco,Queens,East Elmhurst,40.76652,-73.86651,Entire home/apt,239,3,12,2019-05-27,0.55,2,266 +16251345,Sunny Cobble Hill 2 BR+ Cozy & Ecletic Brownstone,1468716,Peggy,Brooklyn,Cobble Hill,40.68631,-73.99624,Entire home/apt,700,4,3,2019-04-17,0.24,1,89 +16251572,Lovely apartment in Williamsburg,35261699,Harry,Brooklyn,Greenpoint,40.72253,-73.9435,Private room,60,7,6,2018-12-30,0.20,1,62 +16251715,NYC from Astoria Queens,75443454,Ana,Queens,Ditmars Steinway,40.77307,-73.91822,Private room,87,3,3,2019-04-19,0.10,2,343 +16251963,"Gorgeous, sunny and cozy bedroom",40230231,Mor,Brooklyn,Greenpoint,40.72547,-73.94595,Private room,50,8,1,2019-01-02,0.16,1,2 +16252722,Sunny large loft&rooftop in Williamsburg,18625208,Delphine,Brooklyn,Williamsburg,40.71606,-73.95135,Private room,85,2,4,2017-10-15,0.13,1,0 +16252761,Kosher 1 bedroom with balcony & private bathroom,106272021,Esther,Brooklyn,Prospect-Lefferts Gardens,40.66313,-73.94028,Private room,80,1,12,2018-06-10,0.39,3,5 +16253053,Cozy Magical Room in the Heart of West Village,12810839,Kytzia,Manhattan,West Village,40.73193,-74.00529,Private room,90,1,32,2018-08-01,1.04,2,0 +16253413,"Private Bath, Cozy Sunset Terrace Room",36234811,Anna,Queens,Arverne,40.58989,-73.79117,Private room,69,1,25,2019-06-21,0.81,4,156 +16253465,Sunny Chelsea Studio,86575720,Ali And Amy,Manhattan,Chelsea,40.74138,-73.99875,Entire home/apt,128,1,6,2017-02-25,0.19,1,0 +16254609,"Sunny, Spacious House by the Beach",36234811,Anna,Queens,Arverne,40.59153,-73.79166,Entire home/apt,200,1,46,2019-06-16,1.65,4,152 +16255284,Luxurious Penthouse Loft with balcony in West Vil,65811347,Katya,Manhattan,West Village,40.73613,-74.00711,Entire home/apt,220,28,2,2017-08-26,0.08,1,365 +16256074,Sweet cozy room in Brooklyn - East Williamsburg,44707475,Rachel,Brooklyn,Williamsburg,40.71396,-73.93952,Private room,35,7,5,2019-02-10,0.16,1,0 +16257739,Perfectly Located Luxury 1bdrm with Parking Space,62287125,Matthew,Queens,Astoria,40.76755,-73.9232,Entire home/apt,110,30,0,,,1,0 +16257916,Studio Apartment in Wyndham Midtown 45.,42734903,Barry & Verone,Manhattan,Midtown,40.75374,-73.97138,Entire home/apt,300,3,0,,,1,0 +16258672,Cozy 1 bedroom in Clinton Hill,3086976,Aissatou,Brooklyn,Clinton Hill,40.68902,-73.96784,Entire home/apt,135,7,2,2017-04-24,0.07,1,0 +16258754,Cozy Modern Bedroom In A Newly Updated Apt,8091133,Daniel,Brooklyn,Bushwick,40.7004,-73.91934,Private room,40,2,0,,,1,0 +16258784,One Room in Large Sunny 2 Bedroom In Brooklyn,19000672,Cindy,Brooklyn,Crown Heights,40.67503,-73.95771,Private room,150,2,2,2017-01-03,0.07,1,0 +16259169,Private semi-furnished room in 6 bedroom duplex.,106321136,Devshri,Brooklyn,Bedford-Stuyvesant,40.69118,-73.9554,Private room,35,15,0,,,1,0 +16259438,Private Sunny Lofted Bedroom in East Williamsburg,60146124,Diana,Brooklyn,Williamsburg,40.71416,-73.93852,Private room,38,21,13,2019-05-07,0.42,1,26 +16259441,#1 Ideal Williamsburg Stay -1 block from Lorimer L,46660053,Ploy,Brooklyn,Williamsburg,40.71311,-73.95332,Private room,70,2,52,2019-06-20,1.70,3,62 +16259629,New Year's Eve Time Square,82319393,Denise,Manhattan,Midtown,40.75073,-73.98439,Private room,350,3,1,2017-01-02,0.03,1,0 +16259714,Cozy apartment in Upper Manhattan!,106327066,Janelle,Manhattan,Washington Heights,40.84448,-73.93576,Private room,50,2,1,2016-12-07,0.03,1,0 +16259787,Private and comfortable room in Upper West Side,40277743,Francisca,Manhattan,Morningside Heights,40.80722,-73.95924,Private room,68,5,0,,,1,0 +16260117,"Queen Room in Great 2BR Apt, 20min to Times Sq",336228,Victoria,Queens,Sunnyside,40.74673,-73.91564,Private room,95,1,2,2018-02-10,0.09,1,0 +16260353,Cozy artsy bedroom near Cloisters,24967970,Ekaterina,Manhattan,Inwood,40.86269,-73.9222,Private room,80,3,6,2019-06-25,0.28,1,58 +16260362,Entire private studio in New York,18569725,Veer,Manhattan,Hell's Kitchen,40.76246,-73.99913,Entire home/apt,150,1,21,2017-06-08,0.67,1,0 +16260496,"Spacy, sunny Brooklyn studio next to prospect park",20844522,Vivienne,Brooklyn,Prospect-Lefferts Gardens,40.65963,-73.96174,Entire home/apt,53,12,17,2019-03-28,0.74,1,32 +16261522,Big Sunny Room in NYC (B5),5164854,Lilia,Manhattan,Harlem,40.81943,-73.9387,Private room,54,5,8,2018-09-03,0.31,8,332 +16261570,Cozy 1BD Apt 20min from Manhattan!,20718860,Dalilah,Queens,Astoria,40.76205,-73.90556,Entire home/apt,99,3,0,,,1,0 +16267197,"Cozy Room - 17mins to Manhattan. Close to LGA, JFK",40711894,Jessica,Queens,Elmhurst,40.74012,-73.88917,Private room,53,1,9,2018-09-09,0.29,4,0 +16267803,Lovely and Sunny Crown Heights 1BR,1192630,Christina,Brooklyn,Crown Heights,40.67775,-73.9445,Entire home/apt,135,2,77,2019-06-25,2.66,2,61 +16268350,Cozy Bedstuy Brownstone,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68893,-73.95354,Entire home/apt,525,2,1,2016-12-07,0.03,4,189 +16268781,Large Private One Bedroom,1395843,Jackie,Manhattan,Washington Heights,40.84313,-73.93947,Private room,50,2,3,2017-01-08,0.10,1,0 +16268951,3 Cozy Zen Rooms in Brownstone apt.,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68802,-73.9534,Private room,200,2,0,,,4,189 +16269161,Cozy Zen Room Beautiful Brownstone,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68817,-73.95479,Private room,200,2,1,2017-01-02,0.03,4,189 +16269256,Wash Hts 2BR apt extra sofa bed. Avail 12/20-1/4,101053359,John,Manhattan,Washington Heights,40.85447,-73.92804,Entire home/apt,99,4,2,2018-01-02,0.09,1,0 +16269344,"Fort Greene 2 bed, 2 bath in modern building",92321381,Terry,Brooklyn,Fort Greene,40.69117,-73.96968,Entire home/apt,145,30,0,,,1,29 +16269464,"Luxury Private Room, Financial District (Flexible)",31486652,Devin,Manhattan,Financial District,40.70858,-74.00599,Private room,129,13,0,,,1,0 +16269989,Charming Room in Brooklyn Townhome,20645317,Cortney,Brooklyn,Clinton Hill,40.6886,-73.96197,Private room,80,2,4,2018-08-30,0.13,1,10 +16270389,2BR- Private Kitchen + Bathroom-20min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73812,-73.87547,Entire home/apt,150,1,150,2019-06-23,4.82,6,255 +16271051,"Entire Unit 2BR+bathroom, 20min to Manhattan",69427329,Michelle & Eddie,Queens,Elmhurst,40.7369,-73.87613,Entire home/apt,120,1,134,2019-06-23,4.36,6,249 +16271281,"Peaceful, cozy studio in Chinatown",46382018,Steven,Manhattan,Chinatown,40.7162,-73.99379,Entire home/apt,90,20,0,,,1,0 +16271447,"Large Windows, Plenty of Light",16437254,Benjamin,Brooklyn,Boerum Hill,40.68778,-73.98534,Entire home/apt,123,30,5,2019-04-30,0.16,21,343 +16271818,Amazing & Unique Soho/Nolita One Bedroom,10263854,Andrew,Manhattan,Chinatown,40.71833,-73.99443,Entire home/apt,250,1,29,2019-06-21,0.95,1,358 +16272419,Harlem Parkside - 1 cozy bedroom,106405713,Charley,Manhattan,Harlem,40.82098,-73.94214,Private room,100,2,5,2019-04-24,0.55,1,135 +16273058,"Luxury Studio Apartment with W/D, Gym, Rooftop",272826,Ian,Brooklyn,Williamsburg,40.71821,-73.95385,Entire home/apt,100,28,0,,,1,0 +16273143,Whole 2 bedrooms apartment in HK,85938655,Carlos,Manhattan,Hell's Kitchen,40.7625,-73.98802,Entire home/apt,250,3,31,2019-06-23,1.14,2,295 +16273510,Cozy Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76518,-73.9929,Entire home/apt,98,30,8,2019-04-05,0.32,31,145 +16273526,Home away for the holidays!,407407,Calixto,Bronx,Norwood,40.87372,-73.88625,Private room,60,2,3,2017-12-25,0.10,1,364 +16274292,Large studio apt in brownstone w/ private garden,106437594,Lance,Manhattan,Chelsea,40.74586,-74.00361,Entire home/apt,165,6,5,2018-01-24,0.16,1,0 +16274520,Large bedroom with balcony in the heart of Nolita,106438891,Vincent,Manhattan,Nolita,40.72382,-73.99335,Private room,100,3,1,2017-01-01,0.03,1,0 +16274717,Cozy bedroom on Roosevelt Island,33069397,Jesse,Manhattan,Roosevelt Island,40.76178,-73.94988,Private room,40,10,1,2017-01-07,0.03,1,0 +16274836,Beautiful Room in Bed-Stuy w/ Bridge Theme,106442885,Ava,Brooklyn,Bedford-Stuyvesant,40.69379,-73.93645,Private room,37,1,93,2019-05-31,3.00,2,2 +16274854,"Comfy Home, Convenient Location near Central Park",106407359,Sean,Manhattan,Harlem,40.80255,-73.95434,Private room,75,2,121,2019-06-12,3.89,1,3 +16274966,Artist Loft Bushwick - The Bird's Nest,65800377,Benny,Brooklyn,Bushwick,40.70068,-73.92225,Private room,39,2,9,2019-07-07,0.29,3,79 +16275030,Beautiful Bed-Stuy Room,106442885,Ava,Brooklyn,Bedford-Stuyvesant,40.68865,-73.93684,Private room,29,1,139,2019-06-24,4.43,2,2 +16275257,Cosy room in Brooklyn,23055253,Marie,Brooklyn,Bushwick,40.69864,-73.92933,Private room,80,3,2,2017-09-12,0.07,2,0 +16275733,Private Room in Quiet UES Apartment,20362478,Gabrielle,Manhattan,Upper East Side,40.76835,-73.95837,Private room,100,1,19,2017-05-17,0.62,1,0 +16275767,Spacious sun lit Bushwick room,106451051,Claire,Queens,Ridgewood,40.70338,-73.91006,Private room,40,5,8,2017-08-03,0.26,1,6 +16275887,MANHATTAN ROOM FOR 2 NO FEE,77304447,Genesis,Manhattan,Harlem,40.82207,-73.95332,Private room,45,5,40,2019-07-03,1.31,3,45 +16276172,Newly Renovated with Lovely Backyard!,106454216,Steven,Brooklyn,Bushwick,40.68763,-73.91773,Entire home/apt,55,3,53,2019-06-12,1.73,2,243 +16276294,Rental in a Uptown Cozy Apartment,32625342,Bianca,Bronx,Kingsbridge,40.88467,-73.90575,Private room,30,4,11,2019-05-15,0.35,2,0 +16276632,Cozy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76335,-73.87007,Private room,48,1,510,2019-07-06,16.22,5,341 +16276834,"9B--NETFLIX, HEAT, TV, WI-FI",104166155,Suzie And Ryan,Brooklyn,East Flatbush,40.64171,-73.94721,Private room,49,1,1,2019-03-31,0.30,2,90 +16279328,Sunny and spacious Greenpoint Artists Haven (2 br),1154016,Amy,Brooklyn,Greenpoint,40.72287,-73.94135,Entire home/apt,135,5,13,2019-01-02,0.48,1,159 +16280020,East Harlem hideaway,14683530,Ivy,Manhattan,East Harlem,40.79507,-73.94248,Entire home/apt,200,5,8,2018-12-31,0.26,1,19 +16281547,Extremely Rare Townhouse in East Village,13715851,Marissa,Manhattan,East Village,40.7284,-73.98673,Entire home/apt,850,3,0,,,1,180 +16282085,Beautiful townhouse in Brooklyn NY,54342301,Katka,Brooklyn,Crown Heights,40.67748,-73.95101,Entire home/apt,300,2,11,2019-01-02,0.38,1,9 +16282091,"Sunny, cozy room in newly renovated apartment!",105606522,Leah,Brooklyn,Bushwick,40.68987,-73.91858,Private room,70,3,1,2016-12-16,0.03,1,0 +16283830,1BR Lower East Side GEM In New Elevator Building!,49883421,Scott,Manhattan,Lower East Side,40.71973,-73.99022,Entire home/apt,225,4,8,2017-04-25,0.26,1,0 +16284453,Cozy Oceanhill Room,43797176,Malcolm,Brooklyn,Cypress Hills,40.67816,-73.90583,Private room,80,2,17,2019-05-27,0.70,1,353 +16284730,Comfy Room in Williamsburg Duplex *big backyard*,13490820,Douglas,Brooklyn,Williamsburg,40.70719,-73.94749,Private room,50,3,3,2018-11-23,0.35,1,0 +16285996,Designers Dream Bed Stuy Studio,26765580,Brittney,Brooklyn,Bedford-Stuyvesant,40.68393,-73.94967,Entire home/apt,110,2,91,2019-06-24,3.02,1,48 +16287282,"Cozy, chic: Plants, good vibes and LOTS OF LIGHT!",34549333,Jordan,Manhattan,Washington Heights,40.83321,-73.93838,Private room,54,3,1,2017-01-04,0.03,1,0 +16287863,Bright one bedroom blocks from Barclays Center,28695751,Ian & Wendy,Brooklyn,Park Slope,40.68164,-73.9779,Entire home/apt,125,3,22,2019-03-11,0.72,2,0 +16287895,Cozy apartment in the Norwood section of the bronx,106544984,Maritza,Bronx,Norwood,40.87583,-73.87737,Private room,125,1,0,,,1,0 +16288234,Spacious room in Historical District Brownstone,106546614,Raymond,Brooklyn,Bedford-Stuyvesant,40.68369,-73.94193,Private room,40,7,0,,,1,0 +16288338,"CLEAN, SAFE, PLACE; Bed-Stuy Brooklyn.",99494083,Eunice,Brooklyn,Bedford-Stuyvesant,40.68322,-73.93073,Entire home/apt,115,5,47,2019-06-01,1.53,2,91 +16288598,Cozy Bohemian Home!,7965887,Stephanie,Queens,Ridgewood,40.70292,-73.91119,Private room,60,3,5,2018-11-25,0.16,1,0 +16288650,Bushwick Cozy Stay-- One Block From the Train!,11768876,Laura,Brooklyn,Bushwick,40.6995,-73.93334,Private room,30,2,61,2019-06-23,1.95,1,26 +16289001,Fort Greene Room,106555930,Emi,Brooklyn,Fort Greene,40.69612,-73.97361,Private room,150,2,0,,,1,0 +16289102,"Comfy private room, great location to Manhattan",92493393,Eddie & Lois,Staten Island,West Brighton,40.63209,-74.11494,Private room,55,2,30,2019-06-30,0.96,5,61 +16289203,Huge Bedroom - East Village - NYC,42422050,Paula,Manhattan,East Village,40.72709,-73.97459,Private room,79,2,19,2019-03-16,0.67,2,244 +16289292,Beautiful one-bedroom triplex with garden,3018866,Tony,Manhattan,East Village,40.73067,-73.98853,Entire home/apt,425,30,0,,,1,179 +16289476,Cozy Brooklyn Home in Crown Heights!,16214285,Melinda,Brooklyn,Crown Heights,40.66837,-73.95836,Entire home/apt,85,3,7,2019-06-18,0.38,1,20 +16289576,Best Location on the Upper West Side! - Part II,10795846,Sasha,Manhattan,Upper West Side,40.7892,-73.9734,Private room,80,1,47,2019-06-23,1.50,2,0 +16289973,Economy private room great location to Manhattan,92493393,Eddie & Lois,Staten Island,West Brighton,40.63302,-74.11396,Private room,55,2,64,2019-06-07,2.04,5,348 +16290974,Private Room in Uptown Manhattan,67469354,Britt,Manhattan,Harlem,40.82814,-73.9378,Private room,66,3,78,2019-07-04,2.49,1,55 +16296071,"Charming, Sunny Studio in Williamsburg",1470458,Ariella,Brooklyn,Greenpoint,40.71973,-73.95407,Entire home/apt,135,3,14,2019-06-15,0.46,1,0 +16296678,Bergen street in Crown Heights - French speaking,75918061,Pascale,Brooklyn,Crown Heights,40.6749,-73.95233,Entire home/apt,140,4,47,2019-06-24,1.66,1,5 +16296973,Big Sunny Room in Manhattan (M6),5164854,Lilia,Manhattan,Harlem,40.82104,-73.93915,Private room,52,7,3,2017-11-13,0.13,8,326 +16297226,"Sunny, spacious Brooklyn getaway, with skylights!",4661503,Whitney,Brooklyn,Greenpoint,40.72686,-73.94926,Entire home/apt,130,3,0,,,1,0 +16297227,True 1 BR Midtown West / Hell's Kitchen gem,82646321,Shady,Manhattan,Hell's Kitchen,40.76428,-73.99381,Entire home/apt,130,2,77,2019-06-17,3.63,1,9 +16297779,Dream home: Beautiful 2B2B Condo in Chelsea,106627653,Jacob,Manhattan,Chelsea,40.74735,-73.99974,Entire home/apt,585,3,7,2018-08-04,0.23,1,0 +16298489,Sunny Room,47675184,Antonio,Brooklyn,Bedford-Stuyvesant,40.69201,-73.9475,Private room,35,1,7,2017-01-12,0.22,1,0 +16298719,"Huge Sunny Room in New Apartment by G, J, M trains",106634224,Andrei,Brooklyn,Bedford-Stuyvesant,40.69554,-73.94246,Private room,55,14,4,2017-02-28,0.13,2,0 +16298763,"Spacious, Clean, Can be used as 2BR-Ridgewood,NY",106634512,Katarina,Queens,Ridgewood,40.69821,-73.89812,Entire home/apt,60,3,101,2019-06-24,3.65,2,47 +16299269,Single Minimal Bedroom in Hip area of Brooklyn NYC,4453703,Kraig,Brooklyn,Bushwick,40.69731,-73.93272,Private room,43,1,1,2016-12-08,0.03,1,0 +16300101,Warm design for a classic Brooklyn townhouse,27977412,Daria,Brooklyn,East Flatbush,40.64538,-73.94863,Shared room,36,30,2,2017-12-18,0.07,4,365 +16300514,Cozy 1 Bedroom Escape,68714722,Jessica,Manhattan,Upper East Side,40.77704,-73.94442,Entire home/apt,166,2,4,2018-12-28,0.49,1,0 +16300644,Sunny Private Bedroom in Prime Williamsburg,22919533,Kristina,Brooklyn,Williamsburg,40.71258,-73.95976,Private room,150,3,43,2019-06-24,1.41,2,67 +16300888,Cozy and spacious apartment in heart of Bushwick,10330612,Aicha,Brooklyn,Bushwick,40.70145,-73.92708,Entire home/apt,97,12,0,,,1,120 +16300982,Luxurious LES/Nolita Loft,56089590,Nise,Manhattan,Lower East Side,40.72018,-73.98521,Entire home/apt,250,3,53,2019-06-06,1.98,1,220 +16301173,LADIES ONLY!! Privacy in a shared space :),27260699,J,Brooklyn,Bushwick,40.69533,-73.90889,Shared room,28,1,103,2019-05-01,4.02,4,133 +16301294,2 Beds Brooklyn Tree Lined Blk 15 min to Manhattan,106654118,Gerard,Brooklyn,Bedford-Stuyvesant,40.68493,-73.94403,Entire home/apt,179,31,59,2018-04-17,1.92,1,198 +16301464,"Studio apt in Midtown Manhattan, great value",66271966,Don,Manhattan,Hell's Kitchen,40.76926,-73.98796,Entire home/apt,97,1,4,2017-03-16,0.14,1,0 +16301899,Private room in well furnished quintessential 2BR!,5865860,Jeremy,Manhattan,Midtown,40.75524,-73.96755,Private room,120,2,2,2017-06-30,0.08,1,0 +16302595,Luxury 2BD in heart of Williamsburg,76212913,Brian,Brooklyn,Williamsburg,40.71049,-73.9624,Entire home/apt,350,3,17,2019-01-05,0.55,1,129 +16302869,Modern & Cozy Room in Elegant Apt in Astoria,27951037,Kirsten,Queens,Ditmars Steinway,40.77664,-73.90896,Private room,65,30,79,2019-04-07,2.55,2,0 +16308331,Sunny beautiful airy bedroom in Modern Apartment,9367785,Camilo,Brooklyn,Greenpoint,40.725,-73.94633,Private room,63,1,10,2018-04-08,0.32,1,0 +16308886,SUNNY 2BD W. ELEVATOR / PERFECT 4 SMALL FAMILY,106714852,Ben,Manhattan,Chinatown,40.71401,-73.99187,Entire home/apt,151,7,2,2019-01-06,0.14,1,0 +16309329,"Cozy, private room in a 3 br in Gramercy",934811,Monica,Manhattan,Kips Bay,40.74047,-73.98381,Private room,70,2,8,2019-06-30,0.26,1,0 +16309452,Beautiful Hell's Kitchen room - near Times Square,106720090,Sarah,Manhattan,Hell's Kitchen,40.76202,-73.99201,Private room,95,4,0,,,1,0 +16309538,"Sunny, Quiet 1 Bedroom in Union Sq/East Village",101113812,Michael,Manhattan,East Village,40.73256,-73.98622,Entire home/apt,198,5,10,2017-05-29,0.32,1,0 +16309579,Private room in prime Cobble Hill neighborhood,9018292,Rémi,Brooklyn,Boerum Hill,40.68894,-73.99037,Private room,60,7,0,,,1,0 +16309856,Duplex bottom floor / All you need UES,106723044,Armando,Manhattan,Upper East Side,40.77484,-73.95103,Private room,100,1,1,2017-01-01,0.03,1,0 +16310046,Unique Bushwick one bedroom with private garden,1451269,Angelo,Brooklyn,Bushwick,40.70234,-73.92439,Entire home/apt,140,5,3,2018-11-24,0.10,1,7 +16310570,CRAZY SPACE & CRAZY SUN IN BUSHWICK,105828057,Kim,Brooklyn,Bushwick,40.6957,-73.91875,Private room,49,25,61,2018-03-06,1.96,1,0 +16310798,Hotel Room King/Queen at Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75198,-73.97266,Private room,799,3,3,2017-09-30,0.10,12,365 +16310817,Bedroom on Quiet Block on the Lower East Side,29111684,Samuel,Manhattan,Lower East Side,40.72167,-73.99075,Private room,85,30,2,2017-03-20,0.06,1,0 +16311386,Cozy True 1BR Apartment in Noho/East Village,8567200,Steven,Manhattan,East Village,40.72733,-73.99037,Entire home/apt,250,3,36,2019-06-18,1.18,1,36 +16311513,sunshine bedroom in old school artist loft,53394322,Azumi,Brooklyn,Williamsburg,40.71445,-73.93416,Private room,58,7,0,,,1,0 +16311527,Small furnished room in shared West Village apt,13846249,Sarah,Manhattan,West Village,40.73368,-74.00049,Private room,100,2,2,2017-01-03,0.06,1,0 +16311579,1 Bedroom Apartment with Balcony in Williamsburg,106732476,David,Brooklyn,Williamsburg,40.71179,-73.95565,Entire home/apt,110,2,0,,,1,0 +16312490,Spacious room steps from Central Park and Subway,3240340,Yulia,Manhattan,Harlem,40.80392,-73.95642,Private room,55,2,7,2018-03-20,0.23,1,0 +16312536,Large 1BR Apt In Upper Manhattan w/AC in Bedroom,106742582,Daniel,Manhattan,Washington Heights,40.84517,-73.93748,Entire home/apt,65,4,2,2017-07-25,0.08,1,0 +16312966,PRIVATE STUDIO WITH LOTS OF LIGHT,44102978,Tania & Juan,Manhattan,Washington Heights,40.8471,-73.93501,Entire home/apt,75,1,17,2019-05-26,0.55,1,253 +16312970,1 Bedroom for Rent in the heart of Williamsburg,106746084,Peter,Brooklyn,Williamsburg,40.714,-73.95665,Private room,55,3,0,,,1,0 +16313098,"2 bedroom apartment in Two Bridges(Chinatown, LES)",8381084,Pierre,Manhattan,Two Bridges,40.7115,-73.99903,Entire home/apt,190,2,45,2019-06-09,1.47,2,112 +16313932,Micro Room A,59529529,Han,Manhattan,Hell's Kitchen,40.76275,-73.99525,Private room,70,1,178,2019-07-03,5.75,6,146 +16314114,Comfortable Space + Great Block + Perfect Location,29533851,Ben,Manhattan,East Village,40.72954,-73.98303,Private room,85,2,57,2019-06-19,2.36,1,56 +16314267,Luxury Apt - Private room & entry!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68194,-73.90956,Private room,57,2,151,2019-05-28,4.93,3,0 +16314419,"Shared Living Space in Bushwick, Brooklyn",106756395,Monica,Brooklyn,Bedford-Stuyvesant,40.68937,-73.9226,Shared room,25,1,3,2016-12-31,0.10,2,0 +16314763,CHARMING ROOM W/ ROOF DECK ACCESS 3 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69461,-73.96186,Private room,97,30,9,2019-03-07,0.29,11,263 +16314871,CHARMING COZY ROOM FOR 1 :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.6945,-73.96005,Private room,80,30,15,2019-02-28,0.48,11,342 +16314979,Spacious Luxury 2bd-2ba apartment near DUMBO,304148,Dmitry,Brooklyn,Downtown Brooklyn,40.69899,-73.98653,Entire home/apt,180,5,0,,,1,0 +16315292,Spacious 1 bedroom in the heart of downtown NYC,8368667,Maura,Manhattan,East Village,40.72543,-73.99129,Entire home/apt,215,2,18,2019-06-03,0.70,1,68 +16315325,"Sunny Basement Studio Apartment, 1 block to Park",13741210,Deborah,Brooklyn,Flatbush,40.64849,-73.96585,Entire home/apt,89,2,9,2018-10-01,0.29,1,0 +16315491,AWESOME CHARMING ROOM C WITH ROOF DECK ACCESS :),29650513,Katie Graham,Brooklyn,Clinton Hill,40.69307,-73.96183,Private room,97,30,13,2019-05-20,0.41,6,332 +16315496,AWESOME CHARMING ROOM B WITH ROOF DECK ACCESS :),29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69459,-73.96103,Private room,97,30,7,2018-05-16,0.24,6,97 +16318720,"Beautiful, Spacious Harlem Home",2245740,Perry,Manhattan,Harlem,40.81153,-73.94528,Private room,120,7,0,,,1,0 +16319001,Stanhope,106798652,Timbrooke,Brooklyn,Bushwick,40.69477,-73.92489,Private room,50,7,0,,,2,362 +16320520,Penthouse,102913031,David,Manhattan,East Harlem,40.79142,-73.9398,Entire home/apt,350,4,33,2019-06-26,1.20,1,346 +16320612,Modern Apt in Harlem steps from Central Park!,88152200,Sade,Manhattan,Harlem,40.79942,-73.95128,Entire home/apt,159,3,11,2017-10-25,0.36,1,0 +16321223,Beautiful spacious Greenpoint Apartment,106816918,Zdzislawa,Brooklyn,Greenpoint,40.72623,-73.94972,Private room,150,2,37,2017-11-02,1.23,1,0 +16321376,Sunny 1 Bedroom Apt. in Brooklyn,43610994,Christopher,Brooklyn,Bedford-Stuyvesant,40.67902,-73.95085,Entire home/apt,70,2,5,2018-12-29,0.19,1,0 +16321573,Fabulous Chelsea Triplex (2 bdrm/1.5 bath),106819890,Sara,Manhattan,Chelsea,40.74289,-73.9953,Entire home/apt,300,6,0,,,1,0 +16321597,Great room in charming Fort Greene Brooklyn,26004891,Ariane,Brooklyn,Fort Greene,40.69357,-73.97235,Private room,44,6,0,,,1,0 +16321789,Sunny Room in East Williamsburg close to L Train,4992081,Sascha,Brooklyn,Williamsburg,40.70669,-73.94334,Private room,84,3,10,2019-07-01,0.38,1,4 +16322134,Wonderful room located in charming East Village,8030654,Calvin,Manhattan,East Village,40.72087,-73.98079,Private room,300,1,2,2018-06-07,0.15,1,0 +16322481,1 (twin) private room in bushwick +roof +living rm,106827427,Zarrin,Brooklyn,Bushwick,40.6984,-73.92273,Private room,30,3,2,2017-01-11,0.07,1,0 +16322824,Spacious and bright 1 bedroom apartment,50690723,Shara,Manhattan,Harlem,40.8087,-73.95142,Entire home/apt,245,7,0,,,1,0 +16323227,Lovely Spacious Bedroom in Brooklyn,23700673,Yoni,Brooklyn,Clinton Hill,40.69546,-73.96188,Private room,76,3,163,2019-06-12,5.22,2,53 +16323239,Spacious 2 BDR - Hell's Kitchen/Times Square,2559886,Sy,Manhattan,Hell's Kitchen,40.76284,-73.98849,Entire home/apt,130,4,2,2017-11-30,0.07,1,0 +16323461,"Williamsburg Experience, Quick Manhattan Access",20532489,Inese & Michæl,Brooklyn,Williamsburg,40.71002,-73.96237,Private room,124,2,71,2019-06-07,2.32,1,70 +16323724,"UWS Landmarked Townhouse 1BR, APT 3B",106837455,Lisa,Manhattan,Upper West Side,40.78297,-73.98141,Entire home/apt,160,90,2,2017-11-15,0.07,8,125 +16323731,RG - Budget Friendly room in the Greenpoint area!,83717038,Max,Brooklyn,Greenpoint,40.73731,-73.95493,Private room,45,2,85,2019-06-16,2.73,3,171 +16324410,Private cozy room near LGA airport,58391491,Juel,Queens,East Elmhurst,40.76432,-73.87227,Private room,33,1,333,2019-06-24,10.64,5,139 +16324411,Private large room near LGA airport with queen bed,58391491,Juel,Queens,East Elmhurst,40.76509,-73.8717,Private room,45,1,255,2019-06-23,8.17,5,175 +16325276,The Fenihouse Brooklyn,106445501,Renee,Brooklyn,Prospect-Lefferts Gardens,40.65868,-73.94992,Entire home/apt,200,2,46,2019-06-16,1.50,1,234 +16325588,Chic & Cosy Lower East Side Apartment,27809907,Sophie,Manhattan,Chinatown,40.71704,-73.99081,Private room,130,2,2,2017-07-02,0.06,1,0 +16325781,Room at Home in Lower East Side,3173147,Andrea,Manhattan,Lower East Side,40.71833,-73.98556,Private room,95,4,15,2019-06-25,0.63,2,244 +16325899,Private room near LGA Airport with queen bed,58391491,Juel,Queens,East Elmhurst,40.76582,-73.87153,Private room,45,1,306,2019-06-20,9.82,5,155 +16328372,Room In Bed-Stuy Apartment,68547639,Darren,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95371,Private room,100,1,0,,,1,0 +16330110,Stylish & Spacious Apartment,105075484,Bertus,Brooklyn,Canarsie,40.6315,-73.90761,Entire home/apt,117,2,88,2019-06-21,2.85,1,349 +16330737,Ft Greene: 2-3 Bedroom Duplex w/Garden,106899231,Heather,Brooklyn,Fort Greene,40.69601,-73.97114,Entire home/apt,220,6,7,2018-08-29,0.23,2,5 +16331234,Bright & cozy 1BR/Balcony next to 3 subways!,3952200,Gala,Brooklyn,Williamsburg,40.70581,-73.95004,Entire home/apt,100,3,72,2019-06-22,2.31,2,302 +16331645,big room in Hell's Kitchen close to Times Square,9236677,Jose Diego,Manhattan,Hell's Kitchen,40.75997,-73.98781,Private room,155,1,0,,,1,0 +16331969,Cozy in Cobble Hill,15130664,Karen,Brooklyn,Carroll Gardens,40.68577,-73.9928,Entire home/apt,450,2,0,,,1,0 +16332208,Cute Bedroom in Hip Bushwick,32923003,Vanessa,Brooklyn,Bushwick,40.70279,-73.9289,Private room,31,7,2,2017-01-15,0.06,1,89 +16332242,"Spacious, cozy, quiet 1.5 bedroom",85692123,Audrey,Queens,Ridgewood,40.70501,-73.91065,Entire home/apt,99,4,1,2017-01-02,0.03,1,0 +16333020,Amazing 3BR Triplex Family Apartment w/ Garden,106837455,Lisa,Manhattan,Upper West Side,40.78467,-73.98192,Entire home/apt,900,30,0,,,8,362 +16333075,Light filled private room in Red Hook!,1228668,Mattia,Brooklyn,Red Hook,40.67414,-74.00707,Private room,38,4,4,2019-06-20,0.13,1,0 +16333147,Charming Bedroom on the Lower East Side,33127406,Emily,Manhattan,Lower East Side,40.72007,-73.98559,Private room,90,5,0,,,1,0 +16333353,Clean Comfortable Room in Amazing NYC Neighborhood,106921180,Jake,Queens,Ridgewood,40.70412,-73.90171,Private room,33,3,2,2016-12-31,0.06,1,0 +16333541,Luxury Apartment Located in Riverdale.,66375835,Don,Bronx,North Riverdale,40.90154,-73.89791,Entire home/apt,125,7,0,,,1,89 +16333607,--Into The Heart Of Greenpoint--,32946808,Chris,Brooklyn,Greenpoint,40.72879,-73.95689,Entire home/apt,170,3,37,2019-05-27,1.18,1,258 +16333699,"Very spacious and sunny room in Harlem, Manhattan!",81109720,Tatiana,Manhattan,Harlem,40.83036,-73.94346,Private room,35,15,0,,,1,0 +16333776,Sun-drenched room in quiet Ridgewood neighborhood,23848987,Norberto,Queens,Ridgewood,40.70723,-73.91107,Private room,40,5,0,,,1,0 +16334327,"Bright, airy, calm Brooklyn space",1636770,Clare,Brooklyn,Bedford-Stuyvesant,40.68314,-73.9566,Private room,68,2,4,2017-01-24,0.13,1,0 +16334336,Modern Ridgewood Apartment!,105079063,Manuel,Queens,Ridgewood,40.69857,-73.90618,Private room,65,4,20,2017-12-27,0.64,1,0 +16334686,Cozy with Great location !!!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59813,-73.95432,Shared room,37,1,47,2019-06-23,1.58,5,354 +16335101,Brooklyn Style Apartment!,8904815,Sandra&Orlando,Brooklyn,Flatbush,40.64438,-73.95484,Entire home/apt,92,7,15,2019-01-02,0.49,2,281 +16335390,A dose of Williamsburg cool,3914854,Matt,Brooklyn,Williamsburg,40.70885,-73.94586,Private room,125,2,3,2017-04-08,0.10,1,0 +16335618,Large room with private bath & kitchen near train,106940881,Adil,Brooklyn,Flatbush,40.639,-73.96662,Entire home/apt,71,1,124,2019-06-24,3.97,1,64 +16336428,Cozy room in Brooklyn,13933851,Yagil,Brooklyn,Bedford-Stuyvesant,40.68997,-73.92742,Private room,40,8,11,2018-02-28,0.35,2,0 +16336497,Charming Chelsea Studio,106948369,Charles,Manhattan,Chelsea,40.74753,-74.00396,Entire home/apt,110,3,7,2019-02-13,0.31,1,9 +16336636,River View Apartment in the Bronx,91320722,Germaine,Bronx,Kingsbridge,40.86605,-73.90694,Entire home/apt,47,26,3,2018-08-23,0.16,1,37 +16336686,Comfortable room in quite home with queen size bed,42561290,Carla,Brooklyn,East New York,40.66192,-73.86764,Private room,45,2,37,2019-01-29,1.21,4,158 +16336709,Private Room on Roosevelt Island,106948134,Erik,Manhattan,Roosevelt Island,40.76182,-73.94879,Private room,50,1,8,2019-04-28,0.32,2,0 +16336860,Cozy room in 3 BR Williamsburg apartment,60736303,Charlotte,Brooklyn,Williamsburg,40.71457,-73.96332,Private room,60,2,1,2017-01-01,0.03,1,0 +16336867,Super Great Williamsburg Apartment- Private Room,36828710,Bridgid,Brooklyn,Williamsburg,40.7133,-73.95037,Private room,60,1,1,2017-03-27,0.04,1,0 +16337047,Comfy Bedroom in Spacious Manhattan apartment,35215309,Victor,Manhattan,East Harlem,40.79639,-73.93319,Private room,55,3,24,2019-06-29,0.86,2,81 +16337106,Charming attic Room in Home + Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.87093,-73.8934,Private room,58,3,84,2019-06-23,2.74,4,75 +16337271,"Charming Central 1- Bedroom Apartment, Gramercy",28450419,Jenna,Manhattan,Gramercy,40.73794,-73.98423,Entire home/apt,200,10,4,2019-01-02,0.15,1,48 +16337590,Artsy Apt in Bushwick!,9210000,Tracy,Brooklyn,Bushwick,40.68376,-73.91121,Private room,50,2,5,2017-05-16,0.16,1,206 +16337890,"Cozy Sunny Room in New Apartment by G, J, M trains",106634224,Andrei,Brooklyn,Bedford-Stuyvesant,40.69442,-73.94362,Private room,55,7,0,,,2,0 +16338086,Great Duplex in Crown Heights,106401814,Tania,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.94549,Entire home/apt,180,3,0,,,1,0 +16338143,Cozy place in a diverse city,106963874,Mabel,Queens,Elmhurst,40.74572,-73.87556,Private room,50,1,2,2017-01-20,0.07,1,0 +16338348,Entire 1 Bedroom Apt with Great Light & Vibes :),106951556,Meli And Daniel,Manhattan,Chinatown,40.71489,-73.99438,Entire home/apt,129,7,11,2018-10-30,0.35,1,188 +16338454,Cozy & Sunlit Three Bedroom Apartment,5828836,Dana,Manhattan,Harlem,40.82548,-73.94983,Entire home/apt,255,2,1,2017-01-01,0.03,1,0 +16339175,"Cozy, Quiet, 1 bedroom apartment - Lower East Side",93393807,Al,Manhattan,Lower East Side,40.7178,-73.98448,Entire home/apt,177,1,46,2019-06-23,1.50,1,31 +16339429,Quiet Room in Unique Carroll Gardens,106977720,Kristan,Brooklyn,Carroll Gardens,40.67711,-73.99692,Private room,50,2,2,2017-03-02,0.07,1,0 +16341416,Sunny room in BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67306,-73.92334,Private room,49,2,34,2019-06-04,1.11,5,29 +16345072,Elegant 3BR with Backyard (15 Mins to Manhattan!),107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93124,Entire home/apt,325,2,67,2019-06-21,2.27,3,250 +16346527,a budget comfy room,4013000,Mei,Queens,Bayside,40.75377,-73.7726,Private room,30,15,22,2019-06-02,0.70,2,145 +16346945,Full Apartment in Upper West Side.,15702477,Per Byholt Leibøl,Manhattan,Upper West Side,40.79519,-73.96945,Entire home/apt,109,2,2,2017-01-14,0.07,1,0 +16347171,Brooklyn Brownstone Serenity,19655631,Tali,Brooklyn,Bedford-Stuyvesant,40.68588,-73.92784,Entire home/apt,100,6,55,2019-06-30,1.81,1,59 +16347965,UES Beautiful Apartment off Park Av,33229585,Natalia,Manhattan,Upper East Side,40.76786,-73.96973,Entire home/apt,280,4,23,2019-07-07,0.76,1,17 +16348240,Wyndham 2 doubles hotel room,60617669,Rich,Manhattan,Midtown,40.75169,-73.97174,Entire home/apt,149,2,2,2017-01-01,0.06,4,0 +16348791,Spectacular Townhouse 4Floor 5BD West Village NYC,101132948,Maud,Manhattan,West Village,40.73726,-74.00085,Entire home/apt,2590,1,8,2018-12-27,0.41,1,361 +16349311,"Amazing location, East Village full 3BR apartment",32707981,Ben,Manhattan,East Village,40.72357,-73.98797,Entire home/apt,400,2,0,,,4,0 +16349645,Studio in West Village,6335037,Eric,Manhattan,West Village,40.73243,-74.00932,Entire home/apt,220,4,1,2017-01-02,0.03,1,0 +16349888,Hamilton Heights Townhouse Apartment,107055014,Michael,Manhattan,Harlem,40.82255,-73.94807,Private room,147,4,30,2019-06-17,1.18,1,28 +16350271,Cozy Bedroom in the heart of Williamsburg,107058927,Laura,Brooklyn,Williamsburg,40.71957,-73.95828,Private room,50,4,0,,,1,0 +16350431,Cozy room Williamsburg,1260413,Helena,Brooklyn,Williamsburg,40.71292,-73.94137,Private room,105,3,4,2018-05-28,0.13,3,0 +16350500,Charming Modern 1 Bedroom in Bedstuy.,35331192,Shaun-Curtis,Brooklyn,Bedford-Stuyvesant,40.68369,-73.94897,Entire home/apt,175,4,2,2018-01-02,0.07,1,0 +16350688,"Private Studio along the park in Greenpoint, BK",69280122,Colin,Brooklyn,Greenpoint,40.7234,-73.94136,Entire home/apt,60,3,5,2019-07-07,0.17,1,0 +16351193,Cozy Attic RM in Private Home Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.86909,-73.89396,Private room,55,3,74,2019-06-19,2.42,4,84 +16352250,Lavish Upscale Room. Unforgettable.,31736547,Iza,Manhattan,East Harlem,40.78983,-73.94419,Private room,65,1,73,2019-07-01,3.32,2,34 +16352484,Serene atmosphere in Manhattan,78466689,Natalia,Manhattan,Inwood,40.87247,-73.91927,Private room,59,2,11,2019-06-28,0.36,1,29 +16352708,Charming East Village Apartment with Patio,25438770,Mary Grace,Manhattan,East Village,40.72528,-73.98854,Private room,165,3,0,,,1,0 +16352907,New Years Eve in a bright and airy UWS one bedroom,71698853,Sarah,Manhattan,Upper West Side,40.78592,-73.97331,Entire home/apt,100,2,1,2017-01-02,0.03,1,0 +16352982,"Great Room &Host, steps from #1 train",60163700,Dee,Manhattan,Harlem,40.82378,-73.95354,Private room,50,60,13,2018-08-15,0.67,4,0 +16353229,Luxurious Studio In heart of NYC!,106949780,Amit,Manhattan,Theater District,40.75527,-73.98507,Entire home/apt,145,2,5,2017-11-08,0.16,1,0 +16353257,Quiet and cozy apartment in Greenwich Village,27932675,Sandra,Manhattan,NoHo,40.72571,-73.99506,Entire home/apt,100,3,3,2017-03-17,0.10,1,0 +16353458,Cozy and sunny 2 BR apartment in trendy Greenpoint,4229387,Suzanne,Brooklyn,Greenpoint,40.73475,-73.95543,Entire home/apt,150,4,4,2019-01-01,0.13,1,0 +16353473,Great Bedroom in East Williamsburg (+ ROOFTOP!!),107082851,Brian,Brooklyn,Williamsburg,40.70806,-73.9427,Private room,59,5,1,2017-01-01,0.03,2,0 +16353485,"Private 1 BR in 4 BR apartment, by L Train",32545798,Sasha,Brooklyn,Williamsburg,40.71443,-73.96154,Private room,45,1,4,2017-06-24,0.13,5,0 +16353851,Luxury apartment in the heart of Williamsburg,14808512,Florian,Brooklyn,Williamsburg,40.71809,-73.95383,Entire home/apt,170,3,2,2018-01-01,0.07,1,0 +16354659,East Village Studio Apt w/private Courtyard Oasis,93211521,Steven,Manhattan,East Village,40.7292,-73.98156,Entire home/apt,120,6,1,2017-01-05,0.03,1,0 +16356884,Cozy shared male room at center of Manhattan III\),39528519,Max,Manhattan,Lower East Side,40.71239,-73.98626,Shared room,32,14,0,,,28,342 +16357148,Private Room in Sun-drenched Apartment,46416490,Anne,Manhattan,Harlem,40.80883,-73.94577,Private room,68,30,20,2018-09-14,0.65,1,15 +16360002,Cozy Stylish Central Park Private Suite,4487093,Jack - Philippe,Manhattan,East Harlem,40.79677,-73.94823,Private room,105,2,85,2019-07-01,2.79,1,117 +16360010,"Charming bedroom, great location !",26574838,Maude,Brooklyn,Williamsburg,40.70769,-73.94548,Private room,65,2,2,2017-01-08,0.07,1,0 +16360727,"Cozy Apartment in Brooklyn, NY",106193743,Clifton,Brooklyn,Crown Heights,40.67816,-73.95112,Entire home/apt,100,7,0,,,1,0 +16360894,Sunny Studio Apartment,7359870,Felix,Manhattan,Harlem,40.82179,-73.94777,Entire home/apt,95,4,0,,,1,0 +16361014,Room in The Heights!,17171419,Mordechai,Manhattan,Washington Heights,40.85204,-73.92886,Private room,39,4,0,,,2,0 +16361439,Private Studio & Kitchen in Renovated Brownstone,48952468,Mónica,Brooklyn,Bedford-Stuyvesant,40.68974,-73.94283,Entire home/apt,75,2,68,2019-06-30,2.28,1,232 +16361717,Apartment in the heart of Williamsburg Brooklyn!,90829719,Mat,Brooklyn,Williamsburg,40.71381,-73.95041,Entire home/apt,125,1,112,2019-06-23,3.65,1,221 +16362150,Bright and Cozy 1BR in Crown Heights,5659683,Morgan,Brooklyn,Crown Heights,40.67769,-73.95309,Entire home/apt,100,3,5,2019-06-25,0.17,1,8 +16362226,"浪漫民宿,环境优美,停车方便,独立洗手间和马桶,浴室共用。 (Website hidden by Airbnb)",105074140,Emmy,Queens,Flushing,40.75482,-73.80368,Private room,48,1,52,2019-02-14,2.03,4,0 +16363175,PENTHOUSE OASIS IN THE HEART OF CHELSEA /FLATIRON,4366982,Rami,Manhattan,Gramercy,40.73741,-73.99003,Entire home/apt,149,10,9,2019-02-17,0.29,1,19 +16363328,COZY ROOM,18329648,Genya,Brooklyn,Sheepshead Bay,40.60664,-73.95402,Private room,40,1,0,,,1,0 +16363434,Midtown Loft,40965944,Lou,Manhattan,Midtown,40.75092,-73.98636,Entire home/apt,290,2,5,2017-04-16,0.16,1,0 +16363498,Sunny and large bedroom in Williamsburg Apartment,6842719,Shachi,Brooklyn,Williamsburg,40.71451,-73.93959,Private room,120,1,7,2019-05-22,0.23,2,89 +16363747,Comfy Room in Cobble Hill,107158968,Jessica,Brooklyn,Carroll Gardens,40.68384,-73.99065,Private room,45,1,8,2018-03-16,0.26,1,0 +16363923,Studio in West Village,107162130,Dennis,Manhattan,West Village,40.73021,-74.00663,Entire home/apt,119,2,0,,,1,0 +16364067,Beautiful Newly Renovated BK Apt with W&D in Unit,1528114,K.,Brooklyn,Bedford-Stuyvesant,40.6836,-73.93495,Entire home/apt,95,4,68,2019-05-26,2.30,1,0 +16364666,Brand New &Cozy Room Close to Subway Station,61042,Marlon,Manhattan,Harlem,40.82112,-73.95482,Private room,45,4,22,2018-12-31,0.71,6,0 +16365302,Bond Street 2 bedroom 2 bath great Noho location,24074171,Donna,Manhattan,NoHo,40.72501,-73.99323,Entire home/apt,400,2,26,2019-04-12,0.90,1,10 +16365878,"Near the City, Classic Brooklyn!",107177716,Yuki,Brooklyn,Bedford-Stuyvesant,40.68712,-73.94708,Entire home/apt,130,2,168,2019-06-29,5.45,1,203 +16366744,Large Basement Bedroom With Kitchen,107040079,Jonathon,Brooklyn,Crown Heights,40.66713,-73.9411,Private room,80,4,46,2019-06-30,1.94,2,272 +16366928,Bronx Beauty: Renovated historic rowhouse,97853468,Steven,Bronx,Hunts Point,40.81841,-73.89067,Private room,45,14,18,2019-05-31,0.68,4,332 +16367064,Cute and cozy space in Chinatown,11511386,Erika,Manhattan,Chinatown,40.71513,-73.9981,Private room,100,2,1,2016-12-30,0.03,1,0 +16367184,South Slope Brooklyn Apartment!,7676346,Saquib,Brooklyn,Sunset Park,40.66033,-73.99623,Entire home/apt,80,2,0,,,1,0 +16367772,Cute room near Columbia University,38679669,Mary,Manhattan,Morningside Heights,40.80324,-73.96432,Private room,65,4,0,,,1,0 +16367983,Charming and Convenient East Village Apartment,17098527,Mei Ni,Manhattan,East Village,40.72638,-73.97752,Private room,200,4,2,2018-01-01,0.07,1,39 +16368233,Private room in beautiful apartment,6153409,Isaac,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95535,Private room,45,15,3,2016-12-26,0.10,1,0 +16368328,Cozy Harlem Jewel,107158006,Liliana,Manhattan,Harlem,40.8228,-73.93956,Private room,60,2,119,2019-06-24,3.82,1,198 +16368376,"Chic, Sunny East Village Entire Apartment",48071153,Caitlin,Manhattan,East Village,40.72477,-73.9859,Entire home/apt,132,4,10,2017-12-22,0.33,1,26 +16368541,1st Floor room available in 3 br 2bath Apt,6202020,Nikolas,Queens,Astoria,40.76875,-73.92769,Private room,119,1,0,,,1,0 +16368793,"Super Cute, Cozy, Sun-filled And Private",106634512,Katarina,Queens,Ridgewood,40.69821,-73.8974,Entire home/apt,60,3,63,2019-06-28,4.42,2,50 +16370096,Beautiful room in Brooklyn,16627758,Thai,Brooklyn,Bedford-Stuyvesant,40.68643,-73.95548,Private room,38,1,3,2017-01-14,0.10,1,0 +16373331,Holidays in NYC,107240480,Julia,Brooklyn,South Slope,40.66383,-73.983,Entire home/apt,50,4,0,,,1,0 +16373546,Huge full floor loft on Broadway and Bleecker,10683360,David,Manhattan,Greenwich Village,40.72747,-73.9969,Entire home/apt,240,3,15,2019-07-02,0.56,1,45 +16374376,Large 2 bed 2 bath modern apt. - Brooklyn Bridge,27275952,Andrew,Brooklyn,Downtown Brooklyn,40.69584,-73.98466,Entire home/apt,285,4,0,,,2,102 +16374392,2 Bedrooms Entire Beautiful Apt in Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.71372,-73.96232,Entire home/apt,120,4,9,2019-01-06,0.42,2,291 +16374702,Entire Duplex In The East Village,16068447,Douglas,Manhattan,East Village,40.72363,-73.97972,Entire home/apt,499,1,0,,,1,0 +16374783,Loft in Brooklyn,697678,Shauna,Brooklyn,Bedford-Stuyvesant,40.68009,-73.94676,Entire home/apt,119,3,6,2017-11-25,0.20,1,0 +16374819,Cozy and Modern apartment in Astoria,106436231,Liliana,Queens,Astoria,40.77121,-73.92847,Entire home/apt,225,7,1,2016-12-30,0.03,1,0 +16376497,Private Room blocks from Union Square,81190209,Claudio,Manhattan,Stuyvesant Town,40.73125,-73.97891,Private room,110,1,0,,,1,0 +16377144,Cozy 2Bedroom Apt. in Astoria,7310057,Carl,Queens,Astoria,40.76793,-73.91918,Entire home/apt,79,3,2,2019-01-01,0.11,1,0 +16377436,"Big, sunny bedroom in apartment with modern decor",100595030,Michael,Brooklyn,Williamsburg,40.7131,-73.94981,Private room,85,28,14,2018-09-29,0.50,2,0 +16377899,90 Washington St Luxury apartment,53179388,Raymond,Manhattan,Financial District,40.70742,-74.01544,Entire home/apt,200,30,1,2017-02-04,0.03,10,342 +16378007,307 E 44th st 1BR great loc,53179388,Raymond,Manhattan,Midtown,40.75006,-73.97007,Entire home/apt,150,30,3,2018-05-10,0.12,10,350 +16378313,7 mins from Times Sq! Modern elevator building!,58877492,Eki,Manhattan,Hell's Kitchen,40.76418,-73.98885,Entire home/apt,190,4,0,,,1,0 +16378562,Charming studio in midtown east,20692024,Ali,Manhattan,Midtown,40.75827,-73.96196,Entire home/apt,215,5,7,2018-05-20,0.38,1,0 +16378706,Master Bedroom in Stylish Apartment,1276297,Amitis,Brooklyn,Greenpoint,40.72838,-73.94739,Private room,67,1,2,2017-02-01,0.07,1,0 +16380258,MANHATTAN MODERN NEAR CENTRAL PARK!,99237414,Peter,Manhattan,East Harlem,40.78676,-73.94376,Private room,79,3,21,2019-06-21,0.69,1,46 +16380794,Brooklyn’s lovely Luxurious Suite sleeps 5,107294313,Sam,Brooklyn,Bay Ridge,40.63835,-74.02614,Entire home/apt,139,2,93,2019-06-30,3.02,1,217 +16381008,Sunny Private Studio-Apartment,107296819,Alexandra,Manhattan,East Harlem,40.79583,-73.93595,Entire home/apt,105,1,142,2019-06-16,4.62,3,11 +16381049,Large 3bd 2 bath duplex in prime Greenpoint!,34471130,LeAndra,Brooklyn,Greenpoint,40.73292,-73.95987,Entire home/apt,250,2,0,,,1,0 +16381226,"Не дорогая комната в Нью-Йорке, в Бруклине",107291364,Ella,Brooklyn,Coney Island,40.57751,-73.98521,Shared room,50,2,1,2016-12-18,0.03,1,0 +16381393,Skyline #2 view ny skyline,93121568,Charles,Bronx,Concourse,40.82388,-73.9279,Private room,60,2,53,2019-07-01,1.80,2,169 +16381746,Budget stay in LUXURIOUS FIDI building,17691352,Emily,Manhattan,Financial District,40.70618,-74.00385,Private room,75,15,3,2017-10-07,0.10,1,0 +16381905,Skyline #1 view ny skyline,93121568,Charles,Bronx,Concourse,40.82415,-73.92778,Private room,50,2,63,2019-07-01,2.06,2,110 +16382035,"✨Bright, spacious apartment in the West Village❤️",1000278,Michael,Manhattan,West Village,40.73415,-74.00721,Entire home/apt,190,1,86,2019-06-22,2.76,1,236 +16382645,Amazing ONE bedroom. Lots of light and style,13043232,Wendy,Manhattan,Greenwich Village,40.72934,-74.00025,Entire home/apt,230,5,14,2019-04-17,0.45,1,9 +16385859,Cozy Junior 1BR in inwood.,8571056,Richard,Manhattan,Inwood,40.86663,-73.92391,Entire home/apt,80,2,4,2018-09-04,0.13,1,0 +16388417,Spacious Midtown Apt with window view & balcony,61187947,Amy,Manhattan,Hell's Kitchen,40.76217,-73.99105,Private room,100,3,0,,,1,0 +16389354,Spectacular 2BR with NYC SKYLINE VIEW + ROOF DECK,107136259,Prithvi,Brooklyn,Williamsburg,40.70614,-73.9487,Entire home/apt,199,2,1,2017-01-02,0.03,1,0 +16389531,Great Movie-like East Village aptmt,9270927,Rafael,Manhattan,East Village,40.72461,-73.9892,Entire home/apt,190,1,0,,,1,0 +16389820,Lovely room in the lovely area of Williamsburg BK,6141851,Freya,Brooklyn,Williamsburg,40.71385,-73.95559,Private room,64,2,3,2017-01-02,0.10,1,0 +16390105,Cozy 1 bedroom in the heart of Fort Greene,2455580,Ithai,Brooklyn,Fort Greene,40.68529,-73.97365,Entire home/apt,225,3,0,,,1,0 +16390662,room with view and bath,106291193,Mathilde,Queens,Flushing,40.7408,-73.82708,Private room,35,1,0,,,1,0 +16391487,Affordable bedroom in the East Village!,16085180,Nicolas,Manhattan,East Village,40.72351,-73.98389,Private room,70,2,9,2017-05-28,0.29,1,0 +16391952,Large Private Room in Quiet BK Heights Apartment,17764574,Paige,Brooklyn,Brooklyn Heights,40.69797,-73.992,Private room,60,3,0,,,1,0 +16392085,Bright Spacious Home in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71385,-73.96046,Entire home/apt,264,2,2,2017-03-27,0.07,3,0 +16392514,"Great deal, full equiped room in Times Square",107382521,Adam,Manhattan,Theater District,40.75725,-73.98796,Private room,100,1,36,2017-11-26,1.18,1,0 +16392756,Cozy studio next to Wash Sq Park,5895282,Scott,Manhattan,Greenwich Village,40.73421,-73.9968,Entire home/apt,135,5,9,2017-06-16,0.29,1,0 +16393191,Interfaith Retreat Guest Rooms (Bhakti),16677326,Alex And Zeena,Manhattan,Chelsea,40.74786,-73.99652,Private room,85,1,84,2019-06-23,2.71,12,359 +16393395,Interfaith Retreats (Devotion),16677326,Alex And Zeena,Manhattan,Chelsea,40.74929,-73.99545,Private room,85,1,113,2019-06-23,3.63,12,360 +16393500,Bedroom in beautiful Brooklyn apartment,23099342,Jon,Brooklyn,Fort Greene,40.68713,-73.97222,Private room,55,7,2,2017-01-02,0.06,1,0 +16393554,Classic Downtown Loft,1482059,Erin,Manhattan,Chinatown,40.71698,-73.99629,Entire home/apt,295,2,43,2019-05-09,1.39,1,66 +16394179,Private Bedroom + Shared House,101809002,Tak,Brooklyn,Brownsville,40.65958,-73.91113,Private room,28,1,7,2017-03-01,0.23,1,0 +16394193,Cozy & Affordable,59338077,Nash,Queens,Ridgewood,40.70443,-73.90656,Private room,45,1,2,2017-01-02,0.07,1,0 +16394440,"Beautiful Double Room - Heart of Clinton Hill, BK",47817193,Loreley,Brooklyn,Clinton Hill,40.68604,-73.9676,Private room,120,1,2,2017-05-16,0.07,1,0 +16394488,Hip Luxury Stay w Private Bath 5 min to Manhattan,94027304,Roberson,Brooklyn,Williamsburg,40.71499,-73.95561,Private room,90,3,5,2017-07-13,0.16,1,0 +16394576,"Master bedroom , your own bathroom in 2bed apart",52176200,Viktoria,Manhattan,East Harlem,40.79227,-73.94536,Private room,89,1,138,2019-06-30,5.31,1,34 +16394608,Cozy room in Beautiful Brooklyn!,37236633,Elís,Brooklyn,Bedford-Stuyvesant,40.68273,-73.93397,Private room,50,30,2,2016-12-31,0.07,1,0 +16394700,"Williamsburg, Private Bedroom, 2 blocks from L",71499658,Omar,Brooklyn,Williamsburg,40.71518,-73.94151,Private room,50,3,0,,,1,0 +16394824,Apartment in Soho on Edge of West Village,107398940,Carl,Manhattan,Greenwich Village,40.72829,-74.00233,Entire home/apt,150,3,2,2017-01-04,0.07,1,0 +16395341,Cozy bedroom near George Washington Bridge,80901099,Yifei,Manhattan,Washington Heights,40.85019,-73.94093,Shared room,40,1,0,,,1,0 +16395800,Small Room,78497102,Ira,Manhattan,Lower East Side,40.71777,-73.98526,Private room,99,1,6,2018-01-01,0.20,1,0 +16395966,Hidden Gem in Crown Heights,52014015,Yobiel,Brooklyn,Crown Heights,40.6754,-73.94977,Entire home/apt,225,1,0,,,1,0 +16396119,Enjoy my apartment for the summer!,52780335,Aaron,Manhattan,Washington Heights,40.83985,-73.93715,Entire home/apt,65,3,14,2019-06-29,0.45,1,0 +16396241,Williamsburg 2BR. Close to L train,107412747,Jazz,Brooklyn,Williamsburg,40.71058,-73.95294,Entire home/apt,280,1,133,2019-06-29,4.34,1,359 +16396301,Columbus Circle Single Bedroom,19855956,Laurie,Manhattan,Hell's Kitchen,40.76514,-73.98551,Private room,100,7,0,,,1,0 +16396507,Full 1 bedroom apt in an awesome area!,1175504,Verun,Manhattan,Kips Bay,40.74301,-73.98037,Entire home/apt,120,4,2,2017-05-27,0.07,1,0 +16396640,Wonderful UES Studio...,107416436,Eddie,Manhattan,Upper East Side,40.77848,-73.9486,Private room,70,7,1,2017-01-02,0.03,1,0 +16396753,Private room in the heart of East village,5212097,Chris,Manhattan,East Village,40.72258,-73.98148,Private room,100,3,5,2019-03-19,0.19,2,0 +16400753,Room in 3 bed apt/w parking- Wburg.,8134440,Austin,Brooklyn,Williamsburg,40.71614,-73.94134,Private room,55,2,0,,,1,0 +16400971,Washington Heights Oasis,5213327,Andrew,Manhattan,Washington Heights,40.84369,-73.93891,Entire home/apt,150,7,0,,,1,0 +16401944,Cheap large room with desk 10 min to JFK+ Mall,107455767,Guelma,Queens,Rosedale,40.65322,-73.73366,Private room,50,15,92,2018-10-21,2.96,5,356 +16402623,"Cozy apartment in the Lower East Side, NYC!",3125516,Eva,Manhattan,Lower East Side,40.718,-73.98497,Entire home/apt,95,8,3,2017-11-30,0.10,1,0 +16403092,Beautiful 1 Bedroom in Bedstuy with Private Yard,98976,Nathan,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95023,Entire home/apt,140,7,4,2017-11-19,0.13,1,0 +16403353,Bright & Sunny Oasis in East Village,3413390,Katia,Manhattan,East Village,40.72249,-73.98145,Entire home/apt,180,2,24,2019-06-21,0.77,1,0 +16404289,Brownstone on a tree-lined street in NYC,102012893,Jeffrey,Manhattan,Harlem,40.80669,-73.9497,Entire home/apt,200,5,2,2017-07-29,0.07,2,0 +16404329,Small Room in Big Williamsburg Apartment,4448551,Marco,Brooklyn,Williamsburg,40.71048,-73.96292,Private room,74,29,17,2018-11-30,0.55,1,0 +16405036,AMAZING LOCATION - Heart of CHELSEA / Manhattan,3894843,Ania,Manhattan,Chelsea,40.74182,-73.99904,Private room,95,1,75,2019-06-23,3.95,1,19 +16405126,Artists Bright Eclectic Home & Studio,50097540,Ana Cristina,Brooklyn,Williamsburg,40.70735,-73.94032,Entire home/apt,114,4,41,2019-02-22,1.44,1,0 +16405632,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74569,-73.9922,Entire home/apt,205,30,0,,,87,357 +16405668,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74613,-73.99178,Entire home/apt,279,30,1,2019-03-15,0.26,87,358 +16406203,Fort Greene apartment,43272616,Emi,Brooklyn,Fort Greene,40.69613,-73.97364,Private room,80,3,0,,,2,0 +16406403,Bright Brooklyn Room close to Manhattan,28455413,Lia,Brooklyn,Bedford-Stuyvesant,40.67988,-73.93945,Private room,31,21,5,2017-09-18,0.19,2,0 +16406680,Wyndham 2 double beds hotel room,60617669,Rich,Manhattan,Midtown,40.75222,-73.97276,Entire home/apt,299,2,0,,,4,0 +16407022,Bedroom in Spacious Williamsburg Loft,22803324,Andrea,Brooklyn,Williamsburg,40.70675,-73.96768,Private room,80,2,3,2017-06-02,0.11,1,0 +16407427,Bronx Cozy Spacious Room close to NYC Subway,9947836,Jenny,Bronx,Longwood,40.82441,-73.89454,Private room,50,3,61,2019-06-24,2.17,2,22 +16407461,Prospect Park Brownstone full floor w/garden,28779108,Darryl Diego,Brooklyn,Prospect-Lefferts Gardens,40.66024,-73.95518,Entire home/apt,190,4,26,2019-06-23,1.18,1,145 +16408202,Spacious room with amazing view,8309054,Kenza,Manhattan,East Village,40.72726,-73.98037,Private room,90,2,3,2017-12-20,0.10,1,0 +16409634,*BRAND NEW*4 BED DUPLX W PVT BCKYARD 15 MIN 2 CITY,254846,Brendan,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92258,Entire home/apt,399,3,31,2019-05-04,1.03,4,290 +16409970,Private room on restaurant row,70724645,Carly,Manhattan,Hell's Kitchen,40.76007,-73.99031,Private room,79,1,0,,,1,0 +16411398,Harlem Brownstone Retreat Suite,54246858,Lana,Manhattan,Harlem,40.80997,-73.9412,Entire home/apt,110,3,79,2019-06-29,3.69,1,257 +16412250,Cozy and quiet 1 bedroom in great neighborhood,19294443,Melissa,Brooklyn,Park Slope,40.67514,-73.97598,Entire home/apt,85,2,1,2017-01-01,0.03,1,0 +16412823,Beautiful Area. Central Park views. Classic Apt,20578378,Brooklyn,Manhattan,Upper East Side,40.77547,-73.9623,Private room,105,2,35,2019-06-28,1.35,1,327 +16413425,Where Dreams are made of NYC,107556087,Crystal,Manhattan,East Harlem,40.80476,-73.94074,Shared room,89,1,2,2018-10-02,0.19,1,88 +16413638,Cute Nolita 1 Bedroom,12349009,Kaj,Manhattan,Nolita,40.72253,-73.99459,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +16413742,Large Bushwick private bedroom,561033,Neil,Brooklyn,Bushwick,40.6998,-73.93781,Private room,63,3,19,2019-06-20,0.68,1,160 +16413797,"Private room in Bushwick, Brooklyn",106756395,Monica,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92139,Private room,50,1,0,,,2,0 +16414045,"Private 2 Room Guest Suite in Queens, NY",59886126,Maria,Queens,Glendale,40.70505,-73.89042,Entire home/apt,95,4,63,2019-05-20,2.21,1,101 +16414081,15 min to NYC-CITY VIEWS FROM ROOM! Safe/warm home,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69055,-73.95394,Private room,58,1,16,2019-01-18,0.52,2,8 +16414538,Beautiful Studio with a top location in Manhattan,21058022,Pablo,Manhattan,Greenwich Village,40.73698,-73.99675,Private room,120,4,5,2017-07-30,0.16,3,0 +16414567,Studio near Central Park East!,18483938,Oscar,Manhattan,Upper East Side,40.77149,-73.95121,Entire home/apt,180,8,1,2017-01-03,0.03,1,0 +16414744,Beautiful room in the heart of Time Square,4923854,Carly,Manhattan,Hell's Kitchen,40.75966,-73.991,Private room,150,3,2,2018-01-01,0.10,1,8 +16415297,"Spacious&Sunny bedroom near Central Park,UpperEast",12895206,Salvatore,Manhattan,Upper East Side,40.77651,-73.94791,Private room,65,7,4,2017-12-29,0.13,1,0 +16415365,Private cozy room close to Columbia University,8594019,Jose Vicente,Manhattan,Morningside Heights,40.81626,-73.96035,Private room,50,3,5,2017-09-02,0.18,2,0 +16415427,Private Bedroom in Midtown -Heart of NYC,23341466,Mo,Manhattan,Theater District,40.76384,-73.98492,Private room,105,8,1,2017-12-08,0.05,1,0 +16415673,Cozy bedroom in a home-y Bushwick place,74868631,Melkorka,Brooklyn,Bushwick,40.69969,-73.92867,Entire home/apt,70,3,3,2018-10-27,0.13,1,66 +16415769,very clean and spacious,107578852,Carlos,Manhattan,Washington Heights,40.8439,-73.93744,Private room,53,1,165,2019-06-16,5.35,2,120 +16415910,Clean and spacious private room for your NYC trip!,53850552,Virginia,Manhattan,Harlem,40.82682,-73.95142,Private room,50,6,4,2017-07-29,0.13,1,0 +16416474,Sun Drenched Spacious Loft in NYCs Trendiest Hood,6755652,Jenny,Manhattan,Lower East Side,40.72077,-73.99023,Entire home/apt,205,3,102,2019-06-23,3.36,1,117 +16416588,One Bedroom off of Franklin Avenue in Brooklyn,43870735,Tj,Brooklyn,Crown Heights,40.6706,-73.96026,Entire home/apt,72,6,0,,,1,0 +16416857,Warm and quiet studio in heart of chinatown,107589614,Jim,Manhattan,Chinatown,40.71538,-73.99669,Entire home/apt,142,4,12,2018-08-26,0.43,2,151 +16417951,Cozy modern sunny room for 2,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67525,-73.93333,Private room,52,2,123,2019-06-17,4.01,4,332 +16418497,Bright Creative Environment,53611405,Tye,Brooklyn,Williamsburg,40.70542,-73.94957,Private room,117,2,3,2018-08-11,0.10,1,285 +16420915,"CLASSIC NEW YORK! Heart of UWS! +CLEAN. BRIGHT. NEW",27847787,Samuel,Manhattan,Upper West Side,40.78446,-73.97189,Entire home/apt,230,6,9,2019-01-02,0.37,1,0 +16422375,Nice place,71540842,Willy,Queens,Ridgewood,40.70777,-73.91053,Entire home/apt,75,3,90,2019-06-08,2.93,2,72 +16423080,Private Studio Apartment close to ferry and subway,15231187,Conor,Brooklyn,Greenpoint,40.73203,-73.95572,Entire home/apt,89,3,69,2019-06-13,2.25,1,0 +16423090,Shared Flatbush House in Brooklyn.,27977412,Daria,Brooklyn,East Flatbush,40.63899,-73.94886,Shared room,30,30,4,2018-04-03,0.15,4,365 +16423772,"Cozy Room In Heart Of Queens- Hillside, Hollis",42076125,Atif,Queens,Hollis,40.71368,-73.76337,Private room,80,3,0,,,2,89 +16423876,newly renovated apt in Brooklyn!,107417836,Rito,Brooklyn,Bedford-Stuyvesant,40.68205,-73.92833,Entire home/apt,200,3,73,2019-06-24,2.50,1,329 +16424070,Cozy modern Coliving in Flatbush/twin shared room,27977412,Daria,Brooklyn,East Flatbush,40.64233,-73.94773,Shared room,38,30,0,,,4,365 +16424565,Modern Apartment 7 min from JFK Airport and Casino,43197578,James,Queens,South Ozone Park,40.6727,-73.81598,Entire home/apt,89,1,2,2019-07-08,2,1,42 +16424642,Skylight loft bed room in large artist house!,3619937,Freddi,Brooklyn,Bushwick,40.69935,-73.92642,Private room,41,7,7,2019-01-16,0.24,2,0 +16424684,Sunny private room in fabulous North Park Slope!,7009468,Sarah,Brooklyn,Park Slope,40.68089,-73.97965,Private room,75,1,3,2018-09-29,0.10,1,108 +16424743,Garden studio w/ private entry&bath. No smokers.,107671914,Etwin,Brooklyn,East Flatbush,40.65737,-73.92563,Private room,90,3,36,2019-01-01,1.28,1,50 +16424934,Stylish and cozy East Village 2 bedroom apartment,20823812,Stephanie,Manhattan,East Village,40.72798,-73.97787,Entire home/apt,135,1,1,2016-12-28,0.03,1,0 +16425205,Room for rent (females ONLY),73550323,Chioma,Bronx,Parkchester,40.84012,-73.86521,Private room,40,1,1,2017-01-01,0.03,1,0 +16425234,Williamsburg Sun-Filled Home Away From Home!,6439477,Lindsay,Brooklyn,Williamsburg,40.71304,-73.94862,Private room,93,2,7,2018-09-04,0.23,1,146 +16426099,All season studio in Astoria,107682732,Elva,Queens,Ditmars Steinway,40.77677,-73.9106,Entire home/apt,100,3,93,2019-06-28,3.03,1,12 +16426123,Large apt in prime carol gardens,40611169,Sol,Brooklyn,Carroll Gardens,40.67933,-73.99562,Entire home/apt,350,1,82,2018-09-30,2.67,5,152 +16426559,Beautiful room in the heart of the Lower East Side,107670361,Alexander,Manhattan,Lower East Side,40.71845,-73.98572,Private room,125,1,0,,,1,0 +16427245,Beautiful private room by N/W subway in Astoria,18978686,Kristin,Queens,Ditmars Steinway,40.77492,-73.90866,Private room,70,2,0,,,1,0 +16427395,"Unique, Lofted 1BR in the heart of West Village",43151590,Kharay,Manhattan,West Village,40.73581,-74.00684,Entire home/apt,150,3,4,2018-12-30,0.13,1,0 +16427668,Chelsea 1bedroom,22526477,Mathew,Manhattan,Chelsea,40.74543,-74.00055,Entire home/apt,300,4,1,2017-01-03,0.03,1,0 +16427742,Cozy room (1 br in a 2 br apt) Upper west side,107699884,Cynthia,Manhattan,Upper West Side,40.79096,-73.97582,Private room,86,1,42,2019-06-15,1.55,1,24 +16427854,Trendy 1 bedroom apartment in cool LES hood.,83185960,Dr. Amy,Manhattan,Lower East Side,40.7151,-73.98661,Entire home/apt,180,3,49,2019-05-28,1.58,1,1 +16428383,2 blocks to 2 ⭐️⭐️⭐️⭐️⭐️,45247495,Carlos,Bronx,Fieldston,40.89279,-73.89946,Entire home/apt,135,6,8,2019-07-01,0.32,1,250 +16428888,Bright and quiet room in East Village,7546451,Clément,Manhattan,East Village,40.7288,-73.98147,Private room,100,10,8,2018-12-20,0.34,1,0 +16428954,Luxury apartment near Williamsburg & Manhattan,19803201,Gino,Brooklyn,Greenpoint,40.72282,-73.94174,Entire home/apt,179,30,32,2019-06-09,1.18,2,326 +16429097,East Williamsburg 1BR Apt. w/ yard!,11429272,Greicy,Brooklyn,Williamsburg,40.70603,-73.94147,Entire home/apt,116,1,55,2018-10-13,1.89,1,0 +16429863,Sunny Private Bedroom in an apartment Sunnyside,44269300,Franklyn,Queens,Sunnyside,40.7396,-73.92324,Private room,115,2,24,2019-04-20,0.78,1,19 +16429866,Sunny room in Brooklyn by N train,36758315,Isadora,Brooklyn,Sunset Park,40.64342,-74.01224,Private room,60,2,1,2017-01-02,0.03,1,0 +16430924,Pacific Street Gem!!!,39834676,Nette,Brooklyn,Crown Heights,40.67756,-73.94775,Entire home/apt,137,3,5,2019-02-23,0.19,1,266 +16431249,Cozy apartment in heart of Manhattan!,16792201,Ileana,Manhattan,Kips Bay,40.74092,-73.97993,Entire home/apt,190,9,5,2019-04-21,0.20,1,0 +16435953,Bedroom in East Williamsburg!,107082851,Brian,Brooklyn,Williamsburg,40.70899,-73.94063,Private room,45,5,0,,,2,0 +16436865,One bedroom by Lincoln Center,91299100,Christopher,Manhattan,Upper West Side,40.77406,-73.98252,Entire home/apt,150,3,2,2017-04-24,0.07,2,0 +16437145,Dreamy 2BR in Architect's Brownstone,4965750,Jess & Hagan,Brooklyn,Bedford-Stuyvesant,40.68505,-73.93427,Entire home/apt,165,2,92,2019-06-28,2.97,1,127 +16437326,1 Bedroom Condo/Kitchen Wyndham Midtown 45 Resort*,69545883,Chayla,Manhattan,Midtown,40.75183,-73.97337,Private room,599,3,0,,,12,365 +16437333,quaint village apartment for up to 6,2488129,Jacqueline,Manhattan,Greenwich Village,40.7286,-73.99971,Entire home/apt,275,1,81,2019-06-25,2.64,1,258 +16438038,Cosy room in Williamsburg,40630037,Clara,Brooklyn,Williamsburg,40.70786,-73.94821,Private room,60,2,8,2017-10-03,0.26,1,0 +16438893,"Great Room In Brooklyn, The Park, 30 min to MH.",64042146,David,Brooklyn,Flatbush,40.65096,-73.96395,Private room,33,5,2,2017-06-12,0.06,1,0 +16439234,"Big, Bright 1 Bedroom b/w Columbia, City College",1877402,Anna,Manhattan,Harlem,40.81199,-73.95341,Entire home/apt,125,2,10,2018-05-06,0.36,2,0 +16439426,Spacious Room in Large 2 Bedroom Prewar Apartment,21136805,Kalim,Brooklyn,Crown Heights,40.66973,-73.95634,Private room,41,1,7,2019-02-15,0.23,1,45 +16439716,Lovely Bright Room in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71353,-73.96144,Private room,89,3,0,,,3,0 +16440192,Interfaith Retreats (Mother Theresa),16677326,Alex And Zeena,Manhattan,Chelsea,40.74837,-73.99639,Private room,85,1,70,2019-06-24,2.27,12,344 +16440383,"Cozy & Comfy Room in quiet Briarwood, Queens, NY",570442,Maria,Queens,Briarwood,40.71357,-73.81986,Private room,85,2,0,,,1,0 +16440392,NYC Style Comfort 1 bd w/Private Living Space,104497453,Mark,Brooklyn,Bedford-Stuyvesant,40.68606,-73.92356,Entire home/apt,150,2,7,2017-09-24,0.24,3,37 +16441625,"Sunny FULL FLOOR 2 bedroom in Greenpoint, Brooklyn",1239078,Michael,Brooklyn,Greenpoint,40.72607,-73.95777,Entire home/apt,150,2,30,2017-10-06,1.01,2,0 +16441995,Sunny & Sweet 1BR BK Apt - 25 mins to Manhattan,24092157,Julie,Brooklyn,Bedford-Stuyvesant,40.68004,-73.9215,Entire home/apt,143,2,8,2018-09-03,0.26,1,38 +16442395,Wyndham Midtown 45 - Great 1 BR Presidential Suite,107662519,Paul,Manhattan,Midtown,40.75182,-73.97354,Entire home/apt,400,3,0,,,1,0 +16442568,Big room near the park,107830761,Jonathan,Brooklyn,Flatbush,40.65203,-73.9628,Private room,36,6,1,2017-01-05,0.03,1,0 +16442660,Private Room in East Harlem,107830392,Nuries,Manhattan,East Harlem,40.79528,-73.9478,Private room,75,1,91,2018-05-28,2.95,1,188 +16442834,Modern 1-bedroom apartment in Fordham,2422554,Brais,Bronx,University Heights,40.86084,-73.90288,Entire home/apt,110,7,0,,,2,40 +16442999,Cozy Studio in the Heart of Manhattan,107833451,Helena & Greg,Manhattan,Kips Bay,40.74081,-73.98018,Entire home/apt,200,5,1,2017-01-02,0.03,1,0 +16443103,Sunny and new luxury studio,107836121,Svetlana,Manhattan,Midtown,40.76555,-73.98029,Entire home/apt,150,5,1,2017-10-16,0.05,1,0 +16443158,"Modern one bed room Apt in Times Square area, NYC",107836752,Kyunghee,Manhattan,Hell's Kitchen,40.76115,-73.99597,Entire home/apt,350,4,0,,,1,0 +16444320,Upper West Side - Two Private Rooms!,6897064,Paula,Manhattan,Upper West Side,40.78142,-73.98418,Private room,87,3,1,2017-01-02,0.03,2,0 +16444558,Upper West Side - Private Room!,6897064,Paula,Manhattan,Upper West Side,40.78138,-73.98318,Private room,50,3,0,,,2,0 +16448634,Centrally located East Village studio,49987,Meg,Manhattan,East Village,40.73245,-73.98873,Entire home/apt,130,2,1,2016-12-31,0.03,1,0 +16449169,Sunny spacious top floor of brownstone,344583,Daniel And Helene,Brooklyn,Bedford-Stuyvesant,40.68559,-73.95398,Entire home/apt,120,2,105,2019-06-20,3.42,1,22 +16449480,Entire 1BR Apt in Manhattanville,43490434,Corey,Manhattan,Harlem,40.82003,-73.95194,Entire home/apt,100,2,68,2019-06-11,2.33,1,9 +16449771,"Simple, Cozy Private Room Near Beach & Subway",36234811,Anna,Queens,Arverne,40.5921,-73.79285,Private room,55,1,28,2019-05-05,0.91,4,159 +16450351,Stunning views room for two!,14416504,StandOut,Manhattan,Financial District,40.70639,-74.00794,Private room,120,5,0,,,1,0 +16451278,Williamsburg Loft - Short or Long term Roommate,7988793,Andres,Brooklyn,Williamsburg,40.71996,-73.95567,Private room,59,30,1,2017-02-23,0.03,1,0 +16451907,Lg Park Slope apt with Washer/Dryer & Backyard,1223281,Annette,Brooklyn,Gowanus,40.66621,-73.99311,Entire home/apt,100,5,10,2018-12-28,0.41,1,0 +16453520,"Beautiful, cozy 1bedroom in Williamsburg",1647202,Katya,Brooklyn,Williamsburg,40.7083,-73.94933,Entire home/apt,100,1,37,2019-05-28,1.28,1,44 +16453837,Big Brooklyn Townhouse Sanctuary,1192630,Christina,Brooklyn,Crown Heights,40.67763,-73.94581,Entire home/apt,375,5,3,2018-08-11,0.12,2,22 +16454164,Beautiful and Quiet Morningside Heights 1BR,19659393,Cathy,Manhattan,Morningside Heights,40.80826,-73.96499,Entire home/apt,105,2,1,2017-01-02,0.03,1,0 +16454273,Entire 3rd floor of Brownstone at Prospect Park!,107933494,Josie,Brooklyn,Park Slope,40.66643,-73.97598,Entire home/apt,165,3,33,2019-06-13,1.15,2,305 +16454703,"Spacious Brooklyn, New York Retreat",107939984,J,Brooklyn,Fort Hamilton,40.61444,-74.02974,Entire home/apt,150,4,78,2019-07-04,2.60,1,29 +16455521,Cozy Studio on Roosevelt Island,96438921,Yanru,Manhattan,Roosevelt Island,40.7623,-73.95044,Entire home/apt,96,4,0,,,1,0 +16456120,Peaceful Room in Bedstuy Brooklyn,881222,Andreas,Brooklyn,Bedford-Stuyvesant,40.68576,-73.93223,Private room,70,3,0,,,1,0 +16458046,Big Bright Room ☼ Lower East Side,97513787,Daniel,Manhattan,Chinatown,40.71523,-73.99242,Private room,72,25,11,2019-02-17,0.37,5,323 +16462626,Hip 2 Bed in Williamsburg w/Private Backyard,108009985,Helma,Brooklyn,Williamsburg,40.70971,-73.95229,Entire home/apt,225,7,8,2017-06-24,0.26,1,0 +16463445,Beautiful Apt in UES,50549111,Laura,Manhattan,Upper East Side,40.77198,-73.95003,Entire home/apt,200,3,3,2019-01-01,0.10,1,0 +16463598,Penthouse HUGE balcony on Lex(1BR),50482164,Nina,Manhattan,Midtown,40.75993,-73.97054,Entire home/apt,145,1,51,2017-09-18,1.69,1,0 +16465524,Shared Room in Brooklyn,40871485,Ajay,Brooklyn,Bay Ridge,40.63821,-74.0273,Shared room,22,5,1,2017-01-14,0.03,1,0 +16465638,Modern Apartment in Bed-Stuy,794727,Martin,Brooklyn,Bedford-Stuyvesant,40.69022,-73.94298,Entire home/apt,60,4,11,2019-06-01,0.36,1,0 +16465690,Room in the heart of East Village,52243881,Andrea,Manhattan,East Village,40.7232,-73.98223,Private room,90,1,8,2018-01-02,0.26,2,0 +16466095,Comfy room at the heart of Williamsburg,19804292,Volkan,Brooklyn,Williamsburg,40.71199,-73.95581,Private room,80,3,0,,,1,0 +16466733,Spacious light tribeca loft!,25528796,Julia,Manhattan,Tribeca,40.71812,-74.0044,Entire home/apt,190,3,0,,,1,0 +16466804,Gorgeous Garden Apt on Stunning Park,1708922,Molly & Mike,Brooklyn,Greenpoint,40.72463,-73.94128,Entire home/apt,128,4,17,2019-05-27,0.67,1,9 +16466819,Grand Central / United Nations Beautiful Studio!!,1475015,Mike,Manhattan,Midtown,40.75072,-73.97023,Entire home/apt,83,30,0,,,52,325 +16467165,Studio Apartment in Prospect Lefferts Gardens,7579679,Martha,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96185,Entire home/apt,50,4,1,2017-05-03,0.04,1,0 +16467731,Beautiful 2 BR Apt. In Most Convenient Spot,108055585,Sue,Manhattan,Upper West Side,40.78864,-73.97683,Entire home/apt,300,2,9,2018-12-16,0.53,1,105 +16468001,Charming Upper West Private Floor,49208451,Alix,Manhattan,Upper West Side,40.7819,-73.98367,Private room,200,1,2,2016-12-29,0.06,1,0 +16468083,MODERN BEDROOM IN BROOKLYN! BUSHWICK! FUN AREA!,107948590,Mailee,Brooklyn,Bushwick,40.69452,-73.92322,Private room,59,1,1,2016-12-28,0.03,1,0 +16468214,Great pad in Brooklyn next to train,108061424,Kevin,Brooklyn,Crown Heights,40.66961,-73.94032,Private room,85,2,3,2018-01-02,0.12,1,0 +16469132,Sunny Private Room close to Central Park - Harlem,16273228,Sherian,Manhattan,East Harlem,40.79602,-73.94884,Private room,77,1,6,2017-07-20,0.23,1,0 +16469710,Nantucket Lounge of Upper East Side,108078909,Andrew,Manhattan,Upper East Side,40.77174,-73.95703,Private room,113,1,7,2017-12-31,0.23,1,0 +16471707,Bright and cozy room is Clinton Hill-Brooklyn,538300,Hubert,Brooklyn,Bedford-Stuyvesant,40.6965,-73.9601,Private room,54,5,12,2018-12-09,0.40,1,21 +16472789,Cozy bedroom in Long Island city.,26789852,Aendel,Queens,Long Island City,40.75502,-73.93163,Private room,50,4,125,2019-06-24,4.29,2,11 +16475309,Wonderful Apartment in the charming East Village,22024939,Abhishek,Manhattan,East Village,40.72163,-73.98291,Entire home/apt,450,1,0,,,1,0 +16475570,Spacious private room near LGA airport,58391491,Juel,Queens,East Elmhurst,40.76383,-73.87337,Private room,40,1,255,2019-06-22,8.33,5,154 +16475935,Master Bedroom in Clinton Hill,23700673,Yoni,Brooklyn,Clinton Hill,40.69377,-73.96229,Private room,100,3,0,,,2,2 +16476403,livingroom for rent queen size sofa bed or air bed,23095202,Victoria,Brooklyn,East Flatbush,40.63425,-73.94862,Shared room,45,2,0,,,2,88 +16476956,Newly renovated & Fully Furnished Super clean,51065605,Charles,Bronx,Port Morris,40.80743,-73.92971,Entire home/apt,115,5,7,2019-07-01,0.23,1,7 +16477061,Classic Upper East Side Manhattan,3428943,Travel Bug,Manhattan,Upper East Side,40.76906,-73.95369,Entire home/apt,119,7,0,,,1,0 +16478472,Designer 2-BR with Stunning Views in Williamsburg,108160091,Dasha,Brooklyn,Williamsburg,40.71002,-73.96114,Entire home/apt,218,30,25,2019-05-19,0.82,3,342 +16479076,Big private room in Manhattan,60344033,Chung Hao,Manhattan,Washington Heights,40.84916,-73.93759,Private room,35,5,0,,,1,0 +16479344,Large Studio Apt in Central Harlem (Entire Apt),2970729,Vera,Manhattan,Harlem,40.8116,-73.943,Entire home/apt,120,3,15,2019-07-02,2.06,1,15 +16479459,Huge Modern Ensuite. Convenient. Incredible view!,19442899,David,Manhattan,Hell's Kitchen,40.75545,-73.99547,Private room,119,7,11,2017-10-20,0.37,1,0 +16480273,Sunny Spring Sanctuary ~ 2 Bedroom Apt.,108188109,Thomas,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93776,Entire home/apt,100,3,75,2019-06-15,2.59,1,36 +16480421,Huge bedroom/private entrance/heart of Bushwick,62925063,Andrea,Brooklyn,Bushwick,40.70275,-73.93288,Private room,69,1,6,2019-04-13,0.33,2,83 +16480673,Charming 1 Bdr Apt in the Heart of West Village,19578509,Elodie,Manhattan,West Village,40.73409,-74.00621,Entire home/apt,190,2,24,2019-06-18,0.78,1,0 +16481602,Nice one bedroom apartment,85002860,Manuel,Manhattan,Morningside Heights,40.81387,-73.96205,Entire home/apt,110,10,0,,,1,0 +16485273,"Quiet, clean, comfortable place in upper Manhattan",1624568,Kristina,Manhattan,Inwood,40.8698,-73.92255,Entire home/apt,120,1,30,2019-07-01,1.10,1,35 +16485990,Beautiful 2 BR apartment next to restaurants/train,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97187,Entire home/apt,140,3,13,2019-06-23,1.09,2,141 +16486996,Apartment in Park Slope / Rooftop Access,36431705,Upinder,Brooklyn,Gowanus,40.6714,-73.99257,Private room,75,4,7,2019-05-26,0.23,1,253 +16487043,GREAT sunny 1 bedroom,42783841,Andy,Manhattan,East Village,40.72807,-73.97718,Entire home/apt,85,5,0,,,1,0 +16487077,"East 29th Street, Luxury 1bd",22541573,Ken,Manhattan,Midtown,40.74593,-73.98687,Entire home/apt,200,30,0,,,87,365 +16487157,Great room 3 min to train 25 min to Manhattan.,85499618,Ibi,Queens,Rego Park,40.72507,-73.86959,Shared room,110,1,5,2019-05-18,0.39,1,56 +16487823,2 Double Bed Hotel Style WYNDHAM MIDTOWN 45 *NYC*,69545883,Chayla,Manhattan,Midtown,40.75327,-73.97175,Private room,599,3,2,2017-05-27,0.07,12,365 +16487967,Private Room in 4BR Modern Manhattan Apartment,24752198,Brando,Manhattan,Upper West Side,40.80347,-73.96607,Private room,38,3,1,2017-01-30,0.03,1,0 +16488277,Your Fab Home Away from Home awaits You in NYC!!!!,59559158,Hello,Manhattan,Tribeca,40.72355,-74.01045,Entire home/apt,375,2,30,2019-06-09,1.03,1,38 +16488787,Newly Renovated Two Bedroom one bathroom,108272855,Lily,Brooklyn,Sunset Park,40.64212,-74.00259,Entire home/apt,90,2,108,2019-06-20,3.52,1,144 +16489149,2 BDRM PRESIDENTIAL LUXURY CONDO MIDTOWN 45 NYC *,69545883,Chayla,Manhattan,Midtown,40.75373,-73.97272,Private room,999,3,1,2017-09-11,0.05,12,365 +16489175,"Spacious LIC apartment, 10 min to Grand Central",108275969,John,Queens,Long Island City,40.74902,-73.9472,Private room,57,5,0,,,1,0 +16490625,Luxury and Design in a Cultivated Escape,15651084,Saya,Manhattan,Murray Hill,40.74917,-73.97549,Entire home/apt,200,2,0,,,1,0 +16490732,Entire 3rd Fl in Brownstone steps to Prospect Park,107933494,Josie,Brooklyn,Park Slope,40.66763,-73.97486,Entire home/apt,260,3,17,2019-05-29,0.60,2,309 +16490903,Spacious room within minutes to A express train!,10896884,Gaurav,Manhattan,Washington Heights,40.84798,-73.94092,Private room,99,2,0,,,1,0 +16491507,Extra Cozy Room in Center of Williamsburg,4033160,Brian,Brooklyn,Williamsburg,40.71404,-73.95783,Private room,98,1,3,2017-01-01,0.10,1,0 +16491731,1 TwinXL Bed Walk-To TIME SQUARE #ForReal,51830483,Nathan,Manhattan,Hell's Kitchen,40.76106,-73.98891,Private room,79,1,20,2019-02-19,0.70,2,151 +16493057,Artistic Union sq duplex + private roof top NYC,69398683,Ben,Manhattan,West Village,40.73795,-74.00139,Entire home/apt,175,2,7,2019-07-01,0.38,1,0 +16493084,Bedroom (KING) & private bath - Brand New & Modern,7427325,Jenia,Manhattan,Hell's Kitchen,40.76548,-73.99374,Private room,200,1,20,2017-06-29,0.69,2,0 +16496715,Sunny and Cozy Bedroom near Columbia University,11084524,Ruby,Manhattan,Morningside Heights,40.80439,-73.96263,Private room,50,3,0,,,1,0 +16497297,Glass factory loft,5379884,Jacob,Brooklyn,Greenpoint,40.73792,-73.95541,Private room,60,7,5,2019-05-31,0.16,1,0 +16498294,COZY BEAUTIFUL APT IN EAST VILLAGE,13312279,Marta,Manhattan,East Village,40.72638,-73.98464,Entire home/apt,125,4,17,2018-09-01,0.56,1,0 +16498335,Spacious private room Uptown NYC,17713747,Polly,Manhattan,Washington Heights,40.85365,-73.93298,Private room,60,15,1,2017-03-03,0.03,3,159 +16499274,Two bedroom apt in Williamsburg,13924244,Steven,Brooklyn,Williamsburg,40.71281,-73.94246,Entire home/apt,100,4,48,2019-05-14,2.16,1,6 +16499824,"Upper West 2BR, Met, Lincoln Center, Central Park",108367656,Lesya,Manhattan,Upper West Side,40.77547,-73.98154,Entire home/apt,225,4,10,2018-11-25,0.42,1,0 +16503382,Cozy Brownstone Apartment Near City,26495426,Aj,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95334,Entire home/apt,110,3,147,2019-07-06,4.79,1,88 +16504513,Gorgeous Industrial Loft in Prime Williamsburg,5179443,Vinay,Brooklyn,Williamsburg,40.72162,-73.96029,Entire home/apt,195,4,7,2018-11-11,0.23,1,0 +16504986,Sunny Bedroom In The Heart of Bushwick,108448918,Jermaine,Brooklyn,Bushwick,40.70076,-73.92878,Private room,55,3,13,2017-05-28,0.43,1,0 +16505722,"Spacious, bright studio near Prospect Park",15279171,Ashley,Brooklyn,Flatbush,40.6456,-73.95982,Entire home/apt,55,2,5,2017-08-28,0.16,1,0 +16506016,Harlem Monthly Rental True Two Bedroom 1 Bath,12145783,Enid,Manhattan,East Harlem,40.8006,-73.94115,Entire home/apt,99,30,3,2018-12-23,0.22,2,220 +16506121,Beautifully private furnished room,108464471,Jeremiah,Bronx,Longwood,40.8179,-73.91456,Private room,100,6,0,,,1,365 +16506579,Interfaith Retreats (Kirtan),16677326,Alex And Zeena,Manhattan,Chelsea,40.74788,-73.99615,Private room,85,1,108,2019-06-15,3.53,12,356 +16507002,LIC Room w/ Clean & Comfy Amenities + 6 Trains,100112994,Felix,Queens,Long Island City,40.7495,-73.93676,Private room,100,3,56,2019-07-01,4.48,2,42 +16507116,"THE REAL NYC EXPERIENCE! 20 MINS TO NY, QUEEN BED",51025844,Kdn,Manhattan,Inwood,40.86768,-73.92685,Private room,69,2,41,2019-06-23,1.34,3,180 +16507804,Spacious bedroom,1635983,Sheila,Bronx,Schuylerville,40.83248,-73.83203,Private room,46,4,43,2019-07-06,1.65,3,135 +16507990,Cozy Upper West Private Floor,108489381,Shane,Manhattan,Upper West Side,40.78296,-73.98284,Private room,165,1,1,2017-01-02,0.03,1,0 +16508394,Manhattan Two Bedroom Renovated Apt.,108494755,Denise,Manhattan,Inwood,40.86253,-73.9277,Entire home/apt,75,5,0,,,1,0 +16508710,Small Cozy Room,20414850,Han,Queens,Glendale,40.70419,-73.88558,Private room,40,2,2,2016-12-29,0.06,1,0 +16511493,You Deserve The Royal Treatment.,108433379,Percy,Bronx,Norwood,40.87692,-73.87427,Entire home/apt,130,5,0,,,1,89 +16513101,Cool Brooklyn Flat,23293950,Anthony,Brooklyn,Red Hook,40.67706,-74.01133,Entire home/apt,115,2,124,2019-07-05,5.04,1,275 +16513698,Very Big Manhattan Apartment very big Living Room,37994197,Sophia,Manhattan,Lower East Side,40.72068,-73.98574,Entire home/apt,349,3,76,2019-06-23,2.54,1,71 +16514343,"Modern, Beautiful Tribeca 2-Bedroom Loft",12554468,Eric,Manhattan,Tribeca,40.71845,-74.00932,Entire home/apt,259,2,116,2019-07-06,4.03,1,1 +16514760,Large 1BR Brooklyn Apt,45293248,Nicholas,Brooklyn,Williamsburg,40.70589,-73.95123,Entire home/apt,137,3,3,2017-09-04,0.10,1,0 +16514808,"Private Bedroom in Bushwick, BK",108561042,Cameron,Brooklyn,Bushwick,40.69487,-73.9263,Private room,40,10,0,,,1,0 +16514949,1 Bedr.Apt.(1-3 guests)+Wifi-Private Bath+Kitchen,99643776,Claire,Manhattan,Chinatown,40.71682,-73.99574,Entire home/apt,160,3,40,2019-07-03,1.35,2,124 +16515501,"Bright, Open, and Beautiful 2-Bedroom!",411560,Joel,Brooklyn,Williamsburg,40.70893,-73.94662,Entire home/apt,200,2,1,2017-08-28,0.04,1,0 +16517394,Private room in super location in lower Manhattan,23970798,Maria,Manhattan,Lower East Side,40.71265,-73.98711,Private room,52,14,4,2019-03-15,0.61,1,0 +16517710,UNIQUE & COZY STUDIO NEAR CENTRAL PARK,20354091,Ana,Manhattan,Upper East Side,40.76513,-73.96583,Entire home/apt,160,5,14,2019-06-30,1.22,1,92 +16518377,East Village 1BR Apt with all the amenities,3012457,Cody,Manhattan,East Village,40.7235,-73.97963,Entire home/apt,200,2,3,2018-07-10,0.16,1,0 +16518787,Spirited 2-Bed Sanctuary -- Entire Building!,1809640,Matt,Manhattan,Chinatown,40.71333,-73.99225,Entire home/apt,550,2,4,2017-09-04,0.14,1,0 +16519069,Cozy Private Room in Share Apartment near Midtown,108608482,Ivan,Manhattan,Kips Bay,40.74227,-73.97432,Private room,100,5,2,2017-07-16,0.07,1,0 +16519154,Sunny Modern Studio in Williamsburg,19480727,Helen,Brooklyn,Williamsburg,40.71013,-73.96517,Entire home/apt,175,5,6,2019-05-24,0.21,1,0 +16519911,Fabulous Art-Filled West Village Home (1BR),13584145,Monika,Manhattan,West Village,40.73308,-74.00203,Entire home/apt,275,2,4,2018-07-17,0.15,1,0 +16520111,Sunny and Modern Beach Bungalow,9091115,Cori,Queens,Far Rockaway,40.59495,-73.75771,Entire home/apt,100,4,14,2019-05-28,0.53,1,17 +16523132,Sunny Space in BK for your NYC stay,40146897,Eric,Brooklyn,Crown Heights,40.67356,-73.92131,Private room,60,2,29,2019-06-07,1.02,5,0 +16525573,Park Avenue 1 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74506,-73.98202,Entire home/apt,99,30,2,2019-05-13,0.11,31,132 +16526927,Charming cozy Studio - Discounted !!,71490429,Corrado,Brooklyn,Flatbush,40.64972,-73.96363,Entire home/apt,56,20,3,2018-07-15,0.10,1,0 +16527938,Beautiful room in a Sunny Apartment West Harlem!,76767234,Ac,Manhattan,Harlem,40.82128,-73.95835,Private room,100,2,0,,,1,40 +16528098,Cozy apartment in the heart of West Village,7244288,Eric,Manhattan,West Village,40.7326,-74.00824,Entire home/apt,180,3,46,2018-09-22,1.51,1,0 +16528572,East Williamsburg private room w/ backyard access,67925153,DeAnna,Brooklyn,Williamsburg,40.70509,-73.93322,Private room,45,1,8,2017-04-08,0.26,1,0 +16529413,Private Bedroom in Beautiful Central Williamsburg!,14624072,Louis,Brooklyn,Williamsburg,40.71753,-73.94946,Private room,48,2,1,2017-01-15,0.03,1,0 +16529755,Super cozy room !CONVENIENT,1863597,Nicole,Manhattan,Chelsea,40.74324,-73.99586,Private room,115,1,9,2019-04-10,0.34,1,172 +16529936,Sunny room in 2bed apt in East Harlem Fullsize bed,8366233,Helga,Manhattan,East Harlem,40.79372,-73.93445,Private room,50,14,33,2019-05-25,1.10,2,22 +16530373,"Master Suite in Lovely, Sunny DUMBO Apartment",1649108,Allie,Brooklyn,Navy Yard,40.70095,-73.98006,Private room,135,1,50,2019-05-30,1.87,3,29 +16530447,Bushwick Modern Apartment // 1 Block from Subway,22760867,Rachel,Brooklyn,Bushwick,40.69833,-73.9266,Entire home/apt,200,2,0,,,1,0 +16530772,Lovely room 20 min to Times Square & Central Park,39072326,Stephanie,Manhattan,Harlem,40.80999,-73.9415,Private room,80,2,94,2019-06-23,3.25,1,167 +16530947,Cozy Artsy Private Room in Williamsburg,71370032,Hannah,Brooklyn,Williamsburg,40.70827,-73.94749,Private room,80,1,0,,,1,0 +16530962,Studio Apartment UES - 12/31 - 1/14 Availablity,73643863,Lauren,Manhattan,Upper East Side,40.77675,-73.95206,Entire home/apt,95,3,0,,,1,0 +16533105,Queen bed-Close to Columbia U & Central Park,64471880,Jaleh,Manhattan,Harlem,40.80227,-73.95523,Private room,87,1,269,2019-06-29,8.79,2,65 +16533876,Charming spacious room in Williamsburg,11521252,Florence,Brooklyn,Williamsburg,40.7129,-73.94896,Private room,83,4,0,,,1,0 +16533954,Brownstone Jewel in Crown Heights,386263,Vineet,Brooklyn,Crown Heights,40.67673,-73.95311,Entire home/apt,171,3,77,2019-06-21,2.72,2,244 +16534037,1 BR at Wyndham Midtown 45 NYC,61463458,Gary,Manhattan,Midtown,40.75377,-73.97203,Private room,225,2,2,2018-07-22,0.16,2,0 +16534156,#1 Large sunny Studio 5 blocks from CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77251,-73.95431,Entire home/apt,100,30,26,2019-05-28,1.18,3,250 +16534157,Room for one or two in beautiful Midwood,48899796,Beth,Brooklyn,Midwood,40.62066,-73.95378,Private room,60,2,56,2019-05-26,1.83,2,42 +16534337,Spacious Private room in Charming Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71348,-73.93748,Private room,85,2,22,2019-06-07,0.72,3,36 +16534588,Studio unit at Wyndham Midtown 45 NYC,61463458,Gary,Manhattan,Midtown,40.75172,-73.97193,Private room,185,2,0,,,2,0 +16535746,"new penthouse w/ balcony, city+waterfront views",1363848,Matthew,Brooklyn,Park Slope,40.67129,-73.98537,Entire home/apt,249,5,18,2019-06-30,0.67,1,54 +16540563,Sun-filled Jewel in the Heart of Bushwick,108781530,Isaac,Brooklyn,Bushwick,40.69544,-73.92994,Private room,35,2,1,2018-09-17,0.10,1,0 +16541635,Spacious uws studio overlooking Central Park,77375497,Hannah,Manhattan,Upper West Side,40.79163,-73.96727,Entire home/apt,100,4,2,2017-09-03,0.09,1,0 +16542661,Parisian Apt in PRIME Carroll Gardens Brooklyn,72568223,Jane Jo,Brooklyn,Gowanus,40.68066,-73.99097,Entire home/apt,159,5,12,2017-09-10,0.41,1,0 +16542864,MANHATTAN STUDIO SUITE SLEEPS 2 GUEST,2677753,Regina,Manhattan,Midtown,40.76501,-73.98076,Private room,895,2,0,,,1,365 +16543032,❤ART of Chelsea | 1bd rm | Walk/bike everywhere!,60105727,Lee,Manhattan,Chelsea,40.74067,-74.00013,Entire home/apt,196,3,90,2019-06-29,3.09,2,186 +16543538,sunny private bedroom in Harlem,5959857,Lukasz,Manhattan,Harlem,40.82097,-73.95282,Private room,40,3,2,2017-02-18,0.07,1,0 +16543563,"Beautiful private room in East Village, NYC",5076469,Aaron,Manhattan,East Village,40.72558,-73.99025,Private room,95,7,2,2017-04-16,0.07,1,0 +16543637,"Huge Sunny Bedroom, 20 min to Times Square!",10460189,Michael,Queens,Sunnyside,40.74171,-73.9254,Private room,55,6,23,2019-01-06,0.76,1,0 +16544473,Stylish 1BR w/lounge or 2BR Vintage Artists Apt.,7824750,Donari,Brooklyn,Williamsburg,40.70725,-73.95271,Entire home/apt,122,7,43,2019-06-10,1.41,1,146 +16545297,Room close to Manhatan,36232131,Pablo,Queens,Woodside,40.74354,-73.90093,Private room,100,3,0,,,1,90 +16545876,Astoria Ditmars Bedroom,10028635,Valentina,Queens,Ditmars Steinway,40.77549,-73.90786,Private room,55,3,13,2019-04-25,1.13,1,36 +16546557,1 Person Only 1 Bdrm LES HugeDeck,2859516,Raymond,Manhattan,Lower East Side,40.72198,-73.98785,Private room,90,2,77,2019-01-28,2.50,2,68 +16546903,Astor Row Apartment in the Heart of Harlem <3,11699708,Jacqueline,Manhattan,Harlem,40.80931,-73.9412,Private room,75,1,81,2019-06-30,2.64,1,158 +16547073,East Williamsburg private 2 bedroom apt by L train,8515724,J,Brooklyn,Williamsburg,40.70894,-73.94142,Entire home/apt,200,1,4,2019-04-22,0.17,3,0 +16547704,Huge Gorgeous room in a Park View Apartment!,3290436,Hadar,Brooklyn,Flatbush,40.65352,-73.96191,Private room,70,2,0,,,2,177 +16552108,Cozy S. Williamsburg Landing Pad,795031,D M,Brooklyn,Williamsburg,40.70896,-73.95383,Entire home/apt,136,4,4,2018-08-15,0.15,2,0 +16553353,❤️❤️❤️ COZY Place by the Park for ONE ❤️❤️❤️,48983104,Lily,Queens,Middle Village,40.71991,-73.87439,Private room,50,2,47,2019-07-01,1.99,3,90 +16553544,Gr8 views in heart of Williamsburg,28642501,Jen,Brooklyn,Williamsburg,40.71734,-73.95952,Private room,210,2,0,,,1,0 +16554288,Cozy studio in historic Clinton Hill near trains,3543739,Ashley,Brooklyn,Clinton Hill,40.68513,-73.96789,Entire home/apt,95,3,0,,,1,0 +16554488,Lovely Brooklyn Room near train stop,39055365,Anaïs,Brooklyn,Bedford-Stuyvesant,40.68156,-73.91424,Private room,45,2,5,2017-02-20,0.17,1,0 +16554739,"Enormous, Beautiful Apartment near Prospect Park",26387193,Eman,Brooklyn,Flatbush,40.6528,-73.95805,Entire home/apt,69,1,0,,,1,0 +16555274,It is a two bedroom apartment,7229636,Ismael,Bronx,Concourse,40.8262,-73.92557,Entire home/apt,150,4,84,2019-07-03,2.87,1,93 +16555921,"Quiet Private room Queens Nyc,Midtown 30 mins",109012504,Rory,Queens,Maspeth,40.727,-73.88974,Private room,40,3,1,2017-01-18,0.03,1,0 +16556049,Private Bathroom and Cozy Bedroom in Brooklyn,78441349,Melissa,Brooklyn,East Flatbush,40.64638,-73.95065,Private room,90,1,30,2019-06-04,1.16,3,244 +16556211,"Cozy Bedroom in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.64863,-73.94948,Private room,80,1,27,2019-04-13,1.09,3,342 +16557384,Private Room in Cozy Harlem 2 Bedroom,38853591,Kyle,Manhattan,Harlem,40.82261,-73.95163,Private room,25,2,102,2019-06-18,3.33,1,99 +16557829,Upper Manhattan - Female only,109033183,Lucy,Manhattan,Inwood,40.86688,-73.92402,Private room,40,6,6,2018-08-12,0.20,1,0 +16558246,Cozy studio Upper East/Manhattan,109036773,Mila,Manhattan,Upper East Side,40.76794,-73.95712,Entire home/apt,220,8,15,2019-06-14,0.52,1,14 +16559041,Spacious Bedroom @ Convinience,80375387,Ash,Queens,Astoria,40.75888,-73.91747,Private room,81,1,3,2018-09-04,0.20,1,179 +16559061,Large Room in Manhattan,91744449,Ricardo,Manhattan,Harlem,40.81488,-73.94221,Private room,85,1,3,2017-03-25,0.10,1,0 +16560593,NYC NEW YEARS EVE - LUXURY CRASH PAD!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68186,-73.91188,Shared room,31,4,114,2018-10-11,3.72,3,0 +16560739,Spacious Master Bedroom 20 mins. from NYC,108786369,Kwana,Brooklyn,Bedford-Stuyvesant,40.6933,-73.9541,Entire home/apt,130,3,8,2017-05-29,0.27,1,0 +16561990,Cozy one bedroom in Upper East Side Manhattan UES,16860700,Lu,Manhattan,Upper East Side,40.77628,-73.95322,Entire home/apt,91,1,0,,,1,0 +16565202,The Rainbow Room on Prospect Park.,24690329,Victoria,Brooklyn,South Slope,40.66045,-73.98057,Private room,75,2,25,2018-08-26,1.06,1,0 +16565435,Light-filled South Slope Nest!,3291579,Rebecca,Brooklyn,Sunset Park,40.66156,-73.99318,Entire home/apt,73,2,48,2019-06-21,1.86,1,2 +16567425,Tidy artists' apartment,17227959,Dustin,Brooklyn,Crown Heights,40.66404,-73.95141,Entire home/apt,56,4,3,2017-08-23,0.10,1,0 +16568106,"Quiet South Slope house w/ piano, porch & garden.",7574029,Tracey,Brooklyn,Sunset Park,40.65917,-73.99137,Entire home/apt,175,1,17,2018-08-26,0.56,1,0 +16568164,Wonderful Cozy Private Room By Central Park,43642470,Simona & Jon,Manhattan,East Harlem,40.79732,-73.94873,Private room,47,2,0,,,1,0 +16568191,Large 1 room with bed in the heart of manhathan,109141116,Adil,Manhattan,Murray Hill,40.74604,-73.97495,Private room,80,7,0,,,1,0 +16568252,"Huge Fort Greene Loft, Prime!",327489,Anthony,Brooklyn,Fort Greene,40.69269,-73.9737,Entire home/apt,125,2,8,2019-06-30,0.31,1,185 +16568275,"BEST DEAL, PERFECT LOCATION in Downtown, Manhattan",109142193,Liang,Manhattan,Greenwich Village,40.73083,-73.9943,Private room,69,4,0,,,1,0 +16569426,Cosy 1 bed basement Apartment,109155011,Pearline,Brooklyn,East Flatbush,40.64342,-73.94037,Entire home/apt,75,1,82,2019-06-09,3.16,1,179 +16569554,Bright room Williamsburg off Bedford,1535167,Danielle,Brooklyn,Williamsburg,40.71681,-73.96296,Private room,69,2,10,2019-01-01,0.34,1,0 +16570490,Sunny Room in Clinton Hill Brooklyn,11935009,Brandon,Brooklyn,Clinton Hill,40.68118,-73.96126,Private room,60,2,15,2018-06-29,0.50,1,0 +16570631,Cozy room in MASSIVE bushwick house,11586393,Jared,Brooklyn,Bushwick,40.68863,-73.90874,Private room,80,1,1,2017-01-01,0.03,1,66 +16570975,Quiet room in apt Williamsburg 10 mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71661,-73.9551,Private room,60,2,27,2019-03-16,1.02,2,0 +16570978,JFK AIRPORT 3-BEDROOM LUXURY APT WITH FREE PARKING,107053757,Neena,Queens,Richmond Hill,40.6887,-73.82572,Entire home/apt,225,1,69,2019-07-07,2.34,1,329 +16575174,1 Bedroom Escape in Brooklyn Heights,60591318,Michelle,Brooklyn,Brooklyn Heights,40.693,-73.99374,Entire home/apt,185,4,0,,,1,0 +16575852,Futon to crash on New Year in NY,42076125,Atif,Queens,Hollis,40.71764,-73.76402,Shared room,120,1,0,,,2,365 +16577736,LARGE BEAUTIFUL QUIET ROOM IN 2 STORY TOWNHOUSE,5281237,Jonathan,Queens,Astoria,40.77267,-73.92871,Private room,80,3,23,2019-06-14,0.76,2,244 +16578092,#2 Ideal Williamsburg - L trian Lorimer Stop!,46660053,Ploy,Brooklyn,Williamsburg,40.71368,-73.9536,Private room,55,4,43,2019-05-17,1.41,3,58 +16578112,City Life Minus The City Price - Flatbush Brooklyn,22694337,Emani,Brooklyn,Flatbush,40.6485,-73.95439,Private room,36,1,18,2019-06-13,0.79,1,154 +16578780,Historical Addisleigh Park NYC,31685194,Gerceida,Queens,St. Albans,40.69472,-73.77109,Private room,55,2,34,2019-06-02,1.16,1,59 +16578826,"Harlem ""Hostel"" for Single Travelers",17078225,Sarah-Jane,Manhattan,Harlem,40.81516,-73.94829,Shared room,55,2,36,2019-06-30,1.28,2,88 +16579236,Chambre idéale couple ou amis - Proche Manhattan,24118830,Constanza,Brooklyn,Williamsburg,40.70825,-73.94932,Private room,80,2,5,2017-06-06,0.18,1,0 +16581779,"2BR ""Café Brooklyn"" w/private Courtyard in BedStuy",109306113,Chad,Brooklyn,Bedford-Stuyvesant,40.68488,-73.92706,Entire home/apt,149,1,39,2019-06-23,2.87,1,75 +16582351,BEAUTIFUL Master Bedroom - 20 mins to Manhattan!,1649524,Peter,Brooklyn,Prospect Heights,40.67328,-73.96415,Private room,41,1,0,,,1,0 +16584033,Beautiful 2 bedroom apt in Brownstone Brooklyn,4965665,Vanessa,Brooklyn,Clinton Hill,40.68855,-73.96476,Entire home/apt,95,4,0,,,1,156 +16584878,Modern and bright duplex in central Cobble Hill,11704017,Daniel,Brooklyn,Cobble Hill,40.6858,-73.99977,Entire home/apt,350,30,2,2017-11-04,0.09,1,156 +16585566,Quiet Clean Private Bedroom Brooklyn,6600911,Cristina,Brooklyn,Bensonhurst,40.61336,-73.9857,Private room,35,3,11,2019-06-08,0.38,2,79 +16585605,Room 202,1236663,T,Manhattan,Harlem,40.81847,-73.93957,Private room,50,1,105,2019-07-05,3.68,1,25 +16586422,White space with 0min to bus stop,17997408,Nancy,Brooklyn,Clinton Hill,40.69482,-73.96419,Shared room,50,1,197,2019-06-22,6.54,2,19 +16586785,Williamsburg Penthouse w/ Private Roof,3781090,Jamil,Brooklyn,Williamsburg,40.70724,-73.94379,Entire home/apt,100,2,36,2019-05-27,1.19,1,0 +16586966,Huge quiet modern oasis,9398673,Tal,Brooklyn,Prospect Heights,40.67915,-73.96913,Entire home/apt,150,2,2,2018-02-15,0.11,1,0 +16587776,Taaffe Loft,33674633,Michael,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95877,Private room,55,1,0,,,1,0 +16590264,Pretty modern 3-B APT near Everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80007,-73.96524,Entire home/apt,190,1,4,2018-10-24,0.26,6,337 +16591428,"Sunny Modern Apartment with Terrace, Near Subway",2988712,Sasha,Bronx,Mount Hope,40.85188,-73.90321,Entire home/apt,60,90,5,2018-11-03,0.20,7,94 +16595351,Manhattan - Upper East Side - Entire Home,69406365,Yoko,Manhattan,Upper East Side,40.77102,-73.94671,Entire home/apt,80,1,1,2017-01-16,0.03,2,0 +16598387,"Sleeps6+PRIV.TERRACE+laundry,Trains+BAM&Barclays",8696190,Tee,Brooklyn,Fort Greene,40.6869,-73.97454,Entire home/apt,380,3,11,2019-06-30,0.37,1,22 +16599323,"Studio loft, Cosy and charming with rooftop view",109498113,Sammy & Chris,Brooklyn,Bushwick,40.69964,-73.93729,Entire home/apt,125,2,103,2019-07-07,3.57,1,185 +16599472,Lavish studio in Downtown Manhattan,9599840,Danny,Manhattan,Financial District,40.70493,-74.01036,Entire home/apt,235,2,123,2019-07-02,4.05,1,235 +16601748,"Queen Room w/ Memory Foam, In-room TV and Rooftop",94522062,Christine,Manhattan,East Village,40.7229,-73.98476,Private room,67,1,6,2019-05-27,0.20,1,9 +16601801,Spacious One Bedroom in Heart of West Village,10075380,Mike,Manhattan,West Village,40.73233,-74.00329,Entire home/apt,232,5,5,2019-06-14,0.17,1,13 +16601841,Great for La Guardia airport guests.,109526714,Aleida,Queens,East Elmhurst,40.76224,-73.8766,Private room,40,1,128,2019-07-03,4.36,2,145 +16603017,Sophisticated Retreat in Spacious Manhattan Apt,23957491,Elka,Manhattan,Washington Heights,40.8568,-73.93162,Private room,96,1,87,2019-06-12,2.97,1,83 +16603730,Luxury High-Floor Oversized Studio w/ Park View,4494498,Micah,Manhattan,Harlem,40.80371,-73.94377,Entire home/apt,225,3,0,,,1,0 +16603823,"Luxury bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80288,-73.96396,Private room,120,5,11,2019-05-23,0.76,2,134 +16604023,Rustic Modern Brooklyn Apartment,14577537,Tom,Brooklyn,Bedford-Stuyvesant,40.6915,-73.92881,Entire home/apt,120,30,77,2019-04-27,2.53,2,0 +16604112,Cozy Private room in the heart of Jamaica New york,109527682,Stella,Queens,Jamaica,40.71107,-73.78429,Private room,72,1,10,2019-06-30,0.54,1,175 +16604568,Park Slope. The best community in Brookyn NY.,41878998,Ruth,Brooklyn,South Slope,40.66812,-73.98595,Private room,90,3,3,2019-04-08,0.40,1,5 +16604913,Affordable cozy room rental in Flushing,23120620,Jackie,Queens,Flushing,40.7383,-73.80867,Private room,65,1,9,2019-05-18,0.72,5,365 +16607054,Huge Bedroom in Historic Harlem!,89715765,Michael,Manhattan,Harlem,40.81378,-73.95152,Private room,66,3,0,,,1,0 +16608718,"Largest room, warehouse loft, prime Williamsburg",17371775,Octavio,Brooklyn,Williamsburg,40.71947,-73.96255,Private room,41,10,3,2018-08-17,0.10,1,0 +16612424,Artstuy,4878363,Jessie,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94478,Private room,30,1,13,2019-04-21,0.45,2,268 +16613219,Landmarked 1899 Brownstone with private garden,603592,Brad,Brooklyn,Bedford-Stuyvesant,40.68392,-73.93123,Entire home/apt,175,4,14,2017-09-05,0.50,1,0 +16613394,"Cozy 1Br Apartment, Entire Place.",109653516,Joseph,Queens,Sunnyside,40.74201,-73.92096,Entire home/apt,100,2,91,2019-06-16,3.08,1,65 +16613506,Upscale King Bedroom Great Neighborhood in NYC,80601038,Shelley,Queens,Forest Hills,40.72645,-73.84079,Private room,100,1,34,2019-06-23,1.38,2,87 +16613747,"Sunny, Clean, Nice bedroom available in Bushwick",29096,Jonathan,Brooklyn,Bushwick,40.70677,-73.92043,Private room,65,3,91,2019-06-23,3.50,1,294 +16613993,COZY Bedroom in the heart of the Lower East Side!,109660521,Isaac,Manhattan,Civic Center,40.71391,-74.00489,Private room,70,1,11,2017-11-05,0.45,1,0 +16614389,Newly Renovated Bedroom in Bushwick/Ridgewood,18151522,Venice,Queens,Ridgewood,40.70538,-73.91322,Private room,73,1,0,,,1,0 +16614713,Brooklyn Refuge-Private Bedroom w/ Sitting Room,109667882,Hildegaard,Brooklyn,South Slope,40.66489,-73.9805,Private room,80,2,35,2019-06-23,1.16,1,88 +16616320,Trendy Artist Loft in Bushwick/East W'Burg,3932715,Jason,Brooklyn,Williamsburg,40.70267,-73.9364,Entire home/apt,160,4,68,2019-06-03,2.26,1,16 +16616410,Vacation in Astoria,62716661,Nelli,Queens,Astoria,40.7566,-73.91974,Private room,69,1,0,,,1,0 +16616522,Large Apartment near Central Park up to 4 people!,61090067,Justyna,Manhattan,East Harlem,40.79465,-73.94021,Entire home/apt,180,5,33,2019-07-01,1.18,1,35 +16616853,Brooklyn Brownstone - Chic Garden Apartment,16392320,Oscar,Brooklyn,Bedford-Stuyvesant,40.67864,-73.9444,Entire home/apt,199,2,122,2019-06-16,4.06,1,70 +16617217,LUXURY Flatiron Highrise 1 BR/1 BA,107883536,Tommy,Manhattan,Midtown,40.74473,-73.99005,Entire home/apt,159,2,0,,,1,0 +16617542,Peaceful Bedroom with private balcony in LES,19053159,Nikki,Manhattan,Lower East Side,40.71875,-73.98349,Private room,60,2,2,2018-03-21,0.12,1,0 +16617640,The Paris Room. Énorme! Private ROOF access!,47027510,Tucker,Brooklyn,Bushwick,40.69102,-73.90526,Private room,49,2,38,2019-06-22,2.00,1,9 +16617893,Modern Loft Style Apt in trendy Brooklyn,6562818,Salvatore,Brooklyn,Greenpoint,40.73693,-73.95507,Entire home/apt,94,3,28,2019-05-05,0.93,1,11 +16617969,"Geek-Chic Full Apt in Sugar Hill, Manhattan!",7005192,James,Manhattan,Harlem,40.83088,-73.945,Entire home/apt,77,47,5,2018-10-12,0.18,1,188 +16618049,"Sunny Fun Bushwick BR w/Yard, ~175ft to Subway!",40883799,Amos,Brooklyn,Bushwick,40.70476,-73.92195,Private room,56,1,69,2019-06-23,2.35,3,87 +16618113,Private Room in 2BR in Hip East Williamsburg,2887101,Kerry,Brooklyn,Williamsburg,40.70762,-73.94221,Private room,47,3,2,2017-01-17,0.07,1,0 +16619241,"Cozy Studio Apartment in Queens, NY",25355233,Roseann,Queens,Springfield Gardens,40.68132,-73.75403,Private room,89,1,220,2019-06-28,7.23,1,319 +16619861,"Cozy Space-Sunny Studio- Flatbush, Brooklyn",109729836,Cindy,Brooklyn,Flatlands,40.62562,-73.94255,Entire home/apt,95,3,4,2018-04-16,0.18,1,0 +16620082,"Huge room, sunlight, plants, books",109733032,Ian,Brooklyn,Williamsburg,40.70436,-73.94123,Private room,60,2,14,2019-06-29,0.58,1,3 +16620235,"Full floor, Newly renovated, Brooklyn brownstone",109734523,Todd & Ashta,Brooklyn,Bedford-Stuyvesant,40.68519,-73.94176,Entire home/apt,125,2,111,2019-06-24,3.67,1,255 +16620607,Spacious and Modern 2 Bedroom Apartment,109725962,Erika,Brooklyn,Bushwick,40.68994,-73.91556,Entire home/apt,11,2,113,2019-06-22,3.86,1,261 +16625310,Lovely BedStuy apartment w/ young professionals.,6025804,Vero,Brooklyn,Bedford-Stuyvesant,40.6849,-73.9289,Private room,29,1,0,,,1,0 +16627548,"""Desirable Deal on The Park""",2300134,J,Manhattan,Harlem,40.79798,-73.95052,Private room,80,1,139,2019-06-24,4.59,2,0 +16627834,"☼ Sunny, Charming Brooklyn Apt - Next to Train ☼",2970413,Milan,Brooklyn,Crown Heights,40.6714,-73.95547,Private room,75,2,75,2019-06-25,2.56,1,275 +16628617,Entire 1-bed home in midtown west,46068130,Laura,Manhattan,Hell's Kitchen,40.76585,-73.98507,Entire home/apt,175,3,15,2017-07-27,0.57,2,0 +16629299,"""Oasis on The Park""",2300134,J,Manhattan,East Harlem,40.79656,-73.94818,Private room,85,1,148,2019-06-23,4.96,2,46 +16629401,"Cozy Studio Apt, 1 train stop from Manhattan",107471514,Carla,Brooklyn,Downtown Brooklyn,40.69467,-73.98339,Entire home/apt,123,7,0,,,1,0 +16630483,"SPACIOUS, trendy Flatiron Apt-Traveler's Delight!",107459717,Matt,Manhattan,Kips Bay,40.73945,-73.98273,Entire home/apt,144,2,2,2018-12-16,0.08,1,0 +16630594,Private room with private entrance in Greenpoint!,51024366,Marie,Brooklyn,Greenpoint,40.73824,-73.9537,Private room,99,2,6,2019-05-18,0.27,1,364 +16634357,Huge 2 Bed Apt with Private Bathrooms in UES!,109886922,Michael,Manhattan,Upper East Side,40.77486,-73.95296,Entire home/apt,899,30,6,2018-05-18,0.23,1,89 +16634459,Cozy Shared Apartment!,109162710,Brandon,Manhattan,Harlem,40.81367,-73.93809,Private room,141,1,41,2019-05-27,1.61,1,334 +16634534,3A. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80715,-73.93834,Private room,50,1,98,2019-04-15,3.25,10,350 +16634642,Room in Greenpoint,15225114,Maren,Brooklyn,Greenpoint,40.73362,-73.95983,Private room,75,2,0,,,1,0 +16636214,Private basement bedroom with queen bed,109908957,Natalia & Gustavo,Brooklyn,East Flatbush,40.64798,-73.94492,Private room,50,7,7,2019-05-18,0.23,2,348 +16637954,Friendly place for most suitable for Bangladeshis,109931171,Manzoor,Queens,Richmond Hill,40.70162,-73.82349,Private room,70,1,0,,,1,0 +16640455,Beautiful Apt in Brooklyn w/ Private roof,27102828,Monica,Brooklyn,Bedford-Stuyvesant,40.68693,-73.94579,Entire home/apt,50,3,0,,,1,0 +16644223,Private Bedroom w/ En Suite in Shared Apartment,7921167,Justin,Brooklyn,Park Slope,40.67937,-73.98126,Private room,40,7,0,,,1,0 +16644599,Beige Room in Rego Park,48866061,Iso,Queens,Rego Park,40.72755,-73.86199,Private room,35,1,131,2019-06-06,4.33,1,294 +16646872,Charming 2BR with Backyard (15 Mins to Manhattan!),107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93088,Entire home/apt,169,2,54,2019-06-21,1.92,3,259 +16647489,"Bohemian BK Pad with prvt bkyd, great for toddlers",6865666,Ana,Brooklyn,Williamsburg,40.71151,-73.95142,Entire home/apt,78,10,0,,,1,0 +16648338,"Airy, Open South Williamsburg Apartment",110026778,Sanja,Brooklyn,Williamsburg,40.70981,-73.96781,Private room,119,4,18,2018-10-29,0.59,1,0 +16649739,Renovated 2 Bedroom Apartment,110049608,Virginia & Steve,Brooklyn,Midwood,40.61535,-73.95351,Entire home/apt,115,2,80,2019-06-22,2.90,1,68 +16649773,2 ROOMS: Bedroom & Study + Priv. Bath - CP North,110050850,Cecil,Manhattan,Harlem,40.8012,-73.95589,Private room,115,2,27,2019-06-05,0.94,1,363 +16650612,"CHIC, UPSCALE STUDIO-MIDTOWN, PERFECT LOCATION!",24805629,Joi,Manhattan,Hell's Kitchen,40.76486,-73.98682,Entire home/apt,200,2,6,2017-08-27,0.20,1,0 +16651348,1 bedroom apt with garden in Red Hook Brooklyn,6074181,Terumi,Brooklyn,Red Hook,40.67575,-74.01183,Entire home/apt,93,2,37,2019-06-21,1.32,1,222 +16651519,"Newly renovated 1BR apartment, 25 min to Manhattan",3019912,Michael And Meredith,Brooklyn,Sunset Park,40.65944,-73.98898,Entire home/apt,160,30,36,2019-06-10,1.21,1,53 +16651879,Minimalist Vegan Room in Columbus Circle,31892037,Harrison,Manhattan,Hell's Kitchen,40.76636,-73.98574,Private room,100,1,1,2019-05-05,0.46,1,156 +16652059,Cosy private room in modern sunny Williamsburg apt,27267477,Basile,Brooklyn,Williamsburg,40.70987,-73.9472,Private room,65,4,10,2018-10-13,0.41,1,0 +16657247,1A. Private Rm in guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80545,-73.93838,Private room,64,1,103,2019-07-02,3.40,10,364 +16659292,Spacious 1 bedroom apt in Bkln w/ outdoor space,17085442,Albert,Brooklyn,Fort Greene,40.68891,-73.97284,Entire home/apt,95,1,85,2019-06-25,2.93,1,0 +16659337,Spacious apartment in delightful Cobble Hill,9870527,Josh,Brooklyn,Boerum Hill,40.6862,-73.98906,Entire home/apt,220,2,17,2019-06-19,0.66,1,167 +16662770,Lovely Bedroom in Beautiful Brooklyn Apartment!,42682752,Katharine,Brooklyn,Cobble Hill,40.68844,-73.99142,Private room,70,2,38,2019-05-26,1.33,3,0 +16662964,"Cute 1 Bdrm Apt, 10 minutes from Manhattan",23820907,Hifza,Queens,Long Island City,40.75699,-73.93499,Entire home/apt,125,5,0,,,1,0 +16663520,Brooklyn's Bed & Breakfast (3 BR),110198200,Athelstan,Brooklyn,Prospect-Lefferts Gardens,40.66034,-73.95981,Entire home/apt,225,2,64,2019-07-03,2.24,2,337 +16663731,Private bedroom in Williamsburg industrial loft,2378621,Julie,Brooklyn,Williamsburg,40.70431,-73.93273,Private room,54,12,0,,,1,0 +16664045,ONLY 4.4 MILES TO MIDTOWN MANHATTAN,54438083,Charles,Queens,Maspeth,40.72344,-73.91052,Entire home/apt,184,2,51,2019-06-22,1.72,3,300 +16664669,Brooklyn's Bed & Breakfast (2 BR),110198200,Athelstan,Brooklyn,Prospect-Lefferts Gardens,40.66077,-73.96004,Entire home/apt,175,4,6,2018-10-09,0.23,2,337 +16665181,Romantic hide out in brooklyn,110218367,Amy,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92981,Private room,69,2,90,2019-06-30,3.10,1,106 +16670882,Brooklyn 1 bedroom near it all,12096316,Kris,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94938,Entire home/apt,175,7,4,2018-06-14,0.13,1,89 +16673329,Cozy brownstone studio in the heart of Harlem!,16400950,Farrah,Manhattan,East Harlem,40.80674,-73.94146,Private room,91,1,4,2017-05-31,0.14,1,0 +16673377,Stunning bedroom in the best neighborhood of NYC,13001035,Montserrat,Manhattan,Midtown,40.756,-73.97078,Private room,122,3,19,2018-11-24,0.67,1,0 +16673626,Modern 1 bed/duplex southslope Brooklyn,17753630,Erin,Brooklyn,Sunset Park,40.65948,-73.99243,Entire home/apt,150,7,0,,,1,0 +16673954,Charming West Village Brownstone w/Private Terrace,10437339,Ro,Manhattan,West Village,40.73898,-74.00415,Entire home/apt,250,5,10,2019-06-13,0.37,2,198 +16674233,Huge Comfy Room,8254680,Juliette,Brooklyn,Bushwick,40.70163,-73.9227,Private room,49,2,0,,,1,0 +16674839,Cozy East Village Apartment Room.,110326109,Jenna,Manhattan,East Village,40.72423,-73.97885,Private room,75,1,0,,,1,0 +16675507,Penthouse w/ private Manhattan skyline view deck!,56735326,Christi,Brooklyn,Greenpoint,40.72347,-73.94039,Entire home/apt,125,3,4,2017-07-05,0.13,1,0 +16675965,Large and cosy apartment - Upper east!,13257873,Maria,Manhattan,Upper East Side,40.77672,-73.95559,Private room,120,3,14,2019-06-16,0.53,1,36 +16677170,Sunny Chelsea Oasis,59163247,Eric,Manhattan,Chelsea,40.74503,-73.99922,Entire home/apt,233,2,92,2019-06-27,3.08,1,219 +16677256,Renovated 1BR Penthouse Oasis In Brownstone,110358650,Rocco,Manhattan,Harlem,40.80767,-73.95127,Entire home/apt,220,3,56,2019-06-07,2.01,1,256 +16677358,"Sunny room in Sunset Park, Brooklyn",25311040,Keisuke,Brooklyn,Sunset Park,40.64364,-74.01206,Private room,32,7,0,,,1,0 +16677866,Nice Private Studio Apartment,107296819,Alexandra,Manhattan,East Harlem,40.79747,-73.93559,Entire home/apt,105,1,124,2019-06-24,4.18,3,0 +16678104,"Wyndham Midtown: E 45th St., NYC",3843799,BNB-Resorts By RC,Manhattan,Midtown,40.75382,-73.97192,Entire home/apt,165,3,4,2017-11-07,0.18,1,0 +16678888,Peaceful Spacious 1 Bdrm Apt in Carroll Gardens,1380312,Shari,Brooklyn,Carroll Gardens,40.67735,-73.99706,Entire home/apt,175,7,17,2019-03-24,0.58,1,0 +16685971,Great 1 bedroom Apartment,5855892,Vasili,Manhattan,Washington Heights,40.8531,-73.93872,Entire home/apt,75,2,0,,,1,0 +16686651,Two Charming Bedrooms in the Lower East Side,53099839,Avery,Manhattan,Lower East Side,40.71919,-73.99208,Private room,200,1,0,,,1,0 +16687158,Large Private Apartment in Clinton Hill,68302204,Samuel,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95751,Private room,100,5,4,2018-04-22,0.14,1,0 +16687716,Gorgeous Large Room near LGA,14730722,Omar £ Jacqueline,Queens,East Elmhurst,40.76441,-73.88943,Private room,90,2,9,2018-09-02,0.34,1,0 +16688119,Stunning Brooklyn Condo,31429300,Cindy,Brooklyn,Greenpoint,40.73677,-73.95418,Entire home/apt,109,90,1,2017-04-10,0.04,1,35 +16688892,East Williamsburg Cozy Studio,110478816,Robert,Brooklyn,Williamsburg,40.71237,-73.93899,Entire home/apt,95,2,13,2018-05-16,0.43,1,0 +16689593,Private room in Williamsburg 15 mins from city,2600209,Ed,Brooklyn,Williamsburg,40.71708,-73.94278,Private room,60,7,0,,,1,0 +16690484,Fort Greene bungalow,43272616,Emi,Brooklyn,Fort Greene,40.69701,-73.97524,Private room,75,2,0,,,2,0 +16690627,"Beautiful urban sanctuary in Park Slope, Brooklyn",6057126,Jac,Brooklyn,Park Slope,40.68057,-73.97722,Entire home/apt,175,30,3,2019-05-18,0.87,1,321 +16690832,1 private room in a spacious+quiet Park Slope apt,110522157,Noam,Brooklyn,Park Slope,40.66825,-73.98432,Private room,46,3,4,2018-12-31,0.27,1,72 +16691242,1 bedroom available in heart of east village,69776478,Emily,Manhattan,East Village,40.72787,-73.9792,Private room,50,7,0,,,1,0 +16691826,Cozy and Cute 1 bdrm in perfect Midtown location,60539147,Kate,Manhattan,Hell's Kitchen,40.76468,-73.9868,Entire home/apt,98,30,4,2018-02-02,0.14,1,0 +16692402,2BEDS or DOUBLE BED (KINGSIZE) / PRIVATE BATHROOM,32107612,Eugon And David,Brooklyn,Bushwick,40.68886,-73.91906,Private room,95,5,65,2019-06-29,2.18,1,60 +16693621,Woodside private room for visitors!,49224450,Dongho,Queens,Woodside,40.74271,-73.9046,Private room,34,3,1,2017-01-18,0.03,1,0 +16693953,EXQUISITE TRANQUIL QUIET ROOM IN NYC,5281237,Jonathan,Queens,Astoria,40.77255,-73.93023,Private room,79,3,26,2019-06-22,0.93,2,144 +16697657,"NYMT60-1 LUXURY! Studio,Cozy,Gym,doorman st-6",3507099,MyCity,Manhattan,Hell's Kitchen,40.76242,-73.98813,Entire home/apt,130,30,6,2019-06-17,0.38,2,335 +16701051,Tribeca one bedroom apt - jan 13-30th,110629411,T,Manhattan,Chinatown,40.71471,-73.9993,Entire home/apt,100,7,0,,,1,0 +16701087,Your stay at NYC Artist Home,54548232,Anna,Manhattan,Harlem,40.82621,-73.95104,Private room,75,2,80,2018-12-03,2.69,2,305 +16703749,Clean and Cozy room in Central Manhattan,30656279,Jill,Manhattan,Hell's Kitchen,40.76738,-73.98565,Private room,61,30,2,2018-09-10,0.07,4,121 +16704118,Prime location 15-20mins to manhattan.nearall.C.,59974573,Taka,Queens,Elmhurst,40.73734,-73.87215,Entire home/apt,99,4,50,2019-06-25,1.85,2,60 +16706521,Entire studio Apartment in New York City.,110686573,Roger,Manhattan,West Village,40.72999,-74.00475,Entire home/apt,110,5,9,2018-05-20,0.39,1,0 +16706758,Private midtown Apt w/ shared bath,10585694,Roy,Manhattan,Midtown,40.75369,-73.96679,Private room,99,2,21,2019-03-18,0.70,1,3 +16706875,Spacious and cozy room 25minutes from Manhattan,1938828,Shay,Brooklyn,East Flatbush,40.64836,-73.94547,Private room,42,13,22,2019-05-25,0.75,3,267 +16708143,Bright room with full size bed.,52059111,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.9592,Private room,50,1,1,2017-03-06,0.04,1,0 +16708692,2 Bedroom Apt.-30 secs from C train,110708643,Stephen,Brooklyn,Bedford-Stuyvesant,40.67983,-73.92121,Entire home/apt,82,2,80,2019-05-26,2.76,1,28 +16709467,2 Bedroom Loft in Clinton Hill,4359511,Chris,Brooklyn,Bedford-Stuyvesant,40.69089,-73.95854,Entire home/apt,206,2,13,2019-07-02,1.25,1,116 +16709795,"Beautiful Upper East Side 1 BR Apt, Charming!",19466874,Sheri,Manhattan,Upper East Side,40.77327,-73.9547,Entire home/apt,120,3,0,,,1,0 +16710016,Newly renovated 1 bdrm right by trains. Entire apt,2431149,Delphina,Brooklyn,Crown Heights,40.67024,-73.93406,Entire home/apt,69,1,7,2017-04-30,0.23,2,0 +16710300,"Charming, Authentic Village Walkup",53277135,Cody,Manhattan,West Village,40.73194,-74.00254,Entire home/apt,164,3,20,2019-06-09,0.68,1,0 +16711476,Spacious 1 Bedroom in Washington Heights,110737214,Lai-Lin,Manhattan,Washington Heights,40.83537,-73.93974,Entire home/apt,95,3,4,2017-04-02,0.14,1,0 +16712302,"NYMT06-1 LUXURY! one bedroom,Gym,doorman Ap-A",3507099,MyCity,Manhattan,Hell's Kitchen,40.76591,-73.99016,Entire home/apt,160,45,5,2018-12-06,0.18,2,311 +16716676,1.5 Bedroom in Fantastic Fort Greene!,110786804,Sara,Brooklyn,Fort Greene,40.68586,-73.97269,Entire home/apt,150,5,12,2019-04-11,0.40,1,26 +16718498,"Huge Cosy Room in E.Williamsburg,Rooftop &Backyard",3989837,Nadav,Brooklyn,Williamsburg,40.70867,-73.94061,Private room,75,3,59,2019-06-28,1.95,2,77 +16719568,Sunny 1 bedroom in the heart of Greenpoint,7857773,Caroline,Brooklyn,Greenpoint,40.72411,-73.94182,Entire home/apt,130,2,21,2018-05-25,0.94,1,0 +16720039,Very Chic and SUPER Convenient South Harlem Apt,3676370,Patrice,Manhattan,Harlem,40.80283,-73.95569,Entire home/apt,95,2,4,2017-12-30,0.20,1,0 +16720574,"Gramercy Heaven, right off Park Ave",110825940,Casey,Manhattan,Midtown,40.74489,-73.98382,Entire home/apt,199,2,0,,,1,0 +16720662,Beautiful Brooklyn 3-Bedroom Duplex,107947878,Michael,Brooklyn,Bedford-Stuyvesant,40.67948,-73.90822,Entire home/apt,150,2,112,2019-07-07,3.88,2,195 +16721040,Beautiful Fort Greene triplex with Yard,3915722,Bettina,Brooklyn,Fort Greene,40.6864,-73.96882,Entire home/apt,550,3,1,2019-04-29,0.42,1,15 +16721137,Spacious Duplex Apartment in South Williamsburg,10966450,Alex,Brooklyn,Williamsburg,40.71285,-73.96477,Entire home/apt,250,4,42,2019-06-17,1.41,1,126 +16721299,Williamsburg Escape - Lorimier L,1302317,Vanessa,Brooklyn,Williamsburg,40.71246,-73.95308,Private room,150,2,0,,,1,0 +16722564,12 East 86th St full furnished,53179388,Raymond,Manhattan,Upper East Side,40.78046,-73.96047,Entire home/apt,200,30,0,,,10,164 +16722762,Cozy one bedroom apartment,99097436,Miles,Manhattan,Harlem,40.82777,-73.9407,Entire home/apt,100,1,145,2019-06-30,4.81,1,9 +16723682,"Cozy, sun-splashed room in two-floor apartment",100595030,Michael,Brooklyn,Williamsburg,40.71483,-73.94935,Private room,68,30,13,2019-06-30,0.47,2,64 +16725326,"UWS Historic Townhouse: Renovated Kit. & Bath, 5A",106837455,Lisa,Manhattan,Upper West Side,40.78339,-73.98168,Entire home/apt,140,30,2,2017-12-15,0.07,8,125 +16725576,"Room with the balcony, fits 3!",68762417,Simon,Manhattan,East Harlem,40.79501,-73.94448,Private room,99,1,109,2019-07-05,3.61,4,168 +16725615,Quiet comfortable near Times Sq.,38599544,Maya,Manhattan,Hell's Kitchen,40.7586,-73.98974,Private room,97,2,144,2019-07-01,5.11,1,73 +16725879,Casa Soho 2 Bedroom 2 bath,6437545,Michael,Manhattan,SoHo,40.72182,-74.00033,Entire home/apt,500,3,0,,,1,6 +16725924,Light up room close to Central Park,68762417,Simon,Manhattan,East Harlem,40.79453,-73.94543,Private room,75,1,110,2019-06-16,3.65,4,34 +16726217,1 Bedroom - Beautiful and Cozy Brownstone in Bklyn,110884492,Julia,Brooklyn,Crown Heights,40.67676,-73.94513,Entire home/apt,150,3,25,2019-02-12,0.91,1,64 +16730833,Underground Palace,44018877,Yves,Brooklyn,East Flatbush,40.63876,-73.95073,Entire home/apt,80,2,72,2019-06-13,4.07,2,337 +16731782,"Private, Windsor Terrace Studio",1384388,Georgia And Kevin,Brooklyn,Windsor Terrace,40.65552,-73.97493,Entire home/apt,98,1,122,2019-06-24,4.13,1,127 +16732266,High Ceilings steps to Barclay Cntr,1588656,Rebekah,Brooklyn,Park Slope,40.67697,-73.97406,Entire home/apt,165,1,108,2019-07-01,3.62,2,130 +16734212,"Bright, Spacious, Clean Loft Space with Balcony!",19001553,Gina,Brooklyn,Bedford-Stuyvesant,40.68949,-73.9557,Entire home/apt,125,3,9,2018-01-01,0.30,1,0 +16734233,FAB 1BD Sunnyside Gardens Apt with Patio,5665728,Ryan,Queens,Sunnyside,40.74801,-73.91777,Entire home/apt,300,2,0,,,1,0 +16735133,Charming and Artsy LES 1-Bedroom,182670,Paul,Manhattan,Lower East Side,40.71789,-73.98308,Entire home/apt,124,28,12,2019-04-22,0.43,1,38 +16735801,Twin bed-Close to Columbia U & Central Park,64471880,Jaleh,Manhattan,Harlem,40.80172,-73.95538,Private room,100,1,226,2019-07-03,7.75,2,32 +16735848,"TRAIN NEAR, 10JFK, 30LGA CuteBedr in3Bed,Manhattan",110900012,Triny,Queens,Richmond Hill,40.68979,-73.82974,Private room,33,1,16,2019-05-20,0.53,1,361 +16736830,Modern & classic 3-BR apt in private brownstone,4547658,Christine,Brooklyn,Park Slope,40.67451,-73.97501,Entire home/apt,275,2,119,2019-07-05,4.08,1,65 +16737042,Modern Apartment...Great Location,8591819,Raja,Queens,Astoria,40.76746,-73.92781,Private room,60,7,0,,,1,0 +16738648,맨하튼 소호 거리 주변 2인실,24626134,Eunjin,Manhattan,Midtown,40.75329,-73.9888,Private room,30,2,1,2017-01-23,0.03,1,0 +16739146,Practical Modern 2 Bedroom Apartment on Subway,2988712,Sasha,Bronx,Fordham,40.85318,-73.90204,Entire home/apt,71,90,10,2019-03-28,0.41,7,310 +16739891,Private Studio Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80842,-73.95568,Private room,158,1,132,2019-06-14,4.37,5,238 +16740081,Spacious & Stylish Top Floor 1BR (Whole Apt),47716416,Kimberly,Manhattan,Chinatown,40.71423,-73.99442,Entire home/apt,100,1,65,2019-06-23,2.16,1,1 +16740218,Cozy Double Bedroom in Williamsburg,31867503,Ioanna,Brooklyn,Williamsburg,40.71064,-73.95919,Private room,70,1,2,2017-01-29,0.07,1,0 +16740779,Room in East Williamsburg,65061161,Dustin,Brooklyn,Williamsburg,40.70921,-73.94144,Private room,77,1,2,2017-03-15,0.07,1,0 +16741278,Private Room in Central Manhattan,64156488,Abbi,Manhattan,Flatiron District,40.74147,-73.98577,Private room,90,2,3,2017-02-08,0.10,1,0 +16741935,Financial District Luxury Experience,75064270,Audrey,Manhattan,Financial District,40.70932,-74.00536,Private room,210,5,2,2018-06-09,0.11,2,365 +16749005,Oasis Retreat Bed-Stuy Brooklyn,110062117,Steve,Brooklyn,Bedford-Stuyvesant,40.68039,-73.94302,Entire home/apt,250,3,57,2019-06-30,2.09,1,258 +16749235,Adorable Lower East Side room with Patio,5133087,Charlotte,Manhattan,Chinatown,40.71723,-73.99162,Private room,175,1,0,,,1,0 +16751768,Brooklyn Pied-à-Terre 2 Bed 31 day minimum,32124747,Julian,Brooklyn,Bushwick,40.68637,-73.91133,Entire home/apt,116,31,99,2019-04-30,3.33,1,295 +16751838,"Park Avenue South, Svcd Studio Apt",22541573,Ken,Manhattan,Murray Hill,40.74811,-73.97868,Entire home/apt,190,30,1,2019-05-30,0.73,87,365 +16751874,COZY PRIVATE APARTMENT-HOUSE W/ EXTRA MEDIA ROOM,111134635,Vilena,Queens,Jamaica,40.66893,-73.77144,Private room,65,3,1,2017-05-13,0.04,1,362 +16753723,"Centrally Located, Large, Clean, Private Bedroom",5944004,Donna,Manhattan,West Village,40.73702,-73.99739,Private room,68,1,0,,,1,0 +16755891,"Hip, Vibrant, COLORFUL Downtown Manhattan 1 Bed",21126633,Evan,Manhattan,Chinatown,40.71489,-73.99459,Entire home/apt,200,2,45,2019-07-03,1.64,1,159 +16755920,HUGE Master Bedroom in Remodeled Brownstone.,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94525,Private room,55,3,2,2018-09-06,0.17,4,0 +16756027,NYC Sunny Private Flat In Heart of it All.,8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95669,Private room,89,2,35,2019-06-03,1.35,4,139 +16756480,Modern 2 Bed 2 Bath with private roof deck,1691656,Adrian,Brooklyn,Prospect Heights,40.68237,-73.97286,Entire home/apt,125,3,6,2019-01-01,0.47,1,0 +16756678,"Fully Furnished 4bedroom/2bathroom In Brooklyn, NY",50282911,Jeanne,Brooklyn,Bushwick,40.69455,-73.91118,Entire home/apt,197,30,1,2018-02-20,0.06,1,342 +16757281,"Female, Shared, Cozy, Huge Harlem Studio Apt",25137968,Alanah,Manhattan,Harlem,40.81335,-73.95616,Shared room,50,1,36,2019-06-30,1.32,1,23 +16757480,Cozy Brooklyn Apartment,111208718,Morgan,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9326,Private room,37,1,1,2017-01-20,0.03,1,0 +16758426,"Charming & Modern, Comfortable & Efficient 1-BR",7265267,Louis,Manhattan,East Harlem,40.79345,-73.93977,Entire home/apt,189,3,29,2019-06-28,0.98,1,63 +16764130,Spacious Studio apt—1 Subway stop from Manhattan,41578662,Lucia,Bronx,Mott Haven,40.8115,-73.9258,Entire home/apt,80,7,0,,,2,0 +16766700,Quiet place to stay in Harlem,18451417,Jose,Manhattan,Harlem,40.82818,-73.9389,Private room,39,4,75,2019-06-19,2.52,1,52 +16766743,Large apartment by the park. Close to trains.,109859103,Tomek,Brooklyn,Flatbush,40.65229,-73.9603,Entire home/apt,123,1,0,,,1,0 +16766855,Manhattan - 15 mins to Midtown!,111298791,Nidia,Manhattan,Washington Heights,40.84941,-73.93432,Private room,60,3,51,2019-06-03,1.78,1,0 +16767194,Room in beautiful duplex brownstone with garden,18654847,Katherine,Brooklyn,Crown Heights,40.67089,-73.95473,Private room,74,3,0,,,1,0 +16768336,Private Room in Brooklyn (E.Williamsburg),74896042,Agona,Brooklyn,Williamsburg,40.70811,-73.9326,Private room,45,4,3,2017-06-04,0.12,1,0 +16768665,Huge Apartment for Experiencing New York,111319972,Clayton,Manhattan,Harlem,40.82851,-73.94054,Private room,175,1,0,,,1,0 +16769229,"20 min to Manhattan, Spacious 2BD in Brooklyn, NYC",111327104,Ziggy & Rome,Brooklyn,Bushwick,40.69692,-73.90832,Entire home/apt,135,4,76,2019-06-26,2.61,1,76 +16770311,Spacious Artist Bedroom — 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67692,-73.91541,Private room,30,3,16,2019-06-08,0.53,6,57 +16771876,Delight in Your Home Away from Home in NYC!,87795401,Paul,Bronx,Soundview,40.82987,-73.86608,Entire home/apt,60,2,105,2019-06-11,3.61,1,131 +16772578,Cozy sunny NYC/BK view,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67356,-73.9321,Private room,52,2,101,2019-06-24,3.40,4,329 +16775958,The Happy Hideaway,4232532,Jenn,Brooklyn,South Slope,40.6618,-73.98234,Entire home/apt,144,2,12,2019-01-01,0.90,2,0 +16776959,1 Bedroom in Great Brooklyn Neighborhood,39978070,Robert,Brooklyn,Bay Ridge,40.63295,-74.03028,Entire home/apt,75,60,1,2018-08-20,0.09,1,358 +16777456,Large Studio New York-Bronx comfortable,24546033,Pietro,Bronx,Morris Park,40.84906,-73.85418,Private room,73,3,14,2019-06-17,0.61,1,138 +16777938,Clean & Large room hearth of NYC Midtown!!,57657144,Tomas,Manhattan,Midtown,40.75481,-73.96982,Private room,119,9,53,2019-05-12,1.79,1,15 +16778711,"Luxurious & Modern, Private Deck + Great location",2938381,Lee,Brooklyn,Prospect Heights,40.68018,-73.96422,Entire home/apt,170,2,154,2019-06-21,5.20,1,235 +16778903,Private bedroom,43601551,Anamaria & Ricardo,Manhattan,East Harlem,40.78805,-73.94924,Private room,135,6,2,2018-01-01,0.11,2,0 +16778904,"Quiet cozy apartment, air-conditioned room",111433024,Danielle,Manhattan,Washington Heights,40.84353,-73.94201,Private room,25,3,34,2019-05-31,1.46,1,139 +16779548,Empire Room in Spacious Apartment,24283455,Igam,Brooklyn,Gravesend,40.58906,-73.98245,Private room,35,3,52,2019-06-09,1.78,2,0 +16779705,Cozy West Village Studio,11699846,Natasha,Manhattan,Greenwich Village,40.73239,-73.9996,Entire home/apt,103,2,15,2018-10-28,0.57,1,0 +16780398,Sunny private room in Homecrest Ave Brooklyn,10633027,Sam,Brooklyn,Sheepshead Bay,40.59338,-73.9579,Private room,50,2,82,2019-06-23,2.79,3,35 +16780469,Beautiful Manhattan apt. blocks from Central Park,6263861,Monica,Manhattan,Harlem,40.80249,-73.95622,Private room,55,5,2,2019-04-25,0.16,1,24 +16781516,Large NYC room billionaires row 5 min CentralPark!,22101365,Natalie,Manhattan,Upper East Side,40.76404,-73.96547,Private room,99,3,79,2019-06-23,2.75,1,107 +16781601,Room 14,74633496,Justine,Bronx,University Heights,40.8562,-73.90899,Private room,43,3,36,2019-06-10,1.26,5,365 +16783144,Wonderful island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76335,-73.94937,Private room,75,1,99,2019-06-06,3.47,2,156 +16783828,GORGEOUS Very Large Room next to Central Park!,44688209,Mike,Manhattan,Upper East Side,40.76281,-73.96718,Private room,117,3,67,2019-06-29,2.26,1,99 +16784199,Sunny And Renovated Greenwich Village Apartment!,5042847,Davide,Manhattan,Greenwich Village,40.72851,-73.99985,Entire home/apt,195,3,9,2019-06-06,0.38,1,0 +16791336,Spacious Room in East Village Oasis,25505776,Michal,Manhattan,East Village,40.72931,-73.98258,Private room,100,6,5,2019-06-18,0.21,1,0 +16791809,Small Brooklyn Gem 25 Minutes Away from the City,1938828,Shay,Brooklyn,East Flatbush,40.65071,-73.94508,Private room,34,30,6,2017-08-15,0.20,3,280 +16792022,Sunny peaceful eclectic Williamsburg apartment,30724451,Arden,Brooklyn,Williamsburg,40.71609,-73.94791,Private room,44,3,7,2019-06-03,0.24,1,0 +16792642,Sunny 2 bdrm Park Slope Apt w/ Yard 3min to Subway,106168581,Jason,Brooklyn,South Slope,40.666,-73.9902,Entire home/apt,210,4,88,2019-07-04,4.41,1,20 +16793429,COZY at MOTT,3654281,Wen,Manhattan,Little Italy,40.71909,-73.99562,Entire home/apt,150,7,10,2019-01-07,0.44,1,43 +16793649,"Bright Modern Apt near Major Trains! A, C, J, Z, L",108249932,Yngrid And Jiovanni,Brooklyn,East New York,40.67449,-73.89053,Entire home/apt,84,3,65,2019-07-02,2.43,2,132 +16794070,1 Bedroom in a gorgeous brownstone in South Harlem,37482532,Adam,Manhattan,East Harlem,40.80964,-73.93964,Entire home/apt,69,2,2,2017-02-05,0.07,1,0 +16794287,Furnished 1BR on Prospect Park,13274612,Caleb,Brooklyn,Flatbush,40.65009,-73.96336,Private room,39,180,0,,,1,179 +16795470,Nice bedroom. Sleeps 2.,7181263,Kate,Manhattan,East Harlem,40.80055,-73.94101,Private room,88,1,99,2019-06-29,3.31,2,112 +16795503,Spacious Private Access Near Trains M - L and J,49100137,Juan,Brooklyn,Bushwick,40.69228,-73.91399,Private room,33,2,90,2019-07-07,3.10,1,308 +16795643,Private bedroom with queen bed and single bed.,7181263,Kate,Manhattan,East Harlem,40.79933,-73.94272,Private room,98,1,102,2019-07-06,3.43,2,81 +16796255,"Clean, Cozy Private Room with TV Uptown Manhattan",69862540,Rina,Manhattan,Washington Heights,40.83935,-73.94019,Private room,60,2,90,2019-07-02,3.11,3,14 +16797910,Brooklyn less than 30 min from manhattan (subway),111666924,Carl,Brooklyn,Crown Heights,40.67219,-73.92168,Entire home/apt,75,3,72,2019-06-09,2.48,1,19 +16798165,Newly renovated and cozy 1-bedroom in Brooklyn,1653951,Mario,Brooklyn,Bay Ridge,40.63473,-74.02833,Entire home/apt,100,2,109,2019-06-23,3.67,1,216 +16798351,Beautiful East Village Studio,94669886,Nadine,Manhattan,East Village,40.72885,-73.98103,Entire home/apt,115,7,11,2018-08-21,0.39,1,0 +16802965,Modern Apt in Townhouse in Williamsburg prime!,25233493,Jaime,Brooklyn,Williamsburg,40.71286,-73.96084,Entire home/apt,200,5,31,2018-11-04,1.39,2,291 +16804336,"Michael's Cozy Studio Central Park, Subway 1,A B C",47062032,Michael,Manhattan,Morningside Heights,40.80432,-73.96694,Entire home/apt,130,2,56,2018-01-15,1.90,1,0 +16805050,!!!Living&Working. Beautiful Coliving on Flatbush,2092314,Valentin,Brooklyn,East Flatbush,40.64513,-73.9488,Shared room,28,30,3,2018-06-20,0.13,7,365 +16805065,Hey!!! Check out this apt. On our new link!!!,30434875,Richard,Manhattan,Chelsea,40.74814,-74.00372,Entire home/apt,230,1,27,2018-12-13,1.83,1,189 +16805103,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.76347,-73.9631,Entire home/apt,179,30,0,,,87,287 +16805446,Perfect Cobble Hill Apartment for Two,7786166,Kate,Brooklyn,Cobble Hill,40.68687,-73.99471,Entire home/apt,190,2,15,2019-06-22,0.53,1,162 +16805869,Windowside Orchard Street Room in Lower East Side!,16664377,D,Manhattan,Lower East Side,40.71863,-73.98958,Private room,100,1,66,2019-06-22,2.19,3,334 +16805921,Loft -- Master Bedroom w/ Ensuite in Heart of LES,6696691,Andrew,Manhattan,Lower East Side,40.71892,-73.98958,Private room,100,20,0,,,1,0 +16807028,Sunny Ditmas Park Carriage House (Events Listing),8111912,Jed,Brooklyn,Flatbush,40.64335,-73.96745,Entire home/apt,1000,1,1,2019-04-02,0.31,2,365 +16807550,Spacious room in North Williamsburg/Greenpoint,26420701,Helen,Brooklyn,Greenpoint,40.72601,-73.95502,Private room,55,2,1,2018-05-06,0.07,1,0 +16807749,Beautiful little bedroom + private living room,30529,Marianne,Brooklyn,Prospect Heights,40.67308,-73.96294,Private room,85,1,171,2019-06-23,5.85,2,215 +16808375,Private room in Brooklyn,4368043,Nika Nurkyz,Brooklyn,Sheepshead Bay,40.60738,-73.955,Private room,55,3,0,,,1,0 +16808464,"Large, Sunny Room in 2 Story 2 Bedroom Corner Unit",33403059,Joshua,Brooklyn,Bushwick,40.69749,-73.9336,Private room,50,9,0,,,3,0 +16810023,"5m walk to L, Great Location ❤️ Priv. Bath/Balcony",1699648,Benjamin,Brooklyn,Williamsburg,40.71842,-73.94467,Private room,95,5,66,2019-06-11,2.24,1,25 +16810808,Family friendly 2 bedroom apartment on Homecrest,10633027,Sam,Brooklyn,Sheepshead Bay,40.59425,-73.95922,Entire home/apt,139,2,41,2019-07-04,1.52,3,29 +16811150,Clinton hill paradise,47412121,Laura,Brooklyn,Clinton Hill,40.69559,-73.96998,Private room,100,7,1,2017-12-16,0.05,1,0 +16811199,Spacious 1 bdrm apt in amazing location,77812140,Peter,Queens,Ridgewood,40.70475,-73.91081,Entire home/apt,120,2,2,2017-05-21,0.08,1,0 +16811364,"Queen Sized Bed Townhouse Apartment, Near Subway",102482048,Susy,Brooklyn,Bushwick,40.6821,-73.90856,Private room,30,2,54,2019-06-14,1.87,4,179 +16813292,Stylish Private Room + Bath in the Heart of LES,1229568,Matt & Kathleen,Manhattan,Lower East Side,40.7219,-73.98717,Private room,174,2,100,2019-06-24,3.34,1,145 +16814205,Cozy Room Close to JFK!!,111841534,Malini,Queens,Jamaica,40.67949,-73.79841,Private room,53,1,392,2019-07-06,13.15,1,71 +16814382,Large Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.87035,-73.89335,Private room,79,3,86,2019-06-24,2.88,10,78 +16814385,"Modern, Cozy Room in Stunning Harlem Brownstone",72366612,Shaun,Manhattan,Harlem,40.81884,-73.94579,Private room,173,3,4,2017-05-22,0.15,1,87 +16814536,Prime location homestay in Brooklyn sunset park,30576651,Lun,Brooklyn,Sunset Park,40.63964,-74.01975,Private room,55,4,1,2017-01-30,0.03,1,0 +16814803,Cozy Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.86925,-73.89534,Private room,60,3,101,2019-06-23,3.43,10,83 +16814818,Cozy Bedroom in the Heart of Downtown Manhattan,111849930,Kaitlin,Manhattan,Lower East Side,40.72275,-73.98918,Private room,120,4,0,,,1,0 +16815519,"Sunny, Quiet Oasis w/ Elevator - Close to Subway!",10703290,Mike,Manhattan,Upper East Side,40.77328,-73.94982,Private room,130,3,7,2019-05-27,0.24,3,0 +16821077,Park Slope - Bright Spacious Sunny Room - Flexible,38607397,Isroel,Brooklyn,Windsor Terrace,40.65815,-73.9817,Private room,80,7,0,,,1,0 +16821898,Big bright cozy room to call home,111918887,Bianca,Brooklyn,Windsor Terrace,40.65559,-73.97797,Private room,50,30,5,2019-06-30,0.18,1,126 +16822398,!!!Co-Housing taken to the Next Level /Flatbush/2,2092314,Valentin,Brooklyn,East Flatbush,40.64471,-73.9495,Shared room,20,30,1,2018-08-10,0.09,7,365 +16823231,1BR Spacious Luxury Apartment in Williamsburg BK,2369654,Michael & Hanako,Brooklyn,Williamsburg,40.71778,-73.95503,Entire home/apt,120,4,7,2018-04-16,0.24,1,0 +16823712,Room w/ terrace in house w/ backyard Williamsburg!,10810355,Valentine,Brooklyn,Williamsburg,40.70833,-73.93916,Private room,66,12,9,2019-05-27,0.37,1,11 +16823923,Wonderful Apartment Upper West Side Midtown,71739526,Jonathan,Manhattan,Upper West Side,40.77016,-73.98126,Entire home/apt,250,7,0,,,1,0 +16824884,Amazing One Bedroom Apt,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93753,Entire home/apt,110,30,9,2019-04-27,0.34,3,319 +16826741,The Gramercy East,111798802,Ritchy,Manhattan,Gramercy,40.73575,-73.98,Entire home/apt,155,2,3,2018-09-29,0.12,1,3 +16827163,quintessential modern Brooklyn loft** ONLY TONIGHT,44201583,Jeremy,Brooklyn,DUMBO,40.70287,-73.98518,Private room,200,7,0,,,1,0 +16827715,Private One Bedroom/5 min. walk to train,82339249,Monica,Queens,Ditmars Steinway,40.77235,-73.91789,Private room,85,5,3,2017-09-04,0.11,1,88 +16828843,"Large, Sunny Studio in the heart of Chelsea.",31175385,Eunice,Manhattan,Chelsea,40.74089,-74.00002,Entire home/apt,130,2,4,2019-01-01,0.13,1,0 +16828918,Cute Room Perfect Downtown Location,29040298,Paulien,Manhattan,Little Italy,40.72043,-73.99706,Private room,64,3,0,,,1,0 +16829324,✪ Stay Together in Style ✪ 2BR / 3 Bed ✪ Best Area,4094013,Cami,Manhattan,Lower East Side,40.72293,-73.98918,Entire home/apt,200,4,72,2019-06-23,2.94,1,109 +16829867,New studio in Murray Hill,37832982,Cynthia,Manhattan,Murray Hill,40.74976,-73.97444,Entire home/apt,130,2,0,,,1,0 +16830241,"Sunny, Modern East Village 1BR w/ 24-hr doorman",7837004,Hilary,Manhattan,East Village,40.72979,-73.98917,Entire home/apt,170,5,29,2019-06-04,0.98,1,0 +16834485,"! ! ! Coliving: live, work, create",2092314,Valentin,Brooklyn,East Flatbush,40.65151,-73.94957,Shared room,22,30,0,,,7,365 +16835493,!!!Outpost Coliving . Flatbush. Cozy shared room,2092314,Valentin,Brooklyn,Flatbush,40.64476,-73.96473,Shared room,28,30,0,,,7,365 +16837628,Outpost Coliving. Great shared apartment Flatbush,2092314,Valentin,Brooklyn,East Flatbush,40.64136,-73.94705,Shared room,27,30,0,,,7,365 +16840727,Great Bed Stuy Room Near Williamsburg & Bushwick,111970954,Ryan,Brooklyn,Bedford-Stuyvesant,40.68785,-73.94262,Private room,30,7,2,2017-03-07,0.07,1,0 +16841844,South Williamsburg bedroom with big bay windows,28758646,Alex,Brooklyn,Williamsburg,40.70942,-73.96331,Private room,300,3,4,2017-05-20,0.15,1,0 +16841998,Double Bedroom in a Sunny Bushwick Loft,112127289,Jordan,Brooklyn,Bushwick,40.69284,-73.90695,Private room,40,3,6,2017-06-19,0.20,1,0 +16843605,"Comfortable, eclectic and private apartment",109865937,Philip,Brooklyn,Clinton Hill,40.68976,-73.96533,Entire home/apt,280,2,41,2019-06-27,1.51,1,343 +16844707,Hudson River Aerie,47737463,Regina,Manhattan,Harlem,40.82545,-73.95295,Private room,60,3,10,2019-06-30,0.71,1,8 +16845648,"Bright, Beautiful 2 BD, great location UES",59358,V.Stephan,Manhattan,Upper East Side,40.78429,-73.94878,Entire home/apt,200,5,48,2019-07-01,1.73,2,71 +16845840,Small Private Room for Rent,2712353,Masud,Brooklyn,Cypress Hills,40.68668,-73.87565,Private room,35,28,5,2018-11-20,0.19,4,326 +16846074,Modern Studio in the Heart of Midtown NYC!,3902092,Anthony,Manhattan,Hell's Kitchen,40.75673,-73.99362,Entire home/apt,170,2,0,,,1,0 +16846366,5* Brand New Luxury Apartment with Backyard Oasis,436642,Joel,Manhattan,Upper West Side,40.7843,-73.98262,Entire home/apt,995,4,20,2019-07-01,0.73,1,290 +16846462,Brooklyn Gem,28297517,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68841,-73.95082,Entire home/apt,140,2,54,2019-06-02,1.91,1,267 +16847069,Prime SOHO Luxury penthouse Loft,62103724,Joe,Manhattan,NoHo,40.72569,-73.99519,Entire home/apt,399,3,51,2019-06-17,1.76,1,336 +16851711,"Light-filled Apartment in great area, close 2 all!",24758130,Dounia,Brooklyn,Flatbush,40.63192,-73.94734,Entire home/apt,75,1,12,2017-06-19,0.43,1,0 +16851792,NYで人気の街ブルックリンパークスロープで、暮らしてみませんか。,8899812,Fumiko,Brooklyn,South Slope,40.66411,-73.98267,Private room,65,7,2,2017-10-23,0.09,1,173 +16851973,!!! Beautiful private room with backyard.,2092314,Valentin,Brooklyn,East Flatbush,40.6392,-73.94732,Private room,32,30,1,2017-07-30,0.04,7,124 +16852728,!!! Outpost Coliving . Shared twin room,2092314,Valentin,Brooklyn,East Flatbush,40.65024,-73.95051,Shared room,26,30,2,2018-04-30,0.09,7,365 +16854141,"Snug, Cozy 1 bedroom Apartment",18595156,Dwane,Brooklyn,East New York,40.65877,-73.89631,Entire home/apt,100,1,68,2019-06-08,2.27,1,364 +16854181,Awesome apartment close to Express Train,17911536,Federica,Manhattan,Washington Heights,40.85046,-73.94271,Private room,98,2,0,,,1,0 +16854754,"LRG DESIGNER STUDIO/1-BED, MIDTOWN, DOORMAN, ELEV.",23502183,Daniel,Manhattan,Midtown,40.75562,-73.96539,Entire home/apt,149,3,8,2019-05-14,0.34,2,0 +16855055,"Spacious, bright room in luxury building",283944,Tim,Brooklyn,Williamsburg,40.70669,-73.94648,Private room,85,1,16,2019-05-03,0.55,1,7 +16855679,Modern 1 Bedroom Condo at Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75305,-73.97358,Private room,640,2,0,,,3,0 +16856193,Hotel Room at Wyndham Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75373,-73.97287,Private room,325,2,0,,,3,268 +16858146,Entire Apartment in Hells Kitchen!,3747161,Eric,Manhattan,Hell's Kitchen,40.76318,-73.99009,Entire home/apt,125,30,7,2019-05-25,0.26,1,204 +16859099,Manhattan &Time Square Less than 30min 1st floor.,3158364,Devika,Queens,Sunnyside,40.73661,-73.92514,Private room,32,5,47,2019-07-01,1.61,4,266 +16860045,2 bed spacious/Quiet Upper Ditmars Astoria Wifi.,97127885,Concetta,Queens,Ditmars Steinway,40.76814,-73.89573,Entire home/apt,47,11,27,2019-04-27,0.90,2,212 +16860541,Large Bedroom Apartment with a Private Bathroom,42993745,Paul,Manhattan,Upper East Side,40.77659,-73.95407,Private room,130,3,18,2018-12-15,0.65,2,0 +16865916,"Modern Living, Views, Summer in the City!",4462722,Jay,Manhattan,Upper East Side,40.76516,-73.95868,Entire home/apt,249,2,7,2019-05-07,0.27,1,363 +16867024,Stunning Terrace/garden Design 2 BR Apartment,112393778,Christophe,Manhattan,Harlem,40.80346,-73.94583,Entire home/apt,360,5,23,2019-05-24,0.84,1,3 +16867729,Apartment in Great Part of Brooklyn,105154603,Samantha,Brooklyn,Gowanus,40.66948,-73.98976,Private room,40,4,1,2017-02-28,0.03,1,0 +16869999,"Philosopher's Private Room, Clean, 1.5 Baths",10015933,Dwayne,Manhattan,Harlem,40.81609,-73.93663,Private room,55,1,48,2019-06-30,1.68,1,365 +16870827,Private Lrg bedroom in a convrtable 2 Bed Apt.,79089979,Clell,Brooklyn,Bay Ridge,40.63845,-74.02649,Private room,800,1,43,2019-06-27,1.64,1,55 +16871240,"Cute Apartment for 2-4 people, IDEAL location NYC",112439486,Ryan,Queens,Sunnyside,40.74561,-73.91927,Entire home/apt,88,3,2,2017-02-20,0.07,1,0 +16873148,3BR Home 25 Mins to Times Square + Manhattan,60665255,Nicholas,Queens,Maspeth,40.73147,-73.89486,Entire home/apt,175,1,60,2019-06-17,3.05,1,317 +16874685,MASSIVE ROOM IN HEART OF NYC!!! (CHELSEA/FLATIRON),13492085,Teri,Manhattan,Chelsea,40.74512,-73.99179,Private room,200,1,8,2017-05-18,0.28,2,0 +16879258,Gorgeous and sunny 1 br in Little Italy/Nolita,11050811,Dianna,Manhattan,Little Italy,40.71867,-73.99709,Entire home/apt,200,5,0,,,1,45 +16880235,Light-filled Bowery 1BD Apartment,87296223,Julien,Manhattan,Chinatown,40.71681,-73.99539,Entire home/apt,190,5,8,2019-06-14,0.30,1,81 +16883129,Charming Studio In Historic Home,26178075,Tricia,Staten Island,Stapleton,40.6322,-74.07789,Entire home/apt,75,2,103,2019-07-05,3.52,1,73 +16883282,Gorgeous Luxury 1 Brd Apt in Trendy West Village!,3827805,Casey,Manhattan,West Village,40.73249,-74.00854,Entire home/apt,210,3,0,,,1,0 +16883813,Cozy and Sunny 2 bedroom apartment,5302735,Thiago,Manhattan,Harlem,40.80495,-73.9556,Entire home/apt,224,4,29,2019-06-09,0.99,2,0 +16884012,Airy Inwood Apartment,42330189,Gabriel,Manhattan,Washington Heights,40.85622,-73.93147,Entire home/apt,200,1,0,,,1,0 +16884027,Historic Brownstone in Harlem,78930817,Santi,Manhattan,Harlem,40.80443,-73.94546,Entire home/apt,120,1,9,2017-04-17,0.31,1,0 +16884405,"Guest Room in High Ceiling Duplex, Williamsburg! 2",40511252,Auset,Brooklyn,Williamsburg,40.70711,-73.95344,Private room,55,30,11,2019-03-31,0.38,3,249 +16884587,"Beautiful 2 Bedroom Apartment Woodside, Queens, NY",112601190,Erfan,Queens,Woodside,40.74616,-73.90392,Entire home/apt,106,2,93,2019-06-20,3.13,1,34 +16885058,Charming Apartment,47792689,Tiffany,Brooklyn,Bushwick,40.70097,-73.9381,Entire home/apt,68,3,0,,,1,0 +16892151,1 Bedroom in Beautiful/Spacious Bushwick Apt,9806708,Ryan,Brooklyn,Williamsburg,40.70513,-73.93063,Private room,60,1,0,,,1,0 +16892955,"Huge Comfy Studio with Private Bath, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.87924,-73.89791,Entire home/apt,84,3,114,2019-06-16,4.00,4,63 +16893030,Large Studio one block from Times Square,7593341,Vaki,Manhattan,Theater District,40.75951,-73.98796,Private room,195,1,9,2018-12-16,0.31,1,9 +16893907,Newly renovated modern Apt in heart of Astoria NY,11787695,Charlie,Queens,Astoria,40.76773,-73.91701,Entire home/apt,175,4,12,2019-06-24,0.47,1,42 +16893993,Sunny room in a shared appartement in Bushwick,3855091,Do,Brooklyn,Bushwick,40.70657,-73.92181,Private room,53,5,1,2017-08-27,0.04,1,0 +16895217,"Sunny, Beautiful, Comforting Greenpoint Apartment",13739286,Danielle,Brooklyn,Greenpoint,40.7244,-73.93913,Private room,55,5,6,2018-10-24,0.28,1,87 +16896105,Peaceful room in hip BK area 15 min to Manhattan,1359292,Cleo,Brooklyn,Bedford-Stuyvesant,40.68869,-73.9231,Private room,47,1,10,2019-06-27,0.35,1,173 +16897115,Perfectly Central Upper West Side location,110851135,Eitan,Manhattan,Upper West Side,40.79241,-73.97262,Private room,53,1,39,2018-07-26,1.39,1,0 +16897571,Cosy LES/Chinatown private room,9670774,Amy,Manhattan,Lower East Side,40.71974,-73.99263,Private room,110,7,0,,,1,0 +16897611,"1 Bedroom in nice, clean LES apartment",112763616,Gaurav,Manhattan,Lower East Side,40.71873,-73.99073,Private room,95,1,3,2017-09-27,0.13,1,0 +16898313,Large 2 bdrm loft with outdoor space + trains,4185119,Claire,Brooklyn,Boerum Hill,40.68583,-73.98267,Entire home/apt,148,2,23,2019-06-23,0.78,1,3 +16899058,The ❤️ of SoHo: Adorable 2 br // event space,112780904,Milly,Manhattan,SoHo,40.7255,-74.00258,Entire home/apt,459,1,61,2019-07-01,2.04,1,173 +16905585,Bright and Spacious East Village Loft,112851539,J,Manhattan,East Village,40.72977,-73.98841,Entire home/apt,350,3,85,2019-06-24,2.87,1,208 +16912472,Private East Village Bedroom &Roof Deck(manhattan),51850937,Joe,Manhattan,East Village,40.72951,-73.98239,Private room,90,1,200,2019-06-22,6.79,3,272 +16914299,Friendly and well located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6675,-73.97694,Entire home/apt,120,1,5,2018-04-10,0.18,2,0 +16914748,Beautiful Garden Apartment in Bed Stuy Brownstone,190239,Cat,Brooklyn,Bedford-Stuyvesant,40.68498,-73.92613,Entire home/apt,91,10,26,2019-06-14,0.97,1,12 +16916191,Bedstuy Brownstone,61127125,Eric,Brooklyn,Bedford-Stuyvesant,40.681,-73.94707,Entire home/apt,170,3,5,2019-06-23,0.50,1,66 +16916234,one-bedroom available in Murray Hill NYC,112957166,Dmitriy,Manhattan,Kips Bay,40.73948,-73.97643,Private room,73,1,0,,,1,0 +16916510,Cozy Room near Columbia University,11523011,Tiara,Manhattan,Morningside Heights,40.80766,-73.96594,Private room,60,30,7,2018-07-10,0.27,2,246 +16916708,"Cozy 1br apartment, 25 min away from Manhattan",13896771,Raquel,Queens,Ditmars Steinway,40.77707,-73.91887,Entire home/apt,90,5,14,2019-01-05,0.49,1,1 +16916926,Clean! Quiet! Near train and park!,420620,Kathryn,Brooklyn,Windsor Terrace,40.65998,-73.97811,Private room,70,3,0,,,1,0 +16917171,West Village - 1 Bedroom,31906445,Laura,Manhattan,West Village,40.73459,-74.00143,Entire home/apt,135,2,1,2017-02-20,0.03,1,0 +16917225,Glamorous Queen room in the centre of EVERYTHING!,24405003,Bianca,Manhattan,Chinatown,40.71427,-73.99261,Private room,91,1,49,2019-06-30,1.86,3,111 +16918104,Cozy Private Room,32304780,Nicauris,Manhattan,Washington Heights,40.84194,-73.94203,Private room,52,30,16,2019-01-06,0.59,3,237 +16923912,Charming 5 Bedroom House in Forest Hills NY,23262657,Maayan,Queens,Forest Hills,40.71848,-73.85025,Entire home/apt,400,2,9,2018-12-29,0.37,2,4 +16925647,Charming Park Slope Apt (fits up to 6 ppl)!,8131326,Julia,Brooklyn,Windsor Terrace,40.66063,-73.98348,Entire home/apt,239,3,0,,,1,0 +16927533,Studio with amazing view,3737986,Carolann,Manhattan,Financial District,40.70588,-74.0159,Entire home/apt,12,300,0,,,1,0 +16928488,Private apartment in new Brooklyn building!,5611490,Steven & Melissa,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95299,Entire home/apt,150,2,33,2019-05-22,1.21,1,80 +16929145,UES(mini loft)Clean flex room (Female Only),7093576,Eun M,Manhattan,Upper East Side,40.77759,-73.95321,Private room,65,1,133,2019-06-19,4.52,1,43 +16929407,Luxury Loft in Williamsburg,14060369,Aaron,Brooklyn,Williamsburg,40.71218,-73.96048,Entire home/apt,220,3,8,2018-08-26,0.30,1,0 +16930274,"Great 1 BR- Q train, Museum Mile and Central Park!",113110121,Christina,Manhattan,Upper East Side,40.76868,-73.95744,Entire home/apt,110,5,22,2019-07-02,1.27,1,7 +16930662,Cozy yellow room,37185194,Hali,Queens,Astoria,40.76964,-73.91559,Private room,44,1,14,2018-03-13,0.50,1,0 +16930707,Private room in a 3BR in Park Slope,17019706,David,Brooklyn,Park Slope,40.68203,-73.97834,Private room,75,4,0,,,1,0 +16931894,QUIET SUNNY PRIVATE ROOM M&L TRAIN,113128172,Simon,Brooklyn,Bushwick,40.70079,-73.91847,Private room,65,1,9,2017-10-04,0.35,1,0 +16932674,Cozy bedroom in Bushwick Brooklyn!,29464755,Rebecca,Brooklyn,Bushwick,40.6978,-73.91677,Private room,40,3,34,2017-10-20,1.16,1,0 +16933257,Bay Ridge Apt,88981564,Luis,Brooklyn,Bay Ridge,40.62158,-74.02394,Entire home/apt,175,2,35,2019-06-19,1.17,1,325 +16933481,Entire 3rd Floor of Brooklyn brownstone,359480,Autumn,Brooklyn,South Slope,40.66398,-73.99041,Entire home/apt,77,3,4,2018-11-25,0.14,1,0 +16936036,Budget Friendly Place WIFi AC Parking Comfy Bed,2788934,Andrew,Brooklyn,Greenpoint,40.72155,-73.94414,Private room,59,2,155,2019-06-30,5.20,2,60 +16937801,High End Hand Crafted Manhattan Two Bedroom Beauty,113198009,Tyreik,Manhattan,Harlem,40.82793,-73.94349,Private room,85,5,8,2018-11-03,0.29,1,0 +16943101,*New 4 bedrooms 2 Bath Home 15 mins to manhattan!,113251630,Joling,Brooklyn,Bushwick,40.69735,-73.9327,Entire home/apt,240,3,84,2019-06-23,2.95,1,237 +16943178,Ladies Only: Spacious Shared Apt,113251277,Angela,Manhattan,Kips Bay,40.74261,-73.98102,Shared room,49,1,11,2019-03-17,0.39,2,304 +16944182,"Newly renovated, large room. Right by trains!",2431149,Delphina,Brooklyn,Crown Heights,40.66926,-73.93211,Private room,49,1,13,2017-05-01,0.44,2,0 +16944820,Large *COZY* Private Bedroom near Yankee Stadium,67130668,Melissa,Bronx,Concourse Village,40.82692,-73.92183,Private room,45,5,46,2019-06-02,1.55,1,174 +16945093,Cute studio close to Penn Station and Times Square,14374073,Estrellita,Manhattan,Chelsea,40.75166,-73.99506,Entire home/apt,150,19,0,,,1,0 +16945495,"Queen size bed, private bathroom, great location",2807776,Axel,Brooklyn,Flatbush,40.64918,-73.96657,Private room,80,2,25,2019-06-24,0.95,2,68 +16947113,Room in the Heart of Williamsburg,102367813,Steven,Brooklyn,Williamsburg,40.7176,-73.95359,Private room,99,2,7,2017-10-23,0.24,1,0 +16954154,Cozy with a private bathroom bklyn,14898658,Chadanut,Brooklyn,Kensington,40.64237,-73.98048,Private room,45,1,41,2019-05-27,1.41,11,22 +16954330,The Cozy Cole room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80934,-73.95072,Private room,59,2,66,2019-01-27,2.24,4,6 +16959759,Cute little room in a 3BR apt with shared bath.,113399802,Mireille,Brooklyn,Crown Heights,40.67138,-73.93679,Private room,82,1,21,2019-06-25,0.78,1,89 +16960374,Beautiful 1br in Manhattan!,30097523,Kevin,Manhattan,Harlem,40.82167,-73.94988,Entire home/apt,110,6,5,2018-07-23,0.17,1,0 +16960725,Private Room Near Columbus Circle.,36980831,Matthew,Manhattan,Hell's Kitchen,40.76617,-73.98398,Private room,95,3,2,2017-10-07,0.07,1,83 +16960760,Large private room w huge loft in Williamsburg,113409633,Lauren,Brooklyn,Williamsburg,40.71976,-73.96052,Private room,58,2,3,2017-05-19,0.11,1,0 +16960859,Private Room In Clean Quiet Apt,17791467,Anthony,Manhattan,Harlem,40.8236,-73.93755,Private room,69,2,70,2018-08-01,2.38,2,0 +16961126,Classic Room in Vintage Loft,16300594,Ari,Brooklyn,Williamsburg,40.71586,-73.95395,Private room,50,2,9,2019-04-04,0.31,3,0 +16962435,Artist Loft Bedroom,24419810,Gera & Werc,Brooklyn,Bushwick,40.70322,-73.92025,Private room,60,5,18,2019-05-15,0.77,1,66 +16963544,"East Village, Cozy Room w/ Private Entrance & Bath",2626535,RoseAnne,Manhattan,Stuyvesant Town,40.73126,-73.98149,Private room,73,2,1,2017-02-23,0.03,1,0 +16964141,Staten island home not far from ferry to manhattan,113449748,Gloria,Staten Island,Randall Manor,40.63552,-74.12125,Private room,100,3,0,,,1,362 +16965072,Large Bright Home on 2 floors perfect for families,11105949,May,Brooklyn,Bedford-Stuyvesant,40.69309,-73.94987,Entire home/apt,139,5,13,2019-05-01,0.48,1,0 +16965094,*THE ROOM IS PRIVATE. HUNGRY FOR A KITCHEN ?*,48183551,Carlos,Queens,Elmhurst,40.74552,-73.88285,Private room,55,6,69,2019-07-04,2.44,5,253 +16965291,"basic room, prime location, 30 day minimum",10737943,David,Manhattan,Upper West Side,40.78068,-73.9767,Private room,48,30,5,2019-05-01,0.18,10,341 +16965705,Bright sunny manhattan getaway,3483600,Joshua,Manhattan,Washington Heights,40.83498,-73.94214,Private room,63,2,0,,,1,0 +16965968,Cute Room in Lower East Side!,100672521,Angie,Manhattan,Lower East Side,40.7128,-73.98909,Private room,97,1,121,2019-06-23,4.11,3,127 +16965972,Charming Bedroom in hip Lower East Side!,100672521,Angie,Manhattan,Lower East Side,40.71203,-73.99008,Private room,99,1,125,2019-06-26,4.31,3,119 +16969156,Cozy Manhattan Studio,113460991,Shain,Manhattan,Midtown,40.75784,-73.96088,Entire home/apt,175,14,8,2019-01-05,0.28,1,310 +16970733,Gramercy / East Village Studio,113521983,Julia,Manhattan,Gramercy,40.73328,-73.98241,Entire home/apt,159,8,33,2019-07-01,1.21,1,8 +16971247,"Charming, Light drenched Upper East Side studio",5744776,Jensine,Manhattan,Upper East Side,40.77565,-73.94919,Entire home/apt,153,2,4,2019-06-02,0.14,1,3 +16972627,Strawberry Fields Forever!,21353088,Katy,Manhattan,Upper West Side,40.77786,-73.98066,Entire home/apt,243,1,41,2019-06-30,1.39,1,8 +16973662,1st Floor in New (2flr) Williamsburg Apartment,17459413,Jenn,Brooklyn,Williamsburg,40.7138,-73.96043,Private room,98,13,14,2019-05-05,0.56,1,145 +16974219,Big Room with Queen Bed&Comfy Couch,68123997,Liam,Queens,Elmhurst,40.741,-73.88019,Private room,60,2,43,2019-07-01,1.50,1,90 +16975094,Entire beautiful apartment-Astoria,73541674,Dioni,Queens,Ditmars Steinway,40.77319,-73.91687,Entire home/apt,100,3,2,2018-07-16,0.07,2,200 +16975918,"Large 1-bedroom, great neighborhood 20min/Midtown",4942156,Paul,Queens,Sunnyside,40.74511,-73.91816,Entire home/apt,80,50,2,2018-08-19,0.09,1,8 +16976026,Cheap Family home with desk 10 mn to JFK+Mall,107455767,Guelma,Queens,Rosedale,40.65292,-73.73652,Private room,45,14,70,2019-06-24,2.38,5,281 +16976215,Awesome Chelsea Manhattan Pad,15851669,Lisa,Manhattan,Chelsea,40.7429,-73.99344,Private room,125,1,1,2017-01-30,0.03,1,0 +16976267,Large Room in Queens,113558700,Berat,Queens,Rego Park,40.72804,-73.86147,Private room,30,1,74,2019-06-09,2.53,3,358 +16981845,Smart Studio,16420977,Alli,Manhattan,East Village,40.7251,-73.98914,Entire home/apt,140,2,0,,,1,0 +16983203,Cozy Private Studio Close to JFK w kitchen & bath,113682832,Harry,Queens,Jamaica,40.69637,-73.81034,Private room,47,3,29,2019-05-20,1.02,2,126 +16984336,One bedroom apt in a luxury Building,23297219,Aurora,Brooklyn,Williamsburg,40.71819,-73.96532,Entire home/apt,99,4,16,2018-03-23,0.54,2,86 +16987293,"New, Luxury and Sunny Apartment",57455831,Maggie,Brooklyn,Clinton Hill,40.6944,-73.96606,Entire home/apt,150,1,1,2017-05-06,0.04,2,0 +16987408,"private, large, sunny, calm big room",113740169,Isa,Manhattan,Washington Heights,40.85411,-73.93167,Private room,45,30,4,2018-11-30,0.15,1,275 +16987479,Sunny LEGO’s Home,57455831,Maggie,Brooklyn,Clinton Hill,40.69259,-73.9665,Entire home/apt,150,1,5,2019-03-31,0.19,2,0 +16991994,Spectacular one bedroom Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77743,-73.94977,Entire home/apt,140,31,4,2019-04-12,0.23,33,338 +16992922,90 Washington St. 1 BR furnished,53179388,Raymond,Manhattan,Financial District,40.70829,-74.01405,Entire home/apt,200,30,1,2017-08-13,0.04,10,340 +16994272,Luxury 2-bedroom apartment in Harlem,570464,Nicole,Manhattan,Harlem,40.80926,-73.95419,Entire home/apt,400,4,8,2019-04-12,0.74,1,42 +16995743,Cozy private on Bedford Avenue,53127489,Will,Brooklyn,Williamsburg,40.71404,-73.96119,Private room,35,1,2,2017-02-13,0.07,2,0 +16996170,2 Bed 2 Bath Close to Park pool In Building,113805886,Yaacov,Manhattan,Upper East Side,40.7771,-73.94996,Entire home/apt,240,31,5,2019-06-16,0.34,33,289 +16996664,2 Bed 1 Bath Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77898,-73.94983,Entire home/apt,189,31,7,2019-04-13,0.26,33,331 +16996954,2 Bed 2 Bath Close To Park Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77832,-73.94991,Entire home/apt,225,31,10,2019-06-12,0.48,33,351 +16999426,Beautiful Large Private Apt in Amazing Neighbrhood,113905045,Sofia,Queens,Ditmars Steinway,40.77103,-73.91409,Entire home/apt,175,2,6,2019-05-27,0.21,1,176 +16999617,"Spacious, Sunny Room right by the Subway",19698740,Natalie,Brooklyn,Prospect Heights,40.67762,-73.97097,Private room,50,2,0,,,1,0 +17000278,The Most Amazing Duplex Apt w/ Outdoor Space in BK,63474828,Ryan,Brooklyn,Sunset Park,40.66135,-73.98841,Entire home/apt,185,30,2,2017-05-02,0.07,1,337 +17000577,Charming Brooklyn Heights Abode,113924874,Michi,Brooklyn,Brooklyn Heights,40.70081,-73.99503,Entire home/apt,107,25,12,2019-05-01,0.42,1,1 +17005665,Nice Room in Manhattan,113986628,Lyuda,Manhattan,East Harlem,40.78568,-73.94868,Private room,85,1,18,2019-06-15,0.68,1,357 +17006745,Wonderful 1BR in ideal Williamsburg location,6194871,Christie,Brooklyn,Williamsburg,40.7097,-73.95411,Private room,57,2,31,2019-01-03,1.05,1,40 +17006956,Beautiful Bright Apartment. 30 Mins to Manhattan.,18165343,Nikita,Brooklyn,Sunset Park,40.65729,-73.99917,Entire home/apt,195,2,59,2018-07-31,2.03,1,0 +17007971,Charming Ground Floor,113558977,Joe,Queens,Rego Park,40.72651,-73.86173,Entire home/apt,40,1,101,2019-06-20,3.47,2,74 +17008022,1 Bedroom near Columbia University,24270606,Devin,Manhattan,Morningside Heights,40.81037,-73.95833,Private room,100,5,32,2018-10-24,1.20,1,0 +17009057,Beauty Brooklyn 2BR close to trains 30+ days only,1410860,Sara Kate,Brooklyn,Bedford-Stuyvesant,40.68324,-73.95174,Entire home/apt,300,30,67,2019-06-20,2.43,1,360 +17009742,Charming Light-Filled Apartment in Boerum Hill,15194358,Carly,Brooklyn,Boerum Hill,40.68482,-73.98302,Entire home/apt,150,3,19,2019-07-01,0.65,1,7 +17010314,Williamsburg stylish home!,2092961,Ja,Brooklyn,Williamsburg,40.70881,-73.9468,Entire home/apt,155,3,53,2019-07-06,1.97,1,110 +17013137,Cozy private bedroom in Bedford Stuyvesant,40872011,Clotilde & Nicolas,Brooklyn,Bedford-Stuyvesant,40.68533,-73.91941,Private room,45,2,22,2019-05-20,0.83,1,51 +17013623,"Cute one bedroom apt. in Greenpoint, Brooklyn.",114071959,Greg,Brooklyn,Greenpoint,40.72556,-73.94368,Private room,59,3,64,2019-06-10,2.24,1,162 +17013882,"Big bedroom in Astoria, 20 min from Central Park",7039858,Costas,Queens,Astoria,40.76882,-73.92793,Private room,65,3,23,2018-12-31,0.81,1,23 +17014341,Spacious Studio in E Flatbush,104122404,Vanessa,Brooklyn,East Flatbush,40.63844,-73.92868,Entire home/apt,91,1,117,2019-06-19,3.99,1,60 +17014809,Victorian Sanctuary in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80769,-73.95505,Private room,118,1,95,2019-06-17,3.93,5,224 +17020317,Brooklyn Brownstone parlor living with full A/C,679157,Jeremy,Brooklyn,Prospect Heights,40.68125,-73.97236,Entire home/apt,199,2,4,2019-05-20,0.15,1,179 +17023406,Comfortable Space in Heart of Astoria,114178347,Cliff,Queens,Astoria,40.76625,-73.92447,Shared room,34,30,3,2017-03-20,0.10,1,0 +17023591,Warm and Cozy.,40972641,Christopher,Queens,Fresh Meadows,40.74202,-73.78821,Private room,40,1,18,2017-09-01,0.61,2,0 +17025412,Nolita Bohemian Charmer,580624,Anna,Manhattan,Nolita,40.72078,-73.99473,Private room,100,10,2,2018-04-25,0.09,1,35 +17025831,Large 2Br on W71st & Columbus Feb 19-28,26754726,Julie,Manhattan,Upper West Side,40.77673,-73.98011,Entire home/apt,200,5,0,,,1,0 +17026213,Cozy Bed-Stuy Getaway!,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94447,Private room,51,2,24,2019-06-23,0.83,3,99 +17026435,"Artist room in the heart of Bushwick, Brooklyn NY",114209467,Prashant,Brooklyn,Bushwick,40.69482,-73.91165,Private room,30,1,1,2017-02-09,0.03,1,0 +17027226,"Modern,Elegant,Private,with parking spot,safe area",114219274,Safa,Brooklyn,Fort Hamilton,40.62203,-74.0303,Entire home/apt,87,1,116,2019-06-27,3.99,1,242 +17029482,Very Spacious One Bedroom Apt in Private Townhouse,9772108,Demettre,Manhattan,West Village,40.73452,-74.00825,Entire home/apt,215,2,28,2018-05-04,1.00,1,0 +17029902,Midsize room in Queens.,113558700,Berat,Queens,Rego Park,40.72727,-73.86223,Private room,30,1,59,2019-05-19,2.01,3,89 +17030043,Cozy private room in Bedstuy,21929511,Stephen,Brooklyn,Bedford-Stuyvesant,40.6932,-73.95519,Private room,900,1,1,2017-02-11,0.03,1,89 +17031720,Large private BR in East Harlem near Central Park,18810552,Ceilidh,Manhattan,East Harlem,40.79149,-73.94658,Private room,80,5,0,,,1,0 +17037199,Cozy East Village Room w/Bonus Cats,473063,Lyra,Manhattan,East Village,40.7265,-73.98278,Private room,71,3,76,2019-06-21,2.59,1,25 +17040990,Luxury building in Fort Greene.,1434069,Nathan,Brooklyn,Clinton Hill,40.69088,-73.96653,Entire home/apt,126,1,0,,,1,26 +17041225,"Funky 3 Bedroom Duplex in hip Greenpoint, Brooklyn",1239078,Michael,Brooklyn,Greenpoint,40.72881,-73.95817,Entire home/apt,200,2,35,2017-09-15,1.19,2,0 +17042235,"Classic Brownstone in Williamsburg, BK W/ Backyard",25967444,Joseph,Brooklyn,Williamsburg,40.71247,-73.96155,Entire home/apt,225,3,15,2018-07-29,0.55,1,0 +17043121,Perfect 1 Bedroom in Heart of Lower East Side,21959207,Christopher,Manhattan,Lower East Side,40.72085,-73.98895,Entire home/apt,250,3,67,2019-06-19,3.35,1,149 +17043468,UES oasis,110335252,Karlyn,Manhattan,Upper East Side,40.77428,-73.95363,Private room,100,4,0,,,1,0 +17044038,Big exposed brick room in The East Village,20481502,Emily,Manhattan,East Village,40.72429,-73.98784,Private room,80,90,0,,,1,173 +17044854,Beautiful Private Bedroom in Bronx Apartment,1568820,Figgins,Bronx,Fordham,40.85615,-73.90077,Private room,34,3,7,2019-05-09,0.79,1,126 +17045488,Huge Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.87031,-73.89322,Private room,79,3,98,2019-06-24,3.45,10,68 +17045788,Cute RM in Private Home with Backyard/Near Metro,23878336,Armando,Bronx,Fordham,40.86917,-73.89465,Private room,60,3,77,2019-05-30,2.70,10,65 +17045905,Private Clean Spacious Sunny E Village Studio Apt,26822855,Seth,Manhattan,East Village,40.72425,-73.98976,Entire home/apt,115,10,4,2018-09-03,0.27,1,0 +17045913,Live Like a Local In GREENPOINT,40134417,Ben And Jane,Brooklyn,Greenpoint,40.73076,-73.95575,Entire home/apt,20,4,17,2018-03-20,0.58,1,0 +17046103,Down town east village.,114410100,Lamark,Manhattan,East Village,40.7284,-73.98295,Private room,70,59,0,,,1,333 +17046562,Spacious vintage 3 Bed Room home in Brooklyn,114416273,Jason,Brooklyn,East Flatbush,40.63956,-73.93235,Entire home/apt,165,3,55,2019-06-09,1.95,1,171 +17070038,CHILLIN ON 5TH,105061915,Darlene,Manhattan,Harlem,40.80379,-73.94434,Private room,46,1,25,2019-07-01,0.97,2,91 +17070798,"Artsy One Bedroom Apartment in Sunnyside, LIC",3143126,Paulo,Queens,Sunnyside,40.74615,-73.91558,Entire home/apt,85,5,2,2019-05-13,1.05,1,0 +17071462,Large comfortable room near Penn Station,3660702,Greg,Manhattan,Chelsea,40.7455,-73.9916,Private room,99,1,136,2019-06-21,4.62,4,61 +17072328,Apartment Near Trendy Restaurants & Prospect Park,8635827,Alison,Brooklyn,Crown Heights,40.675,-73.95885,Entire home/apt,206,3,42,2017-08-25,1.46,1,0 +17072544,Light and Airy LES Studio-like Private Bedroom,7106711,James,Manhattan,Chinatown,40.71485,-73.99157,Private room,65,1,2,2017-05-04,0.07,1,0 +17073231,RE - Budget Friendly room in the Greenpoint Area!,83717038,Max,Brooklyn,Greenpoint,40.73714,-73.95333,Private room,55,2,62,2019-06-24,2.11,3,0 +17073870,South Beach Apartment Express to Manhattan,41398005,Mirco,Staten Island,Arrochar,40.59372,-74.06766,Entire home/apt,60,1,25,2019-07-07,0.91,3,12 +17073983,Mags,114541713,Margaret And Orville,Queens,Jamaica,40.68619,-73.79229,Entire home/apt,127,5,52,2019-06-15,1.99,1,44 +17074757,Ready!,22042865,Martha,Queens,Astoria,40.75678,-73.91644,Private room,50,3,1,2019-06-27,1,1,341 +17075535,"Lovely, private studio apartment near Manhattan.",114552571,John,Staten Island,St. George,40.64332,-74.08283,Entire home/apt,120,2,116,2019-07-05,4.00,1,191 +17076329,"Discount at Manhattan Club NYC, June 16-19, 2019",2190447,Stacey,Manhattan,Midtown,40.7658,-73.98218,Entire home/apt,275,7,0,,,1,0 +17076571,Middle of center of New York City!,15625009,Anders,Manhattan,Upper West Side,40.78461,-73.97627,Entire home/apt,165,1,152,2019-07-06,5.32,1,228 +17076735,Summer Special-Near Bronx Zoo/Botanic Garden/Metro,114568204,Angela,Bronx,Pelham Gardens,40.86673,-73.845,Entire home/apt,119,3,75,2019-07-01,2.74,1,146 +17078010,Bushwick apartment (bedroom) right off L train!,1286399,Lauren,Brooklyn,Bushwick,40.70072,-73.91594,Private room,150,1,3,2018-10-09,0.10,1,359 +17078612,COZI AND GLAM IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.79154,-73.94233,Private room,65,1,186,2019-06-28,6.38,4,199 +17079313,YOUR DREAM SUITE IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.78966,-73.94232,Private room,103,1,149,2019-06-22,5.06,4,215 +17080093,Williamsburg Sunny Spacious Bedroom Great Location,53743935,Kathy,Brooklyn,Williamsburg,40.71096,-73.95171,Private room,65,3,7,2019-05-27,0.24,1,2 +17084539,Amazing apartment in Manhattan,296231,Chester,Manhattan,Theater District,40.75662,-73.98749,Private room,300,3,0,,,1,0 +17085792,Bedroom for 1 or 2 ideal location,24034601,Alizee,Brooklyn,Park Slope,40.68249,-73.97787,Private room,60,5,0,,,1,0 +17088382,"A Prime location private room furnished 3br,2b ap",420399,Gautam,Manhattan,Upper East Side,40.77158,-73.95786,Private room,80,5,3,2019-06-20,0.15,2,50 +17093180,Studio in Manhattan (UES),99634835,Aspano,Manhattan,Upper East Side,40.77058,-73.95358,Entire home/apt,160,1,68,2019-06-04,2.33,1,19 +17094226,1 Bedroom 3 People - The Heart of Jackson Heights,114700646,Daniel,Queens,East Elmhurst,40.76123,-73.88597,Private room,75,5,69,2019-06-24,2.45,1,67 +17095035,Large NYC FLAWLESS Room Close to public transport,55948559,Barry,Bronx,Pelham Gardens,40.86686,-73.84207,Private room,35,1,16,2019-01-21,0.61,4,3 +17095296,RF - Budget Friendly room in the Greenpoint Area!,11612872,Robert,Brooklyn,Greenpoint,40.73571,-73.95372,Private room,55,1,111,2019-06-22,3.77,3,9 +17095350,Adorable West Village One Bedroom,27234116,Lily,Manhattan,Greenwich Village,40.732,-73.99959,Entire home/apt,175,2,0,,,1,0 +17095846,Amazing brownstone with private room!,96829433,Matthew,Brooklyn,Bedford-Stuyvesant,40.6924,-73.93485,Private room,55,5,14,2018-01-05,0.54,1,0 +17095925,Comfy Bedroom in Bushwick (3mins from Train),9439324,Chérie,Brooklyn,Bushwick,40.68699,-73.9056,Private room,46,1,63,2019-05-25,2.32,3,0 +17095971,Charming Cozy Designer Home- Private House,69366752,Maggie,Queens,Forest Hills,40.73576,-73.85434,Entire home/apt,95,2,153,2019-07-01,5.31,2,106 +17097239,Coney Island Pvt 1 Br Apt. * Wi-Fi,114736959,Ed,Brooklyn,Coney Island,40.57575,-73.98465,Entire home/apt,115,2,63,2019-06-19,2.23,6,140 +17097495,The Chester Himes Room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80926,-73.94979,Private room,75,3,48,2019-06-19,1.64,4,9 +17097898,Private room 5 mins to Manhattan 2 blocks to train,51459559,Rossana,Queens,Astoria,40.75902,-73.9154,Private room,47,4,39,2019-05-10,1.50,2,292 +17104272,Private delightful & calming Brownstone Room,23714657,Melani,Brooklyn,Bedford-Stuyvesant,40.69471,-73.93736,Private room,70,2,5,2018-12-31,0.27,1,272 +17105446,"15 Minutes to Manhattan, Heart of Astoria",2350326,Ero,Queens,Ditmars Steinway,40.77811,-73.91065,Private room,70,1,5,2019-06-27,4.69,2,31 +17106473,Contemporary 3BR w Nursery in Brownstone Brooklyn,14927662,Michael,Brooklyn,Carroll Gardens,40.68255,-73.99281,Entire home/apt,100,4,4,2018-11-25,0.14,1,15 +17106644,Urban Elegance in Crown Heights,1527966,Tiffany,Brooklyn,Crown Heights,40.67395,-73.95682,Entire home/apt,135,3,17,2018-12-31,0.68,1,0 +17106705,Above Season Beach Loft,114853757,Abra & Domenic,Queens,Rockaway Beach,40.58718,-73.81541,Entire home/apt,145,2,42,2019-05-27,1.63,1,310 +17107385,...Su Casa,16995499,Sam,Queens,Sunnyside,40.74993,-73.91346,Entire home/apt,75,2,0,,,1,0 +17107656,Colorful 1 Bedroom in the Heart of the E. Village,65971028,Tamarinda,Manhattan,East Village,40.72709,-73.98612,Entire home/apt,125,30,2,2017-09-01,0.08,1,0 +17108224,Stunning Brand New 2bed/2bath House Best Loacation,49701132,Bonnie,Manhattan,Chelsea,40.74187,-74.00622,Entire home/apt,600,1,86,2019-06-07,3.04,1,261 +17108306,Large apartment in Upper East with doorman!,108795105,Danni,Manhattan,Upper East Side,40.78471,-73.95054,Private room,89,4,7,2018-01-01,0.26,1,188 +17108395,10mins to Manhattan Times Square,114877351,Dennis,Queens,Astoria,40.76646,-73.92847,Entire home/apt,125,2,14,2018-10-07,0.48,1,0 +17108995,@ AMAZING ROOM @ TIMES SQUARE @ BEST LOCATION @,15941961,Ralph,Manhattan,Hell's Kitchen,40.76109,-73.99305,Private room,135,3,126,2019-06-17,4.42,1,3 +17109623,Sunny Renovated Private Room in the East Village,6387274,Concetta,Manhattan,East Village,40.72415,-73.97451,Private room,125,1,95,2019-06-21,3.28,1,86 +17111449,Spacious Private Room - Harlem/Manhattan Townhouse,4538012,Karen,Manhattan,East Harlem,40.80921,-73.94002,Private room,70,2,89,2019-06-29,3.28,4,249 +17112036,Beautiful Private Room - Harlem/Manhattan Townhome,4538012,Karen,Manhattan,Harlem,40.81055,-73.94016,Private room,65,2,71,2019-06-26,2.63,4,309 +17116411,3-BDRM/2 BATH Apartment AMAZING LOCATION on UWS!,114977427,Nancy And John,Manhattan,Upper West Side,40.77836,-73.97994,Entire home/apt,489,3,81,2019-07-01,3.01,1,152 +17117129,LastM & EarlyBirdDiscount! ModernCozy Apt Parkview,114988251,A. Kaylee,Brooklyn,Prospect-Lefferts Gardens,40.65608,-73.96176,Entire home/apt,99,2,26,2019-06-27,2.05,1,272 +17117602,Sunny Brick wall bedroom in Lower East Side,12233435,Steph,Manhattan,Chinatown,40.71449,-73.99094,Private room,70,5,0,,,1,0 +17117631,The Corky Hale Room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80937,-73.94989,Private room,120,2,29,2019-05-10,1.03,4,0 +17118782,Modern East Village Tenement (1 bedroom),36383228,Amanda,Manhattan,East Village,40.72576,-73.97908,Entire home/apt,160,5,25,2019-05-27,0.90,1,0 +17120052,"Great 1BR available in E Vlg, close to everything!",3939029,John,Manhattan,East Village,40.7252,-73.98339,Private room,125,1,21,2019-06-03,0.75,1,363 +17120582,The McCarren - A Two Bedroom Over the Park! #10262,9673465,Chris,Brooklyn,Greenpoint,40.72282,-73.94856,Entire home/apt,300,3,48,2019-06-23,1.69,1,3 +17121563,Uptown Gem,64960623,Tipicah,Manhattan,Harlem,40.82376,-73.94198,Private room,85,1,0,,,1,0 +17122054,Charming Duplex in Manhattan,115057851,Chito And Xavier,Manhattan,East Harlem,40.80999,-73.93946,Entire home/apt,115,3,86,2019-07-02,2.99,2,85 +17122333,Luxury 2Bed/2Bth Private Loft Best NYC Location,48891349,Riley,Manhattan,West Village,40.74049,-74.00527,Entire home/apt,600,1,106,2019-06-21,3.75,1,286 +17122439,Charming Studio with your Own Private Patio,115057851,Chito And Xavier,Manhattan,East Harlem,40.80827,-73.93813,Entire home/apt,100,3,103,2019-07-01,3.61,2,32 +17122814,Sunny room,33675739,Giselle,Manhattan,East Harlem,40.79315,-73.93984,Private room,47,2,60,2019-06-23,2.52,2,233 +17123353,*WINTER DISCOUNT WILLIAMSBURG CHIC W/PRIVATE PATIO,33161690,Alison,Brooklyn,Williamsburg,40.71722,-73.95477,Entire home/apt,130,3,66,2019-07-03,2.36,1,257 +17123646,Oversized bedroom with living space,22926868,Xenia,Brooklyn,Sunset Park,40.64672,-74.00087,Private room,55,20,23,2019-06-23,0.84,3,41 +17123684,NEW YORK CENTRAL APARTMENT/TIME SQUARE,26089606,Carlotta,Manhattan,Hell's Kitchen,40.75659,-73.99313,Entire home/apt,230,3,13,2018-10-20,0.46,1,260 +17125159,Clean and Stylish Newly Renovated Apartment,115092398,J,Manhattan,Harlem,40.81843,-73.94401,Entire home/apt,125,1,78,2019-06-22,2.70,1,40 +17129825,Fully furnished room on 110th St Broadway for rent,39091267,Ankit,Manhattan,Morningside Heights,40.80437,-73.96387,Shared room,35,1,0,,,1,0 +17130293,furnished private room/bathroom,97543375,Jennifer,Brooklyn,Williamsburg,40.71506,-73.94158,Private room,85,2,3,2018-09-02,0.22,2,40 +17133439,Beautiful modern & large 2 bedroom,11606007,Vikas,Manhattan,Midtown,40.74433,-73.98318,Entire home/apt,450,2,0,,,1,0 +17133664,"Modern, Spacious Hideaway in Historic Brooklyn",45409030,Trouve,Brooklyn,Kensington,40.64309,-73.97707,Entire home/apt,110,6,12,2018-07-17,0.41,1,0 +17134357,Cozy large BR steps to AMNH,780958,Liliana,Manhattan,Upper West Side,40.78587,-73.97468,Private room,100,5,11,2017-07-23,0.39,1,0 +17136721,Charming Room on Prime SoHo Block,41965551,Philip,Manhattan,SoHo,40.72576,-74.00266,Private room,80,1,131,2019-06-24,4.56,1,20 +17137388,Bohemian room in the heart of Greenwich Village,9132087,Brandon,Manhattan,Greenwich Village,40.72766,-73.99976,Private room,98,1,0,,,2,0 +17137626,"~UptownOasis~ Historic charm, HUGE room & privacy•",11167829,Dana (& Justin),Manhattan,Harlem,40.82935,-73.94255,Private room,54,2,72,2019-06-30,2.54,3,63 +17138076,"Pop up room, 5 minutes to jfK",114975592,John And Colleen,Queens,Springfield Gardens,40.66663,-73.76417,Private room,60,1,37,2018-10-03,1.53,4,84 +17138302,Sunny and Bright Studio in Upper West Side!,2771711,Gina,Manhattan,Upper West Side,40.80212,-73.9692,Entire home/apt,120,1,2,2017-03-04,0.07,1,0 +17140695,Sun-Filled Apartment in Bushwick,2770769,Karen,Brooklyn,Bushwick,40.69864,-73.92827,Entire home/apt,115,90,2,2017-07-24,0.08,1,34 +17140748,"Clean sm room, with shared space. Great location.",92202937,Natalie,Brooklyn,South Slope,40.66632,-73.9862,Private room,100,1,2,2017-10-22,0.09,1,87 +17140782,Williamsburg Loft,16868847,Sophie,Brooklyn,Williamsburg,40.71779,-73.96337,Private room,129,2,0,,,1,0 +17141182,"Private, Clean, 1.5 Bedroom Apt",114157738,Alyssa,Manhattan,Morningside Heights,40.80338,-73.9636,Entire home/apt,100,1,19,2018-02-15,0.66,1,0 +17141413,Cozy studio close to train and shopping avenue!!!,55468876,Matt,Queens,Ridgewood,40.70575,-73.90171,Entire home/apt,90,1,109,2019-06-30,3.97,1,75 +17141577,Cosy and Spacious Master Bedroom in Williamsburgh,26870769,Emilia,Brooklyn,Williamsburg,40.71648,-73.94066,Private room,60,87,4,2017-09-19,0.14,1,173 +17141884,Private room in a Luxury building: Midtown NYC,32383664,Karthik,Manhattan,Midtown,40.75151,-73.97114,Private room,60,30,1,2017-06-05,0.04,1,0 +17142987,Charming Apartment with Private Backyard,78154356,Mirela And Daniel,Bronx,Pelham Bay,40.84752,-73.82797,Entire home/apt,89,2,94,2019-06-20,3.20,1,252 +17147561,Best Location + Private Roof Deck,51850937,Joe,Manhattan,East Village,40.73109,-73.98234,Private room,85,1,209,2019-06-17,7.18,3,252 +17149950,Entire One bedroom Apartment in Midtown Manhattan,7616444,Ramin,Manhattan,Midtown,40.75029,-73.98402,Entire home/apt,350,5,4,2017-10-31,0.15,1,0 +17150899,Modern new large duplex apartment.,27072611,Vinny,Manhattan,Kips Bay,40.73829,-73.97896,Entire home/apt,285,1,79,2019-06-21,2.70,1,310 +17151145,Quiet West Village Gem,4628742,Manesh,Manhattan,West Village,40.73394,-74.00302,Entire home/apt,125,1,6,2019-01-29,0.21,1,0 +17151230,Right in the middle of it all!,36579189,Daniel,Manhattan,SoHo,40.7204,-74.00047,Private room,109,1,63,2018-06-25,2.23,1,0 +17152737,Chelsea Artist's Apartment,12578148,Felicity,Manhattan,Chelsea,40.74353,-73.99709,Entire home/apt,545,5,42,2019-06-26,1.57,1,322 +17153913,Charming Sunny Williamsburg/Greenpoint Apartment,2800064,Joseph,Brooklyn,Greenpoint,40.72399,-73.95166,Entire home/apt,208,4,61,2019-06-23,2.26,1,255 +17154204,Tranquil space,16995590,Steph,Queens,Rosedale,40.65439,-73.73185,Entire home/apt,100,2,45,2019-06-09,1.70,1,360 +17155039,East Harlem QtPoC Living Space,46108407,Walesca,Manhattan,East Harlem,40.80224,-73.93732,Private room,48,1,1,2018-04-28,0.07,1,0 +17156147,Sunny Railroad Apt,10762635,Shea,Brooklyn,Crown Heights,40.67685,-73.94033,Entire home/apt,93,6,0,,,1,0 +17157438,"Charming, Artsy Bedroom in the Heart of Brooklyn",1784335,Sara,Brooklyn,Crown Heights,40.67627,-73.95024,Private room,60,2,6,2017-07-31,0.21,1,0 +17157615,"East Village, Private room with access to garden",115395049,Adi And Evangel,Manhattan,East Village,40.72584,-73.9894,Private room,78,1,38,2019-06-21,1.30,2,138 +17158871,"19th Cent. Brooklyn Hts, Moments from Manhattan",17727305,Stephen,Brooklyn,Brooklyn Heights,40.69754,-73.99298,Entire home/apt,270,4,48,2019-07-01,1.73,1,172 +17168007,"NYMT07-1 LUXURY! Studio,Cozy,Gym,doorman Stu-7",39890192,Laura,Manhattan,Hell's Kitchen,40.76536,-73.98864,Entire home/apt,160,45,6,2019-05-22,0.63,12,365 +17171691,Modern 1 Bedroom Luxury Apartment in Dumbo,115517627,Kevin,Brooklyn,Vinegar Hill,40.69891,-73.98423,Entire home/apt,175,4,1,2017-10-22,0.05,1,0 +17172375,Skyscraper Living in Midtown,29240443,Luis,Manhattan,Theater District,40.76106,-73.98627,Entire home/apt,180,3,3,2017-05-21,0.11,1,0 +17173473,Ocean Blue Room,113558977,Joe,Queens,Rego Park,40.7265,-73.86017,Private room,30,1,120,2019-06-11,4.10,2,112 +17174519,Chelsea Brownstone 3 Bedroom House,10590692,Wade,Manhattan,Chelsea,40.74443,-74.00012,Entire home/apt,650,3,35,2019-07-03,1.61,2,179 +17176173,Artistic room steps from A train,1506191,Caitlin,Manhattan,Washington Heights,40.85188,-73.93588,Private room,70,1,26,2019-05-19,1.08,1,0 +17177726,Spacious and Bright Brooklyn Two Bedroom Apartment,700224,Shane & Nicole,Brooklyn,Gowanus,40.68361,-73.98671,Entire home/apt,185,30,10,2019-05-11,0.53,4,323 +17178617,2 Blocks from Subway | Artsy BK Space,106940781,Corey,Brooklyn,Bushwick,40.69838,-73.93527,Private room,50,21,0,,,1,0 +17186648,Awesome Bedroom in Beautiful Brooklyn Apartment,92322271,Mark,Brooklyn,Crown Heights,40.67055,-73.94616,Private room,65,2,0,,,2,0 +17186834,Private charming room for gate away.,59505164,Ali,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9449,Private room,59,4,74,2019-06-15,2.52,1,85 +17187219,Beautiful and Ridiculously Spacious Master Bedroom,115543091,Yana,Brooklyn,Flatbush,40.65221,-73.95848,Private room,53,2,0,,,1,0 +17187785,Private room in bustling East Village,105631352,Taylor,Manhattan,East Village,40.72537,-73.97878,Private room,65,2,147,2019-06-20,5.07,3,18 +17187942,"Cozy, neat, spacious 2 BR apartment in East Harlem",2247818,Gonda,Manhattan,East Harlem,40.80268,-73.94051,Entire home/apt,100,10,28,2019-05-31,0.97,1,0 +17188328,Cozy studio in the heart of the West Village,6375225,Jennifer,Manhattan,West Village,40.73376,-73.99982,Entire home/apt,150,3,0,,,1,0 +17188790,Large Bedroom next to Prospect Park and BK Museum,45775461,Azza,Brooklyn,Prospect Heights,40.67365,-73.96384,Private room,80,3,4,2019-06-14,0.15,1,88 +17189484,The Traveler's Suite,21376087,LeeAna,Brooklyn,Greenpoint,40.73301,-73.95835,Entire home/apt,100,2,176,2019-06-30,6.02,1,14 +17189799,Spacious Studio - Midtown East,4316106,George,Manhattan,Midtown,40.7544,-73.96721,Entire home/apt,200,2,43,2019-04-10,1.48,1,0 +17189812,"Beautiful, Modern, Airy, Comfy, Art Music Studio",4576564,Chris,Queens,East Elmhurst,40.75625,-73.88957,Private room,64,1,44,2019-04-20,2.21,1,0 +17189819,"Bright, beautiful room, just block to A, C train",10210950,Olya,Brooklyn,Bedford-Stuyvesant,40.67704,-73.91484,Private room,60,1,13,2017-12-13,0.46,1,0 +17192158,Comfortable and Cozy House near Columbia,21638962,Su Lim,Manhattan,Washington Heights,40.84543,-73.9401,Entire home/apt,50,1,1,2017-02-19,0.03,1,0 +17192309,3 Bedroom Cozy Apartmnet,66978896,Viviana,Brooklyn,Bushwick,40.69149,-73.91291,Entire home/apt,160,4,21,2018-09-20,0.75,2,189 +17192800,法拉盛summer家(C)closed to JFK&LGA&Citi Field#Parking,62023756,Chang,Queens,Fresh Meadows,40.74637,-73.7842,Private room,55,1,50,2019-07-07,3.51,3,67 +17193761,Ideal Cute Sunny Room,97513787,Daniel,Manhattan,Chinatown,40.71573,-73.99176,Private room,63,20,31,2018-09-23,1.09,5,218 +17197830,Sunny room in quiet area of Brooklyn,2204797,Vita,Brooklyn,Bushwick,40.68185,-73.90455,Private room,30,7,0,,,1,0 +17208528,Room w/ Private Bathroom in Heart of Bushwick,84523696,Esaies,Brooklyn,Bushwick,40.69423,-73.91993,Private room,90,2,3,2017-07-30,0.12,1,0 +17209321,Tranquil Room in Manhattan,45731391,Laurence,Manhattan,Lower East Side,40.72045,-73.99004,Private room,98,2,20,2019-06-23,0.77,3,0 +17209680,"Sunny, quiet and oh-so-central East Village nest.",1226375,Tina,Manhattan,East Village,40.72334,-73.9839,Entire home/apt,110,2,29,2019-05-27,1.53,1,15 +17210810,Perfect West Village Apartment,6950431,Mike And Lori,Manhattan,West Village,40.73532,-74.0031,Entire home/apt,170,3,1,2017-02-20,0.03,1,0 +17210984,Artists' Room in Beautiful Brownstone Brooklyn,115845698,Chelsea,Brooklyn,Carroll Gardens,40.68148,-73.99315,Private room,95,3,72,2019-06-30,2.56,1,67 +17211246,Cute clean 1 rm,31546047,Miyu,Manhattan,Hell's Kitchen,40.76553,-73.98879,Private room,118,2,16,2019-07-01,0.63,1,24 +17211583,Minimalist Hideaway In The Heart of Bushwick,278393,Dylana,Brooklyn,Bushwick,40.69796,-73.92409,Private room,43,2,88,2019-06-12,3.02,3,84 +17211881,A Cozy 2-Bedroom Apartment in Astoria.,115854849,Cem,Queens,Astoria,40.77355,-73.92552,Entire home/apt,100,7,4,2019-05-29,0.17,1,0 +17211908,Sunny and Serene,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68412,-73.92734,Private room,45,2,61,2019-06-23,2.40,3,110 +17212052,1BR - Prime Williamsburg Location - Outdoor Space,12570191,Katie,Brooklyn,Williamsburg,40.71262,-73.96251,Entire home/apt,199,2,38,2019-06-16,1.32,1,94 +17214699,Charming Apt Mins Away from City,114621718,Hope,Brooklyn,Gowanus,40.67706,-73.98406,Entire home/apt,146,1,106,2019-06-29,3.78,2,341 +17218433,ACTOR PHILIP SEYMOUR HOFFMAN LIVED HERE,4554793,Aryn,Manhattan,Chelsea,40.73899,-73.99912,Entire home/apt,239,3,15,2019-02-17,0.65,1,42 +17219303,Stylish Apt in the Heart of Greenwich Village,1700359,Sharon,Manhattan,NoHo,40.72723,-73.99186,Entire home/apt,195,30,5,2019-05-31,0.19,1,34 +17219608,Beautiful 2 Bedroom Apartment in Ridgewood,115939440,Mika,Queens,Ridgewood,40.69645,-73.90223,Entire home/apt,100,2,1,2017-07-14,0.04,1,0 +17220307,"Designer's picturesque, large flat",115946844,Kelsey,Brooklyn,Brooklyn Heights,40.69819,-73.99324,Entire home/apt,103,2,13,2017-12-30,0.45,1,0 +17222011,Spacious Apartment in the Heart of Manhattan,3558557,Natalie,Manhattan,Gramercy,40.73556,-73.98913,Entire home/apt,159,2,15,2019-05-12,0.57,1,33 +17222454,Sun Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76367,-73.87088,Private room,48,1,417,2019-07-07,14.36,5,338 +17223109,Cute Chelsea Apartment - 1 BR - Amazing Location!,10160214,Mario,Manhattan,Chelsea,40.73977,-73.99938,Entire home/apt,190,12,5,2019-06-06,0.50,1,32 +17223725,"Artistic Room with AC,3 Mins walk to the subway",37163867,Mada,Queens,Long Island City,40.75455,-73.92006,Private room,80,30,18,2019-07-01,0.62,1,92 +17224136,Spacious Apt. 20 Mins from Manhattan!,81876750,Dan,Queens,Astoria,40.76043,-73.91465,Private room,96,2,18,2019-04-28,0.62,1,364 +17224372,Friendly Room 20-202,115993835,Shimin,Brooklyn,Sunset Park,40.63992,-74.0076,Private room,28,1,31,2019-03-10,1.08,5,1 +17224797,Quiet Apt in the Upper West Side near Central Park,115567902,Élodie,Manhattan,Upper West Side,40.78141,-73.97681,Entire home/apt,160,4,22,2019-03-22,0.75,1,0 +17225037,Private Room20-102,115993835,Shimin,Brooklyn,Sunset Park,40.63929,-74.00669,Private room,30,1,27,2019-04-01,1.64,5,168 +17231011,Clean 1br w/Parking Incl. also 10min near JFK/LGA,116056294,Kabak,Queens,Rego Park,40.73048,-73.85331,Private room,50,1,34,2019-07-06,1.17,1,347 +17233611,Beachy sun drenched studio in NYC,6705828,Patricia,Manhattan,Gramercy,40.7363,-73.98969,Entire home/apt,300,3,0,,,1,93 +17233932,Private Bedroom in Williamsburg,17928071,Mabel,Brooklyn,Williamsburg,40.71162,-73.95631,Private room,85,3,12,2019-05-14,0.58,2,289 +17234796,Astoria 1BR in Quiet Corner Close to Manhattan,261608,Aron,Queens,Ditmars Steinway,40.772,-73.91848,Entire home/apt,60,4,3,2018-10-14,0.10,1,0 +17234955,Getaway 2 Bed 1 Bath close to park,113805886,Yaacov,Manhattan,Upper East Side,40.77747,-73.95193,Entire home/apt,190,31,4,2019-01-03,0.21,33,299 +17236095,Spectacular 2 bed 1 bath Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77878,-73.9501,Entire home/apt,180,31,10,2019-05-31,0.55,33,331 +17236462,Large 2 bed 2 bath close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77823,-73.95127,Entire home/apt,235,31,9,2019-02-19,0.39,33,333 +17237486,Bright & Spacious Chelsea Studio,13238971,Adel,Manhattan,Chelsea,40.74281,-73.99969,Entire home/apt,175,4,5,2018-06-21,0.23,1,8 +17237922,Big 1 bdroom w balcony Williamsburg,116126452,Brian,Brooklyn,Williamsburg,40.70721,-73.95341,Entire home/apt,160,2,17,2018-07-09,0.59,1,3 +17239021,"East Village, private room with free breakfast",115395049,Adi And Evangel,Manhattan,East Village,40.72598,-73.98856,Private room,145,1,25,2019-05-26,0.88,2,329 +17239212,Cozy Brooklyn Apartment,51706510,Daniella,Brooklyn,Gowanus,40.6707,-73.99118,Shared room,37,1,9,2017-05-08,0.31,1,0 +17239321,Awesome Apartment in the E Village!,6489574,Wilson,Manhattan,East Village,40.72759,-73.98619,Entire home/apt,140,1,31,2019-06-30,1.14,1,1 +17239807,Private entrance large room BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67203,-73.922,Private room,45,2,18,2018-06-04,0.63,5,0 +17240729,"Guest Room in High Ceiling Duplex, Williamsburg! 1",40511252,Auset,Brooklyn,Williamsburg,40.70585,-73.9531,Private room,52,30,4,2019-03-24,0.17,3,294 +17242854,Yankee Stadium apartment in Bronx,8159536,Genae,Bronx,Concourse,40.83243,-73.92035,Private room,40,1,11,2019-02-20,0.42,3,239 +17249755,Bedstuy/Bushwick - Fully Renovated One Bedroom,11638358,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69,-73.93783,Entire home/apt,100,4,77,2019-06-16,2.66,2,100 +17251611,"Cozy bdrm. Astoria, Queens. 10 min to Manhattan.",26561588,Tyler,Queens,Astoria,40.7578,-73.92368,Private room,40,2,1,2017-02-20,0.03,1,0 +17252037,Sunny atelier in bustling East Village,105631352,Taylor,Manhattan,East Village,40.72412,-73.97815,Private room,74,2,29,2018-04-22,1.01,3,0 +17252229,Balcony on 2nd floor Entire Apt close to Subway,116268542,Sunshine,Brooklyn,East New York,40.67404,-73.88276,Entire home/apt,62,1,98,2019-06-25,3.40,1,23 +17252480,Private Studio in a superb location,3726590,Carolyn Li Ming,Manhattan,Upper East Side,40.76851,-73.95506,Entire home/apt,150,1,6,2019-05-02,0.21,1,7 +17253932,One bedroom apt right on Franklin Ave,12334470,Rebecca,Brooklyn,Crown Heights,40.66881,-73.95743,Entire home/apt,100,50,8,2018-01-02,0.33,1,0 +17254708,Private BR in Manhattan right near express trains!,2158706,James,Manhattan,Harlem,40.81288,-73.94155,Private room,49,1,11,2017-08-11,0.40,1,0 +17254855,Cozy Greenpoint bedroom #2,26899015,Daniel,Brooklyn,Greenpoint,40.72317,-73.94856,Private room,70,2,0,,,1,0 +17255171,An Oasis in the Big Apple,40032009,Arianna,Manhattan,Morningside Heights,40.80387,-73.96367,Entire home/apt,200,5,2,2017-03-14,0.07,2,0 +17255526,Brooklyn Bushwick,112261228,Yuval,Brooklyn,Bushwick,40.69718,-73.92157,Private room,45,2,72,2019-06-29,2.54,1,51 +17255880,Modern Rooftop Loft W/ Private Ensuite & Cityviews,48076117,Shelley,Brooklyn,Crown Heights,40.6752,-73.93215,Private room,75,1,213,2019-06-30,7.71,2,52 +17255913,Newly Renovated / No cleaning Fee / Hell's Kitchen,4454849,Chase,Manhattan,Hell's Kitchen,40.76407,-73.99203,Entire home/apt,131,2,0,,,1,0 +17256799,URBAN LUXURY 2BR DUPLEX~24/7 DOORMAN/GYM~SUTTON PL,2856748,Ruchi,Manhattan,Midtown,40.75802,-73.96125,Entire home/apt,500,90,0,,,49,364 +17257339,Contemporary. Spacious Apartment. Close to Ferry.,115259709,Paul,Staten Island,St. George,40.64508,-74.08126,Entire home/apt,180,2,59,2019-06-25,2.21,1,135 +17257473,LIVING THE NYC EXPERIENCE,7889472,Jose Luis,Manhattan,Harlem,40.81922,-73.95672,Entire home/apt,355,5,14,2018-04-30,0.49,1,89 +17258228,Little Red and the big GWB,116333529,Gina,Manhattan,Washington Heights,40.85076,-73.94047,Private room,50,1,0,,,1,0 +17261922,Townhouse apt. Close to city. 3 bedrooms & 2 bath,116365995,Dan,Queens,Woodside,40.74705,-73.90792,Entire home/apt,275,4,31,2019-07-04,1.21,2,283 +17263207,Brooklyn home. Comfort and clean. Liguria room.,2787,John,Brooklyn,Bensonhurst,40.60877,-73.97382,Private room,49,1,19,2019-06-08,0.70,6,360 +17263550,Thelonious Monk room at The Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80754,-73.95151,Private room,58,2,68,2019-06-26,2.35,4,1 +17265284,"Luxury/3 bdrms/2 baths/private parking/1,000 sqft",116396065,Amy,Brooklyn,Sheepshead Bay,40.6027,-73.9486,Entire home/apt,179,2,101,2019-07-06,3.53,1,211 +17266124,"Shay's Place #1 +( 1 Bdrm. Apt ) +5 mins From JFK",116404073,Sheila,Queens,Springfield Gardens,40.66812,-73.76303,Entire home/apt,95,1,240,2019-07-07,9.66,2,253 +17266255,Custom Designed West Village 2 Bedroom,29893723,Sam,Manhattan,West Village,40.73115,-74.00429,Entire home/apt,158,1,5,2017-05-11,0.18,1,0 +17267017,Spacious Private 1BR with more sleeping space,95341719,Estie,Brooklyn,Crown Heights,40.67013,-73.94397,Entire home/apt,165,2,23,2019-07-04,0.83,3,182 +17267665,"Spacious, Private 1BR with more sleeping space",95341719,Estie,Brooklyn,Crown Heights,40.66977,-73.94341,Entire home/apt,169,2,31,2019-06-26,1.15,3,175 +17268091,Entire Studio Apt in Trendy Brooklyn - Sunny&clean,6396827,Gyaltsen Benita,Brooklyn,Crown Heights,40.67083,-73.94808,Entire home/apt,135,2,18,2017-11-20,0.64,1,0 +17268111,Lighted Luxury Studio!,40821640,Alina,Queens,Forest Hills,40.72737,-73.85156,Entire home/apt,50,27,0,,,1,0 +17268340,"Spacious, Private Apartment in Bed Stuy, Brooklyn",116427778,Mel,Brooklyn,Bedford-Stuyvesant,40.68318,-73.91682,Entire home/apt,85,3,35,2018-07-30,1.22,1,0 +17269114,RH - Budget Friendly room in the Greenpoint Area!,11612872,Robert,Brooklyn,Greenpoint,40.73643,-73.95495,Private room,53,2,78,2019-06-07,2.68,3,14 +17269342,Large one-bedroom in of Manhattan mid-town west,114890218,Marc,Manhattan,Hell's Kitchen,40.76269,-73.99139,Entire home/apt,185,7,20,2019-03-27,0.71,1,23 +17269656,"Magical, Welcoming & Beautiful Huge 1 Bedroom Apt",57655724,Kay,Manhattan,Midtown,40.75598,-73.97034,Entire home/apt,260,2,64,2019-06-16,2.36,1,131 +17270768,Newly Renovated Greenpoint Abode,8833885,Leslie,Brooklyn,Greenpoint,40.72385,-73.9458,Entire home/apt,160,2,91,2019-06-27,3.35,2,101 +17277132,"BROOKLYN HEIGHTS Private Studio, 1 stop Manhattan!",5130754,Patrick,Brooklyn,Brooklyn Heights,40.69343,-73.99611,Entire home/apt,100,4,3,2019-06-15,0.20,1,4 +17278544,SUNNY AND SPACIOUS FULL FLOOR APT!!,11661027,Jennifer,Brooklyn,Greenpoint,40.72699,-73.9581,Entire home/apt,240,2,16,2019-05-05,0.57,1,302 +17280743,Essex House Historic Condo/hotel,29339405,Haydee,Manhattan,Midtown,40.76579,-73.97701,Entire home/apt,300,5,3,2017-07-18,0.12,1,115 +17280847,Beautiful 2BR with Private Rooftop Deck LES,7384312,Jackie,Manhattan,Lower East Side,40.71306,-73.98715,Entire home/apt,250,1,67,2019-06-23,2.46,1,185 +17281121,"Beautiful 1 bedroom apart, Washington Heights",17713747,Polly,Manhattan,Washington Heights,40.85369,-73.93237,Private room,60,7,1,2018-01-06,0.05,3,0 +17281347,Private Garden Apt in Boerum Hill,15999314,Stephanie,Brooklyn,Boerum Hill,40.68749,-73.98701,Entire home/apt,149,2,0,,,1,0 +17283064,法拉盛summer家(B)closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74624,-73.78327,Private room,69,1,62,2019-07-05,4.26,3,65 +17284471,Modern Apt on Best Location in Brooklyn !,1409823,Fernando,Brooklyn,Bedford-Stuyvesant,40.68859,-73.94998,Entire home/apt,75,5,16,2019-05-28,0.58,1,15 +17285384,Manhattan cozy bedroom with private bathroom,59794802,Lilian,Manhattan,Hell's Kitchen,40.76642,-73.99423,Private room,150,6,0,,,1,51 +17286647,Charming 1 Bedroom in center of East Village,3407346,Anna,Manhattan,East Village,40.72645,-73.98591,Entire home/apt,150,90,28,2019-04-30,1.03,1,0 +17287645,Wonderful Charming Apt- Columbia University Area,40741349,Mitsue,Manhattan,Washington Heights,40.83705,-73.94083,Private room,60,1,3,2018-07-01,0.21,1,341 +17294950,A Room with a View at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.69554,-73.92458,Private room,80,3,179,2019-07-03,6.17,3,191 +17295495,Private Room in Hell's Kitchen,6807898,Sam,Manhattan,Hell's Kitchen,40.76076,-73.99266,Private room,110,1,7,2019-06-23,0.24,1,45 +17297014,Chelsea/Union Square cozy studio,126718,Alejandro,Manhattan,Chelsea,40.73958,-73.9975,Entire home/apt,160,2,1,2017-06-25,0.04,1,0 +17297467,Big Beautiful Room in Quiet Area with Private Bath,55198931,Monica & Robin,Brooklyn,Flatbush,40.64774,-73.96517,Private room,65,2,12,2017-10-03,0.44,1,294 +17297799,HUGE bright bedroom in prime Williamsburg!,17518837,Anna Marie,Brooklyn,Williamsburg,40.7179,-73.95702,Private room,72,21,1,2017-02-21,0.03,1,0 +17298366,BK diggs,50153931,Jaclyn,Brooklyn,DUMBO,40.70206,-73.98804,Entire home/apt,250,1,0,,,1,0 +17298590,Your Home Away from Home,2168789,Kimberly,Brooklyn,Greenpoint,40.72938,-73.95675,Entire home/apt,175,2,15,2019-06-21,0.54,1,4 +17299278,E. W'burg Private Room near subway,116709076,Jay,Brooklyn,Williamsburg,40.70245,-73.9427,Private room,80,15,47,2019-04-09,1.86,1,8 +17299611,Private bedroom in the heart of West Village,23919461,Cesar,Manhattan,West Village,40.73381,-74.00365,Private room,150,3,87,2019-06-20,3.09,2,39 +17300167,"Spacious, modern, cozy & bright Williamsburg oasis",32694917,Teresa,Brooklyn,Williamsburg,40.71186,-73.95402,Entire home/apt,144,2,24,2019-07-06,1.43,1,14 +17302040,Private Room in Bed-Stuy Apartment,89241337,Amy,Brooklyn,Bedford-Stuyvesant,40.68957,-73.9457,Private room,45,1,0,,,1,0 +17302836,Private room w/private bathroom near Central Park!,4428742,Banu,Manhattan,Upper East Side,40.76875,-73.95965,Private room,95,2,2,2017-06-11,0.07,1,0 +17304795,Charming bedroom in Manhattan,78866824,Ria,Manhattan,Upper West Side,40.80238,-73.96503,Private room,100,2,16,2018-07-26,0.56,1,0 +17304849,Spacious Brownstone 1Bd,46493114,Cely,Brooklyn,Crown Heights,40.67756,-73.95427,Private room,56,4,34,2019-06-20,1.23,1,18 +17305490,Gorgeous Studio & Balcony Garden @ THE MOTHERSHIP,4680813,Gaia,Queens,Astoria,40.76752,-73.9314,Entire home/apt,150,7,12,2019-05-31,0.42,1,3 +17306128,MODERN ROOM IN CHARMING CLINTON HILL+ SWEET VIEW 3,4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69616,-73.96198,Private room,95,30,4,2018-05-28,0.14,11,311 +17306146,MODERN ROOM IN CHARMING CLINTON HILL+ SWEET VIEW 1,4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69521,-73.96199,Private room,95,30,6,2019-02-28,0.22,11,231 +17311213,Backpackers Dream for 1 at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.69652,-73.92351,Private room,70,3,174,2019-06-25,6.03,3,202 +17311284,Plant-filled 1 BD by Prospect Park,9152821,Jazmine,Brooklyn,Flatbush,40.65258,-73.9624,Entire home/apt,100,1,0,,,1,0 +17312157,Beautiful room in Brooklyn (Bushwick),1267985,Thea,Brooklyn,Bushwick,40.70108,-73.9289,Private room,60,14,1,2017-02-25,0.03,1,0 +17314298,Spacious and charming apartment in Brooklyn,31857792,Marija,Brooklyn,Cobble Hill,40.68766,-73.99125,Entire home/apt,170,4,8,2019-06-03,0.29,1,1 +17314998,Furnished room-5A-1 110th st-3rd Ave.,18212433,Veronique Camille,Manhattan,East Harlem,40.79536,-73.94197,Private room,55,30,0,,,8,341 +17315299,Furnished Room/ 550/3,18212433,Veronique Camille,Manhattan,Washington Heights,40.85131,-73.93235,Private room,50,30,0,,,8,358 +17316565,Beautiful apartment with sweeping NYC views,116854478,Travis,Brooklyn,Carroll Gardens,40.68328,-73.99846,Entire home/apt,250,4,0,,,1,0 +17317366,Manhattan Midtown Vacation Home away from Home,116870039,Jj,Manhattan,Kips Bay,40.74511,-73.9778,Entire home/apt,200,3,72,2019-06-21,2.55,1,249 +17317934,Modern 1 bd in the heart of East Village,34386241,Jesse,Manhattan,East Village,40.7261,-73.98421,Entire home/apt,175,2,4,2017-04-10,0.14,2,0 +17318207,"Attractive Room, Quiet Area . Easy commute Man.",116881616,June,Brooklyn,Bath Beach,40.60382,-74.01083,Private room,45,4,17,2019-06-07,0.65,2,17 +17318814,Beautiful Sunlit Retreat in Manhattan,116889152,BeautifulHarlem,Manhattan,Harlem,40.81961,-73.94583,Entire home/apt,175,2,145,2019-06-23,5.00,2,127 +17319360,Private suite,42814202,Irisha,Queens,Fresh Meadows,40.74227,-73.78707,Entire home/apt,90,1,26,2019-07-08,0.90,3,358 +17321243,Sweet deco room in amazing location,116871769,Paige,Brooklyn,Williamsburg,40.71018,-73.94858,Private room,78,1,55,2019-06-30,2.01,1,345 +17325829,My little LOFT in Brooklyn :),104235754,Blessing,Brooklyn,Bedford-Stuyvesant,40.68336,-73.95421,Entire home/apt,100,1,27,2019-07-06,0.98,1,39 +17326116,Charming place on the hippest street in NYC,63771415,Annie,Manhattan,East Village,40.72713,-73.98159,Entire home/apt,175,2,35,2019-06-16,1.22,1,0 +17326533,曼哈顿景色豪华公寓,54001762,Faye,Manhattan,Hell's Kitchen,40.76189,-73.99751,Private room,99,10,2,2017-06-16,0.08,1,0 +17329054,Comfortable bedroom in shared apartment,3782666,Lev,Queens,Astoria,40.76326,-73.91673,Private room,70,4,0,,,1,0 +17329090,Live Like a Local in West Village!,116992515,Palma,Manhattan,West Village,40.73023,-74.00294,Entire home/apt,250,3,28,2019-06-17,1.03,1,51 +17330186,Private Room East Village near Union Square,114075917,Dane,Manhattan,East Village,40.73241,-73.98878,Private room,91,6,1,2017-11-12,0.05,1,0 +17331192,Williamsburg Bedfd Stop 1000 sqft 1 Bed + 1.5 Bath,10291534,Cat,Brooklyn,Williamsburg,40.71372,-73.96326,Entire home/apt,200,1,63,2019-06-27,2.29,1,270 +17332200,Renovated Cozy room for 2 or solo traveler,10475653,Izabel,Brooklyn,Kensington,40.64769,-73.97435,Private room,40,1,122,2019-06-27,4.21,3,222 +17333015,Private room in stylish uptown apartment,2653648,Kareem,Manhattan,Harlem,40.82316,-73.95343,Private room,75,30,1,2018-04-26,0.07,2,133 +17339688,Beautiful large private room in Sunnyside Gardens,117108525,Sen,Queens,Sunnyside,40.74603,-73.91412,Private room,50,1,72,2019-06-24,2.98,2,129 +17339881,Brownstone Studio,115854410,Michelle,Brooklyn,Bedford-Stuyvesant,40.68469,-73.947,Entire home/apt,110,3,116,2019-06-21,4.03,1,216 +17342599,"Stylish, Spacious room Express train to Midtown",5334697,Shane,Manhattan,Washington Heights,40.84114,-73.93639,Private room,69,5,33,2019-07-02,1.17,3,1 +17344027,Relaxing Stylish Room near Train and Attractions,42024722,Daniel,Manhattan,Chelsea,40.74462,-74.00139,Private room,103,5,77,2019-07-07,2.73,2,79 +17345621,Huge beautiful apartment - entire floor!,12501130,Phuong,Brooklyn,Crown Heights,40.67656,-73.93705,Entire home/apt,100,2,106,2019-06-16,3.72,1,28 +17346379,"Bright, comfy, elegant room near Express Train",5334697,Shane,Manhattan,Washington Heights,40.84099,-73.93694,Private room,73,5,41,2019-06-21,1.45,3,228 +17347938,Large Modern 3-bdrm Duplex Apt near Manhattan,108982711,Diana,Queens,Astoria,40.75651,-73.91485,Entire home/apt,180,2,70,2019-07-01,2.64,1,175 +17349377,One Bedroom Apt in NYC on 1st Floor!,2450673,Christopher,Manhattan,Washington Heights,40.84417,-73.94063,Entire home/apt,79,1,4,2018-01-07,0.14,1,0 +17356639,Spacious Brooklyn One Bedroom/Loft***Morgan L Stop,40313256,Joey,Brooklyn,Williamsburg,40.70552,-73.93,Entire home/apt,195,4,0,,,1,0 +17358323,Private Apt Near NYC Airport & Northshore Hospital,65232368,Adisson,Queens,Douglaston,40.76978,-73.73915,Entire home/apt,99,1,49,2019-06-30,1.70,1,247 +17360353,Great spacious room in Stylish apt near Highline,42024722,Daniel,Manhattan,Chelsea,40.7456,-74.00107,Private room,100,5,66,2019-07-01,2.37,2,99 +17364659,Large Cozy 1 bedroom Apt in South Williamsburg,1789596,Cris,Brooklyn,Williamsburg,40.70744,-73.95417,Entire home/apt,125,6,10,2019-01-03,0.36,1,239 +17364675,Lovely Bedroom in Quiet Prospect Heights Apartment,24878388,Johanna,Brooklyn,Prospect Heights,40.67305,-73.96824,Entire home/apt,149,5,1,2017-08-22,0.04,2,0 +17365005,Awesome Manhattan Midtown Apartment,16328732,Wenli,Manhattan,Roosevelt Island,40.76253,-73.95001,Entire home/apt,58,2,9,2017-08-27,0.32,1,0 +17365636,"Greenpoint, Brooklyn - Spacious Private Room",3537298,Rachel,Brooklyn,Greenpoint,40.7355,-73.95677,Private room,75,28,3,2017-05-27,0.11,1,0 +17366042,An Oasis in the Big Apple,40032009,Arianna,Manhattan,Morningside Heights,40.80391,-73.96576,Entire home/apt,140,5,0,,,2,0 +17366174,"Modern & Luxurious 1 Bedroom, close to A/J Trains!",40426686,Amin,Queens,Ozone Park,40.68572,-73.8493,Entire home/apt,69,4,0,,,1,0 +17366414,3 Bed/ 1.5 Bath Midtown Apt near Empire State,117347203,Peggy,Manhattan,Kips Bay,40.7443,-73.97925,Entire home/apt,250,5,69,2019-06-26,2.44,1,163 +17366807,"Cozy 1 bedroom, Lower East Side",40438814,Francesco,Manhattan,East Village,40.72117,-73.98215,Entire home/apt,160,3,31,2019-01-13,1.08,1,136 +17366942,Bedroom + Private Bath Near Central Park & Subways,103960,Nicolle,Manhattan,Harlem,40.80113,-73.95287,Private room,70,4,35,2017-12-09,1.24,1,0 +17367004,Chic Space in Chelsea,572879,Ivan,Manhattan,Chelsea,40.7435,-74.00119,Private room,289,2,128,2019-06-17,4.52,1,252 +17367175,PRIVATE ROOM - Sunny and Spacious - Brooklyn Loft,4120523,Aurelien,Brooklyn,Williamsburg,40.70616,-73.92918,Private room,29,2,58,2019-02-11,2.02,2,0 +17367187,Superhost HUGE Room+Private Bath -Yankee Stadium,11196496,Amílcar,Bronx,Highbridge,40.83173,-73.92824,Private room,75,1,127,2019-06-30,4.45,1,134 +17367289,"Cozy 1BD near JFK, Beach, Subway, Buses, & Kitchen",112910861,Francisca,Queens,Far Rockaway,40.59745,-73.76032,Private room,35,1,61,2019-06-06,2.12,2,124 +17368006,Cabins at Chelsea (NYC),117365574,Maria,Manhattan,Chelsea,40.74819,-73.9954,Private room,82,1,147,2019-06-23,5.08,5,292 +17368958,"Amazin 1BD in Queens, JFK, St John's Hosp, Kitchen",112910861,Francisca,Queens,Far Rockaway,40.59692,-73.7602,Private room,35,1,42,2019-05-30,1.52,2,124 +17369078,Cozy room in Prospect Heights,16066047,Allegra,Brooklyn,Crown Heights,40.67919,-73.95918,Private room,70,2,12,2019-06-28,0.47,1,120 +17369530,Spacious Private Room in Beautiful Audubon Park,8140134,Brad,Manhattan,Washington Heights,40.83712,-73.94664,Private room,75,2,2,2017-12-27,0.10,1,0 +17370778,Gem In Park Slope,1339545,Nina & Keith,Brooklyn,Park Slope,40.67005,-73.97981,Entire home/apt,120,3,125,2019-06-25,4.51,2,61 +17371795,"Room at Artist Apt in Wburg, BK",117399779,Cacho,Brooklyn,Williamsburg,40.71304,-73.96497,Private room,200,3,5,2017-10-08,0.18,1,0 +17376200,Nice clean room in Brooklyn,42864513,Bradford,Brooklyn,Bedford-Stuyvesant,40.68469,-73.9375,Private room,65,5,69,2019-06-13,2.40,1,104 +17376723,*Rare Find* Fantastic 2 Bed Apt inTimes Square,15034908,Trendi,Manhattan,Hell's Kitchen,40.7621,-73.99354,Entire home/apt,178,3,84,2019-06-16,2.92,2,74 +17380055,Immaculate 1BR in quiet Bedstuy brownstone.,25270209,Robinette,Brooklyn,Bedford-Stuyvesant,40.68146,-73.94757,Entire home/apt,45,2,3,2017-03-01,0.10,1,0 +17380431,Large sunny park slope apartment,1012628,Elizabeth,Brooklyn,Park Slope,40.67135,-73.97759,Entire home/apt,150,1,0,,,1,0 +17380887,Prime Williamsburg Location! 10 min from Manhattan,32405588,Marco,Brooklyn,Williamsburg,40.71059,-73.96002,Private room,99,3,46,2019-06-24,1.62,2,141 +17381819,Cozy modern studio in heart of LES,43682230,Eric,Manhattan,Lower East Side,40.72056,-73.98539,Entire home/apt,325,2,2,2017-09-22,0.09,1,180 +17382067,Georgeous 1BR - Modern Cozy Clean - Great location,108621536,Annabelle,Manhattan,Upper East Side,40.77279,-73.94696,Entire home/apt,209,4,2,2017-09-18,0.08,1,0 +17382091,"Quiet, Bright, 2 Story Home Close to It All",115827173,David,Queens,Briarwood,40.71512,-73.81928,Entire home/apt,249,4,6,2019-06-01,0.29,2,353 +17382679,INCREDIBLE TOWNHOUSE 4 STORIES 5 BEDROOMS 3 BATH,34474212,Vinit,Manhattan,West Village,40.73444,-74.00129,Entire home/apt,600,2,93,2019-06-23,3.38,1,251 +17382781,Spacious beautiful bedroom:),73541674,Dioni,Queens,Ditmars Steinway,40.77367,-73.91517,Private room,40,3,0,,,2,82 +17383253,★ NEW 2 BEDROOM APT NEXT TO CENTRAL PARK WEST★,9293730,Inna,Manhattan,Upper West Side,40.79584,-73.96242,Entire home/apt,135,30,5,2019-05-11,0.21,16,200 +17383677,"@Ferry,HUGE 2Br/3beds. Private,Renovated/Stylish..",117492425,Dine,Staten Island,St. George,40.64596,-74.08059,Entire home/apt,65,4,96,2019-07-01,3.42,6,147 +17383929,Spacious Brooklyn Bedroom For the Month of Nov.,117498033,Luciana,Brooklyn,Crown Heights,40.67561,-73.93138,Private room,35,20,0,,,1,0 +17384675,Brooklyn's Cozy Jewel,117507630,Faith,Brooklyn,Crown Heights,40.67018,-73.93224,Entire home/apt,99,4,55,2019-06-26,2.06,2,17 +17385564,MONTHLY PRICE- Perfect for one person in Astoria,40549648,Luiza,Queens,Astoria,40.75832,-73.91448,Private room,47,15,23,2019-05-31,0.83,2,31 +17385865,Cozy PRIVATE bathroom CLEAN New Construction,19303369,Hiroki,Queens,Elmhurst,40.73889,-73.87713,Private room,35,30,0,,,37,33 +17385892,Light-Filled Flatiron: Double Bed 'n Private Bath,117521391,Cassia,Manhattan,Gramercy,40.73828,-73.98954,Private room,250,3,33,2019-05-06,1.18,1,167 +17387135,Intimate Williamsburg Apartment,1450005,Michael,Brooklyn,Williamsburg,40.71493,-73.95084,Entire home/apt,90,5,2,2017-05-07,0.07,1,0 +17387259,Cozy charming room close to Prospect Park,20659301,Helen,Brooklyn,Prospect-Lefferts Gardens,40.65642,-73.96085,Private room,53,14,7,2019-06-30,0.27,1,173 +17388041,"Private Entrance,Room and Bathroom!",99556266,Mariano,Manhattan,East Harlem,40.7993,-73.93305,Private room,120,2,37,2018-08-03,1.33,2,304 +17396669,Sunny & Spacious - Private Master Bedroom near JFK,52132241,Pearl,Brooklyn,Crown Heights,40.67293,-73.93273,Private room,54,2,53,2019-06-02,2.30,1,8 +17400624,First Floor Studio on the Upper East Side!,20410925,Leyla,Manhattan,Upper East Side,40.78007,-73.94803,Entire home/apt,125,3,30,2019-06-28,1.08,1,4 +17404164,Sunny Studio near Central Park,71482332,Jacob,Manhattan,Upper East Side,40.76684,-73.96203,Entire home/apt,126,1,31,2019-01-03,1.12,1,0 +17405175,Joy,38294216,Rachel,Queens,South Ozone Park,40.66561,-73.81103,Private room,50,15,2,2019-04-19,0.39,4,190 +17405812,NYC - Upper west side Studio,117685023,Camilo,Manhattan,Upper West Side,40.80355,-73.96831,Entire home/apt,110,7,3,2017-07-31,0.11,1,0 +17405965,2 cozy rooms in a quiet building,39731713,Polina,Queens,Ridgewood,40.69934,-73.90348,Private room,45,3,0,,,1,0 +17407264,"Small Basic Room in Great Area: Long Term, 2 beds!",117699517,Leo & Family,Queens,East Elmhurst,40.75602,-73.88111,Private room,49,4,2,2018-12-13,0.09,1,355 +17411672,Space for Creating and Staying in Bed-Stuy,117742969,Doretha,Brooklyn,Bedford-Stuyvesant,40.69392,-73.9472,Entire home/apt,98,2,6,2019-06-09,0.93,1,359 +17415890,Ultimate Studio Sublet in heart of Williamsburg,9558820,Diana,Brooklyn,Williamsburg,40.71813,-73.95822,Entire home/apt,289,3,7,2018-07-19,0.26,1,0 +17417489,Huge Bedroom in Astoria for One (1) Professional,49117269,Varos,Queens,Astoria,40.75851,-73.92555,Private room,110,4,40,2019-07-05,1.41,2,47 +17417619,"Huge room, Social Home!",21697069,Kelly,Brooklyn,Kensington,40.64465,-73.97871,Private room,45,3,5,2017-04-12,0.18,1,0 +17418006,Luxury Apt Close to JFK Airport,110858930,Cordelia,Queens,Cambria Heights,40.69206,-73.74546,Entire home/apt,169,2,65,2019-06-26,2.33,1,263 +17418177,"Spacious, Private 2 BR , 4 Bathrooms in Brooklyn",95341719,Estie,Brooklyn,Crown Heights,40.66971,-73.94351,Entire home/apt,275,1,26,2019-06-21,0.96,3,271 +17420345,Beautiful Light Filled 1 Bedroom in Kosher Apt,106272021,Esther,Brooklyn,East Flatbush,40.66067,-73.93796,Private room,50,2,16,2019-06-15,0.57,3,43 +17420370,"Huge, Clean & Classy Studio Room in Shared Apt",76186812,Ula,Brooklyn,Bedford-Stuyvesant,40.68083,-73.94445,Private room,36,5,8,2019-05-29,1.31,2,0 +17420832,Cozy modern stay,25426687,Cathy,Brooklyn,Borough Park,40.64551,-73.9981,Entire home/apt,110,2,45,2019-07-06,1.65,1,342 +17423245,Sunny Quiet Room in Clean Modern Apartment,16145840,Nick,Manhattan,East Harlem,40.79877,-73.93964,Private room,105,3,21,2019-05-21,1.14,2,9 +17423343,LANDMARK TOWNHOUSE IN HISTORIC DISTRICT,13392996,Susan,Manhattan,Washington Heights,40.8339,-73.9383,Entire home/apt,75,4,75,2019-06-17,2.64,1,166 +17423413,Cozy apartment near JFK,59900881,Yessenia,Queens,Howard Beach,40.66406,-73.84599,Entire home/apt,100,7,37,2019-01-02,1.42,1,0 +17430505,Cozy Bedroom and Private Bath in Spacious Duplex,42835213,Zandelle,Brooklyn,East Flatbush,40.64841,-73.95178,Private room,75,4,27,2019-06-08,0.95,2,54 +17430853,Small room in Queens,113558700,Berat,Queens,Rego Park,40.72749,-73.86035,Private room,30,1,61,2019-06-08,2.17,3,361 +17430920,Standard New York girls room,117922187,Lei,Manhattan,Roosevelt Island,40.76437,-73.94844,Private room,150,1,0,,,1,88 +17431995,2 bedroom apt. in Manhattan-Gramercy apt building,117932348,Deborah,Manhattan,Gramercy,40.73521,-73.98147,Entire home/apt,155,20,25,2019-07-05,1.06,2,62 +17432325,Swanky Bushwick Penthouse,29655230,Josh,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93426,Private room,68,30,11,2017-09-30,0.39,1,87 +17432700,Safe and Convinient rooms close to NYC.,117930151,Feather Factory Hotel,Queens,Long Island City,40.74454,-73.94016,Private room,109,1,35,2019-05-27,1.23,2,364 +17433291,Amazing Loft in the heart of Williamsburg,117941939,Daniel,Brooklyn,Williamsburg,40.71269,-73.96409,Private room,20,14,3,2018-04-30,0.11,1,277 +17433538,Khimani's Pad,117945802,Shabari,Brooklyn,East Flatbush,40.6425,-73.94293,Entire home/apt,88,2,11,2017-07-30,0.39,1,0 +17433572,Royal Suite at Northern Lights Mansion,1261480,Diane,Manhattan,Harlem,40.80825,-73.95004,Private room,500,1,13,2018-10-03,0.62,2,361 +17434977,1B Large studio in Williamsburg with terrace,49704571,Krzysztof,Brooklyn,Williamsburg,40.71942,-73.94272,Entire home/apt,80,30,6,2019-01-19,0.22,8,156 +17435074,Spacious Bed and Bathroom in Brooklyn,117962524,Corley,Brooklyn,Sheepshead Bay,40.60913,-73.95254,Private room,100,1,1,2017-02-25,0.03,1,0 +17437106,Couch in Harlem Harvey Refugees only,33511962,Morgan,Manhattan,Harlem,40.81302,-73.95349,Shared room,10,1,0,,,1,0 +17437772,Private room in Harlem,200243,Laetitia,Manhattan,Harlem,40.8255,-73.9435,Private room,55,1,8,2019-05-14,0.28,2,293 +17441150,Cozy colorful kitchenette...,74104595,Marlene,Brooklyn,Bedford-Stuyvesant,40.68904,-73.92982,Entire home/apt,40,15,0,,,1,42 +17442248,Cute Private Room in UWS Apartment!,17687105,Shelby,Manhattan,Upper West Side,40.79215,-73.97108,Private room,80,1,0,,,1,0 +17446640,Clean and Comfortable,118084951,Liza,Brooklyn,Greenpoint,40.72214,-73.93725,Entire home/apt,75,1,162,2019-06-24,5.70,1,1 +17447150,1 BR Contemporary Luxury Apartment w W/D in UWS,15145088,Izi,Manhattan,Upper West Side,40.78688,-73.97403,Entire home/apt,184,30,3,2018-10-22,0.12,8,346 +17447168,"Private Sunny Room in Williamsburg, Brooklyn - NY",30054890,Gary,Brooklyn,Williamsburg,40.70818,-73.94952,Private room,56,2,4,2019-01-02,0.14,2,0 +17448930,Huge apt in heart of Williamsburg,118110284,David,Brooklyn,Williamsburg,40.71447,-73.96234,Entire home/apt,160,7,3,2019-06-12,0.12,1,43 +17450190,Small Cozy Room in Herald Square,28584159,Chelsea,Manhattan,Midtown,40.75001,-73.98629,Private room,65,300,1,2017-03-25,0.04,1,89 +17450196,Charming House!!,4378763,Antonio,Queens,Long Island City,40.75276,-73.93102,Private room,77,3,48,2019-06-22,1.72,3,332 +17455952,Cozy room w balcony in penthouse w private terrace,12767750,Juan Pablo,Manhattan,Harlem,40.81161,-73.94394,Private room,65,5,2,2017-10-15,0.07,1,0 +17456123,Private room in Bushwick close to Subway,48534640,Sucharita,Brooklyn,Bushwick,40.69601,-73.9069,Private room,35,15,2,2017-05-07,0.07,1,0 +17456705,Perfectly NYC,20851517,Maggie,Manhattan,Hell's Kitchen,40.76654,-73.98812,Private room,98,6,1,2018-12-17,0.15,3,8 +17456932,Ideal family spot in the upper west,5635997,Eldad,Manhattan,Upper West Side,40.79456,-73.96853,Entire home/apt,400,6,5,2019-04-24,0.19,1,108 +17457160,Sunny room in European-style apartment,432867,Bart,Brooklyn,Prospect Heights,40.67613,-73.97095,Private room,64,2,16,2018-06-27,0.57,1,6 +17457491,Great Loft space in the Heart of Bushwick,118199454,Michael,Brooklyn,Bushwick,40.6975,-73.92998,Private room,70,4,15,2019-06-16,1.05,1,35 +17458077,Studio Apartment in a Doorman Building,2610519,Michael,Manhattan,Flatiron District,40.74252,-73.991,Entire home/apt,250,1,2,2017-03-27,0.07,1,0 +17458291,RM,38294216,Rachel,Queens,South Ozone Park,40.66654,-73.81219,Private room,55,10,1,2018-08-11,0.09,4,300 +17458415,Spacious West Village 1 bed!,118208750,Stephen,Manhattan,West Village,40.73773,-74.00181,Entire home/apt,249,3,2,2017-06-25,0.08,1,0 +17459791,Bedroom Upper West Side 10min walk to Central Park,12588825,Kyle,Manhattan,Upper West Side,40.79358,-73.97452,Private room,175,4,3,2017-11-05,0.11,1,0 +17459930,Cozy room in prime williamsburg!,118226205,Sahar,Brooklyn,Williamsburg,40.71738,-73.94158,Private room,69,2,61,2019-06-22,2.14,3,42 +17460510,Harlem Charm,1397707,Jing,Manhattan,Harlem,40.81446,-73.9379,Entire home/apt,198,3,9,2019-06-22,0.35,1,127 +17461281,Sunny & Cozy 1BR/1BA Apartment In Upper NYC,4173425,Lin,Manhattan,Harlem,40.81767,-73.94051,Entire home/apt,69,2,65,2019-06-09,2.38,1,11 +17461341,Private Bedroom in Bedstuy,109773614,Fiz,Brooklyn,Bedford-Stuyvesant,40.67809,-73.9128,Private room,60,2,32,2018-06-10,1.15,1,0 +17461591,"Cozy, Quiet Abode near Times Square",2522596,Nina,Manhattan,Hell's Kitchen,40.76051,-73.99183,Entire home/apt,103,2,12,2017-08-14,0.42,1,0 +17463059,Spacious Three Bedroom Dream in Manhattan,116889152,BeautifulHarlem,Manhattan,Harlem,40.81968,-73.9458,Entire home/apt,135,2,138,2019-06-25,4.83,2,45 +17463419,Private sunny room with private bathroom&entrance,33116792,Sophie,Queens,Ridgewood,40.69406,-73.90068,Private room,31,5,75,2019-07-01,2.70,1,13 +17463985,Luxury Brooklyn Brownstone with Private Backyard,1377444,Kelly,Brooklyn,Bedford-Stuyvesant,40.68409,-73.94154,Entire home/apt,245,3,33,2019-06-24,1.19,1,60 +17464043,Lovely Brooklyn Apt,49166783,Dalal,Brooklyn,Williamsburg,40.71704,-73.95371,Shared room,175,3,0,,,1,0 +17464151,Riverside Park Nest,118276455,Eric,Manhattan,Upper West Side,40.79517,-73.97555,Entire home/apt,200,30,5,2019-06-06,0.21,1,271 +17465159,Private Room 1 in East Village (Small Window),12302104,Anna,Manhattan,East Village,40.72386,-73.98105,Private room,72,1,134,2019-06-07,4.69,2,251 +17465199,Studio Apt in Washington Square <3,3637890,Michael,Manhattan,Greenwich Village,40.73565,-73.99613,Entire home/apt,123,7,3,2017-05-28,0.11,1,0 +17473754,Large Room in Garden Apartment,5684780,Mauro,Brooklyn,Bedford-Stuyvesant,40.68348,-73.95123,Private room,90,3,3,2017-03-27,0.11,1,0 +17475107,Partitioned (shared) Cozy Studio in Pelham Bay,86108833,Jonathan,Bronx,Schuylerville,40.84034,-73.83007,Shared room,20,1,116,2019-01-28,4.09,1,5 +17475711,Cherry Hill House - Blue Room,2464187,Jessica,Staten Island,St. George,40.63703,-74.08423,Private room,50,1,12,2017-08-18,0.42,2,0 +17476768,AWESOME LOCATION STEPS TO L TRAIN !,118378908,Jose,Brooklyn,Williamsburg,40.71354,-73.95011,Private room,45,28,19,2019-05-31,0.72,6,297 +17476990,"Quiet room, view on garden 5m walk from J train",32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68759,-73.92356,Private room,41,1,12,2018-08-26,0.42,3,0 +17477606,PRIME LOCATION LORIMER L TRAIN,118378908,Jose,Brooklyn,Williamsburg,40.71531,-73.94986,Private room,75,1,15,2019-05-25,0.56,6,325 +17477768,Large studio in hip area near major subway stop,4035291,Lawrence,Brooklyn,Crown Heights,40.67308,-73.95523,Entire home/apt,105,3,93,2019-07-05,4.16,1,89 +17477830,Sunny Room on Hippest Block in Bushwick,118341133,Mackenzie,Brooklyn,Bushwick,40.70537,-73.92269,Private room,55,2,2,2017-03-14,0.07,1,0 +17477888,Cozy Private Room in Vibrant Williamsburg Apt,2861103,Sarah,Brooklyn,Williamsburg,40.71992,-73.9413,Private room,100,1,82,2019-05-05,2.95,1,0 +17478246,Spacious & Serene Williamsburg Room,118394855,Sarah,Brooklyn,Williamsburg,40.71499,-73.94634,Private room,65,1,14,2018-07-14,0.49,1,0 +17478780,The Perfect Queens Getaway!,118400082,Jairo,Queens,Corona,40.74122,-73.85334,Entire home/apt,149,2,51,2019-06-30,1.90,1,242 +17479736,Cozy Room in Manhattan,52129673,Christina,Manhattan,Harlem,40.82827,-73.94785,Private room,50,1,17,2018-10-08,1.11,1,0 +17479792,Comfy Room in Chic Apartment,1730026,Haifa,Manhattan,Lower East Side,40.7127,-73.98857,Private room,78,3,3,2019-05-01,0.21,2,166 +17480159,"Cozy studio, private entrance & 3 min. JFK",105315839,Erroyl,Queens,Jamaica,40.66989,-73.77454,Entire home/apt,75,1,75,2019-06-23,2.66,1,294 +17480275,Private Room near Columbia University,115227524,Pablo,Manhattan,Morningside Heights,40.81638,-73.95937,Private room,70,28,0,,,1,0 +17480547,Room in Brooklyn With Central Air and Heat,83351115,Samuel,Brooklyn,Bushwick,40.69484,-73.92499,Private room,50,12,0,,,1,0 +17481087,Gorgeous and Renovated Chelsea Apartment,24037775,Karen,Manhattan,Chelsea,40.74392,-73.9946,Entire home/apt,250,4,0,,,1,0 +17481484,Brooklyn Apartment,118430352,Austin,Brooklyn,Crown Heights,40.67519,-73.9402,Private room,75,1,0,,,1,0 +17482187,Minimalist Room with a Spectacular view,7275333,Maria,Manhattan,Kips Bay,40.73695,-73.97336,Private room,133,2,37,2019-06-02,1.39,1,33 +17489509,Brooklyn Nook perfectly located!,8435480,Matt,Brooklyn,Greenpoint,40.72398,-73.94978,Entire home/apt,150,2,115,2019-07-07,4.26,2,32 +17493275,Large one bedroom in historic Clinton Hill,775409,John,Brooklyn,Clinton Hill,40.69478,-73.96126,Entire home/apt,140,3,34,2019-07-05,2.95,1,54 +17493355,Luxury One Bedroom UWS,17477908,Mat,Manhattan,Upper West Side,40.79424,-73.96588,Entire home/apt,200,30,2,2018-10-31,0.11,10,338 +17494289,Beautiful duplex in Gramercy,118539035,Pilar,Manhattan,Gramercy,40.73746,-73.98338,Entire home/apt,99,120,2,2017-08-13,0.08,1,167 +17494449,Bright and Sunny Room in Amazing Bushwick Apt,27522582,Gabriele,Brooklyn,Bushwick,40.70105,-73.91547,Private room,50,1,0,,,3,0 +17495518,Upper East Side Apartment,118554120,Ken,Manhattan,Upper East Side,40.78073,-73.95013,Entire home/apt,122,7,7,2017-12-29,0.27,1,0 +17495819,Charming apartment in Manhattan!,11968765,Betina,Manhattan,Washington Heights,40.85338,-73.93232,Private room,85,3,71,2019-06-15,2.54,1,60 +17495862,Homey funky eclectic rich of arts,90215210,Lou,Brooklyn,Crown Heights,40.67167,-73.93088,Private room,45,4,37,2019-06-24,1.29,1,84 +17496194,Cozy 1 bedroom apt in Astoria NY,15864671,Franc,Queens,Astoria,40.76984,-73.91815,Entire home/apt,130,4,0,,,1,83 +17496320,Cozy sunny room 35 min to Time Square,47735494,Iris,Queens,Rego Park,40.72701,-73.87022,Private room,31,1,37,2018-04-22,1.30,4,0 +17496511,Spacious & Charming Nolita 1 Bed,118547015,Jill,Manhattan,SoHo,40.72103,-73.99866,Entire home/apt,125,2,16,2018-08-25,0.57,1,0 +17497776,Private apartment in Hamilton Heights,114093125,Eileen,Manhattan,Harlem,40.8269,-73.93634,Entire home/apt,100,4,65,2019-06-20,2.30,1,48 +17497867,Private Bedroom in East Williamsburg,1923413,Steven,Brooklyn,Williamsburg,40.70772,-73.94126,Private room,60,2,18,2017-07-31,0.63,1,0 +17497948,1 bedroom apt in 2 bridges/Chinatown,8381084,Pierre,Manhattan,Civic Center,40.71264,-73.99893,Entire home/apt,80,2,12,2019-03-15,0.43,2,8 +17499587,Cozy 2 Bedroom in Prime Location!,46599828,Dena,Manhattan,Midtown,40.74481,-73.98523,Entire home/apt,150,3,6,2017-07-24,0.23,1,0 +17500539,"HUGE 1BR Apt, Varrazano promenade,night life& More",37519641,Ahmed,Brooklyn,Fort Hamilton,40.61364,-74.0354,Entire home/apt,160,2,4,2019-04-11,0.42,1,313 +17500994,Brooklyn Cave in the Neighb,87889145,Avon,Brooklyn,Canarsie,40.64458,-73.90285,Entire home/apt,59,2,68,2019-07-01,3.50,1,240 +17501131,Artist Home 5 minute walk to Metro 30min from JFK,16356565,Shirley,Brooklyn,Flatbush,40.63356,-73.95073,Shared room,30,3,27,2019-06-24,1.25,2,1 +17505594,"Hip, cozy apartment (with cat) in terrific Harlem!",11620529,Grace,Manhattan,Harlem,40.81108,-73.94682,Entire home/apt,85,2,2,2017-06-04,0.08,1,0 +17506469,Spacious Bedroom in Williamsburg Duplex,53759518,Jackson,Brooklyn,Williamsburg,40.71397,-73.94572,Private room,110,2,0,,,1,0 +17508300,Sun-drenched Charles Street studio!,1647256,Rebecca,Manhattan,West Village,40.73418,-74.00621,Entire home/apt,180,9,0,,,1,0 +17508709,Luxurious Manhattan 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.76589,-73.98434,Entire home/apt,199,30,6,2018-07-31,0.23,23,365 +17508940,Haven in the Heights,32788186,Alexandra,Manhattan,Washington Heights,40.85321,-73.93596,Shared room,35,1,27,2019-06-30,0.95,1,33 +17509152,PRIVATE BATHROOM ! PRIME LOCATION,118378908,Jose,Brooklyn,Williamsburg,40.7141,-73.95064,Private room,70,28,28,2019-06-01,1.01,6,303 +17510128,Manhattan | Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75766,-73.99089,Entire home/apt,195,30,0,,,23,364 +17510130,High Tower Luxurious 1 Bedroom in Times Square,3191545,Kyle,Manhattan,Hell's Kitchen,40.75919,-73.99229,Entire home/apt,169,30,1,2017-08-03,0.04,23,115 +17510136,Luxurious 1 Bedroom in Times Square,3191545,Kyle,Manhattan,Hell's Kitchen,40.7593,-73.99229,Entire home/apt,195,30,0,,,23,364 +17510139,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Midtown,40.76501,-73.98312,Entire home/apt,195,30,0,,,23,364 +17510140,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.76485,-73.98436,Entire home/apt,195,30,0,,,23,364 +17510141,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76321,-73.98356,Entire home/apt,243,30,0,,,23,364 +17510666,❤ of Manhattan | Central Park | Fantastic 1 Bed,3191545,Kyle,Manhattan,Hell's Kitchen,40.76536,-73.98469,Entire home/apt,195,30,0,,,23,364 +17511694,4A-,17770287,Nina,Manhattan,Midtown,40.74896,-73.98277,Entire home/apt,115,30,8,2019-05-01,0.31,14,203 +17512277,Large two bedroom in the middle of NYC apt. 3C,17770287,Nina,Manhattan,Murray Hill,40.74916,-73.98115,Entire home/apt,150,30,5,2019-05-12,0.22,14,339 +17512282,Amazing Apartment | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74526,-73.97679,Entire home/apt,150,30,1,2017-05-26,0.04,23,365 +17512466,2C,17770287,Nina,Manhattan,Midtown,40.7502,-73.98289,Entire home/apt,155,30,3,2018-12-17,0.11,14,332 +17512553,MAGNIFICENT apartment in Williamsburg with Balcony,57050977,Gaël-Etienne,Brooklyn,Williamsburg,40.71397,-73.94873,Entire home/apt,68,2,22,2018-09-09,0.78,1,0 +17512883,Amazing 1 Bedroom | 1 Bedroom | Skyline View,3191545,Kyle,Manhattan,Murray Hill,40.74919,-73.97244,Entire home/apt,135,30,0,,,23,365 +17512898,Private room in shared apartment for 1,11427289,Ian,Manhattan,Greenwich Village,40.73484,-73.99614,Private room,300,1,1,2017-08-31,0.04,1,0 +17512944,Extra Large 1BR by Park Ave in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76876,-73.96686,Entire home/apt,197,30,0,,,12,58 +17513491,11 Minutes to Manhattan,971418,Jamiel,Queens,Astoria,40.76101,-73.92464,Entire home/apt,75,1,73,2019-06-23,2.75,1,273 +17513537,"2 bedroom apt in Brooklyn, downtown",118727691,Diane,Brooklyn,Fort Greene,40.69353,-73.97431,Entire home/apt,350,3,27,2019-06-30,1.00,1,303 +17515391,1 BR Garden Apartment in Brooklyn Brownstone,10896859,Sharon And Dave,Brooklyn,South Slope,40.66587,-73.98206,Entire home/apt,150,3,70,2019-07-01,2.58,1,89 +17515547,BEST LOCATION IN SOHO AND SPACIOUS APARTMENT,118745519,Alonso,Manhattan,Little Italy,40.71942,-73.99694,Entire home/apt,155,1,67,2019-01-20,2.45,1,189 +17515734,Cozy Room in TWO BEDROOM Apartment.,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69499,-73.94822,Private room,81,5,42,2019-06-02,1.58,3,63 +17515870,Divided Room in Financial District,118753490,Yaodong,Manhattan,Financial District,40.70817,-74.00511,Private room,100,1,5,2017-04-30,0.17,1,0 +17516489,Beautiful 3 BR- 2 Full Baths in Upper Manhattan,1273890,Sergio,Manhattan,Washington Heights,40.8513,-73.93681,Entire home/apt,185,30,7,2019-03-19,0.26,2,331 +17517940,"简单的四房一厅两卫生间,位于北上远离开辆,走路四分钟到地铁站,交通便利 +Simple bigroom",114104868,Hao,Queens,Woodhaven,40.69883,-73.85257,Private room,65,3,7,2018-11-03,0.40,1,365 +17520324,Renovated 4 BED 3.5 BATH BK Townhouse Triplex APT,114463720,Mike,Brooklyn,Williamsburg,40.71092,-73.96755,Entire home/apt,385,2,76,2019-06-15,2.69,1,209 +17520883,Exciting New York Get Away,101672721,Telisha,Manhattan,Harlem,40.8178,-73.93774,Private room,125,1,0,,,1,0 +17522686,Prospect Heights Studio Apartment,25227079,Daniel,Brooklyn,Prospect Heights,40.67435,-73.96691,Entire home/apt,130,3,2,2017-04-11,0.07,1,0 +17524047,Luxe Large Suite w/Views bathroom en suite,118695056,Cameron & Dione,Brooklyn,Downtown Brooklyn,40.6925,-73.98613,Private room,153,3,28,2019-06-09,1.00,2,11 +17524075,Quiet & spacious east village/LES private bedroom,15730200,Ruishu,Manhattan,Lower East Side,40.72131,-73.98508,Private room,150,2,1,2019-04-20,0.37,1,0 +17524441,Modern Sunlit Room w/ Balcony on Famous Street!,13137787,Zack,Manhattan,East Village,40.72778,-73.98936,Private room,95,4,2,2017-05-29,0.08,1,0 +17524862,Cozy West Harlem Abode,2054816,Sharron And Lenny,Manhattan,Harlem,40.82805,-73.94676,Entire home/apt,150,2,10,2018-07-05,0.36,1,0 +17525806,4BR Brooklyn Apartment Minutes from City Life!,48618586,Evolve,Brooklyn,East Flatbush,40.64261,-73.94334,Entire home/apt,350,2,1,2017-08-20,0.04,1,0 +17526131,Bklyn Brownstone 2BD APT Private Spotless wAC+HBO,118839909,Evan & Erika,Brooklyn,Bedford-Stuyvesant,40.6875,-73.92542,Entire home/apt,120,2,131,2019-07-05,5.23,1,159 +17527515,Lovely Home Near Fort Tryon Park & the Cloisters,8753629,Brenton,Manhattan,Inwood,40.86488,-73.92922,Entire home/apt,120,14,7,2018-09-18,0.27,1,13 +17527586,PERFECT East Village Location****,117385673,Danielle,Manhattan,Gramercy,40.7317,-73.9833,Private room,100,3,9,2017-10-15,0.32,2,0 +17529164,Large Room with Private Bathroom (Long Term+++),11070120,Vernon,Bronx,Fordham,40.85929,-73.90048,Private room,45,22,10,2019-04-13,0.36,2,186 +17529216,Quiet room with exposed brick,7920086,Susan,Manhattan,East Harlem,40.7865,-73.94406,Private room,74,16,7,2017-10-31,0.28,3,0 +17529637,Large bedroom in the heart of the East Village,855079,Nicholas,Manhattan,East Village,40.7281,-73.9839,Private room,110,1,26,2018-12-28,0.91,3,0 +17531292,Your Home Away From Home!,105225699,Serena,Queens,Flushing,40.76199,-73.79465,Entire home/apt,110,3,75,2019-07-06,3.07,2,174 +17531493,Cute Room in Upper West Side (FEMALES ONLY),78254013,Ana,Manhattan,Upper West Side,40.79917,-73.96765,Private room,75,1,19,2018-01-04,0.73,1,0 +17531524,"Comfy bachelor's apartment, Clinton Hill, Brooklyn",22607793,Dmitri,Brooklyn,Clinton Hill,40.68152,-73.96276,Entire home/apt,94,2,10,2018-12-09,0.39,1,0 +17532756,Lovely Room in Loisaida Hideaway,105025187,Anima,Manhattan,East Village,40.7234,-73.97628,Private room,55,5,2,2017-06-25,0.07,2,0 +17532802,"Apartment in Sunset Park, Brooklyn",118913632,Ye,Brooklyn,Sunset Park,40.64028,-74.01262,Entire home/apt,100,7,0,,,1,0 +17533091,Private room near new 2nd Ave. Q train!,27624941,Imad,Manhattan,Upper East Side,40.78025,-73.94802,Private room,99,2,154,2019-07-01,5.42,1,145 +17533911,MY ROOM/COFFEE &BAGEL,1097545,Carol,Manhattan,East Village,40.72521,-73.97879,Private room,69,6,30,2019-04-01,1.08,3,43 +17534186,Beautiful sunny apartment in Williamsburg,10348014,Sanna,Brooklyn,Williamsburg,40.71545,-73.95299,Entire home/apt,139,1,0,,,1,0 +17534189,Sunny Room at The Gazebo in Brooklyn,27844914,Kim,Brooklyn,Bedford-Stuyvesant,40.69428,-73.94148,Private room,42,14,32,2019-05-22,1.14,2,72 +17537893,The Otheroom Bar/Event/Filming Space -read details,18037301,James,Manhattan,West Village,40.73571,-74.0078,Entire home/apt,4000,1,0,,,1,173 +17538067,Architect's Bedroom in Large Brooklyn Apartment,21369808,Niko,Brooklyn,Bedford-Stuyvesant,40.69612,-73.94918,Private room,55,7,3,2017-07-01,0.11,1,0 +17539341,"Urban Zen: Cozy, creative NYC retreat",7188712,Melissa,Manhattan,Washington Heights,40.83137,-73.94117,Private room,119,2,4,2018-06-12,0.16,1,0 +17539385,2 Level Apartment With Private Terrace,7070648,Olga,Manhattan,Upper East Side,40.78206,-73.94949,Entire home/apt,105,5,24,2019-06-23,0.85,1,20 +17539808,Bright room in Brownstone,1704042,Cameron,Brooklyn,Bedford-Stuyvesant,40.67987,-73.93235,Private room,55,2,21,2019-06-14,0.76,1,19 +17540291,One bedroom Apartment in Carroll Gardens,2063421,Megan,Brooklyn,Carroll Gardens,40.67522,-73.99853,Entire home/apt,125,1,0,,,1,0 +17541599,Furnished room in Upper East Side apartment,6811053,Blair,Manhattan,East Harlem,40.78943,-73.9478,Private room,46,6,1,2017-03-22,0.04,1,0 +17541761,Quiet Private Room in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6896,-73.90624,Private room,36,2,83,2019-06-22,2.95,4,155 +17542694,Room in sweet 2BR in Brooklyn,41191579,Maura,Brooklyn,Crown Heights,40.66945,-73.93899,Private room,45,1,4,2018-12-17,0.44,3,0 +17542798,Amazing 1 Bedroom Apt in the Heart of LES,40935862,Andrew,Manhattan,Lower East Side,40.72105,-73.98371,Entire home/apt,150,3,6,2017-07-20,0.22,1,90 +17543074,Cozy & Quiet 2 Bedroom / Heart of Lower Manhattan,13848780,Steven,Manhattan,Chinatown,40.71363,-73.9977,Entire home/apt,275,2,15,2019-06-09,3.17,1,207 +17543568,Wonderful & Large Modernist Bushwick Brooklyn Apt.,71126864,Renee,Brooklyn,Bushwick,40.6957,-73.93196,Entire home/apt,100,29,0,,,1,310 +17543905,P,7976263,Amelia,Manhattan,Chelsea,40.74431,-73.9922,Private room,100,5,3,2017-04-12,0.11,1,0 +17544058,Quite and comfortable shared room in UES,94100043,Mohamed,Manhattan,Upper East Side,40.76675,-73.95428,Shared room,35,1,118,2019-01-03,4.21,2,0 +17544220,Quite relaxing convenient shared room in UES.,94100043,Mohamed,Manhattan,Upper East Side,40.76731,-73.95419,Shared room,35,1,115,2019-01-01,4.06,2,0 +17545123,Clean and renovated apartment,119027851,Nance,Bronx,Longwood,40.81632,-73.90991,Entire home/apt,130,2,62,2019-06-19,2.19,1,36 +17545363,Modern Apartment Bayridge/Brooklyn- Sleeps 6,119029523,Ebada,Brooklyn,Fort Hamilton,40.62067,-74.02942,Entire home/apt,150,5,4,2019-06-18,1.90,3,312 +17545558,Private Room 2 in East Village (Large Window),12302104,Anna,Manhattan,East Village,40.72208,-73.98109,Private room,73,1,116,2019-06-02,4.07,2,238 +17545775,Gorgeous Private Studio in Williamsburg/Greenpoint,15266675,Reggie,Brooklyn,Williamsburg,40.71786,-73.94556,Entire home/apt,160,2,9,2018-06-17,0.33,1,0 +17547029,Bushwick Oasis Room #2: Close to the L or M train,28786801,Connie,Brooklyn,Bushwick,40.70288,-73.92796,Private room,54,1,1,2017-08-14,0.04,2,0 +17548575,Great room in the heart of NYC,118870308,Laura,Manhattan,Murray Hill,40.7464,-73.97669,Private room,75,1,2,2017-04-08,0.07,1,0 +17549299,2 Bedroom / 2 Bath - Brand New Modern Apt,7427325,Jenia,Manhattan,Hell's Kitchen,40.76407,-73.99322,Entire home/apt,380,3,1,2017-05-03,0.04,2,0 +17552185,Cozy Garden Apartment in Charming Park Slope,117035626,Anelcia Carolle,Brooklyn,Park Slope,40.67573,-73.97993,Entire home/apt,115,2,97,2019-07-03,3.68,1,0 +17552513,Private Mezzanine Room in E. Williamsburg,1197823,Elliott,Brooklyn,Williamsburg,40.70887,-73.94609,Private room,100,3,12,2017-12-24,0.43,2,0 +17552955,Spacious Private Room in bright Manhattan 2 BR,118270996,Sneha,Manhattan,Washington Heights,40.84806,-73.93931,Private room,80,1,3,2017-03-18,0.11,1,0 +17554081,"Large, Sunny, Williamsburg 1 bedroom Apt",119125703,Chris,Brooklyn,Williamsburg,40.70983,-73.96495,Entire home/apt,109,3,73,2019-07-02,2.64,1,37 +17554298,The Sweet Pea Cottage,76840423,Kathleen,Staten Island,Huguenot,40.53871,-74.16966,Entire home/apt,180,1,136,2019-07-07,4.81,1,136 +17554541,Delightful Brooklyn townhouse,5817532,Christy,Brooklyn,Park Slope,40.68326,-73.97796,Entire home/apt,600,6,7,2019-01-03,0.36,1,42 +17554889,"2nd Fl, Tall Ceilings + Spacious, Convenient + Fun",33955029,Orin,Manhattan,East Village,40.72492,-73.98982,Private room,160,3,15,2018-12-31,0.54,1,0 +17554981,Adorable one bedroom next to Central Park,5162192,Amy,Manhattan,Upper West Side,40.7979,-73.96024,Entire home/apt,130,30,2,2017-08-17,0.08,12,216 +17555918,Private bedroom right on the High Line/Chelsea,3650456,Louizos Alexandros,Manhattan,Chelsea,40.74899,-74.00403,Private room,90,7,12,2017-11-01,0.42,1,0 +17556208,Private Room Available in Hamilton Heights,5524401,Nicole,Manhattan,Harlem,40.82288,-73.95254,Private room,63,7,21,2019-04-28,0.75,1,0 +17556509,Cozy apt. w/private patio in Williamsburg!,1659170,Kilian,Brooklyn,Williamsburg,40.71315,-73.943,Entire home/apt,126,1,6,2017-12-31,0.22,1,0 +17557517,Kids friendly 2 bedroom close to Subway and C.Park,43685722,Gregor,Manhattan,Upper West Side,40.78873,-73.97402,Entire home/apt,195,2,16,2019-06-07,0.59,1,0 +17557873,Renovated Comfortable Room for 2 or solo traveler,10475653,Izabel,Brooklyn,Windsor Terrace,40.64958,-73.97482,Private room,45,1,108,2019-07-02,3.80,3,243 +17558336,"""Borough Border Liner"" Diverse/Convenient/Private",119173203,Maya,Brooklyn,Bushwick,40.70537,-73.91587,Private room,47,1,17,2018-05-13,0.97,1,0 +17558802,Large and Sunny Private Bedroom in Astoria,15219324,Diana,Queens,Astoria,40.76964,-73.92303,Private room,55,10,0,,,1,188 +17559679,Trendy Carroll Gardens Boutique apartment,119190733,Sharon,Brooklyn,Carroll Gardens,40.68196,-73.99944,Entire home/apt,200,7,1,2017-04-01,0.04,1,0 +17560078,Studio Apartment in Upper East Side,66519807,Jing,Manhattan,Upper East Side,40.77734,-73.94592,Entire home/apt,60,7,0,,,1,0 +17560543,"Private room. 1 bed, 2 guests, 3333 Broadway",117851567,Yuedi,Manhattan,Harlem,40.81955,-73.95587,Private room,51,1,0,,,1,0 +17561119,One BR duplex loft in midtown east townhouse - 43,80479138,Gordon,Manhattan,Midtown,40.76032,-73.96618,Entire home/apt,160,30,7,2018-11-15,0.40,5,71 +17568601,Huge Sunny Room in Prime Brooklyn Flushing Ave JM,14759473,Edith,Brooklyn,Bedford-Stuyvesant,40.7002,-73.94327,Private room,55,1,25,2019-05-19,0.88,1,0 +17568638,Lower East Side Studio,3095778,Henrik,Manhattan,East Village,40.72208,-73.98473,Entire home/apt,110,12,11,2019-01-17,0.39,1,0 +17569080,"2BR/2BATH,CENTRALPARK,COLUMBIA,JACUZZI,FIREPLACE",42555896,Yolanda,Manhattan,Harlem,40.80063,-73.95223,Entire home/apt,200,30,3,2019-06-05,0.27,1,327 +17569246,City Zen Apartment in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.68956,-73.90599,Entire home/apt,109,3,72,2019-06-17,2.55,4,140 +17569280,Sweet and Secluded Suite minutes from Manhattan,1420715,Omar And Kareema,Brooklyn,Bushwick,40.6898,-73.91835,Entire home/apt,149,3,70,2019-06-16,2.51,3,170 +17571026,CLEAN STYLISH SUNNY & COMFORTABLE ONE-BED in L.E.S,6335895,Analisa,Manhattan,Lower East Side,40.71862,-73.98405,Entire home/apt,220,4,16,2019-06-02,0.65,1,14 +17572926,Great 1 Bedroom on Upper East,36578169,James,Manhattan,Upper East Side,40.77984,-73.94725,Entire home/apt,130,2,0,,,1,0 +17573027,Charming Room in Financial District,1794149,Alex,Manhattan,Financial District,40.70682,-74.00445,Private room,75,2,3,2017-03-26,0.11,1,0 +17573354,"Luxury 1BR Apt w/ Rooftop, Gym and Skyline View",24580054,Michael,Brooklyn,Greenpoint,40.73204,-73.95874,Entire home/apt,250,2,0,,,1,0 +17573621,The Queens Bungalow,331658,Brittney,Queens,Glendale,40.69643,-73.89362,Entire home/apt,65,3,19,2019-07-02,0.70,1,104 +17574134,Luxurious Apartment in Crown Heights,79820757,Blondine,Brooklyn,Crown Heights,40.67595,-73.94132,Entire home/apt,300,30,9,2019-05-12,0.33,2,136 +17576849,"Essential studio, 2 minutes from train (D)",74179880,Silvia,Brooklyn,East New York,40.67549,-73.88932,Entire home/apt,90,3,68,2019-06-18,2.51,8,343 +17583732,Bright and Cosy Room in Williamsburg,1750299,Julie,Brooklyn,Williamsburg,40.7115,-73.9429,Private room,69,23,12,2019-06-19,0.44,2,189 +17583983,Comfy & Spacious RM with Backyard/Near Metro,105394139,Ciprian,Bronx,Kingsbridge,40.87094,-73.89386,Private room,79,3,115,2019-06-23,4.10,4,71 +17584136,"2fireplcs,Garden,BBQ,wshr/dryer,JacuzTub,BIG Kitch",117263759,Jill & Kerry,Manhattan,Chelsea,40.75046,-73.99854,Entire home/apt,190,1,132,2019-07-04,5.17,1,252 +17585139,"Cute apartment, Washington Sq Park!",51752603,Max,Manhattan,Greenwich Village,40.73104,-73.99831,Private room,80,3,1,2017-03-21,0.04,1,0 +17586014,Spacious and Sunny in Prime Park Slope,119466544,Jim,Brooklyn,South Slope,40.66317,-73.98465,Entire home/apt,175,1,2,2017-03-24,0.07,2,0 +17587000,Private bedroom 8 mins-JFK&The Mall,55125246,Yvonne,Queens,Jamaica,40.68638,-73.79007,Private room,65,1,347,2019-07-06,13.48,3,159 +17587833,Penthouse Luxury Apt with Amazing Views near GCT,119483929,Ryan,Manhattan,Murray Hill,40.7481,-73.97771,Entire home/apt,148,14,0,,,1,0 +17589815,"A small bedroom, Lower East Side",64610450,Emma,Manhattan,Chinatown,40.71569,-73.99076,Private room,63,3,10,2017-05-05,0.36,1,0 +17590729,Private BR in South Harlem close to 2/3,35529867,Laura And Robert,Manhattan,Harlem,40.80339,-73.95034,Private room,99,3,9,2018-02-24,0.42,1,0 +17591010,Entire Hipster Flat in the Heart of Bushwick!,4844209,Leyla,Brooklyn,Bushwick,40.70146,-73.92887,Entire home/apt,90,5,0,,,1,0 +17591278,Penthouse Apartment in Chelsea,86602555,Anna,Manhattan,Chelsea,40.74314,-73.99552,Entire home/apt,250,2,24,2019-07-01,0.90,1,42 +17591356,Cozy private room in Upper East Side apartment,99245631,Jillian,Manhattan,Upper East Side,40.77186,-73.95402,Private room,90,2,3,2017-03-16,0.11,1,0 +17591452,"2 Bed Apt Brighton Beach, Brooklyn by Beach",119523037,Anna,Brooklyn,Brighton Beach,40.582,-73.96185,Entire home/apt,120,1,119,2019-07-01,4.20,4,85 +17593461,(2R) Cozy and clean bedroom with private bathroom,119548006,Steven,Queens,Fresh Meadows,40.73318,-73.79322,Entire home/apt,39,2,113,2019-07-03,4.04,2,3 +17599762,Birds nest Oasis in historic cobble hill,5800161,Pioneer,Brooklyn,Cobble Hill,40.68886,-73.99825,Entire home/apt,117,30,11,2019-06-17,0.47,1,324 +17600777,Spacious room in front of prospect park,100106209,Emmie,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96234,Private room,160,1,45,2019-05-19,1.62,2,303 +17601315,Modern 2br Apartment in the heart of Soho/Nolita,975819,Chendi,Manhattan,Nolita,40.72118,-73.99602,Entire home/apt,500,2,0,,,1,0 +17601960,Studio Apt - One Block from Central Park,16064049,Harry,Manhattan,Hell's Kitchen,40.76616,-73.98435,Entire home/apt,100,13,6,2017-05-20,0.21,1,0 +17602108,NYU/E.Village Cafes & Bars*6 month $3500/mo,119623927,Lisa,Manhattan,East Village,40.72804,-73.98665,Entire home/apt,117,180,15,2019-05-28,0.56,1,332 +17603059,Luxury Condo in the Heart of Manhattan!(High Rise),5925984,Vlad,Manhattan,Midtown,40.74685,-73.9841,Private room,175,2,60,2019-06-25,2.30,1,357 +17604613,Living Room Space In NYC,29893675,Wendell,Manhattan,Harlem,40.82432,-73.9385,Shared room,25,1,9,2017-10-22,0.32,2,0 +17604756,Studio in Brooklyn Heights with Private Entrance,54861276,Madeline,Brooklyn,Brooklyn Heights,40.69257,-73.99707,Entire home/apt,152,2,12,2019-01-01,0.50,1,0 +17605255,Cozy Zen Brooklyn Bedroom,119634559,Noor,Brooklyn,Crown Heights,40.66507,-73.95699,Private room,45,7,11,2018-06-24,0.40,1,0 +17605478,NANCY clean/quiet very close city,119155499,Julio,Brooklyn,Bushwick,40.69369,-73.92292,Private room,59,5,26,2019-06-24,0.93,4,325 +17605729,Clean Green Artsy Apartment with Great Kitchen,90731801,Domenica,Manhattan,East Village,40.72833,-73.98118,Private room,70,3,3,2017-06-09,0.11,1,0 +17606753,Mom Room,119155499,Julio,Brooklyn,Bushwick,40.69391,-73.92469,Private room,57,5,23,2019-06-19,0.84,4,337 +17606850,Spacious 2 BR Bedford Stuyvesant Bklyn NY,119669258,Alvin,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94098,Entire home/apt,200,2,77,2019-06-24,2.97,1,88 +17607488,"Cute, artsy place in Bed/Stuy",119667654,Marcus,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94755,Entire home/apt,71,5,0,,,1,0 +17609502,"5 minutes from JFK,one single cozy bedroom for one",119592255,Kevin,Queens,Jamaica,40.68073,-73.78354,Private room,45,1,336,2019-07-05,11.91,2,345 +17609541,ROSA 'S Private Entrance,119155499,Julio,Brooklyn,Bushwick,40.69516,-73.92258,Private room,61,5,32,2019-05-21,1.14,4,350 +17610016,Cozy & Private Bedroom only 30-35 min to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67989,-73.90857,Private room,55,1,102,2019-06-24,3.66,3,121 +17610023,Creative Loft Space (Huge) in Great Location,1522383,Catherine,Brooklyn,Prospect Heights,40.68006,-73.97248,Private room,74,1,4,2018-04-07,0.15,1,0 +17610059,LARGE ROOM IN HEART OF NYC (CHELSEA / FLATIRON),13492085,Teri,Manhattan,Chelsea,40.74525,-73.99229,Private room,100,1,1,2017-03-31,0.04,2,0 +17610107,Lovely 2-bedroom 1bath in Chinatown & Little Italy,119706589,Carmen,Manhattan,Chinatown,40.71463,-73.99658,Entire home/apt,178,1,146,2019-06-24,5.28,1,212 +17611001,Gorgeous bedroom 8mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68787,-73.78843,Private room,80,1,129,2019-06-23,5.19,3,180 +17617905,Beautiful home minutes to Manhattan,13561853,Olivera,Queens,Sunnyside,40.74176,-73.924,Entire home/apt,75,30,6,2018-09-08,0.22,1,45 +17618446,SOHA 2 bedroom Beauty! Sleeps 5,119779683,Julian,Manhattan,Harlem,40.80859,-73.94216,Entire home/apt,158,3,61,2018-08-03,2.21,1,62 +17618772,"Entire Huge 1 bd Apartment, Brooklyn Living",10015020,Jonathan,Brooklyn,Crown Heights,40.66391,-73.93551,Entire home/apt,88,4,66,2019-06-03,2.35,1,0 +17618903,One Bedroom In New Luxury Building,95921812,Sam,Brooklyn,Gowanus,40.67873,-73.98976,Entire home/apt,95,1,3,2017-09-17,0.11,1,0 +17619003,Cozy 2 Bedroom,88326259,Marta,Manhattan,Upper East Side,40.78172,-73.94827,Entire home/apt,225,3,62,2019-06-20,2.27,1,234 +17620638,Fantastic Studio in Brooklyn's core,19289048,Jae,Brooklyn,Fort Greene,40.68773,-73.97902,Entire home/apt,240,2,15,2018-06-10,0.62,1,66 +17624190,"*SPECIAL* +COZY WATERFRONT APARTMENT +•SUPERHOST•",100656374,Steve Kings,Queens,Ditmars Steinway,40.78304,-73.91783,Entire home/apt,110,3,68,2019-07-05,2.47,1,299 +17624400,Bright West Village Retreat,92294213,Cat,Manhattan,West Village,40.73414,-74.00001,Entire home/apt,225,3,12,2017-09-25,0.43,1,0 +17624418,LOFTY 3 BEDROOMS DUPLEX 30MN FROM DOWNTOWN,6978404,Samira,Brooklyn,Bay Ridge,40.62645,-74.02888,Entire home/apt,165,20,0,,,1,46 +17625485,Bahia Brazil Vibe - Entire apt,7824337,Miralva,Brooklyn,Flatbush,40.65218,-73.96193,Entire home/apt,140,3,26,2019-07-01,1.09,2,161 +17625707,Prospect Park Apt 20 min to Soho 5 min from Trains,8314232,Mo,Brooklyn,Prospect-Lefferts Gardens,40.65802,-73.95595,Entire home/apt,100,1,38,2018-06-17,1.34,1,0 +17625824,Private Room in Brooklyn Brownstone,79882333,Hallie,Brooklyn,Bedford-Stuyvesant,40.68119,-73.93722,Private room,39,2,2,2017-03-29,0.07,1,0 +17626236,Cozy 2 Bedroom (Train L or M),54637605,Albertina,Queens,Ridgewood,40.702,-73.89768,Entire home/apt,110,3,10,2019-05-28,0.37,1,16 +17629651,Brooklyn Style!,33510,Tina,Brooklyn,Flatbush,40.64847,-73.96132,Entire home/apt,105,31,2,2018-03-25,0.07,1,41 +17631431,Convenience and Privacy in this shared apartment,10737943,David,Manhattan,Upper East Side,40.77414,-73.94643,Private room,49,30,4,2019-05-27,0.30,10,99 +17632458,Private Sunny Room with Private Bathroom,44582082,Miranda,Queens,Ridgewood,40.70013,-73.90077,Private room,45,2,9,2017-07-30,0.32,1,0 +17632790,Coney Island Private Assembly Special Events,114736959,Ed,Brooklyn,Coney Island,40.57577,-73.98553,Entire home/apt,450,1,5,2019-06-23,0.42,6,364 +17632840,Coney Island Amphitheat MCU 1 br Wifi Cable **,114736959,Ed,Brooklyn,Coney Island,40.57582,-73.98576,Entire home/apt,99,2,68,2019-01-27,2.51,6,125 +17633820,Bohemian apt in the heart of Greenwich Village,9132087,Brandon,Manhattan,Greenwich Village,40.72956,-73.99979,Entire home/apt,169,3,22,2018-12-26,0.81,2,0 +17634206,One Room Apartment Next to Columbus Circle,119930068,Arturo,Manhattan,Hell's Kitchen,40.76699,-73.9848,Entire home/apt,130,1,4,2017-03-19,0.14,1,0 +17634485,Unique Prime Location NYC Sleeps 6,99242527,Dina,Manhattan,Flatiron District,40.74074,-73.98573,Entire home/apt,255,3,90,2019-06-18,3.21,1,194 +17635051,BEST VALUE! SUPER COSY APARTMENT,16261195,Martine,Manhattan,Upper East Side,40.77699,-73.95193,Private room,80,9,3,2017-09-20,0.11,1,0 +17635569,Cozy private room in Brooklyn Heights,119941037,Colette,Brooklyn,Cobble Hill,40.68934,-73.99438,Private room,70,1,3,2017-03-27,0.11,1,0 +17637439,Lovely room in the heart of Williamsburg,7501534,Francesca,Brooklyn,Williamsburg,40.71064,-73.96497,Private room,60,2,0,,,1,0 +17637673,Mels Manhattan Home,119959551,Melissa,Manhattan,Chelsea,40.73756,-73.99111,Entire home/apt,219,4,5,2017-12-30,0.18,1,0 +17638709,SPACIOUS BEDROOM PARK SLOPE BROOKLYN,119967955,Erik,Brooklyn,Park Slope,40.66713,-73.98155,Private room,60,1,86,2019-07-01,3.14,1,117 +17640413,"Private room & living room, one block from subway.",44709817,Jackie,Brooklyn,Bedford-Stuyvesant,40.68187,-73.94589,Private room,60,1,3,2017-12-16,0.16,1,0 +17641480,Comfy Room,2412748,Jeremiah,Brooklyn,Crown Heights,40.6727,-73.95505,Private room,82,4,0,,,1,0 +17641625,COZY Large Private APARTMENT in EAST VILLAGE,836353,Luna,Manhattan,East Village,40.72588,-73.98598,Entire home/apt,122,6,22,2019-05-24,0.87,1,15 +17642625,Lovely APT in the Heart of Bushwick!,21877498,Andy,Brooklyn,Bushwick,40.7012,-73.92876,Entire home/apt,125,3,0,,,2,0 +17645939,Vintage Rainbow Room,103361884,Ebony,Brooklyn,Flatbush,40.6514,-73.9616,Private room,44,3,25,2019-06-30,1.78,1,3 +17649690,"Gorgeous condo 20min from NYC,close to the airport",120082555,Arthur,Queens,Rego Park,40.72999,-73.86043,Entire home/apt,125,2,67,2019-07-01,2.58,1,278 +17651607,Cozy room in a 2B with backyard access,9683962,Cristina,Queens,Astoria,40.76987,-73.92679,Private room,55,1,9,2019-04-25,0.91,1,0 +17651741,An East Williamsburg Delight,23192585,Petra,Brooklyn,Bedford-Stuyvesant,40.68335,-73.91222,Private room,47,4,36,2018-06-27,1.28,1,0 +17652158,Cozy bedroom in williamsburg,38593087,Russell,Brooklyn,Williamsburg,40.7087,-73.9671,Private room,80,1,58,2019-06-10,2.08,2,120 +17654277,Spacious Room w/ 2 Bed,116746802,Christine,Queens,Bayside,40.75047,-73.75349,Private room,65,7,40,2019-06-23,1.51,5,148 +17654611,Artsy Private Room in LIC. 2 min walk to Subway.,105372357,Lunara,Queens,Long Island City,40.74117,-73.94904,Private room,75,5,17,2019-06-09,0.61,1,112 +17655017,Astoria's private room,120137482,Dalva,Queens,Long Island City,40.75566,-73.9205,Private room,100,1,0,,,1,0 +17662532,rooms in sunny Loft right off the Bedford L stop,34745360,Anna,Brooklyn,Williamsburg,40.71612,-73.95983,Private room,90,22,0,,,2,0 +17664316,Private Room in Brooklyn Communal House,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67964,-73.95629,Private room,45,2,16,2017-10-21,0.57,3,0 +17664413,Bx Apartment,45671454,Vii,Bronx,Olinville,40.88438,-73.86397,Private room,125,1,0,,,1,0 +17665016,HUGE BEDROOM LORIMER L TRAIN!!!,118378908,Jose,Brooklyn,Williamsburg,40.71355,-73.95003,Private room,69,28,17,2019-04-30,0.61,6,229 +17665855,Spacious two bedrooms condo in upper Manhattan,13860679,Max,Manhattan,Inwood,40.86461,-73.92363,Entire home/apt,199,2,49,2019-05-23,1.81,3,147 +17665943,"Room in Queens, NY, near LGA.",119987770,Sonia,Queens,East Elmhurst,40.76245,-73.87938,Private room,55,1,239,2019-06-29,8.58,2,361 +17665996,Cozy home away from home,18660750,Linelle,Queens,Edgemere,40.5938,-73.77373,Private room,50,1,76,2019-06-27,2.84,1,324 +17666011,Central Park Views - Private Room & Bathroom,120245256,Paul,Manhattan,Upper West Side,40.79712,-73.96117,Private room,125,1,4,2017-08-15,0.14,1,0 +17666300,Ultimate 50th Floor Downtown Penthouse - 4000SqFt,120250860,Diana,Manhattan,SoHo,40.72318,-74.00223,Entire home/apt,2250,2,21,2019-07-01,0.74,2,343 +17666780,Lovely Two Bedroom & Event Space From Nonprofit,120256797,Nyls,Brooklyn,Bedford-Stuyvesant,40.69095,-73.93444,Entire home/apt,125,31,4,2019-05-29,0.16,1,178 +17667188,Private Bedroom in Rego Park / Forest Hills,120261070,Luci,Queens,Rego Park,40.7246,-73.85688,Private room,75,1,0,,,1,0 +17667194,Sunny budget friendly room in Bushwick,8784337,Austin,Brooklyn,Bushwick,40.6937,-73.91006,Private room,32,5,3,2018-04-09,0.11,1,0 +17667585,"Cozy Apartment on Bedford Ave, Brooklyn",42727726,Natasha,Brooklyn,Williamsburg,40.71284,-73.96284,Private room,88,7,15,2018-01-01,0.55,1,0 +17667639,Your 1 bedroom home away from home!,43907907,Elle,Manhattan,Upper West Side,40.79563,-73.97634,Entire home/apt,215,3,38,2019-06-10,1.40,1,31 +17669272,MASTER Cozy Bedroom Queen size 2 blocks Timesquare,110081618,Harry,Manhattan,Hell's Kitchen,40.76125,-73.98945,Entire home/apt,134,1,81,2019-03-05,2.96,2,0 +17669480,Sunny Brownstone Studio in BedStuy Brooklyn,112814443,Jamal,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94618,Entire home/apt,125,2,104,2019-06-12,3.69,1,268 +17669561,"A cozy getaway, home away from home",57862648,Isaiah,Brooklyn,East New York,40.6613,-73.89088,Private room,60,1,0,,,1,88 +17669867,"☀️Private, cozy & quiet room in Inwood Manhattan☀️",18217011,Zhoe,Manhattan,Inwood,40.86857,-73.91577,Private room,60,4,95,2019-07-01,3.65,1,323 +17670245,Cozy bright room near Prospect Park,2263722,Mariam,Brooklyn,Flatbush,40.64945,-73.96108,Private room,56,7,12,2019-03-27,0.44,1,0 +17677710,Private Bedroom with Amazing Rooftop View,93148942,Trey,Brooklyn,Bushwick,40.69872,-73.92718,Private room,85,1,19,2017-08-31,0.72,2,0 +17678601,Pretty Brooklyn One-Bedroom for 2 to 4 people,107947878,Michael,Brooklyn,Bedford-Stuyvesant,40.6781,-73.90822,Entire home/apt,100,2,50,2019-06-26,3.12,2,235 +17679645,Room & private bathroom in historic Harlem,51594665,Shireen,Manhattan,Harlem,40.81248,-73.94317,Private room,55,2,0,,,1,0 +17679822,Rosalee Stewart,120393659,Stanley,Manhattan,Harlem,40.81315,-73.94747,Entire home/apt,150,4,22,2019-06-15,0.85,1,238 +17680363,Large Private Bedroom in Luxury Doorman Building,56840569,Suzanne,Manhattan,Upper East Side,40.78193,-73.95099,Private room,60,183,1,2018-07-30,0.09,1,340 +17680566,*PRIVATE APARTMENT L TRAIN LORIMER STOP,118378908,Jose,Brooklyn,Williamsburg,40.71415,-73.94867,Entire home/apt,108,28,17,2019-04-26,0.66,6,332 +17680571,Brooklyn Garden Apartment in 2 Family House,3811546,Vinz,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95404,Entire home/apt,122,4,59,2018-09-01,2.11,1,217 +17680909,(B) Great value & clean apartment in New York,119548006,Steven,Queens,Fresh Meadows,40.73275,-73.79366,Entire home/apt,45,2,142,2019-07-03,5.03,2,2 +17681190,Cozy Studio at the Heart of Williamsburg,22019825,Ceylan,Brooklyn,Williamsburg,40.71889,-73.95707,Entire home/apt,150,7,2,2018-01-04,0.08,1,0 +17681470,"Family Vacation in NYC, Close to the City!",60244293,Savannah,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92662,Entire home/apt,160,2,45,2018-01-30,1.61,2,0 +17682081,Artist Brooklyn Heights Home,9028424,Michael,Brooklyn,Brooklyn Heights,40.69551,-73.99371,Entire home/apt,140,7,1,2018-01-02,0.05,1,8 +17682208,Bushwick Hideaway (Studio),11392003,Mark,Brooklyn,Bushwick,40.69709,-73.93103,Entire home/apt,210,3,76,2019-06-24,2.80,1,9 +17682543,Studio Apartment in Flatiron District,97266110,Ashley,Manhattan,Greenwich Village,40.73523,-73.99465,Entire home/apt,180,3,2,2017-04-18,0.07,1,365 +17682843,"Astoria close to JFK,Laguardia airport, Manhattan",117195769,Simone,Queens,Astoria,40.76505,-73.90918,Private room,80,1,161,2019-07-02,5.74,3,365 +17682955,Quiet private room near Columbia University,54677014,Andrea,Manhattan,Harlem,40.82279,-73.9517,Private room,79,2,72,2019-06-25,2.59,1,160 +17683202,Amazing Loft. Great light and view!,1721381,Malik,Brooklyn,Park Slope,40.68233,-73.97778,Entire home/apt,180,3,2,2017-04-18,0.07,1,0 +17683903,Full Brownstone Near Prospect Park,21725994,Tim,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95831,Entire home/apt,190,7,9,2019-02-21,0.36,2,82 +17684067,Travelers Private Room,119737270,Fattie,Brooklyn,Flatbush,40.64041,-73.95674,Private room,60,2,0,,,2,175 +17684098,Spacious Uptown Apartment near Columbia University,19884477,Marine,Manhattan,Morningside Heights,40.80935,-73.95786,Entire home/apt,139,1,77,2018-12-17,2.79,1,0 +17684151,Cosy apartment in Park Slope,25054395,Ginevra,Brooklyn,South Slope,40.66929,-73.98707,Entire home/apt,163,5,12,2019-05-30,0.43,1,192 +17684277,Cute Private Room,119737270,Fattie,Brooklyn,Flatbush,40.63865,-73.95786,Private room,65,2,0,,,2,0 +17684359,BEST One Bedroom in the Heart of Manhattan,119829743,Scott,Manhattan,Chelsea,40.74054,-74.0004,Entire home/apt,365,6,7,2018-01-26,0.26,1,0 +17684828,Amazing Astoria New York 2 bedroom 10 min to NYC,120456470,Nicholas,Queens,Ditmars Steinway,40.77411,-73.90926,Entire home/apt,200,5,42,2018-12-07,1.55,1,77 +17684912,Modern 1 bedroom condo near Pratt in Bed-Stuy,6274742,Michael,Brooklyn,Bedford-Stuyvesant,40.69197,-73.95849,Entire home/apt,84,4,8,2019-06-12,1.10,1,0 +17686461,A1Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75386,-73.93324,Private room,58,1,104,2019-06-11,3.74,9,300 +17690331,"Quiet Bedroom in Central Bushwick, 16 mins to NYC",58953152,Dmitry,Brooklyn,Bushwick,40.69927,-73.91316,Private room,42,2,12,2018-12-30,1.26,2,0 +17690699,"Modern, sunny, garden 2 bedroom",64401976,Erin,Brooklyn,South Slope,40.66175,-73.98731,Entire home/apt,90,3,76,2019-06-20,2.75,1,248 +17691601,Charming Blue Bdrm in Victorian Home,3249903,Kamilya,Brooklyn,Flatbush,40.63501,-73.95522,Private room,98,4,0,,,3,0 +17692275,SUNNY BDRM IN VICTORIAN HOME,3249903,Kamilya,Brooklyn,Flatbush,40.63637,-73.95698,Private room,75,4,2,2019-06-10,0.32,3,188 +17692837,"Manhattan Large, room by CUNY& Columbia University",27378293,Lendy,Manhattan,Harlem,40.82837,-73.94854,Private room,86,2,3,2018-09-13,0.11,3,342 +17692964,Downtown NYC Luxury Apartment - TriBeCa,6198824,Tyler,Manhattan,Tribeca,40.7192,-74.01022,Entire home/apt,251,1,12,2017-05-28,0.43,1,0 +17694203,Sun drenched Park Slope getaway..,50755667,Kyla,Brooklyn,South Slope,40.66865,-73.9865,Entire home/apt,85,3,6,2019-02-20,0.23,3,98 +17695571,Luxury 2 BR in Urban Brooklyn,14768609,Grace,Brooklyn,Fort Greene,40.69677,-73.97112,Entire home/apt,285,4,19,2019-07-05,0.68,1,15 +17697164,NEW Park Avenue-Madison Avenue 3BED Condo Sleeps 6,120570941,Genee,Manhattan,Murray Hill,40.74817,-73.98211,Entire home/apt,325,2,5,2017-11-15,0.18,1,0 +17697781,Luxury High-Rise Studio with VIEWS,120577730,Kate,Manhattan,Financial District,40.70833,-74.0131,Entire home/apt,220,2,9,2019-04-09,0.33,1,47 +17697886,Park Slope Gem,120577640,David,Brooklyn,Park Slope,40.66926,-73.97862,Private room,250,1,0,,,1,89 +17698189,A2Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75551,-73.934,Private room,58,1,74,2019-06-21,2.66,9,281 +17698990,A4Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75603,-73.93405,Private room,58,1,86,2019-06-23,3.09,9,301 +17699556,Huge room in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67268,-73.95249,Private room,50,3,16,2018-08-29,0.62,4,37 +17699647,"Minimal Oasis | Best Location:S Williamsburg, BK",11524572,Angelica And Prescott,Brooklyn,Williamsburg,40.71233,-73.96181,Entire home/apt,145,3,56,2019-06-24,2.01,1,18 +17699790,"HGV Club NY, NY",120599606,James,Manhattan,Midtown,40.76383,-73.97704,Private room,199,2,0,,,1,0 +17701658,Luxury Private room in Upper East Side,10661558,Gio,Manhattan,Upper East Side,40.77546,-73.94897,Private room,126,1,120,2019-06-30,4.28,4,148 +17702057,Upper East Side Cozy Apartment,26177358,Vladimir,Manhattan,Upper East Side,40.7683,-73.95919,Entire home/apt,230,4,34,2019-06-25,1.33,1,4 +17702242,Stylish Private BR in the Upper East Side,10661558,Gio,Manhattan,Upper East Side,40.77349,-73.94994,Private room,129,1,117,2019-07-04,4.20,4,155 +17702320,Chic Private BR in Upper East!,10661558,Gio,Manhattan,Upper East Side,40.77571,-73.94803,Private room,119,1,120,2019-06-09,4.34,4,147 +17707963,"5mins from JFK, one cozy bedroom for one",119592255,Kevin,Queens,Jamaica,40.6809,-73.78196,Private room,50,1,173,2019-07-07,6.15,2,365 +17710717,"Light-filled, cozy 2 bedroom apartment",18481424,Tomas,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94483,Entire home/apt,100,7,3,2018-10-21,0.11,1,0 +17710842,"Home Away From Home. Sunny, Spacious 1BR Apartment",387844,Mike,Brooklyn,Brooklyn Heights,40.69452,-73.99552,Entire home/apt,199,90,35,2019-04-09,1.25,1,0 +17711806,Private Room & Private bathroom 2mins to subway!,28573,Sara,Brooklyn,Bedford-Stuyvesant,40.6778,-73.9135,Private room,65,1,140,2019-06-30,5.00,1,144 +17712166,Great room in Washington heights!,43098504,Mike,Manhattan,Washington Heights,40.85022,-73.92903,Private room,50,4,9,2018-09-29,0.33,1,83 +17712552,"Cozy, Private Guest Bedroom In A Great Location",73756811,Cara,Brooklyn,Crown Heights,40.67247,-73.94421,Private room,65,1,51,2018-06-28,1.83,1,0 +17712998,Hip One Bedroom Apartment in NYC's East Village,40031815,Kelly,Manhattan,East Village,40.72864,-73.98102,Entire home/apt,200,5,2,2018-09-25,0.07,1,0 +17713865,Private Room!,7475363,Lola,Manhattan,Upper East Side,40.76578,-73.95443,Private room,150,2,61,2019-06-16,2.85,2,287 +17714306,Private Room in Brooklyn,53972872,Autumn,Brooklyn,Crown Heights,40.67186,-73.94094,Private room,50,1,6,2018-08-28,0.21,1,0 +17716140,Beautiful sunny studio.,120761466,Atherly,Brooklyn,Flatbush,40.64765,-73.95804,Private room,90,2,45,2019-06-30,1.64,1,363 +17716205,Brand new studio in high rise,26980460,Joe,Brooklyn,Downtown Brooklyn,40.69383,-73.98539,Entire home/apt,180,14,1,2018-09-17,0.10,1,0 +17716225,Dreamy Parkside Loft-Studio w/ Private Patio,84548731,Shelley,Brooklyn,Prospect-Lefferts Gardens,40.65531,-73.96161,Private room,50,4,6,2019-03-31,0.22,1,6 +17716237,Sunny one bedroom on the Upper East Side,4812440,Mara,Manhattan,Upper East Side,40.7701,-73.9589,Entire home/apt,250,2,0,,,1,0 +17716523,30 Minutes from Manhattan Apartment by South Beach,41398005,Mirco,Staten Island,Arrochar,40.59347,-74.06914,Entire home/apt,122,1,52,2019-06-23,2.00,3,219 +17717593,Plymouth Loft,7854459,Christina,Brooklyn,DUMBO,40.70208,-73.98568,Entire home/apt,225,2,1,2018-04-14,0.07,1,88 +17717799,Neat En-suite room attached PRIVATE full bath,120767920,Jimmy &Cindy,Queens,Flushing,40.75708,-73.81268,Private room,51,2,129,2019-06-23,4.63,10,355 +17718694,Artist's Bitchin 1BR,4933848,Mathew,Brooklyn,Bushwick,40.69554,-73.92588,Entire home/apt,90,1,4,2017-05-12,0.14,1,0 +17719353,Private Queen room&bathroom in NEW Luxury Building,89197711,Albert,Brooklyn,Gravesend,40.60044,-73.99341,Private room,79,1,2,2017-05-28,0.08,1,0 +17719502,Duplex 5 BR apartment in a historic brownstone,29055402,Petra,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93509,Entire home/apt,275,2,66,2019-06-28,2.42,1,23 +17725136,Large room in Bushwick,45387487,Andrew,Brooklyn,Bushwick,40.69705,-73.92585,Private room,45,1,0,,,1,1 +17728208,Bright and Clean One Bedroom - Females Only!,95306427,Alexi,Manhattan,East Village,40.72766,-73.98249,Private room,100,3,26,2018-10-21,0.94,1,0 +17728927,"Eclectic, Comfortable, Quiet & Convenient on UWS",62641345,Bob,Manhattan,Upper West Side,40.7975,-73.97161,Entire home/apt,199,2,83,2019-06-30,3.01,1,37 +17729060,Cute and Sunny Soho Room,4135793,Zoe,Manhattan,Nolita,40.72263,-73.99622,Private room,75,1,8,2017-04-30,0.28,1,0 +17729625,Lovely Brown Stone Casa Curran,120890372,Michelle Curran,Brooklyn,Bushwick,40.695,-73.90755,Entire home/apt,145,7,25,2019-06-16,0.95,1,271 +17730019,HALSEY HAVEN,101435219,Gretchen,Brooklyn,Bedford-Stuyvesant,40.68607,-73.92392,Entire home/apt,161,2,45,2019-06-24,1.65,2,270 +17730390,Bedroom in Brooklyn Communal House,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.68116,-73.95726,Private room,45,2,14,2017-09-30,0.51,3,0 +17730939,Large bright bedroom,369015,Thai,Bronx,Pelham Gardens,40.86437,-73.83863,Private room,43,20,6,2019-06-23,0.69,2,104 +17730964,Charming room in a spacious 3/1,41847916,Farah,Brooklyn,Bedford-Stuyvesant,40.68683,-73.94411,Private room,50,2,0,,,1,0 +17731252,Sunny Brooklyn Home,9263625,Em,Brooklyn,Prospect Heights,40.67774,-73.96487,Entire home/apt,95,7,22,2019-06-23,0.78,1,13 +17731335,Private room in cozy Astoria apartment,120906593,Yoko,Queens,Astoria,40.76121,-73.92341,Private room,60,2,40,2019-06-23,1.46,1,67 +17731370,Spacious Apartment Near Yankee Stadium.,120906241,Crystal,Bronx,Morris Heights,40.84565,-73.91684,Entire home/apt,80,4,0,,,1,0 +17731891,New 2 BDR apt/great location/20 mins to Manhattan,120725189,Svetlana,Brooklyn,Bath Beach,40.60353,-74.01599,Entire home/apt,180,3,46,2019-07-02,1.68,1,334 +17735101,Quiet Studio in the ❤️of Hells Kitchen for 1 person,25651976,Lola,Manhattan,Hell's Kitchen,40.7606,-73.99345,Entire home/apt,150,8,8,2019-01-02,0.30,1,11 +17735156,Private Cozy Large Comfortable Bedroom.,4204783,Kevin,Staten Island,West Brighton,40.63116,-74.12278,Private room,49,2,45,2019-06-09,1.62,3,276 +17735639,Adorable Bright Private Bedroom.,4204783,Kevin,Staten Island,West Brighton,40.63149,-74.12393,Private room,49,2,32,2019-06-29,1.14,3,315 +17735760,5-STAR REVIEW 1 BEDROOM LINCOLN CENTER- BEST PRICE,9215977,Kevin,Manhattan,Upper West Side,40.77617,-73.98188,Entire home/apt,249,3,20,2019-06-29,0.84,1,63 +17737245,Chic & zen room in a very clean Brooklyn apt,43045034,Thuy,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93839,Private room,70,3,27,2019-06-01,1.81,1,0 +17737925,Extra Cosy Room in Williamsburg,120989542,Arthur,Brooklyn,Williamsburg,40.70626,-73.95212,Private room,60,4,3,2017-08-07,0.12,1,0 +17738174,Bayside Room w/ 1 Bed,116746802,Christine,Queens,Bayside,40.74924,-73.75654,Private room,49,3,29,2019-06-16,1.07,5,96 +17738717,Clean Cosy Bedroom w/Desk 10min to JFK & Big Mall,6166708,Christine & Einstein,Queens,Rosedale,40.65252,-73.73425,Private room,22,1,59,2019-05-17,2.10,1,0 +17739111,Living Room in 2 Bedroom Apartment Brighton Beach,119523037,Anna,Brooklyn,Brighton Beach,40.58017,-73.9616,Shared room,50,1,1,2017-09-13,0.05,4,1 +17741347,Cozy studio w/kitchen & bathroom. Great location,3435092,Elena,Manhattan,Upper East Side,40.7823,-73.94838,Entire home/apt,105,5,117,2019-06-23,4.29,3,187 +17743697,Glam Private Bedroom 6 stops to Time Square,14746465,Brooklyn,Manhattan,Harlem,40.81184,-73.94488,Private room,89,3,49,2018-07-15,1.76,1,157 +17744351,1 Bd furnished Bayridge Brooklyn NY,119029523,Ebada,Brooklyn,Fort Hamilton,40.62241,-74.02863,Entire home/apt,115,4,3,2019-05-19,0.48,3,295 +17746222,Perfect bedroom. Near Subways Columbia CityCollege,16721721,Federico,Manhattan,Harlem,40.8153,-73.9508,Private room,65,2,18,2018-11-04,0.64,1,0 +17748284,Guest BedRm in quaint NYC neighborhood. NEAR TRAIN,25196982,Nikolas,Queens,Astoria,40.76924,-73.91702,Private room,65,1,11,2019-06-17,3.24,1,9 +17749273,1 br Woodside - close to LGA!,121096858,Caressa,Queens,Woodside,40.74176,-73.90631,Private room,35,1,0,,,1,0 +17750238,Great room in a spacious Inwood Apartment,13860679,Max,Manhattan,Inwood,40.86348,-73.92232,Private room,99,3,4,2018-10-03,0.15,3,179 +17750380,Bright Sanctuary in Williamsburg,611109,Alexandra,Brooklyn,Williamsburg,40.70849,-73.96603,Private room,83,1,46,2019-06-25,1.69,2,192 +17750513,"Private Room with Full Private Bath, cozy&quiet",121109701,Sean,Brooklyn,Williamsburg,40.70961,-73.94635,Private room,45,1,98,2019-06-27,3.53,1,44 +17750661,elegant room in a spacious Inwood apartment,13860679,Max,Manhattan,Inwood,40.86448,-73.92351,Private room,99,3,0,,,3,180 +17751140,Room in Queens NY near LGA,119987770,Sonia,Queens,East Elmhurst,40.76075,-73.87943,Private room,55,1,296,2019-07-01,10.60,2,322 +17751338,Brooklyn Beauty,19222653,Kara,Brooklyn,Bay Ridge,40.63431,-74.02552,Entire home/apt,100,3,25,2019-06-11,0.96,1,353 +17751792,Prospect Heights Jewel,105315535,Ben,Brooklyn,Prospect Heights,40.67453,-73.96785,Entire home/apt,158,30,0,,,3,281 +17752493,Private Room in Large Two-floor Apt w/ Backyard,20926711,Ashek,Manhattan,Chelsea,40.74864,-73.99398,Private room,89,2,2,2017-04-02,0.07,1,113 +17752907,large light-filled bedroom in Bushwick!,65068375,Mabel,Brooklyn,Bushwick,40.70216,-73.92928,Private room,37,2,1,2017-05-08,0.04,1,0 +17753121,Spacious Serene Large Room near L Train,121141615,Beth,Queens,Ridgewood,40.70886,-73.91742,Private room,60,1,1,2017-09-24,0.05,1,0 +17754072,Bed in Family Home Near LGA Airport,26432133,Danielle,Queens,East Elmhurst,40.76389,-73.87155,Shared room,38,1,224,2019-07-06,7.96,5,80 +17756109,Manhattan Hotel Room,7050126,Sasha,Manhattan,Midtown,40.76305,-73.97841,Entire home/apt,800,1,19,2017-06-24,0.69,2,0 +17757976,Spacious Luxury Loft - 1BR,121185129,Kathleen,Manhattan,Gramercy,40.7345,-73.98482,Entire home/apt,325,6,11,2018-07-29,0.41,1,177 +17759478,(4) Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.6899,-73.95498,Private room,89,1,76,2019-06-30,2.77,4,358 +17759482,"Clean, beautifully modernized, vintage apartment",32012247,Isaiah,Manhattan,Lower East Side,40.72194,-73.98941,Shared room,68,1,5,2017-06-18,0.18,1,0 +17759520,Harlem Triplex,3726131,John,Manhattan,Harlem,40.80766,-73.94342,Entire home/apt,700,6,2,2018-04-08,0.09,2,72 +17759694,Private Williamsburg SunDrenched Large Studio,17041154,Lindsay,Brooklyn,Williamsburg,40.70987,-73.94756,Entire home/apt,210,2,35,2019-06-23,1.56,1,170 +17762218,Greatly located Williamsburg 1BR ap,22570120,Charles,Brooklyn,Williamsburg,40.71164,-73.9572,Entire home/apt,150,30,5,2018-06-02,0.20,2,48 +17762525,"Quiet, Comfortable Studio in Chelsea/Village",19824881,Julia,Manhattan,Chelsea,40.74128,-73.99986,Entire home/apt,139,1,0,,,1,0 +17762733,MASTER SUITE IN THE CENTRAL PARK,114477998,Marilyn,Manhattan,East Harlem,40.79274,-73.94562,Private room,103,2,137,2019-07-06,5.12,4,208 +17762827,"Perfect, cozy room in Crown Heights, Brooklyn",1898704,Luca,Brooklyn,Crown Heights,40.67181,-73.95865,Private room,45,25,2,2017-08-20,0.08,1,0 +17763622,JUNIOR SUITE IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.79142,-73.94664,Private room,90,2,110,2019-06-29,4.04,4,237 +17763785,"Oversized one bedroom +Midtown, West 57 the St.",120381434,JoAnn,Manhattan,Hell's Kitchen,40.76722,-73.98568,Entire home/apt,227,5,6,2019-04-23,0.95,1,0 +17764129,One Bedroom Apartment in Williamsburg Brooklyn,121244117,Todd,Brooklyn,Williamsburg,40.71869,-73.95158,Entire home/apt,100,2,1,2017-03-24,0.04,1,0 +17764355,"@Ferry,Loft,2Bdrm/4bed.Private,Renovated/Stylish",1715301,Mark,Staten Island,Tompkinsville,40.63568,-74.07826,Entire home/apt,75,4,117,2019-07-01,4.31,3,173 +17764691,UWS Studio Apt (Between Columbus & Amsterdam Ave),120951063,Roxanne,Manhattan,Upper West Side,40.78549,-73.97664,Entire home/apt,97,3,4,2017-04-16,0.14,1,0 +17765198,Neat Room w/ 1 Bed,116746802,Christine,Queens,Bayside,40.75092,-73.75316,Private room,50,7,35,2019-06-24,1.29,5,145 +17765395,Bayside Room w/ 2 Bed,116746802,Christine,Queens,Bayside,40.75136,-73.75269,Private room,60,7,30,2019-05-26,1.10,5,169 +17765398,"Cozy, quiet apartment in trendy Greenpoint spot!",46504226,Chelsea,Brooklyn,Greenpoint,40.73018,-73.95464,Private room,50,7,1,2019-03-16,0.26,1,157 +17765841,2-bedroom Apt on Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.74923,-73.80568,Entire home/apt,229,1,22,2018-12-27,0.80,6,265 +17766580,Sunny 1 bedroom in Nolita,4223227,Masha,Manhattan,Lower East Side,40.7203,-73.99172,Entire home/apt,150,2,18,2018-04-28,0.87,1,0 +17771762,"Quiet, Large, & Cozy Bedroom in Cool Bushwick Apt",9864136,Anthony,Brooklyn,Bushwick,40.68643,-73.91465,Private room,50,1,3,2017-09-30,0.13,26,342 +17771811,NYC pad without the NYC price tag,48331309,Ketty,Staten Island,Tompkinsville,40.63101,-74.08443,Entire home/apt,95,4,54,2018-09-24,2.06,1,0 +17774316,Large bedroom in 3 bedroom apt UES,121352443,Michael,Manhattan,East Harlem,40.78866,-73.95435,Private room,62,3,3,2017-04-28,0.11,1,0 +17774731,Beautiful private studio near central park,45006492,Lucia,Manhattan,East Harlem,40.80617,-73.9415,Entire home/apt,115,1,161,2019-06-23,5.78,2,156 +17774810,Bedroom in fully renovated apartment,29546670,Norberto & Lana,Queens,Ridgewood,40.70336,-73.90991,Private room,55,1,41,2019-07-03,2.18,1,5 +17774890,Brownstone with farmhouse charm,20378750,Corinne,Brooklyn,Crown Heights,40.67438,-73.94071,Entire home/apt,90,6,8,2018-07-24,0.35,1,8 +17774989,Cozy room in West Harlem,121359320,Kathy,Manhattan,Harlem,40.83046,-73.94142,Private room,30,1,7,2017-08-21,0.25,1,0 +17776104,Private room in East Harlem close to heart of NYC,38772311,Sophie,Manhattan,East Harlem,40.80113,-73.94283,Private room,100,2,0,,,1,0 +17776390,CHIC LOFT IN CONVERTED FACTORY - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70422,-73.92757,Private room,71,1,73,2019-06-21,2.61,3,364 +17776554,ARTIST LOFT IN CONVERTED FACTORY - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70276,-73.9271,Private room,70,1,59,2018-04-15,2.11,3,362 +17777286,Brownstone studio near central park,45006492,Lucia,Manhattan,East Harlem,40.80623,-73.94047,Entire home/apt,115,1,134,2019-06-24,4.81,2,1 +17777654,Bright Comfy Quiet Room Just 6 Mins from JFK!,121391142,Deloris,Queens,Springfield Gardens,40.666,-73.76333,Private room,65,1,325,2019-06-12,11.72,2,0 +17778366,Shang Ri La Studio,10910171,Melissa,Queens,Rockaway Beach,40.58493,-73.81736,Entire home/apt,120,1,113,2019-06-25,4.07,2,133 +17778781,Room in cute apartment in South Williamsburg,120567010,Molly,Brooklyn,Williamsburg,40.71168,-73.9657,Private room,100,5,2,2017-05-25,0.07,1,0 +17778941,L Bright & Cozy & Modern room 30 mins to Manhattan,43052484,Olzhas,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93502,Private room,59,1,181,2019-07-06,6.65,1,34 +17779504,Relaxing Quiet Room Just 6 Mins from JFK Airport!,121391142,Deloris,Queens,Springfield Gardens,40.66535,-73.76367,Private room,65,1,368,2019-06-21,13.24,2,0 +17779879,UWS Private Room & Bath,18140569,Carrie,Manhattan,Upper West Side,40.80171,-73.96623,Private room,89,5,55,2018-09-07,2.02,1,0 +17780857,"SUPER HIGH END condo, roof deck, Ditmas Park Bklyn",121429669,Elizanda,Brooklyn,Kensington,40.63052,-73.97161,Private room,250,2,0,,,1,365 +17781440,Elegant bedroom 8 mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68615,-73.78747,Private room,80,1,177,2019-06-23,7.00,3,180 +17786762,"Lovely 1 Bdrm, Glittering City Lights & Waterview",945880,Juhea,Manhattan,Hell's Kitchen,40.76428,-73.9941,Entire home/apt,127,3,1,2017-05-12,0.04,1,0 +17788697,PRIVATE BROOKLYN APT. with quiet garden,3682941,Marco,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95254,Private room,150,5,0,,,1,66 +17790276,Spacious 2 bedroom w/ balcony. BrooklynNY NEAR ALL,116754031,Rosemary,Brooklyn,Flatlands,40.63159,-73.92724,Entire home/apt,170,2,3,2019-06-27,1.14,3,180 +17790958,Room in SOHO! On Broome Street,49651890,Rosemarie,Manhattan,Nolita,40.72196,-73.99664,Private room,120,6,47,2019-07-03,2.54,1,40 +17791461,Bunk Bed Fun Room - really cozy and affordable!,5121858,Erica,Brooklyn,Bushwick,40.69708,-73.91237,Private room,44,3,31,2019-07-01,1.11,1,365 +17791464,Convenient LIC Brownstone,57643057,Daniel,Queens,Long Island City,40.7483,-73.94531,Private room,71,7,102,2019-04-15,3.66,2,173 +17791938,Seperate Appartement in Appartement Bklyn Hights,16302498,Andreas,Brooklyn,Brooklyn Heights,40.69253,-73.99249,Private room,150,2,61,2019-06-16,2.36,1,117 +17792429,The Maujer Patio,28876335,Michael,Brooklyn,Williamsburg,40.70973,-73.94552,Private room,75,2,0,,,1,0 +17792856,Cute bedroom available near subway in Astoria!,73610315,Kerstin,Queens,Astoria,40.76529,-73.92304,Private room,53,2,14,2018-05-17,0.55,1,0 +17793180,Nice room in quiet 3BR apartment,106046570,Diamond,Brooklyn,Bushwick,40.69491,-73.91266,Private room,100,1,2,2018-01-01,0.09,1,269 +17793185,Sunny Apartment In Brownstone 2BD with deck,3803423,Jenna,Brooklyn,Prospect Heights,40.67841,-73.9698,Entire home/apt,175,7,5,2018-10-25,0.18,1,0 +17793963,Luxury/360 View/Gym/Downtown/Doorman,121574038,Christianne,Manhattan,East Village,40.72107,-73.98039,Entire home/apt,170,3,8,2019-05-27,0.36,1,111 +17794915,Modest West Harlem Room Nearby Columbia University,121585653,Ari,Manhattan,Harlem,40.81733,-73.95413,Private room,25,1,0,,,1,0 +17796480,PRIVATE ROOM near JFK & La Guardia,100812175,Luz,Queens,Jackson Heights,40.75125,-73.87644,Private room,51,1,108,2019-06-30,3.91,1,306 +17797691,Manhattan Art Haven,70543663,Kelli,Manhattan,Upper East Side,40.76999,-73.94928,Entire home/apt,95,1,89,2019-06-21,3.72,1,0 +17806646,Beautiful Loft Railroad apartment in Bushwick,29952340,Nico,Brooklyn,Bushwick,40.70432,-73.9267,Entire home/apt,94,2,51,2019-06-28,1.87,1,74 +17808825,AG's Palace 1,121612198,Maura,Brooklyn,Canarsie,40.6427,-73.91266,Private room,69,1,20,2018-10-15,0.78,4,305 +17808917,Gorgeous & Spacious UES apartment,85218001,Natasha,Manhattan,Upper East Side,40.77666,-73.95618,Private room,105,2,8,2018-06-16,0.30,1,0 +17809161,East Village 1 Bdrm Price Negotiable Exposed Brick,1872051,Alejo,Manhattan,East Village,40.72856,-73.98125,Entire home/apt,79,2,1,2017-04-07,0.04,1,0 +17809303,Room With A View,1495021,Lida,Queens,Sunnyside,40.7381,-73.91893,Private room,64,31,0,,,2,95 +17809310,Cozy guest room in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67164,-73.95326,Private room,40,15,26,2019-06-03,0.93,4,67 +17809649,Gorgeous East Harlem private room,76534284,TaSh,Manhattan,East Harlem,40.79295,-73.93808,Private room,62,3,21,2018-09-23,0.77,1,0 +17811033,LARGE LUXURY DESIGNER WALL ST APARTMENT,96735804,E,Manhattan,Financial District,40.70552,-74.00941,Entire home/apt,110,7,32,2019-06-13,1.17,1,272 +17812444,3 bedroom in the heart of the west village,54850437,Lauren,Manhattan,West Village,40.73581,-74.00666,Entire home/apt,185,4,22,2019-07-02,0.81,1,22 +17812919,Vibrant Brownstone Penthouse Near Central Park,6430476,John,Manhattan,East Harlem,40.80726,-73.93815,Entire home/apt,177,2,130,2019-07-05,4.80,1,267 +17813679,Bright 1 Bedroom Apartment in Brooklyn,15400695,Danielle,Brooklyn,Crown Heights,40.67541,-73.94917,Entire home/apt,110,2,4,2019-05-19,0.30,1,0 +17813907,"Perfect 1 Bdrm Touring Apt, Midtown, Close to ALL!",9127398,Carissa,Manhattan,Murray Hill,40.74891,-73.97846,Entire home/apt,235,3,0,,,1,0 +17814209,"Private room in UES:Ideal Location, Private &Quiet",95785961,Cinthya,Manhattan,Upper East Side,40.78311,-73.95299,Private room,80,3,85,2019-05-26,3.06,1,28 +17817203,Room rent for close to Manhattan,121802962,Sandra,Queens,Astoria,40.77411,-73.92731,Private room,53,5,47,2019-06-23,1.76,1,5 +17819994,"Bedroom in Park Slope, 20 min to city",20846509,Ludvig,Brooklyn,Park Slope,40.67148,-73.97766,Private room,95,9,4,2017-11-11,0.18,1,0 +17820343,Cozy Studio on the Upper East Side!,30283594,Kara,Manhattan,Upper East Side,40.76138,-73.9598,Entire home/apt,115,30,1,2017-09-30,0.05,121,336 +17822626,"Airy, Private Room in an Artistic Apartment",29510483,Amandine,Brooklyn,Prospect-Lefferts Gardens,40.65749,-73.95511,Private room,65,2,0,,,1,0 +17824129,NEWLY FURNISHED Studio at Park Avenue South,102763353,Krysia,Manhattan,Midtown,40.74397,-73.98405,Entire home/apt,130,4,5,2018-09-02,0.19,2,0 +17824351,"Heart of East Village, Middle of Everything",30381715,Sean,Manhattan,East Village,40.72552,-73.98657,Private room,79,4,1,2017-05-13,0.04,1,0 +17825100,2 bedroom with patio in clinton hill,48243500,Carri,Brooklyn,Clinton Hill,40.69422,-73.96565,Entire home/apt,107,2,5,2017-05-30,0.18,1,0 +17826827,Shabby chic Studio 1 Block from McGolrick Park,5626253,Matthew,Brooklyn,Greenpoint,40.7233,-73.94187,Entire home/apt,116,1,9,2017-04-30,0.32,1,0 +17828289,Dreamy & Flowery Bedstuy Bedroom,105018962,Karly,Brooklyn,Bedford-Stuyvesant,40.69461,-73.94825,Private room,47,3,5,2017-08-14,0.20,2,0 +17828438,Lovely Bedroom in heart of East Village,23089531,Caitlin,Manhattan,East Village,40.72771,-73.98983,Private room,100,2,66,2019-06-12,2.39,3,27 +17829241,All in one place (A),74179880,Silvia,Brooklyn,East New York,40.6754,-73.88989,Private room,75,3,71,2019-06-10,2.61,8,360 +17829947,Big & Sunny Apartment in Williamsburg,81141009,Jason,Brooklyn,Williamsburg,40.71666,-73.94562,Entire home/apt,160,5,10,2017-09-27,0.37,1,0 +17830470,Spacious 3BR Brownstone with HUGE backyard,22659263,Kate,Brooklyn,Crown Heights,40.67091,-73.94888,Entire home/apt,275,4,6,2019-07-06,0.26,1,96 +17831929,Apartment of Musicians in Ditmas Park,11136995,Gabriel,Brooklyn,Flatbush,40.64807,-73.96625,Private room,22,3,2,2018-03-05,0.08,1,0 +17832970,Private Room in 2 Bedroom Apartment by the Sea,119523037,Anna,Brooklyn,Brighton Beach,40.58186,-73.9602,Private room,60,1,2,2019-02-11,0.07,4,1 +17835503,Manhattan/ Center of Manhattan,46506241,Marcy,Manhattan,Harlem,40.81213,-73.9395,Entire home/apt,70,4,9,2018-07-02,0.44,1,0 +17839052,TWO PRIVATE ROOMS in apt share,119466544,Jim,Brooklyn,South Slope,40.66424,-73.98395,Private room,100,3,6,2019-05-07,0.23,2,179 +17839487,Sunny Top Floor Room with Manhattan skyline view,122012905,Lene,Brooklyn,Bedford-Stuyvesant,40.68144,-73.9426,Private room,55,5,0,,,1,0 +17839944,CUTE ROOM - Times Square-19minutes,122026078,Shah Memo,Manhattan,Harlem,40.81703,-73.9525,Private room,64,2,8,2019-06-23,0.29,3,98 +17840284,Great Washington Heights Private Bedroom in a 4 BR,122028274,Markus,Manhattan,Washington Heights,40.84545,-73.93809,Private room,47,3,4,2018-08-13,0.16,1,0 +17840682,Home away from home in the heart of Chelsea,122032246,Jaime,Manhattan,Chelsea,40.74107,-73.99936,Entire home/apt,250,2,2,2017-04-21,0.07,1,0 +17841354,Williamsburg Dream Home,122038353,Florent,Brooklyn,Williamsburg,40.71724,-73.94492,Entire home/apt,190,15,8,2019-06-09,0.31,1,198 +17842111,1st flr full studio apartment- entire place/SAFE,122044895,Yerddy,Bronx,Kingsbridge,40.8781,-73.89998,Entire home/apt,99,3,116,2019-06-22,4.35,2,86 +17842115,"Art, Design & Comfort.",68228552,Assane,Brooklyn,Bedford-Stuyvesant,40.68309,-73.95249,Private room,88,7,6,2018-10-28,0.33,2,82 +17842170,Brooklyn Chic,122044489,Tonie,Brooklyn,Bedford-Stuyvesant,40.6905,-73.94375,Private room,100,1,0,,,2,130 +17843168,Columbus Circle Lincoln center Central park,112335936,Ronnie,Manhattan,Upper West Side,40.77048,-73.98252,Private room,250,3,11,2019-04-21,0.42,1,17 +17843998,"Large & Sunny, a Lovely 2-Bed Apt in East Village",23089531,Caitlin,Manhattan,East Village,40.72571,-73.98789,Entire home/apt,250,2,8,2019-06-02,0.32,3,264 +17844130,Trendy Apt in Historic Brooklyn Heights,101127101,John,Brooklyn,Brooklyn Heights,40.69564,-73.99691,Entire home/apt,150,3,26,2019-05-27,0.95,1,0 +17844682,MIDTOWN * UNICORN * TOWNHOUSE!!,22456949,Matthew,Manhattan,Hell's Kitchen,40.76616,-73.98916,Entire home/apt,484,2,107,2019-06-23,3.95,1,46 +17845507,Small room in South Slope House,122079426,Martha,Brooklyn,South Slope,40.6632,-73.98529,Private room,50,1,19,2017-06-12,0.71,1,0 +17845650,Cosy Midtown Studio,121620125,Phil,Manhattan,Midtown,40.75794,-73.96959,Entire home/apt,141,8,12,2018-02-02,0.44,1,0 +17847040,Spacious 1bd in the heart of Midtown High Rise !,31451454,Terry,Manhattan,Midtown,40.76352,-73.9831,Entire home/apt,199,2,70,2019-06-15,2.65,1,263 +17848298,Quiet Home in Manhattan,9871522,Adam,Manhattan,Morningside Heights,40.81473,-73.96217,Entire home/apt,140,2,2,2018-05-07,0.14,1,0 +17848627,Cozy Room in Harlem,122118705,Anselmo,Manhattan,Harlem,40.8217,-73.93751,Private room,79,2,36,2019-06-30,3.17,1,218 +17848657,Sunny Brooklyn Apartment with Full Kitchen,12117418,Jeanette,Brooklyn,Navy Yard,40.69851,-73.96961,Entire home/apt,142,2,3,2017-08-28,0.11,1,0 +17848838,Spacious Bedroom with Private Bathroom,57651976,Viona,Brooklyn,Bedford-Stuyvesant,40.68656,-73.9522,Private room,80,1,3,2017-10-01,0.11,1,0 +17849234,perfect apartment in New york with 3 bedrooms,6945333,Duryea,Manhattan,Chelsea,40.75538,-74.00441,Shared room,337,27,0,,,1,365 +17853353,Private Room Near Bronx Zoo and NYBG!,48106825,Julia,Bronx,Pelham Gardens,40.86437,-73.8485,Private room,47,2,40,2019-04-16,1.58,2,339 +17855771,Sunny room in spacious Williamsburg Loft!,34745360,Anna,Brooklyn,Williamsburg,40.71647,-73.95971,Private room,65,20,1,2017-06-01,0.04,2,0 +17856672,"New 1 Bedroom, Clean, Modern Apartment",53978622,Narina,Manhattan,Harlem,40.81217,-73.94056,Entire home/apt,149,3,80,2019-06-24,2.92,2,268 +17857431,Architect-Designed Brooklyn Townhouse,2065971,Elana,Brooklyn,Crown Heights,40.67933,-73.96305,Entire home/apt,300,5,3,2018-08-12,0.12,1,0 +17857890,Quiet 1 Br Apartent in Historical Brooklyn Heights,25502436,Anastasia,Brooklyn,Brooklyn Heights,40.6961,-73.99329,Private room,159,2,5,2018-11-16,0.19,1,363 +17858824,The Blue Room,611137,Shahar,Brooklyn,Clinton Hill,40.68352,-73.96771,Private room,60,3,9,2019-04-22,0.34,2,6 +17860067,Beautiful Sunlit Room in Brooklyn,7573472,Divina,Brooklyn,Bushwick,40.70219,-73.93115,Private room,50,3,2,2018-01-07,0.07,1,0 +17860607,Super Cozy Luxury Apt,10914834,Heidi,Manhattan,Financial District,40.70464,-74.00715,Entire home/apt,220,2,108,2019-07-01,3.92,1,225 +17860684,Manhattan Club (1 bedroom/Sleeps 4),41069190,Ana,Manhattan,Midtown,40.76587,-73.98211,Entire home/apt,380,4,0,,,1,0 +17861841,THE CREATIVE COZY ROOM,47591528,Janessa,Brooklyn,Sheepshead Bay,40.59211,-73.94127,Private room,99,1,13,2019-05-23,0.52,1,82 +17863000,"Greenpoint, BK 1 Bedroom, Couple/Solo Traveler",451032,Daniela,Brooklyn,Greenpoint,40.72428,-73.94686,Entire home/apt,120,3,8,2019-06-21,1.28,1,3 +17864665,Fully Furnish Fancy Alcove Studio in Manhattan,4059918,Sonia,Manhattan,Upper East Side,40.76987,-73.95111,Entire home/apt,110,14,4,2019-07-06,0.36,1,221 +17865806,Convenient location Private room,5828830,Low,Queens,Jamaica,40.67414,-73.76454,Private room,50,7,14,2018-07-28,0.50,2,0 +17865967,"12min to NY & 10minLGA/30minJFK, Fit Mem for 1mth+",100128949,Lisa,Queens,Astoria,40.75615,-73.91281,Private room,30,90,2,2017-07-01,0.08,4,341 +17866018,Beautiful Room in Styvesant Heights Brooklyn,122283834,Eve,Brooklyn,Bushwick,40.69723,-73.92511,Private room,60,5,22,2019-06-17,0.96,2,175 +17866206,"Coney Island Private Apt*** Wi Fi, LCD TV MCU Park",114736959,Ed,Brooklyn,Coney Island,40.57706,-73.98439,Entire home/apt,110,2,57,2019-05-27,2.13,6,144 +17866302,Harlem apt,22089863,Ali,Manhattan,Harlem,40.80533,-73.95049,Private room,75,1,2,2019-02-17,0.40,1,280 +17872922,Cozy 2-Bedroom in Williamsburg by the bridge,30494797,Terry,Brooklyn,Williamsburg,40.71185,-73.95806,Entire home/apt,100,20,10,2018-12-22,0.42,1,45 +17874595,Private room in a peaceful home ❤,122372251,Christopher,Manhattan,East Harlem,40.79274,-73.94286,Private room,65,1,81,2018-04-21,2.93,1,0 +17875002,Nice private room in quiet E Village apt,10387304,Michael,Manhattan,East Village,40.73057,-73.986,Private room,125,2,21,2019-07-01,0.77,2,329 +17875156,little place in Bushwick,56076854,Miranda,Brooklyn,Bushwick,40.69377,-73.91269,Private room,40,5,84,2019-07-05,3.04,2,316 +17876530,Spacious Garden Apartment Private Entrance,11305944,Yahaira,Bronx,Allerton,40.86868,-73.85483,Entire home/apt,105,2,73,2019-06-13,2.67,5,87 +17876921,Bright Williamsburg Apt Steps from Train,47054725,Katharine,Brooklyn,Williamsburg,40.70937,-73.95903,Entire home/apt,115,4,6,2017-09-20,0.22,1,0 +17877959,Huge Studio Apt+Sleeps 4 ppl Bklyn Near ALL,116754031,Rosemary,Brooklyn,Flatlands,40.62723,-73.92635,Entire home/apt,75,2,38,2019-06-30,1.38,3,363 +17879131,Amazing Space For Your Chelsea Stay,122419373,Pablo,Manhattan,Chelsea,40.74119,-74.0006,Private room,429,2,119,2019-06-17,4.33,1,288 +17880254,Spacious New York City Travelers Getaway,9808458,Zain,Bronx,Kingsbridge,40.8709,-73.89946,Shared room,60,2,11,2019-01-01,0.52,4,365 +17880865,Nurturing room in a 3 bedroom apt.,59654765,Calia,Brooklyn,Crown Heights,40.67689,-73.95079,Private room,30,3,3,2017-04-19,0.11,1,0 +17881079,Charming studio with Manhattan view.,17232044,Maria,Brooklyn,Greenpoint,40.72449,-73.94486,Private room,84,7,7,2019-01-02,0.26,1,24 +17881120,Cozy Room in the Heart of Chinatown,122442440,Randy,Manhattan,Chinatown,40.71326,-73.99698,Private room,75,2,59,2019-06-25,2.21,1,68 +17881234,Garden level private room + your own bathroom,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91701,Private room,50,4,10,2019-05-18,1.06,2,7 +17881553,"Deluxe Private Bedroom, Near Manhattan NYC",22384027,Shahana,Brooklyn,Crown Heights,40.67089,-73.9182,Private room,39,1,81,2019-05-27,2.99,10,220 +17887213,Beautiful 2 Bedroom suite in Bedford Stuyvesant.,17859338,Jacqueline,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95471,Entire home/apt,160,5,59,2019-07-04,2.40,2,243 +17887871,Charming Greenpoint Gem,122513490,Dorothy,Brooklyn,Greenpoint,40.72158,-73.94578,Entire home/apt,175,3,71,2019-06-21,2.67,1,20 +17888337,Nice neat Bedroom attached by PRIVATE BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75901,-73.81461,Private room,47,3,92,2019-06-16,3.40,10,172 +17889021,Charming 1 Br apartment minutes from the train,17739345,Boris,Queens,Ditmars Steinway,40.77872,-73.90943,Entire home/apt,89,1,0,,,1,0 +17891040,Brooklyn Bay Ridge area★★明るいお部屋★,55981584,Saori,Brooklyn,Bay Ridge,40.63613,-74.02262,Private room,29,1,3,2017-04-10,0.11,2,0 +17892114,Walk to CENTRAL PARK and TIME SQUARE!!!!,6716330,Chris,Manhattan,Midtown,40.76811,-73.98181,Private room,95,3,62,2019-06-13,2.39,3,86 +17892835,"Comfy room seconds from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.67053,-73.94923,Private room,40,5,0,,,2,0 +17892920,"Spacious & Bright, Full Apt in Astoria/LIC",14991730,Trevor,Queens,Long Island City,40.7542,-73.92849,Entire home/apt,145,5,23,2019-06-24,2.15,1,173 +17893008,Exclusive 2 bedrooms in lovely apartment in Nolita,39832770,Laura,Manhattan,Chinatown,40.71816,-73.99538,Private room,90,6,0,,,1,0 +17893069,Spacious 1-Bedroom Apartment in Greenwich Village,10838291,Brian,Manhattan,Greenwich Village,40.73307,-73.99277,Entire home/apt,250,7,1,2017-05-13,0.04,1,0 +17893797,Private Room in Spacious Central Harlem Apartment,26821811,Lynda,Manhattan,Harlem,40.8155,-73.93986,Private room,38,3,1,2018-08-02,0.09,1,0 +17897913,"Warm home in Woodside, Queens.",92561578,Giani,Queens,Maspeth,40.73443,-73.89635,Private room,65,1,7,2019-06-30,0.99,1,309 +17899730,Cozy Bronx Apt,94382194,Sean,Bronx,Tremont,40.84546,-73.89013,Entire home/apt,150,1,43,2019-06-09,1.57,1,179 +17899990,Spacious quiet garden 1 Br + Sunny Back Yard,92963740,Remy,Brooklyn,Sunset Park,40.66194,-73.99138,Entire home/apt,139,3,32,2019-07-01,1.25,2,20 +17900193,"Spacious, newly renovated LES 1-bedroom apt!",122650568,Anabella,Manhattan,Lower East Side,40.72147,-73.98774,Entire home/apt,127,2,3,2017-04-21,0.11,1,0 +17900243,Sunny and spacious apartment in Greenpoint,1481058,Aris,Brooklyn,Greenpoint,40.73223,-73.95786,Entire home/apt,290,10,2,2018-01-01,0.07,2,0 +17900681,Sunny & Spacious Room Facing Central Park,8748472,Christina,Manhattan,Upper West Side,40.79806,-73.96085,Private room,100,2,5,2017-05-01,0.18,1,0 +17902970,Great location in the heart of Manhattan,122679380,Sam,Manhattan,Hell's Kitchen,40.76313,-73.98978,Private room,100,1,216,2019-07-01,8.07,1,43 +17904788,Sunny apartment close to manhattan,12194903,Martha,Brooklyn,Williamsburg,40.70896,-73.95119,Entire home/apt,150,7,0,,,1,0 +17905460,Cozy Centrally Located Private Room in Bushwhick,8288491,Sofia,Brooklyn,Bushwick,40.69107,-73.91134,Private room,65,2,4,2018-05-21,0.15,2,0 +17905479,Gorgeous One Bedroom in the Heart of Chelsea,4253817,Cari,Manhattan,Chelsea,40.74123,-73.99522,Entire home/apt,200,4,45,2019-06-13,1.66,1,49 +17905970,"Entire Lower Level,Close to All & 15 mins to NYC",122714664,Karl,Queens,Middle Village,40.71031,-73.87613,Entire home/apt,100,4,28,2019-06-04,1.06,1,89 +17906420,Relaxing Brownstone One Bedroom,6899124,Paul,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95228,Entire home/apt,148,1,37,2019-06-23,1.44,1,0 +17906601,Group Friendly * Prospect Park * Close to Trains,122722874,Peter,Brooklyn,Prospect Heights,40.67395,-73.96333,Entire home/apt,160,4,115,2019-06-17,4.18,1,80 +17906990,"Sunny, Beautiful, Upper East Side TRUE One Bedroom",23377863,Kristen,Manhattan,Upper East Side,40.78056,-73.95182,Entire home/apt,147,4,9,2019-07-05,0.47,1,7 +17907935,New York's Cozy House,77809736,Seohee,Manhattan,Morningside Heights,40.80972,-73.95774,Entire home/apt,95,2,0,,,2,0 +17908179,Boho 1 bed apt in BK brownstone with back yard,5502239,Maxyne,Brooklyn,Clinton Hill,40.69345,-73.96632,Entire home/apt,130,5,3,2018-05-08,0.12,1,0 +17908331,"Big, Bright, Tribeca Studio w/ Doorman & Elevator",4601948,Lily,Manhattan,Tribeca,40.7181,-74.00984,Entire home/apt,157,2,13,2018-09-23,0.49,1,18 +17915565,1BR in the heart of UWS,80508435,Irving,Manhattan,Upper West Side,40.79416,-73.97044,Private room,95,1,26,2018-07-22,1.04,2,0 +17919742,Heart of Bushwick Apartment For Coffee Lovers!,8894559,Duncan,Brooklyn,Bushwick,40.70127,-73.91764,Entire home/apt,120,2,8,2018-11-25,0.31,1,1 +17922181,Cute UWS studio off CPW,5162192,Amy,Manhattan,Upper West Side,40.79857,-73.96162,Entire home/apt,110,30,9,2019-05-19,0.38,12,161 +17922242,Spacious and quiet East Village Private Studio,14135981,Elsa,Manhattan,East Village,40.72439,-73.97607,Entire home/apt,130,5,2,2019-06-11,1.58,1,363 +17923165,☆THE village experience!!,47056437,Ann,Manhattan,West Village,40.72999,-74.0034,Private room,99,1,0,,,1,0 +17923261,Quality cozy studio in a quiet neighborhood,122884945,Hind,Queens,Middle Village,40.71774,-73.89181,Entire home/apt,90,6,26,2019-07-04,2.70,1,237 +17925337,New bedroom in a 2 bedroom apartment. Super nice.,122498535,Gf,Brooklyn,East Flatbush,40.65694,-73.92728,Private room,138,30,13,2018-04-07,0.48,3,37 +17926910,East Harlem Studio Apartment,122924398,Lynn,Manhattan,East Harlem,40.79424,-73.93495,Entire home/apt,125,1,123,2019-06-22,4.54,1,84 +17929219,HEART of West Village! Big + Beautiful TRUE 1 BDRM,28588488,Cannon,Manhattan,West Village,40.73612,-73.99978,Entire home/apt,395,1,39,2019-06-29,1.43,1,177 +17934924,Modern spacious apt in Park Slope,2587680,Susan,Brooklyn,Park Slope,40.67156,-73.98366,Entire home/apt,100,4,7,2019-06-16,0.46,1,37 +17937309,Sunny Apartment in Williamsburg,24258807,Moran& Ori,Brooklyn,Greenpoint,40.72052,-73.94098,Entire home/apt,150,8,12,2019-01-04,0.44,1,0 +17937356,Good deal in bohemian East Village,855079,Nicholas,Manhattan,East Village,40.72734,-73.98319,Private room,150,1,16,2019-04-01,1.75,3,0 +17938337,10 Minutes away from JFK Airport,96841679,Kathleen,Brooklyn,Canarsie,40.63716,-73.88654,Entire home/apt,85,2,96,2019-06-22,3.70,1,340 +17938814,"Beautiful spacious one bedroom, upper east side",55199493,Julia,Manhattan,Upper East Side,40.7729,-73.95738,Entire home/apt,115,2,100,2019-06-16,3.67,1,91 +17938886,"Large, private room in Bushwick close to subways",92277042,Tom,Brooklyn,Bushwick,40.69449,-73.91874,Private room,50,2,6,2018-06-12,0.22,1,56 +17940029,"$0 FEES/Parking/Bkft - ""Little Piece of Heaven""",61875246,Carolyn,Queens,Whitestone,40.7824,-73.82144,Private room,45,1,84,2019-07-06,5.35,2,157 +17940041,Spacious and Bright Two Bedroom,44951851,Yaakov,Brooklyn,Crown Heights,40.66491,-73.9544,Entire home/apt,160,3,11,2019-04-24,0.42,2,0 +17940198,"Cozy, queen sized bedroom in Bed-Stuy",24383863,Sophia,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94406,Private room,40,2,24,2019-06-25,0.98,1,1 +17941316,Nice private room in New York,121841485,Jessica,Queens,Jackson Heights,40.75236,-73.89172,Private room,70,3,23,2018-11-05,0.85,1,177 +17941851,Tropical Getaway in Brooklyn at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.6974,-73.92487,Private room,80,3,172,2019-06-30,6.37,3,169 +17941948,Private Room Available in 3BR Apt -Stuyvesant Town,122922752,Tom,Manhattan,Stuyvesant Town,40.73117,-73.97616,Private room,55,31,0,,,1,0 +17943407,"Classic East Village studio, best NYC neighborhood",3463177,Emch,Manhattan,East Village,40.73114,-73.98439,Entire home/apt,110,7,6,2019-06-30,0.23,1,52 +17943774,Sundrenched Cozy Studio With a Huge Private Patio,84979306,Lhea,Queens,Long Island City,40.74443,-73.94298,Entire home/apt,225,1,6,2018-09-21,0.22,1,358 +17943817,"Private home in the heart of Ridgewood, Queens.",123102489,Mariann,Queens,Glendale,40.69775,-73.89474,Private room,69,2,2,2017-05-08,0.07,1,0 +17944140,Cheap Cosy room w/desk quiet area 10mn from JFK,107455767,Guelma,Queens,Rosedale,40.65377,-73.73087,Private room,35,15,38,2018-06-24,1.40,5,311 +17944219,"Cozy bedroom, one block from Subway",10744966,Moza,Manhattan,Upper East Side,40.77243,-73.95744,Private room,300,2,10,2017-09-02,0.40,1,0 +17944802,Luxury High Rise with Huge Private Terrace,1883931,Taher,Manhattan,Murray Hill,40.74391,-73.97151,Entire home/apt,350,3,15,2019-06-19,0.55,1,0 +17946985,Rock star house!,110872398,Dee,Brooklyn,Bedford-Stuyvesant,40.69049,-73.95877,Private room,45,2,16,2018-03-31,0.58,1,0 +17951580,Townhouse on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.69054,-73.9328,Entire home/apt,150,2,69,2019-07-05,2.86,4,278 +17952277,"Newly renovated, fully furnished room in Brooklyn",62685070,Katie,Brooklyn,Bushwick,40.69974,-73.91935,Private room,10,5,0,,,1,0 +17952472,和缘特色浪漫房,105074140,Emmy,Queens,Flushing,40.75656,-73.80385,Private room,108,1,3,2019-02-20,0.44,4,0 +17955761,HOME AWAY FROM HOME 4 Guest private,4204783,Kevin,Staten Island,West Brighton,40.63168,-74.12316,Private room,89,2,12,2019-06-26,0.43,3,279 +17956381,Quaint little relaxing room in Astoria,4112547,Felecia,Queens,Astoria,40.7711,-73.92579,Private room,70,7,11,2018-12-01,0.42,1,65 +17956441,"West 86th St, Charming UWS One Bd Serviced Apt-B",22541573,Ken,Manhattan,Upper West Side,40.78593,-73.97485,Entire home/apt,210,30,0,,,87,328 +17957197,UWS studio,2372486,David,Manhattan,Upper West Side,40.7902,-73.97568,Entire home/apt,150,7,0,,,1,0 +17957521,Cozy room in East Williamsburg,123233613,Joana,Brooklyn,Williamsburg,40.70824,-73.94379,Private room,55,7,34,2019-06-03,1.26,1,259 +17957663,"Bedroom in huge apartment, Empire State View",1036161,Blake,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95005,Private room,200,1,13,2019-06-23,0.50,2,23 +17958414,Beautiful & Comfortable Apartment in Brooklyn!,123048179,Joseph,Brooklyn,Bensonhurst,40.61901,-74.00045,Entire home/apt,120,3,45,2019-06-16,1.65,1,295 +17959888,South Bronx-Piano District artist Loft/,123271654,Beatrice,Bronx,Port Morris,40.81034,-73.93166,Shared room,165,2,20,2018-10-14,0.85,1,15 +17960375,"Lower East Side, Bohemian Home, hipster location",36232508,Brodii,Manhattan,Lower East Side,40.72036,-73.98458,Private room,155,3,27,2018-10-29,1.11,1,0 +17961885,Downtown: Two Bridges -Private room&bathroom!,123307264,Ei,Manhattan,Chinatown,40.71456,-73.99077,Private room,95,14,3,2018-10-30,0.11,1,28 +17962656,Awesome Cozy Studio West Village,23981711,Saba,Manhattan,West Village,40.73589,-74.00304,Entire home/apt,139,3,29,2019-05-11,1.05,1,0 +17963856,Upstate Manhattan,24010376,Elaina,Manhattan,Inwood,40.86517,-73.92318,Private room,65,1,1,2017-12-28,0.05,1,0 +17968140,Large Bedroom in 2 Bed Apartment Brighton Beach,119523037,Anna,Brooklyn,Brighton Beach,40.58092,-73.96139,Private room,57,1,1,2019-01-16,0.17,4,4 +17971100,#4 Triple Private room 20 minutes from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81234,-73.91688,Private room,42,5,54,2019-05-19,2.05,4,314 +17972013,#1 Private comfy Room 20 minutes from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81387,-73.91553,Private room,42,5,17,2018-01-18,0.65,4,23 +17972466,Perfect for 2 - Heart of the Upper West Side!,33200173,Paige,Manhattan,Upper West Side,40.78549,-73.97673,Private room,90,3,4,2017-09-26,0.16,2,0 +17973686,"Your Very Own Private, Clean Apt. w/ washer &dryer",11478291,Ethan,Queens,Rego Park,40.72962,-73.8591,Entire home/apt,69,3,90,2019-07-03,3.25,1,111 +17974244,"3 BR CLASSIC ON RIVER. Doorman. UWS, dogs ok",231704,Judith,Manhattan,Upper West Side,40.78937,-73.9789,Entire home/apt,376,30,1,2018-05-12,0.07,3,357 +17975664,"Large, spacious, and comfortable house",123458466,Shiva,Bronx,Edenwald,40.88534,-73.83434,Private room,75,1,15,2019-05-28,0.55,1,348 +17975818,Beautiful large private room in the heart of Soho,11259589,Eloise,Manhattan,Chinatown,40.71889,-73.99604,Private room,99,3,3,2017-06-28,0.11,1,0 +17977439,Heart of Queens 1 ❤️/ Jackson Heights/Elmhurst,123483050,Andrea,Queens,Elmhurst,40.74756,-73.88193,Private room,85,1,67,2019-06-19,2.47,3,173 +17978997,Luxury Room in MANHATTAN with TV,122026078,Shah Memo,Manhattan,Harlem,40.82021,-73.95441,Private room,69,2,7,2017-08-07,0.26,3,71 +17979046,Room Rental in Washington Heights,63772058,Nikita,Manhattan,Washington Heights,40.84345,-73.9422,Private room,100,2,0,,,1,0 +17979132,Great room near Columbia university 71w 107th 哥大附近,70619358,Ni,Manhattan,Upper West Side,40.80104,-73.96041,Private room,45,1,0,,,1,0 +17979764,Jen Apt,84497333,Jennifer,Manhattan,SoHo,40.72237,-73.99817,Private room,10,5,2,2017-04-15,0.07,1,0 +17980140,Penthouse in the Clouds,12390595,Marian,Brooklyn,Bushwick,40.69365,-73.9109,Private room,60,7,1,2017-06-16,0.04,1,0 +17980714,Cozy East Village Room in huge apartment,23354644,Nancy,Manhattan,East Village,40.73242,-73.9868,Private room,48,2,33,2019-06-26,1.21,3,42 +17981267,⭐️Walk + Transit Score 97⭐️8min to Yankee Std⭐️,123518076,Seana,Bronx,Concourse,40.82097,-73.92739,Entire home/apt,145,2,76,2019-07-01,3.04,1,139 +17981447,Nicest Room in Manhattan - Chelsea Beauty,95286194,Xavier,Manhattan,Chelsea,40.7503,-74.00473,Private room,57,1,53,2019-06-23,1.92,1,33 +17986678,NYC Penthouse Open Loft Bedroom & Patio w/ Skyline,123567556,Sean,Brooklyn,Crown Heights,40.67686,-73.93032,Private room,85,1,106,2019-06-22,5.58,2,102 +17988221,Private Room in Cozy East Village Apt,4296251,Marina,Manhattan,East Village,40.72286,-73.98025,Private room,100,2,0,,,2,0 +17988416,《1》法拉盛市中心明亮干净的私人房间,123580100,Evelyn,Queens,Flushing,40.76503,-73.83039,Private room,45,1,82,2019-06-17,3.01,2,52 +17989537,Cozy Private Room in East Village,4296251,Marina,Manhattan,East Village,40.72308,-73.97988,Private room,100,2,0,,,2,0 +17989780,Williamsburg Manhattan Skyline Apartment,12388182,Ahmad,Brooklyn,Williamsburg,40.71891,-73.9657,Entire home/apt,250,2,2,2017-04-24,0.07,1,0 +17990894,Comfy Room in Queens Close to Train Station!,98697139,Oscar,Queens,Jackson Heights,40.75214,-73.8584,Private room,40,4,22,2019-05-11,0.86,2,95 +17991699,"CLASSIC UWS 3BR FAM RIVER, doorman",231704,Judith,Manhattan,Upper West Side,40.78913,-73.98043,Entire home/apt,317,31,0,,,3,82 +17992512,Charming Suite in Historic Home,74282739,David,Staten Island,Stapleton,40.62919,-74.08107,Entire home/apt,70,1,177,2019-06-24,7.12,1,230 +17993317,Beginning and ending your New York Vacation!,116408324,Ezel,Queens,Bayside,40.76169,-73.76813,Private room,70,2,17,2019-06-09,0.63,1,351 +17993419,Clean and Cozy room in Central Manhattan,30656279,Jill,Manhattan,Hell's Kitchen,40.76634,-73.98721,Private room,61,30,3,2018-05-27,0.11,4,160 +17996373,Spacious Brooklyn Duplex w/ Yard. Minutes from NYC,123407715,Guillermo,Brooklyn,Sunset Park,40.66338,-73.99879,Entire home/apt,300,3,86,2019-06-23,3.41,1,269 +17997486,Charming Clinton Hill One-Bedroom Apartment,123690850,Ani,Brooklyn,Clinton Hill,40.6873,-73.966,Entire home/apt,92,10,4,2019-06-13,0.17,1,0 +18003918,Upper West Side Oasis,10549792,Connor,Manhattan,Upper West Side,40.7807,-73.97869,Entire home/apt,200,4,2,2018-01-02,0.08,1,0 +18004335,Peaceful apt by the central park,5490071,Alex,Manhattan,East Harlem,40.78822,-73.94871,Entire home/apt,150,3,102,2019-07-04,3.78,3,222 +18004987,Warm cozy green house,109854433,Careen,Brooklyn,Bushwick,40.68815,-73.91032,Entire home/apt,120,2,76,2019-06-24,2.78,2,270 +18005542,Single Room in Family Apt,6122006,Allison,Manhattan,Morningside Heights,40.81131,-73.9582,Private room,45,1,76,2019-06-09,2.83,2,0 +18005789,Giant Studio Loft Apt in NYC,766182,Mike,Manhattan,West Village,40.73953,-74.00841,Entire home/apt,170,30,1,2019-04-17,0.36,1,365 +18005835,Cozy 1 bedroom in Heart of East Village,32806463,Eugene,Manhattan,East Village,40.72886,-73.9883,Private room,150,1,0,,,1,0 +18006003,Room in Bronx Little Italy,91261577,Matthew,Bronx,Belmont,40.85311,-73.88763,Private room,29,4,4,2017-08-27,0.15,1,0 +18006977,Sunny 1 Bedroom Apartment the Heart of SoHo,886646,Tarik,Manhattan,Nolita,40.72261,-73.99348,Entire home/apt,250,2,5,2018-12-30,0.20,1,0 +18007393,Large 2 bedrooms in Little Italy/Chinatown,106232698,Nicolas,Manhattan,Little Italy,40.71794,-73.99955,Entire home/apt,195,4,30,2019-05-22,1.10,1,0 +18007671,Cute 1 bedroom basement apartment,73228035,Maimi,Brooklyn,East Flatbush,40.662,-73.93775,Private room,15,1,2,2017-04-17,0.07,2,0 +18008937,Adorable Apt - Heart of West Village!,82933489,Karly,Manhattan,West Village,40.73272,-74.00356,Entire home/apt,230,2,9,2018-10-07,0.33,1,0 +18010406,Specious and cozy NYC apartment,123818434,Natalia,Manhattan,Harlem,40.81053,-73.94332,Entire home/apt,130,2,23,2019-06-02,0.85,1,14 +18010510,"温馨舒适双人房,双床,明亮大窗,电梯公寓(两个房间用一个卫生间)",123646786,Zheng,Queens,Flushing,40.75607,-73.83202,Private room,78,2,41,2019-07-01,1.53,2,82 +18012028,Beautiful Blue Paradise! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68823,-73.90825,Private room,53,1,49,2019-06-17,1.86,3,105 +18013489,Cozy room with stunning view,23390186,June,Manhattan,Financial District,40.70743,-74.005,Private room,100,1,11,2019-06-08,0.41,1,0 +18015606,Hudson River View Near Lincoln Center,96669597,Sara,Manhattan,Upper West Side,40.77858,-73.98707,Entire home/apt,150,28,8,2019-02-22,0.31,1,238 +18016642,Spacious apartment in the heart of Brooklyn,103995602,Flo,Brooklyn,Brownsville,40.65935,-73.90279,Entire home/apt,89,2,102,2019-06-20,3.75,1,70 +18018424,Spacious Financial District Loft - Whole Apartment,123894644,Spencer,Manhattan,Financial District,40.70648,-74.01234,Entire home/apt,105,12,4,2017-11-19,0.16,1,0 +18018752,Brand New Quaint Studio,63749946,Rachel,Brooklyn,Crown Heights,40.67523,-73.92326,Entire home/apt,80,7,77,2019-06-05,2.92,3,74 +18020906,"Clean, private room with private bathroom.",123920566,Hiroshi & Yukari,Queens,Flushing,40.75299,-73.8307,Private room,57,1,50,2019-06-30,1.85,1,38 +18022545,MONTHLY PRICE AND GREAT LOCATION - ASTORIA,40549648,Luiza,Queens,Astoria,40.75729,-73.91591,Private room,75,22,37,2019-06-01,1.35,2,69 +18022636,Beautiful 1 Bedroom apartment in Prime GREENPOINT,208565,Maria,Brooklyn,Greenpoint,40.73354,-73.95728,Entire home/apt,151,1,94,2019-06-09,3.49,2,36 +18023284,Spacious 2 BR Flat,36457711,Hannah,Brooklyn,Clinton Hill,40.69103,-73.96106,Entire home/apt,197,4,7,2017-12-29,0.26,2,0 +18023825,Cozy 1 bedroom apartment in Queens,24594555,Eva,Queens,Maspeth,40.72736,-73.89659,Entire home/apt,100,2,87,2019-07-06,3.19,1,245 +18023847,Lovely Quiet Room w private kitchen in Brownstone,123953691,Petra,Brooklyn,Crown Heights,40.67694,-73.95462,Private room,88,2,55,2019-06-25,2.07,1,282 +18024380,Cozy Private Bedroom in a Bed-Stuy Loft,22284124,Ella,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95891,Private room,60,4,2,2017-08-26,0.08,1,0 +18024561,Amazing Columbus Circle 3 Bedroom,47536613,Emily,Manhattan,Upper West Side,40.76876,-73.98359,Entire home/apt,375,3,76,2019-06-23,2.89,1,301 +18024760,Private Room in a beautiful apartment!,96718265,Javier & Alejandra,Brooklyn,Bedford-Stuyvesant,40.69288,-73.93285,Private room,45,1,0,,,1,7 +18024772,Very quiet apt. on tree-lined West Chelsea street,4857042,Matthew,Manhattan,Chelsea,40.74423,-74.00111,Entire home/apt,95,1,105,2019-07-01,3.87,1,98 +18024956,Lovely Bedroom Suite with Private Entrance,15185649,Beebe,Brooklyn,Bedford-Stuyvesant,40.68295,-73.92536,Entire home/apt,82,2,134,2019-06-21,4.93,2,238 +18025200,Private Room in quite Elmhurst,123968750,Kathy,Queens,Elmhurst,40.73481,-73.88051,Private room,50,3,0,,,1,0 +18025228,"Huge room 25 min to manhattan. L,M,J,Z train.",101736132,Alex,Brooklyn,Bushwick,40.69045,-73.91507,Private room,40,2,12,2017-10-07,0.44,2,281 +18025342,"1BR near Mt Sinai, Columbia, Cent Pk. Must See!",6752799,Zach,Manhattan,East Harlem,40.7972,-73.94749,Private room,45,28,1,2017-07-02,0.04,2,147 +18033251,Simple Brooklyn Apartment,4435816,Steven-Jon,Brooklyn,Flatbush,40.63684,-73.95693,Private room,60,2,17,2018-10-21,0.72,1,9 +18034890,"Quiet, tranquil room in the middle of everything!",3660702,Greg,Manhattan,Chelsea,40.74701,-73.9914,Private room,105,1,132,2019-06-22,4.81,4,103 +18037392,Beautiful sunny bedroom in historic Park Slope,124082275,Raquel,Brooklyn,Park Slope,40.67158,-73.97472,Private room,159,1,73,2019-06-16,2.69,1,166 +18039329,Sunny LES 1 bedroom w Roof Deck,124106675,Mary,Manhattan,Lower East Side,40.72054,-73.98471,Entire home/apt,208,3,4,2017-05-07,0.15,1,0 +18040417,Downtown HighRise Luxury Building!,42287744,Camilo,Manhattan,Financial District,40.70732,-74.01451,Private room,105,2,18,2018-08-16,0.65,1,95 +18040970,HOTEL ROOM LIKE WITH AFFORDABLE RATE!!! “C”,59156312,Viviana,Queens,Woodhaven,40.68655,-73.86491,Private room,69,3,48,2019-06-08,1.80,9,332 +18041519,"Beautiful + Large Astoria Space, Amazing Location",96560825,Brittany,Queens,Astoria,40.76266,-73.91992,Entire home/apt,250,2,0,,,1,0 +18041862,Bushwick's Private Modern Space,124142417,Marlene,Brooklyn,Bushwick,40.68824,-73.91567,Entire home/apt,100,2,111,2019-06-18,4.12,2,10 +18042238,Airy one bedroom in Crown Heights,100345999,Leigh,Brooklyn,Crown Heights,40.67544,-73.95655,Entire home/apt,80,5,1,2017-04-28,0.04,1,0 +18042742,Sun Filled room in New Building,35292326,Brendan,Brooklyn,Bushwick,40.69892,-73.9302,Private room,72,1,4,2019-05-28,1.82,1,180 +18043457,Spacious Private Room in Nolita,15651644,Alan,Manhattan,Chinatown,40.71866,-73.99633,Private room,120,3,1,2017-05-21,0.04,1,0 +18048473,#3 Private Quadruple Room 20mnts from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81217,-73.91777,Private room,41,5,21,2019-06-20,0.78,4,334 +18049856,Luxury Studio Williamsburg,51926018,Minchul,Brooklyn,Williamsburg,40.71815,-73.95519,Entire home/apt,250,14,0,,,1,83 +18050070,Cozy and Quiet Crown Heights - Washer/Dryer,124218492,Benjamin,Brooklyn,Crown Heights,40.66914,-73.95333,Private room,50,6,20,2019-06-07,0.74,1,78 +18050153,Chelsea Haven--Summer Sublet,10621137,Anne Marie,Manhattan,Chelsea,40.74686,-74.0043,Entire home/apt,134,3,1,2017-08-12,0.04,1,0 +18051607,2 Bedroom & garden-South Park Slope,52577563,Rosa,Brooklyn,Sunset Park,40.66443,-73.99348,Entire home/apt,150,5,2,2017-09-16,0.08,3,179 +18051877,Victorian Film location,2675644,Alissa,Staten Island,Randall Manor,40.63952,-74.0973,Entire home/apt,5000,1,0,,,1,344 +18054268,Gorgeous 4 bedroom Duplex 15 min from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69424,-73.9385,Entire home/apt,300,2,95,2019-06-17,3.51,2,229 +18055685,Oasis in Harlem,3167806,Heather,Manhattan,Harlem,40.81321,-73.94556,Entire home/apt,150,4,16,2019-06-25,0.65,1,12 +18057747,Comfortable Room near Columbia University,28642031,Laura,Manhattan,Harlem,40.80674,-73.95616,Private room,60,5,1,2017-08-12,0.04,1,0 +18059112,Private room in beatiful sunny apt in Crown Height,138243,Alexander,Brooklyn,Crown Heights,40.66994,-73.9315,Private room,45,2,12,2019-06-30,0.46,1,32 +18059231,Cozy bedroom near Lincoln Center / UWS,5235811,David,Manhattan,Upper West Side,40.77317,-73.98895,Private room,67,1,0,,,1,0 +18059239,Airy studio in south Park Slope,27159049,Ivan,Brooklyn,Gowanus,40.66926,-73.991,Entire home/apt,142,1,8,2017-06-04,0.29,1,0 +18059656,Charming Cozy Room in Harlem,9030453,Irie,Manhattan,Harlem,40.81064,-73.94405,Private room,67,2,28,2019-07-03,1.04,2,132 +18061481,Sunny room with private terrace in Sunnyside,20691482,M&A New York,Queens,Sunnyside,40.74238,-73.91783,Private room,69,3,21,2019-05-20,0.78,1,177 +18062797,Huge Room with a Private Bathroom,85316652,Umut Can,Queens,Sunnyside,40.74385,-73.91403,Private room,95,2,36,2018-09-11,1.37,1,0 +18063815,Unique Multi-level 1 bedroom Apt,50366453,Terence,Manhattan,Upper East Side,40.76246,-73.95985,Entire home/apt,195,1,3,2017-06-11,0.11,1,0 +18066269,"@Ferry,2Bedroom/3beds.Private,Renovated/Stylish...",117492425,Dine,Staten Island,St. George,40.64425,-74.08056,Entire home/apt,72,4,97,2019-06-26,3.71,6,152 +18066733,5br Duplex. @ Ferry! Water&City Views!,117492425,Dine,Staten Island,St. George,40.64605,-74.07897,Entire home/apt,289,4,2,2018-07-25,0.16,6,230 +18068692,"Beautiful, Sunny, Artsy apartment in Brooklyn",4191725,Efrain,Brooklyn,Bedford-Stuyvesant,40.69502,-73.9478,Entire home/apt,80,21,1,2017-12-05,0.05,1,66 +18068913,"Sunny & cozy Studio at the park, 25m to Manhattan",23944472,Stelios,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.96194,Entire home/apt,69,3,16,2019-02-18,0.59,1,6 +18069745,Private bathroom bedroom near JFK 30min to NYC,91184602,Sonia,Queens,Richmond Hill,40.68821,-73.83411,Private room,95,3,26,2019-01-01,1.38,1,160 +18070109,1 Min from Bedford Ave L in RR Apt,7860852,Matthew,Brooklyn,Williamsburg,40.71882,-73.95562,Private room,110,3,0,,,2,0 +18070342,Beautiful Murray Hill STUDIO - perfect location!,17707106,Deep,Manhattan,Kips Bay,40.74289,-73.98134,Entire home/apt,175,2,22,2017-09-22,0.81,1,0 +18071246,A3Small Cozy Room in Long Island City,79105834,Leo,Queens,Long Island City,40.75541,-73.9335,Private room,35,1,90,2019-06-22,3.31,9,273 +18071374,Brooklyn (NYC) Modern Comfort.,48712266,Eka,Brooklyn,Greenpoint,40.72528,-73.94428,Entire home/apt,175,5,72,2019-06-20,2.73,2,198 +18071399,West Chelsea Studios - Penthouse 12,113534805,Jackie,Manhattan,Chelsea,40.74932,-74.00333,Private room,2800,1,0,,,1,89 +18071406,Room in Hells Kitchen for short term stay!,69572951,Ilija,Manhattan,Hell's Kitchen,40.76316,-73.9904,Private room,100,4,0,,,1,0 +18073738,Huge Room in Bushwick with private bathroom,512101,Martha Cristina,Brooklyn,Bushwick,40.69801,-73.93357,Private room,88,3,11,2019-06-02,0.81,1,0 +18074899,Stunning 2 bedroom Apt - Breathtaking views!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76191,-73.99766,Entire home/apt,499,30,0,,,121,185 +18075511,Inspiring & Motivational ⭐️,43352661,Charles,Manhattan,Washington Heights,40.84497,-73.93934,Private room,80,1,129,2019-06-21,4.70,3,365 +18076273,Lovely & bright Brooklyn room close to train,1753130,Britt,Brooklyn,Greenpoint,40.7331,-73.95837,Private room,49,5,52,2019-07-07,1.94,1,66 +18076385,"2 Bedroom Apartament, UES, doormen in Manhattan",65974774,Geo,Manhattan,Upper East Side,40.77581,-73.956,Entire home/apt,510,7,0,,,3,207 +18076623,Cosy Colorful Great Bedstuy location & apt,24467449,Laura,Brooklyn,Bedford-Stuyvesant,40.68761,-73.94953,Private room,45,1,20,2019-04-15,0.74,2,10 +18076816,Beautiful Island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76213,-73.94971,Private room,100,2,97,2019-06-21,3.57,2,142 +18076911,Access to NYC,44924379,Roland,Queens,Jamaica,40.6987,-73.78455,Private room,50,1,38,2019-05-30,1.41,3,359 +18077001,Fully equipped entire West Village apartment &wifi,35163646,Lyndsay,Manhattan,Greenwich Village,40.72964,-73.99946,Entire home/apt,199,3,1,2018-01-02,0.05,1,0 +18077042,CLEAN! Executive Studio Suite. Entire apt w/pvt BR,121093001,Geoffrey,Queens,Ozone Park,40.67574,-73.85601,Entire home/apt,81,3,96,2019-06-22,3.59,1,233 +18077050,"Comfortable, spacious Upper West Side Studio",52711374,Cindy,Manhattan,Upper West Side,40.7822,-73.98207,Entire home/apt,90,2,12,2017-11-26,0.44,1,0 +18077560,Beautiful Large Private Room-Great location,4047395,Blanca,Brooklyn,Clinton Hill,40.68535,-73.96492,Private room,80,2,37,2019-06-03,1.40,2,159 +18077717,Cozy 1-br UWS in front of Central Park,62680545,Juan Felipe,Manhattan,Upper West Side,40.79795,-73.96199,Entire home/apt,175,5,2,2017-08-04,0.08,1,4 +18077742,Cozy Washington Heights Studio,4004425,Jamie,Manhattan,Washington Heights,40.84354,-73.93874,Entire home/apt,50,6,0,,,1,0 +18077746,Comfy and Cozy Room in Brooklyn!,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92399,Private room,60,30,9,2019-05-23,0.36,4,189 +18078720,Cozy one bedroom Street view,124486054,Carlton,Bronx,Edenwald,40.88364,-73.83561,Private room,70,3,0,,,1,365 +18079072,"Huge, Sunny Loft in Williamsburg, Near Waterfront",124491152,Philip,Brooklyn,Williamsburg,40.72171,-73.95872,Entire home/apt,175,2,134,2019-06-22,5.12,1,208 +18080436,★cozy apartment ★,55981584,Saori,Brooklyn,Bay Ridge,40.63592,-74.0219,Private room,30,30,6,2019-06-15,0.22,2,0 +18086316,Manhattan Club,124550001,Frank,Manhattan,Midtown,40.76576,-73.98016,Private room,350,1,1,2017-12-19,0.05,1,0 +18086664,A place to feel like home; cozy room,124554019,Eric,Brooklyn,Crown Heights,40.67358,-73.93502,Private room,57,1,32,2019-06-27,1.38,2,95 +18087564,Quiet spacious sunny studio in Greenpoint Brooklyn,5735174,Yoav,Brooklyn,Greenpoint,40.73542,-73.9562,Entire home/apt,120,20,17,2019-06-30,0.65,1,59 +18089676,Cozy Escape in Brooklyn,124580765,Ruth,Brooklyn,Prospect-Lefferts Gardens,40.65932,-73.94179,Entire home/apt,129,2,86,2019-06-30,3.17,1,247 +18090200,Studio-Size Bedroom with Separate Entrance,10472095,Jaime,Brooklyn,Crown Heights,40.66935,-73.94708,Private room,60,3,0,,,1,16 +18090441,Modern High-End Studio w/amenities,60786164,Kassandra,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96053,Entire home/apt,76,1,2,2017-04-24,0.07,1,0 +18090927,An Amazing 1-Bedroom Apt. with Spectacular Views,686339,Ben,Manhattan,Kips Bay,40.73819,-73.97389,Entire home/apt,150,62,0,,,1,88 +18091187,The Heights,124593127,Miguel,Manhattan,Washington Heights,40.85564,-73.93066,Private room,40,1,93,2019-06-21,3.50,2,297 +18091600,Amazingly Charming 2 BR in Historic Harlem,709334,Julie,Manhattan,Harlem,40.80353,-73.94707,Entire home/apt,250,2,14,2019-04-17,0.55,2,296 +18091991,Cozy Room,124593127,Miguel,Manhattan,Washington Heights,40.85516,-73.92863,Private room,55,1,96,2019-06-11,3.61,2,128 +18092438,LOCATION! Coffee and Central Park!,17428203,Christine,Manhattan,Upper East Side,40.77241,-73.948,Entire home/apt,124,31,0,,,2,0 +18094196,Upper East Side Full 1-Bedroom Apartment,16307239,Julia,Manhattan,Upper East Side,40.7709,-73.95508,Entire home/apt,130,7,5,2019-07-06,0.21,1,14 +18094212,Beautiful 3000-Square-Ft Brownstone in Cobble Hill,121274,Joanna,Brooklyn,Cobble Hill,40.68673,-73.99653,Entire home/apt,700,4,4,2019-01-23,0.21,1,15 +18094311,Manhattan Bedroom | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74563,-73.9759,Entire home/apt,219,30,1,2018-05-31,0.07,23,362 +18094418,4000 SqFt Luxury Penthouse - Downtown NYC,120250860,Diana,Manhattan,SoHo,40.72207,-74.00232,Entire home/apt,2250,2,20,2019-06-15,0.82,2,341 +18095883,Charming 2 Bedroom home close to Airport and City,70774951,Farhan,Queens,East Elmhurst,40.76745,-73.87915,Entire home/apt,125,1,138,2019-06-23,6.92,3,111 +18102867,1 bedroom apt in the heart of williamsburg,3632170,Thulinh,Brooklyn,Williamsburg,40.7124,-73.96263,Entire home/apt,200,5,0,,,1,0 +18103710,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.7631,-73.96281,Entire home/apt,179,30,0,,,87,365 +18104150,Large Newly Renovated Guest Suite,124702572,Ted & Tony,Brooklyn,Bedford-Stuyvesant,40.6817,-73.92068,Entire home/apt,200,2,12,2019-06-14,0.46,1,9 +18104553,Sunny Williamsburg Apartment - Prime Location,5479861,Brandon,Brooklyn,Williamsburg,40.71747,-73.95459,Entire home/apt,160,1,18,2019-06-12,0.70,1,2 +18105293,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70481,-74.00805,Entire home/apt,270,30,0,,,87,365 +18108134,Affordable Spacious Refurbished Room in Bushwick!,7370191,Niji,Brooklyn,Bushwick,40.69037,-73.9184,Private room,51,2,4,2018-06-04,0.15,1,0 +18108590,Private Garden Room in Commune,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67992,-73.95695,Private room,65,2,3,2017-04-27,0.11,3,0 +18108648,Large 2bd 15 min to Midtown Manhattan,124740003,Dani,Queens,Ditmars Steinway,40.77764,-73.91128,Entire home/apt,100,3,93,2019-06-21,3.49,1,197 +18108849,Best location to live in Astoria,124741583,Marina,Queens,Astoria,40.76601,-73.91841,Private room,49,5,2,2017-06-27,0.08,1,179 +18108981,HUGE PRISTINE VERSACE DUPLEX APT. IN BROOKLYN,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69171,-73.9575,Entire home/apt,195,4,80,2019-07-02,3.00,3,218 +18109817,Great Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76476,-73.99453,Entire home/apt,115,30,3,2018-04-22,0.12,31,326 +18109852,"Sunny high-ceiling, large-windows, Bushwick apt",5168429,Chris,Brooklyn,Bushwick,40.69511,-73.90715,Private room,65,4,17,2019-01-12,0.66,1,11 +18110008,Bright room by the Brooklyn Navy Yard,9193506,Lucy,Brooklyn,Fort Greene,40.69664,-73.97375,Private room,65,2,3,2017-08-14,0.11,1,0 +18110654,Bright and Sunny Brooklyn Sanctuary,9630989,Ernesto,Brooklyn,Bushwick,40.70091,-73.92215,Private room,60,2,113,2019-06-17,4.15,2,3 +18112181,Sunny Williamsburg Studio Overlooking the Park,16970101,Tia,Brooklyn,Williamsburg,40.72128,-73.95547,Entire home/apt,175,2,8,2019-05-25,0.43,1,0 +18112517,MANHATTAN - Upper West BIG ROOM w/tv,122026078,Shah Memo,Manhattan,Harlem,40.81928,-73.95398,Private room,80,2,9,2017-09-27,0.36,3,72 +18117334,"Bright Zen Bedroom with TV, nr JMZ Subways",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69624,-73.93414,Private room,72,4,59,2019-06-27,2.22,6,120 +18120094,Clean Private Room in East Village,24594940,Manisha,Manhattan,East Village,40.72177,-73.98286,Private room,100,5,8,2019-01-03,0.30,1,128 +18120248,Great Studio,6473469,Yoni,Manhattan,Upper West Side,40.79487,-73.96555,Entire home/apt,100,3,3,2017-04-25,0.11,1,0 +18120592,Clean room PRIVATE full bath & private entrance,124860677,Jim&Lisa,Queens,Flushing,40.75811,-73.81458,Private room,47,2,130,2019-07-07,4.79,6,342 +18120946,Tranquility in a Sunny Duplex w/Private Bathroom,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.6919,-73.94487,Private room,125,1,60,2019-07-03,2.21,3,90 +18121314,Lovely Private Clean New Building A/C,1460313,Soraya,Queens,Ridgewood,40.69661,-73.90022,Private room,56,5,71,2019-06-23,2.81,2,100 +18123155,Fully Fancy Furnish Apartment in Manhattan.,124886133,Tom,Manhattan,Upper East Side,40.76982,-73.95258,Entire home/apt,105,30,2,2018-08-22,0.08,1,120 +18123185,Cozy room in UWS in modern apt,71540662,Jay,Manhattan,Upper West Side,40.79974,-73.96432,Private room,80,6,3,2017-10-15,0.11,1,0 +18123540,Cozy room in Brooklyn steps from train,54058956,Kristin,Brooklyn,Flatbush,40.65026,-73.96308,Private room,40,2,0,,,1,0 +18124043,ChelseaStudio w/t SunnyPrivateTerrace&EmpireView:),124898889,Fania,Manhattan,Chelsea,40.74432,-73.99985,Entire home/apt,180,5,7,2018-01-02,0.26,1,0 +18124558,MANHATTAN by Central Park/Subway Private Bedroom!,3084731,Cristine,Manhattan,East Harlem,40.78949,-73.94461,Private room,79,5,47,2019-06-28,1.77,1,131 +18133502,Sunny Modern Duplex w/Balcony & Rooftop Deck,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.69261,-73.94393,Entire home/apt,150,2,33,2019-06-29,1.23,3,177 +18134537,"NYC available Now - March 15 , UWS, 1 bedroom apt.",124999506,Kevin,Manhattan,Upper West Side,40.77777,-73.97939,Entire home/apt,250,1,3,2017-04-22,0.11,1,0 +18134948,"Room w/private bathroom, Breakfast & 7min to Manh",1746238,Kat,Brooklyn,Williamsburg,40.71398,-73.94702,Private room,169,5,60,2019-01-01,2.22,1,50 +18136478,"Sunny, Quiet top-floor 2 bedroom in Cobble Hill",22511613,James,Brooklyn,Carroll Gardens,40.68572,-73.99286,Entire home/apt,199,1,6,2018-05-28,0.23,2,0 +18136685,"Clean, Cosy Private 1 Bd Apartment Fort Greene",8740662,Nichole,Brooklyn,Clinton Hill,40.69369,-73.96826,Entire home/apt,125,6,0,,,1,0 +18138307,"Private Room, shared bathroom in Hamilton Heights",17643263,Frank,Manhattan,Harlem,40.83126,-73.94832,Private room,120,2,14,2017-08-07,0.52,1,0 +18139095,Brand New Historic Harlem Duplex Apartment,3988482,Julien,Manhattan,Harlem,40.82168,-73.95161,Entire home/apt,199,3,45,2018-08-06,1.82,1,0 +18139171,Spacious Oasis Duplex with Private Garden,5736671,Sarah,Brooklyn,Boerum Hill,40.68786,-73.98811,Entire home/apt,160,5,10,2019-01-31,0.39,1,8 +18142309,Cozy and sunny Studio,32166735,Denise,Brooklyn,Prospect Heights,40.67387,-73.96707,Entire home/apt,100,5,14,2019-05-28,0.53,1,0 +18142333,"Elegant 5BR, 2.5 Bath w/Yard, 15 Mins to Manhattan",107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68402,-73.93081,Entire home/apt,550,2,32,2019-06-16,1.50,3,248 +18142927,Bright Minimalist Creative Retreat Bedroom BedStuy,69860334,DyAnna,Brooklyn,Bedford-Stuyvesant,40.69307,-73.95254,Private room,40,3,1,2017-05-02,0.04,1,0 +18148158,Spacious Bright and Modern Studio,124142417,Marlene,Brooklyn,Bushwick,40.6877,-73.9159,Entire home/apt,95,2,113,2019-06-24,4.15,2,6 +18149668,New Renovated Private 1 bed/bath in Prime Location,54098346,Eric,Manhattan,Upper East Side,40.78071,-73.95149,Private room,150,1,3,2017-04-17,0.11,1,0 +18151035,Stylish centrally Located 2 bedroom,3639678,Rose,Brooklyn,Boerum Hill,40.68727,-73.98574,Entire home/apt,189,5,58,2019-06-23,2.17,1,24 +18151976,Lovely room(s) in Brooklyn brownstone w/ backyard,2960920,Stefan,Brooklyn,Bedford-Stuyvesant,40.68293,-73.95458,Private room,71,1,2,2017-04-30,0.07,1,0 +18152140,One bedroom in quaint brownstone!!,109855383,Aaron,Brooklyn,Bedford-Stuyvesant,40.6942,-73.94963,Private room,40,3,6,2018-07-03,0.22,1,0 +18152217,A charming room in a Victorian Home,22661810,Marie,Brooklyn,Flatbush,40.63256,-73.94757,Private room,55,4,8,2018-11-02,0.35,2,364 +18152855,Beautiful 1-bedroom close to Grand Central,17520527,Carolin,Queens,Sunnyside,40.74473,-73.91876,Private room,150,3,1,2017-06-02,0.04,1,0 +18154888,Manhatten Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,229,30,0,,,23,149 +18155063,Spacious Studio ( W 48 street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7647,-73.99414,Entire home/apt,120,30,0,,,31,353 +18155865,Private Bedroom/Officespace,125204273,Alexander,Brooklyn,Williamsburg,40.70869,-73.94684,Private room,100,3,0,,,1,0 +18156252,LOFT SPACE IN BUSHWICH,10695335,Alessia,Brooklyn,Williamsburg,40.70327,-73.93425,Entire home/apt,160,2,18,2019-03-27,0.67,1,358 +18156961,Sunny Private Room with patio access in the EV!,10121204,Meredith,Manhattan,East Village,40.72269,-73.98428,Private room,50,5,0,,,1,0 +18158353,Beautiful BedStuy Bedroom,6950091,Shireen,Brooklyn,Bedford-Stuyvesant,40.68544,-73.92457,Private room,60,1,1,2017-04-23,0.04,1,0 +18159239,Manhattan | Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75735,-73.99189,Entire home/apt,229,30,2,2018-05-09,0.08,23,362 +18159825,"NYC4YOU +Great location!!!",23187808,Theodore,Queens,Ditmars Steinway,40.77412,-73.9061,Entire home/apt,99,1,81,2019-06-20,2.98,1,202 +18160364,"UWS 1BR Apartment, Charming, Exposed Brick (5B)",106837455,Lisa,Manhattan,Upper West Side,40.7847,-73.98196,Entire home/apt,136,29,1,2018-01-01,0.05,8,0 +18161036,Large private room on the Upper East Side,4240419,Haldun,Manhattan,Upper East Side,40.77681,-73.95123,Private room,120,2,4,2018-01-01,0.15,1,0 +18162965,"Large, funky Park Slope triplex w outdoor space.",98040412,Amy,Brooklyn,Park Slope,40.67259,-73.98452,Entire home/apt,300,1,0,,,1,0 +18169166,"UWS 1BR, Landmarked Townhouse, Sunny (4B)",106837455,Lisa,Manhattan,Upper West Side,40.78463,-73.98303,Entire home/apt,119,30,1,2017-05-31,0.04,8,310 +18170615,Private room/Columbia/Central park,75810157,Antong,Manhattan,Morningside Heights,40.80416,-73.96538,Private room,99,4,3,2017-06-29,0.11,1,0 +18171814,"Artsy and Sunny Room in Bushwick, near L and JMZ",38041322,Ana,Brooklyn,Bushwick,40.70025,-73.92175,Private room,60,3,2,2017-08-30,0.07,1,0 +18173198,Charming & Affordable Shared Studio in WestHarlem,274333,Janu,Manhattan,Harlem,40.80026,-73.9546,Shared room,31,1,65,2019-06-03,2.44,3,89 +18173787,Cute Tiny Room Family Home by LGA NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.7638,-73.87238,Private room,48,1,436,2019-07-08,16.03,5,337 +18173989,Private and Quiet Room in the Perfect Location,3660702,Greg,Manhattan,Chelsea,40.74754,-73.99036,Private room,69,1,63,2019-06-24,2.34,4,29 +18175051,Private Bedroom in charming 2 Bdrm Duplex,9147284,David,Brooklyn,Bushwick,40.69808,-73.92054,Private room,60,1,4,2018-11-27,0.30,1,341 +18175061,New Years EVE in NY! Magnificent Private Penthouse,125320407,Sata,Queens,Briarwood,40.70678,-73.80613,Entire home/apt,1000,2,5,2018-10-07,0.27,5,365 +18175675,2400 Sq Ft Tribeca Loft w/Private Elevator,2834168,Jessica,Manhattan,Tribeca,40.71893,-74.0033,Entire home/apt,350,6,20,2019-06-30,0.74,1,25 +18175743,private apartment in new york,40929418,Nicole,Queens,Glendale,40.70459,-73.89574,Entire home/apt,100,1,0,,,1,0 +18176762,":Luxury 1BR by the water, one stop from Manhattan",117840007,Joanna,Queens,Long Island City,40.7455,-73.95607,Entire home/apt,150,3,5,2017-10-23,0.19,1,0 +18176796,3BED apartment 20 MINS TO MANHATTAN,116723158,Jamaul,Brooklyn,East Flatbush,40.65321,-73.95199,Entire home/apt,140,1,111,2019-07-07,4.53,1,259 +18176798,Sunny Balcony Apartment,125398274,Christian,Manhattan,Lower East Side,40.71869,-73.9931,Entire home/apt,200,3,7,2018-07-23,0.26,2,0 +18177024,Two Bedroom on Williamsburg Waterfront,187912,Erin,Brooklyn,Williamsburg,40.71638,-73.96612,Entire home/apt,235,1,35,2019-06-14,1.29,2,9 +18179365,2 bedroom apartment with private Patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76318,-73.99462,Entire home/apt,200,30,1,2017-07-29,0.04,31,350 +18179735,Nice room in spacious apartment in BK,26996515,Will,Brooklyn,Bedford-Stuyvesant,40.69016,-73.9274,Private room,40,2,4,2017-08-07,0.16,2,0 +18180304,"Cozy, Private Studio in Bedstuy, Brooklyn",7598580,Julia,Brooklyn,Bedford-Stuyvesant,40.67943,-73.94435,Entire home/apt,90,6,1,2018-10-03,0.11,1,35 +18181620,Centrally Located Manhttn High-Rise,501891,Dave,Manhattan,Gramercy,40.7368,-73.98045,Entire home/apt,379,1,0,,,1,0 +18182282,Modern large one bedroom apt in HK,3749703,Dan,Manhattan,Hell's Kitchen,40.76126,-73.99685,Entire home/apt,300,2,0,,,1,0 +18182318,Luxury Musician's Loft with Incredible City Views,9563971,Doa,Brooklyn,Williamsburg,40.70858,-73.95857,Entire home/apt,250,2,5,2019-04-02,0.18,1,0 +18188738,Cute Family Friendly Vintage Brownstone Living!!,27403581,Shay & Cam,Manhattan,Harlem,40.82665,-73.94669,Shared room,49,2,52,2019-04-16,1.95,1,194 +18188904,extra large room available,62639334,Melissa,Brooklyn,Crown Heights,40.67763,-73.94755,Private room,60,2,7,2019-06-10,0.34,1,0 +18188958,Beautiful 2-bedroom in Williamsburg,611109,Alexandra,Brooklyn,Williamsburg,40.70743,-73.96625,Entire home/apt,224,1,26,2019-07-06,1.01,2,192 +18190480,Park Slope Gem full of natural light,28929752,Sarah,Brooklyn,Park Slope,40.67632,-73.97328,Entire home/apt,115,3,4,2018-05-20,0.23,1,0 +18190894,Large sleeping loft with two beds,17527788,Taylor,Brooklyn,Bushwick,40.69745,-73.93038,Private room,49,1,20,2019-06-29,0.74,2,89 +18191456,Amazing Studio in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75933,-73.82313,Entire home/apt,115,30,3,2019-05-24,0.12,15,7 +18191892,Huge 2BR Apartment. Walk to beach/buses,28483768,Skender,Staten Island,Dongan Hills,40.57825,-74.08879,Entire home/apt,95,4,45,2019-06-19,1.66,1,134 +18191934,"25 Mins to Midtown, 15 Mins to LES",71138930,Ann,Brooklyn,Williamsburg,40.70345,-73.94336,Private room,98,2,22,2017-10-08,0.82,1,0 +18191965,Upper east side - Cozy Room,125542850,Gabriele,Manhattan,Upper East Side,40.76976,-73.95208,Private room,110,3,11,2019-07-03,0.41,1,203 +18193397,Washington Heights Cozy,125558761,Stefan,Manhattan,Washington Heights,40.85354,-73.93095,Private room,50,2,26,2019-07-02,0.96,1,24 +18194415,"Room in just-refurbished, classic brownstone flat.",125567809,Gene,Brooklyn,Park Slope,40.67213,-73.98141,Private room,75,1,0,,,1,0 +18194429,Adorable Upper West Side Apt steps to Central Park,125565839,Kim,Manhattan,Upper West Side,40.79345,-73.97191,Entire home/apt,50,5,12,2017-10-01,0.44,1,0 +18194450,Gorgeous Brooklyn Bedroom with Luxury Decor,54289696,Monica,Brooklyn,Crown Heights,40.67038,-73.93214,Private room,27,2,81,2019-06-09,2.99,1,84 +18194482,Bed-Stuy Beauty,9945748,Shakira,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94156,Entire home/apt,130,4,13,2017-10-02,0.48,1,0 +18195445,Modern and sunny in the heart of Prospect Heights!,7433941,Diana,Brooklyn,Crown Heights,40.6778,-73.96321,Entire home/apt,85,3,5,2019-05-17,0.64,1,0 +18196880,Sunny Apartment Near Prospect Park,5378851,Kate,Brooklyn,Crown Heights,40.66429,-73.9581,Private room,115,7,2,2018-10-21,0.09,1,95 +18196956,Beautiful 1 BR 1 Bath in Boerum Hill Brooklyn,3859890,Aditi,Brooklyn,Boerum Hill,40.6891,-73.9874,Private room,53,1,10,2019-03-21,0.38,1,0 +18197137,"ENTIRE, PRIVATE NYC home 3mins from JFK Airport",125557444,Ada,Queens,Jamaica,40.67057,-73.77956,Entire home/apt,80,1,7,2019-01-17,0.27,2,304 +18197946,Beautiful apt with view of GW Bridge and river,10127519,Horatio,Manhattan,Washington Heights,40.84955,-73.94167,Private room,35,1,6,2018-05-31,0.22,1,0 +18198439,BRIGHT SHABBY CHIC FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81447,-73.94721,Entire home/apt,165,7,35,2019-07-01,1.39,3,269 +18198575,"Sunny, Spacious Bedroom 2 mins from the train!",16091224,Jesse,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.96086,Private room,60,5,15,2019-06-29,0.64,2,41 +18201148,"5* Views, Terrace, 2BR2B, Modern Luxury, Gym, Roof",48205496,B,Queens,Long Island City,40.74834,-73.94181,Entire home/apt,379,4,91,2019-06-26,3.44,2,152 +18201247,EAST VILLAGE 12TH ST- CONVERTED 2 BR APT,2856748,Ruchi,Manhattan,East Village,40.73218,-73.98815,Entire home/apt,285,30,0,,,49,364 +18203651,Comfortable Rest Stop,649374,Jeremy,Brooklyn,East Flatbush,40.6536,-73.92643,Private room,60,2,16,2017-11-15,0.71,1,0 +18205794,"Bright, Quiet and Modern--1,200 Sq Ft in W Village",1448674,Sean,Manhattan,West Village,40.7355,-73.99964,Entire home/apt,329,4,33,2019-06-09,1.25,1,16 +18206686,"East 12th street, Lux Studio in Greenwich Village",22541573,Ken,Manhattan,East Village,40.73373,-73.98962,Entire home/apt,225,30,0,,,87,347 +18207319,Brownstone w/ Luxurious private room & bay windows,125687221,Tee,Bronx,Longwood,40.8134,-73.89893,Private room,75,3,6,2017-08-04,0.25,1,87 +18208285,Cozy bedroom near Central Park,43200701,Nina,Manhattan,Upper East Side,40.76889,-73.9548,Private room,100,1,68,2018-10-29,2.62,1,5 +18208738,Bright uptown apartment in the heart of Harlem,20368225,Jessica,Manhattan,Harlem,40.80803,-73.94647,Entire home/apt,200,2,68,2019-06-22,2.90,3,43 +18208811,"Warm, clean room in a historic Harlem brownstone",20368225,Jessica,Manhattan,Harlem,40.80965,-73.94696,Private room,115,1,120,2019-06-22,4.77,3,34 +18209427,Sunny big designer room in Art-loving Bushwick,2208374,Elena,Brooklyn,Bushwick,40.7016,-73.92103,Private room,85,3,8,2019-04-19,0.30,2,3 +18209795,Cozy furnished private room in Manhattan,35525179,Ma,Manhattan,Upper West Side,40.79794,-73.97188,Private room,40,1,14,2017-05-27,0.52,1,0 +18210358,True NYC Living! Flatiron:1 bdrm w/ outdoor space!,76114242,Mark,Manhattan,Kips Bay,40.73916,-73.9822,Entire home/apt,235,1,0,,,1,0 +18210425,Cozy room in Downtown Brooklyn.,125717450,Lawson,Brooklyn,Boerum Hill,40.68416,-73.97912,Private room,64,1,3,2018-12-18,0.19,1,3 +18210950,2 bedroom at Wyndham Midtown 45 New York City,57571805,Gharet,Manhattan,Midtown,40.7523,-73.97299,Entire home/apt,134,4,2,2017-09-27,0.08,3,0 +18211259,Flatbush Townhouse Apt (UNFURNISHED),10285950,Christina,Brooklyn,Flatbush,40.64538,-73.954,Entire home/apt,86,14,1,2017-07-04,0.04,3,349 +18213280,2 bedroom 2 bathroom UWS,6726364,Alejandra,Manhattan,Upper West Side,40.79967,-73.96251,Entire home/apt,330,3,3,2017-07-13,0.11,2,0 +18213425,Contemporary Home with Brooklyn Charm,125746559,Akil,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.94475,Entire home/apt,170,3,19,2018-08-20,0.81,1,0 +18214015,Quiet Private Bedroom in the heart of Little Italy,41874064,Sheba,Manhattan,Little Italy,40.71836,-73.99777,Private room,90,1,106,2019-07-02,4.29,2,9 +18215065,NEW 2 twin beds and private bathroom in Flushing!!,10366837,Jia,Queens,Flushing,40.75767,-73.83094,Entire home/apt,65,2,84,2019-06-15,3.19,3,119 +18216372,Private room in Sunnyside 15 min to Manhattan,27966322,Mustafa,Queens,Sunnyside,40.73677,-73.9168,Private room,60,2,2,2017-05-18,0.08,1,40 +18221090,Bright and spacious room,125821659,Liliana,Queens,Jackson Heights,40.75147,-73.89071,Private room,75,1,6,2019-06-19,0.32,1,341 +18221723,"Spacious Apt w Deck, Williamsburg",3591955,Charles,Brooklyn,Williamsburg,40.71004,-73.95994,Entire home/apt,265,3,26,2019-06-25,1.01,1,70 +18221864,Lovely 1 BD on the Upper West Side,70601471,Andreas,Manhattan,Upper West Side,40.78906,-73.97732,Entire home/apt,148,1,131,2019-06-24,4.90,1,277 +18221952,The ASTORIAN'S ArtPad,17247848,Kevin,Queens,Ditmars Steinway,40.77751,-73.90902,Private room,95,1,31,2019-05-22,1.20,1,90 +18222186,Cozy Quite Room in NYC Manhattan Upwest,125833008,Wendy,Manhattan,Harlem,40.83053,-73.95048,Private room,94,3,2,2017-05-31,0.08,1,0 +18222359,LIVE BROOKLYN! Private 1 BR APT - 5 min to Subway,120804342,David,Brooklyn,Bedford-Stuyvesant,40.6946,-73.94429,Entire home/apt,109,2,112,2019-07-05,4.22,2,258 +18223667,Amazing location! Luxury Apartment by Central Park,15069930,Christian,Manhattan,Upper East Side,40.78164,-73.95873,Entire home/apt,490,14,1,2017-04-27,0.04,1,180 +18225729,Hip Soho Loft,121400000,Kristen,Manhattan,SoHo,40.72528,-74.00317,Entire home/apt,200,3,16,2018-09-24,0.60,1,15 +18225813,Pendulum Palace,44785461,William,Brooklyn,Williamsburg,40.70655,-73.95405,Private room,69,15,0,,,1,0 +18225912,"Fresh, bright modern studio w/ Garage Parking",3656008,Ivanna,Queens,Flushing,40.7447,-73.82497,Entire home/apt,99,3,95,2019-05-31,3.52,1,63 +18226037,Luxury Brooklyn + Roof Deck and Gym!,29950960,Erik,Brooklyn,Clinton Hill,40.68697,-73.9615,Private room,75,4,14,2019-07-06,0.54,1,10 +18226108,"1-bedroom apartment in Williamsburg, Brooklyn",57641560,Christopher,Brooklyn,Williamsburg,40.7164,-73.95437,Entire home/apt,146,4,58,2019-06-22,2.50,2,17 +18226843,Private bedroom in Murray Hill / Kips Bay,3600065,Ariel,Manhattan,Murray Hill,40.74612,-73.97684,Private room,77,2,3,2017-08-17,0.12,1,0 +18227315,Fully furnished room with a single bed,87723508,Edyta,Queens,Glendale,40.69845,-73.8958,Private room,35,30,7,2019-01-02,0.27,2,294 +18227529,Live in New York Near Central Park and Columbia U.,21940966,Mekkie,Manhattan,Harlem,40.80567,-73.95677,Entire home/apt,140,2,82,2019-07-05,3.17,2,5 +18227645,Cozy Room In Upper East Side Apt,20899650,Kyra,Manhattan,East Harlem,40.7883,-73.95017,Private room,100,1,22,2018-08-05,0.81,1,0 +18228187,《2》法拉盛市中心明亮干净的私人房间,123580100,Evelyn,Queens,Flushing,40.76417,-73.83008,Private room,45,1,94,2019-06-17,3.48,2,62 +18229274,# 1 A Brooklyn New York Apt: close to metro subway,125914985,Myles,Brooklyn,East Flatbush,40.63381,-73.94395,Entire home/apt,185,6,60,2019-06-30,3.22,2,112 +18229365,Beautiful apartment ~25min from Times Square,6358504,Yaroslav,Bronx,Mount Hope,40.84499,-73.91157,Entire home/apt,60,5,3,2018-08-21,0.13,1,0 +18235200,Cozy Private Bedroom Near LGA,62466309,Paula,Queens,East Elmhurst,40.76518,-73.89182,Private room,50,2,1,2018-12-02,0.14,1,34 +18236999,Penthouse with private terrace and bath,23269913,Patrick,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92345,Private room,50,2,5,2017-12-16,0.19,1,0 +18239613,"Charming Private Room in Bed-Stuy, Brooklyn",28260191,Matthew,Brooklyn,Bedford-Stuyvesant,40.68583,-73.95296,Private room,47,35,1,2018-08-01,0.09,1,75 +18239623,One Bedroom with King in the Manhattan Club!!,22307295,Anthony,Manhattan,Midtown,40.76392,-73.98187,Entire home/apt,186,1,0,,,1,0 +18239876,Studio aprtmnt for ONE located in upper Manhattan,125589679,Shanta,Manhattan,Washington Heights,40.83694,-73.94212,Entire home/apt,100,3,71,2019-06-21,2.66,1,363 +18239917,Luxury 2 BR in Prime NOHO,126015118,Nir,Manhattan,East Village,40.72448,-73.99247,Entire home/apt,400,3,3,2019-01-02,0.36,1,14 +18240632,Bronx Apartment,64425305,Posh,Bronx,Baychester,40.87372,-73.84065,Private room,75,1,3,2017-06-05,0.11,1,129 +18240637,COZY-CHIC CROWN HEIGHTS 1-BED,27442469,Deri,Brooklyn,Crown Heights,40.67694,-73.94631,Private room,145,3,1,2017-05-01,0.04,1,0 +18240743,Private Room in Staten Island + Walk-In Closet. #1,72603148,Faye,Staten Island,Stapleton,40.63457,-74.07817,Private room,65,1,56,2019-07-07,2.09,3,351 +18240963,Coney Island MCU Park Wi fi Cable Apt****,114736959,Ed,Brooklyn,Coney Island,40.57609,-73.98605,Entire home/apt,110,3,52,2019-07-05,1.95,6,150 +18241920,Hosting Harlem Brownstone Apartment,122495279,Patrick,Manhattan,Harlem,40.80405,-73.94513,Entire home/apt,85,7,2,2017-09-04,0.08,1,0 +18242004,Columbia university medical center 1AC line studio,106932244,Tianchen,Manhattan,Washington Heights,40.84062,-73.94125,Entire home/apt,51,1,4,2017-05-29,0.15,1,0 +18248683,Sunny East Village Apartment,126101478,Bobby,Manhattan,East Village,40.72412,-73.97911,Entire home/apt,140,5,1,2017-05-03,0.04,1,0 +18249844,Central Park One Bedroom Apartment in Harlem,126110994,Andrew,Manhattan,Harlem,40.8043,-73.95106,Entire home/apt,85,1,25,2017-07-20,0.93,1,0 +18251681,"Private second floor, 2 BR, wood-frame farmhouse.",22769654,Jeff,Brooklyn,Clinton Hill,40.69368,-73.9671,Private room,165,2,109,2019-06-21,4.04,1,246 +18252313,Modern Central Harlem Room,2331158,"Destiny ""Bunmi""",Manhattan,Harlem,40.80947,-73.94066,Private room,30,5,3,2017-11-18,0.12,1,0 +18252876,Charming Spacious Studio in UWS with balcony,60022283,Audrey,Manhattan,Morningside Heights,40.80507,-73.96414,Entire home/apt,116,3,16,2019-05-25,0.61,1,0 +18253290,Pleasant one bed room apartment in Greenpoint!,17049693,Anastasia,Brooklyn,Greenpoint,40.7288,-73.95408,Entire home/apt,70,13,8,2017-08-28,0.33,1,0 +18253324,"Safe Location, next to Subway; Manhattan 20 mins",19377326,Alisa,Brooklyn,Crown Heights,40.67158,-73.96007,Entire home/apt,46,30,25,2018-07-17,1.02,1,0 +18253938,Large Uptown Manhattan Studio,23168773,Brett,Manhattan,Inwood,40.86512,-73.92172,Entire home/apt,70,20,17,2018-01-03,0.72,1,0 +18254225,Midtown West: Private Residence,125654433,Maurizio,Manhattan,Hell's Kitchen,40.76658,-73.99335,Entire home/apt,250,4,0,,,1,0 +18254259,Beautiful and spacious private room!,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68318,-73.92529,Private room,70,28,14,2018-03-17,0.52,4,265 +18254314,"St. Marks, East Village penthouse loft w/ patio!",100288,Tiff & David,Manhattan,East Village,40.72842,-73.98679,Private room,140,4,11,2017-12-12,0.42,1,0 +18254317,Great place in Manhattan - Upper west side,101262003,John,Manhattan,Upper West Side,40.78571,-73.97649,Private room,150,1,0,,,2,0 +18255124,Beautiful modern apartment located in Gramercy,64351850,Mckenzie,Manhattan,Kips Bay,40.73957,-73.98233,Entire home/apt,168,7,10,2018-12-11,0.37,1,0 +18255225,Lovely Studio,43089949,Victoria,Brooklyn,Midwood,40.62,-73.95489,Entire home/apt,85,5,15,2019-06-23,1.01,1,105 +18255869,Brooklyn Hidden Gem,126176275,Audrey,Brooklyn,East Flatbush,40.63602,-73.93105,Private room,50,30,32,2019-06-26,1.29,4,64 +18256895,☆☆☆Perfect Couple's Getaway☆☆☆,122265852,Alexander,Manhattan,Hell's Kitchen,40.76459,-73.99035,Private room,99,1,159,2019-06-30,5.88,2,178 +18257701,Cozy 1 BR w/ Natual Sunlight & Exposed Brick,125585107,Krishaine,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91707,Private room,65,2,2,2017-05-16,0.08,1,0 +18263839,An amazing Studio Apt in FIDI,57192926,Yara,Manhattan,Financial District,40.70689,-74.00671,Entire home/apt,145,3,87,2019-06-29,3.28,1,140 +18264166,10 mins/Airports JFK/LGA/Hosp/malls bus/train# 1,126247863,Seeranie,Queens,Richmond Hill,40.69104,-73.82204,Private room,50,1,102,2019-06-23,4.02,2,354 +18264659,A Cozy Harlem Stay,63417081,Devon,Manhattan,Harlem,40.82341,-73.94444,Private room,39,30,3,2018-08-18,0.14,8,282 +18264726,Brooklyn Vibes Apartment,18184562,Gil,Brooklyn,Williamsburg,40.71684,-73.94256,Private room,200,4,2,2017-04-21,0.07,1,0 +18265387,Beautiful Room with Private Bathroom by Bushwick!!,99608108,Osa,Brooklyn,Bushwick,40.70464,-73.91556,Private room,69,2,23,2019-06-03,0.89,3,145 +18266105,Clean + Simple Chelsea 2 Bedroom (sleeps 7),4393578,Jack,Manhattan,Chelsea,40.7402,-73.999,Entire home/apt,300,30,51,2019-04-09,2.55,2,126 +18266775,Beautiful Room with Private Entrance by Bushwick!!,99608108,Osa,Brooklyn,Bushwick,40.70549,-73.91527,Private room,69,2,34,2019-06-23,1.33,3,319 +18268053,Location Angel Boy,3250450,Petya,Queens,Woodside,40.75527,-73.90835,Private room,40,31,2,2019-05-12,0.16,18,362 +18268257,Spacious NY loft equipped for a baby!,3955533,Aiya,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95861,Entire home/apt,160,5,11,2018-07-10,0.46,1,0 +18269285,Prime Midtown East Queen Bedroom-Females only,126292511,Charlotte,Manhattan,Midtown,40.76013,-73.96566,Shared room,99,3,6,2017-10-08,0.24,1,0 +18270109,Beautiful Room by Bushwick Brooklyn!!,99608108,Osa,Brooklyn,Bushwick,40.70457,-73.91603,Private room,29,2,40,2019-06-22,1.49,3,319 +18270199,loft in live work studio,13058935,Shawn,Brooklyn,Greenpoint,40.73434,-73.94186,Private room,55,5,0,,,1,0 +18271282,Gimme Shelter,126311719,Kricket,Manhattan,SoHo,40.7239,-73.99678,Entire home/apt,850,30,7,2018-12-01,0.26,1,365 +18271460,Beautiful Sunlit Private Room in BKH apartment,106130636,Lane,Brooklyn,Brooklyn Heights,40.69602,-73.99253,Private room,75,3,1,2017-05-29,0.04,1,0 +18271718,Private Comfy Best Value BR w/Yard!~175ft to Subwy,40883799,Amos,Brooklyn,Bushwick,40.70596,-73.92182,Private room,60,1,83,2019-06-28,3.15,3,175 +18272185,"Huge, Light-filled Williamsburg Loft — Long Term",1495058,Joseph,Brooklyn,Williamsburg,40.72112,-73.96034,Entire home/apt,249,60,2,2017-05-09,0.08,1,0 +18272753,The Reptarium: hip hideaway in sunny Bushwick loft,20175399,Grace,Brooklyn,Bushwick,40.70765,-73.92159,Private room,69,2,16,2017-10-22,0.61,1,0 +18273151,Private room in luxury building,125438374,Christian,Manhattan,Financial District,40.70438,-74.00894,Private room,100,1,0,,,1,0 +18273542,Luxury Room w/private bathroom in DUPLEX,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9449,Private room,75,1,14,2018-08-12,0.52,3,89 +18274232,PRIVATE BATH next to Central Park!,21380187,Mark,Manhattan,Hell's Kitchen,40.76692,-73.98548,Private room,179,2,34,2019-06-23,1.31,1,84 +18274492,Studio apartment in NYC,5949541,Helen,Staten Island,Grant City,40.58023,-74.10725,Entire home/apt,80,3,68,2019-06-30,2.55,1,50 +18275502,Sophisticated Brooklyn Brownstone,87766324,Michelle,Brooklyn,Bedford-Stuyvesant,40.68707,-73.9349,Entire home/apt,196,2,88,2019-06-15,3.32,2,9 +18276042,Private Bedroom in Gorgeous Uptown Apartment,39442448,Jayson,Manhattan,Washington Heights,40.84946,-73.93126,Private room,43,5,1,2017-05-21,0.04,1,0 +18283136,Modern midtown studio,44453334,Oleg,Manhattan,Hell's Kitchen,40.75383,-73.99733,Shared room,145,4,0,,,1,0 +18283367,Huge Private Furnished Bedroom - Inwood,126420866,Nic,Manhattan,Inwood,40.86396,-73.9267,Private room,50,5,2,2017-05-20,0.08,1,0 +18283511,☆☆☆Authentic NYC Experience☆☆☆,122265852,Alexander,Manhattan,Hell's Kitchen,40.766,-73.98945,Private room,99,1,134,2019-06-30,4.96,2,176 +18283646,Clean and Cozy Room - 20 Mins to Midtown Manhattan,28462809,Shesh,Manhattan,Harlem,40.82205,-73.95335,Private room,80,2,18,2019-05-04,0.69,1,55 +18285079,"Cozy 1BD in East Village, Manhattan",13816539,Theodore,Manhattan,East Village,40.72982,-73.98076,Entire home/apt,118,2,4,2019-05-31,0.92,1,0 +18286031,Sunny & Cozy w/outdoor space in Bushwick/Ridgewood,77501050,Sarah,Queens,Ridgewood,40.70787,-73.90961,Private room,55,1,21,2017-11-26,0.79,1,0 +18286212,Clinton Hill's hidden gem,126444590,Anndean,Brooklyn,Clinton Hill,40.68312,-73.9592,Entire home/apt,200,7,9,2019-06-15,0.36,1,269 +18286232,NEW PENTHOUSE W/ HUGE PRIVATE ROOFTOP EAST VILLAGE,18167404,Andy,Manhattan,East Village,40.7242,-73.97777,Private room,150,1,0,,,1,0 +18286926,Joy's Luxury Apartment with Free Parking Space,126451493,Joy,Brooklyn,Canarsie,40.63136,-73.90921,Entire home/apt,125,1,26,2019-06-15,1.07,1,360 +18287688,UES one bedroom,57531995,Ashley,Manhattan,Upper East Side,40.77138,-73.94973,Entire home/apt,145,1,15,2018-04-29,0.62,1,0 +18287772,☆☆☆Extravagant Couple's Escape☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76606,-73.99077,Private room,99,1,155,2019-07-01,5.74,3,179 +18288169,Private Williamsburg Room 1 Block from Bedford L,1918417,Vidula,Brooklyn,Williamsburg,40.71919,-73.95789,Private room,80,2,1,2017-06-05,0.04,1,0 +18288371,Beautiful Apartment in the Heart of Chelsea,8008110,Erika,Manhattan,Chelsea,40.74672,-74.00187,Entire home/apt,195,6,33,2019-05-20,1.36,1,1 +18288391,"Cozy Room in BedStuy, Brooklyn",68579384,Julie,Brooklyn,Bedford-Stuyvesant,40.68435,-73.9274,Private room,42,14,4,2017-09-04,0.16,2,0 +18288660,Comfortable Private Room,32304780,Nicauris,Manhattan,Washington Heights,40.84098,-73.937,Private room,53,30,11,2019-04-28,0.42,3,354 +18288774,"Top-Floor Studio In Quaint, Quiet Brownstone",17393160,Tynan,Brooklyn,Cobble Hill,40.68818,-73.99483,Entire home/apt,125,4,3,2017-05-25,0.11,1,0 +18288828,☆☆☆Luxurious Couple's Retreat☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76431,-73.9891,Private room,99,1,147,2019-06-30,5.45,3,174 +18290402,Large 1 bd Apt in Heart of Chelsea Manhattan,3140916,Donald,Manhattan,Chelsea,40.74911,-74.00125,Entire home/apt,210,28,4,2017-05-24,0.15,1,95 +18290561,Harlem Jewel + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81358,-73.94296,Entire home/apt,177,3,71,2019-06-19,2.67,3,199 +18290841,"Clean, Chic, Modern Studio in UWS",33608519,Grace,Manhattan,Morningside Heights,40.8058,-73.9652,Entire home/apt,145,1,0,,,1,0 +18291430,Cozy Bedroom In Marble Hill ( Students Welcome ),18692297,Maneto,Manhattan,Marble Hill,40.87492,-73.91164,Private room,44,5,18,2019-06-30,0.69,1,349 +18291740,In the Heart of the East Village,2308459,Judith,Manhattan,East Village,40.72734,-73.98338,Private room,85,3,5,2019-07-01,0.24,1,9 +18291916,Cozy Brooklyn Apartment,33943711,Grace,Brooklyn,Clinton Hill,40.68775,-73.95997,Entire home/apt,150,4,8,2017-10-15,0.30,1,0 +18294238,New tidy room attached by PRIVATE FULL BATH,120767920,Jimmy &Cindy,Queens,Flushing,40.75884,-73.81477,Private room,70,3,88,2019-06-30,3.28,10,358 +18297633,"Charming, small and cozy",13540183,Ashley,Brooklyn,East Flatbush,40.63676,-73.95033,Private room,150,2,0,,,1,0 +18303895,BEAUTIFUL BROWNSTONE STUDIO IN SOUTH HARLEM,126592760,Felicia,Manhattan,Harlem,40.80514,-73.95115,Entire home/apt,125,2,98,2019-07-02,3.67,1,247 +18305649,Beautiful 1 bedroom Apartment in Midtown East,95994558,Sheena,Manhattan,Midtown,40.75242,-73.97112,Private room,200,3,0,,,1,0 +18305741,Cozy Room Minutes To Manhattan. #2,72603148,Faye,Staten Island,Stapleton,40.63464,-74.07842,Private room,55,1,13,2019-03-20,0.48,3,362 +18306436,Biggest and Brightest in Brooklyn,33646389,Sally,Brooklyn,Greenpoint,40.73034,-73.9527,Private room,69,10,6,2018-09-02,0.23,2,156 +18306444,Lively SoHo/Quiet St/2 blocks Subway/Fast WiFi,114548258,Only One,Manhattan,SoHo,40.72615,-74.00097,Entire home/apt,215,1,83,2019-06-25,3.19,2,214 +18306713,Sunny Spacious King Size Bed,67986867,Tiago,Brooklyn,Bushwick,40.69449,-73.92629,Entire home/apt,235,3,4,2017-10-23,0.18,1,0 +18307376,Sunset Park Gem SLR,26634538,Joe,Brooklyn,Borough Park,40.64275,-74.00183,Private room,42,2,7,2018-04-02,0.26,1,0 +18308486,Gorgeous 2BR Private Entire Floor Buschwick,126632094,Faith,Brooklyn,Bedford-Stuyvesant,40.69531,-73.93276,Private room,180,2,31,2019-06-08,1.16,2,131 +18309354,"Spacious Private Room In New York, Manhattan",55778523,Lydia,Manhattan,Morningside Heights,40.80456,-73.96521,Private room,125,1,4,2017-05-22,0.15,1,0 +18309683,"Bright, Beautiful Brooklyn Brownstone",126643339,Sarah,Brooklyn,Clinton Hill,40.68854,-73.96848,Entire home/apt,160,4,7,2017-05-22,0.26,1,0 +18309885,Luxurious Quiet Apartment in the Heart of Harlem,3341119,T,Manhattan,Harlem,40.82443,-73.94154,Private room,100,2,43,2019-06-01,1.65,1,120 +18310427,A huge bedroom in Harlem,63417081,Devon,Manhattan,Harlem,40.82348,-73.94581,Private room,39,30,5,2019-01-07,0.24,8,202 +18311851,Avenue K,126663154,Henrietta,Brooklyn,Canarsie,40.64519,-73.89054,Private room,71,2,2,2019-06-20,0.11,1,364 +18312034,Prestige Townhouse 5B 3.5bath East Central Park,37901086,Virginie,Manhattan,Upper East Side,40.76482,-73.96061,Entire home/apt,1475,1,1,2019-07-03,1,1,362 +18312568,Private room near Central Park,4111729,Mich,Manhattan,Upper East Side,40.78093,-73.95499,Private room,100,5,71,2019-06-27,2.67,1,66 +18312612,I LOVE NEW YORK in Theater District,63238467,Sam,Manhattan,Hell's Kitchen,40.76476,-73.98457,Entire home/apt,180,4,79,2019-06-26,3.03,1,211 +18313862,Gorgeous private bedroom in Park Slope,1507779,Lara,Brooklyn,South Slope,40.66405,-73.98512,Private room,79,14,9,2019-06-08,0.34,2,101 +18313864,"Large, Sunny, Cozy Room in the Heart of Bed-Stuy!",22591747,Femi & Toya,Brooklyn,Bedford-Stuyvesant,40.67922,-73.94937,Private room,60,4,39,2019-06-15,1.46,1,338 +18314102,ONE STOP TO TIME SQUARE BEAUTIFUL QUIET STUDIO,64964534,Natalya,Manhattan,Murray Hill,40.74769,-73.9784,Entire home/apt,160,1,141,2019-06-24,5.63,1,90 +18314397,Charming Room 4 blocks from Empire State Building,94648262,Martin & Christine,Manhattan,Kips Bay,40.74404,-73.97985,Private room,110,3,59,2019-06-23,2.92,1,51 +18314459,"Spacious, airy & sunny room in UWS, Manhattan!",72377141,Ben,Manhattan,Upper West Side,40.79871,-73.96801,Private room,193,6,3,2019-01-06,0.13,3,0 +18314930,Spacious room 3 blocks from M train,5641114,Oleg,Queens,Ridgewood,40.70442,-73.89602,Private room,50,2,29,2019-06-27,1.11,1,0 +18324607,Spacious Brooklyn 3BR perfect for families,17449165,Amanda,Brooklyn,Carroll Gardens,40.6838,-73.998,Entire home/apt,250,2,7,2017-12-31,0.27,1,0 +18325063,Prvt entrance room! 1 stop to Mdtwn Manhattan.,20017962,John,Queens,Long Island City,40.74399,-73.95472,Private room,72,3,11,2019-05-30,0.42,1,341 +18326156,"Beautiful modern Brooklyn room, 20mins to city",42928837,Reuben,Brooklyn,Williamsburg,40.70733,-73.92996,Private room,50,4,6,2018-10-08,0.23,1,0 +18326238,Brooklyn State of Mind - The Artist Loft,2141311,Thomas,Brooklyn,Williamsburg,40.71937,-73.94556,Private room,35,2,0,,,2,0 +18327453,Quiet bedroom in sunny Park Slope Brooklyn apt,5140287,Leah,Brooklyn,Park Slope,40.67574,-73.98028,Private room,90,2,8,2018-05-06,0.32,1,0 +18327630,Gigantic 2 Bed/2 Bath Step to Columbus Circle&Park,125545452,Tasny,Manhattan,Hell's Kitchen,40.76597,-73.98379,Entire home/apt,325,5,84,2019-06-24,3.15,1,69 +18329309,"Private, sunny studio apartment in Queens",27670418,Alexisz Tamás,Queens,Ridgewood,40.70036,-73.90238,Entire home/apt,79,9,11,2018-10-17,0.48,1,3 +18329545,Private room in the middle of NYC! LES/Chinatown,106068562,Alice,Manhattan,Chinatown,40.71602,-73.99293,Private room,180,1,1,2017-09-04,0.04,1,0 +18329982,Gorgeous Studio in Greenpoint with City Views,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.9406,Entire home/apt,129,30,0,,,52,5 +18330221,Williamsburg Apartment,22089161,Monika,Brooklyn,Williamsburg,40.71871,-73.94499,Entire home/apt,125,1,0,,,1,0 +18330346,Entire private top floor 3 bedroom apartment,327033,Marc,Brooklyn,Bushwick,40.69408,-73.92307,Entire home/apt,160,3,7,2017-08-29,0.26,2,23 +18331097,Tidy room separate entrance plus paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.75637,-73.81576,Private room,100,2,63,2019-07-08,2.37,10,335 +18331925,"Huge, Sunny 2 Bedroom Apt. near Prospect Park",1390999,Sarah,Brooklyn,Kensington,40.64632,-73.98343,Entire home/apt,110,40,0,,,1,118 +18332922,Spacious Apt in the LES,3859814,Alexandria,Manhattan,Lower East Side,40.72166,-73.98893,Entire home/apt,278,5,53,2019-06-15,2.01,1,30 +18338709,Room in Upper East Side!,15303279,Jinny,Manhattan,East Harlem,40.78858,-73.94947,Private room,100,1,1,2017-05-07,0.04,1,0 +18338719,Greenwich Village 2 bedrooms apartement,25221153,Mélodie,Manhattan,West Village,40.73376,-74.00095,Entire home/apt,350,3,0,,,1,0 +18340320,Spacious Studio in Hamilton Heights,81671685,Lesley,Manhattan,Harlem,40.81906,-73.95654,Entire home/apt,200,1,4,2019-06-24,0.15,1,365 +18340498,Private bedroom and bathroom near Prospect Park,33723491,Suzzanne,Brooklyn,Flatbush,40.65274,-73.95848,Private room,39,2,7,2017-09-29,0.27,1,0 +18340599,Your cozy home away from home.,66064924,Griffith,Brooklyn,East New York,40.65372,-73.8828,Private room,99,2,50,2019-05-27,1.92,1,180 +18341576,Spacious Sunlit 1 BR Apartment in Heart of Harlem,4213096,Jeff,Manhattan,Harlem,40.80355,-73.94647,Entire home/apt,110,30,3,2019-05-09,0.12,1,249 +18342361,"Romantic Artist's Townhouse, 1 suite: 2 Bd, 1 Bath",126922318,Emily,Manhattan,Upper West Side,40.78975,-73.97154,Private room,250,3,78,2019-06-27,2.93,1,246 +18342727,Comfy and Quiet Private Room in Brooklyn,33870377,Muath,Brooklyn,Bushwick,40.69432,-73.92035,Private room,199,4,2,2017-05-07,0.07,1,179 +18347330,Sunny One-Bedroom Apartment in Brooklyn,36678842,Danny,Brooklyn,Crown Heights,40.66939,-73.95832,Entire home/apt,150,3,2,2018-01-02,0.08,1,0 +18347469,Home Away from Home in Central Harlem,126973731,Andy,Manhattan,Harlem,40.82439,-73.94014,Private room,55,1,4,2017-05-21,0.15,1,0 +18348443,Songwriter Santuary - room with private entrance,26091462,Tanya,Brooklyn,Bedford-Stuyvesant,40.69374,-73.94764,Private room,60,1,3,2017-05-24,0.11,2,0 +18348512,NYC Hells Kitchen 51St ミッドタウンウエストサイド,126984603,Val &Yuko,Manhattan,Hell's Kitchen,40.76534,-73.9894,Private room,65,5,31,2019-07-06,1.20,1,54 +18353019,Spacious Comfy Queen Sized Bed.,40972641,Christopher,Queens,Fresh Meadows,40.74295,-73.78962,Private room,45,1,8,2017-09-01,0.30,2,0 +18354443,Spacious colorful East Village 2BR,12144814,Kosuke,Manhattan,East Village,40.729,-73.98195,Entire home/apt,150,30,3,2019-01-02,0.13,1,0 +18354821,Quiet and cozy,832695,Gloria And Dmitrii,Queens,Astoria,40.7648,-73.92081,Private room,50,1,6,2018-10-30,0.23,1,0 +18355480,Williamsburg Plant Filled Sunny Apartment :D,16718650,Joseph,Brooklyn,Williamsburg,40.71099,-73.95825,Private room,250,1,0,,,1,0 +18356695,Spacious 2-Bedroom Apartment Near Central Park,5143286,Ewa,Manhattan,Morningside Heights,40.80897,-73.95651,Entire home/apt,120,14,5,2018-08-23,0.21,1,79 +18357504,Spacious Brownstone Apartment,5454042,Ian,Brooklyn,Bedford-Stuyvesant,40.68874,-73.95684,Private room,54,2,14,2017-11-06,0.52,1,0 +18357865,Great 1 BR in the heart of the upper west side,3404698,Tal,Manhattan,Upper West Side,40.78693,-73.97558,Entire home/apt,150,30,1,2017-04-30,0.04,1,188 +18357947,"Cozy, private room in Williamsburg, Brooklyn!",8541180,Katie,Brooklyn,Williamsburg,40.70771,-73.95324,Private room,100,1,60,2019-06-19,2.25,1,78 +18358279,Luxury 2 Bedroom Apartment!!,44852596,Luna,Manhattan,Financial District,40.70468,-74.00722,Entire home/apt,130,3,19,2019-07-01,0.72,1,244 +18358343,Private room in the perfect location,127080012,Thor,Manhattan,Nolita,40.72477,-73.99534,Private room,95,4,25,2018-04-30,0.95,1,38 +18358363,Cozy Large Private Master bedroom,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68017,-73.91379,Private room,36,30,15,2018-10-31,0.61,4,0 +18358437,"Clean, Modern Duplex Upper East Side with Patio",41869754,Yosef,Manhattan,Upper East Side,40.7839,-73.94823,Private room,115,2,36,2019-06-24,1.38,1,3 +18358470,Spacious 2 bedrooms Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72564,-73.93989,Entire home/apt,199,30,3,2018-10-31,0.28,52,310 +18358606,Gorgeous Renovated 1BR - close to Central Park,122877644,Kate,Manhattan,East Harlem,40.79126,-73.94663,Entire home/apt,195,2,87,2019-06-20,3.29,1,213 +18358621,"LUXURY Times Sq 2bed, with King,Queen & Full",3169815,Joe,Manhattan,Hell's Kitchen,40.76438,-73.9886,Entire home/apt,350,1,96,2019-07-06,3.63,1,253 +18358644,Cozy room in the heart of Bushwick,127082964,Christopher,Brooklyn,Bushwick,40.70426,-73.92489,Private room,72,3,12,2018-04-22,0.47,2,0 +18359115,LOVELY APARTMENT IN BEST LOCATION !,43887030,Anastasia,Manhattan,Upper East Side,40.76765,-73.95507,Entire home/apt,145,10,4,2019-04-19,0.16,1,0 +18359426,Lovely room with a view.,82562435,Josephine,Queens,Arverne,40.58938,-73.79447,Private room,48,1,62,2019-04-12,2.35,2,3 +18359593,Private and Comfy Room | Super Close to NYC!,127092689,Heath,Brooklyn,Bedford-Stuyvesant,40.6924,-73.94825,Private room,35,20,0,,,1,0 +18360149,Welcome to brooklyn,34918098,ChiChi,Brooklyn,Prospect-Lefferts Gardens,40.66009,-73.94009,Private room,42,2,0,,,1,0 +18361045,Artist Open Concept Loft,11553221,Alex,Brooklyn,Downtown Brooklyn,40.69481,-73.98422,Entire home/apt,225,1,15,2019-05-27,0.59,1,87 +18361390,Huge 1-bedroom with lofts near Central Park,127113351,Maria,Manhattan,Upper West Side,40.77827,-73.97673,Entire home/apt,149,7,5,2018-09-01,0.21,1,10 +18362628,Sunny Lower East Side bedroom,22866591,Caroline,Manhattan,Lower East Side,40.7183,-73.98639,Private room,75,2,4,2017-07-19,0.16,1,0 +18366609,"COZY, QUIET BEDROOM IN INWOOD, ""UPSTATE MANHATTAN""",127164761,Christopher,Manhattan,Inwood,40.86689,-73.92353,Private room,46,1,14,2018-07-02,0.55,1,0 +18366942,Free transfer from JFK airport,127080164,Tauqir,Queens,Howard Beach,40.65411,-73.83191,Private room,100,2,0,,,1,0 +18369169,"☆☆Hell's Kitchen, Central Park, Times Square☆☆",32044305,Mark,Manhattan,Hell's Kitchen,40.76217,-73.98765,Private room,130,4,91,2019-07-01,3.42,1,254 +18369887,Sunny & Spacious 1 Bedroom in Central Harlem!,2946771,Kara,Manhattan,East Harlem,40.8136,-73.93606,Entire home/apt,150,2,39,2019-05-27,1.48,1,0 +18370699,Spacious Greenpoint Apt near McGolrick Park!,36883838,Monika,Brooklyn,Greenpoint,40.72211,-73.94215,Entire home/apt,145,2,20,2019-06-26,0.76,1,98 +18370979,"Comfy, Awesome, Large Apt. in Brownstone",127196839,Nicky,Brooklyn,Clinton Hill,40.68805,-73.96114,Private room,95,2,45,2019-06-15,2.11,1,43 +18371333,Beautiful and Sunny Private Room in Brooklyn,7496038,Sebastian,Brooklyn,Bushwick,40.69306,-73.91918,Private room,49,2,24,2019-06-09,0.91,1,0 +18372104,"Luxury 2 BR Apartment, Columbus Circle",127218433,Caroline,Manhattan,Upper West Side,40.76989,-73.98229,Entire home/apt,220,30,4,2018-12-15,0.16,1,124 +18373279,Airy and Bright Sanctuary in Brooklyn!,8221838,Jooin,Brooklyn,Fort Greene,40.68812,-73.97545,Entire home/apt,200,30,1,2018-09-02,0.10,1,188 +18373404,Little Haven in Brooklyn Redeux,14588919,Allison,Brooklyn,Bedford-Stuyvesant,40.68017,-73.95182,Entire home/apt,150,1,131,2019-06-22,4.96,1,185 +18374250,"Cozy, private bdrm",66961768,Duanne,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93747,Private room,30,1,9,2017-09-19,0.34,1,0 +18374647,Maison Macon,88734376,Lena,Brooklyn,Bedford-Stuyvesant,40.68064,-73.9463,Private room,187,2,31,2019-06-23,2.69,1,35 +18375021,Huge private room in historic brownstone,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68408,-73.92498,Private room,85,28,9,2019-04-30,0.35,4,189 +18375246,Private Room in Clinton Hill,127250455,Laura,Brooklyn,Bedford-Stuyvesant,40.69234,-73.95993,Private room,54,2,8,2018-07-29,0.30,1,0 +18375685,"Beautiful, Two bedroom apartment Brooklyn P.L.G",76225580,Gary,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95144,Entire home/apt,175,2,104,2019-07-07,4.00,2,168 +18375815,Spacious private room close St. Barnabas Hospital,127249880,Emma,Bronx,Tremont,40.84647,-73.89299,Private room,38,2,33,2019-05-28,1.27,2,327 +18377036,"Bright, Beautiful Double Room",13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85487,-73.91391,Private room,53,3,55,2019-05-27,2.15,4,80 +18381623,Luminous Zen Garden Retreat,23036053,Terrence,Manhattan,East Village,40.72908,-73.9797,Private room,145,4,64,2019-06-29,2.46,1,136 +18385188,"Brooklyn Modern: Sunny 2BR, Boutique Style",127341412,Melissa,Brooklyn,Gowanus,40.6701,-73.98917,Entire home/apt,173,2,100,2019-07-07,3.88,1,18 +18386105,"A Special Place for You! Bed-Stuy, Brooklyn",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68435,-73.94135,Entire home/apt,150,3,40,2019-07-02,1.60,3,170 +18386307,"Sunny, Chelsea Studio has queen bed and sleep loft",7245581,Michael,Manhattan,Chelsea,40.74988,-73.99553,Entire home/apt,89,110,6,2019-05-25,0.26,19,332 +18386494,Sunny 2+ bd. Great for groups. Very kid friendly.,17930,Seryn,Brooklyn,Windsor Terrace,40.65319,-73.97621,Entire home/apt,200,2,100,2019-06-24,3.78,2,244 +18386915,"Sunny Studio in Park Slope, Brooklyn",32706119,Shanee,Brooklyn,Park Slope,40.66989,-73.98757,Entire home/apt,120,2,86,2019-06-10,3.24,2,185 +18387366,Bright & Airy Private Room near L/JMZ trains,88314328,Leah,Brooklyn,Bushwick,40.70341,-73.9292,Private room,54,2,3,2017-10-29,0.14,1,0 +18387744,Bright-Friendly-Homey apartment,47550622,Maryam,Brooklyn,Crown Heights,40.66862,-73.94664,Private room,50,1,6,2017-08-26,0.23,1,0 +18387798,COZY + STYLISH ROOM FOR YOU IN NYC! (A),126929216,Mel,Brooklyn,Crown Heights,40.67102,-73.93999,Private room,45,14,10,2019-06-07,0.42,3,322 +18388152,EXTRA LARGE PRIVATE BEDROOM! TRIPLE SIZE CLOSET(B),126929216,Mel,Brooklyn,Crown Heights,40.67051,-73.94014,Private room,59,15,3,2019-05-31,0.16,3,311 +18388706,Nice 2 bedroom in Upper West / Central Park.,18767676,Mike,Manhattan,Upper West Side,40.79864,-73.96364,Entire home/apt,149,3,0,,,1,0 +18389694,2 bedroom LES,43107610,Kate,Manhattan,Lower East Side,40.71933,-73.99,Entire home/apt,142,4,2,2017-04-30,0.07,1,187 +18390143,"Huge Room, Top Floor Of Brownestone",91167002,Alyson,Manhattan,Hell's Kitchen,40.76537,-73.98855,Private room,120,2,32,2019-06-13,1.25,3,90 +18390316,Private bedroom in Luxury home Bushwick,126632094,Faith,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9341,Private room,70,2,13,2019-04-23,0.49,2,0 +18390907,"Sun-soaked, charming Brooklyn home",3695964,Elie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95582,Entire home/apt,200,1,37,2019-06-14,1.53,1,5 +18391905,"Huge, One of A Kind, Artsy Loft in Greenpoint",501456,Aaron,Brooklyn,Greenpoint,40.73312,-73.95754,Entire home/apt,299,2,76,2019-06-23,3.11,4,0 +18392140,Sun-lit bedroom in Crown Heights,2828476,Masha,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.94885,Entire home/apt,80,14,1,2017-07-01,0.04,1,0 +18392309,Gem off of Prospect Park,7426741,Johanna,Brooklyn,Windsor Terrace,40.65044,-73.97296,Private room,60,2,3,2017-07-02,0.12,1,0 +18393354,Midtown Sanctuary,2845,Jennifer,Manhattan,Midtown,40.75358,-73.9919,Shared room,99,1,1,2018-07-18,0.08,2,365 +18393650,Spacious 1 Br - Perfect for Share - Columbia Uni,18784994,Raymond Yueran,Manhattan,Upper West Side,40.80333,-73.96693,Private room,60,14,0,,,1,0 +18393805,Private Room 15 Min to Manhattan (Lower East Side),127412674,Charles,Brooklyn,Bedford-Stuyvesant,40.69944,-73.94527,Private room,46,2,71,2019-06-18,2.69,2,309 +18394653,Brooklyn Paradise,44140036,Ricardo,Brooklyn,East Flatbush,40.65062,-73.93487,Private room,60,2,20,2019-04-01,0.81,2,190 +18396197,Two Bed Brownstone in the Heart of Brooklyn!,23722638,Laura,Brooklyn,Carroll Gardens,40.6845,-73.99024,Entire home/apt,175,4,4,2017-12-26,0.16,2,0 +18396281,Charming Sunny Oasis - 1 Block From Express Train!,228252,Kathleen,Manhattan,Harlem,40.82452,-73.94512,Private room,75,14,7,2018-09-30,0.29,2,310 +18397006,Single room,127449170,Lehui,Queens,Flushing,40.75562,-73.80813,Private room,180,1,0,,,1,0 +18397124,WaHi Overlook,127450854,Cesar,Manhattan,Washington Heights,40.84662,-73.93436,Private room,70,1,23,2019-04-28,0.87,1,138 +18399865,Best East Village location St Marks 2 bedroom apt.,2552603,Derek,Manhattan,East Village,40.72681,-73.98401,Entire home/apt,190,1,105,2019-06-13,3.97,1,306 +18402330,Airy and Bright Room with Balcony,33434914,Juan,Bronx,Parkchester,40.82942,-73.87564,Private room,60,2,89,2019-07-07,3.36,4,30 +18402568,A Modern and bright room,33434914,Juan,Bronx,Parkchester,40.83081,-73.87587,Private room,45,2,74,2019-07-02,2.89,4,34 +18404373,"Bright kitchen studio--events, classes, photos",10593759,Ronna,Brooklyn,Sunset Park,40.65107,-74.01096,Entire home/apt,450,1,5,2018-12-24,0.27,1,179 +18404432,2 bedroom apartment & private backyard,104170260,Lauren,Queens,Astoria,40.76736,-73.91685,Entire home/apt,99,4,1,2017-07-09,0.04,1,0 +18404936,Location! Location!,63417081,Devon,Manhattan,Harlem,40.82359,-73.94433,Private room,37,30,4,2018-07-15,0.18,8,291 +18406606,The Albany Residence,35387196,Kizzie,Brooklyn,Crown Heights,40.67139,-73.93931,Entire home/apt,100,7,1,2018-08-16,0.09,4,78 +18407251,Entire MASSIVE apt. for 4 ppl 1 Block from Subway,10335937,Eva,Queens,Forest Hills,40.72571,-73.84944,Entire home/apt,197,3,24,2018-04-06,0.90,1,0 +18407764,Sunlit cozy room in the heart of Williamsburg!,31681589,Shanise,Brooklyn,Williamsburg,40.70882,-73.95445,Private room,90,2,4,2017-05-08,0.15,1,0 +18408236,All New! Vanderbilt Suite,124287074,Chaya,Brooklyn,Prospect Heights,40.6809,-73.96726,Entire home/apt,188,2,59,2019-06-14,2.25,1,28 +18409148,Greenwich Village Apartment,20242206,Andrei,Manhattan,Greenwich Village,40.72827,-74.00083,Entire home/apt,110,10,2,2017-05-07,0.08,1,0 +18410069,Sunny Brooklyn Limestone,7934771,Antoinette,Brooklyn,Flatbush,40.64246,-73.9538,Entire home/apt,175,7,3,2019-02-18,0.47,1,0 +18410445,Large Room and Apartment in Upper Manhattan,63408461,Diane,Manhattan,Washington Heights,40.84745,-73.94116,Private room,100,2,102,2019-06-17,3.84,1,213 +18411056,Wonderful living in 3B/3B Harlem Brownstone Duplex,127567480,Paulina,Manhattan,Harlem,40.83099,-73.9444,Entire home/apt,295,1,52,2019-07-07,5.05,1,256 +18411446,NEW! Luxury studio WITH SPA shower in Flushing!!!,10366837,Jia,Queens,Flushing,40.75763,-73.83157,Entire home/apt,99,2,88,2019-06-23,3.38,3,120 +18411925,Comfy Private Room Near Central Park in UWS,38886949,Nishant,Manhattan,Upper West Side,40.79872,-73.96173,Private room,70,1,1,2017-05-04,0.04,2,0 +18412771,Great room for students and tourists,127583166,Maite,Manhattan,Washington Heights,40.8398,-73.94384,Private room,55,21,8,2018-11-18,0.52,2,38 +18414310,Cozy Room Easy Access To Manhattan - Room #3,72603148,Faye,Staten Island,Stapleton,40.6348,-74.07734,Private room,65,1,37,2019-04-15,1.41,3,356 +18415505,Stylish Apartment with beautiful skyline views.,11191325,Daniel,Manhattan,Harlem,40.81253,-73.93952,Entire home/apt,99,5,35,2019-04-30,1.32,1,1 +18415952,Convenient Downtown Apartment in LES/Chinatown,39619320,Grisha,Manhattan,Chinatown,40.71495,-73.99056,Private room,60,1,6,2017-06-29,0.23,1,0 +18423707,One bedroom in Kips Bay / Murray Hill area,15786933,Eddie,Manhattan,Midtown,40.74559,-73.98216,Entire home/apt,259,7,0,,,1,0 +18423938,"West 74th Street, Svcd Studio Apartment",22541573,Ken,Manhattan,Upper West Side,40.78081,-73.98081,Entire home/apt,159,30,0,,,87,342 +18424903,Luxury Townhouse,2948325,Ray,Manhattan,East Harlem,40.79737,-73.93185,Entire home/apt,300,3,53,2019-06-30,2.03,1,104 +18424928,Beautiful 2 bedroom apartment in Park Slope!,1507779,Lara,Brooklyn,South Slope,40.66399,-73.98301,Entire home/apt,210,3,5,2019-03-08,0.21,2,3 +18425106,"Washington Street, Lux Svcd Studio in West Village",22541573,Ken,Manhattan,SoHo,40.72948,-74.00961,Entire home/apt,195,30,1,2019-03-10,0.25,87,365 +18425988,Cozy Studio in Gramercy,92634775,Joe,Manhattan,Gramercy,40.73433,-73.98216,Entire home/apt,96,1,3,2017-05-16,0.11,1,0 +18427825,Cozy Brooklyn Affordable In-Law,127539184,Yuna,Brooklyn,East Flatbush,40.64896,-73.94317,Entire home/apt,80,3,38,2019-06-23,1.45,2,78 +18429093,Cozy one bed with balcony and pool,113805886,Yaacov,Manhattan,Upper East Side,40.77822,-73.95136,Entire home/apt,160,31,7,2019-04-10,0.29,33,330 +18429435,Modern & Industrial LIC Accommodations,127560222,Christina,Queens,Long Island City,40.75538,-73.93455,Private room,199,1,6,2019-05-24,0.26,2,53 +18430588,A Quiet stay in Harlem,63417081,Devon,Manhattan,Harlem,40.8236,-73.94412,Private room,35,30,7,2019-05-12,0.28,8,78 +18430686,Private bedroom in an amazingly located apartment.,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.7627,-73.98837,Private room,80,3,42,2019-05-30,1.58,3,172 +18431566,Summer Sublet,38721832,Marissa,Manhattan,East Harlem,40.78908,-73.94216,Private room,35,1,0,,,1,0 +18432636,Great Apartment in the Heart of East Williamsburg,107778395,Alexander,Brooklyn,Williamsburg,40.71188,-73.94387,Private room,55,5,9,2018-12-04,0.34,1,20 +18432894,Casa Estrella,6455775,Monica,Brooklyn,Bushwick,40.70679,-73.92295,Entire home/apt,207,2,78,2019-06-02,3.06,1,231 +18433038,Private Cozy Room In Astoria,127762325,Zee,Queens,Ditmars Steinway,40.7742,-73.90808,Private room,59,1,77,2019-06-06,2.97,1,198 +18433781,"Large, Sunny Private Room in New Renovated House",54548000,Danny,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92524,Private room,75,1,70,2019-06-21,2.79,2,220 +18434309,private room LONG Term Welcome Safe neighborhood,25473311,Michael,Queens,Sunnyside,40.73702,-73.92657,Private room,49,7,4,2018-04-29,0.19,2,90 +18439203,Brooklyn Beauty!!,127814176,Erica,Brooklyn,East New York,40.66556,-73.88323,Entire home/apt,115,2,118,2019-07-01,4.47,1,121 +18440017,Uptown Private Bedroom w/ Pvt Entrance & Full Bath,75973505,Jeanette,Manhattan,Washington Heights,40.86027,-73.9264,Private room,40,2,3,2019-01-02,0.42,1,276 +18442048,Clean-N-Comfy Bronx Pad,25385574,Che,Bronx,Allerton,40.86718,-73.86235,Private room,33,1,0,,,1,179 +18442196,Room private house. Parking and beach 15 min.,121419684,Gregory,Brooklyn,Gravesend,40.58654,-73.98858,Private room,199,3,0,,,1,363 +18442569,"Artsy, bright and cozy 1 BR. 20 min to city.",6198836,Dima,Brooklyn,Bushwick,40.70159,-73.92115,Entire home/apt,93,30,1,2017-06-24,0.04,1,45 +18443902,Delightfully appointed studio in the West Village,11586111,Christina,Manhattan,West Village,40.73075,-74.00222,Entire home/apt,159,4,6,2017-08-12,0.23,1,0 +18444575,"Bright, open 1BD in the heart of Nolita",5945526,Mimi,Manhattan,Little Italy,40.72002,-73.99629,Entire home/apt,150,3,12,2019-01-01,0.47,1,0 +18445522,MANHATTAN STYLISH WALL ST STUDIO APT. DISCOUNTED,14664356,Dan,Manhattan,Financial District,40.7049,-74.00617,Entire home/apt,86,70,5,2019-06-01,0.22,1,203 +18447712,Artist Loft Space,127886968,Steve,Brooklyn,Bushwick,40.70351,-73.93092,Private room,75,1,0,,,1,0 +18448376,Clean and cozy private room for your stay in NYC,11308807,Mathew,Manhattan,Harlem,40.82389,-73.95266,Private room,57,2,0,,,2,0 +18448446,Super Spacious 2 bedroom apt in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76442,-73.99458,Entire home/apt,200,30,1,2018-04-30,0.07,31,330 +18448516,Spacious house close to yankee stadium.,127895318,Emmanuel,Bronx,Mount Hope,40.84992,-73.90346,Private room,50,1,6,2018-05-05,0.23,1,0 +18448556,Pretty UES Private Room in Railroad Style Apt,115529602,Patrick,Manhattan,Upper East Side,40.77409,-73.94995,Private room,120,2,9,2018-05-07,0.35,1,0 +18449942,The Space,127911754,Christopher,Manhattan,Inwood,40.8637,-73.92826,Entire home/apt,100,2,0,,,1,0 +18449954,Delightful Brooklyn Studio,127910599,Joy,Brooklyn,Crown Heights,40.67757,-73.94913,Entire home/apt,90,31,62,2019-06-20,2.38,1,269 +18450009,"Welcoming, Plant-Filled Master BR in Clinton Hill",36457711,Hannah,Brooklyn,Clinton Hill,40.6913,-73.96099,Private room,50,2,3,2018-05-13,0.12,2,0 +18450143,Entire Pre-War Apartment 1 Minute From Train,127721863,Machel,Brooklyn,Flatbush,40.62934,-73.96343,Entire home/apt,100,3,62,2019-05-19,2.37,1,108 +18450490,"Clean, homey, and bright room in Wash. Heights",127917641,Kasey,Manhattan,Washington Heights,40.84257,-73.93805,Private room,35,30,1,2017-07-31,0.04,1,0 +18455236,Modern 1 Bedroom In the Middle of Everything!,3470710,Michael,Brooklyn,Williamsburg,40.70294,-73.94152,Entire home/apt,94,2,29,2019-06-23,1.10,1,1 +18455830,Charming 2 bedroom apartment in Brooklyn,60160069,Tatiana,Brooklyn,Bushwick,40.69063,-73.91224,Entire home/apt,190,3,42,2019-05-20,1.62,1,303 +18456751,Spacious Sun-Drenched bedroom in the East Village!,70334862,Nadja,Manhattan,East Village,40.72598,-73.98934,Private room,86,3,1,2017-10-08,0.05,1,0 +18456975,Fully furnished Studio Apt near Columbus Circle,30283594,Kara,Manhattan,Midtown,40.76547,-73.98216,Entire home/apt,199,30,0,,,121,189 +18457273,"Clean and Cozy Private Room in Inwood, Manhattan",17420574,Kayleigh,Manhattan,Inwood,40.8677,-73.9225,Private room,55,2,4,2017-05-29,0.15,1,0 +18458323,Sun Drenched Gramercy/East Village!,68274298,Chelsea,Manhattan,Gramercy,40.73401,-73.9814,Entire home/apt,226,2,15,2017-12-18,0.58,1,0 +18459547,Dumbo Penthouse Loft with Outdoor Spaces & Views,1349266,Adam,Brooklyn,Vinegar Hill,40.70369,-73.98306,Entire home/apt,186,30,1,2019-06-11,1,1,1 +18459948,Cozy East Village Studio,127998381,Mia,Manhattan,East Village,40.72724,-73.98291,Entire home/apt,170,7,9,2018-08-21,0.35,1,0 +18460119,Private Room in Homey Roosevelt Island Apartment,127999994,Kate,Manhattan,Roosevelt Island,40.76208,-73.94954,Private room,100,2,85,2019-06-30,3.28,1,211 +18460679,"Bright, modern room with a view of NYC skyline",14666091,Joonas,Brooklyn,Bushwick,40.70028,-73.92439,Private room,90,5,16,2019-06-24,0.61,1,37 +18460756,"Bright, private room in Bushwick w/ AC",128004958,Virginia,Brooklyn,Bushwick,40.68717,-73.91708,Private room,50,1,100,2019-06-23,4.03,1,2 +18461296,Great Location TimeSquare studio APT,116848523,Brian,Manhattan,Hell's Kitchen,40.76341,-73.99051,Entire home/apt,119,1,12,2017-07-01,0.45,1,0 +18461891,"Bright, comfortable 1B studio near everything!",916092,Connie Mae,Queens,Ditmars Steinway,40.77414,-73.91625,Entire home/apt,110,6,0,,,1,0 +18462291,Comfortable One bedroom Harlem Aprt,57900598,Lyvan Esteban,Manhattan,Harlem,40.81752,-73.94162,Entire home/apt,80,2,40,2019-06-30,1.51,1,0 +18462681,Private room walking distance from Prospect park,30555297,Jolanta,Brooklyn,Flatbush,40.65306,-73.95507,Private room,64,7,17,2018-11-05,0.72,1,0 +18462718,Neat Cozy room attached by PRIVATE FULL BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75556,-73.81205,Private room,47,2,79,2019-06-18,3.15,10,346 +18463609,Spring in Bed Stuy,31315421,Angela,Brooklyn,Bedford-Stuyvesant,40.68257,-73.9279,Entire home/apt,100,2,77,2019-06-21,2.96,1,277 +18470545,Comfy & Cozy In Brooklyn,38120363,Brian,Brooklyn,Crown Heights,40.67238,-73.91488,Private room,49,2,39,2019-05-03,1.53,2,84 +18471232,Brooklyn Home away from Home,4894044,Azzie,Brooklyn,Crown Heights,40.66515,-73.95186,Private room,100,1,28,2019-06-24,1.92,1,88 +18471276,Cozy bedroom off J Train,122294799,Jenny,Brooklyn,Bedford-Stuyvesant,40.69178,-73.92838,Private room,47,1,4,2017-06-09,0.15,1,0 +18471556,Beautiful Artist Loft in South Williamsburg,82665319,Paul,Brooklyn,Williamsburg,40.7126,-73.96347,Entire home/apt,150,3,4,2017-09-25,0.15,1,0 +18471815,Cozy Corner,42951693,Kevin,Manhattan,Morningside Heights,40.8151,-73.96091,Private room,43,2,0,,,1,0 +18472494,The Grand Macon,60077252,Sumaiya,Brooklyn,Bedford-Stuyvesant,40.68248,-73.93317,Entire home/apt,165,4,67,2019-06-22,2.66,1,74 +18472524,SUNNY PLACE in Sunnyside,78272395,Vadim,Queens,Sunnyside,40.73674,-73.9136,Private room,70,3,8,2017-06-18,0.30,1,0 +18473439,Remodeled 20min train to enter city 5min to subway,20438455,Jason,Brooklyn,Borough Park,40.63952,-73.98205,Private room,49,2,126,2019-07-05,4.82,2,45 +18475187,BEST ROOF in East Village + Gorgeous Modern Apt,639926,Loren,Manhattan,East Village,40.72603,-73.97717,Entire home/apt,199,3,10,2019-01-02,0.43,1,0 +18476474,Bright XL room in Hamilton Heights/Sugar Hill,98861076,Peter & Gabe,Manhattan,Harlem,40.82444,-73.94525,Private room,90,2,136,2019-07-02,5.13,1,204 +18476851,Beautiful Private Room Near Manhattan & JFK,106430338,Alana,Brooklyn,Bensonhurst,40.61277,-73.99695,Private room,60,3,43,2019-06-13,1.65,2,173 +18477009,The Justice Tower 1,38068387,Xolie,Brooklyn,Clinton Hill,40.6929,-73.96657,Private room,125,2,5,2017-08-28,0.19,4,350 +18477226,The Justice Tower 2,38068387,Xolie,Brooklyn,Clinton Hill,40.69455,-73.96763,Private room,100,2,11,2017-10-15,0.43,4,347 +18477519,Cozy one bedroom apartment in the Lower East Side,9667737,Hadas,Manhattan,Lower East Side,40.71862,-73.9836,Entire home/apt,80,14,1,2018-03-01,0.06,1,0 +18481196,Studio in Chelsea,1750685,Shayan,Manhattan,Chelsea,40.74569,-73.99687,Entire home/apt,200,1,12,2019-03-06,0.60,1,8 +18484597,Private and quiet room near Columbia University,8594019,Jose Vicente,Manhattan,Morningside Heights,40.81651,-73.95924,Private room,50,5,1,2017-05-23,0.04,2,0 +18485393,Enormous studio in East Harlem,128244964,Camille,Manhattan,East Harlem,40.79921,-73.9387,Entire home/apt,185,1,0,,,1,0 +18485487,"Sunny, Spacious, Private Room Close to Train!",3083244,Melody,Manhattan,Washington Heights,40.83716,-73.94048,Private room,37,7,1,2017-05-25,0.04,1,0 +18485922,Large & Cozy One-Bedroom Apartment in Queens,12700569,Mikanny,Queens,Jackson Heights,40.75292,-73.88129,Entire home/apt,135,6,2,2019-01-02,0.11,1,195 +18486698,Conveniently located private room in Brooklyn,81712146,Emanuele,Brooklyn,Bushwick,40.70113,-73.91385,Private room,50,1,9,2017-07-03,0.34,1,0 +18486868,Sunny 1 bedroom in spacious 2 bedroom apt.,13929469,Jessica,Brooklyn,Crown Heights,40.66364,-73.95725,Private room,60,30,21,2019-05-08,0.81,1,1 +18487817,Spacious private room in a 3br in Bushwick,17381128,Arielle,Brooklyn,Bushwick,40.68644,-73.91064,Private room,40,7,0,,,1,0 +18488077,Simple bright room for 1-2 people.,1540270,Ava,Brooklyn,Bushwick,40.69983,-73.91625,Private room,40,3,7,2017-06-01,0.26,1,12 +18488335,Sunny Duplex 2 bdr apt in the heart of Harlem,12293403,Joffrey,Manhattan,Harlem,40.8125,-73.94151,Entire home/apt,85,3,35,2019-06-23,1.36,2,40 +18488833,Sunny Parlor Apt in Flatbush Townhouse (furnished),10285950,Christina,Brooklyn,Flatbush,40.64493,-73.95488,Entire home/apt,85,6,14,2019-03-24,0.53,3,339 +18489366,Glamorous one bedroom apartment in Brooklyn,4775716,Foster,Brooklyn,Prospect Heights,40.67696,-73.96669,Entire home/apt,165,2,21,2019-06-29,3.73,1,146 +18489843,Heart of Greenpoint,4193618,Gustavo,Brooklyn,Greenpoint,40.72995,-73.95498,Entire home/apt,200,15,3,2017-09-03,0.12,1,342 +18490141,IT'S SIMPLY CONVENIENT!,97001292,Maria,Queens,Jamaica,40.69085,-73.79916,Entire home/apt,10,1,43,2019-06-12,1.68,1,252 +18491689,Piece of home in the East Village,128307950,Nigel,Manhattan,East Village,40.72588,-73.98827,Entire home/apt,134,2,0,,,1,0 +18493375,Shared flat in Bushwick. Bright & close to train.,36012265,Ada,Brooklyn,Williamsburg,40.70506,-73.93122,Private room,60,1,8,2019-01-01,0.36,7,31 +18496255,Beautiful Park-view Home in Flushing NYC,23234988,Ann,Queens,Flushing,40.74888,-73.8066,Entire home/apt,400,1,8,2019-03-29,0.34,6,255 +18496331,Lofty Living: Private Room,21680683,Jenny,Brooklyn,Williamsburg,40.7199,-73.95828,Private room,124,1,5,2019-05-11,0.20,2,111 +18496902,Lovely Clinton Hill Home Away From Home,4350083,Valéry Blake,Brooklyn,Clinton Hill,40.68367,-73.95982,Private room,75,2,1,2017-05-08,0.04,1,0 +18498466,Sunny Duplex Oasis: 2 Bath+Roof—Williamsburg Loft,510745,Justin,Brooklyn,Williamsburg,40.71555,-73.94842,Entire home/apt,106,2,20,2019-06-09,0.76,2,0 +18499050,Sunny Garden Apt in Historic Park Slope Brownstone,351465,Dasha,Brooklyn,Park Slope,40.67855,-73.97583,Entire home/apt,190,4,60,2019-06-26,2.29,1,155 +18499074,Cozy spacious rooms with natural sunlight,127714840,Guy,Brooklyn,Bedford-Stuyvesant,40.68144,-73.93429,Private room,80,5,11,2019-06-30,0.90,1,340 +18500556,Fully renovated beautifully furnished two bedroom,128385204,Ronen,Brooklyn,Sheepshead Bay,40.59339,-73.94296,Private room,199,1,0,,,1,0 +18500972,Spacious 1 BR/1 Bath in Ridgewood,30157754,Jeanette,Queens,Ridgewood,40.6991,-73.89796,Entire home/apt,60,7,0,,,1,0 +18502246,Private Room in Sunny Beautiful Kosher Apartment,106272021,Esther,Brooklyn,East Flatbush,40.66182,-73.93748,Private room,50,2,21,2019-05-19,0.83,3,31 +18503701,Oriental Room in Upper Manhattan near Central Park,128413939,Alfred And Lau,Manhattan,Harlem,40.80584,-73.95272,Private room,78,3,88,2019-06-22,3.36,1,189 +18503779,Spacious Bohemian Duplex 1BR E Wburg Yard Roof,128414475,Nitya,Brooklyn,Williamsburg,40.70728,-73.92989,Private room,79,1,11,2017-08-18,0.42,3,0 +18503789,Private room in a privately own 3 story brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.6911,-73.93691,Private room,75,4,8,2019-03-01,0.32,3,0 +18504151,Seaport Water Front Private Studio,128417181,Rachel,Manhattan,Financial District,40.70766,-74.00153,Private room,205,2,41,2019-06-22,1.56,1,308 +18504631,convenient location 1 min walk to bus station,5828830,Low,Queens,Jamaica,40.67365,-73.76502,Private room,50,7,11,2018-10-03,0.44,2,0 +18505453,Studio Apartment in UWS,90846964,Allison,Manhattan,Upper West Side,40.79264,-73.97481,Entire home/apt,99,1,7,2017-05-28,0.26,1,0 +18505594,"Cozy, Light-Filled Room in Brooklyn",31658624,Megan E,Brooklyn,Crown Heights,40.66998,-73.9396,Private room,44,3,104,2019-03-29,4.00,2,0 +18506292,Ultra Lux Central Park/ Columbus Circle 2 bedroom,10605984,Gab,Manhattan,Upper West Side,40.76798,-73.98356,Entire home/apt,615,5,46,2019-06-18,1.78,1,282 +18506359,"Luxurious, Spacious Loft in Williamsburg",123953239,Philippe,Brooklyn,Williamsburg,40.71058,-73.96402,Entire home/apt,260,2,34,2019-06-14,1.31,2,330 +18506841,SPACIOUS MANHATTAN TOWNHOUSE 2BR Apt Sleeps 6,75279920,Anitra And Steven,Manhattan,Harlem,40.80833,-73.95101,Entire home/apt,275,3,89,2019-07-02,3.41,1,96 +18507671,Shared room at Lincoln Center,5440952,Ryan,Manhattan,Upper West Side,40.77244,-73.98204,Shared room,75,30,0,,,1,0 +18507990,Cozy One Bedroom in a Private House.Safe & Quite.,38604449,Pasang,Queens,Woodside,40.75558,-73.90534,Private room,45,2,30,2019-01-01,1.23,2,242 +18508209,Charming Bedroom,1635983,Sheila,Bronx,Schuylerville,40.83018,-73.83413,Private room,42,4,22,2019-06-25,1.18,3,147 +18508470,Adorable Cozy room with lots of light,33434914,Juan,Bronx,Parkchester,40.83117,-73.87566,Private room,43,2,71,2019-07-02,2.71,4,59 +18508959,Lovely 2 bdr apartment Williamsburg w private yard,18280205,Anthony,Brooklyn,Williamsburg,40.71463,-73.95501,Entire home/apt,200,2,32,2019-06-16,1.25,1,8 +18510340,Sunny Upper East Side Studio,112081278,Donny,Manhattan,Upper East Side,40.7802,-73.94652,Entire home/apt,79,4,5,2019-04-07,0.19,1,128 +18515889,Amazing room w/ private bathroom in hip Bushwick!,128517263,Alina,Brooklyn,Bushwick,40.69945,-73.93667,Private room,70,10,4,2019-01-02,0.17,3,44 +18516072,CENTRAL PARK WEST BRIGHT AND SPACIOUS,671187,Mike,Manhattan,Upper West Side,40.80034,-73.95941,Private room,139,31,0,,,1,83 +18516103,Cosy place in the West Village,128210772,Max,Manhattan,West Village,40.73096,-74.00406,Private room,100,4,1,2017-05-19,0.04,1,0 +18517584,Amazing 2-bdrm apartment in Greenpoint with garden,550009,Jenya,Brooklyn,Greenpoint,40.72215,-73.94203,Entire home/apt,137,4,0,,,1,0 +18518678,"Dreamy, sun-filled South Harlem 1 bed!",371654,Emily,Manhattan,Morningside Heights,40.80264,-73.95921,Private room,175,5,2,2017-06-10,0.08,1,0 +18519818,Sunny Bedroom in Prospect Park South,8821726,Marissa,Brooklyn,Flatbush,40.64909,-73.9648,Private room,40,2,12,2019-06-23,0.47,1,0 +18520516,Rare Designer-Decorated Loft in Prime Williamsburg,19355895,Nicolas,Brooklyn,Williamsburg,40.71625,-73.96407,Entire home/apt,300,4,11,2019-06-09,0.44,1,94 +18521860,Skylight Suite on Park Block,7797101,Athena,Brooklyn,Park Slope,40.66832,-73.97662,Entire home/apt,180,2,67,2019-07-02,2.88,1,289 +18522181,Beautiful in Brooklyn - Perfect for Groups!,106454216,Steven,Brooklyn,Bushwick,40.68827,-73.91815,Entire home/apt,180,2,54,2019-06-24,2.15,2,308 +18522547,Stunning And Stylishly Furnished Apt In Bushwick,128424841,Oscar,Brooklyn,Bushwick,40.69364,-73.91499,Entire home/apt,149,1,30,2019-06-17,1.13,1,284 +18523182,Cozy private room in a two-bedroom apartment,57060982,Carolina,Brooklyn,Bedford-Stuyvesant,40.68473,-73.94799,Private room,58,1,17,2019-05-26,0.65,1,0 +18523629,"Spacious, sunny, stylish FAMILY 3-bed, 2-bath apt!",3413858,Mia,Brooklyn,Flatbush,40.64217,-73.9593,Entire home/apt,125,20,0,,,1,4 +18523918,Peaceful sunny flat with backyard,49562545,Ella,Brooklyn,Williamsburg,40.70999,-73.94807,Entire home/apt,235,1,57,2019-06-27,7.04,2,228 +18525915,Cozy 2 Bed 1 Bath Amazing Location With Balcony,113805886,Yaacov,Manhattan,Upper East Side,40.77878,-73.94993,Entire home/apt,206,31,2,2019-03-03,0.35,33,327 +18526162,Gone with the Wind,75360607,Fernando,Queens,Sunnyside,40.74215,-73.92633,Entire home/apt,199,5,91,2019-06-21,3.48,2,57 +18527060,Cozy bedroom in Bed stuy!,39652113,Kaitlin,Brooklyn,Bedford-Stuyvesant,40.69227,-73.94159,Private room,40,28,6,2019-04-30,0.32,1,197 +18527437,Spacious One bedroom in Hip Bushwick Brooklyn,2266961,Florian,Queens,Ridgewood,40.69942,-73.90968,Entire home/apt,120,3,3,2018-01-03,0.12,1,0 +18535402,Cozy room in Bayside Queens,21250331,Clara,Queens,Bayside,40.75444,-73.76938,Private room,38,1,86,2019-06-20,4.19,3,346 +18540170,Great room across the street from the High bridge,128692351,Nahuel,Bronx,Highbridge,40.84289,-73.92688,Private room,100,2,107,2019-06-14,4.12,5,344 +18540856,Beautiful Brooklyn Brownstone,3063938,Chuck And Ellen,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94519,Entire home/apt,100,6,18,2018-07-07,0.69,1,0 +18541736,Charming Greenwich Village Oasis,4914270,Andrew,Manhattan,West Village,40.73107,-74.00163,Entire home/apt,175,4,1,2017-06-11,0.04,1,0 +18542490,Brownstone Parlor in Crown Heights,386263,Vineet,Brooklyn,Crown Heights,40.6764,-73.95497,Entire home/apt,171,3,61,2019-07-01,2.59,2,267 +18543045,Room in Bright and Spacious East Village Apartment,7130003,Ranita,Manhattan,East Village,40.72205,-73.98389,Private room,169,4,29,2019-06-07,1.14,2,220 +18543400,"Cozy, Quaint and Quiet Private Room",95341869,Carleen,Brooklyn,Bedford-Stuyvesant,40.69502,-73.93984,Private room,60,2,47,2019-05-19,1.81,1,77 +18544441,URBAN DWELLING,27266433,Anthony,Manhattan,Hell's Kitchen,40.75607,-73.99707,Private room,94,2,4,2017-05-24,0.15,1,0 +18546552,Large 1 Bedroom in South Brooklyn,12627412,Allen,Brooklyn,Sheepshead Bay,40.60402,-73.95257,Entire home/apt,88,4,1,2017-05-22,0.04,1,0 +18546787,Charming safe beautifully furnished,127501584,Aminata Mody,Bronx,Hunts Point,40.81406,-73.88997,Private room,65,4,36,2019-06-07,1.36,1,365 +18547076,Greenwich Village 1 Bedroom,3137526,Phil,Manhattan,Greenwich Village,40.72843,-73.99825,Entire home/apt,134,7,0,,,2,0 +18547663,NYC East village luxury apt featured in Timeout!,13008402,Afrodite,Manhattan,East Village,40.73158,-73.987,Entire home/apt,419,3,0,,,1,0 +18548112,Cozy and GREAT Stay in the West Village heart ❤️,12831071,A.J.,Manhattan,Greenwich Village,40.7331,-73.99923,Private room,90,5,69,2019-06-04,2.62,1,137 +18548561,"Sunny & Spacious 1BR w/Porch, W/D, Huge Kitchen",7445657,Parry,Brooklyn,Williamsburg,40.70565,-73.94791,Entire home/apt,140,3,7,2018-04-08,0.27,1,0 +18549136,Upper West Side - Huge 1 Bdrm in a Luxury Bldg,7810471,Britney,Manhattan,Upper West Side,40.77404,-73.99076,Entire home/apt,198,2,2,2017-06-11,0.08,1,0 +18549222,Private room in Astoria close to Manhattan,128768798,Ruth,Queens,Ditmars Steinway,40.77949,-73.91015,Private room,78,2,69,2019-07-01,2.65,1,166 +18550111,LORIMER L TRAIN 5 minutes to the city,118378908,Jose,Brooklyn,Williamsburg,40.71493,-73.94861,Private room,65,1,2,2019-01-01,0.09,6,272 +18550366,Midtown East Apt,4075128,Chang,Manhattan,Murray Hill,40.74822,-73.97966,Private room,65,2,2,2017-05-20,0.08,1,0 +18550867,The Bridge Complex,128785279,Dusean,Bronx,Pelham Gardens,40.85878,-73.83402,Entire home/apt,199,2,81,2019-06-26,3.17,1,286 +18550947,Private large room in prime Manhattan location,128787072,Piper,Manhattan,Lower East Side,40.71873,-73.9891,Private room,99,2,10,2018-12-29,0.38,1,0 +18551084,Large room in sunny Prime Williamsburg pad.,128785861,Carlos,Brooklyn,Williamsburg,40.71435,-73.95508,Private room,70,1,13,2019-01-01,0.49,2,0 +18551196,Private Room and Backyard in Modern Apartment!,115932140,Justin,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95278,Private room,75,2,1,2017-05-21,0.04,1,0 +18559902,Central Park View 5th Avenue,125021178,Avi,Manhattan,Midtown,40.76646,-73.97912,Entire home/apt,350,3,16,2019-05-16,0.64,1,352 +18560104,Airy One Bedroom Apartment in Prime Crown Heights,7740184,Janet,Brooklyn,Crown Heights,40.67653,-73.95793,Private room,75,1,13,2019-06-23,0.51,1,0 +18560569,Central Park north spacious residence,9727058,Pat,Manhattan,Harlem,40.80389,-73.95178,Entire home/apt,199,3,17,2019-04-07,0.65,1,280 +18560625,Beautiful Private Bedroom by Prospect Park,128852127,Laura,Brooklyn,Prospect-Lefferts Gardens,40.65634,-73.95704,Private room,30,30,1,2017-12-31,0.05,1,0 +18561200,Clean and Comfortable Room at Central Park North,1260642,Maria,Manhattan,Harlem,40.80094,-73.95219,Private room,70,3,65,2018-09-28,2.47,1,0 +18561365,Artist Apartment Fort Greene / Clinton Hill,8146232,Marty,Brooklyn,Clinton Hill,40.69229,-73.96504,Entire home/apt,120,1,3,2017-08-06,0.12,1,0 +18561618,Comfy & Cozy Space in the Upper West Side,128860627,Chris,Manhattan,Upper West Side,40.77557,-73.98099,Shared room,65,3,68,2019-06-22,2.60,1,138 +18561753,Spacious and stylish Soho 1-Bedroom,39829442,Dilara,Manhattan,SoHo,40.72565,-74.00161,Entire home/apt,295,2,4,2017-12-10,0.16,1,0 +18562269,Excellent one bedroom apt for Bklyn Half runners!,24791132,Alex,Brooklyn,Prospect Heights,40.67693,-73.96517,Entire home/apt,135,3,3,2019-05-28,0.48,1,0 +18563383,Room in Hell's Kitchen Duplex Apartment,50916440,Lauren,Manhattan,Hell's Kitchen,40.7652,-73.99197,Private room,67,7,0,,,1,0 +18564694,Affordable and Cozy Room,33434914,Juan,Bronx,Parkchester,40.8298,-73.87715,Private room,40,2,62,2019-06-24,2.38,4,44 +18565097,Bohemian Duplex 1BR Pvt BA Lounge E Williamsburg,128414475,Nitya,Brooklyn,Williamsburg,40.70556,-73.92892,Private room,70,2,10,2017-08-28,0.38,3,0 +18565588,Sunny bedroom off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.96142,Private room,60,3,3,2018-09-03,0.13,3,21 +18565752,"""WELCOME TO BROOKLYN"" PARK SIDE VIEW STUDIO APT",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.6882,-73.94678,Entire home/apt,109,1,148,2019-06-23,5.59,3,20 +18566324,"Large, cute and cozy one-bed apartment",88207924,James,Manhattan,Inwood,40.86835,-73.91958,Entire home/apt,50,4,4,2018-07-04,0.15,1,0 +18566623,Spacious 1 bedroom. Best water pressure in NYC!,128899126,Anthony,Queens,Astoria,40.76132,-73.92477,Entire home/apt,99,2,68,2019-07-01,2.69,1,0 +18566802,"Beautiful Luxury Studio, Heart of Theater District",11334992,Jessica,Manhattan,Hell's Kitchen,40.76059,-73.98865,Shared room,105,1,1,2017-06-05,0.04,1,0 +18568023,"Refreshing Room in the Heart of Bed Stuy, Brooklyn",17486785,Renata,Brooklyn,Bedford-Stuyvesant,40.68212,-73.9486,Private room,45,2,0,,,1,0 +18568171,"Affordable, Cozy, Skylit Room in Renovated House",54548000,Danny,Brooklyn,Bedford-Stuyvesant,40.67779,-73.9229,Private room,70,1,54,2019-04-30,2.15,2,197 +18568551,Modern Williamsburg Studio,9285643,Michael,Brooklyn,Williamsburg,40.71988,-73.96294,Entire home/apt,150,5,0,,,1,0 +18569142,Amazing Apt. in the heart of Williamsburg!,128914189,Edgar,Brooklyn,Williamsburg,40.72034,-73.96031,Entire home/apt,190,30,0,,,2,1 +18569279,"ENTIRE HOME- UPPER EAST SIDE, NYC",4677247,Elizabeth,Manhattan,Upper East Side,40.77973,-73.95039,Entire home/apt,150,2,17,2019-05-15,0.71,1,338 +18569422,Private room in beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.67101,-73.94543,Private room,70,2,52,2018-11-05,1.99,2,0 +18570075,SUPER CLEAN.,99629743,Leatha,Brooklyn,Clinton Hill,40.68908,-73.96429,Entire home/apt,349,2,52,2019-06-09,1.99,2,361 +18570121,Sunny & Quiet - Entire 1 bedroom Apartment,89331516,Louiza,Brooklyn,Williamsburg,40.71779,-73.95978,Entire home/apt,79,2,0,,,3,0 +18571803,Luxury Apartment - Tranquil Sunny Bedroom!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91071,Private room,70,3,26,2019-05-29,1.32,3,0 +18572271,Private bedroom in 2 bed 2 bath UWS,6726364,Alejandra,Manhattan,Upper West Side,40.80062,-73.96169,Private room,150,6,5,2018-05-28,0.21,2,0 +18573121,LUXURY 1BR ON EAST 44TH~DOORMAN/LAUNDRY,2856748,Ruchi,Manhattan,Midtown,40.75194,-73.97068,Entire home/apt,232,30,2,2018-11-17,0.10,49,364 +18577672,Brooklyn home,23667219,Zoe,Brooklyn,Bushwick,40.69563,-73.93206,Private room,47,4,1,2017-05-25,0.04,2,0 +18577989,Air Mattress in a Private Room in Bed-Stuy,38236150,Julio,Brooklyn,Bedford-Stuyvesant,40.69608,-73.9432,Private room,45,1,4,2017-05-29,0.15,1,0 +18579416,"Entire, Immaculate 1-Bedroom CHELSEA APARTMENT",11389260,Haley,Manhattan,Chelsea,40.7381,-73.9976,Entire home/apt,200,2,3,2017-11-25,0.12,1,0 +18579690,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73412,-73.8509,Entire home/apt,278,2,16,2018-07-12,0.62,6,0 +18582592,Spacious and sunny 2-bedroom apt in Park Slope,118366948,Ariel,Brooklyn,Park Slope,40.67079,-73.97384,Entire home/apt,195,12,2,2017-08-13,0.08,1,0 +18582792,"""HELLO BROOKLYN"" PARK SIDE VIEW NEWLY RENO APT.",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.68914,-73.94556,Entire home/apt,109,1,146,2019-06-24,5.57,3,21 +18583072,"Large Room in Brooklyn Townhouse, Great Location",149929,Obed,Brooklyn,Fort Greene,40.69063,-73.97195,Private room,65,8,6,2018-05-10,0.24,5,0 +18583467,Great place for one or two.,22059655,Mercedes,Manhattan,Washington Heights,40.83847,-73.94211,Private room,80,1,93,2019-07-07,3.59,1,311 +18583921,Spacious Private Bedroom in Hip Bushwick,5721788,Maria,Brooklyn,Bushwick,40.69604,-73.92278,Private room,65,25,6,2017-09-14,0.24,1,0 +18584089,"Clean, quite, and near a lot of transportation",129032819,Willie,Manhattan,Harlem,40.82761,-73.9375,Private room,100,1,4,2017-05-19,0.15,1,365 +18584180,CHARMING CHELSEA BROWNSTONE STUDIO NEAR HIGHLINE,21866971,Ben,Manhattan,Chelsea,40.7453,-74.00002,Entire home/apt,180,3,24,2019-06-08,1.12,1,14 +18584411,2BR luxury apt in Midtown East,18212433,Veronique Camille,Manhattan,Midtown,40.75233,-73.97297,Entire home/apt,299,4,0,,,8,0 +18584742,Cozy room across the street from the high bridge,128692351,Nahuel,Bronx,Highbridge,40.84111,-73.92513,Private room,80,2,100,2019-06-23,3.86,5,338 +18585458,Cozy Two Bedrooms Home Away From Home Getaway.,61673952,Artnell,Brooklyn,East Flatbush,40.63693,-73.92242,Entire home/apt,105,2,108,2019-06-29,4.18,1,320 +18585546,"Spacious Private 1BR apt,common area in UES/Harlem",21372426,Kyle,Manhattan,East Harlem,40.78974,-73.9425,Shared room,350,3,0,,,1,83 +18585784,Lovely bedroom in Bushwick,11380126,Kwankaew,Brooklyn,Bushwick,40.69083,-73.9241,Private room,45,1,2,2017-05-31,0.08,1,0 +18586018,3 BDR APT AND ROOFTOP ONE TRAIN STOP TO MANHATAN,69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71047,-73.96311,Entire home/apt,315,2,117,2019-07-02,4.44,4,262 +18586787,Sunny Prime Williamsburg Location with Backyard,89331516,Louiza,Brooklyn,Williamsburg,40.71644,-73.95888,Private room,79,4,0,,,3,0 +18586873,Large Luxury Condominium In the Heart of Manhattan,129062212,Sara,Manhattan,Hell's Kitchen,40.75898,-73.99035,Entire home/apt,90,7,18,2019-06-02,0.70,1,242 +18587083,2 bedrooms in luxury duplex,97543375,Jennifer,Brooklyn,Williamsburg,40.71529,-73.93972,Private room,215,2,4,2018-12-31,0.15,2,341 +18591642,EASY RIDE TO MANHATTAN FROM THIS COMFY ROOM!(C),126929216,Mel,Brooklyn,Crown Heights,40.6699,-73.94169,Private room,59,15,1,2017-06-23,0.04,3,333 +18592160,"Quiet one bedroom in LES, Great location!",23356363,Pablo,Manhattan,Lower East Side,40.71947,-73.98638,Entire home/apt,200,2,24,2019-07-06,0.91,1,6 +18593138,"Luxury Master Suite - Sunlit, Private floor + bath",278576,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65746,-73.95221,Private room,90,3,46,2019-06-23,1.91,2,197 +18595831,"The Locals House // Best Location, Nicest Home",129133511,Michael,Queens,Rockaway Beach,40.5889,-73.81585,Entire home/apt,545,1,31,2019-07-07,1.20,1,224 +18596194,Cozy Studio with private entrance,12827876,Jasen,Brooklyn,Canarsie,40.64493,-73.90897,Private room,33,2,1,2017-05-29,0.04,1,0 +18596197,Great apartment ( W48 street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76382,-73.99435,Entire home/apt,125,30,3,2019-06-08,0.45,31,339 +18596546,Cozy 1BR Home in Upper Manhattan w/ Amenities,24338366,Daniel,Manhattan,Inwood,40.86057,-73.92907,Entire home/apt,100,1,9,2018-08-01,0.37,1,0 +18596772,Apartment w/ 2 bedrooms in the heart of E. Village,5212097,Chris,Manhattan,East Village,40.72237,-73.98148,Private room,275,2,8,2018-11-18,0.31,2,0 +18597408,Huge sunny bedroom in Bushwick brooklyn!,159936,Ludine,Brooklyn,Bushwick,40.69337,-73.91142,Private room,45,1,2,2017-05-12,0.08,1,0 +18597754,Sunny 1BR Near Train (Greenpoint/Williamsburg),29134684,Max,Brooklyn,Greenpoint,40.72686,-73.95246,Entire home/apt,199,6,2,2017-07-14,0.08,1,0 +18597908,Two Whole Floors On the Brooklyn Waterfront,118880596,Caroll,Brooklyn,Columbia St,40.68455,-74.00188,Entire home/apt,150,4,13,2019-04-29,0.56,1,6 +18599156,Great Studio ( Midtown West 48th street),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76435,-73.99337,Entire home/apt,125,30,3,2018-06-02,0.14,31,342 +18599224,Hudge room Bushwick,14376724,Laure,Brooklyn,Williamsburg,40.70793,-73.93902,Private room,55,5,0,,,1,0 +18599296,Comfy Entire Studio Apartment Near Central Park,1692538,Nuttamon,Manhattan,Upper East Side,40.77294,-73.95351,Entire home/apt,168,1,126,2019-04-02,4.78,5,287 +18599352,Studio in Midtown West ( W48th Street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76446,-73.99343,Entire home/apt,125,30,4,2019-05-13,0.17,31,344 +18600659,One big sunny cozy room with a king and a twin bed,6423838,Sara,Brooklyn,East Flatbush,40.65229,-73.94539,Private room,150,2,1,2018-09-03,0.10,1,83 +18601353,Spacious bedroom in Brooklyn - Great for couples!,101258676,Uri,Brooklyn,Kensington,40.63255,-73.97324,Private room,48,1,116,2019-06-21,4.47,1,343 +18602201,Gorgeous Cozy Getaway In Harlem 1 Block From Train,228252,Kathleen,Manhattan,Harlem,40.82607,-73.94481,Private room,85,14,3,2017-09-19,0.12,2,125 +18605919,"Brooklyn, Williamsburg - Room w/ Private Bathroom",3258630,Oscar,Brooklyn,Williamsburg,40.71681,-73.94556,Private room,80,1,6,2018-07-22,0.24,1,0 +18606237,Cozy bedroom in historical home.,128338539,Reuben,Staten Island,Stapleton,40.63167,-74.07971,Private room,43,1,37,2019-07-05,1.56,4,89 +18609316,"Manhattan- sofa bed, private room, no deposit",7055854,Diane,Manhattan,Harlem,40.80298,-73.94333,Private room,60,5,28,2019-05-08,1.07,5,267 +18609555,Beautiful Brooklyn Bedroom,112118235,Darryl,Brooklyn,Flatbush,40.65255,-73.9568,Private room,60,3,0,,,1,0 +18610314,2BR/2BATH Luxury-Sweeping Skylines,118124127,Lana,Brooklyn,Downtown Brooklyn,40.69156,-73.98686,Entire home/apt,179,2,5,2019-07-03,0.19,1,14 +18610539,Garden-level apartment in historic Cobble Hill,34361146,Penelope,Brooklyn,Cobble Hill,40.68582,-73.99801,Entire home/apt,156,31,10,2018-12-09,0.39,1,0 +18610543,"Huge, Sunny Apartment for Backpackers - Park Slope",75567007,Candice,Brooklyn,Park Slope,40.67697,-73.98239,Entire home/apt,153,2,2,2017-05-29,0.08,1,0 +18610544,Cozy Room in Gramercy,32052979,Meghana,Manhattan,Kips Bay,40.73863,-73.98186,Private room,76,1,0,,,1,0 +18610554,"Private bedroom, Queenbed on suite bath and closet",7055854,Diane,Manhattan,East Harlem,40.80141,-73.94341,Private room,2000,6,0,,,5,219 +18611347,Huge private bedroom,129270031,Magd,Manhattan,Harlem,40.82527,-73.95359,Private room,55,90,0,,,1,365 +18611605,Lovely Room in Brooklyn,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.6697,-73.99357,Private room,145,1,80,2019-06-02,3.10,3,282 +18611872,"Sunny bedroom, cozy townhouse in Buschwick",1637060,Caio,Brooklyn,Bushwick,40.6948,-73.92253,Private room,75,2,80,2019-07-02,3.11,1,3 +18612291,Private One Bedroom,16140828,Pedro,Manhattan,Morningside Heights,40.80864,-73.95913,Private room,65,4,0,,,1,0 +18612722,2b2b apt in a luxury building,23297219,Aurora,Brooklyn,Williamsburg,40.71964,-73.96421,Entire home/apt,199,4,7,2018-04-29,0.28,2,65 +18612788,Awesome loft with Amazing views,14444,John,Brooklyn,Bedford-Stuyvesant,40.69321,-73.95599,Entire home/apt,150,4,0,,,2,0 +18612976,Audrey's Escape,13730809,Kevin,Brooklyn,Brownsville,40.66088,-73.90012,Private room,60,6,26,2019-06-18,1.00,3,90 +18613550,Spacious Private Room by the East River,14614459,Dario,Manhattan,East Harlem,40.78546,-73.94117,Private room,70,3,8,2017-11-01,0.31,4,0 +18613981,Beautiful bedroom in Quiet House,90289877,Abi,Queens,Flushing,40.74218,-73.82833,Private room,36,2,98,2019-06-23,3.80,1,31 +18614596,Downtown Triplex- Spacey East Village Entire Apt,7318926,Jonathan,Manhattan,East Village,40.72208,-73.98071,Entire home/apt,210,3,5,2018-06-14,0.19,1,0 +18615054,Cozy room in charming home,1635983,Sheila,Bronx,Schuylerville,40.83159,-73.83375,Private room,40,4,35,2019-06-08,1.36,3,171 +18615497,Comfortable space in Brooklyn,41467596,Donald,Brooklyn,Crown Heights,40.66482,-73.93619,Private room,140,1,1,2017-06-03,0.04,1,0 +18615898,Welcoming home in the ❤️ of NYC!,23867523,K,Manhattan,Theater District,40.76207,-73.9858,Private room,120,1,8,2019-05-31,2.09,1,5 +18615903,Private Bathroom & Communal Cat in Large Sunny Apt,1038989,Kung,Brooklyn,Williamsburg,40.70904,-73.9398,Private room,95,3,69,2019-07-05,2.63,2,56 +18615964,1 BEDROOM apartment in Brooklyn,52816291,Laetitia,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95121,Entire home/apt,90,3,5,2019-02-19,0.27,1,1 +18616208,"Modern Townhouse for Photo, Film & Daytime Events",55017405,Lanie,Manhattan,Upper West Side,40.77978,-73.97598,Entire home/apt,2900,1,0,,,1,180 +18616217,"Local West Village, Manhattan Apartment",22204359,Abel,Manhattan,West Village,40.73369,-74.00534,Entire home/apt,199,4,24,2019-06-28,0.95,1,35 +18616234,UPPER EAST SIDE PRIVATE ROOM!,129317761,Lauren,Manhattan,East Harlem,40.78886,-73.94324,Private room,70,1,11,2017-07-15,0.42,1,0 +18616809,Sunny 2BR Prime Williamsburg with backyard,89331516,Louiza,Brooklyn,Williamsburg,40.71591,-73.96039,Entire home/apt,169,5,1,2017-06-07,0.04,3,0 +18617060,Private Sunny Room in Bushwick,129159456,Michelle,Brooklyn,Bushwick,40.69055,-73.91599,Private room,30,1,0,,,1,0 +18617195,Spacious one bedroom appartement - Williamsburg,1599261,Daphnee,Brooklyn,Williamsburg,40.70844,-73.96693,Entire home/apt,140,3,19,2019-06-21,0.73,1,218 +18617676,Spacious apartment in the Lower east side,129333453,Larry,Manhattan,Lower East Side,40.72037,-73.98701,Entire home/apt,110,3,19,2019-06-29,0.73,1,34 +18619857,Ms. Dee Comfort Zone,97794385,Debra,Queens,Jamaica,40.68555,-73.79416,Private room,30,1,15,2019-06-28,0.67,2,90 +18624243,Sunny & cozy 1BR in the heart of Fort Greene,50605761,Adam,Brooklyn,Fort Greene,40.68647,-73.97531,Entire home/apt,130,5,1,2017-10-16,0.05,1,2 +18625919,Cozy Studio Apartment with Spacious Backyard!,129396046,Tony,Brooklyn,East New York,40.66547,-73.88944,Entire home/apt,99,2,145,2019-06-21,5.84,1,356 +18626606,NYC. Central Park West. Prime Spot!,129179250,Mark,Manhattan,Upper West Side,40.77229,-73.97944,Entire home/apt,200,4,10,2018-05-14,0.43,1,68 +18628912,Unique Upper East Side apartment with backyard,27789935,Tim And Allison,Manhattan,Upper East Side,40.77568,-73.95405,Entire home/apt,170,1,20,2019-01-01,0.77,1,0 +18629326,Spacious bedroom in colorful apartment,4401058,John,Brooklyn,Kensington,40.64354,-73.97967,Private room,110,1,0,,,1,0 +18629621,Bushwick Studio with Private Porch,83141510,Alex,Brooklyn,Bushwick,40.70382,-73.91746,Entire home/apt,100,1,0,,,1,0 +18630660,Charming Bohemian East Village Apartment,49197104,Chelsea,Manhattan,East Village,40.73159,-73.98447,Entire home/apt,133,3,5,2017-08-23,0.19,1,0 +18632197,Quiet Private Room in Scenic NYC Neighborhood,32772382,Caitlin,Manhattan,Washington Heights,40.85865,-73.93559,Private room,75,2,13,2018-09-16,0.55,1,0 +18632502,"Charming Carroll Gardens, Brooklyn Apartment",14505375,Triada,Brooklyn,Carroll Gardens,40.68057,-73.99395,Entire home/apt,125,2,69,2019-07-01,2.66,1,275 +18632582,Brooklyn Dream Home + Private Patio,2420586,Sabrina,Brooklyn,Brooklyn Heights,40.69284,-73.99633,Entire home/apt,325,2,12,2018-10-07,0.46,1,39 +18634847,Huge room in a clean brownstone in Brooklyn.,21402517,Max Prana,Brooklyn,Bedford-Stuyvesant,40.69418,-73.94447,Private room,50,2,19,2019-06-05,0.76,1,4 +18635370,Fantastic Sunny peaceful room in Riverdale,91385196,Vicdania,Bronx,North Riverdale,40.91169,-73.90564,Private room,50,365,0,,,1,363 +18635942,Beautiful Studio Apartment on the E70th St,55814053,Maria,Manhattan,Upper East Side,40.7672,-73.95495,Entire home/apt,120,1,89,2019-06-22,3.43,1,9 +18636030,"Cozy, private room in Morningside Heights",87680800,Mahnoor,Manhattan,Morningside Heights,40.81368,-73.95919,Private room,50,1,0,,,1,0 +18636622,Quaint 1 Bedroom in Historic Home,3617473,Jeff,Queens,Sunnyside,40.74789,-73.91428,Entire home/apt,100,30,3,2017-12-02,0.13,1,213 +18637270,"Cute, spacious room in Crown Heights",31658624,Megan E,Brooklyn,Crown Heights,40.66954,-73.93975,Private room,45,3,8,2019-03-30,0.31,2,0 +18637912,Family-friendly Bright Studio in Our Brooklyn Home,129497806,Jody,Brooklyn,East Flatbush,40.65064,-73.95045,Entire home/apt,94,2,73,2019-06-29,3.09,1,66 +18638015,Clean Comfy Private Room in Heart of Williamsburg,45934567,Caitlin,Brooklyn,Williamsburg,40.71227,-73.96233,Private room,60,5,2,2018-06-11,0.08,1,0 +18638573,Adorable room in Astoria - 20 mins to Manhattan!,28290772,Anushua,Queens,Astoria,40.76682,-73.90807,Private room,63,2,27,2019-06-15,1.03,2,338 +18638985,PRIME WILLIAMSBURG- Spacious 4BR Bohemian Oasis,25318403,Bethany,Brooklyn,Williamsburg,40.71353,-73.9578,Entire home/apt,175,3,9,2019-05-12,0.40,3,11 +18645286,Sunny & cozzy room in beautiful apartment,48157058,Michèle,Brooklyn,Crown Heights,40.67541,-73.93253,Private room,26,7,0,,,1,59 +18646075,A Chic Harlem stay,63417081,Devon,Manhattan,Harlem,40.82336,-73.94512,Private room,45,30,4,2018-09-10,0.17,8,67 +18646653,Upper East Side 1 bedroom near Central park,33786241,Sean,Manhattan,Upper East Side,40.77481,-73.95641,Entire home/apt,123,3,32,2019-05-27,1.22,1,4 +18647180,Beautiful Dupl Brooklyn Apartment w/ a Big Terrace,7041731,Dee,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95803,Entire home/apt,185,3,1,2017-05-22,0.04,1,0 +18647217,Cozy Contemporary Couch by Central Park,128531725,Shia,Manhattan,Morningside Heights,40.80387,-73.95853,Private room,55,3,103,2019-06-17,3.93,2,18 +18647731,East Village Studio Apartment,46501846,Patrick,Manhattan,East Village,40.7241,-73.98959,Entire home/apt,133,7,9,2018-11-05,0.35,1,0 +18648243,Contemporary Room Close to Columbia & Central Park,128531725,Shia,Manhattan,Harlem,40.8042,-73.95669,Private room,75,2,41,2019-04-01,1.57,2,1 +18648360,Modern Brooklyn brownstone in prime location,3990540,Margot,Brooklyn,Prospect Heights,40.67787,-73.97225,Entire home/apt,450,3,3,2017-07-16,0.12,1,0 +18648591,Crown Heights Air Bnb/Sublet,97032243,Noah,Brooklyn,Crown Heights,40.67571,-73.94916,Private room,40,1,0,,,1,0 +18649105,Large 1 Bedroom in Astoria/Long Island City!,44838931,Andrea,Queens,Astoria,40.76843,-73.93257,Private room,90,3,17,2019-04-23,0.65,2,334 +18649351,"BEST LOCATION, ONLY 5 MIN TO MANHATAN.",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71039,-73.96139,Private room,400,1,44,2019-05-08,2.19,4,77 +18649806,Cozy 1 Bedroom with Queen bed,44838931,Andrea,Queens,Astoria,40.76848,-73.93213,Private room,62,3,27,2019-07-02,1.03,2,154 +18649822,Union Square Private Sunny Dream Home,126470577,Kseniya,Manhattan,Gramercy,40.7358,-73.9889,Entire home/apt,287,1,68,2019-07-02,2.67,1,324 +18650087,Red Flower,21854022,Paul,Manhattan,Harlem,40.8225,-73.94493,Entire home/apt,200,1,78,2019-07-07,3.00,1,84 +18650569,A Home Base in Brooklyn,35881969,John,Brooklyn,Williamsburg,40.70545,-73.94714,Private room,58,1,96,2019-06-15,3.82,2,79 +18652220,Williamsburg Sanctuary,7147164,Tiffany,Brooklyn,Williamsburg,40.7137,-73.95711,Entire home/apt,325,3,32,2019-06-23,1.25,1,33 +18652544,Beautiful One bedroom in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75017,-73.97687,Entire home/apt,222,30,0,,,50,180 +18655599,Luxury Studio Apartment in Downtown Brooklyn,36522433,Zexi,Brooklyn,Downtown Brooklyn,40.69459,-73.98261,Entire home/apt,130,5,2,2017-08-29,0.08,1,0 +18655815,"Spacious, sunny room in Upper West Side, Manhattan",72377141,Ben,Manhattan,Upper West Side,40.79939,-73.96752,Private room,70,7,1,2017-08-24,0.04,3,0 +18655886,Spacious Bedroom in Duplex,68017798,Charlotte,Brooklyn,Bushwick,40.69804,-73.9182,Private room,44,2,0,,,1,0 +18655992,Private Room in the Heart of Brooklyn!,23722638,Laura,Brooklyn,Gowanus,40.68432,-73.98867,Private room,85,1,0,,,2,0 +18656413,Comfy Wall Street Apartment,110031106,Allie,Manhattan,Financial District,40.70586,-74.00875,Private room,85,1,3,2017-06-04,0.12,1,0 +18656661,Private Bedroom in Artist's Apartment,19512029,Tami,Brooklyn,Midwood,40.61143,-73.9543,Private room,52,2,12,2017-07-30,0.46,1,0 +18657209,Private Room and Bath in the Lower East Side!,90824676,Lauren,Manhattan,East Village,40.72288,-73.98342,Private room,60,1,3,2017-08-27,0.12,1,0 +18662619,Renovated Modern Home Ideal for a FAMILY!,13524368,Richard,Brooklyn,Windsor Terrace,40.65766,-73.97614,Entire home/apt,275,3,8,2018-11-30,0.32,1,0 +18662664,Spacious Private Room - Newly Renovated Harlem Apt,15578480,Trisha,Manhattan,Harlem,40.81271,-73.94055,Private room,75,2,21,2018-03-18,0.81,1,0 +18662841,Loft Studio in Clinton Hill/Bed-Stuy Brooklyn,30348931,Adriana,Brooklyn,Bedford-Stuyvesant,40.68626,-73.95918,Entire home/apt,125,1,0,,,1,0 +18664875,"Carroll Gardens Brooklyn, Sunny and Modern Triplex",129714819,Caroline,Brooklyn,Gowanus,40.68112,-73.98921,Entire home/apt,475,7,4,2019-04-26,0.17,1,72 +18666583,Cozy sleeping nook in the heart of Brooklyn!,129723592,Ashkon,Brooklyn,Crown Heights,40.67404,-73.95616,Private room,50,7,0,,,1,0 +18666975,"PRIVATE, QUIET, Clean NY APT. 3mins to JFK Airport",125557444,Ada,Queens,Jamaica,40.6705,-73.77787,Entire home/apt,80,1,22,2019-06-02,0.85,2,305 +18667184,Easy trip to Manhattan! Large Private Garden!,129733507,Mo,Brooklyn,Bedford-Stuyvesant,40.68391,-73.95783,Entire home/apt,200,3,4,2018-05-06,0.17,1,250 +18667956,Bushwick Chef's house,71224013,Heejun,Brooklyn,Bushwick,40.69445,-73.91161,Private room,70,1,22,2019-07-01,0.85,1,331 +18668037,Private room in Harlem-Sublet or short term stay,127731553,Roberto,Manhattan,Harlem,40.83168,-73.94743,Private room,52,7,0,,,1,0 +18668571,Beautiful apt w/terrace Bushwick. 1block frm train,119170289,Bam,Brooklyn,Bushwick,40.69517,-73.92541,Entire home/apt,150,2,15,2019-06-23,0.59,2,0 +18668594,Bed-Stuy Artists Retreat,14046877,Kelley,Brooklyn,Bedford-Stuyvesant,40.69087,-73.946,Private room,63,3,0,,,1,0 +18669019,"Entire Apt – 2 BR/1 BA – beautiful, block from L/M",23149564,Dan,Brooklyn,Bushwick,40.69694,-73.91269,Entire home/apt,100,7,0,,,1,0 +18669496,Med. sized bdrm in Historical house on Staten Isl.,128338539,Reuben,Staten Island,Stapleton,40.62981,-74.07998,Private room,50,1,25,2019-07-06,1.03,4,73 +18669801,Huge Private Room in New York 10minute to Midtown,119952908,Meja Hilde,Queens,Long Island City,40.75172,-73.9379,Private room,69,1,3,2017-05-30,0.12,1,0 +18670480,Sunny Art + Plant Brownstone Apartment,6356476,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68988,-73.94137,Entire home/apt,116,2,0,,,1,0 +18671835,Private Room with Skyline View. Near LGA airport,129743937,Win,Queens,East Elmhurst,40.75885,-73.86959,Private room,44,1,141,2019-07-05,10.19,2,47 +18672921,Spacious yet Cozy Room in Manhattan,64780571,Lexi,Manhattan,Washington Heights,40.84773,-73.93251,Private room,60,3,2,2017-06-12,0.08,1,0 +18673613,Midtown West,7193271,Robert,Manhattan,Hell's Kitchen,40.75405,-73.99377,Private room,180,1,7,2018-03-11,0.27,1,0 +18674105,Charming East Village One Bedroom,129794391,Yinhang,Manhattan,East Village,40.72349,-73.9841,Entire home/apt,95,3,2,2017-06-21,0.08,1,0 +18675061,Private Room in beautiful UWS - Great Location!,12033348,Shirley,Manhattan,Upper West Side,40.79978,-73.96797,Private room,70,7,5,2017-07-04,0.19,1,0 +18675083,Lux apt,18408365,Michele,Manhattan,Kips Bay,40.74518,-73.97929,Entire home/apt,275,3,0,,,1,0 +18675215,Modern Sunny Midtown Gem,18838868,Leah,Manhattan,Midtown,40.74452,-73.98163,Entire home/apt,195,3,14,2018-09-22,0.58,1,0 +18675599,Large Place bushwick with furniture,129812563,Roodmy,Brooklyn,Bushwick,40.69416,-73.90816,Private room,45,7,11,2017-09-20,0.42,1,0 +18676837,"Private Room & Entrance, Two Blocks from Times Sq!",64177548,David,Manhattan,Hell's Kitchen,40.76,-73.98915,Private room,135,3,65,2019-06-30,2.92,1,25 +18680331,1 bedroom apartment in Morningside Heights!,71515912,Mili,Manhattan,Morningside Heights,40.80546,-73.96547,Entire home/apt,145,7,2,2018-01-21,0.08,1,0 +18682735,Penthouse studio @ Manhathan,10477693,Crystal,Manhattan,Financial District,40.70738,-74.01281,Entire home/apt,160,2,0,,,1,0 +18682763,Spacious & Charming Apartment in Bedstuy,13608839,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94225,Entire home/apt,98,2,0,,,1,0 +18683699,"Private, artsy room steps from Prospect Park!!",11881734,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65475,-73.96186,Private room,80,1,24,2017-12-11,0.92,1,0 +18683879,Spacious studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74954,-73.97687,Entire home/apt,150,30,3,2019-02-02,0.20,50,180 +18685854,PEACE AND TRANQUILITY,129890157,Pauline,Bronx,Baychester,40.87192,-73.84676,Private room,60,1,0,,,2,0 +18686269,Amazing duplex with garden,119940669,Fabrice,Brooklyn,Williamsburg,40.71255,-73.95745,Private room,430,6,0,,,1,0 +18686390,Cozy Studio in the Heart of the East Village,12540615,Adam,Manhattan,East Village,40.72415,-73.98411,Entire home/apt,128,1,13,2018-01-01,0.50,1,0 +18686501,A quite full-size bed living room at upper west,63026371,John (Tianqi),Manhattan,Upper West Side,40.8012,-73.96693,Shared room,55,2,0,,,1,0 +18686508,Modest Room in a Quiet Brooklyn Home,129161153,Hermann,Brooklyn,East Flatbush,40.6327,-73.93922,Private room,60,1,5,2018-05-13,0.19,1,342 +18686817,Large bright friendly bedroom apartment,59407939,Avrora,Brooklyn,Bensonhurst,40.60795,-73.98955,Private room,89,1,5,2017-09-29,0.19,1,364 +18688150,"""Chill"" Private 1BR Close to A,C,B,D,2,3",24906403,Howard,Manhattan,Harlem,40.818,-73.94134,Private room,60,2,51,2019-07-05,2.26,1,170 +18689454,Private sun-filled 1-bedroom apt with own backyard,327033,Marc,Brooklyn,Bushwick,40.69207,-73.92331,Entire home/apt,145,3,17,2019-05-25,0.66,2,0 +18689588,Sunny Brooklyn Studio: 25 min to central Manhattan,127767,Cara,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95374,Entire home/apt,97,4,6,2018-08-18,0.24,1,0 +18690466,Spacious 2bed private rm close St.BarnabasHospital,127249880,Emma,Bronx,Tremont,40.84594,-73.89358,Private room,45,2,49,2019-05-26,1.95,2,324 +18690651,Private Spacious Bedroom in Upper Manhattan,68852295,Aj,Manhattan,Harlem,40.8213,-73.95131,Private room,50,7,0,,,1,0 +18690921,PRIME LOCATION/SUNLIT ROOM,129927411,Andrea,Manhattan,Little Italy,40.71886,-73.99746,Private room,110,1,166,2019-06-21,6.37,2,71 +18691084,Spacious and sunny room in Williamsburg,30384022,Cecilia,Brooklyn,Williamsburg,40.7107,-73.94295,Private room,65,7,1,2017-12-24,0.05,1,0 +18691204,Luxury Apt in Williamsburg + Huge private terrace,68472942,Alex,Brooklyn,Williamsburg,40.70943,-73.95064,Entire home/apt,175,3,3,2018-08-26,0.28,1,364 +18691948,Beautiful NYC bedroom and neighborhood!,41580455,Marianel,Manhattan,Washington Heights,40.85115,-73.93703,Private room,80,4,4,2019-04-22,0.15,1,0 +18692028,MODERN 3 BEDROOM APT IN THE HEART OF BROOKLYN,128707088,Nazila,Brooklyn,Downtown Brooklyn,40.70001,-73.98969,Entire home/apt,325,2,94,2019-06-23,3.67,1,166 +18692321,Amazing loft with a great view,14444,John,Brooklyn,Bedford-Stuyvesant,40.69347,-73.955,Entire home/apt,126,20,0,,,2,0 +18695104,Quiet private room in Manhattan Lower east side,40225443,Zhi And Gloria,Manhattan,Lower East Side,40.72008,-73.98268,Private room,104,3,28,2017-11-11,1.07,1,0 +18699576,1BR in the Heart of Williamsburg,14885787,Monica,Brooklyn,Williamsburg,40.71869,-73.95358,Entire home/apt,150,2,2,2017-07-23,0.08,1,0 +18700004,Unfurnished 2 bedrooms for rent at the end of May!,130005087,Adé,Brooklyn,Crown Heights,40.67371,-73.94537,Private room,85,5,0,,,1,0 +18701095,Crown Heights Haven,130013537,Ā.,Brooklyn,Crown Heights,40.6746,-73.94549,Private room,45,2,19,2018-07-06,0.73,1,0 +18702075,Clean and large bedroom in a private house,130021104,Christoni,Bronx,Williamsbridge,40.87309,-73.86326,Private room,60,1,5,2017-06-03,0.19,1,0 +18704012,"Great, light filled room with ensuite private bath",1038989,Kung,Brooklyn,Williamsburg,40.7097,-73.94001,Private room,120,2,3,2017-10-15,0.14,2,0 +18704413,Large Private Suite in Classic Brooklyn Brownstone,130035533,Linda,Brooklyn,Brooklyn Heights,40.69364,-73.99467,Entire home/apt,200,2,80,2019-06-28,3.14,1,271 +18704805,"East 12th st, Lux Studio in Greenwich Village**",22541573,Ken,Manhattan,East Village,40.73334,-73.9897,Entire home/apt,235,30,1,2018-05-06,0.07,87,307 +18705087,Times Square studio,104691618,Azi,Manhattan,Hell's Kitchen,40.75725,-73.9959,Entire home/apt,180,2,36,2019-06-20,1.40,1,2 +18706173,Great 2 bedroom suite in Bed Stuy,17859338,Jacqueline,Brooklyn,Bedford-Stuyvesant,40.68416,-73.9551,Entire home/apt,160,3,59,2019-07-06,2.42,2,88 +18706845,Private Budget Room For Awesome Guests. #1,97018938,Ude,Brooklyn,Canarsie,40.64005,-73.90916,Private room,42,1,29,2018-02-02,1.13,2,35 +18706893,BEAUTIFUL 1 BEDROOM IN W 48 STREET,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76515,-73.99423,Entire home/apt,135,30,0,,,31,337 +18707214,Sunny 2-bedroom in classic Brooklyn brownstone,4370956,Rachel,Brooklyn,Fort Greene,40.6862,-73.96973,Entire home/apt,175,3,3,2017-08-11,0.12,1,0 +18707698,"West Soho Apartment, One Bedroom",130062635,John,Manhattan,SoHo,40.72667,-74.00179,Entire home/apt,164,2,2,2017-06-04,0.08,1,0 +18715285,Beautiful Brooklyn Vacation Rental,63749946,Rachel,Brooklyn,Crown Heights,40.67324,-73.92502,Entire home/apt,147,20,49,2019-05-29,1.94,3,204 +18716289,"Beautiful, Spacious, Luxury Fort Greene Apartment",16575725,New,Brooklyn,Fort Greene,40.69369,-73.98074,Entire home/apt,120,2,7,2018-08-20,0.29,1,0 +18716439,"Beautiful, rustic 1BD in HEART of Willlamsburg!",6646682,Daryen,Brooklyn,Williamsburg,40.71232,-73.96067,Entire home/apt,88,4,6,2018-04-14,0.24,1,1 +18716602,Charming 2brs w/ private garden in Carroll Gardens,62734,Kremer,Brooklyn,Gowanus,40.67862,-73.9923,Entire home/apt,120,30,2,2018-11-01,0.19,2,342 +18716795,Lower Manhattan room - best part of town,9913035,George,Manhattan,Lower East Side,40.7218,-73.98723,Private room,63,30,8,2018-08-01,0.31,3,237 +18718070,Modern high ceiling loft,2434499,Paul,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95265,Entire home/apt,114,7,0,,,1,0 +18718195,Private Bedroom in Manhattan,59117179,Mariama,Manhattan,Roosevelt Island,40.76364,-73.94881,Private room,110,1,48,2019-06-20,1.86,1,342 +18719129,"Big room in Queens, close to all...皇后区大房, 近超市、地铁",129942781,Jiqiong,Queens,Rego Park,40.72446,-73.85636,Private room,60,3,46,2019-06-10,1.77,1,48 +18719477,One bedroom in two bedroom,9472223,Arthur,Manhattan,Harlem,40.80393,-73.95674,Private room,55,7,0,,,3,0 +18719526,Townhouse Garden Apartment - Park Block,20662116,"Jeanne - Aka, 'Rindy'",Brooklyn,Park Slope,40.66634,-73.97806,Entire home/apt,165,4,41,2019-01-02,1.63,1,170 +18719602,Midtown Convenience and Modern Comfort,66051549,Jenny,Manhattan,Midtown,40.7523,-73.97287,Private room,105,4,1,2017-07-30,0.04,1,0 +18719762,AMAZING HOUSE 3 Bedrooms 3 Bathrooms.,52084781,Ms. George,Queens,Glendale,40.69252,-73.89533,Entire home/apt,150,3,22,2019-06-23,0.93,1,292 +18721027,Spacious NYC Apartment with a View,47485343,Claire,Brooklyn,Sunset Park,40.65003,-74.00657,Entire home/apt,75,3,2,2017-07-05,0.08,1,0 +18721061,Grdn 2BD Sleeps 7 Pvt. Bath Near train⭐Mins to NYC,9285314,Monica,Brooklyn,Bushwick,40.69453,-73.93053,Private room,150,3,0,,,1,93 +18721209,Bronx Wakefield Large Furnished Room,130185165,Ms. H,Bronx,Wakefield,40.88702,-73.86575,Private room,60,1,39,2019-07-01,1.57,1,360 +18721341,Unique Brooklyn Studio,130186732,Trilla,Brooklyn,Crown Heights,40.67574,-73.94722,Entire home/apt,90,31,70,2019-06-22,2.79,1,263 +18721845,Home home sweet home,49360262,Leah,Queens,Woodside,40.74204,-73.90639,Private room,55,2,3,2017-05-28,0.12,1,0 +18722146,"Prime Astoria Apartment, Beautiful and Convenient",4621817,Burcu,Queens,Astoria,40.75865,-73.91737,Private room,150,2,2,2017-09-12,0.08,1,87 +18722657,Charming Room in Sunlit 3BD Apt,28648021,Nneka,Brooklyn,Crown Heights,40.67615,-73.94752,Private room,41,3,1,2017-05-21,0.04,1,0 +18723095,FINANCIAL NEAR WORLD TRADE CENTER,130204296,Anny,Manhattan,Financial District,40.70817,-74.00675,Private room,115,1,5,2017-10-06,0.19,1,0 +18728915,Spacious Bushwick Studio,67895564,Noah,Brooklyn,Bushwick,40.70373,-73.92848,Entire home/apt,100,3,3,2018-11-25,0.12,1,0 +18728971,Huge Williamsburg Loft (true loft!),10113673,Danni,Brooklyn,Williamsburg,40.71432,-73.95629,Entire home/apt,155,2,2,2017-06-12,0.08,1,0 +18729143,Private Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71725,-73.9544,Private room,52,5,111,2019-06-22,4.26,4,10 +18729447,Cosy bedroom in prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71365,-73.94822,Private room,80,4,9,2018-12-21,0.36,2,36 +18729461,Studio in Upper East Side,108546781,Marlène,Manhattan,Upper East Side,40.77958,-73.95025,Entire home/apt,75,15,5,2018-08-25,0.20,1,1 +18729985,Bright and cozy room 20 min away from Manhattan,8076786,Suri,Brooklyn,Sunset Park,40.6589,-74.00018,Private room,150,2,6,2019-03-23,0.27,3,365 +18731029,Upper WestSide Manhattan Comfort 3,67768251,Felipe,Manhattan,Upper West Side,40.78293,-73.97636,Private room,40,30,8,2019-04-26,0.42,3,204 +18731641,The Omaric,53560822,Desmond,Manhattan,Harlem,40.82425,-73.9552,Entire home/apt,95,2,49,2019-07-02,1.92,1,14 +18732648,Large Private Bedroom in Cool Williamsburg Apt.,30487854,Ben,Brooklyn,Williamsburg,40.71219,-73.96085,Private room,50,5,16,2019-06-22,0.62,2,10 +18734125,Large Industrial Loft In Bushwick,81066021,Javerick,Brooklyn,Williamsburg,40.70608,-73.9313,Entire home/apt,158,3,2,2017-07-22,0.08,2,324 +18734225,1BR in lovely Williamsburg apartment,40238772,Daniël,Brooklyn,Williamsburg,40.70884,-73.95425,Private room,60,20,2,2017-06-19,0.08,1,0 +18734320,"Easy, Comfortable and Convenient!",100784323,Kathleen,Manhattan,Washington Heights,40.83543,-73.94372,Private room,50,2,14,2018-09-01,0.54,1,0 +18734427,"Nice space in Norwood, NYC",112239929,Cherly,Bronx,Norwood,40.87315,-73.87925,Private room,65,1,0,,,1,0 +18734568,"Room in sunny, relaxing apartment in Ft. George",130307692,Mara,Manhattan,Washington Heights,40.85618,-73.93085,Private room,44,2,7,2017-07-23,0.27,1,0 +18735563,Furnished room available until June 4th,130319645,Anton,Brooklyn,Sheepshead Bay,40.60924,-73.95556,Private room,30,1,0,,,1,0 +18735631,"Charming 1 Bedroom Apartment in Bushwick, Brooklyn",123355776,Carol,Brooklyn,Bushwick,40.70336,-73.92657,Entire home/apt,184,1,29,2019-05-07,1.12,1,0 +18735653,Jupiter House,2733815,Ashley,Brooklyn,Red Hook,40.67785,-74.00735,Entire home/apt,175,30,14,2018-12-17,0.55,1,0 +18736267,Bright and Tranquil Apartment,10805053,Devan,Brooklyn,Boerum Hill,40.68602,-73.98311,Entire home/apt,300,2,4,2018-11-12,0.37,1,311 +18736436,Garden Apartment of Eden,130331205,Robert,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94699,Entire home/apt,99,2,7,2019-06-14,2.08,1,68 +18736455,Lexington Av. Zen Garden Apartment,2000711,Ori & Juanjo,Brooklyn,Bedford-Stuyvesant,40.68924,-73.92818,Entire home/apt,137,5,86,2019-07-07,3.34,1,191 +18736484,Minutes from JFK airport and famous mall,128086219,Hannah,Queens,Rosedale,40.65219,-73.73729,Private room,49,2,61,2019-03-25,2.36,2,65 +18736642,Super Spacious and Sunny Top-Floor 1BR in Brooklyn,16481892,Ben,Brooklyn,Prospect-Lefferts Gardens,40.66325,-73.94978,Entire home/apt,75,7,0,,,1,0 +18737053,"Private, cute, and cozy studio close to the subway",182461,Jose,Queens,Ozone Park,40.67555,-73.85653,Private room,39,2,21,2019-06-01,0.81,2,0 +18737220,Artists studio,7425132,Irina,Brooklyn,Kensington,40.63491,-73.96796,Entire home/apt,59,5,7,2019-06-14,0.80,1,140 +18737235,Brooklyn Garden Apartment,45763784,Julio,Brooklyn,Clinton Hill,40.68307,-73.96595,Entire home/apt,229,5,11,2019-05-28,1.22,2,0 +18737594,Brownstone in Clinton Hill Brooklyn,45763784,Julio,Brooklyn,Clinton Hill,40.68499,-73.96524,Entire home/apt,825,3,2,2018-09-28,0.19,2,44 +18738138,Huge room with private bathroom in East Harlem!,68762417,Simon,Manhattan,East Harlem,40.79376,-73.94679,Private room,125,1,19,2019-06-21,0.73,4,115 +18745141,Comfy Private Bedroom,22384027,Shahana,Brooklyn,Crown Heights,40.67064,-73.9178,Private room,39,1,41,2019-06-14,1.57,10,218 +18745314,Cozy Studio Apartment in Harlem/ Manhattan area,37078449,Kim,Manhattan,Harlem,40.80722,-73.95614,Entire home/apt,130,1,2,2017-05-23,0.08,1,0 +18745487,Private Studio-like room on the Upper West Side.,110520215,Leisa,Manhattan,Upper West Side,40.80066,-73.96813,Private room,500,1,0,,,1,173 +18745767,Large bright artistic apartment,2469662,Ruthie,Brooklyn,Bushwick,40.70249,-73.93025,Entire home/apt,80,2,5,2018-07-16,0.19,1,0 +18746696,"One Bedroom-One Bathroom in Greenpoint, Brooklyn.",1485117,Matt,Brooklyn,Greenpoint,40.72186,-73.94588,Entire home/apt,125,2,8,2017-12-30,0.31,1,0 +18747972,Moore St. Bushwick Loft,130400901,Halliday,Brooklyn,Williamsburg,40.70398,-73.93298,Entire home/apt,185,2,39,2018-12-27,1.50,1,0 +18748038,RIVER VIEWS- EAST 52ND LUXURY 1 BR APARTMENT,2856748,Ruchi,Manhattan,Midtown,40.75403,-73.96343,Entire home/apt,225,30,0,,,49,364 +18748170,Private bedroom in large sunny 3 BR/2BA,493545,Jennifer,Brooklyn,Crown Heights,40.67305,-73.94788,Private room,90,1,3,2018-11-11,0.34,2,179 +18750465,Beautiful studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74863,-73.9767,Entire home/apt,150,30,0,,,50,365 +18750505,Nicely Appointed Studio with Alcove for Bed,8010331,Ashley,Manhattan,East Harlem,40.80324,-73.9352,Entire home/apt,120,2,8,2019-05-29,0.34,1,11 +18750597,"Huge Brooklyn Brownstone Living, Close to it all.",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69023,-73.95428,Private room,0,4,1,2018-01-06,0.05,4,28 +18751192,Room with Unbeatable Manhattan Skyline View,6676046,Kaila,Brooklyn,Greenpoint,40.72463,-73.95227,Private room,65,5,3,2018-06-12,0.13,1,0 +18751261,"Park, Subway & All Conveniences",130452689,Meredith,Brooklyn,Greenpoint,40.72357,-73.95057,Entire home/apt,225,2,2,2018-08-22,0.09,1,34 +18751687,Private room with private bathroom,73214623,Salah,Brooklyn,Williamsburg,40.71627,-73.93957,Private room,100,7,1,2019-03-24,0.28,1,365 +18752307,The Regal Crash Suite,130461656,King,Manhattan,Harlem,40.81372,-73.95612,Entire home/apt,195,1,51,2019-05-22,1.96,1,67 +18753406,Large King size bed private entrance 5 mins to NYC,51459559,Rossana,Queens,Astoria,40.75777,-73.91577,Private room,69,5,17,2018-06-03,0.65,2,208 +18753411,Private Room 2 Blocks From Central Park / UWS,109106746,Omer,Manhattan,Upper West Side,40.79948,-73.96314,Private room,75,1,5,2017-06-23,0.20,1,0 +18753645,Beautiful Brooklyn Apartment! Newly Renovated!,130473272,Carla,Brooklyn,Prospect Heights,40.6806,-73.97164,Entire home/apt,150,2,140,2019-06-27,5.61,1,94 +18755777,Nice and fully furnished room in Staten Island,130493959,Ely,Staten Island,Port Richmond,40.63748,-74.13496,Private room,40,1,63,2019-05-27,2.42,1,343 +18755951,Cute studio in perfect location near Union Square,130496399,Amy,Manhattan,East Village,40.73193,-73.98861,Entire home/apt,200,3,0,,,1,0 +18756112,Luxury 1 Bed Apt- Central Park View,119838600,Lu,Manhattan,Upper West Side,40.7932,-73.96385,Entire home/apt,260,3,1,2017-09-22,0.05,1,0 +18758108,Sunlit Room w/ private bath @ Upper West Manhattan,101304664,Shuting,Manhattan,Upper West Side,40.80225,-73.96633,Private room,60,3,4,2017-09-04,0.15,1,16 +18758370,Genie's Lamp Garden Apartment,130524170,Tracy,Brooklyn,South Slope,40.66615,-73.98554,Entire home/apt,150,2,88,2019-02-23,3.53,1,0 +18758525,Large studio-Luxury Building Times Square,65744549,Ava,Manhattan,Hell's Kitchen,40.75997,-73.99923,Entire home/apt,254,1,18,2018-09-07,0.72,1,0 +18762619,Cozy East Village Room,103265024,Maureen,Manhattan,East Village,40.72681,-73.98963,Shared room,58,1,0,,,1,0 +18763188,Luxe Penthouse with Terrace/Upper West Side,169653,Terry,Manhattan,Upper West Side,40.80005,-73.9701,Entire home/apt,295,3,3,2019-06-22,0.27,1,0 +18764827,Cozy Room in Newly Redone Place 35 min to Times Sq,31482341,Daniel,Manhattan,Inwood,40.86854,-73.9182,Private room,45,1,2,2018-01-25,0.11,2,0 +18766576,Nicer than average - on best block in Wash.Heights,130582015,Allison,Manhattan,Washington Heights,40.85391,-73.93649,Private room,50,3,18,2019-06-23,1.78,1,298 +18767695,Two bedroom apartment for rent in Brooklyn,3409436,Cheryl,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.9603,Entire home/apt,80,4,2,2019-06-21,0.08,1,0 +18767961,Spacious and Sunny Private Bedroom in Dumbo,1649108,Allie,Brooklyn,Vinegar Hill,40.70257,-73.98053,Private room,80,1,53,2019-06-01,2.33,3,21 +18768127,HUGE Studio up to 4 people 15 min to Manhattan.,30237517,David,Queens,Forest Hills,40.73526,-73.85065,Entire home/apt,88,3,6,2018-05-18,0.27,6,0 +18768741,Furnished Studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74819,-73.976,Entire home/apt,150,30,3,2018-10-30,0.14,50,180 +18768978,"Clean, Spacious Room on Upper West Side",27582777,Sean,Manhattan,Morningside Heights,40.80371,-73.96324,Private room,70,3,16,2018-11-27,0.70,1,0 +18769363,"Spacious, sunny bedroom in Williamsburg/Greenpoint",24387853,Anada,Brooklyn,Greenpoint,40.72247,-73.95108,Private room,98,1,1,2017-06-02,0.04,1,0 +18769652,Beautiful Williamsburg Loft,1890427,Rose & Brian,Brooklyn,Williamsburg,40.71813,-73.94502,Entire home/apt,250,2,9,2018-05-20,0.36,1,0 +18770418,LARGE 3 BEDROOMS UP 9 People 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73437,-73.85227,Entire home/apt,238,3,2,2019-03-31,0.09,6,188 +18771633,"4 twin bunkbeds, 5 minutes to JFK",114975592,John And Colleen,Queens,Springfield Gardens,40.66413,-73.76651,Private room,100,1,15,2019-02-05,0.62,4,84 +18772198,Clean Cozy & Comfy Apartment In NYC!,41658748,Ben,Manhattan,Gramercy,40.73742,-73.98219,Entire home/apt,265,2,58,2019-06-09,2.65,3,323 +18774244,FURNISHED * ONE BED * DOORMAN * LUXURY * GYM *,60511673,Natie,Manhattan,Theater District,40.76044,-73.98321,Entire home/apt,399,10,0,,,1,64 +18776660,East Williamsburg/Bushwick Loft,130667097,Paul,Brooklyn,Williamsburg,40.70492,-73.93341,Private room,55,1,25,2018-12-30,0.96,2,364 +18776908,Luminous studio in Union Square,2544425,Margot,Manhattan,East Village,40.73334,-73.98904,Entire home/apt,160,7,35,2019-06-23,1.40,1,7 +18776925,Williamsburg Family townhouse,40428152,John,Brooklyn,Williamsburg,40.71335,-73.94115,Entire home/apt,350,5,0,,,1,0 +18778024,Modern Bright Bedroom 30 seconds to Subway!,779551,Lana,Queens,Long Island City,40.75607,-73.93022,Private room,100,2,91,2019-06-23,3.54,2,21 +18782064,STUDIO ON WEST 56TH COLUMBUS CIRCLE~DOORMAN,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76617,-73.98445,Entire home/apt,184,30,0,,,49,364 +18782857,SUTTON PLACE 1BR WITH VIEWS~EAST 57TH,2856748,Ruchi,Manhattan,Midtown,40.75794,-73.96143,Entire home/apt,315,30,0,,,49,364 +18783614,Oversized sun drenched loft in trendy Williamsburg,1156763,Marie-Astrid,Brooklyn,Williamsburg,40.71364,-73.96447,Entire home/apt,250,3,37,2019-06-08,2.35,1,174 +18785035,"Giant bedroom in Carroll Gardens, Brooklyn",130735852,Elsa,Brooklyn,Carroll Gardens,40.6737,-73.99891,Private room,77,2,18,2019-04-23,0.77,1,1 +18785349,12 Min to Manhattan! Spacious APT in Brooklyn,126897352,Jason & Mary,Brooklyn,Bushwick,40.70286,-73.91884,Entire home/apt,180,29,31,2019-01-03,1.19,2,147 +18787858,Fabulous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74814,-73.97693,Entire home/apt,150,30,1,2019-05-16,0.56,50,180 +18787950,Sun-drenched Apt in 1820's Style Home,2007724,Vanessa,Brooklyn,Crown Heights,40.67731,-73.94616,Entire home/apt,150,5,9,2019-01-02,0.35,1,78 +18789373,Whole apartment in Williamsburg 1 block to train,130774060,Fanny,Brooklyn,Williamsburg,40.70959,-73.95747,Entire home/apt,165,6,10,2019-05-15,0.39,1,18 +18789421,Peace in Brooklyn,130774685,Edmund,Brooklyn,Bedford-Stuyvesant,40.68843,-73.92536,Entire home/apt,125,3,96,2019-07-02,3.87,1,1 +18790004,Large 1 bed w/big kitchen & exposed brick,95786,Vincent,Manhattan,East Village,40.72791,-73.98929,Entire home/apt,150,10,5,2019-01-06,0.24,1,0 +18790512,Private Room in Beating Heart of NYC Art Scene,110349355,Justin,Brooklyn,Bushwick,40.70439,-73.92619,Private room,51,3,5,2017-09-19,0.19,1,0 +18791570,Small but cozy room near Park and Subway,33583621,Zachary,Brooklyn,South Slope,40.66458,-73.98722,Private room,53,3,70,2019-06-20,2.82,1,256 +18792188,Quiet and Clean Room in Downtown Manhattan,13907788,Kevin,Manhattan,Greenwich Village,40.73016,-74.00137,Private room,95,1,9,2018-09-17,0.36,1,0 +18792285,Clean and Comfortable Room near Columbia,55377720,Dan,Manhattan,Morningside Heights,40.81233,-73.95717,Private room,69,3,0,,,1,0 +18792703,Gorgeous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75023,-73.97664,Entire home/apt,195,30,1,2017-12-10,0.05,50,365 +18793151,"Cozy Home, Great Location",4099467,Vincent,Manhattan,Lower East Side,40.72146,-73.98838,Entire home/apt,125,1,2,2018-01-01,0.08,1,0 +18793633,Beautiful 1 Bed near Washington Square Park!!,38609043,Lauren,Manhattan,Greenwich Village,40.73193,-73.99931,Entire home/apt,299,2,28,2019-07-07,1.15,1,64 +18793901,Quiet & sunny bedroom in central Williamsburg,12345174,Oday,Brooklyn,Williamsburg,40.71816,-73.95799,Private room,146,2,14,2018-10-28,0.62,1,0 +18794243,Brooklyn Room Close to Manhattan,26738513,Malachi,Brooklyn,Bushwick,40.69319,-73.91642,Private room,55,3,49,2019-04-20,1.90,3,13 +18794627,1st Floor Williamsburg Brownstone With Yard !,66941336,Stephanie,Brooklyn,Williamsburg,40.71258,-73.96341,Private room,50,2,6,2017-09-14,0.24,1,2 +18794680,HUGE ROOM -- BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.69573,-73.91376,Private room,65,2,17,2019-05-24,1.21,2,349 +18794754,Chic 1 Bedroom Apartment in Coveted West Village,51001918,Cameron,Manhattan,West Village,40.73776,-73.99794,Entire home/apt,165,4,1,2017-06-11,0.04,1,0 +18794969,Gorgeous Renovated Bedroom in Bushwick!,4297106,Franck And Joshua,Brooklyn,Bushwick,40.69079,-73.9163,Private room,41,30,56,2018-12-17,2.21,2,280 +18795229,Ground Floor Studio,130822245,Joe Berat,Queens,Rego Park,40.72661,-73.86046,Entire home/apt,70,1,89,2019-06-23,3.42,1,157 +18795447,Large Private Room in Heart of Diversity.,89071431,Ikello,Bronx,Mount Eden,40.84473,-73.91175,Private room,55,2,112,2019-06-30,4.65,1,271 +18795448,Brooklyn room with a view,2482085,Michelle,Brooklyn,Bedford-Stuyvesant,40.68415,-73.95641,Private room,55,2,0,,,1,0 +18795534,"Luxury Studio, Large Private Terrace near Times Sq",130835383,Melissa,Manhattan,Chelsea,40.75229,-73.9955,Entire home/apt,250,2,1,2017-08-06,0.04,1,0 +18802366,"Clean, Spacious Bedroom In the Heart of Harlem.",2435941,Tykia,Manhattan,Harlem,40.82402,-73.94537,Private room,73,2,24,2018-06-25,0.93,1,0 +18803064,Once Upon Avant-garde Bushwick,126159726,Steven,Brooklyn,Bushwick,40.69962,-73.91646,Private room,63,3,96,2019-06-24,3.70,1,282 +18803219,One COSO private room in 108th,28649974,Ding,Manhattan,Upper West Side,40.80152,-73.96696,Private room,50,1,0,,,1,0 +18805588,Downtown Flushing Penthouse with a Stunning View,5962328,Alan,Queens,Flushing,40.75872,-73.82174,Entire home/apt,183,30,2,2018-10-13,0.19,15,365 +18806061,One Bedroom with Workspace in a great location,2902737,Sonya,Brooklyn,Williamsburg,40.71015,-73.94747,Entire home/apt,91,31,0,,,1,68 +18806323,"Seaside Nest +#SeasideNestNYC",130897041,Robert,Queens,Arverne,40.58934,-73.80055,Entire home/apt,250,2,48,2019-06-30,1.93,1,280 +18808260,"Chill Private Room in Crown Heights, Brooklyn",125871624,Ruben,Brooklyn,Crown Heights,40.66931,-73.95215,Private room,55,2,3,2017-07-30,0.12,1,0 +18809063,Lovely apartment in Brooklyn,58528354,Karen,Brooklyn,Crown Heights,40.67537,-73.91822,Entire home/apt,85,2,42,2019-06-21,1.71,1,147 +18811187,"1BR: Int'l apt near Mt Sinai, Columbia, Cent Pk.",6752799,Zach,Manhattan,East Harlem,40.79712,-73.94689,Private room,50,25,0,,,2,71 +18811240,Sunny duplex w/outdoor space & easy train access,2978784,Karen,Brooklyn,Sunset Park,40.65379,-74.00272,Entire home/apt,150,7,6,2018-08-16,0.25,1,1 +18811557,The Treehouse Loft | Featured in Apartment Therapy,3754948,Jean,Manhattan,Lower East Side,40.72007,-73.98385,Entire home/apt,305,2,6,2018-12-31,0.43,1,66 +18812046,nice /clean env.10 mins from JFK with free parking,130974654,Joseph,Queens,Cambria Heights,40.68722,-73.73254,Private room,80,5,23,2018-11-25,1.00,1,83 +18812153,Luxurious studio near NYU Hospital,120762452,Stanley,Manhattan,Murray Hill,40.75044,-73.9753,Entire home/apt,150,30,4,2019-02-06,0.18,50,180 +18812330,A Guest Room in a Bushwick Artist/Musician's Loft,71849302,Dave,Brooklyn,Williamsburg,40.70798,-73.93652,Shared room,64,1,69,2019-06-22,3.04,1,81 +18812670,Midtown Luxury Living room close to Highline,130982506,Chen,Manhattan,Chelsea,40.75378,-74.00274,Private room,68,14,0,,,1,0 +18813227,"★Comfy Bedroom in Convenient, awesome location!★",51380878,Jean Paul,Brooklyn,Flatbush,40.65068,-73.96073,Private room,31,1,83,2019-06-16,3.28,2,37 +18817404,1 BR Greenpoint Abode,8833885,Leslie,Brooklyn,Greenpoint,40.72528,-73.94467,Private room,125,1,1,2018-04-26,0.07,2,0 +18820068,Extra-Large 1 bedroom in Sutton Place,23572402,Andrew,Manhattan,Midtown,40.75754,-73.96177,Entire home/apt,275,3,0,,,1,21 +18820446,Splendid studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74891,-73.97589,Entire home/apt,150,30,2,2017-12-30,0.09,50,365 +18822687,Amazing apt at Financial District Manhattan,98038838,Raviv,Manhattan,Financial District,40.70833,-74.01068,Private room,70,3,18,2018-12-16,0.69,1,0 +18822775,2 Rooms+Private Bath in Large Colonial House,107169456,James,Brooklyn,Flatbush,40.64561,-73.96962,Private room,90,1,46,2019-07-02,1.80,1,260 +18823516,PRIME LOCATION/SUNLIT ROOM 2,129927411,Andrea,Manhattan,Chinatown,40.71682,-73.99843,Private room,130,1,141,2019-06-24,5.44,2,76 +18823750,Stylish Park Slope loft,31804021,Thomas,Brooklyn,South Slope,40.66412,-73.98162,Entire home/apt,390,10,4,2018-09-03,0.17,1,115 +18823774,One bed Doorman Building Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77896,-73.95146,Entire home/apt,160,31,6,2019-01-01,0.29,33,338 +18823930,Manhattan Luxury High-Rise Apt w/ Unbeatable Views,41382247,Dan,Manhattan,Hell's Kitchen,40.76011,-73.98828,Entire home/apt,275,1,0,,,1,0 +18823940,Bright room in hip bushwick location!,27522582,Gabriele,Brooklyn,Bushwick,40.70263,-73.91568,Private room,43,1,4,2017-05-28,0.15,3,0 +18823971,Gorgeous 1 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77299,-73.95745,Entire home/apt,119,30,3,2018-11-19,0.14,29,327 +18824754,"Sunny, private room !Sheepshead Bay Area.",74697676,Oksana,Brooklyn,Sheepshead Bay,40.59841,-73.96122,Private room,50,5,40,2019-06-19,1.57,1,321 +18824820,Newly renovated apartment for the travelers,76353083,Marlene,Brooklyn,Bergen Beach,40.62929,-73.90821,Entire home/apt,115,4,9,2018-03-07,0.36,1,50 +18826104,Beautiful sunny bushwick loft,22875538,Max,Brooklyn,Bushwick,40.70819,-73.92005,Private room,73,1,63,2019-01-03,2.45,2,0 +18826197,Room in 5 bedroom house with a backyard!,65407018,Harmony,Brooklyn,Greenpoint,40.72284,-73.93671,Private room,85,5,45,2019-05-28,1.79,5,355 +18826370,Heights III,9130040,Candace,Brooklyn,East Flatbush,40.66314,-73.93299,Private room,89,1,8,2019-06-30,0.61,6,365 +18828134,Manhattan Central Location Clean Big ENTIRE Studio,131109595,Xinchen,Manhattan,East Village,40.72772,-73.98091,Entire home/apt,75,4,0,,,1,0 +18828803,Amazing Apt step away from the Time Square/72C,48146336,Irina,Manhattan,Hell's Kitchen,40.76136,-73.99309,Entire home/apt,160,30,4,2018-06-16,0.17,20,313 +18828846,"Private Studio Apartment, Staten Island, NYC",131115416,Kat,Staten Island,Emerson Hill,40.60642,-74.11756,Entire home/apt,49,1,43,2019-07-01,1.67,1,64 +18835820,"Quiet, Cozy UES Studio Near the Subway",52777892,Amy,Manhattan,Upper East Side,40.76844,-73.95341,Entire home/apt,10,3,10,2018-10-22,0.39,1,0 +18836337,Modern Comfort,95564806,Olvin,Brooklyn,Brownsville,40.66032,-73.91341,Private room,55,2,58,2019-02-25,2.25,3,0 +18836532,"Spacious Ocean-Side Studio in +Brooklyn w/Parking",131180798,Maria,Brooklyn,Bath Beach,40.59855,-74.0067,Entire home/apt,119,2,51,2019-07-07,2.01,1,160 +18837073,"Bright, Modern Apt with Hi Speed Wifi! #10222",14480781,Dave,Brooklyn,Crown Heights,40.67578,-73.95491,Entire home/apt,85,30,20,2019-04-16,0.82,1,182 +18837416,*Luxury 1 Bedrm Private Designer Home & Roofdeck*,3203397,Brian,Manhattan,West Village,40.73321,-74.00242,Entire home/apt,350,1,105,2019-05-26,4.63,1,0 +18838643,Private bedroom in West Soho/West Village,3714721,James,Manhattan,SoHo,40.72681,-74.00771,Private room,76,2,60,2019-06-21,2.37,2,116 +18838909,Beautiful Seaview apt. Gated community. Near JFK.,131204454,Ronn,Brooklyn,Canarsie,40.63959,-73.88158,Entire home/apt,46,1,58,2019-07-05,2.29,1,80 +18840106,Master Bedroom-private bath&terrace -Williamsburg,78299086,Charlotte,Brooklyn,Williamsburg,40.70858,-73.9509,Private room,95,5,0,,,1,0 +18840683,"Quiet, 2-Bedroom Haven in hip Crown Heights",3323956,Saxon,Brooklyn,Crown Heights,40.67522,-73.94677,Entire home/apt,79,4,2,2019-02-11,0.08,1,0 +18840688,"Prime Williamsburg Modern Charm, steps to park",34676783,Natasha,Brooklyn,Greenpoint,40.71966,-73.95428,Entire home/apt,350,2,5,2018-09-17,0.20,1,0 +18840735,Light & Cozy SoHo Hacienda,130815919,Frank,Manhattan,SoHo,40.72633,-74.00207,Entire home/apt,205,2,109,2019-07-01,4.29,1,32 +18840866,Private Room with Private Bath Upper East Side,19424541,Barbara,Manhattan,Upper East Side,40.76749,-73.96246,Private room,190,1,15,2019-05-24,0.68,2,63 +18841864,Sunny apartment in Clinton Hill,2294171,Ro,Brooklyn,Clinton Hill,40.68318,-73.96067,Entire home/apt,120,2,1,2017-05-29,0.04,1,0 +18842507,Luxury Apt Financial Dist. steps from Wall Street,10355011,Luidmila,Manhattan,Financial District,40.71017,-74.00924,Private room,135,3,76,2019-06-30,2.93,1,338 +18842510,HuGe 8 Bed's / 2 Full Bath's + PRiVaTe BALCONY!!,31979360,Jacob,Brooklyn,Midwood,40.61421,-73.95347,Entire home/apt,111,90,0,,,1,365 +18842882,Kosher Midwood/Flatbush Apartment,57821225,Alyssa,Brooklyn,Midwood,40.62017,-73.96514,Entire home/apt,85,7,1,2017-07-29,0.04,1,0 +18844533,"1st Floor Suite with AC, private entry, and bath",131255262,Michael,Manhattan,Upper West Side,40.80292,-73.96692,Private room,80,1,42,2018-08-09,1.70,1,0 +18847331,Zen Private Rm with roof access in Upper Manhattan,7635592,Adrienne,Manhattan,Washington Heights,40.85031,-73.93901,Private room,49,7,10,2019-06-01,0.46,1,76 +18848869,Bedroom in a Cozy Apartment,131293304,Tobi,Manhattan,Harlem,40.81711,-73.93563,Private room,51,2,21,2019-06-02,0.87,1,0 +18849349,Chelsea Studio (King bed + convertible full sofa),50778925,Shary,Manhattan,Chelsea,40.74154,-74.00161,Entire home/apt,149,5,6,2019-05-05,0.24,1,0 +18849787,Large & sunny bedroom in heart of Williamsburg!,46113651,Andres,Brooklyn,Williamsburg,40.71275,-73.95665,Private room,55,1,0,,,1,0 +18851906,2 bed home in Upper West-4 people fit!,59884496,Liliana,Manhattan,Upper West Side,40.77127,-73.98191,Entire home/apt,270,2,8,2018-12-31,0.43,1,0 +18852048,"Clean, spacious and comfortable room at Bronx",108922928,Zeeshan,Bronx,Allerton,40.85961,-73.86361,Private room,49,3,1,2017-06-01,0.04,1,0 +18852200,Comfy Single Bedroom-Large East Village Apartment,42422050,Paula,Manhattan,East Village,40.72696,-73.97433,Private room,75,2,19,2019-04-29,0.99,2,303 +18852245,Beautiful Room in Historic Hamilton Heights,835019,Yasmin,Manhattan,Harlem,40.82265,-73.94686,Private room,55,21,7,2019-04-30,0.29,1,286 +18852919,THE PERFECT QUIET ATMOSPHERE WHEN HOME,129890157,Pauline,Bronx,Allerton,40.87063,-73.84896,Private room,70,1,3,2017-06-12,0.12,2,0 +18853435,B1Cozy Room in Long Island City Great Location.,79105834,Leo,Queens,Long Island City,40.75575,-73.93236,Private room,54,1,73,2019-06-10,2.89,9,279 +18855394,Cozy private bedroom,516015,David,Brooklyn,Williamsburg,40.70648,-73.95686,Private room,55,5,2,2017-06-21,0.08,1,0 +18855694,SOHO/NOLITA GEM (NYC's BEST LOCATION),764549,Joe,Manhattan,Nolita,40.72184,-73.99471,Private room,142,2,44,2019-06-12,1.82,1,246 +18855750,Flushing Haven (B),131354448,Tammie,Queens,Flushing,40.75402,-73.81317,Private room,50,2,54,2019-06-24,2.09,4,174 +18855980,Close by La Guardia airport,109526714,Aleida,Queens,East Elmhurst,40.76078,-73.87661,Private room,50,1,97,2019-06-27,3.86,2,149 +18856302,Immaculate and beautiful 2 BDR private apartment,130618404,Rachel,Brooklyn,Crown Heights,40.67155,-73.94189,Entire home/apt,109,1,93,2019-06-30,3.66,1,79 +18857134,Private Small Bedroom in Hell's Kitchen,131374030,Steven,Manhattan,Hell's Kitchen,40.76387,-73.99117,Private room,100,1,9,2017-12-28,0.35,1,0 +18857790,Private bedroom in a quiet and safe neighborhood,55813598,Karen,Brooklyn,Gravesend,40.60788,-73.97454,Private room,40,1,95,2019-07-06,3.69,2,354 +18857875,Cozy 1BR with private bathroom. Near everything!,131383679,Antonella,Manhattan,Upper West Side,40.78663,-73.97844,Private room,100,1,14,2018-07-27,0.55,1,24 +18858192,Sweet Home Away from Home - 1 Bedroom Apt,71146310,Patrick,Queens,Glendale,40.70515,-73.8945,Entire home/apt,99,4,62,2019-06-23,2.41,1,81 +18858761,Private Entrance Astoria Five min walk to subway,131392140,Vik,Queens,Astoria,40.77407,-73.92262,Entire home/apt,125,2,49,2019-03-17,1.99,5,86 +18865511,Bed Stuy Private Room - Hip Brooklyn Neighborhood,1652471,Sarah,Brooklyn,Bedford-Stuyvesant,40.68607,-73.95784,Private room,75,2,5,2018-01-07,0.20,1,16 +18866187,Carroll Gardens Modern Sunny Loft,4463379,Katy,Brooklyn,Gowanus,40.67718,-73.99656,Entire home/apt,350,3,0,,,1,0 +18867401,Studio apartment close to Central Park,128579948,Giampiero,Manhattan,Upper East Side,40.76439,-73.96569,Entire home/apt,250,2,85,2019-06-27,3.28,2,306 +18869228,CHARMING STUDIO HALF BLOCK TO CENTRAL PARK UWS,9293730,Inna,Manhattan,Upper West Side,40.78569,-73.97048,Entire home/apt,79,30,1,2017-10-16,0.05,16,329 +18869692,Beautiful Bright bedroom with private bathroom,1750299,Julie,Brooklyn,Williamsburg,40.71173,-73.94417,Private room,90,5,13,2019-06-16,0.60,2,255 +18870016,Cozy room in the heart of LES!,920237,Sara,Manhattan,Lower East Side,40.71826,-73.98455,Private room,80,2,42,2019-06-24,1.64,1,71 +18870281,Room in Ditmas Park Brooklyn,131476188,Kylie,Brooklyn,Flatbush,40.64917,-73.96236,Private room,29,3,0,,,1,0 +18870342,"Spacious and Beautiful 1 Bedroom Astoria, New York",131476092,Frederick,Queens,Long Island City,40.76151,-73.92643,Entire home/apt,85,4,13,2018-09-26,0.51,1,0 +18871455,Exquisite Single Bedroom in Shared Apartment C9,20559017,Yohan,Manhattan,Upper East Side,40.76312,-73.96045,Private room,55,30,1,2017-10-02,0.05,9,321 +18871571,"Sunny 1 Bedroom Apt, Lower East Side, Manhattan",26898157,Lilly,Manhattan,Lower East Side,40.71921,-73.99238,Private room,150,3,77,2019-06-17,3.10,1,59 +18871734,Best of Brooklyn - Williamsburg 2 Bed/2 Bath Apt,13096043,David,Brooklyn,Williamsburg,40.71666,-73.96644,Entire home/apt,250,4,40,2019-07-06,1.58,1,41 +18872076,The Peace Pad- 1 bedroom Full Bed,15017590,Kathleen,Manhattan,Harlem,40.82896,-73.94223,Private room,50,1,2,2017-06-09,0.08,1,0 +18872091,Traveler's Cabin,45605434,Adam,Queens,Long Island City,40.76365,-73.93192,Private room,60,30,4,2018-09-16,0.16,1,0 +18872495,Spacious room near the Midtown-close to everything,19339271,Marcia,Queens,Long Island City,40.74752,-73.92264,Private room,60,1,7,2017-11-12,0.32,1,0 +18872858,Elegant Studio in a great cottage,57165692,Charles,Bronx,Baychester,40.87188,-73.842,Entire home/apt,75,4,69,2019-07-06,2.68,2,119 +18873598,Lovely one bedroom suite in midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74966,-73.97601,Entire home/apt,175,30,0,,,50,180 +18873722,"Sunny cozy Bedstuy Room, 25 min from Manhattan",78711394,Julian,Brooklyn,Bedford-Stuyvesant,40.69244,-73.94575,Private room,33,6,0,,,1,0 +18873930,Furnished one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.7496,-73.97609,Entire home/apt,175,30,5,2018-12-03,0.21,50,147 +18874394,Lovely Caroll Garden 3BRs with large private deck,62734,Kremer,Brooklyn,Gowanus,40.67882,-73.99166,Entire home/apt,119,60,4,2018-06-09,0.19,2,156 +18874640,Stunning 2 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77296,-73.95711,Entire home/apt,148,30,2,2019-05-09,0.52,29,264 +18875426,Uber Zen Clean Modern Apartment in E-Williamsburg,33003994,Lima,Brooklyn,Williamsburg,40.70741,-73.94285,Private room,77,6,30,2019-04-02,1.19,1,71 +18875512,Great spot!Super convinient location and cozy Home,91361325,Kat Kat,Manhattan,Gramercy,40.73318,-73.98436,Entire home/apt,118,3,103,2019-07-03,4.02,1,17 +18875740,Cozy Bedroom in the heart of Manhattan,11163128,A,Manhattan,Hell's Kitchen,40.76221,-73.98891,Private room,350,3,28,2018-12-20,1.11,1,76 +18875994,Luxurious and Convenient 1 bedroom on the UWS,25822424,Kevin,Manhattan,Upper West Side,40.79166,-73.97319,Entire home/apt,170,3,0,,,1,0 +18876580,Private Bedroom in Lovely Astoria Home,131530387,Kerith,Queens,Astoria,40.75704,-73.92135,Private room,60,1,129,2019-07-03,5.11,1,95 +18876659,Private House Near Bay and Coney Island Park,131530792,Anton,Brooklyn,Sheepshead Bay,40.59019,-73.96123,Entire home/apt,105,2,22,2018-09-30,0.87,1,0 +18877341,One bedroom with private roof deck,4175606,Wilder,Brooklyn,Bushwick,40.69671,-73.92628,Entire home/apt,100,4,25,2019-06-12,1.05,1,56 +18877694,Cozy Guestroom ,131354448,Tammie,Queens,Flushing,40.75364,-73.8108,Private room,50,2,51,2019-06-24,1.98,4,156 +18878093,"Hip yet chic *private room* +10 minutes to city",73866735,Ashley,Brooklyn,Williamsburg,40.71066,-73.94127,Private room,65,1,1,2019-07-04,1,1,110 +18878260,Dreamy Leafy Tranquility for families + new SUV!,5374369,Chelsea And Alistair,Brooklyn,Carroll Gardens,40.68329,-73.99764,Entire home/apt,245,3,24,2019-07-01,0.97,1,13 +18878633,"Great location, spacious room, close to train!",71149842,Yaasha,Manhattan,East Village,40.7291,-73.97941,Private room,80,1,8,2018-05-28,0.31,2,0 +18879379,Time Square private studio,3291930,Mark,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,155,1,0,,,1,0 +18888212,"One bedroom, spacious in 3 bedrooms 2 baths",56265076,Andrea,Queens,Kew Gardens Hills,40.7224,-73.81039,Private room,40,6,3,2019-06-03,0.30,2,89 +18888585,1 bedroom in 4 BR 1 bath Apt females only,131621761,Annette,Brooklyn,East Flatbush,40.65292,-73.94269,Private room,50,1,0,,,1,0 +18889038,Quiet Bedroom in prime Park Slope!,80333891,Mai,Brooklyn,Park Slope,40.67386,-73.98439,Private room,40,7,2,2017-07-21,0.08,2,0 +18889564,Bright West Village Private Studio,65933105,Tori,Manhattan,West Village,40.73267,-74.00404,Entire home/apt,254,2,4,2017-11-26,0.17,1,0 +18889932,Beautiful cozy spacious Room near Park,11361046,Narina,Brooklyn,Crown Heights,40.66847,-73.94981,Private room,80,5,18,2018-04-30,0.72,1,312 +18890521,Updated: renovated 3 bedroom apt in Brooklyn.,131635044,Zoom Imports,Brooklyn,Bedford-Stuyvesant,40.6792,-73.93071,Entire home/apt,299,2,59,2019-06-16,2.31,1,180 +18891508,Private room#3 starting at $67 a night per person.,9898029,Anthony,Brooklyn,East Flatbush,40.6506,-73.92553,Private room,67,3,6,2019-05-19,0.27,5,307 +18891659,Private Upper East Side Room Great Location!,27552154,Sylvia,Manhattan,Upper East Side,40.76275,-73.96093,Private room,110,2,9,2018-02-19,0.36,2,0 +18892465,Chelsea Studio,15474495,Stacy,Manhattan,Chelsea,40.73884,-73.99767,Private room,150,1,1,2017-06-19,0.04,1,0 +18893669,"Master Bedroom w/ TV, AC, King Sized Bed",31314659,Muneer,Manhattan,East Harlem,40.79439,-73.94129,Private room,75,7,0,,,1,0 +18894145,"Bright, Beautiful & Welcoming in Williamsburg",24589216,Heidi,Brooklyn,Williamsburg,40.70849,-73.9619,Private room,80,1,19,2019-02-02,1.11,2,0 +18894322,"Spacious, Family-Friendly Cobble Hill townhouse",19001247,Lindsay,Brooklyn,Carroll Gardens,40.68333,-73.99802,Entire home/apt,800,3,1,2017-12-30,0.05,1,0 +18894445,Practical & Affordable Flat on Subway to Manhattan,2988712,Sasha,Bronx,Mount Hope,40.85152,-73.90374,Entire home/apt,48,90,2,2018-11-30,0.16,7,93 +18894931,Private Room in 2Br Apt,37032324,Jen,Brooklyn,Bedford-Stuyvesant,40.69334,-73.95079,Private room,52,6,5,2018-12-10,0.20,1,0 +18895063,Lovely Upper East Side Studio! Close to stuff,34649502,Pat,Manhattan,Upper East Side,40.77948,-73.95152,Entire home/apt,200,2,1,2017-06-20,0.04,1,0 +18895187,Cheap cozy room lovely area airport and mall 10min,45601111,Dlb,Queens,Laurelton,40.66971,-73.7473,Private room,37,2,8,2018-11-10,0.37,5,0 +18895509,Luxurious 1/1.5 (sleeps 4!) in Battery Park!,9484439,Nicole,Manhattan,Battery Park City,40.71842,-74.01523,Entire home/apt,200,1,4,2017-06-25,0.16,1,0 +18896540,PRIVATE BATHROOM AND KITCHEN AREA,131684478,Mervin (Michael),Staten Island,West Brighton,40.63452,-74.11707,Private room,45,2,47,2019-02-01,1.89,3,207 +18896824,Luxury Coliving Space in Modern Loft,4440278,Emmanuel,Brooklyn,Williamsburg,40.71143,-73.94009,Private room,119,3,10,2019-04-21,0.39,3,180 +18897119,法拉盛中心公寓楼高层,123646786,Zheng,Queens,Flushing,40.75575,-73.83261,Private room,60,2,45,2019-05-06,1.77,2,45 +18897423,Modern & Industrial LIC Accomodations,127560222,Christina,Queens,Long Island City,40.75578,-73.93666,Private room,259,2,3,2018-12-05,0.22,2,0 +18897901,Doll private room,17766289,Kaila,Bronx,Kingsbridge,40.86707,-73.90712,Private room,55,5,3,2018-01-06,0.12,2,364 +18898808,BK's Finest Jack&Jill ShareRoom Close to Train/Bus,50600973,Joyell,Brooklyn,Bushwick,40.69674,-73.92972,Shared room,25,1,105,2019-06-12,4.22,7,82 +18899768,Amazing private room in a 2 Bed/1Bath apartment!,14614795,Antonio,Manhattan,Upper East Side,40.76615,-73.95427,Private room,90,2,1,2017-06-09,0.04,1,0 +18902729,3Beds/Kitchen/wifi/US Open唐人街电梯公寓/厨卫/网快/美网赛事,80769114,Yoga,Queens,Flushing,40.75851,-73.8203,Entire home/apt,98,1,34,2019-06-20,1.38,1,55 +18906081,1-BR en-suite in prestige Brownstone home,9492212,Emily And Joel,Brooklyn,Park Slope,40.67075,-73.9769,Private room,149,1,0,,,4,0 +18907166,Midtown Manhattan at 45th Street,81128193,Norman,Manhattan,Midtown,40.75301,-73.97198,Private room,515,3,0,,,1,0 +18908083,2 Bedroom Garden Level Apartment,33075648,Kenny,Brooklyn,Bushwick,40.69292,-73.9094,Entire home/apt,137,4,61,2019-06-30,2.36,1,126 +18908212,Beautiful/Cozy 2BR Apartment,131772382,Eileen,Brooklyn,Bushwick,40.69297,-73.91788,Entire home/apt,70,2,93,2019-07-02,3.68,1,142 +18908252,Master bedroom in a two bedroom apartment.,11555258,Patrick,Brooklyn,Kensington,40.64249,-73.97105,Shared room,60,4,1,2018-08-05,0.09,2,0 +18908490,Spacious Studio steps from Central Park,7093861,Jeffrey,Manhattan,Upper West Side,40.77356,-73.98007,Entire home/apt,200,3,22,2019-07-07,0.90,1,28 +18908638,Renovated 20min train to enter city 5min to subway,20438455,Jason,Brooklyn,Borough Park,40.63993,-73.98209,Private room,50,2,118,2019-07-03,4.66,2,45 +18908676,"Big, bright room in bushwick in 3BR",119170289,Bam,Brooklyn,Bushwick,40.69501,-73.92538,Private room,45,3,4,2019-06-24,0.16,2,8 +18908677,Large private studio: Midtown West/Hell’s Kitchen,87315657,Hsiao,Manhattan,Hell's Kitchen,40.7625,-73.99568,Entire home/apt,125,2,6,2018-09-24,0.32,1,0 +18909484,"Cute, Cozy & Clean!",131783806,Cat,Manhattan,Washington Heights,40.85152,-73.93804,Private room,45,2,8,2017-06-29,0.31,1,0 +18909989,Bushwick loft,32880142,Kirstin,Brooklyn,Bushwick,40.70919,-73.92158,Private room,45,2,0,,,1,0 +18910029,Spacious 2 Bd Apartment in Central Park North,438083,Kanyi,Manhattan,Harlem,40.80115,-73.95262,Entire home/apt,112,3,1,2017-06-12,0.04,1,0 +18910492,Beautiful Room in the Heart of Astoria with view,131792379,George,Queens,Astoria,40.76834,-73.92093,Private room,55,1,0,,,1,0 +18911463,"Affordable, UES, Studio near Central Park",6759067,Bryon,Manhattan,Upper East Side,40.77127,-73.95493,Entire home/apt,105,2,21,2018-02-21,0.82,1,0 +18911633,Quiet 1-Bedroom in Greenwich Village,22781364,Dan,Manhattan,Greenwich Village,40.73002,-73.99804,Entire home/apt,175,3,3,2017-09-04,0.12,1,0 +18911893,BROWNSTONE BUILDING IN CLINTON HILLS,33977124,Donovan,Brooklyn,Bedford-Stuyvesant,40.68704,-73.95565,Private room,65,2,0,,,2,189 +18912084,"A spacious, private room flooded with light!",17419817,Michelle,Brooklyn,Fort Greene,40.68707,-73.97345,Private room,96,2,11,2018-10-22,0.43,1,0 +18913001,Renovated 1BR - A Different Side of Manhattan,45777549,Zach,Manhattan,Inwood,40.86739,-73.92,Entire home/apt,78,4,7,2018-07-08,0.29,1,0 +18913089,MASTER SUITE in 3 Story Loft in an old BK Church,23568850,Olivia,Brooklyn,Williamsburg,40.71592,-73.95666,Private room,120,3,4,2017-09-24,0.16,1,0 +18913450,Light Filled Private Room,27982346,Christopher,Manhattan,East Harlem,40.79729,-73.93537,Private room,49,7,5,2017-12-29,0.21,1,0 +18914656,Private Oasis (A),131354448,Tammie,Queens,Flushing,40.7547,-73.81238,Private room,66,2,56,2019-06-23,2.27,4,63 +18914730,IDEALLY LOCATED COZY COTTAGE,1776707,Luis,Bronx,Throgs Neck,40.83051,-73.82511,Entire home/apt,95,1,266,2019-06-28,10.34,1,345 +18915587,Bright and Sunny Brooklyn Sanctuary,60626720,Timothy,Brooklyn,Bushwick,40.69811,-73.9311,Private room,43,3,2,2017-06-01,0.08,1,0 +18915658,"Sunny, clean & friendly Williamsburg room",45935367,Ellena,Brooklyn,Williamsburg,40.70736,-73.95571,Private room,70,1,39,2019-06-25,2.03,1,2 +18916381,Large Park Slope Home with Private Garden,6252064,Amy,Brooklyn,Sunset Park,40.65969,-73.99248,Entire home/apt,265,2,20,2019-06-02,0.79,1,41 +18916610,Brooklyn Precious Gem,126176275,Audrey,Brooklyn,East Flatbush,40.63683,-73.93123,Private room,44,4,24,2019-06-23,1.07,4,87 +18916850,Sunny Bedroom in the Heart of Bushwick!!!,44679058,Daniel,Brooklyn,Bushwick,40.69976,-73.9319,Private room,35,2,2,2017-06-28,0.08,1,0 +18916917,Dynamic Solitude,32613511,Geetika,Manhattan,Midtown,40.74384,-73.98243,Shared room,55,1,1,2017-05-29,0.04,1,0 +18917540,Sunny Modern Bedroom 30 seconds from Subway!,779551,Lana,Queens,Long Island City,40.75844,-73.93154,Private room,100,2,13,2019-01-04,0.51,2,0 +18917771,Roomy! Clean! 2 Bedroom in Bensonhurst- Sleeps 9,131858158,Dan,Brooklyn,Bensonhurst,40.60683,-73.99743,Entire home/apt,123,2,62,2019-06-30,2.48,2,131 +18922939,Harlem Home Away from Home!,15553988,Arielle,Manhattan,Harlem,40.82843,-73.94672,Entire home/apt,100,3,4,2019-06-25,0.16,1,0 +18923188,Spectacular pool 2 Bed 1 Bath Huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77895,-73.94974,Entire home/apt,200,31,3,2018-12-03,0.19,33,281 +18924273,Private Budget Room for Awesome Guests #2,97018938,Ude,Brooklyn,Canarsie,40.63895,-73.90868,Private room,50,1,74,2019-06-15,2.88,2,179 +18924446,Peaceful cozy place in the middle of the crowds.,57230304,Imanuelly,Queens,Elmhurst,40.73218,-73.88461,Private room,75,1,1,2019-05-05,0.46,3,364 +18924938,"Oasis in Stuyvesant Heights, Brooklyn",131910116,Marc,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93607,Entire home/apt,225,3,34,2019-07-01,1.52,1,258 +18926057,Cozy Bohemian chic apt in Bed-stuy,87371335,Massy,Brooklyn,Bedford-Stuyvesant,40.68539,-73.94973,Private room,51,2,39,2019-06-17,1.55,1,276 +18927333,Sunset & Chill: Master BR Sunset Park brownstone,3955342,Samuel,Brooklyn,Sunset Park,40.64478,-74.01318,Private room,45,7,3,2017-07-11,0.12,1,0 +18929564,Charming Brooklyn Townhouse Close to Subways,6271674,Alexandra,Brooklyn,Crown Heights,40.66482,-73.95345,Entire home/apt,125,3,2,2018-01-02,0.11,1,0 +18929965,Private bedroom - Next to Subway & Central Park,92650708,Kristen,Manhattan,Upper East Side,40.76422,-73.96612,Private room,88,1,59,2019-06-29,2.34,1,34 +18931423,**Cozy Space - Private Access**,10655479,Tom,Brooklyn,East Flatbush,40.6497,-73.94754,Private room,70,2,85,2019-06-23,3.33,1,16 +18931595,Room in Apt near Central Park & Columbia,20812159,Gio,Manhattan,Harlem,40.80214,-73.95658,Private room,55,2,8,2017-07-29,0.31,1,0 +18932586,Completed New studio @ Luxury apartment,35405054,Luo,Queens,Long Island City,40.75027,-73.94236,Entire home/apt,104,1,7,2017-11-26,0.28,1,0 +18933994,"△PENN STATION ,Private room with Full kitchen△",131985573,James,Manhattan,Chelsea,40.75118,-73.99902,Private room,90,2,39,2019-06-06,1.56,1,17 +18934106,JFK 10 & LGA 15 MINUTES AC BEDROOM ATTCH BATHROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69482,-73.82551,Private room,59,1,123,2018-08-14,4.85,5,0 +18934728,A Place of Comfort,131848646,Modesta,Manhattan,Washington Heights,40.83827,-73.94393,Private room,55,7,26,2019-06-29,1.06,1,57 +18935148,Cozy Paradise,131993336,David,Queens,Forest Hills,40.71923,-73.85189,Private room,175,1,47,2019-06-23,2.14,2,176 +18935359,Magnificent Lakeview Home on Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.74982,-73.8061,Entire home/apt,1500,3,0,,,6,256 +18935508,Entire space !!! Yours alone! New building,43252773,Karim,Manhattan,Harlem,40.81119,-73.94751,Entire home/apt,199,2,5,2019-06-02,0.24,2,61 +18942038,Lovely and quiet studio in Bushwick,12155032,Clemence,Brooklyn,Bushwick,40.69412,-73.91039,Entire home/apt,150,3,6,2018-07-05,0.27,1,0 +18942119,Studio apartment near Columbus Circle/Central Park,4264890,Amedeo,Manhattan,Midtown,40.76461,-73.98263,Entire home/apt,145,3,66,2019-06-10,2.61,1,9 +18942156,Extreme Luxury Apt @ Times Sq w amazing river view,2340947,Lym,Manhattan,Hell's Kitchen,40.76224,-73.99909,Entire home/apt,220,3,8,2017-09-27,0.31,1,0 +18942358,Park Slope 2 bedroom garden apartment,131622175,Raymond,Brooklyn,Park Slope,40.66723,-73.97607,Entire home/apt,105,10,4,2019-05-31,0.20,1,258 +18942735,Spacious 2 Room Duplex with Epic Yard - Sleeps 6,5153110,Andrew,Brooklyn,Crown Heights,40.67125,-73.95782,Entire home/apt,185,3,9,2018-10-09,0.41,1,0 +18943821,"1 bedroom in Bushwick , Brooklyn",107579819,Tal,Brooklyn,Bushwick,40.69491,-73.92581,Private room,45,3,8,2019-03-15,0.31,2,0 +18944834,Huge private bedroom in the heart of Manhattan,5295202,Uly,Manhattan,Upper East Side,40.76387,-73.9618,Private room,115,2,42,2019-06-29,1.69,1,38 +18946091,Beautiful Bay Ridge room,62475681,Nina,Brooklyn,Fort Hamilton,40.62327,-74.03543,Private room,90,6,0,,,1,365 +18946105,Peaceful Garden Oasis in Heart of Park Slope,127681510,Maya,Brooklyn,Park Slope,40.66682,-73.9768,Entire home/apt,200,2,80,2019-07-06,3.43,1,70 +18946117,Sunny 2 bedroom apartment on Upper East Side,590825,Alex,Manhattan,Upper East Side,40.77559,-73.95033,Entire home/apt,160,2,2,2017-08-12,0.08,1,0 +18946376,"Small cute bedroom in Astoria, Queens/LIC",22899212,Carmen,Queens,Ditmars Steinway,40.77204,-73.90868,Private room,35,26,1,2017-09-02,0.04,1,0 +18946416,Beautiful Brooklyn Brownstone,19867664,Cheryl,Brooklyn,Crown Heights,40.671,-73.94703,Entire home/apt,200,1,105,2019-07-06,4.57,2,274 +18948184,Upper East Side Oversized Studio,132103681,Kelly,Manhattan,Upper East Side,40.78285,-73.94875,Entire home/apt,129,30,2,2017-06-24,0.08,1,0 +18948914,MODERN GARDEN 1BR IN NEWLY RENOVATED TOWNHOUSE,70804640,Akiko,Brooklyn,Bedford-Stuyvesant,40.68378,-73.95592,Entire home/apt,1067,2,64,2019-06-29,2.51,1,32 +18949137,"Clean and Simple 1-Bedroom, Steps from University",33683538,Frank,Manhattan,Morningside Heights,40.81002,-73.95958,Entire home/apt,120,12,11,2019-04-22,0.43,1,0 +18949153,Sunny One Bedroom off the Park,25391872,Pavel,Brooklyn,Prospect-Lefferts Gardens,40.65585,-73.95582,Entire home/apt,105,1,7,2017-06-30,0.27,1,0 +18949917,Workspace Room 2,9864136,Anthony,Brooklyn,Bushwick,40.68603,-73.91438,Private room,36,2,8,2018-08-22,0.37,26,311 +18950091,"Big and Comfy in Crown Heights, Brooklyn",106351521,Andrew,Brooklyn,Prospect-Lefferts Gardens,40.66268,-73.94963,Private room,100,2,0,,,1,0 +18956236,Luxe Loft Apartment-10 minutes from Manhattan!,132178349,Francis,Queens,Long Island City,40.7476,-73.94433,Private room,74,4,34,2019-05-15,1.38,1,8 +18957055,Spacious Studio - Near Park & MTASubway,35201199,Ali,Brooklyn,Windsor Terrace,40.64882,-73.97629,Entire home/apt,68,2,5,2017-09-24,0.20,1,0 +18957522,Entire One Bedroom Apt-Great Location In Manhattan,37100193,Michelle,Manhattan,Midtown,40.75452,-73.96634,Entire home/apt,122,1,120,2019-06-21,5.03,1,220 +18957774,1 bedroom UWS,132194726,Carlos,Manhattan,Upper West Side,40.78841,-73.97461,Entire home/apt,200,5,0,,,1,0 +18958323,Tranquility,21190402,David,Staten Island,Emerson Hill,40.60577,-74.12819,Private room,85,1,0,,,1,0 +18958355,Delightful LIC Brownstone,57643057,Daniel,Queens,Long Island City,40.74617,-73.94645,Private room,71,7,94,2019-06-16,3.66,2,194 +18958724,GIANT BUSHWICK ROOM - PRIVATE ACCESS - SHARED APT,40510005,Hugo,Brooklyn,Bushwick,40.68923,-73.9154,Private room,50,1,11,2017-07-28,0.44,1,0 +18959626,"Grand Central. Clean, Quiet & Elevator. +Park Ave.",21706118,Yogita,Manhattan,Murray Hill,40.75071,-73.97995,Private room,138,2,41,2019-06-21,1.90,1,66 +18960386,"Private Room, Modern Finishes - AC and Backyard!",132219056,Jason,Brooklyn,Bedford-Stuyvesant,40.69091,-73.93667,Private room,39,2,65,2019-06-06,2.57,2,223 +18960496,In the Heart of Manhattan New York,132219692,Garen,Manhattan,Midtown,40.74683,-73.98761,Entire home/apt,158,1,138,2019-06-24,5.45,1,142 +18961150,Room with a view,5139965,Jamie,Queens,Long Island City,40.75125,-73.93807,Entire home/apt,195,1,3,2017-06-26,0.12,1,0 +18962847,Spacious Room in the heart of Bushwick,58773420,Chrissy,Brooklyn,Williamsburg,40.70602,-73.93821,Private room,80,3,4,2017-06-18,0.16,1,0 +18962916,Very comfy and only minutes to JFK and famous mall,128086219,Hannah,Queens,Rosedale,40.65283,-73.73887,Private room,38,2,61,2019-06-29,2.39,2,171 +18962999,Artist studio in the heart of Bushwick,22100955,Gabriella,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93359,Entire home/apt,134,4,65,2019-06-09,2.56,1,130 +18963479,Studio apt in Midtown East steps to UN,132245692,Stay With US!,Manhattan,Midtown,40.75169,-73.97323,Entire home/apt,70,2,79,2019-06-22,3.21,1,98 +18970683,Bushwick Cozy Room,131476075,Lakisha,Brooklyn,Bushwick,40.68756,-73.91326,Private room,50,1,31,2019-07-01,1.24,8,179 +18971860,Modern Oasis bedroom in East Williamsburg,4189991,Mandi,Brooklyn,Williamsburg,40.70821,-73.94274,Private room,60,2,0,,,1,0 +18971993,Sunny Bedroom Steps to Subway & Central Park,128237188,Mante,Manhattan,East Harlem,40.79631,-73.94348,Private room,79,3,66,2019-06-25,2.67,1,263 +18972792,3 Bedroom Prewar Park Slope Apt - great 4 families,59799262,Max,Brooklyn,Gowanus,40.66724,-73.99328,Entire home/apt,150,6,2,2017-07-30,0.08,1,0 +18975097,Quiet and hip Astoria house (15 min. to Manhattan),17079377,Joseph,Queens,Ditmars Steinway,40.77655,-73.91304,Private room,50,1,12,2019-05-21,0.63,1,0 +18976585,"sunny room, 2 mins to subway & 15mins to Manhattan",27131793,James,Queens,Jackson Heights,40.74712,-73.89329,Private room,46,1,19,2017-09-09,0.75,1,0 +18976933,A very cozy apartment in Williamsburg.,111308649,Aiana,Brooklyn,Williamsburg,40.71445,-73.94593,Private room,65,3,2,2018-04-26,0.13,1,0 +18979087,Simple and clean bedroom with good view and light,70074907,Emily,Manhattan,Roosevelt Island,40.76873,-73.94397,Private room,51,1,2,2017-06-16,0.08,2,0 +18979981,"Spacious studio in the West Village, NYC",4365106,Neelu,Manhattan,West Village,40.73179,-74.00106,Entire home/apt,176,3,13,2019-05-26,0.60,1,64 +18984088,Large Clean Safe Private Bedroom by Lehman College,2511668,David,Bronx,Kingsbridge,40.87271,-73.89972,Private room,60,3,19,2019-07-02,0.75,1,81 +18985595,"BROOKLYN NOOK +Your home away from home",132435618,Ayinde,Brooklyn,East New York,40.67061,-73.88004,Entire home/apt,95,2,91,2019-06-23,3.63,1,60 +18988028,Peaceful home to come on Budget.,131211034,Monica A,Bronx,University Heights,40.85484,-73.90646,Private room,60,1,1,2017-11-25,0.05,1,0 +18988814,Brooklyn house - steps to Prospect Park,88322109,Daniel,Brooklyn,Windsor Terrace,40.65417,-73.97405,Entire home/apt,350,6,0,,,1,47 +18989137,Boerum Hill Beauty,132464510,Christine,Brooklyn,Boerum Hill,40.68508,-73.98413,Private room,125,1,8,2018-10-07,0.32,1,156 +18992110,Charming Nolita Apartment,12420115,Constanze,Manhattan,Lower East Side,40.7197,-73.99331,Entire home/apt,170,1,16,2019-02-18,0.63,1,0 +18992672,Private room in amazing location! (rooftop access),47464383,Gida,Manhattan,Hell's Kitchen,40.7591,-73.98971,Private room,350,2,1,2017-07-05,0.04,1,0 +18992796,ROOM 10,74633496,Justine,Bronx,University Heights,40.85624,-73.90946,Private room,40,3,26,2019-06-16,1.03,5,365 +18993091,Brooklyn Spacious Hip + Cosy Room in 2 bedroom,132485225,Kate + Max,Brooklyn,Bensonhurst,40.61767,-73.99176,Private room,42,8,26,2019-06-06,1.04,1,43 +18993379,Home &Garden: lots local+fast 2 Manhattan/Brooklyn,132266502,Sharlene,Staten Island,Westerleigh,40.61357,-74.13566,Entire home/apt,103,3,1,2018-07-29,0.09,1,189 +18993398,Gorgeous Comfy Apartment,132484183,Philip,Queens,Jamaica,40.69256,-73.79988,Entire home/apt,165,3,53,2019-07-06,2.14,1,153 +18994394,Quiet Room With a View in South Slope,6825747,Phaedra,Brooklyn,Sunset Park,40.66134,-73.99619,Entire home/apt,128,5,6,2019-07-01,0.25,1,0 +18994641,"Rockaway Chic Houseboat Escape, Serene & Airy!",3339820,Natasha,Queens,Arverne,40.59486,-73.78856,Entire home/apt,250,2,10,2019-06-23,0.40,1,166 +18994965,Thee Bohemian BNB Astoria,132486597,Matt,Queens,Astoria,40.77126,-73.92088,Private room,60,1,54,2019-06-16,2.21,1,73 +18996087,Ideal Williamsburg Apartment,58108232,Caitlin,Brooklyn,Williamsburg,40.71358,-73.96519,Entire home/apt,109,2,0,,,1,0 +18996206,Modern 1BD Condo in Upper Eastside,132513543,Stephanie,Manhattan,Upper East Side,40.76269,-73.96053,Entire home/apt,465,4,1,2017-10-09,0.05,1,0 +18996283,Midtown NY,48590699,Isabelle,Manhattan,Midtown,40.75169,-73.97116,Private room,100,1,8,2017-07-24,0.32,1,0 +18996738,Sunny big bedroom in lively Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.6721,-73.95363,Private room,40,14,1,2017-07-01,0.04,2,0 +18997233,Comfy Bedroom in Park Slope,80333891,Mai,Brooklyn,Gowanus,40.67379,-73.9873,Private room,45,30,2,2017-11-26,0.10,2,0 +18997283,Modern room in Prospect Heights,13237695,George,Brooklyn,Prospect Heights,40.67396,-73.96427,Private room,85,3,3,2018-01-15,0.13,1,189 +18997371,Cozy Getaway,90104417,Sueann,Staten Island,Tottenville,40.50873,-74.23914,Entire home/apt,85,2,49,2019-07-01,2.08,2,159 +18997373,"Brooklyn 3 BDR Townhouse: style, comfort, location",92987625,Jake,Brooklyn,Clinton Hill,40.68277,-73.95886,Entire home/apt,225,3,0,,,1,0 +18997559,Heart of Brooklyn,56076854,Miranda,Brooklyn,Bushwick,40.6949,-73.9116,Private room,65,5,20,2019-04-21,0.78,2,365 +18997907,Sunny and spacious room in East Williamsburg!,49270426,Elena,Brooklyn,Williamsburg,40.70445,-73.94359,Private room,55,6,1,2018-04-25,0.07,1,0 +18998283,Greenpoint Room,19603674,Sneh,Brooklyn,Greenpoint,40.72506,-73.93802,Entire home/apt,59,3,0,,,1,0 +18998595,Park Slope garden oasis,64453478,Karli,Brooklyn,South Slope,40.66615,-73.98712,Entire home/apt,225,2,78,2019-06-09,3.18,1,80 +18999045,Modern 1 bedroom in Boerum Hill,21772730,Suhail,Brooklyn,Gowanus,40.68318,-73.98578,Entire home/apt,200,5,0,,,1,0 +18999626,World Pride dream stay,35323444,Frankie And J,Manhattan,Hell's Kitchen,40.76199,-73.98758,Private room,200,3,1,2019-06-10,1,1,8 +18999839,Spacious private room with private bathroom,76359133,FuKang,Queens,Fresh Meadows,40.73862,-73.79184,Private room,55,1,113,2019-06-30,4.44,3,137 +19000161,Super Chill Studio,132559939,Xavier,Brooklyn,Williamsburg,40.71893,-73.96232,Entire home/apt,180,2,20,2019-01-01,1.17,1,0 +19001879,SPRING FORWARD GREENPOINT STUDIO W/YARD,132576479,Evelyn,Brooklyn,Greenpoint,40.72257,-73.94544,Entire home/apt,115,30,8,2019-05-17,0.37,1,183 +19007359,Massive Sun-Filled Loft in Prime Williamsburg,21657100,Jourdan,Brooklyn,Williamsburg,40.71706,-73.96423,Entire home/apt,185,2,36,2018-12-31,1.44,1,85 +19009220,Bushwick Beaut Available,60494212,Breanna,Brooklyn,Bushwick,40.69481,-73.92244,Private room,50,3,1,2017-07-31,0.04,1,0 +19010266,Jul 16 - Aug 4 16 1-bed close to Madison Sq. Park,132629359,Brian,Manhattan,Flatiron District,40.74165,-73.98486,Entire home/apt,218,4,3,2017-12-31,0.13,1,9 +19010699,Waterfront studio apartment 1 stop to Manhattan!,25346530,Garrett,Queens,Long Island City,40.74285,-73.95597,Entire home/apt,99,1,3,2017-06-16,0.12,1,0 +19010965,Amazing Bright Room With Separate Bathroom,27522582,Gabriele,Brooklyn,Bushwick,40.70075,-73.91644,Private room,70,1,0,,,3,0 +19011068,COZY GEM,132635232,Monique,Manhattan,Harlem,40.81451,-73.94478,Private room,99,2,59,2019-06-23,2.38,1,362 +19011267,East Village Bedroom for Rent,6720525,Robert,Manhattan,East Village,40.72204,-73.97924,Private room,100,3,64,2019-06-30,2.58,1,224 +19011527,cool three bedroom on 111th street,5490071,Alex,Manhattan,East Harlem,40.79475,-73.94247,Entire home/apt,150,4,67,2019-06-30,2.70,3,242 +19011610,Geometric Getaway,19544315,Cal,Manhattan,Washington Heights,40.83318,-73.94081,Private room,35,1,0,,,2,0 +19012156,Private Room in Sunny Williamsburg location,2261706,Dana,Brooklyn,Williamsburg,40.7084,-73.9551,Private room,75,2,3,2017-07-24,0.12,1,0 +19012181,Hamptons-esque Brooklyn Condo,132644162,Lindsay,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.95757,Entire home/apt,250,1,1,2017-06-22,0.04,1,0 +19012262,Sunny Spacious 2 bedroom condo,132644665,Michelle,Brooklyn,Canarsie,40.62986,-73.90638,Private room,78,2,45,2019-06-30,1.78,1,41 +19012370,"Parks, Marina and New York skyline in one place.",10447807,Ari,Manhattan,Battery Park City,40.71588,-74.01691,Entire home/apt,250,4,0,,,1,0 +19013171,Central Manhattan Apt,56909,Peter,Manhattan,Kips Bay,40.74214,-73.98048,Private room,117,7,1,2018-12-22,0.15,1,332 +19013218,Large Private 1 Bedroom Apt in Hell's Kitchen Area,10903067,Justin,Manhattan,Hell's Kitchen,40.76619,-73.98987,Entire home/apt,179,3,17,2019-05-11,0.67,1,5 +19013613,4 Bed 3.5 Bath in Manhattan,129474716,Abcstay,Manhattan,West Village,40.73983,-74.00586,Entire home/apt,1599,30,6,2018-01-19,0.24,1,0 +19013673,Comfy Queen Size Bed Near Prospect Park!,5944076,Lisanne,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.95263,Private room,49,2,15,2019-06-12,0.59,1,251 +19015029,Private Cabin in New-York City (Chelsea Dictrict),117365574,Maria,Manhattan,Chelsea,40.74806,-73.99665,Private room,85,1,77,2019-06-20,3.84,5,310 +19015421,Private Room in Lower East Side Apartment,17099762,Maddy,Manhattan,Lower East Side,40.7231,-73.9927,Private room,80,2,0,,,1,0 +19015592,"Spacious, Quiet, Cozy Art-Filled Chelsea Apartment",22221213,George,Manhattan,Chelsea,40.74183,-73.99878,Entire home/apt,350,2,10,2019-06-23,0.72,1,104 +19015637,Furnished Studio on Upper East Side,20287719,Jarid,Manhattan,Upper East Side,40.77138,-73.95353,Entire home/apt,100,5,0,,,1,0 +19015721,Entire apartment 2 beds/2baths with Rooftop !,3309783,Sandra,Manhattan,Harlem,40.80545,-73.95489,Private room,125,6,3,2017-12-31,0.12,1,0 +19017366,King size room in foodie heaven!,41387722,Michael,Queens,Astoria,40.77084,-73.92601,Private room,65,21,0,,,1,0 +19017429,Large private room in a nice apartment,41171451,Miriam,Manhattan,Harlem,40.82634,-73.95061,Private room,80,1,18,2019-01-06,0.75,1,179 +19017889,2bed Williamsburg Loft w Roof Access + City Views,92342,Ashley,Brooklyn,Williamsburg,40.72059,-73.95847,Entire home/apt,220,3,42,2018-11-04,1.71,1,0 +19018157,"Great and Cozy 2 BR in Glendale ,Queens NY",132698746,Joanna,Queens,Glendale,40.70388,-73.88012,Entire home/apt,100,2,117,2019-06-30,5.33,1,3 +19018768,spacious 2 beds in the LES w garden,185745,Alessandra,Manhattan,Lower East Side,40.71284,-73.99066,Entire home/apt,300,2,0,,,2,0 +19018914,Private bedroom with balcony in Williamsburg,11540240,Nolwenn,Brooklyn,Williamsburg,40.70866,-73.95003,Private room,40,7,1,2017-06-24,0.04,1,0 +19018987,2 bedroom family luxury modern,170553,Hilary,Manhattan,Upper West Side,40.77565,-73.98684,Entire home/apt,389,6,0,,,1,105 +19019159,Perfect Williamsburg room!,5049863,Martijn,Brooklyn,Williamsburg,40.71099,-73.95267,Private room,45,14,1,2018-09-20,0.10,1,0 +19019275,Nice apartment near Lincoln Center,71360671,Yuhua,Manhattan,Upper West Side,40.77317,-73.98729,Entire home/apt,90,30,0,,,1,117 +19019325,HUGE ROOM WITH PRIVATE KITCHEN- Manhattan -,132711675,Yifat,Manhattan,Murray Hill,40.74736,-73.97838,Private room,60,10,0,,,1,19 +19019762,One bedroom,7813520,Cynthia,Brooklyn,Bushwick,40.6948,-73.92093,Private room,49,2,55,2019-06-21,2.15,1,332 +19021031,Simple and clean bedroom with good view & light 2,70074907,Emily,Manhattan,Roosevelt Island,40.7687,-73.94308,Private room,51,1,0,,,2,0 +19027786,The Diamond Room,33552302,Ese,Manhattan,East Harlem,40.80244,-73.94409,Private room,125,1,11,2019-05-05,0.44,1,341 +19028078,Elegant Guest Room A,44547688,Carol,Brooklyn,East New York,40.67249,-73.8782,Private room,52,1,13,2019-05-26,0.53,2,365 +19030149,"Beautiful, Comfortable Apt. in Convenient Location",182461,Jose,Queens,Ozone Park,40.67488,-73.85568,Entire home/apt,110,3,81,2019-06-30,3.33,2,9 +19031108,"Cozy Private Room in Astoria, near LGA and Midtown",132801944,Shampa,Queens,Astoria,40.76877,-73.91237,Private room,38,4,19,2017-12-22,0.75,2,188 +19032635,Bright & Spacious Upper Manhattan Apartment!,49193707,Devyn,Manhattan,Washington Heights,40.84977,-73.93536,Private room,60,5,16,2019-05-18,0.65,1,0 +19032888,Spacious Room in Huge Sunny Apartment,36651854,Devony,Manhattan,Washington Heights,40.8336,-73.94088,Private room,55,6,12,2019-06-05,0.47,1,3 +19034388,"Gorgeous, Family-Friendly, NYC Garden Apt!",706623,Emilia,Brooklyn,Bushwick,40.69441,-73.90881,Entire home/apt,119,3,12,2019-04-27,0.51,4,50 +19035295,Cozy Apartment in Bushwick,93356179,Morgan,Brooklyn,Bushwick,40.70674,-73.9201,Entire home/apt,121,5,3,2017-07-19,0.12,1,0 +19035560,Vibrant Brick-Exposed 1Bedroom in the East Village,16026934,Abir,Manhattan,East Village,40.72136,-73.97882,Private room,89,2,14,2018-02-19,0.55,1,0 +19036088,Private Heart-of-Williamsburg Bedroom!,6164507,Adam,Brooklyn,Williamsburg,40.71199,-73.96317,Private room,60,7,0,,,1,0 +19036290,"Private Room and Bath, 1 block to train, Wash/Dry",912657,Shawn,Brooklyn,Bedford-Stuyvesant,40.68054,-73.94129,Private room,80,4,3,2019-01-02,0.12,1,104 +19036361,Ms. Dee Cozy Bedroom you feel like home!! Room 2,97794385,Debra,Queens,Jamaica,40.68347,-73.79461,Private room,60,2,42,2018-11-04,1.65,2,0 +19036742,Private Room near Columbia University,16070950,Lorenzo,Manhattan,Morningside Heights,40.81192,-73.96164,Private room,90,20,1,2017-12-31,0.05,1,0 +19037873,Basic place :) Forest Hills Rego Park,26440775,Anthony,Queens,Forest Hills,40.72902,-73.8474,Entire home/apt,115,30,12,2018-06-17,0.47,1,66 +19038705,Chic Clason Point Condo,17122534,Eliu,Bronx,Clason Point,40.80652,-73.85312,Entire home/apt,350,3,1,2018-08-27,0.09,1,0 +19038815,"1 Block from Subway, Central Location, Great Price",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.69144,-73.956,Private room,85,1,177,2019-06-24,7.05,3,49 +19044895,Private room in 2br apartment near subway (train),85526404,Zakir And Shagraf,Queens,Flushing,40.75448,-73.82295,Private room,55,1,37,2018-07-25,1.46,1,0 +19046687,The Absolute Best Location in NYC – Priv. Bedroom,14396342,Ben,Queens,Long Island City,40.74286,-73.95417,Private room,61,2,111,2019-07-02,4.46,1,109 +19047711,Live like a New Yorker in bright LES bedroom!,26410240,Maxime,Manhattan,Lower East Side,40.72083,-73.99205,Private room,95,6,2,2017-08-04,0.08,1,0 +19048034,The Calm Stay- Comfy and Clean Getaway Room,22343983,Mo,Manhattan,Washington Heights,40.85674,-73.93003,Private room,35,2,5,2017-06-30,0.20,1,0 +19049100,Midtown Pre-War Gem,23431638,Chad,Manhattan,Murray Hill,40.74689,-73.97763,Entire home/apt,150,3,42,2019-06-14,1.67,1,40 +19049402,Downtown Luxury 1 Bedroom 800 sq ft,105642760,Gigi,Manhattan,Battery Park City,40.71222,-74.01566,Entire home/apt,350,7,4,2019-04-27,0.33,1,51 +19049449,Bleecker street beauty,19419141,Carole,Brooklyn,Bushwick,40.69293,-73.9221,Private room,48,3,0,,,1,0 +19049579,Spacious and Sunny 1+ Bedroom,7980049,Colin,Manhattan,Upper West Side,40.7951,-73.96675,Entire home/apt,165,2,8,2018-08-24,0.33,1,0 +19049956,Brooklyn Large Private Bedroom Near Park,132967604,Chris,Brooklyn,Crown Heights,40.66593,-73.95535,Private room,45,8,3,2017-07-31,0.12,1,0 +19050995,2 bedroom home in BedStuy 15 minutes to Manhattan,56081679,José,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9266,Private room,200,2,2,2017-06-20,0.08,1,0 +19051760,Bonito dormitorio 20-25 minutos Times Square.,132983866,Carmelo,Manhattan,Washington Heights,40.84733,-73.93445,Private room,75,1,100,2019-07-06,4.52,1,280 +19051802,Sunny quiet full floor E Village,71825402,Chris,Manhattan,East Village,40.72669,-73.98864,Entire home/apt,279,2,4,2018-07-27,0.19,1,0 +19052801,Light-filled 2 bed 2 bath 2 balcony S Williamsburg,89316119,Jennifer,Brooklyn,Williamsburg,40.7102,-73.96024,Entire home/apt,300,2,0,,,1,0 +19053614,"ONLY 5 MIN TO MANHATAN, BRAND NEW APARTMENT",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71118,-73.9608,Private room,400,1,49,2019-06-18,2.48,4,77 +19054163,Cozy Brooklyn Oasis,133004690,Linda,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93972,Entire home/apt,80,1,107,2019-06-18,4.28,2,240 +19054284,Sunny Apt in New York,33195149,Abigail,Brooklyn,Crown Heights,40.6721,-73.96159,Private room,125,10,0,,,1,0 +19054683,Fully-furnished modern apartment,97907084,Kim,Bronx,Wakefield,40.90281,-73.85201,Entire home/apt,28,1,0,,,1,0 +19054757,Spaceful studio in the heart of Financial district,133010064,Alena,Manhattan,Financial District,40.70857,-74.01005,Entire home/apt,140,2,76,2019-07-01,3.02,1,0 +19055226,Musician's Getaway + Full Analog Recording Studio,58225,Joshua,Brooklyn,Bedford-Stuyvesant,40.69097,-73.94721,Private room,101,2,9,2019-05-13,0.36,1,364 +19055440,Brooklyn - Bushwick - NYC #2,81274648,Ming,Brooklyn,Bushwick,40.69628,-73.93068,Private room,43,2,71,2019-06-22,2.80,4,90 +19056212,Duplex home in Historic Cobble Hill,35078736,Pj,Brooklyn,Cobble Hill,40.68569,-73.99573,Entire home/apt,424,21,1,2018-08-22,0.09,1,31 +19056511,"Bright and comfy, in the heart of Harlem",67609111,Gizzelle,Manhattan,Harlem,40.81515,-73.9421,Private room,80,1,0,,,1,0 +19056694,Cozy and Sunny Williamsburg Apartment,34466355,Mai,Brooklyn,Williamsburg,40.71122,-73.93946,Entire home/apt,170,3,7,2018-01-02,0.28,1,0 +19057006,Comfortable room in spacious Brooklyn apartment,85082002,Steven,Brooklyn,Crown Heights,40.66413,-73.95126,Private room,60,3,2,2017-09-09,0.09,1,0 +19057018,1BR/1BA in 2BR/2BA Flushing,356490,Peter,Queens,Flushing,40.76796,-73.81732,Shared room,1000,1,0,,,1,0 +19057073,Bright central designer's apt - steps to train!,538008,Deren,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94947,Entire home/apt,125,5,23,2019-06-17,0.95,1,1 +19057479,COZY 2BR IN MANHATTAN,10448572,Malen,Manhattan,East Harlem,40.79632,-73.93387,Entire home/apt,115,3,12,2018-08-06,0.47,1,7 +19057619,living room in a 1br apt for rent MANHATTAN,133037177,Ben,Manhattan,Inwood,40.86556,-73.92656,Private room,36,28,28,2019-05-31,1.12,1,106 +19057791,Location Location - Cozy Room In Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.75964,-73.99071,Private room,49,1,41,2019-01-12,1.62,2,8 +19058675,Experience Upper New York Living,133045826,Mira,Manhattan,Washington Heights,40.84202,-73.94171,Entire home/apt,108,7,4,2017-08-15,0.17,1,50 +19058691,HUGE**Washington Square Park**3BEDROOM SKY~LOFT,133045713,Joe,Manhattan,Greenwich Village,40.73647,-73.99699,Entire home/apt,578,5,70,2019-07-01,2.84,1,240 +19062809,Sunny Bedroom in Crown Heights,22860779,LadyShepsa,Brooklyn,Crown Heights,40.66496,-73.93241,Private room,40,5,5,2017-08-29,0.21,1,0 +19063118,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM B,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69502,-73.8252,Private room,50,1,106,2018-10-07,4.15,5,0 +19064354,Cozy master room (female only),127784473,Zeyu,Manhattan,Roosevelt Island,40.76548,-73.94675,Private room,55,10,1,2017-07-08,0.04,1,0 +19066190,Small bedroom in Brooklyn,52052321,Zedal,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95158,Private room,46,3,6,2017-09-05,0.24,1,0 +19066476,Private Room in Greenwich/West Village near Soho!,29614678,Sonya,Manhattan,Greenwich Village,40.72951,-73.99997,Private room,150,2,60,2019-06-30,2.37,1,125 +19067757,12min to NY & 10min LGA/30min JFK w/Closet&heater,100128949,Lisa,Queens,Astoria,40.75539,-73.91311,Private room,39,1,4,2019-01-02,0.17,4,136 +19068247,Quiet garden studio in Bushwick,23991242,Lizzie,Brooklyn,Bushwick,40.68748,-73.90751,Entire home/apt,100,2,1,2019-07-07,1,1,99 +19068469,Hamilton Heights room,69211977,Taylor,Manhattan,Harlem,40.82088,-73.9523,Private room,36,25,0,,,1,0 +19068933,Quiet and Safe 7,133123832,Parmenides,Manhattan,Upper West Side,40.78773,-73.97022,Entire home/apt,113,30,0,,,3,69 +19069048,Entire Apartment in the East Village - 2 Bedroom,778994,Giona,Manhattan,East Village,40.72529,-73.98655,Entire home/apt,300,14,5,2018-07-01,0.20,1,2 +19069305,"Quiet, cozy room just across the Brooklyn Museum",10402380,Yuval,Brooklyn,Prospect Heights,40.67245,-73.96358,Private room,50,1,144,2019-07-02,5.65,2,0 +19069372,Studio on Central park,133127495,Nehama And Chen (Agent ),Manhattan,Upper West Side,40.79312,-73.96595,Entire home/apt,115,88,5,2018-09-18,0.22,1,220 +19069381,Amazing room in Upper Manhattan,22455812,Alessandro,Manhattan,Harlem,40.80729,-73.94763,Private room,100,2,1,2017-07-04,0.04,1,0 +19069649,Big Bedroom in the heart of Manhattan 6r,133130315,Artem,Manhattan,Hell's Kitchen,40.76398,-73.986,Private room,99,3,12,2019-04-28,0.57,6,179 +19069726,Greenpoint Gem: top floor like private home,38217925,Lily,Brooklyn,Greenpoint,40.73453,-73.95795,Private room,120,5,0,,,2,88 +19069900,"Zen, Sunny 1 BR Apt in East Village",1424716,Helene,Manhattan,East Village,40.7242,-73.98209,Entire home/apt,175,3,7,2017-12-05,0.30,1,0 +19069915,Extraordinary Apt Best Midtown Location,61391963,Corporate Housing,Manhattan,Midtown,40.75609,-73.96941,Entire home/apt,125,30,2,2019-06-01,0.15,91,140 +19069994,Apt in W 48th with private patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76441,-73.99437,Entire home/apt,100,30,2,2017-12-03,0.09,31,345 +19070571,1 BR in Manhattan - Spacious and Convenient,39601665,Jordan,Manhattan,East Harlem,40.80746,-73.94001,Private room,53,180,0,,,1,357 +19071002,BK's Finest Jack&Jill2 Share NearTransportation,50600973,Joyell,Brooklyn,Bushwick,40.6951,-73.92983,Shared room,29,1,124,2019-06-18,4.99,7,73 +19071374,Artist Room,133147190,Ocean,Brooklyn,Bushwick,40.70114,-73.91763,Private room,70,2,1,2017-06-17,0.04,1,179 +19072587,Clean Midtown Rooms in heart of NYC,60993452,Charles,Manhattan,Murray Hill,40.74763,-73.97602,Private room,52,3,4,2017-06-23,0.16,2,0 +19072989,Private Room in Modern Loft in Williamsburg,4440278,Emmanuel,Brooklyn,Williamsburg,40.71172,-73.94143,Private room,105,3,8,2019-05-28,0.32,3,179 +19073347,"Comfy, convenient futon for solo traveler",83756656,Richard,Manhattan,Lower East Side,40.71884,-73.99076,Shared room,29,2,21,2019-06-04,0.86,1,0 +19073356,Luxury Coliving Space in Williamsburg,4440278,Emmanuel,Brooklyn,Williamsburg,40.71189,-73.93881,Private room,110,3,3,2017-07-30,0.12,3,179 +19073637,"Green Renovated Victorian, Central AC/Radiant Heat",16006197,Lydia,Brooklyn,South Slope,40.66744,-73.98798,Private room,80,2,50,2019-07-06,1.98,1,86 +19073760,Private Bedroom in Ditmas,91718195,Kourosh,Brooklyn,Kensington,40.63417,-73.97541,Private room,31,25,3,2018-08-25,0.12,1,0 +19074024,Spacious 5th Ave - Semi Pvt Bed & Bath,113570467,Rachel,Manhattan,Midtown,40.74842,-73.98542,Shared room,320,1,1,2018-09-26,0.10,1,179 +19079187,Clean Midtown Rooms in heart of NYC,60993452,Charles,Manhattan,Murray Hill,40.74846,-73.9758,Private room,40,4,3,2017-06-18,0.12,2,0 +19080665,big vintage room with backyard in hip BUSHWICK,7086450,Natalie,Brooklyn,Bushwick,40.69983,-73.91613,Private room,70,5,0,,,1,0 +19080983,Convenient Home near train Subway & Airports,59089796,Sara,Queens,Richmond Hill,40.70288,-73.81955,Entire home/apt,104,2,78,2019-06-26,3.26,2,65 +19081224,RJ's,133239401,Argelis,Bronx,Bronxdale,40.85168,-73.86659,Entire home/apt,100,7,0,,,1,180 +19081969,Beautiful Private Townhouse- Heart of Manhattan,21810947,Ellen,Manhattan,Midtown,40.75488,-73.97134,Entire home/apt,1200,7,0,,,1,0 +19083269,"Cheap, Private Room in Bushwick! Close to Trains!",4464205,Braden,Brooklyn,Bushwick,40.69446,-73.92486,Private room,37,2,6,2017-12-16,0.25,2,0 +19083282,纽约干净大房近地铁站,51698646,Ivy,Queens,Sunnyside,40.74242,-73.92597,Private room,40,10,1,2018-02-15,0.06,1,2 +19083490,I ❤️NY,35031975,Ej,Manhattan,Hell's Kitchen,40.75625,-73.99336,Entire home/apt,207,1,0,,,1,0 +19084168,Beautiful apartment overlooking Fort Greene Park,6219701,Timothée,Brooklyn,Fort Greene,40.68966,-73.97382,Entire home/apt,150,10,1,2017-07-28,0.04,1,0 +19085402,Spacious 1bdrm in new luxury Williamsburg building,133281513,Eda,Brooklyn,Williamsburg,40.71885,-73.95444,Entire home/apt,180,1,16,2019-03-15,0.65,1,0 +19085687,"Cozy, Friendly, and 2 mins from the subway station",69442306,Oz,Brooklyn,Prospect-Lefferts Gardens,40.65512,-73.96186,Private room,90,3,1,2017-06-29,0.04,1,0 +19085711,Workspace Room 1,9864136,Anthony,Brooklyn,Bushwick,40.68615,-73.9141,Private room,36,2,7,2019-03-01,0.29,26,318 +19086281,Private Room in a Renovated Duplex in Bed-Stuy,30168229,Dana,Brooklyn,Bedford-Stuyvesant,40.69369,-73.93454,Private room,80,2,0,,,1,0 +19087480,Wake up to Central Park (privet room),133308687,Tony,Manhattan,East Harlem,40.79771,-73.94833,Private room,145,2,75,2019-06-23,3.07,1,59 +19087695,"★2 mins to Subway B/Q, Great for budget travel★",51380878,Jean Paul,Brooklyn,Flatbush,40.65067,-73.96062,Private room,33,2,71,2019-06-18,3.17,2,15 +19087867,Luminescent Room In LES,97513787,Daniel,Manhattan,Chinatown,40.71595,-73.99329,Private room,68,20,6,2018-09-13,0.31,5,332 +19093551,Studio in Brooklyn,1295284,Sue,Brooklyn,Midwood,40.61402,-73.94467,Entire home/apt,70,7,0,,,1,0 +19093789,Majestic private bedroom in Williamsburg.,49781652,Cory,Brooklyn,Williamsburg,40.71033,-73.95026,Private room,67,3,21,2018-12-01,0.86,1,0 +19094358,Great place for a family or a group of friends,123974198,Anny,Manhattan,Inwood,40.86665,-73.92695,Entire home/apt,175,2,7,2018-08-26,0.29,1,0 +19094427,Spacious one bedroom in the heart of Inwood,16020315,Douglas,Manhattan,Inwood,40.86822,-73.92048,Entire home/apt,100,2,9,2019-04-07,0.59,1,0 +19094459,"Large one bedroom apt., very bright, huge balcony.",624441,Joseph,Manhattan,Upper West Side,40.79155,-73.97315,Entire home/apt,180,30,9,2019-05-31,0.43,1,57 +19094558,Comfort & Convenience in Greenwich Village,23821111,Peter,Manhattan,Greenwich Village,40.73095,-73.99413,Private room,200,2,0,,,1,0 +19094695,Charming and cozy 1BR apartment / Heart of NYC,11687702,Rudy,Manhattan,Hell's Kitchen,40.76168,-73.99144,Entire home/apt,160,4,1,2017-08-18,0.04,1,0 +19094835,Comfortable & Elegant 3BR House near Prospect Park,6701270,Kenny,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95929,Entire home/apt,130,8,4,2018-08-19,0.18,1,0 +19094871,"Bright, spacious, green BedStuy apartment",3457404,Madalina,Brooklyn,Bedford-Stuyvesant,40.68197,-73.94564,Entire home/apt,70,3,29,2019-03-16,1.16,1,0 +19095902,Spacious and Sunny Townhouse Duplex,132530494,Marie,Brooklyn,Canarsie,40.63077,-73.90395,Entire home/apt,300,3,59,2019-06-30,2.36,1,333 +19096160,Room in Spacious Prospect Park South Apartment,10697117,Joey,Brooklyn,Flatbush,40.64844,-73.96214,Private room,45,5,2,2018-06-30,0.08,1,0 +19097111,*Private Room in Beautiful Brooklyn Apartment*,43595404,Diana,Brooklyn,Bedford-Stuyvesant,40.68154,-73.9534,Private room,69,2,6,2017-11-20,0.25,1,0 +19098169,Amazing space & location 1 bedroom Apt in Gramercy,14322725,Ana Corina,Manhattan,Gramercy,40.73627,-73.98952,Entire home/apt,290,3,13,2018-10-21,0.54,1,66 +19098568,Huge Private Room Near Prospect Park,133410608,Stephanie,Brooklyn,Kensington,40.64549,-73.97883,Private room,99,7,0,,,1,87 +19098733,Cozy Efficiency Studio on Best West Chelsea Block!,82920107,Zach,Manhattan,Chelsea,40.74619,-74.00559,Entire home/apt,149,30,1,2018-07-16,0.08,1,364 +19099408,2 BR apartment in the heart of Brooklyn!,4956248,Esther,Brooklyn,Greenpoint,40.73145,-73.95135,Entire home/apt,100,3,14,2019-04-29,0.60,1,0 +19099537,"Modern, private, newly renovated 2 bd, open living",68233913,Troy & Aki,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91803,Entire home/apt,100,3,107,2019-06-23,4.31,1,77 +19099600,"Large, Private 1 Bedroom in Historic Brownstone",1342918,Keri,Brooklyn,Crown Heights,40.67192,-73.93414,Entire home/apt,95,5,8,2018-03-19,0.32,1,0 +19100892,Charming Williamsburg 1br Apt minutes to Manhattan,25173511,Adrian,Brooklyn,Williamsburg,40.71045,-73.95784,Entire home/apt,200,2,6,2018-02-18,0.24,1,0 +19100971,Spacious Bedroom with lots of Natural Light,81745867,Jacqueline,Manhattan,Washington Heights,40.84917,-73.94048,Private room,70,2,2,2018-06-25,0.16,1,0 +19102027,Charming room in the heart ❤️ of Williamsburg!,42729298,Aigerim Aika,Brooklyn,Williamsburg,40.71913,-73.95774,Private room,75,1,135,2019-06-23,5.31,2,19 +19102698,Amazing Private Bedroom-15min from the Manhattan!,133460613,Ed,Queens,Astoria,40.76169,-73.90819,Private room,49,1,6,2019-05-06,0.24,2,359 +19102715,New private bedroom/15mins BrooklynBridge Manhttan,77334582,Yuxi,Brooklyn,Greenpoint,40.73167,-73.95254,Private room,89,2,0,,,1,0 +19103027,Modern Private Bedroom-15min from the Manhattan!,133460613,Ed,Queens,Astoria,40.76193,-73.9074,Private room,74,1,0,,,2,359 +19103622,Comfy private room in the heart ❤️ of Williamsburg!,42729298,Aigerim Aika,Brooklyn,Williamsburg,40.71911,-73.95805,Private room,65,1,122,2019-06-20,4.82,2,11 +19111261,Home Oasis Home,133534397,David,Bronx,Longwood,40.8229,-73.90295,Entire home/apt,100,3,30,2018-02-26,1.18,1,0 +19111734,Habitación ideal para viajeros,133536020,Zoila,Manhattan,East Harlem,40.79185,-73.94139,Private room,50,1,64,2019-06-18,2.55,1,4 +19113032,Luxury Master Bedroom in Prime Brooklyn,46317725,Jamie,Brooklyn,Bushwick,40.70179,-73.92379,Entire home/apt,79,1,2,2017-06-08,0.08,2,0 +19114014,"Large, Private Carriage House in West Village",683230,Thomas,Manhattan,West Village,40.73444,-73.99967,Private room,950,3,36,2019-07-01,1.45,3,237 +19114277,LUXURY!30TH FLR SWEEPING RIVER VIEWS -SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75775,-73.96132,Entire home/apt,350,30,0,,,49,364 +19114447,Beautiful douplex with garden in crown heights!!,5434236,Andrea,Brooklyn,Crown Heights,40.67615,-73.92935,Entire home/apt,188,3,11,2018-08-24,0.45,1,144 +19114715,"Cozy and comfortable bedroom in Astoria, Queens",32219638,Jorge,Queens,Astoria,40.7683,-73.9331,Private room,50,1,28,2019-07-06,1.50,1,175 +19115443,26th FLOOR-RIVER VIEWS& MASSIVE SPACE-SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75905,-73.96142,Entire home/apt,475,30,0,,,49,343 +19116128,Cozy apartment in Greenpoint,6111018,Katri,Brooklyn,Greenpoint,40.73079,-73.95353,Private room,105,3,8,2019-07-01,0.33,1,12 +19116449,"Private, Luxury Studio by World Trade Center",133580441,Janene,Manhattan,Financial District,40.70864,-74.01276,Entire home/apt,225,4,51,2019-07-02,2.06,1,40 +19116844,Cheap Unfurnished East Village Room,30232035,Ben,Manhattan,Lower East Side,40.71909,-73.9865,Private room,40,10,0,,,1,0 +19117051,Luxurious comfort in BK,12775618,Jared,Brooklyn,Greenpoint,40.73736,-73.95668,Entire home/apt,185,1,4,2017-11-13,0.19,1,0 +19117207,Private bedroom on Upper East Side !!!,133586767,Milorad,Manhattan,Upper East Side,40.77489,-73.95242,Private room,90,2,12,2017-08-01,0.47,1,0 +19117322,Luxurious studio,131218877,Svetlana,Manhattan,Midtown,40.758,-73.97906,Entire home/apt,250,30,0,,,1,0 +19117903,Private BR w Balcony in Greenwich Village,731582,Josh,Manhattan,Greenwich Village,40.73123,-73.99374,Private room,119,60,2,2018-01-03,0.08,1,0 +19118405,Amazing One Bedroom in Historic Hamilton Heights,10469805,Chris,Manhattan,Harlem,40.82499,-73.94488,Entire home/apt,150,14,1,2017-10-14,0.05,1,0 +19118803,Luxury Studio in Battery Park NYC,7628817,Karl,Manhattan,Financial District,40.70546,-74.01465,Entire home/apt,275,1,0,,,1,0 +19118963,BRIGHT CHARMING STUDIO ON UPPER EAST SIDE,9293730,Inna,Manhattan,Upper East Side,40.76956,-73.95835,Entire home/apt,125,30,8,2019-06-10,0.39,16,332 +19119686,Deluxe Room at Yankee Stadium- 20 mins to Midtown!,133602911,Sanyika,Bronx,Highbridge,40.82964,-73.92882,Private room,60,3,17,2019-05-20,0.67,2,66 +19120316,Private Room in Brooklyn - Close to Subway!,132219056,Jason,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93716,Private room,42,1,38,2019-06-02,1.58,2,218 +19120410,Large Bright Studio Apartment,4492286,Anna,Manhattan,Morningside Heights,40.80563,-73.96362,Entire home/apt,130,7,23,2019-06-13,0.95,1,48 +19120657,Lovely 1Br Apartment in Prospect Lefferts!,15495000,Sarabeth,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94517,Entire home/apt,66,2,3,2018-11-13,0.12,1,0 +19121086,Private Room in Cozy Loft in Williamsburg,31920354,Liz,Brooklyn,Williamsburg,40.7127,-73.94487,Private room,109,3,5,2019-05-07,0.20,2,179 +19121957,Big private room in huge artsy Williamsburg loft,42405567,Chris,Brooklyn,Williamsburg,40.7116,-73.94432,Private room,90,2,13,2019-06-10,0.58,2,7 +19121995,Pat's crib,133426665,Patrick,Brooklyn,Flatlands,40.61462,-73.92108,Private room,89,1,68,2019-06-01,2.68,1,333 +19122217,Classic Brooklyn Brownstone,96363026,Chris,Brooklyn,Carroll Gardens,40.68293,-73.99747,Entire home/apt,600,5,11,2019-01-03,0.47,1,64 +19122371,Huge WV / Meatpacking 1 Bdrm,13377549,Opal,Manhattan,West Village,40.73848,-74.00252,Entire home/apt,250,28,13,2019-01-01,0.52,1,0 +19122452,Simple 2bd located in heart of West Village,50915075,Brian,Manhattan,West Village,40.7316,-74.00262,Entire home/apt,278,2,18,2019-01-01,0.73,1,35 +19122483,NYC Home Away from Home (Triplex),68271069,Mark,Manhattan,Upper West Side,40.79343,-73.97274,Entire home/apt,800,7,5,2018-12-29,0.22,1,68 +19122672,VERY CLOSE MANHATTAN ( S ),47015275,Kathy,Queens,Elmhurst,40.74546,-73.88898,Private room,70,1,31,2019-06-01,1.23,2,89 +19122738,New York City living,10733404,Rob,Manhattan,Chelsea,40.74216,-73.99887,Entire home/apt,275,1,2,2017-08-13,0.08,1,0 +19123146,Big 1-bedroom in Tribeca with landscaped roof deck,201735,Walter,Manhattan,Tribeca,40.71773,-74.00601,Entire home/apt,195,2,4,2017-07-04,0.16,1,0 +19123481,Spacious Bohemian Bedroom,133259451,Samantha,Brooklyn,Bedford-Stuyvesant,40.68015,-73.94949,Private room,50,3,2,2017-07-23,0.08,1,0 +19123591,Cozy South Williamsburg,86134456,Frankie,Brooklyn,Williamsburg,40.7069,-73.95498,Private room,45,5,2,2017-07-18,0.08,1,0 +19126369,Cozy and full Daylight private room in greenpoint,41730784,Xiaoxia,Brooklyn,Greenpoint,40.72929,-73.95067,Private room,62,3,3,2017-10-07,0.12,1,0 +19132312,Charming and Quiet Apartment /Prime East Village,66734347,Silvana,Manhattan,East Village,40.72582,-73.9886,Entire home/apt,150,2,2,2017-09-05,0.09,1,0 +19133220,Charming Pre-War Studio Apartment Upper East Side,16413765,Sofia,Manhattan,Upper East Side,40.78084,-73.94735,Entire home/apt,98,3,57,2019-06-18,2.26,1,30 +19134112,Clean and Cozy 1br Home in heart of Soho/Nolita,16308791,Sara,Manhattan,Little Italy,40.71769,-73.99854,Entire home/apt,236,2,55,2019-06-24,2.24,1,314 +19134150,Huge Brooklyn Loft in the Heart of Williamsburg!,133732087,Marie-Louise,Brooklyn,Williamsburg,40.71876,-73.96253,Entire home/apt,250,6,1,2017-08-21,0.04,1,0 +19134330,Take it now you won't find better,133736899,Hanna,Manhattan,Upper West Side,40.76984,-73.98225,Entire home/apt,200,1,1,2017-06-16,0.04,1,0 +19134814,Bright modern 2 bed 2 bath flat in Williamsburg,48240655,Steve,Brooklyn,Williamsburg,40.71947,-73.96112,Entire home/apt,195,2,11,2018-01-03,0.45,1,0 +19134850,Private 1 BR apt Astoria 3 stops from MidManhattan,2539165,Andy,Queens,Long Island City,40.75464,-73.91755,Entire home/apt,90,7,16,2018-11-05,0.69,1,62 +19135548,Hottest building in Williamsburg -private bathroom,7604436,M,Brooklyn,Williamsburg,40.7203,-73.95729,Private room,128,3,22,2019-06-14,1.43,1,305 +19135811,Stunning Brooklyn Sanctuary,2494945,Naima,Brooklyn,Flatbush,40.65413,-73.96024,Private room,44,5,32,2019-06-23,1.39,1,286 +19136267,Loft in Lower East side!,5348587,Amarsana,Manhattan,Lower East Side,40.71734,-73.99071,Private room,75,3,1,2017-06-19,0.04,1,0 +19136705,Gigantic and Beautiful room w/Private living area,27102064,Aaron,Manhattan,Harlem,40.82469,-73.95032,Private room,100,2,10,2019-03-24,0.40,1,0 +19136921,ENTIRE APARTMENT IN THE HEART OF HARLEM,133762246,Ezio,Manhattan,Harlem,40.81644,-73.94127,Entire home/apt,90,15,8,2018-09-25,0.32,1,44 +19138138,Gorgeous Sunny Room Avaliable in 3Br Condo,17603414,Kaan,Manhattan,Harlem,40.82566,-73.94438,Private room,60,5,18,2019-06-15,0.73,2,154 +19138212,Super Sunny & Stylish Soho Loft,9374970,Barrett,Manhattan,SoHo,40.72486,-74.00318,Entire home/apt,250,28,11,2018-09-28,0.48,1,151 +19138221,Stunning Studio Loft in West Chelsea Brownstone,25720293,Lena,Manhattan,Chelsea,40.7462,-74.00222,Entire home/apt,349,4,24,2019-06-29,1.00,3,264 +19139234,All your essentials in a beautiful studio apt,23231840,Francisca,Manhattan,Harlem,40.82216,-73.9446,Entire home/apt,101,7,6,2017-12-03,0.28,1,0 +19139564,Steps from the Barclays Center!,133787072,Neek,Brooklyn,Park Slope,40.67761,-73.97767,Private room,120,1,96,2019-06-17,3.90,1,53 +19140331,Arverne by The Sea ~ Surf Ave Apt,32866694,Samantha,Queens,Arverne,40.58845,-73.79514,Entire home/apt,86,2,23,2019-06-04,2.06,1,20 +19141112,Modern CoLiving at Ridgewood / shared room,133802988,Sergii,Queens,Ridgewood,40.70375,-73.90342,Shared room,30,30,1,2017-12-15,0.05,6,365 +19141351,Room in Beautiful Beach Bungalow!,133802130,Jo,Queens,Far Rockaway,40.59326,-73.76037,Private room,40,1,33,2019-05-23,1.33,1,36 +19141391,Unique Cozy Sunny converted Studio/One Bedroom,75065047,Simi,Manhattan,Lower East Side,40.71925,-73.98955,Entire home/apt,106,1,9,2018-11-04,0.39,1,364 +19141428,"Large room, very conveniently to train, bus, jfk#1",82367658,John,Queens,Richmond Hill,40.69142,-73.82039,Private room,40,2,13,2019-05-31,0.55,5,311 +19141662,Brand New shared room in CoLiving (M and L trains),133802988,Sergii,Queens,Ridgewood,40.7033,-73.90812,Shared room,30,30,2,2017-12-17,0.08,6,365 +19141812,Mint Green in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.67914,-73.88982,Private room,52,3,28,2019-03-31,1.25,3,302 +19141833,2BD in the Heart of Fort Greene,4331581,Alyssa,Brooklyn,Fort Greene,40.68876,-73.97746,Entire home/apt,147,1,1,2017-06-11,0.04,1,0 +19142223,Spacious room in Union Square near subway,81553530,Mariana,Manhattan,East Village,40.73355,-73.989,Private room,200,3,2,2017-06-19,0.08,1,0 +19142325,Futon available in an amazing location,40277071,Sunny,Manhattan,Upper West Side,40.79351,-73.9698,Shared room,70,2,0,,,1,0 +19143826,"Private Room- Greenpoint, Willamsburg local",133843931,Bryan,Brooklyn,Greenpoint,40.72675,-73.9554,Private room,37,1,58,2019-06-15,2.34,2,152 +19153081,West 57th Street by Hilton Club- Studio,31214940,Scott,Manhattan,Midtown,40.76486,-73.97822,Entire home/apt,249,3,0,,,1,0 +19153259,BedStuy Fly Flat,36009953,Sharon,Brooklyn,Bedford-Stuyvesant,40.68099,-73.92145,Private room,70,3,13,2018-09-16,0.53,1,48 +19153982,"East 19th Street, Charming 1Bd Serviced Apt",22541573,Ken,Manhattan,Gramercy,40.73643,-73.98724,Entire home/apt,225,30,0,,,87,310 +19154108,Cozy 1 Bedroom Close to Everything,8633973,Joseph,Manhattan,Hell's Kitchen,40.76952,-73.98957,Entire home/apt,135,3,41,2019-06-16,1.64,1,0 +19154266,"Modern, Airy 2BR in the heart of Brooklyn",5260367,Jake,Brooklyn,Boerum Hill,40.68942,-73.98739,Entire home/apt,150,30,1,2017-11-30,0.05,1,91 +19154276,Large/Bright room in vibrant East village,49192439,Beatrice,Manhattan,East Village,40.72507,-73.97667,Private room,108,10,17,2018-07-26,0.68,1,23 +19154733,2 bedrooms Williamsburg loft - huge and sunny,42405567,Chris,Brooklyn,Williamsburg,40.71356,-73.94372,Entire home/apt,225,4,7,2018-09-02,0.29,2,8 +19155616,Affordable master room near of LGA in Queens,46712160,Lucilu,Queens,Jackson Heights,40.75243,-73.89553,Private room,59,1,184,2019-06-20,7.84,2,30 +19155632,Scenic & quiet Apt - Windsor Terrace/Prospect Park,114146085,Sophia,Brooklyn,Windsor Terrace,40.65013,-73.97863,Entire home/apt,115,3,30,2019-04-04,1.23,1,3 +19156426,"Private room with 2 Windows, 1st FL",2712353,Masud,Brooklyn,Cypress Hills,40.68696,-73.87564,Private room,35,28,7,2019-06-24,0.29,4,312 +19157123,NYC Hotel (Enjoy top tier membership benefits),7050126,Sasha,Manhattan,Midtown,40.76347,-73.978,Entire home/apt,1000,1,3,2017-07-29,0.12,2,90 +19157481,Renovated Private Room in Ridgewood Coliving Space,133802988,Sergii,Queens,Ridgewood,40.70507,-73.90195,Shared room,55,30,2,2018-10-28,0.10,6,365 +19158672,Newly Renovated 1 Bedroom in Hell's Kitchen. 58/10,56342503,Matthew,Manhattan,Hell's Kitchen,40.7694,-73.98736,Entire home/apt,280,4,3,2018-01-05,0.13,1,0 +19160371,Amazing Family House,22766051,Shlomi,Brooklyn,Bay Ridge,40.63056,-74.02037,Entire home/apt,100,4,5,2017-09-26,0.21,1,0 +19160504,Studio Bushwick (shared bathroom apt next door),133975955,Ivanna And Emmanuel,Brooklyn,Williamsburg,40.70533,-73.92778,Entire home/apt,55,3,78,2019-06-23,3.10,1,25 +19160912,Spacious Guest room in beautiful Wash. Heights,1728792,Brittany,Manhattan,Washington Heights,40.84437,-73.94328,Private room,70,3,2,2019-06-08,0.53,1,173 +19161316,Perfect bright apartment with amazing view,83590674,Regitze,Brooklyn,Williamsburg,40.71418,-73.96404,Entire home/apt,219,4,9,2018-10-01,0.37,1,0 +19161510,Affordable and functional room,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68468,-73.92408,Private room,45,28,10,2019-05-27,0.46,4,310 +19161785,Sunny West Harlem Sublet,57959988,Akeem,Manhattan,Harlem,40.81937,-73.95763,Private room,40,10,0,,,1,0 +19161964,A Private and Cozy room near Columbia University,107704855,Mohammad,Manhattan,Morningside Heights,40.8107,-73.95842,Private room,60,1,1,2017-11-15,0.05,1,0 +19162127,Big king bed + roof + Manhattan view Bushwick,22723650,Aaron,Brooklyn,Bushwick,40.70476,-73.92309,Entire home/apt,150,3,20,2019-06-03,0.80,1,5 +19162180,"Private, Quiet 2-Bed Place near Brooklyn College",133995881,Joy,Brooklyn,Flatbush,40.63262,-73.95768,Entire home/apt,150,2,77,2019-06-16,3.29,1,106 +19162211,BK's Finest SHARED ROOM 1 BED AVAILABLE,50600973,Joyell,Brooklyn,Bushwick,40.69518,-73.92856,Shared room,50,1,24,2018-10-28,0.98,7,0 +19162441,Greenpoint Garden of Eden,43085567,Sara,Brooklyn,Greenpoint,40.72661,-73.95178,Entire home/apt,200,1,0,,,1,0 +19162648,Private Suite & Bathroom w/ Yard in Park Slope,10015055,Robert,Brooklyn,South Slope,40.6646,-73.98184,Private room,119,2,94,2019-06-21,4.09,1,279 +19162994,AMAZING VIEW COZY APARTMENT IN THE HEART OF NYC,95471685,Lys,Manhattan,Chelsea,40.74814,-73.98956,Entire home/apt,280,7,0,,,1,0 +19163061,Spacious private room in luxury building,23552267,Vicky,Manhattan,Tribeca,40.71299,-74.00972,Private room,160,7,1,2017-06-19,0.04,1,0 +19163361,Tourist Private Room of New York City,132559039,Elvira,Manhattan,Harlem,40.82664,-73.94814,Private room,60,2,38,2019-06-21,1.71,1,13 +19163623,Cozy Lodge Chic in the heart of New York.,115256,Nicholas,Manhattan,Upper East Side,40.7699,-73.95692,Entire home/apt,125,3,44,2019-02-11,1.80,1,0 +19163801,Bright and Spacious Summer Stay,117460213,Kendall,Manhattan,Harlem,40.82321,-73.95662,Private room,37,2,0,,,1,0 +19163888,Convenient & cozy classic NYC apartment,105707375,Corey,Manhattan,Upper East Side,40.77541,-73.95083,Entire home/apt,98,12,12,2017-11-12,0.48,1,0 +19164049,Cozy private room Near Central Park,18655355,Jolly,Manhattan,East Harlem,40.78827,-73.94629,Private room,128,1,22,2019-06-03,0.94,1,329 +19164752,Great 1 bedroom apartment in Manhattan,71864947,Jure,Manhattan,Washington Heights,40.84393,-73.93979,Entire home/apt,100,5,11,2019-03-21,0.47,1,22 +19167933,"SUNSHINE 2BR/2 bath 15min to Times Square, LIRR",61316506,Mamun,Queens,Woodside,40.74341,-73.90041,Entire home/apt,120,1,85,2019-06-21,3.37,2,340 +19170051,"Cozy walk up, in the heart of Sugar Hill",90227099,Trace,Manhattan,Harlem,40.82794,-73.94194,Entire home/apt,90,1,3,2017-09-27,0.12,1,0 +19170980,Luxury 1 Bedroom Apartment in Prime Brooklyn,46317725,Jamie,Brooklyn,Bushwick,40.70019,-73.92303,Entire home/apt,147,2,12,2018-10-23,0.49,2,0 +19171294,"Private bedroom w/desk and fridge, close to JFK",134070513,Conrad,Queens,Cambria Heights,40.70133,-73.74212,Private room,60,1,2,2018-07-27,0.17,1,37 +19171670,Cozy private bedroom with Queen size bed & closet.,132485563,Ali,Manhattan,Upper East Side,40.77226,-73.95983,Private room,115,6,11,2018-10-23,0.50,2,67 +19172071,Cosy One bedroom apartment close to Central Park,14271995,Pierre,Manhattan,Upper East Side,40.76767,-73.9558,Entire home/apt,110,3,8,2018-08-28,0.32,1,0 +19172876,"Private room with 2 queen sized beds, in Times SQ",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75594,-73.98259,Private room,155,4,35,2019-06-23,1.45,3,157 +19173391,"One bedroom, calm, clean, bright.",13848128,John,Manhattan,Chelsea,40.74263,-73.99769,Entire home/apt,275,6,13,2019-06-07,0.58,1,0 +19174466,2 bedrooms: 1 queen bed and 1 full bed,80508435,Irving,Manhattan,Upper West Side,40.79367,-73.97073,Private room,150,1,1,2017-08-01,0.04,2,0 +19174546,"Spacious, Sunny 1 Bedroom",6060075,Ninja,Queens,Kew Gardens Hills,40.7249,-73.82249,Entire home/apt,159,3,2,2017-11-29,0.08,1,0 +19174707,THE Space,87553853,Titus,Brooklyn,East Flatbush,40.65203,-73.93317,Private room,200,1,2,2019-03-31,0.08,1,178 +19175288,"Private room for 2ppl, 1 min from Times Square!!",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75528,-73.98312,Private room,135,4,37,2019-06-16,1.53,3,155 +19175513,Your Private Room and Bath in South Slope Duplex,10685968,Xintong (Nancy),Brooklyn,Windsor Terrace,40.65991,-73.983,Private room,89,3,9,2018-07-28,0.40,1,0 +19175650,Private room and shared living room,134104016,Amy,Queens,Woodside,40.74505,-73.89995,Private room,80,2,11,2018-11-04,0.45,1,10 +19175819,Main floor room in five bedroom house,65407018,Harmony,Brooklyn,Greenpoint,40.72306,-73.93676,Private room,60,1,36,2019-06-24,1.55,5,180 +19176053,Renovated sunny 1br w/ private bath steps to train,39808438,Easton,Brooklyn,Bushwick,40.68947,-73.91544,Private room,45,2,30,2019-03-27,1.31,5,0 +19176070,Cozy Room in Large Corner Apt Next to Lovely Park,20576411,Morgan,Brooklyn,Flatbush,40.65329,-73.96156,Private room,60,2,0,,,1,0 +19176163,Chic Apartment for rent in East Village,133694068,Julissa,Manhattan,East Village,40.72767,-73.98856,Entire home/apt,99,2,38,2019-05-20,1.51,1,29 +19176222,Beautiful East Village apartment!,90279905,Mariana,Manhattan,East Village,40.72706,-73.98451,Private room,120,1,9,2017-12-10,0.37,1,0 +19176390,"TIMES SQUARE NYC, COZY Jr 1 BR w Private Patio",134114121,Jay,Manhattan,Hell's Kitchen,40.7598,-73.99033,Entire home/apt,219,3,12,2019-06-28,1.33,1,59 +19176790,Cozy Private Room in Upper Manhattan,88034180,Rob,Manhattan,Harlem,40.82473,-73.94778,Private room,65,3,1,2017-06-28,0.04,1,0 +19177019,Bright Designers' Apartment in Historic Brownstone,1382888,Sam & Stefanie,Brooklyn,Greenpoint,40.72781,-73.95526,Entire home/apt,215,3,2,2017-11-30,0.09,1,0 +19177262,Large Manhattan Apartment: Ideal Location - Inwood,16404967,Andom,Manhattan,Inwood,40.86699,-73.92689,Entire home/apt,90,1,17,2019-07-06,1.68,1,64 +19177573,Private room in a beautiful apartment,61649734,Giulliana,Brooklyn,Bushwick,40.69019,-73.91384,Private room,51,1,194,2019-06-27,7.66,2,7 +19179372,"Spacious APT in Brooklyn, 12 Min to Manhattan",126897352,Jason & Mary,Brooklyn,Bushwick,40.70376,-73.92104,Entire home/apt,170,18,22,2019-05-08,0.90,2,249 +19179558,Sunny Two Bed in Prime Lower East Side/Chinatown:),3801752,Tara,Manhattan,Chinatown,40.71522,-73.99355,Private room,90,1,124,2019-06-23,4.95,2,125 +19179608,Home away from home in Brooklyn!,73632360,Matthew,Brooklyn,Bedford-Stuyvesant,40.68776,-73.94936,Private room,50,1,0,,,1,0 +19179615,"HEART OF BROOKLYN, QUEEN BED, 1 BLOCK FROM SUBWAY!",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.6908,-73.95507,Private room,79,1,195,2019-06-20,7.79,3,46 +19179863,Periwinkle in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.67977,-73.89022,Private room,39,3,30,2019-05-20,1.20,3,344 +19179961,Orange in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.68106,-73.88916,Private room,65,3,23,2019-05-01,0.95,3,321 +19180465,Brooklyn Royalty,44140036,Ricardo,Brooklyn,East Flatbush,40.65185,-73.93388,Private room,80,2,1,2017-06-25,0.04,2,158 +19180787,Two Bedroom Apartment in Williamsburg,413447,Noelle,Brooklyn,Williamsburg,40.71866,-73.943,Private room,120,4,3,2017-09-23,0.13,2,0 +19180868,Central Park at your Door!,128744452,Cassidy,Manhattan,Harlem,40.80063,-73.95389,Private room,52,4,39,2019-06-22,1.65,1,242 +19181398,our place short stay,134160379,Sandy,Bronx,Mott Haven,40.81023,-73.91926,Private room,70,1,0,,,1,87 +19181504,Large furnished studio utilities&wifi including.,61685550,Jianyan,Manhattan,Upper East Side,40.77099,-73.95118,Entire home/apt,120,1,3,2017-06-24,0.12,1,0 +19181881,A real New York experience,19975102,Missy,Manhattan,Upper West Side,40.78184,-73.98382,Entire home/apt,315,2,1,2017-10-31,0.05,1,0 +19182026,Spacious 1-bedroom by Prospect Park + BK Museum,33439741,Mahlet,Brooklyn,Prospect Heights,40.67488,-73.96692,Entire home/apt,125,1,9,2018-11-04,0.36,1,65 +19182044,Perfect Penthouse Duplex,84126420,Sk,Manhattan,Chelsea,40.75112,-73.99605,Entire home/apt,399,3,44,2019-07-05,2.40,1,112 +19183619,Large loft studio,3255732,Peter,Brooklyn,Williamsburg,40.70527,-73.93057,Shared room,72,30,3,2018-07-07,0.13,1,0 +19188025,"Heart of Bayside, modern 3 Bed 2 bath",95102570,Nancy,Queens,Bayside,40.76304,-73.76948,Entire home/apt,239,5,10,2019-05-20,0.46,1,188 +19188166,Luxury 2bedroom with loft/ 2 bath,134218386,Nancy,Queens,Bayside,40.76143,-73.76937,Entire home/apt,200,4,27,2019-06-30,1.11,1,215 +19189347,Family friendly spacious charming flat!,45223012,Maria,Manhattan,Inwood,40.86702,-73.92519,Entire home/apt,110,2,15,2019-04-25,0.62,1,161 +19190179,Private Room in Williamsburg Loft,36460338,Janine,Brooklyn,Williamsburg,40.71233,-73.9586,Private room,80,5,6,2019-04-24,0.46,1,64 +19190579,"Charming, Sleek UES Studio",9649691,Deaton,Manhattan,Upper East Side,40.76715,-73.95857,Entire home/apt,118,3,29,2019-07-06,1.15,1,0 +19190801,Private room in prime Bushwick- 20mins to the city,24913451,Cristal,Brooklyn,Bushwick,40.6969,-73.92627,Private room,37,3,3,2018-01-14,0.12,1,0 +19191340,Spacious bedroom with living room in Greenpoint,23664115,Becca,Brooklyn,Greenpoint,40.72591,-73.94826,Private room,77,2,15,2018-10-01,0.64,1,12 +19192149,"Walk to Central Park + Columbia, Morningside",27694509,Jen,Manhattan,Harlem,40.80302,-73.95605,Private room,100,6,98,2019-06-22,4.07,1,28 +19193139,Loft Bright Studio,133923404,Madelline,Manhattan,Harlem,40.82669,-73.94827,Entire home/apt,95,5,9,2019-05-25,0.38,1,0 +19193664,"Modern Apartment in Williamsburg, Brooklyn",19734419,Maggie,Brooklyn,Williamsburg,40.71226,-73.95344,Entire home/apt,180,4,0,,,1,0 +19193758,Large bedroom 20 minutes away from Manhattan,89861903,Colin,Queens,Astoria,40.76731,-73.92634,Private room,55,2,5,2017-07-30,0.21,1,0 +19194997,Murray Hill Bedroom. Comfortable and Convenient,71203979,Peter,Manhattan,Kips Bay,40.74507,-73.9792,Private room,76,2,0,,,1,0 +19195173,Bright & sophisticated Brooklyn home,83967416,Freddie,Brooklyn,Crown Heights,40.67072,-73.957,Private room,60,2,1,2017-06-12,0.04,1,0 +19195474,Design-Infused Two Bed Beauty in Fort Greene,389321,Marlene,Brooklyn,Fort Greene,40.69135,-73.97044,Entire home/apt,240,3,15,2018-12-26,0.78,1,0 +19195537,Charming 2 bed 2 bath wash/dryer Gym in building,113805886,Yaacov,Manhattan,Upper East Side,40.77861,-73.95015,Entire home/apt,287,31,6,2019-03-20,0.27,33,326 +19196146,Lower east side artistic oasis,133269895,E,Manhattan,Lower East Side,40.7195,-73.98519,Private room,100,5,0,,,1,0 +19196911,Beautiful shared room in Modern CoLiving space,134293540,Valentin,Queens,Ridgewood,40.7061,-73.9115,Shared room,27,30,4,2018-09-30,0.18,4,6 +19197129,Best CoLiving next to Bushwick!,134293540,Valentin,Queens,Ridgewood,40.70508,-73.90217,Shared room,26,31,5,2018-05-04,0.22,4,365 +19197277,Entire Luxury Divided Studio in Time Square,19623390,Rick,Manhattan,Theater District,40.75936,-73.98752,Entire home/apt,290,5,1,2017-06-20,0.04,1,0 +19197632,Heart Of Queens 2❤️❤️/ Jackson Heights/ Elmhurst,123483050,Andrea,Queens,Elmhurst,40.74741,-73.88149,Private room,85,1,92,2019-06-20,3.70,3,166 +19197983,Beautiful Apartment with Manhattan view.,14249332,Joseph,Queens,Astoria,40.77705,-73.93443,Private room,69,1,68,2019-06-22,2.72,1,51 +19199353,Spacious 1 Bed in the heart of Manhattan,80242044,Vk,Manhattan,Greenwich Village,40.73,-74.00122,Entire home/apt,196,2,15,2019-04-14,0.61,1,0 +19200160,"Art, Design & Comfort.",68228552,Assane,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95297,Entire home/apt,154,14,2,2019-06-10,1.22,2,172 +19200270,New! Clean! 1 Bedroom apt in Bensonhurst -Sleeps 4,131858158,Dan,Brooklyn,Bensonhurst,40.60658,-73.99738,Entire home/apt,113,3,69,2019-05-23,2.80,2,99 +19203963,Luxury apartment in heart of Nolita,6163686,Ben,Manhattan,Nolita,40.72249,-73.99507,Entire home/apt,250,3,0,,,1,0 +19204555,Bedroom in renovated apartment -Astoria,75563831,Rayan,Queens,Astoria,40.76012,-73.9092,Private room,45,10,17,2019-05-07,0.69,2,283 +19206035,UWS Room & Private Bathroom for one,1252275,Kaitlin,Manhattan,Upper West Side,40.80176,-73.96638,Private room,70,3,13,2019-03-25,0.52,1,0 +19206550,Huge sunny room PRIVATE BATHROOM 15 min 2 Times Sq,128156060,Doa,Queens,Sunnyside,40.74194,-73.91289,Private room,70,21,22,2019-03-10,1.02,1,0 +19207312,Huge bedroom w/ private living room in big house!,6287848,Will,Brooklyn,Prospect Heights,40.68117,-73.97461,Private room,100,2,22,2018-03-11,0.91,1,0 +19209436,Large 1-bedroom Apt with lots of charm and art.,87259106,Vaughn,Manhattan,Harlem,40.80995,-73.94485,Entire home/apt,102,3,24,2018-01-15,0.96,1,0 +19209474,Cambridge Place 4 bed Home,134415241,Katherine,Brooklyn,Clinton Hill,40.68384,-73.96201,Entire home/apt,350,2,4,2017-08-06,0.16,1,0 +19209477,Nice comfy private room with backyard included!,20804098,Tenzin,Queens,Maspeth,40.72815,-73.89945,Private room,70,1,0,,,1,0 +19209710,"Sunny, 2BR apartment in the heart of Bushwick",19785181,Robert & Bianca,Brooklyn,Bushwick,40.70166,-73.92673,Entire home/apt,136,3,10,2018-08-25,0.40,1,0 +19209764,"Clean , Charming and convenient location.",16478255,Loredana,Manhattan,Harlem,40.80819,-73.94729,Private room,100,3,0,,,1,362 +19209888,Private room in Brooklyn,2096374,Cyndi,Brooklyn,Bedford-Stuyvesant,40.69601,-73.96036,Private room,80,90,0,,,1,365 +19211023,Charming apartment in Nolita/Soho,6850350,Sam,Manhattan,Nolita,40.72254,-73.99543,Private room,115,1,28,2018-06-22,1.16,1,0 +19212024,Home,764688,Itamar,Brooklyn,Prospect Heights,40.67649,-73.97113,Entire home/apt,160,7,1,2017-07-13,0.04,1,0 +19212268,"Spacious 1-bedroom in Fort Greene, Brooklyn",51914156,Christopher,Brooklyn,Fort Greene,40.69353,-73.9711,Entire home/apt,130,2,31,2019-03-03,1.24,1,0 +19212370,‘ SMALL STUDIO ONLY FOR 2’,11601610,Gh,Manhattan,Upper West Side,40.7732,-73.98768,Entire home/apt,148,4,60,2019-06-22,2.42,1,320 +19212378,Gorgeous private room with private bathroom.,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93746,Private room,110,1,150,2019-07-03,5.99,4,85 +19212489,Authentic private room. Just 25 min to Manhattan!,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93794,Private room,87,1,141,2019-07-01,5.58,4,73 +19212985,"Lovely Zen Entire Apt West Harlem, Fengshui Plants",38655309,Jade,Manhattan,Harlem,40.82953,-73.94283,Entire home/apt,72,3,28,2019-01-12,1.15,1,0 +19218475,Cozy Private Large Bed in Prime Chelsea,134510659,Josif,Manhattan,Chelsea,40.74319,-73.99636,Private room,90,14,0,,,1,0 +19219624,"Creative Retreat Double, With Garden",134521683,Kathy,Manhattan,East Village,40.7239,-73.98111,Private room,120,30,3,2017-09-27,0.12,2,0 +19219988,Stunning refurbished church apt in heart of Wburg,1832930,Christina,Brooklyn,Williamsburg,40.71749,-73.95747,Entire home/apt,450,2,31,2019-06-29,1.24,1,22 +19220496,Parkside luxury - studio with balcony,23257199,Rachel,Brooklyn,Crown Heights,40.67375,-73.96255,Entire home/apt,84,4,8,2017-11-24,0.33,1,0 +19221008,Great room in Upper East Side 85th/3av,99349134,Tupac,Manhattan,Upper East Side,40.77713,-73.95277,Private room,75,1,9,2019-06-23,0.40,2,119 +19221072,Room in Upper West Artsy Loft,63236560,Catherine,Manhattan,Upper West Side,40.79835,-73.97242,Private room,110,7,3,2019-06-03,0.13,1,321 +19221595,Brooklyn Designer 3 Bedrms free parking,131659,Ruth,Brooklyn,Bushwick,40.68267,-73.90576,Entire home/apt,148,3,79,2019-06-22,3.22,1,258 +19222455,One Bedroom Walk Up in Hell's Kitchen,134549676,Todd,Manhattan,Hell's Kitchen,40.76373,-73.9881,Entire home/apt,225,2,1,2017-06-13,0.04,1,0 +19222766,Quiet 1 bedroom in MANHATTAN ( Hamilton Heights),9963151,Milan,Manhattan,Harlem,40.82319,-73.95103,Entire home/apt,122,4,16,2019-06-16,0.67,1,5 +19224202,Spacious Comfort in the Upper West Side,6001984,Pierre,Manhattan,Upper West Side,40.80253,-73.96812,Entire home/apt,190,4,4,2018-11-27,0.17,1,0 +19224930,"Cozy Studio in Upper East Side, Manhattan",21812461,Betul,Manhattan,Upper East Side,40.7787,-73.94775,Entire home/apt,120,20,7,2019-06-27,0.29,1,0 +19225682,Sunny and Breezy Brooklyn Apartment near Trains,26656760,Lynsey,Brooklyn,Bedford-Stuyvesant,40.69477,-73.94423,Entire home/apt,200,4,10,2019-05-28,0.40,1,0 +19225880,Bright & lovely 1BD Apartment,24709724,Maria,Queens,Ridgewood,40.70684,-73.89474,Entire home/apt,80,7,2,2019-01-03,0.11,1,190 +19226317,Sunny Apartment in Brooklyn Heights,26814623,Kate,Brooklyn,Brooklyn Heights,40.69016,-73.99311,Entire home/apt,149,2,13,2019-06-30,0.52,1,0 +19226897,Big & Bright Room In Washington Heights,93561011,Jennifer,Manhattan,Washington Heights,40.84492,-73.93673,Private room,60,2,3,2019-07-01,0.19,1,223 +19226980,Brownstone Living,33365473,Paul,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94271,Entire home/apt,650,31,0,,,2,358 +19227077,Spacious 1 bedroom apt fantastic view Midtown NYC,80990325,Terry,Manhattan,Hell's Kitchen,40.76383,-73.99251,Entire home/apt,175,2,85,2019-06-26,3.43,1,0 +19227138,Modern quiet and clean room minutes from Manhattan,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68178,-73.91287,Private room,55,1,115,2019-06-16,4.64,6,164 +19227222,BRIGHT MASSIVE ROOM. 20 MINUTES TO MIDTOWN,133657043,Diana,Manhattan,Harlem,40.83009,-73.94723,Private room,77,1,1,2019-06-02,0.81,1,0 +19227365,Master bedroom in large apt minutes from Manhattan,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.6829,-73.91295,Private room,55,1,119,2019-06-24,4.78,6,205 +19227424,"Private, cozy room near major trains",86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.6812,-73.91148,Private room,50,1,102,2019-06-22,4.14,6,237 +19227532,"Amazing Harlem Apartment on 5th Avenue +3 bedrooms",134601877,Steven,Manhattan,East Harlem,40.79929,-73.94605,Entire home/apt,350,3,81,2019-06-29,3.46,2,27 +19227538,Private room in sunny Manhattan apartment.,15741095,Cameron,Manhattan,Washington Heights,40.84491,-73.94044,Private room,50,1,20,2017-12-25,0.81,1,0 +19227560,Super Cozy!,333897,Lane,Queens,Ridgewood,40.69578,-73.90261,Private room,100,2,48,2019-07-01,1.96,2,174 +19227562,West Village Apartment,32988374,Christie,Manhattan,West Village,40.73526,-74.00476,Entire home/apt,319,2,20,2019-06-13,1.51,1,79 +19228313,Spacious getaway in the heart of Harlem,63010844,Morgan,Manhattan,Harlem,40.82399,-73.94382,Private room,46,1,0,,,1,0 +19228956,Spacious and bright apartment in Manhattan,19783595,Romy,Manhattan,East Harlem,40.79234,-73.94145,Entire home/apt,120,5,9,2017-09-01,0.36,1,0 +19236099,Spacious 2 Bedroom Apt in Great Neighborhood,6597437,Beth,Brooklyn,Prospect Heights,40.67585,-73.96755,Entire home/apt,150,3,12,2018-12-24,0.52,1,0 +19236409,Sunny 2BR in townhouse on cutest E Vill block,1722812,James,Manhattan,East Village,40.73111,-73.98675,Entire home/apt,250,4,2,2018-01-09,0.08,1,0 +19236716,a beautiful home,134672751,Louis,Staten Island,West Brighton,40.62398,-74.10801,Private room,200,3,0,,,1,365 +19237286,Historic Harlem Brownstone -Perfect for Families!,20128515,Ami,Manhattan,Harlem,40.82707,-73.94763,Entire home/apt,400,4,26,2019-06-12,1.21,1,128 +19239064,Cozy BedStuy/Bushwick Brownstone Apartment,3452241,Sadé,Brooklyn,Bedford-Stuyvesant,40.68524,-73.92183,Private room,125,2,0,,,1,0 +19239282,Beautiful brownstone apartment on quiet street,612818,Emilie,Brooklyn,Carroll Gardens,40.67847,-73.99924,Entire home/apt,125,2,11,2019-07-01,0.45,1,26 +19239928,"Bright UES Studio, avail short or long term",5530093,Natallia,Manhattan,Upper East Side,40.76327,-73.9612,Entire home/apt,180,6,5,2017-11-07,0.21,1,0 +19240100,"Light/Bright Artist's Studio in Red Hook, Brooklyn",29735603,Lisa,Brooklyn,Red Hook,40.6799,-74.01147,Entire home/apt,90,7,3,2018-11-02,0.13,1,215 +19240332,Gorgeous Centrally Located Manhattan Apartment,133547094,Jena,Manhattan,Murray Hill,40.74808,-73.98172,Entire home/apt,200,5,10,2019-07-03,1.41,1,52 +19241136,"Sunny, spacious 1 bedroom apartment in Ridgewood!",5374258,Julia,Queens,Ridgewood,40.70545,-73.90393,Entire home/apt,100,4,7,2019-01-14,0.29,1,0 +19241855,1 Bed&Bath in heart of Bushwick (20mintoManhattan),18515933,Maddie,Brooklyn,Bushwick,40.70565,-73.92492,Private room,70,2,10,2018-11-12,0.40,1,18 +19242128,2 Large Bedroom Apt in quiet Forest Hills,39641996,Mike,Queens,Forest Hills,40.72428,-73.85156,Entire home/apt,100,2,0,,,1,0 +19242821,1 bedroom apt,134438985,Andrea,Queens,Astoria,40.76473,-73.91183,Entire home/apt,199,1,5,2017-12-17,0.23,1,0 +19243465,Room in Full Floor East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72715,-73.98623,Private room,120,1,39,2019-06-02,1.65,7,350 +19244237,Your Brooklyn pad,17184568,Luke,Brooklyn,Bushwick,40.70232,-73.92935,Private room,60,1,1,2017-07-02,0.04,1,0 +19244550,Sun drenched 2br with private backyard!,2110569,Sivan,Brooklyn,Bushwick,40.69954,-73.93761,Entire home/apt,199,2,60,2019-06-30,2.47,1,37 +19244710,Spacious & Cozy 1BR Apartment in Brownstone Bldg,20283471,Ramy,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93315,Entire home/apt,130,1,3,2017-06-26,0.12,1,0 +19245830,Sunny Spacious Room + Private Bathroom in Bushwick,20507114,Tian,Brooklyn,Bushwick,40.70068,-73.92293,Private room,60,3,8,2017-09-24,0.33,1,0 +19245930,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""S”",59156312,Viviana,Queens,Woodhaven,40.68641,-73.86635,Private room,69,3,21,2019-06-21,0.85,9,357 +19246021,"City Room, City View",4620141,Ellen,Manhattan,Washington Heights,40.84717,-73.93267,Private room,30,5,3,2017-08-08,0.12,2,0 +19246114,Stunning modern artsy 2 bed -steam & rooftop,16262749,Abby,Brooklyn,Greenpoint,40.72092,-73.94281,Entire home/apt,350,1,70,2019-07-01,3.26,1,142 +19246490,Large bedroom with PRIVATE bathroom and KING Bed,13463652,Rueben,Brooklyn,Clinton Hill,40.68399,-73.96465,Private room,125,5,0,,,1,0 +19246634,Spacious and Bright 1.5 Bedroom by Prospect Park,23350812,Jonathan,Brooklyn,Kensington,40.64676,-73.97403,Entire home/apt,93,13,6,2019-02-22,0.25,1,37 +19246662,"MANHATTAN +near Central Park& +Columbia University",42068815,Steven,Manhattan,Morningside Heights,40.80908,-73.95858,Entire home/apt,150,3,81,2019-06-02,3.24,1,282 +19246709,Cute and Comfy Bedroom,2514859,Meghan,Brooklyn,Bedford-Stuyvesant,40.68719,-73.95298,Private room,60,3,2,2018-09-10,0.11,2,0 +19247214,Spacious Bedroom in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72717,-73.98643,Private room,180,1,28,2019-06-24,1.17,7,328 +19247235,New Tidy room separate entrance plus paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.75715,-73.81272,Private room,116,2,55,2019-06-26,2.19,10,361 +19247305,Midcentury Minimalist 1BR in Prime Williamsburg,22176151,Lianne,Brooklyn,Williamsburg,40.71576,-73.96084,Entire home/apt,225,2,5,2017-12-18,0.21,1,0 +19248044,Two-story Zen Oasis One Block from Central Park,952909,Peter,Manhattan,Upper West Side,40.77949,-73.98,Entire home/apt,183,30,0,,,1,0 +19248045,Beautiful bedroom in Historic Forest Hills Gardens,121732047,Aaron,Queens,Forest Hills,40.71064,-73.84614,Private room,40,14,0,,,1,19 +19248688,Sunny Brooklyn Two Bedroom,1241818,William,Brooklyn,Cobble Hill,40.68795,-73.99158,Entire home/apt,124,30,1,2017-08-25,0.04,1,12 +19249099,Cozy Chelsea Apartment/ Highline/ Whitney Museum,41902579,Maria,Manhattan,Chelsea,40.74195,-74.00052,Entire home/apt,140,7,41,2019-06-15,1.66,1,13 +19249136,Small Homey Studio in a Big Noisy City,45536295,Alyssa,Manhattan,Harlem,40.81703,-73.93691,Entire home/apt,84,2,3,2017-06-28,0.12,1,0 +19249193,Charming One Bedroom in Brooklyn Heights,11760898,Evan,Brooklyn,Brooklyn Heights,40.69357,-73.99489,Entire home/apt,149,20,0,,,1,0 +19250619,Blue Moon,115546121,Sonche,Queens,Sunnyside,40.74694,-73.9194,Entire home/apt,130,5,0,,,1,0 +19250742,Harlem Garden Oasis in New York City Brownstone,58782992,Mark And Josephine,Manhattan,Harlem,40.82287,-73.94509,Entire home/apt,125,31,96,2019-05-25,3.93,2,186 +19251255,You'll never find studio with this price(Allyours),134809070,Lilian,Brooklyn,Bedford-Stuyvesant,40.67759,-73.90888,Entire home/apt,63,2,26,2018-03-31,1.08,1,0 +19260473,Nicki and Tim's place,5325177,Nicki,Brooklyn,Flatbush,40.64707,-73.96278,Entire home/apt,85,5,2,2018-01-01,0.09,1,0 +19261252,Luxurious Designer brownstone with backyard,5453550,Christine & James,Brooklyn,Clinton Hill,40.69556,-73.96611,Entire home/apt,425,4,38,2019-07-02,1.74,3,262 +19261697,Hidden Treasure in Bed-Sty,67992400,Ben,Brooklyn,Bedford-Stuyvesant,40.6953,-73.93567,Private room,50,2,1,2017-07-25,0.04,1,0 +19261720,Oceanfront vacation home on Rockaway Beach,6988611,Jill,Queens,Arverne,40.58781,-73.79317,Entire home/apt,1500,3,0,,,1,342 +19263405,Spacious Village 1 bedroom - 5 star rated host,4279544,Abigail,Manhattan,Greenwich Village,40.72954,-74.00206,Entire home/apt,215,4,6,2017-12-17,0.24,1,0 +19264368,Relaxing Room in a Spacious Artist Apartment,314115,Gigi,Bronx,Morrisania,40.8329,-73.89608,Private room,60,5,4,2018-07-29,0.16,1,175 +19265766,Cozy luxurious & private 1 1/2 bedroom in Brooklyn,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68153,-73.9538,Entire home/apt,200,7,8,2019-05-26,0.33,2,355 +19265792,Oasis Carriage House Apartment in Williamsburg,14416238,New,Brooklyn,Williamsburg,40.70851,-73.94197,Entire home/apt,125,4,0,,,1,0 +19265835,Private Apt Renovated 2BR by Central Park & Cafés,1366844,Ali,Manhattan,Harlem,40.80079,-73.95798,Entire home/apt,135,3,71,2019-06-09,3.52,1,9 +19266676,Spacious and Modern 1BR in Heart of West Village,31931291,Matthew,Manhattan,West Village,40.73143,-74.00817,Entire home/apt,250,5,0,,,1,0 +19267834,Rainbow Guesthouse,124399442,Igor,Brooklyn,Midwood,40.61359,-73.95983,Shared room,32,1,8,2019-06-30,0.32,4,21 +19268922,LARGE PRIVATE ROOM IN ASTORIA,134741341,Sofia,Queens,Astoria,40.77415,-73.93125,Private room,85,1,14,2018-12-29,0.76,2,6 +19269531,"Steps away from Grand Central, cute & cozy!",4297109,Christian,Manhattan,Midtown,40.75334,-73.97278,Entire home/apt,195,2,5,2017-10-01,0.20,1,0 +19269676,Quintessential loft location on Bond Street.,128780335,Alison,Manhattan,NoHo,40.72681,-73.99346,Entire home/apt,352,4,15,2019-01-01,0.63,1,13 +19270160,One Bedroom Walk Up in Hell's Kitchen,20292772,Noel,Manhattan,Hell's Kitchen,40.76227,-73.99035,Entire home/apt,225,2,6,2017-11-25,0.24,1,0 +19271040,Modern Beautiful Bedford Stuyvesant Brownstone,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.6861,-73.93997,Entire home/apt,60,2,146,2019-07-07,5.82,5,88 +19271084,"Sunny quiet room + living room, 22m to Man. J,M,L",24745688,Talha Can,Brooklyn,Bushwick,40.69439,-73.92008,Private room,35,25,3,2019-02-28,0.13,1,36 +19272653,Hells kitchen crash pad with half bath!,1579845,James,Manhattan,Hell's Kitchen,40.76283,-73.9897,Private room,87,4,0,,,1,0 +19272890,1 bedroom apt with private terrace on UWS.,134961952,Ilona,Manhattan,Upper West Side,40.7765,-73.97914,Entire home/apt,230,5,0,,,1,0 +19273138,"Room in a Beautiful, Spacious Home",53480097,Jillian,Brooklyn,Bushwick,40.68471,-73.90906,Private room,60,2,27,2019-06-28,1.08,2,104 +19273509,Astoria home 2 living rooms/ 1 bedroom/1 bath,4969033,Bella,Queens,Astoria,40.76634,-73.90872,Entire home/apt,90,3,30,2018-08-29,1.24,1,0 +19274199,Luxurious Country Beach Surf Loft,62608664,David,Queens,Neponsit,40.56931,-73.86122,Entire home/apt,274,2,34,2019-06-09,1.37,1,315 +19274206,Bright and spacious private room in Hells Kitchen,7033916,Braden,Manhattan,Hell's Kitchen,40.76463,-73.9877,Private room,69,6,2,2018-01-03,0.08,1,0 +19274249,Bed-study Best!,36474715,Hanan,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95458,Private room,65,3,27,2019-05-11,1.09,1,78 +19274358,"Luxury Condo-gym,pool,sundeck,sauna in bldg",15897027,Christina,Manhattan,Murray Hill,40.75075,-73.9752,Entire home/apt,278,2,8,2018-04-22,0.32,1,0 +19274584,"Private Bedroom, 10 Minutes to Lower Manhattan",24842789,David,Brooklyn,Williamsburg,40.70717,-73.94949,Private room,60,1,5,2017-07-04,0.20,1,0 +19275018,Spacious & bright room in Upper West near Columbia,24771293,Allen,Manhattan,Morningside Heights,40.80477,-73.96486,Private room,79,2,11,2018-02-04,0.45,1,0 +19278895,A Brooklyn retreat. 25M subway to the city.,423117,Jen,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92472,Private room,100,2,13,2019-05-19,0.52,1,179 +19279519,studio in UES,22215460,Abc,Manhattan,Upper East Side,40.7685,-73.95698,Entire home/apt,500,1,0,,,1,363 +19280513,Charming -One bedroom -Williamsburg,18747504,Schimpff,Brooklyn,Williamsburg,40.71886,-73.95695,Private room,100,2,1,2017-06-22,0.04,1,0 +19280591,♛ Private & Beautiful West Village Townhouse 2BR,2474293,Colleen,Manhattan,West Village,40.7316,-74.00212,Entire home/apt,210,5,53,2019-07-02,2.27,1,148 +19281846,Top of the Heights Harlem Duplex!,94877519,Joseph,Manhattan,Harlem,40.82798,-73.95202,Entire home/apt,180,3,40,2019-05-19,1.69,1,65 +19282178,Astoria Two Bed and Kitchen Minutes from subway,131392140,Vik,Queens,Ditmars Steinway,40.77458,-73.92195,Entire home/apt,165,3,61,2019-06-08,2.46,5,62 +19282527,Beautiful Greenpoint Apartment W/ Outdoor space,3820994,Nick,Brooklyn,Greenpoint,40.72812,-73.95619,Entire home/apt,225,5,7,2019-01-01,0.29,1,4 +19282891,Extra Large 1br in the heart of Astoria!,139573,Kristin,Queens,Astoria,40.76272,-73.92656,Entire home/apt,150,7,1,2017-09-12,0.05,1,0 +19283246,LARGE 1 BR IN DOORMAN BUILDING w ROOFTOP + GYM,107179840,Keely,Brooklyn,Bushwick,40.69477,-73.92931,Entire home/apt,90,3,8,2019-05-25,0.32,1,0 +19284144,Great Empty Apartment for you.,19893801,Jimmy,Brooklyn,Windsor Terrace,40.6526,-73.97366,Entire home/apt,77,1,5,2017-07-01,0.20,1,0 +19284253,2A,17770287,Nina,Manhattan,Midtown,40.75077,-73.9814,Entire home/apt,145,30,4,2018-11-30,0.18,14,207 +19287758,Stellar Washington Heights Room Near Major Subways,68915153,Chris,Manhattan,Washington Heights,40.84191,-73.9356,Private room,60,3,6,2018-12-24,0.31,1,0 +19288937,Airy and bright floor in East Village townhouse,135073646,Joy,Manhattan,East Village,40.72784,-73.98883,Entire home/apt,250,2,99,2019-06-21,4.03,1,176 +19289198,Sunny Room with Private Bath; Prime LES/Chinatown,3801752,Tara,Manhattan,Chinatown,40.71418,-73.99238,Private room,90,1,105,2019-06-15,4.19,2,87 +19290380,Cozy gem in the heart of TriBeca!!,134887663,Luis,Manhattan,Tribeca,40.71863,-74.0117,Entire home/apt,220,2,76,2019-06-26,3.04,1,127 +19290840,Sun-filled Williamsburg room for an artist/travelr,135083290,Tiasha,Brooklyn,Williamsburg,40.70928,-73.94882,Private room,46,4,6,2018-11-22,0.41,1,7 +19291110,Homely Private Room with Queen Sized Bed,34198671,Narmeen,Brooklyn,Crown Heights,40.67594,-73.9261,Private room,55,1,1,2017-06-24,0.04,1,0 +19294702,Williamsburg Modern Two-Floor 1 bedroom 1.5 baths,14157243,Leidy,Brooklyn,Williamsburg,40.71617,-73.95283,Entire home/apt,250,2,3,2017-11-05,0.14,1,0 +19294842,"ACintheroom!35minutestodowntown Manhattan,QUEENbed",47782497,Robianddebbie,Brooklyn,East New York,40.66906,-73.87805,Private room,55,7,15,2019-05-01,1.33,3,318 +19295472,East Village / Gramercy Apartment with Yard,42941590,Michael,Manhattan,Gramercy,40.73408,-73.98163,Entire home/apt,225,3,39,2019-07-02,1.79,1,345 +19295652,Backpacker’s Studio( Spring Deal!!),13547493,Chuck,Manhattan,Upper East Side,40.78179,-73.95209,Entire home/apt,120,3,38,2019-06-01,3.37,2,5 +19295911,"Modern, Clean 1 bedroom Apartment in Bushwick",135124200,Y,Brooklyn,Bushwick,40.68911,-73.91581,Entire home/apt,89,2,166,2019-06-22,6.79,1,52 +19295941,Room 12,74633496,Justine,Bronx,University Heights,40.85771,-73.90899,Private room,40,3,31,2019-06-28,1.26,5,362 +19296358,"Private room in midtown Manhattan曼哈顿中心 位于地狱厨房,位置棒棒",135131537,Laura,Manhattan,Hell's Kitchen,40.75743,-73.99638,Private room,69,3,80,2019-06-12,3.70,2,16 +19296503,Fold-out futon on East Village/LES border!,9913035,George,Manhattan,Lower East Side,40.72195,-73.98861,Shared room,55,15,11,2019-05-25,0.44,3,347 +19296720,West Village Getaway,135136607,Adam,Manhattan,West Village,40.73697,-74.00223,Entire home/apt,152,2,29,2019-03-10,1.17,1,0 +19297780,"Beautiful, Sunny, & Spacious 3 Bedrooms at Subway",23401472,Heather,Manhattan,Harlem,40.82452,-73.94499,Entire home/apt,57,30,0,,,2,95 +19297819,Clean&Simple (45 minutes to Manhattan),132341923,Cynthia,Queens,Jamaica,40.68875,-73.78786,Entire home/apt,57,1,120,2019-07-03,5.37,2,56 +19298754,"Artist Hostel in Bedstuy, Brooklyn",132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94868,Shared room,37,2,3,2019-01-01,0.13,3,343 +19298911,Artist Hostel II in Bedstuy Brooklyn,132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69502,-73.94711,Shared room,37,2,0,,,3,348 +19302761,"Cozy and Artsy Bedrooms in Prime BedStuy, BK",68579384,Julie,Brooklyn,Bedford-Stuyvesant,40.68274,-73.9261,Private room,42,3,3,2017-07-09,0.12,2,0 +19304453,Convenient Midtown Private 1 Bedroom,11035230,Mel,Manhattan,Hell's Kitchen,40.75544,-73.99406,Entire home/apt,100,1,13,2019-02-17,0.52,1,0 +19305374,Beautiful Large 1 BD Park Slope Historic District,6179439,Cassandra,Brooklyn,Park Slope,40.67027,-73.97874,Entire home/apt,226,2,57,2019-06-26,2.32,1,127 +19306176,Beautiful Room in Manhattan- Great location,20266646,Gabriella,Manhattan,Morningside Heights,40.81454,-73.96102,Private room,60,2,4,2019-04-23,0.24,1,0 +19306475,Charming Brooklyn House on a Quiet Block,11688742,Holly,Brooklyn,Windsor Terrace,40.65193,-73.97743,Entire home/apt,300,3,1,2017-11-25,0.05,1,194 +19306614,Big sunny room in Williamsburg,10369934,Tom,Brooklyn,Williamsburg,40.71112,-73.95797,Private room,85,14,0,,,1,0 +19307798,Stay in the heart of Little Italy/Chinatown!,23131509,Mohammad,Manhattan,Little Italy,40.71913,-73.9968,Shared room,165,2,0,,,1,0 +19307997,Super Lux 2BR in Downtown Manhattan,105703386,Derek,Manhattan,Battery Park City,40.70725,-74.01741,Entire home/apt,390,2,0,,,1,0 +19308199,Sunny beautiful large bedroom in Williamsburg,31907981,Luis,Brooklyn,Williamsburg,40.71635,-73.94238,Private room,80,3,9,2018-05-11,0.38,1,0 +19308387,Private entry apartment on stunning Park Block,40755122,Ann,Brooklyn,Park Slope,40.6704,-73.97432,Entire home/apt,150,3,105,2019-06-30,4.23,1,72 +19308804,2br/1bth Garden Townhouse Apartment,135061108,Carmelo,Brooklyn,East Flatbush,40.65042,-73.94842,Entire home/apt,225,1,6,2019-07-01,0.25,2,152 +19309279,Cute Room in Renovated Spacious LES/Chinatown Apt,1103131,Andrew,Manhattan,Lower East Side,40.71453,-73.98679,Private room,69,5,72,2019-06-24,2.93,2,316 +19309355,Small and Cozy Private Room in Downtown,8962305,Cici,Manhattan,Lower East Side,40.71391,-73.98938,Private room,61,5,8,2019-04-23,0.65,3,50 +19310278,BestofBrooklyn,54739,Georgi And Alisa,Brooklyn,Crown Heights,40.67578,-73.95606,Entire home/apt,100,5,9,2018-11-11,0.47,1,0 +19310554,3 Floors for over 16 guests minutes from NYC!,1420715,Omar And Kareema,Brooklyn,Bushwick,40.68845,-73.91985,Entire home/apt,399,4,4,2019-05-08,0.28,3,221 +19311031,Sunny Chic Crown Heights One Bedroom,9453989,Nneya,Brooklyn,Crown Heights,40.6735,-73.95322,Entire home/apt,90,13,12,2019-06-01,0.58,1,74 +19311153,Studio in Sunny Sanctuary,48891291,Chelsea,Brooklyn,Bushwick,40.70385,-73.92513,Private room,40,2,3,2017-09-24,0.12,1,0 +19311346,The Heart of Williamsburg,18335748,Jack And Rachel,Brooklyn,Williamsburg,40.71592,-73.9562,Private room,60,3,22,2019-06-07,0.88,1,46 +19312014,Luxury building studio,38483192,Ryan,Manhattan,Financial District,40.70476,-74.01579,Entire home/apt,165,2,0,,,1,0 +19312705,Serene brownstone in the heart of Brooklyn,42947876,Susan,Brooklyn,Clinton Hill,40.68664,-73.96286,Entire home/apt,212,5,11,2018-08-08,0.46,1,10 +19313064,Bright and Comfortable Chic Chelsea 1-bedroom!,34006180,Zack,Manhattan,Chelsea,40.73996,-73.99987,Entire home/apt,200,3,3,2019-04-21,0.16,1,11 +19313134,"Cozy 1 bedroom apt, Quiet, Near metro, East side",3792860,Elena,Manhattan,Upper East Side,40.76873,-73.95328,Entire home/apt,180,3,0,,,2,0 +19313483,"Madison Ave BR Steps from Central Park, east 60s",26691429,Camilla,Manhattan,Upper East Side,40.76892,-73.96906,Private room,115,1,56,2019-06-22,3.03,1,325 +19314011,"Most Amazing Location, Midtown 3 Bedroom",61391963,Corporate Housing,Manhattan,Midtown,40.75542,-73.96781,Entire home/apt,185,30,3,2019-06-02,0.16,91,147 +19314050,Split 1BR immaculate luxury apt Ft Green,135269204,Emma,Brooklyn,Clinton Hill,40.68284,-73.96677,Entire home/apt,130,7,3,2018-09-02,0.13,1,189 +19314589,THE SMALL CHATEAU IN THE TREES,135272642,Stefanie Elizabeth,Manhattan,East Village,40.72408,-73.98297,Entire home/apt,165,1,202,2019-06-22,8.16,1,217 +19314671,"Sunlit, Mid-Century 1 BR 10 minutes to city #10226",5148966,G,Brooklyn,Greenpoint,40.72925,-73.95645,Entire home/apt,160,2,23,2019-07-05,0.94,1,30 +19314909,1.5 Bedrooms in Greenpoint Williamsburg Apt for 5,89031106,Edyta,Brooklyn,Greenpoint,40.72406,-73.95044,Entire home/apt,185,30,3,2019-06-01,0.16,4,261 +19315138,Nest in Nolita,5060814,Lee,Manhattan,Nolita,40.72178,-73.99509,Entire home/apt,170,3,0,,,1,0 +19315218,Spacious Modern Brooklyn Apt!,108578737,Ellis,Brooklyn,Crown Heights,40.66943,-73.96024,Private room,50,5,0,,,1,0 +19315254,All Yours! Entire Spacious Bright Modern Loft!,23827731,Douglas,Brooklyn,Williamsburg,40.71289,-73.96354,Entire home/apt,250,14,13,2019-04-26,0.52,1,31 +19315654,Beautiful Spacious 1 Bedroom Apt. in New York City,135275978,John,Manhattan,Harlem,40.82361,-73.93886,Entire home/apt,150,5,78,2019-06-14,3.14,1,281 +19316517,Large 1 BR / Creative Space - Marble Hill,135294307,Chad,Manhattan,Marble Hill,40.8753,-73.9116,Entire home/apt,90,5,0,,,1,0 +19317002,Quiet Sunny Studio in Roosevelt Island,21383358,Zheliang,Manhattan,Roosevelt Island,40.76119,-73.94914,Entire home/apt,70,5,3,2018-07-01,0.12,1,0 +19317196,Luxury 1 Bed Apartment with GYM,12624062,Fabiana,Manhattan,Financial District,40.70716,-74.01036,Entire home/apt,210,1,8,2018-08-31,0.34,1,54 +19317831,Room for the mighties !! Air conditioner /CPark,100835599,Dalina,Manhattan,East Harlem,40.79031,-73.94688,Private room,113,1,12,2017-09-13,0.48,2,90 +19317834,"Artsy, Cozy 1 bedroom in Flatbush",5416971,Nia,Brooklyn,East Flatbush,40.64041,-73.95133,Entire home/apt,97,2,21,2019-05-13,0.85,1,0 +19319184,"Cozy Room, on a Park-themed-Iike Island",135320687,Ladi,Manhattan,Roosevelt Island,40.76178,-73.94889,Private room,85,3,24,2019-05-26,1.13,2,190 +19322515,20m to Manhattan - 2 Floors + Express Subway,98705818,Mari,Brooklyn,Crown Heights,40.67476,-73.93016,Entire home/apt,550,1,6,2019-05-22,0.25,1,249 +19322801,Romantic art-filled apartment with private yard,21493738,Natalie,Brooklyn,Crown Heights,40.67139,-73.94842,Private room,85,3,0,,,2,0 +19323563,"Luxurious, delightful 2-bedroom in Prime LES!",36851145,Isak,Manhattan,Lower East Side,40.72141,-73.98855,Entire home/apt,260,2,5,2018-01-01,0.20,1,0 +19325562,Private Room in East Village Apartment,119968055,Michelle,Manhattan,East Village,40.72706,-73.98583,Private room,100,1,0,,,1,0 +19326306,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81227,-73.88871,Private room,37,30,5,2018-09-30,0.37,6,329 +19326520,Awesome Williamsburg Apartment,16342788,Carlos,Brooklyn,Williamsburg,40.70857,-73.94501,Private room,85,1,2,2017-09-18,0.09,2,64 +19326745,Home Sweet Home,131354448,Tammie,Queens,Flushing,40.75532,-73.81074,Entire home/apt,85,3,37,2018-08-28,1.51,4,0 +19327636,Cozy studio apartment close to trains 111 st/2 av,67280917,Adam,Manhattan,East Harlem,40.79313,-73.94154,Entire home/apt,100,2,14,2019-06-30,1.22,1,36 +19327822,"Bedroom, Queen bed, 4 train stops to Manhattan",78183456,Ralph,Brooklyn,Bushwick,40.69905,-73.93831,Private room,65,2,39,2019-06-23,1.66,1,76 +19328148,Peaceful room:an AlmostEmpty Apartment of your own,7014073,Alex,Brooklyn,Williamsburg,40.71142,-73.96567,Private room,90,1,7,2018-10-13,0.71,1,0 +19328935,Lovely 2 Bedroom in Flushing Chinatown,5962328,Alan,Queens,Flushing,40.7593,-73.82329,Entire home/apt,115,30,4,2018-11-12,0.22,15,319 +19329404,Immaculate and Sweet Carroll Gardens 1 Bedroom,1580521,Sylvia,Brooklyn,Carroll Gardens,40.67777,-73.99893,Entire home/apt,160,2,72,2019-06-23,3.20,1,236 +19329734,Large Top Floor Apartment,135401519,Luka,Manhattan,Kips Bay,40.74063,-73.98205,Entire home/apt,325,30,155,2019-06-19,6.22,1,240 +19329911,Private room on quiet street in Fort Greene,45602137,Brette,Brooklyn,Fort Greene,40.69546,-73.97303,Private room,65,4,0,,,1,0 +19330704,Private room near Columbia University,134370506,Joseph,Manhattan,Morningside Heights,40.81237,-73.95985,Private room,80,1,39,2019-07-06,1.56,1,13 +19330742,Sunlit Private Room & Balcony in Trendy Bushwick,4922765,Le Roux,Brooklyn,Bushwick,40.70541,-73.91878,Private room,80,299,0,,,1,0 +19330743,Jazz guesthouse,125231390,Keith,Brooklyn,Canarsie,40.64076,-73.88298,Entire home/apt,90,3,44,2019-06-26,1.82,1,126 +19331686,Sunny + Magic Full Apartment in Bushwick,1965001,Bibi,Brooklyn,Bushwick,40.70111,-73.92677,Entire home/apt,150,2,0,,,1,66 +19332077,The hipster apartment in the hipster borough,4298040,Jon,Brooklyn,Fort Greene,40.69211,-73.97224,Private room,125,4,0,,,1,0 +19332658,Big & Sunny Brooklyn Room | TV/AC/Private Bath,3734323,Colin,Brooklyn,Bushwick,40.6883,-73.91383,Private room,65,5,5,2017-09-25,0.20,3,0 +19333921,"Exposed Brick, Cozy West Village Apartment",796111,Jason,Manhattan,West Village,40.73808,-74.00254,Entire home/apt,150,30,3,2018-05-29,0.16,1,83 +19334916,Harlem's House of the Rising Sun,7727013,Toby Steven,Manhattan,Harlem,40.80979,-73.94289,Private room,200,3,2,2018-09-17,0.16,2,24 +19339594,Charming Newly Renovated Brownstone,134808051,Jaime And Stephen,Brooklyn,Crown Heights,40.6746,-73.94652,Private room,80,1,5,2018-09-19,0.22,1,365 +19341760,Lovely Williamsburg Refuge ~ fresh & refined,135508099,Courtney,Brooklyn,Williamsburg,40.71835,-73.94498,Entire home/apt,125,2,16,2019-06-23,0.65,1,0 +19342192,Spacious Garden Apartment with Patio,28283044,Michele,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92738,Entire home/apt,139,4,61,2019-07-01,2.53,1,82 +19342315,"Sunny, Spacious Apartment in Manhattan",135511518,Chloe,Manhattan,Washington Heights,40.85678,-73.92696,Private room,43,7,0,,,1,0 +19342731,Private Room Avail. Now- Aug 20 Clinton/BedStuy,132958806,Shannon,Brooklyn,Bedford-Stuyvesant,40.6914,-73.95993,Private room,45,10,0,,,1,0 +19343700,Modern Upper East Side Apartment near Central Park,135522817,Shaun,Manhattan,Upper East Side,40.77412,-73.95695,Entire home/apt,198,1,143,2019-06-15,5.91,1,300 +19343737,Spacious private BR-PRIME BUSHWICK. Roof access!,80603182,Daria,Brooklyn,Bushwick,40.7016,-73.91974,Private room,40,2,2,2018-05-17,0.09,1,0 +19344708,"City Retrieve3. Twin bed, lovely, simple",3542562,Jana,Manhattan,Harlem,40.82419,-73.94639,Private room,50,31,0,,,4,78 +19344750,Brooklyn Brownstone (gray bedroom - single bed),80292073,Julie,Brooklyn,South Slope,40.66242,-73.98103,Private room,60,5,10,2019-06-30,0.43,2,23 +19345240,Private bed/bath / great views / Upper East Side,35786659,Hao,Manhattan,Upper East Side,40.76801,-73.96085,Private room,75,1,15,2017-12-17,0.61,1,0 +19345676,"Room in spacious, light-filled Brownstone",637733,William,Brooklyn,Bedford-Stuyvesant,40.69092,-73.93094,Private room,35,3,5,2018-04-20,0.32,1,0 +19345943,Stylish Large Bright Brooklyn Loft!!,3919533,Piya,Brooklyn,Bushwick,40.69971,-73.93729,Entire home/apt,162,2,46,2019-06-25,1.92,1,19 +19346150,Gorgeous room on the Upper West Side,18225837,Erika,Manhattan,Morningside Heights,40.80723,-73.96222,Private room,50,5,18,2019-06-16,0.72,1,157 +19346710,"1 bedroom w/ Queen bed, in Manhattan",135559842,Mauricio,Manhattan,Harlem,40.81375,-73.95268,Private room,49,2,0,,,1,0 +19346860,"Comfortable, private room in heart of Brooklyn!",21187349,Janet,Brooklyn,East Flatbush,40.6493,-73.94547,Private room,75,2,30,2019-07-07,1.21,1,104 +19347079,Sunny private apt 25 min from NYC,1334621,Shauna And Sarah,Queens,Woodside,40.7432,-73.91238,Entire home/apt,50,1,28,2019-06-28,1.14,1,13 +19348139,"Cozy, private room in the heart of Fort Greene",24806534,Lisa,Brooklyn,Fort Greene,40.68287,-73.97117,Private room,130,3,1,2017-07-24,0.04,1,0 +19348168,Cyn,74033595,Cyn,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91478,Private room,75,2,1,2018-09-10,0.10,1,0 +19348588,Bright Renewed Apartment 1 minute from 1 train,135582685,Baden,Manhattan,Washington Heights,40.83366,-73.94302,Private room,60,2,97,2019-06-30,4.14,1,35 +19348689,"1 bedroom, East Village Apt.",7969715,Bojana,Manhattan,East Village,40.72884,-73.98517,Entire home/apt,125,25,19,2019-06-24,0.88,1,92 +19349497,Designer Exposed Brick East Village Walk Up,2601002,Daniel,Manhattan,East Village,40.72746,-73.98781,Entire home/apt,80,4,11,2018-07-06,0.44,1,0 +19351427,Sunny modern apt w great view- 1 stop to Manhattan,9155010,Tia,Queens,Long Island City,40.74509,-73.94904,Entire home/apt,120,5,4,2019-01-02,0.32,1,7 +19354239,Crown Heights Brooklyn residential rental!,135630698,Esty,Brooklyn,Crown Heights,40.66891,-73.94605,Entire home/apt,150,3,23,2019-06-08,0.93,1,120 +19355497,"Spacious room, great college area, 1 blck to train",1221228,Yimka,Brooklyn,Clinton Hill,40.69112,-73.96059,Private room,37,7,3,2017-07-30,0.12,1,0 +19356281,Brooklyn Hot Spot with Best Manhattan Views,11495231,Kelly,Brooklyn,Greenpoint,40.72627,-73.95943,Entire home/apt,250,3,0,,,1,0 +19356518,Cosy quiet nest on a Mulberry tree,77125873,Liliya,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94106,Entire home/apt,130,2,24,2019-06-19,1.14,1,10 +19357186,Bright & Airy Private Room in the Heart of Harlem,12518898,Moraa,Manhattan,Harlem,40.80112,-73.95232,Private room,69,14,3,2017-12-27,0.12,1,0 +19359218,Sunny Bedroom with Roof access in The East Village,66215286,Sydnei,Manhattan,East Village,40.72686,-73.97864,Private room,75,20,0,,,1,0 +19359301,Hideaway Relaxed spot,80672906,Courtney,Brooklyn,Kensington,40.63142,-73.97154,Private room,100,1,0,,,1,0 +19359445,Honeycomb hideout,135680128,Shoshannah,Bronx,Wakefield,40.90391,-73.85312,Entire home/apt,120,2,34,2019-06-22,1.42,1,77 +19360560,One bedroom; private house; great location,43604044,Judy,Queens,Whitestone,40.78081,-73.82005,Private room,40,2,0,,,1,0 +19360685,NEWLY RENOVATED flat in doorman building,6670822,Yana,Manhattan,Lower East Side,40.71992,-73.99251,Entire home/apt,300,5,6,2019-07-01,0.24,1,45 +19361884,"JFK 10mins, LGA 15mins drive, Two Beds in a Room",101657794,Dr. Shirin,Queens,Briarwood,40.70962,-73.80616,Private room,70,1,32,2019-07-01,1.29,6,364 +19361969,new apt for sublet a year,135703190,Sophie,Brooklyn,Vinegar Hill,40.69891,-73.98473,Entire home/apt,300,360,0,,,1,365 +19362079,Garden Apartment in Carroll Gardens Townhouse,76854135,Sarah,Brooklyn,Carroll Gardens,40.67811,-74.00102,Entire home/apt,160,2,52,2019-06-20,2.16,1,9 +19362485,"2 beds in nice rooms, JFK&LGA 15 minutes",101657794,Dr. Shirin,Queens,Briarwood,40.70988,-73.80691,Private room,60,2,38,2019-06-16,1.53,6,365 +19362649,upstairs single with queens bed and all decorative,101657794,Dr. Shirin,Queens,Briarwood,40.70848,-73.80607,Private room,70,1,22,2017-09-30,0.89,6,0 +19363356,Cute Harlem Bedroom,125684191,Jules,Manhattan,Harlem,40.81783,-73.95346,Private room,55,1,2,2017-06-28,0.08,1,0 +19363396,Soho Downtown - Large Sunny Private Room!,27721159,Louise,Manhattan,SoHo,40.72635,-74.00298,Private room,94,1,1,2017-07-05,0.04,1,0 +19363671,The Sterling Flat,46454894,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.9543,Entire home/apt,105,1,2,2017-07-03,0.08,1,0 +19363728,Private Room in Great East Village Apartment!,27443386,Lauren,Manhattan,East Village,40.72036,-73.97889,Private room,50,1,2,2017-07-17,0.08,1,0 +19363931,Crown Heights Guest House 3R,74541079,Abraham,Brooklyn,Crown Heights,40.6692,-73.9359,Entire home/apt,87,3,32,2019-07-01,1.36,9,72 +19363944,"Bright, Spacious West Village Getaway!",21450607,Ana,Manhattan,West Village,40.7328,-74.00845,Entire home/apt,299,2,1,2017-07-21,0.04,1,0 +19364229,Heart of Chelsea Private room in a serviced 2BD,4048704,Tala,Manhattan,Chelsea,40.7417,-74.00229,Private room,100,3,1,2017-07-15,0.04,1,0 +19364266,"Private room in charming, eclectic Flushing home",135732224,Laura,Queens,Flushing,40.75474,-73.82166,Private room,44,1,0,,,1,0 +19364351,"Private, Cozy Bedroom in the Upper East",39561430,Tim,Manhattan,Upper East Side,40.78119,-73.9462,Private room,52,22,1,2018-12-12,0.14,1,0 +19364590,"Spacious, sunny and private BR in Woodside, Queens",51537620,Victoria,Queens,Woodside,40.74509,-73.89649,Private room,80,2,2,2017-07-23,0.08,1,0 +19365218,Peaceful Private Bedroom in Brownstone with Garden,9530419,Mathilde,Brooklyn,Bedford-Stuyvesant,40.69201,-73.95795,Private room,55,2,3,2017-08-24,0.12,1,0 +19367928,"Getaway to the city, 2 blocks from train (C)",74179880,Silvia,Brooklyn,East New York,40.67392,-73.88892,Entire home/apt,81,3,45,2019-06-15,1.82,8,356 +19368455,Chelsea Gem,70154608,Donna,Manhattan,Chelsea,40.74625,-73.99911,Entire home/apt,185,5,17,2019-07-01,0.88,1,15 +19375739,PRIVATE BACK PATIO - light-filled luxury apartment,119108169,Molly,Brooklyn,Bedford-Stuyvesant,40.69224,-73.95819,Private room,60,4,1,2017-07-01,0.04,1,0 +19376114,"Contemporary, Comfy & Affordable Brooklyn (Rm#2)",127345864,Charlene,Brooklyn,East Flatbush,40.64156,-73.93177,Private room,37,7,62,2018-11-08,2.53,4,30 +19376182,Peaceful Room in the heart of Clinton Hill,29243209,Sarah,Brooklyn,Clinton Hill,40.68618,-73.96179,Private room,70,1,6,2017-08-13,0.24,2,0 +19376753,"Lovely Room for A Real, Cozy Brooklyn Experience",7756888,Joe,Brooklyn,Flatbush,40.63609,-73.96687,Private room,69,2,1,2017-08-13,0.04,1,0 +19376872,Sun Filled 18ft Ceiling Duplex Noho/East Village,7107479,Genevieve,Manhattan,NoHo,40.7291,-73.99246,Entire home/apt,191,2,37,2019-05-19,1.50,1,5 +19378517,"Bright, Spacious Room in Historical Neighborhood",34160620,Charlotte And Mary,Manhattan,Harlem,40.82186,-73.94624,Private room,80,2,2,2017-07-19,0.08,2,0 +19380186,Beautiful BRIGHT and SUNNY - BEST location in NYC!,13669059,Nancy,Manhattan,East Village,40.72489,-73.98956,Entire home/apt,250,4,14,2019-05-24,0.58,1,16 +19380620,Washington Heights room,132826462,Erin,Manhattan,Washington Heights,40.84118,-73.93697,Private room,70,2,1,2018-01-04,0.05,1,0 +19381437,Big furnitured room in UWS for August!,22655081,Alan,Manhattan,Upper West Side,40.79205,-73.97262,Private room,45,5,0,,,1,0 +19382104,Stylish Share With Exposed Brick In Brooklyn,25064774,Eden,Brooklyn,Bedford-Stuyvesant,40.68936,-73.94189,Private room,33,14,1,2017-07-16,0.04,1,0 +19382201,Your Quiet Refuge in the Heart of Manhattan,9405109,Carolina,Manhattan,Civic Center,40.71195,-74.00757,Entire home/apt,200,3,3,2019-04-15,0.13,1,19 +19382819,LUXURY STUDIO ON UPPER EAST SIDE BY CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.76833,-73.95581,Entire home/apt,135,30,9,2019-07-01,0.38,16,340 +19383510,Prime Williamsburg Location- Few Steps to Subway,14398102,Elisa-Beth,Brooklyn,Williamsburg,40.71487,-73.94524,Private room,49,5,1,2019-02-26,0.23,1,33 +19383561,Sunny & Quaint NYC Loft in Chelsea/Meatpacking,9597266,Audrey,Manhattan,West Village,40.74012,-74.00364,Entire home/apt,190,2,1,2017-07-31,0.04,1,0 +19384034,Great space for 1 or 2 guests!,135877454,Zoilo,Queens,Astoria,40.76065,-73.90905,Entire home/apt,80,4,6,2018-09-01,0.48,1,0 +19384126,Two Private Floors in brownstone by Prospect Park,11370189,Brandon,Brooklyn,Prospect Heights,40.67602,-73.96593,Private room,225,5,0,,,2,1 +19385072,Full floor in Artists Triplex Brownstone,22193918,Kateryna & Michael,Brooklyn,Bedford-Stuyvesant,40.68767,-73.95495,Private room,120,2,6,2019-06-05,0.91,1,52 +19385683,"Private, Cozy, & Conveniently located Chelsea Room",4581860,Serena,Manhattan,Chelsea,40.7476,-73.99348,Private room,130,2,21,2018-04-05,0.96,1,0 +19385783,"Bright, clean room in great location",5399668,Annesofie,Queens,Long Island City,40.74538,-73.94747,Private room,75,2,17,2018-06-03,0.68,1,0 +19385872,Sun-filled Oasis in Crown Heights,13283016,Sarah,Brooklyn,Crown Heights,40.66658,-73.95167,Entire home/apt,157,1,0,,,1,0 +19385941,Spotless Clean room private entrance paid parking,124860677,Jim&Lisa,Queens,Flushing,40.75712,-73.8122,Private room,120,2,45,2019-07-01,1.87,6,365 +19386162,Big Private Bedroom on Roosevelt Island,106948134,Erik,Manhattan,Roosevelt Island,40.76074,-73.94943,Private room,72,1,12,2019-05-22,0.48,2,0 +19386444,"Joy's Place! Cozy, Comfortable and Quaint home",22462,Joy,Brooklyn,Bedford-Stuyvesant,40.68326,-73.92448,Entire home/apt,150,3,80,2019-06-22,3.38,1,42 +19386545,Private Room in Modern Loft in Williamsburg,31920354,Liz,Brooklyn,Williamsburg,40.71152,-73.93902,Private room,110,3,3,2018-01-03,0.14,2,269 +19386564,Quiet and Sunny Astoria NYC apt,5749658,Jason,Queens,Astoria,40.75636,-73.927,Entire home/apt,70,30,10,2018-08-21,0.41,1,3 +19387402,Luxury Central Park Apartment close to everything,78325795,Bozhena,Manhattan,Harlem,40.80369,-73.94857,Entire home/apt,179,2,143,2019-07-05,5.77,3,197 +19387438,"Lovely room, close to all!",135910220,Maria,Queens,Maspeth,40.73832,-73.90669,Private room,45,2,41,2019-07-01,1.68,1,154 +19387536,Loft in The Heart of Bushwick,17026738,Camila,Brooklyn,Williamsburg,40.70642,-73.92739,Entire home/apt,95,8,6,2018-07-23,0.25,1,0 +19387555,Ballet Suite,32691167,Misha,Manhattan,Washington Heights,40.83803,-73.94421,Private room,120,30,0,,,1,0 +19387694,Cool town house,14140453,Mark,Brooklyn,Carroll Gardens,40.68254,-73.99207,Entire home/apt,450,4,11,2018-12-29,0.44,1,2 +19387782,Bright and Sunny Lower East Side Studio!,5180117,Elise,Manhattan,Lower East Side,40.72034,-73.98617,Entire home/apt,140,2,20,2019-06-16,0.97,1,37 +19388198,"Charming Hotel Alternative 2 +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79179,-73.94506,Private room,89,3,21,2019-06-16,0.91,2,125 +19388293,Private studio at a housework with backyard,14805863,Sherry,Queens,Maspeth,40.73519,-73.90271,Entire home/apt,88,3,7,2018-04-13,0.28,1,0 +19388464,Private room with A/C & great bed by Prospect Park,50591874,John,Brooklyn,Prospect-Lefferts Gardens,40.65653,-73.95786,Private room,55,1,124,2019-06-24,5.02,1,24 +19389677,Sunny livingroom in 1 bedroom. Couch only though.,135932425,Samantha,Manhattan,Washington Heights,40.85471,-73.93016,Private room,50,1,1,2017-07-24,0.04,1,0 +19389911,Spacious and Clean Private Bedroom in NYC,5612625,Andy,Manhattan,Upper West Side,40.79503,-73.96715,Private room,95,1,55,2018-05-24,2.23,1,0 +19390119,Duplex Roof top in the heart of crown hight,135932422,Delton,Brooklyn,Crown Heights,40.67398,-73.92787,Entire home/apt,124,2,65,2019-07-07,2.67,1,308 +19390314,TRUE WEST VILLAGE GROUND FL. WITH GARDEN!!,79572183,Gillian,Manhattan,West Village,40.73852,-74.00269,Entire home/apt,180,30,0,,,1,264 +19401219,"Great Catch, Don't miss out!",134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.69257,-73.94657,Entire home/apt,165,3,82,2019-06-19,3.30,7,247 +19403353,"New studio in Gowanus, Brooklyn",14404488,Iván,Brooklyn,Gowanus,40.67835,-73.9908,Entire home/apt,102,10,0,,,1,0 +19403704,Private bathroom and bedroom for 1 -2 people,10262363,Hangi,Manhattan,Hell's Kitchen,40.75548,-73.9951,Private room,100,4,1,2017-07-03,0.04,1,0 +19404654,Harlem Get Away,88861099,Roger,Manhattan,Harlem,40.8101,-73.94021,Private room,88,2,55,2019-06-23,2.24,1,208 +19404818,Bright Quiet Airy Tribeca Loft,374115,Victoria,Manhattan,Tribeca,40.72403,-74.00858,Entire home/apt,200,2,7,2019-05-26,0.29,1,0 +19405371,Modern and Artful Home in Manhattan/NYC,35064923,Marlyn,Manhattan,East Harlem,40.80138,-73.94413,Entire home/apt,127,4,86,2019-06-29,3.68,1,1 +19407214,Brooklyn's 3 bdrm Honeycomb,35108251,Belinda,Brooklyn,East New York,40.66929,-73.89079,Entire home/apt,133,2,73,2019-06-23,2.98,2,171 +19407360,Greenpoint top floor w/ sun & views,1341922,Blake,Brooklyn,Greenpoint,40.72412,-73.95261,Private room,49,1,0,,,1,0 +19407599,Nice room near Columbia University,136058103,Jessie,Manhattan,Upper West Side,40.80221,-73.96514,Private room,35,1,4,2017-08-02,0.17,1,0 +19407781,Bed-Stuy Brownstone huge sunny room 25mins to LES,127357582,Shannon,Brooklyn,Bedford-Stuyvesant,40.6834,-73.92035,Private room,69,2,63,2019-06-29,2.53,2,102 +19407992,"BEAUTIFUL LOFTY APT in the HEART of WBURG, BK",8304751,Simon & Jessie,Brooklyn,Williamsburg,40.71527,-73.95946,Entire home/apt,250,7,10,2019-05-30,0.43,1,83 +19408027,Beautiful Room in Brooklyn with 2 Roommates,34585857,Saya,Brooklyn,Crown Heights,40.6719,-73.93475,Private room,35,7,5,2019-03-29,0.25,1,36 +19408620,Luxury Secured Building / Chic NYC Studio,16932515,Daniela,Manhattan,Midtown,40.76064,-73.97066,Entire home/apt,375,4,2,2017-09-23,0.08,1,178 +19408844,Cozy studio in the heart of Chelsea!,2102686,Eric,Manhattan,Chelsea,40.7483,-74.00031,Entire home/apt,135,2,10,2018-09-03,0.41,1,5 +19408914,Spacious one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74818,-73.97537,Entire home/apt,175,30,1,2018-01-17,0.06,50,342 +19409299,NIce one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74843,-73.97715,Entire home/apt,175,30,1,2018-01-31,0.06,50,365 +19409421,Nice room with terrific skyline view in cosy apt,4844197,Coline,Brooklyn,Williamsburg,40.7098,-73.94834,Private room,60,3,12,2018-09-01,0.51,1,0 +19409691,Adorable apartment for your stay,133573369,Cat,Manhattan,Upper East Side,40.77366,-73.95755,Entire home/apt,125,7,0,,,1,0 +19409883,Spacious 2BR APT in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79749,-73.93336,Private room,140,1,1,2017-12-10,0.05,2,177 +19410180,"Quiet, Comfy Room in Unbeatable Wburg Location!",7252535,Wes,Brooklyn,Williamsburg,40.71228,-73.9599,Private room,80,2,31,2019-06-15,1.26,2,5 +19410331,"Spacious, Prime Carroll Gardens, BK Apartment",23985682,Tim,Brooklyn,Carroll Gardens,40.67507,-73.99805,Entire home/apt,160,2,6,2017-08-15,0.24,1,0 +19412140,Sunny Bed-Stuy apartment with rooftop access,61483702,Sasha,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93446,Private room,70,2,3,2017-07-16,0.12,2,0 +19412207,Two bridges high end studio manhattan,49123284,Kyriaki,Manhattan,Two Bridges,40.71109,-73.99616,Entire home/apt,145,6,42,2019-06-15,2.13,2,221 +19413230,2 bedroom flat in Greenwich Village New York,136098610,Lydia,Manhattan,West Village,40.73247,-74.00335,Entire home/apt,225,2,54,2019-06-20,2.22,1,79 +19413670,Spacious and airy room in prime South Williamsburg,23048696,Andrea,Brooklyn,Williamsburg,40.70928,-73.9659,Private room,68,3,4,2017-08-01,0.16,1,0 +19413675,See for yourself :),28249503,Zachary,Brooklyn,Bushwick,40.68663,-73.90721,Private room,90,3,8,2017-09-29,0.32,1,0 +19413691,"Apartment in Manhattan, Near Express Trains & Park",4516201,Chloe,Manhattan,Harlem,40.80964,-73.94321,Entire home/apt,102,2,12,2019-04-07,0.50,1,0 +19414154,Cozy room in heart of Williamsburg,136106661,Sally,Brooklyn,Williamsburg,40.71078,-73.95071,Shared room,60,15,4,2018-04-30,0.18,1,83 +19414281,Charming Prewar Full Floor Apartment,4040993,Kelly,Manhattan,Chelsea,40.74371,-74.00244,Entire home/apt,400,3,0,,,1,0 +19414323,Gorgeous bedroom in the Heart of Bushwick!,10457196,Richard,Queens,Ridgewood,40.70234,-73.90815,Private room,49,6,12,2019-05-20,0.49,11,65 +19414732,Williamsburg Bedroom,134677764,Leo,Brooklyn,Williamsburg,40.71112,-73.95382,Private room,70,5,3,2017-07-14,0.12,1,0 +19414813,1BR - Heart of West Village - 30 Day Min - Unit 2,4422523,Marie,Manhattan,West Village,40.73392,-74.00354,Entire home/apt,150,30,3,2019-01-24,0.17,6,286 +19415114,Entire Apt (1 Bdr) in the Upper East Side 85 St,59906749,Heidi,Manhattan,Upper East Side,40.7794,-73.95427,Entire home/apt,119,3,6,2018-08-28,0.25,1,0 +19415314,"Girls only, cozy room one block from Times Square",47336995,Mario,Manhattan,Hell's Kitchen,40.75812,-73.98935,Shared room,10,1,2,2017-06-24,0.08,1,0 +19415887,Terrace Luxury Apartment,52295482,Nelle,Brooklyn,Fort Greene,40.69321,-73.98143,Entire home/apt,375,2,14,2019-01-05,0.60,1,75 +19415979,Newly renovated studio in Prime Manhattan location,35285033,Melissa,Manhattan,Chelsea,40.74444,-74.00068,Entire home/apt,175,3,2,2017-10-01,0.08,1,0 +19416433,Stylish Studio in the heart of NYC,136130770,Aristides,Manhattan,Theater District,40.76037,-73.98747,Entire home/apt,132,24,1,2018-05-29,0.07,1,198 +19416458,Furnished studio in Union Square,26920932,Benjamin,Manhattan,Gramercy,40.73557,-73.98589,Entire home/apt,200,14,1,2017-09-04,0.04,1,0 +19424191,Lovely studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74857,-73.97722,Entire home/apt,150,30,5,2019-02-23,0.26,50,344 +19424753,"Bright, spacious, private room",35380551,Denise,Brooklyn,Bushwick,40.70119,-73.91154,Private room,45,2,2,2017-07-22,0.08,1,0 +19425570,One Bedroom Apartment in NYC,84803093,Javier,Queens,Kew Gardens Hills,40.73307,-73.81868,Entire home/apt,150,1,16,2019-06-28,0.81,1,178 +19427899,"""The Park View"" in Sunset Park",13484820,Alejandra,Brooklyn,Sunset Park,40.64667,-74.00187,Private room,55,2,0,,,1,0 +19428065,"Master Bedroom in a Beautiful, Spacious Home",53480097,Jillian,Brooklyn,Bushwick,40.68683,-73.90733,Private room,60,3,3,2018-10-07,0.23,2,0 +19428575,Alcove studio - Resort style,134871099,Anthony,Manhattan,Roosevelt Island,40.77009,-73.9427,Entire home/apt,250,2,52,2019-06-23,2.10,1,0 +19429043,"Single bed room facing south w/A/C, washer/dryer",127357582,Shannon,Brooklyn,Bedford-Stuyvesant,40.68194,-73.91832,Private room,36,2,86,2019-07-06,3.48,2,81 +19429202,Clean Room,136211138,Meerim,Queens,Woodside,40.74374,-73.90387,Private room,59,1,0,,,1,0 +19429274,Huge room in Brooklyn,40086875,Amir,Brooklyn,Crown Heights,40.67484,-73.94084,Private room,39,1,0,,,1,0 +19430063,Amazing Studio at the Time Square/52C,48146336,Irina,Manhattan,Hell's Kitchen,40.76174,-73.99228,Entire home/apt,130,30,5,2019-02-05,0.22,20,333 +19430074,Quiet Manhattan: top floor 1 BR across from park,3600282,Joel,Manhattan,Inwood,40.8674,-73.92411,Entire home/apt,99,3,4,2018-04-22,0.18,1,0 +19430239,"luxury, neat, minute fom trains",118816229,Ali,Bronx,Williamsbridge,40.88249,-73.86274,Private room,50,1,85,2019-07-04,3.43,1,328 +19430305,"Beautiful, Stylish 1BR in Heart of Crown Heights",8575784,Lin,Brooklyn,Crown Heights,40.67316,-73.95812,Entire home/apt,155,2,4,2017-11-01,0.16,1,0 +19431326,Cozy Room in Astoria,136229596,James,Queens,Astoria,40.76488,-73.91813,Private room,166,1,8,2018-10-05,0.36,1,89 +19431893,Nice small room NYC (5 min from LaGuardia Airport),136230287,Jhon,Queens,East Elmhurst,40.76523,-73.86966,Private room,40,1,16,2017-11-20,0.65,1,0 +19433400,*DISCOUNTED RATES* PERFECT FOR THE WORLD TRAVELER,2129777,Aj,Queens,Long Island City,40.75132,-73.94236,Private room,135,3,17,2018-12-20,0.70,2,90 +19433585,Comfy and private garden bedroom,3130452,Jamba-Djang,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94409,Private room,40,3,0,,,1,0 +19433834,Charming one-bedroom with original tin ceilings,6094395,Alysse,Brooklyn,Gowanus,40.67002,-73.99158,Entire home/apt,140,4,14,2018-11-14,0.58,1,8 +19436446,Private sanctuary close to Central park,88972126,Deeksha,Manhattan,Harlem,40.80194,-73.95551,Entire home/apt,120,1,3,2017-07-31,0.12,1,0 +19436634,Artist Hostel III in Bedstuy Brooklyn,132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69625,-73.94857,Shared room,37,2,1,2017-08-19,0.04,3,138 +19438593,Winterbreak in Brooklyn!,136285608,Giada,Brooklyn,Bushwick,40.68919,-73.91719,Private room,50,10,1,2018-12-21,0.15,1,0 +19438695,Loft in big apartment,136285709,Jenna,Manhattan,SoHo,40.72439,-74.00481,Private room,103,1,1,2017-07-07,0.04,2,0 +19438978,Private bedroom and bathroom in spacious apartment,136285709,Jenna,Manhattan,SoHo,40.7238,-74.00665,Private room,125,1,1,2017-06-25,0.04,2,0 +19439068,Newly Renovated 2BR private basement unit.,69427329,Michelle & Eddie,Queens,Elmhurst,40.739,-73.87609,Entire home/apt,120,2,82,2019-07-05,3.31,6,230 +19439624,Light-filled guest room in heart of Crown Heights,107802009,Luis,Brooklyn,Crown Heights,40.67496,-73.95345,Private room,65,3,18,2017-12-11,0.75,2,0 +19439682,Entire Apartement in Queens!8min from Jfk,136288915,Balwinder,Queens,Richmond Hill,40.6839,-73.82444,Entire home/apt,79,1,272,2019-07-07,11.56,1,56 +19439790,Chelsea/Flatiron 1-Bedroom Apt in Luxury Building,24464178,Ted,Manhattan,Chelsea,40.74379,-73.99433,Entire home/apt,189,2,7,2019-04-30,0.30,1,0 +19439956,LUXURY APARTMENT 5 MIN TO LGA 20 TO JFK,136300414,Gonzalo,Queens,East Elmhurst,40.75765,-73.89725,Entire home/apt,250,1,62,2019-07-01,3.01,1,336 +19440004,Private Bedroom on Upper East Side,4830234,Chef Menezes,Manhattan,Upper East Side,40.77594,-73.94461,Private room,100,1,51,2019-06-02,2.11,1,172 +19440924,1 Bedroom Apartment on the Upper West Side,50386076,Charlie,Manhattan,Upper West Side,40.80006,-73.9648,Entire home/apt,105,1,24,2018-01-07,0.97,1,0 +19441240,Clean Cozy Close Comfortable,16566001,Ebin,Manhattan,Harlem,40.81611,-73.94419,Private room,36,2,11,2017-10-22,0.45,1,0 +19446302,2-Bedroom Furnished Apartment In Brooklyn,136352388,Franco,Brooklyn,Flatbush,40.63691,-73.95327,Private room,45,3,0,,,1,0 +19448302,Large Artsy Brooklyn Basement with windows,10980633,Javier,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94275,Private room,70,4,0,,,1,0 +19448363,Cozy walk up 3 blocks from Times Square,40823628,Romé,Manhattan,Hell's Kitchen,40.76298,-73.99438,Private room,99,3,49,2019-06-25,1.98,1,216 +19449463,Beautiful Williamsburg 1.5 BR-9 min to NYC!,8292927,Christian,Brooklyn,Williamsburg,40.7135,-73.94147,Entire home/apt,95,2,70,2019-06-21,2.90,2,22 +19450121,**Vacation in Comfort as you Visit the Big Apple**,73186534,Nelson,Manhattan,Washington Heights,40.85063,-73.94315,Private room,48,2,53,2019-07-06,2.48,1,242 +19450906,Comfortable and cozy sunlit home,19705005,Sarah,Brooklyn,Clinton Hill,40.69215,-73.96692,Entire home/apt,126,10,6,2017-09-05,0.25,1,11 +19451978,A PIECE OF GREENWICH VILLAGE HISTORY!,42592487,Mariel,Manhattan,Greenwich Village,40.73299,-73.99812,Private room,135,2,79,2019-06-16,3.32,1,43 +19452119,Huge Modern Room in a Large Apartment - Manhattan,90531014,Nabeela,Manhattan,East Harlem,40.78565,-73.9436,Private room,100,2,10,2019-01-01,0.42,1,66 +19452755,Comfortable Entire 2 Bedroom Apt in Williamsburg,733034,Jack,Brooklyn,Williamsburg,40.70753,-73.9534,Entire home/apt,126,2,4,2018-07-29,0.16,1,0 +19454344,Perfect ap in Manhattan! Walking to Central Park!,11670284,Val,Manhattan,Upper East Side,40.76811,-73.95194,Entire home/apt,150,3,10,2019-05-02,0.54,2,89 +19455149,Manhattan Phenomenal Deal! BEST Chelsea Room,136431007,Louie,Manhattan,Chelsea,40.74944,-73.99774,Private room,49,1,40,2019-06-09,1.63,1,43 +19455284,Crown Heights Guest House 2R,74541079,Abraham,Brooklyn,Crown Heights,40.6696,-73.93655,Entire home/apt,88,3,29,2019-07-01,1.26,9,46 +19455395,Families & Couples-2 BR+playroom (4beds),954113,Andrew,Brooklyn,South Slope,40.66043,-73.98609,Entire home/apt,139,2,19,2019-05-05,0.78,1,93 +19455656,NYC adventurous getaway!,28626337,Jess,Manhattan,Chelsea,40.73958,-74.00171,Private room,65,3,2,2018-01-01,0.08,1,0 +19455757,Private Room in the center of Park Slope,83171661,Yuichi,Brooklyn,Park Slope,40.66854,-73.98419,Private room,40,4,4,2017-08-12,0.17,3,0 +19456350,"Bright, Spacious Penthouse Near Park",126144914,Miles,Manhattan,Upper West Side,40.7789,-73.98527,Entire home/apt,250,10,5,2018-08-07,0.21,1,0 +19456810,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70454,-73.81549,Private room,93,1,2,2017-07-23,0.08,18,90 +19457062,"Cobble Hill apartment, +spacious, cozy and charming",76215404,Jenny,Brooklyn,Cobble Hill,40.68849,-73.9956,Entire home/apt,125,2,137,2019-07-04,5.78,1,2 +19458290,Private & Cozy Apartment - 5 Minutes from JFK !!,121978270,Victoria & Lovely,Queens,South Ozone Park,40.67,-73.79232,Entire home/apt,85,4,55,2019-06-09,2.48,1,69 +19458462,Roof Deck Apartment in Trendy Part of Brooklyn,10440010,Louisa,Brooklyn,Clinton Hill,40.68689,-73.95982,Entire home/apt,210,7,7,2019-05-25,0.30,1,50 +19459082,Room on 5th St & 2nd Ave! Prime Location!,90429772,Hanna,Manhattan,East Village,40.72728,-73.98954,Private room,60,7,25,2019-05-26,1.10,2,42 +19459142,Comfy stay!,135696084,Dustin,Manhattan,Kips Bay,40.74072,-73.98133,Private room,100,1,0,,,1,0 +19459965,HOUSE 2 ENTRANCES 2 KITCHEN 2 BATH 15min TO MANHTN,30237517,David,Queens,Forest Hills,40.73437,-73.8502,Entire home/apt,278,3,9,2018-11-18,0.39,6,0 +19460197,HUGE ROOM SEPARATE ENTRANCE 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73321,-73.85058,Private room,75,2,1,2017-09-04,0.04,6,0 +19460218,NYC Bronx cozy studio for relaxation and quiet,132010409,Daisy,Bronx,Schuylerville,40.83855,-73.83167,Entire home/apt,85,3,1,2018-07-08,0.08,1,0 +19460590,Wonderful apartment in the center of Astoria!,22218540,Demetrios John,Queens,Astoria,40.76564,-73.9173,Private room,99,5,0,,,1,0 +19466060,your space around Myrtle Ave,17274880,Jangho,Brooklyn,Bedford-Stuyvesant,40.69343,-73.9371,Private room,35,5,5,2017-12-27,0.22,1,0 +19466277,Cozy Bed - Stuy hideaway (The Fulton Room),8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9436,Private room,60,5,11,2019-06-19,0.47,3,56 +19466900,3 Bed/2 Bath Williamsburg Apt. with HUGE Terrace,8451716,John,Brooklyn,Williamsburg,40.70853,-73.95249,Entire home/apt,225,3,9,2019-06-30,0.37,1,2 +19468444,Bright and Airy - Entire 2 Bedroom in Williamsburg,9831730,Maggie,Brooklyn,Williamsburg,40.71863,-73.94405,Entire home/apt,112,14,0,,,1,0 +19470210,Upper Westside Charmer,10856865,Annie,Manhattan,Upper West Side,40.77727,-73.98127,Entire home/apt,250,3,23,2019-05-25,1.10,1,237 +19470886,Lovely 2BR in Clinton Hill/Bed-Stuy,8232441,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68776,-73.95379,Entire home/apt,60,3,16,2019-06-24,0.65,2,5 +19471352,"Dreamy Bushwick Art Apt, 15min from City, Roof &TV",136607675,Samantha,Brooklyn,Bedford-Stuyvesant,40.69844,-73.93921,Private room,62,1,47,2019-06-29,1.92,1,21 +19471948,2 ROOMS SEPARATE ENTRANCE 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73376,-73.85155,Private room,99,2,0,,,6,187 +19472085,HUGE Apt w/ EPIC Rooftop in heart of East Village,59282130,Andrew,Manhattan,East Village,40.72901,-73.98621,Entire home/apt,250,2,22,2019-06-23,0.91,1,165 +19472799,Beautiful Clinton Hill with huge private backyard,5992129,Landon,Brooklyn,Clinton Hill,40.68746,-73.96115,Entire home/apt,150,5,7,2019-01-02,0.38,1,14 +19472906,Modern one bedroom condo in Central Fort Greene BK,135831798,Keisha,Brooklyn,Fort Greene,40.69269,-73.97093,Entire home/apt,180,3,42,2019-07-01,1.91,1,73 +19472944,Charming 2 bed 2 bath with washing dryer,113805886,Yaacov,Manhattan,Upper East Side,40.77854,-73.94984,Entire home/apt,265,31,7,2019-06-19,0.30,33,345 +19473132,Cozy East Village Apartment,30016379,Jenny,Manhattan,East Village,40.72292,-73.98732,Entire home/apt,173,2,3,2017-08-30,0.13,1,0 +19474100,Comfy in Queens,66734502,Laura,Queens,Astoria,40.76248,-73.91686,Private room,60,2,1,2017-07-05,0.04,2,0 +19474652,Views on the hudson,136638556,Felicia,Manhattan,Harlem,40.82716,-73.93953,Private room,85,1,29,2018-12-31,1.22,1,359 +19475005,Fun Eclectic Home for Summer in the City,5180222,Maya,Manhattan,Inwood,40.8688,-73.92256,Entire home/apt,150,3,4,2017-08-21,0.16,1,0 +19475058,Spacious Chinatown Loft,12038925,Keir,Manhattan,Chinatown,40.71585,-73.99171,Entire home/apt,250,2,15,2018-08-26,0.63,1,0 +19475130,Private Bedroom in a Prewar Brownstone,136646834,Val,Manhattan,Washington Heights,40.83587,-73.93734,Private room,28,2,19,2018-01-17,0.78,1,0 +19475198,Private Bedroom in Beautiful Astoria Apt,3228795,Jonathan,Queens,Astoria,40.76386,-73.91475,Private room,60,2,3,2017-08-18,0.13,1,0 +19476630,Cozy self contained room with twin size bed,42561290,Carla,Brooklyn,East New York,40.66168,-73.86665,Private room,25,1,29,2019-06-11,1.17,4,319 +19476873,Luxurious Modern Apt In the Heart of Brooklyn,76785138,Ibrahim,Brooklyn,Bay Ridge,40.62298,-74.02601,Entire home/apt,256,2,61,2019-07-01,2.52,1,166 +19477677,Huge sunny room next to subway!,25038748,Justin,Manhattan,Harlem,40.82119,-73.95583,Private room,70,4,11,2019-05-11,0.45,1,0 +19478537,Comfortable Studio in the heart of Brooklyn,1751498,Charly,Brooklyn,Crown Heights,40.67538,-73.96257,Entire home/apt,70,5,1,2017-07-06,0.04,1,0 +19482416,緑が多く安全なブルックリンパークスロープの庭付き貸切アパート,83171661,Yuichi,Brooklyn,Park Slope,40.6688,-73.98527,Entire home/apt,105,6,0,,,3,0 +19485371,Spacious Harlem Hideaway,74238783,Cardelle,Manhattan,Harlem,40.82582,-73.94876,Private room,65,1,6,2017-12-15,0.24,1,0 +19485634,Sublet room (Dec 24th-Dec 28th),136760080,Irem,Brooklyn,Bushwick,40.69181,-73.92462,Private room,40,90,0,,,1,341 +19486860,Quiet Sunnyside Gardens Studio,136774720,Maria,Queens,Sunnyside,40.7496,-73.91523,Entire home/apt,85,5,0,,,1,0 +19487781,A place to lay your weary head,486948,Milo,Manhattan,East Village,40.72216,-73.98043,Private room,72,10,6,2018-06-29,0.26,1,0 +19488137,Semi-Private Studio in Manhattan,63956486,Keianna,Manhattan,Inwood,40.86438,-73.92086,Shared room,40,2,2,2018-03-27,0.12,1,0 +19488192,Designer Light Filled Aptartment in Williamsburg,17048787,Juliana,Brooklyn,Williamsburg,40.71619,-73.96126,Private room,80,3,5,2019-01-06,0.36,1,13 +19489138,Spacious 1 bedroom Pre War on Central Park,3595138,Filip,Manhattan,Upper West Side,40.79884,-73.95962,Entire home/apt,230,2,7,2017-11-27,0.31,1,0 +19489293,Awesome Spacious apartment North of the Park,114574,Beau,Manhattan,Harlem,40.81703,-73.94512,Entire home/apt,119,1,4,2018-09-30,0.17,2,0 +19490059,"Newly Renovated; 2BR, 1BA, Kitchen + Living Rm",136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93665,Entire home/apt,389,1,107,2019-06-23,4.40,3,80 +19490255,"Beautiful One Bedroom, prime location",63954950,Sydney,Manhattan,Greenwich Village,40.7302,-74.0008,Entire home/apt,180,2,4,2017-09-13,0.16,1,0 +19490499,Small Artsy Room in HEART OF BROOKLYN,136818122,Leah,Brooklyn,Greenpoint,40.72351,-73.94241,Private room,40,3,3,2017-07-02,0.12,1,0 +19495120,UWS gorgeous one bedroom,8286555,Elyse,Manhattan,Upper West Side,40.78116,-73.98672,Entire home/apt,300,5,0,,,1,83 +19495570,Special Room or Apt in Manhattan Upper West Side!,56920,Linda,Manhattan,Upper West Side,40.80232,-73.96977,Private room,135,3,23,2019-06-19,1.02,2,4 +19495598,Tasteful NOHO 1 bedroom,49924298,Krystin,Manhattan,NoHo,40.72805,-73.99146,Entire home/apt,139,3,1,2017-08-01,0.04,1,0 +19499668,Cozy Sofa Bed in Upper Manhattan,3372118,Natasha,Manhattan,Washington Heights,40.84133,-73.93739,Shared room,50,1,21,2019-06-15,0.86,1,188 +19501242,Private room/bathroom on the Upper West Side,36572516,David,Manhattan,Upper West Side,40.78196,-73.97764,Private room,54,1,17,2017-08-12,0.69,1,0 +19501640,Sunny shared apartment in Harlem,45103075,Ian,Manhattan,Harlem,40.8188,-73.94505,Private room,38,3,0,,,1,0 +19502013,ღღღUltimate Broadway Experienceღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76708,-73.98912,Private room,99,1,83,2019-06-25,3.36,3,157 +19502079,ღღღSteps to Major Tourist Attractionsღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76615,-73.98829,Private room,99,1,73,2019-06-30,2.96,3,342 +19503971,"Breakfast and a Cozy Room, 30 Seconds From Train",5751765,CK & Tia,Manhattan,East Harlem,40.79956,-73.94113,Private room,82,2,93,2019-06-21,3.90,2,323 +19504042,My Sweet Room,42283996,Vicky,Queens,Rego Park,40.73031,-73.86896,Entire home/apt,65,10,0,,,1,0 +19504570,Cozy room close to Manhattan,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9354,Private room,65,1,130,2019-07-01,5.25,4,69 +19504985,"Dreamy, Boho 2 bedroom apt in the heart of Soho",125514343,Marie,Manhattan,SoHo,40.72588,-74.00286,Entire home/apt,225,2,5,2019-06-30,0.55,1,30 +19505573,Charming Room Gowanus,23755490,Ronnie,Brooklyn,Gowanus,40.68115,-73.98876,Private room,75,30,0,,,1,0 +19505620,Brooklyn townhouse living,3538684,Laura,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94682,Entire home/apt,120,28,37,2019-06-21,1.56,1,70 +19505956,Classy Upper East Side Private Bedroom,136982841,Daniele,Manhattan,East Harlem,40.78603,-73.95015,Private room,165,1,4,2018-09-16,0.18,1,179 +19506194,East Village Penthouse - Master Bedroom (Loft),16866,Nicholas,Manhattan,East Village,40.72979,-73.983,Private room,149,2,9,2019-06-09,0.37,2,0 +19506829,Private Bedroom in Trendy Bushwick,61851470,Sherry,Brooklyn,Cypress Hills,40.6796,-73.90514,Private room,52,4,0,,,1,0 +19507013,"LARGE 3 BEDROOMS UP TO 11 PEOPLE, 20 min TO MANHAT",136995504,Lucky Day,Queens,Rego Park,40.7306,-73.85903,Entire home/apt,248,3,17,2019-06-04,0.73,1,262 +19508209,"Clean, Simple, Budget Bedroom in Bushwick!",127925141,Gabe,Brooklyn,Bushwick,40.6951,-73.93017,Private room,44,2,2,2019-03-20,0.08,1,0 +19509586,"Apartment in Bay Ridge, Brooklyn",804812,Adrienne Miriam,Brooklyn,Bay Ridge,40.62913,-74.01946,Entire home/apt,150,1,48,2019-06-23,1.96,1,330 +19517513,Cozy private room in sunny Brooklyn loft,14120985,Will,Brooklyn,Bedford-Stuyvesant,40.69129,-73.94659,Private room,89,2,27,2019-06-23,1.12,2,40 +19518453,Midtown South Lux Large Studio,79912031,Tedy,Manhattan,Murray Hill,40.74731,-73.98167,Entire home/apt,350,5,0,,,1,0 +19520573,"Luxury House in Safe Area, 30 Min to Time Square",117673528,Igor,Queens,Forest Hills,40.71249,-73.85021,Private room,900,1,127,2019-07-05,5.37,1,296 +19520991,Clean 1 bedroom in heart of NYC with Private deck,47988208,Colin,Manhattan,Murray Hill,40.74838,-73.98108,Entire home/apt,275,2,15,2019-03-17,0.65,1,5 +19521346,Chic apartment with large deck - best of Brooklyn,12647740,Shmuel,Brooklyn,Boerum Hill,40.68546,-73.97933,Entire home/apt,200,20,11,2019-05-20,0.46,1,32 +19521605,One bedroom APT in Prospect Park,18327839,Sylvia,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.96185,Entire home/apt,115,2,5,2017-09-24,0.22,1,0 +19523180,Beautiful private room in historic brownstone.,17285102,Amber+Shawn,Brooklyn,Bushwick,40.69063,-73.91784,Private room,100,3,2,2019-05-26,0.08,1,84 +19523894,1-Bdrm Newly Renovated Spacious Apartment,137114793,Nick,Staten Island,Great Kills,40.56251,-74.14781,Entire home/apt,91,30,61,2019-06-10,2.60,1,205 +19524083,The Riverside - One Bedroom Apartment,137068370,William,Manhattan,Upper West Side,40.77969,-73.98747,Entire home/apt,200,2,33,2019-06-09,1.36,1,250 +19525377,Queen size bed Private room in house on Vanderveer,4279384,Tanya,Brooklyn,Flatbush,40.64329,-73.9562,Private room,39,3,1,2017-06-27,0.04,2,0 +19525455,"LUXURIOUS, TOWNHOME WITH PRIVATE ROOF - 2500 SQ FT",7958923,Vikas,Brooklyn,Bedford-Stuyvesant,40.69158,-73.94329,Entire home/apt,275,1,6,2019-06-30,0.58,2,213 +19525675,Cozy private room in Victorian Brooklyn,11501945,Victoria,Brooklyn,Flatbush,40.63639,-73.95814,Private room,70,2,0,,,2,0 +19526601,A light spacious adorable room in Brooklyn,68432448,Nelli,Brooklyn,Sheepshead Bay,40.60614,-73.95374,Private room,50,1,24,2019-06-22,0.99,1,20 +19526750,Cozy Room in Brooklyn Loft Space,24263304,David,Brooklyn,Williamsburg,40.70533,-73.9295,Private room,79,3,4,2018-09-17,0.19,1,69 +19527028,Cozy duplex in trendy Brooklyn neighbourhood.,6835700,William,Brooklyn,Prospect Heights,40.67649,-73.96499,Private room,80,2,28,2019-06-25,4.35,1,82 +19527492,"Huge Apartment Near Subway, Quiet and Sunny!",2988712,Sasha,Bronx,Claremont Village,40.83625,-73.91079,Entire home/apt,127,90,4,2018-12-12,0.19,7,250 +19528326,Quiet Midtown Gem,89022528,Lou,Manhattan,Kips Bay,40.74008,-73.97936,Entire home/apt,110,3,58,2019-06-30,2.49,1,26 +19528396,Spacious and romantic apartment near Prospect Park,1762828,Adrian,Brooklyn,Prospect-Lefferts Gardens,40.65612,-73.9605,Entire home/apt,167,3,4,2019-01-02,0.19,1,326 +19529637,Great East Village 1BR In Prime Location,3412684,Andrew,Manhattan,East Village,40.72723,-73.98466,Entire home/apt,145,2,9,2019-06-08,0.37,1,0 +19530067,Modern Apartment in Historic Brownstone,18940748,Rebeccah & Daniel,Brooklyn,Bedford-Stuyvesant,40.68591,-73.93424,Entire home/apt,174,2,81,2019-06-23,3.39,1,123 +19530271,Appartement spacieux au cœur d'Astoria,37980834,Oceane,Queens,Ditmars Steinway,40.76944,-73.90751,Entire home/apt,119,1,1,2017-07-09,0.04,1,0 +19530518,YANKEE STADIUM DOWNTOWN BRONX,16884548,Taina,Bronx,Concourse Village,40.83083,-73.91928,Private room,62,1,8,2019-06-05,0.67,1,175 +19530652,Gorgeous cozy bdrm + private bath + backyard!,4351028,Jake,Brooklyn,Bushwick,40.70118,-73.91764,Private room,65,1,0,,,1,0 +19530778,Large window Private Room in Flushing Queens,137129564,Bing,Queens,Flushing,40.75221,-73.81533,Private room,60,1,32,2019-06-30,2.03,4,356 +19531174,Cozy Room With 15 Minute Subway Ride to Manhattan!,31553738,Ian,Brooklyn,Bedford-Stuyvesant,40.6995,-73.93987,Private room,50,21,1,2018-10-23,0.12,1,0 +19531390,Greenpoint/Williamsburg private studio room,2716583,Andrew,Brooklyn,Greenpoint,40.72458,-73.95191,Entire home/apt,139,3,70,2019-06-21,2.90,1,178 +19531541,Spacious and Modern is this 2 Bedroom Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.63801,-73.89845,Entire home/apt,200,3,7,2018-10-14,0.31,3,363 +19531580,SUNNY N.Y.C. APARTMENT,8816087,Danilo,Manhattan,East Harlem,40.80183,-73.94358,Entire home/apt,130,2,0,,,2,0 +19531601,Spacious bedroom in a good vibe apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67324,-73.95028,Private room,43,6,5,2019-01-30,0.23,2,301 +19531805,Brand new One bedroom APT in brooklyn,57435629,Lin,Brooklyn,Kensington,40.63955,-73.9807,Entire home/apt,80,2,1,2017-07-03,0.04,1,0 +19531901,"2BR near Central Park, Lincoln Center",7936109,Ryan,Manhattan,Upper West Side,40.77468,-73.98184,Entire home/apt,180,2,5,2017-08-12,0.20,1,0 +19532027,Bright Clean Economy Room in Crown Heights 4SL,17555570,Yan,Brooklyn,Crown Heights,40.67108,-73.92308,Private room,54,1,90,2019-07-05,3.72,12,63 +19532157,Cozy and bright room in the center of Manhattan,124976906,Hichem,Manhattan,Upper East Side,40.76959,-73.95338,Private room,75,3,17,2018-09-02,0.74,1,0 +19532164,N.Y.C. APPARTAMENTO LUMINOSO,8816087,Danilo,Manhattan,East Harlem,40.80168,-73.94399,Entire home/apt,176,2,0,,,2,0 +19532225,"Affordable Bedtsuy July Rental, ideal for student!",137156356,Esteban,Brooklyn,Bedford-Stuyvesant,40.68428,-73.94916,Private room,49,7,0,,,1,0 +19532448,Ideal Manhattan Studio at the Upper East Side.,57501710,Francisco,Manhattan,Upper East Side,40.77059,-73.95522,Entire home/apt,200,4,7,2018-10-08,0.29,1,0 +19532789,NEWLY Renovated Private 2 Bed Apt on 1 st Floor..,15192,Oscar,Brooklyn,Bedford-Stuyvesant,40.68268,-73.94548,Entire home/apt,95,4,33,2019-06-22,1.40,1,199 +19532805,"Private Room, Bright, Waterfront! Fantastic view!!",123736951,Anne A,Manhattan,Roosevelt Island,40.75829,-73.95295,Private room,80,3,35,2019-03-17,1.44,1,0 +19532907,"Bright, Sunny, Clean Bedroom w/Private Bath 3MB",17555570,Yan,Brooklyn,Crown Heights,40.6695,-73.92226,Private room,63,1,66,2019-06-22,2.68,12,39 +19533025,Rainbow Guesthouse 1-3,124399442,Igor,Brooklyn,Midwood,40.61391,-73.95798,Shared room,32,7,2,2018-07-31,0.09,4,343 +19533701,Rainbow Guesthouse 1-6,124399442,Igor,Brooklyn,Midwood,40.61249,-73.96018,Shared room,32,7,1,2018-08-27,0.09,4,320 +19533966,Modern 3 Bedroom 2 BATH! 18 min to Times Sq+More!,137208202,Sean,Queens,Woodside,40.74695,-73.90177,Entire home/apt,275,3,104,2019-06-27,4.29,1,293 +19538717,East Williamsburg Studio,48542743,Yoon,Brooklyn,Williamsburg,40.71204,-73.93535,Entire home/apt,70,5,2,2018-09-05,0.19,1,0 +19542512,Bohemian Room in NYC at Great Location,137264725,Gulcin,Manhattan,Lower East Side,40.71206,-73.99055,Private room,70,1,117,2019-06-25,4.74,4,249 +19544104,Charming Luxury Apartment in Central Manhattan,34682494,Bilal,Manhattan,Midtown,40.74724,-73.98924,Entire home/apt,400,3,1,2019-05-18,0.58,1,180 +19544381,Comfortable studio in heart of LES/Chinatown,2642103,Yuriy,Manhattan,Chinatown,40.71633,-73.9897,Entire home/apt,100,2,2,2017-10-17,0.08,1,0 +19544404,Beautiful 2 Bedroom Lower East Side,72539408,Michelle,Manhattan,Lower East Side,40.72119,-73.98738,Entire home/apt,125,2,0,,,1,0 +19544478,Private Prospect Heights room,58052561,Alina,Brooklyn,Crown Heights,40.67313,-73.96254,Private room,100,1,8,2018-12-01,0.33,1,8 +19544766,Large+Amazing 2BR ( Flex)-Upper East Side-E89th,2856748,Ruchi,Manhattan,Upper East Side,40.77608,-73.94364,Entire home/apt,220,30,0,,,49,325 +19545851,Brooklyn Living,137293453,Remi,Brooklyn,Crown Heights,40.67308,-73.94114,Private room,36,7,1,2017-08-10,0.04,1,0 +19546150,Studio Apartment.,137270801,Jose,Queens,Ozone Park,40.67557,-73.85145,Private room,100,1,0,,,1,0 +19546202,Upper West Side One Bedroom Oasis,45488164,Logan,Manhattan,Upper West Side,40.80179,-73.96872,Entire home/apt,175,2,4,2019-07-01,0.16,1,142 +19547068,"SIMPLEHOME +Nothing fancy just quiet Place",137302318,Alona,Queens,Long Island City,40.75381,-73.92559,Entire home/apt,93,1,185,2019-06-23,7.64,2,73 +19547213,Waterfront Private Bedroom & Private Bathroom.,137305439,Harry,Queens,Rockaway Beach,40.59046,-73.81481,Private room,150,2,29,2019-07-07,1.19,2,178 +19547384,Sunny Prospect Park Apartment,4629066,Kathryn,Brooklyn,Flatbush,40.65264,-73.96202,Entire home/apt,85,1,0,,,1,0 +19548503,Chic & Modern Townhouse Apartment,5339759,Georgia,Manhattan,Greenwich Village,40.73384,-73.99616,Entire home/apt,499,30,10,2019-07-01,0.44,1,365 +19548992,Spare Room in newly finished apartment,136645733,Matt,Manhattan,East Harlem,40.81355,-73.93648,Private room,60,1,0,,,1,0 +19549547,Quintessential West Village Apt,102926533,Shaunda,Manhattan,West Village,40.73185,-74.00589,Entire home/apt,175,3,11,2019-06-14,0.45,1,0 +19550419,LARGE Luxury Private Room 5 mins from Times Sq,21496186,Richard,Manhattan,Midtown,40.75171,-73.98642,Private room,129,3,18,2019-04-07,0.73,2,0 +19550594,Williamsburg Oasis with Palm Tree Patio,19631496,The,Brooklyn,Williamsburg,40.70706,-73.94428,Entire home/apt,225,5,75,2019-06-17,3.49,2,278 +19550838,Quiet Spot in Vibrant NYC Neighborhood,308068,Yiska,Manhattan,Harlem,40.80291,-73.95832,Entire home/apt,68,3,2,2017-09-05,0.09,1,0 +19551198,Rustic & Wabi-sabi Minimal Apt. w/ Terrace,7348150,Stephanie,Manhattan,Nolita,40.72294,-73.99526,Entire home/apt,250,1,23,2018-11-27,0.95,1,0 +19553123,Rainbow 2,4176842,Novi,Queens,Rego Park,40.72885,-73.86759,Entire home/apt,49,7,23,2019-07-04,0.96,1,22 +19553193,Bedroom in Beautiful Park Slope Brownstone,3894475,Kyle,Brooklyn,South Slope,40.66595,-73.98202,Private room,77,2,0,,,3,0 +19553306,Modern 2 Bedroom in Heart of Williamsburg,6405437,Joe,Brooklyn,Williamsburg,40.71201,-73.96144,Entire home/apt,400,2,6,2018-10-21,0.25,1,0 +19554164,Beautiful East Village Gem,137384468,Emily,Manhattan,East Village,40.73075,-73.98636,Private room,80,1,4,2017-08-01,0.16,1,0 +19554491,A Room in Park Slope,137382776,Gladis,Brooklyn,Prospect Heights,40.68066,-73.97299,Private room,340,3,0,,,1,83 +19554564,"25% off; spacious, modern 2br; 25 min to Manhattan",612563,Scott,Brooklyn,Bushwick,40.68335,-73.90756,Entire home/apt,135,2,134,2019-06-28,5.55,1,302 +19554598,Modern & Trendy 2-Bedroom 1 Bath Lower Manhattan,17131554,Alex,Manhattan,Little Italy,40.71809,-73.99811,Entire home/apt,220,1,128,2019-06-22,5.28,1,239 +19554980,A Cozy Manhattan Sanctuary,97796457,Logan,Manhattan,Upper West Side,40.8016,-73.96409,Entire home/apt,2500,40,17,2018-03-26,0.91,1,0 +19555750,Travel Themed Room at Great Location,137264725,Gulcin,Manhattan,Chinatown,40.71391,-73.99162,Private room,60,1,101,2019-06-21,4.13,4,257 +19556174,Open Room in Hell's Kitchen,51356852,Peter,Manhattan,Hell's Kitchen,40.763,-73.98624,Private room,300,1,0,,,1,0 +19558926,Nice and safe every thing near me,37078185,Gurdeep,Queens,Jackson Heights,40.75141,-73.8967,Private room,100,1,0,,,1,0 +19559780,Quiet Room Close to Central Park,61042,Marlon,Manhattan,East Harlem,40.79995,-73.94121,Private room,50,5,16,2019-05-28,0.68,6,15 +19563107,Attractive one bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74956,-73.97714,Entire home/apt,175,30,1,2017-09-30,0.05,50,365 +19563669,Chelsea luxury apartment,41680155,Ze,Manhattan,Chelsea,40.74794,-73.98927,Private room,140,2,2,2019-07-05,0.21,1,22 +19564437,Sunny BK Bedroom with Private Bathroom and Balcony,6313371,Ashley,Brooklyn,Clinton Hill,40.689,-73.9613,Private room,90,3,0,,,1,0 +19566229,法拉盛(Flushing)独立出入Basement套房出租。2房1卫 2Rooms/1Bath,137129564,Bing,Queens,Flushing,40.75388,-73.81561,Private room,54,1,70,2019-07-01,2.86,4,85 +19566557,Brand New 1 Bedroom Across from Prospect Park,8306638,Halima,Brooklyn,Prospect-Lefferts Gardens,40.65619,-73.96151,Entire home/apt,91,9,11,2019-05-31,0.53,1,234 +19567154,"Cozy, Private Apartment with Balcony",2128192,Jacqueline,Brooklyn,Greenpoint,40.72485,-73.94582,Private room,99,5,0,,,1,0 +19567443,10th btw 5/6 Ave - A special place in Park Slope,50755667,Kyla,Brooklyn,South Slope,40.66837,-73.98649,Entire home/apt,200,2,83,2019-06-16,3.51,3,201 +19567629,East Village. Best Space/Location 1 Bdrm 1 Person,137337835,Steven,Manhattan,East Village,40.72714,-73.98279,Private room,70,1,129,2019-06-23,5.39,1,28 +19568889,Comfy Guest room+private bathroom+ 300ft to Trains,137512725,Kiki,Manhattan,Harlem,40.82555,-73.94297,Private room,77,2,36,2019-06-16,1.49,1,116 +19569016,Upper East Side Studio,73848909,Yassir,Manhattan,Upper East Side,40.7662,-73.9574,Entire home/apt,100,3,2,2018-09-14,0.15,1,0 +19569054,Sunny room in the heart of Williamsburg,14094953,Anne-Sophie,Brooklyn,Williamsburg,40.71606,-73.95744,Private room,67,4,0,,,1,0 +19569411,Sunny Bed-Stuy apartment with rooftop access!,61483702,Sasha,Brooklyn,Bedford-Stuyvesant,40.69251,-73.93484,Private room,70,5,2,2017-07-20,0.08,2,0 +19569481,Lux Renovated Williamsburg Duplex w/ Private Yard,960013,Zhana And Adam,Brooklyn,Williamsburg,40.71312,-73.94867,Entire home/apt,250,3,31,2019-06-01,1.27,1,13 +19571034,Modern luxury apartment on 42nd Street,19703184,John,Manhattan,Hell's Kitchen,40.76236,-73.99827,Entire home/apt,175,3,4,2018-09-07,0.29,1,0 +19571350,"Large, Queen Bedroom in heart of Greenwich Village",11787834,Carlo,Manhattan,Greenwich Village,40.72985,-73.99938,Private room,106,8,25,2019-05-27,1.05,1,10 +19571955,Great room in spacious apt. right by the C,932021,Alec,Brooklyn,Clinton Hill,40.68511,-73.96775,Private room,49,1,2,2017-07-22,0.08,1,0 +19572489,"Comfortable, modern apartment in a fun area",44739726,Megan,Brooklyn,Williamsburg,40.71722,-73.95406,Entire home/apt,200,2,9,2017-12-31,0.38,1,0 +19572516,Modern turn of century Brooklyn apartment.,6466505,Romana,Brooklyn,Crown Heights,40.6726,-73.9514,Entire home/apt,100,3,5,2017-08-30,0.21,1,0 +19573709,Studio - West Village - Unit 5,4422523,Marie,Manhattan,West Village,40.73545,-74.00529,Entire home/apt,150,30,6,2019-06-14,0.58,6,141 +19573919,Bright Clean Comfortable 1bdrm in west Chelsea,75253309,Wayne,Manhattan,Chelsea,40.75283,-73.99951,Entire home/apt,140,4,0,,,1,0 +19574919,Convenient Brooklyn Apartment for July 4th weekend,16946950,Katherine,Brooklyn,Brooklyn Heights,40.69269,-73.99432,Entire home/apt,125,3,0,,,1,0 +19574956,Cozy Bedstuy Room,14163206,Alexander,Brooklyn,Bedford-Stuyvesant,40.68301,-73.94757,Private room,45,2,6,2017-12-29,0.25,1,0 +19575376,Hendrix Street Gem Rm #1,105878573,Tonisha,Brooklyn,East New York,40.66672,-73.88852,Private room,58,1,14,2018-05-19,0.59,5,0 +19577620,"2 Story Penthouse | Private Floor, Bed, & Bath",16652171,Erik,Manhattan,Upper West Side,40.78413,-73.97779,Private room,94,2,65,2019-07-04,2.69,1,54 +19579695,Spacious Sunny Room in Astoria :),45522333,Corinne,Queens,Astoria,40.76746,-73.9223,Private room,75,2,4,2017-09-13,0.17,1,0 +19582132,Ground floor Apartment,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68199,-73.93665,Entire home/apt,95,30,2,2017-09-28,0.09,3,248 +19582754,Cozy room in the best area! Affordable stay in NY!,20761853,Elena,Manhattan,Upper East Side,40.76812,-73.95403,Private room,79,1,62,2019-05-26,2.58,2,258 +19583464,NYC Empire Apartment,137647792,Blair,Manhattan,Kips Bay,40.74511,-73.97833,Entire home/apt,145,2,0,,,1,0 +19583985,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 2",9864136,Anthony,Brooklyn,Bushwick,40.68652,-73.91365,Private room,50,1,0,,,26,365 +19585955,"Quiet Full Bed, loft and couch",4471200,Adam,Queens,Ridgewood,40.69654,-73.90034,Private room,40,2,1,2017-07-04,0.04,1,0 +19586399,Cozy room in Dekalb Ave,137672539,Juan,Brooklyn,Bushwick,40.70163,-73.92225,Shared room,34,2,83,2019-06-14,3.42,1,192 +19586663,Brooklyn's Big Room Next to Prospect Park,137673701,Brama,Brooklyn,Windsor Terrace,40.65963,-73.98068,Private room,45,7,1,2017-08-09,0.04,1,0 +19587940,Sweet Space in Bed Stuy: July,137685990,Helen,Brooklyn,Bedford-Stuyvesant,40.68387,-73.9262,Private room,32,2,3,2017-07-17,0.12,1,0 +19588190,1BR - Heart of West Village - 30 Day Min - Unit 4,4422523,Marie,Manhattan,West Village,40.73541,-74.00331,Entire home/apt,190,30,1,2019-05-17,0.57,6,277 +19588669,30+ Day Stay -Cute Small House by a Beautiful Deck,137522531,Ali,Queens,Flushing,40.75745,-73.80823,Entire home/apt,138,6,20,2019-05-13,0.89,7,322 +19588726,Habitación ubicada céntricamente en la ciudad.,137690897,Yaneli,Bronx,Fordham,40.86729,-73.89046,Private room,75,2,13,2019-05-19,0.57,1,364 +19589726,"Sun filled 1 bedroom, 20 minutes from Manhattan",137700828,Linda,Queens,Astoria,40.77017,-73.92536,Private room,110,3,23,2019-05-11,1.03,1,0 +19590061,Artist's X-Large 2 Bedroom Loft w/King Bed.,137308380,Jane,Brooklyn,Williamsburg,40.71401,-73.9661,Entire home/apt,264,2,130,2019-06-17,5.30,1,167 +19590073,Cozy room in Nolita,137702768,Dorothea,Manhattan,Little Italy,40.71885,-73.99514,Private room,120,7,14,2018-12-13,0.62,1,64 +19590209,30+Day: Fun 3 Bedroom (kids Favorite) Home by Deck,137522531,Ali,Queens,Flushing,40.75558,-73.81019,Entire home/apt,298,6,30,2019-04-23,1.34,7,174 +19591107,30+Day Stay:Designer Sky Beautiful Loft (1000 sf),137522531,Ali,Queens,Flushing,40.7558,-73.80953,Entire home/apt,150,6,50,2019-05-09,2.27,7,343 +19591602,30+Day Stay: New 3-4 Bedroom 4 Bath Apt by a Deck,137522531,Ali,Queens,Flushing,40.75572,-73.80791,Entire home/apt,398,5,48,2019-06-19,2.11,7,139 +19591709,"Entire Apartment!! Free parking,30 min to Times Sq",137720684,Meera,Queens,East Elmhurst,40.75794,-73.8767,Entire home/apt,155,1,101,2019-07-03,4.12,1,308 +19592057,"Expensive, Small place, but it is 100% clean",127181576,Alon,Manhattan,Lower East Side,40.71043,-73.98174,Private room,157,1,0,,,1,0 +19592223,Studio West Village - 30 Day Min - Unit 3,4422523,Marie,Manhattan,West Village,40.73561,-74.0051,Entire home/apt,120,30,5,2019-06-01,0.34,6,66 +19593009,"Simple Cost-friendly Private Room, FEMALES ONLY",125653581,Amanda,Bronx,Norwood,40.8774,-73.87537,Private room,29,2,1,2017-07-16,0.04,1,0 +19593631,Entire Apartment near Central Park,2926954,Ricky,Manhattan,Upper East Side,40.78242,-73.9547,Entire home/apt,160,2,7,2019-02-20,0.30,1,0 +19596021,Cozy Apartment in a Private House,137772585,George,Queens,Jackson Heights,40.75382,-73.88231,Entire home/apt,150,2,21,2019-07-02,1.07,1,288 +19602390,Stylish Brooklyn Studio,137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93052,Entire home/apt,100,3,68,2019-07-02,2.81,4,128 +19602515,LES East Village Spacious Getaway,11758216,Ariana,Manhattan,East Village,40.72349,-73.98491,Entire home/apt,150,4,5,2019-07-02,0.27,1,8 +19602663,1 Room in high rise facing Central Park w/ balcony,137821526,Cathy,Manhattan,East Harlem,40.79622,-73.94825,Private room,160,1,0,,,2,0 +19602883,Cozy East Williamsburg apt (walk up),85507826,Gary,Brooklyn,Williamsburg,40.71049,-73.9441,Private room,45,21,0,,,1,0 +19602922,Amazing Room in Brooklyn,813647,Claudio,Brooklyn,Downtown Brooklyn,40.69293,-73.98495,Private room,85,4,13,2018-10-29,0.54,1,5 +19603055,1- Bedroom in East Harlem,25959120,Dan,Manhattan,East Harlem,40.78668,-73.94247,Private room,85,2,2,2017-08-16,0.08,1,0 +19603348,"Clean, Bright Studio Apartment",136224596,Ketter,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93673,Entire home/apt,100,3,0,,,1,0 +19603487,"Bright Private Space, Central Harlem, NYC",137829485,Barron,Manhattan,Harlem,40.81232,-73.94112,Private room,45,7,1,2018-03-17,0.06,1,17 +19603624,Beautiful Greenwich Village Home in NYC,71811779,Rebecca,Manhattan,West Village,40.73129,-74.00298,Entire home/apt,250,1,0,,,1,0 +19603759,1 Room highrise over Central Park-private balcony,137821526,Cathy,Manhattan,East Harlem,40.79572,-73.9481,Private room,165,1,3,2018-06-17,0.13,2,0 +19604123,Warm Sunny Bedroom w/ private bathroom 4MB,17555570,Yan,Brooklyn,Crown Heights,40.6696,-73.92414,Private room,64,1,64,2019-06-30,3.13,12,63 +19604361,Bedroom #2 in Queens,137838298,Norma,Queens,Jamaica,40.68121,-73.76869,Private room,60,1,22,2018-12-16,0.99,2,177 +19605856,Upper west side - One Bedroom + Bike,18632318,Jeffrey,Manhattan,Upper West Side,40.8023,-73.96688,Private room,101,5,2,2017-07-22,0.08,1,0 +19606247,Cozy Private Room in Chinatown/ Lower East Side,48035228,Chen,Manhattan,Two Bridges,40.71253,-73.99586,Private room,50,7,3,2017-08-27,0.12,1,0 +19606485,Spacious Private Room in Crown Heights,2520288,Chris,Brooklyn,Crown Heights,40.67815,-73.95992,Private room,55,5,0,,,1,0 +19606813,"BEDFORD AVENUE - cosy, bright, private bedroom",973036,Ben,Brooklyn,Williamsburg,40.71122,-73.96361,Private room,100,2,45,2019-07-01,3.61,1,251 +19608042,Zen Light Filled Experience in Heart of Greenpoint,3687198,Crista,Brooklyn,Greenpoint,40.73386,-73.95873,Entire home/apt,200,2,0,,,1,0 +19608383,Bright Clean Private Room in Crown Heights 4SR,17555570,Yan,Brooklyn,Crown Heights,40.66895,-73.9235,Private room,53,1,88,2019-06-26,3.59,12,61 +19609107,Sanctuary from the City,137884235,Megan,Brooklyn,Bedford-Stuyvesant,40.69384,-73.9422,Private room,44,3,4,2017-07-20,0.16,1,0 +19609161,Luxury Private Room on the Upper East Side!,11830463,Farheen,Manhattan,Upper East Side,40.78324,-73.94871,Private room,90,2,4,2017-08-12,0.17,1,0 +19609919,Large Private Room in Duplex- Chelsea,137893214,Chad,Manhattan,Chelsea,40.74498,-73.99845,Private room,105,2,0,,,1,0 +19610687,Serene Goldfish Pond Garden Apt in Williamsburg,2597159,Alana,Brooklyn,Williamsburg,40.71304,-73.9482,Entire home/apt,215,2,74,2019-06-15,3.08,2,31 +19611015,Beautiful 2 Bedroom on Subway,14487073,Jeremy,Brooklyn,Bushwick,40.70421,-73.91561,Entire home/apt,150,2,68,2019-06-16,2.85,2,263 +19617695,Bright & Cozy Upper East Side Studio,41381874,Shana,Manhattan,Upper East Side,40.78185,-73.9474,Entire home/apt,150,2,3,2017-10-01,0.12,1,0 +19618443,Cute apartment in Sunnyside,26921025,Ellie,Queens,Sunnyside,40.73811,-73.92099,Entire home/apt,99,1,0,,,1,0 +19618958,Beautiful Lower East Side 1 Bedroom Loft,7737249,Casandra,Manhattan,Chinatown,40.71558,-73.99136,Entire home/apt,325,30,76,2019-05-05,3.27,2,294 +19619159,"Bright, Modern and Cozy Chelsea Studio!",18776880,Caroline,Manhattan,Chelsea,40.74118,-73.999,Entire home/apt,155,2,4,2017-10-23,0.16,1,0 +19619177,Cozy Brooklyn Getaway,137649778,Shelly & Wayne,Brooklyn,East New York,40.67327,-73.89141,Entire home/apt,100,2,74,2019-07-04,3.13,1,78 +19619393,"ENTIRE APT | BRIGHT 2 BED | Q, B & PROSPECT PARK",63480384,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.65473,-73.96112,Entire home/apt,115,2,4,2019-05-19,0.36,2,86 +19620202,CRASH COOL TRAVELBLOGGERS COUCH LEARN TRAVEL TIPS!,44735076,StayWithaTravelWriter,Brooklyn,Crown Heights,40.67767,-73.9602,Shared room,59,1,44,2019-06-30,1.80,1,90 +19621012,Large 1 Bedroom Apt w/ Backyard!,39550178,Hassan,Brooklyn,Fort Greene,40.68898,-73.97707,Entire home/apt,275,1,0,,,1,0 +19621042,Brian's place in Brooklyn,46859784,Brian,Brooklyn,Williamsburg,40.71548,-73.96236,Entire home/apt,110,3,3,2019-06-24,0.14,1,12 +19621610,For the Wanderlust: Astoria Art-filled Apt,105620723,Giselle,Queens,Long Island City,40.76222,-73.92662,Entire home/apt,150,10,4,2017-09-01,0.17,1,0 +19621939,"Calm, quirky Harlem apartment Room 2",41940272,Nicole,Manhattan,Harlem,40.82077,-73.94568,Private room,75,2,44,2019-06-30,1.91,3,77 +19622470,Chelsea Private Bedroom and Bathroom,3715206,Yaz,Manhattan,Chelsea,40.74837,-74.00228,Private room,100,2,12,2017-10-09,0.50,1,0 +19622700,Upper west side - perfect feel at home place.,101262003,John,Manhattan,Upper West Side,40.78526,-73.97633,Private room,175,1,8,2018-11-08,0.35,2,90 +19622976,Scenic Brooklyn townhouse.,39277795,Javier,Brooklyn,Sunset Park,40.645,-74.00378,Private room,90,1,50,2019-06-26,2.07,1,43 +19623349,2 bed / 2.5 bath with outdoor space,16260034,Michael,Brooklyn,Crown Heights,40.67742,-73.93737,Entire home/apt,250,7,0,,,1,0 +19623614,"Comfortable,3 bedroom, 2bath home away from home",138033394,Michael & Sharon,Queens,Jamaica,40.69934,-73.78325,Entire home/apt,150,2,85,2019-06-30,3.52,1,132 +19625050,Charming apartment (sleeps 2-4) in UES Manhattan,52573016,Leah,Manhattan,Upper East Side,40.78271,-73.9454,Entire home/apt,148,3,2,2018-01-04,0.09,1,0 +19625202,Modern Spacious and Sunny Place,138052895,Belgica,Brooklyn,Bushwick,40.68628,-73.91523,Entire home/apt,100,2,107,2019-06-19,4.37,1,46 +19625234,"纽约三室一厅两全浴带独立厨房和停车位 +Three-Room Two Bath and Parking",115979599,Mike,Queens,Flushing,40.76818,-73.8276,Entire home/apt,188,1,85,2019-07-07,3.52,1,151 +19625292,Artist's loft / Room / Greenpoint,138052282,Alican,Brooklyn,Greenpoint,40.72842,-73.9421,Private room,43,4,4,2019-06-26,0.34,1,3 +19626464,Beautiful and tidy room at Time Square location,34689714,Maria,Manhattan,Hell's Kitchen,40.76591,-73.98717,Private room,110,1,82,2019-05-19,3.38,5,0 +19626535,Cozy and modern apartment in Hell's Kitchen,22347382,Sergio,Manhattan,Hell's Kitchen,40.75554,-73.99329,Entire home/apt,200,20,0,,,1,0 +19630271,Spacious and Bright Studio Apt in the Heart of UES,15602635,Alexander,Manhattan,Upper East Side,40.77561,-73.95213,Entire home/apt,200,4,10,2018-10-08,0.43,1,0 +19633139,Private and cozy bedroom in the middle of NYC,59432400,Anna,Manhattan,Harlem,40.81974,-73.94457,Private room,120,4,31,2018-12-13,1.31,2,188 +19633511,Cozy bedroom in beautiful Bed-Stuy brownstone,19079151,Yael,Brooklyn,Bedford-Stuyvesant,40.68515,-73.95566,Private room,51,7,0,,,1,0 +19634067,"Gigantic, convenient loft in S Williamsburg!",13785996,David,Brooklyn,Williamsburg,40.70857,-73.96618,Private room,42,3,1,2018-02-14,0.06,1,0 +19634230,Taste of the Suburbs in Greenpoint,41945908,Caleb,Brooklyn,Greenpoint,40.72785,-73.95452,Private room,60,3,4,2018-01-03,0.16,1,0 +19635738,Maison 130,6920054,Joseph,Manhattan,Chelsea,40.73978,-73.9963,Shared room,250,1,0,,,1,0 +19636727,Private Room for 1 with Balcony! (004),137999892,Simranjeet,Staten Island,Concord,40.60732,-74.08709,Private room,40,2,36,2019-05-09,1.60,7,286 +19637270,Cozy 1 Bedroom at a Very Convenient Location!,52432205,Magdalena,Queens,Sunnyside,40.74266,-73.91884,Entire home/apt,140,2,4,2018-01-01,0.17,1,0 +19637278,Cozy Upper West Side Apartment in New York City,138186485,Nicholas,Manhattan,Upper West Side,40.78823,-73.97499,Entire home/apt,116,1,28,2018-10-17,1.22,1,0 +19638414,"Beautiful, Clean, Renovated, Sun-Drenched Studio",138197456,Jordan,Manhattan,Washington Heights,40.85065,-73.93356,Entire home/apt,215,3,0,,,1,0 +19639687,"Garden Apt, 1,800 sq ft",138210979,Michael,Brooklyn,Park Slope,40.67405,-73.97883,Entire home/apt,181,1,3,2017-07-15,0.12,1,0 +19640913,Cozy Room In Perfect Location!,129627362,Florangie,Manhattan,Washington Heights,40.85039,-73.93855,Private room,70,2,9,2018-04-06,0.37,1,8 +19641775,Bushwick 30 min to Times Square #4 bedrooms !,20120009,Jannices,Brooklyn,Bushwick,40.68927,-73.90817,Entire home/apt,169,2,80,2019-06-25,3.58,6,241 +19642050,"Sparkling 2nd Flr Apt, Near JFK, LGA & NY City",138235784,Kay,Queens,Forest Hills,40.70838,-73.85156,Entire home/apt,105,2,60,2019-06-28,2.49,2,319 +19642392,"Private room in the heart of Gramercy, NY.",102072773,Linett,Manhattan,Kips Bay,40.74136,-73.98146,Private room,55,1,8,2017-08-10,0.33,1,0 +19643201,Time Square - Hell’s Kitchen,12244687,Cesare Friend,Manhattan,Hell's Kitchen,40.76223,-73.99458,Entire home/apt,163,6,25,2019-06-08,1.16,1,266 +19643642,One stop to midtown Manhattan one stop to Brooklyn,20440843,Safiah,Queens,Long Island City,40.7451,-73.94951,Private room,75,1,5,2018-09-28,0.23,1,0 +19644363,Spacious 2 bedroom railroad apartment,114621718,Hope,Brooklyn,Gowanus,40.67718,-73.98513,Entire home/apt,225,1,67,2019-06-29,2.98,2,350 +19645931,Time Square NYC Location,2074014,Carmine,Manhattan,Hell's Kitchen,40.76232,-73.99285,Private room,110,7,1,2018-01-24,0.06,1,99 +19650084,Simple private bedroom in house apartment,61308650,Elan,Brooklyn,Cypress Hills,40.68244,-73.89489,Private room,29,1,51,2019-06-01,2.10,1,16 +19650166,Kingsize Prvt Room in Crown Heights,15049077,Karanja,Brooklyn,Crown Heights,40.66562,-73.93201,Private room,55,30,15,2019-05-19,0.67,2,163 +19651861,Antique Romantic apartment chinatown/downtown,138331581,J,Manhattan,Civic Center,40.71219,-73.99785,Entire home/apt,102,1,45,2018-06-24,1.85,1,0 +19652739,1 Bedroom/1 Livingroom on 21st and 8th in Chelsea,81531783,Katie Knapp,Manhattan,Chelsea,40.74429,-73.99984,Entire home/apt,130,26,39,2019-06-28,1.71,1,29 +19653554,Brooklyn Boho 3 Floor Townhouse,1394711,Michelle,Brooklyn,Sunset Park,40.66362,-73.99773,Entire home/apt,350,2,55,2019-06-21,2.37,1,281 +19653866,Warm Comfy Queen Bedroom in Crown Heights 3GR,17555570,Yan,Brooklyn,Crown Heights,40.66964,-73.9216,Private room,53,1,65,2019-06-20,2.75,12,30 +19654252,BEAUTIFUL renovated Hamilton Heights room!,7449972,Jordon,Manhattan,Harlem,40.82512,-73.95054,Private room,69,14,6,2017-09-09,0.25,1,0 +19654970,Sunny 1-br UES apartment!,138359867,Dim,Manhattan,Upper East Side,40.7836,-73.9522,Entire home/apt,130,5,109,2019-06-18,4.50,1,202 +19655186,Spacious Prewar South Bronx Apartment,138359603,Anamaria,Bronx,Concourse,40.82153,-73.92683,Entire home/apt,140,2,2,2017-08-09,0.08,1,0 +19655651,Color and Comfort in Prime Brooklyn Location,16872537,Adir,Brooklyn,Crown Heights,40.67025,-73.95009,Entire home/apt,84,6,0,,,1,0 +19659617,Huge Central Wiliamsburg 2 bedroom clean w/rooftop,125090618,Avi,Brooklyn,Williamsburg,40.7132,-73.96042,Entire home/apt,145,10,0,,,1,0 +19659874,Big Private Studio one Subway stop from Manhattan,41578662,Lucia,Bronx,Mott Haven,40.81133,-73.92356,Entire home/apt,100,5,13,2019-04-06,0.58,2,14 +19660325,Cozy bedroom in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.71127,-73.84278,Private room,125,2,3,2018-10-10,0.13,3,364 +19660327,Gorgeous room with private full bathroom!,68762417,Simon,Manhattan,East Harlem,40.79222,-73.94607,Private room,125,1,1,2019-06-21,1,4,87 +19660760,Sunny and Cozy Apartment by the Beach,30884023,Maggie,Queens,Arverne,40.59044,-73.79179,Entire home/apt,60,1,53,2019-06-30,2.20,1,0 +19661183,Manhattan Skyline & Freedom Tower View,6484652,Una,Brooklyn,South Slope,40.66388,-73.98786,Private room,88,2,25,2018-10-14,1.04,2,0 +19661733,Private room at Stella's place,15617507,Stella,Bronx,Morris Park,40.85152,-73.86121,Private room,39,1,57,2019-05-07,2.38,3,39 +19662367,Brooklyn Garden Retreat,3168812,Laura,Brooklyn,Crown Heights,40.67055,-73.93233,Entire home/apt,48,3,83,2019-06-30,3.62,1,17 +19662812,Comfortable room in heart of Fresh Meadows,76359133,FuKang,Queens,Fresh Meadows,40.73754,-73.7913,Private room,60,1,34,2019-07-03,1.42,3,335 +19663834,Modern Cozy Private NYC-Manhattan Apartment,134105301,Daniel,Manhattan,East Harlem,40.78723,-73.94863,Entire home/apt,75,1,1,2017-07-06,0.04,1,0 +19670093,183 Pulaski st,136049464,Asif,Brooklyn,Bedford-Stuyvesant,40.69277,-73.94315,Private room,55,2,11,2018-09-29,0.47,1,5 +19670458,Economy Queen Bed in Caribbean Crown Heights 2SL,17555570,Yan,Brooklyn,Crown Heights,40.66933,-73.92162,Private room,51,1,83,2019-07-02,3.40,12,55 +19670481,Comfy Queen Bedroom in Crown Heights 2SR,17555570,Yan,Brooklyn,Crown Heights,40.66919,-73.92207,Private room,54,1,65,2019-06-16,2.75,12,57 +19670499,Warm Comfy Queen Bedroom 2GR,17555570,Yan,Brooklyn,Crown Heights,40.66958,-73.92361,Private room,52,1,74,2019-06-11,3.04,12,68 +19670506,Modern Studio on the Upper East Side,134107066,Hayley,Manhattan,Upper East Side,40.77744,-73.95476,Entire home/apt,117,3,8,2018-04-10,0.33,1,0 +19670522,Garden Bedroom w/Private Bath in Crown Heights 2MB,17555570,Yan,Brooklyn,Crown Heights,40.66886,-73.92333,Private room,62,1,69,2019-07-02,2.83,12,65 +19670534,Garden Master Bedroom in Crown Heights,17555570,Yan,Brooklyn,Crown Heights,40.67021,-73.92368,Private room,63,1,49,2019-06-03,2.02,12,51 +19671061,Beautiful Williamsburg Loft 1/2 Block from Subway!,45673606,Susan,Brooklyn,Williamsburg,40.71493,-73.94502,Private room,120,1,9,2017-10-07,0.38,1,0 +19671104,JFK 10 & LGA 15 minutes Single bed in the room,101657794,Dr. Shirin,Queens,Briarwood,40.70915,-73.80662,Private room,45,1,14,2017-10-19,0.58,6,0 +19672894,Secret Bushwick Bungalow,70506872,Kyle,Brooklyn,Bushwick,40.69935,-73.93872,Private room,52,1,3,2017-07-27,0.13,2,0 +19672975,"Cute, sunny room in NYC!",59111337,Meredith,Manhattan,Washington Heights,40.85029,-73.93602,Private room,42,2,3,2018-08-22,0.13,1,0 +19673076,Modern and Private Duplex Apartment,2983089,Robert,Brooklyn,Carroll Gardens,40.68308,-73.9912,Entire home/apt,175,30,57,2019-07-06,2.74,1,84 +19673318,Hunters Hideaway,138526119,Richard,Queens,Rockaway Beach,40.58573,-73.8137,Entire home/apt,142,2,11,2019-05-20,0.46,1,117 +19673610,Sunny Walk-up on the Upper East Side,15721549,Lauren,Manhattan,Upper East Side,40.77229,-73.94941,Private room,80,4,3,2018-11-06,0.34,1,0 +19673728,Women-only listing: Spacious bedroom in Brooklyn,130343656,Suzy,Brooklyn,Williamsburg,40.70492,-73.94258,Private room,42,3,8,2018-08-28,0.33,1,35 +19674485,Ditmas Park Victorian Dream Space!,105828086,Nikki,Brooklyn,Flatbush,40.64135,-73.96325,Private room,90,2,24,2019-04-23,1.07,4,0 +19674542,"One-bedroom, two-bathroom apartment in Brooklyn.",138546022,Nicholas,Brooklyn,Crown Heights,40.67466,-73.95163,Private room,50,1,1,2017-07-08,0.04,2,0 +19675121,Sunny Bushwick Bungalow,70506872,Kyle,Brooklyn,Bushwick,40.69915,-73.93743,Private room,52,4,4,2017-09-30,0.18,2,0 +19675166,Massive 1200ft² Luxury Loft in Heart of Flatiron,4252459,Sara,Manhattan,Flatiron District,40.74175,-73.99104,Entire home/apt,350,2,0,,,1,205 +19675738,Queens Village Home with Parking.,96856335,Wiler,Queens,Queens Village,40.71833,-73.7507,Entire home/apt,125,2,49,2019-06-10,2.08,1,347 +19675743,Steps to Times Square! Fabulous HK apt in NYC,116482644,Yaniv,Manhattan,Hell's Kitchen,40.76479,-73.98842,Private room,105,1,88,2019-05-01,3.76,2,0 +19676100,Suite 627 - Affordable Luxury - Brooklyn Charm,137666089,Livienne,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92205,Entire home/apt,100,2,90,2019-06-20,3.73,1,202 +19676301,White Bright Halsey Room,20759527,Farida,Brooklyn,Bedford-Stuyvesant,40.68506,-73.92316,Private room,31,55,4,2017-08-22,0.17,1,0 +19677221,"Private, Spacious Brooklyn Room in Prime Location",88351271,Jordan,Brooklyn,Bushwick,40.69817,-73.92819,Private room,45,3,14,2018-08-02,0.58,1,0 +19677284,Room in Williamsburg,63336737,Juan,Brooklyn,Williamsburg,40.70994,-73.95243,Private room,50,4,3,2018-08-13,0.12,1,0 +19677579,"Sunny room in historic Bedstuy, Brooklyn",124171,Miguel,Brooklyn,Bedford-Stuyvesant,40.68533,-73.94231,Private room,60,1,1,2018-07-08,0.08,1,0 +19677749,Midtown Room,117295184,Dorian,Manhattan,Midtown,40.76554,-73.98245,Private room,80,1,46,2019-06-25,1.93,1,6 +19678436,Sunny 1BR - Trendiest location in NYC,1999224,Ro-E,Manhattan,Chinatown,40.71346,-73.99158,Entire home/apt,180,2,1,2017-09-03,0.04,1,0 +19680275,Nice & new room in 2 bedroom apt. Washer/dryer 2R,122498535,Gf,Brooklyn,East Flatbush,40.65695,-73.92558,Private room,40,30,0,,,3,326 +19681256,"Contemporary, Stylish 2,000 sq. ft. Tribeca Loft",25064843,Stefania,Manhattan,SoHo,40.71938,-74.00163,Entire home/apt,550,2,0,,,1,0 +19682018,Room in basement apartment in Woodlawn,105375380,Yesenia,Bronx,Woodlawn,40.89785,-73.86977,Shared room,70,2,2,2018-12-02,0.11,2,0 +19686426,PRIVATE ROOM IN SPACIOUS APARTMENT IN WILLIAMSBURG,15820210,Scott,Brooklyn,Williamsburg,40.70932,-73.93489,Private room,60,2,36,2019-07-06,1.96,2,52 +19689686,Private comfy bedrm & bath Brookly NY,3148366,Maria,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95377,Private room,55,3,0,,,1,0 +19690331,"Private room in bustling Bushwick, Brooklyn",55209173,Camille,Brooklyn,Bedford-Stuyvesant,40.69555,-73.93444,Private room,40,1,3,2017-08-08,0.12,1,0 +19691108,Charming Studio in Historic Brooklyn Brownstone,31582668,Marci,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93202,Entire home/apt,99,3,55,2019-06-02,2.48,1,74 +19691179,Sun-filled Lower East Side Guest Room,138708257,Jeffrey,Manhattan,Lower East Side,40.72113,-73.9849,Private room,125,2,52,2019-06-30,2.19,1,28 +19691525,Small room in Historical home on Staten Island,128338539,Reuben,Staten Island,Stapleton,40.63144,-74.07913,Private room,34,1,11,2019-04-19,0.65,4,78 +19691853,Perfect 1 bedroom for short or extended stay.,106955062,Arelis,Manhattan,Harlem,40.81143,-73.94935,Entire home/apt,100,3,16,2019-05-13,0.66,1,0 +19691986,Beautiful Comfortable Historic Brownstone,138713312,M,Manhattan,Harlem,40.80832,-73.95275,Private room,115,2,93,2019-06-23,3.92,1,129 +19692421,Sunny studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74846,-73.97557,Entire home/apt,170,30,5,2019-03-30,0.22,50,323 +19692746,East Village Studio Recently Renovated,138721769,Marcelo,Manhattan,East Village,40.72807,-73.98801,Entire home/apt,200,2,110,2019-06-12,4.90,1,0 +19693245,Fully furnished one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74956,-73.97668,Entire home/apt,175,30,2,2018-08-05,0.09,50,353 +19693849,Beautiful Brooklyn Studio,21408874,Tal,Brooklyn,Bedford-Stuyvesant,40.68243,-73.93161,Entire home/apt,100,30,9,2018-08-18,0.37,1,0 +19694308,Bed-Stuy Beauty,12662045,Kamilah,Brooklyn,Bedford-Stuyvesant,40.68347,-73.93322,Private room,50,3,2,2017-08-31,0.09,1,0 +19694938,A gem in the East Village Manhattan!!,138741275,Karina,Manhattan,East Village,40.72497,-73.98208,Entire home/apt,220,3,78,2019-06-17,3.26,1,232 +19694951,Cozy Bedstuy Apartment,138741690,Frances,Brooklyn,Bedford-Stuyvesant,40.686,-73.94133,Private room,50,1,12,2019-06-27,0.52,1,39 +19695276,Beautiful Boerum Hill Apartment,373060,Tamera,Brooklyn,Boerum Hill,40.68591,-73.9863,Entire home/apt,275,2,2,2017-11-12,0.09,1,0 +19695709,Huge sunlit 1BD in heart of Williamsburg King Bed!,2224802,Daniel,Brooklyn,Williamsburg,40.71379,-73.94635,Entire home/apt,200,3,22,2019-07-01,0.90,1,0 +19696119,"Home away from home, come live like a Brooklynite!",4334590,Ashley,Brooklyn,Bushwick,40.69807,-73.9335,Private room,115,1,72,2018-09-25,2.98,1,0 +19696674,"Sunny, quiet room next to Prospect Park",10402380,Yuval,Brooklyn,Prospect Heights,40.67408,-73.96364,Private room,60,1,131,2019-06-30,5.36,2,128 +19696746,A Garden Grows in Greenpoint / Craft Chateau,5107938,Misha,Brooklyn,Greenpoint,40.72351,-73.94059,Private room,54,2,2,2017-08-31,0.08,1,0 +19696952,Lovely Bedroom available in the heart of Bushwick,70822653,Brandon,Brooklyn,Bushwick,40.70126,-73.91396,Private room,55,3,2,2017-11-29,0.10,1,241 +19696972,Stockton Studios,98093770,Dane,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94839,Private room,44,3,13,2018-03-27,0.54,1,0 +19697371,Cute Studio near Prospect Park,12058024,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.96166,Entire home/apt,70,1,3,2018-12-17,0.12,1,4 +19698169,"""The luxury of Comfort""",131826530,Kathy,Bronx,Riverdale,40.88671,-73.9151,Private room,2500,2,0,,,3,179 +19698772,"Brooklyn, Carroll Garden Apartment",48970186,Margarita,Brooklyn,Carroll Gardens,40.68188,-73.99438,Entire home/apt,135,4,49,2019-05-09,2.31,2,3 +19699039,Super Nice and Cool One Bedroom in LES,24835386,Atif,Manhattan,Lower East Side,40.71799,-73.98657,Entire home/apt,138,7,4,2018-08-27,0.17,1,0 +19699218,"Clean, Big, Sunny Room in Little Italy/Chinatown!",138784297,Andre,Manhattan,Chinatown,40.71353,-73.99632,Private room,115,2,18,2018-10-08,0.74,1,0 +19699241,MJ house,138782186,Hannah M,Queens,Rosedale,40.65531,-73.7274,Private room,70,1,0,,,2,365 +19699596,Intimate and Welcoming,138785704,Andrea,Manhattan,East Harlem,40.81661,-73.93471,Entire home/apt,150,2,60,2019-06-16,2.61,1,94 +19700585,Entire Apt with City Skyline Views,1384111,Joanne,Queens,Sunnyside,40.7461,-73.92146,Entire home/apt,150,30,8,2018-01-01,0.35,2,0 +19700871,~ Chic and open 2 bedroom Brooklyn Apartment ~,41963149,Carolyn,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95119,Entire home/apt,170,1,1,2017-07-16,0.04,1,0 +19701037,1BR - Heart of West Village - 30 Day Min - Unit 6,4422523,Marie,Manhattan,West Village,40.73394,-74.0049,Entire home/apt,140,30,4,2019-03-03,0.27,6,153 +19701427,Beautiful One Bedroom on the Upper East Side,16685637,Jessica,Manhattan,Upper East Side,40.76692,-73.964,Entire home/apt,400,15,0,,,1,87 +19701453,"GardenViewApt 10min to Bushwick ArtScene,Food,Bars",5413500,Rebecca,Queens,Ridgewood,40.70499,-73.91304,Entire home/apt,95,3,0,,,1,0 +19701644,"Affordable, spacious room in Bed-Stuy",3309159,David,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95383,Private room,50,1,0,,,1,0 +19701809,Spacious private room in the heart of Williamsburg,52173396,Greg,Brooklyn,Williamsburg,40.71733,-73.95887,Private room,65,1,7,2018-08-07,0.29,1,0 +19701913,Charming One Bedroom in South Harlem,6933440,Madalyn,Manhattan,Harlem,40.80416,-73.95704,Entire home/apt,102,2,18,2019-01-01,0.77,1,0 +19702498,Sunny 2BR Brooklyn Loft,5421054,Samuel,Brooklyn,Bushwick,40.70766,-73.92169,Entire home/apt,175,5,8,2018-09-09,0.34,1,0 +19702506,Heart of NYC - Best Location In The City,138823659,Andrea,Manhattan,Hell's Kitchen,40.75851,-73.99138,Entire home/apt,275,2,16,2019-04-21,0.67,1,0 +19703922,NYC 1-bedroom apartment on the UES,2262180,Andrew,Manhattan,Upper East Side,40.76651,-73.95155,Entire home/apt,145,2,33,2019-06-29,2.55,1,267 +19708955,Good Vibes Tribeca Loft,136729912,Karen,Manhattan,Tribeca,40.72227,-74.00804,Entire home/apt,700,4,12,2019-01-01,0.62,1,124 +19709550,Artist 1.5 bedroom WHOLE apartment in central NY!,38204730,Kathy,Manhattan,Gramercy,40.73564,-73.98229,Entire home/apt,239,5,2,2018-01-02,0.08,3,266 +19709666,Beautiful Studio in Historic Inwood-NYC!,21056771,Lauren & Ron,Manhattan,Inwood,40.86801,-73.92372,Entire home/apt,65,2,112,2019-06-27,4.67,1,103 +19710391,BedStuy Dream-house,28680760,Edwin,Brooklyn,Bedford-Stuyvesant,40.68474,-73.91825,Entire home/apt,250,4,3,2017-09-17,0.13,1,333 +19710742,Sunny Room w/ Private Bath in Williamsburg!,2361069,Philip,Brooklyn,Williamsburg,40.71553,-73.96332,Private room,90,3,74,2019-06-23,3.29,1,79 +19710855,Cozy Ground Floor Apartment-SUBWAY ONE BLOCK AWAY,49764808,Danielle,Brooklyn,Bedford-Stuyvesant,40.67848,-73.91543,Entire home/apt,85,2,67,2019-06-23,2.85,2,171 +19711512,"Cozy, Cool, Mid Century Modern Apt in Boerum Hill",1024251,Michael,Brooklyn,Boerum Hill,40.68807,-73.98161,Entire home/apt,170,2,21,2018-08-21,0.86,1,9 +19712270,Treasure of Harlem: Balcony View and Fun Hosts,138914016,Jacqueline,Manhattan,East Harlem,40.80109,-73.93975,Private room,60,1,26,2018-07-01,1.09,1,0 +19712405,Private basement room in a duplex apartment,109908957,Natalia & Gustavo,Brooklyn,East Flatbush,40.6458,-73.94586,Private room,50,1,8,2018-06-02,0.35,2,89 +19712687,"Sunny, spacious, homey Brooklyn loft",11989253,Hiji,Brooklyn,Bushwick,40.70113,-73.92299,Private room,60,3,0,,,1,0 +19713074,Sweet one bedroom apartment in Cobble Hill,9669516,Renee,Brooklyn,Cobble Hill,40.68698,-73.99864,Entire home/apt,152,3,3,2017-07-31,0.13,1,0 +19713885,The Historic Jackson Heights,137575707,Lilia,Queens,Jackson Heights,40.75091,-73.89304,Private room,62,2,55,2019-06-11,2.31,1,318 +19714056,"Bright, spacious bedroom in comfy Brooklyn home",3013202,Chelsea,Brooklyn,Bushwick,40.69997,-73.91666,Private room,70,4,1,2017-08-21,0.04,1,55 +19714504,"Sunny, Clean 2 beds 1 bath C.Heights Brooklyn",21418070,Daniela,Brooklyn,Crown Heights,40.66609,-73.93976,Entire home/apt,99,2,0,,,1,20 +19714903,Charming One Bedroom Apt in West Chelsea,8706651,Theresa,Manhattan,Chelsea,40.74862,-74.00237,Entire home/apt,150,2,1,2019-04-27,0.41,1,0 +19715121,Brooklyn Spacious Studio,34899836,Frances,Brooklyn,East Flatbush,40.65777,-73.91671,Entire home/apt,100,2,36,2019-06-16,1.57,1,56 +19716375,Rockaway Hideaway,137305439,Harry,Queens,Rockaway Beach,40.58891,-73.81578,Private room,110,1,34,2019-07-01,1.40,2,358 +19716501,Peaceful Private Studio Floor in Williamsburg Apt,3889739,Tutti,Brooklyn,Williamsburg,40.71322,-73.94022,Private room,60,2,6,2017-10-29,0.25,1,0 +19717109,Great 2BD in TriBeCa,8586684,Julian,Manhattan,SoHo,40.72569,-74.00849,Entire home/apt,700,2,1,2017-07-08,0.04,1,0 +19717572,Large NYC Apartment!,45726938,Daulton,Manhattan,East Harlem,40.79368,-73.94132,Private room,100,3,0,,,1,0 +19717632,East Village Charming & Cozy Apt!,6965700,Alina,Manhattan,East Village,40.72435,-73.98394,Private room,73,3,6,2018-07-08,0.30,1,0 +19717723,Tiny STUDIO in EastVillage,49656804,Marija,Manhattan,East Village,40.72716,-73.98524,Entire home/apt,100,3,75,2019-07-01,3.12,1,60 +19718634,Enormous apartment with everything you need,3495471,Russell,Bronx,Claremont Village,40.83561,-73.91108,Entire home/apt,58,3,59,2019-06-03,2.89,1,42 +19718993,Cozy Crown Heights w/ Botanical Garden Membership,26017313,Jamie,Brooklyn,Crown Heights,40.67293,-73.96128,Entire home/apt,200,1,2,2017-09-26,0.09,1,0 +19719080,"Kosher, furnished room in Crown Heights!!!",58753715,Avremi And Shmuly,Brooklyn,Crown Heights,40.66739,-73.94708,Private room,70,2,5,2017-10-23,0.21,1,0 +19719874,Studio - West Village - Unit 1,4422523,Marie,Manhattan,West Village,40.73598,-74.00505,Entire home/apt,140,30,1,2018-08-06,0.09,6,267 +19720055,Big Private Room in quite place with green view.,138983570,Ali,Queens,Sunnyside,40.74777,-73.91546,Private room,45,6,1,2019-05-10,0.50,1,14 +19720126,Spacious West Harlem Studio!,96742320,Anne,Manhattan,Harlem,40.82411,-73.9509,Entire home/apt,98,2,2,2017-08-22,0.09,1,0 +19720270,Bright corner Studio in the heart of Harlem,12293403,Joffrey,Manhattan,Harlem,40.81113,-73.94113,Entire home/apt,150,2,21,2019-02-24,0.89,2,157 +19720565,2 bedroom luxury building 10 day stay,138996674,Suhail,Manhattan,Murray Hill,40.74466,-73.9748,Entire home/apt,80,10,0,,,1,0 +19720877,"Bright 2BR, terrace, best Bklyn Heights location!",7627586,Sarah,Brooklyn,Brooklyn Heights,40.69387,-73.99412,Entire home/apt,299,4,6,2018-12-31,0.27,1,27 +19720907,"Cozy bedroom in Harlem, NY",54283436,Maurice,Manhattan,East Harlem,40.7993,-73.94164,Private room,60,3,6,2018-07-26,0.25,1,0 +19721338,2 Bedrooms Available in Upper West Manhattan,133274871,Deborah,Manhattan,Harlem,40.81513,-73.95685,Private room,51,5,0,,,1,0 +19721535,Rockaway Beach Oasis,12162815,Annelise,Queens,Rockaway Beach,40.59093,-73.81238,Entire home/apt,140,2,9,2019-06-14,0.38,1,36 +19721906,"1 month min, Cozy Midtown East/UES studio!",10440694,Gia,Manhattan,Upper East Side,40.76212,-73.96358,Entire home/apt,150,30,88,2019-06-22,3.67,1,3 +19728214,Large beautiful room in luxury building with view,139076348,Candelyn,Queens,Long Island City,40.74515,-73.95583,Private room,150,3,0,,,1,0 +19729892,One room in a beautiful two bedroom appartment,4452444,Jūrate,Brooklyn,Williamsburg,40.71916,-73.94215,Private room,70,1,14,2019-06-30,0.60,1,0 +19730080,Private bedroom in Sunny Bushwick Apartment,139093829,Valentina,Brooklyn,Bushwick,40.6874,-73.91455,Private room,40,3,17,2018-08-27,0.71,1,0 +19730428,Comfortable Room in Bushwick,139096564,Jessica,Brooklyn,Bushwick,40.69273,-73.9055,Private room,45,1,1,2017-07-17,0.04,1,0 +19730968,Furnished private large room at a great location,138717905,Luca,Manhattan,East Harlem,40.79626,-73.94429,Private room,67,2,28,2019-07-03,1.22,1,179 +19731225,Entire 2 bedroom floor in owner occup Brownstone,71097702,Paula,Brooklyn,Park Slope,40.6815,-73.98028,Entire home/apt,290,30,48,2019-04-09,2.07,2,299 +19731249,Stunning Spacious Artist Loft,138938451,Andrea,Brooklyn,Williamsburg,40.70635,-73.93588,Entire home/apt,150,3,6,2017-09-23,0.25,1,0 +19731551,CHARMING QUIET STUDIO RIGHT OFF CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.78469,-73.97197,Entire home/apt,159,30,2,2019-01-29,0.18,16,358 +19732045,Big apartment in Bushwick... art--nightlife--food!,21772781,Edward,Brooklyn,Bushwick,40.70268,-73.91582,Entire home/apt,77,3,4,2019-04-24,0.18,1,0 +19734117,"UES: Bdrm Sunny Corner Apt, 3 flights of stairs up",139135366,Eileen,Manhattan,Upper East Side,40.76864,-73.95427,Entire home/apt,175,2,20,2019-06-15,0.88,1,0 +19734492,Beautiful Modern Brooklyn Gem,137184002,Kevin,Brooklyn,East Flatbush,40.6543,-73.91488,Entire home/apt,85,1,183,2019-07-08,7.65,1,120 +19735722,Loft-like turn of the century apartment for shoots,31515758,Townsend,Manhattan,Washington Heights,40.83405,-73.94565,Entire home/apt,1000,1,1,2018-03-18,0.06,1,79 +19736798,"Large Private Room +Sleeps 4 Guests +Full Amenities",139165159,Deonisis,Manhattan,Inwood,40.8662,-73.92646,Private room,60,1,128,2019-07-05,6.03,1,67 +19737173,"NYC Room Sublet, Private Space, Air conditioner",139170973,Wonkyung,Manhattan,Harlem,40.81949,-73.95521,Private room,45,7,0,,,1,0 +19737908,Cozy Zen-like Jungle in Bushwick,67271745,Anna,Brooklyn,Bushwick,40.69393,-73.90898,Private room,55,1,1,2017-07-30,0.04,1,0 +19737981,SPOTLESS bedroom separate entrance paid parking.,120767920,Jimmy &Cindy,Queens,Flushing,40.75786,-73.8123,Private room,48,2,54,2019-07-01,2.28,10,360 +19738203,"1 Bedroom Apartment +Crown Heights, Brooklyn",34039463,Sini,Brooklyn,Crown Heights,40.67081,-73.92765,Private room,100,1,0,,,1,0 +19738695,Two Bedroom Apt in Midtown East,24559181,Aldi,Manhattan,Upper East Side,40.76302,-73.96725,Entire home/apt,200,1,15,2019-06-21,0.69,3,351 +19743260,Private room in Harlem with A/C,44220091,Thomas,Manhattan,Harlem,40.8076,-73.94252,Private room,56,1,10,2017-08-23,0.42,1,0 +19743272,Cozy Inn,138628430,Tyeesha,Bronx,Morris Heights,40.85167,-73.92144,Private room,50,1,0,,,1,363 +19743334,Gem in South Williamsburg,3363377,Eryka,Brooklyn,Williamsburg,40.70997,-73.94902,Private room,114,2,43,2019-06-11,1.82,2,114 +19743941,Spacious Prospect Park Loft Apartment,6042053,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.96084,Entire home/apt,200,3,32,2019-06-28,1.37,1,317 +19744093,Beautiful modern Brooklyn apartment with balcony!,2239235,Jess,Brooklyn,Crown Heights,40.67637,-73.95755,Entire home/apt,125,3,1,2017-07-16,0.04,1,0 +19744503,Private and Comfortable bedroom,138003310,Marta,Queens,Richmond Hill,40.70008,-73.83344,Private room,60,7,53,2019-06-28,2.24,1,335 +19744691,Townhouse with private bathroom and lush backyard,8162588,Kristen,Brooklyn,Crown Heights,40.67226,-73.92477,Private room,40,2,10,2018-10-19,0.41,1,22 +19745541,One Bedroom LOFT 2 blocks from Bedford ave L,15476792,Gosia,Brooklyn,Williamsburg,40.7179,-73.96047,Entire home/apt,105,1,24,2017-12-31,1.01,1,0 +19745952,"Cozy, charming uptown apartment!",31727657,Kristen,Manhattan,Washington Heights,40.84482,-73.93739,Private room,70,4,1,2017-07-31,0.04,1,0 +19747278,Large bayfront Apt in Rockaway Beach,106125,Alexa,Queens,Rockaway Beach,40.59106,-73.8113,Entire home/apt,108,4,20,2019-07-01,0.85,1,329 +19747940,1 Bedroom in Beautiful Prospect Heights Apt.,5018185,Caroline,Brooklyn,Prospect Heights,40.67797,-73.96783,Private room,60,2,1,2017-07-30,0.04,1,0 +19748676,Shu's home,138579344,Lester And Shirell,Brooklyn,Clinton Hill,40.68895,-73.96259,Entire home/apt,130,2,49,2019-06-21,2.30,1,211 +19749132,Small cozy furnished bedroom in Sunnyside Queens,68321431,Victor-Andres,Queens,Sunnyside,40.7362,-73.91783,Private room,30,2,6,2018-06-23,0.42,1,0 +19749379,Great Luxury Condo Studio Apt,39469408,Ron And Khine,Queens,Rego Park,40.73268,-73.85952,Entire home/apt,135,3,5,2017-09-04,0.21,1,0 +19749398,Pent house for rent in Astoria 5 min to LGA,95570854,Fatema,Manhattan,Civic Center,40.71359,-74.00538,Private room,300,1,0,,,2,179 +19750905,Live like a local in the heart of Manhattan,37688229,Roxana,Manhattan,Midtown,40.75568,-73.96798,Entire home/apt,79,6,8,2019-06-21,0.35,1,15 +19751205,"Gorgeous Sun-fulled Studio, Perfect Location!!!",55148803,Bianca And Jordan,Brooklyn,Williamsburg,40.71581,-73.95423,Entire home/apt,146,2,40,2019-06-23,1.66,1,200 +19751573,New + modern E Williamsburg apt *right* off subway,33243428,Parsa,Brooklyn,Williamsburg,40.71365,-73.93889,Private room,57,3,1,2017-08-01,0.04,1,0 +19757502,Historic Modernism in Harlem's Sugar Hill,97682736,Michael,Manhattan,Harlem,40.82559,-73.94501,Entire home/apt,250,7,1,2018-12-28,0.16,1,0 +19757672,Quiet Studio in Midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74965,-73.97566,Entire home/apt,150,30,1,2018-04-10,0.07,50,320 +19758402,CITY ISLAND VACATION HOME NEAR THE BEACH,139415761,Deb,Bronx,City Island,40.85306,-73.78948,Entire home/apt,85,2,42,2019-07-06,1.76,1,168 +19759718,Cozy 1bedroom in Greenwich Village/Soho,7338347,Janelle,Manhattan,Greenwich Village,40.7289,-74.00059,Private room,70,7,0,,,1,0 +19760008,Your Home by the Park,44358777,Peter A.,Manhattan,Upper West Side,40.79874,-73.9599,Private room,67,2,5,2017-09-07,0.21,1,0 +19760163,Bronx Room for Rent,6843497,J.F.,Bronx,Morris Park,40.84932,-73.85883,Private room,35,3,4,2019-04-06,0.17,1,76 +19760412,Cozy Home in Brooklyn Heights,12326863,Catherine,Brooklyn,Brooklyn Heights,40.69144,-73.99637,Entire home/apt,160,30,0,,,1,31 +19762625,Private Room with Garden In Lovely Apt in Soho,2269285,Michka,Manhattan,Nolita,40.72208,-73.99365,Private room,100,2,6,2017-10-30,0.25,1,0 +19763012,Cozy Catch,139467641,Bartek,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92298,Private room,47,3,8,2017-12-30,0.33,1,0 +19763298,Large-sunny-private room & bathroom in UES hi rise,12825778,Laura,Manhattan,Upper East Side,40.78273,-73.95048,Private room,46,3,23,2019-07-06,0.96,1,12 +19763459,Great location-Close to metro in cool neighborhood,81160897,Roberto,Brooklyn,Bushwick,40.70152,-73.91148,Private room,50,1,16,2019-04-21,0.66,1,343 +19763657,East Williamsburg Sanctuary at Morgan L train,19612095,Ellie,Brooklyn,Williamsburg,40.70496,-73.93122,Private room,65,2,20,2019-05-07,0.83,2,179 +19764243,Modern Studio in Classic Upper East Side,56728868,Nathan,Manhattan,Upper East Side,40.77286,-73.94789,Entire home/apt,115,14,0,,,1,0 +19764868,"UWS Townhouse 1BR Modern, Bright 3A",106837455,Lisa,Manhattan,Upper West Side,40.78443,-73.98256,Entire home/apt,135,90,0,,,8,125 +19765340,Beautiful Bedroom NEAR SUBWAYS 25 min to Manhattan,139490165,Melvin & Maya,Brooklyn,Bushwick,40.68469,-73.90794,Private room,110,2,9,2018-06-03,0.41,3,0 +19766312,Room in conveniently located charming apartment,3118776,Akiko,Queens,Long Island City,40.76363,-73.93033,Private room,48,5,52,2019-06-24,2.17,1,8 +19766387,a room in Clinton Hill,139503928,Noel,Brooklyn,Clinton Hill,40.68231,-73.96658,Private room,45,7,1,2017-08-15,0.04,1,0 +19766555,1.5 Bed Condo in heart of Williamsburg,20163996,Russ,Brooklyn,Williamsburg,40.71441,-73.94527,Entire home/apt,140,3,4,2018-10-09,0.20,1,0 +19766791,Beautiful Private Room,38815234,Viviana,Manhattan,Harlem,40.82747,-73.94224,Private room,45,3,42,2019-06-03,1.78,2,252 +19767346,Cozy Gem in Huge Prewar Midtown Apartment,37092956,Edward,Manhattan,Midtown,40.76358,-73.98015,Private room,72,6,0,,,1,0 +19767372,One Bedroom in the middle of Astoria,139511753,Brittani,Queens,Astoria,40.76531,-73.91155,Entire home/apt,137,2,3,2017-10-27,0.12,1,0 +19767452,Beautiful Apartment with Garden In Brooklyn,28307663,Matan,Brooklyn,Greenpoint,40.73599,-73.95604,Entire home/apt,170,2,12,2019-06-24,0.53,1,3 +19767688,Bedroom with Patio in Prime Williamsburg Location!,3900279,Adriel,Brooklyn,Williamsburg,40.72054,-73.95919,Private room,100,3,0,,,2,0 +19767924,"Charming 1 bedroom, Great Location LES/Chinatown",139127299,Switch,Manhattan,Chinatown,40.71609,-73.99204,Entire home/apt,198,10,4,2018-11-05,0.19,1,0 +19768107,Lower East Dream Room!,16414560,Kat,Manhattan,East Village,40.72467,-73.98922,Private room,100,2,1,2019-05-21,0.61,1,0 +19768219,Couch in Studio Apartment in Astoria,9039995,Jamie,Queens,Long Island City,40.76199,-73.92684,Shared room,33,1,11,2017-10-22,0.46,1,0 +19768417,Private Room-Upper East Side,40139382,Josh,Manhattan,Upper East Side,40.77275,-73.94917,Private room,70,4,1,2018-01-20,0.06,1,0 +19768754,"#1 Spacious Cozy Room, 30 minutes from Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68749,-73.87261,Private room,42,30,42,2019-07-01,1.81,6,114 +19768762,Two bedrooms with free parking,115355054,Alice,Queens,Flushing,40.75183,-73.80665,Entire home/apt,139,2,36,2019-06-24,1.74,1,101 +19768829,"Cozy 1 bedroom apt, Quiet, Near metro, East side",3792860,Elena,Manhattan,Upper East Side,40.77052,-73.95485,Entire home/apt,150,1,0,,,2,0 +19769057,Bright 1 Bed Apartment in Fort Greene,3019399,Andreas,Brooklyn,Fort Greene,40.68633,-73.97164,Entire home/apt,180,2,15,2019-07-01,0.64,1,4 +19769328,Private spacious bedroom near JFK Airport,35751147,Agraj,Queens,Richmond Hill,40.69452,-73.82742,Private room,60,1,26,2019-05-05,1.09,1,0 +19769403,AMAZING 2 bedroom in the heart of Chelsea!,10307134,Anna,Manhattan,Chelsea,40.74204,-73.99899,Entire home/apt,275,3,20,2019-07-01,0.86,2,106 +19769680,Huge 1 bedroom apartment on Broadway!,15468652,Igor,Manhattan,Washington Heights,40.83499,-73.94528,Private room,59,6,1,2017-08-04,0.04,1,0 +19769912,"Modern, Stylish & Spacious Brooklyn Oasis",54508926,Roshumba,Brooklyn,Canarsie,40.63837,-73.91149,Entire home/apt,167,2,102,2019-07-08,4.27,1,294 +19779217,Cozy and private room in the East Village,27895393,Daniel,Manhattan,East Village,40.72295,-73.98487,Private room,95,3,23,2019-05-27,1.05,1,229 +19779749,Private Room in Sunny South Harlem Apt,1877402,Anna,Manhattan,Harlem,40.8114,-73.95237,Private room,50,1,15,2018-06-07,0.62,2,0 +19780093,Convenient / Spacious 1BR in Union Square,6376364,Jing,Manhattan,East Village,40.73213,-73.98944,Entire home/apt,200,2,11,2017-10-10,0.47,1,0 +19780958,"Sweet Cobble Hill ""tree house""",3757515,Emily,Brooklyn,Cobble Hill,40.68744,-73.99229,Entire home/apt,125,7,0,,,1,0 +19784119,Harlem Haven,9427915,Ntifafa Akoko,Manhattan,Harlem,40.82105,-73.94588,Entire home/apt,100,2,27,2019-06-09,1.15,1,1 +19785259,Lower East Side - Bare Bones,53821069,Daniel,Manhattan,Lower East Side,40.72276,-73.9886,Entire home/apt,94,1,8,2017-07-28,0.33,1,0 +19785676,Cozy private room in Brooklyn,23055253,Marie,Brooklyn,Bushwick,40.69924,-73.93052,Private room,70,4,0,,,2,0 +19785737,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70445,-73.81399,Private room,135,1,1,2017-10-08,0.05,18,180 +19786240,Venice Beach Meets Brooklyn Stunning Townhouse,20063690,Naheima,Brooklyn,Bedford-Stuyvesant,40.68827,-73.94943,Entire home/apt,550,3,4,2018-09-03,0.22,2,97 +19786465,private room in the Bronx,84941679,Junior,Bronx,Clason Point,40.81699,-73.86741,Private room,80,1,2,2018-10-02,0.09,1,88 +19786549,Dungeon heaven. SOHO loft-feel in Bklyn.❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68141,-73.93301,Entire home/apt,68,14,10,2019-04-30,0.43,5,286 +19786572,"Spacious, private master bed/bath in Bushwick!",20459165,Amie,Queens,Ridgewood,40.70689,-73.91527,Private room,63,4,6,2017-09-20,0.26,1,0 +19786757,2 Bedrooms PRIVATE BATHROOM AND KITCHEN,131684478,Mervin (Michael),Staten Island,West Brighton,40.63291,-74.11777,Private room,83,2,5,2018-08-29,0.24,3,188 +19786915,Spacious Clean Studio Apartment,86892032,Marian,Queens,Rosedale,40.65766,-73.72838,Entire home/apt,60,1,57,2019-07-08,2.41,1,336 +19787245,CHIC & BRIGHT APT ON UES CLOSE TO CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.76937,-73.95745,Entire home/apt,155,30,8,2019-04-24,0.37,16,333 +19787716,Specious charming 2 bed room in Williamsburg,1804766,Omer,Brooklyn,Williamsburg,40.71271,-73.95894,Entire home/apt,108,7,0,,,1,0 +19787770,"Pleasant Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.6542,-74.00159,Private room,75,3,7,2018-04-20,0.29,2,0 +19788051,A Brooklyn Muse,34296062,Heather,Brooklyn,Prospect-Lefferts Gardens,40.66134,-73.9476,Entire home/apt,250,2,0,,,1,0 +19788577,Bushwick Landing Pad,36952002,Debra,Brooklyn,Bushwick,40.68787,-73.91305,Private room,35,2,14,2019-06-27,0.66,1,16 +19788957,Private room in Bedford / Williamsburg,104892816,Stanislas,Brooklyn,Williamsburg,40.71248,-73.95815,Private room,70,3,1,2017-08-07,0.04,1,0 +19789302,Loft Like 1 Bedroom in Dumbo Brooklyn,12518089,Dan,Brooklyn,DUMBO,40.70286,-73.98911,Entire home/apt,195,2,3,2017-12-29,0.13,1,0 +19789620,Kozy Kingsbridge,139013186,Iris,Bronx,Kingsbridge,40.87896,-73.90674,Private room,75,2,40,2019-05-19,1.74,1,246 +19789878,One Bedroom Apartment + Private Terrace,97856969,Evgenia,Brooklyn,Boerum Hill,40.68909,-73.99083,Entire home/apt,98,13,1,2017-08-29,0.04,1,0 +19790011,1 bedroom presidential wyndham NYC,57571805,Gharet,Manhattan,Midtown,40.75315,-73.97175,Entire home/apt,100,2,1,2017-11-25,0.05,3,0 +19790151,Only 30 Minutes Away From Manhattan,106430338,Alana,Brooklyn,Bensonhurst,40.612,-73.99573,Private room,57,3,3,2018-10-30,0.27,2,83 +19790344,Spacious 1BR on the border of West Village/Chelsea,24861274,Madison,Manhattan,Chelsea,40.73881,-73.99741,Entire home/apt,200,2,24,2019-07-01,1.14,1,20 +19791460,2nd Street Sanctuary,21016975,Stephen,Manhattan,East Village,40.72345,-73.98407,Shared room,350,1,5,2019-01-11,0.26,1,0 +19791924,Spacious studio with private garden near The Met,112954746,Miranda,Manhattan,Upper East Side,40.77428,-73.95523,Entire home/apt,145,2,3,2017-07-30,0.12,1,0 +19798405,The Astoria House: private 1B apt in NYC,446095,Chris And Nina,Queens,Ditmars Steinway,40.77148,-73.9138,Entire home/apt,170,2,56,2019-06-30,2.91,1,305 +19799021,Convenient 3 Bedroom w/ Large Terrace in Flushing,5962328,Alan,Queens,Flushing,40.7602,-73.82324,Entire home/apt,180,30,2,2019-06-09,0.12,15,320 +19799489,Cozy Retreat on Atlantic Ave,139838320,Bismillah,Brooklyn,Bedford-Stuyvesant,40.67964,-73.94987,Entire home/apt,200,2,36,2019-05-27,1.54,2,124 +19800250,Brooklyn State of Mind - The Artist Loft,2141311,Thomas,Brooklyn,Williamsburg,40.71961,-73.94266,Entire home/apt,400,3,0,,,2,0 +19801076,The North House:Large NYC home 15 Min to Manhattan,5483699,Jeff,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94224,Entire home/apt,789,2,51,2019-06-24,2.12,1,175 +19801154,Cozy private room in Williamsburg,83671631,Esperanza,Brooklyn,Williamsburg,40.71262,-73.94156,Private room,60,2,1,2019-05-27,0.70,1,248 +19801310,Bedroom with Manhattan view (females only),139638096,Xinyan,Manhattan,Roosevelt Island,40.76412,-73.948,Private room,60,1,0,,,1,0 +19801466,Luxury Home away from home in NYC!,87612379,Marta,Queens,Middle Village,40.72267,-73.86997,Entire home/apt,140,3,35,2019-06-29,1.56,1,190 +19802994,Entire Loft with Private Bath in Queens,28270349,Jie,Queens,Flushing,40.76589,-73.79449,Entire home/apt,89,1,105,2019-07-07,4.38,2,0 +19803017,Incredible East Village Apartment on St Marks!,28881583,Laila,Manhattan,East Village,40.72759,-73.98466,Entire home/apt,150,2,28,2019-05-30,1.17,1,9 +19803042,"Landmark 2bdrm Apt, Near Subway 20min to Manhattan",23212298,Seda,Brooklyn,Crown Heights,40.6758,-73.9401,Entire home/apt,127,4,56,2019-06-22,2.48,1,286 +19803208,Spacious & Spectacular,9020323,Andrea,Brooklyn,Bedford-Stuyvesant,40.67921,-73.94283,Private room,110,3,20,2019-07-05,0.89,1,173 +19803462,Beauty of New York!,139871790,Reisha,Manhattan,Upper East Side,40.76301,-73.95719,Entire home/apt,123,3,26,2019-05-29,1.08,1,0 +19803515,Little Italian Manor,139871943,Patrick,Manhattan,Nolita,40.72044,-73.99646,Private room,81,30,59,2019-06-15,2.47,3,111 +19805513,"Private, Sunny, lofted bedroom in Bushwick, BK",15615036,Ronnie,Brooklyn,Bushwick,40.69017,-73.916,Private room,44,1,7,2017-07-25,0.29,2,0 +19805716,Large bedroom in spacious prime Williamsburg apt,3900279,Adriel,Brooklyn,Williamsburg,40.7198,-73.96108,Private room,105,3,0,,,2,0 +19806088,Beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.6715,-73.94427,Entire home/apt,100,2,16,2018-08-20,0.68,2,0 +19806105,"Beautiful, Private 3BR Apt EAST VILLAGE",69891628,Daniel,Manhattan,East Village,40.72838,-73.97943,Entire home/apt,305,2,29,2019-07-01,1.29,1,58 +19806972,"Sunny room, artistic modern building near subway",114523254,Larissa,Manhattan,East Harlem,40.7875,-73.94675,Private room,85,1,8,2017-10-16,0.34,1,0 +19808259,Newly renovated heart of Williamsburg great views,117530860,Adam,Brooklyn,Williamsburg,40.72019,-73.95581,Private room,65,7,1,2017-08-14,0.04,1,0 +19808493,Lovely and cozy apartment in Williamsburg,105139019,Giulia,Brooklyn,Williamsburg,40.70948,-73.94814,Private room,90,3,3,2017-08-17,0.12,1,0 +19808508,Pretty bedroom for rent in Queens NYC - August,103217662,Mathilde,Queens,Ridgewood,40.70772,-73.90959,Private room,50,7,1,2017-11-19,0.05,1,0 +19808524,Cozy one bedroom apt in artsy Brooklyn Brownstone,781674,Stephen,Brooklyn,Fort Greene,40.68816,-73.97579,Entire home/apt,100,14,5,2018-07-09,0.21,1,0 +19809175,Spacious one bedroom in heart of east village,134185971,Simone,Manhattan,East Village,40.72759,-73.98496,Entire home/apt,176,2,3,2018-01-01,0.13,1,0 +19809264,Big Sunny 1BR near the subway - 20 mins to NYC!,18197578,Caitlin,Brooklyn,Crown Heights,40.66756,-73.95812,Entire home/apt,100,3,12,2018-11-25,0.50,1,4 +19811020,Upper East Side Space and Access!!,30245313,Jewel,Manhattan,Upper East Side,40.76775,-73.95371,Private room,187,1,6,2017-12-12,0.26,1,0 +19811114,Beautiful newly renovated home-Long stays welcome!,16705993,Richard,Queens,Woodhaven,40.68958,-73.85294,Private room,70,2,7,2017-10-16,0.30,1,65 +19811196,Private Room Spacious Apartment UES/Spanish Harlem,122038325,Watson,Manhattan,East Harlem,40.78809,-73.94194,Private room,76,2,79,2019-05-08,3.33,1,11 +19811442,"Spacious, sunny studio apt in East Village, NYC",877697,Lisa,Manhattan,Gramercy,40.73232,-73.98418,Entire home/apt,175,2,0,,,1,0 +19811581,2A. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80668,-73.93828,Private room,43,1,86,2019-05-11,3.55,10,161 +19811816,"Modern townhouse in Clinton Hill, Brooklyn",28363708,Gregory,Brooklyn,Fort Greene,40.69604,-73.9708,Entire home/apt,350,7,0,,,1,145 +19812026,"Lovely, Cozy Room in Inwood",38098992,Julia,Manhattan,Inwood,40.86437,-73.92347,Private room,65,2,2,2018-07-01,0.10,2,76 +19812097,"Two B/Rm (2-3 guests) Near Beach, A/air train, JFK",139957134,Trudy,Queens,Arverne,40.5991,-73.79944,Private room,50,1,28,2019-06-22,1.23,3,251 +19814107,"COMFY “Twin bed"" NEXT-LGA AIRPORT/Pre Book-US OPEN",32446721,Veronica,Queens,Corona,40.74825,-73.86396,Shared room,37,1,18,2019-07-03,0.75,6,365 +19814560,"Beautiful Double Room in the heart of Astoria, NY",139985282,David,Queens,Astoria,40.76469,-73.91094,Private room,48,1,3,2017-08-13,0.13,1,0 +19815527,Nolita Home,11654079,Deniz,Manhattan,Nolita,40.72361,-73.99467,Entire home/apt,300,7,14,2019-04-19,0.67,1,9 +19818393,Large one separate bedroom,90315649,Mike,Manhattan,East Harlem,40.79241,-73.94058,Entire home/apt,135,4,3,2018-06-19,0.12,1,0 +19818960,Harlem Haven Cozy Private Bed & Bath,1693845,Roni,Manhattan,Harlem,40.81553,-73.94672,Private room,135,2,33,2019-06-02,1.40,1,75 +19819750,Smart Manhattan Flat (upper east side),5353151,Justin,Manhattan,Upper East Side,40.78207,-73.94717,Private room,72,3,21,2019-07-04,0.90,1,61 +19820146,Light filled apartment in Sunset Park,3171141,Stav,Brooklyn,Sunset Park,40.64203,-74.01383,Entire home/apt,90,30,0,,,1,53 +19820148,Amazing rooftop for unforgettable stay in New York,31284229,Eddie,Manhattan,East Harlem,40.79652,-73.93323,Private room,120,1,1,2017-07-19,0.04,1,0 +19821160,Chelsea Condo near High line,36043601,Bicheng,Manhattan,Chelsea,40.74927,-74.00691,Entire home/apt,200,2,0,,,1,0 +19821206,COZY STUDIO APT IN HEART OF CHELSEA,139949166,Jiwon,Manhattan,Chelsea,40.75044,-73.99665,Entire home/apt,128,1,4,2018-03-20,0.17,1,0 +19821768,Renovated and Spacious Upper West Side Apt,5869629,Zack,Manhattan,Upper West Side,40.79973,-73.96152,Entire home/apt,300,2,0,,,1,0 +19822902,"Sunny, modern Clinton Hill Apartment",1451743,David,Brooklyn,Bedford-Stuyvesant,40.68562,-73.95624,Entire home/apt,100,5,2,2017-08-24,0.09,1,0 +19822964,UPPER WEST SIDE | 1 BEDROOM | Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77395,-73.98786,Entire home/apt,190,30,8,2019-06-03,0.36,25,330 +19823445,Beautiful and Modern Brooklyn Apartment,20063690,Naheima,Brooklyn,Bedford-Stuyvesant,40.68695,-73.94858,Entire home/apt,150,2,69,2019-06-30,2.90,2,328 +19823771,Spacious and clean bedroom in Washington Heights,55608979,Marie,Manhattan,Washington Heights,40.8352,-73.94045,Private room,50,1,3,2017-08-23,0.13,1,0 +19823964,Fm,26800649,Christopher,Bronx,Belmont,40.85961,-73.89031,Shared room,110,1,0,,,1,0 +19824236,Lovely Apartment 1bd Clean & Quiet. You'll love it,8154922,Ivan,Brooklyn,Bay Ridge,40.63347,-74.02739,Entire home/apt,60,30,0,,,1,0 +19825152,"Luxurious, Beautiful, Spacious 2BR in Williamsburg",140083988,Chris,Brooklyn,Williamsburg,40.7111,-73.9487,Entire home/apt,175,2,102,2019-06-21,4.23,1,152 +19825552,Great 1 Bedroom duplex apt in Kips-Bay/MurrayHill,2761278,Yuval,Manhattan,Kips Bay,40.74073,-73.9791,Entire home/apt,229,5,1,2018-01-03,0.05,1,0 +19825578,"Beautiful Cozy,clean NYC nest at amazing location.",21938310,Jane,Manhattan,East Village,40.72818,-73.98925,Private room,95,2,1,2017-07-24,0.04,1,54 +19827594,Great private room in the heart of Williamsburg,55389878,Justin,Brooklyn,Williamsburg,40.7188,-73.95846,Private room,84,1,1,2017-07-31,0.04,1,0 +19827778,Mi Casa su Casa!,71749435,Paul,Manhattan,Washington Heights,40.84102,-73.93822,Entire home/apt,80,3,37,2019-06-30,1.55,1,28 +19828183,❤️Private Suite w Balcony ❤️25 Mins to NYC,8266069,Linda And Liz,Queens,Elmhurst,40.73704,-73.87877,Private room,120,2,110,2019-06-30,4.75,1,222 +19828845,Chic & Sleek Mid-Century Styled Apt,48881330,Nina,Brooklyn,Crown Heights,40.66589,-73.95103,Entire home/apt,100,3,6,2019-01-20,0.25,1,250 +19829390,Charming apartment + private patio in Times Square,140128474,Chris,Manhattan,Theater District,40.7583,-73.98295,Entire home/apt,210,3,138,2019-07-01,5.73,1,234 +19829879,Spacious Loft with Designer Layout,2887664,Brock,Brooklyn,Williamsburg,40.7124,-73.96342,Entire home/apt,260,2,15,2019-05-23,0.68,1,88 +19829900,Modern Front Apartment in Brooklyn!,123634626,Livia,Brooklyn,Bensonhurst,40.61889,-73.99895,Entire home/apt,99,3,28,2019-07-04,1.92,1,325 +19830008,Charming Private Room in the heart of East Village,139942077,Sahar,Manhattan,East Village,40.72304,-73.98089,Private room,125,1,80,2019-06-28,3.35,1,340 +19830169,Brooklyn Bedroom with Rooftop and Garden,922462,Stacia,Brooklyn,Crown Heights,40.6732,-73.9553,Private room,65,2,0,,,1,98 +19830557,Modern room in renovated Williamsburg apartment,28819052,Taylor,Brooklyn,Williamsburg,40.71379,-73.94207,Private room,80,2,95,2019-06-22,4.09,1,51 +19830726,"Cozy Room in Beautiful Harlem Apartment, NYC!",140146581,Natalie And Vince,Manhattan,Harlem,40.82169,-73.94077,Private room,69,1,14,2018-09-13,0.72,1,0 +19830759,Beautiful Large Bedroom in Brooklyn!,2891898,Jennifer,Brooklyn,Borough Park,40.64712,-73.99646,Private room,48,5,2,2019-05-03,0.19,1,214 +19831736,Spacious Sunny Living Room in Prime Brooklyn,23027289,Eileen,Brooklyn,Clinton Hill,40.68386,-73.9627,Private room,40,1,2,2017-08-29,0.09,1,0 +19836734,Sunlit giant apt in the privileged Upper East,4380358,C Lum,Manhattan,Upper East Side,40.78072,-73.94726,Private room,135,4,5,2019-05-31,0.22,1,95 +19837851,Bright 3-bedroom apartment in beautiful Brooklyn,140220933,Yolanda,Brooklyn,East Flatbush,40.65614,-73.91754,Entire home/apt,103,3,35,2019-04-21,1.52,1,291 +19838917,ABSOLUTE PRIVACY - 10 Mins to JFK 20 Mins to LGA!,135337934,Steve,Queens,Queens Village,40.70969,-73.73133,Entire home/apt,110,2,20,2019-06-19,0.84,2,27 +19840329,Spacious Private Space In Upper Manhattan,2351055,Leeron,Manhattan,Harlem,40.82931,-73.94801,Private room,50,4,3,2018-10-20,0.31,1,0 +19841463,East Williamsburg Hideaway House,19612095,Ellie,Brooklyn,Williamsburg,40.70699,-73.93221,Private room,45,2,0,,,2,274 +19841625,Cozy Studio Upper East Side,30868859,Moheb,Manhattan,Upper East Side,40.77625,-73.95208,Entire home/apt,125,5,36,2019-05-02,1.56,1,0 +19841837,Elegant Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.75832,-73.99179,Private room,129,1,108,2019-06-29,4.49,3,116 +19842557,Exclusive Modern Private Room in Hells Kitchen,105049617,Gio,Manhattan,Hell's Kitchen,40.76015,-73.99017,Private room,129,1,111,2019-07-07,4.61,3,111 +19843040,Trendy Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.76002,-73.98958,Private room,129,1,97,2019-06-22,4.03,3,132 +19843398,UPPER WEST SIDE - WEST END AVENUE AND 65TH ST,131647128,Emily,Manhattan,Upper West Side,40.77418,-73.98799,Entire home/apt,190,30,9,2019-02-19,0.43,25,334 +19843731,Modern Comfort Room w/ Patio 7 mins to Manhattan,137832487,Mariame,Bronx,Longwood,40.82164,-73.90163,Private room,65,3,2,2018-02-28,0.11,1,0 +19844263,"Central location in Midtown, doorman building",94206273,Brendan,Manhattan,Midtown,40.75527,-73.9657,Private room,99,1,112,2018-06-24,4.66,1,0 +19845074,Cozy private room in Hamilton Heights in Manhattan,2409072,Erykah,Manhattan,Harlem,40.82649,-73.94623,Private room,60,2,15,2019-05-31,0.66,1,95 +19845373,Lovely 1 bedroom apartment with large balcony.,140293912,Awilda,Brooklyn,Kensington,40.64584,-73.97711,Entire home/apt,89,3,57,2019-01-14,2.38,3,0 +19845637,Cosy bedroom complete with fort,10966079,Ward,Brooklyn,Williamsburg,40.70898,-73.96121,Private room,75,3,54,2019-06-30,2.24,2,96 +19847065,"Gorgeous UWS apt, close to culture and nature!",3263559,Rachel,Manhattan,Upper West Side,40.77509,-73.98159,Entire home/apt,187,3,7,2019-02-08,0.33,1,5 +19847087,Cool Astoria Apartment minutes from Manhattan,114596544,Martin,Queens,Astoria,40.76791,-73.92247,Entire home/apt,95,3,19,2018-01-08,0.79,1,0 +19847655,Peaceful space,140323391,Adi,Brooklyn,Bushwick,40.70255,-73.92103,Private room,45,3,0,,,1,0 +19847790,Spacious 3 BDR APT Brooklyn Sleeps 12!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64377,-73.95085,Entire home/apt,160,3,53,2019-07-01,2.24,2,294 +19847831,Huge 1 BR Manhattan Apt-5 mins to express Q train,140323631,Neha,Manhattan,Upper East Side,40.77927,-73.94918,Entire home/apt,140,7,3,2018-07-07,0.13,1,0 +19848191,Crown Heights 2 Bedroom Apt.,88001494,Mendy,Brooklyn,Crown Heights,40.66611,-73.93708,Private room,90,2,38,2019-06-27,1.59,3,45 +19848373,The City Farmhouse APT A **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75829,-73.91298,Entire home/apt,200,7,10,2017-12-17,0.45,3,247 +19848536,Cozy room with a bathroom,71540842,Willy,Queens,Ridgewood,40.70801,-73.90928,Private room,48,3,50,2019-06-23,2.09,2,111 +19848951,Lower East Side Getaway,25072764,Thomas,Manhattan,Lower East Side,40.71833,-73.9908,Private room,69,4,2,2017-08-15,0.09,1,0 +19850113,Cozy Bright in Kensington by trains,14898658,Chadanut,Brooklyn,Kensington,40.64242,-73.98138,Private room,45,1,22,2019-05-21,0.96,11,7 +19853102,Fanta Sea Home,131777975,Jewell,Brooklyn,Brownsville,40.66293,-73.91729,Private room,90,4,4,2019-01-01,0.20,3,89 +19853343,1 bedroom in 3 bedroom apartment,18990231,Kwam,Queens,Ridgewood,40.70373,-73.90873,Private room,45,1,3,2017-10-04,0.13,1,0 +19855804,Spacious 1 Bedroom in East Village,79527116,Pamela,Manhattan,East Village,40.72826,-73.98156,Entire home/apt,110,30,41,2018-12-26,1.72,1,244 +19856802,Beautiful sunny room in Central Brooklyn/Bed-Stuy,25789741,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94909,Private room,40,5,0,,,1,0 +19856899,Home away from home,67739226,Vipul,Manhattan,Upper West Side,40.77141,-73.98862,Shared room,50,1,0,,,1,0 +19857263,One bedroom luxury apartment!,26178020,Monica,Queens,Long Island City,40.75265,-73.9405,Entire home/apt,180,30,0,,,1,83 +19857281,Lightfilled room in Clinton Hill Loft,2781214,Jeanie,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9589,Private room,45,12,9,2018-10-31,0.38,1,0 +19857613,"Cozy, Bright, Bohemian Space in the East Village",1132004,Michael,Manhattan,East Village,40.73022,-73.98623,Entire home/apt,125,5,2,2017-08-27,0.08,1,0 +19858046,Perfect Grand Central apartment,140433041,Ariel,Manhattan,Midtown,40.75083,-73.97271,Entire home/apt,325,3,21,2018-12-29,0.89,1,2 +19859156,Spacious room in Williamsburg.,48100358,Ivan,Brooklyn,Williamsburg,40.70803,-73.9591,Private room,55,1,87,2019-06-23,3.72,3,24 +19859179,"Cozy, Quite, Private, Near LGA",39134890,Di,Queens,Elmhurst,40.74083,-73.88523,Private room,39,3,25,2018-07-17,1.22,1,0 +19859697,"spacious and sunny room, with a rooftop",9121644,Dominic,Queens,Ridgewood,40.70334,-73.90647,Private room,85,2,5,2017-09-02,0.21,1,0 +19860469,Ideal Private Room in the Heart of Williamsburg,80701659,Marie,Brooklyn,Williamsburg,40.7139,-73.9486,Private room,80,5,1,2017-08-29,0.04,1,0 +19860903,"Charming Two Bedroom in Brownstone, BedStuy :)",12577986,Bennett,Brooklyn,Bedford-Stuyvesant,40.68614,-73.93594,Entire home/apt,124,1,113,2019-06-23,4.71,1,63 +19861088,Cozy & Quiet Harlem Studio,2462300,Jasmine,Manhattan,Harlem,40.81707,-73.9349,Entire home/apt,120,3,20,2019-01-01,0.94,1,0 +19861483,"Charming, Sunlit 1-Bedroom on Upper East Side",137751858,Kelly,Manhattan,Upper East Side,40.78069,-73.95149,Entire home/apt,120,3,8,2017-09-21,0.34,1,0 +19861834,"Clean, Cute Williamsburg Apt, Steps from train!",17820666,Erin,Brooklyn,Williamsburg,40.70618,-73.9534,Entire home/apt,198,20,4,2018-03-31,0.18,1,0 +19862719,1BR in Luxury Financial District Highrise,61689461,Michael,Manhattan,Financial District,40.70498,-74.01063,Private room,55,3,2,2017-07-27,0.08,1,0 +19862892,Château Sharif - Cozy Washington Heights Studio,140476993,Sharif J.,Manhattan,Washington Heights,40.83286,-73.94135,Entire home/apt,100,7,10,2018-12-26,0.42,1,0 +19862980,Garden duplex in classic brownstone,16752839,Karen,Brooklyn,Carroll Gardens,40.68385,-73.99278,Entire home/apt,225,2,14,2018-11-24,0.65,1,0 +19863170,Large Williamsburg Bedroom,140488110,Grace,Brooklyn,Williamsburg,40.70823,-73.96081,Private room,60,2,0,,,1,0 +19863486,Private room 1 block from train,140492812,Andrew,Brooklyn,Bushwick,40.707,-73.92204,Private room,57,1,2,2017-10-18,0.09,2,0 +19864245,Cozy bedroom in East Williamsburg loft.,140503168,Ariel,Brooklyn,Williamsburg,40.71729,-73.9453,Private room,95,3,1,2017-07-27,0.04,1,67 +19866106,Master Bedroom in Penthouse Duplex Private Terrace,91358346,Eric,Brooklyn,Williamsburg,40.71479,-73.94835,Private room,600,1,0,,,1,0 +19867655,Williamsburg Brooklyn,5244814,Gina,Brooklyn,Williamsburg,40.71949,-73.95827,Entire home/apt,200,3,1,2019-01-02,0.16,1,0 +19867930,"Peaceful Private Attic Bedroom, Living Room & Bath",20433973,Julia,Bronx,City Island,40.83914,-73.78158,Private room,80,1,6,2019-06-30,1.33,2,358 +19871726,"Prime Wburg, spacious and sunny",22549130,Zaid,Brooklyn,Williamsburg,40.7134,-73.944,Entire home/apt,116,3,6,2018-08-26,0.26,1,0 +19872361,Great & convenient location in East Village!,13349759,Isai,Manhattan,East Village,40.72589,-73.97726,Private room,75,3,0,,,1,0 +19872862,Cozy and Charming,140599227,Fanny,Queens,Forest Hills,40.73076,-73.85033,Private room,45,1,43,2018-11-11,1.85,2,0 +19873185,"Large room in a beautiful, easy-commute apartment",24383253,Arash,Brooklyn,Crown Heights,40.67139,-73.95677,Private room,50,8,0,,,1,0 +19874046,"Kew Gardens, New York",55952349,Umberto,Queens,Kew Gardens,40.70847,-73.82961,Entire home/apt,150,6,3,2019-06-15,0.12,1,36 +19874726,Cute 1-bedroom uptown apt,34359486,Katherine,Manhattan,Harlem,40.81379,-73.94671,Entire home/apt,120,2,11,2018-09-09,0.46,1,128 +19875496,Newly renovated studio in heart of Brooklyn,20608771,Michael,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94986,Entire home/apt,99,7,7,2018-01-03,0.30,1,0 +19875728,"LARGE 3 bed on UWS, Steps to Central Park, Subway",4328217,Jill,Manhattan,Upper West Side,40.78762,-73.96827,Entire home/apt,325,7,0,,,1,0 +19876292,Cute & Cosy in West Village,24607072,Luke,Manhattan,West Village,40.73673,-74.00836,Entire home/apt,150,3,3,2017-09-04,0.13,1,0 +19876515,Wingate Manhattan Midtown (#1),139259102,Celeste,Manhattan,Midtown,40.75316,-73.99086,Private room,500,1,0,,,2,0 +19876641,Boho Brooklyn nest,93859477,Mac,Brooklyn,Williamsburg,40.71983,-73.9592,Entire home/apt,210,2,23,2019-03-26,0.96,1,0 +19876727,Bright and spacious room in prime Bushwick!,59045042,Sidney,Brooklyn,Bushwick,40.70204,-73.92592,Private room,55,2,7,2017-10-04,0.29,1,0 +19877223,"Cozy & Cheap BK Nook, Easy Access to Manhattan",47198967,Sean And Kat,Brooklyn,Fort Greene,40.69692,-73.97352,Entire home/apt,108,1,6,2017-10-19,0.26,1,0 +19877695,1 Room in Spacious Harlem Manhattan 3BR Home,25653961,Tatianna,Manhattan,Harlem,40.81566,-73.93914,Private room,50,3,5,2018-12-30,0.22,1,0 +19877706,Big 3 Bedroom Garden Level Apartment Near Subway,2988712,Sasha,Bronx,Claremont Village,40.83507,-73.9104,Entire home/apt,72,90,2,2018-04-23,0.12,7,223 +19878366,"@Ferry,Large Private Rm,Renovated/Stylish,Views...",117492425,Dine,Staten Island,St. George,40.64478,-74.07897,Private room,33,4,63,2019-07-03,2.78,6,197 +19880329,Charming Townhouse duplex in Chelsea,6861839,Eli,Manhattan,Chelsea,40.74637,-74.00263,Entire home/apt,500,3,1,2017-12-29,0.05,1,0 +19884639,"#3 Bright And Cozy Room, 30 minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.6884,-73.87253,Private room,42,30,46,2019-06-29,1.97,6,202 +19885344,"Spacious, Airy, Private Bedroom",19608476,Celia,Manhattan,Washington Heights,40.83495,-73.94406,Private room,87,4,34,2019-06-28,1.41,1,31 +19886609,The Magnificent,137411167,Becky,Bronx,Parkchester,40.84024,-73.85836,Private room,45,1,23,2019-06-01,0.96,1,54 +19887405,Elegant Arty Studio In Brooklyn,83061189,Stephen,Brooklyn,Boerum Hill,40.6859,-73.98959,Entire home/apt,150,1,8,2019-07-04,0.34,1,158 +19887942,Unique 3 bedroom apartment in Bed-Stuy come all,140770094,Edwin,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93379,Entire home/apt,170,3,75,2019-07-02,3.24,1,323 +19888160,Cool Room + Private Bathroom | Hip Location!,128517263,Alina,Brooklyn,Bushwick,40.69876,-73.93687,Private room,75,6,8,2019-01-28,0.34,3,53 +19888622,Beautiful two bedroom apt in Crown Heights/Bedsty,140470401,Peter,Brooklyn,Crown Heights,40.67719,-73.93205,Entire home/apt,200,2,51,2019-06-30,2.15,1,127 +19889348,Upper East Dream Apartment Stunning 1 Bed Room.,69108319,Varun,Manhattan,Upper East Side,40.77108,-73.9485,Entire home/apt,115,2,0,,,1,0 +19889906,Beautiful queens apartment! 10 minutes to NYC,140798168,Olivia,Queens,Astoria,40.76988,-73.9211,Entire home/apt,165,6,0,,,1,0 +19890448,Mundo's World,15096876,Raymundo,Brooklyn,Bushwick,40.6995,-73.92089,Private room,60,3,2,2017-07-31,0.08,1,0 +19890678,Sunny room with a Balcony in Prospect Heights,513517,Tak,Brooklyn,Crown Heights,40.67567,-73.95779,Private room,59,2,1,2018-05-25,0.07,1,0 +19891174,Bright Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6582,-73.98235,Private room,49,1,109,2019-06-29,4.99,7,258 +19891482,Cozy The East Village 1BD,2574881,Emma,Manhattan,East Village,40.72225,-73.98206,Entire home/apt,150,3,6,2018-10-08,0.28,1,0 +19891485,Cozy and Charming Private Room in Lower East Side,10677720,Deniz,Manhattan,Lower East Side,40.7177,-73.98245,Private room,77,5,20,2018-05-13,0.84,1,0 +19891590,"Serene & Cozy 1bed w/backyard, Great Location",325862,Oscar,Brooklyn,Windsor Terrace,40.66023,-73.98259,Entire home/apt,99,2,7,2019-06-23,0.38,1,0 +19891602,Bright mid-century brownstone apt,8199671,Coline,Brooklyn,Bedford-Stuyvesant,40.69262,-73.95014,Entire home/apt,120,2,6,2019-04-19,0.25,1,2 +19891896,Huge space right next to Central Park,125458231,Mohammad,Manhattan,Upper West Side,40.79403,-73.96314,Private room,85,1,0,,,1,363 +19892112,Lovely Park Slope 1BR / 2BA with outdoor space,52535342,Darren,Brooklyn,Park Slope,40.66711,-73.97691,Entire home/apt,175,3,0,,,1,0 +19892264,Brooklyn 1-Bedroom with Skyline Views,87474067,Amanda,Brooklyn,Bedford-Stuyvesant,40.68218,-73.95355,Private room,60,1,16,2018-05-20,0.68,1,0 +19892549,Central Harlem- 15 Min to Times Square,26645843,Camaron,Manhattan,Harlem,40.80781,-73.95134,Entire home/apt,250,5,2,2019-06-25,0.11,1,6 +19892918,Clean and Bright Room with AC! BUSHWICK/RIDGEWOOD,60230747,Joel,Queens,Ridgewood,40.70306,-73.90363,Private room,30,14,2,2017-09-03,0.08,1,0 +19893872,Art Lovers Paradise in Upper Manhattan,140847083,Richard,Manhattan,Washington Heights,40.8445,-73.9404,Private room,99,2,20,2019-05-05,0.89,1,24 +19894567,"#2 Newly Renovated Room , 30 minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68705,-73.87036,Private room,42,30,33,2019-06-03,1.42,6,74 +19894733,"Cozy, Clean, tidy budget room",104470941,Careff,Brooklyn,Crown Heights,40.67305,-73.92958,Private room,90,2,34,2019-07-02,1.43,1,170 +19894740,Cozy and bright room in Morningside Heights,25991504,Claudia,Manhattan,Morningside Heights,40.81254,-73.96025,Private room,48,7,1,2017-08-16,0.04,1,0 +19896613,Cozy & Quiet Private UES Room,73056979,Kesaun,Manhattan,Upper East Side,40.7822,-73.95101,Private room,55,1,7,2018-01-16,0.30,1,0 +19898570,Cosy Studio in Rego Park,140889033,Vasiliki,Queens,Rego Park,40.72318,-73.85621,Entire home/apt,40,14,1,2019-02-24,0.22,1,7 +19902776,Beautiful 2br apt. in heart of historic Harlem,140931908,Daniela,Manhattan,East Harlem,40.81033,-73.93874,Entire home/apt,200,2,9,2019-06-25,0.38,1,27 +19903510,Stay at my Studio! Clean Cozy Studio - FT GREENE,17617027,Steven,Brooklyn,Fort Greene,40.69751,-73.97544,Entire home/apt,100,1,2,2017-07-23,0.08,1,0 +19904670,Cozy private room near cafes and subway,17507326,Kat,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92255,Private room,107,2,1,2019-06-30,1,1,90 +19905170,Sunny Apartment in Brooklyn,34388017,Gabrielle,Brooklyn,Crown Heights,40.67713,-73.94375,Entire home/apt,175,3,0,,,1,0 +19906070,Lovely 1 bedroom Manhattan flat in Spanish Harlem,140964310,Shiv,Manhattan,East Harlem,40.79405,-73.94242,Private room,150,7,0,,,1,0 +19906460,Luxury 2 Beds 1 Bath by lincoln center,131647128,Emily,Manhattan,Upper West Side,40.77396,-73.98782,Entire home/apt,225,30,20,2019-05-16,0.90,25,286 +19906528,Calm and cozy bedstuy room,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.6844,-73.93138,Private room,27,1,68,2019-06-16,2.88,3,112 +19906578,Charming studio in the heart of Williamsburg,132839074,Jill,Brooklyn,Williamsburg,40.71673,-73.94442,Entire home/apt,101,2,7,2019-02-09,0.64,1,0 +19907176,"Upper West side,Lincoln center,Luxury 2Bed 2Bath",131647128,Emily,Manhattan,Upper West Side,40.77578,-73.98923,Entire home/apt,255,30,5,2019-02-27,0.26,25,254 +19907609,"Upper West side, 2 bed 2 Bath",131647128,Emily,Manhattan,Upper West Side,40.77476,-73.98947,Entire home/apt,320,30,8,2019-06-28,0.38,25,261 +19907678,Spacious & Light 2 Bedroom Apartment,57670550,Josie,Brooklyn,Crown Heights,40.66714,-73.93365,Entire home/apt,87,2,2,2018-06-26,0.09,2,0 +19907826,"Fun studio apartment in Washington Heights, NYC",29003640,Cedric,Manhattan,Washington Heights,40.84851,-73.93207,Entire home/apt,60,3,6,2017-09-26,0.25,1,0 +19908088,Luxury Apartment in NYC Financial District,140983856,Nini,Manhattan,Financial District,40.70492,-74.00797,Entire home/apt,199,10,36,2019-06-13,1.52,2,297 +19908261,Coolest Apartment at Great Location!!,137264725,Gulcin,Manhattan,Chinatown,40.71366,-73.99153,Entire home/apt,320,1,2,2018-07-22,0.10,4,249 +19909197,Private Room in Park Slope Loft/Townhouse,52583380,Sebastian,Brooklyn,Park Slope,40.67872,-73.9792,Private room,88,3,8,2017-12-08,0.33,1,0 +19909586,Charming Alcove Studio in heart of West Village,1426080,Jacquelyn,Manhattan,West Village,40.73555,-74.00737,Private room,115,1,3,2017-08-21,0.12,2,0 +19910074,Huge Space in Brooklyn's Most Beautiful Area,11878464,Christine,Brooklyn,Prospect Heights,40.67654,-73.97144,Private room,85,2,11,2018-01-01,0.48,1,0 +19910558,"Plant-filled, sunny Clinton Hill studio",2505262,Jerome,Brooklyn,Clinton Hill,40.68432,-73.96376,Entire home/apt,83,14,0,,,1,0 +19910666,Large Studio in the HEART OF MANHATTAN,141011662,Tim,Manhattan,Hell's Kitchen,40.75856,-73.99057,Entire home/apt,176,3,0,,,1,0 +19910689,"perfect place for tourist, near subway, restaurant",141012246,Ayodeji,Manhattan,Harlem,40.81745,-73.94203,Private room,100,1,6,2017-10-08,0.25,2,0 +19910725,"Cozy Room in Heart of SoHo near NYU, WSP, Subway",23909694,Anh,Manhattan,Greenwich Village,40.72918,-73.99889,Private room,100,2,1,2017-08-12,0.04,2,0 +19910952,RELAX & UNWIND - Classy Unique HOUSE for 9 People,99202586,Thelma,Staten Island,Randall Manor,40.62967,-74.1285,Entire home/apt,135,2,21,2019-05-26,0.88,5,354 +19911620,Long Stay at Central Park West,36565683,Mariano,Manhattan,Upper West Side,40.80013,-73.95998,Entire home/apt,150,6,4,2019-03-23,0.17,1,64 +19911716,Amazing Soho Loft,8258751,Merve,Manhattan,SoHo,40.7252,-73.99805,Entire home/apt,250,5,3,2017-08-16,0.13,1,0 +19911778,Brooklyn Backyard Oasis,140304567,Magnus,Brooklyn,Bay Ridge,40.62992,-74.01753,Entire home/apt,125,7,1,2018-08-07,0.09,1,3 +19911921,Cozy 1 bedroom in the heart of E. Village,15932734,Komail,Manhattan,East Village,40.72688,-73.98546,Entire home/apt,160,3,20,2019-05-18,0.89,1,0 +19912065,"Nice walk-in studio in Sheepshead Bay, Brooklyn",141025502,Aleksandr,Brooklyn,Sheepshead Bay,40.59408,-73.94372,Entire home/apt,95,4,13,2019-06-07,0.68,1,111 +19912256,"Luxury Williamsburg duplex, private roof terrace",1927824,Helen,Brooklyn,Williamsburg,40.71466,-73.94448,Entire home/apt,250,4,7,2019-05-30,0.33,1,118 +19912332,Chic East Village 1 bed apt,19113311,Michael,Manhattan,East Village,40.72592,-73.98862,Entire home/apt,175,2,3,2017-10-17,0.13,1,0 +19912495,Clean Studio in Soho and Little Italy,10457196,Richard,Manhattan,Little Italy,40.71954,-73.99667,Entire home/apt,150,30,6,2019-06-17,0.27,11,65 +19912535,Charming 1br on historic East Village block,19863077,Michael,Manhattan,East Village,40.72574,-73.98498,Entire home/apt,192,1,0,,,1,0 +19912628,Nice and safe,141031544,Susana,Queens,Ditmars Steinway,40.77787,-73.90848,Private room,69,7,0,,,1,0 +19912814,Bed-Stuy Brownstone 1 bedroom,81937,Tamar,Brooklyn,Bedford-Stuyvesant,40.68999,-73.92833,Entire home/apt,110,14,1,2017-08-15,0.04,1,18 +19912854,Tiny House,112774776,Anne,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93884,Entire home/apt,92,4,3,2018-08-12,0.13,1,0 +19913070,Spacious loft with Balcony sleeps TWO,3300910,William,Brooklyn,Bedford-Stuyvesant,40.69723,-73.93769,Entire home/apt,95,3,29,2019-06-29,1.22,1,13 +19913191,NEW YORK CENTRAL APARTMENT/TIME SQUARE,43105586,Gian Marco,Manhattan,Hell's Kitchen,40.75774,-73.99225,Entire home/apt,280,3,9,2019-03-21,0.39,1,84 +19913497,Sunny and Peaceful Haven in Heart of Williamsburg,6955481,Chloe,Brooklyn,Williamsburg,40.71913,-73.95769,Entire home/apt,275,3,2,2017-08-06,0.08,2,0 +19913714,Room in a Huge Loft Apartment,48081884,Laura,Brooklyn,Williamsburg,40.70564,-73.92774,Private room,60,3,2,2017-08-14,0.08,2,0 +19913761,Brand NEW & SIMPLE apt in quiet Chinatown,6862083,Mischa,Manhattan,Two Bridges,40.71136,-73.99391,Private room,110,3,1,2018-09-28,0.11,1,350 +19913783,Micheal's Apartment in Harlem,31856573,Micheal,Manhattan,Harlem,40.81671,-73.94013,Private room,80,6,0,,,1,364 +19914209,Luxury Private Bedroom (near JFK),141052003,Nicole,Queens,Jamaica,40.68558,-73.78018,Private room,65,1,8,2018-09-26,0.42,4,155 +19914250,Close to all NYC! Perfect place and cozy room,48972208,Yuri,Manhattan,Hell's Kitchen,40.75996,-73.99798,Private room,89,1,0,,,1,0 +19914762,SoHo studio,6219013,Kate,Manhattan,Nolita,40.72177,-73.99675,Entire home/apt,200,3,5,2018-09-23,0.38,1,0 +19915204,BRIGHT LUXURIOUS MASTER BEDROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77295,-73.90512,Private room,59,1,100,2019-06-23,4.19,8,342 +19915657,SUNNY PRIVATE ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77324,-73.90385,Private room,55,1,70,2019-06-23,2.93,8,332 +19915939,GORGEOUS LARGE BDR CLOSE TO MANHATTAN,139357580,Shuly,Queens,Ditmars Steinway,40.77321,-73.90447,Private room,60,1,80,2019-06-23,3.35,8,320 +19919747,Awesome Times Square 1 BR Loft in City Centre,142053,Jowelle,Manhattan,Hell's Kitchen,40.76054,-73.99066,Entire home/apt,199,2,59,2019-06-24,2.52,5,266 +19922292,Cool Studio in Brooklyn,51870709,Max,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94789,Entire home/apt,120,1,4,2017-08-28,0.17,1,0 +19922819,great area in East Williamsburg,10642725,Nate,Brooklyn,Bedford-Stuyvesant,40.69425,-73.93325,Private room,35,2,1,2017-09-28,0.05,1,0 +19923041,ॐ Private Room in Yoga Retreat Center - Brooklyn ॐ,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.67014,-73.99276,Private room,79,1,81,2019-06-23,3.53,3,353 +19923377,Cozy Brightly Lit Room in Huge Loft Space,48081884,Laura,Brooklyn,Williamsburg,40.70476,-73.92942,Private room,65,3,15,2019-05-27,0.65,2,2 +19923426,Bright & Sunny Bedroom in Brooklyn,135840287,Callie,Brooklyn,Crown Heights,40.67783,-73.94209,Private room,65,1,8,2018-04-04,0.34,1,0 +19924521,Artist Loft in Prime trendy East Williamsburg!,53710434,Luisa,Brooklyn,Bushwick,40.70208,-73.93258,Entire home/apt,85,5,2,2019-05-21,0.32,1,49 +19925397,"Modern, big and comfy space in the heart of NYC",46708895,Victor,Bronx,Mount Hope,40.84899,-73.90375,Entire home/apt,250,2,45,2019-06-25,2.18,1,289 +19928987,Convenient & Cozy Upper East Side Apartment,24041479,Ethan,Manhattan,Upper East Side,40.7593,-73.95967,Private room,246,1,10,2018-10-24,0.42,1,365 +19929209,Cozy Studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74838,-73.97695,Entire home/apt,150,30,1,2017-09-17,0.05,50,365 +19929279,Awesome 2 Bedroom Brooklyn Apartment / Sleeps 6,10391137,Ryan,Brooklyn,Clinton Hill,40.69539,-73.9666,Entire home/apt,250,3,67,2019-06-11,2.99,1,87 +19929723,Cozy And Quiet Getaway (Queen Size Bed),137999892,Simranjeet,Staten Island,Concord,40.60609,-74.0888,Private room,34,4,24,2019-05-18,1.03,7,293 +19929904,Sun Drenched Apartment,71730214,Tatum,Queens,Ridgewood,40.69956,-73.89801,Entire home/apt,80,4,5,2018-08-29,0.21,1,0 +19930489,Traveler/Student Prvt Rm w/ 1/2 Bath (001),137999892,Simranjeet,Staten Island,Concord,40.60613,-74.08907,Private room,35,4,19,2019-06-22,0.84,7,346 +19930641,105 Wilson,26018020,Jimmy,Brooklyn,Bushwick,40.70053,-73.92589,Private room,75,2,0,,,1,0 +19930835,Cozy And Quiet Single Room (003) A/c in sunmmer,137999892,Simranjeet,Staten Island,Concord,40.60618,-74.08712,Private room,33,3,29,2019-06-09,1.30,7,356 +19931069,Amazing Studio step away from the Time Sq/74B,48146336,Irina,Manhattan,Hell's Kitchen,40.76284,-73.99226,Entire home/apt,130,30,7,2019-06-24,0.37,20,337 +19931860,West 57th Street by Hilton Midtown Manhattan,4335080,Tiffany,Manhattan,Midtown,40.76394,-73.97825,Entire home/apt,350,1,1,2017-12-06,0.05,2,365 +19932387,Welcome 2 rooms 10 min to airports 30 mins to NYC,141229116,Daniel,Queens,Bellerose,40.73179,-73.72179,Private room,60,2,27,2019-07-05,1.14,1,353 +19932802,Private Bedroom West Village Greenwich Apartment,45399737,Esther,Manhattan,Greenwich Village,40.7292,-73.99964,Private room,150,2,0,,,1,48 +19933872,Lovely Private Room in the Heart of Williamsburg,92307204,Jesse,Brooklyn,Williamsburg,40.71947,-73.95958,Private room,65,21,2,2018-04-22,0.09,1,81 +19933967,Charming studio in midtown east Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74948,-73.97685,Entire home/apt,150,30,0,,,50,365 +19936586,Huge Sunny room in BedStuy (musician friendly),26091462,Tanya,Brooklyn,Bedford-Stuyvesant,40.69499,-73.94921,Private room,100,1,1,2017-11-05,0.05,2,0 +19940173,Amazing Cozy Upper East Side Private Artistic Flat,137306448,Katie,Manhattan,Upper East Side,40.7823,-73.94736,Entire home/apt,219,1,29,2019-06-26,2.82,1,338 +19940410,Classic Williamsburg Apartment.,39250457,Lauren,Brooklyn,Williamsburg,40.71199,-73.94004,Entire home/apt,90,2,4,2017-08-23,0.17,1,0 +19942242,Home away from home.,141322867,Peggy,Brooklyn,Flatlands,40.62468,-73.94532,Private room,46,2,4,2017-08-12,0.17,1,4 +19942348,Sunny and Airy FiDi Studio,141324173,Victoria,Manhattan,Financial District,40.71103,-74.00845,Entire home/apt,200,2,74,2019-06-24,3.13,1,35 +19943029,Entire Historic Brownstone Apartment-Outdoor Space,141194871,Christopher,Brooklyn,Bedford-Stuyvesant,40.68198,-73.94086,Entire home/apt,160,2,130,2019-06-29,5.60,1,123 +19943440,Charming 2B/2BR in the heart of the West Village,141335210,Eric,Manhattan,West Village,40.73447,-74.00266,Entire home/apt,599,1,0,,,1,0 +19943741,¡AMAZING PENTHOUSE IN SOHO (Nolita-1BR)!,2292332,Charlie Manuel,Manhattan,Nolita,40.7216,-73.99721,Entire home/apt,350,5,5,2019-05-25,0.21,1,54 +19943797,"Family-Friendly, 2br, Tons of Light! Amazing find.",34738874,Elliott,Brooklyn,Crown Heights,40.67806,-73.94459,Entire home/apt,88,1,2,2017-08-18,0.08,1,0 +19944735,Private Bedroom in Large Astoria apartment,81996236,Zoe,Queens,Ditmars Steinway,40.76994,-73.90659,Private room,105,1,0,,,1,89 +19944880,The Bedford,5350896,Zaher,Brooklyn,Williamsburg,40.71312,-73.9617,Entire home/apt,175,3,30,2019-06-25,1.28,1,24 +19945196,"Sunny, quiet room next to Seaview Park w/AC",16567193,Jacqueline,Brooklyn,Canarsie,40.63652,-73.90015,Private room,80,5,0,,,1,90 +19945327,"Apartment for One Person Midtown, Doorman Building",37234244,Aishling,Manhattan,Midtown,40.76602,-73.98323,Entire home/apt,105,10,4,2019-01-05,0.22,1,19 +19945408,Amazing Condo with the Terrace step at Time Sq/55B,48146336,Irina,Manhattan,Hell's Kitchen,40.76245,-73.99235,Entire home/apt,160,30,4,2019-04-30,0.32,20,339 +19945772,Kensington/Ditmas Park Single family home,16532782,Derek,Brooklyn,Kensington,40.64206,-73.97172,Entire home/apt,160,6,0,,,1,0 +19945811,Spacious & Serene in the Heart of Brooklyn Heights,8026588,Anne,Brooklyn,Brooklyn Heights,40.69425,-73.99503,Entire home/apt,200,3,7,2018-09-03,0.31,1,0 +19946195,BK Master bedroom with King sized bed,141359133,Philip,Brooklyn,Park Slope,40.67677,-73.97954,Private room,97,2,54,2019-06-17,2.38,1,85 +19946965,Comfortable PRIVATE ROOM in a great location,62710779,Husain,Manhattan,Upper West Side,40.79982,-73.96411,Private room,89,4,1,2017-08-03,0.04,1,0 +19948170,Quiet Rare Superb West Village Apartment.,136300221,J,Manhattan,West Village,40.73319,-74.00435,Entire home/apt,225,10,8,2018-12-03,0.52,1,90 +19948618,Amazing studio step away from Time Square/54B,48146336,Irina,Manhattan,Hell's Kitchen,40.76309,-73.99214,Entire home/apt,130,30,7,2019-06-29,0.34,20,311 +19948995,Bright Bedroom in Brooklyn Home,59875550,Liana,Brooklyn,Williamsburg,40.71493,-73.95995,Private room,50,14,1,2018-01-23,0.06,1,0 +19949135,"Luxury condo, full floor - Master w/lvg rm+ 2 ba!",75967547,Kristin,Manhattan,Harlem,40.80419,-73.95473,Private room,125,1,19,2018-11-11,0.80,2,0 +19949138,Classic Artist Loft,16596728,Josh,Brooklyn,Columbia St,40.68626,-74.00141,Entire home/apt,149,4,9,2019-06-26,0.38,1,74 +19949310,Brooklyn Basement,112186372,Kinser,Brooklyn,Bedford-Stuyvesant,40.68322,-73.91702,Shared room,200,1,1,2017-09-02,0.04,1,179 +19949403,"Sunny, Spacious Brooklyn Room & Private Backyard",4685815,Marino,Brooklyn,Williamsburg,40.71015,-73.955,Private room,60,7,1,2017-08-20,0.04,1,0 +19949634,Dupont Duplex,4109954,Jason,Brooklyn,Greenpoint,40.73636,-73.95797,Entire home/apt,200,2,11,2019-07-03,0.77,1,0 +19950255,Sunny Private Room in Harlem,91002349,Analisa,Manhattan,Harlem,40.82788,-73.94835,Shared room,65,5,0,,,1,0 +19950630,The Heart of Harlem,32153139,Michelle,Manhattan,East Harlem,40.80472,-73.94077,Private room,55,3,2,2017-08-09,0.09,2,0 +19951170,Charming Modern Apartment,35387196,Kizzie,Brooklyn,Crown Heights,40.67233,-73.93998,Entire home/apt,78,7,3,2019-05-27,0.17,4,237 +19951242,Luxury Williamsburg with Panoramic City Views,202362,Liad,Brooklyn,Williamsburg,40.7191,-73.9617,Entire home/apt,275,5,3,2017-12-05,0.15,1,0 +19951265,Room in lovely loft with waterfront view,2971336,Alain,Brooklyn,Williamsburg,40.71797,-73.96628,Private room,140,10,5,2018-01-04,0.21,2,0 +19951620,Furnished Historical Townhouse,6208391,Robin,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96035,Entire home/apt,214,5,37,2019-05-29,1.57,1,211 +19951681,"Great apartment , Astoria , NYC .",40008714,Vladimir,Queens,Astoria,40.76254,-73.91533,Private room,65,1,5,2019-02-26,0.56,1,328 +19952226,Bright Airy Spacious Brooklyn Artist's Home,15835115,Shelley,Brooklyn,Flatbush,40.65447,-73.95631,Entire home/apt,75,2,3,2017-09-11,0.13,1,0 +19952747,BEAUTIFUL PRIVATE ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77148,-73.90545,Private room,45,1,72,2019-06-15,3.13,8,296 +19952847,Spacious 2 BDR APT BROOKLYN Sleeps 8!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64323,-73.95086,Entire home/apt,95,2,43,2019-07-01,1.97,2,338 +19954367,"Large, New, Modern Uptown Room - 2",9864136,Anthony,Manhattan,Harlem,40.82086,-73.94486,Private room,65,30,0,,,26,188 +19954751,Fascinating Modern Apartment - 5 mins Time Square,131712054,Edison,Manhattan,Hell's Kitchen,40.76122,-73.99129,Private room,111,1,136,2019-07-06,5.86,1,51 +19958302,luxury for a discount,34447878,Elaine,Manhattan,Civic Center,40.71365,-74.0053,Entire home/apt,210,5,6,2018-09-22,0.26,1,0 +19960443,LARGE BEDROOM WITH ROOFTOP/WASHER/DRYER,140821239,Masaki,Manhattan,Upper East Side,40.7817,-73.94731,Private room,100,2,25,2018-05-02,1.09,1,0 +19960507,Huge Loft Space in Red Hook,1772509,Jane,Brooklyn,Red Hook,40.67798,-74.00787,Entire home/apt,145,1,11,2019-05-25,0.49,2,333 +19960519,Heart of Bushwick,18604887,Bree,Brooklyn,Bushwick,40.70338,-73.91879,Entire home/apt,50,15,3,2017-11-24,0.13,1,7 +19961187,"Sunny, Bright, & VERY Spacious! 2BR-Gramercy Park",30849492,Margaret,Manhattan,Gramercy,40.73502,-73.98612,Entire home/apt,280,3,0,,,1,0 +19963641,Bright kid-friendly apartment near the Navy Yard.,2073124,Chris,Brooklyn,Fort Greene,40.69653,-73.97439,Entire home/apt,136,2,2,2017-08-28,0.09,1,0 +19963733,"Prewar duplex, 3 bedrooms, minutes from everything",93355703,Katherine,Brooklyn,Brooklyn Heights,40.69677,-73.99599,Entire home/apt,585,3,10,2019-02-18,0.42,1,225 +19964062,Brand New Luxury 1BR 12 Mins from midtown,141540856,Dan,Queens,Astoria,40.7698,-73.92009,Entire home/apt,200,2,1,2017-11-24,0.05,1,0 +19964070,Artsy 1BR/1BA high wood ceilings steps from water,2036797,Catinca,Brooklyn,Williamsburg,40.71236,-73.96668,Entire home/apt,180,3,20,2019-05-08,0.91,1,0 +19964109,Hendrix Street Gem Rm #2,105878573,Tonisha,Brooklyn,East New York,40.66725,-73.88876,Private room,40,1,56,2019-06-23,2.37,5,37 +19964262,Hendrix Street Gem Rm #3,105878573,Tonisha,Brooklyn,East New York,40.66535,-73.8891,Private room,40,1,104,2019-06-22,4.53,5,36 +19964343,Brooklyn Apartment,141544900,Cathy,Brooklyn,East Flatbush,40.6455,-73.9444,Entire home/apt,56,1,82,2019-05-12,3.64,1,22 +19964849,Modern large 2 bedroom steps from Central Park!,45752004,Rebecca,Manhattan,Upper East Side,40.77285,-73.95566,Entire home/apt,795,2,9,2019-07-02,0.42,1,268 +19965684,Lovely 1st floor studio,141557712,Isa,Queens,Astoria,40.76531,-73.92413,Entire home/apt,135,2,19,2019-07-01,0.81,1,310 +19966023,Spacious 2 Bedroom at the heart of East Village,8977208,Rachel,Manhattan,East Village,40.72897,-73.9811,Entire home/apt,130,30,0,,,1,186 +19967115,Large 1st floor apartment at fantastic location!,12652679,Madhu,Queens,Astoria,40.76297,-73.91696,Entire home/apt,80,2,13,2019-05-23,0.56,1,0 +19967297,The Oasis 1,33106693,Elena,Manhattan,Harlem,40.82329,-73.95184,Private room,110,3,0,,,3,64 +19967657,Sanjay's Art Lab - Prime LES - Quintessential NYC,16549535,Sanjay,Manhattan,Lower East Side,40.71624,-73.98935,Entire home/apt,50,1,6,2018-09-28,0.28,1,0 +19968221,"Artist's Townhouse w/ garden, grill -near subway",184913,John,Brooklyn,Gowanus,40.68192,-73.9908,Entire home/apt,298,3,3,2019-05-27,0.36,1,192 +19968388,Beautiful Bedroom in Washington Heights,38592785,Caitlyn,Manhattan,Washington Heights,40.84218,-73.93676,Private room,55,2,15,2019-07-06,0.76,1,0 +19968961,Bedroom and own bathroom in Chelsea apartment,6393112,Katie,Manhattan,Chelsea,40.74286,-74.001,Private room,110,2,0,,,1,0 +19969013,Downtown Brooklyn Condo,71841088,Pristine Posh,Brooklyn,Bedford-Stuyvesant,40.69235,-73.94888,Entire home/apt,145,2,0,,,1,0 +19969420,Bright Private Bedroom by Wall Street,27186594,Glenna,Manhattan,Financial District,40.70743,-74.00785,Private room,87,2,10,2019-05-05,0.43,1,0 +19969461,"Brooklyn Amazing Deal! Bright, Cozy Apartment",14833285,Anna,Brooklyn,Sheepshead Bay,40.5967,-73.96041,Entire home/apt,100,3,23,2018-11-11,0.99,1,2 +19970186,Quiet and Cozy | BEST LOCATION in NYC,10787007,Catherine,Manhattan,Gramercy,40.7347,-73.98665,Entire home/apt,125,1,54,2018-11-28,2.30,1,0 +19970216,Cozy 1 bdrm apt in the heart of hippest LES hood,1902239,Bojana,Manhattan,Lower East Side,40.713,-73.98986,Entire home/apt,115,3,69,2019-06-23,2.92,1,18 +19970249,Private room in the heart of Williamsburg,54769760,Irene,Brooklyn,Williamsburg,40.71649,-73.96176,Private room,50,5,1,2019-06-22,1,1,11 +19970350,Newly renovated clean and Cozy Private room,15344412,Abe,Staten Island,New Springville,40.58085,-74.15443,Private room,43,10,0,,,3,89 +19970764,"BRAND NEW MODERN 2BR 1BA,HEART OF LOWER EAST SIDE!",22129776,Ali,Manhattan,Lower East Side,40.72337,-73.99057,Entire home/apt,449,1,3,2019-05-05,0.63,3,352 +19974905,Esteem's Place,141615596,Esteem,Bronx,Parkchester,40.83805,-73.85867,Shared room,26,1,18,2019-04-23,0.78,2,342 +19975703,Large bedroom near trains & park,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66084,-73.96001,Private room,38,20,0,,,2,7 +19977131,Room in artist loft with waterfront view,2971336,Alain,Brooklyn,Williamsburg,40.71634,-73.96469,Private room,110,2,5,2017-09-01,0.21,2,0 +19979480,1 Room in Bushwick *Females only*,26172284,Brooke,Brooklyn,Bushwick,40.68875,-73.90943,Private room,32,5,0,,,1,0 +19979771,Sun-Filled Apartment with Excellent Location,141700715,Danielle,Brooklyn,Fort Greene,40.68552,-73.97167,Entire home/apt,149,5,1,2017-08-05,0.04,1,0 +19979892,"Sheepshead Bay, 1-bdr apartment. Close to all!",138913479,Svetlana,Brooklyn,Sheepshead Bay,40.58745,-73.95709,Entire home/apt,130,2,41,2019-07-06,1.77,1,142 +19979903,Jolly Bedroom! 3 minute walk to Astoria Ditmars!,135845936,Claire,Queens,Ditmars Steinway,40.77233,-73.911,Private room,75,3,2,2017-12-04,0.09,1,0 +19980048,Sun soaked apartment in the Friends Building,15200154,Casey,Manhattan,West Village,40.73275,-74.006,Entire home/apt,350,2,2,2017-08-13,0.09,1,0 +19980277,"Sunny Fort Greene room with A/C, high ceilings",10995969,Adam,Brooklyn,Fort Greene,40.69401,-73.973,Private room,62,2,3,2017-08-24,0.13,1,0 +19980512,Bohemian cozy,19134080,Raschell,Manhattan,East Village,40.72795,-73.9831,Entire home/apt,110,3,3,2017-09-04,0.13,1,0 +19981092,Private Bedroom in Luxury Uptown Condo,29568720,Susanne,Manhattan,Washington Heights,40.85263,-73.9352,Private room,80,1,7,2017-10-31,0.31,1,0 +19981294,Great Room on Kips Bay,132080218,George,Manhattan,Kips Bay,40.74023,-73.97847,Private room,120,1,14,2018-01-01,0.59,1,0 +19981584,Sunny loft in heart of Crown Heights,75819473,Cathy,Brooklyn,Crown Heights,40.67295,-73.95646,Private room,57,1,4,2017-09-01,0.17,1,0 +19981649,"Big, Bright, Beautiful Private Apartment",10286572,Erik,Manhattan,East Village,40.72697,-73.98509,Entire home/apt,239,2,13,2019-04-24,0.68,1,3 +19981671,DaDukes Dreams,139879568,Alberto,Queens,Long Island City,40.76626,-73.94058,Private room,84,1,70,2019-05-29,3.12,6,321 +19981877,Private room (bright and clean) Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80266,-73.93904,Private room,44,30,3,2019-05-26,0.19,4,153 +19981889,Huge Private Bedroom in Harlem,44194869,Kyle,Manhattan,Harlem,40.81793,-73.94149,Private room,100,1,62,2019-06-14,2.79,1,58 +19982386,"Rare Find: SUNNY, LARGE DUPLEX Chelsea 2BR 2BA",19413375,Victoria,Manhattan,Chelsea,40.74279,-74.00193,Entire home/apt,500,6,40,2019-06-19,1.70,1,276 +19983575,Private long room in Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80257,-73.93987,Private room,46,30,5,2019-06-30,0.26,4,220 +19984134,Beautifully Decorated 1 Bedroom w/ Large Terrace,5962328,Alan,Queens,Flushing,40.76112,-73.82327,Entire home/apt,140,30,3,2018-08-11,0.14,15,244 +19984925,Private room (cozy and clean) Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80356,-73.94034,Private room,41,30,5,2019-05-04,0.24,4,211 +19985199,Workspace Room 2 - 2,9864136,Anthony,Brooklyn,Bushwick,40.68507,-73.91329,Private room,35,2,5,2018-09-18,0.21,26,311 +19985425,Newly Renovated/Private Apt/1-br by Park and Metro,75218527,Jonah_Soleil,Brooklyn,Crown Heights,40.66912,-73.94337,Entire home/apt,114,1,72,2019-06-19,3.02,1,140 +19986637,Lovely City Retreat,33527075,Brooke,Queens,Elmhurst,40.74547,-73.87746,Private room,57,2,103,2019-07-02,4.34,2,3 +19991488,Private comfortable room in BK close to Manhattan,46066063,Mungyu,Brooklyn,Bedford-Stuyvesant,40.69287,-73.92939,Private room,40,4,13,2019-06-08,0.63,2,188 +19993084,Large Room With 2 Queen Beds Close to Metro,141844749,Garland,Brooklyn,Bedford-Stuyvesant,40.68925,-73.95452,Private room,60,2,65,2019-06-18,2.78,1,58 +19993470,Classic Manhattan Loft Apartment,114867228,Peter And Helen,Manhattan,NoHo,40.73,-73.99253,Entire home/apt,137,14,17,2019-06-18,0.83,1,233 +19994533,Bright & Beautiful 1BR Apartment in East Village,2491844,Maurizio,Manhattan,East Village,40.7248,-73.98774,Entire home/apt,150,5,1,2018-07-16,0.08,1,5 +19996712,"Light, Large Private Bedroom in 1865 townhouse",4077993,Raquel,Brooklyn,Crown Heights,40.6758,-73.9415,Private room,80,5,7,2018-09-28,0.51,2,2 +19996830,Large sunny room near park & trains,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.95894,Private room,33,10,3,2019-06-11,0.13,2,63 +19997141,5 min subway 20 to city Cozy Value Room near SUNY,134762059,Renee,Brooklyn,East Flatbush,40.6534,-73.9439,Private room,50,1,24,2018-10-28,1.12,2,0 +19997686,Brand New Williamsburg Room!,14757938,Georgie,Brooklyn,Greenpoint,40.72612,-73.95419,Private room,65,1,0,,,1,0 +19998416,Brooklyn Base Camp,1780076,Ashleigh,Brooklyn,Crown Heights,40.67513,-73.95714,Private room,55,2,13,2017-10-21,0.56,2,0 +19998620,Basic Overnight Stay by Subway w/ free parking,116100517,David,Queens,Flushing,40.75553,-73.83307,Entire home/apt,39,1,2,2017-07-29,0.08,1,0 +19998689,Sunny & Cozy Room in Top Floor Apt with Terrace,2596096,Aleksandar,Queens,Astoria,40.75705,-73.91459,Private room,150,2,4,2019-03-09,0.17,1,0 +19998918,Prime Upper East Side Studio,141910666,Jennifer,Manhattan,Upper East Side,40.77058,-73.95666,Entire home/apt,197,4,11,2019-05-31,0.47,1,16 +19999527,★ Comfy Couple's Getaway ★ Walk/Transit Score 85+,131697576,Anisha,Bronx,East Morrisania,40.83384,-73.8863,Private room,65,2,91,2019-06-22,3.82,4,325 +19999906,"MARTIAL LOFT 3: REDEMPTION (downstairs, 3rd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69627,-73.92265,Private room,50,3,0,,,5,0 +20000184,"Master Bedroom with Own Bathroom, near subway",102482048,Susy,Brooklyn,Bushwick,40.68174,-73.90733,Private room,50,2,28,2019-04-22,1.22,4,341 +20000260,"Bright, Plant-Filled 2 Bedroom in Prospect Park",16091224,Jesse,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.96094,Entire home/apt,130,3,1,2017-08-20,0.04,2,0 +20000290,Unique Place in New York City,361155,Alexandra,Brooklyn,Flatbush,40.64063,-73.96348,Entire home/apt,200,4,17,2019-06-17,0.78,1,95 +20000421,Huge room at an affordable price,64018594,Daphne,Manhattan,Harlem,40.80895,-73.95266,Private room,45,3,3,2017-08-16,0.13,2,0 +20000820,Sunny and Spacious private bedroom,27527984,S,Brooklyn,Bushwick,40.69613,-73.90768,Private room,66,1,2,2017-10-08,0.09,1,0 +20001006,Spacious Room in Modern Duplex Loft,141937671,TamiandIvana,Brooklyn,Crown Heights,40.67051,-73.95166,Private room,60,2,48,2019-06-14,2.04,1,328 +20001157,CROWN HEIGHTS GUEST HOUSE 2R2L3R3L,74541079,Abraham,Brooklyn,Crown Heights,40.67077,-73.93618,Entire home/apt,399,4,5,2019-03-24,0.39,9,65 +20002262,Tays LES sanctuary,34382987,Taylor,Manhattan,East Village,40.72384,-73.98407,Private room,90,5,0,,,1,0 +20004647,JnK BnB,138635224,Josh,Manhattan,Washington Heights,40.85801,-73.93113,Private room,33,1,0,,,2,0 +20005568,Private Room with 2 Beds in Hamilton Heights,63986235,Drew,Manhattan,Harlem,40.82952,-73.95064,Private room,75,4,3,2017-09-17,0.13,1,0 +20006934,2 bedroom next to Times Square & Central Park,6137321,Joseph,Manhattan,Hell's Kitchen,40.76621,-73.98516,Entire home/apt,279,1,130,2019-07-04,5.73,1,174 +20007899,"Brooklyn 1 Bedroom w/ AC, laundry and roof!",3554481,Jessica,Brooklyn,Bedford-Stuyvesant,40.69639,-73.9343,Entire home/apt,120,4,0,,,1,0 +20008527,Large private room in Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80305,-73.9403,Private room,51,30,2,2019-05-20,0.38,4,262 +20009122,HEART of MANHATTAN,117287,Lara,Manhattan,Hell's Kitchen,40.76764,-73.98468,Private room,130,2,3,2018-05-20,0.19,3,239 +20010930,Spacious & Quiet 1 Bedroom,18987217,Griffin,Queens,Ridgewood,40.70792,-73.89808,Entire home/apt,90,4,0,,,1,0 +20011434,Hank's,28825500,Matt,Brooklyn,Williamsburg,40.71088,-73.95099,Private room,100,1,0,,,1,0 +20011863,$47/day Private ROOM! BETTER THAN HOSTEL! In Bklyn,14157435,Sherry,Brooklyn,Flatlands,40.62567,-73.93784,Private room,47,1,36,2019-07-05,1.52,1,59 +20012263,Bright Large Bedroom in Heart of Bed Stuy w/Garden,17591452,Xavier,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94452,Private room,85,3,14,2018-10-30,0.61,1,0 +20013255,Lavish Private bedroom by central park,115228513,Aly,Manhattan,Upper West Side,40.80263,-73.96458,Private room,99,1,90,2019-05-30,3.80,2,331 +20013291,Cozy studio in the heart of Manhattan,88022215,Daria,Manhattan,Murray Hill,40.74564,-73.97593,Entire home/apt,120,5,0,,,1,0 +20013531,"MARTIAL LOFT 3: REDEMPTION (downstairs, 1st room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69682,-73.92318,Private room,60,3,6,2019-05-19,0.48,5,0 +20014072,Room for one at Stella's place,15617507,Stella,Bronx,Morris Park,40.85145,-73.86129,Private room,29,1,53,2019-01-19,2.65,3,137 +20014141,UWS. Beautiful 1brm apartment w/ king size bed,54498900,Svetlana,Manhattan,Upper West Side,40.79271,-73.97272,Entire home/apt,170,7,4,2018-01-01,0.17,1,0 +20014534,Minimalist Private Bedroomm - Clean/Spacious/Airy,43010827,Joshua,Brooklyn,Williamsburg,40.71385,-73.93739,Private room,45,3,5,2018-07-24,0.21,1,0 +20014879,Spacious Furnished Room steps away from Cloisters!,99380211,Rachel,Manhattan,Inwood,40.86372,-73.92789,Private room,70,1,1,2019-07-02,1,1,132 +20014895,"Trendy, Bright and spacious 1BR apt East Village",81140056,Anne-Charlotte,Manhattan,East Village,40.72338,-73.98293,Entire home/apt,198,7,9,2019-01-02,0.38,1,0 +20015002,Bright and Beautiful Pre-War Home in Bushwick,17529252,Johnny,Brooklyn,Bushwick,40.70447,-73.91559,Private room,87,2,1,2017-09-04,0.04,1,0 +20015668,Pleasant 1 bedroom apartment in Harlem Brownstone,118902541,Evelyn,Manhattan,Harlem,40.82755,-73.945,Entire home/apt,80,1,0,,,1,0 +20015736,"Large, Quiet Apartment With Easy Subway Access!",133926727,Victor,Manhattan,Harlem,40.82278,-73.94199,Entire home/apt,250,1,21,2018-01-14,0.89,2,0 +20016090,Comfort of home in the center of it all!,94543144,Sara,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9449,Entire home/apt,152,2,72,2019-06-29,3.11,1,146 +20016469,Quaint Nolita Apartment,45374780,Zal,Manhattan,Little Italy,40.72008,-73.99612,Private room,95,3,0,,,1,0 +20016493,"ART LOFT/HOME: DINNERS, GATHERINGS, PHOTO",142118455,Allan,Manhattan,NoHo,40.7256,-73.99487,Entire home/apt,1795,1,38,2019-06-21,1.65,1,116 +20016975,Rustic 1 Bedroom with Exposed Brick,55939980,Katy,Manhattan,Midtown,40.75685,-73.96388,Entire home/apt,210,2,4,2018-12-30,0.22,1,0 +20017121,Spacious 2 bedroom apartment,82119233,Jenny,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95257,Entire home/apt,135,4,68,2019-06-30,2.97,2,247 +20017161,Amazing location across from Park and Subway,602131,Molly,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.96169,Entire home/apt,69,3,11,2019-06-27,0.46,1,7 +20017584,Large Room with Private Entrance Close to Metro,142133001,Garland,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95514,Private room,55,2,53,2019-06-23,2.31,1,88 +20017636,"LES 1 Bedroom. Cozy, Sunny, Modular",15520689,Laura,Manhattan,Lower East Side,40.71692,-73.98321,Entire home/apt,90,26,1,2017-08-31,0.04,1,0 +20017753,Super Clean Room For 2 - Close To Metro,142135334,Garland,Brooklyn,Bedford-Stuyvesant,40.68985,-73.95317,Private room,45,5,38,2019-06-13,2.08,1,79 +20018667,Midwest Oasis in Kings County,23587319,Wes,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93578,Entire home/apt,80,2,3,2017-11-10,0.14,1,0 +20022549,"Comfy “sofa bed"" next to LGA AIRPORT and #7 train",32446721,Veronica,Queens,Corona,40.74905,-73.86499,Shared room,37,1,26,2019-06-30,1.10,6,365 +20025456,"700sqft Modern, Brand New Studio in Central Harlem",5639390,Sai Mun,Manhattan,Harlem,40.8077,-73.94345,Entire home/apt,130,4,0,,,1,0 +20026248,Beach House,37318968,V Joe,Queens,Arverne,40.59082,-73.80328,Entire home/apt,275,2,24,2019-06-23,1.02,1,335 +20026598,Bushwick gem with private garden patio.,32446918,Michele,Brooklyn,Bushwick,40.70451,-73.92062,Entire home/apt,150,4,32,2019-06-25,1.46,1,92 +20026998,1 Bed garden apt in Classic Brownstone - sleeps4,1748382,Kenna,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93299,Entire home/apt,200,2,39,2019-06-30,1.69,1,253 +20028846,"Extremely Large, Beautiful 2 Bedroom -Union Square",142240474,Isabella,Manhattan,Chelsea,40.73726,-73.9928,Entire home/apt,230,5,5,2019-06-20,0.21,1,5 +20028865,Beautiful Bright Bushwick Cove,39939372,Parish,Brooklyn,Bushwick,40.69851,-73.9266,Private room,65,20,0,,,1,0 +20029021,Beautiful Apartment in Brooklyn!,12431341,Klaudia,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94383,Entire home/apt,149,3,3,2018-10-21,0.14,1,0 +20029169,"Labor Day in NYC! Renovated Luxury Apt, Midtown",21060836,Laura,Manhattan,Midtown,40.75207,-73.97201,Entire home/apt,690,3,1,2017-09-04,0.04,2,0 +20029501,Furnished Upper East Side Room!,142246533,Kat,Manhattan,Upper East Side,40.76989,-73.94961,Private room,53,12,1,2017-08-16,0.04,1,0 +20030489,Private room+bath in Dumbo apartment,31336910,Naa Adjeley,Brooklyn,Vinegar Hill,40.69951,-73.98511,Private room,245,3,0,,,1,0 +20030871,Williamsburg Bedroom w/Private Terrace!,1822729,Derek,Brooklyn,Williamsburg,40.71078,-73.96161,Private room,70,4,33,2019-03-05,1.49,2,0 +20031027,Beautiful + Unique + Large 1BD in East Village,6916278,Valentina,Manhattan,East Village,40.72324,-73.98255,Entire home/apt,275,2,23,2019-06-09,0.99,1,0 +20031317,Cozy 1 bedroom Apt Morningside/Harlem,142263776,Emilie,Manhattan,Harlem,40.80389,-73.95443,Entire home/apt,113,5,0,,,1,0 +20031768,Cozy Bedroom in Charming Astoria,4777135,Emily,Queens,Long Island City,40.75955,-73.9336,Private room,56,2,19,2018-01-27,0.81,1,0 +20031965,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,142268790,David,Queens,Forest Hills,40.73386,-73.85202,Entire home/apt,268,3,4,2019-06-16,0.19,2,154 +20032886,Private Room & Living Room in shared Bushwick Apt,16329486,Krysta,Brooklyn,Bushwick,40.70266,-73.92153,Private room,75,12,1,2017-12-14,0.05,1,0 +20033157,"Large, bright bdr in a luxury bdg in Mid East",57328653,Esther,Manhattan,Midtown,40.75734,-73.96429,Private room,82,15,3,2019-04-29,1.02,2,0 +20033434,Cozy Room in Beautiful Brooklyn,31480299,Rachel,Brooklyn,Fort Greene,40.68895,-73.96902,Private room,65,1,10,2017-11-05,0.45,1,0 +20033770,"Beautiful 1 bedroom apartment in Greenpoint, BK",15899162,Nichole,Brooklyn,Greenpoint,40.73129,-73.95845,Entire home/apt,71,7,10,2018-09-23,0.51,1,0 +20034180,AG's palace 2,121612198,Maura,Brooklyn,Canarsie,40.64351,-73.91406,Private room,89,1,9,2019-05-19,0.38,4,334 +20034244,Two rooms in one. A family friendly neighborhood.,113295877,Jonathan,Staten Island,Tompkinsville,40.63529,-74.09068,Private room,59,3,26,2019-06-22,1.11,3,351 +20034806,"Beautiful, airy bedroom in Williamsburg",75777937,Funmilade,Brooklyn,Williamsburg,40.71558,-73.96171,Private room,50,1,3,2017-08-06,0.13,1,0 +20035466,"Entire 1BD Apartment in Crown Heights, BK",53630880,Cindy,Brooklyn,Crown Heights,40.67619,-73.9532,Entire home/apt,100,5,6,2018-12-31,0.25,1,0 +20035612,Private Room in Central Harlem,59764159,Shakeria,Manhattan,Harlem,40.81254,-73.94204,Private room,55,3,1,2017-08-24,0.04,1,0 +20035645,Basement Studio Apt in a quiet area close to all,142312133,Ella,Queens,Forest Hills,40.73362,-73.84747,Entire home/apt,69,2,51,2019-01-05,2.15,1,0 +20035842,"GIRLS ONLY Romantic, antique, & cozy room",131767309,K,Manhattan,Two Bridges,40.71138,-73.99635,Private room,35,1,2,2018-01-01,0.11,1,0 +20040994,Private room in 3br apt in West Village,29750315,Myles,Manhattan,West Village,40.7331,-74.01022,Private room,108,3,3,2017-08-31,0.13,1,0 +20044214,Home Away from Home,19474504,Zam,Brooklyn,Bedford-Stuyvesant,40.68266,-73.94321,Entire home/apt,100,1,3,2017-09-08,0.13,1,0 +20044802,AG's Palace 3,121612198,Maura,Brooklyn,Canarsie,40.64138,-73.91488,Private room,75,1,11,2019-06-13,0.48,4,347 +20045444,A Lovely getaway apt in upper Manhattan!!,24559370,Gabrielle,Manhattan,Washington Heights,40.85497,-73.93469,Entire home/apt,99,3,11,2018-08-26,0.47,2,0 +20045641,Modern Private Room in Prime Williamsburg!,48851196,Ilya,Brooklyn,Williamsburg,40.71042,-73.94744,Private room,80,25,0,,,1,0 +20047896,Clinton Hill Apartment With Large Private Balcony,27559992,Sarah,Brooklyn,Clinton Hill,40.69394,-73.96918,Entire home/apt,158,2,97,2019-06-19,4.19,1,28 +20048459,Private Room in Bedstuy,41827222,Michael,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95117,Private room,50,1,5,2017-08-25,0.21,2,0 +20048909,Cozy West Village Apartment,14680684,Catherine,Manhattan,West Village,40.73848,-74.00503,Entire home/apt,250,5,5,2018-11-05,0.27,1,0 +20049161,Williamsburg Loft - Private room,2612106,Emil,Brooklyn,Williamsburg,40.71862,-73.94579,Private room,100,5,0,,,1,0 +20049857,Pre-War Brownstone 2 Blocks from Central Park,142442839,Elizabeth,Manhattan,Upper West Side,40.78561,-73.97637,Entire home/apt,299,3,57,2019-06-30,2.57,1,116 +20051059,East Village Gem,16547637,Sarah,Manhattan,East Village,40.72775,-73.98253,Private room,65,2,1,2017-08-15,0.04,1,0 +20051114,Steps to Central Park: spacious and cozy UWS 1BR,9851499,Diana,Manhattan,Upper West Side,40.78284,-73.97203,Entire home/apt,175,1,0,,,1,0 +20052107,Cozy 1BD Apartment in Brooklyn Prospect Lefferts,9215302,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65558,-73.956,Entire home/apt,90,2,6,2017-08-31,0.26,1,0 +20053253,Luxurious apartment-private bed & private bathroom,74314960,Cristina,Brooklyn,Bedford-Stuyvesant,40.69182,-73.9436,Private room,120,2,82,2019-06-23,3.52,2,0 +20053839,Greenpoint Guesthouse with 2 Private Patios,142483517,Andy,Brooklyn,Greenpoint,40.72854,-73.95627,Entire home/apt,150,3,27,2019-06-13,1.22,1,25 +20054293,Cozy spacious room in LIC with backyard and bath,63235915,Shen,Queens,Long Island City,40.76024,-73.94091,Private room,61,3,1,2017-08-01,0.04,1,0 +20054294,Sunny room in lovely modern building,11307033,Devon,Manhattan,East Village,40.72408,-73.97753,Private room,175,1,68,2019-05-12,2.89,2,22 +20054400,"Clean, Spacious Place on a Tree-Lined Street",142078178,Melody,Brooklyn,Crown Heights,40.66953,-73.9493,Entire home/apt,150,2,1,2017-07-30,0.04,1,0 +20054438,Bright Bedroom,142486709,Antonia,Queens,Astoria,40.75815,-73.91143,Private room,80,3,35,2019-06-08,1.50,1,154 +20055242,Loring Estate,142465460,Yvette,Brooklyn,East New York,40.66645,-73.85923,Entire home/apt,100,14,27,2019-06-16,1.67,1,81 +20055311,Cozy Basement Apartment near RUMC Hospital,318899,Krystal,Staten Island,West Brighton,40.63471,-74.10942,Entire home/apt,75,1,9,2019-06-07,0.45,1,175 +20055581,Wingate Manhattan Midtown (#2),139259102,Celeste,Manhattan,Midtown,40.75211,-73.99228,Private room,500,1,1,2018-01-01,0.05,2,0 +20055786,Fully equipped apartment on perfect location,142502018,Steve,Queens,Elmhurst,40.7355,-73.88131,Entire home/apt,115,7,4,2018-09-19,0.18,1,0 +20055944,Cozy centrally located room in the East village,3666809,Mercy,Manhattan,East Village,40.72962,-73.98449,Private room,150,1,6,2018-04-09,0.36,1,0 +20056034,Charming studio in the heart of Astoria,27468780,Maja,Queens,Astoria,40.76189,-73.92332,Entire home/apt,110,4,6,2019-06-11,0.30,1,0 +20056328,Beautiful 1 bedroom near Central Park/Times Square,3006848,Joannie,Manhattan,Hell's Kitchen,40.76494,-73.98467,Private room,160,2,2,2017-08-20,0.09,1,0 +20056579,"Beautiful, Spacious 1-Bedroom in the East Village",142516320,Saimon,Manhattan,East Village,40.73001,-73.98411,Entire home/apt,230,5,1,2018-09-28,0.11,1,0 +20056846,Sunny and Spacious Apartment in Astoria,3841371,Catherine,Queens,Astoria,40.7701,-73.9297,Entire home/apt,120,2,2,2017-08-26,0.09,1,0 +20057317,Cozy well decorated/located studio in Astoria,60370951,Emanuella,Queens,Astoria,40.77297,-73.92253,Entire home/apt,110,2,33,2019-06-20,1.49,2,305 +20057450,"Single Apt,Near DNR train,Fast travel to Manhatan",135731332,Sky,Brooklyn,Sunset Park,40.65004,-74.00108,Entire home/apt,80,3,46,2019-06-16,2.19,1,195 +20057851,**Irresistible Jewel**,14408045,Alex,Manhattan,Murray Hill,40.74742,-73.9775,Entire home/apt,199,3,27,2018-10-26,1.21,1,0 +20058138,"Large, quiet luxury home in Manhattan",134284480,Tiiu,Manhattan,Hell's Kitchen,40.75955,-73.99738,Entire home/apt,280,3,92,2019-06-27,4.13,1,69 +20066576,1 Bedroom in the heart of the Lower East Side,56256469,Steven,Manhattan,Lower East Side,40.7191,-73.98431,Entire home/apt,140,3,4,2017-09-04,0.17,1,0 +20067361,"Private bedroom available in Bed Stuy, Brooklyn",31883068,Will,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94829,Private room,50,7,8,2019-04-16,0.34,1,188 +20070087,Private Bedstuy Bedroom,105075265,Richard,Brooklyn,Bedford-Stuyvesant,40.69512,-73.95111,Private room,40,1,0,,,1,0 +20070187,Artist's Abode Across from Prospect Park,10595388,Victoria,Brooklyn,Crown Heights,40.67201,-73.9593,Entire home/apt,200,1,25,2019-07-01,1.07,1,2 +20070296,"Stunning Brooklyn Heights House, Manhattan 5 mins",5173627,Tara,Brooklyn,Brooklyn Heights,40.70136,-73.99372,Entire home/apt,1095,2,24,2019-03-24,1.01,1,240 +20070549,"Bklyn private room and private bathrm by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64293,-73.98043,Private room,56,1,58,2019-01-01,2.48,11,16 +20071095,Residential Area in the heart of Queens,62258958,Kusang,Queens,East Elmhurst,40.75704,-73.89006,Private room,80,1,27,2018-12-18,1.19,1,95 +20071750,Huge duplex with yard - 15 mins to Manhattan!,3309814,Monica,Brooklyn,Bushwick,40.69983,-73.92814,Entire home/apt,154,3,0,,,1,0 +20071791,The real Brooklyn experience in Greenpoint!,6026276,Janelle,Brooklyn,Greenpoint,40.73768,-73.95741,Private room,63,7,0,,,1,0 +20073605,1 bedroom in a charming and cozy apartment in bk.,23299635,Illyse,Brooklyn,Williamsburg,40.71181,-73.95235,Private room,125,2,0,,,1,0 +20073959,Crown Heights Guest House 2L,74541079,Abraham,Brooklyn,Crown Heights,40.66966,-73.93719,Entire home/apt,99,3,39,2019-07-07,1.72,9,91 +20073965,Neat Upper East apartment just for you,33683624,Jorge,Manhattan,Upper East Side,40.77699,-73.9524,Entire home/apt,265,1,0,,,1,0 +20074223,Green Oasis in East Williamsburg,38250741,Erin,Brooklyn,Williamsburg,40.70694,-73.94511,Private room,65,2,2,2017-10-16,0.09,1,0 +20075554,CROWN HEIGHTS GUEST HOUSE 2L2R,74541079,Abraham,Brooklyn,Crown Heights,40.66888,-73.93638,Entire home/apt,199,3,5,2019-06-09,0.42,9,72 +20075580,Kew gardens,5016524,Darshan,Queens,Forest Hills,40.71395,-73.83186,Private room,45,1,2,2017-08-12,0.09,1,0 +20076056,Cozy Room in Upper-East Side Tower,67127998,Mark,Manhattan,Upper East Side,40.7811,-73.95003,Private room,69,20,3,2018-06-23,0.13,1,0 +20082404,Charming room in mid-century comfort and quiet.,4391397,Eva,Brooklyn,Windsor Terrace,40.65814,-73.98495,Private room,65,1,35,2019-07-01,1.57,2,130 +20084595,Upper West Side Town House Apartment,15547192,Bryan,Manhattan,Upper West Side,40.7886,-73.97088,Entire home/apt,82,7,0,,,1,0 +20085006,Bright & Beautiful Brooklyn Boudoir and more! ☺,142590597,Joica,Brooklyn,East New York,40.67296,-73.87435,Entire home/apt,249,1,7,2019-05-21,0.38,6,177 +20085460,Beautiful large 2 bed apartment near Columbia U,21594748,Gabriel,Manhattan,Morningside Heights,40.807,-73.96452,Entire home/apt,220,2,6,2018-03-19,0.27,2,0 +20085462,Sunny 1 Bedroom in heart of Brooklyn!,89691323,Felipe,Brooklyn,Crown Heights,40.67229,-73.94282,Entire home/apt,95,5,3,2018-05-03,0.14,1,20 +20085472,Prime Bushwick location w/ washer/dryer + rooftop!,26558906,Emily,Brooklyn,Bushwick,40.70252,-73.91447,Private room,34,3,7,2019-07-03,0.35,1,71 +20086190,Fabulous and peaceful retreat in Brooklyn,28695008,Danielle,Brooklyn,Bedford-Stuyvesant,40.68838,-73.95649,Entire home/apt,190,5,24,2018-12-08,1.11,1,215 +20086201,Great East Village One Bedroom,32057251,Alexander,Manhattan,East Village,40.72982,-73.98178,Entire home/apt,160,2,0,,,1,0 +20087455,The Dream Room (Private Room),142812843,Eugene,Manhattan,East Harlem,40.78958,-73.93792,Private room,85,1,10,2017-12-03,0.43,2,0 +20089288,"#4 Cozy And Bright Room, 30 Minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68863,-73.8706,Private room,38,30,43,2019-06-01,1.87,6,193 +20089471,Bargain! Amazing location Orchard St in the LES,2174446,Tessa,Manhattan,Chinatown,40.71674,-73.99079,Private room,58,3,1,2017-08-20,0.04,1,0 +20089597,Time Square Private Studio,51445545,Jake,Manhattan,Midtown,40.75347,-73.98567,Entire home/apt,179,2,117,2019-06-20,4.94,1,235 +20089645,近JFK 机场和地铁,107272884,Lynn L,Queens,Richmond Hill,40.69612,-73.84699,Private room,40,1,56,2019-05-26,2.37,4,164 +20089962,"Cozy room weekly , 35 minutes far to Manhattan",142851497,Selçuk,Brooklyn,Sheepshead Bay,40.58632,-73.95335,Private room,45,7,34,2019-05-23,1.47,1,36 +20090389,Studio at Central Park North with fast/easy travel everywhere in NYC!,142855897,Lydia,Manhattan,East Harlem,40.79496,-73.94882,Entire home/apt,150,4,7,2018-09-30,0.56,1,0 +20091705,2 bedroom 1 bath in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7647,-73.99391,Entire home/apt,200,30,2,2017-10-27,0.09,31,359 +20091873,Chic Union Square One Bedroom,52530136,James,Manhattan,Gramercy,40.73409,-73.98703,Entire home/apt,125,3,5,2018-02-19,0.23,1,0 +20092176,Large suite with private bathroom (15 min to city),85330,Jean,Queens,Forest Hills,40.7118,-73.85285,Private room,50,3,30,2019-07-01,1.28,3,220 +20092369,Private Bedroom on Ridgewood/Bushwick Border,4905474,Francheska,Queens,Ridgewood,40.7002,-73.90596,Private room,60,2,0,,,1,0 +20092506,Master room W OWN bathroom,142878742,Sam,Manhattan,East Harlem,40.79074,-73.94232,Private room,70,1,172,2019-06-24,7.27,3,0 +20092821,Dream bedroom in the heart of downtown Manhattan,23610188,Bess,Manhattan,Chinatown,40.71479,-73.99971,Private room,88,1,1,2017-08-14,0.04,1,0 +20094423,Spacious West Village mid-century modern loft,9216074,Reid,Manhattan,West Village,40.73825,-74.00269,Entire home/apt,370,4,0,,,1,0 +20096504,Beautiful & Sunny Private Bedroom Upper Manhattan,142925986,Ariana,Manhattan,Harlem,40.82624,-73.93925,Private room,100,3,0,,,1,125 +20103452,Upper East Side Apartment,95734400,Jack,Manhattan,Upper East Side,40.77042,-73.94918,Entire home/apt,122,1,4,2017-08-28,0.17,1,0 +20111316,Home away from home,15758568,Mike,Brooklyn,Bedford-Stuyvesant,40.68121,-73.94471,Private room,50,2,17,2019-06-24,0.76,1,89 +20111383,Cozy comfortable Apartment Share with Sleeper Sofa,18547000,Rusty,Queens,Astoria,40.77037,-73.92417,Shared room,60,3,28,2019-07-07,2.26,1,248 +20112687,Awesome Privat Room+Privat bathroom in Bushwick,41861163,Vivian,Brooklyn,Bushwick,40.69521,-73.90959,Private room,50,7,0,,,1,0 +20115612,Spacious private room near central park,142878742,Sam,Manhattan,East Harlem,40.79012,-73.94333,Private room,60,1,163,2019-06-21,6.90,3,61 +20118160,"Big guest room,queen bed,Cozy decoration apartment",142997033,Ozge,Brooklyn,Sheepshead Bay,40.59449,-73.95166,Private room,53,2,9,2019-07-05,2.87,1,357 +20118387,Zippy 2 bdrm apt. in artsy Bushwick,15572977,Alayna,Brooklyn,Bushwick,40.7005,-73.92554,Entire home/apt,150,3,1,2017-08-23,0.04,1,0 +20119459,Comfortable medium size room in downtown New York,8962305,Cici,Manhattan,Lower East Side,40.71375,-73.98988,Private room,75,5,3,2018-08-11,0.13,3,11 +20119649,CROWN HEIGHTS GUESTS HOUSE 3L,74541079,Abraham,Brooklyn,Crown Heights,40.67081,-73.93646,Entire home/apt,129,3,24,2019-07-01,1.04,9,74 +20120690,Modern Williamsburg Penthouse,9691202,Julien,Brooklyn,Williamsburg,40.7188,-73.94283,Entire home/apt,250,7,10,2019-05-25,0.45,1,5 +20120739,Large bedroom plus in 2 bdr apartment uptown.,24559370,Gabrielle,Manhattan,Washington Heights,40.8555,-73.93517,Private room,98,3,4,2018-09-04,0.17,2,0 +20120848,Gramercy Park Prewar Studio w/ Outdoor Space,11822196,Melanie,Manhattan,Gramercy,40.73734,-73.98565,Entire home/apt,99,3,10,2019-06-26,0.51,2,0 +20120907,Hip flat in the heart of Astoria,46801421,Emily,Queens,Astoria,40.77133,-73.92119,Entire home/apt,120,3,11,2019-01-01,0.48,1,6 +20121308,Spacious room w/Private Roof Deck in Shared Apt,118883025,Apeksha,Manhattan,Upper West Side,40.78182,-73.97915,Private room,120,1,141,2019-06-30,5.94,1,231 +20121617,LARGE ROOM/PRIVATE BATHROOM BY PROSPECT PARK,2802251,Cansu,Brooklyn,Flatbush,40.6495,-73.9643,Private room,60,2,2,2017-09-27,0.08,1,0 +20121957,Cozy bedroom in heart of Whitestone/Flushing,26298732,Mojgan,Queens,Flushing,40.77401,-73.80169,Private room,89,1,0,,,1,0 +20124372,"LOVE MANHATTAN 1 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.81005,-73.91977,Private room,40,1,73,2019-05-29,3.16,4,51 +20125262,Chateau de Lambert,66604973,Chris,Brooklyn,Greenpoint,40.72646,-73.95598,Entire home/apt,150,1,0,,,1,0 +20125722,AG's Palace 4,121612198,Maura,Brooklyn,Canarsie,40.6433,-73.91333,Private room,89,1,2,2018-10-07,0.16,4,359 +20127311,Peaceful apartment,10112706,Luz,Queens,Ridgewood,40.70709,-73.89422,Entire home/apt,49,2,59,2019-06-18,3.09,1,24 +20130471,Peaceful home in Bedstuy,10010083,Amanda,Brooklyn,Bedford-Stuyvesant,40.68317,-73.93553,Private room,60,3,26,2019-06-07,1.28,1,47 +20131833,"Designer Chelsea Loft: 2 bedrooms, 2 bathrooms",24050287,Daniel,Manhattan,Chelsea,40.74707,-74.00332,Entire home/apt,500,7,26,2019-05-23,1.25,1,214 +20133468,★ Business Getaway ★ Cozy & Warm | Laptop Friendly,131697576,Anisha,Bronx,East Morrisania,40.83336,-73.88636,Private room,75,2,71,2019-06-22,3.00,4,358 +20133862,"Cozy West 15th Street Studio, Chelsea",22541573,Ken,Manhattan,Chelsea,40.74119,-73.99941,Entire home/apt,169,30,0,,,87,362 +20134321,1-BR Apartment in the Heart of Williamsburg,10128779,Joseph,Brooklyn,Williamsburg,40.71759,-73.96641,Entire home/apt,150,4,8,2019-04-29,0.35,1,0 +20134453,Modern 1 Bedroom Near Union Square & East Village,8760900,Rory,Manhattan,East Village,40.73241,-73.98783,Entire home/apt,120,3,41,2019-06-29,2.23,1,4 +20134851,"Bright, airy loft in Bushwick's street art scene",4305955,Brittany,Brooklyn,Bushwick,40.70543,-73.92306,Entire home/apt,165,4,12,2019-06-17,0.55,1,0 +20135026,Personal Room/Bathroom with Large Shared Living,6971106,Michael,Manhattan,Upper West Side,40.79957,-73.96989,Private room,72,3,4,2017-10-24,0.17,2,0 +20135169,New Amazing Apartment In Washington Heights,143181766,David,Manhattan,Washington Heights,40.85213,-73.9336,Entire home/apt,120,3,32,2019-04-22,1.39,1,3 +20135361,Incredible Views! Zen-Style Residence In The Sky,118695056,Cameron & Dione,Brooklyn,Downtown Brooklyn,40.69201,-73.98713,Entire home/apt,275,3,20,2019-05-15,0.96,2,35 +20135558,"Awesome Newly Renovated 2-bdrm. - E,F,J trains.",143186772,Femi,Queens,Jamaica,40.69499,-73.7991,Entire home/apt,130,2,95,2019-06-27,4.19,1,117 +20136121,1 BD cozy house near beach,90751766,Valeriy,Staten Island,Midland Beach,40.57294,-74.09615,Entire home/apt,90,4,8,2019-05-29,0.40,1,179 +20136828,2 BD cozy house,143199593,Val,Staten Island,Midland Beach,40.57509,-74.09606,Entire home/apt,105,4,20,2019-06-10,1.05,1,358 +20136870,1 BEDROOM CENTRAL PARK / BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77548,-73.98965,Entire home/apt,190,30,5,2019-02-21,0.38,25,181 +20137347,Cozy One Bedroom in Spanish/East Harlem,51532290,Janelle,Manhattan,East Harlem,40.79815,-73.93475,Entire home/apt,82,2,3,2017-08-24,0.13,1,0 +20137576,Room in a charming and spacious apartment in DUMBO,19990362,Sara,Brooklyn,Vinegar Hill,40.70149,-73.98091,Private room,69,5,5,2019-04-19,0.22,1,166 +20137618,Best Sun-Filled Room in NYC with Private Terrace!,2068274,Vinko,Manhattan,East Village,40.72717,-73.98064,Private room,99,3,2,2018-08-30,0.09,1,0 +20137770,Private room in doorman building in Downtown BK,34365131,Sarah,Brooklyn,Downtown Brooklyn,40.69591,-73.98335,Private room,58,5,1,2017-08-13,0.04,1,0 +20138516,"Private, elegant, apartment with beautiful garden",94676949,Althea,Brooklyn,East Flatbush,40.6413,-73.9236,Entire home/apt,100,2,97,2019-07-07,4.38,1,30 +20139305,Spacious 1BR near park & subways,6985109,Geoffrey,Brooklyn,Prospect Heights,40.67335,-73.96763,Entire home/apt,121,9,21,2019-06-18,1.14,1,179 +20139611,"R#1Very nice, comfortable, quiet and peaceful room",95958773,Maryna,Brooklyn,Brighton Beach,40.57717,-73.9608,Private room,95,1,7,2019-06-27,0.32,3,342 +20141920,"12 Mins to Manhattan, 25 Mins to Times Square.",136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69537,-73.93598,Entire home/apt,389,1,107,2019-07-06,4.77,3,64 +20145152,Corner top floor apt - Williamsburg,1318986,May,Brooklyn,Williamsburg,40.70829,-73.95682,Entire home/apt,90,1,0,,,1,0 +20147537,Paradise Room (Private Room),142812843,Eugene,Manhattan,East Harlem,40.79104,-73.93805,Private room,75,1,12,2017-11-05,0.51,2,0 +20147628,Beautiful modern apartment with private deck!,4391397,Eva,Brooklyn,Windsor Terrace,40.65783,-73.98236,Entire home/apt,150,2,4,2019-04-28,0.34,2,4 +20147886,Nice clean and quiet bedroom in two bedroom app,119680716,Petar,Brooklyn,Kensington,40.6368,-73.96857,Private room,35,1,6,2017-08-26,0.26,1,0 +20148004,Sublet in Brooklyn,143330206,Adi,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92606,Private room,45,5,2,2017-09-14,0.09,1,0 +20148331,"BIG-3 BDRM house, 1hr to Manhattan, near beach",7927832,Yulia,Staten Island,"Bay Terrace, Staten Island",40.55182,-74.14439,Entire home/apt,150,3,1,2018-08-16,0.09,1,0 +20148616,1 BEDROOM / HIGH FLOOR / BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77104,-73.98522,Entire home/apt,190,30,6,2019-05-16,0.31,25,190 +20149300,Crown Heights Guest House 3R3L,74541079,Abraham,Brooklyn,Crown Heights,40.66955,-73.93576,Entire home/apt,199,4,7,2019-04-29,0.34,9,89 +20149318,Wonderful room for rent in the Bronx,19297877,Albena,Bronx,Bronxdale,40.85527,-73.86719,Private room,35,1,21,2018-12-11,0.96,1,284 +20149903,2 Amazing Bedrooms Near Airport Free Parking,143351162,Marcia,Queens,Queens Village,40.70723,-73.72948,Private room,75,1,16,2018-09-20,0.71,1,342 +20150588,"Spacious Room in Woodside, Queens",30998389,Antonio José,Queens,Woodside,40.75398,-73.90083,Private room,40,10,1,2018-12-02,0.14,1,0 +20150770,Luxury condo- private room + bath w cable TV/W/D,75967547,Kristin,Manhattan,Harlem,40.80524,-73.95254,Private room,99,2,17,2018-12-03,0.73,2,0 +20150874,Modern and artsy bedroom on top floor of Duplex,30933708,Emmanuel,Brooklyn,Bushwick,40.69711,-73.91519,Private room,75,2,8,2018-07-16,0.35,1,0 +20151455,CHARMING ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77232,-73.90369,Private room,40,2,101,2019-06-23,4.29,8,279 +20152264,"Spacious, cozy, fully equipped apartment with AC",10461088,Noam,Brooklyn,Carroll Gardens,40.6831,-73.99945,Entire home/apt,180,4,0,,,1,0 +20152950,Sunny Spacious 1BR Yard Roof at GrattanHouse,128414475,Nitya,Brooklyn,Williamsburg,40.70609,-73.92828,Private room,91,1,3,2017-08-27,0.13,3,0 +20153102,"Guest room in High Ceiling Duplex, Williamsburg! 3",40511252,Auset,Brooklyn,Williamsburg,40.70754,-73.95291,Private room,55,30,3,2018-11-01,0.28,3,0 +20153395,Room in the best location in the Lower East Side,52127857,Beto,Manhattan,Lower East Side,40.7181,-73.98167,Private room,120,2,1,2018-02-23,0.06,2,0 +20153406,1 bedroom by Empire State Building/Penn Station,56784103,Lisa,Manhattan,Kips Bay,40.74482,-73.97827,Private room,69,15,25,2019-05-18,1.10,1,29 +20153703,Sunny Large Bedroom in Shared Apartment (W Harlem),48878986,Kaylie,Manhattan,Harlem,40.82086,-73.95119,Private room,60,3,1,2017-08-06,0.04,1,0 +20154569,"Flatiron Loft 3BR/1.5 Bath Best Location +30 days",35635299,Mel,Manhattan,Midtown,40.74353,-73.98364,Entire home/apt,333,30,66,2019-06-23,2.81,1,210 +20155633,The Emerald of Queens/30 mins from NYC!,126504342,Otto,Queens,Flushing,40.76271,-73.79595,Private room,50,2,74,2019-06-26,3.19,1,246 +20155838,Clean homey renovated convenient 15m to Manhattan,131035061,Lucky,Queens,Sunnyside,40.7463,-73.91388,Private room,60,3,105,2019-06-14,4.49,2,90 +20155864,"New house in Rockaway Beach, NYC!",519720,Anna,Queens,Arverne,40.59425,-73.79506,Entire home/apt,150,2,2,2019-03-11,0.09,1,309 +20156079,Chic Williamsburg Apartment 2 Bedroom,126531152,Francesca,Brooklyn,Williamsburg,40.713,-73.94381,Entire home/apt,150,1,4,2017-08-14,0.17,1,0 +20156382,"The BABY ""O""",143431362,Okela,Brooklyn,East Flatbush,40.63831,-73.94572,Private room,89,1,14,2019-05-05,0.62,1,364 +20162513,Cozy Studio Close to Broadway and Times Square,683142,Jose,Manhattan,Hell's Kitchen,40.76242,-73.99482,Entire home/apt,135,2,3,2017-12-26,0.13,1,0 +20163695,"*Spacious* Artist’s Home, mins to NYC, near train",43623968,Lauren,Queens,Rego Park,40.72835,-73.86108,Entire home/apt,115,1,78,2019-06-12,3.51,1,343 +20163793,Spacious Studio in Residential Neighborhood,90463984,Isabelle,Queens,Richmond Hill,40.6997,-73.84236,Entire home/apt,100,7,3,2019-06-24,0.17,3,324 +20164612,"Plant Haven: Cozy, spacious room in Manhattan",72377141,Ben,Manhattan,Upper West Side,40.80012,-73.96896,Private room,76,7,2,2017-11-25,0.09,3,0 +20164634,Quiet 1BR in Ft Greene! Close to Ft Greene park,12586279,Sophia,Brooklyn,Fort Greene,40.68841,-73.97283,Entire home/apt,110,2,5,2017-11-23,0.22,1,0 +20164923,1BR w/ Private Bath - Brooklyn Loft with Roof-deck,119260265,Melissa,Brooklyn,Clinton Hill,40.68878,-73.96156,Private room,60,5,4,2019-01-04,0.17,1,0 +20165918,Private Room near LGA,52361698,Johanna,Queens,East Elmhurst,40.76279,-73.87429,Private room,40,1,1,2019-07-02,1,1,226 +20165947,Bright & Spacious Artist loft in BK!,17290200,Martina,Brooklyn,Williamsburg,40.70503,-73.93699,Private room,50,7,1,2017-08-28,0.04,1,0 +20166475,"Large, quiet, sunny room: close to Manhattan & LGA",30442701,Nick & Nadia,Queens,Astoria,40.7651,-73.91304,Private room,49,3,36,2018-06-21,1.55,1,0 +20166644,"Cozy, Quiet Convenient in Prime Soho",84143174,Lindsey,Manhattan,Nolita,40.72427,-73.99387,Entire home/apt,200,1,13,2019-05-26,0.56,1,0 +20167264,"Gorgeous ""Smart"" Room in Manhattan 30 min to WTC",10109608,Aj,Manhattan,Harlem,40.81145,-73.95067,Entire home/apt,65,3,9,2017-11-09,0.40,2,0 +20167609,Large Sunlit Private Room in WIlliamsburg,21619571,Andrew,Brooklyn,Williamsburg,40.71272,-73.96378,Private room,68,1,1,2017-08-20,0.04,1,0 +20167736,"Renovated Luxury Apt $199/Sleeps 4, Labor Day Wknd",21060836,Laura,Manhattan,Midtown,40.7534,-73.97186,Entire home/apt,199,3,0,,,2,0 +20167771,【アクセス抜群】空港10分・マンハッタン10分!駅徒歩5分の好立地なお部屋です,143534216,Hiroko,Queens,Elmhurst,40.7466,-73.88812,Private room,80,2,8,2017-10-14,0.35,1,0 +20169817,Eclectic NY Apartment 15 minutes to LGA & JFK,143555322,Shuvo,Queens,Jamaica Hills,40.71062,-73.80145,Private room,50,1,4,2017-08-18,0.17,1,0 +20170372,Spacious room an beautiful view to pedestrian zone,143554049,Leslie,Queens,Ridgewood,40.70061,-73.911,Private room,78,3,60,2019-06-30,2.66,1,291 +20170965,Luxe Restored Catholic Church turned Apts 1BR/.5Ba,22375303,Elle,Brooklyn,Bedford-Stuyvesant,40.68185,-73.9306,Private room,65,1,87,2019-06-23,3.75,2,254 +20171018,Comfortable convenient Williamsburg bedroom!,50688724,S.A.,Brooklyn,Williamsburg,40.70639,-73.95552,Private room,55,3,58,2019-06-10,2.50,2,298 +20171179,"House of Rain +(Because I’m a pluviophile)",141141822,Tiffany,Manhattan,Harlem,40.81078,-73.94482,Private room,63,3,50,2019-06-30,3.01,1,315 +20171270,Neat Cozy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75686,-73.81327,Private room,43,2,65,2019-06-07,2.87,6,364 +20171578,Experience the heart of Hell's Kitchen.,126641287,Larry Raul,Manhattan,Hell's Kitchen,40.76505,-73.98757,Private room,140,2,54,2018-05-22,2.36,1,0 +20171599,Luxury mini Suite.,740812,Monica,Bronx,Westchester Square,40.83758,-73.84382,Entire home/apt,72,2,35,2019-06-23,1.52,2,129 +20171625,Apt. & the City.,75360607,Fernando,Queens,Sunnyside,40.74026,-73.92517,Entire home/apt,199,4,63,2019-06-01,2.81,2,61 +20173075,Spacious bedroom with private entrance + roofdeck,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68305,-73.95753,Private room,90,2,55,2019-06-19,2.42,3,110 +20173308,Cozy Private Rm #2C Two Beds Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69606,-73.85226,Private room,55,1,86,2019-07-07,3.68,4,248 +20173894,Lovely apartment in Brooklyn.,87988,Samantha,Brooklyn,Carroll Gardens,40.68201,-73.99535,Entire home/apt,120,3,2,2018-08-24,0.09,2,0 +20173955,Cozy studio apartment Lower East Side / Lil Italy,67754093,Jayd,Manhattan,Lower East Side,40.72013,-73.9922,Entire home/apt,135,14,0,,,1,0 +20173972,Spacious bedroom w/ private entrance + roofdeck,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95688,Private room,80,2,64,2019-07-06,2.73,3,116 +20174127,"Nice, Clean and Comfortable Flat, Upper East Side",2778578,Isin,Manhattan,Upper East Side,40.77553,-73.9539,Private room,154,4,5,2018-09-06,0.22,1,27 +20174221,Huge Pre-War 1BD By Central Park,22373916,Steven,Manhattan,Upper West Side,40.77841,-73.97968,Entire home/apt,175,7,2,2017-11-18,0.09,1,0 +20174551,"Clean and bright apartment in Harlem, 2 BR",143603020,Justine,Manhattan,Harlem,40.812,-73.94189,Entire home/apt,80,5,5,2018-06-25,0.22,1,0 +20174811,Spacious Room and Backyard in Modern Space,22645955,Micah,Brooklyn,Bushwick,40.69786,-73.91362,Private room,50,20,3,2017-08-27,0.13,1,2 +20175117,Charming One Bedroom Apt on the Upper East Side.,143610690,Monika,Manhattan,Upper East Side,40.77255,-73.95457,Entire home/apt,125,1,131,2019-06-17,5.70,1,220 +20175518,Extra Large 1 Bedroom in Kensington/Ditmas Park,6658169,Michelle,Brooklyn,Kensington,40.63907,-73.97399,Entire home/apt,150,2,0,,,1,0 +20175580,Times Square Cozy Bedroom in Luxury Building,3370543,Thomas,Manhattan,Hell's Kitchen,40.75747,-73.99039,Private room,174,3,17,2019-06-23,0.73,1,65 +20175751,Ideal place in trendy part of Brooklyn.,93751838,Hans,Brooklyn,Bushwick,40.70575,-73.92193,Private room,40,1,4,2017-09-28,0.18,1,0 +20176000,Heavenly Pad!!!,142447586,Winnie & Andy,Bronx,Williamsbridge,40.88032,-73.85877,Private room,45,3,33,2019-06-19,1.47,4,325 +20176191,Enormous Private Room in Shared Apartment,6971106,Michael,Manhattan,Upper West Side,40.79938,-73.97057,Private room,100,5,0,,,2,0 +20176653,"Light, airy, and spacious bedroom in Bushwick.",143631031,William,Brooklyn,Bushwick,40.70135,-73.92402,Private room,50,2,31,2018-06-25,1.34,1,0 +20177584,"Bright, Clean, Modern 1 BR Rooftop & Gym",712992,Daniel,Brooklyn,Greenpoint,40.72025,-73.9436,Entire home/apt,115,1,92,2019-06-28,3.93,1,33 +20182193,Not active,50740281,Jake,Manhattan,Chelsea,40.73686,-73.99349,Entire home/apt,175,5,0,,,1,0 +20183458,Times SQ 15 min away. Big sunny apartment!!! Rare!,11297009,Lex,Manhattan,Harlem,40.81574,-73.95261,Entire home/apt,130,1,35,2019-06-21,1.63,4,361 +20183579,Regina's Dainty One bedroom Apartment close to All,113682832,Harry,Queens,Jamaica,40.69765,-73.8114,Entire home/apt,63,3,14,2019-04-28,0.90,2,257 +20183695,Sunny and Spacious Apartment With Private Terrace!,124046841,Corey & Anna,Brooklyn,Prospect Heights,40.67714,-73.96437,Entire home/apt,130,2,0,,,1,0 +20183883,Time Square & Central Park Condo Sleeps6,76626328,Zachary,Manhattan,Hell's Kitchen,40.76336,-73.98646,Entire home/apt,275,2,86,2019-06-23,3.68,1,137 +20184035,La Sienna - Studio Apartment,143700620,Christina,Manhattan,Harlem,40.80942,-73.95246,Entire home/apt,130,3,40,2019-06-18,1.76,1,275 +20184562,Cozy One Bedroom Apartment + Loft in East Village,61862775,Melissa,Manhattan,East Village,40.72698,-73.98649,Entire home/apt,154,3,2,2017-08-28,0.09,1,0 +20185035,Cozy Bright Room in Greenpoint,133773191,Nikita,Brooklyn,Greenpoint,40.72677,-73.94578,Private room,43,2,153,2019-06-22,6.59,1,14 +20185442,Renovated 1 Bedroom in Prime Bayridge,48685877,Ivana,Brooklyn,Bay Ridge,40.62707,-74.02817,Shared room,225,3,1,2017-08-31,0.04,1,87 +20186021,"Bright, clean, cosy room in the heart of Brooklyn!",94113622,Darlene,Brooklyn,Bushwick,40.68252,-73.90651,Private room,60,3,2,2017-08-29,0.09,2,165 +20186030,Private Room in Spacious Sunnyside Apartment,137625836,Evrim,Queens,Sunnyside,40.74082,-73.91874,Private room,60,4,3,2018-06-29,0.13,1,0 +20186673,The Brick House,143725871,Nathanael,Manhattan,Upper East Side,40.77987,-73.94804,Entire home/apt,180,1,3,2017-09-07,0.13,1,0 +20186834,Spacious 2 Bedrooms w/ Private Entrance + Bathroom,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68249,-73.95683,Private room,150,2,5,2018-08-31,0.21,3,102 +20186887,"Spacious, Sun-Filled 1BR - Columbia Waterfront",26823131,Allie,Brooklyn,Columbia St,40.68674,-74.00073,Entire home/apt,169,1,11,2017-11-25,0.47,1,0 +20187293,GiGi's Stunning Place,60839109,Gloria,Brooklyn,East New York,40.67118,-73.86821,Entire home/apt,83,1,42,2019-06-30,1.79,1,348 +20187779,Beautiful bright room Near JFK & J Train#2,107272884,Lynn L,Queens,Richmond Hill,40.69584,-73.84727,Private room,40,1,59,2019-06-08,2.52,4,354 +20188527,Quiet light-filled bedroom in the heart of Astoria,2994103,Sara,Queens,Ditmars Steinway,40.77614,-73.91324,Private room,75,2,2,2017-10-28,0.10,1,0 +20188787,Charming and Light-filled 1 BR in Crown Heights,83550011,Rubyn,Brooklyn,Crown Heights,40.67015,-73.95662,Entire home/apt,89,2,8,2018-04-23,0.34,1,0 +20188905,"Spacious 1BR in Park Slope, Brooklyn NEAR PARK",8345393,Alexandra,Brooklyn,South Slope,40.66563,-73.98669,Entire home/apt,150,2,3,2017-08-24,0.13,1,0 +20189290,"Large and in charge: pvt ""dungeon"" apt. ❤️❤️❤️❤️❤️",16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.679,-73.91078,Entire home/apt,68,30,11,2019-05-31,0.48,5,332 +20189718,2 BR Apt - Great Midtown location off 5th Avenue,26490904,Deo,Manhattan,Midtown,40.76149,-73.97536,Entire home/apt,200,30,5,2018-10-19,0.26,4,280 +20190053,"Beautiful, family friendly place with great views",25415637,Jonathan,Brooklyn,Columbia St,40.68356,-74.00301,Entire home/apt,144,1,11,2018-09-03,0.48,1,0 +20190343,Kid-Friendly Cobble Hill Brooklyn Home,52425281,Reedu,Brooklyn,Boerum Hill,40.68614,-73.99082,Entire home/apt,150,4,0,,,1,0 +20190580,"Large bedroom in 2BR, 1BA apt in East Village- $75",11713422,Saket,Manhattan,East Village,40.72967,-73.98595,Private room,75,2,2,2017-09-12,0.09,2,0 +20190740,Cozy Family Condo Bed Stuy (with amenities!),5083652,Asher,Brooklyn,Bedford-Stuyvesant,40.68956,-73.93853,Entire home/apt,150,2,6,2019-01-20,0.26,1,4 +20191216,Historic Landmark Neighborhood - Upper East Side,143768763,Chi,Manhattan,Upper East Side,40.78612,-73.95359,Private room,105,3,29,2019-06-30,1.31,1,75 +20191868,3 BR - Great Midtown location off 5th Avenue,26490904,Deo,Manhattan,Midtown,40.76255,-73.97453,Entire home/apt,350,30,2,2018-11-01,0.21,4,332 +20191974,BEAUTIFUL BRAND NEW MODERN WILLIAMSBURG APT,7116018,Brittini,Brooklyn,Williamsburg,40.71041,-73.95773,Entire home/apt,200,3,0,,,1,0 +20191991,"Entire PVT 3BR townhouse apt, Brooklyn.❤️❤️❤️❤️❤️",16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68133,-73.90947,Entire home/apt,150,28,3,2019-05-26,0.16,5,312 +20192860,15 Minutes Manhattan+Private Bathroom+Huge Balcony,103488282,Kaka,Queens,Sunnyside,40.74555,-73.92139,Private room,98,1,106,2019-06-12,4.54,5,123 +20193058,Light-Filled Top Floor of 4BR Townhouse.❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.67925,-73.91017,Entire home/apt,122,28,7,2018-09-23,0.30,5,226 +20193790,✮ Gateway to the Boroughs ✮ Spacious Home Base ✮,143796248,Robert,Brooklyn,Williamsburg,40.71029,-73.95148,Private room,90,1,1,2017-08-06,0.04,1,0 +20193830,Family brownstone with backyard.,1294005,Peter,Brooklyn,Clinton Hill,40.68828,-73.96215,Entire home/apt,450,2,5,2018-06-30,0.22,1,0 +20194264,"Nice room in Astoria, NYC",59359620,Amel,Queens,Ditmars Steinway,40.78083,-73.91145,Entire home/apt,125,2,0,,,1,0 +20194342,Two private bedrooms; feet from subway (6),70418696,Brady,Manhattan,East Harlem,40.78757,-73.95089,Private room,185,2,98,2019-06-26,5.19,1,103 +20194454,"MidTown 45 - New York, NY, Hotel Room, Sleeps 2ppl",136676366,Karl,Manhattan,Midtown,40.75155,-73.97356,Private room,359,3,0,,,1,0 +20194665,"20min To Times Square, 10min LGA",139867352,Oscar,Queens,Ditmars Steinway,40.78088,-73.90819,Private room,39,1,178,2019-06-22,7.57,2,327 +20194791,15 Minutes to Manhattan and Safe Neighborhood!,58403098,Nilufer,Queens,Sunnyside,40.73676,-73.92756,Private room,65,2,72,2019-06-30,3.14,3,98 +20194913,Sweet room with private bathroom.,76359133,FuKang,Queens,Fresh Meadows,40.7385,-73.79241,Private room,60,1,100,2019-06-22,4.27,3,311 +20194954,Relaxing & cozy apt in Brooklyn mins to Manhattan,13462855,Travis,Brooklyn,Bedford-Stuyvesant,40.68004,-73.93928,Entire home/apt,170,3,62,2019-06-30,2.70,2,280 +20195496,Serenity and Ease in Brooklyn!,5775499,Samar,Brooklyn,Bedford-Stuyvesant,40.68115,-73.90999,Private room,60,5,11,2019-06-01,0.49,1,0 +20195539,Leah's Place,143817547,Leah,Manhattan,East Harlem,40.78809,-73.94319,Entire home/apt,200,7,3,2017-10-09,0.14,1,0 +20196339,Private Guest Suite Less than 10 min to JFK :),7097558,Louise,Queens,South Ozone Park,40.66941,-73.79148,Entire home/apt,50,1,310,2019-07-06,13.27,2,23 +20196464,Upper Westside apt with huge private terrace.,135940325,Ilona,Manhattan,Upper West Side,40.77692,-73.98111,Entire home/apt,206,5,0,,,1,0 +20196860,Comfy and Convenient Private Astoria Room,73028890,Esther,Queens,Astoria,40.75645,-73.91458,Private room,50,4,1,2017-08-17,0.04,1,0 +20202650,Furnished one bedroom beauty in midtown NYC,120762452,Stanley,Manhattan,Murray Hill,40.74847,-73.97562,Entire home/apt,222,30,1,2018-08-03,0.09,50,365 +20202971,Immaculate one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74947,-73.9761,Entire home/apt,175,30,3,2019-06-14,0.21,50,342 +20203086,Crown Heights! Newly remodeled suite pvt entrance,89893236,Lakiea,Brooklyn,Prospect-Lefferts Gardens,40.66156,-73.94706,Entire home/apt,90,1,81,2019-06-23,3.50,1,35 +20203433,Modern & Bright 2BR Entire Apt w/ Private Terrace,9592775,Melissa,Brooklyn,South Slope,40.66729,-73.98359,Entire home/apt,196,2,93,2019-06-21,4.10,1,154 +20204055,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73895,-73.9997,Entire home/apt,170,30,1,2017-11-13,0.05,87,278 +20204527,Spacious homey clean convenient 15m to Manhattan,131035061,Lucky,Queens,Sunnyside,40.74654,-73.91842,Private room,70,3,91,2019-06-26,3.92,2,75 +20204751,Bright 3 bedroom loft in the heart of soho.,10768801,Tom,Manhattan,SoHo,40.72553,-74.00002,Entire home/apt,899,3,5,2019-05-01,0.22,1,161 +20205846,Cozy room+15mins Manhattan/15mins Laguradia,103488282,Kaka,Queens,Sunnyside,40.74572,-73.92198,Private room,78,1,74,2019-06-22,3.19,5,88 +20205958,Full-Service Junior Suite in Midtown Manhattan,143908925,Sarah,Manhattan,Midtown,40.76549,-73.98166,Entire home/apt,399,3,1,2018-12-03,0.14,1,0 +20206499,Spacious and cozy apartment in Upper West Side!,4281324,Camila,Manhattan,Morningside Heights,40.80445,-73.96649,Entire home/apt,120,6,1,2017-11-19,0.05,1,0 +20206733,Cute Bedroom Available in Heart of Williamsburg,58353872,Lacey,Brooklyn,Williamsburg,40.71987,-73.96141,Private room,55,5,4,2019-07-01,0.17,1,0 +20206749,Ideal Greenpoint 1 Bedroom,3402375,Colin,Brooklyn,Greenpoint,40.73038,-73.95548,Entire home/apt,189,1,0,,,1,0 +20207132,Clean spacious 1 bedroom apt,445894,Alexa,Brooklyn,Bath Beach,40.60106,-74.00933,Entire home/apt,95,2,2,2017-08-22,0.09,2,0 +20207945,Cozy locked Bedroom - 10 minutes from Times Square,52166457,Jacketta,Queens,Long Island City,40.74715,-73.94605,Private room,70,2,6,2018-10-02,0.26,1,0 +20208354,Bed Stuy Hideaway,8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68564,-73.94508,Private room,60,2,9,2019-06-03,0.40,3,72 +20208787,Renovated 1br w/ private bath steps from the train,39808438,Easton,Brooklyn,Bushwick,40.68817,-73.91523,Private room,45,2,31,2019-05-24,1.35,5,0 +20209878,Haven in the Heights: stylish home away from home,56985517,Alexandra,Brooklyn,Crown Heights,40.67334,-73.94099,Entire home/apt,120,2,48,2019-06-22,2.44,1,227 +20210285,ROOM AC WI-FI PARKING CABLE FOR 2,131684478,Mervin (Michael),Staten Island,West Brighton,40.63291,-74.11749,Private room,37,2,25,2018-09-01,1.11,3,306 +20211113,Brooklyn High Rise w/ Amazing View,15675912,Shawn,Brooklyn,Prospect-Lefferts Gardens,40.65673,-73.96058,Entire home/apt,125,4,4,2018-01-01,0.18,1,0 +20211737,Spacious room in beautiful apartment,61649734,Giulliana,Brooklyn,Bushwick,40.6902,-73.91515,Private room,50,1,61,2019-06-23,2.60,2,9 +20212025,Cozy Studio in Beautiful Bed-Stuy,7248357,Ashley,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9329,Entire home/apt,75,2,1,2017-08-11,0.04,1,0 +20212322,"Furnished, Comfortable Studio with great service",83786650,Bridge,Manhattan,Upper East Side,40.76143,-73.96103,Entire home/apt,80,30,2,2018-09-16,0.14,8,311 +20212531,Sunny Guest Room with Private Balcony,10254539,Laura,Brooklyn,Crown Heights,40.66426,-73.95773,Private room,60,1,9,2018-04-14,0.46,1,0 +20212707,"Quite, clean & relaxing double bed room",143979484,Blan,Manhattan,Washington Heights,40.84532,-73.93814,Private room,68,3,34,2019-06-09,1.69,2,253 +20213045,Spacious and Modern 2 Bed/2.5 Bath Dream Townhouse,2678122,Tasha,Brooklyn,Williamsburg,40.71687,-73.95012,Entire home/apt,300,5,5,2019-06-12,0.35,3,31 +20213442,Master Bedroom in Jazz Era Townhome,7285042,Max,Brooklyn,Crown Heights,40.67586,-73.9504,Private room,75,3,5,2017-10-28,0.22,1,0 +20213659,"MASTER, NEW, PRIVATE BEDROOM, 10 MINS from JFK",107915864,Mina,Queens,Howard Beach,40.66778,-73.85345,Private room,89,1,5,2019-06-19,5,4,317 +20213732,Lovely Brooklyn room near the park & subway,6927464,Grace,Brooklyn,Crown Heights,40.67377,-73.95398,Private room,53,1,0,,,1,0 +20213973,EXTRA LARGE PRIVATE BEDROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77368,-73.90499,Private room,62,2,95,2019-05-26,4.09,8,327 +20214413,Bed Stuy Beautiful !!!!,143807664,Chaka,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93861,Entire home/apt,100,3,50,2019-06-09,2.16,1,96 +20215712,The Bad Pad,144013169,Kara,Manhattan,West Village,40.73552,-74.00554,Entire home/apt,300,3,19,2019-06-27,0.81,1,12 +20216170,"Cozy, Sunny, Spacious 1 Bedroom Gem in Greenpoint!",144017474,Kristin,Brooklyn,Greenpoint,40.73639,-73.95342,Entire home/apt,83,1,85,2019-07-01,3.74,2,0 +20216401,Convenient & Cozy Bushwick Bedroom,12999475,Seth,Brooklyn,Bushwick,40.70032,-73.91684,Private room,60,1,2,2017-08-27,0.09,1,0 +20216511,Beautiful NYC Apartment in Popular Brooklyn spot!!,132735454,John,Brooklyn,Bushwick,40.69549,-73.91838,Private room,30,1,4,2017-08-19,0.17,1,0 +20218990,"Cozy Two-Bedroom near Manhattan, airports & more!",23267477,Fanny & Hong,Queens,East Elmhurst,40.75482,-73.89369,Entire home/apt,118,2,119,2019-07-02,5.20,1,87 +20223912,Great apt with outdoor space!,13032983,Mattias,Brooklyn,Williamsburg,40.71703,-73.94298,Entire home/apt,150,5,1,2017-08-19,0.04,1,0 +20223927,"True Skyline View, minutes to Manhattan",12302023,Joe,Brooklyn,Greenpoint,40.72509,-73.95418,Private room,92,6,48,2019-06-30,2.31,1,43 +20224936,Super Cute Studio in Heart of Greenpoint,35894876,Kristin,Brooklyn,Greenpoint,40.72505,-73.94449,Entire home/apt,99,1,114,2019-06-20,4.97,1,255 +20227210,"Sunny one-bedroom apt., close to Prospect Park",1553230,Kate,Brooklyn,Prospect Heights,40.67635,-73.97113,Entire home/apt,124,2,9,2019-02-19,0.39,1,0 +20227428,Douglaston Apartment Room A,18996093,Leonard,Queens,Little Neck,40.75794,-73.72956,Private room,45,1,12,2019-06-22,0.55,5,133 +20227482,Brooklyn Mezzanine Apartment,122120711,Kristin,Brooklyn,Williamsburg,40.70745,-73.94484,Entire home/apt,175,4,2,2017-08-27,0.09,1,0 +20228284,"Harlem 1 BR apartment w/ washer&dryer, near subway",132342343,Yve,Manhattan,Harlem,40.81246,-73.94906,Entire home/apt,147,2,64,2019-06-20,2.85,1,72 +20228476,Prospect Heights gorgeous apartment,93220722,Jenelle,Brooklyn,Crown Heights,40.6762,-73.9617,Entire home/apt,75,2,1,2018-03-24,0.06,1,72 +20230482,Mishay's Hut,144138036,Mishay,Queens,St. Albans,40.69167,-73.75495,Entire home/apt,99,2,54,2019-06-24,2.34,1,267 +20230778,Cute and Spacious Studio in the Heart of Flushing,30852228,Sarah,Queens,Flushing,40.755,-73.82333,Entire home/apt,120,1,2,2017-08-29,0.09,1,0 +20230917,Private room with a private backyard,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69562,-73.95107,Private room,47,5,5,2017-11-04,0.21,2,0 +20231046,Newly renovated 2 bed/2 bath in heart of Bushwick,313079,Mia,Brooklyn,Bushwick,40.69426,-73.90785,Entire home/apt,157,3,70,2019-06-21,3.06,1,223 +20231480,"Cosy 25minutes manhatan,15 min Barclays Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65593,-73.91798,Private room,80,7,5,2018-05-07,0.26,9,206 +20231737,"Bright, Clean Room with Private Bathroom",2065453,Ora & Scout,Brooklyn,Crown Heights,40.6775,-73.95404,Private room,69,1,7,2018-09-03,0.33,3,0 +20231900,Argyle Road Brooklyn,4581681,Sarah,Brooklyn,Flatbush,40.63646,-73.96484,Entire home/apt,250,2,58,2019-06-30,2.70,1,312 +20231901,Spacious/ elegant one bed apt. - perfect location,654586,Osh,Manhattan,Greenwich Village,40.72982,-74.00034,Entire home/apt,175,2,25,2019-07-01,1.78,1,64 +20232745,SweetSpot in Pelham Pkwy S.E. Bronx NY 5 Star stay,120231560,Hiasselen,Bronx,Bronxdale,40.85634,-73.86633,Private room,45,2,21,2019-03-18,0.91,1,280 +20233308,Quiet/clean 1br WashHeights/Inwood Entire apt,142235171,Jessica,Manhattan,Washington Heights,40.85598,-73.93427,Entire home/apt,80,2,18,2019-06-18,0.77,1,0 +20234416,Amazing 1100 Sqft 2 Bd Penthouse in Williamsburg,43424825,Seth,Brooklyn,Williamsburg,40.70955,-73.9491,Entire home/apt,217,3,24,2019-06-16,1.05,1,14 +20234674,"Pretty, 775 sq ft, 1.75 BR, Manhattan Apt.",143977790,Nic,Manhattan,Upper East Side,40.77751,-73.95198,Entire home/apt,129,2,25,2019-06-30,1.09,1,0 +20235361,2 Bedrooms 5 beds apt perfect for groups,144197377,Riley,Manhattan,East Harlem,40.79873,-73.93263,Entire home/apt,199,1,34,2018-04-26,1.50,1,0 +20235591,Spacious Studio with computer desk,144200262,Anna,Bronx,North Riverdale,40.90734,-73.90137,Private room,119,3,0,,,1,0 +20235608,"Spacious 2 Bedroom in Bushwick, Brooklyn",109884885,Michael Ray,Brooklyn,Bushwick,40.69716,-73.91447,Entire home/apt,195,2,4,2017-10-22,0.18,1,0 +20235701,Very large sunny one bedroom that can be for 2-3,87814281,Sharon,Manhattan,Harlem,40.83103,-73.94653,Private room,80,1,0,,,2,0 +20235849,Oasis in NYC - large UES studio near Central Park!,25860768,Mei-I,Manhattan,Upper East Side,40.78078,-73.95301,Entire home/apt,126,2,45,2019-06-17,2.00,1,0 +20235984,Bright Room in a 4-bed Apartment in Bushwick,34821813,James,Brooklyn,Bushwick,40.70115,-73.9212,Private room,55,6,0,,,1,0 +20237047,Prospect Park Zen Den (by Lakeside/Flatbush),14853570,Anne Ashley,Brooklyn,Prospect-Lefferts Gardens,40.65967,-73.96242,Entire home/apt,100,2,0,,,1,0 +20242938,Belo Quarto/w/UPGRADE to entire apartment,166634,Lou,Brooklyn,Brownsville,40.66192,-73.91371,Private room,59,2,34,2019-06-11,1.47,5,0 +20243718,Quaint & Quiet Room - UWS Apt (105/Broadway),144275900,Andrew,Manhattan,Upper West Side,40.80024,-73.96826,Private room,51,7,2,2018-06-30,0.09,1,0 +20243875,Bright 3 floors home in Bushwick with precious art,6760095,Maria Veronica,Brooklyn,Bushwick,40.70089,-73.9273,Private room,250,2,0,,,1,260 +20245126,Star Labs,9450203,Xris,Brooklyn,Crown Heights,40.67215,-73.94831,Private room,150,1,2,2017-08-21,0.09,1,177 +20245130,Modern Mid-Century Townhouse in Williamsburg!,25233493,Jaime,Brooklyn,Williamsburg,40.71352,-73.96148,Entire home/apt,800,30,29,2018-11-09,1.41,2,0 +20245577,Big guest room on Upper west side,20850336,Yubo,Manhattan,Upper West Side,40.77621,-73.98054,Private room,140,1,13,2019-05-26,0.77,1,54 +20248246,Beautiful Private Bedroom & Bathroom,74314960,Cristina,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94359,Private room,95,5,1,2018-02-04,0.06,2,0 +20249492,2BR PH Loft and Executive Office Central Manhattan,144310942,Jacqueline,Manhattan,Flatiron District,40.74416,-73.99017,Entire home/apt,600,2,41,2019-06-06,1.93,1,174 +20250864,"Chelsea, Minutes to Time Square, Next to Subway",144317997,Luis,Manhattan,Chelsea,40.74648,-73.99286,Private room,40,3,23,2018-05-03,1.03,1,0 +20253164,"Cozy room with balcony, 15min Manhattan",103488282,Kaka,Queens,Sunnyside,40.74739,-73.92058,Private room,85,1,115,2019-06-23,4.94,5,76 +20253237,Spacious 1 bedroom on Hamilton Grange - Entire Apt,140299690,A.J.,Manhattan,Harlem,40.8204,-73.94652,Entire home/apt,150,3,18,2019-07-05,0.79,1,4 +20254247,Comfy room close to everything!,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95116,Private room,60,30,2,2017-08-27,0.09,2,0 +20255084,Beautiful One Bedroom In the Heart of Manhattan,144347177,Alexandra,Manhattan,Upper East Side,40.76326,-73.95967,Entire home/apt,149,5,0,,,1,0 +20255158,Newly Renovated Brooklyn Apt.,45451027,David,Brooklyn,Crown Heights,40.67651,-73.95877,Private room,40,6,4,2018-09-09,0.18,1,0 +20256027,Penthouse Apt with Incredible Views & Location,20729779,Desislava,Manhattan,Kips Bay,40.74195,-73.97826,Private room,69,1,16,2018-01-17,0.68,1,0 +20257297,Williamsburg Sky,4220261,Bashan,Manhattan,Civic Center,40.71332,-74.00643,Entire home/apt,300,2,0,,,1,89 +20257357,Cute Cobble Hill Apartment with NYC Skyline Views,144376495,Micah,Brooklyn,Columbia St,40.68796,-73.99997,Entire home/apt,149,3,2,2019-06-28,0.09,1,0 +20257840,Elegant Oasis in the Upper East Side,60293337,Melissa,Manhattan,Upper East Side,40.77667,-73.95335,Private room,120,1,89,2019-06-30,3.92,1,149 +20260218,"Spacious, Private bedroom in Bushwick apartment",144406701,Bryan,Brooklyn,Bushwick,40.69201,-73.92364,Private room,40,9,2,2017-11-21,0.09,1,0 +20261316,Sunny two bedroom-two bath in doorman building UWS,42435903,Anuja,Manhattan,Upper West Side,40.79093,-73.97528,Entire home/apt,270,7,0,,,1,0 +20263109,Modern Studio Loft in the heart of Sea Port,44298161,Nicolas,Manhattan,Financial District,40.70676,-74.00612,Entire home/apt,200,3,14,2019-02-24,0.61,1,10 +20263650,Light Filled Quiet UWS studio,170094,Lee,Manhattan,Upper West Side,40.79272,-73.97519,Entire home/apt,120,3,6,2018-12-16,0.27,1,0 +20264224,"Bright, cozy room 30mins from downtown Manhattan",107420184,Naz,Brooklyn,Crown Heights,40.67169,-73.9326,Private room,50,3,28,2019-07-04,1.76,1,93 +20265104,West Village Haven,9121940,Joseph,Manhattan,West Village,40.73574,-74.00121,Entire home/apt,290,14,0,,,1,341 +20265425,Welcome to New York City,101369464,Edward,Brooklyn,Bensonhurst,40.60848,-73.97703,Entire home/apt,100,2,115,2019-06-29,4.95,1,323 +20265742,modern duplex in classic brooklyn brownstone,8280982,Amy,Brooklyn,Bedford-Stuyvesant,40.68151,-73.94827,Entire home/apt,250,3,1,2019-04-08,0.32,1,133 +20267865,Your home away from home in New York City.,58403098,Nilufer,Queens,Sunnyside,40.73726,-73.92775,Private room,45,3,58,2019-06-20,2.53,3,97 +20268134,Spacious One Bedroom in Bed-Stuy,10414799,Katharina,Brooklyn,Bedford-Stuyvesant,40.69074,-73.93696,Entire home/apt,85,5,6,2018-12-30,0.33,2,5 +20269650,Cozy Hell's Kitchen/ Time Square Apartment- 2 BRM,144509624,Nivea And Jill,Manhattan,Hell's Kitchen,40.76551,-73.9873,Entire home/apt,300,1,139,2019-07-03,5.95,1,265 +20269743,"Charming Bright Astoria Room, close to Ditmar",68724048,Sol,Queens,Ditmars Steinway,40.77773,-73.90719,Private room,35,1,3,2017-08-15,0.13,1,0 +20271220,Sunny private room on Central Park,634346,Chava,Manhattan,East Harlem,40.79629,-73.94913,Private room,55,7,0,,,1,0 +20271739,Charming Luxury Loft near Barclay & Green Building,147513,Ashley,Brooklyn,Gowanus,40.67949,-73.98666,Entire home/apt,225,2,113,2019-06-21,5.88,2,67 +20274278,Brooklyn in the house Private Apt Midwood Q subway,72375507,Kenneth,Brooklyn,Sheepshead Bay,40.60954,-73.95966,Entire home/apt,78,4,5,2019-06-22,0.67,1,82 +20275223,FULL BED/Spa Amenities for Sophisticated Travelers,89985620,Annette C,Brooklyn,Flatlands,40.62187,-73.93079,Private room,49,2,58,2019-06-29,2.53,3,311 +20275670,Amazing Studio step away from Time Square/53C,48146336,Irina,Manhattan,Hell's Kitchen,40.76152,-73.99388,Entire home/apt,130,30,4,2019-05-31,0.19,20,332 +20277166,Spacious Brooklyn home 2bdrm near Prospect Park.,10217532,David,Brooklyn,Flatbush,40.64844,-73.96726,Entire home/apt,115,5,4,2019-04-24,0.18,1,3 +20277675,Enjoy NYC from beautiful and fun Clinton Hill,1699505,Daniel And Elsa,Brooklyn,Clinton Hill,40.68358,-73.9627,Private room,59,3,2,2018-05-28,0.15,1,0 +20278184,Mezzanine room in Bushwick,28455413,Lia,Brooklyn,Bushwick,40.68609,-73.91525,Private room,32,1,5,2017-09-05,0.22,2,0 +20278421,Bright Bohemian living space & bedroom,22899202,Sadie,Brooklyn,Bedford-Stuyvesant,40.68838,-73.92208,Private room,45,2,10,2019-07-01,0.51,2,34 +20279672,Serene queen sized bedroom,2514859,Meghan,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95137,Private room,70,2,2,2019-01-01,0.20,2,0 +20279691,Bright and Spacious Parkside Apartment,21340955,Shean,Brooklyn,Flatbush,40.65198,-73.96078,Entire home/apt,99,3,2,2018-01-01,0.11,3,311 +20279823,Charming & artsy cozy one bedroom Apt.,43121487,Natalia,Queens,Maspeth,40.7355,-73.90064,Entire home/apt,105,3,71,2019-05-21,3.08,1,285 +20280692,"2 bedroom New York, Queens",46407533,Alba,Queens,Ditmars Steinway,40.78182,-73.91248,Entire home/apt,160,5,2,2018-09-02,0.09,1,0 +20281546,Sunny 1br across from the park,52251632,Daniel,Manhattan,Morningside Heights,40.80711,-73.95826,Entire home/apt,114,1,1,2017-08-20,0.04,1,0 +20282225,Private Room in Artsy space in Bedstuy W/Mini Bar!,144647925,James,Brooklyn,Bedford-Stuyvesant,40.6867,-73.94212,Private room,55,3,8,2017-11-05,0.34,1,0 +20282957,Newly renovated 2 bedroom with FREE WIFI,31687922,Jonathan,Queens,Flushing,40.7612,-73.8214,Entire home/apt,120,1,104,2019-06-28,4.44,1,90 +20283433,Williamsburg Apt: Near Train & Close to Waterfront,7714461,Charles,Brooklyn,Williamsburg,40.71389,-73.95103,Private room,55,7,19,2019-05-31,0.85,2,151 +20283488,Large bedroom in shared apartment - Short term,9430316,Eugenio,Queens,Astoria,40.7641,-73.91879,Private room,160,2,1,2018-01-02,0.05,1,0 +20284068,Crown Heights Apartment,32905351,Meredith,Brooklyn,Crown Heights,40.67423,-73.95737,Entire home/apt,110,2,31,2019-04-25,1.36,1,4 +20284463,"Relaxing, White Room in Upper Manhattan w/ rooftop",42154911,Hannah,Manhattan,Harlem,40.83082,-73.94677,Private room,60,4,2,2019-04-24,0.11,2,13 +20284711,Studio step away from Time square/73B,48146336,Irina,Manhattan,Hell's Kitchen,40.76163,-73.99335,Entire home/apt,130,30,4,2019-04-30,0.41,20,310 +20285167,Room-Sofa Bed-Hell's Kitchen-Close to Everything,118267672,Nicholas,Manhattan,Hell's Kitchen,40.76609,-73.99396,Shared room,115,1,94,2019-06-27,4.09,1,7 +20285257,Sunny One Bedroom,20279155,Alec,Manhattan,Chinatown,40.7134,-73.99069,Entire home/apt,150,1,0,,,1,0 +20285258,Cozy comfortable studio perfect for exploring!,1457505,Tamara,Brooklyn,Park Slope,40.6765,-73.98205,Entire home/apt,100,4,0,,,1,0 +20286116,1 Room in Renovated Apt with Private Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70515,-73.92349,Private room,85,2,5,2018-03-26,0.22,2,0 +20286743,New convenience room w/ major subway lines near,140057330,Joey,Queens,Elmhurst,40.74247,-73.88949,Private room,55,1,61,2019-05-31,2.66,7,57 +20286744,Modern Extra Large Super Sunny Private Bedroom,48076117,Shelley,Brooklyn,Crown Heights,40.6739,-73.93372,Private room,55,1,63,2019-07-03,2.77,2,30 +20287051,Clean Room in Artist Loft in the South St. Seaport,13872573,Allison,Manhattan,Financial District,40.70781,-74.00051,Private room,90,2,3,2018-01-02,0.14,1,0 +20287322,Private room in two-bedroom apartment in Chinatown,90130659,Spencer,Manhattan,Two Bridges,40.71261,-73.99609,Private room,80,7,0,,,1,0 +20291879,Photography Bedroom in Modern Brooklyn Flat,33028687,Robert,Brooklyn,Bedford-Stuyvesant,40.69132,-73.94494,Private room,150,2,6,2019-05-19,0.26,1,0 +20292523,Terrace Penthouse in Nolita,40321516,Luc,Manhattan,Nolita,40.72206,-73.99497,Entire home/apt,350,5,1,2017-11-26,0.05,1,0 +20294316,New York Voilet Dynasty,138006255,Carol,Brooklyn,Canarsie,40.63601,-73.91503,Private room,110,1,1,2018-05-06,0.07,2,365 +20296968,Quiet Hells Kitchen Studio steps from Times Square,28340376,Anna,Manhattan,Hell's Kitchen,40.76125,-73.99299,Entire home/apt,164,2,85,2019-07-01,3.67,1,0 +20297560,1 bright room in a 4 bdr in Ridgewood / Bushwick,13989494,Antoine,Queens,Ridgewood,40.69557,-73.9043,Private room,42,2,1,2017-08-10,0.04,1,0 +20299266,West Village Gem - Renovated 3 Bedroom Apt!,117677214,Rodney,Manhattan,West Village,40.73103,-74.00319,Entire home/apt,325,5,47,2019-06-09,2.01,1,310 +20300137,Modern and Stylish 1 Bedroom in East Village,19635760,Zoe,Manhattan,East Village,40.72526,-73.98128,Entire home/apt,140,3,6,2019-06-23,0.35,1,0 +20302205,"Quiet, Spacious, Artsy 1-Bedroom in Ridgewood",38266438,Alex,Queens,Ridgewood,40.70216,-73.89944,Entire home/apt,75,10,1,2017-08-25,0.04,1,0 +20303322,"Quiet,Comfy&Spacious Room near F/G train",104836016,Qingming,Brooklyn,Kensington,40.6421,-73.98171,Private room,66,2,14,2019-06-01,0.60,4,180 +20304193,"Quiet,Comfy&Spacious Room near F/G train",104836016,Qingming,Brooklyn,Kensington,40.64007,-73.98011,Private room,66,2,29,2019-06-16,1.25,4,170 +20304291,Cozy&Comfortable room in Manhattan/ East Harlem,12213641,Joshua,Manhattan,East Harlem,40.80196,-73.93627,Private room,95,1,35,2019-06-30,1.56,2,15 +20304654,"Cozy room in the middle of LES, SoHo",7225691,Jérôme,Manhattan,Lower East Side,40.72268,-73.9893,Private room,115,1,179,2019-06-30,7.76,2,326 +20304656,Big room in West Harlem/Morningside,23741614,Kristin,Manhattan,Harlem,40.80416,-73.95557,Private room,60,7,0,,,1,0 +20305160,Beach House Retreat. 15 minutes from Manhattan.,1715301,Mark,Staten Island,Fort Wadsworth,40.59546,-74.06092,Entire home/apt,800,7,0,,,3,365 +20305451,Best of Brooklyn & Beside Manhattan!,48704899,Dara,Brooklyn,Park Slope,40.67481,-73.97258,Entire home/apt,200,3,41,2019-06-02,1.84,1,1 +20305686,"Clean and cozy room , quite neighborhood.",144841101,Anjeza,Queens,Astoria,40.76406,-73.90959,Private room,112,7,0,,,1,0 +20305785,Private spacious studio in Richmond Hill,144833193,Lucyna,Queens,Kew Gardens,40.70491,-73.83614,Entire home/apt,100,2,0,,,1,0 +20306155,The Rosedale Palace Master room,133810925,Andrew,Queens,Rosedale,40.66524,-73.73283,Private room,84,1,89,2019-06-23,4.01,3,356 +20306217,The inner palace,133810925,Andrew,Queens,Rosedale,40.66458,-73.73464,Private room,62,1,144,2019-06-24,6.21,3,0 +20306472,Big sunny bedroom Clinton Hill $50/day,442106,Bobby,Brooklyn,Bedford-Stuyvesant,40.69256,-73.96058,Private room,35,1,5,2017-09-13,0.22,1,0 +20306746,The Grace palace,133810925,Andrew,Queens,Rosedale,40.664,-73.733,Private room,62,1,129,2019-06-28,5.74,3,354 +20308253,Studio in LIC with views of Manhattan skyline,27098685,Min Hee,Queens,Long Island City,40.745,-73.94951,Entire home/apt,115,5,1,2017-08-31,0.04,1,0 +20308615,Your Oasis in The Bronx!,67223829,Richard & Xio,Bronx,Longwood,40.82406,-73.8934,Entire home/apt,155,3,13,2019-05-01,0.61,1,285 +20308703,Great chance to live in a great new 2br apartment!,144868702,Polina,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92674,Entire home/apt,165,3,1,2017-09-15,0.05,1,0 +20308833,Spacious & Light Room - Very Close to Subway,57670550,Josie,Brooklyn,Crown Heights,40.66872,-73.93451,Private room,60,3,6,2018-04-03,0.26,2,0 +20308927,"Huge Brownstone duplex w/garden, Park Slope, BK,NY",24945340,Oliver,Brooklyn,Park Slope,40.67447,-73.97605,Entire home/apt,400,2,7,2019-01-01,0.37,1,14 +20309089,Home Sweet Home,101776118,Jim,Brooklyn,Bay Ridge,40.62493,-74.02837,Entire home/apt,90,1,92,2019-07-02,4.09,1,312 +20309202,Private Bedroom w River View in Downtown Manhattan,10196765,Xiaomin,Manhattan,Battery Park City,40.71035,-74.01722,Private room,90,1,9,2019-05-19,0.39,1,0 +20309353,Bright private bedroom in prime Williamsburg apt,7344404,Justin,Brooklyn,Williamsburg,40.71237,-73.9598,Private room,75,4,6,2019-05-03,0.27,1,0 +20309605,"Luxe, Central Loft in Downtown Manhattan",4412976,Puja,Manhattan,Tribeca,40.72015,-74.00435,Entire home/apt,1500,3,2,2018-06-19,0.11,1,186 +20311253,Sunny Private Room in Bed-Stuy,10373779,Carla,Brooklyn,Bedford-Stuyvesant,40.68883,-73.94821,Private room,55,3,3,2018-09-29,0.30,2,0 +20314852,COMFY BEDROOM IN THE HEART OF HARLEM,144863286,Georgy,Manhattan,Harlem,40.8173,-73.95571,Private room,120,1,0,,,1,180 +20316497,Luxury and comfort,131826530,Kathy,Bronx,Riverdale,40.88667,-73.91494,Private room,600,2,0,,,3,269 +20319662,Warm Sunny Penthouse w/Private Bathroom + Patio,17555570,Yan,Brooklyn,Crown Heights,40.66882,-73.92245,Private room,72,1,92,2019-07-07,3.99,12,102 +20320826,Tranquil bedroom in classic Bed-Stuy brownstone,4227812,Diego & Mike,Brooklyn,Bedford-Stuyvesant,40.68161,-73.95237,Private room,120,30,4,2018-09-28,0.37,1,0 +20321714,Great spacious prime studio in Midtown,115844816,Tony,Manhattan,Murray Hill,40.74819,-73.97201,Entire home/apt,200,6,2,2017-10-24,0.09,1,341 +20321803,Vanderbilt · Quaint Art-Filled Brooklyn Apartment,1468617,Jen,Brooklyn,Clinton Hill,40.69575,-73.96966,Entire home/apt,99,3,5,2018-07-29,0.22,1,0 +20322611,Huge private bedroom. Heart of Bed-Stuy.,65875353,Severino,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95017,Private room,40,2,0,,,1,0 +20322645,Beautiful Bright Times Square Apartment,144992525,Edith,Manhattan,Theater District,40.75879,-73.98155,Entire home/apt,185,3,5,2018-04-08,0.22,1,0 +20323803,Loft room - Lower East Side (Downtown Manhattan),55260292,Andre,Manhattan,Lower East Side,40.72017,-73.98412,Private room,90,2,14,2019-05-20,0.67,1,60 +20325356,"Sunny, Spacious and Perfect Village Location",13300403,Christine,Manhattan,Greenwich Village,40.73372,-73.99704,Entire home/apt,615,4,42,2019-06-14,1.83,1,117 +20325804,Downtown Manhattan large studio with terrace,145011016,Mark,Manhattan,Financial District,40.70912,-74.00721,Entire home/apt,180,7,3,2019-04-24,0.14,1,20 +20325986,Brooklyn Condominium - Bushwick,145013050,Dylan,Brooklyn,Bushwick,40.70423,-73.91595,Private room,75,1,3,2017-09-01,0.13,1,0 +20326252,"1 Br Garden Apt own Pvt space in St.Albans,Queens",135373362,Lavonne,Queens,St. Albans,40.70644,-73.76072,Entire home/apt,80,1,100,2019-06-27,4.45,1,71 +20326395,"Spacious 1 bed/1 bath home, 3A",49704571,Krzysztof,Brooklyn,Greenpoint,40.72074,-73.9432,Entire home/apt,90,30,4,2019-04-27,0.19,8,125 +20327659,Renovated 1-bedroom apartment in Gramercy,127759523,Michael,Manhattan,Gramercy,40.73775,-73.98319,Entire home/apt,179,1,0,,,1,0 +20328568,"Insane Manhattan Views, Top Williamsburg Location",1533756,Yusuf,Brooklyn,Williamsburg,40.72106,-73.95974,Entire home/apt,269,5,1,2017-08-28,0.04,1,0 +20328884,Sunny Studio in Park Slope,10149880,Haley,Brooklyn,Park Slope,40.67653,-73.9737,Entire home/apt,106,5,0,,,1,0 +20329223,Most Sunny adorable Bedroom in Gramercy,48984291,M.J.,Manhattan,Kips Bay,40.74075,-73.98162,Private room,110,14,0,,,1,283 +20330081,New York's Hidden Secret for luxury living,131826530,Kathy,Bronx,Riverdale,40.88515,-73.91411,Shared room,800,2,1,2017-09-03,0.04,3,269 +20330243,"Huge sunny, beautiful bedroom in Manhattan",145048035,Aura,Manhattan,Harlem,40.81545,-73.94613,Private room,60,1,2,2017-10-29,0.09,1,0 +20330822,Charming Quiet Entire 1 bdrm Duplex UWS + Terrace,20217572,David,Manhattan,Upper West Side,40.79312,-73.96886,Entire home/apt,219,4,30,2019-06-15,1.29,1,45 +20331226,Private Blu Suite 1BR Brownstone 1st Fl Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81748,-73.94484,Entire home/apt,150,5,52,2019-06-29,2.35,4,113 +20331468,Large Upper West Side Apartment with Rooftop,18121246,Alana,Manhattan,Upper West Side,40.7856,-73.97539,Entire home/apt,289,3,3,2017-09-23,0.13,1,0 +20331502,Room in Upper West Side Apartment - close to park,51752582,Nitzan,Manhattan,Upper West Side,40.7973,-73.9618,Private room,55,3,4,2017-12-19,0.17,1,0 +20331717,Huge place in a center of the dream City!,106445337,Ben,Manhattan,Kips Bay,40.73891,-73.98295,Private room,139,2,1,2017-08-18,0.04,1,0 +20331995,Two Bedroom Apartment Queens Near Subway to NYC,48032663,Naomi,Queens,Richmond Hill,40.70171,-73.82991,Entire home/apt,65,2,95,2019-07-06,4.13,1,105 +20332555,Beautiful Apartment near Times Square Central Park,143944704,Ash,Manhattan,Theater District,40.76302,-73.98211,Entire home/apt,239,3,104,2019-06-22,4.53,1,0 +20332842,Times Square Summer Retreat,145072632,Andrea,Manhattan,Hell's Kitchen,40.76181,-73.98865,Private room,110,3,111,2019-07-01,4.95,2,128 +20333200,"FEMALE only- Clean, Quiet, Lincoln Center Apt",683180,Jina,Manhattan,Upper West Side,40.77345,-73.98774,Private room,89,10,10,2018-12-12,0.44,1,248 +20333471,★Hostel Style Room | Ideal Traveling Buddies★,131697576,Anisha,Bronx,East Morrisania,40.83296,-73.88668,Private room,0,2,55,2019-06-24,2.56,4,127 +20333831,Basement Suite w/Private Entrance,145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.67907,-73.94916,Entire home/apt,150,2,18,2019-07-06,0.86,2,86 +20337158,Comfy HP“TWIN BED” 5 mins to LGA-US OPEN & 7 train,32446721,Veronica,Queens,Corona,40.74748,-73.8647,Shared room,45,1,18,2019-06-30,0.80,6,365 +20345108,xxx,137779917,Neng,Manhattan,Morningside Heights,40.81012,-73.95825,Private room,55,1,0,,,1,0 +20346887,The Heights,68598597,Jazmin,Manhattan,Washington Heights,40.84684,-73.93252,Private room,55,1,22,2019-06-24,0.95,2,91 +20350538,WEST VILLAGE/CHELSEA-PRIME LOCATION,76104209,Rated,Manhattan,Chelsea,40.73993,-74.00147,Entire home/apt,164,30,0,,,33,307 +20350704,Cozy bedroom in the heart of Harlem,140641026,Portia,Manhattan,Harlem,40.80419,-73.94792,Shared room,65,1,1,2018-12-30,0.16,1,365 +20353880,Spacious Home In South Brooklyn,17414475,Cassia,Brooklyn,Columbia St,40.68181,-74.00462,Private room,63,1,51,2019-06-29,2.89,1,6 +20355009,The Enchanted Pearl Bed & Breakfast ️,142289760,Janae,Manhattan,Harlem,40.81698,-73.93968,Private room,70,1,9,2017-11-12,0.39,1,89 +20355471,Large and quiet 1 BR in heart of Greenpoint,13206384,Daniel,Brooklyn,Greenpoint,40.73384,-73.95407,Entire home/apt,120,4,19,2019-07-02,0.85,1,0 +20356040,Sunny Spacious room near central park,142878742,Sam,Manhattan,East Harlem,40.78828,-73.94385,Private room,82,1,163,2019-06-12,7.27,3,75 +20356256,"Heart of the East Village,Bright Room Excursion",145194995,Stacy,Manhattan,East Village,40.72982,-73.98371,Private room,56,2,4,2017-09-04,0.17,1,0 +20356479,Sunny chic room with private bath in new apartment,80028220,Remonia,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92531,Private room,80,1,4,2018-07-05,0.19,1,0 +20356506,Beautiful Studio Right Next To Times Square!,127385071,Jake,Manhattan,Hell's Kitchen,40.7658,-73.99087,Entire home/apt,139,2,121,2019-06-20,5.35,1,82 +20356797,New York Apartment in Queens,127077398,Ming,Queens,Ozone Park,40.67801,-73.8459,Entire home/apt,110,2,51,2019-07-06,2.22,1,295 +20356865,"Cute, spacious, windowlit room in Williamsburg",75199843,Isi,Brooklyn,Williamsburg,40.71327,-73.94763,Private room,60,2,3,2019-05-08,0.13,1,90 +20356917,SoHa Jewel,145199414,Ronald,Manhattan,Harlem,40.80041,-73.95401,Private room,70,1,68,2019-06-23,2.97,1,330 +20357796,True Upscale Room Experience. Amazing,31736547,Iza,Manhattan,East Harlem,40.79148,-73.9446,Private room,69,1,58,2019-06-23,4.10,2,26 +20358824,"$45NYCCozy Room with curtain NearJ,G, and M train",145214508,Yonette,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94226,Shared room,45,3,7,2018-10-02,0.31,2,364 +20359408,Beautiful Manhattan private bedroom,144851882,Jane,Manhattan,Kips Bay,40.73972,-73.97839,Private room,58,5,0,,,1,0 +20361914,Charming smoker friendly apt inBushwick,145234836,Mark,Brooklyn,Bushwick,40.70258,-73.92466,Private room,110,5,0,,,1,358 +20362110,Humble Abode in Harlem,145239999,Jason,Manhattan,Harlem,40.81876,-73.93974,Private room,80,1,4,2017-10-08,0.17,1,179 +20362385,"Convenient bedroom, Great location, Close to all",145241163,Witt,Queens,Elmhurst,40.73744,-73.88136,Private room,51,2,38,2019-01-01,1.66,1,28 +20363178,Small room for travelers in fresh and clean apt,49539959,Alex,Brooklyn,Brownsville,40.67287,-73.9105,Private room,50,4,67,2019-03-31,2.89,2,0 +20363207,Sophisticated & Modern NYC Urban Jewel Box,46677826,Nakia,Manhattan,Hell's Kitchen,40.76044,-73.99882,Entire home/apt,273,3,13,2019-07-05,0.60,1,116 +20364111,Never Stop Exploring,145257512,Leo,Manhattan,Midtown,40.75599,-73.96769,Entire home/apt,212,3,95,2019-07-01,4.26,1,239 +20364240,Sunny lifestyle room,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67389,-73.93363,Private room,54,2,47,2019-06-23,2.05,4,345 +20365504,Cozy apartment in Cobble Hill,41844294,Sandy,Brooklyn,Carroll Gardens,40.68518,-73.99247,Entire home/apt,170,1,90,2019-07-01,4.11,1,164 +20373836,Downtown Manhattan Weekender,6933112,Josie,Manhattan,Financial District,40.70874,-74.01342,Private room,102,1,0,,,2,0 +20376152,Clinton Hill Private Room,145187951,Nikki,Brooklyn,Bedford-Stuyvesant,40.68385,-73.95627,Private room,50,3,15,2018-06-23,0.69,2,0 +20379446,Bedroom in bright cozy duplex w/ private rooftop,1843969,Carolina,Brooklyn,Bedford-Stuyvesant,40.69445,-73.93828,Private room,85,2,11,2019-07-01,0.49,1,164 +20379828,Cozy room in trendy Brooklyn neighborhood.,11116177,Alba,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94145,Private room,80,1,2,2017-08-29,0.09,1,0 +20381341,Contemporary Bushwick garden heaven,6263296,Greg,Brooklyn,Bushwick,40.70182,-73.9188,Private room,50,1,3,2018-06-29,0.13,1,0 +20382522,"Apartment in Harlem on 145th St, next to 3 train.",13246721,Jay,Manhattan,Harlem,40.8216,-73.93679,Private room,86,1,1,2017-12-02,0.05,1,0 +20384987,Cozy Apartment in Time Square with Amazing view,19045109,J,Manhattan,Theater District,40.76122,-73.98583,Private room,136,3,0,,,1,0 +20385039,Air mattress boudoir [BEST RATES],142590597,Joica,Brooklyn,East New York,40.67425,-73.87279,Shared room,79,1,9,2019-06-04,0.40,6,180 +20385260,2 BDRM apt in elevator building,13225047,Lila,Brooklyn,Williamsburg,40.72099,-73.96007,Entire home/apt,211,1,12,2018-04-03,0.53,3,0 +20385467,Cozy and luxurious suite away from home,740812,Monica,Bronx,Westchester Square,40.8372,-73.84345,Entire home/apt,70,2,67,2019-07-01,2.99,2,129 +20386575,Makes You Wanna STAY! [BEST RATE],142590597,Joica,Brooklyn,East New York,40.6746,-73.87293,Shared room,159,1,7,2018-10-06,0.31,6,180 +20387176,Professor Trelawney's Celestial Tower in Brooklyn,20540369,Aviva,Brooklyn,Bushwick,40.70031,-73.91718,Private room,55,1,0,,,1,0 +20387244,Comfy and Cozy [BEST RATE],142590597,Joica,Brooklyn,East New York,40.67467,-73.87379,Private room,119,1,29,2019-06-30,1.28,6,180 +20387644,Beautiful urban 2BR with private deck and yard!!!,19924289,Stephanie,Brooklyn,Fort Hamilton,40.62267,-74.02989,Entire home/apt,120,4,45,2019-06-17,1.98,1,44 +20387815,Quiet Harlem Studio w/ Backyard & Close to Train,41047066,Trinity,Manhattan,Harlem,40.81629,-73.94131,Entire home/apt,71,2,24,2019-07-01,1.45,1,55 +20388056,studio in gramercy park,46736568,Mitch,Manhattan,Gramercy,40.73594,-73.97947,Entire home/apt,170,3,12,2019-01-01,0.53,1,1 +20389491,Comfortable Stay in Crown Heights :),68011294,Shay & Adam,Brooklyn,Crown Heights,40.66583,-73.93563,Entire home/apt,70,30,4,2018-11-17,0.18,1,61 +20389872,Sunny Bedroom on Bedford Ave in Williamsburg,50369101,Samantha,Brooklyn,Williamsburg,40.71351,-73.96038,Private room,80,1,1,2017-09-04,0.04,1,0 +20390763,Private Guest Room in Manhattan,145391611,Lauren,Manhattan,Harlem,40.82744,-73.94707,Private room,50,2,86,2019-07-03,4.01,1,97 +20390786,Perfect east village | lower east side anchorage,145392038,Emma,Manhattan,Lower East Side,40.72178,-73.98645,Private room,80,1,1,2017-08-11,0.04,1,0 +20392393,Cozy midtown apt next to metro & Empire State bldg,145398177,Spencer,Manhattan,Kips Bay,40.7433,-73.97919,Entire home/apt,129,2,75,2019-06-13,3.32,1,29 +20393120,Amazing Art Deco studio with backyard in Manhattan,29967049,Dario,Manhattan,East Harlem,40.78899,-73.94727,Entire home/apt,99,14,6,2019-06-21,0.27,1,3 +20394608,Hamilton Heights sun filled spacious master BR,75749777,Mykola,Manhattan,Harlem,40.82094,-73.95366,Private room,49,16,1,2017-08-21,0.04,1,0 +20394813,Spacious and sunny Prospect Heights One Bedroom,4102722,Charles,Brooklyn,Prospect Heights,40.67988,-73.97375,Entire home/apt,125,1,2,2017-08-27,0.09,1,0 +20394850,Upper East Side with outdoor space,145328112,Sheldon,Manhattan,Upper East Side,40.77002,-73.96183,Entire home/apt,150,7,1,2017-08-12,0.04,1,0 +20395266,Convenient New Apt.- Bargain Price,62167677,Joshua,Queens,Long Island City,40.75461,-73.91903,Private room,30,4,4,2018-04-30,0.18,2,0 +20395432,Bright Beautiful Creative Luxury 1BR Williamsburg,17126502,Mitch,Brooklyn,Williamsburg,40.71279,-73.94154,Entire home/apt,144,4,10,2019-07-06,0.93,1,43 +20395608,★ Warm NYC Getaway ★ | Walk/Transit Score 85+ |,131697576,Anisha,Bronx,East Morrisania,40.83243,-73.88608,Private room,55,2,60,2019-06-18,2.59,4,171 +20395737,"Penthouse apartment, 3 bedrooms, great location.",66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.6837,-73.9511,Entire home/apt,170,5,53,2019-03-31,2.43,3,267 +20396246,Sunny Harlem Oasis feels like Luxury,57573249,Kesina,Manhattan,Harlem,40.81677,-73.93927,Entire home/apt,185,1,6,2017-11-26,0.26,2,0 +20400190,Entire Studio Apartment,93411405,Eden,Queens,Elmhurst,40.74282,-73.87655,Entire home/apt,120,6,8,2018-09-11,0.35,2,0 +20401541,Modern Apartment in east village,3697130,Vikas,Manhattan,East Village,40.72311,-73.98161,Entire home/apt,174,2,22,2018-09-03,0.98,1,0 +20403568,Guest Suite in beautiful Brooklyn Brownstone,9217610,Virginie,Brooklyn,Greenpoint,40.72642,-73.94574,Entire home/apt,125,3,50,2019-06-22,2.15,2,91 +20404055,Spacious room with private bathroom in Manhattan,7433664,Muneeza,Manhattan,Washington Heights,40.8459,-73.94219,Private room,60,1,1,2017-08-15,0.04,1,0 +20404264,Charming cozy apt in the Heart of Manhattan!,44964062,Edwina,Manhattan,East Harlem,40.7889,-73.9482,Private room,73,3,0,,,1,0 +20405148,"Clean, Near Central Park and Subway",39469667,Anton,Manhattan,Midtown,40.7577,-73.9662,Private room,105,1,142,2019-06-23,6.60,1,38 +20405868,"Large 1BR in Bay Ridge, Brooklyn",43544395,James,Brooklyn,Fort Hamilton,40.61897,-74.03675,Entire home/apt,85,1,3,2019-01-22,0.44,1,6 +20405958,2BED 2 BATH CENTRAL PARK /BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.776,-73.98815,Entire home/apt,300,30,7,2019-03-29,0.85,25,312 +20406102,Union SQ / Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73496,-73.98723,Private room,150,2,57,2019-06-20,2.51,3,149 +20406188,Room for a week,20954844,Robert,Brooklyn,Flatbush,40.64419,-73.95947,Private room,130,1,0,,,1,0 +20406627,Clean and cozy room!!!! Close to Everything!!!!,108448613,Isadora,Queens,Jackson Heights,40.75001,-73.87358,Private room,80,2,9,2019-01-02,0.39,1,0 +20406782,Beautiful Loft Apartment in Boerum Hill,60350045,Katie,Brooklyn,Boerum Hill,40.68557,-73.98537,Entire home/apt,140,7,31,2018-09-22,1.38,2,0 +20406982,"Spacious and Cozy apartment, minutes to Manhattan!",57339374,Valentina,Brooklyn,Borough Park,40.64394,-73.99524,Private room,75,2,25,2019-06-10,1.08,1,129 +20407916,Renovated 3 BED 2 BATH Williamsburg Townhouse APT,144602805,Sung Ae,Brooklyn,Williamsburg,40.71041,-73.9663,Entire home/apt,300,2,34,2019-06-23,1.55,1,239 +20409753,COZY NEST/Coffee and Bagel,1097545,Carol,Manhattan,East Village,40.72609,-73.97865,Shared room,69,6,31,2019-04-24,1.37,3,196 +20411065,Beautiful seaside dwelling,145560608,William,Queens,College Point,40.79511,-73.8473,Private room,53,7,2,2018-07-17,0.12,1,279 +20412160,Spectacular NYC Views in ideal Manhattan Location,6279607,Ela,Manhattan,Kips Bay,40.74042,-73.97822,Private room,79,1,26,2018-03-27,1.13,1,0 +20412884,2 Bedroom + 2 Bathrooms | Excellent Location,143477365,Val,Manhattan,Midtown,40.75878,-73.97069,Entire home/apt,409,1,87,2019-06-19,3.86,1,40 +20417560,The City Farmhouse A&B **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75818,-73.91398,Entire home/apt,600,30,1,2017-12-26,0.05,3,220 +20417878,Simple Room in Heart of Crown Heights (Women Only),102347748,Mana,Brooklyn,Crown Heights,40.67061,-73.93151,Private room,38,2,112,2019-06-02,4.91,1,5 +20418684,East Village / Alphabet City 1BR,33827790,Kevin,Manhattan,East Village,40.72208,-73.97779,Entire home/apt,185,1,17,2019-05-05,0.77,1,11 +20419339,Unique and spacious 1BR in Greenpoint Brooklyn,31624246,James,Brooklyn,Greenpoint,40.72037,-73.94624,Entire home/apt,175,2,3,2017-11-05,0.13,1,178 +20420152,Charming Studio in Upper East Side,121141431,Juan Ignacio,Manhattan,Upper East Side,40.77265,-73.94833,Entire home/apt,115,2,6,2018-04-15,0.27,1,0 +20420311,Efficiency-like rental,64097020,Lesley / Eric,Brooklyn,Bushwick,40.68513,-73.90987,Private room,50,2,38,2019-01-02,1.66,1,0 +20420499,Urban Oasis,209300,Gina,Brooklyn,Fort Greene,40.68531,-73.97451,Private room,75,1,152,2019-06-22,6.58,2,41 +20420507,Beautiful Big Brownstone Bedroom w/ Natural Light,65830935,Jade,Brooklyn,Bedford-Stuyvesant,40.6801,-73.94072,Private room,1000,2,0,,,1,0 +20421016,Comfortable studio by the park!,4296770,Leif,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.9568,Entire home/apt,70,3,13,2018-04-03,0.57,1,0 +20423928,Artistic Bedstuy Apartment,12570239,Rachel,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9438,Private room,85,4,2,2017-10-09,0.09,1,0 +20424288,Quintessential Soho Loft,625403,Tobias,Manhattan,SoHo,40.72171,-74.00396,Entire home/apt,250,90,1,2019-02-28,0.23,1,0 +20424312,Lovely Bushwick/Bed Stuy Room with Roof Access,15134346,Jenny,Brooklyn,Bushwick,40.69145,-73.92152,Private room,40,2,4,2018-06-19,0.18,1,0 +20425060,Warm and Inviting Getaway,71850281,Nikki,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95214,Private room,50,5,22,2019-06-05,1.00,1,1 +20425394,Studio Apartment in Chelsea,26329486,Nick,Manhattan,Chelsea,40.74418,-73.9999,Entire home/apt,162,3,4,2017-12-30,0.18,1,0 +20425579,Beautiful 2 Bedroom apt. close to Times Sq.,72715655,Javier,Manhattan,Hell's Kitchen,40.76347,-73.98785,Entire home/apt,250,2,97,2019-06-21,4.21,1,145 +20425734,Cozy room in a happy apartment,18947979,Junghwee Bella,Queens,Woodside,40.74273,-73.90458,Private room,35,7,2,2017-09-03,0.09,1,0 +20425764,Cozy Bright 3bedroom apt. 10 min from times sq.,145717056,Jamal,Queens,Long Island City,40.75905,-73.93203,Entire home/apt,295,2,106,2019-07-07,4.73,1,188 +20426726,Brooklyn's finest,141931484,Xie,Brooklyn,Canarsie,40.63488,-73.89015,Private room,75,2,45,2019-06-03,1.95,3,259 +20427684,"TWIN BED. Walk to US OPEN, LGA AIRPORT & CITIFIELD",32446721,Veronica,Queens,Corona,40.74967,-73.86311,Shared room,45,1,16,2019-06-29,0.70,6,365 +20431492,"Cozy & clean Bedstuy, Brooklyn bedroom",73954921,Anthony,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95104,Private room,38,1,1,2017-08-24,0.04,1,0 +20432615,Private room next to Central Park!,19887805,Joshua,Manhattan,Upper West Side,40.79574,-73.96312,Private room,61,1,1,2017-08-26,0.04,1,35 +20432888,Spacious area close to Gramercy park,9475138,Jastine,Manhattan,Gramercy,40.73894,-73.98651,Entire home/apt,340,2,0,,,1,0 +20433620,Time square/ Bryant park,145803893,Jonathan,Manhattan,Midtown,40.75205,-73.98564,Entire home/apt,170,2,102,2019-06-23,4.48,1,213 +20433673,Tiny Apt,102863031,Jakelina,Manhattan,SoHo,40.72443,-74.00141,Private room,80,5,32,2019-06-26,1.39,1,336 +20435261,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67133,-73.97859,Private room,94,2,0,,,2,0 +20435343,Cozy room in the the heart of artful Bushwick BK,127082964,Christopher,Brooklyn,Bushwick,40.70439,-73.92546,Private room,54,2,10,2018-04-29,0.43,2,0 +20435636,Stay like a local in Willamsburg/Greenpoint - NYC,63043,Tolga,Brooklyn,Greenpoint,40.72767,-73.95084,Private room,80,5,19,2019-01-21,1.26,1,0 +20435714,Pretty studio with lots of light,48677247,Elle,Bronx,Norwood,40.88304,-73.88278,Entire home/apt,58,5,1,2017-09-05,0.04,1,0 +20435773,East Village 1 bedroom private apartment,61524907,Matthew,Manhattan,East Village,40.725,-73.97711,Entire home/apt,120,8,6,2018-09-12,0.27,1,0 +20436075,"Douglaston apartment Room B +(2nd room )",18996093,Leonard,Queens,Douglaston,40.75754,-73.73068,Private room,45,1,12,2019-02-02,0.55,5,226 +20436117,"Bright, Clean, Private - 10 Minutes to Manhattan",145830321,Morgan,Brooklyn,Williamsburg,40.70728,-73.95461,Entire home/apt,120,1,122,2019-06-17,5.42,1,193 +20437233,Comfy room with great bed and private bathroom,1939209,Farrel,Bronx,Claremont Village,40.83556,-73.91098,Private room,70,4,42,2019-05-28,1.85,2,77 +20437854,"Lovely Top-Floor, Studio Apartment with Balcony.",5047712,Jamie,Brooklyn,Williamsburg,40.71418,-73.94298,Entire home/apt,215,3,3,2018-09-02,0.14,1,0 +20438015,Prime Upper West Side Duplex,15004693,S,Manhattan,Upper West Side,40.78304,-73.97309,Entire home/apt,250,2,2,2017-12-24,0.09,1,0 +20440249,Sunset Park Brownstone Apartment with Backyard,31031279,Chelsea,Brooklyn,Sunset Park,40.6494,-74.00967,Entire home/apt,72,3,1,2017-09-01,0.04,1,21 +20440400,East Village Getaway,42701042,Nick,Manhattan,East Village,40.72698,-73.98948,Entire home/apt,181,1,0,,,1,0 +20440432,Awesome Room 15 Minutes from Time Square,145872703,Cesar,Manhattan,Harlem,40.82198,-73.95771,Private room,85,2,26,2019-06-09,1.17,2,355 +20440757,GREEN OASIS,145878384,Denise,Brooklyn,East Flatbush,40.65556,-73.92926,Private room,80,3,10,2019-05-31,0.45,7,341 +20441507,FiDi Cozy room overlooking East River,24105930,Sarah,Manhattan,Financial District,40.70511,-74.00828,Private room,115,1,0,,,1,0 +20441901,Comfy Room in Clinton Hill Artist & Activists Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.6898,-73.96012,Private room,50,14,1,2018-11-17,0.13,3,364 +20445845,Urban Fun House in Heart of Williamsburg Brooklyn!,32761103,James,Brooklyn,Williamsburg,40.71394,-73.95669,Entire home/apt,255,14,9,2019-05-18,0.41,1,326 +20448558,Beautiful Sunny Apartment in Bay Ridge,145953481,A & H,Brooklyn,Bay Ridge,40.62985,-74.01738,Entire home/apt,120,2,7,2017-10-30,0.31,1,0 +20450185,Sunny Greenpoint Room,3656083,Juan,Brooklyn,Greenpoint,40.73237,-73.95952,Private room,61,10,2,2018-07-13,0.09,2,0 +20451100,Quiet haven 15 mimutes to Time square,145975067,Ousmane,Manhattan,Harlem,40.81332,-73.94869,Private room,65,1,3,2019-03-24,0.14,3,3 +20451532,"Greenpoint private room w/back yard, dishwasher",37050812,Stephanie,Brooklyn,Greenpoint,40.73547,-73.95495,Private room,55,2,4,2017-10-23,0.18,1,0 +20452330,Frank 'n Dean,24377694,Kori,Brooklyn,Crown Heights,40.67837,-73.95422,Entire home/apt,298,2,0,,,3,189 +20452409,2 BR Presidential for FAMILY Vacation ★ EPIC VIEWS,64065593,ResortShare5,Manhattan,Midtown,40.75174,-73.97213,Entire home/apt,672,2,3,2018-07-27,0.23,13,266 +20454481,Cute Studio In Riverdale NYC,6010437,Taylor,Bronx,Kingsbridge,40.88165,-73.90633,Entire home/apt,100,2,46,2019-06-03,2.00,1,10 +20455415,2 Bed Hotel Room Near Manhattan Meals Pool and Gym,37380820,Saleem,Brooklyn,Downtown Brooklyn,40.69404,-73.9875,Entire home/apt,199,1,0,,,1,0 +20457624,The Suite Spot! Queen Tempurpedic in Luxury Apt,146036754,Rose,Queens,Astoria,40.76838,-73.92564,Private room,60,2,4,2019-02-25,0.18,2,177 +20458372,1 bedroom apartment near Central Park,55133987,Vadim,Manhattan,Upper West Side,40.79532,-73.96344,Entire home/apt,130,9,0,,,1,0 +20458607,1 BR w/ Private Entrance and Exclusive Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70561,-73.92378,Private room,80,2,0,,,2,0 +20459381,"Cozy, bright, Greenwich Village studio for 2!",17575348,Marissa,Manhattan,Greenwich Village,40.73334,-73.99416,Entire home/apt,200,2,3,2018-01-02,0.14,1,0 +20459741,Brooklyn Gem,135606570,Lorene,Brooklyn,East Flatbush,40.63458,-73.94554,Private room,66,2,6,2019-05-06,0.47,1,88 +20459818,Size and Comfort Matter!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94836,Entire home/apt,165,3,72,2019-07-05,3.16,7,226 +20460009,Luxury one bedroom apt with huge private TERRACE,9589826,Ira,Manhattan,Murray Hill,40.74409,-73.97167,Entire home/apt,350,3,0,,,1,0 +20464496,LaRoom,49519069,Kosta,Queens,Briarwood,40.7105,-73.81589,Private room,85,5,0,,,1,177 +20465477,Beautiful 2-bed apartment in leafy Boerum Hill,60350045,Katie,Brooklyn,Boerum Hill,40.68597,-73.98507,Entire home/apt,150,7,2,2018-09-09,0.14,2,0 +20466016,Feel at Home in this Lovely 1 Bedroom in Flushing,5962328,Alan,Queens,Flushing,40.75947,-73.82263,Entire home/apt,100,30,7,2019-05-05,0.34,15,294 +20467141,Private Bed and Bath by Morningside/Central Park!,22822259,Kellie,Manhattan,Harlem,40.80666,-73.95703,Private room,90,2,67,2019-07-06,2.99,1,63 +20469195,"Secluded Room in EV, Private Patio, Open Kitchen!",34706197,Imri,Manhattan,East Village,40.72564,-73.98682,Private room,144,4,20,2019-01-01,1.08,2,94 +20469589,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67257,-73.97775,Private room,90,1,0,,,2,0 +20474033,The Apollo,94408885,Anthony,Brooklyn,Greenpoint,40.72572,-73.93909,Entire home/apt,210,2,31,2019-05-19,1.37,1,0 +20476397,Bright & Comfy 2-BR in heart of Greenwich Village,8305981,Gavin,Manhattan,Greenwich Village,40.73325,-73.99971,Entire home/apt,350,2,34,2019-05-26,1.52,1,10 +20476779,Enjoy Manhattan without paying Manhattan prices,146178383,Diana,Staten Island,St. George,40.64262,-74.08066,Private room,68,2,29,2019-05-20,1.30,1,57 +20478863,"Mid-Century Style Room Close to All, Astoria NYC!",3682854,Fabiyan,Queens,Astoria,40.77028,-73.91665,Private room,60,3,7,2018-02-07,0.31,1,0 +20479197,The Cozy Corner - Private Room w/ Laundry,146036754,Rose,Queens,Astoria,40.76972,-73.92662,Private room,60,1,19,2019-06-05,0.85,2,250 +20479561,Upper east side cozy apt available in September.,112176192,Catherine,Manhattan,Upper East Side,40.78269,-73.95288,Entire home/apt,127,1,0,,,1,0 +20479960,Garden mini apt minutes from Manhattan (studio),85330,Jean,Queens,Forest Hills,40.71089,-73.85384,Entire home/apt,60,4,97,2019-07-06,4.42,3,273 +20480133,Cosy bedroom in Upper West Side,88787567,Vincent,Manhattan,Upper West Side,40.79787,-73.96802,Private room,60,4,4,2018-06-02,0.22,1,0 +20480431,Charming home away from home,146205943,Jacqueline,Brooklyn,East Flatbush,40.66393,-73.9279,Entire home/apt,110,1,80,2019-05-26,3.57,1,81 +20480983,Unique Exposed Brick Loft Studio in Townhouse,785524,Eric,Bronx,Concourse,40.81941,-73.92762,Entire home/apt,69,2,98,2019-07-01,4.57,2,193 +20481106,Williamsburg Bridge Views on the Water,146210515,Finley,Brooklyn,Williamsburg,40.71341,-73.96554,Private room,70,4,0,,,1,0 +20481653,Spacious 1bd in the heart of Harlem,80597953,Lauren,Manhattan,Harlem,40.80194,-73.95602,Entire home/apt,125,2,1,2017-08-27,0.04,1,0 +20482130,Beautiful space in Clinton Hill,15443448,Christian,Brooklyn,Clinton Hill,40.68448,-73.96385,Private room,59,3,2,2019-01-02,0.09,1,0 +20482151,Times Square Luxe Studio with Amazing Amenities,10547661,Francis,Manhattan,Hell's Kitchen,40.76557,-73.98949,Entire home/apt,200,3,97,2019-06-23,4.40,1,60 +20482231,Park Slope Sanctuary on F/G/R,10653881,Max And Heather,Brooklyn,Park Slope,40.67242,-73.98614,Private room,70,1,11,2017-11-17,0.49,2,0 +20482284,"Bedroom in the heart of Queens, New York",83185467,Renata,Queens,Astoria,40.76022,-73.92617,Private room,60,1,0,,,1,0 +20482768,Cozy stay in Brooklyn (Sheepshead Bay Area),35040795,Sergii,Brooklyn,Sheepshead Bay,40.58779,-73.94703,Private room,70,1,0,,,1,0 +20483387,Bed-Stuy top floor room w/ extreme natural light,6824234,Stephan,Brooklyn,Bedford-Stuyvesant,40.6897,-73.93078,Private room,50,4,1,2018-01-03,0.05,1,0 +20483469,Large Room at a Three min Walk !,146219213,Keyur,Queens,Forest Hills,40.71677,-73.83398,Private room,65,1,17,2018-04-01,0.78,1,188 +20483744,Be a local in Midtown Manhattan!,126626529,Alfredo,Manhattan,Hell's Kitchen,40.76093,-73.99103,Private room,120,1,112,2019-06-14,5.63,2,76 +20485253,Spacious Bedroom in Luxury Downtown,56656728,Bret,Manhattan,Financial District,40.7105,-74.00641,Private room,95,1,20,2019-06-19,0.88,5,0 +20486011,"Queen w/Private Bath, steps from Central Park !",76729714,Maddy,Manhattan,Harlem,40.79971,-73.95175,Private room,70,4,3,2017-11-05,0.13,1,0 +20491800,Huge 2BR/2BA on border of Carroll Gardens/Gowanus,4376320,Brooks,Brooklyn,Gowanus,40.68003,-73.99039,Entire home/apt,192,2,1,2017-11-26,0.05,1,0 +20493318,Oasis in Brooklyn,13730809,Kevin,Brooklyn,East New York,40.66402,-73.8979,Private room,60,7,22,2019-06-20,0.98,3,68 +20494330,Modern Bushwick Oasis Filled with Light & Art,6503786,Zachary,Brooklyn,Bushwick,40.69467,-73.91444,Entire home/apt,175,4,1,2017-09-04,0.04,1,188 +20494672,Private top-floor in owner occupied Brownstone,71097702,Paula,Brooklyn,Park Slope,40.68107,-73.97876,Entire home/apt,295,30,50,2019-06-11,2.48,2,208 +20495252,Beautiful Room in a Classic Harlem Neighborhood!,126844198,Rahwa,Manhattan,Harlem,40.8255,-73.94119,Private room,50,3,2,2017-10-10,0.09,1,0 +20495736,Brooklyn style & Spacious room - East Williamsburg,8115522,Emilie,Brooklyn,Williamsburg,40.70829,-73.94369,Private room,66,3,4,2018-12-14,0.18,1,0 +20497487,Cozy Entire Apartment near Time Square.,74937144,Pong,Manhattan,Hell's Kitchen,40.76163,-73.99008,Entire home/apt,226,2,73,2019-06-01,3.35,1,56 +20497853,Apartment in heart of NYC with HUGE PRIVATE DECK!,45596004,Eric,Manhattan,Murray Hill,40.746,-73.9777,Private room,250,2,0,,,1,0 +20498261,2300sqft (215m) lofty penthouse heart East Village,3288449,Luca,Manhattan,East Village,40.72868,-73.98244,Private room,530,4,7,2018-01-02,0.31,1,0 +20498407,Your Cozy Home in Astoria,19901294,Paco,Queens,Astoria,40.76255,-73.92347,Entire home/apt,106,4,1,2017-09-10,0.04,1,0 +20498653,Bushwick Renovated Apartment,146342086,Banty,Brooklyn,Bushwick,40.70014,-73.9215,Private room,40,5,48,2019-01-04,2.08,1,341 +20499040,Beautiful room at the heart of Bushwick,146345538,Sergii,Brooklyn,Bushwick,40.69349,-73.91173,Shared room,34,30,2,2018-05-23,0.11,5,365 +20499229,"Big, sunny one bedroom in Crown Heights",9203654,Ryan,Brooklyn,Crown Heights,40.67754,-73.94305,Entire home/apt,140,3,0,,,1,0 +20499306,"Room with a view steps from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.6685,-73.94842,Private room,50,5,0,,,2,0 +20499320,Electric NYC + Luxury Room = Best vacation ever!,1097753,Javier,Manhattan,Harlem,40.81065,-73.9457,Private room,125,3,34,2019-07-01,1.52,1,178 +20499692,Spacious Chelsea Condo MUST SEE,146348944,Pieter,Manhattan,Chelsea,40.74283,-73.99843,Entire home/apt,245,5,48,2019-06-18,2.22,1,46 +20500896,Charming little apartment with back garden C.Park,100835599,Dalina,Manhattan,East Harlem,40.79099,-73.945,Entire home/apt,400,1,0,,,2,364 +20501156,H.O.M.E (House of M.D. Experience),146358413,Sandra,Brooklyn,East New York,40.67585,-73.87307,Entire home/apt,65,2,53,2019-06-08,2.37,1,2 +20501444,Harlem Comfort Blend,101720883,Jean,Manhattan,Harlem,40.81932,-73.94675,Private room,65,2,24,2018-05-26,1.07,1,0 +20503496,Cozy room + bright apartment + rooftop lounge,90237608,Cindy,Queens,Ridgewood,40.69883,-73.90077,Private room,50,1,2,2017-10-14,0.09,1,0 +20503786,Studio for rent,145693309,Max,Brooklyn,Prospect-Lefferts Gardens,40.66202,-73.96195,Entire home/apt,80,16,0,,,1,0 +20503824,Urban Oasis in Brooklyn- 2 blocks from A/C train.,28234612,B,Brooklyn,Bedford-Stuyvesant,40.68017,-73.93674,Private room,150,1,0,,,1,0 +20503833,Private Room By Central Park,16441670,Maya,Manhattan,Upper West Side,40.79738,-73.96332,Private room,77,1,52,2019-06-30,2.41,1,198 +20504269,Private large room in midtown4F,133130315,Artem,Manhattan,Hell's Kitchen,40.76538,-73.98711,Private room,99,4,6,2018-10-21,0.27,6,140 +20504573,Prime Midtown Location - Near Tourist Locations,121869120,Tabitha,Manhattan,Midtown,40.75257,-73.96853,Entire home/apt,127,1,0,,,1,0 +20505271,RESIDENCE NEAR JFK (TB1),145727343,Janelle,Queens,Jamaica,40.68379,-73.79186,Private room,39,1,15,2018-11-04,0.66,3,164 +20505979,L.E.S ROOM Simple Beautiful Clean Apt. 3 Bdr,6725061,Zyanya,Manhattan,Lower East Side,40.71856,-73.98753,Private room,69,4,0,,,1,0 +20506481,Cozy Chelsea Apartment,12552750,Kimberly,Manhattan,Chelsea,40.73982,-74.0011,Entire home/apt,195,1,71,2019-06-24,3.20,1,12 +20506551,Cozy bedroom in a spacious apartment.,111451636,Caleb,Manhattan,Washington Heights,40.84545,-73.94172,Private room,50,2,1,2017-09-11,0.05,1,0 +20511790,JFK Walk-Up Get-Away!,135337934,Steve,Queens,Queens Village,40.70807,-73.73059,Entire home/apt,99,2,15,2019-05-01,0.67,2,90 +20515035,MASSIVE ROOM IN BEAUTIFUL HARLEM BROWNSTONE,23972036,Nicholas,Manhattan,Harlem,40.82325,-73.95122,Private room,75,4,10,2019-03-17,0.44,1,0 +20516112,"Sunny, spacious room in Williamsburg Brooklyn Apt",11418466,Mike,Brooklyn,Williamsburg,40.70994,-73.94867,Private room,89,2,50,2019-06-25,2.35,1,246 +20517554,"*Light & Love* vibrant, historic, sleeps 4",146472361,Jc,Manhattan,Nolita,40.7212,-73.99463,Entire home/apt,265,5,87,2019-06-23,3.79,1,118 +20518193,Luxurious 4 Bedroom 2.5 Bath Duplex in Brooklyn,138770550,Charmine,Brooklyn,Crown Heights,40.67052,-73.93444,Entire home/apt,400,3,19,2019-06-28,1.03,3,97 +20518456,Bright & Luxurious Studio in Financial District,80099199,Sharon,Manhattan,Financial District,40.70744,-74.01521,Entire home/apt,160,4,32,2019-06-30,3.10,1,39 +20520410,MANHATTAN Budget Shared Room East harlem,39657176,Andrew,Manhattan,East Harlem,40.8027,-73.9398,Shared room,75,7,1,2017-08-20,0.04,1,0 +20520689,The Belvedere - A Luxury One Bedroom with Loft,146504288,Rick,Brooklyn,Williamsburg,40.71121,-73.95079,Entire home/apt,175,2,3,2018-12-23,0.27,1,0 +20521092,Bushwick Reading Room,5190439,Armando,Brooklyn,Bushwick,40.70141,-73.92368,Private room,55,1,9,2017-10-01,0.40,1,0 +20521505,1 BR Suite Minutes to Botanic Gardens!,2610288,Laura,Brooklyn,Crown Heights,40.66543,-73.95439,Entire home/apt,105,2,55,2019-06-29,2.47,1,18 +20522061,Fabulous flat iron 2 bedroom 2 bathroom,25043341,Lisa,Manhattan,Flatiron District,40.73969,-73.98962,Entire home/apt,495,1,43,2019-06-09,1.91,1,343 +20523741,Cozy Mini Studio Prvt Bath & Kitchen 15 Mins JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.69006,-73.86917,Entire home/apt,34,2,93,2019-06-30,4.07,2,247 +20523843,"MARTIAL LOFT 3: REDEMPTION (upstairs, 2nd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69467,-73.92433,Private room,0,2,16,2019-05-18,0.71,5,0 +20523979,"1 Bed, 2 Bath Fully Furnished Upper East Side Apt",1188096,Michael,Manhattan,Midtown,40.75751,-73.96464,Entire home/apt,233,90,0,,,1,365 +20524177,"Big Apt/big bedroom, 71st & 1st Ave",10471351,Michael,Manhattan,Upper East Side,40.76834,-73.95647,Private room,85,30,11,2019-03-20,0.55,1,305 +20527413,"Spacious, 2 Story Suburban Retreat in the LES",54401544,Cassidy,Manhattan,Lower East Side,40.71898,-73.98472,Private room,133,2,1,2017-12-03,0.05,1,0 +20529328,Double Bed Private Retreat,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68576,-73.9456,Private room,70,2,57,2019-06-03,2.54,3,324 +20529760,Excellent Double Room,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68609,-73.9448,Private room,70,2,45,2019-06-21,1.96,3,350 +20530264,Great Single Room,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94566,Private room,60,2,60,2019-06-23,2.62,3,355 +20532190,Brooklyn Garden Apartment,166634,Lou,Brooklyn,Brownsville,40.66114,-73.91258,Entire home/apt,300,2,11,2019-06-02,0.57,5,51 +20532490,Beautiful Designer Loft in Williamsburg,2789221,Alex,Brooklyn,Williamsburg,40.70743,-73.96786,Entire home/apt,150,2,8,2018-12-02,0.35,1,0 +20533007,Taaffe Playground 2,3013248,Shane,Brooklyn,Bedford-Stuyvesant,40.69199,-73.95908,Private room,72,1,1,2017-09-08,0.04,1,0 +20534562,Cozy Upper East Side Apartment - 1 bedroom,146620661,Mary,Manhattan,Upper East Side,40.77985,-73.94624,Entire home/apt,200,5,4,2018-09-16,0.18,1,0 +20535577,1 bedroom Aptm+ Guest room close to Prospect Park,59442523,Josh,Brooklyn,Flatbush,40.6531,-73.96331,Entire home/apt,80,1,2,2017-08-25,0.09,2,0 +20535581,Private Room in a Modern Fort Greene Apartment,3283373,John,Brooklyn,Fort Greene,40.68867,-73.97192,Private room,74,7,3,2019-03-27,0.25,1,49 +20537153,West Village-charming studio/amazing location!,30805991,Daniel,Manhattan,West Village,40.73514,-74.00647,Entire home/apt,190,3,2,2017-09-26,0.09,1,0 +20538305,"East Village, Spacious Private Room w Backyard",89501678,Kyle,Manhattan,East Village,40.72104,-73.97991,Private room,78,1,8,2017-08-28,0.35,2,0 +20539089,Sunny Greenwich Village 1 br in best location!,24530399,Delia,Manhattan,West Village,40.73453,-74.00238,Entire home/apt,250,2,2,2017-10-01,0.09,1,0 +20539354,★Luxurious Manhattan's Midtown Resort★ 2 Double's,64065593,ResortShare5,Manhattan,Midtown,40.75172,-73.97212,Private room,198,2,9,2018-10-25,0.40,13,263 +20540868,Cozy apt in Astoria near train and bus,58391491,Juel,Queens,East Elmhurst,40.76546,-73.87201,Entire home/apt,220,1,5,2017-11-09,0.22,5,0 +20541408,Female Only Upper West Side Room,87951927,Jeanie,Manhattan,Upper West Side,40.80046,-73.96598,Private room,75,1,5,2017-09-25,0.22,1,0 +20541640,Boho Chic Brooklyn Heights,11478902,Ben,Brooklyn,Brooklyn Heights,40.69439,-73.99396,Entire home/apt,110,2,1,2017-08-30,0.04,1,0 +20541715,Comfort Zone/spacious condo/3 minutes from subway,146675319,Will,Bronx,Mount Hope,40.85031,-73.90102,Entire home/apt,105,1,23,2019-07-05,1.02,3,6 +20541892,"Lovely Apartment in trendy Astoria, Queens",146677115,Alex,Queens,Astoria,40.76437,-73.91937,Entire home/apt,250,3,3,2018-01-02,0.16,1,1 +20542273,Bright & Sunny Prime Williamsburg Private Room,81287,Jeff,Brooklyn,Williamsburg,40.71012,-73.96462,Private room,150,1,39,2019-06-21,1.72,1,266 +20542510,Room 1 Private Lower Level Getaway w/ Window (Lower Level 1),104927746,Amardeep,Staten Island,Concord,40.59669,-74.08645,Private room,32,4,45,2019-04-21,2.09,7,333 +20547687,Newly listed stylish 2BR duplex in East Village,54501105,Sophie,Manhattan,East Village,40.73055,-73.98928,Entire home/apt,260,3,24,2019-07-01,3.35,2,26 +20548717,A private bedroom in the heart of Manhattan,100836839,Elizabeth,Manhattan,Midtown,40.74983,-73.98646,Private room,70,5,1,2017-09-27,0.05,1,0 +20549878,Bright Apartment Nestled in Hamilton Heights,19537518,Brooks,Manhattan,Harlem,40.82239,-73.95437,Entire home/apt,115,3,5,2018-04-03,0.24,1,0 +20552326,Bedroom #1 in Queens,137838298,Norma,Queens,Jamaica,40.68156,-73.76844,Private room,80,1,19,2019-06-23,0.85,2,177 +20552425,Sun-filled room in the heart of Bushwick,79896285,Amelia,Brooklyn,Bushwick,40.69961,-73.92132,Private room,50,4,0,,,1,0 +20552544,Clean and Cozy Brooklyn Room in Artsy Apartment,57630325,Christopher,Brooklyn,Flatbush,40.65265,-73.96559,Private room,47,1,18,2018-05-22,0.80,1,0 +20553129,Bohemian Sanctuary,11723764,Whitney,Brooklyn,Williamsburg,40.70791,-73.93877,Entire home/apt,97,1,2,2017-08-30,0.09,1,0 +20553159,VERY SPACIOUS COZY ROOM IN HIP EAST VILLAGE AREA,90429772,Hanna,Manhattan,East Village,40.72727,-73.98801,Private room,95,2,26,2019-04-28,1.14,2,1 +20553283,Medical Student Room A : Brooklyn Hospitals,146776990,Rosemarie,Brooklyn,East Flatbush,40.65286,-73.93209,Private room,35,30,3,2018-05-26,0.16,4,342 +20555087,Uptown comfy private large room,90153911,Ronny,Manhattan,Harlem,40.82279,-73.95216,Private room,65,2,2,2017-09-15,0.09,1,0 +20555569,Rooming has never been better. Room #2,95572265,Laura,Brooklyn,Bedford-Stuyvesant,40.67966,-73.9283,Private room,45,3,4,2018-07-28,0.21,2,342 +20556243,"Gorgeous, light-filled two-story apartment",131490584,Bree,Brooklyn,Clinton Hill,40.68557,-73.96056,Private room,60,4,0,,,1,0 +20556539,"Privet guest unit, great location Next to subway!",23262657,Maayan,Queens,Forest Hills,40.71645,-73.85035,Private room,99,1,3,2018-04-29,0.14,2,0 +20556622,Private Cozy Space,48573053,Verona,Queens,Queens Village,40.70414,-73.74418,Private room,35,4,0,,,1,363 +20557017,Cozy Apartment/Near LGA airport and subway,146812160,Bei Lei,Queens,Flushing,40.76069,-73.83338,Entire home/apt,150,1,19,2018-01-10,0.83,1,0 +20557463,Cozy modern room with good company and great view,58231083,Seo Hee,Manhattan,Morningside Heights,40.80389,-73.96541,Private room,50,2,2,2017-09-04,0.09,1,0 +20557646,Small cozy room close to most NYC attractions.,59432400,Anna,Manhattan,Harlem,40.81916,-73.94562,Private room,50,4,20,2019-01-07,0.90,2,3 +20557804,Upper East Duplex with private garden,39927670,Frank,Manhattan,Upper East Side,40.77531,-73.95165,Entire home/apt,151,6,2,2017-09-03,0.09,1,0 +20558461,"Big Private Room in shared apt in Rego Park, NY",146823994,Abdul,Queens,Rego Park,40.73086,-73.85663,Private room,44,2,12,2019-01-01,0.53,1,0 +20561751,阳光民宿 单房干净舒适。“和缘国旅”了解更多旅游、民宿 (Website hidden by Airbnb),105074140,Emmy,Queens,Flushing,40.75472,-73.80417,Private room,38,1,66,2019-02-12,3.50,4,0 +20565375,Luxury New 2 bed Apartment By Central Park North,138765458,Lilian,Manhattan,East Harlem,40.79674,-73.94674,Entire home/apt,325,6,15,2019-05-14,0.68,1,156 +20565481,Historic UES Penthouse/Rooftop Terrace by the MET,146871946,Lauren,Manhattan,Upper East Side,40.7774,-73.96066,Entire home/apt,300,1,0,,,1,0 +20566445,Amazing Backyard Studio (Williamsburg),53821850,Jermaine,Brooklyn,Williamsburg,40.70834,-73.94717,Entire home/apt,139,1,115,2019-06-15,5.06,2,67 +20567374,Top floor apartment above the park,28190733,Richard,Bronx,Kingsbridge,40.88883,-73.90046,Entire home/apt,175,1,10,2018-11-02,0.54,1,0 +20568215,NYC tourism and food just steps away!,93376283,Gabriella,Manhattan,Hell's Kitchen,40.76638,-73.99079,Entire home/apt,168,2,4,2017-11-25,0.20,1,0 +20568978,Cozy 1 Bedroom Apartment,49989254,Zach,Manhattan,Midtown,40.74635,-73.98103,Entire home/apt,250,1,0,,,1,0 +20569589,Beautiful apartment located in Chelsea!,11827970,Elizabeth,Manhattan,Chelsea,40.7382,-73.99844,Entire home/apt,250,3,17,2018-11-24,0.76,1,0 +20570202,Cozy Apartment With Private Backyard,37512618,Chukwudike,Brooklyn,East New York,40.6705,-73.87851,Entire home/apt,100,2,6,2019-02-17,0.26,1,0 +20570291,Lovely and Modern Greenpoint Apartment,44336290,Roya,Brooklyn,Greenpoint,40.72917,-73.95589,Entire home/apt,160,2,3,2017-12-30,0.13,1,0 +20570327,1 Bedroom Presidential - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75287,-73.97352,Private room,449,3,0,,,4,357 +20570865,Modern and Beautiful room in Williamsburg Brooklyn,21058022,Pablo,Brooklyn,Williamsburg,40.70682,-73.94594,Private room,90,4,3,2018-05-04,0.16,3,0 +20571263,Roomy West Village 1 Br near Washington Sq. Park,19336311,Lizzy,Manhattan,West Village,40.72958,-74.00379,Entire home/apt,250,14,0,,,1,0 +20572019,Brooklyn home available,145219249,Dovber,Brooklyn,Crown Heights,40.66592,-73.94266,Entire home/apt,350,2,0,,,1,0 +20572271,5 Mins Walk to Columbia University,11523011,Tiara,Manhattan,Morningside Heights,40.80731,-73.96579,Private room,55,14,3,2019-01-25,0.19,2,164 +20572398,Big room in a great Williamsburg apartment,131950694,Sara,Brooklyn,Williamsburg,40.71475,-73.94197,Private room,70,1,1,2017-08-26,0.04,1,0 +20572472,Unique Fort Greene Getaway with Private Deck,6918423,Emilia And Michael,Brooklyn,Fort Greene,40.68481,-73.9694,Entire home/apt,275,3,62,2019-07-07,2.78,1,310 +20572801,"Beautiful, sunlit private room in Spanish Harlem",133924344,Michele,Manhattan,East Harlem,40.792,-73.94522,Private room,79,1,68,2019-04-27,3.02,1,0 +20572837,Private Room right near SI Ferry,66798529,Courtney,Staten Island,St. George,40.63975,-74.07774,Private room,70,31,0,,,1,365 +20572848,"Large Clean Room, close to the A-Train",146959142,Dorian,Manhattan,Washington Heights,40.84617,-73.93781,Private room,40,3,10,2019-06-22,0.46,1,0 +20573255,1 Bedroom Apt. Minutes from Manhattan - No Parties,146963216,Dora,Brooklyn,Prospect Heights,40.68048,-73.9654,Entire home/apt,105,2,61,2019-06-23,2.72,1,239 +20573565,Spacious room in central Brooklyn location,125692898,Andrea,Brooklyn,Bushwick,40.70463,-73.92428,Private room,70,2,2,2017-09-04,0.09,1,0 +20573818,2BR Apartment in Maspeth,41121514,Esteban,Queens,Ridgewood,40.71239,-73.90517,Entire home/apt,60,6,0,,,1,0 +20574057,"Spacious BK Heights room, walk to Brooklyn Bridge",3376018,William,Brooklyn,Brooklyn Heights,40.69093,-73.9929,Private room,64,7,6,2019-06-11,0.70,1,0 +20575645,Nysa's castle,146988248,Naveed,Queens,Whitestone,40.78881,-73.82882,Entire home/apt,250,2,6,2018-03-08,0.27,1,311 +20580419,Sunset room,145878384,Denise,Brooklyn,East Flatbush,40.65441,-73.93009,Private room,75,3,11,2019-05-22,0.52,7,330 +20581137,Luxury Apartment w/ Amazing Views,39041380,Ashley,Manhattan,Financial District,40.71015,-74.01281,Entire home/apt,275,2,0,,,1,0 +20581430,Large Condo by Fordham University,146675319,Will,Bronx,Fordham,40.85217,-73.90239,Entire home/apt,100,2,2,2019-07-01,1.05,3,26 +20581823,"NO XTRA FEES: Big single room, work station, TV",82889379,Shera,Bronx,Wakefield,40.89756,-73.85639,Private room,50,1,130,2019-06-28,5.76,4,148 +20581903,Astounding room/Upgrade to full apartment,166634,Lou,Brooklyn,Brownsville,40.66255,-73.91342,Private room,49,2,33,2019-06-25,1.55,5,0 +20582759,Charming Brooklyn Heights Apartment,3053304,Christina,Brooklyn,Brooklyn Heights,40.69969,-73.99393,Entire home/apt,125,2,0,,,1,0 +20582991,Private studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74844,-73.97713,Entire home/apt,130,30,1,2017-11-01,0.05,50,364 +20583124,Gorgeous space in brownstone on cobblestone st,123805373,Elizabeth,Brooklyn,Brooklyn Heights,40.693,-73.99774,Entire home/apt,118,1,2,2018-02-25,0.09,1,0 +20583325,Cool studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.7482,-73.97525,Entire home/apt,150,30,4,2019-01-25,0.28,50,333 +20583443,Chic & Sunlit w/ a lovely Private Terrace in LES,1488713,Kelsi,Manhattan,Lower East Side,40.71902,-73.99027,Entire home/apt,300,3,33,2019-06-10,1.44,1,58 +20583769,Comfy Room w/UPGRADE to entire apartment,166634,Lou,Brooklyn,Brownsville,40.66034,-73.91416,Private room,49,2,6,2019-06-11,2.20,5,191 +20584207,Sunny and Large Brooklyn Apartment!,5462007,Hod & Chaya,Brooklyn,Crown Heights,40.66941,-73.93849,Entire home/apt,245,4,8,2019-04-28,0.43,1,5 +20584333,Outstanding Private Room + Bath + Outdoor Space,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95877,Private room,60,1,23,2019-04-14,1.01,3,0 +20584605,Super suite to stay in New York,45623372,Maria Ines,Brooklyn,Williamsburg,40.71358,-73.96421,Entire home/apt,160,7,4,2018-09-28,0.18,1,0 +20586070,UPPER WEST 2BED 2BATH HIGH FLOOR/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.7744,-73.9874,Entire home/apt,275,30,21,2019-06-20,1.26,25,318 +20586647,Large Studio near Central Park,16401899,Christford,Manhattan,East Harlem,40.78998,-73.946,Entire home/apt,120,1,61,2019-06-18,2.67,1,1 +20587057,"Quiet 1BR in Williamsburg BK, 11 min to Manhattan",15723130,Carly,Brooklyn,Williamsburg,40.7138,-73.94001,Entire home/apt,150,3,8,2019-06-02,0.35,1,9 +20587133,"Spacious, bright room in art-filled apartment!",116758734,Amos,Manhattan,Inwood,40.87085,-73.9183,Private room,59,4,19,2018-10-06,0.84,1,0 +20587159,Cozy East Village Studio Apartment,8130515,Jessica,Manhattan,East Village,40.72547,-73.98315,Entire home/apt,150,2,2,2017-09-26,0.09,1,0 +20587567,Cozy Studio Apartment in West Chelsea,4114004,Scott,Manhattan,Chelsea,40.74847,-74.00033,Entire home/apt,154,2,3,2017-12-11,0.13,1,0 +20587755,"Hello, Brooklyn.",4983469,Jonathan,Brooklyn,Boerum Hill,40.68796,-73.98783,Entire home/apt,174,3,5,2017-11-05,0.23,1,0 +20587853,Luxury 1 BR Steps to World Trade Center! #10248,21307389,Emma,Manhattan,Financial District,40.70949,-74.01438,Entire home/apt,250,30,22,2019-06-30,1.00,1,81 +20588062,Perfectly Located Lincoln Center One-Bedroom,147092207,Fernando,Manhattan,Upper West Side,40.7723,-73.98222,Entire home/apt,200,2,3,2018-04-15,0.13,1,2 +20588184,PEPE's PLACE !!!!! Shared Apartment!!!!,147094537,Morgan,Bronx,Concourse Village,40.83206,-73.91969,Shared room,60,1,2,2017-09-21,0.09,1,0 +20589142,Cozy designer room in Art-loving Prime Bushwick,2208374,Elena,Brooklyn,Bushwick,40.70068,-73.92211,Private room,85,3,3,2018-01-04,0.13,2,281 +20589695,Beautiful Home in the Heart of Greenpoint,4033648,Victoria,Brooklyn,Greenpoint,40.72942,-73.95122,Entire home/apt,120,4,9,2019-05-26,0.40,1,10 +20589880,Cute Columbus Circle Apt - Close to Park & Subway,5305576,Leigh,Manhattan,Hell's Kitchen,40.76704,-73.98484,Entire home/apt,115,60,5,2019-02-15,0.42,1,76 +20590180,Secret Garden,127756959,Lawrence & Patrice,Brooklyn,East Flatbush,40.63826,-73.93186,Private room,47,4,21,2019-05-13,0.93,2,320 +20590523,Sunny Hideout in the Heart of Manhattan's LES,4530544,Daniel,Manhattan,Lower East Side,40.72153,-73.98765,Entire home/apt,150,3,28,2019-06-17,1.25,1,1 +20590743,Large one bedroom Greenpoint,3519805,Fabien,Brooklyn,Greenpoint,40.72816,-73.95528,Entire home/apt,140,2,4,2018-12-24,0.19,1,0 +20590800,"5Star Super Convenient & Spacious BR, 1st Flr Apt",6745095,Walker,Brooklyn,Crown Heights,40.66925,-73.92663,Private room,65,2,81,2019-06-27,3.61,1,64 +20591404,Charming Room with Private Bathroom,126626529,Alfredo,Manhattan,Hell's Kitchen,40.76121,-73.99053,Private room,140,3,116,2019-06-22,5.70,2,82 +20591509,Garden Light,127756959,Lawrence & Patrice,Brooklyn,East Flatbush,40.63972,-73.93234,Private room,47,4,27,2019-06-22,1.19,2,317 +20591534,Cozy Modern Apartment w/ Courtyard,1261893,Yannick,Brooklyn,Greenpoint,40.72085,-73.94132,Entire home/apt,100,2,5,2018-05-28,0.23,1,0 +20593268,"Convenient and Modern BR in Hell's Kitchen, NYC!",147148796,Madison,Manhattan,Hell's Kitchen,40.75613,-73.99785,Shared room,70,1,0,,,1,15 +20597491,Very Nice Apartment close to JFK Airport!!,147184528,Yvette,Queens,South Ozone Park,40.66789,-73.79197,Entire home/apt,62,1,53,2019-06-25,2.36,1,178 +20599017,Lower East Side Private room.,6699943,Rik,Manhattan,Lower East Side,40.72103,-73.98434,Private room,188,2,2,2019-01-29,0.09,1,0 +20599362,1.5 bedroom in Williamsburg,11573901,Christine,Brooklyn,Williamsburg,40.711,-73.95827,Entire home/apt,185,2,1,2017-09-08,0.04,1,0 +20600247,EXTRAVAGANT RESORT In the ❤️ of Midtown 45 Resort,64065593,ResortShare5,Manhattan,Midtown,40.753,-73.97364,Private room,252,2,3,2018-10-20,0.16,13,327 +20600357,"Experiencing Tranquility in Private Home, Room # 1",147210078,Bruce & Cyrina,Brooklyn,Flatbush,40.65108,-73.95417,Private room,44,2,38,2019-06-22,1.67,4,0 +20602769,Huge 2 BR & 2 Bth Duplex w/ Private Patio & Roof,24323380,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69315,-73.9565,Entire home/apt,180,3,1,2017-12-16,0.05,1,0 +20603008,Cozy Room in Brooklyn (5 min from J train),142398188,Holly,Brooklyn,Bedford-Stuyvesant,40.69268,-73.93054,Private room,50,5,1,2017-09-04,0.04,1,6 +20604857,Empire St View Luxury 3BR 2BA Penthouse BalconyGym,40042311,Antonya,Manhattan,Murray Hill,40.74699,-73.9777,Entire home/apt,799,5,1,2018-07-28,0.09,1,359 +20604989,Very Clean Condo In the Heart Of Trendy Greenpoint,10768717,Sal,Brooklyn,Greenpoint,40.7324,-73.95091,Entire home/apt,180,2,49,2019-06-09,2.18,1,60 +20605308,Charming and Bright 1 bdr apartment in Noho,147256218,Siria,Manhattan,NoHo,40.72788,-73.9939,Entire home/apt,180,2,18,2018-10-16,0.79,1,0 +20605399,Brooklyn travel house #6,145802745,Jerry,Brooklyn,Borough Park,40.6357,-74.00508,Private room,170,5,16,2019-03-17,0.70,1,354 +20607037,Midtown East 2 Bed/2 Bath Elevator Building Apt,47267079,Tripp,Manhattan,Murray Hill,40.74838,-73.97544,Entire home/apt,186,7,9,2018-03-31,0.41,1,0 +20607505,Grand Central/ United Nations! MASTER Bedroom,25157246,Cindy,Manhattan,Midtown,40.75212,-73.96975,Private room,82,30,0,,,2,326 +20607771,Clean room 4 blocks to the N/W Train,76829914,Erik,Queens,Astoria,40.76398,-73.91974,Private room,90,5,2,2017-09-20,0.09,1,83 +20607819,"1,600sq ft modern duplex in new harlem brownstone",147118920,Harlem,Manhattan,East Harlem,40.80924,-73.93873,Entire home/apt,172,2,63,2019-06-19,2.78,1,0 +20608040,Private Room in Cozy shared apt in Williamsburg,6757221,Athina,Brooklyn,Williamsburg,40.70739,-73.94726,Private room,60,6,3,2018-07-30,0.14,2,254 +20608117,"Sunny, Quiet Room in Greenpoint",1641537,Lauren,Brooklyn,Greenpoint,40.72462,-73.94072,Private room,0,2,12,2017-10-27,0.53,2,0 +20609505,Your favorite room,82189528,Lara,Manhattan,Washington Heights,40.84131,-73.93574,Private room,52,2,1,2017-09-21,0.05,1,0 +20614043,Charming home away from home.,147339774,Keverel,Brooklyn,Crown Heights,40.66978,-73.94454,Entire home/apt,184,2,40,2018-09-24,1.78,1,0 +20614820,Bright & Spacious Chinatown Loft,75109,Jaymie,Manhattan,Chinatown,40.71618,-73.99225,Entire home/apt,145,4,13,2019-07-02,0.60,1,68 +20614953,large serene room available in brooklyn duplex,129242503,Rachel,Brooklyn,Bedford-Stuyvesant,40.69189,-73.95936,Private room,65,2,1,2017-09-04,0.04,1,0 +20615793,Quaint Loft near Broadway minutes to Central Park,3449385,JimiBeth,Manhattan,Upper West Side,40.79273,-73.97592,Entire home/apt,100,4,32,2018-07-28,1.51,1,0 +20615932,1 Bedroom Garden Level Apt In Bushwick,73498715,Jonathan,Brooklyn,Bushwick,40.69677,-73.91404,Entire home/apt,74,7,9,2019-06-17,0.42,1,61 +20616239,Beautiful Nolita Apartment,7941058,Levi,Manhattan,Lower East Side,40.721,-73.99147,Entire home/apt,200,2,3,2017-12-22,0.15,1,38 +20616492,Private West Village apt by Washington Square Park,5637573,Russell,Manhattan,Greenwich Village,40.7328,-73.99899,Entire home/apt,175,1,39,2019-06-13,1.75,1,55 +20616864,Private 1 Bedroom Apartment Manhattan,105462484,Leo,Manhattan,East Harlem,40.78784,-73.94931,Entire home/apt,130,1,4,2017-10-25,0.18,1,0 +20616888,"Experiencing Tranquality in Private Home, Room #2.",147210078,Bruce & Cyrina,Brooklyn,East Flatbush,40.65226,-73.95166,Private room,48,2,60,2019-06-28,2.63,4,9 +20616929,Spacious 1 Bd. Apt. Inwood near Fort Tryon Park,1524708,Galen,Manhattan,Inwood,40.85927,-73.92966,Private room,200,3,1,2017-10-24,0.05,1,0 +20616948,AMAZING AND QUITE 2 BEDROOM APARTMENT ON SOUTH ST.,76104209,Rated,Manhattan,Financial District,40.7074,-74.00151,Entire home/apt,205,30,1,2018-10-11,0.11,33,332 +20617748,Deanna place,31884399,Daniel,Queens,Laurelton,40.68507,-73.73342,Entire home/apt,90,15,0,,,1,180 +20619757,Bed Stuy Renovated Gem,123849755,Gabe,Brooklyn,Bedford-Stuyvesant,40.68303,-73.95431,Entire home/apt,130,3,58,2019-06-18,2.63,1,295 +20620313,Modern Luxury Brooklyn Private Bedroom w/ Deck!,5291405,Ralph,Brooklyn,Clinton Hill,40.68153,-73.9605,Private room,149,2,5,2018-06-04,0.22,1,0 +20620647,Studio Deluxe 1 - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.7538,-73.97355,Private room,389,3,3,2017-09-14,0.13,4,357 +20620681,Private Duplex in East Village,42951815,Paul,Manhattan,East Village,40.72321,-73.98327,Private room,250,2,0,,,1,0 +20621413,2-Bedroom Presidential 1 - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75371,-73.97226,Entire home/apt,699,3,3,2019-04-11,0.20,4,324 +20621540,Spacious Room in Fort Greene,3490097,Victoria,Brooklyn,Fort Greene,40.68703,-73.97575,Private room,67,3,1,2017-09-12,0.05,1,0 +20622747,Midtown East Studio,2409706,Christopher,Manhattan,Murray Hill,40.74969,-73.97937,Entire home/apt,135,2,5,2018-12-07,0.23,1,0 +20622825,Sunny loft,9704072,Staccey,Brooklyn,Bushwick,40.70763,-73.92223,Private room,90,1,0,,,1,0 +20623171,"East Village, Private Room",89501678,Kyle,Manhattan,East Village,40.72132,-73.98068,Private room,83,2,1,2017-08-27,0.04,2,0 +20624287,Spacious & comfy BK bedroom 30mins from Manhattan.,76765350,Perin,Brooklyn,Bedford-Stuyvesant,40.68163,-73.95558,Private room,37,7,15,2019-02-14,0.70,2,71 +20624427,Private room in quiet West Harlem Upper Manhattan,128227275,John,Manhattan,Harlem,40.82736,-73.95292,Private room,65,1,41,2019-07-06,1.84,1,81 +20624541,Modern apartment in the heart of Williamsburg,10132166,Aymeric,Brooklyn,Williamsburg,40.70838,-73.94645,Entire home/apt,0,5,3,2018-01-02,0.15,1,73 +20624666,Sunny 1 BR with Amazing Views,17090405,Mazdak,Brooklyn,Crown Heights,40.67502,-73.95732,Entire home/apt,100,1,2,2017-09-15,0.09,1,0 +20624817,Co-op Apartment in The Lombardy Hotel- 300 sq. ft.,100829279,Ian,Manhattan,Midtown,40.76033,-73.96946,Entire home/apt,270,1,154,2019-06-19,6.78,3,234 +20628186,Medical Student Room B : Brooklyn Hospitals,146776990,Rosemarie,Brooklyn,East Flatbush,40.65312,-73.93413,Private room,35,30,5,2018-12-29,0.22,4,263 +20630578,Large Studio September 24th-October 15th Midtown,147495455,Laurent,Manhattan,Kips Bay,40.7433,-73.9807,Entire home/apt,120,20,0,,,1,0 +20631204,BED-STUY BRILLIANCE - Cozy/Spacious Private Room,147500609,Duane,Brooklyn,Bedford-Stuyvesant,40.68539,-73.93638,Private room,67,2,23,2019-01-02,1.03,1,0 +20632255,Private bedroom in Upper East Side apt w/ balcony!,90748448,Christina,Manhattan,Upper East Side,40.77439,-73.95489,Private room,85,2,2,2017-10-01,0.09,1,0 +20634473,Large and Sunny 2 bedroom close to Central Park,147528441,Michael,Manhattan,Upper East Side,40.77205,-73.95128,Entire home/apt,225,2,3,2018-12-02,0.13,1,0 +20634950,Waterfront Condo with private bedroom and bathroom,25518844,Alison,Brooklyn,Greenpoint,40.72992,-73.96,Private room,200,2,11,2018-10-07,0.51,1,179 +20635939,Studio Deluxe 2- Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75328,-73.97193,Private room,389,3,2,2017-10-20,0.09,4,357 +20636416,"Sunny Williamsburg Loft, minutes to Manhattan",57641560,Christopher,Brooklyn,Williamsburg,40.71453,-73.9551,Entire home/apt,182,5,62,2019-06-24,2.83,2,28 +20636888,tidy room with PRIVATE BATH & PRIVATE ENTRANCE,124860677,Jim&Lisa,Queens,Flushing,40.75777,-73.81172,Private room,54,2,65,2019-07-03,2.88,6,361 +20636966,Beautiful Lower East Side Loft,1521723,Nick,Manhattan,Lower East Side,40.7147,-73.98994,Entire home/apt,400,3,5,2019-07-04,0.24,1,26 +20638833,Private room,147567811,Renaldy,Queens,Astoria,40.77326,-73.92677,Private room,50,4,1,2017-09-22,0.05,1,0 +20639280,Prime Location close to Central Park!,5137740,Stefanie,Manhattan,Upper West Side,40.78696,-73.97293,Shared room,125,3,0,,,1,0 +20639311,"Modern, Quiet & Ultra Clean 1 BDRM Steps Subway",34379227,Jamie,Queens,Sunnyside,40.74317,-73.92532,Entire home/apt,140,3,40,2019-07-02,1.76,1,42 +20639628,Spacious comfortable master bedroom with nice view,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68173,-73.91342,Private room,0,1,93,2019-06-15,4.28,6,176 +20639792,Contemporary bedroom in brownstone with nice view,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68279,-73.9117,Private room,0,1,95,2019-06-21,4.37,6,232 +20639914,Cozy yet spacious private brownstone bedroom,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68258,-73.91284,Private room,0,1,95,2019-06-23,4.35,6,222 +20639971,~The Perfect Funished Studio in Greenwich Village~,147579400,Steven,Manhattan,Greenwich Village,40.73056,-73.99357,Entire home/apt,99,1,0,,,1,0 +20640353,Beautiful Bright Stay in Williamsburg,3363377,Eryka,Brooklyn,Williamsburg,40.70942,-73.94897,Private room,105,2,48,2019-06-22,2.14,2,46 +20641332,COZY L.E.S APARTMENT,108894035,Danny,Manhattan,Lower East Side,40.72008,-73.98786,Entire home/apt,139,5,12,2019-04-28,0.56,1,25 +20641534,❤️Quiet room w/PRIVATE BATHROOM near Manhattan!⭐️,60908748,Maria,Brooklyn,Bushwick,40.70011,-73.92241,Private room,100,1,132,2019-06-20,5.88,2,74 +20641793,Modern Studio 1 block away from the beach,725286,Michael,Brooklyn,Brighton Beach,40.57688,-73.95308,Entire home/apt,130,3,22,2019-06-20,0.99,1,134 +20645320,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,76104209,Rated,Manhattan,Upper West Side,40.77068,-73.98674,Entire home/apt,229,30,0,,,33,364 +20649144,Private & Cozy Room. 20 minutes from Times Square,139119594,Oscar,Manhattan,Harlem,40.82232,-73.93647,Private room,77,3,92,2019-07-01,4.10,1,200 +20649522,"Bushwick, Spacious Private Room with Balcony",21227711,Merrill,Brooklyn,Bushwick,40.69543,-73.92324,Private room,75,4,4,2017-09-25,0.18,1,0 +20649687,"Simple, bright and quiet studio",5731144,Gwen,Manhattan,Washington Heights,40.84877,-73.93821,Entire home/apt,65,4,0,,,1,0 +20649922,Sunny room in the heart of WILLIAMSBURG Brooklyn.,21921891,Manuel,Brooklyn,Williamsburg,40.71215,-73.95177,Private room,80,5,1,2017-08-25,0.04,1,0 +20649927,Spacious Modern King size living space & Bedroom,147668954,Nancy,Brooklyn,Fort Hamilton,40.61765,-74.03406,Private room,125,9,0,,,1,365 +20650006,"Beautiful spacious room, easy city access",10414799,Katharina,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93864,Private room,65,3,15,2019-06-03,0.67,2,109 +20650014,EMPIRE STATE BUILDING APARTMENT,21328739,Rammi,Manhattan,Kips Bay,40.74266,-73.9792,Entire home/apt,220,7,36,2019-06-22,1.65,1,91 +20650417,"Sunny, Relaxing Oasis in Williamsburg",2203563,Sarah,Brooklyn,Williamsburg,40.71194,-73.94892,Private room,150,2,0,,,1,0 +20650685,Cozy and Sunny Room Queen Size Bed in Bedstuy,8671974,Laure,Brooklyn,Bedford-Stuyvesant,40.68919,-73.9335,Private room,60,2,1,2017-09-02,0.04,1,365 +20651049,Spacious Designer Loft in South Williamsburg,454274,Linda,Brooklyn,Williamsburg,40.70789,-73.96755,Entire home/apt,180,5,12,2018-06-10,0.57,1,0 +20651136,"Private 1 bed 1 bath- Chelsea, Manhattan",44170535,Caitlin,Manhattan,Chelsea,40.7459,-73.99867,Private room,165,3,4,2017-10-10,0.18,2,0 +20651206,Private bedroom in East Village,99791908,Lera,Manhattan,East Village,40.72945,-73.98203,Private room,75,1,3,2018-05-26,0.21,2,0 +20651451,"Perfect place for tourist, near subway, restaurant",141012246,Ayodeji,Manhattan,Harlem,40.81793,-73.94017,Private room,100,1,9,2018-10-28,0.40,2,90 +20651581,Sunset Park Studio,101533618,Jim & Barbara,Brooklyn,Sunset Park,40.65198,-74.00763,Entire home/apt,120,2,7,2018-06-30,0.50,1,0 +20652600,"Sun Drenched, Extra Large 1 Bdrm Clinton Hill Apt",147688555,Kenya & Paul,Brooklyn,Bedford-Stuyvesant,40.68459,-73.95732,Entire home/apt,179,3,52,2019-06-26,2.39,1,185 +20652607,SKYBLUE,147695010,Anita-Kay,Queens,St. Albans,40.69606,-73.77311,Private room,125,1,0,,,1,179 +20652620,Single Bed A in Sharing Room near Grand Central,147402286,Mizue,Manhattan,Murray Hill,40.75035,-73.97907,Shared room,49,3,93,2019-06-27,4.13,2,26 +20652753,Single Bed B in Sharing room near Grand Central,147402286,Mizue,Manhattan,Murray Hill,40.74946,-73.9785,Shared room,49,3,103,2019-06-25,4.56,2,22 +20653090,"Spacious, private bedroom in Brooklyn",30549225,Spenser,Brooklyn,Bushwick,40.70188,-73.92062,Private room,90,4,17,2019-06-09,0.76,1,0 +20653520,"Experiencing tranquility in Private Home, Room #4",147210078,Bruce & Cyrina,Brooklyn,Flatbush,40.64923,-73.95273,Private room,50,2,26,2019-06-29,1.16,4,0 +20653657,️CENTRALLY LOCATED️- Great for Families + Groups,147683950,Devin,Manhattan,Hell's Kitchen,40.76154,-73.99306,Entire home/apt,499,2,16,2019-01-25,0.75,1,240 +20654072,Quiet&Comfy Private Room near F/G train,104836016,Qingming,Brooklyn,Kensington,40.64179,-73.97941,Private room,36,2,13,2019-04-27,0.59,4,231 +20654227,Fulton 2,100069033,Sarah-2,Brooklyn,Cypress Hills,40.68185,-73.88128,Entire home/apt,5000,2,4,2018-01-03,0.18,1,0 +20655740,Penthouse Studio with Queen Bed & Private Rooftop,6655660,Kate,Manhattan,Lower East Side,40.71798,-73.98418,Entire home/apt,275,2,17,2019-05-22,0.76,1,171 +20655777,"Studio apartment by prospect park, catslovers only",147694745,Svetlana,Brooklyn,Flatbush,40.65099,-73.96283,Entire home/apt,80,60,46,2019-01-01,2.05,1,54 +20659193,Great Value! Private room in the northeast bronx,147762665,Jose,Bronx,Wakefield,40.88698,-73.86049,Private room,35,2,16,2019-06-10,1.55,3,156 +20659540,Bright Studio-Bedroom in a loft in ProspectHeights,2807926,Javier,Brooklyn,Prospect Heights,40.67984,-73.9703,Private room,90,2,0,,,1,0 +20659824,☺Kinda feels JUST LIKE HOME! ☺ [BEST RATE],142590597,Joica,Brooklyn,East New York,40.67262,-73.87391,Private room,50,1,3,2018-09-03,0.13,6,179 +20660511,The plaza suite in brooklyn. Bedstuy style,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93975,Private room,250,2,0,,,2,173 +20661572,The printing studio bedroom with garden in Bedstuy !!Brooklyn. Historic neighborhood close to everything ! Full kitchen bathroom BBQ and porch at your disposal. Learn to print !!,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69366,-73.93794,Private room,140,1,0,,,2,173 +20661577,Columbia Neighborhood 1 bedroom apartment,72938614,Ned,Manhattan,Morningside Heights,40.80627,-73.96354,Shared room,125,4,0,,,1,0 +20662043,Brklyn · 2 Cozy Bedrooms one with private bathroom,109016966,Jorge,Brooklyn,East Flatbush,40.64641,-73.94956,Private room,50,1,20,2019-07-05,0.88,1,244 +20662567,Home with Private Terrace Off the Park,147796643,Cole,Manhattan,Upper West Side,40.78875,-73.9679,Private room,150,2,5,2018-09-22,0.22,1,0 +20663286,Bright bedroom in convenient Bushwick w/ Rooftop!,133410060,Guille,Brooklyn,Bushwick,40.69455,-73.92715,Private room,59,1,3,2017-09-12,0.13,1,0 +20663644,Elegant Brooklyn Studio in Luxury Amenity Building,77944774,Jacqueline,Brooklyn,Windsor Terrace,40.64931,-73.9733,Entire home/apt,85,3,12,2019-05-20,0.53,1,5 +20663721,ChuckJohnson's Large Room.,147803075,Damon & Yvonne,Brooklyn,Bedford-Stuyvesant,40.68568,-73.91923,Private room,60,30,5,2018-01-02,0.23,1,178 +20663839,Welcome to YURT -- private room in East Village,147810437,Sarah,Manhattan,East Village,40.72601,-73.97674,Private room,110,7,30,2019-05-09,1.34,2,82 +20663936,"Cozy, private bedroom in Greenpoint/Williamsburg",133843931,Bryan,Brooklyn,Greenpoint,40.72546,-73.95558,Private room,37,1,62,2019-06-30,2.80,2,359 +20663997,"Quiet, spacious room in hip Greenpoint apartment",48608026,Sarah,Brooklyn,Greenpoint,40.7228,-73.94538,Private room,90,1,3,2017-09-30,0.14,1,0 +20664275,Charming 1 bedroom in the heart of NYC,18281493,Alexandra,Manhattan,Kips Bay,40.73963,-73.98166,Entire home/apt,180,5,8,2018-05-07,0.41,1,0 +20664395,Entire Apartment Park Slope,3894387,René,Brooklyn,South Slope,40.6628,-73.98349,Entire home/apt,111,2,1,2017-09-08,0.04,1,0 +20665199,Two bedroom basement apartment!,73228035,Maimi,Brooklyn,East Flatbush,40.66047,-73.93743,Private room,150,3,0,,,2,0 +20665380,Modern 2 bedrooms Apt in brand new building.,8502406,Yassir,Brooklyn,Crown Heights,40.67183,-73.95277,Entire home/apt,135,7,12,2019-06-02,0.79,1,0 +20665530,"LES/Chinatown, Bright & cozy private bedroom",90665647,Alpana,Manhattan,Chinatown,40.71405,-73.99291,Private room,120,3,35,2019-07-05,1.65,1,337 +20667471,Williamsburg Penthouse,136267788,Igor,Brooklyn,Williamsburg,40.72028,-73.94152,Entire home/apt,241,5,4,2018-09-28,0.18,1,0 +20667572,Artist's Room in Prime Bushwick,83948710,Lux,Brooklyn,Bushwick,40.701,-73.91986,Private room,69,1,77,2019-07-07,3.45,2,178 +20668002,Masterbed w/private bath nr G train in BedStuy,147858863,Vandra,Brooklyn,Bedford-Stuyvesant,40.68797,-73.9592,Private room,150,1,0,,,1,0 +20671003,Charming 1 br apartment,140492812,Andrew,Brooklyn,Bushwick,40.70587,-73.92358,Entire home/apt,94,2,13,2018-04-15,0.57,2,0 +20673104,Affordable 2 Bedroom on the UES!!!,10774442,Zoe,Manhattan,Upper East Side,40.76644,-73.95486,Entire home/apt,130,3,3,2017-09-28,0.13,1,0 +20673848,Big One Bedroom Directly Across from Central Park!,73597988,Shaye,Manhattan,Upper West Side,40.79982,-73.96058,Entire home/apt,135,2,1,2017-09-10,0.04,1,0 +20674176,Nice room midtown Manhattan 6rs,133130315,Artem,Manhattan,Hell's Kitchen,40.76506,-73.98567,Private room,70,3,6,2019-01-03,0.41,6,225 +20674600,Modern luxury king apartment with large windows,20369715,Sam,Manhattan,Hell's Kitchen,40.7646,-73.98981,Entire home/apt,290,2,1,2017-09-09,0.04,1,0 +20674622,Entire Floor in 1870 Downtown Brooklyn Brownstone,33204787,Yaimara,Brooklyn,Gowanus,40.68289,-73.98532,Private room,95,2,21,2018-01-06,0.94,1,0 +20675077,Sunny Room in Williamsburg- One Block from L Train,118251350,Jake,Brooklyn,Williamsburg,40.71122,-73.94347,Private room,53,3,4,2017-09-01,0.18,1,0 +20675149,"Beautiful, Bright Room Right On Block of G Train",2766813,Chase,Brooklyn,Bedford-Stuyvesant,40.68939,-73.95418,Private room,58,3,5,2018-05-22,0.22,1,0 +20675173,"Luxury duplex, Brooklyn Museum",24333820,Nick,Brooklyn,Crown Heights,40.6753,-73.96282,Private room,80,3,2,2017-09-26,0.09,1,0 +20675762,Medical Student Room C,146776990,Rosemarie,Brooklyn,East Flatbush,40.65286,-73.93371,Private room,33,30,1,2019-06-12,1,4,245 +20676192,30+Day Stay:1000 sq Bsmt Great Living with Deck,137522531,Ali,Queens,Flushing,40.75607,-73.80964,Entire home/apt,198,7,4,2019-06-12,0.18,7,365 +20676841,Private room 15 MINS AWAY FROM FERRY by bus,147952036,Mimi,Staten Island,Rosebank,40.61353,-74.06724,Private room,55,2,88,2019-06-24,4.73,1,114 +20678169,2 beautiful rooms in sunlit Bushwick loft,2793254,Johnny,Brooklyn,Bushwick,40.70408,-73.92045,Private room,150,3,2,2019-05-27,0.80,3,169 +20678183,Great room in the heart of Manhattan !,13287929,Aurélie,Manhattan,East Harlem,40.78602,-73.94977,Private room,100,3,67,2019-07-01,3.06,1,34 +20678724,2 Bedroom Garden Suite (3 Minutes From Train),48980919,Chyanne & Jermaine,Brooklyn,Bedford-Stuyvesant,40.67753,-73.91688,Entire home/apt,129,4,97,2019-07-02,5.02,1,211 +20678802,Beautiful One Bedroom in Little Italy Soho,10457196,Richard,Manhattan,Little Italy,40.71923,-73.99573,Entire home/apt,138,31,4,2019-06-15,0.28,11,93 +20678811,Flatbush Comfy Room (Rm# 2),147972663,Hyacinth,Brooklyn,East Flatbush,40.6485,-73.93855,Private room,40,3,58,2019-06-12,2.57,3,306 +20678858,"One B/R (1 Guest) Near Beach, A & air trains, JFK",139957134,Trudy,Queens,Arverne,40.59736,-73.80029,Private room,35,1,60,2019-06-25,2.73,3,348 +20679072,"One B/R (1-2Gsts) near beach, JFK, A & Air trains",139957134,Trudy,Queens,Arverne,40.59754,-73.79949,Private room,50,1,53,2019-06-27,2.35,3,249 +20679134,Warm Secluded Room in Flatbush (Rm# 1),147972663,Hyacinth,Brooklyn,East Flatbush,40.64991,-73.93716,Private room,40,3,52,2019-06-23,2.34,3,298 +20679146,Private room in Williamsburg with patio,10077970,Alyssa,Brooklyn,Williamsburg,40.71462,-73.96263,Private room,57,1,3,2017-09-16,0.13,1,0 +20679388,SPECTACULAR Midtown East location!,21464170,Js,Manhattan,Midtown,40.7531,-73.97085,Private room,115,1,33,2019-06-23,1.49,1,0 +20679396,旅客之家,64887490,Queen,Queens,Flushing,40.75895,-73.79196,Entire home/apt,80,2,86,2019-06-30,3.83,1,115 +20679565,"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN",1181366,Tristan,Brooklyn,Greenpoint,40.72246,-73.94768,Entire home/apt,210,7,0,,,1,0 +20679666,"RENOVATED 2BR BY CENTRAL PARK, 51 AND 9",22129776,Ali,Manhattan,Hell's Kitchen,40.76363,-73.98746,Entire home/apt,379,1,3,2018-12-08,0.14,3,365 +20680045,Private Room for 1 guest with air conditioner,35242969,Prime,Brooklyn,Bedford-Stuyvesant,40.6824,-73.91315,Private room,48,4,7,2019-06-22,0.31,1,2 +20682422,Private room with all you need,106241822,Lior,Manhattan,Washington Heights,40.85186,-73.9305,Private room,37,3,5,2018-04-06,0.22,1,0 +20682663,Contemporary style 1 bedroom Apt in Manhattan.,10933267,Jade,Manhattan,Inwood,40.86306,-73.92896,Entire home/apt,175,2,38,2019-06-23,1.69,1,244 +20685563,Bright & Airy in Highland Park,143315723,Graziella,Brooklyn,Cypress Hills,40.68201,-73.89425,Entire home/apt,50,30,34,2019-03-16,1.51,1,234 +20685890,"Spacious, and lit 2 bedroom penthouse in the UWS",63510347,Inna,Manhattan,Upper West Side,40.79412,-73.96806,Entire home/apt,173,10,0,,,1,0 +20685952,Summer vibes,129602851,W.,Bronx,Unionport,40.83121,-73.8483,Entire home/apt,450,2,1,2018-02-01,0.06,2,342 +20686099,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78019,-73.95857,Entire home/apt,225,30,0,,,33,365 +20686134,Hideaway Studio,14469743,Brian,Bronx,Pelham Bay,40.84711,-73.83039,Entire home/apt,80,2,66,2019-06-19,3.04,1,56 +20686701,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.7506,-73.97104,Entire home/apt,176,30,0,,,33,365 +20686965,"Beautiful Home in Historic, Ditmas Park, Brooklyn",13804630,Kelsey,Brooklyn,Flatbush,40.64068,-73.9641,Entire home/apt,165,6,0,,,1,0 +20688175,"Luxurious, Spacious, Ensuite Bath, Nice Hosts too",41947929,Connie,Brooklyn,Crown Heights,40.67749,-73.94854,Private room,125,1,32,2019-06-29,1.50,2,351 +20688359,GRAMERCY EAST 22ND-REFURBISHED WITH LIVE IN SUPER,76104209,Rated,Manhattan,Gramercy,40.73638,-73.98089,Entire home/apt,239,30,0,,,33,242 +20688422,Giant 1br pre-war apartment in Flatbush / Lefferts,1393089,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.66334,-73.94651,Entire home/apt,130,4,17,2019-05-20,0.78,1,110 +20688524,1630 Madison Avenue 4C,130239329,Maria Teresa,Manhattan,East Harlem,40.79633,-73.94819,Entire home/apt,104,30,3,2019-04-27,0.16,1,212 +20688624,Luxury Alcove Studio in Chelsea,979144,Ryan,Manhattan,Chelsea,40.74419,-73.99913,Entire home/apt,225,1,102,2019-07-01,4.55,1,33 +20688793,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70866,-74.01385,Entire home/apt,178,30,1,2018-10-31,0.12,33,327 +20689395,Calm Brownstone Charm in Clinton Hill,5402500,Johanna,Brooklyn,Clinton Hill,40.68541,-73.96188,Entire home/apt,114,12,27,2019-05-07,1.19,1,13 +20689426,Sunny and spacious Brooklyn loft,14120985,Will,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94538,Entire home/apt,130,5,7,2019-06-05,0.52,2,4 +20689498,Historic Brownstone-newly completed renovation,46943042,Andy,Brooklyn,Park Slope,40.67192,-73.97444,Entire home/apt,230,3,12,2019-05-20,0.59,1,354 +20689638,LARGE PRIVATE ROOM CLOSE TO MANHATTAN,139357580,Shuly,Queens,Ditmars Steinway,40.77281,-73.90295,Private room,60,1,3,2017-09-15,0.13,8,129 +20690341,Jeanie's Casita,148074786,Jeanette,Bronx,Morrisania,40.82627,-73.90803,Private room,65,2,0,,,1,0 +20690781,Cozy Soho apartment.,8366847,Jay,Manhattan,Greenwich Village,40.72733,-73.9958,Private room,150,2,1,2018-12-03,0.14,1,0 +20691057,Cozy 2 Bedroom Apt in NYC's hippest neighborhood,33899564,Kayla,Manhattan,East Village,40.72405,-73.97747,Entire home/apt,150,4,6,2017-10-01,0.26,1,0 +20691991,One bedroom with private bathroom in East Village,35875227,Rahul,Manhattan,East Village,40.7293,-73.98283,Private room,100,3,1,2017-09-04,0.04,1,0 +20692159,A Simple Room 35 Minutes From 42nd Street,113152267,Pedro,Bronx,University Heights,40.85657,-73.90915,Private room,55,1,2,2018-03-28,0.11,1,0 +20692462,Fort Greene Jamaican vibes !,35431795,Bels,Brooklyn,Fort Greene,40.69122,-73.96976,Private room,75,3,14,2019-05-14,0.64,1,35 +20692563,Greenwich Village Townhome with Private Garden!,147814925,Lloyd,Manhattan,Greenwich Village,40.733,-73.99413,Entire home/apt,3900,30,7,2018-03-13,0.32,1,180 +20692888,Large Bedroom in Williamsburg 10 mins to Manhattan,3879852,Zaki,Brooklyn,Williamsburg,40.71279,-73.94662,Private room,65,3,1,2017-09-20,0.05,1,0 +20695930,Artistic Historical Harlem! PrivateRm Quiet Haven!,148124467,Lidia,Manhattan,Harlem,40.8098,-73.9441,Private room,89,5,34,2019-06-30,1.58,1,86 +20696496,The Consuello,148130354,George,Brooklyn,Bedford-Stuyvesant,40.68591,-73.9249,Entire home/apt,159,3,36,2019-05-19,1.60,2,2 +20696525,"Cozy, quiet and location, location, location",48581,Sigal,Manhattan,Little Italy,40.71946,-73.99761,Entire home/apt,170,4,0,,,1,0 +20697209,Sunny Jungle Duplex with Private Roof,5717334,Antoine,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95203,Entire home/apt,115,3,5,2018-07-31,0.22,2,0 +20697463,"Quaint, Cozy apartment in Queens",30490972,Kirk,Queens,Ridgewood,40.69748,-73.90127,Entire home/apt,125,3,5,2017-09-25,0.22,1,0 +20697637,Sun-Filled Artist's Duplex In Heart of W. Village,23075166,Hannah,Manhattan,West Village,40.73465,-74.00139,Entire home/apt,325,2,0,,,1,0 +20697910,SUNNY COZY PLACE,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67538,-73.93379,Entire home/apt,165,3,2,2019-04-15,0.16,4,263 +20698073,"Hip Modern Brooklyn Studio, Minutes to Manhattan!",148148402,Gary,Brooklyn,Clinton Hill,40.69167,-73.96927,Entire home/apt,129,2,93,2019-07-01,4.15,1,43 +20698375,Spacious Doorman True 2BR near Grand Central,121809482,Gina,Manhattan,Midtown,40.75052,-73.97259,Entire home/apt,350,3,3,2018-01-01,0.14,2,0 +20698477,Comfortable and pleasant fully furnished apartment,83786650,Bridge,Manhattan,Upper East Side,40.76128,-73.96236,Entire home/apt,90,30,5,2018-10-19,0.25,8,306 +20701904,GRAMERCY SUNNY& WELL APPOINTED-W/DRYER,76104209,Rated,Manhattan,Gramercy,40.73741,-73.98096,Entire home/apt,216,30,0,,,33,364 +20702398,Quiet house on City Island,1457680,James,Bronx,City Island,40.84964,-73.78717,Private room,50,2,45,2019-06-22,2.04,1,118 +20703198,East Village Apartment In The Heart Of It All,72581005,Henry,Manhattan,East Village,40.72792,-73.98288,Private room,110,15,6,2018-06-05,0.27,1,0 +20703786,Short Stay Nook,54081046,Janelle,Brooklyn,East Flatbush,40.63524,-73.94158,Private room,55,4,18,2019-06-11,1.44,1,82 +20704394,Luxury One Bedroom in Financial District,21405142,Charlotte,Manhattan,Financial District,40.70501,-74.00707,Entire home/apt,300,2,21,2018-11-19,1.14,1,0 +20705026,New Clean Private Room In Flushing,137129564,Bing,Queens,Flushing,40.75224,-73.81505,Private room,49,1,77,2019-05-29,3.43,4,362 +20705094,Whitewashed West Village Dream,32689791,Jana,Manhattan,West Village,40.73632,-74.00601,Entire home/apt,158,14,4,2018-03-31,0.18,1,0 +20707361,Cozy and romantic 1 bedroom apt near train,8717872,Natalie,Brooklyn,Bushwick,40.6997,-73.91305,Entire home/apt,97,3,6,2019-07-01,0.33,1,2 +20707376,Adorable and homey Central Park apartment,35959348,Taylor,Manhattan,Upper West Side,40.78965,-73.96993,Entire home/apt,95,1,9,2019-03-24,0.48,1,70 +20707451,"Modern Home, Amazing Location Master Suite",148237535,Jermaine,Brooklyn,Canarsie,40.64162,-73.90891,Private room,100,3,2,2018-01-02,0.10,4,364 +20707833,"Charming, Spacious Private Room in Harlem, NYC",148241246,Ella Jane,Manhattan,Harlem,40.82444,-73.95112,Private room,65,3,69,2019-07-01,3.16,1,57 +20708173,Crown Heights 1 Bedroom,834806,Daniel,Brooklyn,Crown Heights,40.66592,-73.95319,Entire home/apt,100,7,3,2017-11-10,0.13,1,0 +20708246,Comfortable bedroom in heart of Bushwick,11975404,Art,Brooklyn,Bushwick,40.70088,-73.91836,Private room,50,3,22,2019-04-06,0.98,2,0 +20708619,Superhost*Sunny/Private room in 2BR ❤️Williamsburg,15647614,Lin,Brooklyn,Williamsburg,40.71647,-73.95333,Private room,75,1,45,2019-06-21,2.01,2,84 +20709531,Little room for a place to rest,124554019,Eric,Brooklyn,Crown Heights,40.67225,-73.93326,Private room,55,2,4,2018-05-09,0.18,2,0 +20710022,Your Home Away from Home,148261815,Dike,Manhattan,Harlem,40.80171,-73.95122,Private room,55,10,6,2018-09-30,0.28,1,156 +20710208,Brooklyn Garden Guesthouse *1 block to subway*,2462590,Jenny And Mark,Brooklyn,Bushwick,40.69084,-73.92048,Entire home/apt,175,1,47,2019-06-18,2.20,2,336 +20710508,1 bedroom in East Village (private ensuite),25124335,Danny,Manhattan,East Village,40.72987,-73.98283,Private room,100,3,3,2017-11-19,0.14,1,0 +20711342,Great Location - Bedford Bedroom,6520264,Mark,Brooklyn,Williamsburg,40.71702,-73.95732,Private room,75,2,1,2017-09-21,0.05,1,0 +20711362,"Subway-adjacent, spacious bedroom w private deck",7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67865,-73.94231,Private room,75,1,4,2018-04-02,0.25,3,0 +20711534,Lovely bushwick room,8138665,Sophie,Brooklyn,Bushwick,40.70631,-73.91922,Private room,35,7,2,2019-02-18,0.09,1,364 +20711609,"Sunny Room Near Ferry, Train, bars, Restaurants !",148278552,Bertide,Brooklyn,Greenpoint,40.73365,-73.95354,Private room,53,2,0,,,1,0 +20712652,"Beautiful NYC Room - Upper East Side, NYC",38344324,Charles,Manhattan,Upper East Side,40.77237,-73.95275,Private room,95,2,42,2019-01-01,1.90,1,0 +20712708,Gramercy Park Location.. cozy and comfortable!,7077897,Philip,Manhattan,Gramercy,40.73804,-73.98178,Entire home/apt,175,5,3,2019-06-27,0.13,1,65 +20713633,Open Loft 1 BR Private Apt in Chinatown,9399634,Jessica,Manhattan,Chinatown,40.71365,-73.9973,Entire home/apt,180,5,11,2019-04-30,0.56,1,171 +20714088,SPACIOUS CLEAN ROOM 15 MINUTES FROM MAIN STREET,90893179,Sandra,Queens,College Point,40.77773,-73.83237,Private room,55,1,51,2019-06-22,2.29,1,65 +20714304,Awesome Cozy Room in The Heart of Astoria!,118751485,Simon,Queens,Ditmars Steinway,40.77786,-73.90819,Private room,79,7,36,2019-06-15,1.64,1,48 +20714517,Brooklyn Palace,139623237,Audra,Brooklyn,Flatlands,40.61802,-73.92866,Private room,30,2,13,2019-05-31,0.59,1,292 +20714824,Spacious 1 Bed Apartment 20 minutes from Midtown,1424332,Jose,Manhattan,Washington Heights,40.83902,-73.93766,Entire home/apt,50,3,2,2017-10-10,0.09,1,0 +20714992,Large sunny and beautiful room,75587530,Annie,Manhattan,Upper East Side,40.78079,-73.95499,Private room,150,10,0,,,2,0 +20720290,Sophisticated KING 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77832,-73.95657,Entire home/apt,133,30,7,2019-05-31,0.47,91,281 +20722067,2 Bed BK Duplex w/ terrace & amazing NYC view,12147356,Nicolas,Brooklyn,Greenpoint,40.73227,-73.95149,Entire home/apt,496,3,20,2019-06-24,0.92,1,313 +20722247,Private Bedroom in the Heart of Chelsea (3FL/3FR ),40712207,Elsa,Manhattan,Chelsea,40.7416,-74.00082,Private room,75,30,2,2019-05-11,0.17,1,188 +20723015,Welcome to YURT -- beautiful room in East Village,147810437,Sarah,Manhattan,East Village,40.7244,-73.97732,Private room,100,1,33,2019-05-23,1.62,2,124 +20723274,CHIC EVENT SPACE,148391880,Michael,Brooklyn,Flatlands,40.62724,-73.93043,Entire home/apt,1700,1,0,,,1,365 +20724115,*FEMALES ONLY* BEAUTIFUL ROOM in downtown NYC!,103223295,Michela,Manhattan,Chinatown,40.71611,-73.99405,Private room,80,25,8,2018-10-21,0.36,1,0 +20724736,Comfy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80482,-73.95107,Private room,123,2,54,2018-12-27,2.44,2,0 +20725759,"Sunny & Modern Room in Brooklyn, NY",65258155,Marzian,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92706,Private room,30,2,9,2019-01-02,0.40,1,0 +20725853,Cozy Boerum Hill Apartment,148284545,Alex,Brooklyn,Carroll Gardens,40.68225,-73.99116,Private room,50,1,12,2018-07-13,0.54,1,0 +20726517,Penthouse - 2 Floors with Private Outdoor Patio,21531418,Christopher,Brooklyn,Williamsburg,40.70929,-73.95381,Entire home/apt,195,2,9,2019-02-17,0.44,1,0 +20726546,"Manhattan nyc private room A +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81394,-73.95334,Private room,69,2,13,2018-01-07,0.62,9,112 +20728525,Lovely Contemporary Home away from Home,141052003,Nicole,Queens,Jamaica,40.68503,-73.77983,Entire home/apt,150,2,45,2019-06-30,2.01,4,153 +20729133,Cool Brownstone for September,31306976,Hunter,Brooklyn,Bedford-Stuyvesant,40.69155,-73.93662,Private room,49,7,5,2019-04-28,0.23,1,56 +20729174,"Six in the City, Stay in Brooklyn Tour New York!",148444212,Sofia,Brooklyn,East Flatbush,40.65413,-73.94846,Entire home/apt,95,4,55,2019-07-02,2.64,1,22 +20729216,Whole Apt/Private Entry/Free Parking,148444929,Karl,Staten Island,St. George,40.64119,-74.08369,Entire home/apt,109,2,87,2019-07-06,5.08,1,100 +20729530,"Cozy and elegant apartment in New York, entire apt",148448869,Domingo,Manhattan,Washington Heights,40.84492,-73.93891,Entire home/apt,105,2,109,2019-07-05,4.86,1,261 +20729892,Nice and Cozy Room in Astoria Close to Manhattan.,100833625,Yunmi,Queens,Long Island City,40.75401,-73.92013,Private room,49,1,4,2017-11-26,0.19,1,0 +20729909,Two-storey Park Slope Apartment,12776165,Morgan,Brooklyn,Park Slope,40.67884,-73.97493,Entire home/apt,120,3,7,2019-04-28,0.35,1,0 +20729981,"Manhattan nyc private room B +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81225,-73.95197,Private room,69,2,10,2019-01-02,0.47,9,365 +20730848,Central Park and Museum mile Privarte room 105th.,42783238,Thomas,Manhattan,East Harlem,40.79383,-73.94968,Private room,85,1,98,2018-10-15,4.39,2,0 +20730891,Private Studio Sublet in Upper East Side,19141737,Zing,Manhattan,Upper East Side,40.77037,-73.95734,Entire home/apt,120,6,0,,,1,0 +20738759,Sun-Filled Cobble Hill Loft,2687071,Lily,Brooklyn,Brooklyn Heights,40.6904,-73.99376,Entire home/apt,135,3,21,2019-05-05,0.95,1,15 +20738991,Brownstone apartment in Bed-Stuy,37627534,Tim,Brooklyn,Bedford-Stuyvesant,40.68953,-73.93187,Private room,49,2,1,2017-09-11,0.05,1,0 +20739147,Beautiful room+PRIVATE BATHROOM | 20m to Manhattan,128517263,Alina,Brooklyn,Bushwick,40.69855,-73.93671,Private room,100,11,13,2019-03-31,0.60,3,0 +20740322,The Prince - A Nolita One Bedroom Apartment,147647020,Bruce,Manhattan,Nolita,40.72372,-73.99318,Entire home/apt,250,2,0,,,1,2 +20741384,"Experiencing Tranquility in Private home, Room # 3",147210078,Bruce & Cyrina,Brooklyn,East Flatbush,40.64861,-73.94983,Private room,48,2,9,2018-04-01,0.40,4,4 +20741446,"Colorful, Open and Spacious 1br in Inwood!",3731184,Lulu,Manhattan,Inwood,40.8608,-73.9281,Entire home/apt,87,2,5,2019-05-29,0.23,1,20 +20741509,"Hrlem Brownstone,By CentralPark.22 min Time Square",148544231,Khalif,Manhattan,Morningside Heights,40.80841,-73.95625,Private room,85,3,13,2018-08-27,0.59,2,61 +20741563,Back to the 90s Bedroom,38561955,Alex,Brooklyn,Bedford-Stuyvesant,40.68566,-73.92552,Private room,48,1,2,2017-09-30,0.09,1,0 +20743194,Comfy room in Manhattan 4 blocks from central park,104116468,Elias,Manhattan,Harlem,40.80227,-73.9579,Private room,90,3,55,2019-07-02,2.52,1,66 +20743305,"Luxury room w/ balcony, 5 mins to subway",11300359,Maya,Brooklyn,Bushwick,40.69954,-73.93579,Private room,60,5,6,2019-04-16,0.27,1,13 +20743703,Home away from home in Brooklyn,20866359,Sarah,Brooklyn,Crown Heights,40.67542,-73.95107,Private room,50,2,82,2019-06-21,3.70,1,30 +20744284,Sunny Room in Kensington,47343420,Jennifer,Brooklyn,Kensington,40.64493,-73.97327,Private room,85,2,61,2019-06-30,2.71,2,61 +20744490,Williamsburg home away from home,48153723,Dana,Brooklyn,Williamsburg,40.7079,-73.96609,Private room,70,7,8,2018-03-15,0.43,1,0 +20744654,Cozy studio in Park Slope,134264127,Fourth,Brooklyn,Park Slope,40.67454,-73.9841,Entire home/apt,125,2,77,2019-07-01,3.43,1,243 +20744948,Cheap Large Bedroom w/WorkDesk- 10min to JFK/Mall,107455767,Guelma,Queens,Rosedale,40.65429,-73.73432,Private room,45,30,34,2019-05-14,1.52,5,90 +20745030,Spacious Room in Sunny Brownstone (Ft. Greene),23254455,Chandra,Brooklyn,Clinton Hill,40.6866,-73.96761,Private room,88,2,0,,,1,0 +20745174,Room with PRIVATE entrance! Welcome to Upper east!,96064985,Milica,Manhattan,Upper East Side,40.77954,-73.94788,Private room,89,3,9,2019-06-30,1.03,1,18 +20745208,Cheap Small Bedroom w/Desk 10min to JFK & Mall,107455767,Guelma,Queens,Rosedale,40.65251,-73.7365,Private room,42,7,21,2018-06-30,0.94,5,297 +20745223,"Flatbush - Ditmas Park, Brooklyn, NY",19848344,Mauro,Brooklyn,Flatbush,40.6473,-73.96245,Private room,50,2,10,2019-06-28,0.97,1,178 +20745276,"DaDukes ""DC""",139879568,Alberto,Queens,Long Island City,40.76483,-73.94073,Private room,120,1,63,2019-06-19,2.81,6,356 +20746887,"Spacious bedroom, next to Subway, mins to park!",148590716,Ana,Manhattan,Inwood,40.86339,-73.92045,Private room,60,2,75,2019-06-24,3.37,1,332 +20748520,Cozy Spot on the UWS,51447852,Dana,Manhattan,Upper West Side,40.77998,-73.98218,Shared room,62,1,10,2018-08-06,0.45,1,0 +20753634,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.7507,-73.97086,Entire home/apt,175,30,0,,,33,365 +20753678,"LGBTQ+ Super Chill Brooklyn Private Room, JMZ,",46120364,Nate,Brooklyn,Williamsburg,40.70926,-73.95515,Private room,76,1,9,2017-10-15,0.40,1,310 +20754847,Super Comfy Double Bed in new 2 story house!,23861295,Beth,Brooklyn,East Flatbush,40.6435,-73.94011,Private room,47,1,4,2019-06-23,2.73,1,63 +20755049,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75161,-73.97017,Entire home/apt,175,30,0,,,33,365 +20755255,Private 1-bedroom Modern Apt in Upper Manhattan,28337487,Sebastian,Manhattan,Washington Heights,40.84962,-73.94011,Private room,60,1,11,2017-11-02,0.49,1,0 +20755500,SUNNY + MODERN NEW 1 BEDROOM APARTMENT IN BEDSTUY,1180050,Shawn,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95151,Entire home/apt,200,4,2,2017-11-15,0.09,1,0 +20755691,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75145,-73.97011,Entire home/apt,175,30,0,,,33,365 +20755975,Comfy Clean Room Near JFK,148663392,Juan David,Queens,Richmond Hill,40.70305,-73.82687,Private room,55,2,10,2019-01-01,0.46,1,6 +20756864,IN MINT CONDITION-1BR&TERRACE-E 44TH/UNITED NATION,76104209,Rated,Manhattan,Midtown,40.7518,-73.97074,Entire home/apt,220,30,0,,,33,365 +20757519,Sofa bed in bright & beautiful apt (with rooftop),42154911,Hannah,Manhattan,Harlem,40.82992,-73.94563,Shared room,60,2,1,2017-09-03,0.04,2,0 +20757599,Manhattan view in Bushwick,80897490,Steven,Brooklyn,Bedford-Stuyvesant,40.69099,-73.92657,Private room,50,1,1,2017-09-07,0.04,1,0 +20757749,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.74978,-73.96977,Entire home/apt,175,30,0,,,33,365 +20758111,2BR Private Summer Oasis in Manhattan,36170398,Jeff,Manhattan,Harlem,40.82673,-73.94633,Entire home/apt,75,30,0,,,1,32 +20758205,"Peaceful, Spacious and Comfy 3BR Oasis!",94404356,Jonathan,Brooklyn,Williamsburg,40.71972,-73.94337,Entire home/apt,250,3,3,2018-01-01,0.14,2,0 +20758217,Sunny Bushwick Room w/ Rooftop Manhattan View!,6394738,Lindsay,Brooklyn,Bushwick,40.70574,-73.92289,Private room,85,1,14,2018-05-04,0.62,2,0 +20758288,Charming 1 bed in ❤️ of Greenwich Village.,2739935,Brooke,Manhattan,Greenwich Village,40.72894,-74.00018,Entire home/apt,174,3,4,2018-01-03,0.19,1,0 +20758395,Bushwick Oasis,148686255,Jaime,Brooklyn,Bushwick,40.70484,-73.92646,Private room,100,4,6,2018-01-04,0.28,1,0 +20758861,Duplex w private garden - up to 6 guests,148689791,Katherine,Manhattan,East Village,40.72475,-73.97788,Entire home/apt,260,30,0,,,1,330 +20759183,Airy room 2 beds 40 min to Man. Midway LGA/JFK,148692231,Mel & Ruth,Queens,Rego Park,40.71534,-73.85828,Private room,75,3,20,2019-03-24,0.95,1,48 +20760187,Warm Duplex in a Brownstone,9663247,Roland,Brooklyn,Bedford-Stuyvesant,40.68371,-73.9405,Entire home/apt,160,3,20,2019-06-05,0.94,1,136 +20760274,"New Building w/ Rooftop & Laundry, Cozy Room",24417778,Auni (Masroor),Brooklyn,Bedford-Stuyvesant,40.67927,-73.94758,Private room,88,4,1,2017-09-15,0.05,1,0 +20760640,"20 Min to Manhattan, in the Heart of Ridgewood",148705627,Jonathan,Queens,Ridgewood,40.70141,-73.90291,Entire home/apt,170,18,14,2019-01-05,0.64,2,141 +20761244,Best location Large Room in the Heart of Wbrg!,312276,Brian,Brooklyn,Williamsburg,40.7112,-73.95886,Private room,95,2,24,2019-06-06,1.08,1,0 +20761266,Spacious Brooklyn Bedroom Close to Manhattan et al,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69387,-73.94688,Private room,62,3,51,2019-06-21,2.30,3,108 +20761296,Huge Room in Beautiful New Renovated Apartment,146030957,Bryan,Queens,Astoria,40.77028,-73.92112,Private room,45,5,20,2019-06-19,0.89,1,16 +20761404,Cozy Studio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76354,-73.99283,Entire home/apt,100,30,3,2019-06-02,0.21,31,270 +20761753,Large private bedroom near Manhattan.,148681567,Dinara,Queens,Sunnyside,40.74823,-73.91456,Private room,60,4,1,2017-09-20,0.05,1,0 +20761768,"$6,500 p/m or short term, 5 Star, LUX, Clean, Big",22066372,Hutch,Manhattan,Upper East Side,40.76401,-73.95929,Entire home/apt,211,7,29,2019-06-29,1.34,1,237 +20761776,Newly Renovated Apartment in the Heart of Brooklyn,28999705,Maiya,Brooklyn,Park Slope,40.68064,-73.97657,Entire home/apt,100,3,4,2019-05-28,0.18,1,0 +20762089,Charming Boerum Hill Private 2 Bdrm Apt,12680161,Tirinda,Brooklyn,Boerum Hill,40.68418,-73.98373,Entire home/apt,250,1,97,2019-07-02,4.48,2,39 +20762692,Great studio on Restaurant Row in Harlem,32502340,Moya,Manhattan,Harlem,40.8055,-73.95478,Entire home/apt,125,6,8,2018-07-01,0.36,1,0 +20763209,Clean Chinatown Studio,10388662,Frances,Manhattan,Chinatown,40.71515,-73.99863,Entire home/apt,145,4,13,2019-06-10,0.63,1,86 +20763432,Boutique Hotel-Like Room in Brooklyn With A View,4594132,Samantha,Brooklyn,Greenpoint,40.72056,-73.94118,Private room,116,2,58,2019-05-26,2.82,1,0 +20763577,Perfect room for female/steps to Ctral Park+subway,6423626,Jennifer,Manhattan,Harlem,40.80044,-73.95139,Private room,50,28,12,2019-05-08,0.62,1,39 +20763877,Charming 1BR in Lively Bed-Stuy neighborhood,35645777,Yomi,Brooklyn,Bedford-Stuyvesant,40.68251,-73.94102,Entire home/apt,175,2,18,2019-01-01,0.81,1,0 +20766398,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75014,-73.97001,Entire home/apt,175,30,0,,,33,365 +20770222,Clean Comfy 2 Bedrooms with 2. Bathrooms sleeps 6,94713722,Joy,Queens,St. Albans,40.69044,-73.75489,Entire home/apt,246,2,3,2019-03-24,0.15,4,359 +20770559,Big cozy private room next to the Park,4982459,Mariana,Brooklyn,Flatbush,40.65247,-73.96399,Private room,44,3,1,2017-09-20,0.05,3,0 +20770969,<3 Summer in East Village! BEST DEAL,148812441,Emily,Manhattan,East Village,40.72653,-73.98539,Entire home/apt,99,1,33,2019-06-23,1.50,1,269 +20772071,Clean room across the street from the high bridge,128692351,Nahuel,Bronx,Highbridge,40.84101,-73.92626,Private room,62,2,75,2019-06-16,3.34,5,351 +20772204,"NO XTRA FEES, 30 min To Grand Central:Pvt Entrance",82889379,Shera,Bronx,Wakefield,40.89811,-73.85543,Private room,55,1,156,2019-06-30,7.00,4,318 +20772462,"Manhattan nyc private room D + 15 MinTimes Square",57049951,Eliahu,Manhattan,Harlem,40.81316,-73.95176,Private room,69,2,2,2018-10-22,0.10,9,365 +20772583,Luxury Apt in the heart of Harlem,21066170,David,Manhattan,Harlem,40.80605,-73.94889,Entire home/apt,150,5,14,2019-05-24,0.67,1,16 +20772650,Homey and nice furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.76141,-73.96265,Entire home/apt,125,50,0,,,8,176 +20772782,Bushwick Palace,69034515,Alexandra,Brooklyn,Bushwick,40.70353,-73.9288,Private room,80,4,0,,,1,0 +20773084,Lovely room across the street from high bridge.,128692351,Nahuel,Bronx,Highbridge,40.84184,-73.92535,Private room,42,2,92,2019-05-19,4.11,5,311 +20773149,Nice room across the street from the high bridge.,128692351,Nahuel,Bronx,Highbridge,40.84103,-73.92701,Private room,42,2,62,2019-06-24,2.76,5,1 +20773211,"Quiet, Comfortable room near A Express Train",8833868,Susan,Manhattan,Washington Heights,40.85663,-73.93564,Private room,50,4,22,2019-07-02,1.46,1,42 +20773223,"Manhattan nyc private room C +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81404,-73.95233,Private room,69,2,15,2019-06-13,0.70,9,116 +20775039,Great Location - 1BR/Times Square/Hell's Kitchen,148861123,Andrew T,Manhattan,Hell's Kitchen,40.7631,-73.99133,Entire home/apt,145,2,77,2019-06-16,3.62,1,194 +20775370,"Comfy, cozy, private NYC Studio for One!",2650097,Jennifer,Brooklyn,Sunset Park,40.66273,-73.99384,Entire home/apt,58,4,10,2018-07-31,0.45,1,0 +20778074,Queit get away,148897644,Patrick,Brooklyn,Crown Heights,40.6679,-73.93976,Private room,65,1,0,,,1,0 +20780311,Cozy Apartment in Washington Heigths,106863782,Mariarosa,Manhattan,Washington Heights,40.85148,-73.9301,Entire home/apt,175,2,2,2017-11-05,0.09,1,0 +20780654,Private Manhattan Room Close to Train!,11525399,Kellie,Manhattan,Harlem,40.81717,-73.93856,Private room,100,6,21,2018-07-08,0.96,1,87 +20780688,Small studio in the heart of hells kitchen,52287004,Micipsa,Manhattan,Hell's Kitchen,40.76366,-73.99096,Entire home/apt,135,2,65,2019-06-10,3.04,1,59 +20780871,Private Bedroom Living Room w/Exposed Brick,1020539,Dominique,Manhattan,East Village,40.7263,-73.98432,Private room,120,1,2,2018-12-16,0.28,2,0 +20783233,Quirky apt in great area,30536963,Sarah,Brooklyn,Bushwick,40.6958,-73.91362,Private room,49,2,71,2019-06-17,3.22,1,3 +20783553,Lovely Room in a Large Williamsburg Apartment,49154612,Lindsay,Brooklyn,Williamsburg,40.71823,-73.94093,Private room,48,2,3,2018-05-28,0.14,1,0 +20783768,420 Friendly with that Southern Charm,148958163,Charles,Bronx,Wakefield,40.89685,-73.85382,Shared room,55,1,0,,,1,0 +20783811,Eclectic studio steps from Highline Park Chelsea,1911615,Conley,Manhattan,Chelsea,40.74641,-74.0051,Entire home/apt,435,3,3,2018-05-19,0.14,2,0 +20783900,Marvelous Manhattan Marble Hill Private Suites,148960265,Randy,Manhattan,Marble Hill,40.87618,-73.91266,Private room,93,2,7,2018-10-06,0.32,3,0 +20785435,Rest Assured Private room/Ensuite bath nearJFK,94713722,Joy,Queens,St. Albans,40.68998,-73.75477,Private room,60,2,23,2018-11-11,1.23,4,0 +20785941,Spacious and cosy bedroom in the heart of bushwick,69546339,Michael,Brooklyn,Bushwick,40.70246,-73.92417,Private room,42,4,6,2018-07-15,0.27,2,0 +20786121,"Large Room,Private terrace, subway near",48404386,Eric,Queens,Rego Park,40.72684,-73.86409,Private room,40,4,0,,,1,0 +20786225,1 Bedroom for rent -Gorgeous East Harlem Apartment,106555852,Zaza,Manhattan,East Harlem,40.79711,-73.93255,Private room,88,2,34,2019-05-27,1.53,1,86 +20787735,"The Schoolhouse, Garden Floor",44459590,Ian,Brooklyn,Bushwick,40.70015,-73.93951,Shared room,85,1,0,,,1,0 +20788041,Brick City,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67262,-73.92534,Private room,60,2,41,2019-05-31,1.88,4,320 +20788446,Writer's Haven in Prime Bushwick,83948710,Lux,Brooklyn,Bushwick,40.70256,-73.92094,Private room,58,1,79,2019-07-07,3.56,2,178 +20788473,Basin Homes,46253884,Audlyn,Brooklyn,Canarsie,40.62944,-73.89678,Entire home/apt,90,2,73,2019-07-06,3.71,1,318 +20788666,Manhattan Marble Hill Private Sleep'n Suites,148960265,Randy,Manhattan,Marble Hill,40.87519,-73.91245,Private room,65,2,5,2019-06-14,0.23,3,112 +20789361,Private Room in Sunny Apartment - Laundry in unit,5990565,Fiona,Brooklyn,Bedford-Stuyvesant,40.68361,-73.93883,Private room,76,3,6,2018-10-07,0.27,1,0 +20792967,Your Own Flat in Historic Bed-Stuy District,2648270,Jaweer,Brooklyn,Bedford-Stuyvesant,40.68462,-73.93724,Entire home/apt,74,4,1,2017-09-30,0.05,1,0 +20793502,Beautiful Private Bedroom with Balcony,27534002,Mauro,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93191,Private room,95,1,87,2019-06-30,3.91,1,31 +20794628,Williamsburg-Greenpoint Loft,19043884,Aaron,Brooklyn,Greenpoint,40.72591,-73.95645,Entire home/apt,210,2,103,2019-06-22,4.62,1,268 +20794837,One Bedroom,149071197,Sydnee,Manhattan,Harlem,40.8204,-73.93867,Private room,50,1,2,2017-09-10,0.09,1,0 +20794951,"Brand new true 1BD, close to everything!",106894257,Avihay,Queens,Astoria,40.77039,-73.92626,Entire home/apt,93,7,1,2017-09-17,0.05,1,0 +20795854,Full Top Floor of Brownstone in Historic District,69992824,Christian,Brooklyn,Bedford-Stuyvesant,40.68181,-73.94214,Entire home/apt,250,1,3,2017-10-30,0.14,1,51 +20796126,"Bright, Clean + Beautiful West Village 1 Bedroom",10538579,Cyrus,Manhattan,West Village,40.73476,-74.00477,Entire home/apt,269,4,10,2019-03-11,0.47,1,10 +20796595,Nice Room in the upper west Manhathan,145872703,Cesar,Manhattan,Harlem,40.81968,-73.95831,Private room,70,1,36,2019-06-23,1.65,2,169 +20798127,Queen sized bedroom with skyline view - Greenpoint,29516183,Ruben,Brooklyn,Greenpoint,40.73595,-73.95423,Private room,90,5,3,2018-08-22,0.14,1,0 +20799032,Luxury 2 Bedroom Empire Loft,149112195,Patricia,Manhattan,Midtown,40.75341,-73.98504,Entire home/apt,422,5,58,2019-06-16,2.60,1,339 +20799199,Designer's Chinatown Loft,302544,Tess,Manhattan,Chinatown,40.71569,-73.99421,Entire home/apt,250,2,9,2019-07-06,0.46,1,41 +20799506,BunkBeds 5 min to NYC 900Mb Full Closet,30384194,Patricio,Queens,Astoria,40.75713,-73.91334,Private room,99,3,1,2017-09-16,0.05,2,328 +20800449,Sweet Cozy Bedroom with No Cleaning Fee : ),6805463,Marvis,Manhattan,Harlem,40.81561,-73.95393,Private room,65,4,59,2019-06-15,2.71,1,44 +20800988,"Cozy one bedroom aka ""The Green room"" (near JFK)",141052003,Nicole,Queens,Jamaica,40.68496,-73.78194,Private room,55,1,5,2018-10-28,0.27,4,155 +20801388,Spacious gorgeous digs in East Village w elevator,3607821,Julia,Manhattan,East Village,40.72553,-73.98012,Entire home/apt,149,2,5,2018-04-14,0.23,1,0 +20801754,Our Astoria Apartment - (Long Term Rental),6383939,Michael,Queens,Astoria,40.76304,-73.90785,Private room,45,21,9,2019-06-30,0.56,1,58 +20801864,Welcome to a beautiful House in Quiet Bronx,77750223,Mercedes,Bronx,Clason Point,40.81645,-73.86355,Private room,40,3,10,2019-05-19,0.46,2,156 +20802860,Greenpoint Spacious New Room on McCarren Park,11589542,Michael,Brooklyn,Greenpoint,40.72228,-73.94817,Private room,135,2,2,2017-10-15,0.09,1,0 +20802874,Large Sunny apartment,149147829,Kaylin,Bronx,Concourse Village,40.83257,-73.91245,Shared room,45,1,0,,,1,0 +20803220,Romantic NYC Getaway,7913159,Cait,Manhattan,Washington Heights,40.84566,-73.93998,Entire home/apt,75,3,3,2017-12-27,0.14,1,0 +20803227,Central Park north,29766155,Miero,Manhattan,Harlem,40.80099,-73.95105,Entire home/apt,200,1,0,,,1,0 +20803231,Minimal Light-filled Home Near Prospect Park,1143503,Tina,Brooklyn,Windsor Terrace,40.65457,-73.97512,Entire home/apt,145,3,1,2017-10-09,0.05,1,0 +20803637,Spacious 1BR Apt in heart of Gramercy! Sleeps 4,45935256,Bradley,Manhattan,Kips Bay,40.74294,-73.98137,Entire home/apt,160,1,5,2018-06-24,0.23,1,0 +20803845,Newly Renovated Apartment in the Heart of Brooklyn,28341776,Josh,Brooklyn,Park Slope,40.68117,-73.97785,Private room,100,3,81,2019-07-07,3.67,2,42 +20804049,Clean apartment-styled space. 10min from JFK.,148737806,Daré,Queens,Rosedale,40.6622,-73.73135,Private room,58,1,45,2019-07-04,2.02,2,84 +20804083,Sun Drenched Master Bedroom in Brooklyn Apartment,28341776,Josh,Brooklyn,Park Slope,40.68265,-73.97754,Private room,120,3,5,2018-07-29,0.23,2,0 +20804915,Sunny Private Bedroom in a Luxurious Apartment,12972780,Ismail,Queens,Astoria,40.7623,-73.91645,Private room,80,2,26,2019-06-03,1.18,2,364 +20805520,Manhattan room with a fire escape!,149184623,Elina,Manhattan,Washington Heights,40.83636,-73.94487,Private room,65,2,81,2019-07-06,3.80,1,11 +20809263,Elegant Studio Apt in Prospect Heights,87024253,Miguel,Brooklyn,Prospect Heights,40.67935,-73.9723,Entire home/apt,115,2,7,2017-11-27,0.32,1,0 +20809807,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.77981,-73.96031,Entire home/apt,220,30,0,,,33,334 +20810529,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78098,-73.95854,Entire home/apt,225,30,0,,,33,315 +20811403,Large Studio in Forest Hills,95416322,Renee,Queens,Forest Hills,40.7281,-73.84886,Entire home/apt,100,2,18,2019-01-01,0.82,1,0 +20811696,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78015,-73.95852,Entire home/apt,225,30,0,,,33,346 +20812365,Cozy apartment,76227113,Omar,Manhattan,Morningside Heights,40.80246,-73.95972,Entire home/apt,245,2,57,2019-07-05,2.58,1,54 +20812387,Cozy Studio In Crown Heights,149249049,Kyle,Brooklyn,Crown Heights,40.67785,-73.95086,Entire home/apt,80,2,85,2019-06-23,3.94,1,272 +20812587,"Brooklyn At Its Best, Too!",25718914,Ainslie And John,Brooklyn,Prospect-Lefferts Gardens,40.66174,-73.95496,Private room,110,2,43,2019-05-13,1.94,2,182 +20812956,Chic 1 Bedroom with Empire State Views in NYC,27601846,Kristin,Manhattan,Harlem,40.80344,-73.95513,Entire home/apt,183,2,3,2017-09-15,0.13,1,37 +20814067,Queens 20 mins to subway- 15 mins JFK- walk to bus,149265574,Beverley,Queens,St. Albans,40.69514,-73.74902,Private room,55,1,97,2019-07-06,5.23,1,354 +20814478,New York Experience,37038571,Haniel,Manhattan,Upper West Side,40.79796,-73.97255,Entire home/apt,250,2,1,2017-10-09,0.05,1,0 +20815250,A serene apartment to rejuvenate yourself.,12099193,Alex,Brooklyn,Greenpoint,40.73658,-73.95418,Entire home/apt,275,2,0,,,1,0 +20815456,"Quiet/Modern Triplex loft, steps to prospect park!",1334160,Andrea,Brooklyn,Prospect Heights,40.67729,-73.96535,Private room,120,5,37,2019-07-03,1.71,1,135 +20815900,Huge One of A Kind Loft West Village/Meatpacking,6433797,Marlon,Manhattan,Chelsea,40.74039,-74.00029,Private room,89,2,1,2017-09-14,0.05,1,0 +20816828,Spacious Split Level Apartment,149294813,Maggy,Brooklyn,Flatlands,40.62365,-73.93171,Entire home/apt,100,3,17,2019-07-01,1.64,1,89 +20816972,House of Moon Dog,149296548,Eli,Brooklyn,Bushwick,40.69653,-73.91492,Private room,59,3,29,2019-06-24,1.30,1,63 +20817201,Private Room in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71591,-73.95513,Private room,50,4,56,2019-06-20,2.53,4,8 +20817614,Room o4,74633496,Justine,Bronx,University Heights,40.85751,-73.90805,Private room,45,3,12,2019-05-26,0.54,5,365 +20818523,"Cute, airy attic room",28589041,Frankie,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95085,Private room,50,1,1,2017-09-21,0.05,2,0 +20818955,Cozy Room in a Friendly House CLOSE TO SUBWAY,463061,Lise,Queens,Woodhaven,40.69621,-73.8502,Private room,49,2,8,2019-05-19,0.51,2,96 +20819020,Cozy & Charming Uptown NYC Bedroom Near Subway,103380674,Carla,Manhattan,Harlem,40.81867,-73.95293,Private room,55,2,80,2019-04-21,3.60,1,0 +20819116,My Little Cottage,149292557,Kimberly,Queens,Corona,40.75015,-73.85961,Entire home/apt,69,2,166,2019-07-07,7.50,2,140 +20819221,"2 bed, 2 full bath quaint street in Brooklyn",4732049,Sabrina,Brooklyn,Boerum Hill,40.68592,-73.98181,Entire home/apt,275,1,7,2018-12-16,0.43,1,129 +20820399,"Sunny, Happy Space in Manhattan!",149333702,Melissa,Manhattan,Washington Heights,40.84381,-73.9385,Entire home/apt,125,2,4,2018-05-20,0.19,1,0 +20820417,The Penthouse,66096509,Eric,Manhattan,East Harlem,40.79398,-73.94159,Entire home/apt,300,2,14,2019-06-02,0.91,1,179 +20821762,Sunny apartment in the heart of trendy Greenpoint,127726348,Chris,Brooklyn,Greenpoint,40.72917,-73.95131,Entire home/apt,145,30,44,2019-05-25,2.07,1,205 +20823125,PRISTINE STUDIO IN THE HEART OF THE E. VILLAGE,33913938,Luz,Manhattan,East Village,40.72945,-73.97987,Entire home/apt,170,30,136,2019-05-24,6.18,1,291 +20825876,Lo Studio/15 min central park/wifi+ street parking,116839989,Ez,Queens,Astoria,40.76064,-73.92481,Entire home/apt,95,30,48,2019-06-23,2.97,5,217 +20826507,HI END LIVING IN UES LUXURY CONDOS-EAST 80TH ST,76104209,Rated,Manhattan,Upper East Side,40.77123,-73.95041,Entire home/apt,243,30,0,,,33,284 +20826700,Suite Di CLASSE East village-free Str.parking+wifi,116839989,Ez,Manhattan,East Village,40.73105,-73.98195,Entire home/apt,150,30,48,2019-06-24,3.03,5,199 +20826953,Sublet for Oct (Phone number hidden by Airbnb) utilities included,149394434,Jeanette,Queens,Ridgewood,40.7025,-73.90985,Private room,23,1,0,,,1,0 +20827546,Small Bedroom in Dreamy Brownstone,12568104,Brielle,Brooklyn,Williamsburg,40.71353,-73.96453,Private room,60,3,1,2018-03-16,0.06,1,0 +20827640,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70849,-74.01486,Entire home/apt,181,30,0,,,33,329 +20827801,The ocean view room size 12x14,145878384,Denise,Brooklyn,Crown Heights,40.67139,-73.93131,Private room,70,5,11,2019-01-01,0.60,7,278 +20827821,"Harlem intimate room,20 min to Time Square,by Park",148544231,Khalif,Manhattan,Harlem,40.80671,-73.95382,Private room,53,3,5,2018-05-08,0.23,2,89 +20828460,Midtown Apt. with a great view and everything near,149409298,Samantha,Manhattan,Hell's Kitchen,40.76697,-73.99134,Private room,130,1,74,2019-01-15,3.32,1,157 +20829055,3 Bedroom in Great Midtown Location,26490904,Deo,Manhattan,Midtown,40.76114,-73.97596,Entire home/apt,350,30,1,2018-12-18,0.15,4,151 +20830442,Cozy room in lovely apartment close to subway,1939209,Farrel,Bronx,Claremont Village,40.835,-73.91114,Private room,60,4,30,2019-07-07,1.38,2,179 +20832523,cozy & clean room in the Bronx,136104359,Bonissat,Bronx,Concourse,40.83497,-73.9189,Private room,35,7,32,2019-06-25,1.68,1,50 +20832768,Astoria apartment near Manhattan/LaGuardia,42419832,Zachary,Queens,Astoria,40.76271,-73.92213,Entire home/apt,179,3,5,2019-04-22,0.23,1,0 +20833958,The Peach Room,145878384,Denise,Brooklyn,Crown Heights,40.67302,-73.93143,Private room,65,4,17,2019-06-09,0.76,7,303 +20834832,Bright charming studio in quiet treelined Brooklyn,4123240,Rhianna,Brooklyn,Crown Heights,40.67064,-73.9476,Private room,75,4,2,2017-10-01,0.09,1,0 +20835314,My studio,149475464,Rubén,Brooklyn,Williamsburg,40.70732,-73.94385,Entire home/apt,90,2,13,2019-01-04,0.59,1,6 +20835690,CHARMING OLD WORLD FLAT - WEST VILLAGE NEAR SOHO,1651791,Juliana,Manhattan,West Village,40.73145,-74.00184,Private room,114,1,10,2017-11-28,0.47,1,0 +20835909,"2017 Renovated Central Flushing, NYC法拉盛中心的新装修房Wifi",149483822,M,Queens,Flushing,40.75918,-73.82922,Entire home/apt,111,3,22,2019-04-15,0.99,1,96 +20836753,Apartment-Styled space in Queens. 10Min from JFK.,148737806,Daré,Queens,Rosedale,40.66183,-73.72943,Private room,58,1,65,2019-06-30,2.92,2,84 +20836787,450sqft Studio Stunning Water Front Balcony View,123370360,Brandon,Queens,Ditmars Steinway,40.77691,-73.92662,Entire home/apt,95,3,6,2019-06-21,0.28,1,15 +20837712,Beautiful bright 1 bedroom in Greenwich Village,36998610,Cat,Manhattan,Greenwich Village,40.73127,-73.99939,Entire home/apt,220,1,1,2017-09-21,0.05,1,0 +20840987,Sunny & Stylish Room in lush apartment,111969257,Jae,Brooklyn,Williamsburg,40.71725,-73.9438,Private room,99,5,15,2018-08-23,0.71,3,0 +20843601,1 Bedroom in 2 bedroom Apartment,144687507,Mirko,Brooklyn,Flatbush,40.64706,-73.96057,Private room,93,30,1,2019-05-22,0.63,1,0 +20844580,"Pretty 1 bedroom apt, Williamsburg/ Females only",35474485,Michelle,Brooklyn,Williamsburg,40.7069,-73.95372,Private room,55,5,61,2019-07-03,2.84,1,53 +20844601,Ocean Room at Great Location,137264725,Gulcin,Manhattan,Chinatown,40.71364,-73.99153,Private room,50,1,42,2019-06-19,1.91,4,257 +20845031,"Homey Midtown East 1BR w/ Gym, Doorman, near the 6th street by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7451,-73.97915,Entire home/apt,308,30,0,,,232,156 +20845108,Entire Private Brownstone in Brooklyn,39371342,Sam,Brooklyn,Dyker Heights,40.62499,-74.01684,Entire home/apt,150,1,69,2019-06-29,3.15,1,127 +20845735,Cozy Room in Bushwick.,87562955,Kennedy,Brooklyn,Bushwick,40.69813,-73.91991,Private room,35,7,1,2017-10-04,0.05,1,0 +20846343,Bright UES 1-BR. Walk to Central Park and museums,32626265,Jorge,Manhattan,Upper East Side,40.78539,-73.95056,Entire home/apt,150,2,13,2018-12-16,0.69,1,0 +20846687,INVITING BRIGHT & STYLISH STUDIO,57160283,Stephon,Brooklyn,Bedford-Stuyvesant,40.68328,-73.93719,Entire home/apt,75,2,20,2019-02-15,0.90,1,0 +20847505,Charming Apartment on Central Park West!,84932767,Abigail,Manhattan,Upper West Side,40.78717,-73.96806,Entire home/apt,150,1,24,2019-05-02,1.08,1,27 +20848135,Brand New Apt In A Beautiful Elevator Building,149608542,Ramonex,Manhattan,Harlem,40.81643,-73.94042,Private room,65,3,84,2019-06-22,3.80,1,205 +20848925,Modern Loft overlooking McCarren Park,38290241,Dan,Brooklyn,Greenpoint,40.71986,-73.95344,Entire home/apt,350,6,0,,,1,0 +20849060,Sunny 1 bedroom apartment on quiet block,4655461,Fay,Brooklyn,Carroll Gardens,40.6802,-73.99739,Entire home/apt,125,1,117,2019-07-06,5.31,1,15 +20849101,NYC private room in Private house|Mt Vernon area,149618690,Tunzil,Bronx,Wakefield,40.90356,-73.84172,Private room,59,1,11,2019-06-10,0.50,1,35 +20849726,East Village Penthouse Terrace,34692684,Spiritt,Manhattan,East Village,40.72737,-73.98815,Private room,140,2,0,,,1,0 +20850006,Brooklyn’s finest pt. Deux,141931484,Xie,Brooklyn,Canarsie,40.63295,-73.89202,Private room,75,2,19,2019-06-19,1.23,3,331 +20850678,Restaurants- Nightlife- Greenpoint - Williamsburg,56391145,Eric,Brooklyn,Greenpoint,40.72393,-73.95347,Entire home/apt,184,2,0,,,2,0 +20855406,Bedford Bungalow 5 min cab from Williamsburg,45074716,Malcolm,Brooklyn,Bedford-Stuyvesant,40.69211,-73.95496,Entire home/apt,125,1,61,2019-06-19,2.83,1,113 +20857108,Perfect one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74814,-73.97554,Entire home/apt,175,30,1,2018-08-11,0.09,50,365 +20857788,Two bedroom Beauty in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74844,-73.97694,Entire home/apt,367,30,1,2018-08-19,0.09,50,358 +20857866,Nettie's Brooklyn Dream Space,105828086,Nikki,Brooklyn,Flatbush,40.64108,-73.96378,Private room,75,2,25,2019-05-20,1.16,4,0 +20858478,Artist's Studio in historic Manhattan neighborhood,149707913,Christian,Manhattan,Upper East Side,40.77426,-73.94893,Entire home/apt,80,5,0,,,1,0 +20858519,Cozi property near Ocean,7365834,Alex,Brooklyn,Brighton Beach,40.58102,-73.95782,Entire home/apt,137,2,2,2019-06-02,0.30,5,350 +20860184,Fabulous Sun-kissed Room in Heart of Chelsea!,29867167,Jamal,Manhattan,Chelsea,40.74821,-74.0018,Private room,95,1,17,2018-08-31,0.78,1,0 +20860448,"ROOM EN NEW YORK, MANHATTAN",23005126,Juan,Queens,Holliswood,40.71768,-73.77308,Private room,125,3,0,,,1,363 +20861411,East Village Rooftop Oasis w/ Private Entrance!,12374283,Ryan,Manhattan,East Village,40.72411,-73.97826,Private room,150,3,103,2019-07-01,4.71,4,94 +20861983,Spacious Garden Apartment,526338,Frederick,Brooklyn,Bushwick,40.69566,-73.91314,Entire home/apt,115,1,22,2018-05-06,1.01,1,0 +20862285,women only great place in Forest Hills NY,84562428,Liliana,Queens,Forest Hills,40.73715,-73.84792,Private room,45,5,18,2019-06-03,0.83,2,80 +20862947,Yankee Stadium Superhost! A 1BR/1BA City Escape!,125588995,Elliot,Bronx,Concourse Village,40.82638,-73.92225,Private room,55,1,46,2019-07-03,2.16,1,46 +20863180,Perrier Palace,127887992,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69102,-73.94898,Entire home/apt,180,4,2,2017-12-11,0.09,1,0 +20863293,"Bright Private room, perfect for fashion week!",24639450,Sean,Queens,Ridgewood,40.6988,-73.90725,Private room,55,2,0,,,1,0 +20864325,Private 1BR w/ Queen bed & TV next to Central Park,5582262,Anh,Manhattan,East Harlem,40.7954,-73.94926,Private room,99,2,56,2019-06-05,2.54,1,14 +20864878,High Line Sun Drenched Home,13462349,Elvis,Manhattan,Chelsea,40.7469,-73.99494,Entire home/apt,200,2,40,2019-06-19,1.81,1,288 +20870201,Gorgeous Studio + Fully-stocked Italian Kitchen,49700889,Sarah,Brooklyn,Bedford-Stuyvesant,40.68071,-73.91873,Entire home/apt,70,1,15,2017-12-18,0.69,1,0 +20870782,Worlds cutest apt in Boerum Hill / Carroll Gardens,2707299,Samera,Brooklyn,Carroll Gardens,40.68332,-73.99084,Entire home/apt,125,5,40,2019-06-15,1.84,1,88 +20871641,Great location!,15271873,Beth,Manhattan,Upper East Side,40.76117,-73.96104,Entire home/apt,150,7,5,2019-06-04,0.80,1,25 +20872030,"Prime Location in Manhattan, near Central Park",41499146,Arata,Manhattan,Harlem,40.8062,-73.95528,Entire home/apt,164,2,11,2019-06-30,0.51,1,18 +20873223,Sunny and Spacious Private Room,15246227,Lola,Queens,Astoria,40.76059,-73.92168,Private room,101,1,0,,,1,0 +20873362,Williamsburg Bedroom in a Beautiful Home,5278391,Ashley,Brooklyn,Williamsburg,40.71706,-73.94091,Private room,60,2,3,2018-11-02,0.34,2,1 +20873536,"Kings Plz Mall, Flatbush Ave, 30 mins to Manhattan",149867246,Medea,Brooklyn,Flatlands,40.62191,-73.93428,Entire home/apt,130,2,35,2019-07-05,1.59,2,357 +20874101,Airway,149864933,Mauricio,Queens,East Elmhurst,40.764,-73.88718,Private room,150,2,0,,,1,83 +20874344,Green Oasis 15 min from Downtown Manhattan!,36920690,Nik,Brooklyn,Williamsburg,40.71244,-73.94384,Entire home/apt,114,6,2,2018-12-29,0.11,1,0 +20874350,"Söderläge - 3 bedrooms in Williamsburg, Brooklyn",13262918,Glenn,Brooklyn,Williamsburg,40.71075,-73.9564,Entire home/apt,225,2,124,2019-07-07,5.71,3,106 +20874372,2 Bedroom/2 Bath Spacious Loft in Clinton Hill,3905466,Stefanie,Brooklyn,Clinton Hill,40.68657,-73.96003,Entire home/apt,250,3,3,2018-10-08,0.16,1,0 +20874820,Cozy&Quiet One Bedroom Full Unit Near F/G train,104836016,Qingming,Brooklyn,Kensington,40.64099,-73.98029,Entire home/apt,99,2,32,2019-06-10,1.45,4,153 +20874859,Luxury Midtown Manhattan Condo with 24hr Doorman,26390396,Sam,Manhattan,Midtown,40.75288,-73.97703,Entire home/apt,209,2,25,2019-03-03,1.14,1,0 +20876208,"Good Access to Everywhere:)Bushwick, Brooklyn NY",127618565,Takanori,Brooklyn,Bushwick,40.70544,-73.91828,Private room,59,1,90,2019-06-22,4.26,1,42 +20879883,Big Luxury Apartment by Times Square,18213484,Raul,Manhattan,Hell's Kitchen,40.76671,-73.98849,Entire home/apt,300,15,8,2019-05-30,0.37,1,30 +20881198,Cozy private room in Midtown with private bathroom,85016972,Trinh,Manhattan,Hell's Kitchen,40.76495,-73.9853,Private room,160,3,6,2018-05-10,0.27,1,0 +20881375,Cute little room,104300362,Cristina,Queens,East Elmhurst,40.75596,-73.89702,Private room,45,4,17,2019-06-10,0.79,1,314 +20881488,Urban Bungalow Loft in Heart of Williamsburg!,598896,Su,Brooklyn,Williamsburg,40.71992,-73.96029,Entire home/apt,250,2,3,2018-05-12,0.14,2,184 +20881784,"Only woman .. East elmhurts ,queens , ny 11369",149962269,Lore,Queens,East Elmhurst,40.76381,-73.87748,Private room,60,1,0,,,1,359 +20882090,Living room available! Modern apartment in midtown,34506361,Haley,Manhattan,Murray Hill,40.7487,-73.97479,Shared room,120,1,47,2019-05-20,2.20,2,365 +20883446,Private room near train into midtown Manhattan,16323240,Oliver,Queens,Sunnyside,40.7448,-73.92364,Private room,47,2,2,2017-10-16,0.09,2,0 +20884271,Clean and cozy private bedroom in Central Harlem.,68992648,Mariaelena,Manhattan,Harlem,40.81888,-73.94345,Private room,53,2,47,2018-11-21,2.16,1,0 +20886177,Master room w/terrace/private bath near Mall queen,50855262,Fone,Queens,Elmhurst,40.73612,-73.87822,Private room,55,3,10,2018-07-28,0.47,3,0 +20886228,COZY BEAUTIFUL 1 BEDROOM APT FOR 3PPL,142286413,Ramon,Manhattan,Hell's Kitchen,40.76536,-73.98878,Entire home/apt,225,3,104,2019-06-30,4.79,1,34 +20886432,Gorgeous single room in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74722,-73.9186,Private room,78,2,20,2019-07-01,0.91,4,365 +20886536,Comfortable stay,15344412,Abe,Staten Island,New Springville,40.58091,-74.15485,Private room,52,1,74,2019-06-25,3.34,3,78 +20886923,Private bed & bath by JFK & LGA; Easy NYC access!,150019486,David,Queens,Kew Gardens,40.70874,-73.82617,Private room,60,2,137,2019-06-23,6.27,1,32 +20887028,Cozy 2 bedroom apt in Lower East Side,260958,Aura,Manhattan,Chinatown,40.71418,-73.99208,Entire home/apt,161,3,92,2019-06-22,4.73,3,63 +20887352,"Modern, natural light + in the best location",4079889,Natalija,Brooklyn,Williamsburg,40.71253,-73.96123,Private room,150,2,0,,,1,36 +20887992,Homey & Cozy Near Pratt! (Cat Lovers Only),8207362,Karina,Brooklyn,Bedford-Stuyvesant,40.68989,-73.93747,Private room,60,1,21,2019-06-26,0.95,2,82 +20888020,Upper West Side Room,150032863,Ayelet,Manhattan,Upper West Side,40.79499,-73.97669,Private room,75,5,2,2017-09-16,0.09,1,0 +20888408,A Gem in the Heart of Brooklyn_(Rm#1),127345864,Charlene,Brooklyn,East Flatbush,40.64051,-73.93224,Private room,38,7,37,2018-11-15,1.92,4,29 +20888611,Tristan's House,150038776,Jeny,Queens,Long Island City,40.76462,-73.9319,Private room,35,1,16,2019-07-07,1.37,1,95 +20889280,Colorful entire studio with city views by subway!,44707578,Nick,Manhattan,Harlem,40.81953,-73.95665,Entire home/apt,115,5,0,,,1,0 +20895742,Franklin Guest Apt,150111187,Sonya,Brooklyn,Bedford-Stuyvesant,40.6835,-73.957,Entire home/apt,130,2,51,2019-06-10,2.53,1,10 +20895878,Extra Large 1 Bedroom Park Slope / Prospect Park,150044472,Amar,Brooklyn,South Slope,40.66163,-73.98265,Entire home/apt,159,2,5,2018-05-16,0.26,2,0 +20895982,Charming & Cozy Room in East Village Apt!,37904015,Louisa,Manhattan,East Village,40.72413,-73.98216,Private room,83,2,13,2018-07-27,0.61,1,0 +20896281,Sun-filled Park Slope Gem - Location!,10262386,Dylan,Brooklyn,Park Slope,40.67963,-73.97849,Entire home/apt,225,3,12,2019-07-08,0.55,1,47 +20896520,Quaint room in Park Slope with awesome deck,5299551,Gabriella,Brooklyn,Park Slope,40.67781,-73.98083,Private room,70,2,7,2018-05-28,0.32,1,0 +20896775,Cozy Park Slope 1br Bungalo,83798461,Liam,Brooklyn,Park Slope,40.67518,-73.98119,Private room,70,1,4,2017-09-29,0.18,1,0 +20896858,Harlem Cozy Studio,71375344,Roselin,Manhattan,Harlem,40.81301,-73.94502,Entire home/apt,125,4,9,2019-06-08,0.94,1,245 +20897776,AMAZING KING 1 BEDROOM MIDTOWN,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76136,-73.99361,Entire home/apt,125,30,6,2019-07-01,0.29,91,314 +20897863,1st floor room in the heart of Williamsburg,12584768,Blake,Brooklyn,Williamsburg,40.71139,-73.96353,Private room,75,1,0,,,1,0 +20898140,"Long Island city, 15 min to Bryant Park",149722669,Robert,Queens,Long Island City,40.76096,-73.93836,Private room,55,4,0,,,1,0 +20898258,Lower East Side Spot,6349846,Nick,Manhattan,Lower East Side,40.71881,-73.98378,Entire home/apt,198,2,5,2019-04-21,0.23,1,0 +20898536,Bright W.burg 2 bedroom with Giant Private Garden,3002665,Zoe,Brooklyn,Williamsburg,40.71459,-73.94485,Entire home/apt,200,1,17,2019-06-30,0.77,2,87 +20898641,Cabin in Bushwick,19058010,Thomas,Brooklyn,Bushwick,40.69533,-73.9132,Entire home/apt,102,2,10,2018-05-04,0.47,1,0 +20899010,"Historic (& happening!) Prospect Heights, BK",5761096,Leah,Brooklyn,Prospect Heights,40.67556,-73.96427,Private room,80,1,1,2017-09-13,0.05,1,0 +20899758,Hamilton Heights 2 (1/2) bedroom apartment,30491140,Ted,Manhattan,Harlem,40.8292,-73.94742,Private room,350,7,6,2018-08-23,0.34,1,0 +20900299,Artist space,130785115,Samuel,Manhattan,Lower East Side,40.71822,-73.99263,Entire home/apt,140,6,0,,,1,0 +20900400,Amazing loft 1200 sqft in the best of Williamsburg,3273275,Gilles,Brooklyn,Williamsburg,40.71967,-73.96001,Entire home/apt,155,2,6,2019-07-07,0.27,1,4 +20900545,Beautiful Brooklyn Brownstone w/private parking,150159094,Domonique,Brooklyn,Bedford-Stuyvesant,40.69064,-73.93559,Entire home/apt,310,1,77,2019-07-01,3.51,1,347 +20900984,Authentic New York Artist Loft on the Bowery,126466681,Fred,Manhattan,Lower East Side,40.71944,-73.99396,Entire home/apt,525,2,47,2019-07-01,2.19,1,34 +20901715,Harlem Heavenly Apartment,1961411,Vered,Manhattan,Harlem,40.80672,-73.94648,Entire home/apt,200,4,2,2018-08-06,0.09,1,0 +20901820,Hidden Gem in the Heart of Park Slope,41407057,Jason,Brooklyn,South Slope,40.66675,-73.988,Entire home/apt,95,2,4,2018-07-02,0.19,1,0 +20901848,Great budget private room,93025114,Estevan,Brooklyn,Bedford-Stuyvesant,40.67969,-73.93974,Private room,35,3,0,,,1,0 +20902001,"Clean, bright room Williamsburg near L and JMZ .",48276935,Alex,Brooklyn,Williamsburg,40.71229,-73.95782,Private room,150,1,0,,,1,0 +20902644,Cosy & quiet room in Brooklyn steps to the subway,110348515,Pauline,Brooklyn,Greenpoint,40.72965,-73.95707,Private room,98,2,7,2018-04-01,0.34,1,0 +20903359,Prime Location! Luxury Bldg-Lg Rm w/ City Views!,26019828,Sonia,Manhattan,Hell's Kitchen,40.76078,-73.99683,Private room,79,5,1,2017-09-25,0.05,2,0 +20904409,Luxury Tiny house • Ohka,128919111,Journee,Bronx,Allerton,40.86144,-73.86427,Entire home/apt,79,2,95,2019-06-27,4.46,1,225 +20904683,Cozy and Light Filled East Village Apartment,31989023,Carmel,Manhattan,Gramercy,40.73166,-73.98299,Private room,87,3,6,2018-01-01,0.27,1,0 +20912512,Spatious Park Ave Studio,40120855,Matthew,Manhattan,Murray Hill,40.74943,-73.97945,Entire home/apt,210,2,14,2019-06-25,0.64,1,13 +20912583,Classic Harlem Garden Apartment,3557641,Jed,Manhattan,East Harlem,40.80998,-73.93899,Entire home/apt,150,5,31,2019-05-11,1.47,1,24 +20912594,2 bdrm quiet guest area in Times Square Townhouse,12123995,Michal,Manhattan,Hell's Kitchen,40.76104,-73.99255,Entire home/apt,260,2,21,2019-07-03,1.04,2,222 +20912843,East Harlem 1 bed apt- central location!,20625215,Caryn,Manhattan,East Harlem,40.80002,-73.94137,Entire home/apt,121,3,10,2019-06-18,0.51,1,0 +20914119,**Amazing Studio Balcony Steps from Time Square**,52950465,Gal,Manhattan,Hell's Kitchen,40.7605,-73.99189,Entire home/apt,129,30,1,2017-12-05,0.05,12,310 +20914216,2 bedroom Modern Apt. in Prime Williamsburg,85722766,Deniz,Brooklyn,Williamsburg,40.71317,-73.94518,Entire home/apt,90,2,5,2019-06-30,0.23,1,157 +20914425,"Room in duplex w/sep. bathroom, close to J train",878546,Semih,Brooklyn,Bedford-Stuyvesant,40.68859,-73.92238,Private room,100,2,8,2019-02-11,0.38,1,0 +20914711,Two Bedroom Pied A Terre,9215509,Jj,Brooklyn,Clinton Hill,40.68939,-73.96474,Entire home/apt,250,5,6,2019-04-10,0.28,2,354 +20915427,Tiny homes on water,95999344,Marie L,Brooklyn,Mill Basin,40.60903,-73.91846,Entire home/apt,250,1,5,2019-07-07,1.70,1,360 +20915909,Spacious 2-bedroom townhouse apt in Clinton Hill,411697,Daniel,Brooklyn,Clinton Hill,40.68451,-73.96052,Entire home/apt,225,4,29,2019-06-23,2.20,1,43 +20916311,HUGE apartment in Crown Heights,22565156,Melissa,Brooklyn,Crown Heights,40.66689,-73.92806,Private room,45,21,1,2017-10-02,0.05,1,44 +20916679,Oversized Studio Flat,9215509,Jj,Brooklyn,Clinton Hill,40.69072,-73.96539,Entire home/apt,165,14,4,2018-07-27,0.19,2,179 +20917327,AWESOME APARTMENT mins from JFK and LGA,150304209,Melrose,Queens,St. Albans,40.6959,-73.75159,Entire home/apt,85,2,59,2019-06-17,2.69,1,36 +20917712,"@FERRY, Private Cozy Room, Renovated&Stylish.",117492425,Dine,Staten Island,St. George,40.64579,-74.08027,Private room,29,4,61,2019-06-24,2.81,6,178 +20917909,"Huge Room, Access to Garden,Prime Williamsburg",118226205,Sahar,Brooklyn,Williamsburg,40.71732,-73.94027,Private room,85,3,15,2019-06-22,0.70,3,19 +20918376,Big Bright Clean Room Near MANHATTAN and JFK,150345311,Haider & Galiya,Brooklyn,Bay Ridge,40.63498,-74.01966,Private room,75,1,39,2018-08-01,1.81,1,0 +20918850,Upper west side gem,8245913,John,Manhattan,Upper West Side,40.78747,-73.96928,Entire home/apt,330,3,0,,,1,0 +20919726,Cozy room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65027,-74.01101,Private room,79,1,35,2019-06-10,1.60,2,59 +20920048,Cozy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80508,-73.94942,Private room,125,2,70,2019-01-09,3.24,2,0 +20920138,Roomy Riverside Apartment,70932642,Alyssa,Manhattan,Washington Heights,40.83571,-73.94756,Private room,78,2,4,2019-05-18,0.28,1,0 +20923712,Private room in 2br apartment near subway (train),16795575,Zack,Queens,Flushing,40.75484,-73.82323,Private room,70,1,0,,,2,0 +20926018,Beautiful Home in Queens,150420341,LaToya,Queens,Springfield Gardens,40.66257,-73.76514,Entire home/apt,113,2,55,2019-07-01,2.50,1,297 +20926888,Bedstuy/Bushwick 3 FLOOR TOWNHOUSE,11638358,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69031,-73.93903,Entire home/apt,370,5,23,2019-06-23,1.25,2,171 +20927532,Newly renovated garden apartment in brownstone!,1963215,Michael,Brooklyn,Carroll Gardens,40.68227,-73.99948,Entire home/apt,150,30,5,2019-03-06,0.44,1,79 +20927619,PRIVATE CLEAN ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77156,-73.90521,Private room,60,1,48,2019-01-03,2.27,8,128 +20928429,Private cozy room- W 145st & Saint Nicholas Ave,92474771,Gustavo,Manhattan,Harlem,40.8233,-73.94461,Private room,65,1,26,2018-05-12,1.18,1,0 +20928494,"STUNNING, HUGE 1 bed apartment, steps from train!",22721010,Gabrielle,Manhattan,Washington Heights,40.84434,-73.94229,Entire home/apt,103,4,18,2018-11-24,0.84,1,0 +20928856,Charming & Convenient Brooklyn Bedroom,7337775,Lauren,Brooklyn,Crown Heights,40.67394,-73.94991,Private room,60,5,0,,,1,0 +20932707,Great Location to Explore NYC,79534925,Eunice,Manhattan,Upper East Side,40.77751,-73.95575,Private room,65,4,10,2017-12-02,0.46,1,0 +20932773,Well-Located Private Bedroom in Williamsburg,150482893,Devon,Brooklyn,Williamsburg,40.71469,-73.93971,Private room,80,3,2,2017-12-07,0.09,1,0 +20933293,Cozy Moroccan 1BR APT in the heart of Astoria,150489232,Rhita,Queens,Astoria,40.76759,-73.92463,Private room,50,1,142,2019-06-21,6.44,1,115 +20933848,Prime Location of Flushing Queens 豪华卧室 旅途中的家 A,63312104,Max,Queens,Flushing,40.74893,-73.82046,Private room,60,1,39,2019-06-23,1.79,6,359 +20933849,the best you can find,13709292,Qiuchi,Manhattan,Murray Hill,40.75091,-73.97597,Entire home/apt,0,3,0,,,1,0 +20934056,"Beautiful, spacious apartment in Brooklyn",140293912,Awilda,Brooklyn,Kensington,40.64674,-73.97947,Private room,137,3,5,2019-01-02,0.23,3,0 +20934059,"Huge historical 1 bedroom in South Park Slope, BK",30347639,Derek,Brooklyn,Sunset Park,40.66232,-73.9939,Entire home/apt,150,3,5,2019-04-07,0.23,1,83 +20934581,Huge Homey Relaxing room 25 mins from Times Sq!,3630017,Cherie,Manhattan,Washington Heights,40.84594,-73.94039,Private room,65,2,0,,,1,0 +20935059,Spacious bedroom in Artist's Apartment-Atelier,1566510,Nastya,Manhattan,Lower East Side,40.71818,-73.99015,Private room,120,1,72,2019-06-29,3.38,2,50 +20935388,Modern Penthouse Apartment with Private Roof Deck,733286,Doug,Manhattan,East Village,40.72232,-73.98055,Entire home/apt,225,14,1,2017-12-17,0.05,1,0 +20936537,Private Sunny Room with Balcony in Bushwick,71292398,Frances,Brooklyn,Bushwick,40.69827,-73.92493,Private room,50,3,2,2018-12-25,0.10,1,0 +20941086,"Luxury High-Rise, Floor-Ceiling Windows, Balcony",53953736,Billy,Manhattan,Murray Hill,40.74578,-73.97595,Entire home/apt,435,5,7,2019-05-06,0.32,1,22 +20941420,Room in Chelsea,15487773,Sorcha,Manhattan,Chelsea,40.74063,-73.99998,Private room,100,2,4,2017-10-30,0.19,1,0 +20941726,Cozy and comfy apartment in Sunset-Newly renovated,67268840,Men Yee,Brooklyn,Sunset Park,40.65157,-74.01089,Entire home/apt,150,5,47,2019-07-02,2.26,1,76 +20941915,Large Bedroom near Manhattan,150572903,Dimitri,Staten Island,St. George,40.64123,-74.08169,Private room,85,2,0,,,2,356 +20942129,Huge Bedroom with Private bath - Close to Subway,147196210,Dylan,Brooklyn,Bath Beach,40.60303,-73.99596,Private room,69,2,45,2019-06-24,2.05,1,324 +20942199,LUXURY BROADWAY/FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70903,-74.01401,Entire home/apt,235,30,0,,,33,351 +20942352,Private Room in Astoria minutes to NYC,150565606,Mayra,Queens,Ditmars Steinway,40.77864,-73.91445,Private room,47,1,90,2019-05-13,4.13,2,100 +20942873,MOST CENTRAL LOCATION,117287,Lara,Manhattan,Hell's Kitchen,40.76888,-73.98639,Private room,134,2,1,2018-09-30,0.11,3,316 +20943288,Williamsburg's BEST location Apartment,127726243,Daniela,Brooklyn,Greenpoint,40.71951,-73.95397,Entire home/apt,200,7,6,2017-12-10,0.27,1,0 +20943918,Best Space near Manhattan!,33782746,Lu,Manhattan,Roosevelt Island,40.76846,-73.94461,Entire home/apt,150,4,1,2017-12-31,0.05,1,0 +20946154,Prime location.near all 20 mins to manhattan.apt1B,59974573,Taka,Queens,Elmhurst,40.73742,-73.87027,Entire home/apt,99,4,5,2017-11-13,0.23,2,5 +20946693,The Little Nook 1,143041708,Verna,Brooklyn,East Flatbush,40.63568,-73.94746,Private room,70,4,0,,,1,88 +20947437,UES Renovated Safe Location,100685031,Marvin,Manhattan,Upper East Side,40.76798,-73.95274,Entire home/apt,148,1,68,2019-06-17,3.09,1,98 +20949050,Arts / Nightlife Central,150647463,Eréz,Brooklyn,Bushwick,40.69814,-73.93033,Private room,30,14,2,2018-12-22,0.11,2,180 +20953661,Some fresh air,42486495,Benco,Queens,Far Rockaway,40.5975,-73.7397,Entire home/apt,450,7,0,,,1,0 +20954729,Beautiful apt. in Upper West Side close to subway,132158770,Leva,Manhattan,Morningside Heights,40.814,-73.96228,Entire home/apt,150,2,3,2017-10-29,0.14,1,0 +20955226,"Room with View, close to Central Park & Rockfeller",47577509,Jennifer,Manhattan,Roosevelt Island,40.76322,-73.94899,Private room,50,28,0,,,1,0 +20955493,Welcoming New York,103477264,Orain,Queens,St. Albans,40.70791,-73.75625,Private room,45,1,30,2018-10-20,1.37,1,0 +20956802,Private cozy and large room(103),75216989,Wenqin,Queens,Flushing,40.76376,-73.83094,Private room,55,1,40,2019-05-26,1.83,4,342 +20957065,Best of Brooklyn,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95881,Private room,105,30,8,2017-12-03,0.38,3,89 +20957575,Private Room in East Village *FEMALE Guests only*,52768036,Laura,Manhattan,East Village,40.72793,-73.98876,Private room,85,1,44,2019-06-13,2.01,1,19 +20958075,Washington Park,2492369,Nina,Brooklyn,Fort Greene,40.69176,-73.97413,Entire home/apt,131,3,9,2019-07-01,1.46,1,5 +20958399,Elegant 1 BR with amazing view in Park Slope,3574249,Sasha,Brooklyn,Park Slope,40.66803,-73.97869,Entire home/apt,169,4,6,2019-03-17,0.56,1,16 +20958738,Tastetic,75248463,Jotham,Brooklyn,East Flatbush,40.64521,-73.94751,Private room,58,2,9,2019-04-12,0.42,4,49 +20960110,Arthur Ave 2BDR sleeps 6! (15 mins from Manhattan),98416305,Nihad,Bronx,Belmont,40.85362,-73.8896,Entire home/apt,140,2,71,2019-06-23,3.45,1,291 +20960203,The Blue House in Ft Greene,150761245,Tony,Brooklyn,Fort Greene,40.69563,-73.97051,Entire home/apt,200,3,53,2019-06-22,2.50,1,75 +20960223,Private room with private bathroom,25969105,Ghislain Serge,Brooklyn,Bedford-Stuyvesant,40.69081,-73.92679,Private room,120,2,30,2019-06-22,1.39,1,13 +20960246,"Charming, comfy, cozy, safe getaway.",149867246,Medea,Brooklyn,Flatlands,40.62072,-73.93265,Private room,75,1,1,2018-12-30,0.16,2,342 +20960324,Spacious 1 bedroom in Prime Williamsburg,17921511,Amit,Brooklyn,Williamsburg,40.71168,-73.96338,Entire home/apt,99,3,2,2017-09-25,0.09,1,0 +20961894,Californiacation Studio with Garden in Bushwick,42422823,Arina,Brooklyn,Bushwick,40.70163,-73.92366,Entire home/apt,120,4,3,2019-01-09,0.14,1,0 +20964409,Little Slice of Brooklyn!,105828086,Nikki,Brooklyn,Flatbush,40.64104,-73.96337,Private room,45,2,45,2019-06-30,2.06,4,17 +20966555,汤姆公寓,25774748,Dong Ming,Queens,Flushing,40.76407,-73.83052,Private room,89,1,4,2018-05-18,0.20,2,179 +20968000,Luxurious 1BR apt! Amazing Views & Full Amenities!,150846601,William,Manhattan,Murray Hill,40.74428,-73.97364,Entire home/apt,186,3,16,2018-01-27,0.74,1,0 +20968046,"Beautiful RoomwBackyard near Trains,Astoria NY",150116246,Chimme,Queens,Astoria,40.75633,-73.92777,Private room,70,3,5,2018-09-18,0.24,1,0 +20968166,Shay's Place #2 ( Studio Apt. ) 5 mins from JFK,116404073,Sheila,Queens,Springfield Gardens,40.66648,-73.76286,Entire home/apt,90,1,146,2019-06-23,6.87,2,281 +20968536,Cute room in Bushwick,65302026,Enrique,Brooklyn,Bushwick,40.69686,-73.91431,Private room,35,1,0,,,1,0 +20969370,Gorgeous One Bedroom in Clinton Hill,49664910,Lilja,Brooklyn,Clinton Hill,40.69027,-73.96796,Entire home/apt,134,2,17,2019-05-15,0.80,1,0 +20969532,Bright & Large Open Studio 15 Min To Manhattan,127292,Elan,Queens,Sunnyside,40.74205,-73.92394,Entire home/apt,99,30,7,2019-05-01,0.39,1,38 +20970017,The Real B&B Home,89715420,J. Beverly,Brooklyn,Canarsie,40.64399,-73.89315,Entire home/apt,85,7,11,2018-09-22,0.64,1,1 +20970380,★ Cosy room in Brooklyn ★ 20-min to Manhattan,119828457,Marlice,Brooklyn,Bushwick,40.68833,-73.90691,Private room,80,3,60,2019-06-22,2.79,4,336 +20970422,★Bushwick Charming Room★ Great for Solo Travellers,119828457,Marlice,Brooklyn,Bushwick,40.68868,-73.90598,Private room,45,3,79,2019-06-24,3.67,4,312 +20970437,★Luminous and vivid room in NYC★,119828457,Marlice,Brooklyn,Bushwick,40.6871,-73.90546,Private room,110,3,26,2019-06-23,1.21,4,347 +20970588,"Best Artist's fun loft in Williamsburg, mins 2 NYC",27070796,Leonor And Luca,Brooklyn,Williamsburg,40.71416,-73.95357,Entire home/apt,139,2,7,2019-05-31,0.33,1,37 +20970822,Pet & Tony's Residence,150876351,Petra,Brooklyn,East Flatbush,40.65454,-73.91569,Entire home/apt,120,1,187,2019-07-04,8.75,1,318 +20970844,Cozy Quiet Studio in the Heart of Upper East Side,12703148,Tiffany,Manhattan,Upper East Side,40.77406,-73.94788,Entire home/apt,110,2,8,2017-12-18,0.38,1,0 +20971442,Cosy & chic room in luxury hi-rise at Times Square,10980826,Nish,Manhattan,Theater District,40.75974,-73.98623,Private room,110,1,41,2019-01-14,1.87,1,3 +20973084,Private room in Upper Manhattan near City College.,148394958,Cleber,Manhattan,Harlem,40.82876,-73.94538,Private room,38,8,20,2019-05-26,0.97,1,26 +20975327,Spacious Bedroom near Prospect Park,6375186,Sonya,Brooklyn,Kensington,40.64773,-73.97499,Private room,100,1,28,2019-06-30,1.44,1,21 +20976316,Sunny One Bedroom in Historic Fort Greene,1378036,Chris,Brooklyn,Fort Greene,40.6931,-73.9723,Entire home/apt,250,3,6,2018-11-23,0.27,1,0 +20976974,Light and airy room in Soho/Nolita,50028284,Tobi,Manhattan,Nolita,40.72234,-73.99625,Private room,110,7,0,,,1,0 +20978416,Big 1 bedrm St Marks Apt,7182337,Petko,Manhattan,East Village,40.7301,-73.98841,Entire home/apt,199,2,30,2019-06-23,1.41,1,34 +20978898,Lovely Bushwick Townhouse - steps from subway!,150965627,Anna,Brooklyn,Bushwick,40.6838,-73.91015,Private room,40,1,8,2018-11-01,0.36,1,0 +20979453,Midtown East Sunny Studio Apartment,5335417,Glenn Thomas,Manhattan,Kips Bay,40.74395,-73.98049,Entire home/apt,195,3,9,2019-06-14,0.42,1,47 +20980756,Kosher Basement Apt. for men in Crown Heights,145858413,Yosef,Brooklyn,Crown Heights,40.66423,-73.94047,Private room,25,7,0,,,1,0 +20981267,*Private-Comfortable space 2 min from train,150993634,Linda,Brooklyn,Bushwick,40.68157,-73.90547,Private room,52,2,84,2019-06-30,3.93,1,310 +20981701,BROOKLYN'S BROWNSTONE SPECIAL BUDGET IN NYC :),2015914,Majar,Brooklyn,Bushwick,40.68949,-73.91763,Private room,75,3,3,2019-01-02,0.14,8,352 +20981916,LONG TERM 3 BEDROOMS APARTMENT BROOKLYN NYC,52604429,Martin,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94688,Entire home/apt,99,90,2,2019-03-24,0.18,2,170 +20981954,"Massive, airy room with balcony in Crown Heights",31658722,Max,Brooklyn,Crown Heights,40.67145,-73.93007,Private room,55,5,6,2019-03-29,0.28,1,0 +20981968,Comfortable and Clean Private Room,25039950,David,Brooklyn,Williamsburg,40.711,-73.9387,Private room,54,6,1,2018-04-20,0.07,2,0 +20982002,Bright Spacious Room in BedStuy - 20min from City,12528835,Paula,Brooklyn,Bedford-Stuyvesant,40.68909,-73.95282,Private room,90,2,29,2019-06-30,1.36,2,167 +20982168,Private room in Bushwick.,61169465,Daniella,Brooklyn,Bedford-Stuyvesant,40.68475,-73.93589,Private room,50,3,1,2017-11-11,0.05,1,0 +20982257,Fan&Chill,75248463,Jotham,Brooklyn,East Flatbush,40.64434,-73.94635,Private room,53,2,2,2018-01-06,0.10,4,54 +20982422,'Fan'tastic,75248463,Jotham,Brooklyn,East Flatbush,40.64516,-73.94751,Private room,59,2,10,2019-06-01,0.47,4,41 +20982564,Söderläge - Spacious full bedroom in Williamsburg,13262918,Glenn,Brooklyn,Williamsburg,40.70982,-73.95602,Private room,99,1,15,2019-04-27,0.69,3,12 +20982593,Charming Apartment near Empire State Building,10191047,Cezar,Manhattan,Murray Hill,40.74818,-73.98025,Entire home/apt,195,3,4,2018-10-21,0.22,1,0 +20982704,Home Away From Home -3,147721837,Karen,Brooklyn,East New York,40.6661,-73.87469,Entire home/apt,160,3,4,2019-06-06,0.18,2,36 +20982734,"Spacious, Modern Uptown Getaway with Balcony",5668108,Wakahiu,Manhattan,East Harlem,40.80012,-73.94549,Entire home/apt,250,4,7,2019-04-24,0.33,1,0 +20982862,Spacious NYC Duplex- 1 Bedroom & 2 Bathrooms,38250510,Ant,Queens,Elmhurst,40.72859,-73.87276,Entire home/apt,150,2,10,2019-01-01,0.46,1,89 +20983319,Large Comfortable Cozy Room,33589349,Henry,Queens,Richmond Hill,40.69002,-73.83688,Private room,85,3,0,,,1,88 +20983421,"Bright Warm Home. A little old, a little new!",3461768,Grace,Brooklyn,Prospect Heights,40.67525,-73.96408,Private room,45,2,1,2017-09-22,0.05,1,0 +20983663,Brooklyn's Cozy Jewel II,117507630,Faith,Brooklyn,Crown Heights,40.67171,-73.93273,Entire home/apt,149,5,35,2019-06-17,1.81,2,12 +20984142,HEART OF BUSHWICK,13500687,Patrick,Brooklyn,Bushwick,40.70784,-73.92054,Private room,60,1,9,2019-05-22,0.42,1,81 +20989220,Lovely Young Apt Close to JFK & LGA,151073194,Thomas,Queens,Flushing,40.72662,-73.80086,Entire home/apt,99,2,95,2019-07-08,4.34,1,305 +20989354,Nice room in cozy house,90878763,Andrew,Brooklyn,Midwood,40.62518,-73.96316,Private room,65,2,2,2018-09-26,0.09,2,0 +20989659,LUXURY MURRAY HILL EAST 34TH~1BR,2856748,Ruchi,Manhattan,Murray Hill,40.7488,-73.97844,Entire home/apt,225,30,1,2019-06-23,1,49,311 +20990053,Beautiful place in Brooklyn! #2,151084261,Angie,Brooklyn,Williamsburg,40.71772,-73.95059,Private room,79,999,24,2018-06-28,1.12,6,249 +20990431,天使的温暖,151087909,Keqin,Queens,Flushing,40.73565,-73.81591,Private room,36,1,0,,,1,89 +20990607,Brooklyn NYC! #3,151084261,Angie,Brooklyn,Williamsburg,40.71835,-73.94999,Private room,79,30,15,2018-07-08,0.69,6,333 +20990770,Amazing room #1,151084261,Angie,Brooklyn,Williamsburg,40.71732,-73.95048,Private room,54,30,22,2019-05-03,1.01,6,276 +20991704,Gorgeous Master Bedroom for Sukkot!,17742578,Sarah,Brooklyn,Midwood,40.6229,-73.96169,Entire home/apt,79,1,0,,,1,0 +20991910,Beautifully Designed Green Point in Greenpoint,4774053,Rinat,Brooklyn,Greenpoint,40.72588,-73.94531,Entire home/apt,145,3,23,2019-06-04,1.06,1,13 +20992027,Peaceful Park Slope Condo with Fast Wifi! #10253,603493,Dan,Brooklyn,Park Slope,40.67858,-73.9812,Entire home/apt,300,30,51,2019-05-31,2.33,1,75 +20993138,Spacious Room only minutes away from 125th area,151115004,Tyshawn,Manhattan,Harlem,40.81248,-73.9526,Private room,58,1,9,2019-06-30,3.00,1,248 +20994196,"East Village, Spacious Private Room w Backyard",109371945,Zach,Manhattan,East Village,40.7212,-73.98045,Private room,70,3,2,2017-09-24,0.09,1,0 +20994674,Nice bedroom in Brooklyn,97118521,Lara,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94946,Private room,50,4,5,2019-04-27,0.23,1,0 +20996070,Prime Location of Flushing Queens 豪华卧室 旅途中的家 B,63312104,Max,Queens,Flushing,40.7469,-73.8179,Private room,55,1,77,2019-06-23,3.58,6,365 +20996372,"Luxury in Brooklyn Brownstone, Close to Metro!!!",151146788,Rohit,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92958,Entire home/apt,170,3,99,2019-06-22,4.79,2,288 +20996474,"Ping Pong Paradise in Brooklyn, Close to metro!!!",151146788,Rohit,Brooklyn,Bedford-Stuyvesant,40.69049,-73.93014,Entire home/apt,124,2,91,2019-06-21,4.40,2,272 +20996673,Homey Bedroom in a great neighborhood!,33923279,Hollis,Manhattan,Harlem,40.82881,-73.94566,Private room,40,3,6,2017-11-03,0.28,2,0 +20996830,"Perfect SOHO/NOLITA location, CLEAN and cozy home",144857346,Grace,Manhattan,Nolita,40.72408,-73.99381,Private room,111,1,51,2019-06-09,2.39,3,56 +20996996,Private Bedroom and Bath,785283,Melinda,Queens,Ditmars Steinway,40.77618,-73.91741,Private room,75,2,38,2018-12-06,1.81,2,0 +20997574,Spacious & Bright apt in Soho (Top 1% ♥ NYC pick),40507331,Arnaud,Manhattan,Nolita,40.72169,-73.9965,Entire home/apt,325,2,8,2018-10-22,0.37,1,86 +20998163,Walk to Times Square and Central Park-Cozy Room!!!,11392362,Maxim,Manhattan,Midtown,40.76357,-73.98308,Private room,107,3,133,2019-07-05,6.08,1,9 +20998265,Charming- cozy bedroom,90531953,Carolina,Bronx,Concourse,40.82453,-73.92563,Private room,60,1,16,2018-01-01,0.74,1,0 +20998921,COZY QUIET APT CLOSE TO TRAIN,42058671,Alana,Brooklyn,Bushwick,40.70073,-73.92913,Private room,60,3,4,2017-12-26,0.20,1,0 +20999025,Sunny/spacious/convenient private room - Bushwick!,1137079,Rahul,Brooklyn,Bushwick,40.69808,-73.93022,Private room,60,2,76,2019-07-06,4.03,1,234 +21000540,Creative Artist Apartment in SoBro,128490590,Jermaine,Bronx,Mott Haven,40.81553,-73.92453,Entire home/apt,120,2,0,,,1,0 +21004111,Prime East Village REAL 1 Bedroom,22225802,David,Manhattan,East Village,40.72236,-73.97756,Entire home/apt,200,5,0,,,1,0 +21005576,"Quiet, clean and spacious.",151238818,Peter,Manhattan,Upper West Side,40.77867,-73.97914,Private room,135,7,8,2019-06-16,0.82,1,363 +21005699,Vics cafe,45044964,Victor,Queens,Queens Village,40.72517,-73.76105,Shared room,41,1,11,2019-06-03,0.51,2,125 +21005738,The Perfect Fort Greene Studio,34579576,Brooke,Brooklyn,Fort Greene,40.68805,-73.97563,Entire home/apt,160,2,1,2017-10-01,0.05,1,0 +21005994,Sun-filled Bed-Stuy Apt with Master Bedroom!,676140,Claire,Brooklyn,Bedford-Stuyvesant,40.69321,-73.94207,Private room,80,3,5,2019-03-23,0.23,1,0 +21006212,Sunny and charming Room in Duplex Apt in BedStuy,15873714,Salome,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9413,Private room,100,2,6,2018-10-08,0.28,1,39 +21006224,Cozy home in Bayside,151243003,Ting,Queens,Bayside,40.76124,-73.76178,Private room,59,1,62,2019-07-05,2.91,1,54 +21006709,Nice Cozy Little Studio in a Quite Neighborhood!!,151249486,Tiffany,Bronx,Parkchester,40.84038,-73.85662,Entire home/apt,65,3,12,2017-12-30,0.55,1,0 +21007181,Brooklyn Two Bed with Private Garden,19202566,Judith,Brooklyn,Greenpoint,40.7366,-73.95656,Entire home/apt,225,4,0,,,1,159 +21007370,Charming bright room in SoHo w/access to rooftop,19536090,Adriana,Manhattan,SoHo,40.72709,-74.00447,Private room,175,3,20,2019-07-01,1.08,2,239 +21007762,"Spacious, artistic 1-bedroom near The Cloisters!",16144086,Leyla,Manhattan,Inwood,40.86039,-73.92663,Entire home/apt,100,3,44,2019-06-23,2.30,1,168 +21008007,Cozy private room 15 mins to Soho,17428620,Roman,Brooklyn,Brooklyn Heights,40.69209,-73.99421,Private room,119,2,1,2017-09-28,0.05,1,0 +21009685,Great room in a two-bedroom apartment.,150122503,Abdul Kader,Brooklyn,Bay Ridge,40.62938,-74.02976,Private room,30,3,0,,,1,27 +21009737,Luxury 1BR Doorman—NYU—Washington Sq. Pk—Astor Pl.,2506798,Zach,Manhattan,Greenwich Village,40.7315,-73.99393,Entire home/apt,400,30,0,,,1,90 +21010072,The Nest,151189049,Marc,Queens,Ridgewood,40.70863,-73.90249,Private room,32,1,62,2019-01-02,2.91,1,0 +21010586,Cozy Junior One Bedroom apt in Greenwich Village,151284868,Nicola,Manhattan,West Village,40.73076,-74.00162,Entire home/apt,245,5,13,2019-03-31,0.61,1,50 +21010714,"Beautiful,2,000sf,sunny,airy,SoHo loft w/balconies",17579903,Anthony,Manhattan,Lower East Side,40.72066,-73.99229,Entire home/apt,700,3,14,2019-04-17,0.65,1,258 +21010735,Zen retreat in Bustling East Village,105631352,Taylor,Manhattan,East Village,40.72561,-73.97953,Private room,90,2,41,2019-07-01,1.91,3,0 +21011427,Cheap bedroom with private half bath attached!,151291713,Kathryn,Manhattan,Washington Heights,40.85014,-73.93743,Private room,30,1,67,2019-06-22,3.07,2,72 +21011433,"BEST LOCATION, ROOFTOP, ROOMY AND BRIGHT",3917497,Daniele,Manhattan,Financial District,40.70445,-74.01521,Entire home/apt,135,6,10,2019-06-17,0.48,1,160 +21011466,Spacious & Cozy Apt in Chinatown/Lower East Side,7557662,Alek,Manhattan,Lower East Side,40.71832,-73.99287,Entire home/apt,200,1,15,2019-06-29,0.72,1,29 +21011532,"Brooklyn Factory Conversion -Bright, Plant Filled",151293286,William,Brooklyn,Bedford-Stuyvesant,40.69282,-73.96034,Entire home/apt,120,4,6,2019-06-02,0.37,1,0 +21012137,"Comfortable bed, lighting, fresh linens, workspace",66329,Collin,Brooklyn,Fort Greene,40.68634,-73.97388,Private room,119,1,14,2019-06-04,0.64,2,78 +21012649,Spacious East Village 1 BR on 14th St!,7608106,Mike,Manhattan,Gramercy,40.73247,-73.98297,Entire home/apt,196,2,47,2019-06-18,2.26,1,6 +21013416,Family room #5,151084261,Angie,Brooklyn,Greenpoint,40.71913,-73.95041,Private room,80,30,3,2019-05-04,0.14,6,324 +21013499,Prime Location of Flushing Queens 豪华卧室 旅途中的家 C,63312104,Max,Queens,Flushing,40.74922,-73.81868,Private room,55,1,41,2019-03-25,1.90,6,340 +21014105,NICE 1 BEDROOM 25 MIN TO MANHATTAN,142268790,David,Queens,Forest Hills,40.73307,-73.85047,Entire home/apt,88,2,9,2019-01-01,0.42,2,54 +21014202,曼哈顿林肯中心一室一厅,97044757,柏润,Manhattan,Upper West Side,40.77312,-73.98819,Private room,78,1,11,2018-06-10,0.50,2,0 +21014919,Spacious Private Bedroom in Northern Manhattan!,29248621,Chelsea,Manhattan,Washington Heights,40.84444,-73.93554,Private room,50,5,5,2018-04-01,0.29,1,0 +21015032,Spacious 1 Bedroom Home in the Heart of Manhattan,8753700,Jewell,Manhattan,Hell's Kitchen,40.75994,-73.99073,Entire home/apt,215,2,28,2019-06-17,1.28,1,6 +21015347,Brooklyn 3Bed 1Bath 8minute Subway 30 to Manhattan,102618751,Shawn,Brooklyn,East New York,40.65894,-73.8921,Entire home/apt,300,2,24,2019-06-23,3.29,1,294 +21015751,Great studio in Chelsea at a fantastic location,79345554,Vela,Manhattan,Chelsea,40.75058,-73.99582,Entire home/apt,160,60,0,,,1,0 +21015993,Pristine Luxury Loft Near Barclay & Green Building,147513,Ashley,Brooklyn,Gowanus,40.6801,-73.9866,Entire home/apt,250,1,18,2017-12-03,0.85,2,0 +21016290,Large 1bdr family friendly apt close to midtown,14085769,Pj,Queens,Maspeth,40.72543,-73.89666,Entire home/apt,125,7,0,,,1,0 +21016498,Newly Renovated Apartment,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.68171,-73.94471,Entire home/apt,180,2,13,2019-06-30,0.73,3,303 +21020048,Casa Blue In the Heart of Soho,151372422,Marcy,Manhattan,SoHo,40.72294,-73.99869,Entire home/apt,650,2,3,2017-12-08,0.14,1,0 +21020862,"Elegant Private Room, Bath & Patio Next to Subway",59795431,Nazeer,Bronx,Williamsbridge,40.88192,-73.86186,Private room,60,1,70,2019-06-21,3.55,1,283 +21020869,Casa Blue,2326517,Marcy,Manhattan,SoHo,40.72391,-73.9975,Entire home/apt,695,3,0,,,1,1 +21021957,2BED 2 BATH LINCOLN CENTER / RIVER VIEW,131647128,Emily,Manhattan,Upper West Side,40.77536,-73.98952,Entire home/apt,280,30,9,2019-06-02,1.40,25,341 +21022330,Cozy spot,137586595,Yves,Queens,Hollis,40.71455,-73.7613,Entire home/apt,100,1,3,2017-11-04,0.14,1,0 +21022616,1 bedroom completely renovated in Brooklyn,2195090,Thomas And Madalena,Brooklyn,Crown Heights,40.67292,-73.94137,Entire home/apt,75,1,2,2017-10-01,0.09,1,0 +21022856,"Your Home in NYC, 3 bdrm, 2 bath, 5 min to metro!!",22194698,Joe & Jay,Brooklyn,Bedford-Stuyvesant,40.69012,-73.9257,Entire home/apt,135,2,89,2019-07-05,4.14,2,139 +21023888,Almost a Hotel Room // Cozy Private Room,6378149,Laurel,Brooklyn,Bushwick,40.69835,-73.91644,Private room,50,2,57,2019-06-23,2.68,3,18 +21024098,307 E 44th st beautiful fully furnished,53179388,Raymond,Manhattan,Midtown,40.75029,-73.97142,Entire home/apt,175,30,2,2018-09-05,0.15,10,161 +21024792,Room in a loft in Soho/Nolita,24770383,Maeva,Manhattan,SoHo,40.7215,-73.99894,Private room,80,21,0,,,1,0 +21025083,"Douglaston (apt 2) Room one +(Largest room)",18996093,Leonard,Queens,Little Neck,40.75777,-73.72949,Private room,50,1,6,2018-12-16,0.31,5,94 +21025488,Beautiful Garden Apartment with Patio & BBQ Grill,151421618,Adesh & Viviana,Queens,Ozone Park,40.68464,-73.84245,Entire home/apt,130,4,4,2019-06-09,0.39,2,145 +21025840,3 blocks from Subway express! Clean & Cozy,33167995,Kyle,Brooklyn,Crown Heights,40.67071,-73.95381,Private room,70,4,8,2018-05-23,0.37,1,6 +21026272,Douglaston (apt2) Room 2,18996093,Leonard,Queens,Douglaston,40.75573,-73.72931,Private room,45,1,17,2019-06-06,0.82,5,325 +21026558,One private room in a brand new 2BR Penthouse!,15569216,Andrey,Manhattan,Upper West Side,40.78628,-73.97482,Private room,250,2,3,2019-05-05,0.20,1,94 +21027182,Private ROOM & BATH (City Central) Time Square NYC,31929860,Bryan,Manhattan,Hell's Kitchen,40.76181,-73.9905,Private room,155,1,62,2019-06-02,2.87,4,307 +21027809,Sunny 2 br apartment in Prospect Lefferts Gardens,9138141,Lory And Cindy,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95262,Entire home/apt,100,1,85,2019-07-07,8.95,1,125 +21027995,Spacious Private room 10 minutes to Manhattan,82349344,Maxim,Brooklyn,Williamsburg,40.70911,-73.95288,Private room,76,2,79,2019-06-24,4.56,1,349 +21028192,Spacious 2-bed Apt. Quiet w/garden.Family friendly,35852743,Vegard,Brooklyn,Crown Heights,40.67245,-73.94608,Entire home/apt,240,5,57,2019-06-23,2.83,1,179 +21028467,Garden Apartment in South Slope,76450538,Pat,Brooklyn,Sunset Park,40.65331,-74.00814,Private room,80,4,0,,,1,0 +21029146,Small room nearby C-train station (female only),131638913,Sachie,Brooklyn,Clinton Hill,40.68428,-73.96526,Private room,35,1,1,2017-12-31,0.05,1,0 +21029490,Private room in Greenpoint!,6216526,Catalina,Brooklyn,Greenpoint,40.72386,-73.94085,Private room,50,4,1,2017-10-04,0.05,1,0 +21029655,Beautiful room in loft with private roof & SDB,65112370,Jacques,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94417,Private room,90,3,1,2017-12-27,0.05,1,0 +21029678,Guest room in Greenpoint,15475460,Andre,Brooklyn,Greenpoint,40.73465,-73.95314,Private room,65,2,32,2019-05-18,1.51,1,70 +21031177,"My Cozy Condo! +My apartment is very peaceful!",150665890,Edna,Manhattan,East Village,40.72484,-73.9746,Private room,100,2,0,,,1,99 +21035506,Cosy private room in the middle of Manhattan!,31244515,Carly,Manhattan,Hell's Kitchen,40.76735,-73.98842,Private room,92,3,56,2019-06-30,4.65,1,14 +21038103,Great West Village Pad,151530017,Ma,Manhattan,West Village,40.73427,-74.00798,Private room,425,1,0,,,1,125 +21038471,"Sunny, spacious room in Bedstuy",100841539,Tiffany,Brooklyn,Bedford-Stuyvesant,40.68873,-73.93881,Private room,58,1,118,2019-06-20,5.48,1,21 +21038703,"3 Beds, Uptown , one block train A ,15 min Wall St",40800717,Fer,Manhattan,Washington Heights,40.84859,-73.93855,Entire home/apt,85,30,4,2018-09-04,0.22,1,0 +21038881,Downtown warmth and charm,78107584,Jesper,Manhattan,Nolita,40.72091,-73.99531,Entire home/apt,250,2,34,2019-06-21,1.61,1,0 +21039236,Cozy Brownstone Apartment in Carroll Gardens,1026622,Premshree,Brooklyn,Carroll Gardens,40.68343,-73.99821,Entire home/apt,116,7,1,2017-10-23,0.05,1,0 +21039710,Luxury 1BR with Private Outdoor Patio,66060459,Laney,Brooklyn,Bushwick,40.69648,-73.92742,Entire home/apt,120,2,5,2017-12-10,0.23,1,0 +21041077,Huge Bedroom Next to Lines Q & 6 UPPER EAST SIDE,114011720,Alexandre,Manhattan,Upper East Side,40.7844,-73.9485,Private room,70,3,2,2017-11-04,0.09,1,0 +21041595,HOME AWAY FROM HOME,151560823,Fred,Brooklyn,Brownsville,40.66154,-73.91387,Private room,100,1,3,2019-07-01,1.58,1,2 +21042120,"Spacious bedroom, minutes to Manhattan!",31605872,Jacquelin And,Queens,Long Island City,40.76191,-73.93092,Private room,76,2,43,2019-06-23,2.02,1,8 +21042151,STAY HERE! Nice&Quite 1BD in Financial District!,151563968,Andrey,Manhattan,Financial District,40.70949,-74.00973,Entire home/apt,150,1,103,2019-06-22,4.79,1,7 +21042534,"Light, spacious apartment in trendy neighborhood",2575895,Kathy,Brooklyn,Crown Heights,40.67467,-73.9469,Entire home/apt,100,5,2,2019-04-21,0.66,1,0 +21043947,Apartment at the fabulous Tea Factory!,63965653,Lauren,Brooklyn,Bushwick,40.69878,-73.92194,Private room,75,4,2,2017-10-27,0.10,1,0 +21044271,"Chelsea, Manhattan Large Private Bedroom for 2",44170535,Caitlin,Manhattan,Chelsea,40.74594,-73.99829,Entire home/apt,125,3,0,,,2,0 +21044322,"Windsor Terrace spacious, lovely 1 Bedroom",18290840,Andrea,Brooklyn,Windsor Terrace,40.64816,-73.97279,Entire home/apt,120,15,3,2019-04-09,0.16,1,0 +21044649,One Bedroom Bronx Bohemian style living space,151547086,Tanya,Bronx,Norwood,40.87759,-73.88459,Private room,42,2,6,2019-05-13,0.27,1,62 +21044970,Best location in Williamsburg! Spacious and quite.,48988714,Luigi,Brooklyn,Williamsburg,40.71209,-73.9571,Entire home/apt,349,1,2,2019-02-24,0.14,3,105 +21045283,Say Morning to Statue of Liberty !,16359827,Hitesh,Manhattan,Financial District,40.70424,-74.01564,Shared room,299,1,0,,,1,83 +21045324,Bronx room,27187487,Summer,Bronx,Belmont,40.85444,-73.88462,Private room,30,3,5,2018-08-15,0.23,2,361 +21045451,Sunny and cozy spacious bedroom w/ queen sized bed,1892493,Whitney,Brooklyn,Brownsville,40.66819,-73.92394,Private room,70,2,5,2019-05-05,0.25,2,46 +21047121,Murray Hill House,55527442,Ekaterina,Manhattan,Murray Hill,40.74685,-73.97892,Entire home/apt,1177,3,42,2019-06-04,2.03,3,284 +21048346,Room in Hell's Kitchen luxury building,4421545,Adam,Manhattan,Hell's Kitchen,40.76892,-73.99016,Private room,110,3,2,2018-02-06,0.09,1,0 +21050522,"Great room in Williamsburg, perfect for 2",151639981,Julie,Brooklyn,Williamsburg,40.71101,-73.96217,Private room,65,6,1,2017-10-14,0.05,1,0 +21051477,"Cool, calm, and cozy.",151018315,Yvonne,Brooklyn,East New York,40.65604,-73.88426,Private room,30,1,0,,,1,174 +21052514,Sunny Bushwick Apartment,126141244,Alice,Brooklyn,Bushwick,40.70393,-73.91427,Entire home/apt,120,2,1,2017-10-09,0.05,1,0 +21053044,RESIDENCE NEAR JFK (TB3),145727343,Janelle,Queens,Jamaica,40.68501,-73.79162,Private room,33,1,7,2019-06-25,0.35,3,139 +21053432,Cozy room in spacious and sunny apartment,21891606,Angela,Queens,Ridgewood,40.69787,-73.90008,Private room,38,2,4,2019-05-31,0.19,1,175 +21054012,Ashes Cove,48638439,Aston,Queens,Springfield Gardens,40.66013,-73.77166,Entire home/apt,200,3,23,2019-06-02,1.18,2,357 +21054217,Lavish 3 bedroom near Penn Station / MSG,151671343,Michael,Manhattan,Chelsea,40.74881,-73.99375,Entire home/apt,790,2,42,2019-07-01,1.99,1,36 +21055153,Chez Jazzy Midtown East,151681101,Chez,Manhattan,Midtown,40.75614,-73.96706,Entire home/apt,225,5,30,2018-10-31,1.40,1,0 +21055192,"Clean, Comfortable, Sunny Room 5 Min from LGA",9232930,Lisa,Queens,Ditmars Steinway,40.77429,-73.92123,Private room,90,2,8,2019-06-03,0.38,1,87 +21055320,20-Minute Subway Ride to Times Square,151683441,Ricardo,Queens,Ditmars Steinway,40.77839,-73.90866,Private room,100,2,1,2017-12-20,0.05,1,0 +21056487,"** SoHo: Clean, Safe, Private, Quiet Bedroom (B)**",104450469,Janet,Manhattan,SoHo,40.7228,-73.99799,Private room,99,2,35,2019-02-07,1.62,2,129 +21056510,G1 Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.75599,-73.93415,Private room,55,1,76,2019-06-06,3.56,9,229 +21056653,G2Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.75571,-73.9338,Private room,55,1,54,2019-06-22,2.54,9,265 +21056691,G3Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.7558,-73.93399,Private room,58,1,62,2019-06-23,2.87,9,279 +21057693,Sunny and cozy apartment with a beautiful terrace,37212082,Alex,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94736,Entire home/apt,97,15,8,2019-01-03,0.39,1,0 +21057716,Contemporary two-story oasis. Minutes from train.,45486831,Brittany,Brooklyn,Bedford-Stuyvesant,40.68884,-73.93355,Entire home/apt,165,3,10,2018-06-01,0.46,1,158 +21057757,Bright Charming 1 Bdrm off Central Park,2235545,Kevin,Manhattan,Upper West Side,40.77478,-73.97986,Entire home/apt,125,30,5,2018-11-12,0.26,1,0 +21058573,Beautiful Cypress Hills apt,14719992,Yoni,Brooklyn,Cypress Hills,40.67966,-73.89028,Entire home/apt,106,1,2,2018-11-04,0.11,3,0 +21058648,Prime Location of Flushing Queens 豪华卧室 旅途中的家 D,63312104,Max,Queens,Flushing,40.74729,-73.81865,Private room,60,1,92,2019-05-30,4.26,6,362 +21062611,Great location bay ridge off shore road,8898944,Ahmed,Brooklyn,Fort Hamilton,40.62053,-74.03942,Entire home/apt,99,2,28,2019-06-23,1.36,1,69 +21063162,Space and Light in the Heart of Midtown,33009,Seth,Manhattan,Hell's Kitchen,40.76192,-73.9909,Entire home/apt,180,3,3,2018-11-26,0.14,1,0 +21064170,"Sunny, Entire Top Floor of Harlem Brownstone!",151718551,Rob,Manhattan,Harlem,40.80844,-73.9502,Entire home/apt,129,28,7,2018-08-14,0.35,1,40 +21064623,Gorgeous Alcove Studio,9130390,Neda,Manhattan,Hell's Kitchen,40.76007,-73.99078,Entire home/apt,160,7,3,2019-01-05,0.15,1,0 +21065293,(=CUTE ROOM IN HELL'S KITCHEN=),137191484,Maria,Manhattan,Hell's Kitchen,40.76583,-73.98669,Private room,86,1,158,2019-06-27,7.33,5,170 +21066041,Private 2 bedroom w/ Rooftop Manhattan View!,6394738,Lindsay,Brooklyn,Bushwick,40.7049,-73.92448,Private room,155,1,4,2017-11-26,0.19,2,0 +21067165,Gorgeous Brownstone - 3 blocks from subway!,9356744,Hadas,Brooklyn,Bedford-Stuyvesant,40.68779,-73.95347,Entire home/apt,185,2,50,2019-06-30,2.34,1,14 +21067451,Hell's Kitchen/ Times Square,49108760,Mark,Manhattan,Hell's Kitchen,40.76195,-73.99077,Private room,210,1,4,2019-02-10,0.22,1,0 +21068619,Clean & nice room near Central Park/2min to subway,44229047,Felix,Manhattan,Harlem,40.80436,-73.95649,Private room,80,45,1,2017-10-06,0.05,1,0 +21068818,Amazing Studio at the Time Square Area/53B,48146336,Irina,Manhattan,Hell's Kitchen,40.76269,-73.99364,Entire home/apt,130,30,4,2019-01-30,0.23,20,272 +21068875,Clean Apt that Sleeps 4 Near Subway in East Harlem,151241345,Paul,Manhattan,East Harlem,40.79979,-73.94104,Entire home/apt,113,1,1,2017-09-30,0.05,1,0 +21069115,Spacious Park Slope apt with garden,42631621,Jacob,Brooklyn,Park Slope,40.67711,-73.98074,Entire home/apt,160,3,2,2017-10-30,0.10,1,0 +21072318,Designer 1BR with Patio & FiOS! #10257,26640554,Harrison,Brooklyn,Williamsburg,40.7173,-73.96199,Entire home/apt,350,7,3,2017-10-28,0.14,1,0 +21073975,Charming 1 bedroom in mid-town Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75008,-73.97655,Entire home/apt,222,30,2,2018-07-28,0.15,50,364 +21076625,Harlem Room With A View,33074274,Vigil,Manhattan,Harlem,40.80752,-73.94994,Private room,65,6,9,2019-06-20,0.42,2,333 +21078963,"Women friendly, spacious loft with private bedroom",59518759,Carissa,Manhattan,East Harlem,40.79483,-73.93478,Private room,90,3,2,2017-10-22,0.09,1,0 +21078966,Spacious room with tons of natural light,107075694,Ivan,Manhattan,Harlem,40.80531,-73.94187,Private room,65,3,3,2018-07-29,0.14,1,0 +21079505,***Come Stay in Comfort while you Experience NYC**,151940941,Nelson Antonio,Manhattan,Washington Heights,40.85117,-73.94344,Private room,55,3,66,2019-06-23,3.05,1,251 +21079975,South Park Slope 1BR Apt with Shared Yard,137327838,James,Brooklyn,Sunset Park,40.6606,-73.99455,Entire home/apt,94,2,24,2019-06-23,1.15,1,12 +21080763,"CHIC 2 BEDROOM W/ LUXURY FINISHES, WASHER DRYER",61391963,Corporate Housing,Manhattan,Kips Bay,40.74061,-73.97991,Entire home/apt,185,30,4,2019-03-31,0.25,91,201 +21081485,Spotless Private Room near Airport and Subway!,29597567,Lucy & Rodo,Queens,Corona,40.74533,-73.86076,Private room,49,2,127,2019-06-22,6.05,1,64 +21081721,"Chill, Cozy, Apt Next to Subway in LES/Chinatown",48861932,Sydney,Manhattan,Lower East Side,40.71389,-73.98889,Private room,80,1,9,2018-07-06,0.42,1,0 +21081736,Comfy Cozy,151812737,Dawn,Brooklyn,Canarsie,40.64008,-73.89302,Entire home/apt,139,2,64,2019-07-01,3.11,1,358 +21081875,Empire State view from my Central Harlem prv room.,11135666,Andre,Manhattan,East Harlem,40.80225,-73.94491,Private room,70,1,0,,,1,0 +21081975,Perfect Chanukah apartment for the whole crew!,15692021,Alexandra,Brooklyn,Crown Heights,40.6696,-73.94253,Entire home/apt,400,11,1,2017-10-15,0.05,1,0 +21082194,Howard Beach CrashPad,14046692,Pedro J,Queens,Howard Beach,40.65979,-73.8315,Private room,45,1,1,2017-09-29,0.05,2,0 +21082203,Sunny Private Bedroom in Washington Heights,75126216,Michael,Manhattan,Washington Heights,40.83784,-73.94081,Private room,75,3,2,2017-10-22,0.09,1,0 +21088326,Private Bedroom with Exposed Brick in Chinatown!,2749543,Philip,Manhattan,Chinatown,40.71587,-73.9989,Private room,100,2,1,2017-10-11,0.05,1,0 +21088999,"SOHO / GREENWICH VILLAGE +Prime location- 1 Bedroom",51538274,Zachary,Manhattan,Greenwich Village,40.72801,-74.00105,Entire home/apt,150,80,18,2019-04-15,0.87,1,182 +21089520,Closest to Home,151139950,Shelliann,Brooklyn,Bedford-Stuyvesant,40.67865,-73.9126,Entire home/apt,100,2,115,2019-07-04,5.38,1,225 +21089707,Bright Lower East Side Studio,108653826,Alexandra,Manhattan,Lower East Side,40.71808,-73.99147,Entire home/apt,139,2,2,2017-12-05,0.10,1,0 +21090094,"Private and Cozy Studio Pelham Gardens - Bx, NY.",152045247,Mariana,Bronx,Pelham Gardens,40.86506,-73.84295,Entire home/apt,40,2,37,2019-05-01,1.81,1,35 +21091355,Comfortable and lovely furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.76139,-73.96222,Entire home/apt,80,30,4,2019-02-07,0.26,8,272 +21091844,Sunny Room in Queens,28270349,Jie,Queens,Flushing,40.76604,-73.79442,Private room,100,1,34,2018-10-31,1.65,2,189 +21094022,"Bright, spacious room in Williamsburg",32110549,Tori,Brooklyn,Williamsburg,40.71111,-73.94792,Private room,100,2,2,2017-10-17,0.10,1,0 +21094476,"Large, Charming & Sunny 2 Bedroom in Brooklyn!",33946068,Chris,Brooklyn,Crown Heights,40.67701,-73.96249,Entire home/apt,150,2,53,2019-06-05,2.49,1,160 +21094894,Luxury Apartment Central Park - Hell’s Kitchen,11855071,Kadu,Manhattan,Hell's Kitchen,40.76842,-73.99109,Entire home/apt,273,1,46,2019-06-09,2.19,1,166 +21095257,Soho | Greenwich Village 1 Bedroom,21480920,Dawn,Manhattan,SoHo,40.72653,-74.00054,Entire home/apt,225,3,79,2019-07-06,3.88,1,151 +21095546,Urban Sanctuary in Sunset Park,16509617,Heather,Brooklyn,Sunset Park,40.64651,-74.01749,Entire home/apt,100,3,0,,,1,0 +21095775,Trendy & Bright Dumbo 1 Bed,152096705,Joe,Brooklyn,Downtown Brooklyn,40.69772,-73.98365,Entire home/apt,135,2,18,2019-05-10,0.84,1,0 +21096186,Charming two bedroom apartment in Downtown Soho,14945039,Amy,Manhattan,Greenwich Village,40.72838,-73.99897,Entire home/apt,400,4,1,2018-01-01,0.05,1,0 +21097166,Beautiful Brooklyn Brownstone in Boerum Hill,25321849,Anne,Brooklyn,Boerum Hill,40.68701,-73.98842,Entire home/apt,125,2,91,2019-07-06,4.61,2,62 +21098387,"Private room in Times Square, HEART of the city!",133790239,Erica,Manhattan,Hell's Kitchen,40.75906,-73.98898,Private room,150,2,0,,,1,0 +21098555,Fabulous 1 bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74848,-73.97564,Private room,222,30,0,,,50,364 +21098717,Splendid 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74896,-73.9762,Entire home/apt,175,30,1,2018-06-16,0.08,50,364 +21098719,Great Studio!,127743419,Keziah,Manhattan,Harlem,40.81631,-73.93933,Entire home/apt,70,3,39,2019-05-06,1.83,1,4 +21098848,Sunny 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74877,-73.97565,Entire home/apt,175,30,1,2019-02-01,0.19,50,364 +21098980,Comfortable studio suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74829,-73.97554,Entire home/apt,130,30,3,2018-05-27,0.16,50,364 +21103362,West Village 1 Bedroom with a view,28066471,Jordan,Manhattan,West Village,40.73223,-74.00489,Entire home/apt,150,4,1,2017-12-31,0.05,1,6 +21104475,Near LGA cozy room.,152177080,James &,Queens,East Elmhurst,40.77063,-73.87543,Private room,45,1,222,2019-06-20,10.39,1,164 +21104699,Cozy Blue Room,333897,Lane,Queens,Ridgewood,40.69385,-73.90296,Private room,50,1,50,2019-06-01,2.34,2,341 +21105248,"Williamsburg - Private Bathroom, Steps To Subway",111020045,Ben,Brooklyn,Williamsburg,40.71566,-73.94486,Private room,100,3,1,2017-09-26,0.05,1,0 +21106002,♕ Downtown Manhattan I Private Bedroom♕,151316042,Edhar,Manhattan,Chinatown,40.71363,-73.9909,Private room,90,1,58,2019-06-15,2.68,2,10 +21106251,Private Bedroom in Great Brooklyn Apartment,25354313,Tommy,Brooklyn,Crown Heights,40.67359,-73.95812,Private room,45,3,9,2019-06-22,0.43,2,0 +21106349,Sunny guest apt w eat-in kitchen near prospect prk,4324444,Zach,Brooklyn,Windsor Terrace,40.65853,-73.98301,Entire home/apt,175,2,54,2019-06-25,3.56,1,135 +21106395,"Cozy, tranquil bedroom steps from Central Park A",152195388,Rachel,Manhattan,Upper West Side,40.78489,-73.97345,Private room,99,20,7,2019-03-31,0.42,2,125 +21107481,Opulent Orange Oasis! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68949,-73.90987,Private room,60,1,66,2019-06-20,3.24,3,120 +21108399,Beautiful Bright Studio in Williamsburg,5867412,Elise,Brooklyn,Williamsburg,40.71328,-73.9633,Entire home/apt,158,30,8,2019-05-25,0.42,1,283 +21108401,Private Large Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71727,-73.95597,Private room,60,4,36,2019-05-03,1.67,4,0 +21108458,Cute bedroom in the heart of Williamsburg,127985639,Sarah,Brooklyn,Williamsburg,40.71171,-73.95158,Private room,45,7,0,,,1,0 +21109037,Prime Upper West Side Bedroom,51339741,Liz,Manhattan,Upper West Side,40.77895,-73.98332,Private room,145,1,43,2019-07-02,2.01,1,197 +21109039,Convenient 2 BR in Downtown Flushing Chinatown,5962328,Alan,Queens,Flushing,40.75951,-73.82189,Entire home/apt,110,30,5,2019-03-18,0.27,15,297 +21110331,Cherry Hill,141012332,Jeremiah,Bronx,Mott Haven,40.80762,-73.92454,Entire home/apt,115,2,100,2019-06-23,4.76,1,130 +21110408,Private Brownstone Bedroom!!!,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68563,-73.93863,Private room,50,2,23,2018-01-28,1.08,5,0 +21110494,Nice spotless room attached PRIVATE FULL BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75898,-73.81448,Private room,45,3,67,2019-06-21,3.16,10,349 +21110709,Smart 3BR in Trendy Astoria - 8 min to N/W Subway,59959974,Russell,Queens,Astoria,40.7726,-73.92298,Entire home/apt,180,4,41,2019-07-05,2.22,1,120 +21111912,Easy Stay in Williamsburg Brooklyn,8519823,Mimi,Brooklyn,Williamsburg,40.70822,-73.95921,Entire home/apt,350,30,5,2018-08-01,0.24,1,166 +21112291,Entire Home / Apt in Williamsburg + Rooftop,21383928,Kevin,Brooklyn,Williamsburg,40.71195,-73.95872,Entire home/apt,125,3,40,2019-07-03,1.85,1,0 +21112746,"Studio on UWS, three blocks from the Central Park",49046009,Anthony,Manhattan,Upper West Side,40.78607,-73.97717,Entire home/apt,180,5,27,2019-04-20,1.25,1,0 +21112848,Cozy Master Bedroom 5 minutes from JFK,114975592,John And Colleen,Queens,Springfield Gardens,40.6651,-73.76614,Private room,70,1,19,2019-05-16,0.94,4,84 +21112924,Beautiful 1 bed right off express train in Harlem!,92463274,Cameron,Manhattan,Harlem,40.8258,-73.94405,Entire home/apt,126,3,15,2019-02-28,0.70,1,2 +21113189,East Village Apartment,67211684,Zsofia,Manhattan,East Village,40.72615,-73.99072,Entire home/apt,190,4,14,2019-05-23,0.71,1,0 +21116698,ANGUS.3.20min to Manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68191,-73.92064,Private room,50,3,86,2019-06-16,3.97,4,346 +21118650,Clinton Hill room with a view,145187951,Nikki,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95754,Private room,50,3,18,2018-07-30,1.04,2,0 +21118725,♛ Fabulous Bedroom |★★★★★| ♛,151316042,Edhar,Manhattan,Chinatown,40.71396,-73.99151,Private room,95,1,55,2019-06-16,2.56,2,10 +21119908,"Cozzy Room on Bedford, 20 minutes to Manhattan",28953246,Maxim,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95396,Private room,100,1,0,,,1,0 +21120246,"Positive Vibes, Bushwick Living - Entire Apartment",6378149,Laurel,Brooklyn,Bushwick,40.69883,-73.91583,Entire home/apt,115,2,1,2018-08-10,0.09,3,0 +21120547,Full Apartment / 1 Bedroom ( Lower Level),152331348,Juan,Queens,Richmond Hill,40.69474,-73.82284,Entire home/apt,85,2,33,2019-06-16,1.62,1,179 +21121438,Royalty room,17766289,Kaila,Bronx,Kingsbridge,40.86924,-73.90651,Private room,40,30,4,2018-06-01,0.19,2,148 +21121441,Bright 1 bd apartment next to west villiage,152339773,Amanda Haowei,Manhattan,Chelsea,40.74083,-74.00349,Entire home/apt,195,5,0,,,1,0 +21121507,Huge two bedroom apt n Bayridge!!!,25311373,Qais,Brooklyn,Bay Ridge,40.62398,-74.02786,Private room,79,1,0,,,2,179 +21121688,king size Room available now in BayRidge,25311373,Qais,Brooklyn,Bay Ridge,40.62569,-74.02654,Private room,89,1,3,2019-05-22,0.14,2,269 +21122097,Fresh and cozy male room on Manhattan III,39528519,Max,Manhattan,Lower East Side,40.7111,-73.98865,Shared room,32,14,4,2019-02-09,0.25,28,341 +21122874,Private Room w/ Queen Bed & Twin Bed,152353924,Dominique,Bronx,Parkchester,40.83408,-73.87419,Private room,28,3,27,2019-07-01,1.32,2,214 +21123576,Bedstuy treasure,46019665,Jose,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95156,Private room,55,3,1,2017-10-17,0.05,1,0 +21124150,Hamilton Beach House,152366935,Victor,Queens,Howard Beach,40.65059,-73.82896,Entire home/apt,100,1,42,2019-07-01,1.97,1,220 +21125733,"Modern, Bright, Private Bklyn Room w/ 2 Beds",12632660,Christopher,Brooklyn,Fort Greene,40.69211,-73.98102,Private room,125,3,60,2019-06-21,2.79,1,0 +21127460,"HUGE, well-lit apartment, great Brooklyn location",12317482,Anna,Brooklyn,Crown Heights,40.66505,-73.95998,Entire home/apt,150,2,1,2017-09-30,0.05,1,0 +21133911,2BED 2 BATH / HIGH FLOOR/ BALCONY/ COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77538,-73.98814,Entire home/apt,300,30,7,2019-06-24,0.38,25,313 +21135737,Clean Comfortable Apartment near the Subway!,18283,Dominic,Brooklyn,Greenpoint,40.73222,-73.95395,Entire home/apt,150,3,0,,,1,0 +21136103,Modern Bedroom in the Heart of Williamsburg,28839010,Scott,Brooklyn,Williamsburg,40.71054,-73.94691,Private room,115,2,0,,,1,0 +21136144,"Cozy, charming and clean bedroom in Manhattan.",54198006,Bel And Camila,Manhattan,East Harlem,40.79803,-73.93648,Private room,100,1,35,2019-07-07,1.82,2,318 +21136837,Cozy bedroom in Bed-stuy town house,10823443,Margaux,Brooklyn,Bedford-Stuyvesant,40.68454,-73.94829,Private room,45,4,0,,,1,0 +21136851,Massive Luxury 1BR Condo in Astoria / LIC,5760970,Chris,Queens,Ditmars Steinway,40.76982,-73.90254,Entire home/apt,150,2,18,2019-05-19,0.86,2,364 +21138538,Lavish 2 BR minutes from Central Park!,149977050,Ivan,Manhattan,Upper West Side,40.78631,-73.97752,Entire home/apt,199,2,27,2019-06-18,1.34,1,335 +21138554,Huge room in beautiful Brooklyn apartment,7835116,Josh,Brooklyn,Clinton Hill,40.68729,-73.96785,Private room,50,14,0,,,1,0 +21138717,Beautiful Manhattan Apt with Private Garden!,70307900,Dominique,Manhattan,Upper East Side,40.7766,-73.94862,Entire home/apt,275,30,17,2019-05-12,0.79,1,196 +21138939,Urban Oasis in Heart of Brooklyn,56113781,Gerard,Brooklyn,Bushwick,40.68765,-73.90821,Private room,75,1,11,2019-01-03,0.52,1,0 +21139003,"Spacious, Beautiful, 1 or 2 BR in Cobble Hill",152505727,Jack,Brooklyn,Columbia St,40.68787,-74.00037,Entire home/apt,150,15,5,2019-06-30,0.25,1,105 +21139175,Yinka's Guest house,152493041,Clover,Brooklyn,East Flatbush,40.66197,-73.92587,Entire home/apt,180,3,14,2019-06-01,0.69,1,175 +21139541,Tidy Cozy Room separate entrance paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.7557,-73.81237,Private room,43,2,43,2019-05-27,1.99,10,365 +21139788,Sunny room in a spacious Williamsburg apt,17344471,Chris,Brooklyn,Williamsburg,40.71655,-73.94162,Private room,85,1,28,2018-08-28,1.35,2,0 +21139869,East Side Private Bedroom,28027678,Gane,Manhattan,Kips Bay,40.74274,-73.97918,Private room,115,1,160,2019-06-28,7.43,1,15 +21139995,Cozy and Unique Warehouse Apartment,12424361,Christopher,Brooklyn,Crown Heights,40.67834,-73.94899,Entire home/apt,105,3,8,2018-12-29,0.38,1,188 +21140860,Amazing room in spacious 2BR apt in Greenpoint!,24523422,Guanchen,Brooklyn,Greenpoint,40.72109,-73.94679,Private room,70,3,1,2017-10-16,0.05,1,0 +21140951,2BED 2BATH PRIVATE BALCONY / COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77576,-73.98883,Entire home/apt,290,30,4,2019-05-24,0.22,25,281 +21141576,"Brand new, comfortable, refined, our first!全新,商务最佳",152530167,Luxi,Queens,Flushing,40.76407,-73.82518,Entire home/apt,148,1,24,2019-06-06,1.15,1,77 +21141704,Private bedroom hideaway in East Village gem,5443000,Erin,Manhattan,East Village,40.73091,-73.98223,Private room,110,2,29,2019-06-16,1.47,2,0 +21142363,Sunny Room in a Brownstone Penthouse,119464278,Gary,Manhattan,Upper West Side,40.78729,-73.97033,Private room,110,30,0,,,1,0 +21147249,Spacious Bedroom in Renovated Apartment- Astoria,75563831,Rayan,Queens,Astoria,40.75811,-73.90954,Private room,43,4,19,2019-07-05,1.64,2,1 +21147708,Full 2 Br a block from Central Park North,152584041,James,Manhattan,Harlem,40.79969,-73.95449,Entire home/apt,170,3,44,2019-03-31,2.23,1,0 +21147943,Jewel On Parkside 3,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.65516,-73.96121,Private room,65,28,5,2018-12-16,0.26,3,297 +21148021,Cozy East Harlem Apartment,17767705,Shereen,Manhattan,East Harlem,40.79477,-73.93282,Private room,90,2,3,2018-01-04,0.15,1,0 +21148292,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77057,-73.95759,Entire home/apt,159,30,1,2017-11-12,0.05,87,344 +21148829,"Charming, newly renovated Victorian townhouse apt",57013,Ari And Irin,Queens,Ridgewood,40.7087,-73.90897,Entire home/apt,175,4,2,2018-04-01,0.11,1,0 +21149773,Huge Bedroom with 1/2 Bathroom + Private Entrance,18413613,Sam,Brooklyn,Bushwick,40.69848,-73.93749,Private room,60,1,72,2019-06-29,3.34,1,16 +21149901,Cozy room in the heart of Brooklyn,152605245,Kristina,Brooklyn,Kensington,40.64382,-73.97774,Private room,35,3,1,2017-10-16,0.05,1,0 +21151290,BRIGHT AND NEW! 3beds/2baths-Everything you need!,11571496,Carmela,Brooklyn,Bushwick,40.68824,-73.91628,Entire home/apt,148,2,92,2019-06-23,4.33,2,4 +21151399,Quiet apartment next to subway. 15 min to midtown,35413624,Alexis,Manhattan,Harlem,40.82154,-73.94554,Entire home/apt,110,15,1,2017-10-12,0.05,1,0 +21151898,Garden Apartment on 129th Street,109930093,Chris,Manhattan,East Harlem,40.80893,-73.93982,Private room,115,3,17,2018-06-10,0.83,2,0 +21153619,3 Mins to Subway 30 minuets to WTC Safe Area,35927005,Kathy,Manhattan,Lower East Side,40.71426,-73.98873,Private room,85,2,30,2019-06-08,1.43,10,344 +21154544,Huge beautiful bedroom with double exposure,66260832,Dragana,Manhattan,Harlem,40.8152,-73.95175,Private room,50,15,0,,,1,0 +21155115,SUPER COZY Apartment in Manhattan (1 Bedroom!),152628203,Margarette,Manhattan,Upper West Side,40.79221,-73.97331,Entire home/apt,120,4,7,2018-01-28,0.33,1,0 +21156632,Victorian styled long townhouse in NYC,150363476,Eliasz,Bronx,Parkchester,40.83439,-73.8585,Private room,300,2,9,2018-11-23,0.47,1,0 +21158552,1600 sq ft Luxury Duplex Townhouse-Carroll Gardens,80772013,Lauren,Brooklyn,Carroll Gardens,40.67584,-74.00057,Entire home/apt,200,2,6,2019-01-06,0.32,1,23 +21158775,The Notorious B.N.B. { The Shasha },1177497,Jessica,Brooklyn,Clinton Hill,40.69075,-73.9677,Private room,319,1,52,2019-06-10,2.48,11,365 +21159450,NYC Large clean UES room 1 Block from the Subway!,152702239,Nathan,Manhattan,Upper East Side,40.77669,-73.94822,Private room,100,3,5,2018-03-19,0.24,1,0 +21160332,"1 bedroom apartment Williamsburg, NYC",120935104,Knut,Brooklyn,Williamsburg,40.72017,-73.9575,Entire home/apt,200,120,0,,,1,263 +21160958,Huge private bedroom one block from the train!,2385790,G,Brooklyn,Bedford-Stuyvesant,40.69592,-73.93793,Private room,80,1,5,2017-11-17,0.24,2,0 +21161038,Red Hook Garden Apartment,11310249,Adam,Brooklyn,Red Hook,40.67844,-74.01058,Entire home/apt,120,2,98,2019-06-10,4.64,1,193 +21161561,Spacious charming upper east side apartment,24088306,Ayhan,Manhattan,Upper East Side,40.77112,-73.96226,Entire home/apt,239,7,70,2019-07-01,3.76,1,185 +21161707,Soulful minipenthouse perched over East Village,2171676,Thomas,Manhattan,East Village,40.7277,-73.97841,Private room,71,2,112,2019-07-07,5.22,1,129 +21161871,Entire apartment in Turtle Bay,3778274,AJ And Freddy,Manhattan,Midtown,40.75643,-73.96847,Entire home/apt,120,2,7,2019-01-01,0.36,2,0 +21163303,Cozy Central Park Apartment,50388251,Samuel,Manhattan,Upper West Side,40.80015,-73.96159,Private room,145,2,0,,,1,0 +21163689,"Private room in Clinton hill, Brooklyn NY",146481790,Sneha,Brooklyn,Clinton Hill,40.6926,-73.9639,Private room,95,1,4,2017-12-03,0.19,1,0 +21164579,Yi He hotel,152760575,Bifan,Queens,Flushing,40.76047,-73.83193,Private room,100,2,1,2017-11-18,0.05,1,0 +21165138,"温馨双人房,步行地铁两分钟,",148852095,Kelly,Queens,Douglaston,40.76962,-73.74795,Private room,65,2,21,2019-01-01,0.98,3,89 +21169968,"Quiet, private bedroom close to beaches.",24193553,Renee,Brooklyn,Greenpoint,40.72402,-73.95285,Private room,60,10,0,,,1,89 +21170090,"Clotilde's House. Studio apt in Manhattan, Harlem.",36450406,Franklin,Manhattan,Harlem,40.8235,-73.94619,Entire home/apt,100,2,1,2019-03-25,0.28,1,1 +21171230,Respectful guest for long term is required,82975282,Evyiatar,Queens,Bayswater,40.6004,-73.7667,Private room,47,30,8,2019-06-30,0.38,2,303 +21171726,SWEET Lower East Side Apartment :),6009690,Mike,Manhattan,Lower East Side,40.71509,-73.98992,Entire home/apt,126,3,4,2017-11-13,0.19,1,3 +21172187,Large Private Room In Spacious Guest House,152353924,Dominique,Bronx,Parkchester,40.83555,-73.8757,Private room,25,3,38,2019-07-02,1.82,2,119 +21172762,Spacious room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75684,-73.99465,Private room,114,1,133,2019-07-01,6.23,2,67 +21172924,Midtown East,152852607,Jerry,Manhattan,Midtown,40.7557,-73.96871,Entire home/apt,185,3,35,2019-06-10,1.66,1,0 +21173148,"Sunny apartment, great amenties and transporation.",27231066,Victoria,Manhattan,Harlem,40.81138,-73.95442,Entire home/apt,165,3,22,2019-05-27,1.03,1,0 +21173263,Private Entrance Room in Brooklyn w/ Queen Bed,48510097,Ellen,Brooklyn,Bushwick,40.6897,-73.91512,Private room,60,2,1,2017-10-09,0.05,1,0 +21174008,Beautiful 1 bedroom/ garden Manhattan West Village,15751193,Thomas,Manhattan,West Village,40.73309,-74.00482,Entire home/apt,225,1,74,2019-07-01,3.66,1,3 +21174364,Casa de Fierce,109074907,Dasha,Manhattan,Upper East Side,40.77421,-73.95544,Entire home/apt,150,1,1,2017-10-26,0.05,1,0 +21174445,Nice NYC Apartment 20 minutes' away from Manhattan,42916011,Yang,Queens,Sunnyside,40.74351,-73.92577,Private room,55,7,1,2017-12-14,0.05,2,353 +21174566,"Columbus Circle, Central Park, Time Warner O MY!",42628496,Kenny,Manhattan,Hell's Kitchen,40.76616,-73.98441,Private room,125,1,39,2019-04-14,1.83,1,0 +21174693,"Quiet and Cozy Private Room, 20 min from Downtown",152872412,Zakhar,Brooklyn,Borough Park,40.64103,-73.99228,Private room,59,8,7,2019-05-31,0.33,1,109 +21174772,Sun-filled Boho Bedroom in the Heart of Astoria!,56184689,Emily,Queens,Astoria,40.76705,-73.9169,Private room,95,2,13,2018-07-07,0.61,2,0 +21175036,Beautiful Brooklyn Private Room,152878377,Anthony,Brooklyn,Flatbush,40.64356,-73.96318,Private room,75,3,19,2019-06-30,0.90,1,78 +21175139,"Manhattan, double size sofa bed no deposit",7055854,Diane,Manhattan,Harlem,40.80323,-73.94253,Private room,1500,5,3,2017-10-23,0.14,5,219 +21175160,Sunny park view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81821,-73.94746,Private room,85,30,53,2019-06-23,2.49,4,309 +21175464,"Nostrand Ave & St Johns, Dble room in shared apt.",152882655,Edward,Brooklyn,Crown Heights,40.67249,-73.94933,Private room,75,3,1,2017-10-08,0.05,1,0 +21175493,Trendy Park Slope Apartment,152883368,Amber,Brooklyn,Park Slope,40.6749,-73.97979,Private room,130,1,14,2018-06-02,0.69,1,0 +21175597,Sunny church view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94584,Private room,70,30,29,2019-05-28,1.36,4,292 +21175822,Studio in Upper East Side Manhattan,152885643,Seamus,Manhattan,Upper East Side,40.77585,-73.95101,Entire home/apt,128,4,12,2018-12-26,0.60,1,0 +21175996,Beautiful two bedroom apartment in Manhattan NYC,96235534,Francisco,Manhattan,Washington Heights,40.84334,-73.9405,Entire home/apt,130,2,94,2019-06-23,4.41,1,116 +21176110,Modern One-Bedroom Apartment - Recently Renovated,48812051,Danielle,Manhattan,Harlem,40.81042,-73.94717,Entire home/apt,120,4,5,2018-12-26,0.26,1,0 +21176417,Location Location Location! Comfort & Convenience,122975,Adam,Brooklyn,Fort Greene,40.68569,-73.97346,Private room,69,5,0,,,1,0 +21177066,Small and Cozy room on Upper West Side,24929024,Kaushik,Manhattan,Upper West Side,40.80003,-73.96446,Private room,47,1,0,,,1,0 +21177156,New 1BR Apartment In Prime Lower East Side,1029090,Jonathan,Manhattan,East Village,40.72236,-73.98534,Entire home/apt,181,2,10,2018-08-16,0.47,1,0 +21177608,Feng Shui Private Room In Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6897,-73.9064,Private room,48,2,39,2019-06-19,1.83,4,179 +21177976,Quaint Bedroom in the Heart of New York!,52876917,Josh,Manhattan,Harlem,40.81978,-73.95476,Private room,50,2,0,,,1,0 +21178032,"#2,单间双人房,(共用卫生间)",148852095,Kelly,Queens,Flushing,40.75547,-73.83547,Private room,60,2,24,2019-07-02,1.14,3,76 +21178117,"大双人房,共用卫生间,",148852095,Kelly,Queens,Flushing,40.75379,-73.83011,Private room,58,3,20,2019-05-27,0.97,3,88 +21181643,"Midtown Manhattan shared Apartment,Prime Location",152948553,Lexy,Manhattan,Chelsea,40.75133,-73.99671,Private room,99,1,77,2019-06-17,3.64,1,101 +21182937,Cozy Apartment. 15 mins away from LGA & Manhattan,91646104,Pao,Queens,Woodside,40.74371,-73.9109,Entire home/apt,150,3,87,2019-07-01,4.59,3,200 +21183312,Charming Greenpoint Apartment. Clean!!!!,50383289,Scott,Brooklyn,Greenpoint,40.724,-73.95202,Entire home/apt,225,1,18,2018-07-02,0.87,1,0 +21183975,"Nice & new room, washer/dryer, 5 min to train!",43148410,Lo,Brooklyn,East New York,40.66739,-73.88739,Private room,40,1,7,2018-08-28,0.33,3,364 +21184012,"Spacious, light and clean apartment in Brooklyn",16024560,Anna,Brooklyn,Fort Hamilton,40.61902,-74.03514,Entire home/apt,130,2,47,2019-06-19,2.23,1,165 +21184173,Private room in Queens,21250331,Clara,Queens,Bayside,40.75433,-73.7688,Private room,35,1,92,2019-07-07,4.30,3,318 +21184304,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77122,-73.95909,Entire home/apt,169,30,0,,,87,344 +21184343,"Lovely, charming and clean bedroom in Manhattan.",54198006,Bel And Camila,Manhattan,East Harlem,40.79567,-73.9366,Private room,150,1,44,2019-06-21,2.07,2,305 +21185183,Luxury 1BR in NYC + Great Amenities & Rooftop Ter.,30283594,Kara,Manhattan,Chelsea,40.75121,-73.99812,Entire home/apt,169,30,1,2017-11-20,0.05,121,282 +21185448,Comfy Crown Heights room,10714931,Nick,Brooklyn,Crown Heights,40.67335,-73.95391,Private room,37,15,21,2019-06-30,1.44,4,67 +21185633,Luxurious Brand New Apt with Washer Dryer,75029289,Rlg,Manhattan,Upper East Side,40.77606,-73.95422,Entire home/apt,125,30,5,2019-05-31,0.34,5,342 +21185909,Cozy apartment with a huge back yard.,38753504,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9193,Private room,62,2,28,2018-07-29,1.34,1,0 +21186749,"Relax in Brooklyn, morning sun and treelined patio",57576702,Ely,Brooklyn,Clinton Hill,40.6859,-73.96109,Entire home/apt,120,2,17,2019-04-29,0.92,1,8 +21187856,Private Cozy Bedroom In Bed Stuy,3183818,Elijah,Brooklyn,Bedford-Stuyvesant,40.68254,-73.94504,Private room,55,5,6,2018-08-13,0.29,1,0 +21188044,Centrally located private home in flatbush,67869496,Debbie,Brooklyn,Flatlands,40.62187,-73.94414,Entire home/apt,250,1,0,,,1,0 +21188555,Simple cozy room in Bed-Stuy!,153015791,Miki,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93721,Private room,45,3,2,2018-02-08,0.09,1,0 +21189177,"Cozy private room, king size bed, private bathroom",5400205,Lara,Brooklyn,Bedford-Stuyvesant,40.69261,-73.93325,Private room,120,3,22,2019-06-22,1.03,1,357 +21190325,Lg Room Historic Clinton Hill Near Pratt/Barclays,66041795,Stephanie,Brooklyn,Clinton Hill,40.68628,-73.96707,Private room,55,5,2,2018-12-29,0.11,1,0 +21190502,Cozy Small Studio in Manhattan! East Village!,8628273,Rafael,Manhattan,East Village,40.72982,-73.98593,Entire home/apt,140,2,2,2018-11-14,0.11,1,0 +21190746,Large Split Level Room in Greenpoint Loft,6429030,Joshua,Brooklyn,Greenpoint,40.7257,-73.95606,Private room,100,1,2,2018-01-01,0.11,1,0 +21191264,Private bedroom in East Village,81959199,Victoria,Manhattan,Lower East Side,40.72269,-73.98862,Private room,80,3,23,2019-07-02,1.10,1,28 +21191462,Charming and very Sunny Apartment,46208887,Lu&Ben,Brooklyn,Crown Heights,40.67541,-73.96061,Entire home/apt,70,7,2,2018-05-13,0.11,1,0 +21191546,"Monroe Manor - 3 bedroom, 2 full bath duplex",153044885,Joy,Brooklyn,Bedford-Stuyvesant,40.68747,-73.92879,Entire home/apt,189,3,77,2019-07-02,3.66,1,17 +21191862,(ABC) 3 bedrooms-2 bath up to 6 pp,110965771,Wilson,Queens,Flushing,40.77317,-73.82405,Private room,200,2,12,2019-06-09,0.64,7,35 +21192066,"Room with lots of light, washer/dryer, free yoga",43148410,Lo,Brooklyn,East New York,40.66756,-73.88704,Private room,45,1,6,2019-05-13,0.28,3,333 +21192123,Modern large Duplex in Greenwich Village,153052198,Helena,Manhattan,Greenwich Village,40.73366,-73.99805,Entire home/apt,275,120,0,,,1,235 +21192158,Homey studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75001,-73.97573,Entire home/apt,150,30,2,2019-05-30,0.28,50,364 +21192284,Large studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74872,-73.97701,Entire home/apt,150,30,1,2017-12-10,0.05,50,364 +21192354,Violet Dynasty,138006255,Carol,Brooklyn,Canarsie,40.63928,-73.91081,Private room,65,1,2,2018-10-07,0.19,2,365 +21192364,Immaculate studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74877,-73.977,Entire home/apt,150,30,2,2019-05-31,0.21,50,364 +21192430,Mint studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74839,-73.97683,Entire home/apt,195,30,0,,,50,364 +21195408,Nice and Cozy bedroom in Bedstuy,153083048,Thomas,Brooklyn,Bedford-Stuyvesant,40.68212,-73.95419,Private room,59,5,5,2018-04-07,0.24,1,0 +21197268,Nice and warm room with a Queen Size Bed!!,22784412,Stephanie,Queens,Glendale,40.70404,-73.85832,Private room,43,1,9,2019-06-26,0.42,2,301 +21198038,Fantastic loft space in Greenpoint,42905152,Charlotte,Brooklyn,Greenpoint,40.72268,-73.94163,Entire home/apt,160,10,0,,,1,42 +21199473,舒适温馨小屋两间,153018041,Feng,Queens,Flushing,40.75602,-73.80241,Private room,95,1,22,2018-11-12,1.12,2,0 +21199546,XLarge & Serene Clinton Hill 2 bdr Loft,55430096,Magali,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95709,Entire home/apt,190,20,2,2018-07-31,0.14,1,310 +21199630,Updated 1 Bedroom Best Location Modern Finishes,61391963,Corporate Housing,Manhattan,Upper East Side,40.7717,-73.96116,Entire home/apt,125,30,5,2018-12-14,0.26,91,347 +21200108,The Henry - A One Bedroom Cobble Hill Apartment,151645438,Parker,Brooklyn,Cobble Hill,40.68553,-73.99804,Entire home/apt,165,2,0,,,1,0 +21200993,Lower East Side Bedroom w. A/C and Cappuccinos!,147536196,Marina,Manhattan,Lower East Side,40.7198,-73.98209,Private room,135,1,50,2019-06-27,2.35,1,32 +21201088,Luxury designer duplex in Bed Stuy,761943,Chris,Brooklyn,Bedford-Stuyvesant,40.68019,-73.91102,Entire home/apt,225,3,12,2019-07-02,0.61,1,72 +21201777,Stunning factory loft in the heart of Williamsburg,153143032,Natali,Brooklyn,Williamsburg,40.71858,-73.96283,Entire home/apt,380,1,128,2019-07-01,5.99,1,173 +21202563,Beautiful luxury condo heart of Brooklyn,32834879,Neel,Brooklyn,Greenpoint,40.7284,-73.94983,Entire home/apt,200,3,0,,,1,0 +21203545,Small Apartment by Central Park/Columbus Circle,40100,Nicole,Manhattan,Upper West Side,40.76946,-73.986,Entire home/apt,129,3,2,2018-07-01,0.10,2,0 +21203987,Beautiful & Spacious Private Brooklyn Loft,9206072,Liron,Brooklyn,Bedford-Stuyvesant,40.69195,-73.96045,Entire home/apt,133,2,101,2019-06-30,4.93,1,87 +21204122,Private Room in Bushwick! Close to Trains/Buses!,4464205,Braden,Brooklyn,Bushwick,40.69472,-73.92376,Private room,44,2,3,2017-10-29,0.14,2,0 +21204708,Quiet East Village Studio next to snug coffee shop,23386210,John,Manhattan,East Village,40.7269,-73.9847,Entire home/apt,142,10,22,2018-12-30,1.04,1,0 +21204890,Perfect Room in West Harlem,61678511,Phillip,Manhattan,Harlem,40.81567,-73.94841,Private room,55,3,100,2019-07-02,4.69,1,11 +21205374,Waterfront Zen Oasis,12160369,Golan,Queens,Astoria,40.76761,-73.93567,Entire home/apt,185,9,6,2019-06-10,0.42,1,15 +21205622,Comfortable room/close to Manhattan,87397826,Monica,Queens,Long Island City,40.75608,-73.93048,Private room,110,4,5,2019-01-04,0.24,2,0 +21205650,Comfy 1 bedroom suite in midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75017,-73.97684,Entire home/apt,175,30,0,,,50,364 +21205810,Elegant 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74817,-73.97665,Entire home/apt,222,30,1,2019-02-17,0.21,50,364 +21205891,Roomy 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74876,-73.97553,Entire home/apt,175,30,5,2019-06-07,0.37,50,344 +21206002,Impressive 1 bedroom near Sloan Kettering,120762452,Stanley,Manhattan,Murray Hill,40.74865,-73.9753,Entire home/apt,175,30,0,,,50,364 +21206343,BK Bungalow - Cozy Williamsburg 1BD (right off L),153189324,Mason,Brooklyn,Williamsburg,40.71433,-73.94026,Entire home/apt,115,2,5,2017-12-26,0.23,2,0 +21206529,Waterfront Wonder,3427065,Ron,Brooklyn,Williamsburg,40.71866,-73.96417,Private room,180,1,1,2017-10-06,0.05,1,0 +21209950,"Clean room in Chinatown, close to all the fun!",11026055,Tessa,Manhattan,Chinatown,40.718,-73.99666,Private room,80,4,2,2017-12-18,0.09,1,0 +21210250,"Large Studio Apartment, 15-20mins from downtown",79753770,Katrina,Manhattan,Washington Heights,40.83638,-73.94294,Entire home/apt,125,30,3,2018-05-31,0.15,2,323 +21211033,Bright Apartment in BedStuy - 20 min from City,12528835,Paula,Brooklyn,Bedford-Stuyvesant,40.68964,-73.95259,Entire home/apt,125,2,11,2019-06-12,0.53,2,0 +21211369,HUGE 2 Floor Penthouse w Private Roof,4457116,Greg,Brooklyn,Crown Heights,40.66541,-73.95736,Entire home/apt,475,1,29,2019-06-27,1.72,1,123 +21212060,420 FRIENDLY BACKYARD PARTY EXPERIENCE ONLY,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.682,-73.91572,Private room,750,1,4,2018-07-05,0.22,4,89 +21212488,Modern Astoria 1BR w/Private Patio,11951550,Nayef,Queens,Astoria,40.77061,-73.92109,Entire home/apt,86,4,3,2018-01-01,0.15,1,0 +21212612,Private Room in Crown Heights Close to Subway,17412395,Emily,Brooklyn,Crown Heights,40.66788,-73.95111,Private room,75,1,55,2019-06-23,2.70,1,35 +21212937,EAST 60TH STREET STUDIO WITH 2 DOUBLE BEDS,76104209,Rated,Manhattan,Upper East Side,40.76114,-73.961,Entire home/apt,153,30,1,2017-10-30,0.05,33,365 +21213047,The Solstice - A One Bedroom Apartment,153150422,Charles,Manhattan,Chelsea,40.74226,-74.00602,Entire home/apt,165,2,11,2018-06-24,0.53,1,2 +21213095,Raw Vegan B&B,153251827,Maria,Queens,Ridgewood,40.70278,-73.90229,Private room,55,1,37,2019-07-02,2.58,1,75 +21213775,Cozy Contemporary room near JFK (The Blue room),141052003,Nicole,Queens,Jamaica,40.6841,-73.78203,Private room,50,1,7,2019-05-10,0.38,4,155 +21213799,Nice room in Harlem,63417081,Devon,Manhattan,Harlem,40.82332,-73.94426,Private room,45,30,2,2018-12-31,0.10,8,261 +21214101,Perfectly Quiet 1 bedroom get away!,153262506,Lashaya,Queens,Far Rockaway,40.59382,-73.75503,Private room,35,1,1,2017-10-19,0.05,1,0 +21214554,Beautiful Suite W/ Private Bathroom,3603284,Carupano,Queens,Ridgewood,40.71063,-73.9152,Private room,90,7,28,2019-06-08,1.34,1,157 +21215073,Roomy bedroom in Spacious Chelsea Loft!,9522664,Kevin,Manhattan,Chelsea,40.74337,-73.99362,Private room,149,2,19,2019-05-11,0.89,1,274 +21215200,Quiet and private in the heart of Chelsea.,2305978,Emmanuel,Manhattan,Chelsea,40.74325,-73.99975,Entire home/apt,175,2,67,2019-06-24,3.31,2,101 +21216288,Spacious Apartment + Bushwick Backyard,5022142,Yoni,Queens,Ridgewood,40.706,-73.91418,Entire home/apt,90,4,4,2019-05-29,0.26,1,0 +21217074,Harlem Hideaway Garden Apartment,145825873,Dennis,Manhattan,Harlem,40.80475,-73.9491,Entire home/apt,108,30,3,2019-01-19,0.23,4,213 +21217451,Huge Private Room in the Heart of Williamsburg!,14278133,Sharif,Brooklyn,Williamsburg,40.71783,-73.95036,Private room,78,2,31,2019-01-05,1.46,3,0 +21217698,Private room/office in the heart of Manhattan,6958919,Ariella,Manhattan,Morningside Heights,40.81373,-73.96013,Private room,50,1,0,,,1,0 +21218250,Cozy and Modern Brooklyn Loft with amazing view!,953913,Kyle,Brooklyn,Bushwick,40.69952,-73.92616,Entire home/apt,250,6,1,2017-10-18,0.05,1,0 +21218639,Lower East Side room steps from all the action!,10787061,Vincent,Manhattan,Lower East Side,40.72105,-73.9931,Entire home/apt,95,2,5,2017-12-10,0.24,1,0 +21219137,Nice room in LES,22617181,Leonardo,Manhattan,Lower East Side,40.71686,-73.98458,Private room,85,1,1,2018-01-01,0.05,1,0 +21219651,Charming Brooklyn Artist's Room,15277706,Sarah,Brooklyn,Crown Heights,40.67212,-73.95253,Private room,100,1,58,2019-07-06,2.74,1,37 +21219737,Awesome place in sunnyside,48241662,Klever,Queens,Sunnyside,40.73554,-73.91858,Private room,60,60,0,,,1,179 +21220573,Beautiful Clean Studio in Midtown East,85318599,Murphy,Manhattan,Midtown,40.75649,-73.97126,Entire home/apt,160,4,12,2019-06-18,0.59,1,0 +21222809,Bed-stuY GeM !,140862658,Carmen,Brooklyn,Bedford-Stuyvesant,40.68904,-73.9428,Private room,68,1,37,2019-01-20,1.84,1,0 +21223569,My Sunny Island Room,135320687,Ladi,Manhattan,Roosevelt Island,40.76301,-73.94959,Private room,85,3,34,2019-05-29,1.60,2,195 +21224447,Designer Studio /1Br in Williamsburg with Views,108160091,Dasha,Brooklyn,Williamsburg,40.71191,-73.95988,Entire home/apt,198,30,9,2019-05-25,0.44,3,298 +21224844,Williamsburg 1 Bedroom Gem,1565284,Daniel,Brooklyn,Williamsburg,40.70958,-73.96525,Entire home/apt,290,3,6,2018-11-25,0.33,1,0 +21225854,"Bumble of Brooklyn, Large space",153378241,Victoria,Queens,Ridgewood,40.6999,-73.90059,Private room,48,3,2,2018-01-04,0.11,1,0 +21226494,Affordable Space in Washington Heights Manhattan,122642839,Dylan,Manhattan,Washington Heights,40.84301,-73.94175,Shared room,60,1,0,,,1,0 +21226783,THE SEXY SUITE SPOT,9849167,Candy,Brooklyn,Crown Heights,40.67234,-73.914,Private room,75,1,34,2019-06-02,1.62,1,35 +21227009,Beautiful Apartment in the heart of Chelsea,24047286,Sabrina,Manhattan,Chelsea,40.7456,-73.99771,Entire home/apt,250,4,1,2017-10-12,0.05,1,0 +21227069,Beautiful and big 1BR sublet close by Central Park,153388393,Irini,Manhattan,Harlem,40.80305,-73.95766,Private room,50,5,8,2019-05-22,0.39,1,188 +21227092,Light-filled Brooklyn Bedroom and Art Space,15170042,Meaghan,Brooklyn,Crown Heights,40.67261,-73.9578,Private room,90,1,0,,,1,0 +21227721,Super Host in Heart of Time Square/City Central,31929860,Bryan,Manhattan,Hell's Kitchen,40.7613,-73.99155,Private room,155,1,58,2019-06-21,2.72,4,304 +21228962,Enchanted Village Retreat,35902083,Luke A,Manhattan,Greenwich Village,40.73386,-73.99643,Entire home/apt,220,5,7,2018-04-06,0.33,1,0 +21229168,Artsy Bowery Loft,40818755,Hadas,Manhattan,NoHo,40.72535,-73.99341,Entire home/apt,250,2,22,2019-05-28,1.04,1,89 +21230082,ALL new modern apartment of 2 bedroom NYC style!❤️,153419495,Dina,Manhattan,Upper East Side,40.76203,-73.96607,Entire home/apt,378,1,72,2019-07-06,3.65,1,52 +21230106,Bushwick Oasis,525698,Ryan,Brooklyn,Bushwick,40.69237,-73.91907,Entire home/apt,325,3,0,,,1,0 +21230213,Beautiful Room in Bed-Stuy Apartment,125549620,Ashley,Brooklyn,Bedford-Stuyvesant,40.68527,-73.93924,Private room,35,2,1,2017-10-25,0.05,1,0 +21230280,(C) room for 2 - sharing bath,110965771,Wilson,Queens,Flushing,40.77241,-73.82388,Private room,45,2,24,2019-04-28,1.22,7,57 +21230688,Harlem Hideaway Parlor Apartment,145825873,Dennis,Manhattan,Harlem,40.80436,-73.94865,Entire home/apt,96,30,5,2019-04-06,0.53,4,32 +21230883,Private Room in Bushwick Apartment,17330515,Natalie,Brooklyn,Williamsburg,40.70796,-73.92412,Private room,78,2,3,2019-05-30,1.55,1,73 +21231068,Centrally located East Village Apt,18104303,Joseph,Manhattan,East Village,40.7248,-73.9854,Private room,110,4,23,2019-07-02,1.11,1,93 +21231249,Warm and cozy box style apt in Bed- Stuy!,45440805,Asia,Brooklyn,Bedford-Stuyvesant,40.69238,-73.93989,Private room,37,10,1,2017-10-20,0.05,1,0 +21231543,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70428,-73.81353,Private room,135,1,0,,,18,365 +21232999,Cozy room and a private bathroom bklyn :),14898658,Chadanut,Brooklyn,Kensington,40.64388,-73.9813,Private room,45,1,52,2019-06-17,2.47,11,42 +21233255,Private room right in heart of SOHO,9890399,Yi-Hsuan,Manhattan,Lower East Side,40.72229,-73.99308,Private room,60,3,10,2019-01-05,0.47,1,0 +21236661,Beautiful 1BR Home in Heart of South Harlem,1522036,Stephen,Manhattan,East Harlem,40.80101,-73.9439,Entire home/apt,125,4,1,2018-01-02,0.05,1,0 +21236786,MASTER Beautiful comfort room,145255423,Koothar,Queens,Astoria,40.76505,-73.93002,Private room,95,1,0,,,1,177 +21238053,Broadway 1,153497815,Sarah-B,Brooklyn,Bedford-Stuyvesant,40.68742,-73.91957,Entire home/apt,5000,2,8,2017-12-09,0.38,1,0 +21239054,Spacious apartment in historic Cobble Hill,11369083,Parker,Brooklyn,Cobble Hill,40.68611,-73.99877,Entire home/apt,115,2,2,2017-12-16,0.10,1,0 +21239226,Cozy 1 br in the heart of Gramercy,153509107,Vanessa,Manhattan,Gramercy,40.73818,-73.98671,Entire home/apt,250,1,0,,,1,0 +21239497,Luxury Brooklyn 1BR just minutes from Manhattan,4444524,Lina,Brooklyn,Fort Greene,40.69269,-73.97977,Private room,179,2,6,2019-01-03,0.30,1,0 +21239728,2 Bedroom Apt in landmarked Harlem Brownstone,57460773,Tina,Manhattan,Harlem,40.81986,-73.94414,Entire home/apt,99,2,63,2019-06-22,3.71,1,18 +21239864,Near Subway Two Single Beds or One Queen Bed,128895953,Joseph,Brooklyn,Midwood,40.61193,-73.96259,Private room,65,3,3,2019-05-08,0.16,1,364 +21239885,Spacious Oasis - Heart of Harlem - Great Location!,45688062,Chiarra,Manhattan,Harlem,40.81083,-73.95188,Private room,125,4,0,,,1,0 +21240760,"Bright, private room in the HEART of Williamburg",7714461,Charles,Brooklyn,Williamsburg,40.71321,-73.95073,Private room,75,25,3,2019-05-26,0.16,2,161 +21240926,Cozy studio in Upper East Side,11005274,Vanessa,Manhattan,Upper East Side,40.77179,-73.95585,Entire home/apt,125,5,48,2019-07-03,2.30,1,2 +21241079,West Village Apartment,57169534,Nals,Manhattan,West Village,40.73261,-74.00713,Entire home/apt,295,2,7,2018-09-28,0.33,1,365 +21241316,East Village large 2 bedroom apartment,19001556,Monica,Manhattan,East Village,40.72374,-73.97989,Entire home/apt,200,2,3,2018-05-15,0.16,2,0 +21241829,Spacious 1BD in Greenwich Village/Union Square,78414842,Alexander,Manhattan,Greenwich Village,40.73393,-73.99306,Private room,200,3,9,2019-01-01,0.43,1,0 +21243315,*New* Big Modern Sunny Space in Bushwick,4476859,Lana,Brooklyn,Bushwick,40.70033,-73.92635,Private room,60,2,1,2017-11-09,0.05,1,0 +21243952,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70288,-73.81531,Private room,135,1,1,2018-01-02,0.05,18,365 +21244035,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70319,-73.8141,Private room,135,1,2,2018-06-10,0.09,18,365 +21244390,Cozy room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75703,-73.99371,Private room,100,1,130,2019-06-23,6.25,2,45 +21244514,Luxurious Apt3 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Gowanus,40.67543,-73.98455,Entire home/apt,250,4,70,2019-07-07,3.51,3,174 +21245112,CHIC and COZY- 1st stop out of Manhattan!,8896831,Jessica,Queens,Long Island City,40.74923,-73.95031,Private room,125,2,21,2019-06-07,1.49,1,128 +21247455,Entire 1st Floor with Private Rooftop in Brooklyn!,17627575,Marc,Brooklyn,Bedford-Stuyvesant,40.68639,-73.9202,Private room,38,2,15,2018-12-11,0.73,1,0 +21247657,Brooklyn-NEW 2-Bdrm Apt in Clinton Hill,51846382,Greg,Brooklyn,Clinton Hill,40.69427,-73.96848,Entire home/apt,220,2,57,2019-06-17,3.80,1,77 +21248835,Comfy Cozy NYC Home for the Winter,48660417,Rebekah,Manhattan,Upper East Side,40.77832,-73.95017,Private room,100,30,6,2018-02-24,0.33,1,0 +21249456,Sunny 2 Bedroom Park Slope Sanctuary,10653881,Max And Heather,Brooklyn,Park Slope,40.67059,-73.98621,Entire home/apt,150,2,2,2017-11-20,0.10,2,0 +21249676,Cozy sunny Brooklyn private room SUPERHOST,64609445,Ina,Brooklyn,Clinton Hill,40.69466,-73.96703,Private room,58,1,48,2018-07-31,2.27,2,0 +21249716,MidtownWest Home close to Times Square & Broadway,4144536,Guillermo,Manhattan,Hell's Kitchen,40.76234,-73.99036,Private room,160,2,30,2019-07-02,1.55,1,162 +21249869,BEAUTIFUL HIP 2BR NEAR SUBWAYS 25min to Manhattan,139490165,Melvin & Maya,Brooklyn,Bushwick,40.6832,-73.90639,Entire home/apt,130,2,7,2018-07-29,0.39,3,0 +21250629,Spacious 1 bed railroad apartment!!,153635280,Lucy,Manhattan,Upper East Side,40.77398,-73.9498,Entire home/apt,200,4,1,2017-11-11,0.05,1,0 +21250819,BEST BRONX ROOM!!!,27187487,Summer,Bronx,Belmont,40.85632,-73.88631,Private room,35,3,7,2019-05-19,0.38,2,357 +21251256,2B Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.8068,-73.93932,Private room,45,1,84,2019-06-11,3.97,10,347 +21251623,Spacious & Fun 4BR in Amazing Brownstone in Bklyn,60687546,Dan,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95128,Entire home/apt,235,2,76,2019-06-19,3.64,2,121 +21252149,Beautiful Room ♡ of the Upper West Side,153650351,Lizzy,Manhattan,Upper West Side,40.78138,-73.98139,Private room,150,1,138,2019-06-19,6.51,1,197 +21253000,Cozy 2-people room at Coliving in Bushwick!,10994664,Alexander,Brooklyn,Bushwick,40.69241,-73.90545,Shared room,35,30,0,,,8,312 +21253486,Bedroom in Bushwick loft near J train,153662409,Greg,Brooklyn,Bushwick,40.68863,-73.91887,Private room,40,2,23,2019-06-28,1.25,1,8 +21253502,2 REAL Bed & Bath in Times Square/ Hell’s Kitchen,31929860,Bryan,Manhattan,Hell's Kitchen,40.76183,-73.99181,Entire home/apt,525,1,21,2019-06-13,1.13,4,292 +21253506,Cozy studio with great connection to Manhattan!,153664491,Mirko,Queens,Elmhurst,40.73698,-73.88064,Entire home/apt,85,2,1,2017-10-15,0.05,1,0 +21253783,Home - away from home [Columbus Crcle/Central Prk],19541889,Eric,Manhattan,Upper West Side,40.76858,-73.9847,Entire home/apt,253,3,1,2017-12-28,0.05,1,0 +21253972,UES apartment in a great location,41306788,Tim,Manhattan,Upper East Side,40.763,-73.96044,Entire home/apt,275,3,1,2017-10-13,0.05,1,0 +21254023,Chelsea Newly Renovated Private Bedroom,22004774,Taylor,Manhattan,Chelsea,40.74772,-74.002,Private room,110,2,2,2017-12-05,0.10,1,0 +21254336,Cheerful Brooklyn Flat,8150446,Tina,Brooklyn,Prospect-Lefferts Gardens,40.65711,-73.95747,Entire home/apt,73,31,1,2018-04-01,0.06,1,32 +21254718,Bright Comfy Apartment Steps to Columbia & Barnard,56197328,Paul,Manhattan,Morningside Heights,40.80647,-73.96576,Entire home/apt,573,3,1,2018-10-18,0.11,2,0 +21254856,Lily Pad,143168243,Nicole,Queens,Ditmars Steinway,40.77823,-73.91247,Private room,80,1,0,,,1,0 +21256268,"Cozy, Elegant & Spacious Studio in Upper East Side",1819910,Andrew,Manhattan,Upper East Side,40.77398,-73.95109,Entire home/apt,170,2,51,2019-06-24,2.44,1,33 +21257726,"Your home away from home, with a glass of wine!",2082420,Damien,Queens,Ridgewood,40.70626,-73.90931,Entire home/apt,135,5,36,2019-07-02,1.78,1,325 +21259596,"3 Beds, 2 Baths serviced apartment Tesoro-Gramercy",153735730,Sudha,Manhattan,Gramercy,40.73765,-73.98454,Entire home/apt,1100,30,34,2019-06-30,1.94,2,333 +21259803,Nice apartment in Manhattan. 5,123320165,Murah,Manhattan,East Harlem,40.7895,-73.9441,Entire home/apt,120,5,20,2019-06-23,1.04,1,341 +21259931,Brooklyn Style Williamsburg 2 BR Apartment,1189195,David,Brooklyn,Williamsburg,40.71153,-73.96088,Entire home/apt,195,3,4,2018-09-24,0.22,1,0 +21260624,"NEW ROMANTIC SEPARATE APARTMENT , Free parking .",153180105,Lana,Staten Island,Lighthouse Hill,40.57641,-74.12931,Entire home/apt,115,2,29,2019-01-03,1.41,1,71 +21261549,"Private room in Bed-Stuy, Brooklyn",45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68642,-73.95608,Private room,70,2,10,2018-02-24,0.48,2,0 +21263008,4 Beds 4 Baths serviced apartment Palazzo Gramercy,153735730,Sudha,Manhattan,Gramercy,40.7368,-73.98307,Entire home/apt,766,30,13,2019-06-15,0.66,2,352 +21263120,Luxury studio,44295724,Darien,Manhattan,Harlem,40.81875,-73.94467,Entire home/apt,200,3,25,2019-06-18,1.80,1,0 +21263179,"Full apartment in heart of Red Hook, Brooklyn",20408271,Francois,Brooklyn,Red Hook,40.67503,-74.01505,Entire home/apt,150,1,2,2018-01-22,0.11,2,0 +21263728,Urban chic private guest suite in the heart of NY,16977462,Candice,Manhattan,Upper West Side,40.78642,-73.97652,Private room,125,5,38,2019-07-01,1.80,1,54 +21264068,Bright green 2nd fl 2BR on ridgewood/bushwick cusp,7784696,Elizabeth,Queens,Ridgewood,40.70555,-73.91333,Entire home/apt,75,3,9,2018-09-24,0.45,1,0 +21264131,Beautiful Super Cozy Studio,67226812,RaShaan,Brooklyn,Bedford-Stuyvesant,40.68744,-73.94905,Entire home/apt,95,1,89,2019-07-08,4.43,1,0 +21264686,"Stunning Room, Perfect Location, Premium Bed ❤",14552154,Leslie,Manhattan,Midtown,40.74624,-73.98648,Private room,140,2,76,2019-06-19,3.73,4,148 +21264903,Harlem Hideaway Studio Apartment,145825873,Dennis,Manhattan,Harlem,40.80604,-73.94971,Entire home/apt,83,30,6,2019-03-31,0.46,4,86 +21265189,Private Quiet Room in the BEST Location!! ❤,14552154,Leslie,Manhattan,Midtown,40.74465,-73.98535,Private room,135,2,84,2019-06-24,4.03,4,103 +21265363,"2 Bedrooms For Groups, GREAT LOCATION",14552154,Leslie,Manhattan,Midtown,40.74517,-73.98484,Private room,231,2,12,2019-06-15,0.65,4,165 +21265628,Fabulous Room in East Willamsburg!,20583151,Deona,Brooklyn,Bushwick,40.69779,-73.92282,Private room,95,1,1,2019-05-19,0.59,1,89 +21266334,"Quirky, cozy, and fun in Bushwick!",11571496,Carmela,Brooklyn,Bushwick,40.68701,-73.91437,Entire home/apt,84,2,115,2019-06-23,5.92,2,6 +21266533,Large Studio/7 Guests,8857758,Cleonides,Queens,Maspeth,40.73007,-73.89766,Entire home/apt,89,3,27,2019-06-29,1.28,2,143 +21266730,Snug & Private Bedroom only 30-35 min to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67954,-73.90788,Private room,55,1,40,2019-06-19,2.15,3,146 +21266810,Cozy One Bedroom in Upper East Side proper,19985344,Thelma,Manhattan,Upper East Side,40.76955,-73.95694,Entire home/apt,155,2,22,2019-06-02,1.04,1,7 +21266924,Welcome! A spacious room close to subway station,153826581,Anne-Laure And Enrique,Bronx,Morris Heights,40.8459,-73.91558,Private room,77,2,36,2019-06-21,1.81,1,5 +21267975,Big room @ independent Eco-friendly aprtmnt.,1272997,Ariadna,Brooklyn,Greenpoint,40.72868,-73.95248,Private room,52,2,68,2019-06-03,3.25,1,9 +21268535,Bright Uptown 1 Bed Apt next to 168th Subway A/1,31120110,Maritza,Manhattan,Washington Heights,40.84195,-73.9359,Entire home/apt,95,5,3,2017-12-22,0.15,1,0 +21269377,"Union Square - Lux Building, 1 Bed, Living, Study",5664549,Amar,Manhattan,Greenwich Village,40.73295,-73.992,Entire home/apt,250,4,4,2019-06-23,0.30,1,43 +21271180,Bed in loft apartment east Williamsburg/bushwick,133146682,Kate,Brooklyn,Williamsburg,40.70614,-73.92756,Shared room,45,1,2,2017-11-20,0.09,1,0 +21272115,Visit the Big Apple! Mini-MOMA. Enjoy all of NYC!,68557372,Shannon,Manhattan,Harlem,40.80674,-73.95337,Private room,75,1,60,2019-06-27,3.25,2,182 +21272452,Spacious Bushwick 1 bedroom w/ private backyard,51200621,John,Brooklyn,Bushwick,40.69523,-73.9191,Entire home/apt,100,3,3,2017-12-03,0.14,1,0 +21273425,Brand New Cozy Woodside Studio- Close to NYC,153886003,Andy,Queens,Maspeth,40.73698,-73.90256,Entire home/apt,100,1,94,2019-07-05,4.73,1,154 +21274308,Spacious/very clean/professional service/ PK SLOPE,148787736,Fred,Brooklyn,Gowanus,40.66977,-73.99021,Entire home/apt,130,1,10,2019-06-02,0.52,2,46 +21274330,Upper East Side 3 bed/3 bath Skyline view!,19424541,Barbara,Manhattan,Upper East Side,40.76709,-73.96422,Entire home/apt,840,4,2,2019-04-23,0.31,2,24 +21274914,Gorgeous private bedroom in the 2 bd apt,46343506,Lena,Manhattan,Financial District,40.70571,-74.01031,Private room,250,3,1,2018-08-04,0.09,1,365 +21275075,Nolita/Soho Duplex Apartment with Rooftop,25265179,Veronica,Manhattan,Nolita,40.72244,-73.99461,Entire home/apt,250,1,9,2019-05-27,0.75,1,0 +21275645,Chambers Street Luxury One Bedroom,33294012,Charles,Manhattan,Battery Park City,40.71646,-74.01379,Entire home/apt,300,2,1,2018-01-01,0.05,1,0 +21275837,GRAND CENTRAL MIDTOWN CLEAN ONE-BEDROOM APARTMENT,4976240,Kennedy,Manhattan,Murray Hill,40.75031,-73.97776,Entire home/apt,100,7,26,2019-06-26,1.57,1,2 +21276361,Clean&bright 1 bedroom apt in the middle of Soho!,752478,Celine,Manhattan,SoHo,40.72655,-74.00466,Entire home/apt,200,2,0,,,1,0 +21277145,Sunny full floor apartment in Sunset Park,153921305,Andrew & Mary,Brooklyn,Sunset Park,40.64699,-74.01404,Entire home/apt,120,2,54,2019-06-23,2.59,1,90 +21277719,Cozy Apt near JFK,153927396,Saiful,Queens,Bellerose,40.73138,-73.72435,Private room,55,1,28,2019-06-29,1.32,1,359 +21278102,Harlem Hideaway Guest Room,145825873,Dennis,Manhattan,Harlem,40.80421,-73.9502,Private room,160,3,10,2019-06-02,0.52,4,236 +21279140,Sunny Room by Prospect Park,127450357,Rhyan,Brooklyn,Crown Heights,40.67683,-73.95836,Private room,85,1,16,2018-12-17,0.77,1,0 +21279172,Lovely railroad apartment,108605013,Magali,Brooklyn,Greenpoint,40.72754,-73.94396,Entire home/apt,100,20,2,2018-01-03,0.10,1,24 +21280201,The Executive Spacious Cozy Home on the Block.,152622375,Esther,Brooklyn,East New York,40.66529,-73.88326,Entire home/apt,85,2,3,2018-10-16,0.15,2,151 +21280280,Prince single room,14103991,Ruth,Queens,Flushing,40.75602,-73.818,Private room,40,2,29,2019-06-20,1.40,4,314 +21281051,Super clean & new 1 bedroom apartment,38664335,Jacob,Brooklyn,East Flatbush,40.63682,-73.94947,Entire home/apt,150,1,6,2019-06-25,3.75,1,44 +21281237,Manhattan Luxury 1-BDRM w/ Terrace; 24hr Doorman,56537951,Roxanne,Manhattan,Harlem,40.81197,-73.93891,Entire home/apt,230,2,2,2017-12-11,0.10,1,0 +21281339,Spacious Private Room in two bedroom apartment,128372045,Syed,Brooklyn,Flatbush,40.63258,-73.95924,Private room,40,2,9,2018-10-26,0.43,1,71 +21281525,Cozy Studio in the Heart of Greenwich Village,970375,Joe,Manhattan,Greenwich Village,40.73213,-73.99957,Entire home/apt,130,3,43,2019-07-01,2.06,1,7 +21281604,Huge elegant room 35 min to Time Square,47735494,Iris,Queens,Rego Park,40.72807,-73.86872,Private room,50,1,15,2018-04-22,0.71,4,0 +21281641,Entire Apartment in Historic Brownstone + Garden,1662707,Hannah,Brooklyn,Prospect Heights,40.679,-73.97096,Entire home/apt,75,14,1,2017-10-29,0.05,1,0 +21282152,Pop House 4min walk to L train 12mins to Manhattan,25414207,Brooklyn P,Queens,Ridgewood,40.70031,-73.90828,Private room,43,1,76,2019-06-29,3.63,2,119 +21282732,Serenity Falls in lovely Astoria 15min to the city,16727881,Jeannie,Queens,Ditmars Steinway,40.7745,-73.90406,Private room,40,2,1,2018-11-01,0.12,1,363 +21283357,Brand New Fully Remodeled Modern House,153988027,Zain,Queens,Woodside,40.74267,-73.8996,Entire home/apt,255,4,42,2019-06-20,3.09,1,285 +21283507,Quiet solo traveler room with a backyard view,15310048,Darya,Brooklyn,East Flatbush,40.65261,-73.94486,Private room,38,60,9,2018-08-31,0.45,2,199 +21287982,PERFECT LOCATION! EAST VILLAGE Private Room,117385673,Danielle,Manhattan,East Village,40.7303,-73.98341,Private room,105,3,1,2017-10-23,0.05,2,0 +21288588,Spacious Brownstone Apt with Private Backyard,8345378,Kenzi,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93742,Private room,130,2,20,2019-01-04,1.08,1,64 +21288895,The Loft,23722110,Amri,Brooklyn,Williamsburg,40.71386,-73.9634,Entire home/apt,350,7,29,2019-06-15,1.45,1,284 +21289522,Cozy and Quiet.,154037433,Roland,Queens,Jamaica,40.67048,-73.77259,Private room,35,1,65,2019-06-21,3.20,3,52 +21289615,Amazing room in Prime East Village!,33036193,Clara,Manhattan,East Village,40.72615,-73.98303,Private room,120,10,31,2019-05-05,1.68,2,17 +21289640,Cozy nook(double room/shared bath),154037433,Roland,Queens,Jamaica,40.66934,-73.77269,Private room,68,1,14,2019-04-26,1.23,3,13 +21289758,"Large, Open, Airy Room, Close to Subway Harlem NYC",5791944,Paige,Manhattan,Harlem,40.82096,-73.9531,Private room,55,2,1,2017-10-17,0.05,1,0 +21289989,Comfortably Simple,29236921,Alain,Brooklyn,Bushwick,40.7005,-73.93827,Private room,49,2,16,2019-04-16,0.76,1,0 +21291569,Coliving in Brooklyn! Modern design / Shared room,101970559,Sergii,Brooklyn,Bushwick,40.69211,-73.9067,Shared room,0,30,2,2019-06-22,0.11,6,333 +21291783,Café DuChill — now supporting ASPCA,50455642,Jack,Brooklyn,Williamsburg,40.71528,-73.95365,Private room,55,2,135,2019-06-30,6.62,1,30 +21292130,☆Stylish Family + Group Friendly 3BR w/ Roof Patio,21210879,Imani,Brooklyn,Crown Heights,40.67433,-73.92824,Entire home/apt,298,3,24,2019-06-15,1.17,1,265 +21292185,"Great shared room / Best price, high quality!",17706542,Sergey,Brooklyn,Bushwick,40.69731,-73.90824,Shared room,29,30,2,2018-12-19,0.10,6,324 +21292529,Spacious Faerie Room in Bushwick,123354518,Elena,Brooklyn,Bushwick,40.70177,-73.92313,Private room,50,2,0,,,2,0 +21292741,Queens Artist' Corner,30706232,Sarita,Queens,Astoria,40.76898,-73.91607,Private room,40,1,2,2017-10-30,0.09,1,0 +21293326,Huge Designer Room | Lower East Side /East Village,10994839,Michael,Manhattan,Lower East Side,40.71994,-73.98184,Private room,150,2,32,2019-05-26,1.58,1,76 +21294449,Private 3 Bedroom New Modern Clean Apt-Mins to NYC,154088360,Kelly,Queens,Long Island City,40.75323,-73.94025,Entire home/apt,298,4,72,2019-07-02,3.44,2,187 +21295182,Spacious One Bed Apartment by Columbus Circle,91299100,Christopher,Manhattan,Upper West Side,40.76913,-73.986,Entire home/apt,175,4,0,,,2,0 +21295218,Cozy Modular Loft with Office and Shelving!,154095549,Wa,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94153,Private room,60,7,0,,,2,49 +21295334,Cozy Apartment for Cat Lovers! (Kids friendly),25178532,Ele,Manhattan,Upper West Side,40.77829,-73.97984,Entire home/apt,250,7,1,2018-03-22,0.06,1,0 +21295834,Pre-war apartment,122920689,Peter,Brooklyn,East Flatbush,40.653,-73.95079,Private room,43,4,1,2018-02-21,0.06,1,312 +21295942,"Modern, Bright, 2 BR/2 Bath, Clinton Hill, Bklyn",137389534,Abby,Brooklyn,Bedford-Stuyvesant,40.68583,-73.9587,Entire home/apt,265,4,16,2019-06-27,0.77,1,144 +21295951,Welcome to Brooklyn! (Private bedroom & bathroom),76021267,Jenn,Brooklyn,Crown Heights,40.66508,-73.95097,Private room,60,7,10,2019-05-31,0.48,1,126 +21296227,Ideal stay in Williamsburg w/ rooftop and fitness,38681422,Lucas,Brooklyn,Williamsburg,40.71422,-73.96046,Entire home/apt,400,1,2,2017-12-03,0.10,1,0 +21296249,Nice Clean Cousy Studio.,154106207,Paulo,Queens,Astoria,40.76031,-73.91583,Private room,180,6,0,,,1,83 +21296439,Spacious 2 Br Apt in prime Fort Greene Brownstone,48626585,Alicia,Brooklyn,Fort Greene,40.68779,-73.97174,Entire home/apt,235,5,5,2019-01-01,0.25,1,0 +21297416,Beautiful Private Room 15 min from JFK Airport,49614264,KaLema,Brooklyn,East New York,40.66071,-73.88858,Private room,52,2,3,2018-03-18,0.15,1,89 +21297711,Gorgeous Studio Steps to Central Park West! #10256,15357689,Rissala,Manhattan,Upper West Side,40.77816,-73.97735,Entire home/apt,250,3,4,2018-01-03,0.21,1,3 +21297804,Entire Long Island City Studio mins to Manhattan,3023513,Levi,Queens,Long Island City,40.75097,-73.94119,Entire home/apt,130,3,2,2017-11-29,0.10,1,0 +21298222,Cozy private studio TimesSquare Perfect Location,110081618,Harry,Manhattan,Hell's Kitchen,40.7617,-73.98931,Private room,150,1,146,2019-07-06,7.19,2,60 +21298453,A) Cozy Private Suite WiFi Laundry JFK Airport,154128335,Joseph,Queens,Jamaica,40.69933,-73.81436,Private room,50,2,49,2019-07-02,2.37,4,108 +21298471,Britney & Daphne's Tranquility Suite,60758194,Britney,Brooklyn,Canarsie,40.64185,-73.91509,Entire home/apt,160,2,1,2018-12-11,0.14,1,191 +21298561,4 Bdrm Loft in East Williamsburg with Projector!,130667097,Paul,Brooklyn,Williamsburg,40.70529,-73.9331,Entire home/apt,300,1,1,2019-03-17,0.26,2,347 +21299488,Home away from home NYC,44439712,Sarah,Manhattan,East Harlem,40.79242,-73.94178,Private room,70,4,23,2019-07-03,1.20,1,80 +21304320,Best Coliving space ever! Shared room.,101970559,Sergii,Brooklyn,Bushwick,40.69166,-73.90928,Shared room,0,30,5,2019-05-24,0.26,6,139 +21304935,Spacious basement apartment,154184894,Mike,Queens,Cambria Heights,40.6939,-73.73104,Private room,130,2,0,,,2,0 +21305125,Cozy Basement lounge Apt inCambria Heights,154184894,Mike,Queens,Cambria Heights,40.69358,-73.73,Private room,120,2,0,,,2,0 +21305248,Newly Renovated 1 Bedroom Apartment Hell's Kitchen,1710317,Elgin,Manhattan,Hell's Kitchen,40.76197,-73.98961,Entire home/apt,200,1,107,2019-07-05,5.17,1,200 +21305393,"Private, Sunny Room—Prime Williamsburg Condo/Loft",510745,Justin,Brooklyn,Williamsburg,40.7137,-73.94813,Private room,80,2,1,2017-10-20,0.05,2,0 +21306332,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.74071,-73.99977,Entire home/apt,170,30,0,,,87,307 +21306375,"Modern Home, Amazing Location Sunshine room",148237535,Jermaine,Brooklyn,Canarsie,40.64162,-73.90915,Private room,80,3,1,2018-01-02,0.05,4,364 +21306457,Great space,100354001,Alonzo,Queens,Rosedale,40.6598,-73.73316,Entire home/apt,65,1,76,2019-06-27,3.64,1,65 +21307055,Beautiful Room in Prospect Heights,145543998,Yosef,Brooklyn,Crown Heights,40.67587,-73.96194,Private room,60,10,2,2017-12-01,0.10,1,0 +21307403,The Apartment @ 1393,154206608,Adrien,Brooklyn,East Flatbush,40.63881,-73.93476,Entire home/apt,400,1,50,2019-06-19,2.77,1,329 +21307577,"Unique, Comfortable Apt in Heart of East Village",12404709,Clinton,Manhattan,East Village,40.72853,-73.98472,Private room,100,2,55,2019-07-06,3.06,2,25 +21308528,East Village/Lower East Side Artsy Flat,51547093,Kai Chieh,Manhattan,Lower East Side,40.72026,-73.98468,Shared room,68,1,5,2018-03-09,0.24,2,0 +21308590,Newly Renovated Studio Apt,146933726,Isaac,Brooklyn,Crown Heights,40.6654,-73.94864,Entire home/apt,120,1,49,2019-06-24,2.40,1,276 +21308702,NYミッドタウン高級コンドのリビングルームに宿泊,154217970,Mk,Manhattan,Theater District,40.76174,-73.98306,Private room,80,3,88,2019-07-07,5.42,1,137 +21308792,Large NYC APT on the East River for 1 or 2 people,33776141,Lara,Manhattan,Kips Bay,40.73905,-73.97353,Private room,100,2,1,2018-01-02,0.05,1,0 +21309053,"Modern Home, Amazing Location Rose room 1",148237535,Jermaine,Brooklyn,Canarsie,40.64126,-73.90953,Private room,80,3,1,2018-01-02,0.05,4,364 +21309659,Sunny Queen Size 1 Bedroom in Bedstuy.,154201505,Marcia,Brooklyn,Bedford-Stuyvesant,40.68368,-73.93796,Entire home/apt,92,30,21,2018-06-27,1.01,2,35 +21310073,Ruby Red Sanctuary,154201505,Marcia,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93979,Entire home/apt,95,30,0,,,2,87 +21311003,Vickie's Home Away from Home,154232402,Vickie,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94021,Entire home/apt,185,3,19,2019-07-02,1.03,1,363 +21311240,Amazing Location! Apartment in South Williamsburg,154239561,Ismael,Brooklyn,Williamsburg,40.71198,-73.95787,Entire home/apt,200,2,45,2019-06-30,2.16,2,268 +21311288,Central Park Smart Home,5644804,Ben,Manhattan,Upper West Side,40.77869,-73.97658,Entire home/apt,300,2,31,2019-06-14,1.57,1,99 +21311520,"Amazing ,Steps From Time Square,Perfect Location.",52950465,Gal,Manhattan,Hell's Kitchen,40.76168,-73.99061,Entire home/apt,99,30,12,2018-02-27,0.57,12,251 +21311781,A private room close to the subway,154220885,Benny,Queens,Ridgewood,40.70706,-73.90006,Private room,50,1,90,2019-07-01,4.31,2,178 +21311903,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70258,-73.8151,Private room,135,1,0,,,18,365 +21311946,"Amazing, Steps From Time Square,clean, Comfrtable",52950465,Gal,Manhattan,Hell's Kitchen,40.76037,-73.99085,Entire home/apt,115,30,2,2017-12-05,0.10,12,341 +21312075,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70333,-73.8138,Private room,135,1,0,,,18,365 +21312191,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70259,-73.81415,Private room,135,1,0,,,18,365 +21312225,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70262,-73.81526,Private room,135,1,1,2017-12-10,0.05,18,365 +21312283,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.7045,-73.81447,Private room,135,1,0,,,18,355 +21312330,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70458,-73.81418,Private room,135,1,0,,,18,355 +21312403,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70423,-73.8144,Private room,165,1,0,,,18,362 +21312440,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70269,-73.81585,Private room,165,1,0,,,18,360 +21312495,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70426,-73.81509,Private room,165,1,0,,,18,362 +21312549,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70262,-73.81579,Private room,165,1,0,,,18,355 +21312595,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70475,-73.81572,Private room,165,1,2,2018-01-01,0.09,18,355 +21312687,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70471,-73.81542,Private room,135,1,3,2018-01-01,0.15,18,319 +21312732,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70455,-73.81528,Private room,135,1,0,,,18,309 +21312749,"Private, Sunny, Conveniently Located Room",130768576,Virginia,Queens,Ditmars Steinway,40.77803,-73.91084,Private room,50,1,77,2019-06-23,3.66,1,145 +21313022,Brooklyn Home On The Beach,15356710,Maxim,Brooklyn,Brighton Beach,40.57536,-73.96523,Private room,40,31,1,2019-03-02,0.23,1,342 +21313240,Originally Maxs Kansas City Historic UnionSqr Loft,115497723,Gregory,Manhattan,Gramercy,40.73591,-73.98744,Entire home/apt,540,2,53,2019-07-07,4.43,1,215 +21313582,Cozy bedroom in Artist's Apartment-Atelier,1566510,Nastya,Manhattan,Lower East Side,40.71818,-73.98922,Private room,85,1,77,2019-06-27,3.68,2,0 +21313640,Spacious Apartment in Historic Brooklyn Brownstone,10500831,Kendra,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95014,Entire home/apt,130,4,42,2019-07-07,2.01,1,91 +21313668,A Beautiful Studio in Upper West Side,30426158,Bryan,Manhattan,Upper West Side,40.78456,-73.97933,Entire home/apt,150,4,2,2017-12-09,0.10,2,0 +21313950,Private room in East Village,18381155,Atanas,Manhattan,East Village,40.72308,-73.98112,Private room,90,4,3,2018-07-27,0.17,1,0 +21313960,EPIC HOME. PRIVATE EVERYTHING. (East Village),154266431,Steven,Manhattan,East Village,40.72535,-73.98244,Private room,121,3,51,2018-09-30,2.42,3,0 +21314250,5 STAR COZY ROOM,154238443,Mrs,Bronx,Belmont,40.85579,-73.88512,Private room,29,3,9,2019-06-12,0.43,2,322 +21314338,Shared Apartment One stop from Manhattan in LIC.,55724558,Taylor,Queens,Long Island City,40.76044,-73.94087,Shared room,40,4,22,2019-01-25,1.04,5,90 +21317156,1 BR close to Times Square - WOMEN ONLY,84766486,Willi,Manhattan,Hell's Kitchen,40.76068,-73.99143,Private room,79,5,0,,,1,0 +21318405,"Astoria apt, easy access to Manhattan, East River!",2108760,Lorenzo,Queens,Long Island City,40.76661,-73.93502,Entire home/apt,115,1,21,2018-07-08,1.00,1,0 +21321273,Huge renovated 1 BR Apt in heart of East Village,126346950,Katherine,Manhattan,East Village,40.72508,-73.98335,Entire home/apt,250,1,1,2017-10-15,0.05,1,0 +21321503,Beautiful 4BDR Historic Home Bronx NYC,154330006,Anthony,Bronx,Kingsbridge,40.87666,-73.90034,Entire home/apt,149,3,37,2019-06-16,1.90,1,146 +21322272,Comfy room steps away from Williamsburg nightlife,154339771,Chris,Brooklyn,Williamsburg,40.71258,-73.95742,Private room,50,2,10,2018-01-28,0.50,1,0 +21322522,Artsy 1bdrm with Piano in the heart of Brooklyn!,1892493,Whitney,Brooklyn,Crown Heights,40.66952,-73.92345,Entire home/apt,85,1,1,2018-06-04,0.08,2,99 +21322742,Best Private Room/BTH In The Heart of Manhattan,13839404,Lolo,Manhattan,Midtown,40.75582,-73.97175,Private room,180,2,0,,,1,0 +21323255,Sunny 1 bedroom in Brooklyn right next to park !,145967,Thomas,Brooklyn,Flatbush,40.65258,-73.96243,Entire home/apt,100,3,1,2018-01-04,0.05,1,0 +21324360,Cobble Hill Brooklyn....SUPER PRIME 1BR - full apt,154362702,Chris,Brooklyn,Cobble Hill,40.68661,-73.99097,Entire home/apt,200,3,32,2019-07-01,1.52,1,36 +21324522,Brownstone Duplex with Private Outdoor Patio!,12337318,Andrew,Manhattan,Harlem,40.82296,-73.94545,Entire home/apt,200,2,38,2019-06-10,1.89,2,101 +21325114,Luxury Home Near Brooklyn Bridge,49582324,James,Brooklyn,Downtown Brooklyn,40.69276,-73.98374,Private room,119,1,0,,,1,0 +21325259,Small Private Studio in Astoria close to Manhattan,150565606,Mayra,Queens,Ditmars Steinway,40.77824,-73.91493,Entire home/apt,70,1,64,2019-06-26,3.18,2,113 +21325362,Charming bedroom (few blocks from the subway),154220885,Benny,Queens,Ridgewood,40.70516,-73.90497,Private room,55,1,72,2019-07-01,3.52,2,171 +21325518,A&M Spacious Home Away For Vacationers—NYC,154363317,Allison,Queens,St. Albans,40.6969,-73.76114,Entire home/apt,250,2,25,2019-07-01,1.39,1,204 +21325658,Room for rent,154375347,Stan,Manhattan,Kips Bay,40.74524,-73.97995,Private room,75,4,1,2017-10-28,0.05,1,0 +21326923,Charming Private Bedroom & Bathroom in Flushing,75059797,Christina,Queens,Flushing,40.74652,-73.82873,Private room,40,3,3,2019-07-08,3,1,66 +21327327,Spacious Private Room in Manhattan Apartment,75812000,Carina,Manhattan,Washington Heights,40.85051,-73.93579,Private room,50,4,4,2017-12-29,0.20,1,0 +21327397,"Budget-WELCOME ALL ""Couch"" walk to CITIFIELD & LGA",32446721,Veronica,Queens,Corona,40.74807,-73.86511,Shared room,37,1,6,2019-05-27,0.33,6,361 +21331808,Surfers Paradise - 170 Frost,536745,Johnny,Brooklyn,Williamsburg,40.71684,-73.94366,Private room,90,2,5,2018-09-02,0.24,3,310 +21332241,"Bushwick Garden Flat (Brooklyn, NY)",1257048,Esther,Brooklyn,Bushwick,40.68624,-73.9122,Entire home/apt,150,3,54,2019-06-16,2.60,1,59 +21332370,Artists's loft in Williamsburg mins subway to NYC,150970705,Julia And Marie,Brooklyn,Williamsburg,40.71428,-73.95421,Entire home/apt,140,2,11,2019-06-12,0.55,1,214 +21340451,Shared Apartment One stop from Manhattan in LIC.,55724558,Taylor,Queens,Long Island City,40.76024,-73.94228,Shared room,48,2,21,2019-05-23,1.02,5,90 +21343278,New York private studio apt.,145687876,Sapir,Queens,Forest Hills,40.72453,-73.8498,Entire home/apt,80,3,1,2017-11-06,0.05,1,0 +21343957,Cozy private room in Greenwich Village,27960761,Christopher,Manhattan,Greenwich Village,40.72817,-73.9958,Private room,125,3,7,2018-12-02,0.38,3,63 +21344179,"bright airy 1BR in Prime downtown NY, view of city",4285729,Mark,Manhattan,Chinatown,40.71339,-73.99115,Entire home/apt,188,3,6,2019-04-22,0.44,1,364 +21344739,Comfortable place/ close to Manhattan,87397826,Monica,Queens,Long Island City,40.75595,-73.93075,Private room,130,7,1,2018-03-31,0.06,2,34 +21344762,Modern Manhattan 1 Bedroom 15 Mins from Midtown,34867672,Robert,Manhattan,East Harlem,40.80891,-73.93798,Entire home/apt,100,30,22,2019-01-31,1.05,1,0 +21346054,"Bright, big and nice room",73856870,Laura,Brooklyn,East New York,40.666,-73.88858,Private room,75,2,0,,,1,88 +21346376,Luxurious & Breathtaking 1BR in Midtown / Times Sq,37818693,Andrew,Manhattan,Hell's Kitchen,40.75827,-73.99368,Entire home/apt,249,31,9,2019-06-01,0.51,1,137 +21346494,LARGE DUPLEX-3BR/3BA Williamsburg Townhouse+GARDEN,154506785,Daniel,Brooklyn,Williamsburg,40.71789,-73.9579,Entire home/apt,345,1,75,2019-06-09,3.64,3,243 +21346661,Spacious Private Room in Greenwich Village,78007526,Nick,Manhattan,Greenwich Village,40.72883,-74.00145,Private room,130,1,43,2018-07-15,2.04,1,145 +21347381,Private Room Next to Central Park,93469679,Grace,Manhattan,East Harlem,40.79639,-73.94772,Private room,90,2,40,2019-05-13,1.92,1,9 +21351641,WALK FROM TIME SQUARE FROM THIS HELLS KITCHEN APT,21410583,Brianne,Manhattan,Hell's Kitchen,40.76602,-73.98795,Private room,160,3,77,2019-01-02,3.77,1,88 +21353639,"Private Master Bedroom- Updated, Clean and Lovely!",44379772,Serena,Manhattan,Inwood,40.87312,-73.9179,Private room,85,1,0,,,1,317 +21353912,Perfectly formed in Park Slope,6317895,Stephen,Brooklyn,Park Slope,40.6785,-73.97542,Entire home/apt,125,4,1,2018-01-03,0.05,1,0 +21354050,1BR Artistic Dwelling in Ridgewood/Bushwick,63720469,Samantha,Queens,Ridgewood,40.70818,-73.91206,Private room,30,5,0,,,1,0 +21354164,Bushwick 1Br on Jefferson St.,32941922,Trevor,Brooklyn,Bushwick,40.70442,-73.92553,Entire home/apt,200,2,2,2017-12-03,0.10,1,0 +21354322,"big apartment in Queens Flushing,nyc",154576996,Yi,Queens,Flushing,40.76484,-73.81569,Private room,200,1,8,2017-12-22,0.41,1,365 +21354525,Cozy Brooklyn Heights Getaway w/ Manhattan Access,11743513,Henry,Brooklyn,Brooklyn Heights,40.69252,-73.99121,Private room,90,1,87,2019-06-16,4.29,1,108 +21354840,BRIGHT & CLEAN UNION SQ GEM APT! 700 SQF ALL YOURS,18270371,Ena,Manhattan,Gramercy,40.73305,-73.98574,Entire home/apt,148,4,10,2018-09-27,0.52,1,0 +21354913,"Private suite near NYC Ferry, Front",71725161,Kalina,Brooklyn,Sunset Park,40.64191,-74.02196,Entire home/apt,99,4,79,2019-07-02,3.97,2,137 +21354957,NEW Large BEAUTIFUL STUDIO - Williamsburg!,154506785,Daniel,Brooklyn,Williamsburg,40.7176,-73.95927,Entire home/apt,148,1,72,2019-06-09,3.63,3,272 +21355005,Large room in the Upper West Side!,25880686,Davide,Manhattan,Upper West Side,40.80049,-73.97159,Private room,89,10,0,,,1,0 +21355217,Lovely 4BR/4BA + Private Garden Williamsburg,154506785,Daniel,Brooklyn,Williamsburg,40.7186,-73.95811,Entire home/apt,585,1,27,2019-06-23,2.01,3,229 +21356244,Cozy private Apartment in Convenient Neighborhood,146000975,Kuei Mei,Queens,Woodside,40.74377,-73.90482,Entire home/apt,120,1,161,2019-06-27,7.72,1,287 +21356378,Sunny Private Room 4 Min from Train,9439324,Chérie,Brooklyn,Bushwick,40.68809,-73.90641,Private room,36,1,8,2019-05-20,0.43,3,0 +21356602,Heart of Queens 3 ❤️❤️❤️Private Bath-Jackson Hgts,123483050,Andrea,Queens,Elmhurst,40.7478,-73.88005,Private room,100,1,73,2019-06-22,3.47,3,165 +21356649,"$60NYC Private Room Near J, M, And G Train",145214508,Yonette,Brooklyn,Bedford-Stuyvesant,40.69369,-73.94214,Private room,60,3,0,,,2,89 +21357119,Newly Built Uptown Manhattan Large Pied-à-Terre,177293,Herman,Manhattan,East Harlem,40.80832,-73.93756,Entire home/apt,200,30,0,,,1,0 +21357424,Lush 2BR in Stylish Brooklyn Williamsburg,111969257,Jae,Brooklyn,Williamsburg,40.71608,-73.94557,Private room,200,5,23,2019-07-02,1.18,3,42 +21357642,La Casa de Ishmael,154613793,Ishmael,Bronx,Concourse Village,40.82706,-73.91779,Private room,80,1,0,,,1,88 +21357792,Stylish room in lush Williamsburg apartment,111969257,Jae,Brooklyn,Williamsburg,40.71619,-73.9441,Private room,90,4,3,2018-07-12,0.15,3,0 +21358406,(A) Room for 2 w private bathroom,110965771,Wilson,Queens,Flushing,40.77221,-73.82401,Private room,80,2,36,2019-05-18,1.76,7,122 +21358930,"Spacious Room by Subway! JFK 10min,Manhattan 30min",131476068,Leslie,Queens,Richmond Hill,40.6868,-73.82896,Private room,83,2,16,2019-03-03,0.77,2,42 +21359078,"Spacious Ditmas Park 1BR Apt, 1 block from Subway!",24210901,Gabriella,Brooklyn,Flatbush,40.63605,-73.96096,Entire home/apt,71,2,14,2018-12-27,0.67,1,0 +21363363,Clean & Updated East Village 1 Bedroom w/Roof Deck,17261462,Brian,Manhattan,East Village,40.72935,-73.98056,Entire home/apt,140,4,3,2018-01-01,0.14,1,0 +21363896,"Sunny ""Jungalow"" Oasis Studio",45534132,Autumn,Brooklyn,Brooklyn Heights,40.69689,-73.99563,Entire home/apt,180,2,1,2017-10-22,0.05,1,0 +21363936,Spacious Apartment in the Heart of Williamsburg,4547593,Hunter,Brooklyn,Williamsburg,40.71982,-73.95569,Entire home/apt,120,5,0,,,1,0 +21364301,Wonderful Private Room with Spacious Outdoor Patio,103850896,Ashley,Brooklyn,Williamsburg,40.71817,-73.94289,Private room,65,2,24,2019-06-30,1.18,2,53 +21364473,Newly Renovated Brownstone 1BR with Private Deck,1282611,Chris,Brooklyn,Bedford-Stuyvesant,40.68409,-73.93827,Entire home/apt,69,4,7,2019-01-01,0.37,1,5 +21364703,Gorgeous 1 BR/1BA where Soho meets West Village!,8480056,David,Manhattan,SoHo,40.72706,-74.00476,Entire home/apt,170,2,17,2019-06-23,0.84,1,6 +21364872,"Williamsburg sunny bedroom, 15 mins to Manhattan",32527579,Alex,Brooklyn,Williamsburg,40.71239,-73.95857,Private room,70,4,8,2019-06-23,0.44,1,0 +21365379,Master Bedroom - Private Balcony onto Manhattan,14482375,Lara & David,Brooklyn,Greenpoint,40.72205,-73.94229,Private room,150,4,5,2018-09-24,0.24,3,0 +21365714,Queens Village relaxing place,154700793,Evens And Charlene,Queens,Queens Village,40.70601,-73.73737,Entire home/apt,67,3,93,2019-06-29,4.46,1,134 +21366188,Studio apartment near JFK airport /Free parking,154705359,Anabell,Queens,Jamaica,40.66875,-73.78506,Entire home/apt,96,1,259,2019-07-07,12.99,1,307 +21366268,Cozy Home Away from Home in the Heart of NYC!,66960766,Jose,Manhattan,Gramercy,40.73684,-73.98058,Private room,57,3,75,2019-06-29,3.73,1,242 +21366506,"Whole Floor, 2 BR Apt. in Iconic Greenwich Village",154709515,Steven,Manhattan,Greenwich Village,40.7345,-73.99747,Entire home/apt,395,2,0,,,1,0 +21366806,Comfortable air bed near bronx zoo and sbh,154238443,Mrs,Bronx,Belmont,40.85456,-73.88521,Private room,29,4,5,2019-06-01,0.25,2,360 +21366948,"Best of the west! Sunny,quiet&huge! Ideal location",154714898,Gil,Manhattan,Upper West Side,40.78584,-73.97342,Entire home/apt,350,5,31,2019-06-30,1.54,1,166 +21367482,Spacious Brooklyn Brownstone Apt.,46332983,Rosemarie,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95086,Entire home/apt,120,2,26,2019-06-13,1.82,1,22 +21367648,L.A.J Laughter & Joy Rest Spot. Room # 3,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94409,Private room,100,2,24,2019-05-28,1.14,3,358 +21367929,★ 4BRs Family Groups★ Duplex ★Backyard ★ NYC 35min,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67752,-73.91489,Entire home/apt,190,5,59,2019-07-07,2.86,5,24 +21368441,"Spacious Duplex Loft Apt, Dtwn Bklyn, Near TRAINS",120574445,Kay,Brooklyn,Boerum Hill,40.68497,-73.97986,Entire home/apt,200,3,45,2019-07-02,2.29,1,3 +21369060,L.A.J Laughter & Joy Rest Spot. Room # 2,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.94226,Private room,70,2,32,2019-05-12,1.53,3,358 +21369232,Awesome Private Room in Vibrant Bronx,12446529,Migdalia,Bronx,Soundview,40.82407,-73.8614,Private room,49,2,25,2019-05-07,1.32,2,184 +21369271,L.A.J Laughter & Joy Rest Spot. Room # 1,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.65909,-73.94423,Private room,70,2,58,2019-06-26,2.80,3,60 +21369311,Nice room in renovated apartment in Brooklyn,1478269,Ben,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95452,Private room,70,2,7,2019-06-06,0.36,2,49 +21369656,Sunny and Spacious!Awesome Central Harlem 2br,138359650,Charles,Manhattan,East Harlem,40.80641,-73.94114,Entire home/apt,237,3,45,2019-06-23,2.18,1,89 +21370008,Private Comfy Town Home in Heart of Williamsburg,10545382,Chase,Brooklyn,Williamsburg,40.71561,-73.96307,Private room,129,1,66,2019-07-07,3.32,2,84 +21370014,Renovated apartment of a young business traveller,36824919,Dmitry,Manhattan,Upper West Side,40.80246,-73.96741,Private room,72,3,1,2017-10-28,0.05,1,0 +21370205,Sun Filled Private Room near Central Park,26702561,Amy,Manhattan,Hell's Kitchen,40.76587,-73.98527,Private room,90,1,0,,,1,0 +21375941,Spectacular Brooklyn brownstone!,15412884,Catherine,Brooklyn,Boerum Hill,40.68486,-73.98487,Entire home/apt,800,7,2,2018-07-25,0.11,1,246 +21377271,Sunny Spacious 2 Bedroom in Park Slope,15103996,Chris,Brooklyn,South Slope,40.66489,-73.99128,Entire home/apt,130,6,4,2019-01-02,0.22,1,5 +21377493,Macon Modern Brownstone Suite,154550758,Khadijah,Brooklyn,Bedford-Stuyvesant,40.68417,-73.92726,Entire home/apt,160,2,0,,,1,171 +21378053,Special one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74871,-73.9753,Entire home/apt,175,30,2,2019-01-19,0.11,50,365 +21378123,Studio apt direct access to Mantattan and Brooklyn,154828245,Ping,Staten Island,New Springville,40.58508,-74.16162,Entire home/apt,58,1,87,2019-06-24,4.18,1,0 +21378145,Beautiful Studio Apartment on Upper East Side!,64327344,Diane,Manhattan,Upper East Side,40.777,-73.94861,Entire home/apt,115,3,38,2018-08-31,1.81,1,0 +21378988,"Casa Blanca, one of a kind townhouse in New York",55527442,Ekaterina,Manhattan,Murray Hill,40.7487,-73.97862,Entire home/apt,300,3,0,,,3,294 +21379252,Villa Borghese,55527442,Ekaterina,Manhattan,Murray Hill,40.74827,-73.97868,Private room,577,2,1,2018-09-22,0.10,3,293 +21379577,living on Bleecker street,61696564,Natalia,Manhattan,Greenwich Village,40.73025,-73.99996,Private room,104,31,1,2017-10-25,0.05,2,0 +21379957,Union Square Shared Studio - Female Only,11822196,Melanie,Manhattan,Gramercy,40.73666,-73.98544,Shared room,49,1,76,2019-06-06,3.64,2,0 +21380140,Cozy room available in Queens Village.,154848269,Luequita,Queens,Queens Village,40.7167,-73.73473,Private room,35,3,8,2019-06-27,0.61,1,38 +21380282,"Spacious private bedroom in Park Slope, Brooklyn.",2245915,Jonathan,Brooklyn,Gowanus,40.6812,-73.98186,Private room,85,3,2,2018-09-29,0.15,1,0 +21381272,Cozy Bedroom in the Heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76152,-73.98959,Private room,91,1,32,2019-03-19,1.59,3,181 +21381555,NYC Dreamer,50760404,Jenifer,Brooklyn,Crown Heights,40.67178,-73.92362,Private room,80,1,108,2019-07-02,5.18,2,0 +21382292,Cozy 2 Bedroom in the heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76119,-73.9873,Entire home/apt,200,3,41,2019-06-18,1.97,3,181 +21383712,NYC Forest,50760404,Jenifer,Brooklyn,Crown Heights,40.67318,-73.92321,Private room,80,1,98,2019-06-30,4.75,2,0 +21383821,Brooklyn,3730706,E,Brooklyn,Bedford-Stuyvesant,40.68469,-73.94885,Entire home/apt,175,5,10,2018-09-23,0.49,1,0 +21383903,Shared Room in Astoria 1 stop from Manhattan,55724558,Taylor,Queens,Long Island City,40.76048,-73.94068,Shared room,45,5,16,2019-06-04,0.77,5,88 +21384151,"Quiet, Private BR (Queen Bed): Views of BK Bridge",154886441,Daniel,Manhattan,Financial District,40.7094,-74.00145,Private room,96,4,4,2017-11-02,0.19,1,0 +21384233,Gorgeous renovated Boutique townhouse apartment,10546345,Kimberley,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92523,Entire home/apt,180,4,31,2019-06-17,1.47,1,339 +21384296,"Spacious 2BR garden apt in BedStuy, 1 block to J",4563377,Rachel,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92933,Entire home/apt,100,5,5,2019-06-20,0.27,1,0 +21384410,Hip Brooklyn Duplex In Prospect Heights,32014256,Josh,Brooklyn,Crown Heights,40.67487,-73.95721,Entire home/apt,129,1,79,2019-06-23,3.88,1,144 +21384768,"Nice room, close to everything NY has to offer",154629695,Diana,Queens,Astoria,40.75807,-73.90977,Private room,60,1,66,2019-06-22,3.29,1,19 +21384941,Great UWS alcove studio,11774785,Greg,Manhattan,Upper West Side,40.79027,-73.97241,Entire home/apt,135,2,0,,,1,0 +21385255,Private Master Bedroom in the Lower East Side,118421882,Natalie,Manhattan,Chinatown,40.71541,-73.99083,Private room,95,1,132,2019-06-22,6.45,1,27 +21385556,Rosedale,95057247,Marie,Queens,Rosedale,40.65111,-73.73441,Private room,125,3,0,,,1,0 +21385915,D) Cozy Spacious Queen bed WiFi JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69943,-73.81444,Private room,48,1,49,2019-05-16,2.40,4,255 +21386105,Quiet & clean 1br haven with balcony near the park,154256662,Danielle,Queens,Astoria,40.77134,-73.92424,Entire home/apt,250,3,1,2018-01-02,0.05,1,180 +21386117,"Newly Renovated Apt, Quick & Easy Access to Subway",83093714,Brianna,Manhattan,Harlem,40.81631,-73.94203,Private room,300,1,1,2017-12-06,0.05,1,0 +21386179,Private Room & Full Bath in Brooklyn,123511218,Adrián,Brooklyn,Bedford-Stuyvesant,40.67947,-73.94649,Private room,44,2,3,2019-03-31,0.14,1,0 +21386677,The Cozy Bushwick Modern (Room A),142625186,J.R.,Brooklyn,Bushwick,40.69143,-73.91756,Private room,75,1,27,2019-06-10,1.32,2,0 +21390016,Spacious 1 Bed PENTHOUSE Apt w/ Incredible VIEWS,2762154,Bethany,Brooklyn,Sunset Park,40.63863,-74.01916,Entire home/apt,88,14,1,2017-11-19,0.05,1,0 +21390251,Clean 2BR Park Slope Apt w/ Private Outdoor Space,26765262,Derek,Brooklyn,Gowanus,40.66933,-73.99158,Entire home/apt,125,3,70,2019-07-01,3.38,1,99 +21391447,Large Modern Stylish 3Bed 2Bathr Nolita Apartment,4853070,Tom,Manhattan,Nolita,40.72022,-73.99604,Entire home/apt,300,3,0,,,1,0 +21392488,Middle village,118697704,Selina,Queens,Middle Village,40.71285,-73.87627,Entire home/apt,250,2,4,2018-10-07,0.19,1,364 +21392504,Cozy Room With HULU Live TV/Netflix and 2 Baths,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68562,-73.93836,Private room,44,2,96,2019-06-28,4.66,3,7 +21392524,Elegant Private Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80989,-73.9549,Private room,174,1,111,2019-06-13,5.37,5,244 +21393427,Entire Luxury 1BR APT on the Upper East Side,22924270,Igor,Manhattan,Upper East Side,40.77331,-73.95328,Entire home/apt,199,3,1,2017-10-19,0.05,1,17 +21393826,Interior Designer's spacious Williamsburg retreat,46716542,Christine,Brooklyn,Williamsburg,40.70579,-73.94277,Private room,128,1,1,2018-01-01,0.05,1,144 +21394087,The Hideaway Upstairs,145242566,Corey,Manhattan,Harlem,40.81807,-73.95487,Private room,30,3,86,2019-06-24,4.32,2,0 +21394300,Entire 1BR Beautiful Williamsburg Apartment,205055,Clare,Brooklyn,Williamsburg,40.71923,-73.95515,Entire home/apt,150,2,3,2018-01-04,0.15,1,0 +21394554,Quiet and Spacious 1 Bed in Woodside,154984900,Bidya,Queens,Woodside,40.74599,-73.89507,Private room,65,1,133,2019-06-29,8.87,1,7 +21394596,Room avail: Newly-renovated Washington Heights APT,29883522,Alison,Manhattan,Washington Heights,40.84412,-73.93968,Private room,50,3,1,2017-11-06,0.05,1,0 +21394750,Bronx Charm 20 mins to NYC,154985306,Mary,Bronx,University Heights,40.8568,-73.9149,Entire home/apt,175,2,68,2019-07-01,3.34,1,89 +21395349,Spacious Long Term Rental in Elevator Building,24052348,Tara,Manhattan,East Village,40.72025,-73.97833,Private room,86,6,5,2018-01-14,0.25,4,0 +21395676,Huge master bedroom in pristine Nolita loft,907037,Morgan,Manhattan,Little Italy,40.71966,-73.99591,Private room,325,2,5,2018-12-09,0.26,1,0 +21395840,Cozy and Welcoming Upper East Side NYC Studio!,2714509,Geraldine,Manhattan,Upper East Side,40.78098,-73.9467,Entire home/apt,95,2,58,2019-06-23,2.96,1,0 +21397049,Tranquility & Privacy in the Concrete Jungle,11167829,Dana (& Justin),Manhattan,Harlem,40.82794,-73.94163,Private room,50,4,3,2017-10-30,0.14,3,0 +21397638,Large 1 Bedroom in LES,50086945,Pascal,Manhattan,Lower East Side,40.71954,-73.98914,Entire home/apt,250,7,7,2019-03-14,0.37,1,0 +21398486,"Enjoy Fireplace, Deck, King Bed in Park Slope!",4058709,Elise And Dave,Brooklyn,Park Slope,40.67587,-73.9793,Entire home/apt,165,6,5,2018-12-18,0.25,2,73 +21398613,Spacious 1 BR APT right next to Central Park,24393270,Marc,Manhattan,Upper West Side,40.76877,-73.98371,Entire home/apt,150,5,1,2017-10-30,0.05,1,0 +21399110,"Beautiful, Cozy apartment in Brooklyn",1016005,Livia,Brooklyn,Bedford-Stuyvesant,40.68899,-73.94673,Entire home/apt,90,1,17,2019-07-01,0.92,1,158 +21399123,Beautiful Room with Private Bathroom in Manhattan,96346005,Yamile,Manhattan,Upper West Side,40.77455,-73.98882,Private room,156,3,86,2019-06-29,4.11,3,68 +21399131,Cozy LIC Loft-Style Apt- Minutes to Manhattan,155031529,Shannon,Queens,Long Island City,40.74726,-73.94304,Entire home/apt,110,20,2,2017-11-02,0.10,1,0 +21399518,"Sunny room w/queen bed, prime Williamsburg.",6563906,Lukasz,Brooklyn,Williamsburg,40.71318,-73.96038,Private room,70,1,8,2018-05-06,0.41,1,0 +21399885,Comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68742,-73.91628,Entire home/apt,154,3,26,2019-06-18,1.41,3,341 +21399985,"Beautiful, Spacious & Comfortable NYC Brownstone",7658248,M,Manhattan,Harlem,40.80999,-73.95484,Private room,85,2,76,2019-06-13,3.68,2,0 +21404524,Beautiful sunny Bushwick Loft,22875538,Max,Brooklyn,Bushwick,40.70808,-73.9205,Entire home/apt,299,2,8,2019-01-01,0.63,2,0 +21405904,Single private Bedroom in a beautiful House,77750223,Mercedes,Bronx,Clason Point,40.81728,-73.86343,Private room,40,3,5,2019-05-19,0.46,2,365 +21406187,"Comfortable, Beautiful & Spacious NYC Brownstone",7658248,M,Manhattan,Harlem,40.80839,-73.95269,Private room,85,2,78,2019-06-27,3.77,2,0 +21406504,2 bedroom close to the subway and central park.,59346339,Doug,Manhattan,East Harlem,40.78996,-73.94873,Entire home/apt,127,2,3,2017-11-20,0.15,1,0 +21406998,Large room,154696585,Jorge,Bronx,Kingsbridge,40.87847,-73.90268,Private room,80,3,1,2017-12-19,0.05,1,0 +21407514,"Spacious, well-lit, with modern decor apartment!",154842298,Jessica,Manhattan,East Village,40.7266,-73.984,Entire home/apt,195,3,2,2018-05-20,0.11,1,0 +21408195,The Manhattanville,145242566,Corey,Manhattan,Harlem,40.81956,-73.95277,Shared room,25,3,61,2019-06-23,2.99,2,7 +21408811,Spacious PRIVATE Room,15520066,Richard,Queens,Ridgewood,40.70839,-73.89516,Private room,35,3,1,2017-11-20,0.05,1,0 +21410257,"ALL YOURS FULL APARTMENT +2 BDM 2 BTH East Village!",27636450,Lauren,Manhattan,NoHo,40.72617,-73.99218,Entire home/apt,250,2,2,2017-11-06,0.10,2,0 +21410971,"Beautiful,spacious and sunny one bedroom apartment",154306881,Marta,Brooklyn,Prospect-Lefferts Gardens,40.65851,-73.96151,Entire home/apt,120,3,2,2017-10-30,0.10,1,0 +21411274,Spacious Studio in the City close to all!,155148052,Amir,Manhattan,Upper East Side,40.77719,-73.9511,Entire home/apt,139,2,45,2019-06-15,2.18,1,14 +21411685,Chic room in a clean and cozy apartment,35662919,Grace,Brooklyn,Williamsburg,40.71023,-73.95827,Private room,100,2,1,2017-10-22,0.05,1,0 +21412438,Elmhurst整套豪华公寓,125492013,祥茵,Queens,Elmhurst,40.7434,-73.8839,Entire home/apt,90,5,0,,,2,0 +21413190,Morden Corner Lux Apartment w/ River & City view,22223682,Zoey,Manhattan,Upper West Side,40.77158,-73.98976,Private room,150,300,2,2018-01-02,0.10,1,365 +21413839,Chelsea Cabins (NYC),117365574,Maria,Manhattan,Chelsea,40.74785,-73.99664,Private room,82,1,97,2019-06-16,4.69,5,309 +21413889,A Garden Suite - Mott Haven Townhouse Studio,155171571,Tania,Bronx,Mott Haven,40.80889,-73.92028,Entire home/apt,125,3,32,2019-06-08,1.59,1,6 +21414167,Recently renovated 2 bedroom apartment in midtown,42784981,Santiago,Manhattan,Midtown,40.7447,-73.98255,Entire home/apt,350,2,1,2017-11-26,0.05,1,0 +21414821,New!! Cozy full equipped room in Times Square,155182192,Adam,Manhattan,Hell's Kitchen,40.75949,-73.9908,Private room,40,1,108,2019-05-24,5.21,1,65 +21416357,Gorgeous Green Premium Suite! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68826,-73.90933,Private room,80,1,34,2019-06-03,2.07,3,207 +21416483,A cozy room for the holidays in Brooklyn,155200301,Andy,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9216,Private room,40,18,1,2017-12-31,0.05,2,0 +21420445,Private room in apartment in LIC,3711407,Andrea,Queens,Long Island City,40.74679,-73.94547,Entire home/apt,85,2,14,2019-01-06,0.68,1,0 +21421438,Iconic Apartment in Times Square Steps to Broadway,143555138,Valdo,Manhattan,Hell's Kitchen,40.76131,-73.99362,Entire home/apt,185,1,85,2019-07-02,4.08,1,172 +21421657,THE SMALL ENGLISH MANOR NESTLED AMONGST THE TREES,155255550,Emma,Manhattan,East Village,40.72436,-73.984,Entire home/apt,215,1,126,2019-07-01,6.12,1,234 +21422090,"Bedroom 5 min away from E, 7, F, M, R trains!",106766048,Chelsea,Queens,Jackson Heights,40.75239,-73.89021,Private room,45,3,12,2019-06-27,1.67,1,0 +21422357,Beautiful 2 Bedroom near Brooklyn Museum!,144195040,Deanna,Brooklyn,Crown Heights,40.67257,-73.95958,Entire home/apt,150,1,29,2019-06-22,1.41,1,135 +21422721,Large private room 7 min to LGA 15min to Manhattan,153524812,James,Queens,Astoria,40.76818,-73.92613,Private room,65,1,114,2019-06-30,5.46,1,319 +21423426,Peaceful 1 Bedroom in the East Village,10391716,Sasha,Manhattan,East Village,40.72171,-73.98307,Entire home/apt,190,4,68,2019-06-24,3.34,1,41 +21426105,Private room in convenient East Harlem location,6105242,Jill,Manhattan,East Harlem,40.78671,-73.94153,Private room,60,14,1,2019-01-07,0.16,1,55 +21426185,Spacious Studio in the Lower East Side,6388732,William,Manhattan,Lower East Side,40.72269,-73.99102,Entire home/apt,175,2,16,2019-03-10,0.77,1,2 +21426368,Beautiful Space in Duplex Loft Close Prospect Park,4414774,Kristopher,Brooklyn,Crown Heights,40.67366,-73.96032,Shared room,60,2,13,2018-09-09,0.64,1,0 +21426648,Bright Airy 1 Bedroom Studio in Prime Downtown NYC,683457,Kelly,Manhattan,East Village,40.72469,-73.99111,Entire home/apt,250,3,1,2018-01-01,0.05,1,0 +21427176,STUNNING NYC VIEWS! New Jersey 15 min Times Square,154949847,Emily,Manhattan,Hell's Kitchen,40.76893,-73.99654,Entire home/apt,288,3,66,2019-06-11,3.42,2,300 +21427369,Gorgeous Clinton Hill Brooklyn 1BR Garden Apt,109909474,Joanna & Brian,Brooklyn,Clinton Hill,40.68839,-73.96018,Entire home/apt,100,1,93,2019-06-19,4.67,1,65 +21428231,Adorable room in AMAZING Chelsea apartment!,155318905,Samantha,Manhattan,Chelsea,40.74314,-73.99898,Private room,95,1,2,2017-11-06,0.10,1,0 +21428625,Awesome Oasis! 3 stops Away from Manhattan!!!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94368,Private room,50,5,1,2018-01-17,0.06,7,0 +21428791,LES Duplex Penthouse with Private Rooftop Terrace,16794494,Ian,Manhattan,East Village,40.72251,-73.98129,Private room,200,2,9,2019-05-27,0.46,1,0 +21429062,Beautiful spacious duplex in Bed Stuy Brooklyn,122044489,Tonie,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94225,Entire home/apt,110,2,39,2019-06-30,1.91,2,130 +21431963,Magical Space w/Incredible Cozy Energy,122374980,Matt,Manhattan,Upper West Side,40.78428,-73.97665,Shared room,60,1,90,2019-06-13,4.35,4,77 +21432084,Times Square Room with access to a Terrace,382836,Chemme,Manhattan,Hell's Kitchen,40.75873,-73.99041,Private room,143,3,18,2019-05-20,0.89,4,365 +21433001,Colorful & cozy studio in Brooklyn,11908891,Alenka,Brooklyn,Flatbush,40.64016,-73.96784,Entire home/apt,97,3,2,2017-11-18,0.10,1,0 +21434285,Marriott Vacation Club Pulse - King Room,19809273,Susan,Manhattan,Midtown,40.75092,-73.98409,Entire home/apt,350,2,0,,,1,178 +21434692,Modern Harlem Hamilton Heights Garden Apartment,111663504,Sumitra,Manhattan,Harlem,40.82794,-73.95118,Entire home/apt,150,2,69,2019-07-03,3.36,1,69 +21434826,UES luxurious Penthouse with huge private terrace,9554878,Arturo,Manhattan,Upper East Side,40.76955,-73.95988,Entire home/apt,589,6,9,2019-06-29,0.49,1,4 +21435076,Charming Grand Central Two Bedroom (2F),37487997,Sean,Manhattan,Murray Hill,40.74866,-73.97755,Entire home/apt,138,30,1,2018-08-07,0.09,1,188 +21435622,"Small, quiet, and clean 1BR in Manhattan",100970377,Anabel,Manhattan,Harlem,40.81032,-73.94331,Entire home/apt,200,1,3,2017-11-24,0.15,1,0 +21435800,Private Brownstone Basement Studio Seasonal Space,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68623,-73.93807,Entire home/apt,50,2,46,2019-07-01,2.23,5,70 +21435960,Cozy in Bedstuy,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69284,-73.94418,Private room,65,3,40,2019-06-17,1.99,3,70 +21436653,The Stockholm Suite (2 min to subway),155400834,Matt,Manhattan,Harlem,40.81222,-73.94667,Entire home/apt,245,2,82,2019-06-30,4.44,1,135 +21436689,Large One-Bedroom Apartment on Quiet Street,45658261,Nat,Brooklyn,Crown Heights,40.67186,-73.92244,Entire home/apt,100,2,7,2018-02-04,0.35,1,0 +21437509,Peaceful Artist's Room in Williamsburg,13081524,Sarah,Brooklyn,Williamsburg,40.71226,-73.93949,Private room,60,2,48,2019-06-29,2.30,1,13 +21437933,Large one-bedroom in Bushwick with Cleo the Cat,2545414,Ali,Brooklyn,Bushwick,40.70327,-73.92024,Entire home/apt,89,7,10,2018-12-27,0.51,1,11 +21439155,Washington Heights Renovated Bedroom,66830803,Angie,Manhattan,Washington Heights,40.85083,-73.93623,Private room,51,1,4,2018-12-30,0.31,1,0 +21440192,Good Deal! Don't Miss Out!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94242,Entire home/apt,150,30,12,2018-07-08,0.63,7,0 +21440393,Peaceful and Spacious ENTIRE Sunlit Apartment,8621271,Shem,Brooklyn,Crown Heights,40.67506,-73.94828,Entire home/apt,110,3,20,2018-10-16,1.00,1,0 +21440587,Columbus Circle Studio,154346156,Emilio,Manhattan,Hell's Kitchen,40.76673,-73.98324,Entire home/apt,230,2,1,2017-10-27,0.05,1,0 +21440605,☆☆☆Cosy Bedroom in The Heart of the City☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76457,-73.99082,Private room,119,1,52,2019-06-23,2.50,3,159 +21440734,Great Finding! 3 stops away from Manhattan,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68558,-73.94231,Private room,44,5,1,2017-11-28,0.05,7,0 +21440922,Loft off Jefferson L,3039349,Rebecca,Brooklyn,Bushwick,40.70766,-73.92039,Private room,80,1,34,2019-06-24,1.74,1,12 +21441613,Exquisitely clean and beautiful UES apt home.,59405516,Anthony,Manhattan,Upper East Side,40.77183,-73.95534,Entire home/apt,233,6,15,2019-06-23,0.72,2,154 +21444065,"Harlem Tree House, only 15 minutes to Midtown!",12762193,Jenny,Manhattan,Harlem,40.8107,-73.94731,Entire home/apt,150,2,10,2019-05-30,0.49,1,0 +21444621,Studio Apartment in Williamsburg,29110524,MaKaya,Brooklyn,Williamsburg,40.72031,-73.95615,Entire home/apt,115,4,0,,,1,0 +21444943,BIG Sunny Space by Prospect Park,50903933,Shea,Brooklyn,Flatbush,40.65114,-73.96246,Private room,60,2,2,2017-10-26,0.10,1,0 +21446560,Private Bedroom and Bathroom in doorman building.,69108572,Max,Manhattan,Upper East Side,40.77904,-73.95205,Private room,150,1,0,,,1,0 +21446922,Cozy private entrance bedroom with key and lock!,11452850,Jennifer,Brooklyn,Williamsburg,40.71171,-73.95896,Private room,70,2,3,2018-05-15,0.15,1,0 +21447197,Upper East Side Oasis,59405516,Anthony,Manhattan,Upper East Side,40.77296,-73.95594,Private room,75,3,11,2019-04-20,0.82,2,62 +21448949,Quiet Brooklyn 1 BR,10456843,Rachael,Brooklyn,Crown Heights,40.66719,-73.93913,Entire home/apt,109,2,22,2019-06-18,1.17,1,1 +21449107,Room for two in the heart of Brooklyn!,155647922,Sally,Brooklyn,Flatbush,40.64766,-73.95888,Private room,65,3,74,2019-06-30,3.59,1,66 +21449446,The Oasis 2,33106693,Elena,Manhattan,Harlem,40.82167,-73.95006,Entire home/apt,210,5,2,2018-08-11,0.11,3,88 +21450176,Private Room in Convenient Midtown East Location,121809482,Gina,Manhattan,Midtown,40.75089,-73.9706,Private room,145,1,25,2019-01-18,1.27,2,0 +21450408,Private Room / Netflix + HULU Live TV in a 2 Bath,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68444,-73.93804,Private room,40,2,101,2019-07-01,4.89,3,8 +21450636,Exposed brick 1BR apartment in upper Manhattan,21341524,Harold,Manhattan,East Harlem,40.79104,-73.94144,Entire home/apt,180,2,3,2018-06-16,0.16,1,41 +21450672,Comfy queen bed in a private room near LGA Airport,155691570,Mili,Queens,East Elmhurst,40.76555,-73.87232,Private room,40,1,76,2018-09-22,3.68,5,0 +21450693,Spacious WA Heights Apt Next to Subway,13010274,Sarah,Manhattan,Washington Heights,40.83433,-73.94304,Shared room,75,1,0,,,1,0 +21451138,B) Comfy Full Bed Wifi near JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69938,-73.81304,Private room,40,1,119,2019-07-08,5.80,4,229 +21452348,"manhattan studio near chelsea,highline, whitney",7390361,Inyoung,Manhattan,Chelsea,40.74184,-73.99877,Entire home/apt,128,6,6,2018-01-13,0.30,1,0 +21452670,Homey Harlem Home,3917130,Cindy,Manhattan,Harlem,40.83089,-73.94541,Private room,36,1,0,,,1,0 +21455957,"Spacious, sun-soaked 1-br in Clinton Hill/Bedstuy",3000089,Kimberly,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95884,Entire home/apt,85,8,16,2019-06-25,0.81,1,6 +21457703,MODERN STYLISH PENTHOUSE SUITE @ CENTRAL PARK,6945444,Gregory,Manhattan,Harlem,40.80111,-73.95221,Entire home/apt,173,2,62,2019-06-23,3.44,1,92 +21457933,ENTIRE HOME. BEAUTIFUL 1 BEDROOM APT IN GREENPOINT,1285768,Olga,Brooklyn,Greenpoint,40.72168,-73.94336,Entire home/apt,150,10,2,2018-12-08,0.11,1,41 +21457989,Brooklyn Townhouse w Large Garden!,2350011,Rushna,Brooklyn,Clinton Hill,40.68499,-73.9616,Entire home/apt,200,10,5,2019-01-02,0.24,1,0 +21458689,GloRia's Pod,155791040,Donovan,Queens,Queens Village,40.71195,-73.74172,Entire home/apt,98,1,64,2019-06-17,3.45,1,356 +21458865,Bright bedroom. Easy access to Manhattan,62888101,Yoshi,Brooklyn,Red Hook,40.67634,-74.00293,Private room,69,1,32,2019-06-20,1.73,1,86 +21458972,Large Bed-Stuy Apartment,45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95516,Entire home/apt,142,6,4,2018-06-01,0.20,2,0 +21460249,"Stylish, cozy 1BR in Upper West Manhattan",8687478,Marie,Manhattan,Harlem,40.82523,-73.95357,Entire home/apt,180,5,1,2018-01-02,0.05,1,0 +21460319,A Peaceful Nest in Williamsburg,3249409,Laura,Brooklyn,Williamsburg,40.71072,-73.96498,Entire home/apt,150,4,45,2019-06-08,2.18,1,13 +21460444,Discounted for Summer - Close to Everything,155810605,Danielle,Manhattan,East Harlem,40.79109,-73.94915,Private room,100,2,83,2019-06-21,4.08,2,40 +21460970,Private garden studio in Brooklyn,10525934,Nubia,Brooklyn,Gowanus,40.67585,-73.99653,Entire home/apt,125,2,13,2018-09-12,0.64,1,0 +21461540,"Williamsburg apartment, beautiful rooftop & more",9427815,Liam,Brooklyn,Williamsburg,40.71975,-73.94279,Entire home/apt,175,2,1,2018-01-01,0.05,1,0 +21461615,ウィリアムズバーグのかわいいお部屋です2,145285876,Hiro,Brooklyn,Williamsburg,40.71523,-73.96245,Private room,66,2,3,2017-12-10,0.15,2,0 +21461874,"Privet bedroom. Super clean, 10 min from Times Sq",13878635,Muslum,Manhattan,Hell's Kitchen,40.76636,-73.99334,Private room,150,1,9,2019-05-26,0.44,2,88 +21461901,Comfy & Quiet Private Room w/ Netflix in NY!,916804,Val,Manhattan,Harlem,40.81953,-73.94717,Private room,79,2,83,2019-07-01,4.14,1,26 +21462212,Clean private room with double bed,145285876,Hiro,Brooklyn,Williamsburg,40.71536,-73.96358,Private room,66,2,1,2017-11-02,0.05,2,0 +21462551,Speakeasy Inn Bushwick One,24020292,Cristiano,Brooklyn,Bushwick,40.70121,-73.91986,Private room,85,1,89,2019-07-05,4.35,4,58 +21462783,1BR APT in Morningside Heights,5057804,Mike,Manhattan,Morningside Heights,40.80605,-73.96496,Entire home/apt,125,3,16,2019-07-01,0.79,1,25 +21463041,DLKLC Residence,112176279,Arda,Brooklyn,Bushwick,40.70154,-73.92297,Private room,89,2,0,,,1,0 +21467409,Beautiful Brooklyn Brownstone,155885449,Kelly,Brooklyn,Park Slope,40.67643,-73.97824,Entire home/apt,105,7,7,2019-01-07,0.36,1,0 +21467493,"Cozy, fun, and close to everything",739592,Walton,Brooklyn,Williamsburg,40.71563,-73.95815,Private room,120,4,0,,,1,0 +21468762,great location for low price,61696564,Natalia,Manhattan,Greenwich Village,40.72849,-73.99987,Shared room,56,35,1,2017-10-26,0.05,2,0 +21469568,Sunny & Gorgeous master bedroom by central park,115228513,Aly,Manhattan,Upper West Side,40.80272,-73.96629,Private room,129,1,83,2019-06-09,4.00,2,365 +21469886,Sky Light Studio Chelsea,1358567,Jolie And Max,Manhattan,Chelsea,40.74387,-73.99766,Entire home/apt,180,3,6,2019-05-19,0.42,1,20 +21470099,Sunny Living Room with Comfortable Futon,3038856,Samir,Brooklyn,Williamsburg,40.7141,-73.96163,Shared room,35,1,0,,,3,0 +21471116,Sweet Home in the Heart of Manhattan,16301391,Majer,Manhattan,Midtown,40.74557,-73.98216,Private room,130,1,9,2017-12-27,0.44,1,0 +21471517,Charming Cozy Bedroom in Bushwick art house,155923396,Kelly,Brooklyn,Bushwick,40.70067,-73.92752,Private room,35,2,22,2019-06-24,1.89,3,29 +21471540,Charming Bushwick Shared Space,155923396,Kelly,Brooklyn,Bushwick,40.70031,-73.92848,Private room,25,2,35,2019-04-30,1.80,3,3 +21472026,Studio Apartment Available over Thanksgiving,17592183,Laura,Manhattan,Upper East Side,40.76241,-73.96134,Entire home/apt,150,5,1,2017-11-18,0.05,1,0 +21472364,Water Front Building - Bright/Luxury 1 BR,92183983,Christina,Brooklyn,Greenpoint,40.72865,-73.95937,Entire home/apt,120,5,17,2019-05-23,0.83,1,0 +21472882,Cozy Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71766,-73.94937,Private room,60,2,7,2018-10-15,0.34,3,0 +21473096,FourTwin bunkbeds- 5 minutes from JFK,114975592,John And Colleen,Queens,Springfield Gardens,40.66668,-73.76417,Private room,90,1,2,2019-03-05,0.14,4,84 +21473222,"Luxury, Zen 1BR in N Williamsburg",2823757,Meg,Brooklyn,Williamsburg,40.71719,-73.95427,Entire home/apt,109,2,4,2018-12-09,0.36,1,0 +21473314,Cozy Room in the Heart of NYC,31154454,Elliot,Manhattan,Kips Bay,40.74155,-73.98235,Private room,70,1,119,2019-06-23,5.78,2,3 +21473601,Over-sized studio in UnionSquare/EastVillage!,15894157,Lizzie,Manhattan,East Village,40.73073,-73.98601,Entire home/apt,145,3,27,2019-05-26,1.33,1,7 +21473648,Must Love Dogs and Tribeca NYC,155944475,Robert,Manhattan,Tribeca,40.71844,-74.00901,Private room,200,1,0,,,1,0 +21473761,East Village Artsy ONE-BEDROOOM ENTIRE APT,51547093,Kai Chieh,Manhattan,Lower East Side,40.72035,-73.98542,Entire home/apt,225,4,1,2017-12-20,0.05,2,0 +21474497,Studio with Private Terrace on Central Park West,2628354,Andrew,Manhattan,Upper West Side,40.78025,-73.97585,Entire home/apt,200,30,5,2018-02-11,0.25,1,0 +21474832,Douglaston (apt 2) Room 3,18996093,Leonard,Queens,Douglaston,40.75612,-73.72954,Private room,40,1,9,2019-05-18,0.49,5,252 +21474885,LAVISHING COMFORT IN BROOKLYN BROWNSTONE NYC,2015914,Majar,Brooklyn,Bushwick,40.68818,-73.91519,Private room,75,3,2,2019-06-30,1.20,8,365 +21475999,"Single Cabins (Chelsea, Manhattan, NYC)",117365574,Maria,Manhattan,Chelsea,40.7497,-73.99515,Private room,85,1,113,2019-06-22,5.50,5,292 +21476123,Bright Classic DUMBO Loft,6243641,Emily,Brooklyn,DUMBO,40.70223,-73.98971,Entire home/apt,145,2,1,2017-10-31,0.05,1,0 +21476604,Entire 1 bed Apt by Central/Morningside Park,12216173,Fan,Manhattan,Harlem,40.80543,-73.95739,Entire home/apt,150,1,21,2019-06-21,1.14,1,2 +21477282,Entire Apartment in Brooklyn Brownstone,6357428,Sophia,Brooklyn,Crown Heights,40.67592,-73.94792,Entire home/apt,100,2,3,2017-12-31,0.15,1,0 +21477403,Luxury Apt - 10 mins to Midtown and Williamsburg,16445934,Gina,Queens,Long Island City,40.74622,-73.94055,Entire home/apt,100,4,2,2018-09-30,0.19,1,0 +21477816,Sleek and Modern Brooklyn Apartment,155990761,Kevin,Brooklyn,Bushwick,40.69059,-73.91805,Private room,42,2,35,2018-07-22,1.69,1,0 +21481778,Adorable Upper East Side 1br,1607289,Aspen,Manhattan,Upper East Side,40.77196,-73.95454,Entire home/apt,299,2,1,2017-12-31,0.05,1,0 +21483653,Cozy Private Room with Patio in Bed-Stuy!,66234873,Zach,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94235,Private room,50,5,62,2019-06-23,3.58,1,12 +21483857,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76369,-73.96122,Entire home/apt,200,30,1,2018-04-22,0.07,87,364 +21484161,Cozy Brownstone Apartment in South Harlem,156047478,Doron,Manhattan,Harlem,40.80639,-73.94829,Entire home/apt,105,30,5,2019-06-02,0.28,2,195 +21485026,"Beautiful Room in Bushwick, Bk. (Hablo Español)",134419840,Damary,Brooklyn,Bushwick,40.69242,-73.90441,Private room,60,30,5,2019-06-06,0.24,1,141 +21485174,Large One Bedroom in NYC Brownstone,156060717,Pascale,Manhattan,Harlem,40.81535,-73.94713,Entire home/apt,175,3,33,2019-05-23,1.61,1,1 +21485695,Oasis: Cozy Comfy,156066689,Sharon,Bronx,Concourse,40.82276,-73.92682,Entire home/apt,114,2,79,2019-07-01,3.88,1,283 +21485867,"Popular Place, Brooklyn",156068349,Maureen,Brooklyn,Brownsville,40.65732,-73.90666,Entire home/apt,62,2,0,,,1,0 +21486004,Elegant Studio,67072838,Oscar,Manhattan,Midtown,40.74703,-73.98738,Entire home/apt,160,4,48,2019-06-08,2.44,1,327 +21486201,Private Bedroom in Heart of Williamsburg,16572580,Travis,Brooklyn,Williamsburg,40.70907,-73.9495,Private room,184,2,1,2017-10-25,0.05,2,0 +21486579,Times Square Holiday Rental Loft!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76565,-73.98554,Shared room,299,2,37,2019-02-18,1.80,5,188 +21487004,Gorgeous Apartment in Literally Perfect Location,87236554,Annie,Manhattan,East Village,40.73352,-73.98777,Private room,103,1,39,2018-08-07,2.00,1,0 +21487220,UES 1BR Oasis,156081840,Oren,Manhattan,Upper East Side,40.76767,-73.95609,Entire home/apt,225,2,7,2019-05-06,0.37,1,0 +21488093,Rod,128142697,Rod,Manhattan,Upper East Side,40.76719,-73.96973,Entire home/apt,750,4,0,,,2,0 +21489266,"Fun, Stylish, 3 Bedroom Pad 20 Mins to Midtown",154741428,Kyle,Manhattan,Harlem,40.82056,-73.95338,Entire home/apt,249,3,3,2018-08-11,0.21,1,0 +21489407,Cozy New Yorkers home away from home,152622375,Esther,Brooklyn,East New York,40.66372,-73.88285,Entire home/apt,75,2,27,2019-06-24,1.42,2,151 +21489753,Large One Bedroom Apartment near Grand Central,26138840,Graham,Manhattan,Murray Hill,40.74689,-73.9781,Entire home/apt,175,2,1,2017-10-25,0.05,1,0 +21490120,Trendy and Comfortable Brooklyn Abode,18218495,Sofia,Brooklyn,Williamsburg,40.71227,-73.93618,Private room,58,2,11,2019-05-19,0.73,1,88 +21490301,"Gorgeous, bright one-bed in amazing location",105340458,David,Manhattan,Lower East Side,40.72077,-73.98923,Entire home/apt,250,5,8,2019-03-15,0.43,1,0 +21490751,Clean & Cozy Downtown Manhattan Studio,26749889,Shang,Manhattan,Chinatown,40.71601,-73.99056,Entire home/apt,110,5,4,2018-03-27,0.19,1,0 +21490787,A walk away from the best in Williamsburg,56391145,Eric,Brooklyn,Greenpoint,40.72468,-73.9523,Entire home/apt,150,3,0,,,2,0 +21490894,BRIGHT SUNNY LOFT,56411266,Colin,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95908,Private room,60,3,0,,,1,0 +21491135,Diamond Peach,19708200,Larry,Brooklyn,Canarsie,40.63895,-73.91606,Entire home/apt,65,3,65,2019-06-20,3.19,3,305 +21491460,Bronx room near mall,66807235,Dexter,Bronx,Melrose,40.82251,-73.91125,Private room,60,3,0,,,1,90 +21496794,Private Crown Heights Brooklyn/Sterling 2/5 Trains,2230419,David,Brooklyn,Prospect-Lefferts Gardens,40.66308,-73.9482,Private room,80,1,27,2019-07-05,1.66,1,0 +21497189,Room in Brownstone (Now Available),156175292,Gaby,Brooklyn,Bedford-Stuyvesant,40.6847,-73.92904,Private room,25,1,4,2018-09-26,0.19,1,34 +21498344,Brooklyn's Finest 1BR APT in BedStuy/Clinton Hill,51729061,Mike,Brooklyn,Bedford-Stuyvesant,40.69147,-73.95572,Entire home/apt,150,3,17,2019-06-25,1.45,1,0 +21499536,Sunny and cozy Upper West Side Apartment,8132596,Aniko,Manhattan,Upper West Side,40.78858,-73.97462,Entire home/apt,170,3,34,2018-04-01,1.66,1,0 +21499719,"Cozy, Private Guest Suite Near JFK, LGA & NYC",138235784,Kay,Queens,Forest Hills,40.7081,-73.85206,Entire home/apt,70,1,29,2019-06-03,1.47,2,225 +21500449,Authentic Brklyn Experience - Room A,156042211,Tia,Brooklyn,Canarsie,40.64963,-73.89817,Private room,65,4,8,2018-02-17,0.39,4,37 +21501184,Classy Modern 2 Beds for 2 People-Staten Island NY,99202586,Thelma,Staten Island,Randall Manor,40.63118,-74.12866,Private room,55,2,4,2018-10-06,0.20,5,355 +21501295,Beautiful Prime Soho/Nolita 2-Bed Apartment,156214681,Joshua,Manhattan,Nolita,40.72036,-73.99633,Entire home/apt,550,4,87,2019-06-23,4.22,1,295 +21501507,.,156216145,Lisa,Manhattan,Financial District,40.71018,-74.01325,Entire home/apt,215,2,0,,,1,0 +21501622,Quaint Retreat live like a local 2,975030,Helena,Brooklyn,Bedford-Stuyvesant,40.67664,-73.91163,Entire home/apt,90,3,36,2019-07-01,1.83,1,253 +21502547,LOLA'S NEST-One Bedroom apt-8 mins from NY JFK,156225107,Caroline,Queens,Laurelton,40.68021,-73.74167,Entire home/apt,110,1,45,2019-06-30,2.24,1,170 +21502902,Warm & Cozy,156231243,Debra,Brooklyn,Bay Ridge,40.6338,-74.03162,Private room,30,3,0,,,1,0 +21503589,Newly Renovated/Historic-Landmarked Brownstone!,50332029,Mario,Manhattan,Harlem,40.82621,-73.94549,Entire home/apt,95,1,139,2019-06-29,6.90,1,41 +21503830,Provincial welcomes the new in revitalized Bklyn,310296,Jaqui And Mark,Brooklyn,Prospect-Lefferts Gardens,40.66376,-73.94643,Private room,35,1,45,2019-06-23,2.42,2,52 +21504381,"20 minutes from Manhattan,separated big bedroom.",155977656,Hongyan,Queens,Forest Hills,40.71711,-73.8347,Private room,70,1,34,2019-06-24,1.67,1,93 +21504532,Beautiful apartment direct in Midtown Manhattan,156246842,Sandra,Manhattan,Hell's Kitchen,40.76254,-73.98812,Private room,150,3,54,2019-06-22,2.67,3,24 +21504803,Modern Industrial Williamsburg 1br Apt on Bedford,156249849,Nicole,Brooklyn,Williamsburg,40.71873,-73.95535,Entire home/apt,80,2,18,2019-05-19,0.88,1,12 +21504818,Large Center Manhattan Studio,39142433,Ryan,Manhattan,Kips Bay,40.74484,-73.9789,Entire home/apt,160,1,12,2018-01-21,0.59,1,0 +21504961,Carroll Gardens getaway,102228163,Cesar,Brooklyn,Carroll Gardens,40.67831,-74.00186,Entire home/apt,90,6,0,,,3,0 +21505197,Heart of Brooklyn Heights,3900540,Erin,Brooklyn,Brooklyn Heights,40.7008,-73.99385,Entire home/apt,196,1,39,2019-07-07,2.00,1,96 +21505275,Private Room in Industrial Apartment w/ rooftop!,42999896,Sander,Brooklyn,Bedford-Stuyvesant,40.68903,-73.93192,Private room,62,1,8,2018-04-15,0.39,1,0 +21505666,*AMAZING AND COZY SPACE 2 MIN FROM THE SUBWAY,156259857,Joao,Brooklyn,Cypress Hills,40.68,-73.90447,Private room,36,2,70,2019-06-12,3.43,3,326 +21512039,"Perfect Studio, Great location!",16255906,Alejandra,Manhattan,Financial District,40.70507,-74.009,Private room,143,2,3,2018-02-08,0.15,1,0 +21512337,"Great Studio apt, great location in Hells Kitchen!",150687748,Rodrigue,Manhattan,Hell's Kitchen,40.7661,-73.98843,Entire home/apt,120,2,3,2019-06-30,1.14,1,0 +21512357,NYC Modern Luxury Apartment 15 Mins to Wall Str.,3424386,V,Brooklyn,Park Slope,40.68111,-73.97994,Entire home/apt,129,3,7,2019-04-10,0.38,1,12 +21512977,Private Bushwick Room in Great Location!,26804769,Andrea,Brooklyn,Bushwick,40.69881,-73.91278,Private room,32,1,3,2017-11-20,0.15,1,0 +21513143,Airy Ridgewood Brownstone,70035028,Rebecca And Jolie,Queens,Ridgewood,40.70341,-73.89624,Private room,48,2,39,2019-06-28,1.91,1,231 +21513332,Grand Central Gem,6459610,Brian,Manhattan,Murray Hill,40.74819,-73.97642,Entire home/apt,150,2,61,2019-06-23,2.95,1,26 +21514099,Cozy quirky 1 bed apartment in Tribeca/Soho,10972769,Claudia,Manhattan,SoHo,40.7251,-74.00775,Entire home/apt,250,2,5,2018-08-05,0.26,1,0 +21514294,LES / Lower East Side | large room with 2 windows,156332912,Leon,Manhattan,Lower East Side,40.72052,-73.98347,Private room,70,2,1,2017-11-05,0.05,1,0 +21514623,Bedroom with terrace in the heart of Clinton Hill,16501606,Camille,Brooklyn,Clinton Hill,40.69471,-73.96633,Private room,100,21,15,2019-06-06,0.97,1,89 +21515092,"Sunny, peaceful room in Ridgewood/Bushwick",102599996,Dean,Queens,Ridgewood,40.70707,-73.91455,Private room,40,30,6,2018-05-02,0.29,1,0 +21515431,Chinatown Abode,48053679,Mary,Manhattan,Chinatown,40.7141,-73.99157,Entire home/apt,110,2,34,2019-06-22,1.73,1,15 +21516275,UES Modern Style 1 Bedroom Near 2 Ave Subway Line,156352453,Lyjah,Manhattan,Upper East Side,40.76667,-73.9587,Entire home/apt,200,2,41,2019-06-23,2.06,1,158 +21516411,"Spacious, Cozy & Quiet Chelsea Designer Apartment",6374043,George,Manhattan,Chelsea,40.74379,-73.99918,Entire home/apt,250,2,8,2018-12-02,0.41,1,253 +21516443,Cozy bedroom in Williamsburg apartment home!,112966930,Kayla,Brooklyn,Williamsburg,40.71218,-73.96268,Private room,60,2,2,2017-11-08,0.10,1,0 +21516649,Small Private Room in Big & Cozy apartment,3404840,Jessamine,Brooklyn,Crown Heights,40.6739,-73.9535,Private room,60,2,2,2017-11-07,0.10,1,0 +21517530,GSG Inn - A totally private historic landmark inn,136214003,Gary,Staten Island,St. George,40.64591,-74.08399,Entire home/apt,125,1,108,2019-07-06,5.41,1,319 +21517564,"Cozy Gated Studio Apartment, 25 min to Manhattan",15088853,Nick,Queens,Ditmars Steinway,40.77511,-73.91992,Entire home/apt,85,1,82,2019-07-03,6.03,1,46 +21518777,Williamsburg high ceiling loft,2424168,Tom,Brooklyn,Williamsburg,40.71167,-73.95785,Entire home/apt,140,3,2,2017-11-18,0.10,1,0 +21519958,Walk to City College & Columbia. Cheery/Clean,85370670,Melissa,Manhattan,Harlem,40.8236,-73.9516,Private room,67,1,27,2019-05-29,1.66,1,160 +21520497,Peace of mind,156396144,Vic,Bronx,Morrisania,40.82995,-73.90342,Entire home/apt,50,1,0,,,1,0 +21524324,Manhattan Club - New Years Eve,33910461,Colleen,Manhattan,Midtown,40.76391,-73.98238,Private room,300,3,0,,,1,0 +21524489,Amazing Location! Apartment in South Williamsburg,154239561,Ismael,Brooklyn,Williamsburg,40.71152,-73.95787,Private room,75,2,6,2019-03-24,0.30,2,307 +21524671,Cozy townhouse with an amazing back yard,1196023,Cat,Queens,Ridgewood,40.7088,-73.91387,Entire home/apt,140,3,54,2019-06-25,2.82,1,230 +21524675,Entire floor in Brooklyn Townhouse w/large patio,134516,Eren,Brooklyn,Williamsburg,40.71341,-73.96556,Entire home/apt,165,3,32,2019-06-24,1.63,1,10 +21526187,West Village Bedroom in duplex apartment,118137788,Chris,Manhattan,West Village,40.72986,-74.00465,Private room,100,2,3,2017-11-16,0.15,1,0 +21527378,Williamsburg 1 Bedroom Apartment - 2L,156436372,Sonia,Brooklyn,Williamsburg,40.71549,-73.94973,Entire home/apt,100,30,2,2018-12-09,0.15,4,332 +21527485,G4Newly Renovat Long Island City Room Private Bath,79105834,Leo,Queens,Long Island City,40.7539,-73.93419,Private room,55,1,64,2019-06-15,3.21,9,285 +21527655,1 Bedroom apt in the heart of Williamsburg - 2R,156436372,Sonia,Brooklyn,Williamsburg,40.7163,-73.95087,Entire home/apt,100,30,4,2018-09-08,0.20,4,323 +21528329,"Organic pre-war 1BR Astoria, near MRNW trains",25553833,Chandley,Queens,Astoria,40.75766,-73.92738,Entire home/apt,108,4,11,2018-09-03,0.56,1,0 +21528682,Comfortable Couch in a Great Location! Bushwick.,13917921,Robert,Brooklyn,Bushwick,40.6985,-73.93384,Shared room,42,2,13,2019-04-14,0.65,2,365 +21528920,Room in Big Apartment Available in Flatbush,14700562,Juli,Brooklyn,Flatbush,40.65182,-73.95804,Private room,39,7,0,,,1,0 +21529148,Sunny Private Couples Studio,5887081,Michelle,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95338,Entire home/apt,100,7,2,2019-06-21,1.50,2,189 +21529679,BEST of Bushwick Brooklyn / Subway 1 blk/NYC 15min,5540379,Emily,Brooklyn,Bushwick,40.70393,-73.92377,Entire home/apt,95,2,62,2019-06-30,3.08,1,34 +21530044,Beautiful Renovated Studio in the City!,7114486,Sara,Manhattan,Gramercy,40.73625,-73.98597,Entire home/apt,140,2,20,2019-05-07,0.99,1,29 +21530389,"Charming one-bedroom in Greenpoint, Brooklyn",1880807,Robert,Brooklyn,Greenpoint,40.73279,-73.95426,Entire home/apt,110,6,5,2018-07-15,0.24,1,0 +21530562,Modern Cozy & Clean Private 3 Bedroom Mins to NYC,154088360,Kelly,Queens,Long Island City,40.75331,-73.93907,Entire home/apt,300,4,65,2019-07-01,3.27,2,221 +21531023,Quaint Studio Space,156490310,Niecia,Brooklyn,East New York,40.6697,-73.88407,Entire home/apt,70,1,56,2019-07-01,4.41,1,64 +21531318,露西套房(Lucy Apt.),150835318,Lucy,Queens,Flushing,40.76573,-73.82822,Private room,85,1,12,2019-06-22,0.74,1,171 +21535750,2 bedroom third floor in the heart of Brooklyn.,156535560,Alex,Brooklyn,Flatbush,40.64116,-73.95991,Entire home/apt,55,2,70,2019-06-24,3.64,1,5 +21535963,Midtown Manhattan Oasis (2-Bedroom Vacation Suite),41123114,Jeff & Kelly,Manhattan,Theater District,40.76163,-73.98023,Private room,949,2,7,2019-01-01,0.36,1,8 +21536775,Sunny master suite with huge balcony for BBQ,108157026,Xiyan,Brooklyn,Williamsburg,40.71564,-73.95821,Private room,120,2,0,,,1,0 +21537886,"Spacious, quiet loft close to EVERYTHING! Views!",12678346,Cody,Brooklyn,Greenpoint,40.72552,-73.95108,Shared room,45,7,0,,,1,0 +21538855,Long Island City Living,1825159,Yanna,Queens,Long Island City,40.7574,-73.93011,Entire home/apt,125,3,54,2019-06-30,2.90,1,83 +21539105,"** SoHo: Clean, Bright, Tatami Room",104450469,Janet,Manhattan,SoHo,40.72394,-73.99656,Private room,80,3,2,2018-06-11,0.11,2,0 +21539835,"【South Facing 1b1b Luxury,5th ave&time square】",156571787,Daisy,Manhattan,Midtown,40.74607,-73.98547,Entire home/apt,300,2,1,2017-10-31,0.05,1,0 +21540035,"Cozy Quiet Clean 1BR APT in Hudson Heights, NYC!",110553561,Mitchell,Manhattan,Washington Heights,40.85561,-73.93306,Entire home/apt,99,2,12,2019-06-21,0.61,1,0 +21540062,DaDukes Marvel,139879568,Alberto,Queens,Long Island City,40.7647,-73.93914,Private room,71,1,63,2019-06-22,3.19,6,360 +21540314,Clean & quiet home on quiet block,156585195,Gerard,Brooklyn,Bergen Beach,40.62052,-73.91145,Entire home/apt,95,2,41,2018-08-27,2.04,2,4 +21540496,Stylish 1 BD - 10 min to Manhattan & Central Park,156587568,Anna,Queens,Astoria,40.76129,-73.92009,Entire home/apt,123,1,56,2019-06-14,2.73,1,126 +21540737,Cozy Brooklyn Oasis 2,133004690,Linda,Brooklyn,Bedford-Stuyvesant,40.68709,-73.94147,Entire home/apt,80,2,70,2019-07-04,3.52,2,248 +21541423,Refurbished Private & Pretty Apartment Near City,16514175,Karen,Queens,Jackson Heights,40.74763,-73.88468,Entire home/apt,95,2,46,2019-06-21,2.29,5,168 +21541783,Bright and cozy studio apartment,156600754,Mike,Bronx,Longwood,40.82245,-73.90875,Entire home/apt,110,2,19,2018-12-16,0.97,1,0 +21546050,"Luxury Apt, Balcony, Rooftop - 20min Central Park",3749848,Sem,Queens,Long Island City,40.76654,-73.93508,Entire home/apt,90,6,0,,,1,0 +21546425,"Cozy, quiet one bedroom in the heart of Bedstuy!",37149695,Angelo,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94339,Entire home/apt,100,3,1,2018-01-02,0.05,1,0 +21547318,Great affordable room 2,42421006,Jose,Manhattan,Washington Heights,40.84859,-73.942,Private room,75,1,3,2019-07-01,0.45,2,56 +21547791,Crown Heights Newly Renovated 3 Bedroom Apartment,88001494,Mendy,Brooklyn,Crown Heights,40.66389,-73.93736,Private room,150,2,16,2019-06-11,0.87,3,66 +21548054,Gorgeous East Village Luxury Apt,15508421,Peter,Manhattan,East Village,40.72834,-73.97907,Entire home/apt,400,30,0,,,1,119 +21548325,"Private comfortable bedroom in Bay Ridge, Brooklyn",69054780,Tamara,Brooklyn,Fort Hamilton,40.62245,-74.02958,Private room,55,7,3,2018-04-02,0.15,1,0 +21548449,2 Big bedrooms apartment in Brooklyn,4446647,Alex,Brooklyn,Flatbush,40.6452,-73.95958,Entire home/apt,120,5,1,2017-11-10,0.05,1,0 +21549450,True New Yorker Experience in West Village,156676400,Leila,Manhattan,Greenwich Village,40.73054,-74.0013,Entire home/apt,165,3,14,2019-01-02,0.69,1,0 +21549541,"Spacious, sunny apartment near Prospect Park",1745206,Channing,Brooklyn,Crown Heights,40.66598,-73.95427,Entire home/apt,150,2,10,2019-03-17,0.53,1,0 +21549554,*NEWLY RENOVATED PRIVATE ROOM*,48183551,Carlos,Queens,Elmhurst,40.74403,-73.88167,Private room,58,6,50,2019-07-07,2.56,5,257 +21549636,AMAZING PRE-WAR 2 BR APT IN WILLIAMSBURG,605589,Patricio,Brooklyn,Williamsburg,40.71547,-73.94346,Entire home/apt,150,10,1,2019-05-29,0.73,1,160 +21549850,Cozy apt in Park Slope (room and private bathroom),49496312,Bea And Eloise,Brooklyn,Park Slope,40.66993,-73.98137,Private room,60,3,22,2019-04-21,1.09,1,6 +21549879,Luxury Williamsburg Loft. Two blocks from Subway!,4939914,Adam,Brooklyn,Williamsburg,40.71807,-73.9545,Entire home/apt,250,30,3,2018-06-02,0.15,1,0 +21549898,"UWS Jewel, oval living room in a charming hometown",6420489,Lorena,Manhattan,Upper West Side,40.77845,-73.98198,Entire home/apt,315,4,16,2019-05-31,0.84,1,7 +21550105,Cozy & Tidy Private Room at Upper West Manhattan,29021587,Oscar,Manhattan,Morningside Heights,40.80967,-73.95781,Private room,75,3,0,,,1,0 +21550242,ENTIRE Apt in Williamsburg < 1 block to L train,1913749,Kelly,Brooklyn,Williamsburg,40.71259,-73.94189,Entire home/apt,125,4,11,2019-06-24,0.55,1,11 +21550302,JFK Comfort.5 Mins from JFK Private Bedroom & Bath,156684502,Nalicia,Queens,Springfield Gardens,40.6611,-73.7683,Private room,80,1,403,2019-07-06,19.75,3,26 +21550437,Charming Prvt Rm Students/Travelers 8 min to SIUH,104812805,Amarjit S,Staten Island,Arrochar,40.59746,-74.08406,Private room,32,4,26,2019-05-19,1.33,8,315 +21550717,Cute studio in Ditmas Park,7229833,Melody,Brooklyn,Kensington,40.63178,-73.97128,Entire home/apt,32,1,0,,,1,0 +21550720,"Sunny, Peaceful Room in Southern Harlem",91747804,Gigi,Manhattan,Harlem,40.80169,-73.95154,Private room,80,3,33,2019-06-10,1.64,1,39 +21550808,Stylish and Spacious with Convenient location,45466335,Boris,Manhattan,Harlem,40.82148,-73.9366,Private room,69,1,67,2019-06-14,3.47,2,28 +21550933,Large 1 Bedroom Apt - Amazing Location SoHo/Nolita,70844761,Cynthia,Manhattan,Nolita,40.7237,-73.99454,Entire home/apt,200,5,7,2018-12-30,0.36,1,1 +21551617,Summer Savings! Central Park 1BR/1Bath/UWS,156699963,Jennifer,Manhattan,Upper West Side,40.77538,-73.97743,Entire home/apt,350,1,11,2019-05-22,0.54,1,80 +21551787,Alluring Private Bedroom in Spacious UWS Apt,48087870,Trevor,Manhattan,Upper West Side,40.79741,-73.9697,Private room,150,2,27,2019-06-09,1.33,1,63 +21551817,Cozy bedroom in Crown Heights Duplex,83585937,J.,Brooklyn,Crown Heights,40.6717,-73.91745,Private room,50,2,35,2019-06-28,1.80,2,174 +21558111,"Clean, cozy and bright room 4 mins from subway!",13400096,Ron,Brooklyn,Crown Heights,40.6777,-73.94251,Private room,48,45,3,2018-08-04,0.15,3,0 +21558144,Private room in a cozy apartment,23425862,Gagandeep,Brooklyn,Bedford-Stuyvesant,40.69169,-73.95893,Private room,49,1,0,,,2,0 +21558456,"Midtown-Luxury-Safe! +Nearby UN, NYU & Bellevue.",156758470,Sibel,Manhattan,Murray Hill,40.74567,-73.97578,Shared room,150,3,17,2019-05-22,1.17,1,14 +21559273,Large 1 Bedroom Apt in Times Square sleeps 4ppl,132619769,Karlos,Manhattan,Hell's Kitchen,40.75744,-73.99438,Entire home/apt,230,2,21,2019-06-22,1.09,1,120 +21559636,QUEEN ROOM IN 1500 SQ FT WBURG BALLROOM APT,2212344,Enrique,Brooklyn,Williamsburg,40.712,-73.95766,Private room,90,4,11,2019-01-01,0.55,3,117 +21560584,Haute Brand New East Village Manhattan Apartment,3949502,Páidi,Manhattan,East Village,40.72728,-73.98865,Private room,75,14,13,2018-08-07,0.65,1,27 +21561860,"Modern, clean, NEW apt 1 block from train!",143696286,Peter Alex,Brooklyn,Cypress Hills,40.67929,-73.8847,Private room,89,1,23,2019-05-16,1.14,1,74 +21561964,Bright and cozy 2bs 2bths near JFK and the city,15145474,Denisse,Queens,Ozone Park,40.68146,-73.84726,Entire home/apt,150,4,38,2019-06-19,2.66,4,51 +21562024,Excellent Find in Fort Greene,14163033,Lucas,Brooklyn,Fort Greene,40.68814,-73.97108,Entire home/apt,200,2,0,,,1,0 +21562307,Cozy private room in Astoria,155818580,Harymir,Queens,Ditmars Steinway,40.77219,-73.90269,Private room,65,2,71,2019-07-05,3.46,1,60 +21562330,Franklin Ave Stay,5754627,Keren,Brooklyn,Crown Heights,40.67254,-73.95541,Private room,94,1,9,2018-11-01,0.46,1,0 +21562548,Modern Bedstuy brownstone 2 bedroom apartment,6441887,Su,Brooklyn,Bedford-Stuyvesant,40.6906,-73.93398,Entire home/apt,95,7,1,2017-12-31,0.05,2,0 +21563750,Sunny Yellow BUSHWICK apt 25min to city SLEEPS 6 !,3532263,Alejandro,Brooklyn,Bushwick,40.69723,-73.92244,Entire home/apt,159,2,44,2019-06-24,2.15,4,352 +21563815,Architect's duplex Apt in Historic Brooklyn,2179149,Olivier,Brooklyn,Bedford-Stuyvesant,40.681,-73.92894,Entire home/apt,150,4,3,2018-10-23,0.16,1,0 +21564252,Cozy Red BUSHWICK Apt 25 min to city SLEEPS 6 !!,3532263,Alejandro,Brooklyn,Bushwick,40.69809,-73.92244,Entire home/apt,159,2,51,2019-06-19,2.49,4,357 +21564493,Cozy Washington Heights Home,143405573,Ryan,Manhattan,Washington Heights,40.83294,-73.94218,Private room,80,2,1,2017-11-19,0.05,1,0 +21564547,Gorgeous Apartment in Nolita for 4 Guests!!!,10457196,Richard,Manhattan,Little Italy,40.71932,-73.99522,Entire home/apt,190,31,1,2018-04-12,0.07,11,61 +21564596,"Large,Bright & fully Furnished room in a 3 bdm Apt",3053519,Ivo,Manhattan,East Harlem,40.79697,-73.93757,Private room,70,4,0,,,1,0 +21564599,"Best in Brooklyn, closest to Manhattan!!",39362787,Mia,Brooklyn,Cobble Hill,40.68631,-73.99763,Private room,59,7,33,2018-10-07,1.67,1,0 +21564694,Gorgeous Loft in Nolita with Elevator and Balcony!,10457196,Richard,Manhattan,Little Italy,40.7192,-73.9965,Entire home/apt,190,30,4,2018-11-21,0.22,11,328 +21564733,Private 2 Bdrm in Heart of BedStuy (HUGE BACKYARD),73856823,Sarah,Brooklyn,Bedford-Stuyvesant,40.69258,-73.94063,Entire home/apt,200,3,4,2019-05-01,0.34,1,0 +21565383,"Private bedroom 10 min to LGA, 15 min to Manhattan",153410151,Tom,Queens,Astoria,40.7674,-73.92656,Private room,69,1,129,2019-07-07,6.29,1,349 +21565540,1 Bedroom in Williamsburg,30284592,Lewis,Brooklyn,Williamsburg,40.71078,-73.94666,Private room,70,1,1,2017-11-08,0.05,1,0 +21565682,Charming 1 Bedroom in the heart of New York City,42133913,Thomas,Manhattan,Greenwich Village,40.72856,-74.00097,Entire home/apt,170,3,8,2018-03-25,0.41,1,0 +21566103,"Really Spectacular 1 Bedroom, Great Design",61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76132,-73.99298,Entire home/apt,133,30,2,2018-12-20,0.11,91,4 +21566311,Cozy & Spacious Room in E. Williamsburg.(with AC),85431106,Tian,Brooklyn,Williamsburg,40.70883,-73.94242,Private room,60,1,21,2018-07-20,1.46,1,0 +21566845,Seasonal Exposed Brick Private Bedroom !!!,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9387,Private room,50,2,15,2019-07-04,0.75,5,4 +21566887,"Great location,near nyc airports,subway &airtrain",6271042,Islandgetawayz,Queens,Richmond Hill,40.69659,-73.81435,Entire home/apt,90,2,54,2019-07-07,2.69,1,283 +21566909,2 bedroom floor-thru in heart of Park Slope -,4058709,Elise And Dave,Brooklyn,Park Slope,40.67497,-73.97913,Entire home/apt,235,5,41,2019-06-27,2.22,2,219 +21567303,Large apartment in a doorman building on the UES,1772076,Salman,Manhattan,Upper East Side,40.77316,-73.96237,Shared room,59,1,7,2018-09-23,0.34,1,0 +21568069,Spacious & Bright Brooklyn Apartment,46723798,Brooke,Brooklyn,Greenpoint,40.7255,-73.94428,Entire home/apt,100,2,13,2019-06-10,0.66,1,1 +21568187,Large Skylight Private Room,131476075,Lakisha,Brooklyn,Bushwick,40.68741,-73.91138,Private room,51,1,19,2019-06-02,0.94,8,175 +21568341,"Charming, cozy, clean, affordable & spacious room",156843123,IndraRisma,Queens,Flushing,40.73858,-73.80809,Private room,65,2,4,2018-10-07,0.28,1,364 +21568479,Williamsburg house - Master Bedroom,536745,Johnny,Brooklyn,Williamsburg,40.71846,-73.94489,Private room,95,3,6,2018-04-22,0.30,3,0 +21568652,Habitacion Privada,152089883,Patricia,Queens,Ozone Park,40.68918,-73.84262,Private room,50,7,1,2018-01-02,0.05,1,363 +21568943,Shareroom in Midtown Manhattan 1or2 beds Available,156246842,Sandra,Manhattan,Hell's Kitchen,40.7614,-73.98682,Shared room,68,3,9,2018-08-01,0.45,3,0 +21569763,Cheery Bedroom in Brooklyn Apartment,3075854,Alexa,Brooklyn,Sunset Park,40.64046,-74.01337,Private room,35,3,3,2018-09-07,0.16,1,0 +21570741,A peaceful place in the heart of Inwood,67974923,Starling,Manhattan,Inwood,40.86406,-73.91971,Entire home/apt,110,4,15,2019-03-11,0.77,1,19 +21577066,"Bright, Spacious Private Room in Williamsburg!",8628781,Tessa,Brooklyn,Williamsburg,40.71075,-73.95935,Private room,70,1,1,2018-04-20,0.07,1,0 +21577526,Beautiful and spacious room next to Subway station,84491220,Maka,Brooklyn,Flatbush,40.65021,-73.96293,Private room,65,2,13,2019-04-29,0.66,1,310 +21577679,"Fabulous, Spacious Studio by CP. An Artful Retreat",32230738,Allison,Manhattan,Upper West Side,40.78737,-73.97293,Entire home/apt,145,3,75,2019-06-25,3.73,1,110 +21577773,Private Room on Ground Floor close to Everything,154965091,Joe,Manhattan,Hell's Kitchen,40.76914,-73.98757,Private room,125,2,61,2019-05-17,3.02,4,95 +21577856,Charming Park Slope Brownstone,141933,Heather,Brooklyn,Park Slope,40.67023,-73.98311,Entire home/apt,250,1,48,2019-07-01,2.38,1,2 +21578157,Quaint and Large midtown 1Bed next to Empire state,156921633,Jamie,Manhattan,Kips Bay,40.74128,-73.98069,Entire home/apt,275,2,93,2019-06-18,4.61,1,66 +21578513,Cozy Bedroom,88780960,Tajah,Brooklyn,Bedford-Stuyvesant,40.6777,-73.92176,Private room,31,7,1,2017-12-12,0.05,1,0 +21578592,Quiet Private First Floor Room with Self Check in,154965091,Joe,Manhattan,Hell's Kitchen,40.76945,-73.98798,Private room,125,2,48,2019-06-22,2.36,4,74 +21579960,"Comfy, spacious room- Astoria.",9956828,Nick,Queens,Astoria,40.76168,-73.91976,Private room,55,3,2,2017-12-16,0.10,1,0 +21580765,Cozy room for travelers,156592177,Michael,Brooklyn,Bedford-Stuyvesant,40.68315,-73.91283,Private room,32,1,0,,,1,0 +21581375,"Peaceful space, 5 minutes from Barclays Center!",45874239,Emily,Brooklyn,Park Slope,40.68081,-73.97865,Private room,65,1,0,,,1,0 +21581457,"Bright, large room with own 1/2 bath in great area",1406432,Mary,Brooklyn,Prospect Heights,40.67502,-73.96447,Private room,75,3,38,2019-07-01,1.88,2,66 +21581545,"STEPS TO LGA, Near CITIFIELD, JFK MANHATTAN(RM 3)",156948703,Asad,Queens,East Elmhurst,40.76876,-73.87245,Private room,65,1,191,2019-06-21,9.41,6,336 +21581879,Cozy Apartment in Brooklyn,152532170,Gillian,Brooklyn,Canarsie,40.64105,-73.91369,Entire home/apt,84,2,91,2019-06-26,4.51,1,224 +21582010,Beautiful room in spacious apartment in Manhattan,17947250,Conor,Manhattan,East Harlem,40.78704,-73.94209,Private room,90,1,20,2019-04-27,1.00,2,0 +21582170,Spacious Apartment in Park Slope with Garden,36293942,Efren,Brooklyn,South Slope,40.66394,-73.98298,Entire home/apt,150,2,2,2018-01-02,0.10,1,0 +21583199,Charming Apartment by Central Park & Museum Mile.,37750296,Gene,Manhattan,East Harlem,40.79474,-73.94932,Entire home/apt,185,1,81,2019-06-22,3.98,1,65 +21583472,Quiet Room in Brooklyn Apt - Animal Friendly!,1414616,Carole,Brooklyn,Bedford-Stuyvesant,40.68594,-73.94967,Private room,47,5,10,2018-04-27,0.49,1,0 +21584047,Central Park and Museum mile Private room 105th 2.,42783238,Thomas,Manhattan,East Harlem,40.79281,-73.95192,Private room,85,1,92,2018-10-19,4.52,2,0 +21586883,Cute Astoria bedroom - close to midtown Manhattan,156994927,Billy,Queens,Astoria,40.76219,-73.9237,Private room,60,1,2,2018-04-06,0.12,1,0 +21587326,2 bed 1 Bath Washer Dryer huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77736,-73.95156,Entire home/apt,200,31,2,2019-02-22,0.29,33,325 +21587838,Full Service Pool 1 bed Huge Terrace washer dryer,113805886,Yaacov,Manhattan,Upper East Side,40.77768,-73.94998,Entire home/apt,160,31,2,2018-12-28,0.19,33,324 +21588023,Seasonal Beautiful Exposed Brick Brownstone,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68471,-73.93885,Private room,50,2,12,2019-06-21,0.61,5,10 +21588805,Sun Drenched Williamsburg 1 BR | Prime Location,37880566,Eliza,Brooklyn,Williamsburg,40.71209,-73.9634,Entire home/apt,107,4,17,2019-03-11,0.85,1,9 +21589646,Amazing Room in East Village Apartment!,104775467,Micaela,Manhattan,East Village,40.72549,-73.99198,Shared room,120,2,0,,,1,0 +21589780,Beautiful Brooklyn 1 bedroom apartment,114811999,Cemi,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95195,Entire home/apt,150,2,21,2019-06-15,1.38,1,48 +21589992,Bushwick Oasis,3309100,Merrily,Brooklyn,Williamsburg,40.70443,-73.93039,Private room,65,2,71,2019-06-26,3.65,1,249 +21590125,"Large & cozy room for holidays/New year in BK,NYC",80227295,Emilia,Brooklyn,Gowanus,40.6723,-73.99214,Private room,40,7,1,2018-01-09,0.05,1,0 +21591672,HUGE bedroom available in artsy Bushwick,54966810,Garland,Brooklyn,Bushwick,40.70361,-73.9255,Private room,52,1,2,2017-11-15,0.10,1,0 +21591942,Spacious & Stylish 3BR Condo Steps to the Subway!,102758330,Leslie,Brooklyn,Williamsburg,40.71432,-73.9497,Entire home/apt,358,3,57,2019-06-23,2.89,1,182 +21592051,Sunny Penthouse by Waterfront Park and Subway!!,69205338,Maya,Brooklyn,Williamsburg,40.71829,-73.95926,Entire home/apt,219,2,64,2019-06-24,3.48,1,257 +21592157,"Your private home in Manhattan, Upper Eastside.",157038767,Jonathan,Manhattan,East Harlem,40.78988,-73.94956,Private room,130,4,31,2019-06-21,1.63,1,8 +21592198,Entire NYC Apt Open Bight Clean Spacious,24052348,Tara,Manhattan,East Village,40.72052,-73.97806,Entire home/apt,157,30,0,,,4,0 +21592497,Sunlit room in Financial District luxury apartment,52976247,Costanza,Manhattan,Financial District,40.70812,-74.00447,Private room,100,11,0,,,1,0 +21592694,"Private Peaceful room in Flushing/Auburndale, NY",157040162,Adriana,Queens,Flushing,40.75456,-73.80417,Private room,48,1,37,2019-06-30,2.19,1,39 +21593310,"STEPS TO LGA, near CITIFIELD, JFK MANHATTAN(RM #2)",156948703,Asad,Queens,East Elmhurst,40.77046,-73.87336,Private room,60,1,257,2019-07-06,12.54,6,351 +21593919,Renovated 1 Bedroom Apartment in Williamsburg - 3R,156436372,Sonia,Brooklyn,Williamsburg,40.7151,-73.95129,Entire home/apt,100,30,6,2018-12-28,0.31,4,233 +21594091,Cozy and Colorful Room next the Dekalb L Stop,157056254,Rae,Brooklyn,Bushwick,40.70312,-73.91933,Private room,45,7,0,,,1,0 +21594210,It's a Beautiful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67794,-73.90639,Private room,48,1,114,2019-07-02,5.65,5,235 +21595314,Chic Midtown Apt w/ Empire State Building Views,121943616,Amani,Manhattan,Murray Hill,40.74791,-73.97939,Entire home/apt,375,3,0,,,1,0 +21595950,Private Room Loft w/Outdoor Patio in Williamsburg,40991179,Justin,Brooklyn,Williamsburg,40.72174,-73.95807,Private room,125,3,1,2017-11-26,0.05,2,2 +21596013,Quaint & Quiet UWS,65824474,Eri,Manhattan,Upper West Side,40.79307,-73.97449,Entire home/apt,118,1,2,2017-11-08,0.10,1,0 +21596214,Broadway Studio,7138636,Page,Manhattan,Upper West Side,40.78544,-73.97869,Entire home/apt,116,3,15,2019-05-13,0.77,1,0 +21596520,In Historic Harlem near the Hudson River!,45835291,Shareef,Manhattan,Harlem,40.82397,-73.95453,Private room,55,11,124,2019-07-02,6.10,6,95 +21596559,佳源家庭旅馆,157067019,Ada,Queens,Flushing,40.76498,-73.82904,Private room,55,1,34,2019-07-07,1.73,3,78 +21596854,佳源家庭旅馆套房,157067019,Ada,Queens,Flushing,40.76519,-73.82979,Private room,85,1,5,2019-06-03,0.27,3,85 +21597223,ASTORIA Beautiful Room in Fully Renovated Apt,157087092,Leslie,Queens,Ditmars Steinway,40.7762,-73.90623,Private room,47,1,0,,,1,0 +21597684,Room on st marks place (women only),2326551,Laura,Manhattan,East Village,40.72625,-73.98404,Private room,80,1,10,2019-05-07,0.52,2,97 +21598186,2 Bedroom Private Space Near Subway,130797315,Aidana,Queens,Richmond Hill,40.70269,-73.82653,Entire home/apt,40,2,30,2019-06-24,1.47,1,44 +21601631,Gorgeous 1 bedroom with deck in Williamsburg,16674870,Farrel,Brooklyn,Williamsburg,40.70632,-73.94978,Entire home/apt,102,3,0,,,1,0 +21602731,Spacious 1 bedroom Apartment w/ 2 beds,138154835,Kay,Bronx,Edenwald,40.89215,-73.83351,Entire home/apt,75,3,50,2019-06-17,3.02,1,148 +21603901,Cozy Private Room with Terrace in Williamsburg,46363732,Bérénice,Brooklyn,Williamsburg,40.71372,-73.95149,Private room,69,2,5,2018-03-18,0.25,1,0 +21604003,AMAZING ROOM IN MANHATTAN,4854680,Alexsandro,Manhattan,Harlem,40.82841,-73.9473,Private room,59,1,0,,,1,0 +21604766,Marriott Vacation Club Pulse King hotel,109904033,Colleen,Manhattan,Midtown,40.75219,-73.9838,Private room,489,2,0,,,1,311 +21604823,Cute and Comfortable Bedroom in Gowanus,4726371,Samantha,Brooklyn,Gowanus,40.67889,-73.987,Private room,70,1,59,2019-07-01,3.01,2,29 +21605495,East Village - little hideaway in epic apartment!,20417436,Gil,Manhattan,East Village,40.72552,-73.98165,Private room,90,4,0,,,1,0 +21605900,Only 25 min to Times Square,6690551,Victor,Manhattan,Washington Heights,40.8556,-73.93245,Private room,35,4,67,2019-07-03,3.61,1,2 +21607402,Spacious Master Bedroom Exposed Brick in Harlem,22296461,Brandi,Manhattan,Harlem,40.81866,-73.93796,Private room,50,1,8,2017-12-31,0.40,1,0 +21607796,"Spacious, sun soaked 1-br in Prospect Heights!",15616046,Zoe,Brooklyn,Prospect Heights,40.67807,-73.96446,Entire home/apt,100,5,1,2018-01-03,0.05,1,0 +21607905,Lenox Suit Hotel Themed Studio,81908583,Kasey,Manhattan,Harlem,40.81865,-73.93684,Entire home/apt,80,1,89,2019-06-21,4.44,1,47 +21608234,Brooklyn apartment w/ exposed brick,2685965,Jim,Brooklyn,Crown Heights,40.67452,-73.9554,Private room,120,1,0,,,1,0 +21608855,The Cozy Bushwick Modern (Room B),142625186,J.R.,Brooklyn,Bushwick,40.69104,-73.91685,Private room,75,1,44,2019-06-19,2.16,2,0 +21609205,It's Always Sunny in Bed-Stuy!,19536596,Andrew,Brooklyn,Bedford-Stuyvesant,40.67653,-73.90814,Private room,48,1,106,2019-07-01,5.26,5,243 +21609424,"Cozy private room Astoria 10min to LGA, Manhattan",153836844,Tony,Queens,Astoria,40.76818,-73.9278,Private room,40,1,134,2019-07-07,6.64,1,343 +21609701,*Beautiful 2BR*Flatiron*Best Location*Near Subway*,26529889,Muni,Manhattan,Midtown,40.74172,-73.98343,Entire home/apt,379,4,63,2019-05-25,3.17,1,238 +21609824,Room in house with WIFI and Netflix,119848398,Devi,Bronx,Parkchester,40.83079,-73.8815,Private room,50,2,10,2019-01-15,0.79,2,283 +21610489,Spacious 1BD on west 48th street and 5th Ave,6840321,Shu-Fen,Manhattan,Midtown,40.7582,-73.97843,Entire home/apt,210,29,0,,,1,340 +21610552,Private bedroom W/ ENSUITE bathroom,48418910,Lydia,Brooklyn,Bushwick,40.70316,-73.91304,Private room,120,2,0,,,2,0 +21610946,Cozy Light-Filled Prospect Heights Apartment,39255079,Amy,Brooklyn,Prospect Heights,40.67411,-73.96532,Private room,62,1,55,2019-07-01,2.76,1,63 +21612043,Spacious Bedroom + Office in Bed-Stuy Brownstone,34773529,Tirzah,Brooklyn,Bedford-Stuyvesant,40.68207,-73.92208,Private room,45,5,0,,,1,0 +21612193,"Private Room in 19th Century Townhome, Mott Haven",67396790,Shannon,Bronx,Mott Haven,40.8118,-73.92263,Private room,54,1,9,2018-01-28,0.46,1,0 +21612477,HOME SWEET HOME,157218948,Patricia,Queens,Ozone Park,40.6776,-73.84717,Private room,75,3,1,2019-02-11,0.20,1,83 +21616841,Spacious 1.5 Bed Duplex With Private Backyard,118130596,Stephen,Brooklyn,Crown Heights,40.67593,-73.95366,Entire home/apt,66,2,18,2019-07-03,0.90,1,44 +21618022,Bedroom in charming apartment in Bushwick,129627879,Megan,Brooklyn,Bushwick,40.70253,-73.92362,Private room,44,2,1,2017-11-25,0.05,1,0 +21618858,Bushwick Private entrance Duplex apt skyline view,2023993,Kelly,Brooklyn,Bushwick,40.70239,-73.92931,Private room,65,1,35,2019-07-06,1.80,1,52 +21618966,Beautiful & large room in Clinton Hill /Ft Greene,28478382,Andres,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95983,Private room,70,3,12,2018-09-29,0.61,1,189 +21619277,Large Alcove Studio in Prime Noho Building,869758,Rodrigo,Manhattan,NoHo,40.72632,-73.9928,Entire home/apt,249,10,0,,,1,0 +21619569,Modern 3BR/2Bath Home 10 mins From JFK,157275347,Sydney,Queens,Jamaica,40.68054,-73.76712,Entire home/apt,128,1,141,2019-06-30,7.24,1,164 +21619743,Cute one-bedroom apartment with exposed brick,9450412,Taelyr,Brooklyn,Crown Heights,40.67133,-73.94526,Entire home/apt,128,2,8,2018-10-21,0.40,1,0 +21620322,A large private pink room in Brooklyn,5120169,Jason,Brooklyn,Bedford-Stuyvesant,40.68344,-73.95329,Private room,50,2,2,2017-11-12,0.10,2,0 +21620762,1 Bedroom apartment,157284647,Edgar,Manhattan,East Harlem,40.78743,-73.95179,Entire home/apt,150,4,92,2019-07-02,4.62,1,0 +21620789,Bedroom (double bed) in a 5BR Apartment,129201757,Lea,Brooklyn,Williamsburg,40.71387,-73.94378,Private room,75,3,1,2017-12-11,0.05,1,0 +21621154,Private Room In Bushwick Late December - January,4669488,James,Brooklyn,Bushwick,40.70113,-73.92205,Private room,60,3,1,2018-01-06,0.05,2,0 +21621231,Private room in lively East Village rooftop duplex,35703699,Christian,Manhattan,East Village,40.72179,-73.97904,Private room,80,2,1,2017-11-11,0.05,1,0 +21621926,Cozy in NYC. 10 mins to LGA /15 to Manhattan,157295347,Ana,Queens,Woodside,40.74485,-73.9054,Private room,40,1,22,2019-03-15,1.12,3,332 +21622153,2 BR/1 Ba Apartment Hamilton Heights,157296660,Jake,Manhattan,Harlem,40.82604,-73.94998,Private room,60,15,18,2018-06-20,0.89,1,0 +21622558,"Spacious, 1 bedroom apartment, beautiful views",6022622,Chantal,Queens,Sunnyside,40.7479,-73.91742,Entire home/apt,125,2,2,2018-01-01,0.11,1,0 +21622909,Cozy Gramercy Park 1 bedroom,444603,Kah,Manhattan,Kips Bay,40.73801,-73.98099,Private room,75,3,2,2018-01-03,0.10,1,0 +21623610,Small Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.63333,-74.08389,Private room,30,3,13,2019-06-08,0.70,3,176 +21624428,Quiet Upper West Side Brownstone Oasis,89013063,Gabriella,Manhattan,Upper West Side,40.78901,-73.98057,Entire home/apt,199,5,12,2019-06-30,1.35,1,12 +21624567,Cosy warm room in Bay ridge apartment,70915198,Mariya,Brooklyn,Bay Ridge,40.63435,-74.02939,Private room,100,1,3,2019-06-30,0.21,1,179 +21624775,Downtown Loft with Private Roof Deck,2670192,Jordan,Manhattan,East Village,40.72736,-73.98907,Entire home/apt,385,4,1,2018-01-03,0.05,1,89 +21624828,"Hip, Cozy Room in Inwood",38098992,Julia,Manhattan,Inwood,40.86471,-73.92422,Private room,47,2,3,2018-07-18,0.23,2,0 +21625317,Your Private Sunny Studio Apt in Crown Heights,24035151,Daeun,Brooklyn,Crown Heights,40.67577,-73.95751,Entire home/apt,70,3,3,2017-11-13,0.15,1,0 +21625502,Bed-Stuy Apt for Groups,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69374,-73.95641,Entire home/apt,265,4,22,2019-06-12,1.49,34,309 +21627791,Bright & Inspiring Experience,122374980,Matt,Manhattan,Upper West Side,40.78481,-73.97648,Shared room,60,1,73,2019-05-24,3.65,4,88 +21627794,Amazing male room next to the river for longtermII,39528519,Max,Manhattan,Lower East Side,40.71136,-73.98808,Shared room,33,100,0,,,28,308 +21627938,Unbelievable male room Manhattan for lngterm! III,39528519,Max,Manhattan,Lower East Side,40.71021,-73.98863,Shared room,29,100,0,,,28,341 +21628066,Cozy & Inspiring Experience,122374980,Matt,Manhattan,Upper West Side,40.78617,-73.97663,Shared room,60,1,67,2019-06-23,3.31,4,81 +21628183,Cozy Manhattan male room for a long term IV,39528519,Max,Manhattan,Lower East Side,40.71165,-73.98708,Shared room,33,100,2,2019-01-03,0.11,28,201 +21628640,"Sunny, Spacious Pad In Unbeatable Wburg Location",259240,Andrea,Brooklyn,Williamsburg,40.71675,-73.95614,Entire home/apt,219,3,2,2018-01-01,0.11,1,0 +21629318,Studio Suite in Shared Space,5132258,Jessica,Manhattan,Harlem,40.82587,-73.95102,Private room,80,2,33,2019-05-30,1.74,2,65 +21629751,Sun-filled Boho Apartment in the Heart of Astoria,56184689,Emily,Queens,Astoria,40.76549,-73.91735,Entire home/apt,150,3,3,2018-10-23,0.16,2,0 +21630186,Charming Bedroom in Downtown Manhattan,12838834,Tania,Manhattan,Lower East Side,40.72112,-73.98493,Private room,80,5,5,2018-01-12,0.26,2,0 +21630372,Beautiful and confortable room,109146538,Marisol,Queens,Jackson Heights,40.75184,-73.88722,Private room,60,1,46,2019-07-01,2.29,1,30 +21631186,Brooklyn Vibe,93392260,Kathleen,Brooklyn,East New York,40.67271,-73.89071,Private room,55,30,0,,,2,364 +21631407,Heart of Bedstuy,35083858,Garren,Brooklyn,Bedford-Stuyvesant,40.69283,-73.94573,Entire home/apt,100,1,0,,,1,0 +21631581,Bright 1BR Apartment in the Heart of Williamsburg,6336630,Justin,Brooklyn,Williamsburg,40.71346,-73.95733,Entire home/apt,125,2,3,2019-06-03,0.16,1,0 +21631882,Home away from home in Bushwick!,11975404,Art,Brooklyn,Bushwick,40.70085,-73.91929,Private room,72,3,1,2017-12-31,0.05,2,0 +21632527,Brooklyn NYC,157401742,John,Brooklyn,Bedford-Stuyvesant,40.69059,-73.92837,Private room,64,2,30,2019-06-27,1.62,1,94 +21632690,3BR Townhouse w BBQ - near Subway & Prospect Park,2107234,Jon & Tina,Brooklyn,Windsor Terrace,40.65503,-73.97774,Entire home/apt,149,2,17,2019-05-27,0.86,1,1 +21632846,"Large, beautiful and elegant, clean studio舒适洁净的保证",104401765,Linda,Queens,Flushing,40.76014,-73.82263,Entire home/apt,99,2,42,2019-06-30,2.56,1,5 +21633212,NYC Garden Escape (2 min to subway),155938307,John,Manhattan,Harlem,40.81264,-73.94602,Entire home/apt,225,2,55,2019-06-16,3.50,1,133 +21633295,The Pop! Art Penthouse: safe/quiet/family-friendly,155403600,Matt Ryan,Manhattan,Harlem,40.81296,-73.94625,Entire home/apt,265,2,76,2019-06-28,4.07,1,147 +21633327,Times Square 2BD 1st Floor,70412965,Sam S.,Manhattan,Hell's Kitchen,40.76371,-73.99346,Entire home/apt,200,2,9,2019-06-13,2.70,1,140 +21633395,"Big & quiet studio home, UWS, 2 min. from subway",7247765,Al,Manhattan,Morningside Heights,40.80431,-73.96615,Entire home/apt,80,12,1,2017-11-12,0.05,1,0 +21633621,Charming Harlem studio,1679545,Ishai,Manhattan,Harlem,40.81272,-73.9517,Entire home/apt,111,7,5,2018-12-30,0.28,1,8 +21633631,Cozy studio at heart of Williamsburg,21099366,Lauren,Brooklyn,Williamsburg,40.71223,-73.96025,Entire home/apt,150,4,5,2019-01-02,0.25,1,0 +21634030,Private Cozy Room in Uptown Manhattan,12062317,Keisy,Manhattan,Washington Heights,40.84063,-73.93928,Private room,55,1,108,2019-05-25,5.34,1,13 +21634282,Charming private room 10 min from Manhattan,49735439,Merida,Brooklyn,Bushwick,40.6963,-73.90874,Private room,85,3,2,2017-12-24,0.10,2,0 +21634979,Lower East Side Entire Floor Big Bright & Spacious,32203986,Kym,Manhattan,Lower East Side,40.71389,-73.98239,Entire home/apt,400,3,8,2019-06-09,1.10,1,91 +21635015,Sunny Park View Bedroom in Bushwick,157406894,Patrick,Brooklyn,Bushwick,40.70426,-73.92551,Private room,60,8,7,2018-11-28,0.36,1,8 +21635125,Newly Renovated One Bedroom Apartment,93487618,David,Brooklyn,Dyker Heights,40.62547,-74.00647,Entire home/apt,90,1,50,2019-05-12,2.48,2,287 +21635240,Private Sunny Bedroom Close to Prospect Park,148018227,Mike,Brooklyn,Flatbush,40.65059,-73.9637,Private room,70,3,0,,,1,0 +21635399,Spacious 1BR w/ backyard in central Williamsburg,32528909,Jake,Brooklyn,Williamsburg,40.71935,-73.96049,Entire home/apt,220,2,14,2019-06-30,0.76,1,0 +21635457,"Entire 2 Bdrm Duplex Bushwick Brooklyn, Sleeps 6",157430725,Fiona,Brooklyn,Bushwick,40.6994,-73.93367,Entire home/apt,120,1,94,2019-07-03,5.03,3,240 +21635623,Private & Quiet One Bedroom On The Upper East Side,14538085,Ian,Manhattan,Upper East Side,40.78312,-73.95344,Private room,64,2,7,2017-12-28,0.35,1,0 +21636155,Large bright room off Dekalb L with big garden,13077909,James,Brooklyn,Bushwick,40.70358,-73.91515,Private room,40,3,1,2017-11-24,0.05,1,0 +21636897,Hazel’s Place,157446306,Efe,Brooklyn,Canarsie,40.62834,-73.90506,Private room,70,2,37,2019-07-08,2.19,1,67 +21638538,Spacious Private bedroom & private bathroom,130201799,Karma,Manhattan,SoHo,40.7244,-73.99884,Private room,169,3,31,2019-06-30,1.54,1,69 +21640455,Spacious bedroom away from home,157481445,Jeanette,Manhattan,Washington Heights,40.83878,-73.94731,Private room,75,2,78,2019-06-30,3.90,1,230 +21642393,Lovely two bedroom apartment in Manhattan NYC,151454628,Danilo,Manhattan,Washington Heights,40.84482,-73.94029,Entire home/apt,139,2,85,2019-06-21,4.21,1,125 +21642874,Luxe NYC apt w/ balcony + stunning skyline views,8716709,Stacey,Brooklyn,Williamsburg,40.711,-73.95701,Entire home/apt,300,2,0,,,1,0 +21642995,Lofted Bed in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72483,-73.9437,Shared room,38,1,32,2019-06-16,1.60,5,346 +21643210,Cozy Serenity Room in Gowanus (Park Slope),82874717,Paola,Brooklyn,Gowanus,40.66705,-73.9927,Private room,40,5,0,,,1,0 +21643550,*TRANQUILITY Private Room. let the birds sing !*,48183551,Carlos,Queens,Elmhurst,40.74425,-73.88311,Private room,58,6,38,2019-06-18,1.96,5,288 +21643702,Cozy Williamsburg/Bushwick Haven,4201991,Anna,Brooklyn,Williamsburg,40.7074,-73.941,Private room,43,1,36,2019-06-16,1.97,1,0 +21643957,Bright and cosy apartment with private room,3357991,Wesley,Brooklyn,Bedford-Stuyvesant,40.69309,-73.94662,Private room,60,1,7,2018-01-28,0.36,1,0 +21644783,Cozy Room in the heart of Bushwick,26738513,Malachi,Brooklyn,Bushwick,40.6929,-73.91681,Private room,32,3,25,2019-05-21,1.62,3,90 +21644811,Clean Modern Furnished Room,155789674,George,Queens,Ditmars Steinway,40.77109,-73.91117,Private room,55,15,3,2018-01-01,0.15,1,55 +21645706,Private room in a luxury building,34161028,Agnese,Brooklyn,Vinegar Hill,40.69925,-73.98266,Private room,100,3,2,2018-01-02,0.11,3,96 +21645769,Big studio apt in the heart of Williamsburg,6619124,Jeffrey,Brooklyn,Williamsburg,40.71681,-73.94912,Entire home/apt,99,4,5,2018-09-16,0.25,1,0 +21645894,Mother of the Believers,157525611,Chika,Manhattan,Harlem,40.80015,-73.95483,Private room,50,1,3,2017-11-07,0.15,1,0 +21646320,PRIVATE ROOM with OWN BATHROOM in Astoria Apt,68267774,Jeannie,Queens,Astoria,40.75819,-73.92687,Private room,47,30,1,2017-12-31,0.05,1,90 +21646375,TRANQUILITY,157540393,Valerie,Queens,Rosedale,40.66158,-73.74821,Private room,67,5,0,,,1,90 +21646774,"STEPS TO LGA, Near CITIFIELD, JFK MANHATTAN(RM #4)",156948703,Asad,Queens,East Elmhurst,40.76918,-73.8719,Private room,55,1,208,2019-07-06,10.28,6,352 +21646838,Modern 2 bedroom apartment in Brooklyn,31755712,Ludmila,Brooklyn,Clinton Hill,40.68597,-73.95983,Entire home/apt,125,25,0,,,1,172 +21647076,Cozy Apartment in Upper East Side,20067071,Gabriele,Manhattan,Upper East Side,40.76959,-73.95601,Entire home/apt,190,2,1,2018-03-26,0.06,1,9 +21647976,Cozy room in Williamsburg!,6995644,Wael,Brooklyn,Williamsburg,40.71763,-73.96008,Private room,50,4,3,2018-05-22,0.16,1,0 +21648143,Light room with view of Manhattan skyline,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69094,-73.95144,Private room,80,3,5,2019-01-04,0.27,3,65 +21648513,Spacious Cozy Apt with Private Back Yard and a Cat,2347173,Vika,Manhattan,Upper East Side,40.78217,-73.94844,Entire home/apt,150,6,17,2019-06-14,1.13,1,0 +21649044,Brownstone Diamond in Clinton Hill,157563838,Ion,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95906,Entire home/apt,99,2,0,,,1,0 +21649171,Spacious 3-Bedroom Bushwick Duplex,77904836,Yvette,Brooklyn,Bushwick,40.69168,-73.91453,Entire home/apt,500,5,1,2018-01-01,0.05,1,0 +21649172,Sanctuary on the Upper West Side of Manhattan,4431637,Rebecca,Manhattan,Upper West Side,40.79907,-73.96962,Entire home/apt,225,6,4,2019-04-21,0.22,1,177 +21649523,Crown Heights Apartment,138546022,Nicholas,Brooklyn,Crown Heights,40.67354,-73.95149,Private room,41,1,1,2017-11-06,0.05,2,0 +21649695,Spacious Manhattan Apt minutes from Time Square,115589496,Simona & Matther,Manhattan,Hell's Kitchen,40.75976,-73.9955,Entire home/apt,140,2,26,2018-12-31,1.41,1,0 +21650258,"Bright, modern apartment",48492315,Sawyeh,Brooklyn,Bedford-Stuyvesant,40.68364,-73.95821,Entire home/apt,85,3,3,2018-01-02,0.15,1,0 +21651023,Private room two blocks from Times Square.,38530455,Aleksey,Manhattan,Hell's Kitchen,40.76291,-73.98976,Private room,105,1,135,2019-07-01,6.78,1,68 +21651270,POLISHED BROOKLYN GETAWAY,119313407,Monica,Brooklyn,Brownsville,40.66087,-73.90935,Entire home/apt,115,1,2,2017-11-27,0.10,1,0 +21652744,Crown heights hangout,157599851,Mallory,Brooklyn,Crown Heights,40.67286,-73.94758,Private room,31,6,0,,,1,0 +21655971,Sunny Spacious Modern Designer Apartment,55021,Sascha,Brooklyn,Fort Greene,40.69647,-73.97681,Entire home/apt,120,20,3,2018-06-30,0.16,1,58 +21656310,"Room available on the Upper East Side, Manhattan",18844442,Rabia,Manhattan,Upper East Side,40.77976,-73.95409,Private room,100,2,16,2018-02-20,0.80,1,0 +21658519,Spacious studio in luxury Manhattan condo,862657,Alex,Manhattan,Midtown,40.7451,-73.98139,Entire home/apt,250,2,11,2018-11-24,0.57,1,22 +21659073,Great shared apartm in the heart of Bushwick,146345538,Sergii,Brooklyn,Bushwick,40.69168,-73.9132,Shared room,28,30,5,2018-10-27,0.25,5,281 +21659494,"Spacious queen bedroom, private bath in Brooklyn",26379887,Marine,Brooklyn,Greenpoint,40.72891,-73.95618,Private room,150,2,4,2018-10-31,0.20,1,0 +21659702,NEWLY RENOVATED HOME IN BUSHWICK / Best offer,146345538,Sergii,Brooklyn,Bushwick,40.6951,-73.91157,Shared room,30,30,5,2018-10-04,0.25,5,365 +21660113,Great shared house / Bushwick!,10994664,Alexander,Brooklyn,Bushwick,40.69641,-73.90895,Shared room,30,30,2,2018-03-31,0.11,8,325 +21660214,纽约森林小丘简约文艺客舍,22675680,Cecilia,Queens,Forest Hills,40.71825,-73.83502,Shared room,60,1,68,2019-04-05,3.62,1,125 +21660363,beautiful studio one step away from Central Park,157653177,Isaies,Manhattan,Harlem,40.80188,-73.95695,Entire home/apt,75,7,12,2019-06-23,0.63,1,3 +21660742,"1 Private Bedroom, private bathroom, Brooklyn",2079633,Fayna,Brooklyn,Fort Greene,40.68558,-73.96965,Entire home/apt,150,5,0,,,1,0 +21660787,Spacious Williamsburg Apartment,476260,Jingjing,Brooklyn,Williamsburg,40.71729,-73.95051,Private room,50,2,1,2017-11-06,0.05,1,0 +21661235,Gorgeous room in Bed-Stuy/Bushwick,5342802,Mikaela,Brooklyn,Bedford-Stuyvesant,40.6864,-73.91858,Private room,50,10,6,2019-06-01,0.33,2,5 +21661292,Brownstone 1BR Apt in the heart of Park Slope,9678658,Emily,Brooklyn,Park Slope,40.67441,-73.97614,Entire home/apt,160,4,7,2018-11-25,0.36,1,0 +21661580,Upper East Side Brownstone Beautiful Large 1B!,128009952,Alexa,Manhattan,Upper East Side,40.7827,-73.94537,Entire home/apt,125,5,1,2017-11-25,0.05,1,0 +21662801,"West 33rd street, Lux 1bd Serviced Apartment**",22541573,Ken,Manhattan,Chelsea,40.75286,-73.99551,Entire home/apt,239,30,0,,,87,364 +21662950,Charming 2bedroom Apartment in the Lower East Side,152639417,Laura,Manhattan,Chinatown,40.71537,-73.99119,Entire home/apt,250,4,32,2019-06-11,1.71,1,188 +21664152,"Bright, Clean & Cozy 1 BR close to all services..",124409689,Donalda,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9526,Entire home/apt,110,4,38,2019-06-26,1.91,1,309 +21664702,Room with charming private rooftop in Williamsburg,89337192,Matteo,Brooklyn,Williamsburg,40.71035,-73.94774,Private room,95,3,43,2019-06-16,2.54,1,59 +21665632,SOHO LOFT: 2000sq ft renovated & centrally located,11242618,Shelley,Manhattan,SoHo,40.72208,-74.00217,Entire home/apt,1000,5,0,,,1,364 +21665842,Charming Cobble Hill Brownstone with Backyard.,156668591,Tamosin,Brooklyn,Cobble Hill,40.68615,-73.9972,Entire home/apt,160,3,11,2019-07-07,0.59,1,14 +21665966,Queen room with balcony,75248463,Jotham,Brooklyn,East Flatbush,40.64358,-73.9462,Private room,118,2,2,2018-01-04,0.11,4,45 +21666229,Industrial Bedroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.69871,-73.92877,Private room,70,1,93,2019-05-26,4.67,3,17 +21666331,Little Gem in Brooklyn,157701601,Karen,Brooklyn,Williamsburg,40.70737,-73.93961,Entire home/apt,125,4,2,2018-08-09,0.11,1,0 +21666641,LARGE LIGHT FILLED ROOM IN THE HEART OF BAYRIDGE,157705263,Kendria,Brooklyn,Bay Ridge,40.62602,-74.023,Private room,55,3,0,,,1,0 +21666679,Comfy Cobble Hill home for your NYC/Brooklyn stay.,107417162,Karin,Brooklyn,Columbia St,40.68559,-74.0011,Entire home/apt,130,3,6,2019-03-20,0.30,1,106 +21666958,FURNISHED BEDROOM IN FIDI LOFT APARTMENT,9020694,Amaad,Manhattan,Financial District,40.71079,-74.00934,Private room,80,30,1,2019-04-05,0.32,1,339 +21667120,2 BED Manhattan Condo with Balcony & Laundry,157075387,Anthony,Manhattan,Hell's Kitchen,40.76495,-73.98844,Entire home/apt,248,2,19,2018-04-26,0.96,1,0 +21667189,Plant Filled Artist Duplex in Trendy Bushwick,11056171,Sasha,Brooklyn,Bushwick,40.69812,-73.93151,Private room,48,4,6,2019-04-24,0.32,1,6 +21667615,Beautiful 1BR in Brooklyn Heights,78251,Leslie,Brooklyn,Brooklyn Heights,40.7007,-73.99517,Entire home/apt,150,30,0,,,2,65 +21667658,Spacious Williamsburg 1BR with designer ammenities,8471197,Taya,Brooklyn,Williamsburg,40.70981,-73.95343,Entire home/apt,175,3,28,2018-06-24,1.43,1,0 +21667733,A room with a view,28369674,Ramond,Brooklyn,Williamsburg,40.70551,-73.93454,Private room,67,3,33,2019-05-23,1.66,2,127 +21668437,SPACIOUS PRIVATE ROOM IN TRENDY BAY RIDGE BROOKLYN,156672333,Eddie,Brooklyn,Bay Ridge,40.6247,-74.03094,Private room,80,3,1,2018-01-01,0.05,1,363 +21668647,Private room,22420999,Herman,Queens,Richmond Hill,40.69473,-73.83061,Private room,45,2,0,,,5,363 +21669322,Comfortable & Bright Studio in the East Village,3281798,Guillermo,Manhattan,East Village,40.73014,-73.98152,Entire home/apt,180,3,8,2019-06-09,0.42,1,10 +21669411,"1 Cozy, Sun-filled Private Room",5140888,Ciru,Brooklyn,Crown Heights,40.67315,-73.94534,Private room,31,7,0,,,1,0 +21672349,A Bright Brooklyn Apartment With A Private Balcony,4434595,Jamie,Brooklyn,Bedford-Stuyvesant,40.68717,-73.94557,Entire home/apt,98,3,12,2019-06-11,0.62,1,0 +21673998,"Dean Street, BROOKLYN!!",151777787,Kristina,Brooklyn,Brownsville,40.67375,-73.90813,Private room,40,1,6,2017-12-29,0.30,2,0 +21674032,Gigantic one bedroom in East Williamsburg Brooklyn,22507452,Joshua,Brooklyn,Williamsburg,40.70509,-73.94228,Entire home/apt,100,3,0,,,1,0 +21675209,Beautiful cozy studio in the heart of Manhattan,26135855,Aliza,Manhattan,Murray Hill,40.74601,-73.97823,Entire home/apt,200,1,46,2019-05-27,2.36,1,0 +21675338,Spacious Studio Apartment in Downtown Manhattan,152959594,Carleigh,Brooklyn,DUMBO,40.70231,-73.98938,Entire home/apt,125,2,1,2017-11-18,0.05,1,0 +21676358,Incredible modern studio with all the amenities,55308025,Paul,Brooklyn,Downtown Brooklyn,40.69339,-73.98581,Entire home/apt,90,3,7,2019-06-23,0.37,1,0 +21676677,Cozy modern large 1BR apartment in Sunnyside,758152,Pilar,Queens,Sunnyside,40.74457,-73.9194,Entire home/apt,82,21,0,,,1,0 +21676769,Garden apartment with private backyard!,876116,Victoria,Brooklyn,Bedford-Stuyvesant,40.67954,-73.948,Entire home/apt,100,4,5,2018-04-11,0.25,1,0 +21677053,Luxury Chelsea penthouse w private terrace & view!,5761098,Patty,Manhattan,Chelsea,40.74023,-73.99994,Entire home/apt,485,3,2,2019-05-28,0.32,1,1 +21677335,Comfy Crash Pad - 25 mins to Manhattan,28290772,Anushua,Queens,Astoria,40.76848,-73.90768,Private room,43,2,42,2019-06-14,2.09,2,340 +21677581,The Kipsey - A One Bedroom Apartment,157183215,Wendy,Manhattan,Kips Bay,40.7398,-73.98163,Entire home/apt,175,2,1,2018-01-03,0.05,1,3 +21677637,Spacious studio in Harlem New York,85945543,Victor,Manhattan,Harlem,40.81223,-73.93992,Entire home/apt,200,3,0,,,1,0 +21678001,East Harlem Haven,1743381,Natalie,Manhattan,East Harlem,40.79313,-73.93991,Entire home/apt,108,7,3,2018-12-09,0.16,1,20 +21678034,Cozy wine-in apartment,12327841,Yan Sze,Brooklyn,Bedford-Stuyvesant,40.6891,-73.92168,Entire home/apt,80,5,4,2018-04-01,0.21,1,0 +21678477,Trendy Williamsburg House with Private Studio,39472888,Sarah,Brooklyn,Williamsburg,40.71369,-73.93669,Private room,100,5,41,2018-10-13,2.11,1,125 +21678587,Harlem Gem,42141935,Valerie,Manhattan,East Harlem,40.80834,-73.94049,Entire home/apt,89,1,2,2018-01-01,0.11,1,0 +21679463,"Clean, Comfortable Home away from home",122942281,Natalie,Brooklyn,Brownsville,40.66621,-73.92073,Entire home/apt,95,7,28,2019-07-05,1.51,1,19 +21679639,Entire 1-Bedroom Greenpoint Apartment,4696622,James,Brooklyn,Greenpoint,40.72747,-73.95462,Entire home/apt,95,3,0,,,1,0 +21680413,XL Private Room In Brooklyn,4934112,Liane,Brooklyn,Crown Heights,40.66451,-73.93237,Private room,46,1,49,2019-05-25,2.51,1,81 +21680639,Cool & Cosy apt in best part of Williamsburg!,15105524,Robbie & Apples,Brooklyn,Williamsburg,40.71522,-73.96313,Entire home/apt,200,3,2,2019-01-01,0.11,1,15 +21680914,Ultra Luxury & Hip 2 Bed in Williamsburg,157825168,Sammi,Brooklyn,Williamsburg,40.7185,-73.94888,Private room,148,2,0,,,1,0 +21682272,Room in Amazingly well-LIT Luxury Loft,78942575,Bora,Brooklyn,Brooklyn Heights,40.70017,-73.99202,Private room,120,1,4,2019-06-07,0.20,2,0 +21682816,Large Furnished Bedroom in Prime Chelsea,102685703,Lauren,Manhattan,Chelsea,40.74394,-73.99923,Private room,120,4,0,,,1,0 +21682924,Spacious Escape in the Heart of Greenwich Village,647100,Kevin,Manhattan,Greenwich Village,40.73247,-73.99998,Private room,130,3,11,2018-07-16,0.55,1,0 +21683178,Beautiful Spacious 1BR near Central Park,157846554,JohnR,Manhattan,Hell's Kitchen,40.76573,-73.98682,Entire home/apt,225,5,8,2019-05-21,0.40,1,0 +21683372,Beautiful apartment in great Harlem neighborhood,81928702,K.C.,Manhattan,Harlem,40.82645,-73.94457,Entire home/apt,125,3,23,2019-05-31,1.18,1,166 +21683672,Prime UWS location bedroom available!,2179407,Edgar,Manhattan,Upper West Side,40.7872,-73.97639,Private room,80,2,0,,,1,0 +21683921,"Cozy Master Suite, Sunny & Charming Loft w/ a View",3043800,Sophie,Brooklyn,Williamsburg,40.71827,-73.94381,Private room,90,3,0,,,1,0 +21684019,Greenpoint Gem With Lovely Patio and Backyard!,144017474,Kristin,Brooklyn,Greenpoint,40.73392,-73.95528,Entire home/apt,55,1,5,2019-06-30,0.29,2,0 +21684804,Charming duplex in east village with a balcony,12080664,Josephine,Manhattan,East Village,40.732,-73.98706,Entire home/apt,500,6,0,,,1,0 +21685016,Huge Loft Apartment in Bed-Stuy Brooklyn!!!,9655028,Ken,Brooklyn,Bedford-Stuyvesant,40.68542,-73.91741,Entire home/apt,175,7,1,2017-12-30,0.05,1,0 +21685062,Huge Room Near Subway in Creative Williamsburg,74517682,Meline,Brooklyn,Williamsburg,40.70654,-73.93178,Private room,75,3,1,2017-11-26,0.05,1,0 +21688734,Room located in the heart of Williamsburg,3282906,Johana,Brooklyn,Williamsburg,40.71359,-73.96553,Private room,80,1,5,2019-01-08,0.25,1,17 +21689998,Super Cute Family Friendly Cozy Loft Suite For 2-4,857599,Stephen,Manhattan,Tribeca,40.71838,-74.00495,Entire home/apt,320,3,1,2018-07-31,0.09,1,93 +21691896,Spacious Brooklyn Townhouse with Garden,21248,Toto,Brooklyn,Sunset Park,40.65015,-74.01084,Entire home/apt,300,2,1,2017-12-08,0.05,1,0 +21692066,South Brooklyn Artist / Student Studio Retreat,66386802,Andrew,Brooklyn,Bensonhurst,40.61097,-73.9983,Private room,78,1,21,2019-04-14,1.52,1,30 +21692641,"Large, cozy Studio in Morningside Heights",14991456,Apostolos,Manhattan,Morningside Heights,40.81441,-73.95939,Entire home/apt,100,2,11,2019-03-21,0.57,1,0 +21693544,Fabulous 3-bedroom apartment in trendy Brooklyn.,18037444,Nigel,Brooklyn,Park Slope,40.67545,-73.97516,Entire home/apt,213,5,1,2017-12-21,0.05,1,0 +21693657,Unique East Village Duplex in NYC,81460578,Matt,Manhattan,East Village,40.72389,-73.98346,Private room,141,5,5,2017-12-08,0.25,1,0 +21694344,Cozy 1 bedroom walkup in the heart of Astoria,24916010,Alex,Queens,Astoria,40.76448,-73.92164,Entire home/apt,100,3,1,2018-10-23,0.12,1,0 +21694908,Charming 1875 Victorian,801975,Elizabeth And Timothee,Brooklyn,Crown Heights,40.67764,-73.94493,Entire home/apt,175,3,38,2019-05-28,1.93,2,357 +21695292,1 BR near Union Square,14603774,Matt,Manhattan,East Village,40.73281,-73.9899,Entire home/apt,225,1,1,2017-11-18,0.05,1,0 +21695338,"Spacious, Bright & Cozy 1-bedroom in Greenpoint",8652278,Brady,Brooklyn,Greenpoint,40.7347,-73.95479,Entire home/apt,87,4,1,2017-12-27,0.05,1,0 +21695365,"Affordable, safe & close to the City",129494490,Yuliya,Brooklyn,Crown Heights,40.6703,-73.93241,Private room,36,10,0,,,1,0 +21695415,"Beautiful, private 1 BR Apt in Hamilton Heights",42237462,Stephanie,Manhattan,Harlem,40.82722,-73.9457,Entire home/apt,78,6,4,2018-09-29,0.20,1,0 +21695845,Sunny West Village Studio Apartment,10974696,Shae,Manhattan,West Village,40.73057,-74.00458,Entire home/apt,199,3,16,2019-05-07,0.81,1,3 +21695929,Cozy private bedroom - 15 min. subway to Manhattan,99346174,David,Queens,Sunnyside,40.74549,-73.92465,Private room,50,5,0,,,1,0 +21696833,Charming 2 BR Walk-up in a Private Victorian House,144893680,Adele,Brooklyn,Flatbush,40.63231,-73.96314,Entire home/apt,125,3,40,2019-05-21,2.02,1,0 +21698168,Private bedroom with private bath bathroom,20810101,Amy,Brooklyn,Bedford-Stuyvesant,40.68245,-73.9471,Private room,100,1,8,2019-06-24,2.07,2,23 +21698180,Oasis,156505456,John,Brooklyn,East New York,40.66221,-73.88868,Private room,37,3,15,2019-06-04,0.81,13,90 +21698351,佳源家庭旅馆双床房间,157067019,Ada,Queens,Flushing,40.76498,-73.8301,Private room,78,1,17,2018-12-14,0.87,3,82 +21698446,Private Room In Manhattan!,32798079,Mike & Kevin,Manhattan,Harlem,40.81691,-73.93735,Private room,98,2,94,2019-07-03,4.65,1,117 +21698534,"Immaculate, bright, private lofted room in W-Burg",157438293,Gabriel,Brooklyn,Williamsburg,40.71892,-73.94932,Private room,120,1,0,,,1,0 +21698837,Dope ass apt,149576949,McKayla,Brooklyn,Bedford-Stuyvesant,40.68519,-73.92868,Private room,250,1,0,,,1,0 +21699294,"2017 BUILDING, NEW LOFT, 5 MIN SUB TO MANHATAN",157967816,Analia,Brooklyn,Greenpoint,40.72207,-73.94226,Private room,70,1,82,2019-06-22,4.12,3,43 +21700026,Getaway in Brooklyn,631374,Jen,Brooklyn,Clinton Hill,40.6903,-73.96883,Private room,188,7,1,2017-12-10,0.05,1,83 +21700305,Private bedroom with half bath + private entrance!,16956704,Shalom,Brooklyn,Bushwick,40.68461,-73.91101,Private room,75,1,2,2017-12-31,0.11,1,0 +21700378,Warm and cozy room in Williamsburg,18743582,Kai,Brooklyn,Williamsburg,40.71665,-73.94169,Private room,60,2,21,2018-11-11,1.06,1,0 +21700414,"Sunny Slice of uptown NYC, Private Room, Comfy!",1264407,Dawn,Manhattan,East Harlem,40.79503,-73.93953,Private room,63,3,2,2017-11-30,0.10,1,0 +21700582,Large Private Bedroom next to Central Park,8442344,Peter,Manhattan,Harlem,40.79962,-73.95359,Private room,125,3,0,,,1,0 +21700909,Charming Apt in the heart of Manhattan,209073,Cristina,Manhattan,Hell's Kitchen,40.76226,-73.99519,Entire home/apt,175,7,1,2018-09-10,0.10,1,147 +21701058,Luxury 8 Bedroom Townhouse in Midtown-Sleeps 16,69852641,Lisa,Manhattan,Hell's Kitchen,40.76481,-73.98845,Entire home/apt,2200,2,6,2019-03-02,0.35,3,217 +21701158,Bright Room with a Private Balcony in Williamsburg,28831479,Sedef,Brooklyn,Williamsburg,40.70622,-73.9495,Private room,95,2,4,2019-05-26,0.36,2,28 +21701695,Lovely Private Room with Balcony in New York,96346005,Yamile,Manhattan,Upper West Side,40.77268,-73.98933,Private room,135,3,69,2019-06-25,3.47,3,70 +21703548,Fantastic Room near Central Park and Lincoln Cente,96346005,Yamile,Manhattan,Upper West Side,40.77559,-73.98748,Private room,126,3,77,2019-06-20,3.98,3,45 +21703746,Urban Oasis in Sunnyside Gardens,839657,Mark,Queens,Sunnyside,40.74706,-73.91831,Private room,70,2,35,2019-06-10,1.80,1,306 +21706896,Amazing PRIVATE Bedroom+Bathroom in East Village!,27636450,Lauren,Manhattan,East Village,40.72639,-73.99052,Private room,150,2,0,,,2,0 +21707614,Spacious Williamsburg Artist's Duplex,145021,Guy,Brooklyn,Williamsburg,40.71509,-73.96342,Entire home/apt,150,2,6,2019-07-01,0.42,1,13 +21707762,Spacious Family Friendly Spot Near Central Park,754952,Brian,Manhattan,Upper West Side,40.79069,-73.96614,Entire home/apt,395,3,1,2017-11-25,0.05,1,0 +21709374,1st floor; 1 bedroom,145552870,Jeffrey,Manhattan,Upper East Side,40.77566,-73.95065,Entire home/apt,165,3,2,2017-12-30,0.10,1,0 +21709723,Williamsburg Home - Plant Jungle,536745,Johnny,Brooklyn,Williamsburg,40.71759,-73.94549,Private room,69,2,9,2019-01-02,0.46,3,0 +21709727,DESIGNER TOWNHOUSE IN HARLEM,271527,Richard,Manhattan,Harlem,40.81023,-73.94142,Entire home/apt,850,3,4,2018-11-24,0.22,2,178 +21709891,Cozy room in Hamilton Hights R2,158054102,Beverly,Manhattan,Harlem,40.83233,-73.94562,Private room,47,2,66,2019-07-06,3.28,3,49 +21710003,Garden 1-Bedroom Apartment in Greenpoint,848748,Sarah,Brooklyn,Greenpoint,40.72365,-73.95188,Entire home/apt,200,3,30,2019-06-17,1.52,2,101 +21710807,Master Bedroom on Central Park for Christmas!,49750805,Paige,Manhattan,East Harlem,40.79772,-73.94809,Private room,75,3,0,,,2,0 +21710913,Private sunny 1 Bedroom Apartment,37249745,Gaby,Brooklyn,Borough Park,40.63265,-74.00397,Entire home/apt,58,2,6,2018-05-26,0.32,1,0 +21711085,Chill modern garden apartment in Crown Heights,135204393,Robert,Brooklyn,Crown Heights,40.67034,-73.92777,Entire home/apt,90,2,31,2019-06-30,1.63,1,45 +21711690,Cozy room in Hamilton Hights R1,158054102,Beverly,Manhattan,Harlem,40.83139,-73.94672,Private room,47,2,68,2019-07-06,3.38,3,49 +21711746,Renovated private apartment close to subway train,26809413,Ekta,Brooklyn,Flatbush,40.64658,-73.96909,Entire home/apt,95,2,27,2019-06-24,1.46,1,167 +21712433,Gorgeous 1bd in Trendy Brooklyn!,10396247,Kaitlin,Brooklyn,Park Slope,40.67655,-73.97303,Entire home/apt,180,4,4,2018-12-30,0.22,1,0 +21713358,Modern Whimsical Room,63749946,Rachel,Brooklyn,Crown Heights,40.67433,-73.9248,Private room,54,4,11,2019-05-16,0.56,3,0 +21713419,Timeless West Village Townhouse with Garden,158087989,Ben,Manhattan,Chelsea,40.74025,-74.00066,Entire home/apt,400,3,21,2018-10-14,1.09,1,0 +21713495,"UWS - Cozy, Artsy 1 Bedroom",16240062,Chryssie,Manhattan,Upper West Side,40.79951,-73.96436,Entire home/apt,175,1,37,2019-07-05,1.93,1,176 +21713551,Wonderful Upper East Side Lux Close to Subway,17887542,Viktor,Manhattan,Upper East Side,40.76401,-73.95823,Entire home/apt,138,7,1,2017-12-11,0.05,1,0 +21714177,It's All Yours: Big Beautiful 1 Bedroom in Harlem,158097857,Jahmil,Manhattan,Harlem,40.81425,-73.94187,Entire home/apt,110,3,5,2018-05-28,0.31,1,0 +21714930,"Entire Home for 8 Guests, Fully Equipped",157826237,Jerry,Queens,Flushing,40.75314,-73.81964,Entire home/apt,245,3,50,2019-06-30,2.51,1,40 +21715410,Professionally Decorated 1 BR in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75963,-73.82218,Entire home/apt,95,30,0,,,15,214 +21715655,Studio Flat in Williamsburg Ny 2/4 Guest,86077156,Franco,Brooklyn,Williamsburg,40.70887,-73.95591,Entire home/apt,125,2,71,2019-06-23,3.92,2,83 +21715735,The BEST LOCATION in Brooklyn,100935364,Kira,Brooklyn,Prospect Heights,40.6818,-73.97552,Private room,45,1,13,2019-01-21,0.65,2,0 +21715749,Cozy Williamsburg Room on the Rooftop,25601048,Federico,Brooklyn,Williamsburg,40.71262,-73.94815,Private room,100,4,4,2019-06-01,0.39,1,107 +21716197,Large & Comfortable Financial District Studio,12672143,Kathryn,Manhattan,Financial District,40.70362,-74.00721,Entire home/apt,195,2,4,2018-06-10,0.21,1,0 +21716449,Urban Hang Suite - Entire 1BR w/ Terrace & Doorman,1249685,Evan,Manhattan,Harlem,40.81095,-73.93942,Entire home/apt,101,2,21,2019-06-23,1.09,1,0 +21716508,Cozy bedroom / 15 min from Manhattan,42330917,Gabriela,Queens,Astoria,40.75949,-73.91143,Private room,49,1,19,2019-06-24,0.96,1,0 +21716772,Large private room close to subway station,52889093,Kamyar,Bronx,Kingsbridge,40.88302,-73.90899,Private room,70,1,8,2018-05-24,0.43,1,0 +21718049,"Cosy 1 bedroom, in a pre war building in Chelsea !",158137594,Zafreen,Manhattan,Chelsea,40.74727,-74.00261,Entire home/apt,185,7,0,,,1,0 +21718529,Sunny room in Bushwick loft with skyline views,2793254,Johnny,Brooklyn,Bushwick,40.70466,-73.92043,Private room,100,3,26,2019-06-29,1.70,3,170 +21721040,"Huge, bright one bedroom flat near Prospect Park",10197359,Amber,Brooklyn,Flatbush,40.65168,-73.96411,Entire home/apt,100,3,13,2019-06-25,0.91,1,7 +21721836,"Huge Luxury 1BR, Massive Roof Deck Manhattan View",13546922,Rob,Brooklyn,Williamsburg,40.7123,-73.95228,Entire home/apt,249,3,14,2019-07-04,0.71,1,17 +21721946,Bright East Village Apartment!,8334983,Ashley,Manhattan,East Village,40.72411,-73.98872,Entire home/apt,99,5,4,2018-08-15,0.20,1,0 +21722921,Bright & Spacious Bedroom in Greenpoint Apartment,9306976,Aaron,Brooklyn,Greenpoint,40.73399,-73.95542,Private room,60,2,35,2019-06-20,2.41,2,85 +21723212,CROWN HEIGHTS GUEST HOUSE 2R2L3R3L+B,74541079,Abraham,Brooklyn,Crown Heights,40.66911,-73.93666,Entire home/apt,459,4,1,2019-06-24,1,9,87 +21723666,Private cozy room in E. Flatbush,158174749,Lorna,Brooklyn,East Flatbush,40.65553,-73.93642,Private room,70,2,13,2019-06-30,0.66,1,264 +21724762,Beautiful private room in Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.67668,-73.93997,Private room,60,1,19,2019-06-28,0.94,3,85 +21725929,3.7 MLN usd 2 bedroom LOFT in TriBeCa (5),68707439,Gipsy Properties,Manhattan,Tribeca,40.71989,-74.00465,Entire home/apt,497,14,5,2018-02-15,0.25,3,0 +21725963,Sexy Williamsburg Loft Getaway of a Lifetime,158198197,Nicolas,Brooklyn,Williamsburg,40.71273,-73.95026,Private room,130,1,8,2018-07-22,0.52,1,0 +21726358,Crown Heights Guest House B,74541079,Abraham,Brooklyn,Crown Heights,40.66894,-73.93649,Entire home/apt,59,4,34,2019-06-29,2.13,9,49 +21726826,Prime Williamsburg. Bright room steps from train,66835858,Alejandra,Brooklyn,Williamsburg,40.71504,-73.95394,Private room,60,3,30,2019-05-28,1.53,1,42 +21727407,3.5 MLN usd 2 bedroom LOFT in TriBeCa (4),68707439,Gipsy Properties,Manhattan,Tribeca,40.71994,-74.00332,Entire home/apt,350,14,21,2019-05-20,1.08,3,181 +21727418,"Charming, Airy apartment in Trendy Williamsburg",113121846,Caitlin,Brooklyn,Williamsburg,40.71091,-73.95747,Private room,75,2,19,2018-06-24,0.95,2,0 +21727923,Beautifully Restored Brownstone w. Chef's Kitchen,90333053,Aspen,Brooklyn,Clinton Hill,40.68514,-73.95981,Entire home/apt,160,4,6,2019-02-19,0.54,1,15 +21727957,Mod 3 Bd - Central Park/Columbus Circle 2 blocks,23190446,Bridget,Manhattan,Upper West Side,40.7723,-73.98764,Entire home/apt,550,5,5,2019-01-01,0.27,1,7 +21728093,Adorable Williamsburg apartment,158216643,Annie,Brooklyn,Williamsburg,40.72026,-73.961,Private room,60,10,5,2018-07-19,0.27,1,0 +21728589,Cozy private apartment in the heart of Bed-Stuy.,158219768,Lorraine,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92961,Entire home/apt,100,2,73,2019-07-02,3.72,1,140 +21728670,Private 1BR w/ Full-sized Bed. Great Location!,158222655,Adam,Brooklyn,Williamsburg,40.71901,-73.9571,Private room,100,1,69,2019-06-20,3.55,1,85 +21728681,East Village True 1 Bedroom Apartment,30723568,Jeff,Manhattan,East Village,40.72672,-73.98811,Entire home/apt,250,1,0,,,1,0 +21729121,"Beautiful, bright 1BR in Park Slope, Brooklyn",13711192,Whitney,Brooklyn,Park Slope,40.67078,-73.97948,Entire home/apt,105,5,0,,,1,0 +21729245,Subarriendo apartamento enero febrero 2018,158229004,Cristhian,Queens,Astoria,40.76919,-73.9305,Entire home/apt,70,1,0,,,1,0 +21730099,Luxury studio in the heart of Greenpoint!,7118588,Karalyn,Brooklyn,Greenpoint,40.72683,-73.95905,Entire home/apt,105,4,4,2019-04-28,0.20,1,3 +21730105,Large & Private Bedroom in Fort Greene,14294841,Waahid,Brooklyn,Fort Greene,40.69399,-73.97153,Private room,75,2,0,,,1,0 +21730366,Coastal Bedroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.70034,-73.9284,Private room,75,7,100,2019-06-25,4.97,3,25 +21730735,"Steps to LGA, near CitiField, JFK,Manhattan (RM#1)",156948703,Asad,Queens,East Elmhurst,40.77056,-73.87191,Private room,52,1,207,2019-07-03,10.38,6,325 +21732716,Small Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6602,-73.98244,Private room,42,1,88,2019-06-24,4.44,7,248 +21733463,Great Loft Space in Bushwick With Private Bedroom,506299,Ana Sofia,Brooklyn,Bushwick,40.70668,-73.92099,Private room,55,8,0,,,1,0 +21733510,Beautiful 1 bedroom in bedstuy,60153355,Ameyo,Brooklyn,Bedford-Stuyvesant,40.67984,-73.95044,Entire home/apt,120,11,8,2019-01-04,0.42,1,189 +21733545,++A Global Beat hideaway Room in Manhattan,3464645,Sybilla Michelle,Manhattan,Hell's Kitchen,40.75575,-73.99374,Private room,175,2,44,2019-06-30,2.26,3,133 +21733997,Cozy Light Filled 1 Bedroom,16068417,Jamie,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93263,Entire home/apt,80,3,8,2019-04-29,0.41,1,229 +21734761,Spacious & Homey Williamsburg 1BR Apartment,3312235,Chris & Celia,Brooklyn,Williamsburg,40.71353,-73.96442,Entire home/apt,220,5,10,2019-06-23,0.50,1,349 +21735642,Modern/Cozy Brooklyn Apartment,37084362,Amelia,Brooklyn,Williamsburg,40.71469,-73.94097,Private room,101,3,14,2019-06-24,0.76,1,0 +21736059,Bunks in the heart of Harlem!,108836422,Tanner Myles,Manhattan,Harlem,40.81524,-73.95249,Private room,50,13,0,,,1,0 +21736164,"Light-filled 1BR Brownstone Apartment, Bed Stuy BK",4298654,Sam,Brooklyn,Bedford-Stuyvesant,40.68145,-73.93132,Entire home/apt,73,45,2,2019-01-20,0.11,1,43 +21736598,Three Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71581,-73.95543,Entire home/apt,275,4,0,,,4,5 +21736682,NEW CHARMING 1BR in Prospect/Lefferts Garden,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.66112,-73.9539,Entire home/apt,110,12,2,2018-11-10,0.17,4,6 +21736808,Lower East Side Chic Apartment,40891373,Jessica,Manhattan,Lower East Side,40.7192,-73.99011,Entire home/apt,125,3,25,2019-07-03,1.27,1,28 +21737389,Private bedroom in Manhattan,49750805,Paige,Manhattan,East Harlem,40.7967,-73.94913,Private room,75,3,2,2018-01-04,0.11,2,0 +21737409,Plant and Book lovers paradise in Hip Williamsburg,113121846,Caitlin,Brooklyn,Williamsburg,40.71106,-73.95954,Entire home/apt,130,3,3,2018-06-07,0.16,2,0 +21737535,Newly Renovated LES Apartment with Private Balcony,11028650,Nathaniel,Manhattan,Lower East Side,40.71935,-73.98442,Private room,69,5,0,,,1,0 +21737594,Private Room in Bushwick!,90721937,Hayden,Brooklyn,Bushwick,40.68635,-73.91187,Private room,25,1,9,2018-01-18,0.45,2,0 +21738018,"2 Blocks from Times Square, Centrally Located!",158324654,Astor,Manhattan,Hell's Kitchen,40.76123,-73.99022,Entire home/apt,185,1,176,2019-06-24,8.92,1,252 +21738084,"Cozy and Relaxing, An East Williamsburg Getaway",125697192,Hollye,Brooklyn,Williamsburg,40.71417,-73.93767,Private room,60,2,75,2019-06-20,3.78,1,23 +21738176,Spend the holidays in your OWN APT in South Harlem,20287472,David,Manhattan,Harlem,40.80275,-73.95117,Entire home/apt,125,20,0,,,1,0 +21738540,Bay Ridge Brooklyn House,158048189,Silvia,Brooklyn,Fort Hamilton,40.61818,-74.03464,Entire home/apt,150,4,1,2018-01-03,0.05,1,0 +21738608,Amazing View Private Terrace! Wow!,158330638,Ilfir,Manhattan,Hell's Kitchen,40.76008,-73.98946,Private room,175,1,3,2018-10-07,0.21,1,0 +21738886,UES Manhattan full service doorman building 2 BR,158334115,Leslie,Manhattan,Upper East Side,40.76237,-73.96374,Entire home/apt,500,2,12,2019-05-06,0.78,1,85 +21739035,NEWLY RENOVATED STUDIO APARTMENT IN HARLEM,158335126,Jonathan,Manhattan,Harlem,40.81702,-73.93882,Entire home/apt,130,3,11,2018-05-03,0.56,1,89 +21739264,423 ocean parkway,158338077,Muhammad,Brooklyn,Kensington,40.63929,-73.9718,Private room,67,1,29,2019-06-16,1.79,2,143 +21739781,Vic's Cafe Deluxe,45044964,Victor,Queens,Queens Village,40.72417,-73.76053,Private room,65,1,15,2019-05-12,1.14,2,349 +21739805,*Boogie Down Private and comfortable stay*,158344372,Rashida,Bronx,Wakefield,40.88688,-73.84789,Private room,70,2,5,2019-05-19,1.16,1,365 +21740055,Newly Renovated Brownstone Brooklyn Apartment,5375870,Rebecca,Brooklyn,Crown Heights,40.6725,-73.94788,Entire home/apt,130,4,46,2019-06-27,2.39,1,28 +21740278,Cozy Williamsburg Apartment,25275076,Deliah,Brooklyn,Williamsburg,40.7153,-73.93906,Entire home/apt,92,3,0,,,1,0 +21740615,"Master room Close to NYU Langone H/Metro N,R line",105640471,Jason,Brooklyn,Sunset Park,40.63853,-74.01628,Private room,51,1,21,2019-05-31,1.08,8,130 +21740756,Brooklyn Large private room (near Manhattan),90058061,Siyi,Brooklyn,Sunset Park,40.66035,-73.99794,Private room,45,7,2,2018-04-15,0.10,1,0 +21740858,Couch in Common Room Bushwick!,90721937,Hayden,Brooklyn,Bushwick,40.68772,-73.91386,Shared room,20,1,0,,,2,0 +21741106,(moving out) ENTIRE place READ BEFORE YOU BOOK,64609445,Ina,Brooklyn,Clinton Hill,40.69479,-73.96812,Entire home/apt,43,3,7,2018-08-08,0.38,2,0 +21741118,"Nice View room Close to NYU Lutheran H/Subway N,R",105640471,Jason,Brooklyn,Sunset Park,40.64136,-74.01709,Private room,55,1,7,2019-05-12,0.40,8,140 +21745018,AMAZING 2 BEDROOM private apt in Williamsburg,158399244,Ted,Brooklyn,Williamsburg,40.70992,-73.95064,Entire home/apt,175,1,92,2019-06-19,4.85,4,138 +21745569,Convenient Private and Cozy Environment,158406020,Marvin,Brooklyn,East Flatbush,40.64902,-73.9286,Private room,45,1,15,2019-02-09,0.76,2,269 +21745600,Full & Cozy Apartment at Bed-Stuy,4032781,Dinorah,Brooklyn,Bedford-Stuyvesant,40.68327,-73.94986,Entire home/apt,70,3,4,2018-01-02,0.21,1,0 +21746100,2 bed 2 bath in cool east Williamsburg Loft!,19298428,Lucy,Brooklyn,Williamsburg,40.70509,-73.93471,Entire home/apt,150,2,6,2019-05-04,0.31,1,0 +21747136,Williamsburg Getaway (North 7th and Berry Street),125997954,Paul,Brooklyn,Williamsburg,40.72011,-73.95847,Private room,65,1,1,2017-11-20,0.05,1,0 +21747137,"Private Room & Bath - Modern Bldg, S. W'Burg, BK",4952512,Betsy And Dan,Brooklyn,Williamsburg,40.70719,-73.95412,Private room,140,1,12,2019-05-11,0.85,1,156 +21748242,Soho Luxury Apartment,33211768,James,Manhattan,Nolita,40.72364,-73.99577,Entire home/apt,200,1,1,2017-11-17,0.05,1,0 +21750219,Luxury 2 Bed / 2 Bath Apt 3 Blocks to Central Park,114008316,Artemisia,Manhattan,East Harlem,40.78951,-73.94605,Entire home/apt,195,30,5,2019-04-12,0.30,1,282 +21750553,SoHo NY Apt Up for Grabs Nov 17- Dec 17,102933312,Lana,Manhattan,Little Italy,40.71927,-73.99663,Private room,45,25,0,,,1,0 +21751275,Modern West Soho Apartment,27551651,Rachel,Manhattan,SoHo,40.72591,-74.00396,Entire home/apt,225,2,9,2019-04-30,0.49,1,6 +21751524,Bright and sunny 1 BR in the heart of UES,4636552,Florencia,Manhattan,Upper East Side,40.77842,-73.95903,Entire home/apt,150,3,1,2017-11-27,0.05,1,0 +21751907,"Room in Brooklyn, 5 min to N and R train",26498283,Aura Angelica,Brooklyn,Sunset Park,40.64736,-74.0106,Private room,40,5,3,2019-01-01,0.16,1,0 +21752471,Cozy Attic Studio with Century-Old Charm,31583052,Sarah,Brooklyn,Sunset Park,40.66427,-73.99243,Entire home/apt,105,3,3,2018-06-26,0.16,1,0 +21752545,Beautiful private bedroom in spacious UWS Apt,107786131,John,Manhattan,Upper West Side,40.79957,-73.96902,Private room,150,2,0,,,1,0 +21752839,Huge Park Slope Loft & Private Garden near Subway,82706379,Julia & Estuardo,Brooklyn,Park Slope,40.67471,-73.98274,Entire home/apt,195,3,47,2019-06-24,2.39,1,55 +21752880,Quiet Williamsburg Penthouse with Manhattan views.,22730721,Alex,Brooklyn,Greenpoint,40.71958,-73.94796,Entire home/apt,225,6,8,2018-12-27,0.47,1,0 +21753002,HUGE QUEEN ROOM IN 1500 SQFT WBURG BALLROOM APT,2212344,Enrique,Brooklyn,Williamsburg,40.71358,-73.95634,Private room,94,4,2,2018-08-18,0.10,3,0 +21753255,A Penthouse Steps from central park,128142697,Rod,Manhattan,Upper East Side,40.76615,-73.97118,Entire home/apt,220,4,1,2017-11-25,0.05,2,0 +21753773,oasis 2,156505456,John,Brooklyn,East New York,40.66114,-73.88889,Private room,30,3,28,2019-05-28,1.43,13,90 +21754221,STYLISH 1-BR APARTMENT IN PRIME SOHO!,6792247,Agnes,Manhattan,SoHo,40.72566,-74.00075,Entire home/apt,187,2,7,2019-06-30,0.64,1,4 +21754369,HUGE room in a BUSHWICK BROWNSTONE,49736414,David,Brooklyn,Bushwick,40.69044,-73.90837,Private room,60,1,0,,,1,0 +21754827,oasis 3,156505456,John,Brooklyn,East New York,40.66098,-73.88828,Private room,45,3,29,2019-06-23,1.57,13,90 +21754860,Sunny & Inviting 3br in the Heart of Clinton Hill,29243209,Sarah,Brooklyn,Clinton Hill,40.68712,-73.96297,Entire home/apt,200,2,0,,,2,0 +21754946,Sofa couch best location 2 min from Central Park!,46224196,Alejandro,Manhattan,Upper East Side,40.76309,-73.96439,Shared room,89,2,1,2017-12-16,0.05,1,0 +21755486,"Cute Manhattan bedroom, close to all amenities",5982945,Nadia,Manhattan,Harlem,40.80791,-73.947,Private room,97,2,5,2018-12-09,0.26,1,365 +21755710,Your comfy abode in Brooklyn,15811194,Gerry,Brooklyn,Brownsville,40.67322,-73.91018,Private room,49,3,30,2019-05-20,1.62,1,62 +21755954,Private Room in Prime Location,16273067,Kim,Manhattan,Hell's Kitchen,40.76145,-73.98912,Private room,147,4,1,2017-12-13,0.05,1,0 +21756084,Cozy Private Bedroom in Bushwick,17906387,Jess,Brooklyn,Bushwick,40.69668,-73.91395,Private room,26,4,1,2018-01-04,0.05,1,0 +21756425,Place of peace,158504512,Georgia,Queens,Cambria Heights,40.70225,-73.72945,Private room,31,1,2,2018-01-19,0.10,1,0 +21762095,Brand New 1 Bdrm Apt in Williamsburg Brooklyn - 3L,156436372,Sonia,Brooklyn,Williamsburg,40.71501,-73.95125,Entire home/apt,100,30,6,2019-05-05,0.44,4,333 +21762160,Big Clean well-lit 2br by the subway in WaHi NYC!,3329425,Brad,Manhattan,Washington Heights,40.83734,-73.94506,Entire home/apt,120,2,1,2018-05-13,0.07,1,210 +21762711,Large House in Brooklyn near Express Subway,158554204,Su,Brooklyn,Bedford-Stuyvesant,40.67917,-73.93103,Entire home/apt,700,1,7,2019-06-01,0.42,1,303 +21762776,Cozy 2 Bedroom in Multifamily,156833182,Maria,Brooklyn,East Flatbush,40.64676,-73.94819,Entire home/apt,100,3,41,2019-01-01,2.07,1,0 +21762969,COZY BEAUTIFUL STUDIO- UPPER WEST SIDE,158552987,Juan Luis,Manhattan,Harlem,40.83172,-73.9488,Private room,80,1,2,2017-12-22,0.11,1,0 +21763302,Astoria flat 5 minutes to subway 10 mins to NYC,158048302,Marilyn,Queens,Ditmars Steinway,40.77416,-73.90755,Entire home/apt,83,5,13,2019-06-22,0.68,1,365 +21764245,Top Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72317,-73.94635,Shared room,35,3,15,2019-06-30,0.78,5,301 +21764576,Tranquil Parkside Oasis,12586492,Sausan,Manhattan,East Village,40.72336,-73.98079,Entire home/apt,133,28,9,2019-06-06,0.54,2,211 +21764778,Bright New York Loft in Williamsburg/Bushwick,12776493,Sonia,Brooklyn,Williamsburg,40.70378,-73.94306,Entire home/apt,92,3,4,2018-01-13,0.21,1,0 +21765318,Middle Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72477,-73.94465,Shared room,35,2,16,2019-06-23,0.81,5,274 +21765794,"Nice private bedroom, prime East Village",154266431,Steven,Manhattan,East Village,40.72419,-73.98294,Private room,95,3,36,2019-07-01,1.83,3,9 +21765895,Fashion Blvd Flat 20 minutes from City Center!,152636597,Alexes,Bronx,Mott Haven,40.81039,-73.92478,Private room,73,1,1,2018-06-09,0.08,1,0 +21766169,Cozy 2BR in Rockefeller Center / Times Square,4227606,Cindy,Manhattan,Midtown,40.75697,-73.97909,Entire home/apt,255,4,5,2018-05-04,0.26,2,0 +21766524,Beautifully Decorated Entire Floor of Brownstone,965946,Sunil,Brooklyn,Park Slope,40.67271,-73.97663,Entire home/apt,200,5,1,2019-06-30,1,1,31 +21766776,Spacious Renovated Duplex in Central Harlem,4379024,Claire,Manhattan,Harlem,40.80486,-73.94889,Entire home/apt,225,3,2,2018-08-09,0.13,1,1 +21767656,AMAZINGLY LOCATED DECORATED ONE BEDROOM CONDO,14321520,Edward,Manhattan,Hell's Kitchen,40.76521,-73.98507,Entire home/apt,275,4,0,,,1,0 +21767672,"Sun kissed, loft studio in the heart of Chelsea",27293055,Sara,Manhattan,Chelsea,40.74143,-74.00027,Entire home/apt,159,3,3,2018-02-19,0.16,1,0 +21767943,Cozy Hideaway in Artist’s Industrial Loft,158599708,Richard,Brooklyn,Prospect Heights,40.68109,-73.96904,Entire home/apt,195,3,47,2019-03-09,2.44,1,0 +21769473,Designer's Own Soho Loft,4654206,Ethan,Manhattan,SoHo,40.72131,-73.99816,Entire home/apt,495,5,2,2019-02-07,0.17,1,2 +21769501,Amazing Studio at the Time Square Area/52D,48146336,Irina,Manhattan,Hell's Kitchen,40.76173,-73.99325,Entire home/apt,130,30,4,2019-05-18,0.43,20,268 +21769638,Bohemian chic Brooklyn floor thru,82119233,Jenny,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95232,Entire home/apt,135,3,46,2019-06-30,2.36,2,255 +21769940,"Light-filled, cozy apartment -convenient location!",13015084,Payal,Queens,Sunnyside,40.74543,-73.92399,Entire home/apt,100,3,35,2019-06-30,1.78,1,2 +21769981,Private room w/ bathroom near Prospect Park,157262166,Sweden,Brooklyn,Prospect-Lefferts Gardens,40.65662,-73.95344,Private room,59,2,102,2019-07-07,5.20,2,347 +21770068,Brooklyn Gem! Close to transportation!,21153742,Ezra,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95194,Private room,150,3,2,2017-11-28,0.10,1,364 +21770277,"Private Bedroom in Artsy Airbnb: Room ""L""",157262166,Sweden,Brooklyn,Prospect-Lefferts Gardens,40.65848,-73.952,Private room,65,2,99,2019-06-20,5.03,2,334 +21770746,The Long House - Williamsburg!,7760308,David & Mallory,Brooklyn,Williamsburg,40.71425,-73.96276,Entire home/apt,175,1,33,2019-06-23,1.96,1,0 +21771006,Beautiful Brownstone 10 mins away from Manhattan,104458,Julia,Brooklyn,Gowanus,40.67831,-73.99324,Entire home/apt,380,4,18,2019-06-17,0.98,1,8 +21771041,"Small apt in LIC, NY.",158628576,Carol & Darcy,Queens,Sunnyside,40.74048,-73.9273,Entire home/apt,170,1,1,2018-08-06,0.09,1,0 +21771395,Shared Apartment,124042625,Brown,Queens,Corona,40.74223,-73.86408,Private room,50,1,4,2018-07-10,0.20,1,95 +21771454,Newly renovated bedroom apartment - 2 beds,23596542,Javier,Brooklyn,Crown Heights,40.6768,-73.93529,Entire home/apt,78,5,2,2018-08-26,0.11,1,0 +21771486,Park Slope it! Close to Manhattan! Renovated!,31697949,Michelle,Brooklyn,Sunset Park,40.66475,-73.99629,Private room,30,2,7,2018-05-15,0.36,1,0 +21771502,Beautiful 5th avenue apartment with balcony,35169885,Boris,Manhattan,Chelsea,40.73649,-73.99237,Entire home/apt,200,10,3,2018-04-29,0.16,1,0 +21771881,Cozy Studio near all Attractions in NYC.,158634669,Juan Carlos,Brooklyn,Sheepshead Bay,40.58747,-73.9587,Entire home/apt,80,1,42,2019-06-28,2.11,1,28 +21772083,Comfortable 1 Bedroom Apartment,26744799,Chris,Brooklyn,Bath Beach,40.60674,-74.00428,Entire home/apt,99,3,39,2019-07-01,2.37,1,306 +21772258,Beautiful Home in Park Slope!,41118093,Brittany,Brooklyn,Park Slope,40.67329,-73.98311,Entire home/apt,125,3,2,2018-03-13,0.10,1,0 +21774455,Charming 1BD Apartment near Empire State building,1010743,Mike,Manhattan,Kips Bay,40.74295,-73.97392,Entire home/apt,165,3,2,2019-07-01,0.11,1,2 +21777252,Bohemian 2 Bedroom in the East Village,4333342,Megan,Manhattan,East Village,40.72833,-73.97926,Entire home/apt,159,6,6,2019-05-12,0.31,2,12 +21778446,Romantic Getaway,129602851,W.,Bronx,Pelham Bay,40.84607,-73.83842,Entire home/apt,99,7,1,2018-02-01,0.06,2,349 +21779257,Cozy bedroom in NYC great for your next vacation!,158692215,Leigha,Manhattan,Harlem,40.82738,-73.94559,Private room,50,3,1,2017-11-26,0.05,1,0 +21780343,Elegant one bedroom in Prospect Heights,38358245,Sarah,Brooklyn,Prospect Heights,40.67665,-73.96985,Entire home/apt,96,7,1,2018-01-11,0.06,1,0 +21780433,Bright room in East Williamsburg,9953808,Savanah,Brooklyn,Williamsburg,40.70782,-73.9403,Private room,65,2,1,2018-05-15,0.07,1,0 +21780501,"Beautiful, Bright Apartment in Heart of Chelsea",53507512,Bridget,Manhattan,Chelsea,40.74328,-73.9991,Entire home/apt,226,4,0,,,1,0 +21780915,Beautiful Sunny Private Room #1 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61497,-74.00531,Private room,65,2,30,2019-06-25,1.55,4,305 +21781196,Private room (2 beds) close to Time Square,66797339,Christian,Manhattan,Hell's Kitchen,40.76026,-73.98875,Private room,250,3,1,2017-12-11,0.05,1,0 +21781507,Spacious Apt near UN Plaza 2 Queen size bed for 5,158710682,Cedar,Manhattan,Midtown,40.7548,-73.96966,Entire home/apt,193,2,75,2019-06-28,3.84,3,105 +21781515,Garden Apartment in the Heart of Greenpoint,35020019,Michael,Brooklyn,Greenpoint,40.72513,-73.94829,Private room,110,2,21,2019-06-24,1.37,1,336 +21781648,3 Bedroom designer apartment with views,98014,Raza,Brooklyn,South Slope,40.66821,-73.98834,Entire home/apt,245,3,0,,,1,0 +21781859,Mid-town West 5-min walk to Central Park,2368634,Jen,Manhattan,Upper West Side,40.76814,-73.98404,Entire home/apt,220,5,2,2018-09-06,0.10,1,0 +21781983,Beautiful Sunny Private Room #2 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61465,-74.00312,Private room,70,2,15,2019-07-01,0.77,4,236 +21782140,Brand New 2 Bedroom Apt in Bed Stuy with Garden,205285,Andrea,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94164,Entire home/apt,80,30,7,2019-06-15,0.50,1,0 +21782158,Beautiful Sunny Private Room #3 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61466,-74.00504,Private room,70,2,24,2019-06-02,1.22,4,315 +21783251,Separate 2 Bedroom Apartment located inside Loft.,158725307,Greg,Manhattan,NoHo,40.72909,-73.99125,Entire home/apt,200,2,81,2019-06-21,4.24,2,194 +21783298,Upper West Side Quiet and Private Studio,11387702,Rob,Manhattan,Upper West Side,40.78037,-73.98021,Entire home/apt,145,7,0,,,1,0 +21783619,Cozy room at Columbia University,50048064,T,Manhattan,Morningside Heights,40.80369,-73.96238,Private room,50,1,0,,,1,0 +21783724,Park Slope Beauty For Your Winter Stay In NYC,2101238,Ty,Brooklyn,Park Slope,40.67681,-73.97911,Entire home/apt,170,2,9,2018-04-15,0.45,1,0 +21784156,East Village Penthouse - Private Bedroom,16866,Nicholas,Manhattan,East Village,40.7301,-73.98239,Private room,135,3,32,2019-06-19,1.70,2,76 +21784437,Classic Brooklyn room in brownstone neighborhood,33836993,Daniela,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92949,Private room,65,7,1,2017-12-29,0.05,1,0 +21785354,Cozy room in tranquil home in great neighborhood.,1406432,Mary,Brooklyn,Prospect Heights,40.67471,-73.96408,Private room,60,3,62,2019-06-09,3.11,2,49 +21785385,3.5 MLN usd 2 bedroom LOFT in TriBeCa (2),68707439,Gipsy Properties,Manhattan,Tribeca,40.71953,-74.00386,Entire home/apt,339,14,10,2019-02-25,0.53,3,335 +21785426,Brooklyn Home with a Backyard!,5269420,Abigail,Brooklyn,Bedford-Stuyvesant,40.68739,-73.95405,Entire home/apt,125,2,2,2018-10-27,0.11,1,0 +21785453,Hell’s Kitchen (52nd Street & 9th Avenue),158745515,Nick,Manhattan,Hell's Kitchen,40.76424,-73.98713,Private room,60,1,0,,,1,0 +21786337,Master Bedroom in Harlem - 20 min to Midtown!,64837680,Andrea,Manhattan,Harlem,40.82774,-73.94609,Private room,60,1,1,2018-01-01,0.05,1,0 +21786780,Artful loft ★ NYC ★ Chelsea,8905097,★The Local Apple★,Manhattan,Chelsea,40.74245,-73.99348,Entire home/apt,750,12,1,2019-05-21,0.61,1,332 +21786868,Spacious Lower East Side with private balcony,78999831,Michael,Manhattan,Lower East Side,40.72221,-73.99084,Private room,200,2,0,,,1,0 +21786958,Slice of Heaven @ 811,105130665,Sharon,Brooklyn,Crown Heights,40.6703,-73.94182,Entire home/apt,250,3,44,2019-07-04,2.33,1,52 +21787094,Spacious and Bright Midtown East Apartment,415290,,Manhattan,Upper East Side,40.76436,-73.96836,Entire home/apt,325,1,0,,,1,0 +21787703,Clean Cozy House less than 10 min from JFK :),7097558,Louise,Queens,South Ozone Park,40.67078,-73.79164,Entire home/apt,75,1,154,2019-06-22,8.24,2,0 +21788114,Shared 2 Bedroom Loft in Soho,16962957,Nick,Manhattan,Lower East Side,40.71925,-73.99418,Private room,129,5,3,2018-12-12,0.31,4,153 +21788688,Historic Turret Retreat (Smart TV/Cable/Wifi),54921733,Louise,Brooklyn,Flatbush,40.6437,-73.96769,Private room,85,7,3,2018-06-26,0.18,3,0 +21788734,Beautiful large room in Morningside Heights,26095943,Finola,Manhattan,Morningside Heights,40.80423,-73.96515,Private room,60,10,0,,,1,2 +21789289,Room in house with WiFi and Netflix,119848398,Devi,Bronx,Parkchester,40.83067,-73.88024,Private room,35,1,14,2019-07-02,0.70,2,1 +21794374,@the heart Of Queens. 20Mins 2 Downtown.nearall.B,60291768,Kim,Queens,Elmhurst,40.73914,-73.87116,Entire home/apt,99,4,42,2019-06-16,2.17,2,64 +21794522,Colorful Bed Stuy studio apartment,4575233,Ben,Brooklyn,Bedford-Stuyvesant,40.69259,-73.92881,Entire home/apt,140,3,2,2017-12-11,0.10,1,0 +21794873,Exclusive & Luxurious 4BR/4Bath Townhouse,72205446,Trish,Manhattan,Murray Hill,40.74866,-73.97846,Entire home/apt,1000,3,10,2019-06-03,2.07,1,310 +21796185,Beautiful one bedroom apartment centrally located,117711581,On,Brooklyn,Midwood,40.62914,-73.9575,Entire home/apt,116,2,2,2019-05-19,0.11,1,0 +21796834,Beautiful private room in Greenpoint,33082247,Jimena,Brooklyn,Greenpoint,40.72391,-73.94214,Private room,60,3,2,2018-04-01,0.10,1,0 +21797359,Bayridge 2 bedroom furnished apartment.,119029523,Ebada,Brooklyn,Fort Hamilton,40.62231,-74.02885,Entire home/apt,130,4,4,2018-08-05,0.22,3,324 +21797820,"Loft w/ brick&beam, deep soak tub, rainfall shower",465290,Sam,Brooklyn,Williamsburg,40.71989,-73.95837,Entire home/apt,350,175,5,2018-04-30,0.26,1,362 +21797928,Charming Ditmas Park Air B&B,6335178,Paula,Brooklyn,Flatbush,40.63146,-73.96227,Entire home/apt,95,3,24,2019-06-06,1.25,1,277 +21798411,Full mattress in the living room,47735494,Iris,Queens,Rego Park,40.72826,-73.87015,Shared room,21,1,11,2018-04-21,0.55,4,0 +21798471,Prime Tribeca Loft,50760546,CRNY Monthly Rentals,Manhattan,Tribeca,40.72005,-74.00455,Entire home/apt,499,30,0,,,31,179 +21798589,Thanksgivings - Upper East 1 bedroom,51538706,Moises,Manhattan,East Harlem,40.78639,-73.94869,Entire home/apt,108,3,1,2017-11-26,0.05,1,0 +21798722,Private Studio in Queens Blvd /Min 2guest perstay,153141476,Franz,Queens,Briarwood,40.70593,-73.81468,Entire home/apt,50,1,47,2019-06-01,2.38,3,40 +21799111,Charming and snug 1 bd in West Village near soho,17692768,Isabella,Manhattan,West Village,40.73226,-74.00184,Entire home/apt,175,6,11,2018-10-08,0.62,1,0 +21799291,East Village Alcove Studio with Great Light & View,78534291,Max,Manhattan,East Village,40.72202,-73.97909,Entire home/apt,230,5,3,2019-01-04,0.16,1,0 +21799470,"Beautiful, quiet room with ensuite bathroom",10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93565,Private room,60,1,1,2018-01-01,0.05,2,0 +21800401,Brooklyn Treehouse,85162903,Amelia,Brooklyn,Williamsburg,40.7115,-73.95746,Entire home/apt,130,3,1,2017-11-26,0.05,1,0 +21800445,Gorgeous 2-Level East Village Apt (2 Bed/1.5 Bath),5443000,Erin,Manhattan,East Village,40.73103,-73.98233,Entire home/apt,299,2,21,2019-06-11,1.08,2,2 +21800820,Queen Room in Prospect Lefferts Gardens Flatbush,1512819,Sydney,Brooklyn,Flatbush,40.65314,-73.95304,Private room,40,5,12,2019-04-30,0.70,5,67 +21801370,Authentic Brklyn Experience - Room C,156042211,Tia,Brooklyn,Canarsie,40.64942,-73.89783,Private room,40,4,4,2018-09-10,0.22,4,37 +21801514,Apartment in trendy Nolita,3644416,Kaaran,Manhattan,Nolita,40.72207,-73.99596,Entire home/apt,270,7,0,,,1,0 +21801520,"Private, Cozy Manhattan Bedroom",5742326,Dina,Manhattan,Harlem,40.8217,-73.95336,Private room,48,1,1,2017-12-01,0.05,1,0 +21802458,Charming loft-style apartment with private balcony,59281169,Nicole,Manhattan,Greenwich Village,40.73449,-73.99299,Entire home/apt,300,1,29,2019-06-22,1.46,1,39 +21802684,30+Day Stay: Designer Home with Skylight & Rooftop,137522531,Ali,Queens,Flushing,40.75759,-73.80815,Entire home/apt,228,5,50,2019-06-07,2.63,7,178 +21802923,Private Bedroom with Private Entrance in Brooklyn.,72466752,Nelima,Brooklyn,Bushwick,40.70247,-73.91793,Private room,60,4,16,2019-06-30,0.83,1,42 +21803004,Modern Room in the heart of Manhattan(just female),156246842,Sandra,Manhattan,Theater District,40.76069,-73.9863,Private room,99,3,46,2019-06-20,2.49,3,25 +21803103,"Great Home & Host, next to #1 train",60163700,Dee,Manhattan,Harlem,40.82347,-73.95228,Private room,65,14,13,2019-05-19,0.69,4,0 +21804158,First Class Suite in Central Manhattan,30322413,Sarah,Manhattan,Midtown,40.76398,-73.98034,Private room,325,1,0,,,1,0 +21804600,The garden apartment,158781381,Samuel,Brooklyn,East New York,40.66204,-73.88946,Entire home/apt,90,2,54,2019-06-25,2.84,2,255 +21804666,Luxury room at Hudson Yards,158731650,Jamal,Manhattan,Hell's Kitchen,40.75605,-73.99797,Private room,139,1,0,,,1,0 +21804933,Комната. Место в комнате,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58612,-73.95014,Private room,50,30,0,,,3,166 +21805468,ELEGANT BROOKLYN GARDEN STUDIO,158925455,Marlene,Brooklyn,East Flatbush,40.63794,-73.93125,Entire home/apt,60,2,46,2019-07-02,2.34,1,300 +21809773,1 Bedroom close to Prospect Park and Manhattan,158961969,Victor,Brooklyn,Flatbush,40.64124,-73.9688,Entire home/apt,110,1,45,2019-06-16,2.31,1,18 +21810203,Huge private bedroom one block from the train! :),2385790,G,Brooklyn,Bedford-Stuyvesant,40.69568,-73.93831,Private room,69,1,0,,,2,0 +21810316,"Spacious, luxury aparment in heart of NYC!",28226289,Maxwell,Manhattan,East Village,40.72428,-73.97957,Entire home/apt,500,4,1,2017-12-26,0.05,1,0 +21810960,"Loft For Events, Meetings & Content Creation",150522833,Jack,Manhattan,Midtown,40.7513,-73.98333,Entire home/apt,600,1,20,2019-06-14,1.09,1,169 +21811156,Cool and Cozy East Village Studio - Best Location,158974584,Emma,Manhattan,East Village,40.72456,-73.98764,Entire home/apt,125,5,3,2018-01-02,0.16,1,0 +21811663,Private Cozy Studio Suite,15544818,Janice,Bronx,Pelham Gardens,40.86264,-73.84854,Entire home/apt,62,2,61,2019-06-25,3.22,1,68 +21811946,East Village - Spacious & Colorful,2285348,Kevin,Manhattan,East Village,40.72929,-73.98625,Entire home/apt,196,2,7,2018-12-30,0.36,1,0 +21812347,Large 3BR/2BA Designers Apt in the Gallery Area,1155050,Umar,Manhattan,Chinatown,40.71572,-73.99114,Entire home/apt,299,2,80,2019-07-06,4.01,1,199 +21812980,New Brooklyn apartment with a view,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69001,-73.95136,Private room,80,3,2,2019-04-18,0.11,3,5 +21813179,Cozy room for 1-4 guests in the heart of NYC,119651060,Josephine,Manhattan,Hell's Kitchen,40.76151,-73.98816,Private room,111,4,1,2017-12-12,0.05,1,0 +21813407,Light bedroom with Manhatten skyline view,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69102,-73.95132,Private room,80,3,3,2018-09-30,0.16,3,88 +21813491,East Village · Pied Á Terre · NYC,155014420,Tim And Reuben,Manhattan,East Village,40.72256,-73.97925,Entire home/apt,184,30,11,2018-06-28,0.61,1,313 +21813560,"Private Room in Sunny, Spacious 3 Bdrm Apartment",19138757,Helen,Brooklyn,Crown Heights,40.67517,-73.9564,Private room,60,3,4,2018-09-30,0.22,1,302 +21813814,Cute and convenient WB apartment,158997467,Thomas,Brooklyn,Williamsburg,40.70966,-73.95667,Private room,75,2,41,2018-10-29,2.11,2,0 +21814527,Large One Bedroom in Inwood.,51152932,Katelynn,Manhattan,Inwood,40.86794,-73.91629,Entire home/apt,70,1,4,2018-10-07,0.20,1,3 +21814812,Stunning East Village 1 b/r w.elevator & laundry,11984140,Emma,Manhattan,East Village,40.72941,-73.97916,Entire home/apt,210,28,2,2019-05-01,0.65,1,78 +21814906,Live/Work East Williamsburg Loft,6502688,Bryan,Brooklyn,Williamsburg,40.70592,-73.93513,Entire home/apt,165,2,7,2019-02-03,0.37,1,0 +21815771,Cozy Affordable room in Brooklyn,158920456,Diego,Brooklyn,Bedford-Stuyvesant,40.6786,-73.9255,Private room,40,1,13,2019-06-30,0.65,1,184 +21815831,Private Master BedRoom with Private bath in NYC,24528756,Hamza,Manhattan,Hell's Kitchen,40.76617,-73.9883,Private room,170,1,3,2017-11-26,0.15,1,0 +21815842,Spacious 2 bedroom in beautiful Clinton Hill,1931990,Yarden,Brooklyn,Clinton Hill,40.68859,-73.96035,Entire home/apt,93,3,2,2018-05-11,0.13,1,0 +21816278,Big Sunny Room in Bedstuy/Clinton Hill Brownstone,48960226,Julia,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95469,Private room,47,1,5,2018-03-08,0.25,1,0 +21816442,Cosy and Bright Apartment in Downtown Brooklyn,48159029,Evie,Brooklyn,Bedford-Stuyvesant,40.69179,-73.95915,Entire home/apt,200,1,0,,,1,0 +21816519,Large & bright apartment in the West Village,24123958,Elliot,Manhattan,West Village,40.73522,-73.99983,Entire home/apt,175,2,19,2018-09-06,1.03,1,0 +21816522,Cozy Private Room in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79741,-73.93493,Private room,120,1,3,2018-09-19,0.22,2,179 +21816757,Newly Renovated Brooklyn Apartment,159023062,Victoria,Brooklyn,Crown Heights,40.67372,-73.91648,Entire home/apt,70,2,12,2018-12-28,0.61,1,0 +21817150,Spacious & Airy Loft Apartment in Williamsburg,35567813,Hilary,Brooklyn,Williamsburg,40.71576,-73.94088,Entire home/apt,175,2,0,,,1,35 +21817570,Quiet top floor studio,7412033,Evan,Manhattan,Upper East Side,40.76951,-73.96192,Entire home/apt,105,2,14,2018-05-28,0.71,1,0 +21817889,LA COURONNE - Sophisticated Spacious 3 BDRM 2 BTHS,158764663,Daphne & Jonathan,Brooklyn,Crown Heights,40.66505,-73.93875,Entire home/apt,275,2,78,2019-06-11,4.06,1,325 +21817961,Enjoy Harlem,66472428,Adrianne,Manhattan,Harlem,40.81029,-73.94344,Entire home/apt,165,3,1,2017-12-14,0.05,1,0 +21818110,阳光之家,159027993,Michelle,Queens,Flushing,40.75997,-73.81287,Private room,48,4,14,2019-06-14,0.72,2,171 +21818641,Modern 1 BR Hell's Kitchen condo with courtyard,159042433,Alexander,Manhattan,Hell's Kitchen,40.76172,-73.99428,Entire home/apt,195,3,3,2018-12-01,0.16,1,0 +21822599,"Sunny, spacious 2 bdrm in Park Slope w/ parking",18146582,Bert,Brooklyn,Park Slope,40.6789,-73.97909,Entire home/apt,280,4,2,2019-07-05,0.11,1,0 +21822611,Bright + Cozy room in Chinatown FOODIE Paradise!,25766360,Darra,Manhattan,Lower East Side,40.71235,-73.99071,Private room,100,21,0,,,1,332 +21822619,THE HUGH SUITES 3mins to JFK,1280731,Hugh,Queens,Springfield Gardens,40.66578,-73.77301,Entire home/apt,80,1,214,2019-06-23,10.86,1,307 +21822750,*AWESOME PLACE*2 MIN SUBWAY!,159020652,JoaoLinda,Brooklyn,Bushwick,40.68235,-73.90381,Private room,48,2,58,2019-06-30,3.04,1,349 +21822768,Central Park apt 7/10-7/18 nyc summer July,3239797,Rachel,Manhattan,Upper West Side,40.79401,-73.9639,Entire home/apt,228,7,1,2018-07-17,0.08,1,0 +21823574,Quiet and cozy in Queens and close JFK Airport,159088461,Rudy,Queens,Howard Beach,40.66802,-73.84803,Private room,55,2,0,,,1,363 +21823815,SUNNY BROOKLYN VIBES,44232555,Dániel,Brooklyn,Williamsburg,40.70358,-73.93698,Entire home/apt,60,4,2,2018-02-13,0.11,1,0 +21823931,Quiet & Bright 1 Bedroom in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75899,-73.82245,Entire home/apt,90,30,3,2019-06-30,0.30,15,281 +21824124,Boutique Gowanus Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.6786,-73.98381,Private room,139,1,82,2019-07-07,4.16,17,355 +21824323,Large Sunnyside Apartment 20 min to Times Square,23818224,Michael,Queens,Sunnyside,40.74523,-73.91676,Entire home/apt,95,14,5,2019-05-02,0.26,1,0 +21824416,Gowanus Inn Boutique Queen,159091490,Melissa,Brooklyn,Gowanus,40.67721,-73.98444,Private room,129,1,7,2019-06-30,0.36,17,364 +21824420,Christmas in the City w/ local vibe,22658012,Kathryn,Manhattan,Hell's Kitchen,40.76633,-73.9875,Entire home/apt,150,4,0,,,1,0 +21824734,Gowanus Boutique Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.67851,-73.98439,Private room,119,1,9,2019-06-30,0.46,17,364 +21824864,The Great Room on the Upper East Side,27552154,Sylvia,Manhattan,Upper East Side,40.7627,-73.96225,Private room,90,3,1,2018-01-01,0.05,2,0 +21825081,Beautiful apartment in Chinatown / Lower East Side,157967024,Jade,Manhattan,Chinatown,40.71508,-73.99275,Entire home/apt,125,4,5,2019-04-29,0.26,1,0 +21825464,Bright Room In 2 Bedroom Flat With Outdoor Patio,13898361,Charles,Brooklyn,Williamsburg,40.71173,-73.96164,Private room,55,1,1,2017-12-30,0.05,1,0 +21825573,Beautiful Brooklyn studio,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93132,Entire home/apt,79,1,65,2019-06-17,3.78,3,92 +21825897,Studio in Greenwich Village,30185313,Ariel,Manhattan,Greenwich Village,40.73103,-74.00141,Entire home/apt,120,27,4,2019-05-06,0.24,1,153 +21825923,"Beautiful, Lovely W. Village Room for Females!",93705483,Andrea,Manhattan,West Village,40.73158,-74.00151,Private room,138,2,92,2019-06-24,4.65,2,60 +21826195,Spacious Manhattan Studio - Greenwich Village,27090361,Kaleisha,Manhattan,Greenwich Village,40.73213,-73.99323,Entire home/apt,126,3,2,2017-11-26,0.10,1,0 +21826266,Cozy Manhattan private room @Excellent location,159027871,Chuhan,Manhattan,Upper West Side,40.80204,-73.96612,Private room,35,10,2,2018-05-26,0.11,1,0 +21826282,Lovely room in West Harlem,80512824,Yoleni,Manhattan,Harlem,40.81855,-73.94447,Private room,46,1,5,2018-04-11,0.25,1,0 +21826403,Elmhurst Braodway Apartment,120047243,馨惠,Queens,Elmhurst,40.73688,-73.87644,Private room,55,15,0,,,1,0 +21827276,Cozy Minimalist Small Room in a Great Apartment,93011199,Marion,Brooklyn,Bedford-Stuyvesant,40.68588,-73.95551,Private room,50,1,24,2018-05-24,1.21,1,0 +21827355,Big bedroom in CHINATOWN. Reserve before June 26th,89158733,Alex,Manhattan,Chinatown,40.71447,-73.99433,Private room,60,15,0,,,2,0 +21827363,"BUSINESS OR SINGLE TRAVELLER BEDROOM, BEST IN NYC!",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.70801,-73.95902,Private room,400,1,23,2019-06-18,1.36,4,77 +21827433,"Huge, Cozy Brooklyn Duplex with Backyard",142662928,Nell,Brooklyn,Bedford-Stuyvesant,40.69292,-73.93463,Entire home/apt,160,5,0,,,1,0 +21828071,Sunny Brownstone Apartment in Brooklyn,9127501,Elianna,Brooklyn,Crown Heights,40.67737,-73.94986,Private room,70,3,0,,,1,115 +21828822,Bushwick room filled with character and antiques!,34692600,Mateo,Brooklyn,Bushwick,40.69608,-73.91973,Private room,45,2,1,2017-12-12,0.05,1,0 +21828988,Beautiful Apartment @ Heart of the Upper West Side,6897051,Corey,Manhattan,Upper West Side,40.78558,-73.97703,Private room,340,2,0,,,2,362 +21829006,Room: Minimalist Artist Loft Williamsburg,43490965,Nicole,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94069,Private room,50,2,4,2018-01-01,0.21,1,0 +21829161,Brooklyn Studio,35404558,Brian,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95801,Private room,300,1,4,2018-06-23,0.20,1,0 +21829714,GORGEOUS Apartment in Astoria - close to Manhattan,41813694,Caro,Queens,Ditmars Steinway,40.77853,-73.90934,Entire home/apt,95,3,8,2019-06-03,0.67,1,3 +21829821,Spacious room apt. Manhattan near Times Square.,159150155,Ronak,Manhattan,Hell's Kitchen,40.76793,-73.98583,Private room,150,1,1,2017-11-21,0.05,1,0 +21830694,A Piece of mind in the city,57882444,Antrice,Bronx,Allerton,40.85973,-73.86699,Entire home/apt,70,2,7,2018-01-02,0.36,1,0 +21833222,Williamsburg Brooklyn Apartment - Modern & Chill,51032135,Catherine,Brooklyn,Greenpoint,40.72754,-73.95527,Private room,45,1,1,2018-06-06,0.08,1,0 +21833559,Williamsburg Retreat - 2 Floors & private backyard,44761940,David,Brooklyn,Williamsburg,40.71544,-73.95075,Entire home/apt,280,2,19,2018-11-23,0.99,1,0 +21833654,Cozy room in Financial District!,159014806,Laura,Manhattan,Financial District,40.71025,-74.00756,Private room,45,7,3,2017-12-15,0.15,1,0 +21833755,Beautiful 1/1 in Murray Hill!,14760116,Adam,Manhattan,Murray Hill,40.7466,-73.97044,Entire home/apt,400,5,0,,,1,0 +21834156,Central Park South Classic Junior Suite,34693688,Darwin Dion,Manhattan,Midtown,40.76411,-73.98074,Entire home/apt,400,3,0,,,1,0 +21834484,Contemporary 3 Bedroom in Maspeth Queens,59749036,Lee,Queens,Maspeth,40.72609,-73.90112,Entire home/apt,245,2,93,2019-06-18,4.79,1,201 +21834937,Beautiful & spacious room 15 mins to Manhattan,14540215,Merisa,Brooklyn,Bushwick,40.69834,-73.93436,Private room,50,14,1,2018-01-08,0.05,1,0 +21835336,Dreamy Brooklyn Studio in Prospect Heights with AC,22630406,Andrea,Brooklyn,Prospect Heights,40.67376,-73.96433,Entire home/apt,125,2,14,2019-06-17,0.73,1,9 +21835893,"Artist Flat, 5 min walk to Metro 30 mins from JFK",16356565,Shirley,Brooklyn,Flatbush,40.63435,-73.95027,Entire home/apt,95,2,41,2019-05-27,2.13,2,0 +21836092,Kensington charmer,47343420,Jennifer,Brooklyn,Kensington,40.64407,-73.97428,Entire home/apt,150,2,10,2018-12-31,0.54,2,0 +21836176,Bright Studio Alcove in Prime East Williamsburg,2233850,Brittney,Brooklyn,Williamsburg,40.70894,-73.94847,Entire home/apt,100,2,20,2019-06-10,1.08,1,0 +21836315,Ultimate Pad in Prime Williamsburg with huge ktchn,128536016,Danny,Brooklyn,Williamsburg,40.7146,-73.96282,Entire home/apt,385,10,0,,,1,0 +21836461,East Village apartment - available for December,9214999,Elsa,Manhattan,East Village,40.728,-73.98603,Entire home/apt,125,25,3,2017-11-19,0.15,1,0 +21836784,Sun-Drenched 2 Bedroom Apt in Hamilton Heights,21046508,Linda May Han,Manhattan,Harlem,40.82502,-73.94919,Entire home/apt,100,12,0,,,1,0 +21837063,Sunny Escape in Victorian Beverley Square West,122045009,Jeff,Brooklyn,Flatbush,40.6416,-73.96905,Private room,105,1,73,2019-06-06,3.95,1,139 +21837620,"Huge Room, Modern Unit in Carroll Gardens",1703438,Josh,Brooklyn,Carroll Gardens,40.67574,-73.99783,Private room,59,5,1,2017-12-01,0.05,1,0 +21838658,Private Room in Spacious Chelsea Loft,5111838,John,Manhattan,Chelsea,40.74661,-73.99245,Private room,99,7,19,2019-05-10,1.02,1,11 +21838873,Brooklyn room,120437116,Melanie,Brooklyn,Red Hook,40.67896,-74.00518,Shared room,80,3,0,,,1,0 +21838962,Quiet Park Slope Sanctuary,6874341,Charlotte,Brooklyn,Park Slope,40.67145,-73.97143,Entire home/apt,115,3,2,2018-06-18,0.11,1,0 +21839021,Bushwick private 10 foot ceiling dwelling,131476075,Lakisha,Brooklyn,Bushwick,40.68637,-73.91159,Private room,53,2,19,2019-01-02,1.03,8,177 +21839960,"Safe, Comfortable and Convenient",39346203,Amy,Queens,Forest Hills,40.72573,-73.85292,Private room,45,2,8,2018-01-14,0.40,1,0 +21843831,"Cosy space, 30 min to Manhattan 15 Barclay Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65532,-73.91793,Private room,80,7,1,2019-04-18,0.36,9,364 +21844040,Comfy Couch in Cool Modern Brooklyn (BUSHWICK) Apt,140433148,Lauren,Brooklyn,Bushwick,40.69634,-73.91323,Shared room,43,3,32,2019-06-16,1.86,3,104 +21844210,"Large, sunny oasis in Manhattan",135554944,Stacey-Ann,Manhattan,Harlem,40.81088,-73.9441,Entire home/apt,275,2,2,2018-05-07,0.11,1,0 +21844221,Charming & Cozy 1BR in Park Slope w/Outdoor Space,130623170,Aj,Brooklyn,Park Slope,40.68001,-73.97603,Entire home/apt,200,3,27,2019-06-24,2.67,1,336 +21844377,In the heart of Chelsea and downtown,1317913,Lauren,Manhattan,Chelsea,40.74116,-74.00053,Private room,200,3,0,,,2,158 +21844499,Cozy Central Park West Brownstone,1684573,Emily,Manhattan,Upper West Side,40.78624,-73.96952,Entire home/apt,96,3,2,2017-12-01,0.10,1,0 +21844578,Sunny + Spacious Master Bedroom with Outdoor Deck,1349340,Noah,Brooklyn,Clinton Hill,40.68769,-73.96118,Private room,65,3,2,2018-09-30,0.19,2,0 +21845154,Warm and cosy apartment in the heart of New York,4495261,Julien,Manhattan,East Village,40.72631,-73.98507,Entire home/apt,180,7,2,2018-09-09,0.11,1,0 +21845187,Sunny Private Room in Stunning Williamsburg Loft,159312334,Simon,Brooklyn,Williamsburg,40.71078,-73.96359,Private room,95,8,0,,,1,13 +21845780,Sky Cabin in Hell’s Kitchen! Steps to Times Square,5067783,Patrick,Manhattan,Hell's Kitchen,40.76564,-73.99118,Private room,125,1,53,2019-06-21,3.00,1,42 +21846856,Sunny Private Room in a Cozy Shared Apartment,48735753,Amruta,Manhattan,Harlem,40.81589,-73.9446,Private room,36,2,0,,,1,0 +21848241,Artsy and charming retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.96042,Private room,95,1,48,2019-06-23,2.63,2,77 +21849210,Charming alcove studio in PRIME location!!,25814915,Ashley,Manhattan,East Village,40.72755,-73.98755,Entire home/apt,150,4,1,2017-11-19,0.05,1,0 +21849509,Private Bedroom in Modern CondoTriplex,90541057,Taylor,Brooklyn,Crown Heights,40.67672,-73.92964,Private room,85,1,32,2018-09-09,1.62,1,0 +21849942,One bedroom in the Village,23443666,Shachar,Manhattan,West Village,40.73494,-74.00228,Entire home/apt,190,7,1,2018-01-05,0.05,1,0 +21850082,Amazing Quite & Cozy Room with Private Backyard!,159362106,Matan,Brooklyn,Williamsburg,40.71345,-73.95938,Private room,61,1,25,2019-06-26,1.27,1,7 +21850183,Perfect apartment for 2 (in Manhattan),49661012,Nompakamiso,Manhattan,Upper East Side,40.77408,-73.95504,Entire home/apt,130,5,6,2019-05-13,0.33,1,7 +21850364,Gorgeous loft by the Flatiron building,7018179,Hugo,Manhattan,Flatiron District,40.74044,-73.98777,Entire home/apt,180,5,4,2019-01-03,0.22,1,0 +21850427,Bright Private Room in Brooklyn,6186498,Heeran,Queens,Ridgewood,40.69946,-73.90833,Private room,60,2,81,2019-07-05,4.10,1,34 +21850834,Modern Touch.,159369488,Tara,Queens,Arverne,40.59686,-73.80262,Entire home/apt,200,2,18,2019-07-06,1.30,1,202 +21851016,"Designer's private BR/Studio ++common kitch/bath",8869512,Antonio,Brooklyn,Crown Heights,40.67391,-73.95581,Private room,65,3,1,2018-04-02,0.06,1,0 +21851100,Lincoln Center Studio,7724142,Christopher,Manhattan,Upper West Side,40.77562,-73.98756,Entire home/apt,1066,1,2,2019-01-01,0.20,1,365 +21851228,"Clean, Comfy and Central Midtown Haven!",7709305,Sasha,Manhattan,Midtown,40.75393,-73.97316,Entire home/apt,200,2,29,2019-06-15,1.58,1,18 +21851368,"Trendy, Chill & Comfy in Manhattan NYC",153025974,Kelsy,Manhattan,Washington Heights,40.84182,-73.93898,Entire home/apt,130,3,25,2019-06-22,1.36,1,155 +21851390,East village apartment,158191137,Thomas,Manhattan,East Village,40.72863,-73.99008,Private room,70,3,8,2019-06-07,0.40,1,0 +21851570,Studio In A New Building in Bedstuy,159379318,Heini,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94361,Entire home/apt,95,7,4,2019-01-01,0.21,1,1 +21851586,Experiencing NYC with Comforts of Home,158757567,Felix,Brooklyn,Park Slope,40.6749,-73.97593,Entire home/apt,400,3,42,2019-06-18,2.22,1,46 +21851700,Perfect Manhattan Studio Apartment - Quiet Street,15907782,Chelsea,Manhattan,Chelsea,40.74031,-73.9986,Entire home/apt,150,3,9,2019-04-30,0.48,1,13 +21851931,"Sunny modern loft studio, amazing Manhattan views",21816029,Melissa,Brooklyn,Greenpoint,40.72871,-73.95107,Entire home/apt,115,2,17,2019-02-24,0.86,1,0 +21852060,Bright Brooklyn Apartment,50175698,Thiru,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94492,Entire home/apt,80,5,1,2017-11-21,0.05,1,0 +21852211,BEAUTIFUL MODERN DESIGNER LOFT with BATHTUB!,33658455,Alex,Manhattan,West Village,40.73642,-73.9992,Entire home/apt,345,3,61,2019-07-01,3.17,1,150 +21852332,*Spacious NYC gem* Direct train to central sights!,18554823,Agnes,Manhattan,Marble Hill,40.87634,-73.90948,Entire home/apt,110,1,85,2019-06-26,4.40,1,52 +21852466,Spacious private apartment by Columbia University,44514403,Stephanie,Manhattan,Morningside Heights,40.80414,-73.96576,Entire home/apt,150,2,23,2018-05-28,1.18,1,0 +21853347,Suite Too at Bryant Manor,67069129,Kevin,Manhattan,Harlem,40.80934,-73.95457,Entire home/apt,265,2,65,2019-07-02,3.34,2,257 +21857734,Williamsburg Private Room in 4 BR Apt off L train,20346657,Leah,Brooklyn,Williamsburg,40.70941,-73.93862,Private room,42,7,4,2019-03-25,0.22,1,53 +21857913,136 Apt 3,159435936,Jonathan,Manhattan,Upper West Side,40.78834,-73.97215,Entire home/apt,95,15,5,2018-08-20,0.27,3,0 +21859065,1 bedroom apartment in super central location,36757798,Nicky,Manhattan,West Village,40.73176,-74.00348,Entire home/apt,130,6,8,2019-01-02,0.41,1,0 +21859249,"Cozy, bright and spacious 3BR apartment - Brooklyn",49213265,Mariana,Brooklyn,Crown Heights,40.67025,-73.93558,Entire home/apt,99,3,4,2019-05-12,0.22,1,0 +21859359,Large Private Bedroom in Brooklyn (Bed-Stuy),23039272,Chahine,Brooklyn,Bedford-Stuyvesant,40.68214,-73.95477,Private room,51,1,1,2018-01-04,0.05,1,0 +21859466,Luxurious sunny loft in the heart of Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71769,-73.96339,Entire home/apt,300,3,20,2019-06-09,1.04,4,318 +21859658,"Modern Chic, Pvt Gardn, 2 Stops to NYC, Brooklyn",3094754,Numi,Brooklyn,Sunset Park,40.65602,-74.00509,Entire home/apt,259,2,25,2019-06-17,1.30,2,355 +21860011,Bright charming 2 bedroom in the heart of the LES,9572607,Nicole,Manhattan,Lower East Side,40.7235,-73.99096,Entire home/apt,250,2,5,2019-01-03,0.25,3,4 +21860693,"Private room in bright, charming LES apartment",9572607,Nicole,Manhattan,Lower East Side,40.72291,-73.98915,Private room,71,1,5,2018-12-16,0.31,3,17 +21861551,Brand-new Luxury apt. Stunning views by Penn st.,2431679,Danish,Manhattan,Chelsea,40.75117,-73.99305,Private room,155,2,7,2018-04-08,0.36,1,0 +21861819,West Village Penthouse Studio,68550512,Steven,Manhattan,West Village,40.73738,-74.00012,Entire home/apt,135,4,39,2019-06-29,2.03,1,21 +21862155,Kingsize bedroom in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81919,-73.94554,Private room,89,1,105,2019-07-01,5.33,4,84 +21862803,Beautiful apt in great location,18405989,Guido,Brooklyn,Windsor Terrace,40.65281,-73.97298,Entire home/apt,150,7,0,,,1,0 +21863385,tranquil house,88852894,Nando,Brooklyn,Sheepshead Bay,40.59664,-73.95301,Private room,250,2,0,,,1,178 +21863411,Cozy Lower East Side 1-Bedroom,4950822,Matthew,Manhattan,Lower East Side,40.71952,-73.98495,Entire home/apt,150,2,0,,,1,0 +21863836,Bogro.,24092147,Jon,Brooklyn,Bushwick,40.69186,-73.9221,Private room,75,2,1,2018-04-01,0.06,1,88 +21864653,Cozy Room for Rent in South Slope,33435096,Francesca,Brooklyn,Sunset Park,40.6588,-73.99097,Private room,50,2,44,2019-06-28,2.29,1,298 +21864747,Affordable & Sunny Bungalow in Prime Williamsburg,57291936,Rebecca,Brooklyn,Williamsburg,40.71568,-73.94415,Private room,70,2,16,2019-05-19,0.85,1,3 +21865416,Midtown Manhattan Executive Suite,67349249,ResortShare,Manhattan,Midtown,40.76427,-73.98208,Entire home/apt,450,2,0,,,4,229 +21865637,Maple Place,159494837,Hongye,Queens,Far Rockaway,40.59722,-73.75937,Private room,68,1,66,2019-07-02,3.54,1,51 +21865904,Spacious room with private entrance.,133564044,Kaya,Brooklyn,Flatbush,40.6429,-73.95253,Private room,80,1,1,2018-01-01,0.05,1,0 +21866923,1 bedroom at 190 east 7th street. Doorman,95175637,Curtis,Manhattan,East Village,40.72563,-73.98169,Private room,200,1,2,2018-10-28,0.10,1,0 +21867029,Executive Suite near Central Park!,67349249,ResortShare,Manhattan,Midtown,40.76574,-73.98018,Entire home/apt,450,2,0,,,4,229 +21867216,Metro Suite in Manhattan by Central Park/Time Sq,67349249,ResortShare,Manhattan,Midtown,40.76387,-73.98056,Entire home/apt,398,2,0,,,4,243 +21867375,Metro Suite in Manhattan by Central Park/Time (2),67349249,ResortShare,Manhattan,Midtown,40.76443,-73.98152,Entire home/apt,398,2,0,,,4,243 +21867440,"Charming, Cozy Apartment in the Heart of Bushwick!",29599980,Leslie,Brooklyn,Bushwick,40.70636,-73.91935,Entire home/apt,41,3,1,2018-01-01,0.05,1,0 +21867598,Manhattan Luxury & Cozy Studio,130183779,Arianne,Manhattan,Financial District,40.70407,-74.00885,Entire home/apt,200,1,13,2019-07-07,0.67,1,1 +21867710,Amazing room in the centre on Manhatten! Welcome!,159156636,,Manhattan,Hell's Kitchen,40.75668,-73.99097,Private room,120,1,89,2019-01-01,5.16,3,0 +21867749,Quiet 1-2br Apartment in the heart of Little Italy,41874064,Sheba,Manhattan,Little Italy,40.71801,-73.9984,Entire home/apt,160,1,22,2019-06-19,1.12,2,23 +21867771,Cozy private room in Artists' House in Bushwick.,43756609,Karina,Brooklyn,Bushwick,40.68682,-73.91189,Private room,55,1,2,2017-12-30,0.10,2,0 +21868116,3333Broadway近哥大电梯公寓大楼,48056617,Huan,Manhattan,Harlem,40.82058,-73.95802,Private room,37,15,0,,,1,0 +21868424,Prospect Heights Room,6938506,Karina,Brooklyn,Prospect Heights,40.67871,-73.9678,Private room,60,1,14,2019-06-10,0.71,1,0 +21868427,Sleep on a Casper in the heart of Greenpoint,24559343,Taeho,Brooklyn,Greenpoint,40.72133,-73.94903,Entire home/apt,135,2,7,2019-05-26,0.36,1,2 +21868813,1 Bedroom modern apartment in the heart of Astoria,120638903,Ioanna,Queens,Astoria,40.76543,-73.92248,Entire home/apt,95,6,2,2017-12-09,0.10,1,0 +21868918,Beautifully Lit True Brooklyn Loft,159526448,Natasha,Brooklyn,Williamsburg,40.72192,-73.95597,Entire home/apt,350,2,16,2019-05-12,0.82,1,0 +21868933,Gorgeous Home with Private Terrace: Union Square!,9282079,Justine,Manhattan,Gramercy,40.73581,-73.98918,Entire home/apt,245,4,12,2019-05-25,0.62,1,0 +21869051,Comfy Apt in NYC Brownstone,97243693,Joyce,Manhattan,Murray Hill,40.74812,-73.97663,Entire home/apt,150,3,57,2019-07-01,3.07,2,49 +21869057,Spacious 2-bedroom Apt in Heart of Greenpoint,11967922,Vishanti & Jeremy,Brooklyn,Greenpoint,40.72421,-73.95364,Entire home/apt,10,1,93,2019-07-01,4.73,1,32 +21869167,Manhattan - Private Room - 1 mn Subway/Metro,57002433,Lucile,Manhattan,East Harlem,40.8001,-73.94081,Private room,69,1,77,2019-06-22,4.00,2,0 +21869409,A Suite Stay,157842225,Tara,Manhattan,East Harlem,40.79999,-73.94233,Entire home/apt,250,3,62,2019-06-29,3.23,1,82 +21869546,"Cozy jewel in Hamilton Heights! +Bedroom with bath",87814281,Sharon,Manhattan,Harlem,40.82978,-73.94823,Private room,88,1,3,2018-01-03,0.15,2,0 +21870396,"Central Park, Columbus Circle, Time Warner O MY!",159540426,Kenneth,Manhattan,Hell's Kitchen,40.7676,-73.9855,Private room,200,1,1,2018-01-01,0.05,1,0 +21871576,Prime location: abundant stores & transportation!,131993395,Shirley,Brooklyn,Flatlands,40.62857,-73.94071,Entire home/apt,160,2,53,2019-06-22,2.83,1,230 +21875621,超级便利的豪华公寓次卧,125492013,祥茵,Queens,Elmhurst,40.7418,-73.8861,Private room,40,5,0,,,2,0 +21876299,Lower East Side Studio Escape #4,158969505,Karen,Manhattan,Lower East Side,40.72083,-73.99308,Entire home/apt,150,30,1,2018-08-31,0.10,9,226 +21877219,MINIMALISTIC APARTMENT/DECK IN HISTORIC BROWNSTONE,159587137,Wene,Brooklyn,Clinton Hill,40.69087,-73.96639,Entire home/apt,280,3,1,2019-05-03,0.44,2,343 +21877231,Cruelty-free in Bushwick w/ backyard.,22095324,Chad Michael,Brooklyn,Bushwick,40.69566,-73.91611,Entire home/apt,65,5,42,2019-06-23,2.16,1,1 +21877426,Huge Bright Designer Loft in Red Hook Brooklyn,4010826,Ken,Brooklyn,Red Hook,40.67787,-74.00764,Entire home/apt,150,10,2,2019-01-01,0.10,1,0 +21877805,New & LEGAL 3BRs/2Bath/Parking near Subway & JFK,159592932,Alexandra,Brooklyn,East New York,40.66769,-73.88421,Entire home/apt,159,4,50,2019-06-20,2.57,1,89 +21878080,Beautiful midtown apartment,120762452,Stanley,Manhattan,Murray Hill,40.74998,-73.97543,Entire home/apt,150,30,3,2018-11-30,0.21,50,365 +21878449,Sun filled apartment in the heart of Brooklyn,2946041,Alex,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95362,Entire home/apt,195,3,0,,,1,0 +21879516,2 Bedroom in the perfect location,5945683,Annie,Manhattan,Upper East Side,40.76384,-73.96355,Entire home/apt,200,4,3,2018-10-25,0.19,1,3 +21879760,Huge Dumbo Loft,1377201,Jon,Brooklyn,Vinegar Hill,40.70152,-73.98407,Entire home/apt,100,30,2,2018-06-30,0.12,1,31 +21880038,WeLive Wall Street -- 4 Bedroom,159610596,WeWork,Manhattan,Financial District,40.70458,-74.00755,Entire home/apt,425,1,127,2019-07-06,6.68,6,253 +21880580,Spacious Garden Apt in Clinton Hill/Ft Greene,29478455,Mary,Brooklyn,Clinton Hill,40.69049,-73.96842,Entire home/apt,115,3,4,2019-01-17,0.21,1,2 +21881602,One decent room in Upper West Side Manhattan!,83422323,Amon,Manhattan,Upper West Side,40.79454,-73.97541,Private room,50,1,14,2018-03-31,0.71,1,0 +21881605,"Best location 3 bedroom, Times Square/Penn Station",159623005,Catherine,Manhattan,Hell's Kitchen,40.75597,-73.99494,Entire home/apt,412,30,0,,,1,0 +21881709,Big room in Grand Central,7344277,Angelica,Manhattan,Midtown,40.75249,-73.97384,Private room,93,3,1,2017-11-21,0.05,1,0 +21881810,CASA EVOL,3212890,Lisa,Manhattan,Midtown,40.76733,-73.98074,Entire home/apt,160,3,52,2019-06-26,2.66,1,27 +21881963,Комната для пары,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58788,-73.94955,Private room,50,180,0,,,3,155 +21882745,"Large, sunny & modern Union Square 1-bedroom",22225590,Tina,Manhattan,East Village,40.73245,-73.98848,Entire home/apt,210,4,4,2019-04-26,0.39,1,0 +21883309,NEW 2-Bedroom MODERN & CENTRALLY LOCATED APARTMENT,158444643,Alejandro,Manhattan,Hell's Kitchen,40.75453,-73.99526,Entire home/apt,250,3,57,2019-05-11,2.97,1,0 +21883986,Cozy Room with queen size bed for 2,158710682,Cedar,Manhattan,Midtown,40.75298,-73.96912,Private room,90,1,0,,,3,221 +21883990,WeLive Wall Street -- 2 Bedroom,159610596,WeWork,Manhattan,Financial District,40.7059,-74.00604,Private room,225,1,42,2019-07-05,2.18,6,290 +21884025,Private 1 bedroom 15 minutes from Manhattan,61175161,Claudia,Queens,Astoria,40.76885,-73.90752,Private room,40,3,1,2017-12-13,0.05,1,0 +21884206,WeLive Wall Street -- Studio Apartment,159610596,WeWork,Manhattan,Financial District,40.70426,-74.00711,Entire home/apt,215,1,152,2019-07-03,7.90,6,339 +21884557,Brooklyn Home in the Heart of it All,23005139,Samantha,Brooklyn,Crown Heights,40.67512,-73.96185,Private room,55,3,0,,,1,0 +21884602,Large Room for 2 people queen size bed,158710682,Cedar,Manhattan,Midtown,40.75346,-73.96872,Private room,90,1,2,2017-12-03,0.10,3,217 +21884758,The Gray Room,10979123,Anjelica,Manhattan,Hell's Kitchen,40.7548,-73.9965,Entire home/apt,170,3,26,2019-06-21,1.40,1,1 +21885522,Family Friendly Vibrant duplex in Windsor Terrace,17525654,Susan & Aarti,Brooklyn,Windsor Terrace,40.65537,-73.9819,Entire home/apt,160,5,0,,,1,0 +21885544,"Quirky, bright 1bed apartment in historic Brooklyn",2749343,Kaity,Brooklyn,Bedford-Stuyvesant,40.68541,-73.94692,Entire home/apt,80,5,1,2018-01-04,0.05,1,0 +21885667,Private Bedroom in Spacious Queens Home,11911154,Flor De Liz,Queens,Ditmars Steinway,40.77129,-73.91712,Private room,35,14,0,,,1,0 +21885677,Cozy apt near Bloomingdales and Central Park.,70055156,Yngridd,Manhattan,Midtown,40.75893,-73.9636,Entire home/apt,200,1,77,2019-06-19,4.03,1,268 +21885860,HUGE Bedroom in Brooklyn Off Lorimer J/M/Z & L,3105557,Joshua,Brooklyn,Williamsburg,40.70383,-73.94431,Private room,43,2,6,2018-01-02,0.31,1,0 +21885914,Gorgeous 1 BR in heart of Prospect Heights!,7683267,Nicholas,Brooklyn,Prospect Heights,40.67933,-73.96912,Entire home/apt,100,1,61,2019-06-29,3.23,1,0 +21889698,Humongous Crown Heights Prvt Room in spacious 2brm,15049077,Karanja,Brooklyn,Crown Heights,40.66373,-73.93222,Private room,55,30,1,2018-09-27,0.10,2,137 +21890848,Beautiful Healthy Home in Ditmas Park,21003445,Vanessa,Brooklyn,Flatbush,40.63531,-73.96546,Private room,55,2,3,2018-04-30,0.16,1,65 +21891406,Bright studio size room in the East Village,42954481,Cindy,Manhattan,East Village,40.72801,-73.98736,Private room,95,1,3,2018-10-29,0.16,1,0 +21891982,LUXURY IN MURRAY HILL-25TH FLR/W/DRYER-FANTASTIC!,2856748,Ruchi,Manhattan,Murray Hill,40.74864,-73.97383,Entire home/apt,350,30,0,,,49,330 +21892073,"Large, sunny room in heart of South Williamsburg",916377,Ana,Brooklyn,Williamsburg,40.70807,-73.95099,Private room,42,7,1,2017-12-22,0.05,1,0 +21892596,Iconic NYC Brownstone Apartment on Upper East Side,157642917,Lauren,Manhattan,Upper East Side,40.77089,-73.95946,Entire home/apt,125,5,13,2019-03-15,0.68,1,0 +21892706,Great Apartment In Prospect Lefferts Garden,159735335,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.96014,Private room,80,1,29,2018-10-14,1.51,1,0 +21892834,Executive Museum 1 BR Elevator Best Location,61391963,Corporate Housing,Manhattan,Upper West Side,40.78383,-73.97529,Entire home/apt,133,30,8,2019-06-30,0.43,91,301 +21893129,Adorable midtown studio,120762452,Stanley,Manhattan,Murray Hill,40.75033,-73.97546,Entire home/apt,150,30,2,2018-09-30,0.14,50,365 +21893604,Private Bedroom in West Village/Chelsea,1144452,Dante,Manhattan,Chelsea,40.74045,-74.00047,Private room,12,3,8,2019-06-07,0.59,1,37 +21893658,Sunny cabin in the heart of North Brooklyn,39253607,Laura,Brooklyn,Williamsburg,40.71296,-73.93838,Entire home/apt,120,2,1,2018-01-01,0.05,1,0 +21894437,Cute and Convenient WB Apt,158997467,Thomas,Brooklyn,Williamsburg,40.70902,-73.95724,Private room,50,2,28,2018-07-02,1.46,2,0 +21894785,Duplex Garden Getaway in Park Slope Brooklyn,37616350,Christopher,Brooklyn,Park Slope,40.68057,-73.97617,Entire home/apt,250,2,15,2018-05-29,0.80,1,0 +21895071,Gorgeous big private room/Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.6768,-73.95346,Private room,70,5,12,2019-05-27,0.67,3,0 +21895262,Lovely Room in Prospect Heights.,325453,Malin,Brooklyn,Crown Heights,40.66715,-73.96084,Private room,80,5,0,,,1,0 +21896267,Cozy and affordable room,159757725,Rawad,Manhattan,East Harlem,40.80296,-73.9369,Private room,40,7,1,2018-01-05,0.05,1,0 +21896537,Private Williamsburg apartment,50072658,Besnik,Brooklyn,Williamsburg,40.71211,-73.94058,Entire home/apt,79,1,168,2019-07-05,8.57,1,153 +21896552,Private Garden | Upper West Side Manhattan 1BR,2092300,Amelia,Manhattan,Morningside Heights,40.80513,-73.9632,Entire home/apt,120,3,3,2018-01-08,0.16,1,0 +21897759,1BR in beautiful Park Slope,54907254,Nickelous,Brooklyn,Park Slope,40.67607,-73.97167,Entire home/apt,139,7,1,2018-01-03,0.05,1,0 +21897775,~House of Rest~Private Entrance in Bushwick BK,427019,Oh,Brooklyn,Williamsburg,40.70591,-73.92916,Private room,66,2,48,2019-06-18,2.60,2,5 +21897845,One room.,159769278,Musieka,Bronx,Pelham Gardens,40.86706,-73.84674,Private room,40,2,17,2019-06-04,1.23,1,17 +21898551,2-bedroom South Williamsburg apartment,131206517,Mark,Brooklyn,Williamsburg,40.69999,-73.95275,Entire home/apt,100,4,4,2019-06-24,0.21,1,0 +21898567,Spacious room in a cozy apartment .....,62635426,Lizzie,Brooklyn,Greenpoint,40.72566,-73.94823,Private room,50,3,2,2018-09-30,0.21,1,0 +21898686,2BR in the Heart of Downtown Brooklyn - Near ALL,46705025,Angelo,Brooklyn,Boerum Hill,40.68837,-73.98717,Entire home/apt,185,3,18,2018-06-06,0.91,1,0 +21898732,Big room in East Village!,8177511,Fredrik,Manhattan,East Village,40.72648,-73.97904,Private room,55,7,0,,,1,0 +21899241,Spacious and bright private bedroom in LES,41865841,Tom,Manhattan,Lower East Side,40.71325,-73.99009,Private room,160,2,2,2018-01-02,0.10,1,0 +21899473,Minimalist Union Square Studio Apartment,60632753,Jared,Manhattan,Greenwich Village,40.73616,-73.99614,Private room,80,5,4,2018-08-19,0.22,1,0 +21899575,Beautiful 1 bd apartment in the heart of Brooklyn.,155812868,Milana,Brooklyn,Brighton Beach,40.57962,-73.96535,Entire home/apt,119,1,19,2019-07-04,1.02,2,135 +21899794,Old-school Manhattan Brick Walled Apartment,72395034,Cole,Manhattan,Kips Bay,40.74416,-73.97702,Entire home/apt,125,3,0,,,1,0 +21899939,Alluring Two- Bedroom in Highland Park,4089207,Mondell,Brooklyn,Cypress Hills,40.67842,-73.88768,Entire home/apt,155,3,64,2019-06-29,3.41,2,287 +21900721,Cozy room in a shared apt,159794474,Alex,Manhattan,Upper East Side,40.777,-73.95771,Private room,76,1,0,,,1,0 +21901025,house on the hill with free parking in NYC!,1483578,Spiritchild,Staten Island,St. George,40.64537,-74.08381,Private room,100,2,77,2019-07-08,3.90,1,336 +21901156,Best Deal! Lovely place in Manhattan! Time Square!,159156636,,Manhattan,Hell's Kitchen,40.75656,-73.99063,Private room,120,1,109,2019-01-01,5.97,3,0 +21902630,Beautiful bedroom + private bathroom in Bed-Stuy,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69532,-73.93995,Private room,38,30,4,2019-03-08,0.21,10,365 +21906858,Spacious and homey 1 br w garden near subway,1033792,Dani,Brooklyn,Park Slope,40.67835,-73.98209,Entire home/apt,80,5,2,2018-11-26,0.11,1,0 +21907036,Private room in cozy Bushwick House,33195820,Ignacio,Brooklyn,Bushwick,40.70027,-73.91268,Private room,36,21,0,,,1,0 +21907240,Queen Bed Studio In Gowanus Boutique,159091490,Melissa,Brooklyn,Gowanus,40.67848,-73.98386,Private room,119,1,14,2019-06-30,0.71,17,363 +21907615,Design Furnished Queen Studio Room in Gowanus,159091490,Melissa,Brooklyn,Gowanus,40.67868,-73.98254,Private room,119,1,20,2019-06-23,1.02,17,354 +21907916,Áines place.,4076045,Aine,Queens,Astoria,40.76347,-73.90928,Private room,50,2,0,,,1,0 +21907941,Boutique Hotel Queen Room in Gowanus,159091490,Melissa,Brooklyn,Gowanus,40.67753,-73.9841,Private room,119,1,11,2019-06-23,0.57,17,364 +21908120,Brooklyn Factory Loft Building Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.67873,-73.98236,Private room,119,1,19,2019-07-08,0.97,17,355 +21908184,Furnished spacious NYC studio,120762452,Stanley,Manhattan,Murray Hill,40.75006,-73.97694,Entire home/apt,195,30,1,2018-08-05,0.09,50,365 +21908265,Gowanus Boutique Inn & Yard Queen Room,159091490,Melissa,Brooklyn,Gowanus,40.67733,-73.98407,Private room,119,1,26,2019-06-30,1.32,17,363 +21909291,"Modern, Spacious One Bedroom - Columbus Circle",18462292,Gary,Manhattan,Midtown,40.76699,-73.98174,Entire home/apt,200,7,2,2018-01-01,0.10,1,0 +21909717,Nice view apartment,65493699,Dan Hua,Queens,Jackson Heights,40.75731,-73.85785,Entire home/apt,143,2,3,2018-01-02,0.15,1,0 +21913309,One nice room on the Roosevelt Island; 罗岛一间卧室出租,159884558,Lily,Manhattan,Roosevelt Island,40.76191,-73.94934,Private room,45,25,37,2018-07-01,1.89,1,149 +21913782,"2 bedroom apt (5ppl), 1 minute from Times Square!",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75732,-73.98142,Entire home/apt,350,3,14,2019-06-01,0.74,3,89 +21913811,"Cooled Queens Apartment, NY. LGA Airport 5 min.",147095935,Adeel,Queens,Woodside,40.74496,-73.89534,Entire home/apt,99,1,118,2019-06-23,6.00,1,320 +21913859,Private room in East Village(Female guest only),34281260,Reese,Manhattan,Stuyvesant Town,40.72734,-73.97203,Private room,65,2,6,2017-12-29,0.31,1,0 +21914314,PRIVATE 2 BR APT HEART OF MID-TOWN TIMES SQUARE!!,3440811,Marc,Manhattan,Hell's Kitchen,40.76062,-73.99297,Entire home/apt,85,3,28,2019-03-17,1.45,1,66 +21914499,Exceptional Comfort and Location!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94295,Entire home/apt,160,3,32,2019-06-29,1.64,7,3 +21915201,Soho 2 Bedroom Private Terrace,159903889,Patricia,Manhattan,SoHo,40.72067,-74.00024,Entire home/apt,400,4,42,2019-06-22,2.13,1,306 +21919913,27 FLR VIEWS!LINCOLN SQR-LUXURY 2BR MIDTOWN W 60TH,76104209,Rated,Manhattan,Upper West Side,40.77055,-73.98615,Entire home/apt,333,30,0,,,33,330 +21920061,Cozy room in Manhattan,45731391,Laurence,Manhattan,Lower East Side,40.72147,-73.99054,Private room,85,1,4,2019-06-20,0.21,3,0 +21921178,Bright & Colorful Studio 1 Block From Central Park,48419413,Tina,Manhattan,East Harlem,40.79943,-73.94386,Entire home/apt,89,2,52,2019-01-02,2.75,1,3 +21921608,32 FLR VIEWS!LINCOLN SQR-LUXURY 2BR MIDTOWN W 60TH,76104209,Rated,Manhattan,Upper West Side,40.76996,-73.98551,Entire home/apt,375,30,0,,,33,300 +21921707,Sunny Minimal Bushwick: longterms encouraged!,100424005,Dewey,Brooklyn,Bushwick,40.69386,-73.91897,Private room,39,5,9,2018-09-24,0.46,1,0 +21922035,"Spacious, bright and beautiful 2 Br apartment.",2598844,Fabiana,Brooklyn,Bedford-Stuyvesant,40.69067,-73.93917,Entire home/apt,50,1,49,2019-07-05,2.65,1,47 +21922071,Spacious Private Room in Ditmas Park,47326818,Emilyn,Brooklyn,Flatbush,40.65177,-73.96417,Private room,37,2,3,2018-01-25,0.16,1,0 +21922407,Beautiful 1 bedroom in Upper west side,4389871,Agostina,Manhattan,Morningside Heights,40.80853,-73.96352,Entire home/apt,90,4,0,,,1,0 +21922639,"Luxury Studio Apt in Williamsburg, 24 hr Doorman",9238069,Jamiel,Brooklyn,Greenpoint,40.71911,-73.95045,Entire home/apt,150,2,15,2019-06-02,0.76,1,1 +21923390,"Charming 1 bedroom apartment, Williamsburg BK",898412,Maria,Brooklyn,Williamsburg,40.70889,-73.94357,Entire home/apt,85,60,6,2019-04-29,0.32,1,125 +21923649,Private basement studio in Greenpoint,8494658,Rebecca,Brooklyn,Greenpoint,40.7264,-73.95613,Entire home/apt,99,2,12,2019-05-31,0.71,1,64 +21923722,Greenpoint getaway,6408088,Trent,Brooklyn,Greenpoint,40.72508,-73.94698,Entire home/apt,100,1,2,2018-01-04,0.11,1,0 +21923996,Bright & Large Brownstone Beauty mins away frm NYC,39166877,Nancy,Brooklyn,Windsor Terrace,40.65028,-73.97771,Entire home/apt,165,3,37,2019-07-06,1.90,1,82 +21924203,Private room in Brownstone house,22378099,Ricardo,Brooklyn,Fort Greene,40.6857,-73.96964,Private room,52,5,0,,,1,0 +21924586,Entire 2 bedroom top floor in Clinton Hill,2930303,Rocio,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95894,Entire home/apt,100,28,2,2018-02-05,0.11,1,177 +21924630,Spacious 2 bedroom in heart of Williamsburg!,6411632,Jordan,Brooklyn,Williamsburg,40.71344,-73.95702,Entire home/apt,130,3,2,2018-04-02,0.12,1,0 +21924815,Like live in your own home while traveling,113356258,Judy,Manhattan,Upper East Side,40.77752,-73.94726,Private room,100,1,0,,,1,0 +21925948,Greenpoint Apt,83004119,Pawel,Brooklyn,Greenpoint,40.73307,-73.95275,Entire home/apt,120,1,0,,,1,0 +21925970,Manhattan cocoon @ spacious NEW renovated apt,17250625,Lucas,Manhattan,East Harlem,40.79757,-73.93851,Private room,50,13,51,2019-06-14,2.63,1,26 +21926117,Spacious 1-bedroom flat in LES,42135378,Stavros,Manhattan,Chinatown,40.71601,-73.99171,Entire home/apt,130,4,2,2018-04-09,0.10,1,0 +21926198,Experience NYC living on the Upper East Side,10020112,Naomi,Manhattan,Upper East Side,40.77625,-73.95495,Entire home/apt,250,3,2,2018-01-02,0.10,1,0 +21926279,The Tree House,6999831,Erik,Brooklyn,Flatbush,40.64813,-73.9589,Entire home/apt,90,2,8,2018-07-24,0.42,1,0 +21926432,"Sunny, Convenient, and Clean Apartment to Yourself",102243363,WeiWei,Brooklyn,Prospect-Lefferts Gardens,40.65543,-73.95674,Entire home/apt,110,1,4,2017-12-31,0.21,1,0 +21926844,Private Room on Roosevelt Island,35674813,Xizi,Manhattan,Roosevelt Island,40.7611,-73.95015,Private room,40,7,1,2018-01-21,0.06,1,0 +21926893,Studio with brand new furniture and appliances!,159998120,Joe,Queens,Astoria,40.76522,-73.92438,Entire home/apt,92,1,0,,,1,0 +21927300,LGA Newly Renovated One Bedroom Apt.1,156952896,Haijiao,Queens,East Elmhurst,40.76537,-73.87639,Entire home/apt,100,1,198,2019-07-05,10.15,2,156 +21929935,Full Studio Apartment (MODULO 715),4514578,Hector,Queens,Elmhurst,40.74586,-73.88409,Entire home/apt,45,4,0,,,1,0 +21930306,10 mins/Airports JFK/LGA/Hosp/malls bus/train#2,126247863,Seeranie,Queens,Richmond Hill,40.68932,-73.82047,Private room,35,1,56,2019-07-04,3.00,2,359 +21931508,BRIGHT & AIRY,19739033,Fifi,Manhattan,Harlem,40.81426,-73.95152,Private room,85,2,75,2019-06-13,3.93,2,121 +21931557,Bed-Stuy modern one bedroom plus private bathroom,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69687,-73.94111,Private room,50,30,4,2019-03-10,0.20,10,365 +21931779,Beautiful Art Deco Master Bedroom in Astoria NY,147252767,Melanie,Queens,Astoria,40.76354,-73.91341,Private room,50,1,6,2018-04-07,0.31,1,0 +21931979,Shineroom,159974287,Rasul,Queens,Flushing,40.76245,-73.8238,Private room,38,5,34,2019-06-08,1.82,1,353 +21932693,Big loft in Williamsburg,43600815,Rafael,Brooklyn,Williamsburg,40.70572,-73.93823,Private room,65,8,1,2018-01-01,0.05,2,0 +21932977,Beautiful Huge Room in Manhattan,45697173,Cristóbal,Manhattan,East Harlem,40.78744,-73.94319,Entire home/apt,50,10,0,,,1,0 +21933065,PRIVATE ROOM W/BATH IN BK - MUST SEE,160057164,Patrick,Brooklyn,Crown Heights,40.67685,-73.93141,Private room,75,1,0,,,1,0 +21933372,Lovely Astoria apartment will make you feel home!,120284390,Derya,Queens,Astoria,40.7723,-73.9281,Private room,100,3,0,,,1,0 +21933635,Sunny and Spacious 3 Bedroom near Central Park,160066386,Christopher,Manhattan,Harlem,40.79998,-73.95633,Entire home/apt,250,3,18,2019-03-20,0.97,1,20 +21933725,Manhattan Club! New Years Eve!,158445076,Jonathan,Manhattan,Midtown,40.76432,-73.98075,Entire home/apt,650,3,0,,,1,0 +21933777,Industrial Queen Studio Room In Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67773,-73.98312,Private room,129,1,13,2019-07-06,0.67,17,361 +21933969,Gowanus-Park Slope- Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.6784,-73.98447,Private room,129,1,32,2019-07-07,1.62,17,363 +21934181,Spacious private room in artsy Bushwick Brooklyn,9175058,John,Brooklyn,Bushwick,40.68782,-73.9189,Private room,41,3,17,2019-06-14,0.93,1,0 +21934202,Sunny and Spacious Bedroom w/ Private Bathroom,16855791,Agus,Brooklyn,Williamsburg,40.7023,-73.9419,Private room,65,3,47,2019-06-25,2.47,1,238 +21934318,Park Slope-Gowanus Boutique Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.67704,-73.9846,Private room,129,1,9,2019-07-06,0.46,17,338 +21934465,Queen Studio In Park Slope - Gowanus Inn & Yard,159091490,Melissa,Brooklyn,Gowanus,40.67726,-73.9837,Private room,129,1,28,2019-06-30,1.44,17,362 +21934601,Convenient x Cozy Carroll Street Stay,41617175,Emily,Brooklyn,Gowanus,40.67787,-73.98635,Private room,70,2,1,2017-12-30,0.05,1,0 +21934873,Cute studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75008,-73.97752,Entire home/apt,150,30,2,2019-05-08,0.30,50,364 +21935245,SoHo: Light-filled and tasteful,6650559,Bridget,Manhattan,SoHo,40.72735,-74.00131,Private room,89,1,3,2017-12-28,0.15,1,0 +21935339,"Cozy Bedroom, Walking Distance from Central Park",97862729,Natalie,Manhattan,Harlem,40.80759,-73.95464,Private room,100,2,1,2018-01-01,0.05,1,0 +21935551,Super clean / centrally located extra large studio,88713943,Lee,Manhattan,Hell's Kitchen,40.76042,-73.99032,Entire home/apt,175,4,12,2019-04-17,0.79,1,107 +21935569,Tiny (but comfy!) Private room Manhattan,43352661,Charles,Manhattan,Washington Heights,40.84344,-73.93922,Private room,20,1,21,2019-06-20,1.10,3,291 +21935727,"Designers' Brooklyn Loft – 2 bed, 2 bath",1341264,Noemie,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95929,Entire home/apt,300,6,1,2019-04-23,0.39,1,0 +21935921,Skylight Living in NYC,3484920,BonnieAnn,Manhattan,West Village,40.73811,-74.00348,Entire home/apt,275,2,4,2019-06-13,0.65,1,51 +21936014,Elegant Apartment with Spectacular views.,33261598,Marc,Manhattan,Midtown,40.7436,-73.98573,Shared room,185,1,2,2018-01-01,0.11,1,0 +21936033,LGA Newly Renovated Apt.2,156952896,Haijiao,Queens,East Elmhurst,40.76419,-73.87498,Entire home/apt,120,1,118,2019-07-07,6.05,2,79 +21936073,"Charming 1BR - King Bed, Full Kitchen, Laundry",6041929,Degelis,Manhattan,West Village,40.73253,-74.00859,Entire home/apt,220,4,11,2019-05-07,0.65,1,189 +21936080,Cozy Room Near Express Train to Manhattan,14043678,Justin,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93354,Private room,50,3,6,2018-10-08,0.32,1,363 +21936288,Infinite Bliss,118807152,Melissa,Queens,Elmhurst,40.74361,-73.87732,Private room,30,1,15,2019-06-30,0.77,1,249 +21936550,NYC master room with independent restroom for 2,42804325,诗月,Manhattan,Roosevelt Island,40.76858,-73.94436,Private room,70,7,1,2018-06-12,0.08,1,0 +21937197,"Warm & Cozy Haven, 6 min. to N/W, 20 to Manhattan!",4811900,Bridget,Queens,Ditmars Steinway,40.77051,-73.90944,Private room,600,2,5,2018-04-29,0.27,2,0 +21937306,Spacious Room in 3 bedroom Greenpoint Apartment,1349340,Noah,Brooklyn,Greenpoint,40.72728,-73.95313,Private room,75,7,0,,,2,0 +21937451,AMAZING STUDIO IN CHELSEA (up to 4) Special price!,21621745,Paulina,Manhattan,Chelsea,40.74927,-74.00122,Entire home/apt,200,1,7,2019-03-04,0.37,1,0 +21938049,Big Bedroom w/ Bathroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.70039,-73.93009,Private room,60,7,74,2019-06-15,3.98,3,31 +21938508,Ideal Stay in NYC! ☆☆☆☆☆,70562577,Ryan,Queens,Astoria,40.77118,-73.92548,Entire home/apt,125,3,10,2019-04-26,0.54,1,64 +21939323,Older Victorian front 1st floor D train corner,12834599,Ms. Edith,Brooklyn,Borough Park,40.63294,-73.99475,Private room,50,3,2,2019-01-01,0.14,4,90 +21939817,COZY & CLEAN ROOM IN ASTORIA 15 MIN TO MANHATTAN.,153066091,Hasan,Queens,Ditmars Steinway,40.77323,-73.91796,Private room,75,2,1,2017-12-06,0.05,1,89 +21942269,Natural Light Filled Apartment with lots of space,49716547,Josh,Manhattan,East Village,40.73127,-73.98729,Entire home/apt,150,7,4,2019-05-11,0.22,1,18 +21942371,Private Bedroom in the LES,2546411,Gerard,Manhattan,Lower East Side,40.71991,-73.98832,Private room,78,10,0,,,1,0 +21942606,Historic Upper East Side Apartment,160109287,Elaine,Manhattan,Upper East Side,40.77154,-73.94968,Entire home/apt,200,4,1,2017-12-30,0.05,1,0 +21942984,3 Bedroom Prime Park Slope 6th Ave/Barclays Center,157788926,Josh,Brooklyn,Park Slope,40.67913,-73.97477,Entire home/apt,199,2,45,2019-06-09,2.34,1,302 +21943047,Huge private room in Williamsburg,29238030,Celine,Brooklyn,Williamsburg,40.71284,-73.94805,Private room,70,2,3,2018-05-02,0.20,1,0 +21943938,Brooklyn Studio Tower!,18061262,Gilana,Brooklyn,Clinton Hill,40.68173,-73.96703,Entire home/apt,115,15,7,2018-10-01,0.38,1,5 +21945438,"Bright, Spacious 3 BR Duplex-Great for Families",262862,Helena,Brooklyn,Williamsburg,40.71822,-73.93996,Entire home/apt,250,3,1,2017-12-29,0.05,1,0 +21945454,Pretty two-bed pre-war apartment in Brooklyn,11322502,Kimberly,Brooklyn,Bedford-Stuyvesant,40.68885,-73.95296,Entire home/apt,142,2,5,2018-04-29,0.25,1,0 +21945556,Cozy Room in Bushwick.,62307584,Mo,Brooklyn,Bushwick,40.68187,-73.90815,Private room,67,30,3,2018-08-13,0.16,1,179 +21945851,Spacious Room for Rent!,50522860,Nora,Manhattan,Inwood,40.86144,-73.92423,Private room,40,1,2,2018-01-01,0.10,1,0 +21945886,Wyndham Midtown 45 at New York City - Studio,160175378,Russ,Manhattan,Midtown,40.75184,-73.97198,Entire home/apt,350,3,1,2017-12-15,0.05,2,0 +21946495,Havemeyer mini Duplex in central Williamsburg,160194786,Patrick,Brooklyn,Williamsburg,40.71515,-73.95231,Entire home/apt,160,2,59,2019-06-17,3.28,1,81 +21946665,Great One Bedroom Apartment - 20 mins from NYC,55184486,Amado,Brooklyn,Bushwick,40.68885,-73.91353,Entire home/apt,149,1,74,2019-07-03,5.35,2,115 +21946776,Calming room in a thrilling city,43011952,Jennifer,Brooklyn,Crown Heights,40.6736,-73.95043,Private room,75,1,0,,,1,0 +21947011,Brand New 2 Bedroom 2 Bath Downtown Gem,35743804,Brad,Manhattan,Financial District,40.70758,-74.00409,Entire home/apt,850,1,16,2019-04-21,0.83,1,174 +21947012,"Private Rm; JFK(10mins), LGA(15mins), Manh(30mins)",158625100,Vic,Queens,Richmond Hill,40.68683,-73.82743,Private room,75,1,25,2019-05-29,1.30,2,48 +21947039,Wyndham Midtown 45 at NYC - 2 Bedroom Presidential,160175378,Russ,Manhattan,Midtown,40.75341,-73.97313,Entire home/apt,400,1,1,2017-12-06,0.05,2,0 +21947062,Big bedroom at the heart of Manhattan,33570672,Tomislav,Manhattan,Theater District,40.75493,-73.98618,Private room,95,2,100,2019-07-01,5.35,1,18 +21947114,Bushwick Loft On Trainline,40110507,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68691,-73.91798,Entire home/apt,85,4,5,2019-01-03,0.28,1,0 +21947260,Luxury Studio Apartment right by Central Park!!!,72936542,Taylor,Manhattan,Midtown,40.76119,-73.97005,Shared room,130,1,1,2017-11-28,0.05,1,0 +21947445,"Perfect, Private Garden Apartment (Prime Brooklyn)",34595916,Andrew,Brooklyn,South Slope,40.66794,-73.98638,Entire home/apt,149,5,55,2019-06-27,3.03,3,235 +21947959,Charming Clinton Hill Apartment,7709326,Tiff,Brooklyn,Clinton Hill,40.69513,-73.96245,Entire home/apt,90,3,0,,,1,0 +21948222,Serene 2 bed w/ private backyard - flatbush ditmas,2300590,Bess,Brooklyn,Flatbush,40.64495,-73.9576,Entire home/apt,95,3,2,2018-01-06,0.10,1,0 +21948560,Luxury Skyline Views! Best Panaromic Views Of NYC.,23001368,Sofia,Manhattan,Tribeca,40.71735,-74.00605,Entire home/apt,850,2,14,2019-06-19,0.76,1,36 +21948571,Private & Comfortable Room in a quiet neighborhood,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95196,Private room,60,2,48,2019-06-25,2.55,3,276 +21948799,Bedroom in Beautiful House with Sunny Porch,16686426,Helen,Queens,Long Island City,40.75982,-73.93138,Private room,65,2,10,2019-05-18,0.52,1,0 +21949305,Artsy Little Bedstuy Nook,315606,Cynthia,Brooklyn,Bedford-Stuyvesant,40.68679,-73.9495,Private room,45,30,0,,,2,95 +21949815,Upper west studio next to Central Park,116430338,Dova,Manhattan,Upper West Side,40.79572,-73.96781,Entire home/apt,105,7,1,2018-01-02,0.05,1,0 +21950012,Large 3 Bedroom Apartment in Hell's Kitchen,53829616,Joaquin,Manhattan,Hell's Kitchen,40.75979,-73.98953,Entire home/apt,395,6,1,2018-01-01,0.05,1,0 +21950138,Beautiful 3 bedroom Brownstone in Boerum Hill,25321849,Anne,Brooklyn,Boerum Hill,40.6853,-73.98804,Entire home/apt,550,3,6,2019-05-27,0.42,2,14 +21950350,BROOKLYN Sunny queen size bedroom in amazing apartment.,11486122,Magdalena,Brooklyn,Bushwick,40.68949,-73.90575,Private room,50,3,2,2018-01-01,0.10,1,0 +21950927,Time Square- Great Luxury Apartment,105389630,Alex,Manhattan,Theater District,40.75817,-73.98886,Entire home/apt,190,4,0,,,1,0 +21950963,Large midtown 1 bed apartment with views,50414933,Charlie,Manhattan,Hell's Kitchen,40.76321,-73.98775,Entire home/apt,160,5,5,2019-04-22,0.27,1,1 +21951042,Comfy Renovated Basement Apartment Near JFK,18918881,Anna,Queens,Far Rockaway,40.60273,-73.75466,Entire home/apt,51,1,4,2017-12-20,0.21,1,0 +21951077,*LUSH SPACIOUS WEST VILLAGE LOFT*,1620498,Bec,Manhattan,Chelsea,40.73858,-73.99651,Entire home/apt,220,7,3,2018-08-19,0.16,1,0 +21951184,Upper East Side Private Entire Studio,59394680,Soojin,Manhattan,Upper East Side,40.77084,-73.94956,Entire home/apt,130,30,0,,,1,0 +21955216,"Bright, contemporary Kips Bay Studio apt",8801391,Alper Demis,Manhattan,Kips Bay,40.74381,-73.97944,Entire home/apt,300,3,0,,,1,180 +21956264,Beautiful bed bed room,110346058,Shirley,Queens,Jamaica,40.6741,-73.79775,Private room,45,4,12,2019-06-10,2.03,1,291 +21958076,Old World Charm in the Heart of Brooklyn R2,160300400,Tina,Brooklyn,Bay Ridge,40.62848,-74.03077,Private room,79,4,12,2019-06-30,0.62,2,175 +21958889,Upper West Side Brownstone Duplex by Central Park,160306249,Andy,Manhattan,Upper West Side,40.78165,-73.9749,Private room,55,2,14,2019-06-29,0.81,2,0 +21959523,Cozy and quiet private room,7045635,Nina,Brooklyn,Crown Heights,40.67177,-73.93947,Private room,45,5,1,2018-01-08,0.05,1,0 +21959695,Bronx hideaway,148100571,Jenny,Bronx,Soundview,40.82739,-73.88176,Entire home/apt,50,1,0,,,2,0 +21959796,Gorgeous Apt In Central Manhattan,90956690,Dean,Manhattan,Murray Hill,40.74661,-73.97698,Entire home/apt,200,4,2,2018-01-01,0.10,1,0 +21960412,Touchdown and Explore NYC! Sunlit 2 Bedroom,160318374,Giulia,Brooklyn,Bedford-Stuyvesant,40.67871,-73.92678,Entire home/apt,103,30,47,2019-05-10,3.20,2,105 +21960589,"Studio Queen Room In Gowanus Inn, Brooklyn",159091490,Melissa,Brooklyn,Gowanus,40.6771,-73.98449,Private room,139,1,6,2019-06-23,0.31,17,358 +21960659,Beautiful Huge Newly-Renovated Apt Great location.,21508828,Nguyen,Bronx,Kingsbridge,40.8739,-73.90364,Private room,69,1,31,2019-05-26,1.70,2,365 +21960720,"Cozy Lofted Room in Williamsburg, Brooklyn",2916281,Lacy,Brooklyn,Williamsburg,40.71353,-73.94337,Private room,60,7,2,2017-12-19,0.11,1,0 +21961462,Luxury 1B1B Apt with City View @ Columbia U,56067189,Yuanwen,Manhattan,Morningside Heights,40.80485,-73.96345,Entire home/apt,150,3,1,2017-12-14,0.05,1,0 +21962437,$850 up to 3 month female only,130149223,Laurene,Brooklyn,Crown Heights,40.67163,-73.93399,Private room,31,30,7,2019-06-23,0.36,1,302 +21962864,"Cozy private room w/private bath, Hell's Kitchen",25690203,Corin,Manhattan,Hell's Kitchen,40.76333,-73.98905,Private room,100,2,5,2018-04-06,0.26,1,0 +21963398,4BR 2 Bath Williamsburg Apt with Private Roof,11310081,Chandler,Brooklyn,Williamsburg,40.71204,-73.95245,Entire home/apt,650,2,1,2019-01-01,0.16,1,0 +21963418,Big Studio at Grand Central Station area.,3368678,Jose,Manhattan,Midtown,40.75232,-73.9689,Entire home/apt,210,3,21,2019-06-13,1.11,1,209 +21963428,Bright NYC Flat with Manhattan Views,8243469,Kathryn,Bronx,Port Morris,40.80024,-73.91422,Private room,49,3,59,2019-04-01,3.08,1,0 +21963575,ROOM IN THE HEART OF CROWN HEIGHTS,160343135,David,Brooklyn,Crown Heights,40.67307,-73.95236,Private room,30,3,2,2018-01-01,0.11,1,0 +21963723,Apartment in Sunnyside close to Manhattan.,58943675,Angelo,Queens,Sunnyside,40.74508,-73.92198,Entire home/apt,140,3,4,2018-11-05,0.21,1,0 +21964400,Spacious Private Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71733,-73.95028,Private room,71,2,30,2018-12-03,1.60,3,0 +21964596,Cozy fully furnished apartment in Bushwick,1020357,Peter,Brooklyn,Bushwick,40.69077,-73.9133,Entire home/apt,60,2,20,2019-03-10,1.13,1,6 +21964623,Bright artist loft 1BR (top floor) in Cobble Hill,160353062,Rebecca,Brooklyn,Boerum Hill,40.6882,-73.98999,Entire home/apt,90,30,2,2019-01-15,0.18,1,116 +21965110,Peaceful Bushwick Room with Great Views,77084335,Mahayla,Brooklyn,Bushwick,40.69871,-73.9361,Private room,80,3,2,2017-12-01,0.10,1,0 +21965119,Seaux Blu Urban Boho Studio,17271293,Myah,Brooklyn,Bedford-Stuyvesant,40.68104,-73.94031,Entire home/apt,60,2,38,2019-06-01,2.04,1,0 +21965717,Spacious South Slope Apt in Perfect Location!,8331436,Jesse,Brooklyn,South Slope,40.66724,-73.99023,Private room,109,2,4,2018-01-14,0.21,1,0 +21965948,Room in the heart of Bushwick,50577859,Zoe,Brooklyn,Bushwick,40.70424,-73.9199,Private room,75,2,3,2019-04-09,0.48,1,0 +21966051,Modern Studio Queen Room In Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67893,-73.98365,Private room,139,1,10,2019-06-19,0.51,17,364 +21966351,Stylish Queen Bed Room - Gowanus - Park Slope,159091490,Melissa,Brooklyn,Gowanus,40.6779,-73.98459,Private room,139,1,38,2019-07-07,2.85,17,337 +21966390,Designer Condo with Lofted Mezzanine,13284271,Troi,Brooklyn,Williamsburg,40.7134,-73.94833,Entire home/apt,350,2,14,2019-05-10,0.76,1,353 +21966418,Decorated cozy Brooklyn jewish apartment!,160233319,Josh,Brooklyn,Flatlands,40.6197,-73.94426,Entire home/apt,86,2,0,,,1,0 +21966432,Cozy Modern Studio,160369263,Luis,Brooklyn,Windsor Terrace,40.65325,-73.97868,Entire home/apt,100,2,61,2019-07-05,3.17,1,337 +21966498,An apartment in the heart of Williamsburg,9640114,Alexander,Brooklyn,Williamsburg,40.71171,-73.95491,Private room,120,2,2,2018-01-02,0.10,1,0 +21966592,True Brooklyn Experience Gowanus Inn Queen Bedroom,159091490,Melissa,Brooklyn,Gowanus,40.67727,-73.9838,Private room,139,1,46,2019-07-06,2.36,17,342 +21966757,Harlem World USA,135836462,Beny,Manhattan,Harlem,40.81532,-73.95359,Private room,150,3,0,,,1,89 +21966758,Casa Rosada in El Barrio,3179146,Adrián,Manhattan,East Harlem,40.79746,-73.93513,Entire home/apt,161,3,3,2018-03-18,0.16,1,0 +21966880,SunBathed WestVillage/Greenwich 1 bed apt,160374143,Jane,Manhattan,West Village,40.7349,-74.00618,Entire home/apt,245,2,42,2019-06-16,2.27,1,141 +21967259,Luxury Chelsea Condo on the High Line park,160376922,Alesia,Manhattan,Chelsea,40.74918,-74.00369,Entire home/apt,800,1,11,2018-08-22,0.56,1,0 +21967332,Lower East Side Luxury,55403309,Justin,Manhattan,Lower East Side,40.7209,-73.98909,Entire home/apt,350,5,0,,,2,0 +21967336,Affordable & Cozy Apartment near Prospect Park,1852207,Christie,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96036,Entire home/apt,135,3,3,2019-01-03,0.16,1,0 +21967378,Large 2 Bedroom Apt in East Village,11713422,Saket,Manhattan,East Village,40.73025,-73.9861,Entire home/apt,349,5,0,,,2,0 +21967523,Comfy 1 bedroom in the heart of HARLEM,160379705,Jamesetta,Manhattan,Harlem,40.8041,-73.95261,Private room,35,2,7,2018-01-03,0.37,1,0 +21967562,Old World Charm in the Heart of Brooklyn R1,160300400,Tina,Brooklyn,Bay Ridge,40.63014,-74.03126,Private room,79,4,27,2019-06-27,1.44,2,176 +21967615,Ideal 3 Bedroom Apartment by Times Square,15146492,Kevin,Manhattan,Hell's Kitchen,40.76447,-73.99056,Entire home/apt,649,2,0,,,1,0 +21967654,Charming room downtown Manhattan,81379480,Anders,Manhattan,Lower East Side,40.72317,-73.99084,Private room,80,14,0,,,1,0 +21967751,Spacious 1 Bedroom with Backyard in Williamsburg,72760017,Frankie,Brooklyn,Williamsburg,40.70892,-73.96584,Entire home/apt,200,4,3,2019-05-22,0.16,1,0 +21967835,Greenpoint Hideaway,16840416,Jeffrey,Brooklyn,Greenpoint,40.72379,-73.9416,Entire home/apt,225,2,1,2018-02-15,0.06,1,0 +21968568,Cozy Room in Fairy Bushwick Apartment,123354518,Elena,Brooklyn,Bushwick,40.70075,-73.92422,Private room,50,4,0,,,2,0 +21969058,East Harlem Pied A Terre,16864813,Kim,Manhattan,East Harlem,40.80255,-73.94349,Entire home/apt,300,3,38,2019-06-21,2.42,1,272 +21970259,LARGE PRIVATE ROOM BY EVERYTHING MIDTOWN MANHATTAN,155125855,Vicente,Manhattan,Midtown,40.74739,-73.98344,Private room,130,1,40,2018-11-04,2.08,3,0 +21970350,Large Room in 2 bedroom Williamsburg/Bushwick,861330,Joseph,Brooklyn,Williamsburg,40.70255,-73.94408,Private room,40,30,0,,,3,0 +21970487,Newly Renovated Bed-Stuy Brownstone Apartment,158298807,Marcia,Brooklyn,Bedford-Stuyvesant,40.69355,-73.95197,Entire home/apt,90,2,42,2019-06-23,2.18,1,52 +21971593,Private newest room in Bushwick.,146345538,Sergii,Brooklyn,Bushwick,40.69475,-73.91507,Private room,50,30,1,2018-10-04,0.11,5,361 +21972082,Amazing cozy and warm male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71172,-73.98665,Shared room,35,14,3,2019-01-21,0.25,28,322 +21972403,Amazing private room in East Bushwick,101970559,Sergii,Brooklyn,Bushwick,40.69398,-73.90719,Private room,50,30,1,2018-12-22,0.15,6,365 +21972697,Newly private room in best Co-Living,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94076,Private room,50,30,4,2018-03-08,0.21,10,364 +21973631,Need a Beautiful place to stay?,3832479,Hunderson,Brooklyn,Crown Heights,40.67504,-73.93956,Private room,50,30,0,,,1,113 +21973767,Spring in NYC! The perfect spot.,13242534,Elizabeth,Manhattan,Chelsea,40.73936,-73.99753,Entire home/apt,250,7,6,2018-06-05,0.33,1,0 +21975315,"Bright, 1.5 bedroom apartment in E. Williamsburg",2099205,Alexandra,Brooklyn,Williamsburg,40.71212,-73.94011,Entire home/apt,180,3,9,2019-03-25,0.53,1,0 +21975709,Designer 2 Bedroom Loft**Greenwich Village**4BEDS*,8837750,Mark,Manhattan,Greenwich Village,40.73539,-73.99547,Entire home/apt,485,5,45,2019-07-07,2.36,1,203 +21976874,Luxury Williamsburg 2-Story Apartment w/ Patio,3052833,Justin,Brooklyn,Williamsburg,40.71622,-73.94462,Entire home/apt,350,2,22,2019-06-12,1.15,1,132 +21977042,Brighton Beach Hideaway 5 min walk from the Beach,160457828,Adam,Brooklyn,Brighton Beach,40.57872,-73.96009,Entire home/apt,99,1,117,2019-07-07,6.07,1,68 +21977693,Sunny Private Bedroom in East Village,2863092,Emma,Manhattan,East Village,40.7253,-73.98861,Private room,85,7,0,,,1,0 +21977987,"Bright, airy, Soho 1 bedroom",16775193,Jen,Manhattan,SoHo,40.72224,-74.00356,Entire home/apt,150,14,1,2017-12-22,0.05,1,0 +21978019,Sunny and Spacious Nolita 1BR apartment!,7650212,Alana,Manhattan,Nolita,40.72224,-73.99438,Entire home/apt,300,5,7,2018-11-14,0.46,1,0 +21978281,Welcome to Brooklyn! Stay in Bed-Stuy!,151777787,Kristina,Brooklyn,Brownsville,40.67528,-73.906,Private room,40,2,3,2018-01-07,0.16,2,0 +21978366,Modern Bedstuy private bedroom,6441887,Su,Brooklyn,Bedford-Stuyvesant,40.69131,-73.93387,Private room,60,1,9,2018-06-01,0.46,2,0 +21978558,Luxury Modern Apartment by Central Park,21657795,Musa,Manhattan,Harlem,40.8029,-73.95576,Entire home/apt,100,3,1,2017-12-08,0.05,1,0 +21979050,SoHo/NoLiTa Perfect Location,144857346,Grace,Manhattan,Nolita,40.72389,-73.9954,Entire home/apt,275,2,1,2017-12-07,0.05,3,0 +21979387,Brownstone 1 Bedroom Apt in Bushwick,160474324,Noel,Brooklyn,Bushwick,40.69267,-73.9218,Entire home/apt,70,5,1,2017-12-14,0.05,1,0 +21979566,Mid-Century Modern 1 BR with Stunning Views,45406877,Rup,Manhattan,Civic Center,40.71237,-74.00747,Entire home/apt,100,2,3,2019-03-02,0.46,1,0 +21979587,ENTIRE 1.5 BR in Greenpoint / Williamsburg,20214811,Lauren,Brooklyn,Greenpoint,40.72672,-73.94715,Entire home/apt,66,3,3,2018-05-21,0.17,1,0 +21979890,Beautiful beach house in NYC!,27272337,Peter,Queens,Arverne,40.58793,-73.79268,Entire home/apt,250,4,40,2019-06-24,2.16,1,183 +21979898,BIG Artistic LOFT Studio right near waterfront!,17425841,Joshua,Brooklyn,Williamsburg,40.71642,-73.96459,Entire home/apt,99,30,0,,,1,0 +21980316,Modern Apartment with a lot of natural light,5191980,Jen,Brooklyn,Crown Heights,40.67728,-73.95676,Entire home/apt,200,2,0,,,1,0 +21980586,Quiet and Sunny Williamsburg One Bedroom!,51765609,Whitney,Brooklyn,Williamsburg,40.71015,-73.94672,Entire home/apt,100,90,1,2019-06-27,1,1,3 +21980711,Beautiful Private Apartment With Rooftop Access,75485224,Alysee,Brooklyn,Williamsburg,40.72085,-73.95723,Entire home/apt,55,2,15,2018-02-28,0.77,1,0 +21980723,Modern Renovation of original Manhattan Townhouse.,6675176,David,Manhattan,Harlem,40.82277,-73.9555,Entire home/apt,650,5,23,2019-06-29,1.35,1,301 +21981036,Comfortable studio duplex with a Queen size Casper mattress. A 15-minute walk to Union Square and a two-block walk to the subway. Beautiful light in the morning.,75664810,Leena,Manhattan,Gramercy,40.73878,-73.9839,Entire home/apt,100,2,4,2019-01-15,0.32,1,0 +21981313,Lovely spacious apartment in prime location,44102819,Anne,Brooklyn,Greenpoint,40.72539,-73.95473,Entire home/apt,120,7,1,2018-01-04,0.05,1,0 +21981703,Beautiful and Charming 2 Bedroom in Brooklyn!,2066240,Marcella,Brooklyn,Crown Heights,40.67405,-73.94419,Entire home/apt,12,3,0,,,1,0 +21981789,Spacious light room in a cool neighborhood,100672521,Angie,Manhattan,Lower East Side,40.7128,-73.99045,Private room,88,1,44,2019-06-28,2.25,3,73 +21981845,A happy home,158178970,Raquel,Staten Island,Randall Manor,40.63108,-74.12512,Private room,27,1,21,2019-06-19,1.14,3,287 +21982096,"Friendly, bustling & safe first floor BK gem!",33738190,Jen,Brooklyn,Sunset Park,40.66222,-73.99567,Private room,85,1,0,,,3,0 +21982177,Gramercy Park Pied à Terre,6587683,Angele,Manhattan,Gramercy,40.73716,-73.98835,Entire home/apt,150,2,21,2019-06-26,1.10,1,1 +21982223,Gorgeous 1BR 1.5 Bath Duplex with Terrace,44253752,Heather Garcia,Manhattan,Upper East Side,40.7745,-73.94844,Entire home/apt,150,8,0,,,1,0 +21982333,Casa de Compri Int'l,160322636,Leland,Brooklyn,East New York,40.66379,-73.89127,Private room,50,2,43,2019-07-01,2.19,1,172 +21982534,Charming 1.5 bdrm apt in W'burg - family friendly!,58847382,Emily,Brooklyn,Williamsburg,40.71271,-73.94284,Entire home/apt,125,1,1,2018-01-03,0.05,1,0 +21982618,A cozy apartment in Hamilton Heights!,34320483,Jonathan,Manhattan,Harlem,40.8262,-73.95035,Private room,43,3,1,2017-11-29,0.05,1,0 +21982630,One Bedroom w/ Backyard Oasis in Williamsburg,160503827,Christopher,Brooklyn,Williamsburg,40.71157,-73.94308,Entire home/apt,90,3,7,2019-03-31,0.36,1,0 +21982707,Spacious Apartment in West Village,17038671,Anthony,Manhattan,West Village,40.73144,-74.00388,Entire home/apt,150,2,3,2018-08-12,0.16,2,0 +21982758,Cozy 1 Bedroom in the Heart of Clinton Hill,10763283,Heather,Brooklyn,Clinton Hill,40.68165,-73.96006,Entire home/apt,110,3,15,2019-06-04,0.83,1,3 +21982995,Cozy home in Astoria Queens.,160507191,Nikos,Queens,Astoria,40.76017,-73.90945,Entire home/apt,150,4,29,2019-01-01,1.48,1,0 +21983066,Great comfortable conveniently located room,160507714,Maria,Brooklyn,Fort Greene,40.68286,-73.97134,Private room,80,1,1,2018-01-01,0.05,1,0 +21983105,Cute Loft in the Heart of Greenpoint Brooklyn!,156976885,Carrie,Brooklyn,Greenpoint,40.72549,-73.94453,Entire home/apt,120,3,0,,,1,0 +21983211,Large Master Bedroom in Midtown West,5625684,M,Manhattan,Hell's Kitchen,40.76535,-73.98765,Private room,130,12,2,2019-01-01,0.14,1,31 +21983275,Spacious cozy apartment w/ beautiful backyard!,33978706,Pierre Yves,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94275,Entire home/apt,196,5,4,2019-05-05,0.22,1,3 +21983362,Cozy Urban Retreat,18495460,Frank,Brooklyn,Crown Heights,40.67288,-73.95444,Entire home/apt,115,30,4,2019-05-31,0.25,3,292 +21983547,"Spacious, Bright 1 BR in Prime Midtown West",12128527,Andy,Manhattan,Chelsea,40.75172,-73.99784,Entire home/apt,225,2,38,2019-07-01,2.00,2,257 +21983780,Bright Designer NoHo/Greenwich Village Loft,15220846,Marika,Manhattan,NoHo,40.72705,-73.9933,Entire home/apt,274,4,4,2019-04-06,0.22,1,7 +21984139,Columbus Circle Spacious Studio near everything,16025677,Meng-Mei,Manhattan,Hell's Kitchen,40.769,-73.98757,Entire home/apt,107,4,1,2018-03-13,0.06,2,0 +21984170,Columbus Circle Spacious Studio near everything,16025677,Meng-Mei,Manhattan,Hell's Kitchen,40.76978,-73.98936,Entire home/apt,115,5,0,,,2,0 +21984189,Bryant Park,160520133,Jay,Manhattan,Midtown,40.75288,-73.98526,Entire home/apt,250,7,11,2019-07-03,0.58,1,265 +21984232,Cosy bedroom in bushwick near Jefferson L train,69546339,Michael,Brooklyn,Bushwick,40.70401,-73.92629,Private room,41,6,2,2018-05-10,0.11,2,0 +21984342,Cozy In Clinton Hill,156831639,Ashley,Brooklyn,Clinton Hill,40.68318,-73.96624,Entire home/apt,125,21,0,,,1,0 +21984356,Brooklyn In Style Queen Room in Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67943,-73.98387,Private room,169,1,12,2019-06-30,0.62,17,364 +21985066,Crown Heights Comfort: Cozy Room & Warm Livingroom,52610301,Jason,Brooklyn,Crown Heights,40.67068,-73.95764,Private room,43,1,5,2018-01-01,0.26,1,0 +21985070,Cozy Room 2 MINIUTES WALK to 1 TRAIN,5400884,Cassie,Manhattan,Upper West Side,40.80257,-73.96725,Private room,99,1,2,2017-12-19,0.10,1,0 +21985279,"3-Bedroom House with Hot Tub Near JFK, LGA & NYC",151880786,Colin,Queens,Richmond Hill,40.70231,-73.82722,Entire home/apt,66,30,9,2018-09-16,0.47,1,173 +21987828,Sunny Private Room in 3-Bedroom Apt.,14535843,Luna,Brooklyn,Flatbush,40.64215,-73.95685,Private room,38,4,1,2018-01-01,0.05,1,0 +21989166,New Brooklyn HotSpot,105758291,Junior,Brooklyn,East Flatbush,40.6467,-73.94841,Entire home/apt,150,4,35,2019-06-25,2.82,1,105 +21990254,"The BlossomBoudoir. Clean, Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68514,-73.87333,Shared room,49,2,32,2019-07-06,1.67,3,5 +21990808,***SLEEPING IN THE GOLDEN PLACE***,159156636,,Manhattan,Hell's Kitchen,40.75835,-73.99065,Private room,120,1,88,2018-12-14,4.93,3,0 +21991066,Central Park North 1BR,4130601,Rei,Manhattan,East Harlem,40.79748,-73.948,Private room,75,18,1,2018-01-09,0.05,1,0 +21991970,Bedroom in Luxury Building in Financial District,65046976,Frank,Manhattan,Financial District,40.70518,-74.00881,Private room,88,1,1,2018-08-26,0.09,1,0 +21992083,"Walk everywhere, See everything! +2BR Midtown West",95010593,Julien,Manhattan,Hell's Kitchen,40.75289,-73.99403,Private room,300,1,104,2019-07-05,5.59,1,19 +21993232,"LOCATION, LOCATION, LOCATION!",129577022,Amanda,Manhattan,Kips Bay,40.74421,-73.98007,Entire home/apt,205,3,2,2018-01-01,0.10,1,0 +21993629,Williamsburg Apartment with Private Backyard,1974292,Sara,Brooklyn,Williamsburg,40.71382,-73.94385,Entire home/apt,199,2,19,2019-07-01,1.03,1,297 +21993956,Studio-Sized Master Bedroom with Great Amenities!,7465002,Rena,Queens,Astoria,40.76552,-73.92576,Private room,50,3,3,2018-06-29,0.16,1,0 +21994561,Small bedroom in comfy apartment @Upper West Side,2928002,Jerome,Manhattan,Upper West Side,40.79917,-73.96795,Private room,69,4,2,2018-01-11,0.11,1,0 +21994769,EXPERIENCE NYC The Brooklyn Way Private 2 bedrooms,160601986,Alexander,Brooklyn,Mill Basin,40.61224,-73.91854,Entire home/apt,85,3,25,2019-07-02,1.30,1,139 +21995883,Chelsea urban style loft,79886089,Stephanie,Manhattan,Chelsea,40.74624,-73.99273,Private room,150,5,4,2019-01-01,0.22,1,0 +21995927,Spacious Chic UES 1Br by Central Park,4683188,Emily,Manhattan,Upper East Side,40.77885,-73.95756,Entire home/apt,250,5,0,,,1,0 +21996377,HUGE Cobble Hill 2BR/2BA,822034,Rly,Brooklyn,Cobble Hill,40.68719,-73.99384,Entire home/apt,210,30,0,,,1,54 +21996542,East Village 2 Bedroom Apt in Pre War/Doorman Bldg,11951403,Kacy,Manhattan,East Village,40.72732,-73.98056,Entire home/apt,475,30,0,,,1,0 +21996983,Modern Plush Studio Apt near Times Square in NYC!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76084,-73.99899,Entire home/apt,299,30,0,,,18,365 +21997208,Spacious 2 Bed Apartment on the UWS,154608871,Daniel,Manhattan,Upper West Side,40.78707,-73.9769,Entire home/apt,215,2,0,,,1,0 +21997763,Chic Carroll Gardens Home,621266,Barnaby,Brooklyn,Carroll Gardens,40.67912,-74.00227,Entire home/apt,180,7,0,,,1,0 +21997804,"Studio, Best Location near Columbus Circle",812331,Oliver,Manhattan,Hell's Kitchen,40.76691,-73.98545,Entire home/apt,150,7,1,2018-01-03,0.05,1,7 +21998044,"Cozy, private room near Prospect Park & BK Museum",4102079,Rodrigo,Brooklyn,Prospect Heights,40.67487,-73.96409,Private room,75,1,65,2019-07-05,4.03,1,313 +21999647,Huge Room in East Harlem on Madison Avenue,159655531,Kelvin,Manhattan,East Harlem,40.8009,-73.94333,Private room,60,3,86,2019-07-04,4.48,2,50 +22000019,Private renovated room with your own bathroom,160643378,Kate,Brooklyn,Bedford-Stuyvesant,40.68507,-73.92612,Private room,75,2,20,2018-11-30,1.08,1,0 +22000255,"Cozy private room, 10 mins away from Central Park!",157728550,Kem,Manhattan,East Harlem,40.80219,-73.94383,Private room,150,1,107,2019-06-25,5.55,2,365 +22000376,2000呎 法拉盛美丽豪华大套房,135530716,Angela,Queens,Flushing,40.76483,-73.79583,Entire home/apt,460,1,49,2019-06-24,2.55,4,160 +22000430,Central Studio with 12 foot ceilings - Not Shared,159154462,Ken,Manhattan,Midtown,40.75741,-73.98126,Entire home/apt,125,1,53,2019-06-30,3.71,2,14 +22000913,Harlem Jazz (private bath),152263768,John,Manhattan,Harlem,40.82204,-73.94293,Private room,65,1,60,2019-06-22,3.08,1,101 +22001233,NYC Gallery,12927770,Anton,Manhattan,Upper East Side,40.77995,-73.95621,Entire home/apt,150,3,0,,,1,0 +22001385,Comfortable room in FIDI,4455698,Pierre,Manhattan,Two Bridges,40.70992,-74.00102,Private room,85,7,2,2018-08-18,0.11,3,311 +22001568,"Spacious bedroom in Greenpoint, BK",5445919,Nargis,Brooklyn,Greenpoint,40.7249,-73.94105,Private room,75,7,3,2018-12-31,0.16,1,0 +22001596,Modern chic room in the heart of NY,113918131,Hem,Manhattan,Gramercy,40.73433,-73.98371,Private room,99,5,0,,,1,0 +22001621,Entire Loft Style 1BR Apartment in Greenpoint,103863147,Gabriele,Brooklyn,Greenpoint,40.73388,-73.95536,Entire home/apt,159,3,32,2019-06-18,1.67,1,56 +22002827,Cozy 3rd Floor Studio in the Heart of Bedstuy,11530808,Stephen,Brooklyn,Bedford-Stuyvesant,40.68416,-73.93176,Entire home/apt,60,2,1,2018-01-01,0.05,1,0 +22005115,Two floor apartment near Central Park,82746113,Cecilia,Manhattan,Upper West Side,40.78761,-73.96862,Entire home/apt,135,5,1,2019-06-30,1,2,145 +22007011,Private room. Bushwick. 18 min train to NYC,160702123,Roxanne,Brooklyn,Bushwick,40.69234,-73.90889,Private room,50,1,13,2019-01-02,0.70,1,0 +22007950,Bushwick/Brooklyn Charming Private Room,49735439,Merida,Queens,Ridgewood,40.69587,-73.9045,Private room,65,3,1,2018-05-31,0.07,2,125 +22008625,Sunny bedroom on Bed-Stuy/Bushwick boarder,3147227,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92793,Private room,100,10,0,,,1,0 +22008794,Beautiful Bright Room in Bushwick,1230739,Dylan,Brooklyn,Bushwick,40.69159,-73.91235,Private room,35,14,0,,,1,0 +22009072,"Home in the Heart of Harlem, Express Subway Stop",6493857,Samantha,Manhattan,Harlem,40.81083,-73.95248,Private room,69,2,0,,,1,0 +22009620,"Super Cute, Cozy, & Convenient...",160707142,Jamel,Brooklyn,East Flatbush,40.65046,-73.93633,Entire home/apt,85,2,23,2019-06-30,1.25,1,149 +22009898,"Calm, quirky Harlem apartment Room 1",41940272,Nicole,Manhattan,Harlem,40.82237,-73.94617,Private room,54,2,6,2018-04-16,0.31,3,5 +22010163,Modern 2 bedroom apartment close to subway,790872,Tri,Manhattan,East Harlem,40.80481,-73.93812,Entire home/apt,120,1,3,2018-03-18,0.16,2,0 +22010257,"King-size bedroom, great location, next to park!",3574922,Shay,Brooklyn,Flatbush,40.65318,-73.96253,Private room,75,2,8,2019-01-28,0.42,1,0 +22010343,Nice and cozy apartment! 15 mins from manhattan,22365640,Katherine,Queens,Woodside,40.74434,-73.91108,Entire home/apt,100,2,0,,,1,0 +22010459,"Calm, Cozy 2 Bedroom Apartment",41940272,Nicole,Manhattan,Harlem,40.82252,-73.94597,Entire home/apt,73,4,11,2019-04-22,0.61,3,6 +22010594,Spacious Apartment with Work Space,160726948,Mike,Manhattan,Kips Bay,40.74478,-73.97968,Entire home/apt,94,30,3,2019-01-20,0.16,2,155 +22011027,Fort Greene Loft,2084074,Sarah,Brooklyn,Fort Greene,40.69222,-73.97157,Entire home/apt,300,3,10,2019-06-19,0.70,1,82 +22011227,Bright Bedroom in Bushwick,3872416,Freddy,Brooklyn,Bushwick,40.70221,-73.91419,Private room,65,6,0,,,1,0 +22011311,"Modern, Cozy Apartment in the Heart of Bushwick!",97336460,Jillian,Brooklyn,Bushwick,40.69671,-73.92577,Private room,100,1,0,,,1,0 +22012650,East Village 1 bed in quiet neighbourhood,2502124,Saoirse,Manhattan,Gramercy,40.73297,-73.98435,Entire home/apt,186,9,25,2019-05-13,1.33,1,8 +22013423,Fully Stocked 1-Bedroom in Astoria!,48356178,Brandon,Queens,Long Island City,40.75797,-73.92908,Entire home/apt,113,5,9,2018-09-09,0.49,1,0 +22013965,Vintage,48655993,Ottilia,Queens,Elmhurst,40.74152,-73.87633,Private room,50,1,16,2019-05-06,0.84,1,49 +22014840,Sunny Bedroom Only 1 Metro Stop to Manhattan,32093643,Scarlett,Manhattan,Roosevelt Island,40.76211,-73.94887,Private room,70,2,2,2018-01-07,0.11,1,0 +22015654,The Nolita - A One Bedroom Apartment,159571314,Jacqueline,Manhattan,Nolita,40.72203,-73.99564,Entire home/apt,325,2,4,2018-07-21,0.21,1,0 +22016391,Your own Loft/gallery in Bushwick!,43872938,Shir,Brooklyn,Bushwick,40.69264,-73.90485,Private room,49,4,3,2018-04-09,0.17,1,0 +22016473,Big and bright STUDIO in E Williamsburg,29395562,Elena,Brooklyn,Williamsburg,40.71222,-73.93983,Private room,85,3,58,2019-06-17,3.14,1,5 +22017344,Full Floor Penthouse Loft- 3BR 2 Bath Times Square,160373219,Mo,Manhattan,Hell's Kitchen,40.76656,-73.98848,Entire home/apt,487,4,50,2019-06-19,2.61,1,198 +22017362,Sunny Studio in Carroll Gardens!,160660639,Annette,Brooklyn,Carroll Gardens,40.67617,-74.00107,Entire home/apt,49,1,81,2019-07-02,4.27,2,141 +22017432,"Beautiful, Spacious, and Zen Brooklyn dwelling",9605757,Doo,Brooklyn,Clinton Hill,40.68182,-73.9659,Entire home/apt,150,3,14,2019-04-21,0.74,1,84 +22017621,"Dream Renovated Manhattan Apt, 5 stops to Midtown!",62706408,Kirstyn,Manhattan,Washington Heights,40.84399,-73.94228,Entire home/apt,80,3,0,,,1,0 +22017804,Cozy Room in Crown Heights,27105320,Eliana,Brooklyn,Crown Heights,40.67238,-73.95222,Private room,35,7,0,,,1,0 +22018219,"Warmth in Woodside, New York",25376759,Theis,Queens,Woodside,40.75247,-73.90033,Entire home/apt,90,3,1,2018-01-02,0.05,1,0 +22018921,Clean and simple Private Ensuite in Manhanttan,70235067,Caeli,Manhattan,Washington Heights,40.84754,-73.93229,Private room,34,3,4,2018-08-26,0.22,1,0 +22019218,Relaxing large middle room,131476075,Lakisha,Brooklyn,Bushwick,40.68571,-73.91317,Private room,51,1,19,2019-05-11,1.02,8,177 +22019519,Manhattan New York luxurious hotel,160792280,Dez,Manhattan,Midtown,40.76583,-73.98087,Entire home/apt,200,1,1,2017-12-02,0.05,2,0 +22019711,Sunlit Private Room in Uptown Manhattan,70338191,Dana,Manhattan,Washington Heights,40.85677,-73.92986,Private room,45,2,50,2019-06-30,2.69,1,3 +22019912,Private Room in HOME w/Professionals,13208109,Jenny,Brooklyn,Flatbush,40.64066,-73.9664,Private room,45,5,3,2018-07-15,0.16,1,0 +22020038,"Captivating sunny studio, close to everything",47414802,Jason,Manhattan,Harlem,40.80427,-73.9506,Entire home/apt,115,20,4,2018-09-30,0.21,2,282 +22020298,Humongous 10 feet ceiling room,131476075,Lakisha,Brooklyn,Bushwick,40.68751,-73.91194,Private room,60,1,25,2019-05-04,1.35,8,177 +22020827,Cosy 2-Bedroom in Bubbly Part of Manhattan,32237865,Joëlle,Manhattan,Harlem,40.80756,-73.94886,Entire home/apt,150,4,4,2018-12-29,0.21,1,0 +22020843,Smart NYC Access (3),74179880,Silvia,Brooklyn,East New York,40.67471,-73.88905,Private room,33,3,56,2019-06-19,3.19,8,305 +22023444,Luxury Studio Apartment,7647511,Mike,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92222,Entire home/apt,100,4,15,2019-06-17,0.81,1,0 +22026277,Wyndham Midtown 45 in Manhatten for Christmas,111188158,Cheryl,Manhattan,Midtown,40.75348,-73.97189,Entire home/apt,200,5,1,2018-12-29,0.16,1,0 +22026647,Duplex cozy Brooklyn,34216298,Koryn,Brooklyn,Williamsburg,40.7113,-73.9573,Entire home/apt,150,1,16,2019-06-29,1.17,1,334 +22026830,Prime Park Slope on 14th Street,160847231,Mike,Brooklyn,South Slope,40.66615,-73.98747,Entire home/apt,131,2,67,2019-06-27,3.94,1,61 +22027652,"Sunny Astoria Bedroom (near LGA, and Astoria Park)",47598303,Tina,Queens,Astoria,40.77205,-73.92997,Private room,58,1,5,2017-12-10,0.26,1,0 +22028251,Harlem Master bed and bath,135944525,Tiffany,Manhattan,Harlem,40.81876,-73.9536,Private room,45,1,0,,,1,0 +22028307,Gorgeous Bright Parlor Floor Thru,46719,Holly,Brooklyn,Park Slope,40.67149,-73.97957,Entire home/apt,300,4,3,2019-04-22,0.47,1,350 +22028706,"Bright, Beautiful and Quiet Condo w/Balcony",17879753,Rebecca,Brooklyn,Williamsburg,40.70843,-73.94479,Entire home/apt,102,3,2,2018-10-29,0.14,1,0 +22028894,20 mins to Manhattan. 7mins walk 2 subway.busesA,60291768,Kim,Queens,Elmhurst,40.73867,-73.87144,Entire home/apt,88,4,44,2019-06-04,2.33,2,39 +22029653,Quiet Artsy Astoria Bedroom Available,160862247,Peyton,Queens,Astoria,40.75694,-73.92558,Private room,57,5,0,,,1,0 +22029995,"Beautiful, bright apartment in prime Williamsburg",6967723,Emily & Mathias,Brooklyn,Williamsburg,40.71603,-73.95749,Entire home/apt,209,7,1,2018-01-02,0.05,1,0 +22030593,Comfortable warehouse conversion loft. STUDIO,338921,Benjamin,Brooklyn,Cobble Hill,40.68831,-73.99159,Entire home/apt,200,2,1,2019-06-30,1,1,1 +22030831,Luxury 1 Bedroom APT - 1 stop to Manhattan!,826567,Po,Queens,Long Island City,40.75135,-73.94281,Entire home/apt,120,3,1,2019-01-01,0.16,1,0 +22031003,Private and clean room near Columbia University,70919459,Teresa,Manhattan,Upper West Side,40.80259,-73.96446,Private room,60,5,0,,,1,0 +22031456,Brooklyn City Home,160495098,Miller,Brooklyn,Flatbush,40.63359,-73.94915,Entire home/apt,58,2,28,2019-02-24,1.46,5,0 +22031539,Manhattan Club,983223,Dorothy,Manhattan,Midtown,40.76581,-73.98235,Private room,200,2,1,2017-12-28,0.05,1,0 +22031683,"Modern master bedroom, LES, 2mn to train",4027689,Miguel,Manhattan,Lower East Side,40.71465,-73.98914,Private room,120,1,64,2019-07-06,4.10,2,32 +22031711,"Large, beautiful fully furnished studio for sublet",42051399,Ari,Manhattan,Harlem,40.82932,-73.94563,Entire home/apt,128,30,0,,,1,89 +22031905,"Sunny, Large Bushwick room - private ROOF TERRACE",9018136,Kyrié,Brooklyn,Bushwick,40.69699,-73.91531,Private room,60,2,8,2019-01-02,0.43,1,0 +22032210,Sunny Brooklyn Brownstone,67265708,Esteban,Brooklyn,Crown Heights,40.67712,-73.95132,Private room,110,7,0,,,1,89 +22032243,Historical Midtown East Retreat - Steps to the U.N,160892059,Cooper,Manhattan,Midtown,40.75292,-73.96386,Entire home/apt,145,5,16,2019-06-14,0.84,1,173 +22032605,Spacious Attic Room,160899890,Carly,Brooklyn,Midwood,40.61609,-73.95893,Private room,35,1,2,2018-01-02,0.11,1,0 +22032656,Huge Bedroom 3rd # in a privately own brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.69106,-73.93707,Private room,75,4,5,2019-04-11,0.50,3,132 +22033512,Quiet East Village Apartment for 3,12337690,Ran,Manhattan,East Village,40.72937,-73.98482,Entire home/apt,300,7,0,,,1,0 +22033927,"Brooklyn Loft, 3bed, 2bath, 15 mins to Manhattan",160891716,Amanda,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93857,Entire home/apt,325,2,21,2019-06-16,1.10,1,14 +22034112,Cozy Harlem Studio,38959084,Alvaro Luis,Manhattan,East Harlem,40.80589,-73.9414,Entire home/apt,200,4,6,2019-01-01,0.33,1,0 +22034977,South Bronx Hideaway,148100571,Jenny,Bronx,Soundview,40.82668,-73.8822,Entire home/apt,50,1,2,2017-12-09,0.10,2,0 +22035070,"Basic, convenient, private in Crown Heights",77181668,Molly,Brooklyn,Crown Heights,40.6717,-73.93593,Entire home/apt,120,6,0,,,1,5 +22035333,*Memory foam mattress lovers//Netflix!!,146449899,Fabian,Queens,Flushing,40.7467,-73.83456,Private room,53,1,166,2019-06-30,8.74,2,151 +22035507,Tudor City,20513673,Vera,Manhattan,Midtown,40.75417,-73.96556,Entire home/apt,90,6,6,2019-06-02,0.31,1,31 +22037644,Restorative haven in a great neighborhood,46972551,Catherine,Manhattan,Upper West Side,40.78623,-73.98146,Entire home/apt,110,2,33,2019-06-19,1.74,1,6 +22037715,Cozy artistic 3 bedroom home 15-20mins from jfk,160940380,Adeola,Queens,St. Albans,40.69863,-73.74941,Entire home/apt,250,3,39,2019-06-17,2.12,3,347 +22041636,Williamsburg Apartment by L Train,33588156,George,Brooklyn,Williamsburg,40.71671,-73.94069,Private room,53,7,0,,,1,0 +22042837,Fully furnished COOL private room.,33201402,Luis,Bronx,Mount Hope,40.84572,-73.91023,Private room,39,1,33,2019-07-04,1.93,1,8 +22043565,Perfect UWS Prewar 1 bedroom apartment!,160991451,Maurine,Manhattan,Upper West Side,40.79119,-73.9782,Entire home/apt,150,5,6,2019-03-14,0.32,1,0 +22043701,Cozy loft in Bushwick,77145207,Nicole,Brooklyn,Bushwick,40.69911,-73.92843,Private room,65,1,0,,,1,0 +22043923,Large Private Bedroom and Bath Near Shops & Parks,13636138,Jay,Brooklyn,Cobble Hill,40.68828,-73.99821,Private room,105,3,14,2019-06-07,0.80,1,173 +22044014,Entire Studio Steps from Central Park,105341430,Kseniya,Manhattan,Upper West Side,40.78608,-73.97252,Entire home/apt,100,1,116,2019-07-02,5.99,1,65 +22044378,Trendy 1br apartment in the heart of East Village,25325946,Kate,Manhattan,East Village,40.73029,-73.98439,Entire home/apt,175,2,0,,,1,0 +22044485,1BR room in a great Bushwick apartment,40959256,Daniel,Brooklyn,Bushwick,40.70062,-73.93103,Private room,50,3,8,2018-06-19,0.42,1,0 +22045060,MASSIVE 3 Bedroom NOHO LOFT,9522475,Liam,Manhattan,East Village,40.72434,-73.99099,Entire home/apt,455,30,26,2019-05-15,1.77,2,332 +22045554,Bright Private room with Ensuite Bathroom,10477204,Karen,Brooklyn,Clinton Hill,40.68827,-73.96583,Private room,70,20,0,,,1,0 +22046354,Master Bedroom in Upper West Side Duplex,160306249,Andy,Manhattan,Upper West Side,40.78313,-73.97555,Private room,58,3,2,2018-01-30,0.10,2,0 +22047243,Luxury NYC Apartment on Central Park West,7991202,Daniel,Manhattan,Upper West Side,40.79971,-73.96037,Entire home/apt,125,5,5,2019-05-29,0.27,1,7 +22047750,Clean Room #1 in Brooklyn Home 15 min from JFK,126110540,Janine,Brooklyn,East New York,40.66269,-73.8825,Private room,75,1,54,2019-06-10,2.80,3,179 +22047988,Quick access to the city for cheap,49139686,David,Manhattan,Harlem,40.82442,-73.9485,Private room,55,3,4,2018-01-01,0.21,1,0 +22048265,Luxurious Brooklyn Getaway - Comfy Couch & Sofabed,15681707,Joycelyn,Brooklyn,Crown Heights,40.67473,-73.91424,Shared room,29,2,4,2018-05-18,0.22,3,1 +22048368,Private room in bright Greenpoint apartment,88739067,Joana,Brooklyn,Greenpoint,40.73284,-73.95919,Private room,37,3,4,2018-08-27,0.22,1,0 +22049875,"Bright large studio loft, 100% private, Bushwick",62649248,Benjamin,Brooklyn,Bushwick,40.70429,-73.91688,Entire home/apt,90,2,89,2019-07-01,4.67,2,38 +22050046,Cozy Corner In Heart of Manhattan,155125855,Vicente,Manhattan,Midtown,40.74669,-73.98311,Shared room,65,1,76,2018-09-12,3.97,3,0 +22050058,法拉盛唯美独立房间,135530716,Angela,Queens,Flushing,40.76561,-73.79576,Private room,80,2,0,,,4,3 +22050355,Home Sweet Home in Astoria,125011763,Peter,Queens,Astoria,40.76106,-73.9078,Entire home/apt,95,1,64,2019-06-22,3.43,2,96 +22050927,法拉盛温馨亲子房,135530716,Angela,Queens,Flushing,40.76572,-73.79629,Private room,98,2,1,2018-03-22,0.06,4,3 +22051488,"法拉盛高档,奢华大套房(带按摩浴缸和淋浴的独立卫生间)",135530716,Angela,Queens,Flushing,40.76355,-73.79461,Private room,120,2,1,2017-12-26,0.05,4,6 +22051523,Room 1 at Lower Manhattan 18mins from Timesquare,161057073,Stella,Manhattan,Lower East Side,40.71983,-73.9877,Private room,90,2,52,2019-06-23,2.70,4,67 +22051863,Sunny Apt. near Columbus circle,44869463,Nardys,Manhattan,Hell's Kitchen,40.7668,-73.98428,Entire home/apt,160,3,0,,,1,0 +22054258,Chambre pour couple où personne seule,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82496,-73.91389,Private room,45,2,54,2019-06-23,2.94,2,313 +22055300,"Cozy Living room sofa bed,close to LGA/JFK/subway",40711894,Jessica,Queens,Elmhurst,40.74113,-73.88769,Shared room,41,1,9,2019-06-15,1.01,4,27 +22057103,Central Park Studio,14290739,Stanton,Manhattan,Upper West Side,40.79176,-73.96717,Entire home/apt,175,30,1,2018-12-18,0.15,3,3 +22057431,A Well-Appointed Home in a Historic BK Brownstone,60523852,Tariq,Brooklyn,Bedford-Stuyvesant,40.68522,-73.94512,Entire home/apt,150,3,2,2018-01-01,0.11,1,0 +22058411,"Spacious, Modern Two Bedroom, Two Bath in Harlem",4012917,Laura,Manhattan,East Harlem,40.8014,-73.94386,Entire home/apt,200,5,7,2019-01-04,0.38,1,9 +22058586,Private & Comfortable Room close to Manhattan!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95155,Private room,60,2,73,2019-06-30,3.82,3,180 +22058992,Cute & Cozy Two Room Studio in Brooklyn Heights,19628425,Ahyoung,Brooklyn,Boerum Hill,40.68632,-73.98903,Entire home/apt,80,30,3,2017-12-30,0.16,1,0 +22059169,Spacious 2 bedroom in heart of Brooklyn,32299529,Kimberle,Brooklyn,East New York,40.6729,-73.88902,Entire home/apt,81,7,1,2018-01-13,0.06,1,0 +22059272,"Comfy, spacious bedroom",25330183,Juan,Queens,Sunnyside,40.73688,-73.91945,Private room,31,3,2,2018-07-07,0.15,1,0 +22059276,Spacious room near Prospect Park & Brooklyn Museum,2343200,Ade,Brooklyn,Crown Heights,40.67019,-73.93996,Private room,47,3,0,,,1,125 +22059613,Cozy room in Brooklyn,75976584,Margot,Brooklyn,Bushwick,40.68727,-73.90702,Private room,50,1,0,,,1,0 +22060065,Wash Heights Corner Apt,3701760,Jake,Manhattan,Washington Heights,40.8411,-73.93751,Private room,50,4,5,2018-01-28,0.26,1,0 +22060142,Carroll Gardens Brooklyn Brownstone Guest Quarter,2717905,Nadia,Brooklyn,Carroll Gardens,40.67832,-73.99803,Private room,130,2,2,2018-10-01,0.19,1,179 +22060712,Great Location! One Bedroom Apt. in LES,40866184,Semhar,Manhattan,Chinatown,40.71467,-73.99239,Entire home/apt,105,14,12,2019-01-05,0.65,1,0 +22060924,"Private room, modern apartment w/ PRIVATE ROOF!",5234625,Caroline,Brooklyn,Williamsburg,40.70781,-73.94375,Private room,50,5,2,2018-11-27,0.22,1,0 +22062320,Large comfy Clean Bedroom in Brooklyn,6600911,Cristina,Brooklyn,Bensonhurst,40.61224,-73.98563,Private room,35,3,1,2017-12-31,0.05,2,61 +22062492,Studio Apt -Upper East Side,94543911,Gabrielle,Manhattan,Upper East Side,40.77176,-73.94943,Entire home/apt,115,2,2,2019-01-01,0.26,1,0 +22062860,"Light-filled, luxury condo with stunning views",737515,Joseph,Brooklyn,Greenpoint,40.72915,-73.95813,Entire home/apt,275,13,0,,,1,0 +22063652,Charming Central Park Studio Awaits!,161160095,Walter,Manhattan,Upper West Side,40.78726,-73.96867,Entire home/apt,170,3,42,2019-07-01,2.19,1,4 +22063918,25 minutes to Midtown NYC- Entire large apartment,2323561,Herminia,Queens,Elmhurst,40.74475,-73.88266,Entire home/apt,90,2,8,2019-01-02,0.43,1,0 +22064022,Cozy 1BR near the Brooklyn Navy Yard,16753102,Simon,Brooklyn,Fort Greene,40.6978,-73.97682,Entire home/apt,130,4,8,2019-01-06,0.43,1,0 +22064197,Upper West Side Central Park apartment,20153029,Tal,Manhattan,Upper West Side,40.77244,-73.98043,Entire home/apt,190,7,0,,,1,0 +22064262,Spacious beautiful studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74873,-73.97664,Entire home/apt,150,30,5,2019-04-06,0.40,50,364 +22064793,Classy Quiet Studio in LES!,611408,Geraldine,Manhattan,Lower East Side,40.71542,-73.98403,Entire home/apt,143,7,0,,,1,0 +22064879,"Bright, spacious, classic Manhattan apartment",13285212,Alex,Manhattan,Upper East Side,40.77775,-73.94957,Entire home/apt,200,5,0,,,1,0 +22064923,1 Room in a 5-room apartment in Harlem,95740953,Jeff,Manhattan,Harlem,40.82887,-73.9487,Private room,55,2,3,2018-01-02,0.16,1,0 +22064927,溫馨大套房,161172539,Rui Guang,Queens,College Point,40.7806,-73.84198,Private room,59,1,92,2019-07-04,5.01,1,79 +22065495,Huge bedroom in a renovated apt (females only!),43960739,Eliana,Manhattan,Washington Heights,40.84345,-73.94079,Private room,65,3,21,2019-05-27,1.12,2,1 +22066317,1br - Room Sublet (From Dec 13) (Upper West Side),35986301,Angie,Manhattan,Upper West Side,40.79722,-73.96205,Private room,50,5,1,2017-12-03,0.05,1,0 +22066430,Chic Williamsburg Mid-Century Apartment,20604809,Houman,Brooklyn,Williamsburg,40.71305,-73.95995,Entire home/apt,148,2,11,2019-06-23,0.58,1,64 +22066551,Big Sunny Harlem Bedroom Furnished (EASTER WEEK!),19900075,Taylor,Manhattan,Harlem,40.82393,-73.93947,Private room,55,7,0,,,1,35 +22066635,2 bedrooms apartment in Williamsburg- Brooklyn,9831905,Alice,Brooklyn,Williamsburg,40.71793,-73.95772,Entire home/apt,230,7,0,,,1,0 +22066865,Midtown escape,76728828,Jenna,Manhattan,Murray Hill,40.74696,-73.9746,Entire home/apt,250,2,2,2018-10-14,0.11,1,0 +22066893,Sweet 1 bedroom apt in 1881 Brooklyn Brownstone,5480385,Daniel,Brooklyn,Park Slope,40.67812,-73.9771,Entire home/apt,200,4,0,,,1,0 +22067396,Sunny Brooklyn Brownstone apartment,28019842,Morgan,Brooklyn,Clinton Hill,40.6938,-73.96963,Entire home/apt,100,2,0,,,1,0 +22067406,Incredible Newly Renovated Two-Bedroom Apartment,93487618,David,Brooklyn,Dyker Heights,40.62643,-74.0072,Entire home/apt,90,2,55,2019-06-22,2.85,2,285 +22067480,"Private Rm in trendy Jackson Hts, Qns, 10m to LGA",73826443,Elizabeth,Queens,Jackson Heights,40.75153,-73.88964,Private room,120,1,4,2019-04-07,0.21,1,0 +22067499,Live in Williamsburg - Only 2 stops from Manhattan,22758387,Roy,Brooklyn,Williamsburg,40.71816,-73.95031,Private room,47,1,32,2018-12-16,1.73,1,0 +22067764,Williamsburg - great view and elevator into apt,24051464,Martin,Brooklyn,Williamsburg,40.71811,-73.94414,Private room,75,1,1,2017-12-12,0.05,1,0 +22067826,Home Away From Home,161184313,Kristina,Brooklyn,Greenpoint,40.72977,-73.9525,Private room,80,5,19,2019-06-15,1.28,2,95 +22068519,Cozy guest room with private bath in trendy duplex,12795683,Anne-Laure,Brooklyn,Gowanus,40.6832,-73.98736,Private room,110,2,1,2018-01-02,0.05,1,0 +22069581,Luxury Private room located in Fresh Meadows,137858241,Holyfield,Queens,Flushing,40.73067,-73.80691,Private room,45,1,9,2019-07-05,0.48,1,328 +22072423,3BR ON FINANCIAL DISTT~MINUTES FROM EAST RIVER,2856748,Ruchi,Manhattan,Financial District,40.7043,-74.00923,Entire home/apt,300,30,0,,,49,346 +22073571,Calm 1 bedroom right at Tompkins Square Park,9320996,Virginia,Manhattan,East Village,40.72508,-73.97978,Entire home/apt,150,3,2,2018-01-02,0.11,1,0 +22073638,Large Studio in Manhattan Close to Everything!,135257383,Brian,Manhattan,Harlem,40.82771,-73.94699,Entire home/apt,80,5,1,2018-01-02,0.05,1,0 +22074303,1 BR w/Kit Wyndham 45 Midtown- Great Location!,21844834,Charlene,Manhattan,Midtown,40.75228,-73.97195,Entire home/apt,350,4,0,,,1,0 +22075497,"Family apartment in NYC, ideal for kids.",161262280,Anna,Brooklyn,Park Slope,40.67443,-73.98367,Entire home/apt,250,5,4,2018-11-25,0.22,1,0 +22075971,Bright and Sunny Room in Williamsburg,20827165,Melissa,Brooklyn,Williamsburg,40.71684,-73.9451,Private room,57,2,27,2019-06-17,2.89,2,80 +22076192,Bed-Stuy modern private room near Williamsburg,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69294,-73.9398,Private room,50,30,3,2018-06-02,0.17,10,364 +22076359,Bohemian 3 bedroom brownstone duplex in Brooklyn,161268152,Maytal And Ken,Brooklyn,Clinton Hill,40.6838,-73.96176,Entire home/apt,399,1,42,2019-06-09,2.25,2,308 +22076961,Cozy apartment near Central Park,23254491,Klara,Manhattan,East Harlem,40.7901,-73.95053,Entire home/apt,132,1,109,2019-06-23,5.67,2,12 +22077540,"Cozy home in charming, central Fort Greene",6123811,Sherry,Brooklyn,Fort Greene,40.68892,-73.97749,Entire home/apt,150,2,11,2019-06-13,1.46,1,0 +22077632,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70483,-73.91433,Private room,40,3,6,2018-08-29,0.32,2,0 +22077789,Queen Bed + Futon HUGE Sunny Master 1BR/Priv Bath,32451588,Paul,Manhattan,Upper West Side,40.80049,-73.96629,Private room,150,2,0,,,1,0 +22077920,Spacious appartment on Upper West Side,17322363,Luis,Manhattan,Morningside Heights,40.80608,-73.96397,Entire home/apt,189,10,2,2017-12-30,0.10,1,0 +22078370,Stunning Modern Eco West Village 3 Floor Townhome!,2415163,R,Manhattan,West Village,40.73247,-74.00378,Entire home/apt,400,3,17,2019-06-22,0.88,1,37 +22078453,Greenpoint Getaway!,15021288,Josh,Brooklyn,Greenpoint,40.7268,-73.94072,Entire home/apt,65,24,1,2018-01-08,0.05,1,0 +22078678,Room in NY apartment near LGA,126489138,Candria,Queens,East Elmhurst,40.76008,-73.85966,Private room,100,2,0,,,1,0 +22078755,Bohemian East Village Apartment,50292311,Brian,Manhattan,East Village,40.72837,-73.98546,Entire home/apt,250,4,17,2019-05-28,1.10,1,5 +22078785,AMAZING private room in 2bed lower east side apt,3562795,Rachel,Manhattan,Lower East Side,40.71441,-73.98655,Private room,100,4,0,,,1,0 +22078828,Bushwick Brooklyn En Suite in Artist Loft Bldg,61989330,Zanni,Brooklyn,Williamsburg,40.70683,-73.93312,Private room,51,2,2,2018-01-01,0.10,1,0 +22079387,Boutique Luxury in the Heart of Chelsea,148107543,Mario,Manhattan,Chelsea,40.74494,-73.99762,Entire home/apt,299,2,30,2019-05-25,1.57,1,274 +22080281,Cute and Cozy Apt in Soho,37687663,Amy,Manhattan,Lower East Side,40.72154,-73.99331,Private room,125,28,1,2018-07-29,0.09,1,0 +22080826,Spacious 1BR in trendy Brooklyn from 12/12-1/12,3770299,Michelle,Brooklyn,Clinton Hill,40.69284,-73.96824,Entire home/apt,150,15,0,,,1,0 +22081741,Large Sun-filled room in beautiful brownstone home,2738676,Sarah,Brooklyn,Bedford-Stuyvesant,40.68748,-73.93048,Private room,65,5,2,2018-09-01,0.10,1,0 +22081871,Artsy 2BR Home w/ High Ceilings + Brick Walls,19909719,Danny,Brooklyn,Greenpoint,40.72397,-73.94695,Entire home/apt,295,7,1,2018-01-04,0.05,2,0 +22081938,East Harlem Room(#2) on Madison Avenue,159655531,Kelvin,Manhattan,East Harlem,40.80147,-73.94451,Private room,60,3,40,2019-07-01,2.11,2,78 +22082124,Gorgeous 1 bdr 1.5bath on the Upper East Side,4865463,Woody,Manhattan,Upper East Side,40.77445,-73.94783,Entire home/apt,195,6,0,,,1,0 +22082423,Large open 1 bedroom near Prospect Park.,44021436,L,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95987,Entire home/apt,80,2,14,2019-06-23,0.83,1,0 +22082514,Brooklyn private room&balcony,58633574,Luna Maria,Brooklyn,Bedford-Stuyvesant,40.69818,-73.94154,Private room,75,2,7,2019-05-04,0.39,1,11 +22082903,Studio Sanctuary in Landmark Brownstone,156047478,Doron,Manhattan,Harlem,40.8048,-73.94951,Entire home/apt,91,30,8,2019-06-13,0.47,2,216 +22083268,"tiny, tiny room in Bushwick",16856181,David,Brooklyn,Bushwick,40.68958,-73.91393,Private room,30,7,3,2019-01-04,0.15,1,0 +22083314,Great studio apt in Brooklyn! 15 min to Manhattan,24374791,Emelie,Brooklyn,Bedford-Stuyvesant,40.67944,-73.95238,Entire home/apt,57,8,0,,,2,0 +22083540,Cozy 2br in the heart of Clinton Hill in Brooklyn,11365202,Carrie,Brooklyn,Clinton Hill,40.68882,-73.96049,Entire home/apt,160,3,38,2019-06-20,1.99,1,2 +22084212,The West Village Triangle Suite,159586124,Malcolm,Manhattan,Chelsea,40.73851,-73.99746,Entire home/apt,400,4,1,2017-12-16,0.05,1,2 +22084321,"Gorgeous, Sunny LES/Chinatown Apartment",1472745,Melinda,Manhattan,Chinatown,40.71346,-73.99141,Private room,100,2,9,2018-02-09,0.47,1,0 +22084405,Sunny Charming Private 2BR Apartment in UES,149303542,Jasmine,Manhattan,Upper East Side,40.77752,-73.94647,Private room,149,4,0,,,1,0 +22085185,Beautiful large one bedroom in downtown Brooklyn,13775180,Rachel,Brooklyn,Downtown Brooklyn,40.69256,-73.99085,Entire home/apt,250,5,0,,,1,0 +22085754,Cozy Private One Bedroom,38609489,Kathleen,Brooklyn,Bushwick,40.70032,-73.92985,Private room,40,4,1,2017-12-29,0.05,1,0 +22085782,Large luxury apartment in Tribeca,107955341,Michelle,Manhattan,Tribeca,40.71503,-74.00702,Entire home/apt,400,2,5,2019-05-06,0.39,1,0 +22085892,THANKSGIVING IN NYC,7241732,Jason,Queens,Woodside,40.74602,-73.90604,Private room,55,1,0,,,1,0 +22086518,West Village + Water Views,3484157,Lauren,Manhattan,West Village,40.73983,-74.009,Private room,250,2,2,2018-03-15,0.11,1,0 +22086968,Rustic Meets Shabby Chic- Georgous 2 Bedroom,161344095,Sheena,Bronx,Van Nest,40.84279,-73.86527,Entire home/apt,100,2,98,2019-06-24,5.10,1,89 +22087093,Newly furnished & renovated rooms 5 min from nyc.,103345244,Jeff,Bronx,Kingsbridge,40.88447,-73.90157,Private room,55,1,14,2019-05-26,0.76,2,127 +22087812,Cozy Studio with Private Entrance,161352782,Linda,Staten Island,Clifton,40.61603,-74.08666,Entire home/apt,65,1,70,2019-06-28,8.43,1,300 +22088100,"Bright and Warm place - +only 17min to Central Park",161351021,V,Queens,Woodside,40.75593,-73.90268,Private room,425,1,11,2018-03-01,0.58,2,0 +22088180,"Comfy Private Bedroom, Patio + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.82908,-73.94671,Private room,49,3,19,2019-06-28,0.99,2,211 +22088276,Spacious and peaceful apartment in Nolita / SoHo,31880119,Zach,Manhattan,Nolita,40.72382,-73.99541,Entire home/apt,175,2,9,2018-08-26,0.47,1,0 +22088301,Williamsburg 3-Bed Townhouse w/ Garden by L Train,2496299,Dylan,Brooklyn,Williamsburg,40.71159,-73.94514,Entire home/apt,129,5,19,2019-06-29,1.03,1,295 +22088409,Bronx Native Son Apartment,37260534,Cory,Bronx,Norwood,40.87491,-73.87575,Private room,87,2,1,2017-12-20,0.05,1,0 +22088615,Quirky East Williamsburg/Bushwick Artist Duplex,109195230,Janique,Brooklyn,Williamsburg,40.70471,-73.94151,Private room,42,4,7,2018-10-03,0.37,1,0 +22088784,"Bright, creative, happy apartment in heart of BK!",161360183,Sarah,Brooklyn,Gowanus,40.68015,-73.98795,Entire home/apt,115,3,2,2018-03-02,0.11,1,0 +22089194,"Cozy 2BR in heart of SoHo near NYU, WSP, Subway",23909694,Anh,Manhattan,Greenwich Village,40.72855,-73.99767,Entire home/apt,150,3,3,2018-01-15,0.16,2,0 +22089422,Large and nice private room in Park Slope!,5690047,Silvio,Brooklyn,Park Slope,40.66883,-73.98099,Private room,50,3,2,2018-05-28,0.15,1,0 +22090790,26TH FLR VIEWS! LINCOLN SQR- MODERN 2BR 2 BATH,76104209,Rated,Manhattan,Upper West Side,40.77055,-73.98613,Entire home/apt,374,60,0,,,33,290 +22095324,Williamsburg Gem with Private Bathroom,46396810,Chloe,Brooklyn,Williamsburg,40.70934,-73.95243,Private room,70,7,1,2017-12-30,0.05,1,0 +22096182,MONTHLY RENTAL Victorian House in Brooklyn,51734800,Laura,Brooklyn,Flatbush,40.63074,-73.96418,Private room,50,20,1,2019-01-30,0.19,2,358 +22096640,Elegant Room in Jazzy Harlem Neighborhood,24625767,Isaac,Manhattan,Harlem,40.82394,-73.94432,Private room,75,30,2,2018-09-24,0.10,1,0 +22096731,Amazing room for NYC holiday season! Dec. 20-28,10775192,Joshua,Brooklyn,Crown Heights,40.66838,-73.96,Private room,45,1,0,,,2,88 +22097438,Cozy Flat - Walk to Central Park,19385850,Jonathan,Manhattan,Upper East Side,40.78281,-73.94516,Entire home/apt,143,2,88,2019-06-25,4.90,1,29 +22098233,Contemporary 1 Bedroom off of Union Square,161432983,Hannah,Manhattan,East Village,40.73215,-73.98804,Entire home/apt,170,1,1,2017-12-22,0.05,1,0 +22098435,Cozy Bright Private Room - Prime Brooklyn,23208262,Vanessa,Brooklyn,Williamsburg,40.71424,-73.94283,Private room,42,20,0,,,1,0 +22099135,Comfy & Cozy Private Room in Bushwick,109852649,Eva,Brooklyn,Bushwick,40.69984,-73.93899,Private room,65,5,0,,,1,0 +22099266,Aquamarine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69459,-73.95551,Private room,65,2,22,2019-06-20,1.64,34,289 +22099954,Cozy 2 Bedroom in Astoria,23385082,Theresa,Queens,Astoria,40.76516,-73.92281,Entire home/apt,112,6,2,2018-03-12,0.11,1,0 +22100149,2 Story Loft Style 2 Bedroom 2 Bathroom on Park,20689561,Sara,Brooklyn,Sunset Park,40.64688,-74.00209,Entire home/apt,150,3,5,2018-12-31,0.27,1,3 +22100318,Gorgeous Pre-War Two-Bedroom by the Hudson,13997669,Daniel,Manhattan,Washington Heights,40.85084,-73.93905,Entire home/apt,200,5,3,2018-08-23,0.26,1,30 +22100911,Upper West Side Manhattan,161446165,Simone,Manhattan,Upper West Side,40.80309,-73.96568,Private room,100,4,1,2018-12-29,0.16,1,341 +22100970,Luxurious 1 Bedroom Fully Renovated,61391963,Corporate Housing,Manhattan,Kips Bay,40.74241,-73.97954,Entire home/apt,142,30,8,2019-04-01,0.42,91,281 +22101002,Antique Suite,158034247,Christine,Brooklyn,Gravesend,40.58985,-73.98482,Private room,55,2,25,2019-03-21,1.34,1,0 +22101034,Cool Out/Private large ensuite nearJFK sleeps 4,94713722,Joy,Queens,Springfield Gardens,40.68857,-73.75488,Private room,50,2,23,2019-06-17,1.40,4,348 +22101044,Luxury 2 Bedroom - Nicest renovations and quality,61391963,Corporate Housing,Manhattan,Murray Hill,40.74975,-73.97699,Entire home/apt,185,30,0,,,91,0 +22101696,"CLEAN, BRIGHT, and MODERN 3 bedroom Brooklyn apt.",20951849,Elaine,Brooklyn,Bedford-Stuyvesant,40.69224,-73.93219,Entire home/apt,185,1,90,2019-07-01,4.68,2,181 +22101914,Huge room in Bushwick,81466660,Dustin,Brooklyn,Bushwick,40.69608,-73.93133,Private room,45,5,1,2018-12-28,0.16,1,0 +22101965,"2 bedrooms and queen sofa bed, Close to Manhattan",161458034,Nancy,Brooklyn,Windsor Terrace,40.65136,-73.97689,Entire home/apt,160,3,37,2019-07-02,1.95,1,71 +22102108,Great apartment in the heart of Manhattan!,20905481,Jamie And John,Manhattan,Hell's Kitchen,40.76028,-73.99014,Entire home/apt,179,1,125,2019-06-26,6.51,1,201 +22102113,Room in Astoria NewYork,88547794,Felicita,Queens,Astoria,40.76717,-73.90994,Private room,55,7,7,2019-06-11,0.49,1,365 +22102905,Make this luxury apartment your next stop!,59477827,Erik,Manhattan,Murray Hill,40.74785,-73.96967,Private room,195,11,0,,,1,0 +22103302,"Sun-filled, Modern Bedroom in Williamsburg.",4455011,Kéren-Or,Brooklyn,Williamsburg,40.70511,-73.94474,Private room,74,5,0,,,1,0 +22103438,Dee's Rest Easy,161468583,Dee,Brooklyn,Flatbush,40.64429,-73.95732,Entire home/apt,22,2,35,2019-04-29,1.83,1,312 +22105065,Sunny One bedroom w. Outdoor Space - Williamsburg,983477,Kaylan,Brooklyn,Greenpoint,40.71951,-73.95277,Entire home/apt,175,2,9,2018-09-23,0.56,1,0 +22105520,Designer Tudor Townhouse with Chef's Kitchen!,3663769,Joshua,Brooklyn,Crown Heights,40.67313,-73.9448,Entire home/apt,225,1,16,2019-07-07,0.86,1,1 +22106002,Fantastic Room - King Bed and a Private Rooftop,18605299,Isaac,Manhattan,Chelsea,40.74688,-73.99657,Private room,99,5,2,2018-01-31,0.10,1,0 +22107023,Chic Luxury Garden Apartment in BedStuy Brooklyn,36082598,Genevieve,Brooklyn,Bedford-Stuyvesant,40.68316,-73.95033,Entire home/apt,150,2,51,2019-06-22,2.65,2,231 +22107142,Your NYC HOME! LRG 1 BED APT 20min from Manhattan,161497828,Matias,Brooklyn,Prospect-Lefferts Gardens,40.65534,-73.95644,Entire home/apt,100,2,2,2018-01-02,0.11,1,95 +22107189,"Beautiful 2-bdrm top flr of brownstone, sunny",160647707,John,Brooklyn,Bedford-Stuyvesant,40.68518,-73.95328,Entire home/apt,88,3,4,2018-03-31,0.21,1,0 +22107368,Entire Apartment Available in Astoria,103170539,Lalit,Queens,Astoria,40.76824,-73.91135,Private room,29,5,11,2018-06-15,0.59,1,156 +22107371,3 br duplex Apt with rooftop in Williamsburg,28994468,Denis,Brooklyn,Williamsburg,40.71298,-73.9485,Entire home/apt,400,4,1,2018-01-01,0.05,1,0 +22107514,Spacious Prospect Park Studio,128466802,Rasha,Brooklyn,Prospect-Lefferts Gardens,40.661,-73.9598,Entire home/apt,85,30,10,2019-01-04,0.63,1,2 +22108130,UWS - Simple & Bright - 1BR,106837455,Lisa,Manhattan,Upper West Side,40.78456,-73.98117,Entire home/apt,140,30,0,,,8,0 +22108302,Beautiful Bedroom By the Children's Museum,123605746,Brian,Brooklyn,Crown Heights,40.6752,-73.94366,Private room,65,1,0,,,1,0 +22108306,MACON MEMORIES..** SUMMER SPECIAL***,95485067,Adelle,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94153,Entire home/apt,150,1,43,2019-07-07,2.32,1,267 +22108932,"Cosy private bedroom in Inwood 4 min to train 1,A",142724947,Yusra,Manhattan,Inwood,40.87328,-73.91458,Entire home/apt,70,21,7,2019-01-15,0.38,1,156 +22109528,Studio apartment with a view!,161519048,Ashleigh,Manhattan,Murray Hill,40.7487,-73.98123,Entire home/apt,250,4,0,,,1,0 +22114333,Sun & Central Park,102011406,Ler,Manhattan,East Harlem,40.78977,-73.9476,Private room,99,4,16,2019-05-12,0.87,1,130 +22115009,Shared room with Bed Tent (Privacy Pop).,44620317,Claudia,Queens,Corona,40.74061,-73.85651,Shared room,45,1,8,2018-09-28,0.53,4,347 +22116565,Holiday sublet: Columbus circle apartment,46094052,Soumya,Manhattan,Midtown,40.76739,-73.98225,Entire home/apt,189,7,3,2018-02-23,0.16,1,0 +22117590,Renovated Art Building Bushwick,161300062,Daniela,Brooklyn,Bushwick,40.69164,-73.90577,Private room,70,1,9,2018-06-24,0.49,1,0 +22117898,Brooklyn city room,160495098,Miller,Brooklyn,East Flatbush,40.63479,-73.94848,Private room,27,2,4,2018-09-29,0.23,5,0 +22117971,Private Room in Sunny South Williamsburg location,45869461,Christina,Brooklyn,Williamsburg,40.7098,-73.9545,Private room,80,4,2,2018-01-18,0.11,1,0 +22117983,Manhattan Club 1 Bedroom 2 Bath!,101430405,Moose,Manhattan,Midtown,40.76511,-73.98046,Entire home/apt,450,3,0,,,1,0 +22119092,HUGE Private 1 Bedroom in Shared Park Slope Apt,150044472,Amar,Brooklyn,Windsor Terrace,40.6597,-73.98318,Private room,75,14,0,,,2,0 +22119373,Well lit and modern 1BR condo in LES,7112420,Lizzie,Manhattan,Chinatown,40.71629,-73.99066,Entire home/apt,175,2,10,2018-10-01,0.54,1,0 +22119375,Hart House - Calm Space in Bed-Stuy Activist Home,63935474,Tok,Brooklyn,Bedford-Stuyvesant,40.69538,-73.94657,Private room,35,2,4,2018-01-01,0.21,1,0 +22119708,Cozy room in Brooklyn <3,3043896,Carmen,Brooklyn,Bedford-Stuyvesant,40.68611,-73.95171,Private room,41,7,1,2017-12-06,0.05,1,0 +22120170,Cozy apartment,161599491,Victor,Brooklyn,Borough Park,40.61984,-73.97872,Shared room,50,30,8,2018-06-06,0.42,1,179 +22120346,Bright Private Bedroom in Bushwick.,8739627,Tim,Brooklyn,Bushwick,40.69545,-73.91153,Private room,40,1,0,,,1,0 +22120433,Spacious studio in Williamsburg with back patio!,5610754,Charlotte,Brooklyn,Williamsburg,40.70778,-73.94411,Entire home/apt,150,7,14,2019-05-14,0.83,1,128 +22120954,Newly Renovated 2 Bedroom Apt Sleeps 6,26800283,Marko,Manhattan,Upper East Side,40.77267,-73.94735,Entire home/apt,400,2,1,2018-07-10,0.08,1,0 +22121191,Private Bedroom w/ Easy Access to Manhattan,160461605,Matthew,Manhattan,East Harlem,40.8066,-73.9408,Private room,85,1,6,2018-05-12,0.31,1,0 +22122084,Charming Crown Heights Apartment,2244532,Hazel,Brooklyn,Crown Heights,40.67666,-73.94087,Private room,100,5,1,2018-09-22,0.10,1,0 +22122354,3 Minutes to Central Park ❤︎ of NYC!,161616186,Santiago,Manhattan,Upper West Side,40.78233,-73.98415,Entire home/apt,150,3,20,2019-06-22,1.08,1,36 +22122388,Fully Furnished Spacious Home for 7 People,99202586,Thelma,Staten Island,Randall Manor,40.6311,-74.12816,Entire home/apt,149,2,3,2019-06-16,0.34,5,354 +22122470,New Luxury Harlem Condo 2 bedrooms with Garden,161592215,Mukaram,Manhattan,East Harlem,40.80209,-73.93584,Entire home/apt,210,6,31,2019-06-21,1.68,2,276 +22122614,Spacious Family Space - 2 Bedrooms,161617875,Tyge,Manhattan,Washington Heights,40.85244,-73.9405,Entire home/apt,150,2,30,2019-06-16,1.61,2,109 +22122723,Beautiful room in Manhattan,43719554,Bersabel,Manhattan,Harlem,40.82257,-73.94665,Private room,50,16,0,,,1,0 +22123573,Sunny brownstone greenhouse in Bedford Stuyvesant,4967965,Allison,Brooklyn,Bedford-Stuyvesant,40.68263,-73.92264,Entire home/apt,350,3,42,2019-06-23,2.23,1,275 +22123603,"Charming, quiet room in heart of the East Village",1493800,Nicholas,Manhattan,East Village,40.72341,-73.98534,Private room,130,4,25,2019-05-07,1.35,1,0 +22124017,Fashion and Hotel Couple’s Hells Kitchen Apartment,68358695,Craig,Manhattan,Hell's Kitchen,40.75803,-73.99853,Entire home/apt,285,3,0,,,1,0 +22124086,Airy Brooklyn Pad,47423579,Analise,Brooklyn,Flatbush,40.64366,-73.95794,Shared room,45,2,1,2017-12-07,0.05,1,0 +22125138,New York room,161638092,Sergio,Bronx,Belmont,40.85828,-73.88559,Private room,30,1,3,2018-01-08,0.16,1,0 +22125701,Beautiful Bed-stuy Bedroom,11769840,Amber,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92457,Private room,50,2,42,2019-06-11,2.28,2,53 +22126048,Cozy Room #2 in Brooklyn Home 15 Min from JFK,126110540,Janine,Brooklyn,East New York,40.66379,-73.88177,Private room,50,1,43,2019-07-01,2.26,3,89 +22126122,Cozy bright apartment,1931414,Vera,Manhattan,Upper West Side,40.79799,-73.97018,Private room,250,6,1,2018-07-13,0.08,1,55 +22129871,Soho/East Village One Bed,24379402,Ghazi,Manhattan,East Village,40.72341,-73.98941,Entire home/apt,110,7,2,2019-06-15,0.20,1,0 +22130055,Queens Home short walk to Subway- 2 bedroom 2 bath,59089796,Sara,Queens,Richmond Hill,40.70248,-73.81937,Entire home/apt,125,2,31,2019-06-25,1.65,2,62 +22130220,Dean St,10004299,Morgan,Brooklyn,Prospect Heights,40.682,-73.97231,Private room,80,2,0,,,1,0 +22131111,"Astoria lovely Private Room, Steinway, LGA Airport",154108693,Jasmine,Queens,Astoria,40.75859,-73.91748,Private room,70,1,0,,,1,0 +22131954,Lux Midtown apartment.,161671480,Louisa,Manhattan,Hell's Kitchen,40.76147,-73.99908,Private room,150,1,0,,,1,0 +22134428,"Spacious living room, walk-in closet",159726656,Uttara,Manhattan,Upper West Side,40.78898,-73.97418,Shared room,53,3,7,2018-12-31,0.38,1,0 +22135247,Private Room in Bed-Stuy/Bushwick,161613483,Katelyn,Brooklyn,Bedford-Stuyvesant,40.68594,-73.92394,Private room,55,4,18,2018-10-02,0.99,1,0 +22139766,Luxurious Brooklyn Heights Duplex with Terrasse,88801066,Crina,Brooklyn,Brooklyn Heights,40.6936,-73.9935,Entire home/apt,647,5,4,2019-04-20,0.25,1,166 +22139932,Harlem Oasis,18730893,Seth,Manhattan,Harlem,40.82547,-73.94092,Private room,95,1,0,,,1,0 +22142173,Industrial Brooklyn Loft Style Apt,844422,Lynn,Brooklyn,Greenpoint,40.72684,-73.94002,Entire home/apt,109,4,0,,,1,0 +22142447,Downtown Penthouse with Private Outdoor Terrace,1694701,Shahriq And Patty,Manhattan,Chelsea,40.73989,-73.99863,Entire home/apt,485,4,1,2017-12-29,0.05,1,0 +22142575,Spacious sunny one bedroom apartment with balcony,1776666,Assaf,Brooklyn,Williamsburg,40.71106,-73.94884,Entire home/apt,160,5,15,2019-05-17,0.97,1,83 +22142636,Sunny Modern newly renovated 1BR apartment,40875021,Scott,Manhattan,East Harlem,40.79315,-73.93385,Entire home/apt,150,1,14,2019-04-18,0.76,3,353 +22143436,Chelsea 1 Bedroom Gem!,22967048,Marie,Manhattan,Chelsea,40.75206,-73.99829,Entire home/apt,200,3,43,2019-06-29,2.34,1,63 +22143750,Cozy Double Room in Williamsburg,15338067,Giulia,Brooklyn,Williamsburg,40.71198,-73.9582,Private room,58,4,9,2018-12-29,0.48,1,0 +22144662,Spacious Studio with Private Roof,73358102,Alex,Manhattan,Chelsea,40.75003,-73.99647,Entire home/apt,109,2,76,2019-06-14,3.95,1,4 +22145643,"Cozy Manhattan Bedroom, Same Street as Subway!",16154405,Leslie,Manhattan,Upper East Side,40.78314,-73.94659,Private room,75,1,45,2019-06-27,2.34,1,7 +22146533,"Cozy, bohemian, PRIVATE bedroom in Manhattan NYC",10385600,Kaitlin,Manhattan,Washington Heights,40.84243,-73.93693,Private room,50,1,1,2017-12-10,0.05,1,0 +22147414,BEAUTIFUL HUDSON RIVER VIEW,19577205,Neide,Manhattan,Washington Heights,40.8335,-73.9468,Entire home/apt,215,4,2,2019-01-02,0.11,1,0 +22147426,Prime Harlem Condo -Bright!- with Outdoor Space,161742462,Rashida,Manhattan,Harlem,40.80814,-73.94238,Entire home/apt,249,6,40,2019-05-30,2.35,1,293 +22147647,ULTRA CHIC 2 BEDROOM GRAND CENTRAL,61391963,Corporate Housing,Manhattan,Murray Hill,40.74933,-73.9767,Entire home/apt,200,30,0,,,91,310 +22148073,Nice new bedroom Near D train and Maimonides in BK,5853457,Stanley,Brooklyn,Borough Park,40.6421,-73.99732,Private room,56,1,12,2019-05-29,0.65,4,348 +22148115,Modern Williamsburg Apt w/ Spectacular Views,18587989,Cem,Brooklyn,Williamsburg,40.70979,-73.96631,Entire home/apt,120,1,0,,,1,0 +22148416,The Skyline Loft — Incredible Views Near 2 Trains,14364462,Ashley,Brooklyn,Bushwick,40.70597,-73.92091,Entire home/apt,127,3,9,2019-04-24,0.49,2,34 +22150519,Cozy suite in a Townhouse,26411218,Desmond,Queens,Elmhurst,40.73491,-73.888,Entire home/apt,83,3,77,2019-07-07,4.05,2,22 +22150523,"Entire Modern Home, Amazing Location",148237535,Jermaine,Brooklyn,Canarsie,40.64017,-73.9105,Entire home/apt,290,3,4,2019-05-27,0.39,4,364 +22150956,Brooklyn apt,28110419,Daniel,Brooklyn,Boerum Hill,40.68734,-73.98633,Entire home/apt,150,13,0,,,1,0 +22151022,10mins to LGA /20 to the city /5 min to N train,139867352,Oscar,Queens,Ditmars Steinway,40.78021,-73.91015,Private room,39,1,43,2019-06-23,2.28,2,351 +22151067,"30 mins from Manhattan, Clean room in Queens",161743285,Elena,Queens,Rego Park,40.73266,-73.85447,Shared room,27,60,1,2017-12-23,0.05,1,0 +22151092,Comfy New Bedroom near D line Fort Hamilton PKWY,5853457,Stanley,Brooklyn,Borough Park,40.64226,-73.99706,Private room,56,1,12,2019-03-11,0.65,4,333 +22151598,"Tasteful, spacious and sunny place, gorgeous Manhattan views!",342760,Helo.,Manhattan,Upper East Side,40.76703,-73.95553,Entire home/apt,200,6,4,2018-08-08,0.34,1,5 +22151798,Apartment in South Bronx,45553025,Jose H.,Bronx,Mott Haven,40.81037,-73.91946,Entire home/apt,65,2,47,2018-11-25,2.52,1,0 +22152232,Beautiful room with comfy bed in Bushwick,10018530,Nicole,Brooklyn,Bushwick,40.70328,-73.91429,Private room,50,2,2,2018-07-19,0.10,1,0 +22152376,Newly Renovated Gem | 1 Block to Subway | 2BD/2BA,161770518,Tamer,Brooklyn,East Flatbush,40.64701,-73.94965,Entire home/apt,195,2,65,2019-06-30,3.51,1,236 +22152785,Spacious & Sophisticated in Chelsea,8456422,Abee,Manhattan,Chelsea,40.74009,-73.99608,Entire home/apt,625,2,10,2018-12-27,0.59,1,0 +22153412,Modern Chic Private Room in Gramercy,14613015,Ava,Manhattan,Gramercy,40.73442,-73.98383,Private room,69,4,4,2018-12-17,0.21,1,0 +22153425,Cozy & comfortable apt by Prospect Park,161784847,Jerry,Brooklyn,Flatbush,40.65229,-73.96551,Entire home/apt,125,2,31,2019-06-29,1.67,1,24 +22154118,Heart of Williamsburg - HUGE 1BR Apartment modern,16725099,Shawn,Brooklyn,Williamsburg,40.71644,-73.94807,Entire home/apt,160,2,1,2017-12-08,0.05,1,0 +22156875,Manhattan Studio in Prewar Building,161814450,Michael,Manhattan,Upper West Side,40.77806,-73.98225,Entire home/apt,195,3,20,2019-05-18,1.27,1,217 +22157675,Gorgeous Duplex 2 Bdrm in Prime Greenpoint,1927555,Rob,Brooklyn,Greenpoint,40.72612,-73.9532,Entire home/apt,250,4,1,2017-12-13,0.05,1,0 +22157683,Midtown East Apartment,127267474,Christopher,Manhattan,Midtown,40.75459,-73.96706,Entire home/apt,125,2,5,2018-04-08,0.26,1,0 +22157982,Large room w/ balcony - Williamsburg Warehouse,4152479,Conor,Brooklyn,Williamsburg,40.70851,-73.95318,Private room,100,4,1,2018-02-12,0.06,2,0 +22159096,Beautiful Brooklyn Apartment,26328221,Geoff,Brooklyn,Sunset Park,40.65413,-74.00242,Entire home/apt,180,2,19,2019-06-09,0.99,2,15 +22159309,One Bedroom Apartment by Central Park!,16219811,Emily,Manhattan,Harlem,40.8,-73.95056,Entire home/apt,175,4,3,2018-04-08,0.18,1,0 +22160718,Huge Beautiful Private Floor of Townhouse,4443213,Arielle,Brooklyn,Williamsburg,40.71276,-73.946,Private room,90,2,5,2018-07-01,0.33,1,0 +22160759,Comfortable Private Bedroom 10 min to Central Park,93691661,Rachel,Manhattan,Washington Heights,40.83515,-73.94226,Private room,50,2,67,2019-06-15,3.54,2,20 +22160989,Harlem Luxury Condo !New! 2 Full Bedrooms Balcony,161592215,Mukaram,Manhattan,East Harlem,40.8025,-73.93775,Entire home/apt,200,6,32,2019-06-01,1.73,2,251 +22161352,Comfy & quiet 1 BR - East Williamsburg,6484703,Sheila,Brooklyn,Williamsburg,40.7077,-73.94029,Entire home/apt,90,4,11,2019-05-21,0.59,1,3 +22161395,Sunny Urban Jungle,100675420,Mama Batata,Brooklyn,Bedford-Stuyvesant,40.69129,-73.9523,Private room,70,1,87,2019-07-05,4.58,1,8 +22161900,"New, spacious 1.5 BR Apt Wburg,BK w/ private patio",26494979,Carolyn,Brooklyn,Williamsburg,40.71591,-73.94693,Entire home/apt,115,3,4,2019-05-23,0.22,1,0 +22161977,Lower East Trendy Apartment,29343272,Charlotte,Manhattan,Lower East Side,40.72303,-73.98965,Private room,75,3,18,2018-11-25,0.96,1,0 +22162572,1BED 1 BATH /UPPER WEST SIDE /Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77605,-73.98833,Entire home/apt,190,30,4,2019-04-11,0.63,25,363 +22162915,2 Beds 1 Bath UPPER WEST SIDE/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77483,-73.98973,Entire home/apt,200,30,1,2018-10-12,0.11,25,0 +22163623,2 Bedrooms in Shared Family Home 15 Min frm JFK,126110540,Janine,Brooklyn,East New York,40.6639,-73.88173,Private room,125,1,12,2019-06-23,0.68,3,89 +22164005,COZY Private 1 Bedroom in Brooklyn !,116881616,June,Brooklyn,Bath Beach,40.60554,-74.01044,Private room,33,6,29,2019-05-27,1.53,2,32 +22164073,Entire Sunny Brooklyn Apt for Art & Cat-Lovers!,1444513,Erin,Brooklyn,Crown Heights,40.6697,-73.95831,Entire home/apt,130,2,15,2018-12-10,0.82,1,0 +22164078,Large Modern Chelsea Studio,35509609,Justin,Manhattan,Chelsea,40.7478,-73.99995,Entire home/apt,149,4,3,2019-01-23,0.32,1,0 +22164208,Artistic Loft by Union Square,274583,Lev,Manhattan,Gramercy,40.73702,-73.98824,Entire home/apt,195,3,2,2018-02-22,0.11,1,0 +22165461,Be a Brooklynite & be 3 stops away from Manhattan!,161900946,Kenne,Brooklyn,Sunset Park,40.63801,-74.01665,Entire home/apt,105,2,0,,,1,0 +22165628,Bottom Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72348,-73.94569,Shared room,40,2,7,2019-01-13,0.39,5,299 +22165795,Large room in Bedstuy brownstone,161903367,Kyle,Brooklyn,Bedford-Stuyvesant,40.68135,-73.94718,Private room,28,2,1,2018-01-01,0.05,1,0 +22165797,Brooklyn beautiful big room!,60365315,Mary,Brooklyn,Sheepshead Bay,40.60475,-73.95987,Private room,45,7,0,,,1,0 +22165957,Sun Drenched 1 Bedroom in Carroll Gardens,160660639,Annette,Brooklyn,Carroll Gardens,40.67666,-74.00055,Entire home/apt,68,1,62,2019-06-23,3.33,2,179 +22166055,"# 1 B Brooklyn NYC Apt close to metro subway, JFK",125914985,Myles,Brooklyn,East Flatbush,40.63439,-73.94397,Entire home/apt,150,6,57,2019-07-01,3.10,2,128 +22166650,Ditmas park lot,161910094,Brian,Brooklyn,Flatbush,40.63809,-73.96445,Private room,60,2,0,,,1,173 +22166900,Large 2 bedroom Moroccan oasis in the East Village,161915399,Lilia,Manhattan,East Village,40.72245,-73.98337,Entire home/apt,260,1,86,2019-05-24,4.59,1,259 +22167066,Spacious & Private Harlem/Washington Heights Room,126397762,Xavier,Manhattan,Harlem,40.82967,-73.93957,Private room,79,1,63,2018-11-27,3.28,3,51 +22169350,The Lovely Suite,83926842,Silvia,Manhattan,Midtown,40.74649,-73.98684,Entire home/apt,130,4,33,2019-06-16,1.76,1,354 +22169843,Perfect studio for your NYC trip,161943355,Nata,Manhattan,East Village,40.72388,-73.98411,Entire home/apt,90,5,21,2019-06-14,1.10,1,83 +22172728,Entire 1 Bedroom Apartment in Midtown Manhattan,40478687,Min,Manhattan,Murray Hill,40.75069,-73.97973,Entire home/apt,250,4,1,2018-01-01,0.05,1,0 +22173085,Spacious & Simple 1BR Apartment for the Holidays!,161971187,Jim,Manhattan,Inwood,40.86089,-73.92832,Entire home/apt,100,4,0,,,1,0 +22173625,Private ground floor apartment in Brooklyn,161976329,Chad Antonio,Brooklyn,East New York,40.6714,-73.87701,Entire home/apt,55,3,58,2019-06-09,3.02,1,57 +22173762,Newly renovated 3 BEDROOM in Astoria woodside NY,123136283,Niki,Queens,Astoria,40.76403,-73.90612,Entire home/apt,280,2,69,2019-06-27,3.68,1,307 +22173887,Greenpoint in my heart ,3297475,Guy,Brooklyn,Greenpoint,40.72458,-73.94122,Private room,43,3,3,2018-07-07,0.16,1,0 +22174455,Adorable Hamilton Heights Apartment,5132258,Jessica,Manhattan,Harlem,40.82434,-73.95066,Entire home/apt,200,3,14,2019-03-09,0.73,2,0 +22174482,Paradise in New York,161983650,Edmarine,Queens,Bayside,40.75236,-73.75519,Private room,41,2,2,2018-01-31,0.11,1,0 +22174923,Sunny Apartment in Trendy Bushwick,23257217,Laura,Brooklyn,Bushwick,40.70579,-73.9185,Entire home/apt,89,2,3,2019-05-28,0.77,1,25 +22175113,Cozy Room in Brooklyn- 2 blocks from subway!,9104749,Bibi,Brooklyn,Bedford-Stuyvesant,40.69134,-73.95551,Private room,50,3,15,2018-05-30,0.80,1,0 +22175249,Cozy Room is available in Nice apartment,161919000,Rana,Brooklyn,Sheepshead Bay,40.58568,-73.93536,Private room,85,3,0,,,1,0 +22175297,Incredibly cozy room close to Manhatan,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93705,Private room,42,1,92,2019-07-03,4.90,4,80 +22175513,Spacious Bed & Private Bath in Renovated Townhouse,3529175,Caroline & Adriaan,Brooklyn,Crown Heights,40.67096,-73.95261,Private room,85,2,34,2019-06-30,2.12,1,127 +22175928,"The CaptainsQuarters, Clean Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68502,-73.87547,Private room,45,2,31,2019-07-06,1.63,3,0 +22176026,Sofa bed/pull out couch in Living Room,126397762,Xavier,Manhattan,Harlem,40.83021,-73.94114,Shared room,39,1,7,2017-12-28,0.36,3,0 +22176062,Brand New Bedroom Near D line&Maimonides Hospital,5853457,Stanley,Brooklyn,Borough Park,40.64061,-73.99631,Private room,56,1,12,2019-05-30,0.81,4,321 +22176068,2-bedroom luxury apartment in the heart of Chelsea,161997330,Agustin,Manhattan,Chelsea,40.74221,-73.99626,Entire home/apt,295,9,2,2018-01-01,0.11,1,0 +22176096,"Entire 1BR APT,HEART of ASTORIA10mins to Manhattan",2413383,Nelson,Queens,Astoria,40.76432,-73.91885,Entire home/apt,110,2,7,2018-12-20,0.37,1,0 +22176542,Modern Comfort in West Village,162001851,Erica,Manhattan,West Village,40.73696,-74.00397,Entire home/apt,170,1,12,2018-05-11,0.65,1,0 +22176678,"Amazing 1 BR/BA in HARLEM, NY",110142237,Eric,Manhattan,Harlem,40.80487,-73.95752,Entire home/apt,90,3,32,2019-07-02,1.69,1,1 +22176782,Lovely Room in East Williamsburg,77792023,Hugo B.,Brooklyn,Bushwick,40.70391,-73.92593,Private room,40,2,4,2018-01-14,0.21,1,0 +22176831,JFK 2 Comfort 5 Mins from JFK Private Bedroom,156684502,Nalicia,Queens,Springfield Gardens,40.66158,-73.7705,Private room,50,1,341,2019-07-08,17.82,3,25 +22176896,One-Off Easter Holiday Deal in Cozy Gem,1664473,Cj,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.94975,Entire home/apt,120,4,0,,,1,0 +22177035,"Quiet, Comfy Bedroom in Prime Williamsburg",8750186,Peter,Brooklyn,Williamsburg,40.7207,-73.96087,Private room,69,7,0,,,1,0 +22177219,Private Big Room with Great Access!!!,162005440,Alba,Queens,East Elmhurst,40.76311,-73.89098,Private room,100,2,23,2019-06-08,1.23,1,95 +22177388,Historic Crown Heights Cute Sunny Bedroom,1834034,Brittney,Brooklyn,Crown Heights,40.67206,-73.93446,Private room,25,4,7,2018-06-04,0.37,1,174 +22178073,Tranquility Stay-cation with private pool,21963202,Journey,Queens,Jamaica Estates,40.7177,-73.78689,Entire home/apt,135,1,115,2019-07-03,6.80,2,138 +22179082,Inviting Brooklyn Studio,6399777,Jessamine,Brooklyn,Crown Heights,40.66863,-73.95046,Entire home/apt,120,3,3,2018-05-27,0.16,1,89 +22179180,5 ★★★★★ Gorgeous suite only 1 block from subway!,129222253,Andy,Bronx,Williamsbridge,40.8785,-73.86347,Entire home/apt,200,1,90,2019-06-24,4.76,3,326 +22180116,Brooklyn Huge Room,15640230,Susana,Brooklyn,Crown Heights,40.66571,-73.9338,Private room,35,30,5,2018-08-10,0.28,4,292 +22180263,"Charming and Convinient, LOCATION LOCATION!",21946213,Natalia,Manhattan,Harlem,40.82389,-73.93887,Private room,70,1,1,2018-01-01,0.05,1,0 +22184960,Experience Zen Williamsburg Life,12454759,Brennan,Brooklyn,Williamsburg,40.7091,-73.96032,Private room,99,1,47,2019-06-23,2.47,1,155 +22186114,Private Room in Brooklyn,16467711,Tori,Brooklyn,Bushwick,40.69743,-73.92171,Private room,75,1,2,2018-01-01,0.11,1,0 +22186387,Sunny and Cozy Private Chef’s Room in East Village,82402385,Sechul,Manhattan,East Village,40.72695,-73.97974,Private room,150,1,133,2019-06-30,7.19,1,14 +22186486,Awesome Character Lower East Side Apartment,162097203,Jason,Manhattan,Lower East Side,40.71871,-73.98218,Private room,220,2,1,2017-12-31,0.05,1,0 +22187068,Luxury Condo - Heart of Williamsburg,14338184,Eli,Brooklyn,Williamsburg,40.71311,-73.95742,Entire home/apt,175,2,2,2018-06-16,0.11,1,0 +22187253,Uptown Manhattan bright and lovely room,4476002,Metodija,Manhattan,Inwood,40.86931,-73.91682,Shared room,90,6,0,,,1,0 +22187284,Beautiful Modern Rustic Williamsburg Loft,802971,Sylvia,Brooklyn,Williamsburg,40.71463,-73.9583,Entire home/apt,120,6,3,2019-01-04,0.25,1,1 +22187361,"""Gold Coast"" 1B in West Village w/ Back Yard",202285,Peter,Manhattan,Greenwich Village,40.73322,-73.99762,Entire home/apt,320,11,4,2019-01-07,0.22,1,0 +22187524,Cozy Modern Apartment With Skyline View,1661245,Pierre,Brooklyn,Williamsburg,40.71,-73.96775,Entire home/apt,250,7,2,2018-12-30,0.14,1,0 +22188609,"SPACIOUS ROOM STEAL, NEAR EVERYTHING MIDTOWN!",155125855,Vicente,Manhattan,Midtown,40.74874,-73.98495,Private room,199,1,9,2018-09-26,0.48,3,0 +22188812,Quiet 2 Bdrm in Williamsburg,67336825,Cody,Brooklyn,Williamsburg,40.70879,-73.94977,Entire home/apt,105,3,2,2017-12-19,0.11,1,0 +22189240,Captain Steuben’s Brooklyn Studio in Clinton Hill,150355601,Michael,Brooklyn,Clinton Hill,40.69368,-73.96244,Entire home/apt,110,2,2,2017-12-26,0.11,1,0 +22189602,Master bedroom with King Size bed! Great location!,3044091,Mike,Manhattan,Upper East Side,40.76814,-73.95604,Private room,99,5,0,,,1,0 +22189962,"Modern, Cozy and affordable NY Home",50682735,Miguel,Queens,Kew Gardens,40.71162,-73.82799,Entire home/apt,80,2,1,2017-12-24,0.05,1,340 +22190231,"LUXURY BEDROOM FOR RENT, close to Manhattan.",119128599,Jessie,Queens,Maspeth,40.73094,-73.90131,Private room,59,2,13,2019-01-13,0.90,1,35 +22190466,"Cozy Getaway, steps from the Train, Stocked Fridge",5751765,CK & Tia,Manhattan,East Harlem,40.79917,-73.94183,Private room,200,3,0,,,2,0 +22190887,"Festive and Cozy Williamsburg Apt, 2 Bedrooms",22481311,Diana,Brooklyn,Williamsburg,40.70893,-73.95472,Entire home/apt,300,5,0,,,1,0 +22190967,Spacious furnished room in midtown,51521183,Abhishek,Manhattan,Murray Hill,40.74763,-73.97316,Private room,85,9,5,2019-05-27,0.27,1,86 +22191121,Cute 2-BR in Greenpoint/Williamsburg,6963310,Kenneth,Brooklyn,Greenpoint,40.72074,-73.94613,Entire home/apt,150,3,1,2017-12-27,0.05,1,0 +22191302,Charming Light Filled Studio in Williamsburg,6317137,Jessica,Brooklyn,Williamsburg,40.71795,-73.95096,Entire home/apt,180,2,1,2019-01-02,0.16,1,0 +22191313,Harlem apartment with a view,10533750,Danyelle,Manhattan,Harlem,40.81914,-73.95516,Private room,75,1,1,2017-12-22,0.05,1,0 +22191343,Light & Quiet Chelsea One Bedroom,162143245,Liza,Manhattan,Chelsea,40.74587,-73.99889,Entire home/apt,229,3,2,2019-01-01,0.11,1,206 +22191500,"Cozy room for one JFK, LGA & subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68739,-73.80555,Private room,50,1,36,2019-06-23,1.96,3,359 +22191646,Bright Private Balcony Apartment in Midtown,30424811,Nona,Manhattan,Midtown,40.74566,-73.98126,Entire home/apt,248,3,2,2018-06-14,0.11,1,0 +22191760,Fully equipped private room near USQ,48189371,Stacy,Manhattan,Gramercy,40.73614,-73.98872,Private room,299,1,4,2018-01-01,0.21,1,0 +22191831,Spacious Apartment in Historic Harlem!,12517694,Rahel,Manhattan,Harlem,40.81244,-73.95261,Private room,67,2,8,2019-05-20,0.42,1,3 +22192285,Chez Cozy,162152103,Sarah,Manhattan,Upper East Side,40.77141,-73.94985,Entire home/apt,150,7,4,2019-04-26,0.35,1,0 +22192407,Heart of Manhattan. Just renovated home!,85854200,Steph,Manhattan,Theater District,40.76109,-73.98261,Entire home/apt,200,4,75,2019-06-20,4.36,1,59 +22192417,Modern 1 Bed in the Heart of Midtown Manhattan,162153544,Kendrick,Manhattan,Murray Hill,40.75048,-73.97776,Entire home/apt,277,3,70,2019-06-30,3.66,1,75 +22192616,"The SerenitySuite. Clean, Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68529,-73.87424,Entire home/apt,99,2,37,2019-06-23,2.05,3,14 +22192877,Upper West Side Home for the Holidays,22866437,Eliana,Manhattan,Upper West Side,40.77838,-73.97851,Entire home/apt,600,3,0,,,2,0 +22193183,Bright bedroom with balcony in Williamsburg,23793668,Annalise,Brooklyn,Williamsburg,40.71312,-73.9517,Private room,80,2,4,2019-04-09,0.28,1,0 +22193650,Gramercy Getaway,83637,Liana,Manhattan,Gramercy,40.73804,-73.98503,Entire home/apt,500,28,5,2018-04-08,0.27,1,173 +22194224,3BD in Williamsburg,114250912,Sabrina,Brooklyn,Williamsburg,40.71498,-73.94357,Private room,175,3,2,2018-01-01,0.11,1,0 +22194287,Bright 2 Bedroom Apt in quiet Woodside,5726293,Suah,Queens,Woodside,40.74402,-73.90946,Entire home/apt,150,2,3,2018-07-10,0.16,2,0 +22194314,Midtown Studio with view of Empire State Building,25275947,Daniel,Manhattan,Murray Hill,40.74703,-73.97484,Entire home/apt,239,5,0,,,1,0 +22194459,Elegant Fifth Avenue Apartment in Luxury Building,162172469,Joan,Manhattan,Greenwich Village,40.73233,-73.99678,Entire home/apt,500,5,0,,,1,229 +22194582,East Williamsburg’s Spacious Sun-drenched Apt.,8094921,ChaYa LoVe,Brooklyn,Williamsburg,40.70767,-73.943,Entire home/apt,320,1,78,2019-06-29,4.16,1,312 +22194993,"Bright, Clean & Comfortable Studio in Brooklyn",27234334,Emee,Brooklyn,Fort Greene,40.68906,-73.97872,Entire home/apt,125,4,7,2018-11-19,0.37,1,16 +22195204,Cozy room in Loft Apartment - Brooklyn,162174536,Estefani,Queens,Ridgewood,40.69687,-73.90111,Private room,31,18,1,2018-01-04,0.05,1,0 +22195324,"Private Floor (3 Bedrooms, 6 Beds) E. Williamsburg",4396760,Bulent,Brooklyn,Williamsburg,40.71436,-73.93812,Entire home/apt,189,2,21,2019-06-10,1.14,1,70 +22202550,Luxury apartment in prime location in Mahattan,16909313,Lauren,Manhattan,Kips Bay,40.73998,-73.97795,Private room,200,1,1,2018-01-01,0.05,1,0 +22203227,Entire 3 bedroom apartment in Brooklyn (36),132706680,Christine,Brooklyn,East New York,40.67539,-73.90207,Entire home/apt,120,2,55,2019-06-26,2.89,1,86 +22203719,Perfectly Located West Village Artist's Studio,156983314,Spencer,Manhattan,West Village,40.73607,-74.00373,Entire home/apt,150,3,12,2019-07-01,0.65,1,0 +22203734,Charming 1 bedroom APT in the heart of Astoria,90285941,Abhi,Queens,Astoria,40.76337,-73.92801,Entire home/apt,70,4,1,2018-01-05,0.05,1,0 +22203739,LeonardLoft,15969987,Daniela,Manhattan,Tribeca,40.71724,-74.00446,Entire home/apt,135,7,0,,,1,0 +22204016,cozy room in brooklyn,139264026,Hillai,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.9535,Private room,38,10,1,2018-07-13,0.08,1,0 +22204167,Your perfect NYC guesthouse getaway prvt entrance,94981926,Steve & Irina,Queens,Rego Park,40.72997,-73.86523,Entire home/apt,135,1,27,2019-06-27,1.46,1,365 +22204187,"Cozy, clean studio in Nolita",18011536,Buster,Manhattan,Chinatown,40.71799,-73.9964,Entire home/apt,125,2,0,,,1,0 +22204668,Large room + office in Bushwick artists' loft,4445275,Jessica,Brooklyn,Bushwick,40.69948,-73.92372,Private room,50,3,2,2018-01-09,0.11,1,0 +22204856,Room available in 3 BD Brooklyn apartment,1819657,Eleanor,Brooklyn,Clinton Hill,40.68381,-73.96786,Private room,55,2,0,,,1,0 +22205113,Cozy stylish studio,162258673,Mar,Manhattan,Washington Heights,40.85394,-73.92972,Private room,50,1,14,2018-12-18,0.80,1,63 +22205179,Spacious and sunny apartment by the Cloisters,921299,Mia,Manhattan,Washington Heights,40.8584,-73.93009,Entire home/apt,110,2,3,2019-05-28,1.55,1,12 +22205277,Modern Luxury Condo (Midtown West),162261784,Mariam,Manhattan,Hell's Kitchen,40.7687,-73.99184,Shared room,70,4,1,2018-01-01,0.05,1,0 +22205280,PRIVATE GARDEN APARTMENT IN HISTORIC BROWNSTONE,14142169,Casey,Brooklyn,Bedford-Stuyvesant,40.69165,-73.93483,Entire home/apt,140,7,31,2019-06-28,1.67,1,67 +22205284,New place near D line easy to get to Manhattan,5853457,Stanley,Brooklyn,Borough Park,40.64212,-73.9973,Entire home/apt,149,2,27,2019-06-16,1.47,4,308 +22205619,Luxury Riverview Williamsburg Apartment,2178877,Hazel,Brooklyn,Williamsburg,40.71881,-73.96397,Private room,100,5,3,2018-08-22,0.16,1,0 +22205622,Spacious Bedroom in apartment in Hamilton Heights,162263721,Magda,Manhattan,Harlem,40.82892,-73.95082,Private room,70,3,0,,,1,0 +22205765,Beautiful spacious Greenwich Village apt w/ garden,16798487,Vadim,Manhattan,Greenwich Village,40.73506,-73.99743,Entire home/apt,400,7,0,,,1,0 +22205780,"Spacious Brooklyn apartment with yard, roof access",67753773,Faziah,Brooklyn,Bedford-Stuyvesant,40.68754,-73.94183,Private room,40,5,6,2018-11-22,0.32,1,0 +22206164,Sleek and Hip Lower East Side 2 Bedroom,3452920,Isaac,Manhattan,Lower East Side,40.71765,-73.98452,Entire home/apt,220,1,3,2018-05-11,0.16,1,0 +22206207,Private room with visit to queens #4,158540605,Sonia,Queens,Glendale,40.69916,-73.8892,Private room,25,1,95,2019-07-05,6.18,6,258 +22206345,1 Bedroom/ 1 Bath in Bushwick,32345243,Ben,Brooklyn,Bushwick,40.69596,-73.92712,Private room,39,4,1,2018-01-02,0.05,1,0 +22206601,Soho/Nolita historic and central downtown location,144857346,Grace,Manhattan,NoHo,40.72485,-73.99461,Entire home/apt,350,3,1,2017-12-31,0.05,3,0 +22206970,Beautiful studio in the East Village,118407577,Vanessa,Manhattan,East Village,40.72588,-73.98243,Entire home/apt,90,4,4,2019-05-06,0.22,1,5 +22207196,Brad's Airbnb,97510172,Brad,Brooklyn,Bushwick,40.68545,-73.91237,Private room,30,2,4,2018-01-02,0.21,1,0 +22207357,The room boom,162116640,Tuvia,Brooklyn,Brighton Beach,40.58363,-73.96405,Private room,3000,1,0,,,1,90 +22207770,AWESOME PRIVATE FAMILY HOUSE CLOSE TO MANHATTAN,155989291,Ahmed,Queens,Corona,40.74725,-73.85486,Entire home/apt,359,3,10,2019-06-09,0.66,1,281 +22207975,"10 min prospect park , restaurant , s. activities",162278789,Jean,Brooklyn,Flatbush,40.65224,-73.95724,Private room,65,2,23,2019-05-13,3.15,1,0 +22207978,Sun-Drenched Luxury Loft with Private Roof Deck,803468,David,Brooklyn,Williamsburg,40.70929,-73.9477,Entire home/apt,109,3,6,2018-08-19,0.31,1,0 +22208060,"Large, sunny room in the heart of Williamsburg!",3791823,Nicole,Brooklyn,Williamsburg,40.70902,-73.96059,Private room,70,4,1,2018-12-31,0.16,1,0 +22208315,Patio Perfection,55324782,Kaitlin,Manhattan,Upper West Side,40.78309,-73.97831,Private room,75,1,1,2018-01-01,0.05,1,0 +22208373,Stunning Executive Apt Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74751,-73.97593,Entire home/apt,125,30,0,,,91,153 +22209216,Private spacious bedroom 10min from Manhattan!!,79373189,Laureta,Queens,Long Island City,40.75901,-73.93404,Private room,40,1,32,2019-06-23,1.75,2,123 +22209583,Spacious sanctuary + private bath in hip Bedstuy,162291393,Olya,Brooklyn,Bedford-Stuyvesant,40.6834,-73.94209,Private room,98,1,26,2018-11-25,1.40,1,73 +22209681,Great UES Private Apartment,162293435,Richie,Manhattan,Upper East Side,40.77585,-73.95337,Entire home/apt,110,2,2,2018-04-30,0.11,1,0 +22210721,East Village Getaway,29035593,Rachel,Manhattan,East Village,40.72339,-73.98911,Entire home/apt,115,3,0,,,1,0 +22212969,Large 3 Bedroom Luxury Apartment in Williamsburg,20855321,Dain,Brooklyn,Williamsburg,40.70643,-73.93976,Entire home/apt,145,3,0,,,1,0 +22213107,Spacious 1br in the heart of Bed-Stuy,3182367,Liz,Brooklyn,Bedford-Stuyvesant,40.68406,-73.93338,Entire home/apt,89,3,0,,,1,0 +22213389,Cinema Studio on Duplex Apt.,4667705,O. Xavier,Brooklyn,Bushwick,40.69787,-73.92703,Private room,85,1,59,2019-07-05,3.18,1,333 +22213508,Quintessential East Village Apt,6707833,Courtney,Manhattan,East Village,40.72711,-73.97727,Entire home/apt,300,5,1,2018-03-18,0.06,1,0 +22213572,2 bedroom available in the heart of Williamsburg,13795760,Eliza Love,Brooklyn,Williamsburg,40.7142,-73.96099,Private room,85,1,0,,,2,0 +22213600,Sunny and Cozy Brooklyn Apartment,4031946,Farideh,Brooklyn,Bushwick,40.69697,-73.93207,Entire home/apt,100,2,4,2019-06-30,0.64,1,9 +22213903,Cozy 2BR+Sofa in Quiet Part of Popular LES,93039729,Sunny,Manhattan,Lower East Side,40.7193,-73.98405,Entire home/apt,225,1,0,,,2,0 +22214268,Cozy 1BR+SofaBed in Quiet Part of Popular LES,93039729,Sunny,Manhattan,Lower East Side,40.71833,-73.98562,Private room,95,1,0,,,2,0 +22214383,UNIQUE 1 BED ROOM in FLATIRON/NOMAD/GRAMERCY,130528939,Colette,Manhattan,Midtown,40.74238,-73.98439,Entire home/apt,91,2,1,2018-01-02,0.05,1,0 +22214395,Spacious Studio In Queens,162276183,Gary,Queens,Rego Park,40.71663,-73.85823,Entire home/apt,59,1,110,2019-06-24,5.92,1,147 +22214408,"Balcony Duplex and Loft, Steps from the Subway",292137,Brandon,Brooklyn,Bushwick,40.69754,-73.9348,Private room,74,21,2,2018-09-30,0.12,1,0 +22214478,Furnished room in a 5 br apartment,104222590,Saarthak,Manhattan,Harlem,40.83044,-73.94839,Private room,33,3,3,2018-01-01,0.16,1,0 +22214583,"Wonderful & Cozy Rm in Uptown Apt, Next to 1 Train",161644370,Dee,Manhattan,Harlem,40.82245,-73.95404,Private room,42,14,2,2018-04-13,0.11,1,0 +22214594,A birdcage on the Upper West Side,81503286,Aissa,Manhattan,Upper West Side,40.79641,-73.97088,Entire home/apt,75,3,5,2018-02-18,0.28,1,0 +22214859,HUGE CORNER 1BR -Columbus Circle -LUXURY AMENITIES,13773574,Cecile,Manhattan,Midtown,40.76512,-73.98201,Entire home/apt,225,30,0,,,12,344 +22214974,Brooklyn City Abode,160495098,Miller,Brooklyn,East Flatbush,40.63338,-73.94753,Private room,39,2,7,2018-12-06,0.50,5,0 +22215122,STUNNING VIEWS!!! - CORNER APT. - COLUMBUS CIRCLE,13773574,Cecile,Manhattan,Midtown,40.76575,-73.98168,Entire home/apt,225,30,0,,,12,343 +22215258,RIVER VIEWS - PRIVATE BALCONY **Gym/Pool/Rooftop**,13773574,Cecile,Manhattan,Midtown,40.7652,-73.98174,Entire home/apt,225,30,1,2018-08-19,0.09,12,343 +22216259,"纽约曼哈顿 唐人街公寓 方便,性价比高",159187644,Wen,Brooklyn,Bergen Beach,40.61807,-73.90162,Private room,100,5,0,,,1,89 +22217757,3-BR duplex in Bed-Stuy Brownstone,3616251,Michael,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95109,Entire home/apt,66,3,41,2019-06-25,3.30,1,219 +22218658,Bed-Stuy IS FLY!! 1-8 guests,162352916,J C,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95418,Private room,50,1,24,2019-04-25,1.30,1,354 +22219529,Modern 2-person room near Subway in Bushwick,101970559,Sergii,Brooklyn,Bushwick,40.69476,-73.90545,Shared room,32,30,3,2018-08-31,0.17,6,365 +22221072,Private cozy room in Bushwick / full-size bed,101970559,Sergii,Brooklyn,Bushwick,40.69295,-73.90851,Private room,50,30,4,2018-06-23,0.21,6,325 +22222996,Private Bedroom near Columbia University,77824133,Ebin,Manhattan,Harlem,40.81634,-73.95735,Private room,35,7,0,,,1,0 +22224072,Beautiful & Modern in the Heart of East Village,13097902,Bruna,Manhattan,East Village,40.72652,-73.98966,Entire home/apt,250,2,29,2019-06-30,1.58,1,38 +22224790,Large Bright FULL 1BD in the Heart of BUSHWICK !,1695734,Amira,Brooklyn,Bushwick,40.70108,-73.91409,Entire home/apt,95,3,4,2018-10-09,0.21,1,0 +22224945,IL TUO APPARTAMENTO PERSONALE IN NEW YORK CITY!!,62068432,Rita,Manhattan,Harlem,40.81462,-73.95047,Entire home/apt,80,6,2,2019-03-31,0.10,1,31 +22225158,COLUMBUS CIRCLE LUXURY - STUNNING RIVER VIEW,13773574,Cecile,Manhattan,Midtown,40.76563,-73.98242,Entire home/apt,225,30,0,,,12,340 +22225555,Sunny Williamsburg Style in Prime Location ❤️,9416996,Keren & Mikey,Brooklyn,Williamsburg,40.71672,-73.95819,Entire home/apt,220,2,95,2019-07-06,5.02,1,67 +22226150,Hell's Kitchen Apartment,4670203,Chris,Manhattan,Hell's Kitchen,40.76285,-73.98728,Private room,105,1,2,2017-12-28,0.11,1,89 +22226156,"Manhattan 1BD in 2BD near ESB, UN, NYU w/roof deck",14103679,Hugh,Manhattan,Murray Hill,40.74623,-73.97404,Private room,199,2,75,2019-06-13,4.04,1,80 +22226334,Spacious private bedroom in Brooklyn New York,4143813,Yu,Brooklyn,Bushwick,40.70162,-73.91297,Private room,53,5,1,2018-01-02,0.05,1,0 +22226558,Homely Queens Home,162411010,Victor,Queens,Ozone Park,40.68562,-73.83498,Entire home/apt,125,7,3,2019-06-15,0.33,1,69 +22227015,Upper West Side Luxury! See fall in Central Park!,4332666,Andrew,Manhattan,Upper West Side,40.79492,-73.96816,Entire home/apt,400,3,10,2018-10-18,0.56,1,64 +22227610,A suite like room with a private bathroom.,132934081,Sam,Brooklyn,Borough Park,40.64495,-73.99615,Private room,70,7,2,2019-01-06,0.11,1,0 +22228935,Private Room in Nice Apt. Close to Manhattan. WIFI,80561485,Gabriela,Queens,Astoria,40.77418,-73.93545,Private room,50,1,62,2019-06-18,3.36,2,7 +22229244,Spacious cozy place in heart of nolita,16569491,Julian,Manhattan,Nolita,40.72184,-73.99452,Private room,20,14,9,2018-06-26,0.48,1,0 +22229473,"Duplex in Williamsburg with Terrace, 4 Bed 2 Bath",162432541,Emily & Joseph,Brooklyn,Williamsburg,40.71053,-73.96261,Entire home/apt,300,2,14,2019-06-16,2.27,2,279 +22229755,Entire private lower unit of owner occupied duplex,1036697,Patricia,Brooklyn,Bushwick,40.69436,-73.92261,Entire home/apt,89,3,21,2019-06-03,1.14,1,30 +22229793,Quiet cozy room in Williamsburg,6111084,Nebojsa,Brooklyn,Williamsburg,40.7063,-73.94439,Private room,59,2,42,2019-07-07,2.23,2,14 +22230294,"Large, Bright, Open 1-BR Oasis in Gramercy Park",1391186,Adam,Manhattan,Flatiron District,40.73962,-73.98492,Entire home/apt,221,5,7,2019-03-29,0.38,1,1 +22230375,318 58 st brooklyn ny 11220,160867897,Mercedes,Brooklyn,Sunset Park,40.64351,-74.01848,Private room,100,2,1,2018-03-17,0.06,1,365 +22230454,☆Huge Private Room Near Park & Train in MANHATTAN!,20134899,Michael,Manhattan,Harlem,40.82816,-73.94957,Private room,69,2,47,2019-05-16,3.78,2,0 +22230702,(☆☆☆☆☆) New ultra-modern 1 bedroom apartment,129165729,Cindy,Queens,Astoria,40.76234,-73.91991,Entire home/apt,150,1,75,2019-06-30,4.38,1,317 +22231328,Spacious Brooklyn loft in Clinton Hill,4642506,Devin,Brooklyn,Bedford-Stuyvesant,40.69216,-73.96011,Private room,275,2,17,2019-06-25,0.92,1,72 +22231453,•HEART OF WILLIAMSBURG APARTMENT COZY&PRIVATE•,128793815,Atthaphon,Brooklyn,Williamsburg,40.71917,-73.96079,Private room,55,2,68,2019-07-03,3.67,4,279 +22231557,•COZY APARTMENT 5 MINS TO MANHATTAN•,128793815,Atthaphon,Brooklyn,Williamsburg,40.72092,-73.96122,Private room,65,2,31,2019-07-01,1.68,4,282 +22231558,Spacious 3BR/3BA in the East Village,7002074,Ryder,Manhattan,East Village,40.72625,-73.97822,Entire home/apt,250,2,2,2017-12-30,0.10,1,0 +22231784,SUNNY WITH RIVER VIEWS - Private Balcony! -,13773574,Cecile,Manhattan,Midtown,40.76639,-73.98163,Entire home/apt,225,30,0,,,12,343 +22231811,Stylish & Spacious 1BD in Central Harlem!,17430718,Natasha,Manhattan,Harlem,40.81537,-73.94067,Entire home/apt,135,3,21,2019-06-10,1.13,2,75 +22232269,Cozy one bedroom apartment perfect for couples,145993199,Bradley,Brooklyn,Flatbush,40.63436,-73.96126,Entire home/apt,90,2,13,2019-04-07,0.70,1,5 +22232328,"LUX 2Bed/UWS Gem! +5 Min Walk to Central Park",57470846,Melissa,Manhattan,Upper West Side,40.78472,-73.97575,Entire home/apt,175,3,0,,,1,0 +22232425,1 Bedroom with a lot of Sunshine,162459728,Chikako,Manhattan,Harlem,40.80639,-73.94834,Entire home/apt,82,2,0,,,1,0 +22232444,Oversized 1BR in Doorman Building by Central Park,33610939,Ishaan,Manhattan,Morningside Heights,40.80486,-73.9656,Private room,200,2,0,,,1,0 +22232463,Cosy Apartment in the Heart of Manhattan,7286095,Lior,Manhattan,Chelsea,40.7443,-73.99732,Entire home/apt,135,1,0,,,1,0 +22232470,Cozy 1BR + Sofa in Quiet Part of Popular LES,17787106,Darwin,Manhattan,Lower East Side,40.71757,-73.98394,Private room,75,1,2,2018-01-02,0.11,1,0 +22233024,Newly Renovated 1BR in SoHo/Nolita,23261539,James,Manhattan,Nolita,40.72344,-73.99592,Entire home/apt,225,7,1,2018-06-28,0.08,1,0 +22233039,Room in Central Harlem for the holidays,12821514,Axelle,Manhattan,Harlem,40.80961,-73.94588,Private room,34,2,4,2019-06-26,0.21,1,0 +22235441,"Safe, Overnight Crash Pad Near JFK, LGA and NYC",72838963,Deborah,Queens,Jamaica,40.68411,-73.79688,Shared room,19,1,26,2019-06-10,1.40,2,138 +22237320,Modern Room in Coliving/15min walk to Williamsburg,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93959,Shared room,35,30,4,2018-08-16,0.22,10,327 +22237930,Cozy Bushwick room with lots of natural light,30548145,Gareth,Brooklyn,Bushwick,40.69385,-73.9096,Private room,40,14,0,,,1,0 +22238046,Bronx 167th Grand ConCourse,162457374,Daniel,Bronx,Concourse Village,40.83314,-73.91708,Private room,38,2,0,,,1,0 +22241250,Newly renovated 1br in the heart of NY,4148879,Carlos,Manhattan,Flatiron District,40.74212,-73.99042,Entire home/apt,249,4,3,2019-05-22,0.16,1,0 +22241573,Private Room B In Prime Location,162427870,Anna,Manhattan,Chelsea,40.74729,-73.98957,Private room,115,1,162,2019-06-23,8.68,3,312 +22241666,Stylish Williamsburg waterfront apartment,31629237,Melissa,Brooklyn,Williamsburg,40.71783,-73.96141,Entire home/apt,150,3,0,,,1,0 +22241696,Private Room C In Prime Location,162427870,Anna,Manhattan,Midtown,40.74535,-73.99023,Private room,105,1,140,2019-06-23,7.39,3,321 +22242334,Whole Apartment Near Prospect Park,41423658,Diane,Brooklyn,Prospect-Lefferts Gardens,40.65896,-73.96104,Entire home/apt,69,2,37,2019-06-11,2.00,1,3 +22243957,Huge cozy artist haven in heart of Hamilton Hts.,5026324,Sean,Manhattan,Harlem,40.83029,-73.94962,Private room,79,2,1,2018-01-02,0.05,1,0 +22244184,"Luxury Private Bed, Bath & Desk in Williamsburg",45858744,Augustine,Brooklyn,Williamsburg,40.70755,-73.95314,Private room,100,2,3,2018-10-14,0.30,1,0 +22244254,Full floor of a beautiful Bedstuy duplex,7306239,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68885,-73.94349,Private room,80,1,4,2018-05-16,0.21,1,0 +22244917,Full room in Astoria max 2 (8 min from Manhattan),3186412,Vanessa,Queens,Astoria,40.75936,-73.91266,Private room,85,11,0,,,1,0 +22245314,Sunny Park Slope Studio,29001464,Grey,Brooklyn,Park Slope,40.67245,-73.97341,Entire home/apt,92,60,1,2018-10-17,0.11,1,0 +22245492,Ft Greene Studio,106899231,Heather,Brooklyn,Fort Greene,40.69387,-73.97316,Entire home/apt,100,4,53,2019-07-02,3.05,2,88 +22245972,Bed in shared room in Crown Heights,162554140,Tzvi,Brooklyn,Prospect-Lefferts Gardens,40.66208,-73.9443,Shared room,22,14,0,,,1,0 +22246294,Huge 2 Bedroom on Mercer St (Soho),162556385,Enrique,Manhattan,SoHo,40.72224,-73.99991,Entire home/apt,720,3,0,,,1,0 +22246770,Nice and sunny room in Williamsburg!!,3266249,Maria,Brooklyn,Williamsburg,40.71032,-73.95687,Private room,65,2,0,,,1,0 +22246864,••Rare Find! Modern Room Near Subway & JFK••,161349813,Yola,Queens,Woodhaven,40.69003,-73.8678,Private room,35,3,14,2019-01-14,0.83,2,0 +22247316,Brooklyn style Loft,43600815,Rafael,Brooklyn,Williamsburg,40.70481,-73.93766,Private room,50,4,0,,,2,0 +22247787,Amazing bedroom in Williamsburg!!,43816141,Ben,Brooklyn,Williamsburg,40.7087,-73.94519,Private room,70,3,3,2018-07-23,0.16,1,0 +22247895,Private Room near the Myrtle Wyckoff L/M train,23817448,Desirée,Queens,Ridgewood,40.7029,-73.91174,Private room,38,2,0,,,1,0 +22247923,Cozy East Village Home Away From Home,68112758,Alexandra,Manhattan,East Village,40.72188,-73.97957,Entire home/apt,237,4,7,2018-10-25,0.45,1,0 +22249013,Cozy Bushwick Loft Apartment,17672907,Imani,Brooklyn,Bushwick,40.69178,-73.91243,Private room,30,3,7,2018-03-12,0.38,1,0 +22249186,Mid-Mod 1 Bedroom Washington Heights NYC,75224562,Michael,Manhattan,Washington Heights,40.84855,-73.93704,Entire home/apt,250,2,1,2017-12-21,0.05,1,0 +22249256,"New Listing - North Williamsburg 1,000 sqft 1-BR",14815035,Amy,Brooklyn,Williamsburg,40.71938,-73.95476,Entire home/apt,170,3,0,,,1,0 +22249641,UES Gorgeous Apartment - 2 Blocks from the Met,22902111,Séhzad,Manhattan,Upper East Side,40.77774,-73.95711,Entire home/apt,400,5,0,,,1,0 +22249905,Cozy One Bed In The Middle of Manhattan,33470925,Stella,Manhattan,Hell's Kitchen,40.75827,-73.99544,Entire home/apt,210,4,2,2017-12-31,0.11,1,0 +22250050,Beautiful cozy room close to Manhattan,85216513,Andrey,Queens,Sunnyside,40.73679,-73.92561,Private room,50,2,2,2018-05-14,0.11,1,179 +22250239,Very big room with private bathroom/Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.6763,-73.94107,Private room,75,6,3,2018-08-31,0.16,3,0 +22250271,"Cute, Comfy & Cozy Room in Brooklyn",57034140,Alicia,Brooklyn,Bedford-Stuyvesant,40.69338,-73.93125,Private room,65,4,3,2018-03-24,0.16,1,0 +22250309,Brownstone Apartment near Manhattan,62048197,Adetoro,Brooklyn,Bedford-Stuyvesant,40.68373,-73.93056,Entire home/apt,85,2,2,2018-05-05,0.14,1,0 +22250584,Brooklyn Chateau,53693534,Guy,Brooklyn,Crown Heights,40.6756,-73.91465,Entire home/apt,100,5,0,,,1,0 +22251000,Charming 1 bedroom in West Village,4683415,Benny,Manhattan,West Village,40.73612,-74.00828,Entire home/apt,290,3,5,2019-01-01,0.63,1,0 +22251120,Huge one bed room apartment in Manhattan.,70068899,Cristian,Manhattan,East Harlem,40.80039,-73.9361,Entire home/apt,165,3,1,2018-01-01,0.05,1,0 +22251486,Cozy and Quaint 1 Bedroom in Soho!,17110907,Ben,Manhattan,SoHo,40.72594,-74.00136,Private room,180,4,1,2018-03-28,0.06,1,0 +22251732,Bed-Stuy (20mins to Manhattan/Williamsburg/Queens),162598902,Finnían,Brooklyn,Bedford-Stuyvesant,40.6861,-73.95161,Private room,40,4,2,2018-01-01,0.11,1,0 +22251884,Authentic and Open Tribeca Loft,16897284,Hugh,Manhattan,Tribeca,40.71813,-74.00538,Entire home/apt,325,1,35,2019-06-25,1.84,1,141 +22251910,Williamsburg Penthouse with 3 Private Terraces!,83091890,Andrei,Brooklyn,Williamsburg,40.71815,-73.94189,Entire home/apt,190,2,46,2019-07-01,2.97,1,239 +22252595,Perfect Stay to see all of Manhattan Sites,26984764,Lawrence,Queens,Long Island City,40.74397,-73.95667,Private room,90,2,1,2018-01-02,0.05,1,0 +22252628,"Cozy, convenient Manhattan Apartment in the LES",26022466,Calvin,Manhattan,Lower East Side,40.71495,-73.98589,Private room,70,1,8,2018-01-09,0.42,1,0 +22255089,HUGE 1 bedroom in Gramercy,124006965,Shawn,Manhattan,Kips Bay,40.73836,-73.98035,Entire home/apt,167,3,3,2018-04-01,0.16,1,0 +22256926,Beautiful room in Brooklyn,15640230,Susana,Brooklyn,Crown Heights,40.66452,-73.9337,Private room,33,30,1,2018-09-02,0.10,4,354 +22258159,Shared room in one minute walk to the M train!!,134293540,Valentin,Queens,Ridgewood,40.70117,-73.90666,Shared room,33,30,1,2017-12-22,0.05,4,7 +22258326,Gorgeous spacious renovated 1Bed in Hellskitchen!,42304005,Dina,Manhattan,Theater District,40.75957,-73.98798,Entire home/apt,151,2,18,2019-05-13,0.97,1,72 +22258432,Awesome designed shared room in beautiful Coliving,146345538,Sergii,Brooklyn,Bushwick,40.69329,-73.91328,Shared room,15,30,3,2018-07-14,0.16,5,344 +22258450,Gorgeous Queen Luxury Bedroom near J subway,5680111,Timothy,Brooklyn,Bushwick,40.68608,-73.91534,Private room,72,5,23,2019-05-26,1.21,7,112 +22258880,Midtown apt perfect for a New Years stay!,121713773,Salma,Manhattan,Midtown,40.74788,-73.98376,Private room,150,2,2,2018-01-02,0.11,1,0 +22259132,Elegant 2 Bedroom Cobble Hill apartment,162456824,Marie,Brooklyn,Cobble Hill,40.68675,-73.9995,Entire home/apt,145,1,67,2019-06-20,3.63,2,146 +22259472,"Bright, Spacious Apartment in Prime Brooklyn",49019705,Pamela,Brooklyn,Bushwick,40.70383,-73.92663,Entire home/apt,200,1,0,,,1,0 +22259480,"Bed-stuy, Brooklyn Private Bedroom",78895626,Kamerin,Brooklyn,Bedford-Stuyvesant,40.68444,-73.91874,Private room,35,4,0,,,1,0 +22260331,Holiday sublet in beautiful bed stuy!,26898137,Andrew,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94482,Private room,48,7,1,2017-12-14,0.05,1,0 +22260546,HUGE room in prime BUSHWICK,150837630,Dan,Brooklyn,Bushwick,40.69967,-73.9299,Private room,50,3,16,2019-05-19,0.85,1,0 +22260561,Quarto Bronx (NY),136455880,Alvina Da Silva,Bronx,Fordham,40.86674,-73.89284,Private room,30,2,2,2018-02-26,0.11,2,90 +22260983,RENOVATED 2 BEDROOM APT NEAR CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.79638,-73.96332,Entire home/apt,125,30,1,2018-08-04,0.09,16,284 +22261208,Spacious and sunny 2BDR Apt in Queens w/ balcony,405986,Sylvain,Queens,Rego Park,40.73269,-73.8584,Entire home/apt,81,4,6,2018-09-23,0.32,1,6 +22262408,Cozy East Village Studio,108774275,Megan,Manhattan,East Village,40.72712,-73.98233,Entire home/apt,115,2,14,2019-06-09,1.21,1,3 +22262419,AWESOME VIEWS * COLUMBUS CIRCLE * Pool/Gym/Balcony,13773574,Cecile,Manhattan,Midtown,40.76518,-73.98287,Entire home/apt,225,30,0,,,12,343 +22262595,FiDi Beautiful & Spacious Private Room & Bathroom,48296060,Luis,Manhattan,Financial District,40.71086,-74.00464,Private room,128,3,4,2018-10-31,0.36,1,0 +22262982,Cozy place next to Times Square,21577034,Anda,Manhattan,Hell's Kitchen,40.7638,-73.9944,Private room,65,1,28,2019-05-20,1.51,2,107 +22263236,Master Suite in Prospect Heights,65062170,Henry,Brooklyn,Prospect Heights,40.6776,-73.96638,Private room,80,3,1,2017-12-27,0.05,1,0 +22263267,Cozy apartment in Central Park North,161514654,Hafou,Manhattan,East Harlem,40.79598,-73.94838,Entire home/apt,135,2,56,2019-06-12,3.11,1,66 +22263855,SPECTACULAR SOHO GREAT ROOM LOFT 6000sq feet,6145729,Stephanie,Manhattan,SoHo,40.72605,-74.00572,Entire home/apt,3000,7,1,2019-06-30,1,1,325 +22263904,Luxury condo with King Bed & 4K TV,46842591,Panos,Manhattan,Financial District,40.70333,-74.00959,Entire home/apt,240,10,10,2018-12-02,0.54,2,216 +22264539,Loft-Style Room In Bushwick! (L/JMZ train line),104035649,Brittnee,Brooklyn,Bushwick,40.70185,-73.93119,Private room,50,2,0,,,1,0 +22264586,Williamsburg lofted bedroom,50909072,Timothy,Brooklyn,Williamsburg,40.71291,-73.95959,Private room,100,3,3,2018-02-13,0.16,1,0 +22265411,Prime Upper East 2BR~Best Value,162280872,Izi,Manhattan,Upper East Side,40.77383,-73.94903,Entire home/apt,150,60,5,2018-09-30,0.31,13,155 +22265621,Spacious Private Room by the East River,62792050,Joanna,Manhattan,East Harlem,40.78714,-73.94114,Private room,65,2,6,2018-06-15,0.37,1,0 +22265765,2Br~Prime Upper east~Central park~10 Min,162280872,Izi,Manhattan,Upper East Side,40.77466,-73.94748,Entire home/apt,150,30,5,2019-06-01,0.29,13,140 +22265878,"Quiet, newly renovated 2 Bedroom, Great Location",19119771,Marco,Manhattan,Harlem,40.82025,-73.95206,Entire home/apt,180,3,5,2018-09-03,0.26,1,0 +22266183,Home away from home in Upper Manhattan,6866356,Andrew,Manhattan,Washington Heights,40.85521,-73.93528,Private room,50,4,21,2019-06-10,1.15,1,34 +22266234,Huge 3 bedroom in Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76405,-73.98877,Entire home/apt,329,7,1,2018-03-26,0.06,3,89 +22266286,Gema's Place,44213272,Miss. G.,Queens,Ditmars Steinway,40.77216,-73.91252,Private room,138,30,0,,,5,234 +22266538,Huge Bedroom with Private Entrance and Yard Access,36283215,Bobby,Brooklyn,Williamsburg,40.71227,-73.93683,Private room,54,2,4,2018-03-18,0.22,1,0 +22266609,Bronx home with rooftop and laundry,29412145,Samantha,Bronx,Port Morris,40.80726,-73.92999,Private room,50,2,4,2018-01-02,0.21,1,0 +22266875,Cozy one bedroom,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94472,Entire home/apt,63,30,4,2019-05-23,0.26,6,281 +22267036,Bright beautiful modern large and secure.,138607228,Edward,Brooklyn,Bushwick,40.69367,-73.90756,Entire home/apt,150,2,41,2019-04-14,2.78,3,0 +22267217,City Living with a Home Town Feel.,105061915,Darlene,Manhattan,East Harlem,40.80279,-73.9445,Private room,43,1,13,2019-07-02,0.72,2,6 +22267382,Modern and Cozy Large Studio in Brooklyn,1910170,Katarina,Brooklyn,Fort Greene,40.68855,-73.97883,Entire home/apt,145,5,6,2019-01-01,0.32,1,0 +22267590,Spacious 1 bdr in Brooklyn Heights near all trains,4915579,Elisabeth,Brooklyn,Brooklyn Heights,40.69491,-73.99355,Entire home/apt,160,3,0,,,1,0 +22267769,Cosy room in a cool Williamsburg Apt,72593389,Jeremy,Brooklyn,Williamsburg,40.71353,-73.96216,Private room,60,2,1,2018-01-03,0.05,1,0 +22267906,located 15 minutes away from Time Square,24875845,Devito,Manhattan,Harlem,40.82592,-73.93911,Private room,85,2,15,2019-07-02,0.82,1,75 +22268101,Cute & Quiet 1 Bedroom In Greenwich Village,4243073,Sophia,Manhattan,Greenwich Village,40.72847,-74.00068,Entire home/apt,149,14,8,2019-03-23,0.42,1,38 +22268166,"Manhattan, Room w/3 Beds Near Metro & Central Park",154834587,Joo,Manhattan,East Harlem,40.79428,-73.94433,Private room,69,1,145,2019-06-22,7.64,1,4 +22268506,Cozy Stay,42427554,Donny,Brooklyn,Bushwick,40.69728,-73.91387,Private room,40,5,0,,,1,0 +22268514,4 bedroom / 2 bathroom LOCATION LOCATION LOCATION,13532838,Nik,Manhattan,Chinatown,40.71703,-73.9923,Entire home/apt,400,3,0,,,1,0 +22270195,LIC Private 1 Bdrm 10 mins away Manhattan NYC,162745077,Dorothy,Queens,Long Island City,40.75447,-73.92887,Private room,150,2,17,2019-06-22,0.92,2,72 +22273359,Amazing Apartment- 2 bedroom 1 bathroom,79680629,Martin,Manhattan,Hell's Kitchen,40.7625,-73.99778,Entire home/apt,350,2,3,2018-03-19,0.18,1,0 +22274388,Large Bedroom/Living Room/Bathroom and Backyard,77751221,Mathew,Brooklyn,Crown Heights,40.67423,-73.92913,Private room,90,3,16,2019-06-17,0.87,1,0 +22274854,Heart of East Village / Next to Tompkins Sq Park,162781363,Berk,Manhattan,East Village,40.72486,-73.98241,Entire home/apt,140,30,4,2018-09-15,0.22,1,190 +22274932,Bushwick Street Art,6924461,Dorota,Queens,Ridgewood,40.71261,-73.91429,Private room,80,2,39,2019-06-30,2.08,1,68 +22275245,"Spacious room in Historical South Street Seaport,",162784512,Biggi,Manhattan,Financial District,40.70875,-74.00183,Private room,129,30,32,2018-11-08,1.73,1,0 +22275716,Cozy Studio with Patio Next to Central Park,23939793,Tamar,Manhattan,Upper West Side,40.77428,-73.97893,Entire home/apt,60,3,11,2018-11-24,0.59,1,0 +22275821,"",49662398,Kathleen,Brooklyn,Bushwick,40.69546,-73.92741,Entire home/apt,110,4,5,2018-08-13,0.27,1,0 +22276159,Affordable private room in a home in NYC,12258594,Rosa,Staten Island,St. George,40.64497,-74.08456,Private room,75,2,10,2019-07-01,0.53,2,207 +22276602,Loft in Brooklyn,128560208,Catiana,Brooklyn,Williamsburg,40.70429,-73.936,Private room,150,5,3,2018-10-09,0.32,1,179 +22277233,Sunny & Dreamy Bedstuy Room,105018962,Karly,Brooklyn,Bedford-Stuyvesant,40.68379,-73.92932,Private room,45,3,1,2018-01-01,0.05,2,0 +22277333,Spacious 1 BR apartment in authentic Brooklyn,25769776,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65616,-73.95676,Entire home/apt,64,2,4,2018-01-14,0.21,1,0 +22277436,"(Entire apt) Bright 1 Br apt in Astoria, Queens NY",138200407,Liza,Queens,Astoria,40.76743,-73.92336,Entire home/apt,71,98,0,,,1,0 +22277909,"Cozy, Upper West Side One Bedroom",132464629,Bethany,Manhattan,Upper West Side,40.78178,-73.97928,Entire home/apt,135,12,1,2018-01-05,0.05,1,0 +22278389,Private Room w/ Balcony in Williamsburg (Rooftop),18616281,Lee,Brooklyn,Williamsburg,40.71453,-73.96038,Private room,100,1,10,2018-09-23,0.53,1,0 +22278680,纽约 罗岛曼哈顿短租 Cozy room in Roosevelt Island,68945394,Cr,Manhattan,Roosevelt Island,40.76176,-73.94999,Shared room,30,4,1,2018-01-10,0.06,1,0 +22278896,Affordable pied-a-Terre near south brooklyn ferry.,31069102,Cj,Brooklyn,Red Hook,40.67989,-74.00818,Entire home/apt,110,5,28,2019-04-09,1.53,1,0 +22278941,Book it Vintage!,116236385,Ri.,Manhattan,Upper East Side,40.78068,-73.94963,Private room,200,2,43,2019-06-15,2.33,1,8 +22279040,"Private Room (rm2), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81245,-73.95813,Private room,200,3,30,2019-06-10,1.84,6,1 +22279575,"Comfort, convenience, elegance near Prospect Park",96379938,Alexander,Brooklyn,East Flatbush,40.65381,-73.94819,Private room,30,2,48,2019-01-03,2.58,2,0 +22279816,THE PERFECT JANUARY SUBLET,41930087,Storm,Manhattan,Washington Heights,40.84826,-73.94131,Private room,65,1,6,2018-01-23,0.33,1,0 +22280002,Stuyvesant Heights Loft like Apartment.,67373899,Will,Brooklyn,Bedford-Stuyvesant,40.68206,-73.94417,Entire home/apt,100,1,25,2019-06-24,1.35,1,108 +22280395,Chinatown Super-host Quarters,4189538,Kevin,Manhattan,Two Bridges,40.71107,-73.99605,Entire home/apt,109,3,27,2019-01-01,1.46,1,0 +22280432,Private room in Fort Greene,2838365,Jonnie,Brooklyn,Fort Greene,40.68528,-73.96947,Private room,71,1,0,,,1,0 +22280482,HUGE private bedroom in Artists' home in Bushwick,43756609,Karina,Brooklyn,Bushwick,40.68847,-73.913,Private room,70,1,3,2018-01-01,0.16,2,0 +22280822,"Nice Room Where Soho, Little Italy, Chinatown Meet",7475578,MaTT,Manhattan,Little Italy,40.71909,-73.99731,Private room,70,5,3,2018-07-15,0.17,2,42 +22281684,Modern Uptown Stay,32153139,Michelle,Manhattan,Harlem,40.81318,-73.94508,Private room,85,3,0,,,2,0 +22281732,"Private Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.8112,-73.95967,Private room,100,3,42,2019-06-16,2.43,6,0 +22281854,2 Queen Beds in Private bedroom Safe neighborhood,80601038,Shelley,Queens,Forest Hills,40.72761,-73.84109,Private room,83,1,25,2019-06-15,1.35,2,361 +22281888,The Fountain House,162836752,Omowumi,Brooklyn,East New York,40.67077,-73.87564,Entire home/apt,169,2,23,2019-06-17,1.36,1,196 +22281921,Room close to mall,34954588,Andres,Queens,Elmhurst,40.74059,-73.86866,Private room,50,2,2,2017-12-30,0.11,1,365 +22282419,The real New York experience,80824522,Nat,Brooklyn,Bushwick,40.70208,-73.93259,Private room,55,1,19,2019-06-16,1.03,2,74 +22282513,Private Room on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.69049,-73.93262,Private room,65,2,23,2019-06-21,1.25,4,319 +22282585,New Private studio-apartment,107296819,Alexandra,Manhattan,East Harlem,40.79576,-73.93735,Entire home/apt,110,1,69,2019-06-16,3.64,3,9 +22283652,Simple stay in heart of Chelsea / Meatpacking,24478039,Harutoshi,Manhattan,Chelsea,40.74247,-74.00234,Entire home/apt,285,3,1,2018-01-01,0.05,1,0 +22284181,Real 1 BR Musical Gem in Times Sq/Midtown West,6447195,Aurora,Manhattan,Hell's Kitchen,40.76284,-73.99034,Entire home/apt,180,3,33,2019-03-30,1.79,2,0 +22288453,Private & Cozy Harlem/Washington Heights Room,126397762,Xavier,Manhattan,Harlem,40.83034,-73.94017,Private room,69,1,55,2019-01-12,2.91,3,0 +22289185,VERY LARGE STUDIO APT BEST LOCATION IN NYC,24715671,Julia,Manhattan,Midtown,40.74197,-73.98328,Entire home/apt,199,30,1,2018-06-27,0.08,4,177 +22290340,Brooklyn House,58380725,Osei,Brooklyn,Flatbush,40.65099,-73.95596,Entire home/apt,95,2,90,2019-07-04,4.79,1,73 +22290370,MODERN HIPSTER LOFT,11680404,Corina,Brooklyn,Williamsburg,40.71304,-73.96252,Entire home/apt,140,5,0,,,1,0 +22290580,A Holiday getaway in the heart of East Village,162914079,Abhi,Manhattan,East Village,40.72923,-73.98251,Private room,99,1,1,2018-01-02,0.05,1,0 +22290967,(Room 102)法拉盛舒适轻奢套房,75216989,Wenqin,Queens,Flushing,40.76475,-73.83,Private room,79,2,14,2019-06-12,1.71,4,320 +22291736,Perfect location - Clean and spacious!,37172480,Ken,Manhattan,Hell's Kitchen,40.76565,-73.98708,Entire home/apt,225,1,41,2019-07-07,2.20,1,11 +22291811,Charming flat with Williamsburg view,162923870,Etienne,Brooklyn,Williamsburg,40.71967,-73.9643,Entire home/apt,149,9,13,2019-07-01,0.86,1,29 +22291938,"Modern, Private Williamsburg Bedroom",83170219,Hannah,Brooklyn,Williamsburg,40.7052,-73.94397,Private room,60,2,1,2018-02-13,0.06,1,0 +22292535,Söderläge - Spacious Queen bedroom in Williamsburg,13262918,Glenn,Brooklyn,Williamsburg,40.71153,-73.95743,Private room,85,1,13,2019-04-27,0.73,3,11 +22292617,"Renovated apt, Harlem brownstone, private entrance",4520714,Masha,Manhattan,Harlem,40.81529,-73.94367,Entire home/apt,130,1,77,2019-06-22,4.16,1,21 +22292865,"BEDSTUY BK - PAD +SHORT/ LONG TERM STAYS +NO EVENTS",132130978,Mrs.,Brooklyn,Bedford-Stuyvesant,40.68644,-73.93967,Entire home/apt,150,1,50,2019-06-30,2.96,1,335 +22293021,Huge and Beautiful Room in a Very Nice Apartment.,137136024,Hector,Queens,Maspeth,40.72575,-73.89456,Private room,75,1,4,2018-02-15,0.22,1,0 +22293394,Hippie 1 Bedroom in Chinatown,48086015,Amira,Manhattan,Chinatown,40.71532,-73.99903,Entire home/apt,150,7,2,2017-12-19,0.11,1,0 +22293539,Room for sublet in lovely Ridgewood!,15788530,Diana,Queens,Ridgewood,40.70188,-73.90429,Private room,60,7,2,2018-01-04,0.11,2,0 +22294028,Spaced and beautiful - manhattan - close to subway,12531773,Renata,Manhattan,Harlem,40.82258,-73.95368,Private room,80,4,68,2019-07-06,3.65,2,102 +22294102,"Chic, Cozy Gramercy Apartment",9893943,Nicole,Manhattan,Gramercy,40.73445,-73.98423,Entire home/apt,220,3,12,2019-01-01,0.81,1,0 +22294260,Great 2bedroom in harlem,122919892,John,Manhattan,Harlem,40.82392,-73.94537,Entire home/apt,129,5,0,,,1,0 +22294283,Outdoor Space 2bed 2bath plus POOL,113805886,Yaacov,Manhattan,Upper East Side,40.7771,-73.9502,Entire home/apt,245,31,4,2019-04-21,0.29,33,342 +22294297,5th Avenue One Bedroom,4085770,Omar,Manhattan,Upper East Side,40.78208,-73.959,Entire home/apt,500,19,0,,,1,0 +22294357,One bed near All transportation step from Park,113805886,Yaacov,Manhattan,Upper East Side,40.77746,-73.95043,Entire home/apt,135,31,2,2018-01-08,0.11,33,338 +22294649,Cozy bedroom+bath for 2 in historic Park Slope NYC,6997016,Christine,Brooklyn,Park Slope,40.6718,-73.98251,Private room,190,2,57,2019-06-24,3.08,1,354 +22295038,Home away from Home-Close to trains and JFK,58237901,Nicola,Brooklyn,Brownsville,40.66116,-73.90305,Entire home/apt,100,4,29,2019-06-11,1.57,1,281 +22295587,Two Floor Penthouse Apartment with Private Terrace,152629314,Rahul,Manhattan,East Village,40.72454,-73.97573,Private room,80,3,2,2018-01-25,0.11,1,0 +22295591,Huge Luxury Brooklyn Apartment,70079814,Natia,Brooklyn,Sheepshead Bay,40.60583,-73.95165,Entire home/apt,200,3,4,2019-01-02,0.26,1,0 +22295702,East Village Studio Apartment,135587084,Cami,Manhattan,East Village,40.72504,-73.98327,Entire home/apt,150,12,17,2019-01-09,0.90,1,0 +22295848,Boutique Style Studio in the Heart of Astoria,1626430,Cristina,Queens,Ditmars Steinway,40.77714,-73.91071,Entire home/apt,120,2,81,2019-06-22,4.31,1,27 +22295960,Chelsea Gallery Space for events and exhibitions,3750764,Kevin,Manhattan,Chelsea,40.75081,-74.00396,Private room,2010,1,0,,,6,364 +22296097,Chelsea Gallery Space for events and exhibitions,3750764,Kevin,Manhattan,Chelsea,40.74913,-74.00373,Private room,3210,1,0,,,6,364 +22296197,"Chelsea Gallery for events, exhibitions, fashion",3750764,Kevin,Manhattan,Chelsea,40.74888,-74.00481,Entire home/apt,4160,1,0,,,6,364 +22300341,Spacious Comfortable Williamsburg- 1 Bedroom Apt,4238402,Will,Brooklyn,Williamsburg,40.71558,-73.94801,Entire home/apt,117,2,1,2017-12-28,0.05,1,0 +22301670,Charming One Bedroom In Cobble Hill,162456824,Marie,Brooklyn,Cobble Hill,40.68696,-73.99955,Entire home/apt,125,1,68,2019-06-23,3.65,2,142 +22302452,High Ceilings & Great Light,1371055,Bonny,Brooklyn,Prospect Heights,40.67764,-73.96632,Private room,70,5,18,2019-06-03,0.98,1,8 +22302587,Charming room perfect to spend Summer,8358654,Daniela,Brooklyn,Williamsburg,40.71796,-73.95522,Private room,75,2,0,,,1,0 +22302785,Stunning Loft Penthouse Central Park Terrace New,157757066,Cynthia,Manhattan,Upper East Side,40.76683,-73.96867,Entire home/apt,1046,1,10,2018-10-07,0.54,1,365 +22303234,"Bright, spacious room in Williamsburg!",4421803,Jen,Brooklyn,Williamsburg,40.71092,-73.94765,Private room,60,4,0,,,1,0 +22303856,Large 1-bedroom in Chelsea (unfurnished),4364889,Simone,Manhattan,Chelsea,40.74696,-73.99556,Entire home/apt,152,1,4,2017-12-31,0.21,1,0 +22303888,"Convenient to the east and west, private basement.",310296,Jaqui And Mark,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94676,Entire home/apt,65,1,57,2019-06-29,3.07,2,53 +22303956,LARGE Best Loc & View of NYC! 10 Min to Time Sqr,44682387,Sky,Brooklyn,Greenpoint,40.72857,-73.95688,Private room,195,2,72,2019-07-01,3.93,2,165 +22303992,Private Master Bedroom in Harlem,49404324,Brandon,Manhattan,Morningside Heights,40.80751,-73.95745,Private room,70,2,0,,,1,0 +22304458,Loft w/Private Rooftop. Spectacular NYC Views,2435822,Alice,Brooklyn,Williamsburg,40.70781,-73.94479,Entire home/apt,225,2,57,2019-06-17,3.08,1,59 +22304644,Shannan's Place,163046191,Elma,Brooklyn,Fort Greene,40.68522,-73.97115,Private room,57,28,2,2019-05-31,0.11,2,77 +22304663,Charming House with Manhattan Views!,163047898,Erika,Queens,Long Island City,40.74801,-73.95032,Entire home/apt,160,2,2,2018-01-01,0.11,1,0 +22304757,Unique SoHo Oasis,134031945,Chloé,Manhattan,SoHo,40.72516,-74.00242,Entire home/apt,200,3,0,,,1,0 +22305350,"Bright, clean, private room in good neighborhood",335016,Theresa,Brooklyn,Bushwick,40.70398,-73.92403,Private room,29,2,7,2018-08-13,0.38,1,0 +22305797,Cozy bedroom in a share apartmet,65339610,Carlos,Bronx,Norwood,40.87504,-73.88476,Private room,200,3,0,,,1,83 +22305896,Charming Garden Apartment in Brooklyn Brownstone,530553,Jacob,Brooklyn,Bedford-Stuyvesant,40.68156,-73.92036,Entire home/apt,149,2,70,2019-07-01,4.48,1,309 +22305946,Spacious room in a cosy BedStuy palace,79704239,Alice,Brooklyn,Bedford-Stuyvesant,40.68891,-73.9548,Private room,45,5,0,,,2,0 +22306163,Lovely Quiet Room in Bushwick Brooklyn,4162008,Isaac And Izzy,Brooklyn,Bushwick,40.69914,-73.93394,Private room,45,1,1,2018-01-02,0.05,2,0 +22306300,Stylish spacious 1 bd centrally located in Midtown,10730227,Juliana,Manhattan,Hell's Kitchen,40.75547,-73.99513,Entire home/apt,162,3,9,2019-01-01,0.49,1,0 +22306777,"Spacious, luminous, furnished Bushwick room",19561602,Bartolomeo,Brooklyn,Bushwick,40.69613,-73.93264,Entire home/apt,50,5,2,2018-01-13,0.11,1,0 +22306848,2 bedroom Central Park West,110704364,Francisco,Manhattan,Upper West Side,40.77654,-73.97694,Entire home/apt,400,1,0,,,1,0 +22306969,Cozy 1BR Woodside (20min - midtown&Bus from LGA),3161518,Brian & Akiko,Queens,East Elmhurst,40.75689,-73.89763,Entire home/apt,110,1,3,2018-01-05,0.16,1,0 +22307078,Cozy studio in Gramercy,36163515,Margaret,Manhattan,Gramercy,40.73419,-73.98132,Entire home/apt,90,2,3,2018-07-23,0.17,1,0 +22307248,Cool & Calm 3 Bed Apartment in Beautiful Bedstuy,18146050,Joseph,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94693,Entire home/apt,38,4,5,2018-06-11,0.27,1,0 +22307800,Cozy One Bedroom Apt in Brooklyn Close to Beaches,163077876,Diego,Brooklyn,Gravesend,40.58486,-73.99004,Entire home/apt,59,2,42,2019-06-19,2.33,1,35 +22307861,Lovely 1BR Harlem apartment,16004068,Rachel,Manhattan,Harlem,40.80379,-73.95257,Entire home/apt,105,3,4,2018-05-28,0.21,1,0 +22308102,Cozy Triplex in UES with 2 balconies near Bloomies,109270724,Juno,Manhattan,Upper East Side,40.76327,-73.96197,Entire home/apt,210,1,1,2017-12-28,0.05,1,0 +22308180,Sunny Manhattan Studio,2424166,Mikhael,Manhattan,Upper East Side,40.77627,-73.95124,Entire home/apt,150,3,0,,,1,0 +22308705,"Private, Roomy, Convenient Williamsburg Hotspot",23165019,Alex,Brooklyn,Williamsburg,40.70689,-73.9506,Private room,250,1,8,2018-06-13,0.43,1,0 +22308824,Clean and Comfy Home,56704653,Jesus,Manhattan,East Harlem,40.7976,-73.93388,Entire home/apt,170,2,0,,,1,0 +22309027,Brownstone Garden Apartment,6154298,Nick,Brooklyn,Clinton Hill,40.68585,-73.96461,Entire home/apt,115,2,0,,,1,0 +22309304,Upper class in the upper east,75872359,Meryl,Manhattan,Upper East Side,40.77835,-73.94756,Entire home/apt,150,2,1,2018-01-01,0.05,1,0 +22309568,My home.,162546695,Alexander,Queens,Rego Park,40.72946,-73.86277,Private room,100,1,0,,,1,83 +22309616,"Cool and Cozy living room, confortable couch .",160159744,Julio,Manhattan,East Village,40.72299,-73.97809,Shared room,42,2,37,2019-06-30,3.02,1,1 +22309710,"Newly Renovated, by LaGuardia Airport",163098446,Md,Queens,East Elmhurst,40.76314,-73.88619,Entire home/apt,125,1,77,2019-07-05,4.50,1,348 +22309725,Astoria clean private room,135446962,G,Queens,Astoria,40.76797,-73.92807,Private room,50,3,0,,,1,0 +22309732,1 bedroom near Wall Street,6933112,Josie,Manhattan,Financial District,40.70711,-74.01526,Private room,130,1,0,,,2,0 +22309866,Cozy apartment close to subway & good restaurants,72410854,Nikolina,Queens,Astoria,40.75824,-73.92822,Entire home/apt,100,4,0,,,1,0 +22309943,Private room in Brooklyn 3 blocks from subway.,163087464,David,Brooklyn,Bedford-Stuyvesant,40.69131,-73.95666,Private room,59,4,53,2019-07-02,2.88,1,39 +22310190,COZY&QUITE WITH PARK AROUND THE BLOCK BARS & SHOPS,163103487,Raquel,Manhattan,East Village,40.72515,-73.98422,Entire home/apt,199,7,13,2019-06-11,0.82,1,349 +22312190,Art Lover’s Dream! Chelsea Delight!,52602009,Norman,Manhattan,Chelsea,40.75071,-74.00247,Private room,84,2,119,2019-06-19,6.44,1,20 +22312886,Charming West Village Studio Pied-A-Terre.,1723702,Ilse,Manhattan,West Village,40.74,-74.0079,Entire home/apt,80,60,1,2017-12-30,0.05,1,0 +22316496,Cozy private room in the heart of Nolita / Soho,8726000,Larasati,Manhattan,Nolita,40.72347,-73.99302,Private room,70,2,2,2019-02-25,0.11,1,0 +22318150,Large Loft Apartment - Private Terrace and Rooftop,34403474,Kwame,Brooklyn,Crown Heights,40.67546,-73.93171,Entire home/apt,90,2,15,2019-05-05,0.84,1,0 +22318346,Comfy 23rd Floor Washington Heights Home,985926,Erin,Manhattan,Washington Heights,40.84385,-73.94324,Entire home/apt,75,20,0,,,1,0 +22321208,Elegant Apartment for Holidays in East Village,65390606,Carol,Manhattan,East Village,40.72677,-73.98267,Entire home/apt,150,5,1,2017-12-18,0.05,1,0 +22321252,Private bedroom in a doorman building in NYC,138347327,Ariel,Manhattan,Hell's Kitchen,40.76684,-73.98539,Private room,87,1,2,2019-03-18,0.13,1,0 +22321322,Spacious & Comfy Apt in Heart of NYC,964882,Pedro,Manhattan,Kips Bay,40.74435,-73.98097,Entire home/apt,140,4,1,2017-12-26,0.05,1,0 +22321708,Quiet and Spacious Bedroom by the Astoria Park,20780421,Manca,Queens,Ditmars Steinway,40.77626,-73.92462,Private room,49,7,10,2019-06-01,0.55,1,0 +22321716,"Entire Apart, Close to Airport 15 min to Manhattan",163189326,Pema,Queens,Jackson Heights,40.75439,-73.89532,Entire home/apt,105,1,64,2019-06-21,3.60,1,314 +22321796,Brooklyn cute corner-unit modern apartment!,68822704,Stefanie,Brooklyn,Bedford-Stuyvesant,40.68345,-73.95078,Entire home/apt,60,4,1,2018-01-02,0.05,1,0 +22322311,Cute and Cozy One Bedroom with optional Futon Bed!,65292898,Callie,Manhattan,East Harlem,40.79733,-73.93695,Private room,75,2,0,,,1,0 +22322326,Cozy room next to TimesSquare.,21577034,Anda,Manhattan,Hell's Kitchen,40.76384,-73.99309,Private room,65,1,4,2019-06-29,0.94,2,153 +22322524,Alcove Studio in the heart of Williamsburg,103259676,Flávio,Brooklyn,Williamsburg,40.72021,-73.95695,Entire home/apt,150,4,14,2019-01-07,0.77,1,0 +22323325,Cozy One-Bedroom In Heart of Williamsburg,30466311,Alexandra,Brooklyn,Williamsburg,40.71787,-73.9587,Entire home/apt,125,3,17,2019-06-30,1.10,1,14 +22324099,Comfortable room in Manhattan Chinatown Apartment,21028594,Gorm,Manhattan,Chinatown,40.71623,-73.99521,Private room,41,15,3,2018-01-16,0.16,1,0 +22324649,Stylish Apartment with Stunning Roof,33714151,Rory,Brooklyn,Bushwick,40.69348,-73.92497,Private room,100,2,0,,,1,89 +22324705,Spacious 1 Bedroom in the Heart of Union Square!,163210909,Mona,Manhattan,Gramercy,40.73509,-73.98637,Entire home/apt,249,3,8,2019-05-19,0.48,1,175 +22325054,UWS 2Bed Duplex Near Central Park!,1227833,Fran,Manhattan,Upper West Side,40.78012,-73.97874,Entire home/apt,250,2,0,,,1,0 +22325426,Convenient and friendly home away from home,163217478,Myriam,Queens,East Elmhurst,40.75966,-73.88295,Private room,45,1,140,2019-07-06,7.47,2,81 +22325453,1 BR Close to Central Park,153660271,Gina,Manhattan,Harlem,40.8041,-73.95252,Private room,150,1,28,2018-12-30,1.49,1,68 +22325617,Charming room in Brooklyn,52109239,Joanne,Brooklyn,Bedford-Stuyvesant,40.68195,-73.92113,Private room,40,3,0,,,1,0 +22326826,Prime Williamsburg 1BR steps from the L train,74155984,Kathleen,Brooklyn,Williamsburg,40.71214,-73.94204,Entire home/apt,170,2,1,2018-01-01,0.05,1,0 +22327260,"Incredible Tribeca Loft: natural light, spacious",11243357,Sohel,Manhattan,Tribeca,40.72345,-74.01001,Entire home/apt,299,4,3,2018-05-07,0.16,1,0 +22327622,Teranga (Hospitality) in Brooklyn,25188010,Liz,Brooklyn,Bedford-Stuyvesant,40.68556,-73.95417,Private room,55,3,15,2019-07-01,0.81,1,66 +22327744,Sunny room in Queens for couple,79298323,Crispy,Queens,Maspeth,40.73449,-73.89227,Private room,45,5,12,2019-06-25,0.99,3,320 +22328089,*BEAUTIFUL BEDROOM**SUBWAY CLOSE!!,156259857,Joao,Brooklyn,Bushwick,40.68116,-73.90502,Private room,49,1,26,2019-05-31,1.41,3,115 +22328175,Big room with private bath - close to Manhattan,161351021,V,Queens,Woodside,40.75541,-73.90272,Private room,475,1,7,2018-03-01,0.37,2,0 +22328208,Gorgeous Room in Heart of Harlem,29346825,Shemel,Manhattan,Harlem,40.81688,-73.94132,Private room,34,1,1,2017-12-22,0.05,1,0 +22328478,"Sunny, Cozy, and a View!",31369576,Sivan,Brooklyn,Prospect-Lefferts Gardens,40.66057,-73.94373,Entire home/apt,129,2,3,2018-11-05,0.16,1,0 +22328585,Home sweet Harlem,154494056,Scarlet,Manhattan,Harlem,40.81991,-73.95248,Private room,75,1,4,2018-05-14,0.22,1,0 +22328689,Private room in GREENPOINT(hosting females only),12788163,Lina,Brooklyn,Greenpoint,40.72264,-73.9437,Private room,95,3,2,2018-01-03,0.11,1,23 +22329791,"Time Square ,Super Clean and Safe 2bedroom",145844983,Eric,Manhattan,Hell's Kitchen,40.76258,-73.9887,Entire home/apt,180,4,48,2019-07-05,2.58,1,61 +22330756,Cosy private Bedroom in Williamsburg,54658419,Pierre,Brooklyn,Williamsburg,40.71127,-73.95898,Private room,100,3,10,2019-04-25,0.55,2,0 +22331268,Charming West Village Apartment,4457329,Mia,Manhattan,West Village,40.7375,-74.00493,Entire home/apt,220,2,0,,,1,0 +22335475,Millions of View Luxury Apartment In Manhattan,31660984,Echo,Manhattan,Chelsea,40.75271,-73.99573,Entire home/apt,205,3,0,,,1,0 +22336218,Greenpoint Sun Garden,108150300,Cassi,Brooklyn,Greenpoint,40.7257,-73.95553,Private room,100,1,5,2019-06-24,0.27,2,163 +22336299,Boho Chic One Bedroom In Cobble Hill Brookyn,134948140,Tina,Brooklyn,Cobble Hill,40.68669,-73.99909,Entire home/apt,112,1,62,2019-06-17,3.33,1,151 +22336423,The Double U,40371157,Jimmy,Bronx,Longwood,40.82441,-73.90361,Private room,125,1,25,2018-12-09,1.34,2,0 +22336899,Brooklyn Home with Jacuzzi Tub and Backyard,15854250,Stephen,Brooklyn,Clinton Hill,40.69573,-73.96744,Entire home/apt,102,13,6,2019-06-10,0.33,1,0 +22337162,Comfortable and clean room,861330,Joseph,Brooklyn,Williamsburg,40.70232,-73.94587,Private room,40,10,0,,,3,0 +22337421,Cozy Sunny Private Room in Bed-Stuy Brooklyn,5891676,Miao,Brooklyn,Bedford-Stuyvesant,40.69157,-73.95522,Private room,65,2,40,2018-08-31,2.20,1,0 +22337426,Quaint NYC One Bedroom,57818788,Morgan,Manhattan,East Harlem,40.81038,-73.93809,Entire home/apt,100,3,3,2018-01-21,0.16,1,0 +22338292,Cute small one bedroom in Queens Woodside,5795423,Alexandre,Queens,Sunnyside,40.74632,-73.91299,Entire home/apt,80,1,3,2019-05-15,0.21,1,1 +22338296,Two Bedroom UES Apartment with Great Amenities,16026189,Rob,Manhattan,Upper East Side,40.77604,-73.951,Entire home/apt,200,2,8,2019-05-26,0.50,2,3 +22338304,"Brand New, Furnished 1 bedroom apartment",160726948,Mike,Manhattan,Kips Bay,40.74404,-73.97887,Entire home/apt,100,30,6,2019-04-01,0.45,2,271 +22338452,Comfortable East Village 1 Bedroom,4122771,Kara,Manhattan,East Village,40.72813,-73.98132,Entire home/apt,175,2,0,,,1,0 +22338613,"Quiet, comfortable true one bedroom near Columbia",52593822,Hannah,Manhattan,Harlem,40.83034,-73.94787,Entire home/apt,115,1,0,,,1,0 +22338850,**BUDGET private room w/backyard,154258141,Elsie,Brooklyn,Bushwick,40.68731,-73.91669,Private room,45,3,10,2019-05-29,0.90,10,322 +22338901,Serene Studio on the best street in Hells Kitchen!,58253835,Jake,Manhattan,Hell's Kitchen,40.75895,-73.99502,Entire home/apt,70,7,0,,,1,0 +22339165,Semi private room in great apartment,922478,Brad,Brooklyn,Clinton Hill,40.68232,-73.96043,Shared room,50,4,15,2018-08-27,0.81,2,0 +22339218,*Lp) Amazing Private Room in Brooklyn,154258141,Elsie,Brooklyn,Bushwick,40.68683,-73.91692,Private room,60,2,41,2019-06-12,2.46,10,362 +22339259,Cozy affordable room close to Express station!,64018594,Daphne,Manhattan,Harlem,40.80966,-73.95299,Private room,90,1,1,2017-12-31,0.05,2,0 +22339264,Private Sunny Bushwick Apartment,4534686,Maxwell,Brooklyn,Bushwick,40.69854,-73.9235,Entire home/apt,110,5,3,2018-12-31,0.17,1,0 +22339390,Easin' on the Artist Row,162436632,Kaj,Manhattan,East Village,40.7226,-73.97591,Private room,65,7,9,2019-05-06,0.71,1,144 +22339410,Cozy Room in East Williamsburg,38500165,Mikayla,Brooklyn,Williamsburg,40.70683,-73.94323,Private room,70,30,0,,,1,0 +22339430,*Ep) Beautiful Private Room 20 min to Manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68804,-73.91493,Private room,75,2,46,2019-06-24,2.65,10,360 +22339572,*Tr) Charming Private Room 20 min to manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68822,-73.91639,Private room,64,2,46,2019-06-19,2.67,10,352 +22339698,A Lovely 1 Bedroom Apartment Near Transportation !,163329653,Blandine,Brooklyn,East Flatbush,40.65145,-73.94553,Entire home/apt,120,2,83,2019-07-01,4.43,1,346 +22339754,Artistic Chic East Village Flat!,32926963,Garrett,Manhattan,East Village,40.72582,-73.97558,Private room,95,2,13,2019-01-02,0.70,1,0 +22339757,*Dg) Delightful Private Room 20 min to Manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68666,-73.91466,Private room,67,2,27,2019-06-21,1.55,10,359 +22339967,Great Room on UES,84679277,Joe,Manhattan,Upper East Side,40.77817,-73.95096,Private room,60,2,2,2019-05-05,0.30,1,0 +22340093,Newly Furnished 2BR~Prime UES~CPark~subway2 blocks,162280872,Izi,Manhattan,Upper East Side,40.774,-73.94932,Entire home/apt,150,30,3,2019-06-17,0.25,13,147 +22340384,Great Place! Great Space! Welcome 2 My BK Place!,18049970,Lou,Brooklyn,Brownsville,40.65948,-73.90084,Entire home/apt,175,3,56,2019-07-08,3.00,2,288 +22340790,Spacious 2 Bed on 34th & Lex,45377675,Karan,Manhattan,Kips Bay,40.74505,-73.97867,Entire home/apt,220,5,1,2018-01-01,0.05,1,0 +22340808,Manhattan Club Luxury Condo Central Park - Suite,16830841,Mara,Manhattan,Midtown,40.76548,-73.98035,Entire home/apt,365,1,13,2019-07-06,0.71,5,65 +22340915,Spacious Luxury Condo with VIP Amenities,8676157,Jet,Brooklyn,Williamsburg,40.71638,-73.93988,Entire home/apt,325,30,0,,,1,179 +22341035,"Cozy room 4 one JFK, LGA & subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68804,-73.80564,Private room,59,1,21,2019-06-05,1.53,3,348 +22341308,Large Private Room Perfect for 3-4 people!,155109689,Dolores,Brooklyn,Greenpoint,40.73322,-73.95177,Private room,121,1,8,2019-06-12,0.44,2,91 +22341660,"Cozy Private Room in Astoria, NY",67375050,Asema,Queens,Ditmars Steinway,40.77352,-73.91593,Private room,50,3,0,,,1,0 +22342020,Small room in Crown Heights,33060882,Antoine,Brooklyn,Crown Heights,40.67767,-73.95764,Private room,32,1,1,2018-01-22,0.06,1,0 +22342076,Modern style brand new building in Brooklyn!!,75578529,Saki,Brooklyn,Flatbush,40.649,-73.95248,Private room,49,2,0,,,1,0 +22342382,"MASTER, BEDROOM CLOSE TO LGA/TO MANHATTAN",44213272,Miss. G.,Queens,Ditmars Steinway,40.77233,-73.91251,Private room,50,2,38,2019-07-01,2.04,5,301 +22342547,3 BR apt on 2nd floor. Close to airport & Shopping,152371030,KerryAnna,Queens,Springfield Gardens,40.66566,-73.76002,Entire home/apt,95,2,44,2019-04-27,2.53,1,190 +22343079,Sunny and Private Room close to Manhattan!!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95326,Private room,75,2,61,2019-07-02,3.26,3,265 +22343274,holiday sublet,163366045,Abby,Manhattan,Harlem,40.81379,-73.95233,Private room,1000,11,0,,,1,0 +22343429,Spacious Greenwich Village Apt near Wash Sq. Park,15927874,Mike,Manhattan,Greenwich Village,40.72941,-74.00004,Entire home/apt,191,3,1,2017-12-20,0.05,1,0 +22343553,Greenpoint Loft,1177128,James Nathan,Brooklyn,Greenpoint,40.72529,-73.95595,Private room,125,3,9,2018-07-01,0.49,1,0 +22343658,"+Williamsburg Private Bedroom, Private backyard!",2772294,Nicolas,Brooklyn,Williamsburg,40.71136,-73.94527,Private room,55,14,5,2019-05-26,0.27,1,90 +22343909,Sublevel Penthouse Suite,52586141,Lance,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94895,Entire home/apt,110,4,40,2019-06-30,2.37,1,50 +22343961,✪Modern house @ Williamsburg | 15min to Manhattan✪,122177964,Henry,Brooklyn,Williamsburg,40.70192,-73.94169,Entire home/apt,250,1,95,2019-06-20,5.04,1,79 +22344067,The best place to rest and relax,160468444,Halim,Brooklyn,Brighton Beach,40.57991,-73.95657,Private room,85,60,0,,,1,358 +22344396,Sunny room in Bushwick,13394563,Virginia,Brooklyn,Bushwick,40.69112,-73.904,Private room,45,5,2,2018-03-14,0.12,1,0 +22344445,Times Square in NY,162966456,Dan,Manhattan,Theater District,40.75829,-73.98833,Private room,150,1,0,,,1,0 +22344483,Greenpoint Pad,163376694,Stephanie,Brooklyn,Greenpoint,40.72288,-73.9514,Entire home/apt,125,21,24,2019-04-29,1.30,1,264 +22345271,Apartment in Trendy and Vibrant Lower East Side,163384875,Sarah & Burak,Manhattan,Lower East Side,40.72002,-73.98893,Entire home/apt,185,2,92,2019-06-30,4.88,1,120 +22345676,Bushwick/BedStuy Studio Apartment,2921109,Alice,Brooklyn,Bedford-Stuyvesant,40.69104,-73.92886,Entire home/apt,104,2,31,2019-06-06,1.69,1,166 +22345693,Cozy room in Bushwick Collective,14805627,Giuseppe,Brooklyn,Bushwick,40.7032,-73.92703,Private room,45,2,8,2018-09-03,0.43,1,0 +22346131,MODERN HAVEN IN CITY,156187884,Mairo,Queens,Astoria,40.75596,-73.92798,Entire home/apt,135,2,44,2019-06-20,2.37,1,83 +22346154,Beautiful Room In Our Friendly Brooklyn Home,5064699,Juliana,Brooklyn,Bedford-Stuyvesant,40.68772,-73.94094,Private room,55,2,5,2018-09-23,0.27,2,0 +22346441,"Private room for 4 JFK, LGA, Subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68695,-73.8045,Private room,79,1,61,2019-06-18,3.30,3,151 +22349506,Shared room in nice surroundings in Ridgewood!!,134293540,Valentin,Queens,Ridgewood,40.70615,-73.90367,Shared room,27,31,5,2018-07-06,0.27,4,6 +22350243,Nice Penthouse very close to Manhattan and airport,163421878,Any,Queens,Woodside,40.74416,-73.91137,Private room,75,1,37,2019-06-30,2.09,3,344 +22352661,Modern 1 Bedroom in East Williamsburg,11742675,Malik,Brooklyn,Williamsburg,40.7078,-73.94619,Entire home/apt,135,1,24,2019-06-27,1.42,2,36 +22352793,"Cozy, impeccable, sunlit West Village studio",108275491,Juan,Manhattan,Chelsea,40.74093,-74.00285,Entire home/apt,110,2,1,2017-12-28,0.05,1,0 +22352928,Bright Brooklyn garden level apartment,1226742,Johnny,Brooklyn,Clinton Hill,40.68245,-73.96321,Entire home/apt,200,1,39,2019-06-30,2.44,2,362 +22353249,Chambre spacieuse,44410626,Cindy,Manhattan,Inwood,40.86318,-73.9221,Private room,50,4,0,,,1,0 +22353870,Great bedroom in cozy apt. close to Central Park.,19543830,Gabe,Manhattan,Harlem,40.7987,-73.9531,Private room,60,4,1,2018-12-26,0.15,1,0 +22353899,Chelsea Studio,733168,Farid,Manhattan,Chelsea,40.74761,-74.00584,Entire home/apt,175,5,3,2018-08-11,0.16,1,0 +22354307,Location location soho cozy apt heart of NYC,163458740,Blair,Manhattan,SoHo,40.72547,-74.0021,Entire home/apt,190,1,94,2019-07-01,5.18,1,187 +22354348,"Hotel at Time Square, only $116/day (Final)",52181900,Melanie,Manhattan,Midtown,40.75498,-73.9903,Entire home/apt,100,1,0,,,1,0 +22354598,Ideal studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74979,-73.97551,Entire home/apt,111,30,1,2019-04-06,0.32,50,317 +22355018,Sunlit BR+private bath in pristine Nolita loft,7465567,Nick,Manhattan,Chinatown,40.71835,-73.99641,Private room,130,2,2,2018-04-12,0.13,2,0 +22355365,Master room w/ Private Bath in Financial District,100701558,Emeka,Manhattan,Financial District,40.70521,-74.00678,Private room,100,1,0,,,1,0 +22355505,"Large, cozy, quiet & beautiful room West Harlem",29003805,Akemi,Manhattan,Harlem,40.82592,-73.94629,Private room,44,2,1,2017-12-26,0.05,2,0 +22356093,Great location and amazing place to stay,39150374,Melissa,Manhattan,West Village,40.73638,-73.99763,Private room,100,1,0,,,1,0 +22356352,Simple One Bedroom Brooklyn Apartment,76835453,Frida,Brooklyn,Bushwick,40.69492,-73.91826,Entire home/apt,70,1,2,2018-01-05,0.11,1,0 +22356843,Bright Light Highrise Spacious Room with Balcony,382836,Chemme,Manhattan,Hell's Kitchen,40.75858,-73.99227,Private room,140,4,24,2019-06-30,1.30,4,355 +22356845,The BROOKLYN Room with Outdoor Space,7416563,Timo,Brooklyn,Downtown Brooklyn,40.68962,-73.98489,Entire home/apt,80,4,87,2019-06-16,4.71,1,4 +22357450,Stunning & spacious loft in the heart of W.berg,137822449,Kaitlin,Brooklyn,Williamsburg,40.71845,-73.95533,Entire home/apt,179,2,13,2019-07-02,0.71,1,35 +22357832,Charming Bedroom in Washington Heights!,13575029,Julian,Manhattan,Washington Heights,40.84849,-73.93107,Private room,47,2,3,2018-01-12,0.17,1,0 +22357868,Empire State views from your bedroom,4393509,Lee,Manhattan,SoHo,40.72783,-74.004,Entire home/apt,160,7,1,2018-03-09,0.06,1,0 +22358241,Brooklyn Overnight Crash Pad,82192372,Jessika,Brooklyn,Williamsburg,40.70954,-73.95922,Private room,80,1,0,,,1,0 +22358421,Sex in the City Pad w/ Open City Views PRIME UES!,163489115,Glen,Manhattan,Upper East Side,40.77795,-73.94653,Entire home/apt,110,3,30,2019-06-23,1.62,1,265 +22359767,"Chic 4 BEDROOM, Nearby Metro, Rooftop.",158399244,Ted,Brooklyn,Bushwick,40.68853,-73.91765,Entire home/apt,250,1,103,2019-06-25,5.50,4,69 +22360132,Upper West Side Garden apartment,50578169,Joyce,Manhattan,Upper West Side,40.78242,-73.98381,Entire home/apt,400,3,32,2019-06-23,1.88,1,69 +22360577,"Warm, Modern Williamsburg Apartment",31867329,Rebecca,Brooklyn,Williamsburg,40.71251,-73.94148,Private room,70,1,1,2018-01-03,0.05,1,0 +22360657,Cozy 1 Bedroom in the Heart of Greenwich Village,48858084,Bryant,Manhattan,Greenwich Village,40.73008,-74.00123,Entire home/apt,225,7,0,,,1,0 +22360787,"Friendly, bright & safe first floor Brooklyn gem!",33738190,Jen,Brooklyn,Sunset Park,40.66316,-73.99643,Private room,80,1,0,,,3,0 +22360921,"Safe, clean, bright and cozy first floor BK gem!",33738190,Jen,Brooklyn,Sunset Park,40.66182,-73.99794,Entire home/apt,350,1,2,2018-01-01,0.11,3,0 +22361004,Manhattan NY Luxurious Hotel,160792280,Dez,Manhattan,Midtown,40.76595,-73.98169,Entire home/apt,190,1,0,,,2,0 +22361100,Loft in Times Square with Roof Balcony,30368670,Juan,Manhattan,Hell's Kitchen,40.76282,-73.99184,Entire home/apt,275,180,5,2018-07-17,0.27,2,364 +22361286,"Large one bedroom apartment in Inwood, Manhattan!",2488360,Laura,Manhattan,Inwood,40.86232,-73.93004,Entire home/apt,90,4,18,2018-11-25,0.98,1,0 +22361598,LARGE 1BR WITH AMAZING VIEWS!!,31142123,Hans,Manhattan,Chelsea,40.74826,-73.98928,Entire home/apt,159,4,3,2018-05-05,0.16,1,0 +22361604,Brooklyn Palace,163516658,Calisa,Brooklyn,East New York,40.656,-73.89719,Entire home/apt,80,1,139,2019-06-24,7.65,1,77 +22361657,Friendly and Artsy Brooklyn Bedroom,5778653,Trisha,Brooklyn,Bedford-Stuyvesant,40.69671,-73.94896,Private room,45,1,1,2017-12-31,0.05,1,0 +22361885,Cozy Room in East Village,52243881,Andrea,Manhattan,East Village,40.72318,-73.98342,Private room,65,1,1,2017-12-23,0.05,2,0 +22361893,Studio apartment -PRIVATE,163518918,N,Brooklyn,Williamsburg,40.70803,-73.94255,Entire home/apt,118,3,3,2019-05-24,1.32,1,249 +22362691,Cozy up in family friendly Queens!,7335887,Emily,Queens,Glendale,40.70037,-73.89344,Entire home/apt,60,2,34,2019-06-14,1.89,2,117 +22363371,Clean&Simple 2- Airport delays & Layovers,132341923,Cynthia,Queens,Jamaica,40.68922,-73.78684,Entire home/apt,57,1,91,2019-07-05,5.04,2,57 +22365504,Shared beautiful room at Bed-Stuy near subway,163259257,Vlada,Brooklyn,Bedford-Stuyvesant,40.69512,-73.93705,Shared room,32,30,2,2018-08-22,0.15,1,0 +22366842,Fully equipped room that's 3 mins from L train!,10994664,Alexander,Brooklyn,Bushwick,40.69208,-73.90452,Shared room,29,30,1,2018-12-11,0.14,8,334 +22366866,"Cozy, quiet, clean Room In Brooklyn",4162008,Isaac And Izzy,Brooklyn,Bushwick,40.70086,-73.93423,Private room,44,1,0,,,2,0 +22367196,Sunny Bushwick Room with Holiday Sale Price!,163554531,Joshua,Brooklyn,Bushwick,40.69417,-73.91237,Private room,35,3,0,,,1,0 +22368370,Bedstuy Luxe Condo,139329404,Dmitriy,Brooklyn,Bedford-Stuyvesant,40.68995,-73.95167,Entire home/apt,126,1,9,2018-03-02,0.49,1,0 +22368751,Bright Luxury Apartment with Amazing View of City,20800727,Amirhos,Brooklyn,Fort Greene,40.69064,-73.97898,Entire home/apt,200,5,0,,,1,0 +22370132,Shared HARLEM Loft w/ Private Bedroom/Bath Suite,163574555,Jeffrey,Manhattan,Harlem,40.81245,-73.95131,Private room,120,1,69,2019-07-05,3.73,1,277 +22370339,Beautiful One Bedroom,163576102,Shonelle,Brooklyn,Flatbush,40.63547,-73.9632,Entire home/apt,64,30,2,2019-04-30,0.15,1,268 +22370386,1 Bedroom in 2 bedroom apartment near Central Park,126735001,Deundre,Manhattan,Harlem,40.80106,-73.95905,Private room,78,2,36,2019-06-24,1.94,1,0 +22370388,"Calming FiDi 1BR w/ lux Gym, Speakeasy + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70637,-74.00941,Entire home/apt,271,30,1,2018-08-17,0.09,232,310 +22371082,KING ROOM IN 1500 SQFT WBRG BALLROOM LOFT,2212344,Enrique,Brooklyn,Williamsburg,40.71208,-73.95566,Private room,78,4,4,2019-01-01,0.22,3,0 +22371868,1 Bedroom Apartment in Crown Heights,13753058,María Valentina,Brooklyn,Crown Heights,40.66475,-73.93564,Entire home/apt,65,15,0,,,1,0 +22372893,Bedroom in lovely and welcoming home,94088674,Lewi,Brooklyn,Bedford-Stuyvesant,40.69857,-73.9439,Private room,38,1,2,2018-02-25,0.11,1,0 +22372939,"Spacious entire apartment in Carroll Gardens, BK.",47499199,Sheyla,Brooklyn,Columbia St,40.6827,-74.00265,Entire home/apt,140,3,10,2019-04-16,0.54,1,0 +22373128,Bronx Norwood Apt,163586662,Cory,Bronx,Norwood,40.87446,-73.87453,Private room,187,3,4,2019-07-04,0.22,1,76 +22373272,Historic Crown Heights Townhouse w. Private Yard,156935,Sneha,Brooklyn,Crown Heights,40.66602,-73.94612,Entire home/apt,300,4,28,2019-06-25,1.52,1,179 +22374327,Time Square cozy room to dream big,163602988,Javier,Manhattan,Hell's Kitchen,40.7661,-73.99447,Private room,100,3,22,2019-06-22,1.20,1,13 +22374799,★Spacious 2 b/r apt | 3 beds + WiFi~Sleeps 1-6★,163605956,Jean,Brooklyn,Flatlands,40.62906,-73.92938,Entire home/apt,117,1,24,2019-06-24,1.30,1,328 +22374957,Williamsburg 4 Bedroom - Spacious Warehouse Loft,41218193,Tommy,Brooklyn,Williamsburg,40.7203,-73.95739,Entire home/apt,500,1,0,,,1,0 +22374967,Family Studio near Times Square,48088611,Alberto,Manhattan,Midtown,40.74816,-73.98676,Entire home/apt,158,7,2,2018-03-19,0.12,2,0 +22375950,Private room in beautiful duplex by Lincoln Center,133415438,Nimrod David,Manhattan,Upper West Side,40.77769,-73.97953,Private room,61,10,0,,,1,0 +22376011,"Clean Comfy Affordable Room in Crown Heights, BK",161510806,Stacy,Brooklyn,Crown Heights,40.67739,-73.95561,Private room,60,1,2,2017-12-30,0.11,2,0 +22376064,Brooklyn Chill Space One Bedroom,5524607,Tanya,Brooklyn,Bedford-Stuyvesant,40.68576,-73.91719,Entire home/apt,95,1,35,2019-07-03,2.04,1,28 +22376093,Private Cozy Rustic Escape in Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71339,-73.93896,Entire home/apt,160,2,34,2019-07-01,1.84,3,272 +22376903,Lily Brooklyn Private Home,163625251,Lily-Thuy,Brooklyn,Sunset Park,40.64339,-74.02191,Entire home/apt,109,3,34,2019-06-22,1.85,1,156 +22376920,"Quiet, Cozy Room | Heart of Midtown! | Steps to UN",163626113,Alexis,Manhattan,Midtown,40.75349,-73.96545,Private room,160,2,107,2019-06-30,5.73,1,49 +22376956,Best view of the Empire State in all NYC!,707534,Nanda,Manhattan,Theater District,40.75462,-73.9864,Entire home/apt,330,2,9,2019-05-28,0.48,1,5 +22377119,法拉盛近地铁舒适单房—cozy room in flushing,52711549,Wynne,Queens,Flushing,40.75837,-73.82268,Private room,50,1,2,2018-01-03,0.11,2,0 +22378688,Lovely apartment,24755691,筱,Queens,Long Island City,40.75673,-73.93609,Private room,50,1,10,2019-06-30,0.53,1,211 +22379163,Cozy room in a big apartment around Myrtle Ave,150891854,Jiyoung,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9369,Private room,23,3,2,2018-01-16,0.11,1,0 +22379701,Private room + full bathroom / lots of sun + dogs,92649019,Sophie,Brooklyn,Crown Heights,40.66921,-73.92624,Private room,68,6,48,2019-06-29,2.59,1,0 +22381052,private room in upper ditmars astoria wifi,97127885,Concetta,Queens,Ditmars Steinway,40.76826,-73.89391,Private room,36,1,5,2018-12-30,0.27,2,250 +22382300,The heart of West Village - close to everything,10347684,Michael,Manhattan,West Village,40.73061,-74.00325,Entire home/apt,190,6,2,2018-05-06,0.12,1,0 +22382863,Williamsburg Luxury Private 1bed1bath.,66837596,Yoo MI,Brooklyn,Williamsburg,40.71908,-73.96442,Private room,140,3,19,2019-06-17,1.03,2,79 +22384473,MASTER BEDROOM IN THE HEART OF MIDTOWN EAST!,46473712,Vanessa,Manhattan,Midtown,40.75225,-73.97067,Private room,185,3,5,2019-03-16,0.27,1,8 +22384717,Upper Manhattan Oasis,3076579,Elisabeth,Manhattan,Inwood,40.86489,-73.92902,Private room,50,3,4,2019-05-12,0.66,1,31 +22384915,King Sized Room in Prospect Lefferts Gardens,1512819,Sydney,Brooklyn,Flatbush,40.65278,-73.95392,Private room,45,3,13,2019-04-06,0.70,5,76 +22385723,"Large, Sunny Bushwick Loft with Rooftop Access",35089676,Francis,Brooklyn,Bushwick,40.69967,-73.92096,Private room,35,1,8,2019-06-14,0.44,1,76 +22386804,Spacious Gem in the heart of NYC,163715101,Ahlem,Manhattan,Hell's Kitchen,40.76402,-73.98909,Entire home/apt,110,2,67,2019-06-23,3.93,1,67 +22387260,Large Private House Apartment Near Yankee Stadium,161902034,Jesus,Bronx,Concourse Village,40.83373,-73.91147,Entire home/apt,140,1,106,2019-06-30,5.70,1,310 +22387338,Large and comfortable 1-BR Brooklyn Apartment!,45485919,George,Brooklyn,Clinton Hill,40.68321,-73.96076,Entire home/apt,120,1,1,2018-01-02,0.05,1,57 +22387499,Peaceful Garden Apartment in Architect's Townhouse,68554866,Andrea & James,Brooklyn,Bushwick,40.68481,-73.90713,Entire home/apt,125,3,27,2019-07-03,2.77,1,41 +22387975,Private room in Williamsburg close to subway,61394859,Katia,Brooklyn,Williamsburg,40.71879,-73.9402,Private room,50,9,0,,,1,0 +22388659,One bedroom apartment New York City,31451485,Alexandre,Manhattan,East Harlem,40.79081,-73.94946,Entire home/apt,130,4,0,,,1,0 +22389020,Upper East Side Living,3693489,Raymond,Manhattan,Upper East Side,40.76944,-73.95252,Entire home/apt,150,2,0,,,1,0 +22389035,Spacious Bright Top Floor Apt w/ Balcony in LIC 1,25944182,Yves,Queens,Sunnyside,40.73874,-73.92961,Private room,68,2,50,2019-07-05,2.84,2,51 +22389071,"5* Modern Lux 2BR2B Midtown Manhattan, River Views",48205496,B,Manhattan,Hell's Kitchen,40.76825,-73.99107,Entire home/apt,199,3,12,2019-06-29,0.65,2,17 +22389258,"Spacious & Sunny 2BD / 2BTH in Chelsea, Manhattan",5769367,Natalie,Manhattan,Chelsea,40.74312,-73.99953,Entire home/apt,450,3,12,2019-05-27,0.65,1,83 +22389296,Spacious Bright Top Floor Apt w/ Balcony in LIC 2,25944182,Yves,Queens,Sunnyside,40.7387,-73.9283,Private room,76,2,53,2019-07-01,3.15,2,76 +22390736,Luxurious Midtown Manhattan Apartment -Ladies Only,163749958,Brianna,Manhattan,Kips Bay,40.74351,-73.97857,Shared room,39,1,4,2019-05-14,0.49,3,324 +22390755,Huge Clean Room in Trendy Bushwick,4043468,Marlee,Brooklyn,Bushwick,40.69523,-73.90871,Private room,48,2,28,2019-07-07,1.51,1,3 +22392030,one bedroom apt for long term stay up to 2 months,151728547,진,Manhattan,Upper West Side,40.77506,-73.98162,Entire home/apt,70,15,0,,,1,0 +22393526,Peaceful Studio Sanctuary In Heart Of Williamsburg,33787022,Tatiana,Brooklyn,Williamsburg,40.71805,-73.9584,Entire home/apt,175,3,12,2018-10-14,0.85,1,0 +22394214,Cozy Apartment in Williamsburg,6757221,Athina,Brooklyn,Williamsburg,40.70912,-73.94813,Entire home/apt,120,6,1,2019-01-02,0.16,2,0 +22395320,Manhattan Luxury Doorman Loft in Midtown South,2257005,Sean,Manhattan,Midtown,40.74989,-73.98231,Private room,100,3,31,2019-03-15,1.80,1,0 +22396507,"Bright, comfy room in Bushwick, huge roof patio",6764450,Amy,Brooklyn,Bushwick,40.69853,-73.92919,Private room,50,2,2,2018-01-01,0.11,1,0 +22397992,Gorgeous open space apartment!,137675040,Brandon,Manhattan,Harlem,40.81455,-73.95122,Private room,90,3,1,2018-05-30,0.07,1,0 +22399042,One bedroom in shared (but empty) apt in Harlem,96437032,Santiago,Manhattan,Harlem,40.82032,-73.95465,Shared room,37,20,0,,,1,0 +22400254,large room and convenient to train and JFK. #4,82367658,John,Queens,Richmond Hill,40.68985,-73.82003,Private room,40,3,7,2019-06-13,0.38,5,313 +22400368,Forest Houses City Getaway (No Hot Water),158568617,Mandela,Bronx,Longwood,40.823,-73.90859,Entire home/apt,60,1,104,2019-06-23,5.61,1,365 +22400476,"Free yoga & sauna, awesome room. Sunny, wood floor",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68105,-73.99267,Private room,53,1,20,2019-03-23,1.29,4,151 +22400510,"Free yoga & sauna, beautiful room. Best hood. Nice",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68168,-73.99291,Private room,120,1,16,2019-05-26,1.05,4,150 +22400568,Perfect Beautiful Modern House in NYC Summer,12898987,Johan,Queens,Ditmars Steinway,40.77537,-73.90279,Entire home/apt,150,3,49,2019-06-05,2.74,1,324 +22400856,Hip and cozy LES apartment,50312214,Isabella,Manhattan,Lower East Side,40.71975,-73.98975,Entire home/apt,115,2,1,2017-12-30,0.05,1,0 +22401048,"Yoga & sauna during your stay, spacious & sunny.",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68243,-73.99334,Private room,59,1,20,2019-06-20,1.23,4,132 +22401504,Charming Private Brooklyn Apartment,163855521,Judith,Brooklyn,East New York,40.6762,-73.87936,Entire home/apt,99,3,66,2019-07-01,3.55,1,254 +22401901,Cozy Upper East Side Studio close to EVERYTHING,10674042,Eric,Manhattan,Upper East Side,40.77641,-73.94616,Entire home/apt,89,2,1,2018-02-08,0.06,1,0 +22403201,Private bedroom Roosevelt island,102442325,Candice,Manhattan,Roosevelt Island,40.76184,-73.94848,Private room,47,1,2,2018-05-25,0.11,1,0 +22403335,Fort Greene Jewel,163877894,JoAnn,Brooklyn,Clinton Hill,40.68933,-73.96879,Entire home/apt,149,29,24,2019-04-23,1.42,1,3 +22404730,"Modern & Cozy 2Bedroom apt. +15min to Times Square.",1417159,James,Manhattan,Harlem,40.8227,-73.94014,Private room,159,4,42,2019-06-15,2.46,1,242 +22406109,COZY STUDIO IN THE HEART OF CENTRAL HARLEM!,54656266,Asya,Manhattan,Harlem,40.81911,-73.93794,Entire home/apt,90,2,38,2019-06-30,2.05,1,25 +22406251,Manhattan room,163905917,Matilda,Manhattan,Hell's Kitchen,40.75692,-73.9979,Private room,80,2,7,2019-01-01,0.38,3,0 +22406991,法拉盛中心近地铁舒适单房—Cozy room in flushing,52711549,Wynne,Queens,Flushing,40.75855,-73.82208,Private room,50,1,16,2019-06-29,0.85,2,1 +22407389,Lovely bright room in Washington Heights,2924286,Patricia,Manhattan,Washington Heights,40.85783,-73.93117,Private room,60,3,10,2018-09-05,0.54,1,0 +22407448,Luxury Large Studio Apt at City Hall Park/Tribeca,16057852,Stacy,Manhattan,Civic Center,40.71194,-74.00704,Entire home/apt,240,4,0,,,1,0 +22408376,Colonial Bdr Near Midtown Manhattan,44213272,Miss. G.,Queens,Ditmars Steinway,40.77611,-73.91481,Private room,37,1,14,2019-01-04,0.83,5,310 +22408527,"Spacious, convenient, and affordable!",36356065,Mohamad,Brooklyn,Bay Ridge,40.63971,-74.03089,Private room,58,1,1,2017-12-25,0.05,1,0 +22408670,Beautiful Brooklyn Apartment,10663089,Zack,Brooklyn,Flatbush,40.63578,-73.95684,Private room,70,3,5,2018-10-29,0.51,1,0 +22409073,The Baltic - A One Bedroom Apartment,162781227,Gareth,Brooklyn,Gowanus,40.68192,-73.98176,Entire home/apt,280,2,7,2018-12-25,0.38,1,0 +22409377,Cosy room in bushwick,100032033,Shaul,Brooklyn,Bushwick,40.68684,-73.91001,Private room,35,1,0,,,1,0 +22409383,Park Slope 15 min to MANHATTAN SLEEPS 10 + INFANT,3532263,Alejandro,Brooklyn,Gowanus,40.67023,-73.99235,Entire home/apt,349,2,19,2019-06-21,1.03,4,363 +22409448,Premier Garden Suite near Columbia University,9470468,Zeleke,Manhattan,Harlem,40.80815,-73.95399,Entire home/apt,120,3,20,2019-07-05,4.96,1,55 +22409676,Great little spot,164048400,Jarryd,Brooklyn,Bushwick,40.70167,-73.93075,Private room,40,1,1,2017-12-30,0.05,1,0 +22409935,Gorgeous Appartment in Prime NYC area,57044398,Ann,Manhattan,Midtown,40.74374,-73.98541,Entire home/apt,450,4,0,,,1,0 +22410246,"Luxury 2 Bedroom, 2 Bathroom Apt with Roof & Gym",54586794,Victoria,Manhattan,Upper East Side,40.76072,-73.96272,Entire home/apt,250,2,1,2017-12-31,0.05,1,0 +22410359,Charming bedroom with huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.7233,-73.94065,Private room,80,2,5,2018-10-28,0.27,2,0 +22411635,"Your insanely quiet, achingly cute, chillspot",11200970,Eve,Brooklyn,Williamsburg,40.71233,-73.94118,Private room,80,1,31,2019-06-25,1.67,1,13 +22411833,Luxury Times Square High Rise,35805776,Rajan,Manhattan,Hell's Kitchen,40.75857,-73.99189,Entire home/apt,300,3,6,2019-05-26,0.32,1,0 +22412331,Subleasing-Room available starting May or earlier,369226,Omur,Queens,Astoria,40.76581,-73.92518,Shared room,40,30,2,2018-05-17,0.11,1,0 +22417648,"Room w/ amazing views, elevator & private bathroom",25064629,Bianca,Manhattan,Two Bridges,40.71291,-73.99463,Private room,119,3,42,2019-06-13,2.26,1,54 +22418899,Central Park Gem,1741413,Austin,Manhattan,Harlem,40.80116,-73.95287,Private room,110,1,5,2018-06-28,0.27,1,0 +22419249,SPACIOUS BROOKLYN STUDIO NEAR MUSEUM,10556923,Chris,Brooklyn,Crown Heights,40.67719,-73.95471,Entire home/apt,110,4,15,2019-05-28,0.83,1,13 +22419704,"The ""TriBeCa LOFT"" #3 | A stylish 2 bed apt",3231509,Annamaria,Manhattan,Tribeca,40.72052,-74.00365,Entire home/apt,499,14,23,2019-05-09,1.27,4,1 +22419930,Private 1 bedroom 10 mins away to Manhattan NYC,162745077,Dorothy,Queens,Long Island City,40.75469,-73.92822,Private room,99,1,23,2019-07-01,1.25,2,93 +22420010,"The ""TriBeCa Loft"" #5 | A brand New 2 beds Loft",3231509,Annamaria,Manhattan,Tribeca,40.71912,-74.0038,Entire home/apt,499,14,14,2019-03-06,0.78,4,298 +22420304,Nice bunkbed room with private bathroom!,164164069,Marcia,Staten Island,Westerleigh,40.61422,-74.13167,Private room,40,2,17,2018-09-07,0.92,1,36 +22420902,Cozy Bedroom East Williamsburg,52221728,Wassym,Brooklyn,Williamsburg,40.70514,-73.94418,Private room,50,4,2,2018-06-09,0.11,1,0 +22421636,Cozy Apartment across Astoria Park,35518413,Suhel,Queens,Ditmars Steinway,40.77692,-73.92385,Entire home/apt,130,1,93,2019-07-01,5.01,2,279 +22421928,Large 2 Bedroom in trendy LIC 5 mins from City.,15387,Simon,Queens,Long Island City,40.74804,-73.94172,Entire home/apt,175,2,8,2018-10-28,0.56,1,0 +22423342,Big room in luxury building-10mins to Manhattan,85678544,Charles,Queens,Long Island City,40.74832,-73.94197,Private room,60,1,4,2018-08-19,0.22,1,0 +22423659,PRIVATE ROOM CLOSE TO MANHATTAN,44213272,Miss. G.,Queens,Astoria,40.76903,-73.91895,Private room,60,1,26,2018-12-31,1.41,5,173 +22425516,Private Bedroom Near Union Square and East Village,164228532,Vivian,Manhattan,East Village,40.73277,-73.98716,Private room,92,3,104,2019-06-20,5.67,2,25 +22429595,Couch in Red Hook,55804009,Bryan And Candace,Brooklyn,Red Hook,40.67981,-74.00446,Shared room,30,1,1,2017-12-31,0.05,1,0 +22431770,Freehand New York- Queen Room,164291123,Freehand,Manhattan,Flatiron District,40.74077,-73.98718,Private room,129,1,47,2019-06-05,2.80,3,364 +22432497,Convenient PRIVATE ROOM in Brooklyn. Near station!,164303137,Mamiko,Brooklyn,Bedford-Stuyvesant,40.69455,-73.93445,Private room,34,4,35,2019-05-25,2.36,2,5 +22432585,Peaceful Escape |Sunny+Modern| Close to Everything,3244298,Shek,Manhattan,East Harlem,40.79202,-73.93999,Private room,95,2,8,2019-05-13,0.44,1,146 +22433073,Sweet living quarters,164308567,Alex,Brooklyn,Bushwick,40.70189,-73.91984,Private room,125,1,3,2018-05-18,0.16,1,4 +22433291,Harlem Hideaway,84716175,Garret,Manhattan,Harlem,40.8229,-73.93925,Private room,65,1,14,2019-01-01,0.76,2,180 +22433593,Artsy and modern room in a friendly neighborhood.,43222031,Kamila,Queens,Ridgewood,40.69741,-73.89895,Private room,38,4,0,,,1,0 +22434082,Cozy West Village Apartment,164318938,Noni,Manhattan,West Village,40.73248,-74.00053,Entire home/apt,225,1,29,2019-06-23,1.72,1,14 +22434380,Private Room for 1 person in LES/Chinatown,147058441,Scotty,Manhattan,Chinatown,40.71626,-73.99224,Private room,68,1,7,2019-07-07,0.39,1,54 +22434861,Spacious updated pre-war House,5925222,Sophia,Brooklyn,Bushwick,40.69,-73.91885,Entire home/apt,65,2,1,2018-01-01,0.05,1,0 +22435019,Splendid on The Park,5076827,Diane And Craig,Manhattan,Harlem,40.80638,-73.94415,Entire home/apt,180,3,29,2019-02-20,1.79,2,235 +22435399,Room,140494157,Nayely,Queens,Astoria,40.76895,-73.92489,Private room,110,1,1,2018-01-01,0.05,1,0 +22435813,"Big Comfy Room Crown Heights, BK! (25 min to city)",161510806,Stacy,Brooklyn,Crown Heights,40.6781,-73.95487,Private room,150,1,3,2018-02-18,0.16,2,0 +22436168,"Convenient and cozy room in Brooklyn, 2345 trains",22507599,Michela,Brooklyn,Crown Heights,40.67064,-73.95714,Private room,32,1,0,,,1,0 +22436287,Clinton Hill – Brooklyn’s Best Nest,655450,Tara,Brooklyn,Clinton Hill,40.68299,-73.96258,Entire home/apt,108,29,5,2018-12-21,0.31,1,98 +22436581,Beautiful bedroom in Manhattan,110191144,Mamadou,Manhattan,Harlem,40.82375,-73.95379,Private room,68,2,28,2019-06-01,1.75,2,53 +22436770,Most luxuriest place to relax while visiting NYC,114131821,Shawn,Manhattan,Hell's Kitchen,40.76075,-73.99837,Entire home/apt,1500,30,0,,,1,87 +22436899,1-BR Lincoln Center,72390391,Jelena,Manhattan,Upper West Side,40.77213,-73.98665,Entire home/apt,10000,30,0,,,1,83 +22438519,Big Private Room in Perfect Williamsburg Location,125898610,Tay,Brooklyn,Williamsburg,40.71479,-73.93961,Private room,75,2,0,,,1,0 +22438742,White Castle,21878092,Sasha,Brooklyn,Williamsburg,40.7089,-73.95632,Entire home/apt,150,2,9,2019-02-24,0.56,1,0 +22438808,Huge Apartment in East Village,164378428,Saim,Manhattan,East Village,40.72555,-73.98247,Entire home/apt,165,2,2,2018-01-01,0.11,1,0 +22440046,Cozy and Laid Back in L.E.S.,164391402,Robert,Manhattan,East Village,40.72167,-73.98066,Private room,125,1,3,2018-12-31,0.38,1,365 +22445969,crème de la crème - Luxurious 1 BR Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74934,-73.9781,Entire home/apt,150,30,2,2019-06-01,0.87,91,251 +22446079,Beautiful Private Artist's Bungalow,3812968,Melody,Brooklyn,Crown Heights,40.67542,-73.94799,Entire home/apt,60,3,9,2019-02-15,0.51,1,0 +22446205,Brooklyn clean and quiet,164456084,Roody,Brooklyn,Canarsie,40.63409,-73.89383,Private room,27,1,0,,,1,0 +22446479,"•COZY APARTMENT IN BEDFORD AREA, 5 MINS MANHATTAN•",128793815,Atthaphon,Brooklyn,Williamsburg,40.72064,-73.96022,Private room,50,2,55,2019-07-01,2.97,4,281 +22446568,Charming East Village 1 Bed,5458990,Pete,Manhattan,East Village,40.72454,-73.98749,Entire home/apt,199,7,21,2019-04-14,1.14,1,10 +22446998,Cozy Brooklyn Room with Great Vibes,5425440,Janae,Brooklyn,Flatbush,40.64488,-73.96889,Private room,48,1,2,2018-01-16,0.11,1,0 +22447398,1 Bedroom Apartment in Tribeca,11300395,Michael,Manhattan,Tribeca,40.71514,-74.00709,Entire home/apt,180,2,0,,,1,0 +22447855,Redford Room,104273977,Jasmine,Manhattan,Lower East Side,40.71922,-73.98714,Private room,109,1,1,2018-02-17,0.06,3,0 +22448088,Room for rent in the heart of Manhattan,686385,Ava,Manhattan,Upper East Side,40.77509,-73.95554,Private room,80,1,58,2019-06-23,3.64,1,45 +22448345,Redford Room 2,104273977,Jasmine,Manhattan,Lower East Side,40.72133,-73.98684,Private room,109,1,1,2018-02-18,0.06,3,0 +22448487,Renovated 1 bedroom in Bedstuy Brooklyn brownstone,4823243,Janelle,Brooklyn,Bedford-Stuyvesant,40.68317,-73.92777,Entire home/apt,139,2,9,2019-04-07,1.08,1,57 +22448627,LARGE & CONVENIENT Private Room in Brooklyn,164303137,Mamiko,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93288,Private room,39,4,58,2019-07-01,3.16,2,32 +22448905,Sunny and cozy place with coffee morning,54549189,Ivan,Brooklyn,Crown Heights,40.67518,-73.94771,Private room,80,3,1,2017-12-28,0.05,1,0 +22449860,Beautiful Oasis in Brooklyn,92835031,Cindy,Brooklyn,Bedford-Stuyvesant,40.6832,-73.9529,Entire home/apt,225,3,50,2019-06-23,3.12,1,71 +22450143,★ Cosy room in Bushwick ★ 20-min to Manhattan,119828457,Marlice,Brooklyn,Bushwick,40.68868,-73.90655,Private room,55,3,55,2019-06-23,3.40,4,329 +22450373,Spacious and modern space. Super cozy and quiet,15535829,Jay,Staten Island,West Brighton,40.63229,-74.11351,Entire home/apt,99,2,3,2019-05-18,0.36,1,364 +22451363,Perfect block in NYC,164509613,Eduardo,Manhattan,Morningside Heights,40.80414,-73.96498,Entire home/apt,145,1,23,2019-07-05,1.37,1,3 +22451798,Historic Bed Stuy Charmer! Entire Apartment!,4126686,Michael,Brooklyn,Bedford-Stuyvesant,40.68427,-73.93118,Entire home/apt,75,3,87,2019-07-05,4.91,1,267 +22452129,Private Guest Bedroom with beautiful back yard.,164516331,Hamza,Brooklyn,Bedford-Stuyvesant,40.68108,-73.92729,Private room,85,2,33,2018-09-30,1.86,1,0 +22452278,Serene Studio in Brooklyn,3695529,Jenni,Brooklyn,Carroll Gardens,40.68384,-73.99431,Entire home/apt,150,2,61,2019-06-20,3.42,2,85 +22452536,"Beautiful 1 BR Apartment, Convenient Location",54554971,Alyse,Manhattan,Kips Bay,40.74036,-73.98301,Entire home/apt,150,2,33,2018-12-18,1.79,1,0 +22452728,"Astoria close to JFK, Laguardia Airport, Manhattan",117195769,Simone,Queens,Astoria,40.76401,-73.90921,Private room,70,1,92,2019-06-30,4.96,3,357 +22453527,Union SQ/Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73379,-73.98645,Private room,150,2,24,2019-05-03,1.68,3,149 +22453638,Charming 2BR apt in prime Williamsburg Brooklyn,164537600,Nate,Brooklyn,Williamsburg,40.71243,-73.96067,Entire home/apt,140,2,3,2018-01-28,0.17,1,0 +22454253,Spacious 1-Bedrm Apt Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84777,-73.94241,Entire home/apt,160,1,3,2018-03-18,0.17,3,0 +22454397,Private room in cozy apartment in east village,13677929,Charles,Manhattan,East Village,40.7232,-73.98152,Private room,78,30,8,2018-06-13,0.45,1,219 +22454537,Pelham Parkways,164549734,Niara,Bronx,Pelham Gardens,40.85702,-73.83697,Private room,300,1,0,,,1,0 +22454710,Luxury Doorman. Great location.,5863772,Michael,Manhattan,Upper West Side,40.77077,-73.98481,Entire home/apt,225,2,5,2019-01-20,0.27,1,0 +22454765,Luxury studio in Astoria just by the water,13510515,Dimitri,Queens,Astoria,40.77179,-73.93442,Entire home/apt,200,4,0,,,1,0 +22455153,2 Bedroom - Midtown off 5th Ave,26490904,Deo,Manhattan,Midtown,40.76151,-73.97635,Entire home/apt,220,30,2,2019-02-04,0.17,4,280 +22455181,"Clean, cozy room in a great location!",77005581,Kate,Manhattan,East Village,40.73089,-73.98429,Private room,90,1,133,2019-07-07,7.79,1,41 +22455806,cozy has 55 tv dressers living room has own heater,157935032,Freddy,Queens,East Elmhurst,40.76193,-73.87521,Private room,40,1,1,2019-02-15,0.21,1,37 +22460607,Beautiful 1 Bedroom in Grammercy,162100686,Andrew,Manhattan,Kips Bay,40.73735,-73.97952,Entire home/apt,200,2,0,,,1,0 +22460669,Comfy Room E Williamsburg - 1 min from L -Huge APT,55807631,Brent,Brooklyn,Williamsburg,40.70827,-73.94133,Private room,40,1,11,2018-04-01,0.60,1,0 +22462752,Lower East Side - Perfect Escape in NYC! #6,158969505,Karen,Manhattan,Lower East Side,40.72145,-73.99257,Entire home/apt,240,30,3,2019-05-27,0.45,9,199 +22462797,Full Lavish Studio apartment in the heart of NYC,164637779,Sajee,Manhattan,Upper East Side,40.76938,-73.96732,Entire home/apt,150,1,2,2017-12-30,0.11,1,0 +22463757,"Bright 3 Bedroom, Garden, 2 Full Bathrooms",31176801,Nima,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95796,Entire home/apt,170,6,23,2019-05-24,1.42,1,190 +22463977,Amazing Master Bedroom in Historic Brooklyn,164650025,Chris,Brooklyn,Prospect Heights,40.67757,-73.97023,Private room,35,1,204,2019-06-30,11.17,1,19 +22464295,Lower East Side Newly renovated! #7,158969505,Karen,Manhattan,Lower East Side,40.72268,-73.99205,Entire home/apt,250,30,3,2019-04-30,0.37,9,264 +22465327,"*NEW*6 BED BROOKLYN DUPLX,15 MIN TRAIN RIDE 2 CITY",254846,Brendan,Brooklyn,Bushwick,40.69023,-73.91621,Entire home/apt,399,3,19,2019-05-06,1.13,4,272 +22465418,"Sunny, fashionable home for Spring in Soho!",3210260,Michael,Manhattan,SoHo,40.72393,-74.00446,Entire home/apt,210,5,8,2018-05-28,0.49,1,0 +22465657,Lower East Side - Amazing location! #10,158969505,Karen,Manhattan,Lower East Side,40.7224,-73.99268,Entire home/apt,220,30,2,2018-12-16,0.16,9,298 +22466002,Lower East Side Studio - Great location! #13,158969505,Karen,Manhattan,Lower East Side,40.7215,-73.99183,Entire home/apt,170,30,0,,,9,200 +22466315,Lower East Side - Lovely Studio! #14,158969505,Karen,Manhattan,Lower East Side,40.72147,-73.99181,Entire home/apt,170,30,4,2019-01-07,0.30,9,281 +22466537,Homey Private Room in Bushwick!,27188995,Jaritza,Brooklyn,Bushwick,40.70071,-73.9158,Private room,90,1,1,2018-07-01,0.08,1,280 +22468075,Cozy and Spacious One Bedroom,24707177,Zhanna,Manhattan,East Harlem,40.79803,-73.93234,Entire home/apt,80,4,5,2019-01-14,0.28,1,0 +22469509,Renovated Private 1 Bedroom in Downtown Manhattan,3389563,Erica,Manhattan,Chinatown,40.71659,-73.99222,Entire home/apt,96,2,13,2018-05-28,0.73,1,0 +22470443,Homey and comfy room by LGA,163217478,Myriam,Queens,East Elmhurst,40.75739,-73.88144,Private room,59,1,127,2019-07-03,6.94,2,80 +22470605,"Sunny new one bedroom in Brooklyn, Greenpoint",4177178,Sabrina,Brooklyn,Greenpoint,40.72147,-73.9441,Private room,80,14,4,2019-04-03,0.23,1,0 +22471099,"Cozy, homey one bedroom in Brooklyn",48565842,Grace,Brooklyn,Crown Heights,40.67318,-73.95679,Private room,39,7,0,,,1,0 +22471517,Entire apartment in Ditmas Park/Flatbush,89363555,Nitika,Brooklyn,Flatbush,40.64149,-73.96157,Entire home/apt,100,1,5,2018-02-27,0.27,1,0 +22471587,Semi-Private Studio in Quiet Brooklyn Neighborhood,35920741,Matthew,Brooklyn,Flatlands,40.61637,-73.92206,Private room,100,1,18,2019-04-22,0.98,1,364 +22471620,4 min walk to the subway and Columbia University,67043358,Amit,Manhattan,Harlem,40.80708,-73.95583,Private room,70,7,0,,,1,0 +22472801,Swim in Garden Pond near City & JFK,164750816,Mayo,Queens,Howard Beach,40.66201,-73.84084,Entire home/apt,80,2,83,2019-06-29,4.47,1,288 +22477305,Huge Terrace 2 bed 2 Bath POOl in building,113805886,Yaacov,Manhattan,Upper East Side,40.77708,-73.95113,Entire home/apt,235,31,5,2019-03-10,0.40,33,327 +22477997,Speakeasy Inn Bushwick Two,24020292,Cristiano,Brooklyn,Bushwick,40.70241,-73.91996,Private room,55,1,60,2019-07-06,3.25,4,58 +22478609,Manhattan -Top Location - Full Apartment,164806814,Nl,Manhattan,Midtown,40.75993,-73.96342,Entire home/apt,140,4,52,2019-06-17,3.03,1,242 +22479006,Brownstone Getaway in Fort Greene,164814832,Megan,Brooklyn,Fort Greene,40.68853,-73.96943,Entire home/apt,260,3,42,2019-07-06,2.94,1,46 +22479784,Manhattan club NYE room,10685109,Allison,Manhattan,Hell's Kitchen,40.76748,-73.98536,Private room,200,2,1,2018-01-01,0.05,1,0 +22479926,"Artistic home, cozy queen bed",4070519,Lizette,Brooklyn,Williamsburg,40.71239,-73.95098,Private room,80,2,20,2019-05-08,1.14,1,0 +22479963,Brooklyn castle w/ Manhattan skyline views,4500818,Asha,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92854,Private room,78,30,25,2019-05-09,1.35,1,342 +22480137,One Bedroom Apt next to Empire State,48088611,Alberto,Manhattan,Midtown,40.74751,-73.98725,Entire home/apt,208,7,3,2018-08-22,0.17,2,155 +22480209,Housing for SGU/SABA/AUA/ROSS Students/ Residents,27741331,Lyn,Brooklyn,East Flatbush,40.66313,-73.92684,Private room,32,30,0,,,2,322 +22480570,Sunny & Cozy Double Bedroom with private entrance,22382224,Meryem,Brooklyn,Windsor Terrace,40.66023,-73.9804,Private room,85,1,6,2018-04-02,0.33,1,0 +22481246,1-bedroom apartment for up to 4 in Times Square.,92856787,Jessy,Manhattan,Hell's Kitchen,40.76011,-73.99571,Entire home/apt,250,1,75,2019-07-04,4.78,1,283 +22481840,"MODERN & SPACIOUS PAD! +5MINS TO L/J,M/A,C TRAINS",162572530,Carmen,Brooklyn,Bushwick,40.68328,-73.90783,Entire home/apt,28,2,13,2018-06-11,0.72,1,0 +22482376,Sunny & Chic LES apartment,164847238,Nicholas,Manhattan,Lower East Side,40.7199,-73.99225,Private room,101,4,4,2019-06-12,0.22,1,2 +22483105,New Midtown Luxury Studio in Perfect Location,35596244,Dan,Manhattan,Murray Hill,40.74665,-73.97856,Entire home/apt,168,2,0,,,1,0 +22483110,Beautifully curated artist apartment in Park Slope,26156848,Fabiola,Brooklyn,South Slope,40.66514,-73.99017,Entire home/apt,100,1,68,2019-06-15,3.74,1,5 +22483574,Home Away from Home: The Enlightenment Room.,130971031,J-,Brooklyn,Bushwick,40.69977,-73.91983,Private room,79,3,22,2019-04-22,1.22,4,125 +22483585,Best Kept Secret in Carroll Gardens BROOKLYN!!,17129810,Jeffrey,Brooklyn,Columbia St,40.68274,-74.0046,Entire home/apt,190,4,42,2019-05-28,2.42,5,299 +22483776,THE COOL HOUSE,55197894,Erick,Queens,Woodside,40.74907,-73.90083,Private room,30,5,7,2019-02-12,0.38,1,0 +22483942,Home Away from Home: The Cerebral Room,130971031,J-,Brooklyn,Bushwick,40.70093,-73.91864,Private room,69,2,22,2019-06-18,1.21,4,139 +22484006,Your Private Room,26789852,Aendel,Queens,Long Island City,40.75303,-73.93287,Private room,44,4,77,2019-07-06,4.27,2,32 +22484057,Great Room in Brooklyn,38359380,Becky,Brooklyn,Kensington,40.64449,-73.97843,Private room,45,5,2,2018-07-27,0.17,1,0 +22484513,Big Bright Room in East Williamsburg,69427350,Giovanni,Brooklyn,Williamsburg,40.71881,-73.93965,Private room,70,5,2,2018-10-29,0.23,1,0 +22485416,"Private Room (rm3), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81232,-73.95849,Private room,85,3,47,2019-06-23,2.77,6,0 +22485639,61st east room C manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76221,-73.96726,Entire home/apt,140,1,43,2019-06-29,2.51,11,281 +22485685,Dina airbnb 61 street east D,164886138,Eliahu,Manhattan,Upper East Side,40.76015,-73.96227,Entire home/apt,140,2,4,2019-03-24,0.53,11,354 +22485716,2 bedroom apt in queens,164887236,Reut,Queens,Fresh Meadows,40.72887,-73.79206,Private room,75,2,0,,,1,0 +22486252,Spacious Loft with Amazing Sky Views,123953239,Philippe,Brooklyn,Williamsburg,40.71247,-73.96443,Entire home/apt,400,2,8,2019-05-19,0.55,2,327 +22486540,Spacious Queen Room close to Prospect Park,1512819,Sydney,Brooklyn,Flatbush,40.65275,-73.95457,Private room,50,10,8,2018-10-10,0.44,5,153 +22489609,Comfortable and Quiet,44216307,Aaron,Brooklyn,Sunset Park,40.64976,-74.00165,Private room,35,1,27,2019-06-16,1.50,1,35 +22489858,61 st East room D Manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76014,-73.96098,Entire home/apt,140,1,25,2019-06-27,1.67,11,330 +22491853,Private room near Central Park/Columbia University,67859646,Indhira & Alex,Manhattan,Morningside Heights,40.80737,-73.95732,Private room,75,2,39,2018-12-06,2.17,1,24 +22494825,Just Minutes From Manhattan,25581222,Ella,Bronx,Mott Haven,40.80986,-73.9214,Entire home/apt,140,2,57,2019-06-16,3.58,1,73 +22495122,Get lost at the tip of Manhattan,89245578,Noel,Manhattan,Inwood,40.86456,-73.92799,Entire home/apt,125,2,32,2019-06-23,1.77,1,19 +22495520,❤️ Furnished One Bedroom with Terrace!! ★★★★★,15740291,Mark,Manhattan,Midtown,40.75388,-73.96727,Entire home/apt,125,2,109,2019-06-25,5.95,1,53 +22496369,Pleasant & Low-priced place in Manhattan,23719409,Carlina,Manhattan,Harlem,40.82645,-73.94984,Private room,60,1,41,2019-06-22,2.24,4,132 +22497711,Cozy space+36fl.beautiful view+excellent location,101170573,Lina,Manhattan,Hell's Kitchen,40.77122,-73.99234,Entire home/apt,80,1,1,2018-01-03,0.05,1,0 +22499295,Bright & Beautiful in the East Village,1355958,Kara,Manhattan,East Village,40.72432,-73.98916,Private room,250,1,0,,,2,0 +22499728,"Cozy, Comfy, Beautiful in the East Village",1355958,Kara,Manhattan,East Village,40.72472,-73.98881,Entire home/apt,100,2,0,,,2,22 +22502171,Clean private room in Manhattan,17947250,Conor,Manhattan,East Harlem,40.78538,-73.94121,Private room,60,2,1,2018-01-01,0.05,2,0 +22503055,Upper east side duplex,80612882,Jonathan,Manhattan,Upper East Side,40.76396,-73.96365,Entire home/apt,350,3,1,2018-01-04,0.05,1,5 +22503167,The most beautiful home in Bed-Stuy,21147555,Sam,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93031,Private room,60,20,0,,,1,0 +22503340,Cozy room in Bushwick- 15 min to the city,150858055,Scarlett,Brooklyn,Bushwick,40.69735,-73.93276,Private room,42,1,10,2018-10-21,0.54,1,0 +22503477,A comfy apartment,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9456,Entire home/apt,60,30,4,2019-05-12,0.28,6,299 +22503721,2 bedroom 1 bathroom kitchen and living area,165109723,Monica,Queens,Queens Village,40.70383,-73.73416,Private room,120,3,0,,,1,83 +22503885,Beautiful Apartment in Central Harlem,2694297,Dana,Manhattan,Harlem,40.81685,-73.93711,Entire home/apt,95,3,3,2019-06-30,0.20,1,78 +22504678,Manhattan Palace Presidential Suite,122786340,Joseph,Manhattan,Upper West Side,40.80115,-73.96524,Private room,70,1,0,,,1,0 +22505049,Beautiful & sunny large room in a gorgeous apt.,138768335,Maria,Brooklyn,East Flatbush,40.65547,-73.92567,Private room,40,30,7,2019-06-10,0.44,2,317 +22505480,"Studio in Luxury Building - UWS - Indoor Pool, Gym",126687208,Priscilla,Manhattan,Upper West Side,40.79334,-73.96388,Private room,132,6,0,,,1,0 +22510428,"Harlem-Sugar Hill gracious apt, great location.",165099226,Karen,Manhattan,Harlem,40.82601,-73.9433,Private room,45,1,1,2018-04-09,0.07,1,0 +22510506,Prívate room,165003654,Rocio,Bronx,Norwood,40.87396,-73.87785,Private room,26,30,24,2019-01-15,1.39,1,303 +22511108,Historical home N.shore Staten Isl. nr FREE ferry.,128338539,Reuben,Staten Island,Stapleton,40.6322,-74.07913,Entire home/apt,95,30,25,2018-11-14,1.47,4,178 +22512408,"Lovely, river view oasis!",28400686,Joyce,Manhattan,Roosevelt Island,40.76241,-73.94878,Private room,78,7,0,,,1,0 +22512917,"Spacious, Sunlit, Master Bedroom in Brooklyn",10743035,Fahmida,Brooklyn,Prospect Heights,40.67579,-73.96514,Private room,75,2,0,,,1,0 +22513363,AMAZING Greenpoint/Williamsburg PRIVATE Room,2818775,Elena,Brooklyn,Greenpoint,40.73304,-73.95125,Private room,75,1,16,2019-05-19,1.08,1,280 +22513387,Stellar Crown Heights Location! (Private Bdrm),27854445,Kate,Brooklyn,Crown Heights,40.67632,-73.95535,Private room,50,4,0,,,1,0 +22514364,1D Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80686,-73.93822,Private room,50,1,13,2019-05-28,0.81,10,365 +22514608,"Hamilton Heights Sunny Studio, Manhattan",23834677,Kumar,Manhattan,Harlem,40.82788,-73.94441,Entire home/apt,105,1,111,2019-07-06,6.08,2,238 +22514661,Spacious apartment near East Village and LES,28248849,Stephen,Manhattan,East Village,40.72181,-73.98146,Entire home/apt,149,3,1,2018-01-15,0.06,1,0 +22514949,"Bright, cozy room in UWS next to Central Park",59385671,Yiran,Manhattan,Upper West Side,40.80055,-73.96078,Private room,54,3,0,,,1,0 +22515329,2 bedroom apartment in harlem,118182048,Alan,Manhattan,East Harlem,40.8141,-73.93602,Entire home/apt,100,1,8,2018-10-13,0.56,1,12 +22515792,Private Bedroom in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92993,Private room,89,1,92,2019-06-26,5.10,7,11 +22516244,"Prospect Park, Lefferts Garden Townhouse",705450,Conor,Brooklyn,Prospect-Lefferts Gardens,40.66215,-73.95187,Entire home/apt,80,3,4,2018-05-18,0.24,1,0 +22516361,Cozy & artsy apt in East Village - 2 bedrooms,26583247,Frannie,Manhattan,East Village,40.7316,-73.98507,Entire home/apt,132,7,0,,,1,0 +22516600,Private Room for 2,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93312,Private room,50,1,14,2019-06-16,0.78,4,306 +22516899,"A Quiet, Sunny Gem in Crown Heights",76426686,Bunge,Brooklyn,Crown Heights,40.6687,-73.93628,Private room,50,5,0,,,1,0 +22517063,Home away from home,122283834,Eve,Queens,Cambria Heights,40.69807,-73.74432,Private room,50,5,0,,,2,96 +22518038,Brooklyn Heights Getaway,2203467,Meahgan,Brooklyn,Brooklyn Heights,40.69379,-73.99753,Entire home/apt,300,3,10,2019-06-16,0.62,1,22 +22518123,15 to JFK/LGA 30 to Manhattan.Close to St John’s,165307387,K,Queens,Jamaica Estates,40.71248,-73.78896,Entire home/apt,85,1,88,2019-06-27,5.14,1,339 +22522733,Like your Private (artist / railroad) Apartment,165360098,Rose,Brooklyn,Williamsburg,40.71868,-73.95917,Private room,80,3,1,2019-06-20,1,1,84 +22524272,Private room in luxury SoHo Loft,5758215,Marcus,Manhattan,SoHo,40.72293,-74.00361,Private room,350,3,0,,,1,173 +22527937,Private Double Room in Midtown NYC/Times Square,10022878,Peter,Manhattan,Hell's Kitchen,40.76256,-73.98935,Private room,65,3,15,2019-07-06,0.88,1,31 +22529131,Lower East Side- Perfect 1 Bedroom! #12,158969505,Karen,Manhattan,Lower East Side,40.7211,-73.99321,Entire home/apt,180,30,2,2018-09-15,0.16,9,151 +22529259,"Cozy 2 Bedroom apartment, Feel like home!",1533576,Eva,Brooklyn,Bedford-Stuyvesant,40.69336,-73.95171,Entire home/apt,111,6,2,2018-10-27,0.18,1,43 +22529877,Cosy.,156505456,John,Brooklyn,East New York,40.66254,-73.88896,Private room,35,3,18,2019-03-17,1.02,13,79 +22530070,Suite 18 - Private Room w/ bath,99296570,Daisy,Brooklyn,Brighton Beach,40.58195,-73.95789,Private room,30,1,70,2019-06-23,3.97,5,193 +22530764,House of Love,165448425,Shana,Brooklyn,East Flatbush,40.65129,-73.94058,Private room,90,1,10,2019-06-24,0.72,1,365 +22531031,Comfortable Brooklyn Studio,56757345,Brenda,Brooklyn,East Flatbush,40.64857,-73.94407,Entire home/apt,89,2,43,2019-07-07,2.74,1,10 +22531696,Luxury Condo Lexington & Park Ave Sleeps 6,27482728,David,Manhattan,Midtown,40.74317,-73.98605,Entire home/apt,255,2,69,2019-06-13,3.85,1,149 +22531866,FULL VIEW NYC Room in Williamsburg & Giant Terrace,357117,Ilginutin,Brooklyn,Williamsburg,40.71914,-73.96237,Private room,44,6,4,2019-05-24,0.23,1,5 +22531898,"Cozy room, female only, AC include&3 subway lines",87174871,Emma,Manhattan,Upper West Side,40.80253,-73.96315,Private room,30,1,6,2019-07-02,0.33,1,9 +22533156,Private Sunny Room (B) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65255,-73.9454,Private room,75,2,5,2019-06-02,0.35,2,40 +22533436,Best Value in Manhattan - Steps from 6 Train,155810605,Danielle,Manhattan,East Harlem,40.79005,-73.94929,Entire home/apt,110,4,4,2018-11-08,0.22,2,0 +22533666,Upper Manhattan Oasis,103166867,Darcy,Manhattan,Inwood,40.8637,-73.92858,Entire home/apt,160,3,0,,,1,0 +22533734,Awesome spacious one bedroom in prime NYC location,165492173,Michael,Brooklyn,Park Slope,40.67682,-73.97476,Entire home/apt,200,7,0,,,1,0 +22534385,Brooklyn Apartment with Great Natural Lighting,164165428,Dotun,Brooklyn,Crown Heights,40.67626,-73.92936,Private room,60,3,0,,,1,0 +22534758,Beautiful Williamsburg Condo with Private Roof,23949144,Sam,Brooklyn,Williamsburg,40.71773,-73.94359,Entire home/apt,300,2,6,2018-05-04,0.38,1,0 +22535503,Perfect Vacation Rental for Family,6298158,Sid,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92706,Private room,72,1,12,2019-07-01,0.69,1,358 +22541685,Comfortable and Clean Place in Bed-Stuy,22414216,Crystal,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93634,Private room,39,30,0,,,1,220 +22542091,"Large, King Size NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.6987,-73.93776,Private room,75,2,85,2019-06-23,4.65,2,128 +22543061,Perfect Greenpoint Loft,165603002,Colin,Brooklyn,Greenpoint,40.73767,-73.95732,Private room,60,6,3,2019-04-26,0.16,1,0 +22543433,Cozy 4 bedroom duplex in NYC borough of Brooklyn,138770550,Charmine,Brooklyn,Crown Heights,40.67191,-73.93411,Entire home/apt,350,3,6,2018-10-12,0.43,3,100 +22544160,Comfortable Studio Apartment!,165612495,Alexei,Bronx,Fordham,40.86665,-73.8954,Entire home/apt,80,3,26,2019-06-22,1.68,1,15 +22544810,Williamsburg stunning duplex apartment 4br/3bath,10951481,Ann,Brooklyn,Williamsburg,40.71299,-73.96144,Entire home/apt,550,2,92,2019-06-23,5.24,5,90 +22545036,Cozy Room Close to Columbia,12541753,Yiou,Manhattan,Upper West Side,40.80034,-73.96127,Private room,39,3,1,2018-01-13,0.06,1,0 +22545117,Victorian Artist Loft,90857546,Diana,Brooklyn,Bushwick,40.69818,-73.93577,Private room,108,3,12,2019-03-12,0.79,1,112 +22545206,Cozy affordable room #2,20120009,Jannices,Brooklyn,Bushwick,40.68741,-73.9066,Private room,38,1,48,2019-04-24,2.64,6,3 +22545284,"Private Brooklyn studio, cozy for wintertime",3073721,Jennifer,Brooklyn,East Flatbush,40.65398,-73.94399,Entire home/apt,85,2,52,2019-01-01,3.54,1,0 +22545760,Aysgarth Brooklyn,13061712,Cheryl,Brooklyn,Prospect Heights,40.68001,-73.96557,Entire home/apt,800,5,6,2019-06-14,0.34,1,177 +22545840,Habitación comoda,165386495,Maria,Bronx,Fordham,40.85419,-73.89827,Private room,40,2,15,2018-12-16,0.83,1,220 +22545850,Bedroom for two in Clinton Hill,3720764,Emmet,Brooklyn,Bedford-Stuyvesant,40.69207,-73.96021,Private room,60,5,3,2018-11-25,0.36,1,0 +22546236,SJU大学,133825714,Peng,Queens,Flushing,40.72465,-73.80162,Shared room,30,1,0,,,1,0 +22548780,Private Bedroom in Clinton Hill,3094303,Cecilia,Brooklyn,Clinton Hill,40.68641,-73.96124,Private room,48,12,1,2018-01-31,0.06,1,0 +22550289,Cozy Historical Brooklyn Heights 1-Bedroom #10273,7495768,Carmen,Brooklyn,Brooklyn Heights,40.69335,-73.9984,Entire home/apt,175,3,8,2019-05-19,0.47,1,0 +22550431,Luxury Williamsburg Apt for Four,2453755,Niamh,Brooklyn,Williamsburg,40.71179,-73.93872,Entire home/apt,175,2,2,2018-05-28,0.15,1,0 +22550483,Cozy semi-private small cabin near Times Square,77526864,Anallely,Manhattan,Chelsea,40.7498,-73.99623,Private room,88,1,5,2019-03-16,1.00,1,158 +22551923,Cozy Brooklyn Apartment w/ Private Backyard,56730358,Kali,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94186,Entire home/apt,60,4,5,2018-02-27,0.28,1,0 +22552956,Bushwick Bedroom,165695294,Mike,Brooklyn,Bushwick,40.69946,-73.92686,Private room,85,1,0,,,1,0 +22553501,Central Park Cozy Home,165715198,Robert,Manhattan,Midtown,40.76006,-73.96541,Private room,70,1,52,2019-05-26,2.88,1,128 +22556901,Beautiful & spacious East Village Studio,17150107,Francisco,Manhattan,East Village,40.7277,-73.99007,Entire home/apt,161,5,0,,,1,0 +22561496,Bright/Large 1 Bdr Flat W/Parking!,16457426,Brian,Bronx,Kingsbridge,40.88435,-73.90305,Entire home/apt,145,2,14,2019-06-20,0.77,1,332 +22562364,Room in LIC/Astoria close to the city & LGA/JFK,30812164,Yumi,Queens,Long Island City,40.75501,-73.93455,Private room,38,1,19,2018-10-31,1.73,1,0 +22563782,Sunny Studio in Greenpoint - Private Bath/Kitchen,8203031,Jess,Brooklyn,Greenpoint,40.72188,-73.94355,Private room,150,3,8,2019-07-01,0.48,1,27 +22566815,Stunning Private Room in Awesome BK,1317913,Lauren,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95235,Private room,75,3,0,,,2,0 +22566828,Feel like your home,58403098,Nilufer,Queens,Long Island City,40.73641,-73.92738,Private room,35,4,39,2019-05-14,2.20,3,304 +22567255,"Artsy, Brooklyn Apt minutes away from Manhattan.",8299661,Lucerne,Brooklyn,Bedford-Stuyvesant,40.68503,-73.94093,Entire home/apt,70,28,4,2019-05-31,0.30,1,216 +22567430,Oasis in East Flatbush,165853174,Jackee,Brooklyn,East Flatbush,40.64322,-73.93745,Entire home/apt,89,2,74,2019-07-05,4.38,1,322 +22568033,High Rise Luxury 1bdr Apt by Time Square,21463260,Sabri,Manhattan,Hell's Kitchen,40.7633,-73.99716,Entire home/apt,275,2,0,,,1,0 +22568389,"Spacious, Quiet room in Clinton Hill Duplex",2880848,Candice,Brooklyn,Clinton Hill,40.69526,-73.96613,Private room,50,2,0,,,1,0 +22568702,Luxe North Williamsburg Double Bedroom Brooklyn,83284183,Dawn Anna,Brooklyn,Williamsburg,40.72143,-73.95702,Private room,55,3,1,2018-06-27,0.08,1,0 +22569197,Mine,150858745,Nirit,Queens,Rego Park,40.72195,-73.86112,Entire home/apt,300,3,0,,,1,5 +22569493,Beautifully Renovated Brownstone Apt! #10264,28574655,Mimi,Brooklyn,Crown Heights,40.67589,-73.94223,Entire home/apt,180,30,54,2019-06-24,2.98,1,277 +22569600,Cozy and Warm Stay in Fidi/Battery Park City,63343926,Hanna,Manhattan,Battery Park City,40.71082,-74.0176,Private room,94,1,65,2019-06-24,3.68,1,6 +22570044,Convenient bedroom in a modern apartment,790872,Tri,Manhattan,East Harlem,40.8049,-73.94012,Private room,80,1,4,2018-03-15,0.23,2,0 +22570065,1 Bedroom Apartment at great location in NYC,165887496,Antonio,Manhattan,Kips Bay,40.74451,-73.97836,Entire home/apt,150,1,79,2019-06-22,4.55,1,87 +22570793,Large Room in Quiet Apartment close to Subway,133926727,Victor,Manhattan,Harlem,40.82243,-73.94053,Private room,70,1,3,2018-03-04,0.18,2,0 +22571028,Apt. 2nd Floor (A) 2/4 Guest,87073749,Benedetta,Brooklyn,Williamsburg,40.70982,-73.95609,Entire home/apt,125,2,80,2019-06-22,4.44,2,74 +22571045,Private Studio,116746802,Christine,Queens,Bayside,40.75145,-73.75643,Private room,69,5,11,2019-06-10,0.69,5,128 +22571205,Great 3 BR Apt with private backyard and garage,24495088,Albert,Brooklyn,Brighton Beach,40.57905,-73.96088,Entire home/apt,179,2,1,2018-01-16,0.06,1,0 +22571719,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.7504,-73.96934,Entire home/apt,170,30,1,2018-06-16,0.08,7,364 +22572314,"Perfect location, gorgeous private building",3942655,Danny,Brooklyn,Williamsburg,40.71614,-73.94456,Entire home/apt,105,5,8,2019-04-03,0.53,2,8 +22572695,Simple studio,48616155,Michelle,Brooklyn,Flatbush,40.64663,-73.96187,Shared room,23,1,57,2019-06-23,3.27,1,58 +22574255,Brooklyn Room with a View on tree-lined street.,4365662,Claire,Brooklyn,Flatbush,40.64173,-73.96696,Private room,54,2,96,2019-07-01,5.43,1,130 +22575619,"Cozy, Humble and private",80824522,Nat,Brooklyn,Bushwick,40.7025,-73.93253,Private room,69,2,16,2019-06-29,1.07,2,185 +22576120,"Cozy, Glamorous: A Hide-away Seaside Private Room",162430220,Raymond,Queens,College Point,40.77639,-73.84392,Private room,80,1,0,,,1,0 +22578161,A cozy place to rest,76664098,Scarlett,Queens,Flushing,40.75981,-73.82021,Shared room,30,1,0,,,1,0 +22579082,Queens Home with Private Bathroom and Balcony,7784070,Jose,Queens,Ditmars Steinway,40.77411,-73.90017,Private room,60,1,0,,,1,0 +22579551,The 'TriBeCa Loft' #4 | A stylish 2 bed apt,3231509,Annamaria,Manhattan,Tribeca,40.71775,-74.00607,Entire home/apt,450,14,13,2019-05-08,0.77,4,365 +22579704,The 'TriBeCa Loft' #2 | A stylish 2 bed apt,3231509,Annamaria,Manhattan,Tribeca,40.71953,-74.00401,Entire home/apt,490,14,14,2019-02-10,0.81,4,365 +22579760,Bright private bedroom w/queen bed and parking,165985048,Xing,Queens,Forest Hills,40.72616,-73.84328,Private room,78,1,15,2019-06-17,0.96,1,178 +22580951,Private Huge 4 Bedroom Apartment,21593637,Pat And Shelly,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92656,Entire home/apt,179,3,30,2019-06-14,1.68,2,285 +22582841,The Explorer's Lounge in Bushwick,163829123,Beth,Brooklyn,Bushwick,40.70099,-73.93728,Entire home/apt,245,2,59,2019-06-24,3.69,1,53 +22583959,1 BR in Harlem,4373926,Sebastian,Manhattan,Harlem,40.82824,-73.94525,Entire home/apt,100,10,2,2018-09-01,0.15,1,95 +22584204,Industrial Chinatown Hideaway,126449349,John,Manhattan,Lower East Side,40.71327,-73.98866,Entire home/apt,160,1,2,2019-01-01,0.31,2,159 +22584277,Room for rent,73377818,Justine,Manhattan,Harlem,40.8168,-73.95413,Private room,35,1,0,,,1,89 +22584507,private bedroom in great location in williamsburg,1653265,Allen,Brooklyn,Williamsburg,40.71136,-73.9534,Private room,50,1,0,,,1,0 +22584603,Private room with Amazing views of Manhattan.,4719170,Amber,Brooklyn,Greenpoint,40.73477,-73.95541,Private room,45,2,6,2019-03-04,0.33,1,0 +22584844,Lovely Bedroom,44904334,Dounia,Brooklyn,Flatbush,40.65466,-73.95933,Private room,38,2,1,2018-05-12,0.07,1,0 +22586049,Charming Traditional Brooklyn Apartment,10057035,Caroline,Brooklyn,Williamsburg,40.71412,-73.93829,Entire home/apt,120,2,6,2019-01-01,0.50,1,0 +22586352,Spacious 3 bedroom in Manhattan,166066107,Mia,Manhattan,East Village,40.72193,-73.98162,Entire home/apt,280,1,66,2019-06-24,3.88,1,257 +22586703,Bright 1 Bed Apartment in central Greenpoint,40543452,Don,Brooklyn,Greenpoint,40.73041,-73.95601,Entire home/apt,120,2,2,2018-11-05,0.24,1,0 +22587295,Luxury apartment in beautiful Boerum Hill!,21784449,Stephanie,Brooklyn,Boerum Hill,40.68611,-73.98336,Entire home/apt,175,3,46,2019-06-20,2.84,1,170 +22587700,Private Bedroom in Cozy Williamsburg Apartment!,187912,Erin,Brooklyn,Williamsburg,40.71708,-73.96605,Private room,100,1,35,2019-06-27,2.04,2,17 +22588459,Large Private Room in Bright Bushwick Loft,17799362,Ashley,Brooklyn,Williamsburg,40.70635,-73.93658,Private room,60,2,1,2018-01-21,0.06,1,0 +22588755,Amazing Room w/Workspace - Williamsburg,53821850,Jermaine,Brooklyn,Williamsburg,40.70699,-73.94604,Private room,80,1,62,2019-06-23,4.83,2,58 +22589075,"Designer 1 Bedroom - Williamsburg, Brooklyn",3805722,Liliya,Brooklyn,Williamsburg,40.71197,-73.95804,Entire home/apt,175,4,5,2019-06-16,0.32,1,0 +22589500,Sun-lit Bright Apt in Central Hell's Kitchen,18305503,Derek,Manhattan,Hell's Kitchen,40.76637,-73.98941,Entire home/apt,130,2,3,2018-04-07,0.19,1,0 +22594239,Cozy&Quaint Garden Apartment-Private Backyard,3413548,Valerie,Brooklyn,Sunset Park,40.65758,-73.99807,Entire home/apt,185,2,14,2019-06-15,0.82,1,124 +22598303,Lovely 1B1B Apt in UWS Manhattan,40748414,Ran,Manhattan,Harlem,40.81847,-73.95259,Entire home/apt,60,14,0,,,1,157 +22599828,"Perfect Cobble Hill 1-bed, Brooklyn's best spot",15102235,Lindsay,Brooklyn,Cobble Hill,40.68652,-73.99966,Entire home/apt,140,4,50,2019-07-05,2.99,2,107 +22600713,"Sunny Studio, Lower East Side",1873234,Mikkel,Manhattan,Lower East Side,40.71774,-73.99057,Entire home/apt,140,3,33,2019-05-30,1.91,1,11 +22601143,1 BR in 2 BR Apartment (Furniture Included),166260679,Matt,Manhattan,East Village,40.72756,-73.98867,Private room,50,27,0,,,1,0 +22601249,Chic and spacious 2 bedroom 19 min to Penn Station,166262295,Barbara,Queens,Long Island City,40.75337,-73.93355,Entire home/apt,95,2,57,2019-06-30,3.57,2,53 +22602605,2-Bedroom Apartment at Fort Greene,15535189,Yi,Brooklyn,Bedford-Stuyvesant,40.68788,-73.95741,Entire home/apt,95,2,4,2018-05-02,0.26,1,0 +22602979,Great Private & Cozy bedroom in Crown Heights,166286543,Mark,Brooklyn,Crown Heights,40.67299,-73.95521,Private room,49,7,6,2019-06-12,0.41,2,299 +22602996,Private room near Central Park and Subway!,166289951,George,Manhattan,East Harlem,40.79303,-73.94662,Private room,90,2,0,,,1,0 +22605114,Private room in Brooklyn !!!!,70236577,Sara,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94214,Private room,58,1,11,2019-05-18,1.77,1,345 +22609027,Park Side Zen Home - Terrace & next to CentralPark,166366338,Dico,Manhattan,Upper West Side,40.77327,-73.97953,Entire home/apt,175,3,21,2019-06-10,1.30,1,42 +22611675,Private Room in WaHi,166398662,Michelle,Manhattan,Washington Heights,40.8372,-73.94196,Private room,25,1,2,2018-01-24,0.11,1,0 +22611934,West Harlem- Recently renovated apartment for rent,74982218,Miki,Manhattan,Harlem,40.81309,-73.95336,Private room,32,4,45,2019-07-01,2.53,2,38 +22612874,Private Bedroom with en Suite Bathroom in Bushwick,166415629,Anthony,Brooklyn,Bushwick,40.69859,-73.93534,Private room,85,1,0,,,1,0 +22613221,Astoria very close to Manhattan private bedroom,117195769,Simone,Queens,Astoria,40.76334,-73.90977,Private room,45,1,4,2018-02-25,0.23,3,0 +22614476,"cosy 1 bedroom junior apartment, Midtown Manhattan",121849119,Lexx,Manhattan,Murray Hill,40.74627,-73.97595,Entire home/apt,100,1,57,2019-06-17,3.62,1,86 +22615158,Private Room Upper West Side,33392869,Stephen,Manhattan,Upper West Side,40.79937,-73.96281,Private room,100,3,0,,,1,0 +22615655,Studio sanctuary at the epicenter of a local's NYC,2495580,Jayne,Manhattan,Chelsea,40.73955,-73.99775,Entire home/apt,230,4,3,2019-03-25,0.76,1,0 +22616613,Lovely New York Guest Room,81146832,Willa,Manhattan,Inwood,40.86395,-73.92007,Private room,34,1,15,2018-05-17,0.85,1,0 +22616692,Large Master Bedroom- Ridgewood,106394077,Patricia,Queens,Ridgewood,40.70865,-73.91088,Private room,65,3,0,,,1,0 +22617426,Beautiful Private Bedroom for rent Crown Heights,166286543,Mark,Brooklyn,Crown Heights,40.67439,-73.95286,Private room,35,10,5,2019-02-01,0.29,2,350 +22618211,Midtown NYC Studio,5668546,Tom,Manhattan,Hell's Kitchen,40.75574,-73.99638,Entire home/apt,103,1,0,,,1,0 +22618396,Spacious Brooklyn Bedroom with Natural Light,107978473,Trishia,Brooklyn,Greenpoint,40.73375,-73.9557,Private room,60,2,3,2018-06-19,0.23,1,0 +22618993,FUN Bushwick Living,150647463,Eréz,Brooklyn,Bushwick,40.69783,-73.9301,Private room,55,14,3,2019-01-02,0.21,2,64 +22619073,"Harlem Deco,",84716175,Garret,Manhattan,Harlem,40.82246,-73.93817,Private room,95,1,49,2018-10-22,2.72,2,180 +22624247,HUGE SOHO 3 BR LOFT★★★★★LES/FULL FLOOR ★★★★★,166544300,Mariashi,Manhattan,Lower East Side,40.72015,-73.98376,Entire home/apt,416,4,37,2019-06-09,2.17,1,244 +22627376,Cozy Bedroom in Heart of Greenpoint,1286786,Leslie,Brooklyn,Greenpoint,40.72949,-73.95802,Private room,45,1,1,2018-01-21,0.06,1,0 +22627980,LOVE LIFE,3680044,Roselie,Manhattan,Upper West Side,40.79787,-73.9688,Entire home/apt,99,2,6,2018-04-29,0.33,1,0 +22628116,Inwood apartment closed to have fun in manhattan,130633561,Jose,Manhattan,Inwood,40.86815,-73.92342,Private room,125,1,0,,,1,89 +22628471,Chelsea Studio - Fully Furnished,74255931,Paddy,Manhattan,Chelsea,40.74776,-74.00238,Entire home/apt,75,15,1,2018-02-18,0.06,1,0 +22629010,Fashion week stay!,165907758,Helen,Manhattan,Midtown,40.75301,-73.97277,Entire home/apt,200,7,0,,,1,0 +22629696,Private Room w/premium Mattress Near Subway & Gym,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68766,-73.92788,Private room,100,2,31,2019-07-01,1.71,5,358 +22630194,Authentic Brklyn Experience - Room B,156042211,Tia,Brooklyn,Canarsie,40.64838,-73.89834,Private room,40,4,4,2019-03-07,0.23,4,37 +22631617,"Calm, cozy bedroom in the heart of Brooklyn!",42682752,Katharine,Brooklyn,Cobble Hill,40.6887,-73.99168,Private room,60,1,2,2018-01-15,0.11,3,0 +22631676,"Peaceful, Spacious King-Size Bedroom with Sunlight",41311743,Jean,Brooklyn,Crown Heights,40.67516,-73.94813,Private room,97,3,0,,,2,0 +22631779,Room Private Entrance Close to Subway/Bus/Airport,44782054,Jennifer,Queens,Ditmars Steinway,40.77317,-73.91508,Private room,55,2,58,2019-06-27,3.81,1,9 +22632338,Hidden Gem - Entire Bklyn Apt,156042211,Tia,Brooklyn,Canarsie,40.64994,-73.8964,Entire home/apt,120,4,31,2019-06-23,1.88,4,296 +22634088,Brooklyn Condominium With Balcony,155607686,Jenna,Brooklyn,Gravesend,40.58876,-73.97349,Private room,39,3,20,2019-06-15,1.29,1,324 +22635815,Stylish Bedroom In Washington Heights Manhattan.,26101123,Ken,Manhattan,Washington Heights,40.83558,-73.9404,Private room,38,2,23,2019-06-30,1.43,1,30 +22635959,Private room with visit to queens # 3,158540605,Sonia,Queens,Glendale,40.70116,-73.88935,Private room,45,1,61,2019-07-02,3.52,6,274 +22636145,Private Suite in NYC 15 minutes to Times Square,157979999,Ayesha,Queens,Sunnyside,40.74648,-73.91919,Private room,60,1,76,2019-06-30,4.43,1,301 +22636548,Spacious & Chic 2-BR Home in Manhattan,158563237,Annika,Manhattan,Inwood,40.86958,-73.9172,Entire home/apt,225,4,9,2019-05-19,0.65,1,364 +22636785,Private room with visit to queens # 2,158540605,Sonia,Queens,Glendale,40.70148,-73.88954,Private room,25,2,75,2019-06-23,4.29,6,254 +22637100,"Private room in Queens, Ny # 1",158540605,Sonia,Queens,Glendale,40.70099,-73.89034,Private room,25,1,101,2019-07-04,5.59,6,216 +22637533,Private room,89320309,Rishi,Brooklyn,Fort Hamilton,40.61752,-74.03174,Private room,30,1,2,2019-01-18,0.13,1,0 +22638243,Brooklyn Apartment - Minutes to Prospect Park,16684717,Eric,Brooklyn,Crown Heights,40.67362,-73.9568,Private room,50,1,2,2018-02-11,0.12,1,0 +22638442,A Brief Welcome,22445332,Adrian,Brooklyn,Crown Heights,40.67157,-73.93434,Private room,25,1,1,2018-01-17,0.06,1,0 +22639188,Hells Kitchen - Midtown West - 1 Bedroom Apartment,2925596,Daniel,Manhattan,Hell's Kitchen,40.76464,-73.99361,Entire home/apt,200,5,46,2019-07-01,2.63,1,228 +22647656,59th Street,15819815,Tobey,Manhattan,Midtown,40.7601,-73.96356,Entire home/apt,100,30,1,2018-03-26,0.06,1,177 +22649404,"@Ferry,2Bedroom/4bed.Private,Renovated/Stylish...",1715301,Mark,Staten Island,Tompkinsville,40.63518,-74.07956,Entire home/apt,65,4,63,2019-06-27,3.63,3,191 +22649836,"AirBNB Ozone Park by JFK, NY",151233592,Denise,Queens,Ozone Park,40.68887,-73.8448,Private room,30,1,1,2018-01-11,0.06,1,0 +22650253,Cozy & Sunlit Studio in LES,110345854,Laura,Manhattan,Lower East Side,40.72149,-73.98573,Entire home/apt,110,4,1,2018-11-18,0.13,1,0 +22651032,1BR Guest Suite with private entrance,113469347,Joel,Queens,Queens Village,40.71899,-73.75347,Entire home/apt,45,3,27,2019-06-24,3.65,1,304 +22651464,12 east 86th Steet Upper East Side Building,165898555,Honey,Manhattan,Upper East Side,40.77719,-73.9529,Entire home/apt,200,30,0,,,7,364 +22651509,Cozy New York Apartment,166818540,Shannon R,Manhattan,Chelsea,40.73991,-74.00211,Entire home/apt,115,1,2,2018-10-11,0.11,1,0 +22651614,"Great room in beautiful, light-filled apartment",166819817,Rebecca,Manhattan,Washington Heights,40.83267,-73.94156,Private room,75,30,0,,,1,90 +22651901,HUGE ONE BEDROOM IN BK,124657243,Bugsy,Brooklyn,Flatbush,40.65105,-73.95935,Entire home/apt,89,1,4,2018-03-07,0.23,1,0 +22652358,"Private room for short time rent, Sheepshead Bay",35673036,Victoria,Brooklyn,Sheepshead Bay,40.589,-73.95675,Private room,50,3,3,2018-09-14,0.28,1,189 +22652572,Beautiful private bedroom/bath in private house,93339222,Dena,Brooklyn,Gowanus,40.67968,-73.99066,Private room,125,2,50,2019-06-23,3.19,1,80 +22653378,"Cozy, Chic Private Room -- Steps Away From Metro!",4792728,Adrian,Bronx,Longwood,40.81943,-73.90224,Private room,80,2,9,2018-09-30,0.65,1,0 +22654987,Pinterest Room ! Minimal but cute,9246334,Phil,Brooklyn,Crown Heights,40.67521,-73.93996,Private room,70,7,0,,,1,365 +22655068,1BR Apartment in the Heart of Gramercy,166861637,Gary,Manhattan,Gramercy,40.73674,-73.98308,Entire home/apt,100,3,52,2019-05-31,3.20,1,3 +22656433,Luxury 2 Bedroom Apartment in Williamsburg,166879201,Yazmin,Brooklyn,Bedford-Stuyvesant,40.69305,-73.95599,Entire home/apt,169,2,95,2019-07-05,5.27,1,48 +22656618,124 West 60th one bedroom apartment,165898555,Honey,Manhattan,Upper West Side,40.76973,-73.9848,Entire home/apt,200,30,0,,,7,365 +22656623,Cozy 1 Bedroom in South Williamsburg,4993038,Tiffany,Brooklyn,Williamsburg,40.71082,-73.96128,Entire home/apt,300,1,1,2018-01-20,0.06,1,0 +22656685,Elk Lodge,166884908,Devon,Queens,Long Island City,40.75853,-73.94304,Private room,50,1,0,,,1,0 +22657560,90 Washington top building with spectacular views.,165898555,Honey,Manhattan,Financial District,40.70853,-74.01436,Entire home/apt,225,30,1,2018-05-25,0.07,7,364 +22658582,Comfy couch in Manhattan!,37818581,Sofia,Manhattan,East Harlem,40.8024,-73.93735,Shared room,30,1,17,2018-05-25,0.94,4,0 +22663674,2-bedroom in the heart of Upper West Side.,3889408,Jed,Manhattan,Upper West Side,40.78296,-73.98252,Entire home/apt,545,2,47,2019-06-27,2.79,1,269 +22665286,Stylish home in Queens,4976277,Antonis,Queens,Sunnyside,40.74755,-73.91833,Entire home/apt,200,5,19,2019-06-23,1.18,1,155 +22665392,Spacious and Airy Williamsburg Home,6787261,Anastasia,Brooklyn,Williamsburg,40.71028,-73.95367,Entire home/apt,189,1,52,2019-06-13,2.88,2,0 +22667271,Peaceful Private Luxe Bushwick Space,5680111,Timothy,Brooklyn,Bushwick,40.6881,-73.91312,Private room,71,5,19,2019-04-16,1.29,7,140 +22667641,One bedroom in heart of NYC,167000939,Julianna,Manhattan,Upper East Side,40.76373,-73.96595,Entire home/apt,200,2,13,2018-07-29,0.87,1,0 +22667649,Cute private room in Downtown NYC,260958,Aura,Manhattan,Chinatown,40.71391,-73.99076,Private room,65,3,3,2018-10-15,0.17,3,0 +22667815,Beautiful Private Room in Cobble Hill Brownstone!,22550357,Will,Brooklyn,Cobble Hill,40.6901,-73.99523,Private room,85,10,19,2018-11-24,1.06,1,0 +22668695,Entire Private Floor of West Village Duplex- NY,26754841,Deo,Manhattan,West Village,40.73612,-74.0041,Private room,125,2,3,2019-05-05,0.85,2,0 +22669096,"UWS, Luxury Modern 1 BR 1 Bath, Doorman.",85886048,Lauren,Manhattan,Upper West Side,40.7817,-73.982,Private room,395,3,0,,,1,365 +22670106,Cozy affordable room #1,20120009,Jannices,Brooklyn,Bushwick,40.68726,-73.90621,Private room,38,1,36,2019-04-18,2.00,6,0 +22670366,Cozy affordable room #3,20120009,Jannices,Brooklyn,Bushwick,40.68757,-73.90737,Private room,38,1,33,2019-06-21,1.83,6,1 +22670614,Williamsburg Bedroom Available,22130449,Logan,Brooklyn,Williamsburg,40.71082,-73.95729,Private room,70,2,11,2019-07-04,0.67,1,3 +22671517,55 washington,3428456,Yoon,Brooklyn,DUMBO,40.70311,-73.98853,Private room,74,1,0,,,1,0 +22672271,A Taste of Historic Bedstuy - 20 mins to City!,16275624,Cj,Brooklyn,Bedford-Stuyvesant,40.68141,-73.92769,Private room,69,2,21,2019-07-07,1.20,2,28 +22672516,Artsy 1 bedroom Apartment in East Village,15537429,Walid,Manhattan,East Village,40.72785,-73.97976,Entire home/apt,155,1,80,2019-06-26,4.62,3,21 +22673257,Studio Apartment Above Stephen Colbert Show,5079985,Teena,Manhattan,Midtown,40.76334,-73.98257,Entire home/apt,165,2,4,2018-04-17,0.24,1,188 +22674537,Private bedroom in FiDi,165803414,Michelle,Manhattan,Financial District,40.70789,-74.0108,Private room,80,1,1,2018-01-15,0.06,1,0 +22674576,"Comfy, private bedroom in the Upper East Side.",49222773,Ana,Manhattan,Upper East Side,40.77685,-73.9537,Private room,90,2,12,2018-10-14,0.79,1,2 +22675757,"Central Brooklyn +Beautiful Rooms +Room Vista",167098774,Keisha,Brooklyn,Canarsie,40.63761,-73.89339,Private room,55,2,32,2019-05-27,1.84,3,76 +22676015,LIC 1 Bedroom 10 min to Times Sq -1 stop to NYC,116067987,Kimberley,Queens,Long Island City,40.75489,-73.92167,Entire home/apt,150,2,54,2019-07-03,3.21,2,351 +22681018,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.75059,-73.97122,Entire home/apt,170,30,0,,,7,364 +22683699,Large 1 bdr apartment. 20 mins to Times square,42082112,Tatiana,Manhattan,Harlem,40.82779,-73.94716,Entire home/apt,95,4,34,2019-05-30,2.03,1,56 +22683799,The place,3218951,Marko,Brooklyn,Prospect-Lefferts Gardens,40.65686,-73.95758,Private room,22,7,5,2019-05-28,0.30,1,5 +22683927,Furnished Bedroom Meat Packing District,167188752,Percy,Manhattan,Chelsea,40.7394,-73.99964,Private room,150,3,1,2018-05-02,0.07,1,364 +22685532,Modern 2 bedroom apartment in Ozone Park Queens,143938171,Ashley,Queens,Ozone Park,40.68275,-73.8429,Entire home/apt,200,3,0,,,1,0 +22686497,"Backyard BK! Live like a NY’er in modern, new reno",24124835,Danielle,Brooklyn,Bedford-Stuyvesant,40.6886,-73.92937,Entire home/apt,130,4,53,2019-07-06,3.66,2,41 +22686751,**Summer in SugarHill Manhattan is VERY Sweet**,167208041,Abel,Manhattan,Harlem,40.82476,-73.94332,Entire home/apt,173,2,78,2019-07-06,4.43,1,0 +22687481,"Be Queen For a Stay - Safe, Clean, Trendy in BK",42585518,Anna,Brooklyn,Williamsburg,40.71945,-73.94648,Entire home/apt,75,4,6,2018-09-23,0.37,1,0 +22687843,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.75129,-73.9698,Entire home/apt,170,30,0,,,7,364 +22688059,Modern Bedstuy apartment,8992812,Reginald,Brooklyn,Bedford-Stuyvesant,40.6805,-73.92823,Entire home/apt,110,2,10,2019-06-30,0.68,1,0 +22689135,Cozy private room,167250189,Kennedy,Brooklyn,Bushwick,40.69827,-73.93207,Private room,50,5,1,2018-01-21,0.06,1,0 +22689214,A ROOM DESIGNED JUST FOR YOU,72392039,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93057,Private room,55,2,9,2019-04-04,0.80,1,319 +22689939,HUGE One Bedroom East Village!,167258458,East Village,Manhattan,East Village,40.72162,-73.97774,Entire home/apt,135,3,49,2019-06-25,2.71,2,202 +22690429,Huge Bright Spacious apartment to Share,167258458,East Village,Manhattan,East Village,40.7214,-73.97787,Private room,85,2,3,2018-06-07,0.21,2,0 +22690507,Cozy Brooklyn bedroom and bathoom,27264437,Hortense,Brooklyn,Bedford-Stuyvesant,40.69563,-73.93466,Private room,55,5,4,2018-03-15,0.23,2,0 +22690837,"Architect's Haven-- Light, Books and Plants!",26856426,Nicholas,Brooklyn,Gowanus,40.66824,-73.99272,Entire home/apt,189,5,8,2018-06-25,0.52,1,0 +22691267,Handmade artist loft,76422506,Damon,Brooklyn,Clinton Hill,40.69675,-73.96188,Private room,60,3,0,,,1,0 +22697211,Sweet studio in Cobble Hill Brooklyn,41550565,Jeannette,Brooklyn,Cobble Hill,40.68864,-73.99896,Entire home/apt,100,30,5,2019-06-15,0.33,1,117 +22698090,BUENA UBICACIÓN CON DESAYUNO INCLUIDO,167359300,Carmen,Brooklyn,Brighton Beach,40.57458,-73.96514,Private room,76,3,23,2018-09-22,1.37,1,153 +22698756,☆Cozy Brooklyn Condo 18 minutes from Manhattan☆,13203970,Queen Sheba,Brooklyn,Bedford-Stuyvesant,40.67974,-73.91705,Entire home/apt,97,2,44,2019-06-26,2.92,1,174 +22699135,"Clean, Large 2 Bedroom Duplex Apartment w/ Patio",53978622,Narina,Manhattan,East Harlem,40.80954,-73.93934,Entire home/apt,175,4,8,2019-06-19,0.51,2,160 +22699847,Location and Comfort Matter!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94657,Entire home/apt,150,3,27,2019-06-19,1.58,7,319 +22699919,Beautiful spacious private room w/ lovely backyard,117633459,Elena,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95907,Private room,42,7,2,2018-01-23,0.11,1,0 +22700068,Room next to Central Park on the UES!,50765187,Lejla,Manhattan,Upper East Side,40.77287,-73.95897,Private room,175,2,0,,,1,88 +22700180,Queen-sized bed in Ridgewood/Bushwick Area,167004933,Lee,Queens,Ridgewood,40.70348,-73.91051,Private room,40,2,1,2018-08-09,0.09,1,0 +22700620,Cozy 1BR Apt in Williamsburg with Roof & Balcony,56120478,Anna,Brooklyn,Williamsburg,40.71805,-73.94925,Private room,75,1,9,2018-02-24,0.51,1,0 +22701496,"Charming and Spacious, 2bed in Bushwick.",44174916,Adelina,Brooklyn,Bushwick,40.70138,-73.9187,Entire home/apt,75,2,6,2018-02-25,0.33,1,0 +22701863,Beautiful sunny studio apartment,5835731,Ramy,Brooklyn,Bedford-Stuyvesant,40.68037,-73.92029,Entire home/apt,79,2,5,2018-04-08,0.28,1,0 +22701969,"Cute, comfortable, convenient Brooklyn bedroom!",3741891,Rebecca,Brooklyn,Crown Heights,40.67131,-73.94753,Private room,45,2,49,2019-06-21,3.15,1,8 +22702377,Greenpoint apt,167401250,Darby,Brooklyn,Greenpoint,40.72292,-73.94618,Private room,78,1,2,2018-04-22,0.13,1,0 +22702906,Cozy Brownstone Brooklyn Studio Near Subway!!,6291509,Daniel,Brooklyn,Boerum Hill,40.6876,-73.98472,Entire home/apt,160,4,4,2018-09-26,0.30,1,14 +22702994,Furnished Bedroom near Prospect Park!,99652823,Adam,Brooklyn,Kensington,40.64111,-73.97345,Private room,50,2,0,,,1,0 +22703004,Great affordable price for room near Manhattan,140057330,Joey,Queens,Ridgewood,40.69847,-73.90735,Private room,60,1,38,2019-06-16,2.28,7,47 +22703468,"Great private room in Hell’s kitchen +TIMES SQUARE",167270001,Piero,Manhattan,Hell's Kitchen,40.75763,-73.99221,Private room,300,1,64,2019-06-30,3.59,2,332 +22703920,"Central Brooklyn Beautiful Rooms +Room Florence +#1",167098774,Keisha,Brooklyn,Canarsie,40.63905,-73.89243,Private room,55,2,20,2019-06-24,1.40,3,177 +22704069,The Paris - Duplex Penthouse with Roof Deck,162575767,Hampton,Manhattan,SoHo,40.72044,-73.9998,Entire home/apt,800,2,0,,,1,2 +22704461,Amazing Central Park One Bedroom,2681756,Imri,Manhattan,Upper West Side,40.7861,-73.97097,Entire home/apt,170,3,0,,,1,0 +22704580,Lincon appartament,93516714,Nicolo,Manhattan,Upper West Side,40.7734,-73.98684,Private room,120,60,0,,,1,365 +22705059,Cute room in Manhattan 30 mins to Times Square,1692538,Nuttamon,Manhattan,Washington Heights,40.85411,-73.92952,Private room,99,1,45,2019-06-17,2.70,5,315 +22705115,Spacious apartment with all necessities nearby,47412299,Mohammed,Brooklyn,Canarsie,40.64178,-73.90179,Entire home/apt,90,5,23,2019-06-30,1.70,1,293 +22705516,The Quietest Block in Manhattan :),127740507,Kathleen,Manhattan,Harlem,40.83102,-73.94181,Private room,65,2,103,2019-07-07,5.89,2,0 +22705963,1 Large bedroom in Murray Hill,166873118,Adil,Manhattan,Murray Hill,40.74476,-73.9755,Private room,70,15,0,,,1,0 +22706034,Vintage east village apartment,20365135,M,Manhattan,East Village,40.72804,-73.98726,Private room,80,2,3,2018-04-09,0.19,1,0 +22706231,Nice Place in The Bronx!!,163047410,Erick,Bronx,Longwood,40.81961,-73.90019,Entire home/apt,40,5,45,2019-06-23,2.51,1,266 +22706343,Bright-Spacious Private Room /30 min NYC,165257273,Soon,Queens,Flushing,40.77053,-73.80067,Private room,54,30,5,2019-06-27,0.39,3,335 +22712478,"Private, Comfy Town Home - Heart of Williamsburg",10545382,Chase,Brooklyn,Williamsburg,40.7169,-73.96493,Private room,138,1,75,2019-07-07,4.59,2,81 +22713035,"Bright, minimal hideaway with ensuite bathroom",52825108,Raven,Brooklyn,Bushwick,40.69928,-73.9309,Private room,66,14,1,2018-11-13,0.13,1,49 +22713055,Cozy Private room in Hamilton Heights,54740781,Melissa,Manhattan,Harlem,40.82949,-73.94644,Private room,35,3,2,2018-08-13,0.17,1,0 +22713294,Cozy Ridgewood Spot,58884411,Hubert,Queens,Ridgewood,40.70111,-73.89988,Private room,25,3,0,,,1,0 +22713353,Large Brooklyn Rm- Prospect Park & F/G Train!,133545456,Casey,Brooklyn,South Slope,40.66085,-73.98178,Shared room,55,2,1,2018-03-18,0.06,1,0 +22714327,Birth place of Hip hop in the heart of the Bronx.,167560332,Schomberg,Bronx,Hunts Point,40.81978,-73.88743,Private room,45,2,0,,,1,0 +22714571,Amazing Private Room @Madison Square Garden,167270001,Piero,Manhattan,Hell's Kitchen,40.7559,-73.99324,Private room,109,1,91,2019-06-25,5.11,2,304 +22714688,"Huge, New and Green Oasis in Brooklyn",45370849,Judith,Brooklyn,Bay Ridge,40.63557,-74.03449,Entire home/apt,110,2,34,2019-06-29,3.03,1,96 +22714989,Entire Apartment - A retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65682,-73.95875,Entire home/apt,125,3,0,,,2,0 +22715051,Duplex Apt in Brooklyn Beautiful Brownstone,24967136,Paul,Brooklyn,Bedford-Stuyvesant,40.68226,-73.93153,Entire home/apt,119,5,25,2019-05-25,1.49,2,77 +22715506,Luxury Chelsea apt. walking distance to everything,5601966,Kristen,Manhattan,Chelsea,40.74907,-74.00374,Entire home/apt,375,4,35,2019-04-26,2.19,1,79 +22715517,"Bedroom balcony, modern apt, rooftop williamsburg",17766980,Lucas,Brooklyn,Williamsburg,40.70788,-73.9511,Private room,65,3,5,2018-05-24,0.31,1,0 +22716305,LargeBedroom gem in historic Red Hook Brooklyn!,17129810,Jeffrey,Brooklyn,Columbia St,40.68155,-74.0039,Private room,75,4,4,2018-11-11,0.33,5,0 +22717766,The heart of Brooklyn,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9462,Entire home/apt,58,30,4,2019-05-15,0.26,6,220 +22717838,Sunny apartment with easy connections to anywhere.,120847,Sam,Brooklyn,Bedford-Stuyvesant,40.68959,-73.95616,Private room,85,3,11,2019-06-30,0.82,1,13 +22719709,Cozy Brooklyn Stay,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68177,-73.88277,Private room,68,2,10,2018-12-01,0.94,3,365 +22723461,Large comfortable Studio! Perfect for couple!,167677659,Eriko,Manhattan,Harlem,40.80399,-73.95402,Entire home/apt,90,4,5,2019-02-24,0.31,1,7 +22729984,Madinina,116874533,Bertin,Manhattan,Harlem,40.81294,-73.94609,Private room,90,2,30,2019-07-01,1.88,2,331 +22730139,Staten Island full size living space-lower level,167595532,Nabil,Staten Island,Arden Heights,40.56033,-74.18259,Entire home/apt,75,1,20,2019-01-08,1.55,1,6 +22730298,Spacious King size Apartment near Prospect Park,131827796,Rose,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95427,Entire home/apt,130,3,36,2019-06-25,2.23,1,132 +22730899,Cozy bedroom in the heart of Greenpoint,17338440,Justyna,Brooklyn,Greenpoint,40.72904,-73.94885,Private room,50,5,1,2018-02-20,0.06,1,0 +22731353,Cozy apartment in Greenwich Village,27960761,Christopher,Manhattan,Greenwich Village,40.72815,-73.99586,Entire home/apt,150,2,14,2018-04-22,0.79,3,0 +22732004,Williamsburg BK | Private Guest Suite,3490389,Daniel,Brooklyn,Williamsburg,40.71589,-73.94288,Private room,100,3,19,2019-06-24,1.35,1,172 +22733147,Gorgeous bedroom in prime park slope,60126799,Gunveer,Brooklyn,Park Slope,40.67158,-73.97706,Private room,70,4,0,,,1,0 +22733533,Duplex w Rooftop Patio,167818456,Anna,Brooklyn,Williamsburg,40.71297,-73.95657,Entire home/apt,345,2,47,2019-06-29,3.24,2,146 +22734359,Private room next to Brooklyn college,167831565,Andrew,Brooklyn,Flatlands,40.62812,-73.94664,Private room,59,1,6,2018-03-17,0.34,1,0 +22734483,~Beautiful 1 Bedroom Apt in Prime Upper East Side~,45241930,Juline,Manhattan,Upper East Side,40.77207,-73.95599,Entire home/apt,150,60,6,2019-07-02,0.36,3,33 +22734514,Clean room with Balcony available.,167818421,Marie Louise,Queens,Astoria,40.76645,-73.91486,Private room,80,3,22,2018-10-25,1.28,1,188 +22735103,Sunnyside Bedroom,33695224,Mehmet,Queens,Sunnyside,40.74439,-73.91372,Private room,60,1,3,2018-05-28,0.17,1,0 +22735497,Magical 1BR Apt,12150056,Airik,Manhattan,East Harlem,40.78662,-73.94109,Entire home/apt,100,1,4,2018-05-19,0.22,1,22 +22736194,The room,99542612,Rayshawn,Brooklyn,Flatbush,40.6322,-73.95969,Private room,50,1,0,,,1,0 +22737164,Designer’s Penthouse w/ private terrace,510931,Autumn,Manhattan,Financial District,40.70402,-74.01572,Private room,120,2,11,2019-05-30,0.66,2,58 +22744855,Water View near Flushing近法拉盛海景房,57195513,Sijia,Queens,College Point,40.79427,-73.84726,Entire home/apt,120,7,13,2018-04-15,0.73,1,0 +22745460,Cozy Room,32304780,Nicauris,Manhattan,Harlem,40.82389,-73.95014,Private room,48,30,5,2019-05-31,0.32,3,332 +22745841,Large Sunny West Village Room,4690758,Rachel,Manhattan,West Village,40.73761,-73.99758,Private room,78,1,0,,,1,0 +22746368,Bed no.2 in the living room,47735494,Iris,Queens,Rego Park,40.72666,-73.87004,Shared room,23,1,13,2018-04-02,0.77,4,0 +22746971,Light-filled 1 bdrm with 20ft ceilings,4342526,Michael,Brooklyn,Crown Heights,40.67985,-73.96277,Entire home/apt,175,5,4,2018-08-05,0.31,1,98 +22747209,McSimon's | Cozy Private Studio | Near NYC,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63762,-73.91004,Entire home/apt,95,3,4,2019-01-03,0.23,2,108 +22747377,Private cozy bedroom in bright and airy apartment.,13032188,Alison,Brooklyn,Bedford-Stuyvesant,40.68482,-73.93723,Private room,40,1,4,2018-10-06,0.25,1,84 +22748332,Luxury Home in the Heart of Manhattan,891403,Waj,Manhattan,Kips Bay,40.74322,-73.98005,Entire home/apt,339,3,19,2019-04-05,1.25,1,365 +22749701,"Sunny, Private and Spacious Brooklyn Apartment",12954861,Caleb,Brooklyn,Crown Heights,40.67605,-73.95791,Entire home/apt,100,2,20,2018-12-12,1.17,1,0 +22749967,"Cosy, Colorful, Great Bedford Stuyvesant Location",24467449,Laura,Brooklyn,Bedford-Stuyvesant,40.68567,-73.95146,Entire home/apt,79,1,8,2018-11-18,0.47,2,21 +22750161,JFK 3 Comfort 5 Mins from JFK Private Bedroom,156684502,Nalicia,Queens,Springfield Gardens,40.66298,-73.77,Private room,50,1,302,2019-07-06,16.81,3,26 +22751480,Spacious private guest room in Uptown Manhattan,168015754,Jeffer,Manhattan,Inwood,40.85925,-73.9297,Private room,40,3,33,2019-06-05,2.05,1,18 +22751525,THE LOFT,155223823,Michelle,Manhattan,Harlem,40.82881,-73.94309,Shared room,85,1,1,2018-10-07,0.11,1,90 +22751606,"REDESIGNED 2Bdrs in PARK SLOPE,BROOKLYN !",87786261,Sophia,Brooklyn,South Slope,40.66064,-73.98564,Entire home/apt,129,1,67,2019-06-26,3.97,5,255 +22751906,Metropolitan Brooklyn Oasis in Heart of Bed Stuy,167019780,Derick,Brooklyn,Bedford-Stuyvesant,40.68117,-73.93537,Entire home/apt,105,3,41,2019-06-19,2.46,1,211 +22752094,Spacious 1st fl-basement duplex 20min to Times Sq!,33995259,Brad,Manhattan,Upper East Side,40.77418,-73.95327,Entire home/apt,275,7,10,2018-12-30,0.66,1,0 +22753683,"Brand new, sunlit apartment next to Prospect Park",2493425,Simone,Brooklyn,Flatbush,40.65217,-73.95974,Private room,47,2,7,2018-03-31,0.40,1,0 +22753775,Artist Loft.Good Energy.Big Space With Fire Place!,168044240,Mari,Manhattan,NoHo,40.7275,-73.99168,Entire home/apt,265,2,42,2019-06-07,2.45,1,70 +22753912,Private Apartment for Discerning Travelers,16200683,Motonobu,Manhattan,Harlem,40.81246,-73.95161,Entire home/apt,155,4,18,2019-04-20,1.05,1,0 +22754004,"Peaceful, Sunlit Haven with Full sized Bed",41311743,Jean,Brooklyn,Crown Heights,40.67593,-73.94966,Private room,80,3,0,,,2,0 +22754110,Private Apartment in Chelsea,47844929,Ethan,Manhattan,Chelsea,40.73951,-73.99979,Entire home/apt,115,1,4,2018-02-25,0.24,1,0 +22754373,"Brooklynite Room, 10 mins to Williamsburg/LES/City",1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69251,-73.9301,Private room,35,1,5,2018-09-01,0.46,3,59 +22756078,Huge Private Garden Apt - Memory Foam Mattress,17105274,Matt,Brooklyn,Bushwick,40.69124,-73.90236,Private room,69,14,6,2019-06-27,0.35,2,319 +22759494,"Cozy Design House: Sunny, spacious, 3 bdr getaway",10782927,Joel,Brooklyn,Bushwick,40.7,-73.91714,Entire home/apt,250,1,45,2019-06-17,2.56,1,96 +22760853,Zen 1 bedroom near Central Park+MET+Guggenheim,10385345,Christopher,Manhattan,Upper East Side,40.77862,-73.94562,Entire home/apt,100,14,6,2019-06-12,1.94,1,0 +22761054,Bright spacious Studio overlooking Manhattan,168121995,Mayra,Manhattan,Midtown,40.75241,-73.98558,Entire home/apt,120,180,3,2019-01-31,0.42,1,299 +22762560,Heart of new york city modern apt,4441023,Skander,Manhattan,Hell's Kitchen,40.75497,-73.99788,Entire home/apt,450,2,2,2018-05-26,0.14,1,0 +22763812,Spacious Sun-filled Room in Brooklyn,327778,Emily,Brooklyn,Crown Heights,40.67508,-73.92269,Private room,36,3,8,2018-11-30,0.55,1,0 +22764944,1 ROOM IN 2 BEDROOM APT DOORMAN BLDG WITH ELEVATOR,119847900,Marie,Manhattan,Washington Heights,40.8485,-73.93509,Private room,52,1,46,2019-06-25,2.73,1,21 +22766375,Gramercy Apartment,34516512,Janan,Manhattan,Kips Bay,40.74252,-73.9798,Entire home/apt,175,2,0,,,1,0 +22766857,Howard Johnson JFK NYC,167995009,Danlin,Queens,Jamaica,40.66745,-73.78156,Private room,130,1,4,2018-08-07,0.27,1,365 +22767004,Room with high ceilings in South Slope,8125932,Stephanie,Brooklyn,Windsor Terrace,40.65892,-73.98386,Private room,45,2,26,2019-06-23,1.60,1,74 +22767598,Newly Renovated Studio Apartment,50605766,Paul,Manhattan,Tribeca,40.7118,-74.0083,Entire home/apt,150,30,1,2018-08-11,0.09,1,328 +22770313,4BR Queens Apartment -30 Mins from Manhattan!,103104686,Evolve,Queens,Springfield Gardens,40.66658,-73.76581,Entire home/apt,228,2,4,2018-07-22,0.26,2,0 +22770321,Spacious 2BR/2BTH/& Parking| Close to Everything!,168196322,Dalton,Brooklyn,East New York,40.66337,-73.88036,Entire home/apt,80,5,55,2019-06-24,3.31,1,139 +22770827,2 bedroom in a prewar building,19962052,Thikshan,Manhattan,Gramercy,40.73684,-73.98157,Entire home/apt,200,2,20,2019-05-07,1.17,3,20 +22770831,Marco's place,15534068,Marcus,Queens,Richmond Hill,40.70379,-73.8187,Private room,50,7,14,2019-06-24,1.03,1,93 +22771871,My Casa es su Casa!,168211014,Rosa,Bronx,Mott Haven,40.80906,-73.92031,Entire home/apt,150,1,9,2019-06-30,0.72,1,168 +22775292,HUGE Bushwick Room with TERRACE & Pool,413447,Noelle,Brooklyn,Bushwick,40.70262,-73.91679,Private room,65,2,4,2018-08-31,0.36,2,0 +22775694,XL BUSHWICK DREAM STUDIO BR IN DUPLEX BY TRAIN!,31665926,Jewel,Brooklyn,Bushwick,40.69062,-73.92079,Private room,115,3,0,,,1,0 +22775929,Charming & Bright East Village One Bedroom,57791424,April,Manhattan,East Village,40.72406,-73.98275,Entire home/apt,180,3,2,2018-07-08,0.15,1,0 +22777530,Private bedroom in Gorgeous Brooklyn Apartment!,160054295,Cesar,Brooklyn,Crown Heights,40.67582,-73.94054,Private room,47,1,5,2019-01-02,0.53,1,0 +22778341,"Bedroom 14x16ft, shared bathroom, 5 mins to subway",168279437,Lucky,Queens,Woodside,40.74211,-73.89067,Private room,40,1,7,2018-09-21,0.41,1,0 +22779542,Bergen Street by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.67862,-73.97065,Entire home/apt,1680,1,0,,,12,14 +22779726,East 72nd Townhouse by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper East Side,40.76824,-73.95989,Entire home/apt,7703,1,0,,,12,146 +22779746,East 7th Street III by (Hidden by Airbnb),156158778,Sally,Manhattan,East Village,40.72779,-73.98644,Entire home/apt,3518,1,0,,,12,215 +22780103,Park Avenue Mansion by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper East Side,40.78517,-73.9527,Entire home/apt,6419,1,0,,,12,45 +22780158,Park Place Townhouse by (Hidden by Airbnb),156158778,Sally,Brooklyn,Park Slope,40.67859,-73.97787,Entire home/apt,2626,1,0,,,12,31 +22780220,Prospect Place by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.67829,-73.96899,Entire home/apt,2103,1,0,,,12,20 +22781825,Free bottle of wine with stay!,168308087,Sarah,Manhattan,Chelsea,40.73686,-73.99171,Entire home/apt,75,1,0,,,1,0 +22785118,BED-STUY BEAUTY W/ Private Entry & Private Garden,126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68518,-73.94283,Entire home/apt,125,2,61,2019-06-30,3.47,3,250 +22786489,(AC) 4 ppl - 2 Rooms 1 private and 1 sharing bath,110965771,Wilson,Queens,Flushing,40.77253,-73.82467,Private room,140,2,14,2019-05-20,0.81,7,57 +22786958,"Luxurious, Modern Studio in Heart of Chelsea, NY",168353272,Maddi,Manhattan,Chelsea,40.74376,-73.99313,Entire home/apt,220,1,9,2019-06-09,1.79,1,13 +22789426,"Newly Refurbished MIDTOWN Condo, PRIVATE BATHROOM",38638199,Rolland,Manhattan,Midtown,40.75721,-73.96813,Private room,50,1,18,2018-07-30,1.01,1,0 +22789917,Private room in colorful Brooklyn neighborhood,44862267,Herman,Brooklyn,Williamsburg,40.70283,-73.93788,Private room,30,3,32,2019-06-08,1.85,1,36 +22790196,Stunning view in TriBeCa luxury 2 bedrooms,19981762,Chrystele,Manhattan,Battery Park City,40.7152,-74.01368,Entire home/apt,980,3,0,,,1,0 +22790700,Cozy and Newly Renovated Brooklyn Brownstone,83426350,Chris,Brooklyn,Bedford-Stuyvesant,40.68917,-73.94937,Private room,49,2,0,,,1,0 +22792652,"GREAT BEDROOM (IN 2 BRS APT) +EXCELLENT LOCATION!!",118390361,Tsvika,Manhattan,Upper East Side,40.78096,-73.95412,Private room,79,2,88,2019-07-06,5.69,1,107 +22792711,Bright and Beautiful Artists’ Haven,28913914,Maresa,Queens,Ridgewood,40.70228,-73.90097,Private room,90,1,4,2019-06-02,2.26,1,1 +22792746,3 Bedroom/4 Beds @ Ferry. Sleeps 7. Beautiful!,117492425,Dine,Staten Island,St. George,40.64581,-74.07949,Entire home/apt,150,4,0,,,6,0 +22793472,"Spacious Room in Prime Prospect Heights, Brooklyn",168416827,Tom,Brooklyn,Prospect Heights,40.67404,-73.96395,Private room,69,4,16,2019-06-21,0.95,1,300 +22793957,Cosy bedroom,6237087,Rusty,Brooklyn,Williamsburg,40.71214,-73.94423,Private room,50,2,15,2019-05-21,0.97,1,0 +22794168,Sunny park-view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94714,Private room,49,30,11,2019-01-17,0.79,4,257 +22794272,Gorgeous Daylight Photo Studio in Chelsea,3750764,Kevin,Manhattan,Chelsea,40.74881,-74.00473,Entire home/apt,1100,1,0,,,6,0 +22794719,Habitacion de renta para 2,168429942,Jennifer,Bronx,Norwood,40.88007,-73.87326,Private room,50,5,4,2019-06-17,0.26,2,324 +22795221,Gorgeous natural light in Chelsea photo studio,3750764,Kevin,Manhattan,Chelsea,40.75021,-74.00479,Entire home/apt,1500,1,0,,,6,0 +22796694,room 3 Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81376,-73.95354,Private room,69,2,4,2018-10-28,0.29,11,180 +22796888,room 2 Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81236,-73.95204,Private room,69,1,4,2018-08-23,0.29,11,365 +22797033,room A Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81196,-73.95221,Private room,65,1,3,2018-03-17,0.18,11,364 +22797190,Large 1 bedroom apartment East Village / Gramercy!,9374496,Svetlana,Manhattan,Gramercy,40.73307,-73.98347,Entire home/apt,150,3,16,2019-06-23,0.90,1,0 +22797978,SEXY Grand Central Modern CHIC BRAND NEW PARK AVE,168465501,Ian,Manhattan,Murray Hill,40.7504,-73.97759,Entire home/apt,200,30,3,2019-05-31,0.28,4,311 +22802275,The clove,168501789,Edward,Brooklyn,Prospect-Lefferts Gardens,40.65676,-73.94139,Entire home/apt,150,3,1,2018-06-14,0.08,1,363 +22803859,Modern 1-Bedroom in Heart of Brooklyn,7431741,Chelsea Holland,Brooklyn,Crown Heights,40.67336,-73.95383,Entire home/apt,110,2,2,2018-03-18,0.12,1,0 +22805947,Big studio in Pospect Park,162127741,Roger,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.96039,Entire home/apt,110,5,28,2019-06-30,1.71,1,347 +22809557,"East Brodway in Lower East Side, quiete and cute!",168565806,Paolo,Manhattan,Lower East Side,40.71527,-73.9898,Private room,69,8,6,2019-04-25,0.37,2,334 +22810710,Brooklyn Heights 1BR w/ Park View,22768255,Dixon,Brooklyn,Brooklyn Heights,40.6986,-73.99322,Entire home/apt,230,1,17,2018-09-17,0.97,1,0 +22811128,Crown Heights Hideaway,44278310,Charity,Brooklyn,Crown Heights,40.67488,-73.9388,Private room,50,1,0,,,1,0 +22811207,Nice & cozy room located in Manhattan apt!!,90064069,Miryan,Manhattan,Harlem,40.82742,-73.94878,Private room,60,1,103,2019-07-05,5.94,1,19 +22811519,Large Cozy Studio Apartment,167567675,Zdenka,Queens,Middle Village,40.71131,-73.87376,Entire home/apt,100,1,44,2019-06-23,4.33,1,264 +22812324,"Spacious 1 bed in the heart of Bed-Stuy, Brooklyn!",33822427,Christopher,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94873,Entire home/apt,92,2,42,2019-05-27,2.47,1,11 +22813265,master room,107183778,Coco,Queens,Flushing,40.76936,-73.83035,Private room,98,1,26,2019-06-29,1.48,1,215 +22813351,"Spacious, Bright Apartment in an Elevator Building",1597722,Eva,Brooklyn,Williamsburg,40.70858,-73.94791,Entire home/apt,145,7,5,2018-09-13,0.32,1,0 +22814281,cozy haven,168613171,Margarita,Brooklyn,Williamsburg,40.71286,-73.95648,Private room,175,3,0,,,1,365 +22814859,Cozy Private 1 Bedroom in a Shared Area,168619140,Terry,Brooklyn,Canarsie,40.63773,-73.91729,Private room,80,1,5,2019-02-16,0.53,2,0 +22815108,room B private manhattan room,164886138,Eliahu,Manhattan,Harlem,40.81337,-73.95206,Private room,69,1,1,2018-03-15,0.06,11,364 +22815191,Private Room by the Cloisters,35559100,Johanna,Manhattan,Inwood,40.86529,-73.92213,Private room,55,1,28,2019-06-24,2.54,1,175 +22815257,room C Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81351,-73.95186,Private room,65,1,0,,,11,364 +22815339,room D Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81339,-73.95176,Private room,65,1,1,2018-04-10,0.07,11,364 +22815783,Your cozy space in Brooklyn,21892425,Caroline,Brooklyn,Crown Heights,40.66884,-73.95957,Private room,40,1,120,2019-07-01,6.77,1,8 +22817544,A Tree Grows in Brooklyn,4035432,Lisa,Brooklyn,South Slope,40.66013,-73.98649,Private room,100,2,9,2018-08-03,0.59,1,0 +22818498,Prime Williamsburg Room on Bedford Ave L,168660624,Carly,Brooklyn,Williamsburg,40.72021,-73.96246,Private room,40,5,0,,,1,0 +22824469,Crown Heights Hideaway,168567714,Lennie & Lincia,Brooklyn,East Flatbush,40.65875,-73.93698,Private room,68,1,18,2019-06-26,1.06,1,152 +22825784,Lower Eastside Loft,27584983,Camille,Manhattan,Lower East Side,40.71263,-73.98106,Entire home/apt,250,3,9,2018-06-12,0.53,1,0 +22829069,Sunny spacious apartment in NY available today!,22610399,Dmitry,Brooklyn,Midwood,40.62306,-73.96965,Entire home/apt,66,18,0,,,1,0 +22829464,Marilyn private bedroom in Bushwick NEAR SUBWAYS,139490165,Melvin & Maya,Brooklyn,Bushwick,40.68425,-73.90708,Entire home/apt,66,3,0,,,3,0 +22830508,Williamsburg Garden Oasis,168159627,Holly,Brooklyn,Williamsburg,40.72017,-73.95977,Entire home/apt,600,2,26,2019-05-09,1.59,1,253 +22830789,Freshly NewPrivateROOM by the7train*15minToMidtown,38814918,Sam,Queens,Woodside,40.74615,-73.90216,Private room,60,1,123,2019-07-03,7.07,1,105 +22832352,*PRIME* Serenity & Love-Private Oasis (Bedford Av),168784638,Ralph & Jenny,Brooklyn,Williamsburg,40.71494,-73.96214,Entire home/apt,237,3,28,2019-06-03,2.09,1,0 +22833112,Cozy on 5th East Harlem,92524622,Annett,Manhattan,East Harlem,40.80106,-73.94503,Entire home/apt,100,5,35,2019-05-31,2.19,1,0 +22833434,"UWS Super Host, Spacious Room near Central Park,CU",17848380,Yi Qun,Manhattan,Upper West Side,40.79551,-73.97221,Private room,120,1,14,2018-12-08,0.81,3,360 +22833773,A Private and Cozy room near Columbia University,168804578,Mike,Manhattan,Morningside Heights,40.80895,-73.95894,Private room,60,1,23,2018-05-20,1.31,1,0 +22835316,Bedstuy Brownstone Luxury Apartments,45688186,Chinasokwu,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92815,Entire home/apt,105,1,72,2019-07-02,4.08,2,307 +22840839,Quiet Studio in the Heart of it All,98956556,Mark,Brooklyn,Boerum Hill,40.68531,-73.97948,Entire home/apt,150,2,19,2019-06-05,1.13,1,1 +22841280,RARE & Spacious Brooklyn Brownstone! Great Area!,26243777,Jami,Brooklyn,Bedford-Stuyvesant,40.68729,-73.92949,Entire home/apt,125,4,6,2019-04-19,0.36,2,0 +22842339,Cute sunny room in big Bushwick apartment,143460,Megan,Brooklyn,Bushwick,40.69819,-73.92194,Private room,45,1,3,2018-07-29,0.21,2,0 +22842989,"Incredible VIEW, Incredible PRICE",21283448,Matt,Brooklyn,Prospect-Lefferts Gardens,40.65888,-73.95959,Entire home/apt,90,4,37,2019-01-02,2.18,1,0 +22843226,"Cozy place in Astoria, 10min to Manhattan",168348550,Jewel,Queens,Long Island City,40.75533,-73.93261,Entire home/apt,175,2,45,2019-06-22,2.84,1,33 +22843793,Large Sunny Apartment in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69185,-73.92052,Entire home/apt,125,1,2,2018-07-07,0.13,2,0 +22845926,"Spacious, Manhattan Home has a private room!",74410137,Jordan,Manhattan,Harlem,40.80684,-73.94612,Private room,46,3,10,2018-12-20,0.57,1,0 +22846744,Sweet & Sunny Studio in Chinatown!,168946125,Chloe,Manhattan,Chinatown,40.71527,-73.99841,Entire home/apt,150,3,4,2018-04-17,0.23,1,0 +22847493,Modern Brooklyn Apartment w GYM & Rooftop Access,43207538,Lo,Brooklyn,Bushwick,40.69226,-73.92681,Private room,60,2,0,,,1,0 +22847975,New york,95014144,Petra,Queens,Astoria,40.76119,-73.91294,Private room,70,1,0,,,1,0 +22848359,Cozy Basement,14969786,Jeff,Bronx,Kingsbridge,40.86664,-73.89844,Private room,70,1,26,2019-07-07,5.23,1,0 +22848378,Prime Union Square Location Private,9630772,Nada,Manhattan,Gramercy,40.73609,-73.98566,Private room,149,4,10,2019-01-02,0.65,2,0 +22848599,Private Floor—Full Private Bath—3 Min to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67685,-73.91499,Private room,50,3,20,2019-06-22,1.15,6,178 +22849615,The best location - ASTORIA 46th st,46081317,Fabiana,Queens,Astoria,40.75639,-73.91619,Private room,50,25,5,2019-01-01,0.33,3,155 +22850413,1 bedroom Sublet in a 3BR/1Bath IN UNIT LAUNDRY!,114418657,Christopher,Manhattan,Upper West Side,40.80095,-73.96725,Private room,60,90,0,,,1,90 +22851242,Gorgeous Bedroom with breakfast by Central Park,17719708,Roman,Manhattan,East Harlem,40.80194,-73.94397,Private room,69,3,17,2019-07-06,1.27,1,77 +22852022,Sunny Green Apt (L&M trains) Bklyn/Queens border,26808662,Lauren,Queens,Ridgewood,40.69864,-73.90746,Private room,44,1,4,2018-12-09,0.34,1,0 +22852435,SUITE BKLYN - Private 1 Bedroom Apartment,169012324,Salisha,Brooklyn,East Flatbush,40.63767,-73.94011,Entire home/apt,80,90,23,2018-09-15,1.38,1,156 +22856025,Newly Renovated Guest Room with Private Bath,34635838,Madeline,Staten Island,Bull's Head,40.60295,-74.17117,Private room,25,1,34,2019-05-16,2.06,2,0 +22857268,Spectacular 4 Story Townhouse,25168124,Diana,Brooklyn,Greenpoint,40.72998,-73.95649,Entire home/apt,480,7,2,2019-04-26,0.13,1,23 +22857712,Private Bed in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72522,-73.95184,Private room,46,3,7,2019-06-08,0.40,5,285 +22858455,Beautiful Studio. PRIVATE patio.Rooftop.Best Area.,14117835,Ruth,Manhattan,East Village,40.721,-73.98186,Entire home/apt,150,2,3,2019-07-03,0.17,1,6 +22859702,Sunlit Bushwick Oasis w/ Private Bathroom!,87181550,H&E,Brooklyn,Bushwick,40.68993,-73.90499,Private room,55,1,36,2019-05-29,2.07,1,26 +22860511,Large Queen Room in Beautiful Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73531,-73.95631,Private room,58,3,9,2018-11-24,0.52,4,25 +22860844,Cozy Queen Room in Majestic Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.7348,-73.95701,Private room,58,3,11,2018-11-22,0.64,4,14 +22862288,Downtown 1BR with Stunning Views and Terrace,13997208,Eileen,Manhattan,Lower East Side,40.72073,-73.9929,Entire home/apt,280,3,0,,,1,87 +22862793,A Zen Oasis in the East Village,102841376,Viramo,Manhattan,East Village,40.72509,-73.98954,Private room,139,4,3,2018-07-31,0.17,1,0 +22862864,Nolita Nest,138706642,Kayla,Manhattan,Nolita,40.72011,-73.99535,Private room,125,1,1,2018-02-03,0.06,1,0 +22862877,ROYAL NEST FOR LE$$ ( New York City),8997485,Uri,Brooklyn,Midwood,40.62427,-73.96194,Entire home/apt,69,2,64,2019-07-04,3.95,2,225 +22862882,Apartamento muy acogedor en Manhattan,29574418,Nancy,Manhattan,Washington Heights,40.8521,-73.93958,Entire home/apt,110,7,19,2019-06-19,1.11,1,171 +22863062,Beautiful 2-br Apt in the Heart of Williamsburg,1678861,Efrat,Brooklyn,Greenpoint,40.72016,-73.95462,Entire home/apt,275,2,3,2018-09-03,0.22,1,0 +22863817,Private Room in Cozy Bushwick Apartment,25243100,Janelle,Brooklyn,Bushwick,40.69158,-73.91096,Private room,45,2,0,,,1,0 +22865818,"DREAM ROOM: gorgegous renovated 1bd, 1 bath",30786898,Erin,Brooklyn,Williamsburg,40.7195,-73.96084,Private room,125,3,1,2018-02-01,0.06,1,0 +22866619,Cozy and Luxurious Artist Retreat in Williamsburg,6513281,Pascal-Louis,Brooklyn,Williamsburg,40.71174,-73.94956,Entire home/apt,249,2,54,2019-07-06,3.17,2,154 +22867334,Astoria -Near Manhattan NYC and LGA airport.,169166409,Rafael,Queens,Astoria,40.7682,-73.92852,Shared room,32,2,28,2018-08-04,1.64,2,16 +22868760,BEAUTIFUL Modern LOFT - Rooftop terrace,3699016,Veronika,Brooklyn,Crown Heights,40.6774,-73.95133,Entire home/apt,140,2,54,2019-06-27,3.17,2,1 +22868847,Charming/Cozy Upper West Side Studio,12624093,Elle,Manhattan,Upper West Side,40.7972,-73.96156,Entire home/apt,86,2,3,2018-04-06,0.19,1,0 +22869025,Cozy bedroom in Brooklyn Brownstone,169201555,Tia,Brooklyn,Crown Heights,40.66989,-73.9436,Private room,50,3,1,2018-05-19,0.07,1,18 +22869229,Beautiful 2 bedroom apartment in NYC!,23254432,R.J.,Manhattan,Financial District,40.70351,-74.01266,Entire home/apt,165,2,27,2018-07-27,1.57,1,0 +22869573,Best location! Cozy East Village bohemian loft>>,17631246,Yamile,Manhattan,East Village,40.72997,-73.98772,Entire home/apt,150,2,20,2019-05-27,1.15,1,0 +22869995,Indo Sweet,169211917,Keon,Brooklyn,East Flatbush,40.64016,-73.94119,Private room,80,1,1,2018-05-06,0.07,1,179 +22871526,Comfy private room in trendy Clinton Hill Brooklyn,169226619,Sarah,Brooklyn,Clinton Hill,40.69083,-73.9655,Private room,58,2,38,2019-06-20,2.38,1,37 +22877744,Nice extra room in Bushwick,1164515,Chris,Brooklyn,Bushwick,40.70332,-73.92766,Private room,38,2,13,2019-05-31,0.93,2,141 +22878070,"Large 3 Bedroom Loft in Fort Greene, Brooklyn",26500272,Sam,Brooklyn,Fort Greene,40.6932,-73.97348,Entire home/apt,350,3,0,,,1,0 +22878090,HUGE studio apartment near ALL!,116754031,Rosemary,Brooklyn,East Flatbush,40.6329,-73.92784,Entire home/apt,80,1,53,2019-06-15,3.02,3,363 +22878715,Prospect Park Pad - 1 minute from the subway!,126407919,Sonia,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.95931,Entire home/apt,73,31,4,2019-05-20,0.31,1,5 +22878805,Clean and Classy Central Park Studio,425702,Kim & John,Manhattan,Upper East Side,40.76805,-73.96765,Entire home/apt,169,1,67,2019-06-26,3.81,1,186 +22879396,"Spacious, Sunny room in Cobble Hill !",12479495,Shalini,Brooklyn,Cobble Hill,40.68712,-73.9914,Private room,75,3,0,,,1,0 +22879903,Private room & bathroom in luxury building at LIC,22040625,Juanjo,Queens,Long Island City,40.75561,-73.93596,Private room,59,2,1,2018-02-07,0.06,1,0 +22881110,"Spacious & Quiet 1 Br Upper West Side, close to CP",120981856,Rgh,Manhattan,Upper West Side,40.78941,-73.97167,Entire home/apt,145,7,9,2019-06-02,0.55,1,80 +22881127,Dreamy Sunny Apt in Central Williamsburg,90685499,Meryl,Brooklyn,Williamsburg,40.71126,-73.96009,Entire home/apt,195,6,6,2019-03-10,0.40,2,14 +22882677,"Charming, Spacious Apartment on theUpper East Side",7759203,Kristen,Manhattan,Upper East Side,40.77219,-73.94763,Entire home/apt,199,5,6,2018-12-07,0.44,1,11 +22884749,Apt 6,159435936,Jonathan,Manhattan,Upper West Side,40.78694,-73.97218,Entire home/apt,100,31,1,2018-07-22,0.09,3,161 +22885310,MODERN AND BEAUTIFUL BROOKLYN,103745233,Luiz,Brooklyn,Crown Heights,40.67346,-73.93295,Private room,60,1,54,2019-03-31,3.07,1,0 +22886125,"Heart of Williamsburg, Sunny & Quiet Room",15377827,Karim,Brooklyn,Williamsburg,40.71899,-73.95858,Private room,45,7,5,2019-01-07,0.29,1,0 +22887406,XL Private Room in a Magnificent Penthouse NYC1,169382341,Tomás,Manhattan,East Village,40.72149,-73.98273,Private room,90,5,11,2019-06-22,0.69,2,5 +22896433,Private 1BR Apt in Sunnyside Close to Train & LGA,126184451,Brie,Queens,Sunnyside,40.74526,-73.91355,Entire home/apt,78,4,26,2019-05-26,1.53,1,50 +22898351,Charming Historic Apartment Near All Trains,11573876,Marissa,Manhattan,Financial District,40.70764,-74.00077,Private room,59,6,3,2018-04-02,0.17,1,0 +22898938,A Peaceful Haven in a Bustling City,16005407,Morgan,Queens,Ridgewood,40.70619,-73.9145,Private room,37,2,17,2019-03-15,1.01,1,0 +22899900,Private Room A In Prime Location,162427870,Anna,Manhattan,Midtown,40.74698,-73.98906,Private room,110,1,135,2019-06-15,7.67,3,311 +22901723,1 Bedroom in an amazing central Bed-Stuy apt!,89221067,Nola,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95005,Private room,35,5,0,,,1,0 +22904609,"Stunning 1BR In Flatiron, Subway steps away!",169534923,Carnitas,Manhattan,Kips Bay,40.74148,-73.98126,Entire home/apt,188,30,40,2019-06-23,2.35,1,146 +22904809,"Large, Sunny Bedroom in Bushwick/Bedstuy",24466431,Caleb,Brooklyn,Bushwick,40.68732,-73.9151,Private room,70,7,0,,,1,0 +22904958,2 Rooms Available. Heart of Brooklyn.Jacuzzi Bath!,26243777,Jami,Brooklyn,Bedford-Stuyvesant,40.68599,-73.92967,Private room,45,2,48,2019-06-19,2.81,2,12 +22904985,A WONDERFUL Place is Waiting 4U in Brooklyn !!!,169532780,Nix,Brooklyn,East New York,40.67342,-73.89325,Entire home/apt,169,3,22,2019-03-31,1.30,1,189 +22905091,Charming Family Style Brownstone Apartment,169546851,Katiuscia,Manhattan,Upper East Side,40.76365,-73.96683,Entire home/apt,275,2,63,2019-06-19,3.90,1,239 +22906559,Sunny City Escape,2076284,Rachel,Queens,Ridgewood,40.70701,-73.90949,Private room,50,2,0,,,1,0 +22907187,Charming apartment nestled in NYC's West Village,20268978,Daniel,Manhattan,West Village,40.73254,-74.00285,Entire home/apt,220,1,0,,,1,0 +22907591,Large 2-Bedroom East Village Apartment,16682397,Mackenzie,Manhattan,East Village,40.72753,-73.98412,Entire home/apt,190,2,5,2018-06-24,0.29,1,0 +22907753,Cozy Private Room in Ditmas Park Apt,16006049,Lanxing,Brooklyn,Flatbush,40.65168,-73.96457,Private room,35,2,0,,,1,0 +22908372,Spacious room in a renovated two-bedroom unit!,17334910,Siwoo,Manhattan,Washington Heights,40.83618,-73.94443,Private room,60,7,0,,,1,0 +22911635,"Three Bedroom Duplex apart. Clean, Modern Apt. 41",80479138,Gordon,Manhattan,Midtown,40.75946,-73.96498,Entire home/apt,189,30,3,2019-04-27,0.21,5,108 +22913600,Comfy Bedroom in East Williamsburg,111782745,Brian,Brooklyn,Bushwick,40.70364,-73.93146,Private room,45,2,23,2018-08-19,1.39,2,0 +22919133,Cloud Music Loft,169686676,Dan,Brooklyn,Crown Heights,40.67802,-73.9614,Private room,60,1,19,2019-06-23,1.17,1,362 +22919807,Carroll Gardens 3 bedroom.,169514692,Steven,Brooklyn,Carroll Gardens,40.67674,-73.99769,Entire home/apt,149,3,38,2019-06-18,2.38,1,138 +22921200,My Place,5165317,Eliran,Manhattan,Upper East Side,40.77233,-73.95321,Entire home/apt,170,2,0,,,1,0 +22923312,Luxury Studio - 1 Stop from NYC/Amazing Views,20413013,Ricardo,Queens,Long Island City,40.74893,-73.94688,Entire home/apt,199,2,50,2019-06-21,2.95,1,161 +22923314,Semiprivate room Forest Hills (female only),9110062,Claudia,Queens,Forest Hills,40.72454,-73.84103,Private room,72,1,5,2018-12-31,0.40,1,35 +22925367,Couch with breakfast included and a view!,37818581,Sofia,Manhattan,East Harlem,40.80228,-73.93903,Shared room,30,1,30,2018-06-01,1.72,4,0 +22926669,Williamsburg Private Room,104623425,Shauna,Brooklyn,Williamsburg,40.70542,-73.9411,Private room,60,3,1,2018-02-26,0.06,1,0 +22926871,Navidad en Manhattan oportunidad bajaron precios!,34679426,Isabel,Manhattan,Midtown,40.76482,-73.97965,Private room,300,1,2,2018-04-02,0.13,1,0 +22926900,House on a quiet dead-end street in hip Ridgewood,2256583,Kelli,Queens,Glendale,40.69507,-73.89599,Entire home/apt,195,5,1,2018-06-30,0.08,1,0 +22927598,"Prime UES, Centrally located, Quiet NYC Apartment",107198157,Ranjith,Manhattan,Upper East Side,40.77978,-73.95153,Entire home/apt,119,3,0,,,1,0 +22928216,Upper East Side Gem,169340719,Oscar,Manhattan,Upper East Side,40.77698,-73.95864,Entire home/apt,159,15,2,2018-04-15,0.11,1,0 +22928463,Great apartment in Bushwick available in Feb,35510045,Aaron,Brooklyn,Bushwick,40.705,-73.91933,Private room,27,14,0,,,1,0 +22928803,Private room in artists duplex,169795562,Ariel,Brooklyn,Bushwick,40.69088,-73.90535,Private room,50,6,0,,,1,0 +22929141,Gorgeous Park Slope Studio,36307813,Megan,Brooklyn,Park Slope,40.66669,-73.9807,Entire home/apt,150,14,0,,,1,0 +22929942,Spacious 1 Bed in Prime Williamsburg (big balcony),25339875,Rotem,Brooklyn,Greenpoint,40.72017,-73.95352,Entire home/apt,140,6,0,,,1,0 +22934602,Great Studio at the Time Square/71C,48146336,Irina,Manhattan,Hell's Kitchen,40.76274,-73.99321,Entire home/apt,120,30,3,2019-01-11,0.25,20,289 +22936827,Charming Williamsburg Bedroom,169721146,Dmitry,Brooklyn,Williamsburg,40.70856,-73.94281,Private room,65,2,74,2019-06-20,4.30,1,28 +22937095,"The Studio, lush cabin living in Brooklyn",2416281,Noemie,Brooklyn,Bedford-Stuyvesant,40.68898,-73.95835,Entire home/apt,98,3,45,2019-06-29,2.56,1,179 +22937305,Large Bedroom with newly renovated bathroom,34635838,Madeline,Staten Island,Bull's Head,40.60336,-74.17118,Private room,39,1,29,2019-05-20,1.81,2,0 +22937557,Bushwick's LARGEST Art-Filled Room in New Building,6726656,Yelle,Brooklyn,Bushwick,40.70285,-73.92563,Private room,50,6,3,2019-01-30,0.28,3,13 +22938753,Luxury Studio near Central Park - Times Square,4920221,UBliss,Manhattan,Midtown,40.76551,-73.98315,Entire home/apt,189,29,3,2018-10-27,0.27,1,358 +22940490,Modern Upper East Side Apartment,51591390,Natalia,Manhattan,Upper East Side,40.77251,-73.95113,Shared room,75,1,30,2019-06-22,2.92,1,8 +22940777,Park Slope 1BR 1st Floor Apt - Perfect for 1 - 2,136636824,Mo,Brooklyn,Park Slope,40.67418,-73.97918,Entire home/apt,100,2,27,2019-06-02,1.56,1,0 +22941772,COZY Bedroom in S. Williamsburg /BedStuy Brooklyn,1466154,Stephanie,Brooklyn,Bedford-Stuyvesant,40.6964,-73.94696,Private room,36,28,1,2018-03-03,0.06,1,297 +22942669,Cozy room for one in BedStuy,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.6865,-73.93199,Private room,25,30,6,2019-05-31,0.58,3,207 +22944203,"Cozy room in a charming, spacious apartment",87782960,Josh,Manhattan,Chelsea,40.74286,-73.99847,Private room,84,4,14,2019-06-30,0.82,1,13 +22944348,Centrally Located Comfy 2BR Midtown Apartment,169944714,Akon,Manhattan,Hell's Kitchen,40.76716,-73.98779,Entire home/apt,295,1,114,2019-06-23,6.68,1,125 +22945122,Private Room for short stay in a house.,44695225,Franncis,Queens,Queens Village,40.70843,-73.75018,Private room,38,7,0,,,1,0 +22946348,"Sunny Room near Prospect Park, 35mins to Manhattan",127545011,Kristiana,Brooklyn,East Flatbush,40.65222,-73.95016,Private room,35,1,5,2018-11-30,0.42,1,0 +22950209,Chic Studio,170008285,Fernando And Ana,Manhattan,Midtown,40.74779,-73.98734,Entire home/apt,220,3,36,2019-07-01,2.11,1,331 +22951326,Room in a luxury doorman building in Midtown,36786792,Evelina,Manhattan,Murray Hill,40.74658,-73.97782,Private room,70,2,3,2018-01-31,0.17,1,0 +22951923,Lovely Brooklyn Brownstone Garden Apartment,17478161,Anna,Brooklyn,Bedford-Stuyvesant,40.68876,-73.95265,Entire home/apt,150,3,43,2019-07-02,2.86,1,10 +22953136,Private Specious Sunny Brooklyn Loft,4383475,Keiichiro,Brooklyn,Williamsburg,40.70593,-73.92818,Entire home/apt,125,3,0,,,1,0 +22953160,Well-Lit Apartment in the East Village!,66111674,Charles,Manhattan,East Village,40.72545,-73.98279,Private room,75,1,15,2018-07-22,0.88,1,0 +22953869,Beautiful open layout studio near Prospect Park,98272,Martin,Brooklyn,Flatbush,40.652,-73.95805,Entire home/apt,110,3,32,2019-06-15,1.90,1,0 +22955340,Beautiful apartment with gorgeous views,39062378,Boris,Manhattan,Midtown,40.76372,-73.98355,Shared room,60,2,0,,,1,0 +22955342,"Bright Williamsburg room, 1-stop from Manhattan",25533198,Emma,Brooklyn,Williamsburg,40.71998,-73.96141,Private room,53,4,1,2018-01-29,0.06,1,0 +22956809,Two Rooms-Prime Manhattan Location steps to subway,170075022,Kevin,Manhattan,East Harlem,40.79846,-73.94239,Private room,89,1,63,2019-06-22,3.74,1,12 +22957090,One Room in Dreamy Bushwick Apartment,27070336,Andrea,Brooklyn,Bushwick,40.68588,-73.9144,Private room,75,2,0,,,1,0 +22958516,Center of it all Bushwick apartment,170095185,Aaron,Brooklyn,Bushwick,40.70733,-73.92028,Private room,29,2,3,2018-02-21,0.17,1,0 +22958680,Cosy one-bedroom nest in the heart of Williamsburg,170092307,Raphael & Sydonie,Brooklyn,Williamsburg,40.7141,-73.96194,Entire home/apt,128,5,56,2019-06-12,3.32,1,18 +22959643,Luxury Harlem Apartment,6329693,Nicole,Manhattan,East Harlem,40.80189,-73.94483,Entire home/apt,130,3,3,2019-06-20,0.21,1,128 +22961758,Amazing huge sunny room in the historical building,80331757,Ivan,Brooklyn,Sheepshead Bay,40.60407,-73.95302,Private room,50,2,13,2019-03-10,1.38,1,71 +22961764,Room in central Manhattan,163905917,Matilda,Manhattan,Hell's Kitchen,40.75715,-73.99759,Private room,110,2,13,2018-12-22,0.74,3,23 +22965846,"solo pueden reservar mujeres, es casa de familia.",84562428,Liliana,Queens,Forest Hills,40.73677,-73.84784,Private room,45,5,3,2018-09-13,0.20,2,355 +22968206,1br in spacious 2 br in the heart of Williamsburg,22748648,Hugo,Brooklyn,Williamsburg,40.71246,-73.96133,Private room,90,5,1,2018-02-21,0.06,1,0 +22969068,Pre War Brooklyn Row House Dream Backyard & deck,52525871,Alia,Brooklyn,Clinton Hill,40.69375,-73.96697,Entire home/apt,125,5,0,,,1,0 +22969403,East Village Sunny 2 Bedroom Apartment in New York,52949531,Leah,Manhattan,East Village,40.72196,-73.98103,Entire home/apt,170,3,0,,,1,0 +22969873,A Room in a 3BR Bushwick Apartment,50949024,Bill,Brooklyn,Bushwick,40.70299,-73.92693,Private room,60,2,0,,,1,0 +22970376,Sunny room in Sunnyside New York,24600315,Diana,Queens,Sunnyside,40.74355,-73.92557,Private room,89,1,0,,,1,0 +22971074,"Stunning, Duplex Apartment in Beautiful Bed-Stuy",19074249,Danika & Cary,Brooklyn,Bedford-Stuyvesant,40.67839,-73.92532,Entire home/apt,150,2,59,2019-06-08,3.55,1,231 +22971238,"Suite 18 - Private Room, Close to Coney Island",99296570,Daisy,Brooklyn,Brighton Beach,40.58012,-73.95896,Private room,35,1,77,2019-06-18,4.67,5,187 +22971252,Art Deco Studio,52225868,Deroll,Brooklyn,Crown Heights,40.66987,-73.93433,Private room,32,3,0,,,1,0 +22971913,.Melinda's Place,170265686,Arlene,Brooklyn,Crown Heights,40.66615,-73.95426,Entire home/apt,69,3,85,2019-06-18,5.00,1,193 +22972328,"The best safest area, 15mins to midtown Manhattan",110966607,Rika,Queens,Astoria,40.76097,-73.92191,Private room,47,3,24,2018-11-05,1.44,1,0 +22972357,1,158456362,Nick,Manhattan,Washington Heights,40.83755,-73.94224,Private room,50,1,3,2018-04-02,0.19,1,0 +22972832,"Main st APT w PRIVATE Bath, bedroom, living room.",161899037,Tony,Queens,Flushing,40.75794,-73.83234,Entire home/apt,150,2,54,2019-06-24,3.10,7,70 +22973043,"Coolest neighborhood, cutest apartment.",74873565,China,Manhattan,Two Bridges,40.7116,-73.99568,Entire home/apt,175,2,8,2019-05-06,0.46,1,0 +22975958,"Charming, huge bedroom in Greenpoint.",9250609,Michele,Brooklyn,Greenpoint,40.72475,-73.94889,Private room,80,1,0,,,1,0 +22977021,Spacious Room4 Rent Near Hospital in Staten Island,46723570,Kartikeya,Staten Island,South Beach,40.5895,-74.09663,Shared room,20,4,1,2018-02-02,0.06,1,0 +22978028,Spacious garden-level 1BR in Bed Stuy brownstone,10268766,Shirley,Brooklyn,Bedford-Stuyvesant,40.68156,-73.93722,Entire home/apt,140,4,19,2019-06-20,1.32,1,76 +22978388,Sunny room in Brooklyn (20 min from Manhattan),42949529,Suri,Brooklyn,Sunset Park,40.65907,-73.99849,Private room,150,1,0,,,1,90 +22978756,The Grove - A Luxury One Bedroom Apartment,169541552,Amy,Manhattan,Chelsea,40.74144,-73.99984,Entire home/apt,299,2,0,,,1,2 +22979825,"Private large bedroom in Prime Williamsburg, BK",10826049,Faye,Brooklyn,Greenpoint,40.7195,-73.95256,Private room,75,4,0,,,1,0 +22980068,"Entire Apt Spacious & Chic-Near JFK, Subway & Park",22042097,Pebel,Queens,Woodhaven,40.69665,-73.85114,Entire home/apt,50,4,1,2018-03-03,0.06,1,0 +22980907,"Cute, Bright Private Attic Space in Brooklyn Home",29241227,Ken,Brooklyn,Kensington,40.64579,-73.97383,Entire home/apt,57,3,94,2019-07-02,5.40,2,69 +22981126,Comfortable inn,170387293,Esther,Brooklyn,Crown Heights,40.6654,-73.93653,Private room,75,1,0,,,1,0 +22983227,Spacious Modern Apartment in Prospect Park South,170413197,Rebecca,Brooklyn,Flatbush,40.64786,-73.96125,Entire home/apt,100,2,1,2018-02-25,0.06,1,0 +22983671,Cozy Midtown Studio,20754560,Christine,Manhattan,Murray Hill,40.75066,-73.9804,Entire home/apt,190,1,5,2018-05-16,0.29,1,0 +22983888,Cute and cozy 2 bedroom apartment in Harlem,170424392,Alison,Manhattan,Harlem,40.82101,-73.94065,Entire home/apt,130,4,3,2018-04-03,0.18,1,0 +22984370,Gorgeous skyline condo in trendy Bushwick,1300215,Lisa,Brooklyn,Bushwick,40.6996,-73.91492,Private room,65,3,12,2018-08-27,0.89,1,0 +22984650,"Private room in Queens Village, NY. Near JFK.",143212135,David,Queens,St. Albans,40.70419,-73.75116,Private room,25,3,60,2019-06-09,3.61,1,350 +22985168,Delightful condo,71733378,Abe,Queens,Astoria,40.76475,-73.9289,Entire home/apt,175,1,21,2019-03-28,1.20,1,85 +22985354,Luxury Meets Classic Brownstone w/ Outdoor Space!,4181378,Lauren,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93559,Entire home/apt,450,2,27,2019-06-23,1.79,2,364 +22985419,Exquisite English Tudor with a touch of class,170445076,Sean,Queens,Queens Village,40.72249,-73.75486,Entire home/apt,200,2,58,2019-07-07,3.60,1,152 +22985840,"Bright, beautiful bedroom 5 mins from LGA, 15toNYC",170446723,Pamela,Queens,East Elmhurst,40.75735,-73.87845,Private room,55,2,11,2019-06-18,0.71,2,179 +22986139,2br 2ba Huge pristine Nolita loft,7465567,Nick,Manhattan,Little Italy,40.71889,-73.99686,Entire home/apt,400,2,2,2019-03-10,0.19,2,3 +22986248,Sunny Spacious Two Bedroom - Park Slope,170457264,Yaroslav,Brooklyn,Park Slope,40.67031,-73.98603,Entire home/apt,200,2,6,2019-02-18,0.36,1,0 +22986303,Cozy 2 Bedroom Astoria Apt,170458252,Vasilios,Queens,Ditmars Steinway,40.77799,-73.90807,Entire home/apt,140,1,67,2019-06-05,4.14,1,145 +22986519,Bedroom on the lively Lower East Side,154262349,Brooke,Manhattan,Lower East Side,40.71884,-73.98354,Private room,160,4,23,2019-06-12,2.29,1,102 +22987331,Cozy and convenient spot!,39591103,Michaela,Queens,Astoria,40.76853,-73.9172,Private room,100,1,13,2019-06-01,0.91,1,172 +22987769,Privet room.10min from CentralPark.5 min to Times,13878635,Muslum,Manhattan,Hell's Kitchen,40.76546,-73.99253,Private room,90,2,12,2018-10-07,0.71,2,338 +22994960,Studio Apartment in Murray Hill,96317547,Adam,Manhattan,Murray Hill,40.74827,-73.97851,Private room,120,3,0,,,1,0 +22997160,Chill Vibes in Beautiful Fort Greene,170567335,Robert,Brooklyn,Fort Greene,40.69054,-73.97892,Private room,95,2,5,2019-01-25,0.74,1,0 +22997928,Amazing 1Br Apt in luxury building in williamsburg,170574337,Barthelemy,Brooklyn,Williamsburg,40.71691,-73.96302,Entire home/apt,200,3,19,2019-05-20,1.10,1,4 +22998663,Sunny Roomy 2 Bedroom (Private Bathroom + Balcony),96810536,Chandtisse,Brooklyn,Gowanus,40.66621,-73.99256,Private room,169,1,2,2018-11-24,0.16,3,115 +23000751,Little Neck Queens bedroom w/private bathwash/dry,170603631,Andre,Queens,Douglaston,40.74807,-73.73674,Private room,65,2,29,2019-03-14,1.68,1,240 +23001249,Bright Meatpacking Studio,29074867,Jasmine,Manhattan,Chelsea,40.74142,-74.0025,Entire home/apt,150,2,4,2018-06-10,0.25,1,0 +23001343,Beautiful Private Bedroom Near Prospect Park,170608951,Mariette,Brooklyn,Flatbush,40.65369,-73.95565,Private room,65,3,22,2019-06-10,1.40,1,89 +23001611,East Village Apartment,129782365,Hallie,Manhattan,East Village,40.72968,-73.98073,Entire home/apt,350,2,0,,,1,0 +23002312,Park Ave Apt in the Heart of NYC,42677381,Anna,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,250,3,9,2019-01-03,0.57,1,0 +23002371,"Own Living room, Bathroom & W/D in the EV!",21186353,Benjamin,Manhattan,East Village,40.73123,-73.98655,Private room,90,14,0,,,1,0 +23002904,Upper East Brownstone Duplex 4Beds &Private Garden,61849126,Laura,Manhattan,Upper East Side,40.77602,-73.95062,Entire home/apt,350,3,15,2018-11-25,0.90,1,5 +23003201,South slope Brooklyn 1private bedroom!,170629692,Chris,Brooklyn,Sunset Park,40.66182,-73.99387,Private room,65,1,0,,,1,0 +23004287,"Brooklyn, KingsHwy . 1 room for 1 person",166204258,Olga,Brooklyn,Sheepshead Bay,40.6092,-73.9572,Private room,27,1,1,2018-02-05,0.06,1,0 +23004845,Oasis bedroom for solo travelers,241559,Demi,Brooklyn,Crown Heights,40.67697,-73.96317,Entire home/apt,115,3,37,2019-06-21,2.29,1,13 +23005618,Sunny Spacious Private Bed and Bath in Bushwick,170657264,Renata,Brooklyn,Bushwick,40.70289,-73.92594,Private room,74,3,37,2019-06-02,2.27,1,46 +23005685,Luxury Tribeca,51536620,Rafaela,Manhattan,Tribeca,40.71412,-74.00984,Private room,110,3,1,2018-02-28,0.06,1,0 +23006296,East Village penthouse with city views.,1339185,Alfred,Manhattan,East Village,40.72196,-73.98083,Entire home/apt,148,4,20,2019-06-18,1.39,1,121 +23006397,"Spacious, private East Village studio",14328715,Asya,Manhattan,East Village,40.72957,-73.98724,Entire home/apt,150,2,6,2018-03-04,0.35,1,0 +23006437,Quaint Queens Master Bedroom,89391604,Kara,Queens,Ridgewood,40.70612,-73.90729,Private room,35,7,0,,,1,0 +23006591,Suite 18 - Private Room w/ private bath,99296570,Daisy,Brooklyn,Brighton Beach,40.58198,-73.9577,Private room,35,1,67,2019-06-11,3.83,5,186 +23010967,Crown Heights Classic,78913808,John,Brooklyn,Crown Heights,40.67074,-73.94896,Entire home/apt,125,3,63,2019-07-05,4.36,1,165 +23012588,Welcome!,170724620,Arthur,Manhattan,Harlem,40.82089,-73.95018,Private room,65,1,50,2019-05-24,3.69,1,1 +23014432,Beautiful Bedstuy Brownstone Duplex,45688186,Chinasokwu,Brooklyn,Bedford-Stuyvesant,40.68804,-73.93013,Entire home/apt,150,1,14,2019-04-23,0.82,2,307 +23016550,"Long term, bright studio Union Sq",2317952,Anastacia,Manhattan,Gramercy,40.73573,-73.98755,Entire home/apt,150,30,5,2018-12-24,0.30,1,53 +23017828,Furnished One Bedroom Apartment,1466422,Gila,Brooklyn,Crown Heights,40.67432,-73.9391,Entire home/apt,60,133,12,2018-12-17,0.71,2,0 +23018280,Cozy studio with a fireplace close to the train,10836962,Katya,Bronx,Pelham Bay,40.85407,-73.83264,Entire home/apt,69,3,69,2019-06-19,4.21,1,21 +23019675,Huge 1 Bedroom Apartment,30704814,Jacob,Manhattan,Inwood,40.86407,-73.92822,Entire home/apt,70,14,2,2019-05-26,0.19,1,0 +23019746,Exposed brick Loft apartment,168988812,Giulia,Queens,Ridgewood,40.70068,-73.91008,Entire home/apt,118,6,2,2019-01-02,0.13,1,0 +23020466,Private Harlem Studio w/ Jacuzzi Great Location!,8663057,Alli,Manhattan,East Harlem,40.80375,-73.93599,Entire home/apt,115,3,67,2019-06-28,3.98,2,132 +23021186,"Private Room, Very Cozy. Close to JFK. Garden!",133227147,Megan,Brooklyn,Cypress Hills,40.6784,-73.8924,Private room,100,1,43,2019-06-23,2.65,1,365 +23021271,20 mins to Times Square! Vibrant NYC neighborhood,9388460,Chris&Suly,Queens,Elmhurst,40.74711,-73.88188,Entire home/apt,125,3,56,2019-06-17,3.76,1,107 +23021573,XL Full Floor Loft*3BR*Lower East Side*SUPERHOST*,170805641,Oliver,Manhattan,East Village,40.72169,-73.98279,Entire home/apt,399,4,43,2019-06-13,2.55,1,161 +23023423,Kew Gardens,74805133,Edward,Queens,Kew Gardens,40.707,-73.82684,Private room,70,1,0,,,1,0 +23023728,"Cozy, Full 1 Bedroom Apartment Near Central Park",12417778,Turner,Manhattan,Upper East Side,40.77395,-73.95493,Entire home/apt,100,3,16,2019-06-26,0.95,1,20 +23024065,Brooklyn Artists Loft - 1 Bedroom,105758386,Julia,Brooklyn,Williamsburg,40.70581,-73.93454,Entire home/apt,100,2,2,2018-03-21,0.12,1,0 +23024273,LOFT#1 - Broadway Av. Amazing Location! SoHo,108029974,Agustina,Manhattan,Greenwich Village,40.72839,-73.99437,Entire home/apt,495,6,12,2019-06-14,0.84,4,52 +23024656,Harlem cozy nights,43495748,Catherine,Manhattan,Harlem,40.81767,-73.93771,Entire home/apt,120,4,21,2019-07-01,1.25,1,128 +23025738,Spacious Private Room in Williamsburg!,14097466,Arjun,Brooklyn,Williamsburg,40.70849,-73.94535,Private room,140,3,1,2018-10-02,0.11,1,0 +23026309,15 mins to Manhattan & LGA - Large Private Bedroom,16928139,Mehdi,Queens,Sunnyside,40.74208,-73.92414,Private room,50,2,51,2019-07-01,3.17,1,36 +23026346,"A Nice 3 Bedroom Apt in Pelham Bay, Bronx, NY.",170857849,Ziaul,Bronx,Pelham Bay,40.84934,-73.83345,Entire home/apt,119,3,28,2019-06-12,1.68,1,351 +23027004,Cozy Private 3 Bedroom Garden Apt in Williamsburg,162432541,Emily & Joseph,Brooklyn,Williamsburg,40.7117,-73.9624,Entire home/apt,200,3,40,2019-05-27,2.30,2,279 +23027784,Stylish Upper East Side Brownstone Studio,56283770,Lia,Manhattan,Upper East Side,40.76327,-73.96766,Entire home/apt,145,30,1,2019-06-17,1,6,122 +23031618,15 min train ride to Times Sq and US OPEN,101602599,M,Queens,Woodside,40.7434,-73.90588,Entire home/apt,50,1,95,2019-06-24,5.63,2,0 +23034152,Brand New Amazing 1 Bedroom Best Location,168465501,Ian,Manhattan,Upper West Side,40.7841,-73.97468,Entire home/apt,125,30,5,2019-05-17,0.34,4,220 +23035441,Upper West Side Exclusive 1 bedroom,170935045,Gal,Manhattan,Upper West Side,40.78904,-73.97172,Entire home/apt,117,5,1,2018-02-23,0.06,1,0 +23035859,Newly renovated 3 Bed 2.5 bath Full amenities,113805886,Yaacov,Manhattan,Upper East Side,40.77847,-73.95162,Entire home/apt,350,31,1,2019-01-25,0.18,33,327 +23035874,CHIC & LARGE private bedroom in fancy neighborhood,13126043,Carolle,Manhattan,Midtown,40.74422,-73.98473,Private room,145,2,29,2019-05-15,1.67,2,74 +23035891,"Beautiful room in Williamsburg, close to Manhattan",37222237,Samy Nemir,Brooklyn,Williamsburg,40.70649,-73.94317,Private room,35,6,0,,,1,0 +23035911,Spacious Two Bedroom Apt near Columbia University,4100176,Sehee,Manhattan,Morningside Heights,40.80557,-73.96441,Entire home/apt,125,5,1,2018-03-14,0.06,1,0 +23036845,Renovated with view 3 bed 2 bath big Balcony,113805886,Yaacov,Manhattan,Upper East Side,40.77742,-73.95149,Entire home/apt,300,31,1,2019-01-03,0.16,33,248 +23037039,Bedstuy Bedstay,25001097,Keila,Brooklyn,Bedford-Stuyvesant,40.68209,-73.92015,Entire home/apt,50,5,9,2018-12-20,0.52,1,0 +23037820,Cozy 1 Bed one block from train and supermarket,113805886,Yaacov,Manhattan,Upper East Side,40.77748,-73.9514,Entire home/apt,135,31,1,2018-05-21,0.07,33,338 +23038073,Renovated 2 Bed 2Bath high floor Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77915,-73.95041,Entire home/apt,225,31,0,,,33,326 +23038520,Large 1 bdrm with Modern finishes - Pelham Gardens,7381386,Kayla,Bronx,Pelham Gardens,40.85929,-73.84229,Entire home/apt,60,3,41,2019-07-04,2.44,1,23 +23039069,Cozy 2 Bed 2 bath Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77721,-73.94997,Entire home/apt,300,31,5,2019-01-02,0.31,33,326 +23039363,Cozy 2 Bed 2 Bath Fully Renovated POOl in Building,113805886,Yaacov,Manhattan,Upper East Side,40.77712,-73.95176,Entire home/apt,250,31,0,,,33,345 +23040052,Cozy 2 bed 2 bath Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77717,-73.95131,Entire home/apt,300,31,8,2018-12-27,0.49,33,342 +23040115,Eclectic Enclave - 3 blks to G - private space,22246427,Sharon,Brooklyn,Bedford-Stuyvesant,40.68799,-73.95202,Entire home/apt,110,2,58,2019-06-23,3.39,1,62 +23041312,Sky Boasts Exquisite Studio,40811074,Dening,Manhattan,Hell's Kitchen,40.76208,-73.99932,Entire home/apt,525,3,0,,,1,0 +23042836,Williamsburg Studio Apartment,171001581,Joshua,Brooklyn,Williamsburg,40.71181,-73.96383,Entire home/apt,104,1,27,2019-06-23,1.67,1,84 +23044937,"MINI COZY Room Close to NYU Langone H/Metro N,R",105640471,Jason,Brooklyn,Sunset Park,40.638,-74.01619,Private room,39,1,14,2019-05-28,1.00,8,127 +23045850,Private room in Brooklyn with laundry,157977326,Ilyas,Queens,Maspeth,40.71415,-73.91426,Private room,45,1,55,2019-06-24,3.26,2,27 +23046924,Quiet City Getaway!,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67191,-73.92669,Entire home/apt,178,2,19,2019-06-13,1.13,4,257 +23047572,Big apartment can make your vacation to be amazing,87399457,Elior,Brooklyn,Crown Heights,40.66896,-73.95347,Entire home/apt,220,4,4,2019-05-08,0.24,1,0 +23052180,Large Room in Trendy Bushwick - 3,9864136,Anthony,Brooklyn,Bushwick,40.68579,-73.91416,Private room,45,1,0,,,26,249 +23052964,Huge Brooklyn Room in Bushwick - 2,9864136,Anthony,Brooklyn,Bushwick,40.68651,-73.91384,Private room,55,1,4,2018-03-16,0.23,26,179 +23053294,"Quaint, artistic 2 bedroom Brooklyn apartment",7051379,Susan,Brooklyn,Downtown Brooklyn,40.69727,-73.98552,Entire home/apt,97,31,8,2019-05-23,0.59,2,138 +23053597,Private room with visit to queens # 6,158540605,Sonia,Queens,Glendale,40.69946,-73.89079,Private room,35,1,89,2019-06-29,5.31,6,256 +23053827,Mi hermoso hogar a 4 bloques del AirPort LGA,171107511,Paola,Queens,East Elmhurst,40.76393,-73.86444,Private room,80,2,1,2018-10-07,0.11,1,219 +23054077,"Sunny spacious apt in Greenpoint, Brooklyn",1655982,Jessica,Brooklyn,Greenpoint,40.72904,-73.95433,Entire home/apt,180,45,0,,,1,326 +23054329,Sunny And Spacious! Treat Yourself In Bushwick!,16963843,Martina,Brooklyn,Bushwick,40.69842,-73.92378,Private room,50,5,14,2018-08-30,0.88,2,0 +23054586,Comfortable Room in LIC,170294800,Kynneth,Queens,Long Island City,40.75305,-73.93487,Private room,68,1,23,2019-06-17,1.33,1,298 +23054855,Modern sun-filled 1 bed oasis- Graham Ave L train,7216788,Pari,Brooklyn,Williamsburg,40.71563,-73.9398,Entire home/apt,140,2,18,2019-06-23,1.07,1,36 +23055816,Sunny and comfortable Upper West Side Manhattan,169704873,Michele,Manhattan,Morningside Heights,40.81064,-73.95734,Private room,150,14,6,2018-06-22,0.41,1,0 +23056637,A Cozy Artsy Apartment in the heart of Sunnyside,80651652,Vasko,Queens,Sunnyside,40.7437,-73.91983,Entire home/apt,100,3,0,,,1,0 +23058456,Private room near Pratt Institute,171154086,Hank,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95989,Private room,42,1,0,,,1,0 +23058686,Sunny South Williamsburg Studio,4445657,Max,Brooklyn,Williamsburg,40.71218,-73.96711,Entire home/apt,75,7,2,2018-04-28,0.13,1,0 +23059062,Sunny Basement Apt. in House w/ Garden Near Ferry,6966161,Michal,Staten Island,St. George,40.64399,-74.08526,Entire home/apt,77,7,0,,,1,0 +23059611,"Modern, hip, light drenched apartment.",12502207,Micah,Brooklyn,Vinegar Hill,40.70312,-73.98416,Entire home/apt,130,30,3,2019-01-05,0.24,1,339 +23060192,Peaceful Home in Brooklyn Close to Manhattan,19930911,Mayara & Gaspar,Brooklyn,Crown Heights,40.67218,-73.94087,Entire home/apt,93,1,77,2019-06-22,4.49,1,55 +23060372,Beautiful Studio Apartment in Prime UWS Manhattan!,12554853,Isabel,Manhattan,Upper West Side,40.79653,-73.96887,Entire home/apt,75,1,32,2018-11-25,1.87,1,0 +23061070,Suite Luxe - Luxury & Modern Comfort,49831860,Robert,Brooklyn,Canarsie,40.64129,-73.91316,Entire home/apt,130,3,141,2019-06-17,8.21,2,114 +23061112,Comfort in Brooklyn,31315978,Randall,Brooklyn,Brownsville,40.67087,-73.91293,Entire home/apt,65,2,23,2019-06-29,2.88,1,20 +23062475,"Spacious, Bright Studio Apt in East Village",8108429,Anna,Manhattan,East Village,40.72998,-73.9839,Entire home/apt,99,2,15,2019-06-23,0.89,1,0 +23062725,"Brick Brownstone Apartment, Perfect for Families",179246,Francis & Daniele,Brooklyn,Bedford-Stuyvesant,40.67958,-73.90858,Entire home/apt,119,3,54,2019-07-01,3.58,2,240 +23062969,Sunlit Harlem Haven,9937471,Gabryelle,Manhattan,Harlem,40.81618,-73.94355,Private room,55,2,11,2018-12-17,1.15,1,0 +23063403,Boutique stay in Church turned Apt. near BK museum,22375303,Elle,Brooklyn,Bedford-Stuyvesant,40.67966,-73.93045,Private room,65,1,70,2019-06-24,4.90,2,291 +23064260,Bushwick Mid-Century Artist Enclave,19849721,Joshua,Brooklyn,Bushwick,40.70124,-73.91988,Entire home/apt,250,1,0,,,1,0 +23070522,The Home away from home!!!!,60373268,Bless M,Brooklyn,Bedford-Stuyvesant,40.6849,-73.91811,Entire home/apt,140,3,30,2019-06-18,1.88,1,122 +23071191,Simple and clean WaHi living room!,92192182,Alyssa,Manhattan,Washington Heights,40.84697,-73.93776,Shared room,29,1,13,2018-06-18,0.75,2,0 +23071774,Sunny Private Room in Trendy Williamsburg,93263,Vivian,Brooklyn,Williamsburg,40.71043,-73.95575,Private room,94,2,52,2019-07-03,3.26,1,126 +23072308,Charming WaHi apartment!,92192182,Alyssa,Manhattan,Washington Heights,40.84861,-73.93716,Entire home/apt,72,2,11,2018-07-08,0.64,2,0 +23072371,Large bed room share bathroom,65171233,Cha,Queens,Elmhurst,40.74252,-73.8899,Private room,31,3,21,2019-07-01,1.27,2,111 +23072631,Best 2BR apartment you will get close to Columbia,76428733,Thomas,Manhattan,Morningside Heights,40.8045,-73.96383,Entire home/apt,150,6,1,2018-03-15,0.06,1,0 +23072853,My Williamsburg Place,87830046,Charles,Brooklyn,Williamsburg,40.71276,-73.95897,Entire home/apt,250,3,41,2019-06-20,2.94,1,235 +23074259,"Wonderful 15 minutes Barclay Center,25 Manhattan",94214493,Dadrine,Brooklyn,East Flatbush,40.65625,-73.91901,Private room,80,7,2,2018-11-01,0.13,9,58 +23074722,15 minutes Barclay Center 25 Manhattan,94214493,Dadrine,Brooklyn,East Flatbush,40.65501,-73.91886,Private room,80,5,2,2018-12-21,0.14,9,89 +23075778,Gem in the East Village,2786998,Akshay,Manhattan,East Village,40.72629,-73.98417,Entire home/apt,150,2,20,2019-06-16,1.19,1,2 +23076745,Convenient! Private Room 10 mins to JFK Airport,131476068,Leslie,Queens,Richmond Hill,40.68728,-73.82875,Private room,75,2,1,2018-02-09,0.06,2,48 +23076968,Minimalist's Hut,64206316,Emon,Queens,Flushing,40.76649,-73.82991,Private room,49,7,28,2018-11-23,1.68,1,0 +23077040,Private room in Upper West Side,171339086,Jeta,Manhattan,Upper West Side,40.80026,-73.96425,Private room,85,2,25,2018-10-22,1.48,1,0 +23077115,Large Room;(Manhattan30mins) JFK10mins)(LGA15mins),158625100,Vic,Queens,Richmond Hill,40.6873,-73.82737,Private room,83,1,9,2019-05-20,0.55,2,48 +23077687,"Bright, spacious, and inviting home away from home",2616981,Lauren,Manhattan,Upper East Side,40.76354,-73.96189,Entire home/apt,135,4,3,2018-09-22,0.19,1,60 +23078073,Cozy West Village one-bedroom in perfect location!,171352111,Emily,Manhattan,West Village,40.73718,-73.99851,Entire home/apt,100,1,1,2018-02-06,0.06,1,0 +23078172,Affordable & Convenient,43352661,Charles,Manhattan,Washington Heights,40.84502,-73.94078,Shared room,25,1,51,2019-05-26,2.99,3,365 +23078446,Stylish 1 Bedroom Apt. for 4 p/ NYC - Murray Hill!,86771798,Daia,Manhattan,Murray Hill,40.7457,-73.97672,Entire home/apt,329,4,12,2019-04-21,0.91,2,59 +23080356,Private room in a cozy Hamilton Heights apartment,161846641,Shayna,Manhattan,Harlem,40.83051,-73.94537,Private room,48,1,13,2018-10-18,0.77,1,0 +23084751,Cozy Entire Apt Midtown East,67375976,Mymy,Manhattan,Midtown,40.75544,-73.96901,Entire home/apt,180,4,0,,,1,0 +23085504,Jazzy cool sunshine,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.6718,-73.92678,Private room,55,2,34,2019-05-29,1.99,4,341 +23086483,Stylish 1 Bedroom Apt. for 4 p/ NYC - Murray Hill!,86771798,Daia,Manhattan,Murray Hill,40.74742,-73.9766,Entire home/apt,365,5,14,2019-06-07,0.86,2,50 +23087403,"Spacious, light 1br apartment in the LES",5788047,Andrea,Manhattan,Lower East Side,40.71269,-73.98713,Entire home/apt,150,2,10,2019-03-25,0.58,1,6 +23088623,Stylish Modern Garden Bedroom w/ensuite bathroom,47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9331,Private room,99,3,16,2019-06-18,1.24,3,360 +23088777,Stylish Modern Master Bedroom w/ensuite bathroom,47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68975,-73.93327,Private room,109,3,19,2019-06-26,1.37,3,360 +23088947,Ideal Williamsburg #3 - Lorimer L train!,46660053,Ploy,Brooklyn,Williamsburg,40.71371,-73.95189,Private room,40,4,5,2019-05-28,0.38,3,61 +23089441,2 BEDS IN 1BEDROOM & 1 BATH OASIS W/ BACKYARD,12872352,Jada,Manhattan,Midtown,40.75881,-73.96295,Entire home/apt,325,1,0,,,3,267 +23090298,Spacious apartment across from train station,171483814,Algin,Brooklyn,Flatbush,40.65331,-73.96271,Private room,58,2,2,2018-04-09,0.12,1,0 +23090632,LIC 1 Bedroom in a pet-friendly apartment.,171488589,Hisham,Queens,Long Island City,40.74281,-73.95044,Private room,76,1,13,2018-06-20,0.86,1,0 +23090887,"Family Apartment. Close to city. 3 bed, 2 Bath",116365995,Dan,Queens,Woodside,40.74652,-73.90738,Entire home/apt,289,4,10,2019-07-06,0.91,2,271 +23091135,Large 500 square ft Studio in Woodside Queens,5117805,David,Queens,Woodside,40.74279,-73.90419,Entire home/apt,65,2,14,2018-11-10,0.84,1,0 +23091139,Luxurious Private West Village TownHome,66230837,Jason,Manhattan,West Village,40.73143,-74.00338,Entire home/apt,850,3,27,2019-02-25,1.57,1,344 +23091275,Modern Studio Apartment,49258234,Sophie,Manhattan,Midtown,40.7654,-73.98039,Entire home/apt,160,2,3,2018-03-11,0.17,1,0 +23091460,Lovely Central Park duplex w/ large outdoor patio,104425922,Matthew,Manhattan,Upper East Side,40.7773,-73.95652,Entire home/apt,225,2,12,2019-06-17,0.71,1,363 +23092112,Great place! Great location! Great price!,142144113,Samantha,Brooklyn,Flatbush,40.65175,-73.96408,Entire home/apt,90,30,4,2018-12-18,0.24,1,342 +23092889,Cute private bedroom and bathroom - Bushwick,2213846,Marti,Brooklyn,Bushwick,40.70114,-73.91705,Private room,70,2,29,2019-06-25,1.71,1,16 +23093320,Your Bed Room in Bed-Stuy,171522181,Brandon,Brooklyn,Bedford-Stuyvesant,40.69552,-73.94835,Private room,45,7,11,2018-03-25,0.64,1,0 +23094550,1BR Apartment in the Heart of the East Village,7269534,Declan,Manhattan,East Village,40.72939,-73.98553,Entire home/apt,100,4,5,2018-06-20,0.30,1,0 +23096661,1BR Apartment on UWS!,490608,Sush,Manhattan,Morningside Heights,40.80878,-73.95777,Entire home/apt,90,10,5,2019-05-04,0.31,1,0 +23097802,Piece Of Heaven,142447586,Winnie & Andy,Bronx,Williamsbridge,40.87906,-73.85987,Private room,35,3,0,,,4,0 +23100862,Heaven On Earth,142447586,Winnie & Andy,Bronx,Williamsbridge,40.88049,-73.8613,Private room,41,3,1,2018-02-11,0.06,4,0 +23100931,"Modern, Sunny 3 Bdrm 2 Ba w/ Huge Backyard",6309691,Lisa,Brooklyn,Greenpoint,40.73384,-73.95782,Entire home/apt,149,4,2,2018-08-14,0.16,2,0 +23102299,Cloud 9,142447586,Winnie & Andy,Bronx,Williamsbridge,40.8805,-73.86178,Private room,45,1,1,2018-02-21,0.06,4,0 +23103116,New York Bedroom for rent in East Harlem,171629811,Arthur,Manhattan,East Harlem,40.79661,-73.93832,Private room,40,5,3,2018-03-20,0.18,1,0 +23104347,*Rare Spacious Apartment Near JFK/Subway for 2019*,21784559,Ken,Queens,Woodhaven,40.69017,-73.86683,Entire home/apt,90,4,64,2019-07-03,3.71,1,106 +23105516,"NO EXTRA FEES, NO MIN. NITES: 1.5 blocks to train",82889379,Shera,Bronx,Woodlawn,40.8987,-73.86389,Private room,29,1,81,2019-06-09,4.93,4,192 +23105764,"2 Br Apt Steps to LGA, Near Citified JFK,Manhattan",156948703,Asad,Queens,East Elmhurst,40.77074,-73.87342,Entire home/apt,257,1,95,2019-07-01,6.51,6,341 +23106013,NEW Luxury 1BR Oasis - Most Desirable NYC Location,9318816,Brittany,Manhattan,NoHo,40.72651,-73.99196,Entire home/apt,295,2,15,2019-06-02,0.94,1,51 +23106106,Homey townhouse apartment,32718658,Mia,Manhattan,East Harlem,40.80017,-73.93812,Private room,70,1,0,,,1,0 +23106220,1min from the station K size bed 20min toManhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95541,Private room,70,1,53,2019-06-24,3.29,7,264 +23106361,★Spacious Private Room★ MANHATTAN + Close to Park!,171660157,Del,Manhattan,Harlem,40.82748,-73.95083,Private room,65,4,10,2019-01-15,0.60,1,2 +23106431,Bright Room with Qsize bed 20min to dt Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.6896,-73.95653,Private room,62,1,27,2019-06-25,1.69,7,248 +23106518,A COZY NYC STUDIO APARTMENT 20 minutes to Union Sq,171668854,Marko,Queens,Ridgewood,40.71191,-73.90631,Entire home/apt,60,4,2,2019-03-10,0.19,1,0 +23106900,Cozy Getaway in NYC,72491205,Wanessa,Manhattan,Upper West Side,40.80022,-73.96301,Private room,95,2,0,,,1,0 +23107316,"Unique & Spacious, W Village. 1-Bdrm. NEW LISTING!",171678641,Max,Manhattan,West Village,40.73716,-73.99764,Entire home/apt,225,7,10,2019-04-29,0.78,1,279 +23108435,A very spacious Zen place to vacay.,146172048,Jennyfer,Queens,Woodside,40.75524,-73.90701,Private room,49,4,5,2019-01-03,0.36,1,87 +23108652,"Big, Private, Hip 2BR in Williamsburg w/Terrace",7460552,Redford,Brooklyn,Williamsburg,40.71147,-73.96,Entire home/apt,325,2,7,2019-01-11,0.61,1,96 +23108877,A cozy room in a newly renovated UWS apartment,47023469,Olga,Manhattan,Upper West Side,40.79728,-73.97348,Private room,100,1,28,2019-06-08,1.66,3,270 +23109325,Cheerful & spacious 1-bedroom by Columbia Medical.,86575539,Sharik,Manhattan,Washington Heights,40.84693,-73.94205,Entire home/apt,67,15,1,2018-02-09,0.06,1,1 +23109329,Sunny & Quiet room in Clinton Hill,1577803,Ji,Brooklyn,Clinton Hill,40.6897,-73.96535,Private room,90,2,19,2019-06-11,1.23,1,149 +23110037,Nice Room for ONE (1) Person,130972997,Wilson,Brooklyn,Crown Heights,40.67544,-73.94023,Private room,45,2,21,2019-06-22,1.35,2,339 +23110266,SoHo LOFT #2 Broadway Av. - Amazing Location!,108029974,Agustina,Manhattan,NoHo,40.72943,-73.99277,Entire home/apt,495,4,7,2019-03-27,0.46,4,63 +23111211,Bright room located in the middle of Manhattan!,30672354,Malin,Manhattan,Flatiron District,40.74107,-73.988,Private room,112,4,14,2019-04-10,0.90,2,1 +23111561,CHIC STUDIO 4 the MINIMALISTIC SOUL,30486909,Alanna,Manhattan,Chinatown,40.71608,-73.99081,Entire home/apt,160,4,32,2019-01-02,1.96,1,0 +23116453,Perfect Place to Stay,121379512,Maria,Bronx,Longwood,40.8273,-73.88906,Private room,37,1,7,2018-10-20,0.41,2,0 +23118522,"Unique 1 bedroom apt. in Gowanus, Brooklyn",8959179,Kevin,Brooklyn,Gowanus,40.6786,-73.98705,Entire home/apt,104,4,10,2018-12-29,0.73,1,98 +23120062,Quiet & Convenient in heart of midtown,3324577,Jessica,Manhattan,Midtown,40.7592,-73.97017,Private room,95,2,56,2019-06-30,3.33,1,54 +23120142,Deluxe Bedroom - 30 minutes from Midtown!,133602911,Sanyika,Bronx,Mount Hope,40.84882,-73.90263,Private room,80,3,20,2019-06-14,1.18,2,36 +23120678,Cozy Uptown Apartment!,4757826,Cy,Manhattan,East Harlem,40.79037,-73.9458,Entire home/apt,115,2,3,2018-08-13,0.22,1,1 +23122597,"Brand new two-bedroom apt. in Bensonhurst, Bklyn!",79305630,Elvira,Brooklyn,Gravesend,40.59868,-73.99202,Entire home/apt,148,4,26,2019-07-05,1.68,2,92 +23122670,Bright and Spacious One Bedroom near Prospect Park,10918472,Penina,Brooklyn,Prospect Heights,40.6752,-73.96385,Entire home/apt,75,2,6,2018-07-14,0.37,1,0 +23123189,Sunny One Bedroom in Beautiful Brownstone,101067646,Jennifer,Brooklyn,Clinton Hill,40.68206,-73.95998,Entire home/apt,173,2,3,2018-12-29,0.26,1,0 +23124338,New York Guests House,171830071,Fatima,Bronx,Fordham,40.85662,-73.89797,Private room,65,2,5,2018-03-26,0.30,1,0 +23126553,"★Private, Modern Apartment | Convenient Location★",171854639,Madeleine,Queens,Ditmars Steinway,40.77418,-73.91889,Entire home/apt,75,3,13,2019-01-03,0.78,1,1 +23126790,Spacious 3-Bedroom Duplex in Fort Greene,1975628,Dean,Brooklyn,Fort Greene,40.69126,-73.97186,Entire home/apt,250,2,0,,,1,0 +23126850,Beautiful Cozy Fully Furnished - 1 BD Midtown West,12873109,Sid,Manhattan,Midtown,40.75287,-73.99066,Entire home/apt,160,2,0,,,1,0 +23127656,Private Two Bedroom Apartment in Greenwich Village,171858908,Andrée,Manhattan,Greenwich Village,40.72836,-73.99961,Entire home/apt,300,2,13,2018-06-04,0.77,2,0 +23127964,Bright Soho 2 Bedroom Apartment,5849048,Nima + Kat,Manhattan,SoHo,40.72605,-74.00072,Entire home/apt,169,1,1,2019-01-26,0.18,1,180 +23128067,Creative Living in Bushwick! Ready to Inspire!,22313730,Brizzo,Brooklyn,Bushwick,40.70425,-73.92624,Private room,60,4,10,2018-10-31,0.58,1,88 +23128247,Charming Kensington Apt.,140293912,Awilda,Brooklyn,Kensington,40.64593,-73.97745,Entire home/apt,84,3,38,2019-03-18,2.36,3,0 +23128460,Intimate Studio in the UES,5669820,Charles,Manhattan,Upper East Side,40.77029,-73.95526,Entire home/apt,115,4,26,2019-06-26,1.66,1,16 +23129639,••RARE Modern Apt For 2019 Next to Subway & JFK••,161349813,Yola,Queens,Woodhaven,40.69113,-73.86778,Entire home/apt,106,4,57,2019-06-25,3.73,2,113 +23129919,Fits like a glove,171888683,Michal,Brooklyn,Park Slope,40.67226,-73.97251,Entire home/apt,100,10,11,2019-03-31,0.67,1,0 +23130144,Private bedroom in Astoria,11696537,Allison,Queens,Astoria,40.7675,-73.90911,Private room,100,1,3,2018-12-30,0.41,1,0 +23131011,Catlandia!,127586030,Daniella,Brooklyn,Prospect-Lefferts Gardens,40.66322,-73.95142,Private room,50,2,58,2019-07-06,3.44,1,52 +23131033,"Full 1-BR Apartment - Sunny, Cozy, and Eclectic!",137292249,Sara And Greg,Brooklyn,Flatbush,40.64086,-73.9547,Entire home/apt,55,4,8,2018-11-08,0.53,1,0 +23131155,Newly Renovated Mins from JFK & LGA,45735959,Rose,Queens,St. Albans,40.70828,-73.75276,Entire home/apt,120,3,59,2019-05-26,3.49,1,52 +23131354,Two Bedroom Apartment in trendy Park Slope area.,109719378,Tatyana,Brooklyn,Sunset Park,40.66186,-73.99505,Entire home/apt,120,1,59,2019-06-27,3.69,1,22 +23131463,Sunny Chelsea Studio + Balcony (Central Location),15901859,Jonah,Manhattan,Chelsea,40.74216,-73.99673,Entire home/apt,127,5,30,2019-06-24,2.00,1,32 +23131496,Beautiful stylish studio in Midtown,99683151,Christina,Manhattan,Kips Bay,40.73799,-73.97821,Entire home/apt,160,3,36,2019-06-23,2.14,3,266 +23136074,So nice and close to everything.,171939378,Jose,Manhattan,Hell's Kitchen,40.75584,-73.99559,Entire home/apt,200,3,2,2018-05-13,0.14,2,0 +23139166,Perfectly located Williamsburg 1.5 bedroom Apt,4316650,Oren,Brooklyn,Williamsburg,40.71662,-73.94514,Entire home/apt,117,2,14,2019-05-27,0.82,1,0 +23139647,Spacious 2 level home for Groups sleeps upto 12,11305944,Yahaira,Bronx,Allerton,40.86578,-73.86534,Entire home/apt,250,2,22,2019-06-19,1.44,5,361 +23142074,Spacious & bright 2BR/2BA (available for August),818585,Julian,Brooklyn,Flatbush,40.64726,-73.95937,Entire home/apt,76,14,1,2018-02-08,0.06,1,41 +23142952,Beautiful room in renovated Manhattan apartment,6501039,Geraldo,Manhattan,Washington Heights,40.83416,-73.94375,Private room,30,5,2,2018-07-07,0.14,1,0 +23143173,"Evergreen apartment, furnished with natural light",94263025,Derek,Brooklyn,Bushwick,40.68822,-73.9124,Private room,40,1,10,2018-07-04,0.58,2,0 +23144059,Large Room in a 2Bedrooms Perfect UWS Experience,7990635,Madi,Manhattan,Upper West Side,40.79298,-73.97249,Private room,92,1,0,,,1,0 +23145289,Brooklyn Loft in South Williamsburg,11951436,Maxwell,Brooklyn,Williamsburg,40.71264,-73.96461,Entire home/apt,175,5,0,,,1,0 +23147603,Cozy apartment with a huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.72421,-73.94074,Entire home/apt,200,1,0,,,2,0 +23148112,Spacious Studio on Staten Island,7875272,Mary,Staten Island,Port Richmond,40.63012,-74.13512,Entire home/apt,50,31,0,,,3,0 +23149641,Prime location 2 BR APT/ Midtown West/ Manhattan,171939378,Jose,Manhattan,Hell's Kitchen,40.75546,-73.99582,Entire home/apt,180,3,31,2019-04-28,1.98,2,4 +23150033,Spacious zen apartment. Close to King's hwy stop.,172067924,Ekaterina,Brooklyn,Midwood,40.61182,-73.95436,Entire home/apt,100,3,0,,,1,0 +23151066,"Charming studio in the heart of UES, Manhattan!",5640467,Surani,Manhattan,Upper East Side,40.77579,-73.95628,Entire home/apt,117,5,1,2018-07-21,0.08,1,0 +23154138,Cozy and conveniently located,3202437,Rosella,Manhattan,Lower East Side,40.7216,-73.98959,Entire home/apt,130,10,4,2019-06-23,0.38,1,35 +23156950,NYCTH Suit Room,172130647,Jirapong,Queens,Jackson Heights,40.74879,-73.88342,Private room,59,1,24,2019-05-30,1.43,1,5 +23158057,Chic/Industrial 1 Bedroom Near Barclay's Center,4023251,Emily,Brooklyn,Gowanus,40.68293,-73.98849,Entire home/apt,94,3,5,2018-12-29,0.30,1,0 +23158770,Private 2 Bedrooms - Subway Across Street,172145021,Quaizar,Queens,Woodhaven,40.69564,-73.85052,Entire home/apt,63,3,0,,,1,0 +23160162,Large bright loft in Williamsburg,71840935,Cara,Brooklyn,Williamsburg,40.70569,-73.95301,Private room,55,2,5,2018-09-07,0.30,1,0 +23161182,"Huge One Bedroom, 20 min from Center of Manhattan!",6577580,Steve,Queens,Forest Hills,40.7255,-73.84755,Entire home/apt,69,2,1,2018-02-15,0.06,1,0 +23163660,Tony's Room 1 near La Guardia Airport,172189639,Camilo & Yesenia,Queens,East Elmhurst,40.76444,-73.86907,Private room,80,1,73,2019-07-06,4.57,2,30 +23164537,Shared studio apartment,172186369,Elisheva,Bronx,Morris Heights,40.84718,-73.91378,Shared room,20,1,9,2018-05-21,0.53,1,0 +23166224,Cozy Respite in the HeART of Bushwick,842091,Megwyn,Brooklyn,Bushwick,40.69874,-73.92496,Private room,40,3,51,2019-07-01,3.00,2,51 +23166555,Upper East Side Triplex Penthouse Rooftop,162153626,S,Manhattan,Upper East Side,40.77394,-73.95252,Entire home/apt,127,1,1,2018-07-06,0.08,1,0 +23166556,Private Quiet Room in Chelsea Brownstone Apartment,625092,Anne-Lise,Manhattan,Chelsea,40.75115,-73.99787,Private room,63,7,4,2019-03-09,0.39,1,31 +23166697,Cozy bedroom in Clinton Hill,21485411,Brittany,Brooklyn,Bedford-Stuyvesant,40.68706,-73.95637,Private room,95,1,22,2019-06-30,1.33,1,36 +23166922,Cathedral View,7411846,Matt,Manhattan,Upper West Side,40.80115,-73.96282,Private room,75,1,1,2018-02-11,0.06,1,88 +23168904,纽约法拉盛民宿客栈,172240638,Betty,Queens,Flushing,40.7681,-73.82265,Private room,50,2,1,2018-03-09,0.06,1,0 +23169146,Artist apartment in LIC,51260506,Grace,Queens,Long Island City,40.74786,-73.94628,Shared room,1250,1,1,2018-02-19,0.06,1,173 +23170204,Private room in Manhattan,86527607,Artur,Manhattan,Kips Bay,40.74405,-73.97596,Private room,80,1,0,,,1,0 +23170592,Quiet and spacious room for 2,40317143,Zsofia,Queens,Maspeth,40.71937,-73.90442,Private room,40,1,2,2018-12-30,0.13,2,169 +23171129,Renovated 1BR Apt - close to Grand Central & UN,21689645,Fazli,Manhattan,Murray Hill,40.74668,-73.97309,Entire home/apt,145,10,2,2019-02-01,0.13,1,0 +23171917,Gorgeous Studio in Little Italy Nolita!!!,10457196,Richard,Manhattan,Little Italy,40.71967,-73.99583,Entire home/apt,135,31,5,2019-01-17,0.37,11,122 +23172490,2 full beds-Spacious beautiful room near Manhattan,117108525,Sen,Queens,Sunnyside,40.74759,-73.91446,Private room,44,1,78,2019-06-28,4.62,2,116 +23177964,"Large Room in Hip Lefferts Garden 1,100 SQ Ft Apt.",56276728,Stefanie,Brooklyn,Flatbush,40.6455,-73.95975,Private room,70,14,5,2018-07-06,0.30,1,0 +23179415,Spacious Pre-War Apt - 1 Block Off Prospect Park,169851445,Mary,Brooklyn,Flatbush,40.654,-73.96209,Private room,47,1,0,,,1,0 +23183557,Private Room in Large Apartment With Yard,40511631,Joey,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93753,Private room,42,2,89,2019-07-01,5.54,2,4 +23184420,Functional & fresh Manhattan male room longterm II,170263842,Sultan,Manhattan,Lower East Side,40.71172,-73.98864,Shared room,33,100,2,2018-12-20,0.18,4,320 +23184752,Large Sunny Clinton Hill/Bedstuy bedroom,172366460,Aaron,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95883,Private room,70,1,18,2019-06-15,1.07,1,362 +23184876,"Bright, Family-Friendly Brooklyn Townhouse",7807118,Garrett,Brooklyn,Gowanus,40.6844,-73.98669,Entire home/apt,350,3,0,,,1,0 +23185690,"Manhattan, West Side, Hudson River View",155618754,Monica,Manhattan,Washington Heights,40.84857,-73.94193,Private room,85,3,0,,,1,0 +23188573,Queen size Bedroom in Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84777,-73.94178,Private room,90,1,0,,,3,0 +23188871,Spacious Apt in Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84643,-73.94187,Private room,120,1,0,,,3,0 +23189933,High rise studio,38672377,Christian,Manhattan,Harlem,40.82015,-73.95747,Entire home/apt,100,6,5,2018-05-28,0.31,1,0 +23190292,Gorgeous Studio Apartment in the heart of Manhatan,13900556,Iryna,Manhattan,Upper East Side,40.77226,-73.95631,Entire home/apt,145,5,5,2019-04-09,0.30,1,0 +23191484,"Warm, Cozy Room in our Classic Brooklyn Brownstone",4249379,Rachel,Brooklyn,Bedford-Stuyvesant,40.68261,-73.95187,Private room,75,2,17,2019-07-01,1.07,1,115 +23195752,"WOW factor! Duplex 3br,2bath. Central Pk, Columbia",5162192,Amy,Manhattan,Upper West Side,40.79788,-73.96235,Entire home/apt,250,30,2,2018-12-10,0.19,12,310 +23199948,Empire State Studio,172506981,Marlene,Manhattan,Midtown,40.74827,-73.98828,Entire home/apt,150,3,27,2019-07-06,1.79,1,320 +23200628,Cozy & Comfortable Modern Apartment,3792602,Andre,Manhattan,Harlem,40.8298,-73.93984,Private room,65,2,25,2019-05-21,1.50,1,30 +23201228,Greenwich Village Gem at Washington Sq Park!,23859317,Jeffery,Manhattan,Greenwich Village,40.73091,-74.00002,Entire home/apt,159,1,77,2019-06-22,5.30,1,50 +23203149,Big beautiful bedroom in huge Bushwick apartment,143460,Megan,Brooklyn,Bushwick,40.69839,-73.92044,Private room,65,2,8,2019-06-23,0.52,2,8 +23203929,La Quinta Central Park West Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77722,-73.97834,Private room,159,1,0,,,4,269 +23204924,Quiet Brooklyn Artist Apartment With A View,594634,Alexandra,Brooklyn,Clinton Hill,40.68651,-73.96604,Entire home/apt,200,5,1,2019-06-19,1,1,0 +23207975,Ridge wood apartment w/ rooftop deck,47070613,Max,Queens,Ridgewood,40.70663,-73.89709,Private room,60,1,44,2019-06-22,2.57,1,84 +23213107,NYCTH Master Room,172640229,Jirapong,Queens,Woodside,40.74301,-73.8954,Private room,46,1,2,2019-04-22,0.16,1,96 +23214720,Beautiful Studio in UWS,154895874,George,Manhattan,Upper West Side,40.79408,-73.97392,Entire home/apt,150,5,0,,,1,13 +23214729,"Sunny + Cozy Studio in Prospect Heights, Brooklyn",13133943,Anthony,Brooklyn,Prospect Heights,40.67616,-73.96466,Entire home/apt,69,3,7,2018-11-04,0.41,1,0 +23216187,Spacious and sunny room in Crown Heights,8260418,Matthew,Brooklyn,Crown Heights,40.67671,-73.94938,Private room,26,2,0,,,1,0 +23216381,Spacious Greenpoint Living,9804931,Byron,Brooklyn,Greenpoint,40.72742,-73.95066,Entire home/apt,190,2,5,2019-06-16,0.32,2,5 +23216832,"Heart of Williamsburg, Private Bedroom in 2BR Apt",2589436,Sarah,Brooklyn,Williamsburg,40.71619,-73.95641,Private room,50,14,0,,,2,0 +23217530,Spacious private bedroom in duplex with backyard,4521174,Caroline,Brooklyn,Crown Heights,40.67184,-73.94041,Private room,65,7,0,,,3,59 +23218152,Spacious Greenpoint Living - Private Room,9804931,Byron,Brooklyn,Greenpoint,40.72672,-73.9517,Private room,80,2,0,,,2,0 +23218579,Greenpoint Loft with True Brooklyn Flavor,5350903,Kyle,Brooklyn,Greenpoint,40.72612,-73.95691,Entire home/apt,125,2,48,2019-07-02,3.00,1,48 +23219361,Cozy Studio near South Beach :-),59966705,Arek,Staten Island,Arrochar,40.59078,-74.07504,Entire home/apt,71,2,30,2019-06-14,1.80,1,306 +23219659,Luxury Garden Escape in Trendy Williamsburg 1 BR,172713193,Olivia,Brooklyn,Williamsburg,40.70757,-73.95387,Entire home/apt,150,4,82,2019-07-02,4.86,1,331 +23221495,Private apartment w/parking,172736191,Gabriela,Queens,Briarwood,40.7149,-73.80916,Entire home/apt,80,5,51,2019-06-22,3.23,1,57 +23221581,Cozy Renovated 2 Bedroom Apartment Heart of Brklyn,41398005,Mirco,Brooklyn,Sunset Park,40.64279,-74.00515,Entire home/apt,70,30,10,2019-06-29,0.62,3,183 +23222091,Lovely 1 bedroom in East Harlem,33438428,Eni,Manhattan,East Harlem,40.80086,-73.93979,Entire home/apt,80,5,15,2018-10-21,0.93,1,46 +23222310,Awesome cozy bedroom in hip area,30940393,Sarah,Brooklyn,Bushwick,40.68901,-73.90768,Private room,43,2,39,2018-12-27,2.31,2,0 +23222680,Private 1-bedroom Apartment in the Lombardy,100829279,Ian,Manhattan,Midtown,40.76163,-73.97113,Entire home/apt,210,1,108,2019-06-20,6.40,3,216 +23223028,"Luxury Apartment, best of Brooklyn, mins from MH",7760617,Nick,Brooklyn,Downtown Brooklyn,40.69472,-73.98337,Entire home/apt,133,3,2,2018-06-13,0.15,1,0 +23229152,Private 1 bedroom - Great for Travel Nurses,131806850,Idara,Brooklyn,Kensington,40.64109,-73.97503,Private room,50,1,1,2018-03-14,0.06,1,0 +23230395,Enormous and illuminated on top floor (long term),84529,Alek,Queens,Elmhurst,40.74524,-73.8876,Entire home/apt,100,60,2,2019-01-02,0.17,1,132 +23232087,A Peaceful Home in Manhattan,127740507,Kathleen,Manhattan,Harlem,40.83118,-73.94325,Private room,47,2,83,2019-07-03,4.97,2,48 +23233925,"8 mins to Central Park,3 mins to Subway,Guest Room",14320524,Andrea,Manhattan,Upper East Side,40.77603,-73.95573,Private room,99,3,35,2019-07-07,2.22,1,162 +23235101,2 Bedroom Garden Apartment in Brooklyn,172885803,Jeannie & Everett,Brooklyn,Bedford-Stuyvesant,40.68807,-73.93634,Entire home/apt,150,4,42,2019-07-07,2.69,1,244 +23235139,"Sunny, spacious and quiet room in artist residency",56793,Gisella,Brooklyn,East Flatbush,40.64745,-73.94413,Private room,50,6,0,,,1,100 +23235654,Only book if your name is Haydn,20725025,Lucas,Manhattan,Upper East Side,40.77506,-73.95335,Shared room,80,1,1,2018-02-16,0.06,1,170 +23235762,Bright Brooklyn Heights One Bedroom Apt,32927725,Lee,Brooklyn,Brooklyn Heights,40.69109,-73.99654,Entire home/apt,200,1,0,,,1,0 +23236828,Cozy Room. 2 blocks to Subway,172911004,Vas,Bronx,Concourse Village,40.83168,-73.91977,Private room,47,5,33,2019-06-01,1.96,1,176 +23237952,"Cozy, private and lovely room at home in Bedstuy",1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94475,Private room,44,3,9,2018-07-04,0.54,2,0 +23238781,GUEST ROOM in a Beautiful 2 bedroom Apartment,81066021,Javerick,Brooklyn,Bedford-Stuyvesant,40.6893,-73.94573,Private room,67,3,16,2019-06-15,1.11,2,307 +23240738,(B) Room for 2 - sharing bath,110965771,Wilson,Queens,Flushing,40.77354,-73.82371,Private room,60,2,25,2019-02-13,1.54,7,14 +23247351,Charming room at Bed-Stuy,127427486,Bianca,Brooklyn,Bedford-Stuyvesant,40.6943,-73.93935,Private room,50,1,33,2019-03-24,2.29,1,0 +23247442,"Contemporary Home Away from Home, Entire house",499896,Leon,Staten Island,Tompkinsville,40.63462,-74.08136,Entire home/apt,245,2,37,2019-06-01,2.28,1,216 +23247514,Private room in family apartment,29098546,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68082,-73.92162,Private room,29,1,65,2019-06-23,3.88,1,5 +23249573,Big New Family Friendly Great Location,83141620,Martin,Brooklyn,Sunset Park,40.65511,-74.001,Entire home/apt,180,7,1,2018-08-12,0.09,1,0 +23250710,Bright Modern Chic & Clean East Village APT,109061785,Jeff,Manhattan,East Village,40.72923,-73.98197,Entire home/apt,189,1,40,2019-06-22,2.37,1,73 +23251395,Peaceful room in popular prime Bushwick street art,4672257,Lola,Brooklyn,Bushwick,40.70468,-73.92481,Private room,41,1,82,2019-06-20,5.00,1,30 +23251417,Cozy Astoria bedroom 20 min from midtown,173047765,Alegria,Queens,Ditmars Steinway,40.77202,-73.91292,Private room,60,2,26,2019-07-01,2.49,1,112 +23251775,1 BR Flat in Williamsburg (3 blocks from Bedford),9837019,Damien,Brooklyn,Williamsburg,40.71399,-73.95363,Entire home/apt,120,2,45,2019-06-14,2.79,1,19 +23252265,Lovely West Village 1 BR - Quiet and Comfortable,4220920,Laura,Manhattan,West Village,40.739,-74.00115,Entire home/apt,123,2,6,2019-05-12,0.38,1,34 +23252443,Wyndham Midtown 45 (2 Bedroom Presidential) 2A,100238132,Michael,Manhattan,Midtown,40.75377,-73.97223,Entire home/apt,339,3,40,2019-05-13,2.63,12,0 +23252588,No place like Brooklyn. No place like Red Hook,2536555,Julian,Brooklyn,Red Hook,40.67914,-74.0063,Entire home/apt,125,3,1,2018-12-31,0.16,1,0 +23253216,Artsy Queen Room in BUSHWICK: Jefferson L train,9484908,Aj,Queens,Ridgewood,40.70991,-73.91832,Private room,30,3,13,2019-06-19,0.84,2,65 +23254023,Grand Concourse Gem,170942459,Edwin,Bronx,Concourse,40.8315,-73.92047,Private room,54,1,16,2018-10-08,0.99,1,69 +23254776,Cozy Apartment for 1 or 2 people,4391681,David,Brooklyn,Crown Heights,40.67294,-73.95943,Entire home/apt,75,3,9,2019-01-04,0.54,1,280 +23254924,"Spacious 1 bedroom apt in Chinatown, NYC",49015786,Conor,Manhattan,Chinatown,40.71483,-73.99287,Entire home/apt,92,7,9,2019-05-10,0.53,1,4 +23255800,Tropical New Yorker with Backyard,19631496,The,Brooklyn,Williamsburg,40.70794,-73.94532,Entire home/apt,130,5,61,2019-07-02,3.84,2,185 +23256023,Private bedroom in Barclays (Brooklyn),123578077,Hooman,Brooklyn,Prospect Heights,40.68215,-73.97372,Private room,55,2,2,2018-03-23,0.13,1,0 +23256828,"Sunny, Spacious Brooklyn Room 1 Block From Train!",63943922,Maxwell,Brooklyn,Bushwick,40.68705,-73.91425,Private room,35,3,4,2018-07-01,0.24,1,0 +23256946,Cozy Studio by the Park,3732261,Sidney,Brooklyn,Prospect-Lefferts Gardens,40.66179,-73.95879,Entire home/apt,75,4,2,2019-01-17,0.12,1,0 +23258602,Private room in Williamsburg. Very close to train!,72196680,Nuria,Manhattan,Civic Center,40.71335,-74.00687,Private room,50,3,0,,,1,0 +23258639,Large Alcove Studio in the Heart of Chelsea,22412963,Anne,Manhattan,Chelsea,40.74482,-73.99882,Entire home/apt,180,1,72,2019-06-25,4.67,3,223 +23258724,Entire Place in Prime Brooklyn Neighborhood,15194406,Yitzchok,Brooklyn,Sunset Park,40.65774,-73.99927,Entire home/apt,89,1,113,2019-06-19,6.70,1,13 +23262857,Central Park - Room for 2 to 4,60281397,Lugao,Manhattan,Upper West Side,40.79701,-73.96933,Private room,93,1,27,2019-06-09,1.69,3,190 +23264421,"Mod Midtown East 1BR w/ Gym, walk to Grand Central by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.749,-73.97961,Entire home/apt,289,30,0,,,232,223 +23265699,"Convenient, Quiet and Sunny 1 BR Condo in Flushing",5962328,Alan,Queens,Flushing,40.76105,-73.82317,Entire home/apt,85,30,4,2018-11-09,0.31,15,232 +23268810,Cosy private room in Manhattan!!!,145252418,Claudio,Manhattan,East Harlem,40.80541,-73.93658,Private room,80,1,54,2019-07-05,3.74,3,180 +23269735,Light Flooded Artist Loft in Brooklyn,149047,Heather Nadine,Brooklyn,Bedford-Stuyvesant,40.69158,-73.95958,Entire home/apt,150,4,6,2019-07-08,0.63,1,11 +23270879,"Private Floor W/Private Entrance, Bath & Rooftop",5516133,Frederik,Brooklyn,Greenpoint,40.72291,-73.94781,Private room,100,1,7,2019-01-21,0.46,1,0 +23271408,Perfect shared male room on Manhattan! II,39528519,Max,Manhattan,Lower East Side,40.70987,-73.98689,Shared room,35,14,0,,,28,322 +23271535,Brooklyn Studio; Williamsburg to Manhattan - 10min,122726779,E...,Brooklyn,Williamsburg,40.71097,-73.9533,Entire home/apt,175,2,92,2019-07-04,5.47,1,96 +23271736,Cozy Brooklyn Heights Apartment!,47151333,Walter,Brooklyn,Brooklyn Heights,40.69061,-73.99264,Entire home/apt,113,3,4,2019-03-31,0.25,2,0 +23273676,Little Italy Spacious Room,116976293,Topher,Manhattan,Little Italy,40.71913,-73.99835,Private room,69,2,45,2019-06-16,2.75,2,0 +23273907,"**Cozy room, good location, 20 mins to Manhattan",173249074,Svetlana,Brooklyn,Bath Beach,40.60434,-74.0169,Private room,50,4,36,2019-06-26,2.19,2,316 +23274386,Perfect Apartment in brand new building!,123736313,Houda,Manhattan,East Harlem,40.78785,-73.94249,Entire home/apt,105,4,8,2019-06-29,0.50,1,0 +23274936,Private cozy room in Brooklyn with laundry,157977326,Ilyas,Queens,Maspeth,40.71395,-73.91373,Private room,55,1,72,2019-06-20,4.27,2,29 +23275013,Dope Apt,756577,Jason,Brooklyn,Greenpoint,40.71859,-73.95284,Entire home/apt,100,90,0,,,1,0 +23275777,2 Floor-Entire Detached House 30 Min to Manhattan,113905011,Li,Queens,Rego Park,40.73082,-73.86796,Entire home/apt,109,2,68,2019-06-30,4.02,1,54 +23277230,2 bedrooms flat near Central Park,128579948,Giampiero,Manhattan,Upper East Side,40.76646,-73.9676,Entire home/apt,500,3,56,2019-06-27,3.57,2,163 +23277442,HABITACION EN BROOKLYN NEW YORK,75633225,Daniel,Brooklyn,Sunset Park,40.64555,-74.00995,Private room,150,2,0,,,1,363 +23278026,"Beautiful 2-bed w private deck, steps from subway",7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94191,Entire home/apt,125,2,3,2018-07-09,0.19,3,0 +23285672,Quarto Bronx (NY),136455880,Alvina Da Silva,Bronx,Fordham,40.86918,-73.8905,Private room,34,1,2,2018-04-05,0.12,2,5 +23285903,Your stylish home in Park Slope,10713617,Liberty,Brooklyn,South Slope,40.66459,-73.98553,Entire home/apt,260,2,6,2019-06-30,0.40,1,1 +23287403,Room 1 - Lots of Space in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64397,-73.96907,Private room,68,2,64,2019-07-03,3.89,6,177 +23288584,Manhattan Club 1 Bedroom (Sleeps 4 adults),40381718,Sujatha,Manhattan,Midtown,40.76422,-73.98188,Private room,250,1,0,,,1,0 +23288667,"Great place for 8, 30 min to Manhattan",173373234,Alexander M,Brooklyn,Bensonhurst,40.60859,-73.99331,Entire home/apt,200,30,19,2018-07-15,1.17,2,179 +23289645,Hamilton Heights home,173379189,Jill,Manhattan,Harlem,40.82521,-73.94159,Entire home/apt,200,2,2,2018-04-01,0.13,1,0 +23289674,WILLIAMSBURG PRIME BROOKLYN PRIVATE APT NEAR WATER,29219991,Doug,Brooklyn,Williamsburg,40.71703,-73.96509,Entire home/apt,125,31,11,2019-05-09,1.29,2,190 +23289837,spacious house near Laguardia/2.blocks from train,76536839,Tashi,Queens,Jackson Heights,40.75159,-73.89437,Entire home/apt,199,2,39,2018-11-26,2.48,2,0 +23290010,Sunny Williamsburg Apt (1 month min stay),1539109,Mary,Brooklyn,Williamsburg,40.71225,-73.95757,Private room,68,28,5,2019-06-17,0.53,1,258 +23290041,Live Like a Local in East Williamsburg Studio Apt,32226468,Melissa,Brooklyn,Williamsburg,40.70529,-73.93883,Entire home/apt,37,4,2,2018-04-25,0.13,1,0 +23290179,Your own relaxing 1-bedroom in Bushwick/Bedstuy!,75982141,Bingham,Brooklyn,Bushwick,40.69029,-73.92277,Entire home/apt,60,3,8,2019-01-15,0.49,1,0 +23292216,Lower East Side Oasis,173406651,Dan,Manhattan,Lower East Side,40.7196,-73.98133,Entire home/apt,300,3,30,2019-07-02,1.77,2,182 +23292982,Trendy Bushwick Place (in Brooklyn),173416551,Natalie,Brooklyn,Bushwick,40.6858,-73.90734,Entire home/apt,87,2,70,2019-06-15,4.25,1,54 +23293483,20 w 53Rd st full furnished 2BR,53179388,Raymond,Manhattan,Midtown,40.76126,-73.97628,Entire home/apt,500,180,0,,,10,363 +23293946,Williamsburg Loft with Garden,3402155,Andre,Brooklyn,Williamsburg,40.7186,-73.95997,Entire home/apt,160,2,9,2018-10-28,0.56,1,157 +23294354,Spacious and Serene in Manhattan! 2 beds,6239596,Tanya,Manhattan,Washington Heights,40.84664,-73.93977,Entire home/apt,145,2,3,2018-05-20,0.20,1,0 +23300336,Cozy room,173485654,Patricia,Staten Island,Mariners Harbor,40.63179,-74.16122,Private room,40,5,1,2018-04-12,0.07,1,87 +23301706,"*Great room, good location, 20 mins to Manhattan",173249074,Svetlana,Brooklyn,Bath Beach,40.60444,-74.01725,Private room,50,4,24,2019-05-18,1.69,2,311 +23302260,Inspiring & Tranquil Experience,122374980,Matt,Manhattan,Upper West Side,40.78648,-73.97923,Shared room,60,1,34,2019-06-22,2.01,4,363 +23302837,Basement studio with half bathroom,40733012,Victor,Brooklyn,Bedford-Stuyvesant,40.68231,-73.91252,Private room,40,7,0,,,1,365 +23303297,"Spacious Rooms 10 minutes to LGA , 15 min. to city",18554986,Kimberly,Queens,Woodside,40.74371,-73.90877,Private room,70,1,2,2018-06-18,0.15,1,0 +23304014,Charming and Cozy Two-Bedroom,33923279,Hollis,Manhattan,Harlem,40.82932,-73.94575,Entire home/apt,100,3,2,2018-04-21,0.12,2,0 +23304600,T-Square Stylish 1 Bedroom,11789627,Maxime,Manhattan,Hell's Kitchen,40.7623,-73.99096,Entire home/apt,172,4,27,2019-06-16,1.75,1,42 +23305380,Private Room in Shared Apt in Greenwich Village,171858908,Andrée,Manhattan,Greenwich Village,40.72765,-73.99881,Private room,75,1,1,2018-05-21,0.07,2,0 +23306531,55 Blue Room Star Studio Apt merged Quiet Cave,173535994,Tyni,Manhattan,East Harlem,40.79497,-73.9477,Entire home/apt,118,1,7,2018-05-27,0.42,1,0 +23307047,2 Story PRIVATE Duplex/Elevator Building in NoMad,172756149,C,Manhattan,Kips Bay,40.74121,-73.98139,Entire home/apt,240,1,66,2019-07-02,4.09,1,83 +23307503,Cultured NYC!,165607672,Mariela,Bronx,Fordham,40.85655,-73.90377,Private room,73,2,31,2019-06-18,1.83,2,39 +23308318,Heart of Park Slope,11540159,Summer,Brooklyn,Park Slope,40.67289,-73.98316,Private room,58,2,0,,,2,0 +23308563,Room in the Safest Neighborhood of Staten Island!,106897471,Oswaldo,Staten Island,Silver Lake,40.62422,-74.09316,Private room,60,3,90,2019-05-26,5.49,1,0 +23310309,MY HOUSE ON NEW YORK!! CLOSE TO JFK AND LGA,173290675,Charlie,Queens,Woodhaven,40.69907,-73.85161,Shared room,34,1,45,2019-06-08,2.66,3,348 +23311118,Astoria 48 street and 30 ave ny,164886138,Eliahu,Queens,Astoria,40.76165,-73.90839,Entire home/apt,60,6,11,2019-06-30,0.66,11,299 +23311374,The Bungalow at Bedford Avenue (Williamsburg),1119739,Luke,Brooklyn,Williamsburg,40.71794,-73.9595,Entire home/apt,125,6,11,2019-05-27,0.66,1,0 +23311527,Ultimate NYC experience at a fraction of the cost!,173584558,Aakash,Manhattan,Upper East Side,40.76125,-73.96449,Private room,79,1,0,,,1,0 +23311756,Trendy Private Harlem Room - Plants & Light!,26259317,Keah,Manhattan,Harlem,40.81367,-73.95133,Private room,55,2,25,2018-10-29,1.57,1,0 +23312379,UWS Brownstone - Near Central Park/Lincoln Center,8055207,Nate,Manhattan,Upper West Side,40.77839,-73.97613,Private room,165,4,53,2019-06-20,3.24,1,0 +23312524,Light filled Cosy room is Brooklyn,75748625,Kosha,Brooklyn,Bedford-Stuyvesant,40.69028,-73.95195,Private room,45,1,2,2018-02-26,0.12,1,0 +23317650,Simple Nice Private Bedroom in Hamilton Heights,24987213,Bridget,Manhattan,Harlem,40.82826,-73.94589,Private room,70,2,8,2018-07-01,0.49,1,156 +23319467,Modern clean Apt-close to LGA & Manhattan,172506421,Santosh,Queens,Jackson Heights,40.75363,-73.88151,Entire home/apt,93,2,70,2019-06-26,4.24,1,89 +23320351,"Private Bdrm in Huge Apt mins to Manhtn,JFK,LGA!",70331348,Nataly,Queens,Sunnyside,40.73739,-73.92397,Private room,49,1,2,2019-01-01,0.31,1,0 +23322641,2 bedrooms apartment 10 minutes from Manhattan,38908498,Jasmine,Queens,Long Island City,40.76506,-73.93234,Entire home/apt,65,15,1,2018-03-04,0.06,1,0 +23322737,Luxurious Private Bed& Bath In NYC-Weekly Discount,169589888,J & T,Manhattan,Washington Heights,40.8347,-73.94487,Private room,140,3,27,2019-06-27,1.69,1,348 +23322795,San Carlos Hotel Garden Terrace Penthouse- up to 4,173685298,Janet,Manhattan,Midtown,40.75664,-73.97191,Private room,700,1,0,,,11,179 +23323530,Private Room in Charming Two Bedroom Apartment,75359775,Sophia,Manhattan,Little Italy,40.71848,-73.99756,Private room,100,1,8,2018-05-05,0.49,1,0 +23324479,"HARLEM HOME AWAY FROM HOME , SHORT - EXTENDED STAY",120167980,Judith,Manhattan,Harlem,40.80497,-73.94952,Private room,125,1,7,2019-05-12,0.43,1,297 +23325238,☀ Beautiful & Quiet ☀TIMES SQUARE ☀ 2 BDR Apt ☀,5201405,Rob,Manhattan,Hell's Kitchen,40.76155,-73.98687,Entire home/apt,295,2,71,2019-07-03,4.25,1,89 +23327138,"One stop from Manhattan, great area, private bd/br",10826173,Katya,Queens,Long Island City,40.74825,-73.94095,Private room,120,2,3,2018-05-10,0.21,1,0 +23327774,Trendy Brooklyn Room - 20mins from Manhattan,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.67104,-73.99362,Private room,75,1,133,2019-06-17,7.87,3,336 +23329332,"Bright, Shared Living Room in our Beautiful Home!",173754495,Megan,Brooklyn,Cypress Hills,40.67833,-73.89338,Shared room,75,1,25,2019-06-30,1.69,1,270 +23329993,"SHARE;Cheapest,Silent,Clean and Safe in New York",172837223,Erin V.,Queens,Sunnyside,40.73307,-73.91995,Shared room,30,1,51,2019-06-16,3.02,3,140 +23334645,Cool Downtown Apartment in Great Location,1730026,Haifa,Manhattan,Lower East Side,40.71331,-73.99015,Entire home/apt,127,4,7,2019-05-18,0.43,2,3 +23335839,Williamsburg Oasis,9761047,Anika,Brooklyn,Williamsburg,40.71707,-73.95982,Private room,60,3,46,2019-06-20,2.88,3,0 +23336877,Welcoming House near Verrazano Bridge,173823383,Basia,Staten Island,Shore Acres,40.60809,-74.0727,Entire home/apt,165,2,51,2019-07-02,3.25,1,0 +23337201,Cozy E. Williamsburg 3-bedroom apt! (Bedroom 2),60521448,Isabelle,Brooklyn,Williamsburg,40.70742,-73.93754,Private room,59,5,1,2018-09-03,0.10,2,48 +23338901,Bedroom + Private bathroom in Williamsburg!,12128354,Anna,Brooklyn,Williamsburg,40.70744,-73.94681,Private room,100,1,0,,,1,0 +23339298,Cosy and comfortable 2 Bdrm with Outdoor Space,82930,Ed And Heather,Brooklyn,Bushwick,40.69374,-73.912,Entire home/apt,105,2,45,2019-06-30,3.98,1,74 +23340718,Enormous 10 foot ceiling Bushwick room,131476075,Lakisha,Brooklyn,Bushwick,40.68708,-73.91237,Private room,58,1,10,2019-01-03,0.63,8,179 +23342782,"Lovely West Harlem Duplex, Comfortably Sleeps 4",4325160,Kinda,Manhattan,Harlem,40.80381,-73.95055,Entire home/apt,125,10,10,2018-12-11,0.64,1,0 +23343836,SHARE;CHEAPEST;Pure;Cozy;Safe;Silent IN NEW YORK,172837223,Erin V.,Queens,Sunnyside,40.73272,-73.91826,Shared room,30,1,36,2019-07-01,2.29,3,140 +23344008,SHARE;SAFE;CHEAPEST;15 MIN TO HEART OF MANHATTAN.,172837223,Erin V.,Queens,Sunnyside,40.73291,-73.9196,Shared room,30,1,41,2019-06-18,2.48,3,145 +23344243,Zen very well located in Chelsea studio,62745867,Tatiane,Manhattan,Chelsea,40.73981,-74.00031,Entire home/apt,146,7,3,2018-12-14,0.21,1,353 +23344293,Cozy 2,156505456,John,Brooklyn,East New York,40.66122,-73.88672,Private room,52,3,23,2019-05-27,1.37,13,90 +23351120,"upper west side, 15' from Colombia, calm & light",2730883,Seb,Manhattan,Washington Heights,40.85265,-73.93247,Private room,35,20,1,2018-10-20,0.11,2,267 +23352462,Warm room for nice people in Bensonhurst !,38121779,Viktoria,Brooklyn,Gravesend,40.60687,-73.98349,Private room,62,1,0,,,1,0 +23353173,Chateau Upon Metro - large sunny 1bd near train,55149174,Anthony,Brooklyn,Kensington,40.64588,-73.97831,Private room,43,2,0,,,1,0 +23353909,Room in crown heights,63801339,Karina,Brooklyn,Crown Heights,40.66916,-73.9371,Private room,32,1,8,2018-03-29,0.48,1,0 +23354284,It's Always Sunny in Williamsburg (2)!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71474,-73.95476,Private room,88,1,58,2019-06-23,3.55,4,50 +23354992,Sun-drenched Artist Loft,101618737,Sihan,Brooklyn,Bushwick,40.69273,-73.90719,Private room,80,3,0,,,2,140 +23355035,Chic + Bright One Bedrooom Apartment,428643,Chanae,Manhattan,East Harlem,40.7876,-73.94139,Entire home/apt,149,3,15,2019-05-24,0.92,1,120 +23355382,THE SNUG Luxury Hotel Studio at 56th/Park,8990438,K.C.,Manhattan,Midtown,40.75978,-73.97159,Entire home/apt,169,30,48,2019-03-30,3.27,1,325 +23355877,"Beautiful large space in Jackson Heights, Queens!",17015479,Elizabeth,Queens,Elmhurst,40.74443,-73.88613,Private room,85,2,3,2018-03-18,0.18,1,89 +23357738,"Huge Chic LOFT, Natural Sunlight, Balcony!",173987923,Ethan,Manhattan,East Village,40.73214,-73.98783,Entire home/apt,395,3,4,2019-04-20,0.30,1,89 +23357789,KING SIZED BEDROOM in SoHo,43488929,Nini,Manhattan,Greenwich Village,40.72774,-74.00161,Private room,60,2,2,2018-03-15,0.12,1,0 +23358593,"1BD apartment in Clinton Hill, Brooklyn",12404650,Isabel,Brooklyn,Clinton Hill,40.68969,-73.96682,Entire home/apt,100,3,6,2019-05-15,0.43,1,3 +23358691,Spacious bright room in 2 bedroom apartment,44951851,Yaakov,Brooklyn,Crown Heights,40.66505,-73.95445,Private room,50,3,1,2018-03-17,0.06,2,0 +23359277,Brooklyn private attic in a circus home,14719992,Yoni,Brooklyn,Cypress Hills,40.67853,-73.88991,Private room,35,1,17,2019-02-17,1.13,3,0 +23360409,Beautiful place in historic Bed Stuy neighborhood,3478341,Mark,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92557,Entire home/apt,99,2,21,2019-06-19,1.31,1,26 +23361038,Sofa Bed in middle of East Village (St marks),65804,Ahmad,Manhattan,East Village,40.72831,-73.98873,Shared room,75,1,40,2019-06-04,2.39,2,24 +23363336,Manhattan clean. warm. safe room / 6 train,174124006,Chanhee,Manhattan,East Harlem,40.7975,-73.93556,Private room,60,1,61,2019-06-27,3.67,1,45 +23369253,New York Queen's East Elmhurst (whole Basement),174171891,Charlotte,Queens,East Elmhurst,40.75857,-73.89298,Private room,46,2,31,2019-06-08,1.92,1,51 +23369528,Beautiful Bed Stuy Garden Apartment,688367,Malika,Brooklyn,Bedford-Stuyvesant,40.68861,-73.92941,Entire home/apt,175,4,44,2019-06-24,2.66,1,249 +23369859,Beautiful cozy full 1 bedroom suite/apartment,59514172,Rezaur,Queens,Ozone Park,40.67984,-73.84403,Entire home/apt,120,1,35,2019-06-30,2.18,1,356 +23369991,Manhattan Studio Apt Queen bed & Sofabed loveseat,174180669,Jenny,Manhattan,Harlem,40.81809,-73.94168,Entire home/apt,179,2,37,2019-07-07,2.32,1,333 +23370484,SHOOTS ONLY -- Large Sunny loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71782,-73.96318,Entire home/apt,1000,1,0,,,4,179 +23372015,"Enjoy this vast, chic apt, 15-to-Midtown w/Kingbed",17314413,Jason,Manhattan,Washington Heights,40.83921,-73.93535,Entire home/apt,120,4,10,2019-04-21,0.60,1,4 +23372850,SHOOTS ONLY - Eclectic Artist Loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71846,-73.9616,Entire home/apt,2000,1,0,,,4,177 +23373090,SHOOTS ONLY - Huge Artist loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71653,-73.96276,Entire home/apt,2500,1,0,,,4,140 +23373453,"""Grandma Chic"" Brooklyn Apartment... Williamsburg",23089194,Katie,Brooklyn,Williamsburg,40.71536,-73.94058,Private room,69,5,6,2019-01-02,0.51,1,0 +23374229,Big Private Room in the Hudson Yards Area,36291511,Arturo,Manhattan,Chelsea,40.75272,-73.99682,Private room,98,1,19,2018-12-09,1.25,1,0 +23375014,Light-drenched apartment - heart of Greenpoint,41354164,Belen,Brooklyn,Greenpoint,40.7286,-73.95169,Private room,100,2,0,,,1,0 +23375874,Designer's gem on Ludlow Street,38386349,Tia,Manhattan,Lower East Side,40.72257,-73.98884,Entire home/apt,117,1,4,2018-03-27,0.24,1,0 +23376196,Modern Townhouse Apartment in Brooklyn,3806282,Sunny,Brooklyn,Bedford-Stuyvesant,40.68475,-73.92897,Entire home/apt,115,2,39,2019-06-19,2.41,1,90 +23376943,Crown Heights Greenroom,77938412,Michael,Brooklyn,Crown Heights,40.67641,-73.95736,Private room,45,5,1,2018-02-21,0.06,1,0 +23377365,East Village Location to Experience Manhattan,11274299,Andrew,Manhattan,East Village,40.72603,-73.98469,Private room,149,2,5,2018-03-30,0.30,2,0 +23377410,Beautiful/Spacious 1 bed luxury flat-TriBeCa/Soho,18128455,Rum,Manhattan,Tribeca,40.72197,-74.00633,Entire home/apt,8500,30,2,2018-09-18,0.18,1,251 +23377429,"Brooklyn, N.Y. 3 Bdrm House",63098538,Kristin,Brooklyn,Kensington,40.64187,-73.97376,Entire home/apt,175,7,0,,,1,0 +23377713,Private room in lovely Brooklyn Apt,54241,Matt,Brooklyn,Sunset Park,40.66289,-73.99815,Private room,80,21,0,,,1,0 +23377720,Charming 1 Bedroom Apt in Sunnyside,96686669,Colleen,Queens,Sunnyside,40.74497,-73.91752,Entire home/apt,125,1,16,2018-12-09,0.98,1,0 +23377781,Riverside Delight,174255459,Jose,Manhattan,Washington Heights,40.83913,-73.9461,Entire home/apt,125,2,24,2019-01-03,1.63,1,188 +23377961,Amazing new private bedroom 5 min to subway,174261493,Sophie & Max,Brooklyn,Midwood,40.61204,-73.95501,Private room,99,2,31,2019-06-02,1.90,2,0 +23378076,An Oasis in Manhattan,174263749,Shopper,Manhattan,Washington Heights,40.84442,-73.94039,Private room,115,6,2,2018-11-01,0.22,3,90 +23378120,Quiet 2BR In Residential Area; Desks + Monitors!,1670486,Chris,Brooklyn,Greenpoint,40.72345,-73.94642,Entire home/apt,96,4,0,,,1,0 +23378281,Spacious Loft Bedroom in Brooklyn With 2 Beds,160721088,Nigel,Brooklyn,East Flatbush,40.63571,-73.92398,Private room,150,5,1,2019-04-24,0.39,1,0 +23378803,Tranquil Morningside Apartment,51369575,Elena,Manhattan,Morningside Heights,40.80405,-73.96375,Private room,67,3,7,2018-05-03,0.43,1,0 +23378815,Luxurious 2-Story Home • Large Terrace • Views,20869217,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.65465,-73.96158,Entire home/apt,225,2,32,2019-05-31,2.31,1,56 +23378828,Spacious bedroom in heart of Forest Hills,133536506,David,Queens,Forest Hills,40.72743,-73.85068,Private room,36,1,0,,,1,0 +23379996,All that you need. 1 bedroom in shared apt.,35475017,Danielle,Manhattan,Chinatown,40.71473,-73.99091,Private room,62,4,7,2019-01-03,0.43,1,0 +23380590,Sunny apt in dynamic Bushwick,164519659,Jessica,Brooklyn,Bushwick,40.70073,-73.91714,Private room,35,1,6,2018-04-21,0.37,1,0 +23381157,"Beautiful 1 Bedroom, 3 blocks from Prospect Park!",12780119,Greg,Brooklyn,Park Slope,40.66876,-73.98448,Entire home/apt,175,6,2,2018-04-19,0.13,1,67 +23385738,Male room 2 minutes from East Broadway station III,170263842,Sultan,Manhattan,Lower East Side,40.71117,-73.98727,Shared room,32,14,0,,,4,341 +23385746,"Private Clean, Spacious Room in West Harlem!",7718759,Kelly,Manhattan,Harlem,40.82781,-73.94405,Private room,39,1,26,2019-07-04,1.62,2,10 +23387463,Hamilton Heights Gem,24738447,Marianna,Manhattan,Harlem,40.81862,-73.95565,Private room,60,2,5,2018-04-24,0.31,1,0 +23388053,Private Room in Beautiful Soho NYC,6542295,Jon,Manhattan,SoHo,40.728,-74.00265,Private room,110,3,71,2019-06-26,4.39,2,37 +23389451,Cozy bedroom - Nearby Fort Greene Park & Dumbo,9041817,Melissa,Brooklyn,Fort Greene,40.69752,-73.97419,Private room,47,1,1,2018-03-16,0.06,1,0 +23389897,Cozy E. Williamsburg 3-bedroom apt! (Bedroom 1),60521448,Isabelle,Brooklyn,Williamsburg,40.70665,-73.93894,Private room,59,5,0,,,2,67 +23392375,Home away from home in cozy BK apartment,23625464,Liz,Brooklyn,Bushwick,40.68831,-73.91866,Private room,30,3,1,2018-07-28,0.09,1,0 +23393043,Awesome Modern Oasis 2 Bdrm Apt in Brooklyn,59089906,Connie & Monty,Brooklyn,East New York,40.67237,-73.87651,Entire home/apt,139,3,21,2019-07-05,1.49,1,344 +23394849,"2017 BUILDING!, NEW LOFT, 5 MIN SUBTO MANHATTAN!!!",157967816,Analia,Brooklyn,Greenpoint,40.72107,-73.94316,Private room,70,1,42,2019-05-14,2.50,3,15 +23400115,Cozy and bright east village apartment!,50297669,Chloe,Manhattan,East Village,40.7265,-73.98878,Entire home/apt,110,3,4,2018-04-19,0.25,1,0 +23402559,Pretty room in the heart of the Lower East Side,4057381,Kar Man And Ariel,Manhattan,Lower East Side,40.71925,-73.99301,Private room,81,5,24,2019-07-04,1.48,1,164 +23404901,Large Sun Drenched Bedroom Minutes from Manhattan,24715521,Sarah,Brooklyn,Williamsburg,40.71033,-73.94921,Private room,85,2,2,2018-03-10,0.12,1,0 +23412268,"2 Bed/2 Bath, spacious, modern & bright!",174584122,Eduardo,Manhattan,Two Bridges,40.71124,-73.99456,Entire home/apt,68,3,64,2019-05-20,3.92,1,13 +23413509,Two bedroom apartment in Brooklyn/Bed Stuy,152877297,Hp,Brooklyn,Bedford-Stuyvesant,40.67985,-73.91061,Entire home/apt,95,2,50,2019-06-17,3.13,1,54 +23416448,Private room with private bathroom in Brooklyn,14079322,Nada,Brooklyn,Bedford-Stuyvesant,40.69205,-73.94334,Private room,80,2,2,2018-12-10,0.17,1,0 +23416536,Gramercy Park Central Manhattan 4Beds 2Bath,151080327,Nicole,Manhattan,Kips Bay,40.73925,-73.98084,Entire home/apt,409,3,52,2019-06-23,3.15,1,106 +23417242,【限1~2名女生】近哥伦比亚大学超方便短租房【无其他费用】(情侣请私聊),174628863,Lingqing,Manhattan,Morningside Heights,40.81449,-73.95842,Private room,60,2,3,2018-05-08,0.18,1,0 +23417781,Upscale living on Lafayette St. NoHO,35606642,Santiago,Manhattan,NoHo,40.72764,-73.993,Entire home/apt,400,1,0,,,1,0 +23421363,Private room amazing location Chelsea/Union Square,60133196,Javier,Manhattan,Chelsea,40.73974,-73.99563,Private room,80,3,0,,,1,0 +23425584,"1 bedroom, entire apartment, in upper Manhattan",31825530,Keyonna,Manhattan,Washington Heights,40.83229,-73.94339,Entire home/apt,66,5,8,2018-12-27,0.48,1,0 +23427160,"Bright, renovated duplex with deck and backyard",19400984,Batya,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95721,Entire home/apt,200,6,3,2018-08-15,0.27,1,1 +23429074,Beautiful Private Room!,123741063,Laura,Manhattan,Harlem,40.829,-73.94803,Private room,50,1,0,,,1,0 +23429109,Your Chic NYC 1 bed Apt near Central Park,97168718,Chloe,Manhattan,Upper West Side,40.78654,-73.97663,Private room,95,5,20,2019-06-09,1.42,2,104 +23429757,Peaceful Bushwick Apartment,41105459,Stephanie,Brooklyn,Bushwick,40.69029,-73.90623,Shared room,29,1,3,2018-04-01,0.18,1,0 +23430085,Skylight Apartment,75003580,Butchie,Brooklyn,Bedford-Stuyvesant,40.68337,-73.92996,Private room,60,4,0,,,1,22 +23431200,Spacious studio in LIC,4066645,Gonzalo,Queens,Long Island City,40.74711,-73.93917,Entire home/apt,90,4,0,,,1,0 +23432542,Quiet sanctuary in the heart of the UES,56283770,Lia,Manhattan,Upper East Side,40.76305,-73.96704,Entire home/apt,240,30,2,2019-06-05,0.14,6,156 +23433516,The Kingston - A 3BR/2BA Duplex Apartment,174785774,Matthew,Brooklyn,Crown Heights,40.67487,-73.94051,Entire home/apt,162,2,3,2018-07-22,0.24,1,0 +23433518,New Tidy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75522,-73.81259,Private room,46,2,26,2019-05-26,1.65,6,180 +23433585,"Nice room near SI Ferry +15 minutes by car.",174786681,Sara I,Staten Island,Randall Manor,40.63779,-74.12274,Private room,31,7,3,2018-10-31,0.19,1,357 +23433996,Spacious Room Close to Manhattan (Females Only),20488196,Bettina,Queens,Astoria,40.76451,-73.91182,Private room,100,2,21,2019-06-25,1.86,1,32 +23434675,HUGE 2 BEDROOM NEAR MANHATTAN,21593637,Pat And Shelly,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92229,Entire home/apt,159,3,12,2019-06-01,0.78,2,285 +23434788,Bright Bushwick Apartment with City Views!,56636906,Michael,Brooklyn,Bushwick,40.70223,-73.92959,Private room,50,2,0,,,1,0 +23435040,1 bd Apartment next to Subway,57292550,Elle,Brooklyn,Sheepshead Bay,40.58591,-73.95099,Entire home/apt,70,2,1,2018-02-27,0.06,1,0 +23435615,Private New Brooklyn Room,125431405,Kacey,Brooklyn,Bushwick,40.697,-73.93116,Private room,35,1,1,2018-05-12,0.07,1,0 +23435772,Lakeside View in Brooklyn - its true!,14235061,Javier,Brooklyn,Flatbush,40.65281,-73.96581,Private room,59,2,10,2019-07-07,0.62,1,27 +23435916,"Lovely, Modern Apartment in Park Slope, Brooklyn",174780742,David,Brooklyn,South Slope,40.66022,-73.98581,Entire home/apt,150,2,13,2019-06-02,0.94,1,282 +23436140,Tony's Room 2 near La Guardia Airport,172189639,Camilo & Yesenia,Queens,East Elmhurst,40.76525,-73.86715,Private room,80,1,4,2019-06-01,0.28,2,78 +23436576,1 bedroom with 3 beds in the heart of Times Square,174816758,Kerri,Manhattan,Hell's Kitchen,40.7551,-73.99363,Entire home/apt,200,3,81,2019-07-07,5.80,1,189 +23437204,Cool Lower East Side 1br Duplex W/ Backyard!,347953,Sadiq,Manhattan,Lower East Side,40.71971,-73.98761,Entire home/apt,225,6,22,2019-06-10,1.36,1,17 +23437788,Premier Location 2 Blocks to Central Park E. 62nd!,56283770,Lia,Manhattan,Upper East Side,40.76483,-73.96675,Entire home/apt,225,30,1,2018-08-16,0.09,6,240 +23437793,2 blocks to train -15min to Central Park - Astoria,11581619,Stacey,Queens,Long Island City,40.7605,-73.92795,Entire home/apt,100,2,45,2019-06-30,2.89,1,269 +23438247,Modern Brooklyn Duplex with Private Rooftop,174838471,Renato,Brooklyn,Williamsburg,40.70488,-73.94101,Private room,96,3,38,2019-06-25,2.31,1,25 +23439376,Newly renovated apt near the city/ideal room for 2,140057330,Joey,Queens,Ridgewood,40.69799,-73.90509,Private room,60,1,22,2019-05-29,1.37,7,73 +23439529,Newly renovated room for two/20mins to Manhattan,140057330,Joey,Queens,Ridgewood,40.69704,-73.90576,Private room,60,1,14,2019-05-01,0.88,7,64 +23449499,Our recently rebuilt 19th century Brooklyn gem,7886822,Lior,Brooklyn,Bedford-Stuyvesant,40.68791,-73.95633,Entire home/apt,300,5,0,,,1,0 +23449907,"Light-drenched 2-bedroom apt, prime location中国城",2148510,Joanna,Manhattan,Chinatown,40.71708,-73.99908,Entire home/apt,145,29,18,2019-05-31,1.13,1,155 +23450331,Manhattan New York,14383640,Bob,Manhattan,Murray Hill,40.74848,-73.97609,Private room,335,4,0,,,1,365 +23450541,"Spacious room in Astoria, 15 mins to Manhattan",9494593,Tammy,Queens,Astoria,40.76677,-73.9171,Private room,75,2,4,2019-03-29,0.29,1,0 +23450601,"Friendly, quiet Brooklyn Heights Apartment",22820185,William,Brooklyn,Brooklyn Heights,40.69012,-73.99221,Private room,80,1,14,2019-06-24,0.87,1,2 +23451100,"Beautiful, High-Ceiling Apartment in Fort Greene",6950113,Brad,Brooklyn,Fort Greene,40.69431,-73.97063,Entire home/apt,155,1,16,2019-05-27,1.04,1,14 +23451337,Spacious fully furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75988,-73.96115,Entire home/apt,100,30,5,2019-04-30,0.34,8,229 +23451817,Spacious 1BR Apartment,17487184,Emmanouela,Brooklyn,Williamsburg,40.71356,-73.95276,Entire home/apt,150,6,0,,,1,0 +23452076,Gorgeous Brooklyn Brownstone,3075944,Lucie,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92268,Entire home/apt,120,2,89,2019-07-03,5.59,1,35 +23452435,sleek and modern 600 sf studio/petite one bedroom,35065193,Tranquil,Manhattan,Upper East Side,40.78494,-73.94988,Entire home/apt,225,2,8,2018-12-29,0.48,1,209 +23453013,Studio Near Times Square,2416454,Gen,Manhattan,Hell's Kitchen,40.76,-73.98962,Entire home/apt,175,3,4,2018-07-28,0.26,1,0 +23454165,"Gabby Suite in the Heights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85197,-73.94074,Private room,75,3,21,2019-06-18,1.47,3,138 +23454631,The CLEANEST apartment in New York City!!,174263749,Shopper,Manhattan,Washington Heights,40.84305,-73.93877,Private room,89,6,5,2019-06-01,0.31,3,90 +23455106,"Spacious Comfy Space, Full of Light",33395500,David,Brooklyn,Boerum Hill,40.68307,-73.97981,Private room,55,15,0,,,1,0 +23455982,1 SUNNY MASTER BEDROOM LOWER EAST SIDE,4781753,Rhian,Manhattan,Lower East Side,40.72107,-73.9834,Private room,100,7,0,,,1,0 +23456596,Art & home,28907641,Sherry,Queens,Flushing,40.76314,-73.83,Private room,60,1,112,2019-07-01,7.55,2,84 +23456621,JFK/Queens House of Suedajoy#1(Disc by flexibility,175019394,Suzan,Queens,Jamaica,40.67183,-73.78025,Private room,60,1,83,2019-06-11,5.11,6,171 +23461056,Duke Ellington Studio,11262267,Fabio,Manhattan,Upper West Side,40.80309,-73.96883,Shared room,77,1,0,,,1,350 +23462240,Cozy Room in Brooklyn,118086005,Noa,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94261,Private room,50,1,0,,,1,0 +23462813,Gorgeous Luxury 3 Bedroom steps from Prospect Park,175082875,Scott And Jill,Brooklyn,Windsor Terrace,40.65814,-73.97718,Entire home/apt,250,2,81,2019-06-09,4.89,1,213 +23463017,A great experience in a fashionable neighborhood,9241743,Antonio,Manhattan,Harlem,40.80899,-73.94225,Private room,80,4,1,2018-03-19,0.06,1,365 +23464662,Nice Bedroom A in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.67964,-73.90675,Private room,43,1,58,2019-06-23,3.65,6,152 +23464702,Private bedroom in large Chelsea apartment,3656871,Holman,Manhattan,Chelsea,40.74233,-74.0002,Private room,99,3,3,2018-04-23,0.19,1,0 +23465208,Nice Bedroom B in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68048,-73.90787,Private room,43,1,35,2019-01-31,2.15,6,155 +23465498,Nice Bedroom C in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.67913,-73.90665,Private room,43,1,33,2019-01-02,2.04,6,170 +23465912,Beautiful apartment - easy access to all,175116422,Karilyn,Staten Island,Grant City,40.57879,-74.11043,Entire home/apt,60,3,81,2019-07-04,5.09,3,272 +23466034,Cozy Room Available in Brooklyn,28316764,Zachary,Brooklyn,Williamsburg,40.71876,-73.94441,Private room,52,2,4,2018-03-13,0.24,1,0 +23466099,Your Crown Heights 1 bedroom apartment,18458368,Erin,Brooklyn,Crown Heights,40.67308,-73.95522,Entire home/apt,110,1,38,2018-11-21,2.31,1,0 +23466335,COMFORT ZONE,10466854,Erika,Manhattan,Harlem,40.81404,-73.93809,Private room,60,2,16,2018-10-25,1.00,1,363 +23466360,Comfy Brooklyn Studio,111782745,Brian,Brooklyn,Williamsburg,40.70477,-73.93206,Shared room,26,2,8,2018-04-07,0.48,2,0 +23466594,New clean cozy room private entrance paid parking,124860677,Jim&Lisa,Queens,Flushing,40.75707,-73.81205,Private room,46,2,22,2019-06-25,1.36,6,180 +23467126,"Large, private apartment in restored Brownstone.",15651637,David,Brooklyn,Prospect Heights,40.67908,-73.96858,Entire home/apt,200,3,29,2019-07-03,3.33,1,50 +23467186,MIDTOWN WEST NYC STUDIO,148945774,Clay,Manhattan,Hell's Kitchen,40.76686,-73.98555,Entire home/apt,150,5,13,2018-09-02,0.80,1,0 +23468785,Luxe Master Bdrm Chelsea Doorman Gym/RoofDeck/Elev,19043062,Regi,Manhattan,Chelsea,40.74085,-74.00379,Private room,80,4,34,2019-06-28,2.24,2,20 +23469535,"Your Room at Roselle’s, Bronx",175152359,Massiel,Bronx,Westchester Square,40.843,-73.84806,Private room,65,2,2,2019-06-23,0.13,2,135 +23469548,STUDIO - Boho Chic Sanctuary in Lower East Side,39147880,Madelaine,Manhattan,Chinatown,40.71655,-73.99042,Entire home/apt,130,4,17,2019-05-11,1.10,1,0 +23470849,Perfect room in between walks&fun in Manhattan,22188,Laura,Manhattan,Upper West Side,40.78046,-73.98818,Private room,90,3,2,2019-04-30,0.63,2,339 +23470928,Comfortable shared apartmant by Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.76431,-73.98859,Shared room,75,1,69,2019-06-30,4.21,6,167 +23476922,Zen in Brooklyn,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.6878,-73.93915,Private room,40,3,3,2019-06-25,0.18,4,89 +23477827,Masterful bedroom & private bathroom in Astoria,24555919,David,Queens,Long Island City,40.76322,-73.93047,Private room,47,3,0,,,1,0 +23478580,Prime Location 3 Bedrroms Apartment,9287155,Nick,Manhattan,Kips Bay,40.74265,-73.98066,Entire home/apt,450,30,16,2019-05-20,0.98,1,145 +23479042,Spacious & Private Apt steps to Prospect Park,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.65891,-73.95887,Entire home/apt,150,2,68,2019-07-05,4.27,2,32 +23480048,Open studio in Bushwick,64076428,John,Brooklyn,Bushwick,40.69749,-73.93153,Entire home/apt,110,3,7,2018-08-05,0.42,1,38 +23480510,"Bright, spacious, ensuite bedroom in Williamsburg",39607598,Vanessa,Brooklyn,Williamsburg,40.71779,-73.94632,Private room,101,1,5,2019-06-08,0.34,1,90 +23481234,"3 BdRm Apt, 8min to LGA & 25mins to JFK,Manhattan",175289458,Dawa,Queens,East Elmhurst,40.75703,-73.88368,Entire home/apt,135,2,68,2019-06-24,4.27,1,89 +23482476,Private Room in Comfortable Bushwick Apartment,15562068,Meg,Brooklyn,Bushwick,40.7046,-73.92198,Private room,55,1,18,2019-07-01,1.11,1,19 +23483134,2 Bathrooms-Modern Room in Queens (3),175311339,Eduardo,Queens,Jackson Heights,40.75251,-73.86401,Private room,51,2,60,2019-07-01,3.93,5,125 +23483266,NEW Bright-2 bath/4min to train and 10minto LGA(1),175311339,Eduardo,Queens,Jackson Heights,40.75312,-73.86479,Private room,39,2,59,2019-06-18,3.70,5,157 +23483467,Modern: 5mins to train; 30min to Times-2 Bath (2),175311339,Eduardo,Queens,Jackson Heights,40.75295,-73.86465,Private room,37,2,66,2019-07-02,4.06,5,150 +23483525,5mins to train; New York Modern Home- (5),175311339,Eduardo,Queens,Jackson Heights,40.75287,-73.86435,Private room,37,2,34,2019-06-08,2.07,5,126 +23483570,Newly Renovated-5mins to train; 30mins to City (4),175311339,Eduardo,Queens,Jackson Heights,40.75144,-73.86418,Private room,37,2,32,2019-05-03,1.96,5,126 +23484236,AC Room W/ Bathroom close to Northwell and JFK!,3552711,Louann,Queens,Queens Village,40.72528,-73.74738,Private room,75,2,85,2019-06-09,5.56,2,349 +23484328,BEAUTIFUL SUNNY ROOM!,6047516,Fejir,Brooklyn,Bushwick,40.68493,-73.90882,Private room,25,1,0,,,1,0 +23485307,Hotel-like Studio- loft Wall Street,170477315,Tanya,Manhattan,Financial District,40.70234,-74.01047,Entire home/apt,130,2,77,2019-06-30,4.70,1,85 +23485972,3 Bed + 2 Bath Trendy Upper East Apartment,24501817,Amanda Rose,Manhattan,Upper East Side,40.76398,-73.96581,Entire home/apt,479,1,52,2019-07-01,3.24,1,3 +23486333,Convenient and Comfy - minutes from Manhattan!,3726127,Megan And Martin,Queens,Long Island City,40.75044,-73.93961,Private room,150,4,0,,,1,0 +23486966,Cozy Exposed Brick Private Room with bathroom,42078872,Delanique,Queens,Ridgewood,40.69861,-73.90728,Private room,89,1,42,2019-06-16,2.57,1,5 +23487775,Perfect Southside Williamsburg,90334552,Elizabeth,Brooklyn,Williamsburg,40.71254,-73.96183,Entire home/apt,220,1,0,,,1,0 +23487824,BRIGHTON APARTMENT,175372759,Natali,Brooklyn,Brighton Beach,40.5788,-73.95719,Entire home/apt,175,3,21,2019-05-25,1.30,1,160 +23488012,Sparse room inside well-kept apartment,8335684,Mary,Manhattan,Inwood,40.86222,-73.93052,Private room,36,1,1,2018-04-11,0.07,3,0 +23488098,Cozy room close to subway,41326856,Jeerathinan,Queens,Elmhurst,40.74505,-73.88148,Private room,49,1,3,2019-01-01,0.19,5,35 +23488488,Bright cozy home close to Penn Station NYC❤️,166262295,Barbara,Queens,Long Island City,40.75325,-73.93538,Entire home/apt,135,30,0,,,2,159 +23489726,Bushwick Awesome Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68663,-73.91538,Entire home/apt,84,30,7,2018-12-31,0.44,26,156 +23495421,"Cozy studio, fully renovated! Near JFK & subway!",149579965,Camilo,Queens,Ozone Park,40.68936,-73.84114,Private room,60,2,35,2019-07-02,2.17,1,205 +23496215,Charming Studio,175448639,Isabel,Manhattan,Midtown,40.74633,-73.98694,Entire home/apt,170,4,47,2019-06-30,3.09,1,320 +23497936,COZY APARTMENT IN CENTRAL PARK,154955520,Natalia Carolina,Manhattan,Upper East Side,40.77255,-73.96323,Entire home/apt,126,3,52,2019-06-16,3.27,1,35 +23500071,"The Perfect Brooklyn Apt, Bushwick/Williamsburg",84503565,Jason,Brooklyn,Bushwick,40.70333,-73.92933,Private room,100,1,2,2019-05-14,0.13,2,20 +23501343,Columbia University Area,175497286,Jacob,Manhattan,Washington Heights,40.83705,-73.93843,Private room,55,1,2,2018-06-19,0.13,1,341 +23502842,Cozy East Village studio,34777741,Tiffany,Manhattan,East Village,40.72205,-73.98132,Entire home/apt,159,2,10,2019-06-19,0.70,1,17 +23504940,Cozy BK Bungalow,153189324,Mason,Brooklyn,Williamsburg,40.71436,-73.93949,Private room,90,2,16,2018-11-12,1.00,2,20 +23505465,Quiet Garden Level Studio in the heart of Brooklyn,77925223,Patrick,Brooklyn,Sunset Park,40.65683,-73.99959,Entire home/apt,90,2,41,2019-01-01,2.75,1,0 +23505645,Private room with Visit queens #5,158540605,Sonia,Queens,Glendale,40.69987,-73.88952,Private room,30,2,57,2019-07-01,3.54,6,254 +23506770,Brooklyn Designer Home!!!,5977578,Agate,Brooklyn,Crown Heights,40.67843,-73.96125,Entire home/apt,325,4,3,2018-08-23,0.27,2,98 +23507660,"Just renovated, modern, bright Lower East Side 1BR",12009770,David,Manhattan,Lower East Side,40.72177,-73.99205,Entire home/apt,250,5,0,,,1,0 +23508191,A Penthouse in Manhattan,174951212,Catherine,Manhattan,Midtown,40.764,-73.98033,Entire home/apt,550,2,0,,,1,0 +23508567,Cozy Home in Brooklyn Prime Location,13956097,Livia,Brooklyn,Williamsburg,40.71515,-73.95252,Private room,70,3,2,2019-06-09,0.32,1,223 +23513769,Lower Duplex w/Private Access+Bath by Yankees stop,175583687,Quisqueya,Bronx,Highbridge,40.83452,-73.93143,Private room,80,2,32,2019-06-07,2.07,3,17 +23514583,"Luxury High Line Chelsea Doorman, Roof Deck/Gym",19043062,Regi,Manhattan,Chelsea,40.74057,-74.00263,Entire home/apt,150,4,21,2019-06-19,1.46,2,5 +23514938,Upper Duplex w/Private Access+Bath by Yankee Stop,175583687,Quisqueya,Bronx,Highbridge,40.83593,-73.93004,Private room,80,2,29,2019-05-18,1.81,3,17 +23514988,LUXE PRIVATE HUGE 30FL ONE OF A KIND VIEW! UES,170271533,Lindsay,Manhattan,Upper East Side,40.77388,-73.94913,Private room,83,1,75,2019-06-30,4.57,1,44 +23515323,Room with a view in Greenpoint,1687425,Alex,Brooklyn,Greenpoint,40.73075,-73.95725,Private room,80,2,0,,,1,0 +23516943,"NYC Couch Crashers, Travelers, Tourists & Nomads",174511839,Caroline,Queens,Sunnyside,40.74457,-73.92307,Shared room,50,1,25,2018-10-20,1.56,1,5 +23516999,"Cozy room prime Williamsburg, 3 min to waterfront",7138515,Nils Und Isabella,Brooklyn,Williamsburg,40.71759,-73.95935,Private room,60,3,0,,,1,0 +23517220,Private 1 Bedroom in the Heart of Queens,27921386,Nathalia,Queens,Forest Hills,40.71331,-73.83474,Private room,40,1,14,2018-12-24,0.90,1,0 +23519107,Family-friendly apartment in Harlem MANHATTAN,4089511,Marie,Manhattan,Harlem,40.81164,-73.94513,Entire home/apt,165,7,2,2018-07-30,0.17,2,105 +23520803,Spacious one-bedroom apartment in Cobble Hill,16110255,Jennifer,Brooklyn,Gowanus,40.68084,-73.98964,Entire home/apt,130,7,11,2019-06-30,1.30,1,1 +23520855,Sunny in Williamsburg: Amazing Location,23667219,Zoe,Brooklyn,Williamsburg,40.71044,-73.9583,Private room,65,25,6,2018-09-02,0.42,2,0 +23521858,Big Boho-Brooklyn Heights Studio Room,51282128,Jenny,Brooklyn,Brooklyn Heights,40.69126,-73.99288,Private room,50,10,4,2019-01-05,0.25,1,0 +23523123,The Cozy Brooklyn Studio II; limited time offer,112843970,Rhonda,Brooklyn,East New York,40.67594,-73.89365,Entire home/apt,60,3,61,2019-06-19,3.73,2,127 +23524819,Cat on a Venue,15919854,Benjamin,Brooklyn,Flatbush,40.65104,-73.96275,Private room,42,5,1,2018-04-29,0.07,1,0 +23525066,Gorgeous 1-2 BDR apartment in the Lower East Side,45239300,Sophia,Manhattan,Lower East Side,40.72062,-73.98425,Entire home/apt,158,1,46,2019-07-05,2.88,1,106 +23527260,Soulful & Spacious E.V home for two or just you.,39538634,Gabija,Manhattan,East Village,40.72608,-73.98258,Entire home/apt,174,2,0,,,1,0 +23527821,Boho/Artsy Sunnywood studio! 20 min to Midtown,6073169,Audra,Queens,Sunnyside,40.74756,-73.91222,Entire home/apt,65,2,15,2019-06-04,1.02,1,27 +23528303,"Location, Luxury, and Ease: Midtown Manhattan Gem",6270663,Joseph,Manhattan,Hell's Kitchen,40.75689,-73.997,Entire home/apt,380,4,2,2018-10-01,0.14,1,0 +23528984,"L’AFRIQUE, C’EST CHIC! - 2 Bedroom Apartment",37541532,Daapo,Brooklyn,Bedford-Stuyvesant,40.67716,-73.91418,Entire home/apt,110,1,59,2019-06-20,3.70,1,248 +23529395,A cozy garden apartment,175778475,Christopher,Brooklyn,Crown Heights,40.67707,-73.94834,Entire home/apt,145,2,66,2019-07-01,4.85,1,158 +23535132,Cool apartment in Brooklyn with free cinema & gym,35506555,Jermaine,Brooklyn,Bedford-Stuyvesant,40.69167,-73.95381,Private room,77,2,6,2018-12-09,0.38,2,89 +23535279,Cinema + gym included with room,35506555,Jermaine,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95287,Private room,99,2,8,2018-11-05,0.53,2,179 +23536265,Cozy room in 2BR apartment at the Upper East,159598333,Sol,Manhattan,Upper East Side,40.78167,-73.94734,Private room,89,3,7,2019-05-15,0.68,5,213 +23537317,Cozy room on the UES,51368588,Paula,Manhattan,Upper East Side,40.76179,-73.96199,Private room,98,5,30,2019-06-22,1.97,2,23 +23538486,"Posh Park Avenue 1BR w/ Gym, Doorman in Midtown by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74891,-73.97887,Entire home/apt,305,30,1,2019-01-15,0.17,232,326 +23538694,Clean Overnight sofa bed By Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.76452,-73.9874,Shared room,75,1,53,2019-06-19,3.25,6,172 +23538841,Great location shared place by Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.7648,-73.98879,Shared room,70,1,50,2019-04-01,3.07,6,362 +23539037,Room 2- Go Back in Time in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.6439,-73.96866,Private room,68,2,69,2019-06-22,4.26,6,196 +23540194,"Immaculate townhouse in Clinton Hill, Brooklyn",67176930,Sophie,Brooklyn,Clinton Hill,40.68832,-73.96366,Entire home/apt,450,3,2,2019-05-31,0.17,1,99 +23541020,Cozy Furnished Room in Heart of Crown Heights 3BR,53597648,Bonnie,Brooklyn,Crown Heights,40.67295,-73.95883,Private room,40,1,2,2019-01-03,0.22,1,0 +23541451,Spacious Private Apartment near JFK!!,5047156,Jay,Brooklyn,East New York,40.66072,-73.87638,Entire home/apt,75,6,30,2019-06-28,1.84,1,0 +23542115,Cute private room in friendly shared living space,4265419,Mary,Brooklyn,Bedford-Stuyvesant,40.68746,-73.94648,Private room,50,1,0,,,1,0 +23544438,"Nolita One Bedroom, in heart of town very quiet",175900532,Wyatt,Manhattan,Nolita,40.72434,-73.99532,Entire home/apt,200,3,21,2019-07-02,1.46,1,124 +23544588,Spacious Apartment in the heart of Manhattan!,30672354,Malin,Manhattan,Flatiron District,40.74016,-73.98735,Entire home/apt,290,5,4,2018-07-27,0.24,2,69 +23545346,Cuarto para 3,168429942,Jennifer,Bronx,Norwood,40.87993,-73.87195,Private room,50,3,18,2019-07-02,1.16,2,326 +23545793,Last stop on the L train.,163621622,Wilfred,Brooklyn,Canarsie,40.64715,-73.90447,Entire home/apt,175,2,50,2019-06-24,3.18,1,173 +23546631,Surburban Home Near The Pier,174805880,Eileen,Brooklyn,Bay Ridge,40.63457,-74.0325,Entire home/apt,125,3,25,2019-06-12,1.57,1,348 +23548260,Spacious one bedroom apartment in Chelsea,52751563,Rory,Manhattan,Chelsea,40.74248,-73.99568,Entire home/apt,96,1,32,2019-06-02,2.03,1,2 +23549904,Lofty 2 Bedroom in Top Gramercy Location!,24475565,Julien,Manhattan,Gramercy,40.73709,-73.98027,Entire home/apt,250,2,38,2019-06-26,2.65,1,322 +23554330,Turn-Key Studio - Upper East Side - great location,7951200,David,Manhattan,Upper East Side,40.77825,-73.94719,Entire home/apt,135,12,4,2018-12-01,0.28,1,171 +23556041,Bright and modern apartment in Williamsburg!,58114733,Antonella,Brooklyn,Williamsburg,40.70923,-73.95205,Entire home/apt,140,6,3,2019-06-07,0.19,1,0 +23557996,Cozy Bushwick Room :),16400151,Henning,Brooklyn,Bushwick,40.70199,-73.92035,Private room,45,2,10,2018-04-01,0.61,1,0 +23559016,Lovely room in heart of Williamsburg,173021064,Katie,Brooklyn,Williamsburg,40.71081,-73.94965,Private room,75,2,2,2018-04-22,0.13,2,7 +23559210,Sweet Studio Manhattan,176038984,Elena,Manhattan,Midtown,40.74688,-73.98701,Entire home/apt,220,4,17,2019-02-26,1.06,1,208 +23560164,**Spacious 47th-Floor Apt** Convenient Location,38202756,Zihan,Manhattan,Chelsea,40.74968,-73.98951,Entire home/apt,186,3,4,2018-04-01,0.24,1,0 +23560187,Comfy Basement Studio,57549945,Aigner,Brooklyn,Canarsie,40.63255,-73.90742,Private room,70,2,23,2019-06-11,1.58,1,53 +23561980,Bright & Quiet Minutes from Washington Square Park,2447827,Alistair,Manhattan,NoHo,40.72822,-73.99239,Entire home/apt,175,7,12,2019-06-30,1.01,1,2 +23563112,Easy Street in Brooklyn!,23891395,Bess,Brooklyn,Park Slope,40.67066,-73.98671,Private room,55,2,5,2018-03-31,0.31,1,0 +23565616,Studio apartment w/ balcony near subway!,40078965,Nina,Queens,Elmhurst,40.73182,-73.87579,Entire home/apt,95,5,29,2019-07-04,1.81,1,120 +23565653,Beautiful Bedroom Near Barclays!,3206715,Tyler,Brooklyn,Prospect Heights,40.68013,-73.97451,Private room,640,3,3,2018-09-28,0.20,1,18 +23565676,"luxury 2 bedrom, 1 bath, 1 living room top FL view",161899037,Tony,Queens,Flushing,40.75654,-73.83146,Entire home/apt,278,2,31,2019-07-02,2.12,7,68 +23565947,Beautiful Studio,3163859,Marie,Manhattan,Upper West Side,40.79167,-73.97421,Entire home/apt,125,2,8,2018-12-31,0.50,1,176 +23566549,Harlem Gem,139935139,LeMar,Manhattan,Harlem,40.81061,-73.95125,Entire home/apt,150,2,12,2019-07-06,0.80,1,0 +23568057,Monkey Jackson height cozy,65171233,Cha,Queens,Elmhurst,40.74253,-73.88962,Private room,65,3,31,2019-07-05,2.21,2,41 +23572577,Sunny Bushwick Bedroom,20302754,Ruben,Brooklyn,Bushwick,40.69322,-73.91268,Private room,43,1,12,2019-04-22,0.76,2,47 +23573326,one Bed in room,104475208,Алексей,Brooklyn,Kensington,40.63285,-73.97483,Shared room,250,3,0,,,1,365 +23573383,Sunny Williamsburg Home,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71452,-73.95451,Entire home/apt,285,1,5,2019-05-27,0.39,4,3 +23574142,queens get away!!,176185168,Janet,Queens,Laurelton,40.68209,-73.73662,Private room,65,1,119,2018-12-24,7.79,1,0 +23574875,Spacious One-Bedroom in the Hills of Inwood,176191548,Perla,Manhattan,Inwood,40.87188,-73.91936,Entire home/apt,85,1,2,2018-04-02,0.12,1,188 +23575012,1 bedroom in heart of Union Square,170032114,Dilan,Manhattan,Gramercy,40.73419,-73.98726,Private room,120,7,2,2018-11-02,0.19,1,31 +23575358,Cozy quarters for your getaway!,165135574,Kam,Manhattan,Gramercy,40.73629,-73.98753,Entire home/apt,165,6,10,2019-07-02,0.65,1,43 +23576132,Decent Private bedroom in 3 bd apartment.,26953965,Jen Supang,Brooklyn,Williamsburg,40.71072,-73.94382,Private room,39,7,4,2018-12-19,0.45,1,0 +23576986,Spacious room near CU Mailman campus,51037916,Lujayn,Manhattan,Washington Heights,40.83767,-73.94171,Private room,39,5,0,,,1,0 +23578232,Gay friendly in NYC,6503950,Rob,Brooklyn,Bushwick,40.69401,-73.90578,Private room,40,1,12,2018-12-31,0.74,2,0 +23579457,Chelsea Luxury Alcove Studio,17477908,Mat,Manhattan,Chelsea,40.74161,-73.99435,Entire home/apt,250,30,3,2018-08-17,0.19,10,338 +23580002,Classic Brooklyn Apartment,176245949,Tone,Brooklyn,Red Hook,40.67656,-74.01656,Entire home/apt,140,2,59,2019-07-03,3.68,1,77 +23580147,Super cozy private room in artist's apartment,66865625,Aiko,Brooklyn,Bay Ridge,40.63164,-74.0292,Private room,60,2,12,2018-10-29,0.73,1,0 +23581183,Bright Williamsburg Condo,52763343,Marie,Brooklyn,Williamsburg,40.70794,-73.94404,Entire home/apt,250,4,0,,,1,0 +23582263,Bright One Bedroom on the Upper East Side,58113598,Clayton,Manhattan,Upper East Side,40.76833,-73.96156,Entire home/apt,200,3,0,,,1,0 +23582566,Beautiful 3 bed 2 bath blocks fr subway in Astoria,109327526,Rosan,Queens,Astoria,40.76509,-73.91026,Entire home/apt,135,2,57,2019-07-07,3.52,1,0 +23582823,Cozy and charming 01 bedroom studio,4436365,Marcelo,Queens,Woodside,40.75524,-73.90768,Entire home/apt,120,3,2,2019-06-04,1.50,1,180 +23583380,"Cozy Brooklyn Room, Close to Everything :)",30436005,Ashley,Brooklyn,Bedford-Stuyvesant,40.69639,-73.93724,Private room,48,3,0,,,1,0 +23583435,2 bedroom tourist heaven with outdoor space.,156557516,Ali,Queens,Long Island City,40.76044,-73.92955,Entire home/apt,200,1,54,2019-06-23,3.38,2,338 +23584115,The Sweet Spot of NYC,49523787,Joe,Manhattan,Harlem,40.8232,-73.95463,Private room,55,1,39,2019-06-10,2.37,2,153 +23584507,♥Private Master Bath | Express Train+Free Parking☆,34177401,Nick,Brooklyn,East New York,40.67563,-73.87866,Entire home/apt,86,1,154,2019-07-05,9.53,2,311 +23586315,"Comfort, light and calm just 3 minutes from mid-town",76939238,Fiorella,Manhattan,Roosevelt Island,40.75988,-73.95097,Entire home/apt,130,2,3,2018-04-10,0.20,2,300 +23593409,Chic + Relaxing Vibe + Close to Subway,12881634,Olivia,Brooklyn,Bedford-Stuyvesant,40.68221,-73.92614,Entire home/apt,112,3,43,2019-07-01,2.63,1,29 +23593582,Jestina's Place: Private bedroom & livingroom!,111262060,Jestina,Brooklyn,Flatbush,40.64105,-73.957,Private room,70,1,66,2019-06-09,4.07,1,144 +23593710,Beautiful Bright Apartment Soho,17494958,Katy,Manhattan,SoHo,40.72172,-74.0041,Entire home/apt,275,5,6,2018-10-14,0.37,3,0 +23594177,Minimalist Brooklyn Artist's Loft (Fort Greene),25096301,Ryan,Brooklyn,Fort Greene,40.68524,-73.97463,Entire home/apt,150,2,8,2018-08-11,0.52,2,11 +23595013,Studio Apartment in Manhattan,5709606,Megan,Manhattan,Upper East Side,40.77154,-73.95573,Entire home/apt,175,3,24,2019-01-01,1.48,1,0 +23595420,Designer Loft - Best location in Williamsburg,16347259,Michelle,Brooklyn,Williamsburg,40.71068,-73.96035,Entire home/apt,378,3,13,2019-07-03,0.85,1,25 +23596025,Upper West Apartment next to Central Park NEW!,43180601,Alejandra,Manhattan,Upper West Side,40.79913,-73.9632,Entire home/apt,150,12,0,,,1,0 +23596665,Beautiful 420-Friendly Private Bedroom & Bath,148564534,Matt,Brooklyn,Prospect-Lefferts Gardens,40.66094,-73.94535,Private room,65,1,69,2019-06-03,4.40,1,0 +23597076,Bronx Cozy 1 Bedroom Apartment with entire access.,176279414,Milton,Bronx,Williamsbridge,40.87021,-73.86095,Entire home/apt,85,2,83,2019-06-29,5.19,1,329 +23597323,Staten Island Studio,99270668,Joseph,Staten Island,New Dorp,40.57044,-74.11747,Entire home/apt,57,1,0,,,1,0 +23598012,"Great Home&Host, next to 1 train",60163700,Dee,Manhattan,Harlem,40.82325,-73.95243,Private room,46,14,12,2018-12-01,0.82,4,0 +23601676,Heart of Astoria 3 bedrooms apt,8994053,Alessandro,Queens,Long Island City,40.76187,-73.92762,Entire home/apt,190,2,65,2019-07-01,4.05,1,259 +23605182,Beautiful Private Room 5 min away from Mid-town,76939238,Fiorella,Manhattan,Roosevelt Island,40.76032,-73.95164,Private room,70,3,1,2019-03-17,0.26,2,358 +23605302,Chill Space in Williamsburg Great for Exploring,5252932,Shannon,Brooklyn,Williamsburg,40.70904,-73.9471,Private room,60,1,0,,,1,0 +23605375,Manhattan Gem,157658093,Kara,Manhattan,Morningside Heights,40.81453,-73.96141,Entire home/apt,125,3,3,2018-07-10,0.19,1,0 +23606434,"Bright spacious 1BD w/ CAT, Minutes from Manhattan",10284187,Rich,Brooklyn,Williamsburg,40.71849,-73.95053,Entire home/apt,175,4,2,2018-06-16,0.15,1,0 +23606468,NEW-BRIGHT-SPACIOUS-LES-W/D-2BATH-BY TRAIN-ROOFTOP,335046,Orit,Manhattan,Lower East Side,40.71374,-73.98907,Private room,100,3,10,2019-06-01,0.62,3,361 +23606605,West Village 1 br apartment w skylight&fireplace,17193773,Elizabeth,Manhattan,West Village,40.73389,-74.00086,Entire home/apt,245,60,12,2019-04-21,0.75,1,13 +23606804,Sunny One Bedroom in Bed Stuy Close to Train,5225104,Malissa,Brooklyn,Bedford-Stuyvesant,40.68016,-73.91054,Entire home/apt,68,3,19,2019-06-28,1.23,1,28 +23607625,16 mins to City - Entire 1 bedrm Williamsburg apt,4602029,Shireen,Brooklyn,Williamsburg,40.70644,-73.94339,Entire home/apt,85,6,7,2018-10-21,0.43,1,0 +23608085,Stylish bedroom in Park Slope near Barclays,1746811,Jon,Brooklyn,Park Slope,40.67913,-73.98015,Entire home/apt,95,1,8,2018-07-29,0.52,2,6 +23608594,Private Room in the Heart of Financial District,176578851,Stephanie,Manhattan,Financial District,40.71012,-74.00828,Private room,110,5,6,2018-12-31,0.37,1,0 +23608665,Huge bedroom with lots of light & free yoga/sauna!,6787883,Gabriela,Brooklyn,Carroll Gardens,40.68086,-73.9926,Private room,74,1,20,2019-05-19,1.31,4,162 +23608727,Room in Cozy Apartment,15956611,Jay R.,Manhattan,East Harlem,40.80373,-73.93594,Private room,53,21,2,2019-05-19,0.46,2,61 +23609407,Very small room near CUMC,176591085,Mike,Manhattan,Washington Heights,40.84389,-73.94127,Private room,45,1,1,2018-05-06,0.07,4,90 +23609559,"Lofted bedroom with private bath, yard & tub",1699871,Chloe,Brooklyn,Bushwick,40.68477,-73.908,Private room,125,3,1,2018-03-12,0.06,3,1 +23610064,Private room w/memory foam QUEEN bed SUNNY space,130858402,Sam,Manhattan,East Village,40.72909,-73.98986,Private room,95,1,78,2019-07-02,4.79,1,5 +23610557,Sunny Private Room in Prime Bushwick on the park!,2251176,Harold,Brooklyn,Bushwick,40.70374,-73.92497,Private room,45,3,17,2019-06-25,1.04,1,16 +23610982,Brooklyn Duplex w manhattan flare,91511951,Libertad,Brooklyn,Prospect Heights,40.6802,-73.96504,Private room,250,3,3,2018-06-13,0.21,1,0 +23611312,Spacious & Cozy Historical Flat,19922549,Dan,Manhattan,Two Bridges,40.7115,-73.9952,Entire home/apt,300,3,24,2019-06-30,1.76,1,32 +23612284,"Spacious, sunny duplex in Fort Greene, Brooklyn",2485076,Jacob,Brooklyn,Fort Greene,40.69466,-73.97151,Entire home/apt,148,3,20,2019-06-02,1.27,1,0 +23612681,Shared Room 1 Stop from Manhattan on the F Train,55724558,Taylor,Queens,Long Island City,40.76006,-73.9408,Private room,55,4,2,2019-06-01,0.65,5,89 +23612811,"Large, Sunny Private Bedroom in Kingsbridge, Bronx",19789539,Isaac,Bronx,Fordham,40.86737,-73.89415,Private room,47,3,14,2019-05-31,0.89,1,197 +23612855,"Bookish apt near City College, Columbia University",99256824,Amy,Manhattan,Harlem,40.82197,-73.94948,Entire home/apt,250,30,0,,,1,0 +23612962,Modern Luxury Studio in Manhattan,15798930,Sunil,Manhattan,Financial District,40.70438,-74.00856,Entire home/apt,115,7,5,2018-07-08,0.32,1,0 +23613174,Quiet Oasis. A nice break from city chaos.,3741154,Esther,Brooklyn,Bushwick,40.68892,-73.90495,Private room,55,2,1,2018-03-06,0.06,1,0 +23613576,♥Private Home Express Subway Station+Free Parking☆,34177401,Nick,Brooklyn,East New York,40.67426,-73.87969,Entire home/apt,140,1,30,2019-07-07,2.18,2,4 +23613688,Clean Spacious Duplex by Yankee Stadium,175583687,Quisqueya,Bronx,Highbridge,40.83604,-73.93099,Entire home/apt,240,1,22,2019-06-24,1.40,3,1 +23613805,Apartment near Grand Central. Great Location,176651039,Lindsay,Manhattan,Murray Hill,40.74681,-73.97911,Entire home/apt,140,300,0,,,1,331 +23614276,"Apto En la exclusiva zona Austin St, Forest Hills",176660539,Veronica,Queens,Forest Hills,40.71895,-73.84249,Private room,120,1,3,2018-10-07,0.29,1,322 +23614417,478 BROOKLYN 2 bedrooms/2 bathrooms (974sf),176663321,Nathalie,Brooklyn,Clinton Hill,40.68235,-73.96128,Entire home/apt,200,30,6,2019-05-31,0.41,1,266 +23620624,A place to call home away from home,128832652,Joseph,Brooklyn,Bushwick,40.69308,-73.91882,Shared room,50,1,0,,,1,0 +23620728,Huge Private Garden Apt - Memory Foam Mattress,17105274,Matt,Brooklyn,Bushwick,40.69166,-73.90314,Private room,49,14,5,2019-06-03,0.34,2,163 +23622168,Spacious Fort Greene Apartment Near All Trains,12968185,Cristy,Brooklyn,Fort Greene,40.6865,-73.97494,Entire home/apt,175,2,0,,,1,0 +23623267,"Spacious, 1 bdr apartment. Great light and views.",24648109,Tanya,Manhattan,Battery Park City,40.70615,-74.01719,Entire home/apt,180,4,0,,,1,0 +23624930,Lisa's Comfort Zone,176763105,Lisa,Queens,Jamaica,40.6743,-73.78471,Private room,70,1,41,2019-05-05,2.76,1,67 +23626799,LUXURY TWO BEDROOM TWO BATHROOM APT,7918430,Stephen Lionel,Manhattan,Harlem,40.80765,-73.95244,Entire home/apt,400,4,7,2019-06-25,0.93,2,244 +23626886,Excellent for Vacation or Business - Heart of NYC,176436884,Leona,Manhattan,Greenwich Village,40.7323,-73.99433,Entire home/apt,199,2,69,2019-07-03,4.23,1,112 +23627524,Private Apartment steps from Central Park,2801739,Alysha,Manhattan,East Harlem,40.78757,-73.95402,Entire home/apt,194,1,19,2019-05-17,1.23,1,177 +23627589,Garden Apartment,170444830,Pramila,Manhattan,Chelsea,40.75102,-73.99841,Entire home/apt,500,30,2,2018-03-09,0.12,1,179 +23628745,"Queen Bedroom besides Central Park, West Side",176809727,Cristian,Manhattan,Upper West Side,40.80076,-73.96236,Private room,105,2,38,2019-06-16,2.38,1,300 +23628818,Female Only UWS Apartment,176810211,Paris,Manhattan,Upper West Side,40.79902,-73.96692,Private room,70,1,1,2018-04-17,0.07,1,0 +23629119,"Room in the heart of Williamsburg, Brooklyn",32130349,Michael,Brooklyn,Williamsburg,40.71876,-73.94341,Private room,50,1,0,,,1,0 +23629364,BEST value in Midtown! 1-bdrm luxury condo.,133288905,Cherie,Manhattan,Midtown,40.75321,-73.97132,Entire home/apt,187,3,12,2019-04-22,0.86,3,6 +23629960,"Bright, spacious loft in the heart of Soho",33153151,Ellen,Manhattan,Greenwich Village,40.7275,-74.0,Entire home/apt,250,2,14,2019-06-01,1.24,1,0 +23630216,Cozy Studio Apartment in East Village,51969502,Jenny,Manhattan,East Village,40.7289,-73.98865,Private room,53,3,1,2018-03-16,0.06,1,0 +23630510,Confortable and full furnished private bedroom,101736132,Alex,Brooklyn,Bushwick,40.69051,-73.91557,Private room,50,3,0,,,2,86 +23630582,Peaceful apartment near Prospect Park,26557574,Aurora,Brooklyn,Prospect Heights,40.67905,-73.97238,Entire home/apt,100,5,1,2018-03-24,0.06,1,0 +23630829,"Modern, Comfortable and Clean Bushwick Apartment",23220666,Catherine,Brooklyn,Bushwick,40.69121,-73.92099,Private room,65,2,9,2018-05-28,0.56,1,0 +23631288,Lower East Side Oasis (private room),173406651,Dan,Manhattan,Lower East Side,40.71967,-73.98311,Private room,110,2,29,2019-03-29,2.02,2,117 +23631575,Bright and spacious room two blocks from park!,2515199,Marcie,Brooklyn,Flatbush,40.65232,-73.96208,Private room,36,2,11,2018-06-17,0.68,1,0 +23631725,Private Cozy Room,176679165,Sherry,Queens,Corona,40.73917,-73.86362,Private room,40,1,78,2019-06-19,4.81,2,69 +23632578,Chelsea Studio Steps from Madison Square Garden,3717633,Tony,Manhattan,Chelsea,40.75129,-73.99561,Entire home/apt,185,2,32,2019-06-23,2.02,1,47 +23632853,Entire sunny 2-floor loft in East Williamsburg,6023250,Kate,Brooklyn,Williamsburg,40.70984,-73.9433,Entire home/apt,175,2,4,2019-05-13,0.45,1,27 +23633175,Private room in a huge Red Hook loft,1772509,Jane,Brooklyn,Red Hook,40.67923,-74.00651,Private room,65,1,13,2018-10-21,0.90,2,160 +23633872,Private Room in Crown Heights,91182678,David,Brooklyn,Crown Heights,40.67413,-73.9398,Private room,42,2,10,2018-07-23,0.64,1,10 +23634984,Shared male room with bunk beds for rent for MALE,176890090,Gani,Brooklyn,Crown Heights,40.67799,-73.94222,Shared room,25,2,13,2019-04-30,0.81,1,81 +23635601,"Cozy, Sunny Bedroom available in Crown Heights",18485718,Luka,Brooklyn,Crown Heights,40.66798,-73.95528,Private room,72,2,16,2019-06-23,0.99,1,0 +23636223,Upper West Side Manhattan Comfort 2,67768251,Felipe,Manhattan,Upper West Side,40.78353,-73.97802,Private room,45,30,4,2019-04-30,0.36,3,242 +23642287,Hip 1 Bedroom w/Buddha Awaits You in Brooklyn,270404,Lo,Brooklyn,Crown Heights,40.67186,-73.93684,Entire home/apt,77,6,15,2019-05-17,0.94,1,32 +23642811,Cozy 1 Bedroom on the Upper West Side,176964342,Robert,Manhattan,Upper West Side,40.7748,-73.97922,Private room,120,2,4,2018-04-01,0.24,1,0 +23643300,Brooklyn One-bedroom: steps from Prospect Park,38672932,Meg,Brooklyn,Prospect-Lefferts Gardens,40.65609,-73.95781,Entire home/apt,70,1,6,2019-05-12,0.39,1,0 +23644347,Private Sunshine Room,176679165,Sherry,Queens,Corona,40.73726,-73.8632,Private room,35,1,78,2019-06-22,4.82,2,75 +23644523,Private & Peacful | Entire Place | High-Line,11243113,Terry,Manhattan,West Village,40.73976,-74.00953,Entire home/apt,200,10,11,2018-12-07,0.76,1,365 +23644644,"Private, Spacious 2BR Apt",52549310,Melissa,Queens,Ditmars Steinway,40.77462,-73.91021,Private room,70,2,6,2018-08-05,0.38,1,0 +23644901,"Modern, lux BDR breakfast airport pickup included!",51088192,Sama,Brooklyn,Bedford-Stuyvesant,40.69028,-73.94163,Private room,100,3,0,,,1,364 +23646295,La Quinta Central Park West,172544686,Vijay,Manhattan,Upper West Side,40.77597,-73.97686,Private room,179,1,4,2018-03-17,0.25,4,270 +23647298,Cozy Upper East Side Studio Apartment,142765455,Genna,Manhattan,Upper East Side,40.78268,-73.94977,Entire home/apt,110,3,2,2018-08-12,0.14,1,0 +23648504,2-bdrm Luxury Condo in Midtown,133288905,Cherie,Manhattan,Midtown,40.75173,-73.9727,Entire home/apt,374,3,11,2019-06-26,0.84,3,3 +23649611,Comfortable Kips Bay for the Holidays,2653232,Anna,Manhattan,Kips Bay,40.74477,-73.98004,Entire home/apt,133,6,0,,,1,0 +23649906,2 Bedroom Brooklyn Apt Minutes from NYC Landmarks.,177036542,Bashiri,Brooklyn,Bedford-Stuyvesant,40.6845,-73.95804,Entire home/apt,175,2,44,2019-07-01,2.72,1,285 +23650008,Bedstuy/Bushwick home in the urban jungle,123453141,Hugo,Brooklyn,Bedford-Stuyvesant,40.69266,-73.9399,Private room,42,2,8,2019-01-13,0.50,1,0 +23650259,"1 private bedroom in Lower East Side, Manhattan",176983812,Lawrence,Manhattan,Lower East Side,40.72142,-73.98411,Private room,350,10,2,2018-05-05,0.13,1,87 +23650568,2 Bedroom by Bayside Train 21 mins from Manhattan,24771677,Noelle,Queens,Bayside,40.76324,-73.77111,Entire home/apt,200,2,45,2019-06-30,2.84,1,42 +23650576,Brooklyn Villa,177045672,Rene,Brooklyn,Bushwick,40.69786,-73.93287,Private room,65,3,4,2018-04-21,0.25,1,342 +23650831,Spacious room in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.71384,-73.94228,Private room,55,15,0,,,2,1 +23651443,Matilda's House,32772480,Lorna,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.96031,Entire home/apt,150,3,10,2019-07-02,0.64,2,187 +23652689,Harlem Hideaway,157845873,Rainier,Manhattan,Harlem,40.81798,-73.93956,Private room,115,1,53,2019-04-25,3.33,1,0 +23654584,Comfortable Shared Apt In Midtown,175180318,Gúney,Manhattan,Hell's Kitchen,40.76534,-73.98701,Shared room,75,1,59,2019-06-30,3.64,6,362 +23660051,Room 3 - 1920's Style in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64318,-73.96835,Private room,62,2,67,2019-06-24,4.19,6,50 +23660605,Private Bedroom w/ Balcony view of Central Park,177146433,,Manhattan,East Harlem,40.79766,-73.94824,Private room,139,1,6,2018-08-12,0.46,1,0 +23660722,Beauty Renovated 1br +Balcony fully furnished!,26584499,Ofir,Manhattan,Upper West Side,40.78299,-73.98318,Entire home/apt,150,31,1,2018-06-01,0.07,8,332 +23661749,Neat room at great location,24595687,Virginia,Brooklyn,Clinton Hill,40.68303,-73.96317,Private room,75,7,1,2018-06-27,0.08,1,0 +23662000,omoh comfort,177157966,Lohlah,Queens,St. Albans,40.69147,-73.76013,Private room,45,3,9,2018-11-04,0.57,1,90 +23662887,Welcoming space w/ private room in Upper Manhattan,20618692,Mytasha,Manhattan,Washington Heights,40.83711,-73.94438,Private room,90,1,32,2019-05-06,2.02,1,5 +23664280,"One bedroom apt in Astoria, close to subway stop",921431,Camila,Queens,Ditmars Steinway,40.77113,-73.90459,Entire home/apt,113,2,51,2019-06-28,3.26,1,41 +23664324,Beautiful two Bedroom Apartment,9638130,Amit,Brooklyn,Williamsburg,40.71198,-73.94932,Private room,100,4,0,,,1,89 +23664916,"Beautiful 2 level apt, center of it Fort Greene!",8993896,Julie,Brooklyn,Fort Greene,40.69011,-73.96999,Entire home/apt,186,4,2,2019-06-04,1.36,2,22 +23665341,"Sunny 1BR in Sunnyside, Queens",176793977,Patrizia,Queens,Sunnyside,40.74035,-73.91663,Private room,60,7,0,,,1,0 +23666777,LATE CHECK IN DISCOUNT! NO CLEANING FEE! 2/5 train,82889379,Shera,Bronx,Woodlawn,40.89873,-73.86449,Private room,34,1,122,2019-06-28,8.24,4,5 +23667137,"Safe Area Huge Room/ELECTRIC MASSAGE BED QUEENS,NY",115151548,Beethoven,Queens,Hollis,40.714,-73.77787,Private room,72,5,6,2018-07-02,0.38,1,364 +23667332,The Turquoise Room,107040079,Jonathon,Brooklyn,Crown Heights,40.66561,-73.94156,Private room,42,4,36,2019-06-05,2.34,2,292 +23668381,"Luxurious, Sunny Apartment Overlooking Park",1590148,Tom,Brooklyn,Williamsburg,40.71813,-73.94931,Entire home/apt,250,2,2,2019-01-20,0.31,1,0 +23668731,Family studio beside Empire State #68,177174475,Alberto,Manhattan,Midtown,40.74805,-73.9868,Entire home/apt,120,1,8,2019-03-26,0.53,17,267 +23668732,Family Studio beside Empire State #3,177174475,Alberto,Manhattan,Midtown,40.74677,-73.98698,Entire home/apt,120,1,6,2019-03-30,0.40,17,246 +23668733,Double Studio beside Empire State #6,177174475,Alberto,Manhattan,Midtown,40.74776,-73.98668,Entire home/apt,107,1,0,,,17,208 +23668734,Deluxe Studio view Empire State #10,177174475,Alberto,Manhattan,Midtown,40.74796,-73.98814,Entire home/apt,137,1,10,2019-05-05,1.03,17,182 +23668735,Deluxe Apartment view Broadway #5,177174475,Alberto,Manhattan,Midtown,40.74731,-73.98821,Entire home/apt,163,1,11,2019-05-19,1.42,17,221 +23668736,One Bedroom Apartment beside Empire State #9,177174475,Alberto,Manhattan,Midtown,40.74636,-73.98681,Entire home/apt,153,1,7,2019-05-27,0.49,17,226 +23668737,Family Studio beside Empire State #53,177174475,Alberto,Manhattan,Midtown,40.74793,-73.98834,Entire home/apt,120,1,3,2019-02-08,0.47,17,257 +23668738,Deluxe Studio view Empire State #8,177174475,Alberto,Manhattan,Midtown,40.74826,-73.98873,Entire home/apt,137,1,7,2019-03-10,0.96,17,218 +23668739,Family Studio besides Empire State Building #59,177174475,Alberto,Manhattan,Midtown,40.74825,-73.98853,Entire home/apt,120,1,3,2019-04-01,0.51,17,200 +23668740,Deluxe Studio view Broadway #4,177174475,Alberto,Manhattan,Midtown,40.74657,-73.98691,Entire home/apt,163,1,8,2019-05-22,0.63,17,225 +23668741,One Bedroom Apartment beside Empire State #4,177174475,Alberto,Manhattan,Midtown,40.7474,-73.98685,Entire home/apt,153,1,4,2019-06-27,0.27,17,216 +23668742,Family Studio beside Empire State #52,177174475,Alberto,Manhattan,Midtown,40.74649,-73.98723,Entire home/apt,137,1,5,2019-03-21,0.34,17,162 +23668743,Family Studio near Empire State #56,177174475,Alberto,Manhattan,Midtown,40.74796,-73.98788,Entire home/apt,120,1,7,2019-06-01,0.51,17,232 +23668745,Family Apartment One Bedroom beside Empire State #62,177174475,Alberto,Manhattan,Midtown,40.74653,-73.98717,Entire home/apt,208,1,4,2019-05-18,0.30,17,215 +23668746,One Bedroom Apartment beside Empire State #6,177174475,Alberto,Manhattan,Midtown,40.74706,-73.98689,Entire home/apt,153,1,7,2019-04-01,0.70,17,234 +23668747,Deluxe Apartment Fith Ave View #89,177174475,Alberto,Manhattan,Midtown,40.74643,-73.98729,Entire home/apt,163,1,8,2019-03-27,0.57,17,239 +23668754,Sunlit Charming Studio in Park Slope,29918034,Emily,Brooklyn,Park Slope,40.6701,-73.98151,Entire home/apt,110,30,25,2019-06-25,1.63,1,125 +23668849,♔ 1min to Center of Times Square & 42nd St. ♔,162586833,Edwin,Manhattan,Hell's Kitchen,40.75869,-73.99068,Private room,400,2,19,2019-06-24,1.33,1,166 +23668975,Live like a New Yorker! Easy access to all...,130804,Heather,Manhattan,Washington Heights,40.8331,-73.94347,Private room,65,2,0,,,1,0 +23669006,"4 bdrm Riverdale apt, 15-30 minutes to Manhattan",2965556,Mj,Bronx,Spuyten Duyvil,40.88316,-73.91151,Entire home/apt,360,2,8,2019-06-16,0.51,1,71 +23669140,Beautiful 1 BD Apt in Upper West Manhattan,43264429,דניאל,Manhattan,Morningside Heights,40.80454,-73.9645,Private room,120,1,2,2018-12-24,0.16,1,0 +23669201,Great Price: Williamsburg Brooklyn Loft off L stop,2438,Tasos,Brooklyn,Williamsburg,40.71412,-73.94447,Entire home/apt,95,45,1,2018-03-17,0.06,1,0 +23669328,Private Bedroom in Apartment in Bushwick & Bedstuy,19356927,Dylan,Brooklyn,Bushwick,40.68754,-73.91411,Private room,50,1,80,2019-06-28,5.10,1,57 +23669381,Sunny Room in Williamsburg,7168913,Joaquin,Brooklyn,Williamsburg,40.71594,-73.9573,Private room,65,14,0,,,1,0 +23670513,Nice place for ladies only,177161276,Sissy,Bronx,Olinville,40.88455,-73.86587,Shared room,26,1,10,2019-03-07,0.67,1,312 +23671009,"PARK SLOPE REDESIGNED apt 2 BDRS trains F,G,R,2,3!",87786261,Sophia,Brooklyn,South Slope,40.66094,-73.98652,Entire home/apt,189,1,5,2019-03-10,0.43,5,270 +23671775,Large and beautiful room in Bedford,129483977,Vincent,Brooklyn,Williamsburg,40.71166,-73.96054,Private room,60,2,0,,,1,0 +23678832,"Stylish, Peaceful Greenpoint Bed & Bath",1420659,Melanie,Brooklyn,Greenpoint,40.72294,-73.94902,Private room,150,5,0,,,1,310 +23681735,1 Bedroom Apt with Terrace in East Village-Terrace,177353847,East Village,Manhattan,East Village,40.72619,-73.99019,Entire home/apt,400,4,8,2019-06-03,0.51,4,161 +23682503,Private Bedroom in a well-furnished Manhattan Apt,27245,Maryam,Manhattan,Midtown,40.75532,-73.9654,Private room,90,2,15,2018-11-05,0.93,1,0 +23682816,2 Bedroom Presidential Suite - Wyndham Midtown 45,11186022,Tyler,Manhattan,Midtown,40.75311,-73.97306,Private room,400,3,2,2018-06-14,0.14,1,2 +23683049,Luxurious Three Bedroom,80344984,Alexis,Manhattan,Harlem,40.82733,-73.94937,Entire home/apt,245,3,28,2019-06-26,1.74,1,272 +23683504,Spacious private bedroom across from Fulton Center,51429969,Nick,Manhattan,Financial District,40.71049,-74.00869,Private room,100,3,3,2018-07-29,0.19,1,0 +23683520,Brownstone 439,90834217,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6832,-73.93469,Entire home/apt,125,2,53,2019-06-26,3.44,1,215 +23683924,Stunning designer loft in the heart of Downtown,6238348,Patrizio,Manhattan,Civic Center,40.71353,-73.99925,Entire home/apt,220,15,4,2019-05-01,0.25,1,9 +23684349,Bright private bedroom in Prime Williamsburg!,319707,Kat,Brooklyn,Williamsburg,40.71077,-73.95159,Private room,49,7,0,,,1,37 +23684655,Comfy and Spacious Oasis in Artsy Neighborhood,10964365,Ermina,Queens,Ridgewood,40.70741,-73.91421,Private room,55,3,13,2019-05-25,0.82,1,83 +23684864,Fort Greene 3 bedroom duplex apartment,13788158,Amir,Brooklyn,Fort Greene,40.69392,-73.97114,Entire home/apt,250,3,37,2019-06-23,2.39,2,140 +23684973,"Gramercy Park. Private, on the park",7201216,Emmanuel,Manhattan,Gramercy,40.7368,-73.98518,Private room,110,1,69,2019-06-23,4.34,1,176 +23685538,1 bedroom in a 2 bedroom house,37286422,Abir,Queens,Briarwood,40.70739,-73.81327,Private room,45,2,18,2018-08-09,1.15,1,0 +23685999,1bedroom with private bathroom,22779744,April,Queens,East Elmhurst,40.77127,-73.87123,Private room,100,1,0,,,1,0 +23686606,Huge 1BR Wes Anderson Style Manhattan Apartment,4810688,Kaiti,Manhattan,Harlem,40.8067,-73.95621,Entire home/apt,175,3,43,2019-06-23,2.89,1,37 +23687344,"Large Room in Brownstone, heart of historic Harlem",27046912,Tara & Carl,Manhattan,Harlem,40.80554,-73.95586,Private room,81,4,41,2019-07-03,2.56,2,28 +23690062,Beautiful Shared Apt in West Midtown,175180318,Gúney,Manhattan,Hell's Kitchen,40.76502,-73.98702,Shared room,75,1,59,2019-06-23,3.64,6,174 +23691189,"Bright cozy room near Subway (M, J, Z, G trains)",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69475,-73.9405,Shared room,37,30,3,2019-01-13,0.21,10,342 +23691588,Spacious shared room in modern Bed-Stuy,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69312,-73.94073,Shared room,32,31,4,2019-03-16,0.28,10,341 +23692933,Luxury Townhouse w Balcony in West Village / Soho,170534355,Gabriella,Manhattan,West Village,40.72884,-74.00285,Entire home/apt,200,5,54,2019-06-02,3.34,1,242 +23694603,"Lovely, sunny apt in Williamsburg close to L",1006421,Susana,Brooklyn,Williamsburg,40.71432,-73.94751,Entire home/apt,120,14,2,2018-07-21,0.16,1,177 +23696307,"Lovely 2 bdr loft in Clinton Hill, Brooklyn",3464870,Nina,Brooklyn,Bedford-Stuyvesant,40.69219,-73.95851,Entire home/apt,150,3,11,2019-06-09,0.80,1,2 +23696695,Large and bright private space in shared house!,10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68486,-73.93822,Private room,70,1,2,2019-06-09,0.15,2,0 +23698480,Compact & Cozy Greenpoint Room,5022499,Bryan,Brooklyn,Greenpoint,40.72407,-73.94762,Private room,40,1,0,,,1,0 +23700333,Private room only 1 min from Empire state Building,18882408,Rina,Manhattan,Midtown,40.74995,-73.98602,Private room,108,3,7,2019-04-28,0.44,1,0 +23700385,Two bedroom near the Cloisters,8335684,Mary,Manhattan,Inwood,40.86302,-73.92982,Entire home/apt,91,1,2,2018-04-01,0.13,3,0 +23702051,Private Bedroom in Greenpoint,1327095,Kamilla,Brooklyn,Greenpoint,40.73343,-73.95282,Private room,140,2,0,,,1,0 +23702074,Sonder | 180 Water | Lovely 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70738,-74.00493,Entire home/apt,212,29,0,,,96,332 +23702317,The Greenland In Harlem NYC,177562935,Virginia,Manhattan,Harlem,40.81304,-73.9456,Private room,105,1,35,2019-06-30,3.04,2,60 +23702356,The Yellow CropTop in Harlem NYC,177562935,Virginia,Manhattan,Harlem,40.81274,-73.9455,Private room,147,1,3,2019-04-22,0.30,2,57 +23702442,Sonder | 180 Water | Delightful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70753,-74.00514,Entire home/apt,205,29,1,2018-05-04,0.07,96,338 +23702555,Cozy LES 1 Bedroom!,10434360,Stephen,Manhattan,Lower East Side,40.72003,-73.98588,Entire home/apt,92,2,12,2018-11-25,0.74,1,0 +23703345,Home Away From Home-2,147721837,Karen,Brooklyn,East New York,40.6663,-73.87448,Entire home/apt,139,3,25,2019-06-24,1.61,2,70 +23708317,Sunny and Spacious Artist's Haven,17125526,Elizabeth,Queens,Astoria,40.76119,-73.92379,Private room,100,2,1,2018-08-26,0.09,1,0 +23709593,SUNNY X-LARGE ROOM WITH RIVER VIEWS,128416096,Jennifer,Manhattan,Harlem,40.82165,-73.95593,Private room,55,5,1,2018-07-01,0.08,1,38 +23709995,Comfortable 1 Bedroom Gem in Chinatown / Lil Italy,153390633,Michelle,Manhattan,Chinatown,40.71735,-73.99956,Entire home/apt,80,1,73,2019-06-27,4.54,1,183 +23710983,Private light filled room in spacious apartment,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65626,-73.9577,Private room,75,4,6,2019-01-01,0.39,2,0 +23712143,2e chambre pour 1 personne où couple,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82434,-73.91377,Private room,40,2,80,2019-07-04,5.01,2,291 +23713359,Entire Apartment in super convenient location,1581733,Alfredo,Brooklyn,Williamsburg,40.7109,-73.95916,Entire home/apt,400,2,3,2018-11-23,0.21,2,0 +23713405,Sonder | 180 Water | Luxurious 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70805,-74.00581,Entire home/apt,205,29,2,2018-08-17,0.14,96,10 +23713463,Large Master Bedroom & Private Bath,42741722,Tanya,Manhattan,Harlem,40.82065,-73.95444,Private room,70,2,6,2018-04-06,0.37,2,0 +23713825,Private Room,145252418,Claudio,Manhattan,East Harlem,40.80386,-73.93618,Private room,80,1,47,2019-07-07,3.41,3,178 +23714194,Spacious Sunny Studio- heart of Lower East Side,15603100,Brooke,Manhattan,Lower East Side,40.71908,-73.98379,Entire home/apt,220,2,40,2019-05-13,2.51,1,1 +23714684,Sonder | 180 Water | Stunning 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70656,-74.00499,Entire home/apt,215,29,0,,,96,343 +23714854,Gorgeous Room in Downtown Designer Apartment,48911266,Tess,Manhattan,Two Bridges,40.71262,-73.99592,Private room,119,3,17,2019-05-15,1.31,2,86 +23714915,Grad Pad Oasis,177714844,Chuck,Brooklyn,Flatbush,40.64135,-73.96811,Private room,44,30,1,2018-03-23,0.06,1,0 +23715256,One Bedroom Apt with a terrace + view - Times Sq,4112404,Vero,Manhattan,Hell's Kitchen,40.76535,-73.99252,Entire home/apt,199,5,0,,,3,9 +23715974,Spacious & Sunny Central Park West Apartment,3635762,Daphne,Manhattan,Harlem,40.80389,-73.95712,Entire home/apt,190,5,0,,,1,0 +23716003,Private room in beautiful Brooklyn apartment,109874158,Zac,Brooklyn,Clinton Hill,40.69244,-73.96626,Private room,45,3,0,,,1,0 +23718065,Room for rent in a family house,177761074,Alexandra,Queens,Long Island City,40.75373,-73.91902,Private room,60,1,1,2019-06-30,1,1,326 +23719597,1 BR Near Union Square - a bridge to all boroughs,31665801,Harry,Manhattan,East Village,40.73294,-73.98847,Entire home/apt,178,3,40,2019-06-05,2.75,2,83 +23722695,Luxe Elegance in the <3 of Brooklyn,23818330,Emily,Brooklyn,Prospect Heights,40.67839,-73.96791,Entire home/apt,750,7,0,,,1,0 +23723855,Sunny Room in Townhouse near Central Park,28752891,Sarah,Manhattan,Upper West Side,40.79114,-73.9671,Private room,175,4,11,2019-06-27,0.77,2,63 +23723970,"Room w private bathroom, shower & patio",10331194,Lauren,Brooklyn,Bedford-Stuyvesant,40.68872,-73.92425,Private room,49,5,0,,,1,0 +23725946,Cozy Oasis is Clinton Hill.,13963575,Khorkhe,Brooklyn,Clinton Hill,40.69404,-73.96233,Entire home/apt,130,3,15,2019-06-23,1.06,1,41 +23727037,Brooklyn's Best Kept Secret,127345864,Charlene,Brooklyn,East Flatbush,40.64174,-73.93193,Entire home/apt,135,2,26,2019-07-03,2.21,4,29 +23727326,Spacious brand new apartment 2 bedrooms - 2bath,5832321,Kalani,Queens,Glendale,40.69589,-73.89572,Entire home/apt,100,2,57,2019-07-05,3.68,2,267 +23727923,2 Bedroom Apt Newly renovated-10 Min to Times SQ.,116067987,Kimberley,Queens,Astoria,40.75569,-73.92175,Entire home/apt,325,2,2,2019-07-03,2,2,365 +23728057,Luxurious Brooklyn Getaway - Two Bedroom Apartment,15681707,Joycelyn,Brooklyn,Crown Heights,40.67363,-73.91385,Entire home/apt,150,2,49,2019-06-29,3.31,3,210 +23728069,Marlborough Road Air BnB,83899060,Mel,Brooklyn,Flatbush,40.64448,-73.96397,Entire home/apt,100,4,20,2019-07-01,1.25,1,328 +23728251,Private Room in Big Classic Williamsburg Art Space,9223263,Eric,Brooklyn,Williamsburg,40.71665,-73.96269,Private room,45,3,3,2018-04-11,0.19,1,0 +23729632,"Sunny, clean & cozy room in Williamsburg",142248429,Mafer,Brooklyn,Williamsburg,40.71166,-73.95955,Private room,75,6,25,2019-07-03,1.79,1,84 +23729711,Quiet and Secluded Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79068,-73.94461,Private room,30,1,15,2018-04-30,0.94,3,0 +23733244,Bushwick Oasis,6106609,Florentino & Brian,Brooklyn,Bushwick,40.68965,-73.91648,Private room,130,2,30,2019-06-18,2.05,1,290 +23741304,Private master bed and bath in Astoria,59860568,Molly,Queens,Astoria,40.76708,-73.92315,Private room,75,7,0,,,1,0 +23741795,"Cozy, Eclectic Brooklyn Getaway",75469247,Chiara,Brooklyn,Crown Heights,40.67774,-73.95742,Entire home/apt,105,1,39,2019-06-24,2.44,1,38 +23742000,Spacious modern Apt-only 2feet from Subway!,50003794,Jennifer,Queens,Elmhurst,40.74177,-73.88445,Entire home/apt,75,1,31,2018-11-15,1.97,1,0 +23743988,"PRIVATE CLEAN APARTMENT, NEXT TO CENTRAL PARK!",85572162,Whitney,Manhattan,Upper West Side,40.7943,-73.967,Entire home/apt,150,3,42,2019-05-08,2.72,1,3 +23744530,Very Spacious 1BR with Park View,3447309,Mie,Manhattan,Harlem,40.80201,-73.95774,Entire home/apt,89,5,1,2018-12-09,0.14,2,7 +23744762,Large Yankee stadium Bronx bedroom in spacious apt,8159536,Genae,Bronx,Concourse Village,40.83086,-73.92025,Private room,57,1,6,2019-03-11,0.42,3,220 +23744773,Central Park West Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77706,-73.97788,Private room,800,1,0,,,4,269 +23745442,"COZY PRIVATE ROOM, FLUSHING QUEENS Big room",178059867,Kevin,Queens,Flushing,40.7561,-73.80622,Private room,50,1,63,2019-06-17,3.94,3,156 +23745732,*Prime East Village* Quiet & Spacious 2BR Flat,178062766,Andy,Manhattan,East Village,40.73114,-73.98869,Entire home/apt,325,5,44,2019-06-18,2.77,1,179 +23746579,"Spacious,sunny, artistic loft by the L train",124357,Alex,Brooklyn,Williamsburg,40.71603,-73.95432,Entire home/apt,300,1,70,2019-07-05,4.63,3,1 +23746801,Central Park Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77606,-73.97803,Private room,219,1,0,,,4,269 +23747164,"Artsy NYC Apt & BACKYARD, 7 Minutes to Manhattan",83824521,Suzane,Queens,Long Island City,40.75815,-73.92893,Entire home/apt,150,4,41,2019-06-30,2.65,1,175 +23747567,"ARTIST APARTMENT, PERFECT LOCATION",1636933,Antonio,Manhattan,Hell's Kitchen,40.76027,-73.98831,Entire home/apt,99,30,55,2018-10-04,3.50,1,63 +23747870,Gjob,174838527,Weeks,Queens,Richmond Hill,40.69282,-73.82849,Shared room,100,1,0,,,1,0 +23747957,Modern Harlem Gem,36052067,Alex & Yoly,Manhattan,East Harlem,40.80185,-73.94515,Entire home/apt,250,2,17,2019-06-30,5.54,1,47 +23748179,Spacious formal apt mins from midtown or Columbia,6854910,Scott,Manhattan,Harlem,40.80849,-73.94244,Private room,150,7,0,,,1,0 +23748601,"Spacious Park View Parlor Floor, Artists Townhouse",477787,Juliette,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92009,Entire home/apt,112,2,48,2019-05-26,3.04,1,0 +23749162,West Village Paradise - Large 1 bedroom,6989615,Emanuel,Manhattan,West Village,40.74069,-74.00546,Entire home/apt,175,3,18,2019-06-09,1.13,1,175 +23749862,Great Space Location Location Location,20447869,Burton,Manhattan,Kips Bay,40.74499,-73.97926,Private room,95,5,1,2018-03-19,0.06,2,0 +23750601,Charming & inviting Brooklyn Brownstone apartment,3605048,Julia,Brooklyn,Bedford-Stuyvesant,40.68052,-73.92952,Entire home/apt,100,2,25,2019-04-08,1.55,1,65 +23750623,Sonder | 180 Water | Grand 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70786,-74.00476,Entire home/apt,220,29,0,,,96,220 +23751205,Sonder | 180 Water | Bold 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70791,-74.00445,Entire home/apt,227,29,0,,,96,267 +23752247,Super sunny 1BR apartment in West Village,178123507,Cory,Manhattan,West Village,40.7328,-74.00306,Entire home/apt,280,3,9,2019-05-10,0.56,1,0 +23752922,Luxurious Townhouse in Williamsburg,6513281,Pascal-Louis,Brooklyn,Williamsburg,40.71339,-73.94873,Entire home/apt,750,5,2,2019-01-01,0.13,2,178 +23753607,Bright & spacious room in Brooklyn sanctuary,131829860,Anna,Brooklyn,East Flatbush,40.63621,-73.94968,Private room,55,3,1,2018-03-18,0.06,1,0 +23753775,Soho Studio In heart of Manhattan,2250865,Jacqueline,Manhattan,SoHo,40.72639,-74.00687,Entire home/apt,165,2,0,,,1,0 +23754446,1 bedroom apartment on West 34th street,76104209,Rated,Manhattan,Midtown,40.75015,-73.98651,Entire home/apt,200,30,0,,,33,365 +23754556,Studio on East 44th street and 2nd Ave,76104209,Rated,Manhattan,Midtown,40.75132,-73.96926,Entire home/apt,159,30,0,,,33,364 +23754635,1 bedroom apartment on Columbus Avenue,76104209,Rated,Manhattan,Upper West Side,40.79446,-73.96655,Entire home/apt,200,30,0,,,33,364 +23755278,SPACIOUS HARLEM APT,105825171,Benjamin,Manhattan,Harlem,40.82383,-73.94037,Private room,93,1,2,2018-04-01,0.13,1,0 +23756498,Private and Cozy in the Heart of Flatbush Avenue,74033494,Jude,Brooklyn,Flatbush,40.64296,-73.95238,Entire home/apt,125,2,31,2019-06-25,2.93,1,64 +23758532,WEST BROADWAY RESIDENCE,6059542,Marko,Manhattan,Harlem,40.82554,-73.9535,Private room,100,5,0,,,1,364 +23760168,"HUGE *SUITE*, with EN SUITE, AC/Heat",30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68609,-73.90733,Entire home/apt,105,2,80,2019-07-01,5.08,2,77 +23760365,"Floor-Thru, One BR + Loft -- 23 Mins to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.68271,-73.95141,Entire home/apt,99,30,0,,,3,341 +23761645,2BR Wakefield Bronx 20 min NYC 10 min Westchester,16851857,Paul,Bronx,Wakefield,40.89691,-73.85121,Entire home/apt,69,21,11,2019-02-27,0.75,4,343 +23761707,Large Private Room. Safe area. Near 4 and D trains,178229322,Vas,Bronx,Concourse Village,40.83218,-73.91951,Private room,47,5,61,2019-05-15,3.80,1,130 +23762153,Private room in Hamilton Heights,120010130,Katie,Manhattan,Harlem,40.82557,-73.94927,Private room,50,7,2,2018-06-09,0.13,1,358 +23762605,"Luxury Bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80172,-73.96177,Private room,120,5,9,2019-04-30,0.62,2,0 +23763165,Sonder | 180 Water | Bright 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70659,-74.00426,Entire home/apt,210,29,0,,,96,365 +23763320,Spacious Brooklyn Brownstone with Backyard & Cat,1181486,Kurt,Brooklyn,Bushwick,40.69569,-73.90733,Entire home/apt,84,9,1,2018-03-13,0.06,1,0 +23763367,Astoria Prime,178237936,Jay,Queens,Astoria,40.77451,-73.92712,Entire home/apt,89,2,68,2019-06-29,4.33,1,64 +23763873,Private room in prime Greenpoint-Steps to G train!,178244787,Miranda,Brooklyn,Greenpoint,40.72254,-73.95084,Private room,90,1,13,2018-11-16,0.87,2,0 +23764185,Sonder | 180 Water | Sleek 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70747,-74.00436,Entire home/apt,222,29,0,,,96,241 +23764303,Charming Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78315,-73.94768,Entire home/apt,100,30,0,,,8,320 +23764791,Sonder | 180 Water | Beautiful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70741,-74.00656,Entire home/apt,227,29,0,,,96,322 +23765629,Luxury appartement!,17583134,Déborah,Brooklyn,Williamsburg,40.71017,-73.941,Entire home/apt,220,3,9,2018-12-29,0.59,1,0 +23765706,Beautiful Large 1br in the middle of Manhattan,25939370,Petar,Manhattan,Chelsea,40.75068,-73.99811,Entire home/apt,172,30,6,2019-03-31,0.50,1,195 +23765937,Huge Williamsburg Loft w/ kids friendly amenities.,176051903,Emerson,Brooklyn,Williamsburg,40.71832,-73.96354,Entire home/apt,550,5,3,2019-07-05,0.28,1,38 +23766156,TheBlueHouse. EntireHome. BabyGrand. FreeParking.,178266385,Megan,Brooklyn,Cypress Hills,40.68012,-73.89338,Entire home/apt,800,1,3,2018-08-15,0.21,1,362 +23766986,Chic & Modern 2 Bedroom On Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.7813,-73.94675,Entire home/apt,162,30,0,,,8,327 +23768377,Forest Hills-Easy Parking-Easy commute to midtown!,97262966,John,Queens,Forest Hills,40.71263,-73.85372,Entire home/apt,175,2,9,2018-12-27,0.66,2,0 +23768711,"Flushing 旅游,探亲,留学生首选 private bedrm, bath, livingrm",161899037,Tony,Queens,Flushing,40.75665,-73.83317,Entire home/apt,149,2,28,2019-06-28,1.81,7,63 +23769218,Better than hotel whole apt next 2 MAIN ST Flushin,161899037,Tony,Queens,Flushing,40.75611,-73.83271,Entire home/apt,149,2,28,2019-06-30,1.78,7,74 +23771352,COSY SPACIOUS LOFT IN EAST WILLIAMSBURG,25705033,Agathe,Brooklyn,Williamsburg,40.70604,-73.93802,Entire home/apt,190,2,1,2018-04-23,0.07,1,0 +23771486,STYLISH / HUGE 5 BEDROOM APT ON LOWER EAST SIDE,12089291,Paul,Manhattan,Lower East Side,40.7234,-73.99032,Entire home/apt,600,2,1,2018-05-20,0.07,1,0 +23772252,"Large, Sunny Williamsburg Apt - Private Room :)",18825679,Dasha,Brooklyn,Williamsburg,40.71586,-73.94044,Private room,96,2,9,2019-01-02,0.77,1,0 +23772767,First floor #6,151084261,Angie,Brooklyn,Williamsburg,40.71865,-73.94951,Private room,125,30,13,2019-05-27,0.86,6,255 +23772926,"Spacious studio, centrally located to all of NYC",20333472,Mitchell,Manhattan,Upper East Side,40.76521,-73.96491,Entire home/apt,166,2,2,2018-04-20,0.13,1,0 +23773431,Comfortable home in the heart of it all,22288459,Alexi,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93472,Private room,45,1,5,2019-03-24,0.33,2,0 +23775392,"Big, Sunny 1 Bed- Roof Top Access-Central Location",83929557,Jonathon André,Brooklyn,Prospect Heights,40.67657,-73.96465,Private room,75,2,7,2019-06-23,4.20,1,17 +23779181,Sunny Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79232,-73.94634,Private room,30,4,5,2019-04-29,0.33,3,0 +23780896,Delnewyorkroom,45845050,Delcio,Queens,Jackson Heights,40.75204,-73.88902,Private room,70,5,3,2018-04-20,0.19,1,189 +23781939,Upper West Side 2 Bedroom,22866437,Eliana,Manhattan,Upper West Side,40.77907,-73.97887,Entire home/apt,300,2,2,2018-05-29,0.13,2,0 +23784498,Entire 2 bedroom Brownstone apt - Bedstuy Brooklyn,1302843,Rebeca,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93663,Entire home/apt,200,3,28,2019-06-14,1.78,1,25 +23784779,Downtown private room (Queen Bed) + BREAKFAST,19909972,Jayu,Manhattan,Two Bridges,40.71179,-73.99848,Private room,160,2,129,2019-07-06,8.27,1,3 +23785875,Large Manhattan Duplex 30 mins to Times Square!,137916804,Asia,Manhattan,Washington Heights,40.85395,-73.93335,Entire home/apt,300,4,31,2019-07-01,2.16,1,286 +23788475,Clean Room right by Columbus Circle / Central Park,26921064,Ken,Manhattan,Hell's Kitchen,40.76601,-73.98651,Private room,90,1,70,2019-06-13,4.46,2,21 +23788708,"Location! Location! Location! Quiet and Cozy, 3 bd",154965091,Joe,Manhattan,Hell's Kitchen,40.76934,-73.98782,Entire home/apt,375,2,22,2019-06-19,1.65,4,77 +23789466,Cozy Mid Century Modern Studio 15 min to Manhattan,178507107,Alyssa,Brooklyn,Bushwick,40.70484,-73.92117,Entire home/apt,100,2,7,2018-04-29,0.45,1,0 +23789480,Queen Charlotte’s in B’klyn (accommodation for 1),37401126,Leah,Brooklyn,East Flatbush,40.64016,-73.94057,Private room,50,2,35,2019-05-27,2.22,4,296 +23790556,A private bedroom in the Heart of the East Village,178520748,Linnea,Manhattan,East Village,40.73099,-73.98477,Private room,89,1,114,2019-06-28,7.97,1,38 +23790744,Park-lovers Paradise in Central Manhattan,113094141,Susannah,Manhattan,Harlem,40.80442,-73.95629,Private room,60,1,77,2019-07-07,4.97,1,132 +23791349,Modern style apartment in the heart of Bushwick,31427834,Kerelle,Brooklyn,Bushwick,40.68868,-73.90595,Entire home/apt,100,1,13,2019-02-11,1.16,1,34 +23792606,Newest private room / 15 mins to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72161,-73.94115,Private room,65,30,3,2019-04-02,0.19,10,341 +23792629,(AB) 2 rooms - 4 ppl private and sharing bath,110965771,Wilson,Queens,Flushing,40.77241,-73.8238,Private room,100,1,0,,,7,71 +23792656,G&G Brooklyn Palace,176001804,Garcia,Brooklyn,Prospect-Lefferts Gardens,40.65924,-73.94959,Entire home/apt,125,2,68,2019-06-29,4.45,1,290 +23792770,(BC) 2 rooms 4 ppl 1 sharing bath,110965771,Wilson,Queens,Flushing,40.77337,-73.82501,Private room,100,2,0,,,7,0 +23797329,Newly & Comfy Shared room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72104,-73.93985,Shared room,35,30,3,2018-08-01,0.19,10,365 +23799904,Bright and Beautiful 1BR in Downtown Flushing,5962328,Alan,Queens,Flushing,40.76035,-73.82181,Entire home/apt,85,30,3,2019-06-30,0.20,15,256 +23803334,Cozy private room in the Heart of Williamsurg!,16158622,Sarah,Brooklyn,Williamsburg,40.71725,-73.95704,Private room,86,2,34,2019-06-23,2.34,1,156 +23803836,Blue House on Martense,55339775,Jon,Brooklyn,East Flatbush,40.65202,-73.95104,Entire home/apt,30,4,0,,,1,0 +23804690,One Central Park,40381599,Elite Destination Homes,Manhattan,Upper West Side,40.76986,-73.98197,Private room,600,1,0,,,1,199 +23804783,"Zen Private Bedroom ~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83093,-73.94724,Private room,99,1,10,2019-01-04,0.96,6,31 +23805007,"Large, sunny, private uptown apartment!",4335164,Eva,Manhattan,Washington Heights,40.83963,-73.93512,Entire home/apt,50,1,12,2018-09-29,0.75,1,0 +23807257,Historic Brownstone - Full Floor - Central Harlem,8662157,Chance,Manhattan,Harlem,40.80551,-73.94905,Entire home/apt,270,3,23,2019-06-22,1.56,1,17 +23807600,A Gem close to every Borough in NYC!!,178665352,Andrea,Queens,Jackson Heights,40.75122,-73.87977,Entire home/apt,195,3,23,2019-06-17,1.49,1,302 +23807689,Il Ponte *LES* Suite - free street Parking & Wifi,116839989,Ez,Manhattan,Lower East Side,40.72051,-73.98357,Entire home/apt,110,30,54,2019-05-27,3.40,5,193 +23807788,"Snug & Cozy 1 Bedroom -Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.82961,-73.9474,Private room,80,1,11,2018-12-08,0.92,6,0 +23808650,Chic 2 Bedroom in East Harlem,178675800,Michael,Manhattan,East Harlem,40.79504,-73.93495,Private room,85,6,2,2018-05-11,0.14,1,0 +23808715,Perfect Spot For Your Next NYC Visit,26502283,Nick,Manhattan,East Village,40.7211,-73.97966,Entire home/apt,125,1,14,2018-05-28,0.89,1,0 +23808895,Friendly & nice place for family,178654047,Ksenia,Brooklyn,Williamsburg,40.71297,-73.94242,Entire home/apt,190,1,0,,,1,53 +23809758,Modern Home with Exposed Brick on a Quiet Street,21012470,David,Brooklyn,Bushwick,40.70329,-73.92213,Private room,75,1,20,2019-06-27,1.27,1,89 +23809978,2 bedrooms in a Red Hook Brooklyn home!,17129810,Jeffrey,Brooklyn,Columbia St,40.68183,-74.00369,Private room,55,2,7,2019-06-28,0.53,5,188 +23810398,Bed Stuy Brownstone 50 steps to the Train :),178696800,Felisha,Brooklyn,Crown Heights,40.67825,-73.94748,Private room,35,1,45,2019-07-02,2.83,1,28 +23810745,Sunny Room w/ private bath,62127615,Sophia,Brooklyn,Greenpoint,40.72858,-73.95816,Private room,48,7,2,2018-04-30,0.14,1,0 +23811416,★Minimalist Spacious Bright sunny room in Midtown★,4427689,Nour,Manhattan,Hell's Kitchen,40.76318,-73.98838,Private room,129,5,94,2019-06-23,5.95,2,110 +23811541,"Luxury Apartment close to Time Square, NYC",23255533,Aravind,Manhattan,Theater District,40.76155,-73.98619,Private room,139,3,10,2019-05-27,1.24,1,189 +23812583,★ Clean/Trendy/Sunny room ★ in the center of NYC,4427689,Nour,Manhattan,Hell's Kitchen,40.76489,-73.98822,Private room,129,5,97,2019-06-19,6.11,2,114 +23818526,Luxury Soho Loft,178743973,Vassko,Manhattan,SoHo,40.71989,-74.00113,Entire home/apt,400,30,0,,,1,90 +23819961,Tree Lined Block in Celebs Fave Neighborhood!,791011,D & J,Manhattan,West Village,40.73817,-74.00768,Entire home/apt,240,2,0,,,1,81 +23820164,The Spark Spot,3654624,Jasmaine,Brooklyn,Bedford-Stuyvesant,40.68089,-73.91112,Entire home/apt,85,5,28,2019-06-25,2.28,1,32 +23820465,Suite Dante-15 min Central Park+free street park,116839989,Ez,Queens,Astoria,40.75941,-73.92498,Entire home/apt,105,30,25,2019-06-08,2.54,5,235 +23820538,Large 3 Bedroom Loft in Heart of Williamsburg,28373054,Nadira,Brooklyn,Williamsburg,40.71201,-73.95882,Entire home/apt,600,3,14,2019-06-17,0.98,1,167 +23820909,Charming Bright Apartment Minutes From Manhattan,178636681,Kris,Brooklyn,Williamsburg,40.71097,-73.95895,Entire home/apt,110,3,11,2019-06-04,1.05,1,90 +23821848,"Bright, super spacious 1.5 bedroom apt",14934881,Quentin,Brooklyn,Williamsburg,40.72156,-73.96043,Entire home/apt,280,6,6,2019-01-01,0.39,1,11 +23822397,Sunny room in Bushwick loft with private balcony,2793254,Johnny,Brooklyn,Bushwick,40.70336,-73.91998,Private room,75,3,25,2019-07-01,1.62,3,167 +23822436,Beautiful room in renovated apt; steps from subway,7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67996,-73.94085,Private room,50,2,1,2018-04-16,0.07,3,0 +23823959,Tidy Room In Convenient Brooklyn Apartment,173230953,Rick,Brooklyn,Crown Heights,40.67327,-73.94403,Private room,40,2,7,2018-05-22,0.46,1,0 +23826739,Lovely Room!,34404232,Holly,Queens,Astoria,40.76143,-73.92122,Private room,60,1,24,2018-08-19,1.50,1,0 +23827761,Large 2BR in downtown Manhattan,15784251,David,Manhattan,Little Italy,40.71907,-73.99698,Entire home/apt,375,3,7,2018-11-24,0.46,1,0 +23827905,Central Park View-Free Museum Tickets-Private Room,101438864,Omar,Manhattan,Upper West Side,40.79368,-73.96373,Private room,30,1,89,2019-06-27,6.03,2,94 +23837148,Cozy and Sunny Space near Prospect Park,175507083,Brette,Brooklyn,Prospect-Lefferts Gardens,40.66114,-73.9498,Shared room,45,2,2,2018-05-22,0.13,1,35 +23837898,The Sunset Affair,178986313,Aj,Brooklyn,Bedford-Stuyvesant,40.69174,-73.95921,Entire home/apt,100,1,91,2019-07-07,5.80,1,79 +23838063,Spacious getaway room in the heart of Bushwick,149073048,Kat,Brooklyn,Bushwick,40.69837,-73.93045,Private room,67,5,34,2019-06-30,2.31,1,102 +23838400,Spacious East village apartment,72142281,Zander,Manhattan,East Village,40.7293,-73.98488,Entire home/apt,200,1,29,2019-07-01,1.87,1,176 +23838734,Bedroom in Harlem near Central Park,94219511,Gilles,Manhattan,Harlem,40.80096,-73.9542,Private room,65,6,12,2019-07-01,0.75,2,8 +23839013,New 2-Bedrooms on Grymes Hill,148130073,Sebastian,Staten Island,Grymes Hill,40.61758,-74.09112,Entire home/apt,110,2,69,2019-06-25,4.47,1,19 +23839200,"Friendly, unpretentious, close to the subway",178303634,Gustavo,Brooklyn,South Slope,40.66501,-73.98992,Private room,49,6,48,2019-06-20,3.13,2,5 +23839890,Beautiful huge room with a lovely Bay Window,151124394,Annie,Manhattan,Harlem,40.8282,-73.94973,Private room,39,30,2,2019-01-01,0.16,1,0 +23839939,"*Location, Location | Chelsea | Meat Packing*",70307702,Sam,Manhattan,Chelsea,40.73959,-74.00105,Entire home/apt,199,3,36,2019-07-02,2.44,1,293 +23840030,"Cozy, Convenient 10 min from Manhattan !",179010070,Antonia,Queens,Woodside,40.75608,-73.90535,Private room,65,3,23,2019-05-22,1.49,1,354 +23840461,Elegant room in Harlem,63417081,Devon,Manhattan,Harlem,40.82381,-73.94582,Private room,45,30,1,2018-08-31,0.10,8,318 +23841282,2 BR APT in the heart of Hell's Kitchen - Times SQ,13873488,Jesse,Manhattan,Hell's Kitchen,40.76277,-73.99321,Entire home/apt,196,3,7,2018-05-24,0.46,1,0 +23842204,Cozy Brooklyn Oasis 20min to Manhattan(for 1 or 2),38615080,Beth,Brooklyn,Crown Heights,40.67227,-73.95246,Private room,65,3,24,2019-07-06,4.59,1,9 +23842721,Wendy's New York Homestay,12387523,Wendy,Brooklyn,Bedford-Stuyvesant,40.68033,-73.94248,Private room,47,2,27,2019-06-26,2.05,1,272 +23844034,Marce’s Retreat- Perfection in NYC!,2478424,L.Marce,Queens,Elmhurst,40.73841,-73.88276,Entire home/apt,110,4,17,2019-06-01,1.54,1,94 +23849343,Apartment in Midtown East,90534522,Lisa,Manhattan,Murray Hill,40.74792,-73.97979,Entire home/apt,240,3,6,2019-05-26,0.40,1,0 +23851659,Cozy bedroom in the heart of South Harlem,4113106,Frederic,Manhattan,Harlem,40.80397,-73.95615,Private room,45,1,60,2019-06-30,3.85,2,195 +23852303,A house in Flatbush.,5091423,Jamie,Brooklyn,East Flatbush,40.64747,-73.95189,Entire home/apt,225,3,1,2018-04-04,0.06,1,26 +23852718,"Sunlit Williamsburg Apartment, Prime Location",6527776,Alex,Brooklyn,Williamsburg,40.71549,-73.95579,Entire home/apt,200,2,13,2019-05-05,1.01,1,3 +23852841,Sun-filled room in a lovely house,9574706,Luis,Brooklyn,Carroll Gardens,40.67873,-73.99564,Private room,45,5,2,2018-10-03,0.14,1,0 +23855079,1 Bdrm 1.5 Bath Midtown Condo,29100568,Deborah,Manhattan,Theater District,40.76185,-73.9816,Entire home/apt,171,20,1,2018-06-07,0.08,4,0 +23855466,Cheap Rental in Manhattan Downtown!,179187831,Nadia,Manhattan,Chelsea,40.75031,-73.99336,Entire home/apt,70,1,0,,,1,364 +23855867,HUGE 1 bedroom in Manhattan,173386569,J,Manhattan,Stuyvesant Town,40.73101,-73.97347,Entire home/apt,170,1,17,2019-06-16,1.12,2,0 +23856563,Sun-filled Artist Home 1BR in convenient L.I.C !,25497297,Megan,Queens,Long Island City,40.74643,-73.94693,Entire home/apt,125,2,10,2019-05-12,0.84,1,8 +23856708,Artist friendly: entire apt near Prospect Park,27703207,Joey,Brooklyn,Prospect-Lefferts Gardens,40.65844,-73.94832,Entire home/apt,45,5,3,2018-07-30,0.19,1,0 +23857107,Spacious 1 Bedroom in TriBeCa,16308520,Ryan,Manhattan,Tribeca,40.71359,-74.01049,Entire home/apt,150,3,8,2019-06-11,0.51,1,66 +23857159,1Br available in luxury building Park Slope,14476858,Kola,Brooklyn,Sunset Park,40.66307,-73.99482,Private room,106,2,1,2018-03-19,0.06,1,0 +23857515,1 Private Bedroom in Beautiful Park Slope Apt.,64060155,Aaron,Brooklyn,South Slope,40.66711,-73.98341,Private room,80,10,0,,,1,0 +23857631,Very convinced new room for 2 at affordable price,140057330,Joey,Queens,Ridgewood,40.69651,-73.9057,Private room,50,1,37,2019-06-24,2.39,7,45 +23857837,Renovated room perfect for 2 guests exploring NYC,140057330,Joey,Queens,Ridgewood,40.69729,-73.90571,Private room,50,1,22,2019-06-24,1.53,7,59 +23858270,Renovated Studio Apt! Walk to the Subway & Ferry!,18768995,MJ & Al,Brooklyn,Bay Ridge,40.62989,-74.02345,Private room,90,3,34,2019-07-08,2.24,1,231 +23858353,A lovely taste of Brooklyn with this small bedroom,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68907,-73.92806,Private room,60,2,42,2019-07-02,2.80,5,324 +23858901,Spacious Designer Furnished 2BR in E Williamsburg,176246555,Marina,Brooklyn,Williamsburg,40.70743,-73.9416,Entire home/apt,154,3,5,2019-06-07,0.35,1,80 +23859194,Old School New York,179233527,David,Manhattan,Upper West Side,40.79806,-73.97416,Private room,80,2,22,2019-06-24,1.44,1,0 +23859280,Travelers Cozy New York Getaway,9808458,Zain,Bronx,Kingsbridge,40.87257,-73.9009,Private room,65,1,2,2018-10-19,0.21,4,364 +23859490,"Comfy , Cozy, New York Getaway for Travelers",9808458,Zain,Bronx,Kingsbridge,40.87287,-73.90157,Private room,65,2,0,,,4,365 +23859834,Oasis in The East Village,11274299,Andrew,Manhattan,East Village,40.72603,-73.98369,Private room,149,3,1,2018-03-25,0.06,2,0 +23860039,Sunny room in Williamsburg,37626695,Celia,Brooklyn,Williamsburg,40.71113,-73.95675,Private room,66,10,1,2018-06-22,0.08,1,0 +23860047,Beautiful 4 Bedroom Apartment,27615247,Judy,Brooklyn,Midwood,40.62301,-73.96253,Entire home/apt,150,14,3,2018-07-24,0.24,3,3 +23860219,Designer's Beautiful 2BR Apartment in NOLITA/SOHO,152228055,Ilo And Richard,Manhattan,Nolita,40.72233,-73.99574,Entire home/apt,2990,2,69,2019-06-29,4.36,1,237 +23861367,"Love Nest, Just for 2",21721684,S.,Brooklyn,Bushwick,40.68469,-73.90761,Entire home/apt,69,3,64,2019-06-23,4.06,2,219 +23861801,2 Sofa-beds in Livingroom- Check in: 5:45pm - 11pm,81510823,Ndeye Aissatou,Brooklyn,Bedford-Stuyvesant,40.68829,-73.93184,Shared room,30,1,99,2019-06-30,6.31,1,67 +23868986,Beautiful room . Williamsburg / Greenpoint,178543960,Sergii,Brooklyn,Greenpoint,40.72177,-73.93995,Private room,65,30,2,2018-10-03,0.13,10,341 +23869761,Cozy Bedroom with Queen Size Bed,29326392,Ben,Brooklyn,Bushwick,40.69941,-73.93633,Private room,31,2,1,2018-03-27,0.06,1,0 +23870093,Private Sunny Apt In Beautiful Brooklyn Brownstone,6570552,Hugo,Brooklyn,Bedford-Stuyvesant,40.68424,-73.93851,Entire home/apt,120,5,2,2018-09-25,0.20,1,301 +23870798,Genuine Lower East Side 1BR apt,52443525,Jose,Manhattan,Lower East Side,40.71928,-73.98739,Entire home/apt,140,2,23,2019-06-22,1.51,1,0 +23871290,"Bright, massive live/work space in Park Slope",3563802,Katy,Brooklyn,Park Slope,40.66799,-73.98162,Private room,55,2,2,2019-04-14,0.13,1,0 +23872299,"LARGE COZY PRIVATE ROOM, FLUSHING QUEENS Cozy room",178059867,Kevin,Queens,Flushing,40.75619,-73.80482,Private room,50,1,62,2019-06-07,3.90,3,172 +23873057,Sunny and Spacious East Williamsburg Room,13754273,Erin,Brooklyn,Williamsburg,40.71999,-73.9417,Private room,60,2,6,2018-07-31,0.45,1,0 +23874025,Sonder | 116 John | Bright 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70791,-74.00545,Entire home/apt,179,29,2,2019-02-26,0.36,96,333 +23874196,Comfortable and cozy room in the heart of Astoria.,179366206,Nevine,Queens,Astoria,40.76021,-73.9167,Private room,45,30,5,2019-05-24,0.56,1,101 +23874777,Sonder | 116 John | Lively 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70852,-74.0062,Entire home/apt,187,29,1,2019-05-28,0.71,96,332 +23875454,Great Room in Great apt!,179376942,Sebastian,Manhattan,Washington Heights,40.84591,-73.94059,Private room,50,2,2,2018-05-04,0.14,1,0 +23875602,Sonder | 116 John | Intimate 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70648,-74.00499,Entire home/apt,179,29,0,,,96,333 +23875745,Williamsburg large 2 Bedroom / 2 Bathroom,10951481,Ann,Brooklyn,Williamsburg,40.71312,-73.9634,Entire home/apt,249,2,62,2019-05-06,3.94,5,32 +23876337,Sonder | 116 John | Warm 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70831,-74.00619,Entire home/apt,182,29,2,2019-01-01,0.21,96,259 +23876348,"Cozy Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67945,-73.90842,Private room,40,2,20,2019-04-28,1.28,3,3 +23876355,Clean an comfortable apartment,16597520,Eliana,Queens,Astoria,40.76641,-73.9193,Private room,60,3,6,2019-04-11,0.42,1,156 +23876927,BEST LOCATION IN NY,146326976,Ana Y Hugo,Queens,Astoria,40.7577,-73.91639,Private room,50,3,33,2019-06-18,2.22,1,282 +23877625,Bright 2BR Private Backyard 25 min to Manhattan!,179397918,Eva,Brooklyn,Bedford-Stuyvesant,40.68311,-73.93124,Entire home/apt,175,2,60,2019-06-26,3.88,1,297 +23877781,"Modern Comfort in Carroll Gardens, Brooklyn",8610441,Bernadette,Brooklyn,Gowanus,40.67705,-73.99655,Entire home/apt,195,2,60,2019-06-30,3.87,1,258 +23879156,"Best Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67936,-73.9072,Private room,40,2,41,2019-04-28,2.59,3,0 +23879304,Beautiful room,179416315,Elizabeth,Bronx,University Heights,40.85989,-73.91189,Private room,60,2,7,2019-01-01,0.46,2,156 +23881522,Local hosts. Luxurious room few blocks to Q train,179442361,Derek,Brooklyn,Midwood,40.61962,-73.96262,Private room,75,3,5,2018-09-26,0.36,1,67 +23882152,Private apartment in basement of private home,2375125,Nicole,Brooklyn,East Flatbush,40.63297,-73.93781,Private room,40,2,1,2018-05-20,0.07,1,0 +23882240,Large Studio in South Williamsburg,10132406,Michael,Brooklyn,Williamsburg,40.71015,-73.96591,Entire home/apt,150,3,2,2018-08-27,0.14,1,0 +23884206,Clean Apt right by Columbus Circle / Central Park,26921064,Ken,Manhattan,Hell's Kitchen,40.76665,-73.98568,Entire home/apt,115,2,0,,,2,0 +23890947,"106th and Amsterdam open, spacious apartment!",24033115,Jessica,Manhattan,Upper West Side,40.802,-73.96605,Private room,72,1,5,2019-06-30,0.41,1,32 +23892803,Beautifully Renovated Brownstone Apartment,23839989,Carlos,Brooklyn,Bedford-Stuyvesant,40.68215,-73.93644,Entire home/apt,95,4,4,2018-12-30,0.31,1,9 +23893916,Comfortable 2-Room Studio Apt with Backyard,8685999,Michele & Lucien,Brooklyn,Bedford-Stuyvesant,40.68229,-73.93261,Entire home/apt,100,3,48,2019-05-24,3.08,1,0 +23894317,Cute Private Bedroom in Brooklyn,479432,Kristal,Brooklyn,Bedford-Stuyvesant,40.67638,-73.91106,Private room,75,1,38,2019-06-09,2.61,1,0 +23894403,Chic Bohemian 1 br in the heart of West Village,15356183,Daniel,Manhattan,West Village,40.73417,-74.00604,Entire home/apt,250,2,5,2019-05-27,0.63,1,0 +23894929,Downtown Loft Location w/ Skyline View & Studio,3201625,J,Manhattan,Chinatown,40.71403,-73.99076,Entire home/apt,1000,1,2,2018-12-18,0.25,1,365 +23895775,Bright + Spacious apartment 3 blocks from the L,29099312,Erin,Brooklyn,Bushwick,40.69653,-73.9125,Private room,60,1,3,2018-07-30,0.22,1,0 +23896110,Charming one bedroom / West village,175315624,Shelby,Manhattan,West Village,40.7317,-74.00708,Entire home/apt,163,7,7,2018-07-18,0.48,1,0 +23897524,Small room in Midtown West,6438952,Sam,Manhattan,Hell's Kitchen,40.76191,-73.99199,Private room,75,7,0,,,1,0 +23898007,Urban Boudoir Available with Back Yard Access,179594570,Elise,Brooklyn,Bushwick,40.69309,-73.924,Private room,48,4,1,2018-04-19,0.07,1,0 +23898727,Beautiful 1 bdrm in 3 bdrm (10 mins to Manhattah),2776635,Manisha,Brooklyn,Gowanus,40.68208,-73.98093,Private room,100,7,0,,,1,0 +23899015,Beautiful Brooklyn Brownstone!,23422026,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93716,Entire home/apt,125,3,0,,,1,125 +23900717,Wyndham Midtown 45 (2 Bedroom Presidential) 9A,100238132,Michael,Manhattan,Midtown,40.75181,-73.97137,Entire home/apt,339,3,34,2018-12-14,2.26,12,0 +23900919,Welcoming and Beautiful bedroom in Brooklyn.,20134221,Jon,Brooklyn,Flatbush,40.6478,-73.96831,Private room,40,3,10,2019-05-30,0.63,1,0 +23900940,Room #1 With Private Shower,179619904,Gregorio,Queens,South Ozone Park,40.67581,-73.82304,Private room,60,1,72,2019-06-24,4.64,3,175 +23901030,Wyndham Midtown 45 (2 Bedroom Presidential) 5A,100238132,Michael,Manhattan,Midtown,40.75316,-73.97163,Entire home/apt,339,3,34,2019-04-19,2.27,12,0 +23901118,"Room #3 Bright, Quiet, Near Race-track and Casino",179619904,Gregorio,Queens,South Ozone Park,40.6736,-73.82092,Private room,65,2,16,2019-06-24,1.15,3,180 +23901252,Wyndham Midtown 45 (1 Bedroom Presidential) 3A,100238132,Michael,Manhattan,Midtown,40.75307,-73.97162,Entire home/apt,269,3,5,2019-01-02,0.35,12,0 +23901420,Wyndham Midtown 45 (1 Bedroom Presidential) 2A,100238132,Michael,Manhattan,Midtown,40.75226,-73.97356,Entire home/apt,269,3,5,2019-05-03,0.36,12,0 +23901526,Wyndham Midtown 45 (1 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75293,-73.97315,Entire home/apt,269,3,5,2019-01-01,0.38,12,0 +23901908,The Madison - A One Bedroom Apartment,179634496,Cristian,Manhattan,East Harlem,40.79983,-73.94481,Entire home/apt,300,2,0,,,1,0 +23901975,BrightClean Studio near Grand Central (MurrayHill),43275413,Ashumi,Manhattan,Midtown,40.7464,-73.97987,Entire home/apt,180,2,18,2019-06-02,1.22,1,4 +23902562,QUIET 1BR apartment CLOSE to EVERYTHING,92696117,Eric,Manhattan,Hell's Kitchen,40.76396,-73.99185,Entire home/apt,200,4,47,2019-05-01,3.31,1,0 +23902905,Shared Room in Midtown East,1429710,Bonnie,Manhattan,Midtown,40.75693,-73.97078,Shared room,63,1,18,2019-06-03,1.20,1,56 +23903645,It's Quiet Uptown,105699183,Crystal,Manhattan,Harlem,40.82718,-73.94883,Entire home/apt,65,6,2,2019-01-03,0.13,2,9 +23903960,Spacious Stylish 2 br duplex in HK ft from Time SQ,179255065,Luis,Manhattan,Hell's Kitchen,40.7612,-73.98886,Entire home/apt,300,1,118,2019-06-21,7.50,1,28 +23905099,The Most Delicious Airbnb Ever,24288568,Micah,Brooklyn,Bedford-Stuyvesant,40.69506,-73.93556,Private room,100,1,54,2019-06-16,3.45,1,45 +23905542,Lush brownstone apartment in Park Slope,1630247,Ben,Brooklyn,Park Slope,40.6785,-73.98209,Entire home/apt,95,2,9,2018-09-09,0.58,1,0 +23906042,Bronx Penthouse,179677211,Bettina,Bronx,Morris Park,40.84857,-73.85976,Entire home/apt,190,1,19,2019-06-09,1.47,3,8 +23913344,"Private Garden Apt in Cobble Hill, Brooklyn",1338262,Rachel,Brooklyn,Boerum Hill,40.68782,-73.99111,Entire home/apt,300,7,1,2019-01-02,0.16,3,224 +23916900,Cozy Apartment - Try NYC Living!,83967077,Renata,Queens,Long Island City,40.75955,-73.93293,Entire home/apt,231,3,4,2018-06-03,0.27,1,0 +23917121,"Sunny, Spacious Bed Stuy Dream Apartment",179765779,Allegra,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93045,Entire home/apt,125,3,80,2019-07-07,5.41,1,269 +23917760,Cozy mezzanine bdrm in charming Bklyn neighborhood,179778880,Marcus,Brooklyn,Sunset Park,40.66162,-73.99129,Private room,45,2,45,2019-07-05,2.95,2,337 +23918528,Serene Central Park Getaway,20585393,Allison,Manhattan,Upper West Side,40.80091,-73.95912,Private room,64,1,4,2018-05-28,0.26,1,0 +23918586,"Clean Private Room, 10 min from 2 subway lines.",22710535,Ben,Brooklyn,Bedford-Stuyvesant,40.68659,-73.92949,Private room,150,1,1,2018-03-25,0.06,1,0 +23918916,Private Sunny Room in Park Slope,17315514,Ana,Brooklyn,Sunset Park,40.66168,-73.99827,Private room,50,7,1,2018-05-13,0.07,2,0 +23919286,Comfortable and close to everything!,179789963,William,Manhattan,Midtown,40.74564,-73.98181,Entire home/apt,115,3,3,2018-04-20,0.20,1,0 +23919507,Large Sunny Bedroom in 2 bedroom Apt. near train,39531110,Josseline,Brooklyn,Gravesend,40.60663,-73.9821,Private room,29,2,1,2018-06-11,0.08,1,0 +23920387,Jackson Heights Room Close to LGA,15654962,Kathy,Queens,Jackson Heights,40.75024,-73.88984,Private room,50,1,0,,,1,0 +23920657,Private Confortable Queen size Bedroom in UES.,132485563,Ali,Manhattan,Upper East Side,40.77038,-73.95273,Private room,105,5,2,2018-09-30,0.14,2,342 +23921460,Bright-peaceful room - 30 Min From NYC,165257273,Soon,Queens,Flushing,40.77244,-73.80061,Private room,40,30,1,2018-10-20,0.11,3,342 +23921983,Private Studio in charming Tudor style home.,165257273,Soon,Queens,Flushing,40.77193,-73.79966,Private room,50,30,5,2019-06-06,0.40,3,296 +23922092,Modern One-bedroom Apartment in Manhattan,19472344,Jillian,Manhattan,East Harlem,40.80016,-73.9383,Entire home/apt,199,21,14,2019-05-12,0.91,1,0 +23922930,温馨小屋,179825270,Vicky,Queens,Flushing,40.74309,-73.82472,Private room,49,1,53,2019-06-23,3.47,1,341 +23924218,Apartment in the heart of Williamsburg,1966537,Matthieu,Brooklyn,Williamsburg,40.71449,-73.96265,Entire home/apt,105,2,13,2019-01-27,0.82,1,0 +23925434,Brooklyn Brownstone Charm*,1903663,Rachel,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95783,Private room,50,3,5,2019-06-09,0.32,2,365 +23925502,Sunny Room in brand new apartment in Bushwick,4162797,Ana,Brooklyn,Bushwick,40.70139,-73.92567,Private room,45,10,2,2018-09-30,0.19,1,13 +23926049,Room in Greenpoint w/ private balcony and bathroom,6900478,Rebecca,Brooklyn,Greenpoint,40.72977,-73.95125,Private room,95,1,9,2019-06-04,3.42,2,54 +23926532,"Quiet, Sunny Bedroom in Lefferts Gardens",171198420,Edna,Brooklyn,East Flatbush,40.65381,-73.94893,Private room,47,3,19,2019-06-28,2.38,2,12 +23926896,Bright & airy uptown sanctuary,5371388,Ashley,Manhattan,Inwood,40.86816,-73.93131,Entire home/apt,100,1,3,2019-06-16,0.22,1,5 +23932185,Cozy private room / Williamsburg / L train,178543960,Sergii,Brooklyn,Greenpoint,40.72029,-73.94,Private room,65,30,1,2019-03-31,0.30,10,341 +23933041,Times Square+Central Park Luxury Room,14743478,Abbie,Manhattan,Hell's Kitchen,40.7653,-73.98737,Private room,105,3,42,2019-06-27,2.71,1,286 +23934000,Room 5 - Quiet Retreat in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64293,-73.96863,Private room,50,2,51,2019-06-27,3.29,6,176 +23935141,"Sun-filled, Mod 3BR Apt Steps from Prospect Park",282655,Jenna,Brooklyn,Flatbush,40.64866,-73.96986,Entire home/apt,175,3,52,2019-06-29,3.58,3,222 +23937502,1BR in Downtown Brooklyn,17772042,Salem,Brooklyn,Downtown Brooklyn,40.69177,-73.98549,Entire home/apt,195,3,0,,,1,0 +23937509,Charming Williamsburg Weekend Getaway,13020369,Shannon,Brooklyn,Williamsburg,40.71201,-73.96048,Entire home/apt,225,4,0,,,1,0 +23937672,"Room #2 Near JFK airport, Race-Track, Casino.",179619904,Gregorio,Queens,South Ozone Park,40.67393,-73.82003,Private room,75,1,124,2019-06-19,7.98,3,160 +23937773,Sunny artist bedroom in Bedstuy,5628508,Jessica,Brooklyn,Bedford-Stuyvesant,40.68977,-73.93773,Private room,45,2,7,2018-07-23,0.46,1,0 +23940102,BRAND NEW PRIVATE STUDIO 5 BLOCKS TO CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77172,-73.95427,Entire home/apt,125,30,5,2019-05-14,0.34,3,283 +23940698,"Bright and cozy room. Midwood, Brooklyn.",90878763,Andrew,Brooklyn,Midwood,40.62399,-73.96324,Private room,75,2,0,,,2,0 +23942226,"Bushwick Room w Private Bath, 1 Block to Subway",37806504,Michelle,Brooklyn,Bushwick,40.70072,-73.91359,Private room,60,3,50,2019-05-18,3.33,1,85 +23942859,Modern home at excellent location,180005361,Cindy,Manhattan,Upper East Side,40.75917,-73.95916,Entire home/apt,148,1,55,2019-06-23,3.59,1,123 +23943070,Cozy Studio Apartment,180008916,Endazsia,Brooklyn,Bedford-Stuyvesant,40.68246,-73.94861,Entire home/apt,50,1,21,2019-06-21,1.75,2,0 +23943945,Modern Brooklyn Luxury 1 Bedroom,97964040,Kristen,Brooklyn,Boerum Hill,40.68417,-73.98215,Entire home/apt,150,1,3,2018-05-10,0.20,1,0 +23943948,East Village Celebrity Townhouse,18598201,Patti,Manhattan,East Village,40.7235,-73.98534,Entire home/apt,1000,3,55,2019-07-04,3.50,1,37 +23946148,Spacious Studio with Private Patio in Greenwood!,15817123,Stephanie,Brooklyn,Sunset Park,40.66169,-73.9979,Entire home/apt,135,5,56,2019-06-29,3.78,3,10 +23946427,Big Bright 1BR Apt in the Heart of Brooklyn!,58390724,Aleksandra,Brooklyn,Midwood,40.62923,-73.95746,Entire home/apt,140,2,19,2019-01-09,1.23,1,165 +23946641,Lavish Private room w/ Private Bath in upper east,10661558,Gio,Manhattan,Upper East Side,40.77519,-73.95153,Private room,159,1,67,2019-05-27,4.29,4,0 +23946797,Entire apt in Manhattan. 15 mins to Times Square!,65059624,Peiyi,Manhattan,East Harlem,40.80942,-73.93701,Entire home/apt,50,3,118,2019-06-23,8.06,1,4 +23952724,Best Place to stay,121379512,Maria,Bronx,Longwood,40.82434,-73.88705,Private room,44,20,0,,,2,0 +23955297,Sunny Harlem room: Ideal sublet for summer intern,30021975,Lucy,Manhattan,Harlem,40.80731,-73.95155,Private room,49,2,2,2018-08-11,0.15,1,1 +23955348,Sunny East Village 3/2 Apt in Prime Location!,180126576,P,Manhattan,East Village,40.72574,-73.98272,Entire home/apt,600,5,70,2019-06-02,4.49,3,6 +23956264,Bright room in sunny Prime Williamsburg pad.,128785861,Carlos,Brooklyn,Williamsburg,40.71622,-73.95364,Private room,70,1,13,2018-09-06,0.93,2,0 +23957636,Water views in two directions,19640594,C.,Manhattan,Battery Park City,40.70902,-74.01686,Entire home/apt,295,75,0,,,1,55 +23957942,Kiki’s Place!,46498586,Sage,Brooklyn,Bushwick,40.69603,-73.92537,Entire home/apt,200,2,2,2019-06-25,2,1,32 +23958542,Cozy Corner,180154611,Marlyn,Brooklyn,Canarsie,40.63806,-73.90024,Private room,49,2,16,2019-05-29,1.24,3,346 +23959939,The perfect williamsburg-greenpoint location,10606156,Eric,Brooklyn,Greenpoint,40.72581,-73.95376,Entire home/apt,175,5,0,,,2,0 +23960224,Cozy room in friendly Bed-Stuy apartment,17631089,Katharina,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93518,Private room,45,6,2,2018-10-15,0.15,1,0 +23961249,Private Room in Bklyn Brownstone; 20 mins to NYC!,127437059,Carol,Brooklyn,Crown Heights,40.66685,-73.93828,Private room,35,2,26,2019-06-13,1.68,1,79 +23961333,The Nile River,180180858,Killa,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94353,Entire home/apt,180,5,7,2019-05-29,0.65,1,35 +23961376,Beautiful red-brick bedroom in prime East Village,154266431,Steven,Manhattan,East Village,40.72507,-73.9827,Private room,100,3,45,2019-07-02,3.53,3,6 +23963981,Home away from home,180208872,Ketia,Brooklyn,Canarsie,40.63382,-73.90502,Entire home/apt,155,1,82,2019-07-05,6.97,1,302 +23964318,Private Bedroom-Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76516,-73.95841,Private room,80,1,23,2019-01-28,1.46,5,0 +23964830,Upper East Side Cozy Room!!!,180219381,Johnny,Manhattan,East Harlem,40.78771,-73.95143,Private room,70,2,73,2019-06-25,4.69,1,260 +23965055,Enough space for couple:),79298323,Crispy,Queens,Maspeth,40.73273,-73.89357,Private room,38,3,15,2018-12-07,1.03,3,163 +23965460,Cleo's Royale,157141199,Adeola,Manhattan,Inwood,40.86058,-73.9274,Private room,70,5,5,2019-05-24,0.41,2,90 +23966710,Private Room in Astoria 15 mins to Manhattan / LGA,169166409,Rafael,Queens,Astoria,40.76801,-73.92673,Private room,38,1,40,2019-06-29,2.61,2,48 +23970993,Comfort & Convenience in the middle of NYC!,32909393,Tanya & Mirjan,Manhattan,Upper West Side,40.80228,-73.96334,Private room,75,2,70,2019-06-24,4.60,1,1 +23973305,Private Sunny Apartment on the Upper East Side,88394152,Jessica,Manhattan,Upper East Side,40.77574,-73.94638,Entire home/apt,120,3,20,2019-06-30,1.33,1,157 +23974919,"Charming UWS 1-bedroom, 1 block from Central Park!",25364341,Cyndi,Manhattan,Upper West Side,40.77669,-73.9789,Entire home/apt,200,3,1,2018-05-26,0.07,1,16 +23975246,Your private cozy Williamsburg apartment,6111084,Nebojsa,Brooklyn,Williamsburg,40.70488,-73.94301,Entire home/apt,160,3,4,2019-05-31,0.35,2,46 +23976566,Clean Private Room in Rosedale - Close to JFK+Mall,105124052,Latoya,Queens,Rosedale,40.65882,-73.7332,Private room,28,1,35,2019-05-09,2.25,1,43 +23976700,HUGE ARTSY DESIGNER APRT IN CHINATOWN W/ ELEVATOR,7988008,Emily,Manhattan,Chinatown,40.71336,-73.99263,Entire home/apt,210,1,16,2019-05-04,1.04,1,318 +23978220,JFK;minutes to JFK;$2.50to Manhattan,180347935,Sharon,Queens,Queens Village,40.72822,-73.74119,Shared room,37,1,0,,,1,0 +23978509,"2 Bedroom. Cozy, inexpensive",178303634,Gustavo,Brooklyn,South Slope,40.66429,-73.9906,Entire home/apt,120,5,2,2018-04-15,0.13,2,0 +23979192,"Huge, bright 1 bed w/ priv yard in Crown Heights!",15538912,Michelle,Brooklyn,Crown Heights,40.67395,-73.94874,Entire home/apt,77,3,3,2018-09-23,0.20,1,0 +23979650,Charming Bedroom in Luxury Highrise w/ Gym & Sauna,50698186,Tsilala,Manhattan,Financial District,40.70851,-74.0137,Private room,80,2,4,2019-01-02,0.27,1,0 +23979686,Pre-War 2BR Pad at Prospect Park,3894475,Kyle,Brooklyn,Park Slope,40.6678,-73.98106,Entire home/apt,150,2,0,,,3,0 +23980151,Sunny Williamsburg 1 Bedroom! A block from subway,180379038,Graham,Brooklyn,Williamsburg,40.70808,-73.93964,Entire home/apt,124,1,2,2018-04-09,0.13,1,0 +23980153,Quiet room in Bushwick Apartment above Jefferson L,180378787,Andrew,Brooklyn,Bushwick,40.7069,-73.92284,Private room,30,3,1,2018-04-23,0.07,1,0 +23980622,Manhattan private room 2 Columbia university area,180380802,Avner,Manhattan,Harlem,40.81312,-73.95364,Private room,65,1,11,2019-05-07,0.71,4,365 +23986569,Manhattan private room 3 Columbia university,180380802,Avner,Manhattan,Harlem,40.81205,-73.95322,Private room,65,1,4,2019-06-02,0.28,4,365 +23988427,Chill in Bushwick,64194344,Glynn,Brooklyn,Bushwick,40.70226,-73.92895,Private room,55,1,0,,,1,0 +23989379,Central Harlem Sanctuary for the Bookish Type(s),180467103,Chloé,Manhattan,Harlem,40.82847,-73.93701,Entire home/apt,90,7,1,2018-11-27,0.13,1,24 +23990013,Brookyln Brownstone Pied de Terre,39865251,Alexandra,Brooklyn,Clinton Hill,40.68235,-73.96384,Entire home/apt,225,2,1,2018-04-22,0.07,1,0 +23990128,"Long Island City, Shared 2 bedroom apartment",82834850,Ben,Queens,Long Island City,40.7546,-73.93643,Private room,48,6,2,2018-05-02,0.13,1,0 +23990829,Cosy private room in Central Harlem apartment,10218953,Lina,Manhattan,Harlem,40.81554,-73.94144,Private room,39,2,12,2019-07-06,0.81,1,4 +23990868,1 Bedroom in Luxury Building,4447548,Grace,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94453,Entire home/apt,88,2,8,2019-06-16,0.56,1,18 +23992091,"Cozy apartment in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.6485,-73.95157,Entire home/apt,159,2,1,2019-01-01,0.16,3,191 +23992731,"Cozy studio in trendy Bushwick, Brooklyn",68350188,Laurin,Brooklyn,Bushwick,40.70252,-73.91943,Entire home/apt,99,4,10,2019-05-10,0.72,1,0 +23992737,Big Room in Quiet Neighborhood,4841646,Esmee,Queens,Elmhurst,40.72806,-73.87572,Private room,40,1,24,2018-10-28,1.68,1,0 +23992829,"Room in Nice Apartment, Astoria. Great Area!",20855056,Jonathan,Queens,Ditmars Steinway,40.77694,-73.90846,Private room,35,4,5,2018-04-25,0.32,1,0 +23993066,Big one Bedroom in Prospect Park,160325910,Sylvie,Brooklyn,Prospect-Lefferts Gardens,40.66139,-73.96231,Entire home/apt,115,4,0,,,1,0 +23995936,FLATIRON LUXURY HIGHRISE//STUNNING VIEWS//4 BEDS!!,180548427,Navi,Manhattan,Midtown,40.74562,-73.98511,Entire home/apt,620,4,38,2019-07-06,2.52,1,309 +23996251,Harlem,135510002,David,Manhattan,Harlem,40.81498,-73.94622,Shared room,75,2,8,2018-06-03,0.52,1,0 +23996479,#1 Spacious Private Room,303939,Lissette,Staten Island,Tompkinsville,40.63485,-74.08539,Private room,37,2,53,2019-06-11,3.40,6,341 +23996716,"INCREDIBLE, Spacious 1 BDRM in the heart of SOHO.",44352618,Michelle,Manhattan,SoHo,40.72613,-74.00188,Entire home/apt,200,2,37,2019-06-16,2.51,1,8 +23997663,Amazing Artsy&Trendy Building w/Private Bathroom,2373120,Elena,Brooklyn,Bushwick,40.69999,-73.92807,Private room,75,5,9,2019-06-15,0.60,2,336 +23998608,Cozy room with a comfortable bed,15344412,Abe,Staten Island,New Springville,40.57942,-74.15506,Private room,50,1,38,2019-06-23,2.64,3,88 +23999822,Lovely bedroom in the perfect two bedroom condo.,90629446,Mayer,Brooklyn,Crown Heights,40.67237,-73.95191,Private room,120,1,0,,,1,0 +24000030,"Private studio in East Village, affordable price",64892392,Valentine,Manhattan,East Village,40.72921,-73.98629,Entire home/apt,95,3,5,2018-12-31,0.37,1,5 +24000797,Stunning Brooklyn Suite,19202612,Anthony,Brooklyn,Canarsie,40.6302,-73.8997,Entire home/apt,80,3,13,2018-09-09,0.86,1,0 +24006208,CLEAN & COZY PRIVATE ROOM SHARING APARTMENT QUEENS,53778891,Laura,Queens,Kew Gardens,40.71295,-73.82867,Private room,50,2,20,2019-07-07,1.40,1,334 +24014159,"Central Brooklyn Beautiful Rooms +Room Cozy +#2",167098774,Keisha,Brooklyn,Canarsie,40.63757,-73.89205,Private room,55,2,27,2019-05-06,1.74,3,362 +24014307,In the Heights!,180720187,Peter,Manhattan,Washington Heights,40.83432,-73.94457,Private room,48,3,3,2019-01-06,0.19,1,0 +24016646,Sunny 2br Apt in Bedstuy.. 20 mins to Manhattan!,16275624,Cj,Brooklyn,Bedford-Stuyvesant,40.68238,-73.92918,Entire home/apt,100,3,3,2018-09-15,0.20,2,0 +24016962,New York on The Ocean,180744564,Montage Yuriy,Brooklyn,Brighton Beach,40.58019,-73.95403,Entire home/apt,99,1,36,2019-07-07,2.39,1,350 +24017521,Private room in Manhattan(2名個室),117675375,Ky-Tsuyo,Manhattan,East Harlem,40.8003,-73.93829,Private room,74,7,26,2019-06-21,1.70,2,26 +24017674,Private room in cozy prime Bushwick apartment,14856361,Elena,Brooklyn,Bushwick,40.70063,-73.92981,Private room,65,1,59,2019-06-30,4.13,1,43 +24018753,Amazing refuge near Prospect Park,105315535,Ben,Brooklyn,Prospect Heights,40.67617,-73.96636,Entire home/apt,158,30,2,2019-03-31,0.20,3,5 +24019172,"XL Ensuite 5m to Ferry, RUMC, Snug Harbor",9263105,Wj,Staten Island,New Brighton,40.64393,-74.09312,Private room,40,30,1,2019-06-29,1,2,71 +24019698,Midtown East furnished studio apartment,100965471,Melissa,Manhattan,Midtown,40.75247,-73.9695,Entire home/apt,119,2,3,2018-04-26,0.20,1,0 +24020883,Beach Bungalow 2 Bedroom,180781689,Jeremy,Queens,Rockaway Beach,40.58773,-73.81367,Entire home/apt,325,1,61,2019-07-04,4.49,2,129 +24021725,Deluxe East Village Apartment: 2 Bed - 2 Bath,16962957,Nick,Manhattan,East Village,40.72845,-73.97927,Entire home/apt,215,1,52,2019-04-21,3.34,4,51 +24022079,Cozy studio apartment in Bensonhurst,15266695,Sergey & Kate,Brooklyn,Bensonhurst,40.62062,-73.99837,Entire home/apt,120,7,0,,,2,232 +24022413,New penthouse with Manhattan and park views!,4094332,Nick & Gaby,Brooklyn,East Flatbush,40.65478,-73.95264,Private room,65,3,51,2019-06-20,3.71,1,62 +24022943,Large Opulent Studio Apartment Near Prospect Park,20805,Bridget,Brooklyn,Crown Heights,40.66996,-73.956,Entire home/apt,90,4,0,,,1,0 +24024322,"Luxury KING 2br, Airports & Times SQ minutes away",111978355,Katarina,Queens,Elmhurst,40.73421,-73.87387,Entire home/apt,230,2,30,2019-06-14,2.97,2,51 +24024456,"Convenience & Luxury, City andAirport minutes away",111978355,Katarina,Queens,Elmhurst,40.73276,-73.87252,Entire home/apt,188,2,35,2019-06-09,2.26,2,140 +24024496,1 Bedroom+Piano Studio Manhattan Near Central Park,31671247,Tj,Manhattan,East Harlem,40.79398,-73.9397,Entire home/apt,140,2,17,2019-03-24,1.24,1,7 +24024721,JFK Queens Home Away From Home House Of Suedajoy 2,175019394,Suzan,Queens,Jamaica,40.67048,-73.77832,Private room,60,1,138,2019-06-23,8.87,6,177 +24033132,Wonderfully cozy studio on Waverly w/nice backyard,51038,Erica,Brooklyn,Clinton Hill,40.69415,-73.96788,Entire home/apt,95,2,69,2019-06-30,4.52,6,327 +24033812,Greenwich Village Master Bedroom!,180892493,Anokhi,Manhattan,Greenwich Village,40.72947,-73.9995,Private room,100,1,1,2018-03-28,0.06,1,0 +24034429,Oasis in East Village,180897611,Daniel,Manhattan,East Village,40.72642,-73.98402,Entire home/apt,175,2,5,2019-01-01,0.34,1,15 +24034853,Spacious Bedroom in Prime Brooklyn Location,18168381,Jessica,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93235,Private room,45,3,7,2019-06-22,0.46,1,0 +24034953,Room in Minimalist Brooklyn Loft (Fort Greene),25096301,Ryan,Brooklyn,Fort Greene,40.68659,-73.97557,Private room,70,2,9,2019-06-02,0.63,2,3 +24034969,Harlem Charm in a Convenient Location.,40218949,Tom,Manhattan,East Harlem,40.79931,-73.94726,Private room,60,1,35,2019-06-24,2.34,1,94 +24035864,Warm and Friendly Near Broadway and 96th,20154516,David,Manhattan,Upper West Side,40.79566,-73.96859,Private room,95,6,22,2018-08-24,1.47,1,0 +24036655,Charming 1 Bedroom apt at Bayridge,49219601,Alex,Brooklyn,Fort Hamilton,40.62225,-74.03444,Entire home/apt,70,1,2,2018-09-16,0.19,1,0 +24037479,Quiet 1Bed Studio in heart of East Village,16094075,Christopher,Manhattan,East Village,40.72578,-73.98763,Entire home/apt,119,3,8,2019-05-22,0.58,1,41 +24038323,Dreamy Williamsburg Bedroom with Private Terrace,32720219,Gizem,Brooklyn,Williamsburg,40.70894,-73.94333,Private room,120,4,10,2019-06-17,0.66,2,8 +24038899,Harlem suit La barrio,10828579,Najah,Manhattan,East Harlem,40.79815,-73.93906,Entire home/apt,115,7,7,2018-11-01,0.48,2,0 +24039069,Lovely apartment in affluent area of Manhattan,154860771,Serenity,Manhattan,Upper East Side,40.77989,-73.95159,Entire home/apt,125,1,21,2019-05-20,1.44,1,25 +24039582,BedSTUY SupperCLUB,14795719,Shirley,Brooklyn,Bedford-Stuyvesant,40.68491,-73.93399,Private room,45,6,30,2019-06-20,2.06,1,21 +24039926,very cozy private bedroom within a 2 bedroom flat,180945232,Dan (Leo),Manhattan,Hell's Kitchen,40.75605,-73.99541,Private room,89,3,9,2019-06-19,0.58,1,32 +24040279,Cozy and bright bedroom in South Williamsburg,4365496,Sarah,Brooklyn,Williamsburg,40.70989,-73.96231,Private room,75,2,43,2019-06-30,3.04,2,0 +24041042,"Architect Loft, btw Soho & Tribeca, Private Roof",12307951,Edouard,Manhattan,Tribeca,40.71916,-74.00442,Entire home/apt,240,3,9,2019-06-20,0.63,1,17 +24041447,Brooklyn house,2496897,Marixsa,Brooklyn,East Flatbush,40.64282,-73.94497,Entire home/apt,199,4,0,,,1,13 +24041631,Beautiful sunny BR in fully renovated apartment !!,23831257,Nicole,Brooklyn,Bedford-Stuyvesant,40.6807,-73.92917,Private room,40,7,6,2019-04-01,0.45,2,216 +24041916,New One Bedroom 15-20 Min. From NYC! Close to all!,179382251,Christine,Queens,Ditmars Steinway,40.77289,-73.91293,Entire home/apt,100,7,24,2019-06-24,1.99,1,260 +24042332,Beautiful sunlit spacious loft-like pvt. bedroom!,56917612,Jason,Brooklyn,Bushwick,40.69781,-73.92093,Private room,60,1,16,2019-07-06,1.20,1,21 +24042606,Modern sunlit apartment in the heart of Bushwick,91427536,Yoav,Brooklyn,Bushwick,40.69642,-73.9243,Private room,45,5,5,2019-04-20,0.58,2,3 +24042844,"LOVE MANHATTAN 2 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.80863,-73.92121,Private room,50,1,33,2019-07-03,2.14,4,75 +24043603,Experience Brownstone Living in Brooklyn!,4181378,Lauren,Brooklyn,Bedford-Stuyvesant,40.68967,-73.9366,Entire home/apt,175,2,20,2019-07-01,1.67,2,357 +24044039,Vicky客栈1,180991373,Vicky,Queens,Flushing,40.743,-73.82335,Private room,60,1,38,2019-04-21,2.68,5,0 +24044352,"Cozy, Quiet and Spacious Apt in Astoria",5044922,Riomar,Queens,Astoria,40.7637,-73.9268,Entire home/apt,99,7,3,2019-01-04,0.27,1,0 +24046484,Rocco's Pad,139124384,Mackenzie,Brooklyn,Williamsburg,40.71168,-73.94058,Private room,70,20,26,2019-02-01,2.15,1,0 +24056066,Amazing apartment with Balcony ! GREAT LOCATION!,23989761,Teresa,Manhattan,Upper West Side,40.79094,-73.97459,Entire home/apt,260,1,38,2019-07-02,2.56,1,86 +24057278,Flushing Main st 7 train luxurious apartment,161899037,Tony,Queens,Flushing,40.75671,-73.83337,Entire home/apt,159,2,39,2019-07-01,2.68,7,61 +24057583,Beautiful Studio Apt,181108819,Friday,Staten Island,Clifton,40.61804,-74.0861,Entire home/apt,60,1,54,2019-05-22,3.48,1,361 +24058869,"Upper West / Morningside Heights Apt, Near Subway",81022597,Daniel,Manhattan,Morningside Heights,40.80947,-73.96357,Entire home/apt,100,3,0,,,1,0 +24060140,EAST VILLAGE STUDIO APT WITH COURTYARD,29127683,Melissa,Manhattan,East Village,40.73048,-73.98269,Entire home/apt,78,3,4,2019-01-02,0.31,1,13 +24062062,Brooklyn loft with Manhattan skyline view,22002554,Eleni,Brooklyn,Bushwick,40.70057,-73.92385,Entire home/apt,180,7,3,2019-01-02,0.22,1,1 +24062588,Upper West Side NYC Studio Apartment,17132917,Amelia,Manhattan,Upper West Side,40.79719,-73.97097,Entire home/apt,80,3,1,2018-05-04,0.07,1,0 +24065326,Bright 1 Bed w/Lrg Private Balcony in Williamsburg,16835514,Carla Isabel,Brooklyn,Williamsburg,40.71607,-73.96365,Entire home/apt,250,3,16,2019-07-03,1.05,1,41 +24065408,Private Room in Spacious Apartment with Patio!,1583742,Travis,Brooklyn,Boerum Hill,40.68503,-73.98232,Private room,50,2,31,2019-07-07,2.04,1,0 +24065918,One bedroom in Brooklyn Heights,35996743,Scott,Brooklyn,Boerum Hill,40.68958,-73.99141,Entire home/apt,118,2,3,2018-11-12,0.21,1,0 +24066280,"Overnight Crash Couch 12minNY, 10minLGA/30minJFK",100128949,Lisa,Queens,Astoria,40.75465,-73.91357,Shared room,42,1,54,2019-04-20,3.48,4,66 +24066510,Gorgeous Room available in a 2 bed/apt!,21563231,Nafsica,Manhattan,Harlem,40.82632,-73.94637,Private room,69,3,7,2018-10-25,0.46,1,172 +24075491,Long term rental only. 3months min.,8185223,Jason,Brooklyn,Bushwick,40.69558,-73.92578,Private room,42,90,0,,,1,90 +24075850,Cozy private room in Times Square/Rockefeller,4227606,Cindy,Manhattan,Midtown,40.75866,-73.98032,Private room,100,3,13,2019-01-01,0.88,2,0 +24077483,Heaven in Hell’s Kitchen,116482644,Yaniv,Manhattan,Hell's Kitchen,40.76499,-73.98888,Private room,110,1,67,2019-04-08,4.51,2,0 +24077570,Spacious Brooklyn Apartment w/ private backyard,22923979,Séamus,Brooklyn,Bedford-Stuyvesant,40.68149,-73.93449,Entire home/apt,155,2,13,2019-06-28,1.28,1,53 +24078552,Spacious 2 bed/ 1bath w/ outdoor space (sleeps 8),36576422,Ivana,Queens,Forest Hills,40.71754,-73.83367,Entire home/apt,150,2,31,2019-06-24,2.04,1,89 +24078852,"ART apt: QUIET, charming, GEM in GREENWICH VILLAGE",181300842,Mikaela,Manhattan,Greenwich Village,40.72925,-74.00042,Entire home/apt,119,2,12,2019-05-17,1.07,1,0 +24080143,"Beautiful Private Room near Highline, and Train",44292356,Colin,Manhattan,Chelsea,40.74648,-74.00266,Private room,89,30,30,2019-06-27,2.73,1,105 +24080464,HUGE Luxury Upper East Side 1 Bedroom—Roof Access,19445501,Daniel,Manhattan,Upper East Side,40.76692,-73.95298,Entire home/apt,399,2,20,2019-06-23,1.38,1,78 +24082591,Haven In The Heights - Huge Manhattan 2BR 2 Bath!,44303500,Bruce & Suzanne,Manhattan,Washington Heights,40.84634,-73.93861,Entire home/apt,275,2,7,2019-05-12,0.52,2,0 +24082871,Luxury spot,50545016,Joseph,Brooklyn,Crown Heights,40.67695,-73.95554,Entire home/apt,150,21,1,2018-04-01,0.06,1,0 +24083340,Your Dream 1 bed Apartment in the heart of SoHo,13460416,Jeremie,Manhattan,Little Italy,40.7193,-73.99782,Entire home/apt,140,2,6,2019-07-02,0.41,1,0 +24083686,The Bay - A One Bedroom Apartment,181344112,Ernesto,Manhattan,Kips Bay,40.74346,-73.97827,Entire home/apt,199,2,8,2018-12-03,0.54,1,0 +24083746,Cozy private room available from January 1st,32434287,David,Manhattan,Harlem,40.81787,-73.94286,Private room,65,3,1,2018-05-08,0.07,1,0 +24085451,Elegant and Comfortable Home Away from Home in UES,47929235,Samir,Manhattan,East Harlem,40.78723,-73.94956,Private room,100,7,68,2019-06-22,4.39,1,77 +24086178,2 Bedroom Astoria Beautiful,6523823,Louis,Queens,Ditmars Steinway,40.77516,-73.91792,Entire home/apt,103,5,1,2018-04-22,0.07,1,0 +24086457,HUGE 3500 sf 3 bed/3 bth Loft in SoHo/Little Italy,181372846,William,Manhattan,Little Italy,40.71841,-73.99753,Entire home/apt,649,3,38,2019-06-02,2.59,1,199 +24086562,Harlem Sanctuary,178833771,Danese,Manhattan,Harlem,40.82356,-73.9401,Private room,85,2,29,2019-06-03,1.93,3,78 +24086704,"The Photographer Room in Private Home, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.88004,-73.9,Private room,79,3,45,2019-06-12,3.00,4,59 +24089034,Beautiful Spacious Studio Apartment,181397986,Samantha,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93805,Entire home/apt,96,1,50,2019-07-07,4.37,2,257 +24095408,"Spacious Williamsburg, Brooklyn Spare Room",156955078,Michael,Brooklyn,Williamsburg,40.71952,-73.94165,Private room,70,2,41,2019-06-30,2.73,1,14 +24096651,Brooklyn Brownstone Bedroom,161441682,Brady,Brooklyn,Boerum Hill,40.68708,-73.98389,Private room,57,1,9,2018-08-27,0.60,1,0 +24096826,Charming Historic House in Marble Hill!,18389214,Valeria,Manhattan,Marble Hill,40.87621,-73.90997,Private room,274,3,3,2018-07-29,0.24,1,238 +24097816,1BR Apartment on the Upper East Side.,2163683,Daniel,Manhattan,Upper East Side,40.78124,-73.94988,Entire home/apt,250,50,0,,,1,0 +24098320,PRIVATE BEDROOM IN BRAND NEW CONDO IN BED STUY,10222758,Annette,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94326,Private room,90,3,54,2019-07-06,3.68,1,69 +24099108,Brooklyn Stay Inn TH,179436298,Nyota,Brooklyn,Crown Heights,40.66555,-73.95497,Entire home/apt,100,1,4,2019-06-28,2.26,2,365 +24099296,Beautiful 3 BR Midtown East! Clean & Chic!!,22543458,Ashley,Manhattan,Kips Bay,40.74528,-73.97901,Entire home/apt,412,1,69,2019-07-06,4.45,4,133 +24100492,3BR Chic & Beautiful NYC Apartment,22543458,Ashley,Manhattan,Kips Bay,40.74581,-73.9784,Entire home/apt,412,30,54,2019-06-28,3.48,4,227 +24101160,Gorgeous 3BR Penthouse Murray Hill,22543458,Ashley,Manhattan,Kips Bay,40.74481,-73.97879,Entire home/apt,412,30,69,2019-06-24,4.45,4,234 +24103241,"Peaceful spacious bedroom, easy commute to city",13899187,Jude,Queens,Glendale,40.70297,-73.895,Private room,50,7,0,,,1,0 +24103404,European Cozy Studio w Loft Bedroom - West Village,656978,James,Manhattan,West Village,40.7378,-74.0062,Entire home/apt,148,3,0,,,1,0 +24103428,The Halsey Brownstone Inn,179351232,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92784,Entire home/apt,120,2,6,2019-05-05,0.41,1,334 +24103912,⭐︎⭐︎PRIVATE Bathroom⭐︎⭐︎2min to subway+huge living,19303369,Hiroki,Queens,Woodside,40.74267,-73.90354,Private room,41,30,1,2018-09-16,0.10,37,1 +24104871,"Cozy Art Private Bedroom-Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83163,-73.94615,Private room,70,1,16,2019-01-01,1.22,6,32 +24105281,Clean Private room in Manhattan(females only),29582228,Aki,Manhattan,East Harlem,40.79309,-73.94347,Private room,90,4,1,2018-04-16,0.07,1,6 +24105640,"Tranquil private bedroom, Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.8301,-73.94757,Private room,99,1,22,2019-06-30,1.88,6,45 +24114389,"Very Spacious bedroom, steps from CENTRAL PARK.",180661875,Salim,Manhattan,Upper West Side,40.76844,-73.98333,Private room,10,1,2,2018-04-23,0.13,1,0 +24114571,Studio for the Summer,6568865,Adam,Queens,Forest Hills,40.72385,-73.85124,Entire home/apt,69,30,0,,,1,99 +24115364,Modern Room in historic Harlem,11582560,Hulon,Manhattan,Harlem,40.81503,-73.94341,Private room,54,5,22,2019-05-13,1.45,1,5 +24115562,NYC TOP CHOICE RMS located close to pub transport,55948559,Barry,Bronx,Pelham Gardens,40.86615,-73.84185,Private room,35,1,6,2019-06-18,0.40,4,0 +24116050,Amazing room in super warm apt in prime Bushwick !,14573346,Nimo,Brooklyn,Bushwick,40.70575,-73.92075,Private room,39,7,1,2019-04-27,0.41,1,0 +24116631,Beautiful Manhattan Apt- 20 min to Times Square,5740704,Lauren,Manhattan,Washington Heights,40.84884,-73.93199,Entire home/apt,82,7,0,,,1,0 +24116708,brooklyn next prospect park,279067,Manami,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95784,Private room,40,7,0,,,1,53 +24116969,"Paradise - comfortable, spacious loft apartment",162290659,Ari,Manhattan,Chinatown,40.71396,-73.99771,Entire home/apt,148,2,3,2019-06-08,0.21,1,5 +24117055,Enjoy a beautiful room in this bohemian duplex,181651082,Fran,Queens,Rosedale,40.66021,-73.73709,Private room,60,1,10,2019-07-01,0.92,3,164 +24117765,Spacious sanctuary in the heart of Brooklyn,10642957,Catherine,Brooklyn,Bedford-Stuyvesant,40.68056,-73.94685,Entire home/apt,130,3,2,2018-06-06,0.15,1,0 +24118031,✔ Home Away From Home ✔ 100Mbps ✔ Transit Score 99,4924711,Daniel Rusteen,Bronx,Concourse,40.81952,-73.92844,Entire home/apt,95,2,37,2019-07-06,2.89,1,193 +24119086,Private clean room complementary coffee Manhattan,6636052,Renat,Manhattan,East Harlem,40.79805,-73.93527,Private room,65,2,62,2019-07-06,4.14,1,9 +24119328,Charming Brooklyn Gem with Beautiful Views,8612450,Kareem,Brooklyn,Midwood,40.61379,-73.96826,Private room,20,3,4,2018-05-31,0.26,1,18 +24119876,*Large 3 bedroom getaway* Pre Summer discounts,181679481,Krystle,Queens,Arverne,40.59746,-73.79688,Entire home/apt,190,3,21,2019-06-24,1.49,1,327 +24120512,Live in our Bushwick Townhouse,17200390,Nabeel,Brooklyn,Bushwick,40.69211,-73.90634,Private room,60,12,0,,,1,14 +24121036,Woody's Larger Bedroom,24591977,Woody,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9102,Private room,55,4,25,2019-01-14,1.67,2,0 +24121842,Woody's Smaller Bedroom,24591977,Woody,Brooklyn,Bedford-Stuyvesant,40.67749,-73.91084,Private room,49,7,41,2019-01-09,2.67,2,0 +24121885,Cozy Private Bedroom Upper East Side,81013659,Milena,Manhattan,Upper East Side,40.7668,-73.954,Private room,100,3,64,2019-06-25,4.19,2,275 +24122599,Cozy room in a Victorian house in Central Brooklyn,14905006,Myriam,Brooklyn,Kensington,40.63966,-73.9716,Private room,52,1,11,2019-05-27,0.81,1,0 +24122725,Ivoire Realty(Bronx maison avec vue),181711840,Christophe,Bronx,Kingsbridge,40.86286,-73.9024,Private room,35,2,24,2019-06-07,1.56,2,365 +24122836,Cozy Private Room in Flushing 法拉盛中心單人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76562,-73.8299,Private room,45,1,96,2019-07-07,6.56,3,44 +24129287,Sunny Private Bushwick Bedroom,163703392,Melissa,Brooklyn,Bushwick,40.69384,-73.90674,Private room,41,1,18,2019-05-05,1.19,1,0 +24130728,Luxury apartment with amazing views!,11542546,Matthew,Manhattan,Hell's Kitchen,40.76125,-73.99859,Entire home/apt,275,4,2,2018-06-08,0.13,1,0 +24131620,Luxury One Bedroom Apartment in Financial District,26930091,Cindy,Manhattan,Financial District,40.70745,-74.01521,Entire home/apt,265,30,4,2019-01-02,0.35,1,322 +24131689,Classical Upper West Side Experience,62176119,Katya,Manhattan,Upper West Side,40.77799,-73.9782,Entire home/apt,250,4,15,2019-06-11,1.00,1,57 +24131817,Modern & Spacious 1br East Village Apartment,91332497,Nikki,Manhattan,SoHo,40.72256,-74.00018,Private room,130,2,3,2019-01-21,0.48,1,0 +24131843,"Snug, Sun Flooded Room in The Upper West Side",14742776,Daniyal,Manhattan,Morningside Heights,40.80466,-73.96529,Private room,55,4,3,2018-04-13,0.20,1,0 +24132058,2 Bdrm Luxury Condo Wyndham Presidential Sleeps 6,60617669,Rich,Manhattan,Midtown,40.75305,-73.96947,Entire home/apt,365,2,1,2018-05-04,0.07,4,0 +24132282,Spacious room in the heart of Bushwick!,642986,Luisa,Brooklyn,Bushwick,40.69876,-73.92968,Private room,70,15,6,2018-10-31,0.42,1,321 +24133060,A futon in a beautiful studio for females only,20771576,Maryam,Manhattan,East Harlem,40.78999,-73.95226,Shared room,30,3,5,2018-06-13,0.32,2,0 +24133244,Beautiful New York City Midtown Cozy Apartment,117510818,Lea,Manhattan,Hell's Kitchen,40.76657,-73.98514,Entire home/apt,225,3,28,2019-07-02,1.87,1,323 +24135740,"4 Bed, 2 Bath Apt in East Village-Garden Duplex",177353847,East Village,Manhattan,East Village,40.72468,-73.98996,Entire home/apt,650,4,11,2019-07-07,0.75,4,164 +24136172,Sunny Studio Williamsburg w/ Private Bath&Entrance,1844352,Christine,Brooklyn,Williamsburg,40.71195,-73.94307,Private room,95,5,10,2018-09-19,0.70,2,0 +24136557,"2 Bedroom, 1 Bath Apartment in East Village- Sol",177353847,East Village,Manhattan,East Village,40.72677,-73.9911,Entire home/apt,500,4,6,2019-03-20,0.40,4,121 +24136587,FACTORY ARTIST LOFT - 4 ROOMS SLEEPS 10,80770105,Julian,Brooklyn,Williamsburg,40.70505,-73.92937,Entire home/apt,244,3,0,,,1,345 +24136740,"3 Bedroom, 2 Bath Apt in East Village- Penthouse",177353847,East Village,Manhattan,East Village,40.72601,-73.99086,Entire home/apt,750,4,19,2019-05-31,1.27,4,151 +24137279,Prime Dumbo location for a great price!,7199637,Rafael,Brooklyn,Vinegar Hill,40.70045,-73.98468,Private room,46,3,4,2018-05-02,0.26,1,0 +24137323,Private chef & Chill.,181851683,Jennifer,Bronx,Morrisania,40.83252,-73.89811,Private room,40,1,0,,,1,83 +24137748,Manhattan Studio doorman elevator 10min->Times Sq.,181858292,Johnny,Manhattan,Upper West Side,40.77864,-73.98482,Entire home/apt,140,2,34,2018-12-31,2.27,1,0 +24137869,Master Garden Suite @ Northern Lights Mansion,1261480,Diane,Manhattan,Harlem,40.80646,-73.9517,Private room,1500,2,0,,,2,192 +24137890,Shabby Chic UES,67785571,Ellie,Manhattan,Upper East Side,40.7682,-73.95323,Entire home/apt,140,1,3,2018-07-08,0.20,1,0 +24139165,"Best Williamsburg, Brooklyn NY- 30 days or more",8072802,John,Brooklyn,Williamsburg,40.71032,-73.94806,Entire home/apt,199,30,15,2019-07-01,1.03,2,55 +24139687,Couch of your dreams,1767221,Yael,Manhattan,Harlem,40.82829,-73.94691,Shared room,80,5,0,,,2,363 +24140119,"Cozy space with privacy near JFK, CASINO & NYC",181885526,Ling,Queens,South Ozone Park,40.67344,-73.82096,Private room,69,1,91,2019-07-05,5.95,1,90 +24140198,1 Bedroom Elevator Building Apartment in SoHo,85506502,Chris,Manhattan,Nolita,40.72226,-73.99616,Entire home/apt,188,30,3,2018-08-07,0.20,1,0 +24140556,Elegant shabby chic upper east side studio,36818639,Valerie,Manhattan,Upper East Side,40.77023,-73.95212,Entire home/apt,100,2,6,2018-04-26,0.39,1,0 +24147123,"Bright Brooklyn home on the park, private backyard",4857962,Allison,Brooklyn,Bedford-Stuyvesant,40.69017,-73.94825,Entire home/apt,235,3,5,2018-11-25,0.32,1,3 +24149436,Spacious Studio with a Big Balcony,6792120,Gregory,Manhattan,Upper East Side,40.76726,-73.96333,Entire home/apt,165,2,42,2019-05-11,2.81,1,81 +24151078,Cozy 1 bedroom apartment near JFK,83231755,Alisha,Queens,Jamaica,40.68055,-73.791,Entire home/apt,55,2,4,2018-05-06,0.26,1,0 +24151964,Harlem guest room! Welcome to New York,7941100,Luke&Quincey,Manhattan,Harlem,40.81468,-73.93735,Private room,65,2,1,2018-05-29,0.07,1,156 +24153401,Sunny Family Apartment,2011899,Janelle,Brooklyn,Crown Heights,40.66749,-73.95556,Entire home/apt,70,45,1,2018-08-04,0.09,1,2 +24153494,Quiet Ground Floor Bedroom in Midtown West,154965091,Joe,Manhattan,Hell's Kitchen,40.76956,-73.98804,Private room,125,2,29,2019-06-22,2.03,4,43 +24154729,Sunny Brooklyn Artist's Apartment,37995238,Lara,Brooklyn,Williamsburg,40.71426,-73.9369,Entire home/apt,90,7,18,2019-05-01,1.31,1,0 +24155415,Light Filled Room in Bedstuy!,26315450,Sacha,Brooklyn,Bedford-Stuyvesant,40.67941,-73.908,Private room,56,2,8,2018-12-18,0.67,1,0 +24156731,2019 New York Marathon Weekend,132856118,Conchita,Manhattan,Midtown,40.76441,-73.98145,Entire home/apt,394,3,1,2018-11-05,0.12,1,13 +24156857,BEAUTIFULLY DESIGNED 2BD Brooklyn Apt +GREAT VIEWS,3156480,Margaret,Brooklyn,Boerum Hill,40.68669,-73.98498,Entire home/apt,172,5,4,2019-01-03,0.27,1,0 +24157013,Cozy Brooklyn Designer Apartment,182039779,Eleanor,Brooklyn,Carroll Gardens,40.68123,-73.99424,Entire home/apt,100,3,7,2019-07-06,0.47,1,0 +24157110,Supersized UES Studio near all hospitals,28422,Bernadette,Manhattan,Upper East Side,40.77359,-73.94967,Entire home/apt,80,181,0,,,1,189 +24158722,Luxury Studio in Hell’s Kitchen - In Unit W/D,31404168,Ashley,Manhattan,Hell's Kitchen,40.76179,-73.99989,Entire home/apt,142,20,4,2018-09-28,0.30,1,0 +24158806,An Art Decor Inspired Urban Oasis,142426920,Christina Jo,Brooklyn,Prospect Heights,40.68215,-73.97002,Entire home/apt,220,2,9,2019-06-30,0.64,1,85 +24158816,Cozy Modern Loft with Fireplace in West Village,128610997,Zani,Manhattan,West Village,40.73233,-74.00244,Entire home/apt,264,10,17,2019-06-13,1.19,2,94 +24159289,Great View of New York city,41366374,Jiangyang,Queens,Long Island City,40.75047,-73.9408,Entire home/apt,150,1,0,,,1,0 +24160395,Brooklyn Penthouse With Manhattan Views,178145214,Steve,Brooklyn,Williamsburg,40.71189,-73.95355,Entire home/apt,200,2,43,2019-06-01,2.80,1,102 +24161365,Das Bushwick Haus,2497606,John,Brooklyn,Bushwick,40.68261,-73.90714,Private room,45,6,1,2018-06-16,0.08,1,0 +24161582,Bright Bohemian Treasure in Prospect Heights,182086879,Patti,Brooklyn,Prospect Heights,40.67942,-73.96469,Private room,150,2,8,2018-09-06,0.53,2,0 +24162064,Heart of Midtown Manhattan,182092241,Masa,Manhattan,Midtown,40.75359,-73.97028,Entire home/apt,160,3,48,2019-06-28,3.35,1,203 +24162261,Spacious 1st floor apartment.,83377687,Fernando,Queens,Jackson Heights,40.75436,-73.85696,Entire home/apt,135,2,46,2019-06-25,3.08,2,141 +24162615,"LARGE COZY BASEMENT, FLUSHING QUEENS",178059867,Kevin,Queens,Flushing,40.75722,-73.80595,Private room,55,1,56,2019-06-19,3.75,3,345 +24162681,Bedstuy Cozy Go Green,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9456,Private room,50,1,114,2019-06-23,7.57,3,363 +24162696,Pristine midtown studio for short-term sublet,1391408,Allen,Manhattan,Theater District,40.75897,-73.98318,Entire home/apt,89,120,0,,,1,173 +24164953,One BDRM in Ridgewood,74291583,Sarah,Queens,Ridgewood,40.70594,-73.91453,Private room,49,1,6,2018-04-25,0.40,1,11 +24164956,Cozy 1 Bedroom Apt~Midtown-East Manhattan NYC!,132492053,Kelley,Manhattan,Midtown,40.75523,-73.97104,Entire home/apt,185,1,8,2019-05-21,1.13,1,29 +24166066,You will LOVE my studio in West Village.,14678390,Mario,Manhattan,West Village,40.73354,-73.99982,Entire home/apt,180,4,31,2019-07-02,2.14,1,10 +24169179,NEW!! Private room in the heart of Brooklyn,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.68853,-73.95982,Private room,70,2,33,2019-03-06,2.33,2,17 +24171777,Luxury Triplex with Roofdeck,6489789,Tim,Brooklyn,Gowanus,40.68159,-73.98075,Entire home/apt,450,2,3,2019-04-03,0.35,1,22 +24172522,Room with a view,72923342,Farah,Manhattan,Upper West Side,40.77101,-73.98481,Entire home/apt,110,1,7,2018-04-28,0.46,1,0 +24175050,"Living by the ocean, Brooklyn",181827361,Mira,Brooklyn,Brighton Beach,40.57721,-73.96076,Entire home/apt,125,7,0,,,1,247 +24175236,Private room in Clinton Hill,13929249,Grainne,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95453,Private room,72,1,2,2018-05-20,0.14,1,0 +24177410,King-Suite on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.68962,-73.93352,Private room,80,2,3,2018-10-21,0.29,4,54 +24177822,**Budget Private Room w/Private backyard,154258141,Elsie,Brooklyn,Bushwick,40.68811,-73.91219,Private room,44,2,30,2019-05-10,2.06,10,322 +24178083,Charming mezzanine bedroom near Prospect Park,179778880,Marcus,Brooklyn,Sunset Park,40.66179,-73.99062,Private room,45,2,37,2019-05-18,2.61,2,308 +24178481,Bed-Stuy Grove,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.68524,-73.94427,Private room,71,1,85,2019-06-19,5.60,3,317 +24179288,**Amazing Private Room 20 min to manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68994,-73.91371,Private room,60,2,41,2019-06-24,2.78,10,359 +24179556,**Captivating Private Budget Room,154258141,Elsie,Brooklyn,Bushwick,40.68951,-73.91405,Private room,65,2,29,2019-05-11,1.90,10,356 +24179803,One of a Kind Chinatown 2BR Home w/ HUGE patio,72882190,Angie,Manhattan,Chinatown,40.7147,-73.99868,Entire home/apt,300,7,2,2018-10-15,0.20,1,178 +24181763,"Private Room in Bklyn, 1 min to J, Free Breakfast",182260692,Leesha,Brooklyn,Cypress Hills,40.68168,-73.87882,Private room,99,2,67,2019-07-01,4.59,2,295 +24181925,Family Room in Bed-Stuy,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.6856,-73.94388,Private room,79,1,75,2019-06-23,4.91,3,295 +24182137,Wyndham Midtown 45 (2 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75383,-73.97278,Entire home/apt,339,3,28,2019-03-17,1.93,12,0 +24183293,Queen Twin & Futon Ridgewood/Bushwick w View & Gym,48182426,Emilio,Queens,Ridgewood,40.70077,-73.90793,Private room,58,1,3,2018-04-15,0.20,1,0 +24184615,"Private room in cozy apartment, Fort Greene",75479604,Alyssa,Brooklyn,Fort Greene,40.69461,-73.97225,Private room,90,1,24,2019-05-15,2.18,2,0 +24185045,Midtown Manhattan Apartment with Rooftop & Doorman,13204586,María José,Manhattan,Murray Hill,40.74803,-73.97282,Entire home/apt,175,3,0,,,1,0 +24186326,"5 Star Quiet, Spacious Condo. Freedom Tower view",10915812,Wyatt,Manhattan,Battery Park City,40.71085,-74.0158,Entire home/apt,158,2,20,2019-06-23,1.34,1,2 +24186601,Upper East Museum Roads,20367358,Maryse,Manhattan,Upper East Side,40.77456,-73.94602,Entire home/apt,145,28,2,2018-11-19,0.23,1,278 +24186775,"Huge, Clean Brooklyn Room with lots of light",17183013,Mellissa,Brooklyn,Bedford-Stuyvesant,40.68225,-73.9188,Private room,60,2,47,2019-07-01,3.12,1,134 +24187794,Renovated 1 BDR Apt~ Heart of Midtown Manhattan ❤️,29582882,Lynn Liz,Manhattan,Midtown,40.75592,-73.96957,Entire home/apt,99,2,54,2019-06-20,3.54,1,98 +24188354,"Large studio in Williamsburg, 2B",49704571,Krzysztof,Brooklyn,Williamsburg,40.71972,-73.94462,Entire home/apt,80,30,5,2019-05-17,0.42,8,161 +24194478,Williamsburg loft just 20 mins from manhattan!!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72563,-73.9556,Private room,85,1,57,2019-06-29,3.78,7,16 +24199249,Beautiful East Village Room Open For You!,182411776,David,Manhattan,East Village,40.73045,-73.98067,Private room,115,1,37,2019-06-05,2.55,1,128 +24199400,Washington Heights,70162513,Anaiya,Manhattan,Washington Heights,40.83701,-73.94256,Private room,52,1,3,2018-04-29,0.20,1,0 +24200751,2BR 3BD 1.5BA | Rooftop & Balcony | Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70653,-73.90877,Entire home/apt,280,2,42,2019-06-23,3.44,2,108 +24201129,Bright & Cozy Studio in PRIME Flatiron/Chelsea,25635056,Christina,Manhattan,Chelsea,40.73836,-73.99567,Entire home/apt,250,2,12,2019-06-06,1.33,1,7 +24202365,Private room in Manhattan NYC. Train a min away!,182440062,Juan,Manhattan,Harlem,40.82484,-73.93913,Private room,55,1,7,2019-06-22,0.55,2,157 +24203680,Entire Newly Renovated Sugar Hill Apt,9756051,Samantha,Manhattan,Harlem,40.82696,-73.94598,Entire home/apt,100,3,6,2019-01-04,0.44,1,8 +24203813,Huge Modern High End 3BR Apt Prime Location,51510730,Lidor,Brooklyn,Fort Greene,40.68884,-73.97738,Entire home/apt,195,1,6,2018-11-23,0.49,1,0 +24204269,Big Sunny Room 1 Block from Central Park,7360975,Calvin,Manhattan,East Harlem,40.79635,-73.94815,Private room,80,3,15,2019-06-01,1.25,1,88 +24204338,Private Cozy Room on Manhattan,63929490,Lidziya,Manhattan,East Harlem,40.78719,-73.95201,Private room,100,7,18,2019-06-19,1.25,1,45 +24204341,Sunny Brooklyn Home Away From Home,4127752,Angela,Brooklyn,Bedford-Stuyvesant,40.67951,-73.94426,Private room,55,4,5,2019-01-18,0.35,1,0 +24204582,Sun-drenched studio with a beautiful view,50941579,Julia,Manhattan,Harlem,40.82008,-73.95523,Entire home/apt,120,5,1,2018-08-25,0.09,1,34 +24205303,Spacious 1 bedroom in the clouds with river views,34364912,Courtney,Manhattan,Hell's Kitchen,40.77024,-73.99266,Entire home/apt,300,2,14,2019-06-25,0.95,1,87 +24205351,Wyndham Midtown 45 (2 Bedroom Presidential) 8A,100238132,Michael,Manhattan,Midtown,40.75368,-73.97317,Entire home/apt,339,3,30,2019-01-02,2.07,12,0 +24206202,Exquisite Park Slope Brownstone Apartment,182472967,Maureen,Brooklyn,Park Slope,40.67063,-73.97826,Entire home/apt,140,3,1,2019-06-14,1,1,65 +24206224,Harlem hideout w/ great amenities!,10771238,Justin,Manhattan,Harlem,40.82599,-73.95289,Private room,53,2,0,,,3,188 +24207804,"NYC room-cozy, basic, clean, cheap & close to all",182488531,Kevin4,Queens,Elmhurst,40.73739,-73.86991,Shared room,21,1,21,2019-06-16,1.64,2,260 +24207931,Modern Prospect Park 3 bedroom Jewel,182326270,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95852,Entire home/apt,125,4,58,2019-06-21,3.80,1,78 +24208472,Two room suite 1min from subway 20min to Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95623,Private room,47,1,64,2019-06-12,4.33,7,278 +24208760,Gorgeous Upper West Side apt in stellar location!,56905821,Josh & Carin,Manhattan,Upper West Side,40.77959,-73.97827,Private room,180,2,29,2018-11-20,1.96,1,0 +24208976,Spacious Room in Clinton Hill Duplex,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95934,Private room,58,2,1,2018-04-10,0.07,2,0 +24209867,Spacious Room in Clinton Hill/Bed-Stuy,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95947,Private room,58,2,0,,,2,0 +24210296,Private bedroom in Downtown Manhattan,97015202,Maya,Manhattan,SoHo,40.72741,-74.0088,Private room,150,1,61,2019-05-31,4.11,1,8 +24210400,Large Gorgeous BR in Artist Loft - BEST Location!!,20486410,Miley,Manhattan,Hell's Kitchen,40.75423,-73.99461,Private room,120,1,75,2019-06-23,4.93,1,134 +24217712,Diamond in the Art of Bushwick 1 block to M Subway,842091,Megwyn,Brooklyn,Bushwick,40.70081,-73.92494,Private room,47,3,55,2019-06-27,3.67,2,12 +24222051,AMAZING CITY VIEWS! New Jersey 15 min Times Square,154949847,Emily,Manhattan,Hell's Kitchen,40.76127,-74.00235,Entire home/apt,288,3,36,2019-06-23,2.93,2,109 +24223406,**Enormous Budget Private Room,154258141,Elsie,Brooklyn,Bushwick,40.68936,-73.91369,Private room,65,2,40,2019-06-04,2.65,10,343 +24223602,Prospect Heights Paradise,182086879,Patti,Brooklyn,Prospect Heights,40.67999,-73.96462,Entire home/apt,300,7,17,2019-06-28,1.22,2,129 +24226102,Class on Wall Street,34358062,Rachel,Manhattan,Financial District,40.70399,-74.00827,Private room,104,2,1,2018-04-07,0.07,1,0 +24226175,Bright apt w Balcony in the heart of williamsburg,12002279,Ayelet,Brooklyn,Williamsburg,40.71417,-73.9591,Entire home/apt,160,5,20,2019-01-01,1.43,1,0 +24226286,Traditional Townhouse in Bushwick,21466891,Martin,Brooklyn,Bushwick,40.68269,-73.90911,Entire home/apt,250,5,0,,,2,0 +24226511,Newly Remodeled 2 Bedroom Apartment in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79046,-73.94436,Entire home/apt,186,1,0,,,3,0 +24226528,Private Bedroom w/ Private Entrance-Williamsburg!,1525346,Jenn,Brooklyn,Williamsburg,40.70949,-73.94892,Private room,73,4,25,2019-05-13,1.64,1,48 +24226842,Luxury High Floor Studio with stunning view,17477908,Mat,Manhattan,Upper West Side,40.79446,-73.96651,Entire home/apt,195,30,3,2019-06-01,0.21,10,311 +24226955,Spectacular 1-Bedroom modern apartment in Flatiron,7461066,Santiago,Manhattan,Midtown,40.74383,-73.98387,Entire home/apt,200,7,1,2019-01-02,0.16,1,0 +24227739,NYC experience,43463232,Carlos,Brooklyn,Bushwick,40.69355,-73.91829,Private room,100,7,7,2018-08-22,0.50,2,365 +24229031,3 QUEEN size lofts in Williamsburg/grrenpoint!!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72552,-73.95647,Private room,300,1,8,2018-11-11,0.53,7,14 +24229203,Artist Warehouse Loft,4391922,Taras,Brooklyn,Navy Yard,40.69792,-73.96406,Entire home/apt,150,2,19,2018-12-29,1.27,1,0 +24230067,"Beautiful 1 bed, UES - steps from Central Park!",5132019,Jocelyn,Manhattan,Upper East Side,40.77905,-73.95275,Entire home/apt,190,2,8,2019-03-05,0.54,1,3 +24230182,Brand-new Room - 20 mins to Manhattan,127412674,Charles,Brooklyn,Williamsburg,40.70111,-73.94471,Private room,75,2,28,2019-05-29,1.91,2,342 +24230591,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74512,-73.97921,Private room,81,4,6,2018-12-17,0.39,2,0 +24231655,Humble Abode in the Bronx,37417547,Raquel,Bronx,Mount Eden,40.84197,-73.91292,Private room,25,2,2,2018-05-19,0.14,1,0 +24232076,Amazing cozy studio Lower East Side/Soho/Nolita!,8591292,Rose,Manhattan,Lower East Side,40.72201,-73.98856,Entire home/apt,275,3,20,2019-06-30,1.36,1,359 +24232309,VERA’S PLACE JUST A STEP FROM SUBWAY,139946116,Vera,Queens,Long Island City,40.7613,-73.92864,Private room,60,7,1,2018-05-05,0.07,1,365 +24232645,"LUXURY APARTMENT, 5 MIN SUB INTO MANHATTAN",157967816,Analia,Brooklyn,Greenpoint,40.72129,-73.94329,Entire home/apt,180,2,49,2019-06-12,3.52,3,233 +24232774,Room in Brooklyn near EVERYTHING!!,41869421,Oriana,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95097,Private room,90,2,1,2018-09-24,0.10,1,343 +24234030,UES 1 bedroom as if you appropriated it yourself!,39083533,Charles,Manhattan,Upper East Side,40.77181,-73.9574,Entire home/apt,222,2,0,,,1,32 +24234359,Town House in Popular Forte Green,2560891,Petra,Brooklyn,Fort Greene,40.69613,-73.97117,Entire home/apt,95,7,6,2018-12-03,0.45,1,19 +24239222,little nook in astoria,74874485,Ana,Queens,Ditmars Steinway,40.77305,-73.9082,Entire home/apt,70,3,2,2018-04-12,0.13,1,0 +24240996,"new-entire condo, terrace, parking D-N-R trains-IC",19707138,Ali,Brooklyn,Sunset Park,40.65604,-74.00032,Entire home/apt,125,15,1,2018-04-08,0.07,1,8 +24242153,Private apartment in ♡ of Williamsburg,167818456,Anna,Brooklyn,Williamsburg,40.71254,-73.95527,Entire home/apt,173,2,51,2019-06-30,3.55,2,127 +24243249,Dreamy Williamsburg Loft with Private Terrace,32720219,Gizem,Brooklyn,Williamsburg,40.70735,-73.94347,Entire home/apt,220,2,0,,,2,0 +24243862,Beautiful Greenwich Village Loft Apartment,5002183,Kyra,Manhattan,Greenwich Village,40.72705,-73.99904,Entire home/apt,148,2,3,2018-07-18,0.24,1,0 +24244194,Full private bathroom inside private room :),176821276,Andrea,Manhattan,Harlem,40.82499,-73.95374,Private room,75,3,8,2018-08-13,0.54,1,0 +24244796,ARTIST LOFT ON HISTORIC TRENDY BLOCK IN SOHO,70091196,Frances,Manhattan,Nolita,40.72402,-73.99452,Entire home/apt,199,2,53,2019-07-04,4.02,1,99 +24245265,Cozy Room For Two/ Steps to Train/Coffee included!,79913651,Darryl,Manhattan,Harlem,40.82268,-73.953,Private room,54,2,26,2019-05-03,1.73,4,157 +24245905,One-br apt in the heart of NYC for late May,131914514,Li,Manhattan,Midtown,40.75265,-73.9684,Entire home/apt,150,4,0,,,1,0 +24246039,Central Park West Duplex,106309624,Burt,Manhattan,Upper West Side,40.78723,-73.97031,Entire home/apt,153,2,6,2019-04-22,0.41,1,0 +24246595,Cozy apt in Bedstuy,34360053,Seba,Brooklyn,Bedford-Stuyvesant,40.6879,-73.94473,Entire home/apt,99,14,1,2018-04-07,0.07,1,0 +24246704,NEAR COLUMBIA PRESBYTERIAN HOSP. Student&Visitor,25237492,Juliana,Manhattan,Washington Heights,40.84103,-73.94063,Private room,65,30,3,2018-12-07,0.26,34,311 +24247367,Midway Home,38874050,Howard,Queens,Ridgewood,40.70058,-73.91061,Private room,50,2,43,2019-06-06,3.15,3,150 +24247380,Crown Heights Brooklyn Room near Franklin Ave,76737749,Chris,Brooklyn,Crown Heights,40.6735,-73.95562,Private room,45,1,0,,,1,0 +24247797,East Village room with a view,19001556,Monica,Manhattan,East Village,40.72421,-73.98025,Private room,100,3,6,2018-06-22,0.42,2,0 +24248461,Cozy Pad in East Williamsburg,25039950,David,Brooklyn,Williamsburg,40.71115,-73.93735,Private room,62,1,6,2018-05-31,0.39,2,0 +24248735,Hidden Gem in Heart of Chinatown,24604504,Jess,Manhattan,Chinatown,40.71394,-73.99843,Private room,77,7,1,2018-04-29,0.07,1,0 +24248741,Minimal Williamsburg Space,2796906,Austin,Brooklyn,Williamsburg,40.70833,-73.94898,Private room,46,1,3,2018-04-13,0.20,1,0 +24250052,Private Room on NYC's Upper West Side,21379585,Erik Joshua,Manhattan,Upper West Side,40.77988,-73.98605,Private room,95,1,50,2019-05-30,3.30,1,0 +24251237,West Village Private Flat AMAZING Location,180329864,Victoria,Manhattan,Greenwich Village,40.73393,-73.9963,Entire home/apt,159,5,4,2019-06-09,0.31,1,42 +24251311,Beautiful 1 BR Apt in the Heart of West Village!,41361010,Zack,Manhattan,West Village,40.73333,-74.0052,Entire home/apt,300,2,8,2019-05-20,0.81,1,199 +24258555,URBAN SPACE the Brooklyn Way!,160318374,Giulia,Brooklyn,Bedford-Stuyvesant,40.67791,-73.92879,Entire home/apt,103,30,42,2019-05-10,2.91,2,139 +24258565,Stylish Nolita 1 Bedroom,143589,Delia,Manhattan,Nolita,40.72213,-73.99479,Entire home/apt,200,2,22,2019-06-09,1.57,1,3 +24260244,NYC BEAUTIFUL APARTMENT IN MANHATTAN,58023108,Nicole,Manhattan,Kips Bay,40.74077,-73.97977,Private room,102,20,2,2018-04-11,0.13,1,0 +24260247,Ditmas Park Victorian Home,14759766,Jerry,Brooklyn,Flatbush,40.64401,-73.96047,Entire home/apt,350,7,1,2019-04-21,0.38,2,77 +24260404,Cozy Queens Studio,182940016,Comfy,Queens,Far Rockaway,40.59707,-73.76506,Entire home/apt,425,1,0,,,1,90 +24260464,Garden room in a private house,15310048,Darya,Brooklyn,East Flatbush,40.65185,-73.94555,Private room,45,45,5,2019-06-01,0.38,2,155 +24261171,Luxury Two-Story Loft in Clinton Hill/Bed-Stuy!,1133299,Ibada,Brooklyn,Bedford-Stuyvesant,40.69592,-73.94765,Entire home/apt,168,3,24,2019-06-10,1.63,1,30 +24264371,Comfy Private Room,182976972,Annero,Brooklyn,East Flatbush,40.64929,-73.92647,Private room,40,3,39,2019-07-02,2.64,2,263 +24265177,Bright Renewed Apartment 1 minute from A express train,182945752,Carol&Emerson,Manhattan,Washington Heights,40.84104,-73.93838,Private room,55,2,71,2019-07-06,4.89,1,135 +24265209,Cozy Apartment,182295691,Doudou,Manhattan,Upper East Side,40.77311,-73.95508,Entire home/apt,150,5,10,2019-03-09,0.76,1,25 +24265333,Prime Williamsburg location- Private bedrm & bath,84527789,Lauren,Brooklyn,Williamsburg,40.71686,-73.95638,Private room,79,2,17,2019-06-17,1.15,1,1 +24265776,Cozy Brooklyn Apartment room near Manhattan,10875931,Bart,Brooklyn,Flatbush,40.64741,-73.97102,Private room,65,2,70,2019-06-30,4.79,1,90 +24266025,Private Room in The Heart of Manhattan,182989727,Ilya,Manhattan,Chelsea,40.74579,-73.9909,Private room,70,3,8,2019-05-12,0.54,1,0 +24266063,Beautiful Contemporary Duplex w. Patio & Roofdeck,1327248,Ian,Brooklyn,Williamsburg,40.71651,-73.95623,Entire home/apt,199,2,4,2019-05-27,0.30,1,93 +24266273,Cozy Private Room in Downtown Flushing法拉盛中心私人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76525,-73.83055,Private room,45,1,101,2019-07-07,7.03,3,33 +24267208,Pulp Fiction private room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.67952,-73.91296,Private room,70,1,90,2019-07-05,5.99,3,31 +24267383,Room with Private Bathroom in Renovated 2Br2Ba,13078961,Marian,Brooklyn,Bedford-Stuyvesant,40.69201,-73.94104,Private room,60,3,1,2018-05-31,0.07,1,0 +24267385,Sonder | 116 John | Charming 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70688,-74.00523,Entire home/apt,194,29,0,,,96,343 +24267506,The Godfather private room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.68088,-73.91181,Private room,59,1,83,2019-07-02,5.48,3,24 +24267706,entire sunshine of the spotless mind room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.68234,-73.91318,Private room,49,1,102,2019-07-05,6.73,3,0 +24269100,Sunny Bedroom with Private Bathroom/法拉盛中心私人房間獨立衛浴,181710793,Michelle & Evelyn,Queens,Flushing,40.76425,-73.83061,Private room,65,1,94,2019-06-26,6.45,3,41 +24276183,** Foodies LOVE This Neighborhood?=>Authentic!!!,59749141,Veronica,Manhattan,East Harlem,40.80451,-73.94079,Entire home/apt,165,2,61,2019-06-26,4.06,1,59 +24276835,Brooklyn Flat in prime Carroll Gardens (Room),26459329,John,Brooklyn,Carroll Gardens,40.67559,-73.99943,Private room,80,2,27,2019-03-13,1.79,1,144 +24277232,Rockaway Beach House,139105717,Larry,Queens,Arverne,40.59103,-73.79497,Entire home/apt,175,2,0,,,1,0 +24278511,Sunny Room - Inn Your Element,19866189,Natasha,Queens,Arverne,40.58906,-73.79503,Private room,95,1,0,,,5,364 +24278899,Fantastic studio in Chinatown/Lower East side,24404900,Nate,Manhattan,Chinatown,40.71371,-73.99355,Entire home/apt,100,2,73,2019-06-30,4.86,1,3 +24279547,Rooftop Terrace Room - Inn Your Element B&B,19866189,Natasha,Queens,Arverne,40.58896,-73.79494,Private room,95,1,2,2018-07-01,0.15,5,361 +24279693,THE BROOKLYN BLUE HOUSE 1.,183127881,Giana,Brooklyn,Canarsie,40.6469,-73.90022,Private room,54,1,61,2019-05-20,4.19,4,319 +24279771,Gorgeous Times Square Flat!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76008,-73.98846,Entire home/apt,299,2,41,2019-05-29,2.79,5,169 +24279933,[Priv Rooftop] Sunny-Spacious Priv Bath bedroom,36632628,Camilo,Brooklyn,Bedford-Stuyvesant,40.68102,-73.93686,Private room,45,4,6,2018-11-26,0.41,1,0 +24281831,Bright and modern New York apartment,38085094,Preeya,Manhattan,Chelsea,40.75087,-73.9953,Entire home/apt,250,2,3,2018-06-24,0.21,1,0 +24281837,Beautiful one bedroom apartment center of Astoria,31679084,Barbara,Queens,Astoria,40.76936,-73.91491,Entire home/apt,120,1,6,2019-03-12,0.41,1,117 +24282118,One Bed Room in Financial District,155935757,Amy,Manhattan,Financial District,40.70615,-74.00752,Entire home/apt,105,30,1,2018-12-29,0.16,1,233 +24282429,#Awesome 2 BR Flat Times Square!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76385,-73.99219,Entire home/apt,299,2,26,2019-03-31,1.76,5,0 +24283298,Luxury Modern Sunny 1BR (Clinton Hill - BedStuy),105159,Martin,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95826,Entire home/apt,130,30,6,2019-01-04,0.43,1,189 +24283531,Quiet Railroad Style Apartment,11150363,Lanee,Queens,Ridgewood,40.70642,-73.90554,Entire home/apt,90,5,2,2018-05-20,0.14,1,0 +24284162,"Books, music and Clinton Hill",80793056,Hazel,Brooklyn,Clinton Hill,40.69289,-73.96865,Private room,62,2,2,2018-05-07,0.14,1,0 +24284701,HEART WILLIAMSBURG - PRIVATE TERRRACE AND BATHROOM,101457588,Louis,Brooklyn,Williamsburg,40.70705,-73.94976,Private room,70,5,1,2018-06-03,0.07,1,0 +24284744,Bright & Beautiful Studio in Columbus Circle/HK!,123362684,Jacob,Manhattan,Hell's Kitchen,40.7671,-73.98744,Entire home/apt,225,1,11,2019-06-17,0.73,1,1 +24285044,Peaceful Room in UWS + sweet pets!,24595747,Melissa,Manhattan,Upper West Side,40.77969,-73.97862,Private room,95,3,16,2019-05-19,1.08,2,0 +24285110,Large 4 bedrooms close to train. 15 m.to Manhattan,183178516,Lucky Day Realty Corp.,Queens,Rego Park,40.72643,-73.86083,Entire home/apt,288,3,16,2019-06-12,1.17,1,136 +24285869,Charming humble hideaway in LES,97825,Eduardo,Manhattan,Lower East Side,40.71883,-73.98957,Entire home/apt,149,8,19,2019-06-23,1.30,1,6 +24286512,Gowanus Pad,29110009,Kate,Brooklyn,Gowanus,40.66889,-73.99115,Private room,95,1,3,2019-06-24,0.22,1,221 +24286518,Large Bright Apt Near Brooklyn's Prospect Park,183191309,Marie,Brooklyn,Prospect-Lefferts Gardens,40.65711,-73.95655,Entire home/apt,150,3,26,2019-04-27,1.84,1,26 +24286851,"Sunny West Village 1BR: amazing location, spacious",54042,Vicki,Manhattan,West Village,40.72969,-74.00697,Entire home/apt,200,2,10,2019-06-21,0.68,1,0 +24287062,Sally's hideaway,180289633,Aleksej,Queens,Woodside,40.7466,-73.89176,Entire home/apt,150,4,27,2019-06-23,2.00,1,321 +24287261,Sweet Spot In Manhattan NYC!,16574437,Lee,Manhattan,Harlem,40.81542,-73.94574,Entire home/apt,175,2,29,2019-07-01,1.92,1,190 +24287286,Spacious home next to JFK airport,32617252,Paul,Queens,Jamaica,40.66735,-73.78922,Entire home/apt,180,2,50,2019-07-07,3.87,1,181 +24287367,Come Explore The Bronx And 30 Mins to Manhattan,102896902,Lawrence,Bronx,Concourse Village,40.83216,-73.91598,Private room,70,3,3,2019-05-22,0.40,1,178 +24287826,Superb Private Bedroom with Private Bath in UPS!,183211558,Linda,Manhattan,Upper East Side,40.77768,-73.94951,Private room,100,2,39,2019-06-19,2.58,1,55 +24287857,Astoria Centeral Location,183211776,Rafael,Queens,Astoria,40.76387,-73.90995,Private room,79,1,73,2019-06-30,5.03,4,171 +24287863,In the heart of NYC...,165395917,Jose,Manhattan,Midtown,40.75512,-73.97155,Private room,350,2,60,2019-06-28,4.00,1,148 +24288869,Private Room+Beautiful Private Backyard Near City,25414207,Brooklyn P,Queens,Ridgewood,40.69928,-73.90616,Private room,75,1,59,2019-06-29,3.99,2,162 +24289129,My Times Square Oasis,1334373,David,Manhattan,Hell's Kitchen,40.76323,-73.99248,Entire home/apt,235,3,7,2019-05-28,0.47,1,5 +24289209,Astoria Centrally located!,183211776,Rafael,Queens,Astoria,40.76531,-73.91126,Private room,39,1,11,2018-12-26,0.77,4,62 +24289510,Studio in the heart of Manhattan!,54103333,Tatiana,Manhattan,Hell's Kitchen,40.75974,-73.98924,Entire home/apt,300,4,2,2018-06-29,0.14,1,5 +24289567,Cozy room for easy traveler,41326856,Jeerathinan,Queens,Elmhurst,40.74468,-73.87911,Private room,50,1,21,2019-06-08,1.39,5,71 +24289926,Comfortable and spacious bedroom in midtown east,149324749,Hessam,Manhattan,Midtown,40.75628,-73.96918,Private room,130,2,2,2018-06-22,0.13,1,0 +24299542,Prime Luxury Apartment,25093840,Abinav,Manhattan,Murray Hill,40.74766,-73.97601,Private room,130,1,3,2018-05-30,0.21,1,0 +24300863,Tranquil Oasis in the Heart of Greenwich Village,5594198,Michelle,Manhattan,Greenwich Village,40.73034,-74.00135,Entire home/apt,250,2,29,2019-06-23,1.91,1,44 +24302356,Sweet Getaway in the Hidden Gem w/ Backyard/Patio,33067672,Ivy,Brooklyn,Sunset Park,40.65247,-74.00994,Entire home/apt,120,2,1,2018-06-04,0.08,1,0 +24302828,"My home, your home! Mi casa, tu casa in NY!",125011763,Peter,Queens,Astoria,40.76137,-73.90582,Entire home/apt,450,4,0,,,2,89 +24303775,Spacious Living Space in the heart of Brooklyn,170817628,Ruta,Brooklyn,Fort Hamilton,40.62313,-74.03114,Private room,47,28,0,,,1,31 +24304515,Sunny Studio in East Village,471453,Michael,Manhattan,East Village,40.7209,-73.98142,Entire home/apt,115,2,12,2019-06-24,0.80,1,0 +24304881,Bright Getaway Studio on the Hudson River,122917817,Kelly,Manhattan,Harlem,40.82036,-73.95415,Entire home/apt,100,2,24,2019-07-04,2.57,1,8 +24305035,Bright and cozy apartment Williamsburg,14709426,Eloise,Brooklyn,Williamsburg,40.71746,-73.9506,Entire home/apt,120,6,6,2019-04-21,0.42,1,20 +24305252,"The Architect’s Suite w/ Private Bath, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.87997,-73.90035,Private room,65,3,54,2019-06-19,3.69,4,64 +24305977,"The Sailors Perch Room in Private Home, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.88068,-73.90012,Private room,79,3,55,2019-06-20,3.68,4,63 +24306539,New Chic Designer's Bedroom,16257970,Jackie,Manhattan,Lower East Side,40.71313,-73.98665,Private room,89,3,48,2019-07-05,3.19,2,181 +24307110,Sunny Lower East Side Sanctuary,43321,Lucinda,Manhattan,Chinatown,40.71426,-73.99175,Entire home/apt,300,7,6,2019-07-06,0.44,1,19 +24307675,Luxury Apartment right on Union Square!,183375315,Brandon,Manhattan,East Village,40.73389,-73.99083,Entire home/apt,220,4,13,2019-06-30,0.93,1,2 +24308589,Stunning Central Park 1 bedroom,101328784,Stive Alexander,Manhattan,Upper West Side,40.78243,-73.97265,Entire home/apt,265,7,13,2019-05-30,0.98,1,130 +24308928,Richmond Hill 3 Bedroom apartment in Private home!,65421561,Tom,Queens,Richmond Hill,40.69792,-73.84081,Entire home/apt,300,1,24,2019-07-01,3.29,1,162 +24308988,Rooftop cabaña with private roof access,5717334,Antoine,Brooklyn,Bedford-Stuyvesant,40.68907,-73.953,Private room,150,5,1,2018-05-12,0.07,2,0 +24311790,Cozy Lower East Mainstay,2631054,Melissa,Manhattan,Lower East Side,40.71932,-73.98995,Entire home/apt,150,3,8,2019-05-26,1.26,1,0 +24312275,West Chelsea MINI,20132009,Karen,Manhattan,Chelsea,40.74491,-74.0042,Entire home/apt,150,3,49,2019-07-04,3.53,2,64 +24312400,Private room in cozy Sunnyside apartment,22716889,Paige,Queens,Sunnyside,40.73937,-73.91566,Private room,46,1,9,2018-11-01,0.59,1,0 +24312987,Sunny Loft in Williamsburg 20mins into Manhattan!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72558,-73.95706,Private room,68,1,55,2019-06-28,3.72,7,38 +24313236,Private bedroom in the heart of the UWS #1,183423525,Nina,Manhattan,Upper West Side,40.80321,-73.9682,Private room,55,30,6,2019-07-02,0.48,4,210 +24313356,Luxurious private Upper Westside Bedroom #2,183423525,Nina,Manhattan,Upper West Side,40.80222,-73.96763,Private room,65,30,1,2018-05-13,0.07,4,216 +24313434,Upper Westside luxury private bedroom 5W-3,183423525,Nina,Manhattan,Upper West Side,40.80365,-73.96639,Private room,70,30,3,2019-04-12,0.24,4,317 +24313500,Stunning spacious study private bedroom #4,183423525,Nina,Manhattan,Upper West Side,40.80324,-73.96816,Private room,65,30,1,2019-06-30,1,4,211 +24313537,Cozy & quiet 2 bedroom apt in a great location!,9973967,Gahee,Manhattan,East Village,40.72626,-73.98784,Entire home/apt,310,2,78,2019-06-23,5.49,1,169 +24313701,Fully renovated Studio.Beautiful and comfortable.,16851857,Paul,Bronx,Wakefield,40.89641,-73.85077,Entire home/apt,88,5,8,2019-04-24,0.61,4,322 +24314268,Easy option to stay on 611 W 177th St.,143820550,Ramy,Manhattan,Washington Heights,40.84695,-73.93593,Private room,50,1,43,2018-12-26,3.01,1,0 +24323687,Brooklyn Family Home with a View of a Pool,127539184,Yuna,Brooklyn,East Flatbush,40.64934,-73.94508,Entire home/apt,250,5,0,,,2,8 +24323953,Stylish NYC Art Loft '3',34643568,Dave,Manhattan,East Harlem,40.79138,-73.9413,Private room,80,3,12,2019-06-21,0.87,6,332 +24324489,STOP! Rooftop Terrace in the East Village!,73885,Jermaine,Manhattan,East Village,40.72328,-73.9843,Private room,80,3,2,2018-05-18,0.14,1,0 +24324891,2 Bedroom Modern-Contempo Bright Apartment,19557813,Princess-Wynona,Brooklyn,Bedford-Stuyvesant,40.68302,-73.92119,Entire home/apt,130,2,35,2019-06-28,2.47,1,34 +24326705,Sunny apartment in prime Greenpoint-Steps to train,178244787,Miranda,Brooklyn,Greenpoint,40.72243,-73.95179,Entire home/apt,130,8,2,2018-12-02,0.14,2,0 +24327546,Cozy & warm private studio apartment in Astoria,80885460,Amy,Queens,Ditmars Steinway,40.77467,-73.9094,Entire home/apt,100,2,6,2019-06-16,0.42,1,0 +24327950,Pleasant Residence,183548336,Aureo,Manhattan,East Harlem,40.7977,-73.93493,Entire home/apt,250,3,13,2019-06-03,0.94,1,74 +24330532,Private Loft Apartment,183568797,Allison,Queens,Long Island City,40.75354,-73.95113,Entire home/apt,200,3,36,2019-06-14,2.43,1,308 +24332080,Huge Bright Bedroom in Brooklyn Townhouse,62803,Eugenia,Brooklyn,Crown Heights,40.67004,-73.92207,Private room,54,6,6,2019-03-30,0.65,2,225 +24334075,Huge Room in a huge Apartment,183599440,Sam,Brooklyn,Williamsburg,40.7193,-73.95863,Private room,65,4,1,2018-08-31,0.10,1,157 +24334422,"ROOM with a VIEW! +LOCATION LOCATION!",17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76169,-73.98839,Private room,120,3,16,2019-05-19,1.11,3,89 +24334634,River and Park Views from Balcony,3220590,Nova,Manhattan,Morningside Heights,40.80798,-73.96585,Entire home/apt,95,7,0,,,1,0 +24335248,sweetheart studio,183610844,Helen,Queens,Fresh Meadows,40.72688,-73.79198,Private room,50,2,6,2019-07-03,0.42,1,51 +24336051,"UWS Gem by Lincoln Center, Julliard & Central Park",183617557,Christine,Manhattan,Upper West Side,40.77598,-73.98917,Entire home/apt,299,3,29,2019-01-22,1.96,1,6 +24337254,COZY THREE BEDROOM APT NEAR JFK AIRPORT,183633639,Nydia,Queens,Richmond Hill,40.69004,-73.83368,Entire home/apt,138,1,28,2019-06-22,1.88,1,347 +24339196,••Cozy Em’s place••,174492861,Siri,Queens,Jackson Heights,40.74939,-73.88155,Private room,42,2,43,2019-06-23,2.87,2,33 +24345718,Heart Of New York City,183699341,Ray,Manhattan,Hell's Kitchen,40.75781,-73.99751,Private room,175,1,6,2018-05-21,0.41,1,365 +24347151,Good Vibes private room,4891915,Yohana,Brooklyn,Bedford-Stuyvesant,40.6947,-73.94319,Private room,85,3,36,2019-07-06,2.44,1,69 +24348078,Large and bright room 15 min away from Manhattan,176427055,Adam,Queens,Astoria,40.76649,-73.92643,Private room,74,1,102,2019-07-07,6.77,1,348 +24348514,For All Classical Lover's 2,96694697,Glory,Brooklyn,Sheepshead Bay,40.60759,-73.96023,Private room,65,2,11,2019-03-01,0.77,2,156 +24349922,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70324,-73.91353,Private room,47,4,5,2018-10-25,0.36,2,0 +24351450,"Eclectic 1BR in Brooklyn, Steps to nightlife!",127532142,Meghan,Brooklyn,Bushwick,40.70473,-73.92069,Private room,85,3,33,2019-05-06,2.47,1,7 +24351719,LES 2 BR Penthouse New Construction,87585422,Dan,Manhattan,Lower East Side,40.72081,-73.98461,Entire home/apt,975,4,8,2019-05-18,0.64,1,164 +24352862,Brooklyn Museum of Art 2 Bedroom Gem!,183751102,Rose,Brooklyn,Crown Heights,40.67102,-73.96172,Entire home/apt,130,4,8,2019-06-09,0.56,1,353 +24352967,"Bed n Bath, 4 mins to 2,5,3,4 trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65435,-73.93785,Private room,70,3,3,2019-01-02,0.30,5,365 +24355118,"Nice, clean, spacious room in Manhattan",55503144,José,Manhattan,East Harlem,40.79645,-73.94803,Private room,70,15,0,,,1,0 +24355153,Rockaway Beach Escape - Beach/City Views,183388833,Welecia,Queens,Rockaway Beach,40.58898,-73.80576,Entire home/apt,179,2,34,2019-03-24,2.37,1,205 +24355169,HUGE Modern Room/office/studio w Private Entrance,43037915,Edward,Brooklyn,Crown Heights,40.66371,-73.95698,Private room,300,2,0,,,1,0 +24356390,Bright Modern clean convenient Brooklyn Location,138607228,Edward,Brooklyn,Bushwick,40.69432,-73.90658,Entire home/apt,150,2,17,2018-08-26,1.15,3,0 +24356663,Modern Clean beautiful 15min to center of NYC,138607228,Edward,Brooklyn,Bushwick,40.6941,-73.90756,Entire home/apt,99,2,51,2019-04-14,3.45,3,0 +24356861,COZY & BEAUTIFUL 1bdrm in Upper NYC,6517654,Erin,Manhattan,Washington Heights,40.8385,-73.94288,Entire home/apt,125,3,6,2019-05-29,0.42,1,0 +24357412,Cozy 1bdr in the heart of Upper East Side,10711933,Nodar,Manhattan,Upper East Side,40.77021,-73.95173,Entire home/apt,170,3,3,2019-05-24,0.21,1,0 +24357562,Cozy Apartment- Lower East Side near F/M/J/Z :),19940836,Justin,Manhattan,Lower East Side,40.71848,-73.98439,Private room,89,1,21,2019-01-29,1.41,1,2 +24358122,Brooklyn apartment living room for rent,30075148,Yating,Brooklyn,Williamsburg,40.70695,-73.94524,Private room,50,7,1,2018-04-27,0.07,1,0 +24358619,UWS Studio - Great Neighborhood!,106837455,Lisa,Manhattan,Upper West Side,40.78489,-73.982,Entire home/apt,90,90,0,,,8,0 +24359329,Gorgeous Room in Wburg!,56202220,Guille,Brooklyn,Williamsburg,40.71196,-73.95424,Private room,80,3,1,2019-06-18,1,1,20 +24360039,Lovely Cozy Studio Upper East Side Manhattan,150629197,Lana,Manhattan,Upper East Side,40.77634,-73.94713,Entire home/apt,168,14,17,2019-05-18,1.18,2,95 +24360112,Comfortable bedroom in Railroad style apartment,183833039,Miguel,Brooklyn,Bushwick,40.69987,-73.91404,Private room,100,1,0,,,1,341 +24360537,Lovely cozy studio in Upper East Side,150629197,Lana,Manhattan,Upper East Side,40.77759,-73.94688,Entire home/apt,118,3,1,2018-04-13,0.07,2,0 +24366289,Art apartment,183707967,Dionyssios,Manhattan,Washington Heights,40.85329,-73.9291,Entire home/apt,150,2,29,2019-06-21,1.96,4,127 +24366897,Modern & Stylish 1 Bed Manhattan w/ Private Garden,183886601,Lee,Manhattan,Inwood,40.87001,-73.92418,Entire home/apt,120,30,3,2019-03-03,0.22,2,27 +24367113,( Private Garden ) Where Hansel and Gretel live.,3540748,Ron,Manhattan,Upper East Side,40.78026,-73.954,Entire home/apt,175,2,4,2018-12-09,0.28,1,354 +24367577,Clinton Hill Dream House,3074904,Lauren & Chelsea,Brooklyn,Clinton Hill,40.6844,-73.96221,Entire home/apt,190,2,10,2019-01-27,0.77,4,12 +24369797,"2BR APARTMENT IN THE CITY, NEXT TO CENTRAL PARK!",178178426,Tiago,Manhattan,East Harlem,40.79208,-73.94642,Entire home/apt,195,1,73,2019-06-23,5.03,1,146 +24369857,The corner house,2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69372,-73.9485,Entire home/apt,112,3,65,2019-07-07,4.62,3,219 +24370001,Stunning Rare Garden Family Home w/Loft! #10303,8961407,Jamie,Manhattan,Harlem,40.80569,-73.94848,Entire home/apt,450,3,38,2019-07-01,3.21,3,302 +24370468,July and August 2bdr beautiful apt Upper East Side,521594,Valeria,Manhattan,Upper East Side,40.77905,-73.94754,Private room,200,15,0,,,1,34 +24370692,Bright Room in Artist's Loft,8973065,Rachel,Brooklyn,Williamsburg,40.70343,-73.93412,Private room,45,5,5,2018-11-26,0.35,1,0 +24372235,Newly Renovated Cozy studio in lower east side #9,158969505,Karen,Manhattan,Lower East Side,40.72192,-73.9928,Entire home/apt,150,30,3,2018-12-29,0.24,9,310 +24372429,"Spacious, Charming 2BR Apt in Trendy Bushwick",10197436,Chris,Brooklyn,Bushwick,40.68652,-73.91212,Entire home/apt,99,2,71,2019-07-06,4.80,1,140 +24373602,"Bright, Charming Greenpoint Home-Away-From-Home",8409547,Courtney,Brooklyn,Greenpoint,40.73081,-73.95184,Entire home/apt,100,2,3,2019-03-08,0.20,1,2 +24373776,Spacious bedroom in Washington Heights,6024063,Bree,Manhattan,Washington Heights,40.84821,-73.94153,Private room,50,2,1,2019-07-06,1,1,25 +24374428,Quiet two BEDROOM APT in MANHATTAN UPPER EAST SIDE,183950956,Dante,Manhattan,Roosevelt Island,40.75916,-73.95124,Entire home/apt,220,1,76,2019-06-24,5.30,1,60 +24374487,Lex place,33587458,Liron,Brooklyn,Bedford-Stuyvesant,40.69138,-73.92617,Entire home/apt,123,3,6,2019-06-24,0.53,1,0 +24376295,Studio Apartment in Bed Stuy!,25741946,Ellie,Brooklyn,Bedford-Stuyvesant,40.68073,-73.92804,Entire home/apt,110,1,2,2018-12-31,0.19,1,0 +24376374,Welcome to YURT -- cozy room in East Village,3436710,Kaptan,Manhattan,East Village,40.72433,-73.97688,Private room,120,1,18,2019-06-14,1.22,2,28 +24376945,Harlem Studio,21766565,Paula,Manhattan,Harlem,40.82934,-73.94269,Entire home/apt,110,2,29,2019-06-19,1.97,1,200 +24377683,Sunny Bedroom at Union Square,21410546,Hong Ngoc,Manhattan,Chelsea,40.737,-73.99407,Private room,85,2,4,2018-06-10,0.27,1,0 +24378358,NYC Time's Square Luxury Pent House Apartment,183989835,Marcus,Manhattan,Midtown,40.76419,-73.97455,Entire home/apt,299,3,22,2019-05-28,1.62,1,278 +24378513,Sunny Spacious Private Bedroom in Brooklyn,714531,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95664,Private room,55,4,26,2019-06-24,1.81,1,73 +24378806,Cozy Brooklyn Witchy Apartment (Pet Friendly),27923193,Elisabeth,Brooklyn,Crown Heights,40.67085,-73.92316,Private room,47,1,9,2018-11-03,0.61,1,0 +24379279,Spacious Room,184000316,Ebony,Brooklyn,East New York,40.66972,-73.88393,Private room,55,1,1,2018-08-28,0.09,1,87 +24379887,"SUITE- PRIVATE 1/2 BATH, 4 BEDS IN WILLIAMSBURG!!",184004979,Ken And Andy,Brooklyn,Williamsburg,40.70914,-73.961,Private room,130,3,59,2019-06-19,3.93,2,282 +24380012,Cozy Brooklyn Apt (Near JFK/Manhattan/Times Sqr),73592174,Mark,Brooklyn,Midwood,40.61167,-73.95803,Private room,40,1,4,2018-12-24,0.29,1,84 +24380794,Trendy Williamsburg! 1 block to subway (L).,184009385,Artem,Brooklyn,Williamsburg,40.71434,-73.94275,Entire home/apt,150,2,48,2019-06-21,3.27,2,53 +24387380,Spacious private room close to lots of cool spots,30523475,Michael Daae,Brooklyn,Williamsburg,40.71008,-73.96175,Private room,70,5,3,2018-05-07,0.20,1,0 +24387440,Midtown East Prime UN Location,184065290,Keren,Manhattan,Midtown,40.75418,-73.9664,Entire home/apt,180,30,16,2018-12-12,1.08,1,3 +24387826,A Big Welcome from Lower East Side and Chinatown!,151507961,Demi,Manhattan,Chinatown,40.7139,-73.9912,Private room,90,2,60,2019-04-29,4.35,1,1 +24388099,Grand Central Brand New 2-Bedroom Apartment (5R),2269233,Heather,Manhattan,Murray Hill,40.74922,-73.97744,Entire home/apt,120,30,1,2018-08-12,0.09,1,47 +24391756,Sunny Apartment in Park Slope,20813915,Kimberly,Brooklyn,South Slope,40.66409,-73.9909,Entire home/apt,145,1,90,2019-07-08,5.97,1,212 +24392320,Christmas Week ONLY! Spacious Sunnyside 2 Bdrm Apt,19847523,Mayra,Queens,Sunnyside,40.74686,-73.91283,Entire home/apt,100,2,0,,,1,0 +24392338,Amazing East Village Xtra Large Studio Apartment!,160356,Joseph,Manhattan,East Village,40.72361,-73.9847,Entire home/apt,150,1,108,2019-07-04,7.55,4,201 +24392461,Master bedroom W/ Ensuite in centre of EVERYTHING,24405003,Bianca,Manhattan,Chinatown,40.7138,-73.99371,Private room,125,3,4,2018-10-16,0.31,3,90 +24392740,"Large room 20min time square, fast WiFi, AC, Desk",110088704,Brandon,Manhattan,Harlem,40.82244,-73.95262,Private room,60,1,28,2019-05-28,1.91,1,21 +24392856,Sunny Crown Heights Studio,55924743,Hannah,Brooklyn,Crown Heights,40.67673,-73.9447,Entire home/apt,150,2,3,2018-05-28,0.20,1,0 +24393653,SPECIOUS ONE BEDROOM IN THE HEART OF CHELSEA,95108020,Maya,Manhattan,Chelsea,40.74549,-73.99114,Private room,190,4,37,2019-06-30,2.68,1,28 +24393933,"LINCOLN CENTER, FORDHAM, JUILLIARD SCOOL",184119295,Manhattan,Manhattan,Upper West Side,40.77213,-73.98265,Entire home/apt,145,12,1,2019-01-05,0.16,1,289 +24395202,Large Manhattan Suite,184130293,Sandia,Manhattan,Inwood,40.86408,-73.92257,Private room,50,30,3,2019-03-05,0.21,2,0 +24395331,"Comfortable king bedroom, office, and kids' room",6059987,Andrew,Brooklyn,Crown Heights,40.67718,-73.95566,Private room,95,1,2,2018-07-20,0.17,1,0 +24397502,SUNNY ROOM IN WILLIAMSBURG - 1 BLOCK TO METRO!!,184004979,Ken And Andy,Brooklyn,Williamsburg,40.7102,-73.96222,Private room,91,2,68,2019-06-23,4.54,2,337 +24397657,Brooklyn Townhouse Apartment in Trendy Bushwick.,30927892,Emily,Brooklyn,Bushwick,40.68865,-73.9081,Entire home/apt,145,4,40,2019-06-20,2.80,1,38 +24397824,Cozy private Bedroom in upper Manhattan!,72423116,Isabelle,Manhattan,Morningside Heights,40.80385,-73.96499,Private room,100,1,17,2019-06-26,1.36,1,31 +24398061,Cute and Cozy Bushwick BR,53163551,Amanda,Brooklyn,Bushwick,40.70037,-73.91751,Private room,35,14,4,2018-06-16,0.28,1,0 +24398725,Relaxing place for recharge energy,110907551,Maria,Manhattan,Midtown,40.74515,-73.9813,Private room,120,1,12,2019-06-27,5.00,2,156 +24402527,Cozy Brooklyn Studio,184204269,Donna,Brooklyn,East Flatbush,40.63718,-73.94061,Entire home/apt,69,2,36,2019-06-09,2.46,1,229 +24403784,Clean and comfy bedroom in the waste free home.,21663531,Dana,Queens,Ridgewood,40.70778,-73.90323,Private room,50,2,4,2019-04-12,0.40,2,293 +24405674,"""San-Paraíso"" 80s curated Retro 3 Bedroom LES Pad",19259290,Minh,Manhattan,Lower East Side,40.71499,-73.98986,Private room,290,1,99,2019-07-01,6.96,1,70 +24405962,For all classical lover's 4,96694697,Glory,Brooklyn,Sheepshead Bay,40.60791,-73.96012,Private room,50,2,4,2019-06-29,0.29,2,358 +24408535,Penthouse duplex on Bowery with huge terrace.,408485,Justin,Manhattan,East Village,40.72709,-73.99074,Entire home/apt,545,2,1,2019-06-23,1,1,177 +24408644,Spacious Apartment in Brooklyn,184264303,Olie,Brooklyn,Flatlands,40.62392,-73.93554,Entire home/apt,200,1,28,2019-07-07,2.02,1,265 +24409066,Enormous Duplex in Park Slope (2-3 month sublet),49405,Peter,Brooklyn,Park Slope,40.6757,-73.97473,Entire home/apt,180,60,0,,,1,0 +24412104,Cozy feel at home studio,91034542,Maureen,Manhattan,Kips Bay,40.74408,-73.97803,Private room,10,5,42,2019-06-30,2.87,1,2 +24412681,Cozy SI den with multiple and easy access to NYC,184233409,Lisa,Staten Island,Port Richmond,40.63275,-74.13681,Private room,47,2,13,2019-05-30,0.96,1,283 +24412825,Modern Super Clean Midtown Apt in the Heart of NYC,6451492,Tom,Manhattan,Upper East Side,40.76129,-73.9652,Entire home/apt,175,2,54,2019-03-27,3.72,1,0 +24413589,Peaceful place 10min. from Center of New York City,72872297,Zamira,Queens,Long Island City,40.75558,-73.93643,Private room,75,2,67,2019-07-01,4.93,1,11 +24414462,Clean,156505456,John,Brooklyn,East New York,40.66244,-73.88904,Private room,45,3,15,2019-06-03,1.05,13,365 +24420139,401 east 60th,165898555,Honey,Manhattan,Upper East Side,40.75972,-73.96021,Entire home/apt,275,30,1,2018-05-24,0.07,7,364 +24421357,Private Clean Room near Yankee Stadium.,10534760,Lois,Bronx,Morrisania,40.83139,-73.90166,Private room,23,2,18,2019-07-02,1.25,1,36 +24424607,"Next to Strawberry Fields, Central Park Manhattan",409965,Juan Carlos,Manhattan,Upper West Side,40.77829,-73.97794,Private room,95,6,11,2019-06-30,0.76,1,219 +24424840,◈Hidden Midtown Gem◈ Perfect 5-Star Stay!,148272313,Steven,Manhattan,Murray Hill,40.74519,-73.97676,Entire home/apt,199,2,65,2019-07-01,4.95,1,92 +24426350,Central Harlem Modern Oasis,16908803,Brittany,Manhattan,Harlem,40.81448,-73.93714,Entire home/apt,130,6,2,2018-06-19,0.14,1,0 +24426631,Gem Of A Hideout With Private Deck/Garden,165884816,Kelsey,Brooklyn,Williamsburg,40.71975,-73.96136,Entire home/apt,161,2,10,2019-01-02,0.69,1,0 +24428060,Sweet Home Away From Home,120371644,Natasha,Brooklyn,Sheepshead Bay,40.59143,-73.95548,Private room,65,2,52,2019-06-24,3.57,2,340 +24428782,Quiet and Sunny room in the best part of Brooklyn,184467900,Yumiko,Brooklyn,Greenpoint,40.73276,-73.95304,Private room,60,3,39,2019-07-05,2.83,1,43 +24428965,Modern & Spacious Apartment in Central Harlem,22460686,Diane & Brice,Manhattan,Harlem,40.81716,-73.94279,Entire home/apt,165,3,33,2019-06-03,2.30,1,192 +24430382,"HOTEL ROOM LIKE!! WITH AFFORDABLE RATE!! ""O""",59156312,Viviana,Queens,Woodhaven,40.68614,-73.86682,Private room,69,3,31,2019-06-22,2.16,9,348 +24430667,Spacious bedroom in Beautiful Prospect Lefferts,111938058,James,Brooklyn,Prospect-Lefferts Gardens,40.65926,-73.96252,Private room,100,3,14,2019-06-23,0.98,1,364 +24430682,Bedroom Casa Alvarez,179026754,Maria,Brooklyn,Williamsburg,40.7118,-73.96344,Private room,89,2,23,2019-06-30,2.00,1,103 +24431205,"A cozy private room, close to Columbia!",20267412,Minami,Manhattan,Morningside Heights,40.80868,-73.95801,Private room,55,4,2,2018-08-17,0.16,1,0 +24431214,две кровати в комнате,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58765,-73.94881,Shared room,37,30,0,,,3,84 +24431407,Beautiful large room in quiet in Astoria,184496160,Edwin,Queens,Astoria,40.76031,-73.91702,Private room,80,7,0,,,1,0 +24432069,"Private bathroom with balcony,15mins to Manhattan",103488282,Kaka,Queens,Sunnyside,40.7467,-73.92076,Private room,80,1,34,2019-06-19,2.49,5,262 +24432539,"Front Big Private Room # 2, size 13x17, 3 Windows",43825074,Masud,Brooklyn,Cypress Hills,40.68599,-73.87734,Private room,37,28,6,2019-06-15,0.43,3,356 +24432685,New nice bedrooms in 2 bedroom apt. 1R,122498535,Gf,Brooklyn,East Flatbush,40.655,-73.92764,Private room,40,30,3,2019-06-21,0.23,3,288 +24438437,Private Bedroom NYC 10 mins to Williamsburg,53781263,Oscar,Queens,Ridgewood,40.70197,-73.90377,Private room,60,1,7,2019-01-02,0.48,2,85 +24438564,Chic one Bedroom apartment NYC,53781263,Oscar,Queens,Ridgewood,40.70142,-73.90515,Entire home/apt,90,1,22,2019-06-30,1.64,2,5 +24441860,"East 12th street, Lux 1bd in Greenwich Village",22541573,Ken,Manhattan,East Village,40.73399,-73.99002,Entire home/apt,245,30,1,2018-11-05,0.12,87,357 +24441912,"Private basement suite on Striver's Row, Harlem",9949215,Jake,Manhattan,Harlem,40.81667,-73.94225,Entire home/apt,175,5,39,2019-07-05,2.68,1,90 +24444586,Speakeasy Inn Bushwick Three,24020292,Cristiano,Brooklyn,Bushwick,40.70064,-73.91828,Private room,50,1,27,2019-06-03,1.94,4,55 +24445770,Cozy Comfort in the Heart of Greenpoint Brooklyn,89031106,Edyta,Brooklyn,Greenpoint,40.72198,-73.94911,Entire home/apt,210,30,2,2019-06-03,0.13,4,354 +24445876,Shoot. Film. Sleep. Unique Loft Space in Brooklyn.,59463190,Home Studios,Brooklyn,Bedford-Stuyvesant,40.69268,-73.93848,Entire home/apt,350,1,12,2019-04-21,0.86,1,89 +24448560,Room in Hamilton Heights Apr 20-May 20 (flexible),76409499,Kelly,Manhattan,Harlem,40.82502,-73.95155,Private room,45,7,1,2018-05-23,0.07,1,0 +24449621,fifth ave,184653310,Amit,Manhattan,Midtown,40.75775,-73.97956,Entire home/apt,300,7,14,2019-06-14,0.98,1,85 +24451302,Light-filled apartment in heart of Crown Heights,107802009,Luis,Brooklyn,Crown Heights,40.6752,-73.95231,Entire home/apt,155,3,6,2018-07-29,0.45,2,0 +24452770,Cozy Brooklyn Studio with lots of light,212420,Armine,Brooklyn,Boerum Hill,40.68944,-73.98904,Entire home/apt,125,3,3,2019-01-02,0.21,1,0 +24453838,Williamsburg Apartment with Panoramic View/Rooftop,184694715,Ulker,Brooklyn,Williamsburg,40.71692,-73.94132,Entire home/apt,225,3,25,2019-06-29,1.80,1,157 +24454114,Walter’s place,54548626,Mia,Queens,Flushing,40.75499,-73.78902,Private room,90,1,68,2019-06-21,4.55,1,299 +24454304,Cozy shared apartment close to Midtown!,141765510,Rebecca,Queens,Astoria,40.76343,-73.92248,Shared room,110,4,3,2018-09-01,0.22,1,0 +24455779,Chic & Cozy Brooklyn Apartment,27532205,Nichole,Brooklyn,Bushwick,40.68994,-73.90526,Private room,65,1,8,2019-07-06,3.08,1,106 +24460450,The Cozy Apartment; limited time offer 10 off.,112843970,Rhonda,Brooklyn,Cypress Hills,40.67765,-73.89327,Entire home/apt,125,3,48,2019-06-04,3.36,2,294 +24464665,Spacious private bedroom with high ceilings,28046572,Dier,Brooklyn,Bedford-Stuyvesant,40.68869,-73.93449,Private room,35,20,1,2018-07-16,0.08,1,0 +24465831,New Cozy Quite Studio with Huge Secluded Yard,81712936,Allie,Manhattan,Upper East Side,40.78028,-73.94769,Entire home/apt,150,3,26,2019-05-24,1.91,2,340 +24470373,Large Bedroom Apartment with a Private Bathroom,42993745,Paul,Manhattan,Upper East Side,40.77515,-73.95299,Entire home/apt,299,4,1,2019-01-02,0.16,2,0 +24471239,Beautiful brownstone room,24421834,Andrea,Brooklyn,Crown Heights,40.67716,-73.93885,Private room,50,7,0,,,1,0 +24472398,Sunny Apt/Park Slope Brooklyn 25 min. ride to city,96810536,Chandtisse,Brooklyn,Gowanus,40.66623,-73.99267,Private room,60,2,49,2019-06-24,3.30,3,74 +24472562,"Perfect home by Prospect Park ,Brooklyn",37535886,Dana,Brooklyn,Flatbush,40.65291,-73.95285,Private room,59,2,36,2019-06-05,2.48,1,17 +24473230,Beautifully designed + renovated 3 bedroom home,184853043,Shannon,Brooklyn,Kensington,40.64655,-73.97252,Entire home/apt,250,2,31,2019-07-02,2.88,1,58 +24473606,Perfect Sunny 1BR in the Treetops,3469364,Joe,Manhattan,NoHo,40.72547,-73.99284,Entire home/apt,185,10,1,2019-05-23,0.64,1,57 +24474325,25 min to midtown Manhattan with 7 train.,66808561,Serdar,Queens,Woodside,40.74579,-73.8997,Private room,60,2,6,2019-06-02,0.43,1,0 +24475318,Wall Street Luxuriuos apartment Financial District,173369078,Tina,Manhattan,Financial District,40.70587,-74.0118,Private room,139,3,15,2019-07-07,1.01,1,338 +24475331,New condo-City view-Balcony&elevator,55149412,Ha,Manhattan,Chinatown,40.71585,-73.99492,Private room,80,1,14,2019-06-30,0.96,4,234 +24476209,Inexpensive Private Room with NYC / SIUH Access #2,104812805,Amarjit S,Staten Island,Arrochar,40.59761,-74.08347,Private room,33,4,6,2019-03-26,0.41,8,285 +24477757,Large Private Room in a Magnificent Penthouse NYC2,169382341,Tomás,Manhattan,East Village,40.722,-73.98396,Private room,89,5,11,2019-06-27,0.84,2,76 +24479063,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""A""",59156312,Viviana,Queens,Woodhaven,40.68783,-73.86679,Private room,69,3,28,2019-06-24,1.95,9,359 +24489174,"Comfortable,Spacious,clean Private Room",184523531,June,Manhattan,East Harlem,40.79578,-73.94523,Private room,68,2,31,2019-06-23,2.10,1,265 +24491178,SoHo 1 Bedroom,20044199,John,Manhattan,SoHo,40.72503,-74.0013,Entire home/apt,185,3,26,2019-06-21,1.81,1,42 +24491450,Greenpoint Delight,4831440,Caroline,Brooklyn,Greenpoint,40.72152,-73.94945,Entire home/apt,100,4,12,2019-06-23,0.92,1,0 +24491624,"43rd Street=TIME SQUARE +PRIVATE BEDROOM",30985759,Taz,Manhattan,Hell's Kitchen,40.7578,-73.99211,Private room,116,1,95,2019-07-04,6.42,6,280 +24492814,Cozy apartment in Williamsburg,362457,Brad,Brooklyn,Williamsburg,40.71514,-73.9641,Entire home/apt,140,2,54,2019-06-30,4.06,1,180 +24493058,2 Bedroom furnished NY apt w/ private balcony,4110677,Justin,Manhattan,Harlem,40.8082,-73.94252,Entire home/apt,225,7,1,2018-09-30,0.11,2,253 +24493475,"Enjoy Cozy, Quiet, Safe & Convenient Living in NYC",185022050,Chi,Brooklyn,Bensonhurst,40.61266,-73.98677,Entire home/apt,99,30,5,2019-04-13,0.36,1,320 +24493582,Charming beautiful studio perfect location!!,26584499,Ofir,Manhattan,Upper West Side,40.78382,-73.98235,Entire home/apt,135,30,0,,,8,290 +24493940,Private Bedroom with En Suite Bath on Central Park,1114587,Keenan & Emily,Manhattan,Upper West Side,40.79591,-73.96204,Private room,90,2,9,2019-06-12,0.62,3,181 +24494062,Modern LOFT in Fort Greene,6257521,V And J,Brooklyn,Clinton Hill,40.69325,-73.96863,Entire home/apt,160,3,3,2018-10-29,0.24,1,8 +24494717,Central Park Apt w/ Patio + Washer/Dryer,2450194,Brittany,Manhattan,Upper West Side,40.79,-73.96851,Entire home/apt,148,2,5,2018-11-25,0.34,1,2 +24495291,Bedstuy Hideaway,43253307,Nandi,Brooklyn,Bedford-Stuyvesant,40.68785,-73.93948,Private room,60,30,27,2018-09-28,1.88,1,0 +24495605,Brooklyn Art Residence,75173477,Lara,Brooklyn,Bushwick,40.69932,-73.91191,Entire home/apt,200,3,7,2019-05-05,0.48,1,6 +24497080,Corporate Studio Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75393,-73.96612,Entire home/apt,125,30,5,2019-05-14,0.34,91,304 +24497152,Stunning Elevator 2 Bedroom Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75569,-73.96679,Entire home/apt,150,30,1,2018-06-29,0.08,91,332 +24497202,Brand New apt heart of Manhattan,61391963,Corporate Housing,Manhattan,Kips Bay,40.74471,-73.98027,Entire home/apt,125,30,4,2019-06-14,0.32,91,346 +24497265,Brand New Executive Studio,61391963,Corporate Housing,Manhattan,Murray Hill,40.74651,-73.97868,Entire home/apt,125,30,3,2019-05-31,0.50,91,342 +24497815,Prime Upper east~2BR~ newly furnished,162280872,Izi,Manhattan,Upper East Side,40.77458,-73.94769,Entire home/apt,185,30,0,,,13,161 +24498097,Sweet Home Away From Home,120371644,Natasha,Brooklyn,Sheepshead Bay,40.5917,-73.95536,Private room,65,2,38,2019-06-23,2.57,2,306 +24498872,Charming Upper West Studio,185067271,Jared,Manhattan,Upper West Side,40.78612,-73.97011,Entire home/apt,85,30,6,2019-05-14,0.56,1,15 +24508874,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""P""",59156312,Viviana,Queens,Woodhaven,40.68654,-73.86672,Private room,89,3,29,2019-06-22,2.00,9,355 +24509757,Wonderful 3 bed 1.5 baths 20 Mins to Times Square!,1273890,Sergio,Manhattan,Washington Heights,40.85081,-73.9368,Entire home/apt,150,30,0,,,2,339 +24510046,NYC with a view,5485647,Chris,Manhattan,Hell's Kitchen,40.76206,-73.99775,Entire home/apt,300,3,2,2019-05-19,0.14,1,0 +24512493,"Private room at Roselle, in the Bronx",175152359,Massiel,Bronx,Westchester Square,40.84367,-73.84911,Private room,65,2,11,2019-06-15,1.11,2,158 +24514134,紐約哥大週邊優質短租,16828799,哲緯,Manhattan,Morningside Heights,40.8058,-73.9647,Entire home/apt,110,10,0,,,1,0 +24514490,"Newly renovated 1 bedroom, steps to Prospect Park",258674,Melissa,Brooklyn,Windsor Terrace,40.65871,-73.9789,Entire home/apt,125,3,15,2018-12-21,1.15,1,65 +24515198,Sunny bedroom in a designer apartment,185189643,Swann,Queens,Sunnyside,40.7461,-73.91983,Private room,75,3,79,2019-07-03,5.44,1,84 +24515524,Affordable Modern/Luxury 2 Bedroom Apt,58097815,Gesner,Brooklyn,Bedford-Stuyvesant,40.68771,-73.92281,Entire home/apt,145,2,73,2019-06-21,4.95,1,219 +24518005,Brooklyn Beautiful private room!!,4576234,Nami,Brooklyn,Crown Heights,40.67535,-73.94992,Private room,65,2,1,2018-12-31,0.16,1,0 +24520558,Sonder | Hanover Square | Cozy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70533,-74.00923,Entire home/apt,142,29,1,2018-08-15,0.09,96,353 +24520702,One Bedroom Apartment in Greenpoint,9010955,Lindsey,Brooklyn,Greenpoint,40.73556,-73.95726,Entire home/apt,200,2,5,2019-05-12,0.37,2,7 +24521322,Sonder | Hanover Square | Sun-Filled 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70551,-74.00839,Entire home/apt,225,29,0,,,96,1 +24521630,THE PONDEROSA PALACE,83921231,B,Manhattan,Hell's Kitchen,40.76152,-73.98758,Entire home/apt,235,2,49,2019-06-25,3.70,1,283 +24521752,New York City with the bird view,180700434,Luba,Manhattan,Upper East Side,40.78119,-73.95121,Entire home/apt,200,4,0,,,1,83 +24522061,Private space in luxury apartment with river view,63189852,Marshall,Manhattan,Roosevelt Island,40.76811,-73.94483,Private room,50,7,3,2018-08-04,0.23,1,0 +24523422,Urban Place,160495098,Miller,Brooklyn,East Flatbush,40.63532,-73.94924,Private room,36,2,1,2018-06-10,0.08,5,0 +24524252,Private Modern Studio in heart of Flatbush,296491,Ely,Brooklyn,Midwood,40.61673,-73.96491,Entire home/apt,75,2,23,2019-05-27,1.55,2,49 +24525249,Sunny Room in heart of hippest Manhattan 'hood,9913035,George,Manhattan,Lower East Side,40.7213,-73.98862,Private room,60,15,8,2019-06-16,0.68,3,260 +24525290,Paradise in New York City,185265758,Shama,Manhattan,Harlem,40.82156,-73.94966,Entire home/apt,247,2,82,2019-07-06,5.68,2,266 +24525356,Cozy Brooklyn Greenpoint Apt.15 min to Manhattan,185267820,Alfredo,Brooklyn,Greenpoint,40.72339,-73.94322,Entire home/apt,295,1,52,2019-07-06,3.83,1,161 +24525886,Comfy Room with Private Insuite Bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69616,-73.93438,Private room,80,3,22,2019-06-24,1.54,7,96 +24526035,"HOTEL ROOM LIKE!! WITH AFFORDABLE RATE!! ""R""",59156312,Viviana,Queens,Woodhaven,40.68765,-73.865,Private room,99,3,24,2019-06-10,1.64,9,343 +24527051,Amazing Brooklyn,100565897,Myrna,Brooklyn,Sheepshead Bay,40.60399,-73.94523,Private room,36,7,3,2018-08-14,0.24,2,29 +24528199,Global Beat Apartment Hideaway in Manhattan,3464645,Sybilla Michelle,Manhattan,Chelsea,40.74732,-73.9999,Entire home/apt,400,2,0,,,3,0 +24531719,Minimalism in the heart of a great neighborhood,6525229,Josh,Manhattan,Chinatown,40.7177,-73.99246,Private room,73,3,1,2018-04-21,0.07,1,37 +24532484,"1 bedroom, blocks from Central Park and subways.",14405060,Corinne,Manhattan,Upper East Side,40.77359,-73.95143,Entire home/apt,117,3,7,2018-08-15,0.50,1,0 +24535218,"Luxury Tribeca 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71433,-74.01073,Entire home/apt,323,30,0,,,232,316 +24535740,TV-PHOTO-FILM-CINEMA-ART GALLERY-MUSIC STUDIO-LOFT,183779546,David & Javier,Brooklyn,Williamsburg,40.71824,-73.95175,Entire home/apt,1000,1,9,2019-04-27,0.66,1,88 +24535821,prime upper west Cozy Studio deal,26584499,Ofir,Manhattan,Upper West Side,40.7826,-73.98228,Entire home/apt,100,31,0,,,8,50 +24535857,Sonder | 21 Chelsea | Charming 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74081,-73.99616,Entire home/apt,265,29,0,,,96,331 +24537187,Sonder | The Biltmore | Quaint Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70561,-74.0086,Entire home/apt,145,29,4,2019-05-23,0.42,96,341 +24537721,Sonder | 21 Chelsea | Elegant 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7409,-73.99596,Entire home/apt,255,29,0,,,96,296 +24537860,Sonder | Hanover Square | Modern 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70563,-74.0078,Entire home/apt,209,29,3,2019-04-30,0.26,96,328 +24538110,Bright Open 2BR In Charming Greenwich Village,12156706,Kevin,Manhattan,Greenwich Village,40.72851,-74.0,Entire home/apt,300,2,3,2018-05-27,0.20,2,0 +24538208,Comfortable Studio Apt in Heart of East Village,20584520,Ben,Manhattan,East Village,40.72926,-73.98456,Entire home/apt,101,1,25,2019-05-22,1.74,1,363 +24538218,Sunny Room in Bed-Stuy close to everything!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.68209,-73.95731,Private room,60,7,11,2018-12-29,0.80,3,0 +24538627,Pleasant Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70503,-74.00698,Entire home/apt,185,29,0,,,96,31 +24539281,"43rd Street “TIME SQUARE” +Single bed.",30985759,Taz,Manhattan,Hell's Kitchen,40.75792,-73.99172,Shared room,65,1,108,2019-06-23,7.33,6,325 +24539732,Sharp 1BR in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70544,-74.00641,Entire home/apt,222,29,0,,,96,333 +24540842,High End Hilton Club in midtown Manhattan,6524762,Armstrong,Manhattan,Midtown,40.76487,-73.97857,Entire home/apt,250,1,9,2019-04-17,0.62,3,89 +24540935,A Beach House in Brooklyn,51068857,Derek,Brooklyn,Bedford-Stuyvesant,40.68297,-73.95251,Private room,80,1,0,,,1,5 +24541125,98th St. FULL apt with positive energy!,62100691,Samara,Manhattan,East Harlem,40.78572,-73.95018,Entire home/apt,140,5,11,2019-04-24,0.77,1,8 +24541153,Summer escape in Brighton Beach,30895980,Elena,Brooklyn,Brighton Beach,40.57644,-73.95551,Entire home/apt,110,2,8,2019-05-17,0.58,2,248 +24541262,Luxury apartment in the center of Manhattan,5997182,Paul,Manhattan,Murray Hill,40.74591,-73.97843,Entire home/apt,200,4,7,2019-02-27,0.52,1,166 +24541899,Clean and Comfortable Place to Rest in NYC!,52525653,Mike,Manhattan,Harlem,40.80565,-73.95197,Private room,100,2,73,2019-06-22,4.98,2,68 +24541992,Quaint Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70558,-74.00845,Entire home/apt,175,29,1,2019-05-05,0.45,96,290 +24542531,Sonder | 21 Chelsea | Lovely 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7423,-73.99603,Entire home/apt,255,29,0,,,96,345 +24543645,The oriental room in Greenpoint mins to Manhattan,182363374,Jimmy,Brooklyn,Greenpoint,40.72549,-73.95574,Private room,112,1,68,2019-06-29,4.74,7,27 +24545438,Private Room with En-Suite in Brooklyn Brownstone,30384092,Ian,Brooklyn,Crown Heights,40.66725,-73.95017,Private room,70,3,45,2019-06-24,3.33,1,135 +24550536,Private Studio w/Bathroom & Kitchenette,137130915,Tricia,Brooklyn,Fort Greene,40.6971,-73.97316,Private room,102,2,1,2018-04-29,0.07,1,0 +24553427,The Best little room in Brooklyn,49505120,Jordan,Brooklyn,Prospect Heights,40.67955,-73.97382,Private room,50,15,0,,,1,0 +24553891,Enjoy all of Manhattan. Big Apple! A Mini-MOMA!,68557372,Shannon,Manhattan,Harlem,40.80667,-73.95182,Entire home/apt,75,5,8,2019-04-24,0.66,2,9 +24554027,"Sunlit Room in Prospect Heights, Brooklyn",24587292,Rania,Brooklyn,Crown Heights,40.67652,-73.96198,Private room,974,7,0,,,2,0 +24555212,NEW Perfect shared male room for a long term I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.9884,Shared room,33,100,0,,,28,320 +24555741,"New York Room, Beautiful Upper West Side",185514817,Allison,Manhattan,Upper West Side,40.79856,-73.97174,Private room,55,5,2,2018-05-21,0.14,1,0 +24556525,Sunny Artist's Bedroom in Bushwick.,90937044,Teddy,Brooklyn,Bushwick,40.69943,-73.92192,Private room,50,2,16,2019-03-31,1.14,1,0 +24556756,Anita’s Funky Master Bedroom on Ocean Parkway,185524223,Anita,Brooklyn,Kensington,40.64196,-73.97467,Private room,62,1,95,2019-07-05,6.97,2,261 +24558117,Modern & Funky Brooklyn Nook,894712,Allison,Brooklyn,Crown Heights,40.67868,-73.95541,Entire home/apt,119,2,2,2018-08-05,0.15,1,0 +24558491,"Sunny private room in Red Hook, Brooklyn",39038649,Cristina,Brooklyn,Red Hook,40.67817,-74.00991,Private room,52,2,41,2019-06-08,2.94,1,3 +24559347,Spacious and bright bedroom,73079322,Guilda,Manhattan,Washington Heights,40.84365,-73.93982,Private room,45,3,1,2019-01-09,0.17,1,5 +24560314,Comfortable & Cozy Times Square Apt,19703783,Ben,Manhattan,Hell's Kitchen,40.76265,-73.98954,Entire home/apt,160,2,5,2019-04-21,0.36,1,70 +24560351,Brooklyn Apartment with Jaw-Dropping Rooftop,69767,Molly,Brooklyn,Clinton Hill,40.68059,-73.95848,Entire home/apt,162,3,10,2019-06-13,0.76,1,4 +24560488,Heart of Soho! Cute studio with clean finishes!,607217,Ross,Manhattan,SoHo,40.72789,-74.00275,Entire home/apt,205,4,15,2019-07-01,1.04,1,5 +24561063,Charming Bushwick Studio,1508253,Matt,Brooklyn,Bushwick,40.69403,-73.92673,Entire home/apt,86,4,4,2018-07-29,0.30,1,0 +24561311,Harlem Retreat Living Room NYC,17345576,Kimberly,Manhattan,Harlem,40.80322,-73.94488,Shared room,65,30,0,,,1,342 +24561322,Lower East Side Summer Rental,37580284,Jonathan,Manhattan,Lower East Side,40.71571,-73.98699,Entire home/apt,85,35,0,,,1,0 +24561950,Modern Apartment with wall-size windows,181111992,Van,Brooklyn,Flatbush,40.63033,-73.95724,Entire home/apt,61,3,2,2019-05-06,0.16,2,138 +24562197,Cozy room in 2bd apartment in UES,167025338,Ameer,Manhattan,Upper East Side,40.77163,-73.94897,Private room,75,14,6,2019-06-22,0.41,2,14 +24562495,summer(A套房私享一层closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74622,-73.78297,Private room,79,1,35,2019-07-07,2.40,3,32 +24564608,NEW Private room on Manhattan. Breathtaking view!,39528519,Max,Manhattan,Lower East Side,40.70988,-73.98666,Private room,93,15,0,,,28,185 +24565942,"Nice, cozy and fresh shared male room on Manhattan",39528519,Max,Manhattan,Lower East Side,40.71158,-73.98888,Shared room,32,14,5,2019-04-10,0.76,28,341 +24569072,Chateau Le Hamilton Heights,185636316,Benjamin,Manhattan,Harlem,40.82291,-73.94256,Entire home/apt,119,7,6,2019-04-02,0.43,1,201 +24572398,"Sunny, Modern and Trendy Getaway Spot",10679309,Kirac,Brooklyn,Williamsburg,40.71181,-73.96677,Entire home/apt,150,4,6,2019-05-20,0.41,2,8 +24573069,Quiet apt in the middle of St Marks (East Village),65804,Ahmad,Manhattan,East Village,40.72957,-73.9882,Entire home/apt,129,7,12,2019-06-16,0.88,2,9 +24573377,Inexpensive Private Room with NYC / SIUH Access #1,104812805,Amarjit S,Staten Island,Arrochar,40.59757,-74.08434,Private room,35,4,11,2019-06-10,0.77,8,338 +24574987,Sunny bedroom at the heart of Harlem,6892560,Rebeca,Manhattan,East Harlem,40.80552,-73.94031,Private room,51,5,16,2019-06-29,1.12,1,17 +24575257,"Private, big, clean cozy room, in TIMES SQUARE",146182000,Shir,Manhattan,Theater District,40.75885,-73.98147,Private room,120,3,25,2018-11-03,1.72,1,0 +24575718,"15 min to NYC, beautiful bedroom 5 mins from LGA",170446723,Pamela,Queens,East Elmhurst,40.75906,-73.87771,Private room,78,1,4,2019-01-04,0.41,2,363 +24576230,Cozy 1BR in Historic Harlem,24046704,Hunter,Manhattan,Harlem,40.816,-73.94127,Entire home/apt,100,3,3,2018-10-14,0.23,1,0 +24577999,Best location Greenpoint apartment,179676509,Tiffany,Brooklyn,Greenpoint,40.72874,-73.95621,Entire home/apt,114,4,2,2018-06-07,0.15,1,0 +24580129,Quiet Space,143070465,Kai,Brooklyn,Bedford-Stuyvesant,40.6977,-73.94781,Private room,35,2,10,2018-10-11,0.70,1,0 +24580422,Bright and Cozy Studio in Murray Hill,10574166,Carolyn,Manhattan,Murray Hill,40.74681,-73.97629,Entire home/apt,150,2,17,2018-12-26,1.19,1,0 +24580806,"Angie Suite in the Heights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85054,-73.93956,Private room,75,3,13,2019-06-07,0.91,3,137 +24580838,Sunlit and Plant filled Williamsburg Railroad Apt,185512151,Pia,Brooklyn,Williamsburg,40.70743,-73.94206,Entire home/apt,128,4,6,2019-05-28,0.42,1,0 +24580943,"Sisters Suite in theHeights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85264,-73.93976,Private room,160,3,6,2019-06-25,0.44,3,123 +24582124,room in house,102287990,Andy,Brooklyn,Sunset Park,40.64499,-74.02437,Private room,100,30,0,,,1,365 +24583029,"Cosy,Elegant 1 Bedroom Apartment in heart of UES!",75302217,C-Van,Manhattan,Upper East Side,40.77883,-73.95528,Entire home/apt,199,3,10,2019-06-15,0.70,2,365 +24583519,Wild West Retreat in The Heart of Brooklyn,7939437,Izaac,Brooklyn,Bedford-Stuyvesant,40.68823,-73.95863,Private room,100,2,34,2019-06-25,2.45,1,59 +24583645,"Best Location, Cozy Modern Room in Midtown",48805583,Gareth,Manhattan,Midtown,40.7496,-73.98244,Entire home/apt,170,6,35,2019-06-30,2.48,1,0 +24588491,"Brooklyn, New York",119864371,Felicia,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9244,Entire home/apt,99,3,44,2019-06-20,3.11,1,135 +24591995,Shared male room on Manhattan.Breathtaking view II,39528519,Max,Manhattan,Lower East Side,40.71098,-73.98696,Shared room,35,14,0,,,28,321 +24592583,In the heart of the West Village- cute apartment!,19068554,Jennifer,Manhattan,West Village,40.73608,-73.99997,Entire home/apt,175,3,18,2019-07-06,1.28,1,0 +24593351,Beautiful Gut Renovated NYC 1 Bedroom LOFT,105797483,Rachael,Manhattan,Midtown,40.7452,-73.98427,Entire home/apt,400,1,16,2019-06-30,1.14,1,47 +24594184,"Cozy Mott Haven-Steps from Subway, Total Privacy",185850609,Samuel,Bronx,Mott Haven,40.81011,-73.92166,Entire home/apt,125,3,62,2019-07-02,4.34,1,253 +24594587,Great Small Room 15 Minutes From Time Square,3268993,Emad,Manhattan,Harlem,40.82336,-73.95596,Private room,75,2,122,2019-07-07,8.32,1,127 +24594717,"Large, Bright Midtown East 1 BR in Luxury building by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74112,-73.98009,Entire home/apt,271,30,0,,,232,326 +24596296,Cozy Bed-Stuy Getaway!,20633674,Karli,Brooklyn,Bedford-Stuyvesant,40.69199,-73.94426,Private room,46,3,6,2019-03-16,0.72,1,0 +24596989,WALL STREET AMAZING APARTMENT,12292581,Andrew,Manhattan,Financial District,40.70617,-74.0112,Entire home/apt,240,15,4,2018-12-30,0.30,1,220 +24599215,3 bedrooms 2 baths Brooklyn Home 15m to Manhattan!,185888575,Shirley,Brooklyn,Bushwick,40.69571,-73.93144,Entire home/apt,240,3,50,2019-06-24,3.44,1,243 +24599452,ELEXEY'S COMFORT.,185889529,Michelle,Queens,St. Albans,40.70389,-73.75782,Private room,50,3,58,2019-06-24,4.69,3,358 +24600833,1 BR Free in Bright Open Greenwich Village 2BR Apt,12156706,Kevin,Manhattan,Greenwich Village,40.72839,-73.99983,Private room,115,3,2,2018-05-22,0.14,2,0 +24601752,"Heaven in New York, Natural Room",185908506,Cynthia,Bronx,Edenwald,40.88634,-73.83431,Private room,75,3,19,2019-05-20,1.55,3,166 +24602796,"Relaxing, modern Upper East Side Apt with terrace",52395622,Carrie,Manhattan,Upper East Side,40.77942,-73.94772,Entire home/apt,160,1,16,2018-10-27,1.10,1,0 +24604281,THE COOLEST BEDROOM/APARTMENT IN HARLEM.,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81639,-73.94223,Private room,80,2,49,2019-06-13,3.37,3,178 +24606241,Sunny & Beautiful 1br apt in heart of Lower East.,165725362,Janey,Manhattan,Lower East Side,40.71432,-73.9887,Entire home/apt,150,4,32,2019-07-02,2.36,2,216 +24606641,Classy Antique Private Bedroom 20-minutes to Ferry,99202586,Thelma,Staten Island,Randall Manor,40.62947,-74.12991,Private room,79,2,4,2019-07-01,0.30,5,355 +24607120,TWO BEDROOM UNICORN IN THE HEART OF WILLIAMSBURG,128917721,Usamah,Brooklyn,Greenpoint,40.7203,-73.94644,Entire home/apt,250,3,2,2018-12-14,0.22,1,177 +24607287,Spacious sunlit room in Astoria,160614820,Lucy,Queens,Ditmars Steinway,40.77496,-73.91172,Private room,60,15,12,2019-01-01,0.85,1,21 +24607535,Heart of long island City,183623716,Amira,Queens,Long Island City,40.74664,-73.95039,Private room,85,1,10,2019-07-06,0.71,1,365 +24607763,Cozy home,118029044,Freddy,Brooklyn,Midwood,40.60909,-73.97155,Entire home/apt,200,2,26,2019-07-01,1.88,2,275 +24608095,Clean and charming room for rent.,9663349,Nicole,Queens,Rego Park,40.72795,-73.86048,Private room,40,3,1,2019-05-24,0.65,1,305 +24608893,Huge light filled bedroom in trendy Williamsburg,27032848,Samia,Brooklyn,Williamsburg,40.71747,-73.96045,Private room,89,4,4,2019-06-17,0.29,1,128 +24608922,Skyscraper View - Loving it!,84862540,Christelle,Manhattan,Financial District,40.7069,-74.01388,Private room,95,2,6,2018-08-26,0.41,1,0 +24609263,Beautiful 2bdr apt in Brooklyn near to everything.,43803591,Anna,Brooklyn,Fort Hamilton,40.61257,-74.03598,Entire home/apt,135,5,31,2019-06-02,2.16,1,151 +24609530,Modern and spacious 2 bedroom in Manhattan,185981519,Erika,Manhattan,East Village,40.72189,-73.98219,Entire home/apt,260,1,44,2019-05-25,3.00,1,299 +24611661,BEAUTIFUL GREAT BEDROOM IN HARLEM,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81639,-73.94414,Private room,80,2,40,2019-06-26,2.75,3,177 +24614703,Charming Cozy 1 bed-room in the heart of Bed-Stuy,127956858,Betty,Brooklyn,Bedford-Stuyvesant,40.69298,-73.94188,Entire home/apt,130,3,6,2019-06-08,0.44,1,14 +24618397,ENJOY NYC IN 1 BDRM CONDO HEART OF MIDTOWN,29100568,Deborah,Manhattan,Theater District,40.76205,-73.982,Entire home/apt,165,30,0,,,4,0 +24618542,"New Condo 2 bedrms /1,5bath elevator & balcony",55149412,Ha,Manhattan,Chinatown,40.71409,-73.99434,Entire home/apt,400,1,2,2018-10-07,0.20,4,191 +24620408,"Perfect Location, surrounded with all your need",186059643,Night,Queens,Ridgewood,40.70022,-73.90025,Entire home/apt,200,2,38,2019-06-23,2.73,1,363 +24621401,Charming Art Deco Apartment on Central Park,42795691,Tony,Manhattan,Upper West Side,40.78925,-73.96757,Entire home/apt,139,6,21,2019-06-30,1.83,1,116 +24622596,Two Bridges Private Escape,16754308,Marcel,Manhattan,Lower East Side,40.71152,-73.99166,Private room,59,30,4,2019-03-31,0.34,1,52 +24624070,Private Bedroom in a Modern Building,181111992,Van,Brooklyn,Flatbush,40.63076,-73.95851,Private room,45,1,19,2018-12-27,1.57,2,98 +24624154,1 Bedroom Cozy Apartment,139756559,Maria,Staten Island,Great Kills,40.54878,-74.13908,Entire home/apt,75,30,3,2019-02-11,0.22,2,129 +24624171,Bushwick Brooklyn Private Apartment 15min. To NYC!,81662935,Kamaran,Brooklyn,Bedford-Stuyvesant,40.68392,-73.91324,Entire home/apt,159,2,49,2019-07-01,3.52,2,336 +24626439,Private Room in spacious TriBeCa Loft,5922211,Karan,Manhattan,Tribeca,40.71554,-74.00645,Private room,120,2,2,2018-05-29,0.14,1,0 +24626621,STUDIO.STYLE.BEDROOM+PRIVATE.BATHROOM+TOP.LOCATION,186100463,Mateo,Brooklyn,Crown Heights,40.67357,-73.95467,Private room,99,2,52,2019-07-04,3.63,1,224 +24627128,Little Secret,186111724,Thomas,Manhattan,Upper West Side,40.77705,-73.98118,Private room,112,2,81,2019-07-07,5.63,1,6 +24627684,Quaint NYC studio- tree lined St.- great location!,47895481,Omar,Manhattan,Midtown,40.7446,-73.98399,Entire home/apt,175,1,2,2018-07-02,0.16,1,0 +24628788,White Cozy Studio Apartment in Brooklyn,31929849,Daria,Brooklyn,Midwood,40.61962,-73.96323,Entire home/apt,85,2,8,2019-06-24,0.60,1,27 +24629029,Cozy Astoria Room in 2br Apartment- Artists Space,2521642,Serdar,Queens,Ditmars Steinway,40.78442,-73.91339,Private room,55,1,14,2019-07-04,0.96,1,123 +24629830,Astoria- Boho style bedroom with skylight,11406067,Karina,Queens,Ditmars Steinway,40.77376,-73.90484,Private room,80,2,17,2019-06-24,1.36,1,24 +24630272,Private Room in huge TriBeCa Loft,23971160,Josh,Manhattan,Civic Center,40.71313,-74.00681,Private room,90,2,3,2018-06-01,0.21,1,0 +24630495,"Beautiful, spacious Upper West Side 1Br apartment",24165842,Gal,Manhattan,Upper West Side,40.77127,-73.98842,Entire home/apt,180,5,6,2019-06-16,0.82,1,5 +24631587,"SoHo, Entire Place, Rooftop View",186142001,Bubbles,Manhattan,SoHo,40.72591,-74.00176,Entire home/apt,215,1,0,,,1,158 +24632050,Sunny room in beautiful Brooklyn apartment,186148319,Sara,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.944,Private room,47,10,0,,,1,0 +24632399,New*full floor 3BR2bath SPACIOUS FAMILY WELCOME*,1846051,Kj,Manhattan,Hell's Kitchen,40.76281,-73.98883,Entire home/apt,415,4,43,2019-06-19,3.33,2,71 +24632456,Beach Break - Your Rockaway Home by the Sea,186148178,Riva,Queens,Rockaway Beach,40.58466,-73.81628,Entire home/apt,275,2,29,2019-07-01,2.13,1,138 +24632516,Quiet Sunlit Bedroom w/ Private Bath in Brooklyn,79322329,Elissa,Brooklyn,Bushwick,40.70133,-73.92074,Private room,115,3,45,2019-07-04,3.14,1,75 +24632590,"Apt near ferry,verrazano brdg, RUMC,buses NYC wifi",32162495,Mostafa,Staten Island,Tompkinsville,40.6326,-74.09099,Entire home/apt,199,1,36,2019-06-23,2.51,3,171 +24632627,Amazing one bedroom - NYC Corporate Housing,3191545,Kyle,Manhattan,Kips Bay,40.74425,-73.97754,Entire home/apt,150,30,0,,,23,363 +24632879,@ Amazing Midtown Furnished Apartment @,3191545,Kyle,Manhattan,Kips Bay,40.74454,-73.97579,Entire home/apt,150,30,0,,,23,0 +24632914,The Avalon,24790900,Joslyn And Pansy,Brooklyn,Brownsville,40.66959,-73.91204,Private room,120,3,3,2019-01-02,0.29,1,365 +24633539,Private East Village Room With Great Light/Views,63409074,Kara,Manhattan,East Village,40.72081,-73.97921,Private room,60,14,7,2019-06-13,0.58,1,126 +24633702,Midwood townhouse,163843832,David,Brooklyn,Midwood,40.6155,-73.9522,Private room,58,2,12,2019-05-27,0.87,1,36 +24633732,Bright Brooklyn Bedroom Close to Prospect Park,2903817,Erica,Brooklyn,South Slope,40.66185,-73.9821,Private room,149,2,16,2018-11-18,1.26,1,0 +24633966,Bowery modern loft,161268152,Maytal And Ken,Manhattan,Lower East Side,40.72221,-73.99181,Entire home/apt,700,2,0,,,2,338 +24634657,Convenient and Relaxing,38874050,Howard,Queens,Ridgewood,40.70055,-73.91013,Private room,45,2,47,2019-06-21,3.29,3,159 +24635041,Irving Ave Bedroom Apartment,186178785,Simon,Brooklyn,Bushwick,40.69658,-73.90773,Private room,55,14,1,2018-08-31,0.10,1,0 +24635095,Traditional and cozy private room in best location,179657707,Andres,Manhattan,Hell's Kitchen,40.75516,-73.99603,Private room,110,3,35,2019-07-01,2.42,2,53 +24635506,"Sunlit Large Bdrm heart of Astoria, 5min to Subway",171825960,Radu,Queens,Ditmars Steinway,40.77826,-73.91805,Private room,70,2,1,2018-04-28,0.07,1,0 +24635562,"SUNNY HOMY ROOM CLOSE TO MANHATTAN,LGA/JFK AIRPORT",44213272,Miss. G.,Queens,Ditmars Steinway,40.77562,-73.91431,Private room,60,2,22,2019-06-23,1.54,5,360 +24644837,Bushwick Awesome Apartment - 2,9864136,Anthony,Brooklyn,Bushwick,40.68608,-73.914,Entire home/apt,121,30,1,2018-04-29,0.07,26,31 +24645220,Private bedroom in two bedroom apartment Brooklyn,115258603,Toun,Brooklyn,Crown Heights,40.67254,-73.91686,Private room,62,2,23,2019-06-03,1.58,1,172 +24645434,Small Comfortable Midtown Room,9864136,Anthony,Manhattan,Kips Bay,40.74233,-73.98031,Private room,75,30,3,2018-12-02,0.29,26,345 +24649878,NEAR COLUMBIA PRESBYTERIAN HOSP Students/Visitors,25237492,Juliana,Manhattan,Washington Heights,40.84039,-73.93954,Private room,50,30,2,2019-05-19,0.21,34,281 +24650448,Astoria bedroom with personality,185495146,Alexandria,Queens,Astoria,40.75452,-73.91458,Private room,52,6,7,2019-06-25,0.50,1,2 +24650569,Comfortable bedroom in PLG,4028002,Tracy,Brooklyn,Prospect-Lefferts Gardens,40.65867,-73.9522,Private room,109,1,0,,,1,95 +24652644,Comfy Cozy - 12 Minutes from Manhattan,31789510,Raisa,Queens,Woodside,40.74667,-73.90202,Entire home/apt,100,3,8,2019-01-01,0.55,1,0 +24652832,Bushwick Brownstone Penthouse,56391348,Dustin,Brooklyn,Bushwick,40.69738,-73.92947,Entire home/apt,160,3,46,2019-06-20,3.22,1,270 +24653197,Midwood,104497453,Mark,Brooklyn,Midwood,40.62483,-73.97437,Private room,200,3,1,2018-07-29,0.09,3,88 +24653285,"Location, Location, Location! & A/C! :)",18416898,Donna,Brooklyn,Crown Heights,40.67014,-73.95342,Private room,65,1,13,2019-06-10,0.91,1,83 +24653322,Cozy Ridgewood Apartment,131482216,Lynn,Queens,Ridgewood,40.71002,-73.90952,Entire home/apt,115,3,14,2019-01-01,0.99,1,19 +24653572,Staten Island retreat.,171590575,Anthony,Staten Island,Randall Manor,40.6416,-74.09861,Private room,50,10,2,2018-11-06,0.14,1,191 +24654607,The East Village Home: The Cabin Room,126034120,Roni,Manhattan,East Village,40.72607,-73.97631,Private room,95,1,67,2019-06-22,4.59,3,241 +24655093,Historic Harlem Townhome,4538012,Karen,Manhattan,Harlem,40.80874,-73.94167,Entire home/apt,300,30,3,2019-04-30,0.27,4,0 +24655787,NYC: Across from Central Park,32008804,David,Manhattan,East Harlem,40.79707,-73.94739,Private room,69,2,68,2019-06-23,4.83,1,0 +24656086,Private 2 BR Mid-Century Modern Apt,186334891,Muneeba,Brooklyn,Sunset Park,40.66294,-73.99349,Entire home/apt,169,2,48,2019-06-23,3.42,2,171 +24656108,Charming 2 Bedroom in the Heart of Williamsburg,4794638,Daniel,Brooklyn,Williamsburg,40.71598,-73.95466,Entire home/apt,134,1,52,2019-07-02,3.59,1,262 +24656201,A Place to Call HOME,25479861,Michael,Queens,Sunnyside,40.74567,-73.91881,Private room,89,1,0,,,1,365 +24656571,Shared Apartment 1 stop from Manhattan,55724558,Taylor,Queens,Long Island City,40.76003,-73.94111,Shared room,35,5,11,2019-05-16,0.78,5,90 +24656728,Private room 1 block from Times Square/City Center,31929860,Bryan,Manhattan,Hell's Kitchen,40.75985,-73.99107,Private room,120,1,18,2019-06-07,1.27,4,249 +24656865,"Comfortable Simplistic, 8th Av walk to destination",186029613,Jazmin,Manhattan,Harlem,40.82452,-73.94219,Entire home/apt,140,2,23,2019-06-23,1.64,1,0 +24657328,Heart of the City,173373234,Alexander M,Manhattan,Midtown,40.75864,-73.97035,Entire home/apt,200,30,7,2018-08-30,0.51,2,188 +24659224,Private bed & bath in gorgeous midtown apartment,19288299,David,Manhattan,Hell's Kitchen,40.76511,-73.98762,Private room,139,2,35,2019-06-27,2.45,1,93 +24659877,Nice home in awesome Location,186376053,Andrea,Manhattan,Upper West Side,40.79694,-73.96268,Private room,80,2,17,2019-06-15,1.44,1,126 +24667053,Cool comfy nest in EAST VILLAGE,159482696,Scar,Manhattan,East Village,40.72247,-73.98172,Private room,79,3,3,2018-06-10,0.22,1,0 +24670553,South exposure Bay windows Loft studio,26584499,Ofir,Manhattan,Upper West Side,40.78245,-73.98355,Entire home/apt,125,30,0,,,8,283 +24670583,Lovely Shared Space in the Bronx,26947215,Luis,Bronx,Clason Point,40.81862,-73.8791,Shared room,40,1,26,2019-06-23,1.82,1,141 +24670846,Brooklyn Home By The Pier,186362905,Karen,Brooklyn,Canarsie,40.63125,-73.88925,Entire home/apt,91,1,28,2019-06-30,2.01,1,172 +24670932,"Sunny, Spacious, & Clean East Village One-Bedroom!",16713679,Marie,Manhattan,East Village,40.72531,-73.98187,Entire home/apt,295,3,9,2019-07-02,0.64,1,88 +24673017,Wall Street Condo with Stunning Views,13834266,Vicki,Manhattan,Financial District,40.70598,-74.00761,Entire home/apt,400,30,0,,,1,290 +24673382,New York Home with a View,59074471,Fatimatou,Manhattan,East Harlem,40.79762,-73.94797,Private room,76,1,16,2019-05-29,1.45,1,0 +24673759,Williamsburg Pad,25895777,Vincent,Brooklyn,Williamsburg,40.70843,-73.96833,Entire home/apt,400,6,3,2019-06-06,0.35,1,347 +24674269,Brooklyn sleepytime art studio,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69403,-73.94487,Private room,48,2,80,2019-06-28,5.93,2,45 +24676554,family-style apartment,162881419,Manny,Bronx,Norwood,40.87816,-73.87213,Entire home/apt,125,3,20,2018-12-21,1.40,1,281 +24676594,Duplex STUDIO With Sunset View,186501476,Alessandra,Manhattan,Greenwich Village,40.72911,-74.00001,Entire home/apt,250,4,6,2018-10-09,0.44,1,364 +24677673,"Large, Private, Sunny Room 8 min to Subway -Harlem",4538012,Karen,Manhattan,East Harlem,40.80931,-73.93982,Private room,65,4,8,2019-06-18,0.64,4,0 +24677845,"Sunny Brooklyn room in new apt, 4 min to subway!",70237937,Flora,Brooklyn,Bedford-Stuyvesant,40.68133,-73.95433,Private room,80,6,1,2018-05-28,0.07,1,0 +24677926,Stylish & Tranquil East Village Three Bedroom,11305249,Eric,Manhattan,East Village,40.72499,-73.98867,Entire home/apt,650,2,41,2019-05-17,2.83,1,126 +24678015,"A place to sleep the night near NYC,RUMC, Brooklyn",32162495,Mostafa,Staten Island,Tompkinsville,40.63126,-74.0921,Entire home/apt,48,3,1,2018-07-16,0.08,3,0 +24687253,Ctrl Park/Ts Square Private Room for 1 or 2 people,186586297,Clark,Manhattan,Hell's Kitchen,40.7659,-73.98557,Private room,99,1,17,2018-08-26,1.18,2,0 +24692025,Hermoso Penthouse con terraza privada.,163421878,Any,Queens,Woodside,40.74312,-73.91185,Private room,55,1,25,2019-06-17,1.75,3,332 +24693488,Quiet cave crash spot (check in is at 10pm.),186620707,Tyni,Manhattan,Harlem,40.79892,-73.95139,Shared room,44,1,49,2019-06-23,3.38,2,5 +24694397,"Two Bedroom Apartment in Ridgewood, near the train",186626470,Andrew,Queens,Ridgewood,40.70653,-73.91598,Entire home/apt,200,7,10,2019-05-31,0.77,1,365 +24694832,Gorgeous apartment in Brooklyn,588933,Rochi,Brooklyn,Crown Heights,40.6682,-73.95261,Entire home/apt,150,3,36,2019-07-07,2.65,1,332 +24695406,Spacious Private Basement Apartment,98157128,Michael,Bronx,Wakefield,40.88764,-73.8558,Entire home/apt,100,2,38,2019-06-19,2.66,1,107 +24696044,SUMMER DEAL,43184079,Ro,Manhattan,Stuyvesant Town,40.73082,-73.98023,Entire home/apt,150,35,2,2018-06-30,0.16,1,83 +24698043,Your Best NY location,14710145,Sabrina,Manhattan,East Village,40.7232,-73.98758,Private room,150,2,3,2018-05-28,0.21,1,0 +24698087,Brooklyn House of Light,26068038,Sam,Brooklyn,Windsor Terrace,40.64801,-73.97391,Entire home/apt,350,3,2,2018-08-13,0.16,1,0 +24699301,NYC HUB HOME: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.70887,-73.78275,Entire home/apt,128,2,23,2019-05-05,1.75,7,10 +24699402,9th Ave Apartment in the heart of Manhattan NYC!,186586297,Clark,Manhattan,Hell's Kitchen,40.76752,-73.98641,Entire home/apt,200,3,71,2019-07-03,5.49,2,95 +24699629,Brooklyn Leisure Lounge,5160639,Matthew,Brooklyn,Bushwick,40.70434,-73.91935,Entire home/apt,190,2,19,2019-06-16,2.18,1,2 +24699739,Sunny Room in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66807,-73.9906,Private room,40,5,7,2019-05-10,0.49,2,0 +24699823,A spacious 1 bdrm park apartment to yourself,4607848,Nathan,Manhattan,Inwood,40.8622,-73.93039,Entire home/apt,71,6,2,2018-05-30,0.14,1,0 +24699891,GORGEOUS LARGE BEDROOM,45416627,Lolita,Queens,Astoria,40.76962,-73.92477,Private room,60,2,4,2018-06-23,0.29,9,283 +24700123,BRIGHT PRIVATE BEDROOM,45416627,Lolita,Queens,Astoria,40.76956,-73.9243,Private room,59,1,48,2019-06-16,3.47,9,351 +24700856,Flatbush pad Sleeps 6 MANHATTAN 30 min Away!,3532263,Alejandro,Brooklyn,Flatbush,40.63556,-73.95076,Entire home/apt,599,2,34,2019-04-25,2.42,4,0 +24700919,TIGER’S REST,185724116,Maria,Brooklyn,Bushwick,40.68161,-73.90717,Entire home/apt,125,2,41,2019-06-24,2.87,1,168 +24700984,Contemporary Home in the Heart of Bed-Stuy,52575889,Elissa,Brooklyn,Bedford-Stuyvesant,40.68957,-73.94445,Entire home/apt,115,3,9,2019-01-30,0.63,1,0 +24710755,Affordable 1-bedroom apt in private house,101498908,Julie,Brooklyn,East Flatbush,40.65056,-73.94994,Entire home/apt,65,2,14,2018-07-28,1.03,2,0 +24711813,El jardín del Edén,186361566,Merly,Manhattan,Washington Heights,40.83418,-73.94088,Shared room,50,1,8,2018-11-12,0.56,1,89 +24712037,Stylish Design Apartment in the Heart of Brooklyn,13490977,Celia,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94674,Entire home/apt,198,2,14,2019-05-31,1.01,1,0 +24713329,Cozy Hidden Gem Near All,186791133,Sam,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.96209,Entire home/apt,78,3,53,2019-06-13,3.77,1,74 +24714137,Heart of Lower East Side,186798498,Vito & Miriam,Manhattan,Lower East Side,40.7157,-73.98864,Entire home/apt,160,2,50,2019-07-05,4.05,1,325 +24714264,Trendy Stylish Chic Loft in Greenpoint!,46594096,Michael,Brooklyn,Greenpoint,40.72672,-73.94054,Shared room,125,3,4,2018-07-05,0.28,1,0 +24714364,Brooklyn — The Perfect Air BnB Experience,84503565,Jason,Brooklyn,Bushwick,40.70182,-73.92922,Private room,90,1,8,2019-05-12,0.55,2,295 +24715620,Room B Close to NYU Langone H/Metro station,105640471,Jason,Brooklyn,Sunset Park,40.64193,-74.01483,Private room,43,1,11,2019-05-28,1.11,8,146 +24715766,Studio Loft for Rent in Cool Building,83768519,Mutaurwa,Brooklyn,Bushwick,40.69796,-73.93563,Entire home/apt,80,5,1,2018-08-06,0.09,1,5 +24715821,Cozy and clean private room in East Williamsburg,20994908,Gabriel,Brooklyn,Williamsburg,40.70666,-73.94379,Private room,60,4,4,2019-03-16,0.29,1,0 +24715838,Beautiful Modern and Cosy 1BR in Chelsea,5861197,Benoit,Manhattan,Chelsea,40.75254,-73.99471,Entire home/apt,190,3,2,2018-09-22,0.15,1,0 +24715968,Clean comfy couch -2 blocks from train station,6606533,Briane,Brooklyn,East Flatbush,40.63654,-73.94862,Shared room,60,1,1,2018-09-02,0.10,1,0 +24716751,A plus,186819005,Ron,Manhattan,Harlem,40.8175,-73.95234,Private room,57,1,39,2019-07-01,2.71,1,176 +24717470,Amazing Studio at the Time Square/52B,48146336,Irina,Manhattan,Hell's Kitchen,40.76291,-73.99327,Entire home/apt,120,30,3,2019-06-30,0.26,20,342 +24718788,Studio with a view,11966882,Svetlana,Manhattan,Kips Bay,40.73807,-73.98091,Entire home/apt,119,4,2,2018-09-30,0.15,1,0 +24719244,Fort Greene Brownstone Apartment for 6,186851013,Deborah,Brooklyn,Fort Greene,40.68957,-73.97449,Entire home/apt,200,2,31,2019-05-27,2.27,1,95 +24721548,Shared Hotel Room; For Short Stay,114502589,Hugo,Queens,Long Island City,40.75246,-73.94003,Shared room,38,1,0,,,1,0 +24725794,"Cozy Basement Studio in the Heart of Harlem, NYC",186905487,Brayan,Manhattan,Harlem,40.80863,-73.95503,Entire home/apt,92,2,68,2019-06-23,4.76,1,32 +24726458,Beautiful and Huge Room in Brooklyn,15640230,Susana,Brooklyn,Crown Heights,40.66433,-73.93438,Private room,45,13,2,2018-07-31,0.15,4,354 +24727443,Charming Newly Renovated West Village Apartment,7339898,Leah,Manhattan,Greenwich Village,40.72975,-74.00157,Entire home/apt,200,3,18,2019-07-01,1.28,1,10 +24727745,Quiet and Friendly,129585378,Victoria,Manhattan,Murray Hill,40.74943,-73.97279,Private room,120,4,3,2018-08-14,0.26,1,0 +24728012,Beautiful Apartment,77534743,Fabiola,Brooklyn,Bedford-Stuyvesant,40.68622,-73.9395,Private room,42,2,4,2018-06-19,0.28,1,0 +24729353,Private Cozy Room on Thompson Street,38379191,Mickael,Manhattan,Greenwich Village,40.72783,-74.00102,Private room,89,7,44,2019-06-23,3.11,1,0 +24730752,MiniArtHotel|CentralParkUESManhattan|SingleCouple,1784813,Ying,Manhattan,Upper East Side,40.78237,-73.95226,Private room,95,2,35,2019-06-14,2.58,1,180 +24731641,SEMI STUDIO IN 2bdrm apt PRIVATE Bath,1100494,Mike&Mavi,Manhattan,Harlem,40.82347,-73.95452,Private room,80,5,4,2019-06-01,0.35,3,324 +24732229,"HUGE 1,000 Sq Foot Apt in MANHATTAN by 1 train!!",18418581,Pooja,Manhattan,Washington Heights,40.85522,-73.93271,Entire home/apt,235,1,24,2019-07-04,1.68,3,352 +24732245,Large room in 2BR apartment,158596887,Gal,Brooklyn,Bushwick,40.7016,-73.91533,Private room,40,2,3,2018-05-21,0.21,2,0 +24732974,1 bedroom (entire) apartment very spacious,186318389,Joanna,Bronx,Mount Eden,40.84059,-73.92156,Entire home/apt,150,1,4,2018-05-17,0.28,1,0 +24733038,Hamilton heights home,55325859,Stephanie,Manhattan,Harlem,40.8241,-73.94522,Entire home/apt,120,1,4,2018-12-31,0.31,1,0 +24733112,Large 2B/2B with Stunning Views & Balcony,186970542,Jasmine,Manhattan,Upper West Side,40.77396,-73.9842,Entire home/apt,400,2,66,2019-07-04,4.59,1,164 +24733275,Financial District Private Room,127764617,Ned,Manhattan,Financial District,40.70848,-74.0051,Private room,130,1,40,2019-07-01,2.79,1,49 +24733560,Spacious Private Room in Brooklyn,34672584,Andre,Brooklyn,Crown Heights,40.66916,-73.96187,Private room,75,2,1,2018-05-20,0.07,1,157 +24734527,West Village 2 Bedroom with Private Roof Deck!,186985990,Alan,Manhattan,West Village,40.73664,-74.00567,Entire home/apt,125,3,38,2019-06-29,2.79,1,100 +24734792,Large Bedroom in Harlem,15940253,Raimundo,Manhattan,Harlem,40.82708,-73.9447,Private room,120,10,1,2018-12-26,0.15,2,0 +24735077,Studio of your own with a yard - pet friendly!,87328,Danielle,Brooklyn,Park Slope,40.67917,-73.97951,Entire home/apt,120,5,1,2018-05-15,0.07,1,0 +24735722,"Small Private Room # 1, single / Twin bed.",43825074,Masud,Brooklyn,Cypress Hills,40.68593,-73.87793,Private room,35,28,9,2019-05-01,0.63,3,312 +24735773,Sunny room in cozy Bushwick apartment,66754355,Phoebe,Brooklyn,Bushwick,40.70792,-73.91986,Private room,45,3,1,2018-05-13,0.07,1,0 +24736254,Rustic Modern Brooklyn Apt,14577537,Tom,Brooklyn,Bedford-Stuyvesant,40.69103,-73.9288,Entire home/apt,100,30,1,2018-05-03,0.07,2,111 +24736896,Cozy private bedroom downtown,186680487,Henry D,Manhattan,Two Bridges,40.71094,-73.99305,Private room,97,1,86,2019-06-21,6.34,1,20 +24737425,Charming Lux. 1 bedroom in Williamsburg,4350342,Samantha,Brooklyn,Williamsburg,40.7116,-73.95137,Entire home/apt,225,2,21,2019-06-23,1.60,1,88 +24740209,Long term/16 month sublet. Great location!,4267075,Jen,Brooklyn,Clinton Hill,40.68458,-73.96805,Entire home/apt,89,365,1,2018-08-23,0.09,2,0 +24743196,"Private, Cozy & Fully Equipped Room /20 min to NYC",130074377,Eliana,Queens,Ridgewood,40.70092,-73.90714,Private room,80,1,16,2019-06-25,1.46,2,220 +24746319,Amazing room for Memorial day weekend only!,111876825,Brandon,Queens,Maspeth,40.71319,-73.90315,Private room,200,2,0,,,1,365 +24746840,Cozy gem in Bushwick/Bed-stuy,63671528,Patricia,Brooklyn,Bedford-Stuyvesant,40.69475,-73.93586,Private room,40,7,1,2018-05-27,0.07,1,0 +24748187,"Modern, Private Room in Heart of East Village",7656338,Conor,Manhattan,East Village,40.72191,-73.98124,Private room,80,2,9,2018-09-17,0.66,1,0 +24748233,Spacious Modern Studio near Gramercy & Mad Sq Park,40502,Ben,Manhattan,Kips Bay,40.74183,-73.98166,Entire home/apt,175,2,29,2019-06-03,2.14,1,0 +24749018,Brand new 2-bed in luxury full-service building,3346513,Sorel,Brooklyn,Downtown Brooklyn,40.69192,-73.98391,Entire home/apt,250,4,15,2019-05-21,1.04,2,22 +24750019,X-Large 1 Bedroom on McCarren Park,187116536,Joshua,Brooklyn,Greenpoint,40.72251,-73.95103,Entire home/apt,135,3,58,2019-06-16,4.09,1,70 +24751022,Sonder | Hanover Square | Welcoming 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70401,-74.00932,Entire home/apt,179,29,0,,,96,1 +24751067,"Spacious, Sunny, Exposed Brick Near Columbia Univ!",1262513,Ito,Manhattan,Washington Heights,40.85197,-73.93308,Private room,59,2,15,2019-05-20,1.06,1,98 +24751420,Cozy and Spacious Studio in Columbus Circle,130965770,Joshua,Manhattan,Hell's Kitchen,40.76914,-73.98757,Entire home/apt,180,1,43,2019-07-01,4.37,1,2 +24751713,"The Manhattan Club, NYC",183736521,Martha,Manhattan,Midtown,40.76592,-73.98095,Private room,125,3,1,2018-04-30,0.07,1,5 +24752128,Cozy two bedroom apartment in the Upper East Side,5383703,Alexandra,Manhattan,Upper East Side,40.7648,-73.95862,Entire home/apt,170,7,29,2019-06-14,2.06,1,173 +24752747,Sonder | Hanover Square | Simple 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70518,-74.00994,Entire home/apt,182,29,2,2019-04-01,0.24,96,347 +24753221,Rare gem of an apartment in NYC. So Spacious!,3749502,Aaron,Manhattan,Washington Heights,40.83856,-73.94411,Private room,65,3,23,2019-06-19,1.65,1,1 +24754074,"Luxury Brooklyn brownstone, modern with backyard",4285260,Andy,Brooklyn,Bedford-Stuyvesant,40.68582,-73.93706,Entire home/apt,450,2,5,2019-01-01,0.36,1,3 +24754245,Private room with lots of surprise,38874050,Howard,Queens,Ridgewood,40.70125,-73.91051,Private room,42,2,39,2019-06-23,2.71,3,141 +24754459,Spacious Bedroom in Unique Williamsburg,91526716,Alessandra,Brooklyn,Williamsburg,40.71246,-73.96084,Private room,79,3,50,2019-06-30,3.53,1,28 +24754942,Cozy apt in vibrant Brooklyn neighborhood,22251843,Maria,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.96228,Entire home/apt,80,7,8,2019-02-10,0.58,1,4 +24755230,West Village Walk-Up.,22824452,Jacqueline,Manhattan,West Village,40.73272,-74.00623,Entire home/apt,165,5,4,2019-03-20,0.30,1,0 +24756139,Cool and cozy in Brooklyn,1805238,Aleksandra,Brooklyn,Prospect-Lefferts Gardens,40.65517,-73.95827,Private room,50,1,43,2019-06-23,3.07,2,14 +24756445,Spacious One Bedroom in the Heart of Brooklyn,4426154,Haley,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.962,Entire home/apt,75,2,2,2018-08-05,0.15,1,0 +24756679,Light-Filled Studio Across From Prospect Park,56051614,Erica,Brooklyn,Prospect Heights,40.67388,-73.96709,Entire home/apt,128,3,13,2019-06-30,0.99,1,2 +24757612,Full apartment in Harlem,110062861,Anwar,Manhattan,Harlem,40.81448,-73.94547,Entire home/apt,122,4,17,2019-06-02,1.42,2,245 +24757844,Sunlit Room with Kitchen near Manhattan and LGA,39074591,Shoshana,Queens,Woodside,40.74699,-73.90844,Private room,46,1,2,2019-06-19,0.15,1,0 +24757848,Chic private room,187182730,David,Manhattan,Harlem,40.82511,-73.95341,Private room,85,4,3,2018-05-22,0.21,1,179 +24757985,Cozy apartment perfect for families with kids,5832321,Kalani,Queens,Glendale,40.69709,-73.89556,Entire home/apt,150,2,4,2019-01-13,0.41,2,0 +24758343,Large 1 bedroom Upper East apartment,25146744,Dana,Manhattan,Upper East Side,40.77181,-73.95097,Entire home/apt,199,5,1,2018-08-05,0.09,1,0 +24758512,NYC living,60975812,Johan,Manhattan,Hell's Kitchen,40.75417,-73.99435,Private room,70,4,0,,,1,0 +24758664,Dekalb Ave. #1L,187190679,Dena,Brooklyn,Bushwick,40.69933,-73.92463,Entire home/apt,105,2,31,2019-06-29,2.34,1,353 +24758883,Upscale safe neighborhood Master Bedroom by subway,15838559,Weimin,Queens,Forest Hills,40.71447,-73.85181,Private room,59,2,6,2018-07-05,0.43,4,6 +24759050,"Private Bedroom on Upper West, Manhattan",76537707,Angela,Manhattan,Upper West Side,40.795,-73.97479,Private room,67,12,1,2018-05-31,0.07,1,0 +24760489,"Budget Friendly, Spacious Place 10 min to NYC",2788934,Andrew,Brooklyn,Greenpoint,40.72179,-73.9447,Private room,61,1,30,2019-06-11,2.08,2,1 +24765844,✴SPACIOUS HOMEY✴ 2 BD Sleeps 6! Brooklyn NY,479986,Anthony,Brooklyn,Williamsburg,40.70768,-73.95137,Entire home/apt,170,2,77,2019-07-02,5.54,1,10 +24770333,1BR in downtown Manhattan,46803679,Shawna,Manhattan,West Village,40.73177,-74.00162,Entire home/apt,100,3,0,,,1,0 +24770824,The Blue Bungalow of Rockaway Beach,1106731,Alexander,Queens,Rockaway Beach,40.5886,-73.8124,Entire home/apt,86,2,2,2018-05-12,0.14,2,0 +24772376,Cozy private room in Astoria,16015663,Deniz,Queens,Ditmars Steinway,40.77371,-73.91689,Private room,85,3,10,2019-06-04,0.79,1,88 +24772454,Family friendly 2 bedroom. NYC life and 1000 sq ft,34948714,Andrew,Manhattan,Upper West Side,40.79557,-73.97632,Entire home/apt,145,59,0,,,1,0 +24772896,Quaint SoHo Home Away From Home in The Big Apple!,187301833,Sue,Manhattan,SoHo,40.72095,-73.99961,Entire home/apt,210,3,34,2019-06-26,2.48,1,37 +24774169,"1 Bedroom in Affluent, Serene Bronx Neighborhood",187312110,Rilen,Bronx,Fieldston,40.88764,-73.90449,Private room,50,1,28,2019-07-07,2.47,1,73 +24776834,Stylish NYC Art Loft #2,34643568,Dave,Manhattan,East Harlem,40.79244,-73.94028,Private room,80,3,18,2019-07-01,1.74,6,88 +24777535,Sunny Space in Sunnyside - 15 min to Times Square.,170085232,Shaina,Queens,Sunnyside,40.74425,-73.91768,Private room,50,1,74,2019-01-04,5.15,1,0 +24777719,Cosy Room in Bushwick Collective Near JMZ Trains,27163168,Hanna,Brooklyn,Bushwick,40.69639,-73.93246,Private room,50,3,1,2018-05-08,0.07,1,0 +24778075,Luxury Room in Peaceful Area 25 min to Time Square,187340835,May,Queens,Forest Hills,40.71082,-73.85112,Private room,50,1,72,2019-06-30,5.19,1,228 +24778310,Cozy Room on Hewes with Rooftop Lounge,117367030,Casey,Brooklyn,Williamsburg,40.70703,-73.95434,Private room,151,3,12,2018-11-02,0.97,1,0 +24779271,Private Room,65119217,Frances,Manhattan,East Village,40.72745,-73.98537,Private room,200,1,1,2018-05-18,0.07,1,363 +24779466,High rise Suite with beautiful city views!,54481883,Camille,Manhattan,Gramercy,40.73805,-73.98415,Entire home/apt,150,4,4,2018-08-29,0.29,2,0 +24779801,Cozy large studio in a heart of West Village,25912435,Janna,Manhattan,Greenwich Village,40.73384,-73.99807,Entire home/apt,147,3,13,2019-07-04,0.96,1,0 +24780232,Apartment in sun drenched Upper Manhattan,17778872,Jacqueline,Manhattan,Morningside Heights,40.80937,-73.95881,Entire home/apt,350,3,0,,,1,0 +24780277,Beautiful Townhouse,9922513,James,Brooklyn,Prospect-Lefferts Gardens,40.66247,-73.95011,Entire home/apt,200,4,1,2018-06-03,0.07,1,21 +24782427,Speakeasy Inn Bushwick Four,24020292,Cristiano,Brooklyn,Bushwick,40.70122,-73.91836,Private room,70,1,44,2019-06-19,3.31,4,59 +24783060,[Priv Rooftop] Sunny-Spacious duplex Penthouse,187388261,Miguel,Brooklyn,Bedford-Stuyvesant,40.68135,-73.93709,Entire home/apt,140,8,1,2018-12-31,0.16,1,0 +24784400,Cozy Studio in Queens,24373940,Wolfe,Queens,East Elmhurst,40.75503,-73.89607,Entire home/apt,109,60,0,,,1,365 +24792114,Sunny apartment,3405917,Juliana,Queens,Sunnyside,40.74597,-73.91434,Private room,55,3,26,2019-06-17,1.82,1,1 +24793502,Conveniently located to manhattan,132669029,Edwin,Bronx,Throgs Neck,40.82601,-73.81907,Private room,50,3,19,2019-06-12,1.36,4,8 +24795553,Posh Alcove Studio: Everything You Need For NYC!,28159250,Isabel,Manhattan,Kips Bay,40.7385,-73.97945,Entire home/apt,200,2,43,2019-07-05,3.10,1,284 +24798693,Spacious and Bright Studio in Hell’s Kitchen,78261482,Petr,Manhattan,Hell's Kitchen,40.76293,-73.99347,Entire home/apt,190,4,16,2019-06-08,1.24,2,20 +24798903,Greenhouse APT,21764391,Jery & Dave,Brooklyn,Williamsburg,40.71166,-73.95739,Entire home/apt,200,3,7,2019-01-15,0.62,1,67 +24799437,Private Bedroom in Bushwick / Myrtle-Wyckoff L & M,58953152,Dmitry,Brooklyn,Bushwick,40.70065,-73.91135,Private room,49,1,29,2019-05-19,2.03,2,0 +24799552,Lovely & Sunny 2 Bedroom Home,187487947,Diego,Brooklyn,Greenpoint,40.73228,-73.95539,Entire home/apt,119,1,63,2019-06-01,4.51,6,0 +24799677,1 Bedroom available in a four bedroom house,25109819,Stefanos,Queens,Astoria,40.75989,-73.91571,Private room,40,1,5,2018-05-30,0.35,1,0 +24799807,Furnished Midtown One Bedroom Beauty,120762452,Stanley,Manhattan,Murray Hill,40.75028,-73.97702,Entire home/apt,210,30,1,2018-07-14,0.08,50,365 +24801589,Charming Park Slope 1 Bedroom Apartment,3082771,Hiram,Brooklyn,Park Slope,40.67238,-73.97607,Entire home/apt,105,7,8,2018-10-07,0.62,1,43 +24801968,Sunny place,39774366,Maksim,Manhattan,Upper East Side,40.77882,-73.95054,Entire home/apt,86,27,2,2018-12-23,0.19,1,154 +24804386,Sunny NYC Studio steps from Central Park,1092203,Erin,Manhattan,Upper West Side,40.78277,-73.97604,Entire home/apt,150,4,12,2019-03-31,1.55,1,0 +24805086,Pleasant Place JFK Private Housings Complex,26602392,Dean&Paula,Queens,Springfield Gardens,40.66204,-73.76597,Private room,60,1,50,2019-06-26,3.49,2,355 +24805249,Treetop Chic - Prime Williamsburg Boutique Home,3494371,Shelley,Brooklyn,Williamsburg,40.7135,-73.95468,Entire home/apt,225,10,5,2019-06-29,0.47,1,150 +24805348,Bright Room in Williamsburg,187530856,Baris,Brooklyn,Williamsburg,40.70896,-73.94754,Private room,157,1,6,2018-10-28,0.42,2,365 +24805679,A seriene space in Bushwick,187532995,Adi,Brooklyn,Bushwick,40.70447,-73.92589,Private room,70,4,2,2018-05-27,0.14,1,363 +24806098,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",75981937,Cem,Queens,Astoria,40.76197,-73.92335,Entire home/apt,140,15,2,2019-01-03,0.18,2,71 +24806106,“Studio” ideally located across Golf Course,132669029,Edwin,Bronx,Throgs Neck,40.81437,-73.82774,Entire home/apt,74,2,37,2019-06-13,2.63,4,70 +24806110,sunny apartment on the Ocean,187536544,Nino,Brooklyn,Brighton Beach,40.57707,-73.96303,Entire home/apt,150,5,8,2019-01-06,0.56,1,179 +24806141,Sweet Home at Washington Heights,186679495,Maritza,Manhattan,Washington Heights,40.84698,-73.93629,Entire home/apt,75,1,81,2019-07-02,5.73,1,171 +24806529,"Private Room In Brooklyn,",113890236,Nessim,Brooklyn,Bensonhurst,40.60997,-73.98022,Private room,40,2,2,2018-07-02,0.14,1,0 +24807368,Sunny 2BR Apt Near Columbia University,21573011,Lydia,Manhattan,Upper West Side,40.80001,-73.96459,Entire home/apt,180,2,15,2019-07-02,1.29,1,18 +24807859,Large Room with Balcony in Brownstone Townhouse,20555097,Emilie,Brooklyn,Bedford-Stuyvesant,40.68236,-73.9277,Private room,37,3,13,2019-05-31,0.92,2,0 +24808062,"Perfect for groups! 3BR, 2Bath feet from Subway!",97042500,Raphael,Manhattan,Harlem,40.80393,-73.95205,Entire home/apt,344,2,9,2019-01-23,0.75,4,25 +24808312,"MARTIAL LOFT 3: REDEMPTION (upstairs, 3rd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69501,-73.92296,Private room,40,3,2,2018-10-24,0.14,5,0 +24809771,"Beautiful, sunny 1 bedroom off Graham Ave",5024658,Yael,Brooklyn,Williamsburg,40.716,-73.94434,Entire home/apt,130,7,1,2018-06-10,0.08,1,9 +24810452,Williamsburg Gem in BK! Queen BR in Luxury Apt,1799439,Sean,Brooklyn,Williamsburg,40.71543,-73.94278,Private room,99,2,7,2018-09-18,0.54,1,0 +24816926,Lovely One Bedroom Apartment in the East Village!!,70043681,Helene,Manhattan,East Village,40.72734,-73.97528,Entire home/apt,142,2,50,2019-07-01,3.69,1,278 +24820939,Boutique huge apartment for families with kids,1478535,Tal,Manhattan,Upper West Side,40.78118,-73.98122,Entire home/apt,550,7,0,,,1,8 +24820955,Private Room in Bed-Stuy,28778026,Shahed,Brooklyn,Bedford-Stuyvesant,40.69401,-73.95692,Private room,70,1,20,2019-05-25,1.39,2,87 +24821651,Hiéroglyphe,187648135,Yero,Bronx,Allerton,40.86778,-73.85491,Private room,45,1,38,2019-07-01,2.70,1,85 +24823404,Large Private Room With Three Windows,137129564,Bing,Queens,Flushing,40.75422,-73.81586,Private room,59,1,25,2019-02-28,1.76,4,77 +24824820,NYC Studio near Central Park and the Hudson River,27958360,Julie,Manhattan,Upper West Side,40.78136,-73.98225,Entire home/apt,160,2,20,2019-06-23,1.47,1,6 +24825809,The Red House,135502033,Adam,Queens,Rockaway Beach,40.58415,-73.81243,Private room,125,1,30,2019-07-06,2.20,1,342 +24826533,R Bright & Cozy & Modern room 30 mins to Manhattan,130903736,Anna,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93398,Private room,59,1,97,2019-06-26,7.08,1,25 +24826789,Sonder | 21 Chelsea | Artsy 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7429,-73.9956,Entire home/apt,239,29,0,,,96,335 +24826817,Fun tourist family friendly Flatiron Loft,187684303,Alexis,Manhattan,Kips Bay,40.73992,-73.98272,Entire home/apt,200,2,16,2019-05-09,1.57,1,6 +24827469,Large Apt + Backyard,14269481,Kate,Brooklyn,Williamsburg,40.70012,-73.95082,Entire home/apt,130,3,2,2019-01-01,0.16,1,3 +24829645,Charming apartment in the heart of Sunnyside,7822898,Saleem,Queens,Sunnyside,40.74617,-73.91592,Entire home/apt,104,2,6,2018-08-27,0.43,1,141 +24831549,Sleek Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70571,-74.00833,Entire home/apt,182,29,1,2019-05-18,0.57,96,333 +24831635,Comfortable an Nice Bedroom to relax,187718165,Magui,Queens,Briarwood,40.71007,-73.81483,Private room,30,1,24,2019-06-12,1.67,1,6 +24833043,Emerald's View,101216314,Charlie,Manhattan,Harlem,40.80848,-73.94271,Private room,65,1,28,2019-02-22,2.00,1,163 +24833117,2 BEDROOM APT-walk to CENTRAL PARK and restaurants,7834073,Moby,Manhattan,East Harlem,40.7879,-73.94796,Entire home/apt,250,2,27,2019-06-20,1.94,1,31 +24833279,Queens C Place,156716488,Christine,Queens,South Ozone Park,40.66906,-73.79254,Private room,60,3,2,2018-11-12,0.23,2,180 +24834058,Queens C Place,156716488,Christine,Queens,South Ozone Park,40.66872,-73.79417,Private room,48,3,15,2019-07-02,1.18,2,365 +24834309,Large 2BR apartment in Astoria near Midtown + LGA,6194487,Rocio & James,Queens,Astoria,40.76207,-73.90541,Entire home/apt,149,2,47,2019-06-25,3.46,3,308 +24834739,THE BROOKLYN BLUE HOUSE 2,183127881,Giana,Brooklyn,Canarsie,40.64487,-73.90081,Private room,59,2,56,2019-06-07,4.06,4,365 +24834823,"Sunny, Spacious Upper West Side Studio",15220605,Tommy And Sarah,Manhattan,Upper West Side,40.80389,-73.96859,Entire home/apt,100,3,1,2018-06-18,0.08,1,0 +24834824,Quiet home,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92329,Entire home/apt,62,30,2,2018-12-15,0.25,6,255 +24835343,Industrial Loft/ palace,52991771,Amir,Brooklyn,Downtown Brooklyn,40.69489,-73.98322,Entire home/apt,135,4,27,2019-06-21,1.95,1,57 +24835618,Art双层屋,28907641,Sherry,Queens,Flushing,40.7632,-73.83098,Private room,95,1,78,2019-06-28,5.43,2,87 +24836464,JFK/QNS Home Away From Home Full private apartment,175019394,Suzan,Queens,Jamaica,40.6706,-73.7794,Entire home/apt,450,1,3,2018-07-02,0.22,6,83 +24836482,Private room avaliable in the private house,24704779,Fevzi,Brooklyn,Sheepshead Bay,40.58996,-73.95835,Private room,59,5,3,2018-07-14,0.22,1,97 +24842392,Private Room in a Two bedroom apartment,3090750,Laura,Manhattan,Upper East Side,40.77106,-73.95013,Private room,59,2,4,2018-05-25,0.28,2,0 +24843435,"Cozy bedroom conveniently located, close Manhattan",132669029,Edwin,Bronx,Throgs Neck,40.82696,-73.81927,Private room,40,4,34,2019-06-21,2.54,4,37 +24845719,"Stunning, oversized 2 Bed, 2 Bath in Prime Wburg",2316071,Kassidy,Brooklyn,Williamsburg,40.71136,-73.9562,Entire home/apt,215,2,8,2019-06-05,0.60,1,77 +24845976,"""Home sweet Home :) """,187822021,Shany,Queens,Astoria,40.7645,-73.9238,Entire home/apt,120,30,5,2019-03-09,0.37,1,5 +24846816,"Cozy Near LGA, Center of Queens RM2",187822288,Zahir,Queens,East Elmhurst,40.76921,-73.87132,Private room,49,1,128,2019-06-22,8.95,5,278 +24847554,Luxury Room in Upscale Penthouse w PRIVATE Rooftop,117341565,David,Manhattan,Little Italy,40.71835,-73.99757,Private room,41,240,1,2018-07-07,0.08,1,0 +24849193,Cozy Tropical NYC Room with Stunning View,36364146,Tomas,Manhattan,Morningside Heights,40.80672,-73.96713,Private room,125,6,3,2018-12-28,0.22,1,34 +24849342,Large Greenwich Village 2 Bedroom!,120006972,Connor,Manhattan,Greenwich Village,40.72923,-74.00176,Entire home/apt,250,3,14,2019-06-21,1.03,1,297 +24850009,Cute studio steps from Prospect Park,19508332,Jessica,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.9602,Entire home/apt,75,2,7,2019-06-07,0.54,1,9 +24851371,Brooklyn Room with a Rooftop,187861161,Maya,Brooklyn,Crown Heights,40.67334,-73.93269,Private room,34,5,1,2018-12-29,0.16,1,0 +24852364,Luxury Apartment in Midtown East,95051172,Tim,Manhattan,Midtown,40.75377,-73.97302,Private room,169,2,0,,,1,0 +24852686,The Shelf: Bedstuy Cozy room,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94396,Private room,60,1,85,2019-01-01,6.01,4,0 +24852836,The Best location in Upper East Side!,77243829,Idan,Manhattan,Upper East Side,40.77751,-73.94774,Entire home/apt,375,2,0,,,1,0 +24852947,Beautiful Bedroom in shared Williamsburg Apartment,90685499,Meryl,Brooklyn,Williamsburg,40.71187,-73.95864,Private room,150,1,0,,,2,0 +24853574,The Amazing Stay,187872824,Erik,Manhattan,Upper West Side,40.80013,-73.95907,Entire home/apt,150,1,6,2018-06-19,0.43,2,179 +24853655,Luxury 1BR close to Columbus Circle/Central Park,102351927,Jon,Manhattan,Hell's Kitchen,40.76482,-73.98674,Entire home/apt,224,7,10,2019-07-06,0.74,1,0 +24853936,JFK Queens/House of Suedajoy#5(dis by flexibility,175019394,Suzan,Queens,Jamaica,40.67121,-73.77859,Private room,80,1,68,2019-06-22,4.81,6,153 +24854139,Chic and Cozy Brooklyn Bedroom,26474200,Alyssa,Brooklyn,Greenpoint,40.72373,-73.94088,Private room,100,3,9,2019-05-28,0.69,1,365 +24855025,Great place by the park with private entrance !!!!,187889772,Jeremy,Queens,Ditmars Steinway,40.77676,-73.92069,Entire home/apt,100,1,4,2018-06-14,0.28,1,0 +24855248,"1st Fl Studio on Upper East, close to Central Park",37421312,Nikki,Manhattan,Upper East Side,40.77096,-73.95334,Entire home/apt,125,7,3,2018-05-31,0.21,1,0 +24855474,Modern Studio with Private Terrace,10901705,Allan,Brooklyn,Williamsburg,40.70763,-73.94797,Entire home/apt,120,1,20,2019-01-12,1.42,1,0 +24855669,Gorgeous Brooklyn Oasis,187895786,Aziza,Brooklyn,Bedford-Stuyvesant,40.69327,-73.95725,Private room,75,2,0,,,1,87 +24856020,Great House for Large Groups; Close to Manhattan,136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69448,-73.93657,Entire home/apt,600,1,29,2019-07-01,2.37,3,162 +24856606,JFK Queens Home away from Home House of Suedajoy 4,175019394,Suzan,Queens,Jamaica,40.67228,-73.77804,Private room,70,1,81,2019-06-22,5.73,6,85 +24857291,新一处客居(New place 1),187908645,Jimmy,Queens,Flushing,40.75582,-73.83215,Private room,60,1,9,2019-01-29,0.69,4,57 +24857436,Spacious Bright Room near Columbia University,187914509,Kangxin,Manhattan,Upper West Side,40.80078,-73.96394,Private room,50,5,4,2018-07-26,0.28,1,0 +24857723,Cozy 3 bedroom apartment in HEART of East Village!,32844422,David,Manhattan,East Village,40.7292,-73.98491,Entire home/apt,149,3,0,,,1,0 +24857741,"Studio, Empire State Building area.",135131537,Laura,Manhattan,Midtown,40.74846,-73.98708,Entire home/apt,180,6,38,2019-06-16,2.68,2,27 +24862077,The Perfect Escape,142455925,Hannah,Manhattan,Upper East Side,40.7661,-73.95419,Entire home/apt,118,3,3,2018-06-19,0.23,1,0 +24863288,Cozy 1-Bedroom Apartment in Harlem,29026712,Haydenn,Manhattan,Harlem,40.81717,-73.93918,Entire home/apt,70,2,2,2018-06-04,0.15,1,0 +24865151,Luxury Central Park Views Iconic building,2570750,Wolf,Manhattan,Midtown,40.76682,-73.97943,Entire home/apt,1195,3,27,2019-05-13,1.94,1,40 +24866257,"Huge, Sunny, & Private Room - 5 min to Times Sq.",187980677,Reilly,Manhattan,Chelsea,40.75069,-73.99736,Private room,175,1,46,2019-06-19,3.22,1,109 +24866378,Home Sweet Home in Flatbush,69469129,Cesar,Brooklyn,Flatbush,40.65341,-73.96238,Entire home/apt,165,5,8,2019-07-06,0.66,1,258 +24867995,暑假短租,78823148,Adelle,Manhattan,Kips Bay,40.74235,-73.97971,Private room,150,5,1,2018-05-18,0.07,1,0 +24868180,"Bright and airy, close to Central Park and museums",5679153,Harn,Manhattan,East Harlem,40.78973,-73.94965,Entire home/apt,50,4,17,2019-06-06,1.21,1,0 +24868751,Large room near Columbia University Med school,186155189,Kyunam,Manhattan,Washington Heights,40.84332,-73.94131,Private room,50,1,8,2019-06-18,0.58,3,53 +24868754,Inexpensive Private Rm w/ NYC/SIUH/RUMC Access 3,104812805,Amarjit S,Staten Island,Arrochar,40.59679,-74.08444,Private room,33,4,17,2019-07-06,1.20,8,316 +24868956,新一处客居(Newplace2),187908645,Jimmy,Queens,Flushing,40.75686,-73.83279,Private room,60,1,33,2019-06-22,2.36,4,49 +24870818,新一处客居(New place3),187908645,Jimmy,Queens,Flushing,40.75539,-73.83203,Private room,50,1,20,2019-06-07,1.64,4,2 +24871506,Dreamy centrally located Bedroom with city views!,3480784,Itzi,Manhattan,Little Italy,40.71953,-73.99685,Private room,110,2,34,2019-07-01,2.65,1,160 +24871661,Madison Square Studio w/ Elevator,188023318,Selina,Manhattan,Midtown,40.74234,-73.98277,Entire home/apt,145,5,0,,,4,40 +24871779,Lovely Lincoln Center Studio,3033697,Navid,Manhattan,Upper West Side,40.78054,-73.984,Entire home/apt,137,6,5,2019-05-21,0.37,1,0 +24872073,Big & Bright Bed-Stuy Bushwick Border Boudoir,2967674,Lilly,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92682,Private room,50,30,4,2018-10-12,0.37,2,21 +24872721,Light filled spacious 2 bed room apartment,17620937,Brittany,Manhattan,Washington Heights,40.83534,-73.94354,Entire home/apt,150,2,3,2019-03-10,0.25,1,35 +24873530,Bed-Stuy 2 Bedroom Beauty w/ Spacious Living Room,26178850,Anna,Brooklyn,Bedford-Stuyvesant,40.68344,-73.93308,Private room,45,5,19,2019-05-27,1.34,1,199 +24873980,Historic Strivers’ Row with a View,13926627,Marco,Manhattan,Harlem,40.81811,-73.94497,Private room,75,2,15,2019-05-30,1.07,1,140 +24874467,Private Bedroom with Full Bed in Wash Heights,188050267,Jennifer,Manhattan,Washington Heights,40.83827,-73.93976,Private room,50,2,0,,,1,0 +24874559,"Spacious & cozy room - Upper West Side, Manhattan",188051537,Benjamin,Manhattan,Upper West Side,40.80063,-73.96936,Private room,91,4,2,2018-12-25,0.19,1,197 +24879207,Lawrence Beach House,173852911,Kathryn,Queens,Far Rockaway,40.59486,-73.73837,Entire home/apt,250,2,22,2019-07-07,1.60,1,47 +24883987,Musician's Apartment Near the Park,25371059,Emma,Brooklyn,Prospect-Lefferts Gardens,40.66364,-73.94978,Entire home/apt,80,60,15,2019-06-24,1.21,1,2 +24884922,"Sunny, zen spot in the Heart of East Village",150238950,Natalie,Manhattan,East Village,40.72691,-73.9813,Entire home/apt,136,2,6,2019-06-02,0.42,1,39 +24885715,"2 Private Rooms, 1 min to J train, Free Breakfast",182260692,Leesha,Brooklyn,Cypress Hills,40.68187,-73.87985,Private room,99,2,48,2019-07-03,3.52,2,327 +24886110,Spacious Apartment Steps Away from Yankee Stadium,6762900,Ashley,Bronx,Highbridge,40.83088,-73.92779,Entire home/apt,103,2,40,2019-06-30,2.84,1,248 +24887028,Boho in WaHi,15139808,Tiffany,Manhattan,Washington Heights,40.83309,-73.94008,Private room,175,1,0,,,1,63 +24888436,A Hidden gem in the heart of Washington Heights,188160057,Kristi,Manhattan,Washington Heights,40.8483,-73.93115,Private room,125,3,0,,,1,363 +24889024,"True sanctuary, historic fort greene/clinton hill",83978022,Ofer,Brooklyn,Clinton Hill,40.69538,-73.9701,Entire home/apt,180,30,0,,,1,0 +24889615,One Bedroom apartment in great neighborhood,188169807,David,Manhattan,Upper West Side,40.80439,-73.96755,Entire home/apt,120,2,16,2019-07-07,1.51,1,1 +24889660,Entire Cozy Apartment in Center of East Village,187094395,Miche,Manhattan,East Village,40.72532,-73.98023,Entire home/apt,164,3,0,,,1,0 +24889922,Glendale apartment,177560095,Michelle,Queens,Glendale,40.69991,-73.88952,Private room,50,7,17,2019-04-10,1.27,1,66 +24891549,Beautiful Private Bed & Bathroom (no kitchen),40237342,Sharon,Brooklyn,Bedford-Stuyvesant,40.69089,-73.94676,Private room,80,30,10,2018-09-30,0.71,1,37 +24891651,Large 1 bedroom and private bath in Astoria,108302188,Gentry,Queens,Astoria,40.75755,-73.92854,Private room,49,3,8,2019-05-17,0.65,1,18 +24892670,Harlem Vibes,58964906,Louis,Manhattan,Harlem,40.82331,-73.94403,Private room,50,5,1,2018-05-07,0.07,1,0 +24893488,Huge master bedroom W/ private bath in Brooklyn,48418910,Lydia,Queens,Ridgewood,40.70289,-73.91156,Private room,120,2,0,,,2,0 +24893756,Entire suite close to LGA & JFK with free parking,16308032,Christian,Queens,East Elmhurst,40.75891,-73.87819,Entire home/apt,60,1,59,2019-06-03,4.18,1,150 +24894058,Cozy room in south Harlem - 10 mins to Columbia,11022916,Erin,Manhattan,Harlem,40.80808,-73.95259,Private room,45,1,14,2018-10-14,0.99,1,0 +24894476,Large Bedroom in Harlem,15940253,Raimundo,Manhattan,Harlem,40.82582,-73.946,Private room,70,4,3,2019-01-07,0.40,2,0 +24894724,A cozy studio in Chelsea,30558890,Alexander,Manhattan,Chelsea,40.75164,-73.99727,Entire home/apt,120,30,2,2018-12-30,0.21,1,0 +24895943,Beautiful and Spacious UES Gallery Like apartment,51112551,Kenneth,Manhattan,Upper East Side,40.7618,-73.96546,Entire home/apt,375,2,0,,,1,83 +24896472,Spacious Apt. in Bushwick for summer occupancy,116460196,Anoushka,Brooklyn,Williamsburg,40.70704,-73.92903,Private room,75,7,0,,,1,0 +24896533,Charming Room in Spacious Clinton Hill Apartment,1005489,Caroline,Brooklyn,Clinton Hill,40.68409,-73.96467,Private room,70,7,2,2019-06-06,0.88,1,89 +24896938,Beautiful and Spacious Apartment,79651295,Nkem,Queens,Jamaica,40.67819,-73.78919,Entire home/apt,60,1,0,,,4,177 +24899087,"Private room in Ridgewood, near the L line, for 2",140057330,Joey,Queens,Ridgewood,40.69649,-73.90564,Private room,55,1,20,2019-05-19,1.44,7,107 +24906413,Sunny Bushwick apartment,84453766,Allison,Brooklyn,Williamsburg,40.70229,-73.93774,Private room,80,10,1,2018-05-07,0.07,1,0 +24906924,Spacious One Bedroom in Downtown Manhattan,14396470,Ileang,Manhattan,Chinatown,40.71694,-74.00076,Entire home/apt,150,3,0,,,1,0 +24907355,Bushwick with outdoor space!,39190931,Jessica,Brooklyn,Bushwick,40.70202,-73.92675,Entire home/apt,150,28,0,,,1,90 +24908887,Home away from home in Harlem,5074874,Jessica,Manhattan,Harlem,40.80793,-73.95127,Entire home/apt,225,2,3,2018-07-24,0.24,1,6 +24910361,"""The Little House by the Sea""",188328775,Donna,Queens,Neponsit,40.57043,-73.85821,Entire home/apt,200,2,7,2019-07-06,0.55,1,44 +24911170,Renovated Garden Townhouse Apartment,188337220,Fred,Brooklyn,Bedford-Stuyvesant,40.68452,-73.91614,Entire home/apt,99,3,49,2019-07-02,3.63,1,102 +24911227,1-Bed Apt on East River - 1 stop from Manhattan!,17005953,Cassondra,Queens,Long Island City,40.74462,-73.94913,Entire home/apt,110,1,3,2018-07-03,0.23,1,0 +24911468,Gorgeous 2 BR 2 BA Condo in Flushing Chinatown,5962328,Alan,Queens,Flushing,40.76025,-73.8221,Entire home/apt,115,30,1,2019-06-11,1,15,291 +24912129,Fabulous mid century modern apt in Williamsburg,4407432,Antoinette,Brooklyn,Williamsburg,40.72163,-73.95465,Entire home/apt,225,2,9,2019-06-10,0.66,1,120 +24912450,"RahShoeRay Cozy, Comfortable and Accommodating.",181397986,Samantha,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93729,Private room,95,1,21,2019-01-04,1.48,2,260 +24912783,Brooklyn Park Slope Oasis,7065881,Zina,Brooklyn,Park Slope,40.67691,-73.98163,Entire home/apt,139,4,3,2019-05-27,0.24,1,0 +24913445,Bright sunny room in Bushwick with backyard.,7780845,Liset,Brooklyn,Bushwick,40.70269,-73.91778,Private room,65,2,20,2019-06-30,1.57,3,282 +24913510,True NYC soho experience amazing gem.. large space,28823649,Rose,Manhattan,SoHo,40.72432,-74.00195,Entire home/apt,160,1,6,2019-05-25,0.66,3,172 +24914710,Apartamento para viagem NY,188362154,Jordana,Queens,Astoria,40.76623,-73.91279,Private room,150,5,0,,,1,362 +24915372,A true NYC gem!,188365772,Alan,Manhattan,Harlem,40.82307,-73.95447,Entire home/apt,250,3,0,,,1,0 +24915585,"Beautiful, spacious & quiet!",7072861,Ana,Manhattan,Gramercy,40.73714,-73.98827,Entire home/apt,175,4,2,2018-08-06,0.15,1,3 +24915761,Brooklyn Studio with a View,2642222,Michael,Brooklyn,Prospect Heights,40.6813,-73.97449,Entire home/apt,179,2,19,2019-01-06,1.84,1,0 +24916571,Charming 2 Bedroom Private Apartment in Greenpoint,6919899,Cecilia,Brooklyn,Greenpoint,40.72901,-73.94754,Entire home/apt,130,2,34,2019-06-27,3.34,1,129 +24916744,Newly Renovated Full One Bedroom Brooklyn Apt,93359389,David,Brooklyn,East Flatbush,40.65755,-73.92341,Entire home/apt,80,2,18,2019-06-18,1.46,1,39 +24916951,Amazing Bedroom in fantastic apartment in Brooklyn,8629268,Juan,Brooklyn,Bedford-Stuyvesant,40.68037,-73.93821,Private room,44,3,4,2018-07-29,0.28,1,0 +24917079,Spacious Centrally Located 1 Bedroom Apartment,33225521,Kate,Manhattan,East Village,40.72888,-73.99019,Entire home/apt,300,1,8,2019-05-16,0.58,1,16 +24917120,Sunny Village Suite with Private Patio!,50296004,Emily,Manhattan,Greenwich Village,40.73463,-73.99796,Entire home/apt,215,2,18,2019-07-07,1.33,1,38 +24918349,Private Studio Apartment in Lively Crown Heights,188390380,Nicole,Brooklyn,Crown Heights,40.67575,-73.95074,Entire home/apt,100,1,26,2018-08-30,1.91,1,0 +24918572,The Crown,188391102,Alliot,Brooklyn,Crown Heights,40.67442,-73.94096,Entire home/apt,295,4,7,2019-05-10,0.56,2,343 +24919299,Upper Westside studio for two or just you!,128258877,Kristanne,Manhattan,Upper West Side,40.79332,-73.97501,Entire home/apt,100,1,4,2018-10-16,0.29,1,0 +24919725,Shared Open Studio - Floor Space,159154462,Ken,Manhattan,Midtown,40.75722,-73.98162,Shared room,85,1,5,2018-10-18,0.36,2,83 +24919742,South Park Slope House (Aug 5 - 27; 10 day min),134122415,Garry,Brooklyn,Windsor Terrace,40.6604,-73.98316,Entire home/apt,150,10,3,2019-04-25,0.25,1,23 +24919764,Thomas's creek,169882061,Keisha,Brooklyn,Bedford-Stuyvesant,40.68518,-73.93682,Entire home/apt,225,2,23,2019-06-24,1.66,1,77 +24921526,Private Room (Front) In A Beautiful Apartment,79651295,Nkem,Queens,Jamaica,40.67733,-73.78826,Private room,80,2,0,,,4,179 +24921584,BIG STYLISH LOFT/ROOM with access in the backyard,34184387,Genevieve,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94924,Private room,75,5,2,2019-01-02,0.16,1,54 +24921735,Huge Master Bedroom In A Very Spacious Apartment,79651295,Nkem,Queens,Jamaica,40.67894,-73.78885,Private room,140,1,1,2018-05-19,0.07,4,177 +24922519,Beautiful brownstone garden apt. w/outdoor,25347213,Hili,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9515,Entire home/apt,110,2,3,2018-06-23,0.23,1,0 +24923524,Rooftop Condo,42931425,Tino,Brooklyn,Flatbush,40.65333,-73.95381,Private room,100,1,0,,,1,0 +24931508,Sunny & Spacious 1 bedroom in Williamsburg,187530856,Baris,Brooklyn,Williamsburg,40.70933,-73.94779,Entire home/apt,265,2,4,2018-10-07,0.29,2,89 +24933154,Super clean and bright cheerful apartment.,11095383,Victor,Brooklyn,Flatbush,40.63074,-73.95849,Entire home/apt,150,4,1,2018-07-18,0.08,1,20 +24933530,Sunny Brooklyn apt. Quick walk to Prospect Park,104051773,Sophie,Brooklyn,East Flatbush,40.65215,-73.95219,Entire home/apt,91,3,4,2019-01-02,0.30,1,12 +24935048,Surrealist Luxury Loft,11949316,Andrea,Manhattan,Chelsea,40.74903,-73.99198,Entire home/apt,795,3,21,2019-06-19,2.56,1,16 +24935780,Broadway Homebase,188518588,James,Manhattan,Hell's Kitchen,40.76189,-73.98991,Entire home/apt,185,10,23,2019-06-26,1.68,1,68 +24936179,"Centrally located, quiet Hell's Kitchen bedroom.",137255181,Michael,Manhattan,Hell's Kitchen,40.76402,-73.98694,Private room,125,4,1,2018-05-13,0.07,1,0 +24937799,nyc studio apartment,37193449,Julie,Queens,Sunnyside,40.74548,-73.91833,Entire home/apt,75,5,0,,,1,0 +24938183,Private rooftop Penthouse heaven,13089912,Leo,Manhattan,East Village,40.7258,-73.97963,Entire home/apt,330,2,3,2019-05-27,0.25,2,22 +24939453,King bedroom w/ private bathroom in gorgeous Loft,1407676,Jessica,Brooklyn,Williamsburg,40.71739,-73.95804,Private room,99,2,0,,,4,159 +24939648,"Cozy, warm and Clean Stay in Flushing!",177156643,Dalila,Queens,Flushing,40.76991,-73.8265,Private room,50,3,24,2019-06-09,1.73,1,153 +24940447,"Charming Harlem Nook /Coin Charmant de Harlem, NYC",62026191,Olivier,Manhattan,Harlem,40.81585,-73.94272,Private room,79,1,67,2019-06-29,4.82,1,78 +24940507,"Massive, sunny Williamsburg apartment w/ backyard",10777921,Johnny & Hala,Brooklyn,Williamsburg,40.71269,-73.94772,Entire home/apt,129,2,8,2019-06-14,0.57,1,0 +24941111,Guest Room with A/C,188556821,Harry And Kelly,Queens,Woodside,40.74337,-73.90405,Private room,40,1,7,2018-06-15,0.50,1,0 +24941609,NY’s Highest End Celebrity Building + Balconies!,65562107,Gina,Manhattan,Tribeca,40.71868,-74.00765,Entire home/apt,1200,5,13,2019-06-15,0.98,1,347 +24942175,Big 2-bdrm / Morgan Ave L Train / Roberta's,36849759,Peter,Brooklyn,Bushwick,40.7022,-73.93165,Entire home/apt,200,2,39,2019-06-17,3.09,2,209 +24942474,"Ideal Brooklyn Room, Spacious Apartment w/Garden",45376603,Carolyn,Brooklyn,Bushwick,40.69495,-73.92075,Private room,41,2,9,2018-09-20,0.64,1,0 +24942569,My new place,182690453,Rafael,Brooklyn,Navy Yard,40.69833,-73.97087,Private room,140,2,37,2019-06-16,2.64,1,157 +24943283,WeLive Wall Street -- 3 Bedroom,159610596,WeWork,Manhattan,Financial District,40.70606,-74.0054,Entire home/apt,295,1,54,2019-06-29,3.95,6,117 +24943484,Waycross Vista Studio Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.64432,-73.90556,Entire home/apt,125,5,6,2019-01-02,0.44,3,90 +24943768,Luxurious Suite Grand Central,168465501,Ian,Manhattan,Murray Hill,40.74929,-73.97827,Entire home/apt,150,30,3,2018-11-23,0.27,4,113 +24943903,Parlor Suite Midtown Manhattan,29100568,Deborah,Manhattan,Theater District,40.76093,-73.98192,Entire home/apt,170,20,1,2018-05-29,0.07,4,0 +24944554,"1 Bed Apartment close to city, Astoria, LIC",1590939,James,Queens,Astoria,40.7588,-73.92566,Entire home/apt,101,10,0,,,1,0 +24945253,Brand new beach front house near JFK (2),187383058,John,Queens,Arverne,40.5872,-73.79567,Entire home/apt,350,2,25,2019-07-07,1.83,2,332 +24945323,Cozy 1 Bedroom on Upper West Side,164724867,Kevin,Manhattan,Upper West Side,40.78922,-73.97398,Entire home/apt,175,2,8,2019-06-02,0.59,1,1 +24945511,Elegance on West Side,48889862,Miki,Manhattan,Harlem,40.79891,-73.9528,Entire home/apt,105,2,42,2019-07-01,3.04,1,115 +24945567,Spacious Sunny Private Bedroom in the Bushwick BK,61980894,Kevin,Brooklyn,Bushwick,40.6954,-73.92596,Private room,54,2,7,2018-11-09,0.54,1,90 +24945710,Hey New Yorkers!,169940010,Sergio,Queens,Ridgewood,40.70126,-73.90231,Private room,90,1,4,2018-07-29,0.28,1,269 +24946871,"Beautiful, spacious & well-lit 1BR (Astoria, QNS)",6636303,Alexander,Queens,Astoria,40.7596,-73.92368,Entire home/apt,125,3,3,2019-06-25,0.26,1,0 +24947076,"3-bedroom sunny, quiet, spacious Williamsburg apt",17344471,Chris,Brooklyn,Williamsburg,40.71698,-73.94224,Entire home/apt,233,6,0,,,2,0 +24948017,VERY BIG APARTMENT IN HARLEM/ENTIRE APARTMENT,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81634,-73.94344,Entire home/apt,400,2,3,2018-10-26,0.24,3,175 +24958209,2 Bedroom Garden Getaway,65903420,Brendan,Brooklyn,Crown Heights,40.66673,-73.96158,Entire home/apt,139,3,43,2019-05-26,3.28,1,68 +24959305,"Bright renovated apartment, quiet Bushwick block!",3440653,Jessica,Brooklyn,Bushwick,40.69493,-73.92276,Entire home/apt,135,3,42,2019-06-24,3.04,1,92 +24960138,"Bright, Winged Tribeca Studio w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71686,-74.00484,Entire home/apt,305,30,0,,,232,6 +24961004,brand new studio in the East Village with roofdeck,1562990,Natalie,Manhattan,East Village,40.72249,-73.982,Entire home/apt,175,7,4,2019-01-03,0.38,1,0 +24961967,BEAUTIFUL LUX STUDIO -AMAZING ENTERTAINMENT SYSTEM,104684975,Studio,Brooklyn,Canarsie,40.64361,-73.90435,Entire home/apt,140,1,1,2018-06-20,0.08,1,178 +24962583,"Great value ,central Manhattan apartment",18767788,Earl,Manhattan,Gramercy,40.7355,-73.98,Entire home/apt,126,2,25,2018-12-15,2.03,1,30 +24962971,Comfortable Bedroom 2 Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.64964,-73.9992,Private room,75,1,13,2019-05-26,0.96,2,68 +24963166,Huge Room in the Middle of Bushwick,94860592,Kayleigh,Brooklyn,Bushwick,40.69992,-73.92235,Private room,62,2,5,2018-09-23,0.36,1,0 +24964123,Quiet room in Prospect Heights,13486673,David,Brooklyn,Prospect Heights,40.67846,-73.97157,Private room,99,2,2,2018-09-28,0.14,3,0 +24965059,C) Cozy Two Beds Wifi near JFK Airport and subways,154128335,Joseph,Queens,Jamaica,40.70071,-73.81282,Private room,50,1,4,2019-06-30,4,4,337 +24965233,"Cute, renovated 2 bedroom Apt. in East Village",89608382,Meghan,Manhattan,East Village,40.72522,-73.98205,Entire home/apt,224,3,4,2019-01-01,0.29,1,7 +24965423,Spacious Private Suite in a Brooklyn Brownstone,4219594,Jenna,Brooklyn,Bedford-Stuyvesant,40.68296,-73.9358,Private room,95,2,3,2018-10-08,0.22,1,11 +24965929,Bright 1-Bedroom Gem in Fort Greene,1180925,Mark,Brooklyn,Fort Greene,40.69476,-73.97224,Entire home/apt,108,3,5,2019-06-26,0.36,3,99 +24966197,"Quiet, private room (Hell's Kitchen/West Midtown)",28808740,Robert,Manhattan,Hell's Kitchen,40.76491,-73.98956,Private room,94,3,11,2019-06-23,0.78,2,0 +24966304,Jul Discount! Private Flat (with Patio!) in NYC,188741104,Susan,Manhattan,Harlem,40.80875,-73.94238,Entire home/apt,160,31,48,2019-06-30,3.44,4,117 +24967000,Gorgeous apartment with access to all #2,175116422,Karilyn,Staten Island,Grant City,40.57856,-74.1107,Entire home/apt,72,3,11,2019-03-24,1.05,3,333 +24967765,Modern 2 bedroom Upper East Side apartment.,103152379,Kate,Manhattan,Upper East Side,40.76195,-73.96056,Entire home/apt,199,3,22,2019-07-01,1.58,1,329 +24968131,Private Room in peaceful town,7989399,Esin,Queens,Sunnyside,40.73891,-73.92642,Private room,50,3,3,2018-10-10,0.29,2,112 +24968602,Brooklyn room in the perfect location.,7894144,Anthony,Brooklyn,Williamsburg,40.71486,-73.95705,Private room,75,2,8,2018-06-25,0.58,1,0 +24968879,Studio Apartment in Astoria - Best Location!,50770601,Diana,Queens,Astoria,40.76871,-73.91839,Entire home/apt,169,1,8,2019-04-24,0.62,5,297 +24968926,bushwick’s cozy nook,22010249,Jose,Brooklyn,Bushwick,40.68973,-73.91172,Private room,75,3,36,2019-07-07,3.40,2,292 +24969653,"Cozy, Clean Private Mini Studio in New York City",188741104,Susan,Manhattan,Harlem,40.80954,-73.94257,Entire home/apt,85,31,49,2019-07-04,3.51,4,119 +24969822,Modern Apartment in Long Island City,137575565,Jamesdean,Queens,Long Island City,40.7563,-73.93402,Private room,75,3,2,2018-06-29,0.16,1,0 +24970116,One-bedroom unit in Rego Park,188773665,Yan,Queens,Rego Park,40.72038,-73.86311,Private room,99,1,55,2019-07-03,3.92,1,4 +24970249,Peaceful&Sun filled 2BR&private bathroom near NYC,12931469,Margarita,Staten Island,Great Kills,40.54901,-74.142,Private room,120,2,4,2018-11-19,0.29,3,86 +24970373,Studio apartment; close to tourist attractions,58391499,Sia,Manhattan,Civic Center,40.71175,-74.00763,Entire home/apt,200,2,4,2018-12-31,0.45,1,0 +24970711,Budget Basement,188783370,Faraz,Queens,Flushing,40.73968,-73.80601,Private room,80,1,9,2018-08-10,0.65,1,0 +24970982,Central & Comfortable 1BR Brownstone Apartment,4303181,Veronique,Brooklyn,Carroll Gardens,40.68352,-73.9999,Entire home/apt,150,2,37,2019-06-25,2.93,1,100 +24973698,"Colorful, quiet, private room near LaGuardia/NYC",2424887,Briyah,Queens,Ditmars Steinway,40.76729,-73.89166,Private room,55,1,36,2019-07-01,3.11,1,179 +24976971,1 bedroom apartment on Columbus Avenue,76104209,Rated,Manhattan,Upper West Side,40.7936,-73.96642,Entire home/apt,180,30,0,,,33,364 +24978091,"Cozy, newly furnished apartment in the heart of NY",14759219,Alexandra,Manhattan,Murray Hill,40.74793,-73.97958,Entire home/apt,120,5,2,2018-06-04,0.15,1,0 +24978251,Cozy private room in luxury apartment,3673226,Linda,Manhattan,East Harlem,40.78723,-73.94949,Private room,90,3,5,2019-03-25,0.37,1,0 +24983084,Triple Mint Townhouse in the heart of West Village,5719667,Alexander,Manhattan,West Village,40.73722,-74.00263,Entire home/apt,1500,3,15,2019-06-24,1.21,1,54 +24983373,10 mins from JFK. Smoking okay.,69700229,Shatese,Queens,Jamaica,40.68067,-73.77949,Private room,40,1,70,2019-07-03,5.07,3,90 +24985440,"CHEAP ROOM IN QUEENS, CLOSE TO SUBWAY STATION",463061,Lise,Queens,Woodhaven,40.69642,-73.8502,Private room,42,3,5,2018-08-11,0.36,2,281 +24987685,Short Stay NearJFK.,94713722,Joy,Queens,St. Albans,40.69012,-73.75349,Private room,55,2,8,2019-04-23,0.76,4,122 +24987915,Stylish Apartment 3 Blocks from Central Park,10972311,Thomas,Manhattan,East Harlem,40.79438,-73.94463,Entire home/apt,180,10,13,2019-05-27,0.92,1,11 +24988189,Da Sanctum,26796335,Guillermo,Manhattan,Upper West Side,40.79891,-73.96446,Entire home/apt,225,2,29,2019-06-30,2.21,1,35 +24990534,Maurice’s Penthouse,3530446,Maurice,Brooklyn,Crown Heights,40.67604,-73.95071,Entire home/apt,150,3,27,2019-07-03,2.09,3,288 +24991133,From home to home,91554527,Aboubakar,Bronx,Highbridge,40.83413,-73.92918,Private room,50,3,23,2019-04-07,1.64,1,188 +24992418,Cute & Cozy Studio in Chelsea!,9711035,Madison,Manhattan,Chelsea,40.7464,-73.99701,Entire home/apt,170,28,4,2019-06-08,0.32,1,61 +24992558,ENTIRE Spacious Brownstone Apartment (UNFURNISHED),12633660,Benjamin,Brooklyn,Carroll Gardens,40.67899,-74.00089,Entire home/apt,50,3,5,2019-05-31,0.63,1,0 +24992835,"**FULL FLOOR - 3 BEDRMS, Times Sq/Restaurant Row**",157402346,Victor,Manhattan,Hell's Kitchen,40.76201,-73.99099,Entire home/apt,350,2,60,2019-06-17,4.28,1,224 +24993467,"Prime Williamsburg: 3 Bed, 2 Bath Luxury Apartment",143739618,Nicholas,Brooklyn,Williamsburg,40.71649,-73.95475,Entire home/apt,415,3,1,2018-05-27,0.07,1,0 +24993686,"""Cozy Retreat"" in North Crown Heights",188947623,Priscilla,Brooklyn,Crown Heights,40.66998,-73.94702,Entire home/apt,112,2,50,2019-07-05,3.93,1,0 +24993713,"Stylish, clean & quiet 1 bdr apt in Manhattan",27793336,Helen Maria,Manhattan,East Harlem,40.78877,-73.94647,Private room,170,2,5,2018-09-24,0.50,1,0 +24995099,PLACE NEXT TO THE BEACH,177860344,Maria,Brooklyn,Brighton Beach,40.57569,-73.95892,Private room,80,3,1,2018-09-30,0.11,1,178 +24995291,"Authentic, downtown Manhattan loft condo",188964841,Leslie,Manhattan,East Harlem,40.80083,-73.93778,Entire home/apt,300,1,5,2019-06-14,0.57,1,352 +24995898,Private room Brooklyn,188969229,Auri,Brooklyn,Bushwick,40.68845,-73.91878,Private room,60,1,50,2019-06-27,3.61,1,91 +24996332,Master Bedroom with Full Bath & Manhattan View,129743937,Win,Queens,East Elmhurst,40.75809,-73.8693,Private room,54,1,135,2019-07-02,9.74,2,48 +25002172,Private room in the Bronx for females & couples.,188218993,Suleyma,Bronx,Kingsbridge,40.8801,-73.89709,Private room,46,1,68,2019-06-21,4.89,1,63 +25004276,1 sunny bedroom in Parkchester,189022543,Anne,Bronx,Parkchester,40.83688,-73.85584,Private room,80,2,6,2018-11-01,0.44,1,0 +25005483,3-bdrm Newly Renovated Townhouse.,139756559,Maria,Staten Island,Great Kills,40.54639,-74.13706,Entire home/apt,180,30,9,2018-10-09,0.79,2,130 +25005877,"Designer Studio / 1BR in Williamsburg, Nice Views",108160091,Dasha,Brooklyn,Williamsburg,40.70996,-73.96129,Entire home/apt,168,10,3,2018-10-31,0.22,3,284 +25006193,Barclays Place - An Idyllic One Bedroom Apartment,189036764,Shravan,Brooklyn,Park Slope,40.68375,-73.97839,Entire home/apt,400,2,0,,,1,32 +25007110,Private Bedroom (Back) In A Beautiful Apartment,79651295,Nkem,Queens,Jamaica,40.67901,-73.78876,Private room,100,2,0,,,4,179 +25007742,Postmodern Studio,189047392,Dylan,Brooklyn,Clinton Hill,40.69047,-73.9605,Private room,97,1,23,2019-06-03,1.68,1,189 +25010171,sunshine,159027993,Michelle,Queens,Flushing,40.76106,-73.81279,Private room,48,4,11,2019-05-28,0.79,2,168 +25011664,Peace and quiet in the hustle and bustle,189075482,Chloe,Brooklyn,Cypress Hills,40.67901,-73.89224,Entire home/apt,95,1,22,2019-01-03,1.61,3,126 +25011733,"Trendy, light-filled apartment in Lower East Side.",17842138,Anna,Manhattan,Chinatown,40.71529,-73.99088,Entire home/apt,170,1,11,2019-06-24,0.78,1,24 +25011804,"NYC SkyLoft on Central Park, balcony w/ city view",54228386,Stefani,Manhattan,East Harlem,40.79844,-73.94747,Private room,125,1,81,2019-07-02,6.64,1,29 +25012058,"Lovely room with private terrace, ensuite",11307033,Devon,Manhattan,East Village,40.72561,-73.97622,Private room,175,1,41,2019-05-17,3.14,2,13 +25012767,Private Cozy Bedroom with Patio,161659518,A,Manhattan,Kips Bay,40.74153,-73.9797,Private room,80,30,3,2018-07-31,0.23,1,0 +25012966,Comfy quiet 2BR in Manhattan 25mins to Time-square,9177778,Kana,Manhattan,Lower East Side,40.71339,-73.98684,Entire home/apt,139,3,47,2019-06-23,3.45,1,28 +25013656,Stylish Downtown Apt. (Between Nolita + LES.),4552628,Umber,Manhattan,Chinatown,40.71329,-73.99602,Entire home/apt,162,2,4,2018-06-24,0.28,1,0 +25014162,Bright and spacious private bed-and bathroom!,18718315,Gigi,Brooklyn,Bedford-Stuyvesant,40.69197,-73.92795,Private room,75,4,25,2019-06-29,2.26,1,249 +25015496,"5min from JFK airport, Train, Casino, Racetrack",189108951,Doris,Queens,South Ozone Park,40.66954,-73.80601,Entire home/apt,93,2,48,2019-06-22,3.47,1,316 +25015511,Humble Home in Harlem,159009468,Jay,Manhattan,Harlem,40.81444,-73.94385,Private room,99,7,10,2018-12-24,1.29,1,0 +25017403,Glamping Van,10407935,Meng,Manhattan,Nolita,40.72238,-73.99466,Entire home/apt,89,1,15,2019-05-27,1.12,8,34 +25017424,Magical Brooklyn townhouse room fit for a wizard,189075482,Chloe,Brooklyn,Cypress Hills,40.67988,-73.89201,Private room,85,1,17,2019-06-10,1.64,3,67 +25018204,"Paradise Garden, Spa, Steam & Massage Table #10299",172611460,Rasmus,Manhattan,Harlem,40.82263,-73.95181,Entire home/apt,2500,3,14,2019-06-24,1.38,2,150 +25024676,"Cozy, tranquil bedroom steps from Central Park B",152195388,Rachel,Manhattan,Upper West Side,40.78371,-73.97358,Private room,105,20,5,2019-03-25,0.39,2,64 +25025092,"Scandinavian ""hygge"" in Bed Stuy Brooklyn",127560,Anita,Brooklyn,Bedford-Stuyvesant,40.68429,-73.92952,Entire home/apt,100,4,33,2019-06-25,2.55,1,23 +25025533,"Luxe Large Studio Apt with Rooftop, Doorman, & Gym",6319849,Charles,Manhattan,Hell's Kitchen,40.75678,-73.99357,Entire home/apt,198,9,2,2019-01-31,0.28,1,12 +25026993,Single room in Clinton Hill brownstone,64426364,Micaela,Brooklyn,Bedford-Stuyvesant,40.68593,-73.95702,Private room,48,7,6,2019-06-23,0.45,1,0 +25027222,Safe 'n Handsome 2,133123832,Parmenides,Manhattan,Upper West Side,40.78802,-73.96926,Entire home/apt,117,30,0,,,3,200 +25028952,Charming studio in Brooklyn,178038608,Tal,Brooklyn,Clinton Hill,40.69365,-73.96511,Entire home/apt,110,7,2,2018-07-20,0.14,1,125 +25029794,East Village gem,17145227,Ola,Manhattan,East Village,40.72458,-73.98822,Entire home/apt,206,5,3,2019-01-02,0.22,1,12 +25029982,Cozy Studio in Greenwich Village,4246574,Andrea,Manhattan,Greenwich Village,40.72852,-74.00151,Entire home/apt,164,5,0,,,1,0 +25030090,Bushwick bedroom w/ private bath (Jefferson Stop),2533755,Alex & Dave,Brooklyn,Bushwick,40.70388,-73.92529,Private room,90,1,74,2019-06-24,5.58,1,48 +25030446,SoBecaTown 1 Bedroom,6529128,Kendra,Manhattan,Tribeca,40.71854,-74.00352,Entire home/apt,220,3,15,2019-06-21,1.21,1,84 +25030760,Small and cozy room in awesome place,8076786,Suri,Brooklyn,Sunset Park,40.65907,-73.99887,Private room,150,1,1,2019-03-19,0.27,3,365 +25031116,Bedroom in Bushwick.,189224482,Amanda,Brooklyn,Bushwick,40.68569,-73.9143,Private room,45,7,0,,,1,0 +25031182,Comfy bedroom in heart of Lower East Side,2830216,Drew,Manhattan,Lower East Side,40.71937,-73.99202,Private room,65,7,9,2018-11-17,0.71,1,0 +25031344,"Cozy Studio in East Village, close to everything",28660089,John,Manhattan,East Village,40.72547,-73.98401,Entire home/apt,170,2,7,2019-05-12,0.52,1,0 +25031387,2 Bedroom 1 Bath by NYC Train and Major Highways,72517332,Monique & Bianca,Bronx,Kingsbridge,40.88485,-73.89756,Entire home/apt,399,2,25,2019-06-09,1.79,1,356 +25031793,East Village Penthouse,1273920,Tashi,Manhattan,East Village,40.72606,-73.97913,Entire home/apt,175,3,2,2018-10-07,0.15,1,0 +25032319,Cozy Convenient 2-Bed GARDEN APT w/Central Heat/AC,30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68778,-73.90748,Entire home/apt,99,3,34,2019-06-21,2.58,2,119 +25032957,Historic Brooklyn Heights Apt,1030249,Garth,Brooklyn,Brooklyn Heights,40.69924,-73.99303,Entire home/apt,185,7,10,2019-07-04,0.87,1,125 +25033384,Cozy and renovated one bedroom apartment,99556266,Mariano,Manhattan,East Harlem,40.79725,-73.93311,Entire home/apt,150,2,33,2019-06-14,2.63,2,304 +25033659,Brooklyn Hidden Oasis.,64542737,Ana,Brooklyn,East New York,40.6724,-73.87641,Entire home/apt,175,3,10,2019-06-17,0.74,1,292 +25033991,5min to Subway★20min to Manhattan★Large Bklyn Apt!,189249070,Ness,Brooklyn,Bedford-Stuyvesant,40.68061,-73.93642,Entire home/apt,189,30,24,2019-06-10,1.82,1,99 +25034086,Clean1,156505456,John,Brooklyn,East New York,40.66154,-73.88874,Private room,51,3,13,2019-06-22,0.97,13,180 +25034108,"Large Manhattan Apt 3 BED/2 FULL BATH, Midtown NYC",179014177,Masako,Manhattan,Murray Hill,40.74523,-73.97334,Entire home/apt,398,5,3,2018-07-26,0.25,1,12 +25034878,Upper East Side Getaway! Lots of space!,169960804,Sanah,Manhattan,Upper East Side,40.77277,-73.94965,Entire home/apt,175,1,7,2018-10-30,0.51,1,0 +25036166,BK NEST-Across Barclays & trains/City 10 mins away,187103481,Carol,Brooklyn,Park Slope,40.68241,-73.97719,Entire home/apt,160,2,39,2019-06-21,3.02,1,246 +25042316,Nikki Welcomes you! Private parking space!,112142263,Nicole,Brooklyn,Canarsie,40.63816,-73.91443,Entire home/apt,65,1,119,2019-07-07,9.13,1,61 +25045213,Private Bedroom in 2-bed/New Full-Service Building,3346513,Sorel,Brooklyn,Downtown Brooklyn,40.68984,-73.98416,Private room,130,2,38,2019-06-28,2.73,2,103 +25047309,"The Awesome ,XL Flat",2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69401,-73.94785,Entire home/apt,96,2,39,2019-04-22,2.88,3,237 +25047693,Queens Home Close to Major Airports & Manhattan,189356812,Odit (Andy),Queens,Richmond Hill,40.68834,-73.82624,Entire home/apt,89,3,29,2019-07-01,2.52,1,313 +25048250,Private Bedroom in large 2 bedroom 1100sf apt,95038818,Miho,Brooklyn,Prospect Heights,40.67757,-73.97017,Private room,70,1,42,2019-06-16,3.01,1,163 +25048895,Spacious beautiful Bed Stuy duplex with garden,8901437,Jerome,Brooklyn,Bedford-Stuyvesant,40.68441,-73.9401,Entire home/apt,99,4,3,2019-01-23,0.23,1,0 +25048962,2 Bedroom SOHO Loft,1722340,Natalia,Manhattan,SoHo,40.72373,-74.00552,Entire home/apt,450,2,0,,,1,164 +25049092,Full apt. by Columbia Univ & Subway in Manhattan,46817579,Mihyun,Manhattan,Harlem,40.82996,-73.9449,Private room,69,7,6,2018-12-10,0.53,1,156 +25049405,Loft with View of the Park,189369825,Mary,Manhattan,Tribeca,40.71612,-74.01054,Entire home/apt,500,2,1,2018-07-30,0.09,1,363 +25051166,NEAR COLUMBIA PRESBYTERIAN HOSP- Students*Visitors,25237492,Juliana,Manhattan,Washington Heights,40.84115,-73.94095,Private room,50,30,2,2019-02-06,0.17,34,311 +25053445,Brooklyn Heights Oasis,106436589,Wendy,Brooklyn,Brooklyn Heights,40.69915,-73.9962,Private room,120,1,18,2019-06-23,1.42,2,75 +25054120,DREAMY! Huge + sunny mid-century apt with balcony,8440,Michelle,Brooklyn,Flatbush,40.6397,-73.96554,Entire home/apt,197,4,10,2019-05-18,0.78,1,228 +25054951,NO LONGER AVAILABLE SORY,70120241,Darren,Manhattan,Upper West Side,40.79629,-73.96523,Entire home/apt,225,59,0,,,1,358 +25055293,Beautiful studio with sleeping loft in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.70498,-73.90023,Entire home/apt,105,2,47,2019-07-07,3.47,3,95 +25055376,Chic & Cozy Apartment with Balcony,133658348,Tiffany,Manhattan,Harlem,40.8067,-73.94481,Entire home/apt,170,2,8,2019-01-01,0.59,1,35 +25055498,Room 6 - Comfy Bed in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.6429,-73.96877,Private room,68,2,38,2019-07-02,2.73,6,85 +25056684,Spacious Studio in the Hamilton Heights,129823499,Waleed,Manhattan,Harlem,40.81931,-73.956,Entire home/apt,110,7,0,,,1,0 +25057086,Beautiful 1-bedroom apartment in the West Village,19430913,Isabell,Manhattan,West Village,40.73058,-74.0021,Entire home/apt,200,3,6,2018-11-27,0.45,1,0 +25057198,Entire True Two-Bedroom Steps From Central Park!,16205855,Ali,Manhattan,Upper West Side,40.79282,-73.97353,Entire home/apt,360,6,0,,,1,0 +25058563,Art Studio by the Park,13583715,Mona,Manhattan,Upper East Side,40.77788,-73.96114,Entire home/apt,165,30,4,2018-06-27,0.29,1,203 +25058903,Sunny and Charming 1BR Upper East Side,143420714,Kit,Manhattan,Upper East Side,40.77017,-73.95365,Entire home/apt,200,5,10,2019-05-04,0.82,1,224 +25061086,The Art House,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68244,-73.93908,Entire home/apt,265,2,3,2018-12-02,0.29,4,114 +25069823,Riverside Drive Condo with a View,69866875,Georgina,Manhattan,Harlem,40.83298,-73.948,Private room,100,7,1,2018-05-15,0.07,1,0 +25070554,Tribeca Luxury Doorman Apartment with Park Views,24069,YuJin,Manhattan,Tribeca,40.71809,-74.01205,Entire home/apt,140,1,9,2019-03-30,0.64,1,44 +25071113,"Airy, art-filled home in bohemian East Village",104921994,Sunhwa,Manhattan,East Village,40.72718,-73.9843,Entire home/apt,128,30,7,2019-05-16,0.50,1,142 +25071168,1 Bedroom Garden Apt with backyard in Park Slope,150440720,Bruce,Brooklyn,Park Slope,40.67218,-73.97774,Entire home/apt,125,1,40,2019-06-23,2.97,1,335 +25072401,Mia Suite East Village-free Street Parking+wifi,116839989,Ez,Manhattan,East Village,40.73075,-73.98114,Entire home/apt,150,30,59,2019-06-19,4.41,5,207 +25073155,Beautiful one bedroom in the heart of Harlem!,16237288,Etty,Manhattan,Harlem,40.80973,-73.9457,Private room,80,1,23,2019-06-19,1.75,1,323 +25074008,Bdrm 5 Mins from Train w/ Big Backyard + Laundry,80465615,Kenya,Brooklyn,Crown Heights,40.67208,-73.94071,Private room,52,1,2,2018-08-07,0.16,1,0 +25074072,"Family Gather + 5 bedrooms 3 full baths 2 floors",49950511,Daveth,Brooklyn,East Flatbush,40.64351,-73.95167,Entire home/apt,350,4,32,2019-07-01,2.63,1,69 +25075209,Bright New Apt in Heart of Williamsburg!,31906423,Mike,Brooklyn,Williamsburg,40.71869,-73.95487,Entire home/apt,129,2,5,2018-07-29,0.36,1,0 +25075529,Comfy cozy studio in LES,164668733,Amalia,Manhattan,East Village,40.72228,-73.98584,Entire home/apt,125,5,3,2018-08-19,0.24,1,0 +25076765,Spacious Master Bedroom in Williamsburg,168180986,Evan,Brooklyn,Williamsburg,40.7191,-73.94408,Private room,100,3,8,2018-12-25,0.61,1,0 +25077177,"PRIVATE, Safe, TIMES SQUARE, Lovely Apt w/ Garden",4482351,Zoey,Manhattan,Hell's Kitchen,40.75996,-73.99223,Entire home/apt,140,5,15,2019-06-13,1.11,2,7 +25077481,Plant Vibes Private Bedroom,2846279,Nick & Vance,Brooklyn,Bedford-Stuyvesant,40.68791,-73.92256,Private room,45,2,61,2019-07-04,4.38,1,92 +25078650,A great place to crash.,21938126,Reenie,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94444,Private room,70,2,11,2019-06-14,0.80,2,20 +25080097,•5 mins to Manhattan super cozy•,128793815,Atthaphon,Brooklyn,Williamsburg,40.72015,-73.96117,Private room,75,5,2,2019-05-05,0.15,4,0 +25080137,Sun drenched loft like space with private yard,15820708,Arlene,Brooklyn,Williamsburg,40.70987,-73.94222,Private room,110,3,15,2019-06-23,1.13,2,254 +25082230,Great Space for Business or Pleasure,189604966,Elvis,Bronx,Schuylerville,40.83022,-73.83286,Private room,90,2,1,2018-10-02,0.11,1,35 +25082325,"LES - Quiet, Comfy, and Large Private Bedroom",1262195,Brittany,Manhattan,Lower East Side,40.71325,-73.98511,Private room,100,1,32,2019-07-04,2.51,1,0 +25083937,Feel like HOME in the heart of NYC at UNION Sq,46590745,Kirill,Manhattan,Gramercy,40.73646,-73.98853,Entire home/apt,176,3,58,2019-06-24,4.17,1,67 +25084002,Private Living Room - NOT Shared With Others,24916607,Maggy S,Manhattan,Harlem,40.8163,-73.95262,Shared room,90,1,37,2019-04-18,2.75,1,60 +25085133,The dreamed aparment- World Trade Center area,704043,Claudia,Manhattan,Financial District,40.70907,-74.01371,Private room,89,3,5,2018-09-11,0.38,1,0 +25085427,Amazing Studio step away from time square /71B,48146336,Irina,Manhattan,Hell's Kitchen,40.76243,-73.99316,Entire home/apt,120,30,4,2019-06-30,0.35,20,342 +25085816,Master bedroom in E Harlem with balcony&Doorman,77716287,Marwa,Manhattan,East Harlem,40.80173,-73.94035,Private room,65,2,11,2019-05-09,0.83,1,365 +25085980,DowntownViewAccomodation,86351586,L,Manhattan,Harlem,40.81936,-73.95788,Shared room,95,1,2,2018-09-30,0.15,1,89 +25086038,"GARDEN UTOPIA, UES; SUPERIOR LOCATION & AMENITIES",188613698,Joey,Manhattan,Upper East Side,40.78074,-73.94811,Entire home/apt,180,3,10,2019-06-26,0.86,1,340 +25090268,❤ Bushwick / Room with SmartTV & Private bathroom,81274648,Ming,Brooklyn,Bushwick,40.69787,-73.93091,Private room,60,2,36,2019-06-22,2.61,4,64 +25097211,Private Bedroom in a safe neighborhood in NYC,28229044,Bruno,Queens,Astoria,40.76723,-73.92317,Private room,80,3,0,,,1,0 +25098068,New unit Amazing apartment on 5th ave 3 bdr #4,134601877,Steven,Manhattan,East Harlem,40.80068,-73.94598,Entire home/apt,191,3,36,2019-07-01,3.17,2,28 +25098701,Spacious Studio in Financial District,20797353,Alexandria,Manhattan,Financial District,40.70791,-74.00529,Entire home/apt,130,3,2,2018-07-22,0.17,1,0 +25100219,Beautiful Williamsburg home with spectacular views,65178149,Jonathan,Brooklyn,Williamsburg,40.71603,-73.96417,Entire home/apt,650,2,6,2018-10-11,0.44,1,0 +25101138,WYNDHAM MIDTOWN 45 NEAR THE UNITED NATIONS,189734742,James,Manhattan,Midtown,40.75184,-73.97302,Private room,175,2,3,2018-11-04,0.31,2,0 +25101192,Relaxing Luminous Room - Perfect For Dog-Lovers!,43095955,Shirley,Manhattan,Harlem,40.82675,-73.9463,Private room,100,2,42,2019-07-06,3.51,1,109 +25101744,Cozy & Bright Studio Close to Subway Station,26555925,Luis,Brooklyn,Bedford-Stuyvesant,40.68057,-73.95249,Entire home/apt,113,3,6,2019-01-28,0.46,1,1 +25103135,"Manhattan NYC, train a min away.",182440062,Juan,Manhattan,Harlem,40.82493,-73.93825,Private room,43,1,6,2019-04-29,0.57,2,90 +25104274,Nice bedroom in Morningside Heights spacious flat,7056141,Magda,Manhattan,Morningside Heights,40.80403,-73.96479,Private room,65,30,0,,,1,39 +25104697,Elegant room in Manhattan only for woman,148833266,Luciana,Manhattan,Upper West Side,40.7997,-73.97073,Private room,95,1,6,2019-03-31,0.58,1,12 +25107333,*NEW-LUXURY Heart of MidWest Step away from TimeSQ,186141107,Lindsey,Manhattan,Hell's Kitchen,40.76097,-73.99959,Entire home/apt,200,4,38,2019-06-24,2.79,1,159 +25108878,Bushwick Garden Apartment,32361189,Raymond And Kymme,Brooklyn,Bushwick,40.68242,-73.90941,Entire home/apt,130,2,53,2019-07-05,3.99,1,122 +25109044,Prime Williamsburg Apt steps from Bedford Ave,444570,Jaymes,Brooklyn,Williamsburg,40.71445,-73.96201,Entire home/apt,275,5,0,,,1,0 +25109931,beautiful holidays,61545139,Lyudmila,Brooklyn,Brighton Beach,40.58033,-73.9657,Private room,100,1,3,2018-10-20,0.22,1,250 +25110301,"Sunny home in Sunnyside, NY",41783072,Daniela & Steven,Queens,Sunnyside,40.7446,-73.92342,Private room,85,1,0,,,1,0 +25110602,Oak St. Gem.,3938536,Jessica,Brooklyn,Greenpoint,40.72717,-73.95688,Private room,100,4,1,2018-06-05,0.08,1,0 +25110742,Cozy 1-Bedroom Apartment in Idyllic Sutton Place,32761501,Jackson,Manhattan,Midtown,40.75581,-73.96605,Entire home/apt,190,1,7,2019-05-07,0.51,1,156 +25112819,Sugar Hill Duplex Apartment,12104046,Paula,Manhattan,Harlem,40.82927,-73.94272,Entire home/apt,150,2,50,2019-06-17,3.69,2,298 +25113126,Panda Pod,6801469,Kelly,Queens,College Point,40.78824,-73.84056,Entire home/apt,65,3,28,2019-06-25,2.13,1,26 +25113440,"1 BR APT amazing location, malls, transportation",189829767,Amro,Queens,Corona,40.73587,-73.8616,Entire home/apt,100,14,0,,,1,37 +25117612,Spacious room in Morningside Heights,147313504,Lorena,Manhattan,Morningside Heights,40.81385,-73.9614,Private room,50,5,0,,,1,24 +25124293,Stylish One-Bedroom Apartment in Park Slope,1546476,Janet,Brooklyn,Park Slope,40.67808,-73.98074,Entire home/apt,120,3,9,2019-05-10,0.67,1,2 +25125914,Perfect Space & Private Garden,16437254,Benjamin,Brooklyn,Clinton Hill,40.68432,-73.96026,Entire home/apt,186,30,2,2019-05-01,0.16,21,342 +25126089,Beautiful Spacious Artist’s Home! * close to train,13964451,Monica,Brooklyn,Bedford-Stuyvesant,40.68316,-73.91637,Entire home/apt,120,2,34,2019-06-23,2.49,1,23 +25126466,"Spacious room, suburban house,20 mn from Manhattan",189610052,Kheira,Queens,Glendale,40.70537,-73.88899,Private room,50,2,19,2019-07-01,1.38,1,337 +25127198,Travellers delight #3,104812805,Amarjit S,Staten Island,Arrochar,40.59644,-74.08279,Private room,32,4,10,2019-05-01,0.73,8,340 +25127253,Amazing Studio in Times Square,38844508,Taylor,Manhattan,Hell's Kitchen,40.75888,-73.99102,Entire home/apt,239,2,17,2019-07-04,1.25,1,7 +25127539,Spacious Private Room near Prospect Park and Train,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65889,-73.95627,Private room,45,31,3,2019-06-09,0.27,2,242 +25127644,One- Bedroom Apartment in the heart of LES.,44887757,Ina,Manhattan,Lower East Side,40.71865,-73.98982,Entire home/apt,159,4,12,2019-06-24,0.89,1,31 +25129958,Summer Rental in Historic Harlem Brownstone,1203954,Emily,Manhattan,Harlem,40.80371,-73.94991,Entire home/apt,130,30,3,2019-03-09,0.22,1,200 +25130960,Williamsburg Brooklyn 2BR Apt. / 5min to L Train,141597248,Osvaldo,Brooklyn,Williamsburg,40.70847,-73.94426,Entire home/apt,107,7,1,2018-06-19,0.08,1,0 +25132414,Bedstuyvesant Apartment,81087558,Eric,Brooklyn,Bedford-Stuyvesant,40.68423,-73.94125,Entire home/apt,75,3,3,2018-11-05,0.22,1,0 +25132598,"Cozy, Bright Morningside Apartment!",18691064,Brendan,Manhattan,Upper West Side,40.80343,-73.96796,Private room,120,4,2,2018-06-09,0.15,1,0 +25132635,"Modern, bright 1 BR Brooklyn apt - Great location!",2300343,Dafna,Brooklyn,Bedford-Stuyvesant,40.68686,-73.95426,Entire home/apt,80,2,8,2019-02-28,0.73,1,0 +25134311,Carnegie City Apartment,189962349,Camille,Manhattan,East Harlem,40.78589,-73.9487,Entire home/apt,250,2,43,2019-06-23,3.11,1,301 +25134727,"Trendy, Large Patio, Near Subway",175513439,Benjamin,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95381,Entire home/apt,217,30,1,2018-07-29,0.09,1,189 +25134894,Massive 4 bed 3 bath Loft in SoHo/Little Italy,189961241,Danny,Manhattan,Little Italy,40.71839,-73.99834,Entire home/apt,699,3,37,2019-06-28,2.92,1,170 +25135206,Stunning Three-Level Loft w/ Roofdeck & Gym,945063,Mike,Brooklyn,Williamsburg,40.71766,-73.95348,Entire home/apt,475,3,0,,,1,12 +25135607,"Quiet, sunny Greenpoint apartment perfect for 4",31612339,Julia,Brooklyn,Greenpoint,40.73675,-73.95443,Entire home/apt,150,5,6,2018-08-29,0.49,1,0 +25135694,Brooklyn Loft,1494472,Shandor,Brooklyn,Navy Yard,40.69823,-73.97357,Entire home/apt,150,21,0,,,2,365 +25135765,The Reading Room: a curated luxury experience,23454048,Ian,Manhattan,Harlem,40.81185,-73.93902,Entire home/apt,225,1,7,2018-08-27,0.52,1,3 +25135772,Comfy one bedroom with backyard,189971299,Karen,Manhattan,Upper West Side,40.8004,-73.96867,Entire home/apt,225,3,23,2019-06-30,1.80,1,283 +25137152,Bright 1 Bedroom in the East Village,189982777,Cloe,Manhattan,East Village,40.72266,-73.98148,Entire home/apt,140,4,49,2019-07-03,3.58,1,51 +25137366,Charm and cozy close to NY and La Guardia Airport,19614644,Gerusa,Queens,Ditmars Steinway,40.77598,-73.92252,Private room,49,2,25,2019-05-19,1.83,1,4 +25137887,Beach front Dublex near jfk,187383058,John,Queens,Arverne,40.58809,-73.79387,Entire home/apt,450,2,32,2019-07-07,2.35,2,315 +25138149,√ LUXURY NYC LOFT √ | Spa Amenities | Smart Home,3129460,Feliz,Manhattan,East Harlem,40.79523,-73.94231,Entire home/apt,200,3,24,2019-06-29,1.94,1,337 +25138442,Cozy Private studio-apartment,189981848,Irina,Manhattan,East Harlem,40.79714,-73.93685,Entire home/apt,112,1,66,2019-06-23,4.78,1,16 +25138975,Charming Sunny 2-bedroom oasis in Rockaway Beach,81754218,Yaffa,Queens,Rockaway Beach,40.58794,-73.81579,Entire home/apt,89,30,34,2019-06-22,2.64,1,84 +25140000,2 Rooms + Bath in Spacious Apartment w/ Backyard,4281300,Alex,Brooklyn,Williamsburg,40.71572,-73.94161,Private room,209,1,21,2019-06-30,3.07,3,15 +25140344,Rare artist loft with private terrace,5758101,Laure-Anne,Brooklyn,Williamsburg,40.70376,-73.93519,Entire home/apt,300,2,13,2019-06-30,1.01,1,365 +25140559,BEAUTIFUL PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.76798,-73.92323,Private room,49,1,41,2019-06-17,2.96,9,322 +25140787,COUSY PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.77002,-73.92332,Private room,50,1,27,2019-06-23,2.02,9,363 +25142331,MODERN & CHIC 2 Bedroom Loft**Central Park/Musuems,190028461,Jeff & Elita,Manhattan,Upper West Side,40.78209,-73.97598,Entire home/apt,294,4,34,2019-06-10,2.48,1,179 +25145947,"1,100 sq. ft. apt. Penthouse with private deck!",104386567,Rich,Manhattan,Upper East Side,40.77495,-73.94832,Entire home/apt,450,1,0,,,1,173 +25153614,The Crown Master,188391102,Alliot,Brooklyn,Crown Heights,40.67431,-73.94065,Entire home/apt,150,5,2,2018-08-29,0.15,2,364 +25153931,Large Bedroom Apartment in Prime Location,31665801,Harry,Manhattan,East Village,40.73179,-73.98794,Entire home/apt,89,4,16,2019-05-28,1.36,2,17 +25155248,Clean and spacious 2 bedroom w/ separate entrance,35108251,Belinda,Brooklyn,East New York,40.67018,-73.88867,Entire home/apt,79,3,37,2019-06-29,2.73,2,124 +25155302,Spacious Flatbush Studio,46200692,Kathryn,Brooklyn,East Flatbush,40.65467,-73.94967,Entire home/apt,50,2,8,2018-11-11,0.61,1,0 +25155346,Private Bedroom in UES New York shared apartment.,4818484,Michael,Manhattan,Upper East Side,40.76996,-73.9539,Private room,70,2,24,2019-06-19,2.32,1,5 +25156280,Lovely & Chic 2BR Astoria Row House,5637331,Amit & Sofie,Queens,Astoria,40.76182,-73.90622,Entire home/apt,118,3,1,2018-08-11,0.09,2,0 +25156498,Charming Loft apartment with great light!,54469570,Trina,Manhattan,Chelsea,40.749,-73.99466,Private room,75,2,2,2018-06-05,0.15,1,0 +25157160,"Helles, charmantes Zimmer in Brooklyn-WG",4876817,Kitti,Brooklyn,Crown Heights,40.67589,-73.95525,Private room,41,20,1,2018-06-12,0.08,1,0 +25157541,Great home for Families and Couples,137146680,Leticia,Queens,Glendale,40.69988,-73.89504,Entire home/apt,190,3,15,2019-07-01,1.76,1,36 +25157795,Spacious 1-bedroom apartment in prime Midtown East,4294646,Maggie,Manhattan,Midtown,40.75377,-73.96609,Entire home/apt,90,30,4,2019-07-01,0.35,1,0 +25158455,Brooklyn Duplex with Private Deck,4111662,Roberta,Brooklyn,Park Slope,40.67155,-73.98373,Entire home/apt,195,10,4,2019-03-19,0.34,1,15 +25160226,Fully Private Two-Bedroom Duplex House,158566993,Nnenna,Brooklyn,East Flatbush,40.64333,-73.92526,Entire home/apt,150,2,4,2019-01-07,0.31,1,106 +25161052,~ Brooklyn Haven of Magic ~,3593395,Aviva,Brooklyn,Bedford-Stuyvesant,40.68813,-73.94045,Private room,47,2,4,2019-01-01,0.31,1,0 +25161242,*Newly Renovated* Guest Suite w/ Private Entrance,150773114,Liz,Queens,Middle Village,40.71893,-73.8761,Entire home/apt,86,1,110,2019-07-03,8.27,1,174 +25161732,"Private Master’s bedroom in Gramercy, Manhattan",134513664,Charissa,Manhattan,Gramercy,40.73568,-73.97998,Private room,160,2,11,2019-06-29,0.87,1,9 +25163519,Fabulous brand new 1BR across park in Manhattan,40875021,Scott,Manhattan,East Harlem,40.79372,-73.93552,Entire home/apt,150,1,18,2019-06-22,1.32,3,355 +25165611,New Yorker Room - 10 mins to Williamsburg/LES/City,1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69317,-73.93003,Private room,45,1,42,2019-07-01,3.19,3,106 +25166331,Heart of the city,47580042,Leonardo,Manhattan,Theater District,40.75971,-73.98639,Entire home/apt,337,4,0,,,1,83 +25167654,Charming sunny Bushwick bedroom,3667601,Olivier,Brooklyn,Bushwick,40.68942,-73.90918,Private room,78,2,51,2019-06-29,3.74,1,9 +25167819,The Consuello2,148130354,George,Brooklyn,Bedford-Stuyvesant,40.68456,-73.92489,Entire home/apt,169,3,11,2018-12-31,0.93,2,0 +25168638,Close to Manhattan and 5 minutes to LGA,415605,Pamela,Queens,East Elmhurst,40.76161,-73.89026,Entire home/apt,169,4,19,2019-04-11,1.40,1,128 +25168678,Cozy Room Near Lincoln Center,22029264,Yangbing,Manhattan,Upper West Side,40.77419,-73.9872,Private room,86,2,1,2018-06-15,0.08,1,0 +25169866,"Large 1BR Apt, Ground Floor w/ High Ceilings in EV",19002326,Joe,Manhattan,East Village,40.73153,-73.98515,Entire home/apt,350,2,0,,,1,0 +25172224,"Cozy loft in greenpoint, 2 stops from Manhattan !!",182363374,Jimmy,Brooklyn,Greenpoint,40.72613,-73.95676,Private room,99,1,41,2019-06-26,2.96,7,54 +25180572,Beautiful Cozy Studio Apt. UWS,119609345,,Manhattan,Upper West Side,40.77701,-73.97667,Entire home/apt,180,4,0,,,1,0 +25180598,Cozy private room in Williamsburg 2 stops to city,182363374,Jimmy,Brooklyn,Greenpoint,40.72754,-73.95674,Private room,105,1,24,2019-03-27,1.77,7,32 +25182363,First floor #7,151084261,Angie,Brooklyn,Williamsburg,40.71901,-73.94978,Private room,85,30,7,2018-07-16,0.53,6,337 +25183760,Sonder | Hanover Square | Calm 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.7052,-74.00961,Entire home/apt,222,29,0,,,96,334 +25184077,Charming Apartment in the Heart of East Village,14654770,Mariaval,Manhattan,East Village,40.72759,-73.98047,Private room,97,3,6,2018-07-15,0.44,1,0 +25184175,Sophisticated 1BR in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70493,-74.0065,Entire home/apt,219,29,0,,,96,282 +25184439,Sonder | Hanover Square | Artsy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70375,-74.00807,Entire home/apt,232,29,1,2018-11-10,0.12,96,299 +25184591,❤ NYC/Bushwick New Private Room Size Queen ❤,81359949,Skarly & Ming,Brooklyn,Bushwick,40.70001,-73.92595,Private room,40,2,31,2019-06-21,2.31,2,36 +25186915,Charming Room by the Pier,5608167,Rhianna,Brooklyn,Red Hook,40.67835,-74.01394,Private room,100,1,12,2018-11-02,0.88,1,8 +25187314,Large 1 Bedroom 2 Blocks from Central Park,65633521,Adam,Manhattan,Harlem,40.80142,-73.9575,Entire home/apt,100,2,9,2019-02-20,0.66,1,0 +25187461,Sunny Apartment @ Luxury Bldg in FiDi!,96712147,Eva,Manhattan,Financial District,40.70465,-74.00762,Entire home/apt,400,2,7,2019-03-10,0.57,2,0 +25187576,"100% Private & A/C! +Bathroom + 1 Bedroom JFK & LGA",23479368,Karan,Queens,South Ozone Park,40.67425,-73.82018,Private room,69,1,78,2019-07-01,5.92,1,79 +25187986,COZY ONE BEDROOM APARTMENT IN MANHATTAN,186810935,Liza,Manhattan,Upper East Side,40.77646,-73.96026,Entire home/apt,180,1,81,2019-07-07,6.12,1,228 +25188064,Beautiful Cozy Apt near Subway - Historic Brooklyn,11501956,Karine,Brooklyn,Bedford-Stuyvesant,40.68273,-73.91651,Entire home/apt,150,3,28,2019-06-29,2.04,1,316 +25188424,Charming Brooklyn apartment with Garden Access,3261533,Lina,Brooklyn,Bedford-Stuyvesant,40.67997,-73.95052,Entire home/apt,88,30,4,2019-02-23,0.38,1,126 +25189853,Sonder | 116 John | Simple 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70803,-74.00502,Entire home/apt,169,29,2,2019-02-10,0.27,96,337 +25189933,Charming Private Room 5 min to the Ocean,12931469,Margarita,Staten Island,Great Kills,40.54896,-74.14246,Private room,40,2,9,2019-07-01,0.73,3,89 +25190223,Great 2 bedroom apartment in midtown for 5ppl,187312369,Ramon,Manhattan,Hell's Kitchen,40.76596,-73.98926,Entire home/apt,390,3,72,2019-07-02,5.31,1,79 +25190757,Private Quite 2BDRM Oasis Best Neighborhood in NYC,30242632,Lindsay,Manhattan,Chelsea,40.74123,-74.00548,Entire home/apt,600,2,44,2019-06-23,3.37,1,134 +25191316,Gorgeous Private room near NYC,12931469,Margarita,Staten Island,Great Kills,40.54889,-74.14199,Private room,50,2,4,2018-11-05,0.30,3,84 +25192722,"Clean, Conscious, Plant-Based Home in Bed-Stuy",6735192,Henry,Brooklyn,Bedford-Stuyvesant,40.68195,-73.94827,Private room,55,3,23,2019-04-17,1.69,1,0 +25192771,Large bedroom in 2BDR apt. in the East Village,152431497,Marie,Manhattan,East Village,40.72787,-73.98844,Private room,90,3,0,,,1,79 +25193004,Spacious room with a hammock near Prospect park,6387541,Julia,Brooklyn,Flatbush,40.6509,-73.96266,Private room,95,1,9,2019-06-03,0.73,1,0 +25193752,Cozy private living in Queens,14323652,Brandon,Queens,Elmhurst,40.73873,-73.88147,Entire home/apt,85,2,36,2019-03-31,2.65,1,130 +25194498,BEST LOCATION - COMFY ROOM for long term,20212516,My,Manhattan,Greenwich Village,40.73552,-73.99719,Private room,65,14,8,2019-06-16,0.58,2,35 +25197784,Mini art and science museum in 2BR brownstone,48275590,Joseph,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92411,Entire home/apt,100,3,4,2019-06-26,0.29,1,358 +25202604,Luxurious Apt2 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Park Slope,40.67638,-73.98278,Entire home/apt,295,4,16,2019-07-04,1.42,3,68 +25204010,NyStreet!,69006953,Diana,Manhattan,Hell's Kitchen,40.76306,-73.99015,Entire home/apt,280,1,0,,,1,0 +25204567,Sunny room + Private rooftop,25319044,Julien,Brooklyn,Bedford-Stuyvesant,40.67956,-73.93806,Private room,45,4,0,,,1,0 +25204636,GORGEOUS & HUGE room for long term,20212516,My,Manhattan,West Village,40.73675,-73.998,Private room,89,1,13,2019-06-30,1.20,2,7 +25205044,Sweet Comfort,180154611,Marlyn,Brooklyn,Canarsie,40.63652,-73.89856,Private room,49,2,8,2018-10-26,0.62,3,342 +25205158,Private Room in St George near Manhattan,150572903,Dimitri,Staten Island,St. George,40.6408,-74.08097,Private room,75,3,4,2019-05-06,0.30,2,128 +25205932,Weekend Astoria Charmer,52532097,Maegan,Queens,Long Island City,40.75533,-73.91936,Shared room,45,1,5,2018-06-24,0.37,1,0 +25206375,Greenpoint Apartment,190452606,Kelly,Brooklyn,Greenpoint,40.73499,-73.95513,Private room,90,10,0,,,1,0 +25206790,Heart of bay ridge Brooklyn,41762539,Maria,Brooklyn,Fort Hamilton,40.62139,-74.0319,Entire home/apt,125,1,1,2018-07-26,0.09,1,0 +25207662,AFFORDABLE LUXURY...Exclusive Living @ Its Best!,123519201,Festus Atu,Manhattan,Inwood,40.86866,-73.92472,Private room,149,1,30,2019-06-23,2.20,2,270 +25208234,Empty private place to crash for the night,188830760,Stanley,Queens,Ridgewood,40.70367,-73.91063,Private room,110,1,3,2018-09-30,0.28,1,365 +25208477,1 bedroom apt in the heart of the east village,62183764,Lauren,Manhattan,East Village,40.7286,-73.98334,Entire home/apt,115,1,0,,,1,0 +25209061,Spacious and Clean bedroom in modern apt,51091522,Carissa,Manhattan,East Harlem,40.78769,-73.94691,Private room,76,1,0,,,1,0 +25209144,Modern apartment in Hamilton Heights,79168536,James,Manhattan,Harlem,40.825,-73.95181,Private room,90,3,2,2018-08-06,0.16,1,0 +25209293,Perfect Nolita apartment,22587087,Peter,Manhattan,Nolita,40.72277,-73.99524,Entire home/apt,182,2,11,2019-07-01,0.90,1,30 +25209619,A NYC apartment,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.6811,-73.94541,Entire home/apt,65,30,2,2018-11-02,0.21,6,269 +25210171,Large one bedroom in upper manhattan,20882846,Jocelyn,Manhattan,Inwood,40.86734,-73.92102,Entire home/apt,95,1,31,2019-01-13,2.28,1,0 +25211991,Brooklyn Take Me In,4052765,Alex,Brooklyn,Bushwick,40.69394,-73.92972,Private room,46,3,1,2018-06-08,0.08,1,0 +25212748,Modern private bed & bath next to Barclays Center,1798193,Justine,Brooklyn,Prospect Heights,40.68081,-73.9729,Private room,120,1,41,2019-06-02,3.10,1,0 +25213872,Cheap & Comfy Huge Private Room!,5789204,Honglip,Brooklyn,Bensonhurst,40.61006,-73.99902,Private room,37,4,52,2019-06-30,3.94,1,70 +25215426,Magic Brooklyn townhouse room fit for a wizard,189075482,Chloe,Brooklyn,Cypress Hills,40.68074,-73.89157,Private room,85,1,1,2019-05-20,0.60,3,0 +25215547,"Beautiful & Comfy Room, Same Street As The Subway!",153500245,Isabela,Brooklyn,Bedford-Stuyvesant,40.6791,-73.9096,Private room,85,1,81,2019-06-23,6.06,2,233 +25215973,"1 Bedroom in Ridgewood, Brooklyn",21550529,Ella,Queens,Ridgewood,40.6993,-73.90825,Private room,75,5,0,,,1,0 +25221034,Beautiful room!!! Wonderful view!!!,190116017,Kate,Manhattan,Kips Bay,40.73631,-73.97512,Private room,110,5,2,2018-06-16,0.15,1,6 +25221993,Quiet & cozy 1 BR/balcony - Graham L in WBURG,3952200,Gala,Brooklyn,Williamsburg,40.71886,-73.94054,Entire home/apt,140,2,19,2019-06-13,1.52,2,216 +25222993,[ENTIRE APT] Large Designer 1 bd apt in Manhattan,9414337,Garvey,Manhattan,Harlem,40.81759,-73.94385,Entire home/apt,150,5,1,2018-07-05,0.08,1,0 +25224320,Brooklyn Cultural Chateau: Sunny Private Room,4224480,Nate,Brooklyn,Bedford-Stuyvesant,40.69104,-73.9258,Private room,85,2,34,2019-05-21,2.46,1,336 +25225344,Studio Apartment in the Heart of Manhattan!,190589224,Damian,Manhattan,Hell's Kitchen,40.76272,-73.98898,Entire home/apt,130,1,12,2019-03-17,0.87,1,0 +25226728,"Bright, Modern Greenpoint Apartment",78705600,Blake Layton,Brooklyn,Greenpoint,40.73507,-73.95229,Entire home/apt,300,7,0,,,1,31 +25226807,"Beautiful, spacious loft in Clinton Hill",8250822,Sabrina,Brooklyn,Bedford-Stuyvesant,40.69284,-73.96065,Entire home/apt,130,3,4,2018-12-25,0.31,1,7 +25227326,Adorable Top Floor Williamsburg Apt (1 Bedroom),75452286,Sarah,Brooklyn,Williamsburg,40.71754,-73.95906,Entire home/apt,125,2,15,2019-03-24,1.14,1,0 +25227782,Throgsneck Pvt. Room two full beds close manhattan,132669029,Edwin,Bronx,Throgs Neck,40.82617,-73.82073,Private room,74,3,23,2019-07-05,1.77,4,58 +25229392,Luxury Couple’s Retreat by The Park with Doorman,10256614,Cyn,Manhattan,East Harlem,40.79938,-73.94698,Private room,99,2,52,2019-06-23,3.96,1,42 +25229464,Anita's Grey Master BedRoom,185524223,Anita,Brooklyn,Kensington,40.6417,-73.97365,Private room,62,1,107,2019-07-08,8.25,2,263 +25230902,East Village Studio Apartment,3720000,Stephanie,Manhattan,East Village,40.72765,-73.98669,Entire home/apt,200,2,20,2019-06-16,1.47,1,53 +25231000,Spacious Studio in the Heart of West Village,29124230,Robert,Manhattan,West Village,40.73133,-74.00461,Entire home/apt,180,7,5,2018-08-31,0.39,1,34 +25231230,"Clean, quiet, close to Columbia and transit.",190629348,Xinhua,Manhattan,Upper West Side,40.80149,-73.96375,Private room,46,3,7,2018-08-30,0.51,1,0 +25231699,Lovely room in Bushwick 2 bd with a huge backyard,9430106,Cortney,Brooklyn,Bushwick,40.70238,-73.92886,Private room,70,7,1,2018-06-30,0.08,1,0 +25232008,Central Park South Better than a 5-Star Hotel,47100454,Val,Manhattan,Midtown,40.76457,-73.97518,Entire home/apt,166,30,0,,,1,0 +25232254,Manhattan UWS Washington Heights Harlem - Inwood,2631556,Anastasia,Manhattan,Inwood,40.8659,-73.92869,Entire home/apt,359,2,0,,,1,365 +25232501,Modern luxury apartment 15 mins to central park!,7228086,John,Queens,Long Island City,40.75178,-73.93973,Entire home/apt,200,2,4,2018-10-25,0.33,1,0 +25232614,West Village Private Room With A View!,187574104,Victoria,Manhattan,West Village,40.72941,-74.00317,Private room,100,1,4,2019-02-18,0.30,1,0 +25234017,2 Bedroom 2 Bathroom Brooklyn Apartment,190658392,Hendrick,Brooklyn,East New York,40.67163,-73.88898,Entire home/apt,100,1,51,2019-06-01,3.81,1,107 +25234477,The Guesthouse Loft,39575865,Alexandra,Manhattan,Upper East Side,40.77288,-73.94745,Entire home/apt,175,7,0,,,1,5 +25234555,Adorable Room in Spacious Brooklyn Home,116291711,Maggie,Brooklyn,Crown Heights,40.66918,-73.9475,Private room,40,1,3,2018-06-17,0.22,1,0 +25234732,"Gorgeous, charming upper east side one bedroom",1497427,Andrea,Manhattan,Upper East Side,40.77416,-73.9501,Entire home/apt,120,3,12,2019-06-15,1.03,2,105 +25235760,Location Astoria Park ( only female ),3250450,Petya,Queens,Astoria,40.77182,-73.92867,Private room,38,30,1,2018-06-30,0.08,18,310 +25236588,Brand New Apt Room with Modern Living Room,62533391,Yvonne,Brooklyn,Borough Park,40.63584,-74.00578,Private room,55,1,5,2019-05-19,0.41,7,326 +25236786,Ensuite Private bath with Comfortable bed,62533391,Yvonne,Brooklyn,Borough Park,40.63404,-74.0072,Private room,60,1,20,2019-06-04,1.52,7,177 +25236926,Cozy| PRIVATE STUDIO | TIMES SQAURE,102287310,Vera,Manhattan,Hell's Kitchen,40.76269,-73.98954,Entire home/apt,199,3,8,2019-05-28,0.74,3,347 +25237818,East Harlem Room Available (Females Only),141347878,Faith,Manhattan,East Harlem,40.79747,-73.94836,Private room,50,1,31,2019-06-30,2.26,1,0 +25240993,Inigo-Sunset Park,10875083,Inigo,Brooklyn,Borough Park,40.64254,-73.99759,Private room,32,29,2,2018-09-30,0.17,1,1 +25245882,Recently Remodeled: Stunning & Spacious 1 Bedroom,3312372,Laura J.,Queens,Jackson Heights,40.75096,-73.88423,Entire home/apt,175,3,7,2019-06-09,0.68,1,28 +25248774,Charming East Village Bedroom,7425016,Di,Manhattan,East Village,40.72967,-73.98668,Private room,74,2,2,2018-07-22,0.15,1,0 +25249692,wonderful presidential suite in midtown manhattan,119328219,Eric,Manhattan,Midtown,40.75439,-73.97339,Entire home/apt,175,30,6,2019-05-02,0.91,1,22 +25251220,"Very Quiet 'nd Safe, overlooking backyard gardens",133123832,Parmenides,Manhattan,Upper West Side,40.78818,-73.97057,Entire home/apt,113,30,0,,,3,315 +25252356,"Beautiful well lit studio located in Brooklyn, NY",190784850,Madz,Brooklyn,Downtown Brooklyn,40.69264,-73.98542,Entire home/apt,150,1,11,2019-06-23,0.80,1,8 +25252879,Spacious 2 bedroom Williamsburg Apartment,4675864,Teon,Brooklyn,Williamsburg,40.71024,-73.94933,Entire home/apt,200,3,9,2019-06-22,0.69,1,2 +25253576,Sunny & spacious Brooklyn Brownstone Bedroom,190792355,Saron,Brooklyn,Bedford-Stuyvesant,40.69464,-73.94963,Private room,95,2,4,2018-06-29,0.29,1,0 +25255024,"Lovely, Spacious & Private Garden Apt in Bronx, NY",159495469,Keren J,Bronx,Pelham Gardens,40.86681,-73.84073,Entire home/apt,86,2,41,2019-06-16,3.18,1,111 +25255214,"Brooklyn Duplex Townhouse, Deck & Garden",849248,"Brian,Gigi & Clementine",Brooklyn,Sunset Park,40.65986,-73.99684,Entire home/apt,260,4,2,2019-01-01,0.18,1,3 +25255942,Room in brand new shared apt 20 mins to Manhattan,179657707,Andres,Brooklyn,Bushwick,40.70119,-73.91368,Private room,65,2,3,2019-05-27,1.36,2,49 +25257443,Cozy Parkside Studio in the ❤️ of the East Village,190823422,Kimberley,Manhattan,East Village,40.72469,-73.97892,Entire home/apt,165,1,67,2019-07-01,5.51,1,38 +25257912,Bushwick Apartment // L Train,190828985,Francis,Brooklyn,Williamsburg,40.70361,-73.942,Entire home/apt,150,2,5,2018-11-22,0.40,2,0 +25259845,Minimalist Modern West Village Studio,190841783,Cara,Manhattan,Chelsea,40.74098,-73.99744,Entire home/apt,140,29,2,2018-07-22,0.15,1,334 +25262112,Heart of East Village Apartment,61786922,Emily,Manhattan,East Village,40.73029,-73.98836,Entire home/apt,62,4,4,2018-07-08,0.29,1,5 +25262580,Little Italy Basic space.,181074926,Billy,Manhattan,Little Italy,40.71705,-73.99818,Shared room,100,1,20,2019-06-16,1.53,3,354 +25262795,Brooklyn apartment,102888703,Hany,Brooklyn,Gravesend,40.6009,-73.98216,Entire home/apt,100,7,0,,,1,42 +25263327,Jamaica Apartment Mins from Train & Dining,103104686,Evolve,Queens,Jamaica,40.67555,-73.77812,Entire home/apt,125,2,0,,,2,71 +25263729,Check in is at 10 pm!!!!!!Quiet Cave Crash Spot,186620707,Tyni,Manhattan,Harlem,40.79935,-73.95208,Shared room,44,1,25,2019-06-30,1.83,2,6 +25263845,Private Room with a Majestic View,22825646,Dmitriy,Manhattan,Washington Heights,40.84959,-73.93911,Private room,75,2,4,2018-09-23,0.34,1,0 +25264538,Modern one bedroom in Financial District,6254791,Maite,Manhattan,Financial District,40.70884,-74.00822,Entire home/apt,299,2,2,2018-09-23,0.20,1,0 +25264664,"Stunning, Sunny Tribeca Loft",27953442,Holly,Manhattan,Chinatown,40.71845,-74.00214,Entire home/apt,799,15,0,,,1,214 +25264902,Sunnyside Gardens Retreat,5024128,Ricky,Queens,Sunnyside,40.74689,-73.91652,Private room,70,2,31,2019-06-18,2.40,1,319 +25264929,AFFORDABLE LUXURY...Exclusive Living @ Its Best!,190878053,Festus Atu,Manhattan,Inwood,40.8681,-73.92434,Private room,149,1,31,2019-05-22,2.31,1,270 +25265496,Beautiful large 2 br appartement in Brooklyn!,22935245,Anne,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95397,Entire home/apt,145,21,1,2018-07-14,0.08,1,25 +25265984,comfy and cozy room near subway station,186155189,Kyunam,Manhattan,Washington Heights,40.84369,-73.94064,Private room,50,1,11,2019-06-01,1.00,3,90 +25266135,Large room near Columbia Uni medical center (7),186155189,Kyunam,Manhattan,Washington Heights,40.84376,-73.94208,Private room,50,1,7,2019-06-20,0.62,3,83 +25266169,"Quiet, cozy, mid-century mod apartment in Bushwick",12458767,Jehnna,Brooklyn,Bushwick,40.69044,-73.92253,Private room,80,2,12,2019-03-07,0.93,1,67 +25266226,"Minimalist Private Room in Queens, New York",104653500,Sonam,Queens,Woodside,40.7547,-73.90852,Private room,100,2,0,,,1,0 +25266474,Peaceful and cozy room in Williamsburg apartment!,15288827,Alley,Brooklyn,Williamsburg,40.70959,-73.95477,Private room,60,20,4,2019-03-25,0.32,1,66 +25267333,Brooklyn Gem,190902382,Curtis,Brooklyn,Canarsie,40.63491,-73.91163,Entire home/apt,92,2,17,2019-06-09,1.23,1,179 +25274161,Beautiful Single Room,37842947,Heena,Queens,Woodside,40.75607,-73.90146,Private room,80,1,3,2018-10-26,0.31,1,89 +25277640,The Greenwood - One Bedroom Garden Apartment,190962476,Teresa,Brooklyn,Sunset Park,40.66332,-73.99727,Entire home/apt,155,3,26,2019-07-06,2.18,1,67 +25278248,Bushwick duplex w/private backyard; close to city!,13060798,Daniel,Brooklyn,Bushwick,40.68845,-73.91956,Private room,65,2,13,2019-07-07,1.03,1,8 +25278711,Stay in this cozy room in the center of NYC 21B1,190921808,John,Manhattan,Hell's Kitchen,40.75541,-73.99502,Private room,156,7,5,2019-06-06,0.40,47,318 +25278771,Homey Gowanus retreat for artists and dog lovers,184898953,Lindsey,Brooklyn,Gowanus,40.67602,-73.98535,Private room,100,3,8,2019-07-06,0.59,1,0 +25280641,Charming 1BR Apartment in the heart of The Village,10240682,Tiffany,Manhattan,Greenwich Village,40.72938,-74.00027,Entire home/apt,197,3,6,2019-06-16,0.48,1,0 +25280953,Large Room in Historical Neighborhood,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92868,Private room,80,2,28,2019-04-25,2.09,6,160 +25281618,Private Grand Street Home- 2 BR duplex with deck,117341696,Meredith,Brooklyn,Williamsburg,40.71477,-73.96145,Entire home/apt,250,2,24,2019-06-02,1.83,1,0 +25283412,Charming Bright Room in Bed Stuy Brownstone,10770787,Adelina,Brooklyn,Bedford-Stuyvesant,40.6846,-73.93455,Private room,45,30,4,2019-07-02,0.35,1,35 +25285159,Sunny Bedroom in Brooklyn,3734323,Colin,Brooklyn,Bushwick,40.68641,-73.912,Private room,50,2,5,2018-08-26,0.37,3,0 +25285275,Central SPACIOUS Triplex - LOCATION LOCATION LOC..,191007759,Robert,Manhattan,Gramercy,40.73773,-73.98322,Entire home/apt,250,6,11,2019-06-29,0.85,1,223 +25285637,Midtown east for 5 people,191011879,Conor,Manhattan,Midtown,40.75298,-73.96919,Entire home/apt,199,2,50,2019-06-21,3.74,2,92 +25286006,Bright & airy loft,28589041,Frankie,Brooklyn,Bushwick,40.69442,-73.93013,Entire home/apt,150,2,5,2019-01-03,0.38,2,0 +25287087,Room in Beautiful Light- & Plant-Filled Apartment,5043049,Hilary,Brooklyn,Bedford-Stuyvesant,40.69217,-73.95823,Private room,80,1,1,2018-06-17,0.08,1,0 +25287115,COMFORTABLE PRIVATE CLEAN ROOM FULLY FURNISHED,175368807,Lamesha,Bronx,Williamsbridge,40.87579,-73.86532,Private room,33,3,1,2018-07-28,0.09,1,365 +25288200,The Luna’s apartment,70007560,Juan,Manhattan,East Harlem,40.7919,-73.94562,Private room,85,4,25,2019-06-30,1.91,2,90 +25288759,Aventurine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95522,Private room,65,2,13,2019-05-20,0.96,34,308 +25288989,COZY ROOM IN EAST VILLAGE TO CRASH!,48049796,Chester,Manhattan,East Village,40.72823,-73.98425,Private room,100,1,24,2019-06-30,1.79,2,91 +25289487,sunny nice studio,10659899,Marija,Brooklyn,Crown Heights,40.67128,-73.93664,Entire home/apt,60,7,2,2018-08-29,0.18,1,0 +25289848,Nice 2 bedrooms apartment in Bed-Stuy,785940,Adriana,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95659,Entire home/apt,150,1,4,2019-02-17,0.30,1,0 +25290477,Beautiful bedroom on Riverside!,5887537,Margarita,Manhattan,Harlem,40.82297,-73.95481,Private room,80,5,1,2019-01-02,0.16,1,18 +25290572,Wyndham Midtown 45 (2 Bedroom Presidential) 4A,100238132,Michael,Manhattan,Midtown,40.75196,-73.97148,Entire home/apt,339,3,18,2019-04-06,1.37,12,0 +25290749,Studio-Central Location 5 Min walk to Times Square,17988586,Jeffree,Manhattan,Hell's Kitchen,40.76235,-73.98759,Entire home/apt,175,4,7,2019-03-24,0.52,1,0 +25290969,Wyndham Midtown 45 (2 Bedroom Presidential) 3A,100238132,Michael,Manhattan,Midtown,40.75305,-73.97129,Entire home/apt,339,3,14,2018-11-19,1.13,12,0 +25291991,Cozy Private Room,34954769,Elizabeth,Manhattan,Harlem,40.81626,-73.95862,Private room,100,2,1,2018-12-02,0.14,1,86 +25292558,Sunny and Zen room in Chelsea,15668272,Pedro,Manhattan,Chelsea,40.74194,-73.99914,Private room,100,2,1,2018-06-25,0.08,1,0 +25292877,Spacious Williamsburg Bohemian Paradise,33437301,Zane,Brooklyn,Williamsburg,40.71157,-73.95714,Entire home/apt,200,3,14,2019-05-25,1.14,1,119 +25293702,Cozy (☆) Room In Upper Manhattan (♥),110191144,Mamadou,Manhattan,Harlem,40.82201,-73.95444,Private room,75,2,19,2019-06-12,1.40,2,84 +25293994,Upper East Side one bedroom in elevator building,44539148,Kaitlyn,Manhattan,Upper East Side,40.76931,-73.95336,Entire home/apt,140,3,6,2018-09-18,0.51,1,0 +25294143,Amazingly well-lit luxury LOFT,78942575,Bora,Brooklyn,Brooklyn Heights,40.70206,-73.99343,Entire home/apt,245,3,1,2018-12-30,0.16,2,58 +25296394,NYC Hideaway Urban Suite,191085997,Christopher,Bronx,Pelham Bay,40.85519,-73.82932,Entire home/apt,195,2,2,2018-10-09,0.19,3,313 +25297710,✈ NYC/Travelers. New Private Access Room Bed Full,81359949,Skarly & Ming,Brooklyn,Bushwick,40.6978,-73.92607,Private room,45,2,25,2019-06-02,1.97,2,54 +25298259,MothErOfTheC00L-privateEntranceBathroom/ModernCaVe,58629935,Saida,Brooklyn,Bushwick,40.69782,-73.92025,Entire home/apt,93,2,14,2019-07-07,1.03,2,330 +25299137,Cozy Private Bedroom by Central Park in UWS,43809903,Eddie,Manhattan,Upper West Side,40.80321,-73.96463,Private room,35,1,64,2019-06-16,4.76,4,22 +25308563,Single Room/ 15 min away from LGA Airport #5,51531044,Angela,Queens,Jackson Heights,40.7514,-73.87602,Private room,40,2,32,2019-05-11,2.42,4,336 +25308697,UPPER WEST SIDE: Renovated 2 FLOOR - 2 BED & BATH,15807180,Michael,Manhattan,Upper West Side,40.7846,-73.97315,Entire home/apt,99,2,0,,,3,93 +25309799,Jades place,4520673,Jade,Brooklyn,Williamsburg,40.71458,-73.96169,Private room,65,5,67,2019-07-01,5.01,2,124 +25310242,Sevastis place. Superhost!,28638583,Sevasti,Queens,Astoria,40.77444,-73.92923,Entire home/apt,156,1,70,2019-07-02,5.16,1,67 +25310404,Opal Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9571,Private room,60,2,24,2019-06-12,1.76,34,340 +25310497,Jade Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69275,-73.95574,Private room,60,2,30,2019-06-10,2.22,34,310 +25311295,"★Modern,Cozy 3BDR/2BA Getaway in Upper East!",17896706,Mark,Manhattan,Upper East Side,40.77988,-73.95482,Entire home/apt,399,4,58,2019-06-18,4.26,1,158 +25311740,Huge 2 bedroom in Astoria,19503783,Ves,Queens,Ditmars Steinway,40.77975,-73.92087,Entire home/apt,100,14,0,,,1,189 +25312773,Sunny 1 Bed Apartment - South Williamsburg,14993592,Katie,Brooklyn,Williamsburg,40.70691,-73.95104,Entire home/apt,95,4,3,2019-03-17,0.24,1,0 +25313204,Charming Apartment in Brooklyn,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94633,Entire home/apt,108,1,35,2019-03-13,2.77,10,158 +25313748,Luxury One Bdrm Condo @TimeSquare,10106740,David,Manhattan,Hell's Kitchen,40.75788,-73.99198,Entire home/apt,269,4,6,2019-06-07,0.66,1,277 +25314051,Large Boerum Hill 2 Bedroom,20520488,Laura,Brooklyn,Gowanus,40.68075,-73.98181,Entire home/apt,240,3,4,2018-10-21,0.31,1,0 +25314610,Artsy Manhattan Pied À Terre,57059,Lewis,Manhattan,Harlem,40.80693,-73.94831,Entire home/apt,200,28,35,2019-06-20,2.72,1,50 +25315154,Modern & private studio Bronx-Pelham Gardens,188225740,Rnl,Bronx,Pelham Gardens,40.86273,-73.83715,Entire home/apt,80,2,70,2019-07-07,5.34,1,142 +25315860,A beautiful Room In A Safe Sheepshead Bay Area.,179661186,Mirjam,Brooklyn,Sheepshead Bay,40.60057,-73.95154,Private room,61,2,3,2019-06-23,1.84,2,1 +25316571,Great in Greenpoint,29700603,Shari,Brooklyn,Greenpoint,40.72673,-73.94968,Entire home/apt,200,7,1,2018-12-31,0.16,1,16 +25317547,Couples Haven/ 5min to train/20 min Times Square,79913651,Darryl,Manhattan,Harlem,40.82294,-73.9386,Private room,50,2,20,2019-06-30,1.74,4,157 +25317671,Studio apartment with a modern home-y feel!,15429605,Stephanie,Queens,Briarwood,40.70988,-73.81716,Entire home/apt,100,2,10,2019-07-07,0.88,1,160 +25317793,Awesome Cozy Room in The Heart of Sunnyside!,136406167,Kara,Queens,Sunnyside,40.7409,-73.92696,Private room,65,2,22,2019-06-11,1.63,1,131 +25318171,Home Away,95564806,Olvin,Brooklyn,Brownsville,40.66006,-73.91234,Private room,60,1,1,2018-06-15,0.08,3,0 +25319136,"NEW elegant 2brm 2bath +Loft .",4399103,James,Manhattan,Greenwich Village,40.72768,-73.99917,Entire home/apt,410,31,40,2019-07-01,3.20,2,10 +25319356,Washington Heights Getaway Bedroom,191229616,Cesar,Manhattan,Washington Heights,40.83271,-73.94145,Private room,55,15,10,2019-06-22,0.80,2,35 +25323294,Entire apartment with amazing views!,40078170,Sandy,Manhattan,Financial District,40.71033,-74.00743,Entire home/apt,245,2,8,2018-12-09,0.68,1,163 +25323446,Luxurious 2 bedroom home close to Airport and City,70774951,Farhan,Queens,East Elmhurst,40.76799,-73.8795,Entire home/apt,132,1,114,2019-06-24,8.38,3,316 +25323809,New Private Cozy Condo with private bedroom & bath,61699814,Shanthi,Bronx,Kingsbridge,40.87901,-73.90155,Private room,45,30,1,2018-08-08,0.09,2,193 +25324132,Chic Downtown Getaway - Beautiful 1BR Flat,4731948,Kiki,Manhattan,Chinatown,40.71721,-73.99312,Entire home/apt,155,1,16,2019-04-08,1.22,4,301 +25324289,Gotham City Rental 3,191263373,Gotham,Manhattan,Hell's Kitchen,40.75925,-73.99375,Entire home/apt,225,1,63,2019-06-08,4.83,1,357 +25324506,Bright Brooklyn Home with a View,4625857,Ilana,Brooklyn,Crown Heights,40.67157,-73.95807,Entire home/apt,150,10,1,2019-01-02,0.16,1,0 +25325029,Bushwick Room with a View,24327574,Shadi,Brooklyn,Bushwick,40.69928,-73.92386,Private room,150,2,20,2018-10-22,1.52,1,0 +25326478,Classic Tribeca Loft,10369267,Steph,Manhattan,Tribeca,40.71418,-74.00676,Entire home/apt,450,3,14,2019-05-27,1.04,1,36 +25327993,Basic Little Italy 2,181074926,Billy,Manhattan,Little Italy,40.71773,-73.99812,Private room,100,1,25,2019-06-22,1.92,3,323 +25328081,Basic Little Italy 3,181074926,Billy,Manhattan,Little Italy,40.71766,-73.99827,Private room,110,1,43,2019-06-17,3.25,3,348 +25328184,Bedstuy Fly! Two Bedroom Garden Apartment.,1417893,Ingrid,Brooklyn,Bedford-Stuyvesant,40.68902,-73.92838,Entire home/apt,160,3,52,2019-06-22,3.90,1,37 +25335433,kiwi,191343281,Mark,Manhattan,Upper West Side,40.77255,-73.99057,Shared room,220,1,1,2018-05-26,0.07,1,89 +25336605,Luxury Apartment July 4th Wkend -Fireworks view,69825290,Colin,Queens,Long Island City,40.75332,-73.94159,Entire home/apt,150,1,1,2019-01-02,0.16,1,0 +25338619,Hip All Stone East Village Condo,147447438,Chris,Manhattan,East Village,40.73139,-73.98791,Entire home/apt,350,3,11,2019-06-15,0.83,1,88 +25339184,Cute 1 Bedroom close to Graham Ave. train stop,3360346,Christen,Brooklyn,Williamsburg,40.71604,-73.94217,Entire home/apt,53,3,4,2019-06-21,0.30,2,29 +25340516,Garden Duplex close to Central Park,136454672,Fabiana,Manhattan,Upper East Side,40.76516,-73.96562,Entire home/apt,1000,3,10,2019-06-08,0.79,1,84 +25340524,Spacious Gramercy Park Studio w/ separate kitchen,2053735,Kat,Manhattan,Gramercy,40.73609,-73.98595,Entire home/apt,145,2,13,2019-06-23,1.02,1,1 +25340844,"Cozy Room in a Historic, Beautiful Apartment",9523229,Dennis,Manhattan,Chelsea,40.74249,-73.99997,Private room,68,4,33,2019-06-16,2.56,1,0 +25341465,Private Bright Bedroom near 7 Train LGA & JFK,190096034,Janet,Queens,Corona,40.74464,-73.86012,Private room,60,1,63,2019-07-07,5.12,3,155 +25342124,Private Room near Central Park,7249636,Dima,Manhattan,Hell's Kitchen,40.7687,-73.98742,Private room,85,1,127,2019-07-07,9.43,1,19 +25343141,Comfort on Ocean Avenue,178147517,Antonio,Brooklyn,Flatbush,40.63149,-73.95704,Private room,60,2,7,2019-06-22,0.51,1,155 +25344034,"Master Bedroom close to LGA ,JFK, and highways",190096034,Janet,Queens,Corona,40.74322,-73.86005,Private room,65,1,29,2019-06-08,2.57,3,333 +25344841,Serene Flat on Tree-Lined Harlem Street,115738772,Alex,Manhattan,Harlem,40.816,-73.95348,Entire home/apt,130,3,10,2019-06-24,0.88,1,10 +25345332,"Large Private Room in Beautiful Bedstuy, BK",191398879,Mike,Brooklyn,Bedford-Stuyvesant,40.68518,-73.94797,Private room,61,3,2,2018-06-10,0.15,1,0 +25345389,Crystal Mediation Sanctuary Prime Williamsburg BK,42407784,Amanda,Brooklyn,Williamsburg,40.70822,-73.94825,Entire home/apt,300,2,0,,,1,0 +25346073,Small Bedroom for Rent in a Small Apartment..,191389617,Dinorah,Brooklyn,Sunset Park,40.64117,-74.01248,Private room,41,2,54,2019-03-25,4.14,1,0 +25346963,Townhouse Apartment steps away from Central Park,51601657,Joe,Manhattan,Upper East Side,40.77735,-73.96222,Entire home/apt,425,3,50,2019-06-28,3.85,1,106 +25347359,Royal suite,189792874,Voxie,Brooklyn,Canarsie,40.63202,-73.90916,Entire home/apt,135,2,16,2019-06-30,1.21,1,358 +25348299,Stunning Designer 3 bdrm apt 25 min to Manhattan,8013853,Seth,Brooklyn,Bedford-Stuyvesant,40.68412,-73.94836,Entire home/apt,85,30,16,2019-06-14,1.18,1,318 +25348369,Aug 1st Park Slope roommate wanted-3 mos.,702103,Sherry,Brooklyn,South Slope,40.66736,-73.98546,Private room,48,60,0,,,1,342 +25348802,Cozy & comfortable STUDIO in MIDTOWN NYC,23121862,Robin,Manhattan,Midtown,40.75815,-73.96489,Shared room,165,4,0,,,1,12 +25349077,Room in uptonw manhattan,191422870,Elisabet,Manhattan,Inwood,40.86842,-73.91747,Private room,50,7,0,,,1,0 +25349299,Modern Spacious Garden Apartment - Red Hook!,6836514,Ryne,Brooklyn,Red Hook,40.67908,-74.01068,Entire home/apt,117,1,48,2019-05-26,3.51,1,108 +25350452,1BR Breathtaking view w/Private Roof Top Bushwick,3388542,Damien,Brooklyn,Bushwick,40.69566,-73.90687,Entire home/apt,95,3,14,2019-03-24,1.12,1,5 +25350617,Sunny room in chilled out Fort green apt,1180925,Mark,Brooklyn,Fort Greene,40.69492,-73.97154,Private room,75,2,12,2019-06-07,0.97,3,89 +25350875,String lights home 1 min to subway,7772526,Ting Yi,Brooklyn,Bushwick,40.68669,-73.91573,Entire home/apt,140,3,14,2019-06-12,1.05,2,229 +25350971,Charming apartment in Greenpoint Historic District,41457105,Justin,Brooklyn,Greenpoint,40.73374,-73.95854,Entire home/apt,125,2,0,,,1,0 +25352456,BEAUTIFUL Queen Bedroom in Peaceful Green Space,90249125,Jackie,Manhattan,Harlem,40.8063,-73.95548,Private room,85,4,11,2019-07-01,0.86,1,0 +25354569,1 1/2 bedroom totally private exclusive Apt. #4,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68333,-73.95232,Entire home/apt,200,7,4,2019-05-11,0.29,2,179 +25354678,Big Blue House in the Bronx,107437866,Clint,Bronx,Edenwald,40.89124,-73.83423,Entire home/apt,149,2,59,2019-06-24,4.33,1,328 +25355219,Spacious Apt minutes from Manhattan,59377513,Shannon,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.94781,Private room,85,5,3,2018-09-02,0.27,1,32 +25355282,Bed Available in Brooklyn,26996515,Will,Brooklyn,Bedford-Stuyvesant,40.68878,-73.92857,Shared room,30,1,21,2018-09-30,1.60,2,0 +25355807,Cozy bedroom approx 5 minutes from JFK.,123506305,Kisha,Queens,Springfield Gardens,40.66601,-73.77638,Private room,92,1,0,,,3,180 +25355845,Super Charming 1 Bedroom in the Heart of Chelsea,21705284,Dani,Manhattan,Chelsea,40.74388,-73.99631,Entire home/apt,200,2,71,2019-06-18,5.23,1,230 +25356602,Cozy room 5 to 7 minutes from JFK airport.,123506305,Kisha,Queens,Jamaica,40.66732,-73.77813,Private room,60,1,6,2019-05-26,0.45,3,365 +25356696,Spacious room w/ ensuite in heart of East Village,6101536,Josh,Manhattan,East Village,40.72852,-73.99009,Private room,150,3,34,2019-06-28,2.91,1,3 +25357219,Cozy room on the river,75435800,Dean,Manhattan,Midtown,40.75523,-73.96367,Private room,109,3,7,2018-12-08,0.53,2,0 +25365916,Ground Level 1 bedroom common areas shared,161314694,Stephanie,Brooklyn,Crown Heights,40.67568,-73.91809,Private room,60,2,0,,,1,365 +25367421,East Village Skylight Loft,22443613,M.J.B.,Manhattan,East Village,40.72413,-73.98091,Entire home/apt,650,10,1,2018-08-25,0.09,1,23 +25369155,Luke’s place,11353190,Annajan,Brooklyn,Boerum Hill,40.69015,-73.99098,Entire home/apt,140,3,4,2019-05-17,0.34,1,5 +25369739,Gowanus/Park Slope Duplex Garden Apt. 1 BLK METRO,16523946,Stacey,Brooklyn,Gowanus,40.66906,-73.99047,Entire home/apt,200,2,41,2019-06-24,3.30,1,246 +25370297,Bright & stylish apartment in Greenwich Village,13251813,Nick,Manhattan,West Village,40.73521,-73.99944,Entire home/apt,120,4,6,2019-02-17,0.49,1,1 +25370919,"Spacious, Luxury Apartment in Brooklyn",30224403,Peter,Brooklyn,Boerum Hill,40.68773,-73.98778,Entire home/apt,175,5,9,2019-04-11,0.68,1,6 +25371790,Huge Artist Loft Space - Red Hook,89106916,Gabriel,Brooklyn,Red Hook,40.67737,-74.00733,Entire home/apt,170,2,8,2019-03-28,0.62,1,288 +25371837,Beautiful United Nations Studio/ Best location.,1475015,Mike,Manhattan,Midtown,40.75215,-73.97152,Entire home/apt,83,30,0,,,52,309 +25372531,Budget 2 beds private room,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92975,Private room,90,1,5,2019-06-23,1.61,6,256 +25374003,Spacious room brand new.Beautiful yard also avlble,191577969,Nikolas,Queens,Ditmars Steinway,40.78331,-73.91615,Private room,110,2,5,2018-10-27,0.48,1,90 +25374851,Vintage Custom Van,10407935,Meng,Manhattan,Nolita,40.72218,-73.99539,Entire home/apt,89,1,62,2019-06-30,4.64,8,3 +25377317,Cute and Quaint Studio in Astoria!,6895016,Stephanie,Queens,Astoria,40.75831,-73.92658,Entire home/apt,96,3,10,2018-09-11,0.78,1,0 +25378040,Little Italian Manor 2,139871943,Patrick,Manhattan,Little Italy,40.7197,-73.99747,Private room,70,28,26,2018-12-06,1.99,3,147 +25378614,Private room near LGA with separate entrance,141122152,Hardeep,Queens,East Elmhurst,40.76218,-73.88589,Private room,80,1,86,2019-06-20,6.35,1,147 +25379058,"Beautiful, Spacious & Comfortable Room",182976972,Annero,Brooklyn,East Flatbush,40.64946,-73.92839,Private room,65,2,24,2019-06-30,1.79,2,361 +25379780,Heart of Park Slope,187453004,Nancy,Brooklyn,Park Slope,40.67384,-73.97743,Private room,150,2,36,2019-07-01,2.71,1,293 +25380189,"Modern, Fresh Chelsea, Athenas Apartment Room",191621249,Geraldine,Manhattan,Chelsea,40.74104,-73.99712,Private room,100,1,33,2019-06-29,3.87,2,12 +25380654,"Cozy, Confortable, Modern spacious and nice Room",191621249,Geraldine,Manhattan,Chelsea,40.74284,-73.99842,Private room,99,1,95,2019-07-08,7.20,2,0 +25380780,Taste of the Old World,48499240,Walter,Manhattan,Harlem,40.81215,-73.95129,Private room,150,2,15,2019-05-21,1.25,1,57 +25383265,Cozy plant filled room nearby multiple subways,2147561,Shriver,Brooklyn,Williamsburg,40.70578,-73.94324,Private room,69,2,36,2019-06-24,2.85,1,49 +25389925,Stunning duplex. EXCELLENT location. Fort Greene!!,7076239,Annie And Joan,Brooklyn,Fort Greene,40.68677,-73.97298,Entire home/apt,375,2,13,2018-12-30,0.96,2,158 +25392508,Beautiful Sleek Apartment in New Building,23178319,Arjang,Brooklyn,Williamsburg,40.71305,-73.93955,Private room,55,5,24,2019-06-03,1.84,1,313 +25395740,Top Floor Sun-Drenched West Village Studio,17788946,Jenny,Manhattan,West Village,40.73655,-74.00226,Entire home/apt,175,2,19,2019-06-16,1.45,1,3 +25396809,Sunny Suite with Private Entrance,30978136,Eyal & Jessie,Queens,Ridgewood,40.70022,-73.91012,Private room,90,1,57,2019-06-23,4.31,1,284 +25396834,Cozy private room in Bushwick with Gym and Rooftop,17507617,Celeste,Brooklyn,Bedford-Stuyvesant,40.68866,-73.92238,Private room,60,2,21,2018-11-01,1.71,1,75 +25397054,A Room With A View,878445,Stefanie,Manhattan,Harlem,40.82999,-73.94174,Private room,100,2,2,2018-08-18,0.15,1,341 +25399303,"Large Sunny Room with King Size Bed, near subway",912921,Cora & Kai,Manhattan,Washington Heights,40.84362,-73.94253,Private room,47,3,13,2019-06-28,0.99,1,174 +25399452,Luxury Mid-Century Modern in West Village,48097665,Matthew,Manhattan,West Village,40.73735,-74.0004,Entire home/apt,160,30,8,2019-05-25,0.71,1,156 +25401843,Gorgeous Studio Hideout/w Queen Bed.,34313176,Eddie,Queens,Rego Park,40.71691,-73.86147,Entire home/apt,80,2,42,2019-06-29,3.16,4,307 +25402549,Private Bedroom & Bathroom in Midtown Manhattan,76477003,Ai,Manhattan,Hell's Kitchen,40.75933,-73.99512,Private room,125,2,24,2019-05-29,1.90,1,0 +25403075,Your special place in Manhattan FRONT room,191765199,Elena,Manhattan,Washington Heights,40.83387,-73.94163,Private room,81,1,18,2019-06-04,1.34,6,38 +25403196,Spacious Two Bedroom DUMBO Loft,13523227,Stefan,Brooklyn,DUMBO,40.70268,-73.98603,Entire home/apt,350,2,0,,,1,0 +25404381,Romantic Garden Floor For Two or Big Groups,144892527,Victor,Brooklyn,Crown Heights,40.67076,-73.94876,Entire home/apt,183,1,58,2019-06-23,4.36,1,15 +25407116,HEAVENLY PLACE,191804394,Pnb,Bronx,Longwood,40.8156,-73.90075,Entire home/apt,60,1,9,2019-06-09,0.76,2,257 +25415951,Large Manhattan Artist Flat,798380,Chris,Manhattan,Inwood,40.86029,-73.92984,Entire home/apt,120,7,1,2018-08-10,0.09,1,172 +25416257,THE 602 SHOWROOM,26490270,The 6o2,Brooklyn,Prospect-Lefferts Gardens,40.65925,-73.94862,Entire home/apt,1000,1,1,2018-10-30,0.12,1,365 +25417007,Big bright room with private entrance,21552055,Shelley,Brooklyn,Greenpoint,40.72678,-73.95087,Private room,156,1,29,2019-06-24,2.33,2,4 +25417035,"Historical BK Heights 3 br, outdoor deck + patio",9912305,Michele,Brooklyn,Brooklyn Heights,40.69248,-73.9958,Entire home/apt,300,4,4,2019-02-23,0.33,1,185 +25420252,Private Queen Bedroom in UWS near Central Park,140997060,Amy,Manhattan,Upper West Side,40.77898,-73.98532,Private room,179,3,0,,,2,0 +25420704,place on the bay,191901037,Marsha,Brooklyn,Sheepshead Bay,40.58484,-73.94022,Private room,70,10,1,2018-06-30,0.08,2,331 +25421108,"Small, cosy room for the solo traveler!!",4274857,Helena,Manhattan,Lower East Side,40.72013,-73.98842,Private room,80,3,30,2019-06-22,2.31,3,76 +25421109,"BedStuy Spacious & Modern, 2nd floor Apt w/ Roof",16285179,Carolina,Brooklyn,Bedford-Stuyvesant,40.68695,-73.91937,Entire home/apt,120,3,2,2019-01-01,0.19,2,0 +25421873,Spacious Room Seconds from Graham L - Williamsburg,191892665,Jonathan,Brooklyn,Williamsburg,40.71413,-73.94467,Private room,73,21,0,,,1,0 +25422338,New York Loft,191913119,Dylan,Manhattan,Civic Center,40.71313,-74.00541,Entire home/apt,236,2,0,,,1,0 +25424320,Sweet Suite in Greenpoint,43785574,Michon,Brooklyn,Greenpoint,40.72163,-73.9478,Private room,110,7,5,2019-01-02,0.39,1,49 +25424961,Charming Glass Room in 1b Apt in heart of SoHo,2695451,Elle,Manhattan,SoHo,40.72425,-74.00331,Private room,55,2,3,2019-06-29,0.25,2,0 +25425106,Lovely private room in spacious top floor condo,5522547,Dave,Brooklyn,Crown Heights,40.67229,-73.92729,Private room,100,1,1,2018-09-24,0.10,1,89 +25426171,Private room w/ pvt entrance near Times Sq 32C,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99651,Private room,55,7,9,2019-05-21,0.91,47,324 +25426781,Charming Artistic Flat in Brooklyn,17581024,Kemar,Brooklyn,Park Slope,40.67731,-73.98138,Private room,75,1,41,2019-06-13,3.05,2,54 +25427351,Bright 1BDR in Green Oasis - Fantastic Location!,24043300,Emily,Brooklyn,Boerum Hill,40.68444,-73.98094,Entire home/apt,160,7,1,2018-06-28,0.08,1,261 +25428063,1BR Apartment on Prettiest Block in West Village!,3623796,Richard,Manhattan,West Village,40.73788,-74.00183,Entire home/apt,170,3,2,2018-10-28,0.16,1,0 +25428161,Serene Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70587,-74.00685,Entire home/apt,167,29,0,,,96,332 +25428573,"Your Apartment in NEW YORK, all for yourself",191765199,Elena,Manhattan,Washington Heights,40.83265,-73.94012,Entire home/apt,120,1,57,2019-06-23,4.25,6,154 +25434447,LGBT Friendly 15 mins to Union Square!! PRVTE BATH,147229558,Viktoria,Brooklyn,Williamsburg,40.70883,-73.93859,Private room,230,1,21,2019-04-29,1.72,1,24 +25441693,Lovely villa,191063355,Maranatha,Brooklyn,Crown Heights,40.67193,-73.93003,Entire home/apt,125,1,59,2019-06-11,4.38,1,98 +25442072,Grand Penthouse loft in Prime Williamsburg,1802807,Lily,Brooklyn,Williamsburg,40.71438,-73.95955,Private room,100,6,6,2019-02-13,0.45,2,3 +25443451,Sweet Lower Manhattan/Tribeca loft Suite,64660747,S. N,Manhattan,Tribeca,40.71725,-74.00524,Entire home/apt,300,3,2,2018-10-02,0.17,1,108 +25444327,My Upper West Side Studio,4493803,Brandon,Manhattan,Upper West Side,40.78105,-73.98151,Entire home/apt,125,30,2,2018-11-30,0.18,1,67 +25445960,Midtown room with a living room and rooftop!,85541181,Stanley,Manhattan,Midtown,40.75115,-73.98607,Private room,300,30,0,,,1,81 +25446811,"Quiet Williamsburg Studio, Private Bath & Entrance",1844352,Christine,Brooklyn,Williamsburg,40.7117,-73.94388,Private room,100,3,25,2019-07-05,1.90,2,76 +25447407,Sonder | 21 Chelsea | Central 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74222,-73.99444,Entire home/apt,250,29,1,2018-07-31,0.09,96,220 +25447820,Your lovely room,192085113,Cristiane,Queens,Ditmars Steinway,40.77922,-73.90861,Private room,50,3,49,2019-06-30,3.68,1,11 +25448433,Large BR 1 Block From Subway 20 min to Manhattan,192085313,Rachel,Queens,Rego Park,40.73123,-73.86656,Private room,70,2,26,2019-06-12,1.96,1,180 +25448475,Luxurious Clean room 10 min away from Manhattan,192089216,Jonathan,Queens,Long Island City,40.73731,-73.9345,Private room,43,1,33,2019-06-19,2.50,1,282 +25448758,Zen Artist Duplex with Private Garden,895135,Suanny,Brooklyn,Williamsburg,40.7066,-73.94595,Private room,95,3,14,2019-04-30,1.07,3,180 +25449154,Deluxe Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70561,-74.00669,Entire home/apt,164,29,0,,,96,347 +25449234,Sunny Room in South Slope,3912358,Jody,Brooklyn,Sunset Park,40.66298,-73.99864,Private room,40,7,0,,,1,0 +25449386,"Cozy Railroad Apartment in Greenpoint, BK",38380313,Gabriela,Brooklyn,Greenpoint,40.72459,-73.9462,Entire home/apt,95,1,13,2019-04-21,1.04,1,0 +25450885,Sonder | Hanover Square | Charming 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70335,-74.0086,Entire home/apt,229,29,0,,,96,220 +25452071,Modern & Cozy Studio In Best East Village Location,3142924,Kea,Manhattan,East Village,40.72714,-73.98215,Entire home/apt,190,2,32,2019-07-06,2.74,1,17 +25452119,Great Williamsburg Spot,1581733,Alfredo,Brooklyn,Williamsburg,40.71071,-73.95957,Private room,120,2,0,,,2,86 +25452588,Posh 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74454,-73.97339,Entire home/apt,207,29,1,2018-07-12,0.08,96,365 +25453503,Warm Artistic Wburg Loft Off 4 Train Lines,5572415,Hyeseung,Brooklyn,Williamsburg,40.70795,-73.94741,Entire home/apt,100,5,1,2018-07-02,0.08,1,11 +25453535,Contemporary 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74386,-73.97327,Entire home/apt,180,29,1,2018-08-15,0.09,96,342 +25455908,Private bedroom in UWS Apartment,57516611,Mayumi,Manhattan,Upper West Side,40.80109,-73.96523,Private room,99,2,14,2019-07-02,1.06,1,8 +25455986,Your own duplex 3 bedroom w. backyard in Bed-Stuy!,21653460,Zoya,Brooklyn,Bedford-Stuyvesant,40.69399,-73.95269,Entire home/apt,125,5,2,2018-08-28,0.18,2,0 +25456296,Comfy single private room at quiet area in Queens,185914925,Mala,Queens,Hollis,40.7152,-73.76171,Private room,50,2,40,2019-06-12,2.96,2,84 +25456951,Beautiful 1 bedroom apt with private rooftop,10317649,Carita,Brooklyn,Williamsburg,40.71465,-73.96172,Entire home/apt,190,4,4,2019-05-26,0.32,1,17 +25457583,Washington Heights Tranquil Getaway Bedroom,191229616,Cesar,Manhattan,Washington Heights,40.83458,-73.94227,Private room,55,7,1,2018-12-31,0.16,2,125 +25458048,"1BRD Greenpoint BK! Nightlife, parks, shops, food",9582456,Jenny,Brooklyn,Greenpoint,40.72264,-73.94272,Entire home/apt,150,1,14,2019-03-24,1.17,1,0 +25460977,Fresh Studio in Brooklyn Townhouse,2776408,Isaac,Brooklyn,Crown Heights,40.67063,-73.9337,Entire home/apt,75,2,61,2019-07-05,5.23,1,2 +25462356,New Clean Comfortable Studio w/Terrace,154629753,Andrew,Manhattan,Hell's Kitchen,40.76746,-73.98942,Entire home/apt,500,10,41,2019-06-21,3.17,1,126 +25464685,Clean Over Night Bed By Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76464,-73.99006,Shared room,69,1,52,2019-07-01,3.86,8,205 +25464886,Shared Cozy Apartment By Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76418,-73.98822,Shared room,99,1,42,2019-06-23,3.12,8,181 +25465008,Shared Apartment by Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76488,-73.98832,Shared room,65,1,44,2019-06-30,3.27,8,199 +25465160,Shared Apartment By Times Square Hell’s Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76364,-73.98859,Shared room,65,1,63,2019-07-01,4.68,8,196 +25468554,Workspace Room 3,9864136,Anthony,Brooklyn,Bushwick,40.68674,-73.9151,Private room,36,2,5,2018-10-06,0.38,26,309 +25469769,Fort Greene Sanctuary,6436957,Dylan,Brooklyn,Clinton Hill,40.69127,-73.96873,Entire home/apt,125,4,1,2018-07-26,0.09,1,0 +25470017,Humble and Elegant Place of Comfort,40209604,Enoch,Brooklyn,Crown Heights,40.67459,-73.95742,Private room,50,2,60,2019-06-23,4.52,1,7 +25470372,"Rare, Classic, 2 Bed/2 Bath Williamsburg Loft",34669755,Tanya,Brooklyn,Williamsburg,40.71198,-73.96036,Entire home/apt,250,7,3,2018-09-04,0.24,1,5 +25471574,"Solo Traveler Heaven, Close to Midtown & Airports",40711894,Jessica,Queens,Elmhurst,40.73931,-73.88823,Private room,54,1,2,2019-01-01,0.17,4,0 +25474632,Coworking Style Sublet,37151670,Zoltan,Queens,Long Island City,40.7639,-73.93199,Private room,55,14,6,2019-06-28,0.45,1,61 +25475257,Spacious Clinton Hill apartment all to yourself,6104449,Leo,Brooklyn,Clinton Hill,40.68553,-73.95965,Entire home/apt,95,3,8,2019-04-29,0.63,1,12 +25475518,Carnegie Hill-Clean Small 1 bedroom,192276715,Francis,Manhattan,East Harlem,40.78703,-73.94741,Entire home/apt,115,4,44,2019-07-05,3.41,1,38 +25475944,Tourist spot,191804394,Pnb,Bronx,Longwood,40.81668,-73.89988,Private room,35,1,38,2019-06-23,2.82,2,75 +25476838,Private Apartment w/Sunny Balcony in Riverdale NYC,78289814,Tamara & Fran,Bronx,North Riverdale,40.90329,-73.89991,Entire home/apt,105,2,27,2019-06-30,2.13,1,328 +25476912,3rd floor: Charming 2 BR guest suite with balcony,38675275,Margaret,Queens,Belle Harbor,40.57592,-73.84823,Private room,200,2,4,2019-06-16,1.28,2,332 +25477608,Bright Private Bedroom Close to Central Park,192290899,Nicholas,Manhattan,Upper West Side,40.77403,-73.98803,Private room,123,3,55,2019-07-04,4.09,1,53 +25477650,Entire Historic Brownstone Condominium,182084079,Marnie,Brooklyn,Clinton Hill,40.68615,-73.96018,Entire home/apt,95,29,0,,,1,9 +25480207,Art Lover’s Loft on SoHo/Greenwich Village Border,27871113,Ruben,Manhattan,Greenwich Village,40.72926,-73.99968,Entire home/apt,300,3,14,2019-01-01,1.07,1,0 +25480524,Beautiful Room for 2 in Manhattan,95777134,Carlos,Manhattan,Upper West Side,40.77263,-73.98997,Private room,120,3,57,2019-06-30,4.23,1,48 +25480539,Bronx Roon,102501688,Julissa,Bronx,Highbridge,40.83464,-73.92505,Private room,70,2,2,2018-09-30,0.17,1,348 +25482581,Modern BR with Private Bathroom Near Central Park,146905275,Roberto,Manhattan,Upper West Side,40.77471,-73.98955,Private room,140,1,50,2019-07-02,3.71,1,69 +25483095,Spacious queen bedroom in the heart of Manhattan,113146341,Amanda,Manhattan,Upper West Side,40.76983,-73.98734,Private room,114,1,1,2018-06-10,0.08,1,0 +25484150,Spacious bedroom in East Willyb!,16121141,Afshan,Brooklyn,Williamsburg,40.71074,-73.9443,Private room,80,2,3,2018-06-17,0.22,1,0 +25484398,BRIGHT & AIRY APARTMENT IN GREENPOINT,8063576,Alex,Brooklyn,Greenpoint,40.72724,-73.94843,Entire home/apt,85,7,2,2018-10-02,0.17,1,0 +25484515,Your Home away from Home,192335868,Johnnet,Bronx,Edenwald,40.8901,-73.84031,Private room,125,1,11,2018-08-04,0.88,1,189 +25485201,West Village Pied-à-Terre,8050394,Robert,Manhattan,West Village,40.73308,-74.00456,Entire home/apt,157,2,4,2018-09-09,0.30,1,0 +25486302,Luxurious Apt in the heart of Manhattan,61391963,Corporate Housing,Manhattan,Kips Bay,40.74483,-73.97956,Entire home/apt,125,30,2,2019-04-10,0.44,91,346 +25486542,Adorable bedroom at UES!,64040975,May,Manhattan,Upper East Side,40.76525,-73.95557,Private room,90,3,1,2019-06-15,1,1,16 +25487162,Upper East Side Room,38021737,Elijah,Manhattan,Upper East Side,40.76897,-73.95375,Private room,54,4,0,,,1,0 +25487254,STUNNINGLY COMFORTABLE UWS HI-RISE STUDIO APT,54228655,Otoja,Manhattan,Upper West Side,40.79444,-73.96613,Entire home/apt,195,6,11,2019-07-05,1.05,1,200 +25487784,City Suite,38765891,Wendy,Brooklyn,Bedford-Stuyvesant,40.68344,-73.92373,Private room,230,3,19,2019-06-21,1.66,1,90 +25488542,Private Bedroom in Washington Heights,80926401,Jenna,Manhattan,Washington Heights,40.84501,-73.93861,Private room,40,2,6,2018-12-28,0.47,1,0 +25489254,"Bright, Cozy Little Room in Prime Brooklyn",192189607,Niki,Brooklyn,Bushwick,40.70382,-73.92683,Private room,65,2,7,2019-01-01,0.53,2,0 +25489369,Charming Old Greenwich Village Duplex,4129805,Evelyn,Manhattan,West Village,40.73281,-74.00205,Entire home/apt,325,2,1,2019-04-28,0.42,5,56 +25491443,New 4BDR LOFT in Williamsburg 2 stops to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.72609,-73.95681,Entire home/apt,460,1,30,2019-06-21,2.49,4,63 +25491908,The Quintessential Bushwick Loft: The Dream Cove,6778614,Lindsey,Brooklyn,Bushwick,40.70878,-73.92215,Shared room,30,3,8,2018-07-30,0.61,2,0 +25492031,UWS Studio - CENTRAL PARK WEST -,3962396,Nadir,Manhattan,Upper West Side,40.78585,-73.97069,Entire home/apt,132,30,1,2018-11-05,0.12,1,236 +25492095,Room for June-beginning of July!,144193172,Idil,Brooklyn,Crown Heights,40.67124,-73.93401,Private room,40,15,0,,,1,0 +25492295,"Style, Comfort & Convenience in NYC getaway",8067740,C. Jack,Manhattan,Harlem,40.80462,-73.95622,Entire home/apt,180,2,32,2019-07-01,3.69,1,90 +25492971,"UPPER WEST SIDE,GREAT VALUE STUDIO APT",166368558,Gregory,Manhattan,Upper West Side,40.78575,-73.97429,Entire home/apt,149,1,15,2019-07-02,4.74,1,265 +25493246,Cozy Studio Apt-One block away from Prospect Park!,192406990,Tricia,Brooklyn,Flatbush,40.65385,-73.96202,Entire home/apt,90,1,48,2019-07-06,4.19,1,21 +25493355,"Close to Central Park,renovated quite studio A",192407842,Aron,Manhattan,Upper West Side,40.78488,-73.9763,Entire home/apt,149,1,62,2019-07-03,4.77,1,224 +25497712,NEW Perfect private room near Two Bridges IV,39528519,Max,Manhattan,Lower East Side,40.71252,-73.98765,Private room,94,15,0,,,28,185 +25499011,NEW Wonderful private room near Two Bridges II,39528519,Max,Manhattan,Lower East Side,40.7107,-73.98759,Private room,91,15,0,,,28,184 +25501491,"Great apartment in staten island, New York.",192449075,Alarape,Staten Island,Graniteville,40.62439,-74.16634,Entire home/apt,115,1,36,2019-06-29,2.67,1,263 +25503149,Peaceful apartment for 2,57783233,Maia,Queens,East Elmhurst,40.75767,-73.89299,Entire home/apt,50,1,2,2018-08-04,0.16,1,0 +25503259,Private room in a two bedroom apt,3090750,Laura,Manhattan,Upper East Side,40.76931,-73.94841,Private room,55,2,2,2018-07-01,0.16,2,0 +25503835,Hidden Gem in Canarsie-FREE private parking,192464234,Rodolfo,Brooklyn,Canarsie,40.64516,-73.89684,Entire home/apt,100,1,95,2019-07-08,7.77,1,124 +25504104,**Private Bath** Master Suite in Hip Brooklyn,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94463,Private room,90,1,39,2019-05-29,2.98,4,0 +25504641,New York City Manhattan Midtown Convenient Place,192469172,J,Manhattan,Midtown,40.74342,-73.98207,Entire home/apt,160,1,68,2019-06-22,5.11,1,33 +25505473,"Beautiful, Sunny and very Clean Apartment",137836678,Deni,Queens,Sunnyside,40.74196,-73.92136,Entire home/apt,100,3,4,2019-07-01,0.34,1,326 +25506360,cozy zen master bedroom minutes from Manhattan.,37322613,Diana,Queens,Woodside,40.74422,-73.90285,Private room,60,3,3,2018-08-27,0.23,1,0 +25507340,Best in Greenwood. 1min walk & 15min to Manhttn,27922303,Aprilene,Brooklyn,Sunset Park,40.65676,-74.00224,Private room,75,2,8,2019-03-26,0.63,2,90 +25507427,Bushwick Apt,190828985,Francis,Brooklyn,Williamsburg,40.70337,-73.94081,Entire home/apt,130,1,0,,,2,0 +25508055,Two Bedrooms in Bright Brooklyn Home,20480059,Mallary,Brooklyn,Fort Greene,40.69328,-73.97001,Private room,120,3,1,2018-07-24,0.09,3,0 +25509463,"Charming oasis, w/pvt garden, 2 stops to manhattan",3094754,Numi,Brooklyn,Sunset Park,40.65399,-74.00363,Private room,149,1,1,2018-06-08,0.08,2,357 +25510480,BIG SUNNY LOVELY ROOM CENTRAL PARK,38863621,William,Manhattan,Harlem,40.80025,-73.95268,Private room,85,2,3,2018-06-21,0.23,1,0 +25510738,Central Park View-Free Museum Tickets-Private Room,101438864,Omar,Manhattan,Upper West Side,40.79558,-73.96242,Private room,182,1,38,2019-07-02,2.95,2,131 +25511717,"Gorgeous summer spot in boerum hill, brooklyn!",75110137,Christina,Brooklyn,Gowanus,40.68494,-73.9885,Private room,1333,50,0,,,1,365 +25512049,"Charming, Sunny and Spacious one bedroom apartment",2441040,Suzanne,Brooklyn,Greenpoint,40.73546,-73.9581,Entire home/apt,160,15,6,2019-06-09,0.49,1,17 +25512622,Bright Manhattan Room,184130293,Sandia,Manhattan,Inwood,40.86439,-73.92302,Private room,50,4,2,2018-07-01,0.16,2,0 +25515325,West Village One Bedroom with views,4821730,Jessica,Manhattan,West Village,40.73265,-74.00252,Entire home/apt,175,3,4,2019-04-28,0.38,1,0 +25515856,1 Bed 1 Bath on Upper West Side Manhattan,8304377,Beata,Manhattan,Upper West Side,40.78239,-73.98156,Entire home/apt,155,7,0,,,1,0 +25516958,Quiet Cozy Chelsea Studio,32703801,Jackie,Manhattan,Chelsea,40.74326,-74.00278,Entire home/apt,179,3,27,2019-07-07,2.06,1,54 +25517197,HUGE Soho LOFT 2 Bedrooms 2 Bathrooms,50249843,Na,Manhattan,SoHo,40.7228,-74.00644,Entire home/apt,350,2,11,2018-10-08,0.87,1,0 +25517202,Cosy Brooklyn room with a rooftop access,5342802,Mikaela,Brooklyn,Bedford-Stuyvesant,40.68616,-73.91866,Private room,45,3,2,2018-09-14,0.15,2,0 +25517407,Spacious room in prime Willyb! Steps 2 Bedford L,1034976,Katie,Brooklyn,Williamsburg,40.71777,-73.95824,Private room,100,1,18,2019-05-08,1.36,2,33 +25517826,Big room with mini private living room6,133130315,Artem,Manhattan,Hell's Kitchen,40.76463,-73.98562,Private room,136,3,2,2019-06-09,0.78,6,130 +25518394,Comfy Bronx retreat,90981550,Christopher R,Bronx,Morris Park,40.85548,-73.85585,Entire home/apt,125,1,76,2019-06-25,6.02,1,72 +25518572,"NYC Kosher Royal Nest - Near ""Q"" Express Metro",8997485,Uri,Brooklyn,Midwood,40.62415,-73.96029,Entire home/apt,60,2,2,2019-05-08,0.85,2,224 +25518658,Charming loft in a old town house,123664664,Mads,Manhattan,West Village,40.73291,-74.00916,Entire home/apt,200,4,2,2018-06-25,0.15,1,66 +25518930,Luxury 1 Bedroom in Williamsburg with a View!,31410956,Simon,Brooklyn,Williamsburg,40.71837,-73.94336,Entire home/apt,80,2,9,2018-09-18,0.68,1,0 +25519081,Big Size Room in a 2 Bedroom Apt,21364540,Francisca,Brooklyn,Williamsburg,40.70312,-73.93808,Private room,60,4,0,,,2,0 +25519328,Summer Luxury in Harlem !!!,66711742,Jared,Manhattan,Harlem,40.80978,-73.94408,Shared room,235,14,8,2019-07-06,0.70,1,21 +25519673,Private Room with Skyline View in Doorman Building,91392933,Irene,Manhattan,Midtown,40.75405,-73.97291,Private room,249,3,29,2019-07-01,2.20,1,41 +25519674,Hells Kitchen Pied-à-terre,72470941,Eric,Manhattan,Hell's Kitchen,40.76747,-73.9862,Private room,125,3,6,2018-09-17,0.47,1,2 +25519971,Brooklyn Gidi,192583202,Fola,Brooklyn,Brownsville,40.65832,-73.90486,Private room,65,1,1,2018-09-19,0.10,1,0 +25520827,Cozy lovely place :),60826656,Gail,Brooklyn,South Slope,40.66171,-73.9826,Private room,500,1,0,,,1,365 +25521277,"Spacious, light filled Brooklyn getaway",56631570,Natalie,Brooklyn,Bushwick,40.70294,-73.93313,Private room,45,2,16,2018-12-27,1.22,1,0 +25521464,NYC Beachfront Getaway,192594401,Jackee,Queens,Arverne,40.58821,-73.79755,Entire home/apt,325,3,21,2019-06-23,1.59,1,299 +25534630,2 bedroom Flat in Park Slope,17581024,Kemar,Brooklyn,Gowanus,40.67814,-73.98264,Entire home/apt,150,4,9,2019-06-23,0.74,2,6 +25534977,Amazing Times Square Room close to Everything,110115422,Anne,Manhattan,Midtown,40.76538,-73.98293,Private room,150,2,79,2019-07-06,7.69,1,120 +25535697,Huge Central Harlem 2 Bedroom (125th 2/3 train),7710878,Monica,Manhattan,Harlem,40.80805,-73.9456,Entire home/apt,163,3,0,,,1,0 +25537456,Prime Location On E. 62nd Street with Garden,56283770,Lia,Manhattan,Upper East Side,40.76375,-73.96667,Entire home/apt,165,30,1,2019-06-25,1,6,337 +25538397,3 bedroom Tourist's heaven 2nd floor,156557516,Ali,Queens,Long Island City,40.76094,-73.92949,Entire home/apt,189,1,47,2019-06-23,3.52,2,324 +25538850,Beautiful Classic 7 Residence UES,175327947,Dennis,Manhattan,East Harlem,40.78845,-73.95484,Private room,1100,1,1,2018-08-15,0.09,1,0 +25539490,Cheeky Private Bedroom in Bed-Stuy,44832896,Michel,Brooklyn,Bedford-Stuyvesant,40.67845,-73.90852,Private room,50,7,6,2019-05-27,1.41,1,0 +25540851,Modern Park slope duplex 4 bedrooms,1418307,Gal,Brooklyn,Park Slope,40.67133,-73.98714,Entire home/apt,200,1,1,2018-06-09,0.08,1,0 +25541005,WeLive Wall Street -- One Bedroom Apartment,159610596,WeWork,Manhattan,Financial District,40.70583,-74.00545,Entire home/apt,225,1,22,2019-06-24,7.59,6,323 +25541772,Luxurious and Spacious 2 Bedroom Brownstone,192713943,Killian,Brooklyn,Clinton Hill,40.68109,-73.96193,Entire home/apt,350,2,0,,,1,18 +25542088,Private bedroom in Upper East Side / East Harlem,3046221,Lucelenie,Manhattan,East Harlem,40.78936,-73.94918,Private room,46,30,0,,,1,92 +25543393,Charming Photo Set & Studio Loft,192723267,Blake,Brooklyn,Williamsburg,40.70753,-73.93623,Entire home/apt,350,2,1,2019-06-23,1,1,171 +25543561,NYC LUXURY PENTHOUSE MIDTOWN &GYM&AMAZING VIEW,133596333,Talia,Manhattan,Kips Bay,40.74383,-73.97798,Entire home/apt,499,3,11,2019-06-25,0.82,1,55 +25544243,Quiet & cozy one bedroom in Washington Heights,192712383,Kevin,Manhattan,Washington Heights,40.85573,-73.93181,Entire home/apt,115,2,16,2019-06-23,1.26,1,81 +25545177,Beautiful room in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.7054,-73.90233,Private room,100,1,9,2019-05-27,0.68,3,90 +25545275,2BR LES Apartment Near Best Food and Bars in NYC,192716996,Kohl,Manhattan,Lower East Side,40.72077,-73.98427,Private room,95,1,9,2018-11-24,0.68,1,0 +25545372,Very small room near Columbia Uni med school,163813488,Mike,Manhattan,Washington Heights,40.84287,-73.94093,Private room,43,1,10,2019-05-27,0.82,1,116 +25545392,Typical New York City LOFT studio,191765199,Elena,Manhattan,Washington Heights,40.83354,-73.94203,Entire home/apt,120,1,72,2019-06-03,5.37,6,53 +25545958,"*Solo NY Explorer | Comfy, Quiet Space",31077393,Fulani,Queens,Ridgewood,40.70004,-73.89864,Private room,88,5,0,,,1,0 +25546222,Private Brooklyn Historic Brownstone Duplex,192741854,Bethany,Brooklyn,Bedford-Stuyvesant,40.68408,-73.93383,Entire home/apt,215,2,49,2019-06-21,3.95,2,218 +25546901,Green home by Prospect Park,29506,Clare,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95902,Entire home/apt,200,5,4,2019-01-01,0.33,1,1 +25547839,"Bright Modern LUX 1BR with pool, gym and sauna",69578078,Olivia,Manhattan,Hell's Kitchen,40.76243,-73.99805,Entire home/apt,299,1,31,2019-06-30,2.74,1,84 +25548071,SoHo Bedroom Central and Close to Many Subways,36579046,Robert,Manhattan,SoHo,40.72092,-74.00018,Private room,115,1,75,2019-06-29,5.80,1,11 +25548615,Beautiful 1BR in the heart of the West Village,3828080,Kathleen,Manhattan,Greenwich Village,40.73062,-73.99981,Private room,199,5,0,,,1,0 +25550429,"NEW Listing! Sunny, spacious, Park Slope apt.",17714108,Ali & Guillaume,Brooklyn,Park Slope,40.67787,-73.98169,Entire home/apt,129,5,8,2019-05-25,0.61,1,0 +25551687,Perfect room in Williamsburg (10min to Manhattan),889683,Rachel,Brooklyn,Williamsburg,40.71273,-73.94841,Private room,84,1,95,2019-06-15,7.13,2,51 +25552076,Private Garden. Trendy Williamsburg location!,184009385,Artem,Brooklyn,Williamsburg,40.7129,-73.94251,Entire home/apt,170,2,47,2019-06-20,3.70,2,57 +25554120,Cozy and modern one Bedroom Apartment,192793716,Claudia,Manhattan,Upper East Side,40.77637,-73.95151,Entire home/apt,149,30,25,2019-06-04,2.01,1,0 +25568873,Newly renovated apartment in the heart of Brooklyn,192861009,Ish,Brooklyn,Crown Heights,40.67046,-73.91785,Private room,47,1,37,2019-06-30,2.82,2,89 +25571627,Beautiful Modern Spacious 3 bedroom Apartment,192874460,Marie,Brooklyn,Flatlands,40.62915,-73.9198,Entire home/apt,125,2,64,2019-06-27,4.92,1,194 +25572892,Bright 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74472,-73.97205,Entire home/apt,177,29,1,2019-03-31,0.30,96,58 +25580113,2000sqf Modern Loft style Townhouse Williamsburg,192915666,Kazuyuki,Brooklyn,Williamsburg,40.71579,-73.93892,Entire home/apt,500,3,16,2019-06-08,1.26,1,160 +25580283,Bright room in beautiful Park Slope apartment,20867842,Sarah,Brooklyn,Sunset Park,40.65877,-73.98974,Private room,60,3,3,2018-06-23,0.23,1,0 +25582365,Lovely 1 bedroom in Washington heights!,4463195,Lenny,Manhattan,Washington Heights,40.8522,-73.93456,Entire home/apt,100,1,1,2018-06-03,0.07,1,0 +25583366,Upper East Side entire flat - Close to Subway,14073337,Marc & Youna,Manhattan,Upper East Side,40.77773,-73.95383,Entire home/apt,180,4,9,2019-05-26,0.71,1,4 +25584852,Huge Room With TV Uptown Manhattan,69862540,Rina,Manhattan,Washington Heights,40.8395,-73.94156,Private room,65,2,38,2019-06-27,2.97,3,21 +25584983,Newly remodeled modern home in LES,159114297,John,Manhattan,Chinatown,40.71714,-73.99229,Entire home/apt,200,1,23,2019-06-23,3.77,1,23 +25587778,Cozy Bedroom Full of Sunshine,46979077,Maya,Queens,Woodside,40.74286,-73.89163,Private room,50,1,57,2019-06-23,4.37,2,295 +25587783,Amazing Artist-Inspired Loft in Bushwick Brooklyn,794878,Freddie,Brooklyn,Bushwick,40.70783,-73.92143,Private room,150,3,5,2019-01-02,0.49,1,39 +25588085,ELEGANT 2 BEDROOM private apt in BROOKLYN,158399244,Ted,Brooklyn,Crown Heights,40.6708,-73.94011,Entire home/apt,159,1,52,2019-06-21,4.07,4,110 +25589726,Comfy Brownstone 1BR with backyard,75569180,Joachim,Brooklyn,Bedford-Stuyvesant,40.68473,-73.92725,Entire home/apt,130,4,2,2018-06-17,0.15,1,0 +25590224,Private furnished room near Columbia University,673215,Jessica Rose,Manhattan,Harlem,40.82441,-73.95327,Private room,100,3,1,2018-09-18,0.10,2,263 +25590707,美国 家庭风----幸运纽约客 民宿,192895513,Vivi,Queens,Flushing,40.75552,-73.83012,Private room,65,2,7,2019-01-02,0.53,3,341 +25590851,Cozy master bedroom in HK: LGBT FRIENDLY.,35342651,David,Manhattan,Hell's Kitchen,40.76633,-73.98325,Private room,100,14,1,2018-06-30,0.08,1,0 +25602541,High Ceiling Loft in Flatiron (3 mins to Subway),192997396,Nati,Manhattan,Kips Bay,40.74029,-73.98337,Entire home/apt,185,1,23,2019-06-27,1.87,1,133 +25606022,Sophisticated and Cozy Pre-War 2 bedroom,142178595,Adelaide,Manhattan,Upper West Side,40.7982,-73.97063,Entire home/apt,150,30,0,,,1,310 +25606562,Stunning 1 bedroom/ 1 bath apartment in Manhattan,16978300,Anna,Manhattan,Upper West Side,40.77226,-73.98876,Entire home/apt,225,2,0,,,1,0 +25607226,Your Absolute Best NYC Experience!!!,190482413,Omari,Manhattan,East Village,40.72873,-73.98759,Entire home/apt,398,2,32,2019-06-13,3.06,1,139 +25610763,Large cozy bedroom close to Times Square 43D4,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99674,Private room,62,7,3,2019-06-02,0.52,47,324 +25610990,Luxury Living in Greenpoint,193031210,Chris,Brooklyn,Greenpoint,40.72983,-73.95808,Entire home/apt,180,10,16,2019-06-15,1.27,1,61 +25614818,New York Apartment steps from Central Park,77108752,Tyler,Manhattan,Morningside Heights,40.80227,-73.95985,Entire home/apt,250,3,0,,,1,0 +25616250,"Stylish, spacious, private 1BR apt in Ditmas Park",125396920,Adam,Brooklyn,Flatbush,40.64314,-73.95705,Entire home/apt,75,3,10,2019-01-03,0.84,1,0 +25616450,1st Floor Cozy 1Br Apt. Near YANKEE STADIUM,193054505,Telia,Bronx,Morrisania,40.82936,-73.90867,Entire home/apt,150,1,26,2019-07-01,3.15,1,175 +25618799,Shared space w/privacy near NY Botanic Garden,21850707,Letitia,Bronx,Norwood,40.87077,-73.8817,Shared room,33,2,8,2019-05-19,0.71,1,6 +25618970,Williamsburg Luxury Artist Loft With All Amenities,249006,Samuel,Brooklyn,Williamsburg,40.7213,-73.96042,Entire home/apt,200,5,11,2019-06-29,0.92,1,0 +25619146,Beautiful Parlor Fl. 1 br - Historic Clinton hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68339,-73.9645,Entire home/apt,99,30,3,2018-09-16,0.25,2,40 +25619849,Welcome to YURT -- comfy room in East Village,3436710,Kaptan,Manhattan,East Village,40.7252,-73.97598,Private room,100,1,13,2019-06-23,0.99,2,335 +25622377,The Green Room,180154611,Marlyn,Brooklyn,Canarsie,40.63808,-73.9001,Private room,49,2,10,2019-01-03,0.78,3,354 +25622574,Cute Bunker Beds,62533391,Yvonne,Brooklyn,Borough Park,40.63396,-74.00729,Private room,50,1,6,2019-05-06,0.46,7,365 +25624101,Blessings,4384604,Hiba,Manhattan,East Harlem,40.80983,-73.9384,Private room,83,2,6,2019-04-23,0.46,1,77 +25625417,The Palace of Perhaps (Bushwick / Ridgewood),21061846,Briana,Queens,Ridgewood,40.69943,-73.90712,Private room,40,2,13,2019-06-28,0.99,1,0 +25626152,Comfortable Flatbush Bedroom & Living Room (Rm# 3),147972663,Hyacinth,Brooklyn,East Flatbush,40.64987,-73.93855,Private room,45,3,33,2019-06-22,2.61,3,320 +25626932,10 mins to Free Ferry to Manhattan NYC new mall,182272609,Denada,Staten Island,Tompkinsville,40.63369,-74.09489,Entire home/apt,161,1,24,2019-06-02,1.82,2,87 +25629624,Minutes to everything in the middle of Manhattan,102649225,Jasmine,Manhattan,Murray Hill,40.74652,-73.97637,Private room,125,1,21,2018-12-23,1.63,1,0 +25635162,LARGE SUNNY 1BD 10 MIN TO MANHATTAN,193126561,Adelina,Queens,Astoria,40.75859,-73.91334,Entire home/apt,90,3,37,2019-06-22,3.22,1,127 +25635216,Clean and Nice Central Park Apt in Lincoln Center,193127179,Sagawa,Manhattan,Upper West Side,40.7764,-73.98236,Private room,85,4,18,2019-05-03,1.38,1,133 +25637401,Cozy Shared Apartment in Midtown Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76361,-73.98992,Shared room,69,1,81,2019-06-21,6.09,8,192 +25638322,Nice area accessible to all public transportation!,106018910,Maria,Queens,Elmhurst,40.73641,-73.87863,Private room,85,1,2,2018-07-15,0.16,1,0 +25639256,Cozy Overnight Bed in Hell's Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76276,-73.98932,Shared room,65,1,55,2019-07-07,4.19,8,204 +25639737,QUIET ROOM IN A BIG NOICY NEW YORK :),137191484,Maria,Manhattan,Hell's Kitchen,40.76362,-73.98546,Private room,99,1,40,2019-06-30,3.05,5,346 +25665981,Bright and Airy 2 Bedroom Apt,151421618,Adesh & Viviana,Queens,Ozone Park,40.6831,-73.84438,Entire home/apt,110,4,6,2019-06-04,0.88,2,140 +25666271,private bedroom in the center of NYC action 21B4,190921808,John,Manhattan,Hell's Kitchen,40.75374,-73.99517,Private room,70,7,8,2019-01-08,0.73,47,310 +25668516,Great cozy room near the center of NYC 12AR,190921808,John,Manhattan,Hell's Kitchen,40.75407,-73.99528,Private room,100,7,8,2019-06-09,0.64,47,271 +25669472,"Modern, comfy studio apartment",121851703,Mo,Queens,Queens Village,40.72105,-73.73444,Entire home/apt,25,1,45,2019-07-01,3.37,2,292 +25672309,Gramercy Apartment Steps from Union Square,59980195,Jesse,Manhattan,Gramercy,40.73467,-73.98501,Entire home/apt,225,3,0,,,1,0 +25673527,Private Apartment with 2 BEDs at Union Square,193278931,Mitsu,Manhattan,Gramercy,40.73579,-73.98636,Entire home/apt,110,3,33,2019-06-18,2.64,1,15 +25673769,Comfortable and bright bedroom in a great location,28753907,Pablo & Anastasiya,Queens,Astoria,40.76,-73.90684,Private room,60,2,35,2019-06-30,2.67,1,204 +25673898,"Clean, Quiet, Spacious Room in Brooklyn",10373779,Carla,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9484,Private room,55,3,4,2019-01-01,0.35,2,0 +25674277,Private room right next to Central Park!!,193282294,Sophie,Manhattan,Upper West Side,40.79468,-73.9647,Private room,98,2,48,2019-06-19,3.95,4,238 +25674366,Mid Century Modern Williamsburg Condo,9038810,Sanjay,Brooklyn,Williamsburg,40.71577,-73.9553,Entire home/apt,295,3,11,2019-05-16,0.87,1,1 +25674371,Home away from home!,53440969,CJ & Raissa,Queens,Queens Village,40.71288,-73.74334,Entire home/apt,80,2,43,2019-02-10,3.27,1,189 +25677480,Comfy 6ft. couch in living room,9726872,Natalie,Manhattan,Upper East Side,40.7677,-73.95476,Shared room,70,1,7,2018-12-09,0.55,1,66 +25677571,Manhattan View Garden Home,193296202,Freda,Queens,Long Island City,40.74646,-73.95324,Entire home/apt,400,3,3,2019-04-16,0.36,2,334 +25677687,Peaceful Room in Williamsburg,6787261,Anastasia,Brooklyn,Williamsburg,40.71021,-73.95563,Private room,66,2,6,2018-07-26,0.46,2,0 +25678517,Upper West Side private room by Central Park,193282294,Sophie,Manhattan,Upper West Side,40.79453,-73.96472,Private room,98,2,51,2019-06-23,4.23,4,219 +25678522,"Quiet West Village one bdrm apt, dwntwn Manhattan",660723,Aryuna,Manhattan,West Village,40.73416,-74.00424,Entire home/apt,186,10,7,2019-06-09,0.54,1,79 +25679063,Luxury private house in Queens,16507770,Jinfei,Queens,Briarwood,40.71052,-73.80906,Private room,60,1,46,2019-07-05,3.68,3,108 +25679101,Room at walking distance from Central Park!,193282294,Sophie,Manhattan,Upper West Side,40.79613,-73.96468,Private room,97,2,55,2019-06-08,4.52,4,246 +25679492,Luxury house 皇后区豪华园林式独立别墅适合家庭出游理想住宿自由畅享私家空间,16507770,Jinfei,Queens,Briarwood,40.71016,-73.81118,Private room,60,2,9,2019-05-27,0.74,3,171 +25679709,Clean Private Room in Manhattan!,193282294,Sophie,Manhattan,Upper West Side,40.79598,-73.96255,Private room,98,2,52,2019-06-18,4.25,4,242 +25680422,Converted Knitting Factory LOFT in N. Williamsburg,10671580,Emerald,Brooklyn,Williamsburg,40.7157,-73.95353,Entire home/apt,200,30,4,2019-06-10,0.35,1,101 +25680531,Large private room near Times Sq. 33C4,190921808,John,Manhattan,Hell's Kitchen,40.75391,-73.99709,Private room,62,7,9,2019-05-20,0.75,47,337 +25681692,Sunny room near center of the big apple 61F2,190921808,John,Manhattan,Hell's Kitchen,40.7558,-73.99677,Private room,62,7,6,2019-05-08,0.66,47,328 +25683401,Gorgeous Sunny Studio step away from Central Park,63266842,Lily,Manhattan,Upper East Side,40.76996,-73.9576,Entire home/apt,138,2,57,2019-07-05,4.44,1,1 +25683408,Modern Space in Charming Pre-war #2,805344,Alec,Manhattan,Harlem,40.82414,-73.95139,Private room,65,2,3,2019-07-06,3,2,68 +25683815,Spacious bedroom in central Fort Greene,2533676,Rachel,Brooklyn,Fort Greene,40.68543,-73.97622,Private room,90,4,2,2019-05-30,0.16,1,88 +25684094,Surfin’ Bird House Red at Rockaway Beach,185956783,John & Christine,Queens,Rockaway Beach,40.58499,-73.81599,Entire home/apt,99,4,21,2019-07-07,1.66,1,133 +25686640,Charming 2 Bedroom in Fashionable East Village,193335348,Julia,Manhattan,East Village,40.727,-73.98406,Entire home/apt,350,2,69,2019-07-06,5.27,1,291 +25688649,Brooklyn Bedstuy Beauty,1557774,Nardia,Brooklyn,Bedford-Stuyvesant,40.68425,-73.9567,Entire home/apt,140,5,27,2019-06-16,2.12,1,0 +25689024,*** Brooklyn Secret Spot ***,127345864,Charlene,Brooklyn,East Flatbush,40.64172,-73.93073,Entire home/apt,85,2,33,2019-07-03,2.74,4,34 +25694039,"Spacious, NEW LUXURY 1 BDRM home in Manhattan",3970656,Melissa,Manhattan,Financial District,40.70819,-74.00662,Entire home/apt,200,3,37,2019-06-08,2.85,1,2 +25698744,Cozy room with Private terrace 7th floor,16877292,D,Manhattan,East Harlem,40.79461,-73.94111,Private room,90,1,8,2019-06-09,0.63,2,208 +25710052,Cozy bedroom in Bushwick!,45859780,Alexandria,Brooklyn,Bushwick,40.68785,-73.91361,Private room,60,1,5,2018-10-01,0.39,1,0 +25716221,Spacious & minimal pre-war apartment,2736762,Emelie,Manhattan,Chelsea,40.7406,-74.00433,Entire home/apt,225,3,3,2018-10-08,0.24,1,0 +25719044,COZY Room for Female Guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66242,-73.94417,Private room,48,1,131,2019-05-31,9.97,2,0 +25719557,Big Apple Retreat,102799406,Gail,Queens,Maspeth,40.71301,-73.90716,Entire home/apt,149,3,8,2019-05-26,0.61,2,350 +25719757,"Huge, spacious, chic Gramercy 1 bedroom",1741498,Eve,Manhattan,Gramercy,40.73748,-73.98354,Entire home/apt,200,2,3,2018-08-12,0.24,1,0 +25721731,BEAUTIFUL MURRAY HILL SUITES-EAST 38TH,2856748,Ruchi,Manhattan,Murray Hill,40.74758,-73.97329,Entire home/apt,225,30,0,,,49,364 +25722216,luxury house in queens,16507770,Jinfei,Queens,Briarwood,40.71017,-73.80965,Private room,50,2,30,2019-06-23,2.41,3,92 +25723733,Cozy place.,183240218,Adedeji,Queens,Jamaica,40.67051,-73.77693,Private room,65,1,74,2019-06-14,6.05,1,211 +25724871,"Bright, Breezy Private Bedroom in Harlem",26922164,Maggie,Manhattan,Harlem,40.81371,-73.95242,Private room,80,2,11,2019-01-02,0.85,1,0 +25725858,Comfortable friendly atmosphere,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69449,-73.93726,Private room,87,2,4,2019-05-26,0.32,5,330 +25727611,Beautiful room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69329,-73.93906,Private room,87,2,4,2019-05-24,0.45,5,337 +25728315,MODERN 2 BEDROOM private apt in BROOKLYN,158399244,Ted,Brooklyn,Crown Heights,40.67221,-73.93937,Entire home/apt,149,1,39,2019-06-23,3.01,4,150 +25728623,Sunny 1BED in Heart of Williamsburg,21216045,Molly,Brooklyn,Williamsburg,40.71233,-73.96208,Entire home/apt,169,4,12,2019-06-25,0.95,1,60 +25731392,THE JEWEL OF CROWN HEIGHTS,166269959,Mor,Brooklyn,Crown Heights,40.67031,-73.9354,Private room,95,4,0,,,1,0 +25734018,Fully renovated Park Slope brownstone apartment,34758216,Rebecca,Brooklyn,Park Slope,40.67796,-73.97616,Entire home/apt,305,2,67,2019-07-02,5.19,1,101 +25734212,Gracious Brooklyn Brownstone in Historic District,25268332,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95615,Entire home/apt,525,2,5,2019-01-21,0.49,1,21 +25734716,Cozy loft @ Greenpoint. Mins to Manhattan!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72536,-73.95581,Private room,102,1,40,2019-05-23,3.12,7,59 +25736749,UpperWestSide/2B1BA/SHORT-TERM/FURNISHED,193521500,Amy-JPSU,Manhattan,Upper West Side,40.79874,-73.96649,Entire home/apt,220,7,19,2019-06-14,1.45,1,23 +25737165,Lux Studio Suite+ Kitchen+Gym+Rooftop @FiDi!,73456844,Lilian,Manhattan,Financial District,40.70659,-74.01002,Entire home/apt,179,3,8,2019-07-06,0.64,1,102 +25739275,Real Brownstone Brooklyn Living On Subway Line,18139709,Cal,Brooklyn,East Flatbush,40.65239,-73.94824,Entire home/apt,190,3,1,2018-06-24,0.08,1,0 +25739336,1st flr hugeW room Bklyn D train shopping/ corner,12834599,Ms. Edith,Brooklyn,Borough Park,40.63244,-73.99338,Private room,50,3,1,2018-06-21,0.08,4,89 +25740704,Beautifully Renovated 3BD/2BA ☆ 1 Block to Subway,193151416,Mohammed,Brooklyn,East Flatbush,40.64707,-73.95074,Entire home/apt,140,2,64,2019-07-06,4.96,1,220 +25742944,Bright beautiful studio with skyline views!,17254282,Kendall,Manhattan,Upper East Side,40.78133,-73.95198,Entire home/apt,220,2,3,2018-11-25,0.23,1,0 +25745372,Beautiful Private Room & Bath in East Village Loft,193558362,Christine,Manhattan,East Village,40.72421,-73.97963,Private room,124,2,11,2019-05-20,0.94,1,3 +25745458,Huge and beautiful 2BR in Greenpoint Brooklyn,2483350,Avital,Brooklyn,Greenpoint,40.73503,-73.9547,Entire home/apt,114,10,1,2019-02-07,0.20,1,0 +25752683,Chelsea Studio Apt,37239193,Ido,Manhattan,Chelsea,40.74016,-73.99902,Entire home/apt,199,2,1,2018-08-30,0.10,1,0 +25755215,Art Filled Bohemian Chic,193583966,Jean,Brooklyn,Williamsburg,40.71681,-73.95729,Entire home/apt,135,5,14,2019-06-16,1.12,1,44 +25763994,Cozy Hamilton Heights Room for 1 or 2,33680599,Kaila,Manhattan,Harlem,40.82913,-73.94718,Private room,55,2,17,2019-06-15,1.35,1,125 +25764939,"Penny's Place Brooklyn, NY",186481199,Penny,Brooklyn,East Flatbush,40.65496,-73.94405,Private room,125,1,0,,,1,311 +25764974,Deluxe Family Studio with Empire State views #7,177174475,Alberto,Manhattan,Midtown,40.74815,-73.98832,Entire home/apt,131,1,10,2019-05-23,0.84,17,224 +25765042,Awesome Private Bushwick studio!,1290870,Gus,Brooklyn,Bushwick,40.69848,-73.91179,Entire home/apt,100,2,60,2019-07-08,4.74,1,39 +25766100,Bedroom - in the heart of the East Village,21507811,Livia,Manhattan,East Village,40.7293,-73.98325,Private room,95,2,4,2019-03-24,0.31,2,0 +25767363,Luxurious New Building in the Heart of Bushwick,2152359,Alexandre,Brooklyn,Bushwick,40.69905,-73.92466,Entire home/apt,220,4,0,,,1,0 +25767382,Duplex with private terrace in Williamsburg,11309938,Wei,Brooklyn,Williamsburg,40.7128,-73.96244,Entire home/apt,135,60,0,,,1,263 +25769495,Historic New York Home,50749495,Cristina,Manhattan,NoHo,40.72842,-73.99289,Private room,80,7,10,2019-06-09,0.93,1,317 +25769883,Private room + bathroom in 2 bed apartment,1317353,Alper,Brooklyn,Bedford-Stuyvesant,40.68174,-73.94437,Private room,89,3,2,2019-05-11,0.16,1,176 +25770425,New York City home away from home :),32113962,Ania,Staten Island,St. George,40.64497,-74.08267,Entire home/apt,97,4,19,2019-06-20,1.54,1,131 +25770975,Sonder | 180 Water | Charming Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70626,-74.00565,Entire home/apt,167,29,0,,,96,322 +25771285,Spacious and convenient Harlem Guest Room.,8124038,Crystal,Manhattan,Harlem,40.82823,-73.93925,Private room,45,5,17,2019-06-30,1.36,1,119 +25772415,Brooklyn Care & Comfort,105828086,Nikki,Brooklyn,Flatbush,40.64324,-73.96332,Private room,45,2,26,2019-07-01,2.02,4,2 +25772890,"Rustic room in beautiful, naturesque Fort Greene",71987360,Brendan,Brooklyn,Clinton Hill,40.6943,-73.96917,Shared room,45,2,4,2018-08-13,0.31,1,0 +25773391,Beautiful Room in Fort Greene,3687035,Abeyu,Brooklyn,Fort Greene,40.68464,-73.97094,Private room,75,3,9,2019-07-03,0.75,1,7 +25774497,Sanctuary on Court Street (Carroll Gardens),61017447,Catherine,Brooklyn,Carroll Gardens,40.6755,-73.99806,Private room,100,2,35,2019-06-09,2.75,1,0 +25774787,"Cozy & Chic 1 Bedroom, Upper East Side, Manhattan",61981690,Roseanne,Manhattan,Upper East Side,40.7752,-73.95572,Entire home/apt,189,5,18,2019-07-03,1.40,1,21 +25775969,Private room for two in Harlem apartment!,18886157,Alexandra,Manhattan,Harlem,40.80018,-73.95379,Private room,70,6,2,2019-06-30,0.32,1,0 +25776030,Private Room in the heart of NYC. Room 3 of 3,22463377,Allison,Manhattan,Murray Hill,40.74907,-73.97818,Private room,120,1,52,2019-07-04,4.26,3,40 +25776093,Sonder | 116 John | Charming Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70724,-74.0051,Entire home/apt,164,29,0,,,96,326 +25776872,4 Bedroom Townhouse near Prospect Park w/Garden,193717499,Amy,Brooklyn,Windsor Terrace,40.64919,-73.9731,Entire home/apt,375,7,1,2018-07-21,0.08,1,8 +25776914,BROOKLYN Quiet Den,12219437,Alex,Brooklyn,Canarsie,40.64795,-73.89337,Private room,25,2,36,2019-06-16,2.76,1,144 +25779152,Quiet 2BD Brooklyn Cheap Stay,1395940,Reggie,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92151,Entire home/apt,165,1,42,2019-06-21,3.16,1,133 +25779464,Lovely Room in the Heart of Manhattan,137358866,Kazuya,Manhattan,Harlem,40.81118,-73.94231,Private room,56,30,4,2019-04-06,0.37,103,244 +25779937,Simple & Convenient Manhattan Room,137358866,Kazuya,Manhattan,Harlem,40.81207,-73.94359,Private room,52,30,2,2019-01-31,0.18,103,184 +25780292,Cozy 2 Bedroom in Murray Hill!,15372962,Christian,Manhattan,Kips Bay,40.74493,-73.97743,Entire home/apt,275,3,1,2018-08-09,0.09,1,0 +25780953,Large one-bedroom in heart of West Village,2572082,Blair,Manhattan,West Village,40.73492,-74.00418,Entire home/apt,250,2,5,2019-06-24,0.57,1,48 +25781295,Big private room in Sunnyside NYC 7 min Subway,58234433,Martin,Queens,Sunnyside,40.73575,-73.9206,Private room,89,1,12,2019-06-16,0.93,8,282 +25781535,Great private room in NYC 20 min to Manhattan,58234433,Martin,Queens,Sunnyside,40.73692,-73.91967,Private room,89,1,18,2019-06-14,1.38,8,297 +25782709,Spacious Private Room Near A C train in Brooklyn,32708211,Patnaree,Brooklyn,Bedford-Stuyvesant,40.68096,-73.93707,Private room,49,1,42,2019-07-01,3.37,1,221 +25783309,1 Bdrm in Beautiful Brownstone filled with light,7185380,Lucia,Brooklyn,Bedford-Stuyvesant,40.68332,-73.93627,Private room,60,3,7,2018-12-16,0.54,1,0 +25783739,In the heart of the East Village,21507811,Livia,Manhattan,East Village,40.72727,-73.98272,Entire home/apt,159,2,6,2019-01-02,0.51,2,0 +25784814,"4 min walk to Times Square, close to everything!",193744745,Rob,Manhattan,Hell's Kitchen,40.76148,-73.99279,Private room,120,7,1,2018-07-09,0.08,1,0 +25785298,Spacious room in Williamsburg (10min to Manhattan),889683,Rachel,Brooklyn,Williamsburg,40.71264,-73.94889,Private room,88,1,71,2019-06-21,5.37,2,51 +25786000,Explorer's Apartment,193791518,Micheal,Manhattan,Midtown,40.75565,-73.96722,Entire home/apt,186,3,45,2019-07-06,3.80,1,219 +25786994,Manhanton high rising apartment next to the subway,183033408,Jill,Manhattan,Harlem,40.8129,-73.94084,Entire home/apt,99,5,7,2019-03-09,0.63,1,0 +25788995,Country Touches Private Bedroom In Upper West Side,43809903,Eddie,Manhattan,Upper West Side,40.80246,-73.96631,Private room,90,1,51,2019-06-01,3.88,4,39 +25794631,Private room in Brooklyn!,28778026,Shahed,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9559,Private room,70,1,3,2019-04-21,0.26,2,86 +25796599,Common Single Room # 1,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.6861,-73.92859,Private room,40,1,125,2019-06-30,9.47,6,325 +25798461,Large 2 bedroom downtown Loft Apartment,195803,Zinnia,Manhattan,NoHo,40.72555,-73.99283,Entire home/apt,649,1,5,2018-11-03,0.40,1,75 +25798517,Living Art Gallery Room in New Bushwick Building,6726656,Yelle,Brooklyn,Bushwick,40.70117,-73.92545,Private room,50,2,32,2019-06-21,2.78,3,114 +25798995,ARTIST SPACE,850526,Fallon,Brooklyn,Bushwick,40.69133,-73.90538,Private room,45,4,6,2018-09-22,0.47,1,0 +25799803,Private Room in Open Brick loft in Williamsburg,11767749,Chiara,Brooklyn,Williamsburg,40.7137,-73.96674,Private room,95,2,15,2019-05-27,1.16,1,3 +25799863,Penthouse Private room w Private Rooftop + ensuite,13089912,Leo,Manhattan,East Village,40.72331,-73.98424,Private room,149,1,14,2019-06-11,1.08,2,264 +25799876,Modern 2 bedroom apartment,193877830,Lilia And Mateo,Brooklyn,Midwood,40.61722,-73.96696,Entire home/apt,50,3,14,2019-02-28,1.06,1,0 +25801507,Beautiful South Park Slope Brooklyn Apartment,17075886,Zipi,Brooklyn,Sunset Park,40.66132,-73.99192,Entire home/apt,280,3,2,2019-04-28,0.79,1,0 +25802560,Bright Big Beautiful Apt border Bushwick/Ridgewood,3543204,Andrea,Brooklyn,Bushwick,40.704,-73.91492,Private room,75,2,19,2019-06-03,1.47,1,198 +25802592,"Sunnyside - Huge Private Bedroom, right by 7train",172541609,S,Queens,Sunnyside,40.74625,-73.91388,Private room,65,2,10,2019-07-05,0.78,1,44 +25802893,Cozy Artist Apartment,5772223,Stephanie,Brooklyn,Borough Park,40.64512,-73.99839,Entire home/apt,100,14,8,2019-06-28,0.63,1,69 +25803113,"Upper Manhattan, Beautiful Sunlit Space",69563112,Zahra,Manhattan,Harlem,40.81279,-73.95208,Private room,80,3,1,2018-06-20,0.08,1,0 +25803743,Queen Private Room Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80364,-73.95025,Private room,80,2,21,2019-06-26,1.66,4,136 +25803944,Meteorine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95506,Private room,60,2,18,2019-06-17,1.63,34,0 +25804337,One Bedroom Bed-Stuy Walk-Up,6328069,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95072,Entire home/apt,100,2,5,2018-08-25,0.43,1,0 +25804387,Private room by Prospect Park in Brooklyn,106783508,Gilford,Brooklyn,Flatbush,40.65374,-73.96104,Private room,35,60,0,,,1,0 +25804768,NEW Charming & Modern 2 Bed- Private Backyard!,193910244,Breanna,Brooklyn,Crown Heights,40.67747,-73.95086,Entire home/apt,250,2,20,2018-12-30,1.58,1,0 +25804970,Tropical Room in Brooklyn Heights,11280566,Paris,Brooklyn,Brooklyn Heights,40.69872,-73.99338,Private room,75,2,53,2019-06-18,4.12,1,0 +25805051,"Clean, peaceful, and bright apartment in Brooklyn",51535263,Ricardo,Brooklyn,Bushwick,40.69966,-73.93883,Entire home/apt,60,1,8,2019-03-23,0.73,1,0 +25805422,Awesome clean & cozy space in Sunset Park!,37684272,J,Brooklyn,Borough Park,40.6467,-73.99679,Private room,49,2,77,2019-07-01,5.83,1,0 +25805430,A Contemporary Homelike Stay in the Best of BK,32252422,Mckinley,Brooklyn,East Flatbush,40.63961,-73.93281,Entire home/apt,125,2,56,2019-07-02,4.22,2,332 +25806562,Private room by Prospect Park - 25min to Manhattan,132497591,Herick,Brooklyn,Flatbush,40.64924,-73.95292,Private room,50,4,2,2019-06-21,0.27,1,27 +25807047,"Upper EastSide Apartment, Quick Access to Downtown",31237776,Tunde,Manhattan,East Harlem,40.79059,-73.94332,Private room,50,14,1,2018-06-11,0.08,1,0 +25807578,Cute Brooklyn One Bedroom Apartment,22208953,Kirstie,Brooklyn,Prospect-Lefferts Gardens,40.65548,-73.95707,Entire home/apt,100,7,5,2018-08-06,0.39,1,1 +25807815,A classy room in Harlem,63417081,Devon,Manhattan,Harlem,40.82375,-73.94426,Private room,43,30,1,2019-05-18,0.58,8,310 +25809641,Light & Spacious Artist Loft with Vintage Charm,28484697,Mariah,Brooklyn,Red Hook,40.67304,-74.01231,Entire home/apt,200,2,10,2019-05-23,0.87,1,345 +25810632,Private room w/ pvt entrance near Times Sq. 22B,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99558,Private room,55,7,12,2019-06-23,1.09,47,354 +25810744,Sunny room with a great view near Times Sq. 51E3,190921808,John,Manhattan,Hell's Kitchen,40.75554,-73.99702,Private room,54,7,6,2019-06-09,0.58,47,359 +25810952,1 bed in the heart of Financial District of NYC,43279803,Chelsea,Manhattan,Financial District,40.70934,-74.01001,Private room,80,3,34,2019-06-22,2.58,1,83 +25811286,Queen Bed in Full Floor East Village Apartment,134613498,Adonis,Manhattan,East Village,40.72626,-73.98824,Private room,140,1,7,2019-05-19,0.73,7,1 +25811825,A Perfect Match! The NYC All-Rounder Apartment,74374901,Suzanne,Manhattan,Hell's Kitchen,40.75652,-73.99069,Entire home/apt,250,3,44,2019-06-07,3.53,1,48 +25812187,Beautiful Prewar New York City Apartment!,193947911,TaRi,Queens,Astoria,40.76356,-73.92102,Entire home/apt,250,4,5,2018-09-03,0.44,1,1 +25812660,*Luxurious* Sparkling Clean Two Bedroom Apartment,183803880,Alisa,Manhattan,Hell's Kitchen,40.76578,-73.98383,Entire home/apt,499,3,26,2019-06-20,2.50,1,0 +25812700,Airy Brownstone 20 minutes to Manhattan/Groups,33290222,Kelly,Brooklyn,Bedford-Stuyvesant,40.68279,-73.91947,Entire home/apt,140,2,42,2019-06-30,3.19,1,26 +25812723,Sunny 2 bdrm / 2 bath top floor brownstone,3245072,Brooke,Brooklyn,Bedford-Stuyvesant,40.68905,-73.95242,Entire home/apt,175,2,5,2019-06-23,0.45,1,0 +25812852,Fabulous Room Near Central Park,1292274,Forest,Manhattan,Upper East Side,40.78175,-73.94797,Private room,111,1,10,2019-06-08,0.76,2,62 +25812971,Spacious and minimal apt in the heart of NYC,186084,Ricardo & Ashlie,Manhattan,Chinatown,40.71676,-73.99348,Entire home/apt,160,2,5,2019-06-16,0.48,2,46 +25813254,Enjoy this private room at the heart of NYC 23B1,190921808,John,Manhattan,Hell's Kitchen,40.75437,-73.9964,Private room,150,7,8,2019-05-19,0.77,47,354 +25813279,"Charming Neighborhood, Charming Studio to Share",1538023,Lillian,Manhattan,Upper West Side,40.78099,-73.97933,Shared room,60,1,13,2019-07-04,1.06,1,331 +25813280,Private room in a Bohemian Bushwick Loft! b,96737879,Yury,Brooklyn,Williamsburg,40.70412,-73.93426,Private room,70,3,19,2019-06-30,1.79,3,53 +25813322,"Elegant private room with ROOFTOP, close to train",177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.9457,Private room,70,1,90,2019-06-28,6.94,3,352 +25813627,Serene Loft in Williamsburg - Master Bd,2423377,Bryan,Brooklyn,Williamsburg,40.71531,-73.96548,Private room,425,5,6,2019-05-15,0.66,1,156 +25813702,"bright, cheery and real nyc",3713535,Laura,Manhattan,Lower East Side,40.71826,-73.99079,Entire home/apt,230,5,6,2019-01-01,0.47,1,0 +25813796,Fanta Sea Home 2,131777975,Jewell,Brooklyn,Brownsville,40.66528,-73.91829,Private room,50,4,6,2019-06-30,0.62,3,330 +25813849,Simple and Chic Studio Union Square/ East Village,28255971,Katrina,Manhattan,East Village,40.7326,-73.98681,Entire home/apt,200,3,3,2019-06-23,3,1,10 +25814039,Cosy soulful studio in the Upper West Side,193983914,Yul,Manhattan,Upper West Side,40.791,-73.97545,Entire home/apt,125,2,49,2019-06-28,3.79,1,2 +25814918,Large private sunny room near Times Sq. 21B3,190921808,John,Manhattan,Hell's Kitchen,40.75396,-73.99684,Private room,60,7,5,2019-04-27,0.49,47,326 +25815036,Cozy Room Great Price in Bushwick Bklyn! (Suite 4),44123062,Oscar,Brooklyn,Bushwick,40.68853,-73.90613,Private room,40,3,53,2019-07-01,4.14,4,8 +25815620,Bronx 1 bedroom studio apartment,179677211,Bettina,Bronx,Van Nest,40.84787,-73.86177,Entire home/apt,107,1,47,2019-06-23,3.63,3,8 +25815764,Sunny private room 10 mins from Times Sq 23B3,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99563,Private room,62,7,10,2019-05-04,0.87,47,358 +25815781,West Village Sanctuary,157241,Colin And Bryn,Manhattan,West Village,40.73612,-74.00591,Entire home/apt,195,5,7,2019-06-03,0.57,1,6 +25816034,Bronx 2 Bedroom with View of Manhattan Skyline,179677211,Bettina,Bronx,Van Nest,40.84778,-73.86146,Entire home/apt,150,1,29,2019-06-03,2.23,3,24 +25816999,Mamas 2 twins purple #4 boro pk 2nd flr D train,12834599,Ms. Edith,Brooklyn,Borough Park,40.63294,-73.99317,Private room,50,3,3,2019-06-10,0.29,4,179 +25817508,"Brand new space ! ... safe, peaceful and relaxing.",194004304,Norjia,Manhattan,Washington Heights,40.84782,-73.93954,Private room,85,1,9,2019-01-01,0.79,1,80 +25817824,Modern Apartment☆5 Mins to Subway☆40 Mins to NYC☆,194014767,Mohammed,Brooklyn,East Flatbush,40.6464,-73.95106,Entire home/apt,110,2,44,2019-07-03,3.40,2,288 +25823670,"Adorable UES Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77669,-73.95673,Entire home/apt,211,30,1,2019-02-28,0.23,232,201 +25826202,Stay 10 minutes away from Times Square 63F2,190921808,John,Manhattan,Hell's Kitchen,40.75396,-73.99571,Private room,100,7,2,2019-04-03,0.29,47,238 +25826245,Morningside Heights Gem,123073403,Claudia,Manhattan,Morningside Heights,40.80551,-73.96618,Entire home/apt,125,3,1,2019-01-13,0.17,1,0 +25828589,The Sound of Brooklyn,194012738,Andre,Brooklyn,Flatbush,40.65248,-73.95278,Private room,45,3,42,2019-06-24,4.24,1,81 +25829582,***WELCOME TO MI CASA TU CASA NEAR JFK/LGA AIRPORT,117543014,Jhon,Queens,Rego Park,40.72691,-73.85478,Private room,38,2,43,2019-04-28,3.32,1,0 +25830323,"Centrally located from LGA, Manhattan & more",193485559,Helen,Queens,Sunnyside,40.74432,-73.91741,Private room,50,2,0,,,1,66 +25831152,Spacious room to rest in NYC,52525653,Mike,Manhattan,Harlem,40.80549,-73.95129,Private room,83,1,3,2018-09-25,0.28,2,0 +25832499,summer downtown W/ TERRACE,2412677,Jenny,Manhattan,Chinatown,40.71463,-73.99216,Private room,100,2,1,2018-06-17,0.08,1,0 +25832504,Penthouse Triplex Jewel - 3000sf,1524825,Stephan,Manhattan,Tribeca,40.72273,-74.01049,Entire home/apt,1000,7,0,,,1,178 +25833266,Huge private & cozy room in the Bronx!,194102474,Digna,Bronx,Claremont Village,40.84346,-73.91151,Private room,35,1,49,2019-01-23,3.84,1,168 +25833495,Family and Friends Peaceful Home,194104396,Marie,Brooklyn,Flatlands,40.62635,-73.93565,Private room,75,3,0,,,1,90 +25834015,Great cozy room,194108889,Juan,Queens,Maspeth,40.72605,-73.90711,Private room,26,3,2,2019-04-30,0.16,1,118 +25834067,PRIVATE STUDIO APT!! 10 Min walk Times Square 11A,190921808,John,Manhattan,Hell's Kitchen,40.75571,-73.99647,Private room,62,2,19,2019-06-03,1.80,47,331 +25834338,1 bdrm apt / Prime Wburg / steps 2 Bedford L,1034976,Katie,Brooklyn,Williamsburg,40.71767,-73.95902,Entire home/apt,170,2,12,2019-06-23,0.93,2,308 +25834662,Cozy large room at the heart of NYC 41D4,190921808,John,Manhattan,Hell's Kitchen,40.75545,-73.99556,Private room,62,7,8,2019-05-22,0.77,47,355 +25835087,Suite nearJFK with private bathroom and kitchen,156547988,Minying,Queens,Ozone Park,40.67651,-73.84815,Entire home/apt,60,1,32,2019-06-04,2.64,4,155 +25837179,ASTORIA in QUEENS,194130534,Miryung,Queens,Astoria,40.77204,-73.9223,Private room,51,1,23,2019-06-04,1.78,1,3 +25837478,Dreamy room in Avenida Siempre Verde - Bushwick,17005572,Maira,Brooklyn,Bushwick,40.68566,-73.90909,Private room,70,5,25,2019-05-25,1.96,1,64 +25837865,Charming Hamilton Heights Apartment!,17330141,Ramble,Manhattan,Harlem,40.82952,-73.94764,Entire home/apt,105,2,33,2019-06-23,2.91,1,45 +25837948,Beautiful room(s) near JFK airport,156547988,Minying,Queens,Woodhaven,40.68853,-73.85474,Private room,60,1,14,2019-06-15,1.13,4,335 +25838887,"Private bedroom with Bath Chinatown, NYC, #3",33867639,Amiee,Manhattan,Chinatown,40.71471,-73.99514,Private room,100,1,51,2019-06-23,3.86,3,92 +25838923,"Private bedroom in Chinatown, NYC, #1",33867639,Amiee,Manhattan,Chinatown,40.71457,-73.9958,Private room,122,1,71,2019-06-11,5.50,3,91 +25839759,Gigantic Sunny Room in Park Slope-Private Backyard,167570251,Rachel,Brooklyn,Sunset Park,40.66242,-73.99464,Entire home/apt,10,1,14,2018-10-28,1.06,1,4 +25840272,Beautiful and clean 2BR in prime Chelsea,119958898,Aaron,Manhattan,Chelsea,40.74267,-73.99971,Entire home/apt,299,3,76,2019-07-04,5.82,1,91 +25841417,5min to JFK! Private Suite TwinBeds New home R1,6754369,Johann,Queens,Jamaica,40.69252,-73.80272,Private room,85,1,23,2019-05-28,1.75,4,114 +25841637,"Two double beds, New York, Chinatown, #2",33867639,Amiee,Manhattan,Chinatown,40.714,-73.99571,Private room,90,1,82,2019-06-18,6.24,3,77 +25841768,"Entire Garden Level Home in Greenpoint, Brooklyn",159204067,Maggie,Brooklyn,Greenpoint,40.72488,-73.94932,Entire home/apt,124,1,6,2019-03-24,0.50,1,6 +25842433,*THE BUSINESS TRAVELER ROOM*,48183551,Carlos,Queens,Elmhurst,40.7448,-73.88177,Private room,42,6,26,2019-07-04,2.09,5,299 +25842535,The Perfect Williamsburg Apartment,35967771,Aurelio,Brooklyn,Williamsburg,40.72021,-73.95949,Entire home/apt,180,2,3,2019-03-11,0.29,1,0 +25842847,5 min to JFK! Private Queen room in new home. R3,6754369,Johann,Queens,Jamaica,40.69352,-73.80301,Private room,80,1,47,2019-06-30,3.56,4,125 +25843611,"Family-friendly 2BR, Prime Upper West Side",194180091,Liz,Manhattan,Upper West Side,40.79114,-73.97787,Entire home/apt,175,6,3,2018-12-30,0.23,1,0 +25843716,5min to JFK! Private Queen Room in New home! R2,6754369,Johann,Queens,Jamaica,40.69238,-73.80247,Private room,85,1,37,2019-03-23,2.80,4,297 +25844166,"Last minute pricing! quiet street, heart of SoHo",7266843,Asaf,Manhattan,SoHo,40.7258,-74.0015,Private room,45,6,2,2019-03-03,0.17,1,0 +25844635,Full Apartment Downtown Manhattan (East Village),56040696,Johan,Manhattan,East Village,40.72748,-73.9795,Entire home/apt,160,5,25,2019-02-18,1.94,1,0 +25844697,Studio in Prospect Park South,91099303,Aneta,Brooklyn,Flatbush,40.64487,-73.96233,Entire home/apt,59,5,3,2019-05-26,0.40,1,0 +25845142,Sunny and spacious private room in Bushwick,46782979,Ava,Brooklyn,Bushwick,40.69907,-73.92348,Private room,150,30,0,,,1,0 +25852200,For Female Cozy Shared Room in Midtown West,194031970,Demir,Manhattan,Hell's Kitchen,40.76353,-73.98839,Shared room,69,1,24,2019-06-15,1.84,3,208 +25852575,Cozy Shared Room by Central Park For Female,194031970,Demir,Manhattan,Hell's Kitchen,40.76519,-73.98939,Shared room,69,1,17,2018-10-28,1.30,3,212 +25855178,Modern Style Cozy & Convenient 2 Bedroom Apartment,155911578,Christopher,Manhattan,Harlem,40.81889,-73.94224,Entire home/apt,180,2,20,2019-05-27,1.52,2,89 +25855717,"Stylish and Serene in Cobble Hill, Brooklyn",7810310,Erika,Brooklyn,Cobble Hill,40.685,-73.99966,Entire home/apt,100,2,11,2018-10-07,0.91,1,0 +25855773,Sunny Beautiful Loft,13307646,Annette,Brooklyn,Bedford-Stuyvesant,40.69537,-73.95642,Entire home/apt,125,18,4,2019-01-03,0.32,1,24 +25856211,Sunny hip room in Bushwick 2 mins from the L train,30940393,Sarah,Brooklyn,Bushwick,40.68869,-73.90582,Private room,50,3,22,2019-04-11,1.76,2,0 +25857843,Coney Island / Brighton Beach Private rm duplex,75671801,Lucky,Brooklyn,Brighton Beach,40.57941,-73.975,Private room,75,1,12,2019-06-30,1.03,1,90 +25860068,JULY SALE ! PRIVATE ROOM UPPER EAST SIDE NYC,23827868,Gal,Manhattan,Upper East Side,40.77655,-73.94651,Private room,55,21,2,2018-12-29,0.25,1,131 +25860270,"Nice room in large, quiet EV apt",24222,Lori,Manhattan,East Village,40.72585,-73.97967,Private room,65,5,2,2018-07-16,0.16,2,2 +25864717,Studio - 5Mins to Times Square,37412692,Kim,Manhattan,Midtown,40.76666,-73.98156,Entire home/apt,200,30,0,,,4,362 +25864886,Prime Williamsburg on quiet street!,226563,Rolf Arne,Brooklyn,Williamsburg,40.71479,-73.94916,Entire home/apt,120,14,0,,,1,0 +25865718,Beautiful duplex in New York,1190628,Julia,Manhattan,East Harlem,40.79788,-73.93265,Entire home/apt,160,7,0,,,1,278 +25867636,NEW Charming Studio,194349000,Ramsey,Brooklyn,Boerum Hill,40.68716,-73.98801,Entire home/apt,200,2,0,,,1,23 +25868383,Awesome Central Park Room. Cozy Manhattan Space.,137358866,Kazuya,Manhattan,East Harlem,40.79322,-73.94038,Private room,34,30,3,2019-03-31,0.26,103,207 +25868880,Large studio near Central Park/Columbus Circle,136264512,Roxana,Manhattan,Hell's Kitchen,40.76582,-73.98409,Entire home/apt,195,3,38,2019-06-29,3.33,1,9 +25869269,Charming Bedroom in Cozy East Harlem Apartment,31975791,Xiomara,Manhattan,East Harlem,40.79822,-73.93468,Private room,70,2,25,2019-05-24,2.67,1,101 +25870315,Beautiful peninsula to stay,93339410,Ramon,Queens,Bayswater,40.60628,-73.76019,Entire home/apt,105,4,8,2018-10-10,0.70,1,222 +25870448,Cozy Brooklyn two level apartment with a backyard,5368201,Céline,Brooklyn,Bedford-Stuyvesant,40.68565,-73.92599,Entire home/apt,195,7,0,,,1,20 +25870547,East Vilage Sleeping Space Semi-Private Room,194372264,Deborah,Manhattan,East Village,40.72433,-73.9789,Private room,60,2,50,2019-06-25,3.86,1,288 +25870840,Cozy UES apartment by the Central Park,48414103,Yulia,Manhattan,Upper East Side,40.7814,-73.95541,Entire home/apt,120,2,2,2019-04-13,0.64,1,0 +25871075,2 Story Apartment in Greenwich Village,17170106,Taylor,Manhattan,Greenwich Village,40.73416,-73.99446,Entire home/apt,250,2,3,2018-10-22,0.24,1,0 +25871251,Private Room in Bushwick Luxury Fortress,78016461,Drew,Brooklyn,Bushwick,40.69872,-73.9301,Private room,89,2,0,,,1,175 +25871304,Affordable Lenox Ave Room. Clean Sunny Comfy!,137358866,Kazuya,Manhattan,Harlem,40.81205,-73.94309,Private room,32,30,0,,,103,236 +25872255,5min to JFK! Private 3 bedroom Apt-Whole 1st Floor,6754369,Johann,Queens,Jamaica,40.69267,-73.80159,Entire home/apt,340,1,10,2018-10-31,0.78,4,82 +25872636,Elegant and spacious apt in UWS - Cleaning Incl.,176772783,Claudia,Manhattan,Upper West Side,40.79889,-73.97182,Entire home/apt,550,2,3,2019-01-03,0.25,1,0 +25872986,Your special place in Manhattan BACK room,191765199,Elena,Manhattan,Washington Heights,40.83373,-73.94182,Private room,88,1,18,2019-06-02,1.38,6,90 +25873511,Cozy & Beautiful Room in Astoria for all seasons,160248396,Mars,Queens,Ditmars Steinway,40.77816,-73.91002,Private room,70,2,41,2019-05-27,3.18,1,15 +25874845,Spacious Bedroom 1 Min. From the 1 Train,25480676,Erin,Manhattan,Harlem,40.82132,-73.9538,Private room,65,1,10,2019-05-19,4.17,1,5 +25885192,Cozy Upper East Side apartment,89886720,Margaret,Manhattan,Upper East Side,40.78029,-73.95252,Entire home/apt,125,10,4,2019-05-02,0.34,1,9 +25885278,"Cozy 1 bedroom apartment in Throggs neck, bronx",193497177,George,Bronx,Throgs Neck,40.82257,-73.83773,Entire home/apt,100,2,23,2019-06-03,1.84,1,89 +25887161,Small 1-bedroom in East Harlem,3391251,Signe,Manhattan,East Harlem,40.7942,-73.94532,Entire home/apt,110,4,4,2019-06-20,0.37,1,0 +25887684,Gorgeous Two Br Apt in Jamaica Estates.,194520886,Nazma,Queens,Jamaica Estates,40.71434,-73.78805,Entire home/apt,125,1,18,2019-06-09,1.78,2,166 +25887913,"Cozy Room Great Price in Bushwick, Bklyn!(Suite 3)",44123062,Oscar,Brooklyn,Bushwick,40.68912,-73.90848,Private room,40,3,50,2019-06-29,3.96,4,9 +25888428,Brand New Astoria Suite (large studio),25099638,Robert,Manhattan,Civic Center,40.71306,-74.00569,Entire home/apt,150,1,0,,,1,90 +25889072,private room near columbia,1226850,Tony,Manhattan,Morningside Heights,40.81338,-73.96042,Private room,70,3,0,,,1,0 +25889683,Riverside Apartment Room,28996758,俞,Manhattan,Upper West Side,40.79811,-73.97186,Private room,72,1,5,2018-07-08,0.38,1,0 +25891110,Light filled Brooklyn apartment with deck!,392929,Jeremiah,Brooklyn,Park Slope,40.66775,-73.97738,Entire home/apt,195,4,5,2018-11-24,0.40,1,0 +25891334,Ladies Dorm Shared Room (( Bottom Bunk Bed)),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95736,Shared room,45,2,14,2019-03-12,1.18,3,306 +25892102,Spacious room in unique loft,20065291,Stefan,Brooklyn,Bedford-Stuyvesant,40.68983,-73.95626,Private room,45,2,1,2018-11-04,0.12,1,0 +25893224,Simple and clean,24000784,Robert,Brooklyn,Sunset Park,40.64524,-74.01273,Entire home/apt,90,2,31,2019-06-18,2.49,4,126 +25893395,Master Bedroom on 2nd floor in a sweet house!,22819324,Patricia,Brooklyn,Bushwick,40.69585,-73.90967,Private room,60,2,12,2019-05-27,1.01,2,0 +25893890,Cozy & Elegant 1 bedroom,194141910,Lilee,Manhattan,Hell's Kitchen,40.75574,-73.99723,Private room,134,2,16,2019-05-31,1.26,1,12 +25893935,"Clean, Comfortable, Convenient",178807971,Anne,Manhattan,Midtown,40.75155,-73.97021,Entire home/apt,250,2,2,2019-05-05,0.21,1,11 +25894924,A Hidden Gem in Queens,106304833,Amah Justin,Queens,Jamaica,40.68257,-73.77949,Entire home/apt,75,2,25,2019-06-24,2.06,1,62 +25894982,Downtown Brooklyn Home,194590736,Keon,Brooklyn,Fort Greene,40.69493,-73.97984,Private room,80,5,48,2019-04-27,3.70,1,86 +25895122,Beautifully decorated duplex with an amazing yard!,4580765,Grace,Brooklyn,Crown Heights,40.67367,-73.9223,Entire home/apt,300,3,33,2019-07-07,2.56,1,292 +25895132,Private Queen Room steps from Columbia and Subway,17221402,Emily,Manhattan,Morningside Heights,40.81313,-73.96148,Private room,75,2,22,2019-01-01,1.88,1,0 +25895230,Private Bedroom in Midtown West with River View,18567068,Evelyn,Manhattan,Hell's Kitchen,40.76201,-73.99876,Private room,150,3,4,2018-07-09,0.31,1,0 +25895519,Cozy Harlem room w/ a view! Near Central Park!,137358866,Kazuya,Manhattan,Harlem,40.81098,-73.94278,Private room,52,30,1,2018-07-31,0.09,103,237 +25902370,New Modern Townhouse Clinton Hill Brooklyn,181863187,Pamela,Brooklyn,Clinton Hill,40.69462,-73.96996,Entire home/apt,550,12,0,,,1,2 +25903655,Sun Drenched Artist Loft in Williamsburg!,67191518,Reisha,Brooklyn,Williamsburg,40.71777,-73.96173,Entire home/apt,250,4,8,2019-07-01,0.70,1,156 +25904446,"Cozy & Convenient Private Bedroom in Harlem, NYC.",155911578,Christopher,Manhattan,Harlem,40.8186,-73.94348,Private room,110,1,1,2019-05-04,0.45,2,0 +25904988,Bedstuy spacious townhouse w. amazing backyard,175408,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68242,-73.92788,Entire home/apt,250,10,1,2018-07-21,0.08,1,0 +25905991,Charming 3 Bedroom House in Forest Hills NY,148546760,Nicole,Queens,Forest Hills,40.71952,-73.85523,Entire home/apt,325,4,6,2018-12-31,0.51,1,3 +25909160,Simple Private Rm w/ Futon in the Bronx/ Storage,144119993,Charles,Bronx,Fordham,40.85801,-73.88247,Private room,21,1,9,2018-08-05,0.70,2,0 +25909161,New York Oasis,32605338,Aliesha,Manhattan,Upper East Side,40.76917,-73.9516,Entire home/apt,150,4,11,2019-05-23,1.13,1,3 +25911322,Brooklyn Basement,144002200,April,Brooklyn,Gowanus,40.67087,-73.99305,Entire home/apt,75,2,7,2019-07-07,0.74,1,7 +25912647,Midtown East - Huge private room with terrace,193716904,Li,Manhattan,Midtown,40.75704,-73.96531,Private room,100,3,4,2018-08-22,0.31,1,0 +25914288,PVT room cozy & warm w/fridge 15mins to NY airport,37939474,Isaac And Eunice,Queens,Jamaica,40.70713,-73.78342,Private room,37,2,34,2019-06-24,2.63,1,331 +25914515,Onderdonk Hotel Studio,194554070,Daniel,Queens,Ridgewood,40.7087,-73.91452,Private room,50,2,1,2018-06-23,0.08,1,0 +25917234,Artist Loft in Tribeca,6255854,Anna,Manhattan,Tribeca,40.71785,-74.00549,Entire home/apt,275,2,20,2019-07-07,1.56,1,10 +25917853,Very Convenient Modern Brooklyn Studio Apartment,94363111,Jessica,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95943,Entire home/apt,110,3,51,2019-07-01,4.16,1,46 +25918623,Sunny & Cheery Bronx Home - with Chickens!,7558748,Lily,Bronx,Mott Haven,40.8084,-73.92037,Entire home/apt,115,2,36,2019-06-29,3.12,1,114 +25918869,MODERN 2-3 Bedroom Apartment with Huge Roof Deck,26876408,Kelley,Brooklyn,Columbia St,40.68051,-74.00357,Entire home/apt,160,30,1,2018-08-22,0.09,1,95 +25919220,Massive Bedroom w/Private Yard. NYC/Williamsburg,117287163,Jolene,Brooklyn,Williamsburg,40.71971,-73.95879,Private room,65,14,0,,,1,0 +25921999,Serene 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74388,-73.97193,Entire home/apt,184,29,1,2019-03-15,0.26,96,347 +25922009,Elegant 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74468,-73.97335,Entire home/apt,189,29,1,2018-08-03,0.09,96,338 +25922026,Intimate Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70447,-74.00847,Entire home/apt,169,29,0,,,96,170 +25925504,SoHo! Private Room in Comfy Apt!,192951036,Jasmine,Manhattan,SoHo,40.72788,-74.00301,Private room,129,1,38,2019-07-06,2.98,10,151 +25927829,Soho! Amazing Single Room!,192951036,Jasmine,Manhattan,SoHo,40.7258,-73.99969,Private room,119,1,35,2019-06-23,2.75,10,156 +25928236,Soho! Room in Modern Apartment!,192951036,Jasmine,Manhattan,SoHo,40.72513,-74.00329,Private room,119,1,42,2019-07-06,3.32,10,120 +25931882,Large sunny room in Modern Brooklyn Townhouse,33210753,Can,Brooklyn,Clinton Hill,40.69631,-73.96288,Private room,65,3,11,2019-01-01,0.85,1,356 +25933647,sunshine room sublease,194927217,Qingxue,Manhattan,Washington Heights,40.84002,-73.94384,Shared room,40,1,1,2019-06-23,1,1,30 +25934111,GREAT LOCATION / GREAT PRICE COZY PRIVATE ROOM,132908616,Federico,Brooklyn,Bushwick,40.70227,-73.92264,Private room,45,3,25,2019-06-25,2.07,2,44 +25935054,LUXURY On The Lower East Side,4132784,Jeremy,Manhattan,Lower East Side,40.71896,-73.986,Entire home/apt,375,2,3,2018-12-15,0.31,1,8 +25937108,Luxury 2 Bedroom Grand Central,168465501,Ian,Manhattan,Murray Hill,40.75058,-73.97746,Entire home/apt,200,30,0,,,4,364 +25937419,"Harlem, near Columbia: Sunny room with view",55737033,Maria,Manhattan,Harlem,40.82967,-73.94851,Private room,65,4,29,2019-07-02,2.29,1,98 +25937698,Private room in Manhattan,37280441,Mary,Manhattan,Morningside Heights,40.81039,-73.95948,Private room,70,1,67,2019-04-07,5.19,2,0 +25938492,Cozy Manhattan 2 bedroom,194958383,Shen,Manhattan,East Harlem,40.79019,-73.94839,Private room,190,3,19,2019-06-28,1.53,1,14 +25939748,Modern Apt with private bedroom & bathroom,25210511,Zak,Brooklyn,Clinton Hill,40.69485,-73.96567,Private room,85,1,16,2018-08-17,1.24,1,0 +25940097,Modern Wall of Glass Townhouse with Garden,6654682,Catherine,Manhattan,Harlem,40.80609,-73.95258,Entire home/apt,800,4,2,2019-03-30,0.19,1,197 +25941089,Bed Stuy Brownstone Charm,38003941,Damira,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93054,Private room,80,2,9,2018-10-29,0.71,1,0 +25942651,ELLIS 56-4 *COLUMBIA PRESBYTERIAN HOSPITAL AREA,25237492,Juliana,Manhattan,Washington Heights,40.84089,-73.94109,Private room,65,30,1,2018-12-11,0.14,34,311 +25943177,"Lovely room with private bathroom, near Manhattan",58234433,Martin,Queens,Sunnyside,40.73657,-73.91975,Private room,129,1,10,2019-06-13,1.02,8,275 +25943635,Sunny room in great location,10304316,Engorako,Queens,Astoria,40.76549,-73.9149,Private room,60,50,0,,,1,21 +25946015,Cozy 1 Bed/1 Bath Nestled in Charming West Village,195021790,Josh,Manhattan,West Village,40.73338,-74.00314,Entire home/apt,180,2,4,2018-07-26,0.31,1,0 +25946924,BEST DEAL in NYC - Cute and Cozy Room Times Square,42998647,Prav,Manhattan,Hell's Kitchen,40.75854,-73.98988,Private room,35,3,101,2019-06-08,7.77,3,68 +25947865,Ensuite Private Room with Bath @4th FL,62533391,Yvonne,Brooklyn,Borough Park,40.63591,-74.00717,Private room,60,1,10,2019-05-24,0.82,7,312 +25947875,Single Bunker Private Bath Room,62533391,Yvonne,Brooklyn,Borough Park,40.63573,-74.00552,Private room,60,1,1,2019-03-18,0.26,7,350 +25948078,BEST LOCATION - Lovely room by Times Square!!!,42998647,Prav,Manhattan,Hell's Kitchen,40.75859,-73.99195,Private room,39,3,84,2019-06-22,6.46,3,17 +25948225,Bushwick play2,2974873,Jourdain,Brooklyn,Bushwick,40.69329,-73.91579,Private room,70,14,2,2018-09-30,0.20,2,311 +25948509,Cozy large Full 1 Bedroom Apt,195040579,Omar,Brooklyn,Midwood,40.6294,-73.97004,Entire home/apt,115,354,0,,,1,179 +25948697,"Private Bedroom In Brooklyn, NY",3163428,Veronika,Brooklyn,Sheepshead Bay,40.59919,-73.94189,Private room,60,6,0,,,1,12 +25948942,Lovely room in Manhattan Lower East Side,131236711,Qi,Manhattan,Lower East Side,40.71026,-73.98738,Private room,80,1,11,2018-07-13,0.85,1,0 +25949165,Quiet Room for Rent,195048996,Cynthia,Manhattan,Harlem,40.82571,-73.95016,Private room,68,3,0,,,1,0 +25949359,Luxury spacious new 1Bdr 30 mins to Manhattan,46976642,Panid,Brooklyn,Midwood,40.61605,-73.94549,Entire home/apt,155,4,1,2018-07-07,0.08,1,7 +25949539,"Elegant 4 floor/4BR home, garden, chef's kitchen",183188884,Alex,Brooklyn,Clinton Hill,40.68403,-73.9625,Entire home/apt,780,3,0,,,1,0 +25949877,Chic + comfortable 1 BR apt on Upper East Side,195057742,Dale,Manhattan,Upper East Side,40.77772,-73.94822,Entire home/apt,135,2,6,2018-09-17,0.50,1,0 +25950590,Cozy room close to Central Park and Columbia,2732777,Beatriz,Manhattan,Upper West Side,40.8018,-73.96264,Private room,115,3,19,2019-06-17,1.50,1,189 +25951465,NYC HUB Master Bedroom: Train @900ft,20912691,Jeff,Queens,Jamaica,40.71106,-73.78393,Private room,59,2,10,2019-05-08,0.79,7,0 +25951810,Deluxe East Village Flat: 2 Bed - 2 Bath,16962957,Nick,Manhattan,East Village,40.72891,-73.97977,Entire home/apt,169,1,5,2018-12-22,0.39,4,59 +25961778,Brooklyn Nest,697560,Emily,Brooklyn,East Flatbush,40.65014,-73.94451,Entire home/apt,100,2,0,,,1,5 +25961797,Sweet Studio in <3 of Manhattan,35577118,Ruth & C,Manhattan,Upper East Side,40.76182,-73.9619,Entire home/apt,195,1,48,2019-06-15,3.71,1,0 +25962847,Comfy King Bed Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80387,-73.95164,Private room,85,3,30,2019-07-04,2.48,4,145 +25963570,"""I LOVE BROOKLYN"" Newly Renovated Studio APT.",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.6881,-73.94586,Entire home/apt,109,1,75,2019-06-21,5.77,3,20 +25964053,King Size Room Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80352,-73.95212,Private room,109,3,35,2019-07-07,2.82,4,0 +25964304,Modern Studio Apt on Waterfront (Greenpoint),3107231,Dan,Brooklyn,Greenpoint,40.72617,-73.95956,Entire home/apt,85,15,0,,,1,191 +25965483,Light-filled Room with Private Bath & Entrance,4712374,Karen,Brooklyn,Greenpoint,40.73325,-73.95542,Private room,85,1,12,2018-10-03,0.97,1,0 +25966512,The cozy room!,62557719,Leomaris,Manhattan,Harlem,40.82961,-73.94525,Private room,45,7,11,2019-06-09,0.85,3,88 +25967331,Cozy and Convenient Spot in Washington Heights,152442590,Nick,Manhattan,Washington Heights,40.85108,-73.93912,Private room,60,1,8,2018-07-08,0.62,1,0 +25967882,Gorgeous UES DOORMAN Apt + GYM & ROOFTOP clean !,7186760,Dafna Irit,Manhattan,Upper East Side,40.77727,-73.94588,Entire home/apt,115,35,1,2018-07-31,0.09,2,21 +25967894,Modern newly renovated apartment with balcony,47426611,Adriano,Manhattan,Washington Heights,40.84963,-73.9372,Entire home/apt,100,2,15,2019-06-23,1.39,1,48 +25968756,Cute private bedroom in Stuyvesant Height.,161649470,Jaquayala,Brooklyn,Bedford-Stuyvesant,40.68315,-73.92913,Private room,50,1,1,2018-12-11,0.14,1,0 +25970374,BEAUTIFUL STUDIO ON UPPER EAST SIDE/ CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.77045,-73.9568,Entire home/apt,125,30,6,2019-07-01,0.59,16,339 +25970826,"$6M Soho Penthouse: 2000 sq ft, 18 ft ceilings",1001819,Rose,Manhattan,Greenwich Village,40.72818,-73.99993,Entire home/apt,850,5,11,2019-06-13,0.88,1,45 +25971425,"Big, beautiful, sunny room in Hamilton Heights",54369863,Genevieve,Manhattan,Harlem,40.82567,-73.95261,Private room,70,1,1,2018-07-16,0.08,1,0 +25972102,Beautiful Bright Room in Soho,17494958,Katy,Manhattan,SoHo,40.72352,-74.00365,Private room,100,5,2,2018-09-29,0.17,3,0 +25972171,HUGE WASHINGTON HEIGHTS ROOM,90689056,Maddie,Manhattan,Washington Heights,40.84813,-73.94349,Private room,55,5,1,2018-06-13,0.08,1,0 +25972861,Luxurious Private Studio,195219725,Marina,Queens,Kew Gardens Hills,40.72437,-73.81523,Entire home/apt,95,1,51,2019-05-20,3.94,1,136 +25973941,HUGE 4 Bedroom PERFECT Wilburg Apt. on Bedford Ave,20176273,Adrien,Brooklyn,Williamsburg,40.71068,-73.96304,Entire home/apt,347,4,22,2019-05-27,2.19,1,70 +25974812,Cozy Room Great Price Bushwick Brooklyn (Suite 1),44123062,Oscar,Brooklyn,Bushwick,40.68714,-73.90657,Private room,50,3,45,2019-06-25,3.61,4,6 +25975428,Cozy & Modern 2 beds Apt. newly renovated BK/NYC,195238640,Yado & Vane,Brooklyn,Crown Heights,40.67411,-73.93023,Entire home/apt,190,3,26,2019-06-26,2.07,1,251 +25976738,Beautiful 1 bedroom - 2 Blocks from Central Park,30801953,John,Manhattan,Upper West Side,40.77999,-73.97997,Entire home/apt,169,2,10,2019-06-12,0.78,1,0 +25977386,Cost Effective Upper Manhattan Room,139191647,Tyler,Manhattan,Washington Heights,40.85612,-73.92888,Private room,215,1,0,,,1,179 +25977603,EarlyBirdDiscount! HUGE Modern CottageStyle TimeSq,39915290,A. Kaylee,Manhattan,Harlem,40.81187,-73.95393,Entire home/apt,299,2,8,2019-06-03,0.97,2,314 +25979705,Pre-War Elegance in Soho / West Village,8881505,Megan,Manhattan,SoHo,40.72786,-74.005,Entire home/apt,175,5,20,2019-06-13,2.01,1,36 +25979753,Greenwich Village - BEST NEIGHBORHOOD,195274541,Simon,Manhattan,Greenwich Village,40.72935,-74.00156,Entire home/apt,220,3,3,2018-07-26,0.24,1,0 +25980294,Cozy Studio in Upper East Side,195279731,Lauren,Manhattan,Upper East Side,40.77097,-73.95594,Entire home/apt,120,2,28,2019-06-23,2.22,1,0 +25982477,Little Italy Gem,191087534,Pj,Manhattan,Little Italy,40.71852,-73.99803,Entire home/apt,200,3,0,,,1,0 +25982839,Luxury gallery apartment in beautiful Greenpoint,121392618,Michal,Brooklyn,Williamsburg,40.71882,-73.94159,Entire home/apt,190,1,95,2019-05-26,7.38,1,0 +25995062,Private room with balcony with ROOFTOP terrace,177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66342,-73.94519,Private room,90,1,100,2019-07-03,7.71,3,316 +25996748,"Full Apartment, 1 Bedroom",18197276,Miguel,Bronx,Kingsbridge,40.88058,-73.90552,Entire home/apt,85,2,13,2019-01-01,1.05,1,0 +25996892,"Lovely Apartment in Greenwich Village, NYC",155627,Katherine,Manhattan,Greenwich Village,40.73177,-73.99936,Entire home/apt,90,42,2,2019-05-04,0.41,1,91 +25997567,Deluxe Loft Suite with Patio,57257950,Franklin,Brooklyn,Greenpoint,40.7334,-73.95849,Entire home/apt,399,1,0,,,4,248 +25997748,Studio Deluxe,57257950,Franklin,Brooklyn,Greenpoint,40.73409,-73.95752,Entire home/apt,349,1,0,,,4,214 +25997752,Loft Suite at Franklin Guesthouse,57257950,Franklin,Brooklyn,Greenpoint,40.73198,-73.95862,Entire home/apt,379,1,0,,,4,227 +25997937,Deluxe Loft Suite,57257950,Franklin,Brooklyn,Greenpoint,40.73218,-73.95855,Private room,399,1,1,2018-09-03,0.10,4,249 +25998042,Great Brooklyn Apartment,5597411,Misha,Brooklyn,Kensington,40.6357,-73.97208,Entire home/apt,150,14,0,,,2,112 +25998807,"Great Private Room in Midtown, great Location!",193364875,Silva,Manhattan,Hell's Kitchen,40.76311,-73.98704,Private room,98,2,64,2019-07-05,5.65,1,54 +25999678,Light & Airy home 1 minute to subway,7772526,Ting Yi,Brooklyn,Bushwick,40.68658,-73.91418,Entire home/apt,140,3,15,2019-06-12,2.76,2,240 +26000019,1Bedroom 15min Train ride to the Heart of NEW YORK,195419830,Brígida,Manhattan,Washington Heights,40.83799,-73.94036,Private room,50,2,43,2019-06-23,3.42,1,134 +26000298,Soho! Amazing 3bedroom Apt!,192951036,Jasmine,Manhattan,SoHo,40.72712,-74.00065,Entire home/apt,393,1,11,2019-05-13,0.91,10,300 +26000559,Pvt Art-filled Room w/ Pvt Access to Huge Roof Gym,2739367,Heather,Brooklyn,Williamsburg,40.70826,-73.94421,Private room,62,29,70,2019-02-27,5.38,2,64 +26001361,Relaxing and Tranquil Room in Park Slope,4232532,Jenn,Brooklyn,South Slope,40.6611,-73.98109,Private room,112,1,5,2018-11-14,0.39,2,0 +26001925,Beautiful one-bedroom get away with park view,67923313,Zhenni,Manhattan,Washington Heights,40.85811,-73.92921,Entire home/apt,90,5,5,2019-05-20,0.44,1,18 +26002246,Fully furnished apartment in a convenient location,83786650,Bridge,Manhattan,Upper East Side,40.76018,-73.9608,Entire home/apt,117,30,0,,,8,339 +26002676,Lovely one bedroom apartment in Wiliamsburg,15570509,Helen,Brooklyn,Williamsburg,40.70779,-73.95467,Entire home/apt,350,2,8,2019-05-19,1.06,1,129 +26003667,Pvt Room in Artsy Home w/pvt roof gym!,2739367,Heather,Brooklyn,Williamsburg,40.70931,-73.94253,Private room,62,1,71,2019-06-20,5.52,2,73 +26003692,Large Private Bedroom/Woodlawn Location,136208791,Camille,Bronx,Wakefield,40.88723,-73.86351,Private room,45,1,4,2018-08-17,0.31,1,365 +26003793,2 Private Rooms in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72811,-73.98824,Private room,285,1,0,,,7,0 +26004226,Best location - spacious room,395627,Deepika,Manhattan,Upper East Side,40.76279,-73.96266,Private room,125,1,16,2019-06-23,1.26,1,80 +26004343,Modern Private Room in Historic Strivers Row,36214976,Rosalba,Manhattan,Harlem,40.81968,-73.94384,Private room,75,2,12,2018-10-30,0.96,1,0 +26004664,Luxurious 2bed/2.5bath with Central Park Views,4876826,Alex,Manhattan,Midtown,40.76591,-73.97886,Entire home/apt,333,12,1,2018-09-24,0.10,1,110 +26004876,Ivoire Realty,181711840,Christophe,Bronx,University Heights,40.86259,-73.90359,Private room,65,1,2,2018-08-28,0.19,2,0 +26005261,2 Private Rooms in Full Floor East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72814,-73.98665,Private room,250,1,1,2018-06-19,0.08,7,365 +26006150,Brooklyn Palace,22098752,Eric,Brooklyn,Bushwick,40.68232,-73.9058,Entire home/apt,100,1,1,2018-11-05,0.12,1,85 +26009952,Historic Building on a Tree-lined Street,39535251,Tammen,Brooklyn,Boerum Hill,40.68696,-73.98174,Entire home/apt,103,2,5,2019-01-05,0.40,1,0 +26010424,Private Apartment 30mins from Times Square,195497710,Christopher,Manhattan,Inwood,40.86903,-73.91825,Entire home/apt,95,3,22,2019-06-27,2.06,1,251 +26011175,Cozy bedroom in LES apartment,8473523,Alexandra,Manhattan,Lower East Side,40.71857,-73.98867,Private room,75,1,7,2019-06-19,0.55,1,0 +26012750,Charming apartment in the heart of Chinatown,195516359,Carlota,Manhattan,Lower East Side,40.71359,-73.98932,Entire home/apt,220,3,12,2019-04-29,0.98,1,43 +26013177,"Avenue L, your Home away from Home.",195520304,Wayne,Brooklyn,Canarsie,40.64175,-73.89228,Entire home/apt,100,2,56,2019-07-05,4.47,1,133 +26014359,NYC Experience,43463232,Carlos,Brooklyn,Bushwick,40.69208,-73.91775,Entire home/apt,110,30,0,,,2,221 +26014444,Studio Apartment in Upper East Side,5445262,Steven,Manhattan,Upper East Side,40.77844,-73.94728,Entire home/apt,125,3,8,2019-01-01,0.63,1,0 +26022104,Cosy condo in Williamsburg with amazing rooftop,144345250,David,Brooklyn,Williamsburg,40.71552,-73.94263,Private room,110,2,0,,,1,0 +26025308,Gorgeous room available in Trendy Bushwick BK,159608581,Heather,Brooklyn,Bushwick,40.6879,-73.91183,Private room,39,2,1,2018-07-27,0.09,1,0 +26025770,"Upper West Side 3-Bedroom, 2-Bathroom",4392159,Gary,Manhattan,Upper West Side,40.80135,-73.96643,Entire home/apt,179,30,0,,,1,0 +26026530,Master bedroom in luxury apartment w. rooftop/gym,15984278,Laure-Ellyn,Brooklyn,Bushwick,40.70164,-73.9223,Private room,90,2,18,2019-06-30,1.39,1,344 +26026904,Charming Room Sunset Park Industry City Brooklyn,195517789,Patricia,Brooklyn,Sunset Park,40.65004,-74.00512,Private room,55,3,31,2019-07-01,2.75,2,345 +26028612,Cozy Private Bedroom In The Heart Of Midtown,87979621,Adam,Manhattan,Hell's Kitchen,40.76907,-73.98814,Private room,99,2,52,2019-06-22,4.08,1,192 +26029571,"Bright, spacious one bedroom in Brooklyn",7193111,Tanya,Brooklyn,Crown Heights,40.67639,-73.94714,Entire home/apt,200,1,15,2019-06-12,1.42,1,2 +26029677,Your perfect space to all New York has to offer!,14860389,Laura,Brooklyn,Greenpoint,40.7374,-73.95666,Private room,120,3,1,2019-03-22,0.28,1,87 +26031698,Bright room and private terrace with a view,24402648,Fabie,Brooklyn,Bushwick,40.69374,-73.92645,Private room,149,2,8,2019-06-30,0.65,1,83 +26032155,Giant Sunny Urban Jungle 1-BR In East Village,23024846,Casey,Manhattan,East Village,40.72455,-73.98418,Entire home/apt,200,1,12,2019-05-05,1.00,1,0 +26033022,"Prospect Heights, Brooklyn Loft with views",94509134,Katherine,Brooklyn,Crown Heights,40.67961,-73.96325,Entire home/apt,190,1,12,2019-07-02,0.93,1,9 +26033190,Williamsburg Luxury - Penthouse Duplex,16638733,Steve,Brooklyn,Williamsburg,40.71988,-73.94239,Entire home/apt,149,4,0,,,1,0 +26033963,Designers 1 bedroom West Village apartment,6295182,Jeremy,Manhattan,West Village,40.73434,-73.99963,Entire home/apt,230,2,11,2019-05-27,0.95,1,59 +26035003,Brooklyn private big bedroom,64790109,Ava,Brooklyn,Clinton Hill,40.69369,-73.9629,Private room,50,20,1,2019-04-27,0.41,1,72 +26035069,New York Home in the Heart of Harlem,68327820,Sharlee,Manhattan,Harlem,40.82314,-73.94245,Private room,97,2,13,2019-04-21,1.08,1,23 +26035350,Private Bedroom in Open Williamsburg Loft,195667782,Bill,Brooklyn,Williamsburg,40.70898,-73.94813,Private room,76,1,59,2019-06-20,4.57,1,44 +26035905,"Bliss-Private room close to train, ROOFTOP terrace",177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.94509,Private room,60,1,59,2019-07-01,4.65,3,342 +26036438,Fun and Whimsical UWS Garden Home,40653297,Jordyn,Manhattan,Upper West Side,40.78721,-73.97015,Entire home/apt,350,2,19,2019-06-16,1.50,1,163 +26036850,Guest room,195678889,Susan,Manhattan,Harlem,40.82461,-73.95269,Private room,60,2,0,,,1,363 +26036861,Spacious room in modern Williamsburg condo,4122424,Mark,Brooklyn,Williamsburg,40.70621,-73.95026,Private room,60,1,36,2019-06-19,2.79,1,0 +26037255,Private Room! AMAZING area in SoHo!,192951036,Jasmine,Manhattan,West Village,40.72918,-74.00482,Private room,209,1,40,2019-07-01,3.09,10,247 +26037496,Large Studio in NYC Brownstone for the Budget,195683584,Harold,Manhattan,Harlem,40.80579,-73.94916,Entire home/apt,125,2,22,2019-06-14,1.84,1,291 +26038458,Verona TwentyOne - PHOEBE'S PLACE,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68037,-73.94775,Entire home/apt,150,1,95,2019-07-07,7.94,3,243 +26038825,Beautiful Historic Harlem Townhouse,195693063,Billy,Manhattan,Harlem,40.82252,-73.94858,Private room,125,1,63,2019-06-19,5.34,2,293 +26038936,"GREAT LOCATION, THE HEART OF THE UWS!",6918093,Carinne,Manhattan,Upper West Side,40.78883,-73.98068,Private room,90,3,8,2018-12-27,0.62,1,0 +26039252,Private Room in Meatpacking/Chelsea,195689083,M,Manhattan,West Village,40.74012,-74.00537,Private room,50,2,56,2019-07-01,4.35,1,21 +26039725,Spa Ha Getaway,186517433,Alvina,Manhattan,East Harlem,40.79608,-73.93335,Entire home/apt,350,1,0,,,1,90 +26040209,Extra Room in Large East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72718,-73.98798,Private room,60,1,11,2018-10-06,0.86,7,23 +26040426,Spacious and bright 1 br apartment in West Village,195712950,Giorgi,Manhattan,West Village,40.73867,-74.00383,Entire home/apt,300,3,2,2019-02-07,0.20,1,0 +26040453,Verona TwentyOne - RODFRED COMFORT,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94699,Entire home/apt,150,1,109,2019-07-04,8.93,3,241 +26041591,"Private room in beautiful 3 bdr, off Riverside Dr",33996519,Isabella,Manhattan,Harlem,40.82291,-73.95612,Private room,50,13,0,,,1,5 +26041689,The home is where the heart is.,156585195,Gerard,Brooklyn,East Flatbush,40.65287,-73.94861,Entire home/apt,200,2,27,2019-06-25,2.30,2,217 +26043335,Luminous and Spacious Private Room,4167027,Jam,Brooklyn,Kensington,40.64595,-73.97578,Private room,60,5,3,2019-04-16,0.45,1,344 +26043558,Beautiful large floor-through apartment,31410976,Linda Jo,Brooklyn,Bedford-Stuyvesant,40.68681,-73.93344,Entire home/apt,183,3,24,2019-07-01,1.89,1,115 +26048920,"Spacious, artsy bedroom in the heart of bushwick.",769759,Karla,Brooklyn,Bushwick,40.69502,-73.93107,Private room,70,3,11,2019-04-10,0.94,2,0 +26050423,"Spacious, trendy bedroom in the heart of Bushwick",769759,Karla,Brooklyn,Bushwick,40.69615,-73.93302,Private room,60,2,17,2019-05-19,1.31,2,2 +26050704,Greenpoint room,17452999,Carlos,Brooklyn,Greenpoint,40.73616,-73.95511,Private room,95,3,0,,,1,0 +26052294,"Lovely, spacious room in the best neighborhood",17672941,Daniel,Manhattan,Greenwich Village,40.72844,-74.00025,Private room,100,3,6,2019-06-02,0.48,1,9 +26053340,"Beloved Williamsburg, Brooklyn is calling to you!",18824752,Ashley,Brooklyn,Williamsburg,40.70858,-73.95378,Private room,70,3,42,2019-06-29,3.41,1,20 +26053366,Private Room in Century Old Brownstone Duplex,26034076,Ria,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93693,Private room,55,30,0,,,1,0 +26054026,Awesome bedroom in Upper Manhattan,40044041,Rocio,Manhattan,Washington Heights,40.84367,-73.93566,Private room,59,2,5,2019-01-02,0.43,1,0 +26055132,"Private room, Queens NY with free street parking",6879271,Béla,Queens,Glendale,40.70267,-73.88663,Private room,83,2,4,2019-04-09,0.32,1,364 +26055709,Sunlit Private Room One Block off Subway (3 & 4),46201715,Brysen,Brooklyn,Crown Heights,40.66697,-73.93225,Private room,67,1,73,2019-07-03,5.67,1,251 +26056703,"West 33rd street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75233,-73.9941,Entire home/apt,259,30,0,,,87,357 +26057084,Spacious 1 Bd. Duplex Apt. in Brownstone,36440514,Sarah,Brooklyn,Clinton Hill,40.68553,-73.96314,Entire home/apt,150,3,5,2018-12-31,0.39,1,0 +26057252,"Bushwick Brownstone, Long-term Stay",87767243,David,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9149,Private room,41,21,1,2018-10-07,0.11,2,155 +26057878,"Soho family loft 3 beds, 2 bedroom. Best location!",389684,Violetta,Manhattan,SoHo,40.72292,-73.99951,Entire home/apt,550,3,9,2019-06-29,3.18,1,61 +26058074,Airy Crown Heights Loft,758520,Rowan,Brooklyn,Crown Heights,40.67621,-73.95052,Entire home/apt,99,3,3,2019-01-12,0.26,1,0 +26058246,Sunny room in Avenida Siempre Verde - Bushwick,19407197,Alvaro,Brooklyn,Bushwick,40.68642,-73.90734,Private room,70,3,21,2019-06-29,1.78,1,33 +26058634,Highline,195831428,P,Manhattan,Chelsea,40.74441,-74.00385,Entire home/apt,350,7,4,2019-06-13,0.43,1,207 +26059525,SPACIOUS SUNLIT 2 BED/2 BATH APT IN WILLIAMSBURG,662432,Emily,Brooklyn,Williamsburg,40.71657,-73.9595,Entire home/apt,350,5,1,2018-08-04,0.09,1,117 +26060534,Cozy Private Bedroom for 1 Female,17867234,Anna,Queens,Ridgewood,40.70793,-73.89528,Private room,37,4,8,2019-06-12,0.64,1,157 +26061337,LIC 5 Minutes from Manhattan,384654,Fabio,Queens,Long Island City,40.74623,-73.94051,Entire home/apt,140,2,7,2019-06-07,2.23,1,122 +26061532,"Cool, comfortable: RIGHT by 3 Subways",28811203,Brandon,Manhattan,Flatiron District,40.73986,-73.9863,Entire home/apt,349,7,3,2018-09-10,0.26,1,188 +26061712,The East Village Home: The Summer Getaway,126034120,Roni,Manhattan,East Village,40.72608,-73.97797,Private room,105,3,1,2018-08-20,0.09,3,14 +26062650,MONTHLY RENTAL 1/2 Block from the BEACH BUNGALOW,64777265,Joe,Queens,Rockaway Beach,40.58536,-73.81726,Entire home/apt,75,30,1,2018-09-28,0.11,1,363 +26062892,Brooklyn home away from home,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67771,-73.90969,Private room,55,1,25,2019-06-12,1.97,3,74 +26063053,April 1st Beautiful Furnished Manhattan Apt,195867496,Caren,Manhattan,Kips Bay,40.74036,-73.97929,Entire home/apt,85,28,0,,,1,0 +26063230,Gorgeous 4 BR apt w. King bed 30 min to Manhattan,1409262,Sarah,Brooklyn,Flatbush,40.6424,-73.95365,Entire home/apt,165,2,49,2019-07-02,4.04,6,191 +26063353,"Designer DUMBO Loft, 2BR",8161684,Corey,Brooklyn,Vinegar Hill,40.70139,-73.98351,Entire home/apt,250,4,5,2018-12-29,0.49,1,0 +26063436,Bk home away from home,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67736,-73.90995,Private room,55,1,24,2019-06-13,1.96,3,64 +26063550,Ocean hill home away from,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67758,-73.90841,Private room,59,1,24,2019-06-30,1.86,3,32 +26064299,Private Room! TRENDY location!,192951036,Jasmine,Manhattan,Greenwich Village,40.7278,-73.99976,Private room,129,1,29,2019-05-09,2.28,10,245 +26064779,Cool Private Room in Dreamy Bedstuy Apartment,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68354,-73.94003,Private room,55,3,43,2019-07-06,3.57,2,0 +26065193,"Luxury, large, private room on Upper West Side",4993126,Lenny,Manhattan,Upper West Side,40.78052,-73.97567,Private room,109,3,14,2019-06-11,1.14,1,0 +26072801,Jades Place,4520673,Jade,Brooklyn,Williamsburg,40.71424,-73.96182,Private room,75,20,4,2019-06-13,0.52,2,95 +26074006,Nice & Spacious Manhattan Room Near the Station,137358866,Kazuya,Manhattan,Harlem,40.81217,-73.94406,Private room,52,30,2,2019-06-04,0.19,103,214 +26074339,"Laid Back, Cozy 1-BR in Perfect Brooklyn Location",13811457,Jenita,Brooklyn,Bedford-Stuyvesant,40.68662,-73.95466,Entire home/apt,115,2,6,2018-11-14,0.56,1,6 +26075796,Spacious Studio Near Columbia University,155807678,Gloria,Manhattan,Morningside Heights,40.80395,-73.96311,Entire home/apt,113,45,0,,,1,87 +26076732,Brooklyn 28+day Refuge - Private Bedroom w/lounge,35516941,Thomas,Brooklyn,South Slope,40.66336,-73.9789,Private room,50,60,0,,,1,362 +26076877,CONFORTABLE BIG BED ON NY CLOSE TO JFK AND LGA,173290675,Charlie,Queens,Woodhaven,40.69791,-73.85158,Private room,40,2,16,2019-06-16,1.24,3,330 +26077493,Fantastic 1bdr in New York,143400845,Pierpaolo,Bronx,University Heights,40.86113,-73.91511,Entire home/apt,100,5,1,2018-07-19,0.08,1,11 +26078971,Private Cozy bedroom 12 minutes to Midtown,104913801,Luis,Queens,Long Island City,40.75654,-73.94232,Private room,45,2,42,2019-06-30,3.59,2,54 +26079745,Entire Apartment in Prime Clinton Hill!,65775049,Nicole,Brooklyn,Clinton Hill,40.68834,-73.96269,Entire home/apt,150,3,1,2018-08-17,0.09,2,255 +26080154,NYC HUB GuestRoom: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.70908,-73.78237,Private room,66,2,17,2019-06-29,1.34,7,0 +26080646,Entire West Village Apartment,196017028,Franklin,Manhattan,Greenwich Village,40.72848,-74.0012,Entire home/apt,200,4,18,2019-07-01,1.42,1,5 +26080745,bayroom,196017211,Mohammed,Brooklyn,Bay Ridge,40.63554,-74.02421,Private room,35,28,7,2019-05-21,0.55,1,264 +26080980,Magical Room in the Heart of West Village,12810839,Kytzia,Manhattan,West Village,40.73157,-74.00481,Private room,90,2,1,2018-07-13,0.08,2,0 +26081052,Sunny room with backyard in a yoga studio,5748117,Malika,Brooklyn,Bedford-Stuyvesant,40.678,-73.93974,Private room,75,1,25,2019-07-07,1.93,1,170 +26084019,"Window-filled & Spacious, Quiet Downtown Getaway",12672756,Jake,Manhattan,Chinatown,40.7165,-73.99107,Private room,90,2,42,2019-07-02,3.26,1,99 +26084024,"Quiet, sunlit apartment in heart of Brooklyn",23718772,Allan,Brooklyn,Crown Heights,40.67415,-73.96291,Entire home/apt,139,2,2,2019-05-26,0.70,1,12 +26084814,Large bedroom in a lovely flat in perfect location,54970203,Molly,Manhattan,Harlem,40.80372,-73.95266,Private room,82,2,33,2019-06-16,2.75,1,2 +26085068,"Lovely apartment in INWOOD, Manhattan",50814751,Maki,Manhattan,Inwood,40.86833,-73.92291,Entire home/apt,85,18,2,2019-01-13,0.21,1,16 +26085075,Charming studio with PRIVATE DECK by McCarren park,27530449,Estefania,Brooklyn,Greenpoint,40.72173,-73.9482,Private room,106,4,21,2019-06-03,1.73,2,58 +26085247,Bright Minimal Studio in Heart of Williamsburg,196059058,Emon,Brooklyn,Williamsburg,40.70984,-73.95979,Entire home/apt,100,7,3,2019-01-01,0.30,1,44 +26085282,Free ferry to Manhattan 10 mins away,182272609,Denada,Staten Island,Tompkinsville,40.63277,-74.09562,Entire home/apt,106,3,10,2019-06-29,0.86,2,87 +26085355,house,37001535,Daitao,Brooklyn,Fort Greene,40.69223,-73.98165,Entire home/apt,130,3,1,2019-01-19,0.18,1,0 +26086126,Beautiful and Clean Private Bedroom with Bathroom,152708570,Emily,Queens,College Point,40.78141,-73.84506,Entire home/apt,60,3,30,2019-06-17,2.49,1,55 +26086768,"New 3 Bdrm Urban Lux Oasis w/Deck, 50 Ft to Subway",64626614,Debbie & Hilel,Brooklyn,Crown Heights,40.66757,-73.92981,Entire home/apt,200,2,36,2019-06-23,2.80,1,321 +26086909,"Spacious townhouse, vibrant Brooklyn neighborhood",2797280,Michael,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95345,Entire home/apt,200,1,26,2019-06-29,2.39,1,69 +26087030,Charming bedroom with private bathroom,60908748,Maria,Brooklyn,Bushwick,40.7007,-73.921,Private room,100,1,5,2019-06-17,1.00,2,145 +26093497,Beautiful 5 bedroom+ Oasis in NYC,93752700,Bliss Beata,Brooklyn,Flatbush,40.63573,-73.96433,Entire home/apt,745,4,1,2019-01-02,0.16,1,28 +26094506,Small Room in great location Upper East Side,99349134,Tupac,Manhattan,Upper East Side,40.77816,-73.9541,Private room,95,1,44,2019-06-19,3.45,2,98 +26096547,"East Village studio, perfect location",3185760,Cristian,Manhattan,East Village,40.72906,-73.9845,Entire home/apt,85,14,14,2019-06-21,1.32,1,16 +26097566,"Magical Artist's Brownstone in Brooklyn, 2 Rooms",41099363,Maria,Brooklyn,Fort Greene,40.68792,-73.97671,Private room,230,4,2,2019-05-03,0.24,3,114 +26098014,"Room with private entrace & bath, AC + roofdeck",1855509,Janne,Brooklyn,Park Slope,40.67547,-73.97361,Entire home/apt,89,5,92,2019-07-06,7.26,1,193 +26098606,"Light, airy and spacious Apartment close to all",15106211,Siddhartha,Brooklyn,Gowanus,40.67965,-73.98899,Entire home/apt,150,5,2,2019-04-25,0.17,1,16 +26098654,3 bedroom duplex with skyline view roof terrace,6568666,Jeroen,Brooklyn,Clinton Hill,40.69003,-73.96865,Entire home/apt,274,2,0,,,1,24 +26099255,"Serenity Studio; Light, Bright and Cute",196171209,Marina,Brooklyn,Crown Heights,40.67316,-73.95397,Entire home/apt,85,2,57,2019-07-03,4.62,1,110 +26099303,Heart of South Williamsburg,27966935,Lara,Brooklyn,Williamsburg,40.71033,-73.9647,Private room,100,28,20,2019-05-31,1.62,1,309 +26099885,Sunlit modern Brooklyn home with terrace,196178201,Mimi,Brooklyn,Carroll Gardens,40.67895,-73.99529,Entire home/apt,225,6,1,2018-08-14,0.09,1,0 +26104760,Private En-Suite Bedroom in charming BK Retreat,56198002,Hannes & Will,Brooklyn,Flatbush,40.65239,-73.96417,Private room,75,2,14,2019-06-16,1.12,1,17 +26107318,Great Townhome!! 1 Stop from Manhattan! Sleeps 6,99268393,Brian,Queens,Long Island City,40.74436,-73.95205,Entire home/apt,175,2,42,2019-07-01,3.77,1,238 +26108084,Sunny Flat in NYC,11121151,Christina,Manhattan,Upper West Side,40.7958,-73.97163,Private room,69,2,0,,,1,0 +26108336,Large room with a view in the heart of NYC 31C2,190921808,John,Manhattan,Hell's Kitchen,40.75587,-73.99724,Private room,65,7,5,2019-05-20,0.53,47,356 +26109380,Amazing large studio apartment in Harlem!,4426065,Lynn,Manhattan,Harlem,40.80799,-73.94158,Entire home/apt,100,7,1,2018-07-24,0.09,1,26 +26110133,Luxurious 2 Bedroom Apartment,196274503,Patience,Queens,Bayswater,40.60606,-73.75492,Entire home/apt,120,1,23,2019-03-02,1.81,1,189 +26110466,"JFK Queens Home away from Home""House Of Suedajoy#3",175019394,Suzan,Queens,Jamaica,40.67057,-73.77869,Private room,60,1,22,2019-06-22,1.73,6,81 +26119005,"Alisha’s Place-JFK 10 MINS, walk to subway & buses",102410496,Alisha,Queens,Richmond Hill,40.69608,-73.8286,Entire home/apt,249,2,15,2019-06-16,1.28,2,360 +26119170,City Island Seaview Apartment,196333700,Teddy,Bronx,City Island,40.85104,-73.78573,Entire home/apt,110,2,25,2019-05-27,2.18,1,171 +26121109,Boho Haven with Private Balcony in Bushwick,33592161,Dakota,Brooklyn,Bushwick,40.69777,-73.92252,Entire home/apt,95,3,5,2019-04-27,0.39,1,0 +26121159,Bedstuy Brooklyn home with a view!!!,195831980,Randaull,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94791,Entire home/apt,170,1,27,2019-03-30,2.13,1,137 +26121444,3 bedroom Apartment near airport and attractions,171171143,Mariela,Queens,East Elmhurst,40.7642,-73.86932,Entire home/apt,100,4,15,2019-06-07,1.34,1,203 +26121733,Modern Apartment in The Heart of Brooklyn,24545739,Ewa,Brooklyn,Bedford-Stuyvesant,40.68824,-73.92377,Private room,65,4,5,2018-11-26,0.39,1,0 +26121892,"NO FEE, Brand New Luxury Studio in Manhattan",195656040,Donyanaz,Manhattan,Midtown,40.74914,-73.98779,Entire home/apt,350,7,0,,,1,0 +26122874,Sparkling Pad near Times Square HK -w- Full Bed,501343,Bryan,Manhattan,Hell's Kitchen,40.76361,-73.98847,Private room,155,2,3,2019-05-30,0.24,2,0 +26123841,East Village Authentic Loft Living Apt,4227314,Alex,Manhattan,East Village,40.72204,-73.98151,Private room,90,3,28,2019-06-24,2.26,1,6 +26125053,Greenpoint private 2 rooms,196373534,Paschal,Brooklyn,Greenpoint,40.72921,-73.95016,Private room,50,2,1,2018-07-10,0.08,1,0 +26125349,Beautiful apartment in Greenpoint,502897,Malu,Brooklyn,Greenpoint,40.72791,-73.95689,Entire home/apt,150,5,1,2018-06-20,0.08,1,0 +26126570,Two bedroom apartment with all amenities,673215,Jessica Rose,Manhattan,Harlem,40.82299,-73.95461,Entire home/apt,200,5,0,,,2,39 +26126894,2+1 Bedroom Apartment Upper West Side,17444700,Andrés,Manhattan,Morningside Heights,40.80724,-73.96677,Entire home/apt,250,7,4,2019-06-29,0.37,1,4 +26127726,"Spacious, beautiful, quite 2BR 2BA in the UES",4965751,Dipti,Manhattan,Upper East Side,40.7713,-73.95568,Entire home/apt,189,4,8,2019-01-02,0.65,1,7 +26127763,Cozy Garden Suite on Prime Bed-Stuy Block,840092,Veronika,Brooklyn,Bedford-Stuyvesant,40.6834,-73.93648,Entire home/apt,119,2,46,2019-07-02,3.85,1,81 +26128481,Cozy Home Away TH,179436298,Nyota,Brooklyn,Crown Heights,40.66391,-73.95618,Entire home/apt,112,2,3,2018-12-29,0.29,2,364 +26129270,"Mi casa es su casa, La casa de Pupilos",6724903,Edgard,Queens,Middle Village,40.71293,-73.88402,Private room,70,2,20,2019-05-04,1.82,1,224 +26129308,Charming Crown Heights Bedroom,107712560,Julia,Brooklyn,Bedford-Stuyvesant,40.67982,-73.945,Private room,41,1,15,2019-01-03,1.17,1,0 +26131004,Sunny Delight,196421197,Pedro Y Martha,Queens,East Elmhurst,40.75902,-73.87698,Private room,45,3,15,2019-07-01,1.18,1,365 +26131195,"Large modern luxury 1 bdrm apt, beautiful rooftop!",40323007,Joshua,Manhattan,East Village,40.72852,-73.97987,Entire home/apt,280,2,40,2019-06-27,3.18,1,119 +26131606,High End Luxury 2 Bedroom Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74969,-73.9774,Entire home/apt,200,30,0,,,91,311 +26131794,Super Luxurious 2 Bedroom Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.7512,-73.97738,Entire home/apt,175,30,2,2019-04-30,0.38,91,241 +26131873,Stunning 1 Bedroom 2 Bathroom in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76234,-73.98947,Entire home/apt,199,30,1,2018-08-31,0.10,91,0 +26132476,Sunny private room 10 minutes from Times Sq. 53E3,190921808,John,Manhattan,Hell's Kitchen,40.75544,-73.99721,Private room,64,30,5,2019-05-08,0.55,47,365 +26134096,"LGA cozy apt, Close to Astoria, Manhattan, JFK",156948703,Asad,Queens,East Elmhurst,40.76956,-73.87347,Entire home/apt,99,1,94,2019-07-07,7.32,6,333 +26134638,Beautiful 1 Bdrm w/ Large Private Patio,20659309,Emily,Brooklyn,Williamsburg,40.70901,-73.95471,Entire home/apt,168,2,5,2018-11-04,0.39,1,0 +26135091,Spacious Lower East Side Apartment,195638506,Anastasia,Manhattan,East Village,40.72213,-73.98236,Entire home/apt,150,3,27,2019-07-07,2.11,1,19 +26135659,Another comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68725,-73.91623,Entire home/apt,163,3,20,2019-06-03,1.59,3,309 +26135711,Heaven away from Home!.,76237449,Majidudeen,Queens,Jamaica,40.70647,-73.79794,Entire home/apt,52,30,0,,,1,365 +26136583,Newly Renovated Cozy Apartment,6171984,Deanna,Queens,Woodside,40.74789,-73.89752,Entire home/apt,156,1,2,2018-07-05,0.16,1,0 +26136978,Cozy Bronx nest,196468460,German And Wendy,Bronx,Unionport,40.82848,-73.85466,Entire home/apt,85,2,68,2019-07-04,5.37,1,247 +26137379,15 Mins to Rockefeller Center!,196476281,Damien,Bronx,Concourse,40.83193,-73.92223,Private room,40,1,29,2019-07-07,2.47,2,360 +26137457,Brooklyn Oasis 20 Min to Manhattan,1004883,Marisha,Brooklyn,Bushwick,40.69107,-73.90604,Private room,60,4,5,2019-06-28,0.45,2,364 +26137778,Peaceful Private Clean Rm Near 2/5Train/Metro N.,196462256,Rees,Bronx,Wakefield,40.89374,-73.85579,Private room,60,2,10,2019-04-10,0.85,1,365 +26138483,Manhattan Mid-town Time Square Cozy Bedroom,20630497,槟利,Manhattan,Hell's Kitchen,40.76418,-73.99448,Private room,70,2,2,2018-07-30,0.17,1,0 +26138542,Huge Cobble Hill BR w private bath city views,896708,Kat,Brooklyn,Carroll Gardens,40.68288,-73.99799,Private room,130,3,7,2019-04-23,0.57,2,48 +26138591,Room with AC - Cozy Manhattan Apt. —Central Park,196088317,Andreas & Bella,Manhattan,Upper East Side,40.76473,-73.95623,Private room,80,2,45,2019-06-13,3.56,2,26 +26138643,Sunny Apartment In The Heart of Lower Manhattan,6213880,Chelcie,Manhattan,Lower East Side,40.72202,-73.98922,Entire home/apt,145,2,16,2019-06-09,1.55,1,2 +26138702,Clean and big bedroom close to manhattan,18260424,Tevfik,Queens,Sunnyside,40.74304,-73.91699,Private room,73,1,1,2018-07-30,0.09,1,0 +26138943,Awesome bedroom. Clean & new apt. 5 min to train,43148410,Lo,Brooklyn,East New York,40.66761,-73.88693,Private room,38,30,2,2019-04-01,0.19,3,342 +26138957,Charming Sunny Bushwick Abode,9787070,Denisse,Brooklyn,Bedford-Stuyvesant,40.69462,-73.93249,Private room,60,4,0,,,1,0 +26139590,Safe upscale zone master bedroom close to subway,15838559,Weimin,Queens,Forest Hills,40.71357,-73.85138,Private room,59,60,4,2018-08-03,0.33,4,0 +26139678,Private cozy room in perfect UWS,18497228,현선,Manhattan,Morningside Heights,40.80485,-73.96534,Private room,1200,60,0,,,1,365 +26140709,Workspace Room 3 - 2,9864136,Anthony,Brooklyn,Bushwick,40.68644,-73.91554,Private room,36,2,1,2018-08-10,0.09,26,302 +26142708,Yankee baseball stay,158215530,Deon,Bronx,Concourse,40.82753,-73.92463,Private room,200,1,0,,,2,365 +26147454,"Sunny, Spacious 1BR in Ditmas Park, Brooklyn",48618049,Courtney,Brooklyn,Kensington,40.63278,-73.96891,Entire home/apt,90,4,0,,,1,5 +26147702,YANKEE BASEBALL STAY,158215530,Deon,Bronx,Concourse,40.82714,-73.92528,Private room,200,1,0,,,2,179 +26148245,NYC!!,196549213,Ronen,Manhattan,Hell's Kitchen,40.76718,-73.98574,Private room,102,14,3,2019-05-18,0.34,1,65 +26149494,10 minutes from JFK Airport Rockaway Beach Livin,196557649,Erica,Queens,Bayswater,40.59762,-73.76719,Entire home/apt,230,1,3,2019-06-01,0.33,2,310 +26150100,Eclectic One Bedroom in Little Italy,14170288,Stephanie,Manhattan,Little Italy,40.71829,-73.9978,Entire home/apt,174,30,0,,,1,89 +26150691,1 bedroom apt in an awesome part of town,7235975,Georges,Manhattan,West Village,40.73026,-74.00392,Entire home/apt,200,2,2,2018-07-01,0.16,1,2 +26153609,A Historic District Gem in Jackson Heights,196580929,Vivian,Queens,Jackson Heights,40.75228,-73.88699,Private room,42,1,3,2018-07-22,0.25,1,0 +26155827,Greenpoint room,5213686,Charlotte,Brooklyn,Greenpoint,40.73442,-73.95854,Private room,70,5,2,2018-08-09,0.16,1,0 +26156155,Beautiful studio apartment /Grand central location,166366283,Angie,Manhattan,Midtown,40.7511,-73.97103,Entire home/apt,170,7,2,2018-09-30,0.20,1,64 +26157329,Large studio apt w/ private deck. Close to RUMC.,102263916,John,Staten Island,Tompkinsville,40.63111,-74.09001,Entire home/apt,99,1,37,2019-07-07,4.25,2,172 +26157426,Luxurious Deluxe King Room St. Regis Manhattan,26556695,Alyssa,Manhattan,Midtown,40.76031,-73.9739,Entire home/apt,750,1,9,2019-01-01,0.71,6,365 +26158157,Sunny & Quiet 2 bedroom Apt In Greenwich Village,2697373,Anna,Manhattan,Greenwich Village,40.7298,-73.99838,Entire home/apt,289,3,6,2019-04-22,0.52,1,0 +26158857,Luxury Retreat with Juliette Balcony on Stone St.,4196156,Kristina,Manhattan,Financial District,40.70512,-74.01097,Entire home/apt,200,1,1,2019-07-06,1,1,16 +26159891,Dream home + Best Location. Brooklyn Heights.,10995888,Vasilisa,Brooklyn,Brooklyn Heights,40.6901,-73.99247,Entire home/apt,208,5,5,2019-05-20,0.51,1,9 +26160236,Beautiful Exposed Brick Williamsburg 2 bedroom,8871034,Sarah,Brooklyn,Williamsburg,40.71002,-73.96333,Entire home/apt,175,5,21,2019-04-14,1.72,1,0 +26162960,Bridge view,4410830,Mik,Brooklyn,Williamsburg,40.71162,-73.96431,Entire home/apt,225,4,4,2019-06-24,0.38,1,50 +26164046,"New Designer 4 Bedroom, AC-Laundry. Next to Subway",17510243,Yankel,Brooklyn,Crown Heights,40.66741,-73.92974,Entire home/apt,300,2,27,2019-06-30,2.13,1,347 +26164204,Lovely 1BR Apartment in the heart of Park Slope,45062059,Akriti,Brooklyn,Park Slope,40.67259,-73.98324,Entire home/apt,130,2,15,2019-06-16,2.02,1,174 +26164606,Studio Apartment with Gorgeous View!,196660011,Ge,Manhattan,Harlem,40.81863,-73.95771,Entire home/apt,170,1,28,2018-11-28,2.20,1,0 +26165109,Historic Far Rockaway Beach Bungalow,193889243,David S,Queens,Far Rockaway,40.59458,-73.75839,Entire home/apt,275,3,0,,,1,89 +26165195,"Private Bedroom. Near Subway. Bushwick, Brooklyn",396599,Thomas,Brooklyn,Bushwick,40.69966,-73.92295,Private room,40,1,65,2019-07-02,5.27,2,52 +26165533,1B in the heart of the East Village,12501133,Erika,Manhattan,East Village,40.72814,-73.98296,Entire home/apt,131,3,35,2019-06-18,2.82,1,0 +26166442,Big bright room near iconic Red Hook hangouts,10448798,Kit,Brooklyn,Red Hook,40.67498,-74.01214,Private room,75,2,6,2018-10-27,0.50,1,0 +26166987,Family friendly Soho loft apartment,5161217,Stephanie,Manhattan,SoHo,40.72362,-74.0053,Entire home/apt,425,4,2,2018-12-31,0.20,1,1 +26167034,Spacious Private Brooklyn Room w/ Backyard Access,31230100,Elissa,Brooklyn,Crown Heights,40.67304,-73.95615,Private room,100,7,3,2019-01-03,0.29,3,161 +26167182,Historic penthouse apartment on Saint Marks Place,42110861,Chelsea,Manhattan,East Village,40.7299,-73.98824,Entire home/apt,250,2,72,2019-05-27,5.82,1,96 +26167567,Common Single Room #2,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68643,-73.93007,Private room,40,1,148,2019-07-01,11.68,6,174 +26168027,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69144,-73.93493,Private room,120,30,0,,,4,0 +26171844,Double Room with AC- 72nd St. Subway- Central Park,196088317,Andreas & Bella,Manhattan,Upper East Side,40.76505,-73.95824,Private room,85,10,54,2019-06-22,4.34,2,2 +26182768,Cozy NYC apartment in Little Italy,21146326,Olga,Manhattan,Chinatown,40.71826,-73.99671,Entire home/apt,156,2,9,2019-05-31,0.74,2,1 +26182774,Private Bedrm & Bath in Luxury Apt,7918430,Stephen Lionel,Manhattan,Harlem,40.80715,-73.95301,Private room,112,2,31,2019-06-06,2.59,2,340 +26183173,Cozy apartment at the south tip of central park,99658452,Tina,Manhattan,Midtown,40.76039,-73.96504,Entire home/apt,139,30,1,2018-08-26,0.09,1,0 +26183582,"Spacious 1-BR by Central Park/Museum Mile, Harlem",52526057,Joshua,Manhattan,East Harlem,40.7898,-73.94853,Entire home/apt,169,5,45,2019-06-30,3.56,1,150 +26185195,Private bedroom in Fort Greene home,20480059,Mallary,Brooklyn,Fort Greene,40.69358,-73.97065,Private room,75,3,4,2018-07-30,0.32,3,0 +26186295,Cozy room **10 Mins away from JFK Airport **,196701166,Dee,Queens,Rosedale,40.65376,-73.74057,Private room,70,7,1,2018-06-24,0.08,1,0 +26186945,Bushwick Paradise!,45251482,Sheri,Brooklyn,Bedford-Stuyvesant,40.69222,-73.93171,Entire home/apt,300,5,5,2018-08-12,0.39,1,280 +26188309,Master bedroom next to Prospect Park,82359141,Peter,Brooklyn,Park Slope,40.66747,-73.97473,Private room,75,5,1,2018-06-30,0.08,1,189 +26188604,Exclusive & Bright Private 3-Floor Townhome,385367,Tom,Brooklyn,Williamsburg,40.71758,-73.95153,Entire home/apt,595,3,5,2019-01-01,0.43,1,13 +26188665,Spacious private room on UWS near Central Park,27474188,Janice,Manhattan,Upper West Side,40.79827,-73.97231,Private room,90,2,6,2018-08-11,0.48,3,0 +26188757,Cute Place in the Heart of Astoria,168244985,Ferheen,Queens,Astoria,40.76879,-73.92666,Entire home/apt,99,3,1,2018-07-09,0.08,1,0 +26189111,"Clean, Comfortable & Cozy Brooklyn Apartment",145238884,Petula,Brooklyn,Crown Heights,40.67387,-73.91306,Entire home/apt,120,2,13,2019-07-01,1.23,1,52 +26190193,Spacious and Bright Williamsburg Loft,13414796,Corrie,Brooklyn,Williamsburg,40.71578,-73.95389,Entire home/apt,185,3,10,2019-04-28,1.12,1,0 +26190559,Lapp House,196838948,Daniel,Queens,Kew Gardens Hills,40.72079,-73.82263,Entire home/apt,160,3,0,,,1,0 +26190785,Minimalistic private room w twin bed in the Bronx,144119993,Charles,Bronx,Belmont,40.85609,-73.88391,Private room,30,1,9,2018-08-02,0.71,2,0 +26190809,UWS room perfect for NYC weekend,27474188,Janice,Manhattan,Upper West Side,40.7975,-73.97099,Private room,74,2,2,2018-07-30,0.16,3,0 +26191578,Bright 2 bedroom UWS APT perfect for family trip,27474188,Janice,Manhattan,Upper West Side,40.79838,-73.97076,Private room,240,5,0,,,3,0 +26191770,Modern New York City Penthouse w/ Incredible Views,149328348,Caitie,Manhattan,Financial District,40.70563,-74.01106,Entire home/apt,131,30,2,2019-05-31,0.23,1,0 +26192545,"Williamsburg Bedroom with TV, AC, WiFi & Library",19665329,Patrick,Brooklyn,Williamsburg,40.71045,-73.9441,Private room,40,5,3,2018-11-02,0.27,1,0 +26193643,"Cute, Cozy, East Village 1BR Apartment!",70011812,Elise,Manhattan,East Village,40.72564,-73.98616,Entire home/apt,125,2,41,2019-07-01,3.32,2,48 +26193678,Manhattan Apartment - Near North Central Park,108286255,Gabrielle,Manhattan,Harlem,40.81264,-73.94231,Private room,60,1,3,2019-01-01,0.46,1,0 +26194019,Cozy 1-Bedroom Apartment 2 Blocks from the Subway,66196101,Francesco,Brooklyn,Bay Ridge,40.62991,-74.02458,Entire home/apt,95,2,6,2018-08-04,0.48,1,0 +26194075,Zen Den in X's Square!,2258341,Beto,Manhattan,Hell's Kitchen,40.76113,-73.99185,Private room,155,10,9,2019-06-15,0.80,1,103 +26194357,Leli’s Modern Luxe Apartment,59982224,Leli,Brooklyn,East New York,40.67503,-73.87357,Private room,120,2,22,2019-04-28,1.77,4,40 +26194606,Brooklyn Oasis in Beautiful Bay Ridge,64825520,Anthony,Brooklyn,Fort Hamilton,40.61798,-74.03619,Entire home/apt,200,2,8,2019-06-11,0.63,1,177 +26194771,Spacious 3 bedroom Duplex with garden,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68716,-73.94601,Entire home/apt,250,30,0,,,3,196 +26196029,PRIME Williamsburg Big Quiet room Private Balcony,2773082,Freddie,Brooklyn,Williamsburg,40.71595,-73.96001,Private room,95,3,7,2019-06-30,1.11,1,6 +26196660,Brighton Beach the room,196872053,Marina,Brooklyn,Brighton Beach,40.57573,-73.96051,Private room,38,3,16,2019-06-17,1.38,2,175 +26198109,Modern 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74419,-73.97186,Entire home/apt,187,29,1,2019-06-01,0.79,96,335 +26198112,Designer apartment on Riverside Dr-Upper West Side,196900738,Kimberley,Manhattan,Upper West Side,40.79801,-73.97403,Entire home/apt,400,1,0,,,1,0 +26198481,Far Rockaway Home near the Beach,196903663,Mickey,Queens,Arverne,40.59633,-73.80083,Entire home/apt,50,2,58,2019-07-07,4.59,1,349 +26199962,BELLA CASA large Studio - 5 mins to Times Square!!,16480700,Eddie&Vlad,Manhattan,Upper East Side,40.76451,-73.96744,Entire home/apt,249,1,37,2019-06-07,3.04,7,352 +26200203,Bright 2BR Apartment in Woodside,5726293,Suah,Queens,Woodside,40.74382,-73.90879,Private room,60,1,19,2019-06-23,1.52,2,34 +26200249,ALIA’S Place -JFK- 7 mins- walk to subway & buses,102410496,Alisha,Queens,Richmond Hill,40.6964,-73.82837,Entire home/apt,215,2,2,2018-08-05,0.16,2,360 +26200914,Full Apartment in Forest Hills with Easy Parking,97262966,John,Queens,Forest Hills,40.71325,-73.85415,Entire home/apt,89,3,5,2018-12-30,0.45,2,1 +26201442,"Private, Comfy Room, 2 blocks from Central Park",63600861,Birim,Manhattan,Harlem,40.80036,-73.95433,Private room,90,3,50,2019-06-15,4.07,1,7 +26201913,"Beautiful, spacious 2 bed, Crown Heights apartment",1260391,Thomas,Brooklyn,Brownsville,40.66837,-73.92454,Entire home/apt,165,4,9,2019-06-29,1.17,1,21 +26202688,Suite Monroe,183603765,Monique And Colin,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94964,Entire home/apt,108,2,26,2019-06-23,2.26,1,315 +26203807,"SPACIOUS ARTSY room w/ rooftop, 25 min>Manhattan",104124704,Alejandro,Brooklyn,Crown Heights,40.66733,-73.9535,Private room,55,1,11,2019-05-12,0.92,1,0 +26205265,HUGE APT on border of EAST VILLAGE & GRAMERCY!,196961556,Mike,Manhattan,Gramercy,40.73338,-73.98315,Entire home/apt,499,4,41,2019-06-30,3.31,1,10 +26210593,Bright 4-people room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.71997,-73.94021,Shared room,35,30,0,,,10,343 +26211176,Shared room in East Williamsburg near the park,178543960,Sergii,Brooklyn,Greenpoint,40.72157,-73.94002,Shared room,35,30,1,2018-08-10,0.09,10,364 +26219420,"Welcome To Safe Space-warm, clean and friendly!",39805148,Chris,Queens,Jamaica,40.68727,-73.77858,Private room,75,1,5,2019-06-26,0.47,2,281 +26220343,Stylish & Cozy Private Studio Apartment (UES),2747221,Judah,Manhattan,Upper East Side,40.76321,-73.9583,Entire home/apt,99,3,10,2019-04-21,0.86,1,7 +26221423,Cozy 2BR in Trendy LIC! 1 Stop From Manhattan!!!,62701284,Steve,Queens,Long Island City,40.7452,-73.9535,Entire home/apt,155,2,43,2019-07-03,3.60,1,239 +26223279,和缘浪漫民宿,153018041,Feng,Queens,Flushing,40.75651,-73.80455,Private room,50,1,17,2019-02-23,1.34,2,0 +26224149,Brooklyn home with the view,191901037,Marsha,Brooklyn,Sheepshead Bay,40.58338,-73.93961,Private room,75,10,2,2019-05-08,0.20,2,146 +26224487,3 bedroom 1200sq ft apt with exposed brick & deck,55978113,Alexis,Staten Island,Stapleton,40.63701,-74.07624,Private room,50,1,21,2019-07-07,1.81,2,363 +26224538,Modern light and bright townhouse in Brooklyn.,53621,Monica,Brooklyn,Bedford-Stuyvesant,40.69231,-73.93781,Entire home/apt,220,2,23,2019-07-02,2.19,2,270 +26225021,Cozy room/creative space in modern bed stuy home.,156255637,Titi,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94727,Private room,90,1,32,2019-06-29,3.06,1,36 +26227629,Spacious and Sunny Studio,26596078,Natalya,Brooklyn,Bay Ridge,40.62804,-74.02603,Entire home/apt,75,7,11,2019-05-19,0.91,1,3 +26228457,Brooklyn Brownstone (blue bedroom - single bed),80292073,Julie,Brooklyn,South Slope,40.66323,-73.98138,Private room,60,5,7,2019-06-02,0.59,2,56 +26229979,New York Home with a back yard in Central Harlem.,150482926,Yann,Manhattan,Harlem,40.80898,-73.94591,Entire home/apt,295,5,3,2018-08-21,0.27,1,0 +26232008,Large Private Room btwn Central/Riverside Parks,28071093,Kathleen,Manhattan,Upper West Side,40.79973,-73.9656,Private room,60,2,5,2018-09-25,0.45,1,0 +26232656,"Bright, spacious 1BD apt near 30th Ave in Astoria",46592613,Julie,Queens,Astoria,40.76945,-73.92485,Entire home/apt,100,5,5,2019-06-29,0.57,1,0 +26235821,Wonderful Location on East 68th st,10371008,Anna,Manhattan,Upper East Side,40.76436,-73.95672,Shared room,75,4,10,2019-06-14,1.15,2,329 +26235873,Voted #1 Airbnb In NYC,197169969,Maria,Queens,Jamaica,40.68939,-73.79886,Entire home/apt,10,2,22,2019-07-06,1.76,1,332 +26236138,Spacious private bedroom in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85392,-73.93139,Private room,58,1,20,2019-06-20,2.01,5,315 +26238688,Super Cozy Studio Apartment,6141162,Myrto,Queens,Woodside,40.742,-73.89505,Entire home/apt,60,14,3,2019-01-07,0.30,1,4 +26240434,Amazing apartment,38969811,Lea,Manhattan,Upper East Side,40.78135,-73.95194,Private room,100,6,0,,,1,0 +26247578,FURNISHED 2BR 1BA BY CENTRAL PARK!!,22129776,Ali,Manhattan,Hell's Kitchen,40.76502,-73.98839,Entire home/apt,369,1,2,2019-04-10,0.22,3,365 +26249499,Large private bedroom near Times sq 23B4,190921808,John,Manhattan,Hell's Kitchen,40.75418,-73.99644,Private room,150,7,12,2019-06-01,0.95,47,354 +26249544,Comfy Room with Private Insuite Bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9343,Private room,63,3,27,2019-07-06,2.26,7,225 +26250185,LYRIC - Hotel Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70722,-74.00873,Entire home/apt,219,1,36,2019-07-07,2.83,8,321 +26250476,Quiet Homestead in the city,102228163,Cesar,Brooklyn,Carroll Gardens,40.67683,-74.00056,Entire home/apt,90,7,3,2018-10-30,0.25,3,0 +26250574,Perfect Pied-à-Terre,9962257,Erika & Brett,Brooklyn,Greenpoint,40.7287,-73.95607,Entire home/apt,171,2,19,2019-06-16,1.51,1,81 +26250832,Sun lit Room in Bushwick,48260592,Lizzy,Brooklyn,Bushwick,40.69922,-73.93762,Private room,40,4,0,,,1,0 +26251173,Large bedroom close to M & L trains with backyard,71742050,Jameel,Brooklyn,Bushwick,40.70057,-73.91414,Private room,35,3,0,,,1,3 +26251284,"LYRIC - 1 Bedroom Suite, 1 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70747,-74.00663,Entire home/apt,309,1,15,2019-03-23,1.18,8,143 +26251408,Sunny Bedstuy Brooklyn Apartment,17673366,Shayna,Brooklyn,Bedford-Stuyvesant,40.69397,-73.93124,Private room,60,1,1,2018-09-27,0.11,1,0 +26251587,Extremely large 1 bed in West Chelsea- Highline,28171999,Alex,Manhattan,Chelsea,40.74561,-74.00205,Entire home/apt,250,3,0,,,1,10 +26251659,"LYRIC - 2 Bedroom Suite, 1 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.7057,-74.00819,Entire home/apt,650,1,7,2019-05-19,0.76,8,315 +26252069,Beautiful cozy apartment in Midtown West,197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.9871,Shared room,80,1,60,2019-06-19,4.76,7,225 +26252097,Comfy Room for a NYC Stay,157295347,Ana,Queens,Woodside,40.74474,-73.90531,Private room,50,1,10,2019-05-27,1.09,3,328 +26252841,Private small accomodation specially for you!,140599227,Fanny,Queens,Forest Hills,40.73156,-73.8523,Private room,30,1,1,2018-10-08,0.11,2,363 +26253008,Brooklyn Studio Apartment in 2 family Townhouse,506007,Elodie,Brooklyn,Kensington,40.64692,-73.97706,Entire home/apt,90,3,6,2018-11-20,0.50,1,30 +26253804,Hell's Kitchen Living Room Retreat,145072632,Andrea,Manhattan,Hell's Kitchen,40.75973,-73.98815,Shared room,65,2,13,2019-06-23,1.34,2,5 +26253826,Historical Central Park stay,187872824,Erik,Manhattan,Upper West Side,40.7989,-73.96042,Private room,150,1,0,,,2,365 +26254872,Sunny and cozy 1BR in Astoria,7132948,Cindy,Queens,Astoria,40.76433,-73.92192,Entire home/apt,110,2,2,2018-07-30,0.16,1,6 +26254953,Gorgeous & spacious room in Bed-Stuy,2989773,Megan,Brooklyn,Bedford-Stuyvesant,40.68697,-73.95141,Private room,95,3,2,2019-05-29,0.17,1,38 +26255072,15 min to NYC from a comfy and clean house.,157295347,Ana,Queens,Woodside,40.74445,-73.90581,Private room,32,2,16,2018-12-23,1.28,3,365 +26255080,♥♥♥ Entire House with Backyard & Superfast WiFi♥♥♥,191338162,William,Bronx,Allerton,40.8616,-73.86227,Entire home/apt,142,2,31,2019-07-01,2.50,5,312 +26255392,Large one bedroom on the Upper East Side.,64097192,Lisa,Manhattan,Upper East Side,40.77055,-73.95509,Entire home/apt,150,2,28,2019-07-01,2.25,1,0 +26255895,Furnished room w/ AC in Crown Heights/Clinton Hill,9478555,Alex,Brooklyn,Crown Heights,40.67911,-73.96012,Private room,35,2,2,2018-07-05,0.16,1,0 +26256019,Private Room in the Heart of New York,192750134,Oni,Queens,Long Island City,40.75233,-73.9394,Private room,55,1,23,2019-06-30,1.85,1,263 +26256557,Studio-like July sublet,197355864,J.T.,Brooklyn,Park Slope,40.6735,-73.97606,Private room,50,31,0,,,1,340 +26256921,Cozy Bushwick Apartment in Great Neighborhood,124693842,Lauren,Brooklyn,Bushwick,40.69788,-73.922,Entire home/apt,140,5,3,2018-08-19,0.25,1,0 +26257613,"Cozy studio, Best Location /Live like a New Yorker",42993277,Alberto,Manhattan,Midtown,40.75016,-73.96925,Entire home/apt,175,3,5,2018-12-14,0.51,1,230 +26257731,Private room in a large duplex,171092619,Clement,Brooklyn,Williamsburg,40.7079,-73.94896,Private room,59,13,0,,,1,0 +26257823,Sunny Lofted Bedroom in Spacious Shared Apt.,186110692,John,Brooklyn,Bushwick,40.69014,-73.91908,Private room,39,1,20,2019-06-25,1.63,1,14 +26257903,Eco Chic King Size Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68581,-73.99586,Private room,80,7,57,2019-06-16,4.49,2,285 +26258306,Private Manhattan 1BR w/ a view & light,22090713,Abigail,Manhattan,Washington Heights,40.85068,-73.9372,Entire home/apt,65,2,4,2019-03-31,0.98,1,0 +26258351,Escape NYC in the Borough of Parks!,6402171,Taryn,Staten Island,Rossville,40.5479,-74.21017,Entire home/apt,75,3,21,2019-07-01,1.69,1,59 +26259541,Cozy sunny loft in East Williamsburg,5314938,Olya,Brooklyn,Williamsburg,40.70937,-73.94113,Private room,94,2,18,2019-06-23,1.48,1,0 +26260516,Bright room between SoHo/NoHo/LES,191276498,Yosh,Manhattan,Little Italy,40.71778,-73.99801,Private room,91,3,35,2019-04-23,2.84,1,0 +26268189,!Captivating Private Room,154258141,Elsie,Brooklyn,Bushwick,40.68885,-73.91487,Private room,60,2,8,2019-06-15,0.74,10,356 +26270554,Spacious & primely-located Brooklyn apartment,28186801,Kate,Brooklyn,Williamsburg,40.71882,-73.94943,Entire home/apt,260,2,1,2018-06-28,0.08,1,0 +26270906,Perfect spot near Kennedy airport,119156699,Marj,Queens,Briarwood,40.71309,-73.8155,Shared room,73,1,2,2019-05-20,0.21,1,90 +26271462,3+ Bedroom House - Perfect For A Family Visit!,197487133,Susye,Brooklyn,Windsor Terrace,40.65053,-73.97438,Entire home/apt,225,7,1,2018-10-10,0.11,1,168 +26271688,Affordable Sunnyside Room. Comfortable Quiet Safe.,137358866,Kazuya,Queens,Sunnyside,40.735,-73.92038,Private room,34,30,2,2019-03-24,0.18,103,251 +26272163,Gorgeous Bedroom steps from local stores!,197354631,Nina,Brooklyn,Williamsburg,40.71471,-73.94173,Private room,67,30,3,2019-05-31,0.28,3,19 +26272421,Upper East Side/ Midtown Studio,197294267,Corey,Manhattan,Upper East Side,40.76071,-73.96062,Entire home/apt,170,3,2,2019-01-02,0.17,1,0 +26272989,Lovely Prospect Heights duplex with private patio,19562,Putri,Brooklyn,Crown Heights,40.68054,-73.96278,Entire home/apt,190,2,1,2018-08-10,0.09,1,0 +26273200,Big sunny private room (cat as a bonus ;-)),118763899,Elena,Manhattan,Harlem,40.81889,-73.94269,Private room,40,21,0,,,1,67 +26274345,Private Bedroom in Hudson Heights Manhattan,161617875,Tyge,Manhattan,Washington Heights,40.85221,-73.93916,Private room,97,2,0,,,2,0 +26274490,Cozy Stay!!,197516314,Genny,Staten Island,Port Richmond,40.63428,-74.13339,Private room,50,1,16,2019-06-23,1.53,3,365 +26274952,Entire Apartment in House! 20mins to FREE ferry!,145536848,Petya,Staten Island,Concord,40.60307,-74.08441,Entire home/apt,100,1,25,2019-07-01,5.64,1,72 +26275024,“Comfort Inn” Queens. NON-SMOKERS ONLY.,22737802,Joy,Queens,Rego Park,40.73143,-73.85674,Shared room,65,3,8,2019-06-30,0.71,1,161 +26275643,Modern Elegance on the Upper East Side,143719035,Ash,Manhattan,Upper East Side,40.76776,-73.95214,Entire home/apt,220,3,3,2019-04-09,0.26,1,0 +26277801,Upper west side 2bedroom apartment.,187960424,Anqi,Manhattan,Upper West Side,40.78968,-73.97169,Entire home/apt,250,3,1,2018-07-28,0.09,1,0 +26278372,"Private apartment with a view, stunning location.",17084566,Alfredo,Brooklyn,Flatbush,40.6303,-73.96179,Entire home/apt,120,60,13,2019-06-12,1.11,1,0 +26278431,HUGE Private Bedroom in Midtown Manhattan!,42624482,Param,Manhattan,Midtown,40.74897,-73.98642,Private room,120,3,2,2019-06-05,0.32,1,0 +26279108,Spacious sun-drenched room in Manhattan,39872420,Elizabeth,Manhattan,Inwood,40.86347,-73.92287,Private room,50,1,1,2018-07-01,0.08,1,0 +26279999,Private room in the heart of NYC. Room 2 of 3,22463377,Allison,Manhattan,Murray Hill,40.74953,-73.9801,Private room,120,1,16,2018-12-12,1.29,3,9 +26280662,"Huge room in beautiful park slope, by barclay ctr",30613046,Debbie,Brooklyn,Park Slope,40.68176,-73.97891,Private room,66,3,2,2019-05-19,1.03,2,87 +26280689,Artistic Room in walking distance to Central Park,197579052,Vlad,Manhattan,East Harlem,40.79778,-73.93921,Private room,80,1,60,2019-07-07,4.76,2,0 +26280881,Bedroom in 3br exposed brick apt w deck & garden,55978113,Alexis,Staten Island,Stapleton,40.63705,-74.07722,Private room,80,1,4,2018-10-25,0.34,2,29 +26281121,Quiet bedroom in walking distance to Central Park,197579052,Vlad,Manhattan,East Harlem,40.79657,-73.93913,Private room,80,1,49,2019-05-20,3.89,2,110 +26281187,Bedroom with a view located steps from the train,197584424,Kyle,Brooklyn,Bushwick,40.69821,-73.91559,Private room,45,5,1,2018-07-07,0.08,1,0 +26290174,Queens home steps from subway!!,131392140,Vik,Queens,Long Island City,40.75694,-73.9308,Entire home/apt,129,2,21,2019-06-16,1.73,5,90 +26291721,Gem in NoMad - entire apartment,197675041,Alexandra,Manhattan,Midtown,40.7424,-73.9837,Entire home/apt,220,3,0,,,1,28 +26293088,Sunny & Rustic one-bedroom in the West Village!,43297299,Nick,Manhattan,West Village,40.73886,-74.00413,Entire home/apt,200,3,6,2019-06-03,0.94,1,0 +26294354,Organic Bohemian Pad in Brooklyn,22899202,Sadie,Brooklyn,Bedford-Stuyvesant,40.68808,-73.92264,Private room,55,1,31,2019-07-04,2.82,2,225 +26294658,Entire 2nd Floor with Private Bath,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.68546,-73.94574,Private room,40,14,3,2019-05-28,0.26,3,256 +26295421,Cozy place II,197516314,Genny,Staten Island,Port Richmond,40.63408,-74.13224,Private room,55,1,40,2019-06-15,3.21,3,363 +26295450,Sunny & ideally located room in luxury bldg @ FiDi,96712147,Eva,Manhattan,Financial District,40.70494,-74.00806,Private room,150,3,3,2018-10-15,0.24,2,0 +26297402,"Cozy, sunny oasis in the heart of Crown Heights",57456594,Lisa,Brooklyn,Crown Heights,40.67713,-73.95219,Private room,75,2,18,2019-06-05,1.44,1,242 +26297631,Charming spacious garden level apt,1409262,Sarah,Brooklyn,Flatbush,40.64245,-73.95216,Entire home/apt,75,2,42,2019-07-05,3.73,6,87 +26298570,Private Room in brand new building and posh neighborhood,158338077,Muhammad,Brooklyn,Kensington,40.63743,-73.97229,Private room,67,1,10,2019-04-28,0.83,2,365 +26300797,"Luxury 4BR Home, Spacious & Central to Trains",197740847,Nicole,Brooklyn,Crown Heights,40.67989,-73.96212,Entire home/apt,250,3,30,2019-06-16,2.56,1,114 +26301985,Entire 2 Bedroom Elegant Suite w Modern Amenities,197736479,Akem & Terry,Brooklyn,Cypress Hills,40.67877,-73.89228,Entire home/apt,125,2,22,2019-07-06,1.88,1,282 +26303788,Cozy sanctuary/Big master bedroom/NYC/The Heights,39305771,Jess,Manhattan,Washington Heights,40.84911,-73.93097,Private room,59,2,5,2019-04-08,0.44,1,216 +26304188,luxurious & light-filled apartment in williamsburg,32543699,Lucia,Brooklyn,Williamsburg,40.71563,-73.95667,Entire home/apt,165,4,3,2018-08-07,0.24,2,0 +26304486,Bright & Sunny Brooklyn 1BDR with Amazing Views,20126746,Alexandra,Brooklyn,Greenpoint,40.72724,-73.95401,Entire home/apt,195,3,11,2019-06-09,0.95,1,0 +26304847,Sound Bath Sanctuary I Manhattan,7217937,Joule,Manhattan,Inwood,40.86764,-73.9259,Private room,50,2,17,2019-06-18,1.54,2,243 +26304871,New York City (Downtown) accessibly sleeps 6,197794017,Zoraida,Bronx,Bronxdale,40.85456,-73.86921,Entire home/apt,79,2,36,2019-06-24,3.33,1,10 +26306276,art-filled williamsburg room w/ ensuite bathroom,32543699,Lucia,Brooklyn,Williamsburg,40.71339,-73.95566,Private room,98,2,2,2018-09-10,0.17,2,0 +26310218,!!Cozy 3-person shared room near L train!!,178543960,Sergii,Brooklyn,Greenpoint,40.72166,-73.9399,Shared room,36,30,0,,,10,311 +26311285,Amazing & Quite shared room near L train,178543960,Sergii,Brooklyn,Greenpoint,40.72177,-73.94166,Shared room,37,30,3,2019-02-04,0.26,10,312 +26313558,Newly Renovated 2B/2B Skyline & River views BBQ,24013611,Juan,Manhattan,Upper West Side,40.77511,-73.99005,Entire home/apt,295,2,26,2019-06-09,2.17,1,2 +26317923,Room in Spacious Modern Apartment,195965905,Gabriella,Brooklyn,Bushwick,40.70009,-73.94015,Private room,75,6,2,2018-10-10,0.22,1,36 +26318555,Beautiful 1BDR UWS Apartment Close to Central Park,3274004,Sara,Manhattan,Upper West Side,40.78343,-73.9823,Entire home/apt,265,2,5,2019-05-22,0.49,1,5 +26319688,Beautiful Private Room in Brooklyn,69977115,Jacob,Brooklyn,Bensonhurst,40.61559,-73.99027,Private room,79,2,0,,,4,89 +26320074,3BR/2Bath Duplex Parkslope (15 min to Manhattan),118619861,Laurence,Brooklyn,Prospect Heights,40.67953,-73.97303,Entire home/apt,449,3,33,2019-06-30,2.82,1,329 +26320521,Beautiful Apartment across from Carnegie Hall,159498011,David,Manhattan,Midtown,40.7657,-73.98075,Entire home/apt,400,2,5,2018-12-30,0.43,1,0 +26322941,"Cobble Hill Retreat, 1-Bedroom Garden Apartment",27600568,Anne,Brooklyn,Cobble Hill,40.68537,-73.99861,Entire home/apt,195,2,55,2019-07-03,5.32,1,30 +26323287,C C's Honeyroom 30 minutes to Manhattan.,197957799,Christiana,Brooklyn,East Flatbush,40.65035,-73.94895,Private room,59,2,22,2019-07-07,3.59,1,107 +26324904,Best place at queens,167568754,Konrad,Queens,Middle Village,40.71064,-73.87463,Entire home/apt,100,1,4,2018-09-09,0.34,1,0 +26325637,Comfortable one bedroom apartment,47718147,Shalisa,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94327,Entire home/apt,100,1,30,2019-06-30,2.50,1,176 +26326115,East Harlem room,128731102,Veronica,Manhattan,East Harlem,40.79486,-73.94038,Private room,80,5,15,2019-06-27,1.23,1,0 +26326777,Comfy Private LivingRoom steps from Times Square!,162138028,Rex,Manhattan,Hell's Kitchen,40.75916,-73.99148,Shared room,96,10,1,2018-10-08,0.11,1,179 +26327565,Queens home in quiet neighborhood,155152907,Maria,Queens,St. Albans,40.70479,-73.76357,Private room,45,2,31,2019-06-30,2.80,2,266 +26327970,Island with City Benefits,1290628,Noemi,Bronx,City Island,40.84879,-73.78987,Entire home/apt,125,2,23,2019-07-07,1.89,1,155 +26329644,Spacious Private Bedroom in Financial District,25107874,Emil,Manhattan,Financial District,40.70989,-74.00813,Private room,85,3,4,2019-06-21,0.33,1,72 +26330526,"Sugar Hill House w/ 2 bdrms, den rm & 2 bathrms",198018391,Mich,Manhattan,Harlem,40.82235,-73.94846,Entire home/apt,250,2,27,2019-06-21,2.26,2,180 +26331103,room b,32060911,Elvis,Staten Island,West Brighton,40.63402,-74.11375,Private room,40,33,1,2019-07-04,1,2,337 +26331645,Bedstuy Comfy Private Room,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.6858,-73.94654,Private room,43,30,0,,,3,312 +26332143,"Bayridge Clean, Beautiful, Spacious Room",198030672,Rita,Brooklyn,Bay Ridge,40.63562,-74.0318,Private room,55,1,4,2018-12-30,0.35,1,156 +26332425,Luxurious Brownstone near Pratt with Breakfast!,198033559,Errol,Brooklyn,Clinton Hill,40.6902,-73.9669,Private room,150,2,5,2019-06-28,1.40,1,174 +26332468,"3BR renovated private apartment, prime Park Slope!",4694251,Anh & David,Brooklyn,Park Slope,40.67469,-73.98368,Entire home/apt,229,2,55,2019-07-05,4.41,1,215 +26333121,Cute Room. Manhattan. 20 min train to Time Square!,197334240,Angelica,Manhattan,Harlem,40.8131,-73.94459,Private room,67,1,73,2019-06-30,5.82,2,193 +26334022,Master bedroom. 20 min. train to Time Square!,197334240,Angelica,Manhattan,Harlem,40.81493,-73.94403,Private room,69,1,67,2019-06-15,5.39,2,170 +26334347,"1BR in Newly Renovated Apartment - Rm A, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70456,-73.9314,Private room,51,1,12,2019-06-17,1.14,7,352 +26334886,Park Slope Secret Garden,65884218,Patty,Brooklyn,Sunset Park,40.66264,-73.99174,Entire home/apt,275,4,5,2019-01-01,0.46,1,12 +26335577,Spacious Williamsburg Nook w/ Balcony,11080981,Trisha,Brooklyn,Williamsburg,40.71682,-73.95107,Private room,200,1,0,,,1,0 +26335893,Natural Light - Airy and Large Apartment,36644104,Jack,Manhattan,Midtown,40.75786,-73.96679,Entire home/apt,200,7,8,2018-12-04,0.76,1,0 +26336898,NYC cozy room in Upper East Side,16485294,Tom,Manhattan,Upper East Side,40.78351,-73.94709,Private room,75,1,6,2019-06-23,0.66,1,0 +26337274,Flatbush Fabulous,6032380,Christopher,Brooklyn,East Flatbush,40.63314,-73.94537,Entire home/apt,80,2,22,2019-03-24,1.77,1,0 +26337439,3 Bed / 1.5 Bath Huge Midtown Apt!,198082137,Alex,Manhattan,Midtown,40.74431,-73.98196,Entire home/apt,350,5,36,2019-06-09,2.87,1,124 +26337617,Express to NYC - beautiful 1 bedroom apartment,140039953,Bernarda,Brooklyn,Bergen Beach,40.62402,-73.91681,Entire home/apt,85,3,31,2019-07-08,2.95,1,122 +26338609,Room in Modern Bushwick Townhouse,23272375,Amber,Brooklyn,Bushwick,40.69825,-73.93725,Private room,46,7,3,2018-07-15,0.25,1,0 +26338854,"The Grange Place- private apartmt +w/1 bedrm/1bath",198018391,Mich,Manhattan,Harlem,40.82154,-73.94925,Entire home/apt,135,2,23,2019-06-13,1.92,2,328 +26338897,Contemporary Brooklyn living 20 min from Manhattan,2594243,Rachael,Brooklyn,Fort Greene,40.68664,-73.97683,Entire home/apt,200,5,2,2018-10-28,0.19,2,0 +26341895,Tempting Loft in Lovely Neighborhood,20884180,Kim,Brooklyn,Bedford-Stuyvesant,40.69474,-73.95498,Entire home/apt,125,10,2,2018-11-24,0.18,1,24 +26341916,A Gem In Downtown Flushing - Elegance and Class #1,89766221,Alan,Queens,Flushing,40.75548,-73.83042,Private room,190,2,0,,,2,362 +26344667,Private room in Apartment,129168532,Likowsky,Manhattan,Harlem,40.82081,-73.95474,Private room,58,1,5,2018-08-19,0.40,1,0 +26350983,"Gorgeous One-Bed in Williamsburg, BK",39456887,Janie,Brooklyn,Williamsburg,40.71239,-73.96775,Entire home/apt,150,10,1,2018-08-08,0.09,1,0 +26351621,Modern Home on the Park,4292600,Owen,Brooklyn,Fort Greene,40.68803,-73.9733,Entire home/apt,120,3,9,2019-06-14,0.75,1,0 +26351877,DaDukes Milky way,139879568,Alberto,Queens,Long Island City,40.76648,-73.94098,Private room,90,1,30,2019-06-10,2.58,6,365 +26352096,温馨方便COZY ROOM.1 min to subway& close to everything,115424426,Taylor,Queens,Elmhurst,40.73885,-73.87676,Private room,74,1,11,2018-09-20,0.93,1,0 +26352984,Quiet place w/ private bathroom,27355064,Marine,Brooklyn,Crown Heights,40.67508,-73.91788,Private room,99,1,19,2019-06-24,1.61,1,153 +26353304,"SPACIOUS, HIGH CELING, MODERN ROOM IN BROOKLYN",81127692,Rauf,Brooklyn,Flatbush,40.64613,-73.95354,Private room,53,2,45,2019-07-05,3.69,2,294 +26355142,Private bedroom w/pvt entrance near Times sq. 42D,190921808,John,Manhattan,Hell's Kitchen,40.75505,-73.99531,Private room,120,7,6,2019-06-14,0.50,47,332 +26355170,Charming Brooklyn oasis,198193838,Roger,Brooklyn,Greenpoint,40.72478,-73.9383,Entire home/apt,250,2,6,2019-05-19,0.53,1,49 +26355272,Place for solo traveler (girls only) in LIC,198195140,Lucy,Queens,Long Island City,40.74753,-73.93918,Shared room,30,1,15,2019-07-01,4.74,2,5 +26355413,Stunning Apartment in Heart of Williamsburg,46370836,Joey,Brooklyn,Williamsburg,40.7197,-73.95745,Entire home/apt,209,3,3,2018-10-03,0.24,1,0 +26356082,Entire Greenpoint / North Williamsburg Gem,1828429,Lola,Brooklyn,Greenpoint,40.72756,-73.95628,Entire home/apt,140,3,1,2019-05-25,0.67,1,36 +26356921,Cozy private room in the center of NYC 23B2,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99556,Private room,99,7,8,2019-04-26,0.73,47,362 +26357035,Bright room near Prospect Park!,45094825,Joseph,Brooklyn,Prospect-Lefferts Gardens,40.66242,-73.95607,Private room,50,1,0,,,1,0 +26357145,Nice one bedroom near United Nations,120762452,Stanley,Manhattan,Murray Hill,40.7503,-73.97605,Entire home/apt,200,30,0,,,50,365 +26357357,Private cozy Room near Central Park & Museum Mile,44927221,Tarry,Manhattan,Upper East Side,40.7861,-73.95434,Private room,80,1,57,2019-05-04,4.63,1,0 +26357377,Spacious Midtown one bedroom,120762452,Stanley,Manhattan,Murray Hill,40.74891,-73.97719,Entire home/apt,200,30,1,2019-05-23,0.64,50,352 +26357960,Soho Loft,117086989,Robert,Manhattan,SoHo,40.72292,-74.00456,Entire home/apt,300,1,0,,,1,0 +26358309,Beautiful & Quiet Room in Astoria Ditmars New York,198084744,Sabine,Queens,Ditmars Steinway,40.77685,-73.90824,Private room,50,2,58,2019-05-29,4.69,1,13 +26358423,Cozy Private Room near Central Park,19961365,Taina,Manhattan,East Harlem,40.78875,-73.9476,Private room,85,1,39,2019-06-23,3.28,1,78 +26358530,Bushwick Den,9630989,Ernesto,Brooklyn,Bushwick,40.69934,-73.92265,Private room,50,3,20,2019-01-01,1.63,2,0 +26358694,Charming Brooklyn 1 bedroom,10763733,Daphna,Brooklyn,Crown Heights,40.67499,-73.95729,Entire home/apt,84,2,16,2018-11-19,1.33,1,0 +26359068,"Luxury Private Room +15 mins From Manhattan",190854592,Brock,Queens,Ditmars Steinway,40.77188,-73.91157,Private room,79,6,6,2019-04-26,0.65,1,365 +26359622,"Studio in East Village Manhattan, NYC",3282282,Phil,Manhattan,Lower East Side,40.72119,-73.98339,Entire home/apt,79,2,32,2019-06-26,2.67,1,3 +26360690,Peaceful Parkside Place,21184527,Jackson,Brooklyn,Prospect-Lefferts Gardens,40.65529,-73.95971,Entire home/apt,130,1,16,2019-06-17,1.32,1,0 +26361090,Charming Apartment near Central Park with Balcony,844253,Ariane,Manhattan,Upper West Side,40.7786,-73.97578,Entire home/apt,350,7,1,2018-08-20,0.09,1,292 +26361306,Pent House Studio Minutes From Manhattan,123648417,Sean,Brooklyn,Flatbush,40.65401,-73.96212,Entire home/apt,125,1,22,2019-03-24,1.80,1,93 +26361403,HIDDEN GEM near JFK w. PRIVATE ENTRANCE x PARKING.,174197082,Deborah,Queens,Rosedale,40.65695,-73.73617,Entire home/apt,80,1,106,2019-06-29,8.69,2,300 +26361594,"Central Harlem, New York City",8686752,Lamar,Manhattan,Harlem,40.81857,-73.9402,Entire home/apt,100,2,18,2019-06-01,1.45,1,0 +26362867,Large Bedroom w/ PRIVATE BATHROOM,18197365,Jake,Brooklyn,Williamsburg,40.71111,-73.94736,Private room,70,3,11,2019-06-01,0.88,1,9 +26362898,subletting for one week while traveling,37072476,Natia,Brooklyn,Bushwick,40.69952,-73.92623,Private room,60,7,0,,,1,0 +26365747,SuperHost 1 block to Times Square NYC City Center,109040481,Julian,Manhattan,Hell's Kitchen,40.75825,-73.98982,Private room,125,1,54,2019-06-19,4.34,1,341 +26366437,LIVING ROOM COUCH amazing Williamsburg location,91498269,Jonny,Brooklyn,Williamsburg,40.7155,-73.95724,Shared room,100,1,31,2019-06-30,2.81,1,82 +26366913,Luxury Bright Soho Loft,4806931,Courtney,Manhattan,SoHo,40.72182,-74.00255,Entire home/apt,450,2,1,2019-06-04,0.86,1,360 +26370425,Amazing 1b1b in Luxury Building near Empire State,52529356,Zhaoyun,Manhattan,Midtown,40.74843,-73.98259,Entire home/apt,150,2,2,2018-08-11,0.17,1,0 +26371238,Cozy room in townhouse on tree-lined street,74145986,Jason,Brooklyn,Brooklyn Heights,40.69177,-73.99388,Private room,89,1,44,2019-07-06,5.28,1,73 +26374486,East Harlem Entire 1BR apt,198340695,Miho,Manhattan,East Harlem,40.78978,-73.94138,Entire home/apt,90,5,0,,,1,0 +26380347,420 E 61 st Street SOLOW building 1BR furnished,53179388,Raymond,Manhattan,Upper East Side,40.75954,-73.96022,Entire home/apt,250,30,0,,,10,89 +26383405,Cozy and Clean Park Slope 2 bed Apt. Hidden Gem!,19393471,Dana,Brooklyn,Sunset Park,40.66073,-73.98983,Entire home/apt,265,3,23,2019-07-01,1.95,1,365 +26383523,Bright Artist's Loft on the Lower East Side,18252465,Liza,Manhattan,Lower East Side,40.71452,-73.98201,Entire home/apt,225,4,2,2019-01-02,0.29,1,0 +26385006,Harlem Historian/Musician near Columbia Room 2,6088893,Karen,Manhattan,Harlem,40.81932,-73.95765,Private room,55,3,4,2019-01-01,0.36,1,21 +26385197,Private bedroom w/ pvt entrance near Times Sq. 52E,190921808,John,Manhattan,Hell's Kitchen,40.75577,-73.99687,Private room,120,30,3,2019-06-02,0.26,47,288 +26385398,Park Slope Brooklyn Penthouse Apartment,6308220,Michael,Brooklyn,South Slope,40.66154,-73.98283,Entire home/apt,210,2,35,2019-06-29,3.11,1,190 +26385422,NY HILTON CLUB 2 BR SUITE Luxury Holidays 2019,58071546,Mary,Manhattan,Midtown,40.76151,-73.97894,Entire home/apt,599,2,3,2019-01-03,0.24,1,0 +26386244,Cozy private room in sunny Brooklyn apartment,72299995,Jennifer,Brooklyn,Flatbush,40.65195,-73.95645,Private room,65,1,7,2019-04-24,0.59,1,0 +26386411,Cozy Modern Room in Greenpoint - GREAT LOCATION!,129559316,Tk,Brooklyn,Greenpoint,40.72225,-73.94328,Private room,115,1,6,2018-09-27,0.49,1,0 +26386759,Cozy and extremely well located Bushwick room,86892036,Michael,Brooklyn,Bushwick,40.70103,-73.91901,Private room,50,2,5,2018-07-29,0.41,2,0 +26387138,Spacious New York bedroom!,151291713,Kathryn,Manhattan,Washington Heights,40.84918,-73.93775,Private room,70,1,31,2019-05-05,2.53,2,4 +26387184,Cozy apartment in the heart of South Harlem,24378438,Jen,Manhattan,Harlem,40.80718,-73.94907,Entire home/apt,80,2,3,2019-01-07,0.38,1,1 +26387674,Cozy Entire Floor Private 2 Bedroom & Bath,37274021,Nuno,Brooklyn,Bedford-Stuyvesant,40.68497,-73.9543,Private room,110,3,38,2019-06-23,3.25,1,101 +26387779,Perfect apartment for your NYC stay,12302238,Brett-Michael,Brooklyn,Bedford-Stuyvesant,40.68812,-73.92353,Private room,115,3,2,2018-08-03,0.17,1,0 +26388810,Brooklyn home with a View,424656,Jasmine,Brooklyn,Williamsburg,40.7164,-73.95438,Entire home/apt,259,7,0,,,1,0 +26388933,Brooklyn Hostel bedroom 2. Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69405,-73.95592,Shared room,38,1,12,2019-06-08,1.00,34,360 +26390150,Large private bedroom w/private bath in shared apt,7090327,Niccolo,Brooklyn,DUMBO,40.70328,-73.9899,Private room,150,1,1,2018-06-30,0.08,1,0 +26390806,Cosy and Spacious New York Apartment,75479380,Maria Ivy,Queens,Long Island City,40.75192,-73.94074,Entire home/apt,125,2,6,2019-01-03,0.70,1,0 +26391060,Privet room and bathroom in luxurious apartment.,68074387,Emma,Manhattan,Harlem,40.81186,-73.93922,Private room,125,3,6,2019-06-23,0.52,1,0 +26392206,Quaint One-Bedroom close to the UN !,47475970,Jenya,Manhattan,Midtown,40.75468,-73.96563,Entire home/apt,180,4,11,2019-06-23,0.93,1,1 +26392397,Cute and Convenient Park Slope Room,2180581,Jana,Brooklyn,South Slope,40.6652,-73.98191,Private room,99,5,4,2018-10-02,0.35,2,0 +26394592,Ma-Don Hideaway,135585700,Lillie & Donald,Brooklyn,Bedford-Stuyvesant,40.69069,-73.92651,Entire home/apt,125,2,13,2019-01-02,1.26,1,1 +26394988,Gorgeous room in luxury apartment (2),198478845,Jelani,Brooklyn,Clinton Hill,40.68697,-73.96063,Private room,59,3,10,2019-06-05,0.87,2,150 +26395296,The Yorkville Gem,198482796,Janine,Manhattan,Upper East Side,40.78023,-73.95069,Shared room,110,7,15,2019-07-01,3.46,1,4 +26397041,1940's Historic Brooklyn Townhome,6323006,Mark,Brooklyn,East Flatbush,40.63863,-73.93826,Entire home/apt,300,5,2,2019-06-19,0.81,1,174 +26397444,"Sunny, CENTRAL Williamsburg Room with Rooftop",20237617,Samantha,Brooklyn,Williamsburg,40.71446,-73.95992,Private room,50,1,4,2018-08-13,0.33,1,0 +26398320,Cozy room w/ private balcony and incredible views!,45448756,Lucia,Manhattan,East Village,40.72777,-73.98568,Private room,99,6,5,2019-05-20,0.43,1,11 +26398428,Incredible Private Room in prime Bushwick,4492236,Rebecca,Brooklyn,Bushwick,40.69585,-73.93094,Private room,70,7,0,,,2,0 +26398894,NYC HOME BASE: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Hollis,40.71104,-73.78175,Entire home/apt,150,2,17,2019-06-22,1.50,7,10 +26401639,Amazing Brooklyn,100565897,Myrna,Brooklyn,Sheepshead Bay,40.60369,-73.94511,Private room,36,7,8,2019-05-17,0.71,2,81 +26408958,Spacious Room and PRIVATE bath in Harlem Townhouse,10747093,Byron,Manhattan,Harlem,40.8072,-73.94313,Private room,149,2,13,2019-05-08,1.42,1,185 +26409175,"1BR in Newly Renovated Apartment - Rm B, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70522,-73.93075,Private room,51,1,10,2019-05-23,0.84,7,310 +26410121,Welcoming Brooklyn Artist's Room in Williamsburg,16118005,Floriana,Brooklyn,Williamsburg,40.70831,-73.96192,Private room,70,1,11,2019-03-11,0.89,1,0 +26410307,"1BR in Newly Renovated Apartment - Rm C, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.7052,-73.93017,Private room,49,1,6,2019-06-09,0.53,7,343 +26412930,Zen Brooklyn,209300,Gina,Brooklyn,Fort Greene,40.68731,-73.9751,Private room,85,1,8,2018-09-01,0.66,2,0 +26414834,Enjoy this cozy private room near Times Sq. 53E4,190921808,John,Manhattan,Hell's Kitchen,40.75561,-73.99543,Private room,55,30,3,2019-05-30,0.92,47,345 +26415648,Stay in this sunny private room near Times Sq 41D3,190921808,John,Manhattan,Hell's Kitchen,40.75564,-73.99564,Private room,65,7,9,2019-05-25,1.15,47,326 +26416651,Bushwick Duplex 3 min walk to subway,152032831,Alexandria,Brooklyn,Bushwick,40.6897,-73.921,Private room,99,1,4,2018-07-13,0.32,1,0 +26417009,Ladies Bedroom Bed 2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.95636,Shared room,38,1,17,2019-06-23,1.39,34,365 +26417485,A get away home,145721354,Gardell,Brooklyn,Prospect-Lefferts Gardens,40.65912,-73.94735,Entire home/apt,44,1,9,2019-06-15,0.77,1,89 +26417856,Magic Waters - Brooklyn Refuge,6722833,Paul,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92295,Entire home/apt,345,2,25,2019-06-22,2.17,1,321 +26419291,Brooklyn Hostel Bedroom 2. Bed 3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95674,Shared room,38,3,14,2019-06-28,1.14,34,365 +26420017,Charming 1 Bedroom in Ideal Location,66757117,Laural,Manhattan,Gramercy,40.73557,-73.98038,Entire home/apt,150,3,1,2018-07-15,0.08,1,0 +26420626,Ladies bedroom Bed 4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69299,-73.95675,Shared room,38,1,21,2019-07-04,1.77,34,365 +26420986,Cute studio in the Upper West Side.,22309598,Ai,Manhattan,Upper West Side,40.79392,-73.97288,Entire home/apt,119,2,12,2019-05-27,1.13,1,5 +26421624,Cozy Long Island City Studio close to Manhattan,198666761,Izi,Queens,Long Island City,40.75286,-73.93539,Entire home/apt,71,3,32,2019-06-29,2.73,1,77 +26422007,Spacious one bedroom with gym and roof top,198674086,J,Manhattan,Upper West Side,40.7956,-73.96702,Entire home/apt,200,15,1,2018-11-30,0.14,1,365 +26422113,Sunny Room in Brooklyn 2,34991003,Karen,Brooklyn,East Flatbush,40.64617,-73.92397,Private room,35,3,7,2019-06-04,0.57,3,319 +26423738,Sonder | View 34 | Vibrant 1BR + Rooftop,12243051,Sonder,Manhattan,Murray Hill,40.74444,-73.97355,Entire home/apt,185,29,0,,,96,332 +26424516,Flatiron Oasis Off 5th Ave,198691406,Quincy,Manhattan,Flatiron District,40.74043,-73.99277,Entire home/apt,1500,3,5,2019-05-20,0.43,1,362 +26424667,Prime Location! The Mid/Upper East side Grey Room,164345159,Giovanna,Manhattan,Upper East Side,40.76258,-73.96252,Private room,150,1,82,2019-06-16,7.01,1,51 +26425032,Private Room in apartment (1),198478845,Jelani,Brooklyn,Clinton Hill,40.6867,-73.9612,Private room,59,4,6,2019-06-20,0.87,2,156 +26425700,Private Room in Ridgewood with Rooftop access!,38714592,Catherine,Queens,Ridgewood,40.70254,-73.90679,Private room,34,2,2,2018-07-27,0.17,1,0 +26425943,Sunny Williamsburg 1 BR near Peter Luger's,50361964,Rikki,Brooklyn,Williamsburg,40.7108,-73.9618,Entire home/apt,225,1,3,2018-11-04,0.33,1,0 +26429962,Leli’s Modern Pad - Queen Bedroom,59982224,Leli,Brooklyn,East New York,40.67502,-73.87277,Private room,80,2,8,2019-06-16,1.76,4,41 +26430182,"Cozy, clean apartment in Harlem near the subway",140096210,Sarah,Manhattan,East Harlem,40.78866,-73.9507,Entire home/apt,250,1,0,,,1,0 +26430364,Leli’s Modern Pad - Double Room,59982224,Leli,Brooklyn,East New York,40.67519,-73.87372,Private room,50,2,6,2019-06-12,0.68,4,1 +26430901,Hustler's Paradise 003 Private Room Lower Level,104927746,Amardeep,Staten Island,Concord,40.59691,-74.087,Private room,30,4,26,2019-06-25,2.14,7,359 +26431251,Captain's Cabin 001/Apmnt like,137999892,Simranjeet,Staten Island,Concord,40.60531,-74.08893,Private room,30,4,16,2019-07-01,1.30,7,334 +26431364,Country charm in the midst of hipster Brooklyn,19259107,Harold,Brooklyn,Windsor Terrace,40.64792,-73.97647,Entire home/apt,110,5,0,,,1,87 +26431441,Captains Cabin 002/Apmnt like,137999892,Simranjeet,Staten Island,Concord,40.60697,-74.08765,Private room,30,4,11,2019-07-06,0.99,7,337 +26440393,1 BED IN LIVING ROOM NEAR Q SUBWAY AVE U,172369331,Abby,Brooklyn,Sheepshead Bay,40.5972,-73.95777,Shared room,40,5,12,2019-07-01,1.07,10,301 +26440780,Loft in Downtown Brooklyn - entire apartment,16753104,Robert,Brooklyn,Downtown Brooklyn,40.69206,-73.98445,Entire home/apt,160,4,5,2019-01-01,0.44,1,0 +26440793,Comfortable Brooklyn Apartment with Personality,17224262,Dana,Brooklyn,Bedford-Stuyvesant,40.69557,-73.94033,Entire home/apt,100,3,5,2018-12-31,0.42,1,3 +26440960,Large beautiful home in the center of Manhattan!,53046634,Joey,Manhattan,Hell's Kitchen,40.76322,-73.99253,Entire home/apt,285,3,6,2018-12-10,0.51,2,76 +26441519,Sunny & colorful room in Bushwick w/ yard access,16865342,Elene,Brooklyn,Bushwick,40.70553,-73.91938,Private room,53,2,29,2019-06-20,2.46,2,143 +26441935,Conveniently located sunny room near Times Sq 63F4,190921808,John,Manhattan,Hell's Kitchen,40.75386,-73.99562,Private room,55,7,6,2019-05-18,0.73,47,357 +26443106,"trip NYC - your Couch - clean, cheap, close to all",182488531,Kevin4,Queens,Elmhurst,40.73753,-73.87054,Shared room,15,1,19,2019-06-20,1.71,2,271 +26443119,"*NEW* Bright, Spacious & Quiet Bedroom by Times SQ",198835140,Leivan,Manhattan,Hell's Kitchen,40.76129,-73.98859,Private room,90,2,55,2019-06-23,4.61,1,49 +26443376,Big 1BR in PRIME Bushwick! 2 blocks to L Train!,6293227,Nish,Brooklyn,Bushwick,40.70148,-73.91834,Entire home/apt,90,3,9,2019-06-01,0.74,1,0 +26446103,"Estudio 1 Brooklyn, NY.",198853982,Brigit,Brooklyn,Cypress Hills,40.68816,-73.87193,Entire home/apt,90,2,34,2019-06-24,2.80,2,120 +26447297,Northern Manhattan Getaway,319488,Melinda,Manhattan,Inwood,40.86755,-73.9287,Private room,125,2,21,2019-06-23,1.82,1,141 +26447954,Beautiful Designer DUMBO Loft,244444,Michael,Brooklyn,Vinegar Hill,40.7023,-73.98394,Entire home/apt,159,14,0,,,1,0 +26449028,5min to Manhattan apartment in new luxury building,19813391,Summer,Queens,Long Island City,40.7456,-73.94366,Entire home/apt,180,1,7,2019-05-27,0.61,2,0 +26449775,Cute NYC studio in the heart of East Village,198884450,Nat,Manhattan,East Village,40.72521,-73.98316,Entire home/apt,120,5,2,2019-01-02,0.22,1,0 +26450173,Dekalb Stop Flat,25545946,Tyler,Queens,Ridgewood,40.70772,-73.9118,Private room,80,2,0,,,1,88 +26450185,Crash Pad,97378432,Rev. Simone,Queens,Jamaica,40.6837,-73.79343,Private room,75,2,1,2019-05-19,0.58,1,180 +26450570,Brooklyn Spot,188393472,Virginie,Brooklyn,Crown Heights,40.67664,-73.95172,Entire home/apt,210,1,0,,,1,0 +26450631,3 Bedroom Apartment • 20 Minutes from Time Square,198890291,Mehedhi,Queens,Woodside,40.74225,-73.90553,Entire home/apt,145,3,55,2019-06-19,4.50,1,133 +26450798,Stunning 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74417,-73.97206,Entire home/apt,189,29,0,,,96,316 +26450808,Sonder | Hanover Square | Elegant 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70362,-74.00804,Entire home/apt,190,29,0,,,96,333 +26450809,Sonder | Hanover Square | Classic 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70569,-74.00929,Entire home/apt,190,29,0,,,96,284 +26450817,Sonder | Hanover Square | Sunny 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70376,-74.00833,Entire home/apt,187,29,2,2018-12-04,0.24,96,323 +26450823,Sonder | Hanover Square | Airy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70506,-74.0079,Entire home/apt,185,29,1,2018-10-01,0.11,96,220 +26450833,Sonder | 21 Chelsea | Grand 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74154,-73.99527,Entire home/apt,250,29,0,,,96,311 +26450834,Colorful 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.7445,-73.97222,Entire home/apt,170,29,0,,,96,324 +26451569,Cozy Apartment 15 Minutes from Grand Central,198451327,Amanda,Queens,Sunnyside,40.74611,-73.91548,Entire home/apt,72,2,14,2018-09-29,1.12,1,0 +26453418,Room to rest near LaGuardia. Steps to subway!,137358866,Kazuya,Queens,Jackson Heights,40.7488,-73.88045,Private room,39,30,1,2019-04-01,0.30,103,186 +26455093,Presidential Comfort,198476726,Cathy,Queens,Far Rockaway,40.60395,-73.74904,Private room,55,1,27,2019-07-07,2.21,1,177 +26455688,CLOSE TO EVERYWHERE IN NYC 1,158922261,Ana,Queens,Astoria,40.75523,-73.91297,Private room,59,2,30,2019-06-26,2.54,3,132 +26456925,Nice Room Near Roosevelt Jackson Heights Station,137358866,Kazuya,Queens,Woodside,40.74033,-73.89342,Private room,33,30,1,2019-01-25,0.18,103,269 +26458835,cozy one bed room only girls,7970340,Dian,Manhattan,Stuyvesant Town,40.73391,-73.97857,Private room,55,4,1,2018-07-06,0.08,1,0 +26463879,New york Multi-unit building,21682640,Clarise,Brooklyn,Flatbush,40.64258,-73.95952,Private room,65,30,0,,,2,365 +26465413,Spacious & charming apartment in the heart of NYC,199014573,Elizabeth,Manhattan,Midtown,40.75486,-73.97252,Private room,125,3,8,2018-09-16,0.65,1,0 +26465686,Designer Waterfront Brooklyn Home with a View,24496471,Naheel,Brooklyn,Williamsburg,40.71574,-73.9665,Entire home/apt,200,3,11,2019-04-09,0.94,1,0 +26467543,Huge Moroccan Loft in Little Italy,22583075,Jonathan,Manhattan,Little Italy,40.71737,-73.99861,Entire home/apt,400,2,2,2018-08-14,0.18,1,0 +26469342,"Lovely apt heart of manhattan, location location",71404080,César Julio,Manhattan,Hell's Kitchen,40.76117,-73.99169,Private room,80,22,1,2018-08-01,0.09,1,187 +26470188,Luxury Greenwich Village Studio,55240477,Jonathan,Manhattan,Greenwich Village,40.73036,-73.99358,Entire home/apt,220,4,1,2018-07-11,0.08,1,16 +26471867,"Light-Filled 2 BR in Brooklyn, A Perfect Hideaway",4291088,Nïco,Brooklyn,Clinton Hill,40.6955,-73.96446,Entire home/apt,130,1,35,2019-06-30,2.87,1,0 +26472079,Cozy studio at UWS near Columbia university,274910,Yooin,Manhattan,Morningside Heights,40.80998,-73.95756,Entire home/apt,90,1,25,2019-06-25,2.07,1,0 +26472112,the family room,198328249,Hiram,Brooklyn,Bushwick,40.69164,-73.91513,Shared room,47,1,9,2019-07-01,1.03,2,365 +26472343,1 Bedroom 3R in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69101,-73.93773,Private room,118,1,29,2019-07-01,2.46,6,288 +26473275,Large 1 bedroom apartment near Prospect Park,749126,Stacey,Brooklyn,South Slope,40.66501,-73.98112,Entire home/apt,145,2,8,2019-05-13,0.66,1,0 +26473415,New York Home at Times Square,9638257,Mayur,Manhattan,Theater District,40.75934,-73.98755,Private room,85,4,14,2019-06-29,1.98,1,33 +26473544,Brooklyn Comfy Room--20 minutes to Manhattan,1004883,Marisha,Brooklyn,Bushwick,40.6914,-73.90675,Private room,75,4,4,2018-10-16,0.36,2,364 +26473581,FORDHAM DELIGHT,199070207,Oscar,Bronx,University Heights,40.86255,-73.90669,Private room,80,3,52,2019-06-24,4.79,2,0 +26474934,A spacious room for females in Clinton Hill aptmnt,136846568,Priyanka,Brooklyn,Bedford-Stuyvesant,40.68932,-73.95887,Private room,40,2,2,2019-01-13,0.19,1,0 +26475612,Perfect location for NYC getaway,73570025,Angela,Brooklyn,Williamsburg,40.71648,-73.94452,Entire home/apt,110,1,52,2019-06-23,4.36,1,44 +26475717,Lovely Bushwick oasis,196904829,Alicia,Brooklyn,Bushwick,40.69972,-73.92362,Private room,80,3,0,,,1,0 +26476238,"Comfort, clean and close to everything.",157506473,Al,Queens,Flushing,40.75819,-73.81977,Private room,60,1,6,2018-08-11,0.50,1,0 +26476892,Bedroom & Private Bathroom in Brooklyn!,199118646,Tami,Brooklyn,East Flatbush,40.64834,-73.95161,Private room,50,1,37,2019-06-25,3.68,1,84 +26477897,Room available in Bushwick duplex,33233142,Lee,Brooklyn,Bushwick,40.69298,-73.90685,Private room,58,5,1,2018-08-18,0.09,1,17 +26487039,Brooklyn Loft - close to Pratt!!! Great location!,56666937,Brittany,Brooklyn,Clinton Hill,40.68962,-73.96062,Entire home/apt,150,6,16,2019-06-20,1.58,1,168 +26488707,Harlem Peace Quarters,65093286,Angel,Manhattan,Harlem,40.81488,-73.94415,Private room,49,1,12,2018-07-28,0.97,1,0 +26489146,A Great Room in Heart of NYC,519554,Umut&Deniz,Manhattan,Lower East Side,40.72051,-73.98777,Private room,69,3,1,2019-05-20,0.60,5,270 +26489955,Private Room-Chinatown/Soho/LittleItaly.HeartofNYC,197400421,Ben,Manhattan,Chinatown,40.71515,-73.99827,Private room,99,3,30,2019-06-01,2.51,2,147 +26490844,Twin suites of Prospect Lefferts Garden- Brooklyn,76225580,Gary,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95231,Entire home/apt,200,2,6,2019-06-30,2.28,2,267 +26494149,LG Private Room for (3). Metro less than 5 mins.,10535719,Mike,Manhattan,East Harlem,40.798,-73.93944,Private room,150,7,0,,,3,358 +26494242,Sunny One Bedroom Heart of Lower East Side,10577999,Barak,Manhattan,Lower East Side,40.72135,-73.98391,Entire home/apt,200,4,3,2019-01-01,0.25,1,0 +26494876,Sunny & Spacious 2 bdrm apt,1473755,Regina,Brooklyn,Williamsburg,40.71906,-73.94039,Entire home/apt,125,4,2,2018-07-02,0.16,1,0 +26494942,Beautiful Room In Spacious House w/ Full Kitchen,35746135,Lionel,Brooklyn,Kensington,40.62896,-73.97494,Private room,70,1,34,2019-07-01,2.74,2,1 +26496075,Sunny Room in Newly Renovated Crown Heights Apt!,40905101,Rebecca,Brooklyn,Crown Heights,40.67478,-73.94418,Private room,45,2,25,2018-11-30,2.05,1,0 +26496330,COZY BROOKLYN BEDROOM,24079691,Mercedes,Brooklyn,Crown Heights,40.67863,-73.95859,Private room,70,1,2,2018-09-30,0.17,1,0 +26496505,Beautiful Queens Home close to JFK and LGA,38920716,Hamad,Queens,Queens Village,40.70789,-73.74073,Entire home/apt,75,3,134,2019-07-07,10.86,1,63 +26496645,Room with a view,110049861,Martin,Brooklyn,Williamsburg,40.70959,-73.95693,Private room,10,1,0,,,1,83 +26497309,Sun Drenched One Bedroom in the East Village,40594187,Christina,Manhattan,East Village,40.72256,-73.9848,Entire home/apt,150,3,6,2018-11-25,0.48,1,4 +26497890,Sunny Room in a Cozy & Spacious Apartment,24712915,Victoria,Brooklyn,Sunset Park,40.66236,-73.99037,Private room,55,2,41,2019-06-30,3.35,1,340 +26499284,Private Room and most of apt in Upper West Side,127595553,Santiago,Manhattan,Morningside Heights,40.80624,-73.9634,Private room,90,1,7,2018-07-31,0.57,1,0 +26500087,"Beautiful, Modern & Bright Apt in the East Village",13533446,Daniel,Manhattan,East Village,40.72634,-73.97625,Private room,139,2,31,2019-06-26,2.88,1,81 +26501755,"Clean, quiet studio apartment - Gramercy/Kips Bay!",36383204,Despina,Manhattan,Kips Bay,40.74174,-73.98162,Entire home/apt,120,25,7,2018-10-31,0.58,1,0 +26501791,**Private Entrance Apartment W/ Bedroom & Bath**,199315923,Jacqueline,Queens,Glendale,40.70271,-73.87717,Entire home/apt,65,3,49,2019-07-02,4.06,1,293 +26503507,Brigham Place,199213364,Eeman,Brooklyn,Sheepshead Bay,40.59689,-73.93353,Entire home/apt,83,1,35,2019-06-18,2.91,2,97 +26504376,COZY ROCKAWAY BEACH BUNGALOW 1 BEDROOM,180781689,Jeremy,Queens,Rockaway Beach,40.58756,-73.81371,Entire home/apt,149,1,41,2019-07-02,3.34,2,140 +26514725,Private Room_Brooklyn Townhouse,8456000,Brian,Brooklyn,Navy Yard,40.69793,-73.96989,Private room,175,1,11,2019-06-06,1.10,2,90 +26516462,M2 A cozy well lit room sleeps 2 on 2 single beds,295128,Carol Gloria,Bronx,Clason Point,40.81309,-73.85367,Private room,70,1,3,2019-04-28,0.47,7,360 +26516849,Private Room in Rockaway House-Nearby JFK & Subway,199299171,Paul,Queens,Rockaway Beach,40.58743,-73.81411,Private room,49,1,10,2019-06-11,0.87,1,356 +26518272,Brooklyn: Spacious apartment in calm neighborhood,2188481,Talia,Brooklyn,Gowanus,40.68234,-73.98223,Entire home/apt,150,4,2,2019-04-30,0.17,1,55 +26518337,Cozy 1 Bedroom Apartment In Great LES Location,49909186,Andrea,Manhattan,Lower East Side,40.72003,-73.98928,Entire home/apt,180,4,23,2019-07-01,1.99,2,233 +26518547,U2 comfortable double bed sleeps 2 guests,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85502,Private room,80,1,4,2019-07-01,1.48,7,365 +26518779,Tranquil East Village apartment,6072790,Lotte,Manhattan,East Village,40.72607,-73.97851,Entire home/apt,220,3,3,2019-06-27,0.28,1,25 +26518916,Spacious Bushwick Bedroom!,14907512,Alex,Brooklyn,Bushwick,40.69505,-73.92968,Private room,30,10,4,2019-05-11,0.35,1,13 +26519306,Luxurious Harlem 1 Bdrm Steps from Subway,53276746,Andrea,Manhattan,Harlem,40.81581,-73.94142,Entire home/apt,150,3,22,2019-06-03,1.90,1,261 +26519461,*AMAZING* Large Studio in Prime Union Square area!,187139932,Michelle,Manhattan,Greenwich Village,40.73524,-73.99259,Entire home/apt,225,3,2,2019-06-30,1.30,1,1 +26520216,Beautiful 1 bedroom in South Midtown Manhattan,11541034,William,Manhattan,Midtown,40.7523,-73.99024,Entire home/apt,210,5,7,2019-01-03,0.63,1,0 +26520475,Family suites in UpperEastSide Townhouse,199466039,Sydney,Manhattan,Upper East Side,40.77669,-73.95283,Private room,299,1,4,2019-06-23,0.35,3,365 +26521015,Brooklyn Oasis,74911937,Alwyn,Brooklyn,Flatbush,40.63338,-73.95074,Entire home/apt,110,4,18,2019-06-30,1.60,1,46 +26522298,"Magical Brownstone in Fort Greene, Artist Room",41099363,Maria,Brooklyn,Fort Greene,40.68992,-73.97528,Private room,120,4,4,2019-05-16,0.45,3,291 +26522398,Private room in Williamsburg Brooklyn,198900829,David,Brooklyn,Williamsburg,40.71142,-73.96141,Private room,80,5,1,2018-08-14,0.09,1,0 +26522529,Cozy apartment 9mts to Barclays Center/ProspecPark,199147185,Lou,Brooklyn,Sunset Park,40.66291,-73.995,Entire home/apt,330,1,34,2019-06-11,2.83,5,147 +26522949,Cozy Apt in Centrally Located Brooklyn Heights,47151333,Walter,Brooklyn,Brooklyn Heights,40.69174,-73.99283,Entire home/apt,150,2,4,2018-08-27,0.36,2,11 +26523155,Hip Master Bedroom with A Private Bathroom in NYC,28325192,Brian,Manhattan,Roosevelt Island,40.764,-73.94741,Private room,150,3,2,2018-08-07,0.17,1,0 +26526075,BEST LOCATION Times Square Central Prk Hudson Yrds,56060495,Laura-Lee,Manhattan,Hell's Kitchen,40.75524,-73.99362,Entire home/apt,99,1,34,2019-06-28,2.90,1,1 +26526269,Roosevelt Island - Hidden Gem of New York,41655831,Justin,Manhattan,Roosevelt Island,40.76506,-73.94662,Private room,99,1,2,2018-07-21,0.16,1,0 +26527543,AMAZING AAA Specious Studio South Expo Skylight!,26584499,Ofir,Manhattan,Upper West Side,40.78246,-73.98314,Entire home/apt,115,30,0,,,8,89 +26527613,Former Mattress Factory Loft,85712984,Holly,Brooklyn,Williamsburg,40.70277,-73.93568,Entire home/apt,90,1,1,2018-07-08,0.08,1,76 +26527791,Beautiful studio with loft bed north expo!,26584499,Ofir,Manhattan,Upper West Side,40.7828,-73.98348,Entire home/apt,118,30,0,,,8,157 +26528837,"✨Cozy clean room, 5 min walk to subway(Line R/M)",199524563,Bei,Queens,Rego Park,40.72608,-73.86233,Private room,65,2,28,2019-05-28,2.36,3,38 +26529593,"Cosy room in Queens, 5 min walk to subway(R/M)",199524563,Bei,Queens,Rego Park,40.72738,-73.86273,Private room,65,2,21,2019-05-28,1.76,3,0 +26530921,New Luxury Building,11459431,Anna,Manhattan,Hell's Kitchen,40.76213,-73.99938,Entire home/apt,300,5,1,2018-09-25,0.10,1,11 +26532680,"Private Bedroom, Easy travel in brooklyn",28727058,Waen,Brooklyn,Fort Greene,40.69309,-73.97238,Private room,70,2,47,2019-07-01,4.15,1,0 +26532770,Gorgeous private room in a luxury condo by Time Sq,4823737,Evgeny,Manhattan,Hell's Kitchen,40.75945,-73.99344,Private room,250,4,0,,,1,0 +26532804,Peace and love,108454497,Yasser,Queens,Maspeth,40.72959,-73.89381,Private room,35,30,0,,,1,179 +26534723,"Stylish, art-filled apartment near Hudson River",1495694,Eileen,Manhattan,Washington Heights,40.8436,-73.9412,Entire home/apt,125,11,1,2018-07-30,0.09,1,342 +26534838,Large Studio in the heart of West Village,5225042,Kai,Manhattan,West Village,40.73429,-74.00487,Entire home/apt,150,3,6,2019-03-25,0.52,1,0 +26535575,179st Hub Master Bedroom w/ balcony,20912691,Jeff,Queens,Jamaica,40.70985,-73.78429,Private room,50,2,4,2019-06-12,0.34,7,0 +26538746,Studio in UES (7mins from Central Park/The MET),51783601,Gursharan,Manhattan,Upper East Side,40.77537,-73.95556,Entire home/apt,120,5,1,2018-07-03,0.08,1,0 +26538883,Charming Sunny Studio Lower East Side.,77303930,Cecilia,Manhattan,Lower East Side,40.72235,-73.98766,Entire home/apt,125,3,1,2018-07-27,0.09,1,0 +26540634,Sleek and Modern Studio Apartment,4066678,Brandon,Brooklyn,Williamsburg,40.71657,-73.96512,Entire home/apt,200,15,0,,,1,0 +26550322,Modern duplex 30 minutes to Times Square,179483216,Marvin,Manhattan,Washington Heights,40.85515,-73.93297,Entire home/apt,250,4,20,2019-06-22,1.94,1,228 +26552340,*NYC Flat Cold Cozy Private Room w/ Blazin' WiFi*,191338162,William,Bronx,Allerton,40.85978,-73.8619,Private room,142,1,29,2019-06-25,2.47,5,48 +26552951,Sonder | 21 Chelsea | Serene 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74259,-73.99589,Entire home/apt,249,29,0,,,96,230 +26553542,PRIME BEDSTUY LOCATION WITH A VIEW! BOOK WITH US!,104157084,Taylor,Brooklyn,Bedford-Stuyvesant,40.67854,-73.94883,Shared room,60,1,2,2018-07-15,0.17,1,342 +26554732,"Beautiful NYC Private Room/Bath, Late Check-In OK",191338162,William,Bronx,Allerton,40.86017,-73.86198,Private room,142,1,36,2019-07-02,3.50,5,57 +26554879,East Village/Union Square Flat,17400431,Bob,Manhattan,East Village,40.73177,-73.98691,Entire home/apt,179,5,32,2019-06-26,2.92,1,12 +26554937,"Beach Street Loft - Surf Rockaway Beach, NYC, JFK",10457300,Andre,Queens,Arverne,40.59427,-73.79729,Entire home/apt,140,1,36,2019-06-23,2.96,1,70 +26555338,Immaculate and Spacious,20444038,Debbie,Manhattan,Midtown,40.74624,-73.98255,Entire home/apt,465,2,31,2019-06-23,2.66,1,142 +26555450,Big Bright Studio in the Heart of Brooklyn,7169873,Julia,Brooklyn,Midwood,40.61716,-73.96271,Entire home/apt,80,5,24,2019-06-08,2.02,1,0 +26555992,NEW - Big Brooklyn apt in Bushwick,552288,Charles,Brooklyn,Bushwick,40.69949,-73.92383,Entire home/apt,65,2,6,2019-06-26,0.54,1,0 +26557068,Midtown NYC: High End Resort Sleeps 2,172190160,Millie,Manhattan,Midtown,40.7521,-73.97334,Private room,300,2,2,2019-01-01,0.25,1,0 +26557266,Cozy private Room in 2 bedrooms appt,152047633,Rudi,Brooklyn,Williamsburg,40.71415,-73.96225,Private room,90,1,0,,,1,0 +26557748,Quiet and Cozy Brooklyn Home in Perfect Location,1840698,Jared,Brooklyn,Greenpoint,40.72446,-73.9516,Entire home/apt,180,3,13,2019-06-17,1.13,1,0 +26557901,"Park Slope, Brooklyn",199702366,Anuar,Brooklyn,South Slope,40.66625,-73.9826,Private room,56,2,15,2019-06-05,2.33,1,57 +26558970,"Fifth Element: 7bd, private home.FREE CANCELLATION",143979755,Edwin,Bronx,Pelham Gardens,40.86239,-73.84362,Entire home/apt,99,1,67,2019-07-06,6.07,1,337 +26559223,"Charming Williamsburg Apartment, next to trainJZM",18210699,Leanne,Brooklyn,Williamsburg,40.71106,-73.95945,Private room,70,4,1,2018-07-31,0.09,1,220 +26559313,2 Stops from Manhattan in Trendy LIC,155924492,Christina,Queens,Long Island City,40.75311,-73.93628,Entire home/apt,285,2,30,2019-06-16,2.54,1,172 +26559476,Warm and Cozy Bedroom ~ 15 minutes to JFK,72746827,Jeffrey & Casandra,Queens,Bayswater,40.61036,-73.7687,Private room,82,1,8,2019-07-07,8,1,172 +26559892,"== Modern, A/C, Easy Check-in / Book Instantly ==",191338162,William,Bronx,Allerton,40.86014,-73.86301,Private room,142,1,30,2019-07-02,2.56,5,48 +26560159,A sweet cozy one bedroom in Crown Heights Brooklyn,16782911,Dena,Brooklyn,Prospect-Lefferts Gardens,40.66352,-73.94157,Entire home/apt,100,5,8,2019-06-03,0.69,1,57 +26560264,"❤️ Beautiful, Bright Room - Late Self Check-In ❤️",191338162,William,Bronx,Allerton,40.86013,-73.86339,Private room,142,1,30,2019-07-02,2.56,5,57 +26560973,One bedroom apt with private yard in Williamsburg,23342828,Peggy,Brooklyn,Williamsburg,40.70807,-73.95565,Entire home/apt,125,3,6,2018-10-01,0.54,1,0 +26561464,Lower East Side Loft (Event Space),173259171,Will,Manhattan,Lower East Side,40.71946,-73.98935,Entire home/apt,900,1,2,2018-08-29,0.18,1,0 +26563874,PrivateBed&BathLGAMetsTimeSqUSTAFlushingQueens,199745521,Nonie,Queens,Corona,40.75046,-73.85443,Private room,40,2,19,2019-06-24,1.60,1,24 +26564665,Modern NYC Apartment,68287582,George,Manhattan,Harlem,40.80455,-73.95429,Entire home/apt,120,2,16,2018-11-24,1.32,1,0 +26565864,Luxury East Village Penthouse With Private Deck,390844,Leigh,Manhattan,East Village,40.72436,-73.98235,Entire home/apt,199,2,9,2019-06-28,0.80,1,0 +26566099,Bedstuy Cove,199740814,Luqman,Brooklyn,Bedford-Stuyvesant,40.68125,-73.92326,Private room,60,1,7,2018-08-23,0.59,1,129 +26566291,"Quiet, Private and Sunny in Greenwich Village",186452920,Rose,Manhattan,Greenwich Village,40.73093,-74.00125,Entire home/apt,200,2,42,2019-06-21,3.62,1,129 +26569512,Comfortable room 30/35 minutes to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67963,-73.90816,Private room,55,1,16,2019-04-28,2.34,3,0 +26569565,"Gorgeous, Entire Apartment in Bushwick, Brooklyn",176955227,Rachael,Brooklyn,Bushwick,40.69257,-73.92332,Entire home/apt,150,1,7,2019-05-12,0.62,1,88 +26569882,Queen Bedroom with Private roof top,7943066,Tamiris,Brooklyn,Williamsburg,40.71787,-73.94171,Private room,110,2,4,2019-06-01,1.50,2,66 +26570172,Manhathan NY,199793200,Romulo,Manhattan,Inwood,40.86735,-73.91762,Private room,53,3,3,2018-08-23,0.26,1,0 +26570316,2 Bedroom in 1897 Landmarked house,15175378,Missy & Julien,Brooklyn,Crown Heights,40.67512,-73.94703,Entire home/apt,150,5,28,2019-06-29,2.54,2,62 +26571135,Private Bedroom in Manhattan,167621521,Emma,Manhattan,Inwood,40.86411,-73.92241,Private room,35,3,1,2018-07-31,0.09,1,0 +26571486,Humble home,151714821,Ailin,Bronx,Morris Heights,40.84835,-73.9141,Entire home/apt,149,1,1,2018-07-25,0.09,1,0 +26571706,Sky Boasts Exquisite Studio,199808815,Dening,Manhattan,Hell's Kitchen,40.76138,-73.99945,Entire home/apt,190,2,3,2018-07-09,0.25,1,0 +26572767,Cozy Private Upper Eastside Bedroom,109196702,David,Manhattan,Upper East Side,40.77673,-73.95525,Private room,143,2,4,2018-10-01,0.34,2,0 +26573069,Prime Bushwick - 10 min to city - Superhost,15147054,Chris & Grace,Brooklyn,Bushwick,40.69675,-73.93374,Private room,57,2,42,2019-06-23,3.43,2,348 +26574652,Private room in walking distance from Central Park,199828653,Vady,Manhattan,East Harlem,40.79872,-73.93954,Private room,59,1,66,2019-06-19,5.38,1,126 +26574775,★ Beautiful Apartment in Best Location ★,1510920,Zoë,Manhattan,East Village,40.72366,-73.9903,Entire home/apt,299,2,11,2019-07-05,0.99,1,0 +26574893,Private Room,199833548,Syeda,Queens,Sunnyside,40.74166,-73.92658,Private room,70,1,50,2019-06-23,4.25,9,339 +26576819,Cozy Em’s Place 2 (3 people),174492861,Siri,Queens,Jackson Heights,40.74942,-73.88248,Private room,49,2,6,2019-06-08,0.50,2,89 +26584254,Minimal style bedroom close to Manhattan,199887038,Theodoros,Queens,Ditmars Steinway,40.77031,-73.90793,Private room,68,2,10,2019-06-29,0.89,2,53 +26584630,Park Slope getaway with giant outdoor space,6947681,Hiten,Brooklyn,Park Slope,40.66986,-73.98668,Entire home/apt,120,2,23,2019-07-02,1.86,1,4 +26587430,Big studio in beautiful Cobble Hill by waterfront,52538564,Ezequiel,Brooklyn,Columbia St,40.68988,-73.99907,Entire home/apt,135,4,1,2019-05-04,0.45,1,13 +26589357,East Village Cozy & Bright Home,9678132,Lucie,Manhattan,East Village,40.72639,-73.97848,Private room,80,8,2,2019-05-25,0.19,1,0 +26592537,Super cozy & spacious room - house with backyard !,27497250,Barbara,Brooklyn,Greenpoint,40.72694,-73.94868,Private room,80,3,5,2018-10-15,0.41,1,55 +26593665,Sunny Windsor Terrace 3BR with deck,2487882,Craig,Brooklyn,Windsor Terrace,40.65163,-73.97911,Entire home/apt,150,5,0,,,2,0 +26593733,Affordable room in the heart of New York.,33055418,Jaime,Manhattan,Midtown,40.74573,-73.98323,Private room,90,3,6,2018-09-24,0.55,1,70 +26594199,Room with a View,197516742,Sushmita,Manhattan,Kips Bay,40.74348,-73.97962,Entire home/apt,150,14,1,2018-07-10,0.08,1,0 +26594390,Spacious Studio Apartment in Luxury Building,17407870,Elizabeth,Queens,Long Island City,40.75087,-73.94202,Entire home/apt,197,2,24,2019-07-01,2.11,1,232 +26594677,Wyndham Midtown 45 @ NYC,46555645,Jennifer,Manhattan,Midtown,40.75357,-73.97313,Private room,181,3,1,2018-11-05,0.12,1,0 +26594746,Modern Williamsburg Apartment with Manhattan Views,9685952,Ari,Brooklyn,Williamsburg,40.71414,-73.96334,Entire home/apt,180,2,3,2018-08-05,0.25,1,0 +26595705,LIC Brand New Home with a View & Pool,55785340,Fei,Queens,Long Island City,40.74748,-73.93985,Private room,178,1,0,,,1,0 +26595733,Private Room near Columbia University *,199946021,Joe,Manhattan,Upper West Side,40.8006,-73.96407,Private room,76,1,80,2019-06-22,6.59,3,19 +26596388,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,199956234,Kevin Unal,Manhattan,Harlem,40.80448,-73.95567,Entire home/apt,139,1,58,2019-06-18,4.89,1,96 +26597239,Close to everywhere in NY!! Cerca de todo en NY!!,158922261,Ana,Queens,Astoria,40.75709,-73.9145,Private room,51,2,21,2019-06-24,1.86,3,151 +26598131,"Sunny Bedroom, New renovated Brooklyn House",139899546,Selin,Brooklyn,Prospect-Lefferts Gardens,40.65829,-73.95171,Private room,50,20,3,2018-07-22,0.25,1,0 +26598239,"Cozy, Clean Private Room in Clinton Hill BK",168815258,Maggie,Brooklyn,Clinton Hill,40.69322,-73.96655,Private room,55,3,2,2018-07-22,0.16,1,0 +26598477,Extra Large appartment in the heart of Manhattan,56338076,Barbara,Manhattan,Harlem,40.81657,-73.93849,Entire home/apt,250,1,19,2019-06-03,1.62,3,0 +26599049,Cozy bedroom on the cusp of Williamsburg/Bushwick,3188892,Christian,Brooklyn,Williamsburg,40.71018,-73.94057,Private room,55,3,2,2018-07-29,0.17,1,36 +26599360,"Parkslope, Brooklyns Best Neighborhood!",199985122,Sean,Brooklyn,Park Slope,40.67193,-73.98152,Private room,80,2,24,2019-06-30,2.09,1,294 +26600090,Very close to Manhattan! Muy cerca de Manhattan,158922261,Ana,Queens,Astoria,40.75697,-73.91314,Private room,51,2,34,2019-06-27,2.97,3,167 +26602263,"Quiet, Clean Bedroom in Prime Harlem Location.",1514109,Myles,Manhattan,Harlem,40.79976,-73.95119,Private room,69,3,28,2019-06-24,2.36,1,4 +26602421,"Midtown apt, steps to Penn station (family, kids)",200007278,Rose,Manhattan,Chelsea,40.75274,-73.99647,Entire home/apt,255,3,4,2019-02-10,0.33,1,0 +26602878,2 PRIVATE ROOMS IN A SPACIOUS APPARTEMENT,56338076,Barbara,Manhattan,Harlem,40.81694,-73.93909,Private room,150,2,3,2018-09-06,0.26,3,364 +26602955,COZY ROOM IN MANHATTAN MINUTES 2 TIMES SQR,158972140,Figo,Manhattan,Harlem,40.81678,-73.94246,Private room,85,1,7,2019-04-02,0.62,2,180 +26603881,SPACIOUS 3 BR APT 5 MNS TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.80269,-73.94687,Entire home/apt,300,2,0,,,3,353 +26603929,UWS Cozy room near Columbia UNIVERSITY***,199946021,Joe,Manhattan,Upper West Side,40.79978,-73.96295,Private room,52,1,64,2019-06-23,5.42,3,11 +26604019,Home away from home,40398107,Joey,Brooklyn,Midwood,40.61615,-73.95997,Entire home/apt,70,1,1,2018-07-17,0.08,1,0 +26604063,Private room close to Columbia university **,199946021,Joe,Manhattan,Upper West Side,40.79972,-73.96281,Private room,76,1,76,2019-06-16,6.28,3,16 +26604446,Spacious and close to everything,200018869,Vivian,Bronx,Claremont Village,40.84171,-73.91159,Private room,150,1,0,,,1,363 +26606648,"Big, Pretty & Right in the City!",7718759,Kelly,Manhattan,Harlem,40.82763,-73.94404,Private room,63,1,19,2019-07-02,7.92,2,16 +26606845,NYC Guest Suite with Loft-Free Ferry to Manhattan,50756378,Nina,Staten Island,Clifton,40.61543,-74.08513,Entire home/apt,100,2,5,2019-05-19,0.43,7,312 +26607493,LES - Lower East Side,73269245,Borna,Manhattan,Chinatown,40.71443,-73.99348,Private room,55,7,1,2018-08-15,0.09,1,0 +26607877,COZY ROOM 5 MNS WALK TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.80367,-73.94803,Private room,90,3,6,2019-01-02,0.60,3,353 +26608031,Charming Upper Manhattan Apartment,200049516,Talia,Manhattan,Washington Heights,40.83958,-73.94596,Entire home/apt,110,3,4,2018-11-24,0.33,1,0 +26608302,❤️ A Warm Place to Stay. A Clean & Sunny RM,137358866,Kazuya,Queens,Woodside,40.74461,-73.90648,Private room,48,30,0,,,103,238 +26608589,Midtown 45 Manhattan with a view,173227728,Loretta,Manhattan,Midtown,40.75157,-73.97134,Private room,250,3,0,,,1,5 +26609429,Cozy home in UWS,199584723,Rachel,Manhattan,Upper West Side,40.79577,-73.97403,Private room,66,6,6,2018-08-26,0.49,1,0 +26619987,One big and comfy bedroom located in queens NY!!,176189568,Lina,Queens,Elmhurst,40.74295,-73.87812,Private room,130,2,0,,,1,358 +26622664,The house of Tranquility,17768644,Ankeen,Brooklyn,Flatbush,40.6533,-73.95534,Entire home/apt,65,2,1,2018-07-21,0.08,1,0 +26623526,apartment in ft Greene. Close to park and subway,952381,Elik,Brooklyn,Fort Greene,40.68705,-73.97336,Entire home/apt,133,28,6,2019-06-10,0.52,1,307 +26627587,RH COZY HOME,199954647,Danny,Queens,Richmond Hill,40.69666,-73.83415,Entire home/apt,100,3,15,2019-01-01,1.33,1,0 +26627762,Comfy Quiet Private Room in 3 bd/rm Apt.,200166257,Bryan,Manhattan,Washington Heights,40.85466,-73.92771,Private room,30,2,1,2018-07-30,0.09,1,0 +26630310,Beautiful Private room in Brooklyn,128883588,Zara,Brooklyn,Bedford-Stuyvesant,40.69185,-73.95896,Private room,75,10,0,,,1,17 +26632496,Cozy Brooklyn Nook w/Quick Manhattan Access,85852354,Janli,Brooklyn,Downtown Brooklyn,40.69032,-73.9871,Private room,85,2,26,2019-05-31,2.39,1,0 +26632917,Casa Maritza,47924569,Marco,Brooklyn,East Flatbush,40.64629,-73.932,Entire home/apt,125,3,18,2019-06-22,1.53,1,48 +26633920,Sunny studio apartment in Greenpoint BK,7117901,Krista,Brooklyn,Greenpoint,40.72878,-73.95823,Entire home/apt,137,3,0,,,1,0 +26635476,Newly Renovated Apartment in Upper Manhattan!,57322447,Matthew,Manhattan,Inwood,40.86159,-73.92616,Entire home/apt,100,4,3,2018-10-31,0.26,1,0 +26635867,Prospect Park Oasis in the City,2208401,Sarah & Bruce,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.96277,Entire home/apt,125,2,11,2019-04-28,0.94,1,0 +26638676,Home Sweat Home,46970670,Jasmine,Manhattan,Battery Park City,40.71106,-74.0157,Entire home/apt,91,28,5,2019-05-16,0.41,1,47 +26639925,Esteem's Place Deux,141615596,Esteem,Bronx,Parkchester,40.83791,-73.85845,Private room,26,1,14,2019-06-13,1.24,2,311 +26640189,Comfy Clinton Hill Master Suite,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69418,-73.96069,Private room,66,1,3,2019-04-07,0.36,3,0 +26640231,Magic at the Castle: private bedroom and bathroom,27964506,Ally,Bronx,Throgs Neck,40.81639,-73.81954,Private room,60,1,13,2019-06-30,1.09,1,35 +26640272,Modern NYC Living in Soho/ Noho/West Village,19433714,Jeff,Manhattan,Greenwich Village,40.727,-73.99767,Private room,150,3,30,2019-06-06,2.64,3,20 +26641303,Chic Designer Lower East Side Studio,7612089,Daniella,Manhattan,Lower East Side,40.71769,-73.99148,Entire home/apt,222,1,3,2018-12-30,0.26,1,0 +26641779,Clean and modern space in Clinton Hills,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95884,Entire home/apt,148,2,38,2019-07-01,3.28,2,102 +26642831,The Best Place to stay in Manhattan,502829,Ildiko,Manhattan,Upper West Side,40.79083,-73.97531,Entire home/apt,225,3,3,2019-05-06,0.42,1,330 +26643374,Williamsburg Modern Apt - same block as L/G train.,14927030,Bianca,Brooklyn,Williamsburg,40.71364,-73.95126,Entire home/apt,200,5,0,,,1,103 +26645876,Lucky Home 像纽约有个温馨的家 安静整洁 Sunshine lovely Comfort,88576580,Anna,Queens,Flushing,40.75607,-73.82212,Private room,60,1,3,2018-08-19,0.28,2,0 +26654670,Cozy Room Great Price in Bushwick Bklyn! (Suite 2),44123062,Oscar,Brooklyn,Bushwick,40.68796,-73.90781,Private room,45,4,47,2019-07-02,4.37,4,20 +26655705,CESAR'S PALACE,24195130,Cesar,Bronx,Pelham Gardens,40.86153,-73.83656,Entire home/apt,102,1,50,2019-06-23,4.19,1,349 +26658854,Sunny well-located room near Times Sq. 41D2,190921808,John,Manhattan,Chelsea,40.75369,-73.99719,Private room,50,7,11,2019-06-22,0.99,47,358 +26659521,"LongTerm-25DaysMin +Chinatown,Soho,LittleItaly,LES",197400421,Ben,Manhattan,Chinatown,40.71509,-73.99986,Private room,100,25,0,,,2,333 +26660828,AIRY & BREEZY,19739033,Fifi,Manhattan,Harlem,40.81265,-73.95261,Entire home/apt,250,2,3,2019-04-01,0.31,2,0 +26662052,Beautiful room in Bushwick right next to JMZ train,19704368,Zephyr,Brooklyn,Bushwick,40.69227,-73.92521,Private room,44,5,3,2018-09-19,0.25,1,4 +26662711,Cozy Studio near Hudson River & Central Park,104117770,Dara,Manhattan,Hell's Kitchen,40.7686,-73.98951,Entire home/apt,130,4,7,2019-03-24,0.59,1,0 +26663094,"Great room in Bushwick, Brooklyn.",107579819,Tal,Brooklyn,Bushwick,40.69417,-73.92589,Private room,55,5,6,2019-05-01,0.51,2,0 +26663507,Bright and spacious Bushwick apartment,1116256,Fernando,Brooklyn,Bushwick,40.70618,-73.91689,Entire home/apt,78,30,1,2018-08-19,0.09,1,6 +26664229,Queens Center 25 min to Manhattan 5min to subway!,200439496,Richard,Queens,Elmhurst,40.73744,-73.87247,Entire home/apt,165,30,14,2019-06-30,1.15,1,242 +26664580,Twin Cabin One,51913826,The Bowery House,Manhattan,Nolita,40.72242,-73.99463,Private room,84,1,0,,,8,0 +26664837,Great renovated apartment 1 block away from train,17926275,Jessica,Manhattan,Washington Heights,40.85116,-73.93457,Entire home/apt,90,3,7,2019-06-26,0.64,1,6 +26665072,"Airy, sun-drenched brownstone apt w/ private deck",8060373,Tiffany,Brooklyn,Fort Greene,40.6896,-73.97238,Private room,150,14,0,,,1,0 +26665387,3 Level Loft♦♦♦Private Terrace W/views ♦♦♦Flatiron,158687034,Eric,Manhattan,Midtown,40.74493,-73.9824,Entire home/apt,500,5,39,2019-06-30,3.24,1,114 +26665588,Beautiful Convenient Bushwick Oasis w/Trampoline,7054114,Alex,Brooklyn,Bushwick,40.69286,-73.92675,Private room,75,1,22,2019-07-01,9.17,1,70 +26665850,Secured Apartment Queens NY - 15 mins from JFK.,200453889,Mary,Queens,Jamaica,40.69066,-73.78759,Private room,44,5,8,2018-12-08,0.68,1,314 +26666333,Williamsburg sunny bedroom,9034275,Arnaud,Brooklyn,Williamsburg,40.71674,-73.95825,Private room,75,3,2,2019-03-04,0.19,1,0 +26667693,"Prime Location Cozy, Posh, Upper East Side Room1",200465032,Jack,Manhattan,Upper East Side,40.78369,-73.95154,Private room,120,2,58,2019-06-30,4.96,3,354 +26668018,"Prime Location Cozy, Posh, Upper East Side Room 2",200465032,Jack,Manhattan,Upper East Side,40.78352,-73.95275,Private room,120,2,57,2019-07-01,4.76,3,351 +26668116,"Prime Location Cozy, Posh, Upper East Side Room3",200465032,Jack,Manhattan,Upper East Side,40.78394,-73.95137,Private room,110,2,49,2019-06-30,4.06,3,358 +26668703,Red Hook Loft,6354758,Molly,Brooklyn,Red Hook,40.67966,-74.00641,Private room,125,7,1,2018-09-01,0.10,1,45 +26669041,A Cozy Single bed for Female Girls,200479961,Fei,Brooklyn,East New York,40.6757,-73.87657,Shared room,25,2,26,2019-06-04,2.25,1,50 +26669199,HouseOfGrace,200483536,Sien,Manhattan,East Village,40.72307,-73.98437,Private room,89,1,12,2019-05-04,1.07,1,160 +26670401,Spacious room in center of the city,161057073,Stella,Manhattan,Lower East Side,40.7216,-73.98791,Private room,81,2,26,2019-06-24,2.29,4,61 +26670812,Lucky home 温馨如家,88576580,Anna,Queens,Flushing,40.75432,-73.82273,Private room,60,1,1,2018-08-15,0.09,2,0 +26679556,Very Sunny Apt on UWS,4231845,Yann,Manhattan,Morningside Heights,40.80494,-73.96426,Entire home/apt,95,2,2,2018-08-15,0.18,1,0 +26681364,Large room near Times Square 31C4,190921808,John,Manhattan,Hell's Kitchen,40.75544,-73.99511,Private room,75,7,3,2018-10-24,0.29,47,348 +26681846,Large cozy room in the center of NYC 21B2,190921808,John,Manhattan,Hell's Kitchen,40.75492,-73.99563,Private room,80,7,7,2019-05-25,0.66,47,329 +26682755,perfectly located right next to Main st Flushing,161899037,Tony,Queens,Flushing,40.75637,-73.83208,Entire home/apt,159,2,22,2019-06-09,1.83,7,58 +26682918,Sunny Private Bedroom Near Manhattan,200600695,Carolina,Queens,Sunnyside,40.74122,-73.92223,Private room,80,1,11,2019-06-23,0.93,1,346 +26683178,Garden level Brooklyn apartment,13093738,Alex,Brooklyn,Boerum Hill,40.68563,-73.98796,Entire home/apt,165,4,2,2018-12-20,0.19,1,0 +26685276,Large eclectic plant filled home w private rooftop,7620548,Lena,Queens,Ridgewood,40.69212,-73.90188,Entire home/apt,170,7,0,,,1,10 +26685314,Bedroom minutes to Manhattan - steps to train,200621725,Sue,Brooklyn,Williamsburg,40.71215,-73.94082,Private room,69,2,70,2019-06-20,5.79,2,30 +26687229,A real East Village experience on St Marks Place!,2326551,Laura,Manhattan,East Village,40.7277,-73.98362,Entire home/apt,140,1,38,2019-06-23,3.27,2,101 +26688045,Cozy & Gorgeous Girls room Near Train / Manhattan,137358866,Kazuya,Queens,Woodside,40.74465,-73.90795,Private room,39,30,0,,,103,0 +26688805,Beautiful Bedstuy Brooklyn Bedroom,153900772,Stacy,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92116,Private room,50,2,4,2018-08-27,0.35,1,0 +26689265,Sunny 1.5 Bed Bushwick Brooklyn Railroad,2622041,Elizabeth,Brooklyn,Bushwick,40.70204,-73.91684,Entire home/apt,135,2,10,2019-04-28,0.97,1,15 +26689797,Harlem Bliss,28713609,Irma,Manhattan,East Harlem,40.8018,-73.9413,Entire home/apt,120,2,25,2019-06-11,2.06,1,6 +26690336,Cozy Sunnyside Couples Bedroom w/ Great Location,137358866,Kazuya,Queens,Sunnyside,40.7351,-73.92039,Private room,39,30,1,2019-03-01,0.23,103,0 +26690488,"Large, Eco-Friendly, Vintage Apt near Bushwick",3329478,Emily,Queens,Ridgewood,40.70527,-73.90083,Private room,69,2,22,2019-02-01,1.92,1,16 +26690586,Ionic Room close to NYC,183321912,Iris,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95379,Private room,65,30,30,2019-05-31,2.71,2,361 +26691677,Small 3rd story Room off BRKLYN-QUEENS Expressway,56616801,James,Brooklyn,Greenpoint,40.72414,-73.93967,Private room,25,1,4,2018-10-29,0.34,1,0 +26691866,"Prospect Heights / Brooklyn Botanical Garden $ Prospect Park West +#kuetheresidence",3664407,Katia,Brooklyn,Prospect Heights,40.67367,-73.96507,Entire home/apt,120,3,13,2019-06-18,1.09,1,9 +26692070,SUPER COZY LUXURY APT WALL ST. WITH GYM/ROOFTOP,200683024,Ezgin,Manhattan,Financial District,40.70496,-74.00639,Entire home/apt,128,5,36,2019-06-13,3.06,1,136 +26692402,Light Filled Upper East Side Studio,6788748,Erica,Manhattan,Upper East Side,40.77668,-73.94587,Entire home/apt,125,30,9,2019-06-16,0.82,1,4 +26693195,Modern Bedroom in Townhouse. Close to subway.,200697707,Carles,Brooklyn,Bushwick,40.68764,-73.91445,Private room,65,1,57,2019-06-24,4.76,1,48 +26694068,Beautiful cozy 3 bedrooms steps from Industry City,199147185,Lou,Brooklyn,Sunset Park,40.66214,-73.99511,Entire home/apt,172,1,34,2019-06-20,3.07,5,133 +26696254,Upscale Spacious Condo in the Heart of Brooklyn,160683712,Dejuan,Brooklyn,Bedford-Stuyvesant,40.68291,-73.91975,Entire home/apt,150,2,8,2018-10-15,0.68,1,84 +26703677,Camp Rockaway,200754542,Kent,Queens,Breezy Point,40.56605,-73.86994,Private room,195,1,4,2019-06-15,0.35,2,160 +26705460,A+ Location - Cozy Brooklyn Room with Great Access,106609860,Jeremy,Brooklyn,Gowanus,40.67779,-73.98342,Private room,60,2,37,2019-06-20,3.27,1,54 +26706133,Beautiful brand new apartment !,199147185,Lou,Brooklyn,Sunset Park,40.66362,-73.99616,Entire home/apt,330,1,1,2018-11-04,0.12,5,174 +26708055,2 BR - Manhattan Upper West Side - Bright & Quiet,145237476,Margaux,Manhattan,Upper West Side,40.79782,-73.97179,Entire home/apt,195,2,1,2019-01-01,0.16,1,3 +26709233,Sunny house,200826881,Cheolwoo,Queens,Elmhurst,40.74579,-73.88904,Entire home/apt,60,3,16,2019-07-07,1.42,1,40 +26710580,Dream House Midtown,22800762,Mary,Manhattan,Hell's Kitchen,40.76484,-73.98969,Entire home/apt,220,4,0,,,1,0 +26713367,Artistic + Chic Flat in East Village w/ Backyard,197547562,Galina,Manhattan,East Village,40.72382,-73.97683,Private room,110,2,7,2019-05-15,0.79,1,89 +26715133,Beautiful Apartment In Nolita for 4 Guests,10457196,Richard,Manhattan,Chinatown,40.71765,-73.99457,Entire home/apt,154,30,3,2019-05-29,0.30,11,113 +26715682,1BR private apartment,131522515,Marina,Brooklyn,Gravesend,40.59166,-73.96672,Entire home/apt,76,2,26,2019-06-23,2.22,1,323 +26716338,* Lovely Washington Heights Room *,116308258,Aida,Manhattan,Washington Heights,40.83298,-73.93938,Private room,70,7,2,2018-08-28,0.18,1,0 +26717112,Modern Brooklyn Loft in Full-Service Elev Bldg,83076690,Stacie,Brooklyn,Prospect Heights,40.68219,-73.97259,Entire home/apt,220,3,6,2019-07-01,0.52,1,0 +26717141,"Cozy Room: 7 Minutes to LGA, 20 min to Manhattan !",65671256,Freddy,Queens,Jackson Heights,40.75782,-73.85973,Private room,55,1,55,2019-07-02,4.98,3,136 +26717498,studio apartment,51278311,Sven,Brooklyn,Gowanus,40.66873,-73.99263,Entire home/apt,55,9,0,,,1,0 +26717562,"Cathedral ceiling, very large Chelsea apartment",102763548,Tugrul,Manhattan,Chelsea,40.7433,-74.00119,Entire home/apt,270,5,0,,,1,46 +26717696,"Prime Location 67 St & 3 Ave, walk to Central Park",477865,Irina,Manhattan,Upper East Side,40.76663,-73.96171,Entire home/apt,99,4,4,2019-04-02,0.35,1,2 +26717970,An artist retreat in the heart of Bushwick,51412807,Daniel,Brooklyn,Bushwick,40.69826,-73.91944,Entire home/apt,95,2,40,2019-03-25,3.32,1,0 +26718375,1 Bedroom 2R in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69074,-73.93858,Private room,118,1,20,2019-06-03,1.90,6,285 +26719190,Harlem Gem,200840286,Danielle,Manhattan,Harlem,40.80705,-73.95582,Private room,80,2,42,2019-06-26,4.92,1,13 +26719426,"Private apartment, complimentary parking included.",180775831,Kyle,Queens,Flushing,40.75396,-73.83361,Entire home/apt,60,1,40,2019-06-23,3.46,1,15 +26721080,Private Room,44630233,George,Brooklyn,Williamsburg,40.7073,-73.92776,Private room,20,1,8,2018-10-11,0.73,1,1 +26728369,"New York private room in Park slope, City views",26437452,Sandee,Brooklyn,Gowanus,40.67118,-73.99061,Private room,70,4,14,2019-05-27,1.16,1,0 +26734103,Best spot in town: Bunk in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69103,-73.93933,Shared room,33,1,33,2019-06-02,2.78,17,85 +26734288,Super cool shared apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69099,-73.94094,Shared room,30,2,32,2019-06-23,2.66,17,85 +26734461,Great Sunny Brooklyn Room minutes from the City!,18747710,Jessica,Brooklyn,Carroll Gardens,40.67834,-73.99761,Private room,98,2,21,2019-07-05,2.10,2,73 +26735127,2 BEDS Y- SUNNY ROOM NEAR TRAIN TO MANHATTAN,201024308,William And Julian,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95492,Private room,70,2,28,2019-06-23,2.30,1,334 +26735305,Private 1 Bd Guest House. Great for Quiet Getaway,34313176,Eddie,Queens,Rego Park,40.71734,-73.86,Entire home/apt,110,2,12,2019-03-25,1.02,4,332 +26735765,Bright room in beautiful Park Slope apartment,15500498,Tiffany,Brooklyn,Sunset Park,40.65828,-73.98983,Private room,55,2,7,2018-11-04,0.58,1,0 +26737188,Brand New Brooklyn Style Hostel RM3 #1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69414,-73.9556,Shared room,40,3,10,2019-06-15,0.93,34,332 +26739023,Cozy Studio Apartment in Great Location!!!,50770601,Diana,Manhattan,Gramercy,40.73714,-73.97962,Entire home/apt,189,1,11,2019-06-06,1.51,5,312 +26739075,Brand New Brooklyn Style Hostel RM3 #2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95696,Shared room,36,1,18,2019-05-01,1.53,34,365 +26739303,SUNNY ROOM C - GREAT LOCATION RIGHT NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69373,-73.95041,Private room,65,30,35,2019-06-17,3.04,3,348 +26741049,Josh & Charlotte's Place,200193940,Josh,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93441,Private room,49,2,44,2019-07-07,4.43,1,73 +26741585,Super Convenient Park Slope Room,62587696,Andrew,Brooklyn,Gowanus,40.67077,-73.98969,Private room,52,2,53,2019-07-03,5.26,2,13 +26741642,Luxury Historic Brooklyn Apt in Bed Stuy - Legal,3073952,Christof,Brooklyn,Bedford-Stuyvesant,40.68069,-73.91045,Entire home/apt,97,1,27,2019-06-30,5.66,2,62 +26742074,"Cozy clean bright room Bushwick, blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93247,Private room,80,20,9,2019-06-09,0.78,4,154 +26743115,"Upper East 1 Bedroom Apartment, Near Central Park!",50770601,Diana,Manhattan,Upper East Side,40.77359,-73.94865,Entire home/apt,189,1,1,2019-03-13,0.25,5,365 +26743342,Brand New Brooklyn Style Hostel RM3 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69396,-73.95578,Shared room,35,1,16,2019-07-06,1.34,34,346 +26743564,Brand New Brooklyn Style Hostel RM3 #3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69439,-73.95518,Shared room,36,3,14,2019-05-06,1.24,34,361 +26743587,"Private, Modern, Garden Apt - Historic Ditmas Park",201083646,Hilary,Brooklyn,Flatbush,40.6417,-73.96554,Entire home/apt,150,4,18,2019-06-18,1.57,1,52 +26743617,BRAND NEW LUXE 2BR/2 BA APARTMENT IN BUSHWICK,16713332,Tabea,Brooklyn,Bushwick,40.69701,-73.93002,Entire home/apt,100,12,1,2019-01-06,0.16,2,0 +26743638,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95038,Private room,60,30,1,2019-03-19,0.27,8,217 +26743923,Freehand New York- Bunk Room,164291123,Freehand,Manhattan,Flatiron District,40.74107,-73.98693,Private room,179,1,35,2019-05-26,3.11,3,331 +26744053,Private Room,200933726,Momo,Bronx,Allerton,40.86659,-73.866,Private room,34,2,0,,,1,0 +26744721,"Gorgeous studio ""Hamptons style"" in West Village",8305252,Lauren,Manhattan,West Village,40.73611,-74.00922,Entire home/apt,200,3,26,2019-06-23,2.14,1,67 +26745686,Huge 1 Bedroom 2F in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93943,Private room,123,2,32,2019-06-03,2.72,6,251 +26747129,Charming and Cozy Private Clinton Hills Studio,201116493,Andrea,Brooklyn,Clinton Hill,40.68305,-73.96316,Entire home/apt,80,14,2,2018-12-31,0.19,1,0 +26747248,Red Hook studio space with private entrance,3830753,Roberto,Brooklyn,Red Hook,40.675,-74.01127,Entire home/apt,90,4,32,2019-06-24,2.75,1,107 +26747415,Near LGA and JFK Airports Large Cozy Room,194377255,Jimmy,Queens,East Elmhurst,40.76071,-73.88406,Private room,40,1,104,2019-07-04,8.64,4,351 +26748151,Sun-Filled Artist Loft in Private Townhouse,24187602,Cyril,Manhattan,West Village,40.73865,-74.00662,Entire home/apt,490,2,15,2019-06-05,1.48,1,179 +26748374,"Cabin Feels +Sunset Views +By Greenwood cemetery +<3",183563796,Michal,Brooklyn,Borough Park,40.64282,-73.98779,Entire home/apt,70,2,2,2019-01-02,0.19,1,0 +26748389,Sunny Pre-War Carroll Gardens Apartment,18747710,Jessica,Brooklyn,Carroll Gardens,40.67995,-73.99665,Entire home/apt,188,2,7,2019-05-11,0.59,2,19 +26749031,Bright Bedroom Steps to train Minutes to Manhattan,200621725,Sue,Brooklyn,Williamsburg,40.7132,-73.94164,Private room,69,2,75,2019-06-21,6.20,2,15 +26749730,KID-friendly 2BR apartment - heart of Williamsburg,8654731,Juan,Brooklyn,Williamsburg,40.70945,-73.95843,Entire home/apt,289,30,32,2019-04-21,3.06,1,60 +26749932,Ju Ju Shala in Williamsburg,201142263,Pablo,Brooklyn,Williamsburg,40.70761,-73.95337,Private room,130,2,8,2019-06-26,0.68,1,86 +26750369,Lovely Private Room in Heart of Prospect Heights!,4537638,Rachel,Brooklyn,Prospect Heights,40.67762,-73.96539,Private room,75,2,4,2018-09-01,0.37,1,0 +26750461,Manhattan view from Queens- 15 min from NYC & BK,40643524,Mary,Queens,Sunnyside,40.73758,-73.92821,Shared room,79,2,1,2018-07-22,0.09,1,0 +26750638,This is a beautiful condo with a lot of mirror,45093051,Vincent,Manhattan,Harlem,40.80045,-73.95166,Private room,100,1,13,2019-06-30,1.13,2,351 +26750740,Bon Séjour,201138200,Paul,Manhattan,Financial District,40.70413,-74.0134,Private room,995,1,0,,,1,365 +26751201,Cozy apartment in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76538,-73.92726,Entire home/apt,150,2,46,2019-06-21,3.84,2,121 +26753081,Trendy Nabe Bunk for travelers,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69124,-73.93911,Shared room,21,1,35,2019-06-20,2.92,17,78 +26753210,Spacious studio by the ocean,32936693,Polina,Brooklyn,Brighton Beach,40.57951,-73.95663,Entire home/apt,68,25,4,2019-03-13,0.37,1,0 +26753414,Williamsburg Sizable Bedroom w/ Outdoor Space,75590434,Michael,Brooklyn,Williamsburg,40.71256,-73.95121,Private room,135,4,11,2019-07-01,0.99,1,5 +26754406,Midtown NYC Loft,126962637,Mathew,Manhattan,Murray Hill,40.74849,-73.97873,Entire home/apt,145,3,28,2019-06-19,2.43,1,43 +26754694,"COZY AND ELEGANCE PLACE NEAR JFK, LGA",173290675,Charlie,Queens,Woodhaven,40.69883,-73.85142,Private room,45,2,8,2019-05-10,0.81,3,50 +26755667,Private room in Friendly Apartment!,72157489,Yvonne,Brooklyn,Bushwick,40.69327,-73.91599,Private room,50,1,3,2018-07-30,0.25,2,250 +26755790,vicky客栈2,180991373,Vicky,Queens,Flushing,40.74298,-73.82306,Private room,60,1,26,2019-07-07,2.34,5,46 +26756045,vicky客栈3,180991373,Vicky,Queens,Flushing,40.74294,-73.82318,Private room,49,1,25,2019-07-05,2.12,5,46 +26756339,vicky客栈5,180991373,Vicky,Queens,Flushing,40.74247,-73.82439,Private room,40,1,52,2019-07-07,4.32,5,15 +26756446,"Cozy bedroom mins to Manhattan, one block to train",201203968,William,Brooklyn,Williamsburg,40.7127,-73.94034,Private room,62,2,64,2019-06-10,5.35,2,26 +26756546,Central Park Treasure,77106920,Jennifer,Manhattan,Harlem,40.80626,-73.95268,Entire home/apt,345,3,12,2019-05-29,1.01,1,37 +26757594,A Great Room,199833548,Syeda,Queens,Sunnyside,40.74136,-73.92476,Private room,80,1,27,2019-06-05,2.40,9,309 +26757602,A room for rest before you wander,9541963,Rebecca,Brooklyn,Crown Heights,40.6746,-73.9474,Entire home/apt,90,1,51,2019-07-07,4.47,1,2 +26758154,A Private Room,199833548,Syeda,Queens,Sunnyside,40.74046,-73.9251,Private room,60,1,25,2019-06-22,2.23,9,336 +26766865,Large Secured Condominium Studio,198257022,Henry,Bronx,University Heights,40.8612,-73.91065,Entire home/apt,150,1,6,2018-11-10,0.53,1,191 +26768387,Prime Bushwick Artist’s Pad,50601648,Creighton,Brooklyn,Bushwick,40.68904,-73.92037,Private room,68,3,16,2019-06-03,1.40,1,139 +26769087,Chic Upper West Side living.,647918,Rohan,Manhattan,Upper West Side,40.77782,-73.98762,Private room,150,1,4,2019-02-03,0.38,1,0 +26770045,Beautiful Williamsburg 1BR - Huge and Sunny,1465316,Alex,Brooklyn,Williamsburg,40.71433,-73.95679,Entire home/apt,120,7,3,2019-01-04,0.43,1,230 +26770455,Very large room & apartment close to Central Park!,46844755,Bhavin,Manhattan,Midtown,40.76448,-73.97907,Private room,70,1,1,2018-07-23,0.09,1,90 +26771228,WV apt available July 24th to Aug 24th,144674348,Cristin,Manhattan,West Village,40.73132,-74.00429,Entire home/apt,200,15,0,,,1,0 +26772477,Full Cabin One,51913826,The Bowery House,Manhattan,Nolita,40.72271,-73.99412,Private room,109,1,2,2018-07-29,0.17,8,0 +26773228,NYC Large private bedroom & bathroom,90439931,Jasmine,Queens,Ditmars Steinway,40.77329,-73.91183,Entire home/apt,74,3,3,2018-09-03,0.25,1,41 +26774025,Big Apple Slice of History with Breakfast Included,201315040,Carmen,Manhattan,East Village,40.72493,-73.97571,Private room,125,2,26,2019-06-19,2.23,1,118 +26774439,Full Cabin Two,51913826,The Bowery House,Manhattan,Nolita,40.72315,-73.99454,Private room,109,1,1,2019-02-10,0.20,8,0 +26774653,"Bright, Spacious Apartment in Brooklyn",27742407,Filippo,Brooklyn,Clinton Hill,40.68453,-73.96773,Entire home/apt,120,5,2,2018-09-14,0.19,1,13 +26775087,SUNNY ROOM B - GREAT LOCATION RIGHT NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69526,-73.95119,Private room,65,30,15,2019-05-19,1.42,3,328 +26775656,"Bright, Private Bedroom in Bushwick Proper",10457486,Kevin,Brooklyn,Bushwick,40.69808,-73.92417,Private room,47,1,17,2019-06-11,1.63,1,106 +26776752,Private Room in Nolita/Soho (+ Balcony/Roof Deck),1462999,Ilya,Manhattan,Nolita,40.72341,-73.99426,Private room,120,4,37,2019-06-21,3.22,1,78 +26776816,Private 3B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75998,-73.98952,Private room,110,1,73,2019-06-22,6.48,12,187 +26776819,Private 3A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76187,-73.98984,Private room,110,1,54,2019-06-23,4.84,12,251 +26777200,Private 3C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.7601,-73.99166,Private room,115,1,59,2019-06-20,5.25,12,194 +26777328,Private 3D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75955,-73.99022,Private room,105,1,67,2019-06-18,5.98,12,241 +26777561,Simple + Cute + Spacious Studio (perfect for 1-2),201350300,Yeena,Manhattan,Upper West Side,40.7862,-73.98089,Entire home/apt,119,3,6,2019-06-23,0.57,1,0 +26777948,Comfortable Studio Apartment,120035273,Ral,Bronx,Edenwald,40.89245,-73.83721,Entire home/apt,42,1,32,2019-06-20,2.74,1,32 +26778845,Williamsburg apartment with roof terrace,2478942,Francesca,Brooklyn,Williamsburg,40.71085,-73.96136,Private room,65,4,10,2019-05-28,0.87,1,5 +26779327,Large artsy basement room close to subway,2886359,David,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91618,Private room,54,1,15,2019-07-08,1.81,2,13 +26779818,NEW Bright West Village 2 Bed,201369441,Teddy,Manhattan,West Village,40.7383,-74.00131,Entire home/apt,325,2,9,2018-12-05,0.76,1,0 +26780175,"Sunny, Spacious Town Home w. Private Backyard!",119673533,David,Brooklyn,Sunset Park,40.66236,-73.99109,Entire home/apt,265,2,4,2018-12-30,0.42,1,0 +26780625,Suite/English basement in Brooklyn townhouse,58857346,Rachel,Brooklyn,Kensington,40.6451,-73.97064,Private room,95,3,19,2019-06-30,1.61,1,85 +26780658,Cozy gem in Greenwich Village @ border of SoHo,27960761,Christopher,Manhattan,Greenwich Village,40.72704,-73.99672,Entire home/apt,199,2,9,2019-04-23,0.82,3,0 +26780660,NEW! HUGE DESIGN LOFT w/ Rooftop in Williamsburg,2127180,Fleur,Brooklyn,Williamsburg,40.71308,-73.94458,Entire home/apt,125,9,5,2019-04-14,0.42,1,59 +26781602,Cozy apartment in the East Village,16149213,David,Manhattan,East Village,40.72541,-73.98398,Entire home/apt,174,2,6,2019-05-19,2.12,1,5 +26782162,"Near JFK & LaGuardia airport, cozy studio-style",27558716,Nhia,Queens,Queens Village,40.70946,-73.74837,Private room,50,1,47,2019-07-01,3.96,1,348 +26782911,Apartment in Brooklyn Brownstone & Rooftop Views,3955425,Meredith,Brooklyn,Crown Heights,40.67435,-73.95087,Entire home/apt,140,2,7,2018-12-31,0.59,1,7 +26783332,"Huge, Bright, clean Bushwick blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69517,-73.93248,Private room,95,20,11,2019-05-06,0.92,4,244 +26783354,Great apartment in the heart of trendy Bushwick.,129403630,David,Brooklyn,Bushwick,40.70145,-73.92,Entire home/apt,120,2,10,2018-11-05,0.83,1,3 +26784218,Compact Comfy Cute Private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.64165,-74.00922,Private room,39,2,6,2019-04-01,0.53,5,224 +26784269,Brooklyn Retreat,37834029,Thom & Moses,Brooklyn,Bedford-Stuyvesant,40.68393,-73.9553,Private room,75,3,49,2019-07-05,4.18,1,71 +26784504,Spacious and Comfy private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.63985,-74.01094,Private room,65,2,10,2019-05-19,0.85,5,186 +26784754,Comfy Bunk Bed private room in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.63986,-74.01064,Private room,58,2,10,2019-05-28,0.92,5,232 +26784985,Private Red Hook Guest Suite,135739716,Pavel,Brooklyn,Red Hook,40.67856,-74.01584,Entire home/apt,100,3,17,2019-06-04,1.42,1,6 +26785111,"1 BR, Williamsburg.",44492422,Florencia,Brooklyn,Williamsburg,40.70918,-73.96135,Private room,73,5,1,2018-11-09,0.12,1,249 +26785149,Bright Spacious Private room in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.641,-74.00925,Private room,65,2,12,2019-06-10,1.02,5,262 +26785267,Comfy and Bright Bedroom in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.64101,-74.01049,Private room,57,2,16,2019-06-05,1.35,5,222 +26786123,Comfy brand new designer duplex 2 min from L train,1809268,Célestine,Brooklyn,Bushwick,40.69433,-73.90649,Private room,60,3,5,2018-12-02,0.43,1,0 +26786737,Harmonious Room,183321912,Iris,Brooklyn,Bedford-Stuyvesant,40.68749,-73.95467,Private room,65,30,29,2019-06-05,2.51,2,362 +26787336,room & private bathroom in a beautlful space,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69471,-73.933,Private room,100,3,4,2018-08-10,0.33,7,109 +26787347,Oasis in the heart of Bed-Sty,201419214,Bryant,Brooklyn,Clinton Hill,40.68389,-73.96201,Private room,185,30,0,,,3,347 +26787899,Gourgeous room in Brooklyn,201419214,Bryant,Brooklyn,Clinton Hill,40.6853,-73.96385,Private room,65,30,31,2019-06-03,2.70,3,365 +26788016,Eclectic Room,201419214,Bryant,Brooklyn,Clinton Hill,40.68387,-73.96392,Private room,70,30,27,2019-06-13,2.38,3,347 +26788437,Big Private Room In the Heart of The East Village,201447930,Daniella,Manhattan,East Village,40.72785,-73.98684,Private room,130,2,19,2019-06-25,1.58,2,32 +26788754,Bright clean serene room Bushwick blocks 4rm train,201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93292,Private room,60,20,9,2019-03-29,0.75,4,318 +26788852,Budget apt in PRIME HARLEM NYC location,42537893,Courtney,Manhattan,Harlem,40.8274,-73.95215,Entire home/apt,102,2,14,2019-06-26,1.21,1,293 +26788956,Sun-filled private co-op minutes from JFK and NYC,37678920,Tiffanie,Queens,Jamaica,40.67784,-73.77299,Entire home/apt,100,1,7,2018-10-21,0.60,1,0 +26789136,"Huge, Bright Bushwick 3 Bedroom blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69516,-73.93213,Private room,170,5,3,2019-03-29,0.44,4,167 +26793665,Aery Room near all,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68845,-73.95659,Private room,65,30,32,2019-06-03,2.86,3,365 +26794087,cozy room <3,201480794,Genesiss,Brooklyn,Cypress Hills,40.68401,-73.89462,Private room,30,4,5,2019-06-25,1.50,1,0 +26794121,Blisfull Room,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68644,-73.95712,Private room,60,30,25,2019-06-20,2.08,3,0 +26794624,Dreamer Room,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68862,-73.95572,Private room,65,30,35,2019-06-19,3.06,3,365 +26796641,MASTER PRIVATE BATHROOM - 2 BEDS - NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69526,-73.95155,Private room,90,30,28,2019-07-07,2.37,3,320 +26796818,GREAT LOCATION 1 RIGHT NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69453,-73.95173,Private room,65,30,18,2019-05-10,1.54,3,354 +26802372,Cozy private room near the center of NYC 12AL,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99668,Private room,50,3,15,2018-12-16,1.30,47,238 +26802868,Anderson's abode,190085120,Rodney,Bronx,Morrisania,40.82823,-73.90114,Private room,150,2,0,,,1,0 +26803556,Sunny Top Floor Victorian,801975,Elizabeth And Timothee,Brooklyn,Crown Heights,40.67726,-73.94618,Entire home/apt,142,7,11,2019-07-06,1.04,2,219 +26803876,"Brooklyn studio by the park, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.65501,-73.95948,Entire home/apt,80,3,2,2019-06-10,0.32,3,0 +26805133,Cozy room in best New York neighborhood Chelsea,40404374,Reda,Manhattan,Chelsea,40.74137,-73.9994,Private room,92,3,8,2019-06-09,0.69,1,125 +26805201,Sunny Room 1 in Cool New Bushwick Building,6726656,Yelle,Brooklyn,Bushwick,40.70136,-73.9269,Private room,70,6,6,2018-11-12,0.50,3,11 +26805522,Bright Luxury Apartment in Williamsburg,126819583,Cydney,Brooklyn,Williamsburg,40.71107,-73.94665,Entire home/apt,275,2,20,2019-06-02,1.83,1,0 +26805568,Large Artist Studio - Prime Midtown Location,52666941,Jennifer,Manhattan,Midtown,40.74952,-73.9713,Entire home/apt,157,5,11,2019-01-01,0.91,1,0 +26805586,Clay's place@Bayswater,147710243,Clayton,Queens,Bayswater,40.60644,-73.76089,Private room,120,2,0,,,1,169 +26806179,Brighton Beach Paradise Apartment - Living Room,76123508,Viktoriya,Brooklyn,Brighton Beach,40.57636,-73.95964,Shared room,100,3,9,2019-07-07,0.78,1,85 +26807614,Twin Cabin with a Window One,51913826,The Bowery House,Manhattan,Nolita,40.72311,-73.99345,Private room,94,1,1,2019-03-24,0.28,8,0 +26807636,"East Village, ground floor, clean private bedroom!",2419727,Tim,Manhattan,East Village,40.72573,-73.98377,Private room,88,7,17,2019-06-24,1.63,1,227 +26807942,Room in East Village,10603974,Daniel,Manhattan,East Village,40.7272,-73.98186,Private room,56,9,4,2019-05-13,0.65,1,0 +26808322,10 MINS TO MANHATTAN! Very private & sunny room.,54640485,Cagkan,Queens,Long Island City,40.75463,-73.93448,Private room,55,3,44,2019-07-01,3.75,1,37 +26808582,Sonder | 116 John | Superior 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70633,-74.00623,Entire home/apt,165,29,0,,,96,332 +26808908,Twin Cabin with a Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72259,-73.99399,Private room,84,1,0,,,8,0 +26809805,Gramercy spacious apt!,19955930,Olivia,Manhattan,Kips Bay,40.74068,-73.98227,Entire home/apt,150,1,5,2019-06-05,0.46,1,23 +26810428,Times Sq. Private Bedroom-Great Location!,201611274,Nick,Manhattan,Hell's Kitchen,40.76475,-73.9932,Private room,244,1,39,2019-06-13,3.35,1,5 +26810466,Bright Midtown East,53883793,Rory,Manhattan,Midtown,40.76085,-73.96627,Entire home/apt,180,2,2,2019-06-10,0.17,1,4 +26810573,自己的小房间,48978249,QianWen,Queens,Flushing,40.75479,-73.81916,Shared room,200,1,0,,,2,89 +26810815,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68537,-73.94974,Private room,60,30,0,,,8,237 +26810987,"Bronx Haven : Near water, accessible to transit",16997863,Tara,Bronx,Castle Hill,40.81518,-73.84758,Entire home/apt,62,3,32,2019-06-23,2.79,1,42 +26811066,Gorgeous Lincoln Center - overlooking Central Park,77559258,Laura,Manhattan,Upper West Side,40.77237,-73.98063,Private room,245,2,0,,,1,89 +26811414,Charming House near Prospect Park,9296262,MIchele,Brooklyn,Windsor Terrace,40.65251,-73.97598,Entire home/apt,145,3,3,2018-08-02,0.26,1,69 +26812320,Sonder | 21 Chelsea | Modern 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74281,-73.99595,Entire home/apt,250,29,0,,,96,312 +26812324,Gorgeous Gramercy Apt,47596725,Owen,Manhattan,Flatiron District,40.73945,-73.98543,Entire home/apt,225,2,12,2019-06-30,1.07,1,5 +26812606,Modern Spacious Studio in the Heart of Chelsea,6720254,Eliran,Manhattan,Chelsea,40.74285,-73.99395,Entire home/apt,69,2,22,2018-12-06,1.94,1,0 +26812923,Your private studio in Manhattan,191765199,Elena,Manhattan,Washington Heights,40.83235,-73.94117,Entire home/apt,96,1,52,2019-06-17,4.37,6,40 +26813190,Bushwick House,11982558,Giorgi,Brooklyn,Bushwick,40.70313,-73.91451,Private room,37,21,1,2019-05-03,0.44,1,36 +26813610,Neat+Nice+Large dining area & 2 min to Subway,19303369,Hiroki,Queens,Woodside,40.74323,-73.90471,Private room,33,37,1,2018-12-15,0.15,37,39 +26814302,Amazing Studio at the Time Square Area/54C,48146336,Irina,Manhattan,Hell's Kitchen,40.76118,-73.99342,Entire home/apt,120,30,3,2019-04-07,0.33,20,346 +26814362,Modern Condo in Sunset Park w/Washer and Dryer,4622765,Gail And Yordanis,Brooklyn,Sunset Park,40.64538,-74.01624,Entire home/apt,180,7,2,2019-04-25,0.71,1,0 +26814599,Sunny and Spacious West Harlem bedroom with a view,156200633,Malik,Manhattan,Harlem,40.81747,-73.95249,Private room,52,3,10,2018-11-27,0.85,1,0 +26814763,One bedroom with full bed / 1 stop from Manhattan,201647469,Danielle,Queens,Long Island City,40.74565,-73.94699,Private room,108,2,13,2019-06-20,1.74,1,333 +26815405,Heart of the City,382836,Chemme,Manhattan,Hell's Kitchen,40.75718,-73.99245,Private room,140,2,4,2018-10-26,0.42,4,365 +26815416,Pinacoladaburgh,201654234,Jessica,Queens,Rockaway Beach,40.58739,-73.81746,Entire home/apt,75,2,35,2019-07-08,2.97,1,125 +26815937,Bear(D)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74544,-73.82244,Private room,48,1,74,2019-07-07,6.20,4,56 +26816742,Cozy living room in the center of Manhattan,42730216,Tatjana,Manhattan,Upper East Side,40.76639,-73.95817,Shared room,150,3,2,2019-06-19,2,2,142 +26816883,"Tour NYC, US Open - clean, comfort, close to all",201667999,Lily2R,Queens,Elmhurst,40.73965,-73.86796,Entire home/apt,60,1,23,2019-06-23,2.00,2,144 +26817803,New Amazing Modern Apartment w/ Backyard,12129877,Andre,Brooklyn,Crown Heights,40.67252,-73.93918,Entire home/apt,110,2,26,2019-06-26,2.21,2,267 +26818747,Cozy Garden Oasis Brooklyn Private 1 Bedroom Apt,9857739,Kelvin,Brooklyn,Sheepshead Bay,40.58884,-73.95136,Entire home/apt,70,2,59,2019-06-23,5.65,1,13 +26819776,Greatest room in the city,201696839,Chloe,Brooklyn,Downtown Brooklyn,40.69608,-73.98384,Private room,100,1,26,2019-06-08,2.27,1,131 +26828006,Brooklyn Duplex with Terrace near Park,748365,Nick,Brooklyn,Crown Heights,40.68055,-73.96425,Entire home/apt,200,30,4,2019-04-15,0.43,1,4 +26828964,NYC Private room with everything included !!,201757076,Soledad,Queens,Briarwood,40.71214,-73.81661,Entire home/apt,93,3,0,,,3,15 +26828970,Harlem Gem,149868,Joseph,Manhattan,Harlem,40.81381,-73.94549,Entire home/apt,125,1,59,2019-06-23,5.55,1,262 +26832236,5 blocks from Central Park- Entire 1br apartment,177478860,Annie,Manhattan,Upper East Side,40.77096,-73.95672,Entire home/apt,140,5,2,2018-10-09,0.19,1,0 +26832286,Luxe Designed Home by Times Sq with a View,2690202,Remy,Manhattan,Theater District,40.75987,-73.986,Entire home/apt,375,5,0,,,1,0 +26833795,Doorman 44Th st& 2nd! UN Doorman Studio Gym 5226,16098958,Jeremy & Laura,Manhattan,Midtown,40.75047,-73.96935,Entire home/apt,140,30,2,2019-06-02,0.26,96,311 +26833963,Gorgeous 2bedroom in the heart of Williamsburg!,22919533,Kristina,Brooklyn,Williamsburg,40.71193,-73.95956,Entire home/apt,200,3,32,2019-07-06,3.58,2,141 +26834353,Cozy Brooklyn Room - Next to Pratt Institute,133425456,소정,Brooklyn,Bedford-Stuyvesant,40.69056,-73.9598,Private room,40,5,1,2018-08-18,0.09,1,0 +26836650,Brooklyn Loft near Pratt,79657553,Ben,Brooklyn,Clinton Hill,40.69042,-73.96046,Private room,44,6,6,2019-02-11,0.52,1,1 +26837124,Williamsburg Apartment,8325079,Leila,Brooklyn,Williamsburg,40.71612,-73.94468,Entire home/apt,115,6,1,2018-08-20,0.09,1,0 +26837669,"Beautiful house in Brooklyn, New York City (34)",201822098,Charles,Brooklyn,Cypress Hills,40.67859,-73.89936,Entire home/apt,120,2,31,2019-06-08,2.59,1,99 +26837745,Great 4 Bedrooms with 4 private baths in ParkSlop.,199147185,Lou,Brooklyn,Sunset Park,40.66359,-73.99487,Entire home/apt,460,1,33,2019-06-09,2.75,5,113 +26837823,Private Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.69319,-73.90692,Private room,40,1,35,2019-05-29,2.92,3,0 +26837834,Romantic room with private entrance,6105036,George,Manhattan,Harlem,40.80527,-73.95106,Private room,90,4,20,2019-07-03,1.82,3,283 +26838387,"Great location, Minutes to Manhattan",201829594,James,Brooklyn,Bushwick,40.70237,-73.92002,Entire home/apt,150,20,3,2019-06-04,0.28,1,127 +26839646,Best Apartment Alphabet City Luxury & Comfort !!,201841679,Monica,Manhattan,East Village,40.72838,-73.97926,Entire home/apt,260,2,52,2019-06-17,4.62,1,141 +26839660,Manhattan modern walk to Central Park & Q train,5668544,Dj,Manhattan,Upper East Side,40.77594,-73.94818,Entire home/apt,200,3,0,,,1,132 +26839759,A little piece of heaven in the West Village!,2264902,Leni,Manhattan,West Village,40.73746,-74.00456,Entire home/apt,350,10,2,2019-01-02,0.17,2,0 +26840133,Oasis I,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68828,-73.95201,Private room,65,30,22,2019-06-04,1.89,3,365 +26840646,Bright Studio in the Heart of Bushwick,21924395,Natiya,Brooklyn,Bushwick,40.68657,-73.91354,Entire home/apt,63,2,10,2019-04-17,0.86,1,0 +26842735,"Bright, Cozy studio in beautiful West Village!",201868461,Coco,Manhattan,West Village,40.73384,-74.00819,Entire home/apt,129,2,55,2019-06-23,4.78,1,12 +26843289,Brighton Beach modern apartment (See description),58477936,Lev,Brooklyn,Brighton Beach,40.58022,-73.9558,Entire home/apt,75,2,48,2019-06-29,4.02,1,169 +26843443,Charming Studio in the Heart of Astoria,86414330,Willi,Queens,Astoria,40.75717,-73.92831,Entire home/apt,100,4,19,2019-06-23,3.00,1,31 +26843473,"Brooklyn Charming Apt, Bed Stuy/sleeps 3",33214549,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94977,Entire home/apt,129,1,0,,,5,0 +26844905,Trendy Union Square Apartment,201885926,Ramona,Manhattan,East Village,40.73269,-73.98833,Private room,111,2,48,2019-07-02,4.17,1,0 +26845053,Brand New Cozy Brooklyn Apartment!,201884425,Hoover,Brooklyn,Cypress Hills,40.68253,-73.87457,Entire home/apt,80,5,25,2019-05-07,2.14,3,43 +26845312,10 MINUTES FROM MANHATTAN (Big),47015275,Kathy,Queens,Elmhurst,40.74503,-73.88761,Private room,80,1,3,2018-10-07,0.29,2,317 +26845317,Bear (C)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74686,-73.82192,Private room,59,1,49,2019-07-04,4.31,4,72 +26845561,The Unique Home in New York City,78643953,Daniel,Brooklyn,Bushwick,40.68875,-73.916,Entire home/apt,159,3,20,2019-07-01,3.14,2,258 +26845781,Bear(B),191571338,Geheng,Queens,Flushing,40.74293,-73.81868,Private room,55,1,43,2019-07-05,3.58,4,81 +26846116,Comfy Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.69307,-73.90541,Private room,65,1,37,2019-05-03,3.10,3,0 +26846269,Oasis II,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95131,Private room,65,30,21,2019-06-05,2.05,3,365 +26846867,Bushwick Proper - king master bed private bathroom,69527,Daniele,Brooklyn,Bushwick,40.69037,-73.90679,Private room,85,14,11,2019-06-30,2.20,1,55 +26846907,Large Bedroom w/Private Bathroom in DUMBO,201909387,Cagla,Brooklyn,Downtown Brooklyn,40.6973,-73.98359,Private room,70,30,1,2018-09-13,0.10,1,0 +26847614,Cozy Apartment on Franklin Ave,48498020,Anwar,Brooklyn,Crown Heights,40.67434,-73.95549,Private room,40,7,3,2018-08-25,0.25,1,0 +26849955,Parlour Floor of a Brownstone in Cobble Hill,12223329,Ney,Brooklyn,Cobble Hill,40.68542,-73.99673,Entire home/apt,300,2,18,2019-05-30,1.56,1,61 +26858196,AWESOME 2 BEDS - QUEEN + SOFA - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69561,-73.94972,Private room,75,30,22,2019-06-22,1.83,6,318 +26858223,COMFORTABLE PRIVATE ROOM - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69323,-73.94993,Private room,68,30,14,2019-06-13,1.26,6,365 +26860883,Private Bedroom in Manhattan!,50951460,Sydney,Manhattan,Harlem,40.8275,-73.94323,Private room,60,1,14,2019-06-19,1.35,1,310 +26861563,Upper West Side Apartment,199315366,Christina,Manhattan,Upper West Side,40.78803,-73.97432,Private room,90,3,1,2018-07-29,0.09,1,0 +26861684,NYC - Brooklyn Haven,46182994,Dolphy,Brooklyn,Flatlands,40.63183,-73.92229,Entire home/apt,110,2,30,2019-05-26,2.51,1,327 +26863858,Private room/15 min central park,18523979,Marko,Queens,Sunnyside,40.74521,-73.91353,Private room,80,1,4,2019-06-30,1.74,1,330 +26864429,Big Bright Beautiful Home in PRIME WIlliamsburg,26030112,Tatiana,Brooklyn,Williamsburg,40.71714,-73.95783,Private room,190,2,3,2019-01-02,0.36,1,0 +26865113,Cozy 2BR apt in center of Brooklyn (Female Please),7342104,Audrey,Brooklyn,Gowanus,40.68071,-73.98201,Private room,66,3,3,2018-11-13,0.33,1,0 +26865972,Pretty Light Filled Apartment to Share,3395693,Cecille,Queens,Long Island City,40.75596,-73.92144,Private room,60,15,3,2019-03-03,0.29,1,148 +26865983,Simplistic & Modern Apartment In Brooklyn,55997024,Donavan,Brooklyn,Crown Heights,40.67228,-73.91841,Entire home/apt,125,2,24,2019-06-09,2.17,1,55 +26866322,Modern + Cozy in Astoria NYC | 3 blocks to Subway,27951037,Kirsten,Queens,Ditmars Steinway,40.77592,-73.90754,Entire home/apt,65,6,19,2019-06-15,1.88,2,7 +26866483,Oasis III,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95145,Private room,55,30,22,2019-06-05,2.03,3,365 +26866997,Sweet little home,201893473,Danielisa,Bronx,Concourse,40.83224,-73.92068,Private room,38,5,6,2018-12-08,0.52,1,188 +26867485,New 2 Bedroom Totally Private Brooklyn Apartment,201884425,Hoover,Brooklyn,Cypress Hills,40.68237,-73.87291,Entire home/apt,80,5,22,2019-06-10,1.93,3,60 +26867888,Brooklyn private luxury room with private bathroom,11460365,Alan,Brooklyn,Bedford-Stuyvesant,40.67844,-73.93831,Private room,200,1,14,2019-02-17,1.24,1,22 +26867963,Midtown Apartment- very convenient location!,3710483,Jennifer,Manhattan,Hell's Kitchen,40.75566,-73.99917,Entire home/apt,200,2,3,2018-08-31,0.26,1,0 +26868019,Private Furnishured Room for Rent. (W/M),202070950,Nancy,Manhattan,Washington Heights,40.85333,-73.9305,Private room,100,7,0,,,1,365 +26868493,Brooklyn Apartment,202074215,Michael,Brooklyn,Bedford-Stuyvesant,40.68563,-73.91988,Entire home/apt,89,2,52,2019-07-05,4.38,2,18 +26869417,UES apt right above the Q PRIVATE BATHROOM,143330625,Jessie,Manhattan,Upper East Side,40.76943,-73.95971,Private room,82,2,8,2018-09-02,0.68,1,0 +26869767,3 BEDS LARGE ROOM GREAT FOR GROUPS - PRIME WILLYB,156484505,Conrad,Brooklyn,Williamsburg,40.71216,-73.95683,Private room,115,2,50,2019-06-29,4.21,2,322 +26869803,1 BED and FUTON -SUNNY ROOM - PRIME WILLIAMSBURG,156484505,Conrad,Brooklyn,Williamsburg,40.7116,-73.95606,Private room,100,2,43,2019-06-26,3.65,2,363 +26870969,Green and spacious 1 Bedroom Apt with balcony!,41769353,Grace,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94581,Private room,45,5,0,,,1,0 +26871154,Green Brooklyn -- house near the park w/ parking,202096567,Laurel,Brooklyn,Windsor Terrace,40.65667,-73.97908,Entire home/apt,390,5,0,,,1,15 +26871208,First floor apartment with a backyard in Brooklyn.,481630,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68706,-73.94368,Entire home/apt,100,9,5,2019-06-07,0.52,2,55 +26871230,West Chelsea High Line Treasure,2304932,David,Manhattan,Chelsea,40.74443,-74.0029,Entire home/apt,300,5,10,2019-04-29,0.87,1,4 +26871256,Just Relax and Enjoy :-),142590597,Joica,Brooklyn,East New York,40.6743,-73.87368,Private room,119,1,6,2019-06-30,2.22,6,180 +26871281,West Village Apartment,440022,Petter,Manhattan,West Village,40.73001,-74.00562,Entire home/apt,150,60,1,2019-02-07,0.20,1,0 +26871942,Bear(A)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74674,-73.82298,Private room,55,1,61,2019-07-07,5.20,4,88 +26872443,Quintessential New York Charm,202110598,Kierra,Manhattan,Upper West Side,40.79969,-73.9635,Entire home/apt,150,3,4,2018-11-05,0.37,1,0 +26872960,Times Square! LUXURY 1 Bedroom with GORGEOUS view!,37221425,Rohan,Manhattan,Theater District,40.75942,-73.98664,Private room,149,4,22,2019-05-12,2.03,1,65 +26874133,Spacious Studio Apt | Walk + Transit score 100,2280048,Edgar,Brooklyn,East Flatbush,40.66097,-73.9319,Entire home/apt,79,4,15,2019-06-23,1.27,1,174 +26874462,Peace and Happiness In Park Slope,1339545,Nina & Keith,Brooklyn,Park Slope,40.6703,-73.98003,Entire home/apt,150,3,28,2019-06-21,2.58,2,57 +26874714,Private Room: Rockaway Beach House-Near JFK&Subway,202131439,Paul,Queens,Rockaway Beach,40.58937,-73.81327,Private room,49,1,15,2019-06-02,1.33,1,345 +26874715,Large/Cozy Two Bedroom In Bedford Stuyvesant,75657939,Reyna,Brooklyn,Bedford-Stuyvesant,40.69315,-73.93912,Entire home/apt,175,1,53,2019-06-21,4.91,1,84 +26874727,"Large, spacious bedroom in the heart of Bushwick!",129596284,Sonya,Brooklyn,Bushwick,40.70105,-73.92183,Private room,40,4,5,2018-12-29,0.42,1,0 +26876289,2BR 3BD 1.5BA / Rooftop & Balcony / Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70676,-73.91107,Entire home/apt,280,2,40,2019-06-24,3.53,2,104 +26877222,Clean cozy room in Manhattan. 5 min to 135 St,137358866,Kazuya,Manhattan,Harlem,40.81657,-73.94262,Private room,33,30,3,2019-04-30,0.46,103,189 +26877259,*Times Square Luxury Apartment Private Room*,172864847,Jae,Manhattan,Theater District,40.75964,-73.98731,Private room,100,1,137,2019-07-07,12.05,1,36 +26877276,Quinn's bedroom,64540550,Quinn,Brooklyn,Bushwick,40.68974,-73.91449,Private room,31,4,10,2019-03-18,0.85,1,0 +26879788,Cozy overnight bed by Central Park,197190247,Jacob,Manhattan,Hell's Kitchen,40.76587,-73.98878,Shared room,75,1,33,2019-06-08,2.79,7,225 +26884320,Charming Room with 2 Beds+ Laundry in Williamsburg,141204556,Aaron & Ivy,Brooklyn,Williamsburg,40.7109,-73.96478,Private room,109,30,43,2019-06-06,3.72,2,365 +26884369,Dazzling Room with 2 Beds+ Laundry in Williamsburg,141204556,Aaron & Ivy,Brooklyn,Williamsburg,40.71013,-73.9637,Private room,109,30,37,2019-06-21,3.14,2,361 +26884438,Awesome Private Room+ Laundry- Prime Williamsburg,141204841,Ivy And Andrew,Brooklyn,Williamsburg,40.70978,-73.96424,Private room,95,30,33,2019-06-17,3.15,2,365 +26884455,Beautiful Room with Laundry in Prime Williamsburg,141204841,Ivy And Andrew,Brooklyn,Williamsburg,40.70915,-73.96479,Private room,95,30,35,2019-06-23,2.97,2,365 +26886071,Overlooking Tompkins Sq Park in the East Village,5073548,David,Manhattan,East Village,40.72696,-73.9811,Entire home/apt,300,3,6,2019-03-10,0.94,1,0 +26887521,SUNNY HARLEM HAVEN ON A BEAUTIFUL HARLEM BLOCK,8534610,E Vera,Manhattan,Harlem,40.81189,-73.94137,Private room,90,2,23,2019-06-16,2.09,1,104 +26889078,Staten Island Garden Apartment Near Ferry,199535935,Tim,Staten Island,St. George,40.64641,-74.08502,Entire home/apt,130,2,52,2019-06-24,4.60,1,96 +26889817,Luxurious Brooklyn Studio,202268676,Nazli,Brooklyn,Fort Greene,40.6873,-73.97906,Entire home/apt,125,7,3,2019-01-02,0.28,1,33 +26890649,Bedstuy Puppet Cave,125059640,Ben,Brooklyn,Bedford-Stuyvesant,40.69516,-73.93462,Entire home/apt,125,3,2,2018-07-29,0.17,1,0 +26891909,"Minimal style bedroom, close to Manhattan",199887038,Theodoros,Queens,Ditmars Steinway,40.76961,-73.90805,Private room,60,2,0,,,2,0 +26892245,Cozy Brooklyn Room,3552356,Griffin,Brooklyn,Bushwick,40.69995,-73.91802,Private room,35,5,2,2018-08-16,0.18,1,0 +26893530,Quiet King Size Room(5mins)Yankee Stadium,187008191,Isabel,Bronx,Concourse,40.83285,-73.92158,Private room,45,1,43,2019-06-22,3.66,1,205 +26893534,TRUE LOFT LIVING,202303852,Idris,Brooklyn,Williamsburg,40.70528,-73.934,Entire home/apt,250,3,7,2019-03-22,0.71,1,17 +26893966,Beautiful Renovated West Village Gem with Hästens,4219564,Mina,Manhattan,West Village,40.73162,-74.00228,Entire home/apt,300,2,22,2019-05-28,3.11,1,168 +26894016,Spacious & Comfy in Hip Area,5778935,Drew,Brooklyn,Clinton Hill,40.69239,-73.96538,Entire home/apt,135,2,4,2019-07-01,0.36,1,0 +26894122,Spacious duplex apt in Brooklyn,202307843,Julie,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95096,Entire home/apt,108,2,19,2019-06-25,1.67,1,0 +26894548,Cozy private room near Times Square 53E1,190921808,John,Manhattan,Hell's Kitchen,40.75518,-73.99706,Private room,45,30,2,2019-05-21,0.32,47,347 +26894687,"Cozy, spacious private room in Brooklyn apartment",19899115,Libby,Brooklyn,Crown Heights,40.6776,-73.95094,Private room,50,2,12,2018-11-13,1.01,2,0 +26895166,2018Serenity,202318295,2018Serenity,Manhattan,East Harlem,40.79424,-73.9429,Private room,50,5,4,2019-06-22,0.39,1,32 +26895277,Spacious Apt. + Waterfront Terrace in Manhattan,202319331,Rodrigo,Manhattan,Lower East Side,40.71194,-73.97792,Private room,80,4,6,2019-05-20,1.70,1,0 +26895469,Conveniently located room near Times Sq. 43D1,190921808,John,Manhattan,Hell's Kitchen,40.75496,-73.99715,Private room,45,7,4,2019-05-11,0.49,47,336 +26895683,Apartment in time square New York,202324391,Charlie,Manhattan,Hell's Kitchen,40.76339,-73.98866,Private room,150,1,30,2019-06-01,2.59,1,66 +26896131,"Prospect Park, Bk Museum, Botanic Gardens and You",2685092,Mary Angelica,Brooklyn,Prospect Heights,40.67262,-73.96286,Entire home/apt,115,5,2,2019-04-28,0.19,1,19 +26896460,Sun-kissed & Spacious Queens Room w/ Full Kitchen,20909506,Camile,Queens,Astoria,40.7648,-73.91174,Private room,40,3,7,2018-11-09,0.61,2,0 +26896906,"Large, exclusive room with suite-like atmosphere",185914925,Mala,Queens,Hollis,40.71446,-73.75968,Private room,75,2,21,2019-05-15,1.77,2,65 +26897453,Private studio in best location.,135093573,Georgina,Queens,Long Island City,40.75648,-73.93389,Entire home/apt,80,3,48,2019-06-23,4.15,1,209 +26897811,Sunny Brooklyn musician loft .,126967409,Claudia,Brooklyn,Bedford-Stuyvesant,40.6903,-73.96008,Entire home/apt,82,2,0,,,1,13 +26897821,River front Brand New upper East side apt,111816745,Dami,Manhattan,Upper East Side,40.77076,-73.94757,Entire home/apt,125,2,8,2019-04-23,1.02,1,1 +26898028,"ONE Room →→→20mins to TimesSQ ☆彡 COZY, COZY, COZY",19303369,Hiroki,Queens,Woodside,40.74296,-73.90328,Private room,39,30,3,2019-07-01,0.29,37,32 +26900640,Cozy & Bright Room w/ Big Window!!,200239515,Shogo,Queens,Woodside,40.74102,-73.89358,Private room,40,30,3,2019-02-25,0.29,15,0 +26904628,"My Style法拉盛中心 靠近地铁站 +1 Queen bed room",109507109,Haifeng,Queens,Flushing,40.76005,-73.83447,Private room,60,2,21,2019-06-16,2.04,1,51 +26909099,Rosedale Private residential ( SMOKE FREE),202449469,Akinwole,Queens,Rosedale,40.65197,-73.7461,Entire home/apt,100,1,33,2019-07-08,2.86,1,171 +26911755,Eclectic sun-filled LES one bedroom,16253164,K,Manhattan,Lower East Side,40.71536,-73.98951,Entire home/apt,110,5,3,2019-03-16,0.28,1,1 +26914676,Bright Brooklyn (Boerum Hill) Condo w Roof Deck,62792657,Adam,Brooklyn,Boerum Hill,40.68647,-73.98197,Entire home/apt,350,2,6,2018-11-25,0.53,1,0 +26916664,NYC X/L Bedroom/Private Bathroom. Long term,50116095,Bonnie,Manhattan,Harlem,40.83136,-73.94299,Private room,65,4,4,2019-01-08,0.38,1,188 +26916746,Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.63886,-74.00391,Private room,40,1,26,2019-03-20,2.29,8,0 +26916818,Cozy bedroom with a private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71027,-73.9468,Private room,74,3,29,2019-06-14,2.60,2,44 +26918753,Sala star sofacama amplio cerca al Aeropuerto.,202350344,Diana Carolina,Queens,East Elmhurst,40.76109,-73.88898,Private room,40,2,32,2019-07-06,2.86,2,236 +26919911,"Sunny, Artistic Getaway Near Prospect Park",5848252,Monica,Brooklyn,Flatbush,40.65323,-73.96372,Entire home/apt,70,2,11,2019-02-24,0.93,1,0 +26920545,NYC Private Room w/Backyard,80533986,Amanda,Manhattan,East Harlem,40.7904,-73.94785,Private room,113,2,13,2019-07-05,5.13,1,1 +26920890,A great room in Manhattan !!!,37370465,Tolga,Manhattan,Lower East Side,40.71857,-73.98973,Private room,74,3,15,2019-04-27,1.34,1,280 +26923831,▲Cozy Apartment at Union Square▲,202587266,Matt,Manhattan,Gramercy,40.73502,-73.986,Entire home/apt,125,2,34,2019-06-02,3.11,1,12 +26923846,Spacious rooms for one or two persons,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93862,Private room,75,2,2,2019-04-22,0.19,4,337 +26924532,"Private Guest Suite near NYC Ferry, Rear",71725161,Kalina,Brooklyn,Sunset Park,40.64149,-74.02325,Entire home/apt,99,4,20,2019-06-29,2.49,2,146 +26924800,Beautiful Clean Room For One,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69335,-73.9369,Private room,79,2,2,2019-06-20,0.19,4,338 +26924878,Charming 1BD in the Lower East Side,71978141,Jennifer,Manhattan,Lower East Side,40.71958,-73.98284,Entire home/apt,190,3,8,2019-06-03,0.79,1,79 +26924882,Upper West Side Duplex,202384697,Miriam,Manhattan,Upper West Side,40.78981,-73.9697,Entire home/apt,275,14,0,,,1,15 +26925879,Sunny private room in UWS by Columbia UNI***,200261161,Davis,Manhattan,Upper West Side,40.79682,-73.96282,Private room,67,1,26,2019-06-17,6.19,3,37 +26925980,Cozy Williamsburg room,38593087,Russell,Brooklyn,Williamsburg,40.70685,-73.96663,Private room,82,1,25,2019-07-05,2.17,2,64 +26926704,Beautiful Bedroom & Bathroom in Brooklyn Oasis,23542079,Teres,Brooklyn,East Flatbush,40.6442,-73.93266,Private room,45,3,35,2019-06-30,3.01,2,30 +26929793,Modern and Tranquil Apartment on Riverside Drive!,202636642,Frank,Manhattan,Upper West Side,40.79485,-73.9755,Entire home/apt,146,3,28,2019-06-29,3.31,1,158 +26933416,Comfy shared room near Subway close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.721,-73.94143,Shared room,41,30,0,,,10,365 +26934153,Comfortable shared room near Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72133,-73.93995,Shared room,38,30,1,2018-09-30,0.11,10,365 +26934498,Charming room in Chelsea,12750945,Luis,Manhattan,Chelsea,40.73968,-73.99746,Private room,150,2,41,2019-06-19,3.54,4,316 +26935628,Warm bed room,198933477,Jonathan,Queens,St. Albans,40.68988,-73.76308,Private room,208,1,0,,,1,364 +26937970,3 BEDS -ROOM IN CONVERTED FACTORY LOFT -NEAR METRO,35606248,Blake And Madia,Brooklyn,Bushwick,40.70458,-73.92753,Private room,95,2,23,2019-06-09,2.08,5,361 +26938086,2 BEDS -YOUR ROOM IN CONVERTED FACTORY -NEAR METRO,35606248,Blake And Madia,Brooklyn,Bushwick,40.70274,-73.9263,Private room,82,2,24,2019-05-23,2.14,5,365 +26939323,SUNNY ROOM 1 - SHORT RIDE TO MANHATTAN!,141362117,Julian And Michael,Brooklyn,Williamsburg,40.7076,-73.93426,Private room,67,2,32,2019-06-23,2.80,2,348 +26939557,Bright and Cozy Room 2 -Short Ride to Manhattan :),141362117,Julian And Michael,Brooklyn,Williamsburg,40.70521,-73.93554,Private room,67,2,33,2019-06-11,2.88,2,359 +26941551,Charming Duplex with spacious & private back yard,1902114,J.D.,Manhattan,Midtown,40.75707,-73.96417,Entire home/apt,250,2,12,2019-07-06,1.01,1,14 +26942149,Beautiful 1 bedroom in prime Chelsea,104286680,Dima,Manhattan,Chelsea,40.75003,-73.99589,Entire home/apt,250,14,1,2018-08-11,0.09,1,88 +26943028,PRIVATE ROOM WITH EVERYTHING INCLUDED!!,201757076,Soledad,Queens,Briarwood,40.71251,-73.81674,Private room,70,1,22,2019-06-26,1.89,3,0 +26943823,THE HIDEAWAY,187153824,Mike & Glenna,Brooklyn,East New York,40.663,-73.86723,Entire home/apt,85,3,28,2019-05-31,2.41,1,19 +26945036,Jungle Oasis In the East Village,8266306,Michelle,Manhattan,East Village,40.72847,-73.98807,Entire home/apt,150,2,14,2019-06-22,1.36,1,0 +26945421,STUDIO ON WEST 56TH COLUMBUS CIRCLE~ DOORMAN,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76717,-73.98614,Entire home/apt,185,30,0,,,65,342 +26946148,Relax in Harlem,101388075,Imogene,Manhattan,Harlem,40.82237,-73.94001,Entire home/apt,104,1,18,2019-06-19,1.53,1,34 +26946208,Cozy room in the heart of Little Italy,21146326,Olga,Manhattan,Chinatown,40.71794,-73.99686,Private room,75,3,4,2018-11-04,0.40,2,0 +26946697,New york Multi-unit building in Williamsburg BR,32165430,Marcia,Brooklyn,Williamsburg,40.7045,-73.937,Private room,60,3,1,2018-08-08,0.09,1,0 +26946895,Manhattan - Columbus Circle Apt,202741872,Carlos,Manhattan,Hell's Kitchen,40.76782,-73.98351,Entire home/apt,250,1,34,2019-06-17,3.01,1,20 +26946903,MIDTOWN EAST 3 BED 2 BATH APT WITH PRIVATE BALCONY,200380610,Pranjal,Manhattan,Murray Hill,40.74389,-73.97149,Entire home/apt,340,30,0,,,65,364 +26947049,Recharge Like a Local 20 Min from Downtown NYC!,21150974,Allison,Brooklyn,Sunset Park,40.66361,-73.99246,Private room,50,2,14,2019-01-01,1.22,1,0 +26947476,Sunlit Duplex LOFT 1.5BR WATERFRNT/ POOL/ GYM (5O),202757964,Mayan,Brooklyn,Williamsburg,40.71771,-73.96431,Entire home/apt,185,30,2,2019-06-16,0.32,6,304 +26947508,CLASSIC 1BR IN WEST 15TH STREET-CHELSEA,200380610,Pranjal,Manhattan,Chelsea,40.74037,-74.00015,Entire home/apt,210,30,0,,,65,364 +26947531,Bachelor Apt,105485520,Mark,Queens,Fresh Meadows,40.73751,-73.7839,Entire home/apt,285,2,9,2018-10-28,0.78,1,0 +26947587,Private room & own bath w/ view near Central Park!,34263302,Chris,Manhattan,Harlem,40.80681,-73.95119,Private room,125,1,55,2019-07-01,4.81,1,79 +26947761,Sunny private room in the heart of NYC 53E2,190921808,John,Manhattan,Hell's Kitchen,40.75503,-73.99724,Private room,53,30,0,,,47,316 +26947883,Brooklyn Bedroom (Flatbush-Ditmas),91578701,Tatiana,Brooklyn,Flatbush,40.64127,-73.95525,Private room,45,1,9,2019-01-08,1.13,2,0 +26948057,Central Park West Luxury One bedroom with Balcony,17477908,Mat,Manhattan,Upper West Side,40.79514,-73.96687,Entire home/apt,250,30,1,2018-09-02,0.10,10,205 +26948562,"Modern, spacious NYC apartment",202766548,Adam,Manhattan,Chelsea,40.74829,-74.00462,Entire home/apt,425,2,5,2019-06-23,0.44,1,13 +26948645,Airy Ridgewood room with a view!,202766239,Shanley,Queens,Ridgewood,40.70225,-73.90177,Private room,50,1,5,2018-08-17,0.43,1,0 +26948855,Beautiful Spacious Room,35487412,Rashidi,Queens,Jackson Heights,40.7523,-73.87204,Private room,46,3,12,2019-02-01,1.02,1,5 +26949336,Luxury loft 2bed 2bath Mulberry st,176971425,Laura,Manhattan,Little Italy,40.71765,-73.99798,Private room,140,31,0,,,1,83 +26951069,Manhattan Private Room @2BR apt-East Village Heart,202788450,Isai Jesse,Manhattan,East Village,40.7246,-73.97687,Private room,58,4,20,2019-06-22,1.69,1,10 +26953879,Serene bedroom in the heart of Fort Green,2014051,Nick,Brooklyn,Fort Greene,40.6881,-73.97642,Private room,86,2,7,2019-04-16,1.02,1,75 +26954900,The Terraces,3935522,Greg,Brooklyn,South Slope,40.66636,-73.99052,Entire home/apt,111,2,6,2018-10-14,0.58,1,12 +26957225,Beautiful Studio Apt. Yoga vibes & love,11453805,Helen,Manhattan,Lower East Side,40.72078,-73.98762,Entire home/apt,207,2,3,2018-10-29,0.26,1,0 +26957310,Cozy Bright Room 1 Block from the L-Train,85350993,Giulia,Brooklyn,Williamsburg,40.70626,-73.92921,Private room,47,13,3,2019-05-30,0.26,1,88 +26957426,Beautiful South Bronx Colonial Townhouse,6738579,Natalie,Bronx,Morrisania,40.83201,-73.89996,Entire home/apt,140,2,3,2019-04-22,0.27,1,27 +26958190,Brooklyn [Williamsburg] Apartment,202849060,Masashi,Brooklyn,Williamsburg,40.71258,-73.95764,Private room,90,21,6,2018-08-15,0.51,1,38 +26958633,Cozy room,202833337,Vancila,Queens,Cambria Heights,40.69698,-73.72962,Private room,40,1,15,2019-07-06,1.34,1,361 +26960589,Brooklyn Sanctuary with Private Luxury Spa,202873307,Dov,Brooklyn,Sunset Park,40.64992,-74.01169,Entire home/apt,750,1,12,2019-05-06,1.20,1,364 +26960958,Big Room & Perfect Brooklyn Location! 15 min NYC,29101658,Manuel,Brooklyn,Boerum Hill,40.68684,-73.98167,Private room,80,2,6,2019-03-06,0.53,1,0 +26964456,New aparment biutiful area,104311294,Edwin,Queens,Corona,40.73933,-73.84851,Entire home/apt,100,2,2,2018-08-21,0.18,1,0 +26978092,Private room for all Midtown attractions,202979735,Troy,Manhattan,Hell's Kitchen,40.76092,-73.9922,Private room,180,2,5,2019-04-21,0.48,1,16 +26978101,"Shared Place by Times Square, Theaters District.",197190247,Jacob,Manhattan,Hell's Kitchen,40.76405,-73.98695,Shared room,75,1,50,2019-06-11,4.21,7,225 +26978310,Sunny Brooklyn House: Steps from the train!,12960612,Lilia,Brooklyn,Bushwick,40.6984,-73.92767,Entire home/apt,275,2,0,,,1,0 +26978574,Private room with amazing Manhattan view rooftop,202979435,Outpost,Brooklyn,Gowanus,40.68293,-73.98979,Private room,95,30,1,2018-07-28,0.09,2,311 +26978889,"People of the Arts Welcome! +420 friendly",202986805,Miss,Brooklyn,Crown Heights,40.67175,-73.92117,Private room,46,3,12,2019-05-30,1.01,1,19 +26979053,Newly renovated House next to Downtown,202979435,Outpost,Brooklyn,Gowanus,40.68188,-73.98978,Private room,96,30,1,2018-08-29,0.10,2,333 +26980415,"COZY BEDROOM IN NEW YORK, W/AIRPORT PICK UP",184669674,Donnihe Jhans,Queens,Middle Village,40.71128,-73.89338,Private room,44,3,17,2019-07-01,1.73,1,126 +26980448,City Saver in Brooklyn,8654456,James,Brooklyn,Sunset Park,40.64985,-74.00835,Entire home/apt,100,2,37,2019-07-07,3.22,1,0 +26981567,Queens New York 2 bedroom apartment,22780462,Mark,Queens,Kew Gardens Hills,40.72048,-73.81458,Entire home/apt,139,4,6,2019-05-21,0.58,2,282 +26982403,Enchanting 1BR near Times Sq w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76196,-73.98536,Entire home/apt,280,30,2,2019-05-16,0.36,232,218 +26983183,Steps from Waterfront - 1 Bedroom Apartment,12512629,Kreshnik,Queens,Long Island City,40.74427,-73.95477,Entire home/apt,125,5,1,2018-08-20,0.09,1,0 +26983743,PRIVATE ROOM- 2 BEDS BY METRO -EASY ACCESS TO CITY,141362503,Michael,Brooklyn,Williamsburg,40.70596,-73.93847,Private room,80,2,31,2019-06-23,2.71,2,365 +26984028,Sonder | 21 Chelsea | Bright 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74158,-73.99585,Entire home/apt,245,29,0,,,96,342 +26984054,QUEEN BED - SUNNY DUPLEX BY TRAIN - 15 MIN TO CITY,141362503,Michael,Brooklyn,Williamsburg,40.70719,-73.94021,Private room,70,2,37,2019-06-15,3.14,2,362 +26984883,HIGH END QUEEN BED -EXPOSED BRICK IN WILLIAMSBURG,121771546,Cherri,Brooklyn,Williamsburg,40.71185,-73.96292,Private room,95,2,41,2019-06-09,3.50,2,365 +26985149,• Spread Love it’s the BK Way • Eco/Veg/Bio/Bckyrd,1836803,Jess,Brooklyn,Bedford-Stuyvesant,40.68872,-73.93183,Entire home/apt,130,3,1,2018-08-27,0.09,1,17 +26985201,2 BEDS - INCREDIBLE LOCATION - 1 STOP TO MANHATTAN,121771546,Cherri,Brooklyn,Williamsburg,40.71153,-73.96453,Private room,110,2,49,2019-06-24,4.14,2,335 +26986526,☆Nice Private Room Near Park & Train in MANHATTAN!,20134899,Michael,Manhattan,Harlem,40.82607,-73.95124,Private room,54,23,8,2018-12-30,0.70,2,35 +26987448,Colorful and Sunlit Bushwick!,1110208,Kat,Brooklyn,Bushwick,40.70506,-73.91731,Entire home/apt,100,2,9,2019-06-16,0.77,1,0 +26987854,Bunk bed,24000784,Robert,Brooklyn,Sunset Park,40.64456,-74.01135,Private room,45,1,6,2019-06-24,0.61,4,32 +26988550,King Bed on Queens/Brooklyn Border,4231312,Robert,Queens,Ridgewood,40.70458,-73.90269,Entire home/apt,99,3,8,2019-01-03,0.69,1,16 +26988903,Sunny+ Modern Brooklyn apartment,1459377,Stefania,Brooklyn,Williamsburg,40.71998,-73.94216,Entire home/apt,145,3,3,2018-09-21,0.26,1,0 +26989176,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94919,Private room,60,30,3,2019-03-01,0.45,8,221 +26989662,Ridgewood Penthouse,14463049,Roy,Queens,Ridgewood,40.69997,-73.90721,Entire home/apt,275,2,0,,,1,0 +26989977,Beautiful Clinton Hill 1-BR in luxury building,24822059,Jessica,Brooklyn,Clinton Hill,40.68214,-73.96536,Entire home/apt,119,6,2,2018-08-29,0.18,1,0 +26992139,Marsha INN,155668897,Nicola,Queens,Jamaica,40.66726,-73.78666,Private room,70,5,43,2019-06-25,3.61,2,365 +26993244,Spacious 2bd apt with Manhattan view and sunset,132883657,Kathryn,Brooklyn,Gowanus,40.67076,-73.98903,Entire home/apt,350,2,9,2019-06-24,0.81,1,0 +26993437,BK Homestead - Private Rm in Large Apt with Deck!,56740664,Laura,Brooklyn,Williamsburg,40.71784,-73.95611,Private room,225,4,1,2018-12-31,0.16,1,5 +26993454,ROOF DECK+ LAUNDRY- BRICK WALLS - CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.71294,-73.95866,Private room,95,2,25,2019-06-23,2.19,3,342 +26993585,2 BEDS +ROOF DECK+ LAUNDRY- CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.71269,-73.95815,Private room,95,2,15,2019-02-10,1.28,3,335 +26994076,Brooklyn Magic Bunk Share,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69052,-73.94149,Shared room,30,1,32,2019-06-21,2.74,17,83 +26994354,Nice bunk spot in heart if Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69206,-73.94072,Shared room,30,1,45,2019-06-17,3.99,17,84 +26994401,Queens Two BR house 20Min to Manhattan,69439684,Michelle & Lily,Queens,Elmhurst,40.7396,-73.88119,Entire home/apt,165,1,38,2019-06-23,3.31,2,122 +26995950,Queen Bed 2 guests UWS Manhattan,216227,Victor,Manhattan,Harlem,40.82226,-73.95569,Private room,62,1,68,2019-06-18,5.86,3,310 +26996347,Cozy 1BR/1BA minutes from Manhattan.,203123198,Dave,Brooklyn,East Flatbush,40.66091,-73.93244,Entire home/apt,149,2,24,2019-04-07,2.11,1,145 +26996408,Multicultural House,203123161,Luis,Bronx,Concourse,40.8212,-73.92859,Entire home/apt,80,3,40,2019-06-23,3.79,2,280 +26996466,Lumber lodge,167459000,Adrian,Brooklyn,Bushwick,40.69482,-73.91096,Private room,60,1,0,,,1,5 +26996673,Peaceful Home with Terrace Near Prospect Park,2163625,Shannon,Brooklyn,Windsor Terrace,40.653,-73.97717,Entire home/apt,120,7,0,,,2,0 +27000837,Beautiful cozy space for one,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93735,Shared room,79,2,2,2019-05-05,0.19,4,90 +27001229,Cozy quite room for 2,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69359,-73.93911,Private room,80,2,3,2018-10-02,0.26,4,82 +27002075,Central Park APT Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80127,-73.96166,Private room,72,2,14,2018-10-04,1.19,4,0 +27002590,Cozy shared apt in Midtown Manhattan,197190247,Jacob,Manhattan,Hell's Kitchen,40.76456,-73.98818,Shared room,75,1,38,2019-06-23,3.26,7,225 +27002733,"Beautiful, cozy overnight place by Times Square",197190247,Jacob,Manhattan,Hell's Kitchen,40.76462,-73.9886,Shared room,75,1,29,2019-06-19,2.47,7,225 +27002850,Overnight bed by Times Square,197190247,Jacob,Manhattan,Hell's Kitchen,40.76441,-73.98692,Shared room,75,1,39,2019-06-14,3.32,7,221 +27010728,3rd Floor Art,183707967,Dionyssios,Manhattan,Washington Heights,40.85419,-73.93013,Entire home/apt,140,2,38,2019-05-28,3.30,4,176 +27010922,Brooklyn Apartment,2954574,Ricardo,Brooklyn,Bedford-Stuyvesant,40.69183,-73.94185,Private room,65,7,0,,,1,105 +27011736,NEW Perfect shared male room right on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.7111,-73.98689,Shared room,35,14,1,2018-12-26,0.15,28,322 +27012241,Cozy Nook in Washington Heights,203235966,Nicole,Manhattan,Inwood,40.86203,-73.93037,Entire home/apt,71,1,7,2019-01-01,0.67,1,1 +27014758,Private Room,34883773,Cansu,Brooklyn,Bedford-Stuyvesant,40.68944,-73.95089,Private room,50,7,1,2018-11-10,0.12,1,0 +27015441,Studio Penthouse,176950173,Aka,Manhattan,Midtown,40.76476,-73.97511,Entire home/apt,395,1,0,,,2,328 +27015464,Studio Penthouse,176950173,Aka,Manhattan,Midtown,40.76459,-73.97529,Entire home/apt,395,1,0,,,2,328 +27016704,1 Bedroom Loft Space in the Heart of Williamsburg,16779679,Chris,Brooklyn,Williamsburg,40.71171,-73.963,Entire home/apt,200,4,3,2018-10-05,0.31,1,0 +27016768,Luxury Studio 5 min to World Trade & BK Bridge,203268839,Drea,Manhattan,Civic Center,40.71389,-74.00484,Entire home/apt,199,3,35,2019-06-07,2.96,1,255 +27016931,Bronx Apartment-> BRAND NEW BUILDING-BUILT IN 2010,203266238,Steve,Bronx,Morris Park,40.85322,-73.85144,Private room,75,5,6,2019-03-31,0.55,5,29 +27017924,"Quaint, Cozy Studio in the Heart of Harlem",203277214,Phillip,Manhattan,Harlem,40.81033,-73.94286,Entire home/apt,150,3,30,2019-06-19,2.59,1,159 +27018851,Bright and Spacious Apartment,32866463,Bassam,Brooklyn,Bay Ridge,40.63328,-74.01978,Entire home/apt,145,1,41,2019-06-23,3.63,2,139 +27021428,Studio Penthouse,176950781,Aka Times Square,Manhattan,Theater District,40.75762,-73.98486,Entire home/apt,325,1,0,,,1,360 +27022896,"2bedroom in East Harlem, few blocks from 6 train",50169207,Richie,Manhattan,East Harlem,40.79371,-73.93995,Entire home/apt,100,2,3,2019-06-23,0.28,2,67 +27023152,Luxury Private Room - All Amenities,7853731,Hod,Brooklyn,Crown Heights,40.67458,-73.96079,Private room,55,14,0,,,2,61 +27023307,"Large, True 1BR - Heart of Nolita/Soho/LittleItaly",3399151,Charles,Manhattan,Nolita,40.72235,-73.99454,Entire home/apt,140,1,9,2019-05-17,0.97,1,11 +27024042,Art Chalk wall room,203307016,Israel,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91689,Private room,65,1,44,2019-06-20,3.73,2,75 +27024787,Stunning bedroom in trendy Williamsburg!,197354631,Nina,Brooklyn,Williamsburg,40.71407,-73.93936,Private room,67,30,2,2019-07-06,1.33,3,24 +27025577,Stunning Private Room with a *VIEW* Prime Location,197354631,Nina,Brooklyn,Williamsburg,40.71538,-73.94148,Private room,67,30,3,2019-06-03,0.43,3,23 +27026175,Brooklyn home away from home,203339760,Sofiya,Brooklyn,Sunset Park,40.66153,-73.99297,Private room,65,1,6,2019-06-23,0.65,1,0 +27026461,Room available from July 29th to October 31st,1524602,Martina,Brooklyn,Williamsburg,40.71653,-73.94131,Private room,48,90,0,,,1,358 +27027786,Prime East Village Manhattan w/ Beautiful Backyard,203357182,Thomas,Manhattan,East Village,40.72769,-73.98498,Private room,150,1,3,2019-06-22,2.09,1,27 +27028248,Upper west side studio for extended stay,4296422,Brendon,Manhattan,Upper West Side,40.78246,-73.97654,Entire home/apt,155,7,0,,,1,0 +27029402,Central Park Spacious Room,194843581,Hongzhi,Manhattan,Upper West Side,40.79908,-73.96215,Private room,87,1,14,2018-08-23,1.19,4,0 +27029421,Modern Living in Soho/Noho/West Village,19433714,Jeff,Manhattan,Greenwich Village,40.72674,-73.99673,Entire home/apt,200,3,6,2019-07-01,0.55,3,21 +27029508,Newly Renovated 3 Bedroom Apartment in Brooklyn,1892281,Ashley,Brooklyn,East Flatbush,40.65887,-73.9198,Entire home/apt,250,3,15,2019-07-01,1.30,1,266 +27029894,Central Park West Room,194843581,Hongzhi,Manhattan,Upper West Side,40.79936,-73.96243,Private room,79,1,49,2019-07-04,4.16,4,1 +27030076,Cosy bedroom in Williamsburg,54658419,Pierre,Brooklyn,Williamsburg,40.7117,-73.9608,Private room,100,3,8,2019-05-13,0.69,2,0 +27030230,Ground Floor Retreat near BKLYN Children’s Museum,1494238,Melissa,Brooklyn,Crown Heights,40.6726,-73.93992,Entire home/apt,135,3,24,2019-06-30,2.44,1,246 +27032162,"Private big one bedroom apt, Brooklyn,NY",203397896,Teola,Brooklyn,Brownsville,40.66648,-73.91375,Entire home/apt,98,2,40,2019-06-24,4.15,1,223 +27033995,Brooklyn House,186642041,Klara,Brooklyn,Bergen Beach,40.62697,-73.91357,Entire home/apt,121,30,0,,,1,88 +27034834,UWS Luxury 2 bdrm 2 bath Penthouse,17477908,Mat,Manhattan,Upper West Side,40.79473,-73.96744,Entire home/apt,350,30,2,2019-01-02,0.19,10,365 +27043685,5th Ave NYC 2/3 train minutes to Times Square,202993649,Ronald,Manhattan,East Harlem,40.81379,-73.93536,Private room,90,1,9,2018-11-04,0.81,1,0 +27045165,Washington Heights Paradise,138635224,Josh,Manhattan,Washington Heights,40.85671,-73.93011,Shared room,40,1,19,2019-04-05,1.82,2,341 +27046708,Designer $10M Luxury Home in Prime SoHo !,203504228,Luxury Lofts,Manhattan,SoHo,40.72367,-73.99868,Entire home/apt,1250,4,21,2019-06-23,2.26,1,125 +27047594,Beautiful 5100 SQ FT Industrial Brooklyn Loft,319077,Shell,Brooklyn,Clinton Hill,40.6855,-73.96112,Entire home/apt,999,1,2,2018-11-18,0.22,4,365 +27048562,"Sunny, Pre-War Crown Heights Apartment",21881605,Julie,Brooklyn,Crown Heights,40.67788,-73.94525,Private room,100,2,0,,,2,364 +27051433,THE LIGHT ROOM,6786361,Michael,Brooklyn,Bushwick,40.6964,-73.92675,Private room,65,3,13,2019-04-08,1.21,2,302 +27052657,Modern Renovated Sunny~Near Subways & Central Park,162171692,Jerry,Manhattan,Upper East Side,40.77997,-73.95214,Entire home/apt,99,7,25,2019-05-13,2.28,1,95 +27052686,"beautiful, spacious 1 bedroom apartment on UES",194409758,Christina,Manhattan,Upper East Side,40.77681,-73.95472,Entire home/apt,150,2,6,2019-03-24,0.54,1,0 +27053726,Windsor Terrace Garden Apartment,33526253,Nicki,Brooklyn,Windsor Terrace,40.65639,-73.98242,Entire home/apt,250,1,2,2018-08-18,0.18,1,0 +27053984,Spacious Bed Stuy Brooklyn 2 Bedroom Near Subway,33074595,Jessica,Brooklyn,Bedford-Stuyvesant,40.68528,-73.958,Entire home/apt,179,4,28,2019-07-04,2.99,1,130 +27054483,Cozy cottage-like apartment in Gowanus!,12275644,Janessa,Brooklyn,Gowanus,40.66774,-73.99292,Private room,70,2,0,,,1,0 +27054520,Spacious loft-style room in Upper East Side,40238727,Maria,Manhattan,Upper East Side,40.77977,-73.95757,Shared room,115,2,43,2019-06-30,3.72,1,72 +27054761,Modern apartment in Brooklyn's Stuyvesant heights,160343057,Helen,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91954,Entire home/apt,158,2,8,2018-10-21,0.69,1,0 +27055058,Spacious apt in heart of Downtown!,13412408,Brendan,Manhattan,Greenwich Village,40.72848,-74.00116,Private room,200,1,5,2019-04-22,0.47,1,0 +27055191,Charming bedroom for female guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66171,-73.94417,Private room,49,1,85,2019-05-29,8.64,2,0 +27055213,Cozy Brooklyn Studio in Williamsburg (Graham L),7825844,Courtney,Brooklyn,Williamsburg,40.71603,-73.9409,Entire home/apt,128,5,0,,,1,35 +27056608,Home away from Home,17322419,Ohran,Manhattan,Kips Bay,40.74079,-73.98303,Entire home/apt,750,31,0,,,1,365 +27057237,"Bright, Industrial-Chic 1 Bedroom w/Outdoor Patio",203585325,Judd,Brooklyn,Prospect-Lefferts Gardens,40.6597,-73.94863,Entire home/apt,200,2,4,2019-03-20,0.34,1,11 +27057790,EXC Location & Huge duplex Renovated Apt,19303369,Hiroki,Queens,Woodside,40.74353,-73.90443,Private room,35,29,0,,,37,30 +27059366,Your own 2 bedroom Home in NYC,97168718,Chloe,Manhattan,Upper West Side,40.78802,-73.97253,Entire home/apt,250,2,0,,,2,38 +27059505,Great Cozy Apartment.,10120673,Alexo & JC,Queens,Jackson Heights,40.75017,-73.89219,Entire home/apt,180,5,2,2019-04-30,0.21,2,363 +27060026,WBurg Priv Room. Great transport & local amenities,63260355,Spencer,Brooklyn,Williamsburg,40.70975,-73.95651,Private room,80,1,2,2018-08-27,0.19,1,0 +27061395,Affordable room in a super convenient location,4915341,Son,Manhattan,West Village,40.73666,-73.99851,Private room,59,7,5,2019-06-30,0.43,3,3 +27061623,"Stylish, Minimalist Family Pad in Carroll Gardens",203624751,Christian,Brooklyn,Carroll Gardens,40.67738,-73.99723,Entire home/apt,180,3,17,2019-06-01,1.45,1,106 +27061785,Private 1-bedroom in Gramercy/Union Square,48539240,Shreyasi,Manhattan,Gramercy,40.7348,-73.98312,Private room,189,1,1,2018-07-28,0.09,2,0 +27061895,Sunlit Studio In Modern Brownstone,12460642,Tile,Brooklyn,Bedford-Stuyvesant,40.68345,-73.93874,Entire home/apt,95,3,6,2019-07-06,0.54,1,0 +27062294,"Private 1-bedroom, shared bath in Gramery/Union Sq",48539240,Shreyasi,Manhattan,Gramercy,40.73411,-73.98289,Private room,199,1,1,2018-07-30,0.09,2,0 +27063173,East village private bedroom - walk anywhere!,7615002,Paloma,Manhattan,East Village,40.72527,-73.98338,Private room,100,1,33,2019-05-26,2.80,2,1 +27064423,New York Loft,1330116,Robert,Manhattan,Greenwich Village,40.73237,-73.99344,Private room,200,30,1,2018-08-11,0.09,1,90 +27065834,Sunny one bedroom in the Friends Building,83856521,Casey,Manhattan,West Village,40.73264,-74.0062,Entire home/apt,275,1,3,2018-08-31,0.26,1,0 +27067463,Private room for rent,2688409,Ia,Brooklyn,Borough Park,40.64436,-73.99866,Private room,55,3,0,,,1,363 +27078210,Awesome Room in my Cool APT,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68426,-73.9451,Private room,62,2,18,2019-06-02,1.80,3,356 +27078212,Funky Chinatown Bunkbed for 2!,28576665,Anna & Ben,Manhattan,Chinatown,40.71694,-73.99032,Private room,93,1,12,2019-06-23,1.08,2,11 +27079267,Bright room on Top Floor,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9442,Private room,62,2,29,2019-06-18,3.13,3,324 +27079532,NEW YORK CITY MANHATTAN STUDIO.,88900561,Camry,Manhattan,East Harlem,40.80203,-73.93885,Shared room,60,1,17,2019-03-01,1.48,1,0 +27079588,Cozy Private Room in Bedsty,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68374,-73.94368,Private room,55,2,20,2019-06-18,1.70,3,353 +27079735,"PRIVATE, Funky bunk style room in Williamsburg",15820210,Scott,Brooklyn,Williamsburg,40.70917,-73.93513,Private room,50,2,25,2019-06-26,2.26,2,21 +27083112,"Stay with PJ above a café, 1 block from the subway",203793342,Pj,Brooklyn,Bedford-Stuyvesant,40.69817,-73.93776,Private room,35,2,21,2019-07-01,1.88,1,1 +27083575,Happy home 2,158178970,Raquel,Staten Island,Randall Manor,40.62972,-74.12539,Private room,22,1,21,2019-07-04,1.77,3,261 +27083945,Private room in UWS near Central Park,43809903,Eddie,Manhattan,Upper West Side,40.80209,-73.96742,Private room,70,2,11,2018-12-31,1.07,4,4 +27084832,Entire 3 Bed Apartment in UWS near Central Park,43809903,Eddie,Manhattan,Upper West Side,40.80233,-73.96742,Entire home/apt,350,1,8,2019-06-23,0.88,4,135 +27085372,Chelsea Manhattan Studio Apartment,42400797,Kristi,Manhattan,Chelsea,40.74217,-73.99649,Entire home/apt,98,12,0,,,1,0 +27085643,"Entire apartment in Clinton Hill, minutes from NYC",349596,Marie-Claude,Brooklyn,Clinton Hill,40.68477,-73.96799,Entire home/apt,189,10,3,2019-05-20,0.32,1,14 +27086130,"Heaven in New York, Suite",185908506,Cynthia,Bronx,Edenwald,40.8859,-73.83517,Entire home/apt,95,3,5,2019-05-31,0.66,3,311 +27086249,Anna's place bed and breakfast,203572377,Anna,Staten Island,Prince's Bay,40.527,-74.20941,Private room,118,1,0,,,1,353 +27087566,Designer apartment with private rooftop and views,579017,Stefan & Marianne,Brooklyn,Greenpoint,40.73438,-73.95863,Entire home/apt,230,10,1,2019-04-01,0.30,1,0 +27088022,"Bright, Brand NEW, and Spacious, Gorgeous Home",115827173,David,Staten Island,Willowbrook,40.59886,-74.13217,Entire home/apt,249,4,9,2019-05-13,0.80,2,351 +27088182,Private room in spacious Harlem apt.,114574,Beau,Manhattan,Harlem,40.81523,-73.9463,Private room,75,2,6,2018-10-15,0.55,2,68 +27088254,Chez Jesse Vacation Spot - Manhattan Loft,3191371,Jesse,Manhattan,East Harlem,40.80714,-73.93747,Private room,80,1,29,2019-06-21,3.04,3,193 +27088944,Charming and Artistic West Village Studio,2102205,Conrad,Manhattan,West Village,40.73894,-74.00108,Entire home/apt,250,2,15,2018-12-22,1.33,1,0 +27089110,High Rise 2 Bed 2 Baths,75405696,Jimmy,Manhattan,Midtown,40.75316,-73.97241,Entire home/apt,450,6,2,2019-07-05,0.31,1,48 +27089135,High-end studio apartment in the heart of Harlem,57336940,Kamali,Manhattan,Harlem,40.81561,-73.93692,Entire home/apt,130,3,9,2019-05-27,0.78,1,0 +27089896,A Piece of NYC,27333268,Seneca,Manhattan,Upper West Side,40.77159,-73.98215,Entire home/apt,151,5,8,2019-01-06,0.73,1,27 +27090376,Cozy Master bedroom/private bath.,154037433,Roland,Queens,Jamaica,40.67022,-73.77296,Private room,90,1,12,2019-07-01,1.11,3,86 +27096053,hip cool House,203650630,Ardinia,Brooklyn,Coney Island,40.5721,-73.99712,Private room,290,1,1,2019-05-31,0.75,1,364 +27098774,Private Room,62533391,Yvonne,Brooklyn,Borough Park,40.63528,-74.00734,Private room,60,1,4,2019-06-01,0.84,7,152 +27100997,Cozy & Private Bedroom near Highline- CHELSEA,203346157,Bryan,Manhattan,Chelsea,40.74309,-73.99535,Private room,115,55,11,2019-05-20,1.31,1,204 +27103785,Beautiful 1 bd NYC Home with a View,2849280,Benjamin,Manhattan,Financial District,40.70617,-74.00948,Entire home/apt,200,7,5,2019-01-01,0.46,1,0 +27104485,Classic Chic West Village Getaway,18416371,Tori,Manhattan,West Village,40.73144,-74.00523,Entire home/apt,250,3,4,2019-01-03,0.39,1,0 +27104814,White ease board room,203307016,Israel,Brooklyn,Bedford-Stuyvesant,40.68031,-73.9186,Private room,44,2,31,2019-05-26,2.70,2,77 +27106745,New York City-Spacious Private Bedroom,203855380,Sheryl,Manhattan,East Village,40.72327,-73.98105,Private room,160,2,17,2019-06-30,1.48,1,0 +27106749,Zen Studio Loft in Beautiful West Chelsea,25720293,Lena,Manhattan,Chelsea,40.74676,-74.00308,Entire home/apt,329,4,17,2019-05-17,1.53,3,252 +27107124,Cozy Midtown Studio,204018218,Annika,Manhattan,Hell's Kitchen,40.76668,-73.99656,Entire home/apt,135,2,21,2019-06-10,2.78,1,5 +27107511,La Cantina + Room in Bed-Stuy,10260340,Anna,Brooklyn,Bedford-Stuyvesant,40.69088,-73.94499,Private room,70,1,4,2019-07-01,0.40,1,0 +27108423,East Village 2 Bedroom Cozy & Sunny Apartment,96347734,T.,Manhattan,East Village,40.72617,-73.97934,Entire home/apt,275,2,47,2019-06-24,4.05,1,275 +27110090,Cozy room in a quiet and clean apartment,75385686,Anna,Manhattan,Washington Heights,40.83668,-73.94476,Private room,37,13,2,2018-08-11,0.17,1,0 +27110361,Artist's home in Williamsburg,8731758,Jeanne,Brooklyn,Williamsburg,40.71326,-73.9644,Entire home/apt,175,5,5,2019-05-23,0.46,1,198 +27111405,King Bedroom - Ideal for Business Travelers,1462483,Danny,Manhattan,Midtown,40.74585,-73.98237,Private room,100,4,32,2019-06-26,2.87,2,174 +27111530,Simple & Spacious Brooklyn Room,68454791,Dominique,Brooklyn,Bedford-Stuyvesant,40.68863,-73.93902,Private room,55,2,6,2018-09-29,0.53,1,79 +27111588,"Artsy 1 bedroom UES apt, minutes from Central Park",2234119,Renee,Manhattan,Upper East Side,40.77093,-73.95485,Entire home/apt,86,3,12,2019-06-25,1.08,1,0 +27111881,Lovely Midtown Railroad Flat with Private Patio,6791240,Mary,Manhattan,Midtown,40.75546,-73.98086,Entire home/apt,200,4,12,2019-05-26,1.24,1,0 +27112282,"Cozy Bedroom in Elmhurst, NY +One block to subway",185679950,Ivon,Queens,Elmhurst,40.74103,-73.88253,Private room,59,2,8,2019-05-27,0.76,1,331 +27112835,5 ave apto,10476100,Cezar,Manhattan,Chelsea,40.73916,-73.99471,Entire home/apt,85,14,1,2018-12-20,0.15,1,16 +27113535,Spacious 1 Bedroom Apartment Near The Met,109196702,David,Manhattan,Upper East Side,40.77648,-73.95428,Entire home/apt,215,2,0,,,2,0 +27113697,PRIME Location:2min Subway 1min LIRR & NEWLY Built,19303369,Hiroki,Queens,Woodside,40.74446,-73.90466,Private room,45,30,5,2019-04-30,0.51,37,1 +27115251,NYC Spacious 3 BR / Private Entrance + Backyard,5179523,Max,Brooklyn,Williamsburg,40.71145,-73.95302,Entire home/apt,315,1,44,2019-05-29,3.84,3,113 +27125757,Artsy Brooklyn Gem-1 min to subway & Prospect Park,8052047,Kristiina,Brooklyn,Prospect-Lefferts Gardens,40.65421,-73.96155,Shared room,47,2,10,2018-11-04,0.93,1,0 +27125791,Brooklyn Penthouse with views and balcony,121772455,Thomas,Brooklyn,Downtown Brooklyn,40.69122,-73.9907,Entire home/apt,149,6,2,2018-10-07,0.18,1,11 +27126270,ENTIRE APARTMENT: BRIGHT & CHARMING- best location,7615002,Paloma,Manhattan,East Village,40.72338,-73.98346,Entire home/apt,100,2,14,2019-07-07,1.39,2,5 +27127045,Luxury basement apartment in newly built house,199214751,Ester,Queens,Fresh Meadows,40.7392,-73.79181,Entire home/apt,250,1,1,2018-08-17,0.09,1,363 +27127722,Suite 18 - Cozy room w/ Private Bathroom,99296570,Daisy,Brooklyn,Brighton Beach,40.57987,-73.95889,Private room,65,1,43,2019-05-27,3.82,5,283 +27128039,Room available in spacious apartment UWS,114375702,Claudia,Manhattan,Upper West Side,40.78493,-73.97683,Private room,50,4,4,2019-01-02,0.42,1,0 +27130196,Luxurious bright private room in stylish apt,1409262,Sarah,Brooklyn,Flatbush,40.64188,-73.95317,Private room,65,2,2,2018-09-28,0.19,6,287 +27131137,New York City Apartment -minimum 30 day rental,49786789,Jp,Manhattan,Inwood,40.86945,-73.92123,Entire home/apt,106,30,1,2019-03-09,0.25,1,8 +27131151,The Brooklyn Blue House 4,183127881,Giana,Brooklyn,Canarsie,40.64651,-73.90043,Private room,59,2,28,2019-06-03,3.19,4,178 +27131580,Spacious UWS 1BR + balcony by Central Park,114216175,Austin,Manhattan,Upper West Side,40.78986,-73.96688,Entire home/apt,195,2,21,2019-06-17,1.83,1,2 +27131607,Private Apartment in Classic Brownstone,204248415,Vince,Brooklyn,Bedford-Stuyvesant,40.68007,-73.92963,Entire home/apt,150,5,36,2019-07-04,3.62,1,145 +27131829,Heart of Bushwick 2 minutes to the L train,23074465,John,Brooklyn,Bushwick,40.70181,-73.91566,Private room,65,1,44,2019-07-01,5.34,3,27 +27132102,★ UNBEATABLE★ 4Beds/Manhattan/NYC/TIME SQUARE,198645701,Weihao,Manhattan,Hell's Kitchen,40.76176,-73.98981,Entire home/apt,700,4,19,2019-06-16,1.63,1,134 +27132152,The Mavis,166809666,Derrick,Manhattan,East Harlem,40.80603,-73.94114,Entire home/apt,275,2,27,2019-06-25,2.87,1,29 +27133123,"Downtown, 1 Bedroom with living room + sofa bed",42991956,Ashley,Manhattan,Lower East Side,40.71936,-73.99229,Entire home/apt,137,5,22,2019-05-27,2.19,1,40 +27133188,Serene large private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.6417,-73.95251,Private room,55,2,2,2018-10-05,0.19,6,287 +27133412,Private Room in Williamsburg Apartment,36444228,Selika,Brooklyn,Williamsburg,40.71671,-73.94094,Private room,70,6,1,2018-08-29,0.10,1,287 +27134625,Garden apartment in the heart of Fort Greene,31619241,Caroline,Brooklyn,Fort Greene,40.68925,-73.97108,Entire home/apt,165,2,16,2019-06-20,3.72,1,29 +27135927,1BEDROOM AT YANKEE STADUIM,158972140,Figo,Bronx,Concourse Village,40.82855,-73.91856,Private room,47,1,9,2019-03-03,0.82,2,332 +27136219,Cozy eclectic bedroom in the heart of Bushwick,19923039,Justin,Brooklyn,Bushwick,40.70144,-73.92094,Private room,35,5,3,2019-01-06,0.27,1,0 +27137095,Giordano Suite - 5 mins to LGA,19536409,Melissa,Queens,East Elmhurst,40.75817,-73.89893,Entire home/apt,85,1,43,2018-12-30,3.72,1,0 +27137301,"Bright, modern duplex w/ rooftop deck & balcony",9736367,Katie,Brooklyn,Bedford-Stuyvesant,40.68652,-73.94848,Private room,46,3,5,2019-04-22,0.47,1,0 +27137607,Beautiful bright Brooklyn Heights 1 bedroom,32717107,Lucas,Brooklyn,Boerum Hill,40.69033,-73.98994,Entire home/apt,130,3,6,2019-06-12,0.51,1,194 +27137651,"Hi-ceiling, Studio, Flatiron NYC",10113487,Aleksandar,Manhattan,Kips Bay,40.73933,-73.9797,Entire home/apt,185,7,13,2019-06-23,1.26,1,292 +27138925,Family friendly apartment near Prospect Park,3388510,Laura,Brooklyn,Flatbush,40.64599,-73.96079,Entire home/apt,100,2,5,2019-03-31,0.46,1,0 +27138938,Comfy Getaway/Steps to Subway/WiFi,79913651,Darryl,Manhattan,Harlem,40.8183,-73.93828,Private room,52,1,13,2019-06-29,1.34,4,167 +27139072,Sunny Private Suite in Luxury Building,95901692,Anthony,Brooklyn,Bedford-Stuyvesant,40.6875,-73.9588,Private room,150,1,36,2019-07-01,3.23,1,29 +27139625,Cute Brownstone apt on tree-lined street Brooklyn,40230580,Kurtis,Brooklyn,Clinton Hill,40.68454,-73.96425,Entire home/apt,88,3,8,2019-01-28,0.81,1,0 +27139685,"SofaBed-Hell's Kitchen, Heart of Manhattan",204335117,Joseph,Manhattan,Hell's Kitchen,40.76391,-73.99325,Shared room,39,1,44,2019-07-02,4.00,1,31 +27139915,Living Room,199833548,Syeda,Queens,Sunnyside,40.74161,-73.92505,Shared room,40,1,20,2019-06-09,1.88,9,343 +27140232,曼哈顿帝国大厦/Time square,107245546,Michael,Manhattan,Chelsea,40.74708,-73.99131,Entire home/apt,155,3,11,2019-07-02,4.78,3,84 +27140359,Beautiful & Big Room in Astoria,64453547,Onur,Queens,Ditmars Steinway,40.77405,-73.90328,Private room,55,20,0,,,3,31 +27140472,Room In Light Filled Home Walk to Prospect Park,2163625,Shannon,Brooklyn,Windsor Terrace,40.65086,-73.97757,Private room,65,2,0,,,2,0 +27140547,Manhattan Apartment in the heart of Harlem,204336983,Joseph & Joséphine,Manhattan,East Harlem,40.806,-73.94082,Private room,90,2,2,2019-01-01,0.18,1,11 +27140578,Cozy private room in stylish Brooklyn home,1409262,Sarah,Brooklyn,Flatbush,40.64118,-73.95245,Private room,54,2,3,2018-10-05,0.28,6,286 +27140780,Bright cozy private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.64228,-73.95204,Private room,40,2,4,2018-09-28,0.37,6,260 +27141013,Modern Newly Renovated Home Away From Home,204346423,Yva,Brooklyn,Mill Basin,40.61768,-73.91669,Entire home/apt,85,2,36,2019-07-07,3.26,1,322 +27141191,NewlyBuilt+Terrace 3min▶︎Subway 30min Manhattan,19303369,Hiroki,Queens,Elmhurst,40.74022,-73.87614,Private room,34,30,0,,,37,0 +27142225,Lovely Brownstone in Brooklyn Heights,624101,Zak,Brooklyn,Brooklyn Heights,40.69176,-73.99336,Entire home/apt,132,3,6,2019-05-27,0.55,1,0 +27143808,Modern studio apt with full kitchen and bath,13031306,Rachael,Manhattan,Harlem,40.82372,-73.95122,Private room,80,2,19,2018-12-03,1.71,1,0 +27149449,LUXURY 1BR ON EAST 44TH~DOORMAN/LAUNDRY,200380610,Pranjal,Manhattan,Midtown,40.75019,-73.97045,Entire home/apt,225,30,0,,,65,310 +27149630,SPACIOUS 2BR 2 BATH IN UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.77093,-73.95873,Entire home/apt,285,30,0,,,65,365 +27150644,LUXURY DOORMAN STUDIOS ON EAST 44th,200380610,Pranjal,Manhattan,Midtown,40.75237,-73.9704,Entire home/apt,190,30,0,,,65,364 +27154602,"Master Suite w/ King Bed, Backyard",1418015,Reuben,Brooklyn,Crown Heights,40.6756,-73.95232,Private room,140,2,41,2019-06-29,3.69,4,334 +27156129,Charming townhouse apartment,1441920,Llewellyn,Brooklyn,Bedford-Stuyvesant,40.68167,-73.93608,Entire home/apt,87,2,0,,,1,0 +27156174,Beautiful & Big Room with Balcony in Astoria,64453547,Onur,Queens,Ditmars Steinway,40.77377,-73.9048,Private room,50,15,0,,,3,0 +27157649,SPACIOUS Bedroom with PRIVATE BATHROOM & ROOF,22264156,Raghav,Brooklyn,Clinton Hill,40.69456,-73.96439,Private room,120,1,3,2019-05-30,0.63,1,0 +27159331,Awesome New York Apartment Close to it All!,30595682,Michael,Manhattan,Hell's Kitchen,40.76795,-73.98432,Entire home/apt,165,2,11,2019-06-02,1.04,1,2 +27159664,Beautiful Sunny Private Bedroom in Brooklyn (JMZ),53365451,Brigid,Brooklyn,Bedford-Stuyvesant,40.6939,-73.93239,Private room,50,6,2,2019-01-01,0.18,1,0 +27160398,Clean + Spacious.,204244117,Patrola,Manhattan,Harlem,40.82423,-73.95056,Private room,49,1,27,2019-06-12,2.41,2,180 +27160493,曼哈顿/帝国大夏/ time square【2】,107245546,Michael,Manhattan,Chelsea,40.74756,-73.99072,Private room,165,2,5,2019-07-02,3.00,3,93 +27160938,Gorgeous light filled Brooklyn Brownstone,12337810,Praise,Brooklyn,Bedford-Stuyvesant,40.68625,-73.94045,Entire home/apt,192,1,2,2018-08-27,0.17,1,0 +27161183,Sumpter Suites,204495302,Judy,Brooklyn,Bedford-Stuyvesant,40.68049,-73.91918,Entire home/apt,150,2,17,2019-06-17,2.34,1,0 +27161388,Brooklyn Town House,2381030,Terry,Brooklyn,Fort Greene,40.68876,-73.97048,Entire home/apt,1200,3,1,2018-08-15,0.09,1,0 +27161807,3 Private Rooms in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72673,-73.98766,Private room,415,1,2,2018-12-23,0.23,7,0 +27162696,Sweet BR (A) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63956,-73.95033,Private room,75,3,10,2019-06-30,0.91,3,123 +27163003,Bright Brooklyn Oasis 1 Block from Subway,103681571,Paige,Brooklyn,Bedford-Stuyvesant,40.69149,-73.96043,Private room,60,2,5,2019-05-22,0.48,1,2 +27164116,Efficient and Accessible Harlem Studio,204527519,Kristopher,Manhattan,Harlem,40.80136,-73.95158,Entire home/apt,100,3,16,2019-06-14,1.42,1,0 +27164169,Heart of Williamsburg with huge private terrace,46325694,Unai,Brooklyn,Williamsburg,40.71219,-73.96301,Entire home/apt,329,4,1,2019-01-02,0.16,1,0 +27165248,"Bedroom #5, Basement level, Park, express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65614,-73.9584,Private room,39,1,11,2019-07-07,2.29,5,309 +27165702,Cozy Van,10407935,Meng,Manhattan,West Village,40.73399,-74.00357,Entire home/apt,89,1,54,2019-07-01,4.82,8,2 +27166808,Artists/Yoga Sunny Studio - Prime Location!,48201791,Olivia,Brooklyn,Flatbush,40.6395,-73.96507,Entire home/apt,150,4,27,2019-06-07,2.39,2,29 +27166904,PRIVATE APARTMENT IN DOORMAN BUILDING,94832914,John,Manhattan,Financial District,40.70571,-74.00675,Entire home/apt,139,3,1,2019-03-18,0.27,1,0 +27167258,Chelsea Proper,23335317,Jaimi,Manhattan,Chelsea,40.74462,-74.0013,Entire home/apt,230,2,1,2019-06-14,1,1,77 +27168097,Prime Williamsburg location! High ceilings!,54541149,J,Brooklyn,Williamsburg,40.7159,-73.95905,Private room,75,2,1,2018-07-29,0.09,1,0 +27169644,"Bright, Simple, Cozy 1br. Apt in East Williamsburg",204577752,Lilia & Gaby,Brooklyn,Williamsburg,40.7154,-73.93926,Entire home/apt,135,2,44,2019-06-24,4.11,1,7 +27169890,2 BR affordable - good for groups,204581148,Eddie,Manhattan,East Harlem,40.79729,-73.93092,Entire home/apt,185,1,24,2019-06-20,2.06,1,314 +27172827,"Cozy Upper East - 1 Bed +Park | Museums | Subway",25700836,Brenton,Manhattan,Upper East Side,40.77979,-73.95297,Entire home/apt,128,1,11,2018-11-26,0.96,1,30 +27173512,Awesome Apartment near Prospect Park,23371413,Amit,Brooklyn,Crown Heights,40.66483,-73.95883,Entire home/apt,110,4,2,2018-09-16,0.20,1,32 +27173844,Midtown (near Korean town) spacious private room,74529394,Siyu,Manhattan,Midtown,40.74832,-73.98423,Private room,80,5,2,2018-08-31,0.17,1,0 +27185508,Large 1 Bedroom in the Heart of New York City,2596736,Barry,Manhattan,Chelsea,40.74017,-73.99485,Entire home/apt,175,3,6,2019-07-07,0.57,1,5 +27186509,Lovely apartment with a balcony,9598256,Raphaël,Brooklyn,Prospect Heights,40.67329,-73.96627,Entire home/apt,160,5,6,2019-06-30,0.55,1,28 +27188155,Sunny One bedroom in the heart of the East Village,192554415,Nina,Manhattan,East Village,40.7297,-73.98552,Entire home/apt,250,7,16,2019-06-25,1.72,1,135 +27189113,Home away from home in the West Village.,2264902,Leni,Manhattan,West Village,40.73692,-74.00531,Entire home/apt,225,2,17,2019-07-01,1.54,2,0 +27190005,1 Bedroom Suite By LGA / JFK airports & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76087,-73.88375,Private room,45,3,19,2019-04-10,1.67,2,0 +27190713,Modern Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78306,-73.94524,Entire home/apt,150,30,0,,,8,364 +27191921,Fort Pl B&B,204752727,Paul,Staten Island,St. George,40.64275,-74.08001,Private room,120,2,1,2019-04-05,0.31,1,350 +27192502,Private Bedroom A in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.68991,-73.91179,Private room,50,2,26,2019-06-18,2.50,3,80 +27194554,Upper West Side Getaway In the City Center,14459075,Eddy,Manhattan,Morningside Heights,40.80279,-73.96325,Private room,60,2,58,2019-07-07,5.67,1,110 +27195039,BIG FACTORY LOFT - HIP BUSHWICK NEAR 2 METROS!!,35606248,Blake And Madia,Brooklyn,Bushwick,40.70265,-73.92606,Private room,70,2,28,2019-06-09,2.43,5,359 +27195515,2 BEDS -EXTRA ROOM IN ARTIST LOFT -HIP BUSHWICK,35606248,Blake And Madia,Brooklyn,Bushwick,40.70442,-73.92752,Private room,80,2,30,2019-05-24,2.71,5,361 +27195566,1 BR apartment near Times Square,92772140,Alex,Manhattan,Hell's Kitchen,40.76035,-73.99524,Entire home/apt,200,2,22,2019-05-27,2.06,1,155 +27195600,Reign in your castle,204773816,Marisa,Queens,Flushing,40.75785,-73.81948,Entire home/apt,120,3,21,2019-06-13,2.09,1,152 +27195692,Low Price Private Room,204786430,Shamyra,Queens,Ridgewood,40.70775,-73.90853,Private room,53,7,0,,,2,0 +27196488,"2 br furnished apartment sublet for August. Prime Sunnyside location, close to restaurants, stores and subway 7train 40 street stop",204774833,Tatiana,Queens,Sunnyside,40.74506,-73.92444,Entire home/apt,200,1,1,2018-08-24,0.09,1,0 +27196874,"Convenience, comfort & charm on the Upper West",8749245,Sarah,Manhattan,Upper West Side,40.78461,-73.98078,Entire home/apt,175,30,2,2019-05-24,0.27,1,215 +27197193,Soho neighborhood apartment,163482759,John,Manhattan,SoHo,40.72586,-74.00079,Private room,75,1,14,2019-01-25,1.25,1,0 +27199508,Chelsea Studio (450 Sq. Feet) with Balcony!,52602302,Daniel,Manhattan,Chelsea,40.74312,-73.99573,Entire home/apt,149,5,5,2019-06-27,0.45,1,0 +27200105,Spacious brand new apartment in Brooklyn,416361,O,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94587,Private room,150,3,1,2018-08-12,0.09,1,179 +27201242,**Newly Listed 2-bedroom gem with private entrance,1837068,Mansura,Brooklyn,Bushwick,40.69279,-73.91423,Entire home/apt,110,2,21,2019-06-08,2.96,1,13 +27201257,Charming & convenient to subways/1 bed. brownstone,200391647,Lauren,Brooklyn,Park Slope,40.67947,-73.97618,Entire home/apt,150,7,1,2018-10-18,0.11,1,0 +27201468,Large Apt on Upper East! Steps to Q/4/5/6 Subways!,104835154,Itay,Manhattan,Upper East Side,40.77847,-73.94962,Entire home/apt,147,7,10,2019-04-26,0.86,2,11 +27201540,Brooklyn / Bed Stuy :: Brownstone garden-floor apt,257904,David,Brooklyn,Bedford-Stuyvesant,40.68518,-73.93517,Entire home/apt,150,5,5,2018-11-15,0.48,1,0 +27202604,NICE COZY PRIVET ROOM,26877037,Catherine,Brooklyn,Sheepshead Bay,40.59887,-73.9579,Private room,138,1,1,2018-12-04,0.14,2,269 +27202749,Entire 2nd floor w/2 Rooms in Authentic Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69176,-73.9383,Private room,135,2,10,2019-06-27,1.21,6,249 +27202986,HOSTEL,204852524,Sergiy,Brooklyn,Gravesend,40.59982,-73.98679,Shared room,100,1,1,2018-08-14,0.09,1,363 +27203333,850 sq ft Large 3rd Floor NYC Family Loft,29510402,Douglas,Bronx,Longwood,40.82445,-73.90341,Private room,90,2,1,2018-07-29,0.09,3,0 +27203347,"New Great Place, 20min to Downtown Manhattan",204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67786,-73.93254,Entire home/apt,500,1,1,2018-11-19,0.13,14,53 +27203413,Quiet Apartment/ Private Entrance/ Free Parking,204810113,Maria,Staten Island,New Brighton,40.63813,-74.0929,Private room,115,3,42,2019-06-21,3.80,1,115 +27203779,New Sunny 4 bedroom space! Popular! Close2Subway!,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67851,-73.93071,Entire home/apt,300,1,1,2018-11-04,0.12,14,53 +27203985,Awesome room in BK great for two friends sharing!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92816,Private room,43,30,1,2019-05-01,0.43,5,140 +27204768,Wicked Chill Artist Space!,4356698,Youmie,Manhattan,Washington Heights,40.85045,-73.93493,Private room,75,2,20,2019-06-30,1.74,1,357 +27205234,Guest Room With a Cute Backyard!,928165,Meg,Brooklyn,Bushwick,40.6969,-73.9114,Private room,52,2,12,2019-01-04,1.19,1,0 +27205506,Seconds from subway or a 30 min drive to city.,47504485,Danny,Brooklyn,Bensonhurst,40.61183,-73.98219,Private room,85,5,29,2019-07-06,2.58,2,58 +27211525,Brooklyn Home convenient to everywhere,204915695,Jian,Brooklyn,Sunset Park,40.63729,-74.01046,Private room,50,3,25,2019-07-05,2.26,2,108 +27214615,4BR 4 BATH IN THE HEART OF WEST VILLAGE,200380610,Pranjal,Manhattan,West Village,40.73495,-74.00033,Entire home/apt,483,30,0,,,65,364 +27215273,DOORMAN/ GYM/ MODERN 1 BR ON EAST 52ND ST,200380610,Pranjal,Manhattan,Midtown,40.75524,-73.96382,Entire home/apt,290,30,0,,,65,365 +27215478,LUXURY STUDIO ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76701,-73.98174,Entire home/apt,225,30,0,,,65,249 +27215807,LUXURY DELUXE 2BR 2BATH -DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76182,-73.99771,Entire home/apt,550,30,0,,,65,360 +27216072,LUXURY & DESIGNER 1BR IN HELL'S KITCHEN,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76194,-73.99824,Entire home/apt,450,30,0,,,65,365 +27216202,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,200380610,Pranjal,Manhattan,Upper East Side,40.78009,-73.95929,Entire home/apt,200,30,0,,,65,364 +27216361,Sunny Plant Filled Apt in Williamsburg,5809327,Michele,Brooklyn,Williamsburg,40.70747,-73.95304,Private room,80,3,6,2019-06-01,0.61,1,282 +27216826,LUXURY 2BR 2BATH IN SUTTON PLACE-GYM/DOORMAN,200380610,Pranjal,Manhattan,Midtown,40.75457,-73.96248,Entire home/apt,360,30,0,,,65,364 +27217390,1 BEDROOM ON UES-DOORMAN/WASHER/DRYER,200380610,Pranjal,Manhattan,Upper East Side,40.77834,-73.95193,Entire home/apt,210,30,0,,,65,364 +27217551,EAST 25TH ST~KIPS BAY/EAST VILLAGE/UNION SQUARE,200380610,Pranjal,Manhattan,Kips Bay,40.73863,-73.98002,Entire home/apt,210,30,0,,,65,364 +27217759,LUXURY STUDIO ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.75994,-73.98673,Entire home/apt,225,30,0,,,65,250 +27217819,Easy Eastern Parkway! Minutes From 4/5 Train!,204971560,Natasha,Brooklyn,Crown Heights,40.66957,-73.95764,Private room,75,1,27,2019-07-01,2.47,1,146 +27220502,Large sunny private room near Times Sq. 43D3,190921808,John,Manhattan,Hell's Kitchen,40.75516,-73.99547,Private room,120,7,1,2019-04-26,0.41,47,338 +27221468,AWESOME QUEEN BED B - NEAR 3 METROS WILLIAMSBURG,189625025,Mary And Ryan,Brooklyn,Williamsburg,40.70844,-73.94415,Private room,70,2,20,2019-06-10,1.90,2,345 +27222175,Private Bedroom in the Financial District,126897791,Allison,Manhattan,Financial District,40.70662,-74.00562,Private room,1700,120,0,,,1,0 +27222424,Townhouse private 1 1/2 bedroom garden apartment,195693063,Billy,Manhattan,Harlem,40.82244,-73.94994,Entire home/apt,195,2,42,2019-06-30,4.08,2,257 +27225028,NYC Private 1BR Apartment - 116th Street,59591371,Dustin,Manhattan,East Harlem,40.79889,-73.94489,Entire home/apt,89,6,48,2019-07-02,4.21,1,15 +27225540,Huge Private Brooklyn Room with Two Beds!,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94762,Private room,65,2,21,2019-06-15,2.04,4,334 +27225628,Columbia/Morningside 1BR Sublet in 3BR Apt,23619449,Kaedin,Manhattan,Morningside Heights,40.81308,-73.95993,Private room,45,31,1,2018-08-31,0.10,1,1 +27225643,Cozy room at Pat's Paradise,187870198,Patricia,Queens,Rockaway Beach,40.58511,-73.81757,Private room,53,2,7,2019-06-29,0.61,1,252 +27225719,❤️Private Suite for Friends Getaway Close to NYC,179745489,Sophie,Queens,Elmhurst,40.73088,-73.87488,Entire home/apt,125,2,47,2019-06-27,4.18,1,315 +27225784,Furnished Upper East Side LARGE Studio,10573806,Masha,Manhattan,Upper East Side,40.77168,-73.95393,Entire home/apt,140,2,5,2018-10-28,0.55,1,0 +27225888,Studio Apartment in Gramercy,2457645,Bijal,Manhattan,Gramercy,40.73615,-73.98166,Entire home/apt,130,15,0,,,1,0 +27226871,Lovely Brooklyn Room great for groups,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94786,Private room,65,2,25,2019-06-14,2.52,4,347 +27227103,Furnished and Finished Basement Entire Place SAFE,122044895,Yerddy,Bronx,Wakefield,40.89382,-73.84844,Entire home/apt,75,30,7,2019-05-31,0.69,2,188 +27227269,Huge bedroom in Harlem,28449397,Vanessa,Manhattan,Harlem,40.82958,-73.94184,Private room,80,1,1,2018-10-09,0.11,2,364 +27227358,Jewel of a Room in BK,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94813,Private room,65,2,17,2019-06-24,1.65,4,350 +27227655,Intimate Private Room,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.94821,Private room,55,2,18,2019-06-04,1.60,4,359 +27227840,"Cute, Comfortable, Full Apartment in NYC!!!",31687877,Christina,Manhattan,Kips Bay,40.74298,-73.97448,Entire home/apt,110,1,42,2019-07-07,3.73,1,8 +27229363,"FOURTH OF JULY!!!! BEST DEAL!! Perfect, 1 bed. apt",835534,J,Manhattan,Upper East Side,40.78319,-73.9544,Entire home/apt,120,1,16,2019-06-09,1.41,1,2 +27230758,Room in modern apartment in hip Williamsburg,31882405,Dawn,Brooklyn,Williamsburg,40.7082,-73.96719,Private room,130,2,12,2019-07-05,1.07,1,26 +27234677,Amazing Upper East Side Apt with private patio,69885871,Jennifer,Manhattan,Upper East Side,40.7729,-73.95761,Private room,120,1,2,2019-02-09,0.31,1,171 +27235064,Cute Williamsburg Apartment Perfectly Located,793717,Alain,Brooklyn,Williamsburg,40.70934,-73.95593,Entire home/apt,162,3,38,2019-06-30,3.34,1,314 +27235864,Cozy bedroom in Harlem,28449397,Vanessa,Manhattan,Harlem,40.82962,-73.94212,Private room,80,1,12,2019-05-21,1.04,2,357 +27236170,Staten Island Home with a View,205132904,Farah,Staten Island,Tompkinsville,40.63513,-74.07929,Private room,135,2,65,2019-06-24,6.13,2,293 +27237325,Beautiful Crown Heights Studio apartment,205144781,Evelyn,Brooklyn,Crown Heights,40.675,-73.92358,Entire home/apt,85,1,53,2019-07-05,4.68,1,306 +27237510,"*NO GUEST SERVICE FEE* Studio Suite w/ Queen Bed, Close to 51st St Subway",205031545,Red Awning,Manhattan,Midtown,40.75299,-73.96659,Entire home/apt,699,3,8,2019-05-19,1.21,49,204 +27237511,*NO GUEST SERVICE FEE* Beekman Tower Premium Studio Suite,205031545,Red Awning,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,699,3,3,2019-03-03,0.50,49,204 +27237512,*NO GUEST SERVICE FEE* Studio Suite with Free Continental Breakfast Daily,205031545,Red Awning,Manhattan,Midtown,40.75239,-73.96684,Entire home/apt,699,3,1,2019-03-31,0.30,49,204 +27237516,*NO GUEST SERVICE FEE* Beekman Tower Studio with Queen Bed & Free Wifi,205031545,Red Awning,Manhattan,Midtown,40.75425,-73.96648,Entire home/apt,699,3,4,2019-05-19,0.82,49,204 +27237526,*NO GUEST SERVICE FEE* 1 Bed Studio Suite - Close to UN Headquarters,205031545,Red Awning,Manhattan,Midtown,40.75397,-73.96697,Entire home/apt,699,3,5,2019-04-29,0.48,49,204 +27237539,*NO GUEST SERVICE FEE* Incredible Location! Luxury Midtown Studio with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75434,-73.96569,Entire home/apt,699,3,3,2019-05-20,0.46,49,164 +27237549,*NO GUEST SERVICE FEE* Luxury Studio Suite in Excellent Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75442,-73.96696,Entire home/apt,699,3,8,2019-06-16,1.18,49,204 +27237563,*NO GUEST SERVICE FEE* Studio Suite w/ Convenient Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.9651,Entire home/apt,699,3,19,2019-06-11,2.45,49,204 +27237570,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite,205031545,Red Awning,Manhattan,Midtown,40.75243,-73.9654,Entire home/apt,699,3,5,2019-05-31,0.74,49,206 +27237572,"*NO GUEST SERVICE FEE* One Bedroom Suite w/ Queen Bed, Close to 51st St Subway",205031545,Red Awning,Manhattan,Midtown,40.75444,-73.96497,Entire home/apt,737,3,2,2019-05-20,0.42,49,216 +27237577,*NO GUEST SERVICE FEE* One Bedroom Suite with Free Continental Breakfast Daily,205031545,Red Awning,Manhattan,Midtown,40.75224,-73.96652,Entire home/apt,737,3,1,2019-02-17,0.21,49,200 +27237578,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75417,-73.96557,Entire home/apt,737,3,8,2019-06-02,1.02,49,188 +27237583,*NO GUEST SERVICE FEE* Beekman Tower Premium One Bedroom Suite,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.96567,Entire home/apt,737,3,1,2019-02-18,0.21,49,222 +27237586,*NO GUEST SERVICE FEE* Luxury One Bedroom Suite in Excellent Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75451,-73.96708,Entire home/apt,737,3,0,,,49,206 +27237591,*NO GUEST SERVICE FEE* One Bedroom Suite - Close to UN Headquarters,205031545,Red Awning,Manhattan,Midtown,40.75425,-73.96556,Entire home/apt,737,3,4,2019-05-28,0.36,49,249 +27237604,*NO GUEST SERVICE FEE* Luxury Midtown One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75294,-73.96731,Entire home/apt,737,3,2,2019-06-07,0.40,49,235 +27237606,*NO GUEST SERVICE FEE* Luxury One Bedroom Suite w/ Free Continental Breakfast,205031545,Red Awning,Manhattan,Midtown,40.75269,-73.96678,Entire home/apt,737,3,5,2019-05-27,1.17,49,230 +27237609,*NO GUEST SERVICE FEE* Beekman Tower Studio with Fully Equipped Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75308,-73.96732,Entire home/apt,699,3,9,2019-02-24,1.09,49,190 +27237610,*NO GUEST SERVICE FEE* Great Location! Luxury Midtown Studio with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75231,-73.96707,Entire home/apt,699,3,7,2019-05-31,1.27,49,176 +27237623,*NO GUEST SERVICE FEE* Luxury Studio Suite w/ Free Continental Breakfast,205031545,Red Awning,Manhattan,Midtown,40.75283,-73.96675,Entire home/apt,699,3,3,2018-12-12,0.33,49,196 +27237625,*NO GUEST SERVICE FEE* Luxury Midtown One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75459,-73.96707,Entire home/apt,737,3,3,2019-06-10,0.44,49,153 +27237631,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite with Queen Bed & Free Wifi,205031545,Red Awning,Manhattan,Midtown,40.75238,-73.96653,Entire home/apt,737,3,2,2019-05-23,0.71,49,224 +27238918,Cozy Private Twin Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77214,-73.89169,Private room,52,1,39,2019-07-04,3.38,4,353 +27241336,your home in the big apple,202329412,Anthony Michel,Brooklyn,Crown Heights,40.66516,-73.94097,Private room,46,1,13,2019-05-27,1.13,1,301 +27244093,QUEEN BED 1 NEAR 3 METROS IN WILLIAMSBURG,189625025,Mary And Ryan,Brooklyn,Williamsburg,40.70756,-73.94269,Private room,76,2,29,2019-06-30,2.54,2,330 +27246155,SUNNY 2 BEDS - NEAR 3 METROS IN WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.70936,-73.94427,Private room,86,2,28,2019-06-30,2.61,3,365 +27248443,Cozy Private Queen Room 5min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77309,-73.89256,Private room,85,1,41,2019-07-07,3.66,4,349 +27248487,Cozy & Chic West Village One Bedroom Oasis,205227236,Anne,Manhattan,West Village,40.73394,-74.00175,Entire home/apt,200,2,3,2018-09-03,0.27,1,0 +27249535,**Harmony Room with Bed and Futon**,205234874,Petera,Brooklyn,Bedford-Stuyvesant,40.69128,-73.94311,Private room,60,2,24,2019-06-21,2.22,2,360 +27250227,Artist Retreat Private Single,134521683,Kathy,Manhattan,East Village,40.72401,-73.98154,Private room,50,30,3,2019-06-14,0.30,2,34 +27250336,Cozy Private Full Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77248,-73.89263,Private room,52,1,32,2019-07-05,2.83,4,355 +27250504,Exquisite Room--Just 15 minutes from JFK,205243076,Diana,Queens,Cambria Heights,40.69159,-73.73658,Private room,65,2,27,2019-06-30,2.34,2,79 +27250960,Renovated Brooklyn Apt Only 35m to Manhattan!,303926,Kay,Brooklyn,Cypress Hills,40.68351,-73.88448,Entire home/apt,89,2,14,2019-06-09,1.48,2,180 +27251398,EAST RIVER VIEW~HIRISE STUDIO,200380610,Pranjal,Manhattan,Midtown,40.75424,-73.96312,Entire home/apt,200,30,0,,,65,364 +27252114,TOWNHOUSE CHARME IN CITY~EAST 59th STREET STUDIO,200380610,Pranjal,Manhattan,Midtown,40.75909,-73.96398,Entire home/apt,154,30,0,,,65,364 +27252615,LUXURIOUS 3 BR WITH BALCONY & RIVER VIEWS,200380610,Pranjal,Manhattan,Murray Hill,40.74422,-73.97124,Entire home/apt,350,60,0,,,65,327 +27252798,Huge apartment with jacuzzi and backyard,1110299,Loreta,Queens,Ridgewood,40.70108,-73.90222,Entire home/apt,120,2,3,2018-08-27,0.27,1,40 +27254736,Beautiful Empire State Views Studio Apartment,14317115,Samantha,Manhattan,Kips Bay,40.74075,-73.97674,Entire home/apt,86,1,0,,,1,0 +27255101,Comfortable Bedroom in calm Midwood neighborhood,130006475,Nadira,Brooklyn,Midwood,40.62771,-73.96381,Private room,40,1,22,2019-02-17,1.90,1,0 +27255632,Sunny spacious room near Times Square 51E2,190921808,John,Manhattan,Hell's Kitchen,40.75562,-73.99539,Private room,55,30,8,2019-05-21,0.71,47,351 +27255936,"Cozy Room, 2 min Times Square, centrally located",84825183,Antoine,Manhattan,Hell's Kitchen,40.76243,-73.99078,Private room,95,3,3,2018-08-05,0.26,1,5 +27256404,Beautiful Bushwick 3br on the subway,14487073,Jeremy,Brooklyn,Bushwick,40.70382,-73.91456,Entire home/apt,250,2,25,2019-07-01,2.37,2,260 +27257149,~House of Rest~Treehouse Room in Bushwick Brooklyn,427019,Oh,Brooklyn,Williamsburg,40.70713,-73.92918,Private room,55,2,18,2019-05-21,1.61,2,5 +27257929,AWESOME SUNNY 2 BEDS C NEAR 3 METROS WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.70757,-73.94466,Private room,86,2,23,2019-07-01,2.18,3,365 +27257936,AWESOME SUNNY 2 BEDS A NEAR 3 METROS WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.7089,-73.94447,Private room,86,2,17,2019-06-02,1.53,3,342 +27259887,Bedstuy Oasis,4089207,Mondell,Brooklyn,Bedford-Stuyvesant,40.68571,-73.93868,Entire home/apt,250,3,22,2019-07-07,1.94,2,314 +27260962,Quiet Manhattan Bedroom - sublet/roommate,49435345,Caitlin,Manhattan,Inwood,40.86813,-73.92393,Private room,50,30,9,2018-10-15,0.81,1,57 +27260995,2br apt for rent daily 10min away in train to City,114887819,Fernando,Brooklyn,Bushwick,40.69752,-73.93497,Entire home/apt,245,2,5,2019-06-03,0.79,1,128 +27261168,Renovated Comfy 1 BDR in Prime Midtown~Close toALL,204348856,Ellie,Manhattan,Midtown,40.7562,-73.96796,Entire home/apt,125,1,35,2019-06-28,3.37,1,35 +27262079,Private Apt 2BR/1Bath/Kitchen/Parking in OUR HOME,119826595,Juan,Bronx,Mott Haven,40.81192,-73.91781,Entire home/apt,132,1,44,2019-06-30,3.91,1,103 +27262712,Unique Harlem experience in sunny lofted studio,205358796,Shana,Manhattan,Harlem,40.80765,-73.95484,Entire home/apt,112,3,4,2019-03-30,0.37,1,24 +27263672,Massive room seconds from Bushwick graffiti,26302195,Michael,Brooklyn,Williamsburg,40.70562,-73.92734,Private room,65,1,2,2019-02-24,0.44,1,0 +27264907,Low price private room train nearby,204786430,Shamyra,Queens,Ridgewood,40.70665,-73.90969,Private room,53,7,4,2019-01-02,0.36,2,0 +27264926,"豪华双人间 +法拉盛步行地铁站",158181451,Sophia,Queens,Flushing,40.74702,-73.82618,Private room,38,28,0,,,1,123 +27274799,RIVER VIEWS-EAST 52ND LUXURY 1 BR,200380610,Pranjal,Manhattan,Midtown,40.75579,-73.9652,Entire home/apt,234,30,0,,,65,364 +27277107,Cozy East Village Room,930201,Lilian,Manhattan,East Village,40.72817,-73.9773,Private room,81,5,9,2019-07-06,0.97,1,110 +27277569,LUXURY SUTTON PLACE 2BR 2BATH-DOORMAN/GYM,200380610,Pranjal,Manhattan,Midtown,40.75375,-73.96362,Entire home/apt,350,30,0,,,65,364 +27277843,"Cute, Comfy Room in the Heart of Bedstuy",28943965,Daniel,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94628,Private room,55,2,3,2018-10-14,0.29,1,0 +27278017,LUXURY 2BR ON WEST 26 ST-GYM/STORAGE ROOM,200380610,Pranjal,Manhattan,Midtown,40.74573,-73.99049,Entire home/apt,550,30,0,,,65,339 +27279139,Charming and Spacious BK Loft 15 mins to Manhattan,3662122,Tina,Brooklyn,Bushwick,40.70743,-73.92294,Entire home/apt,175,4,7,2018-10-05,0.63,3,54 +27279410,Private 4A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75974,-73.99016,Private room,110,1,69,2019-05-31,6.22,12,232 +27279645,Private 4B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76037,-73.9917,Private room,110,1,63,2019-06-23,5.71,12,267 +27279953,Private 4C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75983,-73.99119,Private room,115,1,82,2019-06-21,7.34,12,230 +27279982,WEST 56TH COLUMBUS CIRCLE-LUXURY 1BR- DOORMAN/DECK,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76629,-73.986,Entire home/apt,236,30,0,,,65,364 +27280189,Private 4D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75981,-73.99011,Private room,105,1,79,2019-06-24,6.99,12,241 +27281341,Sunny 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Kips Bay,40.74324,-73.97224,Entire home/apt,184,29,0,,,96,7 +27281452,Budget Friendly Private Room in Brooklyn “L”,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.6838,-73.95161,Private room,60,2,25,2019-06-12,2.29,7,349 +27281620,Trendy & Private Bedroom in Williamsburg! 2-1,204527108,Nina,Brooklyn,Williamsburg,40.71796,-73.957,Private room,87,30,2,2019-06-30,2,3,310 +27281794,Beautiful Private Bedroom in North Brooklyn! 2-2,204527108,Nina,Brooklyn,Williamsburg,40.71918,-73.95735,Private room,87,30,0,,,3,310 +27282297,Spacious Private Bedroom in North Brooklyn! 2-3,204527108,Nina,Brooklyn,Williamsburg,40.71763,-73.95594,Private room,87,30,0,,,3,310 +27282364,Charming Private Room Friends/Couples/Solo “M”,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68511,-73.94948,Private room,65,2,21,2019-06-13,1.95,7,362 +27282824,"Bright, Cozy West Village Studio",193289800,Claire,Manhattan,West Village,40.73214,-74.00531,Entire home/apt,120,2,14,2019-05-20,1.24,1,0 +27283564,"Spacious Bedroom in Ridgewood, Queens 3R-1",205530337,Nina,Queens,Ridgewood,40.70161,-73.90556,Private room,45,30,0,,,8,312 +27284500,"Private bedroom in Ridgewood, Queens 3R-2",205530337,Nina,Queens,Ridgewood,40.70296,-73.9056,Private room,45,30,1,2018-12-14,0.14,8,314 +27284564,"Great Bedroom in Ridgewood, Queens!",205530337,Nina,Queens,Ridgewood,40.70176,-73.90435,Private room,45,30,1,2019-05-29,0.71,8,347 +27284611,Beautiful Bedroom in Brand New Apartment! 3R-4,205530337,Nina,Queens,Ridgewood,40.70378,-73.90582,Private room,45,30,1,2018-11-30,0.14,8,163 +27284901,"Gorgeous One Bedroom in Ridgewood, Queens!",205530337,Nina,Queens,Ridgewood,40.701,-73.90607,Private room,45,30,1,2019-05-15,0.54,8,321 +27285058,Great Private Bedroom in Ridgewood! 3L-3,205530337,Nina,Queens,Ridgewood,40.70285,-73.90411,Private room,45,30,1,2019-06-01,0.77,8,331 +27285234,Spacious Bedroom in Ridgewood! 3L-4,205530337,Nina,Queens,Ridgewood,40.70175,-73.90552,Private room,45,30,0,,,8,340 +27285454,La Estancia,205543083,Sandra,Queens,Woodhaven,40.6905,-73.86117,Private room,80,3,4,2019-01-02,0.36,1,342 +27287076,Clementine's Room,35645017,Clara,Manhattan,East Harlem,40.7962,-73.94894,Private room,85,1,6,2018-08-27,0.53,1,0 +27287158,BEST LOCATION - AMAZING 1 Bedroom Apartment 2 beds,606154,Sam,Manhattan,Gramercy,40.73508,-73.98477,Entire home/apt,118,3,21,2019-06-23,1.86,2,10 +27287501,Bedroom with Private bathroom in East Village,205564408,Patrick,Manhattan,East Village,40.72701,-73.97909,Private room,50,1,5,2018-12-26,0.46,1,0 +27290648,Room in Upper East Side,180212824,Samet,Manhattan,Upper East Side,40.76618,-73.9562,Private room,99,1,18,2019-01-09,1.66,5,0 +27291497,3BR/2.5BTH Modern Brownstone Duplex w Terrace,194684765,James,Brooklyn,Bedford-Stuyvesant,40.68855,-73.9443,Entire home/apt,204,5,28,2019-06-08,2.96,1,225 +27291757,Studio in heart of NoLIta,205606415,Paola,Manhattan,Nolita,40.72159,-73.9962,Entire home/apt,220,1,28,2019-07-05,2.52,1,45 +27292217,"Center of manhattan, Times Square , 1min from st",57724903,Treasure,Manhattan,Theater District,40.76193,-73.98236,Entire home/apt,325,7,0,,,1,0 +27292944,"Cozy duplex in Redhook, Brooklyn +(entire basement)",8593113,Salem,Brooklyn,Red Hook,40.67349,-74.00589,Private room,81,1,7,2019-05-17,0.66,2,48 +27293665,Bright essential cozy private room,99137905,Valentina,Bronx,Wakefield,40.88878,-73.86349,Private room,60,1,1,2019-01-13,0.17,1,269 +27295164,"private room in Redhook, Brooklyn",8593113,Salem,Brooklyn,Red Hook,40.67381,-74.00762,Private room,50,1,25,2019-06-29,2.17,2,351 +27295492,HARLEM REBIRTH OF COOL,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.8087,-73.93897,Private room,90,2,38,2019-06-27,3.36,6,0 +27296173,Super nice space,24000784,Robert,Brooklyn,Sunset Park,40.64431,-74.01261,Private room,45,1,7,2019-07-01,0.75,4,32 +27296868,East 39th Street Furnished Studio,200380610,Pranjal,Manhattan,Murray Hill,40.74688,-73.97342,Entire home/apt,180,30,0,,,65,364 +27297152,LUXURY 1 BR IN CHELSEA-24 HR GYM & SKYLINE VIEWS,200380610,Pranjal,Manhattan,Chelsea,40.74631,-73.99121,Entire home/apt,320,30,0,,,65,364 +27298901,SPACIOUS 2BR 2BATH IN THE HEART OF YORKVILLE,200380610,Pranjal,Manhattan,Upper East Side,40.7732,-73.95029,Entire home/apt,340,30,0,,,65,364 +27299174,LUXURY & SPACIOUS 2BR 2BATH ON UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.76852,-73.96245,Entire home/apt,395,30,0,,,65,346 +27301019,LUXURY NEIGHBORHOOD IN NYC-EAST 86TH ST/5TH AVE,200380610,Pranjal,Manhattan,Upper East Side,40.77964,-73.95865,Entire home/apt,187,30,0,,,65,315 +27301638,Camp Rockaway,200754542,Kent,Queens,Breezy Point,40.56568,-73.87009,Private room,195,1,1,2018-08-25,0.09,2,59 +27301758,Beautiful Woodhaven Home,205684793,Cynthia,Queens,Woodhaven,40.69062,-73.84747,Entire home/apt,170,5,1,2018-08-13,0.09,2,0 +27301897,Delightful Sanctuary in Nolita for 4 Guests~,10457196,Richard,Manhattan,Little Italy,40.71927,-73.99451,Entire home/apt,140,30,3,2018-11-25,0.31,11,104 +27302499,Cozy 2 Bedroom Garden Apartment,14381199,Juliana,Brooklyn,Bedford-Stuyvesant,40.6855,-73.95677,Entire home/apt,125,3,20,2019-06-23,1.94,1,0 +27303282,Spacious Bedroom with Beautiful Views,205697848,Carly,Manhattan,Hell's Kitchen,40.76435,-73.99298,Private room,85,1,8,2019-04-28,0.70,1,30 +27304339,纽约多单元大厦,190324721,Jun Jun,Queens,Flushing,40.76003,-73.83307,Private room,73,1,25,2019-06-18,2.43,4,317 +27304971,Private 1 BD in 2 BD/1 BTH in W. Harlem,66495651,Brittany,Manhattan,Harlem,40.82209,-73.95423,Private room,100,1,0,,,1,302 +27308088,"Sunny, Cozy & Clean Brooklyn Apt Steps from Train",42637974,Valentina,Brooklyn,Crown Heights,40.67782,-73.9474,Entire home/apt,90,7,0,,,1,0 +27308432,Mid-century modern garden oasis,14297465,Thomas,Brooklyn,Crown Heights,40.67189,-73.95624,Entire home/apt,135,3,42,2019-07-05,3.82,1,100 +27309080,"Sunlit private room in Park Slope, Brooklyn.",3819001,Tracy,Brooklyn,South Slope,40.66477,-73.97999,Private room,60,1,18,2019-06-11,1.65,2,308 +27312214,West village COZY! BEST LOCATION!,205777414,Jenny,Manhattan,West Village,40.73858,-74.00619,Entire home/apt,199,4,1,2018-09-18,0.10,1,232 +27312914,Mint room w/attached bath in center of Flushing,205745676,Liqin,Queens,Flushing,40.75749,-73.81983,Private room,80,1,33,2019-07-07,2.87,9,365 +27312987,Bright and spacious room in Bushwick,89589630,Yaw,Brooklyn,Bushwick,40.69629,-73.91351,Private room,50,1,86,2019-06-30,7.70,1,198 +27313587,Cozy and clean 1 bedroom in luxury apartment,36494687,Esther,Manhattan,East Village,40.72071,-73.97822,Private room,55,5,2,2018-08-20,0.18,1,0 +27314038,Nice 20 minute Manhattan 15 to Barclays Center,94214493,Dadrine,Brooklyn,East Flatbush,40.65473,-73.91846,Private room,80,7,1,2019-01-01,0.16,9,365 +27314650,"Spacious room w/attached bath, center of Flushing",205745676,Liqin,Queens,Flushing,40.75897,-73.82011,Private room,95,1,30,2019-07-07,2.66,9,353 +27315942,The converted one bedroom turned into a suite.,205813359,Ivin,Manhattan,Harlem,40.82469,-73.94176,Entire home/apt,120,2,25,2019-06-26,2.43,1,180 +27316669,Bronx Apart,205820814,Luz,Bronx,Highbridge,40.83454,-73.92751,Private room,10,1,0,,,1,180 +27322746,"Lovely bright eclectic 2BR, perfect for couple!",23773099,Elias,Brooklyn,Fort Greene,40.68462,-73.96908,Entire home/apt,110,225,0,,,1,365 +27326744,Cozy NYC Retreat,25459,Christine,Manhattan,Harlem,40.82698,-73.93871,Private room,40,1,22,2019-06-29,2.33,2,105 +27328415,Luxurious Townhouse - Chic & Sunny Room - Rooftop,17866326,Rony,Brooklyn,Bushwick,40.68636,-73.90731,Private room,50,4,2,2019-06-02,0.18,2,0 +27329048,Newly renovated & spacious Woodside room,137358866,Kazuya,Queens,Woodside,40.74411,-73.91077,Private room,40,30,2,2019-04-14,0.45,103,216 +27329585,1BR trendy Bushwick apt & minutes from Manhattan!,205930301,Robert,Brooklyn,Bushwick,40.693,-73.91078,Entire home/apt,99,1,79,2019-06-24,7.18,1,173 +27332332,"Cute, clean and convenient place in , Bed-Stuy.",205952285,Angela,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95036,Private room,65,2,32,2019-06-26,2.89,1,37 +27332770,Warm Home w/ Private Garden (Inwood Manhattan NYC),80381355,Mary,Manhattan,Inwood,40.86912,-73.92183,Entire home/apt,195,2,6,2019-03-31,0.53,1,0 +27333008,Delacroix’s Studio,18884557,A-B,Manhattan,West Village,40.73494,-74.00463,Entire home/apt,150,30,1,2019-06-20,1,1,86 +27333579,Chelsea Apartment,205969507,Chelsea,Manhattan,Chelsea,40.75313,-74.00235,Private room,120,1,4,2019-05-24,0.56,1,5 +27334148,Cozy family style Woodhaven home near JFK Airport,205684793,Cynthia,Queens,Woodhaven,40.69109,-73.84846,Entire home/apt,170,5,4,2018-12-15,0.44,2,0 +27334857,Apartment at Queens Landmark,177825782,Ada,Queens,Jackson Heights,40.75212,-73.88248,Private room,80,4,3,2018-10-11,0.30,2,175 +27336179,"Che’ Randall Deux +SoBro +10 minutes to Manhattan!",30585124,Rawn,Bronx,Longwood,40.81822,-73.90812,Private room,35,5,8,2019-01-02,0.77,2,179 +27336613,Cozy Loft Apartment in Bushwick,74678395,Gabriela,Brooklyn,Bushwick,40.70624,-73.9177,Entire home/apt,130,5,14,2019-06-30,1.24,1,305 +27336782,"Cute room, 45min Manhattan, 20 LGA, 20 JFK 2Peop",205999048,Clara,Queens,Flushing,40.73717,-73.80847,Private room,30,1,16,2019-06-23,1.46,1,153 +27336802,Cute Bed-Stuy Room,205998016,Pilar,Brooklyn,Bedford-Stuyvesant,40.6889,-73.93733,Private room,53,2,40,2019-06-29,3.79,1,13 +27336951,Lux Modern Spacious 1 Bed + Washer/Dryer,203169632,Max,Manhattan,Upper East Side,40.77134,-73.95498,Entire home/apt,350,2,24,2019-06-20,2.48,1,242 +27337223,Your welcome to have a nice stay on Bayview Place,205131610,Steven,Brooklyn,Canarsie,40.64228,-73.90819,Private room,50,2,5,2019-02-14,0.50,3,180 +27337409,"7 Bedroom Victorian Mansion, Built in 1908",45767988,Miki,Brooklyn,Flatbush,40.63876,-73.96025,Entire home/apt,250,1,0,,,1,17 +27337533,Private Room in a lovely Apartment,21621071,Ala,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94846,Private room,30,4,3,2019-04-02,0.27,1,0 +27338033,"Private Bushwick Room -- Close to J, M, L Trains",206009618,Keilyn,Brooklyn,Bushwick,40.70055,-73.93024,Private room,56,2,32,2019-06-25,2.97,1,158 +27338569,Private room & bath.Near subway Luxe @ great price,59880594,Margaret,Manhattan,East Harlem,40.79832,-73.9398,Private room,98,2,18,2019-06-25,1.86,1,209 +27341015,"Bright, Comfy, Conveniently Located Brooklyn Apt.",133298502,Dalila,Brooklyn,Flatbush,40.6498,-73.95592,Private room,100,1,0,,,1,0 +27341122,Williamsburg Loft,206040990,Alejandro,Brooklyn,Williamsburg,40.71425,-73.9623,Entire home/apt,290,5,0,,,1,0 +27343189,Jay's Studio Apartment,204036615,Jehan,Bronx,Allerton,40.87015,-73.85582,Entire home/apt,75,4,35,2019-07-01,3.13,1,169 +27351337,Studio sanctuary in Park Slope Brooklyn,10849252,Leslie,Brooklyn,Park Slope,40.6726,-73.98195,Entire home/apt,130,2,24,2019-07-01,3.27,1,2 +27351442,Room in cute East Village apartment w/ city views,4901731,Joachim,Manhattan,East Village,40.72875,-73.98443,Private room,98,2,15,2019-06-30,1.49,1,29 +27356337,Bright & Bohemian UES 1 BR - Whole Apt!,61100797,Haley,Manhattan,Upper East Side,40.76841,-73.95402,Entire home/apt,180,2,23,2019-06-16,2.04,1,2 +27356543,UES Skyview One Bedroom Gym 5198,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77687,-73.95173,Entire home/apt,200,30,0,,,96,0 +27357537,Stylish South Williamsburg + Waterfront Terrace,28380119,Johnny,Brooklyn,Williamsburg,40.71133,-73.96806,Entire home/apt,250,4,4,2018-12-10,0.38,1,0 +27357619,Private Room; Safe Building; All The Amenities,41287915,Larry,Brooklyn,Bushwick,40.69743,-73.92929,Private room,75,1,27,2019-06-30,2.45,1,29 +27358688,"SOHO Oasis - Sunny, Quiet 2 Bedroom",21940136,Ben,Manhattan,Nolita,40.72191,-73.99592,Entire home/apt,300,3,52,2019-07-05,5.20,1,119 +27359314,Calm in the City w/ 2 Bedrooms and 2 Bathrooms,13642054,Russell,Brooklyn,Bedford-Stuyvesant,40.67936,-73.91375,Entire home/apt,180,2,30,2019-06-11,2.77,1,69 +27359346,Best Gramercy one bedroom apartment,204744401,Howard,Manhattan,Kips Bay,40.73968,-73.98217,Entire home/apt,199,5,18,2019-06-04,1.65,1,248 +27359696,ACintheroom!35minutes toWALL St. quiet&residential,47782497,Robianddebbie,Brooklyn,East New York,40.66983,-73.87745,Private room,65,7,16,2019-06-23,1.42,3,287 +27359897,"ACintheroom!NEAR 3-4-A-C lines, quiet neighborhood",47782497,Robianddebbie,Brooklyn,East New York,40.67061,-73.8759,Private room,45,7,24,2019-06-29,2.11,3,313 +27360252,"Modern, Private Bedroom with Patio and Roof Access",74323368,Joan,Manhattan,Harlem,40.81968,-73.9436,Private room,90,2,39,2019-07-02,3.42,1,29 +27360936,"Enormous sun-drenched loft in Bed Stuy, Brooklyn",7210713,Andrew,Brooklyn,Bedford-Stuyvesant,40.69519,-73.95465,Entire home/apt,150,2,12,2019-07-06,1.09,1,0 +27361321,Prime Location of Flushing Queens 豪华卧室 旅途中的家 E,63312104,Max,Queens,Flushing,40.74764,-73.81795,Private room,55,1,37,2019-06-03,3.31,6,364 +27361471,Bsmt.shared apt close to JFK & Manhattan 2 twins,15145474,Denisse,Queens,Ozone Park,40.68221,-73.8457,Private room,51,4,27,2019-06-23,2.45,4,87 +27361805,Patio suite with terrace,3508047,Brian,Brooklyn,Bushwick,40.70024,-73.924,Private room,45,3,2,2018-08-27,0.18,3,0 +27362309,Not available,14621589,Sol,Brooklyn,Bedford-Stuyvesant,40.69974,-73.94658,Private room,50,400,0,,,1,90 +27362417,Large sunny studio space w/queen bed & living room,13639385,Farah,Brooklyn,Crown Heights,40.67713,-73.94137,Private room,60,3,0,,,1,179 +27362458,Prime Location of Flushing Queens 豪华卧室 旅途中的家 G,63312104,Max,Queens,Flushing,40.74766,-73.81942,Private room,60,1,38,2019-06-23,3.52,6,363 +27363157,"Large, Sunny West Village 1 Bedroom",26278289,Erika,Manhattan,Greenwich Village,40.72862,-74.00054,Entire home/apt,300,4,0,,,1,188 +27363172,Beautiful 4bed Brooklyn Family Townhouse,1603942,James,Brooklyn,Fort Greene,40.68712,-73.97768,Entire home/apt,375,20,2,2019-01-02,0.25,2,0 +27363454,Entire apartmen on Sheepshead Bay,23341244,Oxana,Brooklyn,Sheepshead Bay,40.59356,-73.95869,Entire home/apt,64,30,0,,,1,0 +27364187,Spacious room in Williamsburg with a yard!,9880191,Patty,Brooklyn,Williamsburg,40.71353,-73.94162,Private room,125,1,4,2018-10-15,0.39,2,8 +27364236,Modern Apartment in Williamsburg w/ backyard!,9880191,Patty,Brooklyn,Williamsburg,40.71449,-73.94195,Entire home/apt,250,2,3,2019-01-01,0.32,2,0 +27364319,room in Harlem,206217143,Isidro,Manhattan,Harlem,40.81968,-73.93858,Private room,40,1,7,2019-05-24,0.64,1,0 +27365033,Large Room In Prestigious Neighborhood Of SI,18404082,Alexander,Staten Island,Grymes Hill,40.6157,-74.0985,Private room,89,1,1,2018-11-04,0.12,1,65 +27365650,private bedroom in East Village Apartment,206227910,Maria,Manhattan,East Village,40.72239,-73.9821,Private room,80,3,23,2019-07-02,2.09,1,9 +27365908,"Williamsburg Penthouse, Large Private Deck",118403993,Arielle,Brooklyn,Williamsburg,40.71939,-73.96056,Entire home/apt,600,2,23,2019-06-28,2.20,2,328 +27366041,Sham’s home,80543188,Shamira,Bronx,Fordham,40.86299,-73.89088,Private room,75,2,14,2019-05-01,1.26,1,210 +27366228,Modern Studio in East Flatbush,59808986,Elen,Brooklyn,East Flatbush,40.64933,-73.94539,Entire home/apt,110,1,57,2019-06-10,5.06,3,223 +27366401,Spacious Apartment in the center of Park Slope,195704869,Mauro,Brooklyn,South Slope,40.66793,-73.98934,Entire home/apt,150,3,22,2019-07-07,2.18,1,144 +27366783,Luxury Waterfront Condo with views (and pool!),6584607,Henry,Brooklyn,Williamsburg,40.71784,-73.96363,Private room,90,1,18,2019-05-31,1.62,2,9 +27367243,Sonder | 116 John | Private Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70852,-74.00525,Entire home/apt,125,29,0,,,96,345 +27367939,Sonder | 21 Chelsea | Chic 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74083,-73.99457,Entire home/apt,209,29,0,,,96,335 +27368144,Sonder | Madison Ave | Pristine 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74812,-73.98602,Entire home/apt,287,29,0,,,96,219 +27368472,Sonder | 21 Chelsea | Lively Studio + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74272,-73.99599,Entire home/apt,202,29,0,,,96,279 +27368543,Executive 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Midtown,40.74803,-73.98666,Entire home/apt,287,29,0,,,96,219 +27368907,Sonder | 21 Chelsea | Sunny 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.743,-73.99521,Entire home/apt,239,29,3,2019-03-09,0.37,96,254 +27368990,Sophisticated 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Midtown,40.7482,-73.98776,Entire home/apt,287,29,0,,,96,218 +27369200,Sonder | 21 Chelsea | Colorful 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7429,-73.99428,Entire home/apt,232,29,2,2019-04-16,0.29,96,311 +27369583,Airy 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Kips Bay,40.74295,-73.97177,Entire home/apt,187,29,0,,,96,323 +27369599,Large & Luxury Two Bedrooms Apartment on 34th St,45241930,Juline,Manhattan,Murray Hill,40.74416,-73.9727,Entire home/apt,175,29,5,2019-05-15,0.74,3,49 +27369713,"Welcome to NY :) new, clean and beautiful house",206260220,Idalia,Queens,Jackson Heights,40.75589,-73.85755,Private room,60,1,38,2019-07-07,3.76,1,315 +27370912,Spacious 2 Bed/2 Bath Apt. Sleeps 6 - with Rooftop,15334096,John,Brooklyn,Williamsburg,40.71448,-73.95198,Entire home/apt,310,4,0,,,1,87 +27372891,Beautiful Chelsea Home Near The High Line & More!,17506009,Jeff,Manhattan,Chelsea,40.74564,-74.0006,Entire home/apt,200,1,12,2019-05-26,1.09,1,6 +27373231,10 minutes from JFK Airport Rockaway Beach Bliss,196557649,Erica,Queens,Edgemere,40.59684,-73.76873,Entire home/apt,200,1,7,2019-06-16,0.62,2,311 +27373536,"Historic Greenpoint Loft 2,000sqft",6776218,Raymond,Brooklyn,Greenpoint,40.7308,-73.95775,Entire home/apt,650,4,1,2019-06-09,1,1,168 +27373599,Perfect pad nested in best spot in bk,10606156,Eric,Brooklyn,Greenpoint,40.7244,-73.95435,Entire home/apt,75,4,0,,,2,177 +27374183,"Cozy Kensington room by F,G, B16, B35 :))",14898658,Chadanut,Brooklyn,Kensington,40.64205,-73.98049,Private room,40,1,19,2019-06-22,1.69,11,28 +27375052,Super clean! 2 Bedrooms in Bensonhurst -Sleeps 8,206313609,Lily,Brooklyn,Bensonhurst,40.60557,-73.99799,Entire home/apt,123,2,27,2019-06-25,2.57,2,128 +27375467,Fashion Of The City: Apartment in TIMES SQUARE NYC,9738823,Sam,Manhattan,Hell's Kitchen,40.76335,-73.98737,Private room,150,2,41,2019-06-16,4.17,1,67 +27380062,Room for rent in spacious brooklyn appartment,8346419,Yana,Brooklyn,Bushwick,40.70296,-73.91755,Private room,47,7,2,2018-12-30,0.18,1,0 +27382741,Sunny private room in renovated apartment (BR 1),206359223,Abraham,Brooklyn,Bedford-Stuyvesant,40.68033,-73.91023,Private room,31,30,1,2018-09-11,0.10,1,62 +27384075,"Comfortable private room in Astoria, Queens",68170006,Charles,Queens,Astoria,40.75519,-73.91582,Private room,54,2,2,2018-09-09,0.20,1,0 +27384626,TRUE2BR-PRIME MIDTOWN EAST~53rd&3rd,200380610,Pranjal,Manhattan,Midtown,40.75632,-73.96795,Entire home/apt,235,30,0,,,65,249 +27385411,LUXURY 1 BR ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76634,-73.98155,Entire home/apt,320,30,0,,,65,249 +27385494,LUXURY 2 BR ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76541,-73.98179,Entire home/apt,495,30,0,,,65,364 +27385914,LUXURY STUDIO IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76029,-73.99811,Entire home/apt,300,30,0,,,65,365 +27385966,LUXURY 2 BR ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.75975,-73.98698,Entire home/apt,470,30,0,,,65,250 +27386339,LUXURY DELUXE 1BR IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76191,-73.99818,Entire home/apt,350,30,0,,,65,281 +27386991,LUXURY 2BR 2BATH IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76181,-73.99855,Entire home/apt,350,30,0,,,65,281 +27387238,FLEX. 2BR IN PRIME LOCATION-MIDTOWN EAST,200380610,Pranjal,Manhattan,Midtown,40.7525,-73.96683,Entire home/apt,200,30,0,,,65,339 +27387265,LUXURY 3BR IN MIDTOWN WEST NEAR COLUMBUS CIRCLE,200380610,Pranjal,Manhattan,Midtown,40.76366,-73.98342,Entire home/apt,435,30,0,,,65,329 +27387286,"Modern 1 bedroom with office, 2 minutes to R Train",84683441,Brian,Brooklyn,Sunset Park,40.65945,-73.99383,Entire home/apt,100,2,12,2019-07-01,1.08,1,2 +27387520,1BR ON BROADWAY & WEST 71ST STREET,200380610,Pranjal,Manhattan,Upper West Side,40.779,-73.98319,Entire home/apt,200,30,0,,,65,342 +27388568,Casa Finca Sanctuary Duplex w/ Private Garden,895135,Suanny,Brooklyn,Williamsburg,40.70732,-73.94536,Private room,130,3,12,2019-07-02,1.08,3,90 +27389045,CITY VIEWS &BALCONY~GORGEOUS 2BR IN MURRAY HILL,200380610,Pranjal,Manhattan,Murray Hill,40.74632,-73.97307,Entire home/apt,305,30,0,,,65,364 +27389647,Master Bed/Bath near Lincoln Center in high-rise,119531605,Nicole,Manhattan,Upper West Side,40.7737,-73.99027,Private room,99,1,7,2018-08-31,0.61,1,0 +27389714,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77071,-73.98545,Entire home/apt,230,30,0,,,65,348 +27389854,Queens Apartment,206400943,Homemattie,Queens,Richmond Hill,40.69103,-73.83407,Entire home/apt,150,3,6,2019-06-25,0.55,1,162 +27389930,42NDFLR VIEWS!LINCOLN SQR-LUXURY MIDTOWNWEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77095,-73.98626,Entire home/apt,220,30,0,,,65,364 +27390188,2BR APT IN MIDTOWN~WEST55TH STREET,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76711,-73.98685,Entire home/apt,250,30,0,,,65,275 +27390867,NYU/UNION SQRE/EAST VILLAGE-QUIET STUDIO EAST 25TH,200380610,Pranjal,Manhattan,Kips Bay,40.73865,-73.9781,Entire home/apt,185,30,0,,,65,364 +27391028,2BR WITH PRIVATE PATIO EAST VILLAGE,200380610,Pranjal,Manhattan,East Village,40.73223,-73.98658,Entire home/apt,253,30,0,,,65,332 +27391206,PERFECT STUDIO FOR 2 EAST 60th ST,200380610,Pranjal,Manhattan,Upper East Side,40.75969,-73.96071,Entire home/apt,150,30,0,,,65,364 +27392814,2BR ON MIDTOWN EAST~EAST 34TH STREET,200380610,Pranjal,Manhattan,Murray Hill,40.7444,-73.97284,Entire home/apt,350,30,0,,,65,364 +27393400,Sonder | 116 John | Dashing Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70856,-74.00659,Entire home/apt,135,29,0,,,96,332 +27393606,Bedstuy Living,4406629,Peter,Brooklyn,Bedford-Stuyvesant,40.69228,-73.94566,Private room,50,30,15,2018-10-03,1.36,1,179 +27393765,Little Oasis,95564806,Olvin,Brooklyn,Brownsville,40.6604,-73.91227,Private room,59,2,32,2019-06-17,2.85,3,0 +27394468,Bright Light High-rise Spacious Room with Balcony,206451695,Vanessa,Manhattan,Hell's Kitchen,40.7594,-73.99748,Private room,180,4,10,2019-06-15,0.91,3,365 +27394897,Renovated 1 Bedroom apt in Bensonhurst- Sleeps 4,206313609,Lily,Brooklyn,Bensonhurst,40.60569,-73.99823,Entire home/apt,113,3,24,2019-06-18,2.22,2,96 +27395171,Cozy room w/attached bath in center of Flushing,205745676,Liqin,Queens,Flushing,40.75902,-73.82099,Private room,80,1,30,2019-06-21,2.69,9,189 +27397256,(WOMEN ONLY) Spacious & 10 min from the airport!,33905781,Rwaida,Queens,Astoria,40.76756,-73.91798,Private room,45,2,4,2018-09-28,0.37,1,249 +27398613,CLEAN SAFE apart near NYU/East Village,206482566,Sarah,Manhattan,Stuyvesant Town,40.73182,-73.98158,Private room,100,30,3,2018-08-23,0.28,2,0 +27398782,WeLive Wall Street -- Four Bedroom / Two Bath,159610596,WeWork,Manhattan,Financial District,40.70448,-74.00615,Entire home/apt,525,1,25,2019-07-07,2.53,6,203 +27398972,"Room in beautiful, well-lit Brooklyn Brownstone",2685910,Alison,Brooklyn,Bedford-Stuyvesant,40.68707,-73.95482,Private room,100,2,0,,,1,0 +27401585,Relaxing Ridgewood Apartment,2420988,Erin,Queens,Ridgewood,40.70804,-73.89747,Entire home/apt,105,7,2,2019-01-01,0.22,1,93 +27402244,Charming and Spacious East Village apartment!,205772141,Jorge,Manhattan,East Village,40.72935,-73.99054,Entire home/apt,250,2,10,2018-11-25,0.97,1,188 +27402384,Modern Staten Island Townhouse- Welcome home!,206508895,Arika,Staten Island,Randall Manor,40.6406,-74.11702,Entire home/apt,67,2,39,2019-06-25,3.45,1,45 +27403622,Charming exposed brick bedroom in the heart of LES,52050220,Brooke,Manhattan,Lower East Side,40.71873,-73.98553,Private room,100,1,4,2018-09-21,0.36,2,0 +27405246,"Private 2 Bdrm Apt, 1 Block to Subway",34755288,Toby,Bronx,Longwood,40.81872,-73.90014,Entire home/apt,75,7,0,,,1,0 +27405333,Entire 2 BD apartment in heart of lower east side,52050220,Brooke,Manhattan,Lower East Side,40.71796,-73.98445,Entire home/apt,226,1,1,2018-08-05,0.09,2,0 +27405874,Neat and quiet space for you.,206538133,Gayle,Manhattan,Financial District,40.70522,-74.00728,Entire home/apt,175,2,1,2018-08-26,0.09,1,0 +27406282,"Central to everything, Spacious, Sunny & No MarkUp",379051,Michael,Manhattan,Hell's Kitchen,40.76463,-73.99128,Entire home/apt,550,3,1,2018-08-01,0.09,1,353 +27406558,Cozy home in friendly & hip Bushwick near subway,8245652,Cazzie,Brooklyn,Bushwick,40.69667,-73.90806,Entire home/apt,120,2,6,2019-03-24,0.77,2,0 +27407257,Cozy 2 bedroom in Bedford Stuyvesant,33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68634,-73.93817,Entire home/apt,126,2,30,2019-06-18,2.88,2,35 +27407457,Cozy & quiet living experience in a trending area,11409024,Aysu,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94487,Private room,61,2,1,2019-07-01,1,1,349 +27407852,Room in Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76529,-73.95771,Private room,99,1,18,2019-02-10,1.59,5,0 +27407863,2BR Apartment in Manhattan - 8m from Times Square,206551997,Sean,Manhattan,Hell's Kitchen,40.75607,-73.9941,Entire home/apt,200,3,10,2019-07-05,4.48,1,206 +27408243,"SUNNY ROOM IN BUSHWICK +QUEEN SIZE J/M/Z/L",7638718,Gil,Brooklyn,Bushwick,40.70048,-73.9295,Private room,54,7,8,2019-05-25,0.75,1,0 +27409329,Most beautiful bedroom in Harlem,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80874,-73.94038,Private room,90,2,38,2019-06-25,3.40,6,178 +27414303,Beautiful Apartment in Brooklyn Heights,206509509,Jasna,Brooklyn,Brooklyn Heights,40.6987,-73.99275,Entire home/apt,155,1,12,2019-06-26,1.16,1,6 +27416658,HARLEM ROCKS/BEST APARtMENT,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.807,-73.93976,Entire home/apt,400,2,0,,,6,173 +27417822,2BR ON BROADWAY & WEST 71ST STREET,200380610,Pranjal,Manhattan,Upper West Side,40.77725,-73.98407,Entire home/apt,250,30,0,,,65,334 +27420805,"Peaceful Retreat, One stop from Manhattan",718630,Sara,Queens,Long Island City,40.74583,-73.95363,Entire home/apt,150,3,2,2019-04-21,0.32,1,3 +27422570,Peaceful loft,34643568,Dave,Manhattan,East Harlem,40.79232,-73.94156,Private room,85,3,2,2019-05-06,0.79,6,90 +27422684,Brooklyn Style Hostel RM4 #3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69393,-73.957,Shared room,38,3,12,2019-06-12,1.07,34,365 +27423688,New York Po home sweet home,176043852,Hellen,Manhattan,East Harlem,40.8093,-73.93747,Shared room,220,4,2,2019-03-29,0.20,1,41 +27424575,Brooklyn Style Hostel RM4 #2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69254,-73.95563,Shared room,37,2,10,2019-04-22,0.90,34,362 +27424610,private room in east williamsburg spacious loft,2948064,Anthony,Brooklyn,Williamsburg,40.71031,-73.93623,Private room,58,3,46,2019-07-03,4.19,2,126 +27425011,Stylish New York Apartment,10428298,Sheila,Manhattan,Chelsea,40.73768,-73.99565,Entire home/apt,220,14,0,,,1,0 +27425265,Brooklyn House,147590647,Ava,Brooklyn,Dyker Heights,40.61699,-74.01042,Private room,55,1,39,2019-07-07,3.45,1,45 +27425371,Bright+Cozy Apartment w/ Balcony,14812962,Domitille,Brooklyn,Crown Heights,40.67321,-73.95386,Entire home/apt,93,5,3,2018-09-01,0.28,1,0 +27425828,Luxury studio on West 91st & Broadway,200380610,Pranjal,Manhattan,Upper West Side,40.79026,-73.97304,Entire home/apt,175,30,0,,,65,364 +27426650,Private room in east Williamsburg Brooklyn Loft,2948064,Anthony,Brooklyn,Williamsburg,40.70859,-73.93572,Private room,58,3,47,2019-07-04,4.26,2,188 +27426767,Signature-Manhattan-Studio,5699385,Eugene,Manhattan,Kips Bay,40.73932,-73.97764,Entire home/apt,140,5,13,2019-06-23,1.23,1,24 +27426797,George's Miraculous Studio,7183012,George,Manhattan,Kips Bay,40.73967,-73.98171,Entire home/apt,160,10,2,2018-12-29,0.24,1,81 +27427289,Test Drive A Historic Brownstone in Brooklyn!,6456799,Cheryl,Brooklyn,Bedford-Stuyvesant,40.68726,-73.94176,Entire home/apt,125,21,2,2019-05-09,0.65,1,250 +27427898,Private 2 Bd Guest House. Great for Quiet Getaway,34313176,Eddie,Queens,Rego Park,40.71662,-73.85971,Entire home/apt,140,2,11,2019-06-26,1.17,4,335 +27428046,Upper West Side Apartment,200834302,Harold & Rose,Manhattan,Harlem,40.80329,-73.957,Entire home/apt,126,4,34,2019-07-02,3.12,1,90 +27429253,"Cozy house in Woodside, comfortable are!!",200239515,Shogo,Queens,Woodside,40.7423,-73.89426,Private room,35,30,2,2019-04-27,0.58,15,5 +27429817,Spacious paradise all by urself DT Flushing Mainst,161899037,Tony,Queens,Flushing,40.75676,-73.83288,Entire home/apt,159,2,7,2019-07-01,2.44,7,67 +27430644,Bedroom Three (Master) in House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.67261,-73.79675,Private room,99,1,49,2019-06-28,5.88,3,38 +27431305,"Modern room with great light, privacy nr J train",5680111,Timothy,Brooklyn,Bushwick,40.68596,-73.914,Private room,63,5,6,2019-06-04,0.54,7,133 +27431313,Wonderlust in WIlliamsburg,205594437,Gabrielle,Brooklyn,Williamsburg,40.70819,-73.96597,Entire home/apt,180,2,5,2018-10-25,0.47,1,0 +27431698,Luxurious Modern Queen Bedroom in Brand New Apt,5680111,Timothy,Brooklyn,Bushwick,40.68654,-73.91454,Private room,63,6,3,2019-06-29,0.27,7,187 +27432653,Sleep Under the Stars!,105699183,Crystal,Manhattan,Harlem,40.82771,-73.9499,Private room,65,4,2,2019-05-28,0.25,2,0 +27433046,Room in Ditmas Park Mansion,1548010,John,Brooklyn,Flatbush,40.63952,-73.9601,Private room,48,30,3,2018-08-31,0.28,1,0 +27434658,"Sunny and cozy room, 20 min from Manhattan",11158514,Yulia,Brooklyn,Flatbush,40.64472,-73.96263,Private room,42,10,1,2018-09-12,0.10,1,0 +27435989,**Studio Apartment 20 min. From MANHATTAN **,206758830,Chris And Jocelyn,Queens,Middle Village,40.71775,-73.87488,Entire home/apt,85,2,36,2019-06-09,3.40,1,290 +27436322,King Sized Room; Bay Ridge,84155085,Ridhima,Brooklyn,Bay Ridge,40.63145,-74.02375,Private room,50,2,1,2018-08-27,0.09,1,0 +27436334,Modern Stay with a Balcony View in the City,109930093,Chris,Manhattan,East Harlem,40.79505,-73.93126,Entire home/apt,199,2,15,2019-06-22,1.40,2,230 +27437662,New York Apartment,206774126,Brene,Manhattan,Harlem,40.82788,-73.93905,Entire home/apt,85,15,0,,,1,0 +27437794,Cozy Greenpoint,1720151,Sally,Brooklyn,Greenpoint,40.72208,-73.94275,Entire home/apt,315,2,0,,,2,364 +27438452,TAO (The Ascending Oasis),204684505,David,Brooklyn,East Flatbush,40.63558,-73.94929,Entire home/apt,199,3,9,2019-05-08,0.81,1,353 +27453970,Manhattan - Master Room - 1mn Metro - Central Park,57002433,Lucile,Manhattan,East Harlem,40.79713,-73.941,Private room,80,1,25,2019-07-02,2.25,2,0 +27454297,Brooklyn Style Hostel RM4 #1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69322,-73.95519,Shared room,36,3,12,2019-06-19,1.06,34,361 +27454358,Sunny Huge Room 3rd Floor,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95108,Private room,40,30,2,2018-12-14,0.27,3,331 +27454691,Myrtle the Turtle Room,32346001,Michael,Brooklyn,Bushwick,40.69854,-73.92373,Private room,106,1,2,2018-10-25,0.22,2,5 +27454904,Spectacular Loft Like Garden Floor,206195782,Leigh,Manhattan,Harlem,40.80804,-73.95373,Entire home/apt,195,2,14,2019-07-01,1.43,1,33 +27455308,SHORT LAYOVER/Weekend GETAWAY FOR 2 Cozy Studio,206889476,Shondel,Queens,Jamaica,40.68078,-73.79492,Entire home/apt,75,1,63,2019-07-05,6.10,1,61 +27455707,Spacious Apartment in Astoria,243321,Richard,Queens,Long Island City,40.76398,-73.92969,Entire home/apt,150,3,0,,,1,0 +27457026,New york Multi-unit building,125320407,Sata,Queens,Jamaica,40.70653,-73.80561,Entire home/apt,1000,2,0,,,5,365 +27457583,"Spacious 2 bdrm -1 block to train, 12 mins to city",201203968,William,Brooklyn,Williamsburg,40.71283,-73.94157,Entire home/apt,160,2,59,2019-06-19,5.46,2,23 +27458304,Palatial Serenity Close to Central Park & Museums,56283770,Lia,Manhattan,Upper East Side,40.76515,-73.96662,Entire home/apt,185,30,0,,,6,123 +27459543,Central Park High Floor Luxury One bedroom,17477908,Mat,Manhattan,Upper West Side,40.79285,-73.9676,Entire home/apt,264,30,2,2018-12-24,0.25,10,343 +27459661,A Quiet Space,206926246,Gwen,Brooklyn,Canarsie,40.62831,-73.89876,Private room,40,3,23,2019-07-05,2.31,1,357 +27460411,"Breathtaking views in this unique, brand new apt",894516,Lev,Queens,Astoria,40.77198,-73.92206,Entire home/apt,120,3,23,2019-06-10,2.10,1,16 +27460536,Heart of Bushwick minutes to the L train,23074465,John,Brooklyn,Bushwick,40.70192,-73.9168,Private room,65,1,31,2019-06-30,3.75,3,134 +27461602,Luxury 2 bdrm Apt near Soho with huge patio,3125234,Timothy,Manhattan,Chinatown,40.71882,-73.99652,Entire home/apt,350,2,8,2019-06-30,0.73,1,52 +27462003,Great Room in Manhattan,184398500,Ernesto,Manhattan,East Harlem,40.80026,-73.94398,Private room,75,1,2,2018-10-07,0.19,1,0 +27462063,Luxurious West Village Studio with Zen Garden,21888830,Jordan,Manhattan,West Village,40.73495,-74.00402,Entire home/apt,190,30,5,2019-04-01,0.60,1,130 +27464651,Magical UWS Manhattan loft with two kitties!,97170205,Kristen,Manhattan,Upper West Side,40.78779,-73.96881,Entire home/apt,65,3,9,2019-01-05,0.87,1,0 +27465159,Amazingly convenient Lower Manhattan 1 Bedroom,206974381,Elijah,Manhattan,Chinatown,40.71709,-73.99746,Entire home/apt,180,2,19,2019-06-22,2.00,1,179 +27465935,Cozy Bushwick Apartment,105983342,Isobel,Brooklyn,Bushwick,40.68863,-73.90638,Entire home/apt,100,1,1,2018-08-27,0.09,1,0 +27466393,Sunny bdr w stunning view in prime Williamsburg!!!,8879096,Cristina,Brooklyn,Williamsburg,40.71688,-73.95107,Private room,65,3,6,2019-04-11,0.54,1,0 +27466647,Le Bain,6485,Saeko,Brooklyn,Bedford-Stuyvesant,40.6813,-73.93304,Entire home/apt,150,5,4,2019-05-09,0.47,1,160 +27467399,Quality accommodation in a prime location!,100704594,Kate,Manhattan,Chelsea,40.74752,-73.9976,Private room,225,3,21,2019-05-21,2.03,1,8 +27468323,*Cozy Room in Manhattan with Private Living Room*,207003851,Carlos Ivan,Manhattan,East Harlem,40.79917,-73.93716,Private room,111,3,9,2018-11-29,0.88,1,3 +27468927,Bright and Modern Luxury Master Room,206778021,Vanessa,Manhattan,Harlem,40.82287,-73.95394,Private room,150,2,26,2019-07-06,2.34,2,55 +27469022,Quaint Apartment in East Harlem,207010341,Maria,Manhattan,East Harlem,40.79578,-73.93398,Entire home/apt,145,5,2,2018-09-03,0.18,2,1 +27470574,Bright private room with high ceilings near subway,35328956,Mansimran,Brooklyn,Bedford-Stuyvesant,40.6905,-73.95906,Private room,57,2,2,2019-03-01,0.32,1,0 +27470676,Country Living Magazine's Inn of the Month!,56283770,Lia,Manhattan,Upper East Side,40.76389,-73.96808,Entire home/apt,135,30,0,,,6,178 +27471155,1 bed entire apartment Williamsburg,202869636,James,Brooklyn,Williamsburg,40.71832,-73.95566,Entire home/apt,150,4,7,2019-05-17,0.63,1,5 +27471933,Beautiful Large Room in Prime Rockaway Location,207038607,Erik,Queens,Rockaway Beach,40.58754,-73.81296,Private room,53,1,14,2019-04-09,1.30,1,357 +27472037,Private Room in Bed-stuy,104569137,Samuel,Brooklyn,Crown Heights,40.67829,-73.9505,Private room,60,2,0,,,1,40 +27472111,"Private .5 bath/ Queen Room Bushwick Brooklyn, NYC",2885704,Victor,Brooklyn,Bushwick,40.69383,-73.92068,Private room,35,2,43,2019-06-23,4.08,2,15 +27473250,The Skyline Loft — Bright Airy Room Near Train,14364462,Ashley,Brooklyn,Bushwick,40.7052,-73.92101,Private room,65,3,3,2019-02-17,0.28,2,0 +27477710,Two bedroom apt w/parking 10mins to LGA & Flushing,157337532,Henry,Queens,College Point,40.77859,-73.84323,Entire home/apt,100,1,62,2019-07-07,6.00,2,77 +27478943,Peaceful Living,132536008,Sarah,Queens,Springfield Gardens,40.6609,-73.75633,Entire home/apt,100,2,4,2019-06-30,1.82,1,178 +27480436,"Luxury penthouse with stunning views, very quiet",52676179,Kathy,Manhattan,Hell's Kitchen,40.76213,-74.00126,Entire home/apt,144,2,2,2019-01-03,0.18,1,0 +27481115,Bedroom in Brooklyn Apartment,170384085,Bethany,Brooklyn,Crown Heights,40.66933,-73.94173,Private room,49,1,13,2018-08-31,1.15,1,0 +27482124,"Large, Bright Studio for Rent",20398684,Heather,Manhattan,Midtown,40.75135,-73.97197,Entire home/apt,120,2,6,2019-04-15,0.62,1,0 +27482592,"Cute, clean and sunny one bedroom with character",52644225,Alex And Tatiana,Queens,Sunnyside,40.74245,-73.92587,Entire home/apt,77,2,3,2018-09-10,0.29,1,0 +27483961,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94976,Private room,60,30,1,2018-12-01,0.14,8,0 +27484611,Apartment in Tribeca with huge private terrace,64971854,Ana Sophia,Manhattan,Tribeca,40.71793,-74.00594,Entire home/apt,160,1,8,2019-04-21,0.73,1,0 +27486545,Affordable cozy private room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73781,-73.80845,Private room,62,1,10,2019-06-23,0.92,5,90 +27487078,Private Suite,1353336,Dennis,Queens,Astoria,40.75759,-73.91703,Private room,90,5,1,2018-09-29,0.11,1,69 +27488220,"Private room Flushing Queens, 15 min from 7train",54508119,Paolo,Queens,Flushing,40.7423,-73.8047,Private room,38,1,16,2019-06-30,1.42,1,362 +27488806,Aesthetically Designed Modern Private Room,206778021,Vanessa,Manhattan,Harlem,40.82221,-73.95606,Private room,150,2,24,2019-06-21,2.38,2,47 +27489188,Nice Apartment in Gramercy Park,27336207,Juan Eduardo,Manhattan,Gramercy,40.73569,-73.98097,Entire home/apt,160,3,6,2019-05-19,0.56,2,0 +27489247,MASSIVE Studio Space,12841127,Savannah,Manhattan,East Harlem,40.7895,-73.94827,Entire home/apt,128,90,8,2019-01-02,0.71,1,0 +27491339,Comfortable Duplex Studio with Balcony! Near train,120643397,Rachel,Brooklyn,Midwood,40.62258,-73.97398,Entire home/apt,139,2,41,2019-07-07,3.70,1,62 +27491393,The Best apartment in Bayridge,207195903,Veronica,Brooklyn,Bay Ridge,40.6294,-74.02258,Entire home/apt,80,3,39,2019-06-23,4.50,1,8 +27491566,Brooklyn Room with private rooftop,48018277,Alejandro,Brooklyn,Bedford-Stuyvesant,40.6922,-73.9415,Private room,85,3,8,2019-06-30,0.77,2,63 +27491585,Private Room in Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.64003,-74.00315,Private room,45,1,8,2019-04-01,0.76,8,0 +27492039,Great Apt With Balcony and Steps To The Subway,166862866,Mariana,Brooklyn,Bedford-Stuyvesant,40.67712,-73.9226,Entire home/apt,148,1,63,2019-07-07,5.61,1,82 +27492139,Sun drenched Artsy One Bedroom,206949054,Sandy,Brooklyn,East Flatbush,40.6648,-73.92672,Entire home/apt,115,1,15,2019-06-29,1.42,1,48 +27492179,Close to Manhattan Quiet Residential Area,207205519,Dimitri,Staten Island,Shore Acres,40.6075,-74.06679,Private room,100,3,0,,,1,90 +27492304,Private Room in Quiet 2 Bedroom,207117606,Sylvia,Brooklyn,Windsor Terrace,40.65668,-73.97827,Private room,75,4,1,2018-11-14,0.13,1,82 +27492948,"Sleek, modern apartment in trendy Bushwick",207216690,Elisa,Brooklyn,Bushwick,40.70098,-73.92135,Private room,75,1,37,2019-06-16,3.34,1,294 +27494148,ONLY 4.3 MILES TO MANHATTAN,54438083,Charles,Queens,Maspeth,40.72373,-73.90881,Entire home/apt,196,2,21,2019-06-30,1.87,3,202 +27494734,New York - Columbia/Harlem big Apartment,22896813,Jacqueline,Manhattan,Morningside Heights,40.81382,-73.95939,Private room,100,3,1,2018-08-12,0.09,1,0 +27498398,"Spacious, Bright Harlem Treetop Duplex",194047658,Jean,Manhattan,Harlem,40.80734,-73.94201,Entire home/apt,290,3,11,2018-12-29,1.02,1,85 +27499097,ELEXEY'S COMFORT....This room is small and cozy.,185889529,Michelle,Queens,St. Albans,40.70531,-73.75835,Private room,46,2,71,2019-07-04,6.51,3,340 +27500496,"Room by Central Park,Harlem, NY",89842859,Charlène,Manhattan,Harlem,40.80138,-73.95107,Private room,68,10,1,2018-09-08,0.10,1,0 +27501755,"Spacious, Sunny 1-Bedroom By the Park",557166,Jonathan,Manhattan,Upper West Side,40.79287,-73.97333,Entire home/apt,150,5,2,2018-09-01,0.18,1,0 +27502928,Sunny East Village Apt,25357997,Andrew,Manhattan,East Village,40.72691,-73.98423,Entire home/apt,149,2,1,2018-08-08,0.09,1,0 +27504048,"Quiet & Cheap, 15 minutes to Manhattan",63199008,Sophia Yi,Queens,Elmhurst,40.74586,-73.89048,Private room,39,3,1,2018-08-20,0.09,1,0 +27504290,Bright & modern one bed in heart of Williamsburg!,33467956,Risa,Brooklyn,Williamsburg,40.71786,-73.95434,Entire home/apt,175,1,15,2019-07-07,1.33,1,8 +27505253,Private room with king sized bed in Brooklyn.,31378,Kristine,Brooklyn,Crown Heights,40.67194,-73.96208,Private room,100,1,12,2019-05-10,1.24,3,2 +27506090,Private room by Time Square,140312311,Jimmy,Manhattan,Hell's Kitchen,40.75478,-73.99604,Private room,100,2,0,,,1,0 +27506095,"Room in Bedstuy! Exposed brick, subways are close",38635971,Eitan,Brooklyn,Bedford-Stuyvesant,40.68299,-73.92713,Private room,60,1,4,2018-08-15,0.36,1,0 +27506113,"Light-filled, Airy, 2-Bedroom w/ City Views",41950627,Lana,Manhattan,Harlem,40.82167,-73.94726,Entire home/apt,175,5,0,,,1,0 +27506443,Modern loft in the best part of Bushwick.,52190465,Sobe,Brooklyn,Bushwick,40.70474,-73.9162,Entire home/apt,100,2,1,2018-08-14,0.09,1,0 +27507137,Homey Harlem Studio,158088272,Connor,Manhattan,Harlem,40.81589,-73.93686,Entire home/apt,76,3,1,2018-11-25,0.13,1,0 +27507299,Sun-filled studio apt in Clinton Hill brownstone,1639484,Megan,Brooklyn,Prospect Heights,40.6814,-73.96584,Entire home/apt,91,5,2,2019-05-16,0.21,1,0 +27507457,THE GARDEN ROOM,6786361,Michael,Brooklyn,Bushwick,40.69633,-73.927,Private room,65,5,13,2019-06-14,1.20,2,310 +27507561,"Bright, Modern, King Size 1-Bedroom in Chelsea!",6344971,Sharat,Manhattan,Chelsea,40.7444,-73.99604,Entire home/apt,240,2,8,2019-03-30,0.71,1,0 +27507663,Exótico,207396117,Carlos,Queens,Sunnyside,40.74233,-73.9125,Shared room,30,1,30,2019-03-04,2.78,1,157 +27507912,Cozy Bushwick apartment in the heart of Brooklyn!,85281944,Evangelia,Brooklyn,Bushwick,40.69857,-73.9142,Entire home/apt,110,1,0,,,1,0 +27508376,Modern Luxury Condo in the UES with Fitness Center,2093069,Jennyfer,Manhattan,East Harlem,40.79228,-73.94013,Entire home/apt,106,2,8,2019-06-10,1.53,1,0 +27508803,Beautiful Sunlit Room in Bushwick,11381575,Sydney,Brooklyn,Bushwick,40.70548,-73.92671,Private room,59,2,8,2019-01-01,0.73,1,0 +27509562,Brooklyn Cozy Corner,207418547,Holly,Brooklyn,Brownsville,40.65934,-73.90245,Private room,45,7,5,2019-04-21,0.53,1,168 +27509983,AMAZING LOCATION - BEAUTIFUL ROOM,6146050,Victoria,Brooklyn,Williamsburg,40.7135,-73.9583,Private room,98,1,0,,,2,0 +27510869,Staten Island Apartment,113295877,Jonathan,Staten Island,Tompkinsville,40.63461,-74.08937,Private room,55,3,6,2018-10-24,0.55,3,154 +27511207,"One Private Bedroom - near Astoria, NY & LGA",106233552,Coco,Queens,East Elmhurst,40.7653,-73.86729,Private room,89,3,0,,,2,23 +27517686,Luxury in classic brownstone. Oversized 1 bedroom.,3116204,Tala,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93916,Entire home/apt,165,5,25,2019-06-26,2.42,1,127 +27518599,Spectacular East Village Loft,207523208,Chris,Manhattan,East Village,40.73052,-73.98277,Entire home/apt,450,3,34,2019-07-05,3.37,1,80 +27519196,Nice Bayside 1 bedroom Apartment,50909051,Miranda,Queens,Bayside,40.76731,-73.76288,Entire home/apt,115,1,6,2019-05-19,0.53,1,179 +27519772,Cute bushwick room,82891189,Veronica,Brooklyn,Bushwick,40.69449,-73.91987,Private room,50,2,2,2019-01-01,0.18,1,0 +27520341,"New condo in LES/China Town, elevator",55149412,Ha,Manhattan,Chinatown,40.71579,-73.99285,Private room,130,3,0,,,4,222 +27521147,Empire State views LUXURY 3BR/2BA w terrace+Gym,131493626,Maya,Manhattan,Murray Hill,40.74828,-73.97917,Entire home/apt,799,5,5,2019-06-19,0.55,1,340 +27521990,Loft-style Bedroom in the heart of Bushwick,22550591,Foteinos,Brooklyn,Bushwick,40.70844,-73.92274,Private room,100,2,5,2018-10-31,0.52,1,0 +27523125,★Private Guest Suite in a great location ★,40511430,Chris,Queens,Woodhaven,40.69783,-73.85221,Private room,70,2,53,2019-07-01,5.28,1,108 +27523631,New york Lovely Guest Room.,34992043,Frances,Queens,Flushing,40.73662,-73.82764,Private room,50,1,20,2019-06-26,1.81,2,188 +27523953,Brooklyn modern Apartment steps to the L train ;-),207582987,Roger,Brooklyn,Bushwick,40.68397,-73.9074,Entire home/apt,138,2,62,2019-07-01,5.67,1,151 +27524142,Gorgeous Room With Private Entrance & Backyard,14278851,Alessandra,Queens,Ridgewood,40.7043,-73.91137,Private room,50,5,2,2018-12-03,0.22,1,15 +27524258,Darling Duplex on UES,17826780,Sam,Manhattan,Upper East Side,40.77454,-73.95454,Entire home/apt,250,30,1,2018-10-07,0.11,1,60 +27524608,Private Room in Stunning East Village Apartment,21858263,Lawrence,Manhattan,East Village,40.73047,-73.98048,Private room,83,2,0,,,1,0 +27524646,"Double, Cozy Room only 20 min to NYC",130074377,Eliana,Queens,Ridgewood,40.70134,-73.909,Private room,89,1,28,2019-07-06,2.60,2,212 +27524836,Quiet and cozy room in Clinton Hill,7098693,Neha,Brooklyn,Bedford-Stuyvesant,40.69073,-73.95965,Private room,75,3,0,,,1,0 +27526504,"Beautiful, cozy, Penthouse Studio in Astoria/LIC",207573589,Cris,Queens,Astoria,40.77032,-73.92621,Entire home/apt,125,1,18,2019-01-01,1.74,1,0 +27526520,Lovely Manhattan Room near GCT / Central Park,137358866,Kazuya,Manhattan,East Harlem,40.79461,-73.94199,Private room,36,30,1,2018-10-01,0.11,103,199 +27526619,Sonder | Hanover Square | Pristine 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70514,-74.00914,Entire home/apt,159,29,0,,,96,325 +27526697,Spacious+Sunny Queens Room. Full kitchen+Roof apt.,20909506,Camile,Queens,Astoria,40.76519,-73.91067,Private room,55,3,2,2018-10-07,0.18,2,0 +27526727,"Stylish 1 bedroom, Upper East Side, E91st",92611851,Mariah,Manhattan,Upper East Side,40.78051,-73.94809,Entire home/apt,160,1,17,2019-06-23,1.62,1,5 +27526910,"Spacious apartment, 20 mins to Manhattan",148705627,Jonathan,Queens,Ridgewood,40.70147,-73.9047,Entire home/apt,170,14,1,2019-06-09,1,2,106 +27526997,"Vie's NY Unique crashpad apts sleep 14, metro*wifi",310670,Vie,Bronx,Eastchester,40.88017,-73.83574,Entire home/apt,475,2,0,,,13,359 +27527039,Sonder | 180 Water | Contemporary 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70788,-74.00484,Entire home/apt,217,29,0,,,96,9 +27527118,Charming Chelsea Bedroom steps from Highline Park,1911615,Conley,Manhattan,Chelsea,40.74755,-74.00317,Private room,77,1,4,2019-02-18,0.36,2,0 +27527478,Great two Bedroom Apartment - 20 mins from NYC.,55184486,Amado,Brooklyn,Bushwick,40.68842,-73.91465,Entire home/apt,175,1,54,2019-07-02,5.26,2,137 +27527902,Cozy 1 bedroom apartment in trendy Bushwick.,101144679,Jorge,Brooklyn,Bushwick,40.6944,-73.9242,Entire home/apt,90,3,26,2019-06-15,2.43,1,3 +27528026,"The GEORGE at Lincoln Center: Duplex, UWS/Times Sq",200829464,Chrisann,Manhattan,Upper West Side,40.77425,-73.98122,Entire home/apt,299,3,33,2019-07-05,2.97,1,96 +27528267,Amazing room & private en-suite bath in Brooklyn!,17518954,Rashmi,Brooklyn,Bedford-Stuyvesant,40.69038,-73.93101,Private room,79,3,44,2019-07-01,4.06,1,91 +27528305,Luxurious Hell’s Kitchen Famous Vibrant NYC!,7985095,Douglas,Manhattan,Hell's Kitchen,40.7645,-73.98788,Entire home/apt,285,2,44,2019-06-30,4.05,3,70 +27528620,Brooklyn Bedroom,193502084,Linda,Brooklyn,Borough Park,40.64039,-74.00252,Private room,45,1,8,2019-03-31,0.81,8,0 +27528935,Private Room in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.63925,-74.00329,Private room,40,1,12,2019-03-23,1.16,8,0 +27529129,Private bedroom with full sized bed,193502084,Linda,Brooklyn,Borough Park,40.63844,-74.00232,Private room,40,1,9,2019-03-23,0.82,8,0 +27529325,Private room and bathroom in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.63889,-74.00244,Private room,40,1,11,2019-03-03,1.09,8,0 +27529458,Nolita One Bedroom with View,33389621,Maura,Manhattan,Little Italy,40.71843,-73.99817,Entire home/apt,124,2,5,2019-03-31,0.46,1,0 +27529564,Queen size bedroom,207651513,Nour,Manhattan,Harlem,40.80907,-73.94444,Private room,60,1,49,2019-05-27,4.85,3,0 +27529655,Sweet room w/attached bath in center of Flushing.,205745676,Liqin,Queens,Flushing,40.75889,-73.82104,Private room,89,1,39,2019-07-07,3.49,9,342 +27530069,Times Square - JULY/AUG Special Price + Netflix,7129207,Nate,Manhattan,Hell's Kitchen,40.76337,-73.9873,Entire home/apt,159,2,58,2019-07-02,5.21,1,124 +27530187,Private Bed & Bath in Heart of Downtown Manhattan,16676759,Derek,Manhattan,Financial District,40.70668,-74.00727,Private room,180,3,10,2019-06-06,0.99,1,48 +27530761,私人空间,190324721,Jun Jun,Queens,Flushing,40.76084,-73.83233,Private room,63,1,22,2019-05-30,1.99,4,347 +27531821,Beautiful Private Bedroom/Kitchen studioPark Slope,147638312,George,Brooklyn,Park Slope,40.67246,-73.97707,Private room,125,5,7,2019-05-29,0.84,1,180 +27532758,"Sunny, Newly Renovated, Private Bushwick Room",192587955,Sania,Brooklyn,Bushwick,40.70276,-73.92899,Private room,70,1,1,2019-06-09,1,1,39 +27534625,Woodside NY Cozy Room-15/20 mins from Time Square.,91646104,Pao,Queens,Woodside,40.74344,-73.91076,Private room,51,3,38,2019-07-02,3.65,3,146 +27538237,Grand Suite in Historic Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67166,-73.94674,Entire home/apt,115,3,34,2019-07-03,4.43,4,249 +27539706,Private city getaway,84459821,Jermaine,Bronx,Parkchester,40.83658,-73.86181,Private room,55,1,32,2019-06-20,2.96,1,333 +27540102,"Sun-drenched Chic SOHO ""Cabin""",206972453,Grant,Manhattan,Nolita,40.72205,-73.99699,Entire home/apt,250,4,16,2019-06-26,1.68,1,0 +27540139,STUDIO IN VILLAGE CHARM~PERRY STREET!,200380610,Pranjal,Manhattan,West Village,40.73485,-74.00313,Entire home/apt,188,30,0,,,65,326 +27542342,2 beautiful & bright bedrooms in a renovated apt.,35660592,Luis,Queens,Elmhurst,40.7335,-73.87571,Private room,149,2,5,2019-06-10,0.46,6,340 +27542642,4Js Home4You,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65074,-73.91633,Entire home/apt,55,1,38,2019-04-28,3.43,3,311 +27542872,One Beautiful Sunny Bedroom with Amazing Views,162282607,Ayesha,Manhattan,Battery Park City,40.71728,-74.01511,Private room,100,1,5,2018-09-06,0.45,1,0 +27543086,Huge Studio in Brooklyn Luxury Building,5108882,Elena,Brooklyn,Fort Greene,40.68905,-73.97991,Entire home/apt,170,2,18,2019-06-16,1.64,1,0 +27543590,Manhattan Home Steps Away from Central Park!,104064206,Faateh,Manhattan,East Harlem,40.79574,-73.94684,Private room,85,1,6,2018-10-08,0.55,1,0 +27544396,1 bedroom apt. in the heart of Upper West Side,111587063,Kirill,Manhattan,Upper West Side,40.79291,-73.97599,Entire home/apt,295,2,24,2019-07-01,2.28,1,70 +27545221,Chinatown New York Apartment,58680528,David,Manhattan,Chinatown,40.71591,-73.99721,Entire home/apt,125,30,39,2019-06-28,3.77,1,32 +27545256,"Sunny, Spacious Bedroom 1/2 Block from Ft Green Pk",8039125,Omar,Brooklyn,Fort Greene,40.68811,-73.97539,Private room,52,4,4,2019-05-31,0.36,1,329 +27545876,"times sq 5 STAR quiet, stylish, safe, doorman bldg",207795404,Ros,Manhattan,Hell's Kitchen,40.75953,-73.98938,Entire home/apt,151,6,22,2019-07-01,2.10,2,56 +27546086,"Beautiful, clean bedroom close to Central Park!",22318190,Jane,Manhattan,East Harlem,40.79657,-73.94932,Private room,90,4,9,2019-04-24,0.82,1,13 +27546132,Cozy large private room near Times Square 31C3,190921808,John,Manhattan,Hell's Kitchen,40.75526,-73.99719,Private room,55,7,5,2019-06-02,0.46,47,342 +27546295,Large cozy NY room near Times Square 51E4,190921808,John,Manhattan,Hell's Kitchen,40.75412,-73.99651,Private room,55,7,1,2019-05-25,0.65,47,360 +27546818,Staying Good location to close US OPEN,142289373,Ellen,Queens,Flushing,40.75361,-73.82014,Entire home/apt,450,3,0,,,1,0 +27546831,Van Cortlandt Multi-Unit Building,207661442,Marcia,Bronx,Kingsbridge,40.88445,-73.89663,Private room,50,1,1,2019-02-15,0.21,1,61 +27547687,Queens Apartment Private Room,177825782,Ada,Queens,Jackson Heights,40.75047,-73.88216,Private room,89,4,2,2019-05-26,0.33,2,175 +27549021,AWESOME MODERN ROOM IN CHARMING AREA+ SWEET ROOF C,29650513,Katie Graham,Brooklyn,Clinton Hill,40.69473,-73.96165,Private room,90,30,1,2019-03-01,0.23,6,281 +27549628,Charming two-bedroom suite in Rockaway Beach,38675275,Margaret,Queens,Belle Harbor,40.57491,-73.84962,Entire home/apt,200,1,32,2019-06-24,3.02,2,324 +27551182,Big Lofty Apartment with Beautiful Rooftop,14727039,Alexandra,Brooklyn,Williamsburg,40.71684,-73.94565,Private room,165,3,0,,,1,89 +27551227,Private Room+Bathroom in DUMBO in luxury building,34161028,Agnese,Brooklyn,Vinegar Hill,40.69949,-73.98319,Private room,116,3,2,2019-05-17,0.32,3,16 +27551268,Studio Gem in Heart of Manhattan (Chelsea),2058584,Andrei,Manhattan,Chelsea,40.74554,-74.00595,Entire home/apt,150,2,7,2019-07-07,0.82,1,3 +27551436,Eco Chic Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68517,-73.99545,Private room,80,7,54,2019-06-30,4.98,2,311 +27551517,"Clean & Sunny room in UES, Doorman+Sunroof+GYM",7186760,Dafna Irit,Manhattan,Upper East Side,40.77742,-73.94687,Private room,70,7,1,2018-10-15,0.11,2,33 +27551619,Spacious room with private bathroom,39285391,Siham,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92331,Private room,65,1,56,2019-06-23,5.27,2,49 +27551715,Brand New Brooklyn Apartment,14049772,Vanessa,Brooklyn,Dyker Heights,40.61968,-74.00656,Entire home/apt,170,4,12,2019-06-10,1.17,1,308 +27551807,The St Marks: A large 7 bedroom 15 mins to Manhtan,5589082,Jenn & JJ,Brooklyn,Crown Heights,40.67578,-73.94159,Entire home/apt,689,2,18,2019-05-23,1.61,1,340 +27552471,Best Brighton Beach welcoming for your stay!,25899890,Youssef,Brooklyn,Brighton Beach,40.57762,-73.96051,Entire home/apt,99,2,2,2018-09-16,0.19,1,0 +27552582,Studio in the Heart of East Village,30680112,Danielle,Manhattan,East Village,40.72951,-73.98576,Entire home/apt,120,2,0,,,1,39 +27552717,Spacious Flat in the Heart of Greenwich Village,9060287,Priya,Manhattan,Greenwich Village,40.73021,-74.00091,Private room,111,3,7,2018-10-22,0.63,1,0 +27552770,Sunny Cozy Room in Bedstuy,14377035,Sebastián Y Natalia,Brooklyn,Bedford-Stuyvesant,40.68529,-73.95438,Private room,43,4,10,2019-06-11,1.02,1,0 +27552868,VIP staycation deluxe movie theater indoor pool,21963202,Journey,Queens,Jamaica Estates,40.71927,-73.7868,Entire home/apt,275,1,0,,,2,329 +27554578,Williamsburg Loft Private Bedroom,23635330,Marissa,Brooklyn,Williamsburg,40.71547,-73.94686,Private room,125,2,3,2018-09-13,0.27,1,54 +27555063,Brooklyn Heights with a breathtaking terrace,63338955,Michael,Brooklyn,Brooklyn Heights,40.6932,-73.9945,Entire home/apt,200,3,4,2019-01-05,0.37,1,0 +27557322,Large sun drenched queen bedroom in Brooklyn Loft,3662122,Tina,Brooklyn,Bushwick,40.70881,-73.92084,Private room,100,3,29,2019-06-18,3.19,3,31 +27557992,Lofted Bedroom in Cool Sundrenched Brooklyn Loft,3662122,Tina,Brooklyn,Bushwick,40.70751,-73.92143,Private room,63,3,5,2019-05-15,0.56,3,0 +27559416,Charming Carnegie Hill Bedroom,21003949,Theodore,Manhattan,East Harlem,40.78899,-73.95204,Private room,150,1,5,2018-11-03,0.48,1,83 +27566002,Modern living in old Harlem (the Scream1),2802223,Raluca,Manhattan,Harlem,40.82789,-73.93812,Private room,60,30,5,2018-10-13,0.47,2,0 +27567455,Best Apartment in Bay Ridge,4232014,Izzie,Brooklyn,Bay Ridge,40.63348,-74.03088,Entire home/apt,100,2,8,2019-07-07,0.76,1,46 +27569308,Fire Escape + Roof Views 30-min from Manhattan,16303550,Arianna,Brooklyn,Bushwick,40.68643,-73.91552,Private room,39,31,1,2018-09-29,0.11,1,35 +27569888,Private bed & Bath 1/2 block from the A Express!,146660704,Amy,Manhattan,Washington Heights,40.85199,-73.93701,Private room,90,2,24,2019-07-06,2.39,1,119 +27570074,Lovely 3 bedroom Townhouse in BK Historic District,1898675,Lee + Amber,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.95598,Entire home/apt,195,3,33,2019-06-28,3.20,1,241 +27570295,Super Cute 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74211,-73.97887,Entire home/apt,142,30,1,2018-10-13,0.11,91,364 +27570463,LUXURY STAYING IN BROOKLYN (Bed-Stuy),10016960,Deniz,Brooklyn,Bedford-Stuyvesant,40.67772,-73.9233,Private room,55,2,18,2019-07-02,1.73,1,310 +27570485,1 Bedroom off Columbus fit for a King,61391963,Corporate Housing,Manhattan,Upper West Side,40.78488,-73.97325,Entire home/apt,142,30,3,2019-06-18,0.32,91,213 +27571163,"Beautiful S Williamsburg 1 Bdrm near G,L,J,M,Z",24862289,Thaddeus,Brooklyn,Williamsburg,40.70865,-73.94631,Entire home/apt,150,4,9,2019-06-30,0.89,1,0 +27572554,Sunny Master Bedroom In Prime Williamsburg 30 Days,120749029,Joe And Shelly,Brooklyn,Williamsburg,40.70722,-73.94121,Private room,65,27,4,2019-04-29,0.44,2,154 +27572832,Spacious & Sunny Master w Private Bath,167775339,Lydia,Queens,Woodside,40.7488,-73.90362,Private room,86,1,12,2019-02-04,1.28,1,0 +27573483,"Fort Greene two bedroom, quiet and peaceful",1180925,Mark,Brooklyn,Fort Greene,40.69488,-73.97222,Entire home/apt,200,7,1,2018-09-21,0.10,3,163 +27573704,Beautiful private room in luxury building,44514753,Jonathan,Brooklyn,Williamsburg,40.71239,-73.95271,Private room,65,4,2,2018-09-08,0.19,1,0 +27573767,Heart of the West Village Apartment,49283943,Oliver,Manhattan,West Village,40.73762,-74.002,Entire home/apt,400,5,1,2018-11-04,0.12,1,0 +27573861,Brooklyn Style Hostel Private Room #5,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69459,-73.95561,Private room,55,2,13,2019-05-02,1.19,34,330 +27576267,Cosy & Clean studio apt in the heart of Manhattan,15272878,Jane,Manhattan,Kips Bay,40.74104,-73.98134,Entire home/apt,150,2,0,,,1,0 +27577076,Grand 2 bed Apartment in Heart of Harlem,8663057,Alli,Manhattan,East Harlem,40.80226,-73.93583,Entire home/apt,175,3,27,2019-06-28,2.53,2,128 +27578298,Large studio apt in Grammercy,506194,Shivani,Manhattan,Kips Bay,40.73995,-73.98401,Entire home/apt,150,15,1,2018-09-11,0.10,1,5 +27579255,Loft Style Bushwick Apartment,16725437,Tobias,Brooklyn,Bushwick,40.70432,-73.91897,Private room,59,5,8,2019-05-11,0.74,1,177 +27579698,Wyndham Midtown 45 (2 Bedroom Presidential) 7A,100238132,Michael,Manhattan,Midtown,40.75361,-73.97202,Entire home/apt,339,3,7,2019-04-01,0.74,12,0 +27579796,New York home ferry ride from Manhattan.,169567256,Pariis,Staten Island,Tompkinsville,40.63183,-74.09268,Private room,100,2,1,2018-11-04,0.12,1,0 +27579844,Wyndham Midtown 45 (2 Bedroom Presidential) 6A,100238132,Michael,Manhattan,Midtown,40.75216,-73.97351,Entire home/apt,339,3,4,2019-04-03,0.41,12,0 +27579923,Highline Hudson Yards Studio,161279657,Michelle,Manhattan,Chelsea,40.75255,-74.00118,Entire home/apt,350,3,0,,,1,0 +27580312,The Pit of Despair,208099979,Yianni,Manhattan,Upper East Side,40.78117,-73.95688,Private room,105,1,3,2019-03-15,0.28,1,90 +27580328,Large comfortable home 2 blocks from Times Square,207833780,Genisley,Manhattan,Hell's Kitchen,40.76228,-73.99026,Entire home/apt,195,2,53,2019-06-23,4.86,1,150 +27580964,"Cozy, walk to Central Park, Columbia & Morningside",208106618,Paul A,Manhattan,Harlem,40.8031,-73.95654,Private room,79,1,8,2018-10-13,0.75,1,0 +27581016,Zen Room in Prime Bushwick,23884430,Yuting,Brooklyn,Bushwick,40.69673,-73.92338,Private room,55,1,64,2019-07-03,5.87,3,149 +27581411,Authentic NYC Getaway - Large 2BR w Priv Rooftop,16931119,Barron,Brooklyn,Williamsburg,40.71722,-73.95361,Entire home/apt,200,2,1,2019-01-02,0.16,1,27 +27581615,"Large Private 1 Bed Room Apartment, Hell's Kitchen",71299428,Andy,Manhattan,Hell's Kitchen,40.75906,-73.99321,Entire home/apt,159,2,3,2018-12-30,0.31,1,0 +27582416,Luxury Private Condo/Apartment,69997531,Markus,Brooklyn,Crown Heights,40.67512,-73.94192,Private room,82,2,21,2019-06-30,1.94,1,175 +27584413,Chic Designer Home Guest Studio,69366752,Maggie,Queens,Forest Hills,40.73469,-73.85426,Entire home/apt,65,2,59,2019-07-01,5.50,2,127 +27584915,CLEAN PRIVATE bathroom in Newly built in 2014,204704622,Momoyo,Queens,Elmhurst,40.73874,-73.87615,Private room,59,29,0,,,7,41 +27584957,4Js Room4You,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65068,-73.91811,Private room,75,1,2,2019-04-26,0.21,3,125 +27585752,Modern & Airy 1 Bedroom Apt in heart of Greenpoint,33767755,Miriam,Brooklyn,Greenpoint,40.73357,-73.95908,Entire home/apt,136,2,13,2019-07-02,1.32,1,3 +27585912,Room4You by 4Js,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65181,-73.91672,Private room,65,1,4,2019-02-06,0.39,3,125 +27589169,Convenient & Sunny Room Close to Central Park,61042,Marlon,Manhattan,East Harlem,40.79836,-73.94272,Private room,49,5,14,2019-06-12,1.37,6,12 +27593034,Cozy Manhattan apartment!,10366675,Kelli,Manhattan,Greenwich Village,40.73578,-73.99682,Entire home/apt,300,4,5,2018-11-04,0.48,1,0 +27593335,Large sunny 1 bedroom with everything you need,6067124,Chelsea,Brooklyn,Carroll Gardens,40.68307,-73.99226,Entire home/apt,160,4,2,2019-05-06,0.23,1,4 +27593369,Small humble apartment in perfect location LES,208206416,Mina,Manhattan,Lower East Side,40.71815,-73.98858,Entire home/apt,150,7,8,2019-06-11,0.79,1,290 +27596342,Rainbow Guesthouse 1-1 Female room,124399442,Igor,Brooklyn,Midwood,40.61241,-73.95939,Shared room,32,7,0,,,4,21 +27596820,Brooklyn Style Hostel RM4 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95542,Shared room,36,1,9,2019-05-05,0.82,34,365 +27598172,Studio-like space & Kitchen all for you,19000768,Karina,Queens,Sunnyside,40.74194,-73.92353,Entire home/apt,79,2,6,2019-01-10,0.54,2,0 +27598707,Freehand New York- Artist Room,164291123,Freehand,Manhattan,Gramercy,40.73928,-73.98638,Private room,129,1,35,2019-04-20,3.30,3,365 +27599185,Legal Redesigned 2 BDRS PARK SLOPE/Prospect Park!,87786261,Sophia,Brooklyn,South Slope,40.66055,-73.98597,Entire home/apt,159,1,11,2019-06-09,1.05,5,262 +27600209,Modern studio in Harlem,101170153,Wale,Manhattan,Harlem,40.81709,-73.94217,Entire home/apt,100,5,10,2019-04-11,0.92,1,177 +27600437,"Sunny Hudson Yards/ Chelsea Studio, Free WiFi",7245581,Michael,Manhattan,Chelsea,40.74912,-73.99739,Entire home/apt,93,105,1,2018-12-02,0.14,19,332 +27601676,"Entire Apt. *Huge 1,600 SF 3BR* *Dining&Living Ro",63903815,David,Manhattan,Upper West Side,40.79666,-73.97334,Entire home/apt,220,6,0,,,1,0 +27602303,"Private Spacious Studio Apartment, Rooftop access",6663544,Donna,Manhattan,Harlem,40.81756,-73.94099,Entire home/apt,86,4,3,2018-09-23,0.28,1,0 +27602495,New York Apartment,15322945,Loris,Manhattan,Inwood,40.86139,-73.92744,Private room,60,1,26,2019-05-26,2.36,1,365 +27602987,Spacious Greenpoint room steps away from G train,24909331,Katherine,Brooklyn,Greenpoint,40.73354,-73.95576,Private room,105,4,0,,,1,8 +27603879,Chic and unique Attic bedroom in a shared duplex,181651082,Fran,Queens,Rosedale,40.66049,-73.73496,Private room,60,1,6,2019-06-23,0.58,3,167 +27603936,Trendy and Stylish Downtown apartment !!!,52262348,Elena,Manhattan,Lower East Side,40.7188,-73.98554,Entire home/apt,185,3,10,2019-05-05,0.97,1,0 +27604258,5 Stars Maple *****,156586664,Hugh,Queens,Flushing,40.75389,-73.83192,Private room,75,1,65,2019-07-06,6.11,1,139 +27604639,Convenient Apartment in Washington Heights,5466113,Pedro,Manhattan,Washington Heights,40.85268,-73.92716,Entire home/apt,95,1,42,2019-06-13,4.00,1,2 +27606109,Cozy Bklyn Minimalism Private Bdrm in 2Bdrm w/ Gym,22011768,Javonne,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9486,Private room,42,2,34,2019-05-27,3.29,1,9 +27606720,Serene Bedroom & Boudoir in Design Loft,16356851,Sophia,Brooklyn,Greenpoint,40.73439,-73.95839,Private room,120,5,8,2019-06-13,0.79,2,179 +27608063,Best of Both Worlds! Sunny Bedroom 15 Min to NYC,6388234,Andi,Queens,Forest Hills,40.71852,-73.84577,Private room,120,2,0,,,1,35 +27609132,Brooklyn spot right next to express train,207213839,Sheneque,Brooklyn,Sunset Park,40.64136,-74.01898,Entire home/apt,120,3,0,,,1,0 +27609355,Bedroom available 20 mins to Manhattan!!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68977,-73.92723,Private room,37,30,0,,,5,214 +27610009,"Large, beautiful 2 bdrm in Harlem, fits 6 people",125857611,Legera,Manhattan,Harlem,40.81162,-73.95199,Entire home/apt,350,3,2,2018-10-23,0.19,1,0 +27610245,Brand New 1 Bedroom w/Parking-25 Mins to Manhattan,59765638,Philip,Queens,Douglaston,40.76561,-73.7464,Entire home/apt,125,3,16,2019-06-19,1.51,1,123 +27610753,Historic Brooklyn Brownstone Apartment,208346552,Adrian,Brooklyn,Windsor Terrace,40.65818,-73.98031,Entire home/apt,165,3,55,2019-07-02,5.11,1,37 +27610995,PRIVATE BEDROOM in spacious apartment in the UWS!,17278356,Nico,Manhattan,Upper West Side,40.79099,-73.97293,Private room,230,3,14,2019-05-29,1.28,1,0 +27611098,Bright spacious home in the Upper East,24363273,Kelly,Manhattan,East Harlem,40.78549,-73.94895,Entire home/apt,200,20,1,2018-08-10,0.09,1,341 +27612070,Stylish Studio Perfect Location-Empire State,89767580,Jk,Manhattan,Midtown,40.74673,-73.98499,Entire home/apt,250,5,59,2019-06-24,5.82,1,58 +27612667,Williamsburg Loft Hideaway,10511660,Nicole,Brooklyn,Williamsburg,40.70666,-73.96629,Entire home/apt,290,4,12,2019-06-23,1.25,1,117 +27612876,Spotless room w/attached bath. Center of Flushing,205745676,Liqin,Queens,Flushing,40.7594,-73.81971,Private room,80,1,21,2019-05-19,1.90,9,362 +27612925,Shared room with bunk beds,208367810,Dan,Brooklyn,Borough Park,40.64047,-73.99687,Shared room,25,3,8,2019-01-02,0.77,4,88 +27613128,Shared room with bunk beds in Bensonhurst,208367810,Dan,Brooklyn,Gravesend,40.60059,-73.98818,Shared room,35,3,2,2019-04-03,0.32,4,50 +27620424,Two bedrooms apt. in Jamaica Estates,194520886,Nazma,Queens,Jamaica Estates,40.7143,-73.78985,Entire home/apt,150,1,20,2019-05-23,1.92,2,147 +27622210,Quiet and modern Williamsburg garden 1BR,402569,Celia,Brooklyn,Williamsburg,40.71295,-73.94459,Entire home/apt,180,3,22,2019-06-16,1.98,1,98 +27623260,Upper East Side creative sanctuary apartment,17898332,Zizi,Manhattan,Upper East Side,40.78497,-73.95201,Entire home/apt,150,4,7,2019-06-24,0.69,1,0 +27623360,"Studio at Upper East Side Manhattan, New York",95642648,Тest,Manhattan,Upper East Side,40.77713,-73.95309,Entire home/apt,95,4,3,2018-08-21,0.27,2,0 +27624476,Spacious Harlem Room,26185286,Silvia,Manhattan,Harlem,40.82923,-73.93764,Private room,120,3,22,2019-06-28,2.10,1,10 +27624539,Flatiron Penthouse,46935284,Ben,Manhattan,Gramercy,40.73801,-73.98815,Entire home/apt,400,4,2,2018-12-04,0.25,1,0 +27627627,New York Condominium,3250725,Ken,Manhattan,SoHo,40.7206,-74.0033,Entire home/apt,1100,3,5,2018-12-27,0.52,1,180 +27627991,Cozy clean Studio Apartment in Luxury Building,208485817,Canet,Brooklyn,Bushwick,40.69616,-73.92905,Entire home/apt,160,5,0,,,1,0 +27628195,Cozy/Spacious Master Bedroom Apt-20min to Manhattn,144699715,Shinhee,Brooklyn,Bedford-Stuyvesant,40.69442,-73.95144,Entire home/apt,60,4,1,2018-11-25,0.13,1,0 +27628302,Beach Oasis and NYC only 45 minutes away!,83203036,Flo,Queens,Arverne,40.58845,-73.80015,Entire home/apt,130,2,0,,,1,215 +27628465,Lovely Studio in Brooklyn with Rooftop & Garden,208488535,Mehdi,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94389,Entire home/apt,150,4,7,2019-05-27,0.65,1,0 +27628480,Great room#1,208136645,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.94352,Private room,49,2,9,2019-06-02,0.83,4,132 +27628754,NYC entire 2 bd apartment 15 min to Manhattan,68907781,Dafni,Queens,Astoria,40.76892,-73.92919,Entire home/apt,120,1,5,2019-05-27,0.52,3,0 +27629043,A Night at Anchor Aboard Yacht Ventura,45863742,James,Manhattan,Battery Park City,40.71364,-74.01758,Entire home/apt,3750,1,0,,,1,365 +27629538,Artsy 1 bedroom Apartment Steps to Subway,2886359,David,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91546,Entire home/apt,100,1,5,2019-05-04,0.63,2,0 +27630335,Brooklyn Bed Stuyvesant Private Home,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.691,-73.93837,Entire home/apt,139,1,10,2019-06-08,0.94,9,20 +27630572,Upper West Side Studio,44034761,Matt,Manhattan,Upper West Side,40.77979,-73.98513,Entire home/apt,135,1,0,,,2,93 +27632141,"Cozy BK Home,Near JMZ lines,15-25 min to Manhattan",70997341,Kriti,Brooklyn,Bushwick,40.69768,-73.93511,Private room,59,2,26,2019-06-18,2.39,1,0 +27632496,In a heart of queens /// QUEEN SIZE ROOM ///,181885938,Ismael,Queens,Elmhurst,40.73394,-73.87207,Private room,60,2,11,2019-05-31,1.05,2,318 +27633968,Lower East Side Oasis,12970838,Vanja,Manhattan,Lower East Side,40.72159,-73.98959,Entire home/apt,197,5,1,2018-12-04,0.14,1,12 +27633987,One bedroom apt in a brownstone - Manhattan,208531763,Féven,Manhattan,Harlem,40.81915,-73.9425,Entire home/apt,112,4,9,2019-06-22,1.04,1,89 +27635012,East Village duplex with private roof access!,26825592,Jeff,Manhattan,East Village,40.73028,-73.98165,Entire home/apt,140,2,19,2019-06-02,1.76,1,18 +27636227,Astoria Artist Abode,20267436,Joe,Queens,Ditmars Steinway,40.77516,-73.90558,Private room,125,1,0,,,1,363 +27636889,Pure luxury one bdrm + sofa bed on Central Park,5790236,Clay,Manhattan,Upper West Side,40.78837,-73.96821,Entire home/apt,245,2,33,2019-06-25,3.14,2,262 +27637065,"Airy, modern apartment in a Brooklyn Brownstone",13462855,Travis,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93966,Entire home/apt,175,4,6,2019-04-01,0.58,2,1 +27637220,Best of Bk 20min to Manhtn & 5min to Williamsburg,55170899,Ana,Brooklyn,Greenpoint,40.72586,-73.94547,Entire home/apt,199,2,14,2019-05-28,1.28,1,250 +27637755,Unfinished basement unit under private house,64450303,Elizabeth,Brooklyn,Flatlands,40.62776,-73.94137,Entire home/apt,65,2,97,2019-07-08,8.87,2,7 +27638014,Beach Bungalo Steps to Bay Bike to Beach. Rockaway,23299832,Jodi,Queens,Arverne,40.59787,-73.79759,Entire home/apt,250,1,0,,,1,90 +27638567,Beautiful home,208574990,Hattie,Bronx,Unionport,40.82972,-73.84957,Private room,60,1,0,,,1,268 +27639125,⭐⭐⭐Sleeps 10! Rare 4 Bedroom Apt Close to NYC,208580991,Sophie,Queens,Elmhurst,40.73224,-73.87534,Entire home/apt,229,2,37,2019-04-22,3.58,1,0 +27639832,Welcome to Historic Harlem!,45835291,Shareef,Manhattan,Harlem,40.82424,-73.9554,Private room,70,7,49,2019-06-29,4.55,6,22 +27649154,"*Luxury 1 BR w/ your own Bathroom, steps to subway",93153006,Lili,Brooklyn,Bushwick,40.69399,-73.92472,Private room,88,7,21,2019-06-21,1.91,1,54 +27649404,Charming Private Room,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69339,-73.93971,Private room,55,2,41,2019-06-16,3.73,3,358 +27649901,Beautiful Private Room in BK,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69197,-73.94052,Private room,55,2,27,2019-06-23,2.47,3,346 +27650083,Excellent Brooklyn Private Room,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93872,Private room,55,2,27,2019-06-11,2.46,3,351 +27650553,Cosy bedroom in Bushwick close to L&M train,7780845,Liset,Brooklyn,Bushwick,40.70133,-73.91726,Private room,65,2,3,2019-06-23,0.28,3,28 +27650624,Dawn til' Dusk ROOFTOP! Only for the Day-late!,103865219,Dawn,Brooklyn,Bedford-Stuyvesant,40.67973,-73.92592,Entire home/apt,350,1,2,2019-06-23,1.58,1,127 +27652402,**Excellent Private Room w/Comfy Bed**,38123545,Daisy,Brooklyn,Bedford-Stuyvesant,40.6912,-73.9394,Private room,52,2,25,2019-06-24,2.31,2,328 +27653212,**Great Budget Private Room**,38123545,Daisy,Brooklyn,Bedford-Stuyvesant,40.69015,-73.94075,Private room,55,2,24,2019-06-24,2.32,2,347 +27653304,Artist Loft,46176891,Ekin,Brooklyn,Williamsburg,40.70601,-73.92825,Entire home/apt,160,2,0,,,1,0 +27654484,Greenpoint Williamsburg Jewel for 6,89031106,Edyta,Brooklyn,Greenpoint,40.72409,-73.95039,Entire home/apt,125,5,5,2019-05-30,1.17,4,68 +27654829,Spacious Union Square / Greenwich Village Home,113697596,Mitchell,Manhattan,Chelsea,40.73639,-73.99318,Private room,200,4,13,2019-05-20,1.23,1,172 +27656004,Cozy Brooklyn Apartment,45675260,Victoria,Brooklyn,Bushwick,40.69632,-73.9193,Private room,65,3,5,2018-09-21,0.46,2,0 +27656104,Charming bedroom w private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71015,-73.94654,Private room,85,4,1,2018-09-13,0.10,2,0 +27656752,Traditional NYC Oasis - Near Times Square,208699273,Spencer,Manhattan,Hell's Kitchen,40.76384,-73.98822,Entire home/apt,379,2,31,2019-06-21,3.24,1,238 +27656768,Central Park North Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80116,-73.96088,Private room,69,2,10,2019-04-07,0.91,4,0 +27657263,Private Room in Spacious Apartment,45675260,Victoria,Brooklyn,Bushwick,40.69792,-73.91886,Private room,65,3,5,2019-01-02,0.48,2,6 +27657926,Cozy One Bdr Apt.. Minutes away from Times Square!,21785798,Donald,Manhattan,Harlem,40.81493,-73.93953,Entire home/apt,175,5,1,2018-10-06,0.11,1,89 +27658108,"Cozy, artistic studio in the heart of Bushwick",126024716,Alicia,Brooklyn,Bushwick,40.7044,-73.92111,Entire home/apt,100,3,6,2018-12-29,0.55,1,0 +27658203,Sunny Room in Sunset Park Industry City Brooklyn,195517789,Patricia,Brooklyn,Sunset Park,40.65092,-74.00489,Private room,50,3,39,2019-07-02,3.79,2,300 +27659298,Sonder | 180 Water | Luxurious 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70761,-74.00513,Entire home/apt,294,29,0,,,96,38 +27659540,One Bedroom in Gramercy,21923346,John,Manhattan,East Village,40.73215,-73.9866,Entire home/apt,225,2,6,2019-01-23,0.57,1,87 +27659585,Spacious and Modern 1 bed apt. In luxury bldg,45336046,Edwin,Manhattan,Harlem,40.8154,-73.94677,Entire home/apt,175,2,1,2018-08-25,0.09,1,14 +27660427,FORDHAM DELUXE,199070207,Oscar,Bronx,Kingsbridge,40.863,-73.90661,Private room,80,3,24,2019-06-23,2.91,2,72 +27661175,Vibrant Neighborhood & Convenient Location 2BR,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69236,-73.93759,Entire home/apt,155,1,17,2019-05-26,1.65,9,118 +27662837,Single room w/ attached bath in heart of Flushing,205745676,Liqin,Queens,Flushing,40.75732,-73.82075,Private room,75,1,25,2019-06-29,2.31,9,360 +27663407,Reader’s Nook,23884430,Yuting,Brooklyn,Bushwick,40.69372,-73.92801,Private room,55,1,47,2019-07-07,4.31,3,0 +27663483,Lux Apartment across Hudson River - city view,77829151,Cal,Manhattan,Hell's Kitchen,40.76164,-73.99804,Entire home/apt,239,4,2,2019-01-02,0.21,1,0 +27670819,"Large BR in beautiful 2BR artist loft, best of NYC",112545065,Diana,Brooklyn,Bushwick,40.69898,-73.92266,Private room,50,7,1,2019-05-24,0.65,2,55 +27671796,lovely room,75587530,Annie,Manhattan,Upper East Side,40.77943,-73.95456,Shared room,90,26,0,,,2,90 +27672277,"Bay Ridge, Vista Place",208856601,Mason,Brooklyn,Bay Ridge,40.63368,-74.01956,Entire home/apt,300,3,8,2019-06-25,0.83,1,125 +27672939,Lovely garden level apartment Brooklyn brownstone,22622958,Wayne,Brooklyn,Park Slope,40.67889,-73.97813,Entire home/apt,285,2,25,2019-07-01,2.35,2,36 +27673543,PLUSH APARTMENT WITH HIGH CEILINGS!,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69155,-73.95714,Entire home/apt,250,4,36,2019-07-02,3.34,3,202 +27675041,"Brooklyn, Bedstuy, Crown Heights Private Room",208882093,Devaughn,Brooklyn,Crown Heights,40.67522,-73.91938,Private room,85,1,1,2018-12-21,0.15,1,65 +27675173,"beautiful, converted multi-unit building",18763685,Sabina,Manhattan,East Village,40.7309,-73.98671,Entire home/apt,330,2,8,2019-07-02,0.74,1,5 +27676268,Large room w/ attached bath in heart of Flushing,205745676,Liqin,Queens,Flushing,40.75828,-73.82145,Private room,85,1,31,2019-06-14,2.81,9,337 +27677746,Private floor / bedroom/ bathroom + TERRACE!,3598079,Kristina,Manhattan,Midtown,40.75453,-73.96841,Private room,120,1,12,2019-06-05,1.11,1,0 +27677869,Stay comfortably with us. You'll be back again....,208906697,Maxime,Bronx,Longwood,40.82248,-73.89915,Private room,50,1,13,2019-05-29,1.26,1,280 +27677962,Cozy 1BR Apartment in Williamsburg,115154494,Joseph,Brooklyn,Williamsburg,40.71727,-73.94821,Entire home/apt,150,3,6,2019-01-01,0.61,1,0 +27678012,"Private Room in PRIME Williamsburg, Brooklyn",56546581,Moné,Brooklyn,Williamsburg,40.71877,-73.96093,Private room,63,10,2,2019-03-30,0.52,1,0 +27678171,~*PLANT HAVEN*~ Private Room -Charming Garden Apt,94390487,Samantha,Brooklyn,Bedford-Stuyvesant,40.68592,-73.93117,Private room,85,3,11,2019-05-27,1.04,1,170 +27678259,Studio Apartment in Queens,208911587,Mari,Queens,Springfield Gardens,40.66448,-73.76479,Entire home/apt,85,3,33,2019-06-16,3.07,1,44 +27678634,Brooklyn Chill & Explore,105828180,Guy,Brooklyn,Crown Heights,40.66872,-73.95343,Private room,43,2,57,2019-06-28,5.52,3,81 +27680233,"Cute Room in Boho NYC Apt: Quiet, Close to Trains!",183330366,Max & Katie,Manhattan,Little Italy,40.71714,-73.99815,Private room,80,2,65,2019-07-05,6.35,1,12 +27681015,Amazing 3BR/2Bath Apt in the coolest Brooklyn Spot,118226205,Sahar,Brooklyn,Williamsburg,40.71582,-73.94191,Entire home/apt,172,3,32,2019-06-13,3.12,3,78 +27681497,Private top-floor in historic Brooklyn Brownstone,38956453,Paula And Jorge,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9358,Entire home/apt,125,2,51,2019-07-01,5.03,1,89 +27681710,"Private room W/ private bathroom, shower, balcony",208260240,Stan,Brooklyn,Brighton Beach,40.58087,-73.95974,Private room,45,1,1,2019-07-07,1,1,39 +27681714,"Studio in our home Jamaica, Queens 17Min JFK",208946050,Daphnee/Allan,Queens,Jamaica,40.69576,-73.78867,Entire home/apt,54,2,45,2019-06-21,4.18,1,12 +27681899,Cozy One Bedroom Manhattan Apartment with Office,128610997,Zani,Manhattan,Harlem,40.82663,-73.94108,Entire home/apt,170,3,3,2018-12-08,0.28,2,180 +27682748,Child Friendly Cat Lovers Apartment,3800338,Marie,Brooklyn,Flatbush,40.64599,-73.95986,Private room,50,2,2,2019-07-01,2,1,77 +27682933,Best Deal in Brooklyn Bedroom with own Bathroom,208955733,Candace,Brooklyn,East Flatbush,40.65625,-73.9218,Private room,80,1,77,2019-07-01,7.00,4,345 +27684910,New york Single family home,85113502,Sheldon,Queens,St. Albans,40.70245,-73.76925,Private room,55,1,0,,,1,8 +27686998,Cozy private room near Roosevelt Av - Jackson Hts,137358866,Kazuya,Queens,Woodside,40.74146,-73.89341,Private room,33,30,1,2019-02-15,0.21,103,246 +27689960,Cozy Room in a Brooklyn Apartment,4415812,Stephanie,Brooklyn,Flatbush,40.64011,-73.95773,Private room,45,4,24,2019-06-21,2.44,1,4 +27692424,charming and unique studio at toplocation,52363997,Julie,Manhattan,Upper East Side,40.76066,-73.96397,Entire home/apt,150,1,2,2019-07-01,2,1,0 +27693410,Princess Palace Purple,44469259,Layla,Brooklyn,Bedford-Stuyvesant,40.69309,-73.93051,Private room,37,2,44,2019-04-27,4.04,2,1 +27693532,Light one bedroom apartment in Soho!,1423082,Alice,Manhattan,Nolita,40.72265,-73.99458,Entire home/apt,150,2,26,2019-05-27,2.41,1,0 +27693980,Excellent room 20 minutes from Manhattan by train,175182004,Miguel,Queens,Ditmars Steinway,40.77668,-73.90668,Private room,60,1,3,2018-12-28,0.45,1,40 +27694474,Studio. Cozy. Private. Sunny. Sparkling clean.,38272413,Vasily,Brooklyn,Midwood,40.61358,-73.95484,Entire home/apt,71,2,3,2018-09-23,0.28,2,0 +27694593,New York East village Artsy Apartment,15537429,Walid,Manhattan,East Village,40.72658,-73.97753,Entire home/apt,158,2,21,2019-07-02,3.07,3,18 +27695133,Smart Home in the Heart of Harlem,102332204,Theodora,Manhattan,Harlem,40.81658,-73.93994,Entire home/apt,150,2,11,2019-06-20,2.92,1,38 +27695485,The Woodside Story- Private bathroom (1),158407820,Omar,Queens,Woodside,40.75398,-73.90084,Private room,58,2,32,2019-06-24,2.96,5,88 +27695755,7mins to subway-28 mins Manhattan (3),158407820,Omar,Queens,Woodside,40.75375,-73.90037,Private room,57,2,21,2019-06-02,1.94,5,125 +27696495,Sunny mega happy kings room,53127489,Will,Queens,Ridgewood,40.70609,-73.90592,Private room,65,2,0,,,2,0 +27697082,Manhattan white room. Walk to central park,98260543,Ley,Manhattan,Upper East Side,40.76988,-73.95352,Private room,155,1,13,2019-06-12,1.25,3,312 +27697284,Cozy Spacious Loft Convenient to City,875439,Sami,Queens,Jackson Heights,40.74997,-73.87851,Entire home/apt,185,3,25,2019-07-02,3.21,1,55 +27697402,Sunny and Bright Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93686,Private room,86,2,2,2019-05-18,0.97,5,342 +27699052,Cozy Brooklyn Room with private bathroom,8855004,Peach,Brooklyn,Bedford-Stuyvesant,40.68891,-73.95164,Private room,65,1,1,2018-08-20,0.09,1,0 +27700332,Fam-Friendly Brooklyn Brownstone w. Vintage charm,2362991,Ashley,Brooklyn,Bedford-Stuyvesant,40.68398,-73.93464,Entire home/apt,139,2,6,2019-06-27,2.02,1,0 +27700366,Huge Apartment Midtown Manhattan Empire State Bldg,89332421,Mohit,Manhattan,Kips Bay,40.74462,-73.97838,Entire home/apt,187,3,4,2019-03-25,0.53,1,0 +27700747,Beach-side basement media room,145245549,Dawid,Staten Island,New Dorp Beach,40.56629,-74.10331,Private room,36,2,18,2019-06-07,1.67,1,178 +27700795,Apartment in the Heart of Manhattan,50183471,Meryl,Manhattan,Hell's Kitchen,40.75597,-73.9955,Entire home/apt,120,14,15,2019-07-01,1.80,1,0 +27701535,Place for sleeping and exploring NYC,209121939,Linda,Manhattan,Harlem,40.82005,-73.93949,Private room,65,1,21,2019-06-17,1.94,2,58 +27703016,New York Apartment,157209452,Mansi,Manhattan,Nolita,40.72194,-73.99557,Private room,120,1,9,2018-10-20,0.85,1,179 +27703561,both world getting to the city and safe place,15486514,Nathan,Bronx,Parkchester,40.8358,-73.85833,Shared room,65,2,4,2018-11-25,0.39,2,0 +27703578,"Charming Chelsea Bungalow w/ +Large Outdoor Terrace",1008066,Francesca,Manhattan,Chelsea,40.74557,-73.99871,Entire home/apt,250,2,14,2019-05-26,1.51,1,28 +27703666,Sunny Large 1BR w/balcony,27610676,Richard,Queens,Bayside,40.76189,-73.77349,Entire home/apt,120,2,7,2019-07-05,0.90,1,41 +27703756,Gorgeous 3BR Home Bear JFK & only 25min to NYC,32126880,Bryant,Queens,Laurelton,40.67563,-73.74713,Entire home/apt,175,2,6,2019-06-15,0.97,2,317 +27703757,Beautiful 4 Bdrm Home - 25 min from Manhattan,32126880,Bryant,Queens,Laurelton,40.67525,-73.74625,Entire home/apt,200,2,6,2019-06-24,0.92,2,321 +27703859,"Chic, Spacious Upper West Side Studio",92509169,Abbey,Manhattan,Upper West Side,40.78348,-73.98383,Entire home/apt,148,2,18,2019-06-21,1.74,1,1 +27703865,Brooklyn Private Apartment,209147067,Maria,Brooklyn,Borough Park,40.6448,-73.99524,Entire home/apt,120,2,5,2019-01-04,0.52,1,3 +27704612,Beautiful Historic Townhouse w/ Backyard(Duplex),1213248,Laurence,Manhattan,Harlem,40.80722,-73.9491,Entire home/apt,159,3,31,2019-07-03,3.07,1,358 +27704712,Spacious 2BR with Private Patio in Lower East Side,9793059,Adam,Manhattan,Lower East Side,40.71586,-73.98908,Entire home/apt,200,4,16,2019-05-18,1.46,1,56 +27705293,Studio Apartment in historic Sugar Hill townhouse,12104046,Paula,Manhattan,Harlem,40.82862,-73.93832,Entire home/apt,85,2,23,2019-07-01,2.24,2,16 +27706017,Beautiful room in a newly renovated apartment!,47023469,Olga,Manhattan,Upper West Side,40.7956,-73.97219,Private room,90,1,31,2019-06-24,3.00,3,112 +27706098,Williamsburg Studio- Steps Away from Lorimer L,3550181,Emily,Brooklyn,Williamsburg,40.71094,-73.95026,Entire home/apt,104,2,20,2019-06-06,2.00,1,0 +27706786,Room with a View,208775804,Anny,Bronx,Kingsbridge,40.88354,-73.89061,Private room,85,3,0,,,1,89 +27706929,"Comfy, Beautiful Apt with Breakfast Included",207381668,Deborah/Aston,Brooklyn,East New York,40.67661,-73.87488,Entire home/apt,125,2,43,2019-07-05,4.13,1,95 +27707196,Harlem Gem,12672916,Erica,Manhattan,East Harlem,40.80147,-73.94432,Entire home/apt,275,3,2,2018-12-10,0.19,1,0 +27707562,Pleasant Place 5 mins away from JFK Airport,61688262,Paula,Queens,Springfield Gardens,40.66333,-73.7661,Private room,60,14,12,2019-05-19,1.14,1,341 +27707814,Great Room Great Price,152484079,Carmen,Staten Island,Port Richmond,40.63577,-74.13113,Private room,46,1,17,2018-12-15,1.55,1,0 +27710264,Cozy Brooklyn Apartment,209202426,Ace,Brooklyn,Bushwick,40.7015,-73.93566,Entire home/apt,80,7,5,2018-10-31,0.53,1,0 +27712922,Bay Ridge Bklyn entire spacious Basement Apartment,69476664,Alkhadher,Brooklyn,Bay Ridge,40.63895,-74.02599,Entire home/apt,136,2,24,2019-07-05,2.26,1,130 +27714862,Newly Renovated Brooklyn Brownstone - Private,5354200,Chantal,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93478,Entire home/apt,125,1,68,2019-07-03,6.26,1,261 +27717773,Bushwick Retreat (for dog lovers only),15413542,Nada,Brooklyn,Bushwick,40.69098,-73.92128,Private room,85,1,14,2019-06-30,1.38,1,81 +27720812,Gorgeous 1 Bedroom on the Park,4367464,Woods,Brooklyn,Fort Greene,40.69028,-73.97484,Entire home/apt,175,3,16,2019-06-24,1.63,1,0 +27722209,New York Hotel,209291543,Christine,Manhattan,Midtown,40.75355,-73.97352,Private room,400,7,3,2019-05-30,1.23,1,184 +27723558,Awesome Private Room Big Windows,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95079,Private room,60,30,27,2019-06-06,2.70,4,319 +27723717,Beautiful Private Room Big Windows,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95042,Private room,60,30,11,2019-04-18,1.02,4,361 +27723810,Sunny room with roof deck in Brooklyn,9503685,Aaron,Brooklyn,Bedford-Stuyvesant,40.69199,-73.9435,Private room,95,2,2,2018-09-09,0.19,2,0 +27723975,Brooklyn Private Room 20 min to Manhattan,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69088,-73.95018,Private room,65,30,30,2019-06-04,2.84,4,365 +27724217,Warm and Friendly Bronx Home,209306758,Harriet,Bronx,Baychester,40.87886,-73.84301,Private room,69,3,9,2019-06-11,0.87,2,311 +27724572,Best Apt in Queens! 3 people! Metro and everything,67801150,Qiongyao,Queens,Elmhurst,40.73543,-73.87522,Private room,89,1,2,2018-08-25,0.18,1,33 +27725029,Park Avenue Haven,14760734,Anna,Manhattan,East Harlem,40.78954,-73.95076,Private room,110,1,35,2019-07-05,3.90,1,90 +27725392,NEWLY RENOVATED Studio #8,158969505,Karen,Manhattan,Lower East Side,40.72264,-73.9912,Entire home/apt,150,30,2,2019-06-01,0.77,9,302 +27725844,Beautiful new apartment located in Bushwick,106647991,Manon,Brooklyn,Bushwick,40.70398,-73.92168,Private room,52,7,3,2018-10-08,0.29,1,0 +27727321,Simplicity,209332627,Adriana,Manhattan,Washington Heights,40.85711,-73.93004,Private room,75,2,4,2019-06-15,1.67,2,58 +27727442,Williamsburg Proper,9761047,Anika,Brooklyn,Williamsburg,40.71532,-73.96209,Private room,60,3,29,2019-06-28,3.19,3,61 +27728631,Spacious & cozy 1BR opposite Prospect Park Lake,97012192,Sultan,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96065,Entire home/apt,100,2,6,2019-04-21,0.58,1,0 +27729476,Spacious bedroom suite in Brooklyn brownstone,209350565,Jeff,Brooklyn,Crown Heights,40.67754,-73.94824,Private room,90,1,52,2019-06-15,4.92,1,0 +27730153,"Entire 1BR Apt, Spacious, Light, 10 mins to LGA",187731563,Sean,Queens,Astoria,40.76969,-73.92197,Entire home/apt,170,2,11,2018-12-16,1.07,1,0 +27730191,"Stylish, Artsy & Comfortable Stay Near the Ocean.",32215382,Polina,Brooklyn,Sheepshead Bay,40.59446,-73.94289,Entire home/apt,105,2,1,2019-05-20,0.59,1,36 +27730757,Charm & style galore in Boerum Hill 2BR duplex,7087709,Theresa,Brooklyn,Boerum Hill,40.68783,-73.98695,Entire home/apt,295,2,31,2019-07-02,2.99,1,25 +27730786,Bedroom in Luxury Waterfront Apt with Views & Pool,6584607,Henry,Brooklyn,Williamsburg,40.71739,-73.96244,Private room,98,1,33,2019-06-21,3.24,2,11 +27731269,"Be Our Guest! Live, Love Bed-Stuy",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68387,-73.94162,Entire home/apt,150,3,44,2019-07-06,4.14,3,252 +27731601,"Williamsburg Loft - Spacious, Sky-High Ceilings",4354856,Jay,Brooklyn,Williamsburg,40.71095,-73.95171,Private room,100,60,0,,,2,157 +27732417,"Brooklyn /Private Bedroom & bathroom, 3 Guests",209374833,Candia,Brooklyn,Crown Heights,40.66678,-73.96148,Private room,99,3,19,2019-07-05,4.96,2,41 +27732746,Entire apartment in the heart of west village,125177157,Josue,Manhattan,West Village,40.73397,-74.00168,Entire home/apt,190,2,0,,,1,0 +27732981,Luxury apartment in New York City,133473678,Shumin,Queens,Long Island City,40.75118,-73.93646,Private room,89,1,0,,,1,0 +27733012,9mins to LGA; 28mins to JFK (4),158407820,Omar,Queens,Woodside,40.75391,-73.90256,Private room,53,2,23,2019-06-10,2.15,5,156 +27733464,Beautiful shared place in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79884,-73.9424,Shared room,49,2,25,2019-05-09,2.31,9,12 +27733542,Spacious room in awesome Bushwick townhouse,6591232,Sebastien,Brooklyn,Bushwick,40.69194,-73.92352,Private room,40,3,1,2018-08-29,0.10,1,0 +27734811,Luxurious Apartment in the best Location,3048319,Carlos,Manhattan,Hell's Kitchen,40.76209,-73.99875,Entire home/apt,300,2,12,2019-06-03,1.14,2,2 +27735126,Cozy shared place by Central Park Manhattan,209386156,Abraham,Manhattan,East Harlem,40.80033,-73.94201,Shared room,49,2,60,2019-06-22,5.54,9,109 +27735315,The luxury East New York,78485066,Corie,Brooklyn,East New York,40.66526,-73.8937,Entire home/apt,124,2,34,2019-06-04,3.59,2,273 +27735701,Beautiful cozy apt in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.80033,-73.941,Shared room,60,2,28,2019-06-10,2.58,9,120 +27735744,☆ Secret Hideaway - Blocks from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75658,-73.99568,Private room,100,1,41,2019-06-18,3.80,3,64 +27736075,Welcome to the Secret Oasis in Williamsburg,84063956,Astrid,Brooklyn,Williamsburg,40.70908,-73.95006,Private room,78,1,32,2019-06-17,3.19,1,30 +27736140,Spacious home in quiet Forest Hills,209406241,Sumeet,Queens,Forest Hills,40.71799,-73.85695,Entire home/apt,300,1,0,,,1,0 +27736749,☆ Manhattan's Retreat - Blocks from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75655,-73.99535,Private room,90,1,44,2019-07-04,4.07,3,36 +27737158,☆ 2 Bedroom Apartment - Minutes from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75611,-73.9937,Entire home/apt,180,1,41,2019-07-01,4.73,3,30 +27744041,Entire New York Apartment. 2 bedrooms,98260543,Ley,Manhattan,Upper East Side,40.76938,-73.95212,Entire home/apt,300,2,8,2019-06-19,1.06,3,62 +27746387,Gorgeous bright spacious loft apt in Brooklyn,27780735,Susan,Brooklyn,Bushwick,40.69815,-73.92841,Entire home/apt,110,1,2,2018-12-23,0.19,1,0 +27747288,"Modern 3Beds/2bedroom Apartment, 5min TIME SQUARE.",45578040,Ryan,Manhattan,Hell's Kitchen,40.76457,-73.98766,Entire home/apt,269,1,18,2019-06-25,1.67,2,55 +27748069,NYC NARNIA ROOM Walking Distance to Central Park!,4233057,Hajah,Manhattan,East Harlem,40.79709,-73.93586,Private room,61,3,8,2019-04-22,0.85,3,95 +27749038,Private Bedroom in Upper East Side,180212824,Samet,Manhattan,Upper East Side,40.76517,-73.95669,Private room,99,1,7,2018-12-12,0.74,5,0 +27751020,"Bedroom in Brooklyn Apt, close to Prospect Park!",74569188,Luz Carime,Brooklyn,Flatbush,40.64815,-73.96862,Private room,60,2,3,2018-11-06,0.32,1,0 +27752128,sofa Bed And Breakfast,205706382,Peter,Queens,Maspeth,40.72514,-73.89845,Shared room,11,1,0,,,1,245 +27752788,Bright and Spacious Apt in the Heart of Manhattan,22072708,Mk,Manhattan,Midtown,40.74264,-73.98361,Entire home/apt,199,3,14,2019-06-17,1.33,1,3 +27753677,Private Bedroom Free parking 10 min to Manhattan,11365400,Rojé,Queens,Long Island City,40.73674,-73.92973,Private room,75,1,91,2019-06-30,8.56,2,0 +27754177,West Village dream location room,12926593,Catarina,Manhattan,West Village,40.73202,-74.00348,Private room,150,2,2,2019-06-30,0.21,3,56 +27754773,Spacious Room in the heart of Manhattan,209549523,Mariluz,Manhattan,Midtown,40.74863,-73.98291,Private room,150,1,59,2019-06-21,6.04,3,0 +27756576,Brooklyn Bedroom for two friends sharing!!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68925,-73.92805,Private room,42,30,3,2019-05-16,0.36,5,216 +27756639,Comfortable Place with Dimple,209306758,Harriet,Bronx,Baychester,40.8773,-73.84329,Private room,53,3,12,2019-06-14,1.20,2,356 +27758379,"Spacious, Quiet Apt- Heart of West Village",52889401,Teen,Manhattan,West Village,40.73223,-74.00499,Entire home/apt,290,2,9,2019-04-28,0.87,1,41 +27758562,LARGE Private Room next to the Empire State,209549523,Mariluz,Manhattan,Midtown,40.74906,-73.98454,Private room,135,1,70,2019-06-16,7.24,3,0 +27759146,Cozy corner near Empire State Building,209549523,Mariluz,Manhattan,Midtown,40.74858,-73.98341,Shared room,62,1,112,2019-06-13,10.77,3,0 +27759455,Luxurious Apartment!! Located on 5th Avenue!,30775274,Samuel,Manhattan,Midtown,40.74616,-73.98641,Entire home/apt,800,1,1,2019-04-02,0.31,1,270 +27760207,"Bright, airy west village retreat!Great location!",23463422,Amit,Manhattan,West Village,40.73384,-74.00011,Entire home/apt,175,3,7,2019-01-01,0.70,1,0 +27760799,Christina’s home,209372017,Christina,Bronx,Bronxdale,40.8546,-73.86785,Private room,50,1,24,2019-06-27,2.24,1,163 +27761683,"Clean Cozy Room, Queens-5 min walk to subway (R/M)",199524563,Bei,Queens,Rego Park,40.72678,-73.86218,Private room,55,2,25,2019-06-22,2.37,3,38 +27762497,*NYC Central Park* Entire Floor with Great Privacy,205390315,Yu,Manhattan,Upper West Side,40.79689,-73.96289,Entire home/apt,149,3,32,2019-06-22,3.07,1,96 +27763793,Hell’s Kitchen Apartment,15485954,Bryan,Manhattan,Hell's Kitchen,40.76315,-73.99235,Entire home/apt,200,1,29,2019-04-01,2.79,1,0 +27765541,Perfect location two bedroom beautifully furnished,209642447,Brik,Manhattan,SoHo,40.72725,-74.00128,Entire home/apt,350,2,38,2019-07-01,4.49,1,267 +27770423,Cosy Manor on Menahan,3566012,Salar,Brooklyn,Bushwick,40.69546,-73.91477,Private room,38,7,0,,,1,40 +27773847,Perfect NYC Hell’s Kitchen Duplex Apartment!,129263359,Ashley,Manhattan,Hell's Kitchen,40.76398,-73.99087,Entire home/apt,250,2,1,2019-04-21,0.38,1,9 +27774442,Huge Industrial Chic Williamsburg 1 Bdrm w/rooftop,24399066,Rachel,Brooklyn,Williamsburg,40.72018,-73.9573,Entire home/apt,185,1,20,2019-06-09,1.89,1,44 +27774740,Entire Garden apartment in Brownstone,60928518,Evelyn,Brooklyn,Carroll Gardens,40.67982,-74.00038,Entire home/apt,185,2,25,2019-06-19,2.42,1,17 +27775893,Midtown Studio,209719391,Laura,Manhattan,Midtown,40.74752,-73.98679,Entire home/apt,140,3,28,2019-07-01,2.71,1,333 +27776337,Apartment for transient guest!,209121939,Linda,Manhattan,Harlem,40.81942,-73.94068,Private room,45,1,14,2019-06-22,1.34,2,128 +27776926,★☆Sunnyside☆-Locals' favorite neighbor for living-,43044876,Haruhisa,Queens,Sunnyside,40.73998,-73.92619,Private room,40,29,1,2018-10-11,0.11,5,0 +27779367,Unique Apartment in Park Slope,5744362,Boer,Brooklyn,Park Slope,40.6779,-73.97991,Private room,150,1,1,2018-09-09,0.10,1,276 +27779997,"Private Room Midtown Park Avenue, Steal!",209758777,Isabel,Manhattan,Midtown,40.74631,-73.98502,Private room,145,1,53,2019-06-24,7.61,2,5 +27781325,"Private house in Queens, 10 minutes from JFK.",4668357,Angie,Queens,Jamaica,40.68479,-73.77606,Entire home/apt,125,1,2,2018-10-28,0.22,1,0 +27781833,"Queens Apt (bedroom w balcony), close to subway",134170699,Rafa' S,Queens,Elmhurst,40.73603,-73.87845,Private room,70,2,25,2019-07-07,2.31,2,177 +27782635,Sonder | 116 John | Sun-Filled 2BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70628,-74.00654,Entire home/apt,245,29,0,,,96,304 +27782761,Best of both world city and safety easy to get,15486514,Nathan,Bronx,Parkchester,40.83581,-73.85864,Private room,65,2,3,2018-12-02,0.29,2,0 +27782804,"SPACIOUS & CHARMING w/garden 4BR +walk 2 train",20951849,Elaine,Brooklyn,Bedford-Stuyvesant,40.69138,-73.93217,Entire home/apt,350,1,5,2019-01-01,0.49,2,5 +27782948,Private room in trendy Williamsburg,20448671,Kandi,Brooklyn,Williamsburg,40.7098,-73.9418,Private room,66,2,6,2019-01-02,0.66,3,173 +27783586,Williamsburg nest with private bathroom,20448671,Kandi,Brooklyn,Williamsburg,40.70755,-73.94377,Private room,65,2,22,2019-06-29,2.25,3,173 +27783611,Lovely place for traveler,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69089,-73.93912,Shared room,31,1,33,2019-06-23,3.08,17,85 +27783928,Sonder | Madison Ave | Airy 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.7469,-73.98438,Entire home/apt,239,29,0,,,96,305 +27784070,Room 4 -Sunny Cozy Room in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64408,-73.96979,Private room,55,2,28,2019-06-23,2.64,6,68 +27784090,Large Williamsburg room with private deck,20448671,Kandi,Brooklyn,Williamsburg,40.70936,-73.9437,Private room,75,2,16,2019-02-24,1.55,3,215 +27784542,Artistic Loft w Fireplace & Manhattan Skyline,33655,Sruthi,Brooklyn,Columbia St,40.68388,-74.00484,Entire home/apt,210,2,11,2019-07-02,1.24,2,120 +27784556,"Beautiful, New Williamsburg apartment.",8197910,Matthew,Brooklyn,Williamsburg,40.71652,-73.94809,Private room,120,1,16,2019-06-09,1.55,1,85 +27784595,Sonder | Madison Ave | Relaxed 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74681,-73.98488,Entire home/apt,239,29,0,,,96,327 +27785049,Sonder | Madison Ave | Restful 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74576,-73.98339,Entire home/apt,239,29,0,,,96,326 +27785327,Bushwick Art collective bedroom A,3635302,Adam,Brooklyn,Bushwick,40.70563,-73.91853,Private room,90,2,6,2019-05-31,0.58,3,89 +27785672,Bushwick Art collective bedroom B,3635302,Adam,Brooklyn,Bushwick,40.7052,-73.91888,Private room,90,2,14,2019-07-01,1.32,3,87 +27786254,Bright Studio near park,170026468,Azia,Brooklyn,Flatbush,40.65258,-73.96343,Entire home/apt,115,3,11,2019-06-05,1.23,1,165 +27786365,Good vibes a block from the J,44469259,Layla,Brooklyn,Bedford-Stuyvesant,40.69331,-73.93031,Private room,45,1,1,2018-12-03,0.14,2,0 +27786467,Spacious Harlem Home,7692306,Gordon,Manhattan,Harlem,40.80597,-73.95348,Entire home/apt,200,3,2,2018-12-31,0.24,1,16 +27786837,Adorable Boho Room in Great Location,54217990,Eleanor,Brooklyn,Williamsburg,40.71315,-73.94993,Private room,105,3,12,2019-07-01,1.34,1,0 +27787312,Beautiful cozy apt by Central Park,209386156,Abraham,Manhattan,East Harlem,40.79832,-73.94214,Shared room,49,2,35,2019-05-28,3.23,9,9 +27787386,Clean cozy overnight bed in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79873,-73.94052,Shared room,49,2,51,2019-06-09,4.71,9,5 +27787665,Overnight place in East Side Manhattan,209386156,Abraham,Manhattan,East Harlem,40.799,-73.94107,Shared room,49,2,23,2019-06-30,2.12,9,10 +27788038,Beautiful overnight bed by Central park,209386156,Abraham,Manhattan,East Harlem,40.79861,-73.94116,Shared room,49,2,62,2019-06-30,5.81,9,3 +27788408,Home Away from Home: Crystalline dreams,130971031,J-,Brooklyn,Bushwick,40.70397,-73.91801,Private room,73,3,8,2019-02-16,0.76,4,104 +27788826,Upper East Side 2 Room Studio Retreat,11376647,Nicholas,Manhattan,Upper East Side,40.76856,-73.95367,Entire home/apt,150,10,3,2018-09-16,0.29,1,17 +27795110,Center of West Village: Unique 1 Bedroom,48677236,Lo,Manhattan,West Village,40.73271,-74.00207,Entire home/apt,220,2,10,2019-07-01,0.92,1,48 +27795234,Near LGA and JFK Airport Cozy Basement Room,194377255,Jimmy,Queens,East Elmhurst,40.76019,-73.88405,Private room,35,1,92,2019-07-01,8.87,4,344 +27795695,"Bright, Beautiful + Adorable in S. Williamsburg",24589216,Heidi,Brooklyn,Williamsburg,40.70878,-73.96061,Entire home/apt,125,1,13,2018-10-01,1.22,2,0 +27802387,Living Room sofa Bed in Chelsea,12750945,Luis,Manhattan,Chelsea,40.74186,-73.99769,Shared room,85,2,22,2019-06-23,2.19,4,365 +27802430,Beautiful Duplex steps from Subway,156259857,Joao,Brooklyn,Bushwick,40.68164,-73.9039,Entire home/apt,350,6,0,,,3,156 +27803315,Sonder | Madison Ave | Modern 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74705,-73.98268,Entire home/apt,239,29,0,,,96,328 +27803575,Relaxing Stay in Brooklyn,50912,Ry,Brooklyn,Crown Heights,40.67268,-73.96108,Entire home/apt,190,1,9,2019-06-30,0.99,1,364 +27803732,"Large 1 bed, 1.5 bath on the Upper East Side",7169451,Danielle,Manhattan,Upper East Side,40.76537,-73.9638,Entire home/apt,300,3,2,2019-06-16,0.21,1,343 +27803759,Sonder | Madison Ave | Lively 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74658,-73.98298,Entire home/apt,279,29,0,,,96,325 +27804120,Large sunny pvt room 10 mins from Times sq. 63F3,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99633,Private room,65,1,2,2018-11-02,0.23,47,361 +27804902,Brooklyn Flavor,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92936,Private room,48,3,22,2019-07-03,3.13,3,94 +27805071,Lovely 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75452,-73.96256,Entire home/apt,239,29,0,,,96,206 +27805652,Fort Greene Parlor,814747,Maeve,Brooklyn,Fort Greene,40.68634,-73.97091,Entire home/apt,250,2,4,2019-04-18,0.39,2,12 +27807007,Salt Shack - A Houseboat in the Rockaways!,20469514,Justin,Queens,Arverne,40.59391,-73.78824,Entire home/apt,150,2,22,2019-07-01,2.04,1,118 +27807260,Private room in East Harlem,50169207,Richie,Manhattan,East Harlem,40.79409,-73.94007,Private room,150,2,2,2019-06-10,0.24,2,67 +27807509,Beautiful 1 Bedroom apartment,209979150,Cheryl,Brooklyn,Crown Heights,40.67082,-73.92175,Entire home/apt,80,2,64,2019-06-26,6.00,1,209 +27808176,"New York, Jackson heights",118419433,Freddy,Queens,Jackson Heights,40.75395,-73.87396,Private room,80,1,5,2019-01-02,0.47,1,180 +27808723,A beautiful home for vacation,152246149,Catherine,Bronx,Throgs Neck,40.83148,-73.82931,Private room,65,1,23,2019-06-21,2.18,5,365 +27809255,Luxurious 2 Bedroom Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75734,-73.96727,Entire home/apt,150,30,1,2019-05-04,0.45,91,311 +27810474,Sunny Third-Floor Fort Greene Apartment,37820632,Moira,Brooklyn,Fort Greene,40.68912,-73.97514,Entire home/apt,275,2,2,2018-12-18,0.19,1,0 +27810647,New York Home,191765199,Elena,Manhattan,Washington Heights,40.83341,-73.94154,Entire home/apt,250,3,6,2019-06-19,0.95,6,46 +27812071,Cozy Room East Williamsburg (15 Min to Manhattan),210019212,Holden,Brooklyn,Bushwick,40.70767,-73.92307,Private room,49,7,28,2019-06-25,2.78,3,28 +27812131,"Visit New York,The Local Brooklyn Way SuperHost",210014579,Paul,Queens,Ridgewood,40.70186,-73.90467,Private room,61,1,48,2019-06-22,4.50,1,171 +27814544,Underhill Penthouse,153781232,Zak,Brooklyn,Prospect Heights,40.67313,-73.96536,Private room,90,1,8,2019-07-07,0.75,1,129 +27814780,Williamsburg duplex apartment with backyard,67913256,Onyuka,Brooklyn,Williamsburg,40.71475,-73.94913,Private room,75,1,5,2019-05-06,0.59,1,55 +27815089,Morningside Heights Cozy & Clean Modern Apt.,31659721,Krystalee,Manhattan,Harlem,40.80624,-73.95622,Private room,110,1,1,2018-08-31,0.10,1,0 +27816015,Queens Apartment,210054677,Mofizur,Queens,Woodside,40.74822,-73.90591,Entire home/apt,125,1,33,2019-07-07,3.20,1,95 +27817851,A Nice Room For Unique people,152246149,Catherine,Bronx,Throgs Neck,40.82952,-73.82818,Private room,140,1,31,2019-06-09,3.01,5,365 +27823763,2 Bedroom with backyard and best location,10017420,Liat,Brooklyn,Cobble Hill,40.68574,-73.99958,Entire home/apt,250,3,31,2019-06-22,2.98,1,101 +27824606,Huge outdoor w/ amazing view right from your room,73820234,Yeon,Manhattan,West Village,40.73213,-74.00865,Private room,100,3,35,2019-06-07,3.30,1,112 +27825381,"Dream private loft in Williamsburg, Brooklyn",53481649,Lucy,Brooklyn,Williamsburg,40.71493,-73.96089,Private room,90,2,2,2018-09-25,0.19,1,0 +27827110,private room in a shared apartment,141400974,Öykü,Manhattan,Harlem,40.80913,-73.94614,Private room,45,14,5,2019-01-25,0.47,1,0 +27827834,Coziest room off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92588,Private room,65,1,27,2019-01-26,2.52,2,0 +27830753,Private Room in Renovated Bushwick Apt w/ Wash/Dry,62187386,Luigi,Brooklyn,Bushwick,40.70117,-73.91481,Private room,45,3,9,2019-06-19,0.87,1,10 +27831194,Bright 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75498,-73.96426,Entire home/apt,212,29,0,,,96,203 +27831402,Bright Williamsburg room with huge private terrace,110674731,Ben,Brooklyn,Williamsburg,40.71247,-73.94548,Private room,70,1,2,2018-09-05,0.18,1,0 +27831715,Modern 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75497,-73.96289,Entire home/apt,204,29,0,,,96,243 +27831928,Charming 3bed/2ba Downtown/LES,210170222,Anastasia,Manhattan,Lower East Side,40.71815,-73.98213,Private room,400,3,6,2019-03-31,0.87,1,67 +27832001,Sonder | 180 Water | Pristine Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70788,-74.00459,Entire home/apt,184,29,0,,,96,267 +27832008,Private 1BR with Private Bathroom feet from subway,104607422,Tunde,Manhattan,Harlem,40.83005,-73.93992,Entire home/apt,119,1,29,2019-06-30,3.02,1,103 +27832135,Huge Room for Nightly Stays Downtown or Monthly,3699846,Abbey,Manhattan,Tribeca,40.7181,-74.00999,Private room,197,5,3,2019-05-21,0.30,1,95 +27833130,Creative Bushwick - Cozy Private Room,210175250,Dr. Jihene,Brooklyn,Bushwick,40.6888,-73.92015,Private room,30,1,18,2019-06-23,3.60,1,93 +27833243,Sonder | 116 John | Cozy 2BR+ Gym,12243051,Sonder,Manhattan,Financial District,40.70797,-74.0055,Entire home/apt,245,29,1,2019-03-16,0.26,96,311 +27833897,Pet-friendly 1bd in the Heart of East Village,13775855,Joe,Manhattan,East Village,40.72772,-73.98046,Entire home/apt,149,3,25,2019-06-09,2.40,1,1 +27834075,art-filled spacious room in artist's cozy home.,68284975,Dio,Brooklyn,Bushwick,40.69355,-73.92684,Private room,66,2,39,2019-06-25,3.75,2,158 +27834828,Private Bedroom in MANHATTAN (Free Wifi),124901163,Sarah,Manhattan,Harlem,40.8228,-73.94442,Private room,76,5,2,2019-05-23,0.32,1,66 +27835546,"Cute, Cozy Private One-Bed in Crown Heights",143952234,Aaron,Brooklyn,Crown Heights,40.67182,-73.94446,Entire home/apt,100,3,5,2019-05-20,0.52,1,0 +27836216,Sunny Room in modern building in Bushwick,13098292,Raisa,Brooklyn,Bushwick,40.69961,-73.93138,Private room,55,3,4,2018-09-21,0.39,2,0 +27836335,Private Room in great location Bushwick!,13098292,Raisa,Brooklyn,Bushwick,40.69994,-73.93299,Private room,55,2,0,,,2,0 +27836864,The Buchanan’s,45155504,Violet,Queens,St. Albans,40.70046,-73.74834,Entire home/apt,130,2,17,2019-07-01,1.69,1,352 +27838541,2 bedroom apartment in Astoria,104885443,Maiko,Queens,Astoria,40.76942,-73.92772,Entire home/apt,130,2,3,2019-01-04,0.47,2,0 +27839683,"One bedroom apartment Woodhaven, Queens NY.",210218941,Jason C,Queens,Woodhaven,40.6959,-73.84868,Entire home/apt,51,7,3,2019-06-18,1.00,1,2 +27840650,Large bedroom ensuite,210250232,Samantha,Brooklyn,East New York,40.67154,-73.87913,Private room,65,3,2,2018-10-07,0.19,1,179 +27842475,Bright Brooklyn Studio,41610771,Caroline,Brooklyn,Bedford-Stuyvesant,40.68056,-73.95372,Entire home/apt,100,3,5,2019-06-10,0.66,1,4 +27846079,Art Gallery apartment in a Queens’ Victorian house,207622517,Andrzej,Queens,Woodhaven,40.69508,-73.86032,Entire home/apt,170,3,24,2019-07-07,2.55,1,308 +27848370,Williamsburg Duplex with outdoor deck,266921,Jason,Brooklyn,Williamsburg,40.71399,-73.9454,Entire home/apt,144,6,1,2019-01-01,0.16,1,71 +27849036,"Charming, Sunny West Village 1BR - Prime Location!",3598494,Jenna,Manhattan,West Village,40.73641,-73.99929,Entire home/apt,250,2,3,2019-04-23,0.34,1,0 +27849339,~Flatiron 2 Bedroom~Amazing Location~Sleeps 6~,209556739,Ryan,Manhattan,Midtown,40.74478,-73.98442,Entire home/apt,349,4,32,2019-06-21,3.04,1,255 +27850382,Superior Studio with Balcony,32866463,Bassam,Brooklyn,Bay Ridge,40.63334,-74.01784,Private room,65,1,40,2019-07-04,3.79,2,169 +27850505,Room in heart of Williamsburg on Bedford Ave.,34988761,Colin,Brooklyn,Williamsburg,40.71289,-73.9637,Private room,65,1,0,,,1,0 +27851725,luz lunar bibis,207381757,Gabriel,Bronx,Norwood,40.87633,-73.88328,Private room,45,1,18,2019-07-01,1.93,1,153 +27852017,Your Private Safe-Clean Haven w/Private Bath,206884583,Haidy,Bronx,Pelham Bay,40.84633,-73.83029,Private room,80,2,28,2019-06-25,2.69,1,78 +27852410,Big Bed Paradise,104812805,Amarjit S,Staten Island,Arrochar,40.59623,-74.0839,Private room,34,4,8,2019-06-08,0.85,8,290 +27852878,Lush mid-century haven in Greenpoint,117030530,Laine,Brooklyn,Greenpoint,40.73347,-73.95164,Private room,80,3,2,2018-11-24,0.20,1,0 +27853417,A Cozy Place to Stay in Woodside Queens!,137358866,Kazuya,Queens,Maspeth,40.73786,-73.90616,Private room,36,30,1,2019-05-31,0.77,103,235 +27853549,NYC Chelsea Luxury Modern Studio,5064974,Alice,Manhattan,Chelsea,40.73918,-73.99753,Entire home/apt,180,6,5,2018-12-31,0.56,1,0 +27853643,Sonder | 116 John | Pleasant 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70776,-74.00477,Entire home/apt,174,29,0,,,96,313 +27853696,Spacious Bright Private Bedroom In Williamsburg!!!,127056976,Ali,Brooklyn,Williamsburg,40.71407,-73.93856,Private room,66,5,3,2018-10-07,0.31,1,0 +27854183,Private Room in the heart of Williamsburg,35959456,Karim,Brooklyn,Williamsburg,40.71893,-73.95866,Private room,95,1,47,2019-07-06,4.35,1,28 +27854195,"Beautiful, sunny, private apartment",32935611,Martha,Brooklyn,Sunset Park,40.64704,-74.00819,Entire home/apt,119,4,23,2019-06-11,2.61,1,31 +27855899,"large, stylish, airy East Village loft apartment!",3809729,Yemisi,Manhattan,East Village,40.72307,-73.98369,Entire home/apt,199,3,7,2019-05-05,0.69,1,0 +27857163,"Studio near times grand central, Times Square, UN",19664260,Viswanadha,Manhattan,Midtown,40.75216,-73.97172,Entire home/apt,300,1,2,2018-09-23,0.20,1,0 +27858785,Spacious Lower East Side Room,65692858,Christian,Manhattan,Lower East Side,40.72093,-73.98596,Private room,150,3,17,2019-01-28,1.65,1,188 +27863860,New York Apartment,106651452,Karen,Manhattan,Civic Center,40.7131,-74.00527,Entire home/apt,70,15,0,,,1,0 +27866657,Affordable bedroom in Brooklyn townhouse.,101498908,Julie,Brooklyn,East Flatbush,40.6504,-73.95011,Private room,39,3,2,2019-02-18,0.19,2,0 +27868079,"""In the Clouds"" Brooklyn Heights Studio",23115464,Jenna,Brooklyn,Brooklyn Heights,40.69503,-73.99475,Entire home/apt,125,8,1,2018-09-27,0.10,1,207 +27869059,beautiful modern 1 bed room apt,210505783,Alex,Manhattan,Chelsea,40.74813,-74.00478,Private room,300,2,4,2019-05-28,0.45,1,0 +27869100,Spacious Room in Midtown East Apartment,7324189,Buke,Manhattan,Midtown,40.76043,-73.97075,Private room,150,3,3,2018-10-14,0.31,2,127 +27869757,Bright and Cozy Room in Williamsburg,25549229,Pauline,Brooklyn,Williamsburg,40.7073,-73.96607,Private room,60,4,17,2019-04-07,1.59,2,131 +27871248,"Clean, Cozy Home in Perfect Park Slope Location",106063627,Young Jean,Brooklyn,Park Slope,40.68178,-73.97957,Entire home/apt,130,120,0,,,1,0 +27871410,South Williamsburg Condo - Rooftop & Balcony,135018,Julie,Brooklyn,Williamsburg,40.71113,-73.96181,Entire home/apt,180,3,1,2018-09-30,0.11,1,9 +27873228,Spacious Private Room near Train and Prospect Park,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65815,-73.95546,Private room,40,31,3,2019-06-01,0.45,2,84 +27873545,Sunny Apt in Brooklyn Close to Prospect Park,12703112,Sophia,Brooklyn,Kensington,40.63472,-73.97268,Private room,65,3,2,2019-01-01,0.19,1,281 +27874237,Park Slope Perfect 2 BR,42273,Dani,Brooklyn,South Slope,40.66875,-73.98779,Entire home/apt,150,31,1,2019-05-24,0.64,2,281 +27874671,room in a soho loft,3968209,Swetha,Manhattan,SoHo,40.72099,-73.99921,Private room,100,3,8,2019-04-29,0.81,2,361 +27875757,Sun-Drenched Perch in Charming Brownstone,210578372,Joyce,Brooklyn,Carroll Gardens,40.68112,-73.99296,Entire home/apt,150,4,9,2019-05-18,0.87,1,0 +27875973,South Williamsburg Loft,4359156,Alexandra,Brooklyn,Williamsburg,40.70856,-73.96632,Private room,90,2,2,2019-07-03,2,1,10 +27876063,Charming Private Room in Apt Share- Astoria NY,110930,Linda,Queens,Astoria,40.76305,-73.91874,Private room,40,5,1,2018-09-08,0.10,1,0 +27876238,"Massive, Private 1 Bedroom near Barclays Center",75287595,Nathan,Brooklyn,Park Slope,40.6783,-73.97559,Private room,69,1,13,2019-04-07,1.22,1,1 +27876268,Step back in time and see NYC as it was in the 80s,26405093,Jeff,Staten Island,Stapleton,40.63782,-74.07732,Private room,85,1,2,2018-09-13,0.19,2,353 +27876346,Industrial Brooklyn Duplex w/ Rooftops!,4336107,Bryce,Brooklyn,Crown Heights,40.67436,-73.9551,Entire home/apt,200,4,6,2019-04-07,0.61,1,4 +27876546,Aqua Room East Williamsburg (15 min to Manhattan),210019212,Holden,Brooklyn,Bushwick,40.70777,-73.92115,Private room,59,1,33,2019-06-19,3.14,3,28 +27876600,Peaceful garden + private studio in the UES,43888084,Elena,Manhattan,Upper East Side,40.78057,-73.95186,Entire home/apt,248,4,3,2019-04-16,0.31,1,100 +27876953,Cozy Antique Haven in Brooklyn,8619668,Linda,Brooklyn,Crown Heights,40.66663,-73.93455,Private room,60,3,2,2018-10-13,0.21,1,50 +27876980,"Private, big, clean cozy room, in TIMES SQUARE",121657084,Naor,Manhattan,Midtown,40.7571,-73.98014,Private room,95,3,28,2019-06-15,2.71,1,0 +27878456,Five stars room in very comfy aptm. chek this out,35660592,Luis,Queens,Elmhurst,40.73366,-73.87651,Private room,77,2,10,2019-06-11,0.98,6,354 +27889231,Private Room in a Recently Remodeled Apt Bushwick,4908332,Ivan,Brooklyn,Bushwick,40.70325,-73.91349,Private room,70,1,8,2019-04-21,0.81,1,0 +27890305,Sofa bed space for rent nightly,174504698,Moza,Queens,Elmhurst,40.73853,-73.88647,Shared room,100,1,0,,,1,179 +27890556,Beautiful Historic Brooklyn!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69652,-73.94821,Private room,45,2,46,2019-06-23,4.68,4,36 +27890781,Hidden gem that's only 15 minutes from Manhattan.,210687004,Didier,Queens,Woodside,40.75537,-73.90741,Private room,83,2,0,,,1,126 +27891385,"Manhattan Charm, Brooklyn Price!!!",51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69676,-73.94794,Private room,45,2,41,2019-06-23,4.07,4,39 +27891791,Comfort Away from Home,205188960,Patrick,Brooklyn,East Flatbush,40.6491,-73.92532,Entire home/apt,75,3,12,2019-06-30,1.21,1,167 +27892770,Brazilian hospitality in Long Island City,31967085,Dalva,Queens,Long Island City,40.75428,-73.93323,Private room,64,4,23,2019-06-27,2.21,1,8 +27893211,Beautiful Sun Drenched Williamsburg Apartment,6842719,Shachi,Brooklyn,Williamsburg,40.71615,-73.94171,Entire home/apt,150,2,3,2019-05-27,0.48,2,330 +27896043,Comfortable room in the heart of Williamsburg!!,129864476,Greetings From Saul And Diana,Brooklyn,Williamsburg,40.7191,-73.95988,Private room,80,1,13,2019-07-01,1.32,1,65 +27896962,Private Studio with Backyard in Brooklyn,4324281,Jasmine,Brooklyn,Bedford-Stuyvesant,40.68231,-73.95202,Entire home/apt,75,2,17,2019-06-30,2.17,1,77 +27899019,Affordable quite private room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73821,-73.81006,Private room,64,1,7,2019-06-09,0.73,5,90 +27900847,Brooklyn Getaway,3870708,Keagon,Brooklyn,Windsor Terrace,40.66047,-73.98244,Entire home/apt,154,2,12,2019-06-30,1.16,1,19 +27901243,Sunny 3rd floor huge Master Bedroom,78379915,Joanne,Brooklyn,Bedford-Stuyvesant,40.68392,-73.95265,Private room,40,30,1,2019-05-25,0.65,1,282 +27901304,huge 2 bedroom / 2 bathroom GREENPOINT duplex,29600909,Inna,Brooklyn,Greenpoint,40.72927,-73.9477,Entire home/apt,160,2,14,2019-07-01,6.18,1,45 +27901436,Cozy apartment in midtown east,61009334,Tyler,Manhattan,Midtown,40.75142,-73.97049,Entire home/apt,210,2,7,2019-03-04,0.68,1,0 +27902950,Cozy private room in 2br apt Brooklyn,210779293,Zsanett,Brooklyn,Borough Park,40.63516,-74.00078,Private room,54,1,55,2019-06-23,5.16,2,59 +27903031,Prewar Gem in Middle of Everything!,7580102,(Email hidden by Airbnb),Manhattan,Midtown,40.76399,-73.98077,Private room,139,3,3,2018-11-17,0.31,2,0 +27903095,5 minutes walking distance to everything you need,16594445,Jasmine,Queens,Flushing,40.76106,-73.8305,Private room,39,1,22,2019-06-22,2.14,1,82 +27903413,Cozy 1 BR APT->CHELSEA!!!,210783572,Enrica,Manhattan,Chelsea,40.74186,-74.00372,Entire home/apt,180,4,3,2019-04-13,0.31,1,0 +27904413,2BD Mid-Century Union Sq Brownstone/ Gramercy Park,9021276,Colette,Manhattan,Gramercy,40.73947,-73.9847,Entire home/apt,400,4,7,2019-05-27,0.68,1,64 +27904745,Stuytown apartment,1142553,Brittany,Manhattan,Stuyvesant Town,40.72957,-73.97715,Entire home/apt,189,2,5,2018-11-05,0.48,1,0 +27905583,Uptown Manhattan: Private Room w Private Entrance!,210800401,Jasmine,Manhattan,Washington Heights,40.8466,-73.93432,Private room,60,3,28,2019-06-09,2.64,2,0 +27906043,Chic entire downstairs in 3br duplex,8441265,Sara,Queens,Ridgewood,40.70576,-73.91129,Private room,55,3,3,2019-05-27,0.32,2,0 +27906346,New york Multi-unit building,27071572,Kinga,Manhattan,Upper West Side,40.79372,-73.97431,Entire home/apt,140,5,3,2019-04-24,0.29,1,89 +27906663,Plant-filled colorful Bushwick bedroom!,41942577,Olive,Brooklyn,Bushwick,40.69247,-73.91196,Private room,46,5,1,2018-10-09,0.11,1,0 +27906833,Simple and cozy studio apartment in Williamsburg,66744930,Lana,Brooklyn,Williamsburg,40.71207,-73.95784,Entire home/apt,122,3,18,2019-06-24,1.87,1,61 +27906875,Organic Oasis Duplex (EMF-free),1358304,Karliin,Manhattan,Hell's Kitchen,40.76292,-73.99219,Entire home/apt,350,60,0,,,1,177 +27907554,Quiet and clean room in the heart of Brooklyn,39285391,Siham,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92349,Private room,65,1,42,2019-05-19,3.99,2,67 +27909027,Modern Remodeled 1 bedroom Apartment,210831649,Keno,Brooklyn,Brownsville,40.66176,-73.92,Entire home/apt,176,3,0,,,1,54 +27909175,Heart of Harlem,174663454,Anthony J,Manhattan,Harlem,40.80672,-73.94993,Private room,70,1,47,2019-06-28,4.45,1,10 +27910083,"Lovely, Clean & Spacious. Your Own Woodside Room!",137358866,Kazuya,Queens,Woodside,40.74272,-73.91075,Private room,38,30,0,,,103,0 +27910119,Stylish and cozy flat in West Village with 3 beds,99683151,Christina,Manhattan,West Village,40.7334,-74.00323,Entire home/apt,180,3,21,2019-06-29,2.09,3,162 +27910595,"Cozy&Clean Suite-private entry, bedroom & bathroom",210843289,Tajudeen,Staten Island,Mariners Harbor,40.63068,-74.15521,Private room,40,2,86,2019-06-25,10.12,1,56 +27911463,"Pvt Single Bed 10 min from JFK, Close to Manhattan",23370431,Melissa,Queens,Queens Village,40.71711,-73.75608,Private room,55,2,7,2019-05-22,0.76,2,155 +27914324,"Spacious, Convenient Williamsburg Apartment",26822598,Jesus,Brooklyn,Williamsburg,40.71388,-73.94999,Private room,80,5,3,2018-09-30,0.29,1,0 +27915673,Brand New Cozy Apt Upper West Manhattan,45050275,Ada,Manhattan,Upper West Side,40.80098,-73.96025,Private room,99,1,45,2019-06-24,4.44,1,0 +27919104,Gorgeous Sun-filled Rooftop Apt in Prime Harlem,219313,Lucie,Manhattan,Harlem,40.8101,-73.94453,Entire home/apt,225,4,0,,,1,364 +27919288,Bright and cheery room in Harlem,12358203,Rachel Leigh,Manhattan,Harlem,40.82996,-73.94714,Private room,90,1,20,2019-06-01,2.05,2,6 +27920036,Penthouse 1 bedroom in LIC,32604201,Cherie,Queens,Long Island City,40.75094,-73.93806,Entire home/apt,107,3,4,2018-11-25,0.38,1,0 +27921952,Bronx Home,210916369,Lucie,Bronx,Wakefield,40.88563,-73.85975,Private room,50,2,40,2019-06-30,3.77,1,0 +27922598,Spacious Apartment in Ditmas Park,5182228,Amal,Brooklyn,Flatbush,40.64063,-73.95667,Entire home/apt,300,2,6,2018-11-25,0.58,1,0 +27922834,Brooklyn Garden Apartment,117964194,David,Brooklyn,Park Slope,40.67009,-73.98492,Entire home/apt,123,13,23,2019-06-11,2.35,1,0 +27923071,A Nice Room to Stay in the Heart of Manhattan,137358866,Kazuya,Manhattan,Harlem,40.81094,-73.94273,Private room,36,30,2,2019-06-15,0.22,103,215 +27923577,NYC HUB XL @ 900ft from subway; 30 min to Midtown,20912691,Jeff,Queens,Jamaica,40.71075,-73.7823,Entire home/apt,399,2,17,2019-07-05,2.30,7,324 +27924639,NYC Private home-1 bedroom/Private Entrance,11305944,Yahaira,Bronx,Williamsbridge,40.87135,-73.85736,Entire home/apt,145,2,5,2018-12-10,0.48,5,0 +27925378,Peaceful Studio In South Williamsburg,31296185,Mat,Brooklyn,Williamsburg,40.71286,-73.9599,Entire home/apt,140,2,4,2019-06-22,1.04,1,213 +27925678,Large cozy bedroom close to Times Square 43D4,194535003,John,Manhattan,Hell's Kitchen,40.75537,-73.995,Private room,54,30,2,2018-10-27,0.23,1,352 +27926502,Cozy Greenpoint Railroad Apartment,5649853,Flannery,Brooklyn,Greenpoint,40.73473,-73.95776,Entire home/apt,177,2,23,2019-07-01,2.28,1,214 +27926975,Artsy Harlem room with quick access to everything,149639152,Rahat,Manhattan,Harlem,40.81758,-73.94188,Private room,65,2,22,2019-06-29,2.06,1,275 +27927068,Designer Beach House Studio in Williamsburg,8171440,Geoffrey,Brooklyn,Williamsburg,40.71286,-73.95898,Entire home/apt,150,2,17,2019-05-28,1.68,1,0 +27927147,Private Room w/ Private Shower,2702372,Esther,Brooklyn,Sunset Park,40.64614,-74.0064,Private room,50,2,12,2019-06-30,1.16,1,41 +27928809,The Ultimate W-Burg Experience-Historic Building!,183400278,Jan,Brooklyn,Williamsburg,40.71153,-73.94557,Entire home/apt,104,2,5,2019-06-23,0.54,1,179 +27929173,Private room in Brooklyn(Borough park) safe area,210779293,Zsanett,Brooklyn,Borough Park,40.63592,-74.00064,Private room,54,1,46,2019-02-01,4.31,2,36 +27929288,Home Away From Home,161184313,Kristina,Brooklyn,Greenpoint,40.73029,-73.9515,Private room,74,5,1,2018-11-12,0.13,2,95 +27929389,Gracious Spacious Bushwick Loft,112545065,Diana,Brooklyn,Bushwick,40.69852,-73.92428,Private room,75,2,4,2019-05-31,1.43,2,64 +27929894,Beautiful 3 bed apt close to Central Park,3554039,Jimmy,Manhattan,Upper East Side,40.77041,-73.96109,Entire home/apt,300,2,11,2019-06-23,1.07,1,8 +27929993,*Rare Find* AMAZING Two Bed Property,138923178,Jazzy,Manhattan,Hell's Kitchen,40.76383,-73.98922,Entire home/apt,280,2,28,2019-06-02,2.83,1,147 +27930322,One private Room Harrigan Luxury Townhouse Suite,102108786,Marie,Brooklyn,East New York,40.67186,-73.88815,Private room,150,2,1,2018-09-04,0.10,2,362 +27930328,Cozy and Affordable Room in NYC,20071733,Carolina,Manhattan,East Harlem,40.79329,-73.94725,Private room,73,5,5,2018-11-24,0.47,1,0 +27930717,Charming and cozy bedroom - close to Manhattan,34817471,Maxime,Queens,Long Island City,40.7583,-73.93294,Private room,70,4,3,2018-09-24,0.29,1,0 +27931134,NEW Bohemian Brooklyn 1 Bed,210992029,Rebecca,Brooklyn,Flatbush,40.63847,-73.95693,Entire home/apt,195,2,0,,,1,30 +27933214,Beautiful Studio in Brooklyn,138086216,Eli,Brooklyn,Bergen Beach,40.62299,-73.90501,Entire home/apt,97,2,25,2019-06-30,2.68,1,148 +27933429,Cute Williamsburg studio,35335572,Caleb,Brooklyn,Williamsburg,40.71645,-73.95721,Entire home/apt,130,3,1,2019-01-01,0.16,1,2 +27933622,Room with Private Entrance in Williamsburg,192365952,Yasser,Brooklyn,Williamsburg,40.71733,-73.95811,Private room,95,1,62,2019-07-04,5.83,1,65 +27933916,Renovated Bathroom and floor with PRIVATE Backyard,204704622,Momoyo,Queens,Woodside,40.74131,-73.89774,Private room,40,28,2,2019-05-05,0.24,7,0 +27934322,5min to metro - Cozy and Bright - Shared Kitchen,154981576,Bedly Bushwick,Queens,Ridgewood,40.70117,-73.91083,Private room,38,30,3,2019-06-19,0.36,9,7 +27934546,Artist Loft Room,8252974,Florence,Brooklyn,Williamsburg,40.71229,-73.95592,Private room,70,25,3,2019-01-03,0.33,1,0 +27934562,Shared Apt w/ Young professionals - Fast WiFi,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.69985,-73.91195,Private room,38,30,0,,,9,43 +27935275,Stunning 5 BR Townhouse with Chef's Kitchen #10288,211024051,Natalie,Brooklyn,Crown Heights,40.67243,-73.94977,Entire home/apt,600,3,24,2019-07-01,2.27,1,139 +27935369,Cozy super private room in Brooklyn!,2510754,Marina,Brooklyn,Crown Heights,40.67508,-73.94242,Private room,44,5,2,2018-12-02,0.20,1,0 +27935946,Cozy room 20-101,115993835,Shimin,Brooklyn,Sunset Park,40.64021,-74.00867,Private room,29,1,18,2019-04-27,1.73,5,0 +27936288,Cute & Comfy 1 bedroom apt (Downtown NYC),211034625,Elle,Manhattan,Chinatown,40.71409,-73.99575,Entire home/apt,135,3,9,2019-04-19,0.87,1,68 +27936320,Bushwick Duplex Haven near L train,52593429,Xavier,Brooklyn,Bushwick,40.70488,-73.92521,Private room,58,2,13,2019-03-23,1.25,2,3 +27936628,Beautiful room in East Harlem!,52125790,Daniela,Manhattan,East Harlem,40.793,-73.94125,Private room,120,3,5,2019-04-28,0.47,1,0 +27936839,Big & Sunny room w/toilet in Williamsburg,1472433,Marcos,Brooklyn,Williamsburg,40.70698,-73.94295,Private room,110,1,3,2019-06-11,0.28,2,173 +27937564,Idyllic West Village Bedroom - Private Room,3571431,Julianne,Manhattan,West Village,40.73086,-74.00498,Private room,130,5,4,2019-06-05,0.41,2,117 +27938207,Private Room in Charming NYC Guest Suite (single),50756378,Nina,Staten Island,Clifton,40.61706,-74.08567,Private room,50,2,8,2019-04-28,0.77,7,37 +27939557,Private room in Charming NYC Guest Suite (Double),50756378,Nina,Staten Island,Clifton,40.61683,-74.08552,Private room,40,2,4,2019-04-13,0.39,7,37 +27939842,Shared Loft in Charming Guest Suite (Front Left),50756378,Nina,Staten Island,Clifton,40.61542,-74.08496,Shared room,95,3,0,,,7,37 +27941636,Beautiful apartment 3 subway stops from Manhattan!,211069875,Nat,Brooklyn,Borough Park,40.6428,-73.99297,Private room,70,1,0,,,1,0 +27948294,"The Elkins House – Truly Rare, Historic 5BR 3 Bath",211106440,Amber,Brooklyn,Crown Heights,40.67782,-73.94373,Entire home/apt,495,4,46,2019-06-17,4.55,1,194 +27949286,High Ceiling + Sunny Brooklyn loft experience :D!,211115242,Hardik,Queens,Ridgewood,40.7018,-73.89643,Private room,80,1,16,2018-11-23,1.54,1,0 +27949417,"Private room in TRIBECA Loft, elevator into apt!",50288091,Daniel,Manhattan,Tribeca,40.71392,-74.00754,Private room,200,2,3,2019-04-07,0.84,1,0 +27949503,PARK AVE - Easiest Apartment to Get to in NYC,52310314,Nick,Manhattan,Murray Hill,40.74775,-73.98226,Private room,89,1,13,2019-05-19,1.27,1,2 +27951070,Light-filled Brooklyn Brownstone Apartment,209237058,J.S.,Brooklyn,Bedford-Stuyvesant,40.68368,-73.92028,Private room,40,3,7,2018-10-29,0.69,1,13 +27951475,Brooklyn Apartment,168569105,Maka,Brooklyn,Bedford-Stuyvesant,40.69037,-73.92694,Private room,60,9,1,2019-04-09,0.33,1,83 +27952152,Ladies bedroom Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95668,Shared room,36,1,15,2019-06-01,1.45,34,365 +27952742,TW #7 Private Rm. 2nd Fl. Full Size Bed 1 Guest,211136294,Sharon & Erika,Bronx,Schuylerville,40.83729,-73.83323,Private room,69,1,2,2019-05-10,0.19,5,330 +27952837,Huge private room in a Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.67818,-73.94709,Private room,45,7,1,2018-09-02,0.10,3,143 +27952988,"Light-drenched room in cozy, art-filled apartment",4441146,Michele,Brooklyn,Carroll Gardens,40.67724,-73.99797,Private room,75,1,25,2019-06-03,2.36,1,65 +27953232,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET,200380610,Pranjal,Manhattan,Upper East Side,40.75991,-73.96105,Entire home/apt,160,30,0,,,65,364 +27953771,Best Brooklyn location - stylish and comfortable,15102235,Lindsay,Brooklyn,Cobble Hill,40.68643,-73.9976,Entire home/apt,125,4,38,2019-07-05,3.75,2,33 +27953850,Amazing Private Room in BK,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69159,-73.9388,Private room,55,2,30,2019-06-11,2.98,3,314 +27954057,"Spanish Harlem, NYC Apartment with Roofdeck Garden",203286339,Douglas,Manhattan,East Harlem,40.7887,-73.9414,Private room,90,1,50,2019-05-18,4.84,1,0 +27954244,Chelsea renovated 2 bedroom Apartment,152129733,Marie,Manhattan,Hell's Kitchen,40.76261,-73.99143,Entire home/apt,300,3,1,2019-06-23,1,1,90 +27954369,PRIVATE 1 BED IN APT OFF PROSPECT PARK | Q & B,63480384,Jennifer,Brooklyn,Flatbush,40.6531,-73.96184,Private room,88,2,5,2019-07-01,0.53,2,86 +27955732,Ladies bedroom Bed 3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6925,-73.95551,Shared room,36,1,16,2019-06-15,1.51,34,365 +27955820,24HR Doorman Condo&Gym 3Blocks From Time Square!!!,58905707,Greg,Manhattan,Hell's Kitchen,40.76168,-74.00079,Entire home/apt,225,2,14,2018-12-30,1.35,1,0 +27956646,"Spacious, Sunny Room in BKLYN, NYC.",11002711,Andrei,Brooklyn,Midwood,40.61349,-73.94896,Private room,79,1,6,2019-05-26,0.67,1,180 +27956689,Spacious private room in the heart of EastVillage,71149842,Yaasha,Manhattan,East Village,40.72882,-73.97807,Private room,80,1,6,2019-01-06,0.58,2,0 +27957027,Cozy Room With Access to Two Full Bathrooms,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68465,-73.93847,Private room,39,2,62,2019-06-28,6.08,3,4 +27957371,Agate Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69448,-73.95696,Private room,43,2,20,2019-06-12,1.96,34,344 +27958130,Big beautiful room with tons of sunlight,25710035,Blaine,Brooklyn,Bushwick,40.69695,-73.92268,Private room,37,28,1,2018-10-31,0.12,1,0 +27958825,★SPRING/ SUMMER SALE ALERT★ 10 MIN TO TIMES SQUARE,208770380,William,Manhattan,Hell's Kitchen,40.76511,-73.98714,Entire home/apt,394,2,19,2019-06-01,2.19,1,68 +27959042,Top Luxury NYC EmpireSt View 3BR/2BA w/Terrace+Gym,162397867,Lea,Manhattan,Kips Bay,40.74487,-73.97608,Entire home/apt,799,5,1,2018-09-14,0.10,1,364 +27959548,"Authentic, Traditional NYC - Walk to Times Square",208918394,John,Manhattan,Hell's Kitchen,40.76543,-73.98871,Entire home/apt,499,2,28,2019-06-07,2.95,1,233 +27959826,Spacious room in Brooklyn by the subway!,79489045,ZhongJei,Brooklyn,Borough Park,40.64423,-73.99686,Private room,60,3,1,2019-06-03,0.81,1,53 +27960021,Cozy Room In Brooklyn,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68064,-73.88285,Private room,68,2,5,2019-05-19,0.49,3,365 +27961870,Fresh room w/ skyline view in heart of Bushwick,86892036,Michael,Brooklyn,Bushwick,40.70706,-73.9201,Private room,70,3,7,2019-06-11,0.68,2,11 +27961920,CORNER SUITE HIGH CELING in a Luxury Building,828519,Teresa,Manhattan,Hell's Kitchen,40.7603,-73.98822,Private room,149,5,13,2019-06-23,1.26,1,123 +27962373,Brand new independent one bedroom apartment,211205182,Chang,Queens,Flushing,40.73736,-73.80071,Entire home/apt,69,1,86,2019-06-24,8.06,1,121 +27962805,Shared Loft in Charming Guest Suite (Front Right),50756378,Nina,Staten Island,Clifton,40.61672,-74.0855,Shared room,75,2,1,2018-09-04,0.10,7,37 +27963195,"Nice, clean and large room. Peaceful place",189404055,Antonio,Queens,Long Island City,40.7544,-73.93314,Private room,95,3,25,2019-06-24,2.44,2,245 +27963404,West Village Prime Location Light and Chic,72420514,Cate,Manhattan,West Village,40.73723,-74.00845,Entire home/apt,214,1,8,2019-05-07,0.75,3,296 +27964104,Shared Loft in Charming Guest Suite (Rear),50756378,Nina,Staten Island,Clifton,40.61575,-74.08658,Shared room,75,2,0,,,7,37 +27964166,Comfortable 2 bedroom apt in Times Square 5ppl,211220478,Georgian,Manhattan,Hell's Kitchen,40.75885,-73.98996,Entire home/apt,269,1,63,2019-06-27,6.18,1,216 +27964410,Sunny Brooklyn Apartment With Private Terrace,16533479,Sam,Brooklyn,Bedford-Stuyvesant,40.69164,-73.93431,Entire home/apt,80,3,3,2018-09-25,0.29,1,105 +27965802,Cheap and Worth it!,154678310,Rafael,Queens,Elmhurst,40.74038,-73.87381,Private room,30,1,24,2019-02-02,2.32,1,0 +27966667,Comfortable Carroll Gardens 2 BR Amazing Location,211022699,David,Brooklyn,Carroll Gardens,40.6798,-73.99272,Entire home/apt,200,2,7,2019-07-06,0.90,1,45 +27967580,"Lovely Room in Sunnsyide, 15 min ride to Manhattan",137358866,Kazuya,Queens,Sunnyside,40.73759,-73.92127,Private room,39,30,3,2019-05-10,0.31,103,251 +27967600,A Nice and Warm Place to Stay in Sunnyside!,137358866,Kazuya,Queens,Sunnyside,40.73919,-73.92004,Private room,38,30,2,2019-06-23,0.21,103,233 +27967621,"Private Guest Suite Close To Ferry, Colleges, RUMC",13974626,Carrie,Staten Island,Tompkinsville,40.63482,-74.095,Entire home/apt,65,2,13,2019-06-16,2.89,1,247 +27967972,Bushwick Oasis | Gorgeous View,23884430,Yuting,Brooklyn,Bushwick,40.69431,-73.92247,Private room,70,1,68,2019-07-06,6.54,3,168 +27975725,"J- LUXURY SHARED ROOM, AC FREE WIFI+CABLE GARDEN",8814258,Nikole,Queens,South Ozone Park,40.67172,-73.79669,Shared room,30,4,4,2019-05-01,0.41,7,365 +27975978,"J- *LUXURY SHARED ROOM AC FREE WIFI CABLE, GARDEN",8814258,Nikole,Queens,South Ozone Park,40.6726,-73.79566,Shared room,31,5,1,2018-09-30,0.11,7,365 +27977824,Modern chic studio in luxury building,120237085,Camilla,Brooklyn,Bedford-Stuyvesant,40.69217,-73.95837,Entire home/apt,170,4,3,2018-12-01,0.37,1,0 +27978240,Private/Relaxing Queen PopUp bed 30min2timessqr,4290578,Noah,Manhattan,Inwood,40.86524,-73.92195,Private room,45,1,12,2019-02-08,1.37,1,0 +27978257,1BR/Studio Superb for a professional (Hidden by Airbnb) Home,28190490,H,Manhattan,Hell's Kitchen,40.75435,-73.99744,Entire home/apt,90,4,6,2019-04-07,0.56,1,3 +27982303,Isaac apartament,70007560,Juan,Manhattan,East Harlem,40.79236,-73.94689,Entire home/apt,400,1,1,2019-01-02,0.16,2,7 +27984123,The Space in Brooklyn,57484031,Frederick,Brooklyn,Crown Heights,40.66472,-73.92871,Private room,250,1,0,,,1,0 +27985235,Large Lux Apt with Amazing NYC Views - Location!,128447,Raul,Manhattan,Kips Bay,40.74371,-73.97946,Entire home/apt,200,3,3,2019-01-01,0.28,2,13 +27986129,Times Square Apartment,6116657,Will,Manhattan,Hell's Kitchen,40.76228,-73.99027,Entire home/apt,199,3,25,2019-07-01,2.48,1,30 +27987084,"Free Cleaning & WiFi, Young Professional Roommates",155297713,Marie & Tyler,Brooklyn,Bushwick,40.70466,-73.92553,Private room,35,30,1,2018-10-31,0.12,3,4 +27987152,"Comfort Beds 4 mins to 2,5,3 4,trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65562,-73.93952,Private room,60,3,3,2019-05-05,0.29,5,90 +27987391,"30+ Day Stay-2000 sq ft Guest House, Deck, Rooftop",137522531,Ali,Queens,Flushing,40.757,-73.80927,Entire home/apt,499,6,0,,,7,363 +27987939,"Spacious, Private LIC Studio 2 Blocks to Train!",5340329,Cassidy,Queens,Sunnyside,40.74375,-73.91563,Entire home/apt,118,2,0,,,2,0 +27988211,Welcome Home To Ridgewood!,138203985,Alejandro,Queens,Ridgewood,40.70724,-73.91268,Entire home/apt,195,1,94,2019-07-07,8.84,1,0 +27988835,Huge West Village Loft in Luxury Building,3330784,Dylan,Manhattan,West Village,40.73241,-74.00722,Entire home/apt,180,6,2,2018-12-30,0.20,1,0 +27988990,"352 Prospect pl, 1st floor",211393353,Allam,Brooklyn,Prospect Heights,40.67769,-73.96548,Entire home/apt,150,15,2,2018-11-03,0.24,1,57 +27989656,Modern Luxury Studio in Heart of Astoria,3221735,Roger,Queens,Astoria,40.76836,-73.91405,Entire home/apt,115,5,28,2019-06-29,2.75,1,38 +27989719,Private Room in Prospect Place,38886949,Nishant,Brooklyn,Prospect Heights,40.67893,-73.97113,Private room,250,16,0,,,2,89 +27989781,Charming room in upper Manhattan,12358203,Rachel Leigh,Manhattan,Harlem,40.82867,-73.94561,Private room,80,1,28,2019-06-27,2.78,2,5 +27991020,Prospect Suite,23388169,Jessica,Brooklyn,Prospect Heights,40.67752,-73.96977,Private room,200,2,16,2019-06-04,1.62,2,357 +27992581,New Large Luxury Residence in Manhattan,16223929,Justin,Manhattan,Hell's Kitchen,40.75525,-73.99597,Entire home/apt,639,3,4,2019-03-26,0.38,1,108 +27993571,QUIET MASTER BEDROOM,1100212,Maria C.,Brooklyn,Bushwick,40.68636,-73.91331,Private room,150,3,1,2018-09-11,0.10,1,26 +27993666,Sunny room in Park Slope with air mattress,50407407,Nicole,Brooklyn,Park Slope,40.6715,-73.98451,Private room,70,1,1,2018-09-15,0.10,1,0 +28001559,Sunnyside's beauty,131379802,Sammy,Queens,Sunnyside,40.7441,-73.92153,Entire home/apt,115,2,31,2019-06-25,3.31,1,169 +28001862,Garden Oasis,8056254,Lou,Manhattan,East Village,40.72795,-73.97768,Entire home/apt,225,2,2,2019-01-02,0.22,1,0 +28002057,Amazing Large Sunny Studio in Greenwich Village,46160710,Shaun,Manhattan,West Village,40.73765,-74.00157,Entire home/apt,140,30,11,2019-06-26,1.24,1,6 +28002981,Beautiful Historic Home in Brooklyn,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66318,-73.95372,Entire home/apt,200,1,2,2018-10-02,0.21,10,220 +28004429,Ideal New York Apartment,57287101,Stephanie,Manhattan,East Village,40.7249,-73.98026,Entire home/apt,250,2,5,2019-06-11,0.48,1,0 +28005241,Cozy flat with back Patio,27261471,Philmore,Brooklyn,Canarsie,40.64693,-73.89537,Entire home/apt,119,5,0,,,2,220 +28007178,"Spread Love, It's the Brooklyn Way!",18090278,Taitu,Brooklyn,Midwood,40.61559,-73.9496,Entire home/apt,125,2,1,2019-01-01,0.16,1,55 +28008005,Spacious Room in Murray Hill,211535073,Piyush,Manhattan,Kips Bay,40.74336,-73.97628,Private room,150,20,1,2018-09-28,0.11,1,0 +28008714,Spacious Deco Apt.- Columbus Circle,76862848,Alexis,Manhattan,Hell's Kitchen,40.76708,-73.98295,Private room,270,6,4,2019-01-01,0.45,1,365 +28009721,"Upper Manhattan room like a studio ""White room""",51992385,Maribel,Manhattan,Washington Heights,40.84536,-73.93564,Private room,72,6,5,2019-06-09,0.53,1,361 +28010779,Luxury apartment close to Empire State Building,46842591,Panos,Manhattan,Midtown,40.74404,-73.98263,Entire home/apt,250,5,5,2018-12-09,0.51,2,179 +28010820,Bedroom on UES,2878510,Ahmet,Manhattan,Upper East Side,40.77353,-73.95357,Private room,100,3,10,2019-06-09,0.99,1,14 +28011594,Large Bedroom Steps from Subway (Ground Flr Room),29582232,Lee And Teri,Brooklyn,Flatbush,40.64184,-73.9642,Private room,68,2,42,2019-06-08,3.96,5,47 +28011745,Huge 1 bedroom in Williamsburg for Travelers,5640444,Philip,Brooklyn,Williamsburg,40.71012,-73.9595,Entire home/apt,200,5,5,2019-05-30,0.49,1,35 +28011840,Beautiful 2 Bedroom Apartment Near LGA and City,70774951,Farhan,Queens,East Elmhurst,40.76708,-73.8795,Entire home/apt,129,1,52,2019-06-21,4.92,3,296 +28012031,A Charming Hideout for a perfect weekend,178499417,Vanessa,Brooklyn,East Flatbush,40.64557,-73.94684,Entire home/apt,80,1,14,2019-02-24,1.49,1,0 +28012942,"Clean, Modern Studio. First floor access! #10292",211385563,Jason,Manhattan,Upper East Side,40.77936,-73.9518,Entire home/apt,175,2,41,2019-06-28,4.16,1,247 +28012966,A cozy quiet 1-bedroom with a balcony in Astoria,1636092,Igor,Queens,Astoria,40.76255,-73.91934,Entire home/apt,160,6,2,2018-11-21,0.19,1,19 +28013709,Your Home Next to the Empire State Building,33245632,Tassie,Manhattan,Murray Hill,40.74628,-73.97899,Entire home/apt,460,2,11,2019-06-30,1.07,1,27 +28014073,Heights,9130040,Candace,Brooklyn,East Flatbush,40.66184,-73.93436,Private room,89,1,2,2019-05-19,0.22,6,365 +28014366,"Private, spacious home in Central Brooklyn!",37697640,Sarah,Brooklyn,Crown Heights,40.67672,-73.94934,Entire home/apt,99,2,3,2018-12-28,0.30,1,0 +28014495,Modern Sunlit Brooklyn Apartment,111284635,Kevin,Brooklyn,Bedford-Stuyvesant,40.67856,-73.94483,Private room,55,2,11,2019-05-05,1.15,1,4 +28014733,Warm & Cozy Room in Sunnyside. Awesome Location!,137358866,Kazuya,Queens,Sunnyside,40.73703,-73.92179,Private room,38,30,0,,,103,245 +28014842,1BR Central park apartment with lots of sunshine!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94421,Entire home/apt,76,30,3,2019-03-31,0.36,103,219 +28015516,Fanta Sea Home 3,131777975,Jewell,Brooklyn,Brownsville,40.66339,-73.91671,Private room,50,4,5,2019-06-10,0.52,3,365 +28016217,Mercedes-Benz Home | Dinner for 50+ | Private Chef,4740447,5 Star Stays,Brooklyn,Prospect-Lefferts Gardens,40.66178,-73.9505,Entire home/apt,175,1,76,2019-07-07,8.29,1,321 +28020352,Rare Downtown First Floor Apt w Private Backyard,16714191,Nicolas,Manhattan,Gramercy,40.7358,-73.9806,Entire home/apt,160,3,6,2019-05-28,0.69,1,351 +28021392,Queens Jazz Home (JW),211212649,Kyle,Queens,St. Albans,40.69548,-73.77436,Private room,65,2,1,2018-12-31,0.16,1,0 +28025050,Comfortable New York City Apartment,826553,Mira,Manhattan,Washington Heights,40.85461,-73.92668,Entire home/apt,80,4,6,2019-06-19,0.59,1,56 +28025630,Central Park master room with private bathroom.,211678783,Judy,Manhattan,East Harlem,40.78807,-73.93988,Private room,99,1,20,2019-06-02,2.03,1,0 +28026246,Beautiful 4BDR Unit @Greenpoint 2stop to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.72625,-73.95578,Entire home/apt,480,1,11,2019-06-12,1.30,4,63 +28028868,Private Bedroom B in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.68993,-73.91139,Private room,60,2,32,2019-06-17,3.10,3,78 +28029439,Beautiful Bedroom in Brooklyn Apt,92237522,Amaru,Brooklyn,Flatbush,40.63621,-73.95252,Private room,35,3,17,2019-06-29,1.62,2,59 +28030557,Cozy 2 bedroom NYC apartment near LGA Airport,151520943,Kenny,Queens,East Elmhurst,40.76248,-73.86986,Private room,110,1,52,2019-03-30,4.92,1,365 +28030637,Bedroom in a charming apartment near Prospect Park,8539550,Gabrielle,Brooklyn,Kensington,40.64349,-73.9738,Private room,60,3,20,2019-06-30,1.91,1,62 +28031322,"Staten Island Gem, 4 bedroom duplex in St. George",196770644,Rafael,Staten Island,Stapleton,40.63556,-74.07623,Entire home/apt,150,2,27,2019-07-01,2.74,1,259 +28031581,Entire House For Rent In Brooklyn NY.,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60766,-73.95384,Entire home/apt,350,1,23,2019-06-25,2.88,8,334 +28031654,Private Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.6932,-73.90639,Private room,65,1,26,2019-05-23,2.52,3,0 +28031717,"Artist retreat in East Williamsburg, Brooklyn",2478763,Gonzalo,Brooklyn,Williamsburg,40.71594,-73.94113,Entire home/apt,298,2,2,2019-01-01,0.20,1,74 +28032779,The Sweet Suite,32092125,Christine,Queens,Springfield Gardens,40.66207,-73.74986,Entire home/apt,101,1,32,2019-06-24,4.40,1,135 +28033675,"Convenient, shared-studio in LIC/Sunnyside",5340329,Cassidy,Queens,Sunnyside,40.74342,-73.91538,Shared room,72,2,0,,,2,0 +28033814,Large bright bedroom near Bushwick,199203455,Kendra,Queens,Ridgewood,40.70476,-73.91111,Private room,75,1,3,2018-09-08,0.29,1,0 +28035852,Urban Oasis,211124733,Murtland,Queens,Jamaica,40.67091,-73.78204,Entire home/apt,165,3,24,2019-06-17,2.32,1,51 +28039292,My wife is not used to the noisy environment. How,5687436,Jane,Manhattan,Financial District,40.70535,-74.01277,Entire home/apt,200,1,0,,,1,0 +28041818,Bedroom Two in Private House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.67296,-73.79658,Private room,80,1,75,2019-07-05,9.34,3,57 +28042014,Bedroom One In Private House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.6718,-73.79719,Private room,80,1,66,2019-07-02,7.56,3,48 +28042536,Sunny&Quiet 1 Bed APT in central Greenwich Village,198610122,Christina,Manhattan,West Village,40.73011,-74.00198,Entire home/apt,170,2,6,2019-07-07,0.59,1,0 +28042839,"7BR, 4 Full Bath Duplex with Washer & Dryer",210970608,Lucy,Brooklyn,Crown Heights,40.66996,-73.94836,Entire home/apt,530,3,8,2019-05-20,0.90,5,249 +28043195,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE CABLE WIFI,8814258,Nikole,Queens,South Ozone Park,40.67324,-73.7957,Shared room,34,5,2,2019-02-23,0.23,7,365 +28043390,Sunny room in Manhattan ☀️,88827816,Ziva,Manhattan,Upper East Side,40.76325,-73.95893,Private room,99,11,0,,,1,365 +28044146,J- **LUXURY SHARED ROOM 2PPL FREE WIFI+CABLE+AC,8814258,Nikole,Queens,South Ozone Park,40.67286,-73.79666,Shared room,29,5,1,2018-09-14,0.10,7,365 +28044485,Chic sun-filled dream home in East Village,211836350,Jt,Manhattan,East Village,40.72744,-73.9831,Entire home/apt,209,3,4,2019-06-16,0.58,1,83 +28045230,Central Park Getaway,133792790,Annie,Manhattan,Upper West Side,40.77727,-73.9795,Entire home/apt,300,1,76,2019-06-22,8.29,1,239 +28045724,Heart of Bushwick! Women only,9594567,Clarissa,Brooklyn,Bushwick,40.70463,-73.92026,Private room,50,5,1,2018-09-04,0.10,1,0 +28046097,Cozy Room in East Williamsburg Apartment,37243605,Amy,Brooklyn,Williamsburg,40.71311,-73.94036,Private room,65,2,1,2019-06-30,1,1,303 +28046416,Private Bedroom with queen sized bed,193502084,Linda,Brooklyn,Borough Park,40.63989,-74.00321,Private room,45,1,7,2019-02-16,0.68,8,0 +28046788,Spacious bronx room for 1,211321817,Alexander,Bronx,Eastchester,40.88271,-73.83217,Private room,50,1,0,,,1,88 +28046851,Bellrose Home - 15 minutes from both NYC airports,211860521,Tamara,Queens,Bellerose,40.72908,-73.72778,Private room,105,3,7,2019-05-31,0.76,2,343 +28047011,"Huge room in great area, 25 minutes from Manhattan",70260514,Daphna,Queens,Woodside,40.74588,-73.89721,Private room,45,4,4,2018-12-14,0.43,1,0 +28047046,West Village Mid Century Studio Perfect for Two,16204937,Jose,Manhattan,West Village,40.73861,-74.00467,Entire home/apt,215,3,7,2018-11-24,0.68,1,0 +28047666,LaGuardia Private 3 Bedrooms Appartment for 6 Pax,10229087,Kais,Queens,Ditmars Steinway,40.77224,-73.89295,Private room,220,1,5,2019-06-08,0.61,4,346 +28049316,CUTE APARTMENT WALKING DISTANCE TO NYC BEST SPOTS,176290998,Leah,Manhattan,Hell's Kitchen,40.75622,-73.99405,Private room,100,1,12,2019-05-06,1.19,1,89 +28049432,Roomy and Relaxing Brooklyn Apartment,144687306,Nutrice,Brooklyn,Prospect-Lefferts Gardens,40.6556,-73.95286,Entire home/apt,120,2,51,2019-07-06,4.94,2,232 +28049456,Best of Williamsburg,8179150,Michael,Brooklyn,Williamsburg,40.71119,-73.94349,Private room,90,31,0,,,1,0 +28050441,"Industrial Chic, Owners Suite",211893857,Vaughn,Brooklyn,East Flatbush,40.65943,-73.91939,Entire home/apt,110,2,45,2019-07-03,5.27,1,2 +28050532,"Private Apartment: Brooklyn, NYC 40 Min to City",211895243,Lili,Brooklyn,Midwood,40.62588,-73.96396,Entire home/apt,97,2,26,2019-06-24,2.57,2,81 +28050688,Exposed Brick Bushwick Bedroom,45000778,Jordan,Brooklyn,Williamsburg,40.70612,-73.92725,Private room,75,2,6,2019-05-19,0.61,1,0 +28050972,Luxury 1BR 2 bed; no cleanup fee; fast response!,29964121,Ricky,Manhattan,Financial District,40.70402,-74.00964,Private room,150,1,17,2019-06-25,1.63,1,362 +28051505,Very large room near CUMC,176591085,Mike,Manhattan,Washington Heights,40.84519,-73.941,Private room,50,1,3,2019-06-20,1.36,4,270 +28052106,Small room near Columbia Uni med,176591085,Mike,Manhattan,Washington Heights,40.84521,-73.9416,Private room,47,1,3,2019-05-22,1.67,4,90 +28052259,Manhattan Townhouse,76350146,David,Manhattan,Kips Bay,40.74123,-73.97559,Private room,150,2,17,2019-07-01,1.95,1,0 +28052281,Private Room in a Bushwick Retreat,150578564,Morgan,Brooklyn,Bushwick,40.69938,-73.93342,Private room,75,1,75,2019-07-01,7.28,1,64 +28053065,Astoria Room,211682646,Martin & Soledad,Queens,Astoria,40.77194,-73.92985,Private room,58,1,41,2019-07-01,3.97,1,156 +28053907,Sunny apartment in historic tenement building,10043726,Giraud,Manhattan,Lower East Side,40.71823,-73.98537,Entire home/apt,150,5,20,2019-06-30,2.01,1,26 +28053933,"Comfy, Convenient, & Private Rm In Manhattan NYC",126155532,Seyoum,Manhattan,Washington Heights,40.85053,-73.93027,Private room,70,2,28,2019-06-30,2.80,1,123 +28054212,Brooklyn Serene Bedrooms,18753186,Florence,Brooklyn,Gowanus,40.68255,-73.98911,Entire home/apt,150,5,25,2019-06-30,2.43,2,54 +28054489,Creative open floor studio,42623736,Ashley,Brooklyn,Bedford-Stuyvesant,40.68476,-73.9548,Entire home/apt,130,3,2,2019-01-14,0.28,1,0 +28054901,Cozy and affordable,29953329,Yulia,Brooklyn,Bedford-Stuyvesant,40.69371,-73.94449,Private room,53,4,52,2019-06-25,6.50,2,1 +28054965,Crown Heights Gem Easy Access to ALL,52675311,Deloris,Brooklyn,Crown Heights,40.66818,-73.95529,Entire home/apt,200,2,13,2019-06-23,1.26,1,89 +28055277,"Home away from home +& (QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94391,Private room,35,1,27,2019-06-22,2.58,2,338 +28057020,Big Apt in Luxury High Rise Building - Location!,128447,Raul,Manhattan,Kips Bay,40.74365,-73.97928,Entire home/apt,220,3,0,,,2,24 +28057180,"New 4BR, 2Full Bath with Washer & Dryer",210970608,Lucy,Brooklyn,Crown Heights,40.6697,-73.94919,Entire home/apt,285,3,13,2019-06-16,1.26,5,275 +28057894,Renovated 3BR 2 Full Bath with Washer & Dryer,210970608,Lucy,Brooklyn,Crown Heights,40.66977,-73.9489,Entire home/apt,245,3,5,2019-05-30,0.48,5,278 +28068963,❤️❤️NEW 2 level home 15min to the Beach ⚓ BOOK NOW,129222253,Andy,Bronx,Williamsbridge,40.87675,-73.86372,Entire home/apt,280,2,32,2019-07-03,3.09,3,344 +28069265,Skylit Private Bedroom for LGA & JFK layovers,190096034,Janet,Queens,Corona,40.74454,-73.8592,Private room,60,1,74,2019-07-07,7.21,3,66 +28071460,Beautiful apartment in Greenpoint,9609022,Emilie,Brooklyn,Greenpoint,40.72113,-73.95279,Entire home/apt,98,8,1,2018-08-29,0.10,1,0 +28071998,Cozy room in a three-bedroom House,47516406,Arthur,Queens,Woodhaven,40.69139,-73.86086,Private room,10,7,4,2018-10-08,0.41,2,180 +28073668,Cozy Studio Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74769,-73.9885,Entire home/apt,200,2,13,2019-06-18,1.38,13,358 +28073918,"SUNNY PRIVATE BEDROOM IN WILLIAMSBURG, BROOKLYN!",51022084,Tony,Brooklyn,Williamsburg,40.71216,-73.95968,Private room,75,4,3,2019-05-28,0.30,1,29 +28074191,"Bright Room, Vibrant Area, 2 Blocks From Train",71177383,Chris,Brooklyn,Bushwick,40.70028,-73.93928,Private room,78,2,18,2019-07-02,1.80,2,266 +28075473,Sophisticated 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75522,-73.96444,Entire home/apt,239,29,0,,,96,189 +28075828,Private room + office in designer luxury penthouse,117354500,Charles,Manhattan,Flatiron District,40.73928,-73.98583,Private room,590,2,6,2018-12-02,0.60,1,125 +28076377,"Bushwick Brownstone, Long-Term Stay",87767243,David,Brooklyn,Bedford-Stuyvesant,40.68252,-73.91467,Private room,41,4,0,,,2,0 +28076544,Brooklyn Artist/Designer/Photographer Loft,1494472,Shandor,Brooklyn,Fort Greene,40.69694,-73.97493,Entire home/apt,145,30,1,2018-10-13,0.11,2,177 +28078309,*BEST DEAL*FURNISHED RM NEAR EMPIRE STATE BLDG*,200730049,Maria Luisa,Manhattan,Midtown,40.74517,-73.98924,Private room,65,30,0,,,1,363 +28078505,New york Multi-unit building,122849679,Maria,Brooklyn,Sheepshead Bay,40.59085,-73.95405,Private room,70,1,2,2018-11-03,0.20,1,0 +28079070,Private Room in the heart of Manhattan,212112060,Elisabeth,Manhattan,Upper West Side,40.78089,-73.98406,Private room,135,1,8,2018-12-16,0.93,1,197 +28079986,Brooklyn Prospect Park Parade Ground Standard,202837291,Sarahya,Brooklyn,Flatbush,40.64668,-73.9642,Private room,65,1,20,2019-06-22,2.09,2,164 +28081396,Beautiful Spacious Shared Queens Apartment.,210179412,Joshua,Queens,Springfield Gardens,40.66684,-73.76645,Shared room,120,1,16,2019-06-23,1.62,1,14 +28081740,Classic and Charming Upper West Side NYC Apt,7341856,Lenore,Manhattan,Upper West Side,40.78162,-73.9753,Entire home/apt,175,1,1,2018-09-02,0.10,1,195 +28081782,Private room w/attached bath in hot of Flushing,205745676,Liqin,Queens,Flushing,40.75806,-73.82005,Private room,85,1,24,2019-06-16,2.31,9,341 +28081940,Large Private Bedroom 15 mins from Central Park,48898267,Julien,Manhattan,Harlem,40.81695,-73.94335,Private room,79,2,3,2018-11-11,0.29,1,0 +28082095,The BEST of SoBro,135412962,Charlie,Bronx,Mott Haven,40.80769,-73.91617,Entire home/apt,130,1,38,2019-06-30,3.68,1,349 +28083637,Brooklyn Prospect Park South Master Suite,202837291,Sarahya,Brooklyn,Flatbush,40.64543,-73.96457,Private room,80,1,18,2019-06-22,1.83,2,78 +28083998,Private Room Family & Friendly,210297251,Grisel,Brooklyn,Crown Heights,40.67718,-73.95852,Private room,70,2,1,2018-09-14,0.10,1,0 +28084157,Couple room w/attached bath. In heart of Flushing,205745676,Liqin,Queens,Flushing,40.75746,-73.82013,Private room,89,1,28,2019-07-07,2.78,9,346 +28084536,Casa familiar,212157854,Camilo,Bronx,Concourse,40.83703,-73.91643,Private room,40,2,32,2019-06-29,3.08,2,132 +28085491,1 Bedroom in NYC's Lower East Side! | Chinatown,50250626,Greg,Manhattan,Lower East Side,40.71882,-73.98554,Entire home/apt,185,1,52,2019-07-04,5.20,1,162 +28087456,ROYAL QUEENS ASTORIA,45404805,Bianca,Queens,Astoria,40.769,-73.93284,Private room,120,5,2,2018-10-12,0.21,2,90 +28089652,Boho-Chic sleeps 4 TOP FLOOR penthouse prime WBURG,23156390,Emily,Brooklyn,Williamsburg,40.71227,-73.957,Entire home/apt,122,30,5,2019-07-02,0.76,1,152 +28094626,"Large and clean room with a king size bed,",189404055,Antonio,Queens,Long Island City,40.75487,-73.93105,Private room,55,1,11,2019-07-01,2.16,2,281 +28095496,"Roomy FiDi 1BR w/ Gym, Roof deck + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70427,-74.00964,Entire home/apt,285,30,1,2018-11-03,0.12,232,324 +28096650,Small Bedroom in Beautiful Duplex,212232139,Andrea,Brooklyn,Bedford-Stuyvesant,40.67812,-73.9168,Private room,30,3,7,2019-06-27,0.68,1,2 +28097610,relaxing bed and breakfast feel apartment.,84366617,Kathy,Brooklyn,Gravesend,40.58771,-73.966,Entire home/apt,80,2,1,2019-06-23,1,2,229 +28100131,When modern renovation meets prewar details,212262028,R R,Brooklyn,Fort Greene,40.69032,-73.97678,Entire home/apt,335,3,16,2019-06-23,1.67,2,81 +28100333,Respectful Beautiful Harlem Room,212263525,SamariSankofa,Manhattan,Harlem,40.81047,-73.94042,Private room,848,1,19,2019-05-26,1.89,3,355 +28100624,Brooklyn Apartment,82490186,James,Brooklyn,Bushwick,40.70156,-73.91329,Private room,75,1,14,2019-05-28,1.44,1,48 +28100877,Queens Apartment downtown flushing,203986261,Ajay,Queens,Flushing,40.75831,-73.82776,Private room,55,1,37,2019-06-21,3.58,1,142 +28101132,1.5 Brooklyn Apartment w/ Private Backyard,44174247,Chloe,Brooklyn,Clinton Hill,40.69343,-73.96387,Entire home/apt,119,1,3,2018-10-09,0.30,1,0 +28101217,Cozy Bushwick apartment with backyard!,74305569,Nicole,Brooklyn,Bushwick,40.69552,-73.92341,Entire home/apt,143,2,3,2018-10-14,0.29,2,0 +28101280,Comfy and cute UWS bedroom,81711191,Enrique,Manhattan,Upper West Side,40.80313,-73.96745,Private room,80,3,1,2018-12-31,0.16,1,3 +28101762,Beautiful Brown stone in Central Park West,213020,Robert,Manhattan,Upper West Side,40.78786,-73.96837,Entire home/apt,175,2,39,2019-07-02,4.08,3,142 +28101852,Hip Apartment in Brooklyn w/ lots of amenities,212274985,Sam,Brooklyn,Bedford-Stuyvesant,40.67765,-73.92345,Entire home/apt,150,2,17,2019-06-24,1.73,1,11 +28101926,Resort style living. Ferry to city 5 min walk.,67048974,Jonathan,Bronx,Clason Point,40.80644,-73.8518,Private room,48,2,33,2019-06-22,3.21,1,47 +28104307,Sonder | Madison Ave | Cozy 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.7468,-73.98329,Entire home/apt,239,29,0,,,96,333 +28104895,Cozy Chelsea Downtown Studio w/ Private Backyard,51289216,Carrie,Manhattan,Chelsea,40.74363,-74.0022,Entire home/apt,167,2,60,2019-06-30,5.75,1,164 +28105301,Sonder | 180 Water | Beautiful Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70619,-74.0064,Entire home/apt,169,29,1,2019-05-18,0.58,96,214 +28105430,Bright Spacious Apt [20 mins - Manhattan],48167507,Kalaya'An,Queens,Jackson Heights,40.74691,-73.89193,Private room,86,2,3,2018-10-02,0.29,1,88 +28105759,Spacious One-Bedroom apartment - Manhattan,212306955,Axelle,Manhattan,Washington Heights,40.85508,-73.92779,Entire home/apt,110,2,9,2019-07-07,0.96,1,157 +28107104,SPACIOUS AND PRIVATE BEDROOM NEW YORK,36966743,Samuel,Queens,Jackson Heights,40.75061,-73.89364,Private room,55,1,50,2019-06-24,4.81,1,1 +28107465,Cozy apt. with private room on UWS. Low price!,4536328,Ram Anthonie,Manhattan,Upper West Side,40.79918,-73.9622,Private room,85,1,25,2019-03-21,2.60,1,0 +28108863,Beautiful & Central Manhattan 1 Bedroom Apt,28135147,V,Manhattan,Harlem,40.80375,-73.95501,Entire home/apt,200,2,20,2019-06-23,2.02,1,11 +28108959,Sunny Prospect Park Studio,2153064,Justin,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.95982,Entire home/apt,100,3,18,2019-06-20,1.74,1,0 +28109059,Private Room in Prime Crown Heights Location!,103411445,Nina,Brooklyn,Crown Heights,40.67613,-73.94578,Private room,59,2,25,2019-06-25,3.07,1,60 +28111213,Luxurious+spacious room 10 mins from UES,20359104,Pm,Bronx,Mott Haven,40.8106,-73.91667,Private room,68,1,16,2019-05-26,1.55,1,347 +28121200,靠近机场交通购物两便利房间#1,156547988,Minying,Queens,Ozone Park,40.67807,-73.8486,Private room,65,1,6,2019-01-02,0.61,4,335 +28121527,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,212417594,Hugo,Brooklyn,Williamsburg,40.70952,-73.96267,Entire home/apt,380,7,1,2018-09-28,0.11,1,0 +28121788,Beautiful & Bright One-Bedroom in Hells Kitchen,1680013,Michael,Manhattan,Hell's Kitchen,40.76596,-73.98846,Entire home/apt,165,7,5,2019-04-19,0.53,1,0 +28123708,"Large, Fully Furnished, Quiet 1 Bedroom Apt.",13562603,Rebecca,Brooklyn,Flatbush,40.64831,-73.95788,Entire home/apt,80,90,0,,,1,95 +28123818,KING Room w Private Entrance - Times Square,42998647,Prav,Manhattan,Hell's Kitchen,40.75759,-73.99006,Private room,45,3,72,2019-06-23,6.99,3,86 +28125509,Private bed/ bath in classic Upper West Side apt.,191106696,Jeff,Manhattan,Upper West Side,40.79103,-73.97632,Private room,79,1,59,2019-07-04,5.75,1,61 +28126530,Sonder | 21 Chelsea | Desirable 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.741,-73.99456,Entire home/apt,244,29,1,2019-03-31,0.30,96,240 +28126994,Sonder | 180 Water | Sophisticated 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70611,-74.00626,Entire home/apt,299,29,0,,,96,311 +28127009,Ruby Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69406,-73.95665,Private room,65,2,22,2019-06-16,2.16,34,288 +28127032,Sonder | 180 Water | Airy 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70798,-74.00591,Entire home/apt,299,29,0,,,96,189 +28127126,Chez Jesse Vacation Spot,3191371,Jesse,Manhattan,East Harlem,40.80656,-73.93709,Private room,80,2,1,2019-07-01,1,3,181 +28128130,Astoria Cozy 2 Bedrooms Apartment,83342221,Edgard,Queens,Astoria,40.76317,-73.91124,Entire home/apt,200,5,1,2018-09-30,0.11,1,0 +28128149,LUXURY 1 BR ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.76106,-73.98574,Entire home/apt,410,30,0,,,65,365 +28128620,Room in Brooklyn,4463170,Yordanos,Brooklyn,Bushwick,40.69748,-73.92319,Private room,37,2,2,2018-09-10,0.19,1,0 +28129212,Intimate SIngle Room in Bushwick!,212071658,Brian,Brooklyn,Bushwick,40.6914,-73.90388,Private room,40,2,21,2019-06-11,2.08,5,343 +28129366,Spacious 1 bedroom apartment in HEART of Manhattan,14012333,Chris,Manhattan,Murray Hill,40.74657,-73.97539,Entire home/apt,280,2,10,2019-06-29,1.06,1,70 +28129565,Fun Leffert's Gardens Suite,212473045,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.9504,Private room,99,1,31,2019-05-09,3.06,1,0 +28129668,Stunning Brand New Apartment 35m to NYC!!!,303926,Kay,Brooklyn,Cypress Hills,40.68287,-73.88578,Entire home/apt,160,2,3,2019-04-21,0.29,2,167 +28129744,Brooklyn Apartment,212472679,Tyson,Brooklyn,Williamsburg,40.71201,-73.94474,Entire home/apt,275,3,1,2018-10-08,0.11,1,0 +28129768,Cozy private room,10009047,Alexandra,Queens,Astoria,40.76605,-73.908,Private room,65,3,15,2019-04-10,1.51,1,0 +28130741,"Renovated, Stylish Apt! Next to Prospect Park",6109032,Claire,Brooklyn,Prospect-Lefferts Gardens,40.66159,-73.95921,Entire home/apt,104,3,11,2019-03-25,1.05,1,0 +28131065,"Beautiful Basement Apt in Fresh Meadows, Queens",86622957,Gail,Queens,Fresh Meadows,40.72717,-73.79055,Entire home/apt,60,1,45,2019-06-20,4.98,1,42 +28131994,Cozy Convenient Brooklyn One Bedroom,80788474,Ambre,Brooklyn,Bedford-Stuyvesant,40.68195,-73.95328,Entire home/apt,165,3,0,,,2,83 +28133007,Cozy 1 BDRM in Union Square,66744439,Sara,Manhattan,Chelsea,40.73642,-73.9924,Entire home/apt,200,1,0,,,1,0 +28133736,Luxury Manhattan Loft w Huge Private Back Yard,118908092,Selma,Manhattan,Gramercy,40.73449,-73.98473,Entire home/apt,250,1,28,2019-06-27,2.75,1,25 +28133769,Cozy 1st fl spacious bdrm in 3 bdrm New York Apt,120974332,Jessi,Manhattan,East Harlem,40.79726,-73.93164,Private room,66,2,23,2019-06-19,2.23,2,5 +28133914,Private bedroom in Brooklyn apartment,137562994,Danila,Brooklyn,Bedford-Stuyvesant,40.6814,-73.94975,Private room,85,2,15,2019-07-07,1.45,1,257 +28134807,"Girls House - ""Dandelion"" Single Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68276,-73.8708,Shared room,25,4,19,2019-06-26,1.91,6,16 +28135177,West Village Dream - sunny bedroom,22508819,Camille,Manhattan,West Village,40.73039,-74.00208,Private room,140,5,4,2019-05-13,0.39,1,0 +28135693,"Girls House - ""Azalea"" Loft Upper Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68385,-73.87088,Shared room,25,1,26,2019-06-30,2.57,6,23 +28135901,1br apt in Ditmars/Astoria,9813962,Andi,Queens,Ditmars Steinway,40.7787,-73.9093,Entire home/apt,100,4,2,2018-09-09,0.19,1,26 +28135996,APARTAMENTO EN JACKSON HGTS,212526912,Martha Liliana,Queens,East Elmhurst,40.75727,-73.88346,Private room,75,2,1,2018-09-23,0.10,2,363 +28136026,"Girls House - ""Bauhinia"" Lower Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68217,-73.8723,Shared room,25,1,25,2019-06-19,2.52,6,2 +28136160,Manhattan theater district,17101801,Marina,Manhattan,Hell's Kitchen,40.75819,-73.99347,Entire home/apt,150,29,3,2019-05-23,0.37,1,287 +28136772,Cozy Room on the Upper East Side,108576923,Margaret,Manhattan,Upper East Side,40.77006,-73.95589,Private room,150,1,0,,,1,177 +28136987,ParkView Modern Design New 4 Bedrooms Apartment,127571361,Wendy,Brooklyn,Bay Ridge,40.63939,-74.03028,Entire home/apt,134,2,35,2019-06-21,3.40,1,34 +28137157,"Laurelton, Queens, NYC (3min-JFK; Seconds-LIRR)",157393936,Apostle John,Queens,Springfield Gardens,40.66959,-73.75246,Private room,100,5,1,2018-09-13,0.10,2,365 +28137345,Just 10 minutes from Manhattan (S ),43930499,Katherine,Queens,Elmhurst,40.74356,-73.88813,Private room,140,1,4,2019-06-21,0.45,2,79 +28137623,"Queens, NYC Centralized: 3 min-JFK; Secs. to LIRR",157393936,Apostle John,Queens,Springfield Gardens,40.66932,-73.7514,Private room,95,5,1,2018-10-17,0.11,2,90 +28138470,New MidCentury Modern Apt In The Heart Of Brooklyn,42085952,Mj,Brooklyn,Flatbush,40.63088,-73.96113,Entire home/apt,102,2,0,,,1,36 +28138840,Big and bright private room,210408018,Katelyn,Manhattan,East Harlem,40.7961,-73.94366,Private room,100,2,16,2019-01-05,1.55,1,0 +28139041,New! 3B2B Bayside/3 blocks to train/25 min to NYC,18159034,Sara,Queens,Bayside,40.76039,-73.77419,Entire home/apt,190,3,1,2019-01-01,0.16,1,0 +28144810,1 Bed Apartment in the heart of Brooklyn,105831144,Ben,Brooklyn,Bushwick,40.70642,-73.92165,Entire home/apt,240,2,1,2018-09-03,0.10,1,0 +28149619,Lefferts Gardens Enclave,90096680,Richard,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.9482,Entire home/apt,102,1,2,2019-07-01,2,1,0 +28151027,"Home sweet home +&(QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94591,Private room,40,1,16,2019-06-16,1.84,2,310 +28151382,Cozy 1BR Apartment in East Village,69878814,Jessica,Manhattan,East Village,40.72244,-73.98194,Entire home/apt,120,4,5,2018-12-03,0.49,1,1 +28152851,PRIME location 2min to train 20min Manhattan,19303369,Hiroki,Queens,Woodside,40.74408,-73.90498,Private room,43,30,2,2019-01-14,0.28,37,0 +28153873,Idyllic West Village Full 2 bedroom,3571431,Julianne,Manhattan,West Village,40.73281,-74.00688,Entire home/apt,375,4,5,2019-05-26,0.55,2,289 +28153938,"Luxury modern oasis, 1 stop from Manhattan",10109608,Aj,Queens,Long Island City,40.74726,-73.94074,Entire home/apt,156,2,9,2019-03-25,0.88,2,0 +28154487,Bed-Stuy one bedroom with Balcony,212660460,Nazanin,Brooklyn,Bedford-Stuyvesant,40.67999,-73.94618,Entire home/apt,100,21,2,2019-03-15,0.24,1,33 +28154635,Upper West Side 1 Bedroom Apt near Central Park,212661859,Amita,Manhattan,Upper West Side,40.78333,-73.98089,Entire home/apt,199,4,6,2018-11-18,0.58,1,0 +28155197,Your home away from home!!,208079253,Wendy,Brooklyn,Crown Heights,40.67737,-73.94034,Entire home/apt,115,3,32,2019-06-16,3.49,1,168 +28157869,Brooklyn Guest Suite,68927337,Jean,Brooklyn,East Flatbush,40.65329,-73.92756,Shared room,50,7,1,2018-09-28,0.11,1,179 +28158237,"Warm, Bright and JUST RIGHT! +Brownstone",212689019,Ronald,Brooklyn,Bedford-Stuyvesant,40.68723,-73.92003,Private room,109,1,16,2019-06-24,1.58,2,179 +28159221,"Relaxation Station :-D +Brownstone",212689019,Ronald,Brooklyn,Bedford-Stuyvesant,40.68563,-73.92193,Private room,99,1,24,2019-07-01,2.36,2,179 +28160047,Private Double Room in the heart of Williamsburg,38194603,Adham,Brooklyn,Williamsburg,40.71884,-73.95825,Private room,76,1,46,2019-06-23,5.04,2,52 +28160221,Upscale Living. Home Away from Home.,205594323,Ade,Queens,Springfield Gardens,40.6675,-73.75245,Entire home/apt,185,2,30,2019-06-30,2.90,1,146 +28161643,New York Apartment,28408861,Kristianne,Manhattan,East Harlem,40.79009,-73.94741,Private room,97,2,0,,,1,0 +28161907,Large & Luxury One Bedroom Apartment on 34th St,45241930,Juline,Manhattan,Murray Hill,40.74433,-73.97416,Entire home/apt,150,7,6,2019-06-20,0.60,3,43 +28162058,Garden Loft Manhattan Apartment,4562182,Florence,Manhattan,Harlem,40.81084,-73.94482,Entire home/apt,225,30,9,2019-06-22,0.95,4,326 +28165121,"Large, Sunny Retreat- B/Q subway, Prospect Park!",47050813,Jewel,Brooklyn,Flatbush,40.65131,-73.96307,Private room,70,1,31,2019-07-02,3.00,2,51 +28172195,"Spacious, Bright Duplex Apartment with a Skylight",13415893,Porsha & Jordan,Brooklyn,Crown Heights,40.67,-73.95091,Entire home/apt,89,2,0,,,1,6 +28172338,Casas familiar,212157854,Camilo,Bronx,Concourse,40.83659,-73.91777,Private room,40,1,1,2018-10-13,0.11,2,8 +28172407,Cozy Room close to subway and park,4982459,Mariana,Brooklyn,Flatbush,40.65193,-73.96401,Private room,85,5,1,2018-09-23,0.10,3,0 +28178226,EAST VILLAGE E12TH ST-TOP FLOOR 2 BR APT,200380610,Pranjal,Manhattan,East Village,40.73087,-73.98631,Entire home/apt,255,30,0,,,65,364 +28179447,"A COZY COMFY ROOM NEAR THE BEACH,STORES AND JFK",212834813,Olayode,Queens,Arverne,40.59194,-73.8,Private room,50,1,44,2019-07-01,4.57,1,155 +28180599,Chic UWS Apt - 1 block from Central Park!,190130382,Sarah,Manhattan,Upper West Side,40.78517,-73.97672,Entire home/apt,150,5,4,2018-10-09,0.41,1,53 +28181243,"Kosher, newly renovated, stylish 1 bedroom",15529083,Melissa,Brooklyn,Crown Heights,40.66891,-73.93495,Entire home/apt,200,3,2,2018-12-30,0.24,1,362 +28181405,Harlem Green - City College,11099966,James,Manhattan,Harlem,40.82175,-73.95109,Private room,57,2,57,2019-06-28,5.90,2,13 +28181575,Airy 1 Bedroom Flat in Vinegar Hill Townhouse,39523758,Nick,Brooklyn,Navy Yard,40.70375,-73.97979,Entire home/apt,150,3,0,,,1,0 +28181805,Harlem White - City College,11099966,James,Manhattan,Harlem,40.82162,-73.94902,Shared room,45,2,54,2019-06-26,5.61,2,22 +28181827,Newly built 1 BR apartment with private rooftop!,57024509,Soheil,Brooklyn,Bushwick,40.69452,-73.9082,Entire home/apt,90,5,8,2019-04-26,0.81,1,0 +28182350,Queens Beauty Close to Manhattan,212857568,Howard,Queens,Ozone Park,40.67616,-73.86016,Entire home/apt,90,4,12,2019-06-19,1.38,1,193 +28182769,Nice & Cozy manhattan apartment,99149791,Prez,Manhattan,Harlem,40.80281,-73.94748,Entire home/apt,160,1,2,2018-10-28,0.22,1,10 +28183270,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE CABLE WIFI,8814258,Nikole,Queens,South Ozone Park,40.67181,-73.79622,Shared room,30,4,0,,,7,365 +28184001,"Queens, Astoria - Apartment & Room with NYC view.",212160752,James,Queens,Astoria,40.76768,-73.92001,Private room,63,4,10,2019-07-04,1.18,1,74 +28184101,Great spot in Bushwick,32992928,François,Brooklyn,Bushwick,40.70076,-73.92382,Entire home/apt,180,3,2,2018-09-30,0.21,1,15 +28184199,Luxury and comfort,212871974,Rushella,Brooklyn,Prospect-Lefferts Gardens,40.65849,-73.94791,Private room,100,3,2,2018-10-07,0.20,1,89 +28184830,1 Bedroom in Williamsburg 3 BD/1BA Apartment,26942041,Clara,Brooklyn,Williamsburg,40.70744,-73.95136,Private room,50,7,0,,,1,0 +28185867,Zen & Cozy Room In Astoria,39537244,Evelyn,Queens,Ditmars Steinway,40.78569,-73.91522,Private room,42,3,11,2019-07-02,1.14,1,244 +28186096,Studio apt. w/ lofted queen bed in East Village,97395286,Grayson,Manhattan,East Village,40.72899,-73.98334,Entire home/apt,160,4,6,2019-04-24,0.65,1,6 +28187115,French charm in Manhattan,35649879,Brad,Manhattan,Upper East Side,40.76249,-73.96428,Entire home/apt,430,2,10,2019-07-04,1.06,1,365 +28187614,"Warm, cozy, private entrance with 2 Full bathrooms",212899703,Ms. Debra,Queens,Jamaica,40.67956,-73.76621,Entire home/apt,83,3,29,2019-06-23,2.82,3,48 +28188131,Welcoming place in Upper East Side,28840396,Ruben,Manhattan,East Harlem,40.79863,-73.93461,Private room,95,5,14,2019-06-23,1.39,1,137 +28188696,Steps 2 Prospect Park & 2 blocks 2Q Train cool apt,2568528,Maria,Brooklyn,Flatbush,40.65152,-73.96429,Entire home/apt,75,5,14,2019-05-18,1.48,1,19 +28189904,Large room near Columbia Medical school,176591085,Mike,Manhattan,Washington Heights,40.84554,-73.94282,Private room,48,1,7,2019-06-21,1.09,4,176 +28195632,Queens Apartment #1,80478684,Joe,Queens,Maspeth,40.72538,-73.89284,Entire home/apt,150,2,27,2019-06-17,2.69,2,317 +28195740,Amazing Downtown Views,212898110,Jeremy,Brooklyn,Gowanus,40.66712,-73.99215,Entire home/apt,200,2,17,2018-12-01,1.72,1,0 +28196106,"*UES Private Bed/Bath - Quiet, Sunny, Central Park",1512565,Jean,Manhattan,East Harlem,40.78932,-73.95343,Private room,150,2,18,2019-06-21,1.80,3,112 +28197084,"Perfect art filled space for small family or individual, in upper manhattan",34590955,Brian,Manhattan,Washington Heights,40.85295,-73.93595,Entire home/apt,250,2,0,,,1,67 +28200288,1 Bedroom Apartment Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74747,-73.98668,Entire home/apt,260,2,7,2019-06-13,0.84,13,276 +28202481,Best Futon in Brooklyn/ Minimal Apt,136590050,Ashton,Brooklyn,Crown Heights,40.66568,-73.95386,Private room,34,1,70,2019-06-18,6.84,1,1 +28202752,Cozy cove,156505456,John,Brooklyn,East New York,40.66265,-73.88735,Private room,85,3,10,2019-06-10,1.04,13,90 +28202825,"Feel at home in NYC, 5 min from LGA With PARKING",213014559,Kam,Queens,East Elmhurst,40.76828,-73.87752,Entire home/apt,179,1,57,2019-07-08,5.74,2,0 +28204876,Private modern studio suite with private bathroom,118410907,Sophia,Brooklyn,Bensonhurst,40.60644,-73.99135,Entire home/apt,88,1,39,2019-07-03,3.77,1,362 +28205535,Cozy private room for females in the heart of BR,85495151,Zineb,Brooklyn,Fort Hamilton,40.62274,-74.03277,Private room,60,3,6,2018-10-29,0.61,1,38 +28206135,Bronx ROOM #2 NYC-BEST DEAL,203266238,Steve,Bronx,Morris Park,40.85409,-73.85032,Private room,50,5,8,2019-06-22,0.87,5,22 +28206177,Bronx Brand New Room #3,203266238,Steve,Bronx,Morris Park,40.85361,-73.85018,Private room,85,5,5,2019-05-31,0.49,5,365 +28206615,法拉盛步行7号地铁7分钟左右单房(共用卫生间),213049308,Cen,Queens,Flushing,40.75539,-73.83571,Private room,56,1,19,2019-06-23,2.00,3,45 +28207491,Large One-bedroom Apartment in Crown Heights.,105085784,Jaime,Brooklyn,Crown Heights,40.664,-73.93328,Entire home/apt,75,1,54,2019-07-01,9.36,1,20 +28207627,Morning Glory,72318418,Francisca,Brooklyn,Crown Heights,40.66957,-73.92179,Private room,69,2,15,2019-06-23,1.48,3,359 +28207954,Bellerose home 15 min both airport,211860521,Tamara,Queens,Bellerose,40.73258,-73.726,Private room,95,1,3,2019-05-31,0.47,2,0 +28208177,法拉盛步行地铁站8分钟带独立卫生间套房,213049308,Cen,Queens,Flushing,40.75501,-73.83315,Private room,120,1,37,2019-06-10,3.85,3,0 +28208416,法拉盛步行地铁10分钟单房(共用卫生间)Queen size 床,213049308,Cen,Queens,Flushing,40.75522,-73.83451,Private room,55,1,19,2019-03-10,1.84,3,0 +28209194,Big and lovely apartment in Sunnyside NYC,58234433,Martin,Queens,Sunnyside,40.73707,-73.91867,Entire home/apt,261,1,14,2019-06-23,1.47,8,240 +28213718,"""Sweet Home near to Bronx Zoo in Little Italy """,211638781,Adriana,Bronx,Belmont,40.85287,-73.88536,Private room,100,3,36,2019-06-18,3.69,2,49 +28214075,HK AUTHENTIC TENEMENT UPDATED,213065914,Joshua,Manhattan,Hell's Kitchen,40.76557,-73.99174,Private room,120,1,56,2019-06-30,5.81,1,4 +28214275,Quiet Room in Beautiful Historic Bed Stuy,1337630,Bobbi,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9248,Private room,100,3,1,2018-09-25,0.10,1,0 +28215216,Queens House bedroom 1,213111794,Desmond,Queens,Cambria Heights,40.6844,-73.74601,Private room,250,1,2,2018-10-08,0.20,4,365 +28215809,Queen-Sized Private Bedroom in Historic Harlem,92185816,Fiona,Manhattan,Harlem,40.80823,-73.94963,Private room,62,14,1,2019-05-03,0.45,3,265 +28216267,Luxury apt in the heart of Times Square!LOCATION !,11543355,Matthew,Manhattan,Hell's Kitchen,40.76202,-73.99679,Entire home/apt,250,4,0,,,1,0 +28217921,Heights IV,9130040,Candace,Brooklyn,East Flatbush,40.6624,-73.9329,Private room,89,1,3,2019-06-10,1.73,6,365 +28218300,"Private Room: Cute Apt - Prospect Heights, Bklyn",7592992,Sam,Brooklyn,Prospect Heights,40.67785,-73.96987,Private room,90,1,0,,,1,0 +28218384,"Beautiful&quiet, steps to Central Park w/priv deck",213138857,Sarah,Manhattan,Upper West Side,40.78195,-73.9767,Entire home/apt,225,3,33,2019-06-28,3.46,1,128 +28218710,Brooklyn Apartment,213141901,Amparo,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94477,Private room,75,6,1,2018-10-01,0.11,1,88 +28219460,Convenient Apartment in Brooklyn Townhouse,6928558,Amy,Brooklyn,Bedford-Stuyvesant,40.69084,-73.95368,Entire home/apt,140,2,51,2019-07-06,5.02,1,125 +28220182,New Charming 1 Bedroom Oasis Apartment,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95311,Entire home/apt,85,7,6,2019-01-30,0.62,4,0 +28220443,The Library @ Guacamaya's Nest,19418027,Maya,Brooklyn,Crown Heights,40.67726,-73.94179,Private room,58,3,24,2019-06-29,2.62,1,6 +28220772,Spectacular Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72249,-74.00385,Private room,195,3,14,2019-06-22,1.37,3,0 +28221182,Immaculate -1/2 Block to train! Private Entrance!,107156,Michael,Brooklyn,Bushwick,40.70285,-73.91934,Private room,89,1,10,2019-06-30,0.99,1,247 +28221379,Demmy's space,183604908,Ade,Brooklyn,Crown Heights,40.66858,-73.92661,Private room,50,2,25,2019-06-30,2.49,1,179 +28221478,Cozy One bedrooom Suite Mins to JFK Airport,23491471,Talia,Queens,Laurelton,40.68263,-73.7393,Entire home/apt,75,1,31,2019-06-24,3.01,1,361 +28221653,Private Bedroom in Super Comfortable NYC Apt.,160611440,Fran,Manhattan,Upper West Side,40.79912,-73.97064,Private room,95,1,11,2019-06-05,1.11,1,0 +28222556,Hamilton Heights/City College,213172811,James,Manhattan,Harlem,40.82266,-73.95481,Private room,70,1,0,,,1,56 +28222827,Sunny bedroom near Times Square 33C2,190921808,John,Manhattan,Hell's Kitchen,40.75534,-73.99668,Private room,75,7,5,2018-10-28,0.51,47,352 +28223260,Private 1 BR/1 Bath apt with full kitchen,15717497,Nick,Manhattan,Upper West Side,40.77078,-73.98344,Entire home/apt,179,1,0,,,1,0 +28225706,MI DULCE MORADA,212526912,Martha Liliana,Queens,East Elmhurst,40.75598,-73.8837,Private room,60,2,4,2019-06-09,0.40,2,325 +28226222,"Spacious 1.5 Bedroom in Bed-Stuy, Brooklyn",55397210,Jelani,Brooklyn,Bedford-Stuyvesant,40.69714,-73.94897,Entire home/apt,119,3,7,2019-05-27,0.71,1,9 +28226667,BP- BEAUTIFUL COZY ROOM FOR 2 NEAR MANHATTAN wifi,213208277,Darry,Brooklyn,Borough Park,40.64189,-73.99357,Private room,60,5,5,2019-07-01,0.53,8,364 +28227192,Multi-Use Brooklyn Sanctuary,75937385,Karen,Brooklyn,Bedford-Stuyvesant,40.68183,-73.95046,Entire home/apt,99,2,3,2018-11-18,0.32,1,3 +28227271,Private Room in Fort Greene Gem,33522184,May,Brooklyn,Fort Greene,40.68629,-73.97589,Private room,75,5,6,2019-05-27,0.63,1,167 +28227966,Beautiful One Bed,115545139,Sixta,Brooklyn,East New York,40.65925,-73.89396,Private room,32,2,56,2019-07-03,5.62,2,27 +28228445,2 Bedroom Upper Westside Apartment,7835900,Lyndon & Christine,Manhattan,Upper West Side,40.7838,-73.97858,Entire home/apt,250,3,1,2018-10-23,0.12,1,0 +28228599,Great Manhattan 25min Barclays Center 15 minutes,94214493,Dadrine,Brooklyn,East Flatbush,40.65612,-73.91788,Private room,65,7,4,2019-05-10,0.49,9,365 +28230432,Comfy sofa close to Manhattan!,85186349,Agustina,Queens,Astoria,40.76826,-73.92772,Shared room,40,1,18,2019-06-29,1.76,1,165 +28230753,Private room w/ fire escape in beautiful Soho,6542295,Jon,Manhattan,SoHo,40.72668,-74.00252,Private room,100,3,6,2019-06-24,0.63,2,3 +28240916,Perfect Bedroom W/En Suite Bath & Terrace Access,20568490,Steve,Manhattan,Tribeca,40.72343,-74.00791,Private room,149,1,16,2019-06-24,1.62,1,337 +28242507,"Cozy, Centrally Located Upper East Side Flat",10720383,Gregory,Manhattan,Upper East Side,40.78315,-73.94693,Entire home/apt,199,2,49,2019-07-01,5.18,1,62 +28242697,Times square luxury,30431292,Felix,Manhattan,Hell's Kitchen,40.76217,-73.99911,Entire home/apt,500,2,1,2018-11-24,0.13,1,179 +28243109,Peaceful Oasis in the heart of SOHO,615025,Kimberlee,Manhattan,SoHo,40.72387,-74.00423,Entire home/apt,249,3,1,2018-10-22,0.12,1,363 +28243134,Studio in Hamilton Heights Manhattan,3299094,Elena,Manhattan,Harlem,40.82161,-73.94644,Entire home/apt,140,1,4,2019-07-06,0.64,1,8 +28245313,Garden Oasis in Historic Hamilton Heights,17893196,Jillian,Manhattan,Harlem,40.8238,-73.94794,Entire home/apt,145,2,5,2019-05-19,0.57,1,5 +28245930,Spacious retreat,77570619,Xander,Manhattan,Harlem,40.82232,-73.93908,Entire home/apt,95,2,16,2019-06-24,1.62,1,140 +28247510,Williamsburg escape in a perfect location!,3942655,Danny,Brooklyn,Williamsburg,40.7159,-73.94397,Private room,90,5,1,2019-04-29,0.42,2,73 +28250130,Gorgeous 1 bedroom with 300 sqf patio and balcony,3768359,Piret,Manhattan,Lower East Side,40.72177,-73.98898,Entire home/apt,300,3,7,2019-02-21,0.71,1,12 +28250228,Private room in shared lovely apartment,70640922,Enzo,Manhattan,Gramercy,40.73314,-73.9838,Private room,115,3,6,2018-12-16,0.59,1,0 +28250448,Confortable apt in the Bronx NYC.,14214034,Desmar,Bronx,Concourse,40.82145,-73.92856,Entire home/apt,102,2,24,2019-06-26,2.76,2,288 +28250863,Clean & Spacious room in NYC,136121042,Janilssa,Manhattan,Inwood,40.86319,-73.92672,Private room,60,2,4,2019-04-30,0.39,1,359 +28250925,"Bright, cozy room in Prospect Heights/Park Slope",73640551,Courtney,Brooklyn,Prospect Heights,40.67852,-73.97308,Private room,75,2,11,2019-01-27,1.24,2,1 +28250999,Newly Decorated Harlem Haven,211973888,Tj,Manhattan,Harlem,40.81773,-73.94357,Entire home/apt,75,4,8,2019-06-29,0.88,1,69 +28251042,"Great energy, XL,clean, plants, comfortable bed,",6048765,Raz,Manhattan,Harlem,40.81835,-73.93925,Private room,86,2,7,2018-10-05,0.69,2,87 +28252662,Beautiful apartment in Elmhurst New York,129124146,KImberly,Queens,Elmhurst,40.73334,-73.87198,Shared room,65,1,4,2018-11-10,0.42,3,179 +28252786,Private Modern 2 bedroom in the heart of Flatbush,296491,Ely,Brooklyn,Midwood,40.61565,-73.96602,Entire home/apt,149,2,22,2019-07-07,2.22,2,83 +28253482,Artsy Brooklyn Apartment,4601788,Heather Marie,Brooklyn,Flatbush,40.64402,-73.96489,Private room,50,1,5,2018-12-02,0.53,1,0 +28253864,"Astoria, NY 1-bedroom apartment",14933692,Fernando,Queens,Astoria,40.76616,-73.91332,Entire home/apt,90,2,8,2019-01-18,0.82,1,0 +28254842,Room in Astoria - 20min to Manhattan,6944101,Olivier & Priscilla,Queens,Ditmars Steinway,40.77033,-73.91008,Private room,50,2,5,2019-05-31,0.53,1,0 +28255658,"Beautiful, brand new Prospect/Crown Heights home",9050139,Noah And Jordan,Brooklyn,Crown Heights,40.67604,-73.95775,Entire home/apt,215,2,14,2019-07-06,1.45,1,13 +28256883,"Gorgeous,stylish 1bd apt Near everything !",25082393,Brandywine,Manhattan,East Harlem,40.79706,-73.93473,Entire home/apt,250,1,8,2019-05-05,0.80,1,37 +28256958,Downtown BK luxury apartment,78817833,David,Brooklyn,Downtown Brooklyn,40.68978,-73.98598,Private room,110,21,0,,,1,0 +28257309,Esther Home,213426241,Allison,Brooklyn,Bedford-Stuyvesant,40.6902,-73.95277,Entire home/apt,350,2,15,2019-06-23,1.53,1,319 +28258594,Cozy Private Bedroom 5mins to NYC,19528144,Nma,Queens,Long Island City,40.76245,-73.93286,Private room,66,3,9,2019-04-11,0.94,1,0 +28259695,D&G Chateau,106667717,Darian,Manhattan,Harlem,40.82761,-73.94192,Private room,85,1,9,2019-05-04,0.90,1,364 +28259702,"Clean , Quite and Comfortable Queen size bed",143979484,Blan,Manhattan,Washington Heights,40.8453,-73.93795,Private room,52,5,11,2018-12-19,1.10,2,310 +28261459,Cozy apartment 15 minutes from midtown!,103049729,Julia,Queens,Sunnyside,40.74314,-73.92389,Entire home/apt,78,2,4,2018-12-02,0.44,1,0 +28261992,Cute Room in Bushwick!,44545038,Oliver,Brooklyn,Bushwick,40.6951,-73.92981,Private room,48,3,5,2018-09-17,0.49,1,0 +28270500,REGO PARK HOUSE NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73095,-73.85706,Entire home/apt,268,2,2,2019-05-20,0.76,3,5 +28270998,"Charming, bright and brand new Bed-Stuy home",647528,Caterina,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95164,Entire home/apt,10,3,5,2019-07-02,0.51,1,0 +28271289,Queens BLVD House NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73005,-73.8576,Entire home/apt,268,3,1,2019-06-24,1,3,173 +28272634,Private 2 room apartment in the East village,8554637,Rory,Manhattan,East Village,40.72445,-73.97683,Private room,149,3,36,2019-06-23,3.94,1,109 +28273584,Sunlit Bedroom in prime neighbourhood + Rooftop,17464499,Meenakshi,Manhattan,Chinatown,40.71789,-73.99581,Private room,75,2,3,2019-01-16,0.30,1,0 +28273699,"Bright, Spacious BK Gem",26784906,Sam,Brooklyn,Bedford-Stuyvesant,40.67987,-73.91931,Entire home/apt,250,2,2,2018-09-23,0.20,1,0 +28274486,Luxury Loft - Home away from Home,17877401,Ryan,Queens,Ridgewood,40.70123,-73.90685,Private room,75,2,2,2018-10-07,0.20,1,341 +28275375,Beautiful Williambsurg apartment above the L,53192488,Daniel,Brooklyn,Williamsburg,40.71709,-73.95632,Private room,56,21,1,2018-10-06,0.11,1,0 +28276940,Humble One Bedroom Brooklyn Apt 15mins to the City,96328752,Jivani,Brooklyn,Bedford-Stuyvesant,40.6823,-73.94958,Entire home/apt,125,2,4,2019-04-30,0.48,1,70 +28277212,"A Comfortable private room+Near # 2, 4 & 6 trains",184122908,Livinus,Bronx,Mott Haven,40.81161,-73.90513,Private room,35,1,24,2019-06-30,2.38,1,150 +28277352,"Huge Room in Grammercy, terrace access",9420910,Alyona,Manhattan,Kips Bay,40.73865,-73.9788,Private room,130,1,11,2019-04-18,1.13,2,147 +28277480,"Clean, cozy and private room in midtown Manhattan",26045887,Ivy,Manhattan,Murray Hill,40.7483,-73.9736,Private room,105,1,43,2019-06-21,4.24,2,176 +28278875,Cozy Comfortable Studio Suite,213568384,Shama,Brooklyn,Canarsie,40.63814,-73.90002,Entire home/apt,75,1,68,2019-07-05,7.58,1,258 +28279502,Elegant 4 Bedroom 2.5 Bath with Contemporary Charm,138770550,Charmine,Brooklyn,Crown Heights,40.67222,-73.93487,Entire home/apt,325,3,15,2019-06-24,1.56,3,124 +28282908,Industrial-Chic Room Available in Artist Loft,49218771,Amanda,Brooklyn,Bushwick,40.68992,-73.90435,Private room,70,3,8,2019-02-14,0.82,1,0 +28284019,Spanish Harlem urban hang Suite,10828579,Najah,Manhattan,East Harlem,40.79916,-73.93959,Entire home/apt,125,7,5,2019-01-02,0.52,2,0 +28284205,Caribbean Home,213604115,Jennifer,Brooklyn,East New York,40.66631,-73.86278,Private room,40,2,17,2019-06-23,1.68,1,334 +28284445,New 3BR 2Full bath Apartment with Dryer & Washer,210970608,Lucy,Brooklyn,Crown Heights,40.67061,-73.95023,Entire home/apt,245,3,11,2019-06-16,1.11,5,280 +28284458,New york Multi-unit building,213604995,Doreen,Brooklyn,Bushwick,40.68705,-73.91456,Private room,75,2,85,2019-07-05,8.31,2,309 +28284704,Small Crash Pad in the heart of Williamsburg!,32872039,Sean,Brooklyn,Williamsburg,40.71281,-73.95226,Private room,48,3,17,2019-06-16,2.80,1,0 +28284832,Very Accomodating,213605347,Roberta,Queens,Laurelton,40.68104,-73.74821,Entire home/apt,50,1,14,2019-06-24,1.53,1,356 +28284867,"Sunny studio, minutes from Columbia",14504701,Sahar,Manhattan,Harlem,40.80579,-73.95606,Entire home/apt,115,6,5,2019-06-08,0.53,1,192 +28285760,New York City Finest,213615269,Maryam,Brooklyn,Bedford-Stuyvesant,40.68871,-73.92732,Entire home/apt,197,2,48,2019-07-05,4.86,1,104 +28285795,Grand Suite Floor Thru in Artist's Duplex loft,46374641,Sabina,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94576,Private room,150,2,0,,,1,88 +28286101,*** Hell's kitchen quiet private room ***,137191484,Maria,Manhattan,Hell's Kitchen,40.76561,-73.98387,Private room,99,1,62,2019-06-30,6.55,5,351 +28286163,Sun-drenched 3BD apt in Harlem,15439251,Willy,Manhattan,Harlem,40.82302,-73.94259,Entire home/apt,220,3,12,2019-07-03,1.29,4,230 +28286395,Manhattan Private X-Small Bedroom- Good Location,36800887,Julian,Manhattan,Hell's Kitchen,40.76671,-73.98413,Private room,106,4,27,2019-05-19,2.83,1,0 +28286844,Charming downtown New York Serviced Apartment,20177770,Katy,Manhattan,Civic Center,40.71167,-74.00749,Entire home/apt,140,13,4,2019-02-21,0.44,1,0 +28286952,"Apr - Jun, Entire apt, UWS near park and subway!",92769975,Robert & Nira,Manhattan,Upper West Side,40.78883,-73.96848,Entire home/apt,199,8,2,2018-11-19,0.22,1,8 +28287064,"""THE MANHATTAN OASIS"" Penthouse & Private Terrace",213438424,Jen,Manhattan,East Village,40.72936,-73.98093,Entire home/apt,345,2,35,2019-06-03,3.44,1,262 +28287653,Hunters Point 2500sf 3-story Garden Home,193296202,Freda,Queens,Long Island City,40.74613,-73.95343,Entire home/apt,600,2,2,2019-07-05,0.25,2,272 +28288433,Beatuful Harlem Urban Penthouse,213635139,Elvis,Manhattan,East Harlem,40.79824,-73.94014,Entire home/apt,300,2,53,2019-06-11,5.96,1,14 +28289858,Ft. Green/ Clinton Hill Downtown Brooklyn,213647282,Arkell,Brooklyn,Fort Greene,40.68528,-73.97127,Entire home/apt,200,2,13,2019-02-18,1.30,1,0 +28289954,NewPlace 4,187908645,Jimmy,Queens,Flushing,40.75778,-73.83353,Private room,70,1,7,2019-05-04,0.70,4,347 +28290447,Entire fully furnished 1 Bed/1 Bath w/French Doors,213650814,Joshua,Manhattan,Harlem,40.8072,-73.94383,Entire home/apt,149,5,17,2019-04-25,1.95,1,3 +28291704,Mott Haven Dorm-Bed A,174785358,Rem,Bronx,Port Morris,40.8102,-73.93147,Shared room,28,1,18,2019-06-20,1.93,7,60 +28291780,Home away from home,213660495,Jamie,Queens,Long Island City,40.75472,-73.91891,Entire home/apt,125,2,27,2019-06-09,2.74,1,0 +28298405,Great room in Bushwick!,212071658,Brian,Brooklyn,Bushwick,40.69297,-73.90427,Private room,65,2,23,2019-05-05,2.35,5,339 +28298437,Grande chambre lumineuse à bushwick,14430349,Marie,Brooklyn,Bushwick,40.69469,-73.90786,Private room,75,2,10,2019-03-11,1.05,1,0 +28300510,Cozy and Bright Private Bedroom,73270488,Jayden & Minea,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93661,Private room,50,1,39,2019-06-23,3.98,1,15 +28302975,Luxe 2 Bedroom Sunrise Brooklyn Loft Condo,82083094,Fay,Brooklyn,Canarsie,40.63933,-73.88221,Entire home/apt,250,3,0,,,2,270 +28303888,Comfortable Brooklyn Oasis,2237736,Suzi,Brooklyn,Crown Heights,40.67085,-73.93866,Private room,60,20,3,2019-03-18,0.39,1,0 +28305549,1 private bedroom in Bushwick!,74305569,Nicole,Brooklyn,Bushwick,40.69549,-73.925,Private room,48,2,1,2018-09-21,0.10,2,0 +28306536,Large Room In 3Bed Home w/ Washer/Dryer,1561585,Peter,Brooklyn,East Flatbush,40.65059,-73.94506,Private room,90,3,1,2018-10-08,0.11,1,179 +28306661,Small private room for single ones comfy and clean,17450152,Tiba,Manhattan,Hell's Kitchen,40.76438,-73.98955,Private room,85,2,29,2019-06-21,2.87,5,0 +28306885,The Greek Goddess House.,3068075,Sofia,Queens,Middle Village,40.71246,-73.88784,Private room,70,2,6,2018-10-07,0.62,1,156 +28307159,Queens Palace,129038733,George & Kevin,Queens,Ditmars Steinway,40.77658,-73.90344,Entire home/apt,100,3,12,2018-12-30,1.21,1,0 +28307999,"Spacious, Bright, Cozy, BROOKLYN APT",2389808,Elsa,Brooklyn,Prospect Heights,40.67881,-73.97166,Entire home/apt,135,5,15,2019-06-24,1.75,1,0 +28308261,Artistic + peaceful studio in Greenpoint Brooklyn,213773496,Michael,Brooklyn,Greenpoint,40.73449,-73.95716,Private room,97,3,2,2018-10-08,0.21,1,0 +28308278,Ultra Luxury TriBeCa LOFT!,213774428,Valerie,Manhattan,Civic Center,40.71317,-74.00654,Entire home/apt,590,2,42,2019-06-01,4.33,1,42 +28308296,Oasis in the heart of Williamsburg,1211082,Andrew,Brooklyn,Williamsburg,40.71525,-73.96487,Entire home/apt,320,5,1,2019-01-02,0.16,1,78 +28309196,"Live, Work, Play In Williamsburg!",45519906,Aliu,Brooklyn,Williamsburg,40.70904,-73.95198,Private room,200,3,5,2019-01-05,0.53,1,85 +28309473,Your Cozy Room,213781715,Anting,Brooklyn,Greenpoint,40.73286,-73.95086,Private room,99,1,5,2019-04-21,0.51,33,365 +28309976,BnB & Spa,22125997,Lilly Rose,Bronx,Westchester Square,40.84184,-73.84967,Private room,28,1,26,2019-06-21,2.65,2,123 +28310699,Nice room near Manhattan in a safe neighborhood,79499558,Robertina,Queens,Jackson Heights,40.75176,-73.88374,Private room,55,4,23,2019-07-07,2.28,4,112 +28310943,BEAUTIFUL 2 BEDROOM APARTMENT,212649635,Ramon,Manhattan,Hell's Kitchen,40.76125,-73.99389,Entire home/apt,350,3,41,2019-07-01,4.29,1,74 +28311763,"Spacious, Bright, and Convienent in East Harlem",34607882,Dawn,Manhattan,East Harlem,40.7984,-73.9427,Entire home/apt,115,14,1,2018-10-25,0.12,1,0 +28312177,Private En-suite in an Beautiful Brownstone,213803787,Naftaly,Brooklyn,Crown Heights,40.66627,-73.94164,Entire home/apt,180,1,12,2019-05-31,1.31,1,109 +28312266,"Suite 18 - Mini Apartment, ALL YOURS!",99296570,Daisy,Brooklyn,Brighton Beach,40.57973,-73.95799,Private room,65,1,23,2019-06-25,2.34,5,204 +28312421,Brand New 1BDR Apartment within 5 min walk to SOHO,2328540,Waise Omid,Manhattan,Lower East Side,40.71768,-73.99068,Entire home/apt,200,2,15,2019-05-23,1.51,1,129 +28312520,Little paradise,131993336,David,Queens,Forest Hills,40.71962,-73.85,Private room,49,1,47,2019-06-26,4.64,2,196 +28312552,Cozy Ground Floor Garden Apt. Across from Park,7825587,Rosi,Brooklyn,Sunset Park,40.65064,-74.00595,Entire home/apt,100,5,12,2019-06-19,1.20,1,106 +28312557,Hello Brooklyn! Stylish home in the heart of BK,46594996,Genenne,Brooklyn,East Flatbush,40.6332,-73.94267,Entire home/apt,115,2,8,2018-12-17,0.82,1,0 +28312729,"Private room in Harlem, NY...",15439251,Willy,Manhattan,Harlem,40.82293,-73.94249,Private room,80,2,13,2019-01-21,1.29,4,238 +28312904,Spacious Studio Apt on Upper East side,91545870,Michelle,Manhattan,Upper East Side,40.78132,-73.95148,Entire home/apt,59,1,4,2019-06-30,0.44,2,24 +28313234,"Private bedroom in Harlem, NY ..",15439251,Willy,Manhattan,Harlem,40.8224,-73.94136,Private room,70,3,17,2019-04-18,1.71,4,230 +28313266,Spacious room in vibrant area. 2 blocks from train,71177383,Chris,Brooklyn,Bushwick,40.6999,-73.93947,Private room,100,1,5,2019-07-03,0.52,2,88 +28313344,"Private bedroom in historic Harlem, NY.",15439251,Willy,Manhattan,Harlem,40.8224,-73.94241,Private room,70,2,14,2019-05-15,1.40,4,238 +28313356,Private Room in Williamsburg Apartment,66711185,Oliver,Brooklyn,Williamsburg,40.71151,-73.94396,Private room,63,3,1,2018-12-04,0.14,1,0 +28313685,Cozy room close to the city center 61F1,190921808,John,Manhattan,Hell's Kitchen,40.75545,-73.99652,Private room,120,30,2,2019-03-27,0.21,47,351 +28313785,Luxury suite in the Heart of Hell's Kitchen,30145223,Alex,Manhattan,Hell's Kitchen,40.76646,-73.99132,Entire home/apt,269,4,26,2019-07-03,2.60,1,49 +28314565,"Cozy room near subway , LGA airport n manhattan",79499558,Robertina,Queens,Jackson Heights,40.75164,-73.88506,Private room,55,2,29,2019-06-20,2.96,4,149 +28314576,"1 Br in Brooklyn, near Williamsburg/Manhattan",3604985,Rebeca,Brooklyn,Greenpoint,40.73482,-73.95399,Private room,70,1,4,2018-12-31,0.45,1,97 +28314689,Brand New 3-Bedroom in Trendy L.E.S. #10296,213618380,Carol,Manhattan,Lower East Side,40.71935,-73.98361,Entire home/apt,600,2,33,2019-07-05,3.46,1,280 +28314777,Queens Finest Luxury Place,44924379,Roland,Queens,Jamaica,40.69742,-73.78541,Private room,60,1,22,2019-05-21,2.16,3,363 +28314882,Quiet Washington Heights Studio Apartment,213824132,John,Manhattan,Washington Heights,40.85035,-73.9325,Entire home/apt,80,2,28,2019-06-30,2.98,1,41 +28315011,An Art Director's Fort Green Studio,15146990,Madelyn,Brooklyn,Fort Greene,40.68616,-73.97206,Entire home/apt,115,2,4,2019-07-01,0.44,1,95 +28315707,!AMAZING PRIVATE ROOM 2 MIN FROM TRAIN STATION!,213795822,MateusDaniela,Brooklyn,Bushwick,40.68236,-73.90765,Private room,45,1,30,2019-07-05,3.63,2,327 +28316936,Williamsburg Cozy Room 10 minutes from Manhattan.,80509710,Isaura,Brooklyn,Williamsburg,40.70874,-73.95237,Private room,63,5,24,2019-06-17,2.48,1,7 +28317113,!PERFECT PRIVATE ROOM PLACE 2MIN FROM THE SUBWAY!,213795822,MateusDaniela,Brooklyn,Bushwick,40.68235,-73.90602,Private room,47,2,30,2019-07-07,3.63,2,303 +28317744,*ON SALE* West Village 2BR base to discover NYC,12926593,Catarina,Manhattan,West Village,40.73142,-74.00275,Entire home/apt,300,2,2,2019-06-23,0.31,3,14 +28324221,740 sqf large luxury apt w doorman midtown east,875830,Sacha,Manhattan,Midtown,40.75278,-73.97107,Entire home/apt,169,30,5,2019-05-13,0.70,1,280 +28328473,Modern private studio in rockaway,213910720,Ayodele,Queens,Far Rockaway,40.59752,-73.76337,Private room,50,1,18,2019-06-29,1.79,1,71 +28329076,2BR Williamsburg home w/ PATIO! Baby Gear! L train,106950680,Elmie,Brooklyn,Williamsburg,40.71392,-73.94034,Private room,274,3,3,2019-06-17,0.31,1,0 +28329209,Brooklyn Bedstuy Trendy Apt,128041266,Nayira,Brooklyn,Bedford-Stuyvesant,40.68786,-73.93252,Entire home/apt,110,1,20,2019-06-23,2.22,1,19 +28329243,"Attractive FiDi 1BR w/ Office nook + Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Battery Park City,40.70438,-74.01708,Entire home/apt,263,30,1,2018-10-23,0.12,232,327 +28329261,Sunny Central Park Apt (2 blocks from park),4410716,Nicole,Manhattan,Harlem,40.79993,-73.95485,Private room,75,14,4,2019-05-27,0.40,1,66 +28330508,East village sanctuary,2244813,Matthew,Manhattan,East Village,40.72778,-73.98747,Entire home/apt,250,31,1,2018-10-07,0.11,1,156 +28332207,Private bedroom with bathroom in clean quiet space,212899703,Ms. Debra,Queens,Jamaica,40.67783,-73.76637,Private room,83,2,2,2019-04-15,0.26,3,26 +28333466,"Lovely, sunny & quiet 1br Chelsea apt w/balcony",43252905,Jonathan,Manhattan,Chelsea,40.74299,-73.99777,Entire home/apt,225,2,11,2019-06-06,1.20,1,0 +28333941,"Private, sun-filled, plant-filled bedroom",199245226,Alison,Brooklyn,Crown Heights,40.67597,-73.94857,Private room,175,4,3,2019-01-01,0.30,1,0 +28334679,Astoria Apartment,29514176,Meghann,Queens,Astoria,40.76642,-73.91637,Entire home/apt,125,3,4,2018-11-25,0.42,1,0 +28334760,Boerum Hill Queen BR in a Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68701,-73.98495,Private room,70,1,38,2019-07-03,3.83,3,47 +28335031,Chic Studio in a Great Neighborhood,11050667,Michelle,Manhattan,Chelsea,40.73917,-73.99412,Entire home/apt,154,4,7,2019-05-14,0.77,1,0 +28335929,Mott Haven Dorm-Bed B,174785358,Rem,Bronx,Port Morris,40.80952,-73.93005,Shared room,28,1,17,2019-06-03,1.79,7,83 +28336933,West Village 5 BR Townhouse & Private Yard,126830432,Andrea,Manhattan,West Village,40.73151,-74.00528,Entire home/apt,1500,4,17,2019-06-27,1.86,1,32 +28337493,Look down on Bedford Ave! Private room.,10810969,Drew,Brooklyn,Williamsburg,40.71551,-73.96057,Private room,95,1,9,2019-01-16,0.91,1,0 +28338004,Mott Haven Dorm-Bed D,174785358,Rem,Bronx,Port Morris,40.80994,-73.93061,Shared room,28,1,29,2019-05-27,3.09,7,89 +28338110,Huge Western Room on the Top Floor of a Townhouse,17260320,Jon,Brooklyn,Bedford-Stuyvesant,40.6866,-73.9532,Private room,75,3,7,2019-01-18,0.72,1,0 +28338131,Mott Haven Dorm-Bed E,174785358,Rem,Bronx,Port Morris,40.80977,-73.93038,Shared room,28,1,16,2019-06-22,1.70,7,0 +28339611,"Cute, book-filled, apartment in Williamsburg",25300542,Samridhi,Brooklyn,Williamsburg,40.71019,-73.95684,Entire home/apt,125,5,2,2019-01-04,0.21,1,0 +28339747,Queens house bedroom 2,213111794,Desmond,Queens,Springfield Gardens,40.66509,-73.75863,Private room,180,1,0,,,4,179 +28340136,Queens house bedroom 3,213111794,Desmond,Queens,Laurelton,40.68013,-73.74734,Private room,180,1,3,2019-07-07,0.33,4,180 +28340434,Queens house bedroom 4,213111794,Desmond,Queens,Springfield Gardens,40.66556,-73.75735,Private room,200,1,2,2018-12-15,0.22,4,179 +28340606,Large Room with PRIVATE bathroom! Best NYC rooftop,696141,Michael Dan,Manhattan,Financial District,40.706,-74.0077,Private room,115,4,6,2019-04-20,0.61,1,0 +28340698,Sun and Serenity in SoHo with Private Bath,103471052,Samantha,Manhattan,SoHo,40.72774,-74.00326,Private room,135,2,17,2019-03-06,1.73,1,0 +28341280,Bushwick Rustic Loft,10812370,Al,Brooklyn,Bushwick,40.69987,-73.91821,Private room,69,1,28,2019-07-07,2.75,1,36 +28341857,"Private Brand New 2 BR, Minutes from JFK & LGA",5669527,Mohd Tahmid,Queens,Jamaica,40.67695,-73.79045,Entire home/apt,99,1,96,2019-07-04,9.63,1,31 +28342248,Ridgewood retreat,120730056,Sophie,Queens,Ridgewood,40.70602,-73.90485,Entire home/apt,80,5,2,2018-09-30,0.21,1,0 +28343300,"Sunny apartment in BK- Close to J,M,Z",4492236,Rebecca,Brooklyn,Williamsburg,40.70685,-73.94796,Entire home/apt,150,10,1,2018-10-05,0.11,2,0 +28344161,One Bedroom in Midtown East,15736460,Shirley,Manhattan,Midtown,40.76054,-73.96425,Private room,75,5,0,,,1,72 +28344462,Serenity palace,214024476,Edlyne,Queens,St. Albans,40.69153,-73.77667,Entire home/apt,150,2,23,2019-07-02,2.34,1,175 +28344470,20 steps to subway!!,131392140,Vik,Queens,Long Island City,40.75655,-73.93001,Entire home/apt,134,2,9,2019-06-22,0.93,5,163 +28344775,23 steps to subway!,131392140,Vik,Queens,Long Island City,40.7563,-73.92971,Entire home/apt,134,2,8,2019-06-01,1.10,5,144 +28344821,"“Brownstone in Brooklyn” +Close to Manhattan!",57827692,Mollie,Brooklyn,Bedford-Stuyvesant,40.68757,-73.92923,Entire home/apt,145,3,14,2018-12-26,1.45,1,0 +28344992,Garden Apartment on Prettiest Street in NYC,2308139,Rubi&Danny,Manhattan,Washington Heights,40.83385,-73.94013,Entire home/apt,189,3,45,2019-06-28,4.49,1,180 +28345080,* GRAMERCY * TOP LOCATION * ULTRA MODERN BEDROOM,214029598,Stav,Manhattan,Stuyvesant Town,40.73389,-73.98016,Private room,120,3,3,2019-01-06,0.33,1,0 +28345644,Welcome New york Astoria spacious,213587085,Sherry,Queens,Ditmars Steinway,40.77739,-73.90805,Private room,65,4,16,2019-06-08,1.67,1,23 +28345654,LaGuardia Airport 15min•COZY8PPL•10min Ride to NYC,147298964,Angela,Queens,Ditmars Steinway,40.7699,-73.91156,Entire home/apt,280,1,33,2019-06-13,3.34,1,294 +28345804,LES Light Filled Large Bedroom,86274028,Francesca,Manhattan,East Village,40.72803,-73.97961,Private room,100,1,1,2018-09-18,0.10,1,0 +28346019,Cozy accommodation in Queens for MAX 2 people,43044876,Haruhisa,Queens,Elmhurst,40.74316,-73.87285,Private room,40,29,2,2019-03-03,0.29,5,1 +28346064,Cozy Room near Empire State Building!,214037223,Monze,Manhattan,Kips Bay,40.74389,-73.98033,Private room,120,2,32,2019-06-10,3.74,3,264 +28346402,Room at walking distance to the Empire State!,214037223,Monze,Manhattan,Kips Bay,40.74381,-73.97909,Private room,130,2,45,2019-06-24,4.87,3,277 +28346728,Upper West Side Apartment,212310107,Gregory,Manhattan,Upper West Side,40.80094,-73.96163,Entire home/apt,180,1,43,2019-06-14,4.69,1,24 +28346829,"LOVE MANHATTAN 3 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.81072,-73.92031,Private room,55,1,32,2019-06-23,3.31,4,76 +28347338,Lofty & Sunny 2 Bedroom w/ Manhattan Skyline View,214044763,Donald,Brooklyn,Greenpoint,40.73403,-73.95746,Entire home/apt,175,4,35,2019-07-03,3.51,1,69 +28349233,Private room blocks away from HBO's The Deuce set!,34607061,Elizabeth,Manhattan,Washington Heights,40.84067,-73.93602,Private room,36,28,4,2019-06-01,0.47,1,284 +28350560,Spacious Bdrm in N.Y.C. (30 mins to Midtown),37252076,Iara,Queens,Jackson Heights,40.75436,-73.88534,Private room,50,3,1,2019-06-19,1,2,155 +28354720,Oversized Studio right in the heart of Kips Bay,6744445,Steph,Manhattan,Kips Bay,40.7436,-73.98122,Entire home/apt,165,1,4,2019-01-01,0.42,1,0 +28355554,"Sunny, central and comfortable!",18270302,Ameera,Manhattan,Upper East Side,40.77619,-73.95325,Private room,90,3,5,2019-01-01,0.52,2,56 +28355651,A Cozy Room in New York Apartment,214095681,Pavel And Sarah,Queens,Sunnyside,40.74403,-73.92147,Private room,65,2,64,2019-07-01,6.34,2,6 +28358001,Beautiful Sun-filled Loft in Prime Williamsburg,11026665,Margaret,Brooklyn,Williamsburg,40.71544,-73.96073,Entire home/apt,175,3,12,2019-06-22,1.23,1,54 +28358666,Private Room,31770868,Tae,Manhattan,Theater District,40.75928,-73.98634,Private room,110,2,46,2019-06-11,4.66,2,38 +28359512,East Village Pad with a View,131454177,Ali,Manhattan,East Village,40.72907,-73.98388,Entire home/apt,195,7,0,,,1,295 +28359529,"Characteristic ""New Yorker"" 2 bedroom apartment",214121850,Giorgio,Manhattan,Upper East Side,40.76615,-73.95662,Entire home/apt,300,5,8,2019-06-02,0.94,1,82 +28359765,STUDIO WITH OUTDOOR SPACE-CHELSEA MARKET-WEST 19TH,200380610,Pranjal,Manhattan,Chelsea,40.74138,-73.99729,Entire home/apt,175,30,1,2019-06-13,1,65,342 +28359897,Comfy LGA apt in Queens,207808113,Md,Queens,East Elmhurst,40.76115,-73.88239,Entire home/apt,150,1,73,2019-06-25,7.55,1,78 +28360016,Beautiful Studio Basement-35 minutes from the city,2298141,Karen,Queens,Jamaica,40.68033,-73.77753,Entire home/apt,100,1,45,2019-07-05,5.31,1,76 +28361060,Soho Nolita Private capsule Loft NYC Female only,10164435,Stella,Manhattan,Nolita,40.72124,-73.99425,Private room,68,1,28,2019-06-24,2.84,3,21 +28361262,Luxury Apartment walk to Central Park Javits,14035840,Feliz,Manhattan,Hell's Kitchen,40.76942,-73.99163,Private room,120,1,38,2019-07-03,4.37,1,16 +28362311,Entire Brooklyn Home with a Friendly Cat,6484652,Una,Brooklyn,South Slope,40.66439,-73.98904,Entire home/apt,99,3,3,2019-06-18,0.46,2,1 +28363730,Spacious Masterbedroom with attached bathroom,144587441,Jameel,Queens,Ozone Park,40.68892,-73.83834,Private room,110,1,0,,,1,363 +28364513,baynefamilywithlove,206459807,Evelyn,Brooklyn,Cypress Hills,40.68382,-73.8796,Entire home/apt,110,2,29,2019-07-01,3.04,1,63 +28364587,A suite with a view of the Empire State Building !,53906227,James,Manhattan,Theater District,40.75952,-73.98368,Entire home/apt,84,1,25,2019-02-12,2.53,1,257 +28366610,Close to everything jfk subway casino,170810121,Raj,Queens,Jamaica,40.67887,-73.79243,Private room,60,2,11,2019-05-28,1.09,1,157 +28366864,Sunny Astoria Room in Ideal Location!,49487260,Brittanie,Queens,Astoria,40.77089,-73.93036,Private room,100,1,3,2018-10-10,0.30,1,0 +28367094,Fantastic Room in Bushwick,212071658,Brian,Brooklyn,Bushwick,40.69238,-73.90361,Private room,65,2,24,2019-06-10,2.59,5,351 +28367264,Spacious 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.7442,-73.97355,Entire home/apt,174,29,0,,,96,311 +28367352,Hip Bushwick Area Private Room!,212071658,Brian,Brooklyn,Bushwick,40.69098,-73.90509,Private room,65,2,22,2019-06-24,2.46,5,348 +28367470,Joyous private Room,212071658,Brian,Brooklyn,Bushwick,40.69159,-73.90399,Private room,65,2,30,2019-06-13,2.96,5,359 +28367520,Peaches Cozy Corner,214171931,Camorine,Queens,St. Albans,40.69544,-73.77663,Private room,50,1,81,2019-06-16,8.02,1,232 +28367842,Large King Sized Bedroom with Private Bathroom,92185816,Fiona,Manhattan,Harlem,40.80737,-73.95055,Private room,70,30,4,2019-06-17,0.59,3,340 +28368234,Harlem apartment,214175454,Mohamed,Manhattan,Harlem,40.82332,-73.93979,Private room,120,1,7,2018-12-19,0.73,1,89 +28368282,Terrific Apartment in the Heart of Williambsburg,9641129,Sam,Brooklyn,Williamsburg,40.71447,-73.95195,Private room,70,14,2,2018-10-27,0.20,1,18 +28368404,Penthouse living 1 single room 4 a night or 2!!!,125320407,Sata,Queens,Jamaica,40.70507,-73.80424,Private room,225,1,1,2018-10-07,0.11,5,364 +28368678,Boerum Hill Twin BR in a Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68519,-73.98653,Private room,70,1,51,2019-07-03,5.03,3,55 +28368870,Bright Bedroom in NYC (30 min to Midtown + MoMa),37252076,Iara,Queens,Jackson Heights,40.75378,-73.8862,Private room,45,3,3,2019-06-24,0.35,2,132 +28369307,Modern & Sunny Room near Museum Mile,4128972,Alina,Manhattan,East Harlem,40.79388,-73.94594,Private room,105,1,33,2019-06-30,3.41,1,26 +28369515,Étage au sein d’un duplex à Brooklyn,2771943,Sophie & Grégoire,Brooklyn,Clinton Hill,40.68227,-73.96486,Private room,175,2,9,2019-06-30,0.89,1,17 +28369552,Boerum Hill 2 BR Suite in Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68528,-73.98634,Private room,98,1,9,2019-06-09,0.89,3,25 +28369648,New(2019) Renovated bath & 30-40 min to Manhattan,19303369,Hiroki,Queens,Elmhurst,40.74513,-73.87237,Private room,33,30,0,,,37,0 +28369910,Semi Private Bedroom,214190693,Samantha,Bronx,Fordham,40.85536,-73.90242,Shared room,55,1,3,2019-02-23,0.31,1,83 +28372451,New York Walk Up Apartment,214207874,Tom,Manhattan,Chelsea,40.73941,-73.99777,Entire home/apt,110,7,4,2018-11-04,0.40,1,0 +28374327,Brand New Private Room in Heart of Brooklyn,30735525,Lawrence,Brooklyn,Bushwick,40.68467,-73.91341,Private room,55,2,7,2019-06-28,0.96,1,36 +28379264,Spacious 1 bedroom in Bed Stuy Brooklyn,93294060,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94872,Entire home/apt,95,2,39,2019-06-29,4.18,1,26 +28381581,Huge Room in Upper West close to Columbia & Subway,2666466,Javier,Manhattan,Morningside Heights,40.80439,-73.96393,Private room,130,4,37,2019-06-18,4.16,1,38 +28385105,30 day min days-entire apt minutes to Manhattan!,49804236,JoAnn,Queens,Sunnyside,40.74707,-73.9235,Entire home/apt,80,30,3,2019-06-10,0.44,1,109 +28385354,The Green Room: Fun Private Room for Fun Families!,214298769,Megan,Brooklyn,Cypress Hills,40.67865,-73.89241,Private room,100,1,9,2019-06-09,0.92,1,330 +28385896,Room w Roof in Trendy Renovated E Williamsburg Apt,6892946,Danite,Brooklyn,Williamsburg,40.70568,-73.94282,Private room,70,10,2,2018-11-19,0.21,1,0 +28386112,Spacious 2 BR. Ridgewood Apt.,214304954,Milly & George,Queens,Glendale,40.6934,-73.8951,Entire home/apt,160,2,12,2019-06-30,1.31,1,361 +28386154,Charming Bedroom in Brooklyn Navy Yard,30185638,Nima,Brooklyn,Fort Greene,40.69633,-73.97215,Private room,85,5,29,2019-06-18,2.91,1,240 +28387362,Private room for rent,22685487,Elireth,Queens,Elmhurst,40.72946,-73.88054,Private room,45,2,4,2018-10-01,0.40,2,324 +28388724,Huge bedroom in Williamsburg [Prime Location],19484041,Qasim,Brooklyn,Williamsburg,40.71272,-73.94104,Private room,71,1,8,2019-03-26,0.81,1,0 +28389715,Entire 3 bedroom apartment in best location.,203564743,Angel,Queens,Long Island City,40.75651,-73.93441,Entire home/apt,170,3,31,2019-06-17,3.32,1,238 +28389754,Affordable comfy room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73862,-73.80808,Private room,65,1,2,2019-05-20,0.52,5,90 +28389771,3. Beautiful and clean room only 20ms to Manhattan,188498431,Han,Queens,Sunnyside,40.73825,-73.92387,Private room,65,2,19,2019-07-01,1.95,6,356 +28389772,Private Studio in Astoria- 25 min. to Midtown,214332639,Gina,Queens,Ditmars Steinway,40.78105,-73.91435,Entire home/apt,100,1,27,2019-07-07,2.92,1,36 +28390400,Beautiful bedroom off the L train Lorimer stop,2907609,Daniel,Brooklyn,Williamsburg,40.71451,-73.95068,Private room,70,5,0,,,1,0 +28390924,Comfortable rooms 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77699,-73.91354,Private room,95,1,0,,,3,177 +28391441,"Midtown 2Bed 1.5Bath Luxury Full Kitchen, Balcony",214347105,Roman,Manhattan,Midtown,40.75224,-73.96526,Entire home/apt,449,3,23,2019-05-19,2.36,8,326 +28391512,ELEXEY'S COMFORT.. room is located on the 3rd fl.,185889529,Michelle,Queens,St. Albans,40.69898,-73.75518,Private room,50,1,51,2019-06-29,5.10,3,358 +28391618,Maspeth Queens Apartment,80478684,Joe,Queens,Maspeth,40.72664,-73.89294,Entire home/apt,150,2,19,2019-07-01,2.91,2,309 +28392603,Brooklyn Historical Townhouse,73445711,Terrence And Teresa,Brooklyn,Bedford-Stuyvesant,40.68104,-73.93776,Entire home/apt,101,2,37,2019-07-01,4.19,1,170 +28400092,Private Bedroom Minutes To Manhattan,214329835,Rita,Queens,Ditmars Steinway,40.77882,-73.90935,Private room,69,2,2,2019-05-06,0.23,2,74 +28403499,NY Style by the Metro and St. john's University.,196036532,Natalie,Queens,Jamaica Estates,40.71959,-73.78849,Private room,57,1,6,2019-03-14,0.66,1,65 +28404814,Stylish & dreamy brooklyn loft,2236212,Iva,Brooklyn,Bedford-Stuyvesant,40.67895,-73.93641,Entire home/apt,190,3,11,2019-06-09,1.20,2,179 +28406352,Mikey's,7963207,Michael,Manhattan,West Village,40.73659,-74.00495,Entire home/apt,325,3,8,2019-06-26,0.83,1,83 +28406990,Cozy apartment in trendy financial district,214464499,Mel,Manhattan,Financial District,40.70498,-74.00992,Entire home/apt,200,1,8,2019-07-06,0.81,1,0 +28407129,East Village/Noho home with private deck,5176117,Jessica,Manhattan,East Village,40.72749,-73.98994,Entire home/apt,250,1,2,2019-03-31,0.52,1,63 +28407992,"Entire 2BR apartment, your home away from home",162848296,Fengxiang,Staten Island,Graniteville,40.62301,-74.16558,Entire home/apt,71,4,7,2019-06-01,1.01,1,0 +28408938,Gorgeous loft with stunning view : Williamsburg,17760140,Amo,Brooklyn,Williamsburg,40.71801,-73.95573,Entire home/apt,190,4,2,2019-05-31,0.21,1,4 +28408961,French Riviera,214480354,Alex,Manhattan,Upper West Side,40.79876,-73.96053,Private room,109,3,2,2018-10-09,0.21,1,0 +28409021,Artist’s Retreat,97658205,John Drue,Brooklyn,Bushwick,40.70023,-73.92487,Private room,35,1,5,2018-10-05,0.53,1,0 +28409283,Staten Island Townhouse,214483712,Christina,Staten Island,Bull's Head,40.59448,-74.16388,Private room,40,10,0,,,3,89 +28409399,Affordable Studio for First-Time Travelers to NYC,88982022,Timothy,Manhattan,Upper East Side,40.77878,-73.95694,Private room,130,1,15,2018-12-30,1.56,1,0 +28409473,CoZy room with your own bathroom/entrance in UES!,109378554,Adele,Manhattan,Upper East Side,40.77016,-73.95632,Private room,149,2,32,2019-06-12,3.21,1,75 +28410723,Entire Apartment in Greenwood,108902280,Guadalupe,Brooklyn,Sunset Park,40.65929,-73.99441,Entire home/apt,59,2,26,2019-06-23,2.63,1,173 +28411594,Private room for rent!,22685487,Elireth,Queens,Elmhurst,40.72962,-73.88053,Private room,45,2,3,2019-06-06,0.31,2,324 +28411657,"Your Brooklyn Getaway, King sized bed in neat room",14234166,Peter,Queens,Ridgewood,40.70552,-73.91476,Private room,70,1,39,2019-06-17,3.95,2,74 +28411950,Large & Bright Bedroom in Astoria,214483779,Jany,Queens,Astoria,40.76296,-73.92571,Private room,75,2,4,2018-10-28,0.42,1,164 +28412322,Kozy Klean Kwiet,20161085,Lloyd,Queens,Jamaica,40.68588,-73.76315,Private room,120,2,31,2019-07-04,3.21,1,57 +28412831,West village bright dream location room,12926593,Catarina,Manhattan,West Village,40.73117,-74.00232,Private room,126,2,1,2019-06-30,1,3,15 +28414122,3 Bedroom Artsy Apartment. Best Deal in Brooklyn.,7799229,Artem,Brooklyn,Williamsburg,40.71567,-73.95831,Entire home/apt,207,2,28,2019-06-13,3.08,2,271 +28415700,Cozy Bedroom in Williamsburg - 5 min from L train,44090067,Khaula,Brooklyn,Williamsburg,40.71623,-73.94328,Private room,70,1,30,2019-07-05,4.33,1,8 +28417682,Great private room in Sunnyside NYC 7 min Subway,58234433,Martin,Queens,Sunnyside,40.73587,-73.92027,Private room,90,1,11,2019-06-03,1.10,8,319 +28418722,"Apartment minutes away from JFK, LGA, CitiField",214424497,Michelle,Queens,St. Albans,40.70454,-73.7656,Entire home/apt,64,1,32,2019-07-07,3.47,1,259 +28422482,Chateau Greenpoint Dog Lovers,11728318,John,Brooklyn,Greenpoint,40.72624,-73.94285,Private room,40,2,24,2019-06-30,2.69,1,95 +28423989,⭐3 BR Sleep 8 A+ Location by Shops + Subway to NYC,214311765,Sophie And Linda,Queens,Elmhurst,40.73655,-73.87892,Entire home/apt,300,2,29,2019-06-19,3.83,1,298 +28424657,Nice Room,214586580,Tina,Queens,Astoria,40.7708,-73.92686,Private room,55,30,19,2019-01-08,1.92,1,184 +28426648,Minimalist Loft Luxury in Soho,214416012,James,Manhattan,SoHo,40.72345,-73.99943,Entire home/apt,800,2,36,2019-07-01,3.88,1,90 +28427324,New york Multi-unit building,214141672,Monica,Queens,Astoria,40.76466,-73.92731,Private room,120,1,1,2018-09-19,0.10,1,362 +28428225,"Studio Rm in Bklyn, Medical & Professionals ONLY",214611101,Myra,Brooklyn,Kensington,40.63662,-73.97612,Private room,66,30,1,2019-06-28,1,4,74 +28428327,Private Sunny Room — Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74721,-73.97398,Private room,100,1,12,2019-05-13,1.70,3,58 +28428636,Room for easy commute. Near train & essentials!,137358866,Kazuya,Queens,Elmhurst,40.74345,-73.87901,Private room,38,30,2,2019-05-30,0.39,103,247 +28429572,RE:GEN:CY,214620702,Ashley And Cayla,Brooklyn,Red Hook,40.67864,-74.00546,Entire home/apt,750,1,6,2019-06-23,0.64,1,179 +28429583,Dream East Village apartment.,19414064,Declan,Manhattan,East Village,40.72617,-73.98869,Entire home/apt,225,3,0,,,1,0 +28430186,Gorgeous Artists' loft ★ Prime location,76232256,Natalia,Brooklyn,Williamsburg,40.71736,-73.95361,Private room,99,3,13,2019-06-21,1.32,1,221 +28430639,"Waterfront Apt, Private bed&bath in Williamsburg",66837596,Yoo MI,Brooklyn,Williamsburg,40.72015,-73.96403,Private room,110,3,18,2019-07-05,1.96,2,234 +28431690,"Brand New Luxury Apartment, Tons of Outdoor Space",157703622,John,Manhattan,Lower East Side,40.71821,-73.98914,Entire home/apt,225,30,2,2019-02-23,0.23,2,188 +28431734,Bright 2- Room apartment in a house next to train.,55004447,Olga,Staten Island,Arden Heights,40.54312,-74.17388,Private room,41,2,7,2019-01-08,0.71,1,0 +28432700,Large one bedroom Apartment in Ditmas Park,2770596,Emilio,Brooklyn,Flatbush,40.63813,-73.96592,Entire home/apt,120,5,3,2018-12-26,0.31,2,231 +28433202,Great value! Private room Queen size Couch bed,147762665,Jose,Bronx,Wakefield,40.88688,-73.85848,Private room,37,1,14,2019-07-05,1.42,3,332 +28433844,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.70999,-74.011,Private room,179,7,9,2019-06-25,0.97,13,349 +28436764,5. Beautiful Clean room just 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73773,-73.92227,Private room,75,2,15,2019-07-06,1.84,6,342 +28436953,Sunny Private Room near the Montrose L,48084892,Megan,Brooklyn,Williamsburg,40.70859,-73.94297,Private room,63,3,8,2019-03-26,0.85,1,0 +28436992,7. Beautiful Clean room just 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73939,-73.92308,Private room,65,2,13,2019-07-05,1.49,6,341 +28437372,Newly renovated private room w/ view! 5mins to N/R,214678935,Kin,Brooklyn,Sunset Park,40.64689,-74.01401,Private room,55,1,31,2019-06-28,3.10,3,361 +28437554,New York roomers,131705586,Freddy,Brooklyn,Fort Greene,40.69379,-73.97111,Private room,67,1,36,2019-06-05,3.59,2,329 +28437669,Two-Story 2BR/2BA East Village Apartment!,3964276,Steve,Manhattan,East Village,40.72447,-73.98821,Entire home/apt,255,3,6,2018-12-30,0.65,1,0 +28437754,8. Beautiful clean room 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73894,-73.92288,Private room,65,2,26,2019-07-01,2.80,6,355 +28438004,Large Harlem 3 bed 2 bath,214683117,Glenis,Manhattan,Harlem,40.81249,-73.94957,Entire home/apt,325,2,2,2019-01-01,0.20,1,0 +28438216,2BED Close UN Location full Kitchen Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75282,-73.96688,Entire home/apt,389,3,8,2019-05-22,0.83,8,339 +28438408,The Artist's House & Roof Garden (part 2!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65518,-73.95664,Private room,40,20,7,2019-04-28,0.84,4,34 +28438751,Private room NYC near LGA JFK Manhattan centre,10164435,Stella,Queens,Astoria,40.75726,-73.92812,Private room,44,1,49,2019-05-01,5.38,3,52 +28438882,The Artist's House & Roof Garden (part 3!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95728,Private room,40,1,2,2019-04-13,0.27,4,37 +28439263,"10BR 6 full Bath, 3 story, entire landmark house",210970608,Lucy,Brooklyn,Crown Heights,40.6692,-73.95054,Entire home/apt,785,3,0,,,5,226 +28439572,Amazing Soho Apartment,2740709,Cathal,Manhattan,SoHo,40.72615,-74.00325,Entire home/apt,285,4,1,2018-09-16,0.10,1,7 +28440536,Chelsea Cabin,20480351,David,Manhattan,Chelsea,40.7404,-73.99485,Entire home/apt,200,3,21,2019-06-20,2.40,1,42 +28440683,Modern guest suite in historic home,60787,Greg,Brooklyn,Bedford-Stuyvesant,40.6816,-73.93282,Entire home/apt,75,5,4,2019-04-03,0.44,1,0 +28441716,"XL Studio: great view, minutes from Times Square",2757243,Matthew,Manhattan,Hell's Kitchen,40.7557,-73.99337,Entire home/apt,230,2,6,2019-05-26,0.64,1,4 +28443430,Beautiful Full-size Studio in Classic Brownstone,1820586,Lizania,Brooklyn,Bedford-Stuyvesant,40.68279,-73.94805,Entire home/apt,80,7,4,2019-05-25,0.44,1,14 +28452001,Cozy private bedroom near Times Square 31C1,190921808,John,Manhattan,Hell's Kitchen,40.75417,-73.99578,Private room,99,7,5,2019-06-12,0.59,47,352 +28453441,BP- STYLISH SHARED Room 2ppl 10 MINS TO MANHATTAN,213208277,Darry,Brooklyn,Borough Park,40.64314,-73.99221,Shared room,30,5,7,2019-06-14,1.00,8,365 +28454118,Amazing sunny Williamsburg apt!,29452152,Lore,Brooklyn,Williamsburg,40.70807,-73.95681,Entire home/apt,145,4,5,2019-04-13,0.53,1,1 +28456148,Sunny cozy 1 bedroom- Designer’s home,3334537,Jolie,Brooklyn,Bedford-Stuyvesant,40.68471,-73.93763,Entire home/apt,150,4,9,2019-06-28,0.93,1,132 +28456453,Celebrity Home 15 mins to jfk & lga,213816392,DuChess,Queens,Queens Village,40.70762,-73.74366,Private room,41,1,38,2019-07-06,3.99,3,163 +28456602,靠近机场交通方便明亮大房间#3,156547988,Minying,Queens,Ozone Park,40.67743,-73.84941,Private room,65,1,5,2019-06-14,0.50,4,334 +28458448,The Come On Inn,3740621,Jonathan,Manhattan,Harlem,40.81465,-73.94265,Private room,150,1,40,2019-06-03,4.26,2,66 +28459032,Modern Alcove Apartment,139135,Lisa,Manhattan,Kips Bay,40.74197,-73.98012,Entire home/apt,145,7,2,2018-12-28,0.29,1,0 +28459635,Huge Brooklyn Bedroom,3771945,Lindsay,Brooklyn,Bedford-Stuyvesant,40.69585,-73.93335,Private room,50,2,3,2019-05-04,0.32,1,0 +28460904,"Huge Artist’s Loft in Red Hook, Brooklyn",15631610,Jesse,Brooklyn,Red Hook,40.67918,-74.00568,Entire home/apt,185,3,16,2019-05-25,1.67,1,0 +28461232,Beuty full bedroom Queens size bed,65827591,Nubia,Queens,Maspeth,40.73591,-73.90013,Private room,65,2,4,2018-11-11,0.43,3,254 +28461316,2 bedroom/1 bathroom next to Columbia University,82736848,Courtney,Manhattan,Morningside Heights,40.81214,-73.96488,Entire home/apt,150,2,2,2019-01-01,0.21,1,0 +28461528,NEW! New York City Apartment 7 min walk to Metro!,58234433,Martin,Queens,Sunnyside,40.7359,-73.9187,Entire home/apt,260,1,15,2019-06-23,1.71,8,267 +28462562,Prime New York Upper East Side 1 Bedroom Apartment,63659318,Kerem,Manhattan,Upper East Side,40.76976,-73.94956,Entire home/apt,125,2,17,2019-06-28,1.76,1,70 +28462738,COZY STUDIO Upper West Side,169773010,Petrina,Manhattan,Upper West Side,40.78471,-73.9716,Entire home/apt,199,1,86,2019-06-30,8.72,1,22 +28462811,Bronx Home 5 Minute walk from Yankee Stadium,214859918,Edna,Bronx,Concourse,40.82228,-73.92783,Private room,45,1,28,2019-06-24,3.07,1,161 +28463327,"Humble Abode - CLEAN, SAFE, AFFORDABLE.",214863971,Elenora And Jason,Brooklyn,Flatlands,40.6211,-73.92651,Private room,37,2,28,2019-05-30,2.84,2,38 +28463654,Chelsea's best kept secret,182425491,Brian,Manhattan,Chelsea,40.75151,-73.99725,Entire home/apt,500,3,9,2019-06-02,0.93,1,357 +28464119,Private Room 2,31770868,Tae,Manhattan,Theater District,40.76102,-73.98677,Private room,100,1,51,2019-06-21,5.15,2,169 +28464743,Private bedroom with great location,11320557,Bojan,Manhattan,Chinatown,40.71624,-73.99995,Private room,100,2,35,2019-06-26,4.32,1,6 +28464767,NY PRIVATE BEDROOM QUEEN BED BY 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.83088,-73.86492,Private room,42,2,23,2019-06-10,2.54,3,109 +28464787,LUNA 2BR SUITE by COLUMBIA-PRESBYTERIAN HOSP.,25237492,Juliana,Manhattan,Washington Heights,40.84241,-73.94087,Entire home/apt,65,30,0,,,34,295 +28464829,Great cosy Studio. Just perfect.,24833181,Andres,Brooklyn,Bedford-Stuyvesant,40.69488,-73.94983,Entire home/apt,85,1,44,2019-07-05,4.51,2,208 +28466730,Akouaba,214888995,Adama,Bronx,Belmont,40.85267,-73.88627,Private room,50,2,51,2019-07-06,5.17,1,325 +28467737,Midtown Manhattan - 3BR/1BA near Empire State,27661888,Inho,Manhattan,Murray Hill,40.74734,-73.98049,Entire home/apt,575,2,40,2019-07-07,4.43,1,46 +28467973,NYC Penthouse Private Bedroom & Balcony w/ Skyline,123567556,Sean,Brooklyn,Crown Heights,40.67596,-73.93201,Private room,85,1,9,2019-06-23,5.40,2,173 +28468184,Affordable Large Bushwick Room with a View,179773675,Megan,Brooklyn,Bedford-Stuyvesant,40.68517,-73.91736,Private room,60,4,0,,,1,0 +28471510,"Looking for low key, clean long term guest .",82975282,Evyiatar,Queens,Bayswater,40.60484,-73.76871,Private room,52,30,0,,,2,312 +28477383,Spacious RM in Quiet Area near LGA & MNHTN express,137358866,Kazuya,Queens,Woodside,40.74301,-73.89458,Private room,50,30,2,2019-05-11,0.50,103,269 +28483408,DOORMAN/ GYM/ MODERN 2 BR ON EAST 52ND ST,200380610,Pranjal,Manhattan,Midtown,40.7551,-73.96507,Entire home/apt,385,30,0,,,65,364 +28483571,Brand New Beautiful Home (25 min to Manhattan),178011115,Mohammed,Queens,Maspeth,40.74113,-73.90118,Entire home/apt,166,4,31,2019-06-09,3.52,1,280 +28484028,9.Clean Bed just 20 mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73892,-73.92397,Shared room,39,2,18,2019-06-23,1.96,6,344 +28484124,Modern & Hip 1 bed apt Manhattan,13538150,Mariana,Manhattan,Hell's Kitchen,40.77054,-73.99305,Entire home/apt,97,2,1,2019-06-26,1,1,8 +28484811,Spacious Brooklyn Oasis,1327520,Christa,Brooklyn,Bedford-Stuyvesant,40.69357,-73.94971,Entire home/apt,200,1,3,2018-09-29,0.30,1,0 +28485500,Brownstone Garden Style Apt in Historic Bedstuy,73538984,Kesha,Brooklyn,Bedford-Stuyvesant,40.68618,-73.94367,Entire home/apt,155,2,12,2018-11-24,1.25,1,0 +28486770,Williamsburg Nest: Your Home Away From Home,47239386,Eliran,Brooklyn,Williamsburg,40.71671,-73.95064,Entire home/apt,220,4,3,2018-10-15,0.32,1,16 +28487528,Large sunny private queen bedroom - S Williamsburg,50921439,Patrick,Brooklyn,Williamsburg,40.70985,-73.96435,Private room,75,4,3,2019-01-02,0.32,1,0 +28488070,Designer 3 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69482,-73.92493,Entire home/apt,140,30,0,,,2,330 +28489062,Cozy 2 Bedroom by the Park !,20104851,Scott,Brooklyn,South Slope,40.66595,-73.97973,Entire home/apt,195,4,22,2019-06-25,3.01,1,67 +28490526,Authentic Brooklyn Brownstone - Garden Unit,39477098,Elisha,Brooklyn,Crown Heights,40.67205,-73.94853,Entire home/apt,125,3,25,2019-06-26,4.55,1,139 +28491645,Private room woodside close to all transportations,114249746,Jeff,Queens,Woodside,40.75249,-73.90041,Private room,45,1,53,2019-06-02,5.39,1,45 +28492753,New York City 4 Room Suite at The Manhattan Club,215073823,William,Manhattan,Midtown,40.76534,-73.98096,Private room,425,1,4,2019-04-22,0.53,1,0 +28493404,Brand new Loft 2 blocks away from train w/ parking,117027456,Madeleine,Brooklyn,East New York,40.67001,-73.88339,Entire home/apt,90,1,34,2019-06-30,4.10,1,122 +28493933,Prime Location Private Room in a Williamsburg,61330869,Carine,Brooklyn,Williamsburg,40.70803,-73.96142,Private room,95,1,6,2019-05-05,0.62,1,0 +28494807,"Upper West Side, NYC. Near 72nd 1,2,3",5970733,Michelene,Manhattan,Upper West Side,40.77953,-73.98421,Entire home/apt,100,2,17,2019-07-01,2.12,1,18 +28495328,Good place to stay NYC,215034605,Erasmo,Queens,Ditmars Steinway,40.76932,-73.90113,Private room,100,3,14,2019-01-01,1.42,1,0 +28496792,Huge Private Suite-Style Bedroom by Prospect Park,3158797,Drea,Brooklyn,Windsor Terrace,40.65209,-73.97376,Private room,50,14,0,,,1,174 +28497028,Heights V,9130040,Candace,Brooklyn,East Flatbush,40.66148,-73.93408,Private room,89,1,1,2019-05-19,0.59,6,365 +28500619,Brooklyn Tree House,215127571,Anthony,Brooklyn,Williamsburg,40.71859,-73.95202,Entire home/apt,400,3,25,2019-07-05,2.62,1,30 +28501387,Huge Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72381,-74.00183,Entire home/apt,403,4,4,2019-01-22,0.45,3,0 +28506359,"2 Bdrm Central Park-Convenient, Clean, Near Metro",215161436,Sam,Manhattan,Upper West Side,40.80014,-73.96039,Entire home/apt,325,4,17,2019-06-25,3.67,1,319 +28506595,Cute Room,8834412,Deborah,Bronx,Longwood,40.81232,-73.90299,Private room,100,3,0,,,2,364 +28507308,Luxury Apt with perfect location and views,1604815,Meng,Manhattan,Upper West Side,40.77902,-73.98709,Entire home/apt,135,10,13,2019-06-01,1.38,1,7 +28509709,Bronx Apartment College Ave,215183568,Matilde,Bronx,Claremont Village,40.83739,-73.91118,Private room,26,1,20,2019-03-26,2.07,1,3 +28510048,NYC Spacious 6 Br Victorian Home w/ parking,57812046,Dave + Suzanne,Brooklyn,Flatbush,40.63848,-73.96572,Entire home/apt,330,3,2,2019-07-03,1.05,2,18 +28510491,Clean + Cozy Room-Please Read All Details,215189782,Bianca,Manhattan,Hell's Kitchen,40.76825,-73.98743,Private room,200,3,8,2019-05-30,0.83,1,332 +28510832,Private 2 BR apartment near train,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69105,-73.93723,Entire home/apt,139,1,8,2019-04-22,0.86,9,118 +28512918,"Comfortable, Queen Bedroom in East Williamsburg",67391192,Chris,Brooklyn,Williamsburg,40.70898,-73.94116,Private room,50,2,9,2019-05-17,0.91,1,4 +28513148,"Lovely Studio - Heart of Carroll Gardens, Brooklyn",1381000,Diana,Brooklyn,Gowanus,40.68077,-73.98983,Entire home/apt,125,2,2,2019-05-12,0.23,1,0 +28513450,Cozy 3 Bedroom in the heart of NYC,215209489,Leah,Manhattan,Hell's Kitchen,40.76088,-73.98971,Entire home/apt,350,30,1,2019-03-16,0.26,1,331 +28513774,Cozy 2 Bedroom Apt w/ Patio & Hot Tub near Trains,108249932,Yngrid And Jiovanni,Brooklyn,East New York,40.6757,-73.88925,Entire home/apt,175,3,22,2019-06-30,2.89,2,285 +28513853,Spacious Studio - 5 Mins from Times Square.,37412692,Kim,Manhattan,Midtown,40.76539,-73.98329,Entire home/apt,169,30,0,,,4,362 +28514974,"Great room in hip, but quiet Williamsburg, BKLYN.",12715154,Leo,Brooklyn,Williamsburg,40.72032,-73.94561,Private room,130,7,2,2019-05-15,0.32,2,212 +28515078,Minimalist Oasis/ Condo,124155350,Anna,Manhattan,Harlem,40.82778,-73.94995,Entire home/apt,150,2,7,2019-01-02,0.76,1,0 +28517276,Luxury Studio & Private Patio - NYC in 20 minutes!,71219887,Christina,Brooklyn,Bushwick,40.69062,-73.92265,Entire home/apt,120,2,10,2019-06-23,1.18,1,4 +28517278,Williamsburg Brooklyn Apartment,215239210,Brit,Brooklyn,Williamsburg,40.71528,-73.94331,Entire home/apt,150,2,14,2019-06-21,1.45,1,2 +28518320,Beautiful Brooklyn Brownstone in Prime Location,127250744,Steven,Brooklyn,Carroll Gardens,40.68036,-73.99247,Entire home/apt,180,3,4,2019-06-22,0.53,1,5 +28519623,clean& airy in Brooklyn w/private bathroom and AC!,215257373,Erica,Brooklyn,Williamsburg,40.71601,-73.93962,Private room,105,1,71,2019-07-05,7.34,1,55 +28519821,"Cute Clean & Quaint , 40 minutes away from. City",214184351,Bladimil,Brooklyn,Bushwick,40.69855,-73.91394,Private room,63,3,2,2019-03-01,0.31,1,365 +28520092,2BR APT NEXT TO CENTRAL PARK & TIMES SQUARE,215259606,Kennyd,Manhattan,Hell's Kitchen,40.76542,-73.98754,Entire home/apt,300,1,61,2019-06-27,6.31,1,154 +28520183,"Large, brand new Williamsburg apt. w/ prvt outdoor",1755123,Franco,Brooklyn,Williamsburg,40.71543,-73.95421,Entire home/apt,70,2,4,2019-05-03,0.50,1,0 +28521841,Colorful and central Gramercy apartment,120378725,Olena,Manhattan,Kips Bay,40.73826,-73.98028,Entire home/apt,250,2,2,2018-09-27,0.21,1,0 +28522394,The Spot,215277711,Aaron,Bronx,Van Nest,40.83988,-73.86978,Entire home/apt,300,1,0,,,1,365 +28525440,Art & Expression Inn,202823080,Marissa,Brooklyn,Bushwick,40.69939,-73.9158,Private room,43,3,5,2019-04-03,0.68,1,179 +28526676,Cozy Room,28740462,Andrea,Brooklyn,Borough Park,40.64465,-73.99078,Private room,40,1,36,2019-07-03,3.74,1,63 +28531920,SPECTACULAR 2br high floor (Website hidden by Airbnb) view,6393008,Labeat,Manhattan,Hell's Kitchen,40.76485,-73.98525,Entire home/apt,471,3,1,2019-04-28,0.42,1,188 +28532378,Gem,156505456,John,Brooklyn,East New York,40.66676,-73.87421,Private room,40,3,9,2019-06-07,0.95,13,180 +28534405,New york Multi-unit building,2891643,Jacqueline,Manhattan,Harlem,40.82146,-73.94598,Private room,50,1,0,,,1,0 +28536037,EXCELLENT location 2min 7 line 61st Express train,19303369,Hiroki,Queens,Woodside,40.74474,-73.90314,Private room,47,30,0,,,37,1 +28536172,NYC Townhouse & Private Roof Deck,189336520,Martha,Manhattan,Upper East Side,40.77141,-73.95658,Entire home/apt,1000,4,16,2019-06-15,1.97,1,66 +28536219,Adorable Polly Pocket-Sized Prospect Heights Space,3690070,Jess,Brooklyn,Prospect Heights,40.67881,-73.96888,Entire home/apt,94,2,8,2019-05-11,0.83,1,0 +28537361,La Casa Azul - Paradise in Brooklyn!!,215378301,Meg,Brooklyn,Cypress Hills,40.68269,-73.89223,Entire home/apt,750,1,6,2019-04-07,0.67,1,365 +28538516,纽约单一家庭住宅,156064588,Xiaowen,Brooklyn,Crown Heights,40.67623,-73.91144,Private room,69,1,11,2019-01-04,1.11,1,0 +28538946,Spacious & Bright 1 Bedroom Refuge in the Big City,904138,Paul,Queens,Astoria,40.76214,-73.92148,Entire home/apt,150,6,1,2019-04-07,0.32,1,0 +28539077,Sun-drenched Executive Suite 1,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68062,-73.91251,Private room,80,5,12,2019-07-02,1.28,3,354 +28539464,"#2BED Luxury Midtown Full Kitchen, Comp Breakfast",214347105,Roman,Manhattan,Midtown,40.75306,-73.96662,Entire home/apt,399,3,13,2019-06-09,1.48,8,229 +28540171,Central Harlem Home,7147060,Kathleen,Manhattan,Harlem,40.80212,-73.95732,Private room,95,2,5,2019-06-21,1.90,2,90 +28540537,Cozy Loft Studio with Skylight!,187487947,Diego,Brooklyn,Greenpoint,40.73176,-73.95525,Entire home/apt,52,1,32,2019-05-29,3.47,6,0 +28540618,Sweet studio in the heart of Nolita,215403497,Rebecca,Manhattan,Little Italy,40.71908,-73.99766,Entire home/apt,150,4,3,2018-11-28,0.32,1,179 +28540662,Angels Haven,215392967,Rose,Queens,Bellerose,40.72415,-73.728,Private room,65,3,10,2019-07-01,1.06,1,89 +28541165,Budget cave!,2268393,Javier & Jorge,Brooklyn,Williamsburg,40.70665,-73.94554,Private room,60,7,5,2019-06-05,0.52,2,0 +28541238,Spacious room with huge bay window & natural light,215407308,Hawk,Queens,Sunnyside,40.7372,-73.92586,Private room,55,2,19,2019-06-16,2.04,3,138 +28541768,Cosy small room 15 mins away from Manhattan,215407308,Hawk,Queens,Sunnyside,40.73829,-73.9274,Private room,49,3,14,2019-05-07,1.44,3,106 +28542484,Sonder | 21 Chelsea | Sophisticated 2BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74299,-73.99436,Entire home/apt,377,29,0,,,96,302 +28542784,Sonder | 21 Chelsea | Lively 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7425,-73.99427,Entire home/apt,249,29,1,2018-09-25,0.10,96,220 +28543617,Private room in Airy Harlem Penthouse,7147060,Kathleen,Manhattan,Harlem,40.80256,-73.95581,Private room,100,2,11,2019-06-30,1.18,2,90 +28543707,Fab & huge room in historic bedstuy brownstone,921829,Ali,Brooklyn,Bedford-Stuyvesant,40.6909,-73.93737,Private room,60,3,17,2019-06-25,1.75,1,340 +28544890,Serene Spacious and Sun lit Master 5 mins to metro,214678935,Kin,Brooklyn,Sunset Park,40.64667,-74.01416,Private room,59,1,36,2019-06-23,3.79,3,352 +28545860,Affordable private queen room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73819,-73.81007,Private room,65,1,2,2018-10-14,0.22,5,90 +28547290,Sunny room W/ Private bathroom -North Williamsburg,96735874,Ally,Brooklyn,Williamsburg,40.71969,-73.96427,Private room,120,1,23,2019-07-05,2.46,1,37 +28548195,"Modern, clean, NEW apt 1 block from train!",179413160,Maria Fernanda,Brooklyn,Cypress Hills,40.67974,-73.88374,Private room,45,1,8,2019-07-05,0.85,1,57 +28550680,Bright Room w own Bathroom & Views. Central Park.,7720459,Angie,Manhattan,Harlem,40.80459,-73.9558,Private room,150,5,33,2019-06-26,3.69,1,58 +28554405,Shared place by Theater district in Manhattan west,175180318,Gúney,Manhattan,Hell's Kitchen,40.76538,-73.98779,Shared room,90,1,11,2019-07-04,1.11,6,169 +28558474,Cozy apartment separated bedroom - Near Manhattan,21124300,Simon,Brooklyn,Fort Greene,40.68803,-73.973,Entire home/apt,140,2,8,2019-07-07,0.83,1,14 +28558930,Cosy home in Bushwick..25 minutes into Manhattan!,44753370,Sanjeev,Brooklyn,Bushwick,40.70543,-73.91935,Private room,50,6,1,2018-09-16,0.10,1,0 +28559951,"Small, Cozy room in Central Harlem neighborhood",67395042,Omar,Manhattan,Harlem,40.82306,-73.94046,Private room,70,1,46,2019-06-09,5.54,1,66 +28560196,Good 2-bedroom in Bushwick!,14383179,Dan,Brooklyn,Bushwick,40.70037,-73.92408,Entire home/apt,90,5,4,2019-04-24,0.44,1,0 +28560281,Theatre District Apartment,6066958,Hannah,Manhattan,Hell's Kitchen,40.76309,-73.99154,Private room,125,1,10,2018-11-11,1.01,1,0 +28560837,Rock Rock Rockaway Beach House,92523072,Bill,Queens,Rockaway Beach,40.58862,-73.81276,Entire home/apt,150,2,14,2019-07-03,7.24,1,97 +28560966,New York Apartment,83343316,Jamie,Manhattan,Kips Bay,40.73954,-73.98185,Private room,150,2,2,2018-11-25,0.26,1,45 +28561160,"New York - Private room, perfect location",2570601,Thirza,Manhattan,Upper West Side,40.7855,-73.97584,Private room,98,2,7,2019-03-16,0.80,1,0 +28561620,Clean and private room in Murray Hill,26045887,Ivy,Manhattan,Murray Hill,40.74844,-73.97344,Private room,120,1,36,2019-06-19,3.79,2,180 +28561904,Brand new uber-clean minimalist Bushwick 1BR,1119058,Ruben,Brooklyn,Bushwick,40.70473,-73.92662,Entire home/apt,100,4,17,2019-06-23,1.76,1,0 +28561906,Spacious Modern Brooklyn Studio,14904449,Joseph,Brooklyn,Crown Heights,40.67347,-73.95833,Entire home/apt,110,2,9,2019-06-23,0.93,1,15 +28563801,"Stylish, convenient, renovated- 2 min to subway -",45466335,Boris,Manhattan,Harlem,40.82195,-73.9368,Entire home/apt,250,1,36,2019-07-06,4.62,2,301 +28564157,1Ample room for groups in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69316,-73.90445,Private room,65,2,29,2019-05-15,2.93,8,348 +28564317,1Brooklyn budget room in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69198,-73.9038,Private room,65,2,26,2019-06-24,2.82,8,349 +28564366,1Cosy room for solo/couple in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69326,-73.90431,Private room,50,2,22,2019-06-05,2.48,8,362 +28564408,1Dynamic private room in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69256,-73.90457,Private room,65,2,26,2019-06-07,2.80,8,362 +28565170,Private room+bathroom Only 20mins to Midtown NYC!,48303314,Gaurab,Queens,Woodside,40.74909,-73.90915,Private room,35,2,21,2019-07-02,2.23,1,16 +28565575,Central & Cozy Brooklyn Home,215591956,Magdalena,Brooklyn,East New York,40.67111,-73.87083,Entire home/apt,160,2,22,2019-06-23,2.38,1,48 +28567040,Bronx House #4_3,203266238,Steve,Bronx,Morris Park,40.85362,-73.85011,Private room,65,5,0,,,5,365 +28568117,Harlem Heights Suite,39174150,Keanna,Manhattan,Harlem,40.82445,-73.95218,Private room,200,2,21,2019-06-13,2.35,3,38 +28574888,Guest Studio at Stella's place,15617507,Stella,Bronx,Morris Park,40.85105,-73.86049,Entire home/apt,60,2,20,2019-05-19,2.29,3,208 +28578651,Sunny Private bedroom in prime Greenpoint,1521811,Colleen,Brooklyn,Greenpoint,40.72749,-73.95217,Private room,53,5,1,2018-10-06,0.11,1,11 +28578931,Sunnyside RM. Reasonable price. Great for commute!,137358866,Kazuya,Queens,Sunnyside,40.73998,-73.92143,Private room,38,30,2,2019-05-31,0.30,103,201 +28580323,Writer's nook in the center of Greenpoint !!!,141734227,Brian,Brooklyn,Greenpoint,40.73128,-73.95358,Private room,99,1,11,2019-03-31,1.20,1,0 +28580426,Rooftop Vibes for small events,62659791,Chiz,Brooklyn,Crown Heights,40.67814,-73.95292,Shared room,149,1,0,,,2,363 +28581563,Peace and quiet in the center of it all,10301127,Elizabeth,Manhattan,Upper West Side,40.77399,-73.97861,Private room,140,30,0,,,1,0 +28582698,"Private Studio, 5 minutes from JFK",63056614,Ana,Queens,Jamaica,40.67189,-73.77769,Entire home/apt,65,2,40,2019-07-05,4.44,1,123 +28582815,"Bright, spacious 2BR in classic brownstone",137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.683,-73.93669,Entire home/apt,110,28,1,2019-05-12,0.51,4,156 +28583186,Fabulous Bed-Stuy Brownstone Garden Apartment,2646237,Ny,Brooklyn,Bedford-Stuyvesant,40.6909,-73.92662,Entire home/apt,140,3,18,2019-07-05,2.33,1,134 +28583260,Cozy Private Home Space in Gorgeous Neighborhood,215727176,Christine,Queens,Bayside,40.74933,-73.76821,Entire home/apt,175,3,1,2018-10-09,0.11,1,112 +28583593,"Elegant, Loft-like 1BR in a historic brownstone",137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68301,-73.93657,Entire home/apt,115,28,2,2019-06-28,0.32,4,212 +28584472,Art gallery apartment in the center of Manhattan,50462097,Jirayus,Manhattan,Hell's Kitchen,40.76435,-73.9875,Entire home/apt,199,2,35,2019-07-05,4.29,1,200 +28584690,Upper East Cozy Apt,42601145,Eva,Manhattan,Upper East Side,40.77481,-73.95558,Private room,60,1,48,2019-06-27,4.97,1,8 +28584877,Cozy bedroom available in best area of Brooklyn!,92733485,Vitaly,Brooklyn,Downtown Brooklyn,40.69164,-73.99055,Private room,50,1,5,2018-10-16,0.54,1,0 +28585042,Lovely Room in the heart of the East Village,23354644,Nancy,Manhattan,East Village,40.72977,-73.98529,Private room,78,2,1,2019-07-05,1,3,38 +28585119,Brooklyn Hot Spot with all the Fixins!,172741,Kate,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.9625,Private room,70,1,5,2019-05-27,1.06,1,37 +28585982,Large apartment walking distance to Williamsburg,102180676,Sarah,Brooklyn,Greenpoint,40.72493,-73.93976,Private room,120,4,0,,,1,49 +28586482,Private room in 2 bdrm apt. Near Gateway Ctr. Mall,26585911,Shola,Brooklyn,East New York,40.66018,-73.86607,Private room,125,1,3,2019-04-07,0.31,1,281 +28587071,Private Bedroom in Queens at St. John's University,215759678,Andrew,Queens,Jamaica Estates,40.71987,-73.79816,Private room,35,2,30,2019-07-03,3.35,1,233 +28587227,Private Studio near LaGuardia Airport and Mahattan,80933709,Jacqueline,Queens,East Elmhurst,40.76533,-73.87873,Private room,54,3,27,2019-06-10,2.83,2,35 +28587590,"Stay in my spacious, clean and quiet abode.",18022132,Jo,Queens,Long Island City,40.74523,-73.94973,Private room,175,4,1,2019-01-07,0.16,1,39 +28587806,New York City Apartment,215765235,Julia,Manhattan,NoHo,40.72503,-73.99252,Entire home/apt,500,5,1,2019-05-27,0.70,1,362 +28589725,"CAMAS PARA MUJERES VIAJERAS EN QUEENS,(Only Women)",215778245,Jessy & Christian,Queens,Corona,40.74056,-73.86446,Shared room,25,2,15,2019-06-27,1.77,6,330 +28590307,SALA/CAMA PARA MUJERES VIAJERAS (WOMEN ONLY),215778245,Jessy & Christian,Queens,Corona,40.73888,-73.86618,Shared room,26,2,21,2019-07-01,2.58,6,352 +28600360,Cozy studio near the beach and St. John’s hospital,36383387,Suleidy,Queens,Far Rockaway,40.60106,-73.75154,Entire home/apt,63,1,11,2019-07-07,4.52,1,129 +28600950,Wonderful and bright 1BR steps from Central Park,4166822,Kay,Manhattan,Upper West Side,40.79012,-73.96896,Entire home/apt,127,3,14,2019-06-04,1.78,1,0 +28602842,Amazing 2Bed apt in Union Square,215869827,Isabelle,Manhattan,East Village,40.73245,-73.98535,Entire home/apt,300,30,0,,,1,180 +28603871,Sonder | Madison Ave | Sophisticated Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74716,-73.98454,Entire home/apt,225,29,1,2019-06-01,0.79,96,332 +28604409,Sonder | Madison Ave | Convenient Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74653,-73.98481,Entire home/apt,209,29,0,,,96,250 +28604793,6MinTrainMasterRoom/MaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65012,-74.00603,Private room,60,1,20,2019-06-28,2.07,4,162 +28605855,Martha's Guest Room,110213244,Russ,Brooklyn,South Slope,40.66209,-73.98671,Private room,47,1,4,2019-05-12,0.42,1,362 +28606263,Gorgeous 1 Bedroom on the Park,22154340,Rachele,Brooklyn,Fort Greene,40.68892,-73.97329,Entire home/apt,195,3,1,2019-02-04,0.19,1,0 +28606376,Bedroom Apartment in the Heart of Manhattan,215897007,Joana,Manhattan,Murray Hill,40.74536,-73.97506,Private room,355,2,13,2019-06-09,1.49,1,308 +28606397,"Affordable Couch-Surfing, Near All",9731301,Arq,Queens,Jackson Heights,40.75011,-73.89113,Shared room,70,1,2,2019-03-31,0.32,1,365 +28606853,Bedroom 7 bed A.,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69313,-73.95533,Shared room,39,1,13,2019-07-02,1.33,34,365 +28607153,Renovated Dining(2019) 5min to 74st Express subway,19303369,Hiroki,Queens,Jackson Heights,40.74951,-73.89378,Private room,35,30,2,2019-06-30,0.56,37,32 +28607761,Bedroom 7 Bed B,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69238,-73.95724,Shared room,39,2,6,2019-05-20,0.62,34,343 +28607874,Sonder | Madison Ave | Spacious Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74584,-73.98474,Entire home/apt,237,29,0,,,96,365 +28608063,South Bronx Oasis - Stunning 1 Bedroom Apartment,214871546,Dion,Bronx,Longwood,40.82718,-73.90241,Entire home/apt,90,2,58,2019-06-30,6.80,1,301 +28608084,Sonder | Madison Ave | Simple Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74712,-73.98461,Entire home/apt,254,29,0,,,96,291 +28608251,Bedroom 7 Bed C,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69232,-73.95654,Shared room,39,3,13,2019-06-09,1.36,34,359 +28608462,Bedroom 7 Bed D,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95657,Shared room,39,1,13,2019-06-13,1.36,34,365 +28608920,Chic modern studio,141300,Mel,Manhattan,Upper West Side,40.78581,-73.97179,Entire home/apt,165,1,8,2019-05-06,0.88,1,87 +28609526,Beautiful Bedroom in a brand new apartment! 3L-1,205530337,Nina,Queens,Ridgewood,40.70279,-73.90601,Private room,45,30,4,2019-06-22,0.48,8,248 +28609705,20 mins from Manhattan. 10 mins frm S.I. ferry.,215922295,Muneeb,Staten Island,Rosebank,40.61088,-74.07327,Entire home/apt,200,5,8,2019-06-05,1.00,1,244 +28609762,Sun Filled Oasis,135150441,Savannah,Brooklyn,Bedford-Stuyvesant,40.68987,-73.94484,Private room,80,4,1,2018-12-22,0.15,1,325 +28610567,Nice Clean Official Cozy Suite 2 In Brooklyn,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91181,Private room,65,3,17,2019-07-04,2.26,3,365 +28611271,Cozy Room in Steinway st. with a firescape view!,150439529,Marina,Queens,Astoria,40.76677,-73.91315,Private room,70,4,6,2019-05-26,0.68,1,63 +28611623,"Jazz, Harlem, Home :)",45835291,Shareef,Manhattan,Harlem,40.82253,-73.95525,Private room,53,8,37,2019-06-19,3.88,6,299 +28613110,Apt in Bronx near 6 train 20 min Manhattan or LGA.,215951448,Gulshan,Bronx,Soundview,40.8289,-73.86219,Entire home/apt,87,1,54,2019-07-04,5.61,1,326 +28613174,6MinTrainLivingRoomMaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65167,-74.00624,Private room,50,1,22,2019-06-21,2.28,4,169 +28614344,6MinTrainBackRoom/Maimonides-Lutheran industryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65135,-74.00487,Private room,55,1,18,2019-07-01,1.87,4,161 +28614707,"Artist's nest, in the heart of the East Village",20745804,Guy,Manhattan,East Village,40.72707,-73.9853,Entire home/apt,240,3,2,2018-11-26,0.24,1,0 +28615793,Private bedroom in 4 bedroom apt. in Tribeca,9299046,Frederik,Manhattan,Civic Center,40.71638,-74.00419,Private room,120,5,5,2019-06-24,0.60,1,25 +28616009,GREAT 3 BR Home Mins. From Manhattan !!!!!!!,215967566,Sunny,Queens,Jackson Heights,40.75091,-73.87818,Entire home/apt,225,2,38,2019-07-03,4.01,1,49 +28616435,^^SWEET DEAL in NYC^,89728139,Tanya,Manhattan,Harlem,40.82714,-73.93888,Private room,89,3,15,2019-06-01,1.56,1,179 +28616686,Newly Remodeled Room !!! downtown brooklyn,214694658,Damon,Brooklyn,Fort Greene,40.69439,-73.97319,Private room,65,1,90,2019-06-24,9.41,1,254 +28625897,"Near A/C/L/3 trains! Two comfy beds, good vibes.",97546900,Regina,Brooklyn,Brownsville,40.6676,-73.90954,Private room,75,2,33,2019-06-23,3.45,1,20 +28626448,Sunny penthouse studio in Brooklyn,14515065,Vanessa,Brooklyn,Bushwick,40.69845,-73.93609,Entire home/apt,108,1,79,2019-07-03,8.40,2,46 +28627156,Cozy Room near Manhattan NYC,202818204,Andres,Queens,Long Island City,40.74942,-73.93658,Private room,75,1,8,2019-05-11,0.82,1,3 +28627384,Times Square True NY Style Home With All Cultures!,216032427,Maneh,Manhattan,Hell's Kitchen,40.76357,-73.98906,Private room,150,2,31,2019-06-23,3.46,1,124 +28627947,Astoria Couples RM w/ Lovely Furniture. Own bath.,137358866,Kazuya,Queens,Astoria,40.76708,-73.92451,Private room,60,30,0,,,103,215 +28628675,A quiet and spacious haven in the Lower East Side,56750914,Elliot,Manhattan,East Village,40.72296,-73.98184,Private room,150,2,28,2019-06-25,2.97,1,0 +28631359,Brooklyn Apartment 2,202074215,Michael,Brooklyn,Bedford-Stuyvesant,40.6843,-73.91985,Entire home/apt,89,3,47,2019-06-24,4.88,2,23 +28631715,Williamsburg Home with a View,216061803,Joe,Brooklyn,Williamsburg,40.71672,-73.95484,Entire home/apt,180,2,3,2019-04-22,0.98,1,0 +28632449,Entire 2 Bedroom Apartment — Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74704,-73.97356,Entire home/apt,250,30,0,,,3,92 +28632837,Lovely RM in Astoria with great location.,137358866,Kazuya,Queens,Astoria,40.76655,-73.92463,Private room,51,30,0,,,103,216 +28633104,3rd FL Private 2BR apartment with dinning room,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93681,Entire home/apt,139,1,10,2019-02-27,1.05,9,7 +28634470,Beautiful Garden Apt in Prime Bushwick,25617559,Erin,Brooklyn,Bushwick,40.7042,-73.9259,Entire home/apt,89,4,6,2019-01-05,0.73,1,0 +28635035,Beautiful garden apartment,88111418,Micheline,Queens,St. Albans,40.69113,-73.75524,Entire home/apt,70,3,12,2019-06-20,1.31,1,323 +28635287,Brooklyn Studio Apartment,216086952,Troy,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9273,Entire home/apt,99,1,21,2019-06-30,2.23,1,87 +28635684,Room with Amazing View in Manhattan!,216090534,Sophie,Manhattan,Hell's Kitchen,40.76539,-73.99145,Private room,150,2,38,2019-06-23,4.15,2,243 +28635863,Fabulous West Village Modern Luxury,6332730,Nita,Manhattan,Greenwich Village,40.7348,-73.99785,Entire home/apt,400,90,0,,,1,365 +28636781,Clinton Hill Heavenly Haven - shared,697469,Grace,Brooklyn,Clinton Hill,40.69288,-73.96101,Private room,69,3,6,2019-04-21,0.62,1,174 +28637001,"Room with a View, Next to Times Square!",216090534,Sophie,Manhattan,Hell's Kitchen,40.76282,-73.98847,Private room,145,2,38,2019-06-21,4.25,2,256 +28637635,Room 3 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80731,-73.94516,Private room,53,30,0,,,6,198 +28637994,Spacious Room in Upper Manhattan,2605122,Jessica,Manhattan,Harlem,40.8072,-73.94513,Private room,55,28,3,2018-10-30,0.33,1,0 +28638855,Cute & Cozy Studio in the BEST part of BK,7505271,Simone,Brooklyn,Greenpoint,40.72586,-73.94466,Private room,99,1,8,2018-12-30,0.92,1,0 +28640338,Luxury Apartment/ Wall Street,56656728,Bret,Manhattan,Financial District,40.7112,-74.0094,Entire home/apt,209,1,51,2019-07-06,5.82,5,1 +28640741,Airy Brooklyn Artist's Loft,95415432,Molly,Brooklyn,Williamsburg,40.71621,-73.96407,Entire home/apt,280,4,0,,,1,43 +28641018,Heart of Astoria,214923987,Nadira,Queens,Ditmars Steinway,40.77643,-73.91156,Private room,55,4,19,2019-06-23,2.13,1,89 +28641288,TOWN HOME ONE,63953718,Chai,Queens,Elmhurst,40.73137,-73.87193,Private room,69,2,3,2018-11-15,0.33,1,0 +28642074,Cozy BX Corner,216136826,Shawn,Bronx,Wakefield,40.8878,-73.85372,Private room,47,2,13,2019-07-02,1.62,1,347 +28642335,Cozy/Clean/ Private Bedroom in Uptown Manhattan.,12672019,Elizabeth,Manhattan,Washington Heights,40.83766,-73.94045,Private room,65,5,23,2019-06-28,2.47,1,255 +28642660,Private furnished bedroom in Williamsburg,2871975,Padraig,Brooklyn,Williamsburg,40.70973,-73.96405,Private room,65,5,3,2019-06-30,0.74,1,31 +28642786,Excellent Loc best value Midtown studio/nearMacy’s,9698896,Sanyam,Manhattan,Midtown,40.74971,-73.98682,Entire home/apt,108,2,6,2019-05-29,0.62,1,0 +28643600,Waterfront condo with swimming pool,17486626,Alessandro,Brooklyn,Williamsburg,40.71953,-73.96401,Private room,70,2,14,2019-06-24,1.52,2,3 +28644822,Home of the artists,162974717,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95927,Private room,60,1,15,2019-05-22,1.62,1,0 +28646412,Astoria Queens. A Perfect Room to Stay in 3BR2BA,137358866,Kazuya,Queens,Astoria,40.768,-73.92388,Private room,45,30,0,,,103,246 +28647979,"Home For Medical Professionals - ""The Tesla""",26377263,Stat,Brooklyn,East Flatbush,40.65246,-73.93791,Private room,57,30,0,,,43,138 +28652436,"Large bedroom in Sunny 2-Bed, 1-Bath",15105613,Elizabeth,Manhattan,Upper East Side,40.77713,-73.95096,Private room,70,30,1,2018-12-09,0.14,1,236 +28654606,Warm Duplex Townhouse,191849342,Joseph,Brooklyn,Crown Heights,40.67177,-73.95334,Entire home/apt,500,4,9,2019-06-22,1.32,1,247 +28655675,Williamsburg 1 Private Queen Bedroom and Bathroom,20990306,Elizabeth,Brooklyn,Williamsburg,40.71257,-73.94946,Private room,95,2,32,2019-06-19,3.38,2,1 +28656163,Celebrity Home Artistic Master Bdrm,213816392,DuChess,Queens,Queens Village,40.70649,-73.74517,Private room,41,1,24,2019-06-28,2.47,3,351 +28656606,UWS 1 bedroom near everything,3606458,Mathew,Manhattan,Upper West Side,40.79517,-73.97392,Entire home/apt,300,1,0,,,2,358 +28657242,Charming and spacious duplex in classic brownstone,137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68161,-73.93811,Entire home/apt,140,28,0,,,4,173 +28658564,Perfectly located UWS - Cool Clean studio,196211856,Tarun,Manhattan,Upper West Side,40.77771,-73.98023,Entire home/apt,145,5,4,2019-05-05,0.53,1,0 +28658731,Gorgeous Bedroom in the heart of Bushwick Him-2L-1,216235179,Nina,Brooklyn,Bushwick,40.69952,-73.91868,Private room,55,30,1,2019-05-04,0.45,17,342 +28659172,Spacious/comfortable/detailed/eclectic apartment,23871497,Jay,Queens,Jackson Heights,40.75154,-73.8907,Entire home/apt,95,3,12,2019-07-01,1.31,1,31 +28659175,Spacious Private Bedroom in the heart of Bushwick!,216235179,Nina,Brooklyn,Bushwick,40.69933,-73.92079,Private room,50,30,0,,,17,327 +28659894,Private bedroom in prime Bushwick! Near Trains!!!,216235179,Nina,Brooklyn,Bushwick,40.69988,-73.92072,Private room,55,30,4,2019-04-12,0.58,17,358 +28660068,Gorgeous Bedroom in the heart of Bushwick Him-2R-3,216235179,Nina,Brooklyn,Bushwick,40.70011,-73.92043,Private room,55,30,0,,,17,336 +28660257,Gorgeous Bedroom in the heart of Bushwick Him-3R-3,216235179,Nina,Brooklyn,Bushwick,40.70161,-73.91922,Private room,50,30,1,2019-07-01,1,17,184 +28660377,Gorgeous Bedroom in the heart of Bushwick Him-2R-1,216235179,Nina,Brooklyn,Bushwick,40.69938,-73.91953,Private room,55,30,1,2018-12-21,0.15,17,339 +28661274,Incredible Brookly Room!,205234874,Petera,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94341,Private room,60,2,19,2019-05-03,2.14,2,251 +28661332,Gorgeous Bedroom in the heart of Bushwick Him-3R-1,216235179,Nina,Brooklyn,Bushwick,40.70026,-73.92026,Private room,50,30,0,,,17,315 +28661542,Gorgeous Bedroom in the heart of Bushwick Him-2R-2,216235179,Nina,Brooklyn,Bushwick,40.70126,-73.92077,Private room,55,35,2,2019-03-29,0.30,17,365 +28661704,Gorgeous Bedroom in the heart of Bushwick Him-3R-2,216235179,Nina,Brooklyn,Bushwick,40.70082,-73.91859,Private room,50,30,2,2019-06-30,0.47,17,319 +28661866,Gorgeous Bedroom in the heart of Bushwick Him-3R-4,216235179,Nina,Brooklyn,Bushwick,40.70124,-73.92013,Private room,50,30,0,,,17,131 +28662351,Large Room in Manhattan Steps to Subway,51413809,Erik,Manhattan,East Harlem,40.79933,-73.94283,Private room,59,1,29,2019-06-15,2.99,1,247 +28663593,WILLIAMSBURG LUXURY BUILDING (BEST LOCATION),216091157,Sofia,Brooklyn,Greenpoint,40.72108,-73.95215,Entire home/apt,200,5,5,2018-12-09,0.52,1,0 +28666327,Cozy loft private bathroom,216287451,Marcela,Brooklyn,Bushwick,40.69038,-73.91909,Private room,85,1,1,2018-11-11,0.12,1,177 +28666578,Large Cozy Bedroom 10 mins from Times Sq. 33C3,190921808,John,Manhattan,Hell's Kitchen,40.75584,-73.99559,Private room,120,7,4,2019-04-16,0.44,47,365 +28667225,A Good Night Sleep,115545139,Sixta,Brooklyn,East New York,40.65894,-73.89343,Private room,39,2,54,2019-06-26,5.63,2,60 +28667823,Private Room in Authentic Luxury Loft,4440548,Thomas,Brooklyn,Williamsburg,40.71526,-73.9469,Private room,65,3,6,2019-04-28,0.65,2,88 +28667969,Lola’s Haven,216299753,Omoti,Brooklyn,Canarsie,40.63284,-73.91149,Private room,80,2,11,2019-02-08,1.15,1,5 +28668546,Brooklyn House at 443 Linden Room 1,216304678,Bryan,Brooklyn,East Flatbush,40.65409,-73.94214,Private room,46,3,13,2019-06-08,1.41,5,341 +28668879,Lefferts Garden! Real Brooklyn flavor!,330123,Nicole And Adrian,Brooklyn,Flatbush,40.65458,-73.95677,Entire home/apt,80,5,3,2018-10-25,0.33,1,0 +28669168,Cozy Room in the Center of Manhattan!,214037223,Monze,Manhattan,Kips Bay,40.74256,-73.97912,Private room,135,2,35,2019-06-14,3.79,3,267 +28670390,"Home For Medical Professionals - ""The Abducens""",26377263,Stat,Brooklyn,East Flatbush,40.65351,-73.93768,Private room,57,30,0,,,43,311 +28670432,X 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.64036,-74.00822,Private room,26,1,13,2019-04-12,1.36,5,141 +28671481,Best Location x Sparkling Clean x Private Studio,26769462,Brenda,Manhattan,Midtown,40.74894,-73.98673,Entire home/apt,170,5,28,2019-06-01,3.13,1,0 +28671495,"Home For Medical Professionals - ""The Xenon""",26377263,Stat,Brooklyn,East Flatbush,40.65245,-73.93752,Private room,53,30,0,,,43,346 +28671992,Cozy Bedroom with Private Bath,205132904,Farah,Staten Island,Tompkinsville,40.63311,-74.07936,Private room,55,2,48,2019-07-02,4.97,2,302 +28672201,The Groundhog Inn. Entire Apt Near Subway Vegan,96076215,Mike,Brooklyn,Bushwick,40.69986,-73.92095,Entire home/apt,105,1,58,2019-05-01,6.02,1,0 +28680502,Spacious clean private bedroom,169396379,Mehdi,Brooklyn,Flatbush,40.65417,-73.95524,Private room,95,1,12,2019-06-15,1.30,1,179 +28680576,Cozy Room With Big Comfortable Bed!,216375039,Tosin/Rashon,Manhattan,East Harlem,40.79368,-73.93492,Private room,95,1,43,2019-06-01,4.46,1,0 +28680995,Brooklyn House,208610094,Eufemia,Brooklyn,Flatlands,40.62908,-73.92265,Private room,40,1,38,2019-07-01,3.93,1,365 +28681181,Clinton Hill/Bedstuy Brooklyn stylish and artsy,8859112,Navin,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95183,Entire home/apt,100,2,27,2019-07-05,2.79,2,255 +28682647,Private room in Bushwick Brooklyn,216392786,Kaz,Brooklyn,Bushwick,40.6982,-73.93034,Private room,60,2,21,2019-05-28,2.31,1,57 +28684892,Sweet Tribeca Studio w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71618,-74.00608,Entire home/apt,282,30,0,,,232,244 +28687609,Studio Apartment with Bridge and River Views,11160056,Selena,Manhattan,Two Bridges,40.71079,-73.99304,Entire home/apt,135,2,4,2019-03-01,0.41,1,0 +28688612,Upper west side room,133762456,Gloria,Manhattan,Upper West Side,40.78588,-73.97117,Private room,200,4,0,,,1,365 +28689388,Huge 1 BR APT in Heart of Astoria,9808087,Emil,Queens,Ditmars Steinway,40.77379,-73.91875,Entire home/apt,95,3,13,2019-06-24,1.39,1,0 +28689514,Brooklyn Heart,216437098,Trevor,Brooklyn,Bedford-Stuyvesant,40.68392,-73.92123,Entire home/apt,110,2,9,2019-03-18,0.96,2,41 +28690074,Spacious Cozy Private Room close to Central Park,214135354,Min,Manhattan,Upper East Side,40.77601,-73.95114,Private room,90,1,75,2019-06-30,7.76,2,283 +28690364,En-suite room with PRIVATE bathroom,120767920,Jimmy &Cindy,Queens,Flushing,40.75548,-73.81372,Private room,53,2,24,2019-07-07,2.61,10,359 +28690371,"420 friendly rm,lots of sunlight great for couples",75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68166,-73.91625,Private room,85,12,4,2019-03-23,0.42,4,365 +28692213,"One bedroom, with huge backyard for personal space",195262476,Eleonora,Queens,Ditmars Steinway,40.77671,-73.90543,Entire home/apt,100,1,9,2019-03-17,1.03,1,2 +28692232,Luxury Affordable comfort in the Bronx-Suite 3!,216456504,Annick,Bronx,Wakefield,40.89399,-73.84279,Private room,65,1,52,2019-06-28,5.40,3,363 +28692626,"Pvt 1 full bed 10 min from JFK, close to Manhattan",23370431,Melissa,Queens,Hollis,40.71694,-73.75656,Private room,55,2,16,2019-06-19,1.71,2,178 +28692911,Private One Bedroom Apartment,12166742,Yizak,Brooklyn,Flatlands,40.62515,-73.94409,Entire home/apt,85,1,21,2019-07-05,2.26,1,82 +28693418,Traveler's Rest,64673584,Jacob,Manhattan,Upper West Side,40.78285,-73.97487,Entire home/apt,200,7,5,2019-06-23,0.53,1,1 +28694075,Greenpoint 2BR,4654272,Cooper,Brooklyn,Greenpoint,40.72891,-73.95345,Entire home/apt,225,2,37,2019-06-29,3.84,1,229 +28695405,Luxury apartment. ONE STOP from midtown MANHATTAN!,215535399,Smith,Queens,Long Island City,40.75188,-73.94548,Private room,95,3,1,2018-10-08,0.11,1,24 +28696741,Exclusive Modern Penthouse Apartment,48483287,Bronica,Manhattan,East Harlem,40.80655,-73.93872,Entire home/apt,175,1,7,2018-12-26,0.76,1,0 +28697632,Spacious and clean 1BR apt. in Uptown Manhattan,216492330,Michael,Manhattan,Washington Heights,40.85428,-73.93204,Entire home/apt,189,3,8,2019-05-05,0.88,1,358 +28697997,"Home For Medical Professionals - ""The Fossa""",26377263,Stat,Brooklyn,East Flatbush,40.65438,-73.93676,Private room,53,30,1,2019-06-29,1,43,304 +28699232,"Home For Medical Professionals - ""The Gamma""",26377263,Stat,Brooklyn,East Flatbush,40.65279,-73.93817,Private room,57,30,0,,,43,283 +28699654,"Home For Medical Professionals - ""The Kinetic""",26377263,Stat,Brooklyn,East Flatbush,40.65429,-73.93601,Private room,57,30,0,,,43,306 +28699887,Brooklyn Home,44338944,Ethan,Brooklyn,Sunset Park,40.64349,-74.02347,Entire home/apt,80,14,2,2019-05-31,0.24,1,184 +28701957,"Midtown West, very cozy place with your own room, prime location.",216519008,Sam,Manhattan,Hell's Kitchen,40.76382,-73.98902,Private room,97,3,8,2019-06-05,0.86,2,10 +28703204,"Multi unit building , cozy room. Ny",216519008,Sam,Manhattan,West Village,40.7404,-74.00497,Private room,79,3,2,2019-05-17,0.23,2,0 +28709382,Huge bedroom with private half bath prime location,22992959,Eric,Brooklyn,Bushwick,40.70012,-73.92777,Private room,80,2,3,2019-01-03,0.33,1,0 +28711718,Harlem apartment,57430885,Diana,Manhattan,Harlem,40.81574,-73.94212,Private room,39,10,1,2019-01-08,0.16,1,0 +28711792,East Village Cottage Life,865148,Eliza,Manhattan,East Village,40.72939,-73.98007,Private room,85,2,26,2019-07-05,3.07,1,165 +28713390,Private Open Space,216586341,Joe,Brooklyn,Crown Heights,40.67172,-73.95031,Entire home/apt,50,3,3,2018-11-07,0.33,1,0 +28713500,San Carlos Hotel Deluxe Room- up to 3,173685298,Janet,Manhattan,Midtown,40.75499,-73.97121,Private room,330,1,4,2019-02-17,0.48,11,176 +28715201,Simple Spacious RM near Queens Center Mall & NYPD,137358866,Kazuya,Queens,Elmhurst,40.74432,-73.87123,Private room,37,30,1,2019-03-10,0.25,103,252 +28715332,TRIBECA/SOHO 2 BEDROOM LUXURY LOFT,122323589,Roberto,Manhattan,Tribeca,40.71979,-74.00407,Entire home/apt,799,3,6,2019-04-22,0.66,1,325 +28715589,Cozy Loft Apartment - Convenient Location!,38579823,Diane,Manhattan,Chelsea,40.75064,-73.99536,Entire home/apt,150,1,12,2018-12-17,1.29,1,0 +28715862,Bright & Peaceful Brooklyn Abode!,202950759,Christiana,Brooklyn,Crown Heights,40.6716,-73.9564,Entire home/apt,195,2,37,2019-07-03,4.04,1,199 +28716187,Home away from home,216611306,Eme,Queens,Briarwood,40.71378,-73.80796,Private room,50,1,13,2019-04-08,1.46,1,0 +28717231,PRIVATE BATH • AC • Yard • Historic Brownstone,16064187,Michael And Lindsey,Brooklyn,Crown Heights,40.67326,-73.95503,Private room,100,2,18,2019-06-21,2.07,1,61 +28718446,Modern East Village Apartment off Bowery,9155419,Frans,Manhattan,East Village,40.72615,-73.98905,Private room,140,2,5,2019-05-19,0.55,1,149 +28718812,One bed room apartment,214610799,Antonio,Manhattan,East Harlem,40.79695,-73.9356,Entire home/apt,275,2,2,2018-09-29,0.21,1,7 +28719635,Beautiful house with a beautiful room and more,96978924,Ree,Brooklyn,East Flatbush,40.63575,-73.94235,Entire home/apt,85,1,5,2019-01-01,0.55,1,124 +28720687,"BP DORM STYLE SHARED ROOM, BIG BEAUTIFUL HOME+WIFI",213208277,Darry,Brooklyn,Borough Park,40.64214,-73.99237,Shared room,31,5,7,2019-06-29,0.78,8,365 +28721018,Brooklyn Sunny room 5 min to subway,174261493,Sophie & Max,Brooklyn,Sheepshead Bay,40.61051,-73.95508,Private room,99,2,10,2019-06-02,1.05,2,0 +28721911,Crash pad,156505456,John,Brooklyn,East New York,40.66704,-73.87525,Private room,117,3,4,2019-03-17,0.43,13,85 +28722807,Bright and Spacious Loft in Brooklyn,3017533,Briana,Brooklyn,Sunset Park,40.6642,-73.99338,Entire home/apt,160,2,51,2019-07-05,5.39,1,15 +28722897,Charming Shared Place in East Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79912,-73.94202,Shared room,65,2,33,2019-05-24,3.44,9,10 +28730126,Beautiful Apartment in West Village,13092234,Andrew,Manhattan,West Village,40.73113,-74.00831,Private room,295,6,0,,,1,0 +28730167,Quite place by the park,25326,Gregory,Brooklyn,Windsor Terrace,40.65777,-73.97487,Entire home/apt,105,1,15,2019-06-07,1.56,2,269 +28730408,Brooklyn Carriage House,171433016,Vikki,Brooklyn,Clinton Hill,40.68633,-73.96539,Entire home/apt,225,2,29,2019-06-16,3.14,1,36 +28730581,NEAR 5th AVE RENOVATED STUDIO IN BROOKLYN,188212054,Joanna,Brooklyn,Bay Ridge,40.62165,-74.02336,Entire home/apt,245,3,18,2019-06-10,1.94,2,255 +28731208,"Lovely, Spacious Cottage in Ditmas Park",2260289,Matt & Quin,Brooklyn,Flatbush,40.63882,-73.96563,Entire home/apt,185,5,2,2018-11-23,0.26,1,33 +28732998,Quintessential Tribeca Loft,3612407,Mag,Manhattan,Tribeca,40.7172,-74.00675,Entire home/apt,295,3,3,2018-12-08,0.33,1,17 +28733777,"Clean, quiet space in Upper East Side",214119114,Lagane,Manhattan,East Harlem,40.78781,-73.94549,Private room,75,3,0,,,1,0 +28734234,Cozy 4BDR Unit in Greenpoint mins to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.7256,-73.95698,Entire home/apt,480,1,8,2019-06-30,3.24,4,63 +28734328,Comfortable and Bright 1 Bedroom Apartment,216738447,Emily,Brooklyn,Bedford-Stuyvesant,40.68528,-73.95217,Entire home/apt,190,2,3,2018-11-24,0.33,1,88 +28734438,New York Chelsea Apartment,545355,Kevin,Manhattan,Chelsea,40.74497,-74.00571,Entire home/apt,225,3,2,2019-01-01,0.26,1,0 +28734646,Cosy Williamsburg Apartment in Brooklyn New York,1104166,Mala,Brooklyn,Williamsburg,40.71223,-73.9524,Entire home/apt,325,5,0,,,4,0 +28734774,Spacious private room in the heart of Bed-Stuy,6520550,Ina,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93841,Private room,59,2,8,2019-06-26,0.84,1,45 +28734815,Brand New Modern 1+2 Apt,57294304,Ekin,Manhattan,Hell's Kitchen,40.76464,-73.98737,Entire home/apt,250,1,0,,,1,0 +28735958,Modern Luxury Apartment with Washer & Dryer,2207585,David,Manhattan,Financial District,40.70565,-74.00666,Entire home/apt,139,20,0,,,1,0 +28736148,Cozy 1 Bedroom Apt in Hamilton Heights,43431867,Tommy,Manhattan,Washington Heights,40.83256,-73.9444,Entire home/apt,96,4,0,,,1,17 +28736269,Bright room - Williamsburg Lorimer Stop L train!,1104166,Mala,Brooklyn,Williamsburg,40.71304,-73.95235,Private room,60,2,23,2019-06-16,2.46,4,60 +28736839,"Gorgeous Harlem loft w/15 ft ceilings, sleeps 10",3251620,S,Manhattan,Harlem,40.81148,-73.9514,Entire home/apt,300,1,1,2018-10-10,0.11,1,0 +28736904,Modem 2 bedroom in Times sq for 5ppl,4443863,Lica,Manhattan,Hell's Kitchen,40.76419,-73.98949,Entire home/apt,325,1,59,2019-06-29,6.48,1,180 +28737665,Beautiful NYC loft 10min walk from Central Park,216764638,Bo,Manhattan,East Harlem,40.79145,-73.93962,Private room,100,3,22,2019-07-01,3.42,1,23 +28737860,Luxury Oasis in SoHo,333712,Rose,Manhattan,SoHo,40.72205,-74.00121,Entire home/apt,355,4,5,2019-06-08,0.64,1,31 +28738642,4th Floor en-suite Bath Room,216772639,Ling,Brooklyn,Borough Park,40.63378,-74.00599,Private room,60,1,7,2019-06-04,0.76,7,179 +28739729,Brand New Renovated Shared Room In Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79983,-73.94116,Shared room,65,2,27,2019-05-25,2.80,9,11 +28739873,Arverne Bayside,195887266,Antonia,Queens,Arverne,40.59843,-73.79844,Entire home/apt,100,1,12,2019-05-30,2.29,1,65 +28740981,"Chic, light-filled Sugar Hill 1 bedroom",2225836,Jennifer,Manhattan,Harlem,40.82608,-73.94231,Entire home/apt,99,2,12,2019-06-12,1.38,1,6 +28741369,Cozy Renovated New Apt with Private Bathroom,216772639,Ling,Brooklyn,Borough Park,40.63549,-74.00553,Private room,65,1,16,2019-06-11,1.73,7,180 +28741548,Enjoyable Newly Renovated Private Room,216772639,Ling,Brooklyn,Borough Park,40.63424,-74.00556,Private room,58,1,12,2019-06-21,1.30,7,364 +28743080,"Clean, Cozy & Charming Shared Room in Manhattan",69494967,Gem,Manhattan,Midtown,40.75729,-73.96807,Shared room,75,1,18,2019-06-14,1.97,1,52 +28750104,Awesome 1BR in 2 room located in heart of Bushwick,109004750,JayJay,Brooklyn,Bushwick,40.69582,-73.9095,Private room,40,1,0,,,1,364 +28751375,Cozy Room in Brooklyn- Sunset Park,211353692,Josie,Brooklyn,Sunset Park,40.64634,-74.01419,Private room,50,2,8,2019-02-08,0.86,2,0 +28751496,"2-BR Apt 25min from TIMES SQUARE, Near Shops!",36391065,Vance,Queens,Astoria,40.75975,-73.91992,Entire home/apt,50,2,4,2019-06-03,0.46,1,20 +28751660,Alcove Studio 10 mins walk to Times Square,84720132,Nidhi,Manhattan,Hell's Kitchen,40.76591,-73.99493,Entire home/apt,300,4,4,2019-05-11,0.44,1,5 +28751912,Private Room in Brooklyn,211353692,Josie,Brooklyn,Sunset Park,40.64682,-74.01515,Private room,80,2,1,2019-01-02,0.16,2,65 +28752251,Sun-filled Apartment in Great Location,9165739,Jesse,Manhattan,Chelsea,40.74184,-74.00108,Private room,91,1,10,2019-06-30,1.09,1,0 +28754650,NYC Chelsea,216891728,Sonia,Manhattan,Chelsea,40.7458,-73.9957,Entire home/apt,140,32,29,2019-07-02,3.94,1,2 +28755241,New York Apt -Subway 5 min & Supermarket 1 min,37708037,Daniela,Manhattan,Financial District,40.70815,-74.00438,Entire home/apt,199,3,5,2019-06-08,0.66,1,37 +28756175,Huge Sunny Private Bedroom & Private Bathroom - BK,27186438,Kaylee,Brooklyn,East Flatbush,40.65345,-73.94881,Private room,43,6,2,2019-01-04,0.22,1,311 +28757780,New York City Private one bedroom and shared bath,216917414,Ramon,Manhattan,Washington Heights,40.85104,-73.93979,Private room,60,2,12,2018-12-12,1.34,2,0 +28757927,Astoria escape,64898741,Pete,Queens,Long Island City,40.75771,-73.93143,Private room,200,2,6,2019-05-22,0.69,2,90 +28758083,TJ Room,123145309,Akshay,Manhattan,Morningside Heights,40.81623,-73.96103,Private room,50,1,2,2018-10-08,0.22,1,0 +28759034,Large quiet private studio in East Harlem,196536266,Saki,Manhattan,East Harlem,40.80141,-73.93814,Entire home/apt,75,7,3,2018-11-23,0.32,1,161 +28759953,SoHo 1BR Apartment,38042569,Michael,Manhattan,SoHo,40.72301,-74.0049,Entire home/apt,150,7,1,2018-10-26,0.12,1,0 +28760070,Great one bedroom studio,7365834,Alex,Brooklyn,Sheepshead Bay,40.58296,-73.95879,Entire home/apt,99,30,1,2018-10-07,0.11,5,365 +28760189,Cozy Happy Place in Brooklyn 1 block from Subway,3094662,Fernanda,Brooklyn,Fort Hamilton,40.62288,-74.03082,Private room,90,3,12,2019-06-19,1.30,1,63 +28761069,Queen Sized Bdrm in Historic Harlem (Townhouse),92185816,Fiona,Manhattan,Harlem,40.80774,-73.94939,Private room,62,10,4,2019-06-20,0.48,3,345 +28761735,New york Multi-unit building,65827591,Nubia,Queens,Maspeth,40.73616,-73.89926,Shared room,55,1,0,,,3,47 +28762085,Private room! nice apartment near yankee stadium,202976102,Jayceon,Bronx,Concourse Village,40.83413,-73.91669,Private room,35,1,15,2019-06-25,3.88,1,70 +28762323,Gorgeous Spacious Duplex Apartment in Brooklyn,2300366,Yosub,Brooklyn,Williamsburg,40.70761,-73.9424,Entire home/apt,105,2,1,2018-10-04,0.11,2,3 +28763093,"Cozy, lux studio in prime NYC with amazing view",27815282,Milan,Manhattan,Theater District,40.76226,-73.98537,Entire home/apt,175,3,5,2019-06-14,0.58,1,83 +28763578,5min walk to L train - Free WiFi & Cleaning,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.7001,-73.91219,Private room,38,30,0,,,9,7 +28764308,Cute private room in the heart of Soho,69720852,Yana,Manhattan,SoHo,40.72004,-73.99862,Private room,100,5,7,2019-06-15,0.77,3,16 +28770601,Cozy Brooklyn 2 Bedroom for your BUDGET!,40892524,Bea,Brooklyn,Crown Heights,40.676,-73.92283,Entire home/apt,76,1,25,2019-06-03,3.10,1,287 +28773549,Elegant 2bdrm home in Midtown!,97417890,Angela,Manhattan,Midtown,40.74223,-73.98286,Entire home/apt,299,1,32,2019-07-07,4.40,2,264 +28775021,Industrial apartment in the heart of Bushwick,3180546,Monica,Brooklyn,Bushwick,40.69943,-73.93292,Entire home/apt,150,3,3,2018-12-07,0.39,1,0 +28775714,Cute apartment in Long Island City,9599815,Patricia Rose,Queens,Long Island City,40.74511,-73.95293,Entire home/apt,80,4,11,2019-06-03,1.25,1,24 +28777497,Gorgeous Cozy Brooklyn apartment suite,99133678,Chelsea,Queens,Ridgewood,40.7092,-73.91246,Private room,25,1,0,,,1,0 +28777968,PRIVATE BEDROOM and BATHROOM crown heights Aprtmnt,47180541,Natassha,Brooklyn,Crown Heights,40.6752,-73.94829,Private room,80,1,25,2019-06-01,2.73,1,11 +28778214,Beautiful Studio Apartment in East Harlem,148152874,Andrew,Manhattan,East Harlem,40.80046,-73.93677,Entire home/apt,59,4,9,2019-06-03,1.02,1,0 +28778379,Luxury 2 beds with 2 full baths and skyline view,32631901,Papis,Brooklyn,Williamsburg,40.71255,-73.9405,Entire home/apt,250,2,7,2019-05-19,0.76,1,2 +28778501,Big Room/Basement on three bedroom apt,13642781,Carlos A.,Brooklyn,Williamsburg,40.71259,-73.94163,Private room,100,1,1,2018-09-25,0.10,1,0 +28779020,Artist tenement apartment in NOLITA/Little Italy,866089,Launa,Manhattan,Little Italy,40.71862,-73.99677,Private room,115,5,3,2019-04-02,0.32,3,67 +28779353,A Sunny Room w/Private Bath. 20 m to Mnhttn,128300825,Anton,Brooklyn,Bedford-Stuyvesant,40.69276,-73.92966,Private room,70,2,53,2019-06-16,5.60,2,32 +28779428,3Bedroom+1.5bath Loft apartment,211549023,Studioplus,Manhattan,Midtown,40.74823,-73.98697,Entire home/apt,500,2,14,2019-06-17,2.07,13,272 +28779900,Brooklyn House at 443 linden Bedroom 2,216304678,Bryan,Brooklyn,East Flatbush,40.65267,-73.94293,Private room,46,3,10,2019-06-28,1.05,5,311 +28780407,"BRIGHT! Huge,Beautiful&Quiet Fort Greene (BK) Apt",1976287,Patrick,Brooklyn,Fort Greene,40.69178,-73.97345,Entire home/apt,145,3,5,2019-03-25,0.55,1,0 +28780515,2 bedrooms available• private garden • 2/5 train,5166260,Jenni & Eric,Brooklyn,East Flatbush,40.65241,-73.95088,Private room,80,2,51,2019-06-24,5.50,1,34 +28781373,Spacious & Sunny Brooklyn Home,5188470,Zoe,Brooklyn,Flatbush,40.6437,-73.95973,Entire home/apt,65,4,11,2019-07-07,1.46,1,19 +28782669,Encuentra la tranquilidad ideal,216411482,Adriana,Queens,East Elmhurst,40.76349,-73.88662,Private room,40,2,21,2019-06-27,2.27,1,30 +28784880,*PRIVATE* Loft 5 minutes away from LaGuardia,65671256,Freddy,Queens,Jackson Heights,40.75703,-73.85827,Entire home/apt,72,1,70,2019-06-24,7.42,3,98 +28785091,Brooklyn House at 443 Linden - Room 5,216304678,Bryan,Brooklyn,East Flatbush,40.65293,-73.9435,Private room,100,3,1,2018-12-04,0.14,5,305 +28785322,Beautiful and Convenient Location in Lower NYC,140983856,Nini,Manhattan,Financial District,40.71064,-74.00754,Entire home/apt,185,15,11,2019-05-29,1.23,2,331 +28785361,Large 2BED UN Location Full Kitchen Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75283,-73.96736,Entire home/apt,370,3,9,2019-05-15,0.96,8,316 +28786315,Brooklyn House at 443 Linden Room 3,216304678,Bryan,Brooklyn,East Flatbush,40.65285,-73.943,Private room,60,3,11,2019-05-18,1.17,5,347 +28786900,Brooklyn House at 443 linden Bedroom 4,216304678,Bryan,Brooklyn,East Flatbush,40.65256,-73.94185,Private room,70,3,2,2018-12-27,0.24,5,267 +28787365,1Cozy bedsty room,144204336,Jason,Brooklyn,Bedford-Stuyvesant,40.69336,-73.93857,Private room,53,2,18,2019-06-24,2.49,2,333 +28787471,Bed stuy duplex close to train,10838658,Karina,Brooklyn,Bedford-Stuyvesant,40.67644,-73.91078,Entire home/apt,110,2,7,2019-06-19,0.82,1,7 +28787488,1Delightful room in bedsty,144204336,Jason,Brooklyn,Bedford-Stuyvesant,40.69272,-73.93807,Private room,53,2,24,2019-05-21,2.93,2,337 +28790081,HUGE 3 BDR Apt & 2 Baths ✴EAST VILLAGE✴,17814794,Hanna,Manhattan,East Village,40.72615,-73.98477,Entire home/apt,59,2,17,2019-07-01,5.05,1,79 +28790940,East Village - Two twin beds,217154594,Ryan,Manhattan,East Village,40.73046,-73.98589,Private room,79,5,8,2019-04-28,0.85,1,51 +28794872,2 bedroom Corner unit overlooking the park,114022893,Christine,Brooklyn,Sunset Park,40.64907,-74.00579,Entire home/apt,150,4,22,2019-06-08,2.44,1,123 +28799008,"Lovely, bright 2BR Apt in Crown Heights",116538157,Kate,Brooklyn,Crown Heights,40.67132,-73.95235,Entire home/apt,200,2,22,2019-07-06,3.44,1,20 +28801345,Cozy Chic Bedroom in the Heart of West Village,1015883,Katie,Manhattan,West Village,40.73106,-74.00301,Private room,125,1,7,2019-05-22,0.83,1,156 +28801976,Modern renovated Loft in the Heart of Williamsburg,1171704,Vanessa,Brooklyn,Williamsburg,40.70475,-73.93522,Entire home/apt,200,2,16,2019-06-23,1.99,1,136 +28802019,Modern Manhattan Brownstone -1 Block to Subway,217221109,Rich,Manhattan,Harlem,40.80839,-73.94375,Entire home/apt,200,1,40,2019-07-02,4.88,1,274 +28803718,Art Filled Private Room,62776991,Cem,Brooklyn,Sunset Park,40.66323,-73.99573,Private room,60,5,3,2019-05-10,0.47,1,0 +28805003,"Micro-Studio in Hells Kitchen, Shared Bath",198861577,Novo,Manhattan,Hell's Kitchen,40.76021,-73.99197,Private room,69,30,0,,,5,0 +28805245,Just Peachy: East Village. Come home already!,217251565,Just,Manhattan,East Village,40.7237,-73.98514,Private room,125,1,25,2019-06-30,2.68,1,68 +28805290,Private room in Williamsburg loft,217251106,Janine,Brooklyn,Williamsburg,40.71242,-73.95919,Private room,70,4,1,2019-02-15,0.21,1,156 +28807852,Downtown in NOHO a block from broome street.,217268929,Bella,Manhattan,SoHo,40.72458,-74.00312,Private room,100,3,3,2018-10-27,0.33,1,363 +28807969,"Exceptionally Cute, Cozy East Village Unit",204622039,Raymond,Manhattan,East Village,40.72443,-73.98406,Entire home/apt,359,2,19,2019-06-16,2.06,1,252 +28810799,Spacious Comfy livingroom Lounge spot in BronxHome,217290804,Robert,Bronx,Morris Park,40.85661,-73.85281,Shared room,40,1,2,2018-10-29,0.23,1,88 +28811035,New York House,217293060,Mohan,Manhattan,Greenwich Village,40.73278,-73.99712,Entire home/apt,175,90,0,,,4,311 +28811363,Warm little oasis in Brooklyn with Full size bed,42561290,Carla,Brooklyn,East New York,40.66197,-73.86794,Private room,30,2,3,2019-02-01,0.46,4,158 +28812604,"Street-view room near Union Square, Greenwich Vilg",4915341,Son,Manhattan,Greenwich Village,40.73596,-73.99614,Private room,120,30,3,2018-11-30,0.37,3,119 +28812837,Charming Mid Century One Bedroom,21376165,Ellis,Brooklyn,Flatbush,40.63867,-73.96571,Entire home/apt,95,6,1,2018-10-28,0.12,1,0 +28813184,Tranquil East Village 1 Bedroom,18602194,Carolyn,Manhattan,East Village,40.72984,-73.98588,Entire home/apt,125,3,2,2019-01-01,0.27,1,45 +28815052,Quaint West Village Hideaway,217321404,Sophia,Manhattan,West Village,40.73953,-74.0049,Entire home/apt,225,3,15,2019-05-16,1.72,1,6 +28815149,"Charming Bk Crash Pad, relax & unwind with ease",1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93236,Private room,57,1,13,2019-05-26,2.22,3,16 +28816767,THE CREATIVE CAVE BY CONEY ISLAND,217332035,Rose,Brooklyn,Sheepshead Bay,40.59063,-73.94588,Private room,37,1,1,2018-10-07,0.11,2,364 +28816970,Amazing Studio in the heart of East Village,76610380,Ana,Manhattan,East Village,40.72925,-73.98459,Entire home/apt,150,3,12,2019-06-22,1.26,1,0 +28817246,"Sweet, Small Brooklyn Room!",205268444,Jordan,Brooklyn,Bedford-Stuyvesant,40.69334,-73.93849,Private room,36,2,1,2018-11-18,0.13,1,0 +28817364,Cozy Spacious Studio 15 mins -Time Square,107516522,Jaime,Queens,Woodside,40.74451,-73.91106,Entire home/apt,115,2,34,2019-06-20,3.72,1,81 +28820641,Located in the perfect neighborhood of NYC a gem,130562125,Emma,Manhattan,SoHo,40.72608,-74.00336,Entire home/apt,350,2,32,2019-07-01,3.42,1,284 +28826608,“For Heaven Cakes”,217379941,Brent,Queens,Springfield Gardens,40.66457,-73.76918,Entire home/apt,75,1,132,2019-07-05,15.78,1,28 +28830379,The Best apartment in NYC for the Best guest!,174263749,Shopper,Manhattan,Washington Heights,40.84358,-73.94051,Private room,155,4,0,,,3,90 +28831635,NYC Apartment - Upper East Side True 1 Bedroom,46641887,Zachary,Manhattan,Upper East Side,40.76831,-73.95629,Private room,149,10,2,2018-10-30,0.23,1,40 +28832811,"Spacious Room in a Historic, Beautiful Apartment",15148834,Rafic,Manhattan,Chelsea,40.74413,-74.00004,Private room,90,3,4,2019-06-28,0.43,1,0 +28833210,Bright Room 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.63867,-74.00681,Private room,29,1,12,2019-04-03,1.37,5,66 +28833297,"HUGE SPACE, HEART OF BROOKLYN, 1 BLOCK FROM SUBWAY",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.69012,-73.95433,Private room,200,1,73,2019-07-02,7.99,3,65 +28833410,Bright two bedroom apartment in Soho,40394752,Vanya,Manhattan,SoHo,40.72277,-74.00464,Entire home/apt,275,5,6,2019-06-25,0.71,2,9 +28834703,Beautiful Brooklyn Brownstone Entire Parlor Floor.,217432173,Dan,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94354,Entire home/apt,130,2,48,2019-06-27,5.12,1,267 +28835184,Bronx Apartment,217439132,Rosalyn,Bronx,Edenwald,40.88805,-73.83248,Entire home/apt,90,15,0,,,1,89 +28835678,Charming and cozy one-bedroom on Upper West Side,94395484,Rosemarie,Manhattan,Morningside Heights,40.81511,-73.95998,Entire home/apt,140,2,6,2019-02-24,0.66,1,0 +28836267,"Good location in queen +Near by subway (3 block)",50855262,Fone,Queens,Elmhurst,40.74688,-73.8817,Private room,45,7,4,2019-05-31,0.46,3,21 +28836976,New York Apartment / HIDDEN GEM ROSEDALE LLC,174197082,Deborah,Queens,Rosedale,40.65644,-73.72817,Entire home/apt,80,1,9,2019-07-05,1.79,2,116 +28837152,Harlem Oasis,153269305,Kaitlyn,Manhattan,Harlem,40.8087,-73.94335,Private room,110,30,3,2018-10-18,0.33,1,90 +28838614,Sunny one bedroom renovated apartment,73638523,Stephany,Queens,Queens Village,40.72085,-73.7496,Entire home/apt,68,2,33,2019-06-30,3.60,1,282 +28838673,Luxury Brownstone living in the heart of Brooklyn,290055,Julian,Brooklyn,Bedford-Stuyvesant,40.68523,-73.93833,Entire home/apt,275,3,43,2019-06-24,4.54,1,123 +28838780,Studio w/ great location in the heart of Brooklyn!,65826607,Dylan,Brooklyn,Downtown Brooklyn,40.69632,-73.98454,Entire home/apt,90,2,2,2019-03-11,0.32,1,0 +28838875,Charming 2 Bedroom Apartment in Ideal Location,1228328,Hedda,Brooklyn,Downtown Brooklyn,40.69769,-73.98386,Entire home/apt,250,2,8,2019-05-21,0.85,1,29 +28839265,Cozy MasterBed Room Suite w/Jacuzzi Tub,10321540,Steven,Queens,Bayswater,40.60845,-73.75861,Private room,60,1,9,2019-06-12,1.13,1,84 +28840001,Beautiful Cozy Studio Apartment,217468746,Timothy,Staten Island,Stapleton,40.62448,-74.08317,Entire home/apt,89,1,23,2019-07-05,2.43,1,0 +28840175,Pretty and cozy 2BR apartment in Chelsea,217111553,Jason,Manhattan,Chelsea,40.7467,-73.99335,Entire home/apt,288,3,44,2019-07-06,4.78,1,48 +28841259,Beautiful Duplex & Private Terrace in Williamsburg,21058022,Pablo,Brooklyn,Williamsburg,40.70779,-73.94714,Private room,70,3,4,2019-06-23,0.63,3,3 +28841309,Times Square Prime Two Bedroom Near Port Authority,215683904,Ryan,Manhattan,Hell's Kitchen,40.75768,-73.99417,Entire home/apt,159,30,0,,,1,333 +28841361,A place to stay,217484828,Benjamin,Bronx,East Morrisania,40.83285,-73.8879,Entire home/apt,60,1,22,2019-07-07,2.40,1,279 +28842166,Cozy room by South Seaport,93560404,Ada,Manhattan,Financial District,40.70417,-74.00928,Private room,100,1,31,2019-06-24,3.35,1,195 +28843143,New York City Private bedroom and shared bath,216917414,Ramon,Manhattan,Washington Heights,40.85157,-73.93936,Private room,60,2,16,2018-12-27,1.75,2,0 +28843808,Luxury Townhome in the heart of Brooklyn,23542079,Teres,Brooklyn,East Flatbush,40.64565,-73.93164,Entire home/apt,99,5,1,2018-11-26,0.13,2,0 +28844940,The Brooklyn Blue House 3,183127881,Giana,Brooklyn,Canarsie,40.646,-73.90189,Private room,59,2,35,2019-05-24,3.85,4,176 +28845130,Modern Luxury Spacious Suite 15min from Manhattan,72513663,Teddy,Queens,Sunnyside,40.74693,-73.92188,Private room,119,1,27,2019-06-29,2.88,1,27 +28846489,Dumbo paradise,40529301,Tommy,Brooklyn,Fort Greene,40.69617,-73.97456,Private room,89,1,24,2019-06-06,3.09,2,72 +28849818,"Colorful East Village 1BR, Gym, Doorman, Rooftop by Blueground",107434423,Blueground,Manhattan,East Village,40.72272,-73.98379,Entire home/apt,314,30,0,,,232,330 +28850624,Cozy room in historic Brooklyn walk-up,47485031,Ben,Brooklyn,South Slope,40.66189,-73.97946,Private room,60,2,1,2018-10-30,0.12,1,36 +28852284,Charming One Bedroom in Washington Heights,27108723,Aly,Manhattan,Washington Heights,40.84578,-73.93902,Entire home/apt,66,1,12,2019-07-06,1.83,1,5 +28856920,FiDi 1 Bedroom w/Huge Gym in Luxury Building,4722955,Kelly,Manhattan,Financial District,40.70665,-74.01503,Entire home/apt,175,30,1,2018-12-31,0.16,1,54 +28857304,Chic Brooklyn Artist Loft w/ Stunning Views,140173,Tucker,Brooklyn,Greenpoint,40.73498,-73.95805,Entire home/apt,150,3,7,2019-03-16,0.80,1,0 +28859453,"Gorgeous, Prime West Village Apt!",93705483,Andrea,Manhattan,West Village,40.73161,-74.00172,Entire home/apt,310,2,4,2019-06-21,0.48,2,8 +28859648,"Spacious room in a huge house, East williamsburg",217591735,Alison,Brooklyn,Williamsburg,40.70664,-73.93978,Private room,70,2,4,2019-04-28,0.45,1,0 +28859846,Business Travelers/2 bedrooms,8857758,Cleonides,Queens,Maspeth,40.72972,-73.89916,Entire home/apt,109,5,1,2019-06-30,1,2,160 +28860105,3 Bedroom Penthouse in FiDi NYC,5330754,Christina,Manhattan,Financial District,40.70734,-74.00837,Entire home/apt,300,30,0,,,1,310 +28860221,shared room in east harlem,217595343,Jack,Manhattan,East Harlem,40.80046,-73.94239,Shared room,65,1,2,2019-06-30,2,2,64 +28861629,Comfort and Charm in Harlem with a View!!!,138957777,Azarii,Manhattan,East Harlem,40.80226,-73.93734,Private room,83,2,25,2019-06-24,2.69,1,161 +28862464,Harlem Gem,75972444,Danielle,Manhattan,Harlem,40.80659,-73.95266,Private room,200,1,2,2019-06-24,2,1,32 +28862531,"Williamsburg Private Room, 15 Mins. to Manhattan!",90294445,Brendan,Brooklyn,Williamsburg,40.70672,-73.94491,Private room,90,4,26,2019-07-02,2.88,2,0 +28864263,Large 2BED Midtown Full Kitchen and Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75396,-73.96559,Entire home/apt,380,3,10,2019-06-14,1.12,8,225 +28864751,Beautiful bright room in Soho,40394752,Vanya,Manhattan,SoHo,40.72396,-74.00393,Private room,175,5,1,2018-10-12,0.11,2,0 +28866426,LUXURY 3BR/2 Bath Home 10 minutes to JFK & Casino,217621677,Joseph,Queens,Jamaica,40.68671,-73.7759,Entire home/apt,46,1,18,2019-07-01,1.96,4,135 +28867268,Spacious Room in well Loved East Williamsburg Home,26880156,Patrick,Brooklyn,Bushwick,40.70452,-73.92917,Private room,50,2,3,2018-11-12,0.35,1,32 +28867312,JCI Cozy 2 bedroom Apt. in Brownstone near trains,217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68456,-73.94962,Private room,200,2,5,2019-05-21,0.57,3,64 +28867326,Beuty full bedroom,65827591,Nubia,Queens,Maspeth,40.73661,-73.90021,Private room,31,2,6,2019-01-06,0.65,3,259 +28867389,PLG Brooklyn Apartment private bedroom+bathroom,53357457,Benjamin,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.948,Private room,59,3,6,2019-03-24,0.66,1,0 +28867577,Large Studio Apartment in Historic Brownstone,216734225,Erica,Manhattan,Harlem,40.81453,-73.94719,Entire home/apt,180,5,27,2019-06-23,2.95,1,88 +28867880,Convenient stay,217648807,Tyeesha,Bronx,Morris Heights,40.85324,-73.92143,Private room,240,1,0,,,1,363 +28868139,New Yorker first option to all Malls n restaurant,47564333,Marisa,Queens,Flushing,40.75414,-73.81536,Private room,75,1,0,,,1,365 +28869774,Light-filled studio in East Williamsburg,19874189,Ali,Brooklyn,Williamsburg,40.71598,-73.943,Entire home/apt,160,4,6,2019-06-26,0.69,1,10 +28871214,Bedroom Walking Distance to Central Park,75285802,Lauren,Manhattan,East Harlem,40.78689,-73.945,Private room,72,5,21,2019-06-23,2.23,2,165 +28871823,Chic Modern Minimalism | Private Luxury Space,10320429,Julie,Brooklyn,Bedford-Stuyvesant,40.69058,-73.94863,Private room,72,2,37,2019-06-30,3.94,1,18 +28872273,Fully furnished lxury 2 BR with outdoor space (2E),202757964,Mayan,Brooklyn,Williamsburg,40.71875,-73.96376,Entire home/apt,210,30,2,2019-05-31,0.32,6,335 +28872377,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81377,-73.88933,Private room,40,30,3,2019-04-07,0.36,6,321 +28881114,A+ Chelsea_global inspired location. Large room,3464645,Sybilla Michelle,Manhattan,Chelsea,40.74768,-73.99965,Private room,175,2,0,,,3,70 +28885547,GREENPOINT LOVE,58131408,Dixie,Brooklyn,Greenpoint,40.73372,-73.94227,Private room,180,4,0,,,1,170 +28885996,Spacious Private Room in the heart of Harlem,70922580,Brittany,Manhattan,Harlem,40.81759,-73.93724,Private room,70,4,0,,,1,0 +28887506,2 BEDS - ROOF DECK+ LAUNDRY- CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.7107,-73.95785,Private room,105,2,13,2019-05-18,1.79,3,335 +28888037,DaDukes Xtra,139879568,Alberto,Queens,Long Island City,40.76463,-73.93878,Private room,95,1,18,2019-06-09,1.91,6,347 +28888147,NEW Lofty 1bedroom UpperEast Side,43825799,Anthony,Manhattan,Midtown,40.75896,-73.96251,Entire home/apt,235,2,37,2019-07-01,4.19,1,135 +28889141,"PRIVATE ROOM in 2bdr, 2bth NEW YORK Brighton Beach",181356989,Kseniya,Brooklyn,Brighton Beach,40.57646,-73.96641,Private room,69,2,8,2019-06-23,0.90,2,4 +28890190,"5 min from Manhattan, Williamsburg new building!",217784241,Analia,Brooklyn,Williamsburg,40.7087,-73.95941,Private room,70,1,67,2019-06-06,7.18,4,5 +28890259,Charming Studio view of NYC,55335435,Tatiana,Manhattan,Harlem,40.82834,-73.94298,Entire home/apt,75,5,2,2019-01-08,0.27,1,0 +28890542,E.Village Private bdrm with Private Entrance for 4,181810800,David,Manhattan,East Village,40.72699,-73.98548,Private room,139,2,11,2019-01-01,1.19,1,0 +28890908,Beautiful Apartment in Ideal Manhattan Location,192270861,Zach,Manhattan,Harlem,40.81993,-73.94768,Private room,75,5,1,2019-01-29,0.19,1,0 +28891043,15min:Manhattan 5 subway line takes you everywhere,19303369,Hiroki,Queens,Jackson Heights,40.74909,-73.89538,Private room,41,29,1,2018-12-15,0.15,37,1 +28891434,New & Clean 2 bedrooms Garden Home,217793924,NY Blue House,Brooklyn,Crown Heights,40.67294,-73.93655,Entire home/apt,120,3,33,2019-06-17,3.61,1,73 +28891558,400sqft HUGEroom 2min expresstrain & 1min LIRR,19303369,Hiroki,Queens,Woodside,40.74258,-73.9031,Private room,55,30,2,2019-04-30,0.32,37,1 +28892753,4 min subway. 2beds 3people private room&bothroom,196058543,美德,Queens,Forest Hills,40.72081,-73.83821,Private room,88,2,37,2019-07-06,4.04,5,210 +28892979,4min subway.free parking big private room温馨漂亮大睡房,196058543,美德,Queens,Forest Hills,40.71984,-73.83969,Private room,78,2,28,2019-07-03,3.05,5,205 +28893129,2min bus 4 min subway.9min JFK private room干净舒适花园房,196058543,美德,Queens,Forest Hills,40.72133,-73.83928,Private room,58,2,35,2019-06-02,3.85,5,235 +28893365,Large charming space in the heart of the E Village,23354644,Nancy,Manhattan,East Village,40.72957,-73.98723,Private room,85,2,21,2019-06-22,2.27,3,41 +28894636,Sunny private room close to the city center 41D1,190921808,John,Manhattan,Hell's Kitchen,40.7543,-73.99697,Private room,150,7,9,2019-06-11,0.99,47,358 +28895817,SUNNY ROOM WITH SKYLIGHT + 2 BEDS,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69524,-73.95322,Private room,67,30,31,2019-06-16,3.41,6,333 +28896148,LUXURY BEDROOM # 2. Ten mins from JFK/Casino,217621677,Joseph,Queens,Jamaica,40.68627,-73.77633,Shared room,51,1,17,2019-05-17,1.84,4,141 +28896237,"Sunlight, comfort, & Brooklyn charm near the Park",96379938,Alexander,Brooklyn,East Flatbush,40.65358,-73.94965,Private room,99,4,13,2019-05-09,1.41,2,48 +28896728,A HIDDEN GEM W/ QUEEN BED & COUCHES 20 MINS TO NYC,51025844,Kdn,Manhattan,Inwood,40.86697,-73.92534,Private room,99,1,3,2019-04-21,0.40,3,365 +28897533,"Newly built Apt in 2015, 3min to Subway",204704622,Momoyo,Queens,Elmhurst,40.73902,-73.87702,Private room,32,29,1,2019-02-18,0.21,7,35 +28897932,LUXURY BEDROOM # 3. Ten mins from JFK/Casino,217621677,Joseph,Queens,St. Albans,40.68806,-73.77573,Private room,35,1,30,2019-07-05,3.25,4,143 +28901045,Master Suite w/Private Bath & Balcony,2065453,Ora & Scout,Brooklyn,Crown Heights,40.67618,-73.95607,Private room,75,2,6,2019-04-23,0.69,3,12 +28901091,peaceful third floor Fort Greene treetop retreat,171212377,Lali,Brooklyn,Fort Greene,40.68832,-73.97731,Entire home/apt,175,3,38,2019-07-06,4.15,1,122 +28901111,Bensonhurst,209768607,Amrane,Brooklyn,Bensonhurst,40.61135,-74.00827,Entire home/apt,62,23,0,,,1,0 +28908658,Small Reasonable stay in NYC 3min Subway Grand Ave,204704622,Momoyo,Queens,Elmhurst,40.74035,-73.87617,Private room,29,29,1,2019-06-20,1,7,6 +28908909,"Perfect Studio, Private Garden, Ideal Location!",217909276,Julie,Brooklyn,Fort Greene,40.68631,-73.97497,Entire home/apt,150,8,4,2019-06-01,0.50,1,0 +28909110,Modern 1 Bedroom In Vibrant BK Neighborhood,10218689,Bere,Brooklyn,Crown Heights,40.67088,-73.95128,Entire home/apt,90,4,26,2019-06-19,2.85,1,0 +28909276,Welcome to Paradise,205131610,Steven,Brooklyn,Canarsie,40.63979,-73.90378,Private room,55,1,9,2018-11-07,0.95,3,365 +28909477,Charming NYC Guest Suite (Loft Room),50756378,Nina,Staten Island,Clifton,40.61595,-74.08535,Shared room,150,2,2,2018-11-04,0.22,7,312 +28910248,"❤️ Private Studio+Bath+Balcony, 15 mins to City",217844544,Mia,Brooklyn,Bushwick,40.69454,-73.92612,Private room,90,2,54,2019-07-07,5.79,2,118 +28910899,"Private room in large, central Nolita penthouse!",153154549,Sarah,Manhattan,Nolita,40.72135,-73.99426,Private room,140,3,2,2018-10-15,0.22,1,0 +28910978,Artistic house with murals,52044518,Veronica,Queens,East Elmhurst,40.76173,-73.87417,Private room,65,1,58,2019-07-08,6.19,1,47 +28911697,Cozy Artist Room,70230403,Sonya,Brooklyn,Bushwick,40.69677,-73.92688,Private room,57,1,1,2018-10-22,0.12,1,0 +28911775,LUXURY PRIVATE BEDROOM & Bath Mins from JFK,217621677,Joseph,Queens,St. Albans,40.68754,-73.77488,Private room,50,1,16,2019-07-07,1.78,4,137 +28911830,Charming redbrick Bronx Villa,191085997,Christopher,Bronx,Pelham Bay,40.8546,-73.83026,Entire home/apt,299,2,1,2019-05-19,0.58,3,1 +28911848,NYC Hideaway spacious Garden apartment,191085997,Christopher,Bronx,Pelham Bay,40.85413,-73.83065,Entire home/apt,125,2,7,2019-06-30,0.99,3,301 +28911924,Charming Times Square Midtown One Bedroom!,40245658,Alexa,Manhattan,Hell's Kitchen,40.7617,-73.98882,Private room,85,2,34,2019-06-09,4.47,3,103 +28912358,Parisian style 1 bedroom in the Heart of UES!!!,41062475,Viktoria,Manhattan,Upper East Side,40.76035,-73.96045,Private room,80,4,11,2019-07-01,1.30,1,156 +28912768,Cozy BK Apt -Roof & Balcony- 5 star host reviews!,10448306,Kelly,Brooklyn,Williamsburg,40.71814,-73.95517,Entire home/apt,180,2,4,2019-02-23,0.43,1,0 +28912811,Full parlor floor in a Brooklyn brownstone,27922078,Timothy,Brooklyn,Crown Heights,40.675,-73.9422,Entire home/apt,65,3,7,2019-01-27,0.77,1,0 +28913324,6 Guests LUXURIOUS MANHATTAN Condo With ROOFTOP!!!,96986507,Jason,Manhattan,Harlem,40.80702,-73.95334,Entire home/apt,270,2,12,2019-06-11,1.34,1,365 +28913606,King Hotel Room at Wyndham Midtown 45 Resort,49128620,Joy,Manhattan,Midtown,40.75359,-73.97305,Private room,175,2,2,2019-05-12,0.22,1,1 +28913683,LOVE Best City Views: Luxury & Location 2BD/2BT,40681070,Monika,Manhattan,Midtown,40.74952,-73.97089,Entire home/apt,359,5,9,2019-04-21,0.99,1,23 +28913824,Luxury STUDIO w/FREE GYM by Prospect Park!,1158429,Anastasia,Brooklyn,Windsor Terrace,40.64968,-73.97325,Entire home/apt,100,29,2,2018-11-23,0.22,1,59 +28914077,✦Luxury Upper East Side Studio Apartment✦,217948247,Jodi,Manhattan,Upper East Side,40.77707,-73.95154,Entire home/apt,275,2,8,2019-01-02,0.91,1,0 +28915824,"Private Room in Little Italy/Chinatown, Manhattan",217836856,Moying,Manhattan,Chinatown,40.71795,-73.99708,Private room,185,1,36,2019-03-21,3.90,2,233 +28915827,Attractive private room by South Seaport,217965968,Carol,Manhattan,Financial District,40.70545,-74.0084,Private room,119,1,27,2019-06-23,2.99,1,5 +28916312,Cozy nook in Bronx 5 mins from Botanical Gardens!,99956350,Aubeen,Bronx,Fordham,40.86777,-73.88397,Private room,90,1,2,2019-01-01,0.22,1,362 +28916375,Prime area in Chinatown and Little Italy,67552519,Patrick,Manhattan,Little Italy,40.71894,-73.99759,Entire home/apt,160,2,44,2019-07-07,5.64,2,275 +28916439,Family and Friendly Room,35927005,Kathy,Brooklyn,Borough Park,40.63535,-74.00589,Private room,60,1,0,,,10,0 +28916850,Bushwick modern luxury: 2 bed 2 bath apartment,4765119,Jasmine,Brooklyn,Bushwick,40.68782,-73.91071,Entire home/apt,149,20,4,2019-03-20,0.55,1,165 +28916864,Cozy 3-People Room Close to Subway,35927005,Kathy,Brooklyn,Borough Park,40.63445,-74.00524,Private room,57,1,1,2019-03-22,0.27,10,365 +28917395,Ultra Plush Large Private cozy cottage Bedroom,217332035,Rose,Brooklyn,Sheepshead Bay,40.59055,-73.9464,Private room,39,1,1,2018-10-31,0.12,2,360 +28917505,Small room for 1 Person-Best Value,35927005,Kathy,Brooklyn,Borough Park,40.63448,-74.00563,Private room,50,1,2,2019-06-20,0.24,10,365 +28917781,Walk in Basement Room with Window,35927005,Kathy,Brooklyn,Borough Park,40.63586,-74.00597,Private room,55,1,1,2018-10-20,0.11,10,298 +28918134,Basement Room with Window,35927005,Kathy,Brooklyn,Borough Park,40.63525,-74.00724,Private room,48,1,0,,,10,365 +28918211,B1. Shared room for 4 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.9455,Shared room,30,2,5,2019-04-20,0.55,6,365 +28918405,Nice Couple in A Walk in Basement with Window,35927005,Kathy,Brooklyn,Borough Park,40.63416,-74.00722,Private room,50,2,0,,,10,365 +28918624,Private Room with a Twin Bed,35927005,Kathy,Brooklyn,Borough Park,40.63549,-74.00699,Private room,45,2,3,2018-12-30,0.37,10,365 +28918768,living room space but with curtain for privacy,35927005,Kathy,Brooklyn,Borough Park,40.63522,-74.00596,Shared room,35,1,0,,,10,352 +28918915,B2. Shared room for 4-5 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66076,-73.94547,Shared room,30,2,5,2019-04-12,0.55,6,352 +28919308,Charming West Chelsea Studio Loft,145331404,Allan,Manhattan,Chelsea,40.74542,-74.00133,Entire home/apt,195,5,21,2019-07-01,2.42,1,17 +28919420,G1. Private room. For 2 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.94712,Private room,40,2,2,2019-05-31,0.74,6,364 +28919421,Lovely New Private Bathroom Room,216772639,Ling,Brooklyn,Borough Park,40.63371,-74.00717,Private room,60,1,9,2019-06-24,0.98,7,180 +28919516,3-P Room/Private Bath/Walk to Subway--Best Value,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00698,Private room,60,1,9,2019-06-06,1.00,7,177 +28919815,G1. Private room for 2 guest.,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.94661,Private room,35,2,1,2018-10-06,0.11,6,364 +28920156,BEAUTIFUL LUXURY 2BDR APARTMENT ON PARK AVE,217996544,Ofir,Manhattan,Midtown,40.74407,-73.98386,Entire home/apt,249,3,0,,,2,179 +28920811,Super charming and cozy one bedroom apartment.,218001383,James,Queens,Long Island City,40.75554,-73.92127,Entire home/apt,120,2,36,2019-06-30,4.14,1,48 +28927140,Gentleman's Quarters #2,43392243,Rita,Staten Island,Concord,40.59972,-74.07701,Private room,35,1,2,2019-06-30,2,4,360 +28927290,Gentleman's Quarters,43392243,Rita,Staten Island,Concord,40.59934,-74.07836,Private room,35,1,45,2019-07-07,4.89,4,177 +28931117,AMAZING LUXURY 1 BEDROOM NEAR TIMES SQUARE/MIDTOWN,13027278,Jinna,Manhattan,Hell's Kitchen,40.75927,-73.9939,Entire home/apt,151,7,3,2018-11-17,0.33,1,0 +28931731,Spacious Sunny EV Studio Perfect 4 Business/Travel,60246968,Sophia,Manhattan,East Village,40.72259,-73.98472,Entire home/apt,478,1,6,2019-06-30,0.71,1,5 +28932158,Cosy Room in Chinatown. Near Canal St.,56550302,Eli,Manhattan,Chinatown,40.7175,-73.99962,Private room,110,3,2,2018-12-03,0.23,1,66 +28933107,new ARTIST ROOM IN EAST VILLAGE NYC .,1810885,Alex,Manhattan,East Village,40.72522,-73.97786,Private room,85,4,7,2019-04-08,0.79,3,54 +28933205,Private Bedroom on UES with amazing terrace,218090309,Katrin,Manhattan,Upper East Side,40.76872,-73.95513,Private room,250,3,22,2019-06-23,2.55,1,0 +28933262,Wyndham Midtown 45,198749990,Maria,Manhattan,Midtown,40.75378,-73.97156,Private room,350,2,0,,,1,0 +28933403,STYLISH OPEN-PLAN LOFT IN BUSHWICK APARTMENT.,1429693,Madeline,Brooklyn,Bushwick,40.70846,-73.92088,Private room,200,2,10,2019-05-19,1.09,1,79 +28933616,Spacious studio apartment on ideal LES block,526744,Tessa,Manhattan,Chinatown,40.71614,-73.99085,Entire home/apt,250,2,3,2018-11-04,0.35,1,0 +28934396,One Bedroom Apt with a pool & a gym in the bldg,6531164,Steven,Brooklyn,Downtown Brooklyn,40.69712,-73.98401,Entire home/apt,285,1,1,2019-01-02,0.16,1,6 +28935658,Private Bedroom&Bathroom w Breakfast in Manhattan,218080780,Neyir,Manhattan,Upper East Side,40.78478,-73.94967,Private room,200,1,20,2019-07-01,2.25,1,313 +28935673,Victorian Studio Bedroom Suite in Brooklyn,720510,Erin,Brooklyn,Bushwick,40.70274,-73.92598,Entire home/apt,100,2,16,2019-06-30,1.89,1,55 +28936557,Designer Apartment in Harlem,37957096,Gòn,Manhattan,Harlem,40.82365,-73.93786,Entire home/apt,80,10,17,2019-06-02,1.90,1,95 +28936795,Great Access! Close to station/5line u can use!,200239515,Shogo,Queens,Woodside,40.74516,-73.89278,Private room,35,30,2,2019-04-30,0.25,15,0 +28937536,Modern Luxury Condo with a Sunny Patio,70636634,Allia,Brooklyn,Sunset Park,40.66461,-73.99506,Entire home/apt,220,15,1,2018-10-08,0.11,1,0 +28937584,Cozy Private Room in Uptown Manahattan,43027007,Robbie,Manhattan,East Harlem,40.7949,-73.93627,Private room,57,1,26,2019-06-03,2.82,1,344 +28938342,"❤️ 2 Beds Option@Bushwick, 15 mins to Manhattan",217844544,Mia,Brooklyn,Bushwick,40.69404,-73.92432,Private room,70,3,45,2019-06-30,4.93,2,146 +28938631,❤️ Welcome to the Chelsea Charmer❤️,211391055,Vanessa,Manhattan,Chelsea,40.74552,-74.00021,Entire home/apt,299,2,35,2019-06-16,3.75,1,277 +28939377,SUMMER SPECIAL! Spacious Harlem Condo,218140824,Jason,Manhattan,Harlem,40.80756,-73.94855,Entire home/apt,145,60,1,2019-01-07,0.16,1,227 +28940025,City Island studio apartment retreat,2780938,Molly,Bronx,City Island,40.84802,-73.78963,Entire home/apt,84,2,31,2019-06-29,3.38,1,166 +28940279,Brand New Apartment in Williamsburg!,40742174,Jessica,Brooklyn,Williamsburg,40.70948,-73.95946,Private room,70,5,1,2018-12-14,0.14,1,0 +28940496,Master Roon In NICe Aparment,130972997,Wilson,Brooklyn,Crown Heights,40.67387,-73.93944,Private room,55,4,1,2019-04-10,0.33,2,311 +28940723,Traveler Friendly Brooklyn Apartment w Backyard!!!,146339341,Dylan,Brooklyn,Williamsburg,40.71172,-73.94556,Private room,99,1,3,2018-10-27,0.33,1,0 +28940952,"Modern, Well-Appointed Room in NYC!",8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69246,-73.95863,Private room,48,2,47,2019-06-23,5.02,3,10 +28941589,"3 bdrm, 2 bth duplex -20 mins to midtown -32B",42226482,Monique,Bronx,Williamsbridge,40.87704,-73.86276,Entire home/apt,80,30,0,,,1,0 +28941614,Brooklyn Style - with a Balcony!!!,8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69362,-73.95906,Private room,45,2,43,2019-06-21,4.69,3,25 +28941710,Tiny Home,149292557,Kimberly,Queens,Jackson Heights,40.75137,-73.86081,Entire home/apt,69,2,52,2019-07-06,5.63,2,137 +28941808,Just Like Home!,8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69339,-73.95881,Private room,50,2,42,2019-06-22,5.02,3,17 +28942802,Comfortable house in Dyker Hight New York,118442680,Betty,Brooklyn,Dyker Heights,40.6185,-74.00679,Private room,150,7,5,2019-06-01,0.79,1,149 +28943748,Home Away from Home: The Restorative Room,130971031,J-,Brooklyn,Bushwick,40.70355,-73.91803,Private room,73,3,1,2018-10-08,0.11,4,0 +28950019,Bed room close to NYC⬆︎ with lots of sun light☀️,43044876,Haruhisa,Queens,Elmhurst,40.73655,-73.87762,Private room,40,29,2,2019-04-29,0.55,5,32 +28950738,Ozone Park Studio,218222410,Seeta,Queens,Ozone Park,40.68689,-73.84587,Private room,60,1,0,,,1,0 +28952183,Cozy private room in spacious Brooklyn Apartment,19899115,Libby,Brooklyn,Crown Heights,40.67759,-73.9523,Private room,50,2,6,2018-12-10,0.69,2,0 +28952972,"Penthouse Suite at the Manhattan Club, NYC",91757655,Edward,Manhattan,Midtown,40.7656,-73.98,Private room,450,3,0,,,1,339 +28953757,One Bed Room with a share living and kitchen apt,195251910,Ahmad,Queens,Long Island City,40.76216,-73.94109,Private room,100,1,2,2019-02-18,0.32,1,1 +28954021,Crown Heights Nice,57403189,Joslin,Brooklyn,Crown Heights,40.67635,-73.94378,Entire home/apt,100,2,13,2019-06-30,3.20,2,20 +28954146,NEW- Spacious & Bright Brooklyn 1 Bed,218219395,Gigi,Brooklyn,Bushwick,40.70081,-73.91805,Entire home/apt,160,2,20,2019-06-03,2.28,1,364 +28954400,Lovely Private Garden Apt!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68563,-73.92331,Entire home/apt,110,4,1,2018-10-27,0.12,4,129 +28956510,Private room in full floor Soho Loft,23397935,John,Manhattan,SoHo,40.72039,-73.99851,Private room,249,5,3,2019-01-27,0.33,1,5 +28958147,Cozy 1BR Apartment in Heart of LES,51947144,Jason,Manhattan,Lower East Side,40.71895,-73.98922,Entire home/apt,150,3,8,2019-04-30,0.92,1,0 +28958325,Huge beedroom close to Cent. Park and Times Square,9187405,Sebastian,Manhattan,Midtown,40.76488,-73.9806,Private room,150,2,5,2018-11-24,0.57,1,0 +28958489,Cosy room on the ocean beach.,93315723,Анита,Brooklyn,Brighton Beach,40.57795,-73.9616,Private room,50,2,27,2019-06-26,3.18,1,71 +28958526,"Lower Manhattan 2 Bedroom, Very Convenient!",176231758,Brett,Manhattan,Little Italy,40.71717,-73.99815,Entire home/apt,240,2,26,2019-06-24,2.80,1,267 +28959608,The Green Atelier of Park Slope,5085951,Liz,Brooklyn,Park Slope,40.67702,-73.97907,Private room,100,2,22,2019-06-27,2.59,1,292 +28959784,Your Cozy Home,213781715,Anting,Queens,Long Island City,40.74029,-73.95927,Private room,119,1,2,2018-12-05,0.26,33,365 +28959854,1 BR /stove /fridge / bath/ living rm 20 mins nyc,16851857,Paul,Bronx,Wakefield,40.89502,-73.85071,Entire home/apt,75,7,3,2019-05-03,0.63,4,242 +28960086,Tudor Village,218289083,Faysal,Queens,Ozone Park,40.68334,-73.85837,Entire home/apt,90,7,2,2018-10-26,0.22,1,90 +28960088,SOHO 1st Floor | Two Story Apt + Private Backyard,218282660,Maksum,Manhattan,Nolita,40.72162,-73.99549,Entire home/apt,399,5,29,2019-06-24,3.16,1,76 +28960455,Large BASEMENT 1BD Apartment - Astoria,218292717,Tania And Jimmy,Queens,Astoria,40.76267,-73.90555,Entire home/apt,149,2,35,2019-06-22,3.89,1,362 +28960497,Cozy room in Astoria close to Manhattan,70800114,Olivia,Queens,Ditmars Steinway,40.7698,-73.91157,Private room,64,1,10,2018-12-09,1.12,1,0 +28961050,QUEEN BED WITH SKYLIGHT - NEXT TO METRO!,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69634,-73.95375,Private room,68,30,17,2019-06-05,1.93,6,242 +28961085,Charming Midtown East 1-bedroom,51385941,Laura,Manhattan,Midtown,40.75417,-73.96437,Entire home/apt,250,3,21,2019-06-10,2.32,1,80 +28961203,COZY ROOM NEXT TO METRO B,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69464,-73.95259,Private room,63,30,16,2019-06-16,1.80,6,365 +28961444,Couples Retreat/One min to subway/WiFi/Coffee!,79913651,Darryl,Manhattan,East Harlem,40.80608,-73.93718,Private room,56,1,20,2019-06-05,2.19,4,129 +28961690,Clinton Hill 1 Bedroom Brooklyn heart of it all!,218300937,Thomas,Brooklyn,Clinton Hill,40.68313,-73.96742,Entire home/apt,200,5,3,2019-04-11,0.33,2,89 +28961919,Linda's Place,218301609,Merle,Queens,Hollis,40.70864,-73.76683,Private room,65,5,8,2019-05-24,0.99,1,170 +28962959,Luxury Studio in Prime Lower East Side,89742769,Chels,Manhattan,Lower East Side,40.72071,-73.98764,Entire home/apt,300,1,54,2019-06-28,5.87,1,48 +28963068,Manhattan-Bronx Large Studio Apt in Mott Haven,218311373,Yizhak,Bronx,Port Morris,40.80861,-73.93015,Entire home/apt,100,1,25,2019-06-17,2.81,1,39 +28963840,Cozy 2 Bedroom Home,22301628,Jayleen,Brooklyn,East New York,40.67454,-73.89652,Entire home/apt,120,2,15,2019-01-13,1.66,1,0 +28963934,"GRAY MANHATTAN, BIG COZY ROOM IN A 3BEDRMS APART",47595754,Voisin,Manhattan,Washington Heights,40.84577,-73.93731,Private room,70,7,11,2019-06-16,1.30,1,356 +28964081,Perfect Location! 2BR Oasis in Heart of Chelsea,216586866,Joseph,Manhattan,Chelsea,40.74377,-73.99905,Entire home/apt,137,4,1,2019-01-01,0.16,2,0 +28964166,$ummer $ALE Williamsburg TownHouse -BEST Location!,218319766,Ron And Irit,Brooklyn,Williamsburg,40.71741,-73.95656,Entire home/apt,275,2,45,2019-06-30,5.04,1,249 +28964397,Perfect Location! Your Oasis in Heart of Chelsea,216586866,Joseph,Manhattan,Chelsea,40.744,-73.99721,Private room,65,3,12,2019-06-25,1.43,2,30 +28965064,Bright clean modern spacious with big front porch!,1093167,Paul,Brooklyn,Crown Heights,40.68076,-73.96415,Entire home/apt,150,1,3,2018-10-14,0.33,1,95 +28965273,Private room,154737520,Mehrangez,Brooklyn,Bedford-Stuyvesant,40.67937,-73.94493,Private room,40,27,0,,,1,89 +28965609,CB2 BROOKLYN,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69476,-73.94821,Private room,82,6,8,2019-06-15,0.88,3,48 +28966170,"Bright, Sunny Private Room in Bushwick",26633737,Liz,Brooklyn,Bushwick,40.69571,-73.91637,Private room,65,3,0,,,1,3 +28966707,Private Bath & Fire Escape Brooklyn Bedroom,142059543,Luna,Brooklyn,Williamsburg,40.71849,-73.94165,Private room,80,3,6,2019-03-24,0.80,1,6 +28966945,Lugar acogedor y confortable,153809989,Sandy,Bronx,Mount Eden,40.84084,-73.92178,Private room,48,2,0,,,1,0 +28967484,Comfortable Brooklyn Room,34125495,Billy,Brooklyn,Bushwick,40.68893,-73.90984,Private room,39,1,5,2019-06-09,0.60,1,158 +28971081,MOXY NYC DOWNTOWN-7 NIGHTS MIN,5144567,Yun,Manhattan,Civic Center,40.71193,-74.00694,Private room,169,7,4,2019-06-15,1.35,13,351 +28971865,Brooklyn Bedroom - Warm & Cozy Near Subway (1),217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68591,-73.95044,Private room,150,2,6,2019-03-31,0.75,3,33 +28972637,Modern living in old Harlem (the Scream2),2802223,Raluca,Manhattan,Harlem,40.82921,-73.93802,Entire home/apt,125,60,2,2019-05-31,0.23,2,3 +28976135,1Great Budget Private Room,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.68937,-73.94992,Private room,65,30,13,2019-05-27,1.45,4,357 +28976867,Amazing Spacious Sunlit Studio with a balcony.,218406956,Jane,Manhattan,Upper East Side,40.76892,-73.96321,Entire home/apt,160,2,14,2019-06-24,1.79,1,170 +28977135,Private Cozy 2-Bedroom Clinton Hill Apartment,113055692,Whitney,Brooklyn,Clinton Hill,40.68349,-73.96153,Entire home/apt,175,2,5,2019-06-30,0.63,1,158 +28978023,Gallery Apartment with Parking in Heart of Astoria,137194766,Maria,Queens,Ditmars Steinway,40.77145,-73.9125,Entire home/apt,150,3,37,2019-06-22,4.10,2,7 +28978145,"Heart of Ft Greene, newly renovated w garden patio",218417996,Sam,Brooklyn,Fort Greene,40.68904,-73.97269,Entire home/apt,210,4,20,2019-06-20,2.32,1,268 +28978328,2254 and 2nd avenue,43531190,Kasun,Manhattan,East Harlem,40.79701,-73.93709,Private room,45,240,0,,,1,280 +28978474,New + Sunlit Apartment in Bed-Stuy,34394667,Ron,Brooklyn,Bedford-Stuyvesant,40.67782,-73.92326,Entire home/apt,125,3,15,2019-06-24,4.33,1,175 +28978510,Quite 1 Bedroom Apartment near EBS,211549023,Studioplus,Manhattan,Midtown,40.74822,-73.9873,Entire home/apt,240,2,14,2019-06-22,1.95,13,279 +28979013,Amazing converted 1BR in FiDi,54689007,Ana,Manhattan,Financial District,40.707,-74.00642,Entire home/apt,185,2,0,,,3,89 +28979690,My Place,218428676,Barbie,Manhattan,Washington Heights,40.83912,-73.94327,Private room,140,1,0,,,1,363 +28980678,"Stylish 2 bedroom apt, vibrant Bklyn neighborhood",20311036,Blu,Brooklyn,Bedford-Stuyvesant,40.68193,-73.93569,Entire home/apt,150,3,11,2019-05-26,1.25,1,105 +28981827,Beautiful Luxury 1 Bedroom,7021189,Sachin,Manhattan,Chelsea,40.74463,-73.9923,Entire home/apt,200,100,1,2018-10-02,0.11,1,0 +28982688,Beautiful Private One Bedroom,218450889,Caprice,Brooklyn,Flatbush,40.63994,-73.9516,Private room,80,1,4,2019-01-02,0.48,1,179 +28983189,PrivateRoom1/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.78073,-73.8193,Private room,39,1,44,2019-07-07,4.93,3,89 +28983494,Lovely Garden Apt,218457745,Shane,Brooklyn,East Flatbush,40.65073,-73.92738,Entire home/apt,135,4,9,2019-06-04,1.07,1,365 +28984202,Middle of Williamsburg-2 stops to Manhattan,218460622,Julia,Brooklyn,Williamsburg,40.70813,-73.94707,Private room,55,10,1,2018-12-01,0.14,1,48 +28984222,RENOVATED BROWNSTONE APARTMENT W/ HIGH CEILINGS!,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9559,Entire home/apt,230,4,29,2019-07-05,3.36,3,205 +28985543,Modern Sunny 3bdrm Apt,389924,Patty,Bronx,Morris Park,40.84605,-73.8493,Entire home/apt,39,5,0,,,2,0 +28985708,BEST LOCATION- Newly renovated 1 BR in Nolita,218474205,Madi,Manhattan,Nolita,40.72174,-73.99559,Entire home/apt,175,2,22,2019-06-23,2.52,1,24 +28985951,Spacious private bedroom and kitchen in Bedstuy,140671636,Brianna,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94897,Private room,50,2,5,2019-04-29,0.56,1,0 +28986154,3rd Fl bright two bedroom,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93875,Entire home/apt,139,1,4,2019-06-06,0.50,9,7 +28986535,Wonderful apartment Brooklyn 1 minute to L train.,96864161,Pedro,Brooklyn,Bushwick,40.68365,-73.90517,Entire home/apt,129,2,38,2019-06-25,4.73,1,192 +28986804,Sunny Private Bedroom/Bath in Beautiful Brooklyn,71314515,Tessa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.94183,Private room,80,1,15,2019-06-23,1.82,1,64 +28986807,Relaxing private room in Astoria. Balcony / WiFi.,137358866,Kazuya,Queens,Astoria,40.76649,-73.92266,Private room,46,30,0,,,103,237 +28987232,"Bright & Spacious / Red Brick, Modern Kitchen!",136010789,Rebeca & John @ Bedly,Brooklyn,Bushwick,40.69456,-73.91965,Private room,44,30,1,2018-11-20,0.13,2,9 +28987503,Cosy and friendly private space,218458746,Colin,Queens,Woodside,40.74592,-73.90889,Private room,100,1,4,2018-11-09,0.43,1,0 +28988283,The Come On Inn - 2,3740621,Jonathan,Manhattan,Harlem,40.81664,-73.94267,Private room,150,1,11,2019-06-12,1.26,2,177 +28988684,"Gorgeous sunny, queen size room Brooklyn",71157443,Jane,Brooklyn,Bushwick,40.6911,-73.90942,Private room,90,1,2,2019-04-11,0.25,1,29 +28989676,Modern & Spacious Luxe Apt,59982224,Leli,Brooklyn,East New York,40.67474,-73.87187,Entire home/apt,200,3,1,2019-01-02,0.16,4,4 +28989889,"""MI Casa es su Casa """,211638781,Adriana,Bronx,Belmont,40.85336,-73.88549,Private room,65,3,26,2019-06-29,2.83,2,46 +28989914,Bright and spacious loft in East Village,218505786,Victoria,Manhattan,East Village,40.72352,-73.98277,Private room,100,2,11,2019-02-24,1.21,1,0 +28990341,Gorgeous Two Bedroom in Soho,10457196,Richard,Manhattan,Little Italy,40.71938,-73.99448,Entire home/apt,130,30,1,2019-02-02,0.19,11,332 +28990673,Bright and large room in the heart of Williamsburg,218511630,Carlos,Brooklyn,Williamsburg,40.71485,-73.95324,Private room,75,1,13,2019-02-15,1.41,3,0 +28990717,Spacious apartment in Brooklyn,162968562,Mariah,Brooklyn,Gravesend,40.59147,-73.97566,Private room,70,1,1,2019-03-02,0.23,1,0 +28991548,Small and cozy room in the heart of Williamsburg,218511630,Carlos,Brooklyn,Williamsburg,40.71641,-73.95477,Private room,55,1,4,2019-01-03,0.45,3,0 +28992002,Cozy & Beautiful Private Room w/Nearby Coffee Shop,80093359,Isabella,Brooklyn,Bushwick,40.68589,-73.91422,Private room,55,2,15,2019-05-26,1.72,2,0 +28992146,TIMES SQ. MEETS BRYANT PARK #1 ULTIMATE LOCATION!,93948524,Marilyn,Manhattan,Hell's Kitchen,40.75603,-73.99214,Entire home/apt,125,30,3,2018-11-05,0.34,1,226 +28992518,Private 1 Bedroom on Top Floor Apartment Building,218526982,Liz,Manhattan,Lower East Side,40.72165,-73.98695,Entire home/apt,175,2,11,2019-07-07,1.20,2,6 +28993172,Charming home in Manhattan's most iconic street!,18264569,Jennifer,Manhattan,Chinatown,40.71447,-73.99737,Private room,125,2,35,2019-07-07,3.82,1,315 +28994671,한성 韓城 Han A (2FL),92706260,Kane,Queens,Flushing,40.76126,-73.81549,Private room,48,1,35,2019-07-01,3.79,5,79 +28999699,한성 韓城 Han B (2F),92706260,Kane,Queens,Flushing,40.76237,-73.8157,Private room,48,1,39,2019-06-28,4.21,5,84 +29000338,Shared Room 4 FEMALE Guests 30mins to Manhattan-4,172369331,Abby,Brooklyn,Sheepshead Bay,40.59658,-73.95944,Shared room,50,7,6,2019-05-17,0.70,10,311 +29001222,"Modern, Stylish and Peaceful Sanctuary",67915061,John,Manhattan,Washington Heights,40.83693,-73.93643,Entire home/apt,80,1,20,2019-06-28,2.59,1,28 +29001863,"Privet Room in a 4 Bed 1.5 Bath Apt, Ridgewood",194107668,Saron,Queens,Glendale,40.70002,-73.89364,Private room,35,7,1,2018-10-20,0.11,1,365 +29002099,Cozy sunlit Little Italy apartment!,136025561,Alexandra,Manhattan,Little Italy,40.71824,-73.99796,Private room,95,2,2,2019-06-23,2,2,23 +29002824,Cozy Private Room in East Village,20328673,Matt,Manhattan,East Village,40.73199,-73.98857,Private room,90,3,1,2019-01-07,0.16,1,5 +29004967,"Large, sunny WBurg apartment steps from L train",14453908,Andrew,Brooklyn,Williamsburg,40.70946,-73.94966,Entire home/apt,85,7,4,2019-07-01,0.59,1,357 +29005507,Sunny and Convenient Park Slope Room,2180581,Jana,Brooklyn,South Slope,40.66656,-73.98204,Private room,85,2,18,2019-05-30,1.99,2,0 +29005584,Manhattan Club NY-One Bedroom Suite-Sleeps 4,82460872,Dolores,Manhattan,Midtown,40.76412,-73.98017,Private room,425,4,0,,,1,0 +29005696,Private room in huge 2 bedroom-Prospect Heights,15528170,Kristin,Brooklyn,Prospect Heights,40.67737,-73.97159,Private room,90,8,1,2018-12-21,0.15,1,156 +29007491,Williamsburg 2 bedrooms 1 bathroom Private entry,20990306,Elizabeth,Brooklyn,Williamsburg,40.71345,-73.95,Entire home/apt,175,2,17,2019-06-24,1.83,2,0 +29008272,ASTORIA ROOM very nice with Balcony N/W train,43194941,Marco,Queens,Astoria,40.76322,-73.91132,Private room,80,1,7,2019-05-26,0.76,1,85 +29008767,FT GREENE STUDIO (1BD FEEL) NEAR ALL SUBWAYS,35594087,Shearly,Brooklyn,Fort Greene,40.68515,-73.97381,Entire home/apt,134,2,15,2019-05-26,1.91,1,41 +29008984,Studio,177177772,Delilah,Manhattan,Upper West Side,40.79639,-73.96889,Entire home/apt,150,2,8,2018-12-17,0.90,1,0 +29012098,Cozy Private Room,24283455,Igam,Brooklyn,Gravesend,40.59075,-73.98359,Private room,40,2,10,2018-12-30,1.11,2,0 +29012259,AVery neat one bedroom.,8925493,Yvonne,Brooklyn,Bedford-Stuyvesant,40.68252,-73.91165,Private room,55,3,1,2018-12-31,0.16,2,89 +29012563,Your Sanctuary in the city,1936796,JenJoy,Brooklyn,Williamsburg,40.71179,-73.9387,Private room,60,1,41,2019-06-28,4.42,2,5 +29013947,"Beautiful Bedroom in Bushwick, Brooklyn!",124069492,Maria,Brooklyn,Bushwick,40.70249,-73.92557,Private room,74,1,26,2019-06-30,2.90,2,34 +29014353,Ensuite bathroom paradise,393107,Catalina,Brooklyn,Carroll Gardens,40.68035,-73.99611,Private room,69,5,4,2019-04-24,0.45,1,0 +29015079,"Sunny, Modern Williamsburg Condo Steps from Train",218689235,John,Brooklyn,Williamsburg,40.71441,-73.95229,Entire home/apt,160,2,21,2019-07-02,3.28,1,335 +29015492,1Comfortable Shared Apt in Hell’s Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76249,-73.98807,Shared room,65,1,17,2019-06-23,4.77,8,198 +29016112,Cozy Newly Apartment Close To Manhattan,216641760,Jamie,Queens,Jackson Heights,40.75281,-73.87654,Entire home/apt,128,3,33,2019-06-28,4.01,1,325 +29016146,Ex-Large 2 Bedroom Apartment Harlem Delight!,218680572,Curtiss,Manhattan,Harlem,40.80879,-73.94813,Entire home/apt,250,28,7,2019-06-02,1.02,1,183 +29016907,Queens home in quiet neighborhood Room 2,155152907,Maria,Queens,St. Albans,40.70459,-73.76271,Private room,45,2,15,2019-06-30,1.67,2,262 +29025649,"Spacious, Cozy, ENTIRE One Bedroom Apartment",57699301,Irina,Brooklyn,Sunset Park,40.63902,-74.01837,Entire home/apt,100,28,4,2019-05-31,0.59,1,219 +29027131,COOL URBAN COMFORT - ARTSY BUSHWICK,200461550,Ben And Madi,Brooklyn,Williamsburg,40.70574,-73.92809,Private room,65,2,7,2019-01-12,0.77,1,255 +29027424,"Brand new apartment in Queens, NY",38153613,Farzona,Queens,Briarwood,40.71047,-73.81562,Private room,350,4,1,2018-10-07,0.11,1,90 +29027853,"Bright, spacious room with breakfast in New York",218762580,Heidrun,Manhattan,Harlem,40.8258,-73.95392,Private room,120,3,3,2019-03-26,0.36,1,295 +29028668,Beautiful Large NYC 1 Bedroom With Views,218770781,Mike,Manhattan,Morningside Heights,40.81088,-73.95677,Entire home/apt,135,2,4,2019-06-08,0.53,1,22 +29028761,#5 Quadruple private bedroom for 1-4 people,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81322,-73.91696,Private room,42,5,7,2019-07-01,1.08,4,321 +29031273,Cozy Artists Apartment in Central Harlem,218793561,Dmitri,Manhattan,East Harlem,40.80771,-73.93853,Private room,66,1,21,2019-06-20,2.63,1,64 +29031435,Cozy sun-soaked bedroom in Harlem,6564232,Umar,Manhattan,Harlem,40.81723,-73.93616,Private room,80,2,3,2018-12-09,0.34,1,0 +29031768,ROOM Astoria 8 min to NWR train nice Neighborhood,203231204,Marco,Queens,Astoria,40.76538,-73.91168,Private room,105,1,2,2018-12-02,0.23,1,359 +29034190,The NYC Getaway Space,9808458,Zain,Bronx,Kingsbridge,40.87072,-73.89974,Private room,65,2,0,,,4,364 +29034966,Modern Brooklyn Studio By The Beach,145002203,Bruno,Brooklyn,Brighton Beach,40.58001,-73.96266,Entire home/apt,80,1,51,2019-07-04,5.71,1,303 +29035162,Winter Escape in Classic Brooklyn Brownstone,125576446,Roz,Brooklyn,Prospect Heights,40.67861,-73.96999,Entire home/apt,400,32,1,2018-12-30,0.16,1,0 +29035769,Clinton Hill Sunny Room,218825786,Mariana,Brooklyn,Clinton Hill,40.68883,-73.96141,Private room,55,3,2,2019-01-05,0.31,1,0 +29035989,CAMAROTE SOLO PARA MUJERES/HABITACIÓN COMPARTIDA,215778245,Jessy & Christian,Queens,Corona,40.73894,-73.86477,Shared room,40,2,10,2019-06-09,1.19,6,356 +29036763,"15 minutes to Manhattan, Times square",147269347,Chad,Queens,Long Island City,40.75507,-73.91822,Private room,70,1,2,2019-07-07,2,1,342 +29037043,CB3 BROOKLYN,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94679,Private room,72,6,6,2019-05-23,0.76,3,66 +29037141,PRIVATE SINGLES CLEAN BEDROOM NY 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.83144,-73.86639,Private room,38,2,11,2019-04-21,1.29,3,188 +29037276,Affordable 5-P Room n Private bath,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00541,Private room,45,1,3,2019-05-26,0.42,7,357 +29037359,Astoria Hideaway,10732658,Rachel,Queens,Ditmars Steinway,40.76976,-73.90314,Private room,500,1,0,,,1,89 +29037483,Bronx Suite,218840878,Francisco,Bronx,Mott Haven,40.81017,-73.92266,Private room,79,2,2,2019-01-02,0.23,1,88 +29037588,Spacious Apartment Located By Central Park,212697613,Jon,Manhattan,Upper West Side,40.78857,-73.97072,Entire home/apt,295,3,19,2019-06-18,2.16,1,77 +29038532,Cozy Nest in the heart of Williamsburg Brooklyn,182306283,Noriko,Brooklyn,Williamsburg,40.71193,-73.95122,Entire home/apt,120,2,40,2019-06-28,4.88,1,13 +29038655,"Small Cozy Room in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76696,-73.91108,Private room,55,1,4,2019-01-02,0.45,3,0 +29039497,Apartment by Central Park,32987584,Maria,Manhattan,Upper West Side,40.79574,-73.96192,Private room,70,6,22,2019-05-31,2.42,1,0 +29039647,"ENJOY MANHATTAN +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.80958,-73.91895,Private room,120,1,29,2019-06-28,3.15,4,312 +29041626,Cosy room with Queen bed,27084741,Paul,Queens,Woodside,40.74459,-73.91167,Private room,90,1,2,2019-05-18,0.77,2,173 +29043928,Brooklyn Sanctuary,218883687,Parrish,Brooklyn,East Flatbush,40.63931,-73.94451,Private room,125,1,7,2019-01-01,0.76,2,364 +29051174,Hidden Gem in the Upper East Side,10989161,Michele,Manhattan,Upper East Side,40.77513,-73.94977,Entire home/apt,135,1,20,2019-03-12,2.74,1,1 +29051227,1BR in a Stunning LES apt -W/D /2Bath-Top Location,335046,Orit,Manhattan,Lower East Side,40.71241,-73.98913,Private room,120,3,5,2019-01-02,0.55,3,361 +29051841,Amazing Penthouse,213781715,Anting,Brooklyn,Greenpoint,40.73079,-73.95193,Entire home/apt,350,1,1,2018-11-10,0.12,33,0 +29051948,Industrial Loft Living in NYC,63952962,Drew,Bronx,Mott Haven,40.81102,-73.92778,Entire home/apt,81,4,5,2019-05-28,0.62,1,0 +29052179,Entire suite with breathtaking views of NYC,145981682,Simi,Manhattan,Theater District,40.75866,-73.98535,Entire home/apt,850,1,24,2019-06-19,3.51,3,269 +29054423,Spacious bedroom near to subway,79499558,Robertina,Queens,Jackson Heights,40.75346,-73.88397,Private room,68,4,22,2019-07-07,2.45,4,100 +29054576,New York on the Ocean,30895980,Elena,Brooklyn,Brighton Beach,40.57504,-73.95551,Entire home/apt,105,2,6,2019-06-24,0.85,2,332 +29054973,Jul Discount! Beautiful Apartment for 3 in NYC,188741104,Susan,Manhattan,Harlem,40.80872,-73.94274,Entire home/apt,200,31,25,2019-06-18,2.81,4,91 +29055747,British Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80445,-73.96373,Private room,75,1,29,2019-06-23,3.33,3,8 +29056345,"Modern, Bright, & Cheerful - Free Cleaning & WiFi",155297713,Marie & Tyler,Brooklyn,Bushwick,40.70529,-73.92535,Private room,40,30,1,2018-11-22,0.13,3,54 +29056566,Pretty Williamsburg Loft,169467786,Jovenne Naldrey,Brooklyn,Williamsburg,40.71001,-73.96101,Entire home/apt,215,1,5,2019-06-26,2.21,1,165 +29057244,"Bright & Cozy Private Room—Williamsburg, Brooklyn",8185593,Diana,Brooklyn,Williamsburg,40.70951,-73.95443,Private room,80,3,1,2018-10-28,0.12,1,8 +29058075,Quaint Bedroom in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.7111,-73.84099,Private room,150,2,1,2019-01-07,0.16,3,365 +29058512,Modern East Village Apt - Available Last Minute,447895,Adam,Manhattan,East Village,40.723,-73.97753,Entire home/apt,112,2,4,2019-04-21,0.50,1,0 +29058736,Spacious Basement Bedroom in Duplex w/ yard access,142833006,Cj,Brooklyn,Bushwick,40.70631,-73.92064,Private room,42,2,2,2019-01-21,0.26,1,0 +29058814,Designer Studio with Private Terrace,218978124,Jessica,Manhattan,Upper West Side,40.78127,-73.98366,Entire home/apt,80,3,10,2019-03-03,1.51,1,0 +29059214,Comfy Van,10407935,Meng,Manhattan,SoHo,40.72725,-74.00245,Entire home/apt,89,1,45,2019-06-30,4.93,8,34 +29059334,BSM.1. Shered room for 4-5 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66017,-73.9475,Shared room,25,2,4,2019-06-07,0.53,6,365 +29059349,Your TICKET to TIMES SQUARE New York,177396569,Yanina,Manhattan,Hell's Kitchen,40.76247,-73.99254,Entire home/apt,120,5,0,,,3,40 +29059533,4th floor art,183707967,Dionyssios,Manhattan,Washington Heights,40.85277,-73.92916,Entire home/apt,120,2,16,2019-06-23,1.80,4,365 +29059768,Gramercy 3 Bedroom - Central to Everything! #10294,28422641,Dylan,Manhattan,Gramercy,40.73551,-73.98546,Entire home/apt,350,2,29,2019-07-05,3.27,1,65 +29059870,Hostel - Twin-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70652,-73.91784,Shared room,25,4,14,2019-06-05,1.56,5,62 +29060392,Spacious Bedroom for 2 w/ washer/dryer + backyard,121836170,Rafael,Brooklyn,Bushwick,40.70229,-73.92223,Private room,85,1,40,2019-06-09,4.62,1,354 +29060585,Hostel - Full-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70431,-73.91584,Shared room,25,4,17,2019-06-23,1.88,5,80 +29061500,Cozy waterfront studio in downtown Manhattan.,40544318,Daniela,Manhattan,Battery Park City,40.71138,-74.01575,Entire home/apt,200,1,9,2019-01-01,1.01,1,0 +29061711,"In the heart of Hell’s Kitchen , Time Sqare.",76114530,Neetu,Manhattan,Hell's Kitchen,40.76177,-73.99426,Entire home/apt,575,6,0,,,1,83 +29063276,Comfy Minimalist Room W/ Private Entrance,22123619,Antoine,Brooklyn,Crown Heights,40.675,-73.91903,Private room,48,30,2,2018-11-01,0.23,2,89 +29063413,"Large luxury 1 BR with views, greenwich village!",30782359,Tracey,Manhattan,Greenwich Village,40.73069,-73.9932,Entire home/apt,350,2,5,2019-05-19,0.59,1,0 +29063485,★ Your Cozy Home I Taxi Service I Backyard ★,219012245,Denise,Brooklyn,Canarsie,40.63655,-73.91065,Entire home/apt,78,1,10,2019-06-16,2.17,1,3 +29063993,"Cosy Midtown New York Place, Ideal for 1 Person!",219016824,Xue,Manhattan,Chelsea,40.75049,-73.99809,Entire home/apt,69,1,2,2018-10-30,0.24,1,1 +29072168,Amazing Room w/ Private Bathroom - Near to Subway,179387087,John,Brooklyn,Bedford-Stuyvesant,40.67941,-73.90849,Private room,55,4,11,2019-04-28,1.20,3,0 +29073059,Fun in the Financial District,31218019,Stephanie,Manhattan,Financial District,40.70538,-74.00742,Shared room,150,2,11,2019-06-18,1.33,1,270 +29073462,Chill Room in soho,116381793,Jordan,Manhattan,SoHo,40.72182,-73.99963,Private room,134,1,3,2018-12-05,0.36,1,70 +29073911,Home,164538104,Javi,Queens,Maspeth,40.74079,-73.90057,Private room,42,1,1,2018-10-07,0.11,1,178 +29074124,"Private bedroom close to Times Square, Manhattan",219080539,Jose,Manhattan,Hell's Kitchen,40.76108,-73.99358,Private room,100,1,15,2019-06-10,1.74,1,27 +29074233,A Cozy Beautiful Brooklyn Overlooking Park space,49745989,Meir,Brooklyn,Crown Heights,40.67175,-73.9436,Entire home/apt,80,4,12,2019-07-04,1.86,1,29 +29075468,Modern room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.71168,-73.95626,Private room,67,1,15,2019-01-13,1.65,3,0 +29075705,Convenient room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.70987,-73.95818,Private room,66,1,45,2019-06-23,4.91,3,75 +29075810,COZY Single Bed @Williamsburg NY Lorimer Ltrain!,1104166,Mala,Brooklyn,Williamsburg,40.71164,-73.95173,Private room,95,2,7,2019-04-15,0.77,4,3 +29078251,"Park Avenue midtown apartment, walk to everything",1163709,Dc,Manhattan,Murray Hill,40.74836,-73.9807,Shared room,800,2,12,2019-06-27,1.40,1,220 +29078405,"MODERN 2BD WITH ROOFTOP, DOWNTOWN MANHATTAN",44129118,Anthony,Manhattan,Financial District,40.7105,-74.00845,Entire home/apt,249,20,0,,,2,0 +29079293,Luxury pied-à-terre in Carroll Gdns carriage hse,48806776,Amanda,Brooklyn,Carroll Gardens,40.68132,-73.99169,Entire home/apt,175,2,14,2019-05-25,2.05,1,119 +29079699,Midtown studio with balcony,8597272,Sammi,Manhattan,Hell's Kitchen,40.76479,-73.98831,Entire home/apt,200,5,2,2018-10-30,0.23,1,15 +29079912,Cozy place to stay 7 minutes from Manhattan...,210755291,Elizabete,Queens,Astoria,40.76172,-73.92098,Private room,100,3,2,2019-05-20,0.94,1,364 +29080980,"Best Homestay 25 min Manhattan , Barclays Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65554,-73.9184,Private room,70,7,0,,,9,365 +29081010,金色上房,190324721,Jun Jun,Queens,Flushing,40.75914,-73.83352,Private room,70,1,5,2019-06-04,0.82,4,5 +29081056,Cozy & Large NYC Private Suite!,48954003,Bradley,Bronx,Olinville,40.88453,-73.86273,Private room,80,2,20,2019-05-03,2.20,1,188 +29081059,Doris’s Fresh House,216065402,Lee,Queens,College Point,40.79439,-73.84675,Private room,60,2,19,2019-07-01,2.11,1,331 +29081201,Entire Space - Large Apartment - Clean 2&5 Trains,24103915,Godlove,Brooklyn,Flatbush,40.63517,-73.96221,Entire home/apt,89,1,22,2019-06-08,2.48,1,35 +29081288,"Great home stay,Manhattan Barclay Center 25minutes",94214493,Dadrine,Brooklyn,East Flatbush,40.65454,-73.91885,Private room,90,7,1,2019-06-02,0.79,9,365 +29081547,Cozy renovated NYC Gateway - 7 min M/R Train (2),158407820,Omar,Queens,Woodside,40.75368,-73.90216,Private room,53,2,33,2019-06-19,3.67,5,157 +29082165,Luxurious Huge Room Same Street As The Subway!,153500245,Isabela,Brooklyn,Bedford-Stuyvesant,40.67872,-73.90967,Private room,90,1,51,2019-06-24,5.56,2,224 +29082372,MJS HOME,219167320,Murat,Queens,Queens Village,40.71059,-73.74515,Entire home/apt,60,3,25,2019-06-17,3.16,1,143 +29082508,"Entire Brooklyn apartment, safe, quiet with garden",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62795,-73.96281,Entire home/apt,125,3,6,2019-06-23,0.71,3,173 +29082734,Sublet - Queen size bedroom in Bushwick,104351616,Ben,Brooklyn,Bushwick,40.70166,-73.93062,Private room,50,5,0,,,1,0 +29083751,PRIME LOCATION CLEAN SOHO PRIVATE ROOM 2 BEDROOM,26860800,Jonathan,Manhattan,SoHo,40.72614,-74.00076,Private room,115,1,31,2019-06-12,3.39,1,1 +29090040,Riverside doorman and concierge,21339635,Martin,Manhattan,Upper West Side,40.77708,-73.98791,Entire home/apt,138,3,24,2019-07-03,2.69,1,1 +29093302,Cozy quiet private room,41939513,Cynthia,Manhattan,Harlem,40.79913,-73.95357,Private room,120,5,3,2018-12-09,0.38,1,0 +29094342,Near JFK air train nice spot,219262205,Tony,Queens,Jamaica,40.70094,-73.81446,Private room,60,1,37,2019-03-09,4.17,1,0 +29095078,Beautiful room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65209,-74.01136,Private room,112,1,10,2019-05-02,1.15,2,0 +29095217,Charming Brooklyn 2 Bedroom w/Character,24738407,Matthew,Brooklyn,East Flatbush,40.63853,-73.94869,Entire home/apt,140,3,33,2019-07-02,4.01,2,116 +29095984,Upper East Side Spacious 2 BR with Balcony,24230637,Kartik,Manhattan,Upper East Side,40.77003,-73.95018,Entire home/apt,199,20,0,,,1,337 +29096185,Welcome to Woodside!,56177749,Zumunta,Queens,Woodside,40.74218,-73.90403,Private room,31,1,1,2018-10-14,0.11,1,0 +29096295,Clinton Hill loft for your creative side.,5953382,Matthew,Brooklyn,Bedford-Stuyvesant,40.69196,-73.95969,Entire home/apt,100,3,5,2019-01-09,0.57,1,0 +29096312,Rose in Spanish Harlem 2,202587815,Willie,Manhattan,East Harlem,40.79006,-73.94969,Private room,120,2,27,2019-06-18,3.29,2,188 +29096448,Unique Penthouse,213781715,Anting,Manhattan,NoHo,40.72904,-73.99344,Entire home/apt,225,1,2,2018-12-11,0.24,33,179 +29097320,Charming 1 Bedroom Apartment in Greenwich Village,11854642,James,Manhattan,West Village,40.73255,-74.00173,Entire home/apt,157,5,1,2018-11-26,0.13,1,0 +29097472,Unique bohemian modern apartment,157397904,Kimbe,Brooklyn,Williamsburg,40.71705,-73.96545,Entire home/apt,275,30,2,2019-05-08,0.68,1,77 +29098862,Quite room. 15 mins to JFK & 20 mins to Manhattan,219305025,Michael,Brooklyn,Cypress Hills,40.67855,-73.86961,Private room,80,1,3,2019-01-02,0.42,1,1 +29100541,"Private Room, Bath & Entry w/ Free Parking in NYC",22175061,Suket,Queens,Forest Hills,40.72096,-73.8539,Entire home/apt,99,2,44,2019-07-01,4.94,2,35 +29101869,Sunny apartment with piano + yard!,161873557,Natalia,Brooklyn,Bedford-Stuyvesant,40.69898,-73.94705,Entire home/apt,85,3,34,2019-07-01,4.36,1,42 +29101938,The Bronx Studio,219330285,Janice,Bronx,Wakefield,40.89385,-73.8448,Entire home/apt,80,3,6,2018-12-31,0.71,1,0 +29102760,Split level walk-in Masterbedroom,219333557,Rafael,Queens,East Elmhurst,40.76274,-73.86866,Private room,79,1,8,2019-06-02,1.26,7,96 +29103145,"Hip, Light & Plant Filled Studio in Prime Harlem",14953075,Laura,Manhattan,Harlem,40.81562,-73.94712,Entire home/apt,150,5,3,2018-12-02,0.38,1,0 +29103275,Central park lovely cozy room,218300830,Leona,Manhattan,Upper East Side,40.77345,-73.95386,Private room,100,1,76,2019-07-03,9.58,2,281 +29103450,Beautiful cosy room in a Luxury Building,59204717,Chantou,Brooklyn,Bedford-Stuyvesant,40.69156,-73.95307,Private room,87,2,3,2019-01-02,0.35,1,0 +29104053,Gem of East New York,219347424,Adonna,Brooklyn,East New York,40.66737,-73.87551,Private room,150,2,1,2018-12-14,0.14,2,354 +29104593,Upper East Side Cozy Private Room,218300830,Leona,Manhattan,Upper East Side,40.77375,-73.9541,Private room,100,1,59,2019-06-29,7.31,2,257 +29104786,Amazing room for your holidays,16965783,Luca,Manhattan,Harlem,40.82452,-73.94427,Private room,56,3,17,2019-06-22,2.63,1,228 +29105065,Private Crown Heights bedroom near 2/5 Trains,90996947,Alan,Brooklyn,Prospect-Lefferts Gardens,40.66226,-73.94855,Private room,70,2,4,2019-04-19,0.46,1,321 +29105563,Charming Brooklyn 1 Bedroom Apartment w/Character,24738407,Matthew,Brooklyn,East Flatbush,40.63905,-73.95046,Entire home/apt,120,3,23,2019-07-01,2.79,2,121 +29105864,Cozy UES studio,19739986,Adriana,Manhattan,Upper East Side,40.76731,-73.95843,Entire home/apt,155,1,50,2019-06-21,5.75,1,8 +29105910,HABITACION PRIVADA PARA TI EN NYC.. PRIVATE ROOM,115734913,Nahi,Bronx,Fordham,40.85791,-73.89528,Private room,39,2,24,2019-06-22,2.73,1,211 +29106442,Cute and roomy 2br Clinton Hill hideaway,46337258,Anna,Brooklyn,Clinton Hill,40.69416,-73.96866,Entire home/apt,200,3,2,2018-12-28,0.22,1,16 +29107308,"Cozy, Sunny Bedroom near Times Square/hk",67186748,Travis,Manhattan,Hell's Kitchen,40.76129,-73.9943,Private room,250,1,4,2018-12-16,0.44,1,365 +29109909,Cozy financial district manhattan spot,219383069,Melli,Manhattan,Financial District,40.70494,-74.00964,Entire home/apt,220,1,8,2019-06-06,0.89,1,0 +29113996,Lovely double bedroom in the centre of it all,24405003,Bianca,Manhattan,Chinatown,40.7147,-73.99279,Private room,106,2,9,2019-05-25,1.12,3,117 +29117381,"Queen bed behind living room curtain, cheap, good",15872352,Sifan,Queens,Rego Park,40.73095,-73.86411,Shared room,40,1,25,2019-07-03,2.90,2,78 +29117643,Cultured NYC 2.0,165607672,Mariela,Bronx,Fordham,40.85765,-73.90351,Private room,48,2,18,2019-04-13,2.00,2,34 +29119411,Cozy Studio Alcove in the heart of East Village!!,56648414,Anique,Manhattan,East Village,40.72759,-73.98786,Entire home/apt,125,1,11,2018-12-10,1.26,1,0 +29120854,"Large apt in trendy, hipster Ridgewood/Bushwick BK",2604247,Jason,Brooklyn,Bushwick,40.70426,-73.91308,Entire home/apt,150,5,1,2018-11-12,0.13,1,0 +29123516,Private Bathroom & Bedroom in Williamsburg,113411637,Joel,Brooklyn,Williamsburg,40.71954,-73.94329,Private room,68,2,5,2019-03-31,0.61,1,4 +29124172,"Private room by LGA, Citifield and near Manhattan.",219465297,Irwing,Queens,Jackson Heights,40.75491,-73.88313,Private room,49,2,10,2019-04-23,1.15,1,5 +29124414,Large 2 Bedroom Gem,12171344,Marta,Brooklyn,Crown Heights,40.66506,-73.95177,Entire home/apt,185,2,6,2019-06-16,0.79,2,2 +29124476,Lovely private bedroom in Manhattan,20825054,Andres,Manhattan,Inwood,40.86565,-73.92348,Private room,50,2,44,2019-07-07,4.85,1,271 +29125444,Cozy 1 bedroom in Murray Hill.,52083976,Kevin,Manhattan,Murray Hill,40.74466,-73.9737,Entire home/apt,140,1,0,,,1,0 +29126587,QUEEN BED - GREAT LOCATION NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69558,-73.94697,Private room,65,30,21,2019-05-13,2.31,3,365 +29126674,"HUGE Art-Loft Warehouse in Bushwick, Brooklyn",5759665,Cristóbal,Brooklyn,Bushwick,40.70752,-73.92217,Entire home/apt,120,2,9,2019-04-21,1.03,1,0 +29126779,One Bdrm Apt w/ Extraordinary Views of Downtown,218936218,Solina,Manhattan,Financial District,40.71148,-74.01283,Entire home/apt,230,3,8,2019-05-26,0.95,1,23 +29127425,Modern huge room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.69167,-73.948,Private room,60,1,7,2019-01-01,0.78,2,28 +29127613,Small & comfy Bedroom near Brooklyn college.,219499104,Monika,Brooklyn,Flatbush,40.6355,-73.95205,Private room,60,1,12,2019-06-10,1.34,1,90 +29128941,Private room in a Bohemian Bushwick Loft! c,96737879,Yury,Brooklyn,Williamsburg,40.70266,-73.93413,Private room,60,3,12,2019-06-30,2.55,3,73 +29129018,"AFFORDABLE ROOM, 5 MINUTES TO MANHATTAN!",217784241,Analia,Brooklyn,Williamsburg,40.70964,-73.95969,Private room,60,1,81,2019-06-21,8.97,4,0 +29129256,Large Shared Studio (your own bed) - Luxury+Views!,28531618,Wayne,Manhattan,Upper West Side,40.77169,-73.99117,Shared room,79,3,4,2019-07-01,0.50,1,76 +29129902,"Upper West Side, 1800 sq/ft private apartment",66361,Jasmine,Manhattan,Upper West Side,40.79566,-73.96954,Entire home/apt,275,2,8,2019-07-01,0.99,1,24 +29130366,Amazing place close to all,960248,Max/Patti,Manhattan,East Harlem,40.79511,-73.9373,Entire home/apt,220,3,21,2019-06-30,4.04,1,24 +29130381,24 Lex Prime Location of East NYC 15min to TimeSq,161057073,Stella,Manhattan,Kips Bay,40.73945,-73.98168,Entire home/apt,95,2,39,2019-06-22,4.33,4,74 +29130838,Cozy 1bd in Kensington,22474793,Alena,Brooklyn,Kensington,40.64046,-73.97233,Entire home/apt,130,1,2,2019-05-27,1.28,1,95 +29131447,Upper East Side room with full size bed,216944902,Janna,Manhattan,East Harlem,40.79055,-73.94867,Private room,85,1,6,2018-12-02,0.67,1,0 +29132306,BEST LOCATION IN NEW YORK:PRIVATE MEDIUM SIZE ROOM,183748836,Alex,Manhattan,Midtown,40.75829,-73.97259,Private room,120,1,44,2019-05-22,4.91,1,4 +29132322,Casa finca Zen Sanctuary Artist Home,895135,Suanny,Brooklyn,Williamsburg,40.70717,-73.94622,Entire home/apt,95,3,7,2019-05-30,0.93,3,363 +29132459,Brooklyn with a view,163046191,Elma,Brooklyn,Fort Greene,40.68257,-73.97139,Private room,45,30,1,2019-05-22,0.61,2,77 +29132608,Elmhurst 1st Fl Rightl Bedroom,219333557,Rafael,Queens,East Elmhurst,40.76294,-73.86883,Private room,49,1,17,2019-07-01,1.90,7,0 +29132728,Cozy and spacious 1-bedroom apartment,83907534,Leen,Manhattan,Kips Bay,40.74228,-73.97601,Entire home/apt,175,7,5,2019-06-14,0.66,1,32 +29133320,HUGE LOFT IN HIP BUSHWICK 1 - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70428,-73.92702,Private room,70,2,2,2019-06-19,2,3,358 +29133348,New! Entire studio apartment with lofted bedroom!!,72006801,Kevin,Queens,Ridgewood,40.70208,-73.91125,Entire home/apt,120,2,2,2018-11-24,0.24,1,5 +29133389,Awesome Budget Private Room with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69232,-73.94966,Private room,70,2,14,2019-06-23,1.65,3,365 +29133513,Elmhurst 1st Floor BR w/ Pvt. Bath&Balcony,219333557,Rafael,Queens,East Elmhurst,40.76251,-73.86765,Private room,59,1,17,2019-05-24,1.90,7,0 +29133980,"LGA airport Apt. near Manhattan, JFK, Citi Field.",219548329,Farhana,Queens,East Elmhurst,40.76971,-73.87273,Entire home/apt,99,1,34,2019-06-24,3.76,1,166 +29134423,Your Brooklyn paradise,219548549,Kennedy,Brooklyn,Bushwick,40.69272,-73.92067,Private room,155,1,1,2018-10-13,0.11,2,365 +29134543,Cozy Waterfront Space in Brooklyn,217075214,Judyann,Brooklyn,Canarsie,40.64116,-73.88346,Entire home/apt,125,3,3,2019-06-26,0.43,1,85 +29135220,Parisian Style Apartment in Heart of Brooklyn,32830245,Dora,Brooklyn,Prospect Heights,40.68063,-73.97334,Entire home/apt,180,2,9,2019-06-13,1.01,1,0 +29135488,"Cozy Room, 2 twin beds, NEAR TRAIN AND AIRPORTS",219099148,Valeria,Queens,Ridgewood,40.70605,-73.90374,Private room,50,1,14,2018-12-28,1.70,1,272 +29135797,Stylish bright and newly renovated,219558480,Lena,Manhattan,East Village,40.72876,-73.98655,Entire home/apt,187,7,4,2019-01-03,0.47,1,56 +29136920,REDESIGNED LUX Studio&garden Park Slope Brooklyn!,87786261,Sophia,Brooklyn,South Slope,40.66238,-73.98742,Entire home/apt,179,2,9,2019-06-23,1.03,5,152 +29138655,RENOVATED LUXURY 3BR 3BATH ON LITTLE WEST STREET,200380610,Pranjal,Manhattan,Battery Park City,40.70587,-74.01773,Entire home/apt,433,180,0,,,65,364 +29144832,Luxurious home in the sky overlooking 5th Ave.,214270886,Maka,Manhattan,Midtown,40.75138,-73.98143,Entire home/apt,300,1,10,2019-02-01,1.15,1,0 +29146109,CozyPlace 20%off Week Pvt Entrance 18min Manhattan,28260018,Ivan,Queens,Ditmars Steinway,40.77612,-73.90456,Private room,96,1,63,2019-06-17,7.08,1,80 +29146373,Huge 1 Bedroom 3F in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69263,-73.93992,Private room,75,2,22,2019-07-01,2.45,6,308 +29146446,Charming 1 Bedroom on the best block in BK Heights,3959013,Clarke,Brooklyn,Brooklyn Heights,40.69228,-73.99768,Entire home/apt,151,5,4,2019-04-18,0.63,1,27 +29148367,Stunning 2 Bedroom in Soho,61391963,Corporate Housing,Manhattan,Little Italy,40.71881,-73.99675,Entire home/apt,165,30,2,2019-06-27,0.33,91,347 +29148550,Luxurious Apt Best Finishes & Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74472,-73.97932,Entire home/apt,125,30,1,2019-06-20,1,91,352 +29149191,CLASSIC/ BRIGHT 1 BEDROOM IN UNION SQUARE,200380610,Pranjal,Manhattan,Gramercy,40.73261,-73.98398,Entire home/apt,180,30,0,,,65,364 +29149612,Cute Private Room in Astoria Duplex,21030441,Nathalie,Queens,Astoria,40.76836,-73.91506,Private room,87,2,20,2019-06-30,3.24,1,282 +29149618,Confortable room in East Village,7795299,Margaux,Manhattan,Gramercy,40.73254,-73.98207,Private room,100,3,8,2019-07-07,1.00,1,13 +29150743,Spacious Apartment with a View in Williamsburg,7912469,Pedro,Brooklyn,Williamsburg,40.70695,-73.94913,Private room,50,2,3,2018-11-15,0.34,1,0 +29150883,BEAUTIFUL UPPER WEST SIDE-WEST 83RD STREET,200380610,Pranjal,Manhattan,Upper West Side,40.7854,-73.97532,Entire home/apt,215,30,0,,,65,365 +29151631,The warm place,219666829,Charlotte,Queens,Bay Terrace,40.77971,-73.77857,Shared room,32,2,6,2019-06-23,0.95,1,169 +29152037,"Private artist bedroom in Bushwick, Brooklyn",219669515,Sasha,Brooklyn,Bushwick,40.70328,-73.92006,Private room,50,2,6,2019-06-19,5.62,1,10 +29152320,Gem of East New York,219347424,Adonna,Brooklyn,East New York,40.66788,-73.87339,Entire home/apt,150,2,6,2019-04-28,0.69,2,171 +29152795,Hostel- Twin-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70442,-73.91707,Shared room,25,4,27,2019-06-18,3.01,5,49 +29152899,Private room in E. Williamsburg! Budget friendly!,9770822,Andrea,Brooklyn,Williamsburg,40.71233,-73.93781,Private room,55,3,13,2019-06-22,1.55,1,36 +29153170,Nicely decorated apt with amazing private rooftop!,219678120,Jean,Brooklyn,Crown Heights,40.67419,-73.92173,Entire home/apt,200,3,21,2019-06-10,2.79,1,327 +29153508,"Spacious, brand-new Downtown Brooklyn apartment",17604711,Dora,Brooklyn,Downtown Brooklyn,40.6904,-73.98502,Entire home/apt,135,9,5,2019-07-05,0.62,1,12 +29155175,Private Sun-Drenched 1BR Brownstone Apt,11823440,Kisha,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92306,Entire home/apt,129,3,42,2019-07-07,4.81,1,233 +29156377,Historic Harlem New York Get-Away with charm,219462780,Curtis Green,Manhattan,Harlem,40.82746,-73.94718,Private room,60,2,1,2018-12-14,0.14,1,83 +29157211,Angeles aparment,95921282,Walter,Queens,Richmond Hill,40.68308,-73.81649,Entire home/apt,165,2,29,2019-06-24,3.23,1,362 +29157794,Full size room for rent,181885938,Ismael,Queens,Elmhurst,40.73288,-73.87177,Private room,55,2,8,2019-06-29,0.90,2,315 +29157984,Double Bedroom in Modern Manhattan Apartment,219717193,Jessie,Manhattan,Gramercy,40.73288,-73.98251,Private room,59,5,18,2019-06-21,2.01,2,5 +29158199,한성 韓城 Han C (2F),92706260,Kane,Queens,Flushing,40.76126,-73.81443,Private room,45,1,58,2019-06-20,6.42,5,75 +29158470,South Slope Townhome,219725282,Jacqueline,Brooklyn,Sunset Park,40.66051,-73.99081,Entire home/apt,400,2,3,2019-04-27,0.40,1,0 +29158675,"Amazing & Cozy Room, Same Street As The Subway!",219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67737,-73.90935,Private room,75,1,43,2019-06-23,4.80,4,52 +29158689,Brooklyn APT in heart of urban NYC hustle & bustle,41209536,Andrew,Brooklyn,Bedford-Stuyvesant,40.69732,-73.93684,Entire home/apt,125,3,19,2019-06-21,2.27,1,225 +29159486,Bright & Cheerful - Modern Style + Free Cleaning,155297713,Marie & Tyler,Brooklyn,Bushwick,40.70531,-73.92592,Private room,39,30,1,2019-05-31,0.77,3,38 +29159920,Suite East Side - FREE street parking & wifi,219738858,Joe,Manhattan,Lower East Side,40.72074,-73.98487,Entire home/apt,195,30,21,2019-06-21,2.43,5,117 +29160008,Cobble Hill Alcove Studio,112794720,Joshua,Brooklyn,Carroll Gardens,40.68386,-73.99807,Entire home/apt,125,1,1,2019-05-25,0.65,1,34 +29160599,Private bedroom in Washington Heights,219746152,Sonia And Lissette,Manhattan,Washington Heights,40.83788,-73.9402,Private room,60,3,8,2019-06-10,1.15,1,2 +29161516,Cozy Private Room in Brooklyn,51699123,Bo,Brooklyn,Bushwick,40.69854,-73.91086,Private room,70,2,29,2019-06-24,4.73,2,121 +29162918,ELMHURST/FLUSHING 1ST FLOOR 3BEDROOM APT.,219333557,Rafael,Queens,East Elmhurst,40.76236,-73.86862,Entire home/apt,149,1,40,2019-06-24,5.00,7,0 +29162974,Private Room in a Recently Remodeled Apt Bushwick,52484523,Andres,Brooklyn,Bushwick,40.70247,-73.91409,Private room,100,3,4,2019-05-26,0.59,1,0 +29163083,Warm and Cozy two bedroom in prime Chelsea,217792112,George,Manhattan,Chelsea,40.74889,-74.00132,Entire home/apt,320,3,40,2019-06-16,4.53,1,95 +29165306,15% Discount - Cozy Room in LES with Backyard,219782181,Vince,Manhattan,Lower East Side,40.715,-73.98596,Private room,80,1,22,2019-06-17,2.54,3,123 +29165823,Sunny Newly Renovated Private Room - Bed-Stuy,219785279,Uchenna,Brooklyn,Bedford-Stuyvesant,40.68131,-73.95254,Private room,79,2,18,2019-06-12,2.10,1,74 +29167257,Multicultural House II,203123161,Luis,Bronx,Concourse,40.82132,-73.92884,Entire home/apt,100,3,24,2019-06-30,3.44,2,187 +29168569,"Home For Medical Professionals - ""The Macula""",26377263,Stat,Brooklyn,East Flatbush,40.65385,-73.93657,Private room,53,19,0,,,43,347 +29170235,"Home For Medical Professionals - ""The Palatine""",26377263,Stat,Brooklyn,East Flatbush,40.65405,-73.93657,Private room,53,30,0,,,43,311 +29170953,Spacious Superhost BK RM! Easy Manhattan acess!,137358866,Kazuya,Brooklyn,Bushwick,40.69248,-73.91189,Private room,43,30,0,,,103,157 +29171435,Gorgeous Brownstone Studio @ Central Park West,103368847,Sasha,Manhattan,Upper West Side,40.78579,-73.97148,Entire home/apt,150,2,25,2019-06-28,4.36,1,129 +29173351,"1 Rm in 4 BR East Vil-King bd, Roof,prime location",62167677,Joshua,Manhattan,East Village,40.72784,-73.98473,Private room,60,8,1,2019-03-28,0.29,2,0 +29174021,"Cosy, friendly room in great part of Bed Stuy!",122551862,Marian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.94528,Private room,41,2,18,2019-06-15,2.23,2,18 +29176864,136 Apt 7,159435936,Jonathan,Manhattan,Upper West Side,40.78833,-73.97182,Entire home/apt,85,30,2,2019-02-26,0.44,3,118 +29176897,Semi-private bedroom. Close 2 Times Square,219848970,Javier,Manhattan,Hell's Kitchen,40.76219,-73.99493,Shared room,69,1,30,2019-06-20,3.40,2,335 +29178331,Farm house style in Bay Ridge (A),31760835,Fon,Brooklyn,Bay Ridge,40.6339,-74.03049,Private room,65,1,10,2019-01-01,1.13,4,4 +29178713,Farm house style home in Bay Ridge (B),31760835,Fon,Brooklyn,Bay Ridge,40.63504,-74.0289,Private room,65,1,7,2019-01-09,0.78,4,189 +29178995,Farm house style home in Bay Ridge (C),31760835,Fon,Brooklyn,Bay Ridge,40.63409,-74.02887,Private room,65,1,8,2019-05-05,0.92,4,98 +29179815,Excellent Private Room,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9404,Private room,60,2,29,2019-06-02,3.95,3,292 +29179918,Basemnt,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69342,-73.93884,Private room,58,2,0,,,3,317 +29180542,Newly renovated duplex home in Central Harlem,219879114,Tricia,Manhattan,Harlem,40.81182,-73.94331,Entire home/apt,159,2,26,2019-06-09,3.05,1,343 +29181147,Cozy private room near Columbia University,41541593,Zoe,Manhattan,Upper West Side,40.80324,-73.96555,Private room,70,10,4,2019-01-15,0.49,1,19 +29181179,Charming Studio Apartment at East Harlem.,37736307,Rafael,Manhattan,East Harlem,40.78731,-73.94889,Private room,110,2,8,2019-06-30,0.95,2,14 +29181281,A Suite with breathtaking views of NYC !,145981682,Simi,Manhattan,Theater District,40.75982,-73.98418,Private room,999,1,12,2019-02-11,1.40,3,213 +29181449,Double Bedroom in BedStuy/Clinton Hill/Fort Greene,186349150,Kit,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95405,Private room,75,1,3,2018-11-12,0.34,1,0 +29181504,Over-sized amazing studio in East Village!,35957140,Oz,Manhattan,East Village,40.72941,-73.98094,Entire home/apt,150,4,9,2019-05-30,1.12,1,0 +29181842,Charming East Village 1 Bedroom Apartment,46589590,Shabnam,Manhattan,East Village,40.72449,-73.98384,Entire home/apt,114,14,0,,,1,19 +29183047,Amber Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6929,-73.95513,Private room,49,2,15,2019-06-24,1.70,34,306 +29183204,Brand new private room in new building w Roofdeck,54677106,Alan,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94084,Private room,41,1,6,2019-03-17,0.66,2,0 +29183445,New 2bd 2bat Apt. w/ rooftop Manhattan view & gym,54677106,Alan,Brooklyn,Bedford-Stuyvesant,40.67825,-73.94068,Entire home/apt,175,2,1,2018-10-30,0.12,2,0 +29183470,Apatite Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69228,-73.95677,Private room,49,2,12,2019-06-24,1.35,34,305 +29183581,Little Italy Sunny 2 Bedroom,116976293,Topher,Manhattan,Little Italy,40.71865,-73.99847,Entire home/apt,225,3,0,,,2,0 +29183697,Citrine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69436,-73.95526,Private room,65,2,11,2019-07-03,1.31,34,282 +29183838,Emerald Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69261,-73.95706,Private room,49,2,10,2019-06-18,1.14,34,313 +29183932,Garnet Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95528,Private room,49,2,9,2019-06-05,1.02,34,312 +29184026,Lava Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69366,-73.95563,Private room,65,2,7,2019-06-22,0.80,34,285 +29184093,Opalite Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69263,-73.95583,Private room,49,2,9,2019-07-03,1.02,34,308 +29184419,"20 minutes from Manhattan, 1 block from subway",492457,Jay,Queens,Woodside,40.74364,-73.90222,Private room,50,2,14,2019-05-26,1.57,1,308 +29184626,Modern Bright Private Entry 3min to TRAIN near JFK,89680730,Terry,Brooklyn,Brownsville,40.66399,-73.91913,Private room,45,1,16,2019-07-04,6.86,1,139 +29184845,Haven In Harlem,17892150,Lancelot,Manhattan,Harlem,40.81295,-73.95304,Private room,60,3,35,2019-06-19,4.10,1,5 +29184981,Cute Apartment in Brooklyn,25767215,Sofia,Brooklyn,Crown Heights,40.67792,-73.9484,Private room,99,1,9,2019-06-19,1.18,1,249 +29186254,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.72839,-73.99225,Entire home/apt,225,1,8,2019-06-06,1.62,33,179 +29188542,SUN DRENCHED 1 BEDROOM IN THE LOWER EAST SIDE,8053333,Stefanie,Manhattan,Chinatown,40.71722,-73.99242,Entire home/apt,105,2,15,2019-06-18,1.67,1,160 +29189777,"Bed&Bushwick | Clean & Chic Apt, Close to Subway",219924114,Mella & Justin,Brooklyn,Bushwick,40.6954,-73.92723,Entire home/apt,115,3,38,2019-07-01,4.40,1,131 +29190199,"Quick walk to L Train, Free Cleaning & WiFi!",105506002,Martin & Steve,Brooklyn,Williamsburg,40.7126,-73.93982,Private room,44,30,1,2019-06-09,1,1,84 +29190221,Cozy room in Brooklyn. 40 min to Manhattan.,172986033,Boris,Brooklyn,Bensonhurst,40.61023,-73.99627,Private room,39,1,0,,,1,0 +29191564,"GORGEOUS APARTMENT, PERFECT HARLEM LOCATION!",29104701,Patrice,Manhattan,Harlem,40.80055,-73.95501,Entire home/apt,150,3,16,2019-06-14,2.22,1,50 +29191862,Room in a Lovely Apartment in Upper East Side,219981147,Amanda & Rafael,Manhattan,Upper East Side,40.76869,-73.95007,Private room,150,2,8,2019-02-10,0.92,1,0 +29192462,Spacious apartment in front of Prospect Park,42735733,Slava,Brooklyn,Crown Heights,40.66392,-73.95994,Entire home/apt,110,1,52,2019-06-28,5.98,1,81 +29202087,Modern WBurg Castle in w/ Park & Skyline Views,8917825,Jordan,Brooklyn,Greenpoint,40.72004,-73.95424,Entire home/apt,199,2,11,2019-02-01,1.49,1,0 +29203845,Chic & Charming Brownstone Apartment 2 Bed w/Patio,3849025,Ana,Brooklyn,Bedford-Stuyvesant,40.69391,-73.94352,Entire home/apt,180,5,18,2019-06-12,2.18,1,106 +29205007,Parkside Place,217970334,Linda,Bronx,Norwood,40.87448,-73.87412,Entire home/apt,200,1,13,2019-07-07,6.61,1,0 +29205817,Little Safe Haven,220055820,Lillian,Manhattan,Harlem,40.82494,-73.9428,Private room,80,2,15,2019-07-03,1.73,1,143 +29205903,"Hidden gem in LES with Access to Backyard, F train",219782181,Vince,Manhattan,Lower East Side,40.71451,-73.98789,Private room,78,1,22,2019-06-16,2.53,3,91 +29206093,Modern Furnished 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70876,-73.96592,Entire home/apt,120,29,0,,,7,0 +29206535,Superior One Bedroom Apartment in Prime Brooklyn,220060177,Alan,Brooklyn,Bushwick,40.69471,-73.90687,Private room,75,3,6,2019-05-11,0.74,2,365 +29209379,"Green Rm,4 bdrm House Medical & Professional ONLY",214611101,Myra,Brooklyn,Kensington,40.638,-73.97652,Private room,50,30,1,2018-12-01,0.14,4,130 +29209396,Room with King sized bed in the heart of Bushwick,200182757,Rosie,Brooklyn,Bushwick,40.70696,-73.9199,Private room,50,2,31,2019-06-20,3.86,2,273 +29210330,Perfect share apartment near Little Italy!,1613244,Ariel,Manhattan,Lower East Side,40.72143,-73.9931,Entire home/apt,170,30,0,,,9,336 +29210994,"Orange Rm, 4bd rm Home Medical & Professional ONLY",214611101,Myra,Brooklyn,Kensington,40.63765,-73.97711,Private room,45,30,2,2019-02-28,0.26,4,42 +29212676,Large soho apartment,28823649,Rose,Manhattan,SoHo,40.72405,-74.00073,Entire home/apt,194,1,0,,,3,89 +29212737,PrivateRoom2/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.78029,-73.8184,Private room,49,1,50,2019-06-30,5.58,3,87 +29213095,Blue rm 4bdrm Home Medical & Professionals ONLY,214611101,Myra,Brooklyn,Kensington,40.63678,-73.97625,Private room,40,30,1,2019-06-30,1,4,120 +29213401,PrivateRoom/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.77945,-73.82029,Private room,35,1,35,2019-07-06,3.87,3,86 +29213886,Charming NEW Nordic Style 1-bed apartment,7956889,K,Brooklyn,Bushwick,40.68864,-73.91295,Entire home/apt,86,28,3,2019-07-02,0.43,1,66 +29214672,Beautiful spacious apt in the heart of Bushwick,7638924,Ioana,Brooklyn,Bushwick,40.70466,-73.9177,Entire home/apt,130,4,0,,,1,0 +29215351,Private! Entire loft near the waterfront!,220121415,Min,Brooklyn,Williamsburg,40.7075,-73.96576,Entire home/apt,96,3,22,2019-06-04,2.59,1,58 +29215529,CHARMING & SPACIOUS CENTRALLY LOCATED STUDIO APT,217996544,Ofir,Manhattan,Kips Bay,40.74139,-73.98132,Entire home/apt,199,30,0,,,2,365 +29215541,Private Apartment,219502160,Aneel,Queens,Ozone Park,40.68005,-73.85552,Entire home/apt,150,5,3,2019-07-01,0.35,1,317 +29215600,Charming cozy bedroom in Clinton Hill!,1303899,Nicolas,Brooklyn,Clinton Hill,40.68933,-73.96082,Private room,45,3,1,2018-10-18,0.11,1,189 +29216228,Sunny apartment in the heart of Greenpoint!,66473223,Roger,Brooklyn,Greenpoint,40.73324,-73.95332,Entire home/apt,110,3,1,2019-06-01,0.79,1,0 +29216296,Feel at home!,23703328,Dada,Queens,Kew Gardens,40.71163,-73.82752,Private room,59,1,24,2019-06-30,2.76,1,32 +29216706,NEW Perfect cozy 1 BDRM near JFK & Casino NYC LGA,220129825,Carlton,Queens,Jamaica,40.67379,-73.78187,Entire home/apt,150,1,75,2019-07-01,9.30,2,69 +29216716,Sunny Room with Private Bath,29285454,Marie,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94318,Private room,55,5,2,2019-01-03,0.30,1,297 +29217721,Large 1 Bedroom Brownstone Apartment,30811338,Joseph,Brooklyn,Bedford-Stuyvesant,40.6919,-73.93866,Entire home/apt,89,2,18,2019-06-22,2.10,1,209 +29218719,Private room near Prospect Park,49421712,Mariana,Brooklyn,Prospect-Lefferts Gardens,40.65945,-73.96145,Private room,55,1,32,2019-07-05,3.81,1,0 +29219456,2 Beds in Private Room 1- 20 minutes to Manhattan,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69441,-73.94848,Private room,65,2,14,2019-06-10,1.85,4,365 +29220176,American Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80303,-73.96336,Private room,80,1,48,2019-06-17,5.54,3,7 +29220410,Canadian Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80423,-73.96334,Private room,75,1,23,2019-06-11,2.74,3,8 +29220437,Brooklyn home with character & convenience,213251818,Debora,Brooklyn,Brownsville,40.66835,-73.92335,Entire home/apt,90,3,26,2019-07-07,3.17,1,138 +29221565,Modern art-filled bedroom with vintage touch.,68284975,Dio,Brooklyn,Bushwick,40.69375,-73.92496,Private room,66,2,8,2019-06-06,0.97,2,90 +29225254,Clever Midtown West 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76125,-73.99546,Entire home/apt,264,30,1,2019-01-10,0.17,232,187 +29225417,"Large UWS 1BR w/ Stunning Gym, Doorman + Rooftop by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.78892,-73.97402,Entire home/apt,244,30,1,2019-01-31,0.19,232,218 +29227134,Your New York Home,213781715,Anting,Brooklyn,Greenpoint,40.733,-73.95309,Private room,119,1,0,,,33,180 +29227369,Artist Penthouse,213781715,Anting,Manhattan,NoHo,40.72839,-73.99133,Entire home/apt,225,1,3,2019-03-08,0.35,33,179 +29228604,2 bedroom CONDO off 5th Ave - BRIGHT and homey,220197047,Sara And Hila,Manhattan,East Harlem,40.80173,-73.94517,Entire home/apt,280,30,32,2019-07-02,3.69,1,112 +29230390,Your New York Penthouse,213781715,Anting,Manhattan,NoHo,40.7287,-73.99184,Entire home/apt,225,1,0,,,33,364 +29230470,Suite Nest /free street parking+wifi,219738858,Joe,Manhattan,Stuyvesant Town,40.73092,-73.98146,Entire home/apt,200,30,16,2019-07-01,2.47,5,164 +29231873,1Master BR in a Brand new apt W/D- By Subway,335046,Orit,Manhattan,Lower East Side,40.71271,-73.99084,Private room,150,3,9,2019-06-07,1.11,3,219 +29231876,"Penthouse studio- clean, A+ location. Park&Cafe :)",42153340,Boomer,Brooklyn,Greenpoint,40.72291,-73.9487,Entire home/apt,122,2,38,2019-06-30,4.44,2,211 +29231943,Private Room in a Quaint 2bd/1ba w/ TERRACE!!!,7556128,N.L.,Manhattan,East Village,40.72762,-73.98118,Private room,150,7,2,2018-10-28,0.23,2,45 +29232472,Overnight Bed in Heart of Manhattan for Female,194031970,Demir,Manhattan,Hell's Kitchen,40.76437,-73.98775,Shared room,100,1,1,2019-02-13,0.21,3,212 +29232638,Sweet Brooklyn,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68205,-73.8822,Private room,62,2,1,2018-12-16,0.15,3,179 +29232662,Charming Apartment with TERRACE!!,7556128,N.L.,Manhattan,East Village,40.72789,-73.98236,Entire home/apt,240,2,12,2019-06-04,1.51,2,0 +29232781,Cozy private room+bathroom in brooklyn!,3659719,Dedy,Brooklyn,Bushwick,40.70644,-73.9193,Private room,46,2,28,2019-07-05,3.22,1,23 +29233046,PRIVATE room w/PARKING included-15Min to LGA&JFK!!,146449899,Fabian,Queens,Flushing,40.74538,-73.83489,Private room,49,1,57,2019-06-30,6.71,2,143 +29233568,Cozy apartment in PERFECT location!,41083526,Brenda,Queens,Sunnyside,40.74529,-73.92176,Shared room,50,1,9,2019-03-23,1.03,2,0 +29233640,Gorgeous Big 2 BedRoom Apt in Brooklyn Brownstone,220232423,Ella,Brooklyn,Bay Ridge,40.63432,-74.02663,Entire home/apt,119,1,32,2019-07-03,3.60,1,276 +29233981,Williamsburg One Bedroom,1713685,Jessica,Brooklyn,Williamsburg,40.71295,-73.9628,Entire home/apt,125,1,11,2019-06-20,1.30,1,39 +29234766,Sunlit 1 Bedroom in the heart of Park Slope,220242803,Samaya,Brooklyn,Park Slope,40.68086,-73.98002,Entire home/apt,140,3,23,2019-06-27,3.15,1,285 +29236294,Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72858,-73.99141,Entire home/apt,179,1,4,2019-05-20,0.47,33,179 +29237220,Polished 2 BR/2BA Home in Chic W. Village#10298,8354383,Sara,Manhattan,West Village,40.73756,-74.00755,Entire home/apt,600,5,7,2018-12-16,0.84,1,210 +29237561,Sunny New York Home in East Village,24074596,Vivian,Manhattan,East Village,40.73031,-73.98018,Entire home/apt,145,3,7,2019-06-09,0.91,1,4 +29237692,Professional Travelers,24000784,Robert,Brooklyn,Sunset Park,40.64513,-74.01279,Private room,45,1,5,2019-05-17,0.57,4,32 +29237852,Private room 3 min walking to J train(female only),219930693,Viktoriia,Queens,Woodhaven,40.69034,-73.86268,Private room,90,2,9,2019-06-24,1.03,2,180 +29238286,Greenpoint Apt with a wonderful view !,171630463,Mickael,Brooklyn,Greenpoint,40.73812,-73.95649,Entire home/apt,150,3,4,2019-01-03,0.47,1,0 +29238785,Romantic space at the Upper East side of Manhattan,146224146,Sasha,Manhattan,Upper East Side,40.76006,-73.96136,Entire home/apt,135,3,8,2019-01-01,0.89,1,0 +29238906,Garden apartment in historic Brooklyn townhouse.,6701152,Jenny,Brooklyn,Bedford-Stuyvesant,40.68982,-73.95818,Entire home/apt,135,3,18,2019-07-07,2.19,1,307 +29240070,New York Wall St. RH29,135247339,Ron,Manhattan,Financial District,40.70604,-74.00869,Private room,370,4,0,,,1,89 +29241662,Artsy Apartment - Large Bedroom in Upper Manhattan,220307306,Tatianna,Manhattan,Washington Heights,40.85712,-73.9277,Private room,90,1,4,2018-11-11,0.46,1,0 +29242098,Large Private Bedroom in a Spacious Apartment,41945759,Angely,Manhattan,Washington Heights,40.85671,-73.92735,Private room,165,1,3,2018-12-29,0.35,1,0 +29242305,Charming Studio in the Heart of Greenwich Village,16955151,Savanna,Manhattan,West Village,40.73079,-74.00268,Entire home/apt,195,2,10,2019-06-11,1.16,1,3 +29242564,Private room 17 mins to Times Square.,93732420,Tim,Queens,Astoria,40.76412,-73.92185,Private room,65,2,27,2019-07-05,3.24,2,59 +29242599,Beautiful brownstone duplex in prime UES location,7138174,Anne-Marie,Manhattan,Upper East Side,40.78537,-73.95037,Entire home/apt,500,4,3,2019-06-28,0.48,1,11 +29243359,Shared Apt living-room w/pull out click open couch,220322871,Elisa,Manhattan,Upper East Side,40.77156,-73.95716,Shared room,75,1,1,2018-10-22,0.12,1,365 +29243499,"Mellow, Stylish Bedroom close to Pratt #1",7305006,Jessica,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95878,Private room,60,6,8,2019-05-24,1.10,2,144 +29245492,Charming White Bedroom close to Pratt #2,7305006,Jessica,Brooklyn,Bedford-Stuyvesant,40.69137,-73.95878,Private room,59,6,12,2019-05-18,1.53,2,54 +29251636,LUXURY Brooklyn Brownstone 1 block from train,220378888,Eg,Brooklyn,Bay Ridge,40.63093,-74.02363,Entire home/apt,175,1,27,2019-06-18,3.07,1,276 +29253322,"Female only, Private room,3 min walking to metro J",219930693,Viktoriia,Queens,Woodhaven,40.69102,-73.86089,Private room,90,2,11,2019-05-27,1.24,2,89 +29254887,Quiet master bedroom on Fort Greene Park,12982906,Kate,Brooklyn,Fort Greene,40.69146,-73.97378,Private room,110,2,0,,,3,66 +29255501,Private Brooklyn Basement Apartment,59627203,Majd,Brooklyn,Windsor Terrace,40.65116,-73.97881,Entire home/apt,125,5,2,2019-05-26,0.27,1,0 +29255502,Private room in apartment,12982906,Kate,Brooklyn,Fort Greene,40.69367,-73.97383,Private room,120,2,0,,,3,280 +29256134,Brooklyn Heights contemporary studio apartment,8730700,Scott,Brooklyn,Brooklyn Heights,40.69863,-73.9937,Entire home/apt,88,20,3,2019-07-08,1.14,1,23 +29256229,Crown Heights Urban Royal Penthouse,2715012,Maurice,Brooklyn,Crown Heights,40.67415,-73.94007,Entire home/apt,175,2,4,2019-05-04,0.64,3,325 +29256358,Studio apartment in Sunset park,141853769,Boris,Brooklyn,Borough Park,40.64459,-73.99951,Entire home/apt,100,2,10,2019-07-03,4.41,1,24 +29256706,Brooklyn Room & Driveway,220419710,Colette,Brooklyn,Flatlands,40.62453,-73.92479,Private room,175,2,3,2019-06-18,1.73,1,275 +29256787,Academic pad,177110165,Piro,Brooklyn,Gowanus,40.66811,-73.99451,Entire home/apt,121,5,1,2019-04-04,0.31,1,45 +29256968,Clean Room in Hip Neighborhood,85221704,Quincy,Manhattan,Harlem,40.83096,-73.95016,Private room,89,25,1,2018-11-12,0.13,1,18 +29256982,Apartment in a Brownstone Steps from Prospect Park,13744738,Yana,Brooklyn,South Slope,40.66177,-73.98198,Entire home/apt,200,3,0,,,1,1 +29257026,Cozy Private 1 Bedroom in a 2 Bedroom Shared Area,168619140,Terry,Brooklyn,Canarsie,40.63764,-73.91556,Private room,58,2,1,2019-03-11,0.25,2,0 +29257038,"Soho Gem: A Modern, Zen 1BR in Nolita.",193473122,Renwick,Manhattan,Little Italy,40.71962,-73.99682,Entire home/apt,150,3,10,2019-06-08,1.15,1,9 +29258871,Bushwick Apartment with Access to L and M Trains,220297196,Oliver,Brooklyn,Bushwick,40.69905,-73.91874,Private room,35,1,5,2019-02-04,0.57,1,1 +29259463,SPACIOUS/FURNISHED One Bedroom Brooklyn Apartment,18917915,Sean,Brooklyn,Williamsburg,40.70296,-73.94086,Entire home/apt,90,3,7,2019-07-05,0.95,1,3 +29259580,"Spacious duplex, fits 5, perf midtown location!",3292437,Peter,Manhattan,Midtown,40.75228,-73.9695,Entire home/apt,250,2,20,2019-06-23,2.30,1,0 +29260051,Air B and B at the Grand Old Mansion,187908347,William,Brooklyn,Crown Heights,40.67311,-73.94679,Entire home/apt,90,4,24,2019-07-04,2.89,2,82 +29261640,Cozy&Nice Bedroom in an Apt/NYC Inwood location,140640991,Fabricio,Manhattan,Inwood,40.86261,-73.92295,Private room,100,3,8,2019-05-23,0.95,1,165 +29262039,Beautiful One Bedroom apt. with private rooftop.,37154382,Lisette,Queens,Forest Hills,40.71018,-73.85229,Entire home/apt,100,2,22,2019-06-24,2.83,1,103 +29262635,"Modern 2 Bedroom, Brooklyn Apt! Amazing Amenities!",220468724,Yngrid,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92281,Entire home/apt,149,2,73,2019-07-07,8.62,1,93 +29264544,Spacious room in downtown 1st Ave 14th St.,36693787,Ma,Manhattan,Stuyvesant Town,40.73341,-73.98,Entire home/apt,188,10,1,2019-05-26,0.68,1,21 +29269102,Cozy and Convenient,158406020,Marvin,Brooklyn,East Flatbush,40.65105,-73.93034,Private room,47,1,9,2019-01-02,1.05,2,14 +29271438,"Quiet, cozy, modern apartment in Bushwick",44745096,Marta,Brooklyn,Bushwick,40.6934,-73.92372,Private room,110,3,8,2019-07-07,1.08,1,8 +29272336,Beautiful Bushwick Oasis,204268180,Danni,Brooklyn,Bushwick,40.70254,-73.92471,Private room,33,1,8,2019-01-02,0.96,1,64 +29275537,New Spacious 1BD w/ Private Bathroom Chinatown/LES,5123160,Molly,Manhattan,Two Bridges,40.71145,-73.99607,Private room,130,1,7,2019-01-27,0.99,1,0 +29277029,Charming 1-bedroom in Lower Manhattan,220568909,Anneka,Manhattan,Little Italy,40.71751,-73.99849,Entire home/apt,230,2,9,2019-05-19,1.04,1,360 +29277834,Midtown City &River View~Luxury 3BR/2BA~BalconyGym,33510623,Motty,Manhattan,Murray Hill,40.74629,-73.97703,Entire home/apt,899,4,5,2019-06-11,0.71,1,340 +29277979,1 bdr in duplex with terrasse,16063645,Alexandra,Manhattan,East Village,40.7293,-73.9834,Entire home/apt,130,1,26,2019-06-07,3.01,1,243 +29278083,"Nice room with private beth , use of kitchen",220576785,Manny,Brooklyn,Midwood,40.61703,-73.97055,Private room,100,1,0,,,1,365 +29278247,Bushwick Loft (must love plants!),2093557,Sarah,Brooklyn,Bushwick,40.69975,-73.92602,Entire home/apt,100,1,3,2019-06-16,1.34,2,4 +29278439,New York Modern Studio,34075689,Zhen Zhen,Queens,Maspeth,40.72236,-73.90195,Entire home/apt,150,7,15,2019-07-02,1.73,3,69 +29280869,LES private bedroom in safe apartment building,220601248,Nora,Manhattan,Lower East Side,40.71827,-73.98836,Private room,66,2,23,2019-06-22,3.14,2,6 +29281115,"Private Entrance, Boutique Amenities, Zen Vibes",38503320,Jon,Brooklyn,Greenpoint,40.72637,-73.95248,Private room,95,5,36,2019-06-30,4.15,1,101 +29281128,NYC LUXURY STUDIO,53621734,Erika,Manhattan,Hell's Kitchen,40.75985,-73.99799,Entire home/apt,170,12,1,2018-10-19,0.11,1,365 +29281300,NOMAD District Loft Tons of Light,210961816,Anthony,Manhattan,Midtown,40.74584,-73.98894,Private room,125,3,13,2019-06-23,1.51,1,14 +29281407,THE HIVE // Brand New 3-Story Luxury Townhome,4874700,Eli,Brooklyn,Greenpoint,40.72549,-73.94595,Entire home/apt,975,2,0,,,1,149 +29281707,Riverside Private Room,220605010,Riverside,Manhattan,Washington Heights,40.83773,-73.94415,Private room,125,3,0,,,1,178 +29282185,2MinToTrainsCozyLivingRoomMaimonideLutheranHospita,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65595,-74.00274,Shared room,45,1,8,2019-05-18,0.93,4,332 +29282847,Spacious Central Park Apartment,80026984,Keziah,Manhattan,Harlem,40.80132,-73.95496,Entire home/apt,195,3,3,2019-07-02,0.40,1,239 +29283100,NICE Private Bedroom in the BEST part of Manhattan,606154,Sam,Manhattan,Gramercy,40.73386,-73.98307,Private room,118,6,0,,,2,0 +29283634,Bushwick loft with NYC views (entire apt),172859639,Nicholas,Brooklyn,Williamsburg,40.7041,-73.93415,Entire home/apt,250,1,2,2019-03-10,0.23,1,4 +29286653,"Cozy, Private Room on Upper East Side",151229011,Gerta,Manhattan,Upper East Side,40.77557,-73.94381,Private room,93,3,32,2019-06-30,3.87,1,28 +29286966,Big 1BR in park adjacent apartment,630534,Brandy,Brooklyn,Flatbush,40.65026,-73.96316,Private room,196,3,5,2019-06-08,0.65,1,35 +29287004,Jackson Heights: Bright and Spacious Apartment,134904068,Jeanpaul,Queens,Jackson Heights,40.75024,-73.88409,Entire home/apt,200,5,1,2019-07-03,1,1,38 +29287113,Hunts Point Studio Apt,73453515,Kerlyne,Bronx,Hunts Point,40.81819,-73.88653,Entire home/apt,150,2,5,2018-11-12,0.57,1,0 +29287515,Upper East Side Family Apartment,213586067,John,Manhattan,Upper East Side,40.78108,-73.95439,Entire home/apt,215,3,0,,,1,0 +29295191,Luxury - Jr. 1 Br/High Fl- Rooftop Terrace Access,6562449,John,Manhattan,Upper West Side,40.79325,-73.97237,Entire home/apt,325,1,16,2019-06-30,1.95,1,7 +29295665,NYC Central Park Lux Hotel w/ Brfast & Dinner incl,3053587,Allison,Manhattan,Midtown,40.76531,-73.9789,Private room,350,3,1,2019-04-17,0.36,1,169 +29298335,"Artful Williamsburg penthouse with rooftop, big TV",120431726,Noah,Brooklyn,Greenpoint,40.72097,-73.94052,Private room,99,1,14,2019-06-29,1.60,2,0 +29299404,Spacious Studio in Historic Neighborhood,13646328,Katey,Manhattan,Upper West Side,40.79954,-73.96263,Entire home/apt,99,5,10,2019-06-29,1.55,1,29 +29299470,"Cozy, sunny bedroom in Bed-Stuy",23196609,Emma,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94177,Private room,40,2,8,2019-06-09,1.76,2,14 +29301424,Entire cozy 1.5 bedroom flat in South Slope!,15586309,Kerry,Brooklyn,Sunset Park,40.66486,-73.99535,Entire home/apt,90,1,6,2019-05-27,0.73,1,0 +29301889,Spacious place w/ private bathroom,105572926,Matt,Brooklyn,Crown Heights,40.67636,-73.91932,Private room,85,2,2,2018-11-06,0.24,1,0 +29302018,1 Bedroom Apartment 1 minute walk to subway,93732420,Tim,Queens,Astoria,40.76363,-73.92178,Entire home/apt,90,5,0,,,2,0 +29303036,"Lovely brownstone, priv bath, garden, 15 min nyc!",838325,Maya,Brooklyn,Bedford-Stuyvesant,40.69368,-73.93403,Private room,98,1,6,2019-05-17,0.69,1,135 +29303639,Your passport to the big apple!,101410003,Ricardo,Manhattan,Midtown,40.76525,-73.98058,Private room,279,5,2,2019-04-21,0.32,1,26 +29304329,Williamsburg Charming 2 Bedrooms/2 full Baths,10951481,Ann,Brooklyn,Williamsburg,40.71416,-73.96191,Entire home/apt,249,2,38,2019-06-17,4.38,5,46 +29304334,Peaceful private sunny room in spacious apartment,1216891,Amberjade,Manhattan,Harlem,40.81954,-73.94713,Private room,85,1,22,2019-06-11,2.53,1,232 +29304787,Peaches Paradise 2,101499766,Claudette,Queens,Springfield Gardens,40.6831,-73.75526,Private room,50,1,29,2019-07-06,4.53,2,347 +29305952,Luxury Oceanfront 2BD Suite in Arverne By The Sea,220763958,Veronika,Queens,Arverne,40.58848,-73.795,Entire home/apt,199,1,11,2019-07-07,3.79,1,113 +29306127,Cozy + Artsy Studio Apt in Cypress Hills- Brooklyn,1463509,Liza + Victor,Brooklyn,Cypress Hills,40.68809,-73.87004,Entire home/apt,70,3,21,2019-07-05,2.97,1,2 +29306590,Cozy Room in Brooklyn,51699123,Bo,Brooklyn,Bushwick,40.69917,-73.9123,Private room,65,2,31,2019-07-05,5.08,2,125 +29306602,Large Modern Cozy Apartment Close to Train,108746563,Alyssa,Brooklyn,Crown Heights,40.6703,-73.93597,Entire home/apt,149,3,22,2019-07-01,3.11,1,13 +29307957,Charming Creative Corner in Crown Heights,20976078,Amer,Brooklyn,Crown Heights,40.67516,-73.95416,Private room,90,1,10,2019-04-15,1.26,1,0 +29308138,San Carlos Hotel Executive Junior Suite - up to 4,173685298,Janet,Manhattan,Midtown,40.75484,-73.97235,Private room,375,1,0,,,11,179 +29308309,VINTAGE COZY PLACE,220786352,Reina,Manhattan,Harlem,40.82426,-73.95231,Entire home/apt,125,3,8,2019-06-24,1.17,1,119 +29308471,Linden Estates Luxurious 2 bedroom suite,220762164,Sherley,Queens,St. Albans,40.69272,-73.76264,Entire home/apt,105,2,2,2019-01-01,0.24,4,89 +29308553,Nice room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94692,Private room,75,1,1,2018-10-24,0.12,2,0 +29308781,Designer's Two Floors New Deluxe Apartment in NYC,220709091,Dan & Melisa,Brooklyn,Bay Ridge,40.63859,-74.02497,Entire home/apt,82,1,56,2019-06-22,6.41,1,288 +29310612,Room for rent! 3 bed / 2 bath. G train,220806520,Ignacio,Brooklyn,Bedford-Stuyvesant,40.69279,-73.94654,Private room,50,10,0,,,1,359 +29312347,6MinTrainsCozySmallRMaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65047,-74.00403,Private room,50,1,23,2019-06-30,2.63,4,327 +29312926,Designer 1BR in LES/Chinatown with rooftop access,15644345,Veronika,Manhattan,Lower East Side,40.71477,-73.98575,Entire home/apt,250,5,1,2018-12-11,0.14,1,0 +29313128,Astoria Room Available,166794407,Bruna,Queens,Astoria,40.76681,-73.91308,Private room,44,5,1,2018-12-31,0.16,3,188 +29313398,Family looking for a budget apartment?,4555996,Ben,Manhattan,Harlem,40.8229,-73.94287,Entire home/apt,150,10,0,,,2,4 +29314737,Private bedroom in a clean charming apartment,1601321,Serdar,Queens,Astoria,40.75736,-73.92162,Private room,130,2,5,2019-06-23,2.34,1,6 +29314975,New York Downtown fourpoints Sheraton,38216858,Silver,Manhattan,Financial District,40.7086,-74.01266,Private room,270,5,2,2019-05-19,0.32,4,364 +29316421,Home away from home,216738370,Mary,Manhattan,Upper East Side,40.76481,-73.96001,Private room,175,1,9,2019-05-15,1.09,1,365 +29316878,Cute little room in a large Brooklyn house.,65407018,Harmony,Brooklyn,Greenpoint,40.72334,-73.93745,Private room,45,1,13,2019-06-09,1.63,5,160 +29317721,Private King Luxury Room - 20 Mins to City,219784095,Uchenna,Brooklyn,Bedford-Stuyvesant,40.68405,-73.95267,Private room,79,2,14,2019-06-02,1.63,1,79 +29320258,Private Room in Prime Bushwick,89339003,Shoshi,Brooklyn,Bushwick,40.7027,-73.91429,Private room,70,5,1,2019-02-17,0.21,1,53 +29327591,"Beautiful Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73769,-73.99734,Entire home/apt,374,30,0,,,232,263 +29328881,"Sunny, spacious 1 Bedroom Apt in the East Village",4205284,Danielle,Manhattan,East Village,40.73122,-73.98652,Entire home/apt,240,2,2,2019-05-23,0.28,1,53 +29328939,3 Beds in Private Room 2 - 20 Minutes to Manhattan,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69397,-73.94921,Private room,70,2,26,2019-06-23,3.06,4,339 +29329429,2-story Apt in the heart of The Upper West Side!,80242144,Emily,Manhattan,Upper West Side,40.78461,-73.97801,Entire home/apt,199,1,6,2019-05-20,0.68,1,62 +29329932,Cozy boho 1-bedroom in brownstone,43349835,Caroline,Manhattan,Gramercy,40.73395,-73.9821,Entire home/apt,135,14,2,2019-01-01,0.27,1,240 +29331191,"Sizable UWS 1BR w/ Open kitchen, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77691,-73.98263,Entire home/apt,259,30,0,,,232,170 +29331258,Stunning 2bed Williamsburg (gym/roof) J/M/Z G & L,178826661,Orpaz,Brooklyn,Williamsburg,40.70635,-73.94656,Entire home/apt,200,4,0,,,1,0 +29331513,Downtown Manhattan Bedroom! Top of Fidi/City Hall,69545272,Ben,Manhattan,Financial District,40.71161,-74.00665,Private room,57,9,3,2019-05-09,0.36,2,365 +29331741,Spacious WV studio at the center of everything,2301120,Varun,Manhattan,West Village,40.73327,-74.00157,Entire home/apt,300,2,8,2019-06-30,0.94,1,0 +29332188,Huge 4 Bedroom 2 Bathroom Townhouse with Backyard,439827,Jacob,Brooklyn,Greenpoint,40.73038,-73.95221,Entire home/apt,250,29,0,,,1,0 +29332195,"Cozy, Zen Studio. Prime Williamsburg location!!!",220969093,Giselle & Charles,Brooklyn,Greenpoint,40.71958,-73.95247,Entire home/apt,99,2,26,2019-06-27,3.21,1,145 +29332969,Huge Apt in EXCELLENT LOCATION - HELLS KITCHEN,28214995,Xanthi,Manhattan,Hell's Kitchen,40.75947,-73.99335,Entire home/apt,350,2,10,2019-06-23,1.19,1,179 +29333330,"Convenient, comfy, and bright",7389707,Yael,Manhattan,Washington Heights,40.84539,-73.93968,Shared room,40,2,14,2019-06-13,2.82,2,0 +29333400,1 bedroom apartment,331328,Amir,Manhattan,East Harlem,40.80759,-73.94103,Entire home/apt,99,5,13,2019-06-17,2.48,3,8 +29334063,Room in Home with Backyard in Bronx Little Italy,44851966,Joseph,Bronx,Belmont,40.85449,-73.88437,Private room,100,1,3,2019-07-03,1.84,1,319 +29334325,Plant & pet-friendly LOFT in the UWS,24595747,Melissa,Manhattan,Upper West Side,40.77972,-73.97871,Private room,97,3,7,2019-03-18,0.83,2,0 +29336271,San Carlos Hotel One Bedroom Suite - up to 5,173685298,Janet,Manhattan,Midtown,40.75613,-73.97056,Private room,425,1,3,2019-03-10,0.36,11,177 +29336346,Luxury and convenience in the center of it all!,15872365,Daniel,Queens,Astoria,40.76553,-73.91625,Entire home/apt,89,4,15,2019-06-18,1.73,1,12 +29336922,LUXURY 2BR CONDO APT IN THE HEART OF BROOKLYN,217568399,Kelly,Brooklyn,Bath Beach,40.60319,-73.99591,Entire home/apt,150,1,13,2019-01-02,1.54,1,0 +29337184,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE WIFI CABLE,8814258,Nikole,Queens,South Ozone Park,40.67293,-73.79554,Shared room,30,4,1,2019-05-03,0.45,7,365 +29337285,Studio in Prime Williamsburg w/ Private Balcony,220688207,Alan,Brooklyn,Williamsburg,40.70959,-73.96111,Entire home/apt,150,1,77,2019-07-02,8.95,1,77 +29337912,Chelsea Apartment,132866292,Ned,Manhattan,Chelsea,40.74165,-73.99968,Entire home/apt,225,2,47,2019-06-24,5.38,1,101 +29338253,Home away from home,221022609,Lexus,Brooklyn,Flatlands,40.63204,-73.93383,Private room,45,7,0,,,1,83 +29338399,Private floor in Soho Loft with 11ft ceilings,102542851,Nathan,Manhattan,SoHo,40.72706,-74.00572,Private room,129,4,0,,,1,0 +29338559,Cozy Room for Rent very close to Manhattan,4666670,Jeanny,Queens,Astoria,40.76902,-73.91856,Private room,49,5,9,2019-06-12,1.05,4,318 +29338715,Clean Cozy Getaway--Just 15 Minutes From JFK,205243076,Diana,Queens,Cambria Heights,40.69238,-73.73646,Private room,65,2,13,2019-07-02,1.49,2,77 +29338760,Williamsburg apartment with amazing views,9399583,Marco,Brooklyn,Williamsburg,40.71047,-73.96796,Entire home/apt,160,10,0,,,1,34 +29338819,"2018 New 2br elevator condo, 法拉盛中心新大楼2卧,5分钟main st",119305261,Brenda,Queens,Flushing,40.76373,-73.82904,Entire home/apt,188,2,15,2019-06-24,1.97,1,59 +29339032,Cozy Apartment in Lively Brooklyn 15 Min from Pier,117380551,Sade,Brooklyn,Crown Heights,40.67115,-73.94932,Entire home/apt,110,2,0,,,1,107 +29339219,Spacious New 1BR in Sunnyside. Parking available!,114386000,Ira,Queens,Sunnyside,40.74299,-73.92441,Entire home/apt,155,2,2,2019-01-13,0.32,1,358 +29339310,"""The Dumont"" Event Space",221036535,Terry,Brooklyn,East New York,40.66957,-73.86585,Entire home/apt,300,1,12,2019-06-29,1.49,1,175 +29340021,"Home to LGA airport near Manhattan, JFk, Astoria.",221043708,Rumalia,Queens,East Elmhurst,40.7698,-73.87183,Entire home/apt,150,1,29,2019-06-30,3.32,1,360 +29340345,Sams place,178337703,Samuel,Bronx,Clason Point,40.80504,-73.85327,Private room,300,1,1,2018-10-21,0.11,1,364 +29341038,Very comfortable and clean,28960938,Vinroy,Bronx,Unionport,40.82598,-73.85203,Private room,90,7,0,,,1,180 +29341918,Perfect location UWS private room private bath,218272490,Miki,Manhattan,Upper West Side,40.78177,-73.97878,Private room,85,2,23,2019-04-13,2.64,1,79 +29342293,Sunny room in Brooklyn,15331078,Nathalie,Brooklyn,Crown Heights,40.67768,-73.94244,Private room,35,5,1,2019-01-03,0.16,1,69 +29342616,Spacious Brooklyn Home,35807458,Anthony,Brooklyn,Crown Heights,40.66587,-73.92966,Private room,120,1,0,,,1,88 +29343523,Noho High Rise w/ Private Terrace,221071115,Ty,Manhattan,Greenwich Village,40.72836,-73.99925,Entire home/apt,300,7,0,,,1,80 +29344882,Manhattan downtown large modern private room,16628063,Hailey,Manhattan,Two Bridges,40.7125,-73.99661,Private room,90,1,26,2019-06-30,3.42,1,297 +29351570,DESIGNER ARTIST 2 BEDROOM APARTMENT . E.V.,1810885,Alex,Manhattan,East Village,40.72628,-73.97981,Entire home/apt,199,4,4,2019-05-27,0.77,3,204 +29356635,Spacious Room In Hip Williamsburg,74468846,Diana,Brooklyn,Williamsburg,40.71353,-73.94339,Private room,75,2,11,2019-04-29,1.56,2,0 +29356679,Private Room that’s comfortable and convenient,134170699,Rafa' S,Queens,Elmhurst,40.73756,-73.87787,Private room,65,2,2,2019-06-30,1.43,2,364 +29356840,Creative House for Travelers and Other Creatives,215022472,Andrea,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95283,Private room,51,4,19,2019-07-01,2.16,1,189 +29358057,Murray Hill Apt (next to 6 train & near Penn/Bus),52161562,Marlena,Manhattan,Kips Bay,40.7444,-73.97946,Entire home/apt,125,2,14,2019-05-27,1.65,1,0 +29359092,Sweet room,217159080,Illias,Queens,Elmhurst,40.74133,-73.88345,Private room,41,2,44,2019-06-22,5.24,1,123 +29359223,"Sunny, clean 2 bedroom",9806886,Tiffany,Brooklyn,Carroll Gardens,40.67742,-74.00146,Entire home/apt,200,7,1,2019-01-03,0.16,1,0 +29359338,Cosy bedroom in prime Soho,9319215,Julia,Manhattan,SoHo,40.72751,-74.0018,Private room,250,7,3,2019-01-18,0.44,1,0 +29359403,Cozy Sunny Harlem Studio,130054323,Fabrice,Manhattan,Harlem,40.82361,-73.93926,Entire home/apt,102,1,17,2019-06-19,2.14,1,75 +29359499,Upper East Side alcove studio in doorman building,110042455,Robyn,Manhattan,Upper East Side,40.77123,-73.9549,Entire home/apt,175,2,3,2019-05-20,1.23,1,6 +29360292,COZY ROOM TO CRASH,48049796,Chester,Manhattan,East Village,40.72935,-73.98441,Private room,100,1,10,2019-06-13,1.15,2,90 +29361344,Spacious and Airy Apt - 20 min to Manhattan!,221201866,Jesse,Brooklyn,Gowanus,40.68216,-73.98199,Entire home/apt,115,1,9,2019-01-06,1.03,1,0 +29362785,"Nice, fun, Brooklyn! Bedroom & private bath",193353343,Alice,Brooklyn,Bushwick,40.68677,-73.91571,Private room,84,1,8,2019-06-03,0.94,1,31 +29364202,Modern + colorful 2-BR in lively Clinton Hill,5120616,Amenee,Brooklyn,Clinton Hill,40.68634,-73.96117,Entire home/apt,150,3,0,,,1,0 +29364445,Lil A's Place- 60 Seconds to the Train-Location!!,220479551,Betty,Queens,Astoria,40.75684,-73.91705,Private room,65,1,4,2019-06-23,0.64,1,88 +29365401,4min subway. Prime locations. single sofa bed 单人间,196058543,美德,Queens,Forest Hills,40.72192,-73.83931,Shared room,40,2,20,2019-05-29,2.40,5,230 +29365566,Modern Duplex - Central Chelsea!!!,219494713,David,Manhattan,Chelsea,40.74327,-73.99663,Entire home/apt,599,2,25,2019-06-16,2.92,1,244 +29367125,Woodruffe Place,221252894,Deslyn,Brooklyn,Crown Heights,40.67253,-73.9223,Entire home/apt,225,1,27,2019-07-05,3.36,1,339 +29367388,UES private bedroom in shared apartment,17272284,Geoffrey,Manhattan,Upper East Side,40.7652,-73.95834,Private room,109,1,9,2019-05-26,2.87,2,0 +29369079,Celebrity Designer Pied A Terre,220962399,Julien,Manhattan,Upper East Side,40.76408,-73.95686,Entire home/apt,250,1,12,2019-07-02,1.41,1,323 +29370077,"Large, Bright & Cozy Retreat in Bklyn.",221275418,Rufina,Brooklyn,Crown Heights,40.67685,-73.93653,Private room,55,2,18,2019-07-02,2.18,3,251 +29371373,Heart of nyc. Harlem.,39301747,Takeis,Manhattan,Harlem,40.81801,-73.93855,Entire home/apt,78,1,27,2019-07-01,3.86,1,33 +29380907,"Cozy, Private 1 Bedroom Basement Apartment",179355129,Gabrielle,Staten Island,Dongan Hills,40.58303,-74.09271,Entire home/apt,85,2,12,2019-06-24,1.91,1,229 +29381358,Spacious 1 Bed (FURNISHED!) Hudson Yards Sublet,221343982,Christina,Manhattan,Chelsea,40.75358,-73.99707,Private room,165,45,0,,,1,83 +29381786,La Cabina al Mare,25059454,Luca,Queens,Rockaway Beach,40.58409,-73.81665,Entire home/apt,65,2,13,2019-07-06,1.54,1,73 +29382257,25 min to Manhattan: Bed in quiet apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67956,-73.91135,Shared room,35,1,13,2019-05-19,1.52,17,89 +29383018,"Comfort room A in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81548,-73.95931,Private room,80,1,38,2019-06-22,4.40,4,57 +29383019,"Sunny room B in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81376,-73.95954,Private room,85,1,66,2019-06-22,7.59,4,71 +29383020,"Premier room D in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81454,-73.96086,Private room,98,1,51,2019-06-22,5.86,4,56 +29383021,"Cozy room C in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81386,-73.95936,Private room,90,1,55,2019-06-15,6.40,4,87 +29383233,"“One of a kind” Penthouse +獨一無二的紐約閣樓",213781715,Anting,Manhattan,NoHo,40.72872,-73.99199,Entire home/apt,179,1,1,2019-05-26,0.68,33,187 +29383605,"Your Home 安全舒適的家 + 12 mins Manhattan",213781715,Anting,Brooklyn,Greenpoint,40.73543,-73.95454,Private room,119,1,0,,,33,179 +29384404,Prime Location 34th&6th! Doorman Gym Deck 5231,16098958,Jeremy & Laura,Manhattan,Midtown,40.74829,-73.98653,Entire home/apt,180,30,0,,,96,342 +29384552,Bright and cozy room in bed-stuy,73377711,Margaux,Brooklyn,Bedford-Stuyvesant,40.68539,-73.94903,Private room,60,4,1,2018-11-03,0.12,1,0 +29384622,Private Sun-Splashed Studio Chelsea,221366300,Casey,Manhattan,Chelsea,40.74303,-73.99727,Entire home/apt,200,1,34,2019-07-02,4.66,1,0 +29385308,Brownstone Studio,221371129,Denise,Brooklyn,Carroll Gardens,40.67787,-73.99973,Entire home/apt,130,4,9,2019-06-25,1.09,1,70 +29386355,"Welcome to Williamsburg, Brooklyn!!",68128762,Tom,Brooklyn,Greenpoint,40.71961,-73.95405,Private room,170,1,0,,,1,220 +29388081,Convenient Private Bed & Bath! 10 mins. to LGA,8094710,Janine & Reneé,Queens,Ditmars Steinway,40.77671,-73.91283,Private room,75,7,12,2019-05-25,1.60,1,40 +29388083,Dream Apt in the heart of NYC,221392587,San,Manhattan,Midtown,40.7599,-73.96685,Entire home/apt,244,4,9,2019-06-17,1.21,1,56 +29388803,Beautiful room with private bathroom in Town house,36995455,William,Brooklyn,Crown Heights,40.67283,-73.9447,Private room,80,1,48,2019-06-15,5.52,1,214 +29388858,Great Midtown Vibe Spacious Experience in UWS NYC,208901618,XnL,Manhattan,Upper West Side,40.78793,-73.97261,Entire home/apt,180,2,10,2019-06-18,1.22,1,0 +29390218,Bright and cozy 1 bedroom,221405192,Ivan,Brooklyn,Bensonhurst,40.61667,-73.99932,Entire home/apt,100,1,3,2018-12-28,0.41,1,61 +29390491,PRIVATE STUDIO APARTMENT- ASTORIA,1411399,Carlos,Queens,Astoria,40.76894,-73.91193,Entire home/apt,76,1,7,2019-06-13,0.83,5,326 +29390506,Spacious furnished 2b1b apt with a big living room,62330502,Rosa,Bronx,Woodlawn,40.89753,-73.87359,Private room,50,1,6,2019-01-21,0.71,1,0 +29391342,Sunlit Cozy Bargain 2 Bedroom in Carroll Gardens,4180621,Julia,Brooklyn,Carroll Gardens,40.67692,-73.99986,Entire home/apt,78,1,28,2019-06-09,3.64,2,223 +29391531,Your home away from home,221420411,Chantal,Queens,Briarwood,40.71347,-73.80873,Private room,200,2,0,,,1,90 +29391564,Spacious 1 BR Apartment with Times Square view,50822673,Ferdy,Manhattan,Midtown,40.76597,-73.98177,Entire home/apt,180,3,2,2019-07-07,1.36,1,1 +29391852,Room in heart of Bushwick with private entrance,131305000,David,Brooklyn,Bushwick,40.69552,-73.91165,Private room,65,3,16,2019-06-17,1.82,1,74 +29392426,Cozy Apt x Rent Close to Manhattan,4666670,Jeanny,Queens,Astoria,40.77029,-73.91881,Entire home/apt,110,5,1,2019-01-07,0.16,4,173 +29392681,Cozy Apartment in Upper West Side New York,220414847,Sergio,Manhattan,Upper West Side,40.78818,-73.96796,Entire home/apt,190,3,37,2019-07-01,4.64,1,120 +29392902,"1 x Bedroom Apt with Amazing Rooftop, Greenpoint",91101209,Anna,Brooklyn,Greenpoint,40.7348,-73.95543,Entire home/apt,150,6,1,2018-11-26,0.13,1,154 +29393117,Massive Art Loft - Best Manhattan Location Ever!,220574429,Juliana,Manhattan,Midtown,40.74549,-73.99066,Entire home/apt,670,25,0,,,3,305 +29393175,Bright Spacious Greenpoint Duplex,13859261,Milosz,Brooklyn,Greenpoint,40.73159,-73.95713,Entire home/apt,181,1,35,2019-06-13,4.12,1,37 +29393371,New york Multi-unit building,221434490,Aracely,Queens,Jackson Heights,40.75586,-73.87014,Private room,49,2,23,2019-06-16,2.86,2,358 +29393457,2 Private Rooms Near Staten Island Ferry,204823078,Maria,Staten Island,South Beach,40.58639,-74.08943,Private room,100,2,6,2019-05-26,0.73,2,86 +29393659,Private 2BR house Poyer st- 20 min to Manhattan,69439684,Michelle & Lily,Queens,Elmhurst,40.74111,-73.88184,Entire home/apt,179,2,31,2019-07-05,3.65,2,239 +29393808,Cozy 1 bed in amazing NYC location! (Chelsea),17218010,Katie,Manhattan,Chelsea,40.74011,-73.99745,Entire home/apt,175,2,17,2019-04-21,2.08,1,0 +29401472,Large room next to Yankees 20 min from Manhattan,7591218,Kenny,Bronx,Concourse,40.83007,-73.92251,Private room,45,3,19,2019-06-25,2.27,1,67 +29406821,ASTORIA NATURE HOUSE,22050715,Bruno,Queens,Astoria,40.75718,-73.92763,Private room,90,2,5,2019-05-02,0.61,1,354 +29409313,Authentic East Village Escape,11433245,Nikki,Manhattan,East Village,40.72653,-73.98501,Entire home/apt,168,7,6,2019-06-03,0.78,1,130 +29409370,Cozy 1BR with private bathroom near the subway,73222575,Tania,Queens,Ditmars Steinway,40.77888,-73.90827,Private room,95,2,6,2019-06-10,1.41,1,12 +29410055,Private community close to all the NYC & NJ action,199539833,Vince,Staten Island,Rosebank,40.60816,-74.07634,Entire home/apt,90,3,19,2019-06-15,2.68,1,247 +29410763,Hell's Kitchen Luxurious 2 Bedroom NYC Apt!,163251048,Jen,Manhattan,Hell's Kitchen,40.76094,-73.99778,Entire home/apt,499,30,0,,,8,185 +29411009,"San Carlos Hotel Deluxe Rm - 2 Queen Bds, up to 4",173685298,Janet,Manhattan,Midtown,40.75674,-73.97201,Private room,329,1,1,2018-11-04,0.12,11,178 +29411550,NEW Stylish Midtown 2 bedroom w/ balcony,221548872,Charlie,Manhattan,Hell's Kitchen,40.75504,-73.99521,Entire home/apt,390,2,3,2019-01-20,0.36,1,0 +29411649,1bd shared bathroom - very welcome apt in Harlem,134167192,Mamy Francine,Manhattan,Harlem,40.81502,-73.94183,Private room,90,2,3,2018-11-18,0.36,1,0 +29411940,Charming & Sunny Brooklyn Heights Studio,5123477,Meryl,Brooklyn,Brooklyn Heights,40.69719,-73.99229,Entire home/apt,120,3,2,2019-05-23,0.82,1,1 +29412276,New york Multi-unit building,221434490,Aracely,Queens,Jackson Heights,40.75473,-73.8715,Private room,45,2,22,2019-06-14,2.58,2,138 +29412375,Bryan's house,3928437,Bryan,Brooklyn,Clinton Hill,40.68303,-73.95988,Private room,139,1,1,2018-12-01,0.14,1,83 +29412402,Exposed Brick New York Styled apt in Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69387,-73.9102,Private room,45,2,3,2019-01-28,0.34,5,318 +29412897,Large open space in Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69418,-73.9114,Private room,36,3,13,2019-06-15,1.51,5,329 +29414633,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61208,-74.00181,Shared room,15,10,0,,,2,0 +29415474,Bed-Stuy/Clinton Hill Sunny Brooklyn Apartment,3585637,Lucienne,Brooklyn,Bedford-Stuyvesant,40.68071,-73.95761,Entire home/apt,160,30,0,,,1,281 +29415546,AMELUZ NY,157093664,Zulema,Queens,St. Albans,40.6978,-73.76775,Entire home/apt,299,2,9,2019-06-24,1.05,2,52 +29416216,*PRIVATE* Big Bedroom 20 minutes from Manhattan,65671256,Freddy,Queens,Jackson Heights,40.75749,-73.85811,Private room,65,1,43,2019-06-23,4.94,3,48 +29416543,Asshur’s Room,49664763,Asshur,Brooklyn,East Flatbush,40.66098,-73.92382,Private room,77,1,1,2018-11-08,0.12,1,0 +29416986,Room in the heart of New York City,32896046,Ramon,Manhattan,Midtown,40.76289,-73.98003,Private room,115,3,2,2018-11-25,0.25,1,0 +29417325,"Classic, yet Unconventional Tribeca New York City!",221595358,Karen,Manhattan,Tribeca,40.71904,-74.00857,Private room,149,1,32,2019-06-30,3.86,2,317 +29417620,Beautiful Private Room with 3 Beds in Bed Stuy,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69223,-73.95141,Private room,75,2,13,2019-06-03,1.53,3,365 +29418015,Charming Private Room in Bed Stuy with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94998,Private room,70,2,14,2019-04-25,1.61,3,365 +29418601,Great New York shared room 3-6,179336958,Ruby,Manhattan,Midtown,40.74757,-73.98671,Shared room,65,3,20,2019-06-14,2.51,6,169 +29418724,Park view New York Apartment,57675402,Nofar,Manhattan,Morningside Heights,40.81424,-73.96051,Entire home/apt,100,4,2,2018-12-27,0.30,1,0 +29419129,Brooklyn Hideaway right in Williamsburg,25352847,Rachel,Brooklyn,Williamsburg,40.71421,-73.95421,Private room,130,1,13,2019-06-10,1.63,2,64 +29419330,Female Only: Prime Location-East 60s-Central Park,221612013,Inhee,Manhattan,Upper East Side,40.76105,-73.96294,Private room,80,1,27,2019-06-29,3.45,1,0 +29420244,Cozy place,71164216,Ezra,Manhattan,Harlem,40.8063,-73.94484,Private room,70,2,13,2019-06-30,1.49,1,361 +29420970,Time-Sharing Private Room,62533391,Yvonne,Brooklyn,Borough Park,40.63543,-74.00701,Shared room,38,1,7,2019-05-17,0.80,7,365 +29422942,12 mins to Times Square; 10 mins to LGA!,221635816,Topu,Queens,Sunnyside,40.73986,-73.91996,Entire home/apt,185,2,55,2019-07-03,6.45,1,99 +29424138,"*Location, Location* | Chelsea | West Village",60105727,Lee,Manhattan,West Village,40.73531,-74.00303,Entire home/apt,182,30,31,2019-07-06,3.88,2,12 +29424522,1-bed/ba PR condo Wyn. Midtown 45 Thanksgiving,30616847,Martha,Manhattan,Midtown,40.75322,-73.97353,Private room,500,3,0,,,1,365 +29425269,"New York Apartment , private bed room / queen bed.",207651513,Nour,Manhattan,Harlem,40.80903,-73.94307,Private room,97,1,47,2019-07-05,5.71,3,75 +29429036,Comfortable clean large bedroom,24954668,Sophie,Manhattan,Upper East Side,40.76877,-73.95479,Private room,110,7,1,2018-12-12,0.14,1,365 +29431457,Large Studio Apartment on Todt Hill,146363617,Michael,Staten Island,Todt Hill,40.58392,-74.1078,Entire home/apt,62,14,4,2019-04-30,0.56,1,268 +29431738,Cool Apartment in East Village,47125955,Alex,Manhattan,East Village,40.72849,-73.98002,Entire home/apt,150,2,8,2019-05-19,0.97,1,132 +29431974,Charming Studio in One of the Best Locations!,76323622,Liza,Manhattan,Nolita,40.72342,-73.99408,Entire home/apt,250,2,2,2019-01-01,0.28,1,0 +29432994,Brownstone w/Terrace-Close to Rockefeller Tree,1343352,Marisa,Manhattan,Upper West Side,40.7764,-73.98144,Entire home/apt,220,2,1,2018-11-18,0.13,1,0 +29433879,East Village 2Bdrm apt with Rooftop and City Views,43957041,Amy,Manhattan,East Village,40.72726,-73.97934,Entire home/apt,300,4,3,2019-05-27,0.47,1,0 +29434244,Cozy Guest Suite in Ditmas Park,220945034,Ray,Brooklyn,Flatbush,40.63462,-73.95572,Entire home/apt,150,2,13,2019-06-30,1.53,1,160 +29434293,Room at 1br apt,7040483,Agata,Queens,Astoria,40.76107,-73.91364,Private room,69,5,20,2019-06-23,2.43,1,37 +29435528,Single cozy room in Manhattan's Upper West Side,39481825,Ami,Manhattan,Morningside Heights,40.80559,-73.96606,Private room,70,1,15,2019-07-02,1.77,1,16 +29435698,"Prime Williamsburg Loft, close to the water!",3583973,Lauren,Brooklyn,Williamsburg,40.71247,-73.96295,Entire home/apt,190,2,17,2019-04-15,1.99,1,0 +29438220,STUDIO&GARDEN REDESIGNED Park Slope-Brooklyn!,87786261,Sophia,Brooklyn,South Slope,40.66129,-73.98734,Entire home/apt,169,3,4,2019-05-06,0.48,5,41 +29439494,VERREZZANO HOUSE,221760432,Daniel,Staten Island,Concord,40.60367,-74.0695,Entire home/apt,200,4,4,2019-05-07,0.53,1,320 +29440688,Neon Dreams - Private Bedroom in Chelsea,89120831,Shannon & Ryan,Manhattan,Chelsea,40.7487,-73.99678,Private room,100,1,42,2019-07-02,5.06,1,23 +29445977,Large luxury apartment. NYC,23930728,Jo,Manhattan,Harlem,40.81861,-73.94565,Entire home/apt,280,8,1,2019-01-06,0.16,1,166 +29449537,"Queen size bed room , New York Apartment",207651513,Nour,Manhattan,Harlem,40.80935,-73.9442,Private room,63,1,61,2019-07-01,7.50,3,31 +29450310,"Cozy, newly renovated, 2 bed, Brooklyn apartment",8699249,Tom,Brooklyn,Park Slope,40.67811,-73.97974,Entire home/apt,200,3,3,2019-06-22,0.40,1,0 +29450700,Commuter Studio,63300613,Kaleel,Manhattan,Washington Heights,40.84534,-73.93479,Shared room,125,2,13,2019-06-27,1.72,1,126 +29451949,Bushwick Room,65411833,Steve,Brooklyn,Bushwick,40.69016,-73.91075,Private room,50,30,0,,,1,0 +29452507,Charming Carroll Gardens/Gowanus Apartment,977716,Larah,Brooklyn,Carroll Gardens,40.67861,-73.99469,Entire home/apt,125,2,2,2018-11-25,0.24,1,0 +29452654,Inclusive & clean Time square sunny apartment,22251283,Nir,Manhattan,Hell's Kitchen,40.76388,-73.99307,Entire home/apt,125,30,0,,,4,0 +29452918,Great New York - Private or shared room 2,179336958,Ruby,Manhattan,Midtown,40.74684,-73.98698,Private room,75,4,7,2019-05-11,0.82,6,357 +29453027,BEST LOCATION!! Whole Apartment with Backyard!!,219782181,Vince,Manhattan,Lower East Side,40.71489,-73.98511,Entire home/apt,165,2,6,2019-06-08,0.92,3,83 +29453203,Serene & clean stay in a luxury building,221850456,Kat,Manhattan,East Harlem,40.78819,-73.94234,Private room,90,2,3,2018-12-06,0.38,1,89 +29453268,East Village Sublet multi month please,221853540,Kirt,Manhattan,East Village,40.72877,-73.98938,Entire home/apt,140,31,0,,,1,0 +29453598,"Artistic Studio Apt, Private Entrance",221851804,Tohar,Brooklyn,Crown Heights,40.66935,-73.94133,Entire home/apt,105,2,17,2019-06-16,2.01,1,245 +29455045,Beautiful apartment next to Central Park & The Met,33142561,Joan,Manhattan,Upper East Side,40.77697,-73.96063,Entire home/apt,110,30,2,2019-01-04,0.25,1,0 +29455145,"Modern 1BR Astoria, espresso maker, 5 min 2 train",4540122,Evan,Queens,Astoria,40.76204,-73.92267,Entire home/apt,74,5,3,2019-05-21,0.53,1,52 +29455324,Very spacious 2-BR entire apartment in the UWS,92657816,Juan Francisco,Manhattan,Morningside Heights,40.80413,-73.96416,Entire home/apt,239,2,9,2019-04-08,1.04,2,154 +29455519,Quiet Comfty Home,171446547,Xiomara,Staten Island,Bull's Head,40.617,-74.16485,Private room,80,1,29,2019-07-07,3.40,1,362 +29455559,Large 1 Bed Beautiful view LES in Luxury Building,221871654,Tim,Manhattan,East Village,40.72185,-73.98451,Entire home/apt,255,2,1,2019-05-17,0.57,1,0 +29455764,Single room in a 2-br apartment in the UWS,92657816,Juan Francisco,Manhattan,Morningside Heights,40.80463,-73.96373,Private room,99,3,3,2019-03-04,0.38,2,0 +29455913,Home,213781715,Anting,Brooklyn,Greenpoint,40.73297,-73.95385,Private room,119,1,0,,,33,365 +29455925,Home: 12 mins to Manhattan,213781715,Anting,Brooklyn,Greenpoint,40.73099,-73.956,Private room,119,1,0,,,33,365 +29455932,Chill pad,106692652,Thomas,Queens,Rego Park,40.72986,-73.85929,Private room,47,1,7,2019-01-25,0.82,1,0 +29456271,Sophisticated Artist Loft sale! Reg. $525.,6573459,Shelli,Manhattan,Financial District,40.71086,-74.00721,Entire home/apt,525,2,3,2019-05-24,0.36,1,158 +29457275,Hell's Kitchen Comfy Loft Bedroom (for one person),1710940,Michael,Manhattan,Hell's Kitchen,40.76199,-73.99253,Private room,62,1,59,2019-06-23,7.41,1,194 +29457680,Awesome Room with 2 Beds and Large Closet,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69388,-73.94501,Private room,70,3,19,2019-06-04,2.24,3,361 +29457851,New Luxury Williamsburg 2 Bedroom 2 Bath,53223410,Rachael,Brooklyn,Williamsburg,40.71047,-73.95529,Entire home/apt,200,5,2,2019-01-01,0.26,1,0 +29457860,not available,914386,Anna,Queens,Ozone Park,40.68129,-73.84235,Private room,75,1,1,2018-10-26,0.12,2,173 +29458518,Great New York - korea townPrivate room 1,179336958,Ruby,Manhattan,Midtown,40.74626,-73.98682,Private room,75,2,14,2019-05-27,1.76,6,305 +29459091,Lovely Modern Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83284,-73.94461,Private room,75,2,17,2019-06-23,1.99,2,27 +29459784,Comfy extra bedroom in Williamsburg,1453898,Anthony,Brooklyn,Williamsburg,40.71194,-73.9668,Private room,60,2,30,2019-06-23,3.53,3,43 +29459888,Stunning Modern Suite in the Heart of Brooklyn,105828180,Guy,Brooklyn,Crown Heights,40.66847,-73.95225,Private room,85,4,0,,,3,0 +29460026,Beautiful Room with 2 Beds Near Metro.,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94384,Private room,68,2,15,2019-05-15,1.76,3,365 +29460203,Charming Room with 2 Beds Near Metro,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69304,-73.94349,Private room,72,2,15,2019-06-23,1.77,3,365 +29461552,Chic Upper West Side Suite,210634970,Sheila,Manhattan,Washington Heights,40.83513,-73.94738,Private room,99,2,16,2019-06-18,1.89,1,283 +29461695,Large Private Room in Beautiful Brooklyn Apartment,97425,Lauren,Brooklyn,Bushwick,40.70137,-73.92442,Private room,70,2,10,2019-06-12,2.36,1,14 +29461747,Cozy 1 Bedroom in LIC,17813973,Maggy,Queens,Astoria,40.76276,-73.92508,Entire home/apt,86,1,6,2019-01-01,0.79,1,1 +29463258,It's always sunny in Hells Kitchen,57765860,Christina,Manhattan,Upper West Side,40.76964,-73.98615,Entire home/apt,250,7,0,,,1,34 +29463847,NIce Bright Private Room North of Central Park,221929447,Lyn,Manhattan,Harlem,40.81226,-73.94137,Private room,45,5,5,2019-06-17,0.60,1,184 +29464105,You can live in the center of Manhattan!,221934669,Tanya,Manhattan,Midtown,40.74945,-73.98762,Private room,119,1,58,2019-06-25,6.72,2,0 +29464708,Bright 2BR/2BA Apartment - Heart of East Village,104675082,Yoann,Manhattan,East Village,40.72908,-73.98912,Entire home/apt,300,6,1,2018-12-31,0.16,1,25 +29466848,Simple Perfect Soho Sublet,2047776,Jennifer,Manhattan,Nolita,40.7223,-73.99607,Entire home/apt,180,30,0,,,2,249 +29472696,Sharing room for FEMALE #1,167620568,Mikosya,Brooklyn,Brighton Beach,40.58056,-73.96313,Shared room,100,1,4,2019-06-09,0.56,2,365 +29473324,Huge Light Filled 1BDR Loft - Modern + Minimalist,586840,Sarah,Brooklyn,Bedford-Stuyvesant,40.69105,-73.95882,Entire home/apt,130,4,3,2019-05-27,0.40,1,5 +29478604,"Sun-filled room in a quiet, historic neighborhood.",137358866,Kazuya,Queens,Sunnyside,40.7366,-73.92358,Private room,39,30,1,2019-02-05,0.19,103,252 +29479579,Williamsburg New Luxury Private Room + Bathroom,6255971,Scott,Brooklyn,Williamsburg,40.71145,-73.95534,Private room,85,2,7,2019-07-01,0.83,1,326 +29480209,New Brooklyn&Breakfast listing! 2nd fl Budget Room,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67929,-73.97097,Private room,55,1,39,2019-07-01,4.55,13,315 +29480256,2 BED 2 BATH DUPLEX IN UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.77114,-73.95913,Entire home/apt,255,30,0,,,65,365 +29480988,Private Guest Loft in a Sunny Etsy-Lovers Apt,10659007,Kaylen,Brooklyn,Williamsburg,40.70969,-73.94356,Private room,110,2,0,,,1,0 +29481874,"Large, comfortable, one-bedroom Astoria apartment",20310357,Kira,Queens,Ditmars Steinway,40.77489,-73.9161,Private room,170,1,0,,,1,157 +29482218,San Carlos Hotel Deluxe Room (B)- up to 3,173685298,Janet,Manhattan,Midtown,40.75524,-73.97269,Private room,299,1,8,2019-05-19,0.94,11,177 +29482859,San Carlos Hotel Deluxe Rm 2 Queen bds (B)-up to 4,173685298,Janet,Manhattan,Midtown,40.75611,-73.97209,Private room,329,1,1,2019-04-21,0.38,11,178 +29483789,UPPER EAST SIDE LUXURY 2BR Apartment,222057751,Maayan,Manhattan,Upper East Side,40.75968,-73.95963,Entire home/apt,299,7,0,,,1,15 +29484503,Parisian West Village Apartment,4952877,Alexis,Manhattan,West Village,40.7374,-74.00409,Entire home/apt,255,2,3,2019-01-02,0.39,1,0 +29484840,Private room in Washington Heights!,222064628,Michael,Manhattan,Washington Heights,40.84832,-73.93583,Private room,42,1,59,2019-06-29,7.14,1,77 +29485421,Sunny Brooklyn Duplex,9503685,Aaron,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94334,Entire home/apt,150,2,3,2019-01-04,0.38,2,0 +29486682,Loft Space with Incredible Windows,5118419,Greg,Manhattan,Chinatown,40.71722,-74.00293,Entire home/apt,1500,1,0,,,1,365 +29486971,cozy artsy cool,52370129,Nino,Brooklyn,Bay Ridge,40.62444,-74.02916,Private room,63,2,5,2019-01-04,0.59,2,12 +29487162,"Cozy Room In The Heart Of Bushwick, Brooklyn",62925063,Andrea,Brooklyn,Bushwick,40.70167,-73.93308,Private room,50,1,3,2019-05-17,0.36,2,342 +29487347,Beautiful 1.5 bedroom in Bed Stuy Brownstone.,222081034,Vida,Brooklyn,Bedford-Stuyvesant,40.68457,-73.93456,Entire home/apt,150,2,40,2019-06-17,4.86,1,31 +29487530,Spacious Modern 1BR Living by NÔM Living,732460,Nôm,Brooklyn,Williamsburg,40.70878,-73.96622,Entire home/apt,120,30,1,2018-12-21,0.15,7,108 +29488512,Bushwick Modern Loft w/terrace,46296435,Garrett,Brooklyn,Bushwick,40.70137,-73.93277,Entire home/apt,225,2,0,,,1,85 +29489013,Exclusive ♥ | Bed-Stuy Sanctuary,215273760,Youge,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92838,Private room,65,3,21,2019-05-31,2.55,2,148 +29489329,Solo ♥ | Stuyvesant Sunshine,215273760,Youge,Brooklyn,Bedford-Stuyvesant,40.68337,-73.9288,Private room,65,5,30,2019-07-07,3.66,2,178 +29489407,Bright Apt Super Stylish Best Location,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76382,-73.98815,Entire home/apt,117,30,1,2018-12-09,0.14,91,345 +29489824,Stunning and Spacious Brownstone Apt in Park Slope,10555698,Sari,Brooklyn,Park Slope,40.67137,-73.98064,Entire home/apt,200,2,9,2019-07-07,1.09,1,23 +29489893,Beautiful furnished private studio with backyard,222098649,Melissa,Queens,Jamaica,40.68547,-73.79063,Entire home/apt,20,1,111,2019-07-07,13.11,1,41 +29490579,DUMBO PALACE,40529301,Tommy,Brooklyn,Fort Greene,40.69686,-73.97315,Private room,60,2,11,2019-07-03,2.39,2,113 +29490752,Williamsburg Bedford av. Comfy bedroom.,85942706,Pedro,Brooklyn,Williamsburg,40.71351,-73.96066,Private room,72,2,48,2019-06-28,5.83,1,95 +29491140,Modern & Sun-filled 1BR Condo in Prospect Heights,910677,Bertrand,Brooklyn,Prospect Heights,40.68014,-73.96539,Entire home/apt,150,8,12,2019-06-24,1.54,1,34 +29491851,"Gorgeous 2 bedroom apt in Ditmas Park +1300 ft.²",2831146,Nicole,Brooklyn,Flatbush,40.63513,-73.9672,Entire home/apt,185,2,2,2018-12-28,0.27,1,0 +29492316,Cozy Quiet UpperWest 1 bed near C Park/Subway,31994,Carol,Manhattan,Upper West Side,40.78587,-73.97589,Entire home/apt,140,2,18,2019-02-07,2.09,1,0 +29492381,Private Room in the Heart of NYC. Room 1 of 3.,22463377,Allison,Manhattan,Murray Hill,40.74936,-73.97836,Private room,153,1,25,2019-07-03,3.30,3,32 +29492557,Brick wall apartment next to subway station,110366443,Charlie,Manhattan,Harlem,40.81296,-73.94217,Private room,36,7,2,2019-04-20,0.27,1,16 +29495273,Home on Houston - 2 Rooms near SoHo/NoHo/LES,818753,Jamie,Manhattan,NoHo,40.72584,-73.99306,Private room,295,2,0,,,1,5 +29495710,Amazing One Bedroom Apartment in Prime Brooklyn,220060177,Alan,Brooklyn,Bushwick,40.69327,-73.90773,Private room,70,3,8,2019-05-19,0.95,2,362 +29495933,Luxurious Famous Hell’s Kitchen!,7985095,Douglas,Manhattan,Hell's Kitchen,40.7639,-73.99083,Entire home/apt,345,2,29,2019-07-07,3.40,3,100 +29496193,Cozy + Chic Harlem Apartment,33869262,Madeline,Manhattan,Harlem,40.82364,-73.94472,Entire home/apt,125,2,19,2019-06-30,2.35,1,37 +29501807,Sunny room with new Queen bed and large closet,77813945,Andrew,Manhattan,East Village,40.72145,-73.97881,Private room,75,4,5,2019-05-26,1.90,1,33 +29503231,Charming Studio in an EXCELLENT LOCATION,7339399,Julio,Manhattan,Hell's Kitchen,40.76614,-73.98484,Entire home/apt,180,4,13,2019-06-29,1.81,1,55 +29504717,1 Bdrm Midtown Oasis,29100568,Deborah,Manhattan,Theater District,40.76189,-73.98338,Entire home/apt,155,20,1,2019-01-19,0.18,4,0 +29504721,Luxury 3 bedroom in Prime Midtown,222190882,Katherine,Manhattan,Murray Hill,40.74485,-73.97072,Entire home/apt,625,4,26,2019-07-06,3.06,1,321 +29505792,2nd floor art,183707967,Dionyssios,Manhattan,Washington Heights,40.85416,-73.9292,Entire home/apt,120,2,14,2019-06-12,2.12,4,365 +29506320,Scandinavian Style 1BR in the Upper East Side,55966543,Mike,Manhattan,Upper East Side,40.78411,-73.95097,Entire home/apt,200,2,7,2019-01-01,0.88,1,0 +29507584,Modern and spacious 1BR apartment in Harlem,9212560,Karla,Manhattan,Harlem,40.82153,-73.94612,Entire home/apt,140,1,5,2019-06-30,0.66,1,3 +29508725,Brooklyn Loft Bedroom I,30346705,Soeun & Rolando,Brooklyn,Bedford-Stuyvesant,40.69206,-73.95997,Private room,55,1,40,2019-07-01,5.31,2,99 +29509608,Cozy Small Room with Brooklyn Bridge View,221591579,Liv,Manhattan,Financial District,40.70626,-74.00481,Private room,147,1,13,2019-06-09,1.62,1,177 +29509877,Great Location in Midtown! ESB,211549023,Studioplus,Manhattan,Midtown,40.74759,-73.98889,Entire home/apt,220,2,9,2019-06-15,1.54,13,283 +29511701,"Bright and cozy apartment in Cobble Hill, BK",18897333,Natalie,Brooklyn,Carroll Gardens,40.68572,-73.99234,Entire home/apt,115,2,9,2019-06-30,1.11,1,32 +29511905,CozyStudio /Briarwood Van Wyck station F to city,153141476,Franz,Queens,Briarwood,40.70626,-73.81463,Entire home/apt,44,1,17,2019-06-24,2.23,3,44 +29512260,Beautiful apartment!!,198730633,Ruth,Manhattan,Harlem,40.81223,-73.95284,Entire home/apt,298,1,16,2019-06-23,2.00,2,300 +29513000,✨✨Union Square Duplex LOFT•••4 BEDS✨✨MUST SEE !!!!,48762596,Bob,Manhattan,Gramercy,40.7367,-73.98985,Entire home/apt,499,5,28,2019-06-19,3.36,1,145 +29513074,"Quiet, Modern Studio Near Manhattan & Brooklyn",26600082,Stephanie,Queens,Ridgewood,40.69973,-73.90835,Entire home/apt,150,1,14,2019-07-02,2.80,1,2 +29513249,Large 1 bedroom apartment available,222249366,Nikia,Manhattan,Harlem,40.82267,-73.95044,Entire home/apt,80,3,1,2018-10-24,0.12,1,0 +29513311,Two beds in a spacious Studio!,222249602,Omar,Manhattan,East Harlem,40.78552,-73.94153,Entire home/apt,145,1,30,2019-06-21,3.61,1,144 +29513616,Enjoy a Private Room with 2 Beds in Bed Stuy,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69416,-73.94528,Private room,68,3,13,2019-05-20,1.54,3,365 +29513629,Gorgeous 1 bedroom in Brooklyn Heights!,781180,Maria,Brooklyn,Brooklyn Heights,40.69033,-73.9931,Entire home/apt,150,5,1,2019-01-04,0.16,1,35 +29514542,Delightful Private Room with 2 Beds Near Metro,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69288,-73.946,Private room,70,2,21,2019-06-23,2.51,3,344 +29514909,Modern and cozy apt in Manhattan,222261103,Brenda And Tim,Manhattan,East Harlem,40.78661,-73.94349,Entire home/apt,240,2,44,2019-06-27,5.22,1,93 +29514964,Beautiful Queen Bed Room - Entire Apt!,2670024,Renata,Brooklyn,Sunset Park,40.66266,-73.99064,Entire home/apt,120,7,1,2019-01-02,0.16,1,128 +29515301,Cozy flat in Williamsburg,156195302,Diogo,Brooklyn,Williamsburg,40.72062,-73.9555,Entire home/apt,200,2,7,2019-04-21,0.93,1,17 +29515558,"A Comfortable Place, 15 min to JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.6854,-73.8623,Private room,50,3,10,2019-06-24,1.36,2,44 +29515789,Private room-Upper East Side-2min walking Q train,222077787,Betty&Sam,Manhattan,Upper East Side,40.76464,-73.95831,Private room,99,6,18,2019-05-05,2.32,2,14 +29515916,* Modern Private BR in the Heart of Williamsburg *,7268300,Arianna,Brooklyn,Williamsburg,40.71204,-73.96541,Private room,80,4,3,2019-05-28,0.48,1,7 +29516095,Comfortable & Sunny 1 Bdrm – Heart of Fort Greene,37510066,Hayley,Brooklyn,Fort Greene,40.68723,-73.97369,Entire home/apt,128,1,31,2019-07-05,4.23,1,13 +29516374,Private Bedroom - King Size Bed,222272674,Anita,Brooklyn,Bay Ridge,40.62049,-74.02304,Private room,49,1,26,2019-07-06,4.08,1,174 +29516678,Harlem Heights Pearl Suite,39174150,Keanna,Manhattan,Harlem,40.8252,-73.95189,Private room,100,1,13,2019-06-11,1.58,3,71 +29517411,Sun Drenched Apartment in Brooklyn,62015880,Daniel,Brooklyn,Crown Heights,40.66734,-73.95637,Entire home/apt,119,2,4,2018-11-26,0.47,1,0 +29517540,KINGS THEATER! MODERN PRIVATE ROOM WITH AMENITIES!,222281704,Ekaterina,Brooklyn,Flatbush,40.6458,-73.95392,Private room,60,1,54,2019-07-02,6.78,1,317 +29517566,Stunning 4BDRM/2BTH Duplex Loft Best Neighborhood!,222086035,Vic,Manhattan,Lower East Side,40.71856,-73.98485,Entire home/apt,700,1,29,2019-06-24,3.57,1,256 +29517601,Amazing private room 15 min to manhattan!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69853,-73.94736,Private room,65,2,24,2019-06-20,3.83,3,310 +29517676,Spacious & Comfortable Suite w/ Private Entry/Bath,72001588,Dave,Staten Island,West Brighton,40.62625,-74.11109,Private room,80,1,29,2019-07-01,3.49,1,80 +29517691,Beautiful private room in townhouse!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69712,-73.94732,Private room,52,2,13,2019-04-27,1.72,3,320 +29517769,Cozy private room!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69651,-73.94763,Private room,62,2,18,2019-06-24,2.70,3,338 +29517788,"Super Spacious, Renovated, Artsy Uptown Apartment",13102999,Jhila,Manhattan,Harlem,40.82827,-73.94257,Entire home/apt,108,3,15,2019-06-15,1.99,1,0 +29518083,"Premier room in UWS NYC, Columbia, Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80392,-73.96556,Private room,120,1,52,2019-06-17,6.14,4,31 +29518497,Delightful private room 15 min to manhattan!,222288328,Matthew,Brooklyn,Bedford-Stuyvesant,40.697,-73.94543,Private room,60,2,10,2019-06-05,1.44,2,311 +29518561,Excellent private room!,222288328,Matthew,Brooklyn,Bedford-Stuyvesant,40.69871,-73.94686,Private room,72,1,30,2019-06-24,3.85,2,344 +29518745,"Quiet, classic Queens studio, on subway, JFK LGA",40298873,Jonathan,Queens,Forest Hills,40.71588,-73.83266,Entire home/apt,90,1,6,2019-05-19,0.79,1,83 +29518861,Fantastic private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69816,-73.94703,Private room,55,2,20,2019-06-24,2.64,3,332 +29518915,Great private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94552,Private room,55,2,23,2019-06-18,2.96,3,322 +29518961,Huge private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69746,-73.9454,Private room,55,2,19,2019-06-20,2.95,3,359 +29519083,Entire Apt in the center of NYC,60525649,Lixia,Manhattan,Hell's Kitchen,40.75464,-73.99542,Entire home/apt,120,2,9,2019-06-30,1.08,1,2 +29520126,Large 2 bedroom apartment in Williamsburg,11923041,Eli,Brooklyn,Williamsburg,40.7158,-73.95863,Entire home/apt,300,10,0,,,1,0 +29521183,"Financial District Studio, Furnished. Location!",644904,Donna,Manhattan,Financial District,40.70496,-74.00964,Entire home/apt,170,12,2,2019-05-31,0.27,1,14 +29521683,Explore NYC From Our Private Studio w/Free Wifi,78339088,Casa Victoria,Queens,Corona,40.75047,-73.85374,Private room,75,1,26,2019-06-24,3.45,1,115 +29522531,Private Cozy Room,14719992,Yoni,Brooklyn,Cypress Hills,40.67959,-73.89209,Private room,31,1,14,2019-06-08,1.72,3,210 +29524623,Room to rent for Couple specially tourists !,221374905,Jean,Brooklyn,Bushwick,40.69155,-73.90595,Private room,200,1,0,,,1,365 +29528574,Cosy room in spacious Fort Greene apartment,9601006,Izzy,Brooklyn,Fort Greene,40.69519,-73.97202,Private room,60,1,23,2019-04-23,2.70,1,0 +29531069,greenpoint williamsburg huge studio room /,150316502,Francisca,Brooklyn,Greenpoint,40.72674,-73.95495,Private room,250,5,0,,,1,154 +29531124,Charming private room 2 beds,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95153,Private room,65,30,10,2019-06-07,1.18,4,328 +29531408,Delightful Private Room X,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.69072,-73.95026,Private room,65,30,13,2019-05-15,1.65,4,336 +29533631,"Colorful, cozy, artsy bedroom in heart of bushwick",222385509,Marcy,Brooklyn,Bushwick,40.69807,-73.91494,Private room,35,7,1,2018-11-15,0.13,1,89 +29533666,Designer Brooklyn Townhouse with Garden,39801631,Charlotte,Brooklyn,Gowanus,40.67662,-73.98642,Entire home/apt,300,2,6,2019-06-24,0.80,1,3 +29533754,Beautiful Home 美麗之家,213781715,Anting,Brooklyn,Greenpoint,40.73136,-73.95447,Shared room,119,1,0,,,33,180 +29533829,Home: Cozy Secure Convenient 12 min to NYC舒適安全便利的家,213781715,Anting,Brooklyn,Greenpoint,40.73274,-73.95575,Shared room,119,1,0,,,33,365 +29533923,One stop away from manhattan,91605357,Tina,Brooklyn,Williamsburg,40.7073,-73.95739,Private room,85,1,56,2019-06-26,7.00,2,51 +29534664,Beautiful two bedrooms in front of the park,100106209,Emmie,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.96153,Entire home/apt,115,2,1,2018-12-29,0.16,2,219 +29535295,"SPACIOUS & COZY APARTMENT, 35 MINS FROM MANHATTAN",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68775,-73.87044,Entire home/apt,75,30,4,2019-06-18,0.55,6,170 +29535938,Sparkling Pad near Times Square HK -w- Queen Bed,501343,Bryan,Manhattan,Hell's Kitchen,40.76328,-73.98942,Private room,225,3,2,2019-05-14,0.73,2,30 +29538158,Private Sunny Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83469,-73.94604,Entire home/apt,129,2,13,2019-05-25,1.63,2,0 +29538751,Private bed in a huge apartment! Him-1R-1,216235179,Nina,Brooklyn,Bushwick,40.70114,-73.91879,Private room,50,30,1,2019-05-04,0.45,17,365 +29539167,Private Bedroom in Bushwick Him-1R-2,216235179,Nina,Brooklyn,Bushwick,40.69992,-73.92013,Private room,50,30,1,2019-04-22,0.38,17,326 +29539744,Amazing Bedroom in Brooklyn Him-1R-3,216235179,Nina,Brooklyn,Bushwick,40.70156,-73.91913,Private room,50,30,0,,,17,268 +29539982,Private Bedroom in the heart of Bushwick Him-1R-4,216235179,Nina,Brooklyn,Bushwick,40.70091,-73.92003,Private room,50,30,2,2019-05-25,0.52,17,333 +29540204,Gorgeous Bedroom on Himrod! Him-1R-5,216235179,Nina,Brooklyn,Bushwick,40.70154,-73.91873,Private room,50,30,0,,,17,325 +29540687,"East 82nd Street, Upper East Side/Yorkville 1bd",22541573,Ken,Manhattan,Upper East Side,40.77327,-73.94939,Entire home/apt,165,30,0,,,87,355 +29541214,New gorgeous garden view spacious 1BR flat,47022650,Jillian,Manhattan,East Harlem,40.79524,-73.93429,Entire home/apt,150,1,11,2019-07-02,1.34,3,356 +29541280,One block from subway: bed for traveler,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67745,-73.90958,Shared room,24,1,14,2019-06-16,1.65,17,89 +29541353,Quiet sleep share in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67937,-73.91108,Shared room,32,1,17,2019-06-24,2.13,17,87 +29541600,New york Single family home,206370255,Thiago Pereira,Manhattan,East Harlem,40.79468,-73.94194,Entire home/apt,200,2,8,2019-05-19,1.13,1,162 +29541790,** COZY & SPACIOUS 1/1 - HARLEM,196669206,Sara,Manhattan,Harlem,40.82359,-73.95508,Entire home/apt,119,2,24,2019-06-17,3.43,1,120 +29542012,Gorgeous Bohemian one BEDROOM in EAST VILLAGE,29387678,Robin,Manhattan,East Village,40.72208,-73.98472,Private room,1700,23,0,,,1,365 +29542612,NEW! 3 Bedroom Central Williamsburg Home,36149596,Lauren,Brooklyn,Williamsburg,40.71507,-73.95462,Entire home/apt,305,1,15,2019-07-01,1.89,1,43 +29543072,Homey Shared Apt - 5min to L train - Free cleaning,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.69976,-73.91202,Private room,35,30,0,,,9,43 +29543433,Large 1 bedroom in Manhattan upper west side,621652,Simon,Manhattan,Upper West Side,40.78014,-73.97974,Entire home/apt,200,5,1,2019-04-21,0.38,1,4 +29543716,"2BR- 3 Beds, Great Location in Midtown Manhattan",288972,Bono,Manhattan,Hell's Kitchen,40.75651,-73.99807,Entire home/apt,206,5,10,2019-06-02,1.55,1,199 +29543762,"Room w/private bathroom, Central Park & Times Sq",222456125,Mariano,Manhattan,Midtown,40.76474,-73.98187,Private room,160,3,5,2018-12-10,0.62,1,0 +29544456,Long Island City Gem!,11598586,Kate,Queens,Long Island City,40.74705,-73.94594,Private room,159,1,0,,,1,0 +29544710,Cozy 1 BDR in Long Island City,222460280,Elly,Queens,Sunnyside,40.74185,-73.92701,Entire home/apt,99,3,0,,,1,0 +29544793,LUXURY 3BDRM 2BTH Sleeps 10 PPL 30 min to Midtown,222461823,Youssef,Queens,Astoria,40.75862,-73.91097,Entire home/apt,349,2,27,2019-07-04,3.29,1,303 +29545994,Nice room available in Astoria for the holidays!,166794407,Bruna,Queens,Astoria,40.7673,-73.91194,Private room,70,1,3,2019-01-02,0.39,3,188 +29546132,LOFT Apartment in Bed-Stuy,7450345,Amy,Brooklyn,Bedford-Stuyvesant,40.69032,-73.9544,Entire home/apt,107,3,1,2018-10-26,0.12,1,0 +29546328,Spacious convenient room available immediately!!,222424429,Marta,Manhattan,Washington Heights,40.84701,-73.93949,Private room,38,2,17,2019-04-01,2.33,2,73 +29546402,Luxurious 1 Brd with Manhattan and Ocean views.,35944,Sergey,Brooklyn,Brighton Beach,40.57755,-73.96667,Entire home/apt,210,3,0,,,1,161 +29546751,Private apartment 10 min walk from train,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93481,Entire home/apt,139,1,12,2019-06-23,1.67,9,134 +29547131,Nights in Midtown Manhattan-Ladies Only,222476614,Melanie,Manhattan,Kips Bay,40.74579,-73.97887,Shared room,39,2,6,2019-04-21,0.74,3,352 +29547314,"Apartment New York +Hell’s Kitchens",35303743,Patricia,Manhattan,Upper West Side,40.76835,-73.98367,Private room,6500,30,0,,,1,97 +29547577,The Spot! 25 min from NYC walk to Belmont Park,129559712,Sidney,Queens,Queens Village,40.71024,-73.72928,Entire home/apt,100,2,42,2019-07-07,5.08,1,123 +29548163,The cozy room,222480912,Marielisa,Brooklyn,Bushwick,40.70288,-73.9195,Private room,62,2,7,2018-12-30,0.87,2,125 +29549451,The East Village Home: The Sunlight Room,126034120,Roni,Manhattan,East Village,40.72576,-73.97685,Private room,125,1,19,2019-06-16,2.68,3,230 +29549783,The Symphony,222430446,JohnP,Manhattan,East Village,40.72322,-73.98689,Private room,89,1,48,2019-07-05,5.83,2,7 +29550259,Sugar Cove,222430446,JohnP,Manhattan,East Village,40.7229,-73.98698,Private room,89,1,44,2019-07-01,5.59,2,4 +29558285,Brooklyns Perfect Location!,8435480,Matt,Brooklyn,Greenpoint,40.72198,-73.94992,Entire home/apt,180,2,41,2019-07-06,5.44,2,76 +29559298,Manhattan Club-A Lux Suite in Heart of Manhattan,93031650,Kay,Manhattan,Midtown,40.76434,-73.98199,Entire home/apt,300,4,0,,,1,0 +29559309,Artsy + Light. River Views. 30 min to 42nd St.,1418004,Estelle,Bronx,Highbridge,40.83217,-73.93148,Private room,45,5,15,2019-06-25,2.10,1,123 +29560068,Midtwon / UES Gem With Private Terrace!,165776960,Raanan,Manhattan,Midtown,40.75935,-73.96422,Entire home/apt,135,30,0,,,2,341 +29560863,Warm & Cozy Bushwick apt steps from Dekalb L Train,24050629,Mackenzey And Kelly,Brooklyn,Bushwick,40.70125,-73.91982,Entire home/apt,350,2,1,2018-12-31,0.16,1,0 +29561222,Quite and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6626,-73.87731,Private room,29,1,59,2019-07-05,7.25,2,54 +29562532,1/2 of a LARGE APARTMENT in Bushwick / Bedstuy <3,1903737,Natalie,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93231,Private room,99,2,0,,,3,0 +29562750,Huge sunny loft on Downtown Bowery!,23983203,Vance,Manhattan,Chinatown,40.71491,-73.99878,Entire home/apt,200,2,1,2018-10-31,0.12,1,5 +29562919,Awesome space on your own floor with a PrivateBath,19011946,John,Brooklyn,Bay Ridge,40.63766,-74.02626,Private room,99,3,1,2018-10-25,0.12,2,362 +29563829,Beautiful Twin Room in Victorian Cottage,7878911,Summer & Kamilya,Brooklyn,Flatbush,40.63635,-73.95502,Private room,90,3,5,2019-06-09,0.59,1,0 +29564676,Beautiful Bedroom in Booming Bushwick!,124069492,Maria,Brooklyn,Bushwick,40.70264,-73.92514,Private room,65,1,47,2019-07-03,5.53,2,29 +29564687,#2 Apartment,217293060,Mohan,Manhattan,Greenwich Village,40.73429,-73.99675,Entire home/apt,200,5,1,2018-10-28,0.12,4,89 +29565013,True 1BR in East Village with City Views,213302863,Kahrej,Manhattan,East Village,40.72348,-73.98322,Entire home/apt,175,3,3,2019-01-01,0.36,1,0 +29565064,#1,217293060,Mohan,Manhattan,Greenwich Village,40.73432,-73.99686,Entire home/apt,600,31,0,,,4,328 +29565377,"Sunny, 2 Bed Apartment on Wburg-Greenpoint Border",9229108,Etan,Brooklyn,Greenpoint,40.7218,-73.94085,Entire home/apt,250,7,1,2018-12-28,0.16,2,35 +29566272,Huge Apartment in the Heart of Bushwick,2897622,Jordan,Brooklyn,Bushwick,40.69786,-73.93125,Entire home/apt,200,6,1,2018-12-07,0.14,1,26 +29567252,Beautiful Artsy Apartment centrally located!,41083526,Brenda,Queens,Sunnyside,40.74322,-73.91989,Entire home/apt,130,4,0,,,2,0 +29567482,Clean & Cozy 1 BR - Great NYC Location,3472283,Julie,Brooklyn,Gowanus,40.67022,-73.9914,Entire home/apt,125,3,13,2019-04-13,1.65,1,0 +29567488,Amazing 1 bedroom apartment in Williamsburg Area,3719653,Pablo,Brooklyn,Williamsburg,40.71653,-73.94618,Entire home/apt,250,3,0,,,1,249 +29568068,Large Private Room in Gorgeous FiDi Apartment,119134476,Rachel,Manhattan,Financial District,40.70486,-74.01546,Private room,60,2,1,2018-12-12,0.14,1,18 +29570523,MyLittlePlace,222626145,Niko,Queens,Kew Gardens Hills,40.72292,-73.81635,Entire home/apt,90,1,19,2019-06-17,2.42,1,26 +29570887,"LARGE ROOM ‘N CLINTON HILL, Brooklyn, w / LAUNDRY!",24124835,Danielle,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95412,Private room,60,25,0,,,2,100 +29570920,Nice bedroom in Brooklyn !,15989323,Lea,Brooklyn,Williamsburg,40.7068,-73.94439,Private room,50,4,2,2019-01-03,0.31,1,0 +29573034,Studio Apartment Full Bath 15 Minutes From JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.68911,-73.86922,Entire home/apt,60,2,25,2019-06-30,3.18,2,289 +29575293,"""Cabin"" —Private Queen Bedroom in Jungly Apartment",41704832,Ben,Brooklyn,Bushwick,40.69663,-73.91226,Private room,85,1,29,2019-07-05,5.65,1,82 +29576256,(A) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.6781,-73.91163,Private room,55,2,26,2019-06-26,3.59,4,192 +29582742,"roomy & chic 1 bdrm w/ skyline views, near trains",222691577,Sara & Kevin,Brooklyn,Fort Greene,40.68638,-73.97378,Entire home/apt,250,2,3,2019-05-19,0.40,1,28 +29583389,PERFECT WILLIAMSBURG PLACE W/ BACKYARD OASIS,20283518,Jamie,Brooklyn,Williamsburg,40.70516,-73.94423,Private room,85,2,34,2019-06-21,4.00,1,74 +29584099,NYC Best 2 Bedroom Apartment Location,222700281,Paul,Manhattan,Kips Bay,40.74257,-73.97948,Private room,355,2,5,2019-03-07,0.66,1,230 +29584789,Beautiful Upper East Side 1 Bedroom Apt: King Size,41233448,Elizabet,Manhattan,Upper East Side,40.76975,-73.9524,Entire home/apt,260,6,2,2018-12-25,0.25,1,0 +29584983,Large quiet bedroom near williamsburg bridge,53413881,Donald,Brooklyn,Williamsburg,40.70803,-73.95475,Private room,55,2,4,2019-05-30,1.30,1,0 +29585263,Brooklyn Bedroom - Warm & Cozy Near Subway (2),217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94921,Private room,150,2,5,2019-03-20,0.70,3,37 +29585526,Room in cool apartment with cool people,132383053,Chezky,Brooklyn,Bedford-Stuyvesant,40.6928,-73.94525,Private room,55,1,45,2019-06-29,5.31,1,0 +29585551,Bushwick Brooklyn Grand Bedroom,131476075,Lakisha,Brooklyn,Bushwick,40.68581,-73.91176,Private room,58,1,18,2019-07-03,2.14,8,179 +29586573,1-Bedroom in Bushwick for 2 in shared apartment,4458360,Daniel,Brooklyn,Bedford-Stuyvesant,40.68804,-73.92279,Private room,110,2,0,,,1,280 +29587811,1 Bedroom in Williamsburg,162504107,Lucile,Brooklyn,Williamsburg,40.71526,-73.94987,Private room,90,2,2,2019-05-19,0.33,1,193 +29588060,Wonderful Stay at Upper West Side 2BR Apartment,178653055,Jones,Manhattan,Upper West Side,40.7826,-73.98006,Entire home/apt,90,5,18,2019-06-30,2.18,1,13 +29588371,San Carlos Hotel One Bedrm Suite/3 beds- up to 6,173685298,Janet,Manhattan,Midtown,40.75503,-73.97131,Private room,399,1,9,2019-07-01,1.23,11,176 +29588528,(C) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67717,-73.91161,Private room,55,2,28,2019-07-01,3.43,4,167 +29588587,(D) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67805,-73.91071,Private room,55,2,35,2019-06-27,4.25,4,209 +29588640,Hard to Find!! Entire Floor with 2 PRIVATE TERRACE,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67783,-73.91109,Private room,72,1,54,2019-06-30,6.43,4,239 +29589341,E 74 & 2nd Avenue,32606852,Julie,Manhattan,Upper East Side,40.77063,-73.95819,Entire home/apt,123,4,13,2019-05-28,1.94,1,1 +29590847,Artists + Travelers Private Room in Brooklyn,164178160,Karlie,Brooklyn,Bedford-Stuyvesant,40.69031,-73.95855,Private room,59,3,2,2018-11-17,0.24,1,0 +29591004,very small room near Columbia Uni med school,222749009,Hana,Manhattan,Washington Heights,40.84427,-73.94216,Private room,45,1,1,2019-01-02,0.16,3,66 +29591011,"Cozy, cute room in Williamsburg w/ shared backyard",41728993,Raqueli,Brooklyn,Williamsburg,40.71518,-73.93982,Private room,95,1,1,2019-05-04,0.45,1,0 +29591891,Large private bedroom,25073781,Arnaud,Manhattan,Harlem,40.8084,-73.94439,Private room,65,2,18,2019-05-15,2.34,2,188 +29592296,Brick Studio with Great wide Street View,211549023,Studioplus,Manhattan,Midtown,40.74749,-73.98816,Entire home/apt,260,2,20,2019-06-19,3.23,13,242 +29592523,"Luxury Studio, one block from Central Park",16398038,Valeria,Manhattan,Upper West Side,40.79306,-73.9676,Entire home/apt,260,5,2,2019-06-04,0.24,1,145 +29592768,Filomena’s,89351775,Alex,Queens,Ditmars Steinway,40.77362,-73.91947,Entire home/apt,73,1,69,2019-06-23,8.35,1,233 +29594425,Lovely room in the heart of Wiliamsburg,19184440,Karim,Brooklyn,Williamsburg,40.71808,-73.95859,Private room,60,5,1,2019-05-28,0.71,1,187 +29595432,BSM2. Shares basement,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.94668,Shared room,25,2,1,2018-11-27,0.13,6,365 +29596175,Private Room in the heart of Williamsburg,222782619,Carl,Brooklyn,Williamsburg,40.7156,-73.95233,Private room,150,2,7,2019-01-09,0.86,1,0 +29604741,My cozy studio,5497326,Jennifer,Manhattan,Upper West Side,40.77873,-73.97845,Entire home/apt,285,7,0,,,2,79 +29605492,Gilchrist Private,222843411,Brian,Brooklyn,Brooklyn Heights,40.69615,-73.99682,Entire home/apt,1000,3,0,,,1,363 +29605532,Serene art-filled apartment near Prospect Park,2681144,Dara,Brooklyn,Flatbush,40.6512,-73.95908,Entire home/apt,81,5,13,2019-06-25,1.89,1,8 +29605631,Cozy & Clean RM in Queens. Near Subway Station.,137358866,Kazuya,Queens,Woodside,40.74361,-73.90758,Private room,38,30,0,,,103,249 +29606105,Le Chateau vacation,22307859,Sharon,Brooklyn,Canarsie,40.63677,-73.89416,Private room,70,3,2,2019-01-02,0.25,5,86 +29607688,"Female only , Close to Manhattan, Safe, Clean,",99108929,Melih,Queens,Sunnyside,40.73753,-73.92233,Shared room,29,5,2,2019-02-21,0.27,2,23 +29609190,"Sunny Spacious Studio, Subway Right Downstairs!",13758411,Shell,Manhattan,Upper East Side,40.77807,-73.95003,Entire home/apt,160,1,1,2018-12-18,0.15,1,71 +29609668,Le Chateau Vacation,22307859,Sharon,Brooklyn,Canarsie,40.63784,-73.89406,Private room,98,3,0,,,5,361 +29609716,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6363,-73.95168,Private room,98,3,0,,,5,0 +29609786,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6345,-73.9519,Private room,98,3,0,,,5,0 +29610113,New Renovation cozy sweet apartment。3 FL,212147885,Alisa,Brooklyn,Cypress Hills,40.67791,-73.90662,Entire home/apt,150,3,14,2019-05-27,1.85,2,153 +29610311,♀ New Sunny Furnished Room near Express Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67954,-73.93276,Private room,35,15,0,,,14,0 +29610605,♀ New Large Sunny Room close to Express Train,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67854,-73.93204,Private room,50,15,2,2018-10-29,0.24,14,0 +29610742,Hip and minimal neighborhood loft,948095,Ellen,Manhattan,East Village,40.72455,-73.9783,Entire home/apt,265,14,2,2018-12-31,0.29,1,0 +29610930,New Large 3bd furnished space. Walk to Fast Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67992,-73.93244,Entire home/apt,211,1,1,2018-11-19,0.13,14,38 +29611037,1 bedroom apartment across the Central Park,40997229,Ana,Manhattan,Upper West Side,40.79487,-73.96304,Private room,160,3,3,2019-04-15,0.38,1,5 +29611144,Sunny and cozy room 10 minutes from Times Sq.61F3,190921808,John,Manhattan,Hell's Kitchen,40.75389,-73.99518,Private room,99,7,5,2019-06-08,0.69,47,332 +29611279,"Quiet, light-filled, Soho apartment",1940275,Alison,Manhattan,SoHo,40.72498,-74.00262,Entire home/apt,170,2,19,2019-06-24,2.64,1,184 +29611826,Modern & trendy serenity—great High Line location,287348,Rachelle,Manhattan,Chelsea,40.74919,-74.00377,Entire home/apt,299,2,7,2019-06-02,0.90,1,0 +29612248,"Colorful, Sun Drenched Bed Stuy Gem",19920574,Briana,Brooklyn,Bedford-Stuyvesant,40.68624,-73.9515,Entire home/apt,150,4,2,2018-12-31,0.26,1,0 +29612338,Instagrammers Dream Loft,1286471,Peter,Brooklyn,Bedford-Stuyvesant,40.69487,-73.95583,Entire home/apt,200,2,1,2019-05-27,0.68,1,6 +29612355,Rare gem nestled in the heart of Bushwick,6814283,Marc,Brooklyn,Bushwick,40.70218,-73.93034,Entire home/apt,140,3,3,2019-04-28,0.48,1,0 +29612907,"3 Bedroom Bright super Cozy, W'burg",12837247,Alejandro,Brooklyn,Williamsburg,40.7188,-73.94417,Entire home/apt,220,2,0,,,1,0 +29613115,Brooklyn is fun,221284411,Isaias,Brooklyn,East Flatbush,40.65234,-73.95145,Private room,35,28,7,2019-06-15,1.09,1,55 +29613339,Cozy One Bedroom Apartment In Downtown Manhattan,222901071,Maria,Manhattan,Battery Park City,40.7118,-74.01678,Entire home/apt,125,4,2,2018-11-27,0.26,1,0 +29613451,Modern 4story building w/private bathroom elavator,222909571,Jordan,Brooklyn,Bedford-Stuyvesant,40.67921,-73.93975,Private room,90,2,3,2019-01-02,0.37,1,329 +29614352,Steps from Times Square and Subway!,9489892,Serim,Manhattan,Hell's Kitchen,40.76186,-73.98851,Private room,99,1,15,2019-06-16,1.81,1,0 +29614580,⚡ 3 APT in 1--Large groups Travel & stay together⚡,129222253,Andy,Bronx,Williamsbridge,40.87831,-73.86511,Entire home/apt,350,2,3,2019-06-09,0.41,3,323 +29615968,Cozy&Quiet&Modern sky life in New York,45599567,Hana,Queens,Long Island City,40.74881,-73.93885,Private room,70,14,1,2019-01-07,0.16,1,0 +29616041,"Cozy Apt in UWS Manhattan, Columbia, Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80431,-73.96512,Private room,98,1,23,2019-06-18,3.22,4,64 +29617415,Spacious Manhattan room. Well lit! Always clean.,137358866,Kazuya,Manhattan,Harlem,40.81798,-73.94157,Private room,40,30,2,2019-05-19,0.38,103,246 +29621716,Large and comfortable in heart of Brooklyn,29746291,Sumana,Brooklyn,Prospect-Lefferts Gardens,40.65931,-73.95371,Entire home/apt,150,5,5,2019-07-05,0.68,1,3 +29621786,New York room uptown,34911780,Daniel,Manhattan,Inwood,40.85961,-73.92911,Private room,66,3,1,2018-11-05,0.12,2,107 +29623888,November's pre-holiday listing,217101766,Michelle,Manhattan,Upper East Side,40.77664,-73.95749,Private room,200,2,0,,,1,0 +29624337,Quiet spacious Williamsburg room w/ private bath,222990788,Reni,Brooklyn,Williamsburg,40.71018,-73.94671,Private room,100,1,4,2018-12-11,0.52,1,0 +29625454,30 minutes to Times Square! 10 to Williamsburg!,223000151,Minerva,Brooklyn,Bedford-Stuyvesant,40.68636,-73.91711,Private room,75,4,17,2019-07-05,4.02,1,9 +29625962,Large and charming apartment in the East Village,80102605,Zach,Manhattan,East Village,40.72766,-73.97715,Entire home/apt,150,1,4,2019-06-23,0.53,1,5 +29626157,Sun Drenched 1-Bed in the Heart of Park Slope,67516962,Phoebe,Brooklyn,Park Slope,40.66827,-73.98205,Entire home/apt,125,5,2,2019-05-19,0.76,1,9 +29626161,"Sunny room in UWS, Columbia,Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80441,-73.96352,Private room,85,1,46,2019-07-05,5.59,4,20 +29626345,"Dont Be Shy, Stay in Bedstuy!!!",223007347,Jay,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95204,Entire home/apt,175,2,21,2019-07-07,2.86,1,164 +29626682,"Comfort room in UWS, Columbia,CentralPark",222285897,Alvin,Manhattan,Morningside Heights,40.8042,-73.96491,Private room,90,1,42,2019-06-25,5.04,4,61 +29627988,Upper East Chic 1BR Apartment Near Central Park,65498336,Song,Manhattan,East Harlem,40.78918,-73.94787,Entire home/apt,199,1,41,2019-06-25,5.37,1,228 +29628181,2 bed next to Times Square w/ private heated patio,21703883,David,Manhattan,Hell's Kitchen,40.76289,-73.99487,Entire home/apt,250,2,6,2019-02-18,0.75,1,0 +29628380,Modern Studio Apartment,155027850,Dilek,Brooklyn,Bergen Beach,40.61954,-73.91133,Entire home/apt,85,5,17,2019-07-01,2.24,1,305 +29628681,New York Apartment close to many attractions,223027077,Keegan,Manhattan,Upper East Side,40.7631,-73.95866,Entire home/apt,150,1,2,2018-12-30,0.25,1,0 +29628693,Sanctuary Apartment in Ideal NYC Location,22178020,Lewis,Manhattan,Chinatown,40.71787,-73.99461,Entire home/apt,100,3,3,2019-07-01,3,1,301 +29628834,Manhattan/Step to central park 5th ave/3BR sleep 9,68014876,Takara,Manhattan,Midtown,40.76279,-73.97494,Entire home/apt,399,1,36,2019-06-23,4.29,1,201 +29628979,Queen Studio Room In Boutique Hotel,33213436,Alec,Brooklyn,Gowanus,40.67955,-73.98435,Private room,149,1,7,2019-06-03,0.95,8,365 +29629048,Charming East Village 1B Apt with Rooftop & View,160050819,Caitlyn,Manhattan,East Village,40.72683,-73.97993,Entire home/apt,250,4,1,2019-03-30,0.30,1,0 +29629244,Boutique Cozy Queen Room,33213436,Alec,Brooklyn,Gowanus,40.67983,-73.98408,Private room,139,1,16,2019-06-22,2.04,8,363 +29629370,Cozy Brooklyn Studio Apartment Condo,39483399,Kristen,Brooklyn,Fort Greene,40.69319,-73.98226,Entire home/apt,100,5,0,,,1,0 +29629465,Williamsburg own,37040186,William,Brooklyn,Williamsburg,40.70308,-73.94893,Entire home/apt,250,1,1,2018-12-30,0.16,1,178 +29629527,Cozy Brooklyn Heights,223032162,Dot,Brooklyn,Boerum Hill,40.68612,-73.98988,Entire home/apt,174,2,9,2019-06-09,1.13,2,3 +29629819,"Large, Clinton Hill studio with a view.",223032610,Erin,Brooklyn,Clinton Hill,40.69194,-73.96426,Entire home/apt,150,3,15,2019-06-25,1.88,1,19 +29629862,Private room in huge Soho apartment,4341365,Sophie,Manhattan,SoHo,40.72243,-74.00027,Private room,80,5,1,2019-03-05,0.24,1,0 +29629878,Sun-drenched Executive Suite 3,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68193,-73.91252,Private room,100,3,6,2019-06-28,0.95,3,348 +29630056,This place Very quiet and fresh!,222178766,Firuza,Brooklyn,Flatbush,40.64767,-73.96236,Private room,75,1,7,2019-07-02,0.85,1,133 +29630099,Beauty in the heart of downtown Brooklyn,57773455,Banafsheh,Brooklyn,Cobble Hill,40.68691,-73.99818,Entire home/apt,109,3,3,2019-01-03,0.37,1,0 +29630190,Cozy Brooklyn Heights - Private Room,223032162,Dot,Brooklyn,Boerum Hill,40.68602,-73.99023,Private room,65,2,15,2019-05-19,1.80,2,0 +29630309,Garden Room in Rego Park,89000911,Ursula,Queens,Middle Village,40.7258,-73.87071,Private room,65,1,0,,,2,0 +29630553,Fantastic Value - Quiet Room Seconds from Graham L,79576043,Jonathan,Brooklyn,Williamsburg,40.71521,-73.94473,Private room,40,28,0,,,1,0 +29630728,1 bedroom apartment in Chelsea,23954256,Meaghan,Manhattan,Chelsea,40.75024,-73.99686,Entire home/apt,189,1,7,2019-07-01,0.86,1,2 +29630759,"Room @Brooklyn, NY",222136360,Muhammet,Brooklyn,Borough Park,40.64749,-73.99646,Private room,45,1,8,2019-01-01,0.96,1,6 +29630879,Heart of Astoria- Extremely close to the CITY,219720888,Shuhel,Queens,Long Island City,40.75918,-73.93299,Entire home/apt,120,1,30,2019-02-25,3.66,1,6 +29630907,Paris in New York Cozy private entrance&bath bkfst,32295097,Maureen,Manhattan,Lower East Side,40.71454,-73.98782,Private room,125,2,33,2019-06-30,4.06,2,191 +29631258,Bedroom with private access to patio,23788168,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93711,Private room,45,10,8,2019-06-23,0.96,1,61 +29631302,"Large Bedroom in Beautiful, Modern Apartment",24799369,Alfonso,Manhattan,Hell's Kitchen,40.76381,-73.9919,Private room,120,5,1,2019-01-03,0.16,1,0 +29631369,New & Stylish 1 Bedroom Williamsburg,153754513,Caitlin,Brooklyn,Williamsburg,40.71258,-73.94307,Entire home/apt,82,1,15,2019-05-27,2.02,1,16 +29631667,"Quiet luxury condo w/ central aircon, roof & W/D",4138139,Nipun,Brooklyn,Crown Heights,40.67306,-73.95509,Private room,72,4,3,2019-07-06,1.73,1,16 +29631729,Modern Williambsurg Studio in Prime Location,9358058,Alex,Brooklyn,Williamsburg,40.71131,-73.95669,Entire home/apt,200,3,3,2019-06-30,0.38,1,35 +29631765,Modern and Spacious Brooklyn Duplex,17031708,Hannah,Brooklyn,Williamsburg,40.71301,-73.94846,Private room,500,3,1,2018-12-05,0.14,1,180 +29632401,Modern Private Studio IN East Flatbush,59808986,Elen,Brooklyn,East Flatbush,40.64841,-73.94516,Entire home/apt,110,1,20,2019-06-23,2.41,3,290 +29632875,Bright and Cozy Brooklyn Apartment,14906911,Sophie,Brooklyn,Williamsburg,40.71867,-73.95162,Private room,75,1,3,2019-02-14,0.37,1,0 +29633187,J-BRAND NEW LUXURY ROOM 25 MIN DRIVE TO MANHATTAN,8814258,Nikole,Queens,South Ozone Park,40.673,-73.79552,Private room,64,3,1,2019-06-13,1,7,195 +29633588,3 BEDS - PRIVATE HALF BATH -NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69383,-73.95268,Private room,100,30,13,2019-06-22,1.55,3,336 +29635253,New york Cozy studio,34075689,Zhen Zhen,Queens,Maspeth,40.7221,-73.90223,Entire home/apt,100,7,23,2019-06-25,2.86,3,88 +29635732,Newly Renovated Spacious 2 Bedroom Apartment!,63227531,Marwa,Staten Island,Randall Manor,40.62743,-74.12261,Entire home/apt,140,2,12,2019-07-05,1.57,2,340 +29636554,Cozy room in hip Lower East Side neighborhood,5855485,Sarah,Manhattan,Lower East Side,40.71924,-73.98507,Private room,83,2,3,2019-06-30,3,1,6 +29640481,DESIGNER 1 BEDROOM APARTMENT,218048903,David M,Manhattan,Hell's Kitchen,40.75983,-73.99064,Entire home/apt,200,2,17,2019-06-25,2.13,1,254 +29644544,Cosy One-Bedroom in vibrant Washington Heights,41323748,Karen,Manhattan,Washington Heights,40.83414,-73.94565,Entire home/apt,125,5,18,2019-06-24,2.19,1,1 +29645650,Beautiful Bedroom in Bedstuy,26219578,Zoe,Brooklyn,Bedford-Stuyvesant,40.69071,-73.94478,Private room,32,3,0,,,1,48 +29646041,"Comfortable place, 15 min from JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.68639,-73.86088,Private room,60,5,11,2019-05-31,1.44,2,17 +29646391,Aiden’s Red Door - Jr. Penthouse Suite,32418402,Roxanne,Brooklyn,Crown Heights,40.67223,-73.93027,Private room,89,2,4,2019-07-07,4,2,88 +29646454,Large Private room in Astoria. Midtown in 20mins,7832790,Michael,Queens,Astoria,40.76416,-73.91321,Private room,90,1,7,2019-06-05,1.00,2,49 +29647523,Spacious - Newly Renovated 2/2 on Top Floor,57294763,Grant,Queens,Rego Park,40.73355,-73.85856,Entire home/apt,155,30,0,,,1,125 +29648013,Chic Brand New Maisonette 2BR in Greenpoint,222270217,Katie,Brooklyn,Greenpoint,40.73291,-73.95989,Entire home/apt,139,3,36,2019-06-19,4.48,1,58 +29648368,Duplex Room in the heart of Williamsburg,108426646,Dan,Brooklyn,Williamsburg,40.71205,-73.95838,Private room,70,3,4,2019-06-23,0.48,1,0 +29648584,"Super Cozy Kensington by F,G trains",14898658,Chadanut,Brooklyn,Kensington,40.64243,-73.98049,Private room,42,1,4,2019-03-10,0.59,11,88 +29649727,Sunny Private Bedroom in Nolita,17076157,Grace,Manhattan,Chinatown,40.71859,-73.9958,Private room,85,4,5,2019-06-21,1.35,1,0 +29650402,Landmarked Limestone Sanctuary,68198631,Kate,Brooklyn,Prospect-Lefferts Gardens,40.66354,-73.95507,Entire home/apt,860,2,4,2019-04-28,0.49,1,23 +29651529,THE LOUVRE MEETS THE HEART OF THE EAST VILLAGE,223180509,Jane,Manhattan,East Village,40.72399,-73.98261,Entire home/apt,195,1,54,2019-07-01,6.45,1,181 +29652130,♂ ♀ Large Sunny Bedroom Walk to Express Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93256,Private room,75,15,0,,,14,0 +29652274,Clean room in Soho/Nolita,126510786,Peyton,Manhattan,SoHo,40.72306,-74.00006,Private room,120,1,1,2018-11-20,0.13,1,0 +29652347,♂ ♀ Large Room Close to Express Subway + Bus,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67974,-73.93134,Private room,65,15,0,,,14,0 +29652490,♂ ♀ Sunny Bedroom in Popular Brooklyn,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67937,-73.93262,Private room,45,15,0,,,14,0 +29652691,♀ Female Only Large Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67817,-73.93198,Shared room,35,15,0,,,14,0 +29652878,♀ Female Only Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67784,-73.93236,Shared room,30,15,0,,,14,0 +29653011,♀ Female Only Single Bed in Sunny Room Popular,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67775,-73.93201,Shared room,30,15,0,,,14,0 +29653137,"♀ Female only Shared Bedroom, Double Bed",204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67801,-73.93142,Shared room,35,15,0,,,14,0 +29653294,LaGuardia in less than 30. Steps to Supermarket.,137358866,Kazuya,Queens,Jackson Heights,40.75023,-73.87896,Private room,31,30,2,2019-06-13,0.62,103,269 +29653333,Yankee stadium pad,127828600,Brey,Bronx,Concourse,40.82773,-73.92308,Private room,100,1,2,2018-12-27,0.26,1,177 +29653480,Cozy Room near mall & Elmhurst Ave station (M.R).,137358866,Kazuya,Queens,Elmhurst,40.74293,-73.87908,Private room,42,30,0,,,103,0 +29653774,♀ Large Sunny Room in Newly Renovated Apt Popular,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67931,-73.93212,Private room,75,15,0,,,14,0 +29653847,Luxurious Duplex Condo in the heart of Brooklyn,223198021,Roy,Brooklyn,Prospect-Lefferts Gardens,40.66235,-73.94619,Entire home/apt,165,2,19,2019-06-29,2.30,1,102 +29654002,Cozy Studio with River Views,223198779,Juliet,Manhattan,East Harlem,40.79112,-73.93606,Entire home/apt,95,5,20,2019-06-20,2.43,1,56 +29654013,♀ Sunny Bedroom in Great Apartment in Popular Bk,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67862,-73.93227,Private room,41,15,0,,,14,0 +29654321,Fab Williamsburg 1 BR w great amenities! #10307,7863991,Tiffany,Brooklyn,Williamsburg,40.71922,-73.94258,Entire home/apt,250,2,23,2019-06-29,3.17,1,311 +29654969,Spacious room in Ridgewood,58377909,Benjamin,Queens,Ridgewood,40.69956,-73.90752,Private room,30,6,2,2019-01-08,0.26,1,0 +29655150,Ground Floor Gem w/ tiny patio!,304262,Bjorn,Manhattan,Lower East Side,40.71555,-73.98949,Entire home/apt,165,30,0,,,1,353 +29655330,MANHATTAN CLUB - 1 BEDROOM SUITE,223208290,Charles,Manhattan,Midtown,40.76562,-73.98233,Private room,250,4,1,2018-12-14,0.14,1,3 +29655436,Weekend Getaway,4452717,Sandra,Brooklyn,Williamsburg,40.71797,-73.95441,Entire home/apt,200,3,0,,,1,5 +29656082,The Perfect Room 1 stop to East Village!,2967914,Nina,Brooklyn,Williamsburg,40.71435,-73.96292,Private room,102,1,56,2019-07-05,6.80,2,14 +29656826,Rare and spacious apartment. 15 mins to Manhattan.,223191465,Kiryl,Brooklyn,Williamsburg,40.71131,-73.94156,Entire home/apt,200,3,29,2019-06-09,3.57,2,144 +29656859,"Petra, Place of Peace ***Female PREFERRED!***",223219744,Dina,Queens,Jamaica,40.69441,-73.78954,Private room,60,2,2,2019-03-24,0.32,1,180 +29657375,"Gorgeous Room in Williamsburg, 10min to Soho",2967914,Nina,Brooklyn,Williamsburg,40.71304,-73.96238,Private room,102,1,48,2019-06-21,5.81,2,20 +29657991,1BR Apartment close to Prospect Park,16502641,Marni,Brooklyn,South Slope,40.66036,-73.98494,Entire home/apt,93,5,10,2019-07-07,1.60,1,2 +29658517,Close by Central Park,222755851,Sarah,Manhattan,Upper West Side,40.79896,-73.96183,Private room,110,3,5,2019-06-18,0.62,2,176 +29659322,COZY SPACIOUS ROOM WITH PRIVATE ENTRANCE TO GARDEN,223238601,Valentine,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93364,Private room,70,5,8,2019-06-29,2.82,1,307 +29659447,Private room. All RENOVATED. 4 stops to MHTN,152395213,Ramiro,Queens,Astoria,40.76332,-73.92478,Private room,80,5,16,2019-06-05,2.00,1,29 +29660984,charming Bedroom in a quite neighborhood,221751961,Maya,Staten Island,Oakwood,40.56028,-74.10678,Private room,46,1,4,2019-01-19,0.51,1,0 +29661457,Modern Spacious Room in Loft with Rooftop,2930482,Ashley,Queens,Ridgewood,40.70177,-73.89797,Private room,75,1,1,2018-11-17,0.13,1,0 +29661817,Monet in Manhattan private room w deck & bkfst,32295097,Maureen,Manhattan,Lower East Side,40.71434,-73.98641,Private room,125,2,28,2019-07-03,3.39,2,255 +29661866,Minimal East Village studio in the BEST location!,20087466,Adela,Manhattan,East Village,40.72434,-73.98018,Entire home/apt,110,3,15,2019-04-17,1.89,1,0 +29662087,"Three ""new"" New Yorker's",222755851,Sarah,Manhattan,Upper West Side,40.79896,-73.96027,Private room,145,1,2,2018-11-08,0.24,2,0 +29662414,"Grand Street in Brooklyn, G stop, L stop.",162938514,Alex,Brooklyn,Williamsburg,40.71121,-73.95028,Entire home/apt,250,2,24,2019-06-29,3.01,1,282 +29662606,Your Home Away From Home in New York City! NYC,10552196,Nikolas,Manhattan,Hell's Kitchen,40.76158,-73.99175,Shared room,100,1,2,2018-12-09,0.24,1,363 +29670957,Huge 450ft Master Bedroom in Spectacular Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72197,-74.00401,Private room,200,3,0,,,3,0 +29672090,comfortable one-bedroom in great LES location,1887283,Sylvia,Manhattan,Chinatown,40.71415,-73.99255,Entire home/apt,121,2,8,2019-06-24,1.07,1,0 +29674137,SOUTH RIVER VIEWS/DOORMAN-E 52nd ST,2856748,Ruchi,Manhattan,Midtown,40.75565,-73.9634,Entire home/apt,330,30,0,,,49,365 +29674246,Immaculate and Bright Apartment Downtown,21610233,Britni,Manhattan,Battery Park City,40.71756,-74.01659,Entire home/apt,650,7,0,,,1,12 +29674265,Stylish studio in the heart of Clinton Hill,777522,Harris,Brooklyn,Clinton Hill,40.68424,-73.96661,Entire home/apt,105,1,3,2019-06-09,0.40,1,0 +29674661,Williamsburg Artist Loft,35033777,Rune,Brooklyn,Williamsburg,40.70572,-73.93387,Entire home/apt,110,30,0,,,1,262 +29674710,Great New York-korea town1~2,179336958,Ruby,Manhattan,Midtown,40.74595,-73.98509,Private room,65,3,3,2019-06-03,1.53,6,359 +29674940,Sunlit Backyard in NYC + Walk to Zoo and Gardens!,57400178,Diane,Bronx,Allerton,40.86923,-73.86275,Entire home/apt,90,5,1,2019-01-02,0.16,1,157 +29675374,Trendy and Spacious East Harlem 1BR Apt,223340140,Olivia,Manhattan,East Harlem,40.79793,-73.94334,Entire home/apt,109,1,3,2018-12-29,0.45,1,0 +29675631,Gorgeous Modern + Sunny Room in Prime Williamsburg,198395530,Carla,Brooklyn,Williamsburg,40.71217,-73.95888,Private room,68,5,1,2018-11-02,0.12,1,0 +29676028,Cozy and new apartment between LES and Chinatown,223345099,Milica,Manhattan,Chinatown,40.71431,-73.99275,Entire home/apt,170,3,22,2019-06-27,2.84,1,128 +29676417,New York Moments (Ladies Only),223248121,Julia,Manhattan,Kips Bay,40.74319,-73.98074,Shared room,39,2,1,2019-01-01,0.16,1,365 +29676867,Home of Harmony,62234273,Harmony,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92012,Entire home/apt,100,3,35,2019-07-07,4.25,1,283 +29677326,Ultra Lux Morden 2 Bedrooms suite with court yard,220762164,Sherley,Queens,St. Albans,40.69161,-73.76326,Entire home/apt,298,2,12,2019-06-23,1.51,4,365 +29678364,Kan house,183417610,Kanchana,Queens,Elmhurst,40.7409,-73.87738,Private room,180,1,3,2019-05-27,0.39,3,88 +29678746,KalaJones,84077949,Gunmala,Manhattan,Roosevelt Island,40.7662,-73.94676,Entire home/apt,250,3,2,2019-01-04,0.31,1,1 +29678787,Beautiful & bright space in PRIME Williamsburg,55693494,Amore,Brooklyn,Williamsburg,40.71309,-73.96331,Private room,120,2,13,2019-05-25,1.73,1,108 +29679067,Kan house,183417610,Kanchana,Queens,Elmhurst,40.73841,-73.87751,Private room,180,1,0,,,3,0 +29679464,The perfect resting stop,144167745,Maria,Brooklyn,Sunset Park,40.64335,-74.02255,Private room,50,2,39,2019-06-30,6.19,1,31 +29679677,Lofty Studio in the heart of Williamsburg,8587936,Aimée,Brooklyn,Williamsburg,40.71823,-73.96141,Entire home/apt,180,3,0,,,1,0 +29680105,1 Private Room in West Harlem,137380710,Bruce,Manhattan,Harlem,40.82723,-73.94217,Private room,40,5,1,2019-02-18,0.21,1,0 +29680716,Stunning Flatiron 1 BR near Subway access to all!,223374565,"Christine,",Manhattan,Midtown,40.74376,-73.98355,Entire home/apt,189,4,16,2019-07-05,2.11,1,323 +29681004,Cozy Studio in West Village,15197115,Stephanie,Manhattan,West Village,40.73513,-74.0063,Entire home/apt,500,2,3,2019-06-01,1.55,1,5 +29682189,Huge & Sunny room in Williamsburg,1472433,Marcos,Brooklyn,Williamsburg,40.70758,-73.94134,Private room,56,5,1,2018-11-11,0.13,2,10 +29682577,Kan house,183417610,Kanchana,Queens,Elmhurst,40.74085,-73.87682,Private room,180,1,0,,,3,0 +29683262,5 mins from Central Park +Community #1,215540583,OneBaz106,Manhattan,East Harlem,40.79018,-73.94014,Private room,78,10,13,2019-05-20,1.83,1,68 +29683293,Guest room nice family in Cypress Hills :),223393782,Mercedes,Brooklyn,Cypress Hills,40.68983,-73.86905,Private room,45,3,6,2019-01-02,0.78,1,6 +29683957,Williamsburg Waterfront Luxury Apartment,18283992,Hannah,Brooklyn,Williamsburg,40.719,-73.96419,Entire home/apt,250,2,2,2019-04-14,0.33,1,0 +29684187,Natural Habitat | ♥ SUPER HOST ♥,223401516,Jessica,Brooklyn,Bedford-Stuyvesant,40.68424,-73.92828,Private room,65,2,34,2019-07-02,4.20,1,175 +29684231,Private Room in Relaxing Townhouse,861848,Nicholas,Brooklyn,Bedford-Stuyvesant,40.69093,-73.92754,Private room,68,2,0,,,2,0 +29684573,Nice Cozy Room In Brooklyn On A Dead End Block,31039254,Sean,Brooklyn,East Flatbush,40.64843,-73.93549,Private room,45,1,8,2019-07-07,5.00,1,334 +29685583,"SPACIOUS MANHATTAN ROOM +NO EXTRA FEE",77304447,Genesis,Manhattan,Harlem,40.81834,-73.95583,Private room,42,5,34,2019-07-04,4.23,3,40 +29686349,"Brooklyn Room, lots of sunlight",38299001,LaQuann,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93387,Private room,55,1,0,,,1,0 +29686468,Private Master Bedroom,142641298,Maryana,Brooklyn,Bedford-Stuyvesant,40.69251,-73.94549,Private room,100,1,1,2018-11-19,0.13,1,0 +29686576,Cozy NYC Downtown Room,13392472,Lana,Manhattan,Lower East Side,40.72085,-73.98945,Private room,103,3,38,2019-07-05,4.58,1,99 +29686857,"2BR Apartment in Ridgewood, 20min to Manhattan",223422291,Robin,Queens,Ridgewood,40.70242,-73.90403,Entire home/apt,115,3,15,2019-06-24,1.88,1,10 +29686875,"*Spacious, Modern and Charming 1 Bedroom Apt!*",223418394,Max,Manhattan,Washington Heights,40.84726,-73.93866,Entire home/apt,90,1,15,2019-05-12,1.87,1,170 +29687049,"ALL PRIVATE - Bedroom, Bath and Kitchenette",617537,Bryan,Brooklyn,Bushwick,40.6952,-73.91535,Private room,85,3,35,2019-06-18,4.34,1,127 +29687597,East Village Escape for 2-4 guests!,223426581,Evan,Manhattan,East Village,40.72535,-73.98794,Entire home/apt,229,2,21,2019-07-03,2.58,1,70 +29687924,Gorgeous Room with Private Bath in Bedstuy,104246751,Javier,Brooklyn,Bedford-Stuyvesant,40.69237,-73.94314,Private room,95,1,36,2019-07-02,4.34,1,79 +29688392,Serenity In Queens,223431967,Stacy,Queens,Flushing,40.72915,-73.79448,Private room,70,2,0,,,1,95 +29688903,Room J near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.80434,-73.9649,Private room,80,1,28,2019-06-22,3.53,3,8 +29689103,Cozy studio btw upper east side and midtown east,19289434,Roman,Manhattan,Upper East Side,40.76118,-73.96036,Entire home/apt,140,3,1,2019-02-24,0.22,1,0 +29689253,Privet Room in GROUND FLOOR apt with FREE parking,57128179,Rita,Queens,Rego Park,40.71605,-73.85854,Private room,66,1,24,2019-07-05,2.99,2,327 +29690801,Private room next to N train.,198021963,Onur,Brooklyn,Borough Park,40.61979,-73.98886,Private room,20,1,12,2019-06-25,1.66,1,14 +29697411,Large Cozy Bedroom Near Manhattan & Airport,3644693,Eugenia,Queens,Jackson Heights,40.75166,-73.88088,Private room,68,28,5,2019-01-23,0.61,2,0 +29698179,QUIET Zen Garden Pad in BEST Brooklyn location!,324657,Laura,Brooklyn,Park Slope,40.67918,-73.97408,Entire home/apt,108,3,15,2019-06-16,1.87,1,8 +29699681,Sunny Penthouse with Williamsburg Bridge view,5226176,Laura,Brooklyn,Williamsburg,40.71093,-73.96407,Entire home/apt,143,5,2,2019-05-21,0.24,1,9 +29700382,"Spacious Hell's Kitchen Studio, Amazing Location",24561601,Morgan,Manhattan,Hell's Kitchen,40.76629,-73.98816,Entire home/apt,132,2,10,2019-05-26,1.25,1,3 +29701014,"Newly Renovated 3BR Apt,Minutes away from SI Ferry",223504937,Ellouise,Staten Island,Randall Manor,40.62692,-74.1299,Entire home/apt,109,3,21,2019-07-07,4.44,1,121 +29701500,New York Chelsea Art Apt.,30627525,Laith,Manhattan,Chelsea,40.73798,-73.99253,Entire home/apt,200,3,10,2019-06-08,1.35,1,263 +29701773,Chic one bedroom apartment in the heart of NYC,5224789,Mona,Manhattan,Hell's Kitchen,40.76072,-73.98993,Entire home/apt,150,4,3,2019-06-12,0.44,1,3 +29701791,Cozy Private Apartment 4 stops away from 42 st,5735865,Anya,Manhattan,Upper West Side,40.80254,-73.96723,Private room,70,3,23,2019-06-23,2.90,1,87 +29702007,"Cozy apartment with art, good light, books",8533032,Andrew,Brooklyn,Carroll Gardens,40.67414,-73.99961,Entire home/apt,130,4,5,2019-05-18,0.63,1,10 +29702562,DOORMAN Immaculate A/C Quiet Elegant,1575480,Gerard,Manhattan,Upper East Side,40.77081,-73.94944,Entire home/apt,195,30,1,2019-01-01,0.16,1,143 +29703038,LUXARY 2BR DUPLEX LOFT Downtown Brooklyn,48194192,Allen,Brooklyn,Clinton Hill,40.69509,-73.96462,Entire home/apt,191,1,42,2019-06-23,5.94,4,28 +29703465,"Sunny, Modern Comfort in Harlem",61684829,Chris,Manhattan,Harlem,40.80602,-73.95627,Entire home/apt,250,3,2,2018-12-02,0.27,1,0 +29704561,Huge Designer Soho Loft (Elevator) Private Terrace,54377368,Alexander,Manhattan,Lower East Side,40.721,-73.99218,Entire home/apt,350,2,5,2019-06-28,0.74,1,326 +29704596,Fraud,95642648,Тest,Manhattan,Lower East Side,40.72036,-73.98883,Shared room,147,3,9,2019-06-26,1.32,2,0 +29704955,Huge Room Right by the Myrtle JMZ,63966927,Hope,Brooklyn,Bedford-Stuyvesant,40.6956,-73.93739,Private room,50,1,5,2019-06-22,0.65,1,188 +29705049,"Sunny, Cozy Apt in the Heart of BedStuy for Cheap",82286,Linda,Brooklyn,Bedford-Stuyvesant,40.68615,-73.9356,Entire home/apt,79,3,2,2019-05-09,0.25,1,157 +29705115,Charming Apt in Historic Greenpoint Brownstone,153503882,Katherine,Brooklyn,Greenpoint,40.72795,-73.95481,Entire home/apt,150,2,8,2019-03-18,1.03,1,0 +29705207,Luxurious Ensuite in Historic Brownstone,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68405,-73.93401,Private room,70,2,11,2019-05-24,1.45,2,71 +29705876,One stop subway from mamhattan,36288249,Wu,Queens,Long Island City,40.7478,-73.94113,Private room,200,29,14,2019-01-06,1.70,1,364 +29706277,Vintage first floor private room in a 3 bed apt,57128179,Rita,Queens,Rego Park,40.71639,-73.85799,Private room,60,2,12,2019-06-16,1.45,2,19 +29706358,Bright and Airy Greenwich Village Junior 1 Bedroom,259123,Caitlin,Manhattan,Greenwich Village,40.73492,-73.99604,Entire home/apt,300,2,2,2018-12-15,0.26,1,11 +29706750,Sun filled DJ apartment in Williamsburg,187496935,Marie,Brooklyn,Williamsburg,40.71024,-73.95834,Entire home/apt,200,2,8,2019-01-02,1.00,1,5 +29707094,Female Shared 2 Bedroom Apt by Lincoln Center,223548766,Jeane',Manhattan,Upper West Side,40.77221,-73.9875,Private room,100,2,15,2019-06-30,1.81,1,58 +29707860,Entire Basement w/ Warm+Friendly+Brooklyn Energy!,223553290,Eli,Brooklyn,Cypress Hills,40.67948,-73.89313,Entire home/apt,200,1,5,2019-05-19,1.21,1,360 +29708352,Privet living room,205131610,Steven,Brooklyn,Canarsie,40.64376,-73.90833,Private room,68,2,3,2019-06-02,0.47,3,365 +29708729,Notorious -_- 15R,222483970,Felipe,Manhattan,East Village,40.72316,-73.98703,Private room,55,1,35,2019-07-02,4.39,1,0 +29710266,Manhattan Sights & Sound (Ladies Only),223574944,Carly,Manhattan,Kips Bay,40.74355,-73.97936,Shared room,39,2,2,2019-03-25,0.52,2,326 +29710463,"2 bedroom, one bath in Crown Heights",203302656,Nadine,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95075,Entire home/apt,2545,90,0,,,1,180 +29711508,"Cozy clean room ;LGA 5 mints,JFK 10 mint Astoria",104814095,Hanine,Queens,East Elmhurst,40.75967,-73.88335,Private room,50,1,10,2019-06-04,1.37,3,85 +29711772,Luxury Apt near the Statue of Liberty,223578316,Susan,Manhattan,Financial District,40.7041,-74.0155,Entire home/apt,160,1,27,2019-06-26,3.28,1,302 +29712188,"Heaven in New York, Orange Room",185908506,Cynthia,Bronx,Edenwald,40.885,-73.83518,Private room,75,3,1,2018-11-20,0.13,3,311 +29712306,★Private Rooftop★- Your Own Townhouse in NYC,219490225,Hazel,Manhattan,West Village,40.73881,-74.00398,Entire home/apt,399,2,29,2019-07-02,3.83,1,234 +29712675,"Luxury Two Bedroom Ground Floor, Walk-in Apartment",222179066,Nneka,Brooklyn,Bedford-Stuyvesant,40.68775,-73.92581,Entire home/apt,115,1,89,2019-06-20,11.03,1,278 +29722452,Perch Harlem,14631757,Scott,Manhattan,Harlem,40.83039,-73.94721,Entire home/apt,150,1,5,2019-05-27,0.67,1,319 +29722985,J-ROOM SHARE BY CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.67098,-73.79657,Shared room,34,4,0,,,8,365 +29724480,J-NEW ROOM*NEAR CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.6728,-73.79495,Private room,59,4,2,2019-05-17,0.33,8,365 +29727132,Amazing one bedroom for a getaway in Brooklyn,44358422,Akeema,Brooklyn,Flatbush,40.63919,-73.95219,Private room,38,1,2,2018-11-26,0.27,1,238 +29729573,Brooklyn BedStuy Apt close to Subway and Downtown,9632197,Olivia,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94712,Private room,45,2,23,2019-06-30,3.61,1,50 +29729728,Apartment in the heart of Williamsburg,2299134,Maya,Brooklyn,Williamsburg,40.72034,-73.95626,Entire home/apt,100,3,2,2019-04-26,0.40,1,2 +29730504,Brooklyn Apartment with tons of light,223667060,Rachel,Brooklyn,Bushwick,40.69293,-73.90537,Entire home/apt,100,1,4,2019-02-10,0.48,1,35 +29730616,Large and bright bedroom 18 min to Grand Central,140930693,Max And Kathy,Bronx,Mott Haven,40.81177,-73.92726,Private room,60,1,29,2019-07-04,3.54,2,304 +29731583,"Charming apartment in coveted Carroll Gardens, BK",13466647,McKenzie,Brooklyn,Carroll Gardens,40.68333,-73.99831,Entire home/apt,155,3,8,2019-05-27,1.06,1,0 +29731625,Sunlit Spacious Apartment in Brooklyn,30177875,Bree,Brooklyn,Crown Heights,40.67452,-73.95906,Entire home/apt,120,4,3,2019-05-25,0.47,1,7 +29733220,Gorgeous space for last minute marathon plans,35244416,Amy,Manhattan,Upper East Side,40.77828,-73.95492,Private room,275,1,0,,,1,0 +29733748,Chambers Queen - Modernist Room | Minutes from 5th,220229838,Chamber Hotel,Manhattan,Midtown,40.7637,-73.97422,Private room,191,2,5,2019-06-16,3.00,11,217 +29734326,Luxurious apartment with spectacular city views,113834719,Daniel,Manhattan,Chelsea,40.75169,-74.00382,Entire home/apt,350,3,0,,,1,0 +29734635,Cozy 1BR near Brooklyn Waterfront by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71067,-73.96629,Entire home/apt,120,29,1,2018-12-10,0.14,7,0 +29734919,New York City UES Luxury Doorman Building,212698653,Amy,Manhattan,Upper East Side,40.76725,-73.95971,Entire home/apt,500,5,0,,,1,84 +29736250,Elegant 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70898,-73.96596,Entire home/apt,120,29,2,2019-03-24,0.38,7,0 +29736711,La Grand BnB near JFK,217652530,Portia,Queens,Jamaica,40.67352,-73.77957,Entire home/apt,485,1,24,2019-07-07,2.99,4,347 +29737168,Affordable Room near JFK,217652530,Portia,Queens,Jamaica,40.67385,-73.77874,Private room,125,1,1,2019-06-23,1,4,253 +29737954,Room 3 blocks from Columbus Circle / Central Park,58077160,Kat,Manhattan,Hell's Kitchen,40.76579,-73.98557,Private room,140,6,1,2018-11-12,0.13,1,0 +29738053,"Room near JFK, good for Cancellations and Delays!",217652530,Portia,Queens,Jamaica,40.67233,-73.77751,Private room,125,1,2,2019-04-13,0.32,4,253 +29738205,Beautiful Private Small Room with 2 Beds,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95499,Private room,63,2,13,2019-06-18,1.72,3,321 +29738207,Charming Room 1 with 2 Beds Close to Metro,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.6847,-73.95532,Private room,70,2,23,2019-06-23,2.95,3,293 +29738439,La Grand Master Bedroom,217652530,Portia,Queens,Jamaica,40.67205,-73.77721,Private room,180,1,0,,,4,253 +29738563,Cozy private room in the heart of Bushwick,223723845,Antonieta,Brooklyn,Bushwick,40.70717,-73.92126,Private room,50,4,3,2019-04-30,0.42,1,40 +29738760,Large bedroom in Manhattan. Subway on same block,4317615,Fabio,Manhattan,Harlem,40.82188,-73.95391,Private room,70,30,0,,,2,249 +29740134,Sunlit Bedroom in Washington Heights,30240946,Tanya,Manhattan,Washington Heights,40.85155,-73.92967,Private room,42,7,0,,,1,0 +29740171,Contemporary Minimalistic Private room in Bed-Stuy,45618730,Kevin,Brooklyn,Bedford-Stuyvesant,40.69405,-73.94411,Private room,60,2,11,2019-06-21,1.38,1,0 +29740703,5minutes to Manhattan luxury apartment,223741555,Mengxiao,Queens,Long Island City,40.74813,-73.93852,Private room,69,5,4,2018-12-27,0.53,1,0 +29741023,"Bright, cozy and large room in Manhattan - ATrain",20579643,Denis,Manhattan,Washington Heights,40.83627,-73.94329,Private room,40,2,1,2019-06-03,0.83,1,51 +29751447,The Cozy Corner in BedStuy,223817242,Carla,Brooklyn,Bedford-Stuyvesant,40.68774,-73.93699,Entire home/apt,120,1,36,2019-06-23,4.62,1,334 +29753642,Comfortable room in family home in Brooklyn!,11880311,Aileen,Brooklyn,Carroll Gardens,40.68261,-73.99097,Private room,50,2,6,2019-05-04,1.10,2,0 +29753750,Large Suite w/private bathroom by central park,223346842,Alex,Manhattan,Harlem,40.80551,-73.95136,Private room,92,2,44,2019-07-06,5.57,3,51 +29754544,"Comfortable- JFK,LGA Best Value",223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66102,-73.77035,Private room,50,1,57,2019-06-21,7.28,3,342 +29754946,Large studio in midtown east,76327788,Lola,Manhattan,Murray Hill,40.74633,-73.97586,Entire home/apt,155,5,14,2019-06-25,1.74,1,29 +29755360,LUXURY Studio Apartment in PRIME Williamsburg,223855863,Thais,Brooklyn,Williamsburg,40.71841,-73.95224,Entire home/apt,200,3,0,,,1,111 +29756137,2 bedroom Apartment.,215041024,Ife,Queens,Edgemere,40.5939,-73.77361,Entire home/apt,80,7,1,2019-06-08,0.94,1,87 +29756451,"Entire Townhouse in Boerum Hill, Brooklyn",11880311,Aileen,Brooklyn,Carroll Gardens,40.68345,-73.99094,Entire home/apt,138,7,3,2019-04-16,0.37,2,0 +29756773,Willoughby penthouse,223869982,Steve,Brooklyn,Bedford-Stuyvesant,40.69495,-73.93509,Private room,100,7,0,,,1,0 +29758199,Queens home with a view,71560458,Norma,Queens,Bayswater,40.60513,-73.77024,Entire home/apt,151,2,33,2019-07-07,4.21,1,309 +29758221,Entire floor of apartment with separate entrance,42979789,Vanessa,Brooklyn,Williamsburg,40.70845,-73.9402,Private room,85,3,7,2019-07-01,1.00,1,42 +29758404,Entire Apartment in Beautiful Brooklyn Brownstone,223886475,John & Dee,Brooklyn,Carroll Gardens,40.68564,-73.99201,Entire home/apt,170,2,8,2019-06-03,2.79,1,0 +29759120,Spacious Home with Backyard in Brooklyn,861848,Nicholas,Brooklyn,Bedford-Stuyvesant,40.69299,-73.92934,Entire home/apt,81,3,6,2019-01-06,0.73,2,0 +29760102,Minimal Loft in heart of Williamsburg -waterfront,24046264,Matt,Brooklyn,Williamsburg,40.71845,-73.96241,Entire home/apt,150,3,4,2019-04-22,0.50,1,69 +29760452,Cozy Brooklyn room 15min to Manhattan by subway!,209163615,Oriana,Brooklyn,Bedford-Stuyvesant,40.68377,-73.94489,Private room,85,1,1,2019-01-04,0.16,1,12 +29760512,1 double size bedroom 0.1 mile from Times Square.,214173940,Ali,Manhattan,Theater District,40.75941,-73.98794,Private room,62,1,7,2019-01-01,0.87,1,9 +29760721,Room M near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.8043,-73.96342,Private room,75,1,37,2019-06-19,4.72,3,10 +29760740,Single bedroom in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.64049,-74.00255,Private room,40,1,5,2019-03-18,0.61,8,0 +29760869,Studio in East Harlem,169647759,Johann,Manhattan,East Harlem,40.79078,-73.94547,Entire home/apt,100,1,11,2019-04-19,1.34,1,0 +29760980,Downtown Brooklyn Loft Space Under The Bridge,223807986,Luis,Brooklyn,Vinegar Hill,40.70079,-73.98512,Entire home/apt,275,1,1,2018-11-18,0.13,1,0 +29761111,"Clean, Convenient & Comfy Apt in FLATIRON! :-)",33041007,Jenny,Manhattan,Midtown,40.74559,-73.98551,Private room,139,4,14,2019-06-30,1.75,1,28 +29761241,Midtown room in the center of the NYC universe.,215229943,Mark,Manhattan,Hell's Kitchen,40.76458,-73.98686,Private room,98,5,8,2019-05-26,0.98,1,179 +29761272,"cozy room in queens, with free subway pick up",223913025,Jennyfer,Queens,Cambria Heights,40.69597,-73.74307,Private room,100,7,1,2018-11-10,0.12,1,0 +29761534,FREE YOGA with Goodyoga's Guest Room!,1240933,Goodyoga,Brooklyn,Greenpoint,40.72725,-73.95617,Private room,100,7,10,2019-06-24,1.38,1,353 +29762648,New York Manhattan Club Metro Suite,151280982,Carole,Manhattan,Midtown,40.76523,-73.98054,Private room,100,2,0,,,1,0 +29763219,"Bright one bedroom. Lorimer (J,M) broadway (G)",4858280,Anna,Brooklyn,Williamsburg,40.70343,-73.94894,Entire home/apt,149,6,7,2019-05-29,0.96,1,4 +29764987,Brooklyn-Brooklyn,78080379,Liliana,Brooklyn,Bushwick,40.68944,-73.907,Private room,75,5,0,,,1,250 +29765101,Luxury 2 Beds 2 Bath / Lincoln center,131647128,Emily,Manhattan,Upper West Side,40.77384,-73.98917,Entire home/apt,260,30,6,2019-06-18,1.58,25,257 +29766259,Cozy Artsy Room 2nd,52370129,Nino,Brooklyn,Bay Ridge,40.62461,-74.0297,Private room,60,2,9,2019-07-01,1.16,2,31 +29774846,"Cozy, quiet, one-bedroom West Village apartment",17910174,Jamie,Manhattan,West Village,40.73207,-74.00322,Entire home/apt,160,30,0,,,1,0 +29775040,Entire Brooklyn Brownstone Apartment with Laundry,149929,Obed,Brooklyn,Fort Greene,40.69083,-73.97301,Entire home/apt,135,5,21,2019-06-30,2.70,5,206 +29775262,Private Room in Beautiful Brooklyn Apt!,41389252,Evan,Brooklyn,Bedford-Stuyvesant,40.67893,-73.94318,Private room,60,3,7,2019-06-02,1.59,1,58 +29775749,Modern Luxury 1BR Apt,39607226,Alan,Brooklyn,Bushwick,40.68856,-73.91903,Entire home/apt,119,3,6,2019-06-16,0.79,1,4 +29776064,New York Home with a View,51338091,Vander,Manhattan,Harlem,40.82816,-73.93827,Entire home/apt,130,7,1,2019-01-06,0.16,1,280 +29776209,Large room + private bathroom by Central Park,223346842,Alex,Manhattan,Harlem,40.80679,-73.95105,Private room,75,2,12,2019-01-28,1.55,3,0 +29776235,"Spacious, Immaculate 2-BR Perfect for NYC Visit",22345627,Christine,Manhattan,East Harlem,40.80556,-73.94071,Entire home/apt,150,7,1,2018-11-15,0.13,1,66 +29776313,Suite Splendor near the Prospect Park.,864766,Leigh,Brooklyn,Park Slope,40.66912,-73.97493,Entire home/apt,150,5,6,2019-06-30,0.74,1,0 +29776797,"Huge bright 1,500SqFt loft. Subway down the street",224029433,Adrian,Brooklyn,Clinton Hill,40.68215,-73.96526,Entire home/apt,250,3,15,2019-06-23,1.99,1,43 +29777077,Trendy Soho Apartment,44457589,Joel,Manhattan,SoHo,40.72611,-74.00252,Entire home/apt,200,11,3,2019-06-15,0.41,2,17 +29777278,Vintage Room &prvt bathroom Central Park Manhattan,223346842,Alex,Manhattan,Harlem,40.80475,-73.95081,Private room,79,2,43,2019-07-05,5.47,3,43 +29777340,East Village Luxury Retreat,3783926,Vivek,Manhattan,East Village,40.7281,-73.98293,Private room,250,1,2,2018-11-30,0.24,1,180 +29777857,Contemporary room in front of Central Park,52033043,Johnny,Manhattan,Harlem,40.79927,-73.95384,Private room,89,2,22,2019-04-29,2.84,1,0 +29778083,NYC East Village 1 BR / Studio,28418563,Eli,Manhattan,East Village,40.72546,-73.98396,Entire home/apt,179,1,20,2019-07-01,2.65,1,268 +29778309,Spice Island Hotspot,224042160,Pettrina,Brooklyn,East Flatbush,40.65046,-73.95067,Private room,38,2,11,2019-06-30,1.51,3,365 +29778804,Giant private bedroom w 1/2 bathroom in 4BR apt,58266933,Jordan,Queens,Astoria,40.75805,-73.90927,Private room,25,7,2,2019-03-21,0.29,1,66 +29779072,Massive Large 4 bedrooms 2 bathrooms in Manhattan,4317615,Fabio,Manhattan,Harlem,40.82064,-73.9537,Private room,150,1,11,2019-01-25,1.43,2,0 +29779831,Bedstuy Artists Quarter (tower corner room),18272280,Louis,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94179,Private room,43,1,10,2019-04-28,1.33,2,2 +29779937,** 2 Bedrooms in Central NYC! ***,194954408,Bruce,Manhattan,Midtown,40.75175,-73.98499,Entire home/apt,295,28,4,2019-05-20,0.51,1,147 +29780076,"Spacious, classic parlor brownstone with backyard",5845384,Kaylin,Brooklyn,Carroll Gardens,40.68301,-73.99677,Entire home/apt,215,5,0,,,1,33 +29780117,"one bedroom apartment safe, clean, best price",224056583,Sevilay,Brooklyn,Sheepshead Bay,40.6058,-73.95337,Private room,75,7,4,2019-06-11,0.51,1,311 +29780690,Home away from home,224062220,Tevin,Brooklyn,East Flatbush,40.65155,-73.92907,Private room,80,1,22,2019-07-01,2.76,1,162 +29780863,Private Studio Chelsea 23 x 8th Ave 30sec to train,6458347,Esther,Manhattan,Chelsea,40.74499,-73.99845,Private room,180,1,2,2019-04-19,0.31,1,158 +29781238,"Spacious, private room near Empire State Building",3335791,Ben,Manhattan,Kips Bay,40.74406,-73.98003,Private room,99,3,7,2019-05-22,0.93,1,0 +29781403,Modern Apartment in Brooklyn with deck and yard,22464812,Maruf,Brooklyn,Kensington,40.64261,-73.9835,Entire home/apt,200,1,24,2019-06-24,3.27,1,290 +29781691,East meets West,59459840,Michelle,Manhattan,East Harlem,40.79831,-73.94201,Entire home/apt,95,3,4,2019-07-01,4,1,88 +29782067,Bedroom in Astoria for two,20037314,Marcel,Queens,Astoria,40.76339,-73.92249,Private room,97,2,0,,,1,249 +29782186,"Sunny , queen size bedroom near the metro",107161778,David,Brooklyn,Crown Heights,40.66531,-73.93267,Private room,100,4,0,,,1,0 +29787085,Half block to NY. Flushing Chinatown. Main Street,110058188,Charles,Queens,Flushing,40.76016,-73.82672,Private room,57,1,13,2019-07-06,3.28,1,347 +29790239,Comfortable artistic Brooklyn apartment,94546995,Hollis,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94554,Entire home/apt,75,3,15,2019-05-21,2.47,1,4 +29791183,Nice room in Astoria 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.76984,-73.90779,Private room,45,1,7,2019-06-22,2.50,5,29 +29792553,Stunningly Bright Room with NYC Skyline Views,10928484,Stan,Brooklyn,Williamsburg,40.71843,-73.94199,Private room,299,4,0,,,1,35 +29792926,Sun-lit downtown apartment in the West Village,224141746,Germaine,Manhattan,West Village,40.73176,-74.00428,Entire home/apt,179,7,3,2019-05-24,0.49,1,10 +29793730,Elevated Bushwick Apartment w/360 Brooklyn Views,32346001,Michael,Brooklyn,Bushwick,40.6989,-73.9246,Entire home/apt,160,2,19,2019-05-26,2.38,2,0 +29794028,"Cosy bedroom in Bedstuy - A, C and G trains",103216104,Esther,Brooklyn,Bedford-Stuyvesant,40.68409,-73.94965,Private room,60,7,1,2018-11-07,0.12,1,0 +29794270,Barrett’s Family Home,120245209,Heidi,Brooklyn,Canarsie,40.63535,-73.89493,Private room,55,1,7,2019-06-22,1.08,2,126 +29794702,Spacious 1BR BK Hideaway Steps from Prospect Pk,20241112,Mariela,Brooklyn,Prospect-Lefferts Gardens,40.65581,-73.95732,Entire home/apt,85,3,12,2019-05-31,1.60,1,263 +29796861,Our home sweet home,8344401,Alejandro,Brooklyn,Bedford-Stuyvesant,40.69331,-73.94918,Entire home/apt,185,1,4,2019-06-26,4,1,3 +29797153,PRIVATE ROOM NEAR BOTH AIRPORTS AND SUBWAY/LIRR,224176858,Martha,Queens,Maspeth,40.73183,-73.89787,Private room,50,1,4,2019-03-24,0.56,1,137 +29797522,"Near to all trains, 15 minute from JFK, safe house",213183791,Walkiris,Queens,Corona,40.74419,-73.85861,Private room,110,1,1,2019-01-02,0.16,1,357 +29797672,Entire downstairs 1.5 baths & private backyard,48823279,Chris,Manhattan,East Harlem,40.79875,-73.93643,Private room,125,3,2,2019-06-30,0.32,1,238 +29797712,Brooklyn Magic Space,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71818,-73.95945,Entire home/apt,300,2,15,2019-07-02,2.06,2,273 +29798763,1 BDRM close to JFK airport cozy & clean HOUSE NYC,220129825,Carlton,Queens,Jamaica,40.67367,-73.78157,Entire home/apt,160,1,3,2019-06-13,0.41,2,359 +29798872,Comfortable private room near Columbia University,224190427,Miller,Manhattan,Upper West Side,40.80183,-73.96542,Private room,68,1,14,2019-06-21,2.02,1,12 +29799125,1 bedroom within walking distance to Times Sq,57146691,Andrew,Manhattan,Midtown,40.75514,-73.96746,Entire home/apt,250,3,0,,,1,0 +29799420,Private and cozy room in East Williamsburg.,53103368,Caroline,Brooklyn,Williamsburg,40.70701,-73.94446,Private room,65,2,0,,,1,6 +29799920,Ultra Modern Two Bedroom with Amazing Views,63875726,Jason,Manhattan,Murray Hill,40.74441,-73.97328,Entire home/apt,215,5,0,,,1,51 +29800110,"Modern, comfy, and cool",49701856,Rachel,Brooklyn,Bushwick,40.69222,-73.90695,Entire home/apt,150,3,22,2019-07-02,2.89,1,50 +29800664,Private bedroom 3 stops from Grand Central,224204301,Tylor,Bronx,Mott Haven,40.8114,-73.92747,Private room,60,1,48,2019-07-07,6.96,2,296 +29800895,Huge Auditorium/Theatre w/Balcony Seats for Events,13460069,Shan,Queens,Flushing,40.73333,-73.79514,Entire home/apt,500,1,0,,,1,365 +29800915,Entire floor (private entrance) w/ 1 BR in NYC,224206042,Jose,Bronx,Allerton,40.86116,-73.86248,Entire home/apt,55,3,26,2019-06-25,3.36,1,349 +29800927,Brand New Luxury Apartment with Private Garden,157703622,John,Manhattan,Lower East Side,40.71707,-73.98931,Entire home/apt,200,30,0,,,2,97 +29801113,"Near LGA and JFK Airport +Charming Guest Suite",194377255,Jimmy,Queens,East Elmhurst,40.76299,-73.86976,Private room,65,1,22,2019-07-05,4.26,4,349 +29801175,Large private bedroom 1 stop from Manhattan,152202371,Richard,Bronx,Mott Haven,40.81,-73.92654,Private room,65,1,35,2019-07-02,4.32,1,295 +29801645,"CLOSE TRAIN, 30JFK 40LG, 1or2People. closeManhatt",224048389,David,Brooklyn,Sunset Park,40.64198,-74.01809,Private room,48,3,2,2018-11-15,0.25,1,0 +29802895,"Near LGA and JFK airport +Small Cozy Room",194377255,Jimmy,Queens,East Elmhurst,40.76199,-73.88331,Private room,38,1,42,2019-05-05,5.12,4,207 +29803428,Spacious West Village Studio,41802394,Joshua,Manhattan,West Village,40.73378,-74.00272,Entire home/apt,1115,3,2,2019-05-27,0.38,1,0 +29804246,Huge Studio style room in Manhattan -Private Bath,42676520,Andrew,Manhattan,Harlem,40.80728,-73.94619,Private room,80,1,54,2019-06-30,7.83,2,8 +29804415,"BRIGHT, SPACIOUS, QUIET Luxury Oasis, DowntownNYC!",26330233,Dr.,Manhattan,East Village,40.72977,-73.97895,Entire home/apt,175,6,23,2019-06-19,3.15,1,232 +29804907,"2 bedroom apartment in Sunset Park, Brooklyn",12235509,Zachary,Brooklyn,Sunset Park,40.65085,-74.0037,Entire home/apt,175,4,12,2019-07-02,1.65,1,142 +29805157,The heart of Queens !!,192773562,Marie,Queens,Woodside,40.7415,-73.89249,Private room,60,1,0,,,1,87 +29805233,Brand New NYC Apartment: Central Park & Midtown,224238226,Maksum,Manhattan,Upper East Side,40.76263,-73.96881,Entire home/apt,265,6,33,2019-06-16,4.16,1,95 +29805732,Book your party on UES NYC Venue,47721954,Agata,Manhattan,Upper East Side,40.77695,-73.95519,Shared room,75,1,0,,,1,90 +29806013,NICE BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN 1,221836975,Jon,Queens,Jackson Heights,40.75125,-73.89346,Shared room,58,2,4,2019-05-31,0.64,3,267 +29806412,"Beautiful 4 bedroom, one block from Central Park!",224245939,"Esteban, Maxi, Alberto, Lucia",Manhattan,Upper West Side,40.79439,-73.96315,Entire home/apt,310,7,0,,,1,0 +29806992,"Luxurious townhouse, 2bd w/Loft+2bath+High-ceiling",15058648,Shola,Brooklyn,Bushwick,40.69798,-73.92968,Entire home/apt,135,3,5,2019-07-03,0.71,3,17 +29809200,Bargain Warm Spacious Studio in Carroll Gardens!,4180621,Julia,Brooklyn,Carroll Gardens,40.67739,-74.00004,Entire home/apt,74,1,4,2019-01-25,0.57,2,0 +29814549,"Comfy, Cozy Studio at the Grand Old Mansion",187908347,William,Brooklyn,Crown Heights,40.67265,-73.94728,Entire home/apt,81,4,19,2019-07-05,2.44,2,94 +29816922,Bright warmth 2min bus 4min subway 窗下凉台花园房。,196058543,美德,Queens,Forest Hills,40.71988,-73.83922,Shared room,35,3,24,2019-07-02,3.13,5,236 +29820510,Large bedroom with private bathroom,224314859,Miki,Manhattan,Washington Heights,40.85358,-73.93526,Private room,90,3,3,2019-01-02,0.41,1,82 +29821404,Sunny Bohemian Apartment in Solar Building!,224317523,Olivia,Brooklyn,South Slope,40.66402,-73.98282,Entire home/apt,285,5,29,2019-06-16,3.57,1,74 +29821998,"Cozy apartment, SubwayEMR7NW, 5mins to Manhattan",52767716,Eden,Queens,Long Island City,40.74836,-73.93833,Private room,95,2,3,2018-12-31,0.44,1,0 +29822259,Warm Wiliamsburg Retreat,2967674,Lilly,Brooklyn,Williamsburg,40.70686,-73.95538,Private room,48,2,6,2019-02-06,0.87,2,0 +29822873,West Village Corner 1 Bedroom GEM,2465013,Alyssa,Manhattan,West Village,40.72994,-74.00456,Entire home/apt,275,3,2,2019-01-02,0.29,1,0 +29823499,Large Union Sq Apartment!,34986045,Andy,Manhattan,East Village,40.73228,-73.98669,Entire home/apt,650,3,1,2018-12-31,0.16,1,0 +29824343,New Yorker sunny top floor loft,29279378,Viktor,Manhattan,Harlem,40.82812,-73.94219,Entire home/apt,200,30,0,,,1,180 +29824401,"Large private room Williamsburg, Luxury Building",224340103,Vincent,Brooklyn,Williamsburg,40.70933,-73.94651,Private room,80,2,3,2019-02-17,0.40,2,0 +29824856,Comfortable and Modern BedStuy Hideaway,25970711,Keilon,Brooklyn,Bedford-Stuyvesant,40.68457,-73.92914,Entire home/apt,100,2,8,2019-06-16,1.09,1,75 +29825469,Entire Top Floor Suite with Private Bathroom.,7443296,Faridath,Brooklyn,Cypress Hills,40.68072,-73.88787,Private room,120,2,26,2019-07-01,3.24,1,63 +29825538,My magical home steps from Times Square,224019631,Victor,Manhattan,Hell's Kitchen,40.75971,-73.99076,Entire home/apt,150,2,7,2019-06-10,0.91,1,14 +29825609,Spacious Sunny Balcony Room in Williamsburg,57973441,Mark,Brooklyn,Williamsburg,40.70932,-73.94792,Private room,90,1,1,2018-11-19,0.13,1,32 +29825825,Home away from home. Private apt across from park.,224350246,Marceline,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91792,Entire home/apt,175,2,4,2019-06-16,0.54,1,326 +29826781,Beautiful Artist couples Home in Chinatown.,13619313,Kaylee,Manhattan,Little Italy,40.71731,-73.99862,Entire home/apt,175,4,0,,,1,179 +29827109,Modern 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71081,-73.96695,Entire home/apt,120,29,5,2019-06-03,0.75,7,0 +29827403,"“TIME SQUARE” 43rd Street +Big Bedroom on 1st floor",30985759,Taz,Manhattan,Hell's Kitchen,40.75988,-73.99123,Private room,135,1,50,2019-07-07,6.20,6,316 +29827530,Bright Brooklyn Brownstone,6856247,Andrew,Brooklyn,Park Slope,40.67262,-73.97372,Entire home/apt,160,2,5,2019-07-02,0.66,1,2 +29827671,Private bedroom in large apartment in East Harlem,26000391,Yvette,Manhattan,East Harlem,40.7906,-73.94594,Private room,40,7,2,2019-01-01,0.27,1,188 +29827690,Private master bedroom next to Central Park & CU,17822256,Anna & Frank,Manhattan,Harlem,40.80075,-73.95676,Private room,95,2,40,2019-06-21,5.00,4,141 +29827781,NYC WARM CLEAN COZY CLOSET EXPERIENCE ROOM 3 PPL,4233057,Hajah,Manhattan,East Harlem,40.79829,-73.93601,Private room,68,3,4,2019-05-29,0.64,3,95 +29828155,Bergen Beach Beauty,224365956,Marshall,Brooklyn,Bergen Beach,40.62221,-73.90975,Entire home/apt,49,3,20,2019-06-30,2.64,1,164 +29828159,Renovated studio/ Elevator/ Laundry/ 76 St & 2 Ave,1475015,Mike,Manhattan,Upper East Side,40.77072,-73.95538,Entire home/apt,105,30,0,,,52,358 +29828333,"**Harlem, Chic Getaway! 5m to Dining/Trains***",216634331,Stephanie,Manhattan,Harlem,40.82431,-73.94291,Entire home/apt,202,3,8,2019-06-21,1.10,1,88 +29828587,Doorman Beautiful Studio / 32nd St & Lexington Ave,1475015,Mike,Manhattan,Kips Bay,40.74446,-73.98091,Entire home/apt,120,30,0,,,52,353 +29828614,New York home ferry ride from Manhattan.,224370048,Pariis,Staten Island,Tompkinsville,40.63304,-74.09244,Private room,90,1,6,2019-06-23,0.95,1,262 +29828654,Luxury high ceiling penthouse apartment,62014501,Guangnan,Queens,Long Island City,40.74781,-73.93891,Entire home/apt,133,20,9,2018-12-16,1.27,1,21 +29828657,Upper West Side Studio,48967970,John,Manhattan,Morningside Heights,40.80528,-73.95928,Entire home/apt,150,20,0,,,1,33 +29828852,Small Room Close to Astoria Park,7653811,Olga,Queens,Astoria,40.77359,-73.9251,Private room,60,1,2,2019-01-01,0.32,1,249 +29829054,Best location in Williamsburg!,20827165,Melissa,Brooklyn,Williamsburg,40.71545,-73.94383,Entire home/apt,99,2,1,2018-11-19,0.13,2,0 +29829066,Convenient 2 BR next to train minutes to Manhattan,179668570,Ric,Brooklyn,Williamsburg,40.71359,-73.9404,Entire home/apt,165,3,37,2019-06-20,5.19,1,34 +29829412,Private Room 1 - Central Park / CU mins away,17822256,Anna & Frank,Manhattan,Harlem,40.80246,-73.95737,Private room,95,2,31,2019-06-18,4.15,4,172 +29829829,"Modern 1BR Apt in Heart of LES, near Subway!",218984753,Emmanuel,Manhattan,Lower East Side,40.71918,-73.98525,Entire home/apt,59,1,25,2019-05-31,3.25,1,143 +29831106,"TIME SQUARE” 43rd street +Private room on 1st floor",30985759,Taz,Manhattan,Hell's Kitchen,40.75938,-73.98986,Private room,145,1,61,2019-07-06,7.50,6,283 +29831510,Private Room 2 - Next to Central Park / CU,17822256,Anna & Frank,Manhattan,Harlem,40.80076,-73.95742,Private room,95,2,32,2019-06-22,4.00,4,163 +29831517,Large private bedroom in private house.,224384517,Rena,Brooklyn,Canarsie,40.64403,-73.88908,Private room,60,1,64,2019-07-04,8.97,1,142 +29831549,Cozy Room Conveniently Located Near Central Park,1512565,Jean,Manhattan,East Harlem,40.7879,-73.95418,Private room,90,2,9,2019-06-30,1.78,3,112 +29832431,Hart st,156948111,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69351,-73.95161,Private room,60,10,1,2018-12-11,0.14,1,365 +29832437,Room Q near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.80307,-73.96386,Private room,80,1,37,2019-06-23,4.78,3,9 +29832733,Cozy bedroom in hip center of Williamsburg,224401490,Gloria,Brooklyn,Williamsburg,40.71009,-73.95151,Private room,60,3,2,2018-12-14,0.25,1,0 +29832768,Avail July - Beautiful Greenwich Village room!,26310763,Amz,Manhattan,Greenwich Village,40.73328,-73.99431,Private room,150,7,0,,,1,2 +29833375,Brooklyn Loft Bedroom II,30346705,Soeun & Rolando,Brooklyn,Bedford-Stuyvesant,40.69086,-73.95955,Private room,50,1,42,2019-07-01,5.38,2,57 +29834133,"Quiet private bedroom in Bed-Stuy, Brooklyn",56156848,Michael And Brooke,Brooklyn,Bedford-Stuyvesant,40.69551,-73.94565,Private room,93,3,21,2019-06-30,2.70,1,73 +29834597,Cozy studio with private entrance,158781381,Samuel,Brooklyn,East New York,40.66128,-73.89105,Entire home/apt,75,2,15,2019-06-24,1.87,2,179 +29834691,Luxury Condo near Columbia Univ and Central Park,224413673,Alex,Manhattan,Harlem,40.80536,-73.95434,Entire home/apt,150,1,4,2018-12-28,0.53,1,0 +29835041,Hudson Yard - Comfy Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75546,-73.99792,Private room,107,1,22,2019-06-20,2.81,30,141 +29835159,Bright and Comfortable Home in Brooklyn,16398154,Jennifer,Brooklyn,Prospect Heights,40.68162,-73.96818,Entire home/apt,149,2,8,2019-04-29,1.00,1,0 +29835357,East Village Oasis,8573489,Jc,Manhattan,East Village,40.73022,-73.97998,Entire home/apt,220,4,1,2019-07-08,1,1,14 +29838125,Beautiful Private Room 20 min to city X,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.68921,-73.95035,Private room,65,30,26,2019-06-24,3.25,4,361 +29838679,EXCELLENT private room X,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.68907,-73.95217,Private room,65,30,13,2019-06-10,1.77,4,333 +29844533,Bright and stylish 1 bedroom,224461227,Birce,Manhattan,Chelsea,40.74442,-73.99908,Entire home/apt,220,2,2,2019-04-14,0.32,1,0 +29844951,Cozy Home In Queens,49946447,Rah,Queens,Jamaica,40.68842,-73.77677,Private room,50,2,1,2019-03-19,0.27,1,311 +29847462,"Park Slope - Brand New Bright 3 Bedroom, 2.5 Bath",5847816,Tristan,Brooklyn,Park Slope,40.66724,-73.98039,Entire home/apt,700,4,2,2019-06-12,0.32,1,174 +29847492,Cozy Studio in the Upper East (30 DAYS MIN),159598333,Sol,Manhattan,Upper East Side,40.78179,-73.94693,Entire home/apt,99,30,1,2019-03-24,0.28,5,332 +29849331,Spacious and Bright Williamsburg Loft,5537011,Ian,Brooklyn,Williamsburg,40.71474,-73.94441,Entire home/apt,175,2,6,2019-06-29,2.37,1,176 +29849903,Luxury studio suite in heart of Financial district,187360554,Ricardo,Manhattan,Financial District,40.70731,-74.00871,Entire home/apt,155,3,0,,,1,107 +29849986,Ultra modern Luxury apartment in Time Square,22582243,Luca,Manhattan,Hell's Kitchen,40.7597,-73.99726,Entire home/apt,219,3,6,2019-05-26,0.80,1,6 +29850004,NOLITA apartment w doorman,224498087,Sibel,Manhattan,Nolita,40.72361,-73.99301,Entire home/apt,130,7,0,,,1,0 +29850433,A Express Train Studio,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95025,Entire home/apt,70,30,3,2019-04-30,0.42,3,281 +29851718,Serviced townhouse with backyard & terrace in NYC,117932348,Deborah,Manhattan,Gramercy,40.73492,-73.98079,Entire home/apt,650,30,0,,,2,88 +29851985,Comfy King Bedroom Skyline View Close to Subway,20491372,Di,Queens,Forest Hills,40.72784,-73.85109,Private room,69,2,1,2018-11-18,0.13,1,35 +29852201,Lothlorien,224513581,Gaia,Brooklyn,Bedford-Stuyvesant,40.67759,-73.9106,Private room,30,7,2,2018-12-18,0.26,2,250 +29852402,Flex Room With Private Patio in Bushwick,60258049,John,Brooklyn,Bushwick,40.69061,-73.90815,Shared room,42,2,5,2019-01-01,0.67,1,0 +29852434,Single Bedroom near Columbia University,73655921,七,Manhattan,Morningside Heights,40.8088,-73.95949,Private room,55,8,0,,,1,177 +29853088,Cute & convenient garden apartment in Astoria/LIC,137194766,Maria,Queens,Astoria,40.75491,-73.91445,Entire home/apt,98,3,32,2019-06-21,4.02,2,131 +29853753,Modern room in Harlem,16495440,Elisabeth,Manhattan,Harlem,40.80312,-73.95378,Private room,85,2,0,,,1,10 +29854034,New York Luxury condo with Queens view,32423541,Wei,Queens,Long Island City,40.74635,-73.94035,Entire home/apt,120,2,2,2019-06-30,0.32,1,4 +29854048,Light Airy & Hip One Bedroom in Greenwhich Village,2730280,Cady,Manhattan,Greenwich Village,40.73002,-74.00107,Entire home/apt,225,2,8,2019-06-23,1.26,1,207 +29854118,Central 1 bedroom in East Village NYC July Deal$$$,4316287,Ryan,Manhattan,East Village,40.72896,-73.98111,Entire home/apt,158,3,10,2019-05-26,1.58,1,323 +29854455,Spacious two-bedroom apartment near train,7229055,Sarah,Manhattan,Harlem,40.82173,-73.94831,Entire home/apt,130,2,7,2019-05-10,1.08,1,0 +29855428,Cozy 1 bedroom Apartment 5 min from LGA!,7849770,Melitza,Queens,East Elmhurst,40.76373,-73.86508,Entire home/apt,70,1,83,2019-07-07,10.29,1,0 +29855524,Putnam Palace,39972598,Barbara,Brooklyn,Bushwick,40.68847,-73.91989,Private room,70,4,1,2018-11-27,0.13,1,342 +29856229,GREAT FURNISHED BEDROOM NEAR MIDTOWN MANHATTAN,221836975,Jon,Queens,Jackson Heights,40.74945,-73.89299,Private room,50,2,9,2019-07-02,1.38,3,365 +29856590,Private cozy room after long day exploring NYC,215944788,Kay,Manhattan,Upper East Side,40.77143,-73.94893,Private room,90,2,23,2019-06-23,3.00,3,17 +29857392,"So Fresh & Clean whole apartment, Lower East Side!",61649970,Chantelle,Manhattan,Lower East Side,40.71965,-73.98448,Entire home/apt,250,1,24,2019-06-21,3.17,2,280 +29858126,LARGE apartment. 12 minutes from midtown,149849302,Tyler,Manhattan,Harlem,40.81004,-73.95271,Entire home/apt,200,1,3,2019-01-01,0.45,1,0 +29858182,Luxury Affordable comfort in the Bronx-Suite 2!,216456504,Annick,Bronx,Wakefield,40.89429,-73.84392,Private room,49,1,26,2019-07-01,3.21,3,363 +29858389,Cozy one bedroom apt near Central Park,78482422,Esperanza,Manhattan,East Harlem,40.79,-73.94728,Entire home/apt,160,2,11,2019-06-23,1.49,1,0 +29858919,Luxury Family- Friendly Brooklyn Condo,612551,Mike,Brooklyn,Bedford-Stuyvesant,40.6858,-73.95375,Entire home/apt,150,7,2,2019-06-16,1.36,1,0 +29858941,Luxury Affordable comfort in the Bronx-2 Bedroom!,216456504,Annick,Bronx,Wakefield,40.894,-73.84362,Entire home/apt,130,1,11,2019-06-23,1.45,3,363 +29859444,Cozy Room Times Square - Hell´s Kitchen,7147987,Pablo,Manhattan,Hell's Kitchen,40.76061,-73.99038,Private room,170,8,1,2019-01-02,0.16,1,19 +29860764,"Stylish, clean, quiet space in the UES",2931626,Liz,Manhattan,Upper East Side,40.76747,-73.95451,Entire home/apt,120,2,2,2018-12-28,0.27,1,0 +29860810,Sun-drenched duplex apartment,224575394,Sabrina,Brooklyn,Williamsburg,40.70774,-73.9445,Private room,100,2,21,2019-07-01,2.75,1,6 +29861097,LARGE Cozy Room by Prospect Park !,1512819,Sydney,Brooklyn,East Flatbush,40.65323,-73.95256,Private room,45,5,5,2019-05-17,1.06,5,69 +29862444,1 Bedroom - Great Place to land in Manhattan,3073250,Dan,Manhattan,Upper West Side,40.79202,-73.96887,Entire home/apt,175,3,10,2019-07-03,1.29,1,13 +29863494,Private RM and BR in Queens close to Manhattan,215956658,Any,Queens,Woodside,40.75542,-73.9021,Private room,70,4,34,2019-06-28,4.25,1,34 +29867971,"Minimal, clean 2 bedroom in BedStuy Brooklyn",224614531,Amhalise,Brooklyn,Bedford-Stuyvesant,40.69318,-73.94739,Entire home/apt,200,2,3,2019-01-01,0.41,2,95 +29869390,HABITACIÓN COMPARTIDA PARA AVENTURERAS(Only Women),215778245,Jessy & Christian,Queens,Corona,40.73887,-73.86562,Shared room,30,2,6,2019-07-02,0.76,6,365 +29869463,Large Studio with Best View in NYC!,214290528,Tiffany,Manhattan,Financial District,40.70724,-74.01438,Entire home/apt,195,2,4,2019-01-02,0.56,1,0 +29870750,Creative House for Traveling Creatives,40883581,Morian,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95428,Private room,55,1,4,2019-04-06,0.53,1,0 +29871943,Large Sunny Room in NYC,73881521,Betty,Manhattan,Washington Heights,40.84616,-73.93855,Private room,60,10,0,,,1,310 +29873175,Vibrant room in Bushwick with lots of light,119990626,Vladimir,Brooklyn,Bushwick,40.69862,-73.92849,Private room,60,7,1,2018-11-28,0.13,1,173 +29874127,"Gym, Rooftop, Pool Lux entire flat no share",217482038,Emily,Manhattan,Upper East Side,40.76328,-73.96598,Entire home/apt,129,2,8,2019-06-20,1.18,3,15 +29874717,Lovely room in Brooklyn,223620306,Xavier,Brooklyn,Bushwick,40.69725,-73.91181,Shared room,95,1,0,,,1,0 +29874869,2 mins walk from the subway station in West Harlem,74982218,Miki,Manhattan,Harlem,40.81278,-73.95156,Private room,55,3,3,2019-01-20,0.39,2,0 +29875137,"HUGE & Luxurious 1 Bedroom w/ Dining Room, 2 Bath!",9071235,Alex,Manhattan,East Village,40.72753,-73.98285,Entire home/apt,399,4,3,2019-04-22,0.47,1,75 +29875238,★AMAZING★ 4Beds/TIME SQUARE/NYC/PERFECT FOR U,224661472,Jake,Manhattan,Hell's Kitchen,40.76117,-73.99099,Entire home/apt,700,4,46,2019-05-23,5.70,1,126 +29875799,"Colorful flat in heart of East Village, NYC",32162351,A.J.,Manhattan,East Village,40.73018,-73.98229,Entire home/apt,199,2,0,,,2,0 +29876288,Beautiful and bright apartment close to Manhattan!,5326571,Ines,Queens,Ditmars Steinway,40.77718,-73.91029,Entire home/apt,180,7,1,2019-05-25,0.67,2,122 +29876453,"In Riverdale, a most unusual apartment to enjoy.",124867390,Karel,Bronx,Spuyten Duyvil,40.88071,-73.92074,Private room,60,3,8,2019-06-16,1.11,1,326 +29877024,The Art Of Living - Loft apartment,224675361,Paula,Brooklyn,Bushwick,40.69143,-73.90993,Entire home/apt,110,2,20,2019-07-01,2.56,1,284 +29877195,Modern Murray Hill Penthouse,113274391,Francis,Manhattan,Murray Hill,40.74991,-73.97262,Entire home/apt,200,21,0,,,1,0 +29877448,Prime upper east 2BR~Newly furnished!best value,162280872,Izi,Manhattan,Upper East Side,40.76197,-73.96139,Entire home/apt,195,30,1,2019-05-16,0.56,13,138 +29878717,King size luxury studio minutes to Manhattan,75435800,Dean,Queens,Long Island City,40.75262,-73.93656,Entire home/apt,165,2,0,,,2,0 +29878723,"Family-friendly Brownstone, 2 blocks to Subway!",2494204,Jessica,Brooklyn,Bedford-Stuyvesant,40.68143,-73.94765,Entire home/apt,150,2,7,2019-07-01,0.90,1,11 +29879085,"Beautiful spacious Loft , east village,2 real beds",24449433,Mario,Manhattan,East Village,40.72575,-73.98236,Entire home/apt,190,3,10,2019-07-01,1.60,1,61 +29879394,Clinton Hill - Peaceful and bright room,14349735,Laurie,Brooklyn,Clinton Hill,40.68683,-73.96572,Private room,64,6,2,2018-11-24,0.25,1,250 +29880308,Sweet comfortable home,224696045,Fozia,Brooklyn,Sheepshead Bay,40.59362,-73.95659,Entire home/apt,110,2,16,2019-06-23,2.45,1,276 +29880522,Private Room pretty close to Manhattan,5817533,Leda,Queens,Astoria,40.76477,-73.92901,Private room,75,5,0,,,1,0 +29880528,"Private Suite: Brooklyn, NY - 40 min to Manhattan",211895243,Lili,Brooklyn,Midwood,40.62541,-73.96293,Entire home/apt,105,3,1,2018-11-11,0.12,2,46 +29880984,Luxury suite in the heart of Manhattan,145981682,Simi,Manhattan,Theater District,40.76,-73.98377,Entire home/apt,212,1,5,2019-02-08,0.69,3,272 +29881483,Apartment in greenwood heights /south slope,224706357,Fritz,Brooklyn,Sunset Park,40.66056,-74.00017,Entire home/apt,110,2,42,2019-06-24,5.21,1,90 +29881570,New york Cozy Studio Near multiple metro Lines,12131971,Maria,Manhattan,Midtown,40.75855,-73.96961,Entire home/apt,140,1,3,2018-12-09,0.37,1,0 +29881620,Magical Christmas Experience in NYC,224711473,Kd,Manhattan,Midtown,40.76556,-73.97726,Private room,375,1,0,,,1,0 +29881712,Home Away from Home - Manhattan,210112096,Genevieve,Manhattan,East Harlem,40.7901,-73.94111,Private room,74,2,32,2019-06-27,3.98,1,195 +29881973,Small Full Sized Bedroom in Historic Manhattan,223715716,James,Manhattan,Harlem,40.82424,-73.93753,Private room,35,7,1,2019-06-17,1,1,0 +29883798,⏩ It's Always Sunny At The Bleu Hauz ⏪,106335321,Dev,Brooklyn,Crown Heights,40.67117,-73.95653,Entire home/apt,110,2,29,2019-07-02,7.70,1,19 +29883990,South Williamsburg Room,152457143,Carly,Brooklyn,Williamsburg,40.70956,-73.95305,Private room,65,2,9,2019-06-17,1.15,1,0 +29884003,Great Room next to Empire State Building w/ROOFTOP,11907194,Thomas,Manhattan,Midtown,40.74992,-73.98772,Private room,110,2,8,2019-07-07,1.06,1,0 +29884121,~ pure BLISS among CITY turmoil ~,224731704,Andrew,Manhattan,Hell's Kitchen,40.76505,-73.98919,Private room,129,1,11,2019-06-20,1.37,3,177 +29884334,"Clean , Safe, Cozy 3min to JFK , LGA Best Value",223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66199,-73.772,Private room,59,1,73,2019-07-01,9.09,3,340 +29884367,Luxury & safe and close to everything in NYC,109583232,Lidor,Queens,Long Island City,40.75074,-73.94206,Entire home/apt,150,13,4,2019-02-01,0.64,1,121 +29884497,~ cosy DWELLING for NYC MIDTOWN explorers ~,224731704,Andrew,Manhattan,Hell's Kitchen,40.76516,-73.9888,Private room,129,1,11,2019-06-30,1.58,3,177 +29884848,private room for WOMEN ONLY near BX Little Italy,149306690,Kelcie,Bronx,Belmont,40.85504,-73.88394,Private room,24,1,4,2019-06-24,0.52,1,0 +29884872,Cozy Room in Astoria,224735872,Diana,Queens,Long Island City,40.75406,-73.92095,Shared room,40,3,1,2018-11-26,0.13,1,178 +29885196,Airy Brooklyn Limestone: 2 bedroom suite,3393434,Billye And Joe,Brooklyn,Crown Heights,40.67133,-73.94631,Private room,349,3,4,2019-04-22,0.56,2,89 +29885604,Magic Waters Parlor Apartment,224241313,Bonnie,Brooklyn,Bedford-Stuyvesant,40.68336,-73.92144,Entire home/apt,250,2,6,2019-05-23,0.85,1,179 +29885663,Powell Victorian,42210223,Mimi,Brooklyn,Flatbush,40.63616,-73.95594,Private room,120,2,0,,,1,83 +29885929,Private room 3 - mins from Central Park / CU,17822256,Anna & Frank,Manhattan,Harlem,40.80114,-73.95696,Private room,90,2,32,2019-06-20,4.02,4,147 +29886141,BK Getaway:Private bath/bed/balcony near Barclays!,20321004,Sara,Brooklyn,Clinton Hill,40.68272,-73.96675,Private room,125,1,33,2019-06-24,4.34,1,0 +29889800,Large private room overlooking the skyline,16152090,Amna,Manhattan,Roosevelt Island,40.76414,-73.949,Private room,175,4,3,2019-04-27,0.43,2,362 +29891697,Studio in Gramercy/East Village! #10309,20453005,Vin,Manhattan,Gramercy,40.73687,-73.98668,Entire home/apt,165,7,9,2019-05-18,1.27,1,0 +29893519,the Perfect LES studio,174797199,Thaw Dar,Manhattan,Lower East Side,40.72207,-73.98726,Entire home/apt,99,1,11,2019-01-22,1.46,1,0 +29895573,★Roof views/Quick to Times Sq/NY Presby/Columbia ★,22388757,Jordan,Manhattan,Washington Heights,40.85114,-73.93754,Private room,55,2,6,2019-06-30,2.07,2,169 +29896132,"Spacious 1 bedroom in Flatbush, Brooklyn, NY.",107090465,Linwood,Brooklyn,East Flatbush,40.63835,-73.94621,Entire home/apt,125,3,2,2019-05-10,0.61,1,170 +29897019,Bright and spacious townhouse apartment in Soho,224808776,Pietro,Manhattan,Greenwich Village,40.72841,-74.00045,Entire home/apt,300,4,28,2019-07-01,3.82,1,217 +29897123,Entire Cozy Apt in Brooklyn - 20 mins to Manhattan,218959287,George,Brooklyn,Crown Heights,40.67355,-73.94567,Entire home/apt,100,2,0,,,1,0 +29897802,Chic and Cozy West Village 1 Bedroom Home,7271048,Dana,Manhattan,Greenwich Village,40.72953,-73.99978,Entire home/apt,225,3,8,2019-05-19,1.11,1,357 +29897911,NY HUDSON RIVER DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.755,-73.99784,Private room,249,1,6,2019-06-23,1.06,8,87 +29898413,Cozy Room for the Holidays in Brooklyn,155200301,Andy,Brooklyn,Bedford-Stuyvesant,40.68536,-73.92222,Private room,37,18,2,2019-01-15,0.33,2,341 +29898471,Modern 2 bedroom 2 bath with stunning park views,224806557,Daniel,Brooklyn,Williamsburg,40.72084,-73.9554,Entire home/apt,295,2,4,2019-01-01,0.58,1,0 +29898560,Beautiful apartment in Cobble Hill (Brooklyn),9488139,Eric,Brooklyn,Carroll Gardens,40.68425,-73.99464,Entire home/apt,200,1,0,,,1,250 +29898985,Artist Quarters spacious common room. Near subway,162283008,Daniel,Brooklyn,Bedford-Stuyvesant,40.6837,-73.94199,Private room,43,3,5,2019-04-24,0.79,1,0 +29899434,Very Private One Bedroom Apt near NYU in Manhattan,224825910,Dee,Manhattan,Kips Bay,40.74273,-73.97998,Entire home/apt,100,1,5,2019-01-19,0.64,1,0 +29899574,Great penthouse in the heart of Downtown,224827088,Valentyn,Manhattan,Financial District,40.70421,-74.00962,Entire home/apt,520,4,8,2019-07-01,1.19,1,38 +29899704,New York Cozy Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73147,-73.95209,Private room,119,1,1,2019-01-05,0.16,33,365 +29900235,"Cozy Manhattan Room, 15 minutes to Times Square",99511145,Nichole,Manhattan,Harlem,40.80646,-73.94829,Private room,45,4,19,2019-07-06,2.54,2,10 +29900395,Your Manhattan Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73214,-73.95511,Private room,119,1,0,,,33,365 +29900575,Cozy private room close to Times Square 33C1,190921808,John,Manhattan,Hell's Kitchen,40.75511,-73.99532,Private room,75,7,4,2019-06-01,0.59,47,365 +29900755,Your Manhattan Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73394,-73.95154,Private room,119,1,2,2019-06-24,0.32,33,1 +29900966,Landmark Brooklyn Brownstone 35 min from Midtown,65747874,Eric,Brooklyn,Crown Heights,40.67424,-73.94098,Entire home/apt,137,2,21,2019-07-06,2.78,2,63 +29901006,"Spacious, bright apt in the heart of Williamsburg",212328883,Patryk,Brooklyn,Williamsburg,40.71719,-73.95757,Entire home/apt,148,2,39,2019-06-10,5.00,1,34 +29902392,NYC Home in the Heart of Harlem,51746762,Taylor,Manhattan,Harlem,40.82315,-73.94094,Entire home/apt,75,2,0,,,1,2 +29902562,Beautiful Basement Apartment,8830191,Hd,Brooklyn,Flatbush,40.64169,-73.95398,Entire home/apt,40,2,2,2019-07-01,2,1,57 +29902956,#Private Room & Bath 30 min to Wall st NYC,224850313,Roman,Brooklyn,Sheepshead Bay,40.58723,-73.94305,Private room,59,6,15,2019-05-17,1.86,2,147 +29903363,Huge Sunny Bedroom 1min from Central Park!,96647029,Maxi,Manhattan,Upper West Side,40.79481,-73.96437,Private room,84,6,3,2019-03-31,0.37,1,6 +29903897,Spacious room with a double bed in heart of BK,222581357,Stella,Brooklyn,Bushwick,40.69243,-73.91528,Private room,50,30,51,2019-06-10,6.32,3,227 +29904305,Comfy room with a sunroof in the heart of BK!,222581357,Stella,Brooklyn,Bushwick,40.69202,-73.91487,Private room,46,30,29,2019-07-03,3.60,3,246 +29904478,Cozy room in the heart of Bushwick,222581357,Stella,Brooklyn,Bushwick,40.69276,-73.91465,Private room,35,30,31,2019-07-07,3.94,3,316 +29904741,Interfaith Retreats (St. Francis),16677326,Alex And Zeena,Manhattan,Chelsea,40.74942,-73.99593,Private room,85,1,23,2019-06-05,3.18,12,362 +29905117,Great Master Bedroom - Like 5 Stars Hotel,224859583,Marvin,Bronx,Morrisania,40.83213,-73.90736,Private room,50,6,0,,,1,179 +29905155,Beautiful Cobble Hill Waterfront Garden Apartment,201940587,Paul And Gia,Brooklyn,Columbia St,40.68786,-74.00066,Entire home/apt,130,2,17,2019-06-29,4.55,1,9 +29905327,Coney İsland beach,224867226,İlyas,Brooklyn,Coney Island,40.57729,-73.98728,Entire home/apt,101,5,2,2019-06-19,0.26,1,323 +29905956,Full Comfortable Queens Apartment,4283610,Rachel,Queens,Glendale,40.70202,-73.89044,Entire home/apt,114,3,9,2019-06-04,1.53,1,3 +29906233,BRONX SUNNY CLEAN ROOM,224874182,Norman,Bronx,Parkchester,40.83872,-73.87149,Shared room,45,7,0,,,1,280 +29906273,Adorable Chelsea Studio in best neighborhood!,53443367,Kathryn,Manhattan,Chelsea,40.74333,-74.00106,Entire home/apt,175,1,8,2019-06-16,1.22,1,0 +29906282,Full apt for 6 in a conveniently located area,67480949,Dawa & Phurpa,Queens,Jackson Heights,40.75478,-73.88786,Entire home/apt,105,1,28,2019-06-28,3.85,1,113 +29906659,Quite spotless private room in Queens,224877731,Liam,Queens,Elmhurst,40.74278,-73.88069,Private room,63,2,2,2019-06-01,1.15,1,365 +29907089,Clean and Cozy 1Bedroom near LGA,174976495,Jorge,Queens,College Point,40.78497,-73.85754,Private room,45,1,7,2019-01-05,0.88,1,0 +29907701,5 Minutes Walking Distance to Subway Station #2,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61519,-74.00398,Private room,39,2,13,2019-06-23,1.64,4,236 +29907751,Best Location Sun Filled West Village Townhome,72420514,Cate,Manhattan,West Village,40.73646,-74.00761,Entire home/apt,165,1,6,2019-06-24,0.76,3,215 +29907852,Plantation House,224885898,Thomas,Brooklyn,Bedford-Stuyvesant,40.68135,-73.92122,Entire home/apt,125,3,10,2019-07-01,1.60,1,361 +29908325,"12 minutes from JFK, private room and bath.",212899703,Ms. Debra,Queens,Jamaica,40.67903,-73.76535,Private room,83,2,2,2019-04-15,0.27,3,322 +29909077,Gorgeous Room with private bath in Crown Heights,224892300,Jose,Brooklyn,East Flatbush,40.6614,-73.93867,Private room,110,2,3,2018-12-31,0.38,1,176 +29909672,"Beautiful, comfy full 1BR in the heart of Chelsea",851736,Mj,Manhattan,Chelsea,40.74741,-74.00213,Entire home/apt,250,7,4,2019-06-23,0.62,1,8 +29909820,203 Cozy Clean Private Bedroom,224900182,Jeremy,Queens,Flushing,40.7559,-73.80427,Private room,55,1,29,2019-06-23,3.87,1,362 +29916697,INQUIRY ONLY FOR HOTEL ROOM TO 2 BEDROOMS NEAR UN,189734742,James,Manhattan,Midtown,40.75284,-73.9717,Private room,314,2,0,,,2,266 +29917467,The Castelo,38092082,Barry,Brooklyn,Bushwick,40.68844,-73.91486,Private room,60,1,0,,,1,71 +29917648,Perfect Studio apartment in heart of Sheepsheadbay,9059810,Vlad,Brooklyn,Midwood,40.61429,-73.94779,Entire home/apt,88,2,0,,,3,89 +29918219,Soho Gem | 2 Bedroom 2 Bath Flat,223893932,Tyler & Lacey,Manhattan,SoHo,40.72557,-74.0019,Entire home/apt,399,1,18,2019-06-27,3.91,1,248 +29920153,2 bedroom in Astoria Queens 20 minutes to NYC,222421079,Maria,Queens,Long Island City,40.7615,-73.94323,Entire home/apt,455,2,0,,,1,83 +29920808,Nice and spacious 1-bedroom apartment in Astoria,182313432,Laura,Queens,Astoria,40.76635,-73.90812,Entire home/apt,100,5,2,2019-06-11,0.32,1,40 +29921529,E. Village 1-Bedroom,224974185,Christine,Manhattan,East Village,40.72867,-73.98593,Entire home/apt,175,3,8,2019-05-25,1.21,1,66 +29921568,"Sunny/Quiet/Clean/Zen, in Central Location!",42295490,C-S,Manhattan,Chinatown,40.71655,-73.99537,Private room,68,30,4,2019-05-29,0.64,2,0 +29921569,Peaceful Williamsburg Garden Duplex,224972774,Lisa And Jorge,Brooklyn,Williamsburg,40.71518,-73.95777,Entire home/apt,300,3,6,2019-06-05,0.85,1,128 +29922910,Private Bedroom in stylish Artists Loft,39243102,Daniela,Brooklyn,Columbia St,40.68784,-74.00242,Private room,200,1,0,,,1,89 +29922930,"New york Doorman building, 4 elevators and balcony",64802660,David,Manhattan,Midtown,40.76599,-73.9826,Entire home/apt,175,184,0,,,2,0 +29923182,$250.,1611747,Travis,Manhattan,Lower East Side,40.71341,-73.98981,Entire home/apt,250,1,1,2018-11-13,0.13,1,0 +29923198,New york doorman building with private balcony,64802660,David,Manhattan,Midtown,40.76495,-73.98313,Entire home/apt,175,153,0,,,2,295 +29923252,ONE Bed Room →→→20mins to Manhattan ☆彡 Wow! COZY!,43044876,Haruhisa,Queens,Woodside,40.74824,-73.89961,Private room,30,29,1,2019-04-01,0.30,5,1 +29923522,Beautiful Corner King Room in NYC,220229838,Chamber Hotel,Manhattan,Midtown,40.76402,-73.97453,Private room,233,2,0,,,11,207 +29923537,Beautiful Deluxe King Room in NYC,220229838,Chamber Hotel,Manhattan,Midtown,40.76232,-73.97512,Private room,233,2,0,,,11,213 +29923555,Studio Suite | Luxury Suite | Near Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76344,-73.97447,Private room,590,2,0,,,11,162 +29923582,Elegant Duplex Suite in Manhattan -Private Terrace,220229838,Chamber Hotel,Manhattan,Midtown,40.76219,-73.97646,Private room,913,2,0,,,11,143 +29923599,Studio Double | 2 Full Size Beds,220229838,Chamber Hotel,Manhattan,Midtown,40.76197,-73.97562,Entire home/apt,276,2,0,,,11,173 +29923618,Modern 3 Bedroom with Private Backyard,224987632,Daisy,Manhattan,Lower East Side,40.71992,-73.98472,Entire home/apt,550,3,50,2019-07-07,6.67,1,199 +29923619,Studio King Room | Your NYC Getaway,220229838,Chamber Hotel,Manhattan,Midtown,40.76194,-73.97459,Entire home/apt,276,2,0,,,11,206 +29923634,Studio King Room | 5th Ave | Full Sofabed,220229838,Chamber Hotel,Manhattan,Midtown,40.76239,-73.97444,Entire home/apt,276,2,1,2019-06-18,1,11,192 +29923654,Deluxe Suite ~ Near Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76201,-73.97635,Entire home/apt,505,2,0,,,11,152 +29923660,Luxury waterfront apartment- 1 stop from Manhattan,30909338,Andrew,Brooklyn,Williamsburg,40.71934,-73.96136,Entire home/apt,162,5,3,2019-06-04,0.51,1,5 +29923677,Shop 5th Ave + Explore Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76324,-73.97515,Private room,233,2,0,,,11,163 +29923697,Terrace Suite| Semi-Private Terrace | Full Sofabed,220229838,Chamber Hotel,Manhattan,Midtown,40.76184,-73.97605,Entire home/apt,718,2,0,,,11,199 +29923760,Lovely BRIGHT apt in Ft. Hamilton Brooklyn,186701037,Gabriela,Brooklyn,Dyker Heights,40.62827,-74.01078,Shared room,39,5,1,2019-06-01,0.77,2,89 +29924001,"Spacious 1-Bedroom in Brooklyn, PLG",94646666,Ben,Brooklyn,Prospect-Lefferts Gardens,40.65897,-73.94163,Entire home/apt,70,1,7,2019-06-15,0.93,1,0 +29924285,Private Apt Manhattan Upper East 12min CentralPark,224994472,Juan C,Manhattan,East Harlem,40.79074,-73.94276,Entire home/apt,140,2,31,2019-07-02,4.13,1,272 +29925332,Welcome / Brand new Beautiful 1BR / best location,1475015,Mike,Manhattan,Kips Bay,40.74306,-73.97843,Entire home/apt,87,30,0,,,52,365 +29926001,Room next to Central Park,158970615,Lia,Manhattan,Upper East Side,40.76464,-73.9593,Private room,115,1,54,2019-05-27,7.47,1,0 +29926808,Bedroom in Queens,89902143,Jose,Queens,Jackson Heights,40.75398,-73.86161,Private room,100,7,0,,,2,0 +29927091,Designer apartment in historic Brooklyn brownstone,2594243,Rachael,Brooklyn,Prospect Heights,40.67817,-73.97152,Entire home/apt,200,3,1,2018-12-04,0.14,2,188 +29927138,A great space in NYC,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68062,-73.94418,Entire home/apt,62,30,1,2019-05-31,0.75,6,284 +29928467,Entire Studio Available in cultural Astoria,16152090,Amna,Queens,Astoria,40.76147,-73.92549,Entire home/apt,250,3,0,,,2,0 +29928630,Punjabi House,225025900,Jas,Queens,Ditmars Steinway,40.77689,-73.9073,Private room,60,1,3,2019-07-05,2.43,2,363 +29929095,"Spacious studio by the LIRR, Q3-Q85 to JFK, trains",206229239,Mamadou,Queens,Jamaica,40.67748,-73.76376,Entire home/apt,100,1,12,2019-02-17,1.69,1,161 +29929331,“TIME SQUARE” 43rd street SINGLE BED,30985759,Taz,Manhattan,Hell's Kitchen,40.75964,-73.99002,Shared room,70,1,59,2019-07-04,7.47,6,314 +29929702,"""The Spot""",225033890,Dwain,Brooklyn,East New York,40.66577,-73.887,Entire home/apt,140,2,27,2019-06-23,3.68,1,201 +29930623,"Cozy, lofted room in Bushwick",91040009,Kayla,Brooklyn,Bushwick,40.69368,-73.92539,Private room,44,1,31,2019-06-26,4.25,1,172 +29930787,Clean Well-Lit NY Room. WiFi & Utilities Included,137358866,Kazuya,Queens,Woodside,40.74484,-73.90959,Private room,40,30,0,,,103,93 +29931976,Hudson Yard - Bright Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75671,-73.99694,Private room,199,1,20,2019-06-04,2.49,30,359 +29935981,Fully renovated historic district townhouse,1902578,Matt,Brooklyn,Greenpoint,40.72864,-73.95641,Entire home/apt,475,4,3,2019-06-25,0.47,1,354 +29936213,"Spacious, Sunny, and Boutique Condo for Catlovers",1103289,Berk,Brooklyn,Williamsburg,40.71201,-73.94967,Entire home/apt,94,6,4,2019-06-02,0.57,1,11 +29936587,Bright and stylish bedroom 20min from Times Square,140930693,Max And Kathy,Bronx,Mott Haven,40.81167,-73.92729,Private room,55,1,38,2019-06-21,4.75,2,301 +29937451,Barrett ‘s Family home,120245209,Heidi,Brooklyn,Canarsie,40.63642,-73.89532,Private room,50,1,6,2019-05-24,0.77,2,281 +29937893,Industrial duplex with river and Manhattan views,1476599,Margaux,Brooklyn,Williamsburg,40.71545,-73.96344,Entire home/apt,300,4,2,2019-04-24,0.32,1,28 +29937919,Harlem Heights Double Suites,39174150,Keanna,Manhattan,Harlem,40.82528,-73.95313,Private room,215,2,3,2019-05-06,0.42,3,91 +29938457,Cozy 1 bedroom in the heart of Greenwich!,179570454,Derek,Manhattan,Greenwich Village,40.72878,-74.0016,Entire home/apt,165,7,2,2019-04-22,0.28,1,1 +29938894,Sunlit Private Bedroom in Bushwick Apartment,87568094,Victoria,Brooklyn,Bedford-Stuyvesant,40.69342,-73.9324,Private room,75,7,0,,,1,87 +29939030,Monthly One bedroom apt in Astoria,42213050,Jack,Queens,Long Island City,40.76243,-73.93044,Entire home/apt,113,25,0,,,1,177 +29939528,Comfortable living space,109854433,Careen,Brooklyn,Bedford-Stuyvesant,40.68777,-73.95378,Entire home/apt,99,30,2,2019-06-18,0.94,2,253 +29940344,Spacious Park Avenue (Website hidden by Airbnb) -2-Month lease,1678050,Liam,Manhattan,Murray Hill,40.74938,-73.9802,Entire home/apt,200,60,2,2019-01-02,0.29,2,0 +29940771,COMFORTABLE BEDROOM FOR LONG TERM,3229770,Luis,Queens,Sunnyside,40.73695,-73.92376,Private room,69,5,4,2019-03-31,0.53,4,280 +29941633,Yogin's Paradise,3218399,Christian,Brooklyn,Park Slope,40.67534,-73.97332,Entire home/apt,150,10,1,2019-02-16,0.21,1,264 +29942196,#1 Modern Gem 2br apt..(Street parking available),224715959,Ernesto,Queens,Jackson Heights,40.75355,-73.89221,Entire home/apt,170,2,10,2019-06-28,1.55,1,346 +29942679,Cozy 1 Bedroom in Prospect Park South,3429147,Karl,Brooklyn,Flatbush,40.65092,-73.9632,Entire home/apt,120,3,2,2019-05-04,0.61,1,31 +29942901,"2 Beds apt, walk to Central Park and time square",215786346,Marina,Manhattan,Upper East Side,40.76544,-73.9585,Entire home/apt,380,3,4,2019-06-24,0.51,1,156 +29943061,Sunlit Private 1BR Suite w/Kitchen/Bath @A/C Lines,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67961,-73.92461,Entire home/apt,120,3,11,2019-06-30,1.47,3,71 +29943391,Cozy tiny bedroom w/large living-room & kitchen.,221940893,Sara,Brooklyn,Kensington,40.6359,-73.97105,Private room,34,2,24,2019-06-25,3.16,3,204 +29943455,Cozy and Nice room in Queens! good subway access!,200239515,Shogo,Queens,Woodside,40.74287,-73.89439,Private room,32,28,3,2019-06-01,0.47,15,0 +29943543,Brooklyn Loft with a Musical Soul,61297139,Ed,Brooklyn,Williamsburg,40.70469,-73.93878,Private room,135,1,14,2019-06-30,1.98,1,355 +29943700,Cozy One Bedroom in the Heart of Fort Greene,17871320,Carly,Brooklyn,Fort Greene,40.68701,-73.97457,Entire home/apt,150,3,16,2019-07-07,2.26,1,66 +29943824,"Perfect family retreat for New York City ,Bushwick",23400523,Thomas,Queens,Ridgewood,40.71194,-73.91414,Entire home/apt,200,3,9,2019-06-22,1.19,1,273 +29943909,Cozy and spacious room in the heart of NYC❤️,168184878,Daria,Manhattan,Hell's Kitchen,40.76423,-73.98891,Private room,145,2,12,2019-06-06,1.59,1,37 +29944557,Chic and Stylish apartment in Central Harlem,60152095,Sharon,Manhattan,Harlem,40.81022,-73.94547,Entire home/apt,132,2,18,2019-06-20,2.32,1,123 +29944625,Cozy King Sized Apt In NYC (Harlem),225139503,Tracy,Manhattan,East Harlem,40.8055,-73.93653,Entire home/apt,250,1,7,2019-07-01,0.90,1,78 +29944850,Female Roommate Needed for 5 months!,29277084,Kiran,Manhattan,Washington Heights,40.84353,-73.94072,Private room,50,180,0,,,1,90 +29945246,Lovely Furnished Studio Chelsea,224489730,Rachel,Manhattan,Chelsea,40.74419,-74.00067,Entire home/apt,125,30,2,2019-03-05,0.32,2,67 +29945283,Beautiful spacious bedroom in classic nyc walkup,2315692,Hugo,Queens,Ridgewood,40.70356,-73.90241,Private room,75,2,2,2019-05-20,0.32,1,52 +29945516,Bright Beautiful 4BDRM Triplex Loft Best Area,69695606,Vee,Manhattan,Lower East Side,40.7184,-73.98719,Entire home/apt,692,1,33,2019-06-22,4.36,1,256 +29945765,GREAT FURNISHED BEDROOM FOR LONG STAY,3229770,Luis,Queens,Long Island City,40.73511,-73.92488,Private room,79,5,1,2019-01-03,0.16,4,315 +29945767,Cozy home away from home,9804005,Jean Charles,Brooklyn,Bedford-Stuyvesant,40.68931,-73.94041,Entire home/apt,95,2,1,2018-12-25,0.15,1,8 +29945987,Spacious Apartment near Empire State Building,225150700,Victor,Manhattan,Midtown,40.74563,-73.98342,Entire home/apt,300,1,14,2019-05-07,1.92,1,5 +29946074,Cuarto en Queens,89902143,Jose,Queens,Jackson Heights,40.75457,-73.86162,Private room,100,7,0,,,2,179 +29946107,"Spacious, sun-filled apartment in family townhome",3662048,Daphne,Brooklyn,Carroll Gardens,40.67948,-73.99531,Entire home/apt,147,6,14,2019-06-21,1.84,1,14 +29946644,Bedroom for 2 Guests,48196322,Jose,Manhattan,Washington Heights,40.85359,-73.92982,Private room,35,1,34,2019-06-23,4.25,1,4 +29946757,COZY ONE BEDROOM IN BROOKLYN,4170464,Sonia,Brooklyn,Bedford-Stuyvesant,40.68901,-73.92826,Private room,125,7,0,,,1,363 +29947091,Cozy Private Bedroom in Harlem (WOMEN ONLY),29010692,Josephine,Manhattan,East Harlem,40.79768,-73.93455,Private room,40,2,2,2019-01-01,0.26,1,0 +29947398,Private Room w/ a 5 min walk to train!,105248014,Kevin,Brooklyn,East Flatbush,40.64608,-73.94738,Private room,80,1,71,2019-07-07,8.99,2,35 +29948187,MidTown Heights,77103886,Dorah,Manhattan,Hell's Kitchen,40.75922,-73.9969,Private room,105,1,10,2019-07-01,1.28,1,191 +29948786,2BR / 2BA - Sleeps 6!,8618782,Anthony,Manhattan,Harlem,40.8063,-73.9558,Entire home/apt,350,3,1,2019-01-01,0.16,1,5 +29955067,"CITY LINE, HALF BROOKLYN /QUEENS COZY CORNER",128162460,Winston,Brooklyn,East New York,40.67037,-73.85899,Private room,90,3,0,,,1,180 +29955544,Magnificent Loft with a Skyline view,4538731,Francois,Brooklyn,Greenpoint,40.73039,-73.95434,Entire home/apt,270,7,2,2019-04-15,0.32,1,20 +29956272,"Charming and quiet bedroom in Greenpoint, Brooklyn",46393811,Ondine,Brooklyn,Greenpoint,40.73123,-73.95664,Private room,80,5,1,2018-12-29,0.16,1,22 +29956865,Furnished room in Crown Heights Brooklyn,34514781,Caroline,Brooklyn,Crown Heights,40.67442,-73.95165,Private room,50,7,1,2018-12-17,0.15,1,0 +29957016,Comfy Boerum Hill apartment - great for families,14517154,Jaime,Brooklyn,Boerum Hill,40.68589,-73.98543,Entire home/apt,300,2,1,2018-12-30,0.16,1,0 +29957585,Jewel Street Apartment 2 Bedroom,28071452,Douglas,Brooklyn,Greenpoint,40.72744,-73.94673,Entire home/apt,195,3,12,2019-06-25,1.71,1,112 +29957848,Beautiful UWS Apt. \\ 4 mins from Central Park,74595855,Alon,Manhattan,Upper West Side,40.77951,-73.97765,Entire home/apt,200,5,3,2019-05-26,0.49,1,0 +29958350,Charming 2 bedroom west village penthouse!,12784820,Edouard,Manhattan,West Village,40.73649,-73.99927,Entire home/apt,400,3,3,2019-06-21,0.49,1,3 +29959104,Warm Spacious Bedroom in Historical Harlem!!!,225249198,Erica,Manhattan,Harlem,40.81927,-73.93886,Private room,200,1,8,2019-04-13,1.13,1,0 +29959489,NYC COZY 1 BD APT. W/ ELEVATOR NEAR SUBWAYS R & M,224619132,Adriana,Queens,Woodside,40.75507,-73.90741,Entire home/apt,80,3,4,2019-02-23,0.61,1,0 +29959581,East Harlem Modern & Luxurious Studio,225252724,Fabiola,Manhattan,East Harlem,40.79758,-73.93808,Entire home/apt,98,1,0,,,1,25 +29959810,Brooklyn Home With A View,151901555,Brad,Brooklyn,Williamsburg,40.71365,-73.93838,Entire home/apt,150,4,2,2019-01-01,0.25,1,1 +29960469,For Cat Lovers only: Quiet and Calm above subway.,7230698,Megan,Manhattan,Harlem,40.82687,-73.94364,Entire home/apt,90,6,3,2019-05-08,0.46,2,108 +29960687,Upper West Side Apartment near Central Park,225261197,Sunny,Manhattan,Upper West Side,40.78413,-73.97451,Private room,100,1,75,2019-07-06,9.62,2,248 +29961517,Central Park is Next Door ;),2653479,Brian,Manhattan,Upper West Side,40.80004,-73.96088,Private room,50,2,30,2019-07-01,4.81,4,6 +29962534,Central Park Is Across The Street,2653479,Brian,Manhattan,Upper West Side,40.80043,-73.95859,Private room,50,2,31,2019-07-07,4.84,4,112 +29962755,Beautiful Room 30 minutes to Manhattan,225277393,Jenny,Bronx,Kingsbridge,40.87,-73.90129,Private room,39,4,33,2019-06-24,4.36,1,86 +29962965,Dyckman Delight - Upscale Apartment Uptown,3230788,Nicholas,Manhattan,Inwood,40.86268,-73.9238,Entire home/apt,200,2,22,2019-06-30,2.83,1,283 +29963179,Direct Central Park View from 6th floor Studio,38774068,C,Manhattan,Upper West Side,40.79655,-73.96285,Entire home/apt,98,30,0,,,1,359 +29963540,"Bushwick, Prvt Room/Prvt Bath, 20mins to Manhattan",52357574,Mitch,Brooklyn,Bushwick,40.6988,-73.91388,Private room,85,1,2,2018-12-23,0.27,1,0 +29963575,VAL'S PLACE,225283096,Valentine,Queens,Rosedale,40.65567,-73.73076,Private room,65,1,45,2019-06-16,6.75,1,277 +29963810,Beautiful and comfy Private bed/bath in Manhattan!,145252418,Claudio,Manhattan,East Harlem,40.80612,-73.93627,Private room,120,1,20,2019-07-01,6.00,3,357 +29964046,Bohemian Brownstone,70431576,Hypatia,Brooklyn,Bedford-Stuyvesant,40.68515,-73.93255,Entire home/apt,64,2,7,2019-01-30,0.92,1,6 +29964050,"XL 1bed, 2bath duplex, w. yard, 1 block to subway",128230715,Reid,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94795,Entire home/apt,200,3,1,2019-05-27,0.68,1,11 +29964348,NYC HOLIDAY!!!! April 15- May 15,2039658,Pam,Manhattan,Upper East Side,40.76519,-73.96874,Entire home/apt,3600,31,0,,,1,358 +29964470,2 Bedroom Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70328,-73.92474,Entire home/apt,100,5,1,2018-12-28,0.16,3,0 +29964495,Brooklyn 2 bedroom apartment for pet lovers,4980714,Caitlin,Brooklyn,Sunset Park,40.66006,-73.99161,Entire home/apt,100,4,1,2019-01-01,0.16,1,0 +29964510,"Private&comfortable bedroom. +Williamsburg Brooklyn",225291555,Daniela,Brooklyn,Williamsburg,40.71101,-73.93613,Private room,105,2,2,2018-12-09,0.28,2,148 +29964754,NYC Room and Balcony. Walk to Forest Hills Stadium,22175061,Suket,Queens,Forest Hills,40.72104,-73.85391,Private room,89,2,13,2019-06-30,1.73,2,24 +29965041,Nice room to rent at Midtown Manhattan,7898626,Rémi,Manhattan,Midtown,40.75652,-73.96859,Private room,100,2,8,2019-05-05,1.09,1,6 +29965101,Large Private Space in Ideal Location,20287320,Konah,Brooklyn,Fort Greene,40.69306,-73.97084,Private room,80,2,14,2019-04-20,1.86,1,189 +29965481,Cottage by the Water,116995217,Jonathan,Queens,Howard Beach,40.65628,-73.83172,Entire home/apt,220,2,58,2019-07-06,7.53,1,144 +29965497,Entire 3 FL apartment close to Subway,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93835,Entire home/apt,139,1,23,2019-06-16,2.97,9,238 +29965528,1 Bedroom by Central Park - Great Location in NYC,76519640,Alissa,Manhattan,Harlem,40.79965,-73.95076,Private room,75,2,29,2019-06-12,3.73,1,2 +29965839,Entire 1BR Apt in FiDi close to Everything!,54689007,Ana,Manhattan,Financial District,40.70903,-74.00596,Entire home/apt,165,20,0,,,3,53 +29965956,Cozy Apartment near Central Park,225261197,Sunny,Manhattan,Upper West Side,40.7857,-73.97459,Private room,90,1,35,2019-07-05,7.24,2,261 +29965995,LUXURY 3BDRM 1BTH Sleeps 10PPL 25 min to Manhattan,62836981,Youssef,Queens,Astoria,40.77403,-73.92213,Entire home/apt,299,2,9,2019-06-20,1.60,1,354 +29966192,The Cozy Place,221442773,Carlos & Vielca,Bronx,Pelham Bay,40.84391,-73.83171,Entire home/apt,99,2,8,2019-01-01,1.05,1,360 +29966514,ChinitaBhost QUEENS,225307360,Cris,Queens,Woodhaven,40.68706,-73.8645,Private room,45,2,3,2019-06-07,1.50,1,47 +29966643,RUSTIC/MODERN/EV/NYC,5523186,Mark,Manhattan,East Village,40.73042,-73.98491,Entire home/apt,750,3,0,,,2,179 +29966943,Your Home Away From Home,225309985,Ashley,Bronx,Fordham,40.8689,-73.88552,Entire home/apt,98,2,30,2019-05-24,4.46,1,327 +29967433,Dulce hogar,225313172,Luis,Manhattan,Washington Heights,40.83175,-73.94052,Private room,50,2,9,2019-07-03,1.45,1,170 +29967445,Cozy Studio NYC getaway,83650675,Nikki,Manhattan,Harlem,40.81662,-73.93687,Entire home/apt,75,1,10,2019-06-30,1.42,1,361 +29967691,Greenwich Village 1-Bedroom,202183338,Amanda,Manhattan,Greenwich Village,40.72871,-74.00009,Entire home/apt,250,2,4,2018-12-16,0.55,1,0 +29967770,"Cottage in the City - 2 bedroom, 2 bath DUMBO",1126015,Patricia,Brooklyn,DUMBO,40.70321,-73.98488,Entire home/apt,150,3,3,2019-03-21,0.40,1,7 +29968356,Private STUDIO in Central Park | TIMES SQUARE,102287310,Vera,Manhattan,Midtown,40.76477,-73.97592,Entire home/apt,199,3,7,2019-06-18,1.59,3,358 +29968478,Studio in Forest Hills near public transportation.,78110875,Gabriel,Queens,Forest Hills,40.73134,-73.8521,Entire home/apt,175,2,6,2019-06-30,0.93,1,168 +29970723,Habitación privada en Brooklyn.,115193518,Fede,Brooklyn,Bushwick,40.70557,-73.92445,Private room,42,1,2,2019-01-07,0.32,3,0 +29975548,NICE APARTMENT-TIME-SQUARE/CENTRAL PARK,186812508,Endy,Manhattan,Midtown,40.76651,-73.98289,Entire home/apt,201,2,33,2019-06-12,4.21,1,227 +29976484,Modern Apartment in the heart of Brooklyn,20857455,Wesley,Brooklyn,East Flatbush,40.65477,-73.95159,Entire home/apt,150,3,1,2018-12-31,0.16,1,0 +29977234,Waterfront Studio View of Manhattan,35468424,Carissa,Manhattan,Greenwich Village,40.72893,-73.99512,Entire home/apt,89,2,22,2019-07-05,2.83,1,11 +29978942,Marcus’s place,43434770,Marcus,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94027,Private room,50,7,1,2019-04-19,0.37,1,0 +29979510,Landmarked 2bdrm near Fort Greene Park w deck,12211018,Bridget,Brooklyn,Clinton Hill,40.69116,-73.96538,Entire home/apt,170,2,3,2018-12-29,0.39,1,0 +29979969,Enormous beautiful apt in the heart Williamsburg,225390764,Manuel,Brooklyn,Williamsburg,40.7213,-73.95677,Entire home/apt,210,4,3,2019-06-02,0.44,1,4 +29980934,"Peaceful Apartment steps from Manhattan, Airports",35632450,Khalid,Queens,Woodside,40.74951,-73.90787,Entire home/apt,110,2,27,2019-07-05,4.38,1,137 +29981007,Brooklyn Luxury Apartment - Gorgeous 3 bedroom,139145066,Kerri-Ann,Brooklyn,East New York,40.67419,-73.88123,Entire home/apt,200,2,30,2019-07-05,3.85,2,76 +29981213,Broadway Triangle,83787104,John,Brooklyn,Williamsburg,40.70136,-73.94423,Private room,65,2,3,2019-02-28,0.59,1,89 +29981718,Beautiful Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72831,-73.99327,Entire home/apt,179,1,1,2019-05-17,0.57,33,348 +29981728,comfy apto :),38392972,Paula,Brooklyn,Bushwick,40.69869,-73.9124,Entire home/apt,82,3,3,2019-04-07,0.42,1,26 +29981890,MODERN & STYLISH HARLEM APARTMENT,224954032,Christina,Manhattan,East Harlem,40.8074,-73.93711,Entire home/apt,180,1,17,2019-07-02,2.38,1,334 +29982192,Boho chic brooklyn escape,8246221,Rana,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.94959,Entire home/apt,105,4,1,2019-01-03,0.16,1,0 +29982557,The House on Richardson: Entire Home w/ Rear Yard,197286,Vera,Brooklyn,Williamsburg,40.71841,-73.94343,Entire home/apt,174,2,27,2019-07-02,3.60,1,126 +29982568,Home 家,213781715,Anting,Brooklyn,Greenpoint,40.73306,-73.95353,Private room,119,1,0,,,33,365 +29982582,Sunny One-Bedroom Apartment in a Brownstone,32785325,Sam,Brooklyn,Bedford-Stuyvesant,40.68064,-73.94856,Entire home/apt,125,3,16,2019-06-22,2.21,1,4 +29982644,Don’t miss it! Cozy Space is Available in Queens!,129875945,Judit,Queens,Forest Hills,40.71694,-73.83442,Private room,100,2,3,2019-05-07,0.42,1,161 +29982941,Chelsea 1 BR in 4BR Penthouse Apt.,35699609,Lea,Manhattan,Flatiron District,40.74283,-73.99273,Private room,80,1,0,,,1,0 +29983341,Cute Hells Kitchen Apt. w Balcony,49745850,Alana,Manhattan,Hell's Kitchen,40.76192,-73.99698,Entire home/apt,400,3,14,2019-03-31,1.92,1,0 +29983505,Private Bedroom in Bushwick artist house,155923396,Kelly,Brooklyn,Bushwick,40.70113,-73.92893,Private room,45,3,4,2019-02-16,0.56,3,276 +29984118,BEAUTIFUL Brownstone Apt in Historic Ft. Greene,3422235,Julia,Brooklyn,Fort Greene,40.68946,-73.97279,Entire home/apt,270,3,1,2018-12-08,0.14,1,125 +29984457,粉色上房,190324721,Jun Jun,Queens,Flushing,40.75948,-73.8341,Private room,75,1,3,2019-06-16,0.39,4,75 +29984938,HUGE 1-Bedroom in Theater District,1428501,Michael,Manhattan,Hell's Kitchen,40.76356,-73.98772,Entire home/apt,241,3,8,2019-07-05,1.06,2,23 +29985591,Cozy Home,213781715,Anting,Brooklyn,Greenpoint,40.73259,-73.94977,Shared room,119,1,0,,,33,180 +29987114,Hamilton Heights - West Harlem Studio,15238188,Sally,Manhattan,Harlem,40.82437,-73.95177,Entire home/apt,95,1,51,2019-07-07,6.95,1,1 +29987700,"Spacious, sunny 1 bedroom on the Lower East Side",11729215,Daniela,Manhattan,Lower East Side,40.71391,-73.97747,Entire home/apt,225,2,1,2019-01-01,0.16,1,0 +29987801,Central Park Is Just Steps Away,2653479,Brian,Manhattan,Upper West Side,40.79821,-73.96058,Private room,70,2,33,2019-06-27,4.88,4,114 +29987867,Quietly cool uptown 1BD apartment,3874544,Justine,Manhattan,Harlem,40.82484,-73.95271,Entire home/apt,115,4,8,2019-06-01,1.06,1,0 +29988114,"Cute, quiet studio",96430287,Jay,Manhattan,West Village,40.73678,-74.00469,Entire home/apt,200,1,0,,,1,87 +29989236,Double Bed Private Room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69287,-73.9432,Private room,80,2,23,2019-03-07,2.94,4,257 +29989586,Cozy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59894,-73.75629,Private room,85,1,2,2019-06-09,0.38,4,362 +29989939,Ideally located downtown sanctuary,225456817,Dorsey,Manhattan,Lower East Side,40.71864,-73.9847,Entire home/apt,160,5,20,2019-07-01,2.70,1,0 +29990168,Brooklyn Awesomely Huge Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68633,-73.91413,Entire home/apt,85,30,3,2019-04-30,0.44,26,313 +29990344,Charming Brooklyn Apartment Next to Prospect Park,58069820,Michael,Brooklyn,Crown Heights,40.67244,-73.95992,Private room,75,2,45,2019-07-07,5.74,1,9 +29991534,Lovely room,179416315,Elizabeth,Bronx,Norwood,40.87064,-73.8797,Private room,60,1,9,2019-01-15,1.19,2,310 +29992271,Bright & Spacious Bushwick Bedroom,4024013,Dan,Brooklyn,Bushwick,40.69696,-73.93024,Private room,50,14,4,2019-06-25,1.21,1,129 +29993012,Beautiful Large Studio in the heart of Park Slope,23952383,Jean,Brooklyn,Park Slope,40.67117,-73.97836,Entire home/apt,75,29,1,2019-06-14,1,1,200 +29993540,Very Spacious Colorful Room Close to Manhattan,4666670,Jeanny,Queens,Astoria,40.76934,-73.91895,Private room,70,5,3,2019-05-22,0.38,4,90 +29994325,In The Heart of The City,41895575,Jack,Manhattan,Upper West Side,40.78196,-73.98283,Entire home/apt,400,2,2,2019-03-16,0.31,1,89 +29994632,"Beautiful Room in Manhattan, UWS",34614008,Kanchan,Manhattan,Harlem,40.82765,-73.94625,Private room,99,1,0,,,1,89 +29994675,Near 5 major trains in 1 subway station!,225489491,Ikwo,Brooklyn,Bedford-Stuyvesant,40.67773,-73.90865,Private room,40,2,4,2019-06-15,1.67,1,363 +29994978,Sunny garden studio minutes from Prospect Park,5794062,Grace,Brooklyn,Park Slope,40.67331,-73.97471,Entire home/apt,93,3,2,2019-06-23,0.46,1,5 +29995144,Home away from home 1,115741895,Damian,Queens,St. Albans,40.70275,-73.75043,Private room,70,2,3,2019-04-07,0.40,2,105 +29995154,"Conveniently-Located, Clean + Chic Rm. Hells Ktchn",4934489,Jessica,Manhattan,Hell's Kitchen,40.75989,-73.99227,Private room,85,2,1,2018-12-12,0.14,3,0 +29995362,"Hollis Cove - Queens 1BR Flat Near LGA & JFK, SJU",173990320,Molly & Justin,Queens,Hollis,40.71523,-73.76992,Entire home/apt,100,2,44,2019-07-01,5.55,1,310 +29995668,Cozy room in friendly & hip Bushwick near subway,8245652,Cazzie,Brooklyn,Bushwick,40.69658,-73.90968,Private room,60,1,6,2019-03-01,0.79,2,0 +29995977,Private room in two floor apartment w/ back yard,2458913,Richard,Brooklyn,Bushwick,40.70183,-73.92028,Private room,50,1,1,2018-11-13,0.13,1,66 +29996902,Hudson Yard - Lux King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75625,-73.99678,Private room,107,1,19,2019-05-26,2.50,30,156 +29998656,Cozy room in West Village,64583317,Ji Han,Manhattan,Greenwich Village,40.72863,-74.00125,Private room,43,5,3,2019-05-27,0.39,1,5 +29998952,Large Private Bedroom in Brownstone Apartment,225513415,Tresanna,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93892,Private room,75,2,26,2019-06-27,3.66,2,21 +29999267,Private Room in Brownstone Apartment,225513415,Tresanna,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93753,Private room,65,2,17,2019-06-24,2.48,2,21 +30002830,Bunk bed spot one block from subway,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67916,-73.9114,Shared room,24,1,11,2019-06-17,1.49,17,85 +30005374,Nice one bedroom well located,113805886,Yaacov,Manhattan,Upper East Side,40.77768,-73.95064,Entire home/apt,150,31,1,2019-03-21,0.27,33,338 +30006770,Sleek + Modern FiDi 1BR in Luxury Building by Blueground,107434423,Blueground,Manhattan,Financial District,40.70425,-74.00856,Entire home/apt,325,30,0,,,232,304 +30006781,Sunlit double story studio escape in Bed-Stuy!,225558132,Dana,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95483,Entire home/apt,135,2,5,2019-04-14,0.68,1,45 +30006962,"Sharp Wall Street 1BR w/ Gym, Doorman, Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70497,-74.00746,Entire home/apt,267,30,1,2019-03-20,0.27,232,189 +30006988,Brooklyn Home with Brick Walls and High Ceilings,19909719,Danny,Brooklyn,Greenpoint,40.72203,-73.94709,Entire home/apt,249,7,0,,,2,0 +30007128,Newly renovated apartment in Brooklyn Townhouse,157410883,Chiara,Brooklyn,Bushwick,40.69372,-73.92283,Entire home/apt,120,1,39,2019-06-22,5.27,1,196 +30007787,SUNNY STUDIO IN CHELSEA,4932419,Andrew,Manhattan,West Village,40.73836,-74.00128,Entire home/apt,130,8,6,2019-05-26,1.13,1,1 +30007850,Large and sunny 2 bedroom,225564897,Yassmina,Manhattan,Harlem,40.82358,-73.95178,Entire home/apt,300,2,0,,,1,32 +30007990,Harlem Brownstone Studio Apartment,225566189,Christian,Manhattan,Harlem,40.81804,-73.94375,Entire home/apt,100,2,2,2018-12-31,0.27,1,0 +30008659,East 44th st and 2nd Ave- Doorman Studio Gym 5218,16098958,Jeremy & Laura,Manhattan,Midtown,40.75125,-73.97105,Entire home/apt,145,30,0,,,96,0 +30009035,Sweet room on prime location,225571766,Ashraf,Queens,Jackson Heights,40.75068,-73.87739,Private room,80,2,5,2019-06-07,2.50,1,57 +30009546,Cozy Artist’s Apartment Bushwick,19874155,Ciara,Brooklyn,Williamsburg,40.70245,-73.93603,Private room,75,1,4,2019-01-01,0.53,1,35 +30009701,Fast Commute - SUNNY PRIVATE ROOM in luxury BK,188949327,Criselis,Brooklyn,Bedford-Stuyvesant,40.68986,-73.9249,Private room,50,1,6,2019-04-29,1.00,1,0 +30010084,Very spacious 2 BR in Crown Heights,15823232,Nicolas,Brooklyn,Crown Heights,40.67812,-73.94618,Entire home/apt,129,3,30,2019-06-26,3.96,3,81 +30010324,New York Style one bed,113805886,Yaacov,Manhattan,Upper East Side,40.77919,-73.95182,Entire home/apt,150,31,7,2019-05-26,0.96,33,338 +30010380,Prime 2 bedW/3 beds! Doorman Laundry! 5232,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76735,-73.98524,Entire home/apt,275,30,0,,,96,325 +30010913,Minimalist Apartment Greenpoint / Williamsburg,67958710,Felipe,Brooklyn,Greenpoint,40.72424,-73.94984,Entire home/apt,100,6,0,,,1,0 +30011365,1 bed close to Park and subway,113805886,Yaacov,Manhattan,Upper East Side,40.77751,-73.95174,Entire home/apt,150,31,1,2019-05-25,0.67,33,338 +30011527,Cozy Duplex Studio 1 Minute to Subway,222236294,Kieu&Jimmy,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95455,Entire home/apt,160,2,33,2019-07-03,4.65,1,246 +30012164,"Historic Gem in Beautiful Clinton Hill, Brooklyn",30466297,Jack,Brooklyn,Clinton Hill,40.68632,-73.96292,Entire home/apt,450,2,5,2019-07-05,0.66,1,11 +30012632,Lovely bedroom in prime Williamsburg,87167456,Hernan,Brooklyn,Greenpoint,40.71942,-73.95011,Private room,75,4,2,2018-12-08,0.26,1,0 +30013028,Beautiful boho-chic bedroom with private bathroom,225593905,Elyse,Brooklyn,Bushwick,40.69285,-73.92085,Private room,79,3,0,,,1,24 +30013315,New Bedroom in a nice apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66736,-73.99467,Private room,53,1,0,,,3,317 +30013811,Alexander,224711439,S Xander,Manhattan,Inwood,40.86414,-73.92537,Private room,50,3,1,2018-12-29,0.16,1,0 +30014004,Modern Brooklyn Condo,394891,Ray,Brooklyn,Crown Heights,40.67826,-73.96379,Entire home/apt,200,4,2,2019-01-03,0.25,1,8 +30014439,East Village Gem - The Garden Dream,35422741,Alexia,Manhattan,East Village,40.73015,-73.98447,Entire home/apt,350,3,3,2019-06-16,0.48,1,5 +30014743,Cute & quiet 1BR in East Village,4817341,Lauren,Manhattan,East Village,40.7288,-73.98058,Entire home/apt,200,2,6,2019-06-23,0.95,1,7 +30014866,DaDukes Giza,139879568,Alberto,Queens,Long Island City,40.76538,-73.93882,Private room,85,1,18,2019-05-27,2.50,6,363 +30015529,"Quiet, Sun-Filled, 1BR Williamsburg Apt",53444504,Harvey,Brooklyn,Williamsburg,40.71633,-73.94138,Entire home/apt,200,1,5,2019-06-16,0.66,1,0 +30015658,private spacious LES bedroom,220601248,Nora,Manhattan,Lower East Side,40.71752,-73.98887,Private room,75,2,24,2019-06-23,3.14,2,7 +30015731,1 Bedroom Spacious and Cozy UWS Apartment,43043667,Dina,Manhattan,Upper West Side,40.78105,-73.97633,Entire home/apt,249,2,13,2019-02-28,1.82,1,0 +30015813,Newly renovated house with a rooftop near Downtown,225618164,Sergii,Brooklyn,Gowanus,40.68198,-73.98962,Private room,77,30,0,,,3,365 +30016740,Cozy Yogi Crash Pad :),224637257,Shep,Brooklyn,Flatbush,40.64491,-73.9573,Private room,55,2,17,2019-04-28,2.31,2,142 +30017676,KOREA FOOD TOWN! Affordable Price! Ideal for 1or2!,162496355,Chanhee,Queens,Flushing,40.76531,-73.8138,Private room,43,2,6,2019-01-05,0.80,1,0 +30017757,Next to Central Park,2653479,Brian,Manhattan,Upper West Side,40.79505,-73.96382,Private room,90,2,2,2019-04-17,0.59,4,43 +30018448,A lovely room in a very quiet area waiting for you,173287467,Sonali,Queens,College Point,40.79469,-73.84544,Private room,50,5,0,,,1,0 +30018456,COMFORTABLE PRIVATE ROOM IN FLATBUSH!,72015600,XaXa,Brooklyn,Flatbush,40.64664,-73.95486,Private room,60,1,3,2019-01-27,0.48,1,0 +30018946,Best View in Brooklyn —> Private Modern Penthouse,14482375,Lara & David,Brooklyn,Greenpoint,40.72074,-73.94371,Entire home/apt,95,3,0,,,3,0 +30019462,Beautiful Times Square Apt. Heart of Manhattan!,219848970,Javier,Manhattan,Hell's Kitchen,40.76203,-73.99353,Entire home/apt,600,3,0,,,2,17 +30019511,Hard to Find!!! Entire private floor and 2 baths,17022165,Jess,Manhattan,Lower East Side,40.72042,-73.98414,Private room,159,2,29,2019-07-04,4.39,1,209 +30019535,NewYork Downtown aloft,38216858,Silver,Manhattan,Financial District,40.70772,-74.01489,Private room,220,1,1,2019-05-21,0.60,4,365 +30020090,Large Chic Uptown NYC Apartment,225646557,Mike,Manhattan,Washington Heights,40.83901,-73.93802,Entire home/apt,199,2,18,2019-07-01,2.56,1,171 +30020439,Airy Brooklyn Limestone : 3 Bedroom Suite!,3393434,Billye And Joe,Brooklyn,Crown Heights,40.67152,-73.94712,Private room,600,3,0,,,2,89 +30020524,LES Penthouse,36560763,Daniel,Manhattan,Lower East Side,40.71762,-73.98606,Entire home/apt,450,2,0,,,1,0 +30020930,Romantic Upper East Side studio,183924446,Rose,Manhattan,Upper East Side,40.77064,-73.95124,Entire home/apt,150,3,11,2019-06-22,1.56,1,49 +30021086,"Room in a Cosy Appartment, Midtown, Grand Central",92963604,Barthelemy,Manhattan,Midtown,40.75638,-73.9675,Private room,100,3,6,2019-04-21,0.85,1,45 +30021315,Central Park studio,88161763,Bethlehem,Manhattan,Upper West Side,40.79672,-73.96169,Entire home/apt,150,2,29,2019-06-25,3.97,1,11 +30021600,Tasteful Bright Studio Loft in Historic Brownstone,225655167,David,Brooklyn,Bedford-Stuyvesant,40.6887,-73.92742,Entire home/apt,150,5,3,2019-03-15,0.46,1,24 +30021914,Pelham Gardens Entire Home *Newly Built*,153817,Sadio,Bronx,Pelham Gardens,40.86279,-73.83947,Entire home/apt,87,2,26,2019-06-30,3.42,1,7 +30023607,Sunny bedroom with a view in East Village/LES/NYC,29217011,Eb,Manhattan,Lower East Side,40.72122,-73.98652,Private room,85,4,2,2019-01-04,0.28,1,0 +30027892,Stunning Garden Apartment in Prospect Heights,91851098,Matthew,Brooklyn,Prospect Heights,40.67786,-73.97029,Entire home/apt,110,2,5,2019-04-26,0.89,1,0 +30029651,Home away from home.,115741895,Damian,Queens,St. Albans,40.7008,-73.75121,Private room,70,2,3,2019-05-19,0.40,2,186 +30029831,Classic Comfort Private Suite in the Heights,8556404,Chris,Manhattan,Washington Heights,40.85229,-73.9394,Private room,97,2,0,,,1,365 +30030480,Charming West Village Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72943,-74.00243,Entire home/apt,269,30,1,2019-01-05,0.16,232,234 +30031616,Bright UES 1BR w/Doorman 15m walk to Central Park by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77196,-73.95175,Entire home/apt,255,30,0,,,232,157 +30031841,Private room with awesome Manhattan view,225618164,Sergii,Brooklyn,Gowanus,40.68155,-73.98947,Private room,79,30,0,,,3,365 +30033284,"Spunky Wall Street 1BR w/Speakeasy, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Financial District,40.70462,-74.00912,Entire home/apt,248,30,0,,,232,338 +30033478,Invincible river view Central Park North,225724159,Co,Manhattan,Harlem,40.81857,-73.9557,Private room,59,1,2,2019-02-03,0.36,1,0 +30034070,Private Patio Studio,211549023,Studioplus,Manhattan,Midtown,40.74687,-73.98836,Entire home/apt,220,2,8,2019-06-14,1.48,13,315 +30034260,Bright Ultimate View with Balcony + Roof Access,225730907,Theo,Brooklyn,Bushwick,40.69936,-73.9242,Entire home/apt,170,2,36,2019-07-02,5.24,1,191 +30035166,4-Floor Unique Event Space 50P Cap. - #10299B,172611460,Rasmus,Manhattan,Harlem,40.82511,-73.94961,Entire home/apt,5000,1,2,2019-02-23,0.38,2,150 +30035973,Astoria's Tranquil Home Away From Home,160493366,Kat,Queens,Ditmars Steinway,40.76992,-73.89719,Entire home/apt,62,5,3,2019-05-18,0.76,1,6 +30036315,Room in Williamburg BK,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71837,-73.95882,Private room,99,2,9,2019-06-17,1.16,2,46 +30036390,Luxury Living Condo,225620845,Maria,Brooklyn,Sheepshead Bay,40.58403,-73.95692,Entire home/apt,180,3,4,2019-06-09,0.63,3,156 +30036783,Bright and spacious 2 bed apartment,225748084,Kimberley,Brooklyn,Crown Heights,40.67726,-73.95573,Entire home/apt,140,7,0,,,1,0 +30037000,Calm apartment in Brooklyn,3297399,Adero,Brooklyn,East Flatbush,40.64391,-73.94833,Entire home/apt,57,1,6,2019-01-08,0.80,1,0 +30037339,Luxury Living Condo 2 bdr,225620845,Maria,Brooklyn,Sheepshead Bay,40.58496,-73.95739,Entire home/apt,250,3,4,2019-06-23,0.62,3,360 +30037892,Private room | Beautiful apartment in West Village,23020619,Lorenzo,Manhattan,West Village,40.73444,-74.00562,Private room,190,2,4,2019-04-27,0.53,2,0 +30037932,Loft with Room in Exclusive Area near Free Ferry,183625602,Leslie,Staten Island,Tompkinsville,40.62917,-74.08619,Entire home/apt,120,3,15,2019-07-01,1.92,1,166 +30038038,Large Loft Times Square Apartment,39770685,Mike,Manhattan,Hell's Kitchen,40.75551,-73.99236,Entire home/apt,300,4,8,2019-06-23,1.06,1,7 +30038130,Manhattan Penthouse,213781715,Anting,Manhattan,NoHo,40.72865,-73.99148,Entire home/apt,179,1,0,,,33,179 +30038208,LUX TOP LOC OWN ENTRY GUEST SUITE 1BR+SPABATH+LV!,225706084,Mikki & Doni,Brooklyn,Prospect-Lefferts Gardens,40.65786,-73.95813,Entire home/apt,135,2,29,2019-06-29,4.01,1,80 +30038245,Spacious Room In The Heart Of Harlem,6480134,Johanna,Manhattan,Harlem,40.82414,-73.93912,Private room,60,4,11,2019-06-18,1.53,2,161 +30038280,Cozy & clean 1 Bedroom apartment,22749087,Marie,Manhattan,East Village,40.72514,-73.98504,Entire home/apt,175,3,7,2019-03-30,0.90,1,110 +30038437,Luxe and Quiet 1 Bdrm Upper East Side Apartment,15605409,Jackie,Manhattan,Upper East Side,40.77064,-73.96197,Entire home/apt,345,7,15,2019-06-14,1.92,1,21 +30038438,Your Manhattan Home,213781715,Anting,Brooklyn,Greenpoint,40.73278,-73.95368,Private room,119,1,0,,,33,180 +30039638,Airy and Bright 1 bedroom APT in Brooklyn.,75224005,Michael,Brooklyn,Windsor Terrace,40.65696,-73.97942,Entire home/apt,130,7,1,2019-06-27,1,1,11 +30040019,Private Boutique One Bedroom,2021640,Lina,Manhattan,Upper East Side,40.77717,-73.95404,Entire home/apt,182,2,28,2019-07-02,3.85,1,64 +30040977,Cozy two room studio upper east side NYC,48860816,Christina,Manhattan,Upper East Side,40.77487,-73.95654,Entire home/apt,123,1,0,,,1,0 +30041344,Harlem 5th Avenue Room,19531024,Emmanuel,Manhattan,Harlem,40.80877,-73.94122,Private room,100,2,0,,,2,0 +30041537,"""Home sweet Home"" Welcome friends",224315550,Leonardo,Brooklyn,Williamsburg,40.70956,-73.96552,Private room,90,2,39,2019-06-26,5.37,2,78 +30041554,Huge Apartment Harlem on 5th av,19531024,Emmanuel,Manhattan,Harlem,40.80945,-73.94183,Entire home/apt,175,3,1,2019-01-01,0.16,2,46 +30043083,Home away from home lodging #1 (1 Bed- 1 guest),225790094,Vena,Brooklyn,East Flatbush,40.65129,-73.92696,Private room,35,1,10,2019-07-02,1.32,3,83 +30043303,Cosy entire apartment in great location,22826759,Fuchsia,Brooklyn,Greenpoint,40.72051,-73.95464,Entire home/apt,103,3,3,2019-05-19,0.46,1,11 +30043557,Relaxing private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59802,-73.75497,Private room,70,1,12,2019-06-19,1.69,4,361 +30043754,Spacious bedroom in Midtown East Manhattan,2559403,Belen,Manhattan,Midtown,40.75959,-73.97084,Private room,100,3,1,2018-12-31,0.16,1,0 +30043809,Comfy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59836,-73.75555,Private room,50,1,12,2019-04-28,1.55,4,363 +30043966,Beautiful Bed-Stuy Brownstone on tree line block.,133723890,Elle,Brooklyn,Bedford-Stuyvesant,40.6871,-73.92449,Entire home/apt,125,3,20,2019-06-24,2.58,1,339 +30045214,room in cozy exposed brick apt with HUGE BALCONY,33235360,Guy,Brooklyn,Williamsburg,40.70903,-73.94416,Private room,60,2,14,2019-06-26,1.89,2,14 +30045461,Boho bungalow in Harlem,67658340,Caitlyn,Manhattan,Harlem,40.81691,-73.94124,Private room,70,2,17,2019-06-29,2.44,1,27 +30045865,Upper East Side Studio by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.78918,-73.94834,Entire home/apt,110,30,1,2019-02-12,0.20,2,0 +30046140,Central Park 2 Bedroom Escape in South Harlem,59011845,Aksel,Manhattan,Harlem,40.7997,-73.9534,Entire home/apt,600,3,0,,,1,83 +30046174,Spacious Loft steps from Central Park by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.79052,-73.94838,Entire home/apt,120,29,1,2019-05-31,0.77,2,0 +30046332,Private Room in Heart of Downtown NYC,11718279,Annette,Manhattan,Financial District,40.70815,-74.00513,Private room,115,2,4,2019-01-01,0.55,1,177 +30046359,The Ultimate Dumbo Pad - 1 Large Bedroom~Sleeps 4,26603179,Gal,Brooklyn,DUMBO,40.7034,-73.98544,Entire home/apt,219,3,16,2019-06-26,2.50,1,332 +30046573,Cheery Chelsea Charmer... best location!,3896863,Susanna And Ricki,Manhattan,Chelsea,40.74164,-73.99656,Entire home/apt,250,3,18,2019-06-21,3.44,1,51 +30046737,The Rich Home:minutes to JFK & 30min to the City,225813251,Latasha,Queens,St. Albans,40.6968,-73.76592,Entire home/apt,135,1,69,2019-07-02,10.67,1,158 +30047100,Big brownstone apartment in prime Williamsburg,22588056,Amy,Brooklyn,Williamsburg,40.71323,-73.96319,Entire home/apt,90,7,1,2019-01-02,0.16,1,0 +30047357,BEAUTIFUL COZY ROOM IN HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.59021,-73.948,Private room,55,1,45,2019-06-15,5.74,3,83 +30047371,Home away from Home! 25 Mins from Time Square,59240650,Angely,Manhattan,Inwood,40.8597,-73.92748,Private room,75,2,5,2019-01-05,0.66,1,0 +30048135,Garden 1BR in Brooklyn Heights,78251,Leslie,Brooklyn,Brooklyn Heights,40.70099,-73.99532,Entire home/apt,100,31,0,,,2,310 +30048506,Beautiful! 3 bed 2bath 5min JFK & Resorts Casino,44682387,Sky,Queens,Jamaica,40.67196,-73.77821,Entire home/apt,155,1,59,2019-06-26,7.60,2,287 +30048716,"Come live in, Brooklyn",225749624,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94366,Private room,70,1,1,2018-12-01,0.14,1,0 +30049755,"Bright, spacious and comfortable with open view",5326571,Ines,Queens,Ditmars Steinway,40.77751,-73.90956,Private room,85,2,2,2019-05-31,0.29,2,278 +30049817,Modern Manhattan Apartment,140830391,Jay,Manhattan,Inwood,40.86159,-73.92686,Private room,60,1,15,2019-06-24,2.01,9,89 +30057248,Beautiful Private bedroom for rent in Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70094,-73.91992,Private room,59,1,1,2019-05-31,0.75,5,148 +30057380,Brooklyn Bed and Breakfast next to Prospect Park,14022130,Farah,Brooklyn,Prospect-Lefferts Gardens,40.65646,-73.95229,Entire home/apt,115,2,1,2018-12-26,0.15,1,0 +30058948,家庭式旅馆獨立衛生間套房K,225889604,Fiona,Queens,Flushing,40.76345,-73.828,Private room,73,1,5,2019-06-18,1.17,5,87 +30059270,Beautiful 1 bedroom in Ridgewood's heart.,225891200,Judit,Queens,Ridgewood,40.70947,-73.90039,Private room,75,2,0,,,1,0 +30059328,Two Blocks from Washington Square Park!!,41194120,Melissa,Manhattan,Greenwich Village,40.72978,-73.99982,Entire home/apt,275,1,4,2019-05-26,0.61,1,0 +30059491,Cozy Brooklyn Nook,46093850,Caroline,Brooklyn,Bedford-Stuyvesant,40.68137,-73.95714,Private room,100,1,2,2018-12-29,0.26,1,311 +30059579,Night away,157093664,Zulema,Queens,St. Albans,40.69866,-73.76759,Private room,59,1,0,,,2,365 +30060150,Private room in trendy neighborhood,129902279,Catalina,Brooklyn,Sunset Park,40.65977,-73.99087,Private room,40,8,7,2019-06-12,0.96,1,66 +30060474,Largest High Ceiling Furnished Room in Bushwick,29765186,Raoul&Nats,Brooklyn,Bedford-Stuyvesant,40.6972,-73.93613,Private room,75,2,6,2019-06-14,0.86,1,84 +30060926,3bdrm cozy attic 15 mins from jfk & Belmont track,160940380,Adeola,Queens,St. Albans,40.69869,-73.749,Entire home/apt,250,3,4,2019-06-09,0.63,3,348 +30062210,Cozy Four Twenty Friendly Bedroom in Brooklyn,225913497,Mamadou,Brooklyn,Bedford-Stuyvesant,40.67966,-73.90755,Private room,28,3,1,2019-01-01,0.16,1,0 +30062344,Peaceful Greenpoint sanctuary,49290775,Wira,Brooklyn,Greenpoint,40.73561,-73.95873,Entire home/apt,150,3,3,2019-04-13,0.48,1,42 +30062477,FEMALE SHARED ROOM 30 minutes to Times Square,172369331,Abby,Brooklyn,Sheepshead Bay,40.59823,-73.95909,Shared room,30,2,5,2019-06-12,0.66,10,0 +30062478,Chelsea Hudson yards Highline adorable apartment,225913271,Kristie,Manhattan,Chelsea,40.7507,-74.00261,Entire home/apt,170,3,6,2019-06-30,0.84,1,170 +30062776,"Center of Flushing, Queens, Near Sheraton Hotel",169472089,Betty,Queens,Flushing,40.76079,-73.83387,Private room,90,3,1,2019-01-06,0.16,2,90 +30063499,Large room w private bath <10 mins to Main St!,188575380,Nina,Queens,Flushing,40.76068,-73.82233,Private room,66,2,19,2019-06-24,2.73,1,312 +30063759,Cozy Manhattan Hideaway,14859699,Beau Augusto,Manhattan,Washington Heights,40.83649,-73.94383,Private room,29,134,0,,,1,0 +30063808,Williamsburg Full-Floor Vintage Loft,16072607,Matthew,Brooklyn,Williamsburg,40.70901,-73.9676,Entire home/apt,300,4,2,2019-04-20,0.32,1,161 +30064021,Modern Harlem Haven,225926055,Stacie,Manhattan,Harlem,40.82199,-73.95632,Entire home/apt,120,5,1,2019-01-02,0.16,1,0 +30064378,Entire 1- Bedroom Apt. in the Heart of Astoria.,148298029,Jennifer,Queens,Astoria,40.76529,-73.91137,Entire home/apt,103,5,1,2019-01-01,0.16,1,0 +30064760,Spacious Sunny Bedroom in Bushwick/Ridgewood,12625398,Marcela,Queens,Ridgewood,40.70581,-73.90978,Private room,43,2,4,2019-04-21,0.55,1,0 +30064922,Luxury Bay Ridge Rentals,225930875,Emad,Brooklyn,Bay Ridge,40.62951,-74.02319,Entire home/apt,165,7,0,,,1,126 +30065004,Charles' Chillspot 2guests/ min per stay,225933854,Charles,Queens,Briarwood,40.70742,-73.81345,Entire home/apt,55,1,11,2019-07-02,1.42,1,40 +30065027,Peaceful and Stylish Oasis in the West Village,16403250,Alberto,Manhattan,West Village,40.73334,-74.00098,Entire home/apt,240,4,18,2019-07-04,4.19,1,24 +30065172,"Bedroom in cosy apt in Williamsburg, Brooklyn",49546136,Victoire,Brooklyn,Williamsburg,40.71235,-73.95764,Private room,79,4,0,,,1,0 +30065616,"Bright Room, next to subway, 15 mins to NYC",737641,Sasha,Brooklyn,Bushwick,40.69874,-73.93589,Private room,50,2,30,2019-06-25,3.98,1,0 +30065947,Comfortable room with private entrance,4460107,Julia,Brooklyn,Greenpoint,40.72745,-73.9483,Entire home/apt,85,3,4,2019-02-23,0.53,1,0 +30066243,Room in the heart of Harlem,225942423,Zainab,Manhattan,Harlem,40.80652,-73.94937,Private room,68,1,33,2019-07-01,4.25,1,19 +30066459,"Upper West Side, NYC",10273945,Camila,Manhattan,Morningside Heights,40.80741,-73.96658,Entire home/apt,150,13,1,2018-11-19,0.13,1,0 +30066865,Lovely new Renovation Stylish apartment 2 floor,212147885,Alisa,Brooklyn,Cypress Hills,40.6765,-73.9063,Entire home/apt,150,3,9,2019-05-26,1.27,2,179 +30067029,UPPER EAST SIDE!! MANHATTAN!!,151300770,Joe,Manhattan,Upper East Side,40.77829,-73.95093,Private room,150,5,5,2019-07-02,0.66,4,272 +30067209,Just for you,222054756,Dora,Queens,Rego Park,40.72637,-73.86829,Private room,60,3,1,2019-01-01,0.16,1,89 +30067470,THE ❤️ OF NYC AWAITS--ASK ABOUT MY SUMMER SALE,224884160,Nbeki,Manhattan,Hell's Kitchen,40.76193,-73.99147,Entire home/apt,499,2,14,2019-06-23,1.98,1,236 +30067550,1 Sunny Sublet in Crown Heights 3 BR Apt,7569336,Simona,Brooklyn,Crown Heights,40.66988,-73.94682,Private room,60,20,1,2018-11-30,0.14,1,64 +30067603,"Comfortable, Jazzy, Netflix",45835291,Shareef,Manhattan,Harlem,40.82411,-73.95441,Private room,47,8,31,2019-06-30,4.04,6,270 +30067767,UPPER EAST SIDE in NYC!!!,151300770,Joe,Manhattan,Upper East Side,40.77954,-73.95127,Private room,150,5,5,2019-05-20,0.79,4,267 +30068066,MANHATTAN! NEW YORK CITY!,151300770,Joe,Manhattan,Upper East Side,40.78006,-73.95046,Private room,150,5,7,2019-06-19,0.96,4,293 +30068829,Midtown West - Sunny Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75659,-73.99988,Private room,179,1,27,2019-06-23,3.45,30,327 +30069021,Midtown West - Cozy Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75753,-73.99701,Private room,199,1,25,2019-06-23,3.21,30,324 +30069091,"Work Friendly, Private Bathroom and Kitchen",225963659,Alexander,Brooklyn,Bushwick,40.69538,-73.92501,Private room,59,20,0,,,1,0 +30069635,"Chic, spacious, private home away from home!",101367917,Colleen,Queens,Astoria,40.76589,-73.92259,Private room,150,2,4,2019-04-28,0.55,1,0 +30070126,✩Prime Renovated 1/1 Apartment in Upper East Side✩,4968673,Sean,Manhattan,Upper East Side,40.76831,-73.95929,Entire home/apt,200,5,2,2019-05-26,0.68,1,71 +30071389,Lothlorien,224513581,Gaia,Brooklyn,Bedford-Stuyvesant,40.67752,-73.90886,Private room,26,30,0,,,2,250 +30071646,Bright Spacious Brooklyn Room with Living Room,38250051,Carrie,Brooklyn,Sunset Park,40.65978,-73.99406,Private room,50,3,3,2019-04-07,0.43,1,0 +30071822,"Entire Private 1 Bdrm, 1 Bath & 1000 SQFT Backyard",24864537,Jocelyn,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.94985,Entire home/apt,100,3,10,2019-06-21,1.32,1,25 +30071866,Brooklyn based 1 bedroom apartment,22723123,Maximilian,Brooklyn,Downtown Brooklyn,40.69115,-73.98466,Entire home/apt,99,3,1,2019-04-28,0.41,1,31 +30071905,Amazing Central Park Apartment Close to everything,78325795,Bozhena,Manhattan,Harlem,40.80616,-73.95007,Entire home/apt,269,1,29,2019-07-03,3.88,3,1 +30071972,Beautiful room Williamsburg Brooklyn NY,192181166,Elisa,Brooklyn,Williamsburg,40.70685,-73.94231,Private room,60,150,2,2019-01-13,0.32,2,0 +30077994,GEM BnB Cozy Comfort 3 Br House near JFK,221764359,Graham,Queens,Springfield Gardens,40.66635,-73.76622,Entire home/apt,300,1,5,2019-05-26,0.66,1,154 +30081034,Greenpoint Brooklyn,226035811,Samantha,Brooklyn,Greenpoint,40.72778,-73.94781,Private room,200,7,0,,,1,0 +30081150,"Huge Private Bedroom, Manhattan Washington Heights",3421779,Kfir,Manhattan,Washington Heights,40.83856,-73.94186,Private room,109,1,2,2018-12-15,0.29,1,270 +30082832,Cozy 2BD Parlor Level w/ Deck Apt in Brooklyn,226048286,Denise,Brooklyn,Clinton Hill,40.69415,-73.96581,Entire home/apt,250,2,30,2019-07-06,5.29,1,274 +30082958,NYC★GREATVALUE★STEPSFROMTRAIN★QUEENtempurpedicBED,73183897,Michael,Staten Island,Dongan Hills,40.58415,-74.10503,Entire home/apt,70,3,14,2019-07-06,1.81,1,51 +30084221,"Live in the heart of East Village, Manhatan",44642799,Judith,Manhattan,East Village,40.72818,-73.98075,Entire home/apt,225,3,2,2019-01-03,0.31,1,0 +30084269,Private Large Bedroom in Brooklyn,12171344,Marta,Brooklyn,Crown Heights,40.66655,-73.95005,Private room,85,2,7,2019-07-03,0.99,2,27 +30084665,Fuhgettaboutit! No hidden fees+HBOShowtime-1 guest,37401126,Leah,Brooklyn,East Flatbush,40.64251,-73.93926,Private room,50,2,32,2019-06-24,4.47,4,358 +30085136,1 BR in historical Brownstone with terrace/garden,198707356,Stephen,Manhattan,Harlem,40.81756,-73.9452,Private room,99,14,2,2019-04-26,0.32,1,36 +30085665,家庭式雙人房K,225889604,Fiona,Queens,Flushing,40.76506,-73.82757,Private room,65,1,3,2019-05-26,0.42,5,85 +30085711,Elegant Park Slope 1b steps from Barclays,114043000,Jeff,Brooklyn,Park Slope,40.67989,-73.97922,Private room,120,2,12,2019-03-06,1.57,1,89 +30085865,Cozy 1 bedroom apartment in Fort Greene,75479604,Alyssa,Brooklyn,Fort Greene,40.69473,-73.97225,Entire home/apt,175,1,1,2018-12-30,0.16,2,0 +30086057,Spacious Room / ✰ Prime Williamsburg ✰ / NYC,5179523,Max,Brooklyn,Williamsburg,40.71027,-73.95293,Private room,75,1,0,,,3,43 +30086614,"private room in clean, homey apartment",3147746,Elise,Manhattan,Washington Heights,40.8444,-73.93654,Private room,27,29,1,2018-11-20,0.13,1,124 +30086617,4-person apartment in Upper East Side/East Harlem,187567357,Tim,Manhattan,East Harlem,40.7947,-73.94115,Entire home/apt,160,1,0,,,1,0 +30086862,Light Massive Sanctuary,224637257,Shep,Brooklyn,Flatbush,40.64544,-73.95731,Private room,95,2,3,2019-05-19,0.40,2,180 +30087377,Prime West Village Boutique Apartment,14379366,Perry,Manhattan,West Village,40.7363,-74.00494,Entire home/apt,340,30,2,2019-06-14,0.46,1,100 +30087397,Beautiful and Cozy Space,35319788,Kiran,Manhattan,Upper West Side,40.80052,-73.9706,Private room,100,2,8,2019-04-27,1.06,1,0 +30088291,Room in Sunny Prime Williamsburg Pad,218511630,Carlos,Brooklyn,Williamsburg,40.71465,-73.95499,Private room,75,2,11,2019-05-20,1.90,3,0 +30088310,Private Bedroom in a Quintessential UWS Apartment,2723489,Leslie,Manhattan,Upper West Side,40.80055,-73.96876,Private room,80,2,3,2019-01-03,0.42,1,0 +30088327,Lower East Side luxury one bedroom apartment,75404627,Nadia,Manhattan,Lower East Side,40.71022,-73.99163,Entire home/apt,195,3,14,2019-06-10,1.93,1,158 +30088359,Spacious studio across from Morningside Park,10842596,Ruth,Manhattan,Morningside Heights,40.80218,-73.95904,Entire home/apt,100,1,24,2019-07-07,3.09,1,1 +30088906,Safe and Sound Studio in the Big Apple,226088610,Cynthia,Manhattan,Upper East Side,40.76812,-73.95093,Entire home/apt,150,7,0,,,1,365 +30089134,NYC House rent,225616368,Jafor,Queens,Woodside,40.74217,-73.90218,Entire home/apt,136,2,17,2019-07-06,2.25,1,348 +30089412,Private 2 bedroom apartment with outdoor space ..,156481014,Nyesha,Brooklyn,Clinton Hill,40.6819,-73.96007,Entire home/apt,250,2,16,2019-06-30,2.18,1,78 +30089600,Spacious Apt with Charm & Character,113569564,Talia,Bronx,Riverdale,40.88511,-73.90831,Entire home/apt,175,3,5,2019-04-08,0.77,1,0 +30089810,Private Room in Beautiful 3000 sq ft Loft!,14413778,Allegra,Manhattan,Nolita,40.72192,-73.99418,Private room,307,3,1,2018-11-22,0.13,2,363 +30089955,Amazing City View Ultra Luxury One Bed in Midtown,50046186,Jesse,Manhattan,Midtown,40.74933,-73.98467,Entire home/apt,600,2,1,2018-12-16,0.15,1,0 +30090198,"ENTIRE one-bedrm apartment. Cozy, chic, spacious!",17617821,Julie,Brooklyn,Crown Heights,40.67775,-73.94913,Entire home/apt,99,4,5,2019-06-10,0.77,1,23 +30091241,Tribeca - Large 4 bedroom 2 bathroom for Xmas/NY,102655617,Mahesh,Manhattan,Tribeca,40.71546,-74.00856,Entire home/apt,2000,1,1,2019-01-01,0.16,1,0 +30091313,家庭式單間雙人床K,225889604,Fiona,Queens,Flushing,40.76339,-73.82831,Private room,55,1,7,2019-05-11,0.95,5,85 +30091592,Best view near Times Square,16768238,Julio Adrian,Manhattan,Hell's Kitchen,40.75975,-73.9944,Private room,215,2,0,,,1,0 +30091823,Cozy Soho Walk Up,122053964,Madeline,Manhattan,SoHo,40.72355,-74.0032,Entire home/apt,200,2,0,,,1,0 +30092606,Time Square West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75665,-73.99838,Private room,129,1,18,2019-05-05,2.40,30,140 +30093042,Spacious 1BR close to the subway,15823232,Nicolas,Brooklyn,Crown Heights,40.67698,-73.94414,Private room,99,2,2,2019-03-03,0.29,3,78 +30093274,家庭式獨立衛生間套房G,225889604,Fiona,Queens,Flushing,40.76548,-73.82764,Private room,82,1,2,2019-06-09,0.31,5,85 +30093843,Johns place,2286764,John,Queens,Woodside,40.75542,-73.90716,Entire home/apt,125,3,14,2019-06-13,2.05,1,42 +30094586,"Stay for a day, or two (or +), totally up to you!",41326201,Crú,Queens,Ridgewood,40.69845,-73.90838,Private room,150,1,14,2019-06-30,1.89,1,89 +30094688,Luxurious Brooklyn Office,225943653,Oswin,Brooklyn,Bedford-Stuyvesant,40.68515,-73.94743,Entire home/apt,151,1,1,2018-11-28,0.13,1,179 +30094802,Very spacious 1 BR with lots of sunlight,15823232,Nicolas,Brooklyn,Crown Heights,40.6773,-73.94465,Private room,99,2,1,2019-05-21,0.60,3,84 +30096719,Small studio in historic Clinton Hill,188896,Ellen,Brooklyn,Clinton Hill,40.6887,-73.96668,Entire home/apt,98,1,32,2019-07-02,4.10,2,257 +30101694,New york Multi-unit building,4750332,Ofer,Manhattan,Hell's Kitchen,40.75884,-73.99208,Entire home/apt,800,180,0,,,1,358 +30101954,Spacious bright bedroom in modern apartment,57755572,Georgia,Brooklyn,Greenpoint,40.73008,-73.96062,Private room,70,2,2,2019-01-05,0.27,1,0 +30102118,Huge two bedroom in trendy Greenpoint,5743700,Joshua,Brooklyn,Greenpoint,40.72918,-73.95538,Entire home/apt,200,4,1,2018-12-26,0.15,1,0 +30102666,"Summer in style, 2BR Apt with Rooftop",15967997,Laura,Brooklyn,Williamsburg,40.71861,-73.95448,Entire home/apt,380,3,3,2019-06-24,0.48,1,14 +30103053,Stunning Huge Loft Prime SoHo position,2969845,Lucas,Manhattan,SoHo,40.72418,-73.99978,Entire home/apt,500,5,3,2019-04-09,0.46,1,63 +30103232,Welcome to the private LOVE NEST in BUSHWICK!!!,9834068,Toni,Brooklyn,Bushwick,40.69726,-73.91587,Private room,50,2,19,2019-06-07,2.52,1,5 +30104692,"Quiet apartment. Easy access to L, J/M/Z, G lines.",43089807,John,Brooklyn,Williamsburg,40.71318,-73.95876,Entire home/apt,149,2,20,2019-06-23,2.80,1,263 +30104723,Cozy apt with washer dryer in trendy Williamsburg,226201658,Vanessa,Brooklyn,Williamsburg,40.70689,-73.94996,Entire home/apt,73,30,1,2019-03-02,0.23,3,345 +30105018,Bushwick Artist Loft in Converted Factory,226204224,Allyson,Brooklyn,Bushwick,40.6991,-73.92338,Private room,50,1,7,2018-12-30,0.93,1,0 +30105022,SUNLIT PRIVATE ROOM,126449349,John,Manhattan,Lower East Side,40.71436,-73.98856,Private room,80,1,6,2019-06-19,0.77,2,151 +30105086,Spacious and Bright West Village Studio,24524608,Ali,Manhattan,West Village,40.72975,-74.0042,Entire home/apt,170,2,9,2019-06-22,1.37,1,19 +30105572,East Village Gem,951571,Georgie,Manhattan,East Village,40.72815,-73.98455,Entire home/apt,120,1,5,2019-06-30,0.65,1,191 +30105773,Entire 1br. Kitchen and sleeping quarters.,4361061,Abrm,Queens,Astoria,40.77298,-73.92461,Entire home/apt,70,1,1,2019-01-01,0.16,2,2 +30106162,Private Room in Charming TriBeCa Loft,407922,Kristen,Manhattan,Tribeca,40.72018,-74.00451,Private room,70,30,2,2018-12-12,0.26,1,0 +30106965,⍟Luxury high rise apt | 1 street to Times Square⍟,141713210,J.C.,Manhattan,Theater District,40.75716,-73.98796,Entire home/apt,400,4,2,2019-01-02,0.31,1,0 +30106990,NY MANHATTAN DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75438,-73.99759,Private room,209,2,11,2019-05-16,1.63,8,73 +30107009,家庭式雙床房G,225889604,Fiona,Queens,Flushing,40.76418,-73.8293,Private room,72,1,8,2019-05-31,1.12,5,74 +30107262,Quint brownstone private entrance with spa on site,226205088,Robbin,Manhattan,Harlem,40.80324,-73.94887,Entire home/apt,125,2,12,2019-07-02,3.05,1,7 +30108247,beautiful apt. in Chelsea w/ a doorman,7285648,Josh,Manhattan,Chelsea,40.74656,-74.00441,Private room,114,1,1,2019-01-01,0.16,3,0 +30108593,MODERN STYLISH CHIC GARDEN LEVEL SUITE in BROOKLYN,226230372,Jean,Brooklyn,East Flatbush,40.64879,-73.95079,Entire home/apt,88,2,44,2019-06-26,5.92,1,7 +30108978,Renovated Boutique Rough Luxe Apartment,36021544,Ricardo,Manhattan,Hell's Kitchen,40.76375,-73.99201,Entire home/apt,250,6,0,,,1,87 +30109089,MOXY NYC DOWNTOWN-7 NIGHTS MIN,5144567,Yun,Manhattan,Financial District,40.70845,-74.01037,Private room,209,7,1,2019-01-04,0.16,13,358 +30109128,"Chic Apartment in Financial District, Manhattan",9156492,Matei,Manhattan,Financial District,40.70701,-74.0151,Entire home/apt,114,1,6,2019-07-02,0.79,1,11 +30109151,Large Open Brooklyn Loft,4445708,Kirsten,Brooklyn,Bedford-Stuyvesant,40.69137,-73.96,Entire home/apt,118,2,6,2019-02-18,0.89,1,67 +30109697,Nicely appointed BIG one bedroom off Central Park,1385157,Brian,Manhattan,Upper West Side,40.78318,-73.97372,Entire home/apt,130,30,1,2019-04-12,0.34,5,261 +30109765,"Nice & quiet,clean & neat, all including hostel",95958773,Maryna,Brooklyn,Brighton Beach,40.57811,-73.96004,Shared room,50,1,0,,,3,365 +30109916,Entire Spacious Apt. with Comfy Queen Bed & WiFi,22694324,Greg,Bronx,Allerton,40.86975,-73.84669,Entire home/apt,75,1,7,2019-01-20,0.93,1,1 +30110482,686 A home away from home,226250191,Shawn,Brooklyn,Brownsville,40.65239,-73.91029,Entire home/apt,130,2,20,2019-06-29,2.63,1,139 +30111496,Brooklyn Newly Renovated 1-bedroom Apartment,101215475,Julia,Brooklyn,Williamsburg,40.70762,-73.96503,Private room,90,3,10,2019-07-06,4.55,1,77 +30111883,Twin Private Room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69356,-73.94537,Private room,80,2,16,2019-06-17,2.17,4,3 +30112272,Spacious 3 bedrooms Prime Manhattan,225108575,Tom,Manhattan,Midtown,40.75693,-73.96583,Entire home/apt,206,30,3,2019-04-30,0.41,1,161 +30112494,"Huge, super-clean and elegant!",225971717,Natalia,Manhattan,Harlem,40.8242,-73.9537,Entire home/apt,120,2,4,2018-12-16,0.53,1,0 +30113007,家 Home (12 mins to NYC),213781715,Anting,Brooklyn,Greenpoint,40.73031,-73.95742,Entire home/apt,306,1,0,,,33,364 +30113079,Brooklyn Cosy Daybed,10809204,Mario,Brooklyn,Crown Heights,40.66844,-73.95857,Shared room,46,2,0,,,1,0 +30115354,Amazing apartment in the heart of Brooklyn,5918341,Mona,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95182,Entire home/apt,149,3,14,2019-05-25,1.88,2,0 +30120067,Home Sweet Riverdale,163737392,K,Bronx,Fieldston,40.89466,-73.89735,Shared room,50,1,8,2019-07-06,1.26,2,241 +30120427,"2 blocks from train, Balcony, Free Parking!",50319699,Sharon,Queens,Astoria,40.77036,-73.92191,Entire home/apt,165,3,2,2019-05-06,0.27,1,0 +30122033,"A well loved, Individually designed luxury home!",38140449,David,Manhattan,Upper West Side,40.77355,-73.99084,Entire home/apt,375,4,1,2019-01-01,0.16,1,0 +30122474,Comfy Oasis In Exceptionally Convenient Area,41217631,Paul,Manhattan,Chinatown,40.71508,-73.9975,Private room,75,1,33,2019-06-23,4.52,2,0 +30122576,Charming apartment in Manhattan.,48958233,Ana,Manhattan,Gramercy,40.73619,-73.98307,Entire home/apt,259,1,14,2019-04-23,1.92,2,0 +30123494,Comfy modern appartment in hip Crown Heights,11869986,Christopher,Brooklyn,Crown Heights,40.67299,-73.95804,Entire home/apt,210,4,1,2019-01-01,0.16,1,0 +30124206,Fresh Room One Block From Metro!!,226335012,Ann,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95596,Private room,55,2,23,2019-06-21,3.59,1,323 +30124398,"Beautiful 1865 Townhouse, 5 bedrm, Fireplace Sauna",4077993,Raquel,Brooklyn,Crown Heights,40.67536,-73.94237,Entire home/apt,460,2,2,2019-01-02,0.27,2,0 +30124940,Large second floor room for 4!,65407018,Harmony,Brooklyn,Greenpoint,40.7227,-73.93691,Private room,85,1,14,2019-06-03,1.92,5,137 +30125523,Excellent studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74957,-73.97683,Entire home/apt,111,30,1,2019-06-13,1,50,332 +30125569,Quiet room in the quiet place for 1 person only,114673570,Mark,Manhattan,East Harlem,40.80909,-73.93726,Private room,200,30,0,,,1,358 +30125704,Pleasant studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74839,-73.97556,Entire home/apt,111,30,0,,,50,365 +30126088,Experience Serernity~Hamilton Heights,178473107,Allan C.,Manhattan,Harlem,40.82982,-73.94661,Private room,109,1,1,2019-01-01,0.16,6,41 +30126274,Cute 1/1 Available for the Holidays in NYC!,216903925,Victoria,Manhattan,Washington Heights,40.8375,-73.94182,Entire home/apt,99,1,2,2019-01-07,0.31,1,0 +30126658,Cozy stylish luxury... in the heart of Soho!!!,3562922,John,Manhattan,Nolita,40.72154,-73.99727,Entire home/apt,300,4,3,2019-05-28,0.48,1,97 +30128559,"Brooklyn place with pool, gym and comfort",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69412,-73.9062,Private room,70,3,8,2019-07-04,1.06,3,67 +30128919,In the heart of the city!,226391260,Ahmad,Manhattan,Chelsea,40.74079,-74.00383,Entire home/apt,250,3,4,2019-06-28,0.63,1,49 +30129482,Brooklyn Apartment,9962746,Tania,Brooklyn,Fort Greene,40.688,-73.97185,Entire home/apt,80,3,2,2019-05-12,0.32,1,107 +30129493,"Wall St Condo with Gym, Lounge & a 360° Rooftop",24131677,Eve,Manhattan,Financial District,40.70636,-74.0096,Entire home/apt,240,7,14,2019-06-07,1.98,2,305 +30129734,Cozy Self Contained Private 1 Bedroom Apartment,221844597,Ayana,Queens,St. Albans,40.68739,-73.76598,Entire home/apt,35,1,63,2019-06-30,8.44,1,8 +30129898,PRIME WILLIAMSBURG 1 BED APT- PRIVATE & SUNNY,45319780,Mia,Brooklyn,Williamsburg,40.70795,-73.94307,Entire home/apt,200,3,0,,,1,0 +30129959,Central Harlem Apartment,195452338,Jacob,Manhattan,Harlem,40.81112,-73.94289,Private room,100,3,2,2019-02-07,0.32,1,0 +30130328,Charming Apartment in Wonderful Nolita,226381548,Joe,Manhattan,Nolita,40.72249,-73.99406,Entire home/apt,160,3,14,2019-05-19,1.98,1,0 +30130331,"A brand new house in Little Neck, Queens",226402773,Paul,Queens,Douglaston,40.75466,-73.72924,Entire home/apt,178,5,14,2019-06-17,1.94,1,143 +30130483,Great 1BR with Terrace near Times Square,215531390,Annie Veronique,Manhattan,Hell's Kitchen,40.76481,-73.9922,Entire home/apt,269,4,6,2019-06-12,0.92,1,43 +30130572,Studio-like bedroom with private entrance and bath,2557167,Eric,Bronx,Claremont Village,40.83499,-73.91003,Private room,75,3,19,2019-06-03,2.59,1,109 +30130941,4 Room 9 guest Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.65867,-73.92953,Entire home/apt,200,1,0,,,3,87 +30131250,Private Bushwick Bedroom Madison 3L-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.6877,-73.93146,Private room,42,30,2,2019-05-11,0.47,27,353 +30131273,Private shared space TV/WiFi included bus/train,226410935,Ninosca,Manhattan,Washington Heights,40.83815,-73.94385,Private room,40,3,23,2019-07-01,3.00,1,129 +30131426,Private Williamsburg Co-living Room Madison 3L-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68765,-73.93208,Private room,42,30,1,2019-06-16,1,27,339 +30131491,Prime location cozy studio,53241793,Anastasia,Manhattan,Hell's Kitchen,40.76207,-73.98935,Entire home/apt,160,1,51,2019-07-05,7.50,1,25 +30131676,Elegant & Cozy Room in Hell's Kitchen,226414315,Erica,Manhattan,Hell's Kitchen,40.76802,-73.9906,Private room,130,2,5,2019-06-23,0.71,1,78 +30131807,$2800,226414996,John,Queens,Ditmars Steinway,40.77269,-73.90626,Entire home/apt,90,14,1,2019-01-07,0.16,2,19 +30131908,Private room in Upper East Side |Near Central Park,79194704,Fernanda,Manhattan,East Harlem,40.78721,-73.94131,Private room,99,1,1,2018-11-26,0.13,1,0 +30132025,Room for 3 and 5 minute walk to train!,105248014,Kevin,Brooklyn,East Flatbush,40.64574,-73.94675,Private room,50,1,46,2019-07-05,6.03,2,34 +30132508,Newly Renovated Garden Apt in Brooklyn Brownstone!,182990602,Jamie,Brooklyn,Clinton Hill,40.69205,-73.96646,Entire home/apt,150,2,41,2019-07-01,5.42,1,60 +30132666,Sunny Room in Astoria,42870202,Greg,Queens,Astoria,40.75978,-73.91748,Private room,80,7,1,2018-12-17,0.15,1,8 +30132711,"Spacious And Sunny Apartment, Private Roof Deck!",2446722,Amanda,Brooklyn,Bedford-Stuyvesant,40.69176,-73.95396,Entire home/apt,120,3,22,2019-06-24,3.07,1,16 +30133020,Beautiful 1-BedroomApt in Midtown NYC Manhattan!,1813055,Moshe,Manhattan,Midtown,40.75876,-73.96153,Entire home/apt,162,1,0,,,1,51 +30133397,BEAUTIFUL PRIVATE ROOM IN THE HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.59099,-73.94856,Private room,60,1,56,2019-07-03,7.24,3,48 +30133439,"Cozy, sunny room in best neighborhood - Chelsea",33529908,Michelle,Manhattan,Chelsea,40.74172,-73.99937,Private room,66,5,0,,,1,5 +30133610,Cozy Mid-Town East Penthouse With Terrace,3202935,Cricket,Manhattan,Midtown,40.75199,-73.9725,Entire home/apt,350,3,17,2019-05-30,2.49,1,33 +30134087,Beautiful home in the heart of Manhattan.,83699356,Luke,Manhattan,NoHo,40.72746,-73.99288,Entire home/apt,150,6,0,,,1,0 +30134327,Large Studio near Lincoln Center,38334307,Missy,Manhattan,Upper West Side,40.77848,-73.97996,Entire home/apt,150,1,7,2018-12-31,0.95,1,0 +30137792,Small cozy private room near time square,215944788,Kay,Manhattan,Chelsea,40.74337,-73.99423,Private room,85,3,15,2019-03-17,2.13,3,1 +30141411,Renewed private cozy room next to the Central Park,126653377,Sergii,Manhattan,Harlem,40.80348,-73.95775,Private room,50,30,1,2019-01-16,0.17,6,304 +30142833,Brand New Modern Apt in Fi-Di Manhattan New York,61116037,Jackie,Manhattan,Financial District,40.70428,-74.00707,Entire home/apt,550,2,30,2019-06-23,3.96,1,72 +30143717,"Bright, modern 2 bedroom oasis middle of Flatiron!",46068130,Laura,Manhattan,Flatiron District,40.7443,-73.99056,Entire home/apt,225,5,4,2019-06-04,0.54,2,1 +30144241,Private Room in the Heart of Harlem,6480134,Johanna,Manhattan,Harlem,40.82293,-73.93958,Private room,70,4,8,2019-06-03,1.26,2,102 +30144337,Brooklyn Condo w/ City Views,44434863,Johnathan,Brooklyn,Sunset Park,40.64564,-74.01867,Private room,75,1,1,2018-12-28,0.15,1,365 +30144719,"Gorgeous, Huge Artist's Loft in Williamsburg",51364990,Jasper,Brooklyn,Williamsburg,40.71361,-73.95703,Entire home/apt,195,2,5,2019-06-30,1.61,1,7 +30145754,Large shared apartment in Alphabet City,113675409,Adam,Manhattan,East Village,40.72724,-73.97601,Private room,1880,180,0,,,1,358 +30145840,Luxurious private room near subway B/C stations,126653377,Sergii,Manhattan,Harlem,40.80289,-73.95813,Private room,63,30,2,2019-02-28,0.32,6,335 +30146330,Room available in Bushwick!,156237907,Ariadna,Brooklyn,Bushwick,40.69499,-73.90994,Private room,40,5,1,2018-11-27,0.13,1,250 +30146411,Luxury West Village private Townhouse 5B Garden,101080203,Luxury Property,Manhattan,Gramercy,40.73652,-73.98618,Entire home/apt,3000,1,1,2018-12-16,0.15,1,365 +30146882,"Exquisite Private room Central Park Subway A,B,C",126653377,Sergii,Manhattan,Harlem,40.80521,-73.95592,Private room,63,30,1,2019-04-20,0.37,6,1 +30146925,Sweet and modern 2BR getaway in Bed-Stuy,34277028,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68633,-73.92728,Entire home/apt,150,3,15,2019-06-10,2.13,1,77 +30147304,"Cozy private room near, Upper Westside CentralPark",126653377,Sergii,Manhattan,Harlem,40.80447,-73.95589,Private room,63,30,0,,,6,364 +30147493,NoLIta / Soho 1 bedroom oasis,2743475,Jenny,Manhattan,Nolita,40.72224,-73.99675,Entire home/apt,165,3,5,2019-02-06,0.74,1,0 +30148490,"Beautiful, large Vinegar Hill apartment.",226517382,Caspar,Brooklyn,Navy Yard,40.70159,-73.9801,Private room,50,6,1,2018-12-20,0.15,1,0 +30148548,Cozy Bushwick Room for the holiday season!,198445878,Kevin,Brooklyn,Bushwick,40.70131,-73.93039,Private room,50,1,0,,,1,0 +30150357,"Sun-drenched, airy industrial loft in Brooklyn!",30381245,Cristian,Brooklyn,Bushwick,40.69968,-73.93588,Private room,85,1,4,2019-07-03,0.61,1,1 +30150406,Ditmas Park Affordable Luxury Living-Private Rm,204541838,Diana,Brooklyn,Flatbush,40.64308,-73.96508,Private room,150,3,2,2019-06-19,0.27,2,364 +30150667,Private Room in Manhattan,226531905,Daisuke,Manhattan,Two Bridges,40.71261,-73.99475,Private room,62,1,7,2019-01-02,0.93,1,58 +30151378,1min from the subway station 20min to Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95597,Private room,50,1,13,2019-06-23,1.74,7,264 +30152036,1 BEDROOM in Brooklyn,54606969,Daniela,Brooklyn,Fort Greene,40.68412,-73.96951,Private room,60,7,3,2019-01-06,0.42,1,250 +30152177,PRIME WEST / CENTRAL VILLAGE LARGE STUDIO,217293060,Mohan,Manhattan,Greenwich Village,40.73313,-73.99692,Entire home/apt,299,6,0,,,4,0 +30152553,Stunning one bedroom with skylight and loft!,28695751,Ian & Wendy,Brooklyn,Park Slope,40.67958,-73.97816,Entire home/apt,345,3,10,2019-04-14,1.38,2,0 +30153101,2BR - Great Deal in the Trendy East Village,855079,Nicholas,Manhattan,East Village,40.72829,-73.98452,Entire home/apt,92,1,2,2018-12-29,0.29,3,0 +30153309,1 Bedroom with Clinton Hill Charm,88777320,Eli,Brooklyn,Clinton Hill,40.68658,-73.96752,Private room,241,1,2,2019-03-24,0.47,1,139 +30153367,Private Room perfect for Tourists,43981373,Celeste,Bronx,Concourse,40.83488,-73.91988,Private room,45,2,3,2019-06-16,0.57,1,0 +30153527,"Spacious Renovated Bright, by Prospect Park",14987061,Vera,Brooklyn,Flatbush,40.6478,-73.96091,Entire home/apt,125,2,3,2019-06-16,0.40,1,1 +30153699,Luxury Apartment (1 Bedroom w/ twin beds),163152195,Zakiyyah,Bronx,Port Morris,40.80747,-73.92766,Private room,145,1,7,2019-06-23,1.12,1,360 +30154053,Your Retreat on the Lower East Side,55299396,Courtney,Manhattan,Chinatown,40.71629,-73.98975,Private room,275,2,6,2019-06-09,2.28,1,85 +30154255,Designer Downtown Loft,19168930,Hampton,Manhattan,East Village,40.73298,-73.98768,Entire home/apt,495,2,6,2019-07-01,0.82,1,230 +30155157,Large room near CUMC....,222749009,Hana,Manhattan,Washington Heights,40.84216,-73.94227,Private room,50,1,4,2019-06-07,1.02,3,71 +30155262,Room on Forest Hills,34508000,Venera,Queens,Rego Park,40.72276,-73.85683,Private room,40,1,6,2018-12-07,0.79,1,0 +30155394,New york Multi-unit building,208235184,Linda,Brooklyn,Greenpoint,40.72305,-73.94576,Entire home/apt,195,1,0,,,1,12 +30155402,Large room near Columbia uni med school,222749009,Hana,Manhattan,Washington Heights,40.84241,-73.94264,Private room,50,1,3,2019-04-29,0.39,3,180 +30155444,Cozy Room with private bathroom in Crown Heigths,226562416,Saireth,Brooklyn,East Flatbush,40.66093,-73.93893,Private room,69,1,18,2019-06-30,2.48,1,175 +30155455,Manhattan apt in the best part of NYC,53887230,Danielle,Manhattan,Washington Heights,40.85042,-73.93649,Entire home/apt,120,5,1,2019-01-05,0.16,1,231 +30156697,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73181,-74.00606,Entire home/apt,300,3,21,2019-07-01,5.25,5,308 +30156908,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73389,-74.00646,Entire home/apt,285,3,12,2019-07-04,1.76,5,313 +30157285,"Newly renovated, cozy 1 br appt great location!!!",157687888,Maksim,Brooklyn,Bensonhurst,40.61072,-73.98533,Entire home/apt,90,2,53,2019-06-27,7.07,1,36 +30157535,New York with a hint of European,226572566,Sophia,Manhattan,Upper East Side,40.77066,-73.94993,Entire home/apt,140,5,24,2019-06-25,3.35,1,48 +30157585,Master bedroom,226574177,Robert,Manhattan,Harlem,40.82894,-73.94568,Private room,46,1,1,2018-11-21,0.13,1,179 +30158061,Beautiful Williamsburg Bedroom by McCarren Park,8189649,Samantha,Brooklyn,Williamsburg,40.71876,-73.94436,Private room,96,3,0,,,1,0 +30158174,SWEET + SUNNY WILLIAMSBURG SANCTUARY,4085985,Kimberly,Brooklyn,Williamsburg,40.71134,-73.96059,Entire home/apt,200,3,0,,,1,28 +30158357,Room in Bushwick Apartment,50755816,Tali,Brooklyn,Bushwick,40.69631,-73.92944,Private room,37,1,2,2019-02-18,0.34,1,0 +30158735,"Spacious 2 Bedroom, LES, Amazing Rooftop",146638424,Sean,Manhattan,East Village,40.72141,-73.98111,Entire home/apt,134,1,2,2019-02-10,0.27,1,0 +30158743,Stay in Lovely 2 BR/1 BA Flatbush Apartment,95114505,Aiesha & Stacy,Brooklyn,East Flatbush,40.64874,-73.94467,Entire home/apt,150,3,3,2019-06-30,3,1,0 +30158934,"Beautifull 2BDR, Prime Location, Quiet, Elevator",226587084,Andrea,Manhattan,Financial District,40.70816,-74.0084,Entire home/apt,195,30,13,2019-07-05,4.29,1,305 +30159356,Unbelievable view in midtown high rise,57328653,Esther,Manhattan,Midtown,40.75886,-73.96374,Private room,90,60,0,,,2,64 +30159383,2 BEDROOM EUROPEAN CHIC CENTRAL PARK APARTMENT,6524294,Natascha,Manhattan,Upper East Side,40.7843,-73.95745,Entire home/apt,450,5,5,2019-06-29,0.71,2,345 +30159757,PRIVET ROOM FOR YOUR VACATION NEAR Central Park !!,214137767,Anna,Manhattan,East Harlem,40.78572,-73.94468,Private room,100,1,13,2019-05-24,1.78,1,270 +30160167,Warm little building 温馨小筑 따뜻한 작은 건물 D,92706260,Kane,Queens,Flushing,40.73941,-73.82099,Private room,49,1,19,2019-06-11,2.50,5,48 +30160427,Huge & Cozy Studio in the Upper East Side,51366012,Sabrina,Manhattan,Upper East Side,40.76044,-73.96097,Entire home/apt,189,2,3,2019-07-01,2.43,1,29 +30161160,Manhattan - Double Double,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75606,-73.99662,Private room,199,1,21,2019-06-23,2.96,30,133 +30161268,Comfortable Bedroom Astoria,53518745,Fiach,Queens,Astoria,40.76171,-73.91725,Private room,300,3,2,2019-05-12,0.32,1,54 +30161460,Madison Square - Double Double,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75491,-73.99644,Private room,199,1,24,2019-06-21,3.27,30,155 +30161645,Midtown West - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7552,-73.99672,Private room,179,1,10,2019-05-05,1.36,30,175 +30161866,Time Square - Comfy Standard Queen,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75652,-73.99826,Private room,179,1,24,2019-06-09,3.23,30,165 +30168118,Comfy private BR for a couple! Near train & mall,137358866,Kazuya,Queens,Woodside,40.74041,-73.89029,Private room,49,30,3,2019-05-31,0.50,103,195 +30169107,Lovely private room with private bath in Brooklyn,41091852,Andrea,Brooklyn,Bedford-Stuyvesant,40.69338,-73.94328,Private room,75,1,29,2019-07-06,4.60,1,84 +30169470,LOWER EAST SIDE (private room),1384016,Ignacio,Manhattan,Lower East Side,40.71501,-73.98478,Private room,95,2,5,2019-06-18,0.71,1,165 +30171159,Perfect NYC Getaway 2-BR Apartment w/Garden access,66740918,Nancy,Brooklyn,Gowanus,40.66838,-73.99325,Entire home/apt,125,12,0,,,1,83 +30171467,Sam and Mala place is your home away from home,226664611,Samuel,Queens,South Ozone Park,40.68048,-73.8125,Entire home/apt,72,2,26,2019-06-18,3.80,2,317 +30172902,"Cozy 2 Beds in Private Bedroom: NYC ""LES"" Manhattn",226503876,Chi,Manhattan,Lower East Side,40.71284,-73.98861,Private room,75,5,14,2019-06-28,2.09,2,217 +30173614,Ditmas Park Affordable Luxury-Private Room,204541838,Diana,Brooklyn,Flatbush,40.64489,-73.96363,Private room,65,3,15,2019-06-24,2.05,2,208 +30173864,"Charming Apartment in Brooklyn, NY",49589973,Steven,Brooklyn,Fort Greene,40.68665,-73.97183,Private room,112,5,2,2019-04-15,0.37,1,12 +30174660,Room for Temporary Sublet Nov. 21`-28,226684665,Nicholas,Queens,Ridgewood,40.70673,-73.90071,Private room,40,1,0,,,1,0 +30175190,Hancock-Brooklyn Hospitality,226688121,Makeba,Brooklyn,Bedford-Stuyvesant,40.68504,-73.91699,Entire home/apt,175,1,16,2019-07-05,3.97,1,9 +30175521,The BEST LOCATION in Brooklyn,100935364,Kira,Brooklyn,Gowanus,40.68234,-73.98129,Private room,44,2,3,2019-01-06,0.47,2,0 +30175606,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 3",9864136,Anthony,Brooklyn,Bushwick,40.68513,-73.91385,Private room,50,30,0,,,26,365 +30176919,Cali-Retro Duplex in Historic Greenpoint,6701890,Jenny,Brooklyn,Greenpoint,40.73128,-73.95439,Private room,95,7,1,2019-04-13,0.34,2,0 +30177307,2 Bedroom Presidential Suite in Midtown Manhattan,154340775,Sandy,Manhattan,Midtown,40.75172,-73.97191,Entire home/apt,500,4,0,,,1,0 +30177516,Impressive living in the prime location,21651849,Coco,Manhattan,Upper West Side,40.7723,-73.99363,Entire home/apt,188,2,12,2019-06-04,1.93,1,0 +30178785,Beautiful cozy studio,186701037,Gabriela,Brooklyn,Dyker Heights,40.62877,-74.00918,Entire home/apt,75,1,0,,,2,0 +30179231,True 2 Bedroom in Elevator Building in Prime LES,107562106,Dan,Manhattan,Lower East Side,40.71983,-73.98686,Entire home/apt,295,5,0,,,1,0 +30179242,Luxury 5bed/2bath on Central Park!,222302376,Yves,Manhattan,Upper West Side,40.79396,-73.96311,Entire home/apt,400,4,39,2019-07-06,5.18,1,265 +30179548,GREENWICH Village Noho Luxury RooftopJuly4Th view,226715173,G,Manhattan,East Village,40.72828,-73.98823,Entire home/apt,125,2,1,2019-05-30,0.75,2,365 +30179869,GREENWICH VILLAGE w fireworks July4thRooftopView!,226715173,G,Manhattan,East Village,40.73031,-73.98666,Entire home/apt,139,2,2,2019-05-06,0.32,2,365 +30180208,Nice bedroom in cosy Harlem apartment,75349777,Charles,Manhattan,Harlem,40.81533,-73.95733,Private room,70,3,3,2019-01-02,0.42,1,0 +30181399,Bright Quiet Room in the West Village,108890111,Miguel,Manhattan,West Village,40.73045,-74.00266,Private room,90,2,1,2019-01-02,0.16,1,0 +30181691,Sonder | 180 Water | Incredible 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70637,-74.00645,Entire home/apt,302,29,0,,,327,309 +30181945,Sonder | 180 Water | Premier 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70771,-74.00641,Entire home/apt,229,29,1,2019-05-29,0.73,327,219 +30182093,Chic Chelsea One Bedroom Oasis,12827163,Pamela,Manhattan,Chelsea,40.74057,-73.99908,Entire home/apt,200,5,0,,,1,0 +30182137,Sophisticated Upper East Apt Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.7719,-73.95521,Entire home/apt,133,30,3,2019-05-18,0.69,91,341 +30183115,Luxury apartment in Time Square with in-unit wash,39329047,C,Manhattan,Hell's Kitchen,40.76186,-73.99737,Entire home/apt,150,10,4,2019-02-15,0.58,1,0 +30183428,Uptown Cozy Apartment,11547083,Sabrina,Manhattan,Upper West Side,40.79757,-73.96065,Entire home/apt,135,2,2,2019-06-03,0.32,1,1 +30184318,Brownstone House Spa in Bed-Stuy,19591194,Ali,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94236,Entire home/apt,175,5,1,2019-01-01,0.16,1,84 +30184570,Cozy room in the heart of Williamsburg.,188477517,Jane,Brooklyn,Williamsburg,40.7107,-73.95846,Private room,100,1,1,2018-12-09,0.14,1,0 +30186121,1 Bedroom - Sleeps 3 - Minutes from Subway & CP!,21226117,Robbie,Manhattan,Upper East Side,40.77553,-73.95507,Entire home/apt,345,7,0,,,1,0 +30186549,⋆Brooklyn Brownstone Suite⋆Great Location⋆,145248567,Sam,Brooklyn,Crown Heights,40.66436,-73.95275,Entire home/apt,120,3,43,2019-06-30,5.94,1,56 +30186632,**Bed-Stuy Studio**,2823246,Paige,Brooklyn,Bedford-Stuyvesant,40.68377,-73.95804,Entire home/apt,70,4,1,2018-11-23,0.13,1,0 +30186710,Private bedroom at East Williamsburg,13608859,Ceren,Brooklyn,Williamsburg,40.70316,-73.94914,Private room,110,1,13,2019-05-26,1.85,1,6 +30187331,Prime Area Room/Astoria/LGA 5 minutes,52599987,Jess,Queens,Ditmars Steinway,40.77568,-73.90303,Private room,100,1,2,2018-12-09,0.27,1,0 +30187850,Cozy room one block away from Central Park!,226772729,Lucía,Manhattan,Upper West Side,40.79535,-73.9641,Private room,120,5,1,2019-01-19,0.18,1,0 +30188200,SOHO|LITTLE ITALY|CHINATOWN|HIDEOUT,117831982,Luke,Manhattan,Little Italy,40.71781,-73.99783,Private room,130,3,17,2019-06-23,2.34,1,84 +30189129,"BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN, NY. 3",221836975,Jon,Queens,Jackson Heights,40.74848,-73.89149,Shared room,35,2,1,2018-12-30,0.16,3,310 +30192717,Cozy studio in the heart of New York,132878036,Tae,Manhattan,Hell's Kitchen,40.76383,-73.98979,Entire home/apt,185,4,23,2019-06-27,3.05,1,230 +30193023,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #3,205031545,Red Awning,Manhattan,Midtown,40.75252,-73.96667,Entire home/apt,714,28,1,2019-02-03,0.19,49,257 +30193024,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #1,205031545,Red Awning,Manhattan,Midtown,40.75436,-73.9671,Entire home/apt,675,28,1,2019-06-02,0.81,49,253 +30193032,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #6,205031545,Red Awning,Manhattan,Midtown,40.75363,-73.96648,Entire home/apt,675,28,2,2019-02-17,0.32,49,243 +30193034,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #12,205031545,Red Awning,Manhattan,Midtown,40.754,-73.96531,Entire home/apt,675,28,6,2019-04-25,0.95,49,253 +30193035,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #7,205031545,Red Awning,Manhattan,Midtown,40.75381,-73.96724,Entire home/apt,675,28,2,2019-02-17,0.31,49,224 +30193036,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #11,205031545,Red Awning,Manhattan,Midtown,40.75404,-73.9671,Entire home/apt,675,28,0,,,49,241 +30193131,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #1,205031545,Red Awning,Manhattan,Midtown,40.75385,-73.96536,Entire home/apt,956,4,2,2018-12-20,0.29,49,80 +30193136,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #10,205031545,Red Awning,Manhattan,Midtown,40.75276,-73.96582,Entire home/apt,675,28,1,2019-02-26,0.23,49,251 +30193147,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #2,205031545,Red Awning,Manhattan,Midtown,40.75408,-73.96568,Entire home/apt,675,28,0,,,49,254 +30193154,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #9,205031545,Red Awning,Manhattan,Midtown,40.75439,-73.96647,Entire home/apt,675,28,4,2019-05-26,0.63,49,253 +30193183,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #5,205031545,Red Awning,Manhattan,Midtown,40.75232,-73.96696,Entire home/apt,675,28,1,2019-05-20,0.60,49,234 +30193201,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #8,205031545,Red Awning,Manhattan,Midtown,40.75371,-73.96515,Entire home/apt,675,28,0,,,49,251 +30193239,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #10,205031545,Red Awning,Manhattan,Midtown,40.75271,-73.96575,Entire home/apt,714,28,1,2019-02-05,0.19,49,257 +30193258,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #12,205031545,Red Awning,Manhattan,Midtown,40.75376,-73.96644,Entire home/apt,714,28,1,2019-01-03,0.16,49,257 +30193314,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #5,205031545,Red Awning,Manhattan,Midtown,40.75447,-73.96573,Entire home/apt,714,28,0,,,49,257 +30193325,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #2,205031545,Red Awning,Manhattan,Midtown,40.75439,-73.96648,Entire home/apt,956,4,0,,,49,121 +30193326,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #4,205031545,Red Awning,Manhattan,Midtown,40.75373,-73.96536,Entire home/apt,714,28,0,,,49,257 +30193344,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #8,205031545,Red Awning,Manhattan,Midtown,40.75443,-73.96594,Entire home/apt,714,28,0,,,49,257 +30193345,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #1,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.96724,Entire home/apt,714,28,0,,,49,252 +30193375,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #4,205031545,Red Awning,Manhattan,Midtown,40.75385,-73.96573,Entire home/apt,675,28,1,2019-05-20,0.60,49,234 +30193397,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #3,205031545,Red Awning,Manhattan,Midtown,40.75428,-73.96566,Entire home/apt,675,28,1,2018-12-29,0.16,49,225 +30193408,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #11,205031545,Red Awning,Manhattan,Midtown,40.7538,-73.96564,Entire home/apt,714,28,0,,,49,257 +30193428,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #9,205031545,Red Awning,Manhattan,Midtown,40.75271,-73.96638,Entire home/apt,714,28,0,,,49,257 +30193432,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #7,205031545,Red Awning,Manhattan,Midtown,40.75264,-73.96543,Entire home/apt,714,28,0,,,49,257 +30193485,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #6,205031545,Red Awning,Manhattan,Midtown,40.75459,-73.96566,Entire home/apt,714,28,0,,,49,257 +30193536,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #2,205031545,Red Awning,Manhattan,Midtown,40.75403,-73.96714,Entire home/apt,714,28,0,,,49,250 +30195586,Room in New York,178733071,Júnior,Queens,Ditmars Steinway,40.7747,-73.90115,Private room,50,2,0,,,1,171 +30198140,Beautiful Room in Brooklyn!!,15640230,Susana,Brooklyn,Crown Heights,40.66433,-73.93383,Private room,40,30,0,,,4,354 +30198386,Big Cozy Brand New Sunny Studio in Flushing NY!,226769067,Mike,Queens,Flushing,40.75982,-73.80629,Entire home/apt,59,1,32,2019-07-04,4.62,1,24 +30198546,Clean and Cozy Private Room in Lower East Side,226832980,Victor,Manhattan,Lower East Side,40.71744,-73.98957,Private room,115,3,19,2019-07-01,2.81,1,0 +30199043,Spacious room in Luxury Chelsea Apt,212033848,Stephanie,Manhattan,Chelsea,40.74453,-73.99196,Private room,150,1,4,2019-07-06,0.55,1,1 +30199622,Near Subway and Central Park :),226839517,Tamara,Manhattan,Midtown,40.75714,-73.96748,Private room,90,1,42,2019-06-23,5.68,1,45 +30199749,Entire 3 bed apart (4 double beds) 117st & Lex.,226839928,Marion,Manhattan,East Harlem,40.79844,-73.94048,Entire home/apt,220,5,0,,,1,205 +30199980,"Hidden gem in Park Slope, 19 mins away from NYC!!!",36728751,Emily,Brooklyn,South Slope,40.66181,-73.98218,Entire home/apt,130,4,2,2019-05-26,0.28,1,179 +30200030,"Sunny, Charming, Private One-Bedroom in Brooklyn",11068937,Kara,Brooklyn,Clinton Hill,40.68325,-73.96487,Entire home/apt,110,4,4,2019-05-21,0.65,2,0 +30200332,"NYUW 05-0 Upper West: NYC, Soho Luxury",39890192,Laura,Manhattan,Morningside Heights,40.80402,-73.96345,Entire home/apt,266,14,2,2019-05-27,0.78,12,86 +30200473,"Cozy, Clean and Quiet Private Room - Wifi Access",226838925,Aralis,Queens,Glendale,40.6953,-73.898,Private room,100,1,5,2019-05-28,0.68,1,0 +30200487,Upper east private bedroom,78971832,Yue,Manhattan,Upper East Side,40.76804,-73.95951,Private room,73,3,0,,,1,0 +30200750,Sunlit Private Upper Manhattan Bedroom,25769417,Daniel,Manhattan,Harlem,40.82022,-73.95309,Private room,150,100,0,,,1,88 +30200791,Loft Living in the Heart of Bushwick,949070,Emily,Brooklyn,Bushwick,40.70887,-73.92154,Entire home/apt,200,3,1,2019-01-01,0.16,1,5 +30200839,Brooklyn apartment 20 min away from Manhattan,226846427,Fidencio,Brooklyn,Bay Ridge,40.63921,-74.02474,Entire home/apt,90,3,19,2019-06-24,2.75,1,52 +30201476,"Smart Studio in Trendy Tribeca, Indoor pool + Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71532,-74.00645,Entire home/apt,303,30,1,2019-02-08,0.20,232,331 +30201810,Beautiful and Cozy Apartment in heart of NYC,226565802,Oksana,Queens,Rego Park,40.72664,-73.85884,Entire home/apt,250,2,1,2019-01-21,0.18,1,365 +30202750,"Large 2 BR, loft-like apartment in historic house",17011664,Ann Marie,Staten Island,St. George,40.64682,-74.08575,Entire home/apt,86,5,1,2019-01-03,0.16,1,43 +30203891,"Classic, yet Unconventional Tribeca NYC Extra Room",221595358,Karen,Manhattan,Tribeca,40.71941,-74.00856,Private room,80,1,38,2019-06-28,5.04,2,329 +30205007,Quaint 1 bedroom tenement apartment in E.Village,72326431,Brianna,Manhattan,East Village,40.72573,-73.98841,Entire home/apt,100,2,11,2019-06-29,1.47,1,102 +30205920,Massive Charming Loft,17966682,David,Brooklyn,Bushwick,40.69498,-73.90698,Entire home/apt,179,1,5,2019-01-14,0.70,1,365 +30205956,Large 1 bdr apt + balcony Williamsburg - Bedford,16081505,Georgia,Brooklyn,Williamsburg,40.71853,-73.96415,Entire home/apt,220,2,6,2019-06-27,0.84,1,16 +30206026,Massive Loft in the Heart of Union square,51340124,Nikki,Manhattan,Chelsea,40.73851,-73.99213,Entire home/apt,3000,2,0,,,2,0 +30206080,NEW Bright upper east side 1 bedroom!,219718268,David,Manhattan,Upper East Side,40.76917,-73.95367,Entire home/apt,230,2,13,2019-03-11,1.78,1,0 +30208046,Lovely & Sunny bedroom in Astoria ( Female only),169490939,Ikrame,Queens,Astoria,40.76635,-73.9205,Private room,89,3,2,2019-04-16,0.71,2,208 +30208369,"Cozy and home feeling, 1-bedroom apt near subway",117648324,Utah,Brooklyn,Gravesend,40.60626,-73.9754,Private room,40,1,1,2018-12-02,0.14,1,335 +30208544,Penthouse in FiDi,73128753,Haider,Manhattan,Financial District,40.70542,-74.00678,Private room,105,2,3,2019-06-30,0.47,1,8 +30209908,"Centrally Located, Cozy One Bedroom",38649650,Shalev,Manhattan,Hell's Kitchen,40.76826,-73.98719,Entire home/apt,175,7,2,2019-05-13,0.79,1,188 +30209958,Lovely exposed brick room to rent in Williamsburg,27716292,Ianthe,Brooklyn,Williamsburg,40.71225,-73.94961,Private room,50,2,2,2019-07-01,0.92,1,0 +30210441,Coziness from a westelm catalog,226906712,Sade,Manhattan,Harlem,40.8077,-73.94953,Private room,127,1,0,,,1,89 +30212188,Manhattan West - Standard Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75523,-73.99827,Private room,107,1,25,2019-05-27,3.52,30,169 +30212514,Manhattan West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75506,-73.99803,Private room,199,1,7,2019-02-03,0.95,30,166 +30212526,Rustic and Artsy,37621814,Stacy,Brooklyn,South Slope,40.66493,-73.98136,Entire home/apt,125,1,27,2019-07-07,3.82,1,18 +30212741,New Kitchen&Bath : 5min ➡︎ Subway 20min ➡︎ TimeSQ,19303369,Hiroki,Queens,Jackson Heights,40.75074,-73.89339,Private room,43,30,1,2019-05-01,0.43,37,1 +30213232,30min➡︎TimesSQ 3min➡︎Subway New New New Building,204704622,Momoyo,Queens,Elmhurst,40.73925,-73.87745,Private room,35,29,2,2019-04-24,0.38,7,1 +30213410,30min➡︎LGA New&Clean Apt with Cozy Terrace Space,204704622,Momoyo,Queens,Elmhurst,40.73885,-73.87553,Private room,33,29,2,2019-06-15,0.71,7,1 +30215130,Large Newly Renovated 1 Bedroom Apartment,27245607,Sidney,Manhattan,West Village,40.73331,-74.00502,Entire home/apt,165,1,2,2019-03-11,0.32,1,0 +30218133,The Exclusive Studio Manhattan NYC,13133052,Bruno,Manhattan,Midtown,40.74749,-73.9869,Entire home/apt,182,3,16,2019-07-01,2.31,1,301 +30219534,The Cozy Studio Midtown Manhattan,226958612,Maria,Manhattan,Midtown,40.74741,-73.98732,Entire home/apt,227,3,16,2019-06-30,2.44,1,321 +30223426,Clean Room near M & R train. Close to mall & LGA,137358866,Kazuya,Queens,Elmhurst,40.73477,-73.87858,Private room,41,30,2,2019-05-28,0.76,103,268 +30224906,Luminous one bedroom in the heart of east village,2271676,Gautier,Manhattan,East Village,40.72566,-73.985,Entire home/apt,292,2,0,,,1,0 +30224962,Designer studio in the heart of East Village,41827902,Prangchat,Manhattan,East Village,40.72853,-73.98762,Private room,115,2,6,2019-04-09,0.87,1,23 +30225205,Relax De Dios,180311428,Every,Bronx,Allerton,40.86757,-73.8649,Private room,60,2,1,2019-01-01,0.16,1,363 +30225291,The Lover´s Apartment in Midtown Manhattan,226979522,Alexia,Manhattan,Midtown,40.74779,-73.98859,Entire home/apt,135,4,9,2019-06-21,1.46,1,314 +30226474,Jackie Kennedy's Nook,86973566,Karina,Bronx,City Island,40.85056,-73.78829,Private room,65,3,2,2018-12-09,0.27,1,89 +30226855,Upper East side cozy room,226927431,Tina,Manhattan,Upper East Side,40.76734,-73.95233,Private room,100,4,28,2019-07-03,3.80,2,40 +30226880,Big room near Central Park,206648175,Bella,Manhattan,East Harlem,40.78535,-73.94268,Private room,99,2,12,2019-06-12,1.64,1,176 +30227054,Bright and Sunny Luxury Modern Midtown Apartment,50240612,Kavya,Manhattan,Midtown,40.74903,-73.98528,Entire home/apt,375,1,7,2019-07-02,1.10,1,0 +30227502,COZY ONE BEDROOM APARTMENT IN MIDTOWN EAST,227007194,Ele,Manhattan,Midtown,40.75339,-73.96765,Entire home/apt,250,1,1,2018-11-24,0.13,1,64 +30227667,"Lovely studio next to Penn Station ,",8073725,Ronni,Manhattan,Chelsea,40.74875,-73.99697,Entire home/apt,175,1,24,2019-06-25,3.17,1,365 +30227942,"Private Room, Bath & Entry, King Bed - NYC",2156741,Renu,Queens,Forest Hills,40.73622,-73.8466,Entire home/apt,90,2,37,2019-07-05,5.05,1,21 +30229400,Upper East Side Sofa Bed (Shared space),227020247,Esteban,Manhattan,Upper East Side,40.77112,-73.95652,Shared room,49,2,17,2019-06-03,2.31,1,39 +30229464,Cozy Room close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68811,-73.95627,Private room,65,2,18,2019-06-03,2.48,4,343 +30229561,HARLEM CLEAN & COMFY SPACE,227021565,Alexander,Manhattan,Harlem,40.82669,-73.93832,Private room,44,1,15,2019-06-20,2.38,1,45 +30229776,Dandy Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95614,Private room,65,2,9,2019-04-29,1.29,4,311 +30229901,Enjoyable Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68976,-73.95639,Private room,65,2,13,2019-06-07,2.15,4,321 +30229988,HOLIDAY SEASON IN MIDTOWN NY LARGE & SUNNY STUDIO,73839962,Raphael,Manhattan,Midtown,40.75421,-73.96834,Entire home/apt,246,3,1,2019-01-02,0.16,1,365 +30230938,Modern looking private room in Brooklyn's heart,48692009,Luc,Brooklyn,Flatbush,40.64627,-73.95396,Private room,50,1,0,,,1,0 +30231026,"Hell’s kitchen studio, Time Square/Javitz center",86171061,Abraham,Manhattan,Hell's Kitchen,40.75811,-73.99527,Entire home/apt,300,2,5,2019-06-04,0.80,1,0 +30231478,Big apartment by Prospect Park 15 min to Manhattan,4982459,Mariana,Brooklyn,Flatbush,40.65333,-73.96552,Entire home/apt,350,3,0,,,3,0 +30231630,"15 Min to Manhattan, 10 Min to LGA - Cozy Home",227037845,Mustak And Farzana,Queens,Maspeth,40.7385,-73.9065,Entire home/apt,99,1,43,2019-07-04,5.73,1,231 +30231632,Lower East Side Private Bedroom,72614493,Gino,Manhattan,Lower East Side,40.71246,-73.99069,Private room,355,2,10,2019-06-16,2.34,1,75 +30231655,Cozy 2 bedroom apartment (15 min from Manhattan),215919088,Vincent,Brooklyn,Williamsburg,40.712,-73.95397,Entire home/apt,120,3,2,2019-05-29,0.32,1,0 +30231880,West Village/Greenwich Village Room With A View,2647893,Deedee,Manhattan,Greenwich Village,40.73138,-73.99976,Private room,125,10,0,,,1,347 +30232126,3 BEDROOMS/2 BATHS ENTIRE APARTMENT 10 MINS to JFK,107915864,Mina,Queens,Howard Beach,40.66682,-73.85161,Entire home/apt,130,1,0,,,4,285 +30232726,Private Room 15 minutes away to Central Park,154843406,Eugene,Manhattan,Harlem,40.83001,-73.94925,Private room,69,3,11,2019-06-25,1.45,2,167 +30232758,Clean & Spacious Duplex Bushwick Gem (w. Backyard),6004082,LeAnne And Keith,Brooklyn,Bushwick,40.69344,-73.92245,Entire home/apt,175,5,20,2019-07-02,2.84,1,12 +30233548,"Relaxing, Riverbank Park, West Harlem",45835291,Shareef,Manhattan,Harlem,40.82206,-73.95573,Private room,50,7,35,2019-06-27,4.73,6,11 +30234593,Spice Island Hotspot two,224042160,Pettrina,Brooklyn,East Flatbush,40.65236,-73.94965,Private room,38,2,9,2019-07-01,1.58,3,357 +30235085,A taste of Brooklyn,227063506,Gabriel,Brooklyn,Sunset Park,40.6475,-74.00786,Entire home/apt,64,5,8,2019-07-01,1.22,1,0 +30235118,*Fresh Budget Room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68176,-73.91435,Private room,40,2,6,2019-05-10,1.67,10,363 +30235273,*Easy check in Budget Room!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68197,-73.91235,Private room,40,2,11,2019-07-04,3.17,10,317 +30235341,*Ideal room for travelers with a budget!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.6818,-73.9139,Private room,55,2,5,2019-06-02,1.70,10,326 +30235404,*Delightful budget room for travelers!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68105,-73.91256,Private room,40,2,7,2019-07-05,2.69,10,353 +30235482,*Groovy Budget room for the traveler!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68052,-73.91216,Private room,45,2,5,2019-07-05,1.36,10,362 +30235527,*Hospitable room for the traveler!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68249,-73.91276,Private room,50,3,3,2019-05-05,0.73,10,333 +30236202,BEST Bushwick Luxury Apt. 15-minutes to Manhattan,8998154,Gordon,Brooklyn,Bushwick,40.69347,-73.92448,Entire home/apt,99,2,12,2019-06-15,1.71,2,46 +30243242,Bedstuy Pad with Luxury and artistic touch!,133687324,Oto,Brooklyn,Bedford-Stuyvesant,40.6932,-73.94897,Entire home/apt,250,5,4,2019-01-18,0.55,1,0 +30244166,Gorgeous Midtown East Apt. Open Concept 1 Bedroom,225429345,Aldo,Manhattan,Midtown,40.75248,-73.97017,Entire home/apt,200,4,8,2019-05-25,1.10,1,363 +30246118,Amazing apt in Brooklyn close to Prospect Park A,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66166,-73.94084,Private room,70,1,19,2019-06-30,2.57,5,199 +30246323,Private cozy room near time square,215944788,Kay,Manhattan,Hell's Kitchen,40.75844,-73.98965,Private room,200,2,13,2019-06-06,1.82,3,224 +30246807,Stay into heart of Brooklyn close Prospect Park B,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.94126,Private room,74,1,20,2019-06-23,2.83,5,125 +30246815,Sunny Apartment in Crown Heights,1850477,Michela,Brooklyn,Crown Heights,40.67728,-73.94536,Entire home/apt,120,3,0,,,2,0 +30247044,Great Room with Amazing View - 15 minutes to city,326465,Joshua,Brooklyn,Greenpoint,40.7247,-73.95378,Private room,88,7,1,2018-12-23,0.15,1,0 +30247556,Homey Apt - 5min walk to L Train + Free Cleaning!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70115,-73.91106,Private room,37,30,0,,,9,29 +30247719,Room into heart of Brooklyn close Prospect Park D,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.94135,Private room,70,1,12,2019-06-30,1.86,5,119 +30248002,Modern apt Brooklyn's heart close Prospect Park C,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66191,-73.94137,Private room,70,1,7,2019-06-22,0.96,5,158 +30248715,Cozy Upper East Side studio,227152926,Elba,Manhattan,Upper East Side,40.76732,-73.95179,Entire home/apt,150,1,4,2019-06-05,0.59,1,49 +30249168,UWS Lofted Studio just off Central Park,27126531,Bronwyn,Manhattan,Upper West Side,40.77642,-73.97987,Entire home/apt,150,3,3,2019-01-02,0.42,1,0 +30249944,Corner-Unit Bedroom in Sun-filled Bushwick loft,149301266,Sophie,Brooklyn,Bushwick,40.70897,-73.92198,Private room,60,1,1,2018-12-07,0.14,1,0 +30250766,"Staten Island - Free Wifi, Parking Space, Near NYC",225160295,Yun,Staten Island,Rosebank,40.61438,-74.0664,Entire home/apt,138,1,51,2019-07-02,7.18,1,291 +30251543,Sunny floor-to-ceiling windows apartment in UES,3356798,Makedonka,Manhattan,Upper East Side,40.78139,-73.94678,Entire home/apt,150,30,1,2018-12-12,0.14,1,146 +30251760,Private bedroom in Manhattan close to subway,29688249,Habibi,Manhattan,Harlem,40.82582,-73.94276,Private room,82,1,6,2019-06-23,1.94,1,180 +30252034,A neat bedroom in a cozy 3-bedroom apartment,227179489,Ester,Manhattan,Roosevelt Island,40.76127,-73.95034,Private room,90,1,46,2019-07-01,6.30,1,27 +30252158,Temple of DreamZzz,227165163,Glory,Brooklyn,Kensington,40.64249,-73.97559,Private room,56,3,1,2018-12-24,0.15,1,47 +30252251,Private Luxury Suite in the Heart of Brooklyn,23501405,Emily,Brooklyn,Downtown Brooklyn,40.69051,-73.98398,Private room,249,1,20,2019-06-26,2.82,1,39 +30252654,Bowery bedroom w/ private bathroom great location,9370327,Sandra,Manhattan,Lower East Side,40.72097,-73.99274,Private room,120,3,6,2019-01-07,0.85,1,0 +30253236,SedaOn2 Dance Studio,140862407,Angelie,Bronx,Westchester Square,40.84378,-73.84469,Entire home/apt,670,1,2,2019-03-31,0.34,1,178 +30253910,Decent basement room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.71146,-73.95632,Private room,55,1,27,2019-06-20,3.65,3,0 +30254229,"NEW! Spacious, Bright, Fam-Friendly BK Townhouse!",3624487,Christina,Brooklyn,Crown Heights,40.67339,-73.91415,Entire home/apt,149,3,31,2019-07-07,4.63,1,224 +30254510,Charming Two bedroom apartment in Greenpoint,4363775,O.,Brooklyn,Greenpoint,40.7319,-73.95739,Entire home/apt,114,31,0,,,3,219 +30254869,Studio within an Apt Private bathroom and entrance,63959641,Alejandro,Queens,Jackson Heights,40.75149,-73.87872,Private room,100,2,16,2019-07-07,2.55,1,134 +30255002,Large 1 BR apt in the heart of Flatiron (NYC),177058197,Joe,Manhattan,Flatiron District,40.73949,-73.98552,Entire home/apt,210,2,6,2019-07-07,1.58,1,9 +30255064,Apartment-Therapy-Featured Greenpoint Flat,2186425,Nicole,Brooklyn,Greenpoint,40.72457,-73.95435,Entire home/apt,100,60,1,2019-05-31,0.77,1,220 +30255425,Tiny Magic Room in Historic Park Slope Brownstone,24878388,Johanna,Brooklyn,Park Slope,40.67947,-73.97806,Private room,45,10,1,2019-01-01,0.16,2,250 +30255625,Lovely private bedroom in heart of Williamsburg,7340654,Jessica,Brooklyn,Williamsburg,40.71174,-73.94767,Private room,45,1,7,2018-12-22,0.97,1,0 +30256311,The Hampton,129162333,Mo,Queens,Howard Beach,40.66146,-73.85638,Entire home/apt,207,1,13,2019-06-23,1.84,1,346 +30256944,CozyHome Close2 LGA US OpenTennis 30min2 Manhattan,227219174,Jeba/Ashraf,Queens,East Elmhurst,40.76689,-73.87661,Entire home/apt,99,1,14,2019-07-05,7.12,1,138 +30256952,Warm little building 温馨小筑 따뜻한 작은 건물 G,92706260,Kane,Queens,Flushing,40.73888,-73.8206,Private room,45,1,33,2019-07-01,4.48,5,80 +30257236,Crown Heights Wellness Gem,3642820,Jesal,Brooklyn,Crown Heights,40.67672,-73.95839,Private room,80,2,11,2019-07-02,2.50,1,28 +30257515,Habitación privada en Bushwick.,115193518,Fede,Brooklyn,Bushwick,40.70508,-73.92419,Private room,42,7,0,,,3,0 +30258358,"Manhattan-LoVe, Upper West Side, Studio.",227165735,Sara,Manhattan,Upper West Side,40.77883,-73.9825,Shared room,139,3,0,,,2,88 +30262760,Close to transportation sleep share,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67797,-73.90924,Shared room,35,1,11,2019-06-10,1.51,17,89 +30264393,Hendrix Upstairs Oasis Rm #3,105878573,Tonisha,Brooklyn,East New York,40.66522,-73.88686,Private room,50,1,20,2019-05-31,2.82,5,62 +30264512,Hendrix Upstairs Oasis Rm #4,105878573,Tonisha,Brooklyn,East New York,40.66547,-73.8891,Private room,40,1,9,2019-06-21,2.11,5,64 +30264608,A slice of luxury In Cozy Chelsea loft!,226070943,Asia,Manhattan,Chelsea,40.74277,-74.00204,Entire home/apt,315,2,15,2019-07-05,2.09,1,365 +30264903,Bohemian Room for Rent,2346935,Dolores,Brooklyn,Crown Heights,40.67549,-73.94392,Private room,90,7,0,,,1,0 +30265098,Private Room in Brooklyn Near Subway,3445172,Maha,Brooklyn,Prospect-Lefferts Gardens,40.66383,-73.94907,Private room,50,12,2,2019-05-15,0.32,1,0 +30265397,Warm and cozy room,53502678,Alessandro,Queens,Sunnyside,40.7393,-73.9256,Private room,85,7,0,,,1,179 +30266212,Pvt Room in Charming Pet-Friendly Apt in Bedstuy.,42474896,Eric,Brooklyn,Bedford-Stuyvesant,40.68245,-73.95223,Private room,89,1,3,2019-04-21,0.45,1,48 +30266235,2nd floor of 2-family house available for December,227310832,Carol,Queens,Astoria,40.76789,-73.93512,Entire home/apt,1500,7,0,,,1,365 +30267337,"Stunning, modern apartment in Greenwich Village",196705969,Adam & Kath,Manhattan,Greenwich Village,40.72866,-74.0013,Entire home/apt,258,2,4,2019-05-28,0.61,1,10 +30268281,Sunny Lofted space with private bath,18576070,Lauren,Brooklyn,Bushwick,40.69576,-73.93254,Private room,150,30,2,2018-12-29,0.27,1,143 +30268592,Furnished queens 1 bedroom apartment,217275948,Mujibun,Queens,Long Island City,40.75926,-73.94006,Entire home/apt,120,1,1,2019-01-02,0.16,1,0 +30268825,Amazing Studio In Best Part of NYC,227309215,Jamie,Manhattan,Lower East Side,40.72129,-73.99271,Entire home/apt,250,5,1,2019-04-25,0.40,1,87 +30269171,✺ NEW Fully Renovated ✺ Harlem Garden Apartment,197013608,Madeline,Manhattan,East Harlem,40.79853,-73.93327,Entire home/apt,75,30,1,2019-05-19,0.59,1,0 +30269789,private room in apt near Fort Tryon Park.,87897420,Anne,Manhattan,Inwood,40.86171,-73.92945,Private room,65,4,1,2019-01-01,0.16,1,13 +30269942,"Cozy, Light and Calming East Village apartment",48666840,Ryan,Manhattan,East Village,40.72809,-73.98028,Entire home/apt,93,7,0,,,1,0 +30270320,Musician/nerdy paradise!,227344500,Mandy & Jerry,Brooklyn,Bushwick,40.70268,-73.93185,Private room,40,1,24,2019-06-21,3.46,1,20 +30272428,Brooklyn Jade,126176275,Audrey,Brooklyn,East Flatbush,40.63685,-73.93094,Private room,50,4,12,2019-06-04,1.78,4,62 +30272473,Glamorous studio in Chelsea,126691775,Jack,Manhattan,Chelsea,40.74941,-73.99589,Entire home/apt,139,1,20,2019-07-02,2.74,1,355 +30272649,Monthly: Gorgeous 3 Story Brownstone,16099130,Jane,Manhattan,East Harlem,40.80855,-73.93841,Entire home/apt,232,23,1,2019-01-06,0.16,1,0 +30273223,COZY GUEST ROOM,204906313,Iryna,Brooklyn,Sheepshead Bay,40.58889,-73.94797,Private room,32,1,50,2019-07-06,6.67,3,83 +30273310,Farm house style Bay Ridge (private D),31760835,Fon,Brooklyn,Bay Ridge,40.63574,-74.03102,Private room,85,365,1,2018-12-15,0.14,4,189 +30273352,Spacious Lovely 1B1B in UP Manhattan 4Min to Train,128293264,Sizhu,Manhattan,Washington Heights,40.83956,-73.94102,Entire home/apt,135,1,13,2019-06-21,2.00,1,0 +30274568,Cleo’s Royale II,157141199,Adeola,Manhattan,Inwood,40.86184,-73.92757,Private room,65,5,2,2019-04-28,0.32,2,365 +30275273,Zenful and artistic apartment home,227385012,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95047,Private room,34,1,3,2019-01-01,0.43,1,0 +30279712,Cozy 1 bedroom apt in Brooklyn,225367154,Maurice,Brooklyn,East Flatbush,40.65265,-73.91233,Entire home/apt,91,2,13,2019-06-30,2.52,1,305 +30281771,Charming duplex with backyard in Carroll Gardens,13291840,Agathe,Brooklyn,Carroll Gardens,40.67992,-73.99282,Entire home/apt,100,4,2,2019-04-26,0.31,1,35 +30282074,Classy NY charm place with sunlight (so rare),2449193,Alla,Manhattan,Hell's Kitchen,40.76052,-73.99241,Private room,109,2,7,2019-06-02,0.94,1,10 +30283630,Alexander's Lofted Bedroom with Private Entrance,103615271,Alexander,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93536,Private room,50,21,1,2019-06-04,0.86,1,10 +30283940,Charming Studio in Manhattan - Great location!,128721938,Livia,Manhattan,Kips Bay,40.7425,-73.97704,Entire home/apt,250,3,1,2019-01-01,0.16,1,0 +30284324,Central park cheap sofa bed,214135354,Min,Manhattan,Upper East Side,40.77754,-73.95114,Shared room,55,1,66,2019-07-01,9.12,2,309 +30285056,"LOVELY, SPACIOUS FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86328,-73.92184,Private room,50,3,0,,,3,96 +30285558,"Cozy & convenient studio, midtown west Manhattan!!",82208124,Yang,Manhattan,Upper West Side,40.77497,-73.98788,Entire home/apt,137,3,8,2019-03-21,1.21,2,0 +30285772,"Sunny & Spacious, Studio-Like Ridgewood Apartment",5937189,Leigh,Queens,Ridgewood,40.70247,-73.90474,Private room,45,2,8,2019-06-26,1.08,1,2 +30286108,"Bright, Beautiful Bed-Stuy Brooklyn 2 Bedroom",36535955,Jillian,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95697,Entire home/apt,139,2,2,2019-04-21,0.31,1,0 +30286646,Uptown Manhattan 2BR Designer Loft w/ River Views,401517,Mc,Manhattan,Washington Heights,40.85079,-73.94108,Entire home/apt,279,5,0,,,1,55 +30286771,Uptown Manhattan Private Room,19312868,Carla,Manhattan,Washington Heights,40.83324,-73.94072,Private room,70,1,0,,,1,0 +30287525,Sweet Sugar Hill Studio,65653322,Heavenly,Manhattan,Harlem,40.82521,-73.94037,Entire home/apt,97,2,2,2018-12-09,0.27,1,0 +30288068,A cozy one-bedroom in the heart of Harlem,1705112,Simon,Manhattan,Harlem,40.81486,-73.93941,Entire home/apt,70,1,1,2019-06-24,1,1,6 +30288537,The most expensive neighborhood.,52424735,Eric,Manhattan,West Village,40.73807,-74.00468,Private room,80,4,10,2019-06-30,1.43,1,26 +30289305,New York Getaway Beautiful Room,212263525,SamariSankofa,Manhattan,Harlem,40.81051,-73.94014,Private room,100,1,8,2019-06-03,1.26,3,253 +30289333,"Sunny, spacious, 1-bedroom apartment in UES, NYC",24717090,Shehrezad,Manhattan,Upper East Side,40.77262,-73.9501,Entire home/apt,220,4,2,2019-01-09,0.28,1,0 +30290307,Beautiful Central 2 Bedroom in Soho!,227498924,Alex,Manhattan,SoHo,40.72607,-74.00166,Entire home/apt,299,4,2,2019-05-18,0.32,1,156 +30291283,"COMPLETELY PRIVATE ""SMART"" APT IN EAST VILLAGE",2334794,Eden,Manhattan,East Village,40.72861,-73.97734,Entire home/apt,160,1,4,2019-06-04,0.55,1,41 +30291704,Beautiful Apartment in Staten Island,207856540,Meir,Staten Island,New Springville,40.58952,-74.15587,Entire home/apt,119,2,17,2019-07-05,3.13,1,175 +30292232,"1 BR Apartment in Greenpoint, Brooklyn w/ backyard",8120005,Megan,Brooklyn,Greenpoint,40.72447,-73.94458,Entire home/apt,70,30,2,2019-01-21,0.33,1,0 +30292454,Cozy Sunlit Spacious Bedroom (PURPLE ROOM),119051571,Sou,Brooklyn,Clinton Hill,40.69319,-73.96093,Private room,41,1,1,2019-05-05,0.45,2,52 +30293230,"The best location in Williamsburg, private room!",227520154,Lumila,Brooklyn,Williamsburg,40.70916,-73.96252,Private room,70,4,13,2019-06-21,1.85,2,280 +30293266,It's a Fine Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67727,-73.90663,Private room,48,1,63,2019-07-03,8.51,5,231 +30293282,It's a Delightful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67627,-73.90795,Private room,48,1,57,2019-07-04,7.57,5,199 +30293703,"LUXURIOUS 5 bedroom, 4.5 bath home",36332698,Lisa,Manhattan,Upper West Side,40.79009,-73.97544,Entire home/apt,2999,1,0,,,1,0 +30293824,Upper West Side Large Two Bedroom,2079332,Linnette,Manhattan,Upper West Side,40.79855,-73.9717,Entire home/apt,75,1,16,2019-05-04,2.13,1,5 +30294144,It's a Stunning Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Crown Heights,40.67612,-73.90813,Private room,48,1,21,2019-07-04,3.04,5,252 +30294243,Sunny Room next to L train,1296938,Kristina,Brooklyn,Williamsburg,40.71069,-73.94106,Private room,100,5,8,2019-06-15,1.21,1,0 +30295136,"Union Square, East Village Studio",109357781,Kayleigh,Manhattan,East Village,40.73237,-73.98495,Entire home/apt,225,7,1,2019-01-01,0.16,1,153 +30295374,"SUNNY, Cozy Private Room in Bushwick!",53215338,Catherine,Brooklyn,Bushwick,40.6985,-73.93578,Private room,80,1,1,2019-01-01,0.16,1,0 +30295700,Cozy Room 20 min from Manhattan in brand new unit,23959538,Julian,Queens,Ridgewood,40.70268,-73.90824,Private room,36,1,0,,,1,0 +30295881,Cozy Chinatown Apartment,31358380,Keith,Manhattan,Chinatown,40.717,-73.99717,Private room,100,3,1,2018-11-26,0.13,1,88 +30295927,Bedroom in Massive Loft Apartment,51340124,Nikki,Manhattan,Chelsea,40.73785,-73.99214,Private room,350,2,0,,,2,0 +30296033,Pretty private bedroom in shared apt near Columbia,66462141,Deena,Manhattan,Harlem,40.80446,-73.95567,Private room,47,5,3,2019-05-18,0.42,1,0 +30296168,Cozy room in sunny apartment across from park,3567433,Wesley,Brooklyn,Bushwick,40.69118,-73.9083,Private room,35,2,34,2019-07-01,4.95,2,112 +30296204,Brick and Beam Experience in North Williamsburg,1005966,Ryan,Brooklyn,Williamsburg,40.7198,-73.95813,Entire home/apt,300,3,7,2019-05-20,1.11,1,168 +30296364,Newly renovated place for students and young pro’s,227548199,Abi,Brooklyn,Midwood,40.62375,-73.96286,Shared room,50,1,0,,,1,85 +30296768,Sunny and plant-filled room in Crown Heights!,73524680,Shannon,Brooklyn,Crown Heights,40.6772,-73.94442,Private room,60,2,18,2019-05-25,3.38,1,0 +30297591,Cosy sun filled bedroom with a private bathroom,10576896,Kati,Manhattan,Harlem,40.79939,-73.95218,Private room,85,3,0,,,1,6 +30297696,Cozy and comfortable studio in Clinton Hill.,1883287,Max,Brooklyn,Clinton Hill,40.6848,-73.96614,Entire home/apt,125,3,2,2018-11-26,0.27,1,0 +30299604,A Luxury Studio in the Heart of Greenwich Village!,227569206,Suzy,Manhattan,Tribeca,40.71478,-74.01161,Entire home/apt,280,3,4,2019-05-25,0.55,1,328 +30307336,Spacious & Luxurious Room near LGA and Manhattan,137358866,Kazuya,Queens,Woodside,40.74458,-73.90752,Private room,50,30,0,,,103,235 +30307691,Cute One Bedroom in East Village/Lower Manhattan,178666589,Victoria,Manhattan,East Village,40.72445,-73.98922,Private room,195,1,12,2019-06-30,1.61,1,85 +30308289,Spacious Studio Home in Landmark Townhouse,125508339,Robert,Manhattan,Upper West Side,40.80177,-73.9693,Entire home/apt,225,3,15,2019-06-22,2.39,1,25 +30310012,"Cozy, comfortable room in historic district",66294381,Maria,Manhattan,Morningside Heights,40.80385,-73.96305,Private room,45,10,0,,,1,0 +30310098,NYC Hamilton Heights Apartment,114462596,Morgan,Manhattan,Harlem,40.82251,-73.9512,Private room,112,1,5,2018-12-30,0.67,1,0 +30310318,Private cozy spacious bedroom Queens NY,144714634,Char,Queens,Flushing,40.73872,-73.82863,Private room,29,1,49,2019-07-07,7.14,1,168 +30310672,"Jacuzzi 2-BR by Central Park/Museum Mile, Harlem",55817559,Christienne,Manhattan,East Harlem,40.78748,-73.94779,Private room,399,6,15,2019-06-24,2.14,1,47 +30310984,Charming One Bedroom Garden Apt Close to Subway,782801,Cassandra,Brooklyn,Bedford-Stuyvesant,40.68677,-73.95522,Entire home/apt,125,1,9,2019-06-15,1.36,1,192 +30311099,PRIVATE ROOM IN COZY SCANDINAVIAN / BROOKLYN HOME,220734035,Selma,Brooklyn,Williamsburg,40.70209,-73.94223,Private room,60,3,0,,,1,0 +30311572,Harlem Oasis,57964033,Holly,Manhattan,Harlem,40.81403,-73.94957,Entire home/apt,200,1,7,2019-05-20,0.99,1,158 +30312506,The best NYC has to offer,128549927,Stephen,Manhattan,Hell's Kitchen,40.75907,-73.99558,Entire home/apt,265,1,18,2019-06-30,2.55,1,46 +30312515,"Private, spacious 1bd/1bth Manhattan Apartment",227648437,Carson,Manhattan,Washington Heights,40.84556,-73.94025,Entire home/apt,150,6,1,2019-01-03,0.16,1,258 +30312525,Private bedroom in the heart of Harlem,6002231,Henrietta,Manhattan,Harlem,40.81875,-73.93691,Private room,59,90,0,,,1,89 +30312807,Quaint 1 Bedroom in Beautiful Astoria Queens,3390942,Zahi,Queens,Ditmars Steinway,40.77556,-73.90866,Private room,60,3,6,2019-06-18,0.84,1,43 +30313152,Plush Midtown West NYC 2BR With Stunning Views!,163251048,Jen,Manhattan,Hell's Kitchen,40.76189,-73.99955,Entire home/apt,499,30,0,,,8,365 +30313661,Deluxe Midwest NYC 2BR Apt With Super Amenities!,163251048,Jen,Manhattan,Hell's Kitchen,40.76211,-73.99791,Entire home/apt,499,30,0,,,8,185 +30313903,Sunny Eclectic Apt Near the Park & Brooklyn Museum,11815674,Christina,Brooklyn,Crown Heights,40.66661,-73.95301,Entire home/apt,125,3,4,2019-06-30,0.63,1,0 +30313929,"Zen bedroom in Williamsburg, Brooklyn",173282483,Catherine,Brooklyn,Williamsburg,40.71679,-73.95644,Private room,150,1,4,2019-06-30,1.18,1,89 +30314104,Magnificent Midtown West 2BR Apt + Gym and Spa!,163251048,Jen,Manhattan,Hell's Kitchen,40.76093,-73.99924,Entire home/apt,499,30,0,,,8,333 +30314337,Magnificent NYC 1BR Apt + Superb Amenities!,163251048,Jen,Manhattan,Hell's Kitchen,40.76214,-73.99899,Entire home/apt,399,30,0,,,8,129 +30314623,Beautiful Midtown West 1BR Apt + Gym & Sky Deck!,163251048,Jen,Manhattan,Hell's Kitchen,40.76171,-73.99793,Entire home/apt,399,30,0,,,8,129 +30314761,Spacious & cozy room/30 min to Manhattan by train,129158371,Sofiya,Brooklyn,Midwood,40.6188,-73.95417,Private room,54,2,3,2019-06-01,0.48,1,64 +30314819,Brooklyn Finest Air Bnb,224699779,Michael,Brooklyn,Bushwick,40.69097,-73.92166,Private room,120,7,0,,,1,365 +30314964,Modern NYC 2 Bedroom apt. Close to everything 34a,22641060,Wayne,Bronx,Williamsbridge,40.87821,-73.86354,Entire home/apt,85,30,0,,,1,365 +30315087,Magnificent NYC 1 Bedroom Apt on the River!!,163251048,Jen,Manhattan,Hell's Kitchen,40.76086,-73.99964,Entire home/apt,399,30,0,,,8,186 +30315498,Spacious Brownstone Home in Prospect Heights,5412248,Sarah Beyahte,Brooklyn,Prospect Heights,40.6753,-73.96768,Entire home/apt,95,30,1,2018-12-06,0.14,1,219 +30315829,"Cozy Studio Apartment in Greenpoint, Brooklyn",42661839,Justin,Brooklyn,Greenpoint,40.73468,-73.95418,Entire home/apt,149,5,2,2019-06-15,0.32,1,0 +30315979,Easy charm in Fort Greene,1364105,Jenny,Brooklyn,Fort Greene,40.69091,-73.97202,Private room,119,2,28,2019-06-29,3.94,1,3 +30316546,"Nice & clean room, two blocks from Times Square",227671939,Ivan,Manhattan,Hell's Kitchen,40.76136,-73.99205,Private room,90,4,26,2019-07-01,4.29,1,278 +30316570,★Modern 2BDR WITH BIG PATIO in Upper East!★,171452798,Nir,Manhattan,Upper East Side,40.77655,-73.94787,Entire home/apt,264,1,49,2019-07-01,6.87,1,296 +30319473,Amazing Convenient Cozy Room (girl preferred),47227131,Xiao,Brooklyn,Sunset Park,40.64456,-74.00839,Private room,28,10,1,2019-01-03,0.16,1,0 +30319831,Private bedroom in a loft apartment (Williamsburg),115051556,Jean Pierre,Brooklyn,Williamsburg,40.71217,-73.94396,Private room,80,1,33,2019-07-05,4.97,1,151 +30320090,"SPACIOUS, PRIVATE ROOM IN MIDTOWN, PARK AVENUE",209758777,Isabel,Manhattan,Midtown,40.74475,-73.98337,Private room,145,1,51,2019-06-23,7.39,2,29 +30320921,Romantic getaway in the heart of NYC,227647873,Samanta,Queens,Astoria,40.76194,-73.91255,Private room,89,2,15,2019-03-08,2.07,3,13 +30321082,Contemporary 1BR in Brooklyn by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70855,-73.96782,Entire home/apt,120,29,1,2019-05-31,0.77,7,0 +30321542,Spacious Duplex 3 BR Apt in Bushwick/Ridgewood,8441265,Sara,Queens,Ridgewood,40.70463,-73.91183,Entire home/apt,190,3,1,2019-01-01,0.16,2,0 +30321732,NYC/UES Beautiful and Sunny one-bedroom apartment,227705254,Shula,Manhattan,Upper East Side,40.76935,-73.9534,Entire home/apt,275,4,5,2019-06-26,0.70,1,77 +30322497,studio for your own,137665954,Yibin,Manhattan,West Village,40.73751,-74.00231,Entire home/apt,168,3,3,2018-12-17,0.44,1,0 +30323677,Spacious Studio in the Heart of West Village,50014274,Luke,Manhattan,West Village,40.73598,-73.99903,Entire home/apt,200,2,2,2019-06-01,0.27,1,0 +30323806,Hidden gem... steps from Times Square,90401194,Joshua,Manhattan,Hell's Kitchen,40.76168,-73.98969,Entire home/apt,180,3,20,2019-06-25,2.87,1,79 +30324051,"3 bedrooms, 2 bathrooms, huge open space!",91427536,Yoav,Brooklyn,Bushwick,40.69684,-73.92241,Entire home/apt,100,2,1,2019-01-01,0.16,2,5 +30324225,"Cozy, two-bedroom East Harlem apartment",28613272,Roosbelinda,Manhattan,East Harlem,40.79949,-73.93531,Entire home/apt,149,7,1,2018-12-30,0.16,1,3 +30324273,3 bed 6 guest luxury Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.65882,-73.92947,Private room,200,31,0,,,3,365 +30325235,HUGE 1Br Converted Art Gallery Loft WILLIAMSBURG,92546730,Nick,Brooklyn,Williamsburg,40.70787,-73.94974,Entire home/apt,55,3,13,2019-07-02,1.83,1,0 +30325250,Charming South Harlem Hideaway with Garden,8630543,Olga,Manhattan,Harlem,40.80453,-73.95015,Entire home/apt,115,3,18,2019-07-05,2.60,2,255 +30325586,Nice and artsy apartment in East Village,26671786,Sherry,Manhattan,East Village,40.7233,-73.97882,Private room,79,1,4,2019-05-27,0.61,1,0 +30325604,1 BDRM avail in sunny apartment in Williamsburg,10860700,Sarah,Brooklyn,Williamsburg,40.71293,-73.94283,Private room,120,2,11,2019-06-21,1.76,2,117 +30325639,Cozy shared studio in a safe neighborhood,21495656,Ramy,Queens,Little Neck,40.76212,-73.71928,Shared room,32,3,1,2018-12-04,0.14,1,88 +30326645,Best Scenic Night View In Riverside DR NYC,198442706,Marii,Bronx,Edenwald,40.88229,-73.84295,Private room,80,1,0,,,1,365 +30326749,Spacious Neon Apartment Inspired by the Caribbean,1370324,Yeelen,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95632,Entire home/apt,100,3,2,2019-05-08,0.32,1,324 +30327469,Parisian Palace in Heart of Manhattan,224001464,Aleszea,Manhattan,Chelsea,40.73734,-73.99327,Entire home/apt,333,4,4,2019-05-29,1.41,1,80 +30330519,Spacious room near Columbia University,159142440,Chien-Ni,Manhattan,Upper West Side,40.80401,-73.96635,Private room,70,1,7,2019-06-05,1.02,1,0 +30333873,Accomplished private room next to Columbia Uni,126653377,Sergii,Manhattan,Harlem,40.80373,-73.95805,Private room,63,30,0,,,6,364 +30334838,Refined private room next to Columbia University,126653377,Sergii,Manhattan,Harlem,40.80384,-73.95754,Private room,63,30,1,2019-04-01,0.30,6,364 +30337531,Cozy Brooklyn 1 Bed,227801173,Drew,Brooklyn,Brooklyn Heights,40.69346,-73.99814,Entire home/apt,125,2,7,2019-06-17,1.09,1,47 +30338113,Wonderful and sunny 2 bedroom in Brooklyn,226833844,Ev,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94094,Entire home/apt,225,2,4,2019-01-02,0.62,1,0 +30339161,ONE BEDROOM KING SUITE - PRIME WILLIAMSBURG,198861577,Novo,Brooklyn,Williamsburg,40.72176,-73.95616,Private room,200,7,0,,,5,364 +30339947,New Flatiron King Bed Apartment,196479236,Ashley,Manhattan,Flatiron District,40.74154,-73.99283,Entire home/apt,210,1,2,2019-06-10,0.28,1,359 +30340057,"Cute and cozy room, 1 stop from Midtown Manhattan",196598648,Anuja,Queens,Long Island City,40.75853,-73.93227,Private room,50,3,5,2019-01-25,0.70,1,0 +30340086,"Peace of Mind, Harlem, Netflix",45835291,Shareef,Manhattan,Harlem,40.82388,-73.95527,Private room,40,8,29,2019-06-29,4.05,6,54 +30340089,Airy and Beautiful East Village 2BR Apt,224703803,Jed & Leah,Manhattan,East Village,40.72577,-73.98535,Entire home/apt,399,1,9,2019-05-27,1.49,1,319 +30340171,"**Newly Renovated, Cozy, Urban Oasis entire apt**",227818501,Jenna,Bronx,Williamsbridge,40.87684,-73.86389,Entire home/apt,120,2,13,2019-06-18,1.83,2,97 +30340538,"2 Bed, 2 Bath Flat In Trendy Nolita - Modern!",225616673,Harry & Morgan,Manhattan,Nolita,40.72113,-73.99595,Entire home/apt,418,1,16,2019-06-16,2.81,1,328 +30341514,Designer Apartment in NYC near Central Park,24407449,Elle,Manhattan,Upper West Side,40.79181,-73.96747,Entire home/apt,350,2,2,2019-05-20,0.76,1,60 +30343546,"Ridgewood/Bushwick Lovely, Clean and Inviting! A/C",1460313,Soraya,Queens,Ridgewood,40.69598,-73.89972,Private room,56,5,14,2019-07-01,2.20,2,35 +30344630,Upper East Side 1 Bedroom,5777779,Rachel,Manhattan,Upper East Side,40.77538,-73.94857,Entire home/apt,150,30,0,,,1,158 +30344912,Private 2B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75993,-73.99089,Private room,110,1,21,2019-06-23,3.18,12,256 +30344925,Modern Park Slope 1br right by Prospect Park,18609785,Ben,Brooklyn,South Slope,40.66557,-73.98044,Entire home/apt,155,3,9,2019-03-18,1.38,1,5 +30345024,Very cozy apartment in the heart of Ridgewood =),223191465,Kiryl,Queens,Ridgewood,40.70844,-73.90905,Entire home/apt,120,3,16,2019-06-23,2.32,2,60 +30346011,2 Bedroom Apartment in Heart of Chinatown,227691333,Gus,Manhattan,Lower East Side,40.71826,-73.99338,Entire home/apt,125,3,18,2019-06-19,2.77,1,20 +30346056,Historic Park Slope 2 bedroom cozy clean apt,17825521,Adriana,Brooklyn,South Slope,40.66533,-73.98212,Entire home/apt,134,5,5,2019-04-05,1.13,1,13 +30347034,Cute cozy home in south slope!!,208938947,Radha,Brooklyn,Sunset Park,40.66388,-73.99475,Private room,50,31,0,,,1,0 +30347099,"Cozy, Airy One Bedroom in Greenwich Village",147186603,Wesley,Manhattan,Greenwich Village,40.73004,-74.00128,Entire home/apt,350,3,1,2019-03-17,0.26,1,7 +30347708,Sonder | 180 Water | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70743,-74.00443,Entire home/apt,232,29,1,2019-05-21,0.60,327,159 +30347852,Huge room in Bushwick apt. 20 mins from Manhattan,40004714,Ruth,Brooklyn,Bushwick,40.69504,-73.93061,Private room,50,2,13,2019-06-23,1.83,2,11 +30347868,Private Room in the Upper East Side,6180828,Alina,Manhattan,Upper East Side,40.77409,-73.9519,Private room,95,5,10,2019-04-16,1.63,1,5 +30348506,1500 SQ FT Williamsburg Penthouse,198861577,Novo,Brooklyn,Williamsburg,40.72194,-73.95511,Private room,1600,1,0,,,5,0 +30348624,Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66272,-73.76849,Entire home/apt,89,1,88,2019-07-06,12.05,2,253 +30348636,"Quiet, serene Holiday getaway in the Bronx",20444114,Gregory,Bronx,Allerton,40.86698,-73.85178,Private room,35,2,21,2019-06-30,3.35,1,252 +30348644,"New York, prime location cozy 1bedroom unit!",142456326,Inna,Manhattan,Kips Bay,40.73857,-73.97972,Entire home/apt,180,1,5,2019-06-15,0.73,1,90 +30348712,"Huge, modern apt 20 mins from Manhattan JMZ metro",40004714,Ruth,Brooklyn,Bushwick,40.69657,-73.93274,Entire home/apt,190,2,0,,,2,11 +30348944,Spacious modern condo by Columbia University,2964135,Jessie,Manhattan,Harlem,40.80623,-73.95343,Entire home/apt,200,3,3,2019-05-23,0.98,1,0 +30348979,Huge studio on Central Park west top location,4431107,Ally,Manhattan,Upper West Side,40.7886,-73.96862,Entire home/apt,200,2,19,2019-06-27,2.66,3,0 +30349105,Entire studio Central Park west,4431107,Ally,Manhattan,West Village,40.73034,-74.01022,Entire home/apt,200,1,0,,,3,158 +30349243,Modern- and newly renovated Brooklyn apartment,10759819,Bo,Brooklyn,Crown Heights,40.6716,-73.95847,Entire home/apt,300,2,1,2019-01-03,0.16,1,364 +30349344,Roomy and Relaxing 3 Brooklyn Apartment,144687306,Nutrice,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.9516,Entire home/apt,150,3,26,2019-07-07,3.53,2,241 +30350359,Private Room in Brand New Greenpoint Apartment,108457539,Fola,Brooklyn,Greenpoint,40.72268,-73.94349,Private room,55,1,2,2018-12-10,0.27,1,0 +30351170,Top floor of an amazing duplex,213020,Robert,Manhattan,Upper West Side,40.79382,-73.96984,Private room,88,1,4,2019-03-21,0.78,3,7 +30351256,"HUGE ONE-BED, PROSPECT PARK, CAT LOVERS ONLY!!",1675112,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66106,-73.96189,Entire home/apt,79,5,2,2019-06-23,1.28,1,8 +30351642,Very bright and cosy bedroom.,44074020,Juliette,Manhattan,Harlem,40.81443,-73.95688,Private room,70,6,1,2018-12-29,0.16,1,13 +30352538,Spacious Garden Studio,51964207,Brooke,Brooklyn,Williamsburg,40.70946,-73.96567,Entire home/apt,140,3,7,2019-06-09,1.42,1,3 +30352717,Basic room in Williamsburg,45773187,Jakub,Brooklyn,Williamsburg,40.71038,-73.94779,Private room,49,7,0,,,1,0 +30352862,Comfy and Artsy Big Room in EAST VILLAGE,64934891,Scarlett,Manhattan,East Village,40.7219,-73.97819,Private room,70,3,0,,,1,0 +30353296,"Spacious room 2min walk to Subway M,R near Mall",218336964,Wei,Queens,Elmhurst,40.72977,-73.87171,Private room,40,2,12,2019-06-04,2.83,4,5 +30353302,Room close to La Guardia Airport,227905146,Gladys,Queens,East Elmhurst,40.76185,-73.87392,Shared room,16,1,10,2019-06-16,1.36,1,0 +30354041,"Affordable Room close to train, mall. With WIFI.",137358866,Kazuya,Queens,Elmhurst,40.74439,-73.87988,Private room,34,30,1,2019-06-10,1,103,273 +30354291,Cozy private bedroom with Great East River view,24593962,Sean,Manhattan,Upper East Side,40.78353,-73.94592,Private room,90,2,1,2018-12-05,0.14,1,0 +30354304,Private room in spacious BK community w/ parking,3285978,Nicole,Brooklyn,Bedford-Stuyvesant,40.69998,-73.94369,Private room,50,1,5,2019-01-13,0.71,2,0 +30355109,Shared male room on Manhattan next to river I,39528519,Max,Manhattan,Lower East Side,40.71147,-73.98714,Shared room,35,14,1,2018-12-31,0.16,28,320 +30355292,Shared male room of your dreams on Manhattan III,39528519,Max,Manhattan,Lower East Side,40.71046,-73.98839,Shared room,32,14,1,2019-01-26,0.18,28,341 +30355426,Amazing and cozy shared male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71025,-73.98703,Shared room,35,14,0,,,28,322 +30355532,1BR in Manhattan. Central Park at your doorstep!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94383,Entire home/apt,70,30,2,2019-04-29,0.36,103,219 +30355793,Unbelievable male room& best price on Manhattan II,39528519,Max,Manhattan,Lower East Side,40.70981,-73.98702,Shared room,35,14,8,2019-06-19,1.31,28,322 +30355933,Spacious and comfortable room,208136645,Andre,Brooklyn,East Flatbush,40.65267,-73.94257,Private room,45,2,1,2018-12-27,0.15,4,296 +30357870,Superhosted room close to station! Bed+sofa & WiFi,137358866,Kazuya,Queens,Jackson Heights,40.74887,-73.87949,Private room,33,30,0,,,103,0 +30358423,Cozy Room in Great APT! Near LGA / Manhattan,137358866,Kazuya,Queens,Sunnyside,40.74907,-73.91185,Private room,37,30,1,2019-04-30,0.43,103,0 +30359944,Gorgeous Room in a renovated Woodside townhouse!,137358866,Kazuya,Queens,Woodside,40.74958,-73.90011,Private room,42,30,1,2019-06-01,0.79,103,235 +30361847,"One bedroom apartment in Brooklyn, NY",40480205,Owen,Brooklyn,Park Slope,40.6828,-73.97738,Entire home/apt,110,60,2,2019-06-29,0.81,1,83 +30364369,hip and cosy Brooklyn family retreat,12838954,Vincent,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94382,Entire home/apt,375,7,0,,,1,0 +30367011,Quiet Neighborhood Close to Trendy Spots,183967887,Hayley,Brooklyn,Williamsburg,40.71326,-73.93766,Private room,65,4,5,2019-04-20,0.74,1,0 +30367724,Cozy private room in Williamsburg,228000501,Dylan,Brooklyn,Williamsburg,40.70996,-73.96495,Private room,50,3,6,2019-06-30,0.82,1,38 +30367948,Beautiful apartment in Brooklyn Heights,26312879,Daron,Brooklyn,Brooklyn Heights,40.69458,-73.99771,Entire home/apt,125,5,3,2019-05-18,0.48,1,0 +30369014,Private room with a view- cosy apt in East Village,5559293,Tiphaine,Manhattan,Gramercy,40.73212,-73.98247,Private room,150,2,10,2019-06-05,1.41,1,36 +30369286,Modern/Eclectic Light Filled Williamsburg Home,3262412,Britney,Brooklyn,Williamsburg,40.7076,-73.94718,Entire home/apt,225,2,0,,,1,45 +30369420,"Trendy Chelsea 1BR w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73878,-73.99604,Entire home/apt,303,30,0,,,232,185 +30369494,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,228011801,Hugo,Brooklyn,Williamsburg,40.70955,-73.96311,Private room,69,7,1,2019-06-23,1,1,0 +30369652,Central Park Loft,93717558,Abe,Manhattan,Upper West Side,40.78687,-73.97189,Entire home/apt,175,2,17,2019-06-20,2.64,1,27 +30369751,Private bedroom w/ bathroom in cozy UWS apartment,206960083,Marjolein,Manhattan,Upper West Side,40.78384,-73.97696,Private room,95,7,1,2019-01-03,0.16,1,0 +30369889,Modern 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76135,-73.98668,Entire home/apt,316,30,0,,,232,35 +30370124,Cozy Room 1,213781715,Anting,Brooklyn,Downtown Brooklyn,40.69839,-73.98758,Private room,119,1,1,2019-05-27,0.68,33,365 +30370448,Cozy Home 2,213781715,Anting,Brooklyn,Greenpoint,40.73291,-73.95282,Private room,119,1,0,,,33,365 +30370564,LINCOLN CENTER / LUXURY 2BED 2BATH,131647128,Emily,Manhattan,Upper West Side,40.77396,-73.98925,Entire home/apt,260,30,3,2019-05-12,0.45,25,274 +30370565,"Cozy private room in NYC +25 mins from Midtown",172895347,Mario & Maria,Queens,Jackson Heights,40.75275,-73.88186,Private room,59,30,2,2019-02-18,0.38,2,0 +30370601,DELUXE DOUBLE ROOM,198861577,Novo,Brooklyn,Williamsburg,40.72205,-73.956,Private room,350,2,0,,,5,0 +30370613,Central & Comfy East Village Studio,225620034,Jared & Rachel,Manhattan,East Village,40.73011,-73.98405,Entire home/apt,189,1,13,2019-07-02,3.07,1,338 +30370630,Cozy Home 3,213781715,Anting,Brooklyn,Greenpoint,40.7318,-73.95307,Entire home/apt,399,1,0,,,33,364 +30370642,"Serene, Clean Studio in South Williamsburg",10934627,Jacqueline,Brooklyn,Williamsburg,40.7112,-73.96566,Entire home/apt,105,7,3,2019-06-16,0.56,1,16 +30370778,Large room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.72994,-73.86987,Private room,45,2,11,2019-06-19,1.73,4,6 +30372287,Private Floor in Brownstone near Prospect Park,11370189,Brandon,Brooklyn,Prospect Heights,40.6779,-73.96393,Entire home/apt,140,5,2,2019-01-05,0.31,2,25 +30372486,Luxury Apt - Private Suite in Theater District,3729486,Andrew,Manhattan,Hell's Kitchen,40.76593,-73.99186,Private room,180,4,12,2019-07-03,1.68,1,172 +30373102,Big cozy room in Washington Heights,24762196,Manuel,Manhattan,Washington Heights,40.8471,-73.93996,Private room,80,3,3,2019-01-03,0.42,1,0 +30373480,Cozy Nook in Trendy Lower East Side,1723475,Samantha,Manhattan,Lower East Side,40.71813,-73.98633,Entire home/apt,214,3,20,2019-06-23,3.30,1,279 +30373928,*Beautiful Private Room near Subway,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95096,Private room,65,2,24,2019-06-15,3.48,7,330 +30374290,Private Bedroom w/ Queen Size bed in Williamsburg,19868844,André,Brooklyn,Williamsburg,40.71115,-73.95825,Private room,60,2,14,2019-06-03,1.99,1,0 +30374563,Open & Bright Williamsburg 1 Bed Loft,228104837,Barbara,Brooklyn,Williamsburg,40.7092,-73.9631,Entire home/apt,195,2,14,2019-06-03,2.04,1,28 +30375114,South Prospect Park Private Middle Room F&Q subway,221940893,Sara,Brooklyn,Kensington,40.6377,-73.97062,Private room,36,2,18,2019-07-07,2.51,3,189 +30375328,Large studio-style Private Room,151429490,Hajdi,Brooklyn,Crown Heights,40.66456,-73.95216,Private room,80,1,0,,,1,359 +30376063,Industrial Chic Stuyvesant Bedroom Madison 1R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9324,Private room,42,30,1,2019-05-19,0.58,27,346 +30376150,Nelson-Hamilton Family,225750872,Lauria,Queens,Far Rockaway,40.59349,-73.76377,Private room,60,1,1,2018-12-30,0.16,1,90 +30376368,Hip East Village Flat,228117451,Pam,Manhattan,East Village,40.72269,-73.98306,Entire home/apt,75,8,6,2019-06-28,0.94,1,232 +30376416,pinlia,143084679,Lukia,Queens,Flushing,40.74625,-73.83433,Private room,40,1,7,2019-06-14,2.96,1,0 +30376690,Charming Harlem Studio!,81970141,Emily,Manhattan,Harlem,40.82932,-73.94696,Entire home/apt,119,2,15,2019-07-01,2.38,1,12 +30376805,Penthouse Apartment to view July 4th Fireworks,11773839,Nate,Manhattan,Chinatown,40.71446,-73.99112,Private room,95,2,5,2019-07-07,0.80,1,2 +30376977,Private Stuyvesant Bedroom Madison 1R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68632,-73.93251,Private room,42,30,0,,,27,346 +30377021,Shared Room 4 FEMALE Guests 30mins to Manhattan-2,172369331,Abby,Brooklyn,Sheepshead Bay,40.5981,-73.9584,Shared room,25,7,2,2019-06-01,1.15,10,290 +30377430,Modern Private Stuyvesant Room Madison 1R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68553,-73.93215,Private room,42,30,1,2019-05-25,0.65,27,346 +30377654,Greenpoint Creative's Apartment,2011313,Ariana,Brooklyn,Greenpoint,40.72471,-73.939,Entire home/apt,100,7,3,2019-06-10,0.78,1,6 +30377718,Sunny Stuyvesant Private Bedroom Madison 1R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68595,-73.93109,Private room,42,30,2,2019-02-13,0.33,27,345 +30378040,Artsy Stuyvesant Private Bedroom Madison 2L-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68555,-73.93107,Private room,42,30,1,2019-03-05,0.24,27,332 +30378211,Shared Studio (females only),200401254,Meg,Manhattan,Greenwich Village,40.73094,-73.999,Shared room,110,999,0,,,1,365 +30378751,Homely One Bedroom on a quite safe street!,31408845,Shane,Queens,Astoria,40.76605,-73.92425,Entire home/apt,250,14,2,2019-06-28,0.32,1,341 +30378764,Luxurious Manhattan Apartment with Rooftop Views,128766,James,Manhattan,Harlem,40.81916,-73.95312,Entire home/apt,150,2,15,2019-06-21,2.12,1,9 +30378844,Mellow Stuyvesant Bedroom Madison 2L-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68768,-73.93076,Private room,42,30,2,2019-06-01,0.86,27,311 +30378982,Modern Brooklyn Zen with Private Garden,3042136,Jenni,Brooklyn,Carroll Gardens,40.68241,-73.99157,Entire home/apt,250,2,26,2019-07-07,3.94,3,266 +30379067,Large Room in Sunnyside,4275601,Wesley,Queens,Long Island City,40.7351,-73.92526,Private room,100,1,1,2019-01-01,0.16,1,364 +30379843,"Your NY home for Quality time , Fully Equipped !",148725429,Javier,Brooklyn,Bushwick,40.69231,-73.92567,Entire home/apt,90,3,58,2019-07-07,7.91,2,2 +30380685,"Bright, large, fully renovated apartment!!",20318052,Laura,Brooklyn,Bedford-Stuyvesant,40.69518,-73.94676,Entire home/apt,140,2,0,,,2,112 +30387064,Stunning Corner 1BR in West Village w/ Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72976,-74.00387,Entire home/apt,350,30,0,,,232,341 +30387132,"Bespoke Tribeca Studio, Indoor pool + Great views by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71663,-74.00546,Entire home/apt,276,30,0,,,232,284 +30387173,Exquisite UWS 2BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.77833,-73.98469,Entire home/apt,452,30,1,2019-01-12,0.17,232,337 +30387196,Modern + Bright Times Square 1BR w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.76017,-73.98509,Entire home/apt,325,30,0,,,232,362 +30387218,"Grand Lenox Hill 1BR w/ Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.76368,-73.95993,Entire home/apt,312,30,0,,,232,293 +30387263,"Splendid Tribeca 1BR w/ Gym, Doorman + Valet by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71284,-74.00844,Entire home/apt,285,30,0,,,232,185 +30387280,"Stunning Tribeca 2BR w/ Indoor pool, Gym, Rooftop by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71684,-74.00544,Entire home/apt,350,30,0,,,232,342 +30387305,"Bright, Open 1BR in lovely West Village w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.7287,-74.00327,Entire home/apt,397,30,0,,,232,53 +30387328,"Comfy UWS 1BR w/ Gym + Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77804,-73.98409,Entire home/apt,283,30,0,,,232,1 +30387351,Palatial Wall Street 1BR w/ Luxury gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.70492,-74.00678,Entire home/apt,289,30,0,,,232,341 +30387377,"Welcoming Chelsea 1BR w/ Roof deck, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74143,-73.99469,Entire home/apt,343,30,1,2019-01-17,0.17,232,323 +30387425,Swanky 1BR in Central Chelsea w/ Garden by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73846,-73.99769,Entire home/apt,334,30,1,2019-04-15,0.35,232,310 +30387445,"Serene Theater District 1BR, Doorman, Gym, Garden by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76258,-73.98768,Entire home/apt,302,30,0,,,232,330 +30387469,"Dandy Wall St 1BR w/ Office nook, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70617,-74.00842,Entire home/apt,320,30,0,,,232,310 +30387495,Stately + Spacious UWS 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.77722,-73.98262,Entire home/apt,316,30,0,,,232,18 +30387553,"Ample Central Midtown East 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74499,-73.97937,Entire home/apt,287,30,0,,,232,268 +30387566,"Airy Times Sq 1BR w/ Indoor pool, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76143,-73.98533,Entire home/apt,334,30,0,,,232,296 +30387600,"Cozy Midtown Studio w/ Gym, near Penn Station by Blueground",107434423,Blueground,Manhattan,Midtown,40.75231,-73.98924,Entire home/apt,238,30,1,2019-01-02,0.16,232,322 +30387648,Cheery Tribeca Studio w/ Gym + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71479,-74.00671,Entire home/apt,291,30,0,,,232,295 +30387788,"Dapper Times Square 1BR w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Theater District,40.76139,-73.98521,Entire home/apt,276,30,0,,,232,206 +30387820,Cozy Central Chelsea Studio w/ Balcony + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73918,-73.99616,Entire home/apt,303,30,1,2019-01-31,0.19,232,280 +30387838,"Immaculate Central West Village 1BR, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.72988,-74.00341,Entire home/apt,392,30,0,,,232,328 +30387856,Charismatic 1BR in West Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.72945,-74.00321,Entire home/apt,356,30,0,,,232,162 +30387885,Times Square 1BR w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.76159,-73.98544,Entire home/apt,297,30,0,,,232,68 +30387916,Smart Tribeca Studio w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71674,-74.0069,Entire home/apt,265,30,0,,,232,208 +30387960,"Ideal Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73899,-73.99749,Entire home/apt,291,30,0,,,232,320 +30387983,Lush 2BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76034,-73.98656,Entire home/apt,358,30,0,,,232,196 +30388011,"Bright 1BR near Times Sq w/ Indoor pool, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.75988,-73.98568,Entire home/apt,312,30,0,,,232,341 +30388057,Dreamy 1BR in Hip East Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,East Village,40.723,-73.98415,Entire home/apt,312,30,1,2019-02-28,0.23,232,359 +30388079,"Spacious UWS 1BR w/ Gym, Walk to Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7904,-73.97555,Entire home/apt,320,30,0,,,232,293 +30388100,Light-filled Studio in Swanky Chelsea w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73767,-73.99739,Entire home/apt,321,30,1,2019-04-24,0.39,232,310 +30388159,"Dandy Tribeca Studio w/ Indoor pool, Views + Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71657,-74.00551,Entire home/apt,309,30,0,,,232,312 +30388225,"Tranquil East Village 1BR Gym, Garden + Doorman by Blueground",107434423,Blueground,Manhattan,East Village,40.72232,-73.98543,Entire home/apt,312,30,0,,,232,219 +30388284,"Cozy, Bright 2BR in Hip LES w/ Large terrace by Blueground",107434423,Blueground,Manhattan,Lower East Side,40.71856,-73.99061,Entire home/apt,314,90,0,,,232,208 +30388313,"Roomy Midtown East 1BR, Office nook, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74528,-73.97948,Entire home/apt,352,30,0,,,232,268 +30388333,Thoughtful UWS Studio w/ Gym near Central Park by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.79094,-73.97235,Entire home/apt,238,30,0,,,232,279 +30388352,"Lofty UES 1BR w/ Indoor pool, Doorman, City views by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77518,-73.9491,Entire home/apt,289,30,1,2019-03-31,0.30,232,235 +30388383,"Charming Midtown West 2BR, 2BA w/ Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.75973,-73.99574,Entire home/apt,291,30,0,,,232,189 +30388429,"Tranquil Columbus Cir. 1BR, Doorman, River Views by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.76923,-73.98627,Entire home/apt,263,30,0,,,232,280 +30388449,"Spacious Chelsea 1BR w/ Gym, Balcony + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73806,-73.99744,Entire home/apt,365,30,0,,,232,261 +30388479,"Hip Midtown East 1BR w/ Great views, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74164,-73.97859,Entire home/apt,253,30,0,,,232,203 +30388528,"Stylish Tribeca Studio w/ Gym, Doorman + Valet by Blueground",107434423,Blueground,Manhattan,Tribeca,40.7132,-74.00942,Entire home/apt,246,30,0,,,232,332 +30388552,"Sparkling Midtown Studio w/ Gym near Times Square, by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76393,-73.98721,Entire home/apt,211,30,0,,,232,227 +30388587,"Homey UWS 1BR w/ Gym, walk to Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77779,-73.98459,Entire home/apt,306,30,0,,,232,336 +30388617,"Gorgeous + Bright Midtown East 1BR, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Midtown,40.75861,-73.96359,Entire home/apt,241,30,0,,,232,149 +30388668,"Well-appointed Tribeca Studio w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71519,-74.00654,Entire home/apt,312,30,0,,,232,38 +30388718,"Bright, Luxury FiDi Studio w/ Doorman, Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70672,-74.00661,Entire home/apt,259,120,0,,,232,286 +30388750,Cozy Midtown 1BR w/ Doorman near Penn Station by Blueground,107434423,Blueground,Manhattan,Midtown,40.75335,-73.99029,Entire home/apt,267,30,0,,,232,274 +30388841,"Stately Chelsea Studio, Balcony in Chic building by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73929,-73.99777,Entire home/apt,312,30,0,,,232,157 +30388944,Mod + Lux Theater District 1BR w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.75971,-73.98551,Entire home/apt,347,30,0,,,232,266 +30388972,"Ample 1BR w/ Indoor pool, Gym near Broadway by Blueground",107434423,Blueground,Manhattan,Theater District,40.75995,-73.98728,Entire home/apt,278,30,0,,,232,147 +30388999,"Swanky Central Chelsea Studio w/ Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73774,-73.99723,Entire home/apt,242,30,0,,,232,188 +30389026,Lovely Midtown East 1BR w/ City views + Doorman by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.74805,-73.97351,Entire home/apt,242,30,0,,,232,237 +30389066,"Light-filled Chelsea 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73786,-73.9977,Entire home/apt,358,30,0,,,232,322 +30389115,"Airy East Village 1BR w/ Doorman, Gym, near NYU by Blueground",107434423,Blueground,Manhattan,East Village,40.73021,-73.98765,Entire home/apt,377,90,0,,,232,174 +30389147,"Modern Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73897,-73.99637,Entire home/apt,280,30,0,,,232,1 +30389192,Fetching FiDi Studio in Luxury Building by Blueground,107434423,Blueground,Manhattan,Financial District,40.70619,-74.00895,Entire home/apt,232,30,0,,,232,61 +30389224,"Mod Midtown West 2BR, Gym, Doorman + Water views by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76087,-73.99563,Entire home/apt,365,30,0,,,232,326 +30389262,Large Couples Room for that Perfect New York Stay,137358866,Kazuya,Queens,Woodside,40.74635,-73.90774,Private room,62,30,2,2019-01-31,0.32,103,269 +30389263,Stately Midtown East 1BR w/ Doorman near Flatiron by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.74053,-73.97874,Entire home/apt,273,30,0,,,232,157 +30389280,"Bright FiDi 1BR w/ Luxury gym, Doorman, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70511,-74.00722,Entire home/apt,285,30,0,,,232,339 +30389309,"Spacious Midtown East 1BR, Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74072,-73.97794,Entire home/apt,307,30,0,,,232,333 +30389336,"Bespoke Studio in Hip East Village w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,East Village,40.73186,-73.98761,Entire home/apt,281,90,0,,,232,322 +30389441,Shining Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71609,-74.00501,Entire home/apt,275,30,0,,,232,342 +30389474,"Homey 1BR in Fun, Central West Village w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.73003,-74.00215,Entire home/apt,396,30,0,,,232,163 +30389504,"Sweet Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73947,-73.99777,Entire home/apt,283,30,0,,,232,334 +30389559,Homey Tribeca 2BR w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71626,-74.00694,Entire home/apt,358,30,0,,,232,217 +30389586,Comfy 1BR w/ Gym + Doorman near Times Square by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76035,-73.99679,Entire home/apt,285,30,0,,,232,330 +30389608,"Mod East Village 1BR w/ Doorman, Gym near Union Sq by Blueground",107434423,Blueground,Manhattan,East Village,40.73169,-73.98932,Entire home/apt,420,30,0,,,232,157 +30390975,Room & Private Bath + Free Gym/Pool/Theater/More!,12704088,Jennifer,Brooklyn,Williamsburg,40.7189,-73.96416,Private room,88,2,7,2019-03-26,1.35,1,0 +30391061,Travelers Delight - Minutes from JFK and MTA,228207777,Marie,Queens,Springfield Gardens,40.66784,-73.75357,Entire home/apt,150,1,4,2019-05-15,0.70,1,162 +30391955,Queens Comfort,228213504,Lorraine,Queens,Jamaica,40.69607,-73.79842,Private room,45,3,0,,,1,0 +30392517,"Cozy Studio in Charming Chelsea, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73774,-73.99725,Entire home/apt,283,30,0,,,232,337 +30392543,Stately Theater District 1BR w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76177,-73.98504,Entire home/apt,316,30,0,,,232,311 +30392569,"Picture-perfect Flatiron Studio w/ Rooftop + Gym, by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74094,-73.99464,Entire home/apt,255,30,1,2019-02-03,0.19,232,330 +30392623,"Dapper Park Ave Studio w/ Gym, near Grand Central by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74943,-73.98055,Entire home/apt,282,30,1,2019-02-27,0.23,232,323 +30392649,Palatial Midtown East 1BR w/ Office nook + Doorman by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.74005,-73.97884,Entire home/apt,290,30,0,,,232,312 +30392677,"Bright 1BR near Times Sq w/ Indoor pool, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.75965,-73.98582,Entire home/apt,317,30,0,,,232,251 +30392704,Immaculate Chelsea 1BR w/ Water views + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74148,-73.99955,Entire home/apt,303,30,0,,,232,332 +30392780,"Stately Midtown Studio w/ Doorman, Gym, near MSG by Blueground",107434423,Blueground,Manhattan,Midtown,40.75149,-73.9908,Entire home/apt,206,30,0,,,232,203 +30392806,"Mod Tribeca 1BR w/ Gym, Doorman + Rooftop garden by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71295,-74.00906,Entire home/apt,278,30,0,,,232,330 +30392834,"Charming West Village Studio Oasis w/ Doorman, Gym by Blueground",107434423,Blueground,Manhattan,West Village,40.73021,-74.00379,Entire home/apt,305,30,0,,,232,1 +30392874,Crisp 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.75963,-73.98595,Entire home/apt,316,30,0,,,232,262 +30392909,Smart Midtown East Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.748,-73.97943,Entire home/apt,252,30,0,,,232,315 +30392930,Bright + Mod Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71488,-74.00687,Entire home/apt,332,30,1,2019-02-05,0.19,232,1 +30392986,"Peaceful Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7388,-73.997,Entire home/apt,361,30,0,,,232,157 +30393018,"Stunning Tribeca Studio w/ City views, Gym + Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71479,-74.00621,Entire home/apt,269,30,0,,,232,310 +30393045,"Bright + Open Midtown 1BR w/ Doorman, Gym, Sundeck by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74108,-73.97788,Entire home/apt,245,30,0,,,232,280 +30393099,Handsome Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71607,-74.00564,Entire home/apt,305,30,1,2019-03-15,0.26,232,274 +30393171,Airy + Bright FiDi Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.70887,-74.01446,Entire home/apt,233,30,0,,,232,365 +30393194,Stately Central West Village 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72873,-74.0034,Entire home/apt,459,30,0,,,232,293 +30393223,Stylish + Spacious UWS 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.7764,-73.98387,Entire home/apt,271,30,0,,,232,186 +30393251,"Darling Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7387,-73.99699,Entire home/apt,314,30,1,2019-01-31,0.19,232,345 +30393286,"Gorgeous 2BR, 2BA, Pool + Doorman, near Times Sq by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76046,-73.99685,Entire home/apt,416,30,0,,,232,335 +30393322,"Comfy Wall Street 1BR w/ Speakeasy, Gym, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70601,-74.0096,Entire home/apt,316,30,0,,,232,287 +30393342,"Neat FiDi Studio w/ Gym, Doorman, + Roof deck by Blueground",107434423,Blueground,Manhattan,Battery Park City,40.70444,-74.01712,Entire home/apt,232,120,0,,,232,163 +30393355,"Midtown 1BR Duplex w/ Gym, Doorman + Great views by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74737,-73.97626,Entire home/apt,262,60,0,,,232,188 +30393377,Clever 1BR near Broadway w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76178,-73.98547,Entire home/apt,330,30,0,,,232,306 +30393414,"Grand UES 1BR w/ Doorman, Gym, + Roof deck by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77506,-73.95678,Entire home/apt,271,30,0,,,232,240 +30393427,Home,228223819,Arosha,Queens,Ridgewood,40.70967,-73.90962,Private room,45,3,3,2018-11-30,0.41,1,179 +30393443,"West Village/Chelsea 3 bd, unbelieveable location!",221901576,Richard,Manhattan,West Village,40.73944,-74.00563,Entire home/apt,453,1,16,2019-06-19,3.72,2,113 +30393464,"Superb FiDi 1BR w/ City views, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70455,-74.01008,Entire home/apt,236,30,0,,,232,185 +30393497,"Sleek Upper West Side 1BR w/ Balcony, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77639,-73.98269,Entire home/apt,294,30,0,,,232,219 +30393527,"Bright East Village 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,East Village,40.72303,-73.98545,Entire home/apt,329,30,0,,,232,249 +30393555,"Serene UWS 2BR w/ Doorman, Gym, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77771,-73.98244,Entire home/apt,481,30,0,,,232,156 +30393583,"Bespoke Central Chelsea 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73939,-73.99613,Entire home/apt,343,30,0,,,232,356 +30393609,"Sauve FiDi Studio w/ Private terrace, Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70864,-74.0051,Entire home/apt,224,30,0,,,232,338 +30393638,Adorable Theater District Studio w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.7601,-73.98504,Entire home/apt,278,30,0,,,232,304 +30393670,"Rad East Village 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,East Village,40.72277,-73.98419,Entire home/apt,312,30,0,,,232,358 +30393689,Posh 1BR in Hip East Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,East Village,40.72256,-73.98544,Entire home/apt,302,30,0,,,232,265 +30393759,Smart Studio in Heart of West Village w/ Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.73035,-74.00324,Entire home/apt,334,30,0,,,232,280 +30393778,"Sweet Midtown East 1BR, Water views, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74478,-73.9727,Entire home/apt,258,30,0,,,232,235 +30393798,Modern Sleek Apartment in Dumbo,16051761,Sandra,Brooklyn,Downtown Brooklyn,40.69739,-73.98444,Entire home/apt,150,7,0,,,1,0 +30393803,Stately Central Chelsea 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74261,-73.99457,Entire home/apt,356,30,0,,,232,323 +30393836,"Chic Chelsea Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73934,-73.99737,Entire home/apt,278,30,1,2019-02-23,0.22,232,235 +30393853,Spacious 1 Bedroom in Historic Brownstone,49282603,Zahid,Brooklyn,Bedford-Stuyvesant,40.69054,-73.92801,Entire home/apt,75,7,4,2019-06-28,0.64,1,10 +30393882,"Smart FiDi Studio w/ Gym, Roofdeck + Speakeasy by Blueground",107434423,Blueground,Manhattan,Financial District,40.70485,-74.00934,Entire home/apt,184,30,0,,,232,180 +30393896,"Mod Tribeca Studio w/ Tons of light, Gym, Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71508,-74.00628,Entire home/apt,274,30,0,,,232,194 +30393921,"Chic Central Chelsea 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73854,-73.99695,Entire home/apt,347,30,0,,,232,7 +30393944,"Spacious UWS 2BR w/ Great kitchen, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7767,-73.98291,Entire home/apt,466,30,0,,,232,280 +30393969,Radiant Times Square 1BR w/ Indoor pool + Doorman by Blueground,107434423,Blueground,Manhattan,Theater District,40.7619,-73.9853,Entire home/apt,316,30,0,,,232,332 +30393998,Roomy 1BR near Broadway w/ Indoor pool + Doorman by Blueground,107434423,Blueground,Manhattan,Theater District,40.76058,-73.9855,Entire home/apt,285,30,0,,,232,220 +30394018,"Sleek Wall St. 1BR w/ Lux gym, Doorman, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70513,-74.009,Entire home/apt,271,30,0,,,232,234 +30394053,"Dapper Midtown 1BR w/ Water views, Indoor pool by Blueground",107434423,Blueground,Manhattan,Theater District,40.76061,-73.98675,Entire home/apt,317,30,0,,,232,155 +30394071,Dazzling Tribeca 2BR w/ Indoor pool + Great views by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71659,-74.00653,Entire home/apt,388,30,0,,,232,1 +30394105,Expansive West Village Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.7296,-74.00246,Entire home/apt,341,30,0,,,232,285 +30394133,Friendly Midtown East Studio w/ Great light + Gym by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.745,-73.97942,Entire home/apt,237,30,1,2019-04-11,0.34,232,283 +30394155,"Open + Cozy Chelsea Studio w/ Gym, Lovely Sundeck by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7407,-73.99478,Entire home/apt,248,30,0,,,232,346 +30394179,Charming Central West Village 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.73005,-74.00208,Entire home/apt,379,30,0,,,232,340 +30394203,"Cozy + Quaint Chelsea 1BR w/ Doorman, Gym, Balcony by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7392,-73.99578,Entire home/apt,314,30,0,,,232,359 +30394223,Snazzy Wall Street Studio w/ Lux gym + Roof deck by Blueground,107434423,Blueground,Manhattan,Financial District,40.70593,-74.0091,Entire home/apt,251,30,0,,,232,16 +30394274,"Gorgeous, Roomy West Village 1BR w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.72946,-74.00318,Entire home/apt,423,30,0,,,232,229 +30394324,"Chic Midtown East 1BR w/ Doorman, Gym + Sundecks by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7396,-73.97938,Entire home/apt,240,30,0,,,232,249 +30394340,"Comfy Tribeca Studio w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71409,-74.00977,Entire home/apt,245,30,0,,,232,310 +30394380,"Bright + Airy Theater District 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76103,-73.98666,Entire home/apt,329,30,0,,,232,98 +30394403,"Luxury FiDi Studio w/ Gym, Roof deck + Speakeasy by Blueground",107434423,Blueground,Manhattan,Financial District,40.70631,-74.00886,Entire home/apt,265,30,0,,,232,45 +30394423,"Dapper Chelsea Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73785,-73.99736,Entire home/apt,300,30,0,,,232,356 +30394446,Hip + Bright Studio w/ Balcony in Charming Chelsea by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73935,-73.99691,Entire home/apt,267,30,0,,,232,340 +30394467,"Chic Central Chelsea 1BR w/ Gym, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73939,-73.99747,Entire home/apt,374,30,0,,,232,312 +30394494,"Charming Chelsea 1BR w/ Office nook, near Union Sq by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73795,-73.99753,Entire home/apt,316,30,0,,,232,339 +30394518,Opulent FiDi Studio w/ Great Rooftop + Gym by Blueground,107434423,Blueground,Manhattan,Financial District,40.70571,-74.01509,Entire home/apt,189,30,1,2019-02-15,0.21,232,142 +30394541,Bright 1BR w/ Gym near Chelsea Mkt + Meatpacking by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74423,-74.0026,Entire home/apt,298,30,0,,,232,285 +30394622,"Ideal Chelsea 1BR w/ Office nook, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73924,-73.99586,Entire home/apt,362,30,0,,,232,211 +30394691,Explore NYC from its best nabe! 1 blck from subway,136900522,Matt,Queens,Astoria,40.76403,-73.92195,Entire home/apt,150,2,1,2018-12-10,0.14,1,0 +30395040,Naturally Lit/ Cozy & Cute Studio in Flatbush,61105987,Taylor,Brooklyn,Flatbush,40.63574,-73.95129,Entire home/apt,90,3,7,2019-06-11,2.26,1,5 +30395433,Gorgeous NYC apt. near everything! (Women only),27698539,Roberta,Manhattan,Midtown,40.74985,-73.98152,Private room,90,2,13,2019-07-07,1.88,1,24 +30395680,1 bed 2 guest luxury Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.66051,-73.92964,Private room,75,1,0,,,3,364 +30395737,Private Bed in Brooklyn Him-1R-6,216235179,Nina,Brooklyn,Bushwick,40.69997,-73.92054,Private room,47,30,0,,,17,323 +30396100,"Private Bedroom in Prime Bushwick, GREAT Location!",216235179,Nina,Brooklyn,Bushwick,40.69972,-73.91874,Private room,47,30,2,2019-04-30,0.59,17,347 +30396953,Bright South Slope Studio,34866807,Mary,Brooklyn,Sunset Park,40.66278,-73.99206,Entire home/apt,250,2,29,2019-06-30,4.08,1,121 +30397278,Cozy loft bed,228250502,Bill,Manhattan,Gramercy,40.73567,-73.98403,Shared room,69,2,9,2019-07-01,1.44,1,62 +30397717,Not available,228253636,Richard,Brooklyn,Williamsburg,40.71434,-73.9398,Private room,90,1,0,,,1,364 +30398077,A large Sunny Bedroom in Astoria,132801944,Shampa,Queens,Astoria,40.7686,-73.91354,Private room,120,2,4,2019-05-13,0.62,2,0 +30398373,Fifth Ave/Central Park Studio Apt,228257645,Svetlana,Manhattan,Midtown,40.76334,-73.97809,Entire home/apt,200,3,3,2019-06-23,0.97,1,85 +30398902,Cozy 1 bedroom in the heart of Hell's Kitchen!,14501006,Ryan,Manhattan,Hell's Kitchen,40.76007,-73.98965,Entire home/apt,430,2,0,,,1,0 +30398938,Perfect Location in Manhattan,211549023,Studioplus,Manhattan,Midtown,40.74697,-73.98693,Entire home/apt,240,2,11,2019-06-17,1.89,13,258 +30399177,Next to train-Spacious-Sleeps 2-Flex Chk In Times,228263278,475,Manhattan,Harlem,40.82391,-73.94699,Private room,160,2,2,2019-04-13,0.32,4,180 +30399408,Cozy Studio in Upper East Side,110278081,Ashley,Manhattan,Upper East Side,40.77225,-73.95326,Entire home/apt,70,2,16,2019-06-16,2.24,1,4 +30399435,"East Village Gem for 7, 1 block to train",224368116,Ev,Manhattan,Lower East Side,40.72235,-73.98911,Entire home/apt,313,1,22,2019-06-23,4.52,1,28 +30399838,Spacious 3 bedroom 2 bathroom Upper West Side home,228268284,Michele,Manhattan,Upper West Side,40.77853,-73.97609,Entire home/apt,750,7,1,2018-12-12,0.14,1,0 +30399969,Cozy Two Bedroom Apartment in Greenpoint,129312581,Andre,Brooklyn,Greenpoint,40.72944,-73.95395,Entire home/apt,167,2,0,,,1,0 +30399972,Charming room Newly Renovated Apt30 mins from city,228268188,Motlaq,Brooklyn,Borough Park,40.62801,-74.00328,Private room,65,1,7,2019-05-21,1.00,1,351 +30400100,"Greenwich Village/ Noho Duplex Flat! Bright, Luxe",224480214,Ollie,Manhattan,East Village,40.72493,-73.99061,Entire home/apt,308,1,39,2019-06-22,6.46,1,269 +30400390,Cozy Exposed Brick Apartment in Brooklyn !,48138946,Isabella,Brooklyn,Columbia St,40.68491,-74.00183,Entire home/apt,100,1,11,2019-06-16,1.55,1,81 +30400423,Amazing Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.6887,-73.95572,Private room,60,2,13,2019-06-11,1.83,4,311 +30400542,Amazingly located private room with huge space!,137358866,Kazuya,Queens,Woodside,40.74405,-73.89994,Private room,42,30,0,,,103,219 +30400683,Amazing place Harlem (10 min walk Central Park),36747057,Roberto,Manhattan,Harlem,40.80666,-73.95691,Private room,90,6,4,2019-03-24,1.02,1,0 +30400980,Cozy 2 Bed/1 Bath in the heart of Red Hook,62869020,Jacob,Brooklyn,Red Hook,40.67846,-74.0141,Entire home/apt,120,4,2,2019-02-26,0.39,1,0 +30401429,Lovely room in convenient location. J/M & L trains,58344344,Julie,Brooklyn,Bushwick,40.70089,-73.93903,Private room,51,1,33,2019-06-28,5.24,1,19 +30402045,Large private room in 2nd floor apartment.,171673961,Eric,Brooklyn,Bedford-Stuyvesant,40.67896,-73.90892,Private room,25,2,2,2019-01-01,0.30,1,0 +30403397,Cozy spacious studio close to Times Square,5439134,Ethan,Manhattan,Hell's Kitchen,40.76331,-73.99128,Entire home/apt,150,1,1,2019-06-12,1,1,5 +30403504,"Chic PENT HOUSE near LaGuardia airport, 30 to nyc.",95570854,Fatema,Queens,Ditmars Steinway,40.76711,-73.89367,Entire home/apt,250,7,0,,,2,365 +30403878,*Just right budget room :),226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68059,-73.91372,Private room,55,5,4,2019-05-26,0.72,10,360 +30404034,Bright 1BR Duplex - Welcome to Bed-Stuy!,6899080,Betsy,Brooklyn,Bedford-Stuyvesant,40.68181,-73.91811,Entire home/apt,115,3,22,2019-07-01,3.49,1,44 +30404664,A Large Private Room in Greenpoint- 15 min to Manh,72512761,Erik,Brooklyn,Greenpoint,40.72325,-73.94911,Private room,44,1,29,2019-05-30,4.07,3,0 +30405178,Luxury Apartment in Midtown West,51937277,Jessica,Manhattan,Hell's Kitchen,40.75399,-73.99764,Entire home/apt,243,2,14,2019-05-26,1.89,1,93 +30406215,Comfy Midtown East Getaway,73262360,Blake,Manhattan,Midtown,40.75893,-73.96751,Entire home/apt,290,4,1,2019-06-03,0.83,1,52 +30406311,Private room (Bee Room) in Bushwick Brownstone,40305031,Rob,Brooklyn,Bushwick,40.68426,-73.90793,Private room,65,1,5,2019-05-07,0.68,2,363 +30406899,Private room (Paris Room) in Bushwick Brownstone,40305031,Rob,Brooklyn,Bushwick,40.68583,-73.90985,Private room,55,1,10,2019-05-06,1.36,2,365 +30407158,BEAUTIFUL PRIVATE ROOM IN EAST VILLAGE,228321090,Imade,Manhattan,East Village,40.72658,-73.98803,Private room,115,1,20,2019-05-31,2.83,1,67 +30407308,La Greka,109843377,Rubi,Brooklyn,Bedford-Stuyvesant,40.67992,-73.90943,Private room,60,14,0,,,2,156 +30408787,Clean + Comfortable Bedroom in West Harlem,228332039,Dystini,Manhattan,Harlem,40.82631,-73.95201,Private room,30,1,3,2019-05-26,1.41,1,8 +30415541,"Lovely 2 BR Skyline View , 5 Min to Manhattan",33320745,Daniel,Queens,Long Island City,40.75256,-73.93671,Entire home/apt,250,6,4,2019-07-02,1.56,1,105 +30416267,House of Stylez,15377463,Kazem,Brooklyn,Bedford-Stuyvesant,40.68525,-73.93159,Private room,65,2,0,,,1,0 +30417368,Great 1br near Prospect Park,129732248,Dan,Brooklyn,Flatbush,40.65332,-73.95778,Entire home/apt,120,4,19,2019-06-25,2.98,1,8 +30417665,MANHATTAN Upper West LUXURY -- for 5. Free Parkng,71276635,Joe,Manhattan,Washington Heights,40.83547,-73.94207,Entire home/apt,140,1,22,2019-07-07,3.10,5,334 +30417877,Private Room #2 in Brooklyn,25077909,Carlos,Brooklyn,Bedford-Stuyvesant,40.69044,-73.92636,Private room,50,3,10,2019-06-26,1.59,2,235 +30418156,Cozy room in Doormen/Elev. bldg by Grand Central,24346280,Eric,Manhattan,Midtown,40.75294,-73.97105,Private room,70,5,1,2019-02-20,0.22,1,0 +30418220,Aziza's Cosy Apartment,59917137,Aziza,Manhattan,Harlem,40.8206,-73.93779,Private room,65,5,1,2019-01-02,0.16,1,0 +30418770,Beautiful bedroom in a 3 bedroom apartment,221645033,Afrah,Brooklyn,Bushwick,40.69947,-73.92006,Private room,50,1,1,2019-06-25,1,5,333 +30418905,Private Room In Brooklyn Community House,35746135,Lionel,Brooklyn,Borough Park,40.6289,-73.97683,Private room,35,1,9,2019-03-30,1.23,2,0 +30420904,Cozy Brooklyn Bedroom - Close to Manhattan!,226350275,Bryan,Brooklyn,Greenpoint,40.7242,-73.94235,Private room,60,1,1,2018-12-28,0.16,1,0 +30421561,"Ideal UES 1BR w/ Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77135,-73.95035,Entire home/apt,245,30,1,2019-01-11,0.17,232,326 +30421730,2 BR/2BA Modern Apt in Prime TriBeCa Location,65797727,Tram,Manhattan,Tribeca,40.7208,-74.01097,Entire home/apt,300,4,0,,,1,0 +30421742,"""Mi casa es su casa"" Welcome home",224315550,Leonardo,Brooklyn,Williamsburg,40.71043,-73.96505,Private room,90,2,27,2019-07-05,3.84,2,56 +30421981,Nolita/SoHo! Location Share! Views! Elevator!,506779,Claudia,Manhattan,Lower East Side,40.72065,-73.99282,Private room,295,3,0,,,2,338 +30422332,"Huge, Beautiful Apt perfect for Holidays in Harlem",8661991,Olivia,Manhattan,Harlem,40.81223,-73.94156,Entire home/apt,200,2,1,2018-12-30,0.16,1,0 +30422813,Studio in East Williamsburg - Steps to Subway,158970159,Nancy,Brooklyn,Williamsburg,40.70236,-73.94663,Entire home/apt,95,14,1,2019-01-18,0.17,1,0 +30423106,Lou's Palace-So much for so little,228415932,Louann,Queens,Rosedale,40.65417,-73.74158,Private room,45,1,37,2019-07-08,20.94,1,134 +30423282,Lovely Aprt. 6 mins walk from Utica Av. Station,210427776,Obinna,Brooklyn,Crown Heights,40.67708,-73.92944,Private room,25,2,4,2019-01-10,0.59,1,0 +30423571,Bushwick Bedroom,228420131,Jonathan,Brooklyn,Bushwick,40.69456,-73.90714,Private room,35,2,7,2019-05-31,1.07,1,35 +30424508,Bright + cozy room in leafy Williamsburg apartment,383623,Melissa,Brooklyn,Williamsburg,40.71239,-73.95419,Private room,50,5,4,2019-06-24,0.56,1,12 +30424707,"Beautiful, comfortable 1bedroom in Hell's Kitchen!",34292000,Shannon,Manhattan,Hell's Kitchen,40.76602,-73.98766,Entire home/apt,150,2,4,2019-06-22,0.59,1,1 +30425766,Bed in a shared male room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69218,-73.9439,Shared room,30,2,14,2019-05-20,1.92,4,224 +30425770,Queens Corner Lot,128580688,-TheQueensCornerLot,Queens,Queens Village,40.70524,-73.73349,Entire home/apt,150,1,51,2019-07-07,7.43,1,248 +30426001,South Harlem Share,228437214,Paul,Manhattan,Harlem,40.80306,-73.95508,Private room,65,1,48,2019-07-05,6.70,1,4 +30426054,"New York City - East Village +Right in The Action!",7544635,Stephen,Manhattan,East Village,40.72579,-73.98301,Private room,130,2,0,,,2,177 +30427406,Cozy Room for the Holidays in the Heart of Astoria,166794407,Bruna,Queens,Astoria,40.76677,-73.91169,Shared room,55,5,0,,,3,83 +30427521,"Cozy, bright Bohemian pad in NYC's Epic Village",214979297,Fryske,Manhattan,Greenwich Village,40.72792,-73.99877,Entire home/apt,110,5,3,2019-06-04,0.41,1,4 +30427669,Private Rooms in Brooklyn,78104160,Lana,Brooklyn,Bay Ridge,40.63234,-74.0231,Private room,40,14,3,2019-01-18,0.46,1,0 +30428469,"Cozy, spacious Studio located on Upper East Side",29411875,Nikki,Manhattan,Upper East Side,40.76782,-73.95918,Entire home/apt,175,3,3,2019-01-01,0.46,1,0 +30428479,"Clean, Warm, and Comfortable !",228130265,Mr,Brooklyn,East Flatbush,40.66257,-73.92355,Entire home/apt,125,2,22,2019-06-24,3.25,1,82 +30428730,Charming Studio in the heart of West Village,17618432,Camellia,Manhattan,West Village,40.73563,-74.00659,Entire home/apt,215,1,3,2019-01-01,0.42,1,0 +30429113,Minimalist Studio in Central Downtown,17040751,Jaisy,Manhattan,Civic Center,40.71224,-74.00684,Entire home/apt,150,90,0,,,1,0 +30429469,Time Square - DOUBLE DOUBLE ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75472,-73.99713,Private room,199,1,17,2019-04-16,2.37,30,334 +30429519,Bright room in a newly renovated Apt in Brooklyn,82683774,Ruben And Will,Brooklyn,Crown Heights,40.6761,-73.93502,Private room,45,2,17,2019-05-05,2.52,1,14 +30429599,Room in a Magical Bowery Loft in Nolita,20277431,Matthew,Manhattan,Nolita,40.72316,-73.99329,Private room,220,7,0,,,1,89 +30429620,BIG APPLE - SUNNY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75508,-73.99696,Private room,199,1,10,2019-06-10,1.36,30,356 +30429625,Guest Room with 2 beds in Bayridge Brooklyn,148049072,Ahmed,Brooklyn,Fort Hamilton,40.61964,-74.02518,Private room,90,2,1,2019-01-01,0.16,1,79 +30429780,GOTHAM - DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75541,-73.99634,Private room,199,1,17,2019-04-20,2.34,30,354 +30429970,TIME SQ WEST- COZY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75523,-73.99709,Private room,199,1,17,2019-06-16,2.32,30,347 +30430139,TIME SQ WEST-COZY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75659,-73.99867,Private room,179,1,20,2019-05-27,2.76,30,364 +30430163,Apartment in south Williamsburg,96089493,Masashi,Brooklyn,Williamsburg,40.71282,-73.95742,Private room,60,1,1,2018-12-08,0.14,1,0 +30430185,BIG APPLE - COMFY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75655,-73.9969,Private room,179,1,18,2019-05-05,2.49,30,364 +30430235,MANHATTAN WEST - SUNNY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75505,-73.99811,Private room,179,1,16,2019-05-30,2.22,30,363 +30430294,MADISON SQ - COZY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7561,-73.99855,Private room,179,1,13,2019-05-01,1.82,30,361 +30432254,"Beautifully lit, newly renovated bushwick home",284199,Avijit,Brooklyn,Bushwick,40.69277,-73.92133,Private room,70,15,0,,,2,0 +30434346,"Prime private room, on bedford ave in a 2Bd apt",1395530,Dorit,Brooklyn,Williamsburg,40.71285,-73.96124,Private room,27,20,2,2019-05-27,0.42,1,333 +30435549,Lux Condo RM near Manhattan & LGA! Laundry + GYM,137358866,Kazuya,Queens,Maspeth,40.74027,-73.90146,Private room,49,30,0,,,103,251 +30435663,Magical Gramercy Apartment,113417140,Mya,Manhattan,Kips Bay,40.74022,-73.98003,Entire home/apt,200,2,2,2019-06-17,1.40,1,0 +30435839,Comfortable sweet room near to JFK airport - 8min,222049462,Jose,Queens,Rosedale,40.65901,-73.7356,Private room,55,1,42,2019-06-28,5.78,2,87 +30437291,Beautiful large room Manhattan/Roosevelt Island,228524640,Dragomir,Manhattan,Roosevelt Island,40.7616,-73.95052,Private room,55,21,1,2019-03-08,0.24,1,342 +30437417,Spacious 1 Bedroom Brooklyn Apartment,1627760,Lucy,Brooklyn,Clinton Hill,40.68911,-73.96297,Entire home/apt,190,3,1,2019-01-01,0.16,1,0 +30437498,"LXRY BLDG-next to Central Park, Times Sq,SLEEPS 5!",48572835,Jodi,Manhattan,Hell's Kitchen,40.76552,-73.98498,Entire home/apt,300,6,2,2019-06-06,1.33,1,270 +30437677,Clean apt for 5 close to the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.68238,-73.90641,Entire home/apt,125,2,3,2019-07-01,1.11,5,342 +30437968,Beautiful one bed in the best part of Brooklyn,52575295,Jonny,Brooklyn,Williamsburg,40.71972,-73.95705,Entire home/apt,295,5,3,2019-06-22,0.49,1,46 +30438095,Clean apt for 3 close to the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.68325,-73.90637,Entire home/apt,125,2,2,2019-01-02,0.30,5,347 +30438251,New York Highrise,228536894,Victoria,Manhattan,Greenwich Village,40.73293,-73.9946,Private room,47,1,2,2018-12-31,0.31,1,0 +30438271,Large Bedroom Next to Central Park,31610838,Chris,Manhattan,Upper West Side,40.79895,-73.96128,Private room,95,12,1,2019-01-10,0.17,1,0 +30438391,Newly built stylish retreat. A couple's haven...,137358866,Kazuya,Queens,Maspeth,40.73998,-73.90113,Private room,63,30,1,2019-05-01,0.43,103,251 +30438997,Garden apt for 4 near the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.6821,-73.90694,Entire home/apt,125,2,1,2019-04-21,0.37,5,347 +30439073,Gorgeous 2 bedroom condo with a Manhattan skyline,5732940,Anna,Queens,Long Island City,40.7409,-73.95506,Entire home/apt,225,3,1,2019-06-22,1,1,314 +30439210,Charming 2 Bedroom in Park Slope,3548411,CASA Heidi,Brooklyn,Park Slope,40.67559,-73.97633,Entire home/apt,300,3,14,2019-06-28,2.22,1,311 +30439398,Super Sunny Room in Calm Bed-Stuy Apartment,47152279,Noelle,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94288,Private room,40,3,3,2019-05-18,0.43,1,0 +30439600,"NY Penthouse in Midtown, Near everything Christmas",209964870,Maria,Manhattan,Hell's Kitchen,40.76726,-73.9901,Entire home/apt,149,4,1,2019-01-01,0.16,1,0 +30439783,The Halsey Treehouse,138573840,Helen,Brooklyn,Bushwick,40.69453,-73.90667,Private room,90,1,2,2019-01-01,0.31,1,0 +30439949,Fantastic sunny apartment and 10 Min to Manhattan,135060128,Abella,Brooklyn,Williamsburg,40.70809,-73.94913,Entire home/apt,160,1,35,2019-07-04,4.79,2,269 +30440226,Sky-luxury building 1b1b Main bedroom rental,217642173,Xiangjun,Manhattan,Hell's Kitchen,40.76243,-73.99901,Private room,207,1,3,2019-05-29,0.74,2,82 +30440427,NYC Designer 4bedrooms 2bath! PRIVATE PATIO,228552300,Michael,Manhattan,East Village,40.72124,-73.9801,Entire home/apt,805,4,19,2019-07-01,2.63,1,168 +30440488,Gorgeous Private Bedroom Madison 2L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93085,Private room,42,30,1,2019-01-26,0.18,27,311 +30440653,Meserole Street,6284535,Thoralf,Brooklyn,Williamsburg,40.70827,-73.9425,Private room,63,4,0,,,1,187 +30440712,Private Bedroom in Williamsburg Madison 2L-5,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93053,Private room,42,30,0,,,27,332 +30440903,Amazing Bedroom in Bushwick Madison 3L-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93286,Private room,42,30,1,2019-05-21,0.60,27,282 +30441211,Excellent large private room - HK/Columbus Cir,7384820,Lancelot,Manhattan,Hell's Kitchen,40.76547,-73.98521,Private room,115,1,22,2019-06-29,3.22,1,33 +30441377,Great access/2min U can use 5 lines(EFMR7),200239515,Shogo,Queens,Woodside,40.74652,-73.89154,Private room,28,28,0,,,15,0 +30441504,"Large, Comfortable 2 Bedroom Apartment",157287318,Susan,Manhattan,Kips Bay,40.7413,-73.98145,Entire home/apt,275,30,35,2019-06-24,5.00,1,253 +30441751,"Spacious, Sunny Apartment in Bed Stuy",28060043,Olivia,Brooklyn,Bedford-Stuyvesant,40.68757,-73.94428,Entire home/apt,195,2,2,2019-06-16,0.32,1,1 +30441793,Cozy Brooklyn Room,200055931,Jessica,Brooklyn,Red Hook,40.67441,-74.01278,Private room,280,1,0,,,1,90 +30441795,Stunning Luxury Priv. Room: Prime Upper East!,184670155,James,Manhattan,Upper East Side,40.77566,-73.94747,Private room,100,1,6,2019-03-17,1.02,2,0 +30442211,Whole Bedroom in Co-Living Space Madison 3L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93289,Private room,35,30,1,2019-05-30,0.73,27,312 +30442257,"Luxury Building 15 mins from LES +Manhattan",40204585,Olivia,Brooklyn,Bushwick,40.70026,-73.93582,Entire home/apt,180,1,3,2019-04-09,0.47,1,0 +30442290,Modern Private Bedroom in Stuyvesant Madison 3L-5,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68744,-73.93088,Private room,42,30,1,2019-05-08,0.48,27,346 +30442333,"Lovely colonial house in Queens, New York.",228567385,Clarabel,Queens,College Point,40.79118,-73.84766,Entire home/apt,150,2,6,2019-06-03,0.95,1,336 +30442508,Bedroom in Brooklyn Madison 3R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93123,Private room,42,30,0,,,27,358 +30442585,Luxury Private Bedrm in Williamsburg Madison 3R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93057,Private room,42,30,0,,,27,358 +30442665,"Private Bedroom in Williamsburg, Brooklyn",53186123,Jennifer,Brooklyn,Williamsburg,40.71423,-73.96234,Private room,65,1,19,2019-05-25,3.28,1,0 +30442720,Spacious room in heart of Bushwick Madison 3R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68616,-73.93136,Private room,42,30,0,,,27,358 +30442775,Cozy room in Astoria ideal for travelers on budget,220095360,Jayoung,Queens,Astoria,40.76341,-73.92535,Private room,27,7,0,,,1,0 +30442790,Great Private Bedroom at Great Price Madison 3R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68692,-73.9307,Private room,42,30,0,,,27,326 +30442870,Furnished Bedroom in Brooklyn Madison 2R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93069,Private room,42,30,1,2019-04-08,0.33,27,342 +30442999,Bedroom in heart of Bushwick Madison 2R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68726,-73.93289,Private room,42,30,0,,,27,312 +30443032,Modern Williamsburg Beauty,10458297,Michael,Brooklyn,Williamsburg,40.71079,-73.95192,Private room,230,4,0,,,1,35 +30443067,Beautiful Bedroom in Stuyvesant Madison 2R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93132,Private room,42,30,0,,,27,343 +30443115,Modern Bedroom in Williamsburg Madison 2R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68607,-73.93235,Private room,42,30,0,,,27,331 +30443961,"Cozy Private Bedroom in NYC ""LES"" Manhattan!",226503876,Chi,Manhattan,Lower East Side,40.71383,-73.98867,Private room,60,5,13,2019-06-30,1.90,2,253 +30443976,Times Square Palace,193986289,Greg,Manhattan,Theater District,40.76006,-73.98589,Entire home/apt,3000,1,0,,,1,311 +30444003,Bright and Cozy Little Spot in Long Island City,8144643,Karina & Garrett,Queens,Long Island City,40.74588,-73.95377,Entire home/apt,90,5,0,,,1,0 +30444500,Brooklyn Comfy Getaway,193963715,Steph,Brooklyn,East Flatbush,40.65074,-73.92945,Entire home/apt,75,6,2,2018-12-25,0.30,1,24 +30444675,Lovely Apartment in Upper West,209943977,Carolina,Manhattan,Upper West Side,40.80155,-73.96498,Entire home/apt,120,2,4,2019-05-16,0.61,1,0 +30444773,Comfortable Space in the Center of Brooklyn,1157099,Ramon,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94837,Entire home/apt,75,2,11,2019-06-23,1.73,1,0 +30445028,Midtown Priv. Lux.Room in a Penthouse (only girls),172586583,Miriam,Manhattan,Chelsea,40.74772,-73.99146,Private room,110,3,6,2019-06-28,0.84,1,12 +30445079,Spiritual Oasis in the East Village,37254146,Atma,Manhattan,East Village,40.72877,-73.98249,Entire home/apt,189,19,1,2019-01-04,0.16,1,200 +30445156,Great for students!,51842673,Rayquila,Brooklyn,Bedford-Stuyvesant,40.6843,-73.93836,Shared room,725,1,0,,,1,0 +30445539,Cozy & clean private bedroom. Brooklyn NY,225291555,Daniela,Brooklyn,Williamsburg,40.71218,-73.9363,Private room,55,2,5,2019-04-02,0.79,2,160 +30446240,Original NoHo Loft full of Charm & Character,35352941,Bonnie,Manhattan,NoHo,40.72662,-73.99423,Entire home/apt,350,7,0,,,1,219 +30446253,"Affordable, quiet, tasteful bedspace",171198420,Edna,Brooklyn,East Flatbush,40.65343,-73.94914,Private room,35,3,39,2019-07-01,6.43,2,8 +30447266,ENJOYABLE APT. FOR LONG STAY. 15 MIN. TO MANHATTAN,3229770,Luis,Queens,Sunnyside,40.73697,-73.92478,Entire home/apt,149,3,6,2019-06-25,0.91,4,305 +30447329,Bedroom in Crown Heights,68039772,Celeste,Brooklyn,Crown Heights,40.67249,-73.95564,Private room,55,4,1,2018-12-02,0.14,1,15 +30448539,Lower East Side Tenement Get Away,27421445,Brett,Manhattan,Lower East Side,40.71357,-73.98553,Private room,50,6,1,2019-01-06,0.16,1,0 +30448678,Bed in a shared male room2,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.694,-73.94355,Shared room,30,2,18,2019-07-07,2.57,4,192 +30449094,Private Room in A Family House,228608906,Linda,Staten Island,Arrochar,40.59107,-74.07061,Private room,65,1,1,2019-01-01,0.16,2,362 +30449111,Bxny Yankees,227856882,Carl,Bronx,Concourse,40.83513,-73.91797,Private room,99,1,2,2019-06-03,0.32,1,90 +30450834,Mina’s House,228622994,Mina,Queens,Jamaica,40.69409,-73.79363,Private room,29,1,26,2019-04-14,3.84,1,0 +30451593,HOLIDAY RENTAL: Great Room Close to Trains!,27664722,Gloria,Brooklyn,Bushwick,40.69539,-73.92267,Private room,30,3,2,2019-01-01,0.30,1,0 +30452520,"Cozy bedroom in heart of Manhattan, next to Empire",20790185,Anna,Manhattan,Midtown,40.74815,-73.98374,Shared room,90,2,8,2019-06-08,1.11,1,5 +30453281,☯ Ur Cool & Cozy Chambers ☯,69189948,Ella,Manhattan,Washington Heights,40.84878,-73.93449,Private room,50,1,12,2019-07-02,1.69,3,0 +30457958,East village renovated studio,15397994,Samantha,Manhattan,East Village,40.72715,-73.9848,Entire home/apt,175,2,7,2019-06-30,1.10,1,38 +30458672,Newly renovated with elevator room 1,125961131,David,Manhattan,Two Bridges,40.71107,-73.99509,Private room,79,1,44,2019-06-28,6.38,3,3 +30459160,Large 2 Bedroom Apt - Close to everything!,84147508,Andre,Queens,Ridgewood,40.70028,-73.90785,Entire home/apt,190,3,1,2018-12-30,0.16,1,0 +30459588,Beautiful and open apartment in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82071,-73.95359,Shared room,34,1,17,2019-07-02,2.33,3,4 +30460606,"Spacious, Sleeps 10, 2 baths, EAST VILLAGE!",224678494,Amy & Brian,Manhattan,East Village,40.72336,-73.98465,Entire home/apt,443,1,28,2019-06-23,4.75,1,293 +30460675,2 Bedroom Williamsburg Oasis w/Private Backyard,67727548,Rachel,Brooklyn,Williamsburg,40.7066,-73.94625,Entire home/apt,150,2,9,2019-06-18,1.27,1,1 +30461720,"Cozy yet Spacious 1BR Apt, 25 Min from Manhattan",157219382,Lucy,Queens,Elmhurst,40.74717,-73.87645,Entire home/apt,75,6,1,2019-01-25,0.18,1,0 +30462343,⭐SPRING/SUMMER SALE- LARGE OUTDOOR PATIO⭐,216428022,Frankie,Manhattan,Chelsea,40.74877,-73.99754,Entire home/apt,299,2,10,2019-04-28,1.46,1,271 +30462998,Urban Oasis Steps from Central Park,228707670,Mohan,Manhattan,Harlem,40.80466,-73.95635,Entire home/apt,112,3,14,2019-06-19,3.31,1,16 +30463017,Classy welcoming 3-bedroom - 20 Mins to Manhattan,212456912,Mora,Brooklyn,Bushwick,40.69058,-73.91402,Entire home/apt,125,2,22,2019-07-06,3.22,1,122 +30463419,New Years in NYC - in a Gold Star Resort,24552104,Terry,Manhattan,Midtown,40.76424,-73.98143,Private room,350,3,0,,,1,3 +30463784,"Luxury 4br 2ba, sleeps 12! Blocks from Subway.",224684025,David,Brooklyn,Williamsburg,40.70629,-73.95636,Entire home/apt,392,1,19,2019-06-21,3.73,1,337 +30464086,Naelle studio,218543704,Kersaint,Brooklyn,East Flatbush,40.64718,-73.94778,Entire home/apt,150,1,18,2019-06-09,2.54,1,175 +30464266,Beautiful Loft in the Heart of Nolita,14413778,Allegra,Manhattan,Nolita,40.7233,-73.99463,Entire home/apt,800,3,0,,,2,0 +30464498,"Ideally located cozy, quiet apartment",46745791,Christine,Manhattan,Hell's Kitchen,40.76289,-73.98808,Entire home/apt,145,2,3,2019-01-02,0.46,1,0 +30464926,"BK. Private entrance, w pool and gym",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69362,-73.90727,Private room,55,3,7,2019-06-24,1.74,3,79 +30465539,Bohemian twist studio,140348326,Sanja,Queens,Astoria,40.75807,-73.91582,Entire home/apt,80,4,0,,,2,0 +30465758,Stylized room in Harlem 141 st,566838,Max,Manhattan,Harlem,40.82008,-73.94057,Private room,50,1,30,2019-07-07,6.25,2,149 +30466053,Awesome 2 bed apartment in LES,45731391,Laurence,Manhattan,Lower East Side,40.72068,-73.99019,Entire home/apt,195,2,1,2019-01-01,0.16,3,0 +30466608,Manhattan studio near Central Park & Times Square.,38407262,Kay,Manhattan,Upper West Side,40.80017,-73.96882,Entire home/apt,115,3,9,2019-06-22,1.34,1,315 +30466737,Art Life in the City – from Brooklyn to Manhattan,1936796,JenJoy,Brooklyn,Williamsburg,40.71228,-73.93782,Private room,72,2,3,2019-06-30,3,2,0 +30467289,Private South Williamsburg 1BR,20631010,Anna & Ben,Brooklyn,Williamsburg,40.70601,-73.95424,Entire home/apt,180,3,0,,,1,0 +30467785,Private Chic Midtown 1 BD Apt Theater District,40245658,Alexa,Manhattan,Hell's Kitchen,40.76326,-73.99018,Entire home/apt,264,2,8,2019-07-01,1.28,3,2 +30468177,Sunny apartment in the heart of Williamsburg,4765019,Xavier,Brooklyn,Williamsburg,40.7198,-73.95741,Entire home/apt,150,3,9,2019-06-30,1.44,1,0 +30468335,LARGE Prospect Lefferts Gardens Bedroom,228750026,,Brooklyn,Flatbush,40.65152,-73.95271,Private room,55,7,0,,,1,69 +30468550,Lovely one-bedroom in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82012,-73.9515,Entire home/apt,101,2,8,2019-06-06,1.24,3,0 +30468686,Minimal Bed-stuy Bedroom with Fire Escape,11769840,Amber,Brooklyn,Bedford-Stuyvesant,40.68611,-73.92428,Private room,70,2,8,2019-07-01,1.22,2,5 +30468736,Spacious apt in Brooklyn Brownstone 1 min to Metro,39523280,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66184,-73.9495,Entire home/apt,185,2,30,2019-06-21,4.59,1,281 +30469105,"Global Sanctuary ~ Brooklyn, Entire House",88036082,DaNeilia,Brooklyn,East Flatbush,40.63912,-73.92827,Entire home/apt,125,2,17,2019-03-08,2.48,2,0 +30469315,Jax Shack,6394831,Jax,Manhattan,Washington Heights,40.85245,-73.93273,Private room,100,3,0,,,1,0 +30469464,THE RESIDENCES BY HILTON CLUB (Penthouse Suite),227836627,Marilynn,Manhattan,Midtown,40.76287,-73.98073,Private room,699,2,0,,,1,365 +30469490,"Quick walk to Metro, Cleaning, & Great roommates",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70029,-73.91188,Private room,35,30,0,,,9,45 +30469789,Big bright apartment in hip neighborhood,21552055,Shelley,Brooklyn,Greenpoint,40.72594,-73.94852,Entire home/apt,150,1,4,2019-02-17,0.59,2,0 +30470126,Spacious and Cozy Room - Just like Home,162166015,Freddy,Queens,Ridgewood,40.6963,-73.89965,Private room,50,1,3,2019-01-01,0.45,1,189 +30470365,Cozy Brooklyn Apartment,37860219,Rebecca,Brooklyn,Bushwick,40.70073,-73.94037,Entire home/apt,250,1,7,2019-06-29,1.06,2,5 +30470373,⭐$1.6 MILLION CHELSEA FLAT⭐LUXURY AND LOCATION!,227345813,Oliver,Manhattan,Chelsea,40.74294,-73.99795,Entire home/apt,261,2,18,2019-06-19,2.57,1,143 +30471690,Room in Astoria,74215453,Leo,Queens,Astoria,40.76626,-73.91422,Private room,100,5,0,,,1,41 +30473401,Cozy Bedroom in renovated Little Italy Walk-up,25043292,Vane,Manhattan,Nolita,40.7203,-73.99548,Private room,98,7,0,,,2,0 +30473558,Cozy comfortable room,228771058,Ariel,Manhattan,Harlem,40.82625,-73.94859,Private room,52,4,7,2019-06-19,1.83,1,54 +30474972,1 bedroom in newly renovated apartment,67054959,Paola,Manhattan,Harlem,40.82375,-73.94381,Private room,100,1,4,2019-06-19,0.99,1,56 +30475015,Room in Charming Brooklyn Apartment,37860219,Rebecca,Brooklyn,Bushwick,40.70086,-73.9403,Private room,50,2,4,2019-05-07,0.71,2,7 +30476053,Gorgeous 2 Bed Oasis near Vibrant Prospect Park!,1229653,Nana & Karim,Brooklyn,Flatbush,40.64823,-73.9625,Entire home/apt,90,3,2,2019-04-29,0.33,1,0 +30476363,"COZY APARTMENT, CLOSE TO MIDTOWN-MANHATTAN.",3229770,Luis,Queens,Sunnyside,40.73662,-73.92372,Entire home/apt,129,3,7,2019-07-01,1.11,4,280 +30476370,Sweet BR (B) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63832,-73.94908,Private room,75,3,1,2019-07-01,1,3,170 +30476455,Large Studio in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.71163,-73.84319,Entire home/apt,99,3,0,,,3,0 +30476519,Urban Room,160495098,Miller,Brooklyn,Flatbush,40.63296,-73.94894,Private room,72,2,0,,,5,0 +30476876,"Cozy studio is all you need, 20 mins to Manhattan",227647873,Samanta,Queens,Astoria,40.76184,-73.91443,Private room,109,2,50,2019-07-01,6.88,3,0 +30477343,Private Room in Bushwick - 15 Min to Manhattan,51610412,Shayan,Brooklyn,Bushwick,40.70424,-73.92682,Private room,45,4,2,2018-12-30,0.28,1,0 +30477370,Luxury bedroom with River View,21102511,Jae,Manhattan,Roosevelt Island,40.76708,-73.94607,Private room,100,2,2,2019-05-19,0.32,1,43 +30477526,Cozy Getaway in Harlem,2327106,Jenae,Manhattan,Harlem,40.80242,-73.95372,Entire home/apt,275,2,6,2019-05-18,0.95,1,252 +30478251,Singles bed for one,198328249,Hiram,Brooklyn,Bushwick,40.69088,-73.91556,Private room,43,20,0,,,2,365 +30478388,"Your home away from home, private cozy room",104814095,Hanine,Queens,East Elmhurst,40.75938,-73.88158,Private room,29,1,5,2019-07-01,0.86,3,35 +30483084,Spacious Two Bedroom in Crown Heights,129525574,Hezla,Brooklyn,Crown Heights,40.66571,-73.95191,Entire home/apt,125,2,13,2019-06-23,3.61,1,360 +30483778,Manhattan Christmas holiday room at discount!!,221285123,Serena,Manhattan,Hell's Kitchen,40.7589,-73.99165,Private room,69,10,0,,,1,0 +30483899,"Sunny, Spacious Apartment on Upper East Side",82189264,Laur,Manhattan,East Harlem,40.78695,-73.94218,Entire home/apt,215,60,0,,,1,365 +30484485,Furnished bedroom with queen bed desk and wifi,4297835,Shaun,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92749,Private room,75,2,0,,,1,0 +30485423,Cozy & Sunny Sunnyside Room w/ Great Location!,137358866,Kazuya,Queens,Sunnyside,40.73983,-73.92175,Private room,42,30,0,,,103,63 +30486661,Furnished Brooklyn Room. Full-size bed. Fast WiFi.,137358866,Kazuya,Brooklyn,Bushwick,40.69076,-73.91296,Private room,43,30,0,,,103,236 +30489218,"Gorgeous 1-bedroom apt in Williamsburg, Brooklyn",59026607,Anuj,Brooklyn,Williamsburg,40.70392,-73.94885,Entire home/apt,72,3,7,2019-05-16,1.26,1,0 +30489379,Calm bed. perfect for students and travelers.,111542307,Imoy,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92639,Shared room,19,30,1,2019-01-09,0.17,2,339 +30494093,Sunny garden apartment in historic Brooklyn,115355850,Paget,Brooklyn,Boerum Hill,40.68417,-73.98498,Entire home/apt,125,2,23,2019-06-30,4.51,1,60 +30495063,Chic & Bright Brooklyn Bungalow,33988719,Fenice,Brooklyn,Bushwick,40.69056,-73.91596,Private room,90,3,0,,,1,176 +30495338,"Luxe, Quiet, Bright 1br in Prime Williamsburg",228872661,Louie,Brooklyn,Williamsburg,40.71191,-73.95568,Entire home/apt,243,1,23,2019-07-02,4.63,1,107 +30495481,Modern Comfort and a View,228864897,Jen,Queens,Long Island City,40.74769,-73.93938,Entire home/apt,180,1,0,,,1,0 +30495558,Peaceful and Clean Home in Fort Greene.,226471554,JeanRobert,Brooklyn,Clinton Hill,40.68535,-73.96736,Private room,65,3,4,2019-05-10,0.62,1,0 +30495739,Large 2 Bedroom Apartment with Full Amenities,104835154,Itay,Manhattan,Murray Hill,40.74436,-73.97321,Entire home/apt,175,30,0,,,2,274 +30495769,"Luxury building, best location in williamsburg!!",17486626,Alessandro,Brooklyn,Williamsburg,40.7177,-73.96346,Private room,70,9,1,2019-01-31,0.19,2,15 +30496077,Huge Renovated Studio in Manhattan,228878380,Aliona,Manhattan,Upper West Side,40.78549,-73.97535,Entire home/apt,200,5,1,2018-12-31,0.16,1,0 +30496231,Brooklyn Duplex,185725011,Jimmy,Brooklyn,Bedford-Stuyvesant,40.68139,-73.92157,Entire home/apt,65,3,1,2018-12-28,0.15,1,281 +30496236,Charming 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.73932,-73.97997,Entire home/apt,155,30,0,,,8,363 +30496490,@@@Prime Location 2 Bedrooms NYC@@@,195422078,Aby,Manhattan,Midtown,40.75054,-73.98386,Entire home/apt,365,30,0,,,1,145 +30496651,Sunny Bedroom in Magical Ditmas Park,10358835,Nathalie,Brooklyn,Flatbush,40.63895,-73.96619,Private room,49,7,0,,,1,362 +30497529,1 Bedroom in east village,1286331,Nadjah,Manhattan,East Village,40.72579,-73.98344,Entire home/apt,100,3,12,2019-07-02,1.90,1,80 +30498747,Luxurious bedroom in Tribeca - walk to World Trade,36642844,Jason,Manhattan,Tribeca,40.71802,-74.01038,Private room,97,1,4,2019-04-26,0.63,1,0 +30498804,Sun Drenched Room Ridgewood / Bushwick,228895684,Maria,Queens,Ridgewood,40.70711,-73.90713,Private room,35,5,0,,,1,321 +30499051,Chic and spacious split-level,3104928,Nissa,Manhattan,Upper East Side,40.78191,-73.95292,Entire home/apt,275,3,11,2019-06-16,1.78,1,36 +30499109,NYC Christmas spirt entire apartment in Brooklyn,1513294,Urszula,Brooklyn,Bushwick,40.69811,-73.91176,Entire home/apt,95,222,1,2019-01-08,0.16,2,85 +30499163,Luxury midtown east apartment,57302064,Olivia,Manhattan,Midtown,40.75198,-73.9707,Entire home/apt,595,2,3,2019-05-17,0.47,1,55 +30499662,Beautiful Bedroom with Private Bath in Brooklyn,228900197,Gina,Brooklyn,Williamsburg,40.70922,-73.94255,Private room,55,2,2,2019-01-07,0.32,1,0 +30501797,Cozy 1 bedroom east village apartment,5048861,Manuela,Manhattan,East Village,40.72333,-73.97934,Entire home/apt,101,2,3,2019-01-01,0.45,1,0 +30501806,Bright UWS apartment a block from Riverside Park,11710440,Meredith,Manhattan,Upper West Side,40.79283,-73.975,Entire home/apt,180,3,6,2019-05-04,1.28,1,0 +30501956,"3 beds w/ Kitchenette, own bath separate entrance",139195158,Gina,Queens,Woodside,40.75166,-73.90108,Private room,99,2,10,2019-05-09,1.59,1,5 +30502203,"Clean, Cozy Private Bedroom/Apartment",11332183,Tj,Manhattan,Harlem,40.81281,-73.94475,Private room,65,3,3,2019-05-27,0.45,1,0 +30502752,Location! 2bed/with 3 beds Doorman Gym Prime 5237,16098958,Jeremy & Laura,Manhattan,Midtown,40.76516,-73.9819,Entire home/apt,265,30,0,,,96,330 +30502875,Spacious and Cozy Studio,199716727,Amy,Queens,Astoria,40.77008,-73.92,Private room,120,2,0,,,1,66 +30502914,Family Suite Beautiful Brooklyn Home,208955733,Candace,Brooklyn,East Flatbush,40.65441,-73.91995,Private room,95,1,6,2019-07-01,0.87,4,350 +30503020,55&8! Doorman Large One bedroom View 5235,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76557,-73.98384,Entire home/apt,215,30,0,,,96,327 +30503210,Huge sunny 2bed apt in Harlem. Skyline views!,143031643,Aura Xenia,Manhattan,East Harlem,40.81275,-73.93461,Entire home/apt,300,2,1,2019-01-01,0.16,1,0 +30504465,Modern in heart of East Village,34222449,Eli,Manhattan,East Village,40.72531,-73.97973,Private room,105,2,0,,,1,8 +30504780,NEW Brooklyn studio get away!,228898361,Lauren,Brooklyn,Williamsburg,40.71723,-73.94965,Entire home/apt,200,2,7,2019-01-23,1.01,1,0 +30505350,A place to crash in historical Bed-Stuy,141359886,Yuli,Brooklyn,Bedford-Stuyvesant,40.68763,-73.95683,Entire home/apt,100,2,22,2019-06-24,3.32,1,286 +30505732,Renovated 2-Bedroom Apt in Williamsburg with Patio,228937001,Manuela,Brooklyn,Williamsburg,40.7161,-73.95427,Entire home/apt,165,1,24,2019-06-15,3.77,1,213 +30505964,Cozy renovated Brooklyn apt near LGA JFK NYC,73624239,Sarah,Brooklyn,East New York,40.67396,-73.87905,Entire home/apt,120,2,11,2019-07-01,1.68,1,62 +30506672,Peaceful Haven in NYC!,24419496,Melissa,Manhattan,Upper East Side,40.77604,-73.94524,Entire home/apt,125,3,1,2019-01-03,0.16,1,0 +30506799,Cozy Williamsburg Apt in the Coolest Neighborhood!,208537842,Daisy,Brooklyn,Williamsburg,40.71269,-73.9495,Entire home/apt,200,1,3,2019-01-01,0.41,1,0 +30507110,Small room in shared APT near CUMC.,228945290,Daehan,Manhattan,Washington Heights,40.84215,-73.94266,Private room,45,1,4,2019-06-23,0.57,1,90 +30507545,Nice & Big 2 Bedroom Apartment in The East Village,201447930,Daniella,Manhattan,East Village,40.72646,-73.98686,Entire home/apt,260,2,2,2019-06-27,0.32,2,28 +30508185,Cozy private bedroom,228709796,Sujeiry,Queens,Howard Beach,40.66894,-73.85369,Private room,40,1,3,2019-07-06,0.47,1,20 +30509099,"Brooklyn Home - backyard, office, easy to city!",474940,Katie,Brooklyn,Bushwick,40.70077,-73.91724,Entire home/apt,120,30,0,,,1,0 +30509230,Coziest space off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.68992,-73.92594,Private room,70,1,1,2018-12-08,0.14,2,0 +30509658,Quiet Apartment in Times Square / Hell’s Kitchen,57195863,Andrew,Manhattan,Hell's Kitchen,40.75806,-73.98934,Entire home/apt,295,2,7,2019-06-23,1.12,1,129 +30509757,"Cozy area, Woodside! w/ 3windows& AC",200239515,Shogo,Queens,Woodside,40.7434,-73.89908,Private room,32,30,2,2019-03-29,0.32,15,38 +30510107,Brooklyn Designer Home!! Private Bedroom/Bathroom,5977578,Agate,Brooklyn,Crown Heights,40.67902,-73.96042,Private room,45,2,0,,,2,100 +30510275,"Charming, well-located with everything you need!",10184093,Lilian,Brooklyn,Fort Greene,40.69027,-73.97173,Entire home/apt,119,5,3,2019-05-22,0.47,1,0 +30510347,"Modern, Sunlit Brooklyn Apartment",34621599,Ashley,Brooklyn,Crown Heights,40.6782,-73.945,Private room,55,2,6,2019-06-04,0.86,1,89 +30510365,Cg hosting,228286488,Clara,Manhattan,Washington Heights,40.83644,-73.94231,Private room,40,3,1,2018-12-16,0.15,1,245 +30510553,Modern NYC Apartment with high ceilings/views.,58929651,Michael,Manhattan,Theater District,40.76002,-73.98708,Entire home/apt,800,5,0,,,1,0 +30511096,Private room,132784640,Karen,Brooklyn,Sunset Park,40.63866,-74.01746,Private room,40,2,20,2019-06-16,2.83,1,349 +30511114,Astoria Luxury RM w/ Priv Bath 3 mins from subway!,137358866,Kazuya,Queens,Astoria,40.76677,-73.92408,Private room,57,30,0,,,103,238 +30511301,Sunny 2 Bdr Apartment in Williamsburg (1000sqf),13888249,Omer,Brooklyn,Williamsburg,40.70662,-73.95289,Entire home/apt,180,3,3,2019-06-16,0.48,2,0 +30511773,"Sunny, Comfy, Artsy 1BR in Astoria",90034872,Jacqueline,Queens,Astoria,40.76721,-73.92633,Private room,75,2,4,2019-06-30,0.63,1,36 +30511873,Cozy studio middle of Manhattan/ close to Time sq.,2086035,Piyawan,Manhattan,Hell's Kitchen,40.75611,-73.99386,Entire home/apt,130,4,2,2019-04-04,0.52,2,0 +30512146,Artsy Upper East Side Apartment,21296382,Victor,Manhattan,Upper East Side,40.76703,-73.95957,Entire home/apt,200,3,3,2019-04-22,0.46,1,188 +30512304,Quiet and safe one bedroom in Upper Manhattan,228980689,Mark,Manhattan,Washington Heights,40.85502,-73.92763,Entire home/apt,150,5,9,2019-07-01,1.27,1,286 +30512507,Cozy Sunbathed Studio in Brooklyn,38249006,Irene,Brooklyn,Bedford-Stuyvesant,40.68462,-73.94056,Entire home/apt,70,4,14,2019-06-27,2.07,1,17 +30512582,Beautiful 6BR + Terrace in SOHO! Dream Location!,83462709,Khy,Manhattan,Tribeca,40.71459,-74.00933,Entire home/apt,359,1,36,2019-06-20,5.09,1,175 +30513180,Quiet & Cozy Studio in Upper East Side.,11377906,Simon,Manhattan,Upper East Side,40.76756,-73.96856,Entire home/apt,100,2,0,,,1,3 +30513862,Romantic New York City Get-Away,142642693,Bijan,Manhattan,Harlem,40.80861,-73.95451,Entire home/apt,95,2,24,2019-05-13,3.79,1,0 +30514000,"Cozy, quite, clean place to feel like home",160778490,Batka,Manhattan,Inwood,40.86565,-73.92486,Private room,40,2,3,2019-06-01,0.42,1,19 +30514043,Spacious & Renovated Room in a Brooklyn Townhouse!,137358866,Kazuya,Brooklyn,Bushwick,40.6907,-73.91157,Private room,40,30,0,,,103,269 +30514166,Queen Bedroom newly renovated Bushwick Apartment,51985960,Jonathan,Brooklyn,Williamsburg,40.70552,-73.92947,Private room,38,6,2,2019-06-24,0.32,2,95 +30514401,1 bedroom,222805048,Fidel,Manhattan,Washington Heights,40.85025,-73.94105,Private room,40,1,27,2019-06-17,4.01,1,49 +30514931,Pride Weekend East Village Apartment,228998411,Becky,Manhattan,East Village,40.72863,-73.97994,Entire home/apt,170,1,0,,,1,0 +30517097,"Habitación privada en Brooklyn, New York.",115193518,Fede,Brooklyn,Bushwick,40.70468,-73.92443,Private room,45,5,0,,,3,0 +30518222,Clean & Lovely Couples Room Near Mall & Manhattan,137358866,Kazuya,Queens,Elmhurst,40.73578,-73.88049,Private room,51,30,3,2019-06-01,0.54,103,246 +30521015,Comfy Cozy,228691487,Steven,Brooklyn,East Flatbush,40.63835,-73.94402,Entire home/apt,90,1,39,2019-06-23,5.44,1,141 +30522970,GREAT LOCATION! NYC ON A BUDGET!!,22051363,Melissa,Manhattan,Harlem,40.82089,-73.94791,Private room,50,1,0,,,1,0 +30523683,UPSCALE DWELLING,228961973,Michael,Bronx,Concourse Village,40.82674,-73.91935,Private room,85,3,1,2019-04-21,0.38,1,341 +30524542,The Gingerheadman's House!,18403410,Jonathan E,Brooklyn,Crown Heights,40.67817,-73.94691,Private room,150,1,3,2019-03-23,0.43,1,0 +30524703,Bright 1 Bedroom Apartment in Prime Manhattan area,25947734,Ian & Shayne,Manhattan,Upper East Side,40.77203,-73.95988,Entire home/apt,284,4,7,2019-06-10,1.11,1,328 +30525544,Tidy 1 bedroom near NYU,228212001,Nick,Manhattan,East Village,40.72664,-73.98661,Entire home/apt,185,2,7,2019-04-15,1.00,1,14 +30525680,Prospect Heights Garden Duplex,1157541,Damaris,Brooklyn,Prospect Heights,40.67625,-73.97038,Entire home/apt,166,30,1,2019-03-05,0.24,1,365 +30525727,15 minutes From Times Square!!,56778641,Ari,Manhattan,Washington Heights,40.85127,-73.92985,Private room,31,1,28,2019-07-02,4.57,1,111 +30526105,A cozy place,384595,Adam,Manhattan,Lower East Side,40.71422,-73.98808,Entire home/apt,150,3,8,2019-06-24,1.18,1,163 +30526261,Downtown 2 Bed 2 Bath In Nolita - Walk Everywhere!,227814642,David & Maddy,Manhattan,Chinatown,40.71787,-73.9964,Entire home/apt,398,1,10,2019-07-04,2.50,1,328 +30526468,"Elegant Ft. Greene One-Bedroom, 5 min from Subway",10674184,R.,Brooklyn,Fort Greene,40.685,-73.97275,Entire home/apt,185,4,8,2019-06-16,1.33,1,0 +30527061,Sunny 2-bedroom Brooklyn Apt with Rooftop Views,229072295,Fareez,Brooklyn,Carroll Gardens,40.68486,-73.99358,Entire home/apt,200,3,1,2018-12-30,0.16,1,0 +30527403,Luxury 2BD 1Bath Condo in Harlem.,12802075,Farhad,Manhattan,Harlem,40.81981,-73.94326,Entire home/apt,300,4,4,2019-06-01,0.63,1,0 +30527466,Cozy Quiet Studio Right off Time Square,181974787,Helen,Manhattan,Hell's Kitchen,40.76411,-73.99019,Entire home/apt,189,1,4,2019-07-07,0.61,1,74 +30527526,Pelham south,228773060,Reggae In,Bronx,Bronxdale,40.85398,-73.86451,Private room,25,2,1,2018-12-14,0.14,1,0 +30527535,Spacious & Cozy Master BR - Nearby Prospect Park,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66147,-73.9415,Private room,55,1,32,2019-06-30,4.66,7,7 +30527900,Amazing large 1BR Brand New quiet moderm Charm!!!!,52671461,Andrea,Manhattan,Kips Bay,40.73963,-73.98002,Entire home/apt,200,2,5,2019-04-20,0.72,2,338 +30528438,Spacious one bedroom apartment - Brooklyn,192861009,Ish,Brooklyn,Crown Heights,40.67128,-73.91604,Entire home/apt,52,1,13,2019-06-08,1.80,2,88 +30528541,New york Multi-unit building,95575605,Natasha,Manhattan,Chelsea,40.74726,-73.99029,Entire home/apt,250,7,0,,,1,0 +30528551,Luxury penthouse,225620845,Maria,Brooklyn,Sheepshead Bay,40.58527,-73.95741,Entire home/apt,400,3,2,2019-04-25,0.32,3,363 +30528692,Real New York Experience! Pvt 1 bedroom apt in UES,18294695,Dannie,Manhattan,Upper East Side,40.77469,-73.95067,Entire home/apt,102,30,2,2019-05-26,0.31,1,0 +30529492,My sweet Home,229087097,Jessica,Queens,Ditmars Steinway,40.76949,-73.89222,Private room,80,1,0,,,1,179 +30530151,Brand new luxurious apartment in SoHo!,1725141,Sl,Manhattan,NoHo,40.72696,-73.99501,Entire home/apt,390,15,1,2019-06-06,0.91,1,15 +30530758,"Centrally located Brooklyn 4br, Stunning Skyline",228411197,Bryson,Brooklyn,Bedford-Stuyvesant,40.69468,-73.93304,Entire home/apt,450,1,10,2019-06-23,1.84,1,352 +30531143,Cozy Home 家 5,213781715,Anting,Brooklyn,Greenpoint,40.73378,-73.95569,Private room,199,1,0,,,33,180 +30531163,"Private Room in Top Floor Apartment, heart of NYC",218526982,Liz,Manhattan,Lower East Side,40.72165,-73.98693,Private room,110,1,0,,,2,0 +30531246,"Luxury Apt, 1 BR, Stainless Steel Appliances",226201658,Vanessa,Brooklyn,Williamsburg,40.70755,-73.94892,Entire home/apt,90,30,2,2019-04-05,0.45,3,314 +30531270,One of a kind Brooklyn waterfront loft & rooftop,8187816,Mona & Miko,Brooklyn,Williamsburg,40.71025,-73.96921,Entire home/apt,550,7,0,,,1,20 +30531585,The Williamsburg Artist's Pad,6349101,Michael,Brooklyn,Williamsburg,40.71058,-73.93912,Entire home/apt,111,5,1,2018-12-08,0.14,1,0 +30531695,Boho tranquil room in bushwick/ridgewood,227682707,Michelle,Queens,Ridgewood,40.70383,-73.91171,Private room,60,2,2,2018-12-30,0.29,1,0 +30531953,SUPERIOR KING ROOM -PRIME WILLIAMSBURG,198861577,Novo,Brooklyn,Williamsburg,40.72132,-73.95463,Private room,295,1,2,2019-04-04,0.60,5,90 +30532068,Astorias spacious room in a historical mansion!!,229104353,Abram,Queens,Astoria,40.77606,-73.92804,Private room,91,2,0,,,2,341 +30533086,"Cozy, Sunny Studio in the heart of Central Harlem.",55970820,Tashina,Manhattan,Harlem,40.81785,-73.93989,Entire home/apt,54,30,0,,,1,0 +30533273,Your own little apartment in New York,140497439,Margarita,Manhattan,Washington Heights,40.83658,-73.94088,Entire home/apt,55,7,2,2019-04-20,0.33,1,0 +30533835,"Quiet, comfortable and clean bedroom on UWS",9930986,Julio,Manhattan,Upper West Side,40.80152,-73.96673,Private room,110,1,0,,,1,0 +30535180,Cozy poet’s room in Central Manhattan,14254368,Jiaoyang,Manhattan,Murray Hill,40.7503,-73.97747,Private room,75,4,0,,,1,87 +30535751,Townhouse for 12 close to the city & w free gym,105367031,Miriam,Brooklyn,Bushwick,40.68162,-73.90593,Entire home/apt,325,2,8,2019-06-24,2.38,5,342 +30535813,Cozy room in heart of NYC,98260543,Ley,Manhattan,Upper East Side,40.76981,-73.95365,Private room,135,1,11,2019-06-28,1.75,3,330 +30535905,Charming 1 Bedroom Apartment in Carroll Gardens,229124258,Jett,Brooklyn,Carroll Gardens,40.67775,-74.00131,Entire home/apt,79,10,0,,,1,19 +30536087,Time Square South Deluxe King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75622,-73.99683,Private room,179,1,12,2019-06-07,1.69,30,175 +30536585,"Bright, spacious en-suite room in co-living house",1418015,Reuben,Brooklyn,Crown Heights,40.67441,-73.95235,Private room,80,2,10,2019-07-01,1.57,4,2 +30537134,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.74449,-73.83476,Private room,80,1,10,2019-06-24,1.41,6,169 +30537221,Spacious beautifully designed modern 2-bedroom,3137237,Oleg,Manhattan,Morningside Heights,40.81068,-73.9582,Entire home/apt,175,1,1,2018-12-30,0.16,1,0 +30537849,NEW GARDEN APT IN THE HEART OF PARK SLOPE,21527486,Michele,Brooklyn,Park Slope,40.673,-73.97721,Entire home/apt,211,3,8,2019-06-11,1.20,1,90 +30537851,Upper West Side 3-bedroom,81009456,Carolina,Manhattan,Upper West Side,40.80368,-73.96662,Entire home/apt,133,1,2,2018-12-29,0.28,1,0 +30538323,Queens Garden,10748308,Raquel,Queens,Kew Gardens,40.7048,-73.83384,Entire home/apt,200,3,0,,,1,0 +30538753,Beauitful spacious Loft apartment,854567,Oketo,Brooklyn,Bedford-Stuyvesant,40.69202,-73.95456,Private room,1350,21,0,,,2,365 +30539100,Clean Airy 1-Bedroom Apartment in Gowanus,227915163,Stephen,Brooklyn,Gowanus,40.66871,-73.99038,Entire home/apt,70,6,1,2018-12-10,0.14,1,0 +30539227,NEWLY AVAILABLE - Just TWO BLOCKS away from LGA,229149810,Tussan,Queens,East Elmhurst,40.76887,-73.8741,Private room,75,1,33,2019-07-06,4.63,3,81 +30539229,Heart of Little Italy / Soho,49223549,Michael,Manhattan,Little Italy,40.72007,-73.99695,Entire home/apt,250,1,0,,,1,0 +30539307,Cozy 1Bedroom Loft Style living (The entire Floor),229149668,Paul,Brooklyn,Bedford-Stuyvesant,40.68294,-73.95451,Entire home/apt,150,3,26,2019-07-07,3.79,1,93 +30539902,Sunny 1BR in Williamsburg/Greenpoint,4169001,Lani,Brooklyn,Williamsburg,40.72006,-73.94593,Entire home/apt,175,5,0,,,1,0 +30540323,NYC East Village Doorman Unit with Private Rooftop,55403309,Justin,Manhattan,East Village,40.7249,-73.98174,Entire home/apt,240,3,1,2019-01-03,0.16,2,0 +30541377,Beautiful Private Room in Harlem/Hamilton Height,60939718,Tisya,Manhattan,Harlem,40.82576,-73.94454,Private room,43,5,1,2018-12-20,0.15,1,0 +30541439,Brooklyn room with Empire State building view,56665831,Perrine,Brooklyn,Bedford-Stuyvesant,40.68947,-73.95269,Private room,99,5,1,2019-01-02,0.16,1,0 +30541504,"Spacious, sunny room in hip neighbourhood!",21132706,Gjermund,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94958,Private room,50,3,0,,,1,25 +30542320,Clean music/film themed bedroom,212466724,Estevan,Brooklyn,Bushwick,40.68667,-73.9154,Private room,37,5,0,,,1,0 +30546334,Renovated. Nice & clean 1/F RM in BK. Superhost!,137358866,Kazuya,Brooklyn,Bushwick,40.69177,-73.9135,Private room,41,30,2,2019-03-31,0.41,103,186 +30547975,GARDEN APARTMENT IN CLINTON HILL,31792728,Heather,Brooklyn,Clinton Hill,40.68414,-73.95976,Entire home/apt,125,2,30,2019-07-07,4.59,1,243 +30548591,FEMALE SHARED ROOM3 Single Beds Near Subway-3,172369331,Abby,Brooklyn,Coney Island,40.57863,-73.98455,Shared room,29,18,1,2019-02-15,0.21,10,221 +30551020,2BR in Williamsburg | One block from Hewes JMZ,2324779,Erik,Brooklyn,Williamsburg,40.70898,-73.95391,Entire home/apt,250,6,1,2018-12-31,0.16,1,0 +30551807,Bedford Ave Apartment,229229020,Alexandra,Brooklyn,Greenpoint,40.72109,-73.95403,Entire home/apt,115,7,3,2019-03-23,0.48,1,11 +30552071,Hilton Cub at West 57 st Penthouse King Size,85385725,Benjamin,Manhattan,Midtown,40.76399,-73.97718,Private room,550,2,0,,,2,145 +30552204,Bright Luxe Williamsburg Home - 4br 2ba,227987738,Todd,Brooklyn,Williamsburg,40.70807,-73.95604,Entire home/apt,392,1,18,2019-06-19,3.12,1,318 +30552566,"Spacious King Bedroom in Downtown, NY",24916650,Kat,Manhattan,East Village,40.72301,-73.98347,Private room,125,4,21,2019-07-06,3.56,1,52 +30552680,HUGE DESIGNER SOHO LOFT,4075403,Karim,Manhattan,SoHo,40.72046,-74.00151,Entire home/apt,950,4,1,2019-04-19,0.37,1,90 +30552921,"Dreamy Brooklyn 3br, sleeps many! ~*Must See*~",227990647,Jona,Brooklyn,Bedford-Stuyvesant,40.694,-73.93354,Entire home/apt,360,2,26,2019-06-21,3.94,1,21 +30553339,Spacious Brooklyn Apartment,229115651,Jeremy,Brooklyn,Bushwick,40.69632,-73.92908,Private room,50,5,0,,,1,0 +30554355,All You Need- Cozy East Village 1 BD Apt.,9994745,Kimberly,Manhattan,East Village,40.72367,-73.98244,Entire home/apt,175,2,2,2019-02-17,0.32,1,2 +30554660,STEPS TO COOL BARS AND COFFEE SHOPS! B/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68548,-73.95679,Private room,45,30,0,,,11,354 +30554810,Railroad 2 bdr apartment,70065270,Iryna,Manhattan,East Harlem,40.789,-73.94798,Entire home/apt,90,3,1,2019-01-01,0.16,1,0 +30554915,Clean & Spacious Private Bedroom 2 min. to Subway,24594462,Fatima,Manhattan,East Harlem,40.79617,-73.946,Private room,95,2,27,2019-06-25,3.91,2,33 +30555359,YOUR BROOKLYN HOME! COZY + COMFY + CONVENIENT!B/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95806,Private room,50,15,2,2019-05-25,0.85,11,189 +30555709,Spacious Sanctuary -Great Neighborhood/City Center,229255407,Jose,Manhattan,Midtown,40.74551,-73.98744,Entire home/apt,150,1,4,2019-01-20,0.57,1,5 +30555898,"Nice, Clean and quiet place in Williamsburg",12715154,Leo,Brooklyn,Williamsburg,40.71954,-73.9461,Private room,100,5,1,2019-01-01,0.16,2,0 +30556230,THE BEST LOCATION TO EXPERIENCE NYC! B/3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68736,-73.95777,Private room,59,15,5,2019-05-18,0.94,11,343 +30557081,SUPER LOCATION + OVERSIZED SUNLIT ROOM! R/4,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95781,Private room,60,15,8,2019-07-04,1.12,11,330 +30557292,TRAVELERS + STUDENTS + NYC LOVERS WELCOME! L/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9573,Private room,48,15,2,2019-01-03,0.31,11,189 +30557569,Convenient East Village Apartment,9047774,Katrina,Manhattan,East Village,40.73009,-73.98884,Entire home/apt,150,4,0,,,1,0 +30557583,"Wonderful Chelsea Studio w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73888,-73.99782,Entire home/apt,287,30,0,,,232,218 +30557658,SERENE ESCAPE IN THE BUSY CITY! L/3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68737,-73.95798,Private room,48,15,5,2019-04-27,0.70,11,364 +30557789,Spacious private room with in room MOVIE THEATER,4599529,Luke,Brooklyn,Williamsburg,40.71673,-73.94948,Private room,65,2,1,2018-12-15,0.15,1,95 +30557920,Great studio with beautiful backyard,148508902,Olga,Brooklyn,Sheepshead Bay,40.5864,-73.9432,Entire home/apt,69,1,42,2019-06-30,6.09,1,57 +30558005,Penthouse apartment in the heart of Williamsburg,22591930,Matthew,Brooklyn,Williamsburg,40.71901,-73.96303,Private room,70,2,1,2019-01-01,0.16,1,0 +30558097,Warm Cozy Apt in Brooklyn,229269352,Neil,Brooklyn,Bedford-Stuyvesant,40.68879,-73.9534,Private room,120,2,2,2019-01-01,0.30,1,89 +30558219,Master bedroom w/priv bathroom in heart of BedStuy,1313385,Dania,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93145,Private room,90,3,2,2019-06-17,2,1,1 +30558568,ALL YOU COULD WANT FOR YOUR STAY IN BK! L/4,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95752,Private room,40,15,3,2019-05-03,0.47,11,354 +30558682,Cutepraise home in queens,229272976,Olly,Queens,St. Albans,40.69064,-73.76009,Private room,60,2,15,2019-06-17,2.27,1,356 +30559387,Brooklyn 1 room,229278227,明凤,Brooklyn,Bensonhurst,40.62071,-73.99912,Private room,45,1,13,2019-06-30,2.07,1,324 +30559544,Cozy Home,195024580,Mikael,Brooklyn,Williamsburg,40.72066,-73.95726,Entire home/apt,150,7,2,2019-03-11,0.32,1,8 +30559819,Urban Oasis II,2522815,Tricia,Brooklyn,Sunset Park,40.66356,-73.99368,Entire home/apt,150,2,0,,,2,29 +30561213,EXPERIENCE COLORFUL NYC IN THE BEST LOCATION! R/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68723,-73.95742,Private room,48,15,4,2019-05-21,0.56,11,341 +30561353,Williamsburg waterfront 1 BR in luxury building,169898690,Antonia,Brooklyn,Williamsburg,40.72161,-73.96327,Entire home/apt,125,90,0,,,1,129 +30561846,Brand new studio,35256210,Bruno,Queens,Long Island City,40.75038,-73.94069,Entire home/apt,200,4,0,,,1,0 +30561958,Vibey Artist Studio - Heart of Lower East Side,35435470,Martha Nicole,Manhattan,Lower East Side,40.72149,-73.98918,Entire home/apt,99,1,3,2019-01-27,0.49,1,0 +30562291,Best Location in Luxury Building near Times Square,21496186,Richard,Manhattan,Midtown,40.75051,-73.98625,Private room,94,1,27,2019-07-01,4.58,2,76 +30562328,Large Room 11minutes to Manhattan NYC at Safe area,229293180,Jessica,Queens,Woodside,40.7419,-73.90236,Private room,55,3,20,2019-07-03,3.39,1,44 +30562360,Spacious Apartment in the heart of Manhattan,12076120,Victoria,Manhattan,West Village,40.74005,-74.00525,Entire home/apt,205,2,0,,,1,157 +30562364,"Stunning 2,000 sq ft 2BR in Williamsburg",5524422,Anne,Brooklyn,Williamsburg,40.71362,-73.95714,Entire home/apt,520,3,1,2019-01-01,0.16,1,24 +30562589,Gut renovated one bedroom in Brooklyn!,51596064,Toma,Brooklyn,East Flatbush,40.64487,-73.94711,Entire home/apt,70,1,23,2019-01-28,3.27,1,0 +30563655,BEST LOCATION -TIME SQUARE-Javits- Spacious 2BEDS.,229288524,Yan,Manhattan,Hell's Kitchen,40.75569,-73.99111,Entire home/apt,128,5,0,,,2,142 +30563760,Private One Bedroom Chelsea Apartment New York-#1,9328763,Synergy Global,Manhattan,Chelsea,40.74511,-73.99468,Private room,138,25,0,,,2,0 +30565063,Private Bedroom on Newly Renovated Apartment,61560050,Bárbara,Brooklyn,Bushwick,40.70279,-73.91347,Private room,55,2,2,2019-01-01,0.32,1,0 +30565107,Quiet but close to Main Street.Flushing Chinatown,229309933,Jeniffer,Queens,Flushing,40.76389,-73.82349,Shared room,49,1,3,2019-06-23,0.94,2,90 +30565284,Great for family/friends! 2 bdrm duplex sleeps 6!,181651082,Fran,Queens,Rosedale,40.65861,-73.73672,Entire home/apt,135,1,5,2019-06-09,0.76,3,36 +30566489,"2-Bedroom Bright Duplex, Heart of Williamsburg",3933608,Harsha,Brooklyn,Williamsburg,40.71713,-73.9622,Entire home/apt,280,3,0,,,1,0 +30566910,Spacious East Village Zen Den,33531612,Kim,Manhattan,East Village,40.72365,-73.98643,Entire home/apt,110,2,1,2019-05-27,0.70,1,280 +30567047,WELCOME TRAVELERS AND NYC LOVERS! R/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.6871,-73.95735,Private room,40,15,4,2019-05-25,0.56,11,325 +30567064,Manhattan Midtown West 3B Apartment,107053688,Qiuyang,Manhattan,Upper West Side,40.77394,-73.98955,Entire home/apt,500,5,5,2018-12-14,0.71,1,0 +30567265,A gem in Bushwick,61107296,Jessica,Queens,Ridgewood,40.70732,-73.91491,Private room,65,1,3,2019-01-02,0.47,1,0 +30567518,Private Bedroom,11127879,Roger,Brooklyn,Crown Heights,40.67315,-73.9288,Private room,79,3,0,,,2,359 +30567765,"Bedstuy is the best, where I rest my chest",9334241,George,Brooklyn,Bedford-Stuyvesant,40.68079,-73.94719,Entire home/apt,150,2,2,2019-05-19,0.64,1,177 +30567827,2 blocks to Main Street Flushing Chinatown NY,229309933,Jeniffer,Queens,Flushing,40.76226,-73.82459,Private room,60,1,6,2019-05-19,0.87,2,365 +30568383,Prime Williamsburg,171382321,Nicole,Brooklyn,Williamsburg,40.71381,-73.96016,Entire home/apt,400,7,1,2018-12-10,0.14,1,219 +30568497,Comfy Haven,229325672,Linda,Manhattan,Upper West Side,40.77648,-73.97895,Entire home/apt,195,3,11,2019-06-19,1.71,1,13 +30570178,CHEERFUL RM IN BROOKLYN! EASY ACCESS TO TRAIN! R3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95801,Private room,45,15,3,2019-05-12,0.47,11,199 +30570251,Cozy Room in Brokklyn,13400096,Ron,Brooklyn,Crown Heights,40.67646,-73.94333,Private room,40,25,0,,,3,0 +30570449,PEACEFUL ESCAPE FROM THE BUSY CITY! L/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68598,-73.95735,Private room,45,15,3,2019-01-16,0.42,11,331 +30570943,SUMMER 50% OFF SALE - 4 Min Walk to Times Square,227340438,Andrew,Manhattan,Hell's Kitchen,40.75833,-73.9919,Entire home/apt,240,2,14,2019-06-11,1.98,1,156 +30574688,Modern&pretty 3-B apt near everything you want!!!,33064599,Yukee,Manhattan,Upper West Side,40.80002,-73.9671,Entire home/apt,199,1,4,2019-04-23,0.68,6,320 +30574764,"Lovely, Convenient & Renovated Bushwick BK Room.",137358866,Kazuya,Brooklyn,Bushwick,40.69262,-73.91198,Private room,35,30,4,2019-05-12,0.66,103,269 +30577164,Comfort zone,156505456,John,Brooklyn,East New York,40.66682,-73.87351,Private room,57,3,1,2019-05-03,0.44,13,90 +30577273,A safe room to stay in Manhattan. Clean & sunny.,137358866,Kazuya,Manhattan,Harlem,40.81254,-73.94199,Private room,31,30,1,2019-06-08,1,103,0 +30578526,Summertime in Brooklyn’s Bedford–Stuyvesant,229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68422,-73.92314,Private room,65,2,16,2019-07-06,2.50,3,222 +30578954,Beautiful Master Bedroom & Private Bath,15929157,Christina,Brooklyn,East New York,40.67199,-73.88253,Private room,36,15,1,2019-02-28,0.23,3,213 +30580115,Spacious artsy private bedroom,9572607,Nicole,Manhattan,Lower East Side,40.72176,-73.98825,Private room,150,1,8,2019-06-09,2.07,3,0 +30580668,Clinton Hill Studio,2948760,Ian,Brooklyn,Clinton Hill,40.68554,-73.96651,Entire home/apt,120,3,3,2019-04-27,0.47,1,0 +30580793,Beautifully Renovated Mid Century Modern Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72189,-73.99133,Private room,150,1,16,2019-07-06,2.25,2,20 +30581572,Sun-lit Room in the Heart of SoHo,62398329,Begüm,Manhattan,SoHo,40.72183,-73.99903,Private room,90,1,0,,,1,0 +30582797,Modern Chic Studio,38256284,Daniyal,Manhattan,Chelsea,40.74322,-73.99547,Entire home/apt,250,1,1,2018-12-30,0.16,1,0 +30582854,Cozy Private Room w/ Full Bed - Perfect for Travel,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66015,-73.94251,Private room,55,1,24,2019-06-27,3.38,7,45 +30584054,Sunny private room in the heart of Brooklyn.,104813064,Kate,Brooklyn,Kensington,40.64637,-73.97593,Private room,56,1,6,2019-02-22,0.88,1,0 +30584138,Garden apt for 7 close to the city & w free gym,105367031,Miriam,Brooklyn,Bushwick,40.68346,-73.90568,Entire home/apt,250,2,0,,,5,342 +30584271,"SuperBig Beautiful room,clean manhattan 30min.",229421782,Sunny,Brooklyn,East Flatbush,40.64743,-73.94356,Private room,43,3,3,2019-03-21,0.43,2,58 +30584721,Gorgeous GOOD VIBES One Bedroom in Greenpoint,5221013,Mario,Brooklyn,Greenpoint,40.7205,-73.94717,Entire home/apt,80,3,2,2019-05-25,0.47,1,3 +30584948,All Girls Studio Apt.,145041366,Anchal,Manhattan,Kips Bay,40.74374,-73.97998,Entire home/apt,200,7,0,,,1,90 +30585278,"Bright, warm & wonderful bedroom in Greenpoint",5214227,Tasha,Brooklyn,Greenpoint,40.72386,-73.9506,Private room,90,2,1,2019-05-19,0.59,1,63 +30585355,Hollywood Inn,229431423,Yolanda,Brooklyn,Crown Heights,40.6737,-73.91608,Private room,100,1,1,2019-01-06,0.16,1,89 +30586349,Open view on Manhattan,105622510,Manny,Manhattan,East Harlem,40.79179,-73.93524,Private room,52,2,10,2019-06-15,1.60,1,5 +30586563,"Charming, Quiet Prewar Apt in Midtown, Manhattan",107374902,Liam,Manhattan,Midtown,40.75426,-73.96524,Entire home/apt,182,3,5,2019-06-30,0.80,1,41 +30587250,Best Stuy!,114003480,Noah,Brooklyn,Bedford-Stuyvesant,40.69353,-73.94375,Private room,50,2,0,,,1,220 +30587285,Spice island nook,224042160,Pettrina,Brooklyn,East Flatbush,40.65051,-73.94969,Private room,35,1,3,2019-01-01,0.44,3,69 +30587338,Spacious 2 bedroom near Central Park,44886301,Dayane,Manhattan,Upper East Side,40.76991,-73.95327,Private room,175,3,0,,,2,0 +30587461,Cozy Quaint Modern Garden Apartment,229443636,Burhan,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95279,Entire home/apt,349,2,15,2019-06-02,2.11,1,349 +30587740,Mogul Hideout 2: Modern Lifestyle 4 min from JFK,221204634,Faith,Queens,Laurelton,40.67156,-73.74383,Entire home/apt,125,2,26,2019-06-30,3.79,1,21 +30588600,PRIVATE bedroom and bathroom in Upper Manhattan,34464182,Dahilil,Manhattan,Harlem,40.82769,-73.94758,Private room,100,5,4,2019-05-26,1.04,1,89 +30588659,"Chic, Contemporary 2br Brooklyn Condo",227993479,Carrie & Mick,Brooklyn,Bushwick,40.70165,-73.92056,Entire home/apt,231,1,23,2019-06-20,3.71,1,335 +30588681,Private Cozy Room at East Village (Manhattan),75509095,Gia,Manhattan,East Village,40.7286,-73.97952,Private room,69,1,35,2019-06-16,4.93,2,98 +30588700,Great unit in prime Williamsburg,92612757,Avihay,Brooklyn,Williamsburg,40.71716,-73.95183,Entire home/apt,200,2,1,2019-01-02,0.16,1,219 +30589552,Clean & Spacious Apt. 2 min. to Subway,24594462,Fatima,Manhattan,East Harlem,40.79519,-73.94543,Entire home/apt,135,2,2,2019-06-08,1.67,2,2 +30589636,Furnished 1000sq large 2bed + office in Harlem,229458601,Kay,Manhattan,Harlem,40.81315,-73.9511,Entire home/apt,3200,90,0,,,1,365 +30589865,VANLIFE in NYC! Perfect for minimal travelers!,20902952,Michael,Brooklyn,Red Hook,40.67204,-74.00792,Entire home/apt,120,2,1,2019-05-05,0.45,1,157 +30590147,"Williamsburg private, comfy, bright room",18494627,Olivia,Brooklyn,Williamsburg,40.70929,-73.94719,Private room,40,58,1,2019-01-02,0.16,1,15 +30590265,Charming Private Apartment near Brooklyn Museum1BR,229181517,Rose,Brooklyn,Crown Heights,40.67179,-73.95363,Entire home/apt,125,3,18,2019-07-01,2.61,1,96 +30590337,"Awesome Studio-Apt near Times Square, super quiet",60081723,Antoine,Manhattan,Hell's Kitchen,40.76239,-73.99119,Entire home/apt,199,3,21,2019-06-30,3.00,2,228 +30590361,"Bright, Spacious, & Cheerful! 5min walk to Metro L",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91201,Private room,37,30,1,2019-05-31,0.75,9,45 +30590895,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.7439,-73.83261,Private room,80,1,14,2019-07-05,1.97,6,138 +30590921,Feels Like Home Near JFK and LGA,16608415,Smidty,Brooklyn,East New York,40.66745,-73.89217,Private room,25,1,25,2019-06-26,3.61,3,211 +30591122,Cosy private bedroom in Williamsburg!,229469300,Alisa,Brooklyn,Williamsburg,40.70855,-73.95072,Private room,55,2,2,2019-05-10,0.75,2,4 +30591250,"★Bright,Spacious 1BR near Empire State/5th Ave",24131677,Eve,Manhattan,Midtown,40.74315,-73.98222,Entire home/apt,250,20,14,2019-07-04,2.04,2,315 +30591382,Comfy Room w/ Bunk Bed - Great for Friends!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.9413,Private room,55,1,25,2019-06-29,3.52,7,42 +30591478,Spacious-Sleeps 2-Next to trains-Flex Chk In Times,228263278,475,Manhattan,Harlem,40.82428,-73.94854,Private room,160,2,0,,,4,180 +30592244,The NYC Quick Stay- Flexible Check-In,228263278,475,Manhattan,Harlem,40.82565,-73.94815,Private room,95,2,5,2019-06-05,0.79,4,178 +30592546,Spacious Bronx apartment near Bronx Zoo,229480146,Marcelina,Bronx,Tremont,40.84289,-73.88773,Entire home/apt,40,2,17,2019-06-28,2.70,1,107 +30592647,Private Bedroom w/ Bunk Bed - Great for Friends!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66065,-73.94116,Private room,55,1,20,2019-06-17,2.82,7,53 +30593615,Spacious and Sun-Soaked Luxury 1BR,22374232,Chuck,Brooklyn,Williamsburg,40.71051,-73.96564,Entire home/apt,145,2,0,,,1,4 +30593639,Amazing Luxury Loft in Williamsburg,1443812,Luciana,Brooklyn,Williamsburg,40.71101,-73.96439,Entire home/apt,190,4,2,2019-01-20,0.32,2,128 +30593915,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.74548,-73.8341,Private room,80,1,10,2019-07-07,1.59,6,163 +30594102,Comfy Private Room w/ Full Bed - Near Prospect Prk,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66055,-73.94242,Private room,55,1,19,2019-06-04,2.70,7,53 +30594172,Flushing downtown large single room,228879817,Vicky,Queens,Flushing,40.74444,-73.83281,Private room,80,1,15,2019-06-24,2.28,6,137 +30594607,Cozy Apartment in Hell’s Kitchen,75998293,Nicolas,Manhattan,Hell's Kitchen,40.76475,-73.98662,Private room,160,8,1,2019-05-07,0.48,1,64 +30594645,Newly renovated with elevator room 3,125961131,David,Manhattan,Two Bridges,40.71217,-73.99483,Private room,75,1,41,2019-06-18,5.97,3,2 +30595234,Single Bedroom-Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76718,-73.95715,Private room,80,1,3,2018-12-21,0.42,5,0 +30595611,Home away from Home! 2 Bedroom Apartment.,229503748,Jamal,Manhattan,Hell's Kitchen,40.76323,-73.98893,Entire home/apt,250,2,26,2019-06-29,3.80,1,60 +30596759,Cozy LES Room,229509602,Javier,Manhattan,Lower East Side,40.71997,-73.98491,Private room,85,2,23,2019-07-07,3.35,1,344 +30596912,Warm & sweet private bedroom,104167105,Max,Manhattan,Upper West Side,40.78484,-73.97862,Private room,120,2,8,2019-02-18,1.15,1,0 +30597566,"Central Park S. Doorman, elevator, laundry, bedroo",5300413,James,Manhattan,Midtown,40.76698,-73.97988,Private room,60,30,0,,,1,125 +30622293,Pvt. Room w/full bed safe & close to everything,222760631,Denise,Bronx,Throgs Neck,40.82507,-73.8204,Private room,45,3,0,,,1,36 +30628768,Affordable room near airport - LGA - and subway!,137358866,Kazuya,Queens,Elmhurst,40.73501,-73.87989,Private room,36,30,1,2019-03-01,0.23,103,234 +30634438,Charming entire house,225454310,Tosin,Queens,Far Rockaway,40.5998,-73.75586,Entire home/apt,145,1,3,2019-06-23,0.45,4,311 +30636732,New york Brownstone,9501531,Andre,Manhattan,Harlem,40.82314,-73.94505,Private room,55,1,14,2019-07-04,1.98,3,359 +30637957,Doorman Elevator Prime Location UN! 5242,16098958,Jeremy & Laura,Manhattan,Midtown,40.75554,-73.96533,Entire home/apt,220,30,0,,,96,332 +30638114,"Loft-like + Roomy Dumbo Studio w/ Office, Doorman by Blueground",107434423,Blueground,Brooklyn,DUMBO,40.70372,-73.98545,Entire home/apt,312,30,0,,,232,349 +30638353,Beautiful Studio on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.73945,-73.97934,Entire home/apt,118,30,0,,,8,326 +30639972,Prime Doorman Elevator! Huge One bedroom UN 5239,16098958,Jeremy & Laura,Manhattan,Midtown,40.75501,-73.96594,Entire home/apt,220,30,0,,,96,342 +30640875,Traditional yet Modern home away from home,229554591,Kelsang,Queens,Sunnyside,40.73571,-73.91837,Private room,49,1,1,2019-01-19,0.18,2,0 +30641771,Prime Doorman Elevator Huge One Bedroom 5238,16098958,Jeremy & Laura,Manhattan,Midtown,40.75609,-73.96684,Entire home/apt,220,30,0,,,96,336 +30642253,1 Bedroom+1 bath in Artsy modern Williamsburg NY,44152990,Olivia,Brooklyn,Williamsburg,40.71894,-73.96187,Private room,90,3,4,2019-04-25,0.60,1,11 +30643610,Small clean cosy minimalist FEMALE ONLY -Bushwick,94113622,Darlene,Brooklyn,Bushwick,40.70138,-73.92365,Private room,50,7,1,2019-05-26,0.68,2,48 +30644741,Huge master bedroom in prime Financial District,57094235,Kellie,Manhattan,Financial District,40.7086,-74.01376,Private room,100,8,1,2019-01-03,0.16,1,0 +30648855,Midtown East 52&2 ! Big One Bedroom King bed! 5247,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.75916,-73.96023,Entire home/apt,293,30,0,,,96,292 +30649588,Elevator Doorman Big One Bedroom King bed! 5227,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.76021,-73.96075,Entire home/apt,293,30,0,,,96,280 +30651057,Amazing two bedroom with the terrace/73A.,48146336,Irina,Manhattan,Hell's Kitchen,40.76157,-73.99358,Entire home/apt,190,30,1,2019-02-11,0.20,20,331 +30651242,"Modern, Luxury Style, private balcony/City view!",193709,Glenna,Brooklyn,Greenpoint,40.73506,-73.954,Entire home/apt,150,11,2,2019-05-12,0.32,1,15 +30655067,Skyline Views in Williamsburg 4Br,85315237,Matthew,Brooklyn,Williamsburg,40.70971,-73.94804,Private room,50,4,1,2018-12-27,0.15,1,0 +30656450,West Village Dream Townhouse,912324,Rae,Manhattan,West Village,40.73704,-74.00501,Entire home/apt,500,3,5,2019-06-21,0.80,1,18 +30658563,Spacious and cozy room with washer and dryer,34957489,Sarahi,Manhattan,Harlem,40.83175,-73.94692,Private room,45,4,0,,,1,7 +30659261,Quiet and Spacious South Williamsburg One Bedroom,2199778,Emily,Brooklyn,Williamsburg,40.70839,-73.9547,Entire home/apt,150,3,6,2019-07-03,0.95,1,4 +30661098,Bed-Stuy Gem with Cozy entire floor of Brownstone,45534171,Mariana,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92214,Entire home/apt,200,7,2,2019-04-23,0.32,1,31 +30661174,Private Room in Heart of Brooklyn!,189876110,Joy,Brooklyn,Crown Heights,40.67616,-73.9404,Private room,59,1,2,2018-12-25,0.29,1,0 +30662063,‘Age of Innocence’ | Studio Apartment,225122879,Margaret/Matthew,Brooklyn,Park Slope,40.67193,-73.97334,Entire home/apt,100,3,26,2019-06-24,3.79,1,219 +30662701,Cosy private room in luxury condo,229578317,Rose,Manhattan,Hell's Kitchen,40.76348,-73.99391,Private room,125,1,5,2019-07-03,0.73,1,38 +30663246,"Greenpoint Summer Stunner, perfect for families",229577914,James,Brooklyn,Greenpoint,40.72681,-73.95359,Entire home/apt,150,5,1,2018-12-31,0.16,1,48 +30663416,Cozy Bedroom w/ Bunk Bed - Private Side Yard!!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.9412,Private room,55,1,12,2019-06-18,1.76,7,58 +30663568,"Chic, Quiet, Convenient East Village One-Bedroom",193420283,Daniel,Manhattan,East Village,40.73079,-73.98117,Entire home/apt,240,2,7,2019-06-18,1.01,1,0 +30666207,"Beautiful, unique apartment in Brooklyn Heights",5494184,Annette,Brooklyn,Brooklyn Heights,40.69423,-73.99728,Entire home/apt,140,7,1,2019-01-05,0.16,1,5 +30667058,Art Deco Soho Loft,22916874,Brian,Manhattan,Nolita,40.72182,-73.99567,Entire home/apt,250,2,28,2019-06-22,3.98,1,0 +30667695,Music Recording Mixing Film Photography Art,213781715,Anting,Brooklyn,Greenpoint,40.73289,-73.955,Entire home/apt,199,1,1,2019-06-01,0.79,33,365 +30670056,Sunny Williamsburg Loft ☀️,14559352,Jamis,Brooklyn,Williamsburg,40.71064,-73.9614,Entire home/apt,150,3,4,2019-03-23,0.63,2,0 +30672441,Brooklyn Pvt Bedroom with an amazing rooftop!,229588502,Nat,Brooklyn,Williamsburg,40.71251,-73.96062,Private room,80,3,0,,,1,0 +30672646,5min walk to L train - Great Roommates! Fast WiFi!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70127,-73.91235,Private room,35,30,0,,,9,43 +30674080,Beautiful 2-bedroom Apt near Times Square,64825610,Michel And Antoine,Manhattan,Hell's Kitchen,40.76011,-73.99087,Entire home/apt,299,3,23,2019-07-01,3.50,2,207 +30674177,Cozy Brooklyn Studio Apartment!,51908924,Lily,Brooklyn,Crown Heights,40.67471,-73.9616,Entire home/apt,85,3,2,2019-04-15,0.32,1,19 +30674463,Prime Location Affordable 2 Bedrooms,229284767,Ned,Manhattan,Midtown,40.75234,-73.98591,Entire home/apt,152,30,2,2019-04-08,0.38,1,0 +30675435,NY TIME SQUARE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75641,-73.9971,Private room,209,1,25,2019-05-28,3.49,8,84 +30675713,"Modern Studio in Heart of Crown Heights, Brooklyn",72944476,Micah,Brooklyn,Crown Heights,40.67013,-73.95375,Entire home/apt,100,1,15,2019-02-17,2.17,1,0 +30676471,Sofa-Bed in a modern and cozy apartment in Harlem,229450070,Gianluca,Manhattan,Harlem,40.82398,-73.93815,Shared room,45,2,15,2019-06-05,2.28,1,96 +30676672,New York City cozy creative,19759400,Samantha,Manhattan,Upper East Side,40.76117,-73.96019,Private room,96,2,28,2019-06-30,6.83,1,31 +30676992,ENTIRE bushwick studio,141735689,Jocelyn,Brooklyn,Bushwick,40.69227,-73.91724,Entire home/apt,100,3,3,2019-05-27,0.42,1,0 +30677069,NEWLY AVAILABLE Private Room only 2 BLOCKS off-LGA,229149810,Tussan,Queens,East Elmhurst,40.77082,-73.87469,Private room,51,1,65,2019-07-03,9.15,3,83 +30677218,Luxury Chelsea 1 bed full service with balconies,24865062,Danielle,Manhattan,Chelsea,40.7416,-73.99782,Entire home/apt,300,4,2,2019-01-02,0.30,1,17 +30677287,Comfortable one bedroom in heart of Midtown,12920745,Matthew,Manhattan,Hell's Kitchen,40.75608,-73.99606,Entire home/apt,120,10,2,2019-05-20,0.91,1,0 +30677434,Private ROOM in a GROUND FLOOR apt w/Parking,21376704,Claudia And Luis,Queens,Flushing,40.72859,-73.80899,Private room,85,2,18,2019-07-07,2.62,1,60 +30681498,Private Entire Studio 10min to LGA! 全独立套房十分钟法拉盛中心,157337532,Henry,Queens,College Point,40.77857,-73.84408,Entire home/apt,65,1,50,2019-07-03,7.69,2,78 +30685679,Home in NYC 1 BR Apartment Midtown Retreat,2239610,Tanya,Manhattan,Hell's Kitchen,40.756,-73.99804,Entire home/apt,165,5,10,2019-07-06,1.47,1,31 +30685991,Sunny Spacious New Brooklyn Condo,2019933,Nathan,Brooklyn,Greenpoint,40.73578,-73.95369,Entire home/apt,200,4,3,2019-03-25,0.43,1,321 +30686870,Large bedroom,221940893,Sara,Brooklyn,Kensington,40.63628,-73.9697,Private room,60,2,12,2019-07-07,3.67,3,220 +30686886,"The Manhattan Club New York Oct 6-13, 2019",210301854,Thomas,Manhattan,Midtown,40.76435,-73.98197,Entire home/apt,345,7,0,,,1,227 +30686973,Tranquil oasis in the fast pace of NYC,229695499,Linda,Manhattan,Lower East Side,40.7189,-73.98263,Private room,175,1,11,2019-07-03,2.84,1,250 +30687126,Cheap good double bed in living room-30min to Man,15872352,Sifan,Queens,Rego Park,40.72942,-73.86551,Shared room,34,1,12,2019-06-30,1.86,2,51 +30687132,"Sunny, Cozy Apartment in Chinatown/LES",12101562,Suea,Manhattan,Two Bridges,40.71114,-73.99977,Entire home/apt,175,2,0,,,1,0 +30688108,NEW - Manhattan - Private room near Central Park,224311652,Adrien,Manhattan,East Harlem,40.79852,-73.93769,Private room,79,1,31,2019-06-22,4.63,1,0 +30688314,"Centrally located, modern, pleasant 1BR apartment",162167111,Orlando,Queens,Elmhurst,40.74055,-73.88076,Entire home/apt,95,3,20,2019-06-22,4.11,1,101 +30688621,A Little Sanctuary,16358757,Nelmir,Brooklyn,Crown Heights,40.67685,-73.94405,Entire home/apt,80,5,5,2019-06-24,0.81,1,8 +30688867,"Artistic, Cozy Space in Convenient Williamsburg",879277,Marnie,Brooklyn,Williamsburg,40.70874,-73.95873,Shared room,70,2,4,2019-06-02,0.59,1,135 +30689529,Privately located 2 BR Apt! Soho!,192951036,Jasmine,Manhattan,SoHo,40.72608,-74.00022,Entire home/apt,240,1,9,2019-06-09,1.73,10,338 +30689655,Light Drenched Brooklyn Haven,13108315,Max,Brooklyn,Park Slope,40.67409,-73.97546,Entire home/apt,100,8,3,2019-04-30,0.48,1,7 +30690149,Upscale Artsy Apartment in Brooklyn - Free Parking,22205488,Allie,Brooklyn,Crown Heights,40.6751,-73.91035,Entire home/apt,100,2,7,2019-03-11,1.03,1,0 +30690804,Cosy APt,43053304,Ali,Manhattan,Upper East Side,40.77778,-73.94893,Entire home/apt,120,5,1,2019-02-24,0.22,1,0 +30691484,Luxury in Brooklyn,219449657,Franklyn,Brooklyn,Bushwick,40.68225,-73.90721,Entire home/apt,200,1,28,2019-07-02,4.22,1,30 +30691717,Soho Loft Experience,229732503,Natalie,Manhattan,SoHo,40.72446,-73.99966,Private room,165,7,0,,,1,88 +30691909,Spacious 1 BR Home in Hell's Kitchen,1319214,Nick,Manhattan,Hell's Kitchen,40.76333,-73.98917,Entire home/apt,172,4,3,2019-02-21,0.42,1,0 +30691956,Modern Room in LuxuryApt overlooking LIC&Manhattan,100554481,Drew,Queens,Long Island City,40.749,-73.94161,Private room,68,30,6,2019-05-24,1.04,1,0 +30692023,Sunny bedroom in a spacious loft/apt in Bushwick!,294581,Azu,Brooklyn,Williamsburg,40.70202,-73.94352,Private room,75,3,4,2019-07-04,4,1,101 +30692246,Private room 1 block from M train in Ridgewood,84011138,Aimar,Queens,Ridgewood,40.70792,-73.89546,Private room,55,3,7,2019-07-07,1.08,1,188 +30692398,Large bright room in the heart of Bushwick,51431600,Aurélie,Brooklyn,Bushwick,40.70134,-73.92111,Private room,50,5,1,2019-01-03,0.16,1,0 +30692462,Bright 2-bedroom in Brooklyn,229737810,Cameron,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94711,Entire home/apt,125,3,1,2019-01-02,0.16,1,95 +30694626,Clinton Hill Quiet stylish 2 bedroom,541486,Max,Brooklyn,Bedford-Stuyvesant,40.68736,-73.9564,Entire home/apt,160,1,9,2019-06-02,1.39,2,6 +30694693,"Gorgeous Hideout, Close to Everything.",202144863,Huma,Queens,Woodhaven,40.68845,-73.85423,Private room,60,1,10,2019-03-01,1.49,1,0 +30694768,A Relaxing Place in Inwood,188050970,Walkiria,Manhattan,Inwood,40.85962,-73.92971,Private room,65,1,25,2019-06-26,3.89,1,86 +30694839,Brand new beautiful apartment in Williamsburg!,17665952,Bree,Brooklyn,Williamsburg,40.70973,-73.95811,Private room,75,7,2,2019-05-19,0.28,1,0 +30694973,Door man condo near 61st St station,137358866,Kazuya,Queens,Woodside,40.74188,-73.90146,Private room,61,30,2,2019-05-31,0.75,103,230 +30695144,Williamsburg Studio,56286886,Juan Carlos,Brooklyn,Williamsburg,40.71673,-73.96428,Entire home/apt,150,2,4,2019-05-26,0.59,1,12 +30695780,Heart of Upper East Side Home w/ washer-dryer,2939479,Danielle,Manhattan,Upper East Side,40.7751,-73.95294,Private room,125,3,2,2019-07-01,0.32,1,23 +30696051,Modern Spacious Studio just 1 min To Bus Stop,120912613,Sanny,Queens,Glendale,40.6998,-73.89351,Entire home/apt,99,2,28,2019-07-06,5.12,1,289 +30696675,"High wifi , private space and private room",229769527,Morrece,Brooklyn,East Flatbush,40.65679,-73.91631,Private room,200,5,0,,,1,365 +30697032,A Quiet Room in Greenpoint,72512761,Erik,Brooklyn,Greenpoint,40.72402,-73.94949,Private room,75,3,2,2019-07-02,2,3,0 +30697207,"Great room and friendly environment in Astoria, NY",229774456,Chris,Queens,Ditmars Steinway,40.77383,-73.90558,Private room,70,2,4,2019-05-25,0.64,1,89 +30697483,Newly renovated with elevator room 2,125961131,David,Manhattan,Two Bridges,40.7126,-73.99376,Private room,55,1,53,2019-06-23,7.64,3,2 +30699302,Prime Williamsburg / Bedford Avenue Apartment,81347848,Kobi,Brooklyn,Williamsburg,40.71486,-73.96125,Private room,49,28,0,,,1,90 +30700892,MILES DAVIS BIG BEAUTIFUL BEDROOM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80822,-73.94051,Private room,90,2,20,2019-06-24,3.09,6,0 +30701853,"Room in Charming, Plant-filled Brooklyn Apartment",20177190,Kayla,Brooklyn,Gowanus,40.66902,-73.99188,Private room,65,1,20,2019-06-30,3.13,1,146 +30702161,JIMI HENDRIX BIG BEAUTIFUL BEDROOM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80847,-73.94044,Private room,90,2,25,2019-06-24,3.66,6,173 +30702384,SHOW STOPPER/BEST APARTMENT IN HARLEM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80701,-73.94041,Entire home/apt,500,2,0,,,6,173 +30703449,"Cool, Clean and Close to All !",228581927,Todd,Brooklyn,Crown Heights,40.6775,-73.9634,Entire home/apt,180,3,1,2018-12-13,0.14,1,90 +30704068,Garden Apartment - Cozy renovated 1BDR,92674591,Celia,Brooklyn,Clinton Hill,40.68878,-73.96495,Entire home/apt,99,2,18,2019-06-30,5.00,1,50 +30704165,Entire Apt for 9Guests near Subway-20mins Times Sq,172379806,Alaz,Queens,Ditmars Steinway,40.77108,-73.91378,Entire home/apt,100,2,25,2019-06-26,3.55,1,294 +30705353,Modern Brooklyn Brownstone Garden Apartment,229836139,Steve,Brooklyn,Bedford-Stuyvesant,40.6881,-73.95356,Entire home/apt,140,2,19,2019-07-01,3.33,1,35 +30705522,Great East Village/Alphabet City Apt!,21010752,Zach,Manhattan,East Village,40.72185,-73.98237,Private room,49,4,2,2019-01-26,0.35,2,0 +30706240,Cozy New York Apartment. Amazing Location!,35179914,Juanita,Manhattan,Harlem,40.82495,-73.94023,Entire home/apt,150,5,1,2019-01-11,0.17,1,0 +30706259,Fully Renovated East Village Oasis,229709908,Delia,Manhattan,East Village,40.72434,-73.98208,Entire home/apt,285,3,16,2019-07-06,3.48,1,241 +30706271,Giant Duplex with Backyard 20 Mins to Manhattan!,10045509,Rebecca,Queens,Ditmars Steinway,40.77315,-73.9075,Entire home/apt,150,5,2,2019-04-02,0.32,1,0 +30706817,Large Sunny 2 Bedrooms in Manhattan-Steps2Subway,229844097,Dave,Manhattan,East Harlem,40.79819,-73.94294,Private room,89,1,23,2019-06-05,3.37,1,285 +30707567,"Sunny, plant-filled & quiet Washington Heights apt",6769030,Dina,Manhattan,Washington Heights,40.83477,-73.94293,Private room,75,2,5,2019-06-22,1.76,1,0 +30707586,Very cozy apartment in Brooklyn.,13223221,Tatiana,Brooklyn,Midwood,40.61843,-73.95626,Entire home/apt,75,3,1,2019-03-10,0.25,1,0 +30708251,Prime Williamsburg water front modern one-bed,13977477,Courtney,Brooklyn,Williamsburg,40.71643,-73.96443,Entire home/apt,99,5,5,2019-06-02,0.81,1,0 +30708281,"Garden, Exotic Lounge Apartment",2838058,Annette,Manhattan,Harlem,40.81216,-73.94411,Entire home/apt,165,5,0,,,2,163 +30708308,Garden Apartment /Mingle and Jingle Fun Host,2838058,Annette,Manhattan,Harlem,40.81234,-73.94512,Private room,65,3,3,2019-05-28,0.48,2,363 +30708899,☆Cozy bedroom in Midtown | 1min to 4 subway lines☆,164051353,Warren,Manhattan,Chelsea,40.74836,-73.98921,Private room,133,1,17,2019-06-23,4.32,3,87 +30709202,"☆Charming bedroom, 5min to Empire State Building☆",164051353,Warren,Manhattan,Chelsea,40.74832,-73.98915,Private room,130,1,19,2019-06-28,2.88,3,81 +30709893,✨PRIVATE Bathroom - Midtown | 5 min Grand Central✨,173417532,Ed,Manhattan,Midtown,40.75106,-73.97485,Private room,172,1,18,2019-07-05,4.74,3,85 +30710247,Cozy Sunny Private Room in Spacious 2-Bedroom,229872308,Shane & Shreshth,Brooklyn,Bedford-Stuyvesant,40.6844,-73.91878,Private room,40,2,50,2019-06-23,7.11,1,18 +30710264,Pleasant Upper West Side Studio,79563670,Nicole,Manhattan,Upper West Side,40.77888,-73.97967,Entire home/apt,100,3,7,2019-07-06,1.04,1,52 +30710325,Huge Room in Trendy East Williamsburg,49800768,Grant,Brooklyn,Williamsburg,40.70509,-73.92988,Private room,80,7,1,2019-01-01,0.16,1,219 +30710341,Zohar’s Apartment,229872448,Zohar,Manhattan,Upper West Side,40.78791,-73.97404,Entire home/apt,180,5,1,2018-12-26,0.15,1,0 +30710462,Pop Fashion Studio,6451056,Liz,Brooklyn,Bushwick,40.69793,-73.93141,Entire home/apt,93,3,5,2019-06-02,0.78,1,0 +30710954,Serene Brooklyn Brownstone Gem,192137090,Daniel,Brooklyn,Gowanus,40.68269,-73.98585,Entire home/apt,100,3,13,2019-01-31,1.90,1,0 +30711544,"Entire Place *NEW APT - NYC, LGA, Flushing Meadows",9096745,Corey,Queens,Elmhurst,40.73383,-73.87346,Entire home/apt,299,2,10,2019-06-30,1.47,1,78 +30712164,The Bronx's Oasis,229885031,Chantel,Bronx,Mount Hope,40.85055,-73.90189,Entire home/apt,69,2,25,2019-07-04,3.66,1,92 +30712281,Beautiful apartment near the city and the beach!!,2370813,Anastasia,Brooklyn,Sheepshead Bay,40.5987,-73.96031,Entire home/apt,110,2,38,2019-07-05,5.43,2,294 +30712349,Artist's Creative Loft Photo Studio-2 Bed + Office,1632633,Susy,Brooklyn,Williamsburg,40.70977,-73.94193,Entire home/apt,120,2,27,2019-07-02,4.20,1,8 +30712446,Beautiful Luxury Building Studio Apartment,10089405,Sini,Brooklyn,Fort Greene,40.68643,-73.97873,Entire home/apt,120,1,1,2019-01-04,0.16,1,1 +30712669,Safe perfect location heart of east village,7957807,Matheus,Manhattan,East Village,40.7256,-73.98478,Entire home/apt,250,2,14,2019-06-20,2.19,1,364 +30712682,A whimsical stay in the heart of Bushwick,133972014,Nana,Brooklyn,Bushwick,40.69979,-73.93158,Entire home/apt,130,3,4,2019-06-09,0.63,1,6 +30712961,Sunny and isolated living room on Roosevelt island,229893262,Shenqi,Manhattan,Roosevelt Island,40.76564,-73.94528,Private room,43,2,1,2018-12-30,0.16,1,50 +30713613,"Artsy duplex for 6, close to US Open & Manhattan",227647873,Samanta,Queens,Astoria,40.76167,-73.91346,Entire home/apt,179,2,29,2019-07-07,5.15,3,116 +30713926,Bright Brooklyn One Bedroom,5170481,Peter,Brooklyn,Clinton Hill,40.68521,-73.96716,Entire home/apt,90,3,5,2019-07-05,2.59,1,50 +30714036,Warm & Welcoming Home for You - Crown Heights,4509281,Kelly,Brooklyn,Crown Heights,40.67548,-73.93992,Private room,500,3,32,2019-07-02,4.62,1,0 +30714312,Clean 2 bedroom home in a safe area near Manhattan,191324,Keith,Queens,Sunnyside,40.74942,-73.91491,Private room,60,2,4,2019-06-11,2.55,2,2 +30715085,"Private Studio apartment In prime Astoria, no fees",57046582,JayJay,Queens,Astoria,40.76908,-73.90873,Entire home/apt,95,3,0,,,1,0 +30715104,1bdr apt. with Manhattan skyline view (long term),141218191,Claudia,Brooklyn,Bushwick,40.70161,-73.93326,Entire home/apt,110,70,4,2019-01-17,0.65,1,90 +30715422,A spacious 1 bedroom apt in a landmark building,5953913,Zhanna,Manhattan,Battery Park City,40.70418,-74.01695,Entire home/apt,220,2,0,,,1,0 +30715488,New york Multi-unit building,5954813,Sarah,Brooklyn,Clinton Hill,40.68983,-73.96553,Private room,120,15,0,,,1,179 +30716128,Spacious RM in Quiet Residential Neighborhood,137358866,Kazuya,Queens,Sunnyside,40.73668,-73.92427,Private room,33,30,0,,,103,244 +30716192,"NYUW05-1: Cozy room, Park, Columbia university.",39890192,Laura,Manhattan,Upper West Side,40.80003,-73.96123,Private room,70,14,2,2019-05-17,0.61,12,146 +30716880,"Prime area locate in Little Italy, Nolita, Soho.",67552519,Patrick,Manhattan,Nolita,40.72246,-73.99549,Entire home/apt,228,2,29,2019-07-01,4.42,2,78 +30717174,E20's- Charm and modern Elevator studio- Quiet,52671461,Andrea,Manhattan,Kips Bay,40.73989,-73.97984,Entire home/apt,150,7,1,2019-03-25,0.28,2,71 +30717311,Tiny studio in best neighborhood in NYC!,9266337,Sara,Manhattan,West Village,40.73153,-74.00469,Entire home/apt,154,2,4,2019-07-01,0.59,1,12 +30717487,Charming Williamsburg Loft - 1 BR,63260432,Thibaut,Brooklyn,Greenpoint,40.7198,-73.95489,Entire home/apt,179,1,15,2019-05-19,2.54,1,0 +30717527,"Two bedroom apartment, one stop from Manhattan",33945670,Eli,Queens,Long Island City,40.74863,-73.9488,Entire home/apt,283,2,11,2019-06-15,1.75,2,303 +30717533,Large Private Room in Crown Heights BK,17598541,Robert,Brooklyn,Crown Heights,40.66708,-73.92968,Private room,45,1,12,2019-06-13,1.89,1,150 +30718238,Manhattan best location Entire1BR Apt amazing view,183790715,D Alejandro,Manhattan,Hell's Kitchen,40.76191,-73.99771,Entire home/apt,575,2,0,,,1,364 +30718403,Local Paradise,141931484,Xie,Brooklyn,Flatlands,40.62815,-73.92898,Private room,69,2,15,2019-06-29,2.20,3,329 +30718534,Charming 1 bedroom in a 2 bedroom west village apt,23419046,Rema,Manhattan,West Village,40.73433,-74.00301,Private room,200,1,0,,,1,0 +30720122,Sunnyside RM w/ a view. Near everything you need.,137358866,Kazuya,Queens,Sunnyside,40.73756,-73.92329,Private room,29,30,0,,,103,241 +30720530,Furnished & Renovated. An Astoria NY RM w/ Appeal!,137358866,Kazuya,Queens,Astoria,40.76671,-73.92278,Private room,39,30,1,2019-06-17,1,103,0 +30721128,"Master Suite w/ Own Bath, 3 mins from subway!",137358866,Kazuya,Queens,Astoria,40.76654,-73.92382,Private room,54,30,0,,,103,0 +30722712,Amazing 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.74002,-73.97914,Entire home/apt,155,30,0,,,8,365 +30722858,Cozy Sunnyside room with a classic feel.,137358866,Kazuya,Queens,Sunnyside,40.74925,-73.91332,Private room,41,30,0,,,103,124 +30723941,Cute 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.74056,-73.9791,Entire home/apt,150,30,1,2019-05-21,0.61,8,332 +30725215,"Beautiful 1 BR, Gramercy",178224519,Lisa,Manhattan,Kips Bay,40.74134,-73.98101,Entire home/apt,150,30,0,,,8,364 +30727105,Modern and charming Brooklyn apartment,4679911,Ana Luiza,Brooklyn,Greenpoint,40.73473,-73.95229,Private room,54,21,1,2018-12-22,0.15,1,0 +30728438,"Relax, easy commute to the city",30377766,Julio,Queens,Jackson Heights,40.75382,-73.87508,Private room,62,1,2,2019-05-18,0.32,2,365 +30728885,Private room,9412549,Michael,Manhattan,Financial District,40.70822,-74.00885,Private room,180,1,1,2019-01-18,0.17,1,0 +30728947,Brooklyn Home with a View,5358010,Mansi,Brooklyn,South Slope,40.66358,-73.98997,Entire home/apt,145,4,1,2019-06-11,1,1,12 +30730521,Luxury Apartment on Madison Avenue,4731785,Elena,Manhattan,Upper East Side,40.77995,-73.96056,Entire home/apt,200,21,1,2019-01-07,0.16,1,88 +30731628,Three Bed-Room in Borough Park,230013366,Jessica,Brooklyn,Borough Park,40.63442,-74.00433,Entire home/apt,110,2,17,2019-06-25,2.51,1,243 +30731670,Cozy Brooklyn Brownstone w/ Huge Private Backyard,196613633,Zach,Brooklyn,Bedford-Stuyvesant,40.68361,-73.91372,Private room,45,30,0,,,2,220 +30731674,Spacious studio in the heart of NYC,1995636,Oleg,Manhattan,Midtown,40.75634,-73.96519,Entire home/apt,225,30,1,2019-04-20,0.37,1,108 +30732728,"Luxury apartment, for single! near Central Park",5469063,Yuliya,Manhattan,Upper East Side,40.76719,-73.95253,Entire home/apt,200,5,1,2019-02-08,0.20,1,24 +30732895,Spacious Room w/Comfy Queen Bed. Central Location!,2824437,Tina,Brooklyn,Crown Heights,40.67506,-73.94648,Private room,70,3,6,2019-06-15,0.85,1,41 +30733035,Bright serene 2-bedroom in Harlem,29245582,Jennifer,Manhattan,Harlem,40.8114,-73.9431,Entire home/apt,150,5,16,2019-06-23,3.22,1,3 +30733474,Flex Chk In Times - NYC Quick Stay,228263278,475,Manhattan,Harlem,40.8241,-73.94682,Private room,95,2,4,2019-06-16,0.93,4,180 +30733576,king size bed in hip LES -subway outside,19052001,Madison,Manhattan,Lower East Side,40.7124,-73.99054,Private room,80,2,3,2019-03-02,0.60,1,0 +30733692,Available Now,230028797,Wael,Queens,Astoria,40.76808,-73.93359,Shared room,100,1,0,,,1,89 +30733899,Downtown Brooklyn exquisite private room epic view,225618164,Sergii,Brooklyn,Gowanus,40.6832,-73.9891,Private room,70,30,0,,,3,365 +30734277,Large Full Bedroom in an Awesome Huge Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73448,-73.95716,Private room,70,3,0,,,4,4 +30734595,Beautiful Park Slope Designer Condo,14244557,Diego,Brooklyn,Park Slope,40.66519,-73.97793,Entire home/apt,250,9,1,2019-01-07,0.16,1,251 +30735151,Cozy Private BR - Less Than Five Mins To Subway,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67935,-73.90838,Private room,55,1,9,2019-06-19,1.38,6,173 +30735308,Private 2 BR Apt in heart of South Slope,186334891,Muneeba,Brooklyn,Sunset Park,40.66207,-73.99147,Entire home/apt,150,2,17,2019-06-19,2.67,2,244 +30735480,Neve recording studio,229693987,0123,Manhattan,Lower East Side,40.71456,-73.98717,Entire home/apt,600,1,0,,,1,365 +30735839,Comfy & Modern Private Bedroom w/ Bunkbed,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67999,-73.90701,Private room,55,1,3,2019-06-23,1.50,6,163 +30736119,"Modern and Cozy Private Bedroom in Brooklyn, NY",230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.68045,-73.9064,Private room,55,1,8,2019-06-15,1.13,6,173 +30736279,"Deluxe Wall Street Studio w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70563,-74.00835,Entire home/apt,232,30,0,,,232,350 +30737105,"Lovely,Cozy,bright,beautiful room **only female**",229421782,Sunny,Brooklyn,East Flatbush,40.6472,-73.94348,Private room,35,4,5,2019-06-05,0.79,2,89 +30737182,Central Park Charming Home,197082458,Luisa,Manhattan,Upper West Side,40.7773,-73.97736,Entire home/apt,350,2,9,2019-06-23,1.32,1,286 +30737221,Chic and Comfortable in Manhattan,198406576,Zel,Manhattan,Harlem,40.81612,-73.94216,Entire home/apt,195,30,5,2019-06-18,2.08,1,239 +30737562,Private Bedroom and Bathroom in Spacious Apartment,4281300,Alex,Brooklyn,Williamsburg,40.71715,-73.94152,Private room,89,1,2,2019-03-05,0.43,3,16 +30737572,Private Room in Clean & Cozy Home Central Location,230049837,Crystal,Manhattan,Murray Hill,40.74929,-73.9812,Private room,59,5,5,2019-06-13,1.43,2,0 +30737615,ONE BIG PARK SLOPE ROOM starting MARCH - MAY 2019,835112,Leah,Brooklyn,South Slope,40.66869,-73.98665,Private room,42,90,0,,,2,0 +30737643,Long Term Stay 4 1/2- 5 months. Starting Jan,1466422,Gila,Brooklyn,Crown Heights,40.67551,-73.94047,Entire home/apt,60,133,0,,,2,0 +30739597,"Basement suite in Bushwick, 4 minutes from the M!",14841940,David,Brooklyn,Bushwick,40.69752,-73.92069,Private room,48,3,13,2019-06-18,2.05,1,34 +30739837,Spacious and relaxing apartment in UWS.,181370114,Feizal,Manhattan,Upper West Side,40.79167,-73.97864,Entire home/apt,500,1,0,,,1,87 +30739988,Quite Spacious studio easy access to ALL,103922915,Shu,Manhattan,Midtown,40.75816,-73.97004,Entire home/apt,149,2,3,2019-01-01,0.46,1,0 +30740488,**Cozy Private Room(M),52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95161,Private room,49,2,13,2019-05-24,2.22,7,294 +30740551,Dollar,131705586,Freddy,Brooklyn,Fort Greene,40.69564,-73.97287,Private room,77,1,7,2019-06-02,1.84,2,364 +30741070,Living room in Queens for rent,118839768,Виль,Queens,Jackson Heights,40.74766,-73.88598,Shared room,35,62,0,,,1,0 +30741160,"Private room in Sunnyside, Queens",123099811,Heather,Queens,Sunnyside,40.74209,-73.92592,Private room,40,2,0,,,1,1 +30741199,Bright Beautiful Loft Apt in Heart of Williamsburg,416238,Mark,Brooklyn,Williamsburg,40.71513,-73.94444,Entire home/apt,225,6,1,2019-01-01,0.16,1,88 +30741302,**Cozy Private Room(B),52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95014,Private room,49,2,19,2019-06-20,3.22,7,360 +30744215,NYC Marathon 2019 - Near Carnegie Hall - 2 nights,51151126,Anne,Manhattan,Midtown,40.7654,-73.98202,Private room,600,2,0,,,2,2 +30744543,"Quiet place +fully renovated apartment +Queens-NY",35162102,Lisa,Queens,Queens Village,40.72348,-73.75269,Entire home/apt,120,2,41,2019-06-20,6.51,1,66 +30744585,NYC Marathon 2019 - Near Carnegie Hall - 2 Nights,51151126,Anne,Manhattan,Midtown,40.76579,-73.98049,Private room,600,2,0,,,2,2 +30745232,Park Slope Cozy Bedroom,3016566,Yukako,Brooklyn,Park Slope,40.67371,-73.9769,Private room,200,1,1,2019-04-19,0.37,1,351 +30745402,Room in central Manhattan,163905917,Matilda,Manhattan,Hell's Kitchen,40.75584,-73.99574,Private room,115,4,1,2019-05-12,0.52,3,0 +30745429,Alphabet City Long term Stay,31917161,Cameron,Manhattan,East Village,40.72583,-73.97528,Private room,70,30,0,,,1,0 +30745771,Quiet Cozy Apartment by the Beach,230046770,Fitzene,Brooklyn,Coney Island,40.57115,-73.99408,Entire home/apt,190,1,1,2018-12-25,0.15,1,2 +30745822,New Build APT in Brooklyn - Prospect Park South!,97681343,Shola,Brooklyn,Flatbush,40.64499,-73.97043,Entire home/apt,62,2,0,,,1,54 +30746531,One bedroom in Clinton Hill/Bedstuy,48827403,Ivanna,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94933,Private room,160,2,0,,,1,363 +30746904,WOW LOFT LONG TERM STAY & SHORT TERM EVENTS/SHOOTS,76192815,Sam,Manhattan,Chinatown,40.71387,-73.99414,Entire home/apt,175,1,1,2019-03-10,0.25,5,364 +30747260,"Spacious room in quiet Sunset Park, Brooklyn",28821748,Jieyu,Brooklyn,Sunset Park,40.64098,-74.01061,Private room,30,10,1,2019-01-01,0.16,1,0 +30747515,Bedstuy-stay,20043437,Marianne,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95189,Private room,35,10,3,2019-05-31,0.48,1,5 +30747562,BedStuy cozy + convenient private room and bath,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68061,-73.91693,Private room,37,1,29,2019-06-19,4.58,2,10 +30748041,Best Manhattan location & best room for the price!,7883985,Clarissa,Manhattan,Upper East Side,40.77221,-73.95528,Private room,79,1,23,2019-06-25,3.59,1,7 +30749019,Bright airy rooms in Queens close to transport,230108889,Malca,Queens,Kew Gardens Hills,40.71997,-73.81222,Private room,40,5,2,2019-03-01,0.32,2,0 +30749411,"Manhattan huge bedroom, with PRIVATE BATHROOM!",8214691,Francesco,Manhattan,Two Bridges,40.7114,-73.99354,Private room,159,3,0,,,1,0 +30749889,"Very nice Master bedroom, all comfort, brooklyn",230113240,Mary,Brooklyn,Bushwick,40.69251,-73.91246,Private room,100,1,23,2019-06-23,3.69,1,240 +30750063,"Tranquility and views - 2 beds, family-friendly",9976776,Tatiana,Manhattan,Roosevelt Island,40.76209,-73.94854,Private room,199,3,1,2019-01-02,0.16,1,0 +30754138,Prime Soho apartment with private backyard,163035332,Pirin,Manhattan,SoHo,40.72199,-74.00444,Entire home/apt,550,2,12,2019-07-03,1.72,3,126 +30756760,Cozy Room with a view,144124452,Yemi,Queens,Rosedale,40.65291,-73.73458,Private room,55,1,9,2019-04-21,1.34,3,30 +30756898,Lux renovated room 19mins ride to Grand Central,137358866,Kazuya,Queens,Woodside,40.74491,-73.90824,Private room,40,30,1,2019-03-25,0.28,103,247 +30759268,Cute 2BR in the middle of West Village,230165497,Lara,Manhattan,West Village,40.73103,-74.00197,Entire home/apt,155,30,0,,,4,0 +30759388,"Convenient, comfy, and bright apartment",7389707,Yael,Manhattan,Washington Heights,40.84658,-73.93979,Entire home/apt,200,2,0,,,2,0 +30759781,Stay in heart of Manhattan!Subway near-Best Area,149312705,Anthony,Manhattan,Midtown,40.75994,-73.96473,Private room,150,2,25,2019-06-27,3.87,1,19 +30761478,Sundrenched Studio Doorman Elevator Laundry 5240,16098958,Jeremy & Laura,Manhattan,Midtown,40.75585,-73.96502,Entire home/apt,190,30,0,,,96,158 +30761885,Bedstuy Private Room Two Blocks from Subway,50686800,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6907,-73.95004,Private room,46,1,0,,,1,28 +30761890,Renovated One bedroom Gym Laundry Elevator 5236,16098958,Jeremy & Laura,Manhattan,Midtown,40.76394,-73.98154,Entire home/apt,215,30,0,,,96,271 +30762826,Jefferson Avenue Apartment,6051149,Cristiano,Brooklyn,Bedford-Stuyvesant,40.68341,-73.94608,Entire home/apt,140,3,12,2019-06-17,2.25,1,66 +30762861,"Cozy & Nice room w/AC, Queens! good subway access!",200239515,Shogo,Queens,Woodside,40.74336,-73.89438,Private room,35,30,2,2019-06-01,0.90,15,7 +30763021,"Off AVE N Beauty, a place like home! Flatlands, BB",173912778,Georgette'S,Brooklyn,Flatlands,40.62183,-73.92111,Entire home/apt,89,2,12,2019-06-12,1.86,1,132 +30763291,Luxury Private Bedroom in Brooklyn 2R-1,230192510,Zach,Brooklyn,Fort Greene,40.69638,-73.97507,Private room,48,30,1,2019-06-30,1,25,342 +30763342,Lofted East Village 2BR | Big & Safe,228220221,Aiden & Cassy,Manhattan,East Village,40.72217,-73.98139,Entire home/apt,239,1,13,2019-06-23,2.10,1,345 +30763404,Entire studio East village Walk to All,230192818,Felicia,Manhattan,East Village,40.72138,-73.98084,Entire home/apt,90,1,22,2019-06-28,3.40,2,17 +30763950,BRIGHT AND LOFTY IN THE EAST VILLAGE,363717,Sara,Manhattan,East Village,40.72213,-73.98122,Entire home/apt,350,4,2,2019-06-04,1.15,1,127 +30764168,Modern Co-Living Space 2R-2,230192510,Zach,Brooklyn,Fort Greene,40.69716,-73.97384,Private room,48,30,1,2019-06-30,1,25,322 +30764476,Two Bedroom fully furnished - UES (30 days MIN),159598333,Sol,Manhattan,Upper East Side,40.78305,-73.94532,Entire home/apt,99,30,0,,,5,324 +30764665,Large one bedroom with 2 walk through living rooms,230196849,Mariia,Manhattan,East Harlem,40.78909,-73.94153,Entire home/apt,350,2,4,2019-05-19,0.63,1,81 +30764972,Spacious 6BR/2.5BA Apt — Washer & Dryer / 20% OFF!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.94298,Entire home/apt,599,2,1,2019-04-16,0.35,7,110 +30764990,Lovely spacious 1 BR apartment in Williamsburg,226201658,Vanessa,Brooklyn,Williamsburg,40.70819,-73.94945,Entire home/apt,89,30,2,2019-03-31,0.39,3,295 +30765849,Elevator Doorman Gym Studio Roof Laundry 5219,16098958,Jeremy & Laura,Manhattan,Midtown,40.74986,-73.98709,Entire home/apt,180,30,0,,,96,311 +30766280,音樂之家 Musician and Artist Exhibition Home,213781715,Anting,Brooklyn,Greenpoint,40.73289,-73.95203,Entire home/apt,189,1,0,,,33,364 +30766643,Bright & Cozy Manhattan Home | Central Location,230049837,Crystal,Manhattan,Murray Hill,40.7493,-73.98119,Entire home/apt,129,3,6,2019-05-27,0.93,2,22 +30767017,Spacious Bedroom in the heart of Fort Greene 1L-3,230192510,Zach,Brooklyn,Fort Greene,40.69691,-73.97376,Private room,48,30,1,2019-02-14,0.21,25,220 +30767259,Luxury Private Bed in Brooklyn 2L-1,230192510,Zach,Brooklyn,Fort Greene,40.6969,-73.97566,Private room,48,30,0,,,25,340 +30767280,Nice Room 3min walk to Subway Plus Balcony and AC,218336964,Wei,Queens,Rego Park,40.73058,-73.86963,Private room,40,3,14,2019-06-21,2.07,4,8 +30767367,Fantastic Co-Living Space 2L-2,230192510,Zach,Brooklyn,Fort Greene,40.69629,-73.97447,Private room,48,30,0,,,25,341 +30767659,3 Single Beds Studio near ESB,211549023,Studioplus,Manhattan,Midtown,40.74841,-73.98768,Entire home/apt,220,2,15,2019-06-07,2.47,13,286 +30767663,1 bedroom apartment in Bushwick,6297882,Indre,Brooklyn,Bushwick,40.69879,-73.92936,Entire home/apt,120,3,2,2019-06-05,0.35,1,0 +30767905,Updated Private Bedroom in Co-Living Space 2L-3,230192510,Zach,Brooklyn,Fort Greene,40.69758,-73.97432,Private room,48,30,1,2019-02-24,0.22,25,311 +30768008,Upper West Manhattan Entire Suite,10415675,Yao & Rain,Manhattan,Harlem,40.82224,-73.95402,Entire home/apt,150,4,3,2019-05-08,0.47,7,281 +30768300,Manhattan Time Square Private Room,34689714,Maria,Manhattan,Hell's Kitchen,40.76448,-73.98632,Private room,99,1,3,2019-06-02,0.44,5,358 +30768969,Sunny & Big Room w/private toilet in Bushwick,192181166,Elisa,Brooklyn,Williamsburg,40.70891,-73.94268,Private room,72,3,0,,,2,0 +30769015,Heart of Bedford Stuyvesant. Next to subway. Full floor in brown stone. Great neighborhood. 20 minutes to downtown Manhattan. Best place ever.,95915902,Sam,Brooklyn,Bedford-Stuyvesant,40.68883,-73.9525,Entire home/apt,100,2,5,2019-01-06,0.75,1,0 +30769129,Artist Retreat in Williamsburg with studio space!,121434641,Camilla,Brooklyn,Williamsburg,40.70891,-73.94047,Entire home/apt,100,1,23,2019-05-12,3.30,1,173 +30769303,Luxury Apartment Building,155261188,Ahmed,Queens,Kew Gardens,40.70555,-73.82138,Private room,200,1,0,,,1,365 +30769456,Quarto privado em Astória.,230230484,Clara,Queens,Astoria,40.76501,-73.92502,Private room,80,3,3,2019-06-02,0.48,2,365 +30769510,Modern Luxury 2bedroom in ideal Brooklyn location,4797532,Priscilla,Brooklyn,Crown Heights,40.67267,-73.95786,Entire home/apt,135,28,0,,,2,189 +30769650,Private Room in Two-Bedroom Brooklyn Apartment,214130808,Karen Jennifer & Jan,Brooklyn,Bay Ridge,40.6224,-74.02428,Private room,50,1,17,2019-06-12,2.71,1,311 +30769899,Gorgeous Brooklyn Heights apartment,2547347,Jessica,Brooklyn,Brooklyn Heights,40.69214,-73.99444,Entire home/apt,100,2,7,2019-05-01,1.12,1,326 +30769959,Private One Bedroom Chelsea Apartment New York-#2,9328763,Synergy Global,Manhattan,Chelsea,40.74566,-73.99673,Private room,138,25,0,,,2,0 +30769985,Verona TwentyOne - Kendal Garden,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94837,Entire home/apt,150,2,18,2019-07-06,3.94,3,299 +30770301,Clean Private Bedroom in the Heart of East Village,222779801,Maira,Manhattan,East Village,40.72963,-73.98662,Private room,75,1,17,2019-07-05,2.49,2,120 +30770314,Spacious Manhattan Apartment near Battery Park,230235805,Kenneth,Manhattan,Financial District,40.70427,-74.01533,Entire home/apt,116,3,17,2019-05-25,2.50,1,0 +30770478,Big private room in Brooklyn penthouse,9288052,Lauren,Brooklyn,Clinton Hill,40.68527,-73.9657,Private room,60,7,2,2019-05-02,0.34,2,0 +30770723,Live in an Art Curator's Home,599076,Stephanie,Brooklyn,Bushwick,40.70035,-73.92323,Private room,70,1,5,2019-04-21,0.78,1,81 +30770830,One Bdrm Apt in Charming South Harlem Brownstone,208477013,Bill,Manhattan,Harlem,40.80442,-73.94756,Entire home/apt,125,2,7,2019-07-01,1.12,1,24 +30772697,"Relaxing Private Bedroom~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83024,-73.94715,Private room,90,1,1,2019-03-09,0.25,6,40 +30772721,Budget friendly room in Queens. 5mins to subway!,137358866,Kazuya,Queens,Elmhurst,40.73489,-73.88048,Private room,28,30,0,,,103,63 +30772753,Perfect apartment in NYC,28230496,Tyler,Manhattan,Lower East Side,40.72168,-73.98686,Entire home/apt,200,5,2,2019-04-14,0.32,1,78 +30773154,Bright spacious two bed apartment! (private room),72887012,Dany,Manhattan,East Village,40.72297,-73.9852,Private room,90,6,2,2019-06-27,0.31,1,23 +30773558,MANHATTAN NEWLY RENOVATED SPACIOUS MODERN FLAT!,191469946,Emmanuel,Manhattan,East Harlem,40.7942,-73.94091,Entire home/apt,350,1,27,2019-06-25,4.09,1,95 +30774970,A Queen's Palace: Brooklyn NY Style,20279355,Nekhena,Brooklyn,Bedford-Stuyvesant,40.67939,-73.91825,Shared room,75,1,15,2019-06-23,3.72,1,123 +30775624,Private cozy room in a modern artsy apartment,20587499,Edward,Manhattan,Washington Heights,40.83701,-73.94577,Private room,65,1,13,2019-05-26,1.99,1,0 +30775672,Private room in sunny apartment in Williamsburg,49292750,Baptiste,Brooklyn,Williamsburg,40.70766,-73.94789,Private room,72,3,2,2019-02-03,0.31,1,0 +30776023,Architects Residency in Upper East / 2-min Subway,18091877,Jim,Manhattan,Upper East Side,40.78176,-73.945,Private room,120,4,20,2019-06-29,3.17,1,31 +30776172,Waterfront Studio in Luxury Highrise w/ Gym & Roof,1574687,Mila,Manhattan,Financial District,40.7058,-74.01559,Entire home/apt,180,2,3,2019-05-27,1.14,1,5 +30778977,Quiet and cute bedroom in a 2 bedroom apartment,60370951,Emanuella,Queens,Astoria,40.77677,-73.93521,Private room,100,3,0,,,2,343 +30785849,"Chic, stylish apartment in HEART of NYC",27863129,Nikita,Manhattan,West Village,40.7385,-74.00014,Entire home/apt,250,2,39,2019-05-27,6.32,1,0 +30786156,Brownstone Garden Apartment,105154396,Goenuel,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95138,Entire home/apt,160,3,22,2019-06-29,3.28,1,110 +30786375,Beautiful Brooklyn Room for a Single Traveler,690079,Elena,Brooklyn,East Flatbush,40.64915,-73.95147,Private room,40,25,0,,,1,305 +30786668,"Rustic house w/ parking, wifi, & AC",64450303,Elizabeth,Brooklyn,Flatlands,40.62941,-73.9425,Entire home/apt,300,1,9,2019-07-01,1.44,2,7 +30786946,Lovely stay in a private large room near JFK,26028092,Vanessa,Queens,Richmond Hill,40.68146,-73.82286,Private room,66,1,30,2019-06-30,4.52,1,131 +30788199,Private bedroom with Attached bathroom,129174905,Syed,Manhattan,Upper East Side,40.76174,-73.96066,Private room,65,15,1,2018-12-18,0.15,1,0 +30788330,Spacious alcove studio in the middle of Chelsea,37883321,Lionel,Manhattan,Chelsea,40.74435,-73.99535,Entire home/apt,160,7,8,2019-06-30,3.04,1,80 +30789224,Pvt Room in Quiet Home JFK 6mi LGA 10 mi -Silver,230025652,Kafayat,Queens,Queens Village,40.70359,-73.74859,Private room,38,2,14,2019-04-27,2.71,4,6 +30789463,Modern Cozy 2 Bedroom Apt on UES -Near subways!,93822547,Laura,Manhattan,Upper East Side,40.77515,-73.95173,Entire home/apt,185,2,3,2019-05-26,1.11,1,0 +30791183,Spacious One Bedroom Apartment (sleeps 2-5 people),230367259,James,Manhattan,Upper East Side,40.77861,-73.94628,Entire home/apt,200,7,0,,,1,235 +30791783,"Sunny, Spacious, Chic Interior Designer Apartment",129328105,Charlie,Manhattan,Upper East Side,40.77423,-73.96561,Entire home/apt,199,2,1,2019-04-29,0.42,1,50 +30791949,Cozy and spacious loft in Williamsburg/Bushwick,4510691,Gillian,Brooklyn,Williamsburg,40.70923,-73.9448,Entire home/apt,175,2,4,2019-05-13,0.62,1,34 +30792105,Wonderful Queen Room Next to Manhattan,36732553,Miriam,Queens,Astoria,40.75616,-73.91657,Private room,60,15,3,2019-03-31,0.48,3,331 +30792215,Room steps from Times Square,192754619,Liza,Manhattan,Hell's Kitchen,40.75568,-73.99661,Private room,159,1,1,2018-12-30,0.16,1,189 +30792372,UWS Studio Apartment,230375654,Tracey,Manhattan,Upper West Side,40.78168,-73.98099,Entire home/apt,250,2,0,,,1,0 +30792493,Luxury 2BR 2BA with washer/dryer in Soho/Tribeca,230165497,Lara,Manhattan,SoHo,40.72129,-74.0019,Entire home/apt,250,30,0,,,4,364 +30792566,"LES Well-Designed Flat, 3br, 5beds, Sleeps 9!",230371691,Mark,Manhattan,Lower East Side,40.71981,-73.98895,Entire home/apt,432,1,20,2019-06-23,3.35,1,325 +30793033,Private One Bedroom Apartment,230378560,Ta56,Queens,Briarwood,40.71398,-73.81834,Entire home/apt,66,2,9,2019-06-16,1.36,1,186 +30793116,"Peaceful, spacious and musical!",22863358,Marisa,Manhattan,Washington Heights,40.84245,-73.93886,Private room,80,2,1,2019-05-28,0.71,1,29 +30794026,Bed-Stuy Little Gem,223258125,Nuriia,Brooklyn,Bedford-Stuyvesant,40.67907,-73.9498,Entire home/apt,150,2,8,2019-06-23,1.27,1,6 +30795092,Oasis on Saratoga,166084232,Jermaine,Brooklyn,Crown Heights,40.67606,-73.9155,Entire home/apt,185,1,17,2019-06-16,2.48,1,48 +30795672,Private Room non smoking female only near JFK,230396622,Darlena,Brooklyn,Brownsville,40.65872,-73.90951,Private room,29,4,6,2019-06-21,0.94,1,66 +30795961,Quiet 1 bedroom near Midtown Manhattan,72082556,Nicole,Queens,Long Island City,40.73637,-73.9371,Entire home/apt,75,1,0,,,1,42 +30795963,"HARLEM, NY MASTER BEDROOM EN SUITE BATH & BALCONY",228571016,Alexis,Manhattan,Harlem,40.82591,-73.95144,Private room,190,2,1,2018-12-29,0.16,2,89 +30795983,City Portal,106667600,Monica,Queens,East Elmhurst,40.75782,-73.8844,Private room,42,10,3,2019-06-02,0.50,1,326 +30797115,"Private Room in Luxury Building, Downtown Brooklyn",48367358,Kuang,Brooklyn,Downtown Brooklyn,40.6923,-73.98298,Private room,65,30,0,,,1,17 +30797190,#1 JFK/NYC Home sweet home!,37891510,Carlos & Lina,Queens,Woodhaven,40.68577,-73.85984,Private room,45,3,10,2019-07-04,2.14,2,54 +30797357,Newly Renovated Bedroom Central Park South,230407184,Arjay,Manhattan,Hell's Kitchen,40.76707,-73.98591,Private room,131,2,2,2019-01-02,0.32,1,0 +30798396,Spacious room near airport LGA Manhattan & Gym :),137358866,Kazuya,Queens,Jackson Heights,40.74878,-73.8799,Private room,24,30,0,,,103,244 +30798936,Room Near Times Square/Javits/Hells Kitchen/MSG,230418398,Jordana,Manhattan,Hell's Kitchen,40.75651,-73.9976,Private room,89,2,1,2019-01-01,0.16,1,0 +30799010,Brand new building with Manhattan view,52053537,Inna,Queens,Long Island City,40.75317,-73.94015,Entire home/apt,200,3,0,,,1,0 +30799299,Beautiful Row House Steps From Prospect Park,16305093,Betsy,Brooklyn,Windsor Terrace,40.65716,-73.9755,Entire home/apt,450,4,0,,,2,87 +30799325,Cute inexpensive place for a short stay in Queens,78378674,Mihika,Queens,Elmhurst,40.74461,-73.87334,Shared room,40,1,1,2018-12-30,0.16,1,0 +30799348,Penthouse Gorgeous Apartment Stay,161769990,William,Brooklyn,Bedford-Stuyvesant,40.68964,-73.9508,Private room,45,7,8,2019-04-17,1.16,2,0 +30799727,Cozy and clean room. Easy transportation,160923266,Mario,Brooklyn,Greenpoint,40.73324,-73.95101,Private room,70,5,0,,,1,0 +30800201,Sunny and Bright Space in Heart of East Village,2729738,Kristina,Manhattan,East Village,40.72728,-73.98256,Entire home/apt,225,4,0,,,1,0 +30800868,W 70s BR in Classic UWS Building,3929012,Kevin,Manhattan,Upper West Side,40.77824,-73.98255,Private room,129,1,30,2019-07-01,4.69,4,49 +30801068,Spacious bedroom in a quiet commuter town.,137358866,Kazuya,Queens,Woodside,40.74031,-73.89213,Private room,33,30,3,2019-06-15,0.70,103,236 +30801197,1.5 BR w/ HUGE Living Room&Den - EZ access to City,14818535,Dustin,Queens,Maspeth,40.73889,-73.89706,Entire home/apt,122,2,17,2019-07-07,2.71,1,73 +30801344,Huge BR in Classic UWS Building W 70s,3929012,Kevin,Manhattan,Upper West Side,40.78012,-73.98279,Private room,129,1,37,2019-07-01,5.39,4,59 +30801989,Wonderful room with fridge next to Manhattan,36732553,Miriam,Queens,Astoria,40.75491,-73.9152,Private room,50,15,1,2019-05-04,0.45,3,341 +30805617,61 street and 2 ave apt D Manhattan,180380802,Avner,Manhattan,Midtown,40.75169,-73.97162,Entire home/apt,140,2,1,2019-05-19,0.59,4,354 +30805802,harlem/morning side heights/SOHA,10214546,Amy,Manhattan,Harlem,40.80629,-73.95478,Private room,250,1,0,,,1,179 +30806012,61st and 2nd ave apt C Manhattan clean safe,180380802,Avner,Manhattan,Midtown,40.75158,-73.97151,Entire home/apt,130,2,2,2019-05-09,0.29,4,365 +30809679,Luxurious and Bright Room Near Time Square,204160428,Cristian,Manhattan,Hell's Kitchen,40.76036,-73.99676,Private room,180,3,29,2019-06-22,4.58,3,126 +30810353,"Lovely Room, Midtown Manhattan!",204160428,Cristian,Manhattan,Hell's Kitchen,40.75934,-73.99563,Private room,160,3,30,2019-06-22,4.71,3,73 +30810475,Gorgeous Room! Close to Time Square,204160428,Cristian,Manhattan,Hell's Kitchen,40.75874,-73.99605,Private room,130,3,27,2019-06-23,4.35,3,114 +30811789,Piece of mind in Harlem,2423570,Alex,Manhattan,East Harlem,40.81568,-73.93442,Entire home/apt,150,30,4,2019-05-13,1.13,1,345 +30811876,Quiet Sunny Spacious Room in Charming Vintage Apt,54368503,Alison,Queens,Ridgewood,40.70351,-73.90212,Private room,120,3,0,,,1,0 +30811958,2 Bedroom Penthouse with Good Vibes,230498530,Patricia,Manhattan,Harlem,40.82621,-73.94125,Entire home/apt,90,30,1,2019-05-25,0.67,1,209 +30812691,Cozy private room near Upper West Central Park,103726845,Alessandra,Manhattan,Upper West Side,40.80269,-73.96459,Private room,85,1,0,,,2,0 +30812751,Double Double Room · Empire CIty New York,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75467,-73.99657,Private room,199,1,4,2019-01-20,0.61,30,363 +30812846,"New, Lovely Studio in Long Island City",159026666,Jerry,Queens,Long Island City,40.74774,-73.939,Entire home/apt,199,7,0,,,1,0 +30814038,Nice private bedroom near Upper West Central Park,103726845,Alessandra,Manhattan,Upper West Side,40.80236,-73.96604,Private room,90,1,2,2019-01-21,0.32,2,0 +30814580,Luxury Industrial 3 Bedroom Williamsburg Condo,228228269,Yoanna,Brooklyn,Williamsburg,40.7173,-73.96159,Entire home/apt,444,1,15,2019-06-24,2.49,1,326 +30814778,Magnificent NYC 1 Bedroom Apt in Hell's Kitchen!,163251048,Jen,Manhattan,Hell's Kitchen,40.76049,-73.99782,Entire home/apt,399,30,0,,,8,294 +30815072,Wonderful Clean 2 Bedroom Apartment in EV,228225649,Brent & Kaley,Manhattan,East Village,40.725,-73.98236,Entire home/apt,349,1,8,2019-06-29,1.88,1,352 +30815097,Entire 1BR APT in historic Clinton Hill Brownstone,3636827,Kyle,Brooklyn,Clinton Hill,40.68246,-73.9643,Entire home/apt,195,2,2,2019-05-19,0.31,1,44 +30815183,Location Location Location !!,230516915,C,Manhattan,Upper East Side,40.78013,-73.96031,Entire home/apt,590,14,0,,,1,358 +30815343,Room w/ Balcony-- 5min from Grand Central!!,921897,Richard,Manhattan,Murray Hill,40.74692,-73.97548,Private room,70,30,1,2019-01-01,0.16,1,172 +30815605,Massive Designer One Bedroom in Brownstone,2582762,Anna,Brooklyn,Fort Greene,40.69301,-73.97128,Entire home/apt,220,14,0,,,1,31 +30816604,Sweet South Slope Garden Apartment,3312111,Elsie,Brooklyn,South Slope,40.66146,-73.98371,Entire home/apt,150,2,3,2019-01-07,0.47,1,34 +30817001,"Beautiful, Newly Furnished, Luxury, Grand Central",52950465,Gal,Manhattan,Midtown,40.7541,-73.97056,Entire home/apt,169,30,0,,,12,365 +30817038,Double Double Room · Broadway,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75506,-73.99715,Private room,199,1,1,2018-12-27,0.15,30,365 +30817133,"Spacious, Mid-Century Studio in Downtown Brooklyn!",1992020,Brandon,Brooklyn,Fort Greene,40.6874,-73.97973,Entire home/apt,199,5,2,2019-05-06,0.32,1,0 +30817394,Spacious apartment in East Williamsburg!,192740917,Dotan,Brooklyn,Williamsburg,40.7054,-73.94239,Entire home/apt,120,7,1,2019-01-01,0.16,1,189 +30817424,Cozy Astoria Getaway!,230528448,Katie,Queens,Ditmars Steinway,40.77651,-73.91281,Private room,40,1,3,2019-02-02,0.48,1,0 +30817603,Large Private Room. Fits up to 6 people,135060128,Abella,Brooklyn,Williamsburg,40.70841,-73.95048,Private room,120,1,3,2019-07-06,0.47,2,269 +30818441,TIMES SQUARE 3BR FLAT APT,230531384,Carlos,Manhattan,Hell's Kitchen,40.76291,-73.99179,Entire home/apt,350,2,32,2019-06-23,5.25,1,198 +30818565,NICE 1 BEDROOM CLOSE 3 MALLS AND SHOPPING,190298308,Lucky,Queens,Forest Hills,40.73306,-73.84904,Entire home/apt,94,3,9,2019-06-30,1.32,1,329 +30818914,1400 Sq Ft Apartment on Broadway!,18653145,Mario,Manhattan,Harlem,40.83109,-73.94714,Entire home/apt,185,7,3,2019-05-08,0.99,1,128 +30819021,Your 1BR home in Murray Hill!,41955015,Angeles,Manhattan,Murray Hill,40.74719,-73.97478,Entire home/apt,150,1,2,2019-01-07,0.32,1,0 +30819096,"2 BEDROOM Home, in the Center of Midtown",53046634,Joey,Manhattan,Hell's Kitchen,40.76156,-73.99006,Entire home/apt,225,3,20,2019-06-20,3.17,2,68 +30819919,Charming Hideout by the East River,63419128,Noah,Manhattan,Stuyvesant Town,40.73284,-73.97635,Private room,120,3,2,2019-01-19,0.32,1,0 +30820062,"Spacious, sunny apartment by Prospect Park",7798275,Lucia And Rob,Brooklyn,Prospect-Lefferts Gardens,40.66027,-73.95376,Entire home/apt,100,25,1,2019-03-21,0.27,1,5 +30820590,Sun-Soaked Historic Brownstone Apartment,4408261,Peter,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95812,Entire home/apt,130,3,1,2019-01-02,0.16,1,0 +30821781,"Cozy Retreat, Close to LGA and Midtown",4691878,Kristine,Queens,East Elmhurst,40.75647,-73.89964,Private room,100,2,0,,,1,363 +30821795,UES Bliss,2793924,Tommy,Manhattan,Upper East Side,40.76909,-73.95479,Entire home/apt,140,4,4,2019-05-01,0.65,1,5 +30821860,Cozy 1 person bedroom in Fancy neighborhood,13126043,Carolle,Manhattan,Midtown,40.74312,-73.98447,Private room,89,3,1,2018-12-29,0.16,2,26 +30822294,Extra Large Bedroom In Lively part of Astoria!,1218437,David,Queens,Ditmars Steinway,40.77611,-73.90818,Private room,40,20,1,2019-07-01,1,1,156 +30822664,New York Apartment Near Times Square & Broadway,88814777,Jill S,Manhattan,Hell's Kitchen,40.76225,-73.99106,Entire home/apt,145,6,10,2019-06-30,2.63,1,163 +30822815,NYC cozy studio,193490396,Luping,Manhattan,Roosevelt Island,40.7579,-73.95256,Entire home/apt,185,2,23,2019-06-24,3.37,1,295 +30823061,2BED in Williamsburg With Private Patio!,11061595,Emilie,Brooklyn,Williamsburg,40.70709,-73.9506,Entire home/apt,250,3,2,2019-05-27,0.31,1,10 +30823647,"Quaint, Artsy 1BD in Greenpoint",147256857,Samantha,Brooklyn,Greenpoint,40.7258,-73.94426,Private room,120,4,0,,,1,0 +30823651,Hotel living! Private large bedroom & bath!!,83490060,Annette,Bronx,Throgs Neck,40.81518,-73.82708,Private room,99,1,1,2019-01-05,0.16,1,318 +30823817,New York Lovely Quiet Room near to Time’s Square,137191484,Maria,Manhattan,Hell's Kitchen,40.76436,-73.98779,Private room,120,1,31,2019-06-21,4.67,5,321 +30824786,▲Private Cozy Room at Madison Square Garden▲,230574578,Haru,Manhattan,Chelsea,40.74946,-73.99614,Private room,75,2,17,2019-06-24,2.80,1,11 +30824804,hip Bed-Stuy large one bedroom,6097531,Scott,Brooklyn,Bedford-Stuyvesant,40.68462,-73.95429,Entire home/apt,180,3,1,2019-03-09,0.24,1,158 +30824853,Stunning apartment heart of Williamsburg 2bd/2ba,5503926,Giancarlo,Brooklyn,Williamsburg,40.71158,-73.96162,Entire home/apt,250,3,16,2019-06-30,2.35,1,271 +30825043,Real Brooklyn Apt on Pacific and New York,221623897,Matt,Brooklyn,Crown Heights,40.67683,-73.94702,Private room,30,5,2,2019-02-01,0.32,1,220 +30826725,Cool Vibes at Ace’s High End Apt.,20780113,Ace,Brooklyn,Canarsie,40.63168,-73.90895,Entire home/apt,114,2,21,2019-07-07,4.38,1,68 +30826777,"LIC网红楼Jackson Park沙发客厅 +Luxury apartment livingrm",204006071,呈刚,Queens,Long Island City,40.74751,-73.93744,Private room,45,3,4,2019-06-07,0.68,1,0 +30842198,"Quite and safe locations, 2 blocks from train stat",30377766,Julio,Queens,Jackson Heights,40.75549,-73.87731,Private room,100,1,1,2019-05-05,0.46,2,179 +30842262,Mid-century Modern Midtown 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.74488,-73.97389,Entire home/apt,271,30,0,,,232,60 +30848952,Cozy private room in the Upcoming Bronx,230646296,Cesar,Bronx,Concourse Village,40.83311,-73.9116,Private room,34,2,2,2018-12-26,0.29,1,0 +30850027,"New York, private gorgeous bedroom!",86078173,Gina,Brooklyn,Williamsburg,40.7077,-73.93855,Private room,85,5,2,2019-06-27,0.32,1,25 +30850215,wheelchair accessible apt near Columbia University,230653775,Jane,Manhattan,Morningside Heights,40.80672,-73.96547,Entire home/apt,150,4,2,2019-05-23,0.55,1,0 +30850620,BROOKLYN : PRIVATE ROOM +BATHROOM,27264437,Hortense,Brooklyn,Bedford-Stuyvesant,40.69534,-73.93338,Private room,50,6,1,2019-01-21,0.18,2,0 +30851304,Twice As Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66292,-73.76711,Entire home/apt,75,1,40,2019-07-04,6.19,2,300 +30851988,Gorgeous please! Perfect for couple or two friends,111911758,Isaac,Queens,Astoria,40.75796,-73.91347,Private room,70,5,3,2019-06-14,2.43,1,69 +30852631,Tiny bedroom in Williamsburg - Brooklyn,15788530,Diana,Brooklyn,Williamsburg,40.71847,-73.94509,Private room,60,4,1,2019-01-01,0.16,2,0 +30852793,Spacious Room with natural light in Forest Hill,206025860,Angelina,Queens,Forest Hills,40.72223,-73.84647,Private room,37,1,1,2019-01-01,0.16,1,249 +30852891,BEAUTIFUL 2 BEDROOM,133594005,Carmen,Staten Island,St. George,40.64762,-74.08682,Entire home/apt,135,3,3,2019-06-14,1.76,1,232 +30853297,Cozy place one minute from metro,12249166,Tianxia,Queens,Long Island City,40.74906,-73.9385,Private room,340,1,0,,,1,90 +30853505,"Clean, spacious 1BR, 1BA in heart of NYC",23746969,Mike,Manhattan,Kips Bay,40.74175,-73.98135,Entire home/apt,300,2,5,2019-04-14,0.78,1,193 +30853530,Cute and Cozy Bedroom in Northern Manhattan,21934258,Sonia,Manhattan,Harlem,40.82263,-73.9547,Private room,65,4,8,2019-05-27,1.70,1,0 +30853694,Entire Loft with a bedroom and walk-in closet,14276413,Sedef,Brooklyn,Bedford-Stuyvesant,40.69066,-73.95922,Entire home/apt,300,2,2,2019-01-01,0.30,1,0 +30854157,"Renovated pre-war flat, terrace, & garden",230683611,Melissa,Manhattan,Hell's Kitchen,40.76238,-73.99259,Entire home/apt,180,2,2,2019-02-21,0.32,1,0 +30854475,Luxury Brooklyn Stay,69226908,Chassity,Brooklyn,East Flatbush,40.63659,-73.94734,Private room,40,1,15,2019-06-30,2.37,1,90 +30855018,Demo listing - not real,137447960,Rohit,Queens,Astoria,40.76495,-73.92529,Entire home/apt,70,18,0,,,1,178 +30855529,Double Room in Upper East Side Apt - Central Park,226764496,A. Nicholas,Manhattan,Upper East Side,40.76588,-73.95834,Private room,80,1,32,2019-06-16,5.33,4,27 +30855904,NEWLY FURNISHED Luxury Studio at Park Avenue South,102763353,Krysia,Manhattan,Midtown,40.74248,-73.98434,Entire home/apt,160,30,1,2019-01-06,0.16,2,0 +30856336,Large Room and Windows in Cozy Crown Heights,230698955,Victoria,Brooklyn,Crown Heights,40.67119,-73.93468,Private room,45,1,0,,,2,0 +30856384,Cozy Crown Heights Studio,13501779,Alex,Brooklyn,Crown Heights,40.67188,-73.95049,Entire home/apt,85,3,0,,,2,0 +30856584,"Double Room in Upper East Side, near Central Park",226764496,A. Nicholas,Manhattan,Upper East Side,40.76499,-73.95831,Private room,80,1,29,2019-07-04,4.26,4,18 +30856920,Brooklyn Holiday Getaway Pad,22920335,Eric,Brooklyn,Bedford-Stuyvesant,40.68149,-73.91459,Entire home/apt,110,7,1,2019-01-03,0.16,1,189 +30857071,Luxurious Hell’s Kitchen! Vibrant Famous NYC!,7985095,Douglas,Manhattan,Hell's Kitchen,40.76547,-73.99032,Entire home/apt,285,2,5,2019-07-02,1.40,3,44 +30857261,"Bright and airy close transport, left side",230108889,Malca,Queens,Kew Gardens Hills,40.71843,-73.81266,Private room,49,4,6,2019-07-06,0.95,2,111 +30857450,Cozy bedroom in Bed-Stuy area!,93520536,Jessenia,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9086,Private room,60,3,9,2019-06-29,1.43,1,20 +30857971,Luxury apartment in UES,39548500,Silvio,Manhattan,Upper East Side,40.779,-73.95298,Entire home/apt,300,3,4,2019-02-17,0.65,1,0 +30858685,Brooklyn the the way it should be,230712429,Matthew,Brooklyn,Bay Ridge,40.62611,-74.02213,Entire home/apt,90,1,0,,,1,0 +30859271,"Comfortable, Quiet, And A Good Night Sleep.",214678935,Kin,Brooklyn,Sunset Park,40.6465,-74.01454,Private room,55,1,14,2019-07-01,2.20,3,174 +30859838,Bright and stylish West Village gem,46389451,Martin,Manhattan,West Village,40.73245,-74.00328,Entire home/apt,190,3,13,2019-06-25,2.36,3,115 +30860048,comfortable room with cheap fee,230720666,Xiao,Manhattan,Financial District,40.70612,-74.01585,Private room,80,3,0,,,1,133 +30862301,Pvt entrance lower level apt w/cable-wi-fi pvt bth,22983583,Jannette,Queens,Woodhaven,40.69545,-73.86084,Private room,30,2,8,2019-06-09,1.76,1,0 +30875053,INCREDIBLE 1-BEDROOM IN MANHATTAN TOO,230670970,Jenuine,Manhattan,Harlem,40.81573,-73.94036,Entire home/apt,195,30,2,2019-05-13,0.62,1,239 +30877996,NYC loft by the beach,31307082,Veronica,Staten Island,Arrochar,40.58957,-74.07666,Entire home/apt,100,2,18,2019-07-08,2.81,1,296 +30878695,BRIGHT BEAUTIFUL BROWNSTONE IN BROOKLYN,66913051,Amy,Brooklyn,Williamsburg,40.71792,-73.94172,Entire home/apt,160,1,4,2019-01-20,0.59,1,49 +30879375,Cozy one bedroom in the heart of Greenpoint!,159336961,Dylan,Brooklyn,Greenpoint,40.7242,-73.95126,Private room,100,1,18,2019-06-23,2.81,1,325 +30879761,Comfortable Suite/Apartment in Manhattan,25573498,Tong,Manhattan,Morningside Heights,40.80511,-73.96572,Entire home/apt,60,5,4,2019-02-20,0.59,1,0 +30881039,Bright and Spacious Brown Stone Apartment,38320446,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68295,-73.93942,Entire home/apt,150,4,0,,,1,18 +30881484,Modern Room in Brooklyn,73618889,Alex,Brooklyn,Bushwick,40.70069,-73.9384,Private room,65,1,14,2019-06-16,6.67,1,44 +30882631,"Private bedroom in BK community, w/ parking",3285978,Nicole,Brooklyn,Bedford-Stuyvesant,40.6999,-73.94406,Private room,50,1,3,2019-01-01,0.46,2,0 +30882745,Luxury Studio In Heart of Manhattan,141720257,Mayur,Manhattan,Financial District,40.71074,-74.00627,Entire home/apt,150,30,0,,,1,0 +30882893,Artsy spacious apartment 3 mins from Times Square,230807441,Kevin,Manhattan,Hell's Kitchen,40.75805,-73.99292,Entire home/apt,450,4,2,2019-06-16,0.32,1,158 +30882957,Greenpoint Light & Plant filled Apt mins from city,37147077,Ashli,Brooklyn,Greenpoint,40.73787,-73.95281,Entire home/apt,115,3,2,2019-02-18,0.32,1,0 +30883546,Amazing Roommate Share in Prime NY Near Transit!,230192510,Zach,Brooklyn,Fort Greene,40.69738,-73.97396,Private room,48,30,1,2019-06-14,1,25,59 +30884263,Discounted Cozy Downtown Unit - 3 Bedroom 2 baths,227494795,Marissa,Manhattan,Lower East Side,40.71955,-73.9861,Entire home/apt,499,2,15,2019-05-25,2.27,1,297 +30885018,"Country home in Manhattan, w/ fireplace, backyard!",3757699,Jeremiah,Manhattan,Upper West Side,40.79272,-73.97069,Entire home/apt,515,20,0,,,2,0 +30885287,2Beds Studio apartment in Prime Location,211549023,Studioplus,Manhattan,Midtown,40.74657,-73.98685,Entire home/apt,240,2,12,2019-06-03,2.00,13,304 +30885549,Room with Balcony in trendy Williamsburg,47739675,David,Brooklyn,Williamsburg,40.71792,-73.95312,Private room,500,28,1,2018-12-31,0.16,1,89 +30885754,Fantastic Modern Co-Living Space 4L-3,230192510,Zach,Brooklyn,Fort Greene,40.69629,-73.97397,Private room,48,30,1,2019-05-07,0.48,25,58 +30885792,Sunny Bedroom in Chelsea Beauty!,130476089,Lennon,Manhattan,Chelsea,40.74293,-73.99922,Private room,80,1,2,2019-03-11,0.48,2,0 +30885937,"Private Bedroom in 5,000 sq ft DoBro Penthouse",79946214,Gopal,Brooklyn,Downtown Brooklyn,40.68887,-73.9829,Private room,109,1,16,2019-06-14,2.53,1,66 +30886242,Spacious and Bright bedroom (females only!),43960739,Eliana,Manhattan,Washington Heights,40.8455,-73.93987,Private room,52,1,1,2019-06-01,0.79,2,0 +30887065,"Entire 1st floor, Easy commute to Manhattan",67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93685,Entire home/apt,139,1,8,2019-06-14,1.36,9,134 +30887391,"Private bedroom in clean, quiet apartment",47779382,Kevin,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93854,Private room,30,16,0,,,1,40 +30887578,2nd FL cozy apartment,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93842,Entire home/apt,145,1,11,2019-06-18,2.13,9,118 +30888271,Cozy Cypress Suite Convenient To Train & JFK ×,230801598,JuVita,Brooklyn,Cypress Hills,40.68426,-73.87461,Private room,80,1,10,2019-06-19,1.51,1,32 +30888624,"Cozy 2 Bed Room Gramercy, New York",146607158,Jason,Manhattan,Kips Bay,40.73879,-73.98135,Entire home/apt,220,2,1,2018-12-19,0.15,1,0 +30890018,Private room in brand new apartment in HK,4491717,Goran,Manhattan,Hell's Kitchen,40.76132,-73.99443,Private room,180,3,1,2019-01-01,0.16,1,341 +30891437,Global Sanctuary ~Brooklyn Private Room,88036082,DaNeilia,Brooklyn,East Flatbush,40.64115,-73.92837,Private room,70,1,0,,,2,0 +30891733,BEAUTIFUL AND SPACIOUS STUDIO CLOSE TO LGA AND JFK,230584533,Sonia,Queens,Corona,40.745,-73.85927,Entire home/apt,99,1,64,2019-07-04,9.50,1,329 +30892041,Park Slope / Spacious and Comfy / Perfect Location,4631381,Merve,Brooklyn,Park Slope,40.67801,-73.97951,Entire home/apt,220,20,0,,,1,24 +30892407,Renovated 1 bedroom Near Subway to Manhattan & JFK,230868224,Carl,Queens,Richmond Hill,40.70279,-73.82576,Entire home/apt,61,2,32,2019-07-01,4.71,1,75 +30898965,Great views of the city,11510329,Angelica,Manhattan,Kips Bay,40.74103,-73.97451,Entire home/apt,180,4,2,2019-03-31,0.56,1,4 +30901275,The Den - 3 mins to JFK,223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66284,-73.76962,Private room,45,1,17,2019-06-11,2.60,3,0 +30902549,River View Apartment,44628416,Max,Manhattan,Washington Heights,40.85573,-73.93987,Entire home/apt,140,2,12,2019-06-18,1.89,1,122 +30902832,"Private and spacious room, 15 mins to Times Square",3307004,Vikas,Manhattan,Harlem,40.82384,-73.94776,Private room,99,4,2,2019-06-15,0.32,1,24 +30903214,Home Away From Home,229306781,Terrioma,Brooklyn,Crown Heights,40.67428,-73.91986,Private room,70,1,2,2018-12-28,0.30,1,73 +30903481,"Private room in Safe & Quite Greenpoint, Brooklyn",33839663,Mike,Brooklyn,Greenpoint,40.72574,-73.93785,Private room,60,5,5,2019-05-21,1.16,2,133 +30903797,Luxury Apartement in Manhattan,42322216,David,Manhattan,Financial District,40.70947,-74.01329,Entire home/apt,250,5,0,,,1,0 +30904197,Room in the Lower East Side,230941034,James,Manhattan,Lower East Side,40.71898,-73.98347,Private room,85,2,14,2019-06-18,2.27,1,357 +30904215,Gorgeous Penthouse in Chelsea / Meatpacking!,104364388,Chris,Manhattan,Chelsea,40.7413,-74.00429,Entire home/apt,350,30,11,2019-06-12,1.91,1,275 +30904692,Room Available in Crown Heights,164692370,Jared,Brooklyn,Crown Heights,40.67405,-73.95264,Private room,31,14,2,2019-03-19,0.34,1,0 +30904806,Entire Apartment in Astoria,196915362,Janna,Queens,Astoria,40.76804,-73.92161,Entire home/apt,190,5,1,2019-01-01,0.16,2,55 +30905035,Well located studio in the heart of NYC.,221418152,Abdiaziz,Manhattan,Harlem,40.80602,-73.95508,Entire home/apt,180,1,24,2019-07-05,3.79,1,85 +30905264,The Williamsburg Urban Haven,230961710,Dana,Brooklyn,Williamsburg,40.71408,-73.95501,Entire home/apt,60,1,37,2019-07-07,5.66,1,234 +30905265,Composer's Atelier in the Heart of Brooklyn,44354001,Silvio,Brooklyn,Bedford-Stuyvesant,40.69018,-73.93118,Private room,38,1,1,2019-01-03,0.16,1,0 +30906210,Newly Renovated Doorman Apt. with Great Amenities,10672594,Eduard,Queens,Long Island City,40.74827,-73.94557,Entire home/apt,210,3,1,2019-01-01,0.16,1,0 +30906267,XL cozy bedroom with separate entrance,40317143,Zsofia,Queens,Maspeth,40.72223,-73.90264,Private room,68,1,0,,,2,133 +30906400,Stylish Manhattan penthouse with private rooftop,11449978,Gwen,Manhattan,Harlem,40.82166,-73.94635,Entire home/apt,350,4,17,2019-05-07,2.59,1,23 +30907262,Spacious One-bedroom Home in Columbia U,215116298,冉阳,Manhattan,Morningside Heights,40.80449,-73.96426,Entire home/apt,80,14,0,,,1,0 +30907275,Cozy Brooklyn Loft,105221828,Tk,Brooklyn,Bedford-Stuyvesant,40.68124,-73.90797,Private room,60,2,1,2019-04-21,0.38,1,0 +30907441,Willimsburg Deluxe Studio,32874565,Madison,Brooklyn,Williamsburg,40.71763,-73.95334,Entire home/apt,125,15,1,2019-01-02,0.16,1,285 +30907448,Cozy bedroom with good location,225659661,Mariana,Brooklyn,Williamsburg,40.71528,-73.95033,Private room,120,2,0,,,1,89 +30908379,Charming 3bed/2 bath Apt near Central Park,230481249,Yocasta,Manhattan,East Harlem,40.80239,-73.9425,Entire home/apt,155,2,18,2019-07-02,2.73,1,123 +30908416,Sunny Greenpoint Apartment 5 Min Walk To Nassau G,25812202,Leah,Brooklyn,Greenpoint,40.72554,-73.94781,Private room,45,14,2,2019-06-25,0.32,1,21 +30908613,Room in bushwick!,192189607,Niki,Brooklyn,Bushwick,40.7037,-73.92659,Private room,60,4,0,,,2,22 +30908640,Alphabet City!! Entire Apartment!,7544635,Stephen,Manhattan,East Village,40.72747,-73.98409,Private room,175,3,0,,,2,0 +30908766,Modern Studio Apartment near transportation,16089151,Sahla,Queens,Queens Village,40.72219,-73.73605,Entire home/apt,85,2,17,2019-06-24,2.63,1,14 +30908886,Chic and Lofty Studio Apartment in heart of SoHo,24755227,Mic,Manhattan,SoHo,40.7271,-74.00286,Entire home/apt,109,6,5,2019-07-01,0.84,1,9 +30909031,Your 2 bedroom home in Brooklyn.,79355506,Eriola,Brooklyn,Fort Hamilton,40.62113,-74.03037,Entire home/apt,98,5,1,2019-01-01,0.16,1,23 +30909287,Luxury Apartment in Lower East Side,22323,Arnaud,Manhattan,East Village,40.72324,-73.9769,Entire home/apt,400,1,2,2018-12-30,0.30,1,0 +30910712,[New] Manhattan-Hell's Kitchen Private Studio,231003106,Joe,Manhattan,Hell's Kitchen,40.76428,-73.98988,Entire home/apt,125,2,22,2019-06-23,3.55,1,230 +30910732,"Spacious bright 4 bedrm Manhattan home, elevator!",59051417,Kai,Manhattan,East Harlem,40.79611,-73.94906,Entire home/apt,750,3,5,2019-06-05,0.78,6,249 +30911300,Charming Quiet Upper East Side Studio!,231007291,Samantha,Manhattan,Upper East Side,40.77382,-73.9535,Entire home/apt,160,2,6,2019-07-01,0.95,1,11 +30911893,"Modern, bohemian 1 bedroom apt in Williamsburg",19478720,Alex,Brooklyn,Williamsburg,40.71942,-73.95993,Entire home/apt,125,21,2,2019-05-16,0.50,1,81 +30912190,Harmony Guestsuite 10 mins from JFK & Mall,222946997,Shiniqua,Queens,Springfield Gardens,40.68789,-73.75117,Entire home/apt,93,1,24,2019-07-03,3.64,1,19 +30912539,Spacious Home Centrally located Near Downtown,231015527,Demi,Brooklyn,Prospect Heights,40.68056,-73.97251,Entire home/apt,275,2,5,2019-04-01,0.85,1,0 +30912652,Gorgeous Flat with Priv Patio Steps from 42nd/34th,17139611,Nina,Manhattan,Hell's Kitchen,40.75718,-73.99807,Entire home/apt,375,3,1,2019-01-01,0.16,1,0 +30912673,Williamsburg Penthouse,50760546,CRNY Monthly Rentals,Brooklyn,Williamsburg,40.70885,-73.96767,Entire home/apt,250,180,0,,,31,173 +30912712,cute studio apartment upper east side,231017568,Meli,Manhattan,Upper East Side,40.78415,-73.95248,Entire home/apt,100,30,0,,,1,99 +30913224,"Cozy and Sunny Room Williamsburg, Luxury Building",33771081,Rémy,Brooklyn,Williamsburg,40.70959,-73.94652,Private room,80,3,2,2019-05-08,0.31,1,0 +30913411,Gorgeous and spacious 1 BR in Nomad new listing,150424721,Kris,Manhattan,Chelsea,40.74531,-73.99098,Entire home/apt,299,3,1,2019-07-01,1,1,155 +30913615,Cute room for single traveler,33238800,Ayzhan,Manhattan,Hell's Kitchen,40.76568,-73.9876,Private room,100,1,35,2019-06-30,5.59,1,82 +30913799,Spacious bedroom near Central Park/Columbus Circle,87505316,Litri,Manhattan,Upper West Side,40.76927,-73.98477,Private room,90,3,5,2019-05-03,0.77,1,1 +30914075,Room in big and light Prospect Heights apartment,16333280,Hanna,Brooklyn,Prospect Heights,40.67452,-73.96618,Private room,55,2,4,2019-05-12,0.65,1,0 +30914114,Beautiful and cozy street view 1BR in W Village,54501105,Sophie,Manhattan,West Village,40.7328,-74.00468,Entire home/apt,180,3,15,2019-06-08,2.68,2,166 +30914235,Cozy Charming Room in South Slope 1 Min to METRO,51913277,Andrada And Alex,Brooklyn,Sunset Park,40.66182,-73.99805,Private room,45,2,13,2019-07-03,4.59,1,37 +30915138,Private Bedroom in Upper East Side-Central Park,226764496,A. Nicholas,Manhattan,Upper East Side,40.76574,-73.9583,Private room,80,1,5,2019-06-03,0.74,4,2 +30915351,"New Listing, 5 ☆ Host! Sunny, Quiet Lovely Flat!",226124574,Stephane & Mike,Manhattan,Upper East Side,40.77199,-73.94929,Entire home/apt,153,2,3,2019-06-08,0.81,1,274 +30915587,"Center of Flushing 2, Queens, Near Sheraton Hotel",169472089,Betty,Queens,Flushing,40.75974,-73.83399,Private room,80,5,0,,,2,89 +30916118,Large and cozy room in the heart of Manhattan,221934669,Tanya,Manhattan,Midtown,40.74981,-73.98585,Private room,350,1,7,2019-06-23,1.07,2,0 +30923312,700sf One Bedroom Loft in the Clouds,30214050,Alexandra,Brooklyn,Williamsburg,40.7131,-73.95044,Entire home/apt,125,5,1,2019-01-02,0.16,1,0 +30924308,Rooftop Oasis in Brooklyn for Shoots & Gigs,231091048,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68984,-73.95864,Entire home/apt,600,3,1,2019-01-03,0.16,1,66 +30924783,STEPS FROM BALL DROP IN TIME SQR! Sleeps up to 8!,89407287,Cole,Manhattan,Midtown,40.76421,-73.97977,Entire home/apt,1000,1,0,,,1,0 +30925552,San Carlos Hotel One Bedrm Suite (B) up to 5,173685298,Janet,Manhattan,Midtown,40.7564,-73.97242,Private room,425,1,1,2019-01-01,0.16,11,180 +30925627,Sweet 2 BR sublet in Brooklyn,41191579,Maura,Brooklyn,Crown Heights,40.66856,-73.93937,Entire home/apt,88,30,1,2019-03-31,0.30,3,34 +30925647,Private room 20 minutes away from Manhattan,184641438,Saly,Queens,Sunnyside,40.74194,-73.91787,Private room,65,1,4,2019-06-03,0.59,2,341 +30927349,Brand new Luxury & Spacious 2-Bedroom Apt in FiDi,230257556,Nan,Manhattan,Financial District,40.70559,-74.00669,Entire home/apt,420,2,20,2019-06-09,3.02,1,76 +30927746,Apt walk distance to Central Park+ 15 min Times Sq,66807700,Gabi,Manhattan,East Harlem,40.79469,-73.94351,Entire home/apt,220,2,3,2019-06-09,0.45,3,9 +30927844,Cost-effective nice room near Columbia University!,138349238,韦达,Manhattan,Upper West Side,40.80146,-73.96076,Private room,1350,1,0,,,1,365 +30928305,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.72886,-73.99139,Entire home/apt,179,1,0,,,33,364 +30928513,Cozy Room A,213781715,Anting,Brooklyn,Greenpoint,40.73132,-73.95036,Private room,119,1,0,,,33,180 +30928769,Cozy Room B,213781715,Anting,Brooklyn,Greenpoint,40.73095,-73.95131,Private room,89,1,0,,,33,180 +30929071,Stylish 2 Bedroom in Brooklyn + A Cat,231123296,Colleen,Brooklyn,Bedford-Stuyvesant,40.6952,-73.94412,Entire home/apt,175,2,1,2019-01-02,0.16,1,0 +30929123,Beautiful furnished bedroom in Crown Heights!!!,53058139,Terence,Brooklyn,Crown Heights,40.6685,-73.95364,Private room,100,5,0,,,1,69 +30929724,1 bedroom SOHO flat with sunny views,230503468,Robert,Manhattan,SoHo,40.72628,-74.00236,Entire home/apt,380,2,12,2019-04-16,1.89,1,0 +30929887,Spacious private room 15 min from Manhattan,145662625,Alena,Queens,Long Island City,40.76381,-73.93477,Private room,45,3,2,2019-02-17,0.38,1,5 +30929920,Corner Beach Front House!,56394959,Li,Queens,Arverne,40.58847,-73.79102,Private room,300,2,3,2019-04-16,0.47,1,133 +30930476,"Bright, Spacious 3BR/2BA in East Village, groups",227995389,Jackson,Manhattan,East Village,40.72375,-73.98188,Entire home/apt,443,1,30,2019-07-02,4.92,1,165 +30930863,Spacious Master Bedroom in Harlem,231133484,Nicole,Manhattan,Harlem,40.81963,-73.93879,Private room,50,1,3,2019-01-02,0.47,1,0 +30930990,Great location in midtown east!!!!,170223089,Dor,Manhattan,Midtown,40.76011,-73.97051,Entire home/apt,116,2,28,2019-07-01,4.57,1,99 +30931406,Gym+rooftop+pool. Lux private room,222900797,Emily,Manhattan,Upper East Side,40.76284,-73.96507,Private room,119,3,32,2019-06-21,5.22,1,239 +30932134,Winter wonderland in heart of Manhattan 32 & 5!,14210435,Liz,Manhattan,Midtown,40.74733,-73.98447,Private room,180,3,0,,,1,179 +30932198,Amazing location in SOHO! Make your visit GREAT!,11286990,Grace,Manhattan,SoHo,40.72725,-74.00288,Entire home/apt,225,2,9,2019-06-30,2.08,1,11 +30932236,Large 1920s home W/Parking | 20 mins from Midtown.,29854797,Michael,Bronx,Claremont Village,40.84145,-73.91027,Entire home/apt,150,3,29,2019-07-06,4.70,1,109 +30932555,[New] Hell's Kitchen/Time SQ Private One Bed Room,231144414,Matthew,Manhattan,Hell's Kitchen,40.76326,-73.98582,Entire home/apt,179,2,17,2019-06-20,4.77,1,229 +30933535,Chic 2 bedroom just a train ride away from NYC,230517521,Vincent,Queens,Ridgewood,40.69913,-73.90831,Entire home/apt,200,2,1,2019-06-30,1,1,0 +30933599,Gorgeous Bedroom in spacious Brooklyn apt,17259675,Christine,Brooklyn,Bushwick,40.70018,-73.91573,Private room,60,1,3,2019-03-17,0.48,1,0 +30934007,Bohemian getaway in NYC,230009785,Aurelia,Manhattan,Chinatown,40.71581,-73.99056,Entire home/apt,280,2,0,,,1,1 +30934310,AMAZING E. VILLAGE STUDIO-LONGTERM starting Aug 10,726197,Ana Maria,Manhattan,East Village,40.7243,-73.98255,Entire home/apt,129,15,0,,,1,332 +30934838,Prospect Park Family Townhouse,231157284,Cecilia,Brooklyn,Windsor Terrace,40.65463,-73.97536,Entire home/apt,300,2,0,,,1,35 +30935446,Private Bedroom next to Times Square,231161473,Lorenzo,Manhattan,Hell's Kitchen,40.76194,-73.99122,Private room,83,2,1,2018-12-23,0.15,1,0 +30935520,WEST VILLAGE GEM - LARGE BRIGHT 1BR W/KING BED,6151483,Marc,Manhattan,West Village,40.73693,-74.0023,Entire home/apt,300,4,8,2019-07-01,1.28,1,21 +30935679,Ashly’s apartment,231163395,Ashly,Manhattan,Harlem,40.82206,-73.93799,Private room,1000,30,0,,,1,90 +30936253,Upper West Side Spacious Cozy Bedroom,17875227,Reem,Manhattan,Upper West Side,40.79977,-73.96198,Private room,55,5,4,2019-03-17,0.59,1,3 +30937306,Hart Street Garden Apartment,34119511,Charles,Brooklyn,Bedford-Stuyvesant,40.69406,-73.93321,Private room,30,2,1,2018-12-23,0.15,1,0 +30937590,Sonder | The Nash | Artsy 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74792,-73.97614,Entire home/apt,262,2,8,2019-06-09,1.86,327,91 +30937591,Sonder | The Nash | Lovely Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74771,-73.97528,Entire home/apt,255,2,14,2019-06-10,2.59,327,81 +30937594,Sonder | The Nash | Brilliant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74845,-73.97446,Entire home/apt,245,2,4,2019-06-08,0.94,327,137 +30937595,Sonder | 11th Ave | Bright 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76188,-73.99616,Entire home/apt,185,29,1,2019-06-20,1,327,281 +30937596,Sonder | 11th Ave | Contemporary 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76037,-73.99744,Entire home/apt,185,29,1,2019-06-10,1,327,332 +30937597,Sonder | The Nash | Pristine Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74884,-73.97589,Entire home/apt,252,2,7,2019-06-23,1.19,327,117 +30937598,Sunny 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76079,-73.99807,Entire home/apt,189,29,1,2019-06-08,0.94,327,325 +30937740,Sonder | The Nash | Airy Studio + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74896,-73.97472,Entire home/apt,228,2,5,2019-06-19,0.91,327,111 +30937747,Sonder | The Nash | Bohemian Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74737,-73.9742,Entire home/apt,240,2,4,2019-06-01,1.06,327,99 +30937750,Sonder | The Nash | Simple Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97448,Entire home/apt,241,2,4,2019-06-03,1.30,327,130 +30937756,Sonder | The Nash | Creative 1BR + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97446,Entire home/apt,265,2,5,2019-06-12,1.21,327,83 +30937759,Sonder | The Nash | Bohemian 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97611,Entire home/apt,263,2,5,2019-05-18,0.99,327,62 +30937762,Sonder | The Nash | Charming Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74909,-73.97585,Entire home/apt,243,2,6,2019-06-21,1.09,327,153 +30937764,Sonder | The Nash | Polished Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74845,-73.97458,Entire home/apt,254,2,1,2019-04-11,0.34,327,159 +30937961,Cozy room in a great food-filled neighborhood,222654299,Irma,Queens,Elmhurst,40.74096,-73.87937,Private room,35,3,4,2019-06-16,0.76,1,310 +30938001,"Huge 400 sf BR, amazing location",6857284,Hadley,Brooklyn,Prospect Heights,40.6805,-73.97376,Private room,45,2,3,2019-01-30,0.49,1,0 +30938219,Beautiful Brooklyn Brownstone in Lefferts Gardens,2242911,Joshua,Brooklyn,Prospect-Lefferts Gardens,40.65928,-73.95431,Entire home/apt,200,30,0,,,1,0 +30938582,"Beautiful apartment in, steps from the train",231186389,A.M,Brooklyn,Flatbush,40.63379,-73.96246,Private room,40,53,0,,,1,90 +30938616,Charming NYC UpperWest Apartment,38013805,Corina,Manhattan,Upper West Side,40.79737,-73.96217,Entire home/apt,180,3,0,,,1,4 +30938629,"Penthouse Apartment in Williamsburg, Brooklyn",70143818,Alessandro,Brooklyn,Williamsburg,40.7194,-73.96374,Private room,80,3,4,2019-06-13,0.63,1,280 +30938769,Bright 1 Bedroom / Columbia & Morningside Heights,88774551,Megan,Manhattan,Morningside Heights,40.81325,-73.96122,Entire home/apt,80,3,1,2018-12-20,0.15,1,0 +30938864,"Large sunny bedroom in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76702,-73.90945,Private room,60,2,1,2019-01-05,0.16,3,51 +30939313,Funky sun-filled artist home near Fort Greene Park,129324501,Šara,Brooklyn,Fort Greene,40.68908,-73.97309,Entire home/apt,115,2,1,2019-06-20,1,1,16 +30939405,Cozy 1 bedroom in Upper East Side,71867363,Sarah,Manhattan,Upper East Side,40.77349,-73.95658,Entire home/apt,235,3,7,2019-06-24,1.14,1,0 +30939599,Small room in NOLITA Artist Tenement APT,866089,Launa,Manhattan,Little Italy,40.71943,-73.99712,Private room,150,5,1,2019-01-02,0.16,3,0 +30939678,Queen Bed in Beautiful Clinton Hill,65775049,Nicole,Brooklyn,Clinton Hill,40.68873,-73.96133,Private room,100,5,1,2018-12-19,0.15,2,6 +30940247,Naturally-lit Loft in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71004,-73.96781,Entire home/apt,120,29,0,,,7,0 +30940394,Clean Central Spacious One Bedroom Home,231141701,Oliver,Manhattan,Midtown,40.7506,-73.98882,Entire home/apt,199,1,5,2019-05-09,1.43,1,0 +30940780,Waterfront Room with Manhattan View and Balcony,6983558,Ben,Manhattan,Roosevelt Island,40.76358,-73.94761,Private room,150,2,14,2019-07-07,2.25,1,7 +30940831,Bohemian 1-bedroom in Williamsburg,77825548,Rafe,Brooklyn,Williamsburg,40.70379,-73.94329,Private room,100,1,1,2018-12-30,0.16,1,0 +30941062,Cozy & Clean private bedroom in Columbus Circle.,221591996,Sehwan,Manhattan,Hell's Kitchen,40.76732,-73.98482,Private room,89,5,2,2019-01-09,0.32,1,0 +30941095,Minutes to Manhattan,69713712,Trevor,Bronx,Hunts Point,40.81389,-73.88914,Private room,70,2,1,2018-12-30,0.16,1,342 +30941454,Spacious 1 bedroom in Bensonhurst - Sleeps 4,231212364,Kel,Brooklyn,Bensonhurst,40.6065,-73.99917,Entire home/apt,113,3,13,2019-05-27,2.07,2,118 +30941744,Simple studio,76388052,Xochilth,Manhattan,Harlem,40.82211,-73.93887,Entire home/apt,85,4,0,,,1,3 +30942018,Overnight Bed by Central Park New York City,231216524,Chase,Manhattan,Hell's Kitchen,40.7656,-73.98822,Shared room,80,1,18,2019-06-12,2.67,5,48 +30942047,Holiday Get Away,19902999,Jose,Manhattan,Midtown,40.75914,-73.9798,Entire home/apt,150,1,1,2018-12-31,0.16,1,0 +30942778,Share a Lg Studio room* 2 blocks subway* Bronx Zoo,1532337,Monica,Bronx,Van Nest,40.84047,-73.87127,Shared room,20,14,1,2019-05-08,0.48,4,139 +30943186,"25 minutes from Manhattan, shared room bunk beds",208367810,Dan,Brooklyn,Borough Park,40.63987,-73.99578,Shared room,40,3,2,2019-04-08,0.55,4,50 +30945324,Luxurious Private Sunny LES Full Floor Loft - NYC,1121064,Julie,Manhattan,Lower East Side,40.71909,-73.99343,Entire home/apt,499,1,18,2019-06-30,2.83,1,356 +30948025,⭐️ Luxury Studio with modern finishes ⭐️,193626078,Andy,Bronx,Williamsbridge,40.87701,-73.86282,Entire home/apt,200,1,34,2019-07-07,5.13,3,347 +30948183,One bedroom in 2 bedroom apartment,4333342,Megan,Manhattan,East Village,40.72712,-73.97803,Private room,75,1,15,2019-06-29,2.88,2,0 +30948241,Book NOW this New 3br Home with lots of space.,193626078,Andy,Bronx,Belmont,40.85222,-73.89277,Entire home/apt,299,1,10,2019-06-28,1.52,3,322 +30949075,Shared room for 2 persons 15 sec away from Mtrain,133802988,Sergii,Queens,Ridgewood,40.70482,-73.90342,Shared room,40,30,0,,,6,365 +30949331,Private room with queen-size bed! M and L trains,133802988,Sergii,Queens,Ridgewood,40.70487,-73.90354,Private room,57,30,0,,,6,365 +30950186,Classic Brownstone Living in historic BROOKLYN,195418702,Megan,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93566,Entire home/apt,450,3,0,,,1,357 +30950513,5 Star Manhattan Luxury St. Regis Hotel King Suite,26556695,Alyssa,Manhattan,Midtown,40.76042,-73.97504,Entire home/apt,1075,1,4,2019-02-18,0.61,6,365 +30950564,"My roomie is in Hawaii for 1 month, I'm on Airbnb",231272145,Joseph,Brooklyn,Bedford-Stuyvesant,40.68214,-73.92159,Private room,55,1,1,2018-12-30,0.16,2,0 +30950573,Brooklyn 3 persons shared room close to subway,17706542,Sergey,Brooklyn,Bushwick,40.6919,-73.90626,Shared room,32,30,0,,,6,342 +30950765,great Location with a fireplace balcony &rooftop,16105313,Debra,Manhattan,Midtown,40.74484,-73.98355,Entire home/apt,150,20,0,,,2,157 +30950818,"1 Bedroom, Comfortable Large Brownstone apt",85165113,LaTasha,Brooklyn,Bedford-Stuyvesant,40.68358,-73.91775,Entire home/apt,50,3,11,2019-07-03,1.69,2,26 +30951321,Luxurious Bushwick house 3person room near subway,17706542,Sergey,Brooklyn,Bushwick,40.69101,-73.9066,Shared room,32,30,0,,,6,330 +30951804,"Serene, Super-Sized Oasis in Bed Stuy",37728210,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68805,-73.92599,Private room,175,2,0,,,1,83 +30952008,Amazing 2 person shared room close to subway!!!,17706542,Sergey,Brooklyn,Bushwick,40.69102,-73.90525,Shared room,40,30,0,,,6,365 +30952896,Spacious 2 person shared room high near subway,17706542,Sergey,Brooklyn,Bushwick,40.69028,-73.90563,Shared room,40,30,0,,,6,365 +30953126,"Heavenly private room near subway line J,Z,M",17706542,Sergey,Brooklyn,Bushwick,40.69096,-73.90528,Private room,55,30,0,,,6,365 +30953535,Artist Apartment in EastVillage,2139368,Alexander,Manhattan,East Village,40.7289,-73.98091,Entire home/apt,175,5,1,2019-01-01,0.16,1,0 +30954420,Artistic apartment in the Heart of Manhattan,231298987,Austin,Manhattan,Lower East Side,40.7189,-73.98599,Entire home/apt,200,4,1,2019-03-16,0.26,1,0 +30954828,Clean and Cozy 1 Bedroom Apartment in LES,90230216,Ellen Fannie,Manhattan,Lower East Side,40.71966,-73.98184,Entire home/apt,102,2,2,2019-01-01,0.30,1,0 +30955020,"Shared place in Hell’s Kitchen, Midtown West!",197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.98671,Shared room,99,1,7,2019-06-14,1.04,7,33 +30955179,Beautiful Family Apt close to Broadway Station N/W,231303544,Erica,Queens,Astoria,40.76551,-73.92904,Entire home/apt,200,2,23,2019-06-30,3.50,1,265 +30955204,"Large bedroom and private bath, astoria, NY",134741341,Sofia,Queens,Astoria,40.77522,-73.93014,Private room,55,7,2,2019-04-28,0.33,2,0 +30955422,"HUGE warm sunny room in Clinton Hill, Brooklyn",12012671,Zahava,Brooklyn,Bedford-Stuyvesant,40.69266,-73.96046,Private room,65,5,1,2018-12-19,0.15,1,0 +30955962,Fabulous studio apartment 12 mins to Manahattan,116742660,Clinton,Queens,Astoria,40.76837,-73.92007,Entire home/apt,140,4,3,2019-06-03,0.48,1,101 +30956743,1BR Park Slope Apt w/ Private Backyard,87859431,Melysa,Brooklyn,Park Slope,40.68087,-73.97871,Entire home/apt,100,2,2,2019-02-17,0.31,1,1 +30956885,Entire Loft Apartment in Soho/NoHo/Nolita,96049478,Lida,Manhattan,NoHo,40.72604,-73.99342,Entire home/apt,550,7,4,2019-05-13,1.38,1,14 +30957964,Javits center 1 bedroom,231322933,Marisa,Manhattan,Hell's Kitchen,40.75605,-73.99711,Entire home/apt,134,1,33,2019-06-23,5.08,1,20 +30958404,Safe and lively South Harlem Condo with doorman.,231267860,Joseph,Manhattan,Harlem,40.80798,-73.95544,Private room,150,2,12,2019-06-29,4.04,1,184 +30958416,Sunny East Williamsburg Apartment,25612580,Josh,Brooklyn,Williamsburg,40.70721,-73.93843,Entire home/apt,105,2,14,2019-06-27,3.96,1,144 +30958452,Great Room in Heart of Williamsburg,14819229,Tim,Brooklyn,Williamsburg,40.71332,-73.95591,Private room,75,4,1,2019-05-13,0.53,1,47 +30958558,Sunny & Clean- Soho/west village loft,231327254,Candy,Manhattan,Greenwich Village,40.72699,-73.99933,Entire home/apt,250,3,22,2019-06-24,3.53,1,244 +30958706,Modern 2BD Plus Movie screening room-Alphabet City,17413870,Ashley,Manhattan,East Village,40.72103,-73.9804,Entire home/apt,295,3,5,2019-07-01,0.80,1,140 +30958853,"Cozy room,25 minutes to Manhattan",32581689,Fnu,Brooklyn,Sunset Park,40.63818,-74.01918,Private room,32,3,1,2019-01-01,0.16,1,0 +30958980,Brooklyn Apartment Room for Monthly Sublet,53911974,Joshua,Brooklyn,Bushwick,40.69951,-73.91352,Private room,35,30,1,2019-05-31,0.77,1,0 +30959724,(UES) Entire Apartment Near Central Park,21154516,Kal,Manhattan,Upper East Side,40.77608,-73.94665,Entire home/apt,180,2,15,2019-06-23,3.06,1,57 +30960178,Room in AMAZING Williamsburg Apartment!,36213174,Brittney,Brooklyn,Williamsburg,40.70786,-73.95022,Private room,70,5,1,2019-01-02,0.16,1,0 +30961345,2-bedroom apartment on the Upper East Side,86534046,Sierra,Manhattan,Upper East Side,40.78228,-73.94715,Entire home/apt,130,1,4,2019-02-17,0.63,1,0 +30961373,Master Bedroom in Spacious Washington Heights Apt.,3737055,Emmanuel,Manhattan,Washington Heights,40.84457,-73.94065,Private room,60,1,34,2019-07-03,5.34,1,66 +30962126,CQ 1 Bedroom,30223355,Adrienne,Manhattan,Financial District,40.70706,-74.00991,Private room,3000,3,0,,,1,23 +30962509,2 Bedrooms with Harbor View,231352789,Farah,Staten Island,Stapleton,40.63448,-74.07837,Private room,85,2,26,2019-07-04,3.92,3,305 +30963889,Shared renovated cozy room in heart of the city.,231216524,Chase,Manhattan,Hell's Kitchen,40.76481,-73.98724,Shared room,80,1,19,2019-06-24,2.82,5,52 +30964040,"Beautiful shared place by Times Square, Midtown.",231216524,Chase,Manhattan,Hell's Kitchen,40.76333,-73.98806,Shared room,80,1,39,2019-06-24,5.82,5,22 +30964065,The Pearl of Midtown Manhattan,79472397,Ilia,Manhattan,Hell's Kitchen,40.75878,-73.99011,Entire home/apt,220,5,7,2019-06-19,1.53,1,22 +30964729,"Shared apt by Theater District, Broadway",231216524,Chase,Manhattan,Hell's Kitchen,40.76546,-73.98712,Shared room,80,1,24,2019-06-19,3.58,5,46 +30964891,Queen Size Room in the Heart of Upper East Side,16026189,Rob,Manhattan,Upper East Side,40.77581,-73.95072,Private room,120,2,7,2019-04-28,1.11,2,66 +30964898,Chic Brooklyn Apartment,14100888,Alexandra,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95442,Entire home/apt,200,2,15,2019-04-24,2.30,1,0 +30965275,Basement in a Gorgeous Brooklyn Brownstone,231370569,Sharyn,Brooklyn,Bedford-Stuyvesant,40.69007,-73.94326,Private room,40,7,13,2019-06-26,2.39,1,93 +30965475,Cool Private Bedroom & Office/Living Room Bushwick,213069141,Evan,Brooklyn,Williamsburg,40.7033,-73.93583,Private room,60,2,1,2019-07-01,1,1,210 +30965544,Spacious sun-filled bedroom near Botanical Garden,23828476,Rosario,Bronx,Allerton,40.86437,-73.86047,Private room,80,3,4,2019-05-12,0.60,1,155 +30967230,manhattan 127 st and convent ave room 2,164886138,Eliahu,Manhattan,Harlem,40.81399,-73.95229,Private room,69,2,0,,,11,365 +30968359,Humble abode near Prospect Park,30770117,Chrystin,Brooklyn,Flatbush,40.65114,-73.96333,Entire home/apt,160,3,0,,,1,0 +30971850,Charming space in the heart of the East Village,6575362,Youmna,Manhattan,East Village,40.72918,-73.98154,Entire home/apt,180,1,0,,,1,188 +30973590,Designed 3-person shared room next to Wyckoff Ave,10994664,Alexander,Brooklyn,Bushwick,40.69078,-73.90504,Shared room,32,30,0,,,8,365 +30974737,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #3,205031545,Red Awning,Manhattan,Midtown,40.75393,-73.96646,Entire home/apt,956,4,0,,,49,124 +30974895,Spacious shared room near L-train,10994664,Alexander,Brooklyn,Bushwick,40.6915,-73.90623,Shared room,32,30,0,,,8,355 +30975278,Light twin room,10994664,Alexander,Brooklyn,Bushwick,40.69241,-73.90692,Shared room,40,30,0,,,8,276 +30975610,Gorgeous 2 people shared room with great amenities,10994664,Alexander,Brooklyn,Bushwick,40.69213,-73.90548,Shared room,40,30,0,,,8,365 +30975764,"Walk toTimes Square,Central Park,Museums, Broadway",17450152,Tiba,Manhattan,Hell's Kitchen,40.76356,-73.98956,Entire home/apt,230,1,17,2019-06-23,4.21,5,282 +30976138,Cozy private room in EastBushwick near subway,10994664,Alexander,Brooklyn,Bushwick,40.6905,-73.90622,Private room,55,30,0,,,8,340 +30978169,"Large, sunny, and chic apt in historic Harlem",2279677,Phil,Manhattan,Harlem,40.80709,-73.95363,Private room,99,2,17,2019-07-07,2.54,1,43 +30978824,bushwick nook,22010249,Jose,Brooklyn,Bushwick,40.69114,-73.91158,Private room,70,3,15,2019-06-18,2.32,2,137 +30979146,"Classic brick, Ambient lighting Apt Heart of NYC",231456842,Brian,Manhattan,Hell's Kitchen,40.76111,-73.99461,Entire home/apt,139,2,5,2019-05-24,0.79,1,10 +30979178,Beautiful boutique studio near Central Park,106396058,Anna,Manhattan,Upper East Side,40.76607,-73.96165,Entire home/apt,135,25,1,2018-12-21,0.15,1,0 +30980172,Sunny and Spacious Charmer in S Williamsburg,900055,Dominic,Brooklyn,Williamsburg,40.70917,-73.9658,Entire home/apt,125,3,0,,,1,0 +30980594,A GEM IN NOHO,28720717,Albert,Manhattan,East Village,40.72288,-73.98344,Entire home/apt,350,3,2,2019-05-20,0.38,2,342 +30980752,Sunny home w/ beautiful views,41511227,Joe,Brooklyn,Gowanus,40.66744,-73.99254,Entire home/apt,99,2,1,2019-01-21,0.18,1,0 +30981245,Huge Artistic Downtown Loft - Designer Furniture,17981316,Kasra,Manhattan,Civic Center,40.71324,-73.99881,Entire home/apt,410,3,0,,,1,18 +30981877,The NYC Adventure,231474021,Cyn,Manhattan,East Harlem,40.78724,-73.9494,Private room,65,365,1,2019-05-17,0.57,1,0 +30982252,The Nest...,207078295,Michelle,Queens,Ozone Park,40.66736,-73.83457,Private room,60,1,0,,,1,364 +30982372,Magnificent Industrial Chic 3 Bedroom Loft,228231975,Beny & Maria,Brooklyn,Williamsburg,40.71733,-73.96145,Entire home/apt,450,1,12,2019-07-01,2.79,1,334 +30984634,Cozy Room in Crown Heights 0 minutes from transit,29301222,Aleecea,Brooklyn,Crown Heights,40.67005,-73.93276,Private room,33,29,0,,,1,0 +30984803,Bright Spacious 2Bedrooms private Apt in Bay Ridge,35253342,Tee,Brooklyn,Bay Ridge,40.63284,-74.02272,Entire home/apt,120,9,1,2019-05-20,0.60,3,3 +30984989,susan place,111091786,Susan,Brooklyn,East Flatbush,40.6499,-73.91499,Private room,60,3,2,2019-01-04,0.31,1,189 +30989033,Master suite in iconic Brooklyn brownstone,38609581,Lira,Brooklyn,Prospect Heights,40.67888,-73.97077,Private room,130,3,1,2019-01-02,0.16,2,0 +30994310,Great Deal! Sunny 2 Bedroom in Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73344,-73.95653,Entire home/apt,100,1,26,2019-06-01,4.67,6,0 +30995347,Bedroom close to Manhattan(BIG),43930499,Katherine,Queens,Elmhurst,40.7455,-73.89103,Private room,75,1,14,2019-06-28,5.38,2,256 +30998033,A beautiful huge quiet Brooklyn apartment.,231503052,Jack,Brooklyn,Sheepshead Bay,40.6001,-73.94974,Entire home/apt,199,3,16,2019-06-28,2.57,1,129 +30999038,"Amazing location, A gem in Soho two bedroom",231515893,Chris,Manhattan,SoHo,40.7274,-74.0026,Entire home/apt,183,2,35,2019-07-02,5.36,1,294 +30999134,Private Room in a Neo Hippie Art Apartment!,231192888,Kevin,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94498,Private room,35,2,21,2019-07-06,3.33,1,100 +30999358,Living room at prime location,96379433,Satish,Brooklyn,Sunset Park,40.65924,-73.99685,Shared room,22,1,5,2019-01-14,0.81,2,0 +30999460,Sweet digs of Windsor,274296,Massimo,Brooklyn,Windsor Terrace,40.65554,-73.97932,Entire home/apt,104,3,30,2019-07-04,4.95,1,43 +31000518,Sunny Clean Modern 2BR w/ Private Roofdeck!,16145840,Nick,Manhattan,East Harlem,40.79745,-73.93834,Entire home/apt,100,2,1,2019-01-22,0.18,2,0 +31000800,U can have your private bathroom! @cozy area!,200239515,Shogo,Queens,Woodside,40.74288,-73.89488,Private room,40,30,0,,,15,22 +31000866,Beautiful apartment in Elmhurst,129124146,KImberly,Queens,Elmhurst,40.73399,-73.87351,Entire home/apt,150,3,2,2019-05-03,0.78,3,107 +31001555,5th Ave Luxury St. Regis NYC King Room Manhattan,26556695,Alyssa,Manhattan,Midtown,40.7608,-73.97391,Entire home/apt,820,1,1,2019-06-24,1,6,365 +31001961,Luxury Studio style room in Manhattan Brownstone,42676520,Andrew,Manhattan,Harlem,40.8072,-73.94747,Private room,69,1,61,2019-07-01,9.29,2,8 +31002413,Riverdale private room,231459188,Viktoria,Bronx,Fieldston,40.88796,-73.90473,Private room,49,1,3,2019-01-05,0.45,1,0 +31002659,"Best of NYC! Location and Lux Apt 1 Bed +& SofaBed",139479838,Sherry,Manhattan,Chelsea,40.7505,-73.99608,Entire home/apt,205,4,17,2019-07-02,3.40,1,44 +31002972,"Sunny, Plant-filled Apt in Manhattan’s Chinatown",1602948,Allie,Manhattan,Chinatown,40.71513,-73.99791,Entire home/apt,91,5,2,2019-05-30,0.33,1,1 +31003285,"City Views, Private Balcony, Clean, Private Bath",188230441,MyHomes,Queens,Flushing,40.75342,-73.83164,Private room,90,1,27,2019-06-17,4.09,1,29 +31012734,Stunning Central Chelsea 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74228,-73.99488,Entire home/apt,306,30,0,,,232,343 +31013452,Clinton Hill loft,97843035,Lionel,Brooklyn,Bedford-Stuyvesant,40.69209,-73.95868,Entire home/apt,300,3,0,,,1,364 +31014013,Spacious & Sunny Bedroom in Bedstuy,53243644,Omri,Brooklyn,Bedford-Stuyvesant,40.69255,-73.93915,Private room,45,1,6,2019-01-20,0.97,2,3 +31014208,Bright & Airy East Village Penthouse w/ Terrace,8525142,Molly,Manhattan,East Village,40.72391,-73.97698,Entire home/apt,520,3,7,2019-06-30,1.14,1,80 +31014381,"LaGuardia airport, JFK airport, citi fields",231628393,Jing,Queens,Flushing,40.73129,-73.80416,Entire home/apt,58,2,19,2019-07-05,2.95,1,57 +31016809,Huge Williamsburg Loft,19948445,Megan,Brooklyn,Williamsburg,40.71173,-73.96487,Entire home/apt,220,5,0,,,1,89 +31017171,Beautiful,231648163,Awa,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91775,Private room,80,2,0,,,1,365 +31017536,Spacious Beauty 1 Bedroom Apartment,9891348,Adelle,Manhattan,Kips Bay,40.74098,-73.98331,Entire home/apt,130,2,11,2019-07-06,1.76,1,4 +31017639,Cozy one-bedroom in Astoria!,227353438,Christina,Queens,Astoria,40.76412,-73.92055,Private room,70,2,1,2019-03-21,0.27,1,0 +31018202,Private Room in Bushwick Loft,88221919,Kate,Brooklyn,Williamsburg,40.70326,-73.9336,Private room,40,2,5,2019-04-04,1.30,1,0 +31018438,Charming 2 bedroom in Soho,231663345,Ana,Manhattan,Nolita,40.72316,-73.99577,Private room,399,3,7,2019-06-01,1.57,1,246 +31018826,SUNLIT OASIS,41059169,Alex,Brooklyn,Williamsburg,40.71159,-73.96318,Private room,118,2,4,2019-06-19,0.67,3,112 +31018857,Come feel at home,231667071,Leticia,Manhattan,Harlem,40.81734,-73.95428,Private room,100,7,0,,,1,365 +31018894,"Cozy, clean and quiet room in Bushwick.",28875304,Sebastian,Brooklyn,Bushwick,40.68991,-73.91349,Private room,37,2,8,2019-06-25,1.25,2,1 +31019621,Luxury on 5th Ave St. Regis 2 King BR Suite 5 Star,26556695,Alyssa,Manhattan,Midtown,40.76024,-73.97483,Entire home/apt,1999,1,0,,,6,365 +31020087,Charming 1BR by Washington Square Park Heart of NY,231675945,Alex,Manhattan,West Village,40.73236,-74.00213,Entire home/apt,370,3,20,2019-07-01,3.02,1,155 +31020399,"Newly Renovated Stylish Luxury 2 bedroom, first fl",231681941,Roberto,Bronx,West Farms,40.83942,-73.87518,Entire home/apt,165,2,4,2019-03-17,0.63,1,310 +31020675,Beautifully Renovated Small Mid Century Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72173,-73.9918,Private room,125,1,4,2019-07-07,0.79,2,165 +31021814,2nd bedroom still available for the holidays,231272145,Joseph,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92229,Private room,105,1,0,,,2,0 +31022309,"Amazing View in luxury building, Time Square",90818631,Max,Manhattan,Hell's Kitchen,40.75943,-74.00018,Private room,99,3,6,2019-05-04,1.02,1,5 +31022359,Nice Room Sunnyside 15 min to Times Sq (AC/TV),222886357,Grace,Queens,Sunnyside,40.73711,-73.91955,Private room,35,1,37,2019-07-07,5.84,2,0 +31022770,1bdr apartment / 2 stops to Manhattan (D/N trains),98522037,Anna,Brooklyn,Sunset Park,40.64929,-74.00422,Entire home/apt,100,2,5,2019-06-05,0.82,1,0 +31022861,Private Room Best LES Location- Read Description!,49909186,Andrea,Manhattan,Chinatown,40.71687,-73.99074,Private room,150,4,12,2019-07-02,1.89,2,72 +31023868,"Bright, charming Fort Greene studio",108810117,Jaclyn,Brooklyn,Fort Greene,40.68941,-73.98098,Entire home/apt,175,3,4,2019-07-07,0.63,1,9 +31023979,Mother & Daughter bnb-Brooklyn,231719679,Mother & Daughter,Brooklyn,East Flatbush,40.63846,-73.92892,Entire home/apt,75,1,27,2019-07-06,4.26,1,185 +31025081,Gorgeous NYC Hideout 20min to Times Square,87833104,Konni,Queens,Sunnyside,40.7426,-73.92318,Entire home/apt,85,4,3,2019-03-14,0.56,1,12 +31025252,Gorgeous Room in Lux Apt: Prime Upper East!,184670155,James,Manhattan,Upper East Side,40.77564,-73.94551,Private room,100,1,10,2019-03-30,1.69,2,0 +31028269,Spacious Sun-drenched two bedroom APT,5715157,Chafiq,Brooklyn,Clinton Hill,40.69303,-73.96196,Entire home/apt,200,1,19,2019-06-29,2.94,1,285 +31032487,Share Lg studio rm b2*2 blocks subway *Bronx Zoo,1532337,Monica,Bronx,Van Nest,40.84119,-73.87049,Shared room,20,10,2,2019-06-30,0.32,4,114 +31035022,Lovely Bushwick Garden Apartment,48325116,Marcela,Brooklyn,Bushwick,40.69157,-73.91288,Entire home/apt,155,2,1,2019-06-19,1,1,10 +31035955,Stunning Penthouse 2 bedrooms full city view,20862635,Milan,Manhattan,Hell's Kitchen,40.7685,-73.99128,Entire home/apt,400,4,17,2019-07-06,2.73,1,0 +31037068,Entire Basement Apartment near LGA,94380772,Mainul,Queens,East Elmhurst,40.76592,-73.87388,Entire home/apt,60,1,3,2019-07-07,3,1,50 +31037859,2 BEDROOM/3BED APT/TIME SQUARE/HELLS KITCHEN,37986167,Scott,Manhattan,Hell's Kitchen,40.76558,-73.98787,Entire home/apt,135,3,28,2019-07-04,4.24,2,141 +31038321,Center of Astoria,3369352,Anup,Queens,Ditmars Steinway,40.77594,-73.90799,Private room,55,2,0,,,1,35 +31038331,Splendid Midtown Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.75146,-73.99,Entire home/apt,215,30,0,,,232,2 +31038347,"Cheery Midtown 1BR w/ Doorman + Gym, near MSG by Blueground",107434423,Blueground,Manhattan,Midtown,40.75313,-73.98863,Entire home/apt,227,30,0,,,232,329 +31038390,Modern apt near mall and trains. 25 min from city,231831493,Javier,Queens,Elmhurst,40.73162,-73.87584,Entire home/apt,200,1,1,2018-12-22,0.15,1,0 +31038842,Sweet Home,230527676,Dj,Brooklyn,Bushwick,40.69142,-73.92472,Private room,140,1,4,2019-05-26,0.63,2,365 +31039678,Beautiful and Convenient 2 Bedroom In Flushing,5962328,Alan,Queens,Flushing,40.75985,-73.82393,Entire home/apt,120,30,1,2019-05-02,0.43,15,303 +31039690,Manhattan modern living by the Chelsea High Line,9770967,Irwin,Manhattan,Chelsea,40.74382,-74.00463,Entire home/apt,250,30,2,2019-01-27,0.34,1,233 +31039784,TWO BIG Rooms - a Park Slope Oasis,15942513,Tom,Brooklyn,South Slope,40.66617,-73.98862,Private room,90,2,15,2019-06-18,2.34,1,91 +31040444,Large Bedroom near Central Park and Mt Sinah,231846634,Jacqueline,Manhattan,East Harlem,40.79022,-73.9471,Private room,100,30,0,,,1,262 +31040644,Beautiful 2 bed with a balocony,229142922,Gad,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94446,Entire home/apt,205,2,0,,,2,89 +31040919,Cute apartment,5909599,Danica,Queens,Ditmars Steinway,40.77776,-73.91455,Entire home/apt,200,3,1,2019-05-10,0.50,2,11 +31041100,Charming studio close to everything,74841734,Christina,Manhattan,Hell's Kitchen,40.76676,-73.98953,Entire home/apt,200,6,2,2019-06-18,1.43,1,11 +31041659,Upper West Manhattan Suite - Cozy Private Bedroom,10415675,Yao & Rain,Manhattan,Harlem,40.82179,-73.95283,Private room,55,3,11,2019-06-30,1.76,7,1 +31041885,Cozy Room 20 minutes away from the city,184641438,Saly,Queens,Sunnyside,40.74132,-73.91931,Private room,65,2,0,,,2,341 +31042032,Columbia Univ Queen-bed in a Cozy Suite 5B,10415675,Yao & Rain,Manhattan,Harlem,40.82171,-73.95346,Private room,55,5,7,2019-06-01,1.09,7,154 +31042197,Sunny Boutique Condo on Picturesque Harlem Street,231863607,Jerry And Kate,Manhattan,East Harlem,40.80719,-73.94088,Entire home/apt,250,2,10,2019-04-07,1.54,1,0 +31042303,Upper West Manhattan Luxurious Master Bedroom 5C,10415675,Yao & Rain,Manhattan,Harlem,40.82343,-73.95469,Private room,50,5,4,2019-05-27,1.11,7,237 +31042470,Upper West Manhattan Spacious Master Bedroom 1C,10415675,Yao & Rain,Manhattan,Harlem,40.8222,-73.95416,Private room,58,5,2,2019-02-01,0.33,7,314 +31042971,纽约长岛市最新豪华网红楼王Jackson Park独立卧室出租!(出门就是地铁站!),190124793,Molly,Queens,Long Island City,40.74782,-73.93837,Private room,56,13,1,2018-12-24,0.15,1,12 +31043762,Upper West Manhattan Spacious Private Bedroom 1D,10415675,Yao & Rain,Manhattan,Harlem,40.82177,-73.95472,Private room,55,4,13,2019-07-02,2.29,7,299 +31043855,Nice apartment with great view on the Hudson River,81534306,Nourdine,Manhattan,Washington Heights,40.85257,-73.94161,Entire home/apt,160,2,1,2019-01-07,0.16,2,0 +31043873,Modern cheap huge 1bd apt next to Central Pk & sub,30600933,Helene,Manhattan,Harlem,40.79931,-73.95238,Entire home/apt,149,1,15,2019-06-22,2.43,1,35 +31044749,Pvt Room in Quiet Home Near JFK 6mi/LGA 10mi Lvdr,230025652,Kafayat,Queens,St. Albans,40.70522,-73.75063,Private room,35,2,11,2019-04-14,1.72,4,3 +31045451,Windsor Terrace Warm Artist Pad Prospect Park,8822878,Oleg,Brooklyn,Windsor Terrace,40.65329,-73.97987,Entire home/apt,250,2,1,2019-06-25,1,1,84 +31048559,You Will Love Our Beautiful 3 bed 3 Bath Home,229142922,Gad,Brooklyn,Bedford-Stuyvesant,40.68046,-73.94277,Private room,175,2,1,2019-02-07,0.20,2,89 +31049346,Espaço acolhedor e limpo próximo a Manhattan!,190389545,Andressa,Queens,Long Island City,40.75376,-73.94101,Private room,55,3,16,2019-06-21,2.42,2,3 +31050262,"Come and enjoy ""Brooklyn is the new Manhattan""",231929970,Nusrat,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94083,Private room,55,1,1,2019-01-02,0.16,1,0 +31052540,“Quincy Manor” in the heart of Bedford-Stuyvesant.,82735692,David,Brooklyn,Bedford-Stuyvesant,40.68858,-73.94534,Entire home/apt,100,2,20,2019-07-07,3.16,1,273 +31052694,Private Room With a Balcony In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.70877,-73.94171,Private room,89,6,8,2019-06-15,1.98,3,260 +31052742,PRIVATE ROOM in the heart of MANHATTAN,8033432,Tom,Manhattan,Hell's Kitchen,40.76769,-73.98649,Private room,140,2,1,2019-04-09,0.33,4,39 +31052910,GORGEOUS PRIME SOHO 3 BEDROOMS PENTHOUSE,163035332,Pirin,Manhattan,SoHo,40.72267,-74.00334,Entire home/apt,649,2,17,2019-07-01,2.59,3,281 +31053045,Sleeper shared rm on subway bronx zoo 30m2NYC,1532337,Monica,Bronx,Van Nest,40.84087,-73.8699,Shared room,20,10,3,2019-07-01,0.68,4,25 +31053180,Modern 2BR Williamsburg Loft With a Balcony,3363749,Alex,Brooklyn,Williamsburg,40.70646,-73.94169,Entire home/apt,189,6,2,2019-05-16,0.45,3,242 +31053208,Boutique Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69488,-73.93115,Private room,55,1,23,2019-06-10,3.77,2,28 +31053525,Luxury Bushwick design suite 15 min to Manhattan,34124858,Ana,Brooklyn,Bushwick,40.69975,-73.93865,Private room,60,5,0,,,1,0 +31054045,Cozy and Bright Bedroom for One or Two,93317715,Trisha,Queens,Ridgewood,40.7067,-73.91458,Private room,65,4,1,2019-04-26,0.41,1,0 +31054058,Modern & cozy bedroom in Manhattan,28142165,Souha,Manhattan,Harlem,40.82331,-73.95454,Private room,89,2,6,2019-05-22,0.95,2,170 +31054566,Perfect location in Manhattan,231971512,Roland,Manhattan,Chelsea,40.7463,-73.9911,Private room,68,1,0,,,1,0 +31054795,Beautiful bedroom in Upper Manhattan,28142165,Souha,Manhattan,Harlem,40.82219,-73.95381,Private room,89,2,10,2019-06-18,2.01,2,127 +31054975,Exposed Brick One Bedroom in the Heart of Soho,61586251,Zack,Manhattan,Nolita,40.72199,-73.99534,Entire home/apt,165,1,3,2019-06-30,0.46,1,12 +31055032,Greenwich Village Prewar off Washington Sq Park!,2623620,Jacob,Manhattan,Greenwich Village,40.72956,-73.9986,Entire home/apt,142,3,3,2019-01-03,0.45,1,0 +31055254,In the heart of midtown manhattan - CONVENIENCE,69446035,Michael,Manhattan,Midtown,40.75094,-73.981,Entire home/apt,100,1,0,,,1,365 +31055362,Single Room in the heart of Corona Queens,2084313,Clara,Queens,Corona,40.73729,-73.85595,Private room,46,2,4,2019-05-27,0.63,1,0 +31055896,Cute/Clean Affordable Room Close To Public Transp.,31247820,Samuel,Manhattan,Washington Heights,40.83845,-73.9412,Private room,75,1,1,2019-01-05,0.16,1,0 +31056015,Private room in a brand new brooklyn apartment,60127679,Jason,Brooklyn,Bedford-Stuyvesant,40.68368,-73.92623,Private room,63,1,63,2019-06-24,9.64,2,47 +31056122,"Private Bath, Private Room 2 blocks from NR trains",6675227,Jason,Brooklyn,Sunset Park,40.65035,-74.00974,Private room,75,2,2,2019-01-14,0.32,1,16 +31056942,Charming 1 Bedroom in Bushwick 20 min to Manhattan,1407079,Nate,Brooklyn,Bushwick,40.69936,-73.91729,Entire home/apt,120,30,0,,,1,0 +31057348,NY EMPIRE STATE DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75589,-73.99642,Private room,249,1,13,2019-06-19,2.13,8,81 +31057368,2 bedroom apt in the heart of Bushwick (House),13143585,Robert,Brooklyn,Bushwick,40.69577,-73.92612,Entire home/apt,250,2,1,2018-12-30,0.16,2,0 +31057394,Cozy bedroom in spacious Crown Heights apartment!,57090879,Aaron,Brooklyn,Crown Heights,40.66527,-73.95729,Private room,60,1,1,2018-12-31,0.16,1,0 +31057603,Home in the heart of Brooklyn,20287808,Karen,Brooklyn,Bedford-Stuyvesant,40.69497,-73.94978,Entire home/apt,69,30,0,,,1,0 +31058735,"25 minutes from Manhattan, shared room",208367810,Dan,Brooklyn,Borough Park,40.63892,-73.9974,Shared room,35,2,1,2018-12-30,0.16,4,87 +31058866,ENTIRE One Bedroom Apt Available 7/21-8/16,23662073,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.95135,Entire home/apt,70,7,0,,,1,14 +31058888,LOFT 108,26992810,Mike,Brooklyn,Bushwick,40.69832,-73.93544,Entire home/apt,100,3,12,2019-07-03,1.93,1,12 +31058909,"Cozy home # 2 In Brooklyn 20 min from N,y,c. 3bed",118029044,Freddy,Brooklyn,Borough Park,40.61019,-73.97343,Entire home/apt,200,3,0,,,2,325 +31058918,"Dvine Home, 5 Minutes from JFK, FREE parking",227919091,Flyn,Queens,Jamaica,40.67546,-73.7974,Entire home/apt,65,2,27,2019-06-24,4.40,1,182 +31059276,Premium Times Sqr 2 Bed 2 Bath ~ Rooftop,231468237,David And Natalia,Manhattan,Hell's Kitchen,40.76102,-73.98874,Entire home/apt,399,5,21,2019-07-07,3.44,1,118 +31060046,Nice place in Brooklyn .,201718939,Leon,Brooklyn,Greenpoint,40.73201,-73.95699,Private room,120,5,0,,,1,77 +31061295,Suíte Tati,103630226,Tatiane,Brooklyn,Sunset Park,40.64663,-73.9987,Private room,120,7,0,,,1,362 +31062827,Chateau New York!! 2 Bedrooms In BK,90687626,Shari,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92145,Entire home/apt,120,7,1,2019-06-25,1,1,68 +31064733,Cozy Shared Studio 10 minutes from Times Square!,6367348,Ikenna,Manhattan,Harlem,40.80242,-73.94562,Shared room,60,1,0,,,1,7 +31065551,Room 25 min away from Manhattan 7train/busQ67,31044879,Ara,Queens,Sunnyside,40.73718,-73.9209,Private room,60,3,8,2019-07-01,1.27,2,0 +31066679,Happy place to be,230527676,Dj,Brooklyn,Bushwick,40.69233,-73.92636,Private room,100,7,1,2019-01-01,0.16,2,365 +31067269,New York - Upper East side cozy appartment,60658041,Armel,Manhattan,Upper East Side,40.77018,-73.95502,Private room,125,3,2,2019-06-18,0.30,1,0 +31067660,Cozy private room in Greenwich Village,10803693,Bobby,Manhattan,Greenwich Village,40.72836,-73.99953,Private room,90,7,3,2019-05-05,0.94,1,88 +31067715,Large Bx condo 3 mins to Subway by Yankee Stadium,146675319,Will,Bronx,Fordham,40.85214,-73.90294,Entire home/apt,100,2,12,2019-06-17,2.98,3,20 +31068388,Small Deluxe Private room near LGA (Room#01),155691570,Mili,Queens,East Elmhurst,40.76406,-73.87312,Private room,35,1,65,2019-06-24,10.05,5,85 +31069444,Sunshine Room in Quiet Greenpoint Apartment,5576749,Paul,Brooklyn,Greenpoint,40.73752,-73.9535,Private room,75,2,9,2019-05-26,1.42,1,0 +31069942,Cozy room in a area with everything.female only pl,110179329,Nashwa,Brooklyn,Bay Ridge,40.6334,-74.0212,Private room,70,1,0,,,1,342 +31069988,Beautiful Apartment on the Upper West Side,17494958,Katy,Manhattan,Upper West Side,40.77391,-73.98874,Entire home/apt,200,3,0,,,3,0 +31070935,Cozy room in duplex apartment - terrace with view,232112395,Alessandro,Brooklyn,Crown Heights,40.67686,-73.93159,Private room,45,14,0,,,1,30 +31071518,Private room in my apartment.,191442758,Naftali,Manhattan,Harlem,40.81425,-73.94549,Private room,28,4,6,2019-04-16,1.05,1,0 +31072227,Private Bedroom in Chinatown/LES,16285179,Carolina,Manhattan,Two Bridges,40.71302,-73.99405,Private room,85,1,6,2019-06-09,1.67,2,42 +31073162,Luxury high floor 1bdrm in prime midtown location!,150723893,David,Manhattan,Midtown,40.75318,-73.98649,Entire home/apt,300,3,0,,,1,0 +31074354,Estilo y tranquilidad en un mismo espacio,227413647,Yamid,Queens,Jackson Heights,40.74888,-73.87708,Private room,50,2,29,2019-06-28,4.73,1,16 +31074425,Calm Environment,232152341,Decidel,Queens,St. Albans,40.69278,-73.76192,Entire home/apt,80,2,11,2019-06-13,2.31,1,313 +31075136,Fun Spacious 3 Bed 2 bath Elevator Building,113805886,Yaacov,Manhattan,Upper East Side,40.77893,-73.95221,Entire home/apt,350,31,1,2019-04-12,0.34,33,342 +31075162,2 BEDROOMS 2 PERSONS EACH,228571016,Alexis,Manhattan,Harlem,40.82584,-73.95024,Private room,295,1,2,2019-06-14,0.76,2,89 +31075172,Brooklyn's Finest - LL,50364039,Cathy,Brooklyn,Williamsburg,40.71477,-73.96122,Entire home/apt,130,2,25,2019-07-02,3.99,3,261 +31075624,Room + movie theater/gym/roof - 1 block to subway!,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69162,-73.95435,Private room,80,2,9,2019-07-01,1.48,2,0 +31076156,长岛豪华公寓单间卧室低价短租交通无敌便利,232169947,辣辣,Queens,Long Island City,40.74779,-73.9382,Private room,60,2,0,,,1,0 +31076185,Blue Modern 93,163603458,Qing,Queens,Queens Village,40.72218,-73.73396,Entire home/apt,79,1,59,2019-07-08,9.03,2,36 +31076667,"Luxury Astoria 1BD apt, 15 min from Manhattan",19630705,Eugene,Queens,Long Island City,40.75576,-73.93071,Entire home/apt,70,3,2,2019-03-18,0.32,1,4 +31077566,Prime East Village 1BR,1488170,Anish,Manhattan,East Village,40.72435,-73.98715,Entire home/apt,225,5,2,2019-03-10,0.37,1,90 +31082026,Elegant 2 bedroom in Chelsea,231465803,Robyn,Manhattan,Chelsea,40.74244,-74.00274,Entire home/apt,300,2,13,2019-07-03,2.57,1,16 +31082686,"Two BR, entire top floor, 23 Minutes to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.6828,-73.95303,Entire home/apt,83,30,1,2019-06-03,0.81,3,349 +31084737,"Terrific Tribeca 2BR, Indoor pool, Gym + Rooftop by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71696,-74.00689,Entire home/apt,373,30,0,,,232,259 +31084982,Studio Apartment in East Village,232241894,Steph,Manhattan,East Village,40.73033,-73.98518,Entire home/apt,100,30,0,,,1,246 +31085028,Village/soho | 2Br + Skylights,4399103,James,Manhattan,Greenwich Village,40.72785,-73.99933,Entire home/apt,310,31,18,2019-06-28,2.87,2,7 +31085213,NY MIDTOWN DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.756,-73.99783,Private room,209,1,20,2019-06-16,3.28,8,53 +31085554,Paradise in New York City 2,185265758,Shama,Manhattan,Harlem,40.82269,-73.94969,Entire home/apt,247,2,24,2019-07-06,4.26,2,263 +31085569,AFFORDABLE LUXURY...ENTIRE APARTMENT @ Its Best!,123519201,Festus Atu,Manhattan,Inwood,40.86856,-73.92623,Entire home/apt,300,1,12,2019-06-16,2.98,2,357 +31085679,Master bedroom in Bedstuy,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93115,Private room,80,3,11,2019-06-25,1.95,4,160 +31085806,"Huge Apartment & Private Bathroom, Upper East Side",47746841,Jonathan,Manhattan,Upper East Side,40.76521,-73.96337,Private room,99,3,14,2019-06-29,3.09,1,44 +31086198,6 minutes from JFK Private Bedroom/Bathroom,232251881,Lakshmee,Queens,Springfield Gardens,40.6667,-73.78469,Private room,100,1,86,2019-07-05,13.30,8,335 +31086356,HOME AWAY,85664849,Ismail,Brooklyn,Crown Heights,40.67637,-73.91352,Private room,60,1,6,2019-06-08,1.50,1,327 +31086787,nice suite available in victorian home.,197767541,Davied,Queens,Bayswater,40.61127,-73.76451,Private room,105,5,0,,,1,180 +31087023,Shared Room 4 FEMALE Guests 30mins to Manhattan-3,172369331,Abby,Brooklyn,Sheepshead Bay,40.59726,-73.95951,Shared room,40,3,1,2019-03-16,0.26,10,281 +31087094,1 bedroom spacious and bright apt near SOHO,169959693,Steven,Manhattan,Chinatown,40.71744,-73.99559,Entire home/apt,189,2,10,2019-06-13,1.59,1,35 +31087703,Times Square 3bedroom,382836,Chemme,Manhattan,Hell's Kitchen,40.76186,-73.99608,Entire home/apt,300,2,5,2019-06-20,1.06,4,173 +31088379,Manhattan second unit,227165735,Sara,Manhattan,Upper West Side,40.77783,-73.98433,Shared room,199,3,0,,,2,95 +31088862,"Luxury, Sunny, Comfy, Gorgeous views, Central Park",28191131,Al,Manhattan,Upper East Side,40.76451,-73.96249,Entire home/apt,890,3,0,,,1,0 +31089176,Brooklyn Home,12625165,Jeonghoon,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95961,Private room,42,1,0,,,1,0 +31089253,Cozy Sun Drenched Full Apt. 30 mins from City,232283561,Beverline,Bronx,East Morrisania,40.83026,-73.89102,Entire home/apt,200,1,26,2019-06-30,4.06,3,80 +31090120,"Elegant & Quiet & Convenient 紐約清雅居,地鐵公車便利,步行3分鐘到超市",56403037,Jane,Queens,Ozone Park,40.68757,-73.85084,Private room,44,1,3,2019-05-30,1.55,3,119 +31090222,6 Minutes From JFK Airport Cozy Bedroom,232251881,Lakshmee,Queens,Jamaica,40.668,-73.78477,Private room,30,1,98,2019-06-26,15.23,8,189 +31090310,Awesome 1 bedroom near Flatiron 30 day minimum.,171812142,Blanca,Manhattan,Midtown,40.74366,-73.98343,Entire home/apt,145,30,0,,,1,151 +31090684,Comfy room in the Heart of Bushwick,23074465,John,Brooklyn,Bushwick,40.70304,-73.91694,Private room,60,1,21,2019-06-13,3.35,3,78 +31090803,Clean & Nice & Affordable 3-P Room/Private Bath,216772639,Ling,Brooklyn,Borough Park,40.63529,-74.00618,Private room,48,1,2,2019-05-27,0.91,7,169 +31092944,Luxury Entire 3Bedroom Apartment near Downtown bk.,232191978,Gabriel,Brooklyn,Crown Heights,40.6776,-73.95447,Entire home/apt,350,3,8,2019-06-24,2.00,1,283 +31094549,Sunny Bedstuy apartment,2359328,Tega,Brooklyn,Bedford-Stuyvesant,40.69033,-73.94848,Entire home/apt,90,5,1,2019-01-22,0.18,1,1 +31095373,Private room in a quiet apartment,144124452,Yemi,Queens,Rosedale,40.65433,-73.73638,Private room,35,1,3,2019-06-22,0.47,3,46 +31097777,Quiet One-Bedroom in Williamsburg Close to Subway,115064362,Ale And Tom,Brooklyn,Williamsburg,40.70627,-73.95484,Entire home/apt,85,2,11,2019-06-14,1.76,1,237 +31098262,1 Bedroom/1 Bath Apt in Hudson Yards/Midtown West,232364825,Kusum&Kannan,Manhattan,Chelsea,40.75286,-73.99693,Entire home/apt,250,1,1,2019-01-01,0.16,1,0 +31099129,UES WITH VIEW OF EAST RIVER,232374986,Shelby,Manhattan,East Harlem,40.78591,-73.94234,Private room,70,1,6,2019-01-22,0.95,1,0 +31099515,Super Deluxe Private Room near LGA (Room #02),155691570,Mili,Queens,East Elmhurst,40.76577,-73.87131,Private room,35,1,56,2019-07-03,9.08,5,89 +31099533,Central Light Filled Studio,202478509,Yana,Manhattan,Hell's Kitchen,40.76101,-73.99431,Entire home/apt,160,4,2,2019-05-15,0.39,1,0 +31099999,SIMPLEHOME,137302318,Alona,Queens,Long Island City,40.75606,-73.93234,Entire home/apt,93,1,16,2019-06-26,2.45,2,181 +31100145,Super Big Deluxe Private Room near LGA (Room #03),155691570,Mili,Queens,East Elmhurst,40.76533,-73.87159,Private room,45,1,74,2019-06-23,11.38,5,89 +31100244,Private 2BR w/washer/dryer/balcony in Bushwick,95205457,Teddy,Brooklyn,Bushwick,40.69472,-73.92574,Entire home/apt,249,2,6,2019-06-24,0.98,1,0 +31100684,HUGE room in Grammercy,9420910,Alyona,Manhattan,Kips Bay,40.73885,-73.97938,Private room,150,1,1,2019-05-25,0.67,2,157 +31100844,Humble abode residing 20 minutes away from city,229554591,Kelsang,Queens,Sunnyside,40.73716,-73.91848,Private room,49,1,1,2019-01-07,0.16,2,0 +31101102,Quarto espaçoso perto de Manhattan!,190389545,Andressa,Queens,Long Island City,40.75408,-73.94098,Private room,48,2,21,2019-04-24,3.25,2,0 +31101257,East Village Nook,723184,Andrew,Manhattan,East Village,40.7279,-73.97797,Shared room,65,2,0,,,1,0 +31101775,Apartment share close to train station,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67862,-73.91233,Shared room,27,1,4,2019-06-10,0.63,17,89 +31101814,Stylish & Spacious Private Room + Bath in Bed-Stuy,229109330,Alejandra,Brooklyn,Bedford-Stuyvesant,40.68441,-73.94632,Private room,100,2,0,,,1,31 +31101826,Easy commute apartment next to subway,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67877,-73.91227,Shared room,35,1,9,2019-06-09,1.97,17,88 +31101852,Sunny room in iconic Brooklyn brownstone,38609581,Lira,Brooklyn,Prospect Heights,40.67782,-73.97076,Private room,120,2,0,,,2,0 +31102513,Sweet Spot! 2 rooms w/ PRIVATE ENTRANCE in BK!,8960308,Siji,Brooklyn,East Flatbush,40.64168,-73.95026,Private room,59,2,16,2019-07-06,4.49,1,13 +31102915,Comfortable Classy Apartment,232419771,Avi,Brooklyn,Midwood,40.61708,-73.95559,Entire home/apt,120,1,2,2019-02-17,0.35,1,126 +31103138,Best price-City College-1 train 20 min. Times Sq.,231830871,Sait,Manhattan,Harlem,40.81818,-73.95506,Shared room,50,1,27,2019-06-08,5.51,1,98 +31103559,Three bedrooms house,228608906,Linda,Staten Island,Arrochar,40.58796,-74.07205,Private room,65,1,8,2019-07-02,1.37,2,362 +31104180,West Village Apartment,26999875,Sarah,Manhattan,West Village,40.72998,-74.00774,Entire home/apt,500,2,0,,,1,0 +31106126,Entire Luxurious private Studio Near LGA Airport,155691570,Mili,Queens,East Elmhurst,40.75812,-73.87195,Entire home/apt,80,1,36,2019-06-17,5.71,5,150 +31106666,Cozy Room 2 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68966,-73.92946,Private room,65,3,5,2019-05-26,0.95,4,161 +31106850,Big Private Room in Manhattan,107362574,Poli,Manhattan,Washington Heights,40.8331,-73.94007,Private room,110,3,0,,,1,89 +31106961,Amazing apartment,93412728,Mor,Brooklyn,Williamsburg,40.71659,-73.95072,Private room,100,14,0,,,1,0 +31110349,Astoria Entire apartment,196915362,Janna,Queens,Ditmars Steinway,40.77638,-73.91308,Entire home/apt,85,40,2,2019-05-31,0.42,2,85 +31111599,Tribeca Treasure,6096884,Juliet,Manhattan,SoHo,40.71973,-74.00232,Entire home/apt,288,3,4,2019-05-09,0.70,1,87 +31112840,幸福小屋,232509057,David,Staten Island,South Beach,40.59164,-74.08197,Private room,55,1,10,2019-07-05,7.14,1,363 +31113241,"5 min walk to train,2 min walk to bus, most shop.",11082255,Hasan,Queens,Flushing,40.75644,-73.82875,Entire home/apt,200,2,1,2019-01-01,0.16,1,0 +31113620,HUGE queen bed 1 block away from Prospect Park!,29102073,Melissa,Brooklyn,Flatbush,40.65327,-73.96573,Private room,60,5,2,2019-05-27,0.32,1,0 +31114246,Modern King-Bed Private room and en-suite Bathroom,91015018,April,Brooklyn,Bedford-Stuyvesant,40.69038,-73.95953,Private room,112,1,29,2019-06-22,5.09,1,84 +31115149,Yellow submarine,165827975,Galina,Brooklyn,Bedford-Stuyvesant,40.69032,-73.92437,Private room,59,2,0,,,1,10 +31115685,Cozy Studio Apartment in the Heart of Williamsburg,17968226,Olivia,Brooklyn,Williamsburg,40.71881,-73.95369,Entire home/apt,175,2,0,,,1,24 +31116524,Cozy room near Prospect Park,72184742,Zach Williams,Brooklyn,Flatbush,40.65051,-73.95586,Private room,35,4,7,2019-06-26,1.17,1,20 +31116747,Beauty In The East-Mins to Subway/JFK/LGA/Manhatta,212729984,Victoria,Brooklyn,East New York,40.65905,-73.8976,Entire home/apt,150,1,13,2019-07-03,7.36,1,89 +31118219,Private Room @ Floasis Art Collective in Bushwick!,632548,Rachel,Brooklyn,Bushwick,40.69738,-73.92432,Private room,61,2,1,2019-01-01,0.16,1,307 +31118518,Astoria 320square feet room!!:),229104353,Abram,Queens,Astoria,40.77607,-73.92876,Private room,70,2,0,,,2,310 +31118586,Private Room with exposed bricks at East Village,75509095,Gia,Manhattan,East Village,40.7297,-73.97995,Private room,169,3,0,,,2,14 +31118680,One Bedroom Apartment in the Heart of East Village,222779801,Maira,Manhattan,East Village,40.73017,-73.98668,Entire home/apt,130,1,4,2019-05-17,1.46,2,120 +31119139,"Beautiful, sunlit bedroom in Brooklyn",33839663,Mike,Brooklyn,Greenpoint,40.72663,-73.93819,Private room,70,7,2,2019-05-16,0.32,2,63 +31119351,Beautiful Brooklyn Home,2557889,Serena,Brooklyn,Bushwick,40.70267,-73.92751,Private room,55,2,16,2019-05-13,2.57,1,2 +31119965,10 min subway to Time Square Sunny 1BR,228900167,Xi,Queens,Long Island City,40.7505,-73.94381,Entire home/apt,200,1,29,2019-06-17,4.86,1,148 +31120226,Private Room in 2BR East Village Apartment,15687009,Chad,Manhattan,East Village,40.72373,-73.97534,Private room,100,1,17,2019-07-06,3.21,1,73 +31120563,Magnificent 5 Bedroom Brooklyn Townhouse,9786357,Ilsa,Brooklyn,Prospect Heights,40.68187,-73.97075,Entire home/apt,1750,2,5,2019-07-01,1.65,1,358 +31120596,Beautiful Brooklyn Apartment - The Sunlight Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64245,-73.94603,Private room,48,1,1,2019-04-22,0.38,5,0 +31120812,Sunny Bedroom off Broadway,126625033,Nina,Manhattan,Morningside Heights,40.80556,-73.96503,Private room,50,5,0,,,1,0 +31120894,Bright and Cozy Room in Greenpoint!,95475481,Brandi,Brooklyn,Greenpoint,40.72706,-73.95439,Private room,55,7,2,2019-02-28,0.38,1,0 +31121208,Brooklyn home with a view,35855601,Emilie,Brooklyn,Kensington,40.64029,-73.97265,Private room,35,1,37,2019-07-04,5.75,1,97 +31121209,Industrialized in the City (1 guest only),37401126,Leah,Brooklyn,East Flatbush,40.64206,-73.94059,Private room,50,2,17,2019-06-28,3.57,4,318 +31121213,Studio with Historic Charm in South Harlem,8630543,Olga,Manhattan,Harlem,40.80456,-73.95033,Entire home/apt,115,3,15,2019-06-28,3.21,2,116 +31121525,"Charming 2Br in the middle of LES, SoHo",214869202,Joey,Manhattan,Lower East Side,40.72181,-73.98946,Entire home/apt,250,1,36,2019-06-22,6.17,1,10 +31121555,Private Room With Private En-Suite Bathroom,9316328,Maria,Brooklyn,Bedford-Stuyvesant,40.68587,-73.95221,Private room,60,3,14,2019-06-26,2.46,1,9 +31121622,Artists Home and Studio in Gramercy Park 2,307241,E. Adam,Manhattan,Gramercy,40.73583,-73.98037,Entire home/apt,155,3,18,2019-06-21,3.10,1,70 +31121946,Private House next to JFK,90169214,Victor,Queens,Ozone Park,40.68695,-73.84101,Entire home/apt,188,2,5,2019-06-23,0.99,1,344 +31122502,2 min walk to Times Square!!!,9730304,Baha,Manhattan,Hell's Kitchen,40.75982,-73.99066,Entire home/apt,205,4,1,2019-01-03,0.16,1,1 +31122551,Master Bedroom in Luxury Building,39761389,Stivan,Brooklyn,Bushwick,40.69933,-73.92886,Private room,185,1,14,2019-07-05,2.22,1,37 +31122807,500 sqft Art Deco Empire State and Hudson views,232599387,Michael,Manhattan,Chelsea,40.7411,-73.99669,Private room,200,4,2,2019-05-05,0.76,1,365 +31122836,Luxury Union Square Loft (3000 sq ft),22997536,Kyle,Manhattan,Chelsea,40.73732,-73.99033,Private room,200,1,2,2019-03-11,0.32,1,0 +31123021,Designer Artist Loft in Williamsburg,755603,Laura,Brooklyn,Williamsburg,40.70904,-73.94574,Entire home/apt,150,2,4,2019-06-16,0.63,1,0 +31123200,"NYC at your fingertips! Shopping, the Arts & more!",16431082,Kagle,Brooklyn,Fort Greene,40.68674,-73.97618,Entire home/apt,144,3,0,,,1,92 +31123490,Modern 1 Bedroom Escape with River Views,65294078,Matt,Manhattan,Hell's Kitchen,40.76792,-73.98453,Entire home/apt,279,1,12,2019-07-02,3.27,1,0 +31123611,JFK Airport Great place to stay 6 minutes away,232251881,Lakshmee,Queens,Jamaica,40.66823,-73.78374,Shared room,40,1,65,2019-07-06,10.00,8,346 +31124175,Botanical Bedstuy,21152553,Phi,Brooklyn,Bedford-Stuyvesant,40.68655,-73.92112,Entire home/apt,125,2,32,2019-07-06,5.16,1,57 +31124462,Home in Hell's Kitchen,2373009,Reza,Manhattan,Hell's Kitchen,40.76416,-73.98685,Private room,100,1,1,2019-02-24,0.22,1,0 +31124852,Totally Renovated Plush loft apartment,232618610,Hugo,Brooklyn,Cypress Hills,40.68392,-73.8693,Entire home/apt,195,4,7,2019-06-29,2.47,1,136 +31125134,Huge Private Room w/ Private Bathroom in Flatiron!,89509928,Kim,Manhattan,Midtown,40.74329,-73.98341,Private room,120,3,9,2019-05-26,1.43,1,0 +31125496,Cozy Room 1 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69088,-73.92983,Private room,65,3,11,2019-06-13,2.73,4,164 +31125857,Cozy Modern Getaway 30 mins from Manhattan (1Bdrm),232283561,Beverline,Bronx,East Morrisania,40.8296,-73.88971,Private room,125,1,9,2019-03-25,1.46,3,80 +31126424,A Girls Only Charming living room!!,176899233,Vicky,Brooklyn,Kensington,40.63981,-73.97165,Shared room,45,1,2,2019-05-31,0.60,2,22 +31127208,"Massive Manhattan Private Room,15 mins to Times Sq",99511145,Nichole,Manhattan,Harlem,40.80696,-73.94931,Private room,89,6,9,2019-06-03,1.42,2,0 +31127267,"Studio apartment between NYC, JFK and LGA airports",32540806,Maor,Queens,Kew Gardens Hills,40.72927,-73.82469,Entire home/apt,45,3,8,2019-06-02,1.33,1,0 +31127402,ONE OF A KIND: HUGE BEAUTIFUL LOFT,172391931,Francis,Brooklyn,Bedford-Stuyvesant,40.69232,-73.9534,Entire home/apt,250,5,1,2019-04-25,0.40,1,0 +31127529,Cozy Room 3 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68931,-73.93131,Private room,65,3,9,2019-06-03,1.79,4,126 +31127742,1000 Sq Ft HUGE apartment with Empire State views.,232648305,Josh,Manhattan,Kips Bay,40.74061,-73.98063,Entire home/apt,450,1,2,2019-03-04,0.32,1,89 +31127921,Prime East Village location! 2 bed/1 bath,182679740,Todd,Manhattan,East Village,40.72685,-73.9837,Entire home/apt,299,3,13,2019-06-23,2.32,1,212 +31128045,Spacious North Williamsburg 1 Bedroom w/ Yard,1390454,Gabe,Brooklyn,Williamsburg,40.7208,-73.96022,Entire home/apt,150,7,0,,,1,249 +31128175,Awesome Apartment in Lower East Side,855089,Shawn,Manhattan,Lower East Side,40.71327,-73.99019,Private room,60,30,0,,,1,0 +31129115,Luxurious Boutique Studio Red Hook Brooklyn,1499484,Tom,Brooklyn,Red Hook,40.67746,-74.01392,Entire home/apt,99,1,29,2019-06-28,4.97,2,273 +31135051,Pvt Single Room Occupancy Near JFK 6 mi/LGA 10 mi,230025652,Kafayat,Queens,St. Albans,40.70541,-73.75037,Private room,30,2,7,2019-04-30,1.10,4,6 +31135611,Pvt Room for Two Near JFK 6 mi/ LGA 10 mi- Olive,230025652,Kafayat,Queens,Queens Village,40.70533,-73.7485,Private room,38,2,13,2019-04-27,2.06,4,6 +31136603,"Bright, Luxury Executive Studio",22560728,Sean,Manhattan,Hell's Kitchen,40.76156,-73.99342,Entire home/apt,150,45,1,2019-05-07,0.48,1,56 +31139974,3 bedroom apartment for your perfect stay,44477551,Sammy,Brooklyn,Midwood,40.62532,-73.96286,Entire home/apt,250,3,0,,,1,101 +31140017,Historic District Brownstone 35 min from Midtown,65747874,Eric,Brooklyn,Crown Heights,40.67317,-73.94104,Private room,80,2,14,2019-07-04,2.68,2,78 +31141189,Watson’s Loft,3744921,Brandon,Queens,Forest Hills,40.72186,-73.85601,Private room,70,1,4,2019-06-23,0.65,1,134 +31142239,Brooklyn Retreat,232749708,Winston,Brooklyn,East Flatbush,40.65546,-73.92031,Entire home/apt,300,2,12,2019-04-14,1.95,1,352 +31142743,Purple Palace,36425865,Emily,Brooklyn,Bushwick,40.69388,-73.92974,Private room,39,1,13,2019-05-04,2.15,1,89 +31143144,Nice Private Room w/ 2 Beds,232767784,Mayra,Manhattan,Washington Heights,40.83414,-73.9438,Private room,70,3,10,2019-07-05,3.00,1,39 +31143377,Luxury Apartment with Statue of Liberty view,232463854,Mina,Manhattan,Battery Park City,40.7077,-74.01555,Entire home/apt,300,1,3,2019-05-17,0.76,1,363 +31143457,Empire State Building Views in Luxury 1 Bedroom,4783028,Emma,Manhattan,Midtown,40.75334,-73.98719,Entire home/apt,250,2,4,2019-06-10,1.12,1,0 +31144302,Beautiful Modern Lower East Side Apartment!,9152003,Katie,Manhattan,Lower East Side,40.72176,-73.99218,Entire home/apt,199,2,18,2019-07-06,2.92,1,16 +31144445,Room in Bensonhurst,232778333,Jaime,Brooklyn,Bensonhurst,40.61355,-73.99648,Private room,25,5,7,2019-04-13,1.23,2,175 +31144697,Midtown East 2 bedroom apartment,232784693,Tanya,Manhattan,Midtown,40.75376,-73.96669,Entire home/apt,350,3,10,2019-06-22,1.86,1,207 +31144865,Cozy private bedroom close to train and Manhattan,224204301,Tylor,Bronx,Mott Haven,40.81331,-73.92765,Private room,60,1,30,2019-07-02,6.38,2,333 +31145076,Modern comforts,66084717,Tim,Brooklyn,East Flatbush,40.65079,-73.92527,Entire home/apt,125,3,15,2019-07-07,4.25,2,227 +31145329,APT-2:Room 1,72602373,Mo,Brooklyn,Brownsville,40.66313,-73.91653,Private room,81,1,4,2019-06-01,0.97,2,36 +31145652,"Great Manhattan Apartment, Near ALL! Quiet!",23155661,David,Manhattan,Upper East Side,40.77711,-73.95059,Entire home/apt,219,6,1,2018-12-31,0.16,1,39 +31145654,Shared male Room on Manhattan! Amazing view! II,39528519,Max,Manhattan,Lower East Side,40.70991,-73.98835,Shared room,35,14,1,2019-02-15,0.21,28,320 +31145829,"Nice, cozy and fresh male room on Manhattan III",39528519,Max,Manhattan,Lower East Side,40.71112,-73.98691,Shared room,32,14,0,,,28,342 +31145928,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.98667,Shared room,35,14,0,,,28,321 +31146079,Amazing cozy and warm male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71124,-73.98687,Shared room,35,14,0,,,28,322 +31146186,Large bedroom with a private terrace in Astoria,6586697,Yasha,Queens,Astoria,40.76904,-73.91002,Private room,75,1,1,2019-04-11,0.33,3,0 +31147386,Spacious Studio near Prospect Park,9664155,Ewa,Brooklyn,Windsor Terrace,40.6518,-73.97575,Entire home/apt,52,30,1,2019-03-31,0.30,1,0 +31147410,Private and cozy room,144124452,Yemi,Queens,Rosedale,40.6528,-73.73627,Private room,40,1,6,2019-03-11,0.93,3,56 +31147583,Best Apartment in Manhattan Central Park,81013659,Milena,Manhattan,Upper East Side,40.76756,-73.95643,Entire home/apt,215,2,1,2019-03-16,0.26,2,265 +31148287,Carroll Garden Brownstone Charmer w/ Washer&Dryer,23901417,Megan & Erica,Brooklyn,Carroll Gardens,40.6805,-74.00091,Entire home/apt,100,7,0,,,1,0 +31148404,"Luxury Doorman Apartment - POOL, GYM, LOUNGE +++",34271675,Chris,Manhattan,Financial District,40.70763,-74.00671,Entire home/apt,110,15,2,2019-05-15,0.80,1,0 +31148486,One bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70632,-73.91182,Entire home/apt,75,1,9,2019-02-01,1.40,3,132 +31149002,"Close to all NYC attraction, easy access",24117374,Karina,Manhattan,Morningside Heights,40.80206,-73.95949,Private room,150,3,0,,,1,364 +31149078,Sharing room for FEMALE #2,167620568,Mikosya,Brooklyn,Brighton Beach,40.5776,-73.96231,Shared room,30,1,1,2019-06-23,1,2,364 +31149094,Tribeca Loft,273174,Jon,Manhattan,Tribeca,40.71943,-74.00435,Entire home/apt,1000,1,2,2019-06-14,0.40,3,38 +31149465,Spacious Duplex with two terraces and a roof deck,24202039,Logan,Brooklyn,Williamsburg,40.71142,-73.94819,Private room,125,1,1,2018-12-31,0.16,1,0 +31149641,Charming Private Room Near Central Park,60281397,Lugao,Manhattan,Upper West Side,40.79721,-73.96875,Private room,99,2,6,2019-05-12,0.93,3,49 +31150305,East Village Peaceful Perfect One Bedroom,2928701,Catalina,Manhattan,East Village,40.72722,-73.98383,Entire home/apt,210,7,0,,,2,235 +31150327,Light and refresh 1-2 bdrm apartment,4770121,Somaya,Manhattan,Harlem,40.82511,-73.94031,Entire home/apt,100,7,0,,,4,0 +31151589,Private room in beautiful Brownstone building,16354583,Monica,Brooklyn,Crown Heights,40.67325,-73.94666,Private room,30,5,2,2019-01-31,0.33,1,0 +31151736,The perfect NYC flat in the Meatpacking / Chelsea,43770857,Matthew,Manhattan,Chelsea,40.74393,-74.00444,Entire home/apt,190,3,2,2019-03-04,0.32,1,0 +31152858,Cozy bedroom next to Columbia University,232860638,Maria,Manhattan,Morningside Heights,40.80998,-73.959,Private room,110,1,1,2019-01-29,0.19,1,0 +31153254,TOURISTS DREAM - Room steps from Grand Central,50241946,Ana,Manhattan,Midtown,40.75017,-73.97241,Private room,250,2,20,2019-06-23,3.17,1,1 +31154648,Heart of Brooklyn 1 Bedroom in 2 bdr apt.,218300937,Thomas,Brooklyn,Clinton Hill,40.68457,-73.96605,Private room,59,3,0,,,2,179 +31162245,Beautiful Brooklyn Apartment: The Red Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64227,-73.94702,Private room,48,1,2,2019-04-22,0.36,5,0 +31164039,Amazing BR w/ Private Bath near subway & Manhattan,137358866,Kazuya,Queens,Woodside,40.74524,-73.90637,Private room,70,30,0,,,103,269 +31164918,Bright and cozy bedroom in Williamsburg,29523138,Ita,Brooklyn,Williamsburg,40.70792,-73.94087,Private room,48,1,23,2019-04-30,3.71,2,0 +31164968,Room in Perfect Bushwick Location,146169974,Daniela,Brooklyn,Bushwick,40.70258,-73.92614,Private room,90,3,2,2019-04-06,0.46,1,0 +31165324,Furnished room in beautiful spacious duplex,44409079,Mariana,Brooklyn,Williamsburg,40.71198,-73.94807,Private room,125,30,0,,,1,340 +31166689,LARGE ROOM 15 TO MANHATTAN,67376966,Lucky,Queens,Rego Park,40.73097,-73.85736,Private room,88,1,0,,,3,188 +31166982,cozy massive room for January,232959891,Niccolo,Brooklyn,Bushwick,40.69547,-73.91941,Private room,60,1,4,2019-01-20,0.63,1,220 +31167183,Luxury private whole apartment 6 people Bushwick!!,81662935,Kamaran,Brooklyn,Bedford-Stuyvesant,40.68382,-73.91467,Entire home/apt,97,2,19,2019-06-27,3.00,2,340 +31167434,Sunny bedroom pvt entrance close to Times Sq. 62F,190921808,John,Manhattan,Hell's Kitchen,40.75518,-73.99568,Private room,99,7,6,2019-05-31,1.70,47,321 +31168240,Beautiful Brooklyn Apartment: The Quaint Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64311,-73.9472,Private room,48,1,3,2019-06-08,0.49,5,0 +31168577,Beautiful Brooklyn Apartment: The Cozy Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64376,-73.94616,Private room,48,1,5,2019-06-08,0.80,5,0 +31168781,Amazing cozy and warm male room on Manhattan IV,170263842,Sultan,Manhattan,Lower East Side,40.71013,-73.98822,Shared room,35,14,0,,,4,334 +31168852,Beautiful Brooklyn Apartment,232578558,Nick & D.,Brooklyn,East Flatbush,40.6434,-73.94738,Entire home/apt,156,2,30,2019-06-24,4.69,5,21 +31169585,A Home just like Home!!!,175714102,Daisy,Bronx,Mott Haven,40.81185,-73.91625,Entire home/apt,100,1,0,,,1,173 +31169716,Astoria Apt quick trip to Manhattan and LGA,37087545,Daniel,Queens,Astoria,40.77029,-73.9197,Private room,98,30,1,2019-02-17,0.21,1,0 +31169765,Little Belaire,232985707,Ursula,Brooklyn,Windsor Terrace,40.6579,-73.98101,Entire home/apt,99,2,18,2019-07-07,5.00,1,32 +31170814,"Tranquil, Cozy, Comfy Cottage.",125586920,Julie,Bronx,City Island,40.85746,-73.79056,Entire home/apt,175,2,14,2019-06-23,2.66,1,79 +31171380,Clean Affordable Room #4,20120009,Jannices,Brooklyn,Bushwick,40.68895,-73.9062,Private room,38,1,3,2019-04-23,0.95,6,6 +31172260,Relaxing and convenient shared room in UES,45317760,Mohammed,Manhattan,Upper East Side,40.76939,-73.95436,Shared room,35,1,14,2019-05-30,2.37,3,22 +31172569,Bebop & Swing Space,224126362,Nikki Jo,Brooklyn,Bedford-Stuyvesant,40.68066,-73.93281,Entire home/apt,200,2,0,,,1,22 +31172584,Williamsburg Duplex Loft of Lorimer L,4318363,D,Brooklyn,Williamsburg,40.71462,-73.95278,Entire home/apt,180,3,2,2019-02-18,0.41,2,24 +31173428,Cozy ✨LARGE BED✨ In the heart of NYC!,233021124,Jules,Manhattan,Hell's Kitchen,40.76878,-73.98737,Entire home/apt,200,4,10,2019-06-24,1.80,1,80 +31173740,Marion Manor,233025597,Déon,Brooklyn,Bedford-Stuyvesant,40.68092,-73.92045,Entire home/apt,195,2,4,2019-07-01,1.28,1,301 +31174332,"Single Room in Upper East Side, near Central Park",226764496,A. Nicholas,Manhattan,Upper East Side,40.7658,-73.95812,Private room,50,1,37,2019-07-01,6.42,4,22 +31174610,Brilliant BR w/ Private Bath near LGA & Manhattan,137358866,Kazuya,Queens,Woodside,40.74451,-73.90782,Private room,60,30,1,2019-03-19,0.27,103,209 +31174636,Cozy bedroom with balcony. 25min TimeSquare,233035096,Roxanna,Queens,Rego Park,40.7211,-73.85968,Private room,45,1,4,2019-06-19,0.96,1,97 +31174994,"Private comfortable bedroom, 25min to TimeSquare",233038917,Roxanna,Queens,Rego Park,40.71952,-73.85839,Private room,55,1,14,2019-06-15,2.22,1,286 +31175570,Charming garden level apt in Brooklyn Townhouse,29129194,Ferris,Brooklyn,Bedford-Stuyvesant,40.68483,-73.94745,Entire home/apt,90,3,17,2019-06-15,4.15,1,91 +31175623,Spacious Room Close to Subway & Central Park,137358866,Kazuya,Manhattan,Harlem,40.81221,-73.94225,Private room,47,30,1,2019-04-27,0.41,103,228 +31176143,Beautiful shared apartment,129124146,KImberly,Queens,Elmhurst,40.73457,-73.87211,Shared room,65,2,1,2019-01-02,0.16,3,365 +31176662,Modern East Village Oasis,9201921,Rachel,Manhattan,East Village,40.72467,-73.98878,Entire home/apt,250,1,3,2019-05-27,1.70,1,0 +31176875,Private room available close to everything!,44886301,Dayane,Manhattan,Upper East Side,40.77016,-73.95293,Private room,120,3,0,,,2,0 +31177757,Bright and Cozy,146275359,Modupe,Queens,Springfield Gardens,40.68941,-73.75116,Private room,42,2,12,2019-07-06,2.40,3,365 +31177794,"Spacious, cozy Private room 10 min from Manhattan",233066892,Millind,Brooklyn,Sunset Park,40.65991,-73.99702,Private room,36,2,3,2019-02-11,0.51,1,0 +31178012,Cozy JFK,146275359,Modupe,Queens,St. Albans,40.68985,-73.75265,Private room,42,4,10,2019-06-24,1.56,3,189 +31178588,Very Clean and Very Large,107578852,Carlos,Manhattan,Washington Heights,40.84258,-73.93789,Private room,100,30,9,2019-06-02,1.42,2,365 +31178681,"HOTEL ROOM LIKE “T” +AFFORDABLE PRICE",59156312,Viviana,Queens,Woodhaven,40.68771,-73.86456,Private room,89,3,6,2019-04-28,0.96,9,358 +31179136,Comfy Private bedroom with balcony.25mnTimeSquare,233080667,Roxanna,Queens,Rego Park,40.72045,-73.85782,Private room,45,1,2,2019-02-06,0.32,1,217 +31181911,Brooklyn apt 10 minutes to Manhattan by subway,129022496,Alan,Brooklyn,Bedford-Stuyvesant,40.68093,-73.94922,Private room,20,10,3,2019-05-08,0.57,2,17 +31183757,Blue Studio in Hamilton Heights,1276028,Marcia,Manhattan,Harlem,40.82865,-73.95069,Private room,70,3,1,2019-03-29,0.29,2,347 +31185117,DUPLEX BIG BIG APARTMENT IN BEAUTIFUL NOHO,100698803,Jenny,Manhattan,East Village,40.73071,-73.98858,Entire home/apt,478,3,25,2019-06-17,3.97,1,148 +31187945,Clean comfortable room,233165925,Wendy,Brooklyn,East Flatbush,40.63383,-73.94175,Private room,150,1,0,,,1,90 +31188274,Luxury apartment in queens,224533200,Jason,Queens,Elmhurst,40.73429,-73.87237,Entire home/apt,400,2,15,2019-06-30,2.65,1,34 +31188378,NY HUDSON YARD DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75495,-73.99825,Private room,209,1,6,2019-05-31,1.01,8,88 +31189073,Quite and comfortable shared room in UES,45317760,Mohammed,Manhattan,Upper East Side,40.77096,-73.95512,Shared room,30,1,23,2019-06-13,3.67,3,13 +31189225,Nice room only 3 mins walk to subway,108207108,Noofai,Queens,Elmhurst,40.74272,-73.89013,Private room,200,1,0,,,1,177 +31189979,Park Slope Brownstone Garden Apartment,40231738,Thatcher,Brooklyn,Park Slope,40.67071,-73.9792,Entire home/apt,205,2,4,2019-06-22,1.30,1,203 +31190191,"Hey, It's Brooklyn, JUST BE YOU.",233189145,Lynda,Brooklyn,Windsor Terrace,40.65224,-73.9762,Private room,85,1,18,2019-06-23,3.16,1,168 +31190326,"Very Clean, Cozy 2 Bedrooms near Central Park",231707114,Zhaoxi,Manhattan,Hell's Kitchen,40.76807,-73.98508,Entire home/apt,365,2,19,2019-06-25,3.37,1,28 +31191366,Prime Williamsburg Duplex Loft Off Lorimer L,4318363,D,Brooklyn,Williamsburg,40.71315,-73.95411,Private room,65,2,17,2019-07-07,3.11,2,26 +31191752,Large and centrally located Brooklyn room w/ Roof!,31764367,Tyler,Brooklyn,Bedford-Stuyvesant,40.69019,-73.9248,Private room,60,2,2,2019-07-06,2,1,151 +31193385,Haven for your Brooklyn Family/Friends Vacation!,4564774,Melanie,Brooklyn,Prospect-Lefferts Gardens,40.66069,-73.94732,Entire home/apt,120,2,15,2019-07-05,2.53,1,20 +31193461,New York Private Room with a View,1276028,Marcia,Manhattan,Harlem,40.82765,-73.95012,Private room,80,3,6,2019-06-27,1.89,2,70 +31193843,Spacious 2 Bedrooms,231352789,Farah,Staten Island,Tompkinsville,40.63489,-74.07967,Private room,69,2,25,2019-07-07,3.95,3,280 +31194144,Brooklyn apt 10 mins to Manhattan by subway,129022496,Alan,Brooklyn,Bedford-Stuyvesant,40.67872,-73.94805,Private room,20,10,8,2019-07-01,1.40,2,38 +31194309,Hip Bushwick Basement Dwelling,91845557,Angela,Brooklyn,Bedford-Stuyvesant,40.68788,-73.91935,Private room,75,1,0,,,1,0 +31194321,Private bedroom with back yard,1699871,Chloe,Brooklyn,Bushwick,40.68475,-73.90918,Entire home/apt,60,2,3,2019-01-26,0.47,3,153 +31194580,1 bedroom in the East Village,105355373,Daniella,Manhattan,East Village,40.72293,-73.98777,Entire home/apt,143,30,0,,,1,57 +31201553,Brooklyn bedroom and open basement,350088,Richard,Brooklyn,Williamsburg,40.72023,-73.9585,Private room,200,2,1,2019-01-27,0.18,1,0 +31201605,Curated East Village Apt,233315617,Dana,Manhattan,East Village,40.72722,-73.97698,Private room,115,2,12,2019-06-18,2.07,1,33 +31201624,Brooklyn Bedroom (Flatbush-Ditmas) II,91578701,Tatiana,Brooklyn,Flatbush,40.64148,-73.95502,Private room,45,1,4,2019-01-21,0.63,2,0 +31201815,Cozy Loft Bedroom With lil Couch Underneath. =],217950098,Soft,Bronx,Melrose,40.81712,-73.9209,Private room,100,1,3,2019-06-03,1.05,1,150 +31201905,"Sam and Mala""s Place",226664611,Samuel,Queens,South Ozone Park,40.67993,-73.81249,Entire home/apt,72,3,29,2019-06-22,4.55,2,293 +31203322,"1 BR. Across from subway. 30m to city, 5m to park.",50211500,Mitchell,Brooklyn,Flatbush,40.65075,-73.96267,Entire home/apt,75,3,4,2019-02-23,0.69,1,115 +31203481,Private room with TV and your own bath in NYC!,233333162,Pamela,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.9514,Private room,40,2,12,2019-06-20,2.11,1,79 +31203696,"1 bedroom / 1 bathroom in Bushwick, Brooklyn",1498228,Annie,Brooklyn,Bushwick,40.68759,-73.90727,Private room,79,3,7,2019-06-25,1.11,1,69 +31204536,Private guest suite on magnificent Brooklyn block,66813379,Reuven,Brooklyn,Crown Heights,40.66644,-73.94665,Entire home/apt,130,2,10,2019-06-22,1.95,2,96 +31205829,Bedroom in Bushwick!,6403404,Lisa,Brooklyn,Bushwick,40.69984,-73.92163,Private room,40,2,14,2019-06-25,2.28,1,54 +31205946,"Large, Bright Sunny Room in Bushwick near L train",52593429,Xavier,Brooklyn,Bushwick,40.70293,-73.9265,Private room,45,2,14,2019-06-16,2.55,2,40 +31206275,Patty’s Home,44217272,Rebeca,Bronx,Morris Heights,40.84613,-73.91668,Entire home/apt,42,2,18,2019-07-02,3.02,1,6 +31206409,Spacious 1-bedroom Apartment in Manhattan,233364799,Eva,Manhattan,Roosevelt Island,40.76314,-73.94864,Entire home/apt,100,1,21,2019-07-01,3.41,1,0 +31206698,Bay Ridge House near park and water,10198498,Heather,Brooklyn,Bay Ridge,40.63936,-74.03164,Entire home/apt,99,5,2,2019-06-23,2,1,4 +31207065,Nice Room in Sunnyside (15 min to Times Square),222886357,Grace,Queens,Sunnyside,40.73756,-73.91802,Private room,33,1,7,2019-06-16,1.11,2,0 +31207719,Sunny and cozy bedroom with a private bathroom,7535013,Hayon,Brooklyn,Bushwick,40.70406,-73.92578,Private room,90,2,12,2019-06-23,2.67,1,3 +31208021,Next to subway station: Bunkbed accommodations,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67847,-73.91244,Shared room,35,1,12,2019-06-24,1.89,17,86 +31208062,cozy bright apartment in high end building,233382915,Tzivya,Brooklyn,Bedford-Stuyvesant,40.69567,-73.95133,Entire home/apt,150,2,3,2019-06-19,0.69,1,34 +31208865,Big studio across the street from Prospect Park,52964447,Mariel,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96129,Entire home/apt,70,2,7,2019-06-30,1.28,1,29 +31209182,LIC Spacious Bedroom in Luxury Building,131782045,Rylan,Queens,Long Island City,40.74946,-73.93854,Private room,60,5,0,,,1,0 +31209400,2 bedroom apartment in Staten Island,141524395,Myrka,Staten Island,Mariners Harbor,40.63531,-74.15789,Entire home/apt,130,2,8,2019-06-30,1.41,1,174 +31210579,Private bedroom with a personal backyard,201752118,Dishank,Brooklyn,Bedford-Stuyvesant,40.69719,-73.94315,Private room,50,7,0,,,1,0 +31211324,"Spacious, cute room in great location",233423542,Asheera,Queens,Astoria,40.76681,-73.9285,Private room,75,3,0,,,2,0 +31211375,Treehouse Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69463,-73.92942,Private room,45,1,33,2019-07-01,5.35,2,25 +31211385,Long Island City,233417287,Felix,Queens,Long Island City,40.74248,-73.95674,Entire home/apt,150,2,3,2019-02-13,0.48,1,0 +31212220,AMAZING ENTIRE 1 BEDROOM APARTMENT (No hot water),233434401,Randy,Bronx,Longwood,40.82306,-73.90821,Entire home/apt,75,1,50,2019-06-23,8.11,1,359 +31212456,Homy Abode,233436938,Janet,Queens,Rosedale,40.65267,-73.7317,Entire home/apt,70,2,14,2019-06-28,4.72,1,105 +31212571,"Two bedrooms apt in Hell's Kitchen, NYC",201112506,Evan,Manhattan,Hell's Kitchen,40.76662,-73.98864,Entire home/apt,200,35,0,,,1,58 +31214157,Cozy private room in Manhattan,81764323,Lucas,Manhattan,Kips Bay,40.74384,-73.97852,Private room,110,2,7,2019-07-01,1.28,1,175 +31216852,Beautiful Studio in New Chelsea Building,15010630,Poma,Manhattan,Chelsea,40.74714,-74.00142,Entire home/apt,216,30,1,2019-06-30,1,1,89 +31217760,Spacious studio on museum miles by central park,20771576,Maryam,Manhattan,East Harlem,40.79158,-73.95168,Entire home/apt,100,4,0,,,2,0 +31218310,"YOUR HM AWAY FROM HM +Medical personnel, Vacation?",233485864,Jeannie,Staten Island,New Dorp Beach,40.56662,-74.10444,Private room,40,1,56,2019-07-06,9.33,2,307 +31218768,"Comfy bedroom, heart of Crown Heights",6631815,Craig,Brooklyn,Crown Heights,40.67105,-73.95451,Private room,60,2,1,2019-02-22,0.22,1,189 +31218952,*PRIME MANHATTAN*one block to 5 trains*ROOFDECK!*,2685943,Sara,Manhattan,Harlem,40.8249,-73.94585,Private room,60,1,30,2019-06-23,5.56,1,67 +31220573,Perfect Location: Times Square with skyline view,106825862,Anton,Manhattan,Hell's Kitchen,40.75953,-73.99019,Private room,308,3,0,,,1,37 +31220603,Cozy Woodhaven,1720151,Sally,Queens,Woodhaven,40.68923,-73.85304,Entire home/apt,75,1,8,2019-07-07,2.14,2,325 +31220645,Air and Light and Time and Space,646563,Brian,Brooklyn,Clinton Hill,40.68182,-73.96013,Entire home/apt,187,1,8,2019-05-13,1.30,2,0 +31220749,"Private bedroom near M train, 22 min to Manhattan!",47931146,Rachel,Queens,Ridgewood,40.70393,-73.90851,Private room,39,6,2,2019-04-03,0.55,1,0 +31221092,Central Harlem Private Room,26216172,Sergio,Manhattan,Harlem,40.81577,-73.94711,Private room,60,2,1,2019-01-07,0.16,1,0 +31221208,"Sunny 1 bedroom in Greenpoint, great location!",105584927,Lilly,Brooklyn,Greenpoint,40.72173,-73.94664,Entire home/apt,75,2,8,2019-04-07,1.30,1,0 +31221314,HAPPY HOME,33189255,Miryam,Manhattan,East Harlem,40.80467,-73.9405,Private room,45,2,0,,,1,341 +31221559,Flatbush Hideaway - Quiet and close to subway!,67345821,Jason,Brooklyn,East Flatbush,40.64445,-73.94943,Entire home/apt,33,1,29,2019-07-01,4.75,1,19 +31221589,Elegance and Comfort in Clinton Hill,646563,Brian,Brooklyn,Clinton Hill,40.68162,-73.96083,Private room,75,1,3,2019-05-28,1.70,2,0 +31221996,Private bedroom in a Historic Brownstone House,232622663,Raphael,Brooklyn,Bedford-Stuyvesant,40.68429,-73.94841,Private room,39,2,9,2019-02-08,1.45,2,0 +31223941,Neat & Tidy - East Village,1717520,Andrew,Manhattan,East Village,40.72405,-73.9845,Entire home/apt,187,3,1,2019-01-17,0.17,2,0 +31224372,Spacious and Homey Room,5666720,Jules Slutsky,Brooklyn,Crown Heights,40.67185,-73.94524,Private room,100,3,0,,,1,220 +31224624,Rose in Spanish Harlem,202587815,Willie,Manhattan,East Harlem,40.79132,-73.95083,Private room,85,2,15,2019-06-04,2.42,2,224 +31224656,Private Room with Backyard,4281300,Alex,Brooklyn,Williamsburg,40.71602,-73.94189,Private room,119,1,0,,,3,0 +31225319,Dominiques unique twin room*NYC-wifi* metro*safe,310670,Vie,Bronx,Eastchester,40.88179,-73.83455,Private room,75,2,1,2019-04-20,0.37,13,365 +31225404,Private Room/Descent Host/close to Subway for Manh,107930075,Ameet,Queens,Ozone Park,40.68436,-73.84213,Private room,50,1,1,2019-05-19,0.58,2,89 +31225706,Sugar Hill Retreat (SPECIAL OPENING PRICE!),233559664,Mordechai,Manhattan,Harlem,40.82294,-73.94453,Entire home/apt,150,3,15,2019-06-18,2.90,1,7 +31226770,Sunny Private Clean Room Downtown - steps2subway,46412380,Thanh,Manhattan,Chinatown,40.71685,-73.99074,Private room,72,1,43,2019-07-01,7.13,1,15 +31226826,Cozy Bedroom 6 mins from JFK. 35mins frm the city,137017288,Khan,Queens,Jamaica,40.68574,-73.79008,Private room,50,1,1,2019-02-07,0.20,2,36 +31227033,Cozy Br. 6 mins from JFK/ 35 mins from the city,137017288,Khan,Queens,Jamaica,40.68551,-73.79128,Private room,59,1,3,2019-03-10,0.57,2,37 +31230933,Easy access to everything in NYC!,178213591,Lilian,Manhattan,Financial District,40.70777,-74.00676,Entire home/apt,125,10,8,2019-06-28,1.30,1,270 +31231904,Serenity - home away from home,203981093,Sunshine,Brooklyn,Bushwick,40.68712,-73.91536,Entire home/apt,100,2,12,2019-06-30,2.55,1,17 +31233576,Cozy studio close to Central Park,76901881,Line,Manhattan,Upper West Side,40.78501,-73.97579,Entire home/apt,100,1,32,2019-05-24,5.16,1,0 +31234062,Perfect for 4!,40822420,Mark,Manhattan,East Harlem,40.78981,-73.942,Entire home/apt,160,5,14,2019-07-01,3.04,1,205 +31234360,"Separate PRIVATE ROOM furnished, 5 min to A train",107930075,Ameet,Queens,Woodhaven,40.69034,-73.84611,Private room,50,3,0,,,2,178 +31234496,Cozy space in Brooklyn,9270510,Andres,Brooklyn,Flatbush,40.64689,-73.95862,Private room,45,1,7,2019-06-30,1.46,1,34 +31235019,Charming West Village Apt. / Bleecker & Jones,127965755,Ethan,Manhattan,West Village,40.73251,-74.00191,Private room,90,6,7,2019-05-10,1.41,1,76 +31235120,Private bedroom in Gorgeous Tonwhouse/Backyard,232622663,Raphael,Brooklyn,Bedford-Stuyvesant,40.68412,-73.9501,Private room,39,2,3,2019-01-15,0.48,2,0 +31235309,Furnished Private Room in Apartment,233660209,Bernard,Brooklyn,Midwood,40.62568,-73.94708,Private room,60,2,0,,,1,0 +31235791,"Williamsburg 1 Bedroom, Spacious and Classy",228224011,Weston & Gabby,Brooklyn,Williamsburg,40.71359,-73.95574,Entire home/apt,251,1,17,2019-06-26,2.91,1,340 +31236046,The Princess,233665357,Sandra,Bronx,Pelham Gardens,40.86723,-73.84285,Entire home/apt,67,7,2,2019-04-01,0.38,1,172 +31237124,The Courtyard,233422217,Douglas,Manhattan,Harlem,40.82575,-73.95177,Private room,92,2,0,,,2,346 +31237303,Worldclass Casa - Sun Rm - 5 min to JFK,115136074,Tina,Queens,Springfield Gardens,40.68996,-73.74882,Private room,147,2,6,2019-07-07,1.01,3,85 +31237727,Luxurious + Chic Upper East Studio,23069554,Lillian,Manhattan,Upper East Side,40.76765,-73.95892,Entire home/apt,115,3,9,2019-07-05,1.60,1,19 +31238044,Ethelia's BnB,230465121,Raynita,Brooklyn,East Flatbush,40.65615,-73.91619,Entire home/apt,130,1,9,2019-04-07,1.65,1,189 +31238549,"Gorgeous Bedstuy Duplex: space, light and style",2235105,Sarah,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93456,Entire home/apt,209,3,0,,,1,0 +31240258,Bright Modern Room in Brooklyn,22507236,Camila,Brooklyn,Bushwick,40.69881,-73.93129,Private room,55,10,0,,,1,0 +31241736,Charming Fort Greene Garden Apartment,1459187,Geoff,Brooklyn,Clinton Hill,40.68961,-73.96839,Entire home/apt,125,14,0,,,1,0 +31242053,"Private, spacious room near airport, train & city",5592622,Christina,Queens,Astoria,40.75731,-73.91489,Private room,65,1,22,2019-06-22,4.93,5,119 +31243221,"Private room close to train, airport & the city",5592622,Christina,Queens,Astoria,40.756,-73.91386,Private room,55,1,23,2019-07-07,4.63,5,100 +31244557,Cozy room near Union Square and East Village,164228532,Vivian,Manhattan,East Village,40.73136,-73.98659,Private room,68,4,0,,,2,2 +31247718,Spacious lovely clean private room in Brooklyn,34556469,Zhansaya,Brooklyn,Gravesend,40.60663,-73.97638,Private room,50,1,0,,,2,0 +31248288,Private room in Bedstuy Brooklyn!,53298603,Yvonne,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94755,Private room,55,30,2,2019-03-15,0.48,1,0 +31249784,Studio Apartment 6 minutes from JFK Airport,232251881,Lakshmee,Queens,Jamaica,40.66793,-73.78452,Private room,67,1,95,2019-07-05,15.32,8,145 +31253484,Nice and quiet Room in Apart in Astoria New York,233834659,Shearyl,Queens,Astoria,40.76976,-73.92627,Private room,50,2,18,2019-07-03,5.14,1,24 +31253968,Small Room In NY,303939,Lissette,Staten Island,Tompkinsville,40.63584,-74.08542,Private room,35,2,12,2019-06-24,2.02,6,299 +31254505,Spacious Studio Sublet in Hell's Kitchen,77657991,Dawn,Manhattan,Hell's Kitchen,40.76138,-73.99825,Entire home/apt,104,28,1,2019-04-28,0.42,1,0 +31255156,"Сдаётся с 13 Февраля-20 Марта , +В отличном раёне",14948568,Alizaveta,Brooklyn,Midwood,40.61842,-73.97111,Entire home/apt,80,35,0,,,1,0 +31255471,STYLISH 2 BEDROOM APT RIGHT ON CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.79641,-73.96191,Entire home/apt,99,30,2,2019-06-28,0.52,16,201 +31255786,Sunny Shared Vintage Loft,806774,Ali & SweetPea,Brooklyn,Williamsburg,40.70823,-73.96685,Shared room,125,1,5,2019-06-23,2.31,2,156 +31258461,Designer 2 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69496,-73.9243,Entire home/apt,155,30,0,,,2,365 +31258508,Private Entrance Brooklyn Townhouse Garden Suite,2965005,Jennifer,Brooklyn,Williamsburg,40.71399,-73.93798,Private room,110,3,20,2019-06-28,3.26,1,98 +31259044,Private Room in Park Slope,232996930,Raymond,Brooklyn,Park Slope,40.66975,-73.98475,Private room,30,2,1,2019-01-11,0.17,1,0 +31259110,Live like a local in the heart of East Village!,233521077,Oda,Manhattan,East Village,40.72657,-73.98135,Private room,89,2,11,2019-05-28,3.03,1,1 +31262486,Amazing location with the Manhattan Skyline View!!,233315839,Kemal,Brooklyn,Williamsburg,40.72085,-73.96116,Private room,105,1,1,2019-01-27,0.18,1,0 +31262842,Cute and spacious room in prime Astoria!!,233423542,Asheera,Queens,Astoria,40.76622,-73.92897,Private room,60,4,0,,,2,0 +31263006,Great Two Bedroom Apartment in Bushwick!,233924381,Rodrigo,Queens,Ridgewood,40.70698,-73.91599,Entire home/apt,175,6,2,2019-03-24,0.40,1,365 +31263586,Sunny room in prime williamsburg location!!!!!!!,107589614,Jim,Brooklyn,Williamsburg,40.7131,-73.96004,Private room,70,3,0,,,2,188 +31264500,Lovely Chinatown Apartment,115506821,Emmett,Manhattan,Chinatown,40.71367,-73.99313,Entire home/apt,175,2,4,2019-02-09,0.71,1,0 +31265925,Large Private Furnished Patio + Cozy Indoors,229494802,Tanner,Manhattan,Chelsea,40.74891,-73.99573,Entire home/apt,299,2,8,2019-06-16,1.59,1,274 +31267046,Quiet Private Bedroom 10 min from 7 Train,11365400,Rojé,Queens,Sunnyside,40.73888,-73.92827,Private room,65,28,22,2019-06-15,4.82,2,4 +31267520,Mott Haven Dorm-Bed F,174785358,Rem,Bronx,Port Morris,40.8094,-73.93173,Shared room,28,1,17,2019-06-18,2.77,7,319 +31267560,JFK Crashpad 6 minutes away,232251881,Lakshmee,Queens,Jamaica,40.66684,-73.78289,Shared room,39,1,56,2019-07-05,9.13,8,34 +31267561,Gorgeous Upper West Side Gem with sofa bed! ,57357614,Carla,Manhattan,Upper West Side,40.77447,-73.98853,Entire home/apt,300,2,5,2019-07-05,5,1,0 +31268431,Prime Location Private Room in Queens,233755743,Jany,Queens,Elmhurst,40.73504,-73.87407,Private room,80,2,8,2019-06-03,1.54,2,125 +31268851,Brooklyn Room Near Subway (45-min from Manhattan),68740200,Eric,Brooklyn,Cypress Hills,40.67646,-73.90579,Private room,34,4,8,2019-06-30,1.33,1,58 +31269651,Brooklyn Bliss A,219104513,Kendra,Brooklyn,East Flatbush,40.65854,-73.93913,Private room,53,2,5,2019-05-07,0.91,2,191 +31269703,Heart of Jamaica Queens,81146418,Monique,Queens,Jamaica,40.68684,-73.79921,Entire home/apt,80,2,13,2019-06-15,2.36,1,87 +31269983,Lux Condo Room Close to Manhattan. WiFi & Balcony!,137358866,Kazuya,Queens,Woodside,40.74181,-73.90279,Private room,61,30,0,,,103,123 +31269990,Cute big private room with a private bathroom.,47023469,Olga,Manhattan,Upper West Side,40.79595,-73.97251,Private room,110,1,2,2019-06-23,0.60,3,6 +31270322,Private bedroom in Queens//Netflix,5691195,Aislyn,Queens,Flushing,40.72744,-73.81005,Private room,75,2,0,,,1,0 +31270742,Meyers Inn,234006406,Daniel,Manhattan,Hell's Kitchen,40.75975,-73.99533,Private room,150,1,7,2019-02-18,1.29,1,88 +31275494,Comfortable affordable room #5,20120009,Jannices,Brooklyn,Bushwick,40.68929,-73.90605,Private room,38,1,5,2019-06-19,0.82,6,7 +31276196,Large bright modern apartment in luxury building,6965682,Sharif,Brooklyn,Bushwick,40.70162,-73.93607,Entire home/apt,180,5,1,2019-03-16,0.26,1,0 +31277426,Airy & Bright Three Bedroom Apt steps from Subway,29582232,Lee And Teri,Brooklyn,Flatbush,40.64061,-73.96487,Entire home/apt,125,4,10,2019-07-02,2.78,5,84 +31280212,"Modern, spacious, & cozy Upper West Side Apartment",61295963,Kaylan,Manhattan,Upper West Side,40.78331,-73.97687,Entire home/apt,300,2,1,2019-02-20,0.22,1,188 +31280733,Williamsburg Private Room in Homey Space by Trains,23308549,John,Brooklyn,Williamsburg,40.71388,-73.95744,Private room,75,2,1,2019-02-12,0.20,1,0 +31283531,Amazing 3 Bedroom Duplex w/ Backyard,231824284,Andy & Kiera,Manhattan,East Harlem,40.79618,-73.94142,Entire home/apt,450,1,9,2019-06-01,2.21,1,312 +31283533,New York City Home w/ Full Amenities,39179346,Rooshabh,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,110,1,8,2019-07-01,4.00,1,238 +31283569,Cozy sunny room in Washington Heights,80054574,Esaú,Manhattan,Washington Heights,40.85547,-73.92912,Private room,33,3,1,2019-01-17,0.17,1,0 +31283904,Central & Homey East Village One Bedroom,230061564,Jason & Becca,Manhattan,East Village,40.72846,-73.98457,Entire home/apt,399,1,10,2019-06-30,1.67,1,332 +31284078,Charming new renovated private room,234111066,Isidora,Manhattan,Lower East Side,40.72296,-73.99259,Private room,90,1,1,2019-01-07,0.16,2,0 +31284182,1 bd. Apartment in central Greenpoint,1694324,Rikki,Brooklyn,Greenpoint,40.72392,-73.948,Entire home/apt,175,4,3,2019-04-22,0.58,1,0 +31285092,Brooklyn Palace,216437098,Trevor,Brooklyn,Bedford-Stuyvesant,40.68341,-73.92154,Entire home/apt,140,2,7,2019-06-08,1.23,2,281 +31285302,Beautiful 1bedroom apt in Williamsburg,17126336,Ines,Brooklyn,Williamsburg,40.71998,-73.96283,Entire home/apt,190,6,4,2019-04-21,0.88,1,59 +31285562,Charming East Village one-bedroom,129034868,Maria,Manhattan,East Village,40.72943,-73.98443,Entire home/apt,111,4,3,2019-05-09,0.80,1,37 +31285648,"1 bedroom in roommates apartment +In Williamsburg",3147732,Ofek,Brooklyn,Williamsburg,40.72011,-73.94487,Private room,45,1,2,2019-02-17,0.40,1,0 +31285720,cozy private room in upper east side,10770318,Yao Yi,Manhattan,Upper East Side,40.77959,-73.94685,Private room,65,1,17,2019-06-13,4.18,1,19 +31286946,Spacious large bedroom room,88484548,Margaret,Queens,Queens Village,40.70685,-73.73583,Private room,70,2,1,2019-01-21,0.18,1,0 +31287343,Sugar Hill Harlem Apartment,234143954,Derek,Manhattan,Harlem,40.82915,-73.94453,Private room,50,1,0,,,1,29 +31287498,Cozy Clean 1BR 10min to LGA/Flushing,234147066,Layla,Queens,College Point,40.77981,-73.84242,Entire home/apt,69,1,19,2019-06-22,3.93,1,212 +31287736,Herbalist’s Home,17262002,Elizabeth,Brooklyn,Greenpoint,40.73536,-73.9581,Private room,70,1,1,2019-01-16,0.17,1,0 +31287886,Spacious Bright Manhattan Home Near The Park,59051417,Kai,Manhattan,East Harlem,40.79465,-73.94935,Private room,399,6,1,2019-02-12,0.20,6,230 +31288513,Cozy Bedroom Steps From The 1 Train,67123961,Carole,Manhattan,Harlem,40.82057,-73.95511,Private room,55,2,0,,,2,0 +31289259,NYC Private Bedroom in Spanish Harlem,213379221,Shay,Manhattan,East Harlem,40.79628,-73.94126,Private room,90,2,2,2019-04-15,0.53,1,168 +31290477,Beautiful Bushwick Studio Intimate Gatherings,231691559,Karen,Brooklyn,Williamsburg,40.71335,-73.93546,Entire home/apt,500,1,5,2019-07-07,0.88,1,365 +31290728,Sunnyside,234178917,Kaan,Queens,Sunnyside,40.746,-73.91393,Entire home/apt,160,2,1,2019-04-30,0.43,1,310 +31291169,Cosy studio in the heart of Manhattan,52728780,Aditi,Manhattan,Midtown,40.75341,-73.97116,Entire home/apt,200,7,0,,,1,0 +31291730,NY HIGH LINE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75619,-73.99797,Private room,209,1,19,2019-06-16,3.13,8,81 +31291979,"Gorgeous, Plant Filled Oasis & Private Terrace",4657612,Elien,Manhattan,Lower East Side,40.71727,-73.98634,Entire home/apt,120,1,4,2019-06-29,0.67,1,36 +31292343,Best East Village Location,12965214,Alana,Manhattan,East Village,40.7297,-73.97959,Private room,99,2,1,2019-02-01,0.19,1,0 +31292656,Brand New and Modern Room in Brooklyn,22552061,Nikol,Brooklyn,Bushwick,40.6942,-73.92598,Private room,80,1,1,2019-02-17,0.21,1,168 +31292757,NY BROADWAY DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75634,-73.99641,Private room,249,1,6,2019-06-16,1.06,8,89 +31293545,Sunny Hamilton Heights Apartment,3951033,Folami,Manhattan,Harlem,40.83032,-73.9421,Entire home/apt,120,5,7,2019-06-08,1.69,1,84 +31294112,Empire Aparment,234211879,Alfredo,Brooklyn,Bedford-Stuyvesant,40.68304,-73.92175,Entire home/apt,140,2,12,2019-06-18,2.02,1,284 +31294395,Cozy studio in Manhattan!,51812548,Marko,Manhattan,Upper East Side,40.78047,-73.95152,Entire home/apt,110,1,3,2019-04-14,0.51,1,5 +31294712,Bushwick Loft Apartment w/ Stunning Manhattan View,1180631,Dale,Brooklyn,Bushwick,40.70426,-73.92111,Entire home/apt,200,4,0,,,1,66 +31295111,Sunny Spacious 2BR Apt in Heart of Bushwick,234214434,Mike,Brooklyn,Bushwick,40.70146,-73.92841,Entire home/apt,145,30,7,2019-06-25,1.46,4,218 +31295524,Cozy Modern Getaway 30 mins from Manhattan (1Bdrm),232283561,Beverline,Bronx,East Morrisania,40.83025,-73.89134,Private room,70,1,1,2019-01-28,0.19,3,81 +31295741,LUXURIOUS EXPERIENCE IN TIME SQUARE NYC,234230740,Wanderlust,Manhattan,Theater District,40.75638,-73.98834,Entire home/apt,260,5,0,,,1,0 +31296410,Private bedroom in cozy apt near Central Park,535343,Chad,Manhattan,Harlem,40.8014,-73.9578,Private room,60,2,12,2019-06-24,2.35,1,1 +31296956,Modern 2 bdr penthouse 300 feet from subway,166634,Lou,Queens,Astoria,40.75518,-73.9143,Entire home/apt,150,5,0,,,5,0 +31297452,Luxury NEW two level suite (Duplex) in Chelsea,99683151,Christina,Manhattan,Chelsea,40.74285,-74.00196,Entire home/apt,190,3,15,2019-06-11,2.54,3,293 +31301399,"Elegant, Mid Century Modern Apt (Private Room)",12618858,Alimah,Brooklyn,Bedford-Stuyvesant,40.68313,-73.92833,Private room,70,1,5,2019-06-21,0.85,2,111 +31303661,New York Safe Haven (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74535,-73.97898,Shared room,39,2,0,,,3,348 +31304303,"Entire Apartment, Nice & Quiet, Perfect for Three",20517979,David,Manhattan,Upper East Side,40.76643,-73.96181,Entire home/apt,115,1,3,2019-06-15,1.55,1,5 +31304312,Charming studio w/ lots of light!,234297980,Tucker,Manhattan,Upper East Side,40.77441,-73.95571,Entire home/apt,200,2,0,,,1,0 +31305014,"Duane Street, Upscale Tribeca Studio",22541573,Ken,Manhattan,Tribeca,40.71509,-74.00566,Entire home/apt,210,30,0,,,87,262 +31305551,Classic and Cozy Brooklyn Brownstone Apartment 1BR,2108671,Laura,Brooklyn,Bedford-Stuyvesant,40.68904,-73.93643,Entire home/apt,70,4,0,,,1,0 +31306674,Spacious and Welcoming In Hip Bushwick,59470806,Michelle,Brooklyn,Bushwick,40.69451,-73.92213,Entire home/apt,135,4,10,2019-07-07,1.80,1,26 +31307385,Stylish One Bedroom in Chelsea,234115186,Melanie,Manhattan,Chelsea,40.74412,-73.99684,Entire home/apt,275,2,0,,,1,0 +31307651,TIME SQ WEST- 2 Bunk Beds for 4 People,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75681,-73.99865,Private room,199,1,1,2019-04-18,0.36,30,362 +31308318,Bedstuy Moroccan Room and Photo Studio,9783911,Lashaia,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91982,Private room,200,2,0,,,1,0 +31308773,Light & Airy Williamsburg Retreat,234338317,Anna,Brooklyn,Williamsburg,40.71105,-73.94563,Private room,80,1,1,2019-06-23,1,1,86 +31309714,COSY BEDROOM in CITY CENTER,234338206,Arkadiy,Manhattan,Hell's Kitchen,40.76499,-73.99267,Private room,140,1,9,2019-06-30,1.70,2,0 +31310624,Shoot in Eccentric Loft with tons of Natural Light,33655,Sruthi,Brooklyn,Columbia St,40.68343,-74.00371,Entire home/apt,1080,1,0,,,2,167 +31311422,"AMAZING, UNIQUE, ONE OF A KIND VILLAGE APARTMENT!",234357462,Marina,Manhattan,West Village,40.73245,-74.00355,Entire home/apt,225,2,11,2019-07-06,2.21,1,280 +31313010,Creative artist apartment in Williamsburg,10196479,Vanessa,Brooklyn,Williamsburg,40.71285,-73.95558,Private room,45,3,1,2019-01-22,0.18,1,0 +31313015,2000 sq ft Unique Cozy Art Home with Private Room,198214941,Angeline,Brooklyn,Bushwick,40.69085,-73.90937,Private room,150,1,0,,,1,269 +31313105,A Spacious & Blissful Stay in Queens!!!,7797973,Sonya,Queens,Springfield Gardens,40.66014,-73.7582,Entire home/apt,175,2,19,2019-06-29,4.45,1,147 +31313153,small room in Manhattan. Close to major nyc sites,37280441,Mary,Manhattan,Morningside Heights,40.81053,-73.96123,Private room,53,1,1,2019-01-09,0.17,2,0 +31313376,"15min from Times Square, 3 minutes from Subway!",11223389,Ioannis,Queens,Astoria,40.75802,-73.92851,Private room,44,2,14,2019-06-30,2.98,1,47 +31313806,"new, private entrance, pvt room and pvt bath",49101398,Nicholas,Brooklyn,Gravesend,40.59741,-73.9752,Private room,59,2,18,2019-07-07,3.16,3,118 +31313870,Modern bedroom with view in a high rise building,22100836,Hana,Manhattan,Gramercy,40.73772,-73.98758,Private room,65,1,11,2019-05-27,1.79,3,0 +31313987,Williamsburg Gem,121926104,Lily,Brooklyn,Williamsburg,40.71606,-73.9593,Private room,65,2,0,,,1,0 +31314273,"Private bedroom in the Upper West Side, Manhattan",6391001,Maria,Manhattan,Upper West Side,40.8024,-73.96496,Private room,59,1,39,2019-06-30,6.50,1,106 +31314329,203 E175th,115832915,David,Bronx,Mount Hope,40.8476,-73.90594,Private room,50,1,0,,,1,0 +31315168,Brooklyn Bed,5800174,Rena,Brooklyn,Prospect Heights,40.67632,-73.96617,Private room,70,2,17,2019-06-30,2.82,1,26 +31315296,Cozy/Private Room in Park Slope,84796432,Lissette,Brooklyn,Sunset Park,40.66005,-73.99316,Private room,59,1,17,2019-06-29,4.40,1,109 +31315385,"Ideal loc, 2 bedroom apt, East Village, Union Sq",227854504,Jully,Manhattan,Gramercy,40.73268,-73.98399,Entire home/apt,199,1,26,2019-06-30,4.48,1,72 +31315479,Chic Eclectic Midtown Apartment,42037177,Larissa,Manhattan,Midtown,40.75494,-73.96437,Private room,300,3,2,2019-02-03,0.33,1,365 +31315936,Large room near express trains & Central Park,10746800,Julian,Manhattan,Upper West Side,40.79471,-73.96918,Private room,61,4,2,2019-02-22,0.37,1,0 +31315980,Comfortable room Lower East Side. AC,17328806,Michael,Manhattan,Lower East Side,40.7179,-73.98192,Private room,90,2,8,2019-06-17,2.55,1,324 +31315991,Large Williamsburg room,195650850,Jasmine,Brooklyn,Williamsburg,40.71218,-73.94616,Private room,60,3,1,2019-03-30,0.30,1,0 +31316654,Luxury One Bedroom Apartment (Midtown Manhattan),230077977,Taisiya,Manhattan,Hell's Kitchen,40.76509,-73.99508,Entire home/apt,179,6,1,2019-01-23,0.18,1,3 +31316889,Private Midtown 2 BR Apt Times Sq Theater District,40245658,Alexa,Manhattan,Hell's Kitchen,40.76325,-73.99012,Entire home/apt,199,2,12,2019-07-02,2.83,3,110 +31317255,Zen! Life! Love! Liberation! Color! Creative!,234417391,Letisha,Manhattan,Upper West Side,40.79249,-73.96627,Private room,150,2,5,2019-06-09,1.90,1,20 +31317645,3 Beds in Private Room 3 20 min to City,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69392,-73.94904,Private room,85,2,11,2019-06-09,2.39,4,314 +31317744,SERETSE'S INN,234423593,Donna,Bronx,Melrose,40.82433,-73.91619,Entire home/apt,80,5,12,2019-07-06,2.26,1,91 +31318780,Enjoy a luxury suite during your Manhattan visit!,234172613,Eugenia,Manhattan,Midtown,40.76425,-73.9802,Private room,300,3,0,,,1,0 +31319056,Sunny and cozy Williamsburg apartment.,3807069,Deva,Brooklyn,Williamsburg,40.71125,-73.95935,Private room,100,2,4,2019-05-05,1.05,1,0 +31319316,Newly decorated room close to Elmhurst Ave (M.R),137358866,Kazuya,Queens,Elmhurst,40.74325,-73.87832,Private room,35,30,1,2019-05-18,0.58,103,252 +31319331,"A Painters Canvas, Only 25 mins to Time Square.",234376122,Earl,Bronx,Highbridge,40.83651,-73.92269,Entire home/apt,74,2,19,2019-06-28,3.85,1,183 +31319380,Spacious one bedroom apartment upper east side,234440538,Fatima,Manhattan,Upper East Side,40.77905,-73.9535,Entire home/apt,150,1,0,,,1,0 +31320905,Manhattan artist home - Gorgeous private room,34915339,Michael,Manhattan,Upper East Side,40.77951,-73.95075,Private room,100,1,32,2019-06-24,5.45,4,184 +31322232,Luxury 4 BR Apartment-25 minutes from the city,2930761,Despina,Queens,Fresh Meadows,40.75085,-73.7854,Entire home/apt,114,2,7,2019-07-05,3.23,1,359 +31322379,PRIVATE BR 5min to TIMES SQ and COLUMBUS CIRCLE,234338206,Arkadiy,Manhattan,Hell's Kitchen,40.76358,-73.99361,Private room,140,1,4,2019-04-06,0.74,2,0 +31324327,CENTRAL PARK NORTH,234483148,Makis,Manhattan,Harlem,40.80334,-73.94681,Private room,77,2,31,2019-07-07,5.14,2,106 +31325866,Amazing Soho Apartments with Private Backyard,163035332,Pirin,Manhattan,SoHo,40.72273,-74.00479,Entire home/apt,1299,2,15,2019-06-10,2.62,3,273 +31328535,FORT GREENE THE NEW HEART BEAT OF BROOKLYN!,12865261,Lisa,Brooklyn,Fort Greene,40.68994,-73.96952,Entire home/apt,170,3,5,2019-07-02,2.54,1,304 +31328877,Private suite with two bedrooms and adjacent bath,1512565,Jean,Manhattan,East Harlem,40.788,-73.953,Private room,175,2,3,2019-06-03,0.81,3,105 +31330713,True 2Br 3beds Apt with fast WIFI in Times Square,234381268,Erica,Manhattan,Hell's Kitchen,40.75483,-73.99405,Entire home/apt,156,1,21,2019-06-19,3.71,1,46 +31331255,Central Bedstuy Apt,234543110,Marclynn,Brooklyn,Bedford-Stuyvesant,40.68433,-73.94392,Entire home/apt,110,3,0,,,1,63 +31331349,Mommy_Ty,225302090,Taisha,Manhattan,Washington Heights,40.83307,-73.93515,Private room,100,80,0,,,1,179 +31332143,Good room in Brooklyn super close to Subways C,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68062,-73.90716,Private room,45,1,13,2019-06-24,2.31,6,170 +31332746,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61203,-74.00181,Private room,40,10,0,,,2,0 +31333074,Miltons place,14855509,Milton,Manhattan,Harlem,40.81438,-73.94782,Entire home/apt,110,4,13,2019-06-30,2.60,2,197 +31333606,Lovely Spacious King Size Bedroom in Manhattan,59051417,Kai,Manhattan,East Harlem,40.79554,-73.94835,Private room,114,3,13,2019-06-02,2.23,6,50 +31334292,Luxury studio in Manhattan close to everything,229332180,Lisa,Manhattan,Hell's Kitchen,40.75483,-73.99689,Entire home/apt,135,4,0,,,1,0 +31336040,Queens Rm in Celebrity's Home,213816392,DuChess,Queens,Queens Village,40.70755,-73.74421,Private room,35,1,17,2019-06-24,2.79,3,354 +31336245,Jfk crash pad 1-2persons in SHARED space,232251881,Lakshmee,Queens,Jamaica,40.66715,-73.78346,Shared room,39,1,65,2019-07-07,10.60,8,320 +31336368,One Bedroom in Central NYC location,204731291,Bridgette,Brooklyn,East Flatbush,40.64844,-73.95032,Private room,65,2,4,2019-06-10,1.50,1,178 +31336375,Brooklyn Room - 20 min from Manhattan,234596452,Laura,Brooklyn,Bushwick,40.70195,-73.92257,Private room,85,1,0,,,1,0 +31336763,Lovely Bright Queen Size Private Bedroom in NYC,59051417,Kai,Manhattan,East Harlem,40.7943,-73.95003,Private room,116,3,17,2019-06-02,2.90,6,42 +31337900,Cozy Clean Private Bedroom Near Central Park,59051417,Kai,Manhattan,East Harlem,40.79575,-73.9496,Private room,101,3,10,2019-06-01,1.89,6,62 +31339496,"Walk to the ""US OPEN""!",131808888,Renee,Queens,Flushing,40.74633,-73.82975,Entire home/apt,200,1,12,2019-06-15,4.50,1,139 +31339548,Bedroom in shared luxury apartment in East Village,11519866,Gordon,Manhattan,East Village,40.72262,-73.98515,Private room,85,1,7,2019-04-08,1.48,1,0 +31339600,Massive Room in Triplex Loft,123672154,Abdes,Brooklyn,Greenpoint,40.73386,-73.95294,Private room,70,1,3,2019-02-17,0.50,2,0 +31340282,SPACIOUS Modern APT in Greenpoint/Williamsburg,155109689,Dolores,Brooklyn,Greenpoint,40.73369,-73.95197,Entire home/apt,172,2,9,2019-06-15,1.61,2,281 +31340283,2br - The Heart of NYC: Manhattans Lower East Side,4382127,Matt,Manhattan,Lower East Side,40.7198,-73.98566,Entire home/apt,9999,30,0,,,1,365 +31340315,1 BEDROOM ASTORIA APARTMENT / 15 min to Manhattan,34685168,Kijin,Queens,Astoria,40.76724,-73.9232,Entire home/apt,120,3,0,,,1,0 +31340539,Travel alone? Stay like at your friend's house!,207173529,Tamara,Manhattan,Inwood,40.86772,-73.92057,Private room,65,1,2,2019-04-14,0.64,1,0 +31340666,Exclusive 1 bedroom apartment by time square nyc,22251283,Nir,Manhattan,Hell's Kitchen,40.7558,-73.99376,Entire home/apt,115,30,1,2019-02-15,0.21,4,50 +31340743,Suite with stunning view in convenient location,5838825,Isa,Manhattan,Hell's Kitchen,40.75599,-73.99185,Private room,200,3,0,,,1,0 +31340955,Private Entrance + Sunny Spacious Room in 2BR Apt,234214434,Mike,Brooklyn,Bushwick,40.70006,-73.92902,Private room,60,30,0,,,4,191 +31341166,"Stay like a NYker - Cheap, clean and close to All",137501374,LKL Rental,Queens,Elmhurst,40.74057,-73.86975,Private room,25,1,17,2019-06-20,2.79,3,231 +31341298,Private Entrance + Sunny Spacious Room in 2BR Apt,234214434,Mike,Brooklyn,Bushwick,40.70061,-73.92869,Private room,68,30,0,,,4,191 +31341476,"Tight budget tours NYC? Cheap, Clean and close all",137501374,LKL Rental,Queens,Elmhurst,40.74038,-73.86964,Shared room,19,1,15,2019-06-22,2.78,3,236 +31350702,Private House in Brooklyn,14671652,Marlon,Brooklyn,Bedford-Stuyvesant,40.69126,-73.95285,Entire home/apt,250,14,0,,,1,364 +31351908,The Industrial LOFT #1 NoHo. - Great Location!,108029974,Agustina,Manhattan,NoHo,40.72833,-73.99331,Entire home/apt,495,6,1,2019-04-08,0.33,4,52 +31352270,The Industrial LOFT #2 NoHo. - Great Location!,108029974,Agustina,Manhattan,NoHo,40.72811,-73.99381,Entire home/apt,525,6,5,2019-06-02,1.76,4,63 +31353429,"Huge Fully Equipped Apt, DM Building, Great Area",21412569,Mike,Manhattan,Murray Hill,40.74533,-73.97685,Entire home/apt,395,5,1,2019-04-18,0.37,1,363 +31353678,"Colorful, Cozy, Bright Brooklyn Studio PetFriendly",110902412,Anna,Brooklyn,Prospect-Lefferts Gardens,40.65841,-73.96121,Entire home/apt,82,3,14,2019-07-02,3.21,1,75 +31354518,Private Room in Brooklyn Loft Oasis,1973165,Rob,Brooklyn,Greenpoint,40.73344,-73.95851,Private room,100,2,3,2019-06-26,0.53,1,100 +31354965,Sun-Drenched Artistic Uptown Studio,63411066,Caleb,Manhattan,Washington Heights,40.8334,-73.94327,Entire home/apt,70,2,11,2019-02-22,1.84,1,0 +31355075,Brooklyn sweet dreams,234776583,Misael,Brooklyn,Bushwick,40.70138,-73.91556,Entire home/apt,100,2,8,2019-06-18,1.43,1,342 +31355285,Cozy room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.73176,-73.8702,Private room,35,4,10,2019-06-29,1.99,4,11 +31355295,Private Sunny Room (D) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65144,-73.94659,Private room,80,2,0,,,2,27 +31356462,LAST MINUTE STAY IN WARM COZY ROOM,4233057,Hajah,Manhattan,East Harlem,40.79737,-73.93499,Private room,100,2,0,,,3,365 +31356710,Weekday Williamsburg Dreamhouse,2678122,Tasha,Brooklyn,Williamsburg,40.71708,-73.94852,Entire home/apt,120,3,0,,,3,0 +31357191,"Prime 2BR in GreenPoint, Quiet, Large Living Space",15817323,Kelly,Brooklyn,Greenpoint,40.7282,-73.9506,Entire home/apt,175,2,8,2019-03-19,1.45,1,0 +31357323,Great find 2 bedrooms 20minutes from Times Square,25134822,Irena,Queens,Astoria,40.7702,-73.9261,Entire home/apt,130,1,9,2019-06-24,4.22,2,162 +31358401,Quiet cozy room in Prospect Heights,73640551,Courtney,Brooklyn,Prospect Heights,40.6771,-73.97174,Private room,55,2,21,2019-05-10,3.60,2,0 +31358547,"LUXE 1BR+Bath (private) in New, Spacious 2BR",16713332,Tabea,Brooklyn,Bushwick,40.69853,-73.93098,Private room,65,10,0,,,2,0 +31359053,Affordable luxurious 2 bedroom apartment.,234823585,Anthony,Brooklyn,Kensington,40.64481,-73.97318,Entire home/apt,100,2,15,2019-07-07,2.46,1,66 +31359630,Entire cozy Manhattan studio close to everything,234831342,Emma,Manhattan,Hell's Kitchen,40.7566,-73.99725,Entire home/apt,139,10,0,,,1,0 +31360128,Cute & Cozy Studio in the heart of East Village,234836860,Natti,Manhattan,East Village,40.72482,-73.98242,Entire home/apt,105,4,6,2019-07-01,1.14,1,83 +31360817,Cozy Space in Bay Ridge,767346,Celeste,Brooklyn,Fort Hamilton,40.61693,-74.03136,Private room,90,2,6,2019-06-03,2.77,1,0 +31361356,Cozy Private Room in the heart of Bushwick,22651136,Isaac & Irene,Brooklyn,Bushwick,40.69327,-73.92456,Private room,60,1,18,2019-06-27,3.46,1,29 +31362232,Your dream 2BR/2BA home in Park Slope!,118971,Evelyn,Brooklyn,South Slope,40.66743,-73.98963,Entire home/apt,300,2,16,2019-07-01,3.75,3,92 +31362276,brooklyn charmer,18683197,Uzi,Brooklyn,Sheepshead Bay,40.58449,-73.94132,Entire home/apt,179,7,0,,,1,342 +31364352,"NYC, East 108th st, private bed room, female only",24920992,Takuya,Manhattan,East Harlem,40.79241,-73.94132,Private room,70,2,3,2019-06-18,0.54,1,0 +31365313,Large 1 bedroom in SOHO,101890546,Sam,Manhattan,Little Italy,40.71916,-73.99754,Entire home/apt,229,1,3,2019-02-16,0.53,1,362 +31365591,Park&walk2Boat! See LadyLiberty&DTNY all for free!,233541916,James,Staten Island,St. George,40.64118,-74.08401,Private room,100,1,0,,,1,0 +31369363,"Private room Greenpoint, Brooklyn NY",19019393,Jana,Brooklyn,Greenpoint,40.72615,-73.94592,Private room,49,3,0,,,1,0 +31369708,ROOMS ONE and TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68537,-73.87442,Private room,250,3,0,,,3,364 +31370245,Beautiful Room in Brooklyn NY,234930202,Ronnie,Brooklyn,Canarsie,40.63314,-73.89739,Private room,60,1,3,2019-04-08,0.49,1,86 +31370305,ROOM 1,226036723,Ravita,Brooklyn,Cypress Hills,40.68522,-73.873,Private room,125,3,2,2019-03-17,0.42,3,180 +31370452,ROOM TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68487,-73.87254,Private room,125,3,0,,,3,364 +31377088,Clean Quiet Prvt Rm Prvt Bathroom in Midtown,234986384,Eddie,Manhattan,Hell's Kitchen,40.76318,-73.9942,Private room,109,5,17,2019-07-01,3.89,1,35 +31377252,Huge Apartment in TriBeCa,7029525,Sagar,Manhattan,Tribeca,40.71509,-74.00779,Entire home/apt,400,3,1,2019-02-17,0.21,1,0 +31377477,Cozy Unique Artist Loft in East Williamsburg,16622969,Michael,Brooklyn,Williamsburg,40.70259,-73.93535,Private room,45,2,8,2019-06-26,1.35,1,0 +31378549,Sonder | 180 Water | Chic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70768,-74.00603,Entire home/apt,197,29,2,2019-06-02,0.51,327,334 +31379248,"Cozy, Sunny Franklin Ave 1-Bedroom with a Piano",10032762,Kristina,Brooklyn,Crown Heights,40.67612,-73.95856,Entire home/apt,85,2,2,2019-06-23,0.85,1,6 +31379452,Sunlit Williamsburg Studio Right Next to the L!,24269944,Talia,Brooklyn,Williamsburg,40.71355,-73.95895,Entire home/apt,120,14,4,2019-04-08,0.66,1,0 +31379967,Sunny Long Island City 2bed close to manhattan,235008186,Luz,Queens,Astoria,40.7548,-73.91364,Entire home/apt,170,4,10,2019-06-15,2.07,1,97 +31380037,Duplex in Brooklyn,131569457,Nikki,Brooklyn,Bushwick,40.68755,-73.90887,Shared room,40,4,0,,,1,0 +31381103,Private Modern bedroom 12 minutes to Midtown,104913801,Luis,Queens,Long Island City,40.75733,-73.94176,Private room,55,2,12,2019-06-30,2.05,2,81 +31381171,JFK Studio Hideaway,47409152,Sherra,Queens,St. Albans,40.68623,-73.76209,Entire home/apt,125,1,9,2019-06-17,1.65,1,344 +31382465,Modern Studio near Bushwick & Train,59808986,Elen,Queens,Ridgewood,40.69766,-73.90354,Entire home/apt,100,1,42,2019-07-06,7.12,3,121 +31382878,Private Studio apartment in the west village,226960918,Pamela,Manhattan,Chelsea,40.73934,-74.00146,Entire home/apt,180,3,2,2019-06-21,2,1,173 +31383493,Cozy bedroom in spacious Brooklyn apartment.,166432964,Yasmin,Brooklyn,Bedford-Stuyvesant,40.69216,-73.95714,Private room,40,14,0,,,1,0 +31383763,Newly Renovated 3BR in Bushwick,36012265,Ada,Brooklyn,Williamsburg,40.70471,-73.92957,Entire home/apt,156,30,0,,,7,126 +31386277,NEW Charming Private Floor - 15min to Manhattan!,136807581,April & Tom,Queens,Ditmars Steinway,40.77749,-73.91652,Entire home/apt,99,2,20,2019-07-01,3.75,1,0 +31387609,"Big basement apartment, very close to subway!",235073206,Julianna,Manhattan,Harlem,40.8197,-73.94576,Entire home/apt,145,1,28,2019-06-18,5.28,4,169 +31388229,Book TODAY! Large 3br with lots of space in the BX,193626078,Andy,Bronx,Belmont,40.85387,-73.89384,Entire home/apt,247,2,15,2019-06-30,3.17,3,322 +31388248,"Bohemian Open Loft +Williamsburg/Bushwick close 2 L",234961480,Janette,Brooklyn,Williamsburg,40.70474,-73.94423,Private room,120,1,8,2019-07-01,2.79,1,80 +31388942,"Huge private room with a view, close to everything",154335207,Christopher,Manhattan,East Harlem,40.80139,-73.94042,Private room,70,5,1,2019-06-12,1,1,65 +31389120,"New, Clean, and Spacious 3 Bedroom Apartment",234869359,Alan,Brooklyn,Bushwick,40.68815,-73.91289,Entire home/apt,80,2,21,2019-06-24,3.71,1,154 +31389369,SoHo Charm - Entire 2-br apartment,22322931,Maria Bonde,Manhattan,SoHo,40.72672,-74.00066,Entire home/apt,200,2,1,2019-01-20,0.18,1,0 +31389481,NEW YORK CITY!!! MANHATTAN!!!,151300770,Joe,Manhattan,Upper East Side,40.77811,-73.95186,Private room,150,5,6,2019-06-12,1.73,4,280 +31389656,NYC LUXURY3 BEDROOMS IN MIDTOWN EAST& GYM& BALCONY,170372974,Inbal,Manhattan,Murray Hill,40.74579,-73.9726,Entire home/apt,599,4,11,2019-06-30,2.23,1,140 +31389728,Full Floor One Bedroom Apt in Manhattan,235102134,Titus,Manhattan,Harlem,40.80652,-73.94899,Entire home/apt,188,3,4,2019-05-31,1.18,1,253 +31389838,The Perfect Stay in West Village,15074983,Kav,Manhattan,West Village,40.73169,-74.00214,Private room,110,7,13,2019-06-21,2.23,1,13 +31389928,Brooklyn Beauty,9453700,Jillian,Brooklyn,Boerum Hill,40.68612,-73.98013,Private room,99,1,15,2019-06-23,2.63,1,149 +31390350,Room in a beautiful chelsea apt. w/ doorman,7285648,Josh,Manhattan,Chelsea,40.74618,-74.00569,Private room,100,1,0,,,3,0 +31391466,Spacious 3 bedroom apt in Williamsburg,235115405,New York Italians,Brooklyn,Williamsburg,40.70967,-73.95249,Private room,70,2,8,2019-06-29,1.57,2,8 +31391642,Spacious East Harlem Room,163510250,Munyaradzi,Manhattan,East Harlem,40.78754,-73.94186,Private room,75,1,6,2019-05-30,2.95,1,0 +31393901,New apt so I have the basic things for the moment.,234905483,Yerriz,Bronx,Mount Hope,40.8461,-73.90883,Private room,30,2,14,2019-06-01,3.28,1,176 +31394757,AWESOME CONVERTED 1BR in FiDi,54689007,Ana,Manhattan,Financial District,40.70889,-74.00701,Entire home/apt,180,10,0,,,3,54 +31397084,LES Luxury Studio! with Private Outdoor Terrace!!,22412963,Anne,Manhattan,Lower East Side,40.71805,-73.98675,Entire home/apt,225,25,22,2019-06-30,3.63,3,268 +31399985,Modern bedroom with queen size bed,234111066,Isidora,Manhattan,Lower East Side,40.72166,-73.98842,Private room,125,5,0,,,2,0 +31400005,"Cute, simple & cheap studio. Great location UES!",87348589,Hana,Manhattan,Upper East Side,40.77769,-73.94836,Entire home/apt,130,3,3,2019-03-04,0.64,1,0 +31400403,Hamilton Heights,16683574,Delphine And Michael,Manhattan,Harlem,40.82823,-73.94971,Entire home/apt,145,30,0,,,2,357 +31403932,"Go to NYC? Stay with us. Cozy, Clean &Close all",137501374,LKL Rental,Queens,Elmhurst,40.73998,-73.86802,Private room,28,1,12,2019-06-24,3.03,3,236 +31404481,Convenient nook,1495021,Lida,Queens,Sunnyside,40.73618,-73.92016,Private room,49,31,0,,,2,281 +31405515,"ONLY WOMEN, CAMAS PARA MUJERES EN QUEENS",215778245,Jessy & Christian,Queens,Corona,40.74071,-73.86687,Private room,40,2,5,2019-04-15,1.15,6,306 +31405999,"Serene FiDi 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70491,-74.00978,Entire home/apt,271,30,0,,,232,331 +31407481,1BR beautiful apartment in the AMAZING Bushwick :),158596887,Gal,Brooklyn,Bushwick,40.70192,-73.91556,Entire home/apt,100,5,0,,,2,0 +31408487,Sunny Designer Apartment in East Village,23862648,Cecily,Manhattan,East Village,40.73065,-73.98523,Entire home/apt,88,2,18,2019-06-23,3.88,1,5 +31409073,The Hudson,233422217,Douglas,Manhattan,Harlem,40.82645,-73.95235,Private room,86,3,1,2019-04-29,0.42,2,310 +31409154,Great Location Cozy Apt. w/ Private Bath,198195140,Lucy,Queens,Long Island City,40.74755,-73.93878,Private room,55,1,11,2019-06-02,2.92,2,7 +31409410,Wyndham Midtown New-York,207618240,Johanne,Manhattan,Midtown,40.75225,-73.97132,Private room,300,3,0,,,1,338 +31409612,Tremendous Views - Greenpoint,56061729,Dennis,Brooklyn,Greenpoint,40.73421,-73.95318,Entire home/apt,125,2,8,2019-06-10,1.37,1,188 +31409739,Stunning triplex in East Williamsburg,20233597,Peter,Brooklyn,Williamsburg,40.70952,-73.9435,Entire home/apt,200,6,2,2019-06-24,2,1,49 +31410637,Charming Harlem Apartment,70184008,Evan,Manhattan,Harlem,40.82964,-73.94271,Entire home/apt,80,2,2,2019-02-02,0.37,1,189 +31411210,Affordable & Sunny Crown Heights Room,7730748,Wendy,Brooklyn,Crown Heights,40.67431,-73.95847,Private room,45,5,0,,,1,0 +31411380,Bright Sunny Manhattan Room in Shared apartment,34399492,Charles,Manhattan,Harlem,40.8166,-73.9407,Private room,80,3,13,2019-06-23,3.45,1,6 +31411615,Serenity Studio in East Harlem,4208096,Liv,Manhattan,East Harlem,40.7857,-73.94578,Entire home/apt,99,1,20,2019-07-02,4.23,1,81 +31412174,Beautifully decorated cozy Harlem home.,552627,Brandy,Manhattan,Harlem,40.82503,-73.93767,Private room,70,2,0,,,2,0 +31412664,Quiet Apt on the Gramercy/East Village Border,57148387,Max,Manhattan,Gramercy,40.73423,-73.98211,Private room,100,1,4,2019-07-01,0.75,1,254 +31413351,"Private entrance, own bathroom, comfy & sunshine",33614329,Walter,Brooklyn,Bushwick,40.69684,-73.9307,Entire home/apt,85,1,36,2019-07-03,6.10,4,210 +31413900,"Maximum Comfort, Minimum Expenditure 1min to train",235302401,Kin,Brooklyn,Sunset Park,40.64373,-74.01351,Private room,49,1,9,2019-06-21,1.59,3,177 +31414400,New and Upscale Space. Just like home,235305665,Dave,Manhattan,East Harlem,40.7902,-73.9463,Private room,69,1,4,2019-06-06,0.78,2,60 +31414856,Loft Room in Bushwick,235311151,Armin,Brooklyn,Williamsburg,40.7025,-73.93561,Private room,40,2,1,2019-03-25,0.28,1,0 +31415232,Luxury 2 Bedroom 2 Bath Brownstone in NYC,188741104,Susan,Manhattan,Harlem,40.81027,-73.94306,Entire home/apt,175,31,3,2019-04-05,0.63,4,274 +31416434,"Upscale Adorbable Room, Amazing",235305665,Dave,Manhattan,East Harlem,40.78953,-73.9432,Private room,65,1,4,2019-06-17,0.70,2,69 +31416916,"2 Bedrooms Nearby Free ""Manhattan Ferry""",231352789,Farah,Staten Island,Tompkinsville,40.63515,-74.07929,Private room,85,2,29,2019-07-07,5.00,3,296 +31418014,Interior Designer’s Lovely 1BR Flat (+Balcony!),5637331,Amit & Sofie,Manhattan,Upper East Side,40.7627,-73.96422,Entire home/apt,140,6,1,2019-04-14,0.35,2,0 +31419390,Private Room in Williamsburg . 2min walk to L,235344330,Yoko,Brooklyn,Williamsburg,40.71598,-73.9451,Private room,75,2,23,2019-07-04,4.86,1,113 +31419862,2 BED APT/TIME SQUARE/HELLS KITCHEN/CENTRAL PARK,37986167,Scott,Manhattan,Hell's Kitchen,40.76458,-73.98753,Entire home/apt,350,1,25,2019-06-03,4.26,2,0 +31420503,West Village Charmer,4305407,Christopher,Manhattan,West Village,40.73318,-74.00473,Entire home/apt,150,2,9,2019-03-30,1.57,1,0 +31427366,Clean Modern Upper Manhattan NYC Room,83415090,Liberty,Manhattan,Washington Heights,40.85085,-73.94134,Private room,50,1,35,2019-06-30,5.93,1,36 +31428772,Private Studio 25 Minutes from Midtown,42761,Jessica,Bronx,Claremont Village,40.84487,-73.90811,Private room,80,2,1,2019-01-20,0.18,1,156 +31428785,Artist's huge family home in BK with Roof Deck!,230909887,Jennie And Dan,Brooklyn,Crown Heights,40.67674,-73.93083,Entire home/apt,133,2,7,2019-07-01,1.24,1,41 +31428865,Lil boho gem in Harlem city center,9637585,Stephanie,Manhattan,Harlem,40.81049,-73.95311,Private room,80,2,0,,,1,36 +31430577,Upper East Side One Bedroom,79520100,Bee,Manhattan,East Harlem,40.7868,-73.95228,Private room,50,2,29,2019-06-08,5.00,1,0 +31432189,LYRIC - Hotel Extended Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70744,-74.00819,Entire home/apt,219,1,20,2019-07-02,3.85,8,322 +31433921,Private Room in HUGE Harlem Apartment!,58956219,Brennan,Manhattan,Harlem,40.81859,-73.93997,Private room,60,2,8,2019-07-07,1.41,1,80 +31435734,"Sharp UES 1BR w/Indoor pool, Doorman + City views by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77463,-73.94972,Entire home/apt,307,30,0,,,232,249 +31435773,Quaint UES Studio w/ Balcony + Gym near subway by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77572,-73.95672,Entire home/apt,233,30,0,,,232,249 +31435825,"Lovely 2BR, 2BATH in heart of East Village!!!",235468713,Steven,Manhattan,East Village,40.72466,-73.98373,Entire home/apt,235,2,28,2019-06-20,4.75,1,8 +31435994,Cozy Bedroom Uptown Manhattan,47515751,Jennyfer,Manhattan,Inwood,40.86772,-73.92563,Private room,40,4,1,2019-03-05,0.24,2,81 +31436066,Cozy Apt in Kensington,113393845,Cindy,Brooklyn,Kensington,40.64557,-73.98097,Entire home/apt,100,1,2,2019-05-05,0.43,1,268 +31436965,Zen One Bedroom in Greenpoint - easy access to NYC,1698607,Benjamin,Brooklyn,Greenpoint,40.73336,-73.95394,Entire home/apt,92,4,3,2019-05-11,0.66,1,95 +31438319,Apartamento con cuarto privado en Manhattan,85108863,Manuel,Manhattan,Washington Heights,40.85065,-73.93188,Private room,45,2,12,2019-06-05,2.32,1,78 +31438520,"Kozzy in Clinton Hill Brooklyn, NY,",1290193,Henry,Brooklyn,Bedford-Stuyvesant,40.68617,-73.95927,Private room,50,4,3,2019-05-28,1.76,1,365 +31438699,WELL LIT 2 BR WILLIAMSBURG APARTMENT,61886746,Charles,Brooklyn,Williamsburg,40.71072,-73.96289,Entire home/apt,200,2,0,,,1,0 +31439169,One bedroom right next to Central Park on UES!,95635119,Ella,Manhattan,Upper East Side,40.7848,-73.95687,Private room,42,3,7,2019-06-29,1.39,1,131 +31439428,"Manhattan: large 3bed/2bath, new reno, central LES",20445702,Jason,Manhattan,Lower East Side,40.70983,-73.98562,Shared room,249,60,0,,,1,0 +31441434,Huge family 2 bedroom in Ideal Upper Manhattan,136081476,Rebecca,Manhattan,Harlem,40.8087,-73.94157,Entire home/apt,150,2,17,2019-06-16,3.31,1,19 +31443055,Cosy room in the heart of Bushwick,704963,Chloé,Brooklyn,Bushwick,40.70165,-73.92262,Private room,35,4,1,2019-04-30,0.43,1,7 +31443230,Artistic Loft In East Williamsburg,8620509,Verdis,Brooklyn,Williamsburg,40.70508,-73.93763,Entire home/apt,165,5,0,,,1,20 +31444015,"TIME SQUARE CHARMING ONE BED IN HELL'S KITCHEN,NYC",8523790,Johlex,Manhattan,Hell's Kitchen,40.76682,-73.98878,Entire home/apt,170,3,0,,,1,188 +31444458,PRIVATE - East Village Three Bedroom,3459240,D,Manhattan,East Village,40.72377,-73.97963,Private room,289,2,17,2019-06-20,3.42,1,72 +31444634,Wburg Duplex w/ Private Garden. Great for groups!,48392689,Ilan,Brooklyn,Williamsburg,40.71324,-73.95099,Entire home/apt,400,2,0,,,1,329 +31445273,Convenient - 2 Stops from the city (good price!),235548617,Khalid,Queens,Long Island City,40.7576,-73.93222,Private room,55,1,25,2019-07-07,5.03,2,34 +31445758,TRENDi 3 Bed Duplex in Heart of Historic Harlem,133234099,Gemma,Manhattan,Harlem,40.80761,-73.94366,Entire home/apt,250,3,11,2019-06-16,1.94,2,110 +31445795,Cozy clean private room in Woodside. 20mins to NYC,86322604,Zoe,Queens,Woodside,40.75396,-73.90111,Private room,56,2,9,2019-06-28,2.84,1,4 +31446827,Bright and airy 2 bedroom near Prospect Park,4688531,Julia,Brooklyn,East Flatbush,40.65344,-73.94547,Entire home/apt,120,1,13,2019-05-01,3.00,1,0 +31447095,Large 3 BR In LIC/Astoria- 2 Blocks From Subway,60835915,Ali,Queens,Long Island City,40.76061,-73.92812,Entire home/apt,149,3,14,2019-07-03,3.00,1,30 +31447607,SUN FILLED APARTMENT WITH STUNNING RIVER VIEWS,13773574,Cecile,Manhattan,Hell's Kitchen,40.76666,-73.98358,Entire home/apt,225,30,0,,,12,343 +31447999,Stunning Modern 1br with Private Balcony & Views,13773574,Cecile,Manhattan,Midtown,40.76616,-73.98228,Entire home/apt,225,30,0,,,12,365 +31448783,Sleek 1 Bedroom Brownstone Apartment in Brooklyn,5945241,Tomi,Brooklyn,Bedford-Stuyvesant,40.6789,-73.91014,Entire home/apt,80,2,8,2019-07-07,2.12,1,0 +31450131,Apt2- large bedroom.,72602373,Mo,Brooklyn,Brownsville,40.66262,-73.91575,Private room,59,1,2,2019-05-31,0.42,2,53 +31453103,Newly Renovated Cozy Private 1 Bedroom Apartment,194014767,Mohammed,Brooklyn,East Flatbush,40.64656,-73.95016,Entire home/apt,65,2,20,2019-06-29,3.57,2,293 +31457187,Brooklyn Bliss V,219104513,Kendra,Brooklyn,East Flatbush,40.65808,-73.93903,Private room,39,2,3,2019-05-08,0.73,2,67 +31458142,Huge studio in the heart of Kips Bay,235655558,Steph,Manhattan,Kips Bay,40.74343,-73.98147,Entire home/apt,140,1,3,2019-04-01,0.63,1,0 +31458781,"Bright and Beautiful, Private Garden",129643632,Benjamin,Brooklyn,Sunset Park,40.66426,-73.99375,Entire home/apt,165,30,0,,,1,337 +31459245,SPACIOUSprivate room in LARGEapt 1block from train,71012165,Imani,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93592,Private room,100,4,0,,,1,0 +31459956,#2 Minutes to JFK!!!,37891510,Carlos & Lina,Queens,Woodhaven,40.68709,-73.85982,Private room,55,4,10,2019-06-26,1.81,2,360 +31462754,Private Room in Spacious Apt by Prospect Park,14201257,Jamie,Brooklyn,Flatbush,40.65218,-73.96551,Private room,40,7,4,2019-07-06,0.92,1,1 +31463824,"Studio at Battery Park, Downtown Manhattan",21229164,Alex,Manhattan,Battery Park City,40.70417,-74.01709,Entire home/apt,115,1,12,2019-06-30,2.02,1,0 +31465478,"Hyper Chic, Bi-Level Apartment + Garden",117143694,Tenlie,Manhattan,Harlem,40.80454,-73.94635,Entire home/apt,400,5,15,2019-07-01,2.88,1,148 +31465521,Spacious 3 bed suite next to transit NYC,233732841,Ori,Manhattan,Washington Heights,40.83397,-73.94541,Private room,35,1,25,2019-07-04,4.36,2,80 +31465817,HIP & FUN PRIVATE / COZY BEDROOM 1 BLK FROM METRO,132908616,Federico,Brooklyn,Bushwick,40.70218,-73.92046,Private room,40,3,13,2019-07-03,2.95,2,51 +31466176,White Space Studio,14855509,Milton,Manhattan,Harlem,40.81272,-73.9471,Entire home/apt,110,4,20,2019-07-01,4.69,2,227 +31466547,Private and cozy room in Bushwick,62857588,Natalie,Brooklyn,Cypress Hills,40.68001,-73.90547,Private room,35,7,1,2019-02-24,0.22,1,0 +31466893,Corner 1br w/ Private Balcony w/ Central Park View,13773574,Cecile,Manhattan,Midtown,40.76473,-73.98131,Entire home/apt,225,30,0,,,12,343 +31467371,J-m-l train 20 mint to city 20 to jfk clean 4/20,235734225,Khaled,Brooklyn,Bushwick,40.69812,-73.92134,Private room,130,2,6,2019-06-10,1.18,1,356 +31468463,MINS From Central Park / 5th Ave Sleep 9 Manhattan,120242215,Smofie,Manhattan,Midtown,40.76263,-73.97664,Entire home/apt,299,3,3,2019-05-23,0.56,1,38 +31469483,2 bedroom Upper east side apartment,191786703,Fabiola,Manhattan,Upper East Side,40.76137,-73.95992,Entire home/apt,400,1,0,,,1,179 +31470004,Private bedroom/Bathroom in a 2 bedroom apartment,71241932,Max,Manhattan,East Village,40.72544,-73.97818,Private room,2500,60,0,,,1,90 +31470025,Single room in a quaint apartment in East Harlem,207010341,Maria,Manhattan,East Harlem,40.7966,-73.93345,Private room,60,4,0,,,2,51 +31470251,Stunning Centra Park View - Huge Sunny Corner 1br,13773574,Cecile,Manhattan,Midtown,40.76539,-73.98336,Entire home/apt,225,30,0,,,12,343 +31471169,Stay at Lex,10416602,Ann,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93906,Entire home/apt,130,3,6,2019-05-27,2.09,1,292 +31472498,NEW PRIVATE APARTMENT - 2 BLOCKS from LGA,229149810,Tussan,Queens,East Elmhurst,40.77008,-73.87442,Entire home/apt,128,1,4,2019-07-01,0.83,3,80 +31472775,Private Room in Brooklyn: Near L/A/C/J Trains,20647101,James,Brooklyn,Bushwick,40.68364,-73.90748,Private room,45,1,2,2019-03-01,0.39,1,0 +31473340,Cozy Clean XL Studio,2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69226,-73.94788,Entire home/apt,89,3,18,2019-06-26,3.03,3,237 +31474100,"Big window, good lighting, computer and speaker!",9475918,Joanne,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94565,Private room,39,1,1,2019-02-26,0.22,1,0 +31474126,Loft in Bushwick,126052775,Lancelot,Brooklyn,Bushwick,40.70444,-73.92181,Private room,47,2,0,,,1,0 +31474431,Spacious Clean Quiet Master 1 min to Subway N Line,235302401,Kin,Brooklyn,Sunset Park,40.64359,-74.01358,Private room,49,1,8,2019-06-15,1.67,3,164 +31474638,Great clean quiet bedroom - half a block to R Line,235302401,Kin,Brooklyn,Sunset Park,40.64303,-74.014,Private room,49,1,3,2019-06-17,1.48,3,155 +31475440,Magnificent 6 Bedroom/5 Bathroom Townhouse,235810002,Joshua,Manhattan,Upper West Side,40.7874,-73.97051,Entire home/apt,1150,1,0,,,1,2 +31476060,Cozy Williamsburg Apartment,9014833,Hillary,Brooklyn,Williamsburg,40.71159,-73.96581,Entire home/apt,61,2,15,2019-06-20,2.76,1,0 +31476497,Modern stylized room in appartment Harlem 141st,566838,Max,Manhattan,Harlem,40.81944,-73.93974,Private room,70,1,23,2019-06-27,6.05,2,97 +31484603,"Gorgeous, sunny, two bedroom beach house.",5369840,Kimberley,Queens,Belle Harbor,40.57743,-73.84519,Entire home/apt,105,2,0,,,1,22 +31485453,Peaceful Private Room in Kew Gardens! Room 1,23969698,Lindsey,Queens,Kew Gardens,40.70817,-73.83595,Private room,40,1,13,2019-06-11,2.41,2,17 +31485528,Small Private Room with backyard,38757148,Daniel,Brooklyn,Bedford-Stuyvesant,40.68937,-73.94291,Private room,50,2,14,2019-06-20,2.46,1,5 +31486254,Luxury 2 Bedroom Apartment 15 Mins from Manhattan,1788443,Aaron,Brooklyn,Bushwick,40.69568,-73.93203,Entire home/apt,175,2,23,2019-07-06,4.06,1,227 +31486707,Beautiful Loft sublet with community in Brooklyn,33120658,Maku,Brooklyn,Williamsburg,40.70505,-73.934,Private room,50,4,2,2019-05-24,0.42,1,12 +31489863,Conveniently located Chelsea 2br,25502424,Jay,Manhattan,Chelsea,40.74859,-73.99685,Private room,92,2,0,,,1,0 +31490386,"Rustic, Private One-Bedroom Apartment in Brooklyn!",31883163,Bri,Brooklyn,Greenpoint,40.73203,-73.95126,Entire home/apt,95,1,22,2019-07-06,3.71,1,22 +31490447,Minimal Studio in North Greenpoint - Affordable!,11612872,Robert,Brooklyn,Greenpoint,40.73757,-73.95509,Entire home/apt,80,2,22,2019-06-08,3.84,3,5 +31490659,"‘’AROUND THE CORNER’’ QUEENS, NY",12394498,Anna,Queens,Maspeth,40.7282,-73.89135,Entire home/apt,90,3,9,2019-07-05,6.75,1,121 +31491866,"COZY ,BRIGHT & BEAUTIFUL 2 BDS HOME IN DOWNTOWN",235939247,Maria,Manhattan,Two Bridges,40.71261,-73.99506,Entire home/apt,250,3,21,2019-06-17,3.64,1,148 +31493796,Artists House with fire place & roof garden!,18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65621,-73.9562,Private room,40,3,5,2019-06-22,1.03,4,0 +31494165,Sunny Cosy Private Room Hell's Kitchen & Broadway,33464426,Natasha,Manhattan,Hell's Kitchen,40.76453,-73.98527,Private room,80,3,8,2019-05-29,1.40,1,0 +31494679,Brighton Luxury,149221924,Viktor,Brooklyn,Brighton Beach,40.57504,-73.96673,Entire home/apt,80,1,1,2019-01-17,0.17,1,0 +31494924,Cozy Double Bedroom Suite Williamsburg 30 Days,120749029,Joe And Shelly,Brooklyn,Williamsburg,40.70643,-73.94198,Private room,63,21,0,,,2,135 +31495625,Sunny one-bedroom in Prospect Heights,17726859,Liz,Brooklyn,Prospect Heights,40.681,-73.96827,Private room,150,1,1,2019-01-19,0.18,1,0 +31497697,"Cozy Manhattan 1-Bedrm, Ground floor, 24hr checkin",218352095,Emma,Manhattan,Upper East Side,40.78132,-73.94723,Private room,75,4,15,2019-07-06,2.66,1,21 +31498735,NEW Perfect private room near Two Bridges IV,170263842,Sultan,Manhattan,Lower East Side,40.7096,-73.98703,Private room,71,15,0,,,4,185 +31499021,Manhattan Artist residency room,34915339,Michael,Manhattan,Upper East Side,40.78062,-73.95173,Private room,89,1,39,2019-07-05,6.65,4,221 +31499047,Renovated 2 Br Close to LGA/JFK /7 mile Midtown,234396332,Joy,Queens,East Elmhurst,40.75675,-73.88599,Entire home/apt,99,1,18,2019-07-06,3.16,2,141 +31499524,Stylish cozy room in prime area of Upper East,34915339,Michael,Manhattan,Upper East Side,40.78001,-73.9518,Private room,99,1,38,2019-06-30,6.44,4,142 +31499813,SUNNY SAFE & COZY BRICK BEDROOM CLOSE TO NYC! <3,236014031,Jim,Bronx,Longwood,40.81624,-73.9011,Private room,50,2,0,,,1,0 +31499944,Stylish 1BR in West Village,46389451,Martin,Manhattan,West Village,40.73411,-74.00508,Entire home/apt,170,3,9,2019-06-19,1.71,3,169 +31500127,Comfortable sofa bed in chic apt,34915339,Michael,Manhattan,Upper East Side,40.7814,-73.95206,Shared room,50,1,38,2019-06-30,6.48,4,238 +31500172,Room can fit 3 people in Manhattan close to subway,235073206,Julianna,Manhattan,Harlem,40.8181,-73.94441,Private room,82,1,22,2019-06-24,3.84,4,96 +31501009,MIDTOWN East LARGE STUDIO-7 mins to TIMES SQUARE!,16480700,Eddie&Vlad,Manhattan,Upper East Side,40.76495,-73.96679,Entire home/apt,299,1,8,2019-06-28,1.36,7,342 +31502105,The Peaceful Palace Spacious,236018119,Lucy,Queens,Queens Village,40.70472,-73.74865,Entire home/apt,121,1,13,2019-07-06,2.28,3,90 +31502639,Comfortable room close to train 30 min to Times Sq,235073206,Julianna,Manhattan,Harlem,40.82049,-73.94505,Private room,75,1,21,2019-06-17,4.09,4,351 +31502830,Flatiron Designer Loft! Private Elevator! 3BR/2BA,231295106,Sam,Manhattan,Gramercy,40.73667,-73.98592,Entire home/apt,199,3,20,2019-06-16,3.70,1,123 +31506629,Chic Bedstuy Townhouse w/ Lovely Garden,15185649,Beebe,Brooklyn,Bedford-Stuyvesant,40.683,-73.92346,Entire home/apt,149,7,0,,,2,5 +31509696,Quaint Furnished Studio in Doorman Building!,234650220,Pacita,Brooklyn,Brooklyn Heights,40.69657,-73.99604,Entire home/apt,79,3,1,2019-06-01,0.77,1,94 +31510414,Sun-lit room in spacious Clinton Hill loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69046,-73.9586,Private room,60,30,1,2019-05-05,0.45,4,153 +31511086,Private cozy room in Manhattan,144006321,Lethy,Manhattan,Washington Heights,40.84282,-73.94133,Private room,45,1,13,2019-07-07,2.45,1,87 +31511088,Blissful Boudiors Your Home Away From Home,167383560,Toni,Brooklyn,Bedford-Stuyvesant,40.68069,-73.94264,Private room,125,1,2,2019-06-10,1.02,1,199 +31511141,GEM AT THE HEART OF NOLITA MOTT& PRINCE ST.,236107297,Raquel,Manhattan,Nolita,40.72189,-73.9941,Entire home/apt,199,7,1,2019-04-21,0.38,1,124 +31512324,Private Bedroom / Bushwick,135722057,Polina,Brooklyn,Bushwick,40.6847,-73.90883,Private room,48,1,2,2019-06-27,2,1,53 +31513692,Need temp room mate/ Private room in Manhattan(個室),117675375,Ky-Tsuyo,Manhattan,East Harlem,40.79876,-73.93763,Private room,40,7,9,2019-06-25,1.97,2,8 +31514475,New Building Rooms 5 from 1,203266238,Steve,Bronx,Morris Park,40.85589,-73.85825,Private room,85,5,5,2019-06-29,0.85,5,343 +31514722,The best room on Sheepshead Bay,228053166,Anna,Brooklyn,Sheepshead Bay,40.58624,-73.94558,Private room,45,1,21,2019-06-29,6.30,1,160 +31514807,"Meatpacking Events, Popups, Baby Showers, PhotoSht",78140736,Greg,Manhattan,West Village,40.73882,-74.00706,Entire home/apt,1050,1,0,,,1,48 +31515617,PRIVATE ROOM 1 - 1 BLOCK TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69581,-73.95379,Private room,68,30,1,2019-06-24,1,6,311 +31516684,Safe room in a quiet neighborhood. Near Manhattan!,137358866,Kazuya,Queens,Sunnyside,40.73812,-73.92024,Private room,41,30,1,2019-03-12,0.25,103,186 +31517508,Light filled Room in heart of Brooklyn,7777033,Martha,Brooklyn,Crown Heights,40.66915,-73.95321,Private room,80,2,0,,,1,342 +31517652,City Life Private Rm-Near Columbia University NYC.,16480700,Eddie&Vlad,Manhattan,Harlem,40.81878,-73.95302,Private room,77,1,15,2019-05-18,3.36,7,351 +31520819,Private apartment (1st floor) with all amenities,220125576,Yogi,Queens,Ozone Park,40.67883,-73.85627,Entire home/apt,72,2,7,2019-05-27,1.20,3,52 +31521732,Comfortable Room For 4-Near Columbia University.,16480700,Eddie&Vlad,Manhattan,Harlem,40.81981,-73.95353,Private room,79,1,1,2019-03-14,0.26,7,60 +31529989,Sunny East Village Private Room with Bath,180126576,P,Manhattan,East Village,40.72475,-73.98345,Private room,120,3,1,2019-05-12,0.52,3,0 +31530836,Cozy Priv Room! in Prime East Village!,180126576,P,Manhattan,East Village,40.72471,-73.98367,Private room,100,3,1,2019-04-12,0.34,3,0 +31532352,Super Cute Crown Heights Hideaway .,158739,Zahavah Cara,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.94233,Entire home/apt,106,2,3,2019-03-29,0.74,2,0 +31532357,"Beautiful, spacious 1brm, unbelievable location!",5916186,Carmel,Manhattan,Hell's Kitchen,40.76462,-73.98734,Private room,110,3,7,2019-07-02,1.71,1,3 +31532642,Nice cozy apartment in Washington Heights!,26018582,Mery,Manhattan,Washington Heights,40.83419,-73.94638,Entire home/apt,135,3,1,2019-02-06,0.20,1,214 +31533891,Upper West Side Studio,171367408,Samantha,Manhattan,Upper West Side,40.79003,-73.97693,Entire home/apt,90,2,8,2019-06-23,1.98,1,0 +31533898,TRENDi 6 BEDROOM 2 APARTMENTS COMBINED/12 BEDS,133234099,Gemma,Manhattan,Harlem,40.8095,-73.94297,Entire home/apt,750,3,0,,,2,97 +31534487,New York Big Room,21250331,Clara,Queens,Bayside,40.75409,-73.76935,Private room,47,1,19,2019-06-20,3.63,3,350 +31534613,New Oceanside home just 5 houses from beach side B,37136163,Renzo,Manhattan,Midtown,40.75164,-73.98042,Entire home/apt,600,7,0,,,1,281 +31534723,Brownstone Fashion Studio,20863433,Mona,Brooklyn,Bedford-Stuyvesant,40.685,-73.94711,Entire home/apt,130,1,7,2019-06-30,1.98,1,16 +31535692,"Beautiful, Charming Bohemian Brownstone Loft",82400601,Valerie,Brooklyn,South Slope,40.66716,-73.98335,Entire home/apt,100,1,9,2019-03-02,1.74,1,0 +31536758,Gorgeous views from cleanly home in Lincoln Square,236349458,Jeannette,Manhattan,Upper West Side,40.77714,-73.9881,Private room,180,3,13,2019-06-28,2.60,1,0 +31538945,PRIVATE ROOM IN ARTSY WILLIAMSBURG LOFT!,52531721,Pamela,Brooklyn,Williamsburg,40.71126,-73.94917,Private room,55,2,26,2019-06-29,5.10,1,156 +31539511,Great Space with Private Entrance,235763046,Yvonne,Queens,Rosedale,40.66818,-73.73399,Entire home/apt,60,1,30,2019-06-29,5.45,1,282 +31539570,Beautiful and cozy 2Br with private terrace,7225691,Jérôme,Manhattan,Lower East Side,40.72278,-73.98902,Entire home/apt,350,1,46,2019-07-01,7.89,2,342 +31540929,Classic 3 Bedroom Upper West Side Apartment,28035940,Yaron,Manhattan,Upper West Side,40.79933,-73.96794,Entire home/apt,130,210,1,2019-03-28,0.29,1,2 +31541068,"Bright Guest Room in Fort Greene, BK",115252929,Duaa,Brooklyn,Fort Greene,40.68431,-73.97209,Private room,65,1,9,2019-06-23,2.87,1,157 +31541668,Contemporary Bedroom in Brooklyn,62954830,Rose-Camille,Brooklyn,Clinton Hill,40.69571,-73.96944,Private room,90,1,9,2019-05-26,2.84,1,144 +31542692,BK Spot,64091336,Allan,Brooklyn,Bedford-Stuyvesant,40.693,-73.934,Entire home/apt,120,3,12,2019-06-10,2.13,1,0 +31542976,"Cozy, Bright Room in Uptown Manhattan",112290211,Valerie,Manhattan,Washington Heights,40.84623,-73.93578,Private room,70,2,10,2019-06-24,2.13,1,152 +31543246,Brownstone Top Floor Sunny & Spacious Apartment,236422290,Verna,Manhattan,Harlem,40.8089,-73.94349,Entire home/apt,135,30,2,2019-06-24,0.88,1,7 +31543432,Private bright room with private detached bathroom,26295375,Alex,Bronx,Port Morris,40.80797,-73.92865,Private room,95,3,5,2019-07-02,0.96,1,49 +31543550,Lower manhattan 1 bedroom short or long term,7285648,Josh,Manhattan,Chelsea,40.74562,-74.00538,Private room,86,1,0,,,3,0 +31549470,Cozy UES Studio w/ Gym + Doorman near subway by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77478,-73.95486,Entire home/apt,236,30,0,,,232,127 +31552528,Comfy & Spacious Room in Williamsburg Loft,236432765,Aleks,Brooklyn,Williamsburg,40.71736,-73.95394,Private room,50,2,3,2019-05-03,0.78,2,330 +31553066,Near major transportation,41090359,Abi,Queens,Little Neck,40.77122,-73.738,Private room,100,1,0,,,1,88 +31553305,Private Loft-Style Bedroom w/ your own Bathroom,15058648,Shola,Brooklyn,Bushwick,40.69866,-73.92929,Private room,70,3,4,2019-05-31,0.73,3,21 +31555001,New York Apartment that feels like home,236511564,Mintra,Manhattan,Harlem,40.8041,-73.956,Private room,60,21,2,2019-04-19,0.43,1,35 +31556307,G/F Woodside room mins to LaGuardia Airport,137358866,Kazuya,Queens,Woodside,40.74424,-73.90146,Private room,49,30,0,,,103,247 +31556929,Sunny Central Corner Room in Bushwick,8288491,Sofia,Queens,Ridgewood,40.70667,-73.9147,Private room,70,2,0,,,2,92 +31557309,"IDEAL Beach Bungalow in BelleHarbor, Rockaway!",40025069,Briana,Queens,Belle Harbor,40.57518,-73.84558,Entire home/apt,97,2,2,2019-06-30,2,1,52 +31557451,"Spacious, Stylish & Sunny Mid-Century Home",398617,Sarah,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95476,Entire home/apt,155,2,10,2019-07-01,2.11,1,42 +31557578,Cozy room next to subways and Prospect Park,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.94289,Private room,58,1,8,2019-06-30,1.56,5,158 +31560410,Homey Studio just minutes from Time Square,21129281,Sy,Manhattan,Washington Heights,40.83899,-73.93979,Entire home/apt,70,5,10,2019-04-08,1.78,1,191 +31560479,large private Rooms for rent 5 mins from SI Ferry,236556387,Samuel,Staten Island,Stapleton,40.63474,-74.07758,Private room,57,1,7,2019-06-22,3.56,1,365 +31560811,Williamsburg Hidden Gem,5178818,Daniel,Brooklyn,Williamsburg,40.71186,-73.95736,Entire home/apt,129,1,28,2019-07-07,5.22,1,93 +31561218,Huge Bright King Size Private Bedroom in NYC,59051417,Kai,Manhattan,East Harlem,40.7961,-73.94791,Private room,109,1,2,2019-04-23,0.44,6,0 +31561372,SPACIOUS 2BEDS APT. IN THE HEART OF NYC TIMESQUARE,229288524,Yan,Manhattan,Theater District,40.75749,-73.98921,Entire home/apt,128,30,6,2019-06-24,1.88,2,233 +31561805,Pam's cozy 2 bedroom in Brooklyn,236565167,Pamilitta,Brooklyn,East Flatbush,40.6386,-73.93654,Private room,80,1,10,2019-05-26,1.95,1,4 +31562978,Bright 3 bedroom apt in South Brooklyn,27479250,Patrice,Brooklyn,Bensonhurst,40.60364,-73.99524,Entire home/apt,125,2,0,,,1,0 +31564154,West Village Cozy Studio,49503035,Gabriella,Manhattan,West Village,40.73041,-74.00251,Entire home/apt,85,3,5,2019-06-22,1.08,1,16 +31564614,Solo/Couple 2 Stops from the city (good price!),235548617,Khalid,Queens,Long Island City,40.75683,-73.93184,Private room,55,1,29,2019-06-19,5.37,2,1 +31565105,Massive Room in Bed-Stuy Clinton Hills,236596347,John,Brooklyn,Bedford-Stuyvesant,40.68226,-73.94493,Private room,69,2,1,2019-03-30,0.29,1,95 +31565332,Penthouse 2 Bedroom w/ Terrace,15989140,Coralie,Brooklyn,Greenpoint,40.73636,-73.95538,Entire home/apt,115,30,0,,,1,3 +31565717,Renovated entire floor apt in prime Williamsburg!,27446767,Dario,Brooklyn,Williamsburg,40.71272,-73.95599,Private room,59,4,0,,,1,0 +31566109,B in Brooklyn!,154390742,Brittney,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95862,Entire home/apt,120,2,8,2019-06-02,1.41,1,0 +31566176,One room in Bushwick,236607981,Alla,Brooklyn,Bushwick,40.69494,-73.92724,Private room,80,1,0,,,1,0 +31566253,Full Sunny East Williamsburg Apt,174559516,Joseph,Brooklyn,Williamsburg,40.70214,-73.94512,Entire home/apt,120,5,1,2019-02-27,0.23,1,0 +31568589,NYC Cat Sitter- laundry & office space,16334409,Lisa,Manhattan,East Harlem,40.79445,-73.93183,Entire home/apt,57,24,0,,,2,181 +31568673,Large private room w/ 2 built-in closets,236631469,Paloma,Bronx,Williamsbridge,40.88449,-73.86227,Private room,25,30,0,,,1,85 +31569502,Entire 1 BR Apartment in Perfect Astoria Location,39192815,Agnes,Queens,Astoria,40.76533,-73.92171,Entire home/apt,95,2,0,,,1,0 +31570303,Worldclass Casa - JFK Master Suite w/ Prvt Bath,115136074,Tina,Queens,Springfield Gardens,40.68955,-73.74867,Private room,65,2,10,2019-06-18,2.38,3,68 +31570962,A home away from home.,81636631,Jermaine,Brooklyn,Bedford-Stuyvesant,40.67893,-73.91014,Entire home/apt,100,3,0,,,1,89 +31571554,SWEET PLACE IN BUSHWICK 3 BLOCKS FROM METRO STAT,236659049,Yesenia,Brooklyn,Bushwick,40.69157,-73.90435,Entire home/apt,140,2,12,2019-06-23,2.07,4,48 +31572551,Chic in the City,6486059,Matt,Manhattan,Washington Heights,40.85442,-73.93266,Entire home/apt,85,4,4,2019-06-18,0.72,1,8 +31572850,Affordable Manh. Studio for 2 for weekend(or week),274333,Janu,Manhattan,Harlem,40.8013,-73.95474,Entire home/apt,87,3,2,2019-05-11,0.95,3,49 +31575039,SoHo/Central/Quiet St/Close to trains/Entire Place,114548258,Only One,Manhattan,SoHo,40.72749,-74.0018,Entire home/apt,205,1,2,2019-07-01,2,2,124 +31575274,Spacious 2BR Apt Heart of Bushwick + Backyard,234214434,Mike,Brooklyn,Bushwick,40.70016,-73.93042,Entire home/apt,145,30,6,2019-07-03,1.64,4,224 +31580460,Cheery West Village 1BR w/ Washer + Dryer by Blueground,107434423,Blueground,Manhattan,West Village,40.73588,-74.00474,Entire home/apt,236,30,0,,,232,273 +31582772,1B share Rm Bed1 Guesthouse in Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80745,-73.93955,Private room,72,1,2,2019-03-10,0.45,10,365 +31582797,Modern & Spacious Brownstone Apartment,2903063,Ana,Brooklyn,Bedford-Stuyvesant,40.68878,-73.94103,Entire home/apt,149,2,24,2019-07-07,4.80,1,194 +31583242,Comfi & Cozy Studio in private house,236745428,Lutz,Brooklyn,Flatbush,40.64003,-73.955,Entire home/apt,95,2,9,2019-06-17,1.79,1,0 +31584089,"Homey Hudson Yards w/ Gym + Doorman, near MSG by Blueground",107434423,Blueground,Manhattan,Chelsea,40.75218,-73.99541,Entire home/apt,213,30,0,,,232,303 +31586233,"Full apt 3 bd/ 2 ba w/parking, close to train/park",17790600,Claire,Brooklyn,Prospect-Lefferts Gardens,40.65801,-73.95732,Entire home/apt,150,4,0,,,1,127 +31589769,Beautiful Duplex Apartment for Rent,214623686,Earlene,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95184,Entire home/apt,80,2,19,2019-07-07,4.67,1,81 +31590566,PRIME SOHO: Perfect Room on Prince Street,236445157,Anna,Manhattan,Greenwich Village,40.7315,-73.99961,Private room,80,180,5,2019-05-10,0.90,3,331 +31591448,"Apt in Little Italy/Chinatown, Lower Manhattan",217836856,Moying,Manhattan,Chinatown,40.71865,-73.99587,Entire home/apt,190,1,46,2019-07-05,8.47,2,232 +31592115,Luxury Studio in Iconic Lower East Side,14278450,Linda,Manhattan,Lower East Side,40.71923,-73.98935,Entire home/apt,200,1,7,2019-05-01,1.86,1,0 +31593170,Cute and Cozy Private Room,19418202,Yulia And Amine,Bronx,Van Nest,40.84555,-73.86787,Private room,50,1,19,2019-07-06,4.35,1,32 +31593677,Modern NYC 2 bedroom apt close to Subway 300#1C,137567864,Johanna,Bronx,Melrose,40.82421,-73.917,Entire home/apt,99,2,11,2019-06-22,1.94,1,107 +31593740,Broadway - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75636,-73.99675,Private room,199,1,5,2019-06-19,0.99,30,362 +31594590,Prime Bushwick Entire 2 Bedroom Apt 10 min to City,15147054,Chris & Grace,Brooklyn,Bushwick,40.69633,-73.93369,Entire home/apt,95,3,0,,,2,0 +31594754,Empire State - Comfy King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75641,-73.99706,Private room,129,1,2,2019-04-07,0.41,30,363 +31595243,"Cozy and Renovated 2 BR Apt in UWS, Central Park",47038126,Brigitte,Manhattan,Upper West Side,40.7859,-73.9723,Entire home/apt,300,3,2,2019-05-11,0.45,2,40 +31595244,Central Park - Comfy King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75504,-73.99716,Private room,199,1,3,2019-05-09,0.89,30,360 +31595389,Private Cozy&Quiet Bedroom 1min from central park,47038126,Brigitte,Manhattan,Upper West Side,40.78541,-73.97343,Private room,110,1,2,2019-06-18,1.40,2,72 +31596163,GREAT LOCATION in NY! PRIVATE STUDIO with PARKING!,20056779,David & Orli,Queens,Forest Hills,40.72282,-73.85479,Entire home/apt,175,2,11,2019-06-16,1.96,1,172 +31596199,Entire Contemporary Bronx home,236852677,Emily,Bronx,Fordham,40.86906,-73.88753,Entire home/apt,200,2,1,2019-06-16,1,1,32 +31596216,Flex Individual Bedroom ONLY ONE (1) Professional,236406472,Alix,Queens,Astoria,40.75667,-73.92726,Private room,60,5,4,2019-06-29,1.29,1,150 +31596519,Idyllic 1000 Sq Ft Bushwick Loft steps from the L.,3246916,Jos,Brooklyn,Williamsburg,40.7049,-73.93301,Entire home/apt,250,3,2,2019-05-15,0.37,1,0 +31599106,纽约客民宿,192895513,Vivi,Queens,Flushing,40.75528,-73.83072,Private room,99,3,2,2019-06-21,0.78,3,336 +31599436,"Elegant, Mid Century Modern Apt (Entire Place)",12618858,Alimah,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92974,Entire home/apt,130,2,5,2019-06-16,1.39,2,64 +31599484,Entire apartment at the best part of Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.7133,-73.96341,Entire home/apt,120,5,12,2019-06-10,3.50,2,107 +31599728,"Great Private Br, 59th ave & Main Street flushing.",217910985,Acclaimed,Queens,Flushing,40.74295,-73.82544,Private room,55,5,0,,,1,132 +31600379,Great apartment park slope,148787736,Fred,Brooklyn,Gowanus,40.66763,-73.9919,Entire home/apt,115,1,2,2019-06-23,2,2,93 +31600930,Frum kosher house for rent,57135136,Naftoli,Queens,Far Rockaway,40.59794,-73.74688,Entire home/apt,250,10,0,,,1,179 +31602882,Extra Large Furnished Room,236914360,Jackie,Brooklyn,Crown Heights,40.67427,-73.94826,Private room,80,1,1,2019-03-31,0.30,1,89 +31605060,"BIG ROOM on Prince Street, PRIME SOHO LOCATION",236445157,Anna,Manhattan,Greenwich Village,40.72939,-74.00064,Private room,80,180,1,2019-05-15,0.55,3,219 +31614670,XL Private Bedroom in the Heart of Brooklyn,92588965,Kam,Brooklyn,East Flatbush,40.64842,-73.92753,Entire home/apt,45,2,17,2019-06-07,2.98,1,248 +31615207,Wyndham Midtown 45 New York City Presidential,96086378,Ashley,Manhattan,Midtown,40.75359,-73.97325,Entire home/apt,1295,1,1,2019-05-07,0.48,2,289 +31616672,Beautiful 1 bedroom Apartment in Prime Astoria,237012945,Gregory,Queens,Astoria,40.76923,-73.91855,Entire home/apt,79,4,0,,,1,0 +31619454,Room In West Brooklyn,232778333,Jaime,Brooklyn,Bensonhurst,40.61245,-73.99684,Private room,29,15,2,2019-06-01,1.20,2,244 +31620173,"Williamsburg 1.5 Bed, PRIVATE Yard, Music Venues",237049868,Luc And Deb,Brooklyn,Williamsburg,40.71364,-73.9383,Entire home/apt,95,1,2,2019-05-06,0.56,1,0 +31621627,Peaceful Private Room in Kew Gardens! Room 2,23969698,Lindsey,Queens,Kew Gardens,40.7078,-73.83634,Private room,40,1,9,2019-06-12,1.61,2,0 +31621785,"Great deal! Comfy, brand new, close to subway:)",235073206,Julianna,Manhattan,Harlem,40.81893,-73.94512,Private room,75,1,20,2019-07-05,3.80,4,192 +31622417,"Vibrant, Modern, Chelsea 1 bd sleeps 4",236896088,Alice,Manhattan,Chelsea,40.74125,-73.99876,Entire home/apt,200,2,4,2019-06-11,0.85,1,6 +31622448,Home Studio Suite,4852748,Michelle,Manhattan,Harlem,40.8063,-73.9454,Private room,105,4,2,2019-05-31,1.15,6,119 +31623508,Flex 3 bedroom and super spacious unit in Bushwick,26738513,Malachi,Brooklyn,Bushwick,40.69187,-73.91464,Entire home/apt,135,7,0,,,3,204 +31624317,Private BedStuy Wabi-sabi Apart. w/ own backyard.,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92766,Entire home/apt,130,3,8,2019-07-01,1.47,5,110 +31624608,"Homey, comfy bedroom with king size bed!",154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68796,-73.9259,Private room,60,3,5,2019-05-24,0.89,5,110 +31624832,"Bright, sunny bedroom with backyard",154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68803,-73.92601,Private room,50,2,6,2019-05-25,1.15,5,125 +31624862,Upper East Side Studio on 68th street,10371008,Anna,Manhattan,Upper East Side,40.76455,-73.95646,Entire home/apt,135,4,1,2019-06-13,1,2,217 +31626307,Bright and Airy Freeman Street loft,513839,Syed,Brooklyn,Greenpoint,40.73444,-73.95658,Entire home/apt,120,30,3,2019-05-14,0.53,1,209 +31626662,Beautiful Bed-Stuy Open Concept Garden Apartment,237107169,Cinthya,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92443,Entire home/apt,136,2,18,2019-07-01,3.46,1,74 +31626920,Quiet Place at Manhattan Midtown West,50339845,Jitabella,Manhattan,Upper West Side,40.7733,-73.98913,Private room,50,1,3,2019-02-06,0.53,1,0 +31636424,Lovely Woodside room near LaGuardia & 52 St train,137358866,Kazuya,Queens,Woodside,40.74373,-73.90804,Private room,41,30,0,,,103,215 +31638687,NEW Luxury 1 Bedroom on UES Perfect Location!!!,237201559,David,Manhattan,Upper East Side,40.77112,-73.95405,Entire home/apt,175,2,16,2019-07-03,3.72,1,233 +31639432,Entire Cozy Studio in Central Harlem,37277862,Lucy,Manhattan,Harlem,40.80864,-73.94453,Entire home/apt,85,2,7,2019-04-20,1.24,1,0 +31640203,*SUMMER SUBLET*Sunny Penthouse w/ Private Terrace*,510931,Autumn,Manhattan,Battery Park City,40.70438,-74.01657,Private room,71,14,0,,,2,63 +31641160,Marsha Inn,155668897,Nicola,Queens,Jamaica,40.66678,-73.78361,Private room,80,14,6,2019-03-17,1.05,2,365 +31641843,Sunny Bedroom in Williamsburg / Chambre privée,184600679,Raphaëlle,Brooklyn,Williamsburg,40.71013,-73.95206,Private room,85,6,1,2019-04-30,0.43,1,0 +31647134,Luxury SohoStyle 2 bedroom Downtown Manhattan.,91571876,Lena,Manhattan,Lower East Side,40.71889,-73.99231,Entire home/apt,255,2,13,2019-05-30,2.32,1,239 +31647516,Elegant & bright 1 bedroom in West Village,237204047,Ryan,Manhattan,West Village,40.72963,-74.0033,Entire home/apt,250,2,11,2019-05-31,2.34,1,0 +31647962,Spacious and stylish Harlem apartment,237280886,Nicola,Manhattan,Harlem,40.82636,-73.94985,Entire home/apt,95,2,0,,,1,0 +31648320,"Times Square Suite with amazing views, high rise !",237283897,Mj,Manhattan,Theater District,40.75412,-73.98601,Entire home/apt,119,1,18,2019-06-21,3.18,1,302 +31649210,one bedroom,111586798,Percival,Bronx,Soundview,40.82121,-73.87764,Private room,65,7,0,,,1,90 +31650146,Gorgeous Spacious 1BR in Prime Lower East Side,1306854,Ani,Manhattan,Lower East Side,40.71991,-73.98505,Entire home/apt,110,30,0,,,1,172 +31651200,Private room in Midtown Manhattan with Balcony,10318796,Roberta,Manhattan,Midtown,40.75403,-73.9715,Private room,160,2,0,,,1,0 +31651359,Huge Private Room Near Brooklyn Museum,181382109,Jacob,Brooklyn,Crown Heights,40.66911,-73.95982,Private room,68,1,1,2019-05-13,0.52,1,59 +31652254,Photo Studio & Creative Space,5095364,Michael,Manhattan,Nolita,40.72095,-73.99756,Entire home/apt,1200,1,1,2019-02-03,0.19,1,27 +31652405,"Private room,29fl in luxury bldg Midtown Manhattan",237320600,Katya,Manhattan,Midtown,40.7532,-73.97141,Private room,119,2,1,2019-02-17,0.21,1,0 +31652563,Super large 2 bed 2 Bath with balcony and POOL,113805886,Yaacov,Manhattan,Upper East Side,40.77694,-73.94994,Entire home/apt,250,31,1,2019-03-13,0.25,33,365 +31652565,Green moon#2,208136645,Andre,Brooklyn,Flatlands,40.62655,-73.9407,Private room,49,2,1,2019-04-03,0.31,4,96 +31654063,"♥Private-Keyed Room #3 - Desk, closet, & King-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73783,-73.99775,Private room,99,12,12,2019-06-20,2.11,4,21 +31654495,Luxury Modern Gramercy Loft with a balcony,79697038,Esteban,Manhattan,Kips Bay,40.74144,-73.98079,Entire home/apt,200,30,4,2019-06-13,0.85,1,88 +31660529,Calm bed great area.,111542307,Imoy,Brooklyn,Bedford-Stuyvesant,40.68694,-73.92732,Shared room,20,30,0,,,2,342 +31663848,Gorgeous Sunny Luxury Williamsburg Condo,237406328,Daniel,Brooklyn,Williamsburg,40.71447,-73.95108,Entire home/apt,140,2,30,2019-07-07,5.56,1,135 +31665707,bohemian pied a Terre,27473538,Yael,Brooklyn,Greenpoint,40.72712,-73.95674,Entire home/apt,250,5,0,,,1,43 +31667621,Manhattan studio 7,204811322,J Danny,Manhattan,Chelsea,40.74826,-73.98887,Private room,220,3,5,2019-06-20,2.73,2,21 +31668199,Spread love it’s the Brooklyn way.,130023,Lloyd,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93104,Entire home/apt,145,5,5,2019-06-15,1.43,2,244 +31668461,Amazing and Lofty 2BD space in Williamsburg,236432765,Aleks,Brooklyn,Williamsburg,40.71524,-73.9553,Entire home/apt,200,2,14,2019-06-30,3.93,2,330 +31668481,Beautiful 1 bdr in the heart of Williamsburg,230930866,Kim,Brooklyn,Williamsburg,40.71788,-73.96398,Entire home/apt,175,3,2,2019-06-01,0.53,1,5 +31669029,Cozy bedroom in artsy Bushwick Loft,7571700,Harris,Brooklyn,Williamsburg,40.70404,-73.93348,Private room,45,3,3,2019-04-23,0.76,1,0 +31669717,Cozy One Bedroom by Central Park,225612108,Rina,Manhattan,Upper West Side,40.79385,-73.96351,Entire home/apt,120,7,1,2019-03-25,0.28,1,0 +31669844,Studio in lovely Astoria,46324691,Eva,Queens,Astoria,40.77026,-73.92574,Entire home/apt,125,7,2,2019-04-03,0.58,1,0 +31670111,Greenpoint Sun Garden (Entire Loft),108150300,Cassi,Brooklyn,Greenpoint,40.72713,-73.95509,Entire home/apt,150,1,1,2019-02-18,0.21,2,2 +31670237,Dominiques Homesharing room NYC* metro*quiet*safe,310670,Vie,Bronx,Eastchester,40.88009,-73.83456,Private room,68,2,0,,,13,364 +31670590,East Village/Union Square Flat,237464350,Jake,Manhattan,East Village,40.73315,-73.98688,Entire home/apt,167,5,13,2019-06-20,2.75,1,91 +31670608,Contemporary Duplex with Grand Master Suite,50612451,Valentin,Brooklyn,Crown Heights,40.67577,-73.92393,Entire home/apt,220,3,4,2019-07-06,4,1,76 +31670625,Bright financial district apartment with views,237283862,Benjamin,Manhattan,Financial District,40.70504,-74.00787,Entire home/apt,250,2,6,2019-04-06,1.26,1,0 +31670943,Nice Quite place,73676875,Jonathan,Bronx,Claremont Village,40.84381,-73.90827,Entire home/apt,80,2,0,,,1,321 +31671043,Spacious Sun-Drenched UWS Apartment,4005376,Adam,Manhattan,Upper West Side,40.78966,-73.9776,Entire home/apt,107,25,1,2019-05-06,0.47,1,170 +31671056,Standalone room in the heart of Astoria,137734836,Walter,Queens,Astoria,40.7576,-73.91735,Private room,54,2,1,2019-06-19,1,1,56 +31671411,ELEVATOR Doorman GYM Studio 5225,16098958,Jeremy & Laura,Manhattan,Midtown,40.75003,-73.97059,Entire home/apt,135,30,0,,,96,156 +31671911,Harry Potter Den,138456145,Neal,Brooklyn,Bushwick,40.69294,-73.90744,Private room,35,7,1,2019-04-27,0.41,1,36 +31671972,NYC Entire Floor large space,237474824,Cho Cheong,Brooklyn,South Slope,40.66052,-73.9843,Entire home/apt,45,5,1,2019-03-04,0.23,1,28 +31672538,Home away from home,237482248,Jacob,Queens,Sunnyside,40.74372,-73.92416,Entire home/apt,200,1,1,2019-06-21,1,1,179 +31673405,Sunny 2 bedroom in Central Brooklyn!,121842697,Lo,Brooklyn,Crown Heights,40.67648,-73.93814,Entire home/apt,200,5,14,2019-06-22,3.59,1,96 +31675232,Brooklyn Exquisite,206288086,Akram,Brooklyn,Fort Greene,40.6927,-73.97265,Entire home/apt,165,2,13,2019-06-30,3.05,2,273 +31675244,Large Bedroom in Excellent Chinatown/LES Apartment,41108789,Ulysses,Manhattan,Chinatown,40.71444,-73.99344,Private room,85,2,25,2019-06-17,5.00,1,24 +31675967,"Bright, spacious, minimalist room in cool spot",220071184,Madison,Brooklyn,Williamsburg,40.70824,-73.94423,Private room,57,2,1,2019-06-09,1,1,3 +31676259,Huge 1br ** Priv.Balcony & River Views ** Gym*Pool,13773574,Cecile,Manhattan,Midtown,40.76497,-73.98191,Entire home/apt,225,30,0,,,12,328 +31677408,Perfect Upper West Side Studio,28334703,Stephen,Manhattan,Upper West Side,40.77974,-73.97973,Entire home/apt,150,4,2,2019-06-26,0.71,1,7 +31677547,NEW Williamsburg Gardens Large Room Private Bath,86604612,Janet,Brooklyn,Williamsburg,40.70624,-73.9508,Private room,75,2,3,2019-06-22,0.74,1,0 +31682228,Luxury Modern Apt - AMAZING location,237569289,I Do Not Live Here,Manhattan,Gramercy,40.73792,-73.98306,Entire home/apt,220,90,6,2019-05-10,1.21,1,0 +31682665,Cozy place in Astoria,8810794,Marcela,Queens,Long Island City,40.74776,-73.92875,Private room,50,1,10,2019-06-30,2.13,1,125 +31683919,Huge sunny room with private bath,49539959,Alex,Brooklyn,Crown Heights,40.67375,-73.91242,Private room,50,30,5,2019-03-31,0.93,2,0 +31684570,Designer Apartment in Cool Two Bridges,48911266,Tess,Manhattan,Chinatown,40.71382,-73.99609,Entire home/apt,175,2,4,2019-05-19,0.85,2,18 +31685548,"Little cozy, clean, homy gem in the hearth of LIC.",11914604,Maurizio,Queens,Long Island City,40.74649,-73.9525,Private room,70,15,3,2019-06-25,1.32,1,135 +31687149,Cozy south brooklyn apartment for a single/couple,32552738,Stella,Brooklyn,Kensington,40.64159,-73.9796,Entire home/apt,90,2,9,2019-03-18,1.75,1,0 +31688794,Awesome 1 Br apartment,24618314,Mishka,Brooklyn,Bedford-Stuyvesant,40.68638,-73.95442,Entire home/apt,56,3,2,2019-02-18,0.36,1,0 +31690275,Cozy & Colorful in Bushwick,71635863,Anne,Brooklyn,Bushwick,40.69034,-73.91976,Private room,65,1,25,2019-07-05,4.78,1,7 +31690969,Stay in the ❤️of Manhattan!,14892784,Melanie,Manhattan,Midtown,40.75979,-73.96463,Private room,100,1,20,2019-06-16,4.29,1,7 +31691209,"All set for guys, don’t miss out",51596474,Antony,Brooklyn,Gravesend,40.58453,-73.97172,Shared room,20,5,5,2019-04-29,1.01,12,0 +31691927,"One Room, In The Heights",13743148,Michelle,Manhattan,Washington Heights,40.8429,-73.93858,Private room,65,1,0,,,1,310 +31692426,Charming 2 Bedroom Brownstone Apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68525,-73.99837,Entire home/apt,200,2,4,2019-07-07,1.38,2,22 +31692860,2 bedroom apartment with a big outdoor terrace,169148493,Alan,Queens,Ditmars Steinway,40.77363,-73.91188,Private room,90,4,0,,,1,0 +31695085,Upper Upper East Side Vistas (15 min to LGA),13419129,Mikala,Manhattan,East Harlem,40.79966,-73.9417,Entire home/apt,97,1,16,2019-07-05,3.38,1,11 +31696775,Quiet & Peaceful room in Astoria!,151557263,Sadhya,Queens,Astoria,40.76333,-73.91187,Private room,45,2,13,2019-07-01,2.57,1,53 +31697123,Montauk Guest Suite,237715800,Joseph & Teresa,Brooklyn,East New York,40.66996,-73.87637,Entire home/apt,85,1,43,2019-07-08,7.87,1,161 +31698813,Cozy & Comfortable room-flushing subway,111142003,Se 小瑟,Queens,Flushing,40.75187,-73.81691,Private room,40,1,10,2019-06-18,2.52,1,205 +31704075,Cozy Manhattan Room,153793156,Erika,Manhattan,Morningside Heights,40.81633,-73.96069,Private room,50,2,15,2019-06-20,3.60,1,2 +31705298,Cozy and Quiet City Escape,3072696,Amy,Manhattan,Harlem,40.81369,-73.94996,Private room,100,1,6,2019-05-11,1.58,1,125 +31705971,Home away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.70534,-73.87995,Private room,50,2,18,2019-07-02,3.78,2,63 +31707011,West Village Gem,237804845,Veronica,Manhattan,West Village,40.73409,-74.00464,Entire home/apt,299,1,13,2019-07-01,3.22,1,61 +31707882,"Park Slope, Beautiful New Apartment",237817180,Sandra,Brooklyn,Park Slope,40.67378,-73.98299,Entire home/apt,285,5,9,2019-06-18,1.86,1,2 +31709260,"Spacious apartment close to Manhattan, WIFI",80561485,Gabriela,Queens,Astoria,40.7744,-73.93344,Entire home/apt,170,1,3,2019-03-09,0.58,2,41 +31710037,Beautiful airy apartment with private backyard.,47664369,Raizy,Brooklyn,Sunset Park,40.66123,-73.9971,Entire home/apt,100,1,9,2019-05-22,2.03,1,35 +31711274,"Contemporary, Cozy Retreat",170256169,Tiphanie,Brooklyn,Canarsie,40.6354,-73.90039,Entire home/apt,60,2,45,2019-06-24,9.64,1,30 +31711687,PRIVATE 1 Bedroom w/ your own bathroom & entrance!,15058648,Shola,Brooklyn,Bushwick,40.69814,-73.92805,Private room,70,3,3,2019-05-19,1.13,3,21 +31711813,法拉盛花园独立屋Entire 3beds+Park mins go JFK Airport/NYC,44093954,Susan,Queens,Whitestone,40.78236,-73.82092,Entire home/apt,140,1,9,2019-06-07,1.64,1,204 +31713303,Beautiful and Spacious West Village Apartment,223075114,Reggie,Manhattan,West Village,40.73386,-74.00038,Entire home/apt,215,2,2,2019-06-02,1.03,1,5 +31713522,Whole Ridgewood Railroad 2 blocks from M,11082069,Sam,Queens,Ridgewood,40.70271,-73.90517,Entire home/apt,52,7,1,2019-02-02,0.19,1,0 +31713858,Long Island City Apt with a Terrace,237880163,Sandeep,Queens,Sunnyside,40.7379,-73.92911,Private room,85,1,21,2019-07-02,4.92,1,80 +31714036,Urban Design Sanctuary,9582338,Max,Manhattan,NoHo,40.72626,-73.99316,Entire home/apt,250,3,9,2019-07-02,2.70,1,112 +31714168,5 min away from LGA,213014559,Kam,Queens,East Elmhurst,40.76893,-73.87712,Entire home/apt,135,1,17,2019-07-08,3.57,2,0 +31715312,Manhattan Studio 4,204811322,J Danny,Manhattan,Midtown,40.74827,-73.98865,Entire home/apt,230,3,2,2019-06-04,0.51,2,29 +31715879,Beautiful Cozy room in NYC nearby Time square,222424429,Marta,Manhattan,Washington Heights,40.84562,-73.94031,Private room,54,3,17,2019-06-27,3.31,2,38 +31716471,Lovely studio in Astoria/ LIC!,47114213,Leonardo,Queens,Long Island City,40.76117,-73.93127,Entire home/apt,70,2,11,2019-05-28,2.29,1,3 +31717837,"Amazing Value, Convenient Location, Nice Amenities",234174616,Onika,Brooklyn,East New York,40.67349,-73.88705,Entire home/apt,100,5,0,,,1,180 +31717883,Your Stay in Staten Island will be the best,237913872,Lilia,Staten Island,Concord,40.60228,-74.08324,Private room,75,2,8,2019-06-29,1.78,1,90 +31719001,Nice place for three people.,3767367,Regina,Manhattan,Upper West Side,40.79397,-73.972,Private room,80,3,7,2019-07-02,2.47,3,334 +31720275,Suite Escape - Modern & Chic 1 Bedroom,208930169,Kimesha,Brooklyn,Canarsie,40.63028,-73.90121,Entire home/apt,110,2,0,,,1,353 +31722467,ENTIRE PLACE! near Columbia-sleeps up to 8 guests!,16480700,Eddie&Vlad,Manhattan,Harlem,40.81953,-73.95476,Entire home/apt,250,1,0,,,7,249 +31726939,"Terrific Tribeca 1BR, Gym, Roof deck, Indoor pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71494,-74.00676,Entire home/apt,349,30,0,,,232,310 +31728112,"LARGE ROOM +20 minutes to midtown",172895347,Mario & Maria,Queens,Jackson Heights,40.75168,-73.88315,Private room,59,2,1,2019-02-03,0.19,2,0 +31729652,Sunny Studio located in the heart of Harlem,91390716,Kathiana Joy,Manhattan,Harlem,40.81207,-73.94335,Entire home/apt,80,2,3,2019-02-25,0.63,1,0 +31730525,Spacious 2 beds apt in Hell’s Kitchen 5ppl,237921255,Maria,Manhattan,Hell's Kitchen,40.76246,-73.9953,Entire home/apt,325,1,33,2019-07-03,6.11,1,217 +31731555,Spacious Bedroom with King Bed in Light-Filled Apt,2278050,Jill Laurie,Manhattan,Upper West Side,40.80272,-73.96916,Private room,80,5,3,2019-04-30,0.65,1,188 +31733307,5min fr Belmont Park 15min fr JFK 20min fr LaGuard,234191916,Dwayne,Queens,Queens Village,40.71131,-73.74623,Entire home/apt,69,1,34,2019-06-10,6.46,1,170 +31734628,"Sublet in Williamsburg, 50 steps from L train",23670318,Sean,Brooklyn,Williamsburg,40.7135,-73.94644,Private room,48,28,0,,,1,0 +31736343,Penthouse studio. Clean. A+ location Cafe&Park :),42153340,Boomer,Brooklyn,Greenpoint,40.72328,-73.94969,Entire home/apt,120,2,2,2019-02-19,0.42,2,0 +31737653,Museum Bed and Breakfast: Apt 3R Garden View,49736436,George,Manhattan,Washington Heights,40.83583,-73.93847,Entire home/apt,120,3,2,2019-06-24,2,2,116 +31738077,Cozy private room in Williamsburg,50497157,Luca,Brooklyn,Williamsburg,40.71248,-73.94859,Private room,45,3,1,2019-02-21,0.22,1,0 +31738629,Historic Brooklyn Townhouse Garden Floor,170638981,Gabrielle,Brooklyn,Prospect-Lefferts Gardens,40.6598,-73.95879,Entire home/apt,85,2,25,2019-07-08,4.78,1,28 +31743178,1 bedroom apartment/living room available.,234592314,Selvete,Brooklyn,Midwood,40.61459,-73.96041,Entire home/apt,59,2,4,2019-06-13,0.73,1,87 +31748621,Modern NYC Apartment,19043103,Jai,Manhattan,Chelsea,40.75124,-73.99523,Entire home/apt,100,5,6,2019-06-20,1.10,1,8 +31748955,Comfy Private bedroom in shared APT - Wyckoff Hosp,200927536,Manu,Brooklyn,Bushwick,40.70535,-73.91817,Private room,65,7,0,,,3,329 +31755223,Modern 3BR artsy Brooklyn duplex. New renovation,3042136,Jenni,Brooklyn,Carroll Gardens,40.6827,-73.99142,Entire home/apt,375,6,1,2019-04-28,0.41,3,7 +31756631,Private room in modern duplex,238111285,Leticia,Brooklyn,Bushwick,40.68542,-73.90952,Private room,45,2,1,2019-02-05,0.19,1,0 +31758029,"Color and light, East Village",2690800,Svetlana And Jimmy,Manhattan,East Village,40.7221,-73.98304,Entire home/apt,117,5,6,2019-03-24,1.22,1,0 +31758438,Hip Bushwick Room close to L train (A),238119405,Julia,Brooklyn,Bushwick,40.68219,-73.90737,Private room,48,1,18,2019-07-01,3.72,5,189 +31759087,Hip Bushwick Room close to L train (B),238119405,Julia,Brooklyn,Bushwick,40.68209,-73.90672,Private room,48,1,11,2019-06-20,1.98,5,166 +31759330,Hip Bushwick Room close to L train (C),238119405,Julia,Brooklyn,Bushwick,40.68161,-73.90618,Private room,53,2,10,2019-05-27,2.61,5,158 +31759409,conveniet access to NYC,63966717,Carol,Bronx,Belmont,40.85929,-73.89165,Private room,99,2,1,2019-03-11,0.25,2,0 +31759545,Hip-Beautiful Bushwick Room Close to L train (D),238119405,Julia,Brooklyn,Bushwick,40.68216,-73.90642,Private room,48,1,4,2019-04-21,0.73,5,166 +31759546,Cozy Upper West Side Apartment,160739637,Crystal,Manhattan,Upper West Side,40.80153,-73.9655,Entire home/apt,150,5,0,,,1,74 +31760403,1 JFK Layover - Express train to Manhattan,67746251,Gasminee,Queens,Ozone Park,40.68069,-73.8494,Private room,44,1,42,2019-06-28,8.03,4,32 +31760436,Columbia & CentralPark Private room!,124028462,Sergii,Manhattan,Harlem,40.80384,-73.95765,Private room,55,30,1,2019-03-01,0.23,3,353 +31760509,"Morningside Park, near Columbia U., private room",219505617,Karen,Manhattan,Harlem,40.80351,-73.95822,Private room,85,1,18,2019-06-25,3.62,1,92 +31760941,Private exquisite apartment with modern amenities,238118741,Idelsa,Bronx,Mott Haven,40.81132,-73.92037,Entire home/apt,115,3,19,2019-07-07,3.41,1,228 +31761090,Wall-size window Private Bedroom,238145460,Cindy,Brooklyn,Flatbush,40.63037,-73.95671,Private room,45,1,9,2019-06-24,1.72,1,129 +31761417,Large quiet apt. Right next to everything you need,123060492,DeShawn,Queens,Astoria,40.7679,-73.91764,Entire home/apt,75,5,2,2019-03-04,0.41,1,0 +31763495,Entire studio fully renovated,52577963,Mark,Queens,Woodhaven,40.69054,-73.84812,Entire home/apt,99,5,7,2019-06-11,1.62,6,319 +31764572,Modern living in semi-industrial setting,78326799,Patrick,Brooklyn,Gowanus,40.68289,-73.9878,Private room,80,1,2,2019-04-07,0.63,1,0 +31767505,Spacious Downtown Studio,56656728,Bret,Manhattan,Financial District,40.71115,-74.00834,Entire home/apt,209,3,12,2019-06-19,2.20,5,107 +31771914,AMAZING ENTIRE APT FOR Friends and Family,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69254,-73.90445,Entire home/apt,185,2,0,,,8,320 +31772667,A3 Delightful Budget private room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69213,-73.90248,Private room,65,2,15,2019-06-18,2.81,8,344 +31772802,A3 Excellent Budget Private Room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.6918,-73.90414,Private room,65,2,21,2019-05-22,3.84,8,321 +31773364,Spacious room with easy commute to Grand Central!,137358866,Kazuya,Queens,Woodside,40.74466,-73.909,Private room,38,30,0,,,103,244 +31773898,PRIME SOHO: Lovely Room With Closet on Prince St,236445157,Anna,Manhattan,SoHo,40.7276,-74.00275,Private room,80,180,1,2019-03-11,0.25,3,342 +31775512,"Private room with bathroom/ M, J, Z, G trains",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94043,Private room,75,30,0,,,10,364 +31787990,"Warm, quiet and spacious.",127583166,Maite,Manhattan,Washington Heights,40.83919,-73.94585,Private room,75,3,2,2019-02-12,0.41,2,0 +31794109,Adorable Hudson Yards Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.75194,-73.99501,Entire home/apt,243,30,0,,,232,1 +31795059,Loft on the Best Block of the Lower East Side,1533007,Sivan,Manhattan,Chinatown,40.71683,-73.99172,Entire home/apt,130,3,15,2019-06-19,3.04,1,15 +31795183,Bright Room in Bushwick,10512556,Julie,Brooklyn,Bushwick,40.70108,-73.92401,Private room,55,2,0,,,1,0 +31795680,Recently Renovated 2 Bed Apartment In Williamsburg,3659285,Moshe,Brooklyn,Williamsburg,40.70787,-73.95501,Entire home/apt,160,1,22,2019-06-25,4.49,1,237 +31796259,Luxury Studio in Prime Area,89896526,Scott,Manhattan,Financial District,40.71081,-74.00846,Entire home/apt,115,30,1,2019-03-05,0.24,1,4 +31796691,Spacious 2 bedroom apt in Bensonhurst - Sleeps 10,231212364,Kel,Brooklyn,Bensonhurst,40.60556,-73.99898,Entire home/apt,123,3,3,2019-07-04,1.06,2,147 +31797655,Spacious studio - 5 Mins to Times Square,37412692,Kim,Manhattan,Midtown,40.76697,-73.98176,Entire home/apt,105,30,0,,,4,339 +31799118,"3 BDR APT, ONLY 1 SUBWAY STOP TO MANHATTAN, 5 MIN!",217784241,Analia,Brooklyn,Williamsburg,40.71011,-73.96086,Entire home/apt,280,1,12,2019-06-20,3.21,4,250 +31799369,Private West Village Townhouse w/ Hot Tub,185049106,Natalia,Manhattan,West Village,40.73271,-74.00324,Entire home/apt,700,4,10,2019-06-01,2.56,1,127 +31799920,Best location Just 5 min to MANHATTAN,217784241,Analia,Brooklyn,Williamsburg,40.70999,-73.96097,Private room,70,1,33,2019-05-31,6.92,4,0 +31801234,MANHATTAN studio 10 minutes away from Central Park,238323020,Paul,Manhattan,Upper East Side,40.76672,-73.96111,Entire home/apt,129,1,23,2019-06-21,4.16,1,109 +31801375,East Flatbush,238321827,Denise,Brooklyn,East Flatbush,40.65057,-73.92383,Private room,37,1,51,2019-06-28,9.56,1,341 +31801631,Queen Master BR 5min Walk from Major Attractions 웃,238324936,Marcel,Manhattan,Hell's Kitchen,40.76315,-73.98711,Private room,150,1,4,2019-06-21,0.75,3,149 +31801816,Sparkling Clean BR in Unbeatable Location 웃,238324936,Marcel,Manhattan,Hell's Kitchen,40.76463,-73.98772,Private room,150,1,3,2019-03-07,0.56,3,152 +31802275,Coral Harlem Studio,8895249,Kenya,Manhattan,Harlem,40.82297,-73.93948,Private room,54,2,12,2019-06-26,2.83,1,129 +31802641,High Vibe Upper West,19755137,Beth,Manhattan,Upper West Side,40.77809,-73.97962,Entire home/apt,185,7,0,,,1,55 +31802796,Cozy apartment in the heart of NYC,30077950,Lea,Manhattan,East Village,40.73201,-73.98768,Entire home/apt,250,2,0,,,1,0 +31803169,Beautiful & Spacious APT / Large Living Room Area,80093359,Isabella,Brooklyn,Bushwick,40.6856,-73.91413,Entire home/apt,79,2,4,2019-06-11,0.86,2,0 +31803533,Beautiful Luxury Studio w/Exceptional Water View,147351617,Cem,Manhattan,Battery Park City,40.71085,-74.01801,Entire home/apt,200,2,17,2019-06-30,3.05,1,79 +31803703,COZY! PRIME LOCATION! REAL 2-BEDROOM!,238342493,George,Brooklyn,Cobble Hill,40.68846,-73.99557,Entire home/apt,250,2,19,2019-07-01,3.63,1,295 +31804149,Williamsburg - 1st stop out of Lower Manhattan!,109276977,Ernie,Brooklyn,Williamsburg,40.71033,-73.95868,Private room,59,1,1,2019-02-15,0.21,1,0 +31805784,Beautiful & Cozy - SoHo Studio,35486274,Evan,Manhattan,SoHo,40.72451,-74.00385,Entire home/apt,132,2,3,2019-05-06,0.73,1,0 +31805845,Cozy Room - Free Cleaning + WiFi - Quick Walk to L,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91229,Private room,34,30,0,,,9,196 +31806593,High ceilings private room with record player,191084919,Brian,Brooklyn,Bedford-Stuyvesant,40.68434,-73.93712,Private room,70,1,5,2019-06-30,1.97,1,0 +31806847,Lovely Room in Brooklyn,93690639,Teo,Brooklyn,Bensonhurst,40.61109,-74.00239,Private room,90,1,0,,,1,0 +31807013,Cuarto acogedor para gente que quiera disfrutar NY,238374006,César A.,Queens,Flushing,40.76398,-73.82426,Private room,40,2,1,2019-04-07,0.32,1,153 +31809360,#NycArtBNB Luxury West Village 1 Bedroom,25169596,Jessica,Manhattan,West Village,40.73304,-74.00059,Entire home/apt,250,1,21,2019-06-30,4.34,2,271 +31809829,Beautiful Room in Bushwick,11672284,Hea,Brooklyn,Bushwick,40.70471,-73.92477,Private room,89,2,0,,,2,0 +31809918,Pirouette (Private Room),51596474,Antony,Brooklyn,Gravesend,40.58421,-73.97104,Private room,35,5,1,2019-02-15,0.21,12,0 +31814773,Amazing Private room near Central Park,124028462,Sergii,Manhattan,Harlem,40.80515,-73.95651,Private room,59,30,1,2019-03-17,0.26,3,332 +31815470,Crown heights apt,44801404,Idris,Brooklyn,Crown Heights,40.66897,-73.92848,Private room,130,14,0,,,1,365 +31815508,Private room with a great location in Manhattan,124028462,Sergii,Manhattan,Harlem,40.80492,-73.95817,Private room,59,30,2,2019-05-13,0.50,3,333 +31818244,Large and Comfy at Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.65952,-73.95526,Private room,50,1,0,,,3,305 +31818320,Private room in center of Manhattan I,39528519,Max,Manhattan,Lower East Side,40.70988,-73.98686,Private room,73,15,0,,,28,185 +31818460,Entire 3rd Floor w/2 rooms of Authentic Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69254,-73.93823,Entire home/apt,400,2,0,,,6,0 +31818771,Wonderful private room near Two Bridges II,39528519,Max,Manhattan,Lower East Side,40.70961,-73.98679,Private room,73,15,0,,,28,185 +31822089,Artist’s apartment in Harlem!,552627,Brandy,Manhattan,Harlem,40.82458,-73.93883,Private room,39,2,0,,,2,315 +31823258,Serenity in the Gardens,3443943,Nicole And Joe,Brooklyn,Carroll Gardens,40.6766,-73.99855,Private room,225,3,1,2019-05-09,0.48,1,178 +31823510,Park Slope apartment in the heart of it all.,34097291,Andrew,Brooklyn,South Slope,40.66626,-73.98127,Entire home/apt,275,1,0,,,1,0 +31823779,Sunny bedroom in Greenpoint/Williamsburg Brooklyn.,43976480,Karina,Brooklyn,Greenpoint,40.72174,-73.94802,Private room,65,1,32,2019-07-01,8.50,1,22 +31823858,**BROOKLYN BLUE**MODERN LUXE STUDIO SUITE,198674748,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.6615,-73.95307,Entire home/apt,126,3,23,2019-06-26,4.51,1,6 +31824097,Large Private Room with office space,193725343,Manon,Brooklyn,Bedford-Stuyvesant,40.68809,-73.95855,Private room,63,1,3,2019-06-28,0.74,1,44 +31824803,Cozy and Spacious 2 bedroom Apartment,238496151,Stephany,Brooklyn,Bedford-Stuyvesant,40.69569,-73.94792,Entire home/apt,165,5,8,2019-06-16,2.67,1,81 +31828528,Amazing Room in Triplex Loft,123672154,Abdes,Brooklyn,Greenpoint,40.73392,-73.95203,Private room,65,1,3,2019-03-13,0.55,2,0 +31828585,"Large Private Room in Modern, Rustic 2BR Apartment",61278632,Owen,Manhattan,Harlem,40.82049,-73.95268,Private room,50,3,3,2019-07-01,0.74,1,7 +31830652,NEW YORK CITY Manhattan Penthouse Central Park,8849869,Tatiana & Tyson,Manhattan,Upper West Side,40.79118,-73.97091,Entire home/apt,110,30,1,2019-05-19,0.59,1,3 +31832773,Great access/2min! U can use 5 lines(EFMR7) !,200239515,Shogo,Queens,Woodside,40.74578,-73.89328,Private room,40,30,1,2019-03-16,0.26,15,1 +31832851,Amazing Townhouse Prewar Duplex @ Lex Ave&79th St!,235559424,Shmuel Z,Manhattan,Upper East Side,40.77567,-73.95961,Entire home/apt,495,2,15,2019-06-24,3.31,1,156 +31832966,Garden apartment in the heart of Gramercy,236148005,Linus,Manhattan,Flatiron District,40.74158,-73.98593,Entire home/apt,200,2,8,2019-07-01,1.95,1,34 +31834008,"PLEASE READ LISTING BEFORE BOOKING +Suite 10017",231510804,Sharon,Brooklyn,Canarsie,40.63502,-73.88834,Entire home/apt,130,1,57,2019-07-08,10.36,1,337 +31834161,Great Access! 2min frm station U can use 5 lines!!,200239515,Shogo,Queens,Woodside,40.74438,-73.89161,Private room,40,30,1,2019-03-03,0.23,15,44 +31834190,Small studio in Queens,18957069,Natalia,Queens,Woodside,40.74734,-73.89735,Entire home/apt,95,2,0,,,1,17 +31835260,Downtown Modern 2 bedroom with Views!,22100836,Hana,Manhattan,Gramercy,40.73782,-73.98547,Entire home/apt,218,1,6,2019-05-12,1.49,3,0 +31835498,Large Private Bedroom with a High-rise View in NYC,22100836,Hana,Manhattan,Flatiron District,40.73943,-73.98532,Private room,65,1,14,2019-06-02,2.98,3,0 +31835627,2 minutes to subway Room with Terrace and sofa,152895936,Matsuko,Queens,Elmhurst,40.73538,-73.87892,Private room,34,28,0,,,1,0 +31835917,Chic and cozy,26317294,Denise,Manhattan,Upper West Side,40.77796,-73.98213,Private room,95,275,0,,,1,365 +31836311,New(2015) Room & easy commute to Manhattan 35min,19303369,Hiroki,Queens,Elmhurst,40.74001,-73.87629,Private room,32,29,1,2019-03-31,0.30,37,31 +31836703,Amazing and spacius room in Bed-Stuy Brooklyn,6030450,Joana,Brooklyn,Bedford-Stuyvesant,40.68442,-73.92441,Private room,80,3,6,2019-07-01,1.41,1,179 +31837233,Beautiful room in Bushwick,11672284,Hea,Brooklyn,Bushwick,40.70526,-73.92446,Private room,250,2,0,,,2,97 +31837921,PRIVATE duplex by trains in the heart of Bushwick,46072382,Abigail,Brooklyn,Bushwick,40.69863,-73.934,Entire home/apt,107,4,1,2019-03-01,0.23,1,0 +31838301,Private room in Beautiful Bed-Stuy,14743889,Kellie,Brooklyn,Bedford-Stuyvesant,40.68427,-73.9546,Private room,46,1,18,2019-07-01,3.33,1,16 +31838338,"ingefära hus! Two bedroom apt in Williamsburg, BK",179679,Ginger,Brooklyn,Williamsburg,40.71144,-73.95576,Entire home/apt,175,2,4,2019-05-19,0.99,3,14 +31839994,Private house with backyard overlooking park.,40160805,Cherokee,Queens,Flushing,40.75406,-73.80156,Entire home/apt,159,3,1,2019-06-30,1,1,78 +31845412,Specious 4-people room in nice surrounding,27974952,Alex,Brooklyn,East Flatbush,40.64434,-73.9504,Shared room,31,30,0,,,7,365 +31848816,Luxury Large 2-Bedroom Apartment in Hot Astoria,238685151,Damir&Sanela,Queens,Astoria,40.76595,-73.90829,Entire home/apt,115,1,30,2019-07-06,5.81,1,85 +31850283,Cozy room with nice view.(20mn to Times Square).,94049573,Anthony,Manhattan,East Harlem,40.81339,-73.93617,Private room,75,1,16,2019-07-01,4.80,1,199 +31852479,Cozy and warm private room,120974332,Jessi,Manhattan,East Harlem,40.79568,-73.93368,Private room,50,2,6,2019-06-18,1.10,2,5 +31852788,Tribeca Bedroom/Bathroom in Fabulous Penthouse,49725053,Steve,Manhattan,Tribeca,40.72154,-74.00664,Private room,149,1,6,2019-06-05,1.70,1,336 +31852940,Private Room in LES,15402077,Brijette,Manhattan,East Village,40.72043,-73.97923,Private room,84,2,0,,,1,0 +31853354,Room with private bath and shower in boho apt,12470243,Nicolina,Brooklyn,Bushwick,40.69713,-73.93035,Private room,50,15,0,,,1,0 +31854564,Three Bedroom / 2.5 Restroom In Warm Relaxing Home,238733096,Roy,Queens,Richmond Hill,40.68378,-73.83136,Entire home/apt,175,2,7,2019-06-23,2.88,2,345 +31856192,"Pvt Bath, Parking/Bkft - ""Suite Piece of Heaven""",61875246,Carolyn,Queens,Whitestone,40.7866,-73.82207,Private room,65,1,14,2019-06-30,4.77,2,5 +31856243,Luxury Highrise with Golf Simulator/Sauana Mry Hil,238748653,Sam,Manhattan,Murray Hill,40.74661,-73.97195,Private room,90,7,5,2019-05-15,1.06,1,8 +31857171,New York Apartment in a Beautiful Neighborhood,7700456,Seema,Manhattan,Washington Heights,40.85548,-73.93741,Entire home/apt,89,7,0,,,1,1 +31857472,Hamilton Studio. 2Queen. priv bath. kitchenette,238750007,Hamilton,Manhattan,Harlem,40.82335,-73.94939,Entire home/apt,145,4,20,2019-07-02,3.66,3,310 +31858749,"Quiet, comfortable & bright apt in East Village",2582224,Daniel,Manhattan,East Village,40.72749,-73.98674,Entire home/apt,150,5,1,2019-04-30,0.43,1,249 +31859521,Home Away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.69472,-73.89663,Private room,50,2,18,2019-06-07,3.60,2,127 +31859735,Simple Reliable & Convenient 1Bdrm Upper East Side,68717996,David,Manhattan,Upper East Side,40.78136,-73.94709,Private room,87,4,11,2019-07-05,2.02,1,46 +31859909,Beautiful room with view in newly-renovated house,5704932,Victor,Bronx,Fordham,40.86643,-73.88895,Private room,65,2,7,2019-04-01,1.28,3,110 +31861155,Cozy 1 BR in hip Crown Heights,7261749,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95421,Private room,30,4,2,2019-07-03,0.81,1,6 +31861671,Hamilton Loft. 2Queen. priv bath. full kitchen,238750007,Hamilton,Manhattan,Harlem,40.82163,-73.94757,Entire home/apt,145,4,17,2019-07-01,3.09,3,265 +31861939,Cozy Heart of Gold Near Times Square Central Park!,155691688,Bonnie,Manhattan,Hell's Kitchen,40.76655,-73.9891,Entire home/apt,225,1,19,2019-07-06,5.64,1,50 +31863369,"Eh it's an apartment, control yourself",209940785,Stephen,Manhattan,Harlem,40.82337,-73.95127,Shared room,100,1,1,2019-02-14,0.21,1,90 +31864884,Elegant &Classical. 30 mins to midtown Manhattan!,56403037,Jane,Queens,Woodhaven,40.68793,-73.84975,Private room,42,1,16,2019-06-24,3.36,3,121 +31866810,Brooklyn Best Location! Granite Prospect! Doorman!,236671534,Eva,Brooklyn,Brooklyn Heights,40.69653,-73.99541,Entire home/apt,75,3,1,2019-02-20,0.21,1,94 +31866909,Private Gramercy studio btwn downtown & midtown!,169318289,Marla,Manhattan,Gramercy,40.73572,-73.98017,Entire home/apt,90,1,11,2019-06-23,2.31,1,89 +31871475,"Smart Midtown 1BR w/Private Roofdeck, near C.Park by Blueground",107434423,Blueground,Manhattan,Midtown,40.76175,-73.97592,Entire home/apt,267,30,0,,,232,188 +31873616,New Renovated Studio~Prime Upper East~W/D,162280872,Izi,Manhattan,Upper East Side,40.77598,-73.94904,Entire home/apt,140,30,1,2019-04-19,0.37,13,276 +31874576,Chic Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79884,-73.95983,Private room,60,30,2,2019-06-16,1.46,32,337 +31875616,Cozy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79966,-73.96059,Private room,60,30,1,2019-06-09,1,32,333 +31875688,East Village Loft,238779678,Dustin,Manhattan,East Village,40.72631,-73.98876,Private room,73,30,1,2019-04-30,0.43,9,332 +31875827,Artsy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80014,-73.96132,Private room,60,30,0,,,32,347 +31876014,Modern Bedroom in the Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.7988,-73.96096,Private room,60,30,0,,,32,342 +31876398,Airy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79821,-73.9609,Private room,60,30,0,,,32,356 +31876569,Greenpoint Getaway,157896836,Emily,Brooklyn,Greenpoint,40.72115,-73.94841,Private room,48,1,1,2019-02-10,0.20,1,0 +31876645,Artistic Private BR in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79971,-73.96075,Private room,60,30,0,,,32,364 +31876649,Charming Greenpoint's Bedroom,2559194,Francesca,Brooklyn,Greenpoint,40.72731,-73.95482,Private room,100,14,0,,,1,188 +31876724,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79887,-73.95968,Private room,60,30,1,2019-06-21,1,32,342 +31877020,Calming Private BR in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79959,-73.95924,Private room,60,30,1,2019-06-16,1,32,346 +31877100,Stylish Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79891,-73.96116,Private room,60,30,1,2019-06-03,0.83,32,325 +31877537,Pastel Dream Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80044,-73.95953,Private room,60,30,0,,,32,317 +31877719,"Clean, minimally furnished room in huge apartment",2970272,Gretchen,Brooklyn,Crown Heights,40.67428,-73.9481,Private room,80,2,0,,,1,0 +31877755,Modern Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79823,-73.96064,Private room,60,30,1,2019-06-25,1,32,341 +31877856,Vibrant Private Bedroom in UWS 107,238321374,Eyal,Manhattan,Upper West Side,40.80008,-73.95926,Private room,60,30,1,2019-06-16,1,32,365 +31877977,Stunning Private Bedroom in UWS 107,238321374,Eyal,Manhattan,Upper West Side,40.79881,-73.9596,Private room,60,30,0,,,32,329 +31878663,Stylish Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79852,-73.96091,Private room,60,30,0,,,32,317 +31878924,Dreamy Private Bedroom Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79896,-73.95995,Private room,60,30,0,,,32,317 +31878988,Beautiful Garden Apartment Bedford Ave. stop on L,30214212,Michael,Brooklyn,Williamsburg,40.71509,-73.958,Entire home/apt,100,28,3,2019-05-30,0.90,1,258 +31879035,Bright Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79839,-73.96126,Private room,60,30,0,,,32,317 +31879273,Renovated Studio in the heart of Manhattan,105344359,Michelle,Manhattan,Midtown,40.75408,-73.96831,Entire home/apt,120,2,4,2019-03-31,0.77,1,0 +31879380,Peaceful room in cool area close to G/7/Ferry/JFK,80500739,Janet,Brooklyn,Greenpoint,40.7372,-73.95299,Private room,115,1,19,2019-07-06,5.33,1,345 +31879887,Spacious ground floor in Brooklyn town house,238894847,Ofrit,Brooklyn,Bedford-Stuyvesant,40.68636,-73.95577,Entire home/apt,200,2,11,2019-07-01,3.33,1,269 +31881052,Park Slope Villa,238953933,Claudia,Brooklyn,South Slope,40.66371,-73.9876,Entire home/apt,110,1,48,2019-06-23,9.93,1,250 +31881336,New large beautiful room with private bathroom,5704932,Victor,Bronx,Fordham,40.86566,-73.88748,Private room,65,2,6,2019-06-25,1.18,3,77 +31881525,Amazing Private Room w/ Bunk Bed - Nearby Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68439,-73.93753,Private room,57,2,17,2019-06-28,3.31,3,146 +31881759,New 1BR w/ King Bed. Subway close. B in NYC 7min,799317,Michael,Brooklyn,Williamsburg,40.71571,-73.94722,Entire home/apt,175,3,1,2019-02-11,0.20,1,0 +31881804,Beautiful Spacious Room w/ Queen Bed - Near Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68502,-73.93893,Private room,44,2,26,2019-06-25,4.94,3,118 +31881815,Quiet Bedroom in Gorgeous Upper East Side Loft,29394295,Samara,Manhattan,East Harlem,40.7882,-73.9405,Private room,80,3,0,,,1,0 +31882099,Comfy Private Room w/ Full Bed - Nearby Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68354,-73.9378,Private room,44,2,13,2019-06-26,2.58,3,162 +31883012,private room with private bathroom to MANHATTAN,24294060,Simon,Queens,Elmhurst,40.7337,-73.88363,Private room,80,3,0,,,1,364 +31883127,✴NEWLY RENOVATED✴ 2 BDR | SLEEPS 4 @ BROOKLYN,6833598,Timothy,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91899,Entire home/apt,99,2,13,2019-07-05,3.98,1,182 +31883238,Living In Art,238975559,Antoaneta,Queens,Woodside,40.75413,-73.90204,Entire home/apt,250,2,12,2019-07-07,2.81,1,137 +31883514,"♥Private-Keyed Room #2 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73697,-73.99563,Private room,99,12,3,2019-02-11,0.60,4,19 +31883774,"♥Private-Keyed Room #1 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73894,-73.9952,Private room,99,10,1,2019-02-17,0.21,4,31 +31884029,February room available in cozy Park Slope Apt.,140338526,Kenneth,Brooklyn,Park Slope,40.67042,-73.98508,Private room,50,5,0,,,1,0 +31884434,Studio B on Atlantic Ave,139838320,Bismillah,Brooklyn,Bedford-Stuyvesant,40.67991,-73.95168,Entire home/apt,86,2,19,2019-06-25,3.54,2,284 +31884652,Heart of Time Square w/ Spectacular View 3BR 2BA,235774051,Satoh,Manhattan,Theater District,40.75917,-73.98246,Entire home/apt,519,2,10,2019-06-26,1.86,1,165 +31884808,Woodside with a view (9 minutes from midtown),49289095,John,Queens,Woodside,40.74395,-73.89984,Private room,75,1,0,,,1,138 +31885300,King Size Bed: Spacious BR 25 minutes to city,96810536,Chandtisse,Brooklyn,Gowanus,40.66781,-73.99345,Private room,65,2,22,2019-07-06,4.23,3,156 +31885563,Close to Manhattan! Comfortable area to stay♪,200239515,Shogo,Queens,Sunnyside,40.73858,-73.92555,Private room,37,30,1,2019-05-20,0.60,15,0 +31885791,Room in East Harlem,8754633,Aleksei,Manhattan,East Harlem,40.79865,-73.93638,Private room,65,2,8,2019-06-30,2.79,1,8 +31885820,"Private bathroom/bedroom, easy access to JFK/LGA",14501609,Zebin,Queens,Richmond Hill,40.70203,-73.82841,Private room,40,2,18,2019-06-14,3.44,1,30 +31885987,Wonderful Charming Bedroom with Amazing NYC Views,1340740,Brian,Brooklyn,South Slope,40.66881,-73.98737,Private room,65,7,0,,,1,19 +31885991,Full size bed suite.,105762561,Kim,Queens,Jamaica,40.69102,-73.78438,Private room,65,2,2,2019-04-29,0.75,3,319 +31886239,beautiful 1 bedroom apt,239004977,Jess,Queens,Queens Village,40.72684,-73.74896,Private room,80,1,0,,,1,0 +31886403,"Large, sunny room with private bath.",238955568,George,Brooklyn,Kensington,40.63581,-73.96977,Private room,40,2,20,2019-06-10,3.80,1,6 +31886891,A3 Cozy private room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69217,-73.90396,Private room,65,2,11,2019-06-20,2.24,8,345 +31888319,Gorgeous big room with Hudson river view,22188,Laura,Manhattan,Upper West Side,40.78085,-73.98664,Private room,130,2,0,,,2,154 +31890488,"3 mins walk to subway , safe neighborhood , clean",239035419,Maetika,Queens,Woodside,40.74362,-73.89158,Private room,70,1,0,,,1,5 +31893504,Lovely Historic Garden Level Apartment,192741854,Bethany,Brooklyn,Bedford-Stuyvesant,40.68436,-73.93564,Entire home/apt,120,2,17,2019-06-23,3.75,2,214 +31894643,Spacious 1BR with terrace in the heart of Brooklyn,27547703,Brent,Brooklyn,Brooklyn Heights,40.69712,-73.99307,Entire home/apt,110,2,2,2019-06-09,0.53,1,0 +31894855,Best Upper West Side Two Bedroom Apartment,320428,David,Manhattan,Upper West Side,40.79095,-73.97291,Entire home/apt,142,7,5,2019-06-08,1.17,1,214 +31895547,Private room and bath 10 minutes to Manhattan,15437944,Chelsea,Brooklyn,Williamsburg,40.70703,-73.95396,Private room,100,2,0,,,1,0 +31895980,"2 Bedroom modern apartment, trains nearby, a GEM!",33614329,Walter,Brooklyn,Bushwick,40.69549,-73.93006,Entire home/apt,159,1,12,2019-06-29,3.03,4,259 +31896339,My cozy room perfect for Manhattan visitors,239088720,Stephanie,Bronx,Throgs Neck,40.82688,-73.81899,Private room,40,3,11,2019-05-25,2.06,1,0 +31897516,Hamilton Suite. 4Queen. 2rms. priv bath. kitchen,238750007,Hamilton,Manhattan,Harlem,40.82292,-73.94802,Entire home/apt,199,2,0,,,3,0 +31898440,"Well-decorated room in clean, modern apartment",80111968,Joe,Brooklyn,Downtown Brooklyn,40.69447,-73.98252,Private room,49,3,1,2019-02-17,0.21,1,0 +31898478,Skylit Bedroom In Brooklyn,3734323,Colin,Brooklyn,Bushwick,40.68629,-73.91245,Private room,49,2,15,2019-06-22,2.80,3,0 +31898581,THE BEST STASH SPOT,181346298,Tyqua,Manhattan,Lower East Side,40.71923,-73.97972,Private room,75,1,3,2019-06-30,2.81,1,364 +31898630,Bushwick Apartment,239116505,Alexis,Brooklyn,Bushwick,40.69945,-73.93543,Private room,38,3,1,2019-02-12,0.20,1,0 +31898844,Eddies place #2,98214533,Edwin’S Place,Staten Island,Huguenot,40.53982,-74.1728,Entire home/apt,75,2,20,2019-07-07,4.38,2,229 +31900179,Eddies place #3,98214533,Edwin’S Place,Staten Island,Huguenot,40.53987,-74.17258,Entire home/apt,100,2,11,2019-07-06,2.09,2,259 +31900259,"Nice place,where you can be comfortable",207913076,Fabrice,Brooklyn,Brownsville,40.66779,-73.91676,Private room,70,2,3,2019-05-16,0.64,1,325 +31900266,"Cozy Brownstone Garden Apt: Bed Stuy, Brooklyn",8803552,Ursula,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94458,Private room,95,3,0,,,1,179 +31901657,Best Stay in Clean Brand New Penthouse Apartment,161769990,William,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95233,Private room,50,5,2,2019-03-20,0.54,2,0 +31901835,The Tree of Life Community,49988341,Chris,Bronx,Wakefield,40.89682,-73.84318,Private room,41,1,0,,,1,163 +31903229,Cozy Sunlit Bedroom in heart of Williamsburg,598896,Su,Brooklyn,Williamsburg,40.71798,-73.95983,Private room,90,2,0,,,2,184 +31904037,"Bright, Clean and Modern Williamsburg Studio",10914119,Jules,Brooklyn,Williamsburg,40.71747,-73.96142,Entire home/apt,190,4,4,2019-05-31,1.05,1,187 +31904156,Fantastic Private Bedroom. Great Views & Location.,239168415,Christine,Manhattan,Financial District,40.70493,-74.0102,Private room,119,3,4,2019-05-10,1.15,1,26 +31904811,"Big Cozy room in Greenpoint, 5 mins from G train.",213760419,Ken,Brooklyn,Greenpoint,40.73104,-73.95097,Private room,110,2,5,2019-06-24,1.61,1,82 +31905531,Cozy Studio Near Central Park,179136567,Ro,Manhattan,East Harlem,40.79423,-73.94741,Entire home/apt,185,1,0,,,1,0 +31906094,Fabulous 1 Bedroom in the Heart of Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73202,-73.95595,Entire home/apt,68,1,20,2019-06-01,3.82,6,0 +31906580,Bright High Ceiling Bedroom in East Williamsburg,2707591,Lívia,Brooklyn,Williamsburg,40.70754,-73.94228,Private room,95,1,6,2019-07-01,1.28,1,200 +31907710,"One bedroom Apt in Manhattan, East Village",9736997,Esteban,Manhattan,East Village,40.72845,-73.98158,Entire home/apt,113,1,20,2019-06-20,3.85,1,96 +31909528,The clean separate studio in New York,51186155,Cherry,Queens,Flushing,40.73182,-73.79505,Entire home/apt,45,1,51,2019-07-04,9.39,1,49 +31909623,Wyndham Midtown 45 New York City 1 BR Apt w/View,96086378,Ashley,Manhattan,Midtown,40.75342,-73.97135,Entire home/apt,699,1,1,2019-04-23,0.39,2,333 +31913609,Stuy Heights Brownstone Passive House Garden Unit,21019302,Bobby And Ruth,Brooklyn,Bedford-Stuyvesant,40.68489,-73.92087,Entire home/apt,200,2,15,2019-07-05,3.69,1,300 +31916725,EMPIRE ST VIEW>Luxury 3BR 2BA BALCONY High fl>Gym,129079212,Dana,Manhattan,Midtown,40.74829,-73.98326,Entire home/apt,799,5,3,2019-06-04,1.73,1,346 +31916931,Marco and Fabio,239276795,FabioeMarco,Manhattan,Washington Heights,40.83794,-73.94256,Private room,42,3,9,2019-04-28,2.00,1,1 +31918252,Private Bedroom & Living Room in Sunny Apt,53300414,Monica,Brooklyn,Gowanus,40.66938,-73.99164,Private room,95,1,4,2019-06-16,0.93,2,59 +31919501,"ALL NEW LUXURY APT- 1ST FL 4BR/2 BTH,10MIN-JFK/LGA",215385823,Az,Queens,Jamaica Hills,40.71378,-73.80292,Entire home/apt,275,1,11,2019-07-06,7.50,2,280 +31919636,"LUMINOUS, COZY BR w/ personal BA + entrance in BK",29301386,Saya,Brooklyn,Williamsburg,40.70333,-73.94913,Private room,85,2,16,2019-07-01,3.27,1,11 +31919779,Comfortable 1.5 Bedroom With Private Back Patio,9472223,Arthur,Manhattan,Morningside Heights,40.80636,-73.9578,Entire home/apt,79,3,0,,,3,0 +31920075,Clean and quiet room in home,15977,Alicia,Manhattan,Harlem,40.80385,-73.95294,Private room,60,7,6,2019-05-16,1.32,1,254 +31920843,"Cute Apartment in Heart of East Village, Manhattan",237718748,Cassandra,Manhattan,East Village,40.72742,-73.98235,Private room,90,5,1,2019-03-23,0.28,1,0 +31924097,Authentic Midtown Manhattan Studio,225011474,Vicente,Manhattan,Midtown,40.74595,-73.98439,Entire home/apt,250,1,41,2019-06-23,7.64,1,125 +31925075,Sweet Quiet Spacious Room Brooklyn,239351588,A,Brooklyn,Crown Heights,40.66835,-73.93112,Private room,75,1,12,2019-05-02,2.54,1,0 +31925535,Luxury Duplex with large loft space and Terrace,1746041,Jean-Yves,Brooklyn,Greenpoint,40.72242,-73.95076,Entire home/apt,450,3,5,2019-06-13,1.06,1,43 +31926655,SPACIOUS- 3 Bedroom Harlem gem 5 mins from train,115075522,Christian,Manhattan,Harlem,40.82656,-73.94648,Entire home/apt,225,1,13,2019-07-01,3.22,1,83 +31927597,Large Room in Prime Bushwick Neighborhood,239375612,Rebekah,Brooklyn,Bushwick,40.70455,-73.92565,Private room,30,1,3,2019-03-31,0.62,1,0 +31928439,Private Pod in the heart of Brooklyn,384430,Eric,Brooklyn,Midwood,40.62583,-73.96237,Private room,120,30,0,,,1,252 +31928508,Modern Private room in Hell's kitchen- times Squar,239383641,Jc,Manhattan,Hell's Kitchen,40.76474,-73.98924,Private room,80,1,30,2019-06-29,5.73,1,183 +31929176,Exposed Brick Gem in Bklyn~Close To Manhattan,137725101,Wayne Keith,Brooklyn,Crown Heights,40.66997,-73.93221,Entire home/apt,100,2,0,,,1,12 +31929350,LINCOLN CENTER / 2BED 2BATH,131647128,Emily,Manhattan,Upper West Side,40.77388,-73.98798,Entire home/apt,275,30,0,,,25,329 +31929437,Upscale & Modern Duplex Apartment Sleeps 8,183886601,Lee,Manhattan,Inwood,40.86763,-73.92259,Entire home/apt,175,30,1,2019-03-18,0.27,2,8 +31929578,UPPER WEST SIDE/ 2BED 2BATH / RIVER VIEW,131647128,Emily,Manhattan,Upper West Side,40.77537,-73.98938,Entire home/apt,300,30,0,,,25,288 +31929775,CITY VIEW/ 2BED 2BATH/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77438,-73.98717,Entire home/apt,300,30,0,,,25,341 +31929849,Your own entire private place in BROOKLYN NY :),7958766,Sammy,Brooklyn,Bath Beach,40.59988,-74.00415,Entire home/apt,99,2,17,2019-06-30,3.78,1,20 +31930706,Beautiful apartment in Gravesend(Girls share room),51596474,Antony,Brooklyn,Gravesend,40.58737,-73.96882,Shared room,20,7,2,2019-04-21,0.56,12,0 +31931117,Beautiful Renovated 1-Bed in Park Slope Brownstone,815436,Ray,Brooklyn,Park Slope,40.67364,-73.97954,Entire home/apt,135,2,33,2019-07-06,6.31,1,9 +31931371,"★Clean, Private Bedroom in Little Italy/Chinatown★",19408182,Drew,Manhattan,Little Italy,40.71947,-73.99723,Private room,120,3,3,2019-06-15,0.70,1,10 +31932152,An Unbeatable Cozy 3 Bedroom Apartment.,57885474,Shully'S,Bronx,Wakefield,40.89702,-73.85723,Entire home/apt,289,2,14,2019-07-07,2.96,2,356 +31932642,Spacious and convenient room at Hamilton Heights!,20181084,Farouk,Manhattan,Harlem,40.82441,-73.95323,Private room,60,3,7,2019-05-25,2.16,1,199 +31932872,Garden Oasis in Brooklyn Brownstone 2mins to Train,239427202,Maudry-Beverley,Brooklyn,Bedford-Stuyvesant,40.67932,-73.94741,Entire home/apt,160,2,22,2019-07-07,4.71,1,289 +31933373,The Ideal Vacation Home in Brooklyn:,78643953,Daniel,Brooklyn,Bushwick,40.69029,-73.91533,Entire home/apt,149,3,19,2019-07-08,4.52,2,231 +31934408,Newly Renovated 2 Br 7min LGA/JFK/7 mile Midtown,234396332,Joy,Queens,East Elmhurst,40.75712,-73.8874,Entire home/apt,99,1,19,2019-07-07,4.01,2,143 +31935427,Cozy Studio in East Village,1919392,Demi,Manhattan,East Village,40.72998,-73.98071,Entire home/apt,100,1,11,2019-06-24,2.13,1,0 +31935664,Luxury Private Bed Same Street As Subway!,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67895,-73.91077,Private room,75,1,15,2019-05-09,3.06,4,52 +31936078,Midtown sleep space,86078176,Nicole,Manhattan,Hell's Kitchen,40.76243,-73.98621,Private room,120,2,0,,,1,0 +31946382,LARGE 3Br Williamsburg Apt Mins from Manhattan,239517667,George,Brooklyn,Williamsburg,40.71007,-73.95136,Entire home/apt,199,2,20,2019-06-23,3.73,1,61 +31946864,Sweet Private Room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76295,-73.98866,Private room,70,1,30,2019-06-10,6.08,2,193 +31947104,EMPIRE COZY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7549,-73.99679,Private room,299,1,0,,,30,363 +31947645,Brodway- Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75628,-73.99643,Private room,299,1,0,,,30,365 +31947991,"Bright room in huge, dog-friendly apt w/ balcony",4094038,Alex,Brooklyn,Williamsburg,40.71197,-73.94223,Private room,75,2,16,2019-06-06,4.29,4,25 +31948183,Stylish Bushwick apartment with private backyard,12166574,Jordy,Brooklyn,Bushwick,40.70144,-73.92662,Entire home/apt,120,2,4,2019-05-28,0.85,1,14 +31950082,"Large Remodeled Home in Red Hook, Brooklyn, NY",6902218,Christele,Brooklyn,Red Hook,40.67697,-74.00993,Entire home/apt,250,3,0,,,1,1 +31950380,Super cozy private room with own bathroom,195654382,Gul,Brooklyn,Sheepshead Bay,40.58508,-73.93801,Private room,60,1,4,2019-07-06,0.90,1,77 +31950761,Private Room 2 Blocks From Prospect Park,67384934,Ifrat,Brooklyn,Flatbush,40.65246,-73.96046,Private room,75,2,4,2019-05-19,1.40,1,5 +31950840,LUX 2 Bedroom Sleep 6 City Center Private Deck,237250378,Jeff,Manhattan,Kips Bay,40.7436,-73.98165,Entire home/apt,276,3,12,2019-06-07,2.42,1,277 +31950886,Small studio at the heart of Little Italy,22337277,Zoey,Manhattan,Little Italy,40.71839,-73.99729,Entire home/apt,130,13,3,2019-05-07,1.32,1,20 +31952771,Sunny 1 bedroom w/private half bath!,89181972,Lexx,Bronx,Bronxdale,40.85646,-73.86813,Private room,50,1,14,2019-07-05,2.96,1,206 +31953043,Lincoln Center Stunning One Bedroom,239571340,Alice,Manhattan,Hell's Kitchen,40.76516,-73.99205,Private room,180,1,0,,,1,83 +31953973,Luxury 1 Bedroom -Midtown/Times Square/Centralpark,37412692,Kim,Manhattan,Midtown,40.76467,-73.98277,Entire home/apt,115,30,0,,,4,362 +31954104,"Best Location, Best Roof!",17062221,Vanessa,Manhattan,Kips Bay,40.73935,-73.98025,Entire home/apt,260,3,6,2019-06-03,1.31,2,173 +31954232,LOCATION!!!!Beautiful 2 bedrooms appartement !!!,24425582,Artur,Brooklyn,Williamsburg,40.71301,-73.95845,Entire home/apt,128,2,13,2019-06-23,2.50,1,27 +31955252,Parlour Room Central Park/ Columbia University,22023754,Joshua,Manhattan,Harlem,40.80725,-73.95471,Private room,75,2,1,2019-06-22,1,1,22 +31956393,Cozy Room in Hamilton Heights R3,158054102,Beverly,Manhattan,Harlem,40.83026,-73.94455,Private room,60,2,1,2019-06-23,1,3,71 +31956547,Your Private Place in a Cozy Casa,135858587,Daniel,Brooklyn,Crown Heights,40.673,-73.95043,Private room,70,1,8,2019-07-05,2.53,1,75 +31956965,Bienvenue à la maison,239605688,Sue,Manhattan,Upper East Side,40.76882,-73.96862,Entire home/apt,150,1,0,,,1,0 +31957975,"ENTIRE apt, 2 Bdr,Commercial Area,Private Entrance",236334741,Wendy,Staten Island,Rosebank,40.61588,-74.06711,Entire home/apt,100,1,47,2019-06-23,9.10,1,151 +31959359,Cozy Room for Rent in Fort Greene/Clinton Hill,26923225,Meg,Brooklyn,Clinton Hill,40.69462,-73.97006,Private room,36,28,2,2019-03-25,0.46,1,0 +31961126,"Private Apartment/4 Guests +Nr Beach&JFK w/Parking",209374833,Candia,Queens,Edgemere,40.59555,-73.76942,Entire home/apt,99,3,5,2019-06-14,3.41,2,246 +31961731,"New York City, Midtown 2 Bedrooms, Sleeps 6",239644931,Tonya,Manhattan,Kips Bay,40.73972,-73.98412,Private room,355,2,6,2019-03-31,1.13,1,312 +31963324,New Luxury Doorman Apartment,239142480,Lucas,Manhattan,Chinatown,40.71416,-73.99161,Private room,75,1,0,,,1,0 +31963704,Friendly space!,104859044,Shiya,Brooklyn,Crown Heights,40.66566,-73.93698,Private room,35,2,7,2019-03-26,1.40,1,0 +31964005,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,15652930,Ferhat,Manhattan,Harlem,40.81252,-73.95096,Entire home/apt,211,3,21,2019-07-04,4.47,1,30 +31964642,"Spacious room (2min to subway, 25min to Manhattan)",12872707,Elizaveta,Brooklyn,Bedford-Stuyvesant,40.67898,-73.93982,Private room,40,4,0,,,1,0 +31964801,Harlem Residence,10257350,Mauricio,Manhattan,Washington Heights,40.83488,-73.94452,Private room,55,2,8,2019-06-19,2.29,2,44 +31965215,Cozy studio in East New York,27867038,L,Brooklyn,East New York,40.67695,-73.87402,Entire home/apt,62,1,11,2019-06-22,3.11,1,351 +31965415,Cozy Brooklyn Private Bedroom,161657326,Rachael Lee,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94103,Private room,37,3,1,2019-02-16,0.21,1,0 +31968550,Brooklyn Place,196935380,Prosper,Brooklyn,Flatbush,40.63886,-73.95228,Private room,80,2,0,,,1,88 +31972030,SMALL ROOM 15 MINUTES AWAY FROM MANHATTAN,157310194,Asia,Brooklyn,Williamsburg,40.70597,-73.94245,Private room,60,2,16,2019-07-04,3.78,1,116 +31974197,"Cosy room in Brooklyn, 20 minutes to Manhattan",65631015,Sonia,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95587,Private room,75,2,2,2019-03-30,0.42,1,33 +31974592,Cozy apartment in Brooklyn Brownstone,186251769,Bibiane,Brooklyn,Bedford-Stuyvesant,40.68875,-73.9516,Entire home/apt,110,1,19,2019-07-07,5.04,1,34 +31978375,UWS Cozy Shared Apartment near subway & Central Pk,11630930,Elizabeth,Manhattan,Upper West Side,40.80135,-73.96193,Shared room,60,1,17,2019-07-01,3.59,1,39 +31978518,Apt in historic brownstone on best block in NYC,51414586,Robert,Brooklyn,Fort Greene,40.68904,-73.9759,Entire home/apt,225,3,4,2019-07-06,2.14,1,78 +31978781,Park Slope Garden Apartment,1185024,Miles And Ruth,Brooklyn,Park Slope,40.67821,-73.9787,Entire home/apt,100,1,3,2019-03-16,0.61,1,0 +31979292,Oceanfront Beach Bungalow,4955499,Samantha,Queens,Rockaway Beach,40.58344,-73.81456,Entire home/apt,200,1,4,2019-04-28,1.12,1,124 +31979408,West Harlem Room - 1 Block from the Subway,50862159,Ariel,Manhattan,Harlem,40.80393,-73.9574,Private room,60,2,3,2019-04-01,0.67,1,188 +31980005,Charming 2BR 1BA in the center of Soho,230165497,Lara,Manhattan,Nolita,40.72157,-73.99432,Entire home/apt,199,30,0,,,4,365 +31980644,"A beautiful Stay in Brooklyn, Safe Sheepshead Bay.",179661186,Mirjam,Brooklyn,Sheepshead Bay,40.59876,-73.95296,Private room,61,2,3,2019-07-01,1.48,2,0 +31980794,Sleep 6 adults & 2 children - 2 Level Garden Apt,59073470,Angela,Manhattan,Upper West Side,40.79144,-73.97909,Entire home/apt,375,2,4,2019-05-23,1.24,1,208 +31981491,Cozy n' Bright Sanctuary in Lovely Carroll Gardens,16639428,Drew,Brooklyn,Gowanus,40.67941,-73.99118,Entire home/apt,200,2,10,2019-06-30,4.23,1,218 +31982293,Brightly Artsy 1 Bedroom next to Pratt Institute,720974,Seble,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95886,Entire home/apt,120,4,13,2019-07-07,3.28,1,13 +31982527,"Luxury apartment, 15 minute train to Midtown.",237015178,Anna,Queens,Astoria,40.77161,-73.92063,Entire home/apt,144,2,19,2019-07-06,5.33,1,18 +31983211,Hip Harlem Apartment,4499538,Brett,Manhattan,Harlem,40.80902,-73.94186,Entire home/apt,175,4,6,2019-06-08,1.33,1,0 +31984471,private room in artist's home. prime WILLIAMSBURG.,11914004,Kate,Brooklyn,Williamsburg,40.71275,-73.96049,Private room,50,2,5,2019-07-07,1.06,1,0 +31984738,Great room Ditmas Park Near park Restaurants shops,95444031,Jesse,Brooklyn,Flatbush,40.64473,-73.96849,Private room,60,7,0,,,1,0 +31986426,Spacious Studio with Amazing Views,104513848,Jor,Manhattan,Chelsea,40.74415,-73.99483,Entire home/apt,250,3,1,2019-06-10,1,1,60 +31986430,Cozy & Shinny 1BR in Lower East Side,21976589,Benjamin,Manhattan,Lower East Side,40.71957,-73.98538,Entire home/apt,180,18,3,2019-06-03,0.57,1,22 +31987512,Newly Renovated 1 Bedroom in Soho / West Village,16945810,Rob,Manhattan,SoHo,40.72609,-74.00035,Entire home/apt,250,3,1,2019-04-17,0.36,1,0 +31987544,"Peaceful Private Bedroom, Upper West Side 107",238321374,Eyal,Manhattan,Upper West Side,40.80037,-73.95995,Private room,60,30,0,,,32,317 +31987806,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80042,-73.96147,Private room,60,30,1,2019-06-16,1,32,317 +31988004,Cozy & Modern Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79901,-73.96135,Private room,58,30,0,,,32,317 +31988074,"LYRIC - 1 Bedroom Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.7076,-74.0074,Entire home/apt,309,1,1,2019-05-19,0.59,8,314 +31988308,"Bright, Clean and Spacious East Village Studio",4383563,Zander,Manhattan,East Village,40.72744,-73.98336,Entire home/apt,190,2,0,,,1,0 +31989330,Paris Private Room W/Private Bathroom,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67818,-73.92284,Private room,55,1,3,2019-02-08,0.58,2,0 +31989484,Blissful Balcony Room,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92346,Private room,45,1,2,2019-03-07,0.39,2,0 +31990505,Entire apartment.,52720583,John,Queens,Jackson Heights,40.74774,-73.88653,Entire home/apt,115,2,3,2019-05-10,0.84,1,6 +31990543,1 berm south brooklyn,239851275,Joseph,Brooklyn,Sheepshead Bay,40.60263,-73.94355,Private room,200,1,0,,,1,363 +31991088,Spacious Studio in Hell's Kitchen,232725253,Jason,Manhattan,Hell's Kitchen,40.76246,-73.99032,Entire home/apt,199,2,3,2019-05-23,1.13,1,179 +31991309,Quaint apartment in heart of Astoria,51551032,Diane,Queens,Astoria,40.76424,-73.91516,Entire home/apt,50,4,1,2019-01-30,0.19,1,0 +31991377,"Great location, quality Brooklyn private place",99695025,Dev,Brooklyn,Williamsburg,40.71094,-73.94907,Entire home/apt,121,2,1,2019-02-10,0.20,1,0 +31991634,Back bedroom next to kitchen and bathroom,22926868,Xenia,Brooklyn,Sunset Park,40.6463,-73.99953,Private room,45,13,3,2019-04-18,0.91,3,34 +31993541,Nice bright and quiet room near Prospect park,10174909,Marine,Brooklyn,Crown Heights,40.66415,-73.95169,Private room,50,7,0,,,1,0 +31993628,Room in prime location! Mins from LIC & Midtown!,137358866,Kazuya,Queens,Long Island City,40.74821,-73.92087,Private room,44,30,0,,,103,247 +31994556,Williamsburg Micro Guest House,239887273,Amanda,Brooklyn,Williamsburg,40.71815,-73.95834,Private room,75,1,24,2019-07-03,4.62,1,201 +31994735,Cosy Garden Apartment Williamsburg NY House,193954973,Sean,Brooklyn,Williamsburg,40.71506,-73.95192,Entire home/apt,150,3,7,2019-06-23,2.26,3,86 +31997308,Cozy Studio,239906704,Adrian,Queens,Woodside,40.74286,-73.91076,Private room,120,2,0,,,1,365 +32006626,Blue House on the Hill,222386455,Herman,Brooklyn,Cypress Hills,40.68099,-73.89264,Entire home/apt,165,2,18,2019-07-01,3.78,1,61 +32007251,Home Sweet Home,118502740,Mikyla,Queens,Jamaica,40.69289,-73.81079,Private room,120,2,0,,,1,0 +32007435,Beautiful Chelsea Luxury Penthouse,57761801,Michael,Manhattan,Chelsea,40.7454,-74.00427,Entire home/apt,450,90,0,,,1,365 +32008192,Brooklyn Bohemian 2 Bedroom Loft,5339839,Jodi,Brooklyn,Bedford-Stuyvesant,40.68357,-73.95449,Entire home/apt,295,7,0,,,1,0 +32008547,PRIVATE APARTMENT BUSINESS FRIENDLY,16782573,Dorina,Queens,Middle Village,40.71515,-73.88392,Entire home/apt,115,4,2,2019-03-09,0.44,4,314 +32008894,Bushwick Bedroom w/ private Bath.,59616570,Erika,Brooklyn,Bushwick,40.70352,-73.92163,Private room,55,4,0,,,1,189 +32010533,Andrew’s Bushwick Den,14656629,Andrew,Brooklyn,Bushwick,40.70002,-73.91909,Private room,35,3,0,,,1,0 +32012198,Murray Hill Jewel With Outdoor Space,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74657,-73.97685,Entire home/apt,139,29,0,,,31,130 +32012464,Half a block from the train! my private cozy room,239978864,Patricia,Queens,Jackson Heights,40.7489,-73.87549,Private room,50,2,20,2019-07-01,4.69,1,167 +32013622,Room for rent from March to August.,1767221,Yael,Manhattan,Inwood,40.86622,-73.92233,Private room,48,160,0,,,2,179 +32014745,comfortable cozy,229110237,Guy,Brooklyn,East New York,40.66287,-73.88553,Private room,80,2,3,2019-06-23,1.14,1,363 +32015007,Cozy room next to subway!,240033083,Patrik,Manhattan,Harlem,40.82272,-73.95478,Private room,70,2,0,,,1,0 +32016639,Forest Sanctuary in Bushwick,7964926,Matthew,Brooklyn,Bushwick,40.70118,-73.92176,Entire home/apt,90,2,19,2019-06-23,3.88,1,53 +32017624,COZY ROOM,204926318,Bibi,Brooklyn,East Flatbush,40.65351,-73.94999,Private room,40,30,0,,,1,300 +32018080,Master room 套房,240055586,George,Queens,Fresh Meadows,40.7386,-73.79248,Private room,80,1,38,2019-06-26,7.60,5,29 +32018402,Spacious warm clean private room in the Brooklyn,34556469,Zhansaya,Brooklyn,Gravesend,40.60653,-73.97725,Private room,50,1,0,,,2,0 +32018806,Spring Room 春,240055586,George,Queens,Fresh Meadows,40.7385,-73.79145,Private room,55,1,32,2019-06-30,7.50,5,28 +32019046,Best Place to Stay in the Heart of Queens,117930151,Feather Factory Hotel,Queens,Long Island City,40.74458,-73.94102,Private room,100,1,5,2019-06-22,1.06,2,351 +32019847,Prime Location NYC 2 Bedrooms,238136541,Max,Manhattan,Murray Hill,40.74797,-73.98271,Entire home/apt,345,30,6,2019-05-04,1.13,1,154 +32020853,"★ Clean, Private BR in Little Italy/Chinatown ★",14249909,Evan,Manhattan,Chinatown,40.71825,-73.99651,Private room,169,3,3,2019-05-19,0.67,1,0 +32020961,Full Sized Bed(in bunk) in Inwood *entire apt*,21836588,Kimberly,Manhattan,Inwood,40.86454,-73.9246,Entire home/apt,35,1,33,2019-06-25,6.56,1,5 +32020990,Private room&bathroom close to train/airport/city,5592622,Christina,Queens,Astoria,40.75734,-73.91365,Private room,65,1,12,2019-07-01,2.55,5,149 +32022699,Punjabi House 2,225025900,Jas,Queens,Ditmars Steinway,40.77783,-73.90662,Private room,80,1,5,2019-06-23,1.29,2,358 +32022820,Small Artist Tenement APT in NOLITA/ Little Italy,866089,Launa,Manhattan,Little Italy,40.7191,-73.99513,Entire home/apt,250,3,0,,,3,0 +32025639,Enjoy the View in a Cozy Lux Condo,56656728,Bret,Manhattan,Harlem,40.8165,-73.94438,Private room,60,5,1,2019-02-16,0.21,5,0 +32032602,Live Like a New Yorker,96710414,Brandon,Manhattan,Midtown,40.75741,-73.96372,Entire home/apt,120,2,8,2019-06-22,1.89,1,328 +32034149,9 Beds 4 Full Bath Duplex with Washer and Dryer,70058270,Lucy,Brooklyn,Crown Heights,40.66521,-73.93153,Entire home/apt,575,3,0,,,4,105 +32034639,Artsy Brooklyn Apartment -25 Minutes to Manhattan,37450458,Olivia,Brooklyn,Bedford-Stuyvesant,40.67904,-73.91084,Entire home/apt,100,2,5,2019-06-19,2.59,2,149 +32035609,"Harlem 3 Bedroom, 1.5 Bathroom Condo - Bright!",230062403,Daniel & Kenzie,Manhattan,East Harlem,40.7984,-73.94014,Entire home/apt,450,1,12,2019-06-10,2.67,1,325 +32036785,Big sunny room in Sunnyside,158126190,Oleg,Queens,Sunnyside,40.74141,-73.92688,Private room,33,7,2,2019-02-20,0.40,1,0 +32036822,"XL clean room in Manhattan, 1 block from subway!",36323224,Valentina,Manhattan,Washington Heights,40.84669,-73.94028,Private room,55,1,17,2019-07-03,3.31,1,30 +32036850,Charming lower east side room,165863135,Amanda,Manhattan,Lower East Side,40.72026,-73.98787,Private room,80,20,2,2019-04-19,0.48,1,3 +32036997,Private room in spacious uptown NYC apartment,240194042,Sarita,Manhattan,Harlem,40.8235,-73.95391,Private room,30,21,0,,,1,0 +32037535,Sumptuous floor through apartment in brownstone,212262028,R R,Brooklyn,Fort Greene,40.6882,-73.97651,Entire home/apt,160,3,13,2019-06-23,3.10,2,252 +32037930,East VillageTownhouse for 30 day minimum rentals.,8503180,Kathy,Manhattan,East Village,40.72997,-73.9884,Entire home/apt,1500,30,0,,,2,178 +32038185,"8mins to JFK airport, separate door & bathroom",240203470,Modesta,Queens,Jamaica,40.67804,-73.80122,Private room,25,1,44,2019-06-30,9.23,1,41 +32039742,Trendy Private Bedroom in Upper West Side 107 24-1,240207968,Jocelyn,Manhattan,Upper West Side,40.79967,-73.96109,Private room,128,30,0,,,2,364 +32039920,Spacious 3 bdrms/ 2 baths Prime Manhattan,238133848,Garry,Manhattan,Midtown,40.75702,-73.96503,Entire home/apt,450,30,3,2019-05-24,0.58,1,154 +32040058,SPACIOUS PLACE in BedStuy,7352103,Dave,Brooklyn,Bedford-Stuyvesant,40.69159,-73.95765,Entire home/apt,80,5,2,2019-06-03,0.42,1,0 +32040351,"Stunning Private Room, Upper West Side, Columbia U",240207968,Jocelyn,Manhattan,Upper West Side,40.79907,-73.96098,Private room,128,30,0,,,2,1 +32040396,Ditmas Park Apartment Share,9124906,Chris,Brooklyn,Flatbush,40.64004,-73.9664,Private room,40,1,1,2019-02-06,0.20,1,0 +32040619,wonderful private room in brooklyn,236659049,Yesenia,Brooklyn,Bushwick,40.69006,-73.90605,Private room,40,1,3,2019-04-09,0.64,4,0 +32041359,"1 charming, private bedroom available! LES",48857380,Estefania,Manhattan,East Village,40.72267,-73.9852,Private room,150,2,4,2019-05-05,1.05,1,0 +32041621,Ben's extra bedroom,62589092,Chen,Manhattan,Harlem,40.80996,-73.94191,Private room,53,1,26,2019-06-20,5.03,1,1 +32042717,Home Sweet Home,65786143,Lisa,Brooklyn,Williamsburg,40.70572,-73.94501,Private room,90,2,11,2019-07-02,2.92,1,83 +32042721,Sunny BR w/ Private LR 15 min to JFK free Parking,240239465,Okhela,Queens,St. Albans,40.70132,-73.75463,Entire home/apt,30,2,11,2019-05-25,2.32,2,230 +32042820,Harlem Sweets 2,187419882,Terrence & Skye,Manhattan,Harlem,40.82885,-73.9412,Private room,62,1,1,2019-05-06,0.47,3,72 +32043013,2 JFK Layover - Express train to Manhattan-30 mins,67746251,Gasminee,Queens,Ozone Park,40.68237,-73.84874,Private room,45,1,40,2019-07-08,7.79,4,30 +32043671,"Cozy room in Artistic apt in Little Italy, SoHo",240248599,Sapir,Manhattan,Little Italy,40.71918,-73.99536,Private room,125,3,1,2019-04-28,0.42,1,1 +32044146,Charming Apartment in Greenpoint,138150256,Alejandro,Brooklyn,Greenpoint,40.73324,-73.95304,Entire home/apt,110,7,1,2019-05-26,0.68,2,23 +32045160,Harlem Sweets Home,187419882,Terrence & Skye,Manhattan,Harlem,40.82711,-73.94143,Private room,99,2,18,2019-07-01,3.80,3,72 +32045403,Comfortable Private Room in Crown Heights,64213111,Meir,Brooklyn,Prospect-Lefferts Gardens,40.66088,-73.94363,Private room,50,2,0,,,1,0 +32045812,Nice Entire Place of Large 1B1B in Great Location,47732926,William,Queens,Rego Park,40.72819,-73.86032,Entire home/apt,90,1,7,2019-06-23,1.84,1,64 +32047002,3 JFK Layover - Express train to Manhattan-30 mins,67746251,Gasminee,Queens,Ozone Park,40.6824,-73.84997,Private room,42,1,33,2019-06-24,6.39,4,31 +32047248,Downtown 2500 Sq Ft Loft.,158725307,Greg,Manhattan,NoHo,40.72813,-73.99258,Entire home/apt,400,2,0,,,2,38 +32047800,Cozy Room starting at $67 a night,9898029,Anthony,Brooklyn,East Flatbush,40.64998,-73.92358,Private room,67,3,0,,,5,357 +32048047,Artist Loft Bushwick up to 4 guests,65800377,Benny,Brooklyn,Bushwick,40.70053,-73.92314,Private room,150,3,0,,,3,28 +32048480,"Calm, Quiet Space in Bedstuy",60403058,Maria,Brooklyn,Bedford-Stuyvesant,40.68735,-73.93118,Private room,60,2,2,2019-04-28,0.49,1,0 +32048560,Cosy one bedroom apartment in Hells Kitchen,240289379,Laure,Manhattan,Hell's Kitchen,40.76364,-73.99506,Entire home/apt,90,3,4,2019-03-18,0.90,1,0 +32048862,Twin Beds With Sauna & Relaxing Spa Amenities,89985620,Annette C,Brooklyn,Flatlands,40.62297,-73.92971,Private room,42,2,13,2019-06-26,3.33,3,280 +32049360,Modern Flatbush Apartment in Townhouse,42121413,Tarik,Brooklyn,East Flatbush,40.64222,-73.95067,Entire home/apt,190,4,13,2019-07-01,3.17,1,241 +32049606,3 private bedrooms in historic Harlem brownstone?,58220119,Rumiko,Manhattan,Harlem,40.8167,-73.94421,Private room,300,2,1,2019-05-27,0.70,1,76 +32050071,Modern luxury apartment in the heart of Noho,6073347,Elisabeth,Manhattan,NoHo,40.72703,-73.99264,Entire home/apt,189,5,2,2019-03-08,0.46,1,0 +32050188,Private room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76124,-73.9894,Private room,120,1,29,2019-06-23,5.80,2,198 +32050937,Downtown Williamsburg Loft,21416718,Andrew,Brooklyn,Williamsburg,40.71606,-73.96268,Entire home/apt,150,3,15,2019-06-21,3.75,1,35 +32050983,"Hudson River/GW Bridge +view. Spacious room",240311383,Ana,Manhattan,Washington Heights,40.84725,-73.94274,Private room,85,2,11,2019-07-03,2.21,1,227 +32053614,TINY ROOM FOR ONE PERSON,77304447,Genesis,Manhattan,Harlem,40.82065,-73.95483,Private room,35,5,19,2019-07-03,4.45,3,8 +32054416,Harrison Green by (Hidden by Airbnb),156158778,Sally,Manhattan,Tribeca,40.71782,-74.01047,Entire home/apt,1978,1,0,,,12,0 +32054475,Prospect Place III by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.6776,-73.96961,Entire home/apt,1494,1,0,,,12,0 +32054910,West 88th Street by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper West Side,40.78742,-73.97011,Entire home/apt,3512,1,0,,,12,124 +32058864,LUXURY IN MIDTOWN WEST-DOORMAN/GYM/LAUNDRY,200380610,Pranjal,Manhattan,Midtown,40.75569,-73.98154,Entire home/apt,600,30,0,,,65,110 +32059283,Sun-drenched and Spacious Studio,33646389,Sally,Brooklyn,Crown Heights,40.67128,-73.95895,Entire home/apt,85,5,1,2019-05-19,0.58,2,51 +32062080,"Cozy, quiet room near Times Square",2231216,Nick,Manhattan,Hell's Kitchen,40.75947,-73.99196,Private room,150,2,17,2019-06-28,3.59,1,16 +32062178,Unique Holiday Home,152246149,Catherine,Bronx,Throgs Neck,40.83108,-73.82951,Private room,50,1,11,2019-06-09,2.41,5,365 +32062843,Cute renovated apartment in the heart of flushing!,91393358,Emma,Queens,Flushing,40.75584,-73.80618,Entire home/apt,115,2,15,2019-07-05,3.91,1,44 +32064173,"Safe, cozy, and clean in the heart of Brooklyn",51709634,Israel,Brooklyn,East Flatbush,40.65441,-73.95024,Private room,31,1,25,2019-06-09,5.00,1,5 +32064705,Spacious private bedroom in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82051,-73.95291,Private room,53,1,4,2019-06-23,0.85,3,0 +32065845,"Times Square Suite with amazing views, high floor!",240460735,Jj,Manhattan,Theater District,40.76015,-73.98497,Entire home/apt,890,1,2,2019-03-02,0.41,1,301 +32066991,Studio to yourself! In artsy bushwick railroad apt,33386742,Jayme,Brooklyn,Williamsburg,40.70298,-73.93834,Private room,80,1,0,,,1,5 +32069538,Harlem Residence 2,10257350,Mauricio,Manhattan,Washington Heights,40.83325,-73.94444,Private room,50,2,8,2019-07-02,2.76,2,52 +32069686,"Amazing views, sun, luxe style, live like a local!",27107891,Kossivi,Brooklyn,Williamsburg,40.71396,-73.93986,Entire home/apt,179,4,8,2019-06-21,2.11,1,104 +32070946,Amazing Studio at the Time Square Area/54D,48146336,Irina,Manhattan,Hell's Kitchen,40.76318,-73.99335,Entire home/apt,130,30,2,2019-05-08,0.50,20,263 +32071927,"Sunny, Private Bedroom in ♥ of Downtown (SOHO/LES)",41869388,Emily,Manhattan,Nolita,40.72233,-73.99334,Private room,85,2,20,2019-06-21,4.29,1,5 +32080210,Central Park & Rooftop with 4 large luxury rooms,29278028,Alexis,Manhattan,Upper East Side,40.77698,-73.95712,Entire home/apt,800,5,3,2019-04-24,0.86,4,280 +32080359,Quiet and Close to transportation,75035789,Stuart,Queens,Maspeth,40.7321,-73.89712,Private room,40,1,0,,,1,156 +32081249,Sense the spirit of New York,240594389,Olga,Queens,Glendale,40.69271,-73.89519,Entire home/apt,135,3,7,2019-06-01,2.00,1,120 +32085454,"Perfectly located, bright, clean and spacious",18193304,Tiarnan,Brooklyn,Williamsburg,40.71268,-73.9472,Private room,80,1,10,2019-07-05,3.03,1,102 +32085492,Charming Bedroom in West Village,8962177,Giselle,Manhattan,West Village,40.73231,-74.00377,Private room,90,1,4,2019-07-02,1.26,1,330 +32085580,No Fee MASSIVE West Village Two bedrooms,24975940,William,Manhattan,Greenwich Village,40.73365,-73.99727,Entire home/apt,159,90,0,,,2,90 +32086758,Large 1bedroom Apartment in the Heart of Manhattan,164242874,Irene,Manhattan,Upper West Side,40.79481,-73.97432,Entire home/apt,150,1,20,2019-06-23,4.05,1,272 +32088018,Beautiful Single Bedroom 30 min to Manhattan.,3158364,Devika,Queens,Sunnyside,40.73641,-73.92415,Private room,40,5,5,2019-06-30,1.26,4,297 +32088075,Tourists Summer Getaway in New York,14234166,Peter,Queens,Ridgewood,40.70484,-73.91393,Private room,59,1,15,2019-06-25,2.98,2,67 +32089161,Newly rennovated studio space in UWS,25115746,Stephanie,Manhattan,Upper West Side,40.78757,-73.97624,Shared room,500,1,0,,,1,89 +32090300,Brooklyn Basement Bungalow BBnB,48112774,Sainabou,Brooklyn,Bedford-Stuyvesant,40.67767,-73.91784,Private room,100,1,7,2019-06-30,1.83,1,365 +32091007,"LRG DESIGNER STUDIO/1-BED, MIDTOWN, DOORMAN, ELEV.",23502183,Daniel,Manhattan,Midtown,40.75445,-73.96471,Entire home/apt,159,30,0,,,2,249 +32092858,"Private Apt in Bed-Stuy Brownstone, AC & W/D",49138015,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92555,Entire home/apt,119,3,11,2019-06-16,2.43,1,24 +32093515,Flushing downtown Single room,228879817,Vicky,Queens,Flushing,40.74523,-73.83321,Private room,42,1,20,2019-07-07,4.26,6,157 +32094042,Flushing downtown Single room,228879817,Vicky,Queens,Flushing,40.74588,-73.83284,Private room,49,1,14,2019-07-02,2.76,6,121 +32095668,Fully Private Cozy Studio Close to NY Attractions!,110539055,Manny,Bronx,Williamsbridge,40.87905,-73.85243,Entire home/apt,76,2,14,2019-07-01,2.98,2,300 +32098667,"Sunny room in Downtown NYC, Two Bridges, Chinatown",240134265,Sam,Manhattan,Two Bridges,40.71214,-73.99643,Private room,97,1,30,2019-06-23,5.84,3,174 +32101077,"Comfort room in Downtown Manhattan, Two Bridges",240134265,Sam,Manhattan,Two Bridges,40.71247,-73.99619,Private room,300,1,19,2019-06-18,3.93,3,166 +32101427,"Premier room in Downtown NY, Two Bridges,Chinatown",240134265,Sam,Manhattan,Two Bridges,40.71208,-73.9941,Private room,93,1,28,2019-05-30,5.53,3,359 +32102590,Cute Studio in Central of Midtown,211549023,Studioplus,Manhattan,Midtown,40.7467,-73.98706,Entire home/apt,220,2,4,2019-06-18,1.09,13,283 +32102888,"Stunning duplex, perfect location",12236516,Trevor,Brooklyn,Prospect Heights,40.67743,-73.97202,Entire home/apt,175,30,0,,,1,300 +32104047,Wyndham Midtown 45 at New York City - Bedroom,194953121,Christian,Manhattan,Midtown,40.75204,-73.97278,Entire home/apt,699,2,0,,,1,132 +32104211,MASTER ROOM IN A ELEGANT COZY BEAUTIFUL HOME,1507408,Flavia,Manhattan,East Harlem,40.80245,-73.94426,Private room,96,3,1,2019-05-16,0.56,1,365 +32105616,"Beautiful 2BR Manhattan Apt, 2 blocks from subway",39444059,Gwyneth,Manhattan,Inwood,40.86886,-73.92407,Entire home/apt,100,1,0,,,1,13 +32107065,Private room with terrace,240858689,Anna,Queens,Long Island City,40.74794,-73.94901,Private room,100,14,0,,,1,0 +32107458,Historic Greenwich Village 1 Bedroom - Very Quiet,94087109,Tayler,Manhattan,Greenwich Village,40.73027,-74.00077,Entire home/apt,299,3,9,2019-06-21,1.80,1,19 +32108317,Beautiful 2 Bedr in Landmarked Brooklyn Brownstone,16543733,Sylvester,Brooklyn,Crown Heights,40.6757,-73.95121,Entire home/apt,160,3,9,2019-06-23,2.35,1,109 +32108840,Boho Chic Apartment in the Heart of Brooklyn,7980041,Shirin,Brooklyn,Flatbush,40.64504,-73.9608,Entire home/apt,110,2,6,2019-06-30,1.50,1,17 +32109093,1-Bedroom in Cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73028,-74.00015,Entire home/apt,220,1,4,2019-05-19,0.85,2,29 +32109492,Amazing Studio at the Time square area/5-3A,48146336,Irina,Manhattan,Hell's Kitchen,40.76165,-73.99351,Entire home/apt,130,30,2,2019-06-01,0.53,20,332 +32110731,"Newly renovated apartment in Bensonhurst, Brooklyn",239360406,Lili,Brooklyn,Bensonhurst,40.61487,-74.00666,Private room,70,1,15,2019-05-27,3.02,1,0 +32112767,Couples Retreat,137463409,Marsha,Queens,Maspeth,40.72595,-73.90299,Entire home/apt,150,1,24,2019-07-01,5.26,1,236 +32113235,SPACIOUS BRIGHT & COZY 1BR in CHELSEA MANHATTAN,240913613,Ran,Manhattan,Chelsea,40.74928,-73.99633,Entire home/apt,180,3,26,2019-07-01,5.45,1,53 +32113817,Private Essex Street Bedroom in the LowerEast Side,231819451,Timothy,Manhattan,Lower East Side,40.71984,-73.98625,Private room,100,3,19,2019-07-01,4.01,1,48 +32114142,Spacious BK Duplex | Sleep 10 | 15min to Manhattan,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68321,-73.93803,Entire home/apt,250,5,13,2019-06-23,2.79,3,194 +32114499,2 Story Private Duplex + Backyard | BBQ |Sleeps 10,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68429,-73.93623,Entire home/apt,250,5,7,2019-06-03,1.84,3,215 +32114824,5 minutes from Times Square! Central Manhattan.,240934322,Pete,Manhattan,Hell's Kitchen,40.76412,-73.98771,Private room,125,3,0,,,1,173 +32116711,Sunny furnished room in the heart of Bushwick,42519995,Lamia,Brooklyn,Bushwick,40.70709,-73.92071,Private room,70,1,3,2019-06-09,0.58,1,319 +32120380,Night with a king,143509629,Mel,Bronx,University Heights,40.85538,-73.91081,Shared room,40,1,0,,,1,0 +32121725,The heart of NYC,32999831,Valeria,Manhattan,Theater District,40.75943,-73.98756,Entire home/apt,200,2,3,2019-05-12,0.84,1,85 +32122767,Private Room New York 1 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80618,-73.94288,Private room,53,30,0,,,6,241 +32122886,Private Room New York 3 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80577,-73.9448,Private room,55,60,0,,,6,210 +32123225,Top Luxury 3BR 2BA Balcony ->Gym City& River Views,65929049,Bar,Manhattan,Midtown,40.74838,-73.98444,Entire home/apt,799,5,2,2019-05-05,0.39,1,343 +32125848,Sunny Spacious room and close to Manhattan,215407308,Hawk,Queens,Sunnyside,40.73708,-73.92634,Private room,48,2,1,2019-05-07,0.48,3,132 +32125944,Perfect East Village Loft,238779678,Dustin,Manhattan,East Village,40.72764,-73.9906,Private room,60,30,0,,,9,343 +32126612,"Super Sunny, Massive East Village Getaway",238779678,Dustin,Manhattan,East Village,40.72689,-73.98906,Private room,69,30,0,,,9,310 +32126629,Midtown - United Nations - MOMA - East River Apt,62436749,Alexander,Manhattan,Midtown,40.75483,-73.96991,Entire home/apt,295,4,0,,,1,270 +32127699,Cozy Private Bedroom in East Williamsburg,241035874,Anne,Brooklyn,Williamsburg,40.71045,-73.93826,Private room,60,2,16,2019-06-03,4.14,1,355 +32128935,Cute Bedroom in Heart of Bushwick (A/C provided),11757212,Jasmine,Brooklyn,Bushwick,40.69665,-73.92714,Private room,65,1,22,2019-07-03,4.49,4,89 +32133824,FEMALE ONLY- Modern room in Gramercy/Kips Bay NYC,25116715,Mary,Manhattan,Kips Bay,40.73957,-73.98006,Private room,115,4,0,,,1,22 +32135728,⭐Sleeps 10 ⭐ Rare 4 Bedroom ⭐ 30 Mins to NYC ⭐,171646902,Sophie,Queens,Elmhurst,40.73102,-73.87383,Entire home/apt,300,2,20,2019-06-25,6.32,1,298 +32136644,Excelent Neighboorhood,228141767,Angel,Bronx,Kingsbridge,40.88344,-73.90301,Private room,45,1,14,2019-06-24,2.86,1,347 +32137426,Perfect for two couples. Upper East Side apartment,3435092,Elena,Manhattan,Upper East Side,40.78081,-73.94866,Entire home/apt,175,4,12,2019-07-01,3.91,3,231 +32137481,Greenwich Village Luxury Loft,10476957,Gina & Alex,Manhattan,Greenwich Village,40.7312,-74.00025,Entire home/apt,1000,2,8,2019-05-12,1.59,1,273 +32137567,Artsy Cozy Little Italy Apt! PRIME LOCATION!,11263163,Antonio,Manhattan,Little Italy,40.71939,-73.99662,Entire home/apt,150,1,18,2019-06-30,3.83,1,0 +32138615,BEAUTIFUL 1 BEDROOM Heart of Upper East Side!!,118769947,Albina,Manhattan,Upper East Side,40.7629,-73.96157,Entire home/apt,200,1,30,2019-06-21,6.00,1,2 +32138645,Renovated townhouse near trendy Bushwick hotspots,16954523,Tessa,Brooklyn,Bushwick,40.68754,-73.91231,Private room,55,7,4,2019-06-06,0.92,1,95 +32139526,Perfect Little Gem in the East Village,171331943,Marko,Manhattan,East Village,40.72882,-73.98103,Entire home/apt,160,3,6,2019-07-02,6,1,63 +32141173,Spacious Flat. Lux Building. 3 stops to Manhattan,17849213,Alexey,Brooklyn,Williamsburg,40.71695,-73.93847,Entire home/apt,110,1,7,2019-06-01,2.56,2,1 +32141626,Beautiful West-side Harlem Brick apartment!!,238391711,Harrie,Manhattan,Harlem,40.81303,-73.95285,Private room,180,1,13,2019-06-26,3.05,1,296 +32141672,Jewel Apartment in Hip Long Island City,20811907,Richard-Anthony,Queens,Astoria,40.76734,-73.93267,Entire home/apt,90,3,14,2019-06-17,2.96,1,251 +32155741,Spacious Cozy Quite Private Room in Fidi w/ Perks,220139308,Ellie,Manhattan,Financial District,40.70713,-74.01043,Private room,125,1,13,2019-06-26,4.15,1,132 +32158769,Manhattan adventure,140348326,Sanja,Manhattan,Upper East Side,40.7814,-73.94771,Private room,68,4,2,2019-04-07,0.59,2,0 +32159820,Heart of Williamsburg,31691527,Kat,Brooklyn,Williamsburg,40.71698,-73.95879,Private room,365,2,4,2019-06-09,1.52,1,79 +32160052,Full Floor Of A Luxe Brooklyn Townhouse W. Garden!,124506693,Beautiful Brooklyn,Brooklyn,Crown Heights,40.6751,-73.953,Private room,71,2,9,2019-07-01,3.38,1,223 +32160460,Brand New Elev BLDG Luxury Studio~heart of NYC~,162280872,Izi,Manhattan,Hell's Kitchen,40.76163,-73.99602,Entire home/apt,150,30,0,,,13,332 +32160889,Brand NewXL 1BR~Prime midtown~Laundry~Elev~Sleeps4,162280872,Izi,Manhattan,Hell's Kitchen,40.76273,-73.9942,Entire home/apt,185,30,0,,,13,298 +32160897,New Construction 1BR~Prime Midtown~Elevator~Must C,162280872,Izi,Manhattan,Hell's Kitchen,40.76164,-73.9944,Entire home/apt,145,30,0,,,13,300 +32161408,Cómodo apartamento familiar,131995652,Henry,Bronx,Mount Hope,40.84994,-73.9066,Entire home/apt,148,3,7,2019-07-07,1.74,1,358 +32161968,Good Apt in Brooklyn super close Subways Room (B),175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68061,-73.907,Private room,46,1,12,2019-06-26,2.38,6,155 +32161987,Charming 2BR Near Columbia | Perfect for Families,4619315,Tiffany,Manhattan,Harlem,40.8199,-73.95248,Entire home/apt,165,3,9,2019-06-10,2.01,1,2 +32162250,Lovely and Bright Astoria apartment,241277495,Virginie,Queens,Astoria,40.75864,-73.92782,Entire home/apt,225,5,1,2019-06-15,1,1,30 +32163602,Spacious 1 Bedroom in Chelsea/West Village,18466353,Magal,Manhattan,Chelsea,40.74084,-74.00425,Entire home/apt,180,5,0,,,1,214 +32163798,"BEST LOCATION! Flatiron! Large 2 Bedroom, Terrace",3280640,Seth,Manhattan,Midtown,40.74437,-73.98848,Entire home/apt,250,3,18,2019-07-01,3.83,1,26 +32164372,Semi-studio in MIDTOWN HK,133130315,Artem,Manhattan,Hell's Kitchen,40.76379,-73.9872,Entire home/apt,170,1,4,2019-05-27,1.05,6,123 +32164433,Chelsea Pre-War Arts Apartment,16384390,Matthew,Manhattan,Chelsea,40.74324,-73.99705,Entire home/apt,175,2,9,2019-06-19,2.37,1,50 +32165536,1 Bedroom - Fully Furnished - Williamsburg Loft,1570799,Adam,Brooklyn,Williamsburg,40.70771,-73.94627,Private room,100,10,2,2019-06-19,0.90,1,3 +32165540,Spacious East Village Apartment,801538,Mike,Manhattan,East Village,40.7233,-73.98062,Entire home/apt,150,90,0,,,1,341 +32165550,Your NY Home in a multicultural setting!,68959402,Santiago,Queens,Elmhurst,40.74685,-73.88626,Entire home/apt,70,1,8,2019-06-05,1.73,1,141 +32166264,Private Bushwick room 15 mins from Manhattan,21536937,Chen,Brooklyn,Bushwick,40.70431,-73.92655,Private room,100,2,1,2019-05-16,0.56,1,89 +32166672,Cozy apartment close to Central Park,187849608,Florencio,Manhattan,Upper West Side,40.79097,-73.97412,Private room,180,1,3,2019-05-14,0.63,1,151 +32167255,"Bedroom in a cosy/ bright apartment, Williamsburg",6883576,Otto,Brooklyn,Williamsburg,40.71516,-73.94934,Private room,98,1,9,2019-06-16,2.37,1,53 +32167684,Sunny bedroom in Greenwich Village/SoHo!,1458110,Molly,Manhattan,Greenwich Village,40.72722,-73.99914,Private room,96,3,2,2019-05-26,0.41,2,5 +32168090,Brooklyn’s Finest in Fort Greene,206288086,Akram,Brooklyn,Fort Greene,40.69434,-73.97099,Entire home/apt,167,2,20,2019-06-30,4.96,2,284 +32168744,Sunlit Spacious Bedroom,241341898,Madeleine,Manhattan,Harlem,40.82796,-73.94088,Private room,85,1,27,2019-05-29,5.70,1,0 +32168942,Luxury Modern Artist Chelsea Apartment,116089235,Noemi,Manhattan,Chelsea,40.75117,-73.99735,Entire home/apt,500,3,1,2019-05-23,0.63,1,77 +32169418,Little Cottage,158407820,Omar,Queens,Woodside,40.75403,-73.90076,Entire home/apt,98,2,15,2019-06-26,4.13,5,337 +32170868,Cozy Brooklyn Home close to the train! Non smoking,48675725,Rosemary,Brooklyn,East New York,40.67212,-73.86991,Entire home/apt,125,2,18,2019-07-01,4.43,1,28 +32171100,Cozy Room in uptown Manhattan,241366980,Josefina,Manhattan,Washington Heights,40.83685,-73.94176,Private room,75,2,20,2019-07-02,4.88,1,223 +32171104,Welcome to New York City!,241359293,Bijan,Manhattan,Hell's Kitchen,40.76483,-73.99248,Entire home/apt,280,2,0,,,1,0 +32172621,Private Room with Desk & Closet ♥ Best Location,237336458,Thomas,Manhattan,Chelsea,40.73778,-73.99616,Private room,99,12,4,2019-06-17,0.79,4,29 +32176821,"Williamsburg Loft in Brooklyn, NYC. Sleeps 6-8.",9260643,Sophie,Brooklyn,Williamsburg,40.71615,-73.95877,Entire home/apt,400,2,3,2019-04-26,1.18,1,20 +32178172,2BED 2 BATH/COLUMBUS CIRCLE/ BALCONY,131647128,Emily,Manhattan,Upper West Side,40.77054,-73.98344,Entire home/apt,290,30,2,2019-03-21,0.52,25,313 +32179659,Cute room! 15mins to LGA 17mins to Midtown.,137358866,Kazuya,Queens,Astoria,40.76399,-73.92581,Private room,37,30,1,2019-05-31,0.77,103,238 +32180213,Beautiful private room!,198730633,Ruth,Manhattan,Harlem,40.81105,-73.95241,Private room,80,1,3,2019-03-17,0.71,2,0 +32180820,Modern & Spacious 3 Bedroom Apt in Times Square,210141310,Alci,Manhattan,Hell's Kitchen,40.75961,-73.98844,Entire home/apt,295,3,22,2019-07-03,4.49,1,228 +32181226,Large Furnished Loft Financial District!!,27891261,Glenn,Manhattan,Financial District,40.709,-74.01221,Entire home/apt,160,30,2,2019-06-15,0.86,1,126 +32182464,2BR DUPLEX WITH PRIVATE GARDEN IN CHELSEA,200380610,Pranjal,Manhattan,Chelsea,40.74468,-74.00157,Entire home/apt,382,90,0,,,65,364 +32183028,Bright ‘n Clean private room close to L M train!!,240237028,Jose,Queens,Ridgewood,40.69924,-73.90191,Private room,45,2,14,2019-06-11,2.96,1,168 +32185458,Renovated 3 bedroom/2 full bath duplex.,66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92859,Entire home/apt,245,4,13,2019-07-01,2.79,3,272 +32185689,Sunny private room in the heart of trendy Bushwick,33992697,Dor,Brooklyn,Bushwick,40.70458,-73.92888,Private room,80,2,3,2019-06-20,0.63,1,14 +32185917,*NEW* Clinton Hill Room in Plant Filled Apartment,545623,Misty,Brooklyn,Clinton Hill,40.68447,-73.96714,Private room,75,1,11,2019-05-13,2.64,1,5 +32185974,Spacious One Bedroom in Hell's Kitchen,241361740,Michael,Manhattan,Hell's Kitchen,40.75951,-73.99455,Entire home/apt,230,2,0,,,1,0 +32186503,Spacious two bedroom in Hell's Kitchen,241366983,Jack,Manhattan,Hell's Kitchen,40.7647,-73.99516,Entire home/apt,250,2,0,,,1,0 +32186906,"Ottoman 3BR, 2Bath In Safest NYC w/ Balcony",61316506,Mamun,Queens,Sunnyside,40.74603,-73.91458,Entire home/apt,145,1,14,2019-06-24,2.90,2,331 +32186945,Private Master Bedroom with Ensuite Bath HK,25043035,Lauren,Manhattan,Midtown,40.76638,-73.98311,Private room,100,1,4,2019-05-12,0.85,1,0 +32187475,"Prime loc. Spacious, bright, clean, cozy room",7627510,Eduardo,Queens,Jackson Heights,40.75318,-73.88404,Private room,80,2,5,2019-06-27,1.06,1,157 +32189288,Gem in the heart of Manhattan,32136241,EStelle,Manhattan,Chelsea,40.75173,-73.99869,Entire home/apt,100,3,11,2019-06-18,2.77,1,24 +32189352,Wyndham Midtown 45 - Hotel Room,77021411,Jennifer,Manhattan,Midtown,40.75231,-73.97331,Private room,300,4,0,,,1,0 +32189706,Private Room in Chill Brooklyn Apartment,53300414,Monica,Brooklyn,Gowanus,40.67024,-73.99349,Private room,55,1,0,,,2,20 +32190090,"CLEAN, TIMES SQUARE ONE BEDROOM",55289,E,Manhattan,Hell's Kitchen,40.76522,-73.98779,Entire home/apt,250,4,17,2019-07-04,3.98,1,200 +32190231,Stylish 1BR with back patio in Hell's Kitchen,241513556,Hunter,Manhattan,Theater District,40.76106,-73.98694,Entire home/apt,170,2,0,,,1,0 +32190629,Charming Astoria,92510990,Kristen,Queens,Long Island City,40.76235,-73.92651,Private room,100,3,5,2019-06-01,1.40,1,42 +32191213,Bohême à Williamsburg,241541553,Sam,Brooklyn,Williamsburg,40.71211,-73.96276,Entire home/apt,418,2,20,2019-06-30,3.97,1,153 +32194564,Master Suite in Brownstone with Garden & Fire Pit!,39712384,Shanée & Ash,Brooklyn,Crown Heights,40.6732,-73.92146,Private room,110,3,7,2019-07-01,2.44,1,152 +32195520,Cozy Apartment in long island city /Astoria,241583701,Alejandro,Queens,Long Island City,40.75331,-73.92454,Entire home/apt,140,7,4,2019-05-21,0.85,1,35 +32197473,26 Mt Morris Park Bldg in A la Soho!,217807652,Jennifer,Manhattan,Harlem,40.80625,-73.94647,Private room,75,5,0,,,1,0 +32201182,Beautiful 1BR in Heart of Midtown Manhattan,26817172,Malvern,Manhattan,Midtown,40.75828,-73.96829,Entire home/apt,250,1,11,2019-06-29,3.59,1,336 +32203689,A warm and friendly place!,241458287,Leandro,Bronx,Mott Haven,40.81098,-73.91814,Entire home/apt,65,2,15,2019-06-18,3.26,1,51 +32205973,Throsneck,241675405,Yolanda,Bronx,Throgs Neck,40.8154,-73.81551,Entire home/apt,75,3,0,,,1,90 +32206003,Spacious Rm for 1 near Hospital1 min Walk to Train,241676154,Maria,Staten Island,Grant City,40.57974,-74.10989,Private room,30,7,1,2019-06-29,1,2,188 +32207083,Convent Ave & 127st Col Univ RM 2,57049951,Eliahu,Manhattan,Harlem,40.81332,-73.95309,Private room,69,1,1,2019-04-10,0.33,9,365 +32207088,"Wonderful large room, queen bed, next to Manhattan",36732553,Miriam,Queens,Astoria,40.75604,-73.91488,Private room,60,7,0,,,3,338 +32207090,Columbia UN Area 127 st And convent Ave,57049951,Eliahu,Manhattan,Harlem,40.81401,-73.95393,Private room,69,2,1,2019-06-25,1,9,365 +32207337,Manhattan room 3 NYC 127 st and convent ave,57049951,Eliahu,Manhattan,Harlem,40.81384,-73.95315,Shared room,69,2,1,2019-04-23,0.39,9,365 +32208121,Ayos Abode,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.68683,-73.93825,Entire home/apt,140,1,1,2019-05-06,0.47,2,68 +32209753,One of a kind Loft in Brooklyn,241059711,Saira,Brooklyn,Crown Heights,40.6786,-73.96308,Entire home/apt,450,1,2,2019-04-21,0.52,1,204 +32214068,~Stunning 3BR home~Legal Airbnb~Central Location~,241732167,Matty,Manhattan,Murray Hill,40.74915,-73.9761,Entire home/apt,220,30,1,2019-04-10,0.33,1,310 +32214481,Elegant Studio-Loft in Flatiron / NoMad,117717201,Matthew,Manhattan,Midtown,40.74338,-73.98557,Entire home/apt,210,4,3,2019-05-23,1.29,1,156 +32214585,Bronx Comfort,98868828,Natasha,Bronx,Edenwald,40.89156,-73.84197,Private room,65,1,0,,,1,89 +32214783,"Sunny Lofty Sanctuary in Artsy Bushwick, Guest BR",234270791,April G,Brooklyn,Bushwick,40.69615,-73.92995,Private room,58,3,6,2019-06-18,2.02,3,94 +32214892,"3 Private rooms,shared space",17473098,Elias,Staten Island,Castleton Corners,40.62373,-74.11773,Private room,150,1,0,,,1,0 +32218558,Sonder | Stock Exchange | Welcoming 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.0106,Entire home/apt,245,2,6,2019-05-19,1.65,327,272 +32218659,Sonder | Stock Exchange | Amazing 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70608,-74.012,Entire home/apt,245,2,2,2019-06-18,2,327,299 +32218803,Sonder | Wall Street | Quaint Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70658,-74.01036,Private room,200,2,13,2019-06-18,2.81,327,352 +32219550,Sonder | Stock Exchange | Peaceful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70623,-74.01198,Entire home/apt,229,2,6,2019-06-21,3.00,327,355 +32219678,Sonder | Wall Street | Quaint Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70564,-74.01162,Private room,204,2,4,2019-04-29,0.96,327,327 +32221325,Corner Loft in Williamsburg,107504230,Rhaynelina,Brooklyn,Williamsburg,40.71189,-73.9649,Entire home/apt,100,3,2,2019-04-15,0.43,1,0 +32222587,Large Cozy Apartment.,241764251,Claribel,Manhattan,East Harlem,40.79973,-73.94567,Entire home/apt,156,3,8,2019-06-22,2.22,1,51 +32222756,Cozy Room in Townhouse Apartment,32625342,Bianca,Bronx,Kingsbridge,40.88316,-73.90586,Private room,30,4,8,2019-04-30,1.76,2,0 +32222783,SHOOTS ONLY Industrial Dumbo Warehouse Studio,241765415,Michael,Brooklyn,Vinegar Hill,40.70046,-73.98389,Entire home/apt,240,1,1,2019-03-14,0.25,1,89 +32223111,Clean/convenient apartment w/rooftop & gym.,9163877,Brian,Brooklyn,Bedford-Stuyvesant,40.69116,-73.95444,Entire home/apt,132,3,4,2019-06-09,1.03,1,205 +32223114,Private 2BR near the beach and subway/has yard!!!,73670512,Monika,Brooklyn,Gravesend,40.59284,-73.97682,Entire home/apt,130,3,15,2019-07-05,3.31,2,119 +32223317,Sonder | Stock Exchange | Premier 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7058,-74.0121,Entire home/apt,404,2,10,2019-05-27,2.26,327,330 +32223854,Sonder | Stock Exchange | Classic 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.01047,Entire home/apt,234,2,2,2019-06-04,1.46,327,332 +32224165,Sonder | Stock Exchange | Modern 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01238,Entire home/apt,425,2,8,2019-05-27,2.11,327,339 +32224172,Sonder | Stock Exchange | Restful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70752,-74.01046,Entire home/apt,235,2,7,2019-06-24,1.52,327,306 +32224211,Sonder | Stock Exchange | Calming 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01203,Entire home/apt,503,2,5,2019-06-22,1.34,327,315 +32224530,Quiet Times Square Apartment,64663067,Li,Manhattan,Hell's Kitchen,40.75977,-73.99062,Entire home/apt,250,2,17,2019-07-06,3.86,1,71 +32224599,Descanza con plenitud,241770178,Mary Luz,Queens,East Elmhurst,40.76587,-73.87968,Private room,40,2,8,2019-05-24,1.88,1,10 +32225184,Sonder | Wall Street | Calming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.01226,Private room,258,2,6,2019-05-12,1.27,327,332 +32225186,Sonder | Stock Exchange | Tranquil 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01233,Entire home/apt,392,2,2,2019-05-13,0.63,327,286 +32225187,Sonder | Wall Street | Dreamy 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70573,-74.01077,Private room,375,2,5,2019-06-23,1.24,327,280 +32225188,Sonder | Stock Exchange | Private 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.01214,Entire home/apt,231,2,7,2019-05-13,1.69,327,347 +32225189,Sonder | Stock Exchange | Artsy Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70624,-74.01076,Entire home/apt,194,2,8,2019-06-18,1.85,327,341 +32225195,Sonder | Stock Exchange | Beautiful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70732,-74.01029,Entire home/apt,240,2,8,2019-06-20,1.98,327,357 +32225197,Sonder | Stock Exchange | Private 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01023,Entire home/apt,229,2,7,2019-05-17,1.75,327,346 +32225203,Sonder | Stock Exchange | Upscale 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70737,-74.01103,Entire home/apt,230,2,5,2019-06-16,1.49,327,346 +32225206,Sonder | Stock Exchange | Original 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70587,-74.01092,Entire home/apt,472,2,12,2019-06-15,2.67,327,234 +32225207,Sonder | Wall Street | Distinct 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70727,-74.01072,Private room,256,2,16,2019-06-20,3.75,327,329 +32226740,Midtown 2BR w/ Patio! Central Park & Times Sq!,232475160,Jhonnil,Manhattan,Hell's Kitchen,40.76242,-73.9925,Entire home/apt,149,2,7,2019-06-21,1.47,1,155 +32228971,big Room 25 min to time square,1495355,John,Queens,Forest Hills,40.72345,-73.84365,Private room,40,2,4,2019-06-08,1.88,2,188 +32232502,Private bedroom in a charming apartment,45238340,Fa,Manhattan,East Harlem,40.79196,-73.95048,Private room,95,1,8,2019-05-26,2.55,1,131 +32232908,Urban Zen in the Heart of Williamsburg,29775337,Amanda,Brooklyn,Williamsburg,40.7185,-73.95601,Private room,150,2,7,2019-05-26,1.48,1,20 +32233982,Spacious Woodside room close to all transporations,137358866,Kazuya,Queens,Woodside,40.74259,-73.91193,Private room,51,30,1,2019-05-18,0.58,103,239 +32234241,Sunny and Charming Studio - Beautiful West Village,34468788,Heather,Manhattan,West Village,40.73847,-74.0062,Entire home/apt,175,2,7,2019-07-01,2.92,1,3 +32234380,Cozy spot in hipster East Williamsburg,241870258,Reesey,Brooklyn,Williamsburg,40.71363,-73.93615,Shared room,75,1,2,2019-04-06,0.63,2,1 +32234672,Zen Den 1BR Uptown Oasis,24973324,Matthew,Manhattan,Washington Heights,40.85355,-73.93232,Entire home/apt,125,2,1,2019-02-18,0.21,1,72 +32234674,Tribeca Studio w/ Gym + Pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71543,-74.00647,Entire home/apt,282,30,0,,,232,302 +32234982,Magical Mott Haven Loft,241883660,Sherril,Bronx,Port Morris,40.80707,-73.92974,Entire home/apt,200,5,1,2019-05-25,0.67,1,0 +32235802,Stable Room at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73742,-74.00484,Private room,999,1,1,2019-04-24,0.39,5,310 +32236518,Sonder | Stock Exchange | Expansive 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70775,-74.01047,Entire home/apt,454,2,11,2019-06-11,3.33,327,297 +32236681,Sonder | Wall Street | Eclectic 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70615,-74.01243,Private room,262,2,6,2019-06-05,1.59,327,328 +32236951,Sonder | Stock Exchange | Incredible 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01064,Entire home/apt,472,2,6,2019-06-10,1.41,327,316 +32237138,Sonder | Stock Exchange | Lively Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01225,Entire home/apt,203,2,7,2019-06-24,1.88,327,338 +32237148,Sonder | Stock Exchange | Dreamy 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70795,-74.01046,Entire home/apt,247,2,9,2019-05-28,2.13,327,263 +32237240,Sonder | Stock Exchange | Dreamy 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01227,Entire home/apt,377,2,15,2019-06-21,3.52,327,273 +32237306,Sonder | Stock Exchange | Calming 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70586,-74.01078,Entire home/apt,229,2,14,2019-06-23,3.65,327,323 +32237394,Sonder | Stock Exchange | Private 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70789,-74.01229,Entire home/apt,234,2,12,2019-06-16,3.05,327,340 +32237413,Sonder | Stock Exchange | Expansive 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70631,-74.01098,Entire home/apt,503,2,7,2019-05-28,2.10,327,294 +32237469,Sonder | Stock Exchange | Welcoming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01175,Entire home/apt,228,2,2,2019-05-18,0.73,327,350 +32237493,Sonder | Stock Exchange | Serene 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7065,-74.01171,Entire home/apt,404,2,15,2019-06-09,3.19,327,310 +32237560,Sonder | Wall Street | Simple 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.01044,Entire home/apt,252,2,12,2019-06-19,3.03,327,302 +32237566,Sonder | Stock Exchange | Simple 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70648,-74.01241,Entire home/apt,229,2,7,2019-05-26,1.69,327,337 +32237634,Sonder | Stock Exchange | Premier 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70642,-74.01045,Entire home/apt,431,2,10,2019-06-14,2.11,327,323 +32237640,Sonder | Stock Exchange | Premier 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01056,Entire home/apt,412,2,13,2019-06-14,3.07,327,341 +32237692,Sonder | Stock Exchange | Tranquil 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70767,-74.01061,Entire home/apt,403,2,8,2019-06-16,1.90,327,273 +32237736,Sonder | Stock Exchange | Bold 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7065,-74.01019,Entire home/apt,229,2,10,2019-06-13,2.34,327,349 +32237768,Sonder | Stock Exchange | Bright 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01092,Entire home/apt,227,2,8,2019-06-05,1.88,327,356 +32237811,Sonder | Stock Exchange | Design Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70797,-74.01227,Entire home/apt,205,2,10,2019-06-24,2.54,327,338 +32238040,Feminine room in Manhattan. 1 stop to midtown.,59411033,Alexandra,Manhattan,Harlem,40.81359,-73.95246,Private room,85,1,2,2019-05-09,0.82,1,7 +32238106,Sonder | Stock Exchange | Modern Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7072,-74.01214,Entire home/apt,194,2,8,2019-06-13,2.26,327,318 +32238131,Sonder | Stock Exchange | Simple 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70731,-74.01056,Entire home/apt,214,2,11,2019-06-11,3.20,327,312 +32238198,Sonder | Stock Exchange | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.01066,Entire home/apt,229,2,9,2019-05-13,2.11,327,346 +32238229,Sonder | Stock Exchange | Warm Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.01045,Entire home/apt,185,2,6,2019-05-26,1.58,327,295 +32238253,Sonder | Stock Exchange | Airy 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01183,Entire home/apt,234,2,8,2019-06-18,2.31,327,333 +32238307,Sonder | Stock Exchange | Classic Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70574,-74.01023,Entire home/apt,201,2,20,2019-06-21,4.11,327,333 +32238324,Sonder | Stock Exchange | Chic 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01054,Entire home/apt,229,2,5,2019-05-21,1.25,327,335 +32238387,Sonder | Stock Exchange | Central 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01114,Entire home/apt,244,2,1,2019-05-27,0.70,327,258 +32238391,Sonder | Stock Exchange | Lively 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01077,Entire home/apt,227,2,8,2019-06-11,3.64,327,349 +32238462,Sonder | Stock Exchange | Sleek 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.01042,Entire home/apt,451,2,15,2019-06-21,4.37,327,254 +32238473,Sonder | Stock Exchange | Sleek Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70581,-74.01226,Entire home/apt,241,2,5,2019-06-12,1.35,327,284 +32238548,Sonder | Stock Exchange | Lovely 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70764,-74.01077,Entire home/apt,252,2,15,2019-06-21,3.19,327,260 +32238621,Sonder | Stock Exchange | Playful 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.01188,Entire home/apt,250,2,10,2019-06-23,2.59,327,292 +32238694,Midtown 2 Bed Large Full Kitchen & Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75431,-73.96518,Entire home/apt,419,3,6,2019-06-21,1.57,8,326 +32238730,Sonder | Stock Exchange | Original 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70785,-74.01239,Entire home/apt,505,2,7,2019-06-14,1.79,327,275 +32238809,Sonder | Stock Exchange | Distinct 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01201,Entire home/apt,228,2,8,2019-06-19,2.02,327,348 +32238821,Sonder | Stock Exchange | Unique 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70731,-74.01021,Entire home/apt,242,2,15,2019-06-16,3.75,327,261 +32238933,Charming & Spacious Loft in Clinton Hill,18874653,Elsa,Brooklyn,Clinton Hill,40.69344,-73.9652,Entire home/apt,175,4,5,2019-06-30,1.19,1,40 +32239033,Sonder | Stock Exchange | Smart 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70583,-74.01089,Entire home/apt,221,2,4,2019-06-24,1.97,327,333 +32239034,Sonder | Stock Exchange | Quaint Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70651,-74.01252,Entire home/apt,203,2,9,2019-06-20,2.16,327,336 +32239035,Sonder | Stock Exchange | Peaceful 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01064,Entire home/apt,228,2,11,2019-06-13,2.73,327,355 +32239039,Sonder | Stock Exchange | Smart 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70775,-74.0105,Entire home/apt,215,2,9,2019-06-11,2.31,327,313 +32239170,FairPlay BNB for alternative life style renters!,241924064,Alice,Staten Island,Shore Acres,40.60525,-74.06745,Entire home/apt,300,1,0,,,1,87 +32239551,Sonder | Stock Exchange | Classic Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70706,-74.01036,Entire home/apt,198,2,7,2019-05-13,1.65,327,346 +32239640,Sonder | Stock Exchange | Tasteful 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.0116,Entire home/apt,468,2,11,2019-06-21,3.00,327,267 +32239738,Sonder | Stock Exchange | Lively 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70563,-74.01097,Entire home/apt,227,2,3,2019-04-27,0.81,327,350 +32239944,Sonder | Stock Exchange | Unique 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70702,-74.01087,Entire home/apt,236,2,9,2019-06-05,2.52,327,347 +32239950,Sonder | Stock Exchange | Playful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70595,-74.0118,Entire home/apt,244,2,2,2019-06-14,1.82,327,317 +32240068,Room,177449995,Jade,Queens,Woodside,40.74554,-73.89831,Private room,120,2,0,,,1,363 +32240076,Sonder | Stock Exchange | Lovely 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70637,-74.01199,Entire home/apt,248,2,17,2019-06-17,4.08,327,271 +32240110,Sonder | Stock Exchange | Artsy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70609,-74.01219,Entire home/apt,241,2,7,2019-06-16,2.08,327,331 +32240183,Sonder | Stock Exchange | Serene 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70581,-74.01101,Entire home/apt,390,2,9,2019-06-20,2.43,327,268 +32240186,Sonder | Stock Exchange | Unique 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01218,Entire home/apt,230,2,12,2019-06-16,2.57,327,357 +32240388,Sonder | Stock Exchange | Classic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.01023,Entire home/apt,230,2,9,2019-06-10,2.11,327,323 +32240417,Sonder | Stock Exchange | Airy 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01043,Entire home/apt,227,2,6,2019-06-16,2.50,327,328 +32240476,Sonder | Stock Exchange | Simple 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70654,-74.01091,Entire home/apt,214,2,11,2019-06-20,2.97,327,304 +32240488,Sonder | Stock Exchange | Artsy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70757,-74.01111,Entire home/apt,188,2,4,2019-04-12,1.08,327,298 +32240533,Sonder | Stock Exchange | Playful 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70765,-74.011,Entire home/apt,247,2,4,2019-05-14,0.97,327,314 +32240537,Sonder | Stock Exchange | Delightful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.01081,Entire home/apt,220,2,4,2019-05-27,1.15,327,331 +32240590,Sonder | Stock Exchange | Stylish Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01097,Entire home/apt,196,2,6,2019-06-11,1.48,327,325 +32240603,Sonder | Stock Exchange | Bold 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70638,-74.01086,Entire home/apt,218,2,4,2019-06-23,1.04,327,279 +32240776,Cozy Escape in the thriving heart of Bed-Stuy,241940624,Beryl,Brooklyn,Bedford-Stuyvesant,40.68529,-73.94028,Entire home/apt,130,2,9,2019-07-07,2.93,1,301 +32240788,Sonder | Stock Exchange | Serene 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.01227,Entire home/apt,396,2,8,2019-06-24,2.12,327,289 +32240812,Sonder | Stock Exchange | Lovely 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70619,-74.01065,Entire home/apt,214,2,5,2019-05-26,1.43,327,268 +32240870,"Bright, nice size room in beautiful Brooklyn apt.",1646988,Murat,Brooklyn,Windsor Terrace,40.65302,-73.97357,Private room,50,2,1,2019-06-24,1,1,0 +32240873,Sonder | Stock Exchange | Classic Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70796,-74.01206,Entire home/apt,196,2,9,2019-06-18,2.48,327,318 +32240896,Sonder | Stock Exchange | Premier 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01066,Entire home/apt,380,2,12,2019-06-20,3.50,327,302 +32240933,Sonder | Stock Exchange | Lively 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70726,-74.0106,Entire home/apt,229,2,2,2019-06-23,0.77,327,351 +32240966,Sonder | Stock Exchange | Sleek 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.7062,-74.01192,Entire home/apt,498,2,8,2019-06-11,2.50,327,255 +32240970,Sonder | Stock Exchange | Dashing 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.01039,Entire home/apt,215,2,3,2019-06-13,0.77,327,317 +32241019,Sonder | Stock Exchange | Smart 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01184,Entire home/apt,231,2,13,2019-06-02,3.42,327,331 +32241027,Sonder | Stock Exchange | Distinct 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7058,-74.01107,Entire home/apt,234,2,5,2019-06-19,1.36,327,343 +32241060,Sonder | Stock Exchange | Bright 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70628,-74.01213,Entire home/apt,212,2,3,2019-05-31,0.74,327,293 +32241096,Sonder | Stock Exchange | Sunny 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01094,Entire home/apt,228,2,8,2019-05-29,2.12,327,343 +32241117,Sonder | Stock Exchange | Glam 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70781,-74.01165,Entire home/apt,214,2,6,2019-06-11,1.57,327,343 +32241142,Sonder | Stock Exchange | Tranquil 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01074,Entire home/apt,214,2,3,2019-05-25,1.23,327,333 +32241163,Sonder | Stock Exchange | Dreamy Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01208,Entire home/apt,201,2,9,2019-06-14,2.62,327,271 +32241185,Sonder | Stock Exchange | Bright 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01199,Entire home/apt,214,2,2,2019-06-08,0.59,327,331 +32241235,Sonder | Stock Exchange | Airy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70727,-74.01026,Entire home/apt,235,2,3,2019-06-11,1.58,327,341 +32241239,Sun drenched modern stylish 2 bedroom apt near all,241945355,Clement & Rose,Brooklyn,Flatlands,40.63129,-73.92748,Entire home/apt,165,2,5,2019-06-19,1.58,2,365 +32241242,Sonder | Stock Exchange | Playful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01175,Entire home/apt,256,2,9,2019-06-23,2.60,327,277 +32241284,Sonder | Stock Exchange | Lovely 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70582,-74.01111,Entire home/apt,248,2,9,2019-06-23,2.48,327,284 +32241288,Sonder | Stock Exchange | Lively 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.0107,Entire home/apt,216,2,9,2019-06-22,2.23,327,332 +32241577,Sonder | Stock Exchange | Chic 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70762,-74.01105,Entire home/apt,223,2,3,2019-06-01,0.74,327,310 +32241600,Sonder | Stock Exchange | Pristine 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7062,-74.01092,Entire home/apt,229,2,11,2019-06-17,2.37,327,329 +32242139,Sun-Drenched 1 BR/1BA near Grand Army Plaza #10313,20375986,Marissa,Brooklyn,Park Slope,40.67655,-73.97697,Entire home/apt,200,3,17,2019-06-29,3.98,1,142 +32242353,Private Room in Stunning Apartment,52005895,Jae,Brooklyn,Bedford-Stuyvesant,40.68429,-73.92515,Private room,110,1,5,2019-05-14,1.10,1,86 +32242547,Times Square & Rockefeller Center Private Bedroom,93411405,Eden,Manhattan,Midtown,40.7597,-73.97916,Private room,150,2,0,,,2,0 +32242848,Summer room 夏,240055586,George,Queens,Fresh Meadows,40.73834,-73.79209,Private room,55,1,24,2019-07-01,4.97,5,32 +32244500,Bushwick APT with big bright room/private backyard,64318524,Stephanie,Brooklyn,Bushwick,40.69754,-73.91465,Private room,65,4,1,2019-04-21,0.38,1,0 +32244701,Quiet 1bedroom apartment,241985900,V,Manhattan,Hell's Kitchen,40.7588,-73.9922,Entire home/apt,150,1,23,2019-06-23,4.66,1,106 +32244865,LARGE Trendy Studio!!!,53931758,Lc,Brooklyn,Flatbush,40.64464,-73.96453,Entire home/apt,100,3,3,2019-06-03,0.97,1,73 +32245235,Quiet Private Room in the Exciting East Village!,160356,Joseph,Manhattan,East Village,40.72576,-73.98309,Private room,68,1,18,2019-07-03,4.15,4,90 +32250920,The Berry - Hip in the heart of Williamsburg.,1859754,Adam,Brooklyn,Williamsburg,40.71989,-73.9581,Entire home/apt,100,4,2,2019-06-30,0.48,1,7 +32251219,Urban Casita,5167068,Heather & Alex,Brooklyn,Bedford-Stuyvesant,40.6923,-73.9328,Entire home/apt,215,3,12,2019-06-17,2.88,1,6 +32251904,Mary Sweet Home,242063700,Marysell,Queens,Flushing,40.73907,-73.82943,Private room,65,1,2,2019-03-10,0.41,1,0 +32252006,Upper Ditmars Top FL of Home with Patio,7973451,Chris,Queens,Ditmars Steinway,40.77315,-73.89908,Entire home/apt,85,5,1,2019-04-01,0.30,1,84 +32252190,Fall room 秋,240055586,George,Queens,Fresh Meadows,40.73784,-73.79101,Private room,50,1,20,2019-07-08,4.20,5,38 +32253160,Family House 旅行客栈,240055586,George,Queens,Fresh Meadows,40.73704,-73.79151,Entire home/apt,255,1,13,2019-06-17,2.87,5,114 +32257766,Bushwick Gem-Spacious & Quiet for a solo traveller,13954138,Clarissa,Brooklyn,Bushwick,40.69534,-73.91777,Private room,37,7,0,,,2,16 +32260219,private room for up to 2 guests,242094791,Lizhen,Queens,Elmhurst,40.74311,-73.88098,Private room,300,1,1,2019-02-18,0.21,1,89 +32260853,Room in Williamsburg w/ private full bathroom,80354349,Luke,Brooklyn,Williamsburg,40.7079,-73.94608,Private room,75,2,2,2019-05-06,0.85,1,188 +32263166,Welcome to my Lovely Studio.,207640201,Denny,Bronx,Tremont,40.8474,-73.89612,Shared room,50,1,7,2019-05-19,1.54,1,158 +32264646,the haven,8212204,Nitzan,Brooklyn,Crown Heights,40.665,-73.95362,Entire home/apt,64,30,1,2019-03-09,0.25,1,0 +32266199,2400 sq. ft. Luxury Tribeca Loft,4471865,Cuitlahuac,Manhattan,Tribeca,40.71683,-74.00574,Private room,225,1,1,2019-03-21,0.27,1,66 +32267097,Cozy room in brand new condo with rooftop & gym,242115790,Esteban,Brooklyn,Greenpoint,40.73394,-73.95174,Private room,50,2,11,2019-06-23,3.33,1,49 +32267833,Bright room in a spacious apartment,235146087,Ismael,Bronx,Parkchester,40.83099,-73.86951,Private room,35,2,10,2019-06-03,2.10,1,6 +32268791,The Artist Retreat Duplex and Garden 2,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68272,-73.9303,Entire home/apt,170,2,0,,,4,89 +32270481,Private Apartment in the Heart of East Village,217521776,Chin,Manhattan,East Village,40.72716,-73.9783,Entire home/apt,211,30,17,2019-07-07,4.18,1,74 +32270656,Sweet Studio Apartment in Sunnyside,9427289,Steve,Queens,Sunnyside,40.749,-73.91858,Entire home/apt,95,3,15,2019-07-01,4.50,2,23 +32271293,Cozy/ smallish on 143 st & Broadway,61042,Marlon,Manhattan,Harlem,40.82153,-73.95458,Private room,52,5,7,2019-06-21,1.68,6,11 +32272051,Bushwick Loft Transformed into Bohemian Hideaway!,25365575,Nick,Brooklyn,Williamsburg,40.70525,-73.93363,Private room,64,1,29,2019-07-05,6.13,1,13 +32272082,Waterfront apt with Manhattan view and balcony...,152034487,Dino,Manhattan,Roosevelt Island,40.76218,-73.94897,Private room,85,1,20,2019-07-02,8.45,1,104 +32272829,Artist Studio Loft in The Heart of Williamsburg,128810972,Vlasta,Brooklyn,Williamsburg,40.71356,-73.96751,Entire home/apt,200,2,5,2019-05-19,1.05,2,26 +32273036,"Lux room near train station, LGA & Manhattan.",137358866,Kazuya,Queens,Woodside,40.74609,-73.90632,Private room,41,30,0,,,103,230 +32278370,Furnished room in a nice apt 20 mins to Manhattan,212151296,Ella,Queens,Rego Park,40.72871,-73.86014,Private room,54,2,10,2019-07-01,2.34,1,319 +32281241,Cozy NYC apartment,55452987,Mark & Alex,Manhattan,East Harlem,40.79616,-73.93343,Private room,55,5,0,,,1,179 +32281512,"One of a kind, lovely apartment w/private backyard",42483386,Jennifer,Brooklyn,Prospect Heights,40.67959,-73.96736,Entire home/apt,195,1,3,2019-06-30,1.10,1,20 +32282597,"E Flatbush! Cozy, 20 min walk to Dwnstate Hosp",242296495,Angela,Brooklyn,East Flatbush,40.64941,-73.93451,Private room,33,1,14,2019-07-06,3.09,3,37 +32283154,70KO,164144705,Gabriel,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95213,Private room,220,1,0,,,1,178 +32284162,Unique 2 bedroom apt in the center of Williamsburg,6960621,Diego,Brooklyn,Williamsburg,40.71294,-73.96142,Entire home/apt,210,2,27,2019-06-28,5.91,1,188 +32284611,Sun drenched apartment w/ outdoor space.,2201403,Brittany,Brooklyn,Williamsburg,40.71297,-73.95139,Private room,50,30,0,,,1,340 +32284628,Modern Ground FL Event Space on Infamous 5th Ave,11520555,Mike,Manhattan,East Harlem,40.80129,-73.94466,Entire home/apt,612,1,15,2019-06-24,3.52,1,91 +32284910,1.Nice Room near La Guardia AirPort NYC,242322561,Rosy,Queens,East Elmhurst,40.76599,-73.8693,Private room,45,1,51,2019-07-02,11.59,1,66 +32285425,86,207182952,Ali,Brooklyn,Downtown Brooklyn,40.69429,-73.98415,Entire home/apt,650,1,1,2019-03-27,0.29,1,365 +32285578,Spacious NYC experience,242330603,Nellie,Queens,Richmond Hill,40.67863,-73.82648,Entire home/apt,129,180,0,,,1,365 +32286305,Safe quiet midtown home!,203254069,Dave,Manhattan,Upper East Side,40.76324,-73.96382,Entire home/apt,175,3,1,2019-06-19,1,1,3 +32286787,BROOKLYN Bright Williamsburg room Backyard +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70684,-73.94932,Private room,65,1,20,2019-07-04,4.23,4,107 +32286975,Cool&cozy Bushwick apartment with private backyard,34599913,Irina,Brooklyn,Bushwick,40.68723,-73.91451,Entire home/apt,70,6,15,2019-06-18,3.19,1,63 +32287174,"Brownstone Apt, 1min to Subway, 20min to Manhattan",242348374,Ninja & Sung,Brooklyn,Clinton Hill,40.68846,-73.96139,Entire home/apt,195,3,12,2019-07-01,3.71,1,38 +32288165,1 bedroom apt in Harlem 600 sq. feet,96589640,Alberto,Manhattan,East Harlem,40.79658,-73.93284,Entire home/apt,128,7,0,,,1,178 +32291033,The best place .Close to Central Park,110204617,Luiz Charles,Manhattan,Upper East Side,40.77405,-73.9623,Entire home/apt,150,15,0,,,1,162 +32291088,"Bright Den In Modern, New Condo, Sleeps 2",171364485,Leila,Brooklyn,Gowanus,40.68194,-73.98033,Private room,80,3,9,2019-06-15,2.23,1,89 +32291385,Unique & Comfortable Apartment in East Village,12404709,Clinton,Manhattan,East Village,40.72694,-73.98501,Entire home/apt,300,2,2,2019-06-09,0.58,2,0 +32291386,Super Luxury! XL Alcove Studio in heart of Chelsea,21127860,Carol,Manhattan,Chelsea,40.74101,-73.99471,Entire home/apt,215,2,12,2019-06-07,2.55,1,128 +32291500,ROOM X,194839310,Memory,Brooklyn,Bushwick,40.68981,-73.91299,Private room,40,3,8,2019-05-19,1.90,1,0 +32291826,Charming Bedroom in Quintessential Brooklyn Home,36211911,Matthew,Brooklyn,Williamsburg,40.71751,-73.94474,Private room,80,1,0,,,1,0 +32291916,Quite and cozy room in Manatthan,65183994,Camille,Manhattan,East Harlem,40.79795,-73.93448,Private room,77,2,20,2019-06-14,4.38,1,52 +32292122,Comfy bedroom in stylish apt in Clinton Hill,541486,Max,Brooklyn,Bedford-Stuyvesant,40.68594,-73.95658,Private room,95,1,0,,,2,146 +32292131,"Nice bedroom in Astoria, Queens, NY",230230484,Clara,Queens,Astoria,40.76352,-73.92489,Private room,100,3,0,,,2,0 +32292954,Split level Front walk-in Apartment,219333557,Rafael,Queens,East Elmhurst,40.76276,-73.86889,Private room,49,1,6,2019-06-03,1.25,7,55 +32293401,Private garden and luxury 2-bd apartment in Harlem,18338590,Terry,Manhattan,Harlem,40.82869,-73.94468,Entire home/apt,120,30,0,,,1,147 +32293598,Beautiful Mid-century Modern One Bedroom Apartment,42427156,Lisa,Queens,Astoria,40.76624,-73.91475,Entire home/apt,89,3,18,2019-06-27,4.29,1,0 +32293787,"Easy access Mall, Midtown & JFK. Vast room space!",137358866,Kazuya,Queens,Elmhurst,40.74467,-73.8726,Private room,26,30,0,,,103,233 +32297005,AMAZINGLY LOCATED APARTMENT NEAR TIME SQ,242438900,Oscar,Manhattan,Hell's Kitchen,40.76299,-73.98994,Entire home/apt,170,1,39,2019-07-07,8.48,1,64 +32302579,Charming 1 bedroom for female guest,1283375,Shalini,Brooklyn,Prospect Heights,40.67414,-73.9662,Private room,65,2,7,2019-07-02,1.50,1,63 +32302978,Bright 1b on quiet Williamsburg street,2943364,Alison,Brooklyn,Williamsburg,40.71177,-73.96464,Entire home/apt,120,3,4,2019-07-01,0.88,1,8 +32303292,Cozy 2 Bedroom Brownstone Duplex,73234851,Shoshana,Brooklyn,Bedford-Stuyvesant,40.68129,-73.94251,Entire home/apt,150,3,10,2019-05-21,2.78,2,5 +32303671,BROOKLYN! Chic Williamsburg room + Balcony +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70847,-73.9491,Private room,57,1,31,2019-07-02,6.46,4,116 +32303904,Homey sanctuary in classic limestone garden apt.,3308518,Alexis,Brooklyn,Bedford-Stuyvesant,40.68514,-73.92392,Entire home/apt,108,5,9,2019-06-25,2.60,1,99 +32303970,BROOKLYN! Cute Williamsburg room + Balcony +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70766,-73.94974,Private room,70,1,34,2019-07-05,7.03,4,132 +32304108,Carroll Gardens Cozy Nest,152114575,Barbara,Brooklyn,Carroll Gardens,40.68082,-73.99482,Private room,89,4,5,2019-06-16,1.40,1,0 +32304790,Private bedroom/bathroom in Williamsburg GEM !,12741400,Manon,Brooklyn,Williamsburg,40.71208,-73.95126,Private room,99,3,9,2019-06-24,2.03,1,19 +32304889,Sleek Williamsburg Apartment With Gym,64434732,Amy,Brooklyn,Williamsburg,40.7084,-73.94488,Private room,115,1,2,2019-05-18,0.61,1,89 +32304894,A Sweet Retreat in Bedstuy,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69389,-73.94317,Private room,90,3,0,,,3,280 +32305506,Large Studio Doorman Elevator 5241,16098958,Jeremy & Laura,Manhattan,Midtown,40.75629,-73.96548,Entire home/apt,135,30,0,,,96,332 +32305798,Bright Spacious Full Floor Fort Greene Apartment,6771515,Blacky,Brooklyn,Fort Greene,40.69722,-73.97204,Entire home/apt,119,3,2,2019-03-25,0.44,1,5 +32306053,Modern renovated 1 BR in the heart of Manhattan,48339350,Kel,Manhattan,Upper East Side,40.76218,-73.96633,Entire home/apt,136,1,26,2019-06-29,5.91,1,47 +32306527,RM#2-Bright room w/balcony 30 mins NYC & airports,241963980,Deborah,Queens,Jamaica Hills,40.71686,-73.79742,Private room,67,2,25,2019-07-07,6.88,2,318 +32306605,"Sharp UES 2BR w/Indoor pool, Doorman + City views by Blueground",107434423,Blueground,Manhattan,Midtown,40.75901,-73.96198,Entire home/apt,365,30,0,,,232,341 +32307013,LUXURY PRVT ROOM NEAR PROSPECT PARK,28046939,Stephanie,Brooklyn,Kensington,40.6376,-73.97386,Private room,97,1,0,,,1,0 +32308243,Stylish 1 Bedroom in the heart of Brooklyn,241523602,Mary,Brooklyn,Crown Heights,40.66854,-73.95857,Entire home/apt,100,2,9,2019-06-25,4.50,1,0 +32308362,Quiet Mid-Century Modern Apartment,99763169,Ashlin,Manhattan,Upper West Side,40.77995,-73.98464,Entire home/apt,220,2,3,2019-04-29,0.62,1,36 +32308471,Best Nest.,237118012,Jackie,Manhattan,Upper East Side,40.76335,-73.96831,Private room,200,1,0,,,1,179 +32308571,Cozy bedroom minutes to Manhattan,68907781,Dafni,Queens,Astoria,40.76837,-73.92712,Private room,45,2,4,2019-06-29,1.15,3,31 +32309292,Cozy room with private entrance in Harlem.,6105036,George,Manhattan,Harlem,40.80521,-73.95137,Private room,145,1,14,2019-06-19,2.98,3,113 +32309885,Hidden GEM in the CENTRAL location,123357281,Maria,Manhattan,West Village,40.73957,-74.00241,Entire home/apt,195,2,4,2019-05-07,0.99,1,0 +32310285,Room in Heart of NYC Art & Nightlife !,9816503,Mick,Manhattan,Nolita,40.72214,-73.99675,Private room,75,3,9,2019-06-07,2.73,1,67 +32310645,Brooklyn Two Bedroom APT near the TRAIN,242491187,Vlad,Brooklyn,Kensington,40.64265,-73.98355,Entire home/apt,160,3,2,2019-05-30,0.79,1,177 +32310733,Crash Space in BK for your NYC Adventure!,40146897,Eric,Brooklyn,Crown Heights,40.67302,-73.92134,Shared room,25,2,1,2019-02-20,0.21,5,29 +32311383,The Projects Gallery,44262594,Sam,Brooklyn,Fort Greene,40.68495,-73.97438,Private room,85,4,0,,,1,365 +32312452,Beautiful big ROOM/Safe&comfortable/ near LG& JFK,169587048,Jay/Carolina Bastidas Family,Brooklyn,Cypress Hills,40.68446,-73.87801,Private room,38,4,10,2019-06-26,2.44,2,307 +32313314,Excellent apartment/ awesome location,33568073,Jordan,Brooklyn,South Slope,40.66736,-73.98508,Entire home/apt,150,5,0,,,1,8 +32314460,lower east side home,27923277,Xu,Manhattan,Lower East Side,40.7127,-73.98854,Private room,75,4,9,2019-06-23,1.96,1,34 +32314474,Bedroom in middle of BK! Great location!,26362511,Katya,Brooklyn,Bushwick,40.69266,-73.92058,Private room,60,1,0,,,1,16 +32314821,Huge room in Creative Colorful Modern apartment,3703456,Brooke,Brooklyn,Bedford-Stuyvesant,40.69619,-73.94242,Private room,55,1,6,2019-04-28,1.29,2,22 +32315112,TWO BEDROOM APARTMENT IN BEAUTIFUL BED-STUY,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94483,Entire home/apt,100,3,4,2019-06-30,1.04,3,6 +32316532,Cozy Quaint Brooklyn Apartment,187877117,Skylar,Brooklyn,Crown Heights,40.67111,-73.92237,Entire home/apt,125,2,11,2019-07-07,2.60,1,128 +32316672,"Cozy space, centrally located!",24697585,Martin,Manhattan,Kips Bay,40.73951,-73.98216,Entire home/apt,140,30,0,,,1,36 +32317538,"SPACIOUS Floor-Through Loft in Flatiron, NYC",53170355,Anika,Manhattan,Gramercy,40.73833,-73.98943,Entire home/apt,1200,2,2,2019-05-05,0.70,1,166 +32317602,LARGE 2 Bedroom Midtown Manhattan Apartment!,242622786,Ethan,Manhattan,Hell's Kitchen,40.76262,-73.98865,Entire home/apt,177,1,7,2019-07-04,1.74,1,8 +32317628,"Comfortable, Quiet, close to Airports, Manhattan",242622555,J,Queens,Maspeth,40.73218,-73.89633,Private room,50,1,0,,,1,0 +32326698,Washington Suite at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73672,-74.00539,Private room,999,1,3,2019-07-01,2.43,5,329 +32327326,Tabor Room at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73697,-74.00343,Private room,999,1,2,2019-05-26,0.59,5,334 +32327466,Lahore Suite at Incentra Village House,241889662,Incentra,Manhattan,West Village,40.73897,-74.00346,Private room,999,1,3,2019-05-19,0.70,5,341 +32329737,One stop away manhattan #2,91605357,Tina,Brooklyn,Williamsburg,40.70738,-73.95569,Private room,60,2,26,2019-06-29,6.50,2,21 +32332953,Glorious Bedstuy: Large room with a work station.,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9432,Private room,60,1,22,2019-07-07,4.49,4,282 +32333010,Brownstone Brooklyn with a View,158200817,Beka And Strat,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.9588,Private room,158,2,3,2019-06-23,3,2,179 +32333590,LES is more,197676391,Law,Manhattan,Lower East Side,40.71701,-73.98874,Entire home/apt,140,1,14,2019-07-02,4.20,1,9 +32333972,Pacheco’s House.,242758145,Adrian,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.9616,Private room,60,2,6,2019-05-20,1.26,1,144 +32334037,Bedstuy Blues: Room for one or two,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69315,-73.94191,Private room,60,1,39,2019-07-06,7.96,4,301 +32334635,Stylish West Village Artists Studio Penthouse,22720650,Duane,Manhattan,West Village,40.73674,-74.00556,Entire home/apt,130,30,0,,,2,309 +32337194,Uptown Riverside Drive Apartment,194981782,Ana,Manhattan,Harlem,40.82666,-73.95175,Private room,140,3,1,2019-04-21,0.38,1,120 +32338134,Cozy Greenpoint Getaway,13543967,Paulina,Brooklyn,Greenpoint,40.72912,-73.95203,Private room,100,3,4,2019-06-30,1.36,1,53 +32338520,Stylish apartment in a Brooklyn brownstone,6635392,Patrick,Brooklyn,Bedford-Stuyvesant,40.68597,-73.93873,Entire home/apt,125,5,4,2019-07-01,1.20,1,0 +32340585,Enjoy privacy & comfort in Washington Heights 1BR,17174170,Angela,Manhattan,Washington Heights,40.85197,-73.92853,Entire home/apt,74,1,4,2019-03-24,0.95,1,0 +32341313,Cozy Room in Ridgewood/Bushwick! 25 Mins to NYC,135280693,John,Queens,Ridgewood,40.70833,-73.91039,Private room,65,3,3,2019-06-24,1.29,2,342 +32342394,Convenient 2 bedroom apt near Times Sq. 1C,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99667,Entire home/apt,500,3,2,2019-05-26,0.81,47,352 +32342541,Room Nearby train station to Times Square NYC,242831353,Blanca,Queens,Long Island City,40.75204,-73.9226,Private room,30,3,14,2019-06-29,3.41,1,77 +32342911,3 bedroom apartment 10m away from Times Sq. 2C,190921808,John,Manhattan,Hell's Kitchen,40.75572,-73.99509,Entire home/apt,650,3,1,2019-03-12,0.25,47,297 +32343097,Rare 1BR Artist's Apt. Chinatown-L. Italy-NoLita,178631153,Di Di,Manhattan,Nolita,40.71996,-73.99548,Entire home/apt,125,2,5,2019-04-14,1.10,1,0 +32343635,LARGE BEDROOM IN BRONX DOWN THE BLOCK FROM 2 TRAIN,109189054,Camille,Bronx,Wakefield,40.88805,-73.86451,Private room,65,1,0,,,1,0 +32343903,East Williamsburg Quiet Getaway or Workspace,241870258,Reesey,Brooklyn,Williamsburg,40.71536,-73.93662,Private room,80,1,10,2019-05-07,2.11,2,0 +32345140,✤ NEWLY RENOVATED ✤ TOP LOCATION ✤,229478744,Yara,Manhattan,Hell's Kitchen,40.76332,-73.9915,Entire home/apt,379,2,11,2019-06-21,3.30,1,252 +32347436,Upper West Side 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.7813,-73.97927,Entire home/apt,189,30,0,,,232,189 +32347622,"Spacious Midtown East 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.7493,-73.97376,Entire home/apt,321,30,0,,,232,83 +32347796,"Crisp Heart of Chelsea Studio, w/ Roofdeck + Gym, by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74112,-73.99483,Entire home/apt,285,30,0,,,232,283 +32349835,NYC - PRIVATE room in Bay Ridge.,78258843,Jim,Brooklyn,Bay Ridge,40.62955,-74.02429,Private room,40,6,3,2019-04-21,0.82,1,62 +32350835,Sunnyside room mins to Times Square & JFK.,137358866,Kazuya,Queens,Sunnyside,40.74658,-73.92007,Private room,42,30,1,2019-04-22,0.38,103,0 +32354513,Brooklyn artistic studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68396,-73.95267,Entire home/apt,90,1,14,2019-06-10,3.09,5,85 +32355251,PRIVATE bath & entrance in hip Greenpoint,56470374,Jacqueline,Brooklyn,Greenpoint,40.7293,-73.95075,Private room,145,21,1,2019-07-01,1,1,343 +32355657,Amazing Apt in West Village NYC,230191262,Lorena,Manhattan,West Village,40.73938,-74.00176,Entire home/apt,400,6,4,2019-07-05,0.83,1,0 +32355744,Red Door Townhouse — Heart of The Upper East Side,242933360,Jennifer,Manhattan,Upper East Side,40.77202,-73.95821,Private room,150,1,11,2019-06-20,2.92,1,81 +32356294,Large Bedroom with Private Entrance,2487323,Maddy,Brooklyn,Greenpoint,40.73446,-73.9523,Private room,61,14,0,,,1,157 +32356476,Brooklyn palace,22749766,Raphael,Brooklyn,Williamsburg,40.7085,-73.94966,Private room,50,1,1,2019-03-11,0.25,1,0 +32356850,Spacious 1 Bedroom in the Heart of Williamsburg,221177870,Austin,Brooklyn,Williamsburg,40.71415,-73.93857,Entire home/apt,95,1,5,2019-05-27,1.20,1,0 +32358081,Brand New!XL 1 BR!Prime Midtown~Elv bldg~BestValue,162280872,Izi,Manhattan,Hell's Kitchen,40.76099,-73.99554,Entire home/apt,160,30,0,,,13,310 +32358099,sweet room to relax,236659049,Yesenia,Brooklyn,Bushwick,40.69169,-73.90429,Private room,40,1,3,2019-04-20,0.69,4,0 +32358780,comfortable room for guests,236659049,Yesenia,Brooklyn,Bushwick,40.68991,-73.90495,Private room,40,1,8,2019-04-10,1.67,4,0 +32359401,NEW renovated bathroom & Private backyard,19303369,Hiroki,Queens,Elmhurst,40.74503,-73.87099,Private room,28,30,0,,,37,1 +32361370,Large Private Bedroom Near Tons Of Transit!,242962235,Yuval,Queens,Ridgewood,40.70896,-73.8956,Private room,42,30,2,2019-05-04,0.60,23,204 +32361532,"Chic Private Bedroom in Ridgewood, NY by 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70892,-73.89502,Private room,42,30,0,,,23,220 +32361604,"Bold & Beautiful Private Bedroom, Ridgewood Queens",242962235,Yuval,Queens,Ridgewood,40.70813,-73.89664,Private room,42,30,2,2019-06-07,1.62,23,208 +32361650,"Trendy Private Room in Prime NY, 3 Train Nearby!",242962235,Yuval,Queens,Ridgewood,40.70727,-73.89627,Private room,42,30,0,,,23,332 +32361746,"Stylish Private Bedroom in Ridgewood, NY",242962235,Yuval,Queens,Ridgewood,40.70906,-73.89511,Private room,37,30,1,2019-03-28,0.29,23,318 +32362267,"Duplex apartment near JFK, LGA, train & the city",5592622,Christina,Queens,Astoria,40.75605,-73.91341,Entire home/apt,225,1,4,2019-06-03,1.12,5,89 +32363924,"Private Room in Bushwick, Brooklyn",2210374,Nathalie,Brooklyn,Bushwick,40.70188,-73.9258,Private room,43,1,2,2019-06-16,0.61,1,0 +32364378,Grand Central 1 bedroom apartment,56025976,Stefy,Manhattan,Midtown,40.75337,-73.97334,Entire home/apt,160,2,7,2019-06-23,1.78,1,12 +32364475,TIMES SQUARE!!! COZY PRIVATE ROOM (for up to 3)!,97131241,Marccelo Gabriel,Manhattan,Theater District,40.76282,-73.98236,Private room,115,1,27,2019-06-23,5.79,1,94 +32364762,Bronx,19303369,Hiroki,Bronx,Kingsbridge,40.88474,-73.90321,Private room,27,30,0,,,37,0 +32364848,A Place for Pet Lovers,24879404,Jackson,Brooklyn,Flatbush,40.64612,-73.9608,Private room,40,1,7,2019-05-31,1.86,1,61 +32365337,Hidden 2 Bedrm Gem in SOBRO! Minutes to NYC!,242571852,Julio,Bronx,Longwood,40.82671,-73.90643,Entire home/apt,159,2,7,2019-06-30,2.26,1,118 +32365434,The Luxury Spot! Brooklyn Prime Location!,86005213,Yaevette,Brooklyn,Crown Heights,40.67066,-73.94801,Entire home/apt,150,3,2,2019-06-30,2,1,70 +32365636,Water Front Duplex with Amazing Views and Parking.,132163538,Alex,Brooklyn,Bay Ridge,40.6348,-74.03788,Entire home/apt,155,28,0,,,1,339 +32365738,Rare Gem - Modern Lux Studio,113856483,Niky,Manhattan,Financial District,40.70399,-74.00662,Entire home/apt,249,2,13,2019-07-01,3.12,1,227 +32366042,Huge Private Room near Central Park with KEY,243026919,Kiara,Manhattan,East Harlem,40.80801,-73.94011,Private room,85,1,14,2019-06-27,6.27,2,0 +32367010,Romantic Top Floor Brownstone in Crown Heights,237508892,Kendrick,Brooklyn,Crown Heights,40.66978,-73.95009,Entire home/apt,188,1,10,2019-06-18,2.40,1,199 +32370730,CITY VIEWS LARGE APARTMENT,243037591,Maria,Manhattan,Flatiron District,40.74189,-73.99019,Entire home/apt,488,3,14,2019-07-02,3.65,1,76 +32371477,Extra Large Room Close to Midtown,61042,Marlon,Manhattan,East Harlem,40.7996,-73.94216,Private room,55,5,2,2019-06-22,2,6,6 +32371865,LUXURY 2 BR WITH PRIVATE PATIO IN CHELSEA-WEST21ST,200380610,Pranjal,Manhattan,Chelsea,40.74119,-73.99536,Entire home/apt,425,30,0,,,65,327 +32373990,Warm Cozy Home W/Backyard,227836692,Derrik,Brooklyn,East Flatbush,40.65134,-73.94309,Private room,133,1,0,,,1,89 +32374666,Get away for the weekend in a cozy private room,241708736,Jurany,Manhattan,Morningside Heights,40.80511,-73.95824,Private room,300,3,0,,,1,364 +32377751,Central Location in NYC - Walk to Central Park,38483415,Florentino,Manhattan,East Harlem,40.80108,-73.94602,Private room,79,1,9,2019-05-25,2.23,4,365 +32378301,Charming Studio in Brooklyn Heights,44948759,Caroline,Brooklyn,Brooklyn Heights,40.69757,-73.99335,Entire home/apt,100,1,1,2019-03-13,0.25,1,0 +32379092,Brooklyn spacious Bedroom (D) close to the Subways,243129380,Nubia,Brooklyn,Bushwick,40.68587,-73.9082,Private room,57,2,23,2019-07-02,5.11,4,114 +32379410,NYC like Home !,44123891,Elizabeth,Manhattan,Upper East Side,40.77189,-73.94694,Entire home/apt,260,7,2,2019-05-02,0.75,1,76 +32379480,Celebrity Central Park townhouse designer's touch.,243132541,Jenny,Manhattan,Upper East Side,40.76262,-73.96443,Entire home/apt,1497,1,10,2019-06-30,2.36,1,363 +32379695,Brooklyn Small but cozy bedroom C close to Subways,243129380,Nubia,Brooklyn,Bushwick,40.6872,-73.90895,Private room,55,2,18,2019-06-29,4.00,4,188 +32380039,Modern room B into heart of Brooklyn close Subways,243129380,Nubia,Brooklyn,Bushwick,40.68772,-73.90808,Private room,51,2,15,2019-06-16,3.33,4,111 +32380547,"Quiet private room fabulous apt, perfect location",243131091,Irina,Manhattan,Upper West Side,40.77422,-73.97778,Private room,95,2,13,2019-06-22,3.61,1,6 +32381021,Artist LOFT in East Williamsburg!,51509098,Aushra,Brooklyn,Bushwick,40.70218,-73.93582,Entire home/apt,125,5,1,2019-03-04,0.24,1,11 +32381165,"Elegant & Luxurious, Clean & Cheerful entire house",243147506,Peter,Staten Island,Stapleton,40.6279,-74.08202,Entire home/apt,275,2,11,2019-07-03,3.51,1,182 +32382542,Home away from home lodging #2 with 2 Bed- 2 guest,225790094,Vena,Brooklyn,East Flatbush,40.64929,-73.92685,Private room,35,1,7,2019-07-01,1.47,3,365 +32383114,Home away from home lodging 3 (2 Beds - 2 guests),225790094,Vena,Brooklyn,East Flatbush,40.65015,-73.92803,Private room,35,1,7,2019-06-23,1.84,3,351 +32384354,Shared Room - All Female - Great Roommates!,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67652,-73.94016,Shared room,26,15,2,2019-05-31,0.59,2,23 +32384721,Shared Room: All Male - Coed Apt-Great Roommates,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67692,-73.94038,Shared room,26,20,2,2019-05-13,0.75,2,49 +32385315,"Warm , Beautiful and cozy 1Br in LES",243181741,Samia,Manhattan,Two Bridges,40.71257,-73.995,Entire home/apt,175,2,15,2019-07-01,3.44,1,90 +32385720,Elevated Living in the East Village,141508996,Britt,Manhattan,East Village,40.72498,-73.97604,Private room,95,1,6,2019-06-17,1.49,1,160 +32387391,Rent my unique 2BR Condo in Prime Williamsburg,4427256,Dani,Brooklyn,Williamsburg,40.71581,-73.95546,Entire home/apt,215,90,0,,,1,328 +32392636,Sun drenched 1 bedroom furnished,331328,Amir,Manhattan,East Harlem,40.80526,-73.93818,Entire home/apt,95,14,2,2019-05-30,0.60,3,3 +32397072,WILLIAMSBURG PRIME LOCATION-AMAZING LIGHT!,201791531,Monica,Brooklyn,Williamsburg,40.71682,-73.95446,Private room,66,182,0,,,1,157 +32398138,"Modern and spacious apt in Kips Bay, NYC!",30283594,Kara,Manhattan,Kips Bay,40.74378,-73.97356,Entire home/apt,239,29,0,,,121,364 +32398156,Comfortable stay-beautiful 1 bedroom apt in NYC!,30283594,Kara,Manhattan,Kips Bay,40.74361,-73.97523,Entire home/apt,239,29,0,,,121,364 +32398174,"Gorgeous Studio apt in the heart of Kips Bay, NYC!",30283594,Kara,Manhattan,Kips Bay,40.74271,-73.97533,Entire home/apt,209,29,0,,,121,184 +32399523,Premium FiDi 1BR w/ Doorman + Wraparound Roofdeck by Blueground,107434423,Blueground,Manhattan,Financial District,40.70399,-74.00908,Entire home/apt,306,90,0,,,232,281 +32399591,Cozy bedroom in the best location in New York,243297214,Coronado,Brooklyn,Williamsburg,40.71084,-73.95875,Private room,60,4,3,2019-06-09,0.76,1,0 +32400196,Entire apartment in townhouse,110062861,Anwar,Manhattan,Harlem,40.81461,-73.94635,Entire home/apt,110,4,5,2019-05-27,1.23,2,214 +32400749,Gorgeous 7BR/3.5BA Bohemian Flat - PRIME LOCATION,25318403,Bethany,Brooklyn,Williamsburg,40.71244,-73.9581,Entire home/apt,750,3,0,,,3,7 +32401236,fabulous & large bedroom - East Williamsburg,238766198,Lily,Brooklyn,Williamsburg,40.71235,-73.93963,Private room,67,2,9,2019-06-14,1.99,1,345 +32401422,"Private Studio for Events, Recording & Exhibitions",155993704,Mariah,Brooklyn,Bushwick,40.68385,-73.90653,Private room,75,1,3,2019-05-26,0.93,1,364 +32401972,Chic Village Apt!,5611846,Bradley,Manhattan,Greenwich Village,40.72847,-74.00094,Entire home/apt,200,3,0,,,1,0 +32402674,Apartment,210218219,Ruth,Bronx,Longwood,40.81694,-73.89627,Private room,60,1,8,2019-05-25,1.97,1,308 +32402856,"POSH COBBLE HILL APARTMENT, 5 MINUTES TO MANHATTAN",153565366,Hugo,Brooklyn,Carroll Gardens,40.68391,-73.99226,Entire home/apt,190,4,12,2019-07-04,3.33,3,207 +32402997,Charming private room in Brownstone apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68557,-73.99829,Private room,85,2,11,2019-07-01,2.56,2,111 +32403617,NEW! Modern 1BR Apartment in Heart of NYC!,79729447,Joe,Bronx,Throgs Neck,40.8149,-73.81545,Entire home/apt,125,3,1,2019-06-09,1,1,365 +32403665,3rd floor Master Suite,22819324,Patricia,Brooklyn,Bushwick,40.69678,-73.90828,Private room,50,2,1,2019-06-25,1,2,0 +32403772,"Nolita (SoHo) - Lovely, brand new apartment",243333842,Matthias,Manhattan,Nolita,40.72186,-73.99696,Entire home/apt,172,2,8,2019-06-28,1.98,1,42 +32404550,Spacious standalone room in the heart of Astoria,212776359,Larissa,Queens,Astoria,40.75836,-73.9175,Private room,80,2,14,2019-07-05,3.26,1,51 +32404978,"Beautiful, Sunny Private Room in Harlem",18562674,Belkis,Manhattan,Harlem,40.8276,-73.94457,Private room,58,1,4,2019-06-07,0.85,2,365 +32405524,Spacious New Apartment- BROOKLYN,102692931,Brynlee & Lawrence,Brooklyn,Cypress Hills,40.68632,-73.87792,Entire home/apt,179,4,10,2019-07-03,3.37,1,17 +32406106,"PRIVATE BIG ROOM w. Queen Bed, and quiet roommates",192383231,Bryan,Bronx,Melrose,40.81894,-73.91418,Private room,49,2,2,2019-06-30,2,1,0 +32406935,Bushwick Brooklyn NY Sunny Apartment,131476075,Lakisha,Brooklyn,Bushwick,40.68757,-73.91183,Entire home/apt,166,1,11,2019-06-30,2.56,8,177 +32407324,"NEW Luxury 1BR, Floor to ceiling windows, balcony",122559140,Javicia,Brooklyn,Fort Greene,40.68912,-73.97903,Entire home/apt,133,25,1,2019-07-01,1,1,0 +32407462,15min to Times Square!! Lux apartment 3 Bedrooms,243367528,Lucca & Paula,Queens,Astoria,40.76636,-73.91366,Entire home/apt,220,1,12,2019-07-04,2.81,7,308 +32408593,15min to Times Square !! Charming Bedroom 03,243367528,Lucca & Paula,Queens,Astoria,40.76514,-73.91212,Private room,62,1,16,2019-06-21,3.38,7,308 +32408700,Astoria 1 Bedroom Apt 10 minutes from LGA Airport,23260853,Rich,Queens,Astoria,40.76889,-73.92957,Entire home/apt,125,2,4,2019-06-17,0.92,1,14 +32409168,15 minutes to Times Square!!! Red Lux bedroom,243367528,Lucca & Paula,Queens,Astoria,40.76575,-73.91366,Private room,80,1,21,2019-06-09,4.53,7,313 +32409454,cozy bedroom 01 in the heart of Astoria- Queens,243367528,Lucca & Paula,Queens,Astoria,40.76472,-73.91358,Private room,70,1,14,2019-07-07,3.26,7,313 +32409562,Sofa-bed in apartment in Astoria! Near Manhattan!,243367528,Lucca & Paula,Queens,Astoria,40.76466,-73.91274,Shared room,40,1,17,2019-06-08,3.59,7,313 +32414346,Luxury 1bd in best location (long-term rental),3048319,Carlos,Manhattan,Hell's Kitchen,40.76188,-73.99925,Entire home/apt,250,30,0,,,2,342 +32414842,A little peace of heaven in the Bronx,238959309,Angel,Bronx,Longwood,40.82095,-73.89522,Private room,100,2,0,,,1,179 +32416142,Garden Apt in fully renovated town house.,1543357,Anna,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95203,Entire home/apt,179,1,18,2019-07-06,4.66,1,323 +32418651,"Bright, Modern Designer's Pad in East Village",5945833,Daniel,Manhattan,East Village,40.72888,-73.98109,Entire home/apt,240,3,7,2019-05-29,1.79,1,99 +32419542,JFK AIRPORT DELIGHT,243466968,Owen,Queens,Jamaica,40.67355,-73.7834,Private room,55,2,19,2019-06-26,4.22,1,0 +32420737,"Classic UWS doorman 3 BR. River, elevator, dogs",231704,Judith,Manhattan,Upper West Side,40.7897,-73.97909,Entire home/apt,317,30,0,,,3,358 +32420792,3 bedroom luxury Apt by TimeSquare & Grand Central,243487765,Norma,Manhattan,Murray Hill,40.75097,-73.97895,Entire home/apt,515,2,31,2019-07-05,6.84,1,163 +32420992,Large Brooklyn Room! A/C & Rooftop Manhattan Views,15336905,Michelle,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9356,Private room,57,2,0,,,1,61 +32421217,"Canadian Rustic Modern Loft, Greenpoint",189114879,Whitney&Theo,Brooklyn,Greenpoint,40.72751,-73.95693,Entire home/apt,175,2,2,2019-05-27,0.56,1,103 +32422767,Big and beautiful room in big and beautiful Ap.,133030103,Amaury,Bronx,Wakefield,40.89308,-73.85076,Private room,41,7,2,2019-05-10,0.58,1,357 +32422880,Amazing huge 2BR apartment in Park Slope,157430725,Fiona,Brooklyn,Gowanus,40.66757,-73.99487,Entire home/apt,180,2,5,2019-05-10,1.72,3,0 +32423962,Cozy&Bright room in Queens♪Good subway access!,200239515,Shogo,Queens,Woodside,40.74482,-73.89256,Private room,35,30,0,,,15,61 +32424818,Kay's Cozy Getaway,243526828,Kay,Brooklyn,Canarsie,40.63979,-73.89647,Entire home/apt,200,3,3,2019-06-27,1.13,1,357 +32425720,Cozy Private room in Bedstuy Artist duplex,242544120,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68226,-73.92643,Private room,60,3,1,2019-03-13,0.25,1,0 +32426202,Modern 2 Bedroom Walk in. 3 min from Subway !,9289171,Chaim,Brooklyn,Crown Heights,40.66916,-73.93182,Entire home/apt,125,2,20,2019-07-07,9.68,1,87 +32426419,Upper west/huge confortable Central Park ColumbiaU,206758177,Miguel,Manhattan,Upper West Side,40.80047,-73.96064,Entire home/apt,200,1,22,2019-05-13,4.89,3,0 +32426480,Spread Love it's the Brooklyn Way,40846857,Kaylin,Brooklyn,Crown Heights,40.67241,-73.95041,Private room,70,2,0,,,2,66 +32426943,Convenience Cozy Apartment- Hells kitchen,10120673,Alexo & JC,Manhattan,Hell's Kitchen,40.76121,-73.98813,Entire home/apt,220,5,5,2019-06-07,1.95,2,1 +32427203,Better Than Hostel semi-private artsy room,226314382,Dina,Brooklyn,Flatbush,40.65292,-73.95677,Shared room,25,1,8,2019-04-07,1.73,1,0 +32427478,Brooklyn home,243556325,Sa,Brooklyn,Bensonhurst,40.61268,-73.98857,Entire home/apt,100,30,0,,,1,312 +32428327,Huge Bedroom in Gorgeous Sunlit-Apartment in Wahi!,112430492,Justin,Manhattan,Washington Heights,40.83591,-73.94033,Private room,75,1,5,2019-06-29,1.19,1,0 +32428466,Top floor apt in luxury building - lease takeover,39427266,Alison,Queens,Rego Park,40.73288,-73.86438,Entire home/apt,108,210,0,,,1,270 +32434711,Studio Resort in Manhattan-Wyndham Midtown 45,243627109,Veronica,Manhattan,Midtown,40.75169,-73.97302,Private room,250,4,2,2019-05-21,1.15,1,76 +32437052,"Cozy room in the heart of Briarwood, Queens NY",49625765,Ilham,Queens,Briarwood,40.709,-73.81431,Private room,62,2,9,2019-06-09,2.33,1,13 +32437992,"Private, Sunny Brooklyn Bedroom in 2 BR Apartment",158739,Zahavah Cara,Brooklyn,Prospect-Lefferts Gardens,40.66311,-73.94356,Private room,65,2,2,2019-07-01,1.15,2,81 +32438036,Sunny 3 Story 5BR 5Bath Townhouse Upper East Side!,243655782,Pam And Ray,Manhattan,Upper East Side,40.77534,-73.95287,Private room,1250,5,0,,,1,116 +32439523,Manhattan at its best!,10434070,Pit,Manhattan,Morningside Heights,40.80419,-73.96603,Entire home/apt,180,5,4,2019-03-23,0.85,1,4 +32439871,Bright room near shops and subway well located,79499558,Robertina,Queens,Jackson Heights,40.75135,-73.88378,Private room,85,4,14,2019-07-02,3.72,4,50 +32441129,Beautiful - Art Filled - Sun Filled - Luxurious,1403333,Brett,Manhattan,NoHo,40.72612,-73.99494,Entire home/apt,325,2,5,2019-05-27,1.24,1,31 +32441243,Comfortable apartment in the heart of Brooklyn.,243687825,Alejandro,Brooklyn,Crown Heights,40.67527,-73.90862,Entire home/apt,104,1,28,2019-07-06,6.13,1,174 +32441428,Bright Private Bedroom in Classic Harlem Apt,17578498,Adrienne,Manhattan,East Harlem,40.79876,-73.93802,Private room,77,2,9,2019-05-28,2.50,1,0 +32441769,Cozy Room in Huge place in Prospect Heights,10557160,Alex,Brooklyn,Crown Heights,40.675,-73.9631,Private room,50,3,10,2019-06-26,2.19,1,0 +32443972,Bright/Cozy 1 Bedroom Condo in Heart of Brooklyn!,243716532,Daniel,Brooklyn,Bedford-Stuyvesant,40.69067,-73.95823,Entire home/apt,120,5,12,2019-07-07,3.87,1,137 +32444517,Sunny Spacious Parkside Pad,24979823,Jen,Brooklyn,Prospect-Lefferts Gardens,40.65504,-73.96113,Private room,70,3,0,,,1,50 +32445673,Sunny King-Sized Manhattan 1BR w/Views Awaits You!,28556029,Cheyenne,Manhattan,East Harlem,40.81213,-73.93752,Entire home/apt,95,3,16,2019-06-30,4.07,1,0 +32446089,Spacious apartment right by the Subway,233732841,Ori,Manhattan,Washington Heights,40.83495,-73.94682,Entire home/apt,150,1,0,,,2,79 +32446458,Bedroom near train station,243741999,Luz,Queens,Jackson Heights,40.74796,-73.88399,Private room,42,2,20,2019-06-25,4.48,1,80 +32446696,Modern & Cozy 1 Bedroom Apt in the heart of NYC,241545382,Frankie,Manhattan,Hell's Kitchen,40.76142,-73.98987,Entire home/apt,180,3,17,2019-06-19,3.75,1,281 +32447993,Private room in cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73238,-73.99954,Private room,110,1,13,2019-07-02,3.00,2,0 +32448627,Lola's Casa,243766178,Lola,Bronx,Westchester Square,40.83619,-73.84916,Private room,52,4,1,2019-02-22,0.22,1,0 +32449378,Shared Apartment - 1 Bedroom,12198291,Nick,Manhattan,Chelsea,40.74458,-74.00644,Shared room,180,1,0,,,1,0 +32450257,Quiet Upper Manhattan Apt - Whole Apt Not Shared!!,1197307,Evie,Manhattan,Washington Heights,40.85326,-73.93813,Entire home/apt,80,3,0,,,1,12 +32450788,Artistic Modern Sanctuary -- Spacious & Private,243787623,Howard,Brooklyn,Bushwick,40.6994,-73.92186,Entire home/apt,90,7,10,2019-06-23,2.26,1,66 +32450910,Large Private Room near Central Park with Key,243026919,Kiara,Manhattan,East Harlem,40.80584,-73.94066,Private room,79,1,16,2019-07-01,7.38,2,93 +32454559,Lovely 1 BDRM at Upper East side prime location,55202404,Regina,Manhattan,Upper East Side,40.77914,-73.95049,Entire home/apt,100,30,1,2019-05-02,0.44,1,50 +32457051,94TH STREET STUDIO SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78385,-73.94828,Private room,420,2,0,,,6,351 +32458305,94TH STREET BIG 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78213,-73.94839,Private room,500,2,0,,,6,351 +32459287,Gorgeous Sun Filled Creative Loft! Clean & Unique!,1575044,Dana,Brooklyn,Bushwick,40.70176,-73.92684,Entire home/apt,135,3,7,2019-06-16,1.96,1,117 +32460177,Cozy and Hip Room in Brooklyn close to Subway (D),238119405,Julia,Brooklyn,Bushwick,40.6835,-73.9074,Private room,51,1,11,2019-06-21,2.41,5,166 +32461960,Riverdale Pad,163737392,K,Bronx,Fieldston,40.896,-73.89964,Private room,64,1,11,2019-06-27,3.47,2,358 +32463145,BETTER SIDE OF BED-STUY,243875619,David,Brooklyn,Bedford-Stuyvesant,40.68834,-73.9444,Private room,48,1,22,2019-07-07,5.37,2,257 +32463707,Not too late! Great place in Chelsea,58483,Deni,Manhattan,West Village,40.73988,-74.00356,Entire home/apt,500,2,0,,,1,0 +32463948,Amazing East Village Loft,238779678,Dustin,Manhattan,East Village,40.72704,-73.98916,Private room,55,30,0,,,9,365 +32464225,Stunning East Village Loft,238779678,Dustin,Manhattan,East Village,40.72586,-73.98874,Private room,55,30,0,,,9,332 +32464368,"Sunny, Massive East Village Loft",238779678,Dustin,Manhattan,East Village,40.72625,-73.98884,Private room,55,30,0,,,9,340 +32465145,Sonder | The Nash | Design Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74697,-73.97537,Entire home/apt,282,2,7,2019-05-17,1.93,327,125 +32466156,Sonder | The Nash | Smart 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7472,-73.97418,Entire home/apt,192,29,0,,,327,363 +32466179,Sonder | The Nash | Classic 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74898,-73.97534,Entire home/apt,202,29,0,,,327,365 +32466246,Sonder | The Nash | Cozy Studio + Fitness Room,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74927,-73.9739,Entire home/apt,169,29,2,2019-04-30,0.60,327,332 +32466254,Sonder | The Nash | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74706,-73.97594,Entire home/apt,200,29,0,,,327,311 +32466398,Sonder | The Nash | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74864,-73.97407,Entire home/apt,169,29,1,2019-05-08,0.48,327,220 +32466401,Sonder | The Nash | Modern Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74915,-73.97557,Entire home/apt,172,29,2,2019-05-30,0.75,327,338 +32466450,Union Square Industrial Loft Apartment - 1 Bedroom,182709,S,Manhattan,East Village,40.73147,-73.98825,Entire home/apt,199,1,8,2019-07-03,6.49,1,65 +32466500,Sonder | The Nash | Relaxed 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74781,-73.97601,Entire home/apt,202,29,1,2019-05-06,0.47,327,338 +32466675,Beautiful APT. mins from JFK/ mins from the city!,64106093,Jorge,Brooklyn,Cypress Hills,40.67715,-73.86672,Entire home/apt,150,2,11,2019-07-07,3.93,1,217 +32466778,Sonder | The Nash | Warm Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74725,-73.97404,Entire home/apt,160,29,0,,,327,318 +32467087,Sonder | The Nash | Lively 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74918,-73.97379,Entire home/apt,204,29,0,,,327,158 +32467835,SPACIOUS & COMFY 3 BDROM/2 BATH APT CLOSE 2 SUBWAY,216419980,Billie,Manhattan,Harlem,40.8242,-73.95106,Entire home/apt,112,30,0,,,1,365 +32468788,Huge 1-bedroom available from April through July,33783958,Paul,Brooklyn,Prospect Heights,40.68106,-73.97304,Entire home/apt,150,4,1,2019-04-27,0.41,1,63 +32469151,"Private patio, sunlight filled, gorgeous studio!",243931948,Alli,Brooklyn,Williamsburg,40.71765,-73.96254,Entire home/apt,179,2,2,2019-05-26,0.47,1,2 +32469620,Cute room with private rooftop near Central Park,39079982,Mansi,Manhattan,East Harlem,40.7908,-73.94491,Private room,99,1,6,2019-04-25,1.49,1,0 +32470327,Chic & Sunny Prospect Park 1-Bedroom,243944082,Mani,Brooklyn,Flatbush,40.65215,-73.9647,Entire home/apt,110,13,0,,,1,8 +32470732,New Renovate in 2019 & Everything is New,19303369,Hiroki,Manhattan,Inwood,40.8647,-73.92353,Private room,29,30,0,,,37,1 +32471373,Cozy apartment on the Upper East Side,130827164,Julia,Manhattan,Upper East Side,40.7718,-73.95556,Private room,150,2,5,2019-06-21,1.40,2,345 +32472023,comfortable Place to live,209376540,Jing,Queens,College Point,40.76813,-73.84542,Entire home/apt,60,30,0,,,1,121 +32472366,Cozy quiet room in basement apt with mirrors & tv!,109516888,Becky,Manhattan,Morningside Heights,40.81052,-73.95973,Private room,175,6,1,2019-03-11,0.25,1,252 +32472692,Sunny bedroom in Soho/Greenwich village,1458110,Molly,Manhattan,Greenwich Village,40.72835,-74.00053,Private room,78,4,0,,,2,13 +32474426,Private Room in Heart of Brooklyn,35004442,Perrian,Brooklyn,Bedford-Stuyvesant,40.697,-73.93788,Private room,96,2,2,2019-06-21,1.82,1,103 +32474739,Sunny Modern Lux Private House with Parking,12593328,Jeromy,Brooklyn,East Flatbush,40.64577,-73.93118,Entire home/apt,74,3,11,2019-06-14,2.84,3,86 +32475687,Two bedroom apartment close to subway,230205171,Lian,Bronx,Schuylerville,40.84321,-73.83129,Entire home/apt,100,2,22,2019-07-05,4.93,1,3 +32476606,Recently Renovated & Furnished Apt- Room available,244008821,Sonia,Manhattan,West Village,40.7354,-74.00208,Private room,2850,100,0,,,1,270 +32476906,FULLY RENOVATED DESIGN APART IN THE HEART OF NYC,25214775,Alex,Manhattan,East Village,40.72774,-73.98857,Entire home/apt,240,2,0,,,1,9 +32477130,Sunny Artist's Loft,38786890,Sancar,Brooklyn,Clinton Hill,40.69151,-73.96059,Entire home/apt,120,3,2,2019-05-03,0.82,1,113 +32477522,Brooklyn Hibiscus,126176275,Audrey,Brooklyn,East Flatbush,40.63707,-73.93148,Private room,35,4,10,2019-06-03,2.59,4,42 +32479283,Large 1 bdrm free while musician owner is on tour,244008816,David,Manhattan,Upper West Side,40.80134,-73.96897,Entire home/apt,120,1,19,2019-06-08,4.45,1,65 +32483378,LUXURY STUDIO ON WEST 50TH-DOORMAN/GYM/LAUNDRY,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76259,-73.98667,Entire home/apt,190,30,0,,,65,365 +32484743,Great Space w/ backyard for Small Events,180008916,Endazsia,Brooklyn,Bedford-Stuyvesant,40.68116,-73.94738,Entire home/apt,400,1,5,2019-05-19,1.23,2,5 +32484875,1BEDROOM ON EAST 86th ST~PRIVATE BALCONY/GYM/POOL,200380610,Pranjal,Manhattan,Upper East Side,40.77903,-73.95071,Entire home/apt,210,30,0,,,65,364 +32485922,LUXURY 1BR ON W 48TH ST-MIDTOWN-POOL/GYM/DOORMAN,200380610,Pranjal,Manhattan,Theater District,40.76193,-73.98573,Entire home/apt,310,30,0,,,65,338 +32486433,"A large, lovely room with plants.",9979861,Tessa,Brooklyn,Bedford-Stuyvesant,40.69617,-73.93763,Private room,66,1,0,,,1,0 +32487006,JFK LUXURY APARTMENT #A,244082709,Jfk,Queens,Springfield Gardens,40.65795,-73.76996,Entire home/apt,175,1,15,2019-07-07,3.31,7,68 +32487198,Brooklyn Sanctuary: Sunny Studio in Carrol Gardens,6663384,Christine,Brooklyn,Columbia St,40.68502,-74.0051,Entire home/apt,100,2,4,2019-04-21,0.93,1,0 +32490805,Spacious Apartment Near Central Park (Manhattan),151460365,King-Lyndon,Manhattan,East Harlem,40.7984,-73.94267,Entire home/apt,100,2,16,2019-06-26,3.58,1,8 +32492270,JFK LUXURY BEDROOM # 5,244082709,Jfk,Queens,Springfield Gardens,40.66019,-73.77157,Private room,75,1,29,2019-06-16,6.35,7,163 +32492359,JFK LUXURY APARTMENT #B,244082709,Jfk,Queens,Springfield Gardens,40.65933,-73.77125,Entire home/apt,175,1,17,2019-07-03,3.75,7,160 +32492910,JFK LUXURY BEDROOM # 2,244082709,Jfk,Queens,Springfield Gardens,40.65973,-73.77125,Private room,55,1,17,2019-06-25,3.92,7,161 +32493112,JFK LUXURY BEDROOM # 1,244082709,Jfk,Queens,Springfield Gardens,40.65953,-73.76923,Private room,75,1,8,2019-06-20,1.86,7,179 +32493281,Cozy Bed in Musician housing (4/20 friendly),136943521,Shemar,Brooklyn,Bushwick,40.69501,-73.91125,Shared room,30,1,11,2019-06-16,2.34,1,157 +32493320,Charming Brooklyn studio,244135864,Alanna,Brooklyn,Bushwick,40.70305,-73.93127,Entire home/apt,69,2,4,2019-02-20,0.86,1,0 +32493396,JFK LUXURY BEDROOM # 3,244082709,Jfk,Queens,Springfield Gardens,40.6597,-73.76993,Private room,65,1,14,2019-06-23,3.23,7,177 +32493667,JFK LUXURY BEDROOM # 4,244082709,Jfk,Queens,Springfield Gardens,40.65994,-73.77069,Private room,85,1,14,2019-07-05,3.89,7,163 +32494256,Newly renovated 2 Bedroom Apartment,12674973,Victoria,Brooklyn,Clinton Hill,40.68771,-73.96304,Entire home/apt,143,2,22,2019-06-18,5.00,1,81 +32494991,Brand New 2 bed 1 bath in the UES #6129,113805886,Yaacov,Manhattan,Upper East Side,40.77883,-73.9505,Entire home/apt,206,30,0,,,33,217 +32495009,Spacious 3 bedroom apartment in WILLIAMSBURG,235115405,New York Italians,Brooklyn,Williamsburg,40.7077,-73.95332,Private room,65,2,13,2019-07-05,3.33,2,9 +32495242,Quiet parlour floor apartment on tree-lined street,33299125,Natalia,Brooklyn,Bedford-Stuyvesant,40.68199,-73.95131,Entire home/apt,150,15,1,2019-06-30,1,1,146 +32496573,1BDR cozyclean apt great location,62305875,Scarlett,Brooklyn,Williamsburg,40.71304,-73.96729,Entire home/apt,107,30,1,2019-05-15,0.55,1,53 +32496993,Lower East Side Pad !,154465734,Wayne,Manhattan,Lower East Side,40.71936,-73.98402,Entire home/apt,500,30,0,,,1,81 +32499059,"Amazing , Clean, Cozy in Upper East Side Manhattan",28917776,Tito,Manhattan,Upper East Side,40.78139,-73.95379,Private room,87,2,2,2019-07-03,2,1,76 +32499495,Carroll Gardens Charm with Magical Manhattan Views,67274316,Linsey,Brooklyn,Columbia St,40.68418,-74.00313,Entire home/apt,175,2,30,2019-06-28,7.14,1,73 +32499766,Large sunny private room with queen size bed.,34943243,Maya,Queens,Astoria,40.76273,-73.90869,Private room,48,2,1,2019-02-20,0.22,1,0 +32500481,"BRIGHT, clean, charming 1-BR in Prospect Heights",48328095,Maisie,Brooklyn,Prospect Heights,40.67651,-73.96681,Entire home/apt,82,6,5,2019-05-27,1.25,1,42 +32501003,"Clean private room near Central Park, NYC",14804867,Edna,Manhattan,Upper East Side,40.76965,-73.95326,Private room,78,3,11,2019-06-13,2.60,1,116 +32501542,New Apartment Near Prospect Park and Major Subway!,63116168,Alex,Brooklyn,Flatbush,40.65027,-73.9608,Entire home/apt,105,3,1,2019-03-29,0.29,1,38 +32501807,MANHATTAN Upper-West Luxury Home for 10 people,71276635,Joe,Manhattan,Washington Heights,40.83528,-73.94179,Entire home/apt,285,1,17,2019-06-26,4.08,5,261 +32501820,Queen size bed private room for 2,191011879,Conor,Manhattan,Midtown,40.75449,-73.9677,Private room,250,1,0,,,2,268 +32502180,1-Bedroom Newly Renovated Cozy Apartment,244217480,Vlad,Staten Island,Arden Heights,40.54857,-74.17628,Entire home/apt,83,30,3,2019-06-28,0.90,1,316 +32503099,Boss Room in Deluxe Pad,3104336,Amy,Brooklyn,Bushwick,40.70094,-73.93013,Private room,35,90,0,,,1,326 +32503167,Beautiful apt in Nolita - your perfect stay,244182582,Milena,Manhattan,Lower East Side,40.72088,-73.99312,Private room,86,30,0,,,4,310 +32503384,Smaller room in a Gorgeous HUGE apt in Nolita,244182582,Milena,Manhattan,Lower East Side,40.71933,-73.99431,Private room,76,30,0,,,4,339 +32503407,Union SQ/Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73572,-73.98736,Private room,150,2,10,2019-06-09,2.54,3,334 +32503539,Modern Luxury Private Rm. W Rooftop Bushwick,244231812,Joshua,Brooklyn,Bushwick,40.70084,-73.93033,Private room,80,1,0,,,1,341 +32506530,VERY LARGE NEW STUDIO+LARGE SLEEPING LOFT+DOORMAN,243614369,Ady,Manhattan,Midtown,40.74757,-73.98564,Entire home/apt,145,3,7,2019-07-05,2.88,1,36 +32511315,Summer Rental on Park Ave (1 Month minimum),850498,Aaron,Manhattan,Upper East Side,40.78028,-73.95528,Entire home/apt,149,30,0,,,1,62 +32514722,"Relaxed home, middle of Lower East! Side!",165725362,Janey,Manhattan,Chinatown,40.71358,-73.99091,Entire home/apt,150,30,7,2019-06-03,1.84,2,88 +32516998,Skylight spacious Bedroom,4107600,Valentina,Brooklyn,Bushwick,40.7041,-73.91688,Private room,55,2,5,2019-07-01,4.69,3,317 +32517517,Bright room with Open Terrace 3min walk to Subway,204704622,Momoyo,Queens,Elmhurst,40.74063,-73.87732,Private room,33,29,1,2019-06-16,1,7,34 +32517547,"Private Room In Quiet & Charming 3 Br, 1.5 Ba",244197139,Brooke,Manhattan,Nolita,40.72004,-73.99486,Private room,62,30,0,,,5,249 +32518068,Super cute 1 bedroom apartment close to TimeSquare,7441368,Chris And Jamie,Manhattan,Hell's Kitchen,40.7548,-73.9948,Entire home/apt,175,1,27,2019-07-01,6.59,2,133 +32518218,Upper East Side - Posh NYC Experience,165860505,Rosario,Manhattan,Upper East Side,40.77705,-73.96038,Private room,90,1,4,2019-04-28,0.88,1,0 +32518771,Sunny and cozy studio 30 min from Manhattan,1938828,Shay,Brooklyn,East Flatbush,40.64882,-73.94537,Entire home/apt,85,6,12,2019-07-05,3.33,3,215 +32518869,Eclectic Private BR in Ridgewood Woodbine 1L-1,244171850,Jocelyn,Queens,Ridgewood,40.70083,-73.90802,Private room,47,35,0,,,10,331 +32518954,"Private Room In Remodeled SoHo 3 Br, 1 Ba",244197139,Brooke,Manhattan,Nolita,40.72158,-73.9941,Private room,62,30,0,,,5,188 +32519021,Unique Private BR in Ridgewood Woodbine 1L-2,244171850,Jocelyn,Queens,Ridgewood,40.70296,-73.90602,Private room,47,35,0,,,10,365 +32519119,Sunny Private BR in Ridgewood Woodbine 1L-3,244171850,Jocelyn,Queens,Ridgewood,40.70075,-73.90741,Private room,47,45,0,,,10,330 +32519790,The Fun Home,26178450,Cory,Manhattan,Hell's Kitchen,40.7548,-73.99818,Private room,90,2,10,2019-06-30,2.34,1,14 +32520381,Newly renovated 2BR apt in brownstone Brooklyn,33159631,Emmanuel,Brooklyn,Carroll Gardens,40.67797,-73.99969,Entire home/apt,199,2,17,2019-07-03,5.05,1,31 +32520602,"CLEAN, SAFE, AFFORDABLE",214863971,Elenora And Jason,Brooklyn,Flatlands,40.62063,-73.9244,Private room,40,2,10,2019-07-06,2.34,2,43 +32521604,Peaceful and private room in heart of Ft Greene,118566355,Luis & Tiana,Brooklyn,Fort Greene,40.68875,-73.9761,Private room,90,2,1,2019-07-02,1,1,83 +32522010,Cozy Renovated 2 BR 2 Bathroom Brooklyn/Queens NYC,51810229,Moaz,Queens,Ridgewood,40.69903,-73.90961,Entire home/apt,150,28,0,,,1,197 +32523519,The Manhattan View,173009,Scott And Bea,Staten Island,Stapleton,40.63285,-74.0778,Entire home/apt,125,2,10,2019-07-07,3.19,1,252 +32523945,Walk to Subway★15min to Manhattan★Min. to LGA/JFK,235252386,Smart Accommodations,Queens,Ditmars Steinway,40.77097,-73.91107,Entire home/apt,350,3,3,2019-07-05,0.99,1,97 +32526623,"Midtown, NYC. Near Central Park Times Square MoMa",139033454,Dardana,Manhattan,Hell's Kitchen,40.7645,-73.98862,Private room,70,2,1,2019-06-10,1,1,3 +32526864,"Private room for a single, couple or small family",88367005,Karla,Brooklyn,Bushwick,40.68949,-73.90588,Private room,36,1,1,2019-03-08,0.24,1,0 +32527273,Greenwich Village Studio Apartment,178793639,Alexandra,Manhattan,Greenwich Village,40.72835,-74.00159,Entire home/apt,175,3,0,,,1,157 +32527460,Bright bdr in Renovated Building (15min from City),224340103,Vincent,Brooklyn,Williamsburg,40.70927,-73.94684,Private room,75,1,2,2019-02-24,0.44,2,151 +32527598,Castle Nolita,138492193,Antonio,Manhattan,Little Italy,40.71907,-73.99685,Entire home/apt,160,1,25,2019-06-21,5.47,1,29 +32527742,Chic Bed-Stuy Hideaway w/ Large Patio,17535511,Celina,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95076,Entire home/apt,150,2,0,,,1,0 +32528224,Luxury River Vue w/ Private Outdoor Terrace,3910399,Stephan And Leo,Manhattan,Hell's Kitchen,40.76211,-73.99873,Entire home/apt,295,3,2,2019-05-16,1.00,2,39 +32528660,Deluxe Apartment in The Sky,3910399,Stephan And Leo,Manhattan,Hell's Kitchen,40.76063,-73.99863,Entire home/apt,295,3,2,2019-05-25,0.52,2,2 +32528831,Private Rooftop UWS Cozy Apartment,244438661,Bel,Manhattan,Upper West Side,40.7966,-73.97428,Private room,125,3,1,2019-04-14,0.35,2,0 +32529302,Manhattan apartment | Perfect SOHO location,76484622,Felix,Manhattan,Greenwich Village,40.72824,-74.00259,Entire home/apt,215,4,2,2019-06-22,0.53,1,148 +32530603,Lovely Spacious Apt close to Manhattan & Airports,244453286,Alba,Queens,Sunnyside,40.73643,-73.91886,Entire home/apt,115,2,16,2019-06-18,4.36,2,34 +32531001,Luxurious Newly Renovated Apartment,41658748,Ben,Queens,Ditmars Steinway,40.77129,-73.91226,Entire home/apt,175,2,16,2019-06-09,4.03,3,331 +32531170,Eldridge Refined,43811211,Jon,Manhattan,Chinatown,40.71612,-73.99273,Entire home/apt,299,2,5,2019-06-15,2.05,1,324 +32531179,Wonderful 1 Bedroom Apartment (Washington Sq Park),45499169,Michael,Manhattan,Greenwich Village,40.72927,-74.00003,Entire home/apt,146,30,1,2019-03-02,0.23,1,89 +32531409,"Luxury home, 2700 sq ft, 20 m to airports/City/LI!",168814318,Misha,Queens,Jamaica Estates,40.71894,-73.78188,Entire home/apt,250,2,15,2019-06-30,4.46,1,94 +32533738,Suite Donna Dina - free Street Parking+wifi,219738858,Joe,Manhattan,East Village,40.72956,-73.98113,Entire home/apt,161,30,18,2019-06-21,4.22,5,204 +32540677,Spacious studio with outdoor deck in Hells Kitchen,230165497,Lara,Manhattan,Midtown,40.76607,-73.9826,Entire home/apt,140,30,1,2019-04-15,0.35,4,327 +32541300,Bed-study Deluxe,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94372,Private room,55,1,33,2019-07-04,7.17,4,298 +32541389,LUXURY 2 BR ON E 18th ST IN GRAMERCY PARK-DOORMAN,200380610,Pranjal,Manhattan,Gramercy,40.73512,-73.98614,Entire home/apt,235,30,0,,,65,242 +32541475,"Pied-a-Terre in NYC - Nomad, Midtown",97172649,Gigi,Manhattan,Murray Hill,40.74974,-73.98094,Private room,200,5,0,,,1,263 +32541965,Cozy artists haven,168495229,Daisy,Brooklyn,Crown Heights,40.66661,-73.95367,Private room,48,5,2,2019-04-08,0.48,1,15 +32542856,Newly Remodeled Private Room in SoHo,244197139,Brooke,Manhattan,Nolita,40.72033,-73.99527,Private room,66,30,1,2019-04-16,0.36,5,125 +32542979,Airy Private Bedroom in Ridgewood Woodbine 1R-1,244171850,Jocelyn,Queens,Ridgewood,40.70246,-73.90604,Private room,47,30,0,,,10,340 +32543311,"Incredible, Sunny New York Apartment",238779678,Dustin,Manhattan,East Village,40.72621,-73.99028,Private room,59,30,0,,,9,310 +32543781,Private Room With Lock Available In SoHo :),244197139,Brooke,Manhattan,Nolita,40.72013,-73.99524,Private room,59,30,0,,,5,125 +32544013,Luxury Living in Bumpin Bushwick,489448,Tina,Brooklyn,Bushwick,40.6994,-73.92607,Private room,70,5,6,2019-05-28,1.57,2,99 +32544460,Sleek Private Bedroom in Ridgewood Woodbine 1R-2,244171850,Jocelyn,Queens,Ridgewood,40.70285,-73.90798,Private room,47,30,0,,,10,290 +32544579,Calming Private BR in Ridgewood Woodbine 1R-3,244171850,Jocelyn,Queens,Ridgewood,40.70124,-73.90774,Private room,47,30,0,,,10,323 +32544596,Brooklyn Awesomely Huge Apartment - 2,9864136,Anthony,Brooklyn,Bushwick,40.68491,-73.91324,Entire home/apt,85,30,1,2019-03-10,0.25,26,312 +32544667,Classic 1 Bed walking distance to Central Park.,244557149,Vincent,Manhattan,Upper East Side,40.76226,-73.95808,Entire home/apt,300,1,8,2019-05-23,1.88,1,168 +32545827,Garden apt. opposite historic Fort Greene Park,129581090,Amy,Brooklyn,Fort Greene,40.68842,-73.97349,Entire home/apt,160,2,12,2019-06-29,3.13,1,71 +32545866,"Rest and relaxation, free swimming pool at bay st",244544373,Valerie,Staten Island,St. George,40.63763,-74.08268,Private room,100,1,0,,,2,365 +32546286,LOVELY SUITE IN A HISTORIC BROWNSTONE NEAR SUBWAY.,159587137,Wene,Brooklyn,Clinton Hill,40.68995,-73.9675,Entire home/apt,220,3,0,,,2,159 +32546490,Dandy Budget Private Room,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69299,-73.94837,Private room,58,2,11,2019-06-16,2.70,4,365 +32546497,Spacious One Bedroom near Lower East Side!,244573712,Daniel,Manhattan,Chinatown,40.71411,-73.99375,Entire home/apt,145,2,3,2019-03-31,0.79,1,0 +32546587,"Private Room In SoHo, Modern Building",244197139,Brooke,Manhattan,Nolita,40.72106,-73.99501,Private room,67,30,0,,,5,137 +32546879,Spacious Room in Astoria!,99791908,Lera,Queens,Astoria,40.75756,-73.91931,Private room,70,5,1,2019-03-28,0.29,2,0 +32547350,"Quiet & Elegant, 30 mins to midtown Manhattan!",56403037,Jane,Queens,Woodhaven,40.68899,-73.85001,Shared room,35,1,11,2019-06-22,4.52,3,53 +32548384,Anny's Place,244581878,Ana,Manhattan,Washington Heights,40.85019,-73.93004,Entire home/apt,50,2,16,2019-06-29,4.25,1,51 +32549039,Penthouse full floor 4 bedroom apartment,13196439,Cylia,Manhattan,Financial District,40.70436,-74.00927,Entire home/apt,500,5,16,2019-06-22,3.78,1,298 +32549155,BK Home Away From Home,244596528,Mary Ann,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93425,Entire home/apt,126,1,11,2019-07-02,5.16,1,52 +32549231,温馨的家,239139334,Fang,Queens,Bayside,40.76898,-73.78855,Private room,48,1,7,2019-06-21,3.18,3,244 +32549565,Sunny Chelsea Loft,10414780,Matan,Manhattan,Chelsea,40.74149,-73.99701,Entire home/apt,139,3,4,2019-05-28,1.17,1,58 +32549617,Your home away from home.,244602318,Stanley,Manhattan,Chelsea,40.75114,-73.99831,Entire home/apt,123,30,0,,,1,341 +32550619,Cozy Upper West Side Spacious Studio,51268465,Sebastian,Manhattan,Upper West Side,40.79467,-73.96923,Entire home/apt,135,1,1,2019-03-30,0.30,1,0 +32552274,Big room in a Giant Loft !,244182582,Milena,Manhattan,Lower East Side,40.72064,-73.99305,Private room,73,30,0,,,4,364 +32552560,East Village Super Cute 3 bdr / sleeps up to 8,33214549,Alexandre,Manhattan,East Village,40.72734,-73.98389,Entire home/apt,369,1,10,2019-06-26,3.75,5,97 +32552611,Cozy Private Bedroom in Spacious Manhattan Apt,47518086,Timothy,Manhattan,East Harlem,40.81393,-73.93632,Private room,35,1,4,2019-06-14,1.11,1,2 +32553129,Cozy Bushwick Nook,244635438,Adila,Brooklyn,Bushwick,40.7042,-73.91693,Private room,39,1,15,2019-06-21,3.36,1,13 +32553235,Prime Union Square Location Private Room Fireplace,9630772,Nada,Manhattan,Gramercy,40.73621,-73.98729,Private room,120,4,0,,,2,12 +32554699,1718双个房,119692067,Qiulan,Brooklyn,Sunset Park,40.64333,-74.00227,Private room,50,1,10,2019-06-20,3.16,3,71 +32554746,"Clean, Safe, east village room!",112439306,빈나,Manhattan,Stuyvesant Town,40.7318,-73.97999,Private room,125,4,1,2019-03-06,0.24,1,0 +32554837,1718三人房,119692067,Qiulan,Brooklyn,Sunset Park,40.64486,-74.00255,Private room,60,1,7,2019-06-23,3.13,3,84 +32554867,Luxury Studio Apartment near Central Park,53750726,Luis,Manhattan,Hell's Kitchen,40.76711,-73.98732,Entire home/apt,200,3,5,2019-07-06,1.21,1,13 +32555976,Cozy Bedroom with Private Bath & 2 Cats in Bedstuy,9212686,Kelly,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93695,Private room,55,2,1,2019-03-19,0.27,1,0 +32557722,Perfect Greenwich village studio apt,244671957,Sofia,Manhattan,Greenwich Village,40.73251,-73.99602,Entire home/apt,130,80,0,,,1,214 +32558916,Beautiful Brooklyn Brownstone Garden Apartment,244473721,Pam,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94616,Entire home/apt,200,2,4,2019-06-03,1.38,1,344 +32559129,Charming West Village studio in Landmarked Mansion,127667513,Michelle,Manhattan,Greenwich Village,40.72781,-74.00039,Entire home/apt,185,30,0,,,1,342 +32560880,94TH STREET BIGGER 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78187,-73.94699,Private room,500,2,0,,,6,351 +32561334,94TH STREET BIGGEST 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78216,-73.94841,Private room,540,2,0,,,6,351 +32561729,Top floor apartment with Manhattan view,65284316,Fabiola,Queens,Long Island City,40.75541,-73.93647,Entire home/apt,120,1,3,2019-04-04,0.72,1,0 +32562943,94TH STREET 2BR-2BA SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78266,-73.94673,Private room,700,2,0,,,6,341 +32563657,94TH STREET 3BR-3BA SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78399,-73.94725,Private room,990,2,1,2019-06-09,1,6,343 +32564016,Huge 1 bedroom apartment with private deck!,224666178,Jacqueline,Brooklyn,Williamsburg,40.71263,-73.9581,Entire home/apt,150,2,6,2019-06-09,1.50,1,2 +32564397,UES Prime Location 2 bed Doorman Gym laundry 5179,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77671,-73.95516,Entire home/apt,280,30,0,,,96,332 +32564618,Furnished apartment United nation! Doorman 5243,16098958,Jeremy & Laura,Manhattan,Midtown,40.75619,-73.9654,Entire home/apt,135,30,0,,,96,306 +32566536,SUBURBAN VIBES ONLY 25 MINS FROM BARCLAYS CENTER !,244733416,Jacqueline,Brooklyn,Canarsie,40.63626,-73.90696,Entire home/apt,69,1,31,2019-07-06,7.50,1,282 +32567344,"Bright and lovely flat in Williamsburg, Brooklyn",39329872,Maxime,Brooklyn,Williamsburg,40.70857,-73.95258,Entire home/apt,110,6,3,2019-06-21,0.98,1,25 +32568037,Huge APT with private rooftop in Williamsburg,57746555,Diego,Brooklyn,Williamsburg,40.71015,-73.96019,Entire home/apt,180,1,0,,,1,0 +32568130,Sonder | The Nash | Eclectic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74868,-73.97563,Entire home/apt,257,2,8,2019-06-23,2.03,327,108 +32568567,Sonder | The Nash | Contemporary Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74862,-73.97531,Entire home/apt,243,2,4,2019-06-22,1.35,327,140 +32569486,靓房,239139334,Fang,Queens,Bayside,40.76868,-73.78871,Private room,39,1,16,2019-07-04,3.61,3,142 +32569915,Sun-Filled Cozy Bedroom steps to Fort Greene Park,196613633,Zach,Brooklyn,Fort Greene,40.69354,-73.97172,Private room,95,5,0,,,2,0 +32570179,"Warm, Sunny Bedroom in Harlem Apartment",5409243,Katie Rose,Manhattan,Harlem,40.82931,-73.94183,Private room,65,2,6,2019-07-06,1.59,2,1 +32570888,Large apartment - Brooklyn Charm,66813379,Reuven,Brooklyn,Crown Heights,40.66878,-73.93938,Entire home/apt,165,2,11,2019-07-01,2.75,2,269 +32570893,Stay in a NYC Historic Site!,13733669,Madeleine,Manhattan,Harlem,40.81134,-73.94097,Private room,59,4,7,2019-04-16,1.59,1,0 +32571267,Great share 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91274,Shared room,35,1,2,2019-06-04,0.75,17,49 +32572058,Private 2C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75978,-73.99183,Private room,115,1,16,2019-06-14,3.75,12,217 +32572192,Cali-Retro Duplex w/ HUGE private backyard!,6701890,Jenny,Brooklyn,Greenpoint,40.73297,-73.95466,Entire home/apt,350,2,0,,,2,76 +32572203,Private 2D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.7616,-73.99042,Private room,105,1,14,2019-06-16,3.62,12,241 +32572929,SUMMER SUBLET for 2 Months in Brooklyn,73049484,Kumru,Brooklyn,Crown Heights,40.66779,-73.92875,Entire home/apt,100,44,0,,,2,53 +32573252,Nicely Furnished 1.5BR in LIC For Long Term Stay,2115395,Amit,Queens,Long Island City,40.74479,-73.94997,Entire home/apt,107,31,2,2019-06-22,0.90,1,133 +32573359,Sonder | The Nash | Central 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74921,-73.97395,Entire home/apt,308,2,6,2019-06-09,1.55,327,81 +32574380,Lovely One bedroom apartment 20 min to Manhattan,244804004,C,Brooklyn,Greenpoint,40.73738,-73.95679,Entire home/apt,99,4,10,2019-06-23,2.36,2,19 +32574801,Home away from home.,244808289,Ann,Queens,Jamaica,40.67931,-73.80149,Private room,50,3,0,,,1,74 +32575481,Private room in 2 bedroom apartment,81534306,Nourdine,Manhattan,Washington Heights,40.8524,-73.94214,Private room,70,1,0,,,2,0 +32575528,"Woodside RM close to 7 express , airport & Midtown",137358866,Kazuya,Queens,Woodside,40.74228,-73.90049,Private room,43,30,0,,,103,215 +32575757,"2nd floor, Room# 1 ( 8' x 10')",244817841,Aminul,Brooklyn,East New York,40.66954,-73.89539,Private room,35,7,4,2019-06-27,1.19,13,260 +32576739,The Big Apple Paradise. 10 minutes from JFK,168704622,Patrick,Queens,Rosedale,40.66294,-73.73292,Entire home/apt,300,2,4,2019-04-21,0.97,1,364 +32577223,Old,48194192,Allen,Brooklyn,Clinton Hill,40.69302,-73.96475,Entire home/apt,395,4,2,2019-05-05,0.64,4,0 +32581701,"Big room, sleeps 4 with private bathroom.",65407018,Harmony,Brooklyn,Greenpoint,40.72312,-73.93608,Private room,105,1,3,2019-06-24,2.43,5,349 +32584290,spacious bedroom queen bed on upper east side,131298733,Jen,Manhattan,Upper East Side,40.78417,-73.94902,Private room,80,2,1,2019-03-31,0.30,1,0 +32586373,The Heart of Williamsburg Brooklyn,244906527,Julia,Brooklyn,Williamsburg,40.71586,-73.9391,Entire home/apt,120,2,15,2019-06-22,3.52,1,292 +32587410,Perfect Location - ASTORIA,46081317,Fabiana,Queens,Astoria,40.75547,-73.91539,Private room,48,20,2,2019-05-12,0.91,3,0 +32587861,Bright Room in Central BK!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.6837,-73.95655,Private room,51,3,5,2019-06-25,1.52,3,0 +32587884,Soho One Bedroom Apartment,244920495,Claudia,Manhattan,Little Italy,40.71919,-73.99654,Entire home/apt,120,60,1,2019-04-24,0.39,1,37 +32587918,One Bedroom Apartment in Central of Midtown.,211549023,Studioplus,Manhattan,Midtown,40.74766,-73.9868,Entire home/apt,260,2,2,2019-05-29,1.13,13,259 +32587983,Harlem Sweets 3,187419882,Terrence & Skye,Manhattan,Harlem,40.82899,-73.94185,Private room,82,2,4,2019-06-03,0.94,3,90 +32588761,Private Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.5767,-73.96,Private room,45,1,5,2019-06-23,1.18,2,351 +32589600,BED IN FAMILY HOUSE (ONLY WOMEN),215778245,Jessy & Christian,Queens,Corona,40.74147,-73.86753,Shared room,23,1,8,2019-06-03,2.12,6,308 +32589616,Mr. B - Room Apartment in NYC,235990293,Yanilin,Manhattan,Washington Heights,40.84377,-73.94094,Private room,37,4,4,2019-06-09,1.05,1,88 +32590546,Sweet private space near trains with 2 cuddly cats,47518701,Jim,Brooklyn,Gowanus,40.67858,-73.98232,Entire home/apt,115,3,1,2019-03-17,0.26,1,0 +32590674,Sonder | The Nash | Quaint 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74892,-73.97571,Entire home/apt,300,2,5,2019-05-02,1.17,327,58 +32590792,Sonder | The Nash | Original 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74763,-73.97524,Entire home/apt,316,2,5,2019-06-16,1.17,327,76 +32590874,Sonder | The Nash | Tranquil Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74734,-73.97438,Entire home/apt,228,2,4,2019-06-21,1.12,327,133 +32591286,Cozy Neat New Building 30min from Manhattan,19303369,Hiroki,Queens,Elmhurst,40.73878,-73.87711,Private room,32,30,0,,,37,0 +32591885,Cozy room in plush apartment,32788431,Elo,Manhattan,East Harlem,40.80193,-73.93866,Private room,79,2,14,2019-06-23,3.56,1,97 +32592405,Nice room with private living-room.,242816206,Diaby,Bronx,Longwood,40.82236,-73.90227,Private room,75,2,0,,,1,361 +32592596,Vibrant Bedroom in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72608,-74.00031,Private room,95,1,17,2019-07-06,5.37,3,74 +32592881,Bushwick Room!,244973445,Shevon,Brooklyn,Bushwick,40.69466,-73.9106,Private room,100,1,0,,,1,35 +32593295,"Summer! UES, 3-bed a block from Central Park!",244977552,Patty,Manhattan,Upper East Side,40.78609,-73.95341,Entire home/apt,225,3,0,,,1,166 +32595081,13ft Ceilings > Prime Historic Brownstone Brooklyn,19807856,Jack,Brooklyn,Clinton Hill,40.68575,-73.96311,Entire home/apt,200,2,6,2019-06-30,2.50,1,76 +32595351,Comfy & Clean Riverside Studio,13615300,Aaron,Manhattan,Harlem,40.82916,-73.9498,Entire home/apt,160,2,4,2019-05-27,0.94,1,0 +32595489,Very Nice and Cozy Room Right by JFK and LIRR,245002893,Christopher,Queens,Rosedale,40.6684,-73.73563,Private room,42,5,2,2019-05-13,0.90,2,178 +32595490,Peaceful 2 Bedroom apartment in a private house,245003299,Yoselyn,Bronx,Clason Point,40.80924,-73.85107,Entire home/apt,95,2,27,2019-07-05,8.62,1,153 +32595900,"Modern, luxurious spacious room in East Village",156381151,Karim,Manhattan,East Village,40.72467,-73.98836,Private room,90,2,6,2019-05-20,1.70,2,0 +32602726,Private Clean Bedroom 20 min from Manhattan,244804004,C,Brooklyn,Greenpoint,40.73635,-73.95705,Private room,89,2,3,2019-05-21,0.90,2,5 +32607488,"2nd Floor, Room # 2 (12'x14')",244817841,Aminul,Brooklyn,East New York,40.66954,-73.89575,Private room,35,180,0,,,13,189 +32608044,Beautiful Apartment near Prospect Park,11785148,Laura,Brooklyn,Flatbush,40.65438,-73.95624,Entire home/apt,83,14,1,2019-04-01,0.30,1,163 +32608451,Elegant Midtown Home w/Balcony,97417890,Angela,Manhattan,Kips Bay,40.74493,-73.9786,Entire home/apt,349,1,1,2019-02-26,0.23,2,355 +32609815,Bright Brooklyn Studio Minutes To Botanical Garden,8714863,Kelly,Brooklyn,Crown Heights,40.66947,-73.95593,Entire home/apt,90,3,20,2019-06-13,4.96,1,2 +32610653,Cozy and Comfortable Vacation Apartment in Queens!,7831200,Temp,Queens,Maspeth,40.73173,-73.899,Entire home/apt,100,1,13,2019-06-25,3.28,1,183 +32610834,Manhattan by the water!,12132369,Omar,Manhattan,Kips Bay,40.73767,-73.97384,Entire home/apt,150,7,0,,,1,9 +32611321,Amazing apartment close to midtown with skylight,27287203,Ben,Manhattan,Upper West Side,40.79887,-73.96343,Private room,80,1,42,2019-07-07,13.13,1,16 +32611480,Modern Luxury Private Room Steps from subway,218407281,Sahar,Manhattan,East Harlem,40.80551,-73.93654,Private room,75,2,3,2019-05-24,1.17,1,332 +32611643,TRENDi Artistic Duplex with Backyard Sleeps 10ppl,15034908,Trendi,Manhattan,Harlem,40.80782,-73.94132,Entire home/apt,278,3,4,2019-06-23,0.99,2,133 +32611927,Beautiful One Bedroom Near Prospect Park,17558599,Lisa,Brooklyn,Prospect Heights,40.67911,-73.9725,Entire home/apt,150,2,4,2019-06-10,0.98,1,5 +32611977,Mi casa es tu casa! Cozy & comfortable!,245160359,Arnol,Bronx,Belmont,40.85505,-73.89238,Private room,40,2,28,2019-07-06,6.72,1,84 +32612264,Luxury Living 2 in Bumpin Bushwick,489448,Tina,Brooklyn,Bushwick,40.69922,-73.92637,Private room,65,5,8,2019-06-12,2.09,2,100 +32612266,Beautiful 1 Bedroom Apt in Bed-Stuy,82326716,Nicolas,Brooklyn,Bedford-Stuyvesant,40.6953,-73.94392,Entire home/apt,90,1,5,2019-05-27,1.53,1,6 +32612731,"Clean, Sunny & Modern NYC Apartment !",61524764,Erica,Manhattan,Upper East Side,40.76746,-73.95861,Entire home/apt,199,1,20,2019-07-05,5.17,1,49 +32613384,Gorgeous Luxury Brooklyn 1 Bedroom Apt,139145066,Kerri-Ann,Brooklyn,East New York,40.67561,-73.88072,Entire home/apt,106,1,33,2019-07-04,7.56,2,15 +32613752,Sunny and Compfy Loft Bedroom,59089761,Gamze,Brooklyn,Williamsburg,40.71107,-73.96449,Private room,55,30,0,,,1,87 +32616111,Big room!!! (only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58539,-73.96984,Shared room,28,9,2,2019-04-16,0.55,12,0 +32616255,"Cozy, Quiet Apt near Times Square and Penn Station",245206417,Mike,Manhattan,Hell's Kitchen,40.75616,-73.99408,Entire home/apt,132,10,9,2019-05-31,2.45,1,174 +32616393,"2nd floor, Room# 5 (8'x12')",244817841,Aminul,Brooklyn,East New York,40.66888,-73.89372,Private room,35,7,12,2019-06-27,3.10,13,247 +32616616,Cozy apartment in Bed-Stuy near Subway Stations,6895494,Esteban,Brooklyn,Bedford-Stuyvesant,40.67981,-73.90606,Private room,29,3,5,2019-07-05,1.74,1,18 +32617384,"2nd Floor, Room # 3 (9'x12')",244817841,Aminul,Brooklyn,East New York,40.66934,-73.89402,Private room,35,7,7,2019-06-16,1.75,13,252 +32617393,Brooklyn Artist Loft,15764988,Giancarlo,Brooklyn,Bushwick,40.69835,-73.9361,Entire home/apt,100,3,5,2019-06-10,1.17,1,326 +32617641,"2nd Floor, Room # 4 (12' x 18')",244817841,Aminul,Brooklyn,East New York,40.66962,-73.89404,Private room,42,7,1,2019-05-24,0.64,13,98 +32617897,Big private room with backyard in hip Bushwick,215891351,Pablo,Brooklyn,Bushwick,40.69935,-73.92407,Private room,43,2,17,2019-06-24,4.05,2,68 +32618476,Quiet space close to the city,72234136,Eliza Alex,Queens,Astoria,40.77655,-73.93587,Private room,100,1,11,2019-06-04,2.89,1,124 +32618577,"1st Floor, Room # 9 (8' x 12')",244817841,Aminul,Brooklyn,East New York,40.66946,-73.89404,Private room,35,7,5,2019-04-29,1.33,13,116 +32618640,"1st Floor, Room # 8 (12' x 15')",244817841,Aminul,Brooklyn,East New York,40.66977,-73.89356,Private room,40,7,8,2019-06-14,2.05,13,198 +32618716,"1st Floor, Room #7 (9' x 12')",244817841,Aminul,Brooklyn,East New York,40.66974,-73.89569,Private room,38,7,6,2019-06-29,1.64,13,301 +32619108,"1st Floor, Room # 6 (12' x 14')",244817841,Aminul,Brooklyn,East New York,40.6697,-73.8954,Private room,40,7,5,2019-06-30,1.95,13,247 +32620347,2min to SubwayM/R easy commute to Manhattan,43044876,Haruhisa,Queens,Elmhurst,40.73534,-73.87767,Private room,35,29,3,2019-06-01,0.87,5,2 +32628641,Private room-Close to manhattan(10-15 minutes),79567015,Yeufre,Bronx,Mott Haven,40.81496,-73.92088,Private room,60,1,1,2019-04-09,0.33,1,90 +32633622,Spacious Brooklyn Home with 2 Large BD & Garden,27736765,Myckie,Brooklyn,Bedford-Stuyvesant,40.67899,-73.93548,Entire home/apt,160,100,0,,,1,0 +32634041,Beach suite,244964029,Anthony,Queens,Far Rockaway,40.59639,-73.7486,Entire home/apt,147,4,20,2019-06-30,4.92,1,107 +32634220,U W S Sunny Queen size bedroom near Columbia UNI*,200261161,Davis,Manhattan,Upper West Side,40.79877,-73.96313,Private room,80,1,16,2019-05-30,3.64,3,0 +32634232,"Warm, Sunny Artist Apartment in Harlem!",5409243,Katie Rose,Manhattan,Harlem,40.82928,-73.94054,Entire home/apt,135,3,1,2019-04-26,0.41,2,3 +32634265,Sonder | Stock Exchange | Original 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.0102,Entire home/apt,484,2,8,2019-06-21,2.00,327,247 +32634304,Sonder | Stock Exchange | Modern Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70598,-74.01193,Entire home/apt,211,2,15,2019-06-21,4.21,327,325 +32634435,Sonder | Stock Exchange | Incredible 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70795,-74.01096,Entire home/apt,388,2,9,2019-06-11,2.35,327,262 +32634514,Sonder | Stock Exchange | Pristine 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70575,-74.01231,Entire home/apt,407,2,9,2019-06-23,2.18,327,294 +32634671,Sonder | Stock Exchange | Upscale 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70759,-74.01242,Entire home/apt,425,2,5,2019-06-17,1.18,327,311 +32634720,Sonder | Stock Exchange | Sharp 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70728,-74.01073,Entire home/apt,432,2,3,2019-06-14,1.11,327,323 +32634839,Sonder | Stock Exchange | Cozy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70778,-74.01074,Entire home/apt,205,2,8,2019-06-16,2.64,327,327 +32634874,Sonder | Stock Exchange | Pristine 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70604,-74.01216,Entire home/apt,248,2,7,2019-06-26,2.59,327,294 +32634964,Sonder | Stock Exchange | Dashing 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70652,-74.01048,Entire home/apt,396,2,6,2019-05-28,1.80,327,323 +32635018,Sonder | Stock Exchange | Central 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70624,-74.01227,Entire home/apt,376,2,10,2019-05-24,2.46,327,276 +32635385,Bright and Sunny Room in Brand New Apt,6790993,Andrea,Brooklyn,Bedford-Stuyvesant,40.68908,-73.9522,Private room,93,1,0,,,1,77 +32635569,Big sunnny bedroom with a giant private garden,3002665,Zoe,Brooklyn,Williamsburg,40.7146,-73.94167,Shared room,125,1,1,2019-05-14,0.54,2,365 +32635717,Sonder | Stock Exchange | Calming 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7057,-74.01221,Entire home/apt,230,2,6,2019-06-10,1.98,327,297 +32635722,Sonder | Stock Exchange | Modern 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70608,-74.01112,Entire home/apt,416,2,7,2019-06-08,1.72,327,338 +32636472,"Private, Sunny Bedroom in Washington Heights",236908324,Christopher,Manhattan,Washington Heights,40.85117,-73.94065,Private room,50,1,22,2019-07-06,5.41,1,24 +32636494,Luxurious & spacious in the heart of West Harlem,3901955,Lena,Manhattan,Harlem,40.80556,-73.95497,Entire home/apt,134,7,0,,,1,9 +32636654,Jamaica Queens Apartment,160618190,Melissa,Queens,Jamaica,40.70225,-73.81546,Entire home/apt,129,30,0,,,1,348 +32636982,Spacious and family friendly location!,245369413,Jason,Bronx,Parkchester,40.83485,-73.85954,Entire home/apt,93,5,1,2019-02-26,0.23,1,306 +32637632,Charming 1BR in a Modern Harlem Townhouse,2603586,Joseph,Manhattan,Harlem,40.80761,-73.94305,Private room,150,2,0,,,1,6 +32638547,1.5 Bdrm In Hip Bed-Stuy Brownstone,16866694,Nikki,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93856,Entire home/apt,100,1,13,2019-06-24,3.86,1,13 +32638687,Rustic Williamsburg Loft,225087238,Roxanne And Stan,Brooklyn,Williamsburg,40.70881,-73.96688,Entire home/apt,235,5,13,2019-07-04,2.98,1,153 +32638774,Friendly relaxing place for you to stay,72166833,Shalini,Manhattan,Washington Heights,40.84389,-73.93688,Private room,51,3,0,,,1,13 +32639119,Classic and Cozy Brooklyn Apartment,161985273,Melody-Lane,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.9499,Private room,45,3,7,2019-07-01,3.13,1,43 +32640244,Amazing Astoria apt minutes away from Manhattan!,245399415,Andrzej,Queens,Astoria,40.75664,-73.92806,Entire home/apt,180,1,12,2019-07-02,2.98,1,82 +32640289,2 bedroom 3 beds! Doorman Elevator 5229,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76651,-73.98752,Entire home/apt,202,30,1,2019-05-31,0.77,96,327 +32640768,Heavenly Harlem Haven,123810965,Carlton,Manhattan,Harlem,40.81072,-73.94236,Private room,50,1,13,2019-06-30,3.22,2,168 +32641909,Amazing One bedroom step away from Time SQ/73C,48146336,Irina,Manhattan,Hell's Kitchen,40.76237,-73.99202,Entire home/apt,160,30,1,2019-05-18,0.58,20,332 +32641991,Lovely room/Great Location in Williamsburg!,227520154,Lumila,Brooklyn,Williamsburg,40.70897,-73.96392,Private room,65,4,0,,,2,280 +32642131,Great Room in Manhattan - Close to Central Park,242594287,Thaweesab,Manhattan,Hell's Kitchen,40.76852,-73.98895,Private room,90,3,2,2019-03-31,0.48,1,66 +32642886,Great View Balcony Room/ 10min to Heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.74165,-73.90603,Private room,50,1,0,,,2,62 +32642930,"Clean, nice specious 2 bedroom apt in East Village",54645176,Alina,Manhattan,East Village,40.72712,-73.97763,Private room,220,3,1,2019-02-26,0.23,1,0 +32643109,UWS Sunny Cozy room by C park & Columbia UNI**,200261161,Davis,Manhattan,Upper West Side,40.79872,-73.96069,Private room,67,1,22,2019-06-12,5.64,3,38 +32643370,Central Bushwick Private Bedroom,10113653,Jessica,Brooklyn,Bushwick,40.69504,-73.9264,Private room,45,2,5,2019-06-10,1.55,1,9 +32643993,XL Private 3 bedroom Full floor E. Village Apt!,160356,Joseph,Manhattan,East Village,40.7253,-73.98401,Entire home/apt,250,1,5,2019-06-20,1.47,4,233 +32644251,4-bedroom Haven in Ridgewood,7335887,Emily,Queens,Glendale,40.69991,-73.89488,Entire home/apt,190,4,7,2019-06-16,2.28,2,70 +32644865,Spacious bedroom for the modern traveler,229637274,Sonia,Queens,Elmhurst,40.74792,-73.88115,Private room,42,1,6,2019-06-09,3.05,2,0 +32645984,Original Bed-Stuy Apartment,6410979,Alice,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94556,Entire home/apt,109,2,5,2019-04-28,1.24,2,0 +32646039,NY Spacious RM w/ Own Bath near train & LaGuardia.,137358866,Kazuya,Queens,Woodside,40.74683,-73.90654,Private room,50,30,0,,,103,94 +32646882,Cozy private room and bathroom in Times Square,102221050,Maybee,Manhattan,Hell's Kitchen,40.76086,-73.98927,Private room,150,1,16,2019-06-30,4.17,2,255 +32653951,A travelers accomodation,148960265,Randy,Manhattan,Marble Hill,40.87618,-73.91268,Private room,40,3,0,,,3,308 +32655597,"Charming, cozy apartment on the UWS",12247755,Sinead,Manhattan,Upper West Side,40.77961,-73.98474,Entire home/apt,150,14,3,2019-05-27,0.98,1,0 +32655912,COOL DEAL,1284729,Selcuk,Manhattan,Upper East Side,40.77756,-73.95408,Entire home/apt,137,7,1,2019-04-08,0.33,1,12 +32657400,LONG TERM -Medium room-A-B-C-D trains-Washer&Dryer,231870747,Ozzy,Manhattan,Harlem,40.82455,-73.94585,Private room,44,14,2,2019-07-01,1.71,1,0 +32657797,Comfy 3 bedroom apartment in Manhattan,245474906,Evgeny,Manhattan,East Harlem,40.79519,-73.94115,Entire home/apt,350,3,8,2019-06-29,2.18,1,318 +32661291,Large Bedroom with private sunroom Columbus Circle,2521127,Rick,Manhattan,Upper West Side,40.76829,-73.98298,Private room,275,2,13,2019-07-05,3.15,1,233 +32661706,"Spacious, modern and sunny 1-BD in Forest Hills",139306955,Bianca,Queens,Forest Hills,40.7164,-73.83501,Entire home/apt,150,5,3,2019-06-03,0.99,1,75 +32661869,Bushwick room above punk bar,52835849,Heather,Brooklyn,Bushwick,40.70153,-73.92996,Private room,60,7,0,,,2,332 +32661875,TIMES SQUARE PRIVATE YARD 4 GUEST APARTMENT,75011143,Ryan,Manhattan,Hell's Kitchen,40.76125,-73.98849,Entire home/apt,125,3,9,2019-06-15,2.13,1,191 +32662408,Dashing 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74422,-73.97309,Entire home/apt,174,29,0,,,327,312 +32663202,Cozy Chelsea Apartment,64433748,Abby,Manhattan,Chelsea,40.74855,-74.00074,Shared room,65,1,19,2019-06-30,4.45,1,208 +32663403,Sharp 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74436,-73.97223,Entire home/apt,192,29,0,,,327,329 +32663836,Sunny East Village Room w/ full kitchen,319842,Andy,Manhattan,East Village,40.72681,-73.97955,Private room,185,2,0,,,1,26 +32664187,Beautiful room close to Prospect Park,25575398,Maya,Brooklyn,Crown Heights,40.66828,-73.95341,Private room,70,5,3,2019-05-31,0.90,1,9 +32664246,"Cozy apartment, few blocks from Central Park",112173787,Enrico,Manhattan,East Harlem,40.79191,-73.93982,Entire home/apt,166,2,2,2019-04-18,0.65,1,0 +32664528,5 Stops to 42nd St/Times Sqaure,57007752,Dinneal,Queens,Long Island City,40.76321,-73.93472,Private room,55,2,15,2019-06-26,3.88,2,114 +32664634,Be happy in NYC everything closet to you,194804585,Ines,Queens,Jackson Heights,40.75245,-73.88586,Private room,55,3,4,2019-06-27,4,2,61 +32664976,Quiet 1BR at Union Square/East Village,245013643,Daria,Manhattan,Gramercy,40.73379,-73.98605,Entire home/apt,130,30,0,,,2,342 +32664982,"Your bright, spacious & central WILLIAMSBURG home!",8498596,Erika,Brooklyn,Williamsburg,40.71558,-73.94877,Private room,95,2,14,2019-06-21,3.44,1,32 +32666157,"Charming, East Village One Bedroom",776290,Barrett,Manhattan,East Village,40.72844,-73.98296,Entire home/apt,115,3,1,2019-03-11,0.25,1,5 +32666523,Furnished room in Washington Heights in 184st,241280089,Mary,Manhattan,Washington Heights,40.85156,-73.93035,Private room,37,15,0,,,1,350 +32666534,Prospect Brownstone Palace,23388169,Jessica,Brooklyn,Prospect Heights,40.67616,-73.97009,Entire home/apt,350,4,3,2019-06-28,1.11,2,82 +32667705,Beautiful Luxury 4BR/2BA Williamsburg Apartment,229566046,Roman,Brooklyn,Williamsburg,40.70678,-73.95478,Entire home/apt,506,1,8,2019-06-30,2.18,1,134 +32667711,Sonder | The Nash | Picturesque Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74769,-73.97592,Entire home/apt,165,29,1,2019-05-19,0.59,327,342 +32667713,Delightful 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74467,-73.97188,Entire home/apt,160,29,1,2019-05-22,0.63,327,345 +32668712,BB+B Brooklyn Brick & Brownstone/ Treetop terrace,521964,James And Siobhan,Brooklyn,Bedford-Stuyvesant,40.68472,-73.9418,Entire home/apt,650,1,22,2019-07-03,5.41,1,307 +32668812,BEAUTIFUL BROOKLYN ROOM,88437224,Laura,Brooklyn,Sunset Park,40.63916,-74.02175,Private room,40,2,0,,,1,0 +32668900,Best apartment in Chelsea for a young couple,11821104,Nicolas,Manhattan,Chelsea,40.74214,-73.99912,Entire home/apt,200,5,0,,,1,9 +32668910,A Peaceful Studio In The Heart of BK,8960858,Hui Chong,Brooklyn,Crown Heights,40.67639,-73.94785,Entire home/apt,102,3,7,2019-06-10,1.72,1,4 +32669067,One of The Kind in NYC,102325214,Chris,Manhattan,Theater District,40.7606,-73.98408,Entire home/apt,359,5,10,2019-05-20,2.42,1,2 +32669154,The Heart of BedSty,225322104,Gwendolyn,Brooklyn,Bedford-Stuyvesant,40.691,-73.94696,Entire home/apt,190,1,5,2019-05-19,1.47,1,351 +32669305,Cozy and Convenient Upper West Side Apartment,174804937,Julia,Manhattan,Upper West Side,40.80081,-73.96414,Entire home/apt,150,1,0,,,1,0 +32670147,NEW Brooklyn 3 Bedroom Townhouse with Private Deck,186252061,Margery,Brooklyn,Bedford-Stuyvesant,40.67779,-73.92483,Entire home/apt,150,2,0,,,1,32 +32670621,Heavens' Home,245655016,Cleo & Job,Brooklyn,Canarsie,40.63355,-73.90466,Entire home/apt,168,1,10,2019-06-28,2.46,1,83 +32670715,Family Friendly 2 Bedroom Apartment with Parking.,105956343,Ali,Brooklyn,Sheepshead Bay,40.58594,-73.93182,Entire home/apt,125,2,13,2019-06-30,3.98,1,0 +32671362,bedroom in a cozy apartment in Brooklyn,44513798,William,Brooklyn,Bedford-Stuyvesant,40.68122,-73.91018,Private room,40,2,0,,,1,0 +32671733,Luxury studio close to central park,10219283,Jasmine,Manhattan,Hell's Kitchen,40.7718,-73.99421,Entire home/apt,170,1,4,2019-06-23,1.01,1,3 +32672719,"Newest,sunny,room with separate entrance & balcony",245564705,Sergii,Brooklyn,Brighton Beach,40.57921,-73.96419,Private room,85,1,18,2019-06-20,4.43,1,222 +32672993,Cozy room in LES/Chinatown,2238256,Jaclyn,Manhattan,Chinatown,40.71463,-73.99054,Private room,128,13,0,,,1,91 +32673942,Sunny and Very Spacious 1 bedroom Apartment,139591030,Robert,Manhattan,Morningside Heights,40.80714,-73.96515,Entire home/apt,150,5,1,2019-03-22,0.28,1,0 +32674139,"Cute 1 bed/1 bath apartment, in a great location!",48438698,Stephanie,Manhattan,Upper East Side,40.76916,-73.95365,Entire home/apt,125,3,6,2019-06-23,1.51,1,42 +32675657,A budget friendly Greenpoint Studio!,83717038,Max,Brooklyn,Greenpoint,40.73738,-73.95282,Entire home/apt,95,2,7,2019-06-14,1.89,3,14 +32675979,Private Room With Kitchen Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74921,-73.99273,Private room,100,1,9,2019-06-22,3.42,9,275 +32676082,Large One Bedroom Suite With Kitchen in Midtown,244559229,Stewart Hotel,Manhattan,Chelsea,40.74913,-73.99128,Private room,100,1,4,2019-06-30,1.85,9,323 +32676112,Margarita's Room # 2 A unos minutos del JFK y LGA,214738765,Lucio,Queens,Richmond Hill,40.69433,-73.83114,Private room,58,1,16,2019-06-30,4.44,3,129 +32676180,Large Private Suite in the Heart of Midtown,244559229,Stewart Hotel,Manhattan,Chelsea,40.74845,-73.99257,Private room,100,1,22,2019-06-18,7.67,9,315 +32676181,Accessible Two Bedded Suite With Kitchen near MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.7492,-73.99073,Private room,100,1,22,2019-07-02,9.85,9,319 +32676185,Huge Two Bedroom Suite in the Heart of New York,244559229,Stewart Hotel,Manhattan,Chelsea,40.74819,-73.99224,Private room,100,1,0,,,9,245 +32676186,Large One Bedroom Double With Kitchen in Manhattan,244559229,Stewart Hotel,Manhattan,Chelsea,40.74963,-73.99141,Private room,100,1,3,2019-06-11,1.80,9,269 +32676189,Two Beds in Private Room near Times Square and MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74851,-73.99062,Private room,100,1,4,2019-07-01,1.69,9,317 +32676190,Large One Bedroom Suite with Two Baths in Chelsea,244559229,Stewart Hotel,Manhattan,Chelsea,40.74927,-73.99227,Private room,100,1,1,2019-05-27,0.68,9,324 +32678246,Private and Spacious Queen Room Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74902,-73.99211,Private room,100,1,17,2019-07-02,7.08,9,324 +32678718,Luxury accommodation minutes from Central Park!,244361589,Row NYC,Manhattan,Theater District,40.75781,-73.98903,Private room,499,1,0,,,9,293 +32678719,Enjoy great views of the City in our Deluxe Room!,244361589,Row NYC,Manhattan,Theater District,40.75918,-73.98801,Private room,100,1,156,2019-07-07,58.50,9,299 +32678720,Great Room in the heart of Times Square!,244361589,Row NYC,Manhattan,Theater District,40.75828,-73.98876,Private room,199,1,82,2019-07-07,27.95,9,299 +32678721,Nice Room 1 block away from Times Square action!,244361589,Row NYC,Manhattan,Theater District,40.75783,-73.98908,Private room,100,1,38,2019-07-04,14.62,9,295 +32678723,Spacious room in the Heart of Midtown!,244361589,Row NYC,Manhattan,Theater District,40.75803,-73.98887,Private room,100,1,6,2019-06-15,2.61,9,289 +32678724,Steps from varied cuisines at Restaurant Row!,244361589,Row NYC,Manhattan,Theater District,40.75792,-73.989,Private room,249,1,0,,,9,278 +32678725,Enjoy the Times Square experience with the family!,244361589,Row NYC,Manhattan,Theater District,40.75976,-73.98761,Private room,249,1,22,2019-06-23,7.59,9,283 +32678726,Steps away from the Heart of the Theater District!,244361589,Row NYC,Manhattan,Theater District,40.75925,-73.98767,Private room,100,1,1,2019-05-04,0.45,9,299 +32678727,In the center of all Broadway Theater ACTION!,244361589,Row NYC,Manhattan,Theater District,40.75821,-73.9882,Private room,249,1,0,,,9,298 +32681408,Artful UWS Superior Queen Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78111,-73.97923,Private room,209,1,6,2019-06-23,2.81,10,288 +32681548,Artful UWS Room-2 Double Beds Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78162,-73.97941,Private room,250,1,1,2019-05-04,0.45,10,281 +32681549,"Artful UWS Loft with Terrace Near Central Park,",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78133,-73.98132,Private room,305,1,0,,,10,271 +32681551,UWS King Room with Broadway View Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78189,-73.98138,Private room,230,1,1,2019-06-06,0.88,10,288 +32681559,Artful UWS Jr Suite with Balcony Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78281,-73.98124,Private room,325,1,0,,,10,259 +32681564,Artistic UWS Jr Suite- 2 Queens Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.7813,-73.97922,Private room,280,1,0,,,10,275 +32681565,Artistic UWS Studio with Terrace Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78128,-73.9796,Private room,275,1,0,,,10,281 +32681579,"Artful UWS King Room near Central Park, Museums",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78241,-73.98077,Private room,220,1,0,,,10,284 +32681581,"Artful UWS King Room - near Central Park, Museums",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78313,-73.97953,Private room,230,1,2,2019-05-28,0.74,10,252 +32681584,Artful UWS Penthouse with Balcony by Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78136,-73.97988,Private room,350,1,0,,,10,282 +32683419,Steps away from Times Square!! Stylish Queen Room,244370442,Paramount Hotel,Manhattan,Theater District,40.76033,-73.98636,Private room,324,1,5,2019-05-25,1.85,7,363 +32683422,Up to 4 people-Only steps away from Times Square!!,244370442,Paramount Hotel,Manhattan,Theater District,40.75861,-73.98683,Private room,379,1,10,2019-06-12,4.55,7,353 +32683430,Private Bed and Essentials for NYC Solo Travelers,244370442,Paramount Hotel,Manhattan,Theater District,40.75976,-73.98727,Private room,299,1,20,2019-06-15,7.69,7,362 +32683433,Spacious King near Times Square and Broadway Shows,244370442,Paramount Hotel,Manhattan,Theater District,40.76026,-73.98747,Private room,359,1,4,2019-05-28,1.54,7,358 +32683537,Stylish Private 1 Double Bed Room in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.75987,-73.98758,Private room,304,1,6,2019-05-30,2.54,7,351 +32687805,Charming one bedroom with rooftop in Brooklyn,67449621,Renel,Brooklyn,Crown Heights,40.67729,-73.95697,Entire home/apt,146,28,2,2019-05-27,0.77,1,24 +32691375,Vintage 3BR Chelsea Loft! Best Location!,245324803,Alexandra,Manhattan,Chelsea,40.75106,-73.99792,Entire home/apt,149,2,9,2019-06-23,2.31,1,129 +32692224,"Affordable, Simple, Bright, Furnished NYC Studio!",1623509,Ngozi,Manhattan,Harlem,40.81891,-73.93786,Entire home/apt,73,7,1,2019-05-21,0.61,1,43 +32694705,Sizeable Private Room - Prime NYC Location!,242962235,Yuval,Queens,Ridgewood,40.70881,-73.89689,Private room,42,30,1,2019-06-01,0.79,23,37 +32694901,Newly Designed / Furnished Room - PRIME Location!,242962235,Yuval,Queens,Ridgewood,40.70899,-73.89494,Private room,42,30,2,2019-06-20,0.86,23,225 +32695204,Beautiful 1 bedroom house near Verrazano bridge,144653854,Natalya,Staten Island,Arrochar,40.59809,-74.0656,Entire home/apt,150,2,12,2019-07-01,3.79,1,85 +32695489,"New Years Eve, The Manhattan Club (A268)",244746656,William,Manhattan,Midtown,40.76447,-73.9816,Entire home/apt,840,1,0,,,4,4 +32695731,New York City - Double Room (A140),244746656,William,Manhattan,Midtown,40.75169,-73.97335,Entire home/apt,315,1,0,,,4,3 +32695762,"New York City, Double Hotel Room (A142)",244746656,William,Manhattan,Midtown,40.75215,-73.97269,Entire home/apt,315,1,0,,,4,3 +32695800,Thanksgiving - New York City (A144),244746656,William,Manhattan,Midtown,40.75166,-73.97323,Entire home/apt,315,1,0,,,4,3 +32696766,Cozy East Village Apartment,228235742,Amber,Manhattan,East Village,40.72412,-73.98891,Private room,100,1,0,,,1,0 +32696852,Beautiful lots of light room in the heart of LES,244182582,Milena,Manhattan,Lower East Side,40.71923,-73.99336,Private room,74,30,0,,,4,332 +32697000,Cozy room in Williamsburg near subway,228184534,Ekaterina,Brooklyn,Williamsburg,40.71965,-73.94234,Private room,45,15,1,2019-03-31,0.30,1,37 +32697097,Gorgeous Bushwick Townhome,158891219,Peter,Brooklyn,Bushwick,40.68638,-73.90863,Entire home/apt,300,2,10,2019-06-10,2.83,1,112 +32697582,Upper East Side Gem,69784014,William,Manhattan,Upper East Side,40.77817,-73.94743,Entire home/apt,105,3,10,2019-05-27,2.56,1,0 +32697647,Spacious! 3 bed 2bath 5min JFK & Resorts Casino,199075581,Larry,Queens,Jamaica,40.67193,-73.77986,Entire home/apt,135,1,23,2019-07-02,8.52,1,121 +32698370,Private rooftop exposed brick NYC apartment,244438661,Bel,Manhattan,Upper West Side,40.79553,-73.97388,Entire home/apt,200,3,3,2019-03-29,0.79,2,0 +32698909,Cozy Bronx Home ( 2 nd floor),241236910,Bernadette,Bronx,Wakefield,40.88999,-73.86008,Private room,75,2,11,2019-06-10,3.17,1,54 +32699108,"In the heart of Hunters Point, Long Island City",74116175,Lauro,Queens,Long Island City,40.74547,-73.95198,Entire home/apt,300,2,7,2019-07-01,2.26,1,40 +32699916,Harlem Hideaway,180523383,Richardene,Manhattan,East Harlem,40.80305,-73.94163,Entire home/apt,185,1,5,2019-05-05,1.20,1,338 +32699981,"HuGe, Bright Room.",144224025,Khaled,Brooklyn,Bushwick,40.69762,-73.91999,Private room,45,1,14,2019-06-13,3.23,1,189 +32700870,Heart of NYC! 4BR Incredible Location!,245324678,Steven,Manhattan,Midtown,40.757,-73.96906,Entire home/apt,199,2,10,2019-06-20,2.97,1,103 +32701394,Large Room in a Duplex Townhouse Style Apartment!,130185535,Renee,Manhattan,East Village,40.73018,-73.97981,Private room,60,60,0,,,1,147 +32701542,Lovely Spacious Home Close to Manhattan & Airports,244453286,Alba,Queens,Sunnyside,40.73802,-73.91902,Entire home/apt,180,3,10,2019-07-06,2.48,2,123 +32702033,The Refinery,18170444,Sebastian,Brooklyn,Carroll Gardens,40.68299,-73.99928,Private room,80,2,13,2019-05-29,3.42,2,160 +32704496,Ladies Shared Cozy Space,163749958,Brianna,Manhattan,Kips Bay,40.74433,-73.97868,Shared room,39,2,1,2019-05-10,0.50,3,365 +32705496,Clean and Modern Harlem 1 Bedroom,110001729,Erick,Manhattan,Harlem,40.80226,-73.95211,Entire home/apt,113,2,3,2019-05-22,0.84,1,35 +32711107,CentralPark/ Upper west /Columbia University,206758177,Miguel,Manhattan,Upper West Side,40.80007,-73.95981,Entire home/apt,234,1,27,2019-07-05,6.69,3,51 +32711759,Luxury Studio in Nomad NYC,21056486,Hanna,Manhattan,Midtown,40.74389,-73.98537,Entire home/apt,150,10,0,,,1,111 +32713924,Bnb n Spa 30 minutes from Manhattan,22125997,Lilly Rose,Bronx,Westchester Square,40.84077,-73.8487,Private room,50,3,6,2019-06-03,1.62,2,27 +32714098,Gorgeous 1 BR apt in NYC with breathtaking views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-74.0002,Entire home/apt,302,30,0,,,121,364 +32714417,"Modern, Deluxe 1 bedroom apt in prime of NYC!",30283594,Kara,Manhattan,Hell's Kitchen,40.76168,-73.9996,Entire home/apt,350,30,0,,,121,364 +32714435,Heart of NYC- deluxe 1BR apt with gorgeous views,30283594,Kara,Manhattan,Hell's Kitchen,40.76212,-73.9981,Entire home/apt,350,30,0,,,121,364 +32714651,Gorgeous Modern Cozy Manhattan Apartment!,29525065,Mj,Manhattan,Upper West Side,40.78334,-73.97927,Entire home/apt,120,30,1,2019-05-31,0.75,1,311 +32715168,Great room great view /10min to heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.7412,-73.90552,Private room,55,1,2,2019-06-16,1.82,2,152 +32716117,Brooklyn Heights garden window view cozy studio,125981804,Ornella,Brooklyn,Brooklyn Heights,40.6929,-73.99111,Entire home/apt,110,7,0,,,1,151 +32716275,Iconic renovated tenement apartment!,205764159,Sarah,Manhattan,Lower East Side,40.72202,-73.98858,Entire home/apt,170,2,1,2019-05-27,0.70,1,8 +32717193,Cozy Greenpoint one bedroom apartment,245878254,Amanda,Brooklyn,Greenpoint,40.73142,-73.96023,Entire home/apt,189,2,9,2019-06-25,3.51,1,60 +32717623,Freshly furnished private room - GREAT Location!,242962235,Yuval,Queens,Ridgewood,40.70912,-73.89685,Private room,42,30,3,2019-07-05,0.86,23,311 +32717722,Brand New Furnished Room in Prime NYC,242962235,Yuval,Queens,Ridgewood,40.70725,-73.89473,Private room,45,30,1,2019-06-09,1,23,309 +32717887,Cosy Crown Heights Brownstone,43494916,Tilly,Brooklyn,Crown Heights,40.67637,-73.95527,Entire home/apt,132,3,0,,,2,0 +32718064,Artist Designed Garden Floor With Sunny Back Yard,15538629,Brigitte,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94253,Entire home/apt,175,3,12,2019-07-05,4.00,1,301 +32718338,Beautiful vintage apt in Williamsburg (ENTIRE APT),24809291,Luca,Brooklyn,Williamsburg,40.71438,-73.94359,Entire home/apt,130,5,1,2019-05-07,0.48,1,121 +32718483,3 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74123,-73.98058,Private room,94,1,23,2019-07-03,5.90,3,55 +32719444,"2 entire floors,2 (Website hidden by Airbnb) to everything.",34313176,Eddie,Queens,Rego Park,40.71702,-73.86183,Entire home/apt,239,2,0,,,4,299 +32721182,Gorgeous Dumbo 2-Bedroom w/ Incredible Views,245805416,Samantha,Brooklyn,DUMBO,40.70284,-73.99083,Entire home/apt,375,3,2,2019-06-27,2,1,242 +32721316,Make this New Year's Eve Special in NYC,64222121,Deanna,Manhattan,Midtown,40.75333,-73.97266,Private room,450,3,0,,,1,160 +32721564,2 Bedroom Apartment in Residential Neighborhood,90463984,Isabelle,Queens,Richmond Hill,40.70047,-73.84086,Entire home/apt,120,7,0,,,3,52 +32722219,New Beautiful Apt in Manhattan 30min to Midtown,19303369,Hiroki,Manhattan,Inwood,40.86428,-73.92199,Private room,27,29,1,2019-05-31,0.77,37,32 +32722262,Parkside Chateau,212338108,James R,Manhattan,Harlem,40.82335,-73.94902,Private room,125,1,2,2019-06-16,2,1,139 +32722385,Large bright room in Brooklyn artist's apartment!,6753972,July,Brooklyn,Bedford-Stuyvesant,40.68362,-73.95692,Private room,60,1,1,2019-05-26,0.67,1,95 +32723619,Apt in heart of Williamsburg,111466,Joanna,Brooklyn,Williamsburg,40.71797,-73.95738,Entire home/apt,250,4,1,2019-06-27,1,1,122 +32724046,Large & Adorable 2 Bedroom in the Heart of Bklyn,4726371,Samantha,Brooklyn,Gowanus,40.67886,-73.98702,Entire home/apt,175,2,4,2019-04-30,1.20,2,0 +32724719,"Quiet and Private Space in Bushwick, Brooklyn",42164373,Gina,Brooklyn,Bushwick,40.70725,-73.91966,Entire home/apt,50,3,1,2019-03-24,0.28,1,0 +32724929,Cozy and modern bedstuy room,58994794,Jean-Paul,Brooklyn,Bedford-Stuyvesant,40.689,-73.94445,Private room,72,1,3,2019-04-28,1.11,1,311 +32725337,Ayo's Abode 2,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.6867,-73.93835,Entire home/apt,160,1,6,2019-05-05,1.49,2,68 +32725374,Bay Bungalow Bare-Minimum Occupancy,762610,Christopher,Queens,Arverne,40.599,-73.79603,Private room,35,3,11,2019-06-05,2.73,2,54 +32726051,Cozy bedroom in South Harlem’s restaurant row,4113106,Frederic,Manhattan,Harlem,40.80252,-73.9547,Private room,80,1,17,2019-06-13,4.21,2,177 +32726513,"Quiet, Cozy, Oassis",246096171,Ramón Emilio,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91413,Private room,55,1,22,2019-07-03,6.11,1,12 +32726808,Stylish & Cozy Room Same Street As The Subway,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67803,-73.9102,Private room,75,1,17,2019-06-16,4.51,4,227 +32729130,cozy and charming experience in China Town!,50333451,Jennifer,Manhattan,Chinatown,40.71432,-73.99866,Entire home/apt,151,12,0,,,1,0 +32731541,HUGE duplex floor for share with 1 girl,49758877,Karina,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94757,Shared room,30,18,8,2019-06-23,1.89,1,27 +32732490,Pro-Music Recording Studio With Bedroom & Lounge,106067584,Shelby,Brooklyn,Bedford-Stuyvesant,40.69025,-73.92491,Private room,225,1,0,,,1,179 +32733884,"FIRST FLOOR CHARMING ONE BED, GREAT BED SIT...",103240731,Fairry,Manhattan,East Village,40.72675,-73.98651,Entire home/apt,150,3,0,,,1,0 +32734625,Private Room in a chill home 20 mins to Manhattan,241390361,Melissa,Brooklyn,Bedford-Stuyvesant,40.69424,-73.93416,Private room,55,2,22,2019-07-01,5.20,1,45 +32735694,Cozy room in 3-bedroom bushwick apartment,24386929,Colton,Brooklyn,Bushwick,40.69493,-73.9273,Private room,40,10,1,2019-04-01,0.30,1,0 +32736925,One bedroom unit in Lower East side.,246173897,Michael,Manhattan,Lower East Side,40.71867,-73.99082,Entire home/apt,150,2,8,2019-06-30,2.24,1,33 +32737146,Artist loft in Heart of Bushwick!,22544960,Farnaz,Brooklyn,Williamsburg,40.7027,-73.93571,Private room,85,3,0,,,1,0 +32737169,Perfect UWS Furn. Rooms By Central Park & Transit,50741398,Jessica,Manhattan,Upper West Side,40.80102,-73.96528,Private room,80,1,10,2019-05-16,2.38,4,0 +32739824,Private 1 Bedroom Apartment in the Upper East,94038074,Forum,Manhattan,Upper East Side,40.77313,-73.94824,Entire home/apt,111,2,5,2019-05-08,1.39,1,0 +32739899,Spacious Room in the Heart of East Village!,245637171,Min,Manhattan,East Village,40.72789,-73.98557,Private room,82,30,1,2019-05-11,0.51,8,364 +32740310,Sonder | The Nash | Warm Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74928,-73.97453,Entire home/apt,262,2,9,2019-06-23,2.35,327,113 +32740475,Sonder | The Nash | Cozy Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74835,-73.97612,Entire home/apt,244,2,9,2019-06-13,2.31,327,133 +32740570,Sonder | The Nash | Chic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7488,-73.97522,Entire home/apt,240,2,8,2019-06-22,1.95,327,105 +32740761,My place 4 u,181889371,David,Brooklyn,Sea Gate,40.57919,-74.00635,Entire home/apt,1315,10,0,,,1,0 +32740979,beautiful and clean studio apartmen in Astoria,52970439,Abraham,Queens,Astoria,40.76604,-73.93108,Entire home/apt,110,2,6,2019-05-18,1.54,1,309 +32741043,Private Room in Historical Clinton Hill/Ft Greene,18318834,Anika,Brooklyn,Clinton Hill,40.69465,-73.96427,Private room,50,2,12,2019-07-07,2.98,1,0 +32742238,"Cozy cypress hill 1BR apt near jfk , bars & mta .",161514941,Maria,Brooklyn,Cypress Hills,40.68126,-73.89457,Private room,38,1,10,2019-06-23,2.46,1,365 +32742915,SPECIAL! NYC Summer - Reserve LOW Prices,246194760,Noel,Queens,East Elmhurst,40.75984,-73.88228,Private room,33,1,17,2019-06-16,6.46,4,208 +32742923,West Village/Chelsea 3 bd For Long Term Stays,221901576,Richard,Manhattan,West Village,40.7406,-74.0062,Entire home/apt,217,105,0,,,2,85 +32743311,Amazing apt Steps away from NYU and Union Square,246222122,Anna,Manhattan,East Village,40.73219,-73.98503,Entire home/apt,220,4,9,2019-06-22,2.23,2,233 +32743787,Brooklyn Best Kept Secrete!,2839817,Rain,Brooklyn,Bedford-Stuyvesant,40.68659,-73.91883,Private room,150,4,0,,,1,179 +32744022,Large 1BR Sublet UWS Luxury High-Rise,246232599,Shel,Manhattan,Upper West Side,40.79106,-73.96785,Entire home/apt,123,7,2,2019-04-22,0.65,1,0 +32744084,Sunny Bedroom in Williamsburg,118385679,Nina,Brooklyn,Williamsburg,40.71315,-73.95695,Private room,50,1,12,2019-06-17,3.13,1,13 +32744206,Sleep & The City (Women Shared Apartment),163749958,Brianna,Manhattan,Kips Bay,40.7423,-73.98016,Shared room,39,2,1,2019-06-18,1,3,345 +32744748,Rockacozy studio!,246239362,William,Queens,Belle Harbor,40.57553,-73.85299,Entire home/apt,85,1,0,,,1,33 +32745294,Packaged for one plus group (QUEEN),242631139,Glen,Brooklyn,East Flatbush,40.6472,-73.92951,Private room,100,2,4,2019-06-23,1.85,4,360 +32745711,Packaged for one plus groups (ENSUITE KING),242631139,Glen,Brooklyn,East Flatbush,40.64659,-73.93058,Private room,110,2,6,2019-06-30,2.54,4,354 +32746895,"Spacious, Sunlit Brooklyn Loft with City Views",5560274,Blake,Brooklyn,Crown Heights,40.6773,-73.9528,Entire home/apt,250,5,3,2019-06-24,1.15,1,179 +32747955,"Charming BDR - 15min Manhattan-4min stn trains N,W",203890641,Vinicius,Queens,Ditmars Steinway,40.77482,-73.90852,Private room,85,3,13,2019-06-24,3.71,2,208 +32748003,Close to Flushing Main Street and Manhattan! (3D),246272839,Northern Star Realty,Queens,Flushing,40.76663,-73.81921,Entire home/apt,85,1,5,2019-07-06,1.69,4,145 +32748646,曼岛中城 切尔西区CHESEA 21街 闹市中静怡如家的空间,230745945,Hong,Manhattan,Chelsea,40.74278,-73.99765,Private room,80,1,3,2019-06-15,2.50,1,0 +32749109,Bay Ridge(guys only),51596474,Antony,Brooklyn,Bay Ridge,40.62439,-74.02024,Shared room,30,12,2,2019-05-13,0.86,12,0 +32749511,Cozy furnished 2 Bedroom (30 day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69239,-73.94884,Entire home/apt,120,28,0,,,2,264 +32749800,Nice Private Room in Manhattan,53725579,William,Manhattan,Washington Heights,40.84493,-73.93843,Private room,45,1,25,2019-06-26,5.95,3,205 +32750252,What’s better than “Glamping” in NYC!!!,33287445,Jean,Queens,Elmhurst,40.74033,-73.88561,Private room,70,1,6,2019-06-22,1.61,1,89 +32750384,"Generous, Light-Filled Room in Brooklyn Townhouse",62803,Eugenia,Brooklyn,Brownsville,40.66863,-73.92169,Private room,44,9,4,2019-06-01,1.29,2,12 +32757476,Apartment 2,245394439,Joyce,Manhattan,Harlem,40.80299,-73.95443,Entire home/apt,181,2,15,2019-07-01,4.21,1,22 +32758570,LARGE ROOM - 1 MONTH MINIMUM - WASHER&DRYER,144008701,Ozzy Ciao,Manhattan,Harlem,40.82391,-73.9471,Private room,37,15,0,,,2,32 +32759322,Enjoy the flavor of Spanish Harlem's rich culture.,160187991,Rosalina,Manhattan,East Harlem,40.79359,-73.9407,Private room,65,2,2,2019-07-06,2,1,125 +32759711,Worldclass Casa - Private Room - 5 min to JFK,115136074,Tina,Queens,Springfield Gardens,40.69034,-73.74895,Private room,70,2,12,2019-06-15,2.95,3,89 +32760292,LUXURY APT 3 BEDROOMS MIDTOWN Views >GYM>TERRACE,245333087,Shoshana,Manhattan,Murray Hill,40.74545,-73.97188,Entire home/apt,650,5,2,2019-05-05,0.60,1,339 +32760468,Peaceful PRVT Room in Brooklyn Amenity Building,140433148,Lauren,Brooklyn,Bushwick,40.69319,-73.90547,Private room,53,30,0,,,3,142 +32762071,Bedstuy Artists Quarter (fire escape room),18272280,Louis,Brooklyn,Bedford-Stuyvesant,40.68402,-73.9424,Private room,51,1,1,2019-03-11,0.25,2,0 +32763453,Israeli Stay NYC,31518987,Yoni,Manhattan,Chelsea,40.73948,-73.99555,Private room,150,1,0,,,1,90 +32764445,G’s NYC Airbnb,5313154,Garrett,Manhattan,Washington Heights,40.83588,-73.94095,Entire home/apt,199,30,0,,,1,98 +32764575,Private bedroom in heart of Downtown Manhattan,1844921,Ananth,Manhattan,Chelsea,40.73926,-73.9946,Private room,140,2,7,2019-06-20,2.73,1,11 +32764647,Perfect apartment for the NYC experience,44169567,Ragini,Queens,Astoria,40.7561,-73.92578,Entire home/apt,170,1,1,2019-05-12,0.52,1,60 +32765655,Private Bedroom in East Williamsburg,2915668,Vince,Brooklyn,Williamsburg,40.71373,-73.94034,Private room,65,3,0,,,1,0 +32765984,Beautiful Room and private bath - Great Price!,16509151,Deborah,Queens,Forest Hills,40.71627,-73.83768,Private room,79,2,2,2019-04-29,0.55,1,85 +32765985,Cozy sofa-bed 2 in apartment! Near to Manhattan !,243367528,Lucca & Paula,Queens,Astoria,40.76663,-73.91436,Shared room,36,1,10,2019-06-09,2.36,7,313 +32766010,Private Studio in the Center of Manhattan,246432505,Qing,Manhattan,Midtown,40.74968,-73.98722,Entire home/apt,145,1,7,2019-06-16,1.74,1,0 +32770241,Spacious Sunnyside Room. Lots of Natural Lights.,137358866,Kazuya,Queens,Sunnyside,40.74874,-73.91315,Private room,35,30,0,,,103,191 +32770484,"Big Gorgeous Room•A/C| Close NYC +Modern & Clean",192187594,Joselyn,Queens,Maspeth,40.72504,-73.88976,Private room,55,2,9,2019-06-23,2.35,1,180 +32773207,Immersive Chelsea's Art House! Great Location!!,246456163,Diego,Manhattan,Chelsea,40.74996,-73.99488,Entire home/apt,149,2,9,2019-06-18,3.03,1,151 +32775747,Super cute & cozy 2BR home in Brooklyn,16479647,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68376,-73.93336,Entire home/apt,99,2,8,2019-07-07,2.03,1,0 +32777169,Beautiful Bedroom in Manhattan,53725579,William,Manhattan,Washington Heights,40.84332,-73.93829,Private room,45,1,20,2019-06-24,4.88,3,227 +32777705,Good Brooklyn shared apartment close to train,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67668,-73.91243,Shared room,28,1,5,2019-06-08,1.50,17,89 +32779148,HUGE Beautiful Brooklyn Loft,1135032,Kelsey,Brooklyn,Red Hook,40.68062,-74.00722,Private room,55,2,1,2019-05-01,0.43,1,5 +32780360,Beautiful & Clean 2B/2B near Times Square,145573505,Jasmine,Manhattan,Hell's Kitchen,40.7616,-73.99368,Entire home/apt,400,2,19,2019-07-04,6.20,1,95 +32781823,"Private 2bedrooms&bathroom near airport,train&city",5592622,Christina,Queens,Astoria,40.75676,-73.91334,Private room,115,1,4,2019-07-02,1.05,5,90 +32782675,Clean and quite,140125433,Yany,Bronx,Williamsbridge,40.87498,-73.85644,Private room,39,3,6,2019-07-05,1.57,1,49 +32783284,1 brdm Apartment available July And August,246589575,Regina,Brooklyn,Brighton Beach,40.5765,-73.9685,Entire home/apt,84,30,0,,,1,0 +32783365,Peaceful Sanctuary in the heart of the action,25312503,Gerrod & Rebecca,Manhattan,East Village,40.72412,-73.98283,Entire home/apt,158,1,16,2019-07-05,5.05,1,70 +32783755,Cozy Boerum Hill Private 2 Bedroom Apartment,12680161,Tirinda,Brooklyn,Boerum Hill,40.68406,-73.98481,Entire home/apt,175,1,12,2019-06-11,3.13,2,40 +32784434,Luxury Modern Grand Central 2 BR Apt Sleeps 5,246331794,Anna,Manhattan,Murray Hill,40.74929,-73.9779,Entire home/apt,300,1,29,2019-07-07,7.13,2,247 +32784607,New Williamsburg King Bed Condo,10994728,Jeff,Brooklyn,Williamsburg,40.71665,-73.9515,Entire home/apt,150,3,2,2019-05-14,0.77,1,159 +32785169,2 Bedroom Refuge with Private Bath & Living Room,20433973,Julia,Bronx,City Island,40.83988,-73.78287,Private room,95,1,6,2019-06-17,1.65,2,359 +32785423,"Soulful, Artistic Space in a Brooklyn Townhouse",3040104,Todd,Brooklyn,Park Slope,40.67687,-73.98171,Entire home/apt,140,4,9,2019-07-01,2.33,1,227 +32786031,Dream apartment facing Prospect Park,10783378,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65974,-73.96134,Entire home/apt,108,29,0,,,1,0 +32786180,Comfortable private single room (Queens),234393604,Sol,Queens,Middle Village,40.71474,-73.89931,Private room,28,1,21,2019-06-19,6.49,1,14 +32786275,Clean and Simple,82940021,Todd,Manhattan,Hell's Kitchen,40.76341,-73.99306,Entire home/apt,145,3,9,2019-07-01,3.55,1,6 +32787798,1 block to subway,246622509,Nalya,Brooklyn,Sheepshead Bay,40.59642,-73.95878,Private room,60,3,2,2019-04-14,0.51,1,158 +32788167,Private room in Upper East Side #14,1786901,Shai,Manhattan,Upper East Side,40.78365,-73.94723,Private room,80,3,8,2019-05-16,2.40,9,50 +32788343,Air conditioned Fantastic Private Room for 1 or 2,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.6941,-73.93947,Private room,52,5,4,2019-06-14,2.00,3,23 +32788464,"Cozy, BRIGHT & AFFORDABLE STUDIO, heart of UES",53149725,Elena,Manhattan,Upper East Side,40.77032,-73.95498,Entire home/apt,145,7,13,2019-07-01,3.17,1,34 +32788864,Air conditioned Wonderful Private Room for 1 or 2,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93866,Private room,48,5,6,2019-06-16,1.91,3,28 +32788877,"Private Queen Room in 2Br +on Broadway Astoria",193111692,Dan,Queens,Astoria,40.76317,-73.92208,Private room,75,21,0,,,1,0 +32788887,A cool bedroom in cool Brooklyn,481630,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68743,-73.94451,Private room,50,7,2,2019-06-30,1.33,2,4 +32789261,Spacious 2 bedroom apt in quiet area,246653349,Juan,Bronx,Baychester,40.8694,-73.84171,Entire home/apt,101,2,11,2019-06-30,3.40,1,46 +32789884,The livingroom turned bedroom in a 1Br apartment,4361061,Abrm,Queens,Astoria,40.77122,-73.92326,Private room,62,1,7,2019-06-30,2.10,2,25 +32790135,West Village Apartment,246664340,Andrew,Manhattan,West Village,40.7319,-74.00489,Entire home/apt,175,1,4,2019-05-21,1.40,1,5 +32790345,Private cozy room By Yankee stadium,246666261,Jovid,Bronx,Claremont Village,40.84355,-73.91103,Private room,55,1,8,2019-06-17,2.67,1,358 +32790547,"Private Cozy Room, easy to go around in NY City!",246665018,Helio,Queens,Long Island City,40.76266,-73.93929,Private room,60,7,1,2019-07-06,1,1,115 +32792015,Elegant and convenient access,63966717,Carol,Bronx,Fordham,40.85912,-73.89254,Private room,59,3,0,,,2,0 +32792151,Cozy Clean Two Bedroom Very near Fort Greene Park,246681878,Erica,Brooklyn,Fort Greene,40.69431,-73.97289,Entire home/apt,145,1,19,2019-06-28,5.18,1,30 +32792802,Cozy East Side Sweet Spot with lots of Character,5861806,Linn,Manhattan,Upper East Side,40.77526,-73.95333,Entire home/apt,140,2,4,2019-04-28,1.40,1,0 +32792849,Private half bath in Manhattan NEW construction,19303369,Hiroki,Manhattan,Inwood,40.86411,-73.92353,Private room,33,30,0,,,37,0 +32792970,Everything is New. Rare New apartment in Manhattan,19303369,Hiroki,Manhattan,Inwood,40.86423,-73.92348,Private room,33,29,1,2019-06-01,0.79,37,32 +32794232,Cozy Small Bedroom on Orchard,16664377,D,Manhattan,Lower East Side,40.71899,-73.98968,Private room,75,1,6,2019-06-01,2.02,3,155 +32795950,Spacious Room in Beautiful Private House,246717334,Denise,Staten Island,Mariners Harbor,40.6396,-74.1661,Private room,63,1,10,2019-06-29,2.65,1,179 +32798710,TW #8 Private Rm- 2nd Fl. Queen Bed 1 to 2 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.83757,-73.8353,Private room,62,1,14,2019-06-07,6.36,5,229 +32799550,TW #4 Private Rm 1st Fl. Full Size Bed 1 Guest,211136294,Sharon & Erika,Bronx,Schuylerville,40.83647,-73.83491,Private room,65,2,5,2019-06-01,1.90,5,183 +32801102,Kips Bay Apartment,209587921,Gia,Manhattan,Kips Bay,40.74072,-73.97764,Entire home/apt,199,2,6,2019-05-19,1.91,1,237 +32801214,TW #6 Private Suite 2nd Fl. 1 to 4 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.8356,-73.83369,Private room,150,1,24,2019-06-20,8.37,5,247 +32802231,"Perfect, charming apartment on Upper East Side",29602688,Lindsey,Manhattan,East Harlem,40.7889,-73.94925,Entire home/apt,130,2,6,2019-06-24,1.82,1,2 +32802904,COZY COLORFUL CITY PAD BY ALL TRANSPORTATION LINES,207000645,Tk,Manhattan,East Village,40.724,-73.98933,Entire home/apt,190,1,1,2019-05-22,0.63,1,365 +32803072,Small Room In Single Room Occupancy,244819285,Jamika,Manhattan,Greenwich Village,40.73535,-73.99525,Private room,100,3,6,2019-05-16,1.88,1,175 +32805038,Sweet home in NYC,105448689,Linda,Manhattan,Chelsea,40.74655,-74.00134,Entire home/apt,139,5,0,,,1,29 +32805276,Private room close to the Central Park,154843406,Eugene,Manhattan,Harlem,40.82786,-73.94845,Private room,50,2,11,2019-06-21,4.18,2,64 +32805414,Stylish Room in Times Square near Broadway Shows,244370442,Paramount Hotel,Manhattan,Theater District,40.76057,-73.98583,Private room,339,1,18,2019-06-22,6.59,7,364 +32806692,XL Williamsburg Full Apartment for rent,9089718,Ramon,Brooklyn,Williamsburg,40.71813,-73.95964,Entire home/apt,129,5,1,2019-03-05,0.24,1,14 +32806789,Spacious & Bright 1 Bedroom in S. Williamsburg,246791914,Rep,Brooklyn,Williamsburg,40.71078,-73.96905,Entire home/apt,200,2,8,2019-06-30,2.67,1,2 +32807364,Beautiful Bedroom in Trendy Neighborhood!,174668332,Karan,Brooklyn,Bedford-Stuyvesant,40.69141,-73.93022,Private room,76,1,7,2019-05-05,1.72,1,0 +32808169,"3-Bedroom Townhouse in Bed-Stuy, Brooklyn.",4606577,Zachariah And Jess,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93201,Entire home/apt,125,4,0,,,1,0 +32808737,Sonder | The Nash | Original Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7475,-73.97569,Entire home/apt,231,2,5,2019-06-03,1.32,327,82 +32808795,Unique West Village Loft,27559933,Ben,Manhattan,West Village,40.73283,-74.00734,Entire home/apt,300,2,7,2019-06-04,2.44,1,104 +32808836,Slice of New York. Enjoy Ethnicity and culture!!,246806787,Xian,Bronx,Williamsbridge,40.88542,-73.86169,Private room,140,2,3,2019-05-05,0.97,1,365 +32808879,Sonder | The Nash | Alluring Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74851,-73.97431,Entire home/apt,165,29,0,,,327,341 +32809387,The cutest little bungalow in Rockaway!,45364547,Lauren,Queens,Arverne,40.59384,-73.79392,Entire home/apt,300,2,1,2019-06-23,1,1,2 +32809670,Spacious Private Bedroom in a 3 bedroom apt.,246797434,Mel,Manhattan,Harlem,40.82908,-73.94096,Private room,63,3,1,2019-06-23,1,1,188 +32810768,Feel at home at this beautiful 2Br apartment!,29959226,Elad,Queens,Kew Gardens Hills,40.72876,-73.81967,Entire home/apt,65,13,1,2019-05-25,0.67,1,0 +32811391,Amazing views in the center of it all. Look at the Empire State Building right from your bed!,246827568,Ang,Manhattan,Chelsea,40.74596,-73.99234,Entire home/apt,290,2,14,2019-07-01,3.96,1,149 +32811501,Cozy Greenpoint Gem near park and hip amenities!,5718871,Allison,Brooklyn,Greenpoint,40.72434,-73.93971,Private room,59,7,1,2019-03-24,0.28,1,64 +32812845,Cozy Room in Lovely East Village Apartment!,245637171,Min,Manhattan,East Village,40.72981,-73.98638,Private room,55,30,0,,,8,310 +32813805,Private Room,246849103,Kathleen,Brooklyn,Sunset Park,40.66061,-73.99765,Private room,40,1,5,2019-04-07,1.35,1,89 +32813862,"Artsy, quiet haven in the Bronx’s little Ireland",8589557,John,Bronx,Woodlawn,40.89981,-73.86684,Private room,80,2,7,2019-06-03,1.84,1,70 +32814024,7 train to visit New York City at your fingertips,246851284,Jose,Queens,Flushing,40.75747,-73.80868,Entire home/apt,450,4,0,,,1,365 +32814524,Quiet & Clean Living Room in Astoria,1888085,Paulina,Queens,Astoria,40.76452,-73.92536,Shared room,35,1,11,2019-04-30,2.66,1,11 +32815390,Vinyl Studio for Music Lovers,9700935,Daniel,Queens,Astoria,40.75705,-73.90697,Entire home/apt,69,4,0,,,1,2 +32815738,"Bright, beautiful duplex apartment in Bushwick",49856034,Ellen,Brooklyn,Bushwick,40.69583,-73.93051,Private room,80,4,0,,,1,263 +32816064,Brand new Luxury apartment in a Luxury building,69426967,Aviel,Manhattan,Hell's Kitchen,40.76017,-73.99638,Entire home/apt,250,3,1,2019-03-09,0.24,1,0 +32816486,Cozy UES Apartment,65098342,Lacey,Manhattan,Upper East Side,40.76494,-73.95808,Entire home/apt,225,2,4,2019-05-31,1.24,1,1 +32816601,BROOKLYN 2BR RESIDENCE CLOSE TO TRAIN/Manhattan,120616904,Rhykel & Glenny,Brooklyn,Cypress Hills,40.67915,-73.89986,Entire home/apt,135,2,20,2019-07-03,5.56,1,297 +32816987,Enjoy Summer in the West Village.,50449750,Nick,Manhattan,West Village,40.73598,-74.0048,Entire home/apt,168,30,4,2019-06-16,1.85,1,47 +32818195,HUGE Private Union Square/East Village Apartment,246886799,Morgan,Manhattan,East Village,40.73226,-73.98983,Entire home/apt,250,2,12,2019-06-21,3.16,1,32 +32818383,Cozy clean quiet room with lock and key #1,146132198,Ronald And Cookie,Bronx,Wakefield,40.89393,-73.8581,Private room,50,2,14,2019-07-01,3.59,2,132 +32818954,"Clean, Private BDR and BATHROOM in LES/Chinatown!",31147415,Ravi,Manhattan,Lower East Side,40.71952,-73.99167,Private room,125,3,14,2019-06-30,3.96,1,36 +32819286,"Simple,clean,cozy room with lock and key #2 ,",146132198,Ronald And Cookie,Bronx,Wakefield,40.89604,-73.85877,Private room,50,2,20,2019-06-24,4.96,2,117 +32820306,The Grand Clinton Hill AirBnB,29411897,Keith,Brooklyn,Bedford-Stuyvesant,40.68873,-73.95472,Private room,70,1,18,2019-06-23,4.70,1,142 +32820753,Brooklyn classy suite (7day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94734,Entire home/apt,110,7,8,2019-06-23,2.16,2,243 +32820849,Beckoning ”Bed-Stay” 2 BR Suite in Bed-Stuy,96311058,Donna,Brooklyn,Bedford-Stuyvesant,40.68343,-73.92746,Entire home/apt,180,2,11,2019-06-29,3.37,1,280 +32821152,1BR SoHo Apt w/ your own private backyard.,96773131,Erica,Manhattan,Greenwich Village,40.72848,-74.00269,Entire home/apt,300,1,8,2019-06-22,2.96,1,192 +32821769,[NEWLY RENOVATED] - SMACK DAB IN THE ❤️ of NYC,229496718,Shubham,Manhattan,Hell's Kitchen,40.76649,-73.98727,Entire home/apt,489,3,10,2019-06-14,2.68,1,81 +32822073,Cozy apartment w/ Magnificent View!,246422621,Jimmy,Manhattan,Battery Park City,40.70966,-74.01644,Private room,69,2,3,2019-04-15,0.93,1,2 +32822356,Manhattan Lifestyle by Melanie (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74434,-73.97758,Shared room,53,2,2,2019-06-26,0.59,3,297 +32826893,Charming bedroom in the heart of Flatiron,34780853,Tia,Manhattan,Flatiron District,40.73885,-73.98786,Private room,99,1,2,2019-05-24,1.13,1,13 +32828305,2 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74138,-73.98168,Private room,115,1,19,2019-06-23,6.63,3,37 +32828362,"Spacious, clean room in midtown west.",246960941,Mordy,Manhattan,Hell's Kitchen,40.77041,-73.99242,Private room,150,2,0,,,1,88 +32828462,1 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74056,-73.98077,Private room,69,1,24,2019-07-01,6.43,3,35 +32831206,Cozy private room in the heart of NYC 51E1,190921808,John,Manhattan,Hell's Kitchen,40.75378,-73.9955,Private room,99,7,4,2019-06-07,1.69,47,318 +32833064,Private Room Right Off L Train,6447195,Aurora,Brooklyn,Williamsburg,40.70754,-73.94151,Private room,42,3,3,2019-06-26,1.30,2,5 +32834210,Stylish & Convenient 2BR off Park Ave,2279174,Svetlana,Manhattan,Murray Hill,40.7494,-73.9784,Entire home/apt,220,30,6,2019-06-08,1.94,1,135 +32834423,"Comfy room in large, dog-friendly apt w/ balcony",4094038,Alex,Brooklyn,Williamsburg,40.71036,-73.94053,Private room,65,2,13,2019-06-01,3.25,4,25 +32835357,4mins to Manhattan Bound 7train; 10mins to LGA (1),247013511,Frank,Queens,Jackson Heights,40.75298,-73.87675,Private room,40,2,8,2019-06-20,2.42,6,75 +32836385,Bright Private Bed/Bath in the Heart of Ft Greene,10337544,Christiana,Brooklyn,Fort Greene,40.69258,-73.97285,Private room,105,1,12,2019-06-10,3.87,1,0 +32837714,Private Room 15 min to Midtown Manhattan,100112994,Felix,Queens,Long Island City,40.75074,-73.93648,Private room,79,2,15,2019-07-02,3.95,2,37 +32837987,Bed-Stuy Modern and Minimal,43207895,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95174,Private room,60,3,3,2019-06-15,0.82,2,197 +32838270,Wyndham Midtown 45 in NYC,246225955,Michael,Manhattan,Midtown,40.7515,-73.97206,Entire home/apt,488,2,0,,,1,65 +32838331,Bed-Stuy Bookhouse,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.68989,-73.94469,Entire home/apt,95,2,5,2019-06-18,2.50,3,0 +32838697,Habitación privada cerca aeropuerto la Guardia.,202350344,Diana Carolina,Queens,East Elmhurst,40.76091,-73.88686,Private room,45,2,11,2019-07-01,3.67,2,294 +32839377,Spacious and peaceful Park Slope apartment!,2370813,Anastasia,Brooklyn,Gowanus,40.67757,-73.98845,Entire home/apt,139,2,19,2019-07-01,4.96,2,209 +32839529,Super Sunny Room in Ditmas Park,29927802,Claire,Brooklyn,Kensington,40.64217,-73.9714,Private room,56,1,7,2019-06-20,1.86,1,0 +32840036,Homey Room in StuyTown,64783050,Steven,Manhattan,Stuyvesant Town,40.73379,-73.97754,Private room,55,1,4,2019-03-26,0.97,1,1 +32840500,Cozy and Modern Bedroom in Williamsburg,55025690,Clara,Brooklyn,Williamsburg,40.71468,-73.95825,Private room,68,1,7,2019-06-08,2.23,1,0 +32840626,Sonder | Stock Exchange | Unique 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.706,-74.01068,Entire home/apt,221,2,10,2019-06-12,2.78,327,354 +32841296,"❋ FAB BROOKLYN ROOM ❋ PRIVATE ENSUITE, 2 BED'S ;-)",7598620,Daniel,Brooklyn,Bushwick,40.69826,-73.93474,Private room,58,1,26,2019-07-07,7.03,1,70 +32841690,Beautiful bed room and separate bathroom,233227636,Waqas,Brooklyn,Flatlands,40.6246,-73.92709,Private room,40,1,1,2019-06-04,0.83,2,37 +32841707,"Fresh, Spacious 2-Bed with Garage Parking",247064022,Sunny,Queens,Flushing,40.74551,-73.82662,Entire home/apt,189,3,10,2019-07-01,2.68,1,51 +32842295,Beautiful bedroom and full bathroom,233227636,Waqas,Brooklyn,Flatlands,40.62646,-73.92754,Private room,40,1,16,2019-06-22,5.05,2,151 +32843454,"Cute, Vintage Studio on UES Close to Express Q",247072396,Andrea,Manhattan,Upper East Side,40.77085,-73.94933,Entire home/apt,250,2,1,2019-04-21,0.38,1,0 +32844039,New York Comfort Stay!,105225699,Serena,Queens,Flushing,40.76177,-73.79415,Entire home/apt,135,3,12,2019-07-05,3.13,2,178 +32844072,Private studio with balcony near LGA and Manhattan,80933709,Jacqueline,Queens,East Elmhurst,40.76292,-73.87906,Private room,55,3,2,2019-06-22,2,2,37 +32844370,"Cozy & Modern, 1 bed apt in Hell’s Kitchen!!",4087531,Isabel & Micah,Manhattan,Hell's Kitchen,40.76414,-73.98652,Entire home/apt,169,3,0,,,1,0 +32844387,Cozy East Village Apartment,46231814,Amber,Manhattan,East Village,40.72423,-73.98816,Private room,100,3,26,2019-06-25,7.88,3,220 +32844588,Stylish Room w/ 2 Twin Beds in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.76035,-73.98587,Private room,324,1,13,2019-06-18,5.42,7,331 +32844884,Place like home,244217586,Rajwinder,Queens,Jamaica,40.70949,-73.79304,Entire home/apt,90,1,0,,,1,0 +32845010,Private 2 Bedroom APT Close to City & Expressway.,139238261,Ilya,Queens,Fresh Meadows,40.73566,-73.79059,Entire home/apt,95,3,17,2019-07-07,4.51,1,329 +32845131,"Modern, Private Bedroom in East Harlem",74205904,Carly,Manhattan,East Harlem,40.79368,-73.94294,Private room,75,2,3,2019-05-05,0.89,1,0 +32845242,In the Heart of Astoria,111723,Kat,Queens,Ditmars Steinway,40.77248,-73.91665,Entire home/apt,140,2,1,2019-05-06,0.47,1,3 +32845331,Brooklyn sun kissed studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68573,-73.9527,Entire home/apt,90,1,14,2019-06-24,3.59,5,63 +32845516,Brooklyn stylish studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95415,Entire home/apt,90,1,14,2019-06-20,3.39,5,55 +32845716,3 Bedroom Artist Loft in Williamsburg Prime,1019963,Renzo,Brooklyn,Williamsburg,40.71565,-73.95837,Entire home/apt,223,2,17,2019-07-03,4.47,1,310 +32846103,Cozy Apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68391,-73.91721,Private room,150,1,4,2019-06-02,1.26,2,267 +32847003,"IVORY COAST ROOM +Is your home away from home",145878384,Denise,Brooklyn,Crown Heights,40.67248,-73.92962,Private room,70,5,2,2019-06-15,1.54,7,308 +32847146,Stevie's,37703550,Steve,Manhattan,Washington Heights,40.84751,-73.93864,Private room,45,2,1,2019-04-13,0.34,1,35 +32847511,Luxurious 1BR Gorgeous City View High Elevation,247118366,Paul,Manhattan,Hell's Kitchen,40.76195,-73.98771,Entire home/apt,260,2,14,2019-06-14,4.24,1,212 +32848199,"Cozy, Confortable and Nice place in Bay Ridge",246910562,Stefany,Brooklyn,Bay Ridge,40.63238,-74.02382,Private room,53,1,22,2019-06-26,5.32,1,83 +32848619,NYUW05-3:Columbus university Central Park one room,39890192,Laura,Manhattan,Upper West Side,40.8022,-73.96483,Private room,97,15,0,,,12,179 +32854456,Cozy Clean Clutter-free Apartment with Office,22171095,George & Diana,Queens,Astoria,40.76235,-73.92138,Entire home/apt,140,2,16,2019-06-14,4.21,2,79 +32856048,"Dapper W.Village Studio w/Doorman, close to subway by Blueground",107434423,Blueground,Manhattan,West Village,40.7304,-74.00301,Entire home/apt,321,30,0,,,232,310 +32857508,10 min to Manhattan: Cozy share,247189581,Helena,Brooklyn,Fort Greene,40.68637,-73.97431,Shared room,25,2,8,2019-06-14,1.95,5,32 +32857674,Brooklyn modern studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95278,Entire home/apt,104,1,15,2019-06-20,3.66,5,48 +32857918,Classic Hells Kitchen Haven,129047499,Bret,Manhattan,Hell's Kitchen,40.76926,-73.98746,Private room,95,1,14,2019-06-10,3.50,1,7 +32858018,Brooklyn charming studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95265,Entire home/apt,90,1,10,2019-06-07,2.42,5,50 +32858895,Live like a true New Yorker!,8454981,Artez,Manhattan,Hell's Kitchen,40.75658,-73.99734,Entire home/apt,150,3,7,2019-06-13,1.98,1,0 +32859066,Bedroom & common area w/ private back yard.,171636572,Keegan,Brooklyn,Bushwick,40.68881,-73.91992,Private room,50,5,18,2019-06-16,7.01,1,12 +32860008,Bed-Stuy townhome ideal for families/entertaining,10283936,Kate,Brooklyn,Bedford-Stuyvesant,40.69148,-73.94994,Entire home/apt,300,5,1,2019-04-28,0.42,1,4 +32860550,VIP,247212166,Issouf,Bronx,Mott Haven,40.81058,-73.9069,Private room,80,5,0,,,1,179 +32861073,San Carlos Hotel Executive Junior Suite(B)up to 4,173685298,Janet,Manhattan,Midtown,40.75628,-73.97072,Private room,375,1,2,2019-06-04,1.13,11,179 +32862140,Furnished room in Manhattan Apt!,17842449,Marisa,Manhattan,Kips Bay,40.74068,-73.97848,Private room,40,30,0,,,1,83 +32864955,Cozy Apartment near NYC Central Park & Riverside,235905088,Dominique,Manhattan,Upper West Side,40.8022,-73.9666,Entire home/apt,325,7,8,2019-06-22,2.53,1,176 +32864985,Sunny studio in Manhattan near Central Park,157422070,Georgiana,Manhattan,Upper West Side,40.78493,-73.97294,Entire home/apt,175,5,7,2019-07-02,2.44,1,19 +32865017,Quiet Private Room in Heart of Jamaica smoke ok!,141645843,Gedan,Queens,Jamaica,40.681,-73.79592,Private room,33,1,3,2019-05-23,0.74,2,189 +32865372,Casa Linda on Linden - 8 minutes to JFK Airport,3179866,Gonzalo And Nora,Queens,Jamaica,40.68816,-73.78974,Entire home/apt,170,3,8,2019-06-17,2.79,2,336 +32865732,Park views and city fun for July & August,11175,Teri,Brooklyn,Prospect-Lefferts Gardens,40.6622,-73.96208,Entire home/apt,130,30,0,,,1,129 +32866480,Loft on Ludlow (LES/Chinatown),1159268,Max,Manhattan,Chinatown,40.71614,-73.99047,Entire home/apt,200,2,0,,,1,0 +32866678,Sonder | The Nash | Relaxed 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74896,-73.97521,Entire home/apt,212,29,0,,,327,330 +32867399,Amazing location 10min to the city,247189581,Helena,Brooklyn,Fort Greene,40.6865,-73.9729,Shared room,38,2,3,2019-05-19,0.81,5,31 +32869060,"Big, brt rm w/ king bed+ pvt bath in HK/MT West",33607268,Anne,Manhattan,Hell's Kitchen,40.76575,-73.98938,Private room,110,1,14,2019-05-29,3.65,1,0 +32869379,Air conditioned Excellent Private Room for 1,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93799,Private room,42,5,3,2019-05-11,0.76,3,23 +32870169,Spacious 1 Bedroom in the West Village,60668386,Madison,Manhattan,West Village,40.73341,-74.00444,Entire home/apt,197,2,3,2019-06-27,3,1,2 +32870748,"Luxury building studio, swimmingpool, pet friendly",246865215,Mia,Brooklyn,Williamsburg,40.72136,-73.95532,Entire home/apt,160,2,1,2019-04-27,0.41,1,350 +32871846,The Artist,18170444,Sebastian,Brooklyn,Carroll Gardens,40.68133,-73.99944,Private room,80,2,20,2019-06-23,5.50,2,154 +32872356,BEST SIDE OF BED-STUY,243875619,David,Brooklyn,Bedford-Stuyvesant,40.68725,-73.94625,Private room,48,1,20,2019-07-07,5.04,2,242 +32872437,Room in Astoria,145984241,Diego,Queens,Astoria,40.75492,-73.91548,Private room,100,4,0,,,1,114 +32873781,Bed-Style! One bedroom apt. in trendy neighborhood,211280779,Kourtney,Brooklyn,Bedford-Stuyvesant,40.68779,-73.92131,Entire home/apt,125,1,0,,,1,116 +32874495,Private room - Midtown West elevator building,55586606,Stacey,Manhattan,Hell's Kitchen,40.75493,-73.99676,Private room,200,2,8,2019-06-12,2.40,1,0 +32874857,Luxury Studio High Rise 10 mins from Times Sq NY!,247335568,Evelyn,Queens,Long Island City,40.74881,-73.94316,Entire home/apt,130,3,1,2019-05-10,0.50,7,24 +32875637,"Williamsburg 2-Story Penthouse, Large Private Deck",118403993,Arielle,Brooklyn,Williamsburg,40.72124,-73.95984,Entire home/apt,400,2,10,2019-06-19,2.63,2,351 +32876011,Private room in a perfect location in the city,59583716,Shai,Manhattan,Upper East Side,40.76174,-73.96625,Private room,90,3,1,2019-03-12,0.25,1,8 +32876527,"Cozy place to stay, 30 min away from Manhattan.",71968525,Raya,Brooklyn,Borough Park,40.62688,-73.99795,Shared room,50,3,1,2019-03-13,0.25,1,177 +32884159,Huge brooklyn duplex,238544255,Kynara,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91272,Private room,45,1,5,2019-06-01,1.28,1,37 +32884505,"Cozy, spacious room in Bed-Stuy",158872351,Kelly,Brooklyn,Bedford-Stuyvesant,40.68845,-73.9439,Private room,55,1,7,2019-06-10,2.56,1,0 +32885270,Bright Designer 1 Bedroom in Heart of Manhattan,2938649,Danielle,Manhattan,Chelsea,40.74184,-73.9981,Entire home/apt,180,7,3,2019-06-26,2.31,1,0 +32886217,Dash Production loft,247411073,Antwoine,Brooklyn,Crown Heights,40.67041,-73.9463,Private room,239,1,1,2019-05-19,0.58,1,364 +32886361,beautifulROOM/Safe&comfortable/ near LG& JFK,169587048,Jay/Carolina Bastidas Family,Brooklyn,Cypress Hills,40.68258,-73.87731,Private room,50,7,1,2019-05-13,0.52,2,365 +32886967,Comfortable Single Room - 15min Manhattan,203890641,Vinicius,Queens,Ditmars Steinway,40.77558,-73.90941,Private room,50,3,13,2019-06-24,3.71,2,220 +32888484,Brand new charming modern apartment,82190014,Kristin,Brooklyn,East Flatbush,40.66346,-73.93572,Entire home/apt,149,3,1,2019-06-09,1,1,170 +32890197,Brooklyn Room with 2 Chill Guys,175413,Angelo,Brooklyn,Bushwick,40.69835,-73.93258,Private room,33,2,3,2019-03-31,0.75,1,188 +32890299,"Able to walk to free ferry in Manhattan. Many,Bus",244544373,Valerie,Staten Island,St. George,40.63894,-74.08069,Private room,100,1,1,2019-06-24,1,2,365 +32890531,Distinctive 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75544,-73.9829,Entire home/apt,177,29,0,,,327,354 +32890591,"""Color Me Time Sq."" Interactive Room in Manhattan",247446830,Krista,Manhattan,Harlem,40.82757,-73.94915,Private room,64,2,15,2019-07-07,3.78,2,48 +32890647,Comfy Sofa Bed in Living Room,17827404,Erdi,Queens,Astoria,40.76449,-73.91996,Shared room,30,1,7,2019-06-28,4.12,1,320 +32891080,Centrally Located Beautiful Escape,242296495,Angela,Brooklyn,East Flatbush,40.64922,-73.93301,Private room,35,1,31,2019-07-05,8.02,3,66 +32891427,Private Room in quiet XL East Village apartment!,160356,Joseph,Manhattan,East Village,40.72504,-73.98327,Private room,68,1,31,2019-07-03,7.69,4,94 +32891722,Ladies Only NYC,247453895,Kamila,Manhattan,Kips Bay,40.74367,-73.97551,Shared room,44,2,3,2019-06-03,0.79,3,324 +32892358,Bed Stuy Modern,43207895,Alexandra,Brooklyn,Bedford-Stuyvesant,40.6901,-73.95139,Private room,60,2,1,2019-05-15,0.54,2,189 +32892533,Pleasant 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Theater District,40.75731,-73.98326,Entire home/apt,177,29,1,2019-06-13,1,327,343 +32892576,New! Sunny Loft/Studio in Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73304,-73.95491,Entire home/apt,50,1,8,2019-05-20,2.47,6,0 +32892634,Perfect Loft - Minutes from Manhattan - Big Comfy,244330525,Lee,Brooklyn,Williamsburg,40.72055,-73.95825,Entire home/apt,300,2,0,,,1,95 +32892845,Manhattan Wall Street Luxury Apartment Experience,75064270,Audrey,Manhattan,Financial District,40.70937,-74.00531,Private room,300,3,0,,,2,365 +32893084,Room in Crown Heights Apt,244096292,Rafael,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95788,Private room,400,1,0,,,1,0 +32893569,"EAST 141 FACE HARLEM +NEAR TO YANKE STADIUM",144839232,Karla,Bronx,Mott Haven,40.80981,-73.92031,Private room,39,1,9,2019-07-01,3.38,1,176 +32894176,Modern Gramercy Park/NoMad Flat near Union Square,9581668,Kirk,Manhattan,Kips Bay,40.73882,-73.98291,Entire home/apt,219,1,18,2019-07-02,4.46,1,292 +32894678,Brooklyn Awesomely Huge and Hip Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68624,-73.9144,Entire home/apt,80,30,2,2019-05-31,0.50,26,317 +32894721,COZY NYC!!!,206695257,Ronald,Queens,Queens Village,40.71324,-73.73318,Private room,70,1,4,2019-06-23,1.60,1,88 +32896994,X Night,184750740,Juice,Bronx,Morrisania,40.82398,-73.90894,Shared room,77,1,0,,,4,90 +32897532,X Live,184750740,Juice,Bronx,Morrisania,40.82575,-73.90993,Private room,80,1,0,,,4,365 +32897709,Bedroom in Prime Bushwick,5365438,Elena,Brooklyn,Bushwick,40.70235,-73.92892,Private room,50,3,1,2019-06-05,0.88,1,0 +32897839,THE STUDIO LODGE BROOKLYN,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68224,-73.92097,Private room,60,3,4,2019-07-06,2.22,2,316 +32898133,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room1,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67721,-73.91404,Private room,47,30,0,,,5,317 +32898150,Near Yankee Stadium,232665281,Melinda,Bronx,Concourse,40.82913,-73.92236,Private room,50,1,7,2019-06-23,1.84,1,265 +32900798,The Inspired Artist,21967943,Elise,Brooklyn,Bushwick,40.7006,-73.93018,Private room,95,1,6,2019-05-10,1.58,1,0 +32901262,"Chabla Residence. The perfect stay, when away",247538066,Edwin,Queens,Jackson Heights,40.75196,-73.86893,Entire home/apt,260,2,14,2019-07-02,5.00,1,32 +32908284,Modern Brooklyn Residence,33514370,Silvia,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94458,Entire home/apt,159,3,16,2019-06-30,5.78,1,10 +32912783,Loft bed,113295877,Jonathan,Staten Island,Tompkinsville,40.63476,-74.0894,Private room,55,3,3,2019-06-30,1.11,3,61 +32914064,Chic and Cosy Private Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.76094,-73.99129,Private room,120,4,8,2019-06-16,3.00,2,275 +32915389,Modern & Cozy 2 BR Private Apartment in Brooklyn,246459949,Gk,Brooklyn,Bay Ridge,40.63189,-74.02322,Entire home/apt,135,1,14,2019-06-14,3.59,1,271 +32915674,Stylish Industrial Theater District Apartment,4534893,Alex,Manhattan,Theater District,40.76219,-73.98564,Entire home/apt,325,2,16,2019-06-28,4.57,4,304 +32915763,Luxurious Family apartment-20min to Manhattan,247644516,Alexa,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93167,Entire home/apt,190,2,5,2019-06-17,2.94,1,86 +32916183,SPACIOUS SUNNY ROOM NEAR SUBWAY AND HUDSON rIVER,1190978,Linden & Bah,Manhattan,Harlem,40.82195,-73.95572,Private room,52,30,1,2019-06-21,1,2,365 +32916190,Spacious and sunny room with private bathroom,76394560,Chris,Brooklyn,Bushwick,40.70311,-73.92514,Private room,60,1,12,2019-06-16,3.64,1,9 +32916378,Cozy Midtown NYC Studio (East 59th and 2nd),247649713,Matthew,Manhattan,Upper East Side,40.76142,-73.96493,Entire home/apt,199,1,1,2019-03-17,0.26,1,5 +32917116,"Luxurious townhouse, 2bd w/Loft+2bath+High-ceiling",129412544,Gleason,Brooklyn,Williamsburg,40.711,-73.96218,Entire home/apt,200,180,0,,,1,365 +32917795,2 bathrooms; 10mins LGA: 4mins 7train (2),247013511,Frank,Queens,Jackson Heights,40.75093,-73.87507,Private room,45,2,7,2019-06-19,1.74,6,64 +32917917,Private room for rent in crescent east New York,247662050,Grinis,Brooklyn,Cypress Hills,40.68355,-73.8765,Private room,60,1,1,2019-05-18,0.57,1,89 +32918029,Comfy Room III,197516314,Genny,Staten Island,Port Richmond,40.63517,-74.13352,Private room,52,1,3,2019-06-28,0.93,3,365 +32918155,Modern Cozy-4mins to 7train; 30mins to City (3),247013511,Frank,Queens,Jackson Heights,40.75157,-73.87639,Private room,45,2,6,2019-06-17,1.54,6,66 +32919210,"Private room,1 min from Subway,20 min to Manhattan",245258532,Elena,Queens,Kew Gardens,40.713,-73.83101,Private room,45,2,16,2019-07-05,4.10,2,6 +32919247,❤️ SUPERCUTE BROOKLYN BEDROOM,247673988,Adrian,Brooklyn,Bushwick,40.69872,-73.93461,Private room,49,1,18,2019-07-02,4.74,2,158 +32919980,CHARMING BEDROOM❤️HEART OF BROOKLYN,247673988,Adrian,Brooklyn,Bushwick,40.69929,-73.93602,Private room,55,1,16,2019-07-02,4.36,2,169 +32920030,"Homely shared living room,1 min from Subway(E,F).",245258532,Elena,Queens,Kew Gardens,40.71222,-73.83297,Shared room,35,2,2,2019-06-24,2,2,34 +32920121,Private and cozy bedroom in Bushwick,85488730,Reynald,Brooklyn,Bushwick,40.69825,-73.93029,Private room,60,2,4,2019-05-24,1.00,1,61 +32920999,Tranquil Manhattan Room close to Trains,3228429,Austin,Manhattan,Harlem,40.82791,-73.94752,Private room,65,2,6,2019-07-02,2.07,1,72 +32921148,Cozy room w/ Laundry in Building + 3 Bathrooms!,136010789,Rebeca & John @ Bedly,Brooklyn,Bushwick,40.69387,-73.91826,Private room,33,30,0,,,2,54 +32921617,"A Relaxing, Blessed Apartment #3 (Hotel Style)",168891738,Miguel & Marisol,Bronx,Unionport,40.82661,-73.8571,Entire home/apt,100,2,16,2019-06-30,4.32,2,161 +32922087,Private Bedroom in Manhattan,53725579,William,Manhattan,Washington Heights,40.84505,-73.93779,Private room,45,1,23,2019-06-20,5.95,3,217 +32922463,HUGE & Sunny Two Bedroom Apartment in Brooklyn,7752638,Colin And Madelaine,Brooklyn,Sunset Park,40.6417,-74.01892,Private room,95,2,0,,,1,137 +32923358,"Guest Room in a Warm, friendly Artist's Home",11018124,Alea,Manhattan,Upper West Side,40.78812,-73.97091,Private room,175,2,0,,,1,66 +32926087,2BR in Hell's Kitchen w/ Gym + Pool close to the subway by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76186,-73.99714,Entire home/apt,446,30,0,,,232,325 +32928652,Big Room in Times Square,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76135,-73.98698,Private room,140,3,3,2019-06-24,1.67,3,45 +32929439,1200 SQR FT stylish loft June-July 2019,16237721,Marco,Bronx,Port Morris,40.80643,-73.92783,Entire home/apt,110,14,0,,,1,88 +32929482,Brand new renovated retreat 5 min from JFK!,46789694,Tapashi,Queens,Springfield Gardens,40.66648,-73.7526,Private room,65,1,28,2019-06-30,7.85,2,340 +32932554,Beauty of Brooklyn and short ride to Manhattan.,15672224,Michael,Brooklyn,Sheepshead Bay,40.58546,-73.9457,Entire home/apt,150,21,0,,,1,81 +32933643,Spacious Studio in the UES 94th st (30 days MIN),159598333,Sol,Manhattan,Upper East Side,40.78331,-73.94646,Entire home/apt,99,30,0,,,5,332 +32935473,Private room in Astoria... 20 min to the city.,90043913,Yudum,Queens,Ditmars Steinway,40.77205,-73.91759,Private room,55,2,8,2019-07-07,2.26,2,110 +32935877,East Village Plant Studio,38352826,Devin,Manhattan,East Village,40.7269,-73.98368,Entire home/apt,128,4,2,2019-07-04,2,1,16 +32935986,Uniware( only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58527,-73.96871,Shared room,28,10,0,,,12,0 +32936398,UES Apartment near Central Park(20 mins TimesSq),239658197,Shawn,Manhattan,East Harlem,40.79153,-73.94138,Entire home/apt,180,1,4,2019-06-30,1.54,1,32 +32936990,Private Loft - WALKING DISTANCE to JFK and Casino,211303730,Raj,Queens,South Ozone Park,40.67425,-73.82231,Entire home/apt,115,1,23,2019-06-22,5.95,1,66 +32937132,Super Cute 2 Beds in the East village,2196224,Sally,Manhattan,East Village,40.7295,-73.98327,Entire home/apt,133,30,0,,,4,151 +32937689,1 room in 2BR luxury Apartment in Bushwick,13412901,Daniel,Brooklyn,Bushwick,40.70158,-73.92257,Private room,65,2,1,2019-03-24,0.28,1,88 +32937802,"Charming 2 Bedroom, Your Cozy Brooklyn Homebase!",1580711,Dawn,Brooklyn,Clinton Hill,40.69444,-73.9669,Entire home/apt,115,2,4,2019-06-24,1.29,1,46 +32938196,COZY BEAUTIFUL HOUSE ! 2 min from the train,166673485,Daniela,Brooklyn,Bushwick,40.68227,-73.90703,Entire home/apt,150,2,7,2019-06-23,3.62,1,342 +32938308,"Sweet, Cozy and Blessed Apartment #2 (Hotel Style)",168891738,Miguel & Marisol,Bronx,Unionport,40.8267,-73.85704,Entire home/apt,100,2,18,2019-06-28,4.78,2,145 +32939925,1920's Historic Home near JFK and LGA Airport,33832598,Doreshia,Queens,Jamaica,40.69911,-73.78196,Entire home/apt,122,2,3,2019-07-08,3,1,81 +32940382,"Cozy room in bright, spacious apartment",97853468,Steven,Bronx,Hunts Point,40.81731,-73.89052,Private room,35,21,0,,,4,341 +32940875,3blocks to 7 train-30mins to City Exploration (4),247013511,Frank,Queens,Jackson Heights,40.75091,-73.87612,Private room,39,2,22,2019-06-21,5.64,6,58 +32941264,Laundry + Free Cleaning & WiFi - 5min to Metro,102242694,Jess & Ben,Brooklyn,Bushwick,40.69987,-73.92638,Private room,35,20,1,2019-07-01,1,1,24 +32942408,"Airy, Large Room W'burg - 15 mins to Manhattan",102114290,Bobby,Brooklyn,Williamsburg,40.71563,-73.94085,Private room,59,4,5,2019-04-30,1.24,1,0 +32942632,Jackson Heights coziest private room,229637274,Sonia,Queens,Elmhurst,40.74642,-73.88044,Private room,30,1,15,2019-07-03,4.84,2,135 +32942981,Welcome in the Sam Suite (only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58462,-73.97155,Shared room,25,10,0,,,12,0 +32943558,"TAO's Cozy Empire in Brooklyn, NY (One Female)",205151601,Thomas,Brooklyn,Crown Heights,40.6745,-73.92612,Private room,60,30,0,,,1,126 +32943585,Your Own Apartment in Lower Manhattan,247900765,Vic,Manhattan,Lower East Side,40.72085,-73.98253,Entire home/apt,175,1,22,2019-06-17,5.50,1,64 +32943764,Two Bedrooms Tonhouse,247900596,Sergo,Manhattan,Harlem,40.80598,-73.94792,Entire home/apt,325,1,16,2019-07-06,4.21,1,346 +32944408,Private Room Aprtmnt shared 12 mins from Manhattan,217484432,Dion,Queens,Ditmars Steinway,40.77726,-73.90689,Private room,115,1,7,2019-06-10,2.26,2,304 +32954828,Madison Flat,30168484,Eric,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93886,Entire home/apt,120,4,8,2019-06-18,2.29,1,126 +32955144,"NY on a Budget: Minimal Decor, Center of the City",168729352,Anna,Manhattan,Kips Bay,40.73867,-73.98039,Entire home/apt,55,4,0,,,1,8 +32956331,Green & Cozy Home in NYC's Staten Island,31757676,Maite,Staten Island,Stapleton,40.62493,-74.08318,Entire home/apt,100,7,0,,,1,16 +32957830,Private place. Close to everything NY has to offer,248021206,Alen,Queens,Glendale,40.7071,-73.86482,Private room,50,1,0,,,1,177 +32959315,Luxury 3 BR loft for the ideal NYC experience!,150273801,Angie,Queens,Glendale,40.70504,-73.86933,Entire home/apt,131,3,11,2019-06-18,2.87,1,319 +32959357,cozy bedroom,56265076,Andrea,Queens,Kew Gardens Hills,40.7201,-73.81043,Private room,50,7,0,,,2,0 +32959389,Great UWS Room - 10 mins from Times Square,248041579,Harkiran,Manhattan,Upper West Side,40.79361,-73.97047,Private room,100,2,4,2019-06-11,1.29,1,0 +32959453,Vibrant Apartment By The Beach,2361627,Will,Queens,Rockaway Beach,40.58532,-73.81687,Entire home/apt,66,7,2,2019-05-14,0.85,1,0 +32960518,BEST LOCATION! Charming Renovated Apt Union Square,248050046,L.Anouk,Manhattan,Gramercy,40.73488,-73.98585,Entire home/apt,190,7,10,2019-06-26,2.70,1,24 +32961345,MONTHLY* CENTRAL PARK 3 BED/2 BATH LINCOLN SQUARE!,245631422,Liam,Manhattan,Upper West Side,40.77348,-73.97994,Entire home/apt,370,30,0,,,1,352 +32961700,Cute Apartment with a terrace near Central Park,12748942,Veronica Gallardo,Manhattan,Upper West Side,40.77912,-73.98029,Entire home/apt,220,30,1,2019-05-31,0.75,1,189 +32961822,Sunny Upper East Side one bedroom apartment,248064547,Sara,Manhattan,Upper East Side,40.7776,-73.94634,Entire home/apt,165,1,12,2019-06-25,3.03,1,75 +32962251,Peaceful home in Brooklyn (2 beds for 3 guest),136621673,Kayla,Brooklyn,Crown Heights,40.67453,-73.94164,Private room,99,1,10,2019-06-23,2.75,1,47 +32962319,Twin Bed in the heart of Downtown Manhattan,1022166,Roda,Manhattan,East Village,40.73216,-73.98937,Shared room,65,4,6,2019-06-08,2.07,1,35 +32963138,Incredible 1 Bedroom in the Heart of Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73232,-73.95664,Entire home/apt,70,1,15,2019-06-01,4.09,6,0 +32963218,Greenpoint Stay for Couple or Single Traveler,19980949,Troy,Brooklyn,Greenpoint,40.7262,-73.95077,Entire home/apt,120,5,0,,,1,160 +32964403,Private Apt (2 Bedrooms includes 1 Bath & Kitchen),67132329,Brian,Manhattan,Two Bridges,40.71253,-73.99599,Private room,145,3,19,2019-07-02,5.43,1,42 +32964714,Stylish bedroom in new luxurious industrial apt #1,38043348,Moises,Manhattan,Harlem,40.80838,-73.94093,Private room,90,1,23,2019-07-01,6.00,2,254 +32966499,A Sweet Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.6758,-73.94146,Entire home/apt,100,3,6,2019-05-12,2.17,4,246 +32967426,Stylish bedroom in new luxurious industrial apt #2,38043348,Moises,Manhattan,East Harlem,40.80808,-73.9405,Private room,90,1,18,2019-06-30,5.74,2,238 +32967988,Cozy Shared Room In Hell’s Kitchen Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76306,-73.98867,Shared room,65,1,14,2019-06-24,3.68,8,206 +32968738,Olive’s Guest Quarters #1,152394865,Arline,Brooklyn,East Flatbush,40.63213,-73.94559,Private room,175,2,6,2019-07-01,2.14,3,61 +32969639,Sunny first floor West Village getaway,2206966,Nik,Manhattan,West Village,40.73478,-74.00015,Entire home/apt,170,2,6,2019-06-26,1.94,1,3 +32973353,Spacious shared room in newly renovated house,248161322,Sergii,Brooklyn,Bushwick,40.69977,-73.93966,Shared room,35,30,0,,,14,341 +32974799,Bright twin room in 1 min walk to M/J trains,248161322,Sergii,Brooklyn,Bushwick,40.7008,-73.9394,Shared room,45,30,0,,,14,364 +32975089,"Amazing private room near subway (M,J, L,G trains)",248161322,Sergii,Brooklyn,Bushwick,40.70001,-73.93914,Private room,64,30,0,,,14,338 +32975416,Private room with bathroom close to M/J trains,248161322,Sergii,Brooklyn,Bushwick,40.70106,-73.93895,Private room,80,30,0,,,14,342 +32975511,Massive Modern State of the Art Luxury Home,12593328,Jeromy,Brooklyn,East Flatbush,40.64779,-73.93163,Private room,90,3,3,2019-06-08,2.05,3,0 +32976324,Location!! Sunny Room in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72527,-74.00043,Private room,105,1,18,2019-06-16,5.57,3,91 +32977260,Location!! 2 Bedrooms in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72542,-74.00156,Private room,230,1,2,2019-06-01,0.67,3,53 +32978551,Huge cozy room in Upper Manhattan,33897850,Fatou,Manhattan,Washington Heights,40.83713,-73.94827,Private room,65,3,0,,,1,87 +32978570,Large bedroom with 200SF outdoor patio,97853468,Steven,Bronx,Hunts Point,40.81724,-73.88878,Private room,60,3,2,2019-06-29,0.68,4,335 +32978962,"Sunny&Spacious 1BR, Luxury BLDG, GYM,ROOF,LAUNDRY",7365223,Shay,Brooklyn,Greenpoint,40.73281,-73.95208,Entire home/apt,170,3,4,2019-04-27,1.30,1,157 +32979235,Spacious Bedroom With Queen-Size Bed,49251674,Mirta,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94578,Private room,65,3,1,2019-05-23,0.63,1,119 +32979245,Guest House,248202552,Stanislav,Brooklyn,Brighton Beach,40.57974,-73.95892,Private room,55,1,5,2019-06-23,1.29,1,0 +32980398,"Your own sanctuary! Private Floor, 3min to subway",5338560,Daniella,Brooklyn,Bedford-Stuyvesant,40.67812,-73.91465,Entire home/apt,95,2,14,2019-07-07,4.20,1,275 +32982724,Home Away from home,63640163,Erik,Bronx,Fordham,40.8637,-73.89236,Entire home/apt,107,1,22,2019-07-03,6.80,1,339 +32983049,Sonder | 21 Chelsea | Airy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74286,-73.99436,Entire home/apt,209,29,0,,,327,326 +32983723,Cozy & Calm,592967,Portia,Brooklyn,Bedford-Stuyvesant,40.67883,-73.94438,Shared room,35,7,1,2019-04-19,0.37,1,344 +32984848,2 Bedroom Clean & Simple in Manhattan,241567925,Paraskevi,Manhattan,Chinatown,40.71358,-73.99062,Entire home/apt,199,3,7,2019-06-02,1.88,1,49 +32984993,Gorgeous and Sunny Studio on The Upper West Side,239707721,Emily,Manhattan,Upper West Side,40.77872,-73.98435,Entire home/apt,112,30,0,,,1,52 +32986532,Warm and welcoming studio in heart of Chinatown!!!,243501721,Emeline,Manhattan,Chinatown,40.71661,-73.99784,Entire home/apt,200,5,4,2019-05-19,1.09,1,72 +32986796,Furnished private room 5 minutes from Subway,141547523,Mathew,Manhattan,Harlem,40.82943,-73.9469,Private room,50,2,13,2019-06-15,3.42,1,65 +32987477,P,91018434,Jack,Brooklyn,Sheepshead Bay,40.5987,-73.9593,Shared room,25,1,0,,,1,0 +32987685,2bd BOUTIQUE Apartament in the heart of MANHATTAN,8033432,Tom,Manhattan,Hell's Kitchen,40.76694,-73.98773,Entire home/apt,299,1,13,2019-07-07,5.91,4,0 +32987851,Private Room in Cozy Nolita Apartment,13697041,Patrick,Manhattan,Nolita,40.72042,-73.99622,Private room,100,1,14,2019-06-30,5.25,1,30 +32987863,2 bedrooms in upper east side #14,1786901,Shai,Manhattan,Upper East Side,40.78317,-73.94559,Entire home/apt,185,3,1,2019-05-19,0.59,9,92 +32989626,Very nice room - 15min away to Manhattan,248272030,Anissa,Queens,Woodside,40.74299,-73.90295,Private room,50,7,4,2019-05-27,2.07,1,225 +32989719,Luxe Long Island City Space Minutes From Manhattan,60275401,Joel,Queens,Long Island City,40.75038,-73.93904,Private room,89,1,12,2019-06-23,7.20,1,288 +32989829,Entire Large one bedroom close to all areas of NYC,248286585,Maria,Bronx,Kingsbridge,40.88298,-73.8987,Entire home/apt,90,3,5,2019-06-30,1.38,1,321 +32990259,Cozy Studio in Prime Lower East Side,48958358,Geoff,Manhattan,Lower East Side,40.72141,-73.98866,Entire home/apt,200,3,8,2019-06-23,2.03,1,319 +32990282,Private room in Astoria... 20 min to the city.,30698503,Sherry,Queens,Ditmars Steinway,40.77253,-73.91476,Private room,80,7,3,2019-06-21,1.55,1,352 +32990481,Cute & Close to Everything! Plus a Patio!,10888067,Christina,Manhattan,SoHo,40.72697,-74.00409,Entire home/apt,150,3,13,2019-06-24,3.86,1,9 +32991664,Private room with a balcony on the water,161135042,Valerie,Queens,Long Island City,40.74529,-73.95753,Private room,200,1,1,2019-03-22,0.28,1,0 +32991792,Sunny Bed-Stuy Apartment Next to Subway,92333417,Valerie,Brooklyn,Bedford-Stuyvesant,40.68151,-73.94781,Entire home/apt,117,3,10,2019-06-30,3.90,2,308 +32991956,Charming cozy 1 bedroom in the heart of Greenpoint,4158712,Marina,Brooklyn,Greenpoint,40.73282,-73.95208,Entire home/apt,117,2,3,2019-06-23,1.29,1,15 +32992183,Large 2 bedroom Williamsburg loft apartment,72660976,Joseph,Brooklyn,Williamsburg,40.71177,-73.95629,Entire home/apt,180,3,6,2019-06-23,1.51,1,38 +32992225,Enchanting quiet NOLITA sanctuary loft,28480501,Elisha,Manhattan,Nolita,40.72222,-73.99692,Private room,150,14,3,2019-06-21,2.57,1,36 +32992390,Private Room with Own Entrance in Williamsburg!,1489654,Austin,Brooklyn,Williamsburg,40.71247,-73.94915,Private room,93,1,25,2019-06-25,7.01,1,234 +32992438,UWS queen sunny private room by Columbia UNI&Cpark,248314431,David,Manhattan,Upper West Side,40.79931,-73.96072,Private room,75,1,19,2019-06-20,5.28,2,58 +32992674,Sun lit private room in WIlliamsburg,6085353,Anand,Brooklyn,Williamsburg,40.71502,-73.95633,Private room,60,5,3,2019-05-18,0.99,1,179 +32992944,En-suite Bed-Stuy room; Well stocked; Private bath,3777082,Stephen,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94585,Private room,81,1,3,2019-06-13,1.32,1,175 +32993357,Private room in a Bohemian JP Loft! a,96737879,Yury,Brooklyn,Williamsburg,40.70263,-73.93488,Private room,70,5,1,2019-04-20,0.37,3,4 +33001460,Spring near Beautiful Columbia and Central Park!,50741398,Jessica,Manhattan,Upper West Side,40.801,-73.96696,Private room,79,1,10,2019-05-16,3.23,4,0 +33002617,Room for 2 Per diem $50 rental up to 30 days max,248385708,Alexander,Brooklyn,Sheepshead Bay,40.60331,-73.95082,Private room,21,1,2,2019-05-26,1.02,1,90 +33005220,Spend a Night or Seven with a Living NYC Artist!,248404100,Ligel,Bronx,Morris Heights,40.84615,-73.91546,Private room,35,1,25,2019-07-07,7.08,1,241 +33007456,Common single room#5,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68682,-73.92837,Private room,40,1,32,2019-06-29,8.57,6,323 +33007551,Luxury NYC Rental / Affordable / Roosevelt Island,248421148,Justin,Manhattan,Roosevelt Island,40.76092,-73.95154,Private room,80,6,1,2019-05-31,0.77,2,312 +33007610,70' Luxury MotorYacht on the Hudson,7407743,Jack,Manhattan,Battery Park City,40.71162,-74.01693,Entire home/apt,7500,1,0,,,1,364 +33008059,"温馨小宅,安静干净,环境优美!",140630987,Jiali,Queens,Flushing,40.75977,-73.81289,Private room,75,1,10,2019-06-15,2.94,6,126 +33010488,Midtown Pied-à-Terre Close to Central Park,4688336,Richard,Manhattan,Midtown,40.76049,-73.97066,Entire home/apt,225,6,1,2019-05-07,0.48,1,0 +33010913,Wonderful bedroom,248444631,Jehan,Queens,Ridgewood,40.69906,-73.89871,Private room,70,1,0,,,1,127 +33011379,Bright & Cozy 2 BR Apt + Rooftop Williamsburg,29523138,Ita,Brooklyn,Williamsburg,40.70957,-73.94088,Entire home/apt,168,3,7,2019-07-01,3.44,2,190 +33011581,Clean and warm place,139705987,Luz,Queens,East Elmhurst,40.76247,-73.86092,Private room,55,2,16,2019-07-01,4.36,1,158 +33012494,RAVENWOOD: Modern Hipster Retreat in Williamsburg,196273418,Collen,Brooklyn,Williamsburg,40.7194,-73.95899,Private room,89,2,0,,,1,305 +33013821,Light Filled Room in EV,245637171,Min,Manhattan,East Village,40.72997,-73.98553,Private room,62,30,0,,,8,341 +33013974,"Amazing Room, Amazing Location!!",245637171,Min,Manhattan,East Village,40.72841,-73.98615,Private room,62,30,1,2019-05-31,0.77,8,325 +33014236,Chic Room in Trendy EV!,245637171,Min,Manhattan,East Village,40.72932,-73.98474,Private room,68,30,0,,,8,336 +33014255,Spacious comfy apt near L/G/J/M with covered patio,53632978,Annie,Brooklyn,Williamsburg,40.70856,-73.94777,Entire home/apt,200,1,8,2019-05-16,3.00,1,0 +33015342,Nice Room in this EV Gem!,245637171,Min,Manhattan,East Village,40.72843,-73.98581,Private room,62,30,1,2019-05-28,0.71,8,310 +33015815,Superior Room in Gramercy!,245637171,Min,Manhattan,East Village,40.72821,-73.98633,Private room,62,30,0,,,8,310 +33019022,XtraLarge Room SuperComfortable Bed 15mntsToTimeSq,145975067,Ousmane,Manhattan,Harlem,40.82008,-73.93863,Private room,75,2,28,2019-06-30,7.30,3,13 +33019100,Newly Renovated Garden Apartment,248513181,Margie,Brooklyn,Bedford-Stuyvesant,40.6847,-73.9435,Entire home/apt,200,2,3,2019-04-23,1.06,1,157 +33020831,Amazing location at great price,45927588,Ido,Manhattan,Upper West Side,40.77278,-73.98068,Entire home/apt,250,3,3,2019-07-01,1.11,1,2 +33022743,Comfortable room in bushwick,28375704,Ricardo,Brooklyn,Bushwick,40.69679,-73.93405,Private room,80,10,0,,,1,180 +33023192,Retro room in Astoria - 15m to Manhattan,248555214,Michelle,Queens,Astoria,40.76516,-73.92758,Private room,85,2,13,2019-06-28,3.79,2,13 +33024132,"Modern 2BDR. Great Location, Quiet, 24/7 Doorman",248035116,Adam And Ana,Manhattan,Financial District,40.70754,-74.00683,Entire home/apt,195,30,13,2019-06-30,4.59,1,174 +33029434,West 84th Street by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper West Side,40.78545,-73.97123,Entire home/apt,3613,1,1,2019-06-15,1,12,158 +33032132,Stylish new luxury apartment,6051414,Marshall,Manhattan,Battery Park City,40.71092,-74.0177,Entire home/apt,225,4,2,2019-06-11,1.03,1,138 +33033160,beautiful shared apt in Midtown,248068752,Gúney,Manhattan,Hell's Kitchen,40.76448,-73.98895,Shared room,75,1,20,2019-06-16,5.17,5,365 +33033214,Private Room in Gorgeous Duplex Apartment,2300366,Yosub,Brooklyn,Williamsburg,40.70835,-73.94163,Private room,90,2,1,2019-05-22,0.63,2,9 +33034321,Comfortable Shared Apt in Times Square,248068752,Gúney,Manhattan,Hell's Kitchen,40.7647,-73.98853,Shared room,75,1,8,2019-06-02,2.16,5,361 +33034744,Cozy and shared apt in hells&kitchen,248068752,Gúney,Manhattan,Hell's Kitchen,40.76441,-73.98838,Shared room,75,1,6,2019-06-20,1.70,5,361 +33034799,The Brooklyn Experience,27512264,Daniel,Brooklyn,Carroll Gardens,40.68252,-73.99089,Entire home/apt,143,30,0,,,1,181 +33035339,shared room in heart of Manhattan Times Square,248068752,Gúney,Manhattan,Hell's Kitchen,40.76592,-73.98769,Shared room,75,1,5,2019-05-21,1.38,5,365 +33035739,"Overnight Bed, Cozy Shared Room in Times Square",248068752,Gúney,Manhattan,Hell's Kitchen,40.76404,-73.98873,Shared room,75,1,9,2019-05-15,2.33,5,363 +33035865,NEW TOP FLOOR APT. IN BUSHWICK PRIME LOCATION,130279,Alvise,Brooklyn,Bushwick,40.69943,-73.92858,Private room,75,1,3,2019-06-22,2.43,1,0 +33035945,Private hotel room in the heart of Times Square,4342052,Lea,Manhattan,Theater District,40.76089,-73.98709,Private room,299,1,22,2019-06-24,5.69,1,303 +33036559,"Homey, large space 15 mins from Mid Town Manhat!",43063099,Aida,Queens,Astoria,40.7637,-73.9238,Private room,42,7,0,,,1,0 +33038003,HOSTEL MY REFUGE PAISA,248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76362,-73.88163,Private room,35,1,3,2019-06-23,0.78,4,150 +33038028,Aiden’s Red Door @ Crown Heights,32418402,Roxanne,Brooklyn,Crown Heights,40.67165,-73.93143,Private room,82,2,2,2019-06-20,1.02,2,156 +33038266,Spacious Room in Chill Ridgewood Avail. Sept - Oct,216310452,Jorge,Queens,Ridgewood,40.70078,-73.9072,Private room,60,35,1,2019-04-02,0.30,1,64 +33038481,Airy Sunlit BedStuy BnB,40069144,J.L.,Brooklyn,Bedford-Stuyvesant,40.68831,-73.94066,Private room,46,14,0,,,1,37 +33038567,"Spacious Midtown 1BR, w/ Balcony, Fitness center + Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76057,-73.98455,Entire home/apt,343,30,0,,,232,311 +33039061,"✨Unique space, private bath, close to subway!",18869247,Jillian,Queens,Ridgewood,40.70103,-73.91018,Private room,80,2,9,2019-07-02,3.10,1,53 +33040208,Stunning apartment in Williamsburg !,24520756,Lilly,Brooklyn,Williamsburg,40.71131,-73.95869,Entire home/apt,150,7,0,,,1,129 +33040300,"Artists Created Peaceful, Spacious, Manhattan NYC",248671285,Brian,Manhattan,Harlem,40.82364,-73.95433,Private room,75,4,5,2019-07-04,2.31,1,80 +33041216,Room for 2 Persons Center of Downtown NYC,35927005,Kathy,Manhattan,Lower East Side,40.715,-73.98633,Private room,86,1,7,2019-06-24,2.84,10,115 +33041634,"Zen Sanctuary! Stunning View, Prime Location",73369106,Adam,Brooklyn,Williamsburg,40.71864,-73.96107,Entire home/apt,319,2,5,2019-07-06,1.90,1,47 +33042309,Cozy & Affordable Room in 3 Story Brownstone,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68613,-73.9295,Private room,100,1,1,2019-04-23,0.39,6,356 +33042347,★★ Spacious Single House | Close to Everything! ★★,16637631,J.C & Johanna,Brooklyn,Williamsburg,40.70984,-73.96366,Entire home/apt,260,1,24,2019-07-05,6.43,1,45 +33043051,Cosy private bedroom in UES/Harlem,41348157,Petra,Manhattan,East Harlem,40.79342,-73.93889,Private room,70,2,3,2019-03-30,0.84,3,10 +33044053,"Stay at the ""Claudette"" guest room in SoHa",70506007,Barry And Jimmy,Manhattan,Morningside Heights,40.80392,-73.95829,Private room,100,2,16,2019-06-29,4.57,1,38 +33044128,Morden spacious Private room near subway M/J/L/G,248161322,Sergii,Brooklyn,Bushwick,40.69995,-73.93933,Private room,64,30,0,,,14,364 +33044270,Quite clean queen size bedroom,154234826,Max,Manhattan,Harlem,40.82039,-73.94402,Private room,50,3,4,2019-05-23,1.97,1,9 +33044381,^^Dynamic Private Budget Room. 20 min to City,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95155,Private room,65,2,7,2019-06-24,2.02,7,272 +33044727,Lovely Budget Private Room 20 min to city,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95008,Private room,65,2,4,2019-05-08,1.32,7,347 +33046019,Brand New Upper East Living,61391963,Corporate Housing,Manhattan,Upper East Side,40.77991,-73.95267,Entire home/apt,117,30,0,,,91,311 +33046072,Large 2 Bed Woodside apt 10 Minutes from Manhattan,154525001,Rumana & Dan,Queens,Woodside,40.74443,-73.90885,Entire home/apt,125,1,14,2019-06-23,3.68,1,288 +33046111,Gorgeous 2 bedroom apartment in the East village,218481230,Flynn,Manhattan,East Village,40.72213,-73.97791,Private room,249,3,10,2019-06-18,3.45,1,91 +33046367,"cozy bedroom close to Time Square, Manhattan",248723983,Jeyruth,Manhattan,Hell's Kitchen,40.76279,-73.99473,Private room,93,1,1,2019-05-30,0.75,1,0 +33046604,Brand New BK Duplex in the Center of it All!!!,65613634,Sam,Brooklyn,Bedford-Stuyvesant,40.68736,-73.93827,Entire home/apt,400,2,13,2019-06-23,5.34,1,278 +33046682,Cozy Studio in tree-lined Park Slope Brooklyn,22217533,Kristin,Brooklyn,Park Slope,40.67301,-73.97154,Entire home/apt,135,5,5,2019-06-09,1.81,1,318 +33047256,Cozy Boutique Studio | Heart of NYC,11391775,Aidin,Manhattan,Kips Bay,40.74284,-73.97967,Entire home/apt,150,1,22,2019-06-26,7.02,1,29 +33047674,A great place to relax after being in the city,231103652,Christine,Manhattan,Harlem,40.824,-73.95229,Private room,50,4,15,2019-07-05,4.55,1,4 +33047896,Charming and homie Sunnyside apartment,3141293,Camila,Queens,Sunnyside,40.74737,-73.9143,Entire home/apt,100,6,0,,,1,10 +33048925,A Lofted Piece of New York,30445677,Andrey,Manhattan,Upper West Side,40.77824,-73.97964,Entire home/apt,250,2,6,2019-07-03,1.59,1,21 +33049114,A Sweet Garden Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67387,-73.9424,Entire home/apt,100,3,5,2019-05-12,2.03,4,250 +33049134,Modern East Village Studio In A Great Location,245681626,Helena & Jim,Manhattan,East Village,40.72583,-73.97945,Entire home/apt,168,3,20,2019-06-29,5.22,1,30 +33049970,Cozy room in BK -FEMALE ONLY,77698412,Mié,Brooklyn,Bedford-Stuyvesant,40.69159,-73.93339,Private room,40,2,1,2019-07-03,1,1,0 +33050172,UWS - Pre-War Building- Large space,29461390,Sharone,Manhattan,Upper West Side,40.79288,-73.9723,Private room,82,1,7,2019-07-01,2.44,1,178 +33050650,Room in a Comfy Brooklyn Apartment,240717293,Carla,Brooklyn,Vinegar Hill,40.70195,-73.98309,Private room,85,2,10,2019-06-24,4.05,1,1 +33055126,Cozy place located in the Heart of Manhattan,248788151,Anayah,Manhattan,Hell's Kitchen,40.76156,-73.98749,Entire home/apt,160,3,8,2019-07-08,2.58,1,1 +33060504,Five minutes from Central Manhattan,1648510,Lee,Manhattan,Roosevelt Island,40.76213,-73.94893,Entire home/apt,160,4,9,2019-06-18,3.38,1,33 +33060929,"ROOM FOR TWO 15 MINUTES WALL STREET, NO CLEAN FEE",247937619,Jessy,Manhattan,Lower East Side,40.71525,-73.98735,Private room,72,5,17,2019-06-21,5.00,1,49 +33061311,Decatur street Limestone an Urban Zen experience,7289570,Shelley,Brooklyn,Bedford-Stuyvesant,40.68382,-73.9204,Entire home/apt,150,3,15,2019-07-01,4.89,1,75 +33061453,Luxury NYC Rental/Affordable /Roosevelt Island 2,248421148,Justin,Manhattan,Roosevelt Island,40.76038,-73.95085,Private room,80,6,3,2019-05-27,1.25,2,260 +33061842,"Cozy house , very quiet , clean room !",140630987,Jiali,Queens,Flushing,40.77078,-73.82615,Private room,60,1,13,2019-06-23,4.94,6,125 +33063156,LOVE this Bed-Stuy Open Concept @SpotlessRock,248818787,J. Westley,Brooklyn,Bedford-Stuyvesant,40.68704,-73.9304,Private room,80,2,3,2019-06-25,3,1,83 +33064746,Central Park 2 Bed Apt. Steps from Park & Subway,11305100,Shae,Manhattan,Harlem,40.79943,-73.95376,Entire home/apt,150,3,6,2019-06-03,1.59,1,10 +33064805,Luxurious 3 Bedroom Home on LES/Chinatown Border,118375653,Charlene,Manhattan,Two Bridges,40.7119,-73.99364,Entire home/apt,250,3,0,,,3,0 +33065137,DITMAS PARK/FLATBUSH Private Rm with LOTS of Light,2392755,Chase,Brooklyn,Flatbush,40.64299,-73.95954,Private room,45,2,8,2019-06-23,3.00,1,109 +33067252,3 person shared room at the heart of Brooklyn,248161322,Sergii,Brooklyn,Bushwick,40.70002,-73.94054,Shared room,35,30,1,2019-03-15,0.26,14,341 +33067318,A very conducive private area near to train statn,248856446,Bilikis,Queens,Rockaway Beach,40.58891,-73.80181,Private room,50,1,1,2019-05-26,0.67,1,179 +33068174,Home,25370675,Geovanny,Queens,Elmhurst,40.73247,-73.8768,Private room,443,1,0,,,1,365 +33068756,"Luxury 2BDR in Prime Area, Doorman, Elevator",248036814,Anton,Manhattan,Financial District,40.7069,-74.00606,Entire home/apt,195,30,17,2019-06-23,5.10,1,203 +33069506,Large Chelsea Bedroom!,130476089,Lennon,Manhattan,Chelsea,40.74216,-73.99962,Private room,83,1,1,2019-04-10,0.33,2,0 +33069533,"Sunny, plant filled, heavenly room",10478551,Lyora,Brooklyn,Clinton Hill,40.68419,-73.96428,Private room,50,10,0,,,1,0 +33069555,Hermoso Cuarto para compartir en familia,248714625,Janneth,Queens,East Elmhurst,40.75985,-73.88233,Shared room,70,1,1,2019-04-26,0.41,1,89 +33070416,Prime 1 bedroom Doorman Gym RoofDeck 5221,16098958,Jeremy & Laura,Manhattan,Midtown,40.74885,-73.98698,Entire home/apt,260,30,1,2019-05-06,0.46,96,343 +33071794,Prime Location 44stDoorman Gym Studio!5217,16098958,Jeremy & Laura,Manhattan,Midtown,40.75032,-73.97143,Entire home/apt,175,30,0,,,96,342 +33071843,habitacion amplia y privada a 20 min de manhattan,195657353,Carolina,Brooklyn,Bushwick,40.70005,-73.91295,Private room,42,2,0,,,2,311 +33072230,Sonder | Stock Exchange | Sleek 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01186,Entire home/apt,520,2,6,2019-06-16,2.43,327,262 +33072533,Charming European Apt with City View's + Terrace,240480084,Brittany,Brooklyn,Williamsburg,40.71719,-73.94795,Entire home/apt,300,3,2,2019-06-03,0.98,1,59 +33072686,Prime Location One Bed Doorman Gym Deck!5223,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76291,-73.9875,Entire home/apt,250,30,0,,,96,303 +33072698,Perfect studio in Midtown,248901969,Tugce,Manhattan,Murray Hill,40.74613,-73.97528,Entire home/apt,175,3,4,2019-06-15,1.52,1,270 +33072804,34th and 6th Ave - Doorman Gym Roofdeck 1 bed 5234,16098958,Jeremy & Laura,Manhattan,Midtown,40.74909,-73.98657,Entire home/apt,170,30,1,2019-05-12,0.51,96,345 +33073934,habitacion con entrada privada a 20 min de manhat,195657353,Carolina,Brooklyn,Bushwick,40.70083,-73.9122,Private room,42,2,0,,,2,125 +33075317,"""Bushwick in Manhattan"" Interactive, Private Room",247446830,Krista,Manhattan,Harlem,40.82576,-73.94861,Private room,73,2,14,2019-07-02,3.72,2,35 +33075770,Private room in Lower East Side,4221836,Rebekah,Manhattan,Lower East Side,40.71887,-73.99256,Private room,95,5,7,2019-06-13,2.28,1,118 +33077121,Bright and Spacious Queens Townhouse,4037192,Lukasz,Queens,Middle Village,40.72355,-73.87456,Entire home/apt,100,30,1,2019-05-31,0.77,1,323 +33077150,Comfortable & Private One Bedroom Apt in NYC!,248944703,Sasha,Manhattan,Murray Hill,40.7462,-73.97296,Entire home/apt,160,2,11,2019-07-03,4.34,1,90 +33078339,Clean Room in Bushwick Brooklyn,248956396,Leoluis,Brooklyn,Bushwick,40.69179,-73.91404,Private room,45,1,24,2019-06-24,6.61,1,167 +33078564,Crown Heights LUXURY Kingston Apt,2931897,Shiri,Brooklyn,Crown Heights,40.66568,-73.94176,Entire home/apt,250,3,0,,,1,365 +33080376,Lovely room in a great location !!,248971429,Tzlil,Brooklyn,Bedford-Stuyvesant,40.68966,-73.95353,Private room,60,4,0,,,1,0 +33080606,Ladies Only Shared Room,223574944,Carly,Manhattan,Kips Bay,40.74392,-73.98072,Shared room,35,2,2,2019-05-25,0.57,2,353 +33085491,Modern and Spacious Brooklyn Apartment,88497114,Veronica,Brooklyn,Bedford-Stuyvesant,40.68857,-73.9384,Entire home/apt,160,2,15,2019-07-06,6.72,1,71 +33086413,Beautiful one bedroom in Astoria NY private Room,65887955,Mike,Queens,Astoria,40.76475,-73.90918,Private room,69,3,0,,,1,73 +33087134,Spacious 3people room close to Broadway-J/M trains,248161322,Sergii,Brooklyn,Bushwick,40.70107,-73.93934,Shared room,35,30,1,2019-04-14,0.35,14,341 +33087999,"Sunny Private Room w Pool, Sauna, Gym + More",28408288,Jeannette,Brooklyn,Bushwick,40.69339,-73.90461,Private room,49,2,6,2019-06-02,1.62,1,0 +33089083,Chic 2 bedroom Brownstone with garden 17m to MHTN.,249030378,Gloria,Brooklyn,Bedford-Stuyvesant,40.68965,-73.92908,Entire home/apt,110,4,13,2019-07-03,3.71,1,161 +33090783,Modern East Williamsburg Apartment,713776,Hayley,Brooklyn,Williamsburg,40.71417,-73.94123,Entire home/apt,94,3,4,2019-06-16,1.32,1,31 +33093166,Spacious Room in 4 BR!,245637171,Min,Manhattan,East Village,40.72849,-73.98576,Private room,82,30,0,,,8,365 +33093855,Morden 3 person shared room fully furnished.,248161322,Sergii,Brooklyn,Bushwick,40.70007,-73.93899,Shared room,35,30,0,,,14,341 +33094168,Travelers Paradise Steps from Empire State Bld,230917343,Joseph,Manhattan,Midtown,40.74758,-73.98276,Entire home/apt,299,3,8,2019-06-26,2.89,1,306 +33094220,Bright and Quiet near Union Square in the Village,249069377,Natasha,Manhattan,Greenwich Village,40.73424,-73.99355,Private room,120,1,7,2019-06-12,1.96,1,13 +33094281,Times Square,247796242,Justin,Manhattan,Midtown,40.75492,-73.98027,Private room,382,3,0,,,1,201 +33094364,Boho Studio in West Village- PRIME LOCATION,28770493,Haley,Manhattan,West Village,40.73508,-74.00004,Entire home/apt,204,4,3,2019-06-30,1.36,1,6 +33094622,BEAUTIFUL 1 BED ROOM 10 MINS FROM JFK,29349060,Ode,Queens,St. Albans,40.6853,-73.76814,Private room,55,1,12,2019-06-18,3.13,3,180 +33096377,"Classy apartment in downtown +Everything you need",8661986,Eugene,Manhattan,Stuyvesant Town,40.73223,-73.98134,Entire home/apt,279,2,26,2019-07-05,7.22,1,229 +33096564,Tu Tranquilidad no tiene precio,182434290,Ana Maria,Queens,Ditmars Steinway,40.77134,-73.91328,Private room,52,1,5,2019-05-23,1.60,2,188 +33097219,Brand new home in Staten island!,249104360,Arkady,Staten Island,Grymes Hill,40.61572,-74.08901,Entire home/apt,300,5,1,2019-05-19,0.58,1,174 +33097224,Spacious Luxury 2B2B in the Heart of Manhattan,248554249,Ammy,Manhattan,Midtown,40.74362,-73.98207,Entire home/apt,388,3,13,2019-06-21,3.61,1,246 +33097308,Cozy room in Brooklyn's historical district,4401527,Pouliasis,Brooklyn,Clinton Hill,40.68464,-73.96151,Private room,40,6,1,2019-04-03,0.31,1,17 +33098823,Luxury Two Bedroom on High Floor with Great Views,248975053,Richard,Manhattan,Financial District,40.7068,-74.00632,Entire home/apt,195,2,12,2019-06-24,3.87,1,24 +33100876,Bright room in Bushwick,249146659,Anne,Brooklyn,Bushwick,40.70204,-73.93027,Private room,40,5,1,2019-04-17,0.36,1,364 +33101073,Bright UES apt close to everything 24hr doorman,147827717,Julie,Manhattan,Upper East Side,40.76329,-73.96119,Private room,109,4,0,,,1,101 +33101286,"2, 3 or 4 Floors, Heart of Greenwich Village",4129805,Evelyn,Manhattan,West Village,40.73242,-74.00404,Entire home/apt,400,2,1,2019-05-24,0.65,5,102 +33102485,Exclusive Dream room 8 mins from JFK Smoking OK!,141645843,Gedan,Queens,Jamaica,40.68093,-73.79713,Private room,45,1,9,2019-07-06,2.67,2,113 +33107400,"Wonderful 3 people room near M,J, L,G trains",248161322,Sergii,Brooklyn,Bushwick,40.70028,-73.93952,Shared room,35,30,0,,,14,333 +33107548,NYUW05-2: Centra Park one bedroom by river,39890192,Laura,Manhattan,Upper West Side,40.80319,-73.96676,Private room,70,15,0,,,12,153 +33107690,NYUW05-4:Columbus university Central Park one room,39890192,Laura,Manhattan,Upper West Side,40.80031,-73.96775,Private room,70,21,1,2019-06-04,0.86,12,119 +33108984,Entire spacious 1 bd apt. Easy commute to City.,244371444,Nicole,Queens,Sunnyside,40.74383,-73.92332,Entire home/apt,130,13,0,,,1,0 +33110021,Big private room,211906172,Sercan,Queens,Rego Park,40.72407,-73.86585,Private room,70,4,0,,,1,365 +33110303,Cozy NYC Studio with Great Light & Comfort!,11776513,Yuki,Manhattan,Upper East Side,40.78475,-73.95339,Entire home/apt,99,10,2,2019-05-02,0.59,1,188 +33111095,Private Comfortable Room,153356660,Johnathen,Brooklyn,Bushwick,40.69594,-73.90685,Private room,75,1,0,,,1,83 +33112368,Ysa's room,249243301,Ysa,Bronx,Mount Hope,40.8477,-73.90988,Private room,24,2,2,2019-05-01,0.68,1,0 +33112524,Sunny 2-Bedroom Union Square Apartment,39653778,Greg,Manhattan,East Village,40.73161,-73.98438,Entire home/apt,220,4,1,2019-03-17,0.26,1,1 +33112929,Prospect Lefferts Garden Private rm 30 min to Nyc,27785287,Bendji,Brooklyn,Flatbush,40.65345,-73.95476,Private room,50,2,6,2019-06-21,1.78,1,2 +33113865,Small room for only you :),140630987,Jiali,Queens,Flushing,40.76897,-73.82728,Private room,39,1,27,2019-07-05,8.62,6,133 +33113990,Adorable walk-up on the high line—with views!,2919299,Sean,Manhattan,Chelsea,40.75024,-74.00213,Entire home/apt,175,4,3,2019-06-09,1.11,1,15 +33114243,Stylish Manhattan Bedroom!!,140830391,Jay,Manhattan,Harlem,40.8159,-73.9396,Private room,70,1,4,2019-07-05,1.14,9,260 +33115153,Oasis in the Jungle,4276261,Yara,Manhattan,East Village,40.72625,-73.99014,Entire home/apt,350,3,1,2019-05-27,0.70,1,66 +33115218,Studio apt in the East Village,10530947,Miguel,Manhattan,East Village,40.72047,-73.97998,Entire home/apt,120,4,1,2019-03-17,0.26,1,0 +33115959,New Modern Apartment at Center of Manhattan,249279890,Stella,Manhattan,Lower East Side,40.71852,-73.99067,Private room,129,3,12,2019-06-13,3.53,1,85 +33116655,Very quite and convenient location.,38604449,Pasang,Queens,Woodside,40.75563,-73.90493,Private room,50,2,1,2019-05-11,0.51,2,262 +33117486,Two Bedroom Apt 25 Min From Midtown Manhattan,249297875,Guoxin,Bronx,Woodlawn,40.89768,-73.87363,Entire home/apt,35,2,18,2019-06-30,5.35,1,51 +33117497,Beautiful Spacious Brooklyn Room #1,249291429,Boho,Brooklyn,Clinton Hill,40.69306,-73.96132,Private room,45,1,4,2019-05-26,1.88,2,135 +33118582,UPPER WEST SIDE: Renovated Private Cozy Room & BR,15807180,Michael,Manhattan,Upper West Side,40.78536,-73.97116,Private room,82,2,26,2019-06-30,7.29,3,288 +33119736,Perfect Getaway in West Village Duplex,26754841,Deo,Manhattan,West Village,40.73674,-74.00411,Private room,180,3,1,2019-05-11,0.51,2,123 +33119863,Queens Studio.,42540127,Tio,Queens,Bayside,40.77067,-73.78278,Entire home/apt,55,2,37,2019-07-08,10.37,1,6 +33120664,"Beautiful Cozy Bedroom In Astoria, NYC",86190506,Daniel,Queens,Astoria,40.75698,-73.91362,Private room,65,3,8,2019-07-07,3.48,1,71 +33123667,Perfect Place to just Sleep while you explore NYC,56349939,Oliver,Manhattan,Lower East Side,40.71728,-73.99085,Private room,84,2,18,2019-06-29,5.35,1,21 +33126746,Bright Beautiful 1br Apt in Hipster neighborhood.,249309586,Hoon J,Manhattan,Chinatown,40.71502,-73.99066,Entire home/apt,150,4,8,2019-06-25,2.38,1,255 +33127307,COZY 1 BED ROOM 10 MINS FROM JFK AND TRAIN STATION,29349060,Ode,Queens,St. Albans,40.68481,-73.76952,Private room,55,1,16,2019-06-01,4.21,3,269 +33127624,Exclusive home near JFK and Long Island Rail Road.,245002893,Christopher,Queens,Rosedale,40.66875,-73.73627,Private room,70,1,3,2019-06-02,1.11,2,180 +33127817,"Master bedroom in sunny, renovated, corner apt",2537981,Laura,Brooklyn,Bushwick,40.6951,-73.92898,Private room,78,3,0,,,1,105 +33128125,Beautiful Brownstone Apartment in Sugar Hill,249042333,Jerry,Manhattan,Harlem,40.82808,-73.94563,Entire home/apt,148,2,8,2019-06-21,2.82,1,334 +33129033,Sweet,41941061,Johanna,Manhattan,Hell's Kitchen,40.76655,-73.99216,Private room,350,1,0,,,1,89 +33129377,"Beautiful, spacious three bedroom apt with terrace",4094038,Alex,Brooklyn,Williamsburg,40.71198,-73.94191,Entire home/apt,285,3,3,2019-07-02,3,4,16 +33129394,Northern Manhattan Bicycle & Guitar Oasis,249404981,Susan,Manhattan,Inwood,40.86948,-73.92122,Entire home/apt,129,2,0,,,1,65 +33130688,Luxury 2 bedroom/2 bathroom apartment in Manhattan,65574027,Liv,Manhattan,Upper East Side,40.7739,-73.94937,Entire home/apt,370,5,0,,,1,15 +33131785,luxury apartment in east village,52584817,Gabriel,Manhattan,East Village,40.72353,-73.97646,Entire home/apt,150,2,5,2019-06-28,1.33,1,4 +33133218,Harlem Musicians Home !!,249286477,Green,Manhattan,Harlem,40.82734,-73.94718,Entire home/apt,85,4,3,2019-07-06,1.13,1,6 +33133219,Spacious studio on quiet tree lined street,109448921,Mark,Brooklyn,Prospect-Lefferts Gardens,40.66379,-73.95239,Entire home/apt,75,2,12,2019-07-06,3.56,1,8 +33133321,Majestic Mansion LifeStyle :),74373729,Shah,Queens,Bayside,40.77811,-73.77069,Entire home/apt,2600,6,3,2019-05-30,1.73,1,362 +33133919,Great studio in Carroll Gardens.,120296922,Miriam,Brooklyn,Carroll Gardens,40.67716,-74.00074,Entire home/apt,110,3,7,2019-06-23,2.08,1,0 +33134698,Furnished Upper West Side near Central Park,50741398,Jessica,Manhattan,Upper West Side,40.80071,-73.96616,Private room,80,1,14,2019-05-16,3.89,4,0 +33135126,Light Filled 1BDRM in Clinton Hill,81867025,Lauren,Brooklyn,Bedford-Stuyvesant,40.68484,-73.9552,Entire home/apt,100,14,0,,,1,0 +33135391,Quintessential West Village Getaway,6520032,Carolina,Manhattan,West Village,40.73551,-74.00138,Entire home/apt,250,2,6,2019-07-06,2.12,1,19 +33135591,Beautiful 1 Bedroom,549971,Ginta,Manhattan,Chinatown,40.7142,-73.99254,Entire home/apt,150,30,3,2019-05-17,1.25,1,33 +33135950,Victorian Brooklyn Spacious Living!,130981288,Geoffrey,Brooklyn,Flatbush,40.64938,-73.96682,Entire home/apt,110,2,1,2019-03-23,0.28,1,260 +33136564,Charming Red Hook loft with yard,116826665,Christina,Brooklyn,Red Hook,40.67962,-74.01294,Entire home/apt,122,13,1,2019-06-01,0.77,1,12 +33137479,Luxury 2BR/2BA by Grand Central with views,247120058,William,Manhattan,Murray Hill,40.74699,-73.97301,Entire home/apt,375,2,10,2019-06-18,3.75,1,26 +33138120,Essex House in front of Central Park!,36793116,Ilan,Manhattan,Midtown,40.76582,-73.97958,Entire home/apt,399,30,3,2019-06-20,1.32,1,303 +33138268,"Absolutely stunning 3bed 1ba, Thank me later!",249495371,Shayaa,Brooklyn,Bushwick,40.69269,-73.92178,Entire home/apt,201,1,24,2019-07-04,7.58,1,296 +33138276,1 Private BR in the heart of Fidi!,209557185,Isabella,Manhattan,Financial District,40.70522,-74.00925,Private room,150,7,6,2019-05-08,1.65,1,351 +33138360,New Luxury Brooklyn Apartment Near Manhattan,39362079,Jon,Brooklyn,Crown Heights,40.6704,-73.95038,Entire home/apt,95,2,7,2019-05-27,2.50,1,0 +33138453,Art/Musician Loft Space in Greenpoint,42732656,Jesse,Brooklyn,Greenpoint,40.72769,-73.94309,Private room,69,3,4,2019-05-23,1.14,1,0 +33138741,Most Convenient Apartment in Upper Manhattan,249500632,Mike,Manhattan,Harlem,40.81476,-73.94723,Entire home/apt,75,30,1,2019-05-31,0.77,1,13 +33138874,The Heart of the Bronx,249500015,Pedro,Bronx,Soundview,40.8265,-73.87045,Entire home/apt,103,2,19,2019-06-28,5.70,1,75 +33140204,Beautiful Brownstone in Bed-Suy Brooklyn,5944855,Melissa,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93649,Entire home/apt,150,2,2,2019-05-27,0.78,1,92 +33140984,COZY ROOM IN THE HEARTOF BROOKLYN (420 FRIENDLY),128369561,Frampton,Brooklyn,Bushwick,40.69544,-73.91012,Private room,46,1,7,2019-06-08,2.04,1,130 +33141479,Quiet Bright Park Slope BK room w/private bathroom,3988394,Adam,Brooklyn,South Slope,40.66829,-73.98871,Private room,95,1,16,2019-07-03,5.11,1,80 +33141938,Clean Beautiful New apartment renovated in 2019,19303369,Hiroki,Manhattan,Inwood,40.86507,-73.92348,Private room,35,29,0,,,37,31 +33142839,Incredible Location! Flatiron 4BR Loft!,248747777,Drake,Manhattan,Chelsea,40.7394,-73.99868,Entire home/apt,199,2,8,2019-06-24,2.89,1,125 +33148781,"Beautiful room in Brooklyn, 2 min ocean and train",196872053,Marina,Brooklyn,Brighton Beach,40.57753,-73.95901,Private room,80,3,0,,,2,350 +33151516,Best Hood in NYC. Private Bedroom in ASTORIA!!,1852219,Douglas And Juthamas,Queens,Astoria,40.7718,-73.91942,Private room,62,2,16,2019-06-23,4.53,1,313 +33153247,Comfortable quiet single room in beautiful Astoria,104796372,Eric,Queens,Astoria,40.77151,-73.93066,Private room,65,1,2,2019-06-23,2,1,7 +33154427,Artsy apartment in Crown Heights next to Subway,82524498,Javier,Brooklyn,Crown Heights,40.66697,-73.93508,Entire home/apt,85,5,9,2019-06-18,2.65,1,7 +33154669,Center Located OneBedroom CloseTo LGA Train7/E/F,90131587,Yu Qun,Queens,Elmhurst,40.73716,-73.87957,Entire home/apt,109,2,3,2019-05-26,1.15,1,0 +33155086,Large Studio close to everything,190643075,Ally,Brooklyn,Bay Ridge,40.63015,-74.02305,Entire home/apt,90,6,1,2019-06-07,0.94,1,0 +33155194,Bed-Stuy 2 Bed/2 Bath - Newly Renovated,34014150,Barry,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94002,Entire home/apt,175,4,4,2019-06-03,1.64,1,196 +33155206,"Central, spacious, beautiful, well-appointed 1-br",13564519,Rebecca,Manhattan,Midtown,40.76309,-73.98063,Entire home/apt,190,3,1,2019-06-05,0.88,1,84 +33155771,One bedroom apartment in the Heart of Williamsburg,3401286,Katalin,Brooklyn,Williamsburg,40.71848,-73.94393,Entire home/apt,170,2,4,2019-07-05,1.22,1,1 +33155909,Spacious apt in NYC minutes away from midtown,249637449,Inna,Manhattan,Harlem,40.82311,-73.94749,Entire home/apt,130,2,12,2019-07-01,3.40,1,14 +33155912,"Brooklyn Heights Contemporary Gem, 3 Bed, 2 Bath",36477189,David,Brooklyn,Brooklyn Heights,40.69944,-73.99596,Entire home/apt,600,3,8,2019-07-02,2.96,1,44 +33155996,"Bright and Spacious in Bed Stuy, Brooklyn",8902538,Laura,Brooklyn,Bedford-Stuyvesant,40.69264,-73.94551,Entire home/apt,100,2,5,2019-05-21,1.61,1,0 +33156123,"Cool, clean and confortable 1 bedroom in Bushwick",2928681,Santiago,Brooklyn,Bushwick,40.70487,-73.92533,Entire home/apt,150,3,1,2019-05-05,0.46,1,6 +33156210,LUXE bedroom in HUGE 2BR APT! Wash/Dry! Terrace!,95604631,Tom,Brooklyn,Williamsburg,40.71579,-73.95092,Private room,79,4,0,,,1,110 +33156988,Beautiful Bright TriBeCa Loft - steps from Soho!,61256671,Jason,Manhattan,Tribeca,40.71989,-74.00668,Entire home/apt,290,2,4,2019-06-25,2.26,1,75 +33157003,Brenda's Palace,92190906,Brenda,Brooklyn,Flatlands,40.62636,-73.91824,Entire home/apt,110,3,6,2019-06-28,2.28,1,339 +33157359,Private room for CAT LOVERS,138994918,Priscila,Manhattan,East Harlem,40.80143,-73.93803,Private room,50,3,0,,,1,41 +33157502,#2 Make yourself at home. (close to LGA and JFK),249649095,Tenzin,Queens,East Elmhurst,40.76132,-73.88192,Private room,53,2,16,2019-06-21,4.49,1,79 +33157841,"A beautiful, Bright , Specious 2 Bedroom apt",28460706,Roger,Brooklyn,Bedford-Stuyvesant,40.67657,-73.91146,Entire home/apt,80,30,0,,,1,312 +33159062,LES Bachelor/ette Pad,249661823,Cara,Manhattan,Lower East Side,40.71829,-73.989,Entire home/apt,200,2,4,2019-06-02,1.54,1,3 +33159289,"#4 Cozy studio, 2 blocks from CENTRAL PARK",231138233,Filiz,Manhattan,East Harlem,40.7891,-73.94906,Entire home/apt,180,1,17,2019-06-23,4.77,5,40 +33161019,"Treat yourself to Complete, Private Tranquility",249676515,Karen,Queens,Rosedale,40.65233,-73.72656,Entire home/apt,80,2,1,2019-06-15,1,1,176 +33161119,LUXURY 2BED 2 BATH/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77424,-73.98827,Entire home/apt,260,30,7,2019-06-17,2.73,25,274 +33162983,SPACIOUS 4BR/2BA APT W/PRIVATE OUTDOOR SPACE UWS,9293730,Inna,Manhattan,Upper West Side,40.80044,-73.96176,Entire home/apt,190,30,1,2019-05-04,0.45,16,310 +33163633,Beautiful Spacious Brooklyn Room #2,249291429,Boho,Brooklyn,Bedford-Stuyvesant,40.69284,-73.95954,Private room,45,3,0,,,2,135 +33164622,Private large bedroom with skylight in Loft.,3502098,Cecilia,Brooklyn,Williamsburg,40.71646,-73.95996,Private room,75,2,10,2019-07-03,2.83,1,177 +33165620,Sunny studio in great location,249708372,Gabriel,Queens,Long Island City,40.75817,-73.92949,Entire home/apt,100,3,11,2019-07-01,3.30,1,296 +33167738,E. Williamsburg/Bushwick/Bedstuy Private Bedroom,21524809,Jeremy,Brooklyn,Williamsburg,40.70312,-73.94464,Private room,75,4,6,2019-06-24,1.98,1,55 +33168074,Homely Peaceful Apartment. Close to JFK,77393311,Edgar,Queens,Woodhaven,40.69567,-73.84949,Private room,50,2,7,2019-05-31,2.00,1,174 +33168966,Lower East Side at East Broadway 2b,168565806,Paolo,Manhattan,Lower East Side,40.71171,-73.99077,Entire home/apt,125,30,1,2019-05-26,0.68,2,46 +33169141,Split level entire 2Bedroom Apt.,219333557,Rafael,Queens,East Elmhurst,40.76258,-73.86855,Entire home/apt,95,1,16,2019-07-03,4.40,7,81 +33169495,Clean and convenient in the heart of Brooklyn,389297,Jonathan,Brooklyn,Boerum Hill,40.68872,-73.98938,Entire home/apt,126,5,0,,,1,0 +33169786,Cozy Fully Furnished,1602809,Christina,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.96059,Entire home/apt,150,30,0,,,1,278 +33169890,Cozy Bedroom on Upper west near Columbia U,233917490,Yoannie,Manhattan,Upper West Side,40.80221,-73.96677,Private room,40,1,0,,,1,1 +33170496,"Cozy, charming, quiet and modern one bedroom apt!",165054817,Johanna,Bronx,Pelham Bay,40.84342,-73.83929,Entire home/apt,125,1,15,2019-07-07,5.77,1,336 +33171891,30 days minimum Time square West Midtown apartment,177396569,Yanina,Manhattan,Hell's Kitchen,40.76043,-73.99132,Entire home/apt,4100,30,0,,,3,180 +33172245,"#2 Cozy 1 bedroom apartment,2 block to CENTRALPARK",231138233,Filiz,Manhattan,East Harlem,40.78909,-73.94956,Entire home/apt,180,1,21,2019-07-06,6.00,5,87 +33172249,"#3 Cozy Studio , 2 blocks from Central Park",231138233,Filiz,Manhattan,East Harlem,40.78878,-73.94838,Entire home/apt,165,1,23,2019-07-07,6.83,5,102 +33175415,Cozy Studio Apt Brooklyn Close to Brighton & Coney,114736959,Ed,Brooklyn,Gravesend,40.58822,-73.97294,Entire home/apt,85,30,1,2019-04-05,0.31,6,347 +33181402,Beautiful Bed-Stuy Brownstone w/ Outdoor Oasis,1940153,Dan & Bliss,Brooklyn,Bedford-Stuyvesant,40.68164,-73.9262,Entire home/apt,199,2,3,2019-07-02,3,1,67 +33183013,Private room in light + plant filled zen oasis!!,23276234,Samantha,Brooklyn,Williamsburg,40.70905,-73.95315,Private room,90,3,2,2019-04-21,0.71,1,0 +33184032,"Comfy Kips Bay 1BR w/ Gym, Doorman + Sundecks, walk to MSG by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74079,-73.9775,Entire home/apt,263,30,0,,,232,332 +33184311,Furnished East Village Studio Apartment,249846765,Cy,Manhattan,East Village,40.72853,-73.98173,Entire home/apt,89,30,0,,,1,0 +33184502,"Private, Sunny Room in Prime Williamsburg",89035025,Leanne,Brooklyn,Williamsburg,40.71492,-73.94332,Private room,65,3,4,2019-06-10,1.29,1,3 +33185502,Sunny loft- private room & private living-room,41089134,Carissa,Brooklyn,Red Hook,40.67897,-74.00587,Private room,45,2,17,2019-06-29,5.05,1,87 +33186696,Harlem Quite haven 15 minutes to Time Square !!!!!,145975067,Ousmane,Manhattan,Harlem,40.81826,-73.93882,Private room,70,1,25,2019-07-02,6.76,3,9 +33186806,Manhattan luxury studio(near Columbia Circle),64689615,Vivienne,Manhattan,Upper West Side,40.77362,-73.99133,Entire home/apt,250,8,0,,,1,4 +33186981,Beautiful apartment in Bedstuy Brooklyn,72031522,Vanessa,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93436,Private room,60,2,9,2019-06-15,2.76,1,22 +33187408,Gorgeous bedroom w/ensuite bath-East Williamsburg,249870831,Melat,Brooklyn,Williamsburg,40.71395,-73.94022,Private room,65,1,2,2019-05-27,1.15,1,124 +33187617,Midtown East Gem with PRIVATE Terrace,165776960,Raanan,Manhattan,Midtown,40.76054,-73.96449,Entire home/apt,130,30,1,2019-06-09,1,2,148 +33188757,GORGEOUS 1-bdrm with PRIVATE YARD & washer/dryer,249881559,Christopher,Brooklyn,Williamsburg,40.71594,-73.9402,Entire home/apt,135,2,9,2019-06-27,3.86,1,162 +33189664,Large 1 Bedroom Apartment,46311875,Michael,Manhattan,Chelsea,40.75183,-73.99633,Entire home/apt,140,30,0,,,1,167 +33189755,"San Carlos Hotel One Bedrm Suite/3 beds, up to 6",173685298,Janet,Manhattan,Midtown,40.75475,-73.97243,Private room,399,1,1,2019-06-02,0.81,11,364 +33190044,Comfy Brooklyn escape w/ quick access to Manhattan,7117263,Joy,Brooklyn,Brooklyn Heights,40.69153,-73.9951,Private room,75,1,23,2019-07-07,8.02,1,166 +33190224,Artsy and bright Studio apartment in Brooklyn,21218657,Yezica,Brooklyn,Bedford-Stuyvesant,40.69462,-73.94499,Entire home/apt,89,3,7,2019-05-28,3.28,1,0 +33190990,Huge Designer Loft- View of New York City Skyline!,27564513,Lauren And Jeff,Brooklyn,Williamsburg,40.70396,-73.93442,Entire home/apt,250,2,7,2019-06-02,2.44,1,183 +33191754,renovated sunnyside with NY city views,40949032,Ana,Queens,Sunnyside,40.74149,-73.92327,Entire home/apt,131,30,0,,,1,182 +33193795,Quiet Room ideal for Students or young workers NYC,16722828,Víctor,Manhattan,Upper East Side,40.77385,-73.94733,Private room,58,28,3,2019-04-25,1.03,1,0 +33194789,Stunning 3 bedroom in townhouse right on Union Sq,249929999,Natalli,Manhattan,Gramercy,40.73683,-73.98816,Entire home/apt,700,5,11,2019-07-07,3.93,1,282 +33195147,The Sweet,239155432,Thia,Bronx,Wakefield,40.90484,-73.84489,Private room,120,1,1,2019-04-08,0.32,1,268 +33195320,Stylish Bedroom!! Manhattan!!!,140830391,Jay,Manhattan,Harlem,40.8088,-73.94527,Private room,100,1,4,2019-06-17,1.60,9,275 +33195591,Manhatan Stylish Bedroom,140830391,Jay,Manhattan,Harlem,40.81072,-73.94235,Private room,85,1,8,2019-07-02,2.61,9,150 +33197108,Welcome home,48958233,Ana,Manhattan,Gramercy,40.73644,-73.98097,Entire home/apt,215,1,1,2019-03-30,0.30,2,188 +33197913,Entire place on the upper east side,130827164,Julia,Manhattan,Upper East Side,40.77195,-73.9537,Entire home/apt,199,2,0,,,2,364 +33199798,Garden Apartment in Bushwick,19729266,Sam,Brooklyn,Bushwick,40.69328,-73.9225,Entire home/apt,150,7,1,2019-04-24,0.39,1,88 +33201132,Spacious bedroom walking distance from Columbia!,21816318,Nadia,Manhattan,Harlem,40.80098,-73.95424,Private room,85,3,5,2019-05-30,1.76,1,0 +33201727,Beautiful bedroom w/private bath-E.Williamsburg,249588074,Lily,Brooklyn,Williamsburg,40.71206,-73.94006,Private room,85,1,0,,,2,124 +33202973,LARGE PRIVATE ROOM IN GREAT NEIGHBORHOOD! UES.,878938,T. S.,Manhattan,Upper East Side,40.77927,-73.95165,Private room,98,1,10,2019-06-18,4.35,1,327 +33203187,The Australian Bear-Rug Master Bedroom in NYC,250005351,Max,Manhattan,Financial District,40.70529,-74.00653,Private room,293,1,7,2019-06-29,3.18,1,75 +33210106,East Village sanctuary.,8253008,Shane,Manhattan,East Village,40.7275,-73.98838,Entire home/apt,125,30,0,,,1,97 +33210320,The Love Shack,72744910,Saman,Brooklyn,Greenpoint,40.71971,-73.94377,Private room,65,2,6,2019-05-21,1.94,1,20 +33212719,NYC cozy apartment close to staten island ferry,250065719,Martha,Staten Island,Randall Manor,40.63211,-74.12557,Entire home/apt,85,1,6,2019-06-24,2.20,1,316 +33213292,Welcome,116446134,Jay,Brooklyn,East New York,40.67554,-73.8942,Private room,120,1,2,2019-05-06,0.59,1,89 +33214322,large & spacious bedroom-Williamsburg,249588074,Lily,Brooklyn,Williamsburg,40.71389,-73.93859,Private room,69,2,1,2019-03-22,0.28,2,345 +33214803,Spacious/Comfortable Close to Yankee Stadium/City,11379822,Danny,Bronx,Mount Hope,40.84672,-73.90411,Private room,63,1,3,2019-05-07,0.94,1,167 +33216329,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76453,-73.98035,Private room,250,1,0,,,8,0 +33216433,The Shambhala House,70393914,Danalee,Brooklyn,East Flatbush,40.64627,-73.92014,Private room,58,2,2,2019-07-07,2,1,126 +33216589,Luxury City Lights Suite,24831061,Hosteeva,Manhattan,Midtown,40.76428,-73.98083,Entire home/apt,310,1,0,,,8,0 +33216624,Magical Brooklyn Space *20 MIN to Manhattan!*,201407513,Norma-Jean,Brooklyn,Bedford-Stuyvesant,40.67922,-73.90953,Private room,41,1,6,2019-06-24,1.86,2,79 +33216902,Midtown Manhattan Suite,24831061,Hosteeva,Manhattan,Midtown,40.76543,-73.98078,Entire home/apt,261,1,0,,,8,0 +33217330,"Astoria Spacious Room +All included,Great location",177673174,Arber,Queens,Astoria,40.76553,-73.91353,Private room,80,2,0,,,1,0 +33217402,NO CLEANING FEE! 1.5 blocks from 2 train. Fridge!,240913980,Joie,Bronx,Wakefield,40.89637,-73.8555,Private room,39,1,10,2019-06-18,2.73,1,15 +33218283,Brand New 1BR prime UES~W/D the unit Best Value,162280872,Izi,Manhattan,Upper East Side,40.77039,-73.95812,Entire home/apt,180,30,1,2019-05-06,0.47,13,325 +33218637,Private Patio and Bathroom - Two Bedroom (Girls),40275796,Jill,Bronx,Kingsbridge,40.8704,-73.90559,Private room,100,5,0,,,1,40 +33219156,Sonder | The Biltmore | Sunny Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.75966,-73.9862,Entire home/apt,175,29,0,,,327,335 +33219891,Bright Private Room,250115747,Ivy,Brooklyn,Bushwick,40.69927,-73.9107,Private room,44,2,6,2019-06-24,2.37,4,163 +33220339,Sonder | The Biltmore | Cozy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.76147,-73.98589,Entire home/apt,177,29,2,2019-05-31,0.85,327,354 +33221080,"Convenient, Convenient and Comfortable",250115747,Ivy,Queens,Ridgewood,40.70056,-73.9106,Private room,49,2,14,2019-06-12,4.08,4,165 +33221660,Comfy and Convenient Private Room,250115747,Ivy,Queens,Ridgewood,40.69935,-73.91043,Private room,44,2,10,2019-06-24,3.13,4,128 +33221933,Visitors Dream,250115747,Ivy,Queens,Ridgewood,40.70125,-73.91051,Private room,44,2,9,2019-06-23,3.18,4,154 +33222428,"Beautiful Cozy room in Hell’s Kitchen,Times Square",231216524,Chase,Manhattan,Hell's Kitchen,40.76565,-73.98872,Private room,149,1,14,2019-06-25,3.78,5,0 +33223405,Royal Court,250149612,Claudia,Queens,Jamaica,40.66971,-73.78583,Entire home/apt,300,1,11,2019-07-07,3.27,1,319 +33224321,Huge Apartment with Amazing City Views,13783103,Veronika,Queens,Ridgewood,40.70848,-73.9148,Entire home/apt,140,3,13,2019-06-23,4.29,1,192 +33226027,"Quiet, Private room in Brooklyn Brownstone",162093521,Malik,Brooklyn,Bedford-Stuyvesant,40.68196,-73.92416,Private room,35,2,1,2019-05-07,0.47,1,4 +33226326,Manhattan luxury building super large studio,106857875,Yige,Manhattan,Chelsea,40.75426,-73.99848,Entire home/apt,140,120,0,,,1,255 +33226423,Modern 1 Bedroom in Brooklyn,15191122,Michelle,Brooklyn,Bedford-Stuyvesant,40.68802,-73.94291,Entire home/apt,75,2,2,2019-06-02,1.33,1,24 +33226517,Spacious Room w/ oversized closet in East Harlem,39823351,Geli,Manhattan,East Harlem,40.79415,-73.94156,Private room,90,4,10,2019-07-03,3.53,1,24 +33227584,King Size Dream Room,237077566,Jean Paul,Brooklyn,Gowanus,40.67731,-73.98539,Private room,74,1,1,2019-03-23,0.28,1,72 +33228127,ST MARKS /heart of EAST VILLAGE sleep up to 8,95892016,Leonora,Manhattan,East Village,40.72687,-73.98416,Entire home/apt,396,1,15,2019-06-19,4.84,5,317 +33229012,1 stop away from Manhattan- HUGE Williamsburg room,45470760,Neha,Brooklyn,Williamsburg,40.70406,-73.95763,Private room,70,2,5,2019-06-01,1.63,1,2 +33230088,Bedroom in NYC - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86208,-73.9269,Private room,100,1,2,2019-06-19,0.78,9,324 +33230211,Bedroom in NYC!! - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86324,-73.92682,Private room,100,1,4,2019-07-01,1.58,9,315 +33230303,Bedroom in NYC - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86182,-73.92667,Private room,100,1,7,2019-07-05,2.33,9,324 +33230477,NYC Bedroom!! - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86387,-73.92711,Private room,180,5,6,2019-06-23,1.94,9,323 +33235936,Amazing Studio in the heart of Midtown Manhattan,250252296,Manuel Ricardo,Manhattan,Midtown,40.74789,-73.98702,Entire home/apt,220,4,10,2019-07-03,3.03,1,297 +33236002,Sunny and Bright Brooklyn Duplex,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68609,-73.92932,Entire home/apt,195,2,5,2019-06-23,2.42,2,20 +33237562,Luda and David Nest to share.,234588422,Luda,Queens,Sunnyside,40.74512,-73.91758,Entire home/apt,75,6,3,2019-06-23,1.22,1,43 +33238238,Luxury Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.7643,-73.98199,Entire home/apt,310,1,2,2019-04-21,0.70,8,0 +33239233,"STUNNING BRAND NEW 2 BDR APT IN GREENPOINT, BKLN",249983430,Emily,Brooklyn,Greenpoint,40.73644,-73.95425,Entire home/apt,300,2,22,2019-06-26,6.23,1,341 +33240039,"Sunny room, Downtown NY, 2 Bridges, Chinatown L",248961864,Lily,Manhattan,Chinatown,40.71301,-73.99609,Private room,85,1,12,2019-05-29,3.36,3,339 +33240867,"Comfort room in Downtown NYC, Chinatown, Soho W",248961864,Lily,Manhattan,Two Bridges,40.71241,-73.99458,Private room,85,1,15,2019-06-19,4.17,3,356 +33240958,COZY Room @Williamsburg (10 mins to Manhattan),1104166,Mala,Brooklyn,Williamsburg,40.71362,-73.95343,Private room,65,2,9,2019-06-23,3.42,4,43 +33241012,Manhattan Club Suite,24831061,Hosteeva,Manhattan,Midtown,40.76425,-73.9809,Entire home/apt,310,1,0,,,8,0 +33241034,Sunny Bedroom in Ridgewood Apartment!,67373452,David,Queens,Ridgewood,40.69894,-73.90064,Private room,50,7,6,2019-04-14,1.84,1,128 +33241498,2 Rooms in pvt house-15 mins to NYC & free ferry,161357125,Mohsin,Staten Island,Emerson Hill,40.61035,-74.11711,Entire home/apt,78,2,11,2019-07-03,3.88,3,38 +33241841,Spacious Manhattan Club Suite,24831061,Hosteeva,Manhattan,Midtown,40.76403,-73.98191,Entire home/apt,275,1,0,,,8,0 +33241978,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76391,-73.98071,Private room,250,1,0,,,8,0 +33242348,1 room in private house - 15 mins to NYC & Ferry,161357125,Mohsin,Staten Island,Todt Hill,40.60991,-74.11577,Private room,50,2,6,2019-06-18,2.02,3,52 +33242898,Luxury Metropolitan Suite,24831061,Hosteeva,Manhattan,Midtown,40.76559,-73.98026,Entire home/apt,275,1,0,,,8,0 +33242964,"Cozy room in Downtown Manhattan, 2 Bridges, Soho Y",248961864,Lily,Manhattan,Chinatown,40.71309,-73.99626,Private room,85,1,14,2019-06-16,3.93,3,332 +33243041,Beautiful Bright Brooklyn BedRoom *20 Min to City*,201407513,Norma-Jean,Brooklyn,Bedford-Stuyvesant,40.67876,-73.91096,Private room,41,2,5,2019-06-16,2.08,2,74 +33243396,"Big, Quiet Apartment with Two Cats, Central Park",409766,Rachel,Manhattan,Upper West Side,40.79702,-73.96256,Entire home/apt,144,3,2,2019-07-05,2,1,0 +33243529,Astoria Bedroom 20 minutes away from the city,214329835,Rita,Queens,Ditmars Steinway,40.77761,-73.90919,Private room,69,2,1,2019-06-17,1,2,349 +33244670,Charming place in the heart of Manhattan.,143563277,Mariana,Manhattan,Greenwich Village,40.73592,-73.99601,Entire home/apt,230,1,2,2019-04-14,0.57,1,83 +33245975,Crashpad in Clinton Hill,3151,Eric,Brooklyn,Clinton Hill,40.69316,-73.96773,Private room,69,1,1,2019-05-26,0.67,1,179 +33246476,Spacious bedroom in Williamsburg,13480762,Shana,Brooklyn,Williamsburg,40.71768,-73.94027,Private room,40,1,9,2019-06-01,2.84,2,22 +33247707,Cozy East Village walk up,6048212,Lissa,Manhattan,East Village,40.72958,-73.98569,Entire home/apt,151,3,10,2019-06-17,3.00,1,7 +33248031,Harlem Sanctuary 1,178833771,Danese,Manhattan,Harlem,40.82312,-73.93885,Entire home/apt,275,2,1,2019-05-05,0.46,3,351 +33248625,beautiful studio apt in the village,593135,Maria,Manhattan,Greenwich Village,40.72894,-74.00102,Entire home/apt,180,3,8,2019-07-01,2.79,1,188 +33249193,Harlem Sanctuary 2,178833771,Danese,Manhattan,Harlem,40.82172,-73.94019,Private room,55,3,2,2019-05-09,0.67,3,353 +33250984,Large private bedroom in prime West Village!,250374011,Lisa,Manhattan,West Village,40.73261,-74.01043,Private room,120,2,12,2019-07-08,3.91,1,35 +33253620,studio appt,2811538,Oliver,Manhattan,Little Italy,40.71948,-73.99603,Entire home/apt,350,3,0,,,1,90 +33254187,Room in Washingtom Heights (Manhattan),83114146,Inbar,Manhattan,Washington Heights,40.84232,-73.93772,Private room,60,2,8,2019-06-30,2.53,1,26 +33254547,安静 干净 温暖的小屋,140630987,Jiali,Queens,Flushing,40.7603,-73.81428,Private room,75,1,9,2019-06-15,2.52,6,204 +33254830,"10 min to Manhattan, no cleaning fee!",250413062,Jernej,Queens,Long Island City,40.74827,-73.94006,Private room,110,2,14,2019-07-04,4.57,1,112 +33255997,"Gym, Rooftop, Pool Lux mater bedroom/private bath",217482038,Emily,Manhattan,Upper East Side,40.76258,-73.96809,Private room,129,3,4,2019-06-22,3.08,3,15 +33256416,Rooftop pool view Lux private room,217482038,Emily,Manhattan,Upper East Side,40.76178,-73.96653,Private room,129,3,1,2019-06-11,1,3,0 +33256653,"Bed-Stuy, Brooklyn apt w/ rooftop & skyline view.",204221927,"Tommy, Nate, And Kofi",Brooklyn,Bedford-Stuyvesant,40.68716,-73.94241,Private room,55,2,6,2019-06-30,3.53,1,89 +33259063,LUXURIOUS! Private Bedroom/Bath near Central Park,21686560,Katarina,Manhattan,Upper East Side,40.77399,-73.9461,Private room,217,1,6,2019-05-25,1.94,1,242 +33260042,Nice Manhattan room close to Apollo & transpo!,137358866,Kazuya,Manhattan,Harlem,40.81212,-73.94341,Private room,37,30,0,,,103,223 +33263092,Beautiful 2BR in Vibrant Area!,181092484,Leonard,Manhattan,Lower East Side,40.72082,-73.9879,Entire home/apt,299,1,1,2019-05-14,0.54,3,217 +33263637,Calm Comfortable Brooklyn Retreat,1760549,Patrice,Brooklyn,Canarsie,40.63567,-73.91296,Entire home/apt,120,2,11,2019-07-02,4.12,1,52 +33265025,"Quiet, East Village Bedroom for Sublet (Queen bed)",28940517,Josh,Manhattan,East Village,40.73284,-73.9865,Private room,65,30,0,,,1,38 +33265526,Sunset Park Retreat - 3 blocks from train station!,5325489,Julie,Brooklyn,Sunset Park,40.64997,-74.00626,Entire home/apt,135,2,9,2019-07-08,5.19,1,266 +33266016,Spacious room and private bath in Williamsburg,18883243,Mika,Brooklyn,Williamsburg,40.71937,-73.9549,Private room,75,14,1,2019-05-25,0.67,1,0 +33267342,Spectacular Luxury Park Slope Brownstone,15101609,Rebecca,Brooklyn,Park Slope,40.67591,-73.97689,Entire home/apt,700,3,0,,,1,239 +33267781,Lincoln Center Haven - private room with ensuite,250512369,Jaclyn,Manhattan,Upper West Side,40.77477,-73.97958,Private room,159,1,7,2019-06-05,2.56,1,302 +33268045,Brooklyn 1 Bedroom Apartment,250514925,Andrew,Brooklyn,Red Hook,40.67635,-74.01133,Entire home/apt,100,1,2,2019-06-09,1.67,1,13 +33268138,"Designers apartment on the Upper East, 2 entrances",105763296,Tara,Manhattan,Upper East Side,40.78423,-73.94786,Entire home/apt,100,5,8,2019-06-25,3.24,1,270 +33269114,Wake up to Statue of Liberty view,247815136,Mina,Manhattan,Financial District,40.7071,-74.01556,Entire home/apt,300,2,0,,,1,365 +33269801,Gorgeous queen size oasis,105762561,Kim,Queens,Jamaica,40.69008,-73.78667,Private room,85,2,12,2019-07-01,3.56,3,330 +33269847,Sunny Happy Artist room close to train,248472625,Tyrone,Brooklyn,Bushwick,40.68929,-73.9216,Private room,45,14,1,2019-05-30,0.73,1,67 +33270782,Spacious & Bright Brooklyn Getaway near trains,96240355,Sherika,Brooklyn,Bedford-Stuyvesant,40.67969,-73.90923,Private room,75,2,9,2019-06-24,2.62,1,0 +33270883,Sunny and Zen room in Chelsea,44731956,Raymond,Manhattan,Chelsea,40.74147,-73.99908,Private room,100,4,0,,,1,0 +33271110,Cozy Room in BK Brownstone w/ Breakfast,2517810,Amber,Brooklyn,Bedford-Stuyvesant,40.68689,-73.93344,Private room,45,2,7,2019-06-28,2.41,1,82 +33271828,Urban Oasis Junior,2522815,Tricia,Brooklyn,Sunset Park,40.664,-73.99233,Entire home/apt,135,2,4,2019-07-04,4,2,296 +33273186,StudioAptWithSeparateKitchen-20min from Manhattan,6307153,Nobin,Queens,Sunnyside,40.74636,-73.91748,Entire home/apt,71,2,5,2019-06-19,3.19,1,0 +33273335,First Class King Suite Midtown Manhattan | Outdoor Restaurant Terrace,239660813,Yotel,Manhattan,Hell's Kitchen,40.75833,-73.99516,Private room,210,1,0,,,10,333 +33273525,"Beautiful, large, sunny private bedroom available",24204269,Alexis,Brooklyn,Prospect Heights,40.67953,-73.97334,Private room,70,20,1,2019-05-09,0.49,1,0 +33274640,Bright & Comfortable East Village Oasis,555245,Eric,Manhattan,East Village,40.72808,-73.98273,Entire home/apt,165,1,4,2019-06-22,2.61,1,97 +33274701,PARADISE HOME,227195925,Magda,Queens,Howard Beach,40.65278,-73.84289,Entire home/apt,165,1,0,,,1,323 +33275070,Modern studio/private entrance/superb location,250580779,Viktoriya,Staten Island,"Bay Terrace, Staten Island",40.55105,-74.1366,Entire home/apt,55,30,2,2019-05-21,0.82,1,0 +33275250,First Class Suite in Midtown Manhattan | Manhattan Skyline View,239660813,Yotel,Manhattan,Hell's Kitchen,40.76027,-73.99682,Private room,209,1,0,,,10,333 +33275808,Large Charming 1-Bedroom apt in Brownstone,233881237,Marietta,Brooklyn,Fort Greene,40.68562,-73.96977,Entire home/apt,125,3,4,2019-06-23,1.67,1,48 +33279205,NYC Luxury | Penthouse Suite + Private Outdoor Terrace + Tub,239660813,Yotel,Manhattan,Hell's Kitchen,40.75955,-73.99667,Private room,794,1,0,,,10,200 +33279209,Midtown Manhattan Space | Chic Design + Outdoor Terrace + Rain Shower,239660813,Yotel,Manhattan,Hell's Kitchen,40.76019,-73.99524,Private room,146,1,0,,,10,314 +33279214,Corner Room in Midtown Manhattan | Outdoor Terrace + Fitness Center,239660813,Yotel,Manhattan,Hell's Kitchen,40.75842,-73.99609,Private room,197,1,1,2019-05-17,0.57,10,342 +33279216,Private Terrace + Outdoor Cold Water Soaking Tub | Midtown Manhattan,239660813,Yotel,Manhattan,Hell's Kitchen,40.75893,-73.99485,Private room,297,1,0,,,10,311 +33279221,Room with a View | Enjoy the Manhattan Skyline + Outdoor Terrace,239660813,Yotel,Manhattan,Hell's Kitchen,40.75796,-73.99625,Private room,166,1,1,2019-05-01,0.43,10,345 +33279231,Midtown Manhattan Room | Outdoor Terrace + Co-working Space,239660813,Yotel,Manhattan,Hell's Kitchen,40.75796,-73.99522,Private room,166,1,0,,,10,343 +33279235,Chic Room in Midtown Manhattan | Outdoor Restaurant Terrace + Smart TV,239660813,Yotel,Manhattan,Hell's Kitchen,40.75885,-73.99595,Private room,135,1,0,,,10,275 +33279239,180 Degree View of Midtown Manhattan + Hudson River + Empire State,239660813,Yotel,Manhattan,Hell's Kitchen,40.76034,-73.99638,Private room,500,1,1,2019-06-10,1,10,305 +33288485,Quiet Oasis in Brooklyn with Garden Patio,1307197,Jenn,Brooklyn,East Flatbush,40.66039,-73.93034,Private room,90,1,2,2019-05-19,0.97,1,0 +33288663,Sun drenched private apartment,17247001,Erin,Brooklyn,Crown Heights,40.67704,-73.95957,Entire home/apt,140,1,3,2019-07-03,1.58,1,13 +33288760,"Bright, spacious Brooklyn Loft with large terrace",1825325,Benny,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94494,Entire home/apt,80,90,0,,,1,41 +33290240,Williamsburg Resort 15 Mins. to Manhattan!,90294445,Brendan,Brooklyn,Williamsburg,40.70865,-73.94507,Entire home/apt,200,4,0,,,2,4 +33290753,Luxury Apartment with Balcony,18254321,Mj,Manhattan,Hell's Kitchen,40.75617,-73.99824,Private room,200,4,1,2019-04-28,0.41,1,22 +33291448,Loft on the Brooklyn Waterfront,6082769,Christopher Linwood,Brooklyn,Greenpoint,40.7359,-73.95909,Entire home/apt,250,14,0,,,1,83 +33291824,Nice and Cozy 2 bedrooms apartment near Manhattan,209569701,Beatriz,Queens,Long Island City,40.75464,-73.94107,Entire home/apt,190,4,7,2019-06-13,2.56,1,255 +33291866,Angela's Sweet Suite (Shared-Females Only),113251277,Angela,Manhattan,Kips Bay,40.74225,-73.97943,Shared room,35,2,2,2019-04-06,0.59,2,353 +33292234,Sunny Brooklyn apartment,45467925,Elise,Brooklyn,Gowanus,40.66791,-73.99354,Entire home/apt,125,5,7,2019-06-12,2.23,1,70 +33292956,Stylish 2 bedroom in the heart of manhattan,250739581,Vivi,Manhattan,East Village,40.72345,-73.98152,Entire home/apt,280,1,8,2019-06-23,2.40,1,325 +33293218,1860’s Vanderbilt Mansion - 19th century details,141124307,Stratis,Brooklyn,Bedford-Stuyvesant,40.68579,-73.9358,Entire home/apt,249,3,12,2019-06-29,4.19,1,38 +33294626,Soho 1 Bedroom Apartment Near Tons of Restaurants,250759662,John,Manhattan,Greenwich Village,40.72779,-73.99882,Entire home/apt,200,4,14,2019-06-27,3.96,1,323 +33294631,Subletting an amazing room!!!,169619135,Bar,Manhattan,Chelsea,40.74825,-73.99542,Private room,75,4,0,,,1,0 +33294992,East Harlem room with private bathroom!,159676587,Karina,Manhattan,East Harlem,40.79668,-73.93434,Private room,124,1,7,2019-06-22,2.28,2,155 +33295329,Unique & Stylish Apartment in Chelsea,5258749,Bani,Manhattan,Chelsea,40.74197,-73.99703,Entire home/apt,120,5,13,2019-06-30,5.00,2,14 +33295429,Large room with private bathroom in East Harlem!,159676587,Karina,Manhattan,East Harlem,40.79781,-73.93599,Private room,125,1,8,2019-07-03,2.70,2,117 +33295827,Private Room in 4 Bedroom Apartment in Upper West,250771864,Zhou,Manhattan,Upper West Side,40.80131,-73.96596,Private room,37,50,0,,,1,1 +33303647,Rento cómoda habitación para pareja oh persona sol,250841016,Jenny,Bronx,Norwood,40.87275,-73.87978,Private room,58,5,0,,,1,180 +33307926,Short term Queen size sofa-bed in living room,747681,Pro,Manhattan,Midtown,40.76446,-73.98123,Private room,95,3,1,2019-06-16,1,1,5 +33309213,Room in a Stylish & Dreamy Brooklyn loft,2236212,Iva,Brooklyn,Bedford-Stuyvesant,40.67867,-73.93723,Private room,100,2,0,,,2,89 +33309892,Extra Large Central Park/UWS Furnished Room,50741398,Jessica,Manhattan,Upper West Side,40.8003,-73.96436,Private room,105,1,8,2019-05-05,2.40,4,0 +33310062,"Beautiful 1.5 Bedroom Oasis, Heart of Williamsburg",2196083,Bridgette,Brooklyn,Williamsburg,40.71699,-73.96167,Entire home/apt,214,3,6,2019-07-01,1.94,1,32 +33310325,Flushing entire apartment in prime location,215556105,Kay,Queens,Flushing,40.76695,-73.81638,Entire home/apt,250,7,0,,,3,174 +33310428,Confortable y limpio,250896604,Cristina,Manhattan,Washington Heights,40.85487,-73.92759,Private room,32,2,26,2019-07-03,8.48,1,280 +33310983,Luxury Miami style apartment,250911060,Anthony,Manhattan,East Harlem,40.79583,-73.93328,Entire home/apt,160,1,11,2019-06-20,5.59,1,21 +33311237,Large Parlor Apt Williamsburg Brooklyn NY House,193954973,Sean,Brooklyn,Williamsburg,40.71547,-73.95147,Entire home/apt,165,3,5,2019-07-03,1.97,3,272 +33312951,Charming and Luxury 1 Bedroom Apartment,10533936,Taylor,Manhattan,Chelsea,40.743,-74.00136,Entire home/apt,300,2,2,2019-07-01,1.22,1,363 +33313341,Spectacular apartment in Astoria near everywhere,151780315,Jose,Queens,Ditmars Steinway,40.78096,-73.91282,Private room,70,2,0,,,1,0 +33314007,"Room with own living room, 1 stop from Manhattan",25476420,Laura,Brooklyn,Fort Greene,40.69438,-73.9712,Private room,51,12,0,,,1,44 +33315073,Brand new 2 bedroom apartment near yankee stadium,24979023,Nanyuma,Bronx,Concourse Village,40.83251,-73.91217,Private room,85,1,0,,,1,365 +33315338,Lovely bedroom in Brooklyn,52818583,Justin & Lilo,Brooklyn,Bedford-Stuyvesant,40.68797,-73.95439,Private room,75,1,21,2019-06-30,7.50,1,114 +33315343,UPPER WEST SIDE:Renovated Private Spacious Rm & BR,15807180,Michael,Manhattan,Upper West Side,40.7852,-73.9714,Private room,111,2,8,2019-06-23,2.58,3,344 +33315595,Bright Top Floor + Private Terrace in Williamsburg,131057988,Brandon & Caitlyn,Brooklyn,Williamsburg,40.71419,-73.94138,Private room,150,2,7,2019-06-29,2.66,1,48 +33316217,Quiet Studio with Balcony near Central Park,217803139,Brigitte,Manhattan,Upper West Side,40.78687,-73.97428,Entire home/apt,175,2,1,2019-05-26,0.68,1,2 +33316356,Spacious 1BR on W 72nd! A dream UWS location!,250968889,Samantha,Manhattan,Upper West Side,40.77884,-73.98591,Entire home/apt,180,5,7,2019-06-18,2.50,1,10 +33316690,THIES IN HARLEM .,250969026,Cheikh,Manhattan,Harlem,40.81323,-73.9422,Entire home/apt,165,1,8,2019-06-23,2.58,1,53 +33317478,Luxury redefined: Splendid sleep in the skies,15822432,May,Manhattan,Hell's Kitchen,40.75908,-73.9938,Entire home/apt,395,5,4,2019-07-06,2.73,1,167 +33318809,Spacious Artistic 1 Bedroom Loft & High Ceilings,106159574,Jonathan,Brooklyn,Williamsburg,40.70694,-73.94176,Private room,90,2,3,2019-04-07,0.90,1,0 +33319941,Private Bathroom & Private Bedroom in Clinton Hill,922056,Vincent,Brooklyn,Bedford-Stuyvesant,40.68073,-73.95749,Private room,52,180,0,,,1,85 +33326342,Alphabet Place II by (Hidden by Airbnb),156158778,Sally,Manhattan,East Village,40.72905,-73.97797,Entire home/apt,1145,1,0,,,12,0 +33329762,Chic renovated historic 1BR with garden,1036179,Nathan,Brooklyn,Crown Heights,40.67318,-73.95566,Entire home/apt,225,4,4,2019-07-07,1.29,1,11 +33330013,Spacious 2bd apt in the heart of Manhattan,13506708,Guy,Manhattan,East Harlem,40.7854,-73.94981,Entire home/apt,250,2,3,2019-04-21,0.97,1,188 +33330161,Soho Loft III by (Hidden by Airbnb),156158778,Sally,Manhattan,SoHo,40.72525,-74.00142,Entire home/apt,1306,1,0,,,12,23 +33331140,"SKY VIEW 1 BEDROOM, 1 MIN TO SUBWAY",85518733,Vivivn,Queens,Long Island City,40.74697,-73.94131,Entire home/apt,135,4,0,,,1,0 +33331584,Our place in Williamsburg,98056984,Adi,Brooklyn,Williamsburg,40.70804,-73.94868,Entire home/apt,150,5,2,2019-06-14,0.67,1,0 +33333345,"Specious light room near Broadway(M,J, L,G trains)",248161322,Sergii,Brooklyn,Bushwick,40.70031,-73.94077,Shared room,35,30,0,,,14,311 +33334269,SPACIOUS ROOMS FOR RENT,13480762,Shana,Brooklyn,Williamsburg,40.7185,-73.93964,Private room,40,1,14,2019-06-02,4.57,2,26 +33334476,★1800ft²/195m²★3-Levels★Deck★Walk Score 96★Office★,3165356,Arlene,Brooklyn,Greenpoint,40.72023,-73.94355,Entire home/apt,336,2,9,2019-07-06,5.87,1,97 +33334633,Looks Like A Calvin Klein Ad! Manhattan Loft,246331794,Anna,Manhattan,Murray Hill,40.7476,-73.97632,Entire home/apt,320,1,5,2019-07-06,1.72,2,236 +33334958,Private NYC Studio--Near Central Park + East River,68930822,Jill Lauren,Manhattan,Upper East Side,40.76218,-73.95858,Entire home/apt,150,3,13,2019-06-25,4.24,1,61 +33336699,Stunning Sunny Studio,89068125,Martin,Manhattan,East Harlem,40.79755,-73.94413,Entire home/apt,250,1,1,2019-04-30,0.43,1,0 +33337280,Private room in gated community: walk to ferry!,97328229,Jaime,Bronx,Clason Point,40.80771,-73.85204,Private room,46,2,3,2019-06-30,1.13,1,179 +33339676,Sunny Large Studio Elevator Doorman Gym UN 5226,16098958,Jeremy & Laura,Manhattan,Midtown,40.75191,-73.9698,Entire home/apt,140,30,0,,,96,311 +33340151,Warm Spacious Bedroom in Historical Harlem!!!,63160119,Michael,Manhattan,Harlem,40.81749,-73.93875,Private room,75,1,13,2019-07-06,5.27,1,74 +33340216,Classic modern bedroom-close to everything,215556105,Kay,Queens,Flushing,40.76734,-73.81789,Private room,60,1,3,2019-05-01,0.96,3,84 +33341083,"Sexy, Cozy Loft for work and play",23913300,Kelly,Brooklyn,Williamsburg,40.71158,-73.96697,Entire home/apt,400,1,1,2019-05-05,0.46,2,89 +33342049,Hell's Kitchen Cuteness!!,27624437,Peggy,Manhattan,Hell's Kitchen,40.76581,-73.98745,Entire home/apt,208,10,1,2019-05-21,0.61,1,170 +33342415,#Private office bedroom PC WiFi Print Scan,224850313,Roman,Brooklyn,Sheepshead Bay,40.58692,-73.94235,Private room,79,30,0,,,2,216 +33342461,Charming Studio,16083192,Alexander,Manhattan,Upper West Side,40.77907,-73.98684,Entire home/apt,208,3,0,,,1,150 +33342901,Beautiful room in spacious Ft. Greene split level,8993896,Julie,Brooklyn,Fort Greene,40.68887,-73.97021,Private room,72,1,8,2019-06-23,3.93,2,0 +33343579,Gorgeous modern style room near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77886,-73.95139,Private room,90,7,1,2019-05-25,0.67,6,0 +33344728,"Don't miss this BRIGHT, SUNNY getaway in Queens",33151563,Regine,Queens,Flushing,40.76353,-73.82381,Entire home/apt,70,2,1,2019-04-22,0.38,2,0 +33344785,Modern Brand New 3 Bedroom/2 Baths In Hip Brooklyn,147983579,Chy,Brooklyn,Bedford-Stuyvesant,40.68901,-73.94031,Entire home/apt,220,4,6,2019-06-19,2.90,2,230 +33346434,Times Square entire apartment Heart of Big apple!!,177396569,Yanina,Manhattan,Hell's Kitchen,40.76207,-73.99098,Entire home/apt,200,4,3,2019-06-14,1.15,3,127 +33346748,"Comfortable Stay in Historic, Brooklyn Brownstone",24761711,Aron,Brooklyn,Kensington,40.64714,-73.98107,Entire home/apt,525,5,0,,,2,42 +33346762,2BR Apartment in Brownstone Brooklyn!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.682,-73.95681,Entire home/apt,140,2,4,2019-06-14,1.58,3,4 +33347084,Studio in Brooklyn,75760509,Mohamed,Brooklyn,Gravesend,40.60245,-73.9814,Entire home/apt,80,2,3,2019-05-28,1.03,1,16 +33347638,"The Crescent. Newly renovated, 5 mins from JFK",5708402,Gannell,Brooklyn,East New York,40.66706,-73.86781,Entire home/apt,95,2,0,,,1,149 +33348368,Brooklyn 1BR Full Apartment Great Location,209553776,Jonah,Brooklyn,Crown Heights,40.67023,-73.9567,Entire home/apt,65,2,6,2019-06-17,1.94,1,4 +33348709,Lucio's Room #3 a unos minutos del JFK y LGA,214738765,Lucio,Queens,Richmond Hill,40.69668,-73.83138,Private room,75,1,31,2019-07-07,9.21,3,89 +33348833,Cozy haven in the Upper East Side.,117792931,Stella,Manhattan,Upper East Side,40.78075,-73.95108,Entire home/apt,125,4,12,2019-06-22,3.96,1,0 +33348910,Spacious bright bedroom w/4 windows,215556105,Kay,Queens,Flushing,40.76699,-73.81636,Private room,75,1,10,2019-07-06,3.13,3,89 +33358823,Newly renovated shared room in great neighborhood,251296793,Alex,Brooklyn,Bushwick,40.70087,-73.93904,Shared room,35,30,0,,,4,0 +33359386,Shared room on a boarder of Williamsburg!!!,251296793,Alex,Brooklyn,Bushwick,40.70115,-73.93931,Shared room,35,30,0,,,4,0 +33359522,Spacious Room with Balcony,14810989,Maria,Queens,Woodside,40.74402,-73.89698,Private room,55,5,8,2019-05-28,2.86,1,162 +33360408,Executive private room with full size bed- M train,251296793,Alex,Brooklyn,Bushwick,40.69995,-73.93884,Private room,64,30,0,,,4,0 +33361338,Astória Queens Bedroom close to the Subway M R .,251166866,Marcia,Queens,Astoria,40.76027,-73.90768,Private room,60,1,6,2019-07-05,1.91,1,323 +33361844,"SOHO LOFT APARTMENT, PRIME NYC LOCATION",221213143,David,Manhattan,SoHo,40.71953,-74.00064,Entire home/apt,450,2,3,2019-06-23,1.13,9,361 +33361856,"Private Room 2 min to Train, TONS of Natural Light",244171850,Jocelyn,Queens,Ridgewood,40.70154,-73.90752,Private room,47,30,0,,,10,365 +33362018,Clean & Modern Getaway in Williamsburg,239650062,Ben,Brooklyn,Williamsburg,40.71178,-73.94257,Entire home/apt,163,7,2,2019-05-04,0.79,1,263 +33362260,Cozy Brand New Private Room - Steps from M Train,244171850,Jocelyn,Queens,Ridgewood,40.70302,-73.9063,Private room,47,30,0,,,10,365 +33362377,"Bright, Williamsburg bedroom with private balcony",4094038,Alex,Brooklyn,Williamsburg,40.71157,-73.94055,Private room,75,2,4,2019-06-04,2.11,4,0 +33362399,Charming 2 bedroom apartment in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85476,-73.93094,Private room,196,1,6,2019-06-23,3.53,5,336 +33362477,Comfy 2 bedroom apartment in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85482,-73.93137,Entire home/apt,174,1,6,2019-06-09,1.88,5,324 +33362774,NEW Spacious & Sunny 1 Bed in Vinegar Hill,251318098,Nicholas,Brooklyn,Navy Yard,40.70234,-73.97954,Entire home/apt,295,2,1,2019-04-07,0.32,1,0 +33363084,E community that is commercially (Website hidden by Airbnb) smoke,242175033,Alex,Bronx,Allerton,40.86003,-73.86584,Entire home/apt,60,1,28,2019-07-02,8.32,1,74 +33363343,Rooftop & Backyard in the Heart of Williamsburg,7230979,Seth,Brooklyn,Williamsburg,40.71867,-73.96163,Private room,100,2,1,2019-05-19,0.59,1,44 +33363401,Bushwick /Brooklyn Garden apartment,251331500,Feigy,Brooklyn,Bushwick,40.70632,-73.91876,Entire home/apt,199,1,5,2019-04-14,1.46,1,178 +33363704,Private Room in Prime Location - Newly Renovated,244171850,Jocelyn,Queens,Ridgewood,40.70103,-73.90613,Private room,47,30,0,,,10,365 +33363957,Designer Renovated Madison Avenue 1 Bedroom Apt,55782090,Chris,Manhattan,Upper East Side,40.78378,-73.95606,Entire home/apt,105,31,0,,,2,249 +33364071,Ultra Modern Sleek Sunny Private Bedroom in House,12593328,Jeromy,Brooklyn,East Flatbush,40.64627,-73.93164,Private room,50,3,3,2019-04-29,1.05,3,0 +33364906,sofa bed room with outdoor event space,250928371,Kenisha,Brooklyn,Bedford-Stuyvesant,40.69644,-73.94113,Private room,100,1,0,,,1,359 +33365489,"Sunny, Spacious West Village Two-bed/Two-bath",251350235,Chris,Manhattan,West Village,40.73753,-74.00882,Entire home/apt,595,2,7,2019-06-24,2.28,1,80 +33365859,Less is More - in West Chelsea,1842737,L,Manhattan,Chelsea,40.74477,-74.00622,Entire home/apt,185,2,5,2019-06-20,1.69,1,137 +33366167,Room in Wonderful and Secure Private House,43330303,Cristian,Bronx,Fordham,40.85394,-73.89641,Private room,35,5,3,2019-07-02,1.20,2,62 +33366815,King-size sunny bedroom by JMZ and G trains.,114461769,Ekaterina,Brooklyn,Bedford-Stuyvesant,40.69647,-73.94248,Private room,70,5,0,,,1,37 +33367026,Artist apartment in the heart of Brooklyn!,27445710,Nikolay,Brooklyn,Flatbush,40.64582,-73.96479,Entire home/apt,80,1,1,2019-03-29,0.29,1,0 +33367718,Entire Floor In Landmarked Building,706037,Alex,Brooklyn,Greenpoint,40.72988,-73.95789,Entire home/apt,210,10,0,,,1,83 +33367953,Comfy and cozy room 20 mins away from Manhattan.,219891232,Yurany,Queens,Elmhurst,40.74326,-73.88912,Private room,45,2,16,2019-06-29,5.05,1,32 +33368138,"Live Inside of a Painting in Williamsburg, BK",251368944,Miriam,Brooklyn,Williamsburg,40.71938,-73.95736,Entire home/apt,110,3,8,2019-06-18,2.79,1,0 +33368771,CHIC ASTORIA STUDIO**Near Subway**15minToCity,24201188,Monika,Queens,Astoria,40.75967,-73.91602,Entire home/apt,109,14,1,2019-06-30,1,2,52 +33368855,CHIC EAST VILLAGE LOFT STEPS TO UNION SQUARE,16155254,Lina,Manhattan,East Village,40.73063,-73.98322,Entire home/apt,180,1,5,2019-06-12,1.47,4,20 +33371988,Comfy bedroom in apt share 20 mins to City!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92843,Private room,39,30,0,,,5,145 +33372038,Spacious designer’s flat.,1499286,Andrey,Manhattan,Hell's Kitchen,40.76303,-73.99225,Entire home/apt,245,5,8,2019-06-19,3.24,2,13 +33372668,"Charming Cozy Apartment, Bushwick Brooklyn",15488551,Vanieta,Brooklyn,Williamsburg,40.7045,-73.94357,Entire home/apt,150,6,5,2019-06-23,2.17,1,40 +33373002,KEW GARDEN HILLS BEST.,251413755,Jc,Queens,Flushing,40.7384,-73.83052,Entire home/apt,132,30,0,,,1,342 +33373213,Sunny Studio Great View,69095594,Emanuel,Manhattan,East Harlem,40.78593,-73.94292,Entire home/apt,139,2,3,2019-04-11,0.89,1,74 +33373366,Full Private Studio - No Roommate Hassle,251418685,Liz,Manhattan,Midtown,40.7531,-73.96986,Entire home/apt,130,4,2,2019-04-21,0.75,1,63 +33373421,Hudson river and Central Park big room,12220,Corina E.,Manhattan,Upper West Side,40.77859,-73.98481,Private room,228,1,3,2019-06-02,0.96,3,341 +33373525,Amazing Hudson river two bedroom apartment,12220,Corina E.,Manhattan,Upper West Side,40.77757,-73.98579,Entire home/apt,236,1,4,2019-05-26,1.46,3,341 +33374241,"A home away from home, You will be at home.",203569485,Shanice,Brooklyn,Flatbush,40.63481,-73.95927,Private room,70,1,0,,,1,311 +33374582,Specious Room in Manhattan,251430918,Medena,Manhattan,Hell's Kitchen,40.76616,-73.98611,Private room,97,2,10,2019-07-06,3.85,2,77 +33375266,"Cozy private room, walking distance from LGA, RM-3",187822288,Zahir,Queens,East Elmhurst,40.77069,-73.87286,Private room,55,1,27,2019-06-24,8.44,5,171 +33375762,Nice Apartment in Brooklyn,98862249,Ayush,Brooklyn,Williamsburg,40.70429,-73.94894,Private room,150,1,0,,,1,89 +33376169,BedStuy Private Room (D6),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93038,Private room,49,2,6,2019-06-28,2.17,8,226 +33376343,BedStuy Private Room (D7),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93068,Private room,49,2,8,2019-07-02,2.93,8,250 +33377642,Modern Private Room & Bathroom - Bushwick,819759,Einstein,Brooklyn,Bushwick,40.68628,-73.90895,Private room,65,5,5,2019-06-24,1.97,1,64 +33378475,Cozy room next to the L train,104960784,Lorena,Brooklyn,Bushwick,40.68989,-73.90447,Private room,50,3,1,2019-04-08,0.33,1,0 +33379269,1 BR Luxury Apt on Metro Ave in E Williamsburg,251468079,Ken,Brooklyn,Williamsburg,40.71573,-73.93887,Entire home/apt,110,4,5,2019-06-19,2.63,1,1 +33382288,Spacious green#3,208136645,Andre,Brooklyn,East Flatbush,40.65587,-73.94187,Private room,45,3,0,,,4,332 +33386573,BedStuy Private Room (D5),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6914,-73.93046,Private room,49,2,11,2019-06-30,4.23,8,254 +33388360,Camping/Glamping in NYC!,251530232,Liz,Bronx,Pelham Gardens,40.86304,-73.84559,Entire home/apt,150,1,4,2019-06-14,2.07,1,78 +33388458,"Cozy Private Room, Walking Distance From LGA, Rm 4",187822288,Zahir,Queens,East Elmhurst,40.76946,-73.87138,Private room,55,1,24,2019-06-20,7.13,5,168 +33388510,Two-Level Garden Apartment in the Heart of Harlem,251378476,Mike,Manhattan,East Harlem,40.80622,-73.94171,Entire home/apt,195,2,10,2019-06-28,3.75,1,0 +33388629,U W S Sunny Queen size bedroom near Columbia UNI*,248314431,David,Manhattan,Upper West Side,40.79658,-73.96118,Private room,75,1,8,2019-06-14,2.64,2,75 +33389288,"Cozy Private Room, Walking Distance From LGA, Rm 5",187822288,Zahir,Queens,East Elmhurst,40.77051,-73.87344,Private room,55,1,22,2019-06-19,6.47,5,162 +33389423,In Times Square Cozy Shared Female Apt,251510391,Demir,Manhattan,Hell's Kitchen,40.76459,-73.9888,Shared room,59,1,10,2019-06-23,2.91,3,358 +33389733,"Cozy, Shared Apt in Manhattan only For Female",251510391,Demir,Manhattan,Hell's Kitchen,40.76251,-73.98871,Shared room,59,1,7,2019-05-30,2.04,3,362 +33389926,"Cozy Private Room, Walking Distance From LGA, Rm 6",187822288,Zahir,Queens,East Elmhurst,40.77102,-73.87287,Private room,55,1,42,2019-06-24,12.12,5,153 +33390413,Gorgeous Lower Manhattan studio for summer sublet,251545269,Royi,Manhattan,Financial District,40.70613,-74.01583,Entire home/apt,135,35,0,,,1,105 +33391826,West village quiet and stylish large 1 bedroom,14563618,Jessy,Manhattan,West Village,40.7366,-74.00619,Entire home/apt,248,7,0,,,1,0 +33391968,Quiet Room in 3bed apt. Near Grand Central. NYC,111807108,Nico,Manhattan,Midtown,40.74526,-73.98163,Private room,48,30,1,2019-05-30,0.75,1,0 +33393883,Charming 2BR/2BA on Upper West Side,9028198,Erin,Manhattan,Upper West Side,40.80273,-73.96386,Entire home/apt,300,1,4,2019-06-23,1.40,1,4 +33394700,Cozy kosher home for your stay in NYC,251578356,Ari,Brooklyn,Sheepshead Bay,40.60165,-73.96299,Private room,55,1,3,2019-05-12,1.15,1,0 +33396290,Manhattan XTRA space & luxury for 12. Free Parking,71276635,Joe,Manhattan,Washington Heights,40.8357,-73.94234,Entire home/apt,560,1,1,2019-04-02,0.31,5,335 +33396762,BedStuy Private Room (D8),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69182,-73.92859,Private room,52,2,9,2019-06-30,3.42,8,268 +33397385,Midtown Manhattan great location (Gramacy park),16105313,Debra,Manhattan,Midtown,40.74482,-73.98367,Entire home/apt,5100,30,1,2019-06-22,1,2,343 +33397879,Large private bedroom New York,25073781,Arnaud,Manhattan,East Harlem,40.80564,-73.94198,Private room,65,2,15,2019-07-06,5.29,2,292 +33397908,Sunny apartment on L train in Bushwick/Ridgewood,30751157,Nick,Queens,Ridgewood,40.69945,-73.90771,Private room,89,3,4,2019-06-02,1.88,1,68 +33398320,Residence Near JFK (T1F/ TB4),145727343,Janelle,Queens,Jamaica,40.68324,-73.79169,Private room,39,1,4,2019-05-12,1.45,3,157 +33398445,Charming Upper West Side Apartment,61391963,Corporate Housing,Manhattan,Upper West Side,40.78536,-73.97543,Entire home/apt,133,30,0,,,91,312 +33398529,Very comfortable QNS bed judge yourselfg,50375092,Mohamad,Staten Island,Dongan Hills,40.57857,-74.09152,Private room,65,1,9,2019-05-31,2.62,3,35 +33399180,Large Sunny 3Bedroom Apartment with Office,139712252,Charn,Brooklyn,Crown Heights,40.66652,-73.93167,Entire home/apt,150,3,6,2019-06-25,2.17,1,313 +33399665,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.70569,-74.00403,Private room,169,7,1,2019-05-14,0.53,13,365 +33399897,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.7065,-74.00503,Private room,169,7,1,2019-05-25,0.65,13,365 +33400016,A Brooklyn Launch Pad,35881969,John,Brooklyn,Williamsburg,40.70426,-73.94542,Private room,70,1,13,2019-06-24,5.13,2,76 +33400202,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70832,-74.00755,Private room,169,7,1,2019-05-17,0.57,13,358 +33400552,feel home,251625546,Eden,Brooklyn,Brownsville,40.66815,-73.92169,Private room,65,1,9,2019-06-16,2.93,2,320 +33400613,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70969,-74.00575,Private room,169,7,0,,,13,365 +33400953,Heart of NYC Full Home! 3Beds.2BR.2Bath. Kitchen.,3400827,Nicole,Manhattan,Upper West Side,40.79595,-73.97485,Entire home/apt,380,3,2,2019-04-21,0.74,1,0 +33401134,2 Bdrm Apt in Heart of Greenwich Village,29420917,Jesse,Manhattan,Greenwich Village,40.72882,-74.00089,Entire home/apt,300,2,6,2019-07-07,3.16,1,16 +33401610,"Park Slope, Brooklyn",251638751,Randy,Brooklyn,Park Slope,40.67946,-73.97497,Entire home/apt,120,1,5,2019-06-21,2.42,1,8 +33404689,LUXURY APARTMENT,251640733,Tomasz,Queens,Glendale,40.70467,-73.86108,Entire home/apt,200,10,3,2019-05-08,0.93,1,178 +33404876,New York City!! Times Square Home!!!,251564307,Lucy,Manhattan,Hell's Kitchen,40.76325,-73.98592,Entire home/apt,285,3,3,2019-06-11,1.80,1,215 +33405084,Newly renovated garden flat in historic Brooklyn,2019135,Amber,Brooklyn,Bedford-Stuyvesant,40.68114,-73.92065,Entire home/apt,175,3,4,2019-06-18,1.36,1,26 +33405611,Moxy NYC Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.711,-74.00883,Private room,169,7,4,2019-06-15,1.97,13,323 +33405642,"干净卫生的环境房,欢迎订房",236355800,彼特,Queens,Forest Hills,40.72755,-73.85028,Private room,60,2,2,2019-04-27,0.77,1,0 +33405850,Private 1st Floor with all amenities. Not shared,220125576,Yogi,Queens,Ozone Park,40.68042,-73.85515,Entire home/apt,70,3,1,2019-04-01,0.30,3,53 +33406037,Aloft Manhattan Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.71086,-74.00746,Private room,169,7,2,2019-05-24,0.95,13,358 +33406188,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70712,-74.00609,Private room,169,7,2,2019-05-19,0.81,13,344 +33406274,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70842,-74.00519,Private room,169,7,1,2019-06-09,1,13,358 +33406321,Cozy Williamsburg Bedroom Available,25604908,Nathalie,Brooklyn,Williamsburg,40.71606,-73.94093,Private room,70,7,0,,,1,13 +33406391,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70922,-74.00571,Private room,169,7,0,,,13,365 +33406453,AC Hotel New York Downtown-7 Nights Minimum,5144567,Yun,Manhattan,Financial District,40.70599,-74.00503,Private room,169,7,1,2019-06-12,1,13,365 +33406864,Manhattan Luxury Private Bedroom!!!,224317184,Luke,Manhattan,Inwood,40.86259,-73.92728,Private room,90,3,2,2019-06-15,0.97,8,282 +33407038,Manhattan Luxury Private Bedroom!!,224317184,Luke,Manhattan,Inwood,40.86214,-73.92708,Private room,90,3,1,2019-06-04,0.86,8,252 +33407108,Manhattan Luxury Private Bedroom,224317184,Luke,Manhattan,Inwood,40.86256,-73.92887,Private room,90,3,1,2019-05-20,0.60,8,258 +33407244,Manhattan Luxury Private Bedroom!,224317184,Luke,Manhattan,Inwood,40.86364,-73.92835,Private room,90,3,4,2019-06-01,1.85,8,237 +33412533,Bronx Beauty,251704655,Hamza,Bronx,Port Morris,40.8027,-73.91563,Entire home/apt,109,2,9,2019-07-02,3.42,3,50 +33416167,"Bright, cozy getaway in the center of all..",105632711,Chris,Manhattan,Hell's Kitchen,40.76088,-73.99081,Entire home/apt,144,1,25,2019-07-05,7.98,1,12 +33416246,Extra Large Midtown East 1 Bedroom Elevator,61391963,Corporate Housing,Manhattan,Midtown,40.75577,-73.96727,Entire home/apt,142,30,0,,,91,310 +33417913,Private Room in the heart of financial district,21894419,Alba,Manhattan,Financial District,40.70956,-74.00713,Private room,250,1,0,,,2,292 +33418580,Lavish Private Room with own Bathroom/Williamsburg,251296793,Alex,Brooklyn,Bushwick,40.70103,-73.93979,Private room,80,30,1,2019-05-05,0.46,4,364 +33418931,BedStuy Private Room (D3),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6918,-73.93028,Private room,58,2,14,2019-07-04,5.19,8,261 +33419182,Great Room In Bed-stuy! J TRAIN,4669488,James,Brooklyn,Bedford-Stuyvesant,40.69103,-73.92719,Private room,50,3,1,2019-04-18,0.36,2,127 +33419280,Beautiful and Modern 2 Bed- 20 Min To Manhattan,240217000,Toni,Brooklyn,Bedford-Stuyvesant,40.68523,-73.9384,Entire home/apt,89,1,2,2019-06-24,0.92,1,194 +33420907,Modern Loft Like Spacious Studio - northern Harlem,136028350,James,Manhattan,Harlem,40.82868,-73.94678,Entire home/apt,159,1,5,2019-05-09,1.72,2,44 +33421406,X-Large Private room in newly renovated apartment,10149317,Lana,Queens,Kew Gardens,40.71134,-73.8279,Private room,60,3,11,2019-07-01,4.34,5,318 +33422134,Sunny/Bright apartment / top floor East Harlem,9625116,Jessica,Manhattan,East Harlem,40.79889,-73.9393,Entire home/apt,160,90,0,,,1,140 +33422875,"Bright, Modern, Luxurious 2BDR in Williamsburg",8877881,David,Brooklyn,Williamsburg,40.71105,-73.96748,Entire home/apt,499,4,0,,,1,0 +33422954,Spacious Studio,251781156,Trinize,Bronx,Tremont,40.84581,-73.8889,Shared room,25,2,5,2019-07-01,1.60,1,146 +33423101,Bedroom with Empire State view,51419167,Navin,Manhattan,Murray Hill,40.74636,-73.97561,Private room,120,1,5,2019-06-05,3.33,1,55 +33423250,"Location, Location, Location Close to Central Park",117536647,Victor,Manhattan,East Harlem,40.80022,-73.94185,Entire home/apt,124,1,13,2019-06-26,5.06,1,86 +33423849,Private Room with Private Bathroom Newly Renovated,10149317,Lana,Queens,Kew Gardens,40.71042,-73.82912,Private room,70,5,6,2019-06-18,2.54,5,308 +33424312,Comfortable and spacious bedroom suite in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92898,Private room,70,4,0,,,3,12 +33424723,Your own Loft like Studio Apartment sunny near all,136028350,James,Manhattan,Harlem,40.82775,-73.94667,Entire home/apt,127,1,8,2019-06-22,2.79,2,13 +33427025,Industrial bedroom 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68921,-73.95424,Private room,69,2,6,2019-07-02,4.62,4,279 +33427418,Cozy modern room in Bushwick,178676648,Tyler,Brooklyn,Bushwick,40.68355,-73.90701,Private room,150,1,1,2019-04-22,0.38,1,88 +33427580,Sun Lit Brooklyn 2 Bedroom Apt w Roof Views,194856554,Sebastian,Brooklyn,Williamsburg,40.72069,-73.95829,Entire home/apt,295,2,9,2019-06-02,2.90,1,3 +33427855,Sustainable event space and rooftop for photoshoot,148108,Fatima,Manhattan,Lower East Side,40.72121,-73.9909,Entire home/apt,800,1,1,2019-05-19,0.59,2,364 +33428005,"Cozy shared place in Midtown, close to everything",251817021,Lincoln,Manhattan,Hell's Kitchen,40.76632,-73.98597,Shared room,95,1,8,2019-06-06,2.38,5,23 +33428068,Central Location: Excellent travelers bed,247189581,Helena,Brooklyn,Fort Greene,40.68528,-73.97285,Shared room,32,2,6,2019-06-06,1.78,5,31 +33428109,Spacious bedroom in the heart of the West Village,23020619,Lorenzo,Manhattan,West Village,40.73587,-74.0043,Private room,70,2,3,2019-04-28,1.22,2,128 +33428552,Suite Houston - Free Street Parking & WIFI,219738858,Joe,Manhattan,Lower East Side,40.7204,-73.98371,Entire home/apt,180,30,5,2019-05-08,1.76,5,193 +33428571,Beautiful sunny bedroom in central Williamsburg,6080376,Leah,Brooklyn,Williamsburg,40.71322,-73.94655,Private room,74,1,18,2019-07-01,5.40,1,49 +33428580,Sunny Cozy Economic Garden Bedroom 4GR,17555570,Yan,Brooklyn,Crown Heights,40.66889,-73.92376,Private room,49,1,23,2019-06-27,7.04,12,48 +33429269,Big Room space in Harlem,22222260,Simone,Manhattan,Harlem,40.81824,-73.93832,Private room,81,4,4,2019-05-24,1.30,2,291 +33429437,"Luxury, Location, and Convenience - **RARE FIND**",230831241,Monica,Manhattan,Hell's Kitchen,40.76395,-73.99075,Entire home/apt,898,2,5,2019-06-21,3.13,1,294 +33429492,FEMALE SHARED ROOM 3 Single Beds Near Subway-1,172369331,Abby,Brooklyn,Coney Island,40.57776,-73.98313,Shared room,25,3,2,2019-06-11,1.05,10,0 +33429651,Nice and comfortable place for short stay.,251839479,Dieudonne,Bronx,Longwood,40.8279,-73.90516,Private room,100,2,2,2019-06-30,2,2,345 +33429773,Beautiful 600 ft studio in Soho,160754766,Jonah,Manhattan,SoHo,40.72506,-74.00876,Entire home/apt,230,3,2,2019-05-26,0.82,1,0 +33430450,"HOTEL ROOM LIKE “L” +AFFORDABLE PRICE",59156312,Viviana,Queens,Woodhaven,40.68727,-73.86413,Private room,59,3,4,2019-05-31,1.88,9,361 +33430500,Cute room close to M train,66959637,Carmen,Queens,Ridgewood,40.70557,-73.90713,Private room,55,7,0,,,2,290 +33430829,Artists Corner,21749637,Tucker,Brooklyn,Bedford-Stuyvesant,40.68599,-73.93005,Entire home/apt,100,1,5,2019-07-05,1.58,1,0 +33430847,Beautiful Cozy Shared Apt in Manhattan,251852817,Owen,Manhattan,East Harlem,40.80093,-73.94322,Shared room,45,1,19,2019-06-29,5.64,7,90 +33430867,Warm&clean private room near Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76389,-73.98872,Private room,138,1,8,2019-06-09,2.79,5,95 +33431246,Jungle room in hip Bushwick,215891351,Pablo,Brooklyn,Bushwick,40.70065,-73.92378,Private room,60,2,13,2019-06-18,3.94,2,48 +33431289,Rochester's Place Comfy Cozy Crown Heights NYC,251859047,Errol,Brooklyn,Crown Heights,40.67588,-73.92405,Private room,85,1,9,2019-06-02,3.10,3,125 +33431582,Comfortable clean overnight bed by Central Park,251852817,Owen,Manhattan,East Harlem,40.79922,-73.94187,Shared room,49,1,22,2019-06-30,6.53,7,83 +33431687,Charming Garden Apt Close to Central Park,25282730,Zac,Manhattan,Harlem,40.80653,-73.94942,Entire home/apt,160,1,15,2019-06-30,5.23,1,9 +33431709,Shared apartment by the Central Park,251852817,Owen,Manhattan,East Harlem,40.80073,-73.94328,Shared room,45,1,17,2019-06-30,5.10,7,72 +33431823,a brand new cozy shared apartment by Central Park,251852817,Owen,Manhattan,East Harlem,40.79949,-73.94265,Shared room,60,1,8,2019-06-16,2.40,7,90 +33431909,Beautiful cozy shared apartment by Central Park,251852817,Owen,Manhattan,East Harlem,40.79966,-73.94191,Shared room,55,1,13,2019-06-30,3.86,7,89 +33431978,Overnight a brand new apartment in upper east side,251852817,Owen,Manhattan,East Harlem,40.79885,-73.94304,Shared room,45,1,14,2019-06-25,4.16,7,83 +33431994,Entire Cozy 3 Bedroom in private home,52577963,Mark,Queens,Woodhaven,40.69459,-73.85081,Entire home/apt,150,5,0,,,6,121 +33433134,Luxury 1 Bedroom Loft,149080740,Dakota,Brooklyn,Bedford-Stuyvesant,40.69911,-73.94162,Private room,69,10,1,2019-03-30,0.29,1,59 +33433393,Bright nordic room in pastel colors,22028840,Miki,Manhattan,Washington Heights,40.86069,-73.92513,Private room,59,4,2,2019-05-22,0.67,2,103 +33434235,Comfort room close to Columbia University,251865256,Warren,Manhattan,Morningside Heights,40.80485,-73.96319,Private room,87,1,8,2019-05-19,2.50,1,365 +33439471,Sweet Single Room,251625546,Eden,Brooklyn,Crown Heights,40.66949,-73.92172,Private room,65,1,6,2019-05-29,1.91,2,323 +33441771,BEST location in Williamsburg,251932107,Nicola,Brooklyn,Williamsburg,40.71623,-73.9601,Private room,85,2,5,2019-06-10,2.38,1,86 +33444260,1 BR Gem w/ Private Patio in East Village,12913455,Fikile,Manhattan,East Village,40.72656,-73.98758,Entire home/apt,300,2,16,2019-06-30,5.78,1,52 +33444493,★Single Room in Backpackers Accommodation★,56060787,International,Brooklyn,Williamsburg,40.70908,-73.95663,Private room,55,1,14,2019-06-23,4.47,1,295 +33444872,Huge shared space East Village Female guests only,173386569,J,Manhattan,Gramercy,40.73392,-73.98085,Shared room,70,3,3,2019-06-23,1.38,2,0 +33445970,Cozy place located in the Heart of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76691,-73.98726,Shared room,95,1,3,2019-05-30,1.96,5,23 +33446054,Cozy&Charming NYC style apt in the heart of SoHo,251966476,Alex,Manhattan,Nolita,40.72394,-73.99583,Entire home/apt,240,1,19,2019-07-04,6.13,1,121 +33446295,Furnished Bedroom in House w/ LAUNDRY & GARDEN,251826717,Ryan,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9432,Private room,50,3,6,2019-06-29,2.77,1,0 +33446373,large room in a 4 bedroom (2bath) apartment,251968645,Diana,Brooklyn,Greenpoint,40.73354,-73.95719,Private room,65,1,1,2019-04-14,0.35,1,0 +33446557,"Mi casa, tu casa!",203932958,Lina,Manhattan,Lower East Side,40.72044,-73.98335,Entire home/apt,240,3,10,2019-06-24,3.23,2,8 +33446581,Private Room by Bushwick with Piano & Guitar,251969263,Eunice,Queens,Ridgewood,40.70008,-73.89596,Private room,47,1,4,2019-06-23,1.38,2,28 +33447225,Relaxing abode in LES,203932958,Lina,Manhattan,Lower East Side,40.71922,-73.98514,Private room,120,1,3,2019-04-16,0.89,2,11 +33448379,Comfortable 3 Bedroom Loft Apartment,251985344,Marilyn,Brooklyn,Bushwick,40.70041,-73.92483,Private room,54,3,0,,,1,99 +33448532,Tribeca Apt w/ Rooftop Views,251986333,Juliet,Manhattan,Civic Center,40.71626,-74.00257,Private room,200,4,5,2019-06-06,1.97,1,327 +33448577,Midtown 2 BED Large Kitchen Free Breakfast Great,214347105,Roman,Manhattan,Midtown,40.75277,-73.96594,Entire home/apt,419,4,1,2019-05-18,0.58,8,218 +33448765,Cozy Place Right Next to Central Park,251817021,Lincoln,Manhattan,Hell's Kitchen,40.7667,-73.98692,Shared room,95,1,2,2019-06-20,1.30,5,23 +33448834,Sun-filled Private BR in Luxury Chinatown Apt,118375653,Charlene,Manhattan,Two Bridges,40.71099,-73.99442,Private room,150,3,3,2019-06-25,2.43,3,4 +33449304,Treat Your self,84562269,Finely,Queens,Queens Village,40.71933,-73.7536,Private room,55,1,1,2019-04-11,0.34,2,0 +33449485,BR in Luxe Chinatown Apt w/ Private Balcony & Bath,118375653,Charlene,Manhattan,Two Bridges,40.71239,-73.99461,Private room,200,3,0,,,3,0 +33449518,21min to Manhattan & Safe Neighborhood&PrivateRoom,238989521,Takatomo,Queens,Sunnyside,40.73872,-73.92678,Private room,35,30,0,,,1,1 +33450079,Quiet Apartment with Private Backyard,68296703,Chris,Brooklyn,Crown Heights,40.67257,-73.94011,Entire home/apt,78,3,3,2019-06-21,1.18,1,17 +33451336,Artist Heaven Garden Loft,132099860,Mark,Manhattan,East Village,40.72283,-73.98382,Entire home/apt,450,5,0,,,1,310 +33451456,Stylish Brownstone with Stainless Steel Kitchen,3073952,Christof,Brooklyn,Bedford-Stuyvesant,40.68035,-73.91035,Entire home/apt,167,1,8,2019-06-25,4.62,2,80 +33451472,Large private bedroom 15 min from Manhattan,149312408,Kateryna And Tim,Queens,Astoria,40.76896,-73.92404,Private room,65,1,23,2019-07-02,7.26,2,334 +33451863,Luxe Modern Private Townhome,99895085,Joseph,Brooklyn,Carroll Gardens,40.68374,-73.99368,Private room,88,1,11,2019-06-23,3.47,1,85 +33451888,"Super comfy Bushwick getaway, 4 min. from the M!",50737287,D'Arcy,Brooklyn,Bushwick,40.69814,-73.9219,Private room,40,2,1,2019-04-30,0.43,1,0 +33452409,Home Sweet Home,92411,Karen,Manhattan,Harlem,40.82857,-73.95161,Entire home/apt,175,30,0,,,1,5 +33453326,Unique Private Suite,20182359,Edgar,Manhattan,Harlem,40.81141,-73.94051,Private room,135,3,7,2019-07-03,4.04,1,365 +33455253,Cozy and Sunny Bedroom in Private Apartment,71878492,Raymel,Brooklyn,Williamsburg,40.71437,-73.94133,Private room,70,5,3,2019-06-26,1.58,1,66 +33455322,Private Bedroom in Original Bed-Stuy Apartment,6410979,Alice,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94535,Private room,109,2,1,2019-04-15,0.35,2,0 +33455365,Cozy shared room in the middle of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76838,-73.98723,Shared room,95,1,4,2019-05-30,1.20,5,21 +33455408,Cozy Place in the Middle of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76769,-73.98681,Shared room,95,1,4,2019-06-08,2.22,5,19 +33456259,Beautiful upper west side apt share,8112314,Mena,Manhattan,Upper West Side,40.78399,-73.9733,Private room,65,1,4,2019-06-09,2.03,2,364 +33457366,Room available in BedStuy condo w/ private yard,35528708,Cindy,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94787,Private room,50,1,1,2019-06-02,0.81,2,0 +33457731,Room available in BedStuy condo w/ private yard,35528708,Cindy,Brooklyn,Bedford-Stuyvesant,40.69615,-73.9474,Private room,56,1,4,2019-06-08,1.20,2,0 +33460551,Sun Drenched Williamsburg Gem,32942122,Jessica,Brooklyn,Williamsburg,40.70921,-73.9426,Entire home/apt,125,2,1,2019-06-16,1,1,22 +33464005,Large Modern Studio in East Village,252118553,Matthew,Manhattan,East Village,40.72191,-73.97869,Entire home/apt,160,2,4,2019-06-15,1.54,1,33 +33467176,"Le Chateau Boutique in Le Brooklyn , NY ! Voila !",148725429,Javier,Brooklyn,Bushwick,40.68942,-73.91714,Entire home/apt,99,2,17,2019-07-01,6.07,2,300 +33467309,Williamsburg Charm,172422032,Alexandria,Brooklyn,Williamsburg,40.7136,-73.96221,Private room,120,7,0,,,1,235 +33467371,"Private, Beautiful Upper Eastside Townhome",683230,Thomas,Manhattan,Upper East Side,40.76725,-73.95864,Private room,950,3,11,2019-06-30,4.23,3,251 +33468225,Spacious Two-Bedroom Apartment with Private Garden,5421086,Steven,Manhattan,Harlem,40.82254,-73.9501,Entire home/apt,110,30,0,,,1,102 +33468702,Eclectic Space for Chill and Creative Energies,75999185,Fana,Brooklyn,Bushwick,40.6916,-73.90713,Private room,45,1,6,2019-07-02,5.00,1,337 +33468884,Duplex Townhouse in Heart of Williamsburg,252163238,Kelly,Brooklyn,Williamsburg,40.71912,-73.94296,Entire home/apt,327,2,7,2019-06-16,3.00,1,49 +33469440,Apartment minutes from manhattan,252168489,Tianna,Queens,Jamaica Hills,40.71022,-73.79665,Entire home/apt,110,2,8,2019-06-29,3.16,1,81 +33469797,"NYC SWEET OASIS (POOL, PATIO,& OUTSIDE SPACE)",252171508,Lisa,Queens,Jamaica,40.67282,-73.77793,Entire home/apt,190,1,16,2019-07-04,10.00,1,132 +33470295,Convenient and comfy,36800675,Mandisa,Queens,Jamaica,40.68462,-73.77582,Entire home/apt,120,3,9,2019-06-30,3.14,1,44 +33470580,Top Floor Two Bedroom at Top of Manhattan,19931875,Luz & Ruben,Manhattan,Inwood,40.86774,-73.92401,Entire home/apt,99,5,3,2019-05-22,1.30,3,271 +33471012,Designer Loft,252181650,Daniel & Neena,Manhattan,Chinatown,40.71543,-73.99323,Entire home/apt,350,1,18,2019-06-30,5.74,1,82 +33471805,Comfortable Room with Private Bath - 15 min to JFK,252191305,Marion,Queens,Cambria Heights,40.6909,-73.73193,Private room,50,1,34,2019-06-30,11.21,1,61 +33472083,Private bedroom on historic street in Manhattan,44969970,Jaye,Manhattan,Chinatown,40.71404,-73.99085,Private room,80,1,2,2019-06-22,1.30,1,172 +33472626,Top room with a view Quiet Easy A-train downtown,19931875,Luz & Ruben,Manhattan,Inwood,40.86804,-73.92429,Private room,57,7,1,2019-07-01,1,3,225 +33472677,Spacious room in Brooklyn. Only girls please,57158173,Katerina,Brooklyn,Midwood,40.61186,-73.96955,Private room,38,3,1,2019-06-26,1,1,0 +33472719,Quiet & Cozy Central Park Charmer,10421091,Melanie,Manhattan,Upper West Side,40.78232,-73.97575,Entire home/apt,140,30,1,2019-04-28,0.42,1,74 +33473125,#5 STUDIO one block to train station,231138233,Filiz,Manhattan,East Harlem,40.78974,-73.94933,Entire home/apt,165,1,17,2019-06-18,5.93,5,83 +33473567,Hamilton Heights Full Floor Garden Apt,33388853,Christine,Manhattan,Harlem,40.8309,-73.94308,Entire home/apt,200,60,0,,,1,219 +33473664,The Park Townhouse - Jewel of Fort Greene,1413658,Nyneve,Brooklyn,Fort Greene,40.68991,-73.97352,Entire home/apt,750,4,13,2019-07-07,4.06,1,179 +33473671,"Clean, cool and modern downtown apartment",44129118,Anthony,Manhattan,Financial District,40.70997,-74.00816,Private room,150,4,0,,,2,0 +33473838,"#6 Cozy Studio, one block from train station",231138233,Filiz,Manhattan,East Harlem,40.79,-73.94964,Entire home/apt,165,1,16,2019-06-30,6.00,5,56 +33474092,"1 Bedroom, Pvt Living Space & Bath- Till May 30th",13206448,Ruchi,Manhattan,Upper West Side,40.79908,-73.96465,Private room,50,7,2,2019-05-24,0.60,1,283 +33474649,"private room for women, central location in NYC",175152790,Stella,Manhattan,Midtown,40.74567,-73.98478,Private room,65,1,14,2019-06-13,4.72,1,0 +33474952,Spacious private bedroom in East Village / StMarks,95892016,Leonora,Manhattan,East Village,40.72503,-73.98466,Private room,125,1,3,2019-06-15,0.95,5,318 +33475698,Germania's Deluxe Palace,252019224,Gladys Germania,Queens,Jamaica Estates,40.71668,-73.80588,Entire home/apt,250,1,13,2019-06-30,4.15,1,359 +33475840,Highclass clean and calm,247171817,Habiba,Queens,Sunnyside,40.74685,-73.91586,Private room,50,1,1,2019-04-07,0.32,1,66 +33477284,Spacious NEW studio in Brooklyn near NYC subway!,72855892,Melvis,Brooklyn,Bedford-Stuyvesant,40.68171,-73.92858,Entire home/apt,115,1,19,2019-06-30,6.55,1,74 +33483299,Full bedroom with private access and courtyard,7050972,Paloma,Brooklyn,Williamsburg,40.70658,-73.9463,Private room,70,2,0,,,1,0 +33485088,Sunny BedStuy hideaway near clubs + 30 min to City,17407539,Mari,Brooklyn,Bedford-Stuyvesant,40.68782,-73.94327,Private room,40,14,1,2019-04-07,0.32,1,35 +33485823,Room in te heart of manhattan - prime location!,95892016,Leonora,Manhattan,East Village,40.72713,-73.98402,Private room,80,1,4,2019-06-15,1.26,5,318 +33485978,"New to Market, Extended Stay Studio in Park Slope",26989131,Cathy,Brooklyn,Gowanus,40.66949,-73.99112,Entire home/apt,85,30,2,2019-06-23,1.07,1,100 +33486731,"Sunny, spacious Apt. near Prospect Park",21877010,Clara,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.95926,Entire home/apt,120,4,3,2019-05-26,1.15,1,0 +33488037,"Beautiful, eclectic large Soho-Tribeca 2-Bed Apt",4977373,Jesse,Manhattan,Tribeca,40.72078,-74.00726,Entire home/apt,300,4,5,2019-07-01,2.88,1,20 +33488044,Two amazing bedrooms in the heart of East Village,95892016,Leonora,Manhattan,East Village,40.7272,-73.98288,Private room,260,1,0,,,5,317 +33488188,Private Room in Light-Filled Loft,2093557,Sarah,Brooklyn,Bushwick,40.70149,-73.92752,Private room,80,1,4,2019-06-07,1.79,2,22 +33489978,Huge private apartment in Manhattan,252356839,Leo,Manhattan,Harlem,40.82802,-73.94481,Entire home/apt,74,3,1,2019-04-07,0.32,2,0 +33490271,Spacious private bedroom in Washington Heights,186621582,Artem,Manhattan,Washington Heights,40.85513,-73.93305,Private room,60,3,5,2019-06-01,1.95,1,20 +33490968,2BR High Ceiling Zen Sanctuary in Artsy Bushwick,234270791,April G,Brooklyn,Bushwick,40.69627,-73.93076,Private room,100,5,2,2019-05-27,0.70,3,94 +33491210,Clean and comfortable private room in NYC,27947449,Teya,Bronx,Parkchester,40.83758,-73.85804,Private room,47,1,4,2019-07-06,1.90,2,167 +33491297,Entire Apartment in Park Slope Brownstone,3208908,Julie,Brooklyn,Park Slope,40.68068,-73.97938,Entire home/apt,245,3,3,2019-06-12,1.29,1,35 +33491517,Spacious 1-bedroom apartment in Pelham Parkway,249412015,Jamie,Bronx,Bronxdale,40.85464,-73.8672,Entire home/apt,75,1,0,,,1,0 +33491707,Private Garden Apartment in Park Slope Brownstone,252372862,Keith & Masa,Brooklyn,Park Slope,40.66867,-73.98017,Entire home/apt,135,3,0,,,1,23 +33492175,The beautiful room with your own bathroom,175370972,Young,Queens,Flushing,40.7577,-73.83519,Private room,65,1,13,2019-06-22,4.06,1,36 +33492234,Penthouse with Manhattan views,37273247,Gary,Queens,Maspeth,40.7289,-73.89803,Entire home/apt,130,2,4,2019-06-30,1.88,1,338 +33492587,[Entire place] Comfy Apt in Prime Location,13442714,Nuan,Manhattan,SoHo,40.72207,-73.99751,Entire home/apt,173,5,2,2019-06-06,0.76,2,3 +33492744,Cozy Studio in the Heart of Spanish Harlem,19392723,Pablo,Manhattan,East Harlem,40.79463,-73.94604,Entire home/apt,100,2,2,2019-04-18,0.70,1,8 +33493038,Sunny 1-Bedroom close to Manhattan,5708673,Meike,Brooklyn,Bushwick,40.69934,-73.92947,Entire home/apt,120,4,1,2019-04-26,0.41,1,15 +33493759,The Yorkville Club House,252386106,Derrick,Manhattan,Upper East Side,40.78045,-73.94688,Private room,105,1,19,2019-07-07,6.71,1,9 +33493942,Mid Century modern room 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68913,-73.95639,Private room,72,2,6,2019-06-23,4.74,4,316 +33494085,Vintage Brooklyn Room 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68868,-73.95623,Private room,79,2,5,2019-06-28,4.17,4,351 +33494125,Cozy and quiet studio by Central Park,19300279,Shahar,Manhattan,Harlem,40.80119,-73.95749,Entire home/apt,140,11,0,,,1,0 +33494804,Special!! Near NYC up to 4+ people,246194760,Noel,Queens,East Elmhurst,40.76009,-73.88271,Private room,49,1,15,2019-06-24,5.62,4,1 +33495663,luxury apartment near wall street,121431667,Ellen,Manhattan,Financial District,40.70464,-74.0164,Entire home/apt,134,15,1,2019-06-23,1,1,2 +33496225,BEAUTIFUL CONDO IN HEART OF HELLS KITCHEN !!,107484794,Aaron,Manhattan,Hell's Kitchen,40.76468,-73.98785,Private room,160,1,22,2019-06-30,6.80,1,77 +33496293,A great amount of space for a family!,2363889,Amy,Manhattan,Lower East Side,40.71508,-73.97895,Entire home/apt,140,2,7,2019-07-01,2.88,1,27 +33496728,One bedroom apartment in Williamsburg,11740339,(Email hidden by Airbnb),Brooklyn,Williamsburg,40.7184,-73.94434,Entire home/apt,120,2,0,,,1,0 +33496995,New York at its BEST!,247940983,Rhonda,Brooklyn,Flatbush,40.65421,-73.95751,Private room,50,1,3,2019-04-12,0.94,1,358 +33497642,"Walk distance to Central Park, 10min Time Square",61940591,Raquel,Manhattan,Upper East Side,40.77289,-73.94689,Private room,120,1,14,2019-07-04,4.88,1,147 +33497845,Brooklyn Brownstone — BedStuy Garden Apartment,6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69081,-73.93025,Entire home/apt,155,2,10,2019-07-04,4.92,8,270 +33497909,"Beautiful, Comfortable Studio",252432969,Jaime,Manhattan,Midtown,40.7545,-73.97067,Entire home/apt,260,1,14,2019-06-23,4.47,1,139 +33498032,"Beautiful Private apartment, Sunset Park Brooklyn",252437123,Connie,Brooklyn,Sunset Park,40.64849,-74.00277,Entire home/apt,130,2,8,2019-06-30,2.55,1,19 +33498743,Trendy and Modern Room in Bushwick,252442970,Ronen,Brooklyn,Bushwick,40.70151,-73.92293,Private room,70,5,0,,,1,0 +33499489,Room In Manhattan Close to Everything,251430918,Medena,Manhattan,Hell's Kitchen,40.76808,-73.98625,Private room,89,2,11,2019-07-01,3.51,2,54 +33500292,Close to JFK,146275359,Modupe,Queens,Springfield Gardens,40.68831,-73.75141,Private room,42,3,10,2019-07-06,3.09,3,352 +33500813,Upper East Fun and Sunny 1B1B Very Close to Subway,252460693,Stephen,Manhattan,East Harlem,40.78499,-73.94588,Entire home/apt,159,1,15,2019-07-06,5.11,1,152 +33505047,Cozy Private Bedroom in Manhattan,163619844,James Cem,Manhattan,Harlem,40.82004,-73.94622,Private room,70,2,5,2019-06-15,1.65,1,1 +33505762,THE WHITE HOUSE BEDROOM 3,24660289,Dennis/Norma,Bronx,Port Morris,40.80074,-73.91574,Private room,50,3,2,2019-05-04,0.81,1,350 +33509538,WALK TO FREE SI FERRY FROM FURNISHED STUDIO APT,160956,Neil,Staten Island,St. George,40.64015,-74.08127,Entire home/apt,99,3,4,2019-06-28,2.31,1,326 +33510678,COZY&CHARMING ROOM - CLOSE TO MANHATTAN,239952407,Alaor,Queens,Long Island City,40.75961,-73.93366,Private room,50,5,0,,,1,0 +33511856,Large Beautiful Apartment in Peter Cooper Village,5592151,Joshua,Manhattan,Stuyvesant Town,40.73351,-73.97798,Entire home/apt,130,60,0,,,1,243 +33512307,Cozy Studio in Queens zZZ,252535164,Shahrath,Queens,Woodside,40.74239,-73.9018,Entire home/apt,99,3,9,2019-06-26,2.93,1,236 +33512766,STEINWAY..The heart of Astoria,73227284,Bidhya,Queens,Astoria,40.7577,-73.91728,Private room,60,2,6,2019-05-10,1.94,1,333 +33513077,Large Room in Brownstone Townhouse (2nd fl),20555097,Emilie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.92695,Private room,90,5,2,2019-05-11,0.76,2,71 +33513897,Coming soon: stunning Upper West Side apartment,252545388,Joseph,Manhattan,Upper West Side,40.77112,-73.98964,Entire home/apt,1000,31,0,,,1,103 +33514031,Cozy NoHo Studio Apartment,251762237,Lori,Manhattan,NoHo,40.72493,-73.99318,Entire home/apt,106,7,2,2019-05-19,0.94,1,3 +33514079,New Furnished Modern Two-Bedroom Apartment,3259045,Jessica,Queens,Astoria,40.75744,-73.91839,Entire home/apt,115,30,1,2019-05-31,0.77,1,311 +33514118,Close to city in trendy Queens! Females only,30870512,Linda,Queens,Elmhurst,40.72688,-73.87861,Private room,38,1,6,2019-06-19,2.34,1,36 +33514962,中城西豪华客厅!,58762277,Wang,Manhattan,Hell's Kitchen,40.76695,-73.99103,Private room,69,4,0,,,1,57 +33515695,Private Room near to Manhattan,29470566,Lidu,Queens,Astoria,40.76799,-73.90995,Private room,65,1,6,2019-04-29,1.96,1,31 +33515760,Cozy vibes next to Prospect Park/Botanical Gardens,855437,Ronni,Brooklyn,Prospect-Lefferts Gardens,40.66277,-73.9574,Private room,75,2,7,2019-06-19,3.23,1,111 +33516105,Bright and Spacious East Village Apartment,7130003,Ranita,Manhattan,East Village,40.72344,-73.98479,Entire home/apt,250,30,0,,,2,221 +33516720,Chic modern 1 bedroom apartment in Astor Place,23022462,Javier,Manhattan,East Village,40.7299,-73.98979,Entire home/apt,275,3,2,2019-06-12,0.70,1,123 +33519749,Cozy And Stylish Modern Home,252590512,Yien,Staten Island,New Brighton,40.64098,-74.0935,Entire home/apt,249,2,8,2019-06-22,2.58,1,241 +33519952,"Class, Comfort, Convenience In The Heart of NYC",229489983,Devin,Manhattan,Hell's Kitchen,40.76485,-73.99229,Entire home/apt,799,2,5,2019-06-02,2.38,1,247 +33520202,"Spacious apt, New building in trendy Bushwick!",47343944,Tamara,Brooklyn,Bushwick,40.7042,-73.92719,Entire home/apt,147,2,0,,,1,0 +33520254,Sunny 1 Bedroom Apt in Bed-Stuy Brownstone,42946242,Kirby,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95054,Entire home/apt,110,14,0,,,1,0 +33520773,Crown Heights Studio,190094547,Marion,Brooklyn,Crown Heights,40.67144,-73.92496,Entire home/apt,90,3,3,2019-05-06,1.18,1,7 +33521183,"Massive, Incredible Brand New East Village Loft",238779678,Dustin,Manhattan,East Village,40.72735,-73.98917,Private room,62,30,0,,,9,325 +33521985,"Kings palace close to jfk, Belmont track & casino",160940380,Adeola,Queens,St. Albans,40.69967,-73.75026,Entire home/apt,600,2,2,2019-06-23,1.58,3,332 +33523404,Bedroom in Soho for working professional,29952888,Noah,Manhattan,SoHo,40.72029,-74.00033,Private room,67,30,0,,,1,50 +33523503,Comfortable master room in Brooklyn close to train,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91256,Private room,58,2,6,2019-06-01,2.47,5,213 +33523616,Nightly or long sublet. (12x12 room in 2BR),21210898,Fagan,Brooklyn,Bushwick,40.70723,-73.92066,Private room,120,2,0,,,2,0 +33523818,STOP n SLEEP Large - LGA LaGuardia Airport and JFK,246194760,Noel,Queens,East Elmhurst,40.75985,-73.88294,Private room,39,1,8,2019-05-10,2.58,4,210 +33524882,Chic+Charming Soho Loft Apartment [True 1BR],38174433,Sophia,Manhattan,SoHo,40.72347,-74.00463,Entire home/apt,235,1,3,2019-06-04,1.25,1,34 +33524910,Manhattan Treasure (Harlem Find),89349779,Dee,Manhattan,Harlem,40.8026,-73.95829,Entire home/apt,182,2,5,2019-07-06,5,1,19 +33524941,The New Harlemites,252607014,Eric,Manhattan,Harlem,40.81325,-73.9398,Entire home/apt,150,3,6,2019-05-21,2.31,1,25 +33526039,One bedroom apartment in mid-town,20229932,Francesco,Manhattan,Murray Hill,40.74535,-73.9764,Entire home/apt,120,2,6,2019-06-30,1.94,1,0 +33526710,"1 Bedroom studio 15Mins from JFK,30 mins by carLGA",252628456,Lisa,Brooklyn,East New York,40.66155,-73.88916,Entire home/apt,100,2,4,2019-07-05,4,1,96 +33526801,new years eve week,239770902,Chandler,Manhattan,Midtown,40.75383,-73.97207,Private room,350,5,0,,,1,353 +33527195,Entire Luxurious Condominium Near JFK Airport,110308993,Giovanina,Queens,Jamaica,40.67138,-73.77238,Entire home/apt,90,1,7,2019-05-28,2.66,1,0 +33527468,Sonder | Stock Exchange | Pristine Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70604,-74.01021,Entire home/apt,194,2,3,2019-06-03,1.27,327,303 +33527634,Best of Brooklyn: Prospect Park,86325,Josephine,Brooklyn,Prospect Heights,40.67323,-73.96863,Entire home/apt,145,3,1,2019-06-04,0.86,1,45 +33527778,Sonder | Stock Exchange | Stunning 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70763,-74.0105,Entire home/apt,470,2,5,2019-06-02,1.88,327,272 +33527998,Sonder | Stock Exchange | Relaxed 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70747,-74.01226,Entire home/apt,247,2,9,2019-06-14,3.42,327,272 +33528078,Sunny Bedroom in Ridgewood/Bushwick,38194603,Adham,Queens,Ridgewood,40.70622,-73.90641,Private room,50,1,13,2019-06-24,4.53,2,5 +33528090,Sonder | 21 Chelsea | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.7425,-73.99443,Entire home/apt,260,29,0,,,327,365 +33528101,Sunlit Bedroom with Private Terrace - Williamsburg,19643468,Kelvin,Brooklyn,Williamsburg,40.70652,-73.94541,Private room,80,1,2,2019-05-19,0.65,1,0 +33528376,Spacious Williamsburg Duplex w/ Private Patio,243489234,Chelsea,Brooklyn,Williamsburg,40.70855,-73.94992,Entire home/apt,210,2,0,,,1,3 +33528511,bellissima stanza privata in east harlem NYC,7594732,Lele,Manhattan,East Harlem,40.79433,-73.94414,Private room,70,2,0,,,1,103 +33528562,"Private, warm & inviting contemporary space.",252641467,Antoinette,Bronx,Wakefield,40.88491,-73.85484,Private room,33,1,0,,,1,116 +33529491,Private bedroom in the heart of east village,95892016,Leonora,Manhattan,East Village,40.72705,-73.9846,Private room,80,1,1,2019-04-04,0.31,5,15 +33529536,Large Private room minutes to Times Square,123810965,Carlton,Manhattan,Harlem,40.81089,-73.94309,Private room,62,1,7,2019-07-05,2.21,2,172 +33529691,Comfy & Cheerful Oasis in Vibrant Neighborhood,94531229,Rocco,Brooklyn,Williamsburg,40.7198,-73.94125,Entire home/apt,171,2,6,2019-06-17,3.00,1,48 +33529806,Entire studio with separate kitchen & dining room!,105270072,Ulviyya,Brooklyn,Sheepshead Bay,40.59516,-73.96208,Entire home/apt,125,1,0,,,1,0 +33530151,"West Village Town House +With Private Backyard",23532686,Donald,Manhattan,West Village,40.73103,-74.00778,Entire home/apt,350,3,0,,,1,16 +33530282,LUXURY 2bedrm w/ Outdoor Patio - TimeSq/42nd & 9th,51667335,Janio,Manhattan,Hell's Kitchen,40.76022,-73.99253,Entire home/apt,395,2,11,2019-06-23,3.63,1,247 +33531011,Sunny Private bedroom in convenient location,41859649,Melissa,Brooklyn,Bushwick,40.70039,-73.92352,Private room,72,2,2,2019-05-06,0.70,1,364 +33532173,"Only for airline crew, pilots and flight attendant",104814095,Hanine,Queens,East Elmhurst,40.76078,-73.88222,Private room,70,1,1,2019-07-07,1,3,76 +33532216,BKLYN Cozy B&B,252678417,Anthony,Brooklyn,Bedford-Stuyvesant,40.69655,-73.93458,Private room,55,1,18,2019-06-22,6.00,1,0 +33532516,Urban Zen Oasis,44205809,Victoria,Brooklyn,Crown Heights,40.67401,-73.92371,Entire home/apt,225,1,8,2019-06-08,2.61,1,178 +33533498,"MASTER ROOM +Close to the JFK and LGA airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73018,-73.87172,Private room,57,1,20,2019-07-05,6.32,4,156 +33533601,Chic Blush Freesia,243489304,Jackie,Manhattan,Lower East Side,40.71629,-73.98862,Private room,99,4,15,2019-07-05,4.74,2,191 +33533803,Feel free and at home In my cozy apartment.,167949895,W. Jesse,Bronx,Kingsbridge,40.86313,-73.90183,Shared room,35,1,3,2019-04-06,0.94,1,0 +33534624,Chic Blush Shine,243489304,Jackie,Manhattan,Chinatown,40.71515,-73.99099,Private room,89,4,16,2019-07-06,5.00,2,166 +33536886,★ Private Room in great location near Times Square,228151544,Rubens,Manhattan,Hell's Kitchen,40.7637,-73.99037,Private room,135,1,12,2019-07-07,5.90,1,278 +33543641,Home away from home!! (4A),246272839,Northern Star Realty,Queens,Flushing,40.76671,-73.81935,Entire home/apt,85,1,8,2019-07-01,2.82,4,150 +33544433,Spacious one bedroom Suit! (2T),246272839,Northern Star Realty,Queens,Flushing,40.7651,-73.81749,Entire home/apt,85,1,5,2019-06-03,2.08,4,156 +33544651,Sun Lit Room in Ridgewood/Bushwick 25 mins to NYC,135280693,John,Queens,Ridgewood,40.70811,-73.91054,Private room,60,3,3,2019-06-01,1.15,2,264 +33544900,Modern Suite in Bed-Stuy,252765359,Bianca,Brooklyn,Bedford-Stuyvesant,40.67837,-73.91871,Entire home/apt,60,2,5,2019-06-30,1.53,1,0 +33546025,Cozy 2 bedroom Manhattan apartment,250269817,Toli,Manhattan,Upper East Side,40.78234,-73.9476,Entire home/apt,219,2,20,2019-06-28,6.52,1,133 +33546136,Cozy 3BR/2BA in LES - Close to Subway - Sleeps 9,224813944,Anne & Gary,Manhattan,Lower East Side,40.71917,-73.98343,Entire home/apt,442,1,12,2019-06-23,4.50,1,253 +33546854,LAVISH 3 Bedroom in Williamsburg!!,252642141,Inez,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93834,Entire home/apt,250,2,3,2019-07-07,1.50,1,117 +33547205,Sunny Astoria One-Bedroom With Stunning NYC Views,252782565,Bharat,Queens,Astoria,40.76625,-73.91946,Entire home/apt,160,2,1,2019-04-22,0.38,1,7 +33548209,"Large, Bright, Full Home in Greenpoint w/ Backyard",252790183,Shelley,Brooklyn,Greenpoint,40.73279,-73.954,Entire home/apt,240,2,1,2019-04-28,0.42,1,7 +33548323,Modern & Cozy Room with PRIVATE balcony!,6946537,Tiara,Brooklyn,Flatbush,40.6307,-73.95815,Private room,80,2,0,,,1,90 +33549215,Entire apartment in the heart of Williamsburg,128914189,Edgar,Brooklyn,Williamsburg,40.71285,-73.96535,Entire home/apt,190,30,0,,,2,188 +33549469,Sanctuary in the Heart of Williamsburg!,1155020,Timothy,Brooklyn,Williamsburg,40.72037,-73.95857,Entire home/apt,199,3,0,,,1,99 +33549508,Musical loft sanctuary with private roof deck,4345155,Charles,Brooklyn,Greenpoint,40.73293,-73.95889,Entire home/apt,250,5,0,,,1,174 +33550800,Luxury Chelsea Loft with Private Elevator,230119671,Yullya,Manhattan,Chelsea,40.74567,-73.99254,Entire home/apt,949,2,6,2019-06-05,2.02,1,270 +33551770,Sun soaked private room with all the amenities!,84084279,Jarrod,Brooklyn,Crown Heights,40.67692,-73.92241,Private room,60,1,26,2019-07-07,7.88,1,330 +33551810,Beautiful Fifth Avenue Studio with Garden,248282016,Angeline,Manhattan,Upper East Side,40.78513,-73.95588,Entire home/apt,180,5,1,2019-04-27,0.41,1,77 +33552714,Heaven,22388020,Lùis,Brooklyn,Bushwick,40.7023,-73.91911,Private room,59,1,8,2019-06-25,2.73,1,56 +33552984,2 BRM Heart of Time Square,252824941,Alex,Manhattan,Hell's Kitchen,40.76273,-73.99061,Entire home/apt,300,1,14,2019-07-06,4.52,1,306 +33553737,1 Bedroom open floor garden apartment,76451668,Juan,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92695,Entire home/apt,120,31,1,2019-05-11,0.51,2,155 +33554251,"seconds from subway, 30 min drive to city,solo tra",47504485,Danny,Brooklyn,Bensonhurst,40.61225,-73.9815,Private room,39,7,12,2019-06-11,4.50,2,58 +33555650,A Nice Room,199833548,Syeda,Queens,Jamaica,40.70585,-73.80867,Private room,50,1,13,2019-06-23,4.53,9,358 +33555952,"HUGE, SUNNY room in Financial District",12655794,Pat,Manhattan,Financial District,40.70598,-74.00804,Private room,150,4,2,2019-04-15,0.62,1,90 +33556026,"CATALINA’S ROOM + Close to JFK and LGA airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73101,-73.87139,Private room,51,1,12,2019-06-27,3.96,4,180 +33556100,Spacious private room for rent.,79134040,William,Manhattan,Washington Heights,40.84316,-73.94062,Private room,100,2,11,2019-07-01,4.29,1,55 +33557100,Great Room with WC,76849762,German,Brooklyn,Williamsburg,40.71492,-73.94397,Private room,60,3,1,2019-06-02,0.81,1,0 +33558048,"Artist Loft: Clean, Cozy, Sun Filled, Plant Oasis",252856825,Jessi,Brooklyn,Bedford-Stuyvesant,40.69446,-73.9543,Entire home/apt,250,1,4,2019-07-02,1.85,1,10 +33558102,Private room in loft (check out my pictures)!!!!,157708630,Marilyn,Brooklyn,Bushwick,40.70044,-73.92503,Private room,68,2,5,2019-05-27,1.76,1,15 +33558241,Our sanctuary,4770121,Somaya,Manhattan,Harlem,40.82457,-73.94008,Entire home/apt,100,7,1,2019-04-26,0.41,4,33 +33558283,Bohemian Brooklyn Suite with 2 Private Terraces,28831479,Sedef,Brooklyn,Williamsburg,40.70796,-73.94826,Private room,189,3,0,,,2,78 +33558307,Charming 1BD Astoria Penthouse,252865772,Regina,Queens,Astoria,40.75909,-73.92005,Entire home/apt,98,2,1,2019-04-03,0.31,1,292 +33558445,Sunny 4 bedrooms in Manhattan,247185393,Artem,Manhattan,East Harlem,40.79491,-73.94162,Entire home/apt,400,3,7,2019-06-14,2.33,1,307 +33558466,"Homey and spacious 1BR Apt, near Prospect Park",10506005,Chuck,Brooklyn,Flatbush,40.6491,-73.96322,Entire home/apt,110,3,2,2019-07-07,2,1,108 +33558773,Astoria Center Location,183211776,Rafael,Queens,Astoria,40.76523,-73.9118,Private room,49,1,8,2019-06-04,3.04,4,192 +33558808,Designer's spacious 4bedrooms Manhattan apt,9488131,Javanshir,Manhattan,Washington Heights,40.85129,-73.92954,Entire home/apt,300,3,12,2019-06-24,3.91,1,313 +33558846,Brooklyn sunny room! Short or long term stay,15178683,Acadia,Brooklyn,Flatbush,40.63376,-73.95148,Private room,30,3,0,,,1,0 +33559960,Center of the Universe Stay,193488,Jane,Manhattan,East Village,40.73361,-73.98995,Private room,135,1,0,,,2,177 +33560308,A GREY DOOR - BED-STUY.,99494083,Eunice,Brooklyn,Bedford-Stuyvesant,40.68395,-73.92998,Entire home/apt,113,5,8,2019-06-27,2.55,2,101 +33560323,Private Studio Space in Windsor Terrace Brooklyn,26535250,Sheila,Brooklyn,Windsor Terrace,40.65596,-73.97951,Entire home/apt,55,1,5,2019-06-20,2.21,3,232 +33560439,"Location Location Location! Basic, Clean & Cheap!",54023713,Khero,Manhattan,Kips Bay,40.74385,-73.97669,Entire home/apt,100,4,25,2019-07-05,8.24,1,4 +33560460,Charming Soho large 1 bedroom apartment style loft,177742211,Kyle,Manhattan,SoHo,40.72745,-74.0025,Entire home/apt,285,5,3,2019-06-17,0.98,1,365 +33560646,Big room with king bed,119294198,Jewel,Brooklyn,Bay Ridge,40.63209,-74.018,Private room,45,1,1,2019-04-08,0.32,1,95 +33560655,Contemporary Brooklyn Lifestyle Apt /JFK Airport,223375402,Joyce,Brooklyn,East New York,40.66115,-73.89352,Entire home/apt,195,2,5,2019-06-23,2.83,4,347 +33560707,Amazing Cortelyou road,110448579,Moncef,Brooklyn,Flatbush,40.63866,-73.96735,Entire home/apt,78,30,1,2019-06-22,1,1,279 +33560762,Alojamiento Betsaida.,252855885,Delsy,Bronx,Fordham,40.86255,-73.90059,Private room,42,1,2,2019-06-30,1.82,1,332 +33561854,Cozy studio for the best rest,215744706,Anastasia,Manhattan,Harlem,40.82011,-73.9404,Entire home/apt,110,1,0,,,1,180 +33562239,Stylish NYC Apartment Right Next to Subway,35657710,Andrew,Manhattan,Washington Heights,40.8312,-73.9399,Private room,99,7,2,2019-06-16,0.77,1,90 +33564331,Sunny big room in East Williamsburg,42881572,Olga,Brooklyn,Williamsburg,40.71379,-73.94104,Private room,47,27,1,2019-05-04,0.45,1,323 +33571420,"DEMETRIO’S ROOM +Close to JFK and LGA Airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.72997,-73.87183,Private room,51,1,20,2019-06-25,6.38,4,365 +33571687,Sunny And Spacious Apartment In Chelsea,151048265,Minnie,Manhattan,Chelsea,40.74038,-74.00139,Entire home/apt,170,3,2,2019-06-01,1.09,1,39 +33571691,RV camper for the outdoor lovers,122363368,New Roc,Bronx,Allerton,40.87268,-73.85424,Entire home/apt,100,2,0,,,1,180 +33572668,Master bedroom in Luxury High Rise,107393843,James,Manhattan,Financial District,40.70824,-74.01403,Private room,125,4,1,2019-05-25,0.67,1,0 +33574976,"Still NYC... Grymes Hill, Staten Island",246224359,Julie Ann,Staten Island,Grymes Hill,40.6105,-74.09132,Entire home/apt,115,1,1,2019-06-30,1,1,339 +33575571,HOSTEL MY REFUGE PAISA(Camarote#2abajo),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76255,-73.88019,Shared room,43,1,0,,,4,153 +33577934,"Rad Chelsea 2BR w/ Sundeck, Doorman + Rooftop views by Blueground",107434423,Blueground,Manhattan,Flatiron District,40.74394,-73.99094,Entire home/apt,439,30,0,,,232,278 +33578217,"Gorgeous Gramercy Park 2BR w/ Large private terrace, Gym + Doorman",107434423,Blueground,Manhattan,Gramercy,40.73823,-73.98343,Entire home/apt,348,30,0,,,232,331 +33578743,PRIME WEST VILLAGE STUDIO APARTMENT,132644544,Sacha,Manhattan,West Village,40.73532,-73.99874,Entire home/apt,150,2,0,,,1,2 +33578821,Cozy bedroom with patio in townhouse in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9277,Private room,50,4,1,2019-06-16,1,3,23 +33579533,Comfortable and spacious bedroom in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68899,-73.9289,Private room,57,3,8,2019-07-04,3.81,3,9 +33579606,HOSTEL MY REFUGE PAISA (Camarote#1 arriba),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76275,-73.88198,Shared room,43,1,1,2019-04-09,0.33,4,91 +33579691,shared apt only for female near Times Square,251510391,Demir,Manhattan,Hell's Kitchen,40.76461,-73.98745,Shared room,65,1,0,,,3,365 +33579775,Hotel Room at Midtown 45 at New York City,154673872,Allan,Manhattan,Midtown,40.75325,-73.97176,Private room,250,5,0,,,1,0 +33579779,Great Apartment super close to the train.,198666639,Bernard,Brooklyn,Cypress Hills,40.67875,-73.90704,Entire home/apt,160,2,2,2019-06-18,2,1,162 +33579970,Spacious and sunny one bedroom,64898741,Pete,Queens,Long Island City,40.75912,-73.92903,Entire home/apt,130,3,2,2019-06-09,1.43,2,0 +33580008,Sonder | Stock Exchange | Calming 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01179,Entire home/apt,505,2,8,2019-06-22,3.58,327,263 +33580893,Art Deco Charm in the heart of The Village!,248122395,Walker Hotel Greenwich Village,Manhattan,Greenwich Village,40.73571,-73.99694,Private room,425,1,0,,,2,353 +33580907,Art Deco Charm in the heart of The Village!,248122395,Walker Hotel Greenwich Village,Manhattan,Greenwich Village,40.73679,-73.99592,Private room,425,1,4,2019-06-23,1.52,2,359 +33581628,"Spacious, Clean and Modern 2 Bedroom Suite",148317706,Michaelle,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.94363,Entire home/apt,150,2,8,2019-07-05,7.27,1,30 +33582424,"clean room with private bath, 10 Mins to city",253047601,Wendy,Brooklyn,Bushwick,40.70092,-73.93732,Private room,50,1,26,2019-07-04,9.07,1,9 +33582776,Cozy Guest Quarters in East Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.7234,-73.98267,Private room,62,2,15,2019-06-21,4.84,4,284 +33583238,Lovely apartment 2 bedrooms 2 bathrooms in UWS,30137775,Thibault,Manhattan,Upper West Side,40.79321,-73.96823,Private room,380,3,1,2019-04-21,0.38,1,24 +33584724,Comfy’s Bedroom Close Subway,120763629,Mei,Brooklyn,Bath Beach,40.60615,-74.00315,Private room,49,2,3,2019-04-26,1.05,2,347 +33585504,New 2 Bed 1 Bath in the UES #6131,113805886,Yaacov,Manhattan,Upper East Side,40.7786,-73.95208,Entire home/apt,206,30,1,2019-06-11,1,33,311 +33585541,Lower East Side Studio,3817581,Omar,Manhattan,Lower East Side,40.72028,-73.98794,Entire home/apt,123,30,1,2019-05-31,0.77,1,96 +33585686,Nolita Gem,253073362,Jia,Manhattan,Nolita,40.72175,-73.99544,Entire home/apt,145,5,3,2019-06-29,2.50,1,7 +33585726,Amazing New 1 Bedroom in the UES #6132,113805886,Yaacov,Manhattan,Upper East Side,40.77721,-73.95222,Entire home/apt,206,30,0,,,33,189 +33586112,Cozy Corner,208955733,Candace,Brooklyn,East Flatbush,40.65477,-73.92207,Private room,75,1,10,2019-07-02,3.19,4,365 +33586722,"Gorgeous, Large Brownstone with Backyard & Parking",4678376,Shannan,Brooklyn,Crown Heights,40.66806,-73.95295,Entire home/apt,350,2,7,2019-06-23,2.63,1,82 +33588367,"Large room in sunny Williamsburg apt, HUGE BALCONY",33235360,Guy,Brooklyn,Williamsburg,40.70845,-73.94266,Private room,76,2,6,2019-05-05,1.89,2,5 +33588662,AMAZING 3 BEDROOM APARTMENT IN FLUSHING QUEENS,253083248,Samuel & Toluwani,Queens,Flushing,40.74006,-73.82894,Entire home/apt,200,1,12,2019-06-30,6.00,1,145 +33588933,No Cleaning Fee! 1.5 blocks to 2 Train. 9pm-9am,253104269,Kenneth,Bronx,Wakefield,40.89613,-73.85503,Private room,35,1,9,2019-06-27,3.18,1,0 +33589352,B-comfortable queen size bed try it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.57882,-74.09197,Private room,49,1,8,2019-06-09,2.53,3,342 +33589468,“Mi casa es tu casa” “My home is your home” NYC,109567034,Javier,Queens,Fresh Meadows,40.74376,-73.7942,Entire home/apt,150,2,15,2019-07-07,6.92,1,69 +33589554,Comfy Home ~ 1st Floor,253110236,Frances,Queens,Springfield Gardens,40.66465,-73.74907,Entire home/apt,150,3,6,2019-06-14,2.28,1,176 +33590374,QUIET 1BR apartment CLOSE to EVERYTHING,127562833,Eric,Manhattan,Hell's Kitchen,40.76386,-73.98901,Entire home/apt,195,5,11,2019-07-05,5.08,1,14 +33591701,"spacious, apt. near bars/parks/museums/restaurants",19407341,Jenna,Manhattan,Upper East Side,40.76928,-73.94855,Entire home/apt,140,2,11,2019-07-01,3.93,1,3 +33592068,Bay parkway Private room,51596474,Antony,Brooklyn,Bensonhurst,40.6062,-73.98995,Private room,35,1,7,2019-05-21,2.44,12,0 +33592086,Huge Room For Rent Close to JFK and the Q train,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60898,-73.95341,Private room,65,1,5,2019-07-06,1.83,8,348 +33592474,Private Room Near Q Train in Brooklyn,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60765,-73.95392,Private room,65,1,4,2019-07-07,2.26,8,359 +33592650,Cozy Room For Girls Only:2 Minutes Walk To Q Train,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60755,-73.95303,Private room,65,1,5,2019-06-28,2.63,8,352 +33592861,Brand new private apartment 5 minutes from JFK!,46789694,Tapashi,Queens,Springfield Gardens,40.66821,-73.75263,Entire home/apt,50,1,16,2019-06-30,6.00,2,304 +33592928,Comfortable Sofa Bed For Rent In NYC. Female ONLY,197368927,Cebile,Brooklyn,Sheepshead Bay,40.6093,-73.95211,Shared room,40,2,8,2019-06-08,2.55,8,358 +33593018,Sofa Bed For Rent Near The Q Train: Girls Only.,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60852,-73.95368,Shared room,40,2,3,2019-07-04,1.14,8,343 +33594788,"Beautiful Private Home in Bushwick, Brooklyn!",63541445,Luis,Brooklyn,Bushwick,40.69477,-73.93011,Entire home/apt,180,3,6,2019-06-24,2.86,1,119 +33595791,Beautiful Chelsea townhouse bedroom,236668588,Jen,Manhattan,Chelsea,40.74679,-74.00263,Private room,115,1,3,2019-06-30,1.11,2,113 +33597052,Uptown Minimalist Chic,130667866,Omar,Manhattan,Washington Heights,40.85549,-73.92789,Private room,69,2,7,2019-06-23,2.19,1,14 +33603476,A beautiful Gem,4621134,Ulrika,Bronx,Clason Point,40.80626,-73.85122,Private room,40,7,2,2019-06-07,1.76,1,59 +33605327,"SMALL ROOM NO WINDOW, NO AIR CONDITIONER V-ROOM",59156312,Viviana,Queens,Woodhaven,40.6875,-73.8664,Private room,39,3,8,2019-06-21,3.04,9,358 +33605568,Union Square Private Double & Single Bed w/ Shower,44350279,Jp,Manhattan,Gramercy,40.73446,-73.9867,Private room,99,2,8,2019-07-04,3.53,4,13 +33607276,"Central Herald Sq.1BR w/ Roofdeck, Gym next to the subway by Blueground",107434423,Blueground,Manhattan,Midtown,40.74875,-73.98675,Entire home/apt,334,30,0,,,232,311 +33607319,Share in cozy 1BR,253246141,Jenny,Manhattan,East Harlem,40.78722,-73.94482,Shared room,40,22,1,2019-06-10,1,1,12 +33607370,"MARCELO’S ROOM +Close to JFK airport and LGA",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73125,-73.87251,Private room,38,1,28,2019-07-02,8.94,4,365 +33607399,"Premium FiDi 1BR w/ Roofdeck, Gym + Doorman near Wall St. by Blueground",107434423,Blueground,Manhattan,Financial District,40.70429,-74.00714,Entire home/apt,332,90,0,,,232,115 +33607411,Cozy room in Soho,69720852,Yana,Manhattan,SoHo,40.7204,-74.00027,Private room,64,3,1,2019-04-12,0.34,3,86 +33608420,Bright One Bedroom Loft,84732743,Julia,Brooklyn,Williamsburg,40.71255,-73.93922,Entire home/apt,100,3,3,2019-06-08,1.23,1,3 +33608666,Beautiful Chelsea Townhouse bedroom,236668588,Jen,Manhattan,Chelsea,40.7461,-74.00329,Private room,110,1,10,2019-06-10,3.49,2,108 +33608870,"Large Comfy 2Bdrm Apt in Williamsburg, Brooklyn",193954973,Sean,Brooklyn,Williamsburg,40.71381,-73.95187,Entire home/apt,245,3,1,2019-05-06,0.47,3,257 +33611062,Cosy apartment in heart of the East Village,11870917,Faye,Manhattan,East Village,40.72392,-73.98915,Entire home/apt,135,7,3,2019-07-07,1.05,1,15 +33611142,Your Next Vacation Should be Here...Walk to TimeSq,139724098,Mona,Manhattan,Hell's Kitchen,40.76091,-73.99126,Entire home/apt,299,4,16,2019-06-26,5.45,1,59 +33611809,Brand New Studio~W/D in unit~Prime Gramercy,162280872,Izi,Manhattan,Kips Bay,40.73948,-73.97973,Entire home/apt,150,30,0,,,13,327 +33611988,"Spacious,Quite,beautiful room in Astoria-Ditmars",64453547,Onur,Queens,Ditmars Steinway,40.77832,-73.90604,Private room,53,20,0,,,3,0 +33612527,Sonder | Theater District | Airy 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76142,-73.98629,Entire home/apt,212,29,0,,,327,349 +33612970,5BR Designer Loft in Soho/TriBeCa! Best Location!,147051233,Steve,Manhattan,Tribeca,40.71859,-74.00459,Entire home/apt,299,31,3,2019-06-20,1.06,1,165 +33613727,Cozy and Comfortable Studio Apartment,253304582,Iris,Queens,Corona,40.73747,-73.86404,Entire home/apt,110,7,3,2019-06-27,1.23,2,54 +33613736,"Bright Large Room, only 30mins to Times Square",5704932,Victor,Bronx,Fordham,40.86615,-73.88828,Private room,60,2,6,2019-06-23,1.96,3,34 +33614017,My awesome room :0),39837217,Leo,Brooklyn,Bushwick,40.70069,-73.93676,Private room,70,3,0,,,2,15 +33614390,Vacate NYC.,58027700,Janei,Brooklyn,Bedford-Stuyvesant,40.67758,-73.92751,Private room,65,1,12,2019-06-29,4.29,1,179 +33614825,Spacious yellow room in Brooklyn,208955733,Candace,Brooklyn,East Flatbush,40.65401,-73.92013,Private room,90,1,10,2019-06-25,3.75,4,365 +33614872,Charming 1BR next to subway & walk to Central Park,140272,Fé,Manhattan,East Harlem,40.79013,-73.94958,Entire home/apt,174,3,9,2019-06-23,3.55,1,85 +33616667,Nolita! Cute one bedroom (Website hidden by Airbnb) Location!,39943241,Bernarda,Manhattan,Little Italy,40.72002,-73.99704,Entire home/apt,260,3,2,2019-06-13,1.43,1,33 +33617342,Brooklyn Spacious Sunny Apartment,39828340,Pascale,Brooklyn,Crown Heights,40.66431,-73.95083,Private room,200,1,0,,,1,0 +33618213,Clean and quiet Brooklyn room 35 mins from Soho,23991239,Ann,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94139,Private room,50,10,1,2019-06-01,0.77,1,246 +33618303,The Pineapple tree (Girls shared room only),51596474,Antony,Brooklyn,Gravesend,40.58649,-73.97339,Shared room,24,11,2,2019-05-02,0.74,12,0 +33618352,Large Bedroom with privet bathroom,231131023,Christina,Brooklyn,Crown Heights,40.66544,-73.9577,Private room,35,2,0,,,1,224 +33618572,Cozy and beautiful room for a couple,250477669,Salome J,Queens,Jackson Heights,40.75278,-73.89114,Private room,70,3,1,2019-05-09,0.49,1,59 +33618578,★Affordable Clean Private Room#1 in Hell' kitchen★,42222090,Kita,Manhattan,Upper West Side,40.77029,-73.98761,Private room,110,3,5,2019-06-14,2.08,2,158 +33618626,Highland Park 2 bedroom share,2099273,Eric,Brooklyn,Cypress Hills,40.68176,-73.89402,Private room,85,30,0,,,1,98 +33618672,Beautiful Home in Heart of Brooklyn,17726658,T+Y+K+M,Brooklyn,East Flatbush,40.64673,-73.94686,Entire home/apt,95,1,28,2019-07-05,10.77,1,292 +33618854,Private House in Trendy Crown Heights,253354074,Yehudis,Brooklyn,East Flatbush,40.66247,-73.93784,Entire home/apt,425,2,2,2019-06-27,2,2,59 +33619855,Modern & Spacious in trendy Crown Heights,253354074,Yehudis,Brooklyn,Crown Heights,40.66387,-73.9384,Entire home/apt,150,1,6,2019-05-27,2.50,2,148 +33619915,Charming Room in Clean Apt! Soho!,192951036,Jasmine,Manhattan,SoHo,40.72589,-74.00015,Private room,119,1,7,2019-06-11,2.44,10,23 +33621265,Large Cozy Prospect Lefferts II,1512819,Sydney,Brooklyn,East Flatbush,40.65292,-73.95229,Private room,45,5,2,2019-05-31,1.07,5,159 +33621795,Queen Room,257565053,The Redford,Manhattan,Lower East Side,40.7211,-73.9893,Private room,135,1,0,,,2,162 +33621826,Standard Queen Room,257567667,The Gatsby,Manhattan,Lower East Side,40.72335,-73.99138,Private room,100,1,0,,,1,358 +33621851,Standard Queen,257569145,The Orchard Street,Manhattan,Lower East Side,40.72018,-73.98813,Private room,219,1,0,,,1,362 +33622308,Double Room with Two Double Beds,257565053,The Redford,Manhattan,Lower East Side,40.71943,-73.98753,Private room,159,1,0,,,2,161 +33627195,East Village Bedroom,192956786,Brian,Manhattan,East Village,40.72585,-73.98831,Private room,50,4,9,2019-06-16,3.14,1,48 +33627366,Cozy Bedroom in Bed-Stuy apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68375,-73.91503,Private room,150,1,0,,,2,177 +33628454,HOSTEL MY REFUGE PAISA (CAMAROTE#4 Parte Baja),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76303,-73.88039,Shared room,34,1,2,2019-05-04,0.70,4,123 +33631732,Olive's Guest Quarters #2,152394865,Arline,Brooklyn,East Flatbush,40.63196,-73.94572,Private room,175,2,4,2019-06-13,1.52,3,43 +33631782,Private Bedroom in Williamsburg Apt!,8569221,Andi,Brooklyn,Williamsburg,40.71829,-73.95819,Private room,109,3,3,2019-04-28,1.07,2,97 +33632312,"Comfortable,spacious and luxurious homely settings",184472924,Odaine,Brooklyn,East New York,40.6633,-73.89733,Entire home/apt,140,2,7,2019-06-09,2.63,1,157 +33632933,Comfy and quiet bed for women travelers,224150,Svetlana,Brooklyn,Midwood,40.61489,-73.94541,Shared room,26,2,5,2019-05-10,1.83,1,0 +33633697,Olive's Guest Quarters #3,152394865,Arline,Brooklyn,Flatlands,40.6313,-73.94534,Private room,175,2,4,2019-06-18,2.18,3,43 +33633853,"Perfectly Located Near Restaurants, Shops, & Sites",253111673,Wendy,Manhattan,Hell's Kitchen,40.76248,-73.98937,Entire home/apt,299,4,8,2019-06-23,2.89,1,61 +33634956,Sonder | Stock Exchange | Amazing 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.0108,Entire home/apt,234,2,7,2019-06-20,2.66,327,309 +33635065,Sonder | Stock Exchange | Cozy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7071,-74.01194,Entire home/apt,230,2,6,2019-06-20,2.28,327,327 +33635292,Sonder | Stock Exchange | Sunny 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70642,-74.01255,Entire home/apt,230,2,2,2019-06-24,1.50,327,319 +33635511,Hamilton Heights Home Away from Home! (30-Day Min),23777742,Eliot,Manhattan,Harlem,40.82479,-73.94218,Entire home/apt,125,30,0,,,1,242 +33636056,Sonder | The Biltmore | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76112,-73.98663,Entire home/apt,217,29,1,2019-05-31,0.75,327,337 +33636178,Sonder | The Biltmore | Warm Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76122,-73.98583,Entire home/apt,182,29,0,,,327,333 +33636366,Sonder | The Biltmore | Cozy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.75948,-73.98615,Entire home/apt,152,29,1,2019-05-21,0.60,327,193 +33636410,The Sunshine Palace,236018119,Lucy,Queens,Queens Village,40.70303,-73.74906,Entire home/apt,125,1,38,2019-07-05,12.00,3,362 +33636449,Sonder | The Biltmore | Serene 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76149,-73.98633,Entire home/apt,219,29,0,,,327,346 +33636535,Sonder | The Biltmore | Sunny 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.75923,-73.9865,Entire home/apt,207,29,0,,,327,331 +33636725,Charming 2BR Apt! Popular Neighborhood!,192951036,Jasmine,Manhattan,Greenwich Village,40.72667,-73.99878,Entire home/apt,289,1,3,2019-07-01,1.50,10,133 +33637874,STYLISH 2 BEDROOM APART. IN PRIME UPPER WEST SIDE,247067478,Antonio,Manhattan,Upper West Side,40.7977,-73.96115,Entire home/apt,330,4,9,2019-06-20,3.65,1,132 +33638326,Hustler's Paradise 2 (Semi Private),104927746,Amardeep,Staten Island,Concord,40.597,-74.08778,Shared room,29,1,0,,,7,2 +33639266,★ CLEAN/ELEGANT TWO BEDROOM APARTMENT ★,253504649,Nour,Manhattan,Upper East Side,40.78134,-73.95212,Entire home/apt,289,5,15,2019-06-22,4.89,1,146 +33639750,NiceA apt in trendy Brooklyn,253513520,Andres,Brooklyn,Bedford-Stuyvesant,40.68831,-73.9393,Entire home/apt,150,1,10,2019-06-24,3.57,1,206 +33639841,"Large furnished studio, East 56 St., NYC",191021802,Margaret,Manhattan,Midtown,40.75967,-73.96786,Entire home/apt,120,30,0,,,1,159 +33639979,A Comfortable Room,199833548,Syeda,Queens,Jamaica,40.70532,-73.80965,Private room,40,1,6,2019-06-25,2.12,9,360 +33640884,Sonder | Stock Exchange | Sunny 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70799,-74.01113,Entire home/apt,228,2,9,2019-06-23,3.33,327,317 +33640885,Sonder | Stock Exchange | Warm Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70579,-74.01245,Entire home/apt,203,2,1,2019-05-26,0.67,327,322 +33641049,JFK Airport Layovers Special 6 minutes away,232251881,Lakshmee,Queens,Springfield Gardens,40.66663,-73.7836,Private room,49,1,2,2019-04-30,0.80,8,0 +33641091,Charming Williamsburg 30 day min stay 2 br /2 bath,10951481,Ann,Brooklyn,Williamsburg,40.71095,-73.96717,Entire home/apt,183,30,0,,,5,249 +33641209,Glamorous 3 Bedroom/3 Bath Brownstone,253528452,Fab,Manhattan,Murray Hill,40.74779,-73.981,Entire home/apt,800,3,9,2019-06-22,3.46,1,276 +33642152,"Pleasant Room on Pleasant Avenue, NYC",67781861,Bronislaw,Manhattan,East Harlem,40.79738,-73.93196,Private room,50,2,4,2019-06-03,1.56,1,35 +33642266,Lower East Side Gem,91783661,Robert,Manhattan,East Village,40.72673,-73.98646,Entire home/apt,149,3,12,2019-07-01,4.29,1,151 +33643309,Cozy private bedroom 15 min from Manhattan,149312408,Kateryna And Tim,Queens,Astoria,40.76769,-73.92564,Private room,55,1,11,2019-07-07,3.75,2,319 +33643819,"Premier room in Downtown NY, Two Bridges,Chinatown",253552326,Grace,Manhattan,Chinatown,40.71313,-73.99615,Private room,108,1,11,2019-06-23,3.71,4,175 +33644836,"Priv room in an immaculate Apt,near Cent Park, UWS",76628403,Matt,Manhattan,Upper West Side,40.77961,-73.97821,Private room,160,2,3,2019-06-30,1.13,1,61 +33645301,1718公馆套房,119692067,Qiulan,Brooklyn,Sunset Park,40.64403,-74.00087,Private room,60,1,0,,,3,89 +33645723,Cute private room in Washington Heights!,112531390,Rachel,Manhattan,Washington Heights,40.84427,-73.93742,Private room,52,1,1,2019-04-25,0.40,1,0 +33650779,Central Manhattan Ladies Only (Shared),247453895,Kamila,Manhattan,Kips Bay,40.7432,-73.97605,Shared room,39,2,0,,,3,324 +33650996,"Cozy room in Downtown Manhattan, Two Bridges, Soho",253552326,Grace,Manhattan,Two Bridges,40.71214,-73.99568,Private room,89,1,13,2019-06-10,5.20,4,153 +33652038,"Brooklyn room close to the train, L,C,A,Zand J",230037325,Jay,Brooklyn,Cypress Hills,40.67916,-73.90628,Private room,57,1,9,2019-06-23,3.18,6,170 +33652633,Brooklyn room close to Subways to Manhattan,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67919,-73.90684,Private room,57,1,6,2019-05-31,2.47,6,164 +33652661,New bedroom in nice apartment. Close to hospital!,138768335,Maria,Brooklyn,East Flatbush,40.65565,-73.92705,Private room,40,30,1,2019-05-04,0.45,2,344 +33652892,"Great room close to the Subways L,A,C,Z and J",230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.68092,-73.90777,Private room,55,1,8,2019-06-23,2.76,6,138 +33653706,Brand New Duplex 3BR~W/D in the unit.,162280872,Izi,Manhattan,Upper East Side,40.77139,-73.95651,Entire home/apt,290,30,1,2019-05-17,0.57,13,283 +33653735,Clean and comfortable private room in NYC,27947449,Teya,Bronx,Parkchester,40.83938,-73.85708,Private room,45,1,10,2019-06-16,4.92,2,352 +33654019,1 Bedroom nestled in Bushwick/East Williamsburg,12351745,Gregory,Brooklyn,Bushwick,40.70014,-73.93664,Entire home/apt,150,1,10,2019-06-24,3.49,1,292 +33654032,A room where you can find peace and rest!,253624959,Eli,Brooklyn,East Flatbush,40.66008,-73.92122,Private room,50,2,5,2019-06-15,2.50,1,304 +33654285,Charming 1 bedroom apartment with private patio,3129709,Mathew,Manhattan,Upper West Side,40.7867,-73.96951,Entire home/apt,165,2,0,,,1,5 +33654480,Amazing 1 Bedroom Apt! Near the SI Ferry!!,190246158,Pavel-Alexey,Staten Island,St. George,40.64448,-74.08485,Entire home/apt,68,2,4,2019-06-26,1.97,1,65 +33655013,BEST location beautiful 1BR apartment in Manhattan,143598647,Henry,Manhattan,Hell's Kitchen,40.75913,-73.99185,Entire home/apt,195,6,6,2019-07-01,2.90,1,12 +33655084,Woodhaven Castle,47516406,Arthur,Queens,Woodhaven,40.6898,-73.86077,Private room,45,7,3,2019-07-01,1.20,2,360 +33655292,曼哈顿108街转租!,253640919,思铨,Manhattan,Upper West Side,40.80038,-73.95994,Private room,66,1,1,2019-04-12,0.34,1,17 +33655636,MASTER BEDROOM WITH A LOT OF LIGHT IN ASTORIA,158785491,Marina,Queens,Astoria,40.76019,-73.90934,Private room,40,30,0,,,1,170 +33656088,"Hip Midtown West 2BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.75942,-73.98602,Entire home/apt,309,30,0,,,232,214 +33656120,"Airy Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.76118,-73.98625,Entire home/apt,240,30,0,,,232,239 +33656146,"Open Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.7609,-73.98594,Entire home/apt,240,30,0,,,232,189 +33656304,"Smart Midtown West Studio w/ sundeck, gym, near Times Sq. by Blueground",107434423,Blueground,Manhattan,Theater District,40.75938,-73.98749,Entire home/apt,219,30,0,,,232,14 +33656821,Spacious and bright — Ft. Greene — best location,1364340,Jess,Brooklyn,Fort Greene,40.68966,-73.97311,Private room,125,2,7,2019-06-25,4.38,1,0 +33658071,"Bright, renovated apartment close to subway+city",3002017,Barblin,Brooklyn,Bedford-Stuyvesant,40.68466,-73.91716,Entire home/apt,130,2,10,2019-07-01,5.36,1,262 +33658646,A Delightful Room,199833548,Syeda,Queens,Briarwood,40.70741,-73.80838,Private room,50,1,11,2019-06-16,3.79,9,342 +33659082,Home Away From Home at Mosholu pkwy,229929832,Ifeoluwa,Bronx,Norwood,40.87414,-73.88342,Private room,51,1,10,2019-07-04,4.76,1,271 +33660190,"Flatbush Apartment near 2,5 train",67610438,Jabari,Brooklyn,East Flatbush,40.6386,-73.94584,Entire home/apt,82,1,5,2019-06-09,2.27,1,19 +33660196,Airy Apartment in the Heart of West Village/SoHo,32059780,Nisa,Manhattan,SoHo,40.72681,-74.00455,Entire home/apt,200,2,0,,,1,47 +33660716,Cozy Bright Prospect Park Studio,73785055,Alycen,Brooklyn,Prospect Heights,40.67382,-73.96642,Entire home/apt,150,4,0,,,1,28 +33660911,Stylish Designer 3 Bedroom Apartment,61084210,Nadine,Queens,Astoria,40.76222,-73.91861,Entire home/apt,360,3,10,2019-07-01,3.85,1,206 +33660966,Remote William,253693119,Wes,Brooklyn,Williamsburg,40.71993,-73.96395,Entire home/apt,400,180,0,,,1,310 +33661139,"Private Rm Near JFK, Beach & St. John E Hospital",234090781,Phoenix,Queens,Bayswater,40.6083,-73.75787,Private room,45,1,4,2019-06-21,2.26,2,54 +33661269,"Comfort room in Downtown NY, Two Bridges,Chinatown",253552326,Grace,Manhattan,Chinatown,40.71304,-73.99484,Private room,89,1,13,2019-06-11,4.43,4,164 +33661274,Sunny Sunset Park Large Bedroom near subway,9034883,Matt,Brooklyn,Sunset Park,40.66172,-73.99387,Private room,75,2,0,,,1,88 +33661568,Small studio,253698437,H,Bronx,Williamsbridge,40.88171,-73.85384,Entire home/apt,75,2,2,2019-05-28,0.82,1,360 +33661788,Cozy bedroom in Sunset Park apartment,70406797,Monée,Brooklyn,Sunset Park,40.64644,-74.01057,Private room,47,1,0,,,1,31 +33663100,5 ★ Stay in Manhattan (Cozy & Family Friendly),73212148,Shiko,Manhattan,Harlem,40.80704,-73.95134,Private room,105,3,11,2019-06-23,3.79,1,20 +33663595,Tu tranquilidad no tiene precio,182434290,Ana Maria,Queens,Ditmars Steinway,40.77005,-73.91098,Private room,90,1,6,2019-05-28,2.47,2,0 +33663599,"Modern,spacious and peaceful apartment",18109057,Milly,Manhattan,Washington Heights,40.85176,-73.93009,Private room,75,2,1,2019-04-23,0.39,1,53 +33664163,A Living Room,199833548,Syeda,Queens,Briarwood,40.70579,-73.81001,Shared room,30,1,10,2019-06-11,4.05,9,361 +33664228,Sophisticated Brownstone Duplex,87766324,Michelle,Brooklyn,Bedford-Stuyvesant,40.68638,-73.93497,Entire home/apt,499,2,0,,,2,30 +33664484,3BR Family Home in Prime Queens Neighborhood,157301360,Dalia & Marina,Queens,Kew Gardens Hills,40.72947,-73.82076,Entire home/apt,250,3,5,2019-07-06,2.88,1,152 +33666119,Alexander Hamilton( For Guys ONLY),51596474,Antony,Brooklyn,Bay Ridge,40.62329,-74.02136,Shared room,24,10,1,2019-06-20,1,12,0 +33666175,English style home in Brooklyn New York,69977115,Jacob,Brooklyn,Bensonhurst,40.61472,-73.99143,Private room,79,2,1,2019-06-24,1,4,364 +33666359,Private Entrance Spacious 5 BD Apartment Manhattan,197792014,Danny,Manhattan,Washington Heights,40.84467,-73.93549,Entire home/apt,280,2,23,2019-07-02,8.31,1,215 +33666607,Immaculate Private Bedroom & Bathroom (Room A),88171838,Kimi,Brooklyn,Bay Ridge,40.63555,-74.02962,Private room,75,1,14,2019-07-01,4.83,4,154 +33666721,ALEX SPACE #5,252819295,Alex,Queens,Richmond Hill,40.69439,-73.83243,Shared room,58,1,12,2019-07-02,4.14,1,180 +33666887,Close to Manhattan ( S ).,253748268,Katie,Queens,Elmhurst,40.74623,-73.88974,Private room,55,1,4,2019-07-05,1.94,1,83 +33667403,Contemporary Brooklyn Lifestyle Apt /JFK Airport 1,223375402,Joyce,Brooklyn,East New York,40.66067,-73.8931,Private room,65,2,1,2019-05-14,0.53,4,354 +33668282,Contemporary Brooklyn Lifestyle Apt /JFK Airport 2,223375402,Joyce,Brooklyn,East New York,40.66089,-73.89376,Private room,65,2,1,2019-06-12,1,4,349 +33673071,COUCH SURF in Gorgeous apt. Have own open room!,33151563,Regine,Queens,Flushing,40.76308,-73.82215,Private room,63,2,1,2019-06-13,1,2,0 +33673436,Spacious aptmt sleeps 4 AND addtn blowup mattress,11670365,Jane,Manhattan,Chinatown,40.71565,-73.99211,Entire home/apt,250,4,2,2019-05-27,0.74,1,8 +33674936,Artist LOFT in Bushwick - 15min from Manhattan,9850389,David,Brooklyn,Bushwick,40.70672,-73.92295,Entire home/apt,200,2,1,2019-05-27,0.70,1,0 +33676336,"Light-Filled Studio, Steps to Subway",4128255,Lily,Brooklyn,Fort Greene,40.68694,-73.97435,Entire home/apt,104,2,7,2019-06-24,3.33,1,2 +33678486,"Habitación amplia , a 15 minutos del airport LGA",253842399,Leandro,Queens,Corona,40.74266,-73.86526,Entire home/apt,65,1,1,2019-05-02,0.44,1,280 +33679677,"RENTING MY SOFA. ASTORIA ,NY",220634514,Daisy Marina,Queens,Astoria,40.75869,-73.91439,Shared room,45,10,0,,,1,341 +33680582,Beautiful Apt in the Heart of the Upper East Side,245174862,Alexandra,Manhattan,Upper East Side,40.78091,-73.95384,Entire home/apt,175,2,0,,,1,38 +33680825,Studio on East Williamsburg,17524733,David,Brooklyn,Bushwick,40.68383,-73.90857,Entire home/apt,65,6,2,2019-05-16,0.80,1,19 +33681005,Cozy 1 br Apt In Uptown Manhattan,39395975,Matt,Manhattan,Inwood,40.86725,-73.92726,Entire home/apt,150,1,0,,,1,16 +33682168,New York City Luxury Bedroom,224317184,Luke,Manhattan,Harlem,40.81708,-73.95059,Private room,215,5,3,2019-06-22,1.84,8,345 +33682555,"Midtown 2 Bed United Nations Loc, Full Kitchen",214347105,Roman,Manhattan,Midtown,40.75088,-73.96958,Entire home/apt,419,3,1,2019-06-01,0.79,8,343 +33682823,New York City Luxury Bedroom!!,224317184,Luke,Manhattan,Harlem,40.81652,-73.94914,Private room,215,5,7,2019-06-21,2.73,8,335 +33682910,Gorgeous and Huge One BR and sofa bed in LR too!,1328716,Susan,Manhattan,Midtown,40.75544,-73.96452,Entire home/apt,195,2,1,2019-05-27,0.70,1,117 +33683110,Sun filled Brooklyn Apartment,11967268,Carly,Brooklyn,Williamsburg,40.70762,-73.95,Entire home/apt,225,3,1,2019-06-17,1,1,0 +33683557,Beautiful Room in Williamsburg Loft,24064771,Damasia,Brooklyn,Williamsburg,40.7077,-73.9435,Private room,65,7,0,,,1,0 +33683615,Monthly**Lux 2bed/2bath* Flatiron Midtown Doorman!,253888808,Paris,Manhattan,Midtown,40.74472,-73.98526,Entire home/apt,306,30,2,2019-06-30,1.30,1,320 +33683932,BRIGHT WILLIAMSBURG ROOM WITH BALCONY,17879327,Hannah,Brooklyn,Williamsburg,40.70783,-73.95431,Private room,90,3,3,2019-06-25,1.17,1,47 +33683971,Elegant Park BrownStone Duplex 3Bedroom/3Bath,253892856,Anna + Fred,Manhattan,Murray Hill,40.74898,-73.98029,Entire home/apt,700,3,11,2019-06-16,4.18,1,249 +33684693,Cozy industrial loft in the heart of Williamsburg,253898121,Denis,Brooklyn,Williamsburg,40.72178,-73.95653,Entire home/apt,200,5,1,2019-05-19,0.59,1,13 +33685563,Magical cozy studio in the heart of West village,35842670,Keshet,Manhattan,West Village,40.73792,-74.00063,Entire home/apt,230,14,2,2019-06-20,0.65,1,87 +33686419,Prime Williamsburg 2BR w/ NYC View -Long Term Only,82742663,Scott,Brooklyn,Williamsburg,40.71948,-73.96376,Entire home/apt,150,30,1,2019-04-29,0.42,1,160 +33687439,"Vibrant area, bohemian vibe",211941129,Katarzyna,Brooklyn,Greenpoint,40.72633,-73.95859,Private room,55,1,21,2019-07-05,7.33,2,47 +33687456,New York at Christmas Time! Dec. 17-20,253925102,Chris,Manhattan,Midtown,40.75166,-73.97154,Private room,600,3,0,,,1,96 +33688029,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66784,-73.95798,Private room,68,30,1,2019-05-01,0.43,7,251 +33688884,Spacious Room in North Williamsburg!,30590073,Michael,Brooklyn,Williamsburg,40.71878,-73.9604,Private room,70,1,7,2019-05-31,3.28,2,98 +33689069,Dollhouse Studio,253944108,Anthony,Brooklyn,Bedford-Stuyvesant,40.69539,-73.94399,Private room,79,2,3,2019-07-03,2.43,1,96 +33689108,"Cozy, Comfy, Clean Mondern 2-Story Condo",229288218,Shawn,Brooklyn,Bushwick,40.69833,-73.93463,Entire home/apt,175,1,5,2019-06-16,1.90,1,264 +33689191,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",2350326,Ero,Queens,Ditmars Steinway,40.7786,-73.91031,Entire home/apt,140,15,0,,,2,0 +33689283,1 & 1/2 Bd Garden apt around corner from river,253940417,Alourdes,Manhattan,Washington Heights,40.83591,-73.94586,Entire home/apt,180,5,0,,,1,83 +33689398,comfortable & cozy qns size bed Feel it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.5788,-74.09155,Private room,37,1,7,2019-07-04,2.66,3,310 +33689606,Luxury 3 Double-Bed Park Slope Apt Steps from Park,149415862,Kate,Brooklyn,Park Slope,40.66815,-73.97767,Entire home/apt,395,5,0,,,1,22 +33689647,Brooklyn Bliss 2,44929652,Lawanne,Brooklyn,East Flatbush,40.64578,-73.94756,Private room,75,2,7,2019-07-01,4.12,4,361 +33689653,Brooklyn Bliss 3,44929652,Lawanne,Brooklyn,East Flatbush,40.64423,-73.94683,Private room,50,2,2,2019-06-24,2,4,356 +33689832,Cozy bedroom in a shared apartment. Private room.,6565512,Justus,Manhattan,Harlem,40.82437,-73.95027,Private room,85,1,0,,,1,83 +33689844,Cozy and sunny 2 bedroom apartment,17844480,Angie,Manhattan,Upper West Side,40.80009,-73.96218,Entire home/apt,130,14,0,,,1,2 +33690902,Time Square 2 bedroom apt,137950324,Sam,Manhattan,Hell's Kitchen,40.75923,-73.99233,Entire home/apt,225,4,2,2019-06-19,0.77,1,44 +33691283,Timbuktu suits Bamako,251839479,Dieudonne,Bronx,Longwood,40.82639,-73.90517,Entire home/apt,150,2,0,,,2,0 +33691396,Comfortable Bedroom in Cute Boerum Hill Area,15729463,Carter,Brooklyn,Boerum Hill,40.68619,-73.98719,Private room,105,4,2,2019-05-12,0.76,1,0 +33692033,One bedroom apartment in the heart of astoria,253745747,Francesca,Queens,Astoria,40.75737,-73.91669,Entire home/apt,85,14,1,2019-06-30,1,1,77 +33694626,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76473,-73.99003,Shared room,69,1,8,2019-07-03,2.70,9,347 +33694628,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76449,-73.99107,Shared room,60,1,14,2019-06-20,4.62,9,349 +33694634,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76623,-73.99075,Shared room,85,1,18,2019-06-28,6.21,9,337 +33695141,Shared Room in Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76436,-73.99153,Shared room,60,1,20,2019-06-28,6.82,9,348 +33699563,Close to everything: Artsy fartsy share,247189581,Helena,Brooklyn,Fort Greene,40.68667,-73.9738,Shared room,41,2,4,2019-05-20,1.64,5,0 +33701016,Bright modern loft in Crown Heights brownstone,9919024,Francesco,Brooklyn,Crown Heights,40.67807,-73.95532,Entire home/apt,130,4,7,2019-06-20,2.50,1,28 +33701468,Best Location! Spacious 3BR in Center of NYC!,253128090,Harvy Jake,Manhattan,Midtown,40.76167,-73.96944,Entire home/apt,149,2,7,2019-06-14,2.63,1,163 +33704586,Hudson Yards Penthouse Luxury Sublet,50484250,Jeremy,Manhattan,Hell's Kitchen,40.75813,-73.99818,Private room,100,90,0,,,1,160 +33705120,Light filled Townhouse in Historic Central Harlem,24599796,Stewart,Manhattan,Harlem,40.80879,-73.94174,Entire home/apt,600,7,0,,,1,14 +33708600,Sonder | The Biltmore | Chic 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76008,-73.98721,Entire home/apt,227,29,0,,,327,365 +33708769,Sonder | The Biltmore | Stylish 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.76072,-73.98582,Entire home/apt,244,29,1,2019-06-06,0.88,327,363 +33708931,July 4th Special! 1 bedroom in NYC,1693671,Sylvia,Manhattan,Chelsea,40.75256,-73.99653,Private room,150,4,0,,,1,91 +33709053,Sonder | Stock Exchange | Tasteful 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01236,Entire home/apt,472,2,8,2019-06-23,3.43,327,262 +33709253,Sonder | Stock Exchange | Stunning 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70729,-74.01095,Entire home/apt,474,2,9,2019-06-22,4.22,327,263 +33709466,Sonder | Stock Exchange | Restful Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01059,Entire home/apt,214,2,1,2019-06-09,1,327,319 +33709502,Sonder | Stock Exchange | Polished 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70761,-74.01226,Entire home/apt,235,2,5,2019-06-24,1.76,327,333 +33709503,Sonder | Stock Exchange | Relaxed 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70602,-74.0123,Entire home/apt,244,2,2,2019-06-04,0.98,327,315 +33709508,Sonder | Stock Exchange | Polished 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70715,-74.0103,Entire home/apt,495,2,7,2019-06-14,2.50,327,265 +33709566,1 sunny Bedroom in a Boho style apartment,10696263,Nino,Brooklyn,Bushwick,40.69058,-73.91303,Private room,60,7,0,,,1,0 +33709754,Sonder | Stock Exchange | Laid-Back 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70653,-74.01088,Entire home/apt,398,2,0,,,327,279 +33710554,"PRIDE Perfect! Bright, Clean & New W. Village Flat",254107226,Katherine,Manhattan,West Village,40.73593,-74.00438,Entire home/apt,260,3,2,2019-07-05,1.03,1,10 +33710571,Very huge apartment in the heart of Williamsburg.,217498918,Mike,Brooklyn,Williamsburg,40.71072,-73.94207,Entire home/apt,230,2,10,2019-06-24,3.57,1,169 +33710612,Fantastic new luxury single beach studio in NYC!,102588471,Cashmira,Queens,Arverne,40.59356,-73.79436,Entire home/apt,95,1,6,2019-07-02,2.20,1,35 +33711092,Sonder | Stock Exchange | Airy 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.01188,Entire home/apt,229,2,2,2019-06-22,1.50,327,338 +33711101,Spacious private room in the heart of Astoria,10606171,Nicholas,Queens,Astoria,40.76257,-73.92162,Private room,90,1,12,2019-05-13,4.04,1,104 +33711189,Sonder | Stock Exchange | Warm 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.0118,Entire home/apt,240,2,3,2019-06-08,1.70,327,323 +33711350,Convienent Brooklyn (Fort Greene) Bedroom,41949280,Allison,Brooklyn,Fort Greene,40.6871,-73.97575,Private room,90,5,0,,,1,85 +33711384,Sonder | Stock Exchange | Brilliant 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01079,Entire home/apt,236,2,10,2019-06-17,3.70,327,319 +33711735,Sonder | Stock Exchange | Calming 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70793,-74.01043,Entire home/apt,229,2,11,2019-06-24,4.52,327,341 +33711895,Cozy studio in the heart of cobble hill,41848631,Donal,Brooklyn,Boerum Hill,40.68727,-73.98956,Entire home/apt,160,2,1,2019-06-25,1,1,5 +33712004,Sonder | Stock Exchange | Cozy 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70784,-74.0107,Entire home/apt,229,2,7,2019-06-23,2.80,327,327 +33712513,Cozy studio in Chelsea NYC,40832103,Bobby,Manhattan,Chelsea,40.74005,-74.00071,Entire home/apt,154,3,0,,,1,18 +33712646,Penthouse Duplex with outdoor space Murray Hill,19171259,Lari,Manhattan,Murray Hill,40.74805,-73.97855,Entire home/apt,200,3,6,2019-05-29,2.28,1,1 +33713175,"Hostal , full size bed ( bottom bunk) shared room",2793778,Fernando,Queens,Forest Hills,40.71597,-73.83543,Shared room,35,4,1,2019-06-16,1,5,332 +33713803,Rad Clubhouse: 2 Private Rooms + Diner Kitchen,19645976,Angela,Brooklyn,Williamsburg,40.70891,-73.96342,Private room,169,3,7,2019-07-01,3.56,1,72 +33714297,Cozy Room with Private Bath in Bay Ridge (Room B),88171838,Kimi,Brooklyn,Bay Ridge,40.63611,-74.03178,Private room,75,1,16,2019-07-07,5.27,4,134 +33714518,Duplex Penthouse with private roof in Williamsburg,120431726,Noah,Brooklyn,Williamsburg,40.71994,-73.94085,Entire home/apt,240,2,2,2019-05-26,1.18,2,0 +33714755,Comfy Room w Private Bath in Bay Ridge (Room C),88171838,Kimi,Brooklyn,Bay Ridge,40.63521,-74.03197,Private room,75,1,7,2019-07-04,2.88,4,361 +33715743,BIENVENIDOS MI CASA ES TU CASA,253118370,Mary,Queens,Corona,40.74666,-73.85781,Private room,50,1,6,2019-06-29,2.43,2,164 +33715755,Private Bedroom in a Prewar Gramercy Building!,46714344,Manuel Alex,Manhattan,Gramercy,40.73568,-73.98188,Private room,95,2,4,2019-06-15,1.43,1,0 +33715848,Massive Private rm Private Entrance HEART of Wb,171008642,Mona,Brooklyn,Williamsburg,40.72005,-73.95704,Private room,120,2,14,2019-06-18,4.83,1,18 +33716043,Comfortable Room near the center of Manhattan.,254150644,Eduardo,Manhattan,Washington Heights,40.84661,-73.93444,Private room,60,2,16,2019-07-03,5.78,1,216 +33716426,Sonder | Stock Exchange | Central 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70723,-74.01086,Entire home/apt,229,2,3,2019-06-13,1.55,327,340 +33716700,Cozy studio in great location on Upper East Side,254157091,Alexandra,Manhattan,Upper East Side,40.77116,-73.95776,Entire home/apt,130,3,7,2019-06-26,2.84,1,5 +33717001,Halsey Street Commode,254159261,Sam,Brooklyn,Bedford-Stuyvesant,40.68481,-73.9296,Entire home/apt,100,2,15,2019-07-07,6.52,1,37 +33717547,Sonder | Upper East Side | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.7644,-73.9633,Entire home/apt,164,29,0,,,327,221 +33717575,Large studio for 2,254164653,Cedar,Manhattan,Hell's Kitchen,40.75896,-73.9956,Entire home/apt,150,7,4,2019-06-23,2.67,1,213 +33717623,Luxe Modern Tribeca Studio,254165437,Josh,Manhattan,Tribeca,40.71492,-74.01154,Entire home/apt,355,4,3,2019-06-15,1.11,1,365 +33717639,Sonder | Upper East Side | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76291,-73.96448,Entire home/apt,150,29,2,2019-06-12,1.02,327,220 +33717828,UPPER WEST SIDE ZEN CASITA CLOSE TO COLUMBIA UNI!,161061302,Carol,Manhattan,Upper West Side,40.80004,-73.96838,Private room,89,1,9,2019-06-20,3.42,2,52 +33718046,Prime Location!Cozy 2BR in West Village!,253192168,Romeo,Manhattan,West Village,40.73037,-74.00497,Entire home/apt,1799,2,0,,,1,270 +33718254,Imperial,249479517,Imperial,Bronx,Soundview,40.82864,-73.87609,Private room,45,2,6,2019-06-21,2.28,2,24 +33718909,Park Avenue # Central Park # Luxury # 2 Bedroom,253507120,Mikey,Manhattan,Upper East Side,40.7649,-73.96795,Entire home/apt,395,7,4,2019-07-02,2.35,1,279 +33719279,UPPER EAST SIDE BEST ROOM,254172441,Adi & Naor,Manhattan,Upper East Side,40.78034,-73.94861,Private room,70,1,4,2019-06-09,2.00,1,0 +33719615,Modern Brooklyn Getaway,2727975,Vanessa,Brooklyn,Bedford-Stuyvesant,40.68393,-73.91528,Entire home/apt,134,3,4,2019-06-29,4,1,245 +33719823,"Large, Bright, Luxury Chelsea Studio/ Best Area!!!",254189342,Kimberley,Manhattan,Chelsea,40.75104,-73.99544,Entire home/apt,200,4,1,2019-07-07,1,1,228 +33720130,Charming 3BR w/Private Backyard. 15min to Manh,5333953,Andrey,Brooklyn,Bedford-Stuyvesant,40.69248,-73.93162,Entire home/apt,215,2,5,2019-07-06,1.90,1,18 +33720225,"Manhattan Lux King Sized Room, Lots of Light",3773866,Megumi & Nathan,Manhattan,Harlem,40.81824,-73.93919,Private room,85,2,1,2019-04-28,0.42,2,77 +33720269,Great Brooklyn location! Spacious apartment.,9494211,Laura,Brooklyn,Columbia St,40.68296,-74.00378,Entire home/apt,350,6,0,,,1,61 +33725862,Spacious Brooklyn Room for 1 or 2 Guests.,137358866,Kazuya,Brooklyn,Bushwick,40.69198,-73.91168,Private room,48,30,0,,,103,267 +33726859,Private bedroom in new and spacious apartment,60127679,Jason,Brooklyn,Bedford-Stuyvesant,40.68553,-73.92569,Private room,65,1,20,2019-06-15,6.59,2,23 +33728093,"Cozy Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.75943,-73.98675,Entire home/apt,271,30,0,,,232,316 +33734068,★Warm + Welcoming BEDSTUY - Private2BR on J/M/Z★,608700,Rachel,Brooklyn,Bedford-Stuyvesant,40.69156,-73.93497,Entire home/apt,125,3,9,2019-06-26,3.18,1,24 +33734301,Light-filled master Bedroom by the Cloisters,41844032,Violetta,Manhattan,Washington Heights,40.85768,-73.92855,Private room,70,2,2,2019-07-07,2,1,163 +33734483,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73326,-74.00511,Entire home/apt,250,3,5,2019-07-02,2.24,5,255 +33735398,"Modern, Airy & Sunny Apt in Brownstone Brooklyn!",22736811,Lisa,Brooklyn,Bushwick,40.68808,-73.90985,Entire home/apt,159,2,16,2019-07-07,5.39,1,127 +33736401,Prime West Village: Art & Foodie Heaven,1192716,Larissa,Manhattan,West Village,40.73272,-74.00797,Entire home/apt,155,2,7,2019-07-07,2.44,1,6 +33736715,Executive Living off Fifth Ave and Central Park,61391963,Corporate Housing,Manhattan,Midtown,40.76223,-73.97588,Entire home/apt,159,60,0,,,91,353 +33737434,"Cozy Downtown Unit - 3 bedrooms, 2 full baths",229600367,Ankita,Manhattan,Lower East Side,40.71981,-73.9856,Entire home/apt,699,2,0,,,1,290 +33738412,Instagram Dream Townhouse in Times Sq.,254320440,Laura + John,Manhattan,Hell's Kitchen,40.75823,-73.99066,Entire home/apt,300,3,8,2019-06-19,3.33,1,54 +33739054,Family Friendly East Village Brownstone 2-Floors,52826,Tom,Manhattan,East Village,40.72235,-73.97772,Entire home/apt,165,30,0,,,2,56 +33740211,Chill East Village Get-Away,52826,Tom,Manhattan,East Village,40.72236,-73.97689,Entire home/apt,140,26,0,,,2,46 +33740728,Quiet and comfy Room in the heart of Williamsbourg,22620829,Imma,Brooklyn,Williamsburg,40.71102,-73.95829,Private room,75,2,6,2019-07-07,2.34,1,0 +33740789,Spacious bedroom with washer and dryer unit.,144863350,Keith,Manhattan,Harlem,40.81482,-73.95192,Private room,51,1,12,2019-05-15,4.34,1,0 +33741107,Fresh,216274333,Victoria,Queens,Fresh Meadows,40.72894,-73.78003,Private room,80,1,2,2019-05-25,1.22,1,0 +33741545,Astoria Apt,58024325,Nate,Queens,Astoria,40.76001,-73.92313,Private room,700,1,1,2019-05-06,0.47,1,125 +33742429,Chill East Williamsburg Apartment,1648806,Maraliz,Brooklyn,Williamsburg,40.71439,-73.9409,Private room,90,2,2,2019-06-10,1.18,2,174 +33742984,Brooklyn Loft Living in Bedstuy / Clinton Hill,5477538,Leslie,Brooklyn,Clinton Hill,40.69235,-73.96102,Private room,64,5,1,2019-05-26,0.68,1,90 +33743082,"NEWLY-RENOVATED APARTMENT, 35 MINS FROM MANHATTAN",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68935,-73.87254,Entire home/apt,150,30,0,,,6,17 +33743424,★COLUMBUS CIRCLE★FULL FLOOR LOFT~5 Beds@BROADWAY,254358202,Shosh,Manhattan,Midtown,40.76523,-73.98157,Entire home/apt,549,5,7,2019-06-26,2.66,1,207 +33743807,Cozy Bushwick Studio - Great Location,18569998,Brandon,Brooklyn,Bushwick,40.7077,-73.9225,Entire home/apt,100,4,4,2019-06-24,1.52,1,11 +33744142,"6 Guests! Close to JFK-Manhattan(30 min ""A"" train)",67746251,Gasminee,Queens,Ozone Park,40.68268,-73.84977,Entire home/apt,149,1,0,,,4,113 +33744630,Beautiful Park Slope Apartment with outdoor space,99884541,Phil,Brooklyn,South Slope,40.66052,-73.9811,Private room,50,30,0,,,1,0 +33745270,2 Bedroom APT in Beautiful Brooklyn Heights,186678447,Miguel,Brooklyn,Brooklyn Heights,40.6981,-73.9958,Entire home/apt,550,3,4,2019-07-01,4,1,215 +33745352,温暖的双人房间,140630987,Jiali,Queens,Flushing,40.75966,-73.81469,Private room,65,1,11,2019-06-21,3.79,6,126 +33745548,Midtown West Hotel - Hudson Twin Single,252604696,Erin,Manhattan,Chelsea,40.74922,-73.9968,Private room,99,1,4,2019-07-05,1.50,20,168 +33745550,Midtown West Hotel - Empire Triple Room,252604696,Erin,Manhattan,Chelsea,40.75094,-73.99662,Private room,199,1,1,2019-05-19,0.58,20,160 +33745565,Wood + brick + Bushwick,222480912,Marielisa,Brooklyn,Bushwick,40.70167,-73.91913,Private room,60,3,0,,,2,0 +33745608,Greenwich/West Village Sunny real one bedroom apt!,880797,Adrienne,Manhattan,West Village,40.73131,-74.00619,Entire home/apt,154,3,3,2019-05-20,1.14,1,19 +33745956,Charming and Beautiful Home with Outdoor Space,13342325,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92843,Entire home/apt,120,10,0,,,1,156 +33746075,A Pleasant Room,199833548,Syeda,Queens,Briarwood,40.70655,-73.80842,Private room,50,1,10,2019-06-09,3.37,9,357 +33746153,The Stop at Fordham Manor,51614766,Jonathan,Bronx,Fordham,40.8667,-73.89115,Private room,70,1,5,2019-05-27,1.76,1,364 +33746705,My home is open to everyone!,254382567,Vicente,Manhattan,Washington Heights,40.84377,-73.93666,Private room,60,1,18,2019-06-29,6.07,1,305 +33747879,Small room for female guests only,252636577,Jean,Queens,Flushing,40.76,-73.82466,Shared room,26,2,5,2019-07-08,1.65,2,90 +33748535,Contemporary Brooklyn Lifestyle Apt /JFK Airport 3,223375402,Joyce,Brooklyn,East New York,40.66195,-73.8936,Private room,65,2,1,2019-05-13,0.52,4,352 +33749115,Sensational Midtown East Dream Near E/M Trains,254372359,Timothy And Natalia,Manhattan,Midtown,40.75452,-73.97092,Entire home/apt,250,5,7,2019-06-14,2.44,1,161 +33749547,Private room in Mckibbin Lofts. Rooftop access,154080858,David,Brooklyn,Williamsburg,40.70621,-73.93663,Private room,70,2,18,2019-06-24,6.67,1,205 +33749699,Nice basement studio apt on East Williamsburg,57457584,Kethy,Brooklyn,Bushwick,40.68523,-73.90665,Entire home/apt,65,10,2,2019-05-14,0.95,1,42 +33749769,HABITACIÓN COMPARTIDA PARA MUJERES AVENTURERAS!,223087887,Jess & Ana,Queens,Corona,40.74116,-73.86705,Shared room,25,2,10,2019-07-03,3.45,8,344 +33750981,Spacious 2 Bedroom apartment in Astoria,169490939,Ikrame,Queens,Astoria,40.7684,-73.92066,Entire home/apt,115,3,1,2019-04-28,0.42,2,188 +33751577,Luxury 3 Bed FiDi Charm Doorman Elevator | Laundry,254429373,James,Manhattan,Financial District,40.70563,-74.00919,Entire home/apt,325,5,7,2019-06-09,2.84,1,131 +33751903,Guest Bedroom in light-filled Williamsburg Loft,3286195,Huston,Brooklyn,Williamsburg,40.71839,-73.94621,Private room,75,1,8,2019-07-01,3.53,1,109 +33752082,"Hotel-like Private Room, KING Bed 25 min NYC",48684597,David,Queens,Maspeth,40.73612,-73.89519,Private room,50,1,19,2019-06-30,8.03,4,165 +33753198,"Chefs apt w/ art, plants, books & strong coffee",7875127,Evan,Brooklyn,Crown Heights,40.67468,-73.96149,Private room,65,2,1,2019-04-17,0.36,1,0 +33760723,Spacious Studio with easy access to NYC,211400652,Viktor,Staten Island,Arden Heights,40.55762,-74.19626,Entire home/apt,70,5,1,2019-07-03,1,1,55 +33763207,Lady's Powder Room,253753123,Basia,Brooklyn,Borough Park,40.63112,-73.99532,Private room,39,1,9,2019-07-04,3.70,1,11 +33765725,Modern Private Bath and Furnished Room Near Train,253690060,Winston,Bronx,Pelham Gardens,40.86674,-73.8428,Private room,75,5,0,,,1,188 +33766115,Cozy West Village apt,5549854,Maja,Manhattan,West Village,40.73684,-74.00844,Entire home/apt,170,4,2,2019-06-16,1.36,1,5 +33766179,"Large living room, near transit, gym, super clean",236430571,Marguerite,Brooklyn,Flatlands,40.6316,-73.94559,Entire home/apt,80,1,2,2019-06-02,1.02,1,132 +33767467,Beautiful & Tranquil Private Room in Williamsburg,9693094,Laksmi,Brooklyn,Williamsburg,40.70734,-73.96417,Private room,71,2,5,2019-07-02,2.88,1,182 +33767710,Hostal: 1 full size mattress bottom floor bunk bed,2793778,Fernando,Queens,Forest Hills,40.71692,-73.83439,Shared room,33,4,0,,,5,334 +33769887,Private! Studio New Modern Close To JFK LGA NYC :),87156911,Alex,Queens,Ozone Park,40.6752,-73.8552,Entire home/apt,100,1,15,2019-07-07,5.84,1,326 +33769930,quiet inwood space,254567452,Sophia,Manhattan,Inwood,40.87079,-73.91961,Private room,70,1,7,2019-06-04,2.59,1,73 +33771250,Marriott Vacation Club Pulse New York City,53481729,Barbara,Manhattan,Midtown,40.75104,-73.9852,Entire home/apt,275,1,0,,,1,0 +33771697,Cozy Central Park Pad Close To Everything!,253429887,Hubert & Val,Manhattan,Upper West Side,40.7762,-73.98028,Entire home/apt,274,4,9,2019-07-02,3.55,1,34 +33772674,Boerum Hill modern duplex with private backyard!,401659,Dd,Brooklyn,Boerum Hill,40.68581,-73.9833,Entire home/apt,140,4,2,2019-05-15,0.97,1,77 +33772781,Clean & Cozy apartment in East Village,11902072,Raashi,Manhattan,East Village,40.73036,-73.98701,Entire home/apt,130,2,6,2019-07-05,2.81,1,27 +33773521,Shar's Hideaway comfortable 1 bedroom suite,254592145,Sharon,Queens,Queens Village,40.70657,-73.72932,Private room,49,1,1,2019-04-20,0.37,1,0 +33774081,"Fully furnished studio, 10 mins away from JFK.",146484191,Roy,Queens,Springfield Gardens,40.66377,-73.76785,Entire home/apt,100,2,10,2019-06-25,4.23,1,353 +33774162,Shared room y Times Square,253906467,Erik,Manhattan,Hell's Kitchen,40.76483,-73.98975,Shared room,85,1,12,2019-06-27,4.09,9,349 +33774285,Lovely Sunny 1br in Bushwick,13500337,Ian,Brooklyn,East New York,40.66641,-73.89133,Private room,65,3,2,2019-05-09,0.80,2,364 +33775190,LUXURY Building in the Heart of Manhattan!,253978780,Sue,Manhattan,Midtown,40.7528,-73.97092,Entire home/apt,150,12,4,2019-05-23,1.38,1,118 +33775328,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,254607256,Heleen,Brooklyn,DUMBO,40.70416,-73.98999,Entire home/apt,250,30,0,,,2,365 +33775765,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,254607256,Heleen,Brooklyn,DUMBO,40.70238,-73.99181,Entire home/apt,250,30,0,,,2,0 +33775845,Little Italy/Lower East Side/ 3BR A+ Location!,254518753,Princess,Manhattan,Little Italy,40.7203,-73.99663,Entire home/apt,139,31,4,2019-05-19,1.52,1,139 +33775898,Cozy & Huge 1-Bed Apt in Harlem : Sparkling Clean,51434683,Seong,Manhattan,Harlem,40.80717,-73.94386,Entire home/apt,110,2,6,2019-06-28,2.31,1,0 +33776235,Bright apt in the heart of the lower east side!,42615337,Capucine,Manhattan,East Village,40.72241,-73.98554,Entire home/apt,180,5,1,2019-07-03,1,1,32 +33776470,West 57th Club by Hilton Club Studio Available,85385725,Benjamin,Manhattan,Midtown,40.76494,-73.97822,Private room,300,1,1,2019-04-15,0.35,2,364 +33776553,Spanish Harlem! Next to the 6 train in Manhattan!,251508221,Dee,Manhattan,East Harlem,40.79834,-73.94337,Entire home/apt,300,2,1,2019-05-15,0.55,1,180 +33776576,Modern Astoria Apartment,2312420,Marie-Claire,Queens,Astoria,40.75845,-73.9111,Entire home/apt,200,5,4,2019-07-01,2.35,2,95 +33777266,Home away in a cozy apartment in Times Square.,102221050,Maybee,Manhattan,Hell's Kitchen,40.76051,-73.98792,Entire home/apt,220,1,0,,,2,277 +33777889,E. WILLIAMSBURG ROOM WITH PRIVATE BALCONY,4204942,Victor,Brooklyn,Williamsburg,40.70403,-73.9428,Private room,69,2,1,2019-07-01,1,1,36 +33778143,The Blue Room by LGA/Kennedy Airporst & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76111,-73.88408,Private room,45,3,13,2019-07-03,5.42,2,80 +33778352,PRIME COZY HUGE Bedroom in Heart of NYC (RARE!!),28580275,Sommy,Manhattan,Midtown,40.75625,-73.96416,Private room,119,2,6,2019-06-30,2.69,4,297 +33779447,Amazing 1BR apartment in heart of Astoria,155902664,Pavel,Queens,Astoria,40.76829,-73.92625,Entire home/apt,125,1,14,2019-07-01,4.72,1,328 +33780071,Designer Madison Ave Studio with Brand New Kitchen,55782090,Chris,Manhattan,Upper East Side,40.78582,-73.95546,Entire home/apt,145,31,1,2019-05-31,0.77,2,304 +33780177,Private Bathroom Bedroom Near Subway,120763629,Mei,Brooklyn,Bath Beach,40.60471,-74.00243,Private room,59,2,0,,,2,361 +33780216,"M&C Garden, located in the heart of Astoria Ny",60754157,Mark & Christopher,Queens,Astoria,40.76649,-73.92356,Entire home/apt,225,2,3,2019-07-07,1.23,1,23 +33780377,"""Sea Gate"" Sunny, cozy, very clean studio app",194716858,Greg,Brooklyn,Sea Gate,40.57453,-74.00828,Entire home/apt,125,10,1,2019-06-20,1,1,180 +33781074,Comfortable apartment in the heart of Brooklyn.,26071530,Olman,Brooklyn,Crown Heights,40.67533,-73.94889,Entire home/apt,100,2,6,2019-07-07,2.54,2,0 +33781532,Fabulous 3BR/3BA NoMad Midtown LOFT,253474169,Zoie + Chris,Manhattan,Midtown,40.74615,-73.98872,Entire home/apt,800,3,13,2019-06-20,4.59,1,84 +33782555,"Cute and cozy, great downtown Manhattan location!",18885469,Leila,Manhattan,Chinatown,40.71483,-73.99801,Shared room,53,1,7,2019-06-26,2.92,1,58 +33782653,Packaged for one plus groups (ENSUITE KING ROYAL),242631139,Glen,Brooklyn,East Flatbush,40.64695,-73.93121,Private room,100,2,3,2019-06-23,1.14,4,365 +33783249,Is a beautiful place for recharge good energy....,110907551,Maria,Manhattan,Midtown,40.74501,-73.98319,Private room,150,10,0,,,2,89 +33783359,Sunny Modern Studio Near Columbus Circle,20235361,Cynthia,Manhattan,Upper West Side,40.77123,-73.98782,Entire home/apt,140,7,0,,,1,24 +33783445,MI CASA ES TÚ CASA,253118370,Mary,Queens,Flushing,40.76409,-73.82928,Private room,53,1,23,2019-07-07,8.73,2,161 +33784647,Style in the heart of Williamsburg w/ private bath,371936,Ryan,Brooklyn,Williamsburg,40.71704,-73.95799,Private room,89,1,1,2019-06-30,1,1,44 +33785223,"subway 1 min away, manhattan 10 min.",253571094,Jesus,Queens,Astoria,40.75839,-73.91191,Private room,90,1,9,2019-06-30,3.14,2,341 +33785477,Sunny Private Room close to Manhattan(Green),254771644,Jianren,Brooklyn,Bushwick,40.69682,-73.93067,Private room,66,2,8,2019-07-05,3.08,1,159 +33787433,3 Bedroom Spacious Apartment,251704655,Hamza,Bronx,Port Morris,40.80143,-73.91353,Entire home/apt,115,2,11,2019-06-24,4.46,3,6 +33787438,Cozy Studio in the heart of NYC,131544841,Taina,Manhattan,Kips Bay,40.74469,-73.98037,Entire home/apt,120,2,5,2019-07-07,2.05,1,10 +33787778,Uptown 1-bdr apartment. 2 stops to Times Sq!,222763653,Vaz,Manhattan,Morningside Heights,40.81342,-73.9565,Entire home/apt,165,1,15,2019-06-16,5.11,1,27 +33787919,"Rad Midtown West 2BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.76061,-73.98589,Entire home/apt,353,30,0,,,232,337 +33788019,Sun-Filled 3 Bedroom Apartment in Bronx,251704655,Hamza,Bronx,Port Morris,40.80273,-73.91519,Entire home/apt,115,4,9,2019-07-02,3.97,3,124 +33789647,Zen Room in Artist’s Apartment,61278683,Leela,Queens,Astoria,40.76429,-73.90967,Private room,120,2,6,2019-06-23,4.62,1,16 +33791537,Beautiful Veteran owned townhome,93763302,Demacoy,Queens,Arverne,40.59908,-73.79133,Entire home/apt,137,1,4,2019-06-02,2.18,1,273 +33796136,Sunny Long Island City Studio,104368542,Becca,Queens,Long Island City,40.74613,-73.94141,Entire home/apt,150,2,5,2019-07-06,3.33,1,103 +33796251,Beautiful private Brooklyn room with kitchenette,8748976,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68807,-73.95426,Private room,4200,114,0,,,1,347 +33796992,"Big Studio, 2 Queen beds with separate entrance",38503810,Wendy,Brooklyn,Williamsburg,40.71554,-73.96225,Entire home/apt,129,2,0,,,1,25 +33797564,SUNNY SUMMER SUBLET,73049484,Kumru,Brooklyn,Crown Heights,40.66623,-73.92874,Entire home/apt,100,50,0,,,2,225 +33797672,Island Dream,35224817,Nikki,Manhattan,Upper East Side,40.7613,-73.96152,Entire home/apt,220,1,0,,,1,32 +33798189,Charming RM w/ own bath. Easy Midtown & LGA access,137358866,Kazuya,Queens,Woodside,40.74496,-73.90779,Private room,59,30,0,,,103,252 +33798389,starlight of washington heights,186325219,Kenneth,Manhattan,Washington Heights,40.84008,-73.93684,Private room,100,5,0,,,1,365 +33798718,LUX high-rise apt in timesSQ with Huds river view,255173566,Al,Manhattan,Hell's Kitchen,40.76124,-74.00059,Entire home/apt,199,15,1,2019-04-23,0.38,1,179 +33800016,COZY ROOM IN PRIME MID EAST CLOSE TO EVERYTHING!!!,28580275,Sommy,Manhattan,Midtown,40.75661,-73.96396,Private room,100,2,4,2019-05-22,1.82,4,314 +33800548,"Entire Apartment in Flushing , Queens.",96219565,Carlyn,Queens,Flushing,40.75908,-73.80845,Entire home/apt,115,3,2,2019-06-30,2,1,360 +33800823,Spectacular 2bedroom near Subway-Cafes-Shop & MORE,253873710,Jalen,Manhattan,Upper West Side,40.7867,-73.97594,Entire home/apt,349,5,5,2019-07-04,1.95,1,220 +33800856,Private 2A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76037,-73.99171,Private room,110,1,10,2019-06-16,3.53,12,270 +33801117,Brooklyn Couples Retreat w/ spa bathroom,25308624,Michele,Brooklyn,Bedford-Stuyvesant,40.68129,-73.93437,Private room,75,5,4,2019-05-30,2.03,1,313 +33801421,The best building in Bed-Stuy,46430057,Pharohl,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94431,Entire home/apt,60,1,7,2019-07-01,7,1,17 +33801781,Lower East Side Classic Vibes,69831679,May,Manhattan,Lower East Side,40.72059,-73.98514,Entire home/apt,170,3,6,2019-07-01,2.57,1,235 +33802074,LARGE ROOM - FIT 2-3 GUESTS - SAFE & RENOVATED,73676969,Meezy,Bronx,Williamsbridge,40.87724,-73.85047,Private room,56,2,4,2019-06-20,3.24,3,70 +33803252,All the restaurants and bars you can ask for,255216752,Amaree,Bronx,Throgs Neck,40.82807,-73.82418,Entire home/apt,80,1,0,,,1,1 +33804063,"Bushwick apartment, thoughtful details",1200192,Christine,Brooklyn,Bushwick,40.69767,-73.93096,Private room,99,2,0,,,1,1 +33804180,Cozy farmhouse in NYC. 2 bdrms; 2 full baths. WiFi,163169045,Janice,Staten Island,Prince's Bay,40.52293,-74.21238,Entire home/apt,85,2,8,2019-06-24,3.33,1,66 +33804214,Studio sized room in Midtown-East Manhattan,136122177,Elizabeth,Manhattan,Kips Bay,40.74263,-73.97639,Private room,100,6,3,2019-05-31,1.30,1,0 +33806317,Welcome homey ! Your new artist friend :),7216350,Ume,Manhattan,Lower East Side,40.72152,-73.98625,Shared room,117,1,5,2019-06-24,2.03,1,139 +33807644,Williamsburg 30 days min. 2bath/en suite 2bedroom,10951481,Ann,Brooklyn,Williamsburg,40.71092,-73.96717,Entire home/apt,249,30,0,,,5,222 +33808226,FURNISHED NEW STUDIO EAST VILLAGE/SOHO/BOWERY,226699782,Vijay,Manhattan,Lower East Side,40.7215,-73.99171,Entire home/apt,120,2,10,2019-06-29,5.88,1,87 +33808368,Bright & Cheerful w/ Laundry & Free Cleaning!,161324994,Ashley At Bedly,Brooklyn,Bedford-Stuyvesant,40.69054,-73.92793,Private room,36,30,0,,,6,58 +33808465,"Access to public transportation +Near shopping area",255258800,Abie,Brooklyn,Midwood,40.61326,-73.94742,Private room,100,1,8,2019-07-05,3.00,1,179 +33808634,Gotham City oasis 10 min to the city,247189581,Helena,Brooklyn,Fort Greene,40.68557,-73.97288,Shared room,31,1,2,2019-06-09,1.62,5,73 +33809888,Modern and Cozy Queen Bedroom (Shared),225055374,David,Manhattan,Upper East Side,40.77203,-73.95344,Shared room,75,30,0,,,3,365 +33810134,Amazing Queen Bedrose UES (Shared),225055374,David,Manhattan,Upper East Side,40.77181,-73.953,Shared room,78,30,1,2019-05-22,0.63,3,365 +33810243,Azur Queen Bedroom UES (Shared),225055374,David,Manhattan,Upper East Side,40.77019,-73.95449,Shared room,75,30,0,,,3,331 +33810572,Shared Room and Exp Heart of Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76661,-73.99082,Shared room,85,1,12,2019-06-28,4.44,9,161 +33810599,Furnished modern studio luxury elevator building,28175069,Leanne,Manhattan,Financial District,40.71138,-74.00834,Entire home/apt,160,4,3,2019-07-08,1.38,1,0 +33812239,3 bedroom Apartment a few blocks from Union Square,34312950,Sam,Manhattan,East Village,40.72919,-73.98151,Entire home/apt,290,2,10,2019-06-26,4.29,1,254 +33820675,*Private room with new bedroom set and mattress,10149317,Lana,Queens,Kew Gardens,40.70927,-73.82948,Private room,50,2,5,2019-06-02,1.88,5,319 +33822605,Brooklyn share next to train 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6783,-73.91055,Shared room,35,1,3,2019-06-07,1.11,17,77 +33823598,LOVELY 1 BED ROOM 10 MIN FR JFK WITH PRIVATE PORCH,29349060,Ode,Queens,St. Albans,40.68687,-73.76809,Private room,67,1,12,2019-07-06,4.74,3,365 +33825679,✭Spacious home in 2 unit house next to subway!✭,141885946,Jun,Brooklyn,Williamsburg,40.70961,-73.95598,Entire home/apt,265,1,9,2019-07-05,3.80,1,86 +33826205,"Gorgeous, light & bright apt in Bed Stuy + yard",57920236,Ashley,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95434,Entire home/apt,180,3,1,2019-06-04,0.83,1,98 +33826775,"Spacious, Light-Filled One-Bedroom in Williamsburg",255178006,John,Brooklyn,Williamsburg,40.70783,-73.94346,Entire home/apt,180,2,1,2019-04-22,0.38,1,10 +33827757,Great bars nearby & Quick 3min walk to Metro,128572217,Bedly Brooklyn,Brooklyn,Bedford-Stuyvesant,40.69117,-73.92805,Private room,36,11,0,,,1,48 +33827823,The Sweet Spot 2- Private Apt with a court yard,49523787,Joe,Manhattan,Harlem,40.8273,-73.94952,Private room,55,2,4,2019-06-02,1.94,2,76 +33828402,Trendy NYC Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79961,-73.95961,Private room,60,30,0,,,32,362 +33828501,Upper East Two Bed w/ 3 Beds | Sleeps 6 | Near Q,255408641,Jackson,Manhattan,Upper East Side,40.76996,-73.95771,Entire home/apt,250,5,7,2019-06-08,2.76,1,155 +33828528,Stunning Private Bedroom in Prime NYC/by Columbia!,238321374,Eyal,Manhattan,Upper West Side,40.7999,-73.95962,Private room,60,30,1,2019-06-27,1,32,314 +33828595,Ideal for Student: Upper West Side Private Bedroom,238321374,Eyal,Manhattan,Upper West Side,40.79848,-73.95983,Private room,60,30,0,,,32,328 +33828709,RARE | Romantic Studio ♥ West Village Landmark,254422886,Jessie,Manhattan,West Village,40.7334,-74.00075,Entire home/apt,250,1,0,,,1,76 +33828807,"Cozy room in Brooklyn Safe Area. 30m to D,N/Town",92897185,Nikolett,Brooklyn,Borough Park,40.63402,-74.0025,Private room,65,1,9,2019-06-29,3.38,2,46 +33829141,New Private Bedroom in Prime NYC / Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79834,-73.96117,Private room,60,30,1,2019-06-01,0.79,32,335 +33829512,Vibrant Private Bedroom in Central Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.80004,-73.96066,Private room,60,30,0,,,32,334 +33829538,Luxury 2 Bed 2 Full Bath Walk to Times Square,255414914,Stanley,Manhattan,Theater District,40.75746,-73.98795,Entire home/apt,420,5,14,2019-06-30,5.06,1,137 +33829619,**Private Room in Newly Renovated Apartment,10149317,Lana,Queens,Kew Gardens,40.70657,-73.82903,Private room,60,2,7,2019-06-29,2.63,5,305 +33830012,Spacious Private space in Park Slope,255420742,Tom & Reina,Brooklyn,Windsor Terrace,40.6602,-73.98052,Entire home/apt,155,1,7,2019-05-19,2.47,1,71 +33830298,Artsy Private Bedroom in UWS - Near Columbia U!,238321374,Eyal,Manhattan,Upper West Side,40.79972,-73.96107,Private room,60,30,0,,,32,342 +33830393,Newly Renovated Private Bedroom Near Columbia U!,238321374,Eyal,Manhattan,Upper West Side,40.79812,-73.96082,Private room,60,30,0,,,32,341 +33830460,Quaint East Village Apartment,46231814,Amber,Manhattan,East Village,40.72554,-73.98875,Private room,100,3,4,2019-05-26,2.00,3,0 +33830513,Dreamy Private Bedroom in Prime NYC Location (UWS),238321374,Eyal,Manhattan,Upper West Side,40.80037,-73.9594,Private room,60,30,0,,,32,311 +33830665,"Stylish Private Room in Upper West Side, Manhattan",238321374,Eyal,Manhattan,Upper West Side,40.79863,-73.96103,Private room,60,30,0,,,32,348 +33831016,Upper West Side/Central Park Sleek Private Bedroom,238321374,Eyal,Manhattan,Upper West Side,40.80035,-73.96106,Private room,60,30,0,,,32,250 +33831074,Sunny Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79995,-73.96139,Private room,60,30,0,,,32,83 +33831113,Sonder | Stock Exchange | Vibrant 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.01205,Entire home/apt,255,2,4,2019-06-20,1.62,327,215 +33831116,Sonder | Stock Exchange | Collected 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01199,Entire home/apt,229,2,5,2019-06-15,1.92,327,350 +33831120,Sonder | Stock Exchange | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70761,-74.01078,Entire home/apt,235,2,3,2019-05-19,1.11,327,340 +33831129,Charming and Bright Apt. in Heart of Williamsburg,8860345,Riya,Brooklyn,Williamsburg,40.71339,-73.96112,Entire home/apt,175,2,3,2019-06-17,1.14,1,4 +33831138,Modern Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.80006,-73.96095,Private room,60,30,0,,,32,37 +33831221,"Private Bedroom in Prime Location, Upper West Side",238321374,Eyal,Manhattan,Upper West Side,40.80036,-73.96075,Private room,60,30,0,,,32,51 +33831236,211 east 34 st Room 1,255431206,Mohammed,Brooklyn,East Flatbush,40.65239,-73.94454,Private room,40,7,1,2019-06-03,0.81,9,346 +33832027,Studio in an Upscale Beautiful Neighborhood,42422120,Yasmine,Queens,Forest Hills,40.7201,-73.83723,Shared room,60,2,2,2019-06-05,1.11,1,0 +33832840,"Beautiful, Cozy & Private Bedroom in Bushwick BKLN",11123552,Paola,Brooklyn,Bushwick,40.7011,-73.92194,Private room,50,1,26,2019-07-05,9.40,2,74 +33833257,Huge Room In Lovely Apartment. 30 Min To Manhattan,255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.67994,-73.9135,Private room,60,1,14,2019-07-02,5.25,3,20 +33833470,Sonder | Stock Exchange | Smart 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70779,-74.01249,Entire home/apt,390,2,8,2019-06-24,3.04,327,243 +33833596,Convenient & Cozy Upper West Side 2 Beds Apartment,40629507,Ceive,Manhattan,Upper West Side,40.80238,-73.96737,Entire home/apt,140,1,8,2019-06-16,4.36,1,0 +33833636,Sonder | Stock Exchange | Timeless 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70709,-74.01037,Entire home/apt,475,2,7,2019-06-18,3.23,327,253 +33833725,Cozy Home Nested Between Soho and The West Village,158694,Beatrix,Manhattan,SoHo,40.72825,-74.0033,Private room,150,5,1,2019-04-30,0.43,1,97 +33833887,Sonder | Stock Exchange | Vintage 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01117,Entire home/apt,228,2,1,2019-05-26,0.68,327,357 +33834873,Cutely designed room in Williamsburg apartment,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71216,-73.94246,Private room,70,3,12,2019-07-07,6.67,3,142 +33835358,Rustic Room East Williamsburg 15 Min to Manhattan,210019212,Holden,Brooklyn,Bushwick,40.70697,-73.92401,Private room,54,5,9,2019-07-01,3.75,3,0 +33835408,Luxury Corner Apt&bigTerrace. Water&city view 55Fl,67738361,Julie,Manhattan,Hell's Kitchen,40.75966,-73.99277,Entire home/apt,350,1,0,,,2,83 +33835470,"""The Grand Budapest"" room in Brooklyn!",255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.67965,-73.91168,Private room,55,1,15,2019-07-07,5.92,3,15 +33836115,Private Room in PRIME Manhattan Location,119798153,Amy,Manhattan,Upper East Side,40.76853,-73.96407,Private room,79,1,8,2019-07-01,4.53,1,31 +33837065,Modern west village one bedroom,359537,Albert,Manhattan,West Village,40.73393,-74.00552,Entire home/apt,250,5,0,,,1,365 +33845173,"Cozy, Friendly Apt Share For Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66945,-73.95717,Private room,64,30,1,2019-06-29,1,7,94 +33845393,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66999,-73.95959,Private room,65,30,1,2019-05-04,0.45,7,237 +33846501,Packaged for one and groups (QUEEN B),242631139,Glen,Brooklyn,East Flatbush,40.64683,-73.93003,Private room,90,2,6,2019-06-02,2.25,4,360 +33847217,BIG BEDROOM CLOSE TO LA GUARDIA AIRPORT FREE WIFI,22784412,Stephanie,Queens,East Elmhurst,40.76402,-73.89098,Private room,44,1,0,,,2,0 +33849375,Beautiful Park Slope summer 1-bedroom sublet,10873558,Michelle,Brooklyn,Park Slope,40.67093,-73.97555,Entire home/apt,101,60,0,,,2,32 +33849970,"3min to Grand Ave subway, newly built in 2015",19303369,Hiroki,Queens,Elmhurst,40.7387,-73.8771,Private room,33,30,0,,,37,31 +33850135,Private & Quiet Oasis in the Center of NYC,253637076,Sergey,Manhattan,Chelsea,40.74034,-74.00084,Entire home/apt,162,2,6,2019-06-23,2.20,1,66 +33850661,Amazing private room 5 min time square,45578040,Ryan,Manhattan,Hell's Kitchen,40.76921,-73.99239,Private room,105,1,1,2019-04-18,0.37,2,0 +33851532,Rooftop Terrace Penthouse 2 Bed Near Central Park,255440488,Jacob And Michelle,Manhattan,Hell's Kitchen,40.76347,-73.98776,Entire home/apt,420,5,10,2019-06-29,4.48,1,130 +33851754,BrooklynRoom,13672021,Andrea,Brooklyn,Boerum Hill,40.68325,-73.98126,Private room,46,1,0,,,1,0 +33851822,Laundry + Free Cleaning - 5min to Metro,161324994,Ashley At Bedly,Brooklyn,Bedford-Stuyvesant,40.69077,-73.92667,Private room,36,30,0,,,6,38 +33851889,Spacious Room in great location,37917699,Moises,Manhattan,Inwood,40.86202,-73.92771,Private room,45,2,2,2019-06-19,2,1,180 +33852169,Large East Village Private Room & Private bathroom,37792599,Moji,Manhattan,East Village,40.72485,-73.98422,Private room,119,2,3,2019-05-24,1.32,1,2 +33852557,Spanish Harlem magical place full of life .,254112876,David,Manhattan,East Harlem,40.7958,-73.93766,Private room,90,2,8,2019-07-02,3.08,2,174 +33852604,Sunny-Junior-one bedroom-Prospect/Lefferts garden,112909067,Chaya,Brooklyn,Prospect-Lefferts Gardens,40.6605,-73.94767,Entire home/apt,120,2,9,2019-07-01,3.38,1,10 +33853158,2 bedroom on the Brighton Beach by the ocean,73397630,Anastasia,Brooklyn,Brighton Beach,40.57859,-73.95962,Entire home/apt,160,2,1,2019-04-29,0.42,1,102 +33853642,Comfy basement suite,78185278,Quisquella,Bronx,Woodlawn,40.90406,-73.86286,Entire home/apt,65,1,1,2019-07-04,1,1,29 +33853876,Middle of Manhattan,62289627,Braulio,Manhattan,Hell's Kitchen,40.75939,-73.99501,Private room,100,1,1,2019-04-24,0.39,1,23 +33853889,Private Spacious Bedroom in lush green Fort George,45776423,Aman,Manhattan,Washington Heights,40.85719,-73.93048,Private room,35,3,3,2019-06-14,3,1,5 +33854066,Birdman movie Room in Brooklyn.30 Min to Manhattan,255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.68078,-73.91283,Private room,55,1,15,2019-07-07,5.49,3,20 +33854406,"Beautiful condo in quiet Parkchester, close to NYC",16851857,Paul,Bronx,Parkchester,40.83516,-73.86024,Entire home/apt,85,2,1,2019-06-24,1,4,349 +33855726,Modern 2 Br Apartment in Brooklyn. Close to NYC,107950422,Eric And Tansey,Brooklyn,Bushwick,40.68773,-73.91039,Private room,88,28,5,2019-06-30,2.73,1,24 +33855937,"BRIGHT, STUNNING ROOM WITH AMAZING VIEWS.",117999420,Clemente,Manhattan,Upper East Side,40.76236,-73.96482,Private room,160,3,7,2019-07-01,2.47,1,81 +33855990,Master Bedroom in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.6897,-73.91146,Private room,70,2,8,2019-06-04,3.08,3,61 +33856310,Sunny Summer Space in Brooklyn’s Stuyvesant East,229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68305,-73.92322,Entire home/apt,76,3,7,2019-07-05,4.29,3,285 +33856727,Master Bedroom w/Private bath Artsy Apt in Bushwik,2373120,Elena,Brooklyn,Bushwick,40.70041,-73.92884,Private room,90,5,2,2019-06-30,0.94,2,323 +33856906,Relax in SoHo with private outdoor space,14909731,Gardea,Manhattan,Nolita,40.72202,-73.99491,Entire home/apt,200,2,7,2019-07-04,3.56,1,252 +33857172,Cozy Queen Bedroom Private Half Bathroom in Harlem,25272468,Anastasia,Manhattan,Harlem,40.82032,-73.94464,Private room,59,1,6,2019-06-30,4.62,1,74 +33857708,"Sunnyside room close to subway, Midtown & LGA.",137358866,Kazuya,Queens,Sunnyside,40.73614,-73.92068,Private room,35,30,0,,,103,245 +33858603,Sunny,15347665,Catalina,Manhattan,Harlem,40.819,-73.94568,Entire home/apt,160,29,0,,,1,0 +33859371,Duplex Penthouse w Sprawling Outdoor Terrace,255675063,Alexander,Brooklyn,Williamsburg,40.71664,-73.94534,Entire home/apt,300,15,0,,,1,35 +33865520,Great 1BR in Times Square with terrace and view,253619642,Matt Et Vero,Manhattan,Hell's Kitchen,40.76412,-73.99173,Entire home/apt,269,5,0,,,1,19 +33866860,"A+ Chelsea Location! MSG, Javits, Penn!",231755465,Mishael,Manhattan,Chelsea,40.74945,-73.99511,Entire home/apt,99,31,4,2019-06-14,1.45,1,165 +33867882,Charming private bedroom in Hell’s Kitchen,9718310,Allan,Manhattan,Hell's Kitchen,40.76335,-73.99051,Private room,65,2,3,2019-05-27,1.25,1,0 +33869355,"Cozy big Apt, Manhattan, Columbia, Central Park",163365183,Sijia,Manhattan,Morningside Heights,40.81153,-73.96112,Shared room,34,5,0,,,1,14 +33870097,"Convenient, bright 1Bdr in Williamsburg, Brooklyn",2405781,Jeff,Brooklyn,Williamsburg,40.71139,-73.9598,Entire home/apt,150,2,4,2019-05-26,1.71,1,1 +33870501,2 BDR apt in Brownstone Greenpoint Williamsburg,38257294,Casha,Brooklyn,Greenpoint,40.72599,-73.95498,Private room,185,1,8,2019-07-05,5.45,1,123 +33871041,"High floor, sunny, clean and cozy FiDi apt:)",48419016,Stefanie,Manhattan,Financial District,40.70388,-74.0082,Entire home/apt,165,2,6,2019-07-01,2.50,1,1 +33873570,Lexi's Global Retreat in Flatbush! (New Host!!),255787023,Anderson,Brooklyn,East Flatbush,40.64418,-73.92556,Private room,125,1,11,2019-06-27,4.58,1,29 +33874579,Middle town luxury studio close to penn station,210193549,Jiangbin,Manhattan,Chelsea,40.75114,-73.99843,Entire home/apt,150,8,3,2019-06-12,1.05,1,39 +33875614,Artist's Harlem Apartment,16439835,Janice,Manhattan,Harlem,40.81003,-73.94535,Entire home/apt,100,6,0,,,1,332 +33877113,Luxurious Rooms,255811821,Mary,Queens,Jamaica,40.68787,-73.77727,Private room,88,2,2,2019-05-31,1.50,1,180 +33877682,Huge private room in convenient south Brooklyn,2640420,Laurin,Brooklyn,Gowanus,40.67435,-73.9891,Private room,99,1,20,2019-07-07,10.17,1,1 +33877798,NYC High End Upper East Side Central Park Gem Home,147675745,Freda,Manhattan,Upper East Side,40.77867,-73.95143,Entire home/apt,151,1,30,2019-07-01,11.25,1,42 +33877942,Crown Heights Amazing,57403189,Joslin,Brooklyn,Crown Heights,40.67637,-73.94309,Entire home/apt,105,2,6,2019-07-01,2.25,2,286 +33878676,TRIBECA-Huge One Bedroom Doorman Apt,26248578,Iskender Turgay,Manhattan,Civic Center,40.71715,-74.00368,Entire home/apt,345,2,1,2019-04-17,0.36,1,179 +33880071,Beautiful Studio,255845450,Ariel,Manhattan,East Harlem,40.7866,-73.94225,Entire home/apt,150,2,2,2019-05-05,0.87,1,102 +33880238,Putnam Townhome,18007143,Dwayne,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95136,Private room,57,2,12,2019-07-01,4.93,1,51 +33880288,Perfect Location!,3128437,Natalie,Queens,Astoria,40.75792,-73.92249,Private room,120,1,0,,,2,89 +33880355,Modern yet Cozy! Awesome Roommates and Near Metro!,114389578,Beck & Brad,Brooklyn,Bedford-Stuyvesant,40.6794,-73.94996,Private room,34,30,0,,,1,40 +33880820,"Cute, comfy room in beautiful Brooklyn brownstone",6410618,Marie,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95004,Private room,65,4,1,2019-05-26,0.67,1,17 +33880913,Perfect Midtown East 1 Bed Just One Flight Stairs,255853430,William,Manhattan,Midtown,40.75886,-73.96596,Entire home/apt,200,5,12,2019-07-07,5.63,1,127 +33881088,Cozy Sm Room Furnished!,5986790,Gen,Manhattan,Washington Heights,40.83532,-73.94428,Private room,47,5,4,2019-06-26,1.58,6,272 +33881136,Cozy Brooklyn Getaway,255856907,Chanel,Brooklyn,Crown Heights,40.6756,-73.9251,Private room,100,3,2,2019-06-19,1.33,1,163 +33881201,SoHo + Greenwich Penthouse Escape! Cozy Studio!,254522143,Julie Anne,Manhattan,Greenwich Village,40.7277,-74.00104,Entire home/apt,129,31,7,2019-06-29,2.80,1,167 +33883497,Beautiful 2BR Bed Stuy Apartment,255882354,Dolores & David,Brooklyn,Bedford-Stuyvesant,40.67917,-73.94624,Entire home/apt,150,2,3,2019-07-04,3,1,251 +33883852,Charming Studio with Fantastic Location,137581011,Norbert,Manhattan,Hell's Kitchen,40.76491,-73.98659,Entire home/apt,165,5,0,,,1,67 +33884341,Sunny Private Room close to Manhattan(Blue),255890676,Hok Thu,Brooklyn,Bushwick,40.69612,-73.92918,Private room,66,2,11,2019-07-01,4.23,1,147 +33884349,Comfy Bronx home away from home,54136018,Louise,Bronx,Kingsbridge,40.86925,-73.89974,Private room,35,1,8,2019-06-27,8,1,48 +33885227,Sunny Private Room close to Manhattan(Yellow),255899465,Long,Brooklyn,Bushwick,40.69814,-73.9286,Private room,63,2,10,2019-06-30,3.85,1,127 +33885308,"Spacious, natural light room in EAST WILLIAMSBURG",64675514,Alexis,Brooklyn,Williamsburg,40.70867,-73.93891,Private room,65,15,1,2019-06-07,0.94,1,0 +33887493,Cute room in HK,133130315,Artem,Manhattan,Hell's Kitchen,40.76582,-73.98571,Private room,100,3,0,,,6,351 +33888418,Beautiful room in East Village spacious apartment,1409287,Adrian,Manhattan,East Village,40.72777,-73.97951,Private room,180,3,0,,,1,91 +33891559,"Dapper 1BR in Upper East Side w/ Doorman + Gym, next to Central Park",107434423,Blueground,Manhattan,Upper West Side,40.78548,-73.97078,Entire home/apt,352,30,0,,,232,202 +33892511,Greenpoint Sunrise Studio (Private / Entire Apt),255946767,Jacqueline,Brooklyn,Greenpoint,40.73292,-73.95395,Entire home/apt,150,2,2,2019-06-30,2,1,241 +33893655,Studio in doorman building in Tribeca,138798990,Jonas,Manhattan,Tribeca,40.7243,-74.0111,Entire home/apt,225,3,0,,,1,42 +33896459,Luxurious 2BR Midtown Manhattan Perfect Location Fantastic views,255433680,Jiaming,Manhattan,Hell's Kitchen,40.77127,-73.99237,Entire home/apt,360,2,13,2019-06-25,4.94,1,251 +33897702,Privacy in a shared Space!! Males Only Plz,27260699,J,Brooklyn,Bushwick,40.69541,-73.90785,Shared room,28,1,8,2019-06-17,3.20,4,41 +33897838,NEW- Sunny and Modern Cobble Hill 1 Bedroom,255980743,Ashley,Brooklyn,Cobble Hill,40.68834,-73.9989,Entire home/apt,170,2,5,2019-06-19,2.31,1,43 +33898321,Room in heart of NoHo/East Village,8518291,Carolina,Manhattan,East Village,40.7284,-73.99053,Private room,61,30,3,2019-06-01,1.76,1,84 +33898799,Location! Room in Bklyn 10 minutes to Manhattan B2,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69804,-73.94546,Private room,79,2,9,2019-07-06,3.33,6,136 +33899066,Epic 3bdr 2bath next to the best rooftop bars,174760879,Anthony,Manhattan,Lower East Side,40.71697,-73.98605,Entire home/apt,325,4,4,2019-07-07,2.03,1,65 +33899850,Privacy in a Shared Space! Males only plz,27260699,J,Brooklyn,Bushwick,40.69606,-73.9095,Shared room,28,1,4,2019-06-24,1.71,4,53 +33900104,Clean and comfortable Upper East Side location,253071059,Eugenio,Manhattan,East Harlem,40.78995,-73.94603,Private room,100,1,7,2019-05-28,2.56,1,0 +33900546,The Green Place,101790764,Zabi,Queens,Long Island City,40.74895,-73.9474,Entire home/apt,199,2,6,2019-06-22,2.81,2,175 +33900721,NEW COZY STUDIO WITH LARGE PRIVATE OUTDOOR SPACE,81712936,Allie,Manhattan,Upper East Side,40.78202,-73.94826,Entire home/apt,200,3,3,2019-06-14,1.76,2,0 +33900911,Gorgeous Apartment on the Upper West Side,131171018,Aaron,Manhattan,Upper West Side,40.77318,-73.98836,Entire home/apt,300,3,2,2019-07-01,1.33,1,13 +33901005,"Sunny, Spacious, Cozy, Charming Brooklyn Abode",192752,Danielle,Brooklyn,Park Slope,40.67599,-73.97664,Entire home/apt,145,5,0,,,1,38 +33901138,Location! Room in Bklyn 10 minutes to Manhattan B3,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69765,-73.94715,Private room,81,2,10,2019-07-05,4.17,6,121 +33902284,Location! Room in Bklyn 10 minutes to Manhattan U1,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69952,-73.9451,Private room,81,2,13,2019-07-06,4.87,6,164 +33902619,Location! Room in Bklyn 10 minutes to Manhattan U2,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69806,-73.94544,Private room,81,1,9,2019-06-24,3.80,6,105 +33902876,Location! Room in Bklyn 10 minutes to Manhattan U3,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69741,-73.94555,Private room,81,2,9,2019-06-21,3.91,6,128 +33903016,Appartment-2 rooms,198853982,Brigit,Brooklyn,Cypress Hills,40.68892,-73.87167,Entire home/apt,100,2,6,2019-06-12,2.34,2,150 +33903248,Location! Room in Bklyn 10 minutes to Manhattan B1,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69915,-73.94709,Private room,81,2,0,,,6,150 +33903300,Affordable Luxury 2 Bedroom & 2 Bath In Brooklyn,147983579,Chy,Brooklyn,Bedford-Stuyvesant,40.68946,-73.94181,Entire home/apt,165,4,9,2019-07-01,4.03,2,201 +33903781,Sunny and spacious home in Greenpoint,114589786,Pamela,Brooklyn,Greenpoint,40.72215,-73.94317,Private room,75,5,2,2019-06-28,1.20,1,0 +33904680,HUGE Master Suite in Spacious Duplex,10374669,Josephine,Manhattan,Hell's Kitchen,40.76537,-73.98767,Private room,92,5,2,2019-06-09,0.71,1,187 +33905074,The Guest House,256032762,The,Queens,Elmhurst,40.73136,-73.87402,Private room,70,2,3,2019-06-17,1.67,1,0 +33906539,Eclectic Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70913,-73.89486,Private room,34,30,0,,,23,324 +33906887,New renovation cozy home 12 min train to Manhattan,251156430,Emma,Queens,Woodside,40.74508,-73.90291,Shared room,65,2,8,2019-06-29,3.04,1,89 +33907003,Unique Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.7081,-73.89507,Private room,34,30,0,,,23,278 +33907325,TW #5 Private Rm - 1st Fl. Queen Bed 1 to 2 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.83715,-73.83489,Private room,60,1,20,2019-06-30,7.59,5,343 +33907604,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70722,-73.89614,Private room,34,30,1,2019-05-26,0.68,23,281 +33907635,Charming Studio in the heart of Upper East Side,90052526,Olga,Manhattan,Upper East Side,40.77414,-73.95301,Entire home/apt,140,3,5,2019-07-02,2.46,1,18 +33907731,Cozy Modern Townhouse Garden Apt,53621,Monica,Brooklyn,Bedford-Stuyvesant,40.69258,-73.93638,Entire home/apt,95,5,3,2019-07-02,2.09,2,120 +33907801,Stylish Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70775,-73.89472,Private room,34,30,0,,,23,201 +33908098,Cozy Room near Prospect Park!,42483494,Chris,Brooklyn,Windsor Terrace,40.64807,-73.9789,Private room,40,7,0,,,1,102 +33908121,"Shopping , City, Close the water Distance",212629546,Saadet,Brooklyn,Fort Hamilton,40.61523,-74.02917,Private room,60,4,0,,,1,155 +33908256,Bright & designed apartment in Brooklyn,254795926,David,Brooklyn,Crown Heights,40.67144,-73.94613,Entire home/apt,120,2,14,2019-06-29,5.60,1,298 +33908307,Stuyvesant Heights quiet private Apartment,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68682,-73.93493,Entire home/apt,130,29,1,2019-06-22,1,2,283 +33908446,"Free Cleaning & WiFi, Quick Walk to Metro-Modern!",133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.69116,-73.92658,Private room,35,30,1,2019-05-13,0.52,3,53 +33909064,Clinton Hill/Bed Stuy Artist Retreat,8859112,Navin,Brooklyn,Bedford-Stuyvesant,40.69214,-73.95217,Entire home/apt,189,3,10,2019-06-30,3.66,2,349 +33909151,"Mi casa es tu casa, habitación 2",241565326,Valentina,Queens,Woodside,40.74351,-73.90405,Private room,44,1,11,2019-07-01,7.67,2,331 +33909411,Stuyvesant Heights quiet private Apt - 2 bedrooms,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68492,-73.9334,Entire home/apt,135,20,2,2019-06-18,1.50,2,285 +33909508,Private room in Manhattan,173673660,Jessica,Manhattan,Washington Heights,40.8415,-73.9375,Private room,55,2,6,2019-07-01,2.54,1,0 +33909511,Executive room for professional.,1709718,Victoria,Manhattan,Midtown,40.7651,-73.97808,Private room,199,1,1,2019-04-29,0.42,2,350 +33909539,"Luxury studio w/doorman,gym,sauna,washer/dryer",19057986,Dan,Brooklyn,Crown Heights,40.67794,-73.96023,Entire home/apt,400,1,2,2019-05-05,0.82,1,362 +33909633,"Amazing 3 Bed Apt, Less than 5 mins to Manhattan",251229393,Rafu,Queens,Long Island City,40.74657,-73.93289,Entire home/apt,129,1,3,2019-06-14,1.70,2,95 +33910078,Bright & Cozy Apartment walking distance to Subway,256071378,Maggie,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93232,Entire home/apt,225,2,10,2019-06-19,4.17,1,38 +33910837,Nest,209332627,Adriana,Manhattan,Washington Heights,40.85531,-73.9283,Private room,75,2,1,2019-04-29,0.42,2,58 +33910920,Free Cleaning & WiFi-Near Train + Bars & Nightlife,133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.6908,-73.92784,Private room,35,30,1,2019-06-16,1,3,53 +33911027,Centrally located on Broadway -Quick walk to metro,133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.68938,-73.9263,Private room,35,30,0,,,3,54 +33911544,Best Location in NYC! 4BR Steps to Central Park!,255674126,Cristina,Manhattan,Upper East Side,40.76458,-73.96759,Entire home/apt,159,31,9,2019-06-12,3.42,1,157 +33911691,Private room close to the JFK airport,66132548,Rochelle,Brooklyn,Cypress Hills,40.68567,-73.87985,Private room,36,1,8,2019-06-23,3.69,1,192 +33912045,chill zone,176119156,Monica,Brooklyn,Williamsburg,40.70628,-73.9379,Entire home/apt,190,1,13,2019-06-23,5.91,1,171 +33912291,Bright and Chill Room in Bushwick for two friends!,18765976,Mihail,Brooklyn,Bushwick,40.69903,-73.9149,Private room,70,1,14,2019-06-30,5.32,4,78 +33912483,Charming 2Bdr in Park Slope with roof deck,15676792,Louis-Marie,Brooklyn,Park Slope,40.6763,-73.97287,Entire home/apt,186,5,0,,,1,107 +33913644,"Modern and bright 2Bed 2Bath Bushwick, Brooklyn",50981314,Ofier,Brooklyn,Bushwick,40.70205,-73.91338,Entire home/apt,150,2,4,2019-07-07,1.64,1,89 +33913682,Cozy room with turquoise accent in historic Harlem,27277379,Karina,Manhattan,Harlem,40.81482,-73.94477,Private room,75,2,9,2019-07-03,3.75,1,227 +33913702,Artsy apt in the heart of Brooklyn -- Near all!,27936743,Amy,Brooklyn,Bedford-Stuyvesant,40.68466,-73.94349,Entire home/apt,75,2,4,2019-06-19,1.85,1,103 +33914381,Sunny and Cozy in Upper Manhattan,77515,Judi,Manhattan,Washington Heights,40.83266,-73.9414,Private room,45,3,6,2019-06-23,2.31,1,4 +33914432,"Large, Peaceful Private Room in Bushwick",18765976,Mihail,Brooklyn,Bushwick,40.69916,-73.91572,Private room,68,1,9,2019-07-02,3.42,4,55 +33914554,3 Bedroom Full house - 15mins to NYC/Ferry,161357125,Mohsin,Staten Island,Todt Hill,40.61041,-74.11593,Entire home/apt,135,3,2,2019-06-23,0.86,3,36 +33915820,Manhattan Ave Apartment 2 stops from Times Square,18416970,Ryan,Manhattan,Harlem,40.80712,-73.95686,Private room,103,2,14,2019-07-07,5.83,1,19 +33915843,Beautiful duplex apartment by Times Square,253906467,Erik,Manhattan,Hell's Kitchen,40.7665,-73.98943,Shared room,85,1,9,2019-07-04,3.25,9,365 +33916529,Entire Studio Apartment Over Looking Central Park,101965358,Ana,Manhattan,East Harlem,40.79551,-73.94813,Entire home/apt,200,7,2,2019-05-22,0.95,1,173 +33917759,Central Park North Max-Room,234483148,Makis,Manhattan,Harlem,40.80332,-73.94853,Private room,95,1,11,2019-07-03,4.58,2,256 +33917958,"LGA / Midtown, Prime room space w/ elevator +more",137358866,Kazuya,Queens,Woodside,40.74506,-73.90602,Private room,56,30,0,,,103,242 +33923209,"Queens SPACIOUS Bedroom, 1–3 people, 25 min to NYC",254542999,Cheryl,Queens,Sunnyside,40.73591,-73.92415,Private room,90,2,12,2019-06-30,5.14,1,57 +33925600,"Nice room in Brooklyn, Safe area 30m to D,N/Town",92897185,Nikolett,Brooklyn,Borough Park,40.6348,-74.00304,Private room,60,1,6,2019-06-23,2.25,2,46 +33926057,ONLY WOMEN/CAMAS PARA MUJER/HABITACIÓN COMPARTIDA,223087887,Jess & Ana,Queens,Corona,40.74116,-73.86667,Shared room,24,1,4,2019-05-04,1.52,8,346 +33926074,Cozy Artist's Haven Brooklyn Apartment,83615522,Constance,Brooklyn,Crown Heights,40.66681,-73.9549,Private room,45,2,4,2019-06-29,2.26,1,10 +33927253,Private Room@Columbia University neighborhood,114502772,Peter,Manhattan,Upper West Side,40.80144,-73.96409,Private room,44,2,1,2019-05-15,0.55,1,0 +33927923,"Spacious, Sunny, and quiet sanctuary in FlatbushBK",2282687,Maarouf,Brooklyn,Flatbush,40.65164,-73.95533,Entire home/apt,120,4,1,2019-05-08,0.48,1,0 +33928971,Large 1BR apt. in luxury West Village building.,158709729,Michael,Manhattan,West Village,40.73264,-74.00422,Entire home/apt,450,2,4,2019-06-28,2.55,1,43 +33929577,"Couch(sofácama), only women, near LGA & Manhattan",223087887,Jess & Ana,Queens,Corona,40.74086,-73.86618,Shared room,24,1,3,2019-05-12,1.11,8,332 +33929652,Private Bedroom In 5BR Apt W 2 Baths Near 3 Trains,242962235,Yuval,Queens,Ridgewood,40.7093,-73.8954,Private room,34,30,0,,,23,252 +33930074,"Your Private Oasis In A Shared Apt, Near 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70893,-73.89636,Private room,34,30,0,,,23,243 +33930406,Absolutely Beautiful!,20851517,Maggie,Manhattan,Hell's Kitchen,40.76597,-73.9893,Private room,98,6,2,2019-05-14,0.97,3,4 +33930602,Your New Private Bedroom Awaits! Near Good Transit,242962235,Yuval,Queens,Ridgewood,40.70897,-73.89663,Private room,34,30,0,,,23,335 +33930883,Beautiful 2 bedroom 2 bathroom in East Harlem,49796888,Reema,Manhattan,East Harlem,40.79819,-73.93953,Entire home/apt,500,2,0,,,1,55 +33930925,"Spacious Private Room W 3 Nearby Trains, In Queens",242962235,Yuval,Queens,Ridgewood,40.70762,-73.89526,Private room,34,30,0,,,23,317 +33931270,Sleek & Sunny Private Bedroom With 3 Local Trains,242962235,Yuval,Queens,Ridgewood,40.70862,-73.89536,Private room,34,30,0,,,23,314 +33931985,"New, Adorable Williamsburg One-Bedroom",229141974,Mah,Brooklyn,Williamsburg,40.70409,-73.94078,Entire home/apt,195,2,1,2019-05-06,0.47,1,0 +33932313,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70876,-73.89704,Private room,34,30,0,,,23,322 +33932433,"Room w/Loft & Private Bathroom, Private Entrance",55143966,Jason,Brooklyn,Bushwick,40.69764,-73.91585,Private room,62,17,2,2019-07-02,0.78,1,21 +33932486,Shared Couch in Shared Studio,274333,Janu,Manhattan,Harlem,40.80298,-73.95375,Shared room,20,1,0,,,3,2 +33932573,Modern Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70769,-73.89641,Private room,34,30,1,2019-06-08,1,23,325 +33932806,Trendy Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70885,-73.89634,Private room,34,30,0,,,23,136 +33932981,Peaceful Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70937,-73.89702,Private room,34,30,0,,,23,192 +33933219,24hr access recording studio with on call engineer,61950433,Amin,Brooklyn,Clinton Hill,40.69593,-73.97003,Private room,75,1,0,,,1,0 +33933477,Comfortable! 2 Bed Rm Apt. in House~20 min to NYC,38377515,Gil,Bronx,Clason Point,40.81338,-73.85821,Entire home/apt,75,2,5,2019-07-06,5,1,86 +33933527,Beautiful Private Room in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78222,-73.9456,Private room,95,3,3,2019-05-15,1.10,9,8 +33933592,Stylish 4 BR APT in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70807,-73.89483,Private room,34,30,0,,,23,322 +33934534,#1 Shared ROOM 4YOU for 6 guests,256235740,Levi,Brooklyn,Crown Heights,40.66738,-73.93669,Shared room,25,2,1,2019-05-28,0.71,3,167 +33935442,Manhattan/帝国大夏/ time square【3】,107245546,Michael,Manhattan,Chelsea,40.74578,-73.99091,Private room,130,2,3,2019-06-23,3,3,132 +33936370,Cozy room with 3 windows.,43676525,Filip,Brooklyn,Bushwick,40.69174,-73.90811,Private room,40,30,0,,,1,365 +33937108,#2 ROOM 4LEDY (4 guests),256235740,Levi,Brooklyn,Crown Heights,40.66779,-73.93729,Shared room,45,2,0,,,3,179 +33937444,NEW! Beautiful room in flat w/ rooftop in SOHO :),35955942,Corinna,Manhattan,Nolita,40.72365,-73.99377,Private room,150,4,2,2019-06-10,1.82,1,6 +33937844,"Spacious, Light-Filled, Private Bklyn 2-Bedroom",255990804,Joel,Brooklyn,Crown Heights,40.66549,-73.94616,Entire home/apt,220,2,4,2019-06-05,2.03,1,251 +33937907,Antonio's place,36242952,Antonio,Queens,Long Island City,40.75009,-73.94864,Private room,85,1,15,2019-07-02,6.00,1,67 +33938000,Super Spacious Room! Private bathroom! LES/Soho,71400423,Maria,Manhattan,Lower East Side,40.71983,-73.98981,Private room,135,1,10,2019-06-20,4.05,3,93 +33940543,211 east 34 stRoom 3,255431206,Mohammed,Brooklyn,East Flatbush,40.65295,-73.9463,Private room,42,7,4,2019-07-01,2.55,9,120 +33941416,Comfy Room in Williamsburg! Close to 3 subways!,256299491,Anthony,Brooklyn,Williamsburg,40.70445,-73.94491,Private room,75,4,5,2019-06-29,2.27,1,6 +33941653,The Eagle's Nest,82380968,Loretta,Manhattan,Harlem,40.80437,-73.94595,Private room,85,1,3,2019-05-15,1.14,1,193 +33941785,Beautiful studio apartment in a perfect location,9380030,Gustav,Manhattan,East Village,40.72359,-73.98519,Entire home/apt,140,3,1,2019-06-23,1,1,56 +33942313,Private Bedroom Modern Fully Renovated Harlem Apt,345087,M,Manhattan,Harlem,40.82185,-73.9413,Private room,99,2,1,2019-04-28,0.42,1,359 +33942517,Cozy Three-Bedroom Apartment - Brooklyn,236796242,Em,Brooklyn,Bedford-Stuyvesant,40.68737,-73.94346,Entire home/apt,140,1,3,2019-06-24,1.80,1,316 +33943045,Steps away from Manhattan!,55203569,Anna,Queens,Astoria,40.76752,-73.91433,Entire home/apt,250,3,13,2019-06-26,5.49,1,76 +33943216,"Entire 2BR Modern, Luxurious Apt in East Village",156381151,Karim,Manhattan,East Village,40.72607,-73.98625,Entire home/apt,190,2,2,2019-06-10,1.40,2,0 +33943482,Perfect 2 Bedrooms in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78364,-73.94586,Entire home/apt,175,3,1,2019-05-04,0.45,9,103 +33943754,Private Room with Backyard Access!,18765976,Mihail,Brooklyn,Bushwick,40.69899,-73.91667,Private room,65,1,9,2019-07-05,3.38,4,66 +33943994,Private & Cozy Room in Bushwick,18765976,Mihail,Brooklyn,Bushwick,40.69932,-73.91576,Private room,65,1,7,2019-06-16,2.63,4,61 +33944331,Gorgeous 2br apartment on Madison Ave,255190901,Michael,Manhattan,Midtown,40.74602,-73.98486,Entire home/apt,339,3,20,2019-06-22,7.89,1,86 +33944413,Large modern one bedroom apartment -1 block subway,248831780,Camille,Queens,Astoria,40.76939,-73.92139,Entire home/apt,175,1,0,,,1,185 +33944634,"Centrally Located 2 Bedroom, 1 Bath",243226371,Robert,Manhattan,East Village,40.72391,-73.98409,Entire home/apt,700,2,8,2019-06-02,3.08,1,263 +33944826,Bienvenidos a casa,234956201,Jose,Manhattan,Washington Heights,40.83588,-73.93978,Private room,65,2,7,2019-07-01,3.75,1,180 +33945670,Quaint City Island.Come and enjoy our home,43332874,Margaret,Bronx,City Island,40.83959,-73.78587,Private room,100,7,0,,,1,180 +33945711,Brand New Luxury 2 Bed Condo in East Williamsburg!,256341094,David,Brooklyn,Bushwick,40.6991,-73.92917,Entire home/apt,249,6,4,2019-07-01,1.97,2,177 +33947023,"Authentic apartment in the heart of Williamsburg,",117476022,Valentine,Brooklyn,Williamsburg,40.71213,-73.951,Private room,84,5,0,,,1,60 +33947095,Central Park West Private Room,26910600,Rachel,Manhattan,Upper West Side,40.79179,-73.96623,Private room,500,1,1,2019-05-09,0.49,1,90 +33951037,2BR Prime West Village location!,254472726,Jerick,Manhattan,West Village,40.73198,-74.00526,Entire home/apt,149,31,5,2019-05-23,1.92,1,219 +33953726,Nice neighborhood and very close to subway,256379094,Prarintorn,Brooklyn,Kensington,40.64582,-73.97898,Private room,85,10,0,,,1,52 +33954390,Room with GARDEN,29953329,Yulia,Brooklyn,Bedford-Stuyvesant,40.69267,-73.94395,Private room,79,2,2,2019-06-16,1.02,2,5 +33954574,Luxury High Rise with Private Balcony,23066402,Daniel,Manhattan,Chelsea,40.74371,-73.99622,Entire home/apt,225,3,2,2019-05-30,0.83,1,33 +33955057,Splendid 1 bdrm in West Village NYC,4189194,Sandra,Manhattan,West Village,40.73286,-74.00463,Entire home/apt,160,3,3,2019-06-07,1.88,1,2 +33956049,Comfortable Private Room with everything you need!,256403429,Brenda,Brooklyn,East Flatbush,40.65438,-73.95181,Private room,54,1,14,2019-07-01,5.32,5,81 +33956883,Beautiful Cozy Private Room!,256403429,Brenda,Brooklyn,East Flatbush,40.65214,-73.95159,Private room,53,1,15,2019-07-06,5.56,5,77 +33957038,A Beautiful Williamsburg Apartment Available Today,252575404,Yeshe,Brooklyn,Williamsburg,40.71009,-73.95842,Private room,90,3,4,2019-07-02,3.53,1,63 +33957835,RM#1-Blue room w/balcony 30 min NYC; all airports,241963980,Deborah,Queens,Jamaica Hills,40.71757,-73.7961,Private room,65,1,1,2019-07-07,1,2,139 +33959560,"Gorgeous, sunny and cosy Williamsburg 2 bed Apt",10860700,Sarah,Brooklyn,Williamsburg,40.7121,-73.94347,Entire home/apt,130,10,0,,,2,34 +33959697,Sun-drenched apartment in Washington Heights,8990490,Jeffrey,Manhattan,Washington Heights,40.84542,-73.93945,Private room,55,1,1,2019-04-19,0.37,1,157 +33960097,1890 Townhouse Penthouse Centered S Williamsburg,44918139,Shai,Brooklyn,Williamsburg,40.71093,-73.95815,Entire home/apt,250,31,1,2019-07-01,1,1,90 +33960800,Sunlight Large Studio in Heart of Harlem,56338076,Barbara,Manhattan,Harlem,40.81431,-73.93994,Entire home/apt,130,1,6,2019-06-15,2.25,3,0 +33961484,Gorgeous room near Washington Square,15617182,Namaya,Manhattan,Greenwich Village,40.72811,-73.99893,Private room,90,2,4,2019-05-19,1.54,1,146 +33961505,Gorgeous flat in vibrant Bushwick,2513294,Carrie,Brooklyn,Bushwick,40.70333,-73.92557,Entire home/apt,80,1,0,,,1,213 +33961801,211 east 34 st Room 9,255431206,Mohammed,Brooklyn,East Flatbush,40.65116,-73.94525,Private room,40,7,1,2019-06-16,1,9,172 +33962313,Room 4 ( 8 by 12),255431206,Mohammed,Brooklyn,East Flatbush,40.65286,-73.94532,Private room,40,7,2,2019-05-09,0.81,9,151 +33962690,Cozy lil Williamsburg walk-up with a resident dog,91183632,Dilan,Brooklyn,Williamsburg,40.71331,-73.9627,Private room,75,1,0,,,1,43 +33962961,Manhattan Studio with Great Location!,16881166,Kimberly,Manhattan,Midtown,40.75563,-73.9691,Entire home/apt,200,28,0,,,1,82 +33962986,Room 2 ( 10 by 10),255431206,Mohammed,Brooklyn,East Flatbush,40.6529,-73.94493,Private room,40,7,2,2019-07-06,0.91,9,114 +33963079,"Near Brooklyn Museum, Barclays, Transit, & Banks",127831150,Carena,Brooklyn,Crown Heights,40.67633,-73.94403,Entire home/apt,80,5,9,2019-07-01,3.80,2,225 +33963211,Hang The World In Your Memory© (SLEEPS 1 to 5),233986410,S,Bronx,Parkchester,40.83754,-73.85764,Private room,150,1,0,,,1,267 +33964014,The Zen Home,15853933,Radilena,Queens,Astoria,40.76623,-73.91243,Private room,69,1,9,2019-05-31,3.42,1,35 +33964102,"Cozy Morningside Park, Next to Columbia University",58521727,Ashton,Manhattan,Morningside Heights,40.80958,-73.95743,Entire home/apt,130,8,0,,,1,17 +33964812,Luxury FiDi Terrace Apt by Seaport & WTC,10714783,Mickey,Manhattan,Financial District,40.70824,-74.00476,Entire home/apt,200,2,4,2019-07-02,2.45,1,38 +33964954,Modern Duplex in Artsy Williamsburg,79246014,Shanice,Brooklyn,Williamsburg,40.71975,-73.94613,Entire home/apt,110,2,3,2019-06-16,2.57,1,26 +33965415,Spacious Bedroom near Prospect Park,256403429,Brenda,Brooklyn,Flatbush,40.65228,-73.95286,Private room,54,1,11,2019-06-29,4.12,5,62 +33965894,Doesn't get better than this! Cozy Spacious Room,256403429,Brenda,Brooklyn,Flatbush,40.65235,-73.95347,Private room,54,1,10,2019-07-05,4.35,5,70 +33966122,"Relaxing, comfy, and stress-free apartment.",138962369,Eugenia,Bronx,Edenwald,40.89039,-73.83186,Entire home/apt,50,3,8,2019-07-07,3.04,1,34 +33966308,Lovely Brooklyn Bedroom,256479489,Amy,Brooklyn,Bath Beach,40.60456,-74.00117,Private room,49,2,1,2019-04-29,0.42,2,316 +33967235,Skyline view 1BR condo with balcony,8485868,Jake,Brooklyn,Bushwick,40.70044,-73.93472,Entire home/apt,150,3,0,,,1,17 +33967503,Private room,10188543,Charvii,Queens,Richmond Hill,40.69318,-73.83418,Private room,60,1,17,2019-06-19,6.71,1,1 +33968500,Comfy bedroom with natural light,119774078,Christina,Queens,Ridgewood,40.70728,-73.90572,Private room,60,4,2,2019-05-15,0.73,1,51 +33968977,HUGE Dumbo apartment with private rooftop!,121193088,Nathan,Brooklyn,DUMBO,40.70315,-73.99424,Entire home/apt,100,2,2,2019-04-29,0.79,1,0 +33969648,Comfortable and Cozy Home,256502464,Paul,Manhattan,Harlem,40.82715,-73.94667,Private room,55,1,20,2019-07-01,7.41,3,175 +33969898,Private room near Columbia University,256504089,Gaea,Manhattan,Upper West Side,40.80337,-73.96511,Private room,69,20,0,,,1,0 +33970585,Ingrid’s Columbia Apt,256012654,Yueying,Manhattan,Upper West Side,40.80169,-73.96339,Private room,40,15,0,,,1,17 +33970684,Its the Brooklyn way!,256510832,George,Brooklyn,Brownsville,40.67144,-73.91457,Entire home/apt,180,2,7,2019-06-23,2.63,1,352 +33970850,SummerWintersGetaway- 8 mins from JFK,256462453,Yolander,Queens,Jamaica,40.69115,-73.80617,Entire home/apt,350,1,9,2019-06-09,3.42,1,358 +33971163,Williamsburg Home,70026919,Dan,Brooklyn,Williamsburg,40.71709,-73.96035,Private room,66,7,1,2019-04-19,0.37,1,281 +33971428,Sunny and spacious Bushwick haven,45834595,Kira,Brooklyn,Bushwick,40.70504,-73.91868,Entire home/apt,120,3,3,2019-05-27,1.13,1,3 +33971836,Cozy apartment In Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76447,-73.99103,Shared room,69,1,4,2019-06-23,1.48,9,364 +33971900,Bright&staylish room 15min from LaGuardia&20minJFK,253467179,Daniel,Queens,Forest Hills,40.73105,-73.85318,Private room,70,2,6,2019-07-02,2.86,1,288 +33972459,Luxury New Private Duplex in Manhattan,49623247,Saar,Manhattan,Washington Heights,40.85167,-73.92868,Entire home/apt,350,3,8,2019-06-10,3.29,1,243 +33972460,Wow! Close to all of NYC in Lower East Side,157699374,Richard,Manhattan,East Village,40.722,-73.98256,Entire home/apt,179,1,4,2019-05-19,1.52,1,0 +33972589,Sunny HUGE bedroom,206482566,Sarah,Manhattan,Stuyvesant Town,40.73193,-73.97971,Private room,115,1,0,,,2,0 +33973347,Beautiful private bedroom in UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7929,-73.9391,Private room,90,2,2,2019-06-23,2,3,0 +33974082,LARGE LUXURIOUS BEDROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75736,-73.92815,Private room,65,1,11,2019-06-16,4.58,5,300 +33974640,BEAUTIFUL PRIVATE ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75771,-73.92724,Private room,50,1,3,2019-05-31,1.34,5,318 +33974777,SUNNY ROOM,32167398,Meela,Queens,Astoria,40.75925,-73.92506,Private room,45,1,6,2019-06-11,2.31,5,342 +33975580,McDonald,156850005,Sharon,Queens,Jackson Heights,40.75606,-73.87787,Private room,100,1,3,2019-06-30,1.73,2,350 +33975581,Alphabet City Room,39077228,Kevin,Manhattan,East Village,40.72827,-73.98041,Private room,83,2,2,2019-04-18,0.73,1,15 +33980568,COZY PRIVATE ROOM. 5min walk to the L train!,256581747,Sergii,Brooklyn,Williamsburg,40.70631,-73.94467,Private room,72,30,0,,,3,333 +33980946,Modern large 3Bedrm w Washer/Dryer Next to Subway,62066342,Rafaelo,Manhattan,Harlem,40.80691,-73.94626,Private room,98,7,2,2019-06-21,1.22,2,321 +33981416,One bedroom in Chelsea,12321281,Calypso,Manhattan,Chelsea,40.74483,-73.99649,Private room,110,30,0,,,1,145 +33982630,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73367,-74.00497,Entire home/apt,250,3,2,2019-06-20,0.88,5,265 +33983585,Comfy private room with new interior!,256581747,Sergii,Brooklyn,Williamsburg,40.7062,-73.94237,Private room,72,30,0,,,3,318 +33984685,High comfort private room! New interior design.,256581747,Sergii,Brooklyn,Williamsburg,40.70709,-73.9426,Private room,73,30,0,,,3,364 +33984941,Private studio next to Penn,200282080,Laura,Manhattan,Chelsea,40.75129,-73.99538,Entire home/apt,250,2,1,2019-06-26,1,1,0 +33986797,Cozy room in Richmond hill,251768799,Naiomi,Queens,Richmond Hill,40.69927,-73.82643,Private room,150,1,1,2019-04-25,0.40,1,0 +33987446,X Light,184750740,Juice,Bronx,Morrisania,40.82565,-73.91095,Shared room,77,1,0,,,4,179 +33987509,Private & Cozy Room 1B near Columbia Univ,10415675,Yao & Rain,Manhattan,Harlem,40.82289,-73.954,Private room,120,3,1,2019-04-23,0.39,7,339 +33987592,Bedroom in Huge and Sunny Williamsburg Apartment!,73233066,Austin,Brooklyn,Williamsburg,40.71194,-73.95428,Private room,165,1,0,,,1,0 +33987747,Cozy/Beautiful studio in Times Square. Sleep 2,102287310,Vera,Manhattan,Hell's Kitchen,40.76704,-73.98646,Entire home/apt,199,3,0,,,3,358 +33987847,Gorgeous Rooftop Views / Seconds From Train,22388757,Jordan,Manhattan,Washington Heights,40.85075,-73.93982,Entire home/apt,120,3,3,2019-07-07,1.70,2,0 +33987887,Clean Comfortable and Private.,204244117,Patrola,Manhattan,Harlem,40.82609,-73.94948,Private room,49,1,11,2019-07-04,5.50,2,180 +33988271,"Cute, Convenient Bushwick 1-Bedroom (sleeps 6)",256634850,Barbara,Brooklyn,Bushwick,40.68773,-73.90589,Entire home/apt,149,2,1,2019-06-23,1,1,0 +33988643,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66981,-73.95734,Private room,68,30,2,2019-05-20,0.92,7,226 +33988756,Single Bedroom with private roof top,7943066,Tamiris,Brooklyn,Williamsburg,40.71963,-73.94149,Private room,75,2,10,2019-05-31,3.85,2,62 +33989177,Large Private Room in Brownstone (4th fl),897871,Raphael,Brooklyn,Bedford-Stuyvesant,40.68171,-73.93346,Private room,90,4,1,2019-05-30,0.75,1,0 +33989681,"Cozy, Quintessential Brooklyn Carriage House",235329443,Sophie,Brooklyn,Boerum Hill,40.68438,-73.98436,Entire home/apt,150,3,12,2019-07-06,6.55,1,173 +33989972,MONTAUK HEIGHTS,152503673,Idemudia,Brooklyn,East New York,40.67562,-73.87763,Entire home/apt,89,3,11,2019-07-01,4.58,1,13 +33990380,Sonder | Stock Exchange | Ideal 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70613,-74.01067,Entire home/apt,228,2,5,2019-06-12,1.90,327,347 +33990485,Sonder | Stock Exchange | Timeless 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01208,Entire home/apt,256,2,4,2019-06-18,2.79,327,292 +33990639,Sonder | Stock Exchange | Ideal 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01096,Entire home/apt,188,2,6,2019-06-20,2.65,327,329 +33990756,Sonder | Stock Exchange | Ideal 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70754,-74.01206,Entire home/apt,240,2,6,2019-06-19,2.69,327,340 +33991062,Sonder | Stock Exchange | Superior 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01176,Entire home/apt,255,2,6,2019-06-08,2.57,327,237 +33992212,2 Bedroom Sunny Apartment Near Prospect Park,2992287,Shahzad,Brooklyn,Prospect Heights,40.67405,-73.96788,Entire home/apt,199,3,4,2019-06-22,2.40,1,21 +33992824,Sonder | Stock Exchange | Superior 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70631,-74.01225,Entire home/apt,228,2,5,2019-06-16,3.00,327,349 +33992942,"Beautiful, Furnished 1 Bedroom on Upper West Side",24525241,Jeremy,Manhattan,Upper West Side,40.77341,-73.9812,Entire home/apt,166,17,0,,,1,102 +33993225,Private small room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.72613,-73.98447,Private room,99,1,9,2019-06-13,3.42,5,30 +33993343,Unique peaceful apart smartly located in Astoria,156286838,Ella,Queens,Astoria,40.77698,-73.93389,Entire home/apt,150,7,0,,,1,342 +33993547,Small Private Room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.7267,-73.98316,Private room,99,1,5,2019-06-13,1.90,5,0 +33993628,Blogger's apartment (w/ a ring light!) in Brooklyn,189165590,Young,Brooklyn,Bedford-Stuyvesant,40.69037,-73.94542,Entire home/apt,150,3,2,2019-05-12,0.92,1,0 +33994465,Penthouse with huge deck and city views,106418986,Vicky And Nektarios,Brooklyn,Greenpoint,40.73473,-73.95207,Entire home/apt,250,3,0,,,1,62 +33994677,Elegant Villa in the Heart of Manhattan!,221213143,David,Manhattan,Kips Bay,40.7431,-73.98137,Entire home/apt,790,1,4,2019-06-12,1.82,9,298 +33994694,"Manhattan 2BR W/ Garden, Laundry, Near Subway",15757322,Devin T.,Manhattan,Washington Heights,40.83611,-73.94162,Entire home/apt,161,2,13,2019-06-22,4.87,2,294 +33994896,Lower East side/Soho/Chinatown room fits 3 people,71400423,Maria,Manhattan,Lower East Side,40.71958,-73.9905,Private room,123,1,7,2019-07-05,4.47,3,146 +33994927,"Stylish Large 2 Bedroom, Perfect Location",256680416,Drew,Manhattan,Murray Hill,40.74818,-73.98247,Entire home/apt,299,2,7,2019-07-02,3.18,1,16 +33995462,"Bronx, Little Italy, Arthur Ave, Fordham, Yanks.",256683560,Jorge,Bronx,Belmont,40.85398,-73.88737,Shared room,49,1,2,2019-06-03,0.94,2,358 +33995466,A Perfect Studio,3940207,Kimberly,Brooklyn,Williamsburg,40.72114,-73.96307,Entire home/apt,125,20,1,2019-06-13,1,1,122 +33995614,Lovely LES/SOHO/Chinatown room can fit 3 people!,71400423,Maria,Manhattan,Lower East Side,40.72139,-73.9896,Private room,123,1,10,2019-06-18,4.35,3,0 +33995646,Walk to Columbia University,67651553,Yunqiu,Manhattan,Upper West Side,40.80237,-73.96695,Entire home/apt,120,20,0,,,2,95 +33995764,Private Master Suite.,5547103,Artur,Bronx,Parkchester,40.8353,-73.85751,Private room,75,3,0,,,1,81 +33995769,Entire studio First Floor Walk to all,230192818,Felicia,Manhattan,East Village,40.72222,-73.98221,Entire home/apt,190,2,7,2019-06-27,3.28,2,78 +33996094,Astoria Prime- 5 Min to LaGuardia/20 Min to NYC!,60737457,Paige,Queens,Ditmars Steinway,40.7733,-73.90569,Entire home/apt,225,1,23,2019-07-06,9.58,1,109 +33996358,Paper moon private room. Best Bushwick location!,11297371,Maria,Brooklyn,Bushwick,40.69923,-73.93089,Private room,50,2,8,2019-05-30,3.38,2,292 +33996362,Cozy Bedroom in a New York EDITION Apartment,43502871,Gilberto,Manhattan,Inwood,40.86517,-73.92995,Private room,95,3,0,,,1,216 +33996365,Queen Bedroom in Modern Manhattan Apartment,219717193,Jessie,Manhattan,Gramercy,40.73431,-73.98167,Private room,59,5,4,2019-06-15,1.74,2,10 +33996948,Lovely Hudson Yards Stonehouse near Penn Station,256697785,Arya,Manhattan,Chelsea,40.75034,-73.99059,Entire home/apt,250,3,4,2019-06-06,2.35,1,144 +33997927,Private Room in Queens NYC,679431,Miguelina,Queens,Woodhaven,40.69345,-73.86674,Private room,65,2,4,2019-06-23,1.69,1,180 +33998142,Sonder | Wall Street | Superior 3BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70597,-74.01248,Private room,616,2,5,2019-06-12,2.46,327,255 +33998269,Sonder | Stock Exchange | Superior 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.707,-74.01208,Entire home/apt,408,2,2,2019-06-22,0.95,327,273 +33998274,Affordable Studio Close to All the Action,256710914,Benjamin,Manhattan,Chelsea,40.74694,-74.0013,Entire home/apt,100,2,3,2019-07-01,3,1,2 +33998291,Sonder | Wall Street | Superior 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70756,-74.01107,Private room,264,2,2,2019-06-15,0.83,327,348 +33998396,3000 sq ft daylight photo studio,3750764,Kevin,Manhattan,Chelsea,40.7506,-74.00388,Entire home/apt,6800,1,0,,,6,364 +33999088,KingSize Dream Room,256718904,Jean Paul,Brooklyn,Gowanus,40.6771,-73.98414,Private room,75,1,1,2019-04-21,0.37,1,82 +33999377,CLEAN & SPACIOUS ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75759,-73.92677,Private room,50,1,7,2019-06-02,2.88,5,336 +33999874,BRIGHT ROOM CLOSE TO MIDTOWN MANHATTAN,32167398,Meela,Queens,Long Island City,40.75894,-73.92864,Private room,60,1,4,2019-05-12,1.52,5,355 +34000977,Ocean-themed Studio Minutes from the Beach!,8756834,Kristi,Brooklyn,Midwood,40.62635,-73.9725,Entire home/apt,80,2,1,2019-05-08,0.48,1,33 +34002121,Pat's place (shared female only).,256743247,Patricia,Queens,Bayside,40.77125,-73.7809,Private room,49,1,14,2019-06-28,6.36,2,72 +34008808,"Open Midtown 2BR w/ Doorman, Gym, 5 min walk to Subway, by Blueground",107434423,Blueground,Manhattan,Midtown,40.74546,-73.98679,Entire home/apt,377,30,0,,,232,341 +34009172,Charming NoMad Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.74403,-73.98701,Entire home/apt,274,30,0,,,232,353 +34009196,"Gramercy Park 1BR w/ Great Views, Gym, W/D, near the subway by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7385,-73.982,Entire home/apt,314,30,0,,,232,337 +34009215,"Stately Gramercy Park 1BR w/ WD, Gym, Doorman, near Subway by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.73905,-73.98225,Entire home/apt,314,30,0,,,232,338 +34010131,Brand New & Beautiful. 1 min toTrain /15Min to JFK,22543458,Ashley,Queens,Ozone Park,40.67775,-73.8601,Entire home/apt,199,1,14,2019-06-28,6.36,4,249 +34011627,Library Suite with Antique Touches - mid-Bushwick,4982496,Anna Leah,Brooklyn,Bushwick,40.70373,-73.92723,Private room,85,4,0,,,1,0 +34013027,Lower East/Little Italy 5BR Loft! Prime Downtown!,256521664,Roxanne,Manhattan,Chinatown,40.71692,-73.9947,Entire home/apt,239,31,3,2019-06-15,1.76,1,176 +34013205,cozy private studio in greenpoint..,25346924,Edyta,Brooklyn,Greenpoint,40.72602,-73.95848,Entire home/apt,118,4,1,2019-05-27,0.70,1,30 +34013223,ARTIST ABODE CLOSE TO APOLLO AND SCHOMBURG CENTRE,256817214,Taio,Manhattan,Harlem,40.81597,-73.94114,Private room,90,5,1,2019-06-03,0.83,1,354 +34013463,Beautiful Brooklyn Brownstone,15734998,Lisa,Brooklyn,Crown Heights,40.66913,-73.94028,Entire home/apt,91,2,2,2019-07-06,2,1,9 +34014027,Spacious Light-Filled Room in Williamsburg Loft,23003756,Dimitri,Brooklyn,Williamsburg,40.71777,-73.94874,Private room,90,2,2,2019-05-23,1.18,1,0 +34014432,"Cozy , clean and comfortable",125755479,Carla,Queens,Astoria,40.76398,-73.91409,Private room,100,1,0,,,1,0 +34014834,"Beautiful colonial near Belmont Race +Tract",256505094,Cederna,Queens,Cambria Heights,40.69955,-73.72247,Entire home/apt,180,1,0,,,1,83 +34014939,Two floor apartment near Central Park,82746113,Cecilia,Manhattan,Upper West Side,40.78684,-73.96912,Entire home/apt,250,1,0,,,2,88 +34015098,Entire Gorgeous Greenpoint Duplex,38217925,Lily,Brooklyn,Greenpoint,40.7342,-73.95707,Entire home/apt,205,5,0,,,2,64 +34015258,E & J private stay.,155961583,Jeanette,Brooklyn,Bushwick,40.7007,-73.93401,Private room,69,2,8,2019-06-26,3.75,1,131 +34016163,PRIVATE HOUSE VERY CLOSE TO SUBWAY LINE,256836581,Mohammad,Bronx,Fordham,40.8716,-73.89177,Entire home/apt,92,2,9,2019-07-05,4.82,1,48 +34016570,== TRAVELHOLIC Rooms (Modern Decor / Clean) ==,109402182,Michael,Manhattan,Harlem,40.82361,-73.94599,Private room,59,25,3,2019-05-10,1.17,1,24 +34016888,3BR Times Square Loft ! Heart of City!,255539744,Sheryl,Manhattan,Hell's Kitchen,40.75364,-73.99291,Entire home/apt,149,31,4,2019-06-01,1.85,1,135 +34017043,Sonder | Stock Exchange | Superior 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70776,-74.01169,Entire home/apt,396,2,6,2019-06-23,3.00,327,328 +34017119,Sonder | Stock Exchange | Dreamy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70735,-74.01221,Entire home/apt,215,2,1,2019-06-16,1,327,346 +34017464,Amazing 2 bedroom apt . Recently renovated.,6752504,Ella,Brooklyn,Gravesend,40.59609,-73.97486,Entire home/apt,120,5,0,,,3,23 +34017530,*** HEART OF MANHATTAN (Herald Square) ***,150879430,Michael,Manhattan,Midtown,40.74944,-73.98338,Private room,99,14,0,,,1,25 +34017965,BRIGHT SUNNY ONE BEDROOM APT WITH TERRACE,49101398,Nicholas,Brooklyn,Gravesend,40.59725,-73.97684,Entire home/apt,99,2,3,2019-07-07,3,3,97 +34018291,Laid Back Williamsburg Apartment,256857295,Amy,Brooklyn,Williamsburg,40.7128,-73.9396,Private room,100,2,4,2019-06-25,1.85,1,169 +34019440,Beautiful&Clean 1 KING BDR apt in Chelsea LONGTERM,234227365,Emma,Manhattan,Chelsea,40.74073,-73.99884,Entire home/apt,180,5,1,2019-04-28,0.42,1,83 +34019712,"Homey, Friendly Apt Share Next To Subway",253836845,Ollie,Brooklyn,Crown Heights,40.66977,-73.95725,Private room,68,30,2,2019-06-18,2,7,246 +34019889,"East Village 1BR - Sleek, Modern, Urban Oasis!",70011812,Elise,Manhattan,East Village,40.72625,-73.98625,Entire home/apt,169,1,16,2019-07-06,7.27,2,50 +34019915,"Homey, Friendly Apt Share Next to Subway",253836845,Ollie,Brooklyn,Crown Heights,40.67155,-73.95854,Private room,66,30,2,2019-05-25,1.00,7,223 +34020020,"Charming, quiet and lovely Brooklyn Heights Studio",14950774,Gina,Brooklyn,Brooklyn Heights,40.69094,-73.99293,Entire home/apt,160,7,0,,,1,98 +34020036,Prime Gramercy! **12 months lease!,1146958,Liz,Manhattan,Kips Bay,40.73859,-73.98218,Entire home/apt,89,360,0,,,4,364 +34020040,"Homey, Friendly Apt Share Next To Subway",253836845,Ollie,Brooklyn,Crown Heights,40.67058,-73.9573,Private room,68,30,1,2019-05-21,0.60,7,226 +34020097,Cozy Room in Classic Crown Heights,98978751,Vita,Brooklyn,Crown Heights,40.67052,-73.95612,Private room,70,1,4,2019-06-18,2.67,1,153 +34020964,Newly Renovated Multimedia Studio,256487516,Vernon,Brooklyn,East New York,40.66038,-73.88761,Entire home/apt,40,14,1,2019-05-15,0.54,1,178 +34021170,HUGE Room. Lower East Side! Perfect location!,4613096,Laura,Manhattan,Lower East Side,40.7208,-73.98959,Private room,90,3,2,2019-06-27,2,1,34 +34022109,Modern Studio in Washington Heights!,26973868,Jhunior,Manhattan,Washington Heights,40.84221,-73.93705,Entire home/apt,90,4,4,2019-06-30,1.88,1,51 +34022186,Beautiful Room in Chic Area!,181092484,Leonard,Manhattan,Lower East Side,40.71833,-73.98936,Private room,99,1,7,2019-07-01,2.92,3,356 +34022664,Couch surfing at the sanctuary,218883687,Parrish,Brooklyn,East Flatbush,40.63964,-73.94362,Shared room,50,1,8,2019-06-30,3.00,2,365 +34022740,Safari in Brooklyn!,256899020,Melissa,Brooklyn,Brownsville,40.65799,-73.91595,Private room,57,4,7,2019-06-23,2.84,1,35 +34023411,2 beautiful bedroom apt .with 2 main subway line,6752504,Ella,Brooklyn,Gravesend,40.60121,-73.97515,Entire home/apt,200,4,1,2019-04-21,0.37,3,173 +34023558,1 BR apartment in gut renovated historic building,88602231,Karol,Brooklyn,Kensington,40.64722,-73.9736,Entire home/apt,111,14,0,,,1,21 +34023619,Entire Apartment With Space For Two,84118689,Andrew,Manhattan,Upper East Side,40.77362,-73.94886,Entire home/apt,130,1,11,2019-06-20,4.34,1,26 +34024785,Beautiful Bright Private Room!,181092484,Leonard,Manhattan,Lower East Side,40.71923,-73.98582,Private room,119,1,7,2019-07-05,2.88,3,360 +34025113,Large soho apt,28823649,Rose,Manhattan,SoHo,40.72611,-74.00337,Entire home/apt,194,1,0,,,3,89 +34029489,Private Bedroom in Amazing Location! Times Square!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.75662,-73.99333,Private room,500,31,1,2019-05-10,0.50,3,0 +34029837,Amazing Times Square Location! Private BR in Loft!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.7574,-73.99395,Private room,500,31,2,2019-05-11,0.82,3,0 +34032088,Private room- Astoria Modern,347045,Shane,Queens,Astoria,40.75807,-73.92632,Private room,125,2,5,2019-06-30,2.34,1,90 +34032175,"Renovated 2BR in trendy Williamsburg, Brooklyn",152850919,Barbara,Brooklyn,Williamsburg,40.71446,-73.96229,Entire home/apt,200,3,0,,,1,179 +34032390,Crash pad #2,156505456,John,Brooklyn,East New York,40.66739,-73.87379,Private room,65,3,2,2019-05-18,0.95,13,365 +34033950,Dramatic quiet light filled 18' high E village apt,256981777,Scott,Manhattan,East Village,40.72388,-73.97902,Entire home/apt,245,30,0,,,1,16 +34034553,Beautiful little apartment on the Upper East Side,256987188,Irina,Manhattan,Upper East Side,40.77507,-73.94785,Entire home/apt,150,1,1,2019-05-06,0.47,1,33 +34035431,"Private Room by Emmons, beaches. B, Q trains.",177031514,Alena,Brooklyn,Sheepshead Bay,40.58438,-73.95564,Private room,60,1,4,2019-06-23,1.85,1,341 +34035571,Beautiful Place in the Heart of Williamsburg,457147,Florent,Brooklyn,Williamsburg,40.71191,-73.95598,Private room,75,7,2,2019-06-08,1.58,1,324 +34035610,Private Room in a Beautiful Ridgewood Apartment,128605205,Tom,Queens,Ridgewood,40.7066,-73.91392,Private room,100,2,0,,,1,3 +34035902,Luxury Hudson yards apartment on the High line,224879685,Irina,Manhattan,Chelsea,40.75321,-74.00238,Entire home/apt,590,10,0,,,1,84 +34036011,Charming East Village Penthouse Studio Apartment,43885531,Lee,Manhattan,East Village,40.72935,-73.9826,Entire home/apt,130,30,1,2019-06-14,1,1,115 +34036047,Harlem Time Capsule,256998898,Hank,Manhattan,Harlem,40.80483,-73.95553,Entire home/apt,550,1,0,,,3,365 +34036136,Excellent chill spot in gowanus,46595898,Ilona,Brooklyn,Gowanus,40.67709,-73.98494,Private room,100,2,1,2019-06-12,1,1,61 +34036333,Flamingo Paradiso East,11418912,Gus,Brooklyn,Williamsburg,40.71239,-73.95037,Entire home/apt,100,3,7,2019-07-03,3.00,1,66 +34037737,Ash’s Place in Hell’s Kitchen,159281143,Ash,Manhattan,Hell's Kitchen,40.76255,-73.99026,Entire home/apt,200,7,4,2019-05-26,2.07,1,216 +34038333,Walking distance to Central Park,257019090,Camille,Manhattan,Upper West Side,40.78046,-73.9784,Entire home/apt,150,4,0,,,1,0 +34038559,Gorgeous Apt on the Upper East Side,1241543,Claire,Manhattan,Upper East Side,40.78145,-73.9496,Private room,130,5,3,2019-06-30,1.73,1,180 +34038619,"Cozy, convenient Upper West Side studio",236779549,Marina,Manhattan,Morningside Heights,40.80665,-73.96062,Entire home/apt,115,31,0,,,1,57 +34039045,Modern Brick Exposed Brooklyn Apartment!,30995747,John,Brooklyn,Crown Heights,40.67723,-73.95133,Entire home/apt,95,4,3,2019-06-10,1.88,1,4 +34039320,Quiet and clean apartment in nyc,201757076,Soledad,Queens,Briarwood,40.71167,-73.81812,Entire home/apt,111,1,9,2019-06-30,3.70,3,223 +34040037,"Bay Ridge is rated Convenient, safe neighborhood",257034143,Sophia,Brooklyn,Bay Ridge,40.62961,-74.02616,Entire home/apt,200,2,5,2019-06-15,2.42,2,161 +34040771,Luxurious life in Manhattan,154895657,Shihu,Manhattan,Hell's Kitchen,40.76245,-73.99831,Entire home/apt,198,30,0,,,1,28 +34040940,"Bright, Light & Airy 1 Bedroom in Kips Bay",7218138,Roger,Manhattan,Kips Bay,40.741,-73.98056,Entire home/apt,149,5,1,2019-05-19,0.59,1,0 +34041523,Master Room in Harlem Duplex,256998898,Hank,Manhattan,Harlem,40.80514,-73.95561,Private room,140,1,4,2019-06-18,1.88,3,350 +34041587,The Power Tower,256998898,Hank,Manhattan,Harlem,40.80536,-73.95469,Private room,140,1,3,2019-07-01,2.00,3,336 +34041630,The Beatiful place,257043301,Alfredo,Queens,Kew Gardens,40.70609,-73.83014,Private room,55,1,0,,,1,179 +34042173,"Peaceful, fully equipped, home away from home!",257053267,Leanna,Queens,Richmond Hill,40.69622,-73.84634,Private room,60,1,3,2019-07-01,1.76,1,364 +34042443,Cute Private Room in Washington Heights,133561420,Evan,Manhattan,Washington Heights,40.84405,-73.93714,Private room,49,3,1,2019-05-04,0.45,1,2 +34042658,Luxury Condo Steps Away From Hudson Yards NYC,11951664,Jack,Manhattan,Chelsea,40.74999,-74.00205,Entire home/apt,195,2,8,2019-07-01,4.36,1,41 +34042777,Comfortable Room in NYC in Harlem area,153205975,Waly,Manhattan,Harlem,40.80279,-73.94736,Private room,78,5,1,2019-05-05,0.46,1,89 +34043476,Bohemian Artist’s Studio in Victorian Neighborhood,48201791,Olivia,Brooklyn,Flatbush,40.63927,-73.9636,Entire home/apt,140,4,9,2019-07-05,3.97,2,328 +34043633,Huge Upper Manhattan Apartment (1st),29178119,Aris,Manhattan,Washington Heights,40.83489,-73.94587,Private room,85,4,0,,,1,55 +34045372,Soulful studio space near Yankees Stadium,12463953,Derrick,Bronx,Mott Haven,40.81865,-73.93014,Entire home/apt,107,2,0,,,1,81 +34047149,1 bedroom in North Slope with Queen bed & futon,225834252,Jodi,Brooklyn,Prospect Heights,40.67656,-73.9706,Entire home/apt,140,2,4,2019-06-25,2.22,1,130 +34051551,"靠近机场,交通购物两便利大房间#1",107272884,Lynn L,Queens,Richmond Hill,40.69441,-73.84659,Private room,45,1,3,2019-06-09,1.43,4,360 +34053030,"Dog Friendly, 1-Bedroom apt, close to subway",250515297,Nikita,Brooklyn,Bedford-Stuyvesant,40.68501,-73.91884,Entire home/apt,75,2,0,,,1,7 +34053516,2 bedroom apt in Brooklyn. Close to subway,6752504,Ella,Brooklyn,Gravesend,40.5974,-73.97448,Entire home/apt,180,3,0,,,3,173 +34054250,Clean and spacious room in charming Greenpoint,47625541,Jeff,Brooklyn,Greenpoint,40.72646,-73.95639,Private room,70,5,1,2019-06-25,1,2,78 +34055336,Private room in apartment near Central Park/6Train,14680337,Anya,Manhattan,East Harlem,40.79034,-73.94503,Private room,169,1,0,,,1,84 +34056586,1850 Sq Brownstone duplex with backyard,7603795,Benoit,Brooklyn,Bushwick,40.69149,-73.92536,Entire home/apt,350,7,0,,,1,124 +34056679,Spanish Harlem magical place. Mezzanine bed,254112876,David,Manhattan,East Harlem,40.79787,-73.93568,Private room,90,2,3,2019-06-30,2.43,2,175 +34056750,Wyndham Midtown 45 at New York City,91854658,Genevieve,Manhattan,Midtown,40.75196,-73.97269,Entire home/apt,500,4,0,,,1,5 +34056928,"1 block off the beach in Arverne, NY. Clean space",257167592,Denise,Queens,Arverne,40.59344,-73.78906,Private room,54,3,0,,,1,363 +34057129,Large one of a kind designer loft in Williamsburg!,22166460,Jarrod,Brooklyn,Williamsburg,40.71902,-73.96414,Entire home/apt,170,4,4,2019-07-01,2.55,1,188 +34058607,Cozy apartment at heart of Brooklyn,11256721,Zeynep,Brooklyn,East Flatbush,40.64939,-73.94864,Entire home/apt,92,4,0,,,1,27 +34059500,Big room prime location WaHe uptown manhattan,290845,Majsan,Manhattan,Washington Heights,40.84387,-73.93969,Private room,59,1,3,2019-06-11,1.64,1,293 +34059931,1 BR Large Luxury Furnished Ap. Near Central Park,15145088,Izi,Manhattan,Upper West Side,40.78537,-73.97456,Entire home/apt,190,30,0,,,8,157 +34059997,Cozy Brooklyn Camper van.,13486673,David,Brooklyn,Prospect Heights,40.67868,-73.97157,Entire home/apt,70,2,0,,,3,84 +34060242,Luxe Sunny Scandinavian Loft in Downtown NYC,864737,Marika,Manhattan,Financial District,40.70816,-74.0019,Entire home/apt,365,2,2,2019-06-10,1.02,1,127 +34060973,"Roomy, sun-drenched, one-bedroom apartment",18811278,Anna Lien,Queens,Ridgewood,40.70741,-73.91534,Entire home/apt,150,7,0,,,1,0 +34061088,"Bright, Spacious Studio near Water in Lux Highrise",73670220,Maya,Manhattan,Financial District,40.70673,-74.01518,Entire home/apt,208,5,4,2019-06-26,2.11,1,9 +34061095,Empty Spacious Unfurnished 1 Bedroom Apartment,7228431,Susan,Bronx,Parkchester,40.83908,-73.86042,Entire home/apt,70,93,0,,,1,134 +34061159,Luxury pad by the beach,255219640,Anna,Brooklyn,Brighton Beach,40.57865,-73.96983,Private room,75,2,1,2019-07-05,1,1,100 +34061253,"Better Than A Hotel Room, Times Sq. Hell's Kitchen",257204612,Adolfo,Manhattan,Hell's Kitchen,40.76461,-73.98997,Entire home/apt,150,3,1,2019-06-23,1,1,138 +34061588,Ideal Studio - Top Prime Location,256921050,Ellen,Manhattan,Chinatown,40.71588,-73.99099,Entire home/apt,135,6,3,2019-06-24,2.37,2,1 +34062194,East Village Dream Apartment - Best Rooftop View,75267282,Yoz,Manhattan,East Village,40.72067,-73.97999,Entire home/apt,210,7,1,2019-05-09,0.49,1,284 +34062487,Clean and Quiet room,27744706,Sasan,Queens,Ridgewood,40.70746,-73.91118,Private room,44,5,1,2019-06-29,1,1,192 +34062693,西藏民居,218134921,Kate,Queens,Woodside,40.74904,-73.90188,Private room,85,1,0,,,1,3 +34062876,Awesome Room in Beautiful Williamsburg Loft,130675,Marta,Brooklyn,Williamsburg,40.71074,-73.94284,Private room,79,3,4,2019-07-01,2.93,1,9 +34063075,"Spacious Bedroom in Washington Heights, Manhattan",257221104,Clark,Manhattan,Washington Heights,40.83466,-73.94029,Private room,60,3,5,2019-06-21,2.42,1,93 +34063202,Bright & clean space in lively Bushwick!,28336,Denise,Brooklyn,Bushwick,40.69982,-73.92491,Private room,75,2,8,2019-06-26,3.75,1,317 +34063821,Bedroom in the Heart of Brooklyn,78078053,Johnnie,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95016,Private room,75,1,2,2019-05-19,1.00,1,138 +34065052,Spacious & Awesome Room in Brooklyn!,215532980,Isa & Bruno,Queens,Ridgewood,40.70515,-73.9136,Private room,75,1,11,2019-07-01,4.52,3,88 +34065083,"Spacious brownstone in peaceful, shady block",9623313,Serafina,Brooklyn,Cobble Hill,40.68518,-73.99709,Entire home/apt,195,7,0,,,1,13 +34065601,Spacious & Modern Room in a Prime Location!,215532980,Isa & Bruno,Queens,Ridgewood,40.70384,-73.91137,Private room,75,1,11,2019-06-25,4.65,3,68 +34065608,New Apartment & Newly Furnished in Prime Location!,215532980,Isa & Bruno,Queens,Ridgewood,40.70391,-73.91153,Private room,75,1,14,2019-07-07,5.83,3,88 +34065631,"Bright 1BR in Heart of Williamsburg, Brooklyn",5452701,Jean-Marc,Brooklyn,Williamsburg,40.71921,-73.95628,Entire home/apt,100,3,0,,,1,6 +34065823,"*female only* cozy room, summer sublet",32736976,Elien,Brooklyn,Sunset Park,40.64296,-74.0056,Private room,24,60,0,,,1,71 +34065832,"Cozy, peaceful, and cute.",244443448,Ireen,Brooklyn,Bay Ridge,40.63233,-74.01796,Private room,60,31,0,,,1,90 +34067204,Cosy bedroom in Williamsburg,229469300,Alisa,Brooklyn,Williamsburg,40.70785,-73.94898,Private room,60,2,3,2019-05-24,1.25,2,5 +34068735,Perfect 2 Bedroom Apartment in Hot Spot,85539820,Yorick,Manhattan,East Village,40.72783,-73.98015,Entire home/apt,250,5,3,2019-06-17,1.73,1,263 +34071098,3BR Times Square! Great Location! W/D!,253789998,Kim,Manhattan,Hell's Kitchen,40.76303,-73.98894,Entire home/apt,149,30,2,2019-05-23,0.90,1,148 +34076756,A light filled historical,73324719,Scott,Queens,Rockaway Beach,40.59009,-73.81042,Entire home/apt,126,7,0,,,1,58 +34079720,Rare find!! Stylish duplex top floor all yours!,29044900,Tiffany,Brooklyn,Williamsburg,40.71616,-73.95552,Private room,130,2,10,2019-07-01,3.95,1,159 +34081178,Central Park-Time Square-All Major Subways,2161203,Bassema,Manhattan,Hell's Kitchen,40.76601,-73.98414,Entire home/apt,190,2,5,2019-06-30,2.08,1,10 +34082053,Large basement-level studio,141146473,Rosa,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95407,Entire home/apt,90,2,4,2019-06-16,2.11,1,27 +34082442,Beautiful Clean & Quiet Room! Rm#3,11674837,Christopher,Queens,Ridgewood,40.70477,-73.90943,Private room,69,1,6,2019-06-24,3.10,3,179 +34082709,Extra Luxury Loft with private elevator & terrace,257365536,Oleg,Manhattan,Hell's Kitchen,40.75634,-73.99445,Entire home/apt,945,2,2,2019-05-09,0.94,1,292 +34083914,"PERFECT LOCATION, LUSH AND CHIC DOWNTOWN ROOM",11306615,Matt,Manhattan,Chinatown,40.71727,-74.0004,Private room,155,2,3,2019-06-12,1.23,2,50 +34084341,Boutique 4 Bedroom/2 Bath Home by Central Park,5325719,Mike,Manhattan,Upper West Side,40.80181,-73.96683,Entire home/apt,450,5,8,2019-06-28,4.29,1,123 +34084476,Cozy Studio in Gramercy with Private Backyard,228946399,Jamie,Manhattan,Kips Bay,40.73863,-73.97989,Entire home/apt,178,1,7,2019-06-06,3.23,1,0 +34085029,211 east34 st Room 6,255431206,Mohammed,Brooklyn,East Flatbush,40.65132,-73.9452,Private room,40,7,1,2019-05-19,0.58,9,106 +34085087,Huge Townhouse in New York City,221213143,David,Manhattan,Kips Bay,40.74142,-73.98219,Entire home/apt,690,1,2,2019-06-14,1.87,9,287 +34085559,211 east 34 Room 5 ( 8 by 10 ),255431206,Mohammed,Brooklyn,East Flatbush,40.65144,-73.94489,Private room,32,7,0,,,9,126 +34085654,The Library,7910657,Gretchen,Brooklyn,Park Slope,40.67245,-73.97365,Entire home/apt,250,2,3,2019-06-23,1.34,1,175 +34085766,211 east 34 Room 7,255431206,Mohammed,Brooklyn,East Flatbush,40.65226,-73.94521,Private room,35,7,2,2019-05-18,0.98,9,131 +34085929,211 East 34 St Room 8 (10 by 12),255431206,Mohammed,Brooklyn,East Flatbush,40.65279,-73.946,Private room,35,7,4,2019-06-28,2.11,9,152 +34086188,Cozy room in Harlem next to 2/3 train,44919396,Forest,Manhattan,Harlem,40.81808,-73.93671,Private room,45,1,5,2019-06-06,2.38,1,0 +34086213,"Spacious, Bright BK Two-Bed with Vintage Flare",257171785,Matt,Brooklyn,Williamsburg,40.71233,-73.95318,Entire home/apt,295,2,1,2019-06-02,0.81,1,0 +34086656,Sonder | Stock Exchange | Gorgeous 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01217,Entire home/apt,244,2,2,2019-06-17,0.83,327,260 +34086800,Sonder | Stock Exchange | Divine 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70724,-74.01085,Entire home/apt,409,2,3,2019-06-19,1.29,327,325 +34086944,Sonder | Stock Exchange | Original 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70712,-74.01201,Entire home/apt,185,2,2,2019-06-07,1.28,327,291 +34087005,Comfort Haven,245960335,Kern,Queens,Jamaica,40.68055,-73.78263,Private room,95,1,0,,,1,180 +34087090,Sonder | Stock Exchange | Gorgeous 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70588,-74.01214,Entire home/apt,230,2,6,2019-06-18,2.50,327,285 +34087749,Sonder | 116 John | Laid-Back Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70803,-74.00639,Entire home/apt,100,29,0,,,327,325 +34087750,Sonder | 116 John | Ideal 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.00499,Entire home/apt,164,29,0,,,327,328 +34088667,"One master bedroom near Q10,Q24 BUS STOP, A train",179951095,Balwinder,Queens,Richmond Hill,40.69035,-73.82238,Private room,78,1,14,2019-07-05,5.83,1,356 +34088861,Quiet Studio Apartment Near Prospect Park + Subway,44914887,Theo,Brooklyn,Flatbush,40.64692,-73.96696,Entire home/apt,105,3,5,2019-07-05,5,1,51 +34088961,14th Street Oasis,214148143,Amber,Manhattan,Stuyvesant Town,40.7311,-73.9775,Private room,165,3,9,2019-06-05,3.70,1,90 +34089777,Bright and Artful 2-Bedroom in Fort Greene,451777,Masha,Brooklyn,Fort Greene,40.68557,-73.97199,Entire home/apt,250,6,0,,,1,12 +34089853,Quaint And Cozy Stop Over,242296495,Angela,Brooklyn,East Flatbush,40.64979,-73.93299,Private room,28,1,13,2019-07-07,5.49,3,49 +34090389,Iconic New York penthouse with wraparound terrace,22123114,Michael,Manhattan,Midtown,40.75797,-73.96356,Entire home/apt,225,14,1,2019-06-11,1,1,240 +34090662,BedStuy Private Room (M1),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69023,-73.93063,Private room,54,1,5,2019-07-02,2.46,8,27 +34091327,Beautiful 1 bedroom near to Time’s Square,34689714,Maria,Manhattan,Hell's Kitchen,40.76512,-73.98674,Entire home/apt,240,1,0,,,5,365 +34092210,"BEACH 2 BDR, 2 BTH NEW YORK, BRIGHTON BEACH",181356989,Kseniya,Brooklyn,Brighton Beach,40.57647,-73.96696,Entire home/apt,275,2,1,2019-06-30,1,2,56 +34093093,Private entrance with views. 25 mins to Manhattan,20087667,Mike,Queens,Astoria,40.76962,-73.93146,Private room,55,1,15,2019-06-29,6.00,1,17 +34093881,A Cute and cozy two bedrooms apartment.,253448038,Ramon,Manhattan,Hell's Kitchen,40.75618,-73.99321,Entire home/apt,250,3,8,2019-07-01,4.07,2,61 +34094976,Sweet Home near Columbia,245014802,佳,Manhattan,Morningside Heights,40.80495,-73.96439,Private room,50,60,0,,,1,72 +34096002,LIC luxury building with indoor pool and lounge,179875332,Tracy,Queens,Long Island City,40.74745,-73.93656,Private room,135,3,1,2019-05-22,0.63,1,0 +34096795,Boutique room for families w/ rooftop & breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75566,-73.99486,Private room,370,1,3,2019-06-21,1.55,5,290 +34096836,An urban retreat from the city’s hustle and bustle,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75603,-73.99511,Private room,430,1,4,2019-05-20,1.97,5,287 +34096837,Refined luxury suite with relaxed residential vibe,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75663,-73.99563,Private room,159,1,1,2019-06-21,1,5,292 +34096839,Near Hudson Yards & Times Square w/ breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.7572,-73.99482,Private room,390,1,21,2019-06-22,10.86,5,299 +34096841,Sleek Times Square suite with rooftop & breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75702,-73.99382,Private room,410,1,1,2019-05-10,0.50,5,294 +34099071,Entire 3 Bedroom in Central Chelsea Location,77080918,Patrick,Manhattan,Chelsea,40.74942,-73.99468,Entire home/apt,265,3,5,2019-06-16,2.42,1,164 +34101162,Spacious with amazing views 1 bedroom apartment,22553662,Christos,Brooklyn,Clinton Hill,40.69338,-73.96751,Entire home/apt,150,7,3,2019-06-14,2.14,1,0 +34103144,Manhattan room near Apollo. 5 mins walk to subway!,137358866,Kazuya,Manhattan,Harlem,40.81622,-73.94276,Private room,38,30,0,,,103,247 +34107684,Cozy Bed-Stuy 1BR- easy access to Manhattan,12162311,Corey,Brooklyn,Bedford-Stuyvesant,40.69302,-73.93285,Entire home/apt,101,1,1,2019-05-17,0.57,1,167 +34108545,Sunny top floor 1BR in Victorian Brooklyn,218940337,Julie,Brooklyn,Flatbush,40.63981,-73.96534,Entire home/apt,120,90,0,,,1,49 +34109471,New HUGE gorgeous 1 BR next to Prospect Park!,12222242,Sidrah,Brooklyn,Prospect-Lefferts Gardens,40.66072,-73.95772,Entire home/apt,150,2,2,2019-06-16,0.92,1,0 +34109512,Beautiful Apartment in Luxury building,156853666,Helen!,Manhattan,Hell's Kitchen,40.7689,-73.98993,Entire home/apt,225,3,8,2019-06-14,4.29,1,49 +34109917,Livingroom for you staying,257555082,Mr.&Mrs.,Queens,Jackson Heights,40.75308,-73.89419,Shared room,55,2,0,,,1,270 +34110599,The Green Place I,101790764,Zabi,Queens,Long Island City,40.74764,-73.9482,Entire home/apt,199,2,7,2019-06-22,3.28,2,170 +34111158,Delightful Lower East Side Two Bedroom Apartment,183573239,Janelle,Manhattan,Chinatown,40.71655,-73.99224,Entire home/apt,200,1,5,2019-07-01,2.31,1,11 +34111540,Big Bedroom near Columbia University and 1 line,90332306,Haylee,Manhattan,Upper West Side,40.80383,-73.96724,Private room,59,3,4,2019-06-09,2.61,1,5 +34111820,Quiet Uptown Stay in Historic Building,29740456,Giovanny,Manhattan,Washington Heights,40.83298,-73.93874,Private room,75,2,4,2019-06-04,1.90,1,0 +34112635,CRASH PAD near LGA JFK,21216008,Jose,Queens,Jackson Heights,40.75078,-73.87949,Shared room,28,1,4,2019-06-08,2.11,4,354 +34113802,"Brand New, Beautiful LES Apartment",238779678,Dustin,Manhattan,East Village,40.7272,-73.98993,Private room,73,30,0,,,9,364 +34115136,Sonder | Stock Exchange | Gorgeous 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70756,-74.01229,Entire home/apt,210,2,3,2019-06-22,3,327,302 +34116007,Sky luxury building 1b1b summer rental,217642173,Xiangjun,Manhattan,Hell's Kitchen,40.76229,-73.99994,Private room,199,30,0,,,2,140 +34116575,"Sunny, Quiet, Green Studio near Central Park & MET",42144338,Jessie,Manhattan,Upper East Side,40.7786,-73.95028,Entire home/apt,120,6,2,2019-06-15,1.36,1,9 +34116613,Sonder | 116 John | Restful Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70845,-74.00472,Entire home/apt,164,29,0,,,327,327 +34116742,Old style Bk,257602124,Carlo,Brooklyn,Sunset Park,40.64383,-74.02051,Private room,45,4,0,,,1,179 +34117228,Whimsical music room in an Artsy W’burg 3br,6645096,Wendy,Brooklyn,Williamsburg,40.71996,-73.9414,Private room,78,2,2,2019-07-03,2,1,5 +34117732,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76654,-73.95825,Private room,38,30,0,,,6,39 +34118020,Amazing Area - Quick walk to Metro - Spacious!,161324994,Ashley At Bedly,Manhattan,East Harlem,40.791,-73.94807,Private room,38,30,1,2019-05-31,0.77,6,44 +34118644,Sonder | Stock Exchange | Sleek 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7056,-74.0119,Entire home/apt,256,2,4,2019-06-14,2.67,327,293 +34118872,Sonder | Stock Exchange | Superior 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.01105,Entire home/apt,468,2,0,,,327,255 +34118882,Sonder | Stock Exchange | Superior 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.01073,Entire home/apt,229,2,3,2019-06-08,2.09,327,348 +34119451,Amazing 3BR private triplex in historic townhouse!,5173736,Yuliya,Manhattan,Gramercy,40.73499,-73.98875,Entire home/apt,1000,3,7,2019-06-10,3.09,1,286 +34119485,Bright and Spacious Apartment in Bay Ridge,29094579,Ruby,Brooklyn,Fort Hamilton,40.61642,-74.02397,Entire home/apt,89,3,4,2019-06-23,1.56,1,21 +34120117,The Grand Blue Hideaway Near The Park,253227041,Karen,Brooklyn,Crown Heights,40.6725,-73.93079,Entire home/apt,150,3,11,2019-07-01,5.16,1,142 +34120534,"Sunlit Apartment in the ""Friends Building""",128905420,Vaughn,Manhattan,West Village,40.73195,-74.00626,Entire home/apt,500,2,3,2019-06-14,2.31,1,82 +34120696,Fully renovated 1 bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70737,-73.91138,Entire home/apt,74,1,16,2019-06-30,7.16,3,351 +34120717,Sonder | Stock Exchange | Divine 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70736,-74.0125,Entire home/apt,217,2,4,2019-06-21,1.79,327,272 +34120798,Sonder | Stock Exchange | Divine Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70755,-74.01116,Entire home/apt,203,2,7,2019-06-21,3.13,327,328 +34120977,"Chic, Spacious, Bright BK 2-Bedroom w/ Backyard",257576232,Russell,Brooklyn,Williamsburg,40.70992,-73.94969,Entire home/apt,305,2,14,2019-06-30,6.46,1,296 +34121613,"Private room in spacious, cozy Brooklyn home.",3842238,Beverly,Brooklyn,Bushwick,40.69013,-73.91177,Private room,65,1,1,2019-07-01,1,1,88 +34121885,NYC Summer Housing,110319331,Xinting,Manhattan,Upper East Side,40.77132,-73.94829,Entire home/apt,127,5,4,2019-06-29,1.74,1,192 +34121944,"Spacious, studio w/ great lighting in heart of BK",17361902,Shauna,Brooklyn,Crown Heights,40.67114,-73.94921,Entire home/apt,99,3,1,2019-05-17,0.57,1,1 +34122318,"Amazing Area - Free Laundry, Cleaning & WiFi!",161324994,Ashley At Bedly,Manhattan,Upper East Side,40.77348,-73.94601,Private room,37,30,1,2019-07-01,1,6,76 +34122992,Cozy big room Perfect for 2 adults and an infant,123506305,Kisha,Queens,Springfield Gardens,40.66714,-73.77664,Private room,50,1,5,2019-06-01,2.34,3,364 +34123251,Charming Park Slope 2BR (15 Minutes to Manhattan!),257629980,William,Brooklyn,Gowanus,40.66907,-73.99221,Entire home/apt,195,2,6,2019-07-04,3.46,1,330 +34123769,private room in new luxury building,257656654,Viola,Brooklyn,Prospect-Lefferts Gardens,40.65629,-73.95177,Private room,36,120,0,,,1,365 +34124049,Private bedroom located in Downtown Manhattan,257599351,Sandra And Katharina,Manhattan,Chinatown,40.71703,-73.99538,Private room,120,2,8,2019-07-01,3.69,1,34 +34124075,Stay with a native New Yorker!,257585150,Lynne,Manhattan,Upper East Side,40.77167,-73.95529,Private room,120,1,2,2019-06-30,2,1,311 +34124100,2 Bedroom/2 Bath Hell’s Kitchen Gem with views.,5556564,Stephen,Manhattan,Hell's Kitchen,40.76676,-73.99146,Entire home/apt,499,3,3,2019-06-23,2.09,1,1 +34124248,Emergency sleeping for backpacking or Couchsurfer,38483415,Florentino,Manhattan,East Harlem,40.80084,-73.94514,Shared room,35,1,9,2019-06-25,3.86,4,358 +34124328,"Lovely stay near LGA. Lux condo RM, private bath!",137358866,Kazuya,Queens,Woodside,40.74152,-73.90314,Private room,67,30,1,2019-05-17,0.57,103,1 +34124683,Freedom Tower View - pvt Br. Queen size bed,10962595,Rati,Brooklyn,Fort Hamilton,40.61859,-74.03644,Private room,60,28,0,,,1,263 +34124720,"Private Bedroom, LGBTQ Friendly",6665872,Jeremy,Manhattan,Hell's Kitchen,40.7631,-73.98963,Private room,75,2,15,2019-07-03,6.34,1,33 +34124949,"Apartment for rent in EV, ten min from WSP",257668187,Noah,Manhattan,East Village,40.72754,-73.99025,Private room,63,30,1,2019-05-15,0.55,1,18 +34125094,★INCREDIBLE LOCATION★HELLO TIMES SQ & CENTRAL PARK,257188989,Kledi,Manhattan,Midtown,40.76413,-73.97691,Entire home/apt,189,2,10,2019-06-30,5.56,1,36 +34125485,Cozy lil room in the coolest Brooklyn neighborhood,97322120,María Gabriela,Brooklyn,Bushwick,40.69026,-73.90689,Private room,80,4,0,,,1,158 +34125558,"Lux RM near 61St Station, laundry elevator & more!",137358866,Kazuya,Queens,Woodside,40.74123,-73.90152,Private room,59,30,0,,,103,247 +34126611,"amazing, homey, plant-filled and spacious retreat",160118608,Jenny,Brooklyn,Williamsburg,40.7071,-73.94634,Private room,65,5,1,2019-04-24,0.39,1,35 +34126627,Woodside condo room close to Midtown / LGA.,137358866,Kazuya,Queens,Woodside,40.74165,-73.90155,Private room,59,30,1,2019-06-15,1,103,260 +34126672,ZEN LIVING RM CLOSE 2 COLUMBIA UNI & CENTRAL PRK!,161061302,Carol,Manhattan,Upper West Side,40.80244,-73.96592,Shared room,50,1,1,2019-05-08,0.48,2,363 +34126874,suit No.1,257683179,H Ai,Queens,Flushing,40.75139,-73.81328,Private room,55,1,3,2019-06-29,2.81,6,75 +34127215,Beautiful Williamsburg Townhouse 4 bed / 2.5 bath,257685807,Alejandra,Brooklyn,Williamsburg,40.70927,-73.96149,Entire home/apt,650,2,0,,,1,157 +34136999,"Homey Tribeca Studio w/ Pool, Roofdeck, Gym & View by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71691,-74.00511,Entire home/apt,267,30,0,,,232,283 +34137207,"Stunning Chelsea 1BR w/ Doorman, Roofdeck, BBQs & Lounge by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74269,-73.99911,Entire home/apt,316,30,0,,,232,323 +34138042,"Hip FiDi Studio w/ Resident's Bar, Golf Simulator, Pro Gym by Blueground",107434423,Blueground,Manhattan,Financial District,40.7066,-74.00872,Entire home/apt,229,30,0,,,232,333 +34138100,"Lux FiDi 1BR w/ Resident's Bar, Golf Simulator, Pro Gym, by Blueground",107434423,Blueground,Manhattan,Financial District,40.70586,-74.00904,Entire home/apt,262,30,0,,,232,325 +34139763,Quiet & Modern Serene Bedroom near J subway train,5680111,Timothy,Brooklyn,Bushwick,40.68603,-73.91399,Private room,63,12,2,2019-05-17,1.00,7,130 +34142194,QUIET SPACIOUS BEDROOM IN THE HEART OF MANHATTAN,48711094,Alex,Manhattan,Midtown,40.74607,-73.98372,Private room,95,2,10,2019-06-23,4.55,1,0 +34142214,"Cozy home, away from home. 15 mins from downtown.",196476281,Damien,Bronx,Concourse,40.83197,-73.9212,Private room,45,1,4,2019-06-01,1.71,2,318 +34142272,Chic Private Room | Only 1 Stop from Manhattan!,257773717,Lydia,Brooklyn,Williamsburg,40.71041,-73.96327,Private room,58,30,0,,,5,341 +34143050,"Newly Renovated, Unbeatable Location Private Room",257773717,Lydia,Brooklyn,Williamsburg,40.71037,-73.96317,Private room,58,30,0,,,5,338 +34143234,"Large Beautiful Room in Prime BK, 10 Min to City!!",257773717,Lydia,Brooklyn,Williamsburg,40.70944,-73.96472,Private room,58,30,0,,,5,342 +34143280,Clean & Cozy Guestroom in Harlem-Heights,42767903,Shara,Manhattan,Washington Heights,40.83248,-73.94177,Private room,50,3,1,2019-06-21,1,1,14 +34143463,"Feel-Good Decor, Lux Private Room & Great Location",257773717,Lydia,Brooklyn,Williamsburg,40.70887,-73.96249,Private room,58,30,0,,,5,333 +34143632,"Big, Bright, Beautiful Roommate Share in Prime BK",257773717,Lydia,Brooklyn,Williamsburg,40.70954,-73.96284,Private room,58,30,0,,,5,308 +34144954,Spacious Modern Flat in the Heart of Williamsburg,93090420,Patrick,Brooklyn,Williamsburg,40.71327,-73.96155,Private room,100,1,0,,,1,66 +34145824,Peaceful and Cozy Room in Bushwick,157207818,Vanessa,Brooklyn,Bushwick,40.70044,-73.9243,Private room,63,1,7,2019-06-30,3.28,1,22 +34146260,Crash Pad in Jackson Heights,153371127,Nancy,Queens,Jackson Heights,40.75023,-73.87772,Shared room,27,1,4,2019-06-10,2.73,2,355 +34146835,Massive Private Bedroom in Brooklyn Heights,2119428,Ori,Brooklyn,Brooklyn Heights,40.69699,-73.9936,Private room,125,3,9,2019-07-05,4.58,1,252 +34147375,Sonder | Stock Exchange | Sunny 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70776,-74.01239,Entire home/apt,470,2,3,2019-06-23,1.55,327,237 +34147683,Studio Apt in the Heart of Flatiron,18149022,Samantha,Manhattan,Flatiron District,40.73996,-73.98972,Entire home/apt,225,4,0,,,1,365 +34147709,Sonder | Stock Exchange | Brilliant 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70744,-74.01048,Entire home/apt,229,2,2,2019-06-23,0.82,327,331 +34147733,Sonder | Stock Exchange | Stunning 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70711,-74.01044,Entire home/apt,470,2,4,2019-06-14,2.50,327,242 +34147828,Sonder | Stock Exchange | Brilliant 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.01248,Entire home/apt,228,2,1,2019-05-05,0.46,327,353 +34148267,"Stunning Private Apt, Perfect Location Premium Bed",14552154,Leslie,Manhattan,Midtown,40.74411,-73.98209,Entire home/apt,239,3,5,2019-06-28,2.50,4,319 +34148700,Spacious Room in 3 Bedroom BK Apt!,190688437,Nirma,Brooklyn,Bushwick,40.69072,-73.91891,Private room,40,30,0,,,1,189 +34148819,Private Room In Little Italy,236839319,Brooke,Manhattan,Little Italy,40.71803,-73.99835,Private room,59,30,0,,,3,35 +34150118,Cool newly renovated 1BR Apt overlooking Park,40875021,Scott,Manhattan,East Harlem,40.79325,-73.93386,Entire home/apt,150,1,2,2019-05-27,1.22,3,178 +34150120,2 bed.Full apartment. L Train.15 min away from NYC,257832461,Stephanie,Brooklyn,Bushwick,40.70247,-73.92671,Entire home/apt,99,1,32,2019-07-05,13.33,1,77 +34150332,Adorable room 2,34689714,Maria,Manhattan,Hell's Kitchen,40.7667,-73.98829,Private room,99,1,0,,,5,365 +34150501,Amazing 3BR Apartment - Incredible Location,174313318,Plamen,Manhattan,Chelsea,40.74781,-73.99436,Entire home/apt,380,3,1,2019-05-28,0.71,1,296 +34150631,conveniently located to highway !,257836545,Floriane,Brooklyn,Canarsie,40.63117,-73.88688,Entire home/apt,125,1,0,,,1,360 +34150840,Brooklyn Sunny Apartment,25086874,Mono,Brooklyn,Bedford-Stuyvesant,40.69215,-73.94051,Private room,50,1,1,2019-07-02,1,1,51 +34150989,CHARMING APT. IN MANHATTAN! 2 FULL BATH & 7 BEDS,257838704,Dave,Manhattan,Washington Heights,40.84237,-73.93914,Entire home/apt,300,5,6,2019-06-16,2.50,1,252 +34151215,Bright and Artsy 2 Bedroom Apartment,257810280,Leslie,Brooklyn,Bedford-Stuyvesant,40.67935,-73.93715,Entire home/apt,100,1,5,2019-07-08,5,1,0 +34151410,Cozy apartment in a safe neighborhood,257842396,Jalal,Brooklyn,Greenpoint,40.72468,-73.94042,Entire home/apt,200,2,1,2019-06-10,1,1,0 +34152348,Awesome 3 bedroom apartment in best location,29092144,Katrin,Manhattan,Chelsea,40.7465,-73.9981,Entire home/apt,320,15,2,2019-05-16,0.97,1,299 +34152598,Hip budget friendly room 20 min from Manhattan!,34269923,Annabella,Brooklyn,Bushwick,40.69718,-73.91165,Private room,52,1,7,2019-07-01,4.77,1,0 +34152864,Luxury 2 Bedrooms 2 bathrooms High-rise,252211149,Anna,Manhattan,Kips Bay,40.7443,-73.97519,Entire home/apt,304,1,9,2019-06-22,4.66,1,127 +34153345,★ Discounted!!★ NEAR TIMES SQUARE,229603136,Pinki,Manhattan,Hell's Kitchen,40.76368,-73.98881,Entire home/apt,239,2,6,2019-06-16,3.46,1,335 +34153647,"Beautiful private Master Bedroom in +Bushwick!",2008510,Ben,Brooklyn,Bushwick,40.70395,-73.92585,Private room,65,4,3,2019-05-25,1.43,1,75 +34153683,Sun Filled Studio In the Heart of the East Village,61086446,Brian,Manhattan,East Village,40.72555,-73.98499,Entire home/apt,300,4,1,2019-05-19,0.59,1,0 +34153891,Private Room in a Brand New Apt / Quiet Building,257866899,Carlos,Manhattan,Harlem,40.81864,-73.94108,Private room,60,4,6,2019-06-24,2.81,1,212 +34154569,NEW APT - 15 MINS TO MANHATTAN!,6004860,Reza,Queens,Woodside,40.74807,-73.9028,Entire home/apt,79,30,0,,,1,333 +34154797,Private Room Near Staten Island Ferry,204823078,Maria,Staten Island,South Beach,40.58802,-74.08855,Private room,50,2,4,2019-06-21,1.85,2,80 +34155626,Luxury UWS 2 bed 1.5 bath Summer Sublet,14929050,Nuisha,Manhattan,Upper West Side,40.78893,-73.97591,Entire home/apt,350,20,0,,,1,33 +34156010,Amazing Luxury Apt in the middle of Manhattan,257677041,Elsen,Manhattan,Kips Bay,40.7421,-73.97404,Entire home/apt,539,1,13,2019-07-06,7.36,1,233 +34156161,Chelsea Luxury & Cozy 2 Bedroom Apartment,257671905,Evelyn,Manhattan,Chelsea,40.74301,-73.9937,Entire home/apt,249,1,8,2019-06-22,4.80,1,131 +34156292,Charming and Elegant Apartment by Central Park,257888723,Francesco,Manhattan,Upper East Side,40.78563,-73.95396,Entire home/apt,250,4,2,2019-07-01,2,1,297 +34156436,Stunning 2 Bedrooms Apt Central Park West,257891606,Paola,Manhattan,Upper West Side,40.78198,-73.97571,Entire home/apt,249,1,13,2019-07-04,7.22,1,29 +34156769,LOW PRICE! up to 4+ people-Near LGA / JFK AIRPORT,246194760,Noel,Queens,East Elmhurst,40.76021,-73.88301,Private room,49,1,3,2019-06-14,2.14,4,207 +34157056,Top Of New York City Luxury 2Bedroom -with Terrace,253328272,Dani,Manhattan,Murray Hill,40.74511,-73.97407,Entire home/apt,499,1,1,2019-06-08,1,1,216 +34157717,Private Apt w/2 Queen beds close to NY Attractions,110539055,Manny,Bronx,Williamsbridge,40.87699,-73.85366,Entire home/apt,87,2,5,2019-06-30,5,2,298 +34160208,The Perfect 2 Bedroom Designer Flat in L.E.S.,20377891,B.,Manhattan,Chinatown,40.71538,-73.99004,Entire home/apt,250,1,1,2019-06-20,1,2,92 +34160917,The Perfect Chic 2BR/1BA Designer Flat in L.E.S.,20377891,B.,Manhattan,Lower East Side,40.71456,-73.98986,Entire home/apt,250,1,1,2019-07-01,1,2,58 +34165293,Clean w/ lovely interiors. Nice loc Woodside room!,137358866,Kazuya,Queens,Woodside,40.74654,-73.90776,Private room,60,30,0,,,103,215 +34167620,"comfortable room, 25min from manhattan",28096614,Bruno,Queens,Woodside,40.74298,-73.90582,Private room,50,2,4,2019-06-27,1.88,2,266 +34168420,SUMMER DEAL! Duplex: 2 Bedrooms with Private Yard,257974128,Mark & Olivia,Manhattan,Upper East Side,40.78473,-73.94884,Entire home/apt,350,4,2,2019-06-24,1.87,1,191 +34169395,Gorgeous Tribeca 2BR w/ Amazing city views + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71633,-74.00521,Entire home/apt,426,30,0,,,232,321 +34169778,22min from Manhattan,28096614,Bruno,Queens,Woodside,40.74249,-73.90603,Private room,50,2,10,2019-07-02,4.76,2,257 +34170097,Cozy 1 Bedroom Close To Manhattan,86196529,Jordan,Brooklyn,Williamsburg,40.70313,-73.93837,Entire home/apt,101,2,4,2019-06-18,1.88,1,75 +34172085,Spacious private bedroom in Manhattan.,257993786,Ronnie,Manhattan,Inwood,40.86473,-73.92641,Private room,60,1,9,2019-07-07,6.28,1,352 +34172128,Two bedrooms/ 1.5 restrooms in welcoming home!,238733096,Roy,Queens,Richmond Hill,40.68201,-73.83023,Private room,100,2,0,,,2,160 +34172912,Beautiful apartment in prime Soho NYC,16862745,Andrea,Manhattan,Greenwich Village,40.72786,-74.00158,Entire home/apt,250,2,8,2019-06-21,3.69,1,310 +34173196,"Private Queen bedroom, wonderful view",161472665,Melissa,Manhattan,East Village,40.72729,-73.97618,Private room,250,1,2,2019-05-24,1.18,1,178 +34173579,Quiet and cozy 1 bedroom apartment,78261482,Petr,Manhattan,Hell's Kitchen,40.76085,-73.99222,Entire home/apt,168,3,2,2019-07-01,1.13,2,4 +34174357,Beautiful private room in Manhattan,245886857,Djily,Manhattan,Harlem,40.81249,-73.94175,Private room,90,4,0,,,2,365 +34175118,Luxury Soho Executive Suite,61391963,Corporate Housing,Manhattan,Little Italy,40.7191,-73.99671,Entire home/apt,150,30,0,,,91,312 +34175216,Beautiful room in Manhattan,245886857,Djily,Manhattan,Harlem,40.81312,-73.94215,Private room,70,5,0,,,2,364 +34175707,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75923,-73.98669,Entire home/apt,222,29,0,,,327,221 +34176066,Airy Bushwick Home with Back Yard,743732,Jaxyn,Brooklyn,Bushwick,40.70043,-73.92266,Entire home/apt,70,30,0,,,1,0 +34176229,***Awesome bedroom in the heart of Manhattan***,34782150,Harold,Manhattan,Hell's Kitchen,40.76691,-73.98719,Private room,200,2,0,,,1,0 +34176788,A Little Sumptin' on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.67878,-73.9172,Private room,48,1,22,2019-07-07,9.85,2,236 +34177117,Sonder | The Biltmore | 1BR,219517861,Sonder (NYC),Manhattan,Theater District,40.76118,-73.98635,Entire home/apt,699,29,0,,,327,365 +34177609,MODERN APT WITH AN AMAZING CITY VIEW IN MIDTOWN,82537581,Gabriel,Manhattan,Hell's Kitchen,40.76802,-73.99298,Entire home/apt,249,5,2,2019-07-01,2,1,364 +34177796,Blocks to the High Line * West Village Home for 10,63393553,S,Manhattan,West Village,40.73855,-74.00125,Entire home/apt,577,2,2,2019-06-06,1.30,1,273 +34178190,Room in Bright Authentic New York Style Apartment,204806146,Broque,Manhattan,Inwood,40.86594,-73.92487,Private room,46,1,7,2019-06-30,3.28,1,143 +34179115,Stunning View of Manhattan with Balcony,141510360,Diego,Brooklyn,Park Slope,40.67018,-73.98752,Private room,50,2,2,2019-05-27,1.22,1,102 +34179924,Comfy Room in the Heart of Queens,258058607,Raul,Queens,Woodside,40.74444,-73.896,Private room,125,1,0,,,1,90 +34180216,Comfy Jfk Room to crash,232251881,Lakshmee,Queens,Jamaica,40.66794,-73.78483,Private room,39,1,15,2019-07-04,6.25,8,0 +34180340,Sunny & Spacious Room,181233778,Aishah,Bronx,Belmont,40.85595,-73.88519,Private room,27,30,0,,,1,68 +34180413,Great 3 Bedroom Apartment - Incredible Location,257282534,Martina,Manhattan,Chelsea,40.74618,-73.9963,Entire home/apt,380,25,0,,,1,353 +34180443,"BRIGHT, chic, Huge room with PRIVATE BATHROOM",44260443,Bah,Brooklyn,Bedford-Stuyvesant,40.68268,-73.93055,Private room,75,1,12,2019-06-29,5.37,1,60 +34181077,Penthouse Spectacular NYC Skyline Views,258057633,Mo,Manhattan,Kips Bay,40.74375,-73.97372,Entire home/apt,499,1,10,2019-07-05,6.38,1,194 +34181176,"Flat at EMPIRE STATE BUILDING! +doorman & rooftop",53720018,Vivi,Manhattan,Midtown,40.74798,-73.987,Entire home/apt,299,2,0,,,1,0 +34181264,Room 2. Bunk beds available for two adults.,251859047,Errol,Brooklyn,Crown Heights,40.67558,-73.9231,Private room,65,2,3,2019-07-01,2.09,3,126 +34181609,"Huge, Bright Room in Prime Williamsburg",57247607,Iman,Brooklyn,Williamsburg,40.71808,-73.95839,Private room,200,2,0,,,1,69 +34181682,Sonder | The Biltmore | Chic 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76152,-73.98587,Entire home/apt,157,29,0,,,327,340 +34181803,"Safe & lively, tons of restaurants & bars nearby!",221839786,Seira,Manhattan,Hell's Kitchen,40.76417,-73.99334,Private room,145,1,6,2019-06-30,4.09,1,287 +34182096,Architecturally Designed East Village Oasis,18327084,Sheelagh,Manhattan,East Village,40.72495,-73.97679,Entire home/apt,240,4,0,,,1,83 +34182523,Gorgeous Super Large 2 Bedroom apartment,257982308,Bessi,Manhattan,Upper West Side,40.78422,-73.97754,Entire home/apt,299,1,5,2019-06-22,3.13,1,61 +34182985,Adorable Room w/Gym Access-Hamilton Hts Manhattan,4592344,Ally,Manhattan,Harlem,40.82261,-73.95544,Private room,53,3,1,2019-06-04,0.86,1,74 +34183825,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75942,-73.98727,Entire home/apt,699,29,0,,,327,332 +34183895,Sonder | Stock Exchange | Intimate 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7063,-74.01254,Entire home/apt,247,2,4,2019-06-23,2.35,327,232 +34184572,3 Bedroom Apartment in Midtown - Amazing Deal,258097158,Kismet,Manhattan,Kips Bay,40.7436,-73.9768,Entire home/apt,311,1,12,2019-07-03,6.21,1,220 +34184764,"NEW - STEPS TO SUBWAY, NO STOP TO MANHATTAN!",110375726,Dane,Queens,Woodside,40.74625,-73.90311,Entire home/apt,99,30,1,2019-05-31,0.77,1,333 +34184826,Private big room in upper east side,45317760,Mohammed,Manhattan,Upper East Side,40.76915,-73.95515,Private room,60,14,3,2019-06-02,2.25,3,29 +34184923,Cozy 2 Bedroom in Luxury Building,258057196,Linda,Manhattan,Murray Hill,40.74624,-73.9725,Entire home/apt,299,1,8,2019-06-26,4.44,1,93 +34186291,Smoke n Mirrors,10415735,Angie,Queens,Howard Beach,40.66144,-73.85762,Entire home/apt,250,1,1,2019-06-29,1,2,346 +34186868,Bianchi Soho,150878611,Yuri,Manhattan,Nolita,40.72169,-73.99642,Entire home/apt,150,30,11,2019-06-22,4.65,1,40 +34191165,Top 3BR Apartment in THE BEST LOCATION,141194319,Cathy,Manhattan,Chelsea,40.75338,-73.99822,Entire home/apt,370,12,0,,,1,320 +34194218,Cozy studio located in midtown west,2086035,Piyawan,Manhattan,Hell's Kitchen,40.75526,-73.9945,Entire home/apt,195,1,9,2019-07-01,6.14,2,267 +34194826,Private room in Williamsburg,95381568,Elias,Brooklyn,Williamsburg,40.7134,-73.96306,Private room,85,4,3,2019-06-24,2.20,1,6 +34196242,Newly renovated loft on quiet block,20810101,Amy,Brooklyn,Bedford-Stuyvesant,40.68111,-73.94683,Private room,93,1,2,2019-06-29,1.40,2,23 +34196510,Midtown West Hotel - Boutique Queen,252604696,Erin,Manhattan,Chelsea,40.74948,-73.99506,Private room,199,1,0,,,20,189 +34197608,Private room in Brooklyn,232641412,Amp,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94308,Private room,45,2,0,,,1,3 +34197691,"Super Great Bright Room, 15mins to NYC w/ desk",229249302,Missy,Brooklyn,Bushwick,40.69751,-73.93582,Private room,120,1,16,2019-07-05,6.96,1,57 +34197733,Beautiful 3 Bedroom 15 Minutes To Manhattan NYC,258186526,Mimi,Queens,Woodside,40.74823,-73.90352,Entire home/apt,189,2,10,2019-06-22,4.23,1,62 +34198108,Time Square South - Sunny Lux Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75029,-73.99492,Private room,129,1,3,2019-06-23,1.48,20,358 +34199108,Beautiful apartment in Manhattan!,130155462,Fred,Manhattan,Financial District,40.70578,-74.00769,Entire home/apt,280,2,11,2019-06-26,5.89,1,182 +34199411,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76514,-73.96176,Private room,38,30,1,2019-06-01,0.79,6,43 +34199783,Modern One Bedroom - Greenpoint,9583320,Raine & Andrew,Brooklyn,Greenpoint,40.72336,-73.94652,Entire home/apt,150,7,1,2019-06-11,1,1,0 +34200086,Cozy Studio with Patio Close to the Subway,258202599,Elijah,Manhattan,East Harlem,40.78967,-73.94199,Entire home/apt,145,2,7,2019-06-24,3.62,1,0 +34200677,Great Eclectic Studio Apt in Brooklyn !!!!!!,161496464,Tyler,Brooklyn,Flatbush,40.65188,-73.95649,Entire home/apt,95,1,2,2019-07-07,0.91,1,362 +34201544,"5min walk to Metro+Laundry, Cleaning, & AC!",155299207,Casey,Brooklyn,Crown Heights,40.67648,-73.93881,Private room,33,30,0,,,1,45 +34201695,BedStuy Private Room (M2),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6914,-73.9294,Private room,65,1,4,2019-06-18,2.35,8,12 +34202149,"Perfect 2 Bedroom Apt on East River, Williamsburg",31628364,Sarah,Brooklyn,Williamsburg,40.71603,-73.96417,Entire home/apt,220,3,4,2019-06-29,1.97,1,44 +34202304,曼哈顿 林肯中心 Manhattan Lincoln Center 5分钟到西59/66地铁站,97044757,柏润,Manhattan,Upper West Side,40.77435,-73.98761,Entire home/apt,139,20,0,,,2,18 +34202362,Entire Apt. In Brooklyn. 25 minutes to Manhattan.,135061108,Carmelo,Brooklyn,East Flatbush,40.64902,-73.94795,Entire home/apt,125,1,0,,,2,33 +34202651,"UWS 3BR/2BTH Apt, 1 block from Central Park",652539,Jamie,Manhattan,Upper West Side,40.79097,-73.96885,Entire home/apt,500,4,2,2019-06-04,1.36,1,256 +34202946,Sonder | 21 Chelsea | Stunning 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74285,-73.99595,Entire home/apt,277,29,0,,,327,365 +34203531,☆ Times Square- Home Away From Home,444275,Sara And Ronald,Manhattan,Hell's Kitchen,40.76521,-73.98986,Entire home/apt,180,3,1,2019-05-21,0.61,1,17 +34203594,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.7601,-73.98675,Entire home/apt,699,29,0,,,327,333 +34203595,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74455,-73.97162,Entire home/apt,162,29,0,,,327,341 +34203618,"Well lit room in FiDi, Manhattan-June,July sublet",225651433,Sruthi,Manhattan,Financial District,40.708,-74.01485,Private room,52,25,0,,,1,99 +34204138,2 Bedroom apt in LES with a private roof top,258230385,Vangelis,Manhattan,Chinatown,40.71661,-73.99275,Entire home/apt,176,30,1,2019-06-19,1,1,339 +34204173,Upscale Luxury High Rise with Amazing Terrace,257679591,Arthur,Manhattan,Murray Hill,40.74485,-73.97388,Entire home/apt,500,1,5,2019-06-18,2.94,1,62 +34204219,Bedroom + Private Office by Barclays Ctr,20702874,Jody,Brooklyn,Park Slope,40.68092,-73.97823,Private room,68,14,0,,,1,4 +34204602,Sonder | 11th Ave | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76166,-73.99691,Entire home/apt,182,29,0,,,327,302 +34204893,Gorgeous spacious 1 bedroom apartment,85773188,Mark,Brooklyn,Brighton Beach,40.57589,-73.96636,Entire home/apt,86,1,10,2019-07-08,9.09,1,20 +34205267,"Spacious, sunny room in Queens/Brooklyn",913940,Giancarlo,Queens,Ridgewood,40.70666,-73.90779,Private room,30,21,0,,,1,73 +34205286,Sonder | Upper East Side | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.7639,-73.96432,Entire home/apt,150,29,0,,,327,220 +34205501,Sonder | 11th Ave | Restful 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76061,-73.9967,Entire home/apt,189,29,0,,,327,334 +34205576,Convenient ground floor duplex - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70998,-73.94694,Private room,155,3,1,2019-05-27,0.70,3,365 +34206163,Midtown Manhattan - Cozy Triple Room,252604696,Erin,Manhattan,Chelsea,40.74889,-73.99656,Private room,199,1,2,2019-05-26,1.15,20,352 +34206373,Sonder | The Nash | Classic 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7484,-73.97544,Entire home/apt,200,29,0,,,327,342 +34206597,Waterfront 2 bd apt. Amazing views to Manhattan!,227163,"Coleen, Felipe And Victoria",Brooklyn,Williamsburg,40.70847,-73.96837,Entire home/apt,270,3,1,2019-06-08,1,1,0 +34206654,Manhattan Time Square South-Sunny Queen Room,252604696,Erin,Manhattan,Chelsea,40.75022,-73.99632,Private room,199,1,0,,,20,365 +34206709,Manhattan Chelsea - Cozy Queen Room,252604696,Erin,Manhattan,Chelsea,40.74952,-73.99671,Private room,199,1,0,,,20,365 +34206762,Time Square Modern Cozy Queen,252604696,Erin,Manhattan,Chelsea,40.75059,-73.9967,Private room,199,1,2,2019-06-19,0.81,20,365 +34206858,Good Day New York - Comfy Queen,252604696,Erin,Manhattan,Chelsea,40.74914,-73.99471,Private room,199,1,0,,,20,365 +34206929,Madison Square Garden - Sunny Queen,252604696,Erin,Manhattan,Chelsea,40.75093,-73.99523,Private room,199,1,1,2019-05-18,0.57,20,363 +34207022,Manhattan West - Cozy Single Room,252604696,Erin,Manhattan,Chelsea,40.74975,-73.9961,Private room,129,1,0,,,20,359 +34207413,Manhattan Chelsea Cozy Single,252604696,Erin,Manhattan,Chelsea,40.75074,-73.9967,Private room,149,1,0,,,20,359 +34207474,Good Day New York - Sunny Single,252604696,Erin,Manhattan,Chelsea,40.7494,-73.99519,Private room,149,1,0,,,20,359 +34207536,Sonder | Wall Street | Peaceful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70709,-74.01241,Entire home/apt,257,2,0,,,327,355 +34207537,Contemporary 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7618,-73.9979,Entire home/apt,185,29,0,,,327,332 +34207544,Madison Square Sunny Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75055,-73.99482,Private room,149,1,0,,,20,351 +34207635,Midtown West - Comfort Twin Single Hotel,252604696,Erin,Manhattan,Chelsea,40.74942,-73.99536,Private room,149,1,0,,,20,359 +34207673,Manhattan Midtown West - Modern Single Hotel Room,252604696,Erin,Manhattan,Chelsea,40.74899,-73.99605,Private room,159,1,0,,,20,359 +34207739,30ST & 8th Ave Hotel - Twin Single Room,252604696,Erin,Manhattan,Chelsea,40.74882,-73.99663,Private room,159,1,0,,,20,359 +34207823,Time Square South - Clean Triple Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75064,-73.99626,Private room,219,1,4,2019-07-04,1.82,20,356 +34207862,Midtown Boutique Hotel - Cozy Single,252604696,Erin,Manhattan,Chelsea,40.74913,-73.99513,Private room,159,1,0,,,20,360 +34207902,Midtown West Hotel - Bright Queen Room,252604696,Erin,Manhattan,Chelsea,40.75095,-73.99628,Private room,219,1,0,,,20,365 +34207925,Spacious and beautiful 4BR with backyard,646729,Andy,Brooklyn,Flatbush,40.63781,-73.96531,Entire home/apt,275,2,10,2019-07-03,5.17,1,298 +34208053,✴ COZY Astoria NYC ✴ 1BDR & 1 BATH APT,258265562,Ossama,Queens,Long Island City,40.75575,-73.93037,Entire home/apt,113,2,4,2019-06-07,1.85,1,0 +34208055,Private room in queens,1346437,Cristina,Queens,Sunnyside,40.74628,-73.9243,Private room,50,7,0,,,2,35 +34208237,Entire Magnificent Townhouse,98039499,Luigi,Manhattan,Upper East Side,40.77052,-73.96683,Entire home/apt,249,5,6,2019-06-25,3.27,1,116 +34208508,Sonder | 11th Ave | Stunning 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76241,-73.99606,Entire home/apt,182,29,0,,,327,319 +34208509,Simple 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74461,-73.97349,Entire home/apt,190,29,0,,,327,261 +34208674,Amazing 5 bed/2 bath Duplex 10 min from Manhattan!,258269673,Jameson,Brooklyn,Williamsburg,40.71547,-73.94074,Entire home/apt,595,2,4,2019-06-24,2.79,1,322 +34209348,Verrazano bridge garden house,98297464,Max,Brooklyn,Fort Hamilton,40.62065,-74.02929,Private room,68,5,2,2019-06-20,1.71,2,55 +34209440,Hotel-like Cottage Private Room KING Bed 25min NYC,48684597,David,Queens,Maspeth,40.73763,-73.89533,Private room,50,1,10,2019-07-01,4.48,4,218 +34209596,NYC Private Room in Manhattan,258247777,Claudio,Manhattan,Harlem,40.81672,-73.94746,Private room,135,3,5,2019-06-17,2.50,3,224 +34209682,Stunning 2Bedroom Apartment in LES Hot Spot,257973120,Maxinne,Manhattan,Lower East Side,40.72138,-73.98543,Entire home/apt,120,7,3,2019-06-30,1.76,1,284 +34209710,Cozy Room for Female Guests/ just 30sec to Subway!,63834320,Minami & Takuya,Brooklyn,Bushwick,40.70058,-73.91123,Private room,65,2,8,2019-07-07,3.93,1,19 +34209885,Sonder | 11th Ave | Modern 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76218,-73.99646,Entire home/apt,189,29,0,,,327,333 +34210645,2 bedroom 2 bathroom with garden heart of Bushwick,258286476,Eden,Brooklyn,Bushwick,40.69861,-73.91999,Entire home/apt,90,4,2,2019-05-12,0.94,1,34 +34211618,Lovely 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76182,-73.996,Entire home/apt,187,29,0,,,327,331 +34212511,Sonder | The Nash | Original 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74787,-73.97457,Entire home/apt,202,29,0,,,327,355 +34213403,"Comfy Sunnyside Room, Midtown in less than 30!",137358866,Kazuya,Queens,Sunnyside,40.74627,-73.92027,Private room,43,30,0,,,103,216 +34213482,Sonder | The Nash | Relaxed 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74883,-73.9752,Entire home/apt,200,29,0,,,327,365 +34213836,Delightful 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74421,-73.97221,Entire home/apt,190,29,0,,,327,345 +34214603,Sonder | 11th Ave | Vibrant 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76198,-73.99644,Entire home/apt,184,29,0,,,327,334 +34217313,Sonder | 11th Ave | Polished 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76229,-73.99628,Entire home/apt,187,29,0,,,327,335 +34218886,Beautiful and cozy place 2 min walk from subway,257999795,Joao,Brooklyn,Bushwick,40.68178,-73.90313,Private room,60,1,6,2019-06-23,5.14,1,52 +34221161,Room with sofa bed or air mattress,9295237,Noelle,Queens,Astoria,40.75593,-73.91276,Private room,2000,365,0,,,2,0 +34222262,Sonder | The Biltmore | Modern 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76089,-73.9862,Entire home/apt,215,29,0,,,327,342 +34222263,Sonder | The Nash | Cozy 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74695,-73.97615,Entire home/apt,200,29,0,,,327,339 +34222682,Nice sunny room in great part of Bed Stuy,122551862,Marian,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94465,Private room,50,2,2,2019-07-01,0.90,2,8 +34222823,Spacious + beautiful Garden apt in brick townhouse,831185,Andrew,Brooklyn,Crown Heights,40.67978,-73.96231,Entire home/apt,335,2,1,2019-07-01,1,3,365 +34223346,Big and bright with private entrance,41976386,Nawar,Queens,Ridgewood,40.70611,-73.91521,Private room,50,30,0,,,1,36 +34224023,Brilliant like studio apartment close to Manhattan,254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92996,Private room,89,1,25,2019-07-07,10.56,3,160 +34227232,Very quiet two twin beds room 温馨双单人床小屋,140630987,Jiali,Queens,Flushing,40.76089,-73.8142,Private room,70,1,7,2019-07-07,3.18,6,326 +34227846,Great New York-korea town Shared room,179336958,Ruby,Manhattan,Midtown,40.74605,-73.98634,Shared room,65,3,1,2019-06-29,1,6,353 +34228220,Newly Renovated 2 bedroom in Heart of Times Square,258413226,Collin,Manhattan,Hell's Kitchen,40.75548,-73.99513,Entire home/apt,225,3,11,2019-07-02,5.08,1,152 +34228341,A.Hamilton(for GUYS only),51596474,Antony,Brooklyn,Bay Ridge,40.62638,-74.01837,Shared room,18,9,1,2019-06-15,1,12,0 +34228857,"B, Hamilton( For GUYS ONLY)",51596474,Antony,Brooklyn,Bay Ridge,40.62703,-74.01952,Shared room,22,5,0,,,12,0 +34229313,Astoria's Retreat 10min away from the city. Prkg,247092108,Jackie,Queens,Astoria,40.76683,-73.91435,Entire home/apt,199,1,12,2019-07-06,7.06,3,283 +34229869,Cozy Living Room Futon,27537930,Preston,Bronx,Pelham Gardens,40.86209,-73.84667,Shared room,20,1,0,,,1,5 +34230311,Sonder | The Nash | Edgy 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74693,-73.97582,Entire home/apt,204,29,0,,,327,326 +34230337,Master Bed Room With Private Bathroom #1,258217172,Jin Sen,Brooklyn,Bushwick,40.68757,-73.90961,Private room,70,1,9,2019-06-29,4.22,1,262 +34230593,Spacious UES place. Flexible check-in/out. Subway.,113927793,Liz,Manhattan,Upper East Side,40.77712,-73.95164,Entire home/apt,155,2,8,2019-06-16,3.38,1,0 +34231172,Fully renovated brick house floor in Brooklyn,59642348,Kevin,Brooklyn,Sunset Park,40.6455,-74.01262,Entire home/apt,95,1,9,2019-07-08,9,1,106 +34231565,Private bedroom and bathroom 15 mins from the city,2961266,John,Queens,Sunnyside,40.73857,-73.92563,Private room,72,1,4,2019-07-02,4,2,25 +34231746,Big and Bright Room in South Bronx Artist Home!,9975046,Karah,Bronx,Longwood,40.81835,-73.91465,Private room,65,3,0,,,1,0 +34232536,Red Violet,145878384,Denise,Brooklyn,East Flatbush,40.65093,-73.93269,Private room,75,3,2,2019-06-12,1.54,7,245 +34232892,East Flatbush Charmer,258013305,Marsha,Brooklyn,East Flatbush,40.64298,-73.93945,Private room,40,2,7,2019-06-30,4.29,1,0 +34233364,★ Huge Three Bedroom Centrally Located ★,258389576,William,Manhattan,Upper East Side,40.78161,-73.94852,Entire home/apt,450,1,5,2019-05-31,2.24,1,164 +34233430,Contemporary studio in Manhattan,258460961,Elena,Manhattan,Upper East Side,40.77932,-73.94547,Entire home/apt,150,3,4,2019-06-30,1.90,1,315 +34233572,"Quiet, Safe, Clean Room",258461766,Leslie,Queens,Flushing,40.75073,-73.82052,Private room,75,1,0,,,1,365 +34234242,Empire state building neighbor,44803585,Chrissy,Manhattan,Midtown,40.74673,-73.98191,Entire home/apt,300,1,4,2019-06-02,1.85,1,235 +34234982,NYC Manhattan Private Room,258247777,Claudio,Manhattan,Harlem,40.81548,-73.94556,Private room,135,3,6,2019-06-10,2.86,3,247 +34235178,NYC Manhattan Private Room! Private Bathroom!!,258247777,Claudio,Manhattan,Harlem,40.81693,-73.94562,Private room,135,5,1,2019-05-23,0.64,3,320 +34235450,I rent out brand new 2br/2bath apt in Chinatown,24890474,Stanislav,Manhattan,Chinatown,40.71333,-73.99419,Entire home/apt,300,2,5,2019-06-20,2.42,1,231 +34243440,Room in Astoria - few steps from subway Ditmars,16072483,Danilo,Queens,Ditmars Steinway,40.77419,-73.91113,Private room,30,2,5,2019-07-02,2.31,1,11 +34244391,A space like a home,258536261,Judy,Brooklyn,Cypress Hills,40.67959,-73.88302,Entire home/apt,100,2,11,2019-07-08,5.69,1,179 +34245023,Apartment,185974751,Claudia,Manhattan,Upper West Side,40.79527,-73.96666,Private room,48,5,1,2019-05-11,0.50,1,0 +34245778,Mi Rincón acogedor!,258551028,Alcira,Brooklyn,Bensonhurst,40.61985,-74.00205,Private room,40,5,4,2019-05-24,1.74,1,0 +34247014,Tribeca 3.5 Bedroom Loft,106627,Philip,Manhattan,Tribeca,40.71734,-74.00858,Entire home/apt,750,7,0,,,1,22 +34247102,"Charming, newly renovated prime Park Slope Studio",11522108,Cecilia,Brooklyn,Park Slope,40.67428,-73.97559,Entire home/apt,150,3,4,2019-06-25,2.73,1,130 +34249203,BK Cozy Couch,7817764,Karen,Brooklyn,Williamsburg,40.70197,-73.94131,Shared room,50,3,0,,,1,16 +34250079,Williamsburg historic apt. summer sublet!,5317044,Jasper,Brooklyn,Williamsburg,40.7153,-73.95333,Entire home/apt,109,45,0,,,1,62 +34250344,ROOM # 3 near to JFK & LGA Airport,258589420,Diego,Queens,Richmond Hill,40.68908,-73.83326,Private room,56,1,12,2019-07-07,5.37,7,179 +34251007,Penthouse with breath taking views of the skyline.,258596027,Noreen,Queens,Long Island City,40.74973,-73.94015,Entire home/apt,199,2,6,2019-06-10,3.46,1,316 +34251212,Charming One-Bedroom East Village Apartment,59782332,Nikolas,Manhattan,East Village,40.72325,-73.98776,Entire home/apt,120,3,4,2019-07-06,1.82,1,0 +34251397,"Nice House, clean space",258518165,Andres,Queens,Bayside,40.74966,-73.75328,Private room,80,1,0,,,1,289 +34251643,NYC 2-bedrooms apartment @ Brooklyn,258118351,Artie,Brooklyn,Borough Park,40.64032,-73.99493,Entire home/apt,95,18,2,2019-06-04,1.62,2,38 +34251664,Cozy private room 10 min to Columbia Univiersity,250207981,Junyi,Manhattan,Upper West Side,40.80378,-73.96619,Private room,50,14,1,2019-04-29,0.42,1,15 +34251680,Spacious private bedroom upper manhattan NYC,4711282,Gen,Manhattan,Washington Heights,40.85015,-73.93863,Private room,70,1,11,2019-06-16,4.93,1,97 +34251990,Great location in Hells kitchen,32615118,Taylor,Manhattan,Hell's Kitchen,40.7676,-73.98609,Private room,110,5,3,2019-06-14,1.76,1,331 +34252769,Comfortable 2 bedroom Condo (Chelsea),258273798,Benny,Manhattan,West Village,40.74021,-74.00414,Entire home/apt,259,1,10,2019-07-02,5.45,1,32 +34253217,Fantastic 2 Bedroom Apartment,258599553,Matt,Manhattan,Kips Bay,40.7432,-73.97703,Entire home/apt,190,1,4,2019-06-17,2.14,1,144 +34253279,"Jfk min away. Welcome to the beach! Fun,sand,surf",125320407,Sata,Queens,Far Rockaway,40.60412,-73.75163,Private room,875,2,0,,,5,365 +34253845,Bedroom w full kitchen & living room - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70992,-73.94698,Private room,100,1,4,2019-06-02,2.03,3,365 +34254505,"2 Bedroom, sleeps 6, Luxury apt, outside of NYC!",254637078,Nicholas,Brooklyn,Greenpoint,40.73339,-73.95271,Entire home/apt,200,1,2,2019-06-23,2,1,229 +34255183,2 Bedrooms and a Comfy Couch On Washington,17842194,Cathleen,Brooklyn,Crown Heights,40.67882,-73.96267,Private room,100,2,0,,,2,21 +34255308,Large Renovated 2 br Apt called Home Crown Heights,78113383,Sara,Brooklyn,Crown Heights,40.67266,-73.92423,Entire home/apt,80,10,0,,,3,258 +34255351,Times Square Hidden Gem 2 Bedroom Apartment,258139060,Angel,Manhattan,Hell's Kitchen,40.76273,-73.99192,Entire home/apt,249,1,9,2019-06-22,5.29,1,88 +34255385,Amazing Apartment infront of Williamsburg Bridge!,258412458,Sophia,Brooklyn,Williamsburg,40.71289,-73.96603,Entire home/apt,300,2,3,2019-06-16,1.84,1,25 +34255438,NYC Lux. Condo,258635350,Jason,Staten Island,New Springville,40.58111,-74.15933,Entire home/apt,150,2,0,,,1,0 +34255449,Beautiful Manhattan TOWNHOUSE APARTMENT w Deck,779474,Clint,Manhattan,Washington Heights,40.83515,-73.94178,Entire home/apt,128,3,9,2019-07-05,4.66,1,236 +34255571,Brooklyn Brownstone (Private Room),243639488,Joanna,Brooklyn,East Flatbush,40.64359,-73.94821,Private room,120,2,3,2019-06-30,2.00,1,180 +34255740,"Private, 2-story apartment, near the Highline",141713689,Nawar,Manhattan,Chelsea,40.74475,-74.00108,Entire home/apt,134,7,3,2019-06-23,2.65,1,13 +34256176,"Nice 3Beds/2bedroom Apartment, 5min TIME SQUARE.",41124793,Gary,Manhattan,Hell's Kitchen,40.76515,-73.98586,Entire home/apt,389,1,1,2019-06-19,1,1,0 +34256485,Chilling in Brooklyn in a cool culture vibe,258647286,Irma,Brooklyn,Brownsville,40.66242,-73.90128,Private room,38,2,0,,,1,176 +34256514,[Special Price] Have a nice trip with my room!,69339916,Luke,Manhattan,Harlem,40.8125,-73.95305,Private room,70,1,3,2019-06-21,2.57,1,71 +34256683,Great 3Bedroom Apt in Stunning Location,161047916,Zara,Manhattan,Chelsea,40.74895,-73.99652,Entire home/apt,380,14,3,2019-06-16,1.80,1,321 +34256717,Bedstuy Cozy Room with Private Bathroom,155299284,Kia,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95482,Private room,75,1,14,2019-07-02,7.12,1,0 +34256727,"Private, Cozy Escape! Near all!",49216953,Marina,Staten Island,Midland Beach,40.57568,-74.09522,Entire home/apt,115,2,2,2019-06-20,2,1,231 +34257861,2 Bedroom Empire State Building Apartment,258133009,Rovena,Manhattan,Murray Hill,40.74553,-73.97699,Entire home/apt,239,1,8,2019-06-24,4.53,1,140 +34257868,Beautiful Studio in the heart of Williamsburg,258661548,Brisa,Brooklyn,Williamsburg,40.71456,-73.94326,Entire home/apt,140,1,9,2019-06-23,3.86,1,200 +34257884,Top floor West Village apartment with city views,20944981,Monica,Manhattan,West Village,40.73521,-74.00528,Entire home/apt,180,2,4,2019-06-15,2.40,1,22 +34258598,Single Bedroom around Columbia University,195863013,Yiwei,Manhattan,Upper West Side,40.80249,-73.96729,Private room,45,3,3,2019-06-08,2.05,1,2 +34258883,MIN WALK TO TRAIN/STORES/FOOD PLACES/NEAR HOSPITAL,241676154,Maria,Staten Island,Grant City,40.57801,-74.10869,Private room,29,21,0,,,2,281 +34259050,One little beautiful room in an 3bedroom apartment,258671946,Basil Walker,Bronx,Longwood,40.82654,-73.90516,Private room,27,2,7,2019-06-16,3.50,1,60 +34259388,Great home for the summer ONLY,17770682,Adriana,Bronx,Highbridge,40.83149,-73.92766,Entire home/apt,70,40,0,,,1,0 +34260123,"3BR Apartment in Bushwick, 1 min to Train!",258682005,Terly,Queens,Ridgewood,40.69526,-73.90263,Entire home/apt,210,7,2,2019-05-26,1.13,1,142 +34260966,Heart of SoHo: Spring Street 3 Bed Loft,257889696,Renee & Roscoe,Manhattan,SoHo,40.72249,-73.99758,Entire home/apt,499,4,5,2019-06-05,2.73,1,194 +34261963,Bright Furnished Room in Midtown East!,6466170,Peter,Manhattan,Midtown,40.75514,-73.96773,Private room,109,60,0,,,1,327 +34262617,Manhattan Tourists' warm home 3,257997585,Yu,Manhattan,Midtown,40.75843,-73.97053,Private room,129,7,9,2019-06-21,4.03,1,128 +34263343,New renovated a comfortable apartment in manhattan,251852817,Owen,Manhattan,East Harlem,40.80078,-73.94335,Shared room,60,1,5,2019-07-04,2.31,7,90 +34271296,Gracious Art-Deco 2 Bed Home on Tree-lined street,257892281,Alissandra,Manhattan,Upper East Side,40.77116,-73.94774,Entire home/apt,299,4,9,2019-07-06,5.00,1,170 +34272398,Brooklyn Townhouse Apartment with Outdoor Space,29032861,Suzen,Brooklyn,Bedford-Stuyvesant,40.67797,-73.91818,Entire home/apt,150,3,2,2019-05-27,1.20,1,14 +34272580,Spacious 3 bedroom duplex with private backyard,4521174,Caroline,Brooklyn,Crown Heights,40.67167,-73.94015,Entire home/apt,140,30,0,,,3,73 +34274062,Williamsburg big studio,133465194,Andrea,Brooklyn,Williamsburg,40.71925,-73.94293,Entire home/apt,94,7,1,2019-05-17,0.57,1,0 +34275040,Huge Williamsburg Studio with Private Terrace,125398274,Christian,Brooklyn,Williamsburg,40.71186,-73.96575,Entire home/apt,300,3,4,2019-06-23,2.07,2,0 +34275316,Bright and Sunny SoHo Gem,258769304,Adelaide,Manhattan,SoHo,40.72301,-74.00229,Entire home/apt,160,4,4,2019-06-17,2.45,1,21 +34275346,Amazing Cozy 2 Bedroom | Heart of Lower Manhattan!,110146823,Laura,Manhattan,Chinatown,40.713,-73.99645,Entire home/apt,200,2,5,2019-06-14,2.94,1,298 +34275461,BedStuy Penthouse Duplex 1BR,247584029,Robert,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95343,Entire home/apt,132,30,1,2019-06-08,0.94,1,191 +34277091,Entire sunny apartment in Crown Heights,34648989,Sebastián,Brooklyn,Crown Heights,40.67058,-73.95347,Entire home/apt,97,6,0,,,1,101 +34277352,"Comfort Room in Downtown New York, Chinatown, Soho",250825715,Cherry,Manhattan,Chinatown,40.71672,-73.99553,Private room,67,1,0,,,3,39 +34278125,Magnificent Penthouse Suite in Midtown Manhattan,24413996,Arlen,Manhattan,Midtown,40.76459,-73.98167,Private room,395,2,0,,,1,0 +34278223,Luxury for Single Traveler,3577413,Rj,Manhattan,Financial District,40.70599,-74.00515,Entire home/apt,139,7,2,2019-06-11,0.92,1,1 +34278532,3 Bedroom Loft Like Unit 5 minutes from train,258795923,Saf,Brooklyn,Gravesend,40.59145,-73.98546,Entire home/apt,129,3,4,2019-06-26,3.00,1,167 +34278696,Brooklyn artist studio,47572575,Andres,Brooklyn,Crown Heights,40.67259,-73.9525,Entire home/apt,100,2,9,2019-07-06,4.09,1,5 +34278936,Greenpoint - Sun Filled Room in Unique Loft Space,19344148,Alex,Brooklyn,Greenpoint,40.72563,-73.95656,Private room,65,2,15,2019-07-01,6.92,1,65 +34279388,Hamilton Heights sanctuary,9070754,Michele,Manhattan,Harlem,40.82672,-73.94948,Private room,50,10,0,,,1,55 +34279945,Charming Room In Little Italy,236839319,Brooke,Manhattan,Little Italy,40.71815,-73.99756,Private room,51,30,0,,,3,35 +34280267,Sonder | 116 John | Cozy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70808,-74.00561,Entire home/apt,130,29,0,,,327,338 +34280337,Little Italy Room,236839319,Brooke,Manhattan,Little Italy,40.71786,-73.9979,Private room,59,30,0,,,3,35 +34280940,"Mi casa es tu casa, Habitación 1",241565326,Valentina,Queens,Woodside,40.7432,-73.90304,Private room,50,1,16,2019-07-03,7.06,2,81 +34281515,"Great location, private bedroom with two windows.",258818973,Daria,Brooklyn,Brighton Beach,40.57541,-73.96028,Private room,55,2,6,2019-07-01,6,1,50 +34281907,Private Room in East Williamsburg - Clean & Comfy!,17017530,Susan,Brooklyn,Williamsburg,40.71466,-73.9378,Private room,89,1,1,2019-06-30,1,1,188 +34282192,"Large room close to Metro ,20min to TQ",258824466,Nam,Queens,Sunnyside,40.73898,-73.9212,Private room,60,2,6,2019-07-01,2.81,1,180 +34282410,1 BD Apt in Luxury Building - Crown Heights NYC,258826234,Stephanie,Brooklyn,Crown Heights,40.67708,-73.95489,Entire home/apt,175,7,1,2019-05-23,0.63,1,35 +34283155,Clean Room in Upper West Side Near Columbia Uni,6655776,Jk,Manhattan,Morningside Heights,40.80436,-73.96512,Private room,85,2,11,2019-07-07,5.79,1,9 +34283312,2BR in Bushwick! 20 min to Manhattan!,258831812,Veronika,Queens,Ridgewood,40.70805,-73.91535,Entire home/apt,170,7,0,,,1,126 +34284185,Cozy Private Bedroom,257390100,Hugo,Manhattan,Upper West Side,40.80168,-73.96143,Private room,60,1,9,2019-05-31,4.58,1,0 +34284316,Bedroom,180991373,Vicky,Queens,Flushing,40.74265,-73.8231,Private room,50,1,0,,,5,23 +34284408,Sonder | 116 John | Spacious 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70685,-74.00698,Entire home/apt,130,29,0,,,327,246 +34284409,Sonder | 116 John | Modern Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70825,-74.00482,Entire home/apt,100,29,1,2019-06-06,0.88,327,358 +34284597,South Bronx Suite,19903807,Carol,Bronx,Mott Haven,40.81305,-73.91655,Entire home/apt,120,3,5,2019-06-02,2.50,3,45 +34284651,Columbia campus 2 bedrooms apartment,790288,Sandra,Manhattan,Morningside Heights,40.808,-73.96643,Entire home/apt,200,1,0,,,1,11 +34284654,Manhattan Private Room & Bathroom,19109608,Elle,Queens,Astoria,40.76149,-73.9203,Private room,95,7,0,,,3,356 +34284697,2 Bedroom Apt w private entrance & backyard,6302448,Hidemi,Brooklyn,Bedford-Stuyvesant,40.67882,-73.94941,Entire home/apt,120,2,0,,,1,40 +34284883,Your own studio in the heart of Chelsea,258844868,Victor,Manhattan,Chelsea,40.74577,-74.0022,Entire home/apt,129,1,19,2019-06-22,8.38,1,5 +34285156,Master Bed Decatur 3F Room#1,258248138,Fanny,Brooklyn,Bushwick,40.68754,-73.90975,Private room,70,1,5,2019-06-27,2.54,2,179 +34285226,Central Park Strawberry Fields*2 Bed*Elevator*,258848718,Jossy,Manhattan,Upper West Side,40.77796,-73.98191,Entire home/apt,230,30,0,,,1,36 +34285510,Perfect 1 Bedroom in Nolita,23831365,Danielle,Manhattan,NoHo,40.72492,-73.99496,Entire home/apt,250,10,1,2019-06-01,0.79,1,18 +34285600,Homely ROOM IN BROOKLYN,218417875,Patrice,Queens,Ridgewood,40.70173,-73.9073,Private room,60,1,10,2019-06-23,4.41,1,365 +34285612,Cozy Bushwich Decatur 3F Room #4,258248138,Fanny,Brooklyn,Bushwick,40.68678,-73.90769,Private room,50,1,4,2019-06-25,1.88,2,160 +34286519,Sonder | Upper East Side | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76447,-73.96509,Entire home/apt,150,29,0,,,327,221 +34286555,Comfortable Futon Couch in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67326,-73.95367,Shared room,24,5,7,2019-07-01,3.33,4,14 +34286793,Private bedroom in Brooklyn near A/C train,132065326,Soffia,Brooklyn,Bedford-Stuyvesant,40.68066,-73.9457,Private room,79,3,1,2019-06-29,1,1,83 +34286828,Cosy luxury studio for sublet on upper west side,101856518,Dearna,Manhattan,Upper West Side,40.77904,-73.98786,Entire home/apt,180,3,0,,,1,0 +34287159,Modern 1500sf Loft Home: 3 Bedroom + 2 Full Baths,64487276,Jesse,Manhattan,East Harlem,40.79619,-73.93653,Entire home/apt,359,5,4,2019-07-03,3.33,1,193 +34288305,Sonder | 116 John | Vibrant 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70767,-74.00495,Entire home/apt,179,29,0,,,327,340 +34289101,Perfect Studio in LES Hot Spot - best Location!,256921050,Ellen,Manhattan,Chinatown,40.71508,-73.99112,Entire home/apt,135,6,3,2019-06-26,2.20,2,333 +34289331,Sonder | 11th Ave | Sunny 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7607,-73.9961,Entire home/apt,189,29,0,,,327,324 +34289867,"Amazing 2 BR Ap,10min walk 2 Empire state building",258892159,Flora,Manhattan,Kips Bay,40.74357,-73.97647,Entire home/apt,299,1,0,,,1,20 +34291583,Sonder | 116 John | Relaxed Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70838,-74.00694,Entire home/apt,100,29,0,,,327,351 +34299690,Cosy shiny bedroom close to Manhattan 25min,254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68316,-73.9287,Private room,70,2,12,2019-07-07,5.54,3,349 +34301284,Beautiful apartment in Manhattan!,257813708,Polina,Manhattan,East Village,40.72859,-73.97977,Entire home/apt,250,3,6,2019-06-23,3.27,1,162 +34301415,Elegant Top Floor 3BD/2 Bath in Chelsea,257897148,Avery,Manhattan,Chelsea,40.74287,-73.99785,Entire home/apt,499,5,6,2019-06-19,3.46,1,132 +34301679,Amazing luxury apartment in Manahttan!,258753303,Tim,Manhattan,Financial District,40.70441,-74.00637,Entire home/apt,300,3,7,2019-07-01,3.89,1,231 +34302031,500 sq ft Studio with Private Bathroom,133588507,Joanne,Queens,Jamaica,40.7084,-73.78882,Entire home/apt,64,3,6,2019-07-05,3.05,1,37 +34302049,"Bright, cozy 1 bedroom near Central Park",17831516,Rebecca,Manhattan,East Harlem,40.78728,-73.9471,Entire home/apt,35,30,0,,,1,235 +34302570,"COSY BEDROOM CLOSE TO MANHATTAN, Brooklyn",254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68449,-73.92881,Private room,59,1,22,2019-07-06,10.31,3,347 +34303799,Magical space in prime Williamsburg,116674915,Virginia,Brooklyn,Williamsburg,40.71417,-73.95867,Private room,69,6,2,2019-06-10,1.46,1,4 +34303993,1st floor loft space with beautiful yard,258978893,Ron,Brooklyn,Crown Heights,40.6707,-73.93944,Entire home/apt,120,4,4,2019-06-25,2.50,1,64 +34304190,Stunning Chelsea/West Vill. Floor Thru LOFT 4BEDs,257674218,Jordi,Manhattan,Chelsea,40.74334,-74.0025,Entire home/apt,349,6,5,2019-07-07,5,1,41 +34304576,Stunning NYC World Trade Center Dreamstyle studio,17655984,Janey,Manhattan,Financial District,40.70965,-74.01388,Entire home/apt,168,4,0,,,1,29 +34305085,Splendid LOFT 6BED/3BATH - steps to Central PARK,258249038,Joseph Luis,Manhattan,Upper West Side,40.79641,-73.96253,Entire home/apt,589,5,4,2019-06-26,4,1,109 +34305492,"Clean, Modern Sun-filled 2BD Home in Midtown East",258001528,Dane,Manhattan,Midtown,40.75607,-73.96768,Entire home/apt,325,4,4,2019-07-02,2.79,1,157 +34305767,"Big Bed brooklyn, convenient close trains",92204575,Penelope,Brooklyn,Bedford-Stuyvesant,40.69862,-73.94046,Private room,63,1,1,2019-05-27,0.70,1,0 +34306257,Luxury 2 Bed / 2 Bath River and City View.,131647128,Emily,Manhattan,Hell's Kitchen,40.76775,-73.98869,Entire home/apt,265,30,0,,,25,290 +34306554,Amazing room in heart of East Village,33036193,Clara,Manhattan,East Village,40.72693,-73.98374,Private room,100,3,0,,,2,52 +34306772,Posh East Village 1BR in Walk Up Building near Subway by Blueground,107434423,Blueground,Manhattan,East Village,40.73059,-73.98511,Entire home/apt,271,30,0,,,232,323 +34306797,Bright & Beautiful Park Slope One-Bedroom,258251034,Julie,Brooklyn,South Slope,40.66678,-73.98822,Entire home/apt,175,2,2,2019-05-27,1.15,1,14 +34306801,"Dapper East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.72995,-73.98453,Entire home/apt,271,30,0,,,232,334 +34306827,"Gorgeous East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.73137,-73.98504,Entire home/apt,285,30,0,,,232,43 +34307310,St Marks PL,20500770,Ofer,Manhattan,East Village,40.72712,-73.98402,Entire home/apt,200,3,4,2019-06-30,1.97,1,4 +34308485,Delightful 3 Bedroom in Central Midtown Location,94111558,Lia And Patrick,Manhattan,Hell's Kitchen,40.76324,-73.98985,Entire home/apt,449,5,5,2019-06-27,3.26,1,222 +34308774,Cozy apartment in Midtown!,258800798,Zana,Manhattan,Hell's Kitchen,40.75533,-73.99781,Entire home/apt,200,1,9,2019-07-01,4.58,1,190 +34309096,BIG SPACIOUS 1 BED IN BROOKLYN HIGH CEILINGS,31367619,Nneka,Brooklyn,Bedford-Stuyvesant,40.6921,-73.9391,Private room,100,3,0,,,1,89 +34309557,"Snazzy East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.73002,-73.98356,Entire home/apt,298,30,0,,,232,301 +34309941,Relaxing bohemian space in Bushwick,206094855,Eva,Brooklyn,Bushwick,40.68538,-73.90878,Private room,75,10,0,,,1,69 +34310607,Large private Room nearly JFK 8 mins,222049462,Jose,Queens,Rosedale,40.65919,-73.73412,Private room,60,1,14,2019-07-01,6.46,2,88 +34311549,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.76106,-73.98647,Entire home/apt,699,29,0,,,327,333 +34312163,Queen Room,95570540,Eileen,Staten Island,Oakwood,40.56033,-74.11953,Private room,65,1,1,2019-06-28,1,3,179 +34312239,Cozy Private Room - Only 25 mins to Manhattan ;),22070428,Fernando,Queens,Elmhurst,40.7442,-73.87698,Private room,55,1,1,2019-05-10,0.50,1,35 +34312320,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75969,-73.98732,Entire home/apt,699,29,0,,,327,220 +34312985,Luxury 2 bdr/2 bath prime Williamburg,544721,Marta,Brooklyn,Williamsburg,40.71312,-73.9453,Entire home/apt,192,1,0,,,1,8 +34313143,Superior 1BR in FiDi by Sonder,219517861,Sonder (NYC),Manhattan,Financial District,40.70724,-74.00614,Entire home/apt,699,29,0,,,327,337 +34313601,Large 1 BR *** Featured on This Old House,29659188,Kevin And Karen,Brooklyn,Prospect Heights,40.6774,-73.96864,Entire home/apt,279,2,11,2019-07-06,5.69,1,112 +34313928,South Bronx Suite Two,19903807,Carol,Bronx,Mott Haven,40.81245,-73.91648,Entire home/apt,120,3,1,2019-06-15,1,3,45 +34313960,Lovely Studio in FiDi by Sonder,219517861,Sonder (NYC),Manhattan,Financial District,40.70844,-74.00615,Entire home/apt,699,29,0,,,327,333 +34314231,Perfect West Village apt - best location in NYC!,70155821,Matt,Manhattan,West Village,40.73551,-74.00167,Entire home/apt,350,3,1,2019-06-02,0.81,1,12 +34315235,Pleasant 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75572,-73.98331,Entire home/apt,217,29,0,,,327,343 +34315546,Hell's Kitchen Luxury (East Room),50597569,Michael,Manhattan,Hell's Kitchen,40.76215,-73.99589,Private room,112,2,7,2019-06-22,3.39,1,1 +34315737,Studio Apartment in BoroPark Brooklyn NY,259063599,Yehudit,Brooklyn,Borough Park,40.63302,-73.9837,Entire home/apt,120,1,3,2019-07-03,1.29,1,177 +34315945,Full 2 bedroom apartment in East Village by Marios,259066380,Marios,Manhattan,East Village,40.72715,-73.97757,Entire home/apt,173,12,0,,,1,0 +34316575,#4 ROOM 4FAMILY (4 guests) Train 3 Kingston Ave,256235740,Levi,Brooklyn,Crown Heights,40.66878,-73.93888,Shared room,45,2,0,,,3,365 +34316644,Yellow ButterFly,145878384,Denise,Brooklyn,East Flatbush,40.65607,-73.92942,Private room,110,3,0,,,7,320 +34316785,La Greka (Couch Surfing),109843377,Rubi,Brooklyn,Bedford-Stuyvesant,40.67981,-73.91022,Shared room,25,7,0,,,2,88 +34316788,Central Park West: 3 Bedroom + 2 Bath Jewel-box,258159396,Nick,Manhattan,Upper West Side,40.8,-73.96026,Entire home/apt,438,5,6,2019-07-05,3.10,1,136 +34316911,Large Private Room with Courtyard,259076960,Monica,Brooklyn,Williamsburg,40.71296,-73.93688,Private room,49,2,2,2019-06-04,1.40,1,16 +34316984,Lavidaloca plc,219548549,Kennedy,Brooklyn,Crown Heights,40.66996,-73.92264,Private room,99,1,3,2019-06-30,1.34,2,365 +34317148,Beautiful house in Jamaica near JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71573,-73.76897,Private room,175,1,0,,,3,89 +34317924,Sonder | The Biltmore | Bright 1BR + Workspace,219517861,Sonder (NYC),Manhattan,Theater District,40.76118,-73.98628,Entire home/apt,154,29,0,,,327,343 +34318100,TIMES SQUARE-4 BEDROOM- DELUX-ART APARTMENT,259087876,Dennis,Manhattan,Theater District,40.75747,-73.98226,Entire home/apt,650,1,3,2019-07-02,1.58,7,126 +34318362,Live Brooklyn II - 2 Bedroom Apt 5 Min to Subway!,120804342,David,Brooklyn,Bedford-Stuyvesant,40.69503,-73.9449,Entire home/apt,247,2,6,2019-07-01,3.53,2,346 +34318710,Tremendous East Village Apt!,21010752,Zach,Manhattan,East Village,40.72132,-73.9804,Private room,140,4,0,,,2,8 +34318915,Apartment in the Heart Of Brooklyn,114828297,Diana,Brooklyn,Bedford-Stuyvesant,40.67944,-73.91635,Private room,125,1,1,2019-05-05,0.45,1,5 +34319441,Amazing Place - ASTORIA,46081317,Fabiana,Queens,Astoria,40.75663,-73.9143,Private room,55,25,0,,,3,199 +34320238,Manhattan Private Luxury Bedroom!!!!!,224317184,Luke,Manhattan,Inwood,40.86234,-73.92705,Private room,90,3,0,,,8,255 +34320465,Holiday VILLA EXCLUSIVE,234274506,Chioma,Brooklyn,Cypress Hills,40.68138,-73.87736,Private room,35,1,7,2019-07-01,3.62,1,158 +34320892,Splendid Upper E. Side LOFT Central Park 4BEDs/2BA,257869899,Juanit,Manhattan,Upper East Side,40.77566,-73.9484,Entire home/apt,380,6,3,2019-06-07,2.05,1,123 +34321146,Gorgeous Duplex LOFT 1.5BATH 4BEDs - East Village,257876445,Clemiro,Manhattan,East Village,40.73077,-73.98322,Entire home/apt,299,6,0,,,1,140 +34321295,Heart of Williamsburg living for 1-5 msg!,3270796,Jess,Brooklyn,Williamsburg,40.71038,-73.96094,Private room,70,2,7,2019-06-28,3.62,2,55 +34321465,Two bed apartment in the heart of Williamsburg,3270796,Jess,Brooklyn,Williamsburg,40.71108,-73.95988,Entire home/apt,180,2,0,,,2,10 +34323565,Sonder | 21 Chelsea | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74229,-73.9959,Entire home/apt,209,29,0,,,327,365 +34323571,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75963,-73.98764,Entire home/apt,159,29,0,,,327,220 +34323636,Sonder | Stock Exchange | Incredible 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70597,-74.01258,Entire home/apt,463,2,0,,,327,289 +34323638,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75988,-73.98667,Entire home/apt,220,29,0,,,327,333 +34323686,Lovely 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76169,-73.99626,Entire home/apt,187,29,0,,,327,331 +34323697,Sonder | The Biltmore | Bright 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75965,-73.98652,Entire home/apt,215,29,0,,,327,338 +34323711,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75975,-73.98586,Entire home/apt,159,29,0,,,327,221 +34323730,Sonder | 116 John | Comfortable 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.00674,Entire home/apt,130,29,0,,,327,337 +34324284,Comfy room with WiFi. Mins to Central Park!,137358866,Kazuya,Manhattan,East Harlem,40.79395,-73.94153,Private room,38,30,0,,,103,0 +34327434,Bushwick Art Collective: Bedroom C (sub-level),3635302,Adam,Brooklyn,Bushwick,40.70434,-73.9177,Private room,90,3,1,2019-05-20,0.60,3,1 +34329708,"Luxury apt with East River views in Greenpoint, NY",9811865,Paul,Brooklyn,Greenpoint,40.73033,-73.95799,Entire home/apt,200,2,1,2019-06-17,1,1,0 +34330345,Full-renovated my own 1 bedroom apartment,218511760,Зіна,Brooklyn,Gravesend,40.59662,-73.99113,Entire home/apt,140,1,0,,,1,0 +34330817,"Bright, Sunny and Budget friendly rental",240239465,Okhela,Queens,St. Albans,40.70099,-73.75497,Private room,40,2,0,,,2,84 +34331364,Captivating Central Park TownHouse 3Bed/2BA,258250399,Annette,Manhattan,Upper East Side,40.78402,-73.95201,Entire home/apt,399,5,3,2019-06-26,3,1,135 +34331687,Bayside Room,252440873,Luisa,Queens,Bayside,40.76176,-73.76511,Private room,40,31,0,,,1,69 +34331925,Entire Flat in Perfect Location (Nolita),2463994,Kiarash,Manhattan,Nolita,40.72223,-73.99544,Entire home/apt,200,1,1,2019-05-14,0.54,1,0 +34332734,Renovated Apartment in Brooklyn - Steps to G Train,1478269,Ben,Brooklyn,Bedford-Stuyvesant,40.6888,-73.95665,Entire home/apt,90,6,1,2019-06-21,1,2,0 +34334035,South Bronx Gathering Place,19903807,Carol,Bronx,Mott Haven,40.81132,-73.91715,Entire home/apt,145,3,1,2019-05-23,0.64,3,48 +34334524,Gorgeous room near the heart of Times Square,236425271,Shanae,Manhattan,Hell's Kitchen,40.76343,-73.99134,Entire home/apt,190,1,6,2019-06-29,2.95,1,299 +34334609,ROOM # 6 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68797,-73.83351,Private room,58,1,12,2019-07-03,5.45,7,179 +34335188,✴ Brand New & Quiet ✴ East Village ✴ 2BR Apt,221634296,Gabby,Manhattan,East Village,40.7265,-73.9822,Entire home/apt,341,2,4,2019-06-19,2.31,1,274 +34335356,The Sunshine Palace 2,236018119,Lucy,Queens,Queens Village,40.70842,-73.73843,Entire home/apt,175,1,0,,,3,0 +34336004,BEAUTIFUL Cozy 2 BEDS APT Upper East Side,51027036,Roe,Manhattan,Upper East Side,40.78016,-73.95029,Entire home/apt,280,3,0,,,1,45 +34336086,ROOM # 4 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68981,-73.83198,Private room,58,1,6,2019-07-07,2.73,7,176 +34336135,SHANEL'S 2 BR Apt 5 mins from JFK,259207391,Pauline,Queens,Jamaica,40.67626,-73.79809,Private room,150,1,4,2019-07-04,2.26,3,356 +34336147,Bright & Sunny Bushwick room w/ Rooftop & Balcony,8500390,Alida,Brooklyn,Bushwick,40.68927,-73.92062,Private room,90,2,3,2019-06-23,1.80,1,0 +34336194,ROOM # 7 Near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68782,-73.83348,Private room,53,1,12,2019-07-06,5.37,7,180 +34336328,Gorgeous Central Park Penthouse,78312516,Monica,Manhattan,Harlem,40.80036,-73.95598,Entire home/apt,299,4,2,2019-07-03,0.91,1,4 +34336417,ROOM # 8 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68921,-73.83159,Private room,53,1,11,2019-06-26,4.93,7,176 +34336740,Upper West 1 Bedroom / 1 Bath. Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77567,-73.988,Entire home/apt,190,30,2,2019-06-15,1.36,25,322 +34336812,"2 BR Apt close to LGA, JFK & Midtown (2A)",259229690,Rina,Queens,Woodside,40.74553,-73.89212,Entire home/apt,179,1,5,2019-06-30,2.59,4,23 +34337032,1 Bed/ 1 Bath / Columbus Circle/ Balcony,131647128,Emily,Manhattan,Upper West Side,40.77076,-73.98671,Entire home/apt,190,30,0,,,25,181 +34337151,STUNNING 2BR ON MCCARREN PARK WITH PARKING SPOT!,62014210,Sara,Brooklyn,Greenpoint,40.72155,-73.94671,Entire home/apt,700,15,0,,,1,24 +34337153,Bay windows/Huge room FULLY FURNISHED,34209884,Leul,Brooklyn,Bushwick,40.68746,-73.91254,Private room,49,3,1,2019-05-31,0.75,1,158 +34337267,Beautiful Studio Steps from Subway (BLUE),29582232,Lee And Teri,Brooklyn,Flatbush,40.64051,-73.96427,Entire home/apt,85,3,5,2019-06-30,5,5,113 +34337319,1 Bed/ 1 Bath / Columbus Circle/ High Floor,131647128,Emily,Manhattan,Upper West Side,40.77033,-73.98521,Entire home/apt,190,30,1,2019-05-13,0.53,25,189 +34337574,Cozy Room in the Upper East Side,157068054,Tim & Cecilia,Manhattan,East Harlem,40.79252,-73.94055,Private room,49,3,8,2019-07-05,4.07,1,16 +34337649,Charming And Cozy Extra Large Private Room+Parking,70528858,Meital,Brooklyn,Sheepshead Bay,40.60111,-73.95702,Private room,50,2,7,2019-06-21,3.82,1,124 +34337805,Ridgewood Love,7505535,Magnificent Mohamad,Queens,Ridgewood,40.70513,-73.901,Private room,149,1,0,,,1,180 +34337953,MASTER ROOM # 1 near To JFK & LaGuardia airport,258589420,Diego,Queens,Richmond Hill,40.68929,-73.83221,Private room,80,1,11,2019-07-07,5.00,7,179 +34338645,MASSIVE zen garden Master BR in Chelsea,233270180,Sam,Manhattan,Chelsea,40.74386,-73.99344,Private room,85,30,1,2019-05-07,0.48,1,69 +34338806,"Sunny, convenient and comfortable!",18270302,Ameera,Manhattan,Upper East Side,40.77633,-73.95266,Private room,94,4,2,2019-06-10,1.30,2,77 +34339330,"Gorgeus Double Room, Hell's Kitchen!",250689404,Xavier,Manhattan,Hell's Kitchen,40.76183,-73.99281,Private room,95,3,9,2019-07-06,4.58,1,94 +34339714,Simply but comfy,246887851,Yuvraj,Queens,Elmhurst,40.74184,-73.88393,Private room,42,2,6,2019-06-29,2.77,1,292 +34340299,Spacious 1 bed apartment with private terrace,41213523,Mathieu,Manhattan,East Village,40.72925,-73.98005,Entire home/apt,250,2,4,2019-05-08,1.88,1,0 +34340357,Cozy private Studio Suite,4852748,Michelle,Manhattan,Harlem,40.80497,-73.94592,Private room,145,3,1,2019-05-22,0.63,6,365 +34340593,Beaut room 10min away from the city with Prkg Avbl,247092108,Jackie,Queens,Astoria,40.76701,-73.91208,Private room,79,1,2,2019-05-22,1.05,3,281 +34340758,Stunning views - prime Gramercy/Flatiron location!,257406510,Jayelle,Manhattan,Flatiron District,40.74054,-73.98681,Entire home/apt,389,4,4,2019-07-01,2.26,1,65 +34340833,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71702,-73.76761,Private room,50,1,5,2019-06-30,3.00,3,89 +34340887,Clean and comfortable place,259261655,Kay,Queens,Astoria,40.77098,-73.91952,Entire home/apt,150,1,7,2019-06-16,3.18,1,25 +34341008,Large room min away from city/Prkg available,247092108,Jackie,Queens,Astoria,40.76807,-73.91341,Private room,110,1,0,,,3,0 +34341449,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71606,-73.76777,Private room,50,1,4,2019-06-30,1.76,3,89 +34341588,*Charismatic 1 BR Apartment in Heart of Chelsea*,5588820,Teddy,Manhattan,Chelsea,40.74392,-74.00301,Entire home/apt,159,3,4,2019-07-01,2.93,1,1 +34341669,Sonder | 116 John | Relaxed 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70673,-74.0051,Entire home/apt,130,29,0,,,327,361 +34341721,"5mins Waterfront, McCarren, 25mins to Times Sq",23436595,Greem,Brooklyn,Greenpoint,40.73002,-73.95636,Private room,61,1,5,2019-06-15,3.06,2,138 +34341994,Sonder | 116 John | Polished 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70781,-74.00525,Entire home/apt,179,29,1,2019-06-24,1,327,339 +34343028,Cozy Bronx Apartment Near Yankee Stadium!!!,259282634,Dametria,Bronx,Morris Heights,40.84752,-73.92293,Private room,130,1,0,,,1,180 +34343208,Convenient room in Hell’s Kitchen,34689714,Maria,Manhattan,Hell's Kitchen,40.76595,-73.98643,Private room,120,1,10,2019-06-23,4.76,5,357 +34343752,GORGEOUS WEST CHELSEA TWO BEDROOM with roof deck!,5007316,David,Manhattan,Chelsea,40.74781,-74.00084,Entire home/apt,195,1,6,2019-06-29,2.77,1,2 +34343990,Charming Private Bedroom in the Trees,7931702,Gregory,Brooklyn,Williamsburg,40.71238,-73.94848,Private room,70,1,2,2019-06-18,1.20,1,0 +34344713,Cozy spacious 1 be avail for June,164907052,Elise,Manhattan,East Harlem,40.78599,-73.94256,Private room,45,14,0,,,1,2 +34345079,Queen size room suitable for family of 4,251859047,Errol,Brooklyn,Crown Heights,40.67592,-73.92341,Private room,75,2,2,2019-06-18,2,3,158 +34345206,Huge room w/ king size bed in coop brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.67957,-73.95548,Private room,75,2,3,2019-07-02,1.84,4,22 +34345469,Sunny Private Room close to Manhattan (purple),259307063,Jian F,Brooklyn,Bushwick,40.69745,-73.92887,Private room,76,2,11,2019-07-04,6.23,1,102 +34345750,"Luxurious apartment, accessible 2 transportations",134762059,Renee,Brooklyn,Canarsie,40.63149,-73.90797,Private room,50,1,2,2019-06-11,0.88,2,365 +34345976,Luxury 2 Bedroom Apartment,175166282,Zhanhong,Manhattan,Financial District,40.70896,-74.00695,Entire home/apt,220,30,0,,,1,49 +34346014,Cosy crisp clean pad in Williamsburg,3203693,David,Brooklyn,Williamsburg,40.70996,-73.95121,Entire home/apt,100,6,1,2019-07-03,1,1,7 +34350718,cute comfortable & furnished heart of times square,207795404,Ros,Manhattan,Hell's Kitchen,40.75966,-73.98928,Entire home/apt,141,30,0,,,2,115 +34352766,*PRIVATE* Bedroom near Central Park,259357065,Clement,Manhattan,Midtown,40.76381,-73.97314,Private room,175,3,0,,,1,0 +34353572,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,255697979,Heleen,Brooklyn,DUMBO,40.70412,-73.99194,Entire home/apt,200,30,0,,,2,365 +34353944,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,255697979,Heleen,Brooklyn,DUMBO,40.70254,-73.99189,Entire home/apt,200,30,0,,,2,334 +34356012,Entire Apartment -the best for relax and enjoy NYC,30686388,Giovanni,Manhattan,Midtown,40.75568,-73.96675,Entire home/apt,240,4,1,2019-06-18,1,1,19 +34356642,Hamilton Heights is fancy!,259380331,Rene,Manhattan,Harlem,40.83052,-73.95014,Private room,100,3,8,2019-06-25,3.87,1,359 +34356850,Huge One Bedroom Haven In The Heart Of Manhattan,1413085,Rosie,Manhattan,Gramercy,40.73525,-73.98074,Entire home/apt,150,14,0,,,1,0 +34357913,The Brooklyn Nook Beautiful furnished private room,6600505,Jami,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95473,Private room,60,6,0,,,2,67 +34358402,A little Gem in the heart of Boerum Hill Brooklyn.,259393574,Sandee,Brooklyn,Boerum Hill,40.68656,-73.98842,Entire home/apt,182,4,0,,,1,70 +34358866,Harlem Residence 3,19201987,Kayser,Manhattan,Washington Heights,40.83416,-73.94327,Private room,55,2,2,2019-07-02,2,1,86 +34360431,Cozy and humble room in a great neighborhood!,65770853,Adriana,Brooklyn,Clinton Hill,40.68822,-73.96018,Private room,55,2,1,2019-05-12,0.51,1,11 +34361793,2 BR apt close to LGA / JFK / Midtown (2B),259229690,Rina,Queens,Woodside,40.74494,-73.89255,Entire home/apt,150,1,4,2019-05-27,2.07,4,56 +34362400,Duplex great stay City center,234623462,Alan,Queens,Flushing,40.75565,-73.83361,Entire home/apt,688,3,0,,,1,365 +34363827,LIC 1BR Large Living Room - Great View Summer Apt,34741551,Liane,Queens,Long Island City,40.74702,-73.95676,Entire home/apt,123,30,0,,,1,0 +34363955,Lower East Side with a View,10166570,Nachi,Manhattan,East Village,40.72246,-73.98455,Entire home/apt,230,1,1,2019-05-10,0.50,1,0 +34364713,"2 BR Apt close to LGA,JFK & Midtown (3A)",259229690,Rina,Queens,Woodside,40.74479,-73.89199,Entire home/apt,179,1,5,2019-07-07,2.54,4,76 +34364716,La Kings Highway unwinding,2123674,Rabi & Soukaina,Brooklyn,Sheepshead Bay,40.60939,-73.95475,Private room,70,3,0,,,1,83 +34365364,"Warm, Comfortable, and Joyful Loft in Brooklyn",68869481,Geraldine,Brooklyn,Gowanus,40.67152,-73.98991,Entire home/apt,180,10,3,2019-06-23,2.09,1,5 +34365445,"2 BR Apt close to LGA, JFK & Midtown (3B)",259229690,Rina,Queens,Woodside,40.74632,-73.89382,Entire home/apt,179,1,4,2019-07-05,2.22,4,75 +34366331,Large 1-bed in a beautiful doorman condo,87573942,Dipika,Manhattan,Upper East Side,40.7636,-73.96201,Entire home/apt,150,7,1,2019-07-05,1,1,93 +34367165,"Stylish, Dog-friendly Williamsburg One-Bedroom",259459612,Egle,Brooklyn,Williamsburg,40.70809,-73.9661,Entire home/apt,240,2,2,2019-06-19,1.40,1,0 +34368051,Home Away from Home,95570540,Eileen,Staten Island,Oakwood,40.56054,-74.12004,Entire home/apt,130,1,1,2019-06-26,1,3,363 +34368310,NEW ! Chic Designer Blue,259468466,Jack,Manhattan,Lower East Side,40.71329,-73.98787,Private room,89,4,12,2019-07-03,6.67,2,168 +34368412,Your Sanctuary next to Times Square New York,259087876,Dennis,Manhattan,Midtown,40.75721,-73.98013,Private room,150,1,8,2019-06-23,4.21,7,50 +34368774,Cozy one bed room 15 minutes' away from Manhattan,42916011,Yang,Queens,Sunnyside,40.74368,-73.92421,Private room,88,8,0,,,2,363 +34368927,Full floor of our gorgeous Harlem brownstone,20906077,Jordon,Manhattan,Harlem,40.81155,-73.94339,Entire home/apt,165,4,3,2019-06-01,1.55,1,0 +34369031,Heart of Times Square modern apartment,205386178,Ruby,Manhattan,Theater District,40.75977,-73.98245,Entire home/apt,160,2,1,2019-06-11,1,1,4 +34369458,SUMMER SALE! Huge 3 Bedroom/ 2Bath Full-Floor LOFT,61924400,Alex,Manhattan,East Harlem,40.79805,-73.93399,Entire home/apt,379,4,5,2019-07-07,3.06,1,219 +34369607,Lovely and affordable place in the Bronx,178924110,Roukayatou,Bronx,Hunts Point,40.81415,-73.88671,Private room,36,1,9,2019-06-21,4.09,2,97 +34369689,Pat's Place2,256743247,Patricia,Queens,Bayside,40.7712,-73.78189,Private room,32,2,7,2019-07-05,5.68,2,302 +34370061,Your New York Retreat next to Times Square,259087876,Dennis,Manhattan,Theater District,40.75861,-73.98231,Private room,200,1,5,2019-06-06,2.42,7,51 +34370217,Room w/washer dryer updated apt. near Whole Foods,62066342,Rafaelo,Manhattan,Harlem,40.80885,-73.95022,Private room,98,1,2,2019-06-05,0.94,2,1 +34370296,Ideal Bedroom in a Friendly Neighborhood,89599593,Fernando,Staten Island,South Beach,40.59318,-74.08594,Private room,99,1,2,2019-06-30,2,1,176 +34370336,Sunny room in brownstone coop,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95667,Private room,65,3,1,2019-05-11,0.50,4,31 +34370526,Private Studio Suite,4852748,Michelle,Manhattan,Harlem,40.80625,-73.94694,Private room,115,3,0,,,6,365 +34370542,Four points by Sheraton NY Downtown,38216858,Silver,Manhattan,Financial District,40.70877,-74.01466,Private room,270,1,0,,,4,362 +34370821,Spacious room 2mins from 52st-Woodside 7 train!,137358866,Kazuya,Queens,Woodside,40.74341,-73.91064,Private room,54,30,0,,,103,10 +34371018,"1 Bedroom , Beautiful Spacious Brownstone + Apt",85165113,LaTasha,Brooklyn,Bedford-Stuyvesant,40.6818,-73.91813,Entire home/apt,100,3,3,2019-06-01,1.73,2,120 +34371021,Comfy pad,259491984,Alexandra,Brooklyn,Brighton Beach,40.57543,-73.97565,Private room,100,1,0,,,1,362 +34371113,Big studio in Luxury building downtown Manhattan,231727934,Sky,Manhattan,Financial District,40.70708,-74.00992,Entire home/apt,230,5,1,2019-05-24,0.65,1,43 +34371447,AC New York Downtown AC Hotel by Marriott,38216858,Silver,Manhattan,Financial District,40.70796,-74.00288,Private room,270,1,0,,,4,365 +34371913,Brand New Luxury Apartment by Prospect Park,6080024,Jessica,Brooklyn,Flatbush,40.65365,-73.95592,Private room,75,1,3,2019-06-11,1.64,1,0 +34372376,Sunny and spacious room in South Williamsburg,259505436,Yaz,Brooklyn,Williamsburg,40.70153,-73.94709,Private room,85,2,3,2019-06-16,1.53,1,83 +34372753,Spacious Manhattan Apartment,40038018,Yves,Manhattan,Midtown,40.76152,-73.97176,Entire home/apt,449,5,2,2019-06-09,1.00,1,132 +34373538,Sophisticated Central Park LOFT - 4BEDs/2BATHs,258580215,Misael,Manhattan,Upper East Side,40.76956,-73.95632,Entire home/apt,399,6,3,2019-06-25,2.50,1,93 +34373985,Peaceful loft ‘2’,34643568,Dave,Manhattan,East Harlem,40.79072,-73.93972,Private room,85,3,4,2019-07-02,3.00,6,90 +34374201,Large clean 2 bdroom/ 1 bath apt near manh,87020760,Crystal,Brooklyn,Bushwick,40.68291,-73.90756,Entire home/apt,100,3,4,2019-06-14,2.22,1,26 +34375381,Some of the Best Food in all New York City,179857032,Nicholas,Brooklyn,Sunset Park,40.6394,-74.01655,Entire home/apt,82,3,2,2019-06-09,1.11,1,0 +34378303,A Home Away from Home!,259544961,Miata,Manhattan,Harlem,40.81791,-73.94246,Private room,65,3,3,2019-07-02,1.80,1,56 +34378941,纽约曼哈顿中城临近高校舒适公寓-仅限女性入住,76679800,Windy,Manhattan,Kips Bay,40.74141,-73.97684,Private room,100,28,1,2019-05-05,0.46,2,51 +34383329,"A private bedroom in Chelsea , Manhattan.",53254710,Aamito,Manhattan,Chelsea,40.73957,-74.00082,Private room,85,2,4,2019-06-30,1.90,1,76 +34383611,Spacious Room in a charming brownstone apartment,877452,Rebecca,Brooklyn,Park Slope,40.68182,-73.97954,Private room,95,5,0,,,1,0 +34384453,#1 NY Perfect Destination . Hells' kitchen!!,259262728,Naomi,Manhattan,Hell's Kitchen,40.76059,-73.9965,Entire home/apt,290,3,4,2019-07-01,2.45,1,23 +34384580,Brownstone Oasis with Garden Perfect For a Family,48859528,Gabriella,Brooklyn,Bedford-Stuyvesant,40.68189,-73.93799,Entire home/apt,190,3,2,2019-07-01,1.43,1,0 +34384645,The BEAUTY & the EAST/free street parking & WIFI,219738858,Joe,Manhattan,East Village,40.7307,-73.98299,Entire home/apt,120,365,4,2019-05-17,1.90,5,305 +34384745,*20%OFF-Amazing Heart of NYC! Steps to subway!,104084124,Jeanne,Manhattan,Upper East Side,40.76154,-73.95797,Entire home/apt,161,2,9,2019-06-28,4.15,1,317 +34384911,"Ideal Tribeca Studio w/ Gym, W/D, Doorman, Pool, View by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71634,-74.00694,Entire home/apt,305,30,0,,,232,309 +34384950,"Gorgeous Tribeca Studio w/ Gym, W/D, Doorman, Pool, View, by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71663,-74.00647,Entire home/apt,269,30,0,,,232,235 +34384958,Spacious and welcoming studio apartment,57412032,John,Manhattan,Upper East Side,40.77984,-73.95231,Entire home/apt,113,30,0,,,1,192 +34385166,"Dream-nest with elements of class and ""flavor""!!",91263364,Agatha,Manhattan,Harlem,40.81662,-73.94209,Private room,135,4,0,,,1,66 +34386648,"""In The Heights"" Luxurious triplex in historic TH",27973267,Gus,Manhattan,Washington Heights,40.84956,-73.93271,Entire home/apt,595,2,4,2019-06-01,2.35,5,39 +34387952,"Your Luxury Manhattan Mansion! Quiet, Near it all.",244229787,Natalia,Manhattan,West Village,40.73916,-74.00511,Entire home/apt,250,2,1,2019-06-05,0.88,1,61 +34387993,Modern 2BED/2BATH In Midtown East - 3BEDs,257867265,Asher,Manhattan,Upper East Side,40.76173,-73.96216,Entire home/apt,299,5,3,2019-06-26,1.91,1,119 +34388266,Williamsburg Spacious room w/ Balcony and Bathroom,35645401,Adam,Brooklyn,Williamsburg,40.71926,-73.95485,Private room,69,3,1,2019-05-12,0.52,1,0 +34388360,Penthouse with Manhattan Views,191407795,Ariana,Queens,Maspeth,40.72807,-73.89826,Entire home/apt,149,2,0,,,1,327 +34388788,Gracious Loft in Perfect Midtown Location,257999371,Nikoulas & Julie,Manhattan,Upper East Side,40.76193,-73.95895,Entire home/apt,199,5,9,2019-07-01,4.66,1,164 +34389381,"Striking 1,500sf Full-Floor 3BD Loft in Flatiron",259474660,Fabio & Angie,Manhattan,Gramercy,40.73745,-73.98168,Entire home/apt,399,5,6,2019-07-01,3.27,1,182 +34389680,Beautiful bedroom is Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70056,-73.9184,Private room,50,1,1,2019-05-05,0.45,5,328 +34389896,Sumptin' Simple on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.68079,-73.91893,Private room,48,1,14,2019-06-30,6.36,2,249 +34389997,"Fantastic 2 bedroom Apt near Subway, Cafes & More",258577680,Francisco,Manhattan,Upper East Side,40.77146,-73.95482,Entire home/apt,365,6,2,2019-05-27,1.33,1,101 +34390308,"""In the Heights"" King Size Br w/shared baths.",27973267,Gus,Manhattan,Washington Heights,40.8509,-73.93345,Private room,75,1,9,2019-07-02,5.19,5,84 +34390645,"""In the Heights"" Love: 2 Queen beds. beautiful br.",27973267,Gus,Manhattan,Washington Heights,40.85115,-73.93223,Private room,150,1,4,2019-06-22,2.31,5,160 +34390686,Large sunny bedroom 5 mins from SI ferry,185401573,Akil,Staten Island,Stapleton,40.63443,-74.07573,Private room,50,1,10,2019-07-05,5.00,1,179 +34390910,"""In The Heights"" King Br w/on-suite shared bath.",27973267,Gus,Manhattan,Washington Heights,40.85078,-73.93195,Private room,150,1,7,2019-06-21,5.12,5,185 +34390993,Big one bed room-upper east side,259623238,Tom,Manhattan,Upper East Side,40.7765,-73.95458,Entire home/apt,200,3,0,,,1,0 +34391029,Splendid 2BED/2BATH Midtown EAST LOFT,258221896,Ariel,Manhattan,Upper East Side,40.76256,-73.96389,Entire home/apt,250,6,7,2019-06-22,3.56,1,100 +34391036,"""In The Heights"" 2 Queen Beds in Huge Private Br.",27973267,Gus,Manhattan,Washington Heights,40.84942,-73.93223,Private room,150,1,9,2019-06-29,5.19,5,188 +34391119,Private bedroom located in the heart of Harlem,259623647,Asta,Manhattan,Harlem,40.8036,-73.95308,Private room,150,4,0,,,1,88 +34391530,Astonishing 2 Bd Apartment in the Upper East Side,23458616,Erick,Manhattan,Upper East Side,40.76711,-73.95916,Private room,350,4,4,2019-06-15,2.67,1,143 +34391964,Fabulous 2Bedroom/1.5Baths Duplex near Broadway,257837216,Allan,Manhattan,Upper West Side,40.80249,-73.96588,Entire home/apt,335,5,5,2019-06-24,3.19,1,221 +34392044,Lovely and affordable place in the Bronx,178924110,Roukayatou,Bronx,Hunts Point,40.81258,-73.88566,Private room,40,1,11,2019-06-20,5.08,2,121 +34392073,Designer 4 Bedroom + 2Bath Duplex Condo in Midtown,166700941,Peter & Giulia,Manhattan,Midtown,40.75785,-73.96905,Entire home/apt,399,5,8,2019-07-01,3.81,1,145 +34392081,Hello! This is a very cozy space in Williamsburg.,259630588,Alina,Brooklyn,Williamsburg,40.71863,-73.9498,Private room,100,1,28,2019-06-26,14.00,2,20 +34392407,Beautiful three bedroom on Wall Street!,258754678,Egon,Manhattan,Financial District,40.70581,-74.00784,Entire home/apt,320,2,7,2019-07-04,4.20,1,189 +34392437,"Quiet, Convenient 1-Bedroom in Morningside Heights",259447786,Jacob,Manhattan,Morningside Heights,40.80735,-73.95938,Entire home/apt,150,2,4,2019-06-23,2.55,1,101 +34392767,Amazing Studio at the Time square area/51B,48146336,Irina,Manhattan,Hell's Kitchen,40.76121,-73.99333,Entire home/apt,120,30,1,2019-06-11,1,20,340 +34393554,Mini Casa,247013511,Frank,Queens,Jackson Heights,40.75231,-73.8756,Entire home/apt,69,2,3,2019-05-19,1.50,6,36 +34393812,Spacious Modern 2bd Whole Flat @ Heart of Brooklyn,95688223,Ethan,Brooklyn,Prospect Heights,40.67436,-73.96704,Entire home/apt,250,4,6,2019-06-28,5.29,1,92 +34393891,Sunny Private Sanctuary w High Ceilings,234270791,April G,Brooklyn,Bushwick,40.6961,-73.9307,Private room,64,3,1,2019-05-22,0.63,3,178 +34393999,Amazing apartment on Wall Street!,258783968,Baktiar,Manhattan,Financial District,40.70532,-74.00681,Entire home/apt,340,2,1,2019-06-24,1,1,302 +34394253,Private bedroom#2 for female in shared housing,233831164,Maki,Brooklyn,Prospect-Lefferts Gardens,40.66005,-73.94216,Private room,40,3,0,,,1,11 +34394888,Room w/ lots of Natural Light. Near 69st 7 train.,137358866,Kazuya,Queens,Woodside,40.743,-73.89444,Private room,47,30,0,,,103,246 +34396019,Cozy and bright bedroom next to the train station,259483928,Lizbeth,Queens,Glendale,40.70502,-73.89547,Private room,49,1,1,2019-06-02,0.79,1,70 +34396219,"Private Modern Studio in South Slope, Brooklyn!",3414140,Fanny + Matthew,Brooklyn,South Slope,40.66329,-73.98527,Entire home/apt,119,3,6,2019-06-27,4.86,1,45 +34396674,Cozy sun-fillled Astoria RM near Broadway station.,137358866,Kazuya,Queens,Astoria,40.76571,-73.92758,Private room,48,30,0,,,103,242 +34396747,Double Room,95570540,Eileen,Staten Island,Oakwood,40.55908,-74.11992,Private room,65,1,1,2019-06-14,1,3,364 +34396858,"LUXURY Brownstone, 13 ft ceilings, exposed brick",37149108,Steve,Manhattan,Midtown,40.74534,-73.98108,Entire home/apt,250,3,0,,,1,364 +34397198,Tranquility on Times Square VIP Room King Bed,259087876,Dennis,Manhattan,Midtown,40.75845,-73.98026,Private room,325,1,6,2019-06-28,3.21,7,67 +34397351,Unique 3Bedroom apartment 2block from Times Square,15546865,Dmitriy & Amy,Manhattan,Hell's Kitchen,40.7622,-73.99119,Entire home/apt,485,5,2,2019-06-12,1.46,1,240 +34397646,Charming Bedstuy Brownstone,257035928,Kyle,Brooklyn,Bedford-Stuyvesant,40.68426,-73.91937,Entire home/apt,110,3,4,2019-07-07,4,1,252 +34397915,A sunlit spacious room in Soho,69720852,Yana,Manhattan,SoHo,40.72159,-74.00022,Private room,115,7,1,2019-07-02,1,3,59 +34398878,"Large, Bright & Cozy Retreat-2 in B'klyn",221275418,Rufina,Brooklyn,Bedford-Stuyvesant,40.67918,-73.93727,Private room,55,2,7,2019-06-23,3.44,3,360 +34399142,Cozy Studio! Easy Access to Train to Manhattan!,259683532,Jacob,Queens,Ridgewood,40.70576,-73.89808,Entire home/apt,99,3,10,2019-07-02,5.26,1,152 +34399221,Spacious 1 BDRM w/ Backyard of DREAMS in Manhattan,6279234,Marissa,Manhattan,Harlem,40.80948,-73.95514,Entire home/apt,148,4,1,2019-07-08,1,1,8 +34399801,Fabulous gut renovated apt 15 minutes to Midtown,21040187,Maja,Manhattan,Washington Heights,40.84367,-73.93728,Entire home/apt,95,7,1,2019-05-31,0.77,1,25 +34399874,Chelsea gem in the middle of Manhattan.,241322481,Robert,Manhattan,Chelsea,40.74566,-73.99579,Entire home/apt,300,3,6,2019-06-29,3.40,1,180 +34399984,Two private rooms,259690766,Souadou,Bronx,Belmont,40.85648,-73.88501,Private room,95,2,4,2019-07-01,2.35,1,325 +34400497,An ideal place for your peace of mind,259694336,Joseph,Queens,Springfield Gardens,40.66899,-73.76163,Private room,70,4,3,2019-06-10,1.76,1,69 +34401135,Awesome Private Room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91375,Private room,50,2,1,2019-05-05,0.45,10,361 +34401334,Beautiful Room in BK!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68022,-73.91423,Private room,40,2,4,2019-06-12,1.82,10,350 +34401906,New York Modern Apartment,34075689,Zhen Zhen,Queens,Maspeth,40.72167,-73.90095,Entire home/apt,145,7,2,2019-05-29,1.22,3,38 +34402039,Bedstuy Brownstone apartment with a backyard,1237632,Melaney,Brooklyn,Bedford-Stuyvesant,40.68965,-73.9288,Private room,65,7,0,,,1,0 +34402760,Midtown East Amazing 2BR Prime Area,256569979,Candice,Manhattan,Upper East Side,40.76163,-73.96523,Entire home/apt,149,30,1,2019-05-28,0.71,1,0 +34403759,( GREEN ROOM) Private in a Beautiful Town House,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68447,-73.9396,Private room,42,2,9,2019-07-01,4.91,3,64 +34404561,Prime Midtown!Steps to Grand Central!,256573368,Nathan,Manhattan,Midtown,40.75436,-73.97254,Entire home/apt,89,3,1,2019-05-17,0.57,1,186 +34410542,Cozy Beautiful 2 bedrooms apartment.,253448038,Ramon,Manhattan,Hell's Kitchen,40.7561,-73.99097,Entire home/apt,300,3,12,2019-06-25,6.92,2,61 +34411020,Super Spacious room in Brooklyn,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.6788,-73.92722,Private room,43,1,4,2019-06-10,2.00,3,343 +34411728,Villa in Astoria,17622034,Omar,Queens,Astoria,40.7708,-73.93084,Private room,78,3,0,,,1,5 +34413436,"Bed only ladys, near LaGuardia & Manhattan",223087887,Jess & Ana,Queens,Corona,40.74262,-73.86674,Shared room,25,1,12,2019-07-07,6.00,8,351 +34413482,1 Bed in the Living Room Shared Stay for Male,172369331,Abby,Brooklyn,Coney Island,40.57607,-73.9833,Shared room,25,5,1,2019-05-31,0.75,10,129 +34413765,Donat Apartment,117364815,Donat,Queens,Astoria,40.75978,-73.90851,Private room,103,30,0,,,1,359 +34414240,DELIGHTFUL 3Bed Upper East Side LOFT ~CENTRAL PARK,258254263,Tyler,Manhattan,Upper East Side,40.78323,-73.95094,Entire home/apt,349,5,4,2019-06-22,2.67,1,93 +34414462,1 BEDROOM BASEMENT APARTMENT NEXT TO ASTORIA PARK,86181642,Grace,Queens,Astoria,40.77352,-73.92836,Entire home/apt,150,1,5,2019-06-16,2.38,1,24 +34415309,"Cozy, Furnished Room in Prime UWS W70s/Columbus",816014,Ljubica,Manhattan,Upper West Side,40.78032,-73.97812,Private room,55,90,0,,,1,193 +34415315,Very charming apartment in Carroll Gardens,4617977,Clau,Brooklyn,Carroll Gardens,40.67967,-73.99665,Entire home/apt,157,20,0,,,1,12 +34415448,Wall St - FiDi - Art Deco Luxury Apartment,2126138,Alwin,Manhattan,Financial District,40.70471,-74.0087,Entire home/apt,160,2,3,2019-06-23,2.00,1,8 +34415489,Gracious 5 Bedroom/2Bath Home by Central Park West,258003068,Hugo & Amelia,Manhattan,Upper West Side,40.79939,-73.96229,Entire home/apt,479,5,5,2019-06-18,2.68,1,159 +34415580,Chelsea one bedroom with private terrace,17477908,Mat,Manhattan,Chelsea,40.74557,-74.00825,Entire home/apt,280,30,0,,,10,365 +34415643,Bright & Meditative room in Williamsburg!,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71143,-73.94189,Private room,69,1,9,2019-07-04,8.18,3,318 +34415755,Gorgeous 7-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75297,-73.93698,Entire home/apt,499,1,0,,,10,341 +34415817,"""The quick get a way""",241454071,Leyland,Bronx,Hunts Point,40.81892,-73.8859,Private room,35,2,4,2019-07-04,4,2,27 +34416046,Private Loft Room w/Bathroom,212171922,Cha,Brooklyn,Bedford-Stuyvesant,40.68623,-73.92231,Private room,60,1,9,2019-06-19,4.35,1,147 +34416169,Big private room at Brooklyn close to the subway,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.6776,-73.91404,Private room,58,2,4,2019-06-16,2.35,5,168 +34416233,"Sunny two-bedroom apt in Jackson Heights, Queens",33229910,Angele,Queens,Jackson Heights,40.75312,-73.8812,Entire home/apt,120,7,0,,,1,58 +34416461,Amazing room at Brooklyn close to subway station,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91262,Private room,58,2,3,2019-07-08,1.48,5,167 +34416547,Gorgeous 4-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75509,-73.93703,Entire home/apt,299,1,2,2019-07-05,1.62,10,341 +34416741,Gorgeous 3-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75334,-73.93631,Entire home/apt,299,1,3,2019-06-10,2.05,10,357 +34416762,Great room at Brooklyn close to the subway station,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.6792,-73.91411,Private room,58,2,4,2019-06-30,2.14,5,164 +34416958,Comfortable room at Brooklyn close to the subway,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67757,-73.91314,Private room,58,2,8,2019-07-04,6.67,5,171 +34417476,Gorgeous LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.7546,-73.93506,Private room,99,1,9,2019-06-20,4.15,10,360 +34417565,Friend Hostel,93598122,Evgen,Brooklyn,Brighton Beach,40.58002,-73.96596,Private room,100,2,7,2019-06-23,3.44,1,31 +34417762,Cozy LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75386,-73.93677,Private room,79,1,15,2019-07-03,7.26,10,348 +34417846,Fantastic Duplex LOFT 2BED/1.5BATH by Metro,258629654,Joseph,Manhattan,Kips Bay,40.7447,-73.97959,Entire home/apt,299,6,8,2019-07-05,4.36,1,158 +34418059,Cozy studio - heart of Manhattan!,6710372,Arantza,Manhattan,Hell's Kitchen,40.7633,-73.9878,Entire home/apt,200,2,2,2019-06-02,1.36,1,5 +34418130,Room in NyCs Local Fave Neighborhood,259816232,Rachel,Manhattan,Lower East Side,40.71977,-73.98423,Private room,128,1,0,,,2,365 +34418565,"NYC 3 bed, full frnshd Apt, city 5 mins - Monthly",251229393,Rafu,Queens,Sunnyside,40.74546,-73.93341,Entire home/apt,149,4,2,2019-06-12,1.11,2,298 +34418592,Best private room A in Brooklyn close to Subways,243129380,Nubia,Brooklyn,Bushwick,40.68581,-73.90838,Private room,58,2,6,2019-06-21,3.05,4,122 +34419094,Lovely LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75314,-73.93644,Private room,89,1,9,2019-06-23,4.50,10,357 +34419243,Beautiful LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75317,-73.93502,Private room,99,1,7,2019-06-01,3.44,10,352 +34419244,Cute LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75502,-73.9349,Private room,79,1,8,2019-07-07,4.14,10,360 +34419247,Cutest LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75411,-73.93634,Private room,89,1,9,2019-06-16,6.28,10,358 +34419439,Spacious bright classic apt in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.70539,-73.90857,Entire home/apt,155,2,2,2019-06-10,1.00,3,59 +34419562,AMAZING ONE MONTH SUBLET IN WILLIAMSBURG!,259826953,Yaron,Brooklyn,Williamsburg,40.71741,-73.95691,Private room,99,3,4,2019-06-04,2.26,2,180 +34419723,420 + Sunny! Private room w/balcony,34356520,Jacquelyn,Queens,Ridgewood,40.71104,-73.90303,Private room,65,2,7,2019-06-16,4.04,1,104 +34419753,Budget LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75358,-73.93703,Private room,79,1,15,2019-07-03,7.14,10,350 +34419834,Gorgeous Midtown West LOFT 3BEDS/1.5BATH XL,258073534,Roberto,Manhattan,Hell's Kitchen,40.76557,-73.98399,Entire home/apt,399,6,5,2019-06-16,2.59,1,105 +34419922,Hippie vibe spot,211941129,Katarzyna,Brooklyn,Greenpoint,40.7261,-73.95842,Private room,70,1,0,,,2,0 +34420067,"IDEAL location in Brooklyn, Cozy private room",163012750,Alexis,Brooklyn,Park Slope,40.68234,-73.97677,Private room,80,6,0,,,1,44 +34420423,Quirky 1 BR / Studio in Heart of East Village,19509387,Greg,Manhattan,East Village,40.72592,-73.98701,Entire home/apt,600,2,1,2019-05-26,0.68,1,0 +34420441,SUNNY PRIVATE ROOM & BACKYARD in ♥︎ WILLIAMSBURG,246680134,Anastasiia,Brooklyn,Williamsburg,40.71879,-73.95993,Private room,90,1,11,2019-07-07,5.59,2,58 +34420574,Cozy home away from home,259838485,Jenn And Mike,Bronx,Parkchester,40.83792,-73.85526,Entire home/apt,100,1,8,2019-06-23,4.71,1,51 +34420605,Great Apartment spacious quiet neighborhood 2BedR,178689185,Shem,Brooklyn,Prospect-Lefferts Gardens,40.66371,-73.94351,Entire home/apt,125,4,3,2019-05-27,1.64,1,145 +34420814,Beautiful Room + Private Bath Same St As Subway!,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67903,-73.91037,Private room,60,1,2,2019-05-21,1.05,4,9 +34421245,Comfort in Quaint Jewel of Hudson Heights,840868,Ric,Manhattan,Washington Heights,40.85112,-73.93851,Entire home/apt,91,4,0,,,2,67 +34421507,Private bedroom in high-rise at Times Square,259846443,Charlie,Manhattan,Theater District,40.76127,-73.98579,Private room,130,2,10,2019-06-25,5.00,1,24 +34421663,2 Bedroom the NYs Most Poppin Neighborhood,259816232,Rachel,Manhattan,Lower East Side,40.71911,-73.98414,Entire home/apt,250,1,0,,,2,179 +34422468,Sunny West Village Artist Loft,7633037,Jesse,Manhattan,West Village,40.73731,-74.00929,Entire home/apt,140,25,0,,,2,73 +34422726,Home away from home,234422924,Arlene,Bronx,City Island,40.8439,-73.78792,Private room,29,1,2,2019-06-16,1.43,1,18 +34423018,cozy and extremely convenient apartment,187611907,Echo,Manhattan,Kips Bay,40.74079,-73.97965,Entire home/apt,134,30,0,,,1,90 +34424598,Bedroom in NYC - Minutes to Central Park!!!,140830391,Jay,Manhattan,Inwood,40.86191,-73.92726,Private room,125,2,1,2019-06-24,1,9,335 +34425422,★ ❤ 1 Sunny apartment for family and friends ★ ❤ ♛,259880452,Malik,Queens,Flushing,40.75502,-73.81582,Entire home/apt,119,2,4,2019-06-24,2.35,2,311 +34427740,小房间,48978249,QianWen,Queens,Flushing,40.75549,-73.82243,Shared room,200,1,0,,,2,72 +34428476,Huge and Bright Apartment on Wall Street,257802323,Dennis,Manhattan,Financial District,40.70485,-74.00752,Entire home/apt,360,3,3,2019-07-06,2.05,1,243 +34429111,Central Manhattan Shared Ladies Apartment,247453895,Kamila,Manhattan,Murray Hill,40.74532,-73.97534,Shared room,43,2,2,2019-06-01,1.43,3,358 +34429703,Amazing three bedroom apartment in Manhattan!,259376960,Simon,Manhattan,East Harlem,40.80068,-73.94072,Entire home/apt,280,2,6,2019-07-01,3.53,1,192 +34432701,THE STUDIO LODGE NYC,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68087,-73.92061,Private room,60,3,3,2019-06-30,2.31,2,322 +34433240,Use entire space 3 level home just redone 35%off,193835968,Angel,Bronx,Wakefield,40.89338,-73.84785,Entire home/apt,309,2,10,2019-06-30,5.56,1,173 +34435500,"1 bedroom in the heart of Chelsea, Highline",259945322,Arturo,Manhattan,Chelsea,40.74493,-74.00195,Entire home/apt,215,3,2,2019-06-08,0.97,1,45 +34436245,"Big, Sunny Room with Rooftop View-Midtown West",186302609,Bini,Manhattan,Hell's Kitchen,40.77157,-73.99309,Private room,150,9,0,,,1,141 +34438157,"Cozy, Brooklyn Room in the ""Middle of Everything!""",10568305,Gpa,Brooklyn,Crown Heights,40.66975,-73.92878,Private room,49,1,2,2019-06-24,2,1,325 +34438417,Beautiful Apartment in Hamilton Heights,145319773,Angel,Manhattan,Harlem,40.8212,-73.95479,Entire home/apt,115,6,3,2019-06-20,3,1,279 +34439098,FULLY RENOVATED APARTMENT - BRAND NEW,20025889,Fatri,Brooklyn,Gravesend,40.59846,-73.99175,Entire home/apt,85,60,0,,,2,87 +34439212,"Beautiful, large West Village apartment",4056392,David,Manhattan,West Village,40.73563,-73.99846,Entire home/apt,500,4,1,2019-05-27,0.70,1,0 +34439328,FULLY RENOVATED SECOND FLOOR FRONT VIEW APARTMENT,20025889,Fatri,Brooklyn,Gravesend,40.59935,-73.99053,Entire home/apt,85,60,0,,,2,87 +34440093,1 bedroom in lovely 2 bdr apartment (Manhattan),73195328,Uta,Manhattan,Harlem,40.8299,-73.94361,Private room,69,7,2,2019-06-26,1.71,1,30 +34441627,little heaven,259968030,Rosa,Brooklyn,Flatbush,40.64568,-73.96256,Private room,70,3,1,2019-05-14,0.53,1,105 +34441659,Brand new apartment. 2 month sublet,210800523,Gabo,Brooklyn,Bedford-Stuyvesant,40.68102,-73.91039,Private room,40,4,0,,,1,0 +34442975,BRKLYN SIMPLE ROOM,237729032,Samuel,Brooklyn,Cypress Hills,40.68603,-73.8782,Private room,40,1,1,2019-06-10,1,2,340 +34443205,"""Hop and Skip to NYC""",35819327,Annette,Staten Island,Rosebank,40.61471,-74.06679,Entire home/apt,135,2,1,2019-07-02,1,1,0 +34443679,The Logan’s Oasis - 8 min. to JFK & 20 min. to LGA,260009677,Heather,Queens,Jamaica,40.69242,-73.79673,Entire home/apt,90,2,14,2019-07-06,7.92,1,354 +34444336,Mott Haven Dorm-Bed G,174785358,Rem,Bronx,Port Morris,40.80816,-73.93176,Shared room,28,1,4,2019-06-14,2.07,7,64 +34444744,Large Private room queen bed near kitchen,147762665,Jose,Bronx,Wakefield,40.88649,-73.85889,Private room,37,1,12,2019-06-24,6.21,3,315 +34444939,Luxurious Apartment in Brooklyn,260021770,Mariana,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92335,Entire home/apt,150,2,7,2019-07-04,4.12,1,4 +34446024,Charming studio near Columbus Circle,4365051,Daria,Manhattan,Hell's Kitchen,40.77024,-73.99213,Entire home/apt,170,2,1,2019-06-30,1,1,0 +34446327,2 BR/2.5 BTH W/ 12 FT. CEILINGS NEAR CENTRAL PARK!,140823633,Clement,Manhattan,Midtown,40.76208,-73.97172,Entire home/apt,750,2,4,2019-07-03,2.22,1,263 +34446644,Double room in UPW minutes from Central Park,77220567,Chantal,Manhattan,Upper West Side,40.79727,-73.96865,Private room,85,3,1,2019-06-29,1,1,67 +34446664,Home away from home,260038086,Kimberly,Queens,Laurelton,40.6688,-73.74384,Entire home/apt,254,3,2,2019-06-03,1.46,1,24 +34446800,Sunlit Brooklyn Bedroom perfect for Summer,117187237,Patrick,Brooklyn,Bushwick,40.70371,-73.92877,Private room,50,14,6,2019-06-19,5.00,1,0 +34446898,Mott Haven Dorm-Bed H,174785358,Rem,Bronx,Port Morris,40.80856,-73.93055,Shared room,28,1,4,2019-06-22,2.03,7,71 +34446902,★Spacious bedroom in Midtown | Centrally Located★,164051353,Warren,Manhattan,Chelsea,40.74443,-73.99166,Private room,140,1,7,2019-06-28,3.75,3,87 +34447284,No Stairs 2BR near Times Square - very private!!,50868008,June And Eunice,Manhattan,Hell's Kitchen,40.76486,-73.99316,Entire home/apt,367,2,1,2019-06-21,1,1,229 +34447510,Prime apt in the heart of the LES,16212805,Helee,Manhattan,Lower East Side,40.71967,-73.9853,Entire home/apt,130,5,0,,,1,0 +34447529,Cozy UWS Studio Near Riverside Park,260046126,Morad,Manhattan,Upper West Side,40.78958,-73.9794,Entire home/apt,165,1,2,2019-06-30,1.33,1,346 +34448753,Madinina 2,116874533,Bertin,Manhattan,Harlem,40.81454,-73.94424,Private room,55,2,8,2019-07-02,4.44,2,330 +34449001,Serene + Spacious Bushwick Oasis,260062581,Hunter,Brooklyn,Bushwick,40.69619,-73.92973,Private room,45,5,3,2019-06-23,2.73,1,0 +34449070,15 min to Manhattan ENTIRE 1 big Br. APARTMENT,133398247,Patricia,Queens,Jackson Heights,40.74701,-73.89395,Entire home/apt,96,1,8,2019-06-24,4.44,1,157 +34449441,Stay in a Brownstone coop,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.67972,-73.9567,Private room,70,3,6,2019-07-01,2.90,4,20 +34449879,Large Room Summer Sublease - Astoria NYC,20810804,Ahmed,Queens,Ditmars Steinway,40.77922,-73.90752,Private room,35,85,0,,,1,228 +34450013,Cozy/Simple Private Room#1 in Broadway AVE,120875818,Rock,Brooklyn,Bushwick,40.69155,-73.92518,Private room,60,1,6,2019-06-29,3.91,2,167 +34451049,Charming East Village 1 Bedroom Apt close to all,54678020,Steven,Manhattan,East Village,40.72791,-73.98485,Entire home/apt,150,2,8,2019-06-24,4.36,1,67 +34451494,Stunning Time Square NYC Home Manhattan!!,258431072,Luzia,Manhattan,Hell's Kitchen,40.76326,-73.98612,Entire home/apt,345,3,2,2019-06-09,1.67,1,212 +34453822,Quiet Room Next to Times Square and Bryant Park,260191397,Hotel Mela,Manhattan,Theater District,40.75745,-73.98596,Private room,100,1,7,2019-06-17,4.04,7,296 +34453823,Comfort of a home!! Quiet Suite in Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75588,-73.987,Private room,100,1,0,,,7,293 +34453824,"Near Times Square, Rockefeller, Bryant Park, &more",260191397,Hotel Mela,Manhattan,Theater District,40.75575,-73.98736,Private room,100,1,0,,,7,294 +34453826,Spacious Room near Rockefeller Ctr & Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.7575,-73.98728,Private room,100,1,0,,,7,300 +34453828,Perfect Spot Between Bryant Park and Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75679,-73.98726,Private room,100,1,2,2019-06-15,2,7,300 +34453829,Spacious Private Queen in Heart of New York City!,260191397,Hotel Mela,Manhattan,Theater District,40.7559,-73.98562,Private room,100,1,2,2019-06-03,1.36,7,298 +34453830,Quiet Room * Family Friendly * Near Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75612,-73.98622,Private room,100,1,0,,,7,256 +34461661,Bright and Spacious Bushwick Room,53105192,Shawana,Brooklyn,Bushwick,40.69628,-73.92627,Private room,65,1,8,2019-06-12,3.87,1,3 +34462649,Private bedroom Cozy and Warm for girls ONLY,176899233,Vicky,Brooklyn,Kensington,40.64196,-73.97088,Shared room,65,1,0,,,2,27 +34464380,Williamsburg 2 Bed Condo-Sleeps 7,260159741,Yoel,Brooklyn,Williamsburg,40.71083,-73.96736,Entire home/apt,259,1,9,2019-06-22,6.00,1,202 +34464505,TIMES SQUARE Cozy private room,8033432,Tom,Manhattan,Hell's Kitchen,40.75865,-73.99,Private room,100,1,6,2019-06-23,3.40,4,116 +34465119,Large Studio Loft Centrally Located,6167891,Josh,Brooklyn,Williamsburg,40.70171,-73.94547,Entire home/apt,78,4,2,2019-07-02,2,1,14 +34465167,Stylish apartment in the heart of New York,22146650,Marion,Manhattan,Harlem,40.81257,-73.94444,Entire home/apt,178,2,2,2019-06-15,1.36,1,52 +34465289,Brand New PRIVATE garden level- Close to airport,20537772,Talia,Brooklyn,Cypress Hills,40.6819,-73.89097,Entire home/apt,135,2,3,2019-06-29,3,1,43 +34466803,Sunny spacious room full of good energy,1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94387,Private room,45,1,3,2019-07-02,1.58,2,0 +34467399,Sunny Quiet Bedroom Two Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.64836,-74.00076,Private room,70,1,2,2019-07-02,1.30,2,361 +34468427,Gorgeous Midtown West LOFT - 4BEDs/2BATHs,257654201,Charles,Manhattan,Hell's Kitchen,40.76313,-73.99081,Entire home/apt,265,6,4,2019-07-01,2.26,1,45 +34468721,J & G Comfort Cove: Feel of luxury and tranquility,259776956,Gladwyn,Brooklyn,Canarsie,40.63031,-73.89618,Entire home/apt,140,1,5,2019-06-23,4.41,5,365 +34470040,"Brand new 2 bedroom, Steps To Manhattan",190869074,Marshall,Brooklyn,Sunset Park,40.6475,-74.01428,Entire home/apt,130,10,1,2019-05-25,0.65,1,90 +34470862,Beautiful brand new studio/1BR,75566080,Bar,Brooklyn,Williamsburg,40.71645,-73.95194,Entire home/apt,175,4,2,2019-06-24,2,1,71 +34470949,Chelsea Pines Inn - Single,255234351,Ejaz,Manhattan,Chelsea,40.74129,-74.00457,Private room,109,1,0,,,4,326 +34470950,Chelsea Pines Inn - One Bedroom Suite,255234351,Ejaz,Manhattan,Chelsea,40.74052,-74.0031,Private room,199,1,0,,,4,355 +34470953,Chelsea Pines Inn - Hide Away Suite,255234351,Ejaz,Manhattan,West Village,40.73968,-74.00455,Private room,299,1,0,,,4,269 +34470954,Chelsea Pines Inn - Superior Queen,255234351,Ejaz,Manhattan,Chelsea,40.74006,-74.00248,Private room,159,1,0,,,4,362 +34471524,Brand New & Clean Lower East Side 2BR Apt,159014432,Kevin,Manhattan,Lower East Side,40.71422,-73.9896,Entire home/apt,341,2,2,2019-06-11,1.76,1,245 +34472646,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Jackson Heights,40.75015,-73.86899,Entire home/apt,153,4,0,,,3,135 +34473196,Bright & Cozy 3BR Apartment in Wall Street,258741560,Lasse,Manhattan,Financial District,40.70562,-74.00712,Entire home/apt,320,3,5,2019-07-01,3.26,1,212 +34473487,Sophisticated 3 Bedroom/ 2Bath in Union Square NYC,231548638,Emile,Manhattan,East Village,40.73081,-73.98876,Entire home/apt,549,5,8,2019-06-26,4.29,1,155 +34473786,Entire Third floor 3 bedroom,229060975,Aubrey,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92339,Entire home/apt,60,14,0,,,1,329 +34473821,Whole-floor 2Bdrm Apt in NYC’s Theater District,79461666,Stephen,Manhattan,Hell's Kitchen,40.76421,-73.99132,Entire home/apt,290,3,2,2019-07-01,1.13,3,8 +34474349,3BR Loft near Times Square! Best Location!,256533375,Karl Andrei,Manhattan,Hell's Kitchen,40.75634,-73.99332,Entire home/apt,149,31,1,2019-05-31,0.77,1,182 +34475000,Quiet & Peaceful Duplex Garden Apartment,220847379,Lorraine,Brooklyn,Crown Heights,40.67898,-73.95725,Entire home/apt,150,3,3,2019-07-01,2.43,1,345 +34475551,Downtown Brooklyn Luxury Studio,332521,Rajat,Brooklyn,Prospect Heights,40.68305,-73.97503,Entire home/apt,150,4,0,,,1,5 +34475553,"Cozy and Sunny apartment in Bed-Stuy, Brooklyn",6913402,Rana,Brooklyn,Bedford-Stuyvesant,40.68435,-73.92027,Private room,59,1,0,,,1,55 +34476591,Cozy Bushwick apartment in a great location,81133553,Zachary,Brooklyn,Williamsburg,40.70612,-73.9264,Private room,90,3,0,,,1,156 +34477538,Brooklyn's Finest - UL,50364039,Cathy,Brooklyn,Williamsburg,40.71815,-73.96412,Entire home/apt,165,2,0,,,3,314 +34477772,"cosy room, high ceiling and private bathroom",22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69621,-73.93467,Private room,130,1,3,2019-06-16,1.53,7,136 +34477790,Penn room 14,244817841,Aminul,Brooklyn,East New York,40.66814,-73.8953,Private room,38,7,2,2019-06-01,1.20,13,258 +34478107,NYC- Cozy and Quiet 2 bedroom apt,109847539,Lila,Manhattan,Roosevelt Island,40.75732,-73.95314,Entire home/apt,255,7,0,,,2,73 +34478114,Spacious East Village 1 BR Apartment,26483902,Corey,Manhattan,East Village,40.72923,-73.98735,Entire home/apt,175,2,0,,,1,157 +34478311,"room in sunny, charming, vintage style apartment",3250169,Juliette,Brooklyn,Carroll Gardens,40.68184,-73.99359,Private room,95,3,3,2019-06-02,1.76,1,66 +34478598,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Flushing,40.75098,-73.84695,Entire home/apt,110,3,0,,,3,153 +34478718,Luxury Sky Loft: 2 Bedroom/ 2 Baths on Madison Ave,257642062,Michel,Manhattan,Midtown,40.76094,-73.97318,Entire home/apt,599,5,4,2019-07-06,4,1,135 +34478719,Spacious brownstone apartment and garden,52796837,John,Manhattan,Harlem,40.81396,-73.94488,Entire home/apt,160,6,8,2019-07-05,5.22,1,43 +34478766,Penn room 13,244817841,Aminul,Brooklyn,East New York,40.66983,-73.89411,Private room,38,7,3,2019-06-14,1.70,13,296 +34479102,Williamsburg studio- view of downtown Manhattan,69516382,Kelly,Brooklyn,Williamsburg,40.71032,-73.9614,Entire home/apt,200,1,4,2019-06-23,2.45,1,50 +34479640,Sunny Greenwich Village Studio with Piano,89309763,Rebecca,Manhattan,Greenwich Village,40.73098,-73.99361,Entire home/apt,175,20,0,,,1,79 +34479995,Penn room 12,244817841,Aminul,Brooklyn,East New York,40.66929,-73.89421,Private room,38,7,4,2019-06-29,2.35,13,282 +34480144,Penn room 11,244817841,Aminul,Brooklyn,East New York,40.66816,-73.89577,Private room,38,7,3,2019-06-07,1.61,13,239 +34481124,Charming Cobble Hill Brownstone Apartment,144522384,Amanda,Brooklyn,Carroll Gardens,40.68574,-73.99421,Entire home/apt,250,2,0,,,1,0 +34482823,apartment for 6ppl in SOHO,260186993,Me,Manhattan,Lower East Side,40.71955,-73.99115,Entire home/apt,243,2,1,2019-06-24,1,1,97 +34482998,My Comfy Condo,260299060,Kristina,Queens,Rego Park,40.72654,-73.86077,Entire home/apt,100,1,7,2019-07-01,4.04,1,2 +34483343,Steps to Central Park,260425153,Park Lane,Manhattan,Midtown,40.7647,-73.97452,Private room,100,1,0,,,14,365 +34483424,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76393,-73.97594,Private room,400,1,0,,,14,245 +34483425,Steps to Times Square,260425153,Park Lane,Manhattan,Midtown,40.76443,-73.97588,Private room,350,1,2,2019-06-30,2,14,365 +34483426,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76425,-73.97642,Private room,475,1,0,,,14,343 +34483427,Mesmerizing Central Park View Awaits You!,260425153,Park Lane,Manhattan,Midtown,40.76471,-73.97454,Private room,475,1,0,,,14,361 +34483430,Stunning View of Central Park,260425153,Park Lane,Manhattan,Midtown,40.76535,-73.97556,Private room,425,1,0,,,14,351 +34483431,Heart of Midtown Manhattan,260425153,Park Lane,Manhattan,Midtown,40.76395,-73.97622,Private room,450,1,3,2019-06-16,2.43,14,365 +34483432,Manhattan Accommodation Across Central Park,260425153,Park Lane,Manhattan,Midtown,40.76427,-73.97618,Private room,375,1,1,2019-06-30,1,14,349 +34483433,Staycation Next to Central Park,260425153,Park Lane,Manhattan,Midtown,40.7649,-73.97602,Private room,450,1,0,,,14,350 +34483434,Luxuriate in Captivating Beauty of Central Park,260425153,Park Lane,Manhattan,Midtown,40.76476,-73.9762,Private room,500,1,0,,,14,362 +34483436,Steps to Fifth Avenue Shopping Area,260425153,Park Lane,Manhattan,Midtown,40.76459,-73.97416,Private room,425,1,1,2019-06-15,1,14,357 +34483439,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76393,-73.9758,Private room,450,1,0,,,14,355 +34483440,Fall in Love with Central Park Again and Again,260425153,Park Lane,Manhattan,Midtown,40.76443,-73.97478,Private room,450,1,0,,,14,336 +34483443,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76559,-73.97632,Private room,425,1,1,2019-06-08,1,14,340 +34485281,"Corner Studio w abundance of natural light, SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72243,-74.0043,Private room,100,1,0,,,7,276 +34485282,"Accessible Queen room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72372,-74.00408,Private room,100,1,1,2019-06-16,1,7,328 +34485283,"High floor king bed, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72172,-74.00436,Private room,100,1,1,2019-06-26,1,7,270 +34485284,"King modern room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72174,-74.00354,Private room,100,1,0,,,7,266 +34485285,"Queen modern room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72324,-74.00401,Private room,100,1,1,2019-07-01,1,7,292 +34485286,"King Suite with sofa bed, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.7239,-74.00379,Private room,100,1,0,,,7,325 +34485289,High floor Corner King w panoramic views of SoHo,260861596,The James New York - SoHo,Manhattan,SoHo,40.72353,-74.00409,Private room,100,1,0,,,7,331 +34485317,Modern Luxury Queen Room Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76476,-73.98246,Private room,100,1,0,,,6,297 +34485694,Luxury King Room Near Central Park,261761719,WestHouse,Manhattan,Hell's Kitchen,40.76555,-73.98478,Private room,100,1,0,,,6,299 +34485697,Modern One Bedroom Suite Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76413,-73.98431,Private room,100,1,0,,,6,290 +34485698,Modern Private King Room Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76352,-73.9828,Private room,100,1,0,,,6,294 +34485699,Modern Two Queen Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76479,-73.98307,Private room,100,1,0,,,6,299 +34485702,Modern King Bed roll-in shower Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76413,-73.98435,Private room,100,1,0,,,6,271 +34485737,Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75625,-73.98434,Private room,100,1,0,,,9,307 +34485738,Large Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75466,-73.98487,Private room,100,1,0,,,9,283 +34485739,Midtown Manhattan Private Alcove Suite,261632622,Royalton,Manhattan,Theater District,40.75481,-73.9856,Private room,100,1,0,,,9,317 +34485740,Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75597,-73.98395,Private room,100,1,0,,,9,301 +34485741,Midtown Manhattan Stunner - Private Suite,261632622,Royalton,Manhattan,Theater District,40.75645,-73.985,Private room,100,1,1,2019-06-08,0.94,9,317 +34485742,Midtown Manhattan - Private room,261632622,Royalton,Manhattan,Theater District,40.75628,-73.98356,Private room,100,1,4,2019-06-24,3.00,9,309 +34485745,Midtown Manhattan Stunner - Private room,261632622,Royalton,Manhattan,Theater District,40.75491,-73.98507,Private room,100,1,3,2019-06-16,3,9,318 +34485746,Midtown Manhattan upscale residences,261632622,Royalton,Manhattan,Theater District,40.75631,-73.98383,Private room,100,1,1,2019-06-12,1,9,317 +34485747,Midtown Manhattan Room for up to 4 guests,261632622,Royalton,Manhattan,Theater District,40.75623,-73.98356,Private room,100,1,0,,,9,311 +34486925,Nobel Expereices - Central Park & Carnegie Hall,261761196,Park Central,Manhattan,Midtown,40.76581,-73.9835,Private room,100,1,0,,,8,309 +34487108,Delue Expereinces around Central Park with Family,261761196,Park Central,Manhattan,Midtown,40.76555,-73.98272,Private room,100,1,0,,,8,321 +34487247,Premier King Room close to Central Park & 5th Ave,261761196,Park Central,Manhattan,Midtown,40.76574,-73.98201,Private room,100,1,0,,,8,318 +34487373,Luxury ADA King Room close to Central Park,261761196,Park Central,Manhattan,Midtown,40.76547,-73.98252,Private room,100,1,0,,,8,319 +34487491,Spacious Luxuary Kind Bed in Prime Central Park,261761196,Park Central,Manhattan,Midtown,40.76368,-73.98225,Private room,100,1,0,,,8,311 +34489385,Steps from Times Square and Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76156,-73.98471,Private room,100,1,2,2019-07-03,2,15,349 +34489569,Cozy 1bd Apartment in Upper East Side,260251845,Pau,Manhattan,Upper East Side,40.77424,-73.95322,Entire home/apt,211,3,4,2019-06-14,2.50,1,63 +34489715,Room with Two Beds in Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76251,-73.98455,Private room,300,1,5,2019-07-03,5,15,304 +34489717,Broadway Facing Room on High Floor,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76248,-73.98584,Private room,100,1,0,,,15,358 +34489718,Comfortable 280 sq ft guest room on floors 19-22,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76237,-73.98442,Private room,100,1,0,,,15,359 +34489721,Room with Two Double Beds on Floors 19-22,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76246,-73.98396,Private room,100,1,0,,,15,336 +34489723,Luxury Room with Two Queen Beds,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76179,-73.98589,Private room,100,1,0,,,15,296 +34489725,Luxury Room between Times Square and Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76179,-73.98399,Private room,100,1,1,2019-06-16,1,15,351 +34489727,Large Room with Pull-out Sofa and Balcony,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76187,-73.98413,Private room,100,1,0,,,15,349 +34489729,One Bedroom Suite,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76134,-73.98456,Private room,100,1,0,,,15,232 +34490350,Spacious One King Bed Junior Suite in Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75608,-73.98915,Private room,100,1,0,,,13,356 +34490351,Large King Studio steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75633,-73.98922,Private room,100,1,0,,,13,335 +34490353,Luxury 2 Queen beds studio with city view,260618374,The Knickerbocker,Manhattan,Theater District,40.75612,-73.98864,Private room,100,1,0,,,13,351 +34490354,Large 2 Queen beds steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75513,-73.98772,Private room,100,1,0,,,13,341 +34490356,Corner Junior Suite Room with One King Bed,260618374,The Knickerbocker,Manhattan,Theater District,40.75615,-73.98803,Private room,100,1,0,,,13,353 +34490357,Spacious 2 Queen beds steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75609,-73.98724,Private room,100,1,0,,,13,343 +34490359,One Bedroom Penthouse Suite in Times Square,260618374,The Knickerbocker,Manhattan,Midtown,40.75449,-73.98737,Private room,100,1,0,,,13,312 +34490360,Spacious Studio-Style Junior Suite Two Queen beds,260618374,The Knickerbocker,Manhattan,Theater District,40.75657,-73.9881,Private room,100,1,0,,,13,351 +34490361,Deluxe King Bed Mobility Accessible Roll-in Shower,260618374,The Knickerbocker,Manhattan,Midtown,40.75471,-73.98781,Private room,100,1,0,,,13,352 +34490362,Junior Suite 2 Queen Beds Mobility Accessible Tub,260618374,The Knickerbocker,Manhattan,Theater District,40.75513,-73.98784,Private room,100,1,0,,,13,344 +34490363,Deluxe King Room steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75661,-73.98757,Private room,100,1,0,,,13,358 +34490364,Luxury City View Studio with one King bed,260618374,The Knickerbocker,Manhattan,Midtown,40.75507,-73.98883,Private room,100,1,0,,,13,364 +34490368,Tribute Suite in the heart of Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75569,-73.98933,Private room,100,1,0,,,13,362 +34490371,Corner Suite between Central Park and Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76275,-73.98429,Private room,100,1,0,,,15,201 +34490373,"Enormous Suite near Central Park, Times Square",260639745,Manhattan At Times Square,Manhattan,Theater District,40.76175,-73.9857,Private room,300,1,0,,,15,359 +34490375,Renovated Executive Suite near Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76267,-73.9839,Private room,100,1,0,,,15,328 +34490376,Accessible between Times Square & Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76267,-73.98557,Private room,100,1,2,2019-07-03,2,15,359 +34490377,"Accessible room with Roll-In Shower, Times Square",260639745,Manhattan At Times Square,Manhattan,Theater District,40.7627,-73.98437,Private room,100,1,4,2019-07-07,4,15,359 +34490379,Large Accessible Suite in Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76251,-73.98392,Private room,100,1,0,,,15,292 +34491611,Spacious 450 sq ft King Room near Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76097,-73.98181,Private room,100,1,2,2019-07-07,2,7,0 +34491852,550 Square Feet Suite near Central Park,261750091,The Michelangelo,Manhattan,Theater District,40.76112,-73.98377,Private room,100,1,1,2019-06-30,1,7,320 +34491871,Perfect Suite Retreat in Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76245,-73.98339,Private room,100,1,0,,,7,320 +34491883,A Studio fit for a King,261750091,The Michelangelo,Manhattan,Theater District,40.76262,-73.98305,Private room,100,1,0,,,7,319 +34491885,Family Room to fit all of YOU!,261750091,The Michelangelo,Manhattan,Theater District,40.76203,-73.98191,Private room,100,1,0,,,7,230 +34491916,Ultimate 800 sqf Grand Suite in Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76113,-73.9818,Private room,100,1,0,,,7,315 +34491918,ADA Compliant Studio Room near Central Park,261750091,The Michelangelo,Manhattan,Theater District,40.76055,-73.98362,Private room,100,1,0,,,7,262 +34492121,Beautiful 3 bedroom in Manhattan!,259391287,Sondre,Manhattan,East Harlem,40.79957,-73.94212,Entire home/apt,290,2,11,2019-06-30,6.11,1,268 +34492605,Brand new huge 3 bedroom apartment.,260352154,Ranjit,Queens,South Ozone Park,40.67072,-73.79534,Entire home/apt,400,1,1,2019-06-05,0.86,1,281 +34493247,Central Park Condo,257396181,Steven,Manhattan,Midtown,40.76547,-73.97952,Entire home/apt,250,30,1,2019-06-21,1,1,342 +34493353,"5★ clean, 150ft² bedroom, 10min to Union Square",28371926,John,Brooklyn,Williamsburg,40.70973,-73.94521,Private room,60,2,9,2019-06-25,4.82,1,87 +34495013,Enjoy Yourself in Classic East Village 1BR,66266373,Corey,Manhattan,East Village,40.72709,-73.98582,Entire home/apt,150,1,8,2019-07-07,4.90,1,15 +34495704,FURNISHED 2 BEDROOM HUDSON HEIGHTS 6/15 - 8/15,160349432,Jeffrey,Manhattan,Washington Heights,40.85747,-73.93439,Entire home/apt,100,30,0,,,1,8 +34498121,Gorgeous Bushwick Townhome,260379800,Joshua,Brooklyn,Bushwick,40.68792,-73.90993,Entire home/apt,425,3,0,,,1,112 +34498360,Modern One Bedroom in the Hudson Yards,26413356,Charity,Manhattan,Hell's Kitchen,40.75562,-73.99459,Entire home/apt,175,36,0,,,1,0 +34498482,Large 1 Bedroom Apartment in Chelsea,6397405,Matt,Manhattan,Chelsea,40.74484,-73.99688,Entire home/apt,275,2,2,2019-06-09,1.76,1,15 +34498765,Huge Family Apt in Times Square - private elevator,260383024,Inieta,Manhattan,Midtown,40.75546,-73.99095,Entire home/apt,945,2,11,2019-07-03,7.02,1,264 +34498925,Quaint Private Room in Vibrant Bronx Neighborhood,7087084,Laura,Bronx,Fordham,40.86003,-73.89314,Private room,47,1,2,2019-05-27,1.36,1,236 +34499063,Minimalist House,247013511,Frank,Queens,Jackson Heights,40.75246,-73.87505,Entire home/apt,79,2,8,2019-06-23,4.36,6,336 +34500224,Welcoming you to my comfy & New Yorkish studio,253727905,David,Manhattan,Hell's Kitchen,40.76297,-73.98951,Entire home/apt,179,4,4,2019-06-27,2.26,1,260 +34500384,Modern and perfectly located 1BD (East Village),14758945,Magda,Manhattan,East Village,40.72859,-73.98008,Entire home/apt,150,4,2,2019-06-23,1.36,1,3 +34501274,Cute Bushwick One-Bedroom with Great Backyard,1486824,Samantha,Brooklyn,Bushwick,40.69402,-73.92378,Entire home/apt,154,2,2,2019-06-02,1.40,1,0 +34501332,450 West,74514078,Michele,Manhattan,Washington Heights,40.8362,-73.94063,Private room,65,3,5,2019-06-26,3.00,1,33 +34501531,Sun-Drenched Williamsburg Artist Loft,11389064,Talia,Brooklyn,Williamsburg,40.71369,-73.96626,Entire home/apt,109,3,2,2019-07-01,0.98,1,5 +34501725,Light-filled loft with greenhouse and terrace,16903474,Deborah,Manhattan,Chelsea,40.74894,-73.99466,Entire home/apt,280,21,0,,,1,219 +34501825,Bushwick penthouse,40707667,Horacio,Brooklyn,Bushwick,40.70191,-73.91952,Private room,60,1,12,2019-07-04,5.90,1,27 +34502284,Bushwickian Paradise,18263672,Andrew,Brooklyn,Bushwick,40.69243,-73.90741,Entire home/apt,100,2,3,2019-06-16,1.73,1,35 +34502763,Newly renovated Spacious 4 bedroom flat!,260411862,Shamsur,Brooklyn,Cypress Hills,40.67815,-73.86584,Entire home/apt,500,1,2,2019-07-01,2,1,363 +34502889,NEW Sunny Light filled 1BR Apartment in Brooklyn!,260413032,David,Brooklyn,Bedford-Stuyvesant,40.69241,-73.95793,Entire home/apt,149,2,3,2019-07-02,3,1,268 +34504058,♕ Historic Modern Designer SoHo Sun Drenched Home!,260420558,Shelesa,Manhattan,SoHo,40.71988,-74.00062,Entire home/apt,620,2,4,2019-06-21,2.22,1,169 +34504385,Private room in Premium-Luxury apartment,260045150,Nadezhda,Manhattan,Financial District,40.70472,-74.00763,Private room,210,2,5,2019-06-16,2.83,1,0 +34504407,"Large UES studio Central Park close, 1 bk to Q sub",9910595,Deep,Manhattan,Upper East Side,40.76703,-73.95556,Entire home/apt,155,2,0,,,1,113 +34504929,Luxury Boutique Private One-bedroom Apartment,109389069,Victoria,Brooklyn,Bushwick,40.69414,-73.92477,Entire home/apt,98,2,7,2019-07-03,3.33,1,4 +34504997,"Clean room, 10 min away from the city. PRKG AVBL",252646618,Michael,Queens,Astoria,40.7644,-73.91208,Private room,65,1,2,2019-06-24,2,2,0 +34507958,UES Beautiful 1 Bed Blocks from Central Park w/ AC,225659989,Gabriella,Manhattan,Upper East Side,40.76622,-73.95295,Entire home/apt,200,1,10,2019-07-06,5.08,1,280 +34508048,Bedstuy On 4th.,63554174,Sharon,Brooklyn,Bedford-Stuyvesant,40.69091,-73.94514,Entire home/apt,115,30,4,2019-06-10,2.35,1,133 +34508183,"Quiet, Top Floor Apt in West Village Townhouse",214187963,Amanda,Manhattan,West Village,40.73011,-74.00401,Entire home/apt,285,30,1,2019-06-30,1,2,179 +34508565,"Large renovated apartment, brand new furniture.",14171579,Mark,Queens,Astoria,40.76335,-73.92769,Entire home/apt,140,3,5,2019-07-07,5,1,254 +34508577,1 bdroom available in Williamsburg,260452146,Margaux,Brooklyn,Williamsburg,40.71462,-73.95883,Private room,72,1,0,,,1,0 +34508939,Nice bedroom with comfy Simmons bed -1min to train,5889721,Maco,Brooklyn,Bay Ridge,40.6347,-74.02268,Private room,54,1,8,2019-06-30,4.21,2,339 +34509302,Perfect room for road warrior 20mins to Manhattan,7832790,Michael,Queens,Astoria,40.76269,-73.91232,Private room,90,1,2,2019-06-03,1.25,2,90 +34509379,Full brownstone on gorgeous Brooklyn Heights block,614026,Alana,Brooklyn,Brooklyn Heights,40.69043,-73.99365,Entire home/apt,500,8,0,,,1,72 +34509926,Beautiful One Bedroom in Stunning Luxury High-Rise,121861644,Kathleen,Manhattan,Financial District,40.70719,-74.00664,Entire home/apt,215,3,2,2019-05-24,0.98,1,14 +34510970,Close to LGA/Manhattan. Spacious Apartment in JH.,121378704,Edgar,Queens,Jackson Heights,40.75353,-73.87688,Entire home/apt,86,1,1,2019-06-16,1,1,125 +34510977,"Hip, lofty apt in historic townhouse w backyard",831185,Andrew,Brooklyn,Crown Heights,40.67958,-73.96227,Entire home/apt,305,2,1,2019-06-24,1,3,179 +34511012,Only 20 mins. to manhattan via N & W trains,914386,Anna,Queens,Ditmars Steinway,40.77046,-73.9137,Entire home/apt,99,2,2,2019-06-02,1.18,2,139 +34511326,Fabulous 2Bed 2Bath- Gym-Drman-Roof-Playr-High end,236572440,David,Manhattan,Midtown,40.75535,-73.96469,Entire home/apt,340,30,0,,,2,297 +34511422,Exquisite 2 Bed/2Bath all modern and High end Furn,236572440,David,Manhattan,Midtown,40.75697,-73.96312,Entire home/apt,340,30,0,,,2,365 +34511584,Fifth Avenue Ultra Luxurious Large 3 Bed- Gym/Dorm,65388010,John,Manhattan,Midtown,40.76261,-73.9768,Entire home/apt,560,30,0,,,1,337 +34511726,One Bedroom Apartment Near Prospect Park,260475429,Zahira,Brooklyn,Kensington,40.64221,-73.98126,Entire home/apt,125,2,1,2019-06-09,1,1,74 +34511920,Amazing House in Brooklyn ! Best deal in the area,129468527,Sally,Brooklyn,Gravesend,40.59997,-73.97804,Entire home/apt,90,30,0,,,1,80 +34512123,Bedroom in central Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.69958,-73.91979,Private room,50,1,3,2019-06-15,1.80,5,62 +34513343,Small back room 420friendly & breakfast,218116366,Yankee,Bronx,Longwood,40.82756,-73.8871,Private room,70,1,6,2019-06-23,2.95,2,89 +34513724,Quiet and Clean,260496218,Veronica,Queens,Bellerose,40.73138,-73.74122,Private room,100,1,1,2019-06-02,0.79,2,342 +34514860,Gorgeous Well-Lit Home 5 Min To Grand Central,221718743,Sunny,Manhattan,Midtown,40.74611,-73.98228,Entire home/apt,350,2,4,2019-07-01,2.79,1,86 +34515538,Sunny Private Bedroom in Uptown Manhattan,141426597,Lester,Manhattan,Washington Heights,40.85762,-73.93175,Private room,115,3,3,2019-06-30,2.05,3,179 +34515896,Look at that Suite City View!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70669,-74.0165,Private room,100,1,0,,,7,348 +34516167,Private Bedroom in Sunny Manhattan Apartment,141426597,Lester,Manhattan,Washington Heights,40.85768,-73.93247,Private room,105,3,4,2019-06-08,2.40,3,180 +34516181,Harbor View for Two!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70497,-74.01721,Private room,100,1,0,,,7,348 +34516182,Enjoy the Suite Life with a Harbor View!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70622,-74.01651,Private room,100,1,0,,,7,359 +34516185,Magnificent View of the Statue of Liberty!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70486,-74.01799,Private room,100,1,0,,,7,360 +34516186,Harbor View for a King!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70515,-74.01851,Private room,100,1,0,,,7,361 +34516187,Lower Manhattan for the Family!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.7068,-74.01775,Private room,100,1,1,2019-06-16,1,7,339 +34516188,"The City That Never Sleep, with a View!",260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70494,-74.01692,Private room,100,1,0,,,7,360 +34516657,Private Sunny Uptown Manhattan Bedroom,141426597,Lester,Manhattan,Washington Heights,40.85584,-73.93364,Private room,105,3,3,2019-06-11,1.61,3,180 +34516874,( BLUE ROOM ) Private in Beautiful Town House,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68473,-73.93976,Private room,100,2,4,2019-06-27,2.67,3,63 +34517087,Large Queen Room Near Flatiron Building & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74365,-73.98717,Private room,350,1,0,,,10,363 +34517384,Penthouse room in Williamsburg with ensuite toilet,21306,Lucy,Brooklyn,Williamsburg,40.70966,-73.95129,Private room,73,21,2,2019-06-01,1.18,1,36 +34517657,Large King Room Near Flatiron Building & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74478,-73.98618,Private room,300,1,0,,,10,360 +34517660,2 Queen Bed Spacious Room near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74366,-73.98607,Private room,250,1,0,,,10,361 +34517661,370 sq ft King Room near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74343,-73.9857,Private room,500,1,0,,,10,363 +34517663,Grand Deluxe King with Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74433,-73.98555,Private room,250,1,0,,,10,10 +34517666,700 sqft Manhattan Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74476,-73.98551,Private room,350,1,0,,,10,327 +34517667,775 sqft Park Ave. Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74311,-73.98675,Private room,300,1,0,,,10,362 +34517668,980 sqft Royalton Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74501,-73.98668,Private room,350,1,0,,,10,361 +34518079,Park Avenue Suite with Large Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74291,-73.9868,Private room,400,1,0,,,10,330 +34518082,980 sqft Royalton Suite with Large Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74312,-73.98589,Private room,350,1,0,,,10,345 +34519905,Luxury condo 10 mins from Times Sq NY!,247335568,Evelyn,Queens,Long Island City,40.74885,-73.9526,Entire home/apt,150,3,1,2019-06-02,0.81,7,23 +34527143,Modern and Spacious,14911623,Nicholas,Manhattan,Harlem,40.81816,-73.93932,Private room,150,1,0,,,2,88 +34527330,Luxe Sunny Balcony Views*NoHo,260578637,Kris -,Manhattan,East Village,40.72381,-73.9905,Entire home/apt,325,30,0,,,1,79 +34527987,Light-filled duplex brownstone close to subway,7259859,Olivia,Brooklyn,Bedford-Stuyvesant,40.6851,-73.93092,Entire home/apt,100,3,0,,,1,0 +34529200,"Huge Apt in Luxury Building - LIC, Queens",103485354,Samantha,Queens,Long Island City,40.74551,-73.94131,Entire home/apt,185,2,2,2019-07-07,1.36,1,41 +34530998,Apartment around the park,260589412,Dorcas,Bronx,Parkchester,40.83588,-73.85819,Entire home/apt,69,5,0,,,1,55 +34532307,"Beautiful, Quiet, Private Bedroom in West Midtown",79461666,Stephen,Manhattan,Hell's Kitchen,40.76412,-73.99141,Private room,140,3,2,2019-06-16,1.25,3,85 +34532377,Nice Room,213604995,Doreen,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93165,Private room,85,2,9,2019-06-26,4.58,2,319 +34534332,Gorgeous Brand New 3 Bed/2 Bath in Prime NYC!,244171850,Jocelyn,Queens,Ridgewood,40.70078,-73.9075,Entire home/apt,140,30,0,,,10,365 +34534845,Cozy/Simple Private Room#2 in Bushwick Broadway,120875818,Rock,Brooklyn,Bushwick,40.69299,-73.92524,Private room,60,1,9,2019-06-25,4.66,2,174 +34535182,J & G Comfort Cove: Serenity Queen Room,259776956,Gladwyn,Brooklyn,Canarsie,40.6307,-73.89567,Private room,120,1,3,2019-07-06,1.76,5,365 +34535938,Art and Plant filled 2 BR APT near L Train.,4202557,Johan,Queens,Glendale,40.69437,-73.89883,Entire home/apt,150,2,3,2019-07-05,3,1,146 +34536944,Fort Greene -- Urban Oasis With Patio,1355112,Jean,Brooklyn,Clinton Hill,40.6903,-73.96764,Entire home/apt,150,3,5,2019-06-23,3.57,2,159 +34537321,Pleasant & comfortable furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75972,-73.96147,Entire home/apt,110,30,0,,,8,331 +34538701,Perfect Harlem home for couples/small families,21334989,Reyna,Manhattan,East Harlem,40.81142,-73.93748,Entire home/apt,120,5,0,,,1,0 +34538751,Contemporary Designer 2BD/2Bath Duplex by Cen Park,112338663,James & Shannon,Manhattan,Upper West Side,40.80058,-73.96287,Entire home/apt,400,5,11,2019-07-01,6.23,1,125 +34539085,Master BR in luxury building - BROOKLYN,128601689,Todd,Brooklyn,Bushwick,40.70036,-73.92847,Private room,50,3,2,2019-06-07,1.71,1,39 +34539406,Joy & Gladness double room,259776956,Gladwyn,Brooklyn,Canarsie,40.63106,-73.89759,Private room,100,1,1,2019-06-30,1,5,365 +34539781,Just Renovated home. Heart of Manhattan.,260649642,Lane,Manhattan,Murray Hill,40.75236,-73.9793,Entire home/apt,250,2,0,,,1,1 +34542125,2nd bedrm in duplex apt. ground floor! no stairs,258243498,Ben,Brooklyn,Williamsburg,40.70517,-73.94288,Private room,125,1,2,2019-06-02,1.00,3,89 +34542878,J & G Comfort Cove Luxurious King Room,259776956,Gladwyn,Brooklyn,Canarsie,40.63043,-73.89553,Private room,130,1,0,,,5,365 +34543201,Luxurious Superior Two Bedroom Apt Gym Lincoln C,232596712,Jessica,Manhattan,Upper West Side,40.77728,-73.98062,Entire home/apt,299,30,0,,,6,365 +34543513,"Spectacular Duplex 4Bdr 3Bath Lincoln C 2,000 Sqft",232596712,Jessica,Manhattan,Upper West Side,40.77808,-73.9806,Entire home/apt,950,30,0,,,6,339 +34543610,"Designer luxurious 3Bed/2Bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77667,-73.97945,Entire home/apt,580,30,0,,,6,337 +34543674,"Luxurious Penthouse 3bed/2bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77731,-73.97954,Entire home/apt,583,30,1,2019-06-24,1,6,334 +34543734,Luxurious Doorman Building-2 Bedroom-Lincoln C-Gym,232596712,Jessica,Manhattan,Upper West Side,40.77791,-73.98043,Entire home/apt,275,30,0,,,6,301 +34543762,LYRIC - Hotel Deluxe Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70571,-74.00784,Entire home/apt,299,1,8,2019-07-07,8,8,312 +34543905,"LYRIC - 2 Bedroom Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70719,-74.00698,Entire home/apt,650,1,0,,,8,323 +34544052,"LYRIC - 1 Bedroom Executive Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70512,-74.00719,Entire home/apt,309,1,0,,,8,325 +34544304,Artistic Home Near Metro with Backyard/Balcony,23878336,Armando,Bronx,Fordham,40.86952,-73.89447,Entire home/apt,223,3,0,,,10,315 +34544599,"XL Quiet Top Floor Harborview 5m to Ferry, RUMC",9263105,Wj,Staten Island,New Brighton,40.64535,-74.09255,Private room,55,3,1,2019-06-26,1,2,10 +34545014,"Bright, modern, cozy 1 bed with amazing view",27381412,Enoch,Brooklyn,Williamsburg,40.71595,-73.96467,Entire home/apt,200,1,4,2019-07-01,3.08,1,72 +34545274,Cozy Two-Bedroom - Close To Manhattan,256448235,Jay,Brooklyn,Bedford-Stuyvesant,40.68558,-73.93746,Entire home/apt,140,2,1,2019-05-13,0.52,1,81 +34545655,Beautiful & Comfortable Manhattan Rooms,260668537,Anne,Manhattan,Harlem,40.81507,-73.94419,Private room,65,3,0,,,1,362 +34545793,Your edgy Residence in LES!,260693405,Denise,Manhattan,Lower East Side,40.71952,-73.98546,Entire home/apt,250,7,3,2019-06-18,1.76,1,254 +34545869,Peaceful loft “3”,34643568,Dave,Manhattan,East Harlem,40.79155,-73.94141,Private room,85,3,3,2019-06-26,3,6,90 +34545971,Lofty living in Greenpoint,20952448,Myriah,Brooklyn,Greenpoint,40.73219,-73.95563,Entire home/apt,275,2,4,2019-06-30,2.67,1,27 +34546035,Amazing one bedroom near transportation.,115817634,Maria,Manhattan,Washington Heights,40.83326,-73.94314,Private room,55,2,1,2019-05-19,0.59,1,10 +34546192,"Large, Sunny, Quiet Room in Harlem, New York City",1542506,Ritty,Manhattan,Harlem,40.81721,-73.94593,Private room,49,1,0,,,1,2 +34546265,Cozy Two Bedroom Apartment in Bedstuy (Whole Apt),68422715,Dominique,Brooklyn,Bedford-Stuyvesant,40.68826,-73.93714,Entire home/apt,94,3,5,2019-07-07,3.13,1,1 +34547269,Peaceful Private Room in Huge Brooklyn Apartment,68467026,Jahziel,Brooklyn,Crown Heights,40.67058,-73.93526,Private room,70,5,1,2019-06-09,1,1,282 +34547439,Summer spot!,157666408,Semika,Brooklyn,East Flatbush,40.64268,-73.95132,Private room,70,4,0,,,1,16 +34547543,Bedroom Near Queens Center Mall,120746245,Yvon,Queens,Elmhurst,40.73209,-73.88142,Private room,34,1,0,,,1,0 +34547780,Imperial 2,249479517,Imperial,Bronx,Soundview,40.82776,-73.87643,Private room,45,1,7,2019-07-06,3.50,2,365 +34549093,Trendy Apartment In Soho / LES Neighborhood,123068098,Dan,Manhattan,SoHo,40.72406,-73.9965,Entire home/apt,390,2,9,2019-06-30,5.00,1,79 +34549395,"Small NYC Apt near Flushing, Walk to 7 Train",172168328,Chris,Queens,Jackson Heights,40.75557,-73.87958,Entire home/apt,129,4,1,2019-05-13,0.53,1,361 +34550196,Cozy Home in Safe Neighborhood Near Times Square,157208948,Jane,Manhattan,Hell's Kitchen,40.76761,-73.99208,Entire home/apt,310,2,5,2019-06-23,3.13,1,101 +34552276,Comfy apt. Mid Manhattan - Female ONLY!,76679800,Windy,Manhattan,Kips Bay,40.74286,-73.9768,Private room,78,12,3,2019-06-02,1.73,2,41 +34555635,One of a Kind Williamsburg Artist Studio Loft,128810972,Vlasta,Brooklyn,Williamsburg,40.71639,-73.96696,Private room,200,1,8,2019-06-22,4.21,2,0 +34560998,Brand new luxury apartment near Yankee Stadium,2068673,Brent,Bronx,Highbridge,40.83176,-73.9298,Entire home/apt,115,14,0,,,1,0 +34561332,Sun-drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67182,-73.95985,Entire home/apt,275,3,0,,,2,0 +34562155,"Shakti House!FLATIRON, UNION SQ PARK,WEST VILLAGE.",50442154,Alena Devi,Manhattan,Greenwich Village,40.73512,-73.99445,Entire home/apt,170,3,2,2019-06-22,1.62,1,9 +34562857,Top-Floor Duplex 2Bedroom/2Bath on charming street,257895306,Robert And Carrie,Manhattan,Upper East Side,40.77707,-73.95405,Entire home/apt,349,5,4,2019-07-04,4,1,52 +34563256,Cozy bedroom with Comfy Simmons bed -1min to train,5889721,Maco,Brooklyn,Bay Ridge,40.63459,-74.02257,Private room,48,1,4,2019-06-30,2.22,2,96 +34565485,West 80's Private Bedroom Walk to Central Park,21930989,Mark,Manhattan,Upper West Side,40.78996,-73.97561,Private room,97,1,5,2019-06-23,4.17,2,117 +34565716,Mid-century-bricks exposed in Manhattan/ 2 beds,56889786,Pierre,Manhattan,East Harlem,40.79238,-73.94402,Entire home/apt,120,2,0,,,1,34 +34566104,Sonder | Stock Exchange | Warm Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70598,-74.01069,Entire home/apt,222,2,1,2019-05-29,0.73,327,315 +34566144,On Top Of The Ridge (Wood),260821048,Saba,Queens,Ridgewood,40.70922,-73.91017,Private room,48,1,12,2019-07-04,6.10,2,264 +34566798,Great bright room in Brooklyn,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.67853,-73.92697,Private room,43,2,1,2019-06-02,0.79,3,341 +34568097,Iconic West 57 Street/Central park/Junior 1Bedroom,7679270,Ika,Manhattan,Hell's Kitchen,40.76739,-73.98504,Entire home/apt,150,2,2,2019-07-01,2,1,146 +34568205,Private 1br Apartment for Your Brooklyn Experience,646592,Damien,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9195,Entire home/apt,94,4,3,2019-06-28,1.80,1,9 +34568807,Private Condo Room w Ground Level Entrance,136840462,Sharlene,Bronx,Longwood,40.81963,-73.90956,Private room,55,1,10,2019-05-31,5.26,1,310 +34569023,The Feel Good in Ridgewood,260821048,Saba,Queens,Ridgewood,40.70732,-73.90896,Private room,48,1,20,2019-07-06,10.17,2,258 +34569042,4 Rooms 3 Bedroom Pre War Central Park West Condo.,26935678,Zach,Manhattan,Upper West Side,40.80032,-73.95998,Entire home/apt,285,1,9,2019-07-01,5.09,1,229 +34569454,Surf-N-Sleep By the Sea Studio,260842282,Andy,Queens,Arverne,40.59269,-73.79635,Entire home/apt,95,2,6,2019-07-01,3.46,1,348 +34569621,Sonder | 116 John | Welcoming 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70671,-74.00471,Entire home/apt,179,29,0,,,327,333 +34569686,Sonder | 116 John | Dashing Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.00525,Entire home/apt,100,29,0,,,327,342 +34569757,Sonder | Theater District | Warm Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75933,-73.98751,Entire home/apt,164,29,0,,,327,336 +34569801,Sonder | The Nash | Sleek 2BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97413,Entire home/apt,302,29,0,,,327,325 +34569918,Комната на Bay Pway,260844992,Ineza,Brooklyn,Bensonhurst,40.60783,-73.98445,Private room,75,3,0,,,1,89 +34570002,Sonder | 116 John | Ideal Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70658,-74.00684,Entire home/apt,100,29,0,,,327,342 +34570070,Newly Renovated Convenient Real 2 Bedrm Queen beds,260846055,Alex,Manhattan,Gramercy,40.73358,-73.98443,Entire home/apt,325,2,0,,,1,194 +34570512,Sonder | 116 John | Lovely Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.00483,Entire home/apt,100,29,0,,,327,342 +34570764,Sonder | 116 John | Sun-Filled 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.7078,-74.00675,Entire home/apt,130,29,0,,,327,349 +34570816,Sonder | 116 John | Relaxed 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70798,-74.00498,Entire home/apt,130,29,1,2019-06-10,1,327,361 +34570839,Sonder | 21 Chelsea | Quaint 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74305,-73.99415,Entire home/apt,254,29,0,,,327,365 +34570862,Sonder | 116 John | Warm Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70643,-74.00519,Entire home/apt,100,29,0,,,327,345 +34571306,"Beautiful, Gut-Renovated Central Park 1BR",36712407,Dean,Manhattan,Upper West Side,40.77702,-73.98052,Entire home/apt,224,2,2,2019-07-07,2,1,16 +34572976,Empire CIty - King Lux King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75688,-73.99862,Private room,999,1,5,2019-07-02,4.17,30,348 +34574809,Large Private room - Convenient and safe location,252636577,Jean,Queens,Flushing,40.75862,-73.82606,Shared room,35,2,1,2019-05-18,0.57,2,90 +34574929,Magnificent 1Bedroom in the Lower East Side,260879160,Safia,Manhattan,Lower East Side,40.7202,-73.9891,Entire home/apt,160,14,3,2019-07-07,2.14,1,288 +34575770,15 mins to the City,57007752,Dinneal,Queens,Long Island City,40.75742,-73.9447,Entire home/apt,69,2,0,,,2,5 +34575860,Super Cute Studio with Amazing View of Manhattan,10469103,Jess,Queens,Long Island City,40.74664,-73.95522,Entire home/apt,220,10,3,2019-05-23,1.55,1,45 +34575931,Summer home in NYC 5-Bedroom Private House,163565274,Carrie,Queens,Flushing,40.72453,-73.79847,Entire home/apt,189,2,6,2019-07-03,5.00,1,8 +34575989,The Clifton Place,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95332,Private room,120,2,2,2019-06-25,1.58,2,88 +34576062,Beautiful 2 Bedroom with Large Private Terrace,5962328,Alan,Queens,Flushing,40.76067,-73.82389,Entire home/apt,140,30,0,,,15,323 +34577268,The duplex of city center,257474717,Kim,Queens,Flushing,40.75498,-73.83423,Entire home/apt,15,2,0,,,1,361 +34578233,Peaceful Apartment in Lefferts Gardens,158123420,Jane,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.95679,Private room,250,5,0,,,1,23 +34578823,Beautiful new 2 bed in East Williamsburg,256341094,David,Brooklyn,Bushwick,40.6996,-73.9289,Entire home/apt,249,6,2,2019-06-13,1.30,2,161 +34579204,Lovely Ensuite Room with own entrance,212874794,Michael,Brooklyn,Park Slope,40.68018,-73.98052,Private room,49,31,0,,,1,42 +34582016,New York City!!! Luxury Bedroom!!,224317184,Luke,Manhattan,Harlem,40.81775,-73.94931,Private room,75,4,1,2019-05-17,0.57,8,340 +34587796,Spacious One Bedroom in Hell’s Kitchen,457838,Bobby,Manhattan,Hell's Kitchen,40.76239,-73.99003,Entire home/apt,300,2,1,2019-05-20,0.60,1,0 +34588996,Entire gorgeous sunny 1 bd/1 bath apt in Astoria,68275154,Haneef,Queens,Astoria,40.77101,-73.92932,Entire home/apt,200,3,2,2019-05-27,1.20,1,0 +34592851,Beautiful Brooklyn Brownstone Production Space,19867664,Cheryl,Brooklyn,Crown Heights,40.67015,-73.94782,Entire home/apt,2500,1,1,2019-06-08,0.94,2,168 +34592979,"Dreamy Nolita 1BR w/ W/D, Heated Bathroom, above SoHo cafe, by Blueground",107434423,Blueground,Manhattan,Nolita,40.72399,-73.99426,Entire home/apt,314,30,0,,,232,341 +34592997,Close to the city and Bronx Lebanon hospital,13664245,Denise,Bronx,Claremont Village,40.84353,-73.91108,Private room,43,3,0,,,2,341 +34593016,"Expansive Upper West Side 2BR w/ W/D, near Central Park, by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.78222,-73.97676,Entire home/apt,381,30,0,,,232,334 +34593055,"Spacious Upper West Side 2BR w/ W/D, near Central Park, by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7816,-73.97548,Entire home/apt,377,30,0,,,232,334 +34593079,Lovely Newly Renovated 2 Bdrm-Union Sq & E Village,96222872,Nc,Manhattan,Gramercy,40.73388,-73.98311,Entire home/apt,299,2,11,2019-06-29,5.79,1,194 +34593096,"Dapper East Village 1BR w/ Gym, W/D, Doorman, near Subway, by Blueground",107434423,Blueground,Manhattan,NoHo,40.72517,-73.99274,Entire home/apt,306,30,0,,,232,333 +34593686,Heart of Queens NY. Close to Midtown. Lots of room,145333094,Donald,Queens,Jackson Heights,40.75574,-73.87867,Private room,120,7,0,,,1,0 +34593987,Manhattan Beach Condo,260997528,Jermaine,Brooklyn,Sheepshead Bay,40.58495,-73.93278,Entire home/apt,150,1,10,2019-07-07,7.89,1,354 +34594081,Large room in fantastic Williamsburg location!,26552242,Bríet,Brooklyn,Williamsburg,40.71054,-73.95908,Private room,85,2,2,2019-06-03,1.25,1,19 +34594922,Amazing 1 bdr in Upper East Side,19915612,Zarrar,Manhattan,Upper East Side,40.76718,-73.95748,Entire home/apt,180,2,1,2019-05-19,0.59,1,0 +34595255,BRIGHT DESIGNER FLAT heart of Greenwich Village,254509494,Alex,Manhattan,Greenwich Village,40.73301,-73.99819,Entire home/apt,420,3,6,2019-07-01,3.10,1,144 +34595441,Best Midtown Location! 5 Bedrooms!,2571687,Kam,Manhattan,Flatiron District,40.74191,-73.99011,Entire home/apt,299,1,7,2019-07-01,4.12,1,347 +34595632,Charming Garden Flat in the Heart of Chelsea,261008318,Holly,Manhattan,Chelsea,40.74411,-74.00166,Entire home/apt,245,3,4,2019-06-30,2.55,1,152 +34596809,SUMMER RENTAL 1BDR ON THE OCEAN IN BROOKLYN $3200,261012432,Elena,Brooklyn,Brighton Beach,40.57885,-73.95376,Entire home/apt,110,7,0,,,1,267 +34597644,Romantic Garden Studio near Manhattan!,4999887,Christina,Queens,Ditmars Steinway,40.78071,-73.9149,Entire home/apt,135,2,0,,,1,226 +34598372,Simple Comforts,74290720,Melinda,Brooklyn,Carroll Gardens,40.6832,-73.99322,Private room,65,2,6,2019-07-02,3.67,1,145 +34598389,"3Bdrm home w/Parking! 10min Manhattan,5min Airport",261028352,Young,Queens,Woodside,40.74268,-73.90022,Entire home/apt,146,2,7,2019-06-30,5.00,2,89 +34598639,Comfy and Classic Brooklyn Brownstone 1 Bedroom!,1354539,Eve,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95298,Entire home/apt,125,3,4,2019-06-18,4,1,155 +34599215,New 2 Bedrooms Apt Right in Times Square,1015345,Tom,Manhattan,Theater District,40.76125,-73.98167,Entire home/apt,400,3,4,2019-06-23,2.50,1,3 +34600024,My NYC Dream Home II,261036755,Sandra,Brooklyn,Bedford-Stuyvesant,40.69023,-73.92746,Entire home/apt,175,3,2,2019-07-01,2,1,329 +34600508,Artist's Loft! A+ Location! Central Park/5th ave!,256610768,John Ghaddie,Manhattan,Upper East Side,40.76414,-73.96728,Entire home/apt,159,31,4,2019-06-16,2.45,1,244 +34601499,Sun-drenched private room in 1BR Harlem apt,53638710,Kay,Manhattan,Harlem,40.823,-73.93966,Private room,49,2,1,2019-05-27,0.70,1,23 +34601569,Shared Room 4 FEMALE Guests 30mins to Manhattan-1,172369331,Abby,Brooklyn,Sheepshead Bay,40.59842,-73.95667,Shared room,20,2,1,2019-06-01,0.77,10,342 +34602077,Spacious 1 bedroom apartment 15min from Manhattan,261055465,Regan,Queens,Astoria,40.76424,-73.92351,Entire home/apt,125,3,1,2019-05-24,0.65,1,13 +34602480,Clean big private room in new apartment building,38431080,Javier,Brooklyn,Bedford-Stuyvesant,40.69136,-73.94761,Private room,64,2,3,2019-06-15,2.65,1,0 +34602589,Prime Location near Central Park and Museum Mile.,232863817,Higuemota,Manhattan,Upper East Side,40.7804,-73.94556,Private room,99,2,0,,,1,146 +34602779,Cozy music lovers cat house right above the Train,46559599,Amy,Brooklyn,Williamsburg,40.71512,-73.95093,Private room,88,1,1,2019-05-19,0.59,1,0 +34603173,Beautiful apartment in the heart of Brooklyn.,155812868,Milana,Brooklyn,Brighton Beach,40.57835,-73.96407,Entire home/apt,119,1,0,,,2,136 +34604195,Cozy 2 Bedroom Condominium,260895008,Sammy,Manhattan,Kips Bay,40.74412,-73.97609,Entire home/apt,199,1,5,2019-06-21,2.83,1,85 +34605017,LOVELY 1 BED APT,197178016,Oscar,Queens,Astoria,40.76452,-73.9251,Entire home/apt,115,2,2,2019-07-01,1.18,1,80 +34605049,Furnished room for girl in Astoria-15mins to city,194571019,Michaela,Queens,Astoria,40.76371,-73.91784,Private room,36,2,3,2019-06-09,1.96,1,4 +34605801,Comfortable Studio! Easy Access to Manhattan!,261090883,Zack,Queens,Ridgewood,40.70791,-73.8959,Entire home/apt,99,2,9,2019-06-23,5.40,1,164 +34606202,Entire 1 bedroom apt in the heart of Queens by JFK,74050784,Eva Dilruba,Queens,Ozone Park,40.6827,-73.84274,Entire home/apt,100,2,0,,,1,149 +34607249,Studio for a couple visiting New York City,126161542,Luis,Manhattan,Harlem,40.81942,-73.95796,Entire home/apt,99,2,5,2019-06-22,2.88,1,0 +34607651,Comfortable home for all your needs!!!,173311396,Lyuba,Manhattan,East Harlem,40.80013,-73.93742,Entire home/apt,150,1,5,2019-06-23,2.88,1,21 +34607764,Spacious Manhattan room mins to Central Park!,137358866,Kazuya,Manhattan,East Harlem,40.79466,-73.94032,Private room,34,30,0,,,103,216 +34608937,Heart of Manhattan! 3BR Near Time Square!,256726587,Rolando,Manhattan,Hell's Kitchen,40.75546,-73.99416,Entire home/apt,199,30,1,2019-05-25,0.67,1,176 +34613254,Amazing One Bedroom at the Time Square Area/72B,48146336,Irina,Manhattan,Hell's Kitchen,40.76134,-73.99299,Entire home/apt,150,30,0,,,20,332 +34614782,Cozy & Charming Oasis in Williamsburg Brooklyn,107069094,Jimmo And Ames,Brooklyn,Williamsburg,40.71912,-73.95727,Entire home/apt,240,3,3,2019-07-01,2.00,1,85 +34615705,Lincln Ctr alcove studio w terrace and great views,1336171,Maureen,Manhattan,Upper West Side,40.77212,-73.98641,Entire home/apt,175,2,6,2019-06-23,4.29,1,1 +34616078,靠近机场交通方便双人房#3,107272884,Lynn L,Queens,Richmond Hill,40.69587,-73.84798,Private room,45,1,2,2019-06-07,1.40,4,176 +34617093,New 4 bedroom Sunny Boutique Apt Steps from Train,39808438,Easton,Brooklyn,Bushwick,40.68899,-73.91616,Entire home/apt,350,2,0,,,5,358 +34617886,Great room in creative Bushwick,261016031,Sylvia,Brooklyn,Bushwick,40.6966,-73.91934,Private room,70,3,2,2019-06-18,1.05,1,189 +34618352,King's Airbnb,261167972,Roger,Brooklyn,Bedford-Stuyvesant,40.68366,-73.92011,Entire home/apt,180,2,9,2019-07-07,5.40,1,330 +34619743,Massive One Bedroom with Office /Yoga Room /Yard,10099608,Alexa,Brooklyn,Greenpoint,40.72455,-73.94633,Entire home/apt,149,3,2,2019-06-19,2,1,6 +34620162,Queens Village Morden 93,163603458,Qing,Queens,Queens Village,40.72052,-73.73628,Entire home/apt,69,1,15,2019-06-24,7.63,2,46 +34620353,Boutique Studio Apt,261183419,Crystal,Manhattan,Washington Heights,40.85833,-73.93402,Entire home/apt,70,30,0,,,1,83 +34620781,Balcony Private Room with Private Bath En-suite,261187437,Shasha,Brooklyn,Borough Park,40.63313,-74.00598,Private room,35,1,7,2019-06-24,4.04,6,364 +34620880,Private room with Central Park view,261188287,Stella,Manhattan,Upper West Side,40.77221,-73.98085,Private room,92,10,0,,,1,0 +34621137,New 4-P Family Rm w/ Private Bath Close to Subway,261187437,Shasha,Brooklyn,Borough Park,40.63531,-74.00522,Private room,75,1,1,2019-06-30,1,6,360 +34621157,Comfortable Private Room & Bathroom En-suite,261187437,Shasha,Brooklyn,Borough Park,40.6354,-74.00576,Private room,75,1,2,2019-05-23,1.07,6,151 +34621385,2 Bedroom in the heart of Bushwick,3899139,David,Brooklyn,Bushwick,40.70296,-73.92662,Entire home/apt,125,5,4,2019-06-24,2.40,1,18 +34622133,Newly Renovated Place 47 Buffalo 1F Room#1,260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67771,-73.92356,Private room,60,1,6,2019-07-07,3.53,2,77 +34622597,Sun-filled gem near the water and transportation,24482415,Karuna,Brooklyn,Bay Ridge,40.63275,-74.02946,Private room,35,7,2,2019-06-29,1.40,1,1 +34623269,Loft/apartment in Soho,39782325,Mike,Manhattan,SoHo,40.72176,-74.00448,Entire home/apt,107,3,0,,,1,6 +34623352,"Amazing big apartment in UWS Manhattan, 2 bdr",25699447,Zeina,Manhattan,Upper West Side,40.77706,-73.98383,Entire home/apt,250,15,0,,,1,23 +34624240,Sharing Bunk Beds with Backpacking and Couchsurfer,38483415,Florentino,Manhattan,East Harlem,40.79905,-73.94453,Shared room,75,1,1,2019-05-18,0.58,4,365 +34625721,Beautiful Bright Room in Brooklyn,261226696,Pelin,Brooklyn,Bedford-Stuyvesant,40.67939,-73.94187,Private room,62,1,5,2019-05-29,2.73,1,66 +34625967,BROOKLYN GROUP ROOM,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93805,Private room,100,2,6,2019-06-09,3.60,3,365 +34626069,Beautiful studio next to Manhattan NY!,247335568,Evelyn,Queens,Long Island City,40.74923,-73.94847,Entire home/apt,150,3,2,2019-06-24,2,7,34 +34626927,1976 Chris Craft “Hudson”,14564591,Gina,Queens,Arverne,40.59495,-73.78869,Entire home/apt,130,1,5,2019-07-07,5,1,350 +34628898,Modern 4 Bedroom & 2 Bath! EZ Access to Manhattan!,261256418,Noah,Queens,Glendale,40.70603,-73.89562,Entire home/apt,299,3,6,2019-06-18,3.60,1,155 +34629490,Studio step away from Time square/53D,48146336,Irina,Manhattan,Hell's Kitchen,40.76283,-73.99168,Entire home/apt,130,30,0,,,20,310 +34629692,Lower East Side Gem,778213,Jessica,Manhattan,Lower East Side,40.71761,-73.98233,Entire home/apt,250,2,0,,,1,107 +34629887,"Sunlight filled, large one-bedroom, apartment.",52347236,Alex,Bronx,Bronxdale,40.85374,-73.86416,Entire home/apt,70,1,8,2019-06-29,4.62,1,96 +34638258,Cozy Private Apartment in Historic Harlem,261306701,David,Manhattan,Harlem,40.82369,-73.94018,Entire home/apt,92,31,0,,,1,342 +34638990,Private furnished room with skylight,236073353,Jennifer,Brooklyn,Clinton Hill,40.68587,-73.96434,Private room,60,1,1,2019-07-05,1,1,97 +34639878,Charming room in Fort Greene prewar apt. building.,3997038,Zankhana,Brooklyn,Fort Greene,40.68736,-73.97639,Private room,100,1,7,2019-06-30,3.96,1,45 +34640201,Awsome room with private door to the deck!,4297106,Franck And Joshua,Brooklyn,Bushwick,40.6924,-73.91448,Private room,44,31,0,,,2,365 +34640995,Far West Village loft,792823,Andrew,Manhattan,West Village,40.73437,-74.00739,Entire home/apt,175,30,0,,,1,0 +34641120,TIME SQUARE 2 bedroom apartment,8033432,Tom,Manhattan,Hell's Kitchen,40.75893,-73.99,Entire home/apt,350,3,0,,,4,0 +34641992,Sunny and Luxurious Penthouse Loft in West Harlem,23407300,Clara,Manhattan,Harlem,40.80553,-73.94928,Entire home/apt,290,1,2,2019-06-28,2,1,161 +34642119,Cozy 2 Bedroom in the East Village,4516135,Andriy,Manhattan,East Village,40.72877,-73.98848,Entire home/apt,200,1,13,2019-07-08,7.96,1,69 +34643618,Cozy Bedroom NYC,109847539,Lila,Manhattan,Roosevelt Island,40.76215,-73.95056,Private room,94,5,1,2019-07-05,1,2,61 +34643695,1B. Studio & Stay 30 minutes to Midtown Manhattan,37678939,Chantal,Bronx,Claremont Village,40.83513,-73.91093,Private room,50,2,11,2019-07-07,6.73,2,88 +34644063,Luxurious Smart Home in Gramercy Park,55560532,Maxim,Manhattan,Gramercy,40.73825,-73.98184,Entire home/apt,690,2,0,,,1,66 +34644152,Home sweet Home,152246149,Catherine,Bronx,Throgs Neck,40.83123,-73.82784,Private room,60,1,2,2019-06-24,1.71,5,180 +34644243,"Large, clean and tasteful apartment in Gramercy",10170046,Jenny-Lynne,Manhattan,Gramercy,40.73676,-73.98685,Entire home/apt,250,1,2,2019-06-30,2,1,171 +34645029,Fabolous 1bd Apartment in Upper East Side New York,259728610,Victor,Manhattan,Upper East Side,40.76762,-73.95693,Entire home/apt,210,3,3,2019-06-13,1.70,1,52 +34645293,STUNNING 4 BEDROOM DUPLEX LUXURY BUILD. ROOF & GYM,261368719,Javier,Brooklyn,Bushwick,40.70065,-73.92446,Entire home/apt,400,3,2,2019-06-22,1.71,1,308 +34645572,Reliable vacation Home,152246149,Catherine,Bronx,Throgs Neck,40.83144,-73.82791,Private room,60,1,5,2019-06-24,3.75,5,179 +34646105,STYLISH 2 BEDROOM IN LUXURY BUILDING ROOF & GYM,261376215,Carmen,Brooklyn,Bushwick,40.7007,-73.92491,Entire home/apt,300,3,3,2019-06-24,1.88,1,355 +34646217,Beautiful Duplex North of Chelsea (Penn Station),5258749,Bani,Manhattan,Chelsea,40.749,-73.99579,Entire home/apt,300,5,5,2019-06-29,3.33,2,59 +34646244,Room in 4 bed 2 bath by J train with Queen bed,10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.68296,-73.91255,Private room,36,15,1,2019-05-13,0.52,5,343 +34646398,Artsy bedroom w/garden & private bathroom .,1179779,Sandrine,Brooklyn,Bedford-Stuyvesant,40.69026,-73.93235,Private room,119,2,0,,,1,58 +34646805,MODERN AND NEWLY 4 BEDS / 2 BATHS IN LUXURY BUILD.,233879443,Kate,Brooklyn,Bushwick,40.6999,-73.92441,Entire home/apt,300,4,2,2019-06-07,1.40,1,355 +34647032,Your Dreamaker on Times Square NYC,259087876,Dennis,Manhattan,Theater District,40.75896,-73.98216,Private room,91,1,5,2019-07-01,3.49,7,63 +34647478,Cozy/quiet home amongst hippest NYC neighborhoods,6895430,Beth,Queens,Ridgewood,40.70372,-73.9067,Entire home/apt,200,2,1,2019-06-02,0.79,1,11 +34647648,Shared Apartment 1 bed in the living room Qsubway,172369331,Abby,Brooklyn,Sheepshead Bay,40.59932,-73.95936,Shared room,20,7,0,,,10,281 +34647727,Your Haven on Times Square in NYC,259087876,Dennis,Manhattan,Midtown,40.7573,-73.98043,Private room,150,1,8,2019-07-01,4.62,7,52 +34648133,"Awesome, Large, Sunny +Three Bedroom House!!!",758655,Allison,Brooklyn,Bedford-Stuyvesant,40.67759,-73.91856,Entire home/apt,350,3,3,2019-06-28,2.00,1,22 +34648330,2br Apartment 30min from Manhattan,260874869,Rute,Queens,Ridgewood,40.70239,-73.90381,Entire home/apt,87,20,0,,,1,75 +34648504,Sweet Sunshine,20851517,Maggie,Manhattan,Hell's Kitchen,40.76767,-73.98914,Private room,98,3,0,,,3,7 +34649031,"Leafy, Quiet One Bedroom, W. Village",214187963,Amanda,Manhattan,West Village,40.7317,-74.00395,Entire home/apt,150,30,1,2019-06-30,1,2,103 +34649628,Super private room and bath with private entrance,40632179,Valentina,Manhattan,Harlem,40.8303,-73.9407,Private room,60,1,0,,,3,278 +34649950,"Neat, luxury apartment bedroom for rent!",46344957,Siyi,Manhattan,Midtown,40.74798,-73.98751,Private room,86,7,0,,,1,0 +34650619,A HOME GROWS AND AWAIT'S YOU IN BROOKLYN,261412334,Spice,Brooklyn,Canarsie,40.62886,-73.89225,Entire home/apt,240,1,2,2019-06-22,2,1,154 +34650667,Unique Home Besides Times Square!! NYC!!!,261375719,Vivian,Manhattan,Hell's Kitchen,40.76383,-73.98704,Entire home/apt,255,3,2,2019-06-03,1.40,1,188 +34650966,PARK VIEW ROOM W DOUBLE CLOSET,1190978,Linden & Bah,Manhattan,Harlem,40.82414,-73.95393,Private room,40,30,0,,,2,322 +34651712,"Artsy 1BR loft style in East Village (IT, PT, EN)",4264648,Andy,Manhattan,East Village,40.72472,-73.98251,Entire home/apt,180,5,3,2019-06-02,1.58,1,19 +34651745,Beautiful private room 20-25 min from Times Square,40632179,Valentina,Manhattan,Harlem,40.8285,-73.94219,Private room,55,1,2,2019-06-28,2,3,325 +34651960,BIG ROOM GREAT LOCATION,255618027,Cc,Brooklyn,Bushwick,40.70312,-73.92071,Private room,75,2,4,2019-06-29,2.35,1,76 +34652342,Beautiful Room in Manhattan,40632179,Valentina,Manhattan,Harlem,40.82978,-73.94022,Private room,60,1,1,2019-05-16,0.56,3,268 +34652720,Adorable cozy apartment near access to all #3,175116422,Karilyn,Staten Island,Grant City,40.57825,-74.10902,Entire home/apt,75,3,0,,,3,318 +34652761,Entire 1 Bedroom Apartment with Rooftop Access,37426897,Rosie,Brooklyn,Clinton Hill,40.69474,-73.96655,Entire home/apt,100,1,6,2019-06-24,4.19,1,80 +34653238,Bedroom with a Backyard,4027507,Bubby,Brooklyn,Clinton Hill,40.68661,-73.96717,Private room,70,3,1,2019-06-01,0.77,1,4 +34653507,Perfect Manhattan apartment,72977337,Sara,Manhattan,Gramercy,40.73624,-73.97966,Entire home/apt,250,4,0,,,1,4 +34653572,Bright room in newly renovated duplex apartment,3042136,Jenni,Brooklyn,Red Hook,40.67634,-74.01009,Private room,99,2,1,2019-06-30,1,3,8 +34653695,"Cozy, renovated Upper East Side apartment",5120563,Cristina,Manhattan,Upper East Side,40.76436,-73.95669,Entire home/apt,210,2,2,2019-07-05,1.62,1,138 +34654078,Nice room,261448151,Bilhal,Bronx,Longwood,40.82285,-73.90198,Private room,55,2,5,2019-06-28,3.33,1,351 +34654811,"JUST 4.5 MILES FROM MANHATTAN, NEAR THE TRAIN",132786535,Carlos,Queens,Middle Village,40.7125,-73.87703,Entire home/apt,169,2,4,2019-06-15,2.79,2,155 +34655267,"NEW-Amazing 1 Bed. Apt., 10 Mins. to Manhattan!",78733280,Randy,Queens,Woodside,40.74661,-73.90301,Entire home/apt,89,30,0,,,1,333 +34656064,Cozy Storefront Loft (with shag rug),121083075,Sampson,Queens,Maspeth,40.7154,-73.91148,Shared room,40,1,5,2019-07-06,2.68,1,89 +34656150,Private Room in prime Brooklyn,96379433,Satish,Brooklyn,Sunset Park,40.66064,-73.99888,Private room,40,1,4,2019-05-20,2.14,2,250 +34656363,Loft-style Designer Studio,9914596,Oren,Manhattan,Upper West Side,40.78673,-73.97304,Entire home/apt,130,30,0,,,1,280 +34658339,Beautiful apartment on UWS for couple or single!,34331,Eveline,Manhattan,Upper West Side,40.79056,-73.97306,Entire home/apt,150,30,0,,,1,36 +34659522,Private area for comfortable and pleasant stay.,204928236,Anup,Bronx,Parkchester,40.83717,-73.85738,Shared room,36,1,0,,,1,71 +34659944,Five-star luxury Apt in Chelsea !,152747338,Paola,Manhattan,Chelsea,40.74674,-74.00316,Entire home/apt,333,1,4,2019-06-30,2.35,1,365 +34664546,private room w/ separate entrance in quiet area,4259761,Kiwa,Queens,Flushing,40.77257,-73.80125,Private room,45,30,0,,,1,326 +34665010,Entire Newly Renovated 2 Bedroom Private Home,52577963,Mark,Queens,Woodhaven,40.69101,-73.8486,Entire home/apt,199,5,2,2019-06-29,1.20,6,338 +34665824,New York sleeping share Couchsurfer & Backpacking,38483415,Florentino,Manhattan,East Harlem,40.79952,-73.94592,Shared room,75,1,0,,,4,365 +34666999,Charming studio steps from Brooklyn Bridge!,21263506,Vikki,Brooklyn,Vinegar Hill,40.70358,-73.98316,Entire home/apt,200,2,0,,,1,1 +34668348,Huge 1 Bedroom in LES,106538072,Erin,Manhattan,Lower East Side,40.71713,-73.98541,Entire home/apt,200,2,3,2019-06-30,2.05,1,13 +34670157,B-COZY ROOM DORM STYLE 1 GIRL NEEDED TO SHARE NICE,213208277,Darry,Brooklyn,Borough Park,40.6431,-73.99175,Shared room,30,5,0,,,8,365 +34670295,Mini mansion,257320771,Ramie,Brooklyn,Bay Ridge,40.62094,-74.02422,Entire home/apt,100,1,8,2019-07-02,4.44,1,329 +34670423,Newly Renovated Modern Home,259426283,Keymi,Manhattan,Inwood,40.86284,-73.92704,Private room,60,1,2,2019-05-28,1.18,1,326 +34670547,J- COZY ROOM FOR 1 FEMALE FREE WIFI & COFFEE,213208277,Darry,Queens,South Ozone Park,40.67332,-73.79682,Shared room,30,5,1,2019-06-09,1,8,365 +34670672,Beach Front Escape - Rockaway Surf Beach!,8893700,John,Queens,Arverne,40.58817,-73.79513,Entire home/apt,275,2,0,,,2,69 +34671704,"Modern and fun 2 bdrm in Williamsburg, Brooklyn",95015886,Gali,Brooklyn,Williamsburg,40.71373,-73.96743,Entire home/apt,275,2,0,,,1,16 +34672846,Lux Apt in Heart of Downtown *GREAT LOCATION,252836607,Alexis,Manhattan,Financial District,40.70757,-74.00788,Entire home/apt,255,2,2,2019-06-22,1.36,1,12 +34673353,30day min High flr apt in the center of Manhattan,261560877,Edit,Manhattan,Theater District,40.76103,-73.97996,Entire home/apt,250,25,0,,,1,261 +34673695,Home SWEET Home for a day or 2,261563626,Jacqueline,Queens,St. Albans,40.68993,-73.75695,Private room,50,1,23,2019-07-08,12.11,1,356 +34673706,Wonderful Williamsburg,253843480,Yus,Brooklyn,Williamsburg,40.71801,-73.95244,Private room,43,1,2,2019-06-01,1.09,1,249 +34674199,"Bright, sunny, home in Clinton Hill w/amazing roof",5441056,Elissa,Brooklyn,Bedford-Stuyvesant,40.68746,-73.9576,Private room,85,2,4,2019-07-03,2.31,1,67 +34675072,Bright and beautiful One bedroom apt in Soho.,261559275,Deb,Manhattan,SoHo,40.72646,-74.00213,Entire home/apt,250,2,1,2019-05-14,0.54,1,173 +34675093,Pann Station \ Javits Center Apartment,3736053,Nyelli,Manhattan,Chelsea,40.7545,-73.99954,Entire home/apt,100,2,2,2019-06-14,1.67,1,32 +34676486,Luxury Manhattan Suite & uninterrupted views,261581535,Alex,Manhattan,Hell's Kitchen,40.76465,-73.98812,Entire home/apt,449,1,6,2019-07-04,3.21,1,346 +34677950,Brooklyn brownstone 1st floor studio apt.,258006547,Eli,Brooklyn,Bedford-Stuyvesant,40.6845,-73.92454,Entire home/apt,150,2,1,2019-07-07,1,1,22 +34677972,Kings Highway Cozy House,167043905,DeAnn,Brooklyn,Flatlands,40.62281,-73.93446,Private room,200,1,3,2019-06-02,2.05,1,87 +34678207,"Live on Ludlow. Renovated, comfortable apartment",25189614,Liliana,Manhattan,Lower East Side,40.72162,-73.98732,Entire home/apt,350,29,0,,,1,269 +34678628,Stay Near the Williamsburg Bridge!,261597311,Emiliano,Brooklyn,Williamsburg,40.71145,-73.96749,Entire home/apt,500,3,3,2019-06-23,2.25,1,347 +34678758,"Spacious Studio in the East Village, NYC",261589968,Carmen,Manhattan,East Village,40.72757,-73.98336,Entire home/apt,150,31,0,,,1,365 +34678944,"Cozy room at Downtown Manhattan, Chinatown, Soho",250825715,Cherry,Manhattan,Chinatown,40.7176,-73.99728,Private room,85,1,3,2019-06-09,2.73,3,55 +34679559,Stunning Luxury Apartment,261605025,Shlomi,Queens,Kew Gardens Hills,40.72617,-73.81178,Entire home/apt,110,2,0,,,1,76 +34679833,Beautiful Brownstone apt in Crown Heights Brooklyn,128452734,Paul,Brooklyn,Crown Heights,40.67759,-73.94991,Entire home/apt,120,2,1,2019-06-29,1,1,14 +34679993,Garden + Sunroom Townhouse Near Central Park!,258066921,Nathalie + Nick,Manhattan,Upper East Side,40.762,-73.9634,Entire home/apt,300,3,4,2019-06-21,2.61,1,258 +34680877,Cozy bedroom in a spacious apt with a backyard,55026020,Jelena,Brooklyn,Gowanus,40.66694,-73.99405,Private room,50,15,0,,,1,0 +34680900,Massive 3 BR/2 BR + Dinning Room Prime Manhattan,146001596,Joel,Manhattan,Midtown,40.75706,-73.96679,Entire home/apt,585,30,1,2019-05-14,0.54,1,139 +34681035,Renovated with your own bathroom next to Columbia!,25182524,Paola,Manhattan,Harlem,40.80672,-73.95712,Private room,73,1,4,2019-07-04,4,2,24 +34681488,"Private area Smoking/non smoking, great area",261604139,Brandi,Bronx,Williamsbridge,40.87874,-73.84746,Private room,40,1,0,,,1,89 +34681597,One Bedroom 12/3 & 12/4 -Rockefeller Tree Lighting,45733814,Lisa,Manhattan,Midtown,40.76387,-73.9809,Private room,150,2,0,,,1,0 +34681778,Huge Morden Ultra Luxurious Loft,220762164,Sherley,Brooklyn,Bushwick,40.68952,-73.90919,Entire home/apt,349,2,1,2019-05-19,0.58,4,365 +34683256,Sunny bedroom in Chinatown !,33758870,Janko,Manhattan,Two Bridges,40.71098,-73.99426,Private room,80,1,9,2019-07-08,5.51,1,42 +34683938,Luxury 1 bedroom w/ Comfy Casper Mattress,261632991,Sideem,Queens,Astoria,40.76832,-73.93576,Entire home/apt,84,1,0,,,1,90 +34684535,The Penthouse on Tompkin Sq Park,22336945,Andrew,Manhattan,East Village,40.72545,-73.98212,Entire home/apt,200,2,1,2019-06-09,1,1,0 +34684755,Easy Breezy Beautiful Crown Heights One Bedroom,261427783,Meeks,Brooklyn,Crown Heights,40.67385,-73.94639,Private room,85,1,15,2019-07-06,11.84,1,81 +34684980,Sonder | 116 John | Cozy Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.00559,Entire home/apt,100,29,0,,,327,332 +34685343,Clean and comfortable private room,16597509,Sally,Brooklyn,Greenpoint,40.72566,-73.93972,Private room,55,7,1,2019-06-01,0.79,1,28 +34685997,Romantic Brand New Oceanfront Studio in Arverne,261647593,Kosta,Queens,Arverne,40.58927,-73.79514,Private room,100,2,10,2019-07-04,6.82,1,67 +34686108,Modern Upperwest Side Condo,259952789,David,Manhattan,Harlem,40.80317,-73.95559,Entire home/apt,350,1,2,2019-07-06,1.22,1,85 +34686293,"Inviting , Cozy and Clean and room like home.",131234868,Salome,Manhattan,Washington Heights,40.85658,-73.93021,Private room,125,3,1,2019-07-03,1,1,81 +34686619,Quiet Private Room near Subway,261654878,Kathryn,Brooklyn,Bensonhurst,40.61753,-74.00221,Private room,35,3,4,2019-06-27,3.16,1,18 +34686718,Clean and Sunny room in Astoria,248555214,Michelle,Queens,Astoria,40.76417,-73.92898,Private room,75,2,4,2019-06-22,4,2,8 +34687035,Hotel-like Small PrivateRoom Single Bed 25 Min NYC,48684597,David,Queens,Maspeth,40.73759,-73.89704,Private room,35,1,8,2019-07-01,4.44,4,234 +34687140,Bensonhurst,261651359,Suraye,Brooklyn,Bensonhurst,40.60475,-73.99213,Private room,60,3,0,,,1,178 +34687192,Sanctuary Studio in Long Island City,183818356,Sylvia,Queens,Astoria,40.75722,-73.92716,Entire home/apt,83,2,1,2019-06-04,0.86,1,16 +34687393,Cozy bedroom in the hearth of NYC!,43359332,Veronica,Manhattan,Midtown,40.74493,-73.98484,Private room,130,5,2,2019-07-05,2,1,74 +34688096,BEAUTIFUL 4BEDS / 2 BATHS - ROOF & GYM,261669663,Brenda,Brooklyn,Bushwick,40.69854,-73.92642,Entire home/apt,275,3,7,2019-07-05,4.04,1,339 +34688471,Sleep comfort,156505456,John,Brooklyn,East New York,40.66646,-73.8734,Private room,54,3,1,2019-05-20,0.59,13,365 +34688735,步行9分钟到缅街中心的独立电梯房,151810361,Jungyen,Queens,Flushing,40.76402,-73.81976,Private room,99,1,2,2019-06-24,2,6,90 +34688764,COZY APARTMENT IN LUXURY BUILDING,261675838,Jordan,Brooklyn,Bushwick,40.69847,-73.92478,Entire home/apt,225,3,7,2019-06-29,4.38,1,359 +34690202,Simple,231858639,Sterling,Brooklyn,Prospect-Lefferts Gardens,40.65973,-73.96102,Entire home/apt,120,5,0,,,1,325 +34690725,"15分钟到纽约城市广场,下楼即是地铁站",83680039,Evelyn,Queens,Long Island City,40.74771,-73.93684,Private room,86,8,0,,,1,6 +34692728,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76364,-73.82292,Private room,59,1,9,2019-07-07,4.82,6,362 +34698543,Harlem Roots Chic Apt,261728099,Jade,Manhattan,Harlem,40.82639,-73.93894,Entire home/apt,75,28,0,,,1,41 +34702046,No.3,257683179,H Ai,Queens,Flushing,40.75019,-73.81435,Private room,45,1,1,2019-07-06,1,6,83 +34702516,Confortable studio,253304582,Iris,Queens,Corona,40.73844,-73.86302,Entire home/apt,90,4,1,2019-06-12,1,2,50 +34704536,Large Family Room/ parking available,252646618,Michael,Queens,Astoria,40.76425,-73.90981,Private room,110,1,0,,,2,310 +34705150,Bright & Modern Brooklyn Apartment,57399783,Desiree,Brooklyn,Crown Heights,40.67693,-73.9369,Entire home/apt,100,3,2,2019-05-29,1.18,1,0 +34705589,Washington Square Park Studio,13352650,Anthony,Manhattan,Greenwich Village,40.72904,-74.00119,Entire home/apt,250,1,0,,,1,111 +34705719,Huge Bedroom w/bathroom next to Columbia U!,25182524,Paola,Manhattan,Harlem,40.80641,-73.95518,Private room,80,1,1,2019-06-01,0.79,2,194 +34706349,Clean and Bright Classic Manhattan!,10032016,Eliana,Manhattan,Morningside Heights,40.80977,-73.95813,Entire home/apt,250,15,1,2019-06-05,0.88,1,34 +34706620,Trendy open concept Williamsburg loft apartment,261768544,Kori,Brooklyn,Williamsburg,40.71125,-73.96116,Entire home/apt,300,2,5,2019-07-01,2.94,1,57 +34706742,Cozy bedroom in East Village apt!,14253187,Gabi,Manhattan,Gramercy,40.73283,-73.98228,Private room,65,1,4,2019-06-08,2.35,1,104 +34707625,Dikeman comfort is a very special Airbnb !!!!,261779182,Torrey,Brooklyn,Red Hook,40.67522,-74.01139,Shared room,38,1,1,2019-06-26,1,2,179 +34708585,Spacious Greenpoint Loft,5665583,Sergio,Brooklyn,Greenpoint,40.73308,-73.95704,Entire home/apt,150,3,0,,,1,0 +34708657,Duplex 4 bed apt fantastic place for 10,261779847,Ben,Manhattan,East Harlem,40.79803,-73.94185,Entire home/apt,350,3,8,2019-06-30,5.11,1,231 +34708692,One Bedroom Williamsburg Apartment,2513252,Stephanie,Brooklyn,Williamsburg,40.7099,-73.9649,Entire home/apt,250,3,1,2019-06-10,1,1,2 +34709658,Hudson Yards 2 bedrooms apartment- 4-5 ppl,240099532,Luiggi,Manhattan,Hell's Kitchen,40.75445,-73.99707,Entire home/apt,269,2,8,2019-06-26,5.45,1,252 +34710643,Digital Nomad Artist Studio (Cat Lovers Only),8207362,Karina,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93897,Private room,85,2,1,2019-05-18,0.57,2,54 +34710645,Furnished Room available in New Building with AC,82187372,David,Brooklyn,Williamsburg,40.71469,-73.95401,Private room,250,10,0,,,1,78 +34710747,BRIGHT ROOMY studio in the heart of East Village!,121767590,Samantha,Manhattan,East Village,40.72861,-73.98252,Entire home/apt,315,2,0,,,1,55 +34711204,Spacious Deluxe Accommodation in the heart of NYC!,260193759,Nyma,Manhattan,Midtown,40.74822,-73.98555,Private room,100,1,0,,,5,274 +34711249,Sonder | 116 John | Dashing 1 BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70679,-74.00689,Entire home/apt,130,29,0,,,327,332 +34711272,Double bed in living room - heart of Manhattan,261802105,Michael,Manhattan,East Village,40.72486,-73.98121,Shared room,70,1,4,2019-06-25,4,1,55 +34711540,SOHO Industrial Chic Apartment with balcony,248335189,Patrick,Manhattan,Little Italy,40.7203,-73.99679,Entire home/apt,139,3,2,2019-07-01,2,1,10 +34711823,COZY PRIVATE STUDIO WITH GARDEN CLOSE TO MANHATTAN,71668793,Stacey & Patrice,Brooklyn,Crown Heights,40.67379,-73.95726,Entire home/apt,149,3,7,2019-07-04,4.20,1,299 +34714078,Sonder | 116 John | Vibrant Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70826,-74.00475,Entire home/apt,110,29,0,,,327,343 +34714207,"sunny quiet apartment, right next to subway",2468616,Arika,Brooklyn,Crown Heights,40.66873,-73.95243,Entire home/apt,120,2,0,,,2,311 +34714231,Exclusive Modern Deluxe Room in the heart of NYC!,260193759,Nyma,Manhattan,Midtown,40.74674,-73.98735,Private room,100,1,3,2019-07-01,3,5,269 +34714305,Sonder | 116 John | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70863,-74.00541,Entire home/apt,110,29,0,,,327,357 +34714579,Private bedroom with private bathroom in Brooklyn,57189210,Fernanda,Brooklyn,Crown Heights,40.67493,-73.94828,Private room,90,3,1,2019-06-11,1,1,56 +34715542,Bay Ridge private house,257034143,Sophia,Brooklyn,Bay Ridge,40.62987,-74.02655,Entire home/apt,200,2,1,2019-07-07,1,2,179 +34715931,Mott Haven Dorm AA,30509656,Orit,Bronx,Port Morris,40.80852,-73.9306,Shared room,28,1,5,2019-06-17,2.94,8,60 +34716310,Charming Artists Apartment near Central Park UES,79653673,Ben,Manhattan,Upper East Side,40.7768,-73.95166,Entire home/apt,125,7,0,,,1,24 +34716458,Art-Gallery Penthouse: 3BD Home in Midtown East,261852969,Yves,Manhattan,Midtown,40.75613,-73.96904,Entire home/apt,499,5,5,2019-06-17,3.19,1,189 +34716516,BIG SUNNY PRIVATE ROOM in BOHEMIAN WILLIAMSBURG,246680134,Anastasiia,Brooklyn,Williamsburg,40.71872,-73.95949,Private room,92,1,6,2019-07-01,3.40,2,16 +34717211,Mott Haven Dorm BB,30509656,Orit,Bronx,Port Morris,40.80869,-73.9317,Shared room,28,1,1,2019-05-25,0.67,8,73 +34717395,Cozy room in Elmhurst,261857310,Carlos,Queens,Elmhurst,40.74545,-73.86927,Private room,59,1,1,2019-05-26,0.68,1,24 +34717733,TheGreystone,239661123,Shantell,Queens,Queens Village,40.72774,-73.73462,Entire home/apt,99,1,6,2019-07-07,4.86,1,15 +34718010,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room2,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67755,-73.91598,Private room,39,30,0,,,5,221 +34718143,Charming & Cozy Bedroom in Manhattan,19638778,Synclaire,Manhattan,Inwood,40.86592,-73.9217,Private room,100,2,0,,,1,89 +34718342,★Pvt Room in 4BR House ★ Backyard ★Laundry ★Room 3,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91474,Private room,43,30,0,,,5,221 +34718463,Mott Haven Dorm DD,30509656,Orit,Bronx,Port Morris,40.80996,-73.93172,Shared room,28,1,2,2019-05-21,1.15,8,365 +34718504,Luxury Private Bedroom + Private Bathroom,6674394,Eri,Manhattan,Upper West Side,40.79419,-73.9735,Private room,180,2,1,2019-06-25,1,1,342 +34718633,Mott Haven Dorm CC,30509656,Orit,Bronx,Port Morris,40.80838,-73.93091,Shared room,28,1,3,2019-06-03,1.70,8,363 +34719445,Beautiful Maison In the Heart of MANHATTAN,221213143,David,Manhattan,Kips Bay,40.74125,-73.98297,Entire home/apt,460,1,2,2019-07-03,1.33,9,287 +34719841,Bohemian Artist in Ridgewood,2432475,Douglas,Queens,Ridgewood,40.7063,-73.89884,Private room,50,1,2,2019-07-07,2,1,35 +34721719,Chez vous en famille,261891944,Rosine,Bronx,Fordham,40.85368,-73.90172,Private room,75,1,1,2019-06-17,1,1,363 +34721879,prime central park location - 2 mins to subway,261894786,Ariana,Manhattan,East Harlem,40.79247,-73.94892,Entire home/apt,109,1,8,2019-06-28,5.11,1,233 +34721935,哥伦比亚大学附近步行3分钟高档公寓主卧暑期降价转租,261895213,Ing,Manhattan,Morningside Heights,40.80902,-73.96716,Private room,65,3,1,2019-06-22,1,1,188 +34722659,NEW! Chic Designer Vanilla,259468466,Jack,Manhattan,Lower East Side,40.71461,-73.98755,Private room,89,4,4,2019-07-07,2.86,2,182 +34723111,Modern 3 Bedroom! Easy Access to Manhattan!,261904019,Pete,Queens,Ridgewood,40.70631,-73.89698,Entire home/apt,199,3,5,2019-07-01,3.13,1,145 +34723124,little sweet room(4),255641440,Li,Queens,Flushing,40.76134,-73.80776,Private room,42,1,1,2019-05-18,0.57,7,331 +34723211,"Quiet, luxury 1BR--15minutes to Manhattan!",12898160,Sapna,Bronx,Riverdale,40.88523,-73.91231,Entire home/apt,90,30,0,,,1,55 +34723946,Suit3,257683179,H Ai,Queens,Flushing,40.76296,-73.80724,Private room,42,1,7,2019-06-21,5.00,6,207 +34727487,Prime Williamsburg,9761047,Anika,Brooklyn,Williamsburg,40.71527,-73.96037,Private room,65,3,2,2019-05-25,1.22,3,0 +34737337,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76187,-73.82169,Private room,69,1,9,2019-06-28,4.91,6,365 +34737386,Great Duplex in Gramercy (private bedroom + bath),15690228,Nicolas,Manhattan,Gramercy,40.73676,-73.9842,Private room,1900,7,0,,,1,332 +34737998,Beautiful Studio Steps from Subway (ORANGE),29582232,Lee And Teri,Brooklyn,Flatbush,40.64163,-73.9655,Entire home/apt,85,3,0,,,5,125 +34738463,Private Group Studio Apartment,4852748,Michelle,Manhattan,Morningside Heights,40.81304,-73.96131,Entire home/apt,195,2,1,2019-06-09,1,6,358 +34741362,M's Place,260639656,Medina,Queens,Long Island City,40.74775,-73.94747,Entire home/apt,320,2,5,2019-07-05,5,1,54 +34741536,2 Mins Walking Distance to Empire State Building!,260193759,Nyma,Manhattan,Midtown,40.74829,-73.98715,Private room,100,1,12,2019-06-16,7.66,5,287 +34741742,Enjoy the view of Empire State Building!,260193759,Nyma,Manhattan,Midtown,40.74677,-73.9866,Private room,100,1,13,2019-07-04,11.14,5,268 +34741897,"A+ 700 sqft. 1BR! Walk to Col. Cir., Central Park",3236741,Eric,Manhattan,Hell's Kitchen,40.77111,-73.99128,Entire home/apt,172,2,5,2019-06-25,3.19,1,4 +34741976,Charming Studio in Meatpacking District/Chelsea,262011998,Elizabeth,Manhattan,West Village,40.74024,-74.00484,Entire home/apt,220,2,3,2019-06-23,3,1,58 +34741981,Ins Style Duplex Apt bedroom w/ private bathroom,20474743,Yahan,Queens,Flushing,40.76274,-73.82089,Private room,55,1,9,2019-07-06,6.43,1,59 +34742133,Sun-drenched 2BR Oasis in Williamsburg/Greenpoint,1709876,Michael & Olivier,Brooklyn,Greenpoint,40.72128,-73.94663,Entire home/apt,185,4,0,,,1,176 +34742586,Bright and Sunny Urban Getaway,85521952,Gregory,Manhattan,Inwood,40.86858,-73.92042,Entire home/apt,200,2,1,2019-06-30,1,1,234 +34742861,Beautiful Studio Steps from Subway (GREEN),29582232,Lee And Teri,Brooklyn,Flatbush,40.64017,-73.96417,Entire home/apt,85,3,3,2019-06-29,3,5,86 +34743257,"Quiet, Warm Room 47 Buffalo 1F Room#3",260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67792,-73.92347,Private room,50,2,6,2019-07-02,3.91,2,83 +34743365,Modern and new Duplex next to A train,26319385,Ariadna,Brooklyn,Bedford-Stuyvesant,40.67982,-73.94978,Entire home/apt,175,4,0,,,1,17 +34743695,Spacious 2 br Apartment with Home Office,5993014,Jazmín,Brooklyn,Crown Heights,40.67266,-73.95856,Entire home/apt,75,15,0,,,1,6 +34743708,New Studio on Historic Street,220762164,Sherley,Brooklyn,Bushwick,40.68937,-73.90903,Private room,95,2,1,2019-05-27,0.68,4,354 +34744587,"HARLEM: Renovated, Cozy. 15min train to Times Sq",260599513,Lewis,Manhattan,Harlem,40.81151,-73.94159,Private room,57,2,1,2019-07-05,1,1,34 +34744834,Brooklyns own by nyc 2nd biggest: prospect park,90695775,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.65556,-73.95674,Entire home/apt,120,2,6,2019-07-01,4.09,1,152 +34745490,Cozy one bedroom apartment with modern touch!,262035496,Omwattie,Brooklyn,East Flatbush,40.65472,-73.93683,Entire home/apt,115,2,7,2019-06-18,5.83,1,123 +34745979,Sun-drenched Brooklyn town home large 3 bedroom,9450360,Rick,Brooklyn,Crown Heights,40.67772,-73.95564,Entire home/apt,278,2,7,2019-07-06,4.12,1,328 +34745985,Spacious Park Slope Apartment,183817011,Yasmeen,Brooklyn,Sunset Park,40.66138,-73.99632,Entire home/apt,190,3,3,2019-06-01,1.80,1,365 +34746555,The Little Italian Manor,139871943,Patrick,Manhattan,Little Italy,40.71889,-73.99716,Private room,100,30,0,,,3,327 +34748562,Prospect Park gem! Charming & chic 2 bedroom apt!,52562602,Talia,Brooklyn,Flatbush,40.64176,-73.9615,Entire home/apt,190,7,0,,,1,16 +34748987,Beautiful 1 Bedroom in the heart of Williamsburg,8305133,Jessica,Brooklyn,Williamsburg,40.71642,-73.96244,Entire home/apt,150,5,0,,,1,49 +34749200,Brand new in the heart of Bushwick,54736855,Britt & Greg,Brooklyn,Bushwick,40.70505,-73.91848,Entire home/apt,140,1,16,2019-07-07,11.16,1,143 +34749210,Sobro,262047205,Adriana,Bronx,Mott Haven,40.80689,-73.91437,Entire home/apt,100,3,4,2019-07-01,2.79,1,330 +34749214,Sunny days in the West Village!,17392429,Marie,Manhattan,West Village,40.73501,-74.00835,Entire home/apt,180,30,0,,,1,329 +34749431,Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69055,-73.91035,Private room,80,1,1,2019-06-02,0.79,2,314 +34750234,Central Park West private room and bathroom,51420334,Joyee,Manhattan,Upper West Side,40.78747,-73.96844,Private room,59,1,0,,,1,0 +34751113,Spacious East Village/Alphabet City Apt,58484199,Julia,Manhattan,East Village,40.72196,-73.98063,Private room,98,3,1,2019-06-11,1,1,158 +34751224,*Family Friendly* Room I Rooftop BAR I Near Macys,260193759,Nyma,Manhattan,Midtown,40.74708,-73.98513,Private room,100,1,8,2019-07-05,6.67,5,236 +34751491,Cozy private room,262079510,Karmelle,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92564,Private room,80,2,5,2019-06-20,2.88,1,83 +34752945,Comfortable Bushwick bedroom,262091506,Christian,Brooklyn,Bushwick,40.68569,-73.90857,Private room,50,3,2,2019-07-04,2,1,97 +34753028,Single room (2),255641440,Li,Queens,Flushing,40.76108,-73.80736,Private room,32,1,3,2019-05-26,1.76,7,285 +34753373,Heart of the city,262094761,Home,Manhattan,Hell's Kitchen,40.76494,-73.98983,Private room,110,2,6,2019-06-28,3.46,1,83 +34753379,Stylish Room in Swanky Bushwick Apartment,60235514,James,Brooklyn,Bushwick,40.7036,-73.92496,Private room,51,1,4,2019-06-02,2.31,1,71 +34753453,Extra room 420friendly & breakfast,218116366,Yankee,Bronx,East Morrisania,40.82831,-73.88746,Private room,80,1,3,2019-07-01,3,2,89 +34754084,Cozy One Bedroom Apartment,135710202,Christina,Brooklyn,Bedford-Stuyvesant,40.69446,-73.94694,Entire home/apt,68,1,0,,,1,255 +34754120,"Luxury 1 bedroom, 1 bathroom in Manhattan",2126399,Crystal,Manhattan,Harlem,40.80508,-73.95088,Entire home/apt,150,5,0,,,1,7 +34754241,Charming Hell’s Kitchen Studio,46588955,Emily,Manhattan,Hell's Kitchen,40.7659,-73.98764,Entire home/apt,289,2,0,,,1,8 +34755449,A friendly place to stay,57230304,Imanuelly,Queens,Elmhurst,40.73156,-73.88551,Private room,90,7,2,2019-06-30,1.58,3,337 +34755841,"Your own private, fully furnished large room.",262116941,Paul,Manhattan,East Harlem,40.7963,-73.93087,Private room,65,7,0,,,1,151 +34756040,(= RENT ME RENT ME =),262118049,Aaron,Manhattan,Chinatown,40.71384,-73.99278,Entire home/apt,212,1,1,2019-06-26,1,1,0 +34756976,Gigi’s Room,74633496,Justine,Bronx,University Heights,40.85689,-73.9091,Private room,40,5,0,,,5,362 +34757500,UN Artists Full Floor Loft - 3 Bedroom/2 Bath,101109383,Will AND Kelly,Manhattan,Midtown,40.75487,-73.96898,Entire home/apt,500,3,1,2019-06-08,1,1,257 +34759503,Sunny Private Room in Huge Manhattan Apartment,252356839,Leo,Manhattan,Harlem,40.82802,-73.94482,Private room,65,2,2,2019-07-04,1.36,2,2 +34770571,Private room in heart of crown heights,28295132,Keira,Brooklyn,Crown Heights,40.67369,-73.94931,Private room,60,3,1,2019-05-21,0.61,1,0 +34771161,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76268,-73.82252,Private room,99,1,10,2019-07-01,5.77,6,365 +34771521,Upper East Side 1Br - Near Central Park,262196496,Ulysse,Manhattan,East Harlem,40.78592,-73.94837,Private room,82,4,0,,,1,45 +34772058,"Entire home in Crown Heights, Brooklyn",30873439,Margarita,Brooklyn,Crown Heights,40.66752,-73.95466,Entire home/apt,90,2,5,2019-06-22,5,1,22 +34773215,Spacious Bedroom in Brooklyn Very Close to Subway,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68676,-73.94593,Private room,51,1,4,2019-06-23,2.86,3,0 +34773903,Great room for 2 or 3 people close to the trains,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68727,-73.94736,Private room,56,1,5,2019-06-23,3.06,3,1 +34774305,"Eclectic, Colorful, Trendy Williamsburg Studio",261584195,Ozzie,Brooklyn,Williamsburg,40.71497,-73.96433,Entire home/apt,265,2,1,2019-06-13,1,1,3 +34774436,Beautiful private bedroom in Brooklyn,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68718,-73.94797,Private room,56,1,2,2019-06-17,1.58,3,0 +34774681,Hidden gem! Private home in heart of NY village,259283179,John,Manhattan,East Village,40.7281,-73.98354,Entire home/apt,219,2,7,2019-07-01,4.20,1,316 +34776151,Bedroom + den + bath w/ sep. entry in Bed Stuy!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94844,Private room,68,1,8,2019-07-02,6.32,2,36 +34777870,Cosy 2-bedroom apartment on UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7927,-73.94033,Entire home/apt,300,3,0,,,3,17 +34777979,"The Red Brick Abode, in the heart of Williamsburg",15010925,Carlos,Brooklyn,Williamsburg,40.71317,-73.96066,Entire home/apt,160,1,13,2019-07-01,7.96,1,120 +34778518,"Cozy Studio in Manhattan, Upper East Side",262244457,Marie,Manhattan,Upper East Side,40.77064,-73.95606,Entire home/apt,250,1,7,2019-06-30,4.47,1,188 +34778953,Cozy and bright room with a spectacular view,136953596,Fabio,Brooklyn,Fort Greene,40.69491,-73.98244,Private room,125,5,1,2019-06-08,0.94,1,172 +34779259,3 Bedrooms Entire House for Rent,44539889,Lc,Queens,Middle Village,40.71685,-73.87507,Entire home/apt,199,31,0,,,1,83 +34780437,Great Private Room with 2 Beds Near Metro,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69418,-73.94409,Private room,68,2,2,2019-06-23,1.28,3,0 +34780613,Large Two Floor Apartment in Hip Bushwick Area,31239719,Daniel,Brooklyn,Bushwick,40.70433,-73.92488,Entire home/apt,120,4,0,,,1,10 +34781680,"A lovely place of Zen, sunny, clean & comfortable.",41926423,Rl,Bronx,Longwood,40.81795,-73.91178,Shared room,85,1,0,,,1,77 +34782691,Mott Haven Dorm EE,30509656,Orit,Bronx,Port Morris,40.80868,-73.93015,Shared room,28,1,3,2019-06-21,2.65,8,362 +34783461,West Village Garden Studio-,5264588,Trey,Manhattan,West Village,40.73526,-74.0002,Entire home/apt,175,2,7,2019-06-26,4.88,1,341 +34783503,Uptown Experience on Central Park,262279497,Britt,Manhattan,East Harlem,40.79614,-73.94838,Entire home/apt,123,1,5,2019-06-17,3.95,1,327 +34783887,Charming 1br in Morningside Heights,3138868,Wenfei,Manhattan,Morningside Heights,40.80535,-73.96307,Entire home/apt,140,4,1,2019-05-26,0.68,1,9 +34784469,"Premier room in Downtown NYC, Spacious and Private",250825715,Cherry,Manhattan,Chinatown,40.71716,-73.99716,Private room,90,1,1,2019-06-21,1,3,39 +34784621,Modern renovated private Apt/Washer & dryer.,35253342,Tee,Brooklyn,Bay Ridge,40.63321,-74.02463,Entire home/apt,120,21,0,,,3,67 +34784681,Brooklyn Home,262287464,Daniel,Brooklyn,Boerum Hill,40.68713,-73.98592,Private room,250,1,1,2019-05-20,0.59,1,365 +34785319,Modern elegant Studio in ❤ of West Village,11211827,Vitalika,Manhattan,West Village,40.73682,-74.00406,Entire home/apt,250,2,2,2019-07-02,2,1,98 +34785397,"Artist Room, Cozy Crown Heights",230698955,Victoria,Brooklyn,Crown Heights,40.67146,-73.93483,Private room,29,5,1,2019-05-31,0.75,2,0 +34785509,Room in 3-BR NY Apt near Central Park,74211590,Thelma,Manhattan,Harlem,40.80015,-73.95387,Private room,50,14,1,2019-05-17,0.57,1,0 +34785850,New! Modern Midtown East Sanctury,229486123,Manvi,Manhattan,Midtown,40.76066,-73.96639,Entire home/apt,479,2,4,2019-06-09,2.73,1,286 +34785861,Bohemian private space in Brooklyn's heart,2327518,Giulio,Brooklyn,Bedford-Stuyvesant,40.68511,-73.95283,Private room,75,2,7,2019-06-24,4.20,1,0 +34787483,"Shiny, comfy room, 10 minutes to Downtown Flushing",221739176,Suping,Queens,Kew Gardens Hills,40.72619,-73.82886,Private room,50,2,2,2019-06-24,1.62,1,89 +34787546,Chic One Bedroom apartment,252445373,S,Manhattan,Washington Heights,40.85798,-73.92855,Entire home/apt,85,7,0,,,1,67 +34788703,Clean comfortable room,260902999,Debera,Manhattan,Harlem,40.81737,-73.93781,Private room,150,5,0,,,1,269 +34788798,The Secret Garden,41672509,Na'ama,Manhattan,Washington Heights,40.84433,-73.93948,Private room,60,1,13,2019-06-24,7.50,1,316 +34788810,Amazing location apt in NYC part2 Women only!,22700616,Estrella Y.,Manhattan,Midtown,40.74713,-73.98489,Private room,110,3,2,2019-06-16,1.36,1,12 +34788893,A little oasis in the big city!,39831146,George And Laura,Brooklyn,Carroll Gardens,40.68026,-74.00078,Entire home/apt,225,4,0,,,1,317 +34790340,Clean Two Bedroom Apt in Lower East Side/Chinatown,1103131,Andrew,Manhattan,Lower East Side,40.71482,-73.98911,Entire home/apt,175,4,2,2019-07-04,2,2,0 +34790450,Village: Cozy Spacious Condo.,24064346,Gabriel,Manhattan,West Village,40.73458,-74.00361,Entire home/apt,500,3,11,2019-07-07,6.73,1,318 +34790625,Sublet in the upper west side,249325265,Abdulla,Manhattan,Upper West Side,40.79632,-73.969,Private room,79,1,7,2019-06-21,5.00,1,42 +34790702,Spacious 3 br/2bath balcony views in heart of NYC,170464089,Allison,Manhattan,Murray Hill,40.7458,-73.97744,Entire home/apt,490,2,4,2019-07-01,3.33,1,248 +34791292,"NY Oasis With Patio. Near Park, Dining & More!",4924477,Adelaida,Manhattan,East Village,40.726,-73.97861,Private room,94,5,5,2019-06-30,5,1,47 +34791422,"2 bedrooms-Apartment @ Brooklyn, Near D Subway",258118351,Artie,Brooklyn,Borough Park,40.63896,-73.99689,Entire home/apt,140,9,1,2019-07-06,1,2,73 +34791645,Mott Haven Dorm FF,30509656,Orit,Bronx,Port Morris,40.80858,-73.93164,Shared room,28,1,10,2019-06-23,6.82,8,351 +34791952,Master Suite in Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69056,-73.91185,Private room,80,1,1,2019-05-27,0.68,2,74 +34792347,Cozy Private Room in Prime Location,233755743,Jany,Queens,Elmhurst,40.73291,-73.87561,Private room,40,2,2,2019-06-08,1.82,2,346 +34793874,Upper East Side! Studio Near Museum Mile!,256718270,Tara,Manhattan,Upper East Side,40.77932,-73.95343,Entire home/apt,109,30,2,2019-06-01,1.43,1,197 +34796261,Shared room in Hell's Kitchen near Times Square 1,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76403,-73.98913,Shared room,75,1,7,2019-06-30,4.04,6,363 +34801106,Private Lrg bedroom shared aprtmnt 12mins from NYC,217484432,Dion,Queens,Ditmars Steinway,40.7754,-73.90787,Private room,115,1,2,2019-05-19,1.15,2,304 +34801761,Bushwick Brand new 3 bed 3 baths,49130598,Joanne,Brooklyn,Bushwick,40.69718,-73.92843,Entire home/apt,328,2,3,2019-06-27,2.81,1,19 +34803200,"Home away from home, cozy and amenable.",23819362,Rene,Brooklyn,Canarsie,40.63993,-73.902,Entire home/apt,114,4,4,2019-06-23,2.79,1,284 +34803347,Yu,197052947,Yu,Manhattan,Roosevelt Island,40.76417,-73.94865,Shared room,55,7,0,,,1,38 +34804749,Cozy East Village Studio - Backyard Space,81351940,Rick,Manhattan,East Village,40.72387,-73.97845,Entire home/apt,166,2,4,2019-06-30,2.79,1,75 +34804794,Central park North Two Bedroom,181287271,Nina,Manhattan,Harlem,40.79966,-73.9539,Entire home/apt,325,3,14,2019-07-05,8.24,1,126 +34805393,Stylish 2 bedrooms Downtown Manhattan Chinatown,14156628,Bruno,Manhattan,Lower East Side,40.71255,-73.99147,Entire home/apt,200,2,4,2019-07-01,4,1,233 +34805487,Hostal Home - Welcome Home,261854722,Jasmina,Queens,Jamaica,40.70091,-73.81359,Private room,80,1,5,2019-06-23,3.00,1,54 +34805654,BEST LOCATION IN MANHATTAN!! COZY ONE BEDROOM!!,91437526,Israel,Manhattan,Hell's Kitchen,40.75435,-73.99801,Entire home/apt,499,3,6,2019-07-05,4.86,1,176 +34806115,AMAZING 2 BEDROOMS IN HEART OF CHELSEA!!!,148374046,Isra,Manhattan,Chelsea,40.74437,-74.00007,Entire home/apt,499,3,5,2019-06-25,4.05,1,199 +34806449,Designer New Apartment in Nomad / Flatiron,43226402,Eugene,Manhattan,Midtown,40.74305,-73.98368,Entire home/apt,250,30,0,,,1,95 +34808422,Vibrant Spacious Artist Friendly Apt in Brooklyn!,7952814,Imani,Brooklyn,Bedford-Stuyvesant,40.69064,-73.95664,Entire home/apt,100,1,3,2019-06-23,2.65,1,43 +34809450,Fantastic Apartment in Greenpoint,2157562,Athena,Brooklyn,Greenpoint,40.72235,-73.94533,Entire home/apt,120,3,4,2019-06-22,3.33,1,181 +34809791,Bright Private room in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63649,-74.01247,Private room,58,1,0,,,4,264 +34809828,Cuarto con ambiente Familiar solo adultos,262436389,Edmea Valeria,Queens,Maspeth,40.73453,-73.89477,Private room,50,1,4,2019-07-02,3.64,1,219 +34810052,Cozy & clean place - 15min from Manhattan,262394284,Klara,Queens,Astoria,40.75936,-73.9258,Private room,52,2,8,2019-06-23,5.33,1,22 +34810330,Subway M/R<2min>& 7 Line<5min> Quiet neighborhood,19303369,Hiroki,Queens,Woodside,40.74637,-73.89933,Private room,33,28,0,,,37,41 +34810928,Spacious Washington Heights Oasis with Laundry,7313602,Amy,Manhattan,Washington Heights,40.85374,-73.93198,Entire home/apt,90,3,1,2019-06-03,0.83,1,12 +34811838,Experience the cozy #VanLife in NYC/East Village!,262452748,Nancy,Manhattan,East Village,40.72609,-73.98354,Entire home/apt,89,1,10,2019-06-24,5.88,2,173 +34812124,Sunny New York Apartment w/ 2 Spacious Bedrooms!,131103134,Daniel,Manhattan,Upper East Side,40.77388,-73.9568,Entire home/apt,217,3,2,2019-06-19,1.67,1,235 +34812586,cozy manhattan hideaway,222201467,Alfie,Manhattan,Upper East Side,40.77176,-73.94903,Entire home/apt,150,2,3,2019-05-31,1.96,1,66 +34812878,"Beauty, Shared Room Near Central Park 4",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76586,-73.98721,Shared room,76,1,6,2019-06-11,3.46,6,365 +34813137,East Village Room,262461078,Sofi,Manhattan,East Village,40.72504,-73.97908,Private room,70,4,3,2019-06-30,3,1,346 +34813189,Shared apt by Central Park Near Times Square 2,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76579,-73.98932,Shared room,75,1,8,2019-07-01,4.62,6,365 +34813344,AWESOME LOCATION!! NEWLY REMODELED APARTMENT!!,262434396,Angeline,Brooklyn,Williamsburg,40.71597,-73.96107,Entire home/apt,650,3,1,2019-06-17,1,1,352 +34813479,"Cozy apartment ,Shared Room Heart of Manhattan 5",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76612,-73.98749,Shared room,75,1,4,2019-06-23,2.35,6,365 +34813770,AMAZING ONE MONTH SUBLET IN WILLIAMSBURG!!!,259826953,Yaron,Brooklyn,Williamsburg,40.71771,-73.95831,Private room,99,3,2,2019-06-09,1.67,2,179 +34813879,Times Square & Central Park Plus Design,480943,Ro,Manhattan,Hell's Kitchen,40.76714,-73.98784,Entire home/apt,249,2,4,2019-07-02,2.55,2,336 +34813915,"Beauty Apt ,Shared Room in Hell's Kitchen 6",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76558,-73.98785,Shared room,75,1,3,2019-06-30,1.76,6,365 +34813955,Gateway to Harlem Luxury,35100060,Jessica,Manhattan,Harlem,40.80126,-73.95037,Private room,70,5,0,,,2,0 +34814184,Shared Room By Times Square near Central Park 3,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76391,-73.98892,Shared room,75,1,3,2019-06-24,2.20,6,365 +34815163,Glamp In a Cozy Spacious Camper Van In NYC!,262452748,Nancy,Manhattan,East Village,40.72611,-73.98208,Entire home/apt,85,1,6,2019-06-24,3.53,2,170 +34815569,"Cozy apartment, new and super clean!",258651643,Marcia,Queens,Long Island City,40.75291,-73.92305,Private room,75,3,4,2019-06-15,2.35,1,144 +34815717,Fantastic West Harlem Brownstone,243189296,T. Reginald,Manhattan,Harlem,40.80859,-73.95132,Entire home/apt,90,3,0,,,1,3 +34816480,MASSIVE loft in the Lower East Side,819674,Andrew,Manhattan,Chinatown,40.71409,-73.9918,Entire home/apt,450,3,0,,,1,4 +34816483,Home in Washington Height's Historic District,54415933,Laura,Manhattan,Washington Heights,40.83468,-73.93714,Entire home/apt,300,3,0,,,1,88 +34816747,Steps away from Columbia University/ Morningside P,206758177,Miguel,Manhattan,Harlem,40.80526,-73.95522,Entire home/apt,195,1,11,2019-06-25,7.50,3,33 +34817032,Fantastic Midtown Elegance,94101463,Jessica,Manhattan,Midtown,40.75316,-73.97099,Entire home/apt,300,3,15,2019-07-06,8.82,1,357 +34817571,Prime location - 2 Bedroom Penthouse Views,22953090,David,Manhattan,Upper East Side,40.7724,-73.95762,Entire home/apt,500,1,2,2019-06-20,1.46,1,151 +34817616,5 min walk to Times Square! Sleeps 5. Very clean.,251535441,Nick,Manhattan,Hell's Kitchen,40.76047,-73.99202,Entire home/apt,199,7,6,2019-07-01,3.46,1,102 +34818201,Whole floor(2bedroom) for group in safe Area,41326856,Jeerathinan,Queens,Elmhurst,40.74464,-73.8791,Entire home/apt,145,1,0,,,5,110 +34818674,Heights VI,9130040,Candace,Brooklyn,East Flatbush,40.66319,-73.93434,Private room,99,1,0,,,6,365 +34819184,Home McDonald,156850005,Sharon,Queens,Jackson Heights,40.756,-73.87756,Private room,77,1,1,2019-05-29,0.73,2,355 +34819514,Comfortable double room with balcony(舒适双人房带阳台),257683179,H Ai,Queens,Flushing,40.76153,-73.80726,Private room,55,1,0,,,6,62 +34819702,Private Pristine Studio in Brooklyn,10700780,Rose,Brooklyn,Windsor Terrace,40.64932,-73.98018,Entire home/apt,90,1,11,2019-06-23,7.17,1,3 +34822061,NYC Ocean Front Suburb,262528929,Alfonso,Bronx,Throgs Neck,40.828,-73.81275,Entire home/apt,100,3,1,2019-06-22,1,1,336 +34825113,Amazing 2 BDRM in Heart of SOHO/LITTLE ITALY,62745,Roberto,Manhattan,Little Italy,40.7185,-73.99824,Entire home/apt,175,30,0,,,1,198 +34830282,Clarkson Loft the gem of east Flatbush,262534951,Sandra,Brooklyn,East Flatbush,40.65904,-73.92334,Private room,60,1,2,2019-06-09,1.58,2,179 +34830629,"Large, luxury, one bedroom with veranda & garden",37170601,Petros,Brooklyn,Flatlands,40.61401,-73.92112,Entire home/apt,125,3,0,,,1,42 +34830893,Sun-drenched 1 bedroom in Clinton Hill/Bed-Stuy,10273046,Irene,Brooklyn,Bedford-Stuyvesant,40.69021,-73.95058,Entire home/apt,120,14,0,,,1,53 +34832415,Gay friendly,6503950,Rob,Brooklyn,Bushwick,40.69339,-73.90588,Private room,50,1,6,2019-06-30,4.74,2,311 +34833931,2BR LUXARY DUPLEX LOFT Downtown Brooklyn (4+ Days),48194192,Allen,Brooklyn,Clinton Hill,40.69526,-73.96321,Entire home/apt,395,4,1,2019-06-22,1,4,22 +34834104,Heights II,9130040,Candace,Brooklyn,East Flatbush,40.66189,-73.93309,Private room,99,1,1,2019-05-19,0.59,6,365 +34834383,High View of the River,61396454,Ash,Manhattan,Midtown,40.75534,-73.96446,Entire home/apt,200,30,0,,,14,365 +34834494,"Big Sunny Room in the heart of Greenpoint, BK",9943690,Lisha,Brooklyn,Greenpoint,40.72618,-73.94971,Private room,55,5,0,,,1,136 +34834531,Cozy 2 Bed 1 Bath- Sutton place,61396454,Ash,Manhattan,Midtown,40.75406,-73.96436,Entire home/apt,225,30,0,,,14,343 +34834620,Fully Renovated 1 Bedroom- Washer Dryer,61396454,Ash,Manhattan,Midtown,40.7554,-73.96474,Entire home/apt,200,30,1,2019-06-14,1,14,289 +34834789,The Bulls Horn's,61396454,Ash,Manhattan,Midtown,40.75523,-73.96342,Entire home/apt,300,30,0,,,14,339 +34834869,Gorgeous 2 Bed 1 Bath - Sutton Place,61396454,Ash,Manhattan,Midtown,40.75494,-73.96522,Entire home/apt,220,30,0,,,14,332 +34834953,The Bridge View- Sutton Place,61396454,Ash,Manhattan,Midtown,40.75568,-73.96474,Entire home/apt,300,30,0,,,14,333 +34835013,Fully Renovated One Bedroom- Sutton place,61396454,Ash,Manhattan,Midtown,40.75379,-73.96433,Entire home/apt,190,30,1,2019-06-21,1,14,302 +34835072,High End Renovated Apartment - Sutton place,61396454,Ash,Manhattan,Midtown,40.75669,-73.96199,Entire home/apt,300,30,0,,,14,329 +34835303,Renovated Sutton Place Apartment- Free Gym,61396454,Ash,Manhattan,Midtown,40.75643,-73.96375,Entire home/apt,300,30,1,2019-06-12,1,14,333 +34835501,The River View- Sutton Place,61396454,Ash,Manhattan,Midtown,40.75451,-73.96348,Entire home/apt,190,30,0,,,14,365 +34835522,Beautiful 2 Bedrooms in upper East #5,1786901,Shai,Manhattan,Upper East Side,40.78345,-73.94751,Entire home/apt,200,3,0,,,9,29 +34835762,Central Hall Colonial with Free Parking Bus EXP NY,252051657,Anastasios,Staten Island,Prince's Bay,40.53076,-74.20295,Entire home/apt,1250,14,0,,,1,23 +34836661,Become a New Yorker in Bushwick!,6605565,Samantha,Brooklyn,Bushwick,40.69941,-73.91186,Private room,70,3,3,2019-07-01,3,1,27 +34836737,Spacious Harlem Home in Manhattan!,9486614,Roberto,Manhattan,Harlem,40.81157,-73.94654,Entire home/apt,799,3,0,,,1,51 +34837017,AMAZING 3 BEDROOM APT IN BROOKLYN NY,262469851,Jay,Brooklyn,Williamsburg,40.71853,-73.94808,Entire home/apt,659,4,4,2019-06-06,3.00,1,334 +34837784,Stylish One Bedroom Apartment!!,262470176,Jason,Brooklyn,Williamsburg,40.7192,-73.94805,Entire home/apt,650,3,4,2019-06-16,3.64,1,359 +34837940,SPACIOUS 3 BEDROOM APARTMENT In BROOKLYN!!,262634390,Melissa,Brooklyn,Greenpoint,40.72235,-73.94176,Entire home/apt,650,3,2,2019-06-20,2,1,346 +34838079,Great Location in Chinatown and Little Italy,259968021,Che,Manhattan,Chinatown,40.71837,-73.99633,Entire home/apt,260,2,5,2019-07-01,3.41,1,235 +34838171,"Gorgeous, stylish 3 Bedroom Apt in Greenpoint, BK",294307,Swetha,Brooklyn,Greenpoint,40.73735,-73.95532,Entire home/apt,250,3,0,,,1,114 +34838351,Stunning 2Bed/2BA + 300sqft deck by the river!,931058,Nadine,Brooklyn,Williamsburg,40.7215,-73.96,Entire home/apt,399,1,1,2019-07-02,1,1,41 +34839277,Cozy & Comfortable Private Room,40085320,Alaa,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94399,Private room,55,2,11,2019-07-07,9.17,2,44 +34840034,Long Island City for Dreamers,243194565,Greg,Queens,Long Island City,40.74705,-73.9472,Private room,130,5,0,,,1,179 +34840050,金城发双人房 suit2 queens size bed,255641440,Li,Queens,Flushing,40.75,-73.81489,Private room,43,1,0,,,7,339 +34840495,Newly Renovated 5 Bed 2 Bath Spacious Apartment.,262657892,Philip,Brooklyn,Crown Heights,40.66473,-73.93134,Entire home/apt,475,3,2,2019-06-30,2,3,219 +34840894,Modern Loft in East Williamsburg (Morgan Ave),1306620,Mia,Brooklyn,Bushwick,40.70473,-73.92867,Entire home/apt,200,3,1,2019-07-01,1,1,46 +34841457,Charming Private Bedroom,40085320,Alaa,Brooklyn,Prospect-Lefferts Gardens,40.66064,-73.94315,Private room,55,2,8,2019-06-30,6.49,2,22 +34842320,☆ ❣ Cozy 2 ideal location| private entrance ☆ ❣,259880452,Malik,Queens,Flushing,40.75652,-73.81368,Entire home/apt,99,1,3,2019-07-07,3,2,357 +34843532,✰ RARE FIND ✰ PRIVATE PATIO ✰,229506961,Alex,Manhattan,Midtown,40.75935,-73.96471,Entire home/apt,289,2,3,2019-07-04,3,1,309 +34843761,AMAZING TWO BDRM IN MIDTOWN MANHATTAN!!,262570325,Javier,Manhattan,Hell's Kitchen,40.75967,-73.99219,Entire home/apt,499,3,6,2019-07-06,4.62,1,361 +34844071,SWEET STUDIO 4 BLOCKS FROM THE BEACH! 15min to NYC,56306339,Al,Staten Island,Midland Beach,40.57503,-74.09523,Entire home/apt,61,5,0,,,1,290 +34844175,Room with a private bathroom in modern BK building,25701819,Gorkem,Brooklyn,Bedford-Stuyvesant,40.68961,-73.9232,Private room,55,16,0,,,1,0 +34844239,❀ Bright and cozy townhouse | Ideal for families ❀,154268909,Malik,Queens,Bellerose,40.74027,-73.71829,Entire home/apt,180,2,0,,,2,281 +34844630,Beautiful apartment in Gravesend(Girls share room),261338177,Diana,Brooklyn,Gravesend,40.58941,-73.97116,Shared room,25,7,0,,,6,321 +34844773,PureVia (Girls shared room only),261338177,Diana,Brooklyn,Gravesend,40.59087,-73.97275,Shared room,25,7,1,2019-05-26,0.67,6,313 +34844961,The Pineapple tree (Girls shared room only),261338177,Diana,Brooklyn,Gravesend,40.58972,-73.97172,Shared room,25,7,0,,,6,343 +34848236,My available bedroom,229450463,Frank,Bronx,Pelham Bay,40.85251,-73.83254,Private room,55,2,0,,,1,89 +34851748,X,184750740,Juice,Bronx,Morrisania,40.82504,-73.90918,Shared room,80,1,0,,,4,365 +34853099,Private Roof with Great View of NYC,67046604,Jackie,Brooklyn,Park Slope,40.66713,-73.98196,Private room,60,15,0,,,1,53 +34855302,West Village GEM on Charles St!,262767899,Paola,Manhattan,West Village,40.73559,-73.99959,Entire home/apt,299,2,1,2019-06-19,1,1,118 +34856733,Large spacious room,20110967,Maria,Manhattan,Inwood,40.86025,-73.92647,Private room,24,10,0,,,1,145 +34857004,Sunny 1BR in the Heart of the Lower East Side,13738322,Gordy,Manhattan,Lower East Side,40.72183,-73.98803,Entire home/apt,125,1,4,2019-06-23,2.55,1,0 +34857809,Artistic Studio on the Upper East Side,69433846,Isabelle,Manhattan,Upper East Side,40.77621,-73.9616,Entire home/apt,180,2,0,,,1,0 +34858021,Entire sunlit Little Italy apartment,136025561,Alexandra,Manhattan,Little Italy,40.71758,-73.99792,Entire home/apt,95,2,2,2019-07-01,1.33,2,0 +34858480,"Beautiful 1BR, water view next to Madison Square",23046080,Zyad,Manhattan,Chelsea,40.75295,-73.9955,Entire home/apt,250,6,1,2019-07-05,1,1,3 +34858641,"Minimalist, Designer Apt Flooded with Sun & Views",26023166,Tiffany,Brooklyn,Clinton Hill,40.68182,-73.959,Entire home/apt,200,3,1,2019-05-30,0.73,1,50 +34858865,"Private home next to beach,transport,parking",32162495,Mostafa,Staten Island,Eltingville,40.53939,-74.15389,Entire home/apt,299,10,0,,,3,30 +34859742,Elegant 2 Bed.-10 min to Manhattan,10513282,Daniel,Queens,Ditmars Steinway,40.7753,-73.90994,Entire home/apt,93,2,1,2019-06-02,0.81,1,361 +34859794,Beautiful Luxury Brownstone Apt in Brooklyn,36082598,Genevieve,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95222,Entire home/apt,225,2,6,2019-06-30,3.83,2,273 +34859801,Enjoy NY under the lights of the Empire State.,45433836,Michelle,Manhattan,Chelsea,40.74473,-73.99213,Entire home/apt,310,7,0,,,1,81 +34859949,Amazing Townhouse Experience with Private Garden,262800168,Jennifer,Manhattan,Midtown,40.7431,-73.98233,Entire home/apt,1000,2,6,2019-06-30,5.29,1,231 +34860021,"Spacious sunny 1 bedroom, steps away from subway",262803937,Roddison,Brooklyn,Prospect-Lefferts Gardens,40.66288,-73.95277,Entire home/apt,90,2,4,2019-06-24,2.73,1,73 +34860207,Spacious 2 Bedroom - Quiet and Easily Accessible,90463984,Isabelle,Queens,Richmond Hill,40.69838,-73.84228,Entire home/apt,120,7,0,,,3,122 +34860502,Sunny bedroom in Brooklyn,73869612,Rebecca,Brooklyn,Crown Heights,40.67562,-73.95319,Private room,90,7,0,,,1,5 +34860549,1 room for a cozy night or 2,209915988,Ashley,Bronx,Unionport,40.82936,-73.84854,Private room,75,1,1,2019-05-26,0.68,1,365 +34861069,Hideaway in Morning-side Heights,18682781,Dimitri,Manhattan,Harlem,40.82509,-73.9522,Private room,75,1,4,2019-06-30,2.55,1,90 +34862591,Spacey Bushwick Loft! Perfect location! Big Room!,2201963,Violeta,Brooklyn,Williamsburg,40.70631,-73.93338,Private room,64,21,0,,,1,5 +34862827,Exceptional Upper West Side Oasis,4185618,Michael,Manhattan,Upper West Side,40.77629,-73.98017,Entire home/apt,249,3,3,2019-07-07,2.73,1,118 +34863318,Private room: One Cherry,25867795,Vin,Brooklyn,Sunset Park,40.63957,-74.01717,Private room,44,1,8,2019-07-01,5.11,1,74 +34863999,New Hotel-Like Private Room KING Bed 25 min NYC,48684597,David,Queens,Maspeth,40.73829,-73.89586,Private room,50,1,12,2019-07-06,9.47,4,233 +34864348,阳台大双人房 (queens size room with balcony ),255641440,Li,Queens,Flushing,40.76316,-73.80869,Private room,55,1,0,,,7,329 +34864369,dumbo gem with garden sleeps 3.,121080979,Jason,Brooklyn,DUMBO,40.70378,-73.99278,Private room,400,3,0,,,1,136 +34865230,Cool studio in Brooklyn Heights,3415882,Matthew,Brooklyn,Brooklyn Heights,40.69015,-73.99271,Entire home/apt,150,5,2,2019-07-03,2,1,10 +34865775,Lovely LES apartment,137949496,Dolev,Manhattan,Lower East Side,40.72081,-73.99069,Entire home/apt,110,7,2,2019-06-23,2,1,0 +34866413,Cozy and convenient studio in Chelsea,61882349,Janet,Manhattan,Chelsea,40.7483,-74.0008,Entire home/apt,93,5,2,2019-06-16,2,1,0 +34866447,Newly Renovated 4 Bed 2 Bath Spacious Apartment,262657892,Philip,Brooklyn,Crown Heights,40.66682,-73.93022,Entire home/apt,370,3,3,2019-06-24,1.80,3,220 +34866647,COSY KINGDOM IN UPTOWN,257839699,Mauricio,Manhattan,Washington Heights,40.85423,-73.93215,Private room,129,1,0,,,1,5 +34866682,New 9 Bed 4 Full Bath 3000 SF Spacious Apartment,262657892,Philip,Brooklyn,Crown Heights,40.66678,-73.93035,Entire home/apt,830,3,0,,,3,213 +34866737,amazing 3 BR 1 Bath in Hanover sq.,115771987,Yuki,Manhattan,Financial District,40.7075,-74.00853,Entire home/apt,196,30,0,,,6,222 +34866786,Amazing 2 Bed 2 Bath with Gym in the UWS #6104,116305897,Laura,Manhattan,Upper West Side,40.78932,-73.97359,Entire home/apt,250,30,0,,,9,312 +34866897,Bedroom + Private Bath + Backyard in Bedstuy,20086738,Kristin Page,Brooklyn,Bedford-Stuyvesant,40.68098,-73.91608,Private room,90,2,2,2019-06-18,2,2,1 +34867034,“Epic” The highest apartment in New York,184506477,Ieong,Manhattan,Chelsea,40.74743,-73.99136,Entire home/apt,440,2,1,2019-05-21,0.61,1,2 +34867106,Light filled room in Bushwick for the summer!,10430261,Britta,Brooklyn,Bushwick,40.6999,-73.92417,Private room,52,14,0,,,1,31 +34867166,Gorgeous 1 bedroom apt in Williamsburg Brooklyn,108079367,Alex,Brooklyn,Williamsburg,40.71097,-73.94164,Entire home/apt,105,14,0,,,1,40 +34867398,Sunset Park Rustic Bed Room for 2 W/AC,38119047,Wu,Brooklyn,Sunset Park,40.64613,-74.00736,Private room,40,1,8,2019-07-08,5.45,2,89 +34867574,Grand Central/United Nations-New 2Beds2Baths,25157246,Cindy,Manhattan,Midtown,40.75216,-73.96912,Entire home/apt,159,90,0,,,2,330 +34868182,➖PRIVATE ROOFTOP ➖ LUXURY LIVING IN NEW YORK CITY!,229498124,Rajeev,Manhattan,Midtown,40.75978,-73.96629,Entire home/apt,489,2,2,2019-06-17,1.67,1,320 +34868325,Airbnb on the Bruckner in the Bronx.,34655986,Curtis,Bronx,Port Morris,40.80464,-73.92575,Entire home/apt,125,14,0,,,1,365 +34868859,Spectacular 2 bed 2 bath with W/D in the APT #6117,35098529,David,Manhattan,Kips Bay,40.74409,-73.97605,Entire home/apt,310,30,0,,,5,214 +34868954,3 Bedroom Williamsburg Duplex 15 min to Manhattan!,262883761,Bill,Brooklyn,Williamsburg,40.71359,-73.94875,Entire home/apt,203,3,4,2019-07-01,3.53,1,254 +34869169,1 Super Cozy Bedroom in Downtown Manhattan,25794110,Zeeshan,Manhattan,Civic Center,40.71292,-73.99819,Private room,165,2,0,,,1,89 +34869197,Chic Sunlit Williamsburg Apartment w/Private Patio,262884890,Cam,Brooklyn,Williamsburg,40.70708,-73.94168,Entire home/apt,154,3,5,2019-07-04,4.05,1,269 +34869203,Sunset House,107234799,睿,Brooklyn,Sunset Park,40.64943,-74.01018,Private room,27,15,1,2019-07-01,1,1,0 +34869328,Whole house next to 2/5 trains- 30min to Manhattan,293911,Sergios & Fani,Brooklyn,East Flatbush,40.64521,-73.94452,Entire home/apt,220,5,0,,,1,75 +34870313,Upper East Side Spacious STUDIO,2374185,Amapola,Manhattan,Upper East Side,40.77374,-73.95153,Entire home/apt,300,30,0,,,1,348 +34870382,2 bedroom apt in Wburg near Grand St,49906311,Selina,Brooklyn,Williamsburg,40.71146,-73.94217,Entire home/apt,150,4,0,,,1,0 +34870577,Happy Home 3,158178970,Raquel,Staten Island,Randall Manor,40.63136,-74.12559,Shared room,13,1,9,2019-07-05,5.51,3,8 +34871854,Most wonderful 2 BR Apartment in Lower Manhattan,261898854,Layla,Manhattan,East Village,40.72128,-73.97899,Entire home/apt,200,14,2,2019-06-21,1.50,1,233 +34885475,Your Hide-A-Way in New York City-Times Square,259087876,Dennis,Manhattan,Theater District,40.7585,-73.98221,Private room,300,1,12,2019-07-07,7.83,7,50 +34885877,Private Master Bedroom with Private Bathroom,262804930,John,Brooklyn,Prospect-Lefferts Gardens,40.65986,-73.94277,Private room,89,1,5,2019-07-04,3.49,1,97 +34886804,Entire 1 bedroom Suite All yours!!,43252773,Karim,Manhattan,Harlem,40.81103,-73.94813,Entire home/apt,289,1,0,,,2,301 +34887720,Gorgeous 4 Bedroom 4 Bath Apt at West Village,132777237,Hannah,Manhattan,West Village,40.73473,-74.00135,Entire home/apt,650,30,0,,,1,277 +34888503,Charming town of Tottenville right outside NYC,962249,Dora,Staten Island,Tottenville,40.50943,-74.24442,Entire home/apt,70,3,1,2019-07-01,1,1,128 +34889154,HUGE 3 BEDROOMS IN BEST PART OF BROOKLYN!!,262435950,Miguel Angel,Brooklyn,Bushwick,40.69551,-73.91697,Entire home/apt,399,3,7,2019-07-02,5.25,1,358 +34890465,Magical Duplex in the Heart of Manhattan!,262990767,Alfonso,Manhattan,Midtown,40.74381,-73.98492,Entire home/apt,590,1,0,,,1,365 +34890712,Bushwick Enclave with Backyard - ByCrochet,192890383,Evan,Brooklyn,Bushwick,40.6909,-73.91198,Private room,110,1,0,,,1,0 +34892732,Affordable 2 bedroom in hell's kitchen,42222090,Kita,Manhattan,Hell's Kitchen,40.76885,-73.98611,Entire home/apt,289,3,3,2019-07-06,3,2,125 +34893564,Gramercy Park Studio Apartment (Max 2 people),226519844,Lidiya,Manhattan,Gramercy,40.73684,-73.9842,Entire home/apt,117,1,3,2019-06-20,2.43,1,233 +34894405,Luxurious apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79328,-73.96817,Entire home/apt,250,31,0,,,3,347 +34894549,PentHouse In FiDi,263013038,Rohan,Manhattan,Financial District,40.7067,-74.00546,Private room,150,3,0,,,1,0 +34894797,Upper Eastside Brownstone on E89th,263007016,Ed,Manhattan,Upper East Side,40.77838,-73.94792,Private room,125,1,0,,,1,0 +34894939,Beautiful Bedroom in Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.69867,-73.91968,Private room,50,1,0,,,5,329 +34894968,Cosy two-bedroom Prospect Park Apartment,263013451,Julia,Brooklyn,Flatbush,40.64522,-73.95816,Entire home/apt,160,3,0,,,1,125 +34895344,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Hell's Kitchen,40.76957,-73.99292,Entire home/apt,229,30,0,,,87,115 +34895399,Luxury 2 Beds in Midtown with Amazing Views #6111,129589071,Laure,Manhattan,Murray Hill,40.7483,-73.97444,Entire home/apt,265,30,0,,,1,351 +34895585,Amazing apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79482,-73.96639,Entire home/apt,200,31,0,,,3,316 +34895693,Gem of east Flatbush,262534951,Sandra,Brooklyn,East Flatbush,40.65724,-73.9245,Private room,7500,1,8,2019-07-07,6.15,2,179 +34896039,Gorgeous apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79355,-73.96752,Entire home/apt,200,31,0,,,3,333 +34896977,Home away from Home.,261995854,Indira,Queens,Richmond Hill,40.68243,-73.82668,Entire home/apt,120,2,5,2019-07-06,5,1,356 +34898461,Amazing midtown apartment near Times square,105626720,Bosi,Manhattan,Theater District,40.76234,-73.98605,Entire home/apt,200,31,0,,,5,341 +34898663,Summer stay in Brooklyn,7028001,Pat,Brooklyn,Bedford-Stuyvesant,40.69474,-73.94963,Private room,50,4,0,,,1,9 +34899120,Gorgeous midtown apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76189,-73.98765,Entire home/apt,200,31,0,,,5,341 +34899507,Cozy Studio Apartment on the Upper East Side,133449862,Stella,Manhattan,Upper East Side,40.76735,-73.95433,Entire home/apt,130,5,0,,,1,188 +34899759,"Luxury High Rise, Water Front View with Balcony",73678055,Yoon,Brooklyn,Williamsburg,40.71988,-73.96381,Entire home/apt,188,5,5,2019-07-01,3.33,1,101 +34900746,Oriana - Luxury High Rise,253361623,Shradha,Manhattan,Midtown,40.75671,-73.96228,Shared room,150,1,2,2019-05-28,1.25,1,67 +34900957,Awesome midtown apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76377,-73.9873,Entire home/apt,200,31,0,,,5,329 +34901323,Incredible Industrial Loft 1BR in Williamsburg,238328671,Brady,Brooklyn,Williamsburg,40.71706,-73.95988,Entire home/apt,375,1,3,2019-07-04,3,1,43 +34901699,R1 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.7276,-73.86569,Private room,85,1,1,2019-06-24,1,10,106 +34902183,Calming & Bright 1 BR Apt in Upper West Side,263054681,Carmen,Manhattan,Harlem,40.81982,-73.94481,Entire home/apt,93,30,0,,,1,325 +34902713,Cozy Lenox Hill Studio,68398714,Farah,Manhattan,Upper East Side,40.76233,-73.96193,Entire home/apt,175,2,1,2019-06-30,1,1,83 +34903478,Roomy & Spacious Modern Bedroom near J train,5680111,Timothy,Brooklyn,Bushwick,40.68757,-73.91343,Private room,65,5,2,2019-06-13,1.71,7,139 +34903658,"""Treehouse"" in the East Village with Private Patio",80573606,Alex,Manhattan,East Village,40.72649,-73.98433,Entire home/apt,275,2,3,2019-06-16,2.05,1,12 +34903861,"Get up and Go, Small comfy Studio in the Bronx",126614438,Jada,Bronx,Westchester Square,40.83616,-73.84638,Entire home/apt,75,1,5,2019-06-24,3.95,1,355 +34904143,R2 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72582,-73.86572,Private room,85,1,3,2019-07-05,3,10,112 +34904836,Ft. Greene Loft,4267864,Heidi,Brooklyn,Fort Greene,40.69234,-73.97219,Entire home/apt,150,3,4,2019-06-30,3.64,1,1 +34905447,R3 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72662,-73.86645,Private room,68,1,1,2019-06-29,1,10,136 +34905935,Gorgeous Chelsea apartment,47431634,Hellen,Manhattan,Chelsea,40.74156,-73.99677,Shared room,450,1,0,,,1,89 +34906695,Brooklyn's Finest,47399487,Malik,Brooklyn,Flatbush,40.64208,-73.95574,Entire home/apt,150,2,2,2019-07-05,2,1,113 +34907049,"Cozy Private Bedroom in Brownstone, Bed-Stuy",75034279,Irina,Brooklyn,Bedford-Stuyvesant,40.69521,-73.95173,Private room,63,2,0,,,2,83 +34907095,Gorgeous Apartment in a Historic Brownstone,13874881,Marina,Brooklyn,Crown Heights,40.67672,-73.94856,Entire home/apt,90,3,4,2019-06-28,4,1,18 +34907354,You can find everything in the neighborhood.,246351353,Erica,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.95952,Private room,42,2,12,2019-07-08,9.47,1,53 +34907385,Cozy Home Away from Home,263090455,Ny,Queens,Bellerose,40.7261,-73.72173,Private room,75,1,0,,,1,365 +34907479,Home in Harlem,26597048,M. Elizabeth,Manhattan,Harlem,40.80497,-73.94152,Entire home/apt,106,3,7,2019-07-05,6.00,2,5 +34907584,Nice 1 Bedroom in Washington Heights,232410,Lynne,Manhattan,Washington Heights,40.83903,-73.94588,Entire home/apt,125,2,2,2019-06-02,1.40,1,321 +34908120,Comfy room close to M train. 18mins to Manhattan,66959637,Carmen,Queens,Ridgewood,40.70358,-73.90864,Private room,50,7,0,,,2,281 +34908245,Cute and Modern Luxury Apartment in Times Square,263084604,Marissa,Manhattan,Hell's Kitchen,40.75951,-73.98898,Entire home/apt,199,1,7,2019-07-06,4.57,1,148 +34908806,Large one bedroom in the heart of Williamsburg,558101,Ailee,Brooklyn,Williamsburg,40.7132,-73.96441,Entire home/apt,155,4,1,2019-06-29,1,1,0 +34908810,"Spacious, modern, clean, rooftop, near all subways",9880282,Duncan,Brooklyn,Boerum Hill,40.68475,-73.9871,Entire home/apt,175,14,3,2019-06-30,2.25,1,0 +34909035,"Gorgeous 2bed 2bath on 26flr, 10m from Time Square",10174929,Supin,Queens,Long Island City,40.74836,-73.93866,Entire home/apt,199,10,0,,,1,0 +34909275,Sunny Room in Williamsburg Loft,3383356,Bernadette,Brooklyn,Williamsburg,40.71703,-73.9635,Private room,120,2,0,,,1,22 +34909594,Spacious Brooklyn Apt with Garden Oasis - Gowanus,8092286,Sharmila,Brooklyn,Gowanus,40.66916,-73.9914,Entire home/apt,135,2,3,2019-07-01,2.09,1,37 +34910158,Spacious Private Studio- 15 min ride to Manhattan!,2492400,Fernando,Queens,Sunnyside,40.74807,-73.91343,Entire home/apt,101,3,4,2019-06-23,2.79,1,110 +34910222,SUPER COZY APARTMENT IN HEART OF SOHO!!!,43810674,Olimpia,Manhattan,Greenwich Village,40.72748,-74.0008,Entire home/apt,299,3,3,2019-06-14,2.09,2,178 +34910439,AMAZING TWO BEDROOMS IN BEST PART OF SoHo!!,43810674,Olimpia,Manhattan,SoHo,40.72599,-74.00249,Entire home/apt,268,3,1,2019-06-13,1,2,178 +34910477,Spacious 2BR duplex in charming brownstone,263113162,Andrew,Manhattan,Harlem,40.8287,-73.94687,Entire home/apt,120,30,0,,,1,94 +34911014,Great apartment minutes away from Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76359,-73.98608,Entire home/apt,200,31,0,,,5,354 +34911913,River View Studio!,263122683,Andrea,Brooklyn,Williamsburg,40.7201,-73.96373,Entire home/apt,150,3,1,2019-06-02,0.81,1,74 +34912300,Beautiful Large Room in Uptown Manhattan,141169081,Michael,Manhattan,Washington Heights,40.84721,-73.93321,Private room,55,2,5,2019-06-17,3.19,1,53 +34912334,Sunny Private 1BR Suite w/Kitchen/Bath @A/C Lines,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67916,-73.92559,Entire home/apt,85,3,3,2019-06-22,2.05,3,43 +34914606,Cozy Sunset Park Private Bed Room for 2 w/AC,38119047,Wu,Brooklyn,Sunset Park,40.64739,-74.00549,Private room,45,1,7,2019-07-07,4.77,2,50 +34915860,Times Square 3BR Loft! Amazing Location!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.75535,-73.99502,Entire home/apt,2500,70,0,,,3,191 +34922682,"Massive & Convenient 2 Bedroom, 1.5 bath Central",244030009,Ben,Manhattan,Midtown,40.74324,-73.98329,Entire home/apt,550,1,0,,,1,48 +34926055,New Studio in the UES with Gym and Pool #6126,130270076,Keren,Manhattan,East Harlem,40.78645,-73.94873,Entire home/apt,150,30,0,,,2,311 +34928299,"Great views, great location, great apartment!",1668747,Guido,Manhattan,Hell's Kitchen,40.76022,-74.00117,Entire home/apt,194,3,2,2019-07-02,2,1,44 +34928988,✨Modern NYC bedroom │5 minutes to Empire State✨,173417532,Ed,Manhattan,Midtown,40.75175,-73.97382,Private room,140,1,3,2019-07-01,3,3,85 +34929016,Private Living Room in the Heart of Chelsea,25408903,Jaclyn,Manhattan,Chelsea,40.74125,-73.99926,Private room,89,1,5,2019-06-29,5,1,296 +34929338,Beautiful Summer Home in the East Village!,6887469,Petra,Manhattan,East Village,40.72605,-73.98269,Entire home/apt,175,30,0,,,1,326 +34930138,"Stylish, Spacious Cobble Hill 1-bedroom, nr trains",5761174,Sally,Brooklyn,Boerum Hill,40.68993,-73.99204,Entire home/apt,151,7,1,2019-06-03,0.81,1,14 +34930659,Sunny Fresh Hamilton Heights Bedroom,22118412,Brigitte,Manhattan,Harlem,40.82862,-73.94938,Private room,54,3,0,,,1,19 +34931085,Casual Boho Chic 1 Bed Apt in NYC's Midtown East,234975196,Toni,Manhattan,Midtown,40.75583,-73.96836,Entire home/apt,120,2,0,,,1,0 +34931431,Cozy Room in Gorgeous Home in Bronx Little Italy,153376583,Joseph,Bronx,Belmont,40.85413,-73.88387,Private room,55,1,0,,,1,236 +34932465,Bright Bedstuy Bedroom,263228548,Alea,Brooklyn,Bedford-Stuyvesant,40.68716,-73.923,Private room,50,1,3,2019-06-09,2.73,1,0 +34932971,Sonder | 116 John | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.00532,Entire home/apt,137,29,0,,,327,361 +34933454,Sonder | 116 John | Relaxed 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.00515,Entire home/apt,137,29,0,,,327,333 +34933559,R4 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.7258,-73.86715,Private room,70,1,2,2019-06-27,2,10,127 +34933648,Sonder | 116 John | Bright 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.00616,Entire home/apt,137,29,0,,,327,341 +34933815,R5 Private King Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72721,-73.86589,Private room,65,1,2,2019-06-14,1.87,10,134 +34933891,Beautiful Brooklyn Vintage Townhouse Apartment,35514248,Jessica,Brooklyn,Bedford-Stuyvesant,40.68327,-73.91797,Entire home/apt,120,1,8,2019-07-08,6.86,1,272 +34933929,Sonder | 116 John | Cozy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.00482,Entire home/apt,117,29,0,,,327,345 +34934005,Spacious Bushwick/Bed-stuy Apartment w/ Backyard,1094258,Felix,Brooklyn,Bedford-Stuyvesant,40.68337,-73.9227,Entire home/apt,90,15,1,2019-06-04,0.83,1,118 +34934160,Beautiful Private Master Bedroom in West Midtown,79461666,Stephen,Manhattan,Hell's Kitchen,40.7646,-73.99045,Private room,150,2,0,,,3,7 +34934218,Sonder | 116 John | Stylish 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.00632,Entire home/apt,137,29,0,,,327,318 +34934431,Magnificent mid town apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76233,-73.98707,Entire home/apt,250,31,0,,,5,322 +34934473,R6 Private Studio LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72719,-73.86671,Private room,99,1,0,,,10,131 +34934744,Beautiful studio in Elmhurst Apt close to train!,170624318,Ernesto Arauz & Flory Lopez,Queens,Elmhurst,40.74769,-73.87203,Private room,75,1,1,2019-06-01,0.79,1,359 +34934854,(A) Private Twin Single Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72577,-73.86509,Private room,55,1,0,,,10,106 +34935098,Bright & cozy room in Brooklyn Brownstone,1155164,Orlando Benjamin,Brooklyn,Bedford-Stuyvesant,40.68036,-73.91621,Private room,40,2,4,2019-06-22,4,1,2 +34935124,Meyers inn,263245967,Chris,Manhattan,Hell's Kitchen,40.76106,-73.99733,Entire home/apt,250,1,5,2019-07-05,3.49,1,311 +34935198,"Modern Studio- Midtown, Hell’s Kitchen",47187850,Matthew,Manhattan,Hell's Kitchen,40.76113,-73.99504,Entire home/apt,200,3,1,2019-07-01,1,1,0 +34935216,"Spacious, bright & charming 1-bedroom in East Vil.",2982441,Maher,Manhattan,East Village,40.7319,-73.98658,Entire home/apt,180,8,1,2019-06-17,1,1,188 +34935477,Private Oasis in the heart of the East Village,65814872,Parisa,Manhattan,East Village,40.72916,-73.98228,Entire home/apt,250,30,0,,,1,90 +34935699,Sunny minimalistic loft in Clinton Hill!,263230696,Jay,Brooklyn,Clinton Hill,40.69054,-73.96063,Entire home/apt,200,3,1,2019-06-13,1,1,357 +34936459,East village charming 1 bedroom,15537429,Walid,Manhattan,East Village,40.7281,-73.97807,Entire home/apt,152,2,0,,,3,69 +34936509,NEAR 5th AVE RENOVATED STUDIO IN BROOKLYN,188212054,Joanna,Brooklyn,Bay Ridge,40.62061,-74.02331,Entire home/apt,245,3,2,2019-06-27,2,2,255 +34937078,July/Aug Sublet Available Huge Sunny Room,10834322,Melissa,Brooklyn,Clinton Hill,40.68954,-73.96561,Private room,40,31,0,,,1,54 +34937287,4Bed Penthouse! Terrace! Location! 5th Ave,133996326,Grant,Manhattan,Flatiron District,40.74312,-73.98977,Entire home/apt,459,1,5,2019-07-07,4.29,1,354 +34937685,New Apartment in Manhattan - New York City,221213143,David,Manhattan,Kips Bay,40.74257,-73.98146,Entire home/apt,350,1,6,2019-06-30,3.83,9,333 +34937986,(B) Private Single Twin Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72718,-73.86541,Private room,55,1,3,2019-06-19,2.57,10,120 +34938166,(C) Private Single Room Twin LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.7274,-73.86537,Private room,55,1,0,,,10,95 +34938245,Luxury Duplex in the Heart of New York City,221213143,David,Manhattan,Kips Bay,40.74155,-73.98138,Entire home/apt,650,1,0,,,9,298 +34938410,(E) Private Queen Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72655,-73.86697,Private room,70,1,0,,,10,112 +34938631,LUX dope PRIME Williamsburg w/ Roof & Gym Sleeps 5,3068045,Charles,Brooklyn,Williamsburg,40.71743,-73.9538,Entire home/apt,350,2,2,2019-06-30,1.36,1,26 +34938932,Homey 4 Bedroom Just Minutes to Midtown Manhattan,263272705,Helen,Queens,Long Island City,40.75659,-73.93108,Entire home/apt,275,2,1,2019-07-04,1,1,266 +34939305,Sunny East Village Room Across from the Subway,126012313,Madison,Manhattan,East Village,40.72276,-73.98741,Private room,78,2,7,2019-07-06,5.38,1,1 +34940451,Cozy bedrooms in Manhattan 18mins from Time Square,161057073,Stella,Manhattan,Lower East Side,40.72104,-73.98845,Private room,105,2,0,,,4,56 +34940602,Perfect peace private room in Brooklyn,263282580,Caritas,Brooklyn,Bedford-Stuyvesant,40.69593,-73.93503,Private room,60,2,2,2019-05-26,1.25,2,171 +34940756,Hello! This is a very cozy space in Williamsburg!!,259630588,Alina,Brooklyn,Williamsburg,40.71867,-73.94884,Private room,149,2,1,2019-05-26,0.68,2,0 +34940796,LOW PRICED HOME AWAY FROM HOME,102796618,Isaac,Bronx,Wakefield,40.88798,-73.86474,Private room,35,1,5,2019-07-04,3.13,1,62 +34941479,Place to be Private room 2,263266237,Amoyiem,Bronx,Allerton,40.86997,-73.84867,Private room,36,2,2,2019-06-21,2,4,81 +34941499,Private room 1,263266237,Amoyiem,Bronx,Allerton,40.86958,-73.84872,Private room,38,2,1,2019-06-23,1,4,90 +34941506,Place to be( 3bedroom apartment),263266237,Amoyiem,Bronx,Allerton,40.8688,-73.84726,Private room,120,2,0,,,4,84 +34943129,Small bedroom in cozy Inwood top floor apartment!,55040763,Jenn And Dan,Manhattan,Washington Heights,40.85911,-73.93087,Private room,50,2,6,2019-06-30,5.00,1,29 +34943881,Private Room in Inwood!,53105633,Savannah,Manhattan,Washington Heights,40.85873,-73.92937,Private room,32,7,0,,,1,0 +34943903,Private room in Upper East Side #5,1786901,Shai,Manhattan,Upper East Side,40.78298,-73.94671,Private room,95,3,0,,,9,29 +34943918,Enjoy Brooklyn... visit Manhattan,41131304,Salomé,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93718,Entire home/apt,150,2,4,2019-06-23,3.16,1,66 +34944130,Beach Haven,263301212,Mikhail,Brooklyn,Gravesend,40.58518,-73.96846,Private room,100,2,0,,,1,87 +34944309,FLATIRON LOFT 5 STAR,44179601,Tela,Manhattan,Gramercy,40.73817,-73.98903,Entire home/apt,850,1,3,2019-06-24,3,1,341 +34944389,Cozy & Convenient 1bed/bath in Crown Heights BK,13463015,Cyrus,Brooklyn,Crown Heights,40.67068,-73.95464,Entire home/apt,145,1,0,,,1,66 +34944655,Large 7 Bed minutes from Midtown Manhattan!,263311126,Mary,Queens,Long Island City,40.75693,-73.93044,Entire home/apt,650,2,0,,,1,233 +34944843,"Renovated 2bedroom apt by Grand Central, sleeps 6!",263312564,Shir,Manhattan,Midtown,40.75235,-73.97077,Private room,175,1,4,2019-06-20,4,1,203 +34944997,Cozy 1bd apartment in Midtown,202369622,Aleksandr,Manhattan,Hell's Kitchen,40.76814,-73.99148,Entire home/apt,190,2,0,,,1,8 +34945250,Home w/ Huge Backyard Near Prospect Park,12128527,Andy,Brooklyn,Windsor Terrace,40.65118,-73.9788,Entire home/apt,140,10,0,,,2,49 +34945599,Stunning Townhouse Studio by Bloomingdales,263126029,Dila,Manhattan,Upper East Side,40.76383,-73.9687,Entire home/apt,169,2,3,2019-06-21,2.65,1,7 +34945827,Best Street in Soho! Awesome Sunny Private Room,263322673,Sofia,Manhattan,SoHo,40.72627,-74.00104,Private room,85,14,3,2019-06-23,3,2,126 +34945914,"""Dave's Island Suite""",258232863,David,Staten Island,New Springville,40.58647,-74.15954,Entire home/apt,68,2,8,2019-06-30,5.33,1,4 +34946538,clean + cute room in williamsburg,14818218,Ashley,Brooklyn,Williamsburg,40.70877,-73.95064,Private room,80,2,3,2019-07-01,3,1,84 +34946772,Beyond the Valley of the Doll House,263331130,Vanessa,Brooklyn,Bushwick,40.69969,-73.9199,Private room,65,1,7,2019-06-25,4.77,1,79 +34946870,Railway large one bedroom gem on upper east side.,250583732,Nile C,Manhattan,Upper East Side,40.77581,-73.96285,Entire home/apt,210,1,0,,,1,135 +34947011,Luxury 4bed/2bath in Prime Upper West,195303599,Jack,Manhattan,Upper West Side,40.77652,-73.98151,Entire home/apt,699,4,4,2019-06-30,4,1,301 +34947418,"Quiet room with private bath, gorgeous backyard",951909,Alex,Brooklyn,Kensington,40.64501,-73.97859,Private room,79,7,1,2019-06-01,0.77,1,22 +34948460,Private Bedroom from Modern House.,259013161,Jisoo,Queens,Woodside,40.74465,-73.90336,Private room,89,1,0,,,2,70 +34948476,Stylish and Modern basement near LaGuardia Airport,194673800,Jonathan,Queens,East Elmhurst,40.7655,-73.88217,Entire home/apt,80,1,8,2019-07-02,5.45,1,49 +34948758,Charming and Cozy Studio Apartment!!,103628289,Kathleen,Manhattan,East Village,40.7283,-73.98589,Entire home/apt,130,3,1,2019-06-23,1,1,4 +34948812,Private Room in Heart of Williamsburg!,30590073,Michael,Brooklyn,Williamsburg,40.71839,-73.95876,Private room,70,2,0,,,2,98 +34948941,Huge window bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63721,-74.01229,Private room,60,1,0,,,4,353 +34949052,Three windows Bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63814,-74.01288,Private room,58,1,1,2019-05-27,0.68,4,360 +34949054,One bedroom in Murray Hill,263351102,Eliza,Manhattan,Murray Hill,40.74561,-73.97784,Entire home/apt,135,14,1,2019-07-05,1,1,2 +34949120,Modern house (2 BR Apt) • 30 Mins from Time Square,259013161,Jisoo,Queens,Woodside,40.74302,-73.90287,Entire home/apt,150,1,3,2019-06-15,1.91,2,155 +34949208,Comfy Bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63698,-74.01139,Private room,58,1,0,,,4,360 +34949542,Private room 1 min away from subway!,263352389,Yekta,Brooklyn,Flatbush,40.64856,-73.96358,Private room,40,7,1,2019-06-26,1,1,11 +34949698,Spacious sunny condo with private yard,15820708,Arlene,Brooklyn,Williamsburg,40.70939,-73.94055,Entire home/apt,300,3,1,2019-07-02,1,2,113 +34949851,Spacious & Quaint 1 Bed in Midtown,30485701,Daniela,Manhattan,Midtown,40.7584,-73.97075,Entire home/apt,245,2,7,2019-06-30,4.57,1,257 +34951077,Private room with Queen Size Bed and Work Space,263365570,Xun,Brooklyn,Bedford-Stuyvesant,40.69152,-73.96037,Private room,35,3,2,2019-06-16,2,1,20 +34952279,=== HAPPY TRAVELS / Near Columbia University ===,256877591,Mike,Manhattan,Harlem,40.81376,-73.9525,Private room,59,25,0,,,1,1 +34953317,3Bed/2Bath-LowerEastSide With Elevator!,263301624,June,Manhattan,Lower East Side,40.71872,-73.98174,Entire home/apt,600,3,6,2019-07-02,4.50,1,343 +34953750,Quiet apartment 501 Upper east side/Manhattan,71630660,Kosjenka,Manhattan,Upper East Side,40.77086,-73.95131,Entire home/apt,150,3,0,,,1,273 +34954639,"Private Bedroom Stylish, Cozy Apartment- Gramercy",263383528,Irina,Manhattan,Gramercy,40.73712,-73.98844,Private room,245,1,2,2019-07-02,2,1,179 +34954790,"Private apartment535 +REVIEWS ON PROFILE/Manhattan",149564593,Robert,Manhattan,Upper East Side,40.76989,-73.94961,Entire home/apt,145,2,1,2019-06-09,1,1,100 +34956249,"Heart of upper east 83 +Manhattan/Great location",48965038,Darko,Manhattan,Upper East Side,40.77697,-73.95272,Entire home/apt,145,3,2,2019-06-23,2,1,70 +34956747,"Beautiful studio 96 +Walk to Central Park/Manhattan",49292376,Melissa,Manhattan,East Harlem,40.78707,-73.95121,Entire home/apt,145,2,1,2019-06-09,1,1,94 +34958857,Private studio 79REVIEWS-CHECK PROFILEManhattan,48817598,Preeti,Manhattan,Upper East Side,40.77045,-73.94959,Entire home/apt,145,2,2,2019-06-29,2,1,37 +34959292,Sunfilled upper west side 1BD apt near park/subway,263408737,Rachael,Manhattan,Upper West Side,40.79582,-73.96711,Entire home/apt,158,2,1,2019-05-27,0.70,1,8 +34959441,"studio519 with bathroom +MaNHTAn +Reviews on profile",184407284,Ann,Manhattan,Upper East Side,40.77031,-73.95007,Entire home/apt,145,1,1,2019-06-15,1,1,110 +34959442,Spacious Home - 10 minutes from Central Park,1692055,Dayne,Manhattan,East Harlem,40.79512,-73.94454,Shared room,50,1,1,2019-06-10,1,1,81 +34960314,White Cove Williamsburg,262281120,Rosa,Brooklyn,Williamsburg,40.71765,-73.95914,Entire home/apt,165,30,0,,,1,59 +34960545,Cozy 2 bedroom in the heart of Astoria,3954840,Laura,Queens,Ditmars Steinway,40.77558,-73.90506,Entire home/apt,174,2,1,2019-07-01,1,1,5 +34962230,"Private studio 539 +Manhattan/Reviews-check profile",183571032,Igor,Manhattan,Upper East Side,40.76805,-73.94929,Entire home/apt,150,1,2,2019-06-17,2,1,83 +34962946,"Luxury, Gorgeous 1-Bed Apt in Hell's Kitchen",4385683,Nikki,Manhattan,Hell's Kitchen,40.76615,-73.98882,Entire home/apt,239,2,7,2019-07-07,7,1,22 +34962979,Cozy 1bedroom apt/Manhattan/East side,48950686,Lili,Manhattan,Upper East Side,40.77821,-73.95504,Entire home/apt,150,2,3,2019-06-30,3,1,164 +34964114,Cute Nest in the Heart of Bushwick artist hood,54618020,Sophie,Brooklyn,Bushwick,40.70267,-73.92271,Private room,80,2,1,2019-05-27,0.70,1,62 +34964342,"Clean, Modern, Rustic LIC APT",8616787,Iris,Queens,Long Island City,40.75181,-73.93702,Entire home/apt,200,2,1,2019-06-18,1,1,9 +34964711,Bedroom W/ Private Bathroom in the heart of SOHO,132202485,Dylon,Manhattan,Nolita,40.72222,-73.99443,Private room,100,3,2,2019-06-05,1.62,1,55 +34966406,Awesome location,30613046,Debbie,Brooklyn,Park Slope,40.67957,-73.97928,Private room,69,3,0,,,2,65 +34966969,"Great located 1bd apartment 59 +Manhattan/East side",32162806,Bozo,Manhattan,Midtown,40.7604,-73.96451,Entire home/apt,150,2,3,2019-06-16,2.81,1,78 +34967524,Private bedroom 5 minutes to La Guardia airport,259422076,David Y,Queens,Jackson Heights,40.75277,-73.88356,Private room,60,20,0,,,1,175 +34967678,Luxury 3/2 in Prime Lower East with Elevator!,8014888,Joel And Marie,Manhattan,Chinatown,40.71801,-73.9943,Entire home/apt,499,4,6,2019-06-27,4.62,1,299 +34967770,Charming townhouse,1849974,Laura,Manhattan,Harlem,40.81872,-73.94363,Entire home/apt,300,7,1,2019-05-24,0.65,2,150 +34968153,Comfy Cozy,256485515,Joseph,Brooklyn,Fort Hamilton,40.61822,-74.03538,Private room,55,1,1,2019-06-23,1,1,322 +34968639,Charming E. Village 2 Bedroom: Steps to the Park!,263427276,Helene,Manhattan,East Village,40.72564,-73.9803,Entire home/apt,300,4,0,,,1,297 +34969461,Duplex apartment,1849974,Laura,Manhattan,Harlem,40.81981,-73.94523,Entire home/apt,200,7,0,,,2,153 +34970126,Urban Zen in Historic Stuyvesant Heights,70773274,Micah,Brooklyn,Bedford-Stuyvesant,40.68414,-73.93538,Entire home/apt,140,6,0,,,1,252 +34970373,Amazing 4 Bedrooms 4 Bathrooms sleeps 9,199147185,Lou,Brooklyn,Sunset Park,40.66468,-73.99785,Entire home/apt,399,1,0,,,5,359 +34970848,Spectacular 2 bed 2 bath with W/D in the APT #6116,35098529,David,Manhattan,Murray Hill,40.74577,-73.97587,Entire home/apt,310,30,0,,,5,311 +34971155,Lovely 2Bed Apt Heart of Downtown! Steps to Train!,374557,Ohene,Manhattan,East Village,40.72376,-73.98623,Entire home/apt,250,4,0,,,1,141 +34971332,Upscale Studio in Brooklyn,1241548,Andrew,Brooklyn,Bedford-Stuyvesant,40.68991,-73.95345,Entire home/apt,110,3,0,,,1,18 +34971337,Spacious 2 Bed on Park with Washer/Dryer #6113,113723310,Joe,Manhattan,Murray Hill,40.74751,-73.98051,Entire home/apt,300,30,0,,,8,355 +34971449,Amazing 1 bed 1 bath in full service bld #6118,35098529,David,Manhattan,Kips Bay,40.74536,-73.97799,Entire home/apt,180,30,0,,,5,327 +34972072,Magic★★Flat close to Brooklyn Bridge ★★,263488433,Alex,Manhattan,Lower East Side,40.71323,-73.99063,Entire home/apt,250,1,13,2019-06-30,8.48,1,213 +34972213,"Charming KING Room w Backyard, Trains Williamsburg",242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70671,-73.94774,Private room,79,1,6,2019-07-01,6,4,0 +34972355,2 bedroom on Chinatown,263490281,Juan,Manhattan,Chinatown,40.71693,-73.99075,Entire home/apt,200,1,3,2019-06-12,2.43,1,157 +34972591,Spectacular 2 Bed 2 Bath on Park Avenue #6112,113723310,Joe,Manhattan,Murray Hill,40.74876,-73.98143,Entire home/apt,300,30,0,,,8,347 +34972828,Sunnyside Gardens Historic Home - Sweet and Green,13077418,Richard,Queens,Sunnyside,40.7475,-73.9161,Entire home/apt,200,2,4,2019-07-01,4,1,57 +34972982,Spectacular 1 bed 1 bath in full service bld #6119,35098529,David,Manhattan,Kips Bay,40.74385,-73.97789,Entire home/apt,190,30,0,,,5,365 +34973988,Cute studio in heart of LES. F train 3 mins away.,12642973,Christian,Manhattan,Lower East Side,40.72049,-73.98816,Entire home/apt,120,2,2,2019-06-23,1.36,1,67 +34974103,Amazing Furnished Studio in Midtown East #6120,113723310,Joe,Manhattan,Murray Hill,40.74882,-73.98041,Entire home/apt,150,30,0,,,8,342 +34974184,3BR Whole Apt In Mill Basin. Private Entrance,263502980,Almog,Brooklyn,Mill Basin,40.61058,-73.90971,Entire home/apt,299,3,3,2019-06-14,2.25,1,339 +34974475,#8 Hotel-Like 1 Bedroom Apartment KINGBed near JFK,263504959,David,Queens,Woodhaven,40.69114,-73.86459,Entire home/apt,48,1,8,2019-07-05,6.32,8,305 +34974525,Amazing Furnished 2 Bed on Park Ave with Gym #6110,113723310,Joe,Manhattan,Murray Hill,40.74812,-73.98046,Entire home/apt,300,30,0,,,8,342 +34974562,Stylish Studios near Central Park,263505830,Elizabeth,Manhattan,Upper West Side,40.77927,-73.97649,Private room,100,28,0,,,1,166 +34974705,Awesome Renovated Room in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.69118,-73.93476,Private room,68,1,5,2019-07-07,3.13,3,16 +34974799,Stylish 1 bd apartment in the heart of NYC,49225732,Lisa,Manhattan,Hell's Kitchen,40.76537,-73.98487,Entire home/apt,173,1,4,2019-06-17,4,1,120 +34975056,Beautiful Renovated Modern Townhouse,263506027,Marco,Manhattan,Midtown,40.74399,-73.98398,Entire home/apt,850,1,0,,,1,0 +34975296,Clean and quiet Room in brand new 2 BR apartment,263509965,Sebastian,Brooklyn,Bushwick,40.69707,-73.93201,Private room,50,1,9,2019-07-07,6.43,1,60 +34975527,3bdrm 1fl home w/parking!Close to ManhattanAirport,261028352,Young,Queens,Woodside,40.74305,-73.9007,Entire home/apt,169,2,0,,,2,91 +34975845,Bright One Bdr Apartment in Center of Manhattan,263448448,Conny,Manhattan,Upper East Side,40.76129,-73.96178,Private room,85,1,9,2019-07-02,7.30,1,29 +34975935,Brooklyn Escape,3472623,Melissa,Brooklyn,Prospect Heights,40.67834,-73.96598,Entire home/apt,175,2,8,2019-06-23,5.45,1,3 +34976037,Stunning Studio in Lux Building in the UWS #6115,116305897,Laura,Manhattan,Upper West Side,40.79058,-73.97246,Entire home/apt,150,30,0,,,9,266 +34976038,Entire floor in historic Harlem brownstone,2896601,Liz,Manhattan,Harlem,40.81582,-73.94267,Entire home/apt,118,2,3,2019-06-28,2.00,1,17 +34976056,Heaven on Bedford- Truly 3bd/2bath with backyard,263506630,Shir,Brooklyn,Williamsburg,40.71736,-73.95845,Entire home/apt,399,2,5,2019-07-05,4.55,1,131 +34976241,Cozy Apartment perfect for NYC vacation,254119216,Zeyna,Queens,Woodside,40.74479,-73.91193,Entire home/apt,108,2,2,2019-06-23,2,1,5 +34976735,Bright Private Apt in Ideal Location Manhattan,115167208,Taylor,Manhattan,Gramercy,40.73866,-73.98322,Entire home/apt,160,3,0,,,1,5 +34976973,JFK park view,245457246,Nurul,Queens,South Ozone Park,40.67101,-73.78943,Entire home/apt,248,2,2,2019-06-23,1.30,1,354 +34977297,"Williamsburg Gem, 2 bed/2bath",119273,Aimee,Brooklyn,Williamsburg,40.7194,-73.96346,Entire home/apt,160,31,0,,,1,54 +34977363,Cozy Studio Midtown East,49646933,Ines,Manhattan,Midtown,40.75375,-73.97416,Entire home/apt,190,3,1,2019-07-01,1,1,165 +34977766,Bright One Bdr Apartment in Center of Manhattan,263527800,Cornelia,Manhattan,Upper East Side,40.76139,-73.96048,Entire home/apt,130,1,0,,,1,28 +34978082,"3 bedroom, 2 baths duplex apt w/all new furniture",164701861,Brenda,Brooklyn,East New York,40.67337,-73.88846,Entire home/apt,225,3,3,2019-06-30,3,2,136 +34978133,Spacious 1 bed in the heart of Manhattan,263533090,Vin,Manhattan,East Village,40.7266,-73.9875,Entire home/apt,175,20,2,2019-05-24,1.30,1,27 +34978307,Park Slope Sweet Home 1 Bedroom August Rental,84642468,Xiaohui,Brooklyn,Gowanus,40.66714,-73.99279,Private room,80,14,0,,,1,192 +34978674,"Private Room and Bathroom - Gym, Laundry, Roof",165883882,Swanny,Brooklyn,Greenpoint,40.73456,-73.95328,Private room,130,2,2,2019-06-19,2,1,47 +34978738,Pvt studio with pvt entrance&pvt bathroom near JFK,199578818,Safain,Queens,Ozone Park,40.67565,-73.84677,Entire home/apt,60,3,4,2019-06-30,3.43,1,170 +34979429,Not so Ordinary Lexington Pied-à-terre,187981396,Milton,Manhattan,Midtown,40.74329,-73.98253,Private room,102,1,1,2019-07-01,1,1,353 +34980223,"""ADORABLE CENTRAL 1BD LITTLE ITALY/SOHO""",76192815,Sam,Manhattan,Little Italy,40.71805,-73.99714,Entire home/apt,129,33,0,,,5,333 +34980397,True Entire One Bedroom Apartment in Manhattan,82182158,Jason,Manhattan,East Village,40.72657,-73.98796,Entire home/apt,131,7,1,2019-05-23,0.64,1,1 +34980912,Cosy room in the heart of Bushwick!,10787323,Natalie,Brooklyn,Bushwick,40.70113,-73.92175,Private room,80,3,3,2019-06-08,2.14,1,0 +34981344,Bowery Loft with Private Deck,263563066,Dan,Manhattan,Lower East Side,40.72049,-73.99348,Private room,100,3,0,,,1,23 +34981452,The Sahara,10415735,Angie,Queens,Howard Beach,40.66162,-73.85598,Entire home/apt,200,1,2,2019-06-24,2,2,365 +34981466,Lex Penthouse with Private Roof Top Terrace,263564835,Steffan Per,Manhattan,Midtown,40.74383,-73.98286,Private room,975,30,0,,,1,363 +34981637,bay ridge & sunset park furnished apartment,263564234,Nony,Brooklyn,Bay Ridge,40.63087,-74.02006,Entire home/apt,4200,60,0,,,1,90 +34981661,"Your Home In The Heart Of Bedstuy, Brooklyn!",263566379,Lawrence,Brooklyn,Bedford-Stuyvesant,40.68096,-73.92512,Entire home/apt,80,1,6,2019-07-06,6,1,12 +34983299,Amazing duplex - 5bed/4bath in prime Williamsburg,238800808,Frederick,Brooklyn,Williamsburg,40.70893,-73.9572,Entire home/apt,895,2,1,2019-07-01,1,1,28 +34986604,Apartment near JFK and Manhattan,150285098,Ahsan,Queens,Howard Beach,40.66238,-73.83628,Private room,150,1,0,,,1,89 +34993569,Amazing 2 Bed in Luxury Building with Gym #6105,116305897,Laura,Manhattan,Upper West Side,40.78948,-73.97228,Entire home/apt,290,30,0,,,9,338 +34993824,New Luxury 1 Bed in UWS Building with Gym #6128,116305897,Laura,Manhattan,Upper West Side,40.79058,-73.97435,Entire home/apt,170,30,0,,,9,353 +34994129,New Lux 1 Bed in UWS steps to Central Park #6124,116305897,Laura,Manhattan,Upper West Side,40.7894,-73.97381,Entire home/apt,170,30,0,,,9,342 +34995166,Charming apartment next to the bridge,263439936,Kayla,Brooklyn,Williamsburg,40.71114,-73.96153,Private room,70,14,0,,,1,139 +34995443,AMAZING 3 BDRM IN MEATPACKING/CHELSEA/HIGHLINE!!,91268177,Beatriz,Manhattan,Chelsea,40.74344,-74.00747,Entire home/apt,499,3,2,2019-06-13,1.50,4,177 +34995534,Penthouse rooftop room 20Min To Manhattan!!,18260299,Ota,Brooklyn,Bushwick,40.69457,-73.90753,Private room,37,4,0,,,6,36 +34995803,AMAZING 5 BEDS CHELSEA/MEATPACKING. BEST LOCATION!,91268177,Beatriz,Manhattan,Chelsea,40.74436,-74.00729,Entire home/apt,447,3,3,2019-06-19,2.05,4,157 +34996046,A 29 units apt building...In a middle class area .,262312329,Alexander,Brooklyn,Fort Hamilton,40.61637,-74.02943,Private room,35,10,0,,,1,329 +34996136,AMAZING 2 BEDS IN MEATPACKING/CHELSEA MARKET!!,91268177,Beatriz,Manhattan,Chelsea,40.74372,-74.00601,Entire home/apt,447,3,3,2019-06-14,2.20,4,179 +34996955,Large 3Bed/2Bath: Elevator + Wash/Dryer!,263635162,Justin,Manhattan,Lower East Side,40.71736,-73.9827,Entire home/apt,600,4,3,2019-06-03,2.25,1,315 +34997003,Modern Skyline Penthouse Room & 20min to NYC!,18260299,Ota,Brooklyn,Bushwick,40.69316,-73.90741,Private room,37,4,0,,,6,29 +34997245,SoHo- 1BD Apt- Incredible Location! With Rooftop,9525999,Jackie,Manhattan,Little Italy,40.71978,-73.99681,Entire home/apt,255,3,1,2019-06-15,1,1,233 +34997345,Cozy 2Bed in the Heart of East Village!,263545490,Grace,Manhattan,East Village,40.725,-73.97903,Entire home/apt,320,3,3,2019-06-30,3,1,0 +34997360,MODERN TOWN-HOME 8BR/5BA + TERRACE Williamsburg,99410435,Joshua,Brooklyn,Williamsburg,40.71399,-73.94683,Entire home/apt,795,2,1,2019-06-14,1,3,298 +34997420,Your own room in Manhattan!,116272237,Amalia,Manhattan,Harlem,40.80676,-73.94884,Private room,65,11,0,,,1,48 +34997446,ENTIRE Home! 10BR/6BA + Private Garden SLEEPS 20+,16625273,Richard,Brooklyn,Williamsburg,40.71398,-73.94605,Entire home/apt,995,2,0,,,3,272 +34997666,BEAUTIFUL BUDGET STAY IN BROOKLYN 25MINS TO D/TOWN,88113848,Bunmi,Brooklyn,Borough Park,40.64172,-73.99265,Private room,56,1,4,2019-06-09,2.55,2,282 +34997773,AMAZING! 7bd/4ba TownHome + PATIO - 10 Mins To NYC,16625273,Richard,Brooklyn,Williamsburg,40.71495,-73.94726,Entire home/apt,695,2,1,2019-07-02,1,3,282 +34997828,Full Service 3 Bedroom Apartment-Washer Dryer,221200420,Adam,Manhattan,Murray Hill,40.74334,-73.97213,Entire home/apt,300,30,0,,,23,249 +34997863,Brand New Furnished Studio on Park Avenue #6121,113723310,Joe,Manhattan,Murray Hill,40.749,-73.98052,Entire home/apt,150,30,0,,,8,267 +34997894,entire apartment for rent,263670476,Algerchaabi,Brooklyn,Bay Ridge,40.6336,-74.02884,Entire home/apt,1800,30,0,,,1,335 +34997929,Amazing 3bd/2ba Town-Home In Prime Williamsburg,16625273,Richard,Brooklyn,Williamsburg,40.7149,-73.94585,Entire home/apt,295,2,2,2019-06-25,2,3,298 +34997985,Comfort and Safe Stay IN Brooklyn 25mins to D/Town,88113848,Bunmi,Brooklyn,Borough Park,40.64061,-73.99216,Private room,56,2,8,2019-07-06,5.45,2,365 +34998610,Amazing duplex - 5bed/4bath in prime Williamsburg,99410435,Joshua,Brooklyn,Williamsburg,40.7155,-73.94656,Entire home/apt,595,2,0,,,3,313 +34998614,Luxury 3 Bed 2 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.7444,-73.97297,Entire home/apt,300,30,0,,,23,319 +34998736,Room steps away from TIMES SQUARE,263676349,Hanna,Manhattan,Murray Hill,40.74616,-73.97522,Private room,119,3,1,2019-07-03,1,2,10 +34998820,Murray Hill SPacious 2 Bedroom-river View,221200420,Adam,Manhattan,Murray Hill,40.744,-73.97359,Entire home/apt,300,30,0,,,23,327 +34998955,Newly Renovated Cozy Studio on Park Avenue #6130,113723310,Joe,Manhattan,Murray Hill,40.74757,-73.98187,Entire home/apt,150,30,0,,,8,342 +34999128,Nice and cozy ✌ holiday apartment✿,255222056,Alex,Manhattan,Midtown,40.75869,-73.96725,Entire home/apt,195,5,12,2019-07-01,7.83,1,6 +34999260,The City View- 2 Bed 2 Bath,221200420,Adam,Manhattan,Murray Hill,40.7443,-73.97277,Entire home/apt,300,30,0,,,23,358 +34999415,DUPLUXURY Apartment 5 Star Duplex,67249971,Sayonara,Manhattan,Chelsea,40.75064,-73.99566,Entire home/apt,900,1,0,,,1,355 +34999606,2 Bedroom 1 Bathroom Marry Hill,221200420,Adam,Manhattan,Murray Hill,40.74457,-73.97168,Entire home/apt,210,30,0,,,23,343 +34999688,Modern Home 3 bed/1 bath 10 minutes to Manhattan,99410435,Joshua,Brooklyn,Williamsburg,40.71344,-73.94612,Entire home/apt,295,2,1,2019-06-16,1,3,321 +34999766,Converted 2 Bed 1 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.74442,-73.9717,Entire home/apt,225,30,0,,,23,343 +34999950,Luxury studio in Manhattan,220400948,Laura,Manhattan,Harlem,40.81508,-73.93742,Entire home/apt,120,30,0,,,1,0 +35000008,East River View- 2 Bed 1 Bath,221200420,Adam,Manhattan,Murray Hill,40.74463,-73.97307,Entire home/apt,250,30,0,,,23,311 +35000157,Luxury 3 Bed in The Big Apple,263684024,Walid,Manhattan,Murray Hill,40.74459,-73.97436,Entire home/apt,600,4,5,2019-07-01,4.69,1,167 +35000294,2 Bed 1 Bath Cozy Apartment,221200420,Adam,Manhattan,Murray Hill,40.74425,-73.97137,Entire home/apt,220,30,0,,,23,325 +35000403,Central Park 4 Bed Steps to Train + Ground floor!,2133558,Felipe,Manhattan,Upper West Side,40.7983,-73.96115,Entire home/apt,450,4,4,2019-07-01,3.08,1,345 +35000464,New Amazing Studio on Park Avenue #6123,113723310,Joe,Manhattan,Murray Hill,40.74886,-73.98184,Entire home/apt,150,30,0,,,8,281 +35000509,SPACIOUS 1 BED AMAZING VIEW,221200420,Adam,Manhattan,Murray Hill,40.7442,-73.97176,Entire home/apt,200,30,0,,,23,330 +35000596,Sun-Splashed Midtown 3BED Penthouse LOFT,259645972,Maria,Manhattan,Midtown,40.75661,-73.97186,Entire home/apt,399,6,1,2019-06-21,1,1,149 +35000600,Luxurious one bed high floor,221200420,Adam,Manhattan,Kips Bay,40.74322,-73.9722,Entire home/apt,200,30,0,,,23,353 +35000795,Cozy 2-Bedroom Loft Blocks away to Apollo Theater,102866746,Neh,Manhattan,Harlem,40.80529,-73.94718,Entire home/apt,300,2,1,2019-06-23,1,1,179 +35000978,Photo Studio Loft with a Terrace,263690856,Lilian,Queens,Long Island City,40.7473,-73.93914,Private room,389,1,0,,,1,296 +35000981,Amazing 6bd/2ba Duplex w/ Patio 5 mins to NYC,219908197,Anthony,Brooklyn,Williamsburg,40.71779,-73.94232,Entire home/apt,495,2,1,2019-06-13,1,3,341 +35001013,1 Bedroom 1 Bathroom Murray Hill,221200420,Adam,Manhattan,Murray Hill,40.74458,-73.97146,Entire home/apt,200,30,0,,,23,339 +35001278,"COUCH, ONLY LADYS, cerca a Manhattan",223087887,Jess & Ana,Queens,Corona,40.74206,-73.86628,Shared room,28,1,0,,,8,357 +35001433,High End One Bed One Bath Murry Hill,221200420,Adam,Manhattan,Kips Bay,40.7431,-73.9719,Entire home/apt,200,30,0,,,23,342 +35001663,Bedroom for sublet with GREAT VIEW in prime area,77477955,John,Manhattan,Stuyvesant Town,40.73159,-73.97472,Private room,72,14,0,,,1,128 +35001709,High end one Bedroom Apatment,221200420,Adam,Manhattan,Murray Hill,40.74455,-73.97296,Entire home/apt,200,30,0,,,23,342 +35002204,Spacious Room in a Renovated Apt in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.69237,-73.93446,Private room,75,1,2,2019-06-19,2,3,0 +35002311,Brand New One Bedroom Apartment in Bushwick,36564046,Jacinta,Brooklyn,Bushwick,40.6884,-73.91373,Entire home/apt,160,3,2,2019-06-29,2,1,23 +35002617,Nature Sanctuary,15285681,Alison,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92836,Private room,85,5,1,2019-06-09,1,1,35 +35003048,"In the heart of Bronx, Fordham University, Bx Zoo",109671307,Samita,Bronx,Norwood,40.8718,-73.87699,Private room,73,1,0,,,1,180 +35003080,"Spacious, Sunny, Beautiful: 142/Brdway (Long-term)",17621913,Christine,Manhattan,Harlem,40.82578,-73.95397,Entire home/apt,100,70,0,,,1,239 +35003154,Beautiful Brooklyn Vacation Home!,3371859,Jenny & Jose,Brooklyn,Crown Heights,40.67307,-73.93917,Entire home/apt,88,2,4,2019-06-30,3.53,2,31 +35003827,Spacious Room in the heart of Manhattan,263712096,Nacho,Manhattan,Murray Hill,40.74833,-73.98162,Private room,150,1,2,2019-06-26,2,3,73 +35004123,Quiet LES private room with private half bathroom,262114182,Charlton And Marcia,Manhattan,Lower East Side,40.71549,-73.97951,Private room,125,2,0,,,1,296 +35004646,Comfy Sofa Bed in shared space (girls only),197368927,Cebile,Brooklyn,Sheepshead Bay,40.60753,-73.95389,Shared room,30,2,2,2019-07-05,1.43,8,28 +35004930,Furnished Apartment in Queens,236530772,Maria,Queens,Jamaica Estates,40.72101,-73.79395,Entire home/apt,75,7,1,2019-06-07,0.91,2,14 +35005134,Sonder | 116 John | Sleek Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70799,-74.00627,Entire home/apt,100,29,0,,,327,326 +35005171,Sonder | 116 John | Quaint Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70673,-74.00565,Entire home/apt,100,29,0,,,327,347 +35005183,Sonder | 116 John | Comfortable Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70811,-74.00616,Entire home/apt,100,29,0,,,327,333 +35005197,Sonder | 180 Water | Pleasant 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70575,-74.00621,Entire home/apt,302,29,0,,,327,190 +35005222,Large 2bed/2bath Steps to Central Park!,159336075,Samm,Manhattan,Upper West Side,40.79837,-73.96061,Entire home/apt,400,4,3,2019-06-23,2.37,1,275 +35005234,Airy 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76067,-73.99771,Entire home/apt,180,29,0,,,327,302 +35005258,Sonder | 11th Ave | Lovely 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7622,-73.99673,Entire home/apt,189,29,0,,,327,332 +35005343,Sonder | 180 Water | Bold Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70745,-74.00613,Entire home/apt,175,29,0,,,327,37 +35005367,"Beautiful 3 bedroom close to Times Square, NYC",263721494,Tasmia,Queens,Woodside,40.74357,-73.90894,Entire home/apt,189,1,2,2019-07-05,2,1,212 +35005368,Large Private Room next Empire State Building,263712096,Nacho,Manhattan,Midtown,40.74808,-73.9834,Private room,145,1,0,,,3,68 +35005373,Amazing 3 Bed on Park Ave with Washer/Dryer #6114,113723310,Joe,Manhattan,Murray Hill,40.74892,-73.98155,Entire home/apt,350,30,0,,,8,312 +35005473,Awesome Renovated Studio in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.6904,-73.93463,Entire home/apt,92,1,9,2019-07-01,6.59,3,21 +35005489,Exquisite Park Slope Paradise,229604812,Jake,Brooklyn,Windsor Terrace,40.65863,-73.98495,Entire home/apt,300,3,0,,,1,335 +35005499,Cozy Corner next to the Empire State Building,263712096,Nacho,Manhattan,Midtown,40.74673,-73.98305,Shared room,60,1,0,,,3,43 +35005526,Exceptional 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Theater District,40.75708,-73.98283,Entire home/apt,177,29,0,,,327,343 +35005563,Charming 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.756,-73.98195,Entire home/apt,230,29,0,,,327,354 +35005592,Superior 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75547,-73.98245,Entire home/apt,177,29,0,,,327,336 +35005637,Sonder | Upper East Side | Stylish 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76277,-73.96317,Entire home/apt,160,29,0,,,327,311 +35005670,Sonder | Upper East Side | Lovely 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76307,-73.96295,Entire home/apt,184,29,0,,,327,335 +35005701,Sonder | The Nash | Playful 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7473,-73.97603,Entire home/apt,194,29,0,,,327,329 +35005774,Brand new 2 BEDROOMS BROOKLYN,48605276,Maria Y Diego,Brooklyn,Greenpoint,40.72006,-73.9462,Entire home/apt,400,4,0,,,1,355 +35005793,Sonder | The Nash | Bold 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74899,-73.97541,Entire home/apt,200,29,0,,,327,360 +35005797,Luxury 5BR/2Bath Steps to Central Park!,198836713,Chloe,Manhattan,Upper West Side,40.80154,-73.96106,Entire home/apt,550,3,5,2019-06-22,3.85,1,320 +35005829,Sonder | The Nash | Vibrant 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74725,-73.97607,Entire home/apt,202,29,0,,,327,365 +35005862,Sonder | 21 Chelsea | Classic 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74288,-73.99438,Entire home/apt,275,29,0,,,327,365 +35005877,Sonder | 21 Chelsea | Sophisticated 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74295,-73.99521,Entire home/apt,277,29,0,,,327,311 +35005936,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74451,-73.9727,Entire home/apt,162,29,0,,,327,341 +35005963,Sonder | Theater District | Bright 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.75954,-73.98604,Entire home/apt,217,29,0,,,327,357 +35006072,"UWS brownstone with Grdn, Guest Bdrm, 2 bthrms",90206857,Judy,Manhattan,Upper West Side,40.78263,-73.97623,Entire home/apt,180,2,6,2019-07-04,5.00,1,7 +35006121,Best Value ❤️Memorable Vacation,155313109,Alex,Manhattan,Midtown,40.76383,-73.98368,Entire home/apt,149,1,15,2019-07-01,9.78,1,121 +35006426,Cozy private room by the 7 train,263732662,Kwenhi,Queens,Sunnyside,40.73935,-73.92096,Private room,50,2,4,2019-07-01,2.73,1,180 +35007081,Amazing 3 bedroom in Williamsburg,3005203,Elnadiv,Brooklyn,Williamsburg,40.71697,-73.94227,Entire home/apt,295,2,1,2019-06-16,1,3,318 +35007111,Cozy room close to the airport.,48771484,Grace,Brooklyn,East New York,40.67109,-73.86841,Private room,70,1,1,2019-06-16,1,1,75 +35007140,Amazing 3bd/2ba Apt w/ Roofdeck 5 mins to NYC,3005203,Elnadiv,Brooklyn,Williamsburg,40.71701,-73.94082,Entire home/apt,295,2,1,2019-06-08,1,3,337 +35007203,Amazing 6 bedrooms on two floors in Williamsburg,3005203,Elnadiv,Brooklyn,Williamsburg,40.71574,-73.9414,Entire home/apt,495,2,0,,,3,282 +35007240,7BR Lux Townhouse w/ Patio! Best Village Location!,254624988,Matt,Manhattan,Greenwich Village,40.73655,-73.99618,Entire home/apt,1099,31,3,2019-06-14,2.31,1,193 +35007394,Gorgeous newly renovated 2 bedroom apartment,259669775,Sal,Brooklyn,Sheepshead Bay,40.60858,-73.9516,Entire home/apt,129,2,6,2019-07-07,6,2,86 +35008478,3 Bedroom Apt in Times Square,263744711,Jennifer,Manhattan,Hell's Kitchen,40.76299,-73.99478,Entire home/apt,400,3,1,2019-06-25,1,1,278 +35008548,Times Square room With Access to a Terrance,206451695,Vanessa,Manhattan,Hell's Kitchen,40.75949,-73.99567,Private room,181,2,0,,,3,362 +35008790,Luxurious 3 BEDROOM IN THE HEART OF TimeSqaure,263744321,Marcela,Manhattan,Hell's Kitchen,40.76275,-73.99271,Entire home/apt,428,3,1,2019-07-01,1,1,244 +35009512,"One bedroom in Williamsburg, Brooklyn",31607477,Sophie,Brooklyn,Williamsburg,40.70838,-73.95366,Entire home/apt,123,2,2,2019-06-30,2,1,1 +35009677,Lucky journey 幸运旅程,192895513,Vivi,Queens,Flushing,40.7562,-73.83071,Private room,88,3,1,2019-06-16,1,3,336 +35009785,Shared room sofa bed (girls only),197368927,Cebile,Brooklyn,Sheepshead Bay,40.60911,-73.95257,Shared room,20,2,0,,,8,32 +35010022,New! Entire private luxury apt near 3 trains!,263760960,Bella,Brooklyn,Bushwick,40.69605,-73.92423,Entire home/apt,89,1,8,2019-07-01,5.58,1,305 +35010066,Hidden Oasis steps from stadium minutes from City,263760411,Jasmine And Isaac,Bronx,Concourse,40.83207,-73.92068,Private room,42,2,0,,,1,326 +35010433,温馨旅店(2),263740985,Yongqiu,Queens,Flushing,40.75291,-73.83135,Private room,80,1,2,2019-06-06,1.76,3,359 +35010481,Cozy Room in Charming Sunny Loft,2449047,Jen,Brooklyn,Williamsburg,40.70625,-73.92815,Private room,150,2,0,,,1,176 +35010988,Bright Top Floor Tower - Two Blocks from Q Train,80593865,Abbott,Manhattan,Upper East Side,40.78012,-73.95079,Entire home/apt,111,2,4,2019-06-25,3.33,1,12 +35011803,"❤️A Private Studio On Roof, Private bath + Deck",228473476,Mia,Brooklyn,Bushwick,40.69469,-73.92475,Private room,90,5,7,2019-07-04,5.12,1,133 +35012326,Your own apartment in Lower Manhattan,263777041,Chuck,Manhattan,Two Bridges,40.71089,-73.99671,Entire home/apt,109,1,9,2019-06-13,6.00,1,6 +35012500,NEWLY RENOVATED!!! LUCAS 1BR APT NEAR JFK/LGA,137890627,Willie,Queens,Rosedale,40.65535,-73.74449,Entire home/apt,68,2,5,2019-06-30,3.95,1,95 +35013529,Cozy Room 4 Min Walk From Train,236853675,Jojo,Brooklyn,Crown Heights,40.67145,-73.93355,Private room,38,1,1,2019-05-28,0.70,1,88 +35013796,Small Private Room in Upper East Side #5,1786901,Shai,Manhattan,Upper East Side,40.78307,-73.94578,Private room,69,4,0,,,9,17 +35021821,Amazing 2 bedrooms apt close to Central Park,180384868,Manuel,Manhattan,Upper West Side,40.77081,-73.99036,Entire home/apt,360,2,2,2019-06-23,2,1,89 +35023304,The best home away from home!,263843788,Diana,Queens,Sunnyside,40.74143,-73.9229,Entire home/apt,145,2,7,2019-07-01,5.68,1,14 +35023313,Joyful,263843486,Joe,Queens,Richmond Hill,40.70053,-73.82372,Entire home/apt,120,2,2,2019-07-05,2,1,336 +35023464,4 Bedrooms 4 Baths at Midtown East Manhattan,146005201,Aaron Paul,Manhattan,Midtown,40.75821,-73.96313,Entire home/apt,650,30,0,,,1,310 +35025129,Greenpoint Williamsburg only min to the city,312722,Kristian & Di,Brooklyn,Greenpoint,40.72572,-73.95664,Private room,250,29,0,,,4,157 +35025851,HUGE & COZY 3 BEDROOMS IN HEART OF MANHATTAN!!,226119185,Jay,Manhattan,Hell's Kitchen,40.76796,-73.98891,Entire home/apt,599,3,6,2019-07-03,4.74,1,199 +35025881,Luxury studio in Manhattan New York,17984804,Randy & Judy,Manhattan,Hell's Kitchen,40.76089,-74.0003,Entire home/apt,200,7,0,,,1,308 +35025921,New Studio in UWS steps from Central Park #6122,116305897,Laura,Manhattan,Upper West Side,40.78873,-73.97381,Entire home/apt,150,30,0,,,9,200 +35026069,Small Studio/Private Room - Heart of East Village,121909760,Brian,Manhattan,East Village,40.72657,-73.98757,Private room,100,2,3,2019-06-23,3,1,0 +35026159,New! Modern 2/1 Steps to Central Park!,263853262,Jason,Manhattan,Upper West Side,40.7997,-73.95946,Entire home/apt,330,4,5,2019-07-06,3.85,1,325 +35026161,Cozy Studio in UWS Luxury Building with Gym #6107,116305897,Laura,Manhattan,Upper West Side,40.78908,-73.97231,Entire home/apt,150,30,0,,,9,311 +35026452,Spacious Midtown East Studio,78290016,Nadia,Manhattan,Midtown,40.7601,-73.97042,Entire home/apt,179,2,3,2019-07-01,3,1,128 +35026962,Beautiful Studio in the heart of Midtown,98673234,Anna,Manhattan,Upper East Side,40.76365,-73.96187,Entire home/apt,185,2,7,2019-07-01,6.56,1,107 +35028223,Cozy Central Park Studio!: 2Min to Train,263641050,Daniel,Manhattan,East Harlem,40.7988,-73.94339,Entire home/apt,200,4,5,2019-06-30,3.95,1,303 +35028448,Renovated Private Bedroom in Upper Manhattan,20352964,Pantelis,Manhattan,Washington Heights,40.84732,-73.93747,Private room,50,15,0,,,1,8 +35028480,4 Bedrooms 4 Bathrooms at Sutton Place Manhattan,156295223,Abigael,Manhattan,Midtown,40.75939,-73.96177,Entire home/apt,650,30,0,,,1,303 +35029487,Beautiful Studio APT in the heart of K-TOWN,76971491,Kyeng Tae,Manhattan,Midtown,40.7482,-73.98599,Entire home/apt,180,1,3,2019-06-19,3,1,259 +35029537,Beautiful Shared apt in Times Square 3,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76514,-73.98775,Shared room,75,1,2,2019-06-13,1.82,7,362 +35029551,3000 sq. ft. Designer Loft in the heart of NYC,29001886,Ella,Manhattan,East Village,40.73256,-73.99102,Entire home/apt,700,6,0,,,1,9 +35029677,The Sutton Place 2 Bedroom Apartment,61396454,Ash,Manhattan,Midtown,40.75547,-73.96248,Entire home/apt,300,30,0,,,14,0 +35029871,Central Cozy Cobble Hill Gem,263883589,Zach,Brooklyn,Boerum Hill,40.68873,-73.98929,Entire home/apt,220,30,2,2019-07-07,2,2,82 +35030427,Lovely Studio APT in the center of K-TOWN,76981930,Werner,Manhattan,Midtown,40.74848,-73.98631,Entire home/apt,180,1,4,2019-06-22,4,1,262 +35030460,BEAUTIFUL ROOM WITH GARDEN VIEW!,10975951,Ayla Silvia,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94499,Private room,60,2,2,2019-06-23,1.67,1,1 +35030571,Bohemian bed & breakfast in the heart of Astoria!,49292377,Hannah,Queens,Ditmars Steinway,40.77132,-73.90474,Private room,75,1,5,2019-06-30,4.17,1,167 +35030589,Family Place in❤️of Manhattan,216939636,Alex,Manhattan,Hell's Kitchen,40.76392,-73.98805,Entire home/apt,155,1,11,2019-07-05,7.33,1,163 +35030835,Wonderful Studio Apt in the middle of K-TOWN,65801035,Doil,Manhattan,Midtown,40.74646,-73.9863,Entire home/apt,180,1,2,2019-06-24,2,1,254 +35031082,Gorgeous Studio Apt in the area of K-TOWN,150319226,Olivia,Manhattan,Midtown,40.74669,-73.98749,Entire home/apt,180,1,7,2019-06-23,7,1,249 +35031409,Cozy & Clean Studio Apt in K-TOWN,123936733,Ara,Manhattan,Midtown,40.74847,-73.98629,Entire home/apt,180,1,5,2019-06-19,3.41,1,260 +35031778,#GorgeousLowerEast2BedroomGem! #3minWalktoTrain!,263886728,Anslo,Manhattan,Lower East Side,40.71949,-73.98607,Entire home/apt,400,4,5,2019-06-30,3.75,1,327 +35031939,"BIG APARTMENT. NEW AC ROOM, HUDSON RIVER. COMFY.",263896559,Moises,Manhattan,Harlem,40.82204,-73.95566,Private room,60,1,4,2019-07-06,3.24,3,211 +35032636,Private Room w/a Patio in Center of Manhattan!,263901573,Maria,Manhattan,Midtown,40.75476,-73.97118,Private room,135,1,4,2019-06-18,4,3,29 +35032803,"Cozy,Shared Place in Heart of Manhattan WEST 4",263880607,Ahmet,Manhattan,Hell's Kitchen,40.76501,-73.98892,Shared room,79,1,2,2019-06-04,1.58,7,365 +35033070,Sunny Apt on Treelined Street 2 blocks from trains,1274264,Kristen,Brooklyn,Sunset Park,40.64918,-74.00756,Entire home/apt,100,7,0,,,1,66 +35033521,Shared room in Midtown Near Times Square 5,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76356,-73.98814,Shared room,77,1,2,2019-06-23,1.62,7,362 +35033674,Cozy 1 Bedroom Apartment near Yankee Stadium,18506733,Michelle,Bronx,Melrose,40.82374,-73.91555,Entire home/apt,59,2,2,2019-06-17,2,1,0 +35033921,"Shared,Cozy Room İn Times Square 6",263880607,Ahmet,Manhattan,Hell's Kitchen,40.76509,-73.98795,Shared room,77,1,3,2019-07-01,2.00,7,365 +35034032,Sonder | 116 John | Vibrant 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70861,-74.00479,Entire home/apt,137,29,0,,,327,347 +35034410,Heart of the East Village Apartment,144582127,Ted,Manhattan,East Village,40.72764,-73.98712,Private room,100,3,1,2019-06-11,1,1,67 +35034543,Shared Apt by Central Park in Hell's Kitchen 7,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76424,-73.98916,Shared room,69,1,8,2019-06-21,6.32,7,357 +35034773,Private Room near Times Square 1,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76404,-73.98973,Private room,120,1,5,2019-07-01,3.33,7,352 +35035202,"Bronx, Little Italy, Arthur Ave, Fordham, Yanks.",256683560,Jorge,Bronx,Belmont,40.85539,-73.88769,Private room,69,1,3,2019-06-30,3,2,359 +35035291,Private Room İn Hell's Kitchen 2,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76487,-73.98912,Private room,120,1,1,2019-06-09,1,7,198 +35035847,TimeSquare High-level modern apartment 1BDR!,42174219,Zack,Manhattan,Theater District,40.76113,-73.98557,Private room,180,2,1,2019-06-01,0.77,1,31 +35036056,Beautiful Spacious Apartment! Comfortable Place.,263896559,Moises,Manhattan,Harlem,40.82172,-73.95618,Private room,60,1,4,2019-07-01,4,3,209 +35036124,Awesome Apt 7 Beds Sleeps 12 in Brooklyn By Train,220152135,Peter,Brooklyn,Bedford-Stuyvesant,40.68957,-73.92659,Private room,200,2,2,2019-06-16,1.40,1,334 +35037136,10 Beds Sleeps 15 Laundry in Apt in Williamsburg,120111937,Madea And Julian,Brooklyn,Williamsburg,40.70865,-73.96673,Entire home/apt,549,30,5,2019-06-23,3.33,1,333 +35037457,COZY PRIVATE ROOM / PRIVATE BATHROOM IN BROOKLYN,36712060,Charlotte,Brooklyn,Bedford-Stuyvesant,40.69634,-73.93445,Private room,50,2,4,2019-07-02,4,1,0 +35037586,Spacious home with views of Gramercy Park,72686340,Anne-Marie,Manhattan,Gramercy,40.73891,-73.98657,Entire home/apt,136,4,0,,,1,148 +35037973,Summer in ny,50400614,Kobi,Manhattan,Washington Heights,40.84176,-73.93738,Private room,65,3,0,,,1,0 +35037976,Midtown Steal by Rockefeller Center,263901573,Maria,Manhattan,Midtown,40.75455,-73.9695,Private room,125,1,8,2019-07-03,8,3,123 +35038031,❤❤❤ Luxe 3bdrm + Parking 10 mins to Manhattan,71082276,Jean,Queens,Long Island City,40.75823,-73.93114,Entire home/apt,295,3,4,2019-06-24,4,1,302 +35038048,Modern Luxury near Gramercy Park: 3 Bed/2 Bath,263901827,Lidia,Manhattan,Murray Hill,40.74525,-73.97225,Entire home/apt,385,3,3,2019-06-25,3,1,311 +35038124,Gorgeous Downtown Flat With Huge Rooftop Terrace,99246264,Jeremy,Manhattan,Midtown,40.75911,-73.97011,Entire home/apt,479,2,3,2019-07-02,3,1,120 +35038269,"Comfy Space in Living Room, Midtown Manhattan",263901573,Maria,Manhattan,Midtown,40.75624,-73.97171,Shared room,99,1,9,2019-07-03,7.50,3,15 +35038426,Private 2 beds Studio w/sofa Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74781,-73.98769,Entire home/apt,260,2,2,2019-06-22,2,13,292 +35038658,"LGA,TimeSquare,JFK,Queens PrivateBD,BHroom",263945896,Alin,Queens,Elmhurst,40.74696,-73.87912,Private room,45,2,3,2019-07-01,2.14,1,64 +35039302,Charming 1 Bedroom Apartment In The Heart of NYC,76168072,Paul,Manhattan,Midtown,40.75974,-73.97067,Entire home/apt,235,2,4,2019-07-02,4,1,129 +35039831,Habitacion confortable. Entrada independiente...,263955551,Raul,Queens,College Point,40.78714,-73.84378,Entire home/apt,87,2,0,,,1,358 +35039936,New 1 bedroom apartment in luxury building,263957584,Sara,Brooklyn,Bushwick,40.69971,-73.93068,Entire home/apt,198,9,4,2019-07-01,3.33,2,159 +35040055,★★Cute flat in ❤ of Manhattan★★,258639206,Alex,Manhattan,Hell's Kitchen,40.75484,-73.9939,Entire home/apt,275,1,13,2019-07-05,8.86,1,189 +35040098,Trendy One Bedroom Apartment in UES,62560525,Saud,Manhattan,East Harlem,40.78766,-73.9423,Entire home/apt,134,3,2,2019-06-20,2,1,26 +35040805,Amazing Location! 1 Bedroom Apartment Downtown,57291971,Regina,Manhattan,Midtown,40.76044,-73.97012,Entire home/apt,199,2,3,2019-07-01,3,1,67 +35040813,Lucky's Sunshine Fabulous Hideaway,263494912,Avelino,Queens,Long Island City,40.76263,-73.93547,Private room,59,1,2,2019-06-04,1.54,1,349 +35041121,Luxury new East Williamsburg 1 bedroom apartment.,263957584,Sara,Brooklyn,Bushwick,40.69824,-73.92888,Entire home/apt,198,30,3,2019-07-03,2.65,2,114 +35042058,"Big one bedroom apt, new and beautiful.",19342,Rivka,Manhattan,Upper West Side,40.799,-73.96315,Entire home/apt,11,7,0,,,1,273 +35042440,NYC 25 min from Staten IS Ferry Cozy 1br house,218955580,Yuriy,Staten Island,Mariners Harbor,40.6357,-74.15478,Entire home/apt,80,1,4,2019-07-07,4,1,140 +35042474,法拉盛中心地段单身客房,263742622,Nan,Queens,Flushing,40.76377,-73.82692,Private room,50,1,6,2019-06-30,5.45,1,74 +35043094,Comfy Home ~ 2nd Floor,263984220,Joyann,Queens,Springfield Gardens,40.66316,-73.74804,Entire home/apt,150,3,1,2019-06-30,1,1,365 +35044394,Monica’s cozy room,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94637,Private room,140,1,0,,,3,364 +35044981,Home away from Home (2 Bedroom Apartment),263999712,Juan,Manhattan,Kips Bay,40.74392,-73.97741,Entire home/apt,181,1,2,2019-06-23,2,1,167 +35050872,"Cozy 4BR in FIDI, next to Wall St & One World Trad",260154981,Mats,Manhattan,Financial District,40.71055,-74.00623,Entire home/apt,395,3,5,2019-06-19,4.55,1,65 +35054863,"Summer in a sunny, top floor twin",229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92503,Private room,45,2,5,2019-06-26,4.29,3,257 +35055076,Balcony with Room! Close to LGA and JFK.,256290334,Aisling,Queens,Richmond Hill,40.70254,-73.8322,Private room,65,1,17,2019-07-05,13.42,1,157 +35055437,NYC Prime Location! Beautiful Big Apartment! Enjoy,263896559,Moises,Manhattan,Harlem,40.82132,-73.95441,Private room,57,1,3,2019-07-05,3,3,249 +35056385,Cozy Brooklyn getaway,85946234,Dina,Brooklyn,Flatbush,40.64669,-73.95921,Private room,65,1,1,2019-06-02,0.79,1,80 +35056734,Three Blocks to Times Square & Central Park,178164173,Ale,Manhattan,Hell's Kitchen,40.76394,-73.99466,Shared room,400,1,0,,,1,44 +35057815,"LUXURY 2ND FL,4BR/2 FUL BTH,SLEEP 8+,15MIN-JFK/LGA",215385823,Az,Queens,Jamaica Hills,40.71209,-73.80151,Entire home/apt,325,2,4,2019-07-08,4,2,124 +35058541,"Clean, Cozy, Private Bath & Bedroom Apartment",264088176,Cecilia,Bronx,Throgs Neck,40.81869,-73.82233,Entire home/apt,99,2,3,2019-07-05,3,1,120 +35059067,Gorgeous Large private room near LGA (#5),264092618,Ajmol,Queens,East Elmhurst,40.76444,-73.87238,Private room,90,1,7,2019-06-27,5.38,5,73 +35059177,3 Bedroom Apartment near Central Park,10689761,Hannah,Manhattan,Upper West Side,40.79599,-73.96659,Entire home/apt,600,30,0,,,1,319 +35059538,Large private room with a queen bed near LGA (#4),264092618,Ajmol,Queens,East Elmhurst,40.76411,-73.87373,Private room,70,1,13,2019-07-07,9.07,5,88 +35059681,Private small room with a queen bed near LGA (#03),264092618,Ajmol,Queens,East Elmhurst,40.76481,-73.87242,Private room,60,1,15,2019-07-07,10.23,5,89 +35059840,Coote Luxe Suite - Modern and Comfortable APT,263969450,Damiso,Brooklyn,Canarsie,40.64127,-73.89119,Entire home/apt,100,2,11,2019-07-05,7.50,1,167 +35060103,Bushwick Gardens apt,132709847,Gabby,Brooklyn,Bushwick,40.69214,-73.92379,Entire home/apt,89,1,0,,,1,0 +35060288,"Beautiful, Spacious, Sunny 1 Bed apt. with Rooftop",264101088,Roza,Manhattan,East Village,40.72604,-73.98843,Entire home/apt,255,5,2,2019-06-29,2,1,11 +35060675,HUGE triplex with rooftop and private garden,14703729,Benoit,Brooklyn,Crown Heights,40.67623,-73.93642,Entire home/apt,350,3,2,2019-07-01,2,1,46 +35060992,Beautiful Apartment in Brooklyn,945144,Tome,Brooklyn,Crown Heights,40.66701,-73.93861,Entire home/apt,88,10,0,,,1,6 +35061907,"Sunny Apt by Park, Blvd , BK Museum & Library",264113441,Rob,Brooklyn,Crown Heights,40.67463,-73.9606,Private room,65,31,0,,,1,328 +35062211,New Cozy Suite in Private home on quiet street .,30267389,Chandraki,Bronx,Wakefield,40.89323,-73.85215,Private room,160,2,0,,,1,364 +35062294,Sunny Studio by Central Park!,263711950,Phyllis,Manhattan,East Harlem,40.80098,-73.94261,Entire home/apt,180,3,3,2019-06-25,2.37,1,308 +35062731,⋆ Luxury FiDi Terrace Apt w/ Brooklyn Bridge views,180141907,Jose,Manhattan,Financial District,40.70659,-74.00501,Entire home/apt,299,4,0,,,1,83 +35062818,UES loft near hospitals,16259898,Moni,Manhattan,Upper East Side,40.76329,-73.96235,Entire home/apt,250,7,0,,,1,11 +35063045,Cozy 2BDR on mulberry st little italy/china town,61990664,Sonny,Manhattan,Little Italy,40.71837,-73.99768,Entire home/apt,190,5,2,2019-06-22,1.67,1,300 +35063377,"Bright, loft-style room in prime Williamsburg",10400953,Antje,Brooklyn,Williamsburg,40.71544,-73.96003,Private room,100,5,0,,,1,12 +35064014,Peaceful.,264128458,Nathaniel,Brooklyn,Fort Greene,40.69026,-73.97074,Private room,50,1,4,2019-06-24,3.08,1,336 +35064019,Divine Harlem Getaway,212263525,SamariSankofa,Manhattan,Harlem,40.81149,-73.94024,Entire home/apt,150,1,6,2019-07-01,4.09,3,352 +35064196,Theater District / Times Sq / Central Park - 1 BDR,228715959,Riki,Manhattan,Hell's Kitchen,40.76284,-73.99003,Entire home/apt,160,1,2,2019-06-23,2,1,55 +35064738,Hudge Appartment in Manhattan,35276933,Mohamed,Manhattan,Washington Heights,40.85638,-73.92921,Entire home/apt,80,70,0,,,1,37 +35064797,Prime location West Village private room,10445838,Simon,Manhattan,West Village,40.73435,-74.00392,Private room,150,3,2,2019-06-22,2,1,34 +35065083,Best views in the city is here,3398621,Nikita,Brooklyn,Brooklyn Heights,40.69664,-73.99467,Entire home/apt,140,2,1,2019-06-10,1,1,0 +35065348,MASTER ROOM # 2 Near from JFK & LGA Airport.,214738765,Lucio,Queens,Richmond Hill,40.6944,-73.83192,Private room,75,1,5,2019-07-05,4.05,3,365 +35065615,downtown brooklyn dream stay,90112329,Sandra,Brooklyn,Downtown Brooklyn,40.69791,-73.98381,Entire home/apt,279,4,1,2019-06-24,1,1,23 +35066003,Brooklyn's Gorgeous Garden Apt. 25' to Downtown.,47532,Tika,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92617,Entire home/apt,169,4,0,,,1,6 +35066396,Center of Hipster Astoria 4bd 2bath 2blocks Subway,263694567,Juka,Queens,Astoria,40.76238,-73.91721,Private room,395,1,1,2019-06-30,1,1,333 +35066800,Highly nice area beautiful place too visit,264156969,Neal,Queens,Arverne,40.59279,-73.79993,Private room,80,1,1,2019-07-06,1,1,90 +35067259,Comfort,264157833,Margo,Brooklyn,Bedford-Stuyvesant,40.68406,-73.93967,Entire home/apt,300,2,0,,,1,87 +35067483,Quiet modern 2BR in Hells Kitchen with elevator,245013643,Daria,Manhattan,Hell's Kitchen,40.76506,-73.98507,Entire home/apt,285,30,0,,,2,336 +35069416,005 Comfy and Pleasant Shared Room,137999892,Simranjeet,Staten Island,Concord,40.60625,-74.089,Shared room,30,4,1,2019-06-01,0.77,7,68 +35069663,Apartamento compartido NYC.,264182618,Jesus A,Bronx,Fordham,40.85743,-73.90233,Shared room,22,1,1,2019-06-03,0.83,1,11 +35069936,Gorgeous Apartment near Time Square,263896143,Valeria,Manhattan,Hell's Kitchen,40.76256,-73.9904,Entire home/apt,390,3,3,2019-06-19,2.57,1,43 +35070555,Gorgeous Apt close to ❤️Times Square❤️,264144069,Alex,Manhattan,Hell's Kitchen,40.76512,-73.98726,Entire home/apt,500,1,11,2019-06-30,7.86,1,180 +35071302,Superb apartment in❤of Manhattan★,264143491,Alex,Manhattan,Greenwich Village,40.73108,-74.00114,Entire home/apt,500,1,7,2019-07-01,5.12,1,185 +35075812,Private Room in 2BD near Grand Central,52319188,Nick,Manhattan,Murray Hill,40.7472,-73.97278,Private room,500,2,0,,,1,43 +35076834,"Designer owned, newly renovated Bed Stuy flat",6788279,Brad,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91553,Entire home/apt,97,1,2,2019-06-26,2,1,92 +35079012,Amazing Williamsburg Apartment,1722490,Dom,Brooklyn,Williamsburg,40.72096,-73.95528,Entire home/apt,150,5,0,,,1,0 +35079670,Entire one-bedroom apartment in heart of Harlem!,9524788,Nicole,Manhattan,East Harlem,40.80619,-73.94174,Entire home/apt,125,2,1,2019-07-03,1,1,1 +35080347,Downtown Manhattan apartment,117317499,Sophie,Manhattan,Lower East Side,40.71345,-73.98678,Entire home/apt,200,5,0,,,1,32 +35080969,Gorgeous 2BR Apartment in Manhattan Center,263206972,Raquel,Manhattan,Kips Bay,40.74125,-73.98125,Entire home/apt,294,3,5,2019-07-04,4.41,1,64 +35081477,West Village Gem! Like Paris,196890,Siobhan,Manhattan,West Village,40.72905,-74.00294,Entire home/apt,165,2,2,2019-06-23,1.62,1,21 +35081665,#2 Hotel-like Private Room KING Bed near JFK,263504959,David,Queens,Woodhaven,40.6929,-73.86378,Private room,50,1,10,2019-07-04,10,8,273 +35082055,NY style 2 Bedroom apartment,253308587,Stef,Manhattan,Chinatown,40.71752,-73.99387,Entire home/apt,295,4,3,2019-06-14,2.73,1,169 +35082227,The aqua roon or the peach room,264267484,Natasha,Brooklyn,East New York,40.6613,-73.88756,Private room,100,2,1,2019-06-24,1,1,270 +35082332,"SPACIOUS, bright 3BD apartment",248056954,Isabelle,Brooklyn,Williamsburg,40.71018,-73.95377,Entire home/apt,180,4,0,,,1,23 +35082713,The Glamper Van,10407935,Meng,Manhattan,SoHo,40.72765,-74.00213,Entire home/apt,89,1,6,2019-06-30,4.74,8,70 +35084043,Cozy Private Studio near Times Square,191976506,Vivian,Manhattan,Hell's Kitchen,40.76831,-73.98515,Entire home/apt,199,3,0,,,2,361 +35084260,Gorgeous Private Studio near Central Park,191976506,Vivian,Manhattan,Hell's Kitchen,40.76795,-73.98381,Entire home/apt,199,3,0,,,2,365 +35085042,"Gorgeous, spacious Brooklyn Studio",189994854,Ethan,Brooklyn,Gowanus,40.67753,-73.99084,Entire home/apt,110,30,1,2019-07-01,1,1,1 +35085643,Huge light & plant-filled Williamsburg condo,1040374,Eric,Brooklyn,Williamsburg,40.71909,-73.95408,Entire home/apt,250,3,4,2019-06-25,4,1,0 +35085802,Huge bedroom with private access to backyard.,201987117,Gershon,Queens,Ridgewood,40.70629,-73.91281,Private room,70,1,1,2019-05-27,0.68,1,0 +35085826,A Simple Studio.,264149311,Geralde,Queens,St. Albans,40.69362,-73.76953,Entire home/apt,99,2,9,2019-07-03,7.94,1,167 +35085934,Greenpoint / East Williamsburg Oasis,264294681,Caity,Brooklyn,Williamsburg,40.72035,-73.94117,Entire home/apt,125,6,0,,,1,0 +35086171,3 rooms apartment in Downtown Flushing!,264296595,Hyunsung,Queens,Flushing,40.75837,-73.82529,Entire home/apt,90,1,3,2019-06-27,3,3,104 +35086252,Modern Spacious Apartment,99642772,Anna,Brooklyn,Downtown Brooklyn,40.69561,-73.9878,Entire home/apt,210,5,0,,,1,0 +35088621,Nice quiet room available in manhattan,218259081,Monisha,Manhattan,Harlem,40.82622,-73.93489,Private room,50,1,0,,,1,365 +35088935,"Cozy, Charming and Accessible UES Apartment",37037135,John,Manhattan,Upper East Side,40.77166,-73.94665,Entire home/apt,150,2,2,2019-06-29,2,1,4 +35089556,"Large, Cozy Escape in B'klyn.",221275418,Rufina,Brooklyn,Crown Heights,40.67653,-73.93556,Private room,55,2,3,2019-07-06,3,3,174 +35090082,Williamsburg Railroad Apartment,12313907,William,Brooklyn,Williamsburg,40.72027,-73.9588,Entire home/apt,200,3,5,2019-06-23,3.57,1,163 +35090364,Bay Ridge comfortabel house,78109201,Yong,Brooklyn,Fort Hamilton,40.61735,-74.03,Entire home/apt,150,5,0,,,1,162 +35090587,Girls only,264327510,Yaren,Queens,Sunnyside,40.74351,-73.92281,Private room,50,3,4,2019-06-28,4,1,0 +35091010,Luxurious cozy private room near LGA (#02),264092618,Ajmol,Queens,East Elmhurst,40.76625,-73.87347,Private room,60,1,12,2019-07-04,8.18,5,87 +35091116,Luxurious Large private room near LGA (#01),264092618,Ajmol,Queens,East Elmhurst,40.76566,-73.87215,Private room,70,1,11,2019-07-05,7.50,5,78 +35092409,Great bedroom near yankee stadium,232652308,Hector,Bronx,Claremont Village,40.83894,-73.91158,Private room,34,2,0,,,1,9 +35092433,Down town Flushing facing botanical garden,264150720,Steven,Queens,Flushing,40.7482,-73.83113,Private room,50,1,4,2019-07-01,3.16,1,333 +35092820,Fantastic 2 Bedroom Apt Near Times Square,263753140,Neal,Manhattan,Hell's Kitchen,40.76194,-73.99074,Entire home/apt,350,1,2,2019-06-22,2,1,304 +35093378,Exclusive renovated 1bd apt in Hell's Kitchen,68561893,Sean,Manhattan,Hell's Kitchen,40.76568,-73.98636,Entire home/apt,225,3,0,,,1,151 +35093823,Quiet garden suite w/ kitchenette & backyard patio,264360482,Steve & Stephanie,Brooklyn,Crown Heights,40.67165,-73.95644,Entire home/apt,130,3,3,2019-06-16,2.43,1,74 +35096173,Like Warm Apple Pie!,264109370,Gabriel&Anais,Manhattan,East Harlem,40.78891,-73.94399,Entire home/apt,151,3,2,2019-06-24,2,1,11 +35096397,Cozy Studio apartment,257623201,Hank,Brooklyn,Flatlands,40.6261,-73.94578,Entire home/apt,75,1,8,2019-06-26,5.58,1,149 +35096744,Evergreen Modern | ♥ Lovely Room for 2 ♥,252641757,Jess,Brooklyn,Bedford-Stuyvesant,40.68526,-73.92693,Private room,65,1,6,2019-07-07,5.45,1,180 +35096805,Spacious Bushwick Home w/ Zen Garden & Yoga Loft,5273020,Stéphen,Brooklyn,Bushwick,40.69388,-73.92564,Private room,100,3,1,2019-06-30,1,1,40 +35097415,2-bedroom Queens apartment with backyard,2883347,Paul,Queens,Glendale,40.70506,-73.87073,Entire home/apt,150,2,2,2019-06-23,2,1,45 +35097684,"Cute, clean, quiet room in trendy east village",12259864,Alessandra,Manhattan,Stuyvesant Town,40.73232,-73.97784,Private room,68,3,1,2019-06-16,1,1,22 +35098251,Rare Spacious City Apartment - WIFI & GYM,28464830,Sam,Manhattan,Murray Hill,40.74653,-73.97891,Entire home/apt,650,3,2,2019-07-01,1.71,1,84 +35100775,Luxury & Stylish 2BR in Manhattan next to Time Sq,260157173,Sindre,Manhattan,Hell's Kitchen,40.76077,-73.99427,Entire home/apt,425,3,3,2019-06-30,3,1,54 +35108156,"Luxury & Bright 2BR, Midtown Manhattan",180960990,Ethan,Manhattan,Hell's Kitchen,40.75971,-73.99256,Entire home/apt,445,2,1,2019-06-09,1,1,60 +35109246,Bedroom in heart of Cobble Hill BK w/ private roof,88988332,Dorothea,Brooklyn,Cobble Hill,40.68929,-73.99656,Private room,1750,30,0,,,1,179 +35112957,Modern 2BR Apartment in Financial District,264447713,Louis,Manhattan,Financial District,40.70624,-74.01006,Entire home/apt,225,3,3,2019-06-23,2.50,1,68 +35114189,2 Bedroom modern Apt in Upper West Side,1788010,Justyna,Manhattan,Upper West Side,40.77198,-73.98931,Entire home/apt,220,30,0,,,1,31 +35114837,This adorable one bedroom on West 21st St/Chelsea,224489730,Rachel,Manhattan,Chelsea,40.74506,-73.99935,Entire home/apt,154,30,0,,,2,0 +35115408,Gorgeous Room Private Bathroom in Luxury Apartment,32207206,Ian,Brooklyn,Bushwick,40.70034,-73.92869,Private room,98,2,2,2019-06-11,2,1,55 +35115612,Quiet Manhattan Apartment,264495166,Jordania,Manhattan,Morningside Heights,40.8019,-73.95924,Private room,210,1,1,2019-06-20,1,3,86 +35115893,Beautiful and comfortable Upper East Side location,2429094,Petra,Manhattan,Upper East Side,40.76063,-73.95938,Entire home/apt,140,3,1,2019-07-06,1,1,0 +35117050,Room for rent. WiFi included. Near shopping center,84260385,Samantha,Queens,Corona,40.73505,-73.86144,Private room,70,1,0,,,1,179 +35117522,Coolest affordable room in Williamsburg!,79723533,Matías,Brooklyn,Williamsburg,40.70552,-73.94223,Private room,52,3,3,2019-07-01,3,1,68 +35117804,Outstanding 2BR apartment 5 min from Javits,260383802,Sebastian,Manhattan,Hell's Kitchen,40.75526,-73.99876,Entire home/apt,295,3,5,2019-07-02,4.29,1,204 +35118554,Huge 2x Bedroom Apt in Premium Upper West Side :),264516826,Sandra,Manhattan,Upper West Side,40.78373,-73.97182,Entire home/apt,339,3,4,2019-07-06,4,1,304 +35119736,The Academy - walk to subway + tons of culture!,16424639,Andy,Manhattan,Inwood,40.86353,-73.92349,Entire home/apt,87,4,1,2019-07-03,1,1,13 +35119931,Private room with shared bathroom and kitchen,120169401,Mejbah,Queens,Holliswood,40.72343,-73.77435,Private room,100,1,0,,,1,0 +35120093,"Stylish and cosy, newly renovated apartment.",31121418,Ekin,Brooklyn,Bedford-Stuyvesant,40.69636,-73.94638,Entire home/apt,160,7,0,,,1,56 +35120222,New Large home away from home 15 min from midtown,264527995,Brahmadutta,Queens,Long Island City,40.7609,-73.93203,Entire home/apt,250,3,1,2019-06-30,1,1,164 +35120985,Beautiful 25th Floor Room,20539689,Beau,Manhattan,Washington Heights,40.84709,-73.93525,Private room,65,10,0,,,1,229 +35121319,Boho escape in Upper Manhattan,35491006,Lisa,Manhattan,Harlem,40.8305,-73.94824,Entire home/apt,135,4,1,2019-07-07,1,1,0 +35121524,Williamsburg Modern Designer Loft on L Train,997334,James,Brooklyn,Williamsburg,40.71516,-73.94754,Entire home/apt,300,2,2,2019-06-30,2,1,77 +35121742,"Sunny, roomy one-bedroom across from Prospect Park",13583451,K,Brooklyn,Prospect-Lefferts Gardens,40.6573,-73.96134,Entire home/apt,94,4,1,2019-06-05,0.88,1,7 +35122826,Luxury & Cozy Penthouse in Manhattan,187544628,Kaito,Manhattan,Hell's Kitchen,40.76142,-73.99431,Entire home/apt,390,3,1,2019-06-22,1,1,5 +35122841,Room by Prospect Park,124902025,Aprill,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.95777,Private room,50,3,0,,,1,92 +35123753,"Bright & Cozy 3BR, Midtown Manhattan,",260383546,Andre,Manhattan,Hell's Kitchen,40.76024,-74.00046,Entire home/apt,450,3,6,2019-07-05,6,1,226 +35124153,Cozy and clean 2BR apt in Chelsea,256437293,Jack,Manhattan,Chelsea,40.75048,-74.00281,Entire home/apt,289,3,2,2019-06-21,2,1,129 +35124747,Quiet & Cozy East Village Studio with Work Space!,118715803,Ezzy,Manhattan,Lower East Side,40.72059,-73.985,Entire home/apt,175,6,0,,,1,0 +35125511,Wow Fabulous Hell's Kitchen Place,223833249,Diane,Manhattan,Hell's Kitchen,40.76277,-73.99594,Entire home/apt,300,3,3,2019-07-04,3,1,325 +35125528,FANTASTIC Large 1 Bedroom near Columbus Circle.,264568970,Mark,Manhattan,Midtown,40.76449,-73.98445,Entire home/apt,400,2,0,,,1,47 +35125636,5MinTrainSmallSmallCozyRoomIndustryCityLutheranH,264569855,Leidi,Brooklyn,Sunset Park,40.64899,-74.0125,Shared room,30,1,4,2019-06-25,4,1,342 +35125696,Cozy 1 bedroom w/twin bed & futon in Park Slope,14518163,Pedro & Jeff,Brooklyn,South Slope,40.66154,-73.98685,Private room,49,3,2,2019-06-29,1.62,1,30 +35127234,Quaint Ground Floor Midtown 1 Bed | Outdoor Patio,255432077,Nick,Manhattan,Upper East Side,40.76102,-73.96431,Entire home/apt,210,5,3,2019-06-27,3,1,136 +35127246,Brooklyn Live Style. The way Adults live in NY...,2582255,Kervin,Brooklyn,Fort Greene,40.68855,-73.97282,Entire home/apt,150,3,4,2019-07-06,4,1,15 +35127308,PVT room w/ mini fridge 20 mins from NYC airports,34880938,Abe,Queens,Jamaica,40.70642,-73.78298,Private room,40,2,4,2019-07-05,3.64,1,55 +35127865,Luxury Apartment in Manhattan,70715527,Robert,Manhattan,Upper West Side,40.77367,-73.98879,Entire home/apt,191,1,2,2019-07-02,2,1,10 +35128367,Magnificent Fort Greene Home- 3 Floors,11742777,Inbar,Brooklyn,Fort Greene,40.68647,-73.96959,Entire home/apt,550,2,1,2019-06-16,1,1,43 +35129021,Spacious 1 Bedroom in the Heart of Greenpoint,86210707,Paul,Brooklyn,Greenpoint,40.72859,-73.95905,Entire home/apt,110,2,2,2019-06-22,2,1,0 +35129203,"Spare Room Available.. Bedstuy, 20 mins to City!",30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92694,Private room,39,30,0,,,5,247 +35129411,Beautiful Carrol Gardens Apartment,61162003,Jeffrey,Brooklyn,Columbia St,40.68446,-74.00142,Entire home/apt,250,3,1,2019-07-07,1,1,13 +35129774,"STUNNING 2 bed apartment in Greenpoint,BK",263539175,John,Brooklyn,Greenpoint,40.73479,-73.95224,Entire home/apt,225,1,6,2019-07-04,4.86,1,177 +35130273,Big Spacious Bedroom 20 mins from Time Square.,91646104,Pao,Queens,Woodside,40.74237,-73.91112,Private room,65,3,0,,,3,65 +35131138,Cozy 1 Bed in Midtown East,64024615,Michael And Aaron,Manhattan,Midtown,40.75871,-73.96948,Entire home/apt,235,2,4,2019-07-01,4,1,171 +35131221,Apartment in Riverdale NY,264618293,Zlatan,Bronx,Fieldston,40.89701,-73.89778,Entire home/apt,109,2,1,2019-07-01,1,1,192 +35131393,At Home in the Big City! *New York*,185396542,Edward,Manhattan,Midtown,40.7534,-73.97283,Private room,300,5,0,,,1,6 +35132016,Luxury 3BR in Upper West Side with swimming pool,60136891,Bo Hee,Manhattan,Upper West Side,40.78578,-73.97678,Entire home/apt,590,7,0,,,1,38 +35132345,Beautiful Apartment close to Time Square,264458360,Luis,Manhattan,Hell's Kitchen,40.76127,-73.99234,Entire home/apt,171,3,6,2019-06-30,5.29,1,0 +35132775,⚡Stylish Apt in Trendy Location!! ⭐,52071286,Sito,Manhattan,Chelsea,40.73847,-73.99835,Entire home/apt,249,2,6,2019-07-07,6,1,225 +35136523,"PRIVATE, NEWLY RENOVATED BEDROOM, 10 MINS FROM JFK",107915864,Mina,Queens,Howard Beach,40.66799,-73.85135,Private room,65,1,16,2019-07-04,11.71,4,295 +35136809,"PRIVATE, NEWLY RENOVATED BEDROOM, 10 MINS FROM JFK",107915864,Mina,Queens,Howard Beach,40.66635,-73.85258,Private room,49,1,3,2019-07-06,2.14,4,329 +35141620,Sweet Astoria Home,129936757,Vivian,Queens,Ditmars Steinway,40.77377,-73.89837,Private room,100,1,0,,,1,343 +35144024,Terrific Beach Front Condominium - Rockaway Beach,2065662,Cesar,Queens,Arverne,40.5875,-73.79427,Entire home/apt,96,2,4,2019-07-05,4,1,9 +35144255,"ENTIRE FLOOR,huge bedrooms,near SOHO,Chinatown,LES",27831147,Sissy,Manhattan,Lower East Side,40.7154,-73.98301,Entire home/apt,585,2,1,2019-06-30,1,1,97 +35145200,Dope Bushwick Bedroom,210191736,Lue,Brooklyn,Bushwick,40.69521,-73.92011,Private room,40,1,3,2019-06-09,2.31,1,0 +35145314,"Only Ladys, twin bed, near La Guardia&Manhattan",223087887,Jess & Ana,Queens,Corona,40.74132,-73.86683,Shared room,25,2,1,2019-06-15,1,8,346 +35145342,"Habitación compartida(Only Women), cerca Manhattan",223087887,Jess & Ana,Queens,Corona,40.74255,-73.86659,Shared room,29,1,1,2019-06-19,1,8,343 +35146846,Sunny one bedroom for July-Aug,264706625,Miriam,Manhattan,Harlem,40.82693,-73.95142,Entire home/apt,80,60,0,,,1,311 +35147355,Financial Dis 2 BR 1 Bath luxury apartment,115771987,Yuki,Manhattan,Financial District,40.70751,-74.01025,Entire home/apt,200,30,0,,,6,292 +35147457,Luxury 2BR Dumbo Brooklyn. Amazing Views!!,264689880,Paul,Brooklyn,Vinegar Hill,40.70344,-73.9839,Entire home/apt,350,3,0,,,1,51 +35150643,ONLY LADYS/ 3 CAMAS PARA MUJERES EN QUEENS.,223087887,Jess & Ana,Queens,Corona,40.74119,-73.86748,Shared room,25,1,2,2019-06-20,2,8,351 +35151658,Sunny Williamsburg Room w/ Access to Garden!,34667377,Misha,Brooklyn,Williamsburg,40.71124,-73.96069,Private room,75,2,5,2019-06-26,4.69,1,72 +35152601,Soho 2 Bedroom Apartment,264728394,Alex,Manhattan,SoHo,40.72363,-73.99832,Entire home/apt,350,4,4,2019-06-12,3.64,1,135 +35152749,My Premium 1 bedroom Home in the Upper East Side,264744190,Josie,Manhattan,Upper East Side,40.77585,-73.95881,Entire home/apt,179,3,4,2019-06-30,4,1,138 +35153060,Bushwick gem one block from the train Citibike,200182757,Rosie,Brooklyn,Bushwick,40.70685,-73.92149,Private room,50,4,3,2019-06-16,2.50,2,5 +35153229,Luxury Apartment in Cambria Heights,264746707,Oscar,Queens,Cambria Heights,40.68959,-73.73733,Entire home/apt,160,2,5,2019-07-07,4.17,1,151 +35153334,Apartment in Centre of New York City,36938850,Luke,Manhattan,Hell's Kitchen,40.76591,-73.99155,Entire home/apt,150,30,1,2019-06-21,1,1,15 +35153702,Very spacious 1 bed with dishwasher & free laundry,53298578,Mesude,Manhattan,East Harlem,40.78834,-73.94781,Entire home/apt,99,30,0,,,1,265 +35153758,温馨旅店(1),263740985,Yongqiu,Queens,Flushing,40.75419,-73.83082,Private room,80,1,0,,,3,363 +35154253,Peaceful East Village Apartment,46231814,Amber,Manhattan,East Village,40.72612,-73.98946,Private room,110,3,0,,,3,12 +35154411,Affordable Suite Steps from Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.76593,-73.98087,Private room,399,1,3,2019-06-30,3,4,0 +35154533,"Outstanding & Luxury 2BR in Manhattan, next to TS",258742885,Catarina,Manhattan,Hell's Kitchen,40.7622,-73.99625,Entire home/apt,425,3,5,2019-07-05,5,1,0 +35154571,Beautiful 2BR APT in Hell's Kitchen!,147810492,Harold Huengue,Manhattan,Hell's Kitchen,40.76183,-73.9916,Entire home/apt,250,2,3,2019-06-23,3,1,212 +35154668,Studio - Steps from Central Park and Times Square,231281049,The Manhattan Club,Manhattan,Midtown,40.76386,-73.98222,Private room,399,1,2,2019-07-05,2,4,356 +35154803,Modern City Suites - Near Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.7655,-73.98237,Private room,399,1,1,2019-06-22,1,4,346 +35154913,Two Bathroom Suite steps from Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.7642,-73.98035,Private room,399,1,6,2019-07-07,6,4,346 +35155176,2BEDROOM APARTMENT NY CITY,264758587,Vanessa,Brooklyn,Williamsburg,40.71986,-73.95891,Entire home/apt,500,3,3,2019-06-16,2.37,1,353 +35155188,My Lovely and Spacious Home in the West Village :),264761028,Melissa,Manhattan,West Village,40.73128,-74.00475,Entire home/apt,179,3,5,2019-06-28,5,1,164 +35155272,Spacious and stylish 2BR in NoMad - brand new,46389451,Martin,Manhattan,Chelsea,40.74546,-73.99099,Entire home/apt,299,3,0,,,3,140 +35155320,Sonder | 116 John | Modern Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.7079,-74.00491,Entire home/apt,124,29,0,,,327,344 +35155541,Sonder | 116 John | Lovely Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70797,-74.00534,Entire home/apt,124,29,0,,,327,354 +35155925,Amazing 3BR 2B Apt in Times Square,158501551,Leslie,Manhattan,Hell's Kitchen,40.7632,-73.98712,Entire home/apt,420,3,2,2019-06-28,2,1,270 +35156210,Charming Pre War Apartment in the Lower East Side,225608965,Emmanuella,Manhattan,Lower East Side,40.7172,-73.9889,Entire home/apt,109,4,0,,,1,2 +35156223,Peaceful Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68734,-73.93255,Private room,42,30,0,,,27,248 +35156439,Our lovely 3 Bedroom in the Upper East Side :),264769862,Johselyn,Manhattan,Upper East Side,40.77242,-73.95452,Entire home/apt,279,3,5,2019-07-03,5,1,138 +35156906,Sunny Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68739,-73.93208,Private room,42,30,0,,,27,0 +35156995,Charming Brooklyn Brownstone,264774047,Traylor,Brooklyn,Fort Greene,40.68495,-73.97039,Private room,125,2,1,2019-06-14,1,1,87 +35157163,Private bedroom near EVERYTHING,222549093,Anna Laura,Manhattan,Harlem,40.81557,-73.95702,Private room,60,5,0,,,3,21 +35157419,Modern Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68717,-73.93113,Private room,42,30,0,,,27,249 +35158358,"UWS beauty, quaint, Central Park is 1 block",25136124,Doug,Manhattan,Upper West Side,40.78373,-73.97321,Entire home/apt,150,1,7,2019-07-06,7,1,2 +35158573,Modern peaceful room in lively East Williamsburg,59188298,John,Brooklyn,Williamsburg,40.71118,-73.94561,Private room,75,2,0,,,1,144 +35158765,Spacious + Modern 2 BR 1.5 Bath in premium UES,264786463,Justen,Manhattan,Upper East Side,40.77625,-73.9558,Entire home/apt,229,3,3,2019-07-01,3,1,150 +35159849,温馨旅店(3),263740985,Yongqiu,Queens,Flushing,40.75746,-73.83069,Private room,110,1,0,,,3,358 +35160399,2 bedroom house 15 min from Jfk,157011614,Gulshan,Brooklyn,Cypress Hills,40.68254,-73.88724,Entire home/apt,99,1,2,2019-06-03,1.58,1,145 +35160406,Quaint Essential,264797492,Kamara,Brooklyn,East Flatbush,40.63344,-73.94068,Entire home/apt,86,1,2,2019-06-08,1.58,1,360 +35160490,"Closed to any kind of restaurant, mall",264798401,Kristina,Queens,Rego Park,40.73213,-73.85717,Private room,90,7,1,2019-06-22,1,1,365 +35160692,Beautiful Room in 2Br Apartment near Prospect Park,25810180,Freddy,Brooklyn,Flatbush,40.65176,-73.95458,Private room,46,3,0,,,1,9 +35160771,Luxury 1 bedroom apt closet to Central park.,120464331,Soner,Manhattan,East Harlem,40.79496,-73.94838,Entire home/apt,140,2,4,2019-06-24,3.64,1,79 +35160909,Beautiful Ditmas Park,5597411,Misha,Brooklyn,Kensington,40.6358,-73.97127,Entire home/apt,99,14,0,,,2,33 +35161225,⭐ Oversized 4BR Loft In Prime Location!,264776021,Eduardo,Manhattan,Chelsea,40.73863,-73.99965,Entire home/apt,499,2,1,2019-06-20,1,1,115 +35161717,Sunset Suite in Spectacular E. Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.72291,-73.98447,Private room,125,2,1,2019-06-10,1,4,338 +35162122,Clean and Cozy,264811416,Tasia,Queens,St. Albans,40.69464,-73.75184,Entire home/apt,47,3,0,,,1,3 +35162306,"Private Sunny Room in Williamsburg, Brooklyn - NY",30054890,Gary,Brooklyn,Williamsburg,40.70706,-73.95048,Private room,60,3,2,2019-06-29,2,2,0 +35162513,YAYA's COZY One-Bedroom in a Beautiful Brownstone,264814648,Princess,Brooklyn,Bedford-Stuyvesant,40.68005,-73.94661,Entire home/apt,110,3,3,2019-06-29,2.65,1,227 +35162591,Master bedroom in Bed-Stuy,55601522,Will,Brooklyn,Bedford-Stuyvesant,40.67948,-73.94388,Private room,50,2,0,,,1,31 +35163045,Cozy Brooklyn Bedroom in Art-Filled Apartment,124040560,Shelley,Brooklyn,Windsor Terrace,40.65039,-73.97254,Private room,66,1,1,2019-06-25,1,1,0 +35163190,Big 1 bedroom apartment 15 minutes from Manhattan!,16590533,Emily,Queens,Ditmars Steinway,40.77122,-73.90944,Entire home/apt,130,2,2,2019-07-01,2,1,26 +35163290,The Manhattan Club Luxury Junior Suite,16830841,Mara,Manhattan,Midtown,40.76401,-73.98051,Private room,365,1,1,2019-07-01,1,5,342 +35163461,Beautiful 3bd Village Home,264773781,Emiliano,Manhattan,East Village,40.7228,-73.98035,Entire home/apt,319,2,1,2019-06-09,1,1,163 +35163692,Massive NYC Getaway 20 mins to time square with AC,264824216,Peter,Manhattan,Harlem,40.82187,-73.95562,Private room,57,1,2,2019-06-22,1.71,3,54 +35164003,Stylish SoHo Apartment,42261215,Daniel,Manhattan,SoHo,40.7245,-74.00444,Private room,150,4,0,,,1,42 +35164652,Summer Retreat In New Modern Apartment,76583399,Kinga,Staten Island,Arrochar,40.59125,-74.08047,Entire home/apt,195,3,1,2019-06-24,1,1,119 +35164694,Beautiful 1BR apt in the heart of East Village!,92899052,Brett,Manhattan,East Village,40.72725,-73.98549,Entire home/apt,120,17,0,,,1,21 +35164876,Studio apartment - Harlem heart,27562515,Olivier,Manhattan,Harlem,40.81024,-73.94362,Entire home/apt,99,2,0,,,1,18 +35165258,3 Bedroom by MSG + Empire State,264837278,Kate And Jason,Manhattan,Chelsea,40.75055,-73.99237,Entire home/apt,500,3,4,2019-07-05,4,1,313 +35165581,Home of the Yankees,264840662,Arian,Bronx,Morrisania,40.82888,-73.9045,Private room,70,2,1,2019-06-30,1,1,90 +35166290,"OCEAN Room only for “1 lady” +Solo Travelers !!!!!",264823783,Wada,Manhattan,Harlem,40.81979,-73.95297,Private room,55,7,3,2019-06-20,2.81,2,182 +35166495,Gorgeous & Spacious Tribeca Loft Style Apartment,158059664,Ej,Manhattan,Tribeca,40.71306,-74.00836,Entire home/apt,600,1,2,2019-06-28,2,1,80 +35166514,One bedroom Apt with Balcony located close to JFK,157331617,Danny,Queens,Howard Beach,40.66299,-73.85491,Entire home/apt,150,3,1,2019-07-01,1,1,78 +35166637,east williamsburg cozy chill lofted space,83040886,Bochun,Brooklyn,Williamsburg,40.70483,-73.93426,Private room,100,5,0,,,1,43 +35166718,PRIME NOMAD: MASSIVE ROOM IN BOHEMIAN ART LOFT,220574429,Juliana,Manhattan,Chelsea,40.74566,-73.99092,Private room,120,21,2,2019-06-02,1.54,3,332 +35166913,City Outside! Tranquility Inside +Private Terrace,229492192,Vineet,Manhattan,Midtown,40.76022,-73.96607,Entire home/apt,229,1,2,2019-06-15,1.62,1,356 +35166942,Airy Bedroom in Spacious Brooklyn Brownstone,24952041,Valerie,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95235,Private room,67,30,0,,,1,43 +35167097,Big Room w Private Entrance in Bohemian Art Loft,220574429,Juliana,Manhattan,Flatiron District,40.74421,-73.99093,Private room,125,21,1,2019-06-01,0.79,3,70 +35167332,Luxury Apt very close to public transport,44785902,Darlene,Manhattan,East Harlem,40.80173,-73.93347,Private room,100,5,0,,,1,0 +35167554,Cozy and private room close to LGA.,264854526,David,Queens,East Elmhurst,40.75829,-73.88013,Private room,55,1,12,2019-07-01,9.73,1,0 +35167683,Great Studio in Hells Kitchen Next to Times Square,158635893,Alexey,Manhattan,Hell's Kitchen,40.76366,-73.9888,Entire home/apt,209,1,4,2019-06-23,3.43,1,177 +35167707,"New Spacious Condo! Near all, 7Mins to Midtown!",53044777,Marie,Queens,Long Island City,40.74298,-73.95804,Entire home/apt,290,5,0,,,1,270 +35168463,Grace and Peace,264862581,Dianne,Queens,Rosedale,40.68205,-73.72581,Private room,75,1,2,2019-06-30,2,3,90 +35168757,Stunning Gramercy Studio,24674100,Grace,Manhattan,Kips Bay,40.74221,-73.97997,Entire home/apt,100,25,0,,,1,54 +35169758,Mott Haven Dorm GG,30509656,Orit,Bronx,Port Morris,40.80828,-73.9319,Shared room,28,1,2,2019-06-16,2,8,88 +35170169,across from crotona Park pool down the block,195028276,Joan,Bronx,Claremont Village,40.83466,-73.90278,Private room,100,3,0,,,1,365 +35170369,Luxury Living in Greenpoint,264873774,Chris,Brooklyn,Greenpoint,40.72792,-73.9591,Entire home/apt,250,10,0,,,1,155 +35170961,Mott Haven Private Dorm AA,30509656,Orit,Bronx,Port Morris,40.80844,-73.9316,Shared room,60,1,0,,,8,89 +35172393,"Brooklyn room 4mins to 2,5,3,4 trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65406,-73.94011,Private room,89,3,0,,,5,365 +35172821,"For business or pleasure 4 mins to 2,5,3,4 trains",182989977,Sasha,Brooklyn,East Flatbush,40.6541,-73.93834,Private room,69,3,0,,,5,365 +35172841,"Nights and weekends 4 mins to 2,5,3,4, trains",182989977,Sasha,Brooklyn,East Flatbush,40.65551,-73.93942,Private room,79,3,0,,,5,365 +35175462,Blue Room,260496218,Veronica,Queens,Bellerose,40.73176,-73.73872,Private room,60,1,0,,,2,157 +35175500,Fantastic Apartment in Manhattan Center,264693056,Rachel,Manhattan,Hell's Kitchen,40.75518,-73.99904,Entire home/apt,210,3,2,2019-06-21,1.58,1,73 +35177453,Charming One Bedroom on the Upper East Side,10593026,Lauren,Manhattan,Upper East Side,40.77134,-73.94832,Entire home/apt,170,2,1,2019-06-23,1,1,88 +35179345,gorgeous apartment in financial district,115771987,Yuki,Manhattan,Financial District,40.7069,-74.0092,Entire home/apt,227,30,0,,,6,332 +35181903,Stunning Park Slope Duplex (15 Mins to Manhattan!),264934283,Susan,Brooklyn,Windsor Terrace,40.65957,-73.98376,Entire home/apt,450,3,3,2019-07-01,3,2,302 +35182164,Big Ole Bed in BK,246623234,Camille-Bettina,Brooklyn,Prospect-Lefferts Gardens,40.66232,-73.95251,Private room,51,2,1,2019-06-13,1,1,0 +35182202,Perfect 4b4b place for groups in dawntawn,127805063,Monika,Manhattan,Midtown,40.75778,-73.96186,Entire home/apt,500,4,0,,,2,302 +35182511,Expansive and Bright Loft in Williamsburg,65610,Herman,Brooklyn,Williamsburg,40.71611,-73.95616,Entire home/apt,175,30,0,,,1,320 +35182672,Steps to Yankee Stadium ⚾ Minutes to Times Square,8187861,Tom,Bronx,Concourse,40.82788,-73.92604,Entire home/apt,88,3,3,2019-06-30,3,1,241 +35183070,Designer Brooklyn townhouse with private yard,5453550,Christine & James,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95693,Entire home/apt,500,30,0,,,3,141 +35183293,Park Slope Studio w/3 beds (15 Mins to Manhattan!),264934283,Susan,Brooklyn,South Slope,40.6611,-73.98446,Entire home/apt,165,3,2,2019-07-01,2,2,346 +35183442,2 Big Rooms in Brooklyn NY 1 block from Subway!,63866600,David,Brooklyn,Bay Ridge,40.62937,-74.03001,Private room,100,1,6,2019-07-04,6,3,365 +35184104,Bedroom in Penthouse Apartment,49132405,Abshan,Manhattan,East Harlem,40.79908,-73.93291,Private room,140,2,1,2019-06-10,1,1,21 +35185015,Whole apartment for your stay.,73124477,Alexander,Brooklyn,Crown Heights,40.67493,-73.94081,Entire home/apt,80,5,0,,,2,0 +35185863,Bright Park Slope 2 Bed (15 Minutes to Manhattan!),264963423,Eleanor,Brooklyn,South Slope,40.66956,-73.98922,Entire home/apt,195,2,4,2019-06-30,4,1,345 +35185876,PRIME Chelsea Modern Luxury Home *****,205909,Nikki,Manhattan,Chelsea,40.74042,-73.99883,Entire home/apt,225,1,0,,,1,228 +35186244,Relax in our Modern & Cozily renovated Urban Oasis,227818501,Jenna,Bronx,Williamsbridge,40.87846,-73.86311,Entire home/apt,140,2,4,2019-07-02,4,2,358 +35186258,Nice and cozy Studio in Midtown Manhattan,264965107,Adriana,Manhattan,Kips Bay,40.742,-73.98154,Entire home/apt,131,2,2,2019-06-30,2,1,11 +35186445,AMAZING 1 BEDROOM !!! NEAR TIMES SQUARE,80003178,Mike,Manhattan,Hell's Kitchen,40.76433,-73.98932,Entire home/apt,163,1,3,2019-06-23,3,1,155 +35187654,WEST VILLAGE Duplex Diamond,151937146,Anya,Manhattan,West Village,40.73705,-74.00966,Entire home/apt,995,1,3,2019-07-05,3,1,344 +35187770,"LUXURY LOFT 20 MIN TO MANHATTAN - GYM,ROOF&LAUNDRY",264975454,Bryan,Brooklyn,Bushwick,40.69857,-73.9261,Entire home/apt,275,3,3,2019-07-05,3,1,351 +35187772,"Sunny private bedroom in Brooklyn, 20min to Mnhttn",128300825,Anton,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92915,Private room,70,3,0,,,2,43 +35187992,Cozy Airy w/Plenty of Sunlight Decatur 3FL RM#3,258213198,Joanne,Brooklyn,Bushwick,40.68682,-73.90831,Private room,70,1,3,2019-07-07,3,1,163 +35188017,Gorgeous 2BR Apartment in East Village,264708433,Rachel,Manhattan,East Village,40.72608,-73.98161,Entire home/apt,348,3,5,2019-07-02,4.41,1,26 +35188430,"Spacious Bushwick Room, 5 min walk to L & M Train",220845471,Alyssa,Brooklyn,Bushwick,40.70117,-73.91755,Private room,60,1,2,2019-06-05,1.67,1,0 +35188790,Spacious & Sunny Decatur 2F Room#3,262033253,Jenny,Brooklyn,Bushwick,40.68675,-73.909,Private room,60,1,3,2019-07-05,3,2,178 +35189052,Beautiful Brooklyn Brownstone next to Park,26620387,Louise,Brooklyn,Park Slope,40.66737,-73.9747,Entire home/apt,945,4,0,,,1,19 +35189086,Warm Cozy Decatur 2F bedroom #4,262033253,Jenny,Brooklyn,Bushwick,40.68747,-73.90977,Private room,70,1,2,2019-06-24,2,2,172 +35189297,Bright 2BR in Bed-Stuy (20 Minutes to Manhattan!),264983168,Ian,Brooklyn,Bedford-Stuyvesant,40.68366,-73.9192,Entire home/apt,159,2,1,2019-06-23,1,1,341 +35189318,Centralized fun in Harlem,22630533,Carl,Manhattan,Harlem,40.81675,-73.93696,Private room,159,3,0,,,1,87 +35189403,Modern Cozy UES apartment,56341179,Eric,Manhattan,Upper East Side,40.76738,-73.95556,Entire home/apt,125,31,0,,,1,280 +35189446,Spacious And Sunny Luxurious 1 Bedroom Apartment,132699715,Ed,Manhattan,Hell's Kitchen,40.76645,-73.99101,Entire home/apt,200,1,2,2019-06-23,2,1,81 +35189906,Unique Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68777,-73.93067,Private room,42,30,0,,,27,250 +35189990,"Spacious 5 BED, 2 Full BATH (15 mins to Manhattan)",264990100,Yonaton,Brooklyn,Crown Heights,40.66566,-73.93282,Entire home/apt,395,3,1,2019-06-16,1,1,301 +35190108,Authentic Style Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68778,-73.9319,Private room,42,30,0,,,27,240 +35190131,BIG 1 BDR Apartment -close to Times Square,5708821,Valentin,Manhattan,Hell's Kitchen,40.76157,-73.99278,Entire home/apt,150,1,4,2019-06-28,4,1,16 +35190355,Brooklyn Style 5 BR Apt in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68753,-73.93072,Entire home/apt,208,30,0,,,27,239 +35190467,Decent room for rent,253969143,Kelly,Queens,Elmhurst,40.74283,-73.88899,Private room,110,2,0,,,1,179 +35191797,High End Upper East Stunner,61391963,Corporate Housing,Manhattan,Upper East Side,40.77957,-73.95475,Entire home/apt,142,30,0,,,91,245 +35191909,HUGE Manhattan Apt. right next to Central Park,241258373,Margaret,Manhattan,Harlem,40.80346,-73.95702,Entire home/apt,198,2,2,2019-06-02,1.58,2,154 +35192077,Lovely studio in the heart of East Village,201074848,Moun,Manhattan,East Village,40.72702,-73.9798,Entire home/apt,165,4,2,2019-06-28,2,1,0 +35192314,Born to Be ALIVE in Hell's Kitchen,220447646,Anthony,Manhattan,Hell's Kitchen,40.76235,-73.99485,Entire home/apt,500,3,3,2019-07-03,3,1,328 +35193203,Entire Apartment in Bushwick w/ Private Backyard,264514482,Mathieu,Brooklyn,Bushwick,40.7005,-73.92412,Entire home/apt,100,4,0,,,1,5 +35193872,Cozy room,248731701,Claudia,Queens,Bayside,40.75982,-73.78312,Private room,130,5,0,,,1,177 +35193964,Breathtaking Balcony Views in the Big Apple,1461161,Sherwin,Manhattan,Murray Hill,40.74424,-73.9733,Entire home/apt,500,4,6,2019-07-07,5.62,1,138 +35195090,"Charming, bright one-bedroom",17151691,Sara,Brooklyn,Clinton Hill,40.69143,-73.968,Entire home/apt,110,4,0,,,1,0 +35195180,Sweet Home Vacation,126415353,Alessandro,Manhattan,Harlem,40.81393,-73.94365,Private room,35,2,0,,,1,124 +35195580,Modern Oversized 3bedroom Home,265029608,Merche,Manhattan,East Harlem,40.79901,-73.94334,Entire home/apt,319,2,2,2019-06-09,1.87,1,138 +35195898,Modern one-bedroom in heart of Manhattan,265034334,Rawan,Manhattan,Hell's Kitchen,40.7555,-73.99399,Entire home/apt,150,7,2,2019-07-03,2,1,61 +35195915,Chelsea HIGHLINE Prime Location,244131674,Alexis,Manhattan,Chelsea,40.749,-74.00244,Entire home/apt,300,2,3,2019-07-07,3,1,365 +35196057,Beautiful Renovated Duplex in Historic Townhouse,187671321,Alan,Manhattan,Harlem,40.81868,-73.94417,Entire home/apt,295,2,1,2019-06-26,1,1,123 +35196099,Ornate cozy Victorian studio at Central Park,118013873,Frances,Manhattan,Upper West Side,40.80103,-73.9706,Entire home/apt,150,6,2,2019-07-07,2,1,69 +35196447,Private Duplex with the BEST views of Manhattan,265020897,Ben,Brooklyn,Bushwick,40.7004,-73.92766,Entire home/apt,369,6,1,2019-07-01,1,2,29 +35196648,"Gigantic room 1 block to train with AC, fast WIFI",264824216,Peter,Manhattan,Harlem,40.822,-73.95582,Private room,59,1,1,2019-06-14,1,3,61 +35196787,Great Astoria Apartment,40436170,Robert,Queens,Astoria,40.76728,-73.90781,Entire home/apt,95,1,5,2019-07-07,5,1,65 +35196872,LES Dream,228132014,Camille,Manhattan,Lower East Side,40.71814,-73.98357,Private room,74,2,0,,,1,0 +35196873,"HUGE, Bright Private Room NEXT TO CENTRAL PARK!",241258373,Margaret,Manhattan,Harlem,40.80176,-73.95663,Private room,100,1,0,,,2,39 +35197041,The Cobble Hill Experience 3 Bedroom,263883589,Zach,Brooklyn,Boerum Hill,40.68906,-73.98983,Entire home/apt,329,30,1,2019-06-25,1,2,63 +35197107,***Entire Apartment 5 mins to JFK***,265043054,Lovlee,Queens,Jamaica,40.67289,-73.76699,Entire home/apt,100,1,4,2019-07-01,4,1,78 +35197207,Spacious bedroom w/ private bathroom! TRULY LOVELY,257586719,Marilena,Brooklyn,Bath Beach,40.60551,-74.00129,Private room,100,1,2,2019-06-26,2,1,90 +35197271,Gorgeous Bright Chic NYC 2Bath in Chelsea,195389383,Maria & Sam,Manhattan,Chelsea,40.74318,-73.99987,Entire home/apt,444,1,2,2019-06-22,2,1,325 +35197281,BEAUTIFUL APARTMENT IN THE CENTER OF WEST VILLAGE,131083549,Brian,Manhattan,Greenwich Village,40.73359,-73.99772,Entire home/apt,250,3,2,2019-06-23,2,1,32 +35197500,Spacious 1 BR W/ adjustable Queen bed. Comfy!,121851703,Mo,Queens,Queens Village,40.72048,-73.73478,Entire home/apt,150,2,4,2019-07-08,4,2,19 +35197505,twin bed in hostel style shared room,201813482,Nick,Brooklyn,Bushwick,40.70513,-73.91576,Shared room,25,4,0,,,5,340 +35198287,Light-filled Williamsburg Loft,24643940,Lucy,Brooklyn,Williamsburg,40.70726,-73.96657,Entire home/apt,550,2,2,2019-07-05,2,1,81 +35199464,"Penthouse on the beach 3 floors of art, fun,surf,",125320407,Sata,Queens,Far Rockaway,40.59636,-73.7413,Entire home/apt,900,2,0,,,5,365 +35199871,Yellow Room,63790926,Mehmet,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93494,Private room,50,1,4,2019-06-25,3.75,1,349 +35200165,Twin bed in hostel with other guests,201813482,Nick,Brooklyn,Bushwick,40.70508,-73.91577,Shared room,25,4,0,,,5,346 +35201987,"★2,200sq Duplex w/Backyard near Fort Greene Park★",7305915,Flavia,Brooklyn,Fort Greene,40.69447,-73.97296,Entire home/apt,220,6,0,,,1,43 +35202508,Stylish Home Near Hells Kitchen,247795760,Jonathan,Manhattan,Hell's Kitchen,40.76312,-73.99394,Entire home/apt,200,2,6,2019-07-02,5.45,1,151 +35202605,Modern Manhattan 2 bedroom apartment,78201197,Maggie,Manhattan,East Harlem,40.7923,-73.94613,Entire home/apt,250,2,4,2019-06-30,3.75,1,44 +35204821,Spacious for big family or groups. Well located,127805063,Monika,Manhattan,Midtown,40.75803,-73.96224,Entire home/apt,350,30,0,,,2,283 +35206134,Outstanding 2 bedrooms close to Times Square,204537864,David,Manhattan,Hell's Kitchen,40.76097,-73.99973,Entire home/apt,375,2,1,2019-06-16,1,1,45 +35212471,Bright & stylish 2BR in Manhattan,202805108,Ignacio,Manhattan,Hell's Kitchen,40.76028,-73.99665,Entire home/apt,395,3,3,2019-06-29,3,1,102 +35215551,Charming East Village 1 Bedroom!,263707859,Sharon,Manhattan,East Village,40.72404,-73.98219,Entire home/apt,150,2,0,,,1,0 +35215644,Stylish 2 BR Apartment in downtown Manhattan,260156883,Elena,Manhattan,Financial District,40.71083,-74.00803,Entire home/apt,280,3,3,2019-07-06,3,1,199 +35217588,•Bright and Cozy room in an elegant apartment•,258441018,Jaison,Bronx,Claremont Village,40.84268,-73.91007,Private room,40,1,0,,,1,188 +35217816,"Modern 3 BR, 2 BATH Triplex (Washer/Dryer)",265171569,Caroline,Brooklyn,Bedford-Stuyvesant,40.68882,-73.94784,Entire home/apt,300,3,1,2019-06-30,1,1,282 +35217833,"My Home is your Home, cozy East Village",50591290,Carol & Ashley,Manhattan,East Village,40.72842,-73.98097,Entire home/apt,225,1,2,2019-06-26,2,1,344 +35217858,"comfortable, clean, sweet, conveniently located",41471153,Rina,Queens,Long Island City,40.7646,-73.93085,Private room,58,2,0,,,1,133 +35219177,"Young adults getaway 20mins to time square,AC room",264824216,Peter,Manhattan,Harlem,40.82136,-73.95606,Private room,59,1,2,2019-06-23,2,3,41 +35219812,"Cute Brooklyn Nook on Quiet, Tree-lined Street",13715158,Fiona,Brooklyn,Crown Heights,40.67542,-73.9495,Private room,45,4,2,2019-06-28,2,1,3 +35220162,Private Cozy Studio in Flushing(5K),246272839,Northern Star Realty,Queens,Flushing,40.765,-73.81875,Entire home/apt,96,1,12,2019-07-03,10.91,4,159 +35220477,"Bright, Crown Heights 2BR (15 Mins to Manhattan!)",265188674,Yehoshua,Brooklyn,Crown Heights,40.66819,-73.93783,Entire home/apt,275,2,2,2019-06-30,2,1,356 +35220744,Amazing Views in The Heart of Time Square,265192385,Liz,Manhattan,Hell's Kitchen,40.75917,-73.99785,Entire home/apt,305,2,4,2019-06-30,4,1,44 +35220898,Cozy and bright room in Williamsburg,17950129,Pauline,Brooklyn,Williamsburg,40.7192,-73.94354,Private room,71,6,1,2019-06-10,1,1,20 +35220970,Quiet and cosy room in Midtown Manhattan,5752329,Florian,Manhattan,Midtown,40.75258,-73.99311,Private room,90,1,9,2019-06-28,7.11,1,0 +35220992,"Lovely Fam hse, one lg quest private BR on 2nd fl",161906388,Imelda,Queens,Woodhaven,40.68794,-73.85566,Private room,45,1,4,2019-06-30,4,1,3 +35221421,Indépendant space in charming Williamsburg.,203946076,Harun,Brooklyn,Williamsburg,40.71651,-73.94213,Entire home/apt,50,3,2,2019-06-17,2,1,152 +35221845,Talk about a great location! Close to everything!,98841235,Salma,Manhattan,Harlem,40.82128,-73.93909,Entire home/apt,114,1,2,2019-06-23,2,1,104 +35222002,Home away home in NY,265200119,Ayse,Queens,Maspeth,40.73802,-73.9009,Entire home/apt,100,31,0,,,1,322 +35222046,Bushwick garden just a block to L train.,7780845,Liset,Brooklyn,Bushwick,40.70098,-73.9193,Entire home/apt,120,3,0,,,3,77 +35222233,Beautiful room in beautiful apartment super clean,67665882,Nitzan,Brooklyn,Bedford-Stuyvesant,40.67903,-73.94183,Private room,130,10,0,,,1,0 +35222567,The Shunammite Room - 2 Kings 4:10,259776956,Gladwyn,Brooklyn,Canarsie,40.62903,-73.89762,Private room,110,1,4,2019-06-29,4,5,365 +35222909,"Bright, quiet EV 1br w/ courtyard- perfect loca!",23090343,Kailyn,Manhattan,East Village,40.72375,-73.98949,Entire home/apt,175,5,1,2019-07-01,1,1,8 +35223189,"Spacious, Crown Heights 3BR (15 mins to Manhattan)",265204049,Albert,Brooklyn,Crown Heights,40.66765,-73.93928,Entire home/apt,260,2,1,2019-07-01,1,1,343 +35223869,"Fort Greene Park Hideaway! Quiet, Sunny, and Cozy",265213112,Harrison,Brooklyn,Fort Greene,40.68934,-73.96959,Entire home/apt,209,2,3,2019-06-24,2.37,1,79 +35224304,Spacious Home Away from Home,43099837,Crystal,Staten Island,Grymes Hill,40.61569,-74.08957,Entire home/apt,125,2,1,2019-06-28,1,1,44 +35224490,Brand New 2 Bedroom Apartment Next To Times Square,94092661,Mendy,Manhattan,Theater District,40.76187,-73.98599,Entire home/apt,249,1,3,2019-06-25,3,1,127 +35224560,Amanecer espectacular con terraza privada,163421878,Any,Queens,Sunnyside,40.7439,-73.91409,Private room,55,1,1,2019-06-02,0.81,3,302 +35224736,Room in Lower East Side -- deck access!,38005727,Arshiya,Manhattan,Lower East Side,40.71929,-73.98826,Private room,130,1,0,,,1,0 +35225375,One Of The Kind Loft 《Williamsburg》,6465781,Hanya,Brooklyn,Williamsburg,40.71151,-73.95937,Entire home/apt,490,1,1,2019-06-17,1,2,1 +35225838,Cozy room in an apartment in Bushwick!,43283271,Lizzie,Brooklyn,Bushwick,40.70137,-73.92028,Private room,45,2,1,2019-07-01,1,1,1 +35226357,Burnett comfy home away from home,120297125,Arlene,Queens,Rosedale,40.65101,-73.73721,Private room,60,1,0,,,1,180 +35226897,2 bedroom family residence in Gramercy!,11065010,Jacqueline,Manhattan,Chelsea,40.74117,-73.99951,Entire home/apt,300,4,0,,,1,16 +35226973,Stunning UWS Apartment,23753533,Maria Rosario,Manhattan,Upper West Side,40.78192,-73.97959,Entire home/apt,900,3,1,2019-07-07,1,1,57 +35227165,Huge 1br/studio in the heart of Williamsburg,15313500,Seymur,Brooklyn,Williamsburg,40.71534,-73.95692,Entire home/apt,225,1,2,2019-07-04,2,1,71 +35228252,LARGE PERFECT 1 bedroom Clean and Chic w/ JACUZZI,98442821,Darlene & Richard,Manhattan,East Village,40.7267,-73.97965,Entire home/apt,205,1,1,2019-06-02,0.81,1,349 +35228596,LUX Big Apple Apartment near the UN w/ WasherDryer,153458126,Fabiana & Christopher,Manhattan,Murray Hill,40.74791,-73.97957,Entire home/apt,400,1,0,,,2,365 +35228797,Great 2 bedrooms close to Central Park,191119982,Marietta,Manhattan,Upper West Side,40.77101,-73.98941,Entire home/apt,360,2,5,2019-06-23,4.29,1,94 +35228840,UN Dream Apt NYC,153458126,Fabiana & Christopher,Manhattan,Murray Hill,40.74682,-73.97983,Entire home/apt,307,1,0,,,2,364 +35228980,Luxury Private Home NYC Connection,215430503,Paulo & Emma,Manhattan,Chelsea,40.75393,-73.99992,Entire home/apt,199,1,0,,,1,362 +35229075,Amazing 2 bedrooms in the heart of the Upper East,228545931,Ralph,Manhattan,Upper East Side,40.76768,-73.95455,Entire home/apt,320,2,1,2019-06-25,1,1,57 +35229201,Beautiful Shared Place in Hell's Kitchen,253906467,Erik,Manhattan,Hell's Kitchen,40.76578,-73.99101,Shared room,85,1,6,2019-06-28,5.62,9,175 +35229312,Sunny Spacious NYC Location,41484943,Melissa,Brooklyn,Kensington,40.63506,-73.9744,Private room,55,1,2,2019-06-30,2,2,18 +35229609,Prime Trendy Hells Kitchen Cozy Studio,264970269,Denis,Manhattan,Hell's Kitchen,40.76272,-73.99054,Entire home/apt,189,1,4,2019-07-01,4,1,156 +35229657,Center of NYC*Dream in your dream Apt*6beds,135223584,Lina & Josh,Manhattan,Hell's Kitchen,40.75654,-73.99425,Entire home/apt,920,1,0,,,1,180 +35230465,East Village Gem 2/2,109533480,Jessica,Manhattan,East Village,40.72803,-73.98112,Entire home/apt,500,1,1,2019-06-22,1,1,365 +35230828,Tri-Level Apartment W/ Balcony Empire State Views,60113180,Austin,Manhattan,Kips Bay,40.74442,-73.98047,Entire home/apt,225,1,1,2019-06-30,1,1,221 +35230999,Marvelous apartment in KipsB,224867349,Nazarena,Manhattan,Kips Bay,40.74094,-73.9799,Entire home/apt,400,3,3,2019-06-25,2.81,1,261 +35231242,ONE HOTEL STYLE DUPLEX - 5 STARS,70490424,Julie & Brian,Manhattan,Chelsea,40.75348,-73.9986,Entire home/apt,900,1,2,2019-07-05,2,1,360 +35231621,Union Square 1 Bedroom Quiet & Clean,135596644,Ann,Manhattan,East Village,40.73258,-73.98648,Entire home/apt,225,2,0,,,1,310 +35231663,Room in a Luxury Apartment + Gym + AC + Laundry,14332697,Guillard,Brooklyn,Bushwick,40.70078,-73.92803,Private room,89,6,1,2019-06-14,1,1,27 +35231903,Times Square area - Cute 1 Bedroom Apartment,218612882,Ani,Manhattan,Hell's Kitchen,40.76169,-73.9907,Entire home/apt,170,1,5,2019-07-01,5,1,26 +35231916,Stay in LIC- Only 10 Minutes From Midtown!,15574,Joy,Queens,Long Island City,40.75367,-73.9289,Private room,65,5,1,2019-06-23,1,1,49 +35232437,JavitsCenter Private Oasis 7beds 2bath,153568512,Thais & Daniel,Manhattan,Hell's Kitchen,40.75748,-73.99477,Entire home/apt,800,1,0,,,1,360 +35232920,AMAZING CHELSEA Apartment HUGE space,28357796,Lilli,Manhattan,Chelsea,40.75347,-73.99883,Entire home/apt,210,1,0,,,1,337 +35232958,Coziest & magical beds behind living room curtains,265273671,Henri,Bronx,Parkchester,40.83898,-73.86492,Shared room,55,1,0,,,1,364 +35233037,Cozy and Bright 2 bedroom 2 full bathroom apt,89161588,Emm & Gabe,Manhattan,East Village,40.72697,-73.9805,Private room,390,1,0,,,1,365 +35233074,Spacious Duplex Family Home | 10 min to Midtown,264142178,Thiago,Queens,Long Island City,40.76383,-73.9297,Entire home/apt,275,1,3,2019-07-01,3,1,339 +35233128,West Village Amazing Living 2 Baths,164704496,Christiane,Manhattan,West Village,40.73591,-74.0101,Entire home/apt,750,1,0,,,1,365 +35233606,Heart and Soul of East Village,159357000,Otavio & Ashley,Manhattan,Murray Hill,40.74814,-73.97955,Entire home/apt,450,1,0,,,1,215 +35233649,Casa Renovare (Recycle House) Crown Heights 4BR,265273935,Noor,Brooklyn,Crown Heights,40.67385,-73.92071,Entire home/apt,295,3,3,2019-07-02,3,1,356 +35233704,Roberta's New York Paradise,265277264,Roberta,Queens,Astoria,40.75813,-73.92152,Private room,50,1,2,2019-07-06,2,1,341 +35233735,CENTER of the WORLD NYC--LargeGroups--SPACE--6beds,211018651,Thiago & Larissa,Manhattan,Hell's Kitchen,40.75501,-73.99376,Entire home/apt,930,1,0,,,1,360 +35233790,1 Bedroom in Luxury Williamsburg building,265280713,Lucas,Brooklyn,Williamsburg,40.70696,-73.94377,Private room,75,1,3,2019-06-22,2.65,1,0 +35233799,Elmhurst Front Bedroom,219333557,Rafael,Queens,East Elmhurst,40.76251,-73.86722,Private room,49,1,3,2019-06-29,3,7,0 +35233865,"it is a warm, quiet environment to relaxation al",138782186,Hannah M,Queens,Rosedale,40.65902,-73.73783,Private room,70,1,0,,,2,365 +35233897,Private room in the Financial District!,72112652,Lauren,Manhattan,Financial District,40.70473,-74.01582,Private room,90,2,1,2019-06-23,1,2,5 +35233962,Beautiful 1BR Apt. by Times Square and Bryant Park,264950723,Lenny,Manhattan,Midtown,40.75287,-73.98631,Entire home/apt,350,4,1,2019-06-09,1,1,2 +35233998,"Spacious & Bright 3BRs Near Subways, Parks, Shops",146858939,Angela,Brooklyn,Cobble Hill,40.69041,-73.99777,Entire home/apt,599,1,2,2019-06-16,2,1,39 +35235212,Feel like a home & few steps walking to City Mall.,265288059,Masum,Queens,Corona,40.73611,-73.86401,Private room,36,1,2,2019-06-30,1.76,2,62 +35235326,New private studio & separate entry for adults,96659533,Angelica,Brooklyn,Bushwick,40.69447,-73.91364,Private room,70,2,5,2019-07-02,4.17,2,301 +35235379,"Feel Like a Home,Shopping Mall Walking Distance !!",265288059,Masum,Queens,Corona,40.7363,-73.86316,Private room,36,1,5,2019-07-07,3.85,2,337 +35235701,Room for travel and work,263721921,Carlos,Queens,Flushing,40.75728,-73.80072,Private room,70,2,2,2019-06-08,1.58,1,315 +35236040,Relaxing Stylish Room Near Train and Attractions 2,265289882,Jorge,Manhattan,Chelsea,40.74614,-74.00168,Private room,150,5,0,,,1,79 +35236345,"Cozy house in Woodside, comfortable are!!",200239515,Shogo,Queens,Woodside,40.74239,-73.89454,Private room,35,29,0,,,15,5 +35236534,Cozy Room& Area in Queens♪,200239515,Shogo,Queens,Woodside,40.74258,-73.89315,Private room,40,30,0,,,15,40 +35236795,Spacious Apartment in the heart of Williamsburg,7982677,Zara,Brooklyn,Williamsburg,40.71419,-73.95967,Entire home/apt,230,2,1,2019-06-16,1,1,15 +35237543,The Place to be private room 3,263266237,Amoyiem,Bronx,Allerton,40.86871,-73.8474,Private room,40,2,0,,,4,90 +35237894,"Stunning & Unique 2-Bed, 2-Bath Downtown Apartment",264489766,Jailita,Manhattan,Midtown,40.75392,-73.96862,Entire home/apt,459,2,0,,,1,136 +35238264,Gorgeous Two Bedroom Apartment Columbias Campus,59268420,Tomer,Manhattan,Morningside Heights,40.8127,-73.96163,Private room,100,1,1,2019-06-02,0.81,1,365 +35238691,Sunnny & Huge bedroom with Plants,76273640,Dani,Brooklyn,Williamsburg,40.70478,-73.93851,Private room,95,7,1,2019-06-08,1,1,97 +35238986,Grand opening 25%off 3 floors all for your self,265322739,Angel,Bronx,Wakefield,40.89147,-73.84747,Entire home/apt,196,2,0,,,1,173 +35240782,1-3 months term NEW 1BR in a great bldg w rooftop,9224491,Tamara,Manhattan,East Village,40.72685,-73.98349,Entire home/apt,110,30,0,,,1,0 +35240989,Gorgeous One Bedroom Apartment With Private Garden,265169106,Austin,Manhattan,Harlem,40.80618,-73.94618,Entire home/apt,179,2,3,2019-06-10,3,1,187 +35247268,☕Perfect 2-bdr close to Times Square ✨,265271198,Alex,Manhattan,Hell's Kitchen,40.76495,-73.98784,Entire home/apt,330,1,13,2019-07-04,10.54,1,164 +35247808,Sunny 1 bedroom at EAST VILLAGE( L train -1st Ave),48770990,Viola,Manhattan,East Village,40.72993,-73.98319,Private room,78,15,0,,,1,22 +35249301,Spacious 2Bedroom Village Home,265248832,Noe,Manhattan,Greenwich Village,40.72757,-74.00059,Entire home/apt,349,2,2,2019-06-13,2,1,186 +35249458,Light-filled comfortable entire apartment,264809787,Kurt,Bronx,Concourse Village,40.82778,-73.91516,Entire home/apt,75,3,2,2019-06-21,2,1,253 +35249610,Luxury condo walking distance from Times Square,182410092,Joseph,Manhattan,Hell's Kitchen,40.76605,-73.99193,Entire home/apt,700,2,0,,,1,304 +35249977,Sunny charming room right by Classon av G,10284594,Elise,Brooklyn,Bedford-Stuyvesant,40.68559,-73.95478,Private room,38,30,0,,,1,1 +35250139,Brand New Renovated East Williamsburg quiet apt,265020897,Ben,Brooklyn,Bushwick,40.70149,-73.92768,Entire home/apt,177,7,0,,,2,55 +35250568,COMFORT & CONVENIENCE IN THE BEST ASTORIA LOCATION,126538085,Lina,Queens,Astoria,40.76542,-73.92607,Entire home/apt,140,7,1,2019-06-15,1,1,82 +35251282,Great Space and Location,25161307,Devi,Manhattan,East Harlem,40.79523,-73.94956,Private room,50,14,0,,,1,0 +35251947,Light-Filled Apartment with Beach Views,248880851,Sam,Queens,Rockaway Beach,40.58485,-73.81482,Entire home/apt,200,2,2,2019-07-06,2,1,152 +35252356,Classy and CLEAN Designer Home in NYC 2bath,135838665,Lely & Gary,Manhattan,Flatiron District,40.73927,-73.98774,Entire home/apt,950,1,0,,,1,365 +35252509,CHELSEA CENTRAL LUXURY 2BATHS,184520918,Danilo & Larissa,Manhattan,Chelsea,40.74575,-74.01052,Entire home/apt,332,1,0,,,1,361 +35252737,Tulum Oasis 2 baths Washer Dryer in Unit,210956993,Werley & Maria,Manhattan,Murray Hill,40.74832,-73.98126,Entire home/apt,416,1,0,,,1,365 +35253003,Beautiful sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.74854,-73.94908,Private room,75,20,0,,,2,66 +35253668,Room/house nearby JFK airport Spri,264043510,Ken,Queens,Springfield Gardens,40.6624,-73.76348,Private room,60,1,2,2019-06-26,2,6,179 +35255732,Entire Beautiful Modern Apartment!,256403429,Brenda,Queens,Glendale,40.70012,-73.89451,Entire home/apt,126,1,0,,,5,21 +35256322,"Basic Brooklyn +Safe/Clean/Easy +Accomadations",3199313,A Tree Grows In Brooklyn,Brooklyn,Prospect-Lefferts Gardens,40.66459,-73.96629,Private room,86,2,0,,,1,179 +35257081,Private Room in Manhattan 15 min. from Midtown!,265424495,Benat,Manhattan,Harlem,40.80486,-73.94754,Private room,50,1,7,2019-06-30,5.83,2,267 +35257168,Stunning Views in the heart of Brooklyn,967133,Candice,Brooklyn,Bedford-Stuyvesant,40.68213,-73.9538,Private room,75,4,0,,,1,38 +35257699,Hell's Kitchen /Times Sq - Comfortable 2 BDR Flat,264962468,Milica,Manhattan,Hell's Kitchen,40.76273,-73.99028,Entire home/apt,255,2,2,2019-07-01,2,1,55 +35257756,Perfect Room in the heart of the West Village,39541218,Frankie,Manhattan,West Village,40.73129,-74.00661,Private room,100,14,3,2019-06-12,2.43,1,31 +35258971,3 Bedroom duplex in 2 Family House Brooklyn,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68543,-73.92068,Entire home/apt,170,1,5,2019-07-07,5,3,237 +35259405,"Furnished Apartment in Queens, NY",236530772,Maria,Queens,Jamaica Estates,40.72085,-73.79179,Entire home/apt,65,2,0,,,2,19 +35259569,Huge Private Suite in shared apt,76186812,Ula,Brooklyn,Bedford-Stuyvesant,40.68027,-73.94358,Private room,59,4,1,2019-06-12,1,2,15 +35260351,One Bedroom Apartment in a Doorman Building,262078431,Darling,Manhattan,Upper West Side,40.79164,-73.97361,Entire home/apt,169,1,0,,,1,22 +35260483,Cozy Apartment minutes to Central Park,24237725,Jacopo,Manhattan,Hell's Kitchen,40.76476,-73.98871,Entire home/apt,145,7,0,,,1,5 +35260885,Modern Apt with Beautiful Views in Manhattan,264742656,Ignacio,Manhattan,Financial District,40.70912,-74.00671,Entire home/apt,249,3,4,2019-07-03,4,1,86 +35260994,"Beautiful / Sunny One Bedroom, Heart of NoLita",36960740,Athena,Manhattan,Nolita,40.72435,-73.99419,Entire home/apt,500,1,0,,,1,9 +35261255,Long Island City Luxury Studio for Rent,110001541,Shihui,Queens,Long Island City,40.74833,-73.93682,Entire home/apt,80,3,1,2019-06-08,1,1,0 +35261651,Furnished large room in 2br apt for Female on UES,265466931,Irma,Manhattan,Upper East Side,40.76671,-73.95286,Private room,99,10,1,2019-06-19,1,1,34 +35261660,"Crown Heights 3BR, 2 BATH (15 mins to Manhattan!)",265463203,Alesh,Brooklyn,Crown Heights,40.67038,-73.92962,Entire home/apt,245,2,1,2019-07-01,1,3,326 +35262025,Comfy & Quiet 1 Bedroom,137872939,Eloise & Mario,Staten Island,Emerson Hill,40.60585,-74.13331,Private room,49,2,0,,,1,144 +35262429,Cute Bright 1 Bedroom apartment in Bushwick,94422691,Omar,Brooklyn,Bushwick,40.69694,-73.90766,Entire home/apt,67,2,1,2019-07-03,1,1,0 +35262444,Room in Minimalist Apartment,446512,Héctor,Manhattan,Washington Heights,40.85457,-73.92778,Private room,66,1,5,2019-07-06,4.69,1,130 +35262475,"Bright 3BR, 2 FULL BATH (15 MINS to MANHATTAN!)",265463203,Alesh,Brooklyn,Crown Heights,40.67132,-73.93003,Entire home/apt,250,2,5,2019-07-01,5,3,309 +35262993,"6BR, 4 Bath (2 Separate Apts) 15 Mins to Manhattan",265463203,Alesh,Brooklyn,Crown Heights,40.67144,-73.93182,Entire home/apt,475,2,0,,,3,308 +35263166,★Long-term★Discount★NYC Blue Room Garden View,21153954,Michael,Brooklyn,Bedford-Stuyvesant,40.69134,-73.92768,Private room,42,30,0,,,1,334 +35263416,Spend Thanksgiving in New York City,157834976,Jessica,Manhattan,Midtown,40.75152,-73.97313,Private room,750,4,0,,,1,193 +35263825,Lush apartment with space and charm.,90817506,Mark,Bronx,Mott Haven,40.81203,-73.90779,Private room,50,2,3,2019-06-30,3,1,8 +35263872,Lovely private bedroom by Columbia University,28836096,George,Manhattan,Morningside Heights,40.81494,-73.96041,Private room,109,1,5,2019-06-22,4.29,2,148 +35264260,2BR LUXARY DUPLEX LOFT Downtown (Monthly),48194192,Allen,Brooklyn,Clinton Hill,40.69367,-73.96424,Entire home/apt,350,28,0,,,4,138 +35264702,Cozy Private Bedroom By Columbia University,28836096,George,Manhattan,Morningside Heights,40.81489,-73.95842,Private room,109,1,10,2019-07-07,10,2,143 +35265039,vacation New York,265499023,Jenny,Bronx,Mount Hope,40.84607,-73.9071,Private room,55,91,0,,,1,364 +35265786,Cozy bedroom in Long Island City,265506523,Leila,Queens,Astoria,40.756,-73.91589,Private room,80,2,1,2019-07-01,1,1,87 +35265962,Sunny & Clean Apartment,81093086,Carlos,Manhattan,Harlem,40.82155,-73.93927,Private room,50,2,4,2019-06-27,3.33,1,0 +35266157,"Spacious 2BR+Kitchenette Near Parks, Cafes, Subway",265452743,Gregory,Brooklyn,Cobble Hill,40.68896,-73.99734,Entire home/apt,289,1,5,2019-07-07,5,1,77 +35266422,Lovely Room with Deck Window Near Pratt,43902262,Victoria,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93877,Private room,65,3,0,,,1,68 +35266495,Cozy 1 bedroom apt in Manhattan,42316597,Helen,Manhattan,Upper East Side,40.76179,-73.96427,Entire home/apt,210,1,1,2019-06-10,1,1,331 +35266709,A room in 3-bedroom apartment,264296595,Hyunsung,Queens,Flushing,40.75926,-73.82641,Shared room,75,1,1,2019-07-08,1,3,349 +35267090,Spacious Apartment perfect to relax and enjoy .,127831150,Carena,Brooklyn,Crown Heights,40.67768,-73.94332,Entire home/apt,125,5,1,2019-07-01,1,2,321 +35267137,Close to Manhattan! Comfortable area to stay♪,200239515,Shogo,Queens,Sunnyside,40.73872,-73.92696,Private room,37,30,0,,,15,38 +35267420,Baisley Best - 4 minutes from JFK Airport,265065371,Ian,Queens,Jamaica,40.67621,-73.78279,Entire home/apt,160,3,0,,,1,77 +35267761,Casa Luna LGA Airport,265420923,Luna,Queens,East Elmhurst,40.76774,-73.87358,Private room,70,2,2,2019-06-30,1.87,1,266 +35268203,"Super Jackpot +Central Park, 6 and Q Train!Takeit",265527861,Anthony,Manhattan,Upper East Side,40.78481,-73.95303,Private room,78,3,0,,,1,322 +35268366,Leverich 102,19303369,Hiroki,Queens,Jackson Heights,40.75049,-73.89368,Private room,50,30,0,,,37,0 +35268488,Woodside61 201,19303369,Hiroki,Queens,Woodside,40.74434,-73.90347,Private room,41,30,0,,,37,0 +35268573,Kihazi 001,19303369,Hiroki,Queens,Woodside,40.74283,-73.90303,Private room,43,30,0,,,37,0 +35268637,Kz65st d,19303369,Hiroki,Queens,Woodside,40.74615,-73.89953,Private room,33,30,0,,,37,0 +35268673,43ave c,19303369,Hiroki,Queens,Elmhurst,40.74171,-73.87645,Private room,33,30,0,,,37,0 +35268730,87st 302,19303369,Hiroki,Queens,Elmhurst,40.74066,-73.87755,Private room,32,30,0,,,37,0 +35268845,Your perfect getaway with a friendly hostess!,265534664,Maria,Queens,Long Island City,40.75365,-73.92247,Private room,48,6,0,,,1,313 +35268861,87st 204,19303369,Hiroki,Queens,Elmhurst,40.74,-73.87734,Private room,34,30,0,,,37,0 +35268953,87st304,19303369,Hiroki,Queens,Elmhurst,40.74045,-73.87776,Private room,30,30,0,,,37,0 +35269041,87st 203,19303369,Hiroki,Queens,Elmhurst,40.73847,-73.8775,Private room,32,30,0,,,37,0 +35269083,Large and bright one bedroom in bedstuy,44321906,Julie,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93094,Entire home/apt,120,4,1,2019-06-25,1,1,10 +35269107,2部屋でのシェア 10畳 駅から徒歩3分 ブルックリンの大人気エリア:ウィリアムズバーグから3駅,19303369,Hiroki,Brooklyn,Bedford-Stuyvesant,40.68833,-73.95055,Private room,28,30,0,,,37,54 +35269147,2部屋でのシェア ブルックリンの大人気エリアのウィリアムズバーグから3駅 駅から徒歩3分の好立地 ,19303369,Hiroki,Brooklyn,Bedford-Stuyvesant,40.68787,-73.94973,Private room,33,29,0,,,37,0 +35275242,Sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.74774,-73.94757,Private room,80,2,0,,,2,4 +35275591,"Entire Loft, Sunny 2 BR in Brooklyn Navy Yard",51179270,Jirka,Brooklyn,Clinton Hill,40.69704,-73.96704,Entire home/apt,78,7,0,,,1,17 +35275920,Cozy summer relaxation,265576141,Luke,Queens,Rockaway Beach,40.58825,-73.81208,Private room,75,1,2,2019-06-30,2,1,5 +35277302,Elegant Room in Upper Manhattan-18min Time Square,6057887,Mutaz,Manhattan,Washington Heights,40.84853,-73.93805,Private room,79,4,2,2019-06-10,1.87,5,16 +35278838,Private room in 2bed apt by subway & Prospect Park,3644678,Cindy,Brooklyn,Borough Park,40.64184,-73.99102,Private room,30,30,0,,,1,251 +35280902,Spacious Studio,196681978,Amelia,Manhattan,Financial District,40.70736,-74.00965,Entire home/apt,130,30,0,,,1,146 +35281242,Magical Room In the heart of Greenwich Village,141425524,Nickolas,Manhattan,Greenwich Village,40.73081,-74.00089,Private room,200,7,0,,,1,15 +35281731,Brooklyn Heights Oasis,106436589,Wendy,Brooklyn,Brooklyn Heights,40.69852,-73.99606,Entire home/apt,399,14,0,,,2,67 +35281795,Cute place,81295676,Vasiliki,Queens,Astoria,40.76411,-73.92076,Private room,55,3,0,,,1,43 +35282511,2 Bedroom Apartment Rental in Upper West Side,10746551,Glenn,Manhattan,Upper West Side,40.78085,-73.97508,Entire home/apt,153,30,0,,,1,38 +35282577,Springfield Room rental,264043510,Ken,Queens,Springfield Gardens,40.66277,-73.76336,Private room,50,1,2,2019-06-12,2,6,365 +35282883,Mesmerizing city views Financial District/Wall st,180368029,Brandon And Emily,Manhattan,Financial District,40.70694,-74.007,Entire home/apt,250,3,10,2019-07-03,8.33,1,335 +35283406,"Artist Charming 1Bedroom in Ft Greene, by park",5153401,Danielle,Brooklyn,Fort Greene,40.68739,-73.97212,Entire home/apt,160,30,1,2019-06-18,1,1,86 +35283631,"1 room available in Manhattan 3, A, B, C, D trains",24047681,Kevin,Manhattan,Harlem,40.82512,-73.93817,Private room,80,1,2,2019-06-23,2,1,356 +35283648,Luxury 3 bedroom home close to LaGuardia 8 guests,228634418,Joseph,Queens,East Elmhurst,40.75946,-73.89019,Entire home/apt,235,2,10,2019-07-07,8.33,1,321 +35283981,PRIVATE suite / luxury building / west Chelsea,54481883,Camille,Manhattan,Chelsea,40.74469,-74.00535,Entire home/apt,250,4,0,,,2,0 +35284044,An Amazing Creative Loft ,6465781,Hanya,Brooklyn,Williamsburg,40.71346,-73.95884,Private room,190,2,0,,,2,64 +35284206,"SunCatCoffeeRest Fort, Under Trees & Reggae",265644639,Nate,Brooklyn,Flatbush,40.64224,-73.95824,Private room,52,1,0,,,1,70 +35284472,Cozy bedroom,220159422,Lorand,Queens,Ridgewood,40.70161,-73.90484,Private room,42,2,3,2019-06-08,2.65,1,0 +35284533,City Gem 15 minutes from Midtown Manhattan,265647188,Sonydelane,Queens,Long Island City,40.75837,-73.93429,Entire home/apt,250,3,1,2019-06-29,1,1,353 +35284618,Beautiful & huge apartment in great location,265648986,Claire & Adrien,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95893,Entire home/apt,115,4,0,,,1,36 +35285031,Luxury and stylish 2-BR condo clsoe to LGA Airport,187264773,Mark,Queens,East Elmhurst,40.76011,-73.88833,Entire home/apt,149,2,7,2019-07-01,5.83,1,341 +35285908,SUNNY GREEN OAISIS IN BEDSTUY/CLINTON HILL,118375910,David,Brooklyn,Bedford-Stuyvesant,40.6821,-73.95279,Private room,80,7,0,,,1,0 +35286246,Decorator's Apt in Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76928,-73.96675,Entire home/apt,250,14,0,,,3,344 +35287089,Upper East Side Luxury Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76918,-73.9667,Entire home/apt,225,14,0,,,3,340 +35287395,Room # 5 Near from JFK & LGA Diner 7/24 open,258589420,Diego,Queens,Richmond Hill,40.68936,-73.83357,Shared room,60,1,4,2019-07-07,4,7,365 +35287808,Room in Upper East - Central Park,222077787,Betty&Sam,Manhattan,Upper East Side,40.76615,-73.95639,Private room,85,1,0,,,2,7 +35288297,Cool Flex Room in Luxury apartment.,264462124,Asim,Brooklyn,Downtown Brooklyn,40.69722,-73.98467,Private room,39,1,0,,,1,16 +35288505,Trendy & Modern Bushwick Brooklyn Apartment,44021873,Daniel,Brooklyn,Bedford-Stuyvesant,40.6946,-73.93448,Private room,95,4,2,2019-06-28,2,1,28 +35288933,HUGE LGBT Townhouse w KingBed & Backyard @Bushwick,135563904,Michael,Queens,Ridgewood,40.70528,-73.90896,Entire home/apt,350,1,7,2019-07-01,7,3,64 +35289004,BEST LOCATION IN SUNNYSIDE-15 MINUTES TO MANHATTAN,119846581,Annmarie,Queens,Sunnyside,40.74338,-73.92191,Entire home/apt,78,2,7,2019-06-22,6.56,1,129 +35289022,Enchanted Harlem Gem,129041590,Wendy,Manhattan,East Harlem,40.80224,-73.94231,Entire home/apt,382,3,0,,,1,22 +35289875,JUST 4.4 MILES FROM MANHATTAN NEAR TRAIN,132786535,Carlos,Queens,Middle Village,40.71357,-73.8794,Entire home/apt,124,2,1,2019-06-23,1,2,161 +35290565,Private bedroom with private bathroom!,265703830,Noah,Brooklyn,Bedford-Stuyvesant,40.69423,-73.94627,Private room,150,1,0,,,1,365 +35290739,EXPERIENCE LUXURY IN AIRBNB,166463538,Jude,Manhattan,Financial District,40.70785,-74.00645,Shared room,150,1,1,2019-06-22,1,1,179 +35290892,Harlem Summer Cottage,11160340,Jerome,Manhattan,Harlem,40.80224,-73.95168,Entire home/apt,90,7,0,,,2,9 +35291681,"COZY Private Room, Queens/Jackson Heights/Elmhurst",29731292,Fenny,Queens,Elmhurst,40.74329,-73.8787,Private room,60,2,2,2019-06-21,2,1,0 +35292625,Room-cabin in Hell's kitchen,137191484,Maria,Manhattan,Hell's Kitchen,40.76479,-73.98667,Private room,86,1,1,2019-06-05,0.88,5,0 +35297214,Amazing Chelsea 4BR Loft!,256649546,Viberlyn,Manhattan,Chelsea,40.73999,-73.99806,Entire home/apt,2995,30,1,2019-06-24,1,1,214 +35301609,Brownstone Brooklyn Private Room with a View,158200817,Beka And Strat,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.96044,Private room,69,2,1,2019-06-07,0.91,2,89 +35301999,Cozy NYC Studio in Hell’s Kitchen/ Midtown West,159593024,Heather,Manhattan,Hell's Kitchen,40.7665,-73.98673,Entire home/apt,145,2,1,2019-06-20,1,1,35 +35303893,Modern sunlit luxury studio in Chelsea/Flatiron,14034161,Chris,Manhattan,Chelsea,40.7455,-73.99714,Entire home/apt,249,4,0,,,1,45 +35304260,"Light Airy, Private Bath, Oasis 15 min to Midtown",59392167,Judith,Queens,Sunnyside,40.74793,-73.92034,Private room,55,4,0,,,1,69 +35304831,COZY 2BR AT TIMES SQUARE - IN HEART OF MANHATTAN,195650078,Angie,Manhattan,Hell's Kitchen,40.75949,-73.98825,Entire home/apt,125,3,2,2019-06-15,2,1,219 +35304884,Prime Modern 2 BR East Village Apt nearby Subway,5569222,John,Manhattan,NoHo,40.72896,-73.99201,Entire home/apt,199,2,3,2019-06-27,3,1,36 +35305083,Charming English Basement Studio,199466039,Sydney,Manhattan,Upper East Side,40.77574,-73.95331,Entire home/apt,229,1,1,2019-06-24,1,3,266 +35305338,Quiet neighborhood near many stores,265812351,Siyen,Queens,Kew Gardens Hills,40.72608,-73.82038,Entire home/apt,199,1,0,,,1,364 +35306652,Private Studio Non Shared Pvt Washer/Dryer,264593697,Domi,Manhattan,East Harlem,40.79798,-73.93972,Entire home/apt,50,1,0,,,1,16 +35308120,2 Floor Minimalist Loft located in Lower Chelsea!,4374467,Rudy,Manhattan,Chelsea,40.74505,-74.00298,Entire home/apt,225,2,0,,,1,9 +35309370,SUNNY Entire Apartment in Williamsburg BROOKLYN,1678322,Chris,Brooklyn,Williamsburg,40.71004,-73.95577,Entire home/apt,180,2,2,2019-06-15,1.87,1,23 +35310307,Close to manhattan but way out of the hustle,114372992,Nick,Queens,Long Island City,40.76228,-73.94272,Private room,62,5,2,2019-06-16,2,1,43 +35310394,Beautifu 3 BR in Times Sq: Best Location in NYC,265621853,John Ari,Manhattan,Theater District,40.75606,-73.98871,Entire home/apt,480,3,3,2019-07-06,3,1,265 +35310420,Cute 2 bedroom apt. -ferry ride to Manhattan,471024,Christina,Staten Island,St. George,40.63911,-74.08376,Entire home/apt,48,2,0,,,1,25 +35311422,Entire luxury apartment for rent. Sleeps 4 or five,243540233,Simona,Queens,Astoria,40.77545,-73.92704,Entire home/apt,250,5,0,,,1,22 +35311495,Manhattan Best Location Comfortable Space -1~2p,179336958,Ruby,Manhattan,Midtown,40.74667,-73.98513,Private room,120,3,1,2019-06-22,1,6,364 +35312653,Beautiful Astoria Studio,24162718,Joe,Queens,Long Island City,40.76043,-73.93104,Entire home/apt,125,3,0,,,1,36 +35313119,Beautiful light and airy 2 bed in luxury building,265866685,Mindy,Brooklyn,Bushwick,40.69888,-73.93075,Entire home/apt,249,7,2,2019-07-01,2,2,179 +35313296,Amazing Charm 1 bedroom Convertible 2 bedroom,265871484,Juan,Manhattan,Hell's Kitchen,40.76457,-73.98796,Entire home/apt,300,1,7,2019-07-07,7,1,346 +35313576,Sun filled gem in the heart of Williamsburg,26961393,Josh,Brooklyn,Williamsburg,40.71599,-73.96159,Entire home/apt,198,4,3,2019-07-07,3,1,11 +35314165,MODERN 3 BEDROOM APARTMENT NEAR CENTRAL PARK,166208155,Stanislaw,Manhattan,Hell's Kitchen,40.76828,-73.98755,Entire home/apt,250,3,3,2019-07-02,3,1,42 +35314242,"A Private and Comfy, Bohemian Room",161829611,Gabrielle,Manhattan,Washington Heights,40.8564,-73.92703,Private room,66,1,2,2019-06-30,2,1,60 +35314580,Fabulous 3BR in Prime Times Square,264620263,Sheryl,Manhattan,Hell's Kitchen,40.76235,-73.98995,Entire home/apt,335,3,3,2019-06-26,3,1,144 +35314647,"Near JFK and LIRR, Room",264043510,Ken,Queens,Springfield Gardens,40.66199,-73.76345,Private room,95,1,2,2019-06-12,2,6,365 +35314884,Modern Family Home w/ Patio | 10 min to Manhattan,263440435,Lucas,Queens,Astoria,40.7592,-73.92155,Entire home/apt,300,3,3,2019-06-30,3,1,320 +35315156,Luxury 2 BR Home in Hudson Yards,250765233,Christy,Manhattan,Chelsea,40.74972,-73.99655,Entire home/apt,330,3,2,2019-06-21,2,1,281 +35315271,Design haven with private backyard & greenhouse,19689128,Billy,Brooklyn,Williamsburg,40.71413,-73.93701,Entire home/apt,131,3,2,2019-06-23,2,1,137 +35315339,Sleep in large quiet bedroom with sunny garden,220865756,Joe,Brooklyn,Bay Ridge,40.63331,-74.01975,Private room,99,5,0,,,2,37 +35315368,"Private Room in Bronx, close to everything!",265888743,Ruth,Bronx,Norwood,40.87066,-73.88227,Private room,56,2,0,,,1,53 +35315486,Amazing 2 Bedroom Apt in Prime Chelsea,250767748,Ana,Manhattan,Chelsea,40.74625,-74.0,Entire home/apt,305,3,2,2019-07-04,2,1,242 +35315680,Beautiful Chelsea Entire Two Bedroom Apartment,150199731,David,Manhattan,Chelsea,40.74006,-74.00071,Entire home/apt,195,3,0,,,1,252 +35315865,Classy Gramercy Apartment,8197805,Kasia,Manhattan,Gramercy,40.73735,-73.98425,Entire home/apt,250,2,1,2019-06-22,1,1,10 +35315907,Clean minimal 2 bedroom top floor apartment,224614531,Amhalise,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94703,Entire home/apt,200,2,1,2019-06-30,1,2,5 +35315974,Cozy Spacious Studio One stop from Manhattan NY!,247335568,Evelyn,Queens,Long Island City,40.74922,-73.94048,Entire home/apt,150,3,0,,,7,19 +35316337,B- BEAUTIFUL CLASSIC SHARED ROOM DOORM STYLE WIFI,213208277,Darry,Brooklyn,Borough Park,40.64212,-73.99361,Shared room,30,5,2,2019-06-27,2,8,333 +35317010,Brownstone Duplex in Heart of Community,258467515,Arva,Manhattan,Harlem,40.81051,-73.948,Entire home/apt,250,2,1,2019-07-01,1,1,70 +35317128,Tea Factory,242262000,Howard,Brooklyn,Williamsburg,40.7204,-73.94115,Entire home/apt,500,1,0,,,1,365 +35317854,Lincoln Center Luxury River View High Rise Condo,265917688,Wenying,Manhattan,Upper West Side,40.77618,-73.98395,Entire home/apt,165,8,1,2019-06-23,1,1,62 +35318634,Boho Chic Apartment short walk from Central Park!,7933261,Angie,Manhattan,Upper East Side,40.76786,-73.95639,Entire home/apt,260,7,1,2019-06-21,1,1,43 +35318863,Amazing apartment Times Square,265068881,Omer,Manhattan,Hell's Kitchen,40.7635,-73.9878,Entire home/apt,145,4,2,2019-06-26,2,1,92 +35318942,Spacious room in Manhattan Upper East Size,226927431,Tina,Manhattan,Upper East Side,40.76665,-73.95398,Private room,140,4,2,2019-06-12,2,2,42 +35319394,Luxury Brooklyn apartment private clean,48189481,Ajamu,Brooklyn,Prospect-Lefferts Gardens,40.65877,-73.9447,Entire home/apt,150,2,1,2019-07-02,1,1,25 +35319436,jungle oasis loft in red hook,8835932,Brandi,Brooklyn,Red Hook,40.6774,-74.00304,Entire home/apt,199,2,0,,,1,11 +35319902,Room in queens,264043510,Ken,Queens,Springfield Gardens,40.66292,-73.76242,Private room,70,1,5,2019-07-07,4.29,6,365 +35320280,Room for jfk passengers,264043510,Ken,Queens,Springfield Gardens,40.66222,-73.76324,Private room,41,2,1,2019-06-29,1,6,365 +35321064,A Peaceful getaway for individuals or couples.,182121197,Katherine,Bronx,Kingsbridge,40.86493,-73.90315,Private room,69,2,2,2019-06-23,2,1,86 +35321365,Prime Bushwick Spacious Studio,49058105,William,Brooklyn,Bushwick,40.68936,-73.92071,Entire home/apt,119,7,2,2019-06-30,2,1,15 +35324178,Sleep in quiet bedroom with sunny garden,220865756,Joe,Brooklyn,Bay Ridge,40.63486,-74.02122,Private room,75,5,0,,,2,15 +35328951,Lower East Side 2 Bedroom,45378115,Lianne,Manhattan,Lower East Side,40.72247,-73.98838,Entire home/apt,185,3,1,2019-06-12,1,1,1 +35329913,Charming Brooklyn Garden apt - historic Macdonough,46724430,Mariana,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92307,Entire home/apt,125,3,1,2019-07-01,1,1,0 +35330887,"Large Studio near Time Square, UN, and much more!",23853826,Janee,Manhattan,Midtown,40.75144,-73.9709,Entire home/apt,220,3,1,2019-07-01,1,1,334 +35330965,Luxury 360 City views in Manhattan close to T Sq,170150338,Michael,Manhattan,Hell's Kitchen,40.76088,-73.9923,Entire home/apt,550,3,2,2019-06-29,2,1,147 +35332679,Brownstone apartment in cozy Brooklyn neighborhood,6832892,Peter,Brooklyn,Bedford-Stuyvesant,40.6818,-73.93879,Entire home/apt,100,2,1,2019-06-16,1,1,11 +35334017,Cosy Apartment with great amenities in lux bl,6470112,Eleonora,Brooklyn,Fort Greene,40.69343,-73.98171,Entire home/apt,150,15,0,,,1,283 +35334485,NEW LUXURY BUSHWICK BUILDING,266025070,371,Brooklyn,Bushwick,40.70574,-73.91737,Entire home/apt,225,1,8,2019-07-04,7.27,1,141 +35335248,"Spacious, bright and modern private room for two.",24802029,Joshua,Manhattan,Harlem,40.82238,-73.95476,Private room,86,2,1,2019-06-23,1,1,90 +35335762,West Village Loft on the water,6645403,Noah,Manhattan,West Village,40.73207,-74.01087,Entire home/apt,270,4,1,2019-06-14,1,1,50 +35336447,Sunny and homey private room with bathroom,266035174,Pam And Dali,Brooklyn,Flatbush,40.65377,-73.95927,Private room,69,2,3,2019-06-30,3,1,2 +35336938,Room in queens house for rent,264043510,Ken,Queens,Springfield Gardens,40.6626,-73.76349,Private room,90,1,1,2019-06-23,1,6,365 +35336972,Sun-filled Plant Oasis Bedroom w/ Private Bathroom,253943547,Nia,Brooklyn,Bedford-Stuyvesant,40.6966,-73.94339,Private room,63,1,4,2019-06-27,4,1,20 +35337180,"3BR/1.5BA East Harlem - Families, Space , Quiet!",20179690,G,Manhattan,East Harlem,40.80211,-73.94365,Entire home/apt,350,1,1,2019-06-24,1,1,17 +35337525,Charming One Bedroom in Central Williamsburg,18826598,Holly,Brooklyn,Williamsburg,40.71413,-73.96075,Entire home/apt,121,3,7,2019-07-06,6.00,1,6 +35338703,The Stonewall Room at Incentra Village House,241889662,Incentra,Manhattan,West Village,40.73766,-74.00448,Private room,999,1,2,2019-07-05,2,5,321 +35339100,Renovated Master Bedroom 47 Buffalo 3F Room#1,260688089,Hui,Brooklyn,Bedford-Stuyvesant,40.67815,-73.92534,Private room,60,1,1,2019-06-30,1,2,147 +35339627,Newly Renovated Apartment 47 Buffalo 3F Room#2,260688089,Hui,Brooklyn,Bedford-Stuyvesant,40.67864,-73.92362,Private room,60,1,4,2019-06-30,4,2,166 +35341044,New Stunning 1 Bed in Midtown East #6133,129739088,Alexie,Manhattan,Midtown,40.75596,-73.96581,Entire home/apt,180,30,0,,,1,176 +35341419,"Cozy Room, kitchen bathroom & Patio Brooklyn NY",63866600,David,Brooklyn,Bay Ridge,40.6297,-74.0302,Private room,80,1,2,2019-07-01,2,3,344 +35341842,"2 Rooms in Brooklyn NY, 1 block from Subway!",63866600,David,Brooklyn,Bay Ridge,40.63066,-74.03136,Private room,80,1,5,2019-07-06,4.69,3,361 +35341959,The dream,265025516,Adina,Manhattan,Midtown,40.75088,-73.971,Entire home/apt,500,4,0,,,1,100 +35342701,Cozy Quiet Bedroom 47 Buffalo 3F Room#3,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67816,-73.92368,Private room,60,1,4,2019-06-28,4,2,173 +35342841,Alcove Studio in the Heart of Chelsea!,22412963,Anne,Manhattan,Chelsea,40.74216,-73.99363,Entire home/apt,180,1,1,2019-06-25,1,3,210 +35342886,Clean Private Room HELL'S KITCHEN A/C TV,226060825,Kenneth,Manhattan,Hell's Kitchen,40.76243,-73.98978,Private room,90,1,1,2019-06-19,1,1,138 +35343097,Modern Royal Suite in Manhattan - New York City!,221213143,David,Manhattan,Midtown,40.74217,-73.98398,Entire home/apt,299,1,0,,,9,339 +35343102,Loft in the Village,42063010,Christy,Manhattan,East Village,40.72832,-73.98984,Private room,180,1,0,,,1,177 +35343610,*New* Modern 2 Bedroom in Brooklyn Sleeps up to 8,133005440,Alex,Brooklyn,Clinton Hill,40.68253,-73.96599,Entire home/apt,125,2,6,2019-07-05,6,2,241 +35344056,Massive 3 BR home near LGA Airport and Manhattan,107211000,Kamilla And John,Queens,East Elmhurst,40.76001,-73.88865,Entire home/apt,225,2,5,2019-06-24,4.29,1,337 +35344126,Newly Renovated Apartment 47 Buffalo 3F Room#4,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67838,-73.92349,Private room,60,1,3,2019-06-24,3,2,176 +35344294,"Magnificent place, clean and comfy",266090689,Harris,Queens,Astoria,40.77018,-73.92108,Entire home/apt,125,2,2,2019-06-24,2,1,22 +35344556,Two Bedroom Apartment with Kitchen and Four Beds.,266092932,Blanca,Manhattan,Hell's Kitchen,40.75606,-73.99374,Entire home/apt,279,2,3,2019-07-07,3,2,221 +35345097,"Eclectic, one of a kind West Village apartment",266062621,Beckett,Manhattan,West Village,40.73006,-74.00713,Entire home/apt,250,1,1,2019-06-16,1,1,27 +35345358,Northside Williamsburg Stunner,956324,Alex,Brooklyn,Williamsburg,40.71705,-73.9647,Entire home/apt,4500,30,0,,,1,365 +35345370,EXCLUSIVE Apartment ~ NEW LUXURY boutique building,211595859,Emily,Manhattan,Midtown,40.74488,-73.98245,Entire home/apt,300,30,5,2019-06-23,4.55,1,90 +35345694,Sunlit LGBTQ+ Cozy Private Queen Room @Bushwick,135563904,Michael,Queens,Ridgewood,40.70527,-73.91075,Private room,180,1,0,,,3,76 +35346075,Private room in NYC!! Walking to Central Park!!,130617332,Haley,Manhattan,Harlem,40.81144,-73.94386,Private room,85,3,0,,,3,244 +35346788,15 min to Manhattan! 6-20 July discountprice 1200,16562278,Александрина,Queens,Astoria,40.75998,-73.926,Entire home/apt,150,1,1,2019-07-03,1,1,5 +35346820,Private Room in Luxury Penthouse Apartment,3241323,Victor,Brooklyn,East Flatbush,40.65539,-73.94961,Private room,175,1,3,2019-06-30,3,1,87 +35346826,Private studio in Central Harlem brownstone,38499797,Musya,Manhattan,East Harlem,40.80474,-73.94118,Entire home/apt,110,3,3,2019-07-01,3,1,3 +35347096,Massive 2 Bedrooms 2 Bath Private Elevator,62664257,Shei,Manhattan,East Village,40.72671,-73.97986,Entire home/apt,450,1,0,,,1,365 +35347616,Entire Midwood Brooklyn apartment newly renovated!,259669775,Sal,Brooklyn,Sheepshead Bay,40.60795,-73.95218,Entire home/apt,120,2,3,2019-06-27,3,2,103 +35348683,Central Park/Times Square Luxury Suite,16830841,Mara,Manhattan,Midtown,40.76372,-73.98182,Private room,358,1,2,2019-07-01,2,5,322 +35348877,Billion Dollar View Luxury Apt in Hudson Yard,39147579,Sandy,Manhattan,Chelsea,40.75217,-73.99828,Entire home/apt,235,3,1,2019-06-11,1,1,196 +35348968,Light filled private apartment in bed-stuy!,25127792,Té,Brooklyn,Bedford-Stuyvesant,40.69006,-73.95127,Entire home/apt,200,2,1,2019-06-25,1,1,21 +35349073,More Comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68864,-73.91614,Entire home/apt,175,3,1,2019-06-16,1,3,358 +35349137,Sunny Practical Apt in Williamsburg BK!!!,265585349,Maria,Brooklyn,Williamsburg,40.711,-73.96147,Entire home/apt,139,2,3,2019-06-28,3,1,184 +35349443,曼哈顿奢侈公寓次卧Manhattan luxury apartment second bedroom,266128085,Wanfang,Manhattan,Midtown,40.748,-73.98831,Private room,55,30,0,,,1,41 +35350124,2 BEDROOM APT HEART OF WILLIAMSBURG,5976443,Gonzalo,Brooklyn,Williamsburg,40.71071,-73.96049,Entire home/apt,150,2,6,2019-07-06,6,1,137 +35350827,4BD Newly Renovated Home in NY- TIME SQUARE,16107580,Aden,Manhattan,Hell's Kitchen,40.7616,-73.98936,Entire home/apt,700,4,2,2019-06-22,2,1,130 +35351599,Amazing 2 bedroom Times Square,206451695,Vanessa,Manhattan,Hell's Kitchen,40.76124,-73.99611,Entire home/apt,450,2,0,,,3,365 +35352171,Gorgeous 3BR townhouse+backyard! Close to subway!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68598,-73.91997,Entire home/apt,200,3,0,,,2,41 +35352188,10 minutes from JFK airport & Belmont Stakes,69700229,Shatese,Queens,Jamaica,40.68158,-73.7755,Private room,75,1,0,,,3,364 +35352430,Get Together/ Small party space,69700229,Shatese,Queens,Jamaica,40.68144,-73.77739,Entire home/apt,250,1,0,,,3,22 +35352621,washer/dryer private room 20 min from time square,256321373,JessDoinMe,Manhattan,Harlem,40.82168,-73.93855,Private room,50,1,1,2019-06-09,1,1,116 +35352786,Original Artists Loft in Williamsburg,43706661,Nora,Brooklyn,Williamsburg,40.7103,-73.96631,Entire home/apt,230,3,1,2019-06-30,1,1,16 +35352800,Raz and Jesse's Ridgewood Apartment,3084472,Jesse,Queens,Ridgewood,40.70196,-73.90578,Entire home/apt,71,2,0,,,1,41 +35352999,"Bright, minimalist studio in charming Clinton Hill",1324150,Panthea,Brooklyn,Clinton Hill,40.6853,-73.96692,Entire home/apt,140,7,2,2019-06-29,2,1,29 +35353172,"Luxury apartment in the heart of Bedstuy, Brooklyn",78432713,Inna,Brooklyn,Bedford-Stuyvesant,40.69004,-73.95224,Private room,42,7,1,2019-06-04,0.83,1,21 +35353585,1 BR apt next to Washington Sq (Manhattan),192784843,Adam,Manhattan,Greenwich Village,40.73125,-73.99933,Entire home/apt,300,5,0,,,1,9 +35353949,Spacious Two Bedroom-Prime Manhattan Midtown Loc,17689167,Steph,Manhattan,Midtown,40.75124,-73.98451,Entire home/apt,342,3,2,2019-06-23,2,1,40 +35354079,Cozy and luxurious apt in heart of Upper East Side,50484258,Daniel,Manhattan,Upper East Side,40.76299,-73.961,Entire home/apt,290,1,0,,,1,0 +35354567,Garden Room_1,265057419,Dameon,Brooklyn,East New York,40.67201,-73.86944,Private room,70,3,0,,,2,363 +35355147,Charming 3BR Apt in Downtown Manhattan,264842412,Ysabel,Manhattan,Financial District,40.70757,-74.01386,Entire home/apt,321,3,4,2019-06-30,4,1,65 +35356745,New York City - Walking from Central Park,153434419,Rachel,Manhattan,Harlem,40.81433,-73.94255,Private room,75,5,1,2019-06-14,1,3,246 +35357079,New York City!! Walking to Central Park!!,153434419,Rachel,Manhattan,Harlem,40.81369,-73.94239,Private room,95,5,0,,,3,265 +35357271,New York City!! Walking to Central Park LOCATION!!,153434419,Rachel,Manhattan,Harlem,40.81389,-73.94239,Private room,100,5,1,2019-06-18,1,3,260 +35361159,Your Next Stay Should be Here...Cute Stylish Condo,266212681,Charisse,Manhattan,Harlem,40.80778,-73.94561,Entire home/apt,200,1,4,2019-07-06,4,1,139 +35365315,A huge studio by the Fulton Station,265362077,Heeju,Manhattan,Civic Center,40.71262,-74.00698,Entire home/apt,175,30,0,,,1,346 +35367758,"Area is family oriented, public transportation",266246187,Boneskelatone,Brooklyn,Flatbush,40.63053,-73.96227,Shared room,150,15,0,,,1,180 +35367799,Gallery,3871108,Mark,Queens,Astoria,40.75596,-73.91637,Entire home/apt,75,20,0,,,1,344 +35368172,Stylish Spacious 1 bedroom in Amazing Location,266158631,Dani,Manhattan,Hell's Kitchen,40.76194,-73.99006,Entire home/apt,189,1,4,2019-06-30,4,1,180 +35368609,Dazzling Large 3 Bedroom Just Minutes To Manhattan,266261548,Theo,Queens,Astoria,40.75875,-73.92048,Entire home/apt,275,2,2,2019-07-01,2,1,279 +35368749,"Visiting New York City? +Stay in Da Bronx!",64969440,Tersila,Bronx,Pelham Gardens,40.86093,-73.85185,Entire home/apt,75,2,2,2019-07-05,2,1,160 +35369372,Spacious & Sunny 1 BR Apartment In Midtown W Patio,113464126,Zach,Manhattan,Hell's Kitchen,40.76285,-73.98609,Entire home/apt,189,1,3,2019-07-02,3,1,122 +35369883,An Astorians cozy room for you :),144866025,Rory,Queens,Ditmars Steinway,40.77746,-73.9184,Private room,50,14,0,,,1,68 +35370678,Cozy Spacious Near TIMES SQUARE,141778215,Sandy,Manhattan,Chelsea,40.74814,-73.99416,Entire home/apt,269,1,2,2019-06-12,2,1,238 +35371114,August 25-28 Manhatten! Total suite sleeps 4 or 5.,96019,Ruth,Manhattan,Midtown,40.76527,-73.98139,Private room,299,3,0,,,1,3 +35371155,1 bedroom for 2 in a stunning Manhattan apartment,12833650,Georges,Manhattan,Murray Hill,40.7485,-73.97419,Private room,150,4,0,,,1,46 +35371996,AMAZING BIG BRIGHT LOFT APARTMENT IN BROOKLYN,180160926,Antia,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95086,Entire home/apt,190,4,1,2019-06-30,1,1,303 +35372810,Luxury apartment with private roof access,75017049,Dylan,Brooklyn,South Slope,40.66509,-73.98325,Private room,100,31,0,,,2,119 +35373350,1 BR w/ PRIVATE GARDEN and BBQ GRILL!!! in BK,91176276,Carolyn,Brooklyn,Boerum Hill,40.6889,-73.9871,Entire home/apt,250,2,3,2019-07-07,2.73,1,10 +35373956,Fun 3 Bedroom Just Minutes to Manhattan!!,266299609,Nick,Queens,Astoria,40.75883,-73.9216,Entire home/apt,250,2,0,,,1,282 +35374230,Charming 2BR Apartment in Midtown Manhattan,264851724,Jose,Manhattan,Midtown,40.75508,-73.96707,Entire home/apt,347,3,4,2019-07-03,4,1,157 +35374299,Cozy South Williamsburg Room- Best Location in BK,9843389,Lawrence,Brooklyn,Williamsburg,40.70929,-73.95523,Private room,75,1,2,2019-06-13,1.82,2,260 +35375569,Alphabet City Summer!,266310389,Kirk,Manhattan,East Village,40.72837,-73.98171,Private room,50,30,0,,,1,97 +35376063,Bright and Airy Williamsburg Apartment,25352847,Rachel,Brooklyn,Williamsburg,40.71452,-73.9534,Entire home/apt,250,1,1,2019-06-16,1,2,64 +35376213,Renovated huge 1bd 1ba 10 minutes from Manhattan,266315426,Sayem,Brooklyn,Williamsburg,40.70741,-73.94233,Entire home/apt,120,2,0,,,1,27 +35376285,Brand New Couples Brooklyn Apartment,201884425,Hoover,Brooklyn,Cypress Hills,40.68207,-73.87358,Entire home/apt,82,5,1,2019-06-26,1,3,29 +35376427,"Close to Jamaica Hosp, Train F,E, Airtrain,JFK",23217966,Sandra,Queens,Briarwood,40.70587,-73.81342,Private room,45,2,4,2019-07-03,4,2,76 +35376453,Bright & Sunny 1Bed in Prime Williamsburg Location,234383668,Federica,Brooklyn,Williamsburg,40.71509,-73.9565,Entire home/apt,140,15,1,2019-06-04,0.86,1,29 +35376476,Corona's Gem,266316634,Francisco,Queens,Jackson Heights,40.75755,-73.86199,Entire home/apt,250,2,2,2019-06-30,2,1,338 +35376755,Walk To Columbia Uni & Central Park- 1Min To Train,145067304,Amber,Manhattan,Harlem,40.80438,-73.95284,Entire home/apt,220,2,1,2019-06-21,1,1,214 +35377489,"""HAPPYNEST"" CANARSIE",266322736,Fernella,Brooklyn,Canarsie,40.64746,-73.90848,Entire home/apt,110,2,2,2019-06-30,2,1,87 +35378514,Cozy 2 bedrooms apt in Times Square 4-5ppl,265372312,Carmen,Manhattan,Hell's Kitchen,40.76015,-73.99341,Entire home/apt,275,1,5,2019-06-26,5,1,124 +35378679,"Bright, Spacious, Royal Luxury Escape",266333619,Yvonne,Manhattan,Washington Heights,40.85609,-73.93166,Entire home/apt,160,1,3,2019-06-25,3,1,75 +35378917,Fabulous 3 bedroom apartment 10 Min from Manhattan,266335518,Panagiotis,Queens,Astoria,40.76444,-73.9157,Entire home/apt,225,2,1,2019-06-30,1,1,270 +35379061,"3 Bed/2Bath - Fresh and clean,central Manhattan",266291058,Raul,Manhattan,Kips Bay,40.74344,-73.97821,Entire home/apt,500,2,0,,,1,264 +35379267,Beautiful apartment in the heart of West Village!,265178222,Ibrahim Ali,Manhattan,West Village,40.73168,-74.00195,Entire home/apt,295,3,2,2019-06-28,2,1,195 +35379530,Live like a local!,266339498,Valentina,Brooklyn,Bay Ridge,40.63919,-74.02526,Entire home/apt,190,2,0,,,1,119 +35379623,"Amazing place, 15 minutes from Manhattan",266340106,Christos,Queens,Astoria,40.77069,-73.91977,Entire home/apt,125,2,5,2019-07-03,5,1,24 +35379882,Central Park West Apartment King,266341812,Sophia,Manhattan,Upper West Side,40.79147,-73.96644,Private room,99,14,0,,,1,87 +35379899,The Emerald Suite (A Gem In A Historic Mansion),7728754,Malika,Brooklyn,Crown Heights,40.67575,-73.94299,Entire home/apt,100,3,0,,,4,278 +35380023,Owners duplex in beautiful bed stuy brownstone,413316,Laurel,Brooklyn,Bedford-Stuyvesant,40.67866,-73.94759,Entire home/apt,225,4,0,,,1,9 +35380648,Luxury High Rise-Corner View-Walk to Times Square,266346965,Robert,Manhattan,Hell's Kitchen,40.75842,-73.99281,Entire home/apt,350,4,4,2019-06-29,3.64,1,107 +35380876,12th Floor Harlem Apartment w/ Sunlight and View,36793330,Romel,Manhattan,Harlem,40.81852,-73.9381,Private room,120,1,0,,,1,89 +35381538,The Sunshine Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67125,-73.94006,Entire home/apt,90,3,0,,,4,256 +35382875,Beautiful room w/ private bathroom in Williamsburg,29387731,Valerie,Brooklyn,Williamsburg,40.71203,-73.95241,Private room,65,4,1,2019-06-27,1,1,5 +35383920,Sunny Room in Heart Of Bushwick Jefferson L train,266371525,Ignacio,Brooklyn,Bushwick,40.70695,-73.92295,Private room,67,15,0,,,1,176 +35384013,Gorgeous apartment in heart of Manhattan,235054437,Jakob,Manhattan,Hell's Kitchen,40.75994,-73.99591,Entire home/apt,295,4,0,,,1,10 +35384123,Botanical Home,266360944,Olga,Queens,Springfield Gardens,40.66104,-73.76251,Private room,70,1,1,2019-06-16,1,1,89 +35384172,Extremely Large 2 Bedroom Midtown Apartment,266157648,Kraja,Manhattan,Kips Bay,40.74363,-73.9773,Entire home/apt,299,1,4,2019-07-06,4,1,348 +35384238,Private room 20mins away from the Big Apple,246434428,Bryan,Queens,Glendale,40.69488,-73.89649,Private room,40,2,1,2019-06-17,1,1,90 +35384544,Gorgeous 1 BDR Apartment- 2 blocks to Times Sq.,219303510,Guido,Manhattan,Hell's Kitchen,40.76212,-73.99265,Entire home/apt,190,1,4,2019-07-07,4,1,36 +35384734,Studio Apartment in the heart of Chelsea,266380288,Valerie,Manhattan,Chelsea,40.74114,-74.00358,Entire home/apt,198,30,0,,,1,125 +35384842,Artistic Private Attic w/Backyard/Near Metro,23878336,Armando,Bronx,Fordham,40.8703,-73.89313,Entire home/apt,168,3,0,,,10,337 +35384851,Modern 2BD in Astoria-10 min to Central Park,11866880,Juan,Queens,Astoria,40.76358,-73.92399,Entire home/apt,289,3,0,,,1,253 +35385167,Luxurious living in heart of Astoria,266384408,Maria,Queens,Astoria,40.76438,-73.91419,Entire home/apt,225,2,1,2019-07-03,1,1,279 +35385249,☀SOHO☀ Sunny & Spacious ➽ Sleeps 3 ⊹,739539,Robert,Manhattan,SoHo,40.72317,-74.00245,Entire home/apt,171,2,5,2019-07-06,5,1,8 +35385949,Private room 25 min to Manhattan,263778743,Pavel,Brooklyn,Flatbush,40.64621,-73.96208,Private room,60,14,0,,,1,76 +35386161,Prime Williamsburg Bedroom For You,9208470,Erika,Brooklyn,Williamsburg,40.71257,-73.96326,Private room,66,1,4,2019-06-21,4,1,36 +35386373,Great private outdoor space near LES skate park,5971983,Nate,Manhattan,Two Bridges,40.71192,-73.99539,Private room,77,1,2,2019-06-23,2,1,161 +35386835,"Sunny and Spacious in East Village, Alphabet City.",4464764,Aaron,Manhattan,East Village,40.72952,-73.98229,Entire home/apt,125,3,2,2019-06-24,2,1,18 +35386912,Pink,261462340,Luis,Queens,Fresh Meadows,40.73979,-73.77752,Entire home/apt,50,1,1,2019-06-30,1,1,178 +35386935,"Gay friendly private room, 20 minutes to Manhattan",16950644,Bojan,Queens,Jackson Heights,40.75103,-73.8913,Private room,85,1,2,2019-07-07,2,1,42 +35386983,Big 3 Bedroom Apartment in Prime Midtown Manhatten,266398080,Endrit,Manhattan,Kips Bay,40.74535,-73.97753,Entire home/apt,349,1,4,2019-07-01,4,1,265 +35387029,Spectacular Room available in Luxury Soho Apt,212910330,Stephanie,Manhattan,SoHo,40.72273,-74.00352,Private room,400,4,2,2019-07-01,2,1,60 +35387629,The Crown Spacious Apartment,258374626,Beverley,Brooklyn,Crown Heights,40.66397,-73.93353,Entire home/apt,140,2,1,2019-07-07,1,1,87 +35388353,Brooklyn Brownstone Charm,1903663,Rachel,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95954,Private room,125,3,1,2019-06-27,1,2,365 +35388899,Cool Summer Vibes UWS Pent House w/ rooftop,266417731,Charo,Manhattan,Upper West Side,40.78021,-73.98115,Entire home/apt,1200,3,0,,,1,51 +35388921,Stay good stay cheap in Manhattan,109231531,Sophia,Manhattan,Washington Heights,40.84274,-73.94219,Private room,90,1,0,,,2,179 +35389003,Live good live cheap in Manhattan,109231531,Sophia,Manhattan,Washington Heights,40.84414,-73.94099,Private room,90,1,0,,,2,179 +35389856,Spacious Studio ⭐in the heart of NYC,266413128,Dan,Manhattan,West Village,40.73194,-74.00369,Entire home/apt,220,2,3,2019-06-24,3,1,176 +35397690,Cozy 3 bedroom apt / Lower East Side,251918661,Alex,Manhattan,Chinatown,40.71678,-73.99492,Entire home/apt,400,4,3,2019-06-13,2.73,1,57 +35402354,The perfect 3BR apartment,115771987,Yuki,Manhattan,Financial District,40.70723,-74.01045,Entire home/apt,215,30,0,,,6,299 +35402920,Sun drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67376,-73.95816,Entire home/apt,250,3,0,,,2,8 +35406064,perfect 2BR Apt near wall st,115771987,Yuki,Manhattan,Financial District,40.70678,-74.0091,Entire home/apt,170,30,0,,,6,221 +35406411,"Quiet, private room in Hell's Kitchen (Midtown)",28808740,Robert,Manhattan,Hell's Kitchen,40.76426,-73.98945,Private room,94,3,1,2019-07-02,1,2,20 +35406694,Spacious Duplex - Straight ride from JFK,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68635,-73.91482,Private room,195,4,0,,,5,274 +35406921,2 BR apartment in the financial dis.,115771987,Yuki,Manhattan,Financial District,40.70569,-74.00974,Entire home/apt,175,30,0,,,6,317 +35407072,Brooklyn Apartment/ Guaranteed Perfect Stay,106168229,Daniel,Brooklyn,Crown Heights,40.67585,-73.91808,Private room,30,1,1,2019-06-06,0.88,1,34 +35408266,Harlem 1 bedroom in a 2bedrooms long stay only,266502082,Emmanuelle,Manhattan,Harlem,40.82521,-73.93811,Private room,40,30,0,,,1,6 +35408369,2 Family house in Brooklyn sleeps up to 23,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68624,-73.92109,Entire home/apt,400,2,0,,,3,226 +35408455,1 lovely bedroom in the heart of Midtown Manhattan,68832366,Guillaume,Manhattan,Midtown,40.76329,-73.97543,Private room,100,6,4,2019-06-30,4,1,191 +35408591,Stylish studio by Fulton station,107724585,Jessie,Manhattan,Civic Center,40.71232,-74.00689,Entire home/apt,185,30,0,,,2,58 +35409062,"FREE Private Parking, HOME AWAY FROM HOME",266505967,Dean,Bronx,Fordham,40.86066,-73.89883,Private room,149,1,0,,,1,363 +35409488,Modern 2 Bedroom Apartment East Village,266507520,Elizabeth,Manhattan,East Village,40.72699,-73.98576,Entire home/apt,226,2,3,2019-06-19,3,1,163 +35409565,Two Bedroom in 2 Family House in Brooklyn,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68722,-73.91962,Entire home/apt,150,1,3,2019-07-07,3,3,312 +35410832,Kips Bay Manhattan 2 Bedroom Huge Apartment,265005813,Brandon,Manhattan,Kips Bay,40.74122,-73.98274,Entire home/apt,214,2,1,2019-06-20,1,1,185 +35411781,Prime Bed-Stuy Brownstone with Private Backyard,1922762,Caitlin,Brooklyn,Bedford-Stuyvesant,40.68197,-73.93618,Private room,45,2,1,2019-06-28,1,1,154 +35412521,Brand new artist 2 Bedroom lots of Natural light!,266519114,Joseph,Brooklyn,Bushwick,40.70241,-73.92744,Entire home/apt,177,30,2,2019-06-29,2,1,32 +35412871,2 Bedroom Apartment East Village Amazing Location,265183076,Molly,Manhattan,East Village,40.72697,-73.98373,Entire home/apt,250,2,4,2019-07-01,4,1,183 +35412877,Spacious Full Floor Loft near Hudson Yards,260267559,Anila,Manhattan,Midtown,40.75426,-73.98968,Entire home/apt,489,3,1,2019-06-25,1,1,259 +35413859,2 Bedroom Times Square/Central Park |LOCATION|,265487571,Sammie,Manhattan,Hell's Kitchen,40.75949,-73.99367,Entire home/apt,250,2,3,2019-07-06,3,1,190 +35413988,MidCentury Triplex near Times Square/Hells Kitchen,265439369,Yess,Manhattan,Hell's Kitchen,40.7592,-73.98894,Entire home/apt,650,3,3,2019-06-26,3,1,232 +35414687,Lower East Side 2 Bedroom Apartment,265598777,Ashley,Manhattan,Lower East Side,40.72016,-73.98968,Entire home/apt,250,2,5,2019-07-01,5,1,188 +35415121,Beautiful huge studio blocks from Central Park!,1453801,Simon,Manhattan,Hell's Kitchen,40.7682,-73.98598,Entire home/apt,150,30,0,,,1,66 +35415247,CRASH PAD IN NYC,21216008,Jose,Queens,Jackson Heights,40.75009,-73.87799,Shared room,30,1,3,2019-06-20,3,4,350 +35415489,2 Bedroom Apartment Amazing Location,265413630,Charlette,Manhattan,Gramercy,40.73265,-73.98435,Entire home/apt,250,2,4,2019-07-06,4,1,160 +35415829,2 BEDROOMS best Brooklyn area,176463632,Laura,Brooklyn,Greenpoint,40.72025,-73.94658,Entire home/apt,400,4,0,,,1,348 +35416249,AMAZING 3 BEDROOMS BROOKLYN,217803692,Shelby,Brooklyn,Greenpoint,40.72194,-73.94332,Entire home/apt,400,3,0,,,1,358 +35416343,2 BEDROOMS BROOKLYN BRAND NEW!,218260240,Katie,Brooklyn,Williamsburg,40.72047,-73.94504,Entire home/apt,350,3,2,2019-06-21,2,1,363 +35416507,Amazing 3 BEDROOMS Brooklyn,217807790,Jessica,Brooklyn,Williamsburg,40.71647,-73.94657,Entire home/apt,500,3,0,,,1,354 +35416674,Luxury 2BR/2Bath in Times SQ,252886317,Wanda,Manhattan,Theater District,40.75962,-73.98512,Entire home/apt,489,3,4,2019-07-02,4,1,167 +35416858,LUX Studio 10 mins to Central Park!!,189382679,Sasha,Manhattan,Harlem,40.81658,-73.938,Entire home/apt,78,2,1,2019-06-21,1,1,208 +35416869,Marie's Cottage,38363932,Marie,Queens,Briarwood,40.7143,-73.81834,Shared room,99,2,0,,,1,365 +35416914,Scandanavian Loft in Gramercy Park,102854098,Michael,Manhattan,Kips Bay,40.74052,-73.98188,Entire home/apt,450,3,1,2019-07-01,1,1,263 +35417083,A SWEET TASTE OF THE SUMMER IN BROOKLYN,229726240,Yenni,Brooklyn,Williamsburg,40.71518,-73.94146,Entire home/apt,300,3,0,,,1,359 +35417147,STUNNING 3 BEDROOMS DUPLEX,249973556,Adriana,Brooklyn,Williamsburg,40.71511,-73.96236,Entire home/apt,500,3,2,2019-06-15,2,1,332 +35417570,Cozy Boerum Hill,11437322,Andrea,Brooklyn,Boerum Hill,40.68752,-73.98549,Entire home/apt,200,4,0,,,1,45 +35417968,BROOKLYN 2 BEDROOMS,253493647,Karina,Brooklyn,Williamsburg,40.71962,-73.9605,Entire home/apt,500,3,1,2019-06-16,1,1,357 +35418634,"Cosy space,10mins from Manhattan!!",266561095,Vlada,Queens,Astoria,40.75566,-73.91742,Entire home/apt,85,1,1,2019-06-23,1,1,27 +35419046,"Bright, New & Quiet Bushwick Apt close subway L/J",539364,Vered,Brooklyn,Bushwick,40.68743,-73.91048,Entire home/apt,129,3,0,,,1,51 +35419996,Brand New 2BR in Times Square**WALK EVERYWHERE,225731818,Mengyuan,Manhattan,Theater District,40.75672,-73.98653,Entire home/apt,385,2,1,2019-06-23,1,1,28 +35420233,Room steps away from TIME SQUARE,263676349,Hanna,Manhattan,Hell's Kitchen,40.75711,-73.99674,Private room,119,3,1,2019-07-07,1,2,30 +35420277,World Trade Center NYC Loft,17215584,NoHo,Manhattan,Financial District,40.70886,-74.00885,Entire home/apt,189,3,2,2019-06-30,2,1,339 +35420482,"Chic, modern Studio with balcony access",17349726,Gillian,Brooklyn,Bushwick,40.69424,-73.92652,Entire home/apt,89,1,8,2019-07-03,7.50,1,88 +35422253,"Bright, sunlit modern place in trendy neighborhood",152518136,Linda,Queens,Ridgewood,40.70633,-73.91344,Private room,100,1,2,2019-06-23,2,1,63 +35422599,TRANQUIL HAVEN W/PRIVATE BATH-8 MINS TO JFK RM.#1,178272943,Sharon,Queens,Jamaica,40.67162,-73.77919,Private room,65,1,0,,,4,74 +35422824,The Skylight Suite in a Historic Brooklyn Mansion,5241234,Malika,Brooklyn,Crown Heights,40.67432,-73.94255,Entire home/apt,100,3,0,,,1,247 +35422845,Bright and cozy studio - separate kitchen in UES,266590338,Antonella,Manhattan,Upper East Side,40.77401,-73.94993,Entire home/apt,220,5,0,,,1,77 +35423325,Pretty 1 BDR Apt in Times SQ / Theater District,2534058,Fuda,Manhattan,Hell's Kitchen,40.76269,-73.98928,Entire home/apt,190,2,4,2019-07-03,4,1,29 +35424212,Amazing Getaway on The Upper East Side,266600351,Raquel,Manhattan,East Harlem,40.78658,-73.94989,Entire home/apt,200,4,0,,,1,121 +35424310,Speakeasy Vibes Above a Bar in Popular Bushwick,35244614,Mick,Brooklyn,Bushwick,40.70155,-73.92628,Entire home/apt,125,2,2,2019-07-01,2,1,7 +35424418,Sunny Northern Nook,23455550,Kyle,Manhattan,Inwood,40.86542,-73.92092,Entire home/apt,100,1,0,,,1,0 +35424717,"2Br Apartment in Soho - Enough said, right?!",9883499,Emily,Manhattan,SoHo,40.72358,-74.00397,Entire home/apt,230,1,1,2019-06-06,0.91,1,6 +35425001,"cute, quite, one bedroom Gramercy apartment",65960619,Andrea,Manhattan,Gramercy,40.73523,-73.98142,Entire home/apt,160,1,0,,,1,14 +35425032,Beautiful 2 Bedroom Apt Near Times Square,266601642,Liz,Manhattan,Hell's Kitchen,40.75431,-73.99459,Entire home/apt,185,3,1,2019-06-20,1,1,267 +35425034,Stylish studio by Fulton station,107724585,Jessie,Manhattan,Financial District,40.71035,-74.00734,Entire home/apt,185,30,0,,,2,346 +35425128,Luminous bedroom in Williamsburg,18549793,Charlotte,Brooklyn,Williamsburg,40.70985,-73.94462,Private room,80,2,1,2019-06-25,1,1,10 +35425429,Entire Floor 3Br/2Ba Times Sq Apt,231484830,Ernest & Carol,Manhattan,Theater District,40.76308,-73.98482,Entire home/apt,450,3,0,,,1,161 +35425436,World luxury,266609191,Yvette,Brooklyn,Bedford-Stuyvesant,40.68451,-73.92753,Private room,70,1,2,2019-06-15,2,1,161 +35425596,Trendy 3Bd City Apartment next to the Park! ❤️,266595097,Evelyn,Manhattan,East Village,40.72434,-73.98047,Entire home/apt,340,2,0,,,1,180 +35425638,Modern 2 BEDROOM PRIME Upper East Side APT.,27181542,Jt,Manhattan,Upper East Side,40.77474,-73.94943,Entire home/apt,249,30,0,,,1,325 +35425682,** Location~Location~Location in Time Square **,266477120,Mary,Manhattan,Hell's Kitchen,40.76125,-73.98848,Entire home/apt,120,3,2,2019-07-05,2,1,203 +35427155,"Very close to Subway, Jamaica Hosp, Airtrain, JFK",23217966,Sandra,Queens,Jamaica,40.70415,-73.81558,Private room,35,2,6,2019-06-27,6,2,38 +35428184,Private Room in Manhattan near Central Park,59392910,Tara,Manhattan,Upper East Side,40.76462,-73.95842,Private room,108,1,4,2019-07-07,4,1,113 +35428298,NYC Diamond New 5 star 2nd floor Loft 5beds 2baths,266627618,Charlene,Bronx,Wakefield,40.9026,-73.84806,Entire home/apt,288,2,0,,,1,346 +35428765,Very cosy apartment in uptown Manhattan,44452858,Taner,Manhattan,Inwood,40.86639,-73.92369,Entire home/apt,150,7,0,,,1,8 +35429053,1.5 Bedroom Penthouse with Private Garden & Office,6457972,James,Manhattan,Kips Bay,40.7409,-73.98085,Entire home/apt,199,2,0,,,1,49 +35430128,Upper West Side Sweet&Cozy STUDIO,266641882,Katie J,Manhattan,Upper West Side,40.79836,-73.96784,Entire home/apt,135,1,7,2019-06-28,7,1,94 +35430378,Enchanted room 5 mins from JFK/ LGA 15 mins away,266645207,Michael,Queens,Springfield Gardens,40.66206,-73.74962,Private room,75,1,0,,,2,180 +35430525,Stunning Apartment near Time Square,264817559,Claudio,Manhattan,Hell's Kitchen,40.76288,-73.9915,Entire home/apt,223,3,3,2019-07-03,3,1,25 +35431400,Wonderful 1 Bedroom Apartment (NYU CAMPUS),266651586,Mike,Manhattan,Greenwich Village,40.72812,-73.99963,Entire home/apt,150,30,0,,,1,180 +35431739,Cozy and nice apartment in Upper East Side,31043699,Nikki,Manhattan,Upper East Side,40.78037,-73.94657,Entire home/apt,120,5,1,2019-06-23,1,1,23 +35432326,Beautiful Luxury Studio on Wall St- Sleeps up to 4,63941116,Folami,Manhattan,Financial District,40.70606,-74.00899,Entire home/apt,199,1,3,2019-06-20,3,1,324 +35442636,The perfect summer NYC gem,266699294,Tiffany,Manhattan,East Harlem,40.79136,-73.93979,Entire home/apt,300,2,1,2019-06-24,1,1,365 +35446198,COMFORTABLE PRIVATE ROOM in Williamsburg,8119817,Mila,Brooklyn,Williamsburg,40.71601,-73.9413,Private room,80,1,1,2019-06-30,1,2,23 +35446948,Modern cozy stay,134378909,Roger,Brooklyn,Bedford-Stuyvesant,40.67846,-73.90803,Private room,60,3,0,,,1,9 +35447651,Bright Lusurious 2 BedRoom 3 BED Apartment in NY,266725339,Jake&Aden,Manhattan,Hell's Kitchen,40.76276,-73.9895,Entire home/apt,450,4,8,2019-06-21,8,1,66 +35447708,Amazing private room!!!near subway & Central Park2,266726110,Sergii,Manhattan,Harlem,40.80463,-73.95655,Private room,88,30,0,,,7,360 +35447709,Spacious private room near Columbia University 2,266726110,Sergii,Manhattan,Harlem,40.80348,-73.95671,Private room,89,30,0,,,7,360 +35448360,Oversized Studio in the Heart of Midtown,207897448,Thom,Manhattan,Midtown,40.7575,-73.9643,Entire home/apt,185,2,3,2019-06-26,3,1,43 +35448444,1BEAUTIFUL ROOM WITH AIR CONDITION SHEEPSHEAD BAY,102292061,Roman,Brooklyn,Sheepshead Bay,40.58625,-73.94591,Private room,50,1,8,2019-07-05,7.27,3,75 +35448514,Nice private room. Central Park. Near subway2,266726110,Sergii,Manhattan,Harlem,40.80485,-73.9581,Private room,88,30,0,,,7,364 +35448516,Modern designed room in Manhattan! near B/C train2,266726110,Sergii,Manhattan,Harlem,40.80494,-73.95588,Private room,89,30,2,2019-06-23,2,7,361 +35448841,"Bright, Airy, Downtown Oasis :)",5236664,Madeline,Manhattan,Lower East Side,40.71871,-73.99058,Entire home/apt,300,2,1,2019-07-02,1,1,284 +35451163,❤️$7 MILLION TOWNHOME--MINUTES TO TIMES SQUARE❤️,242405832,Sam,Manhattan,Harlem,40.82318,-73.94424,Entire home/apt,575,2,0,,,1,287 +35451608,3 BEDROOMS IN BROOKLYN,260447969,Eddie,Brooklyn,Greenpoint,40.72019,-73.94648,Entire home/apt,600,3,1,2019-06-23,1,1,351 +35451636,Newly renovated private room close to Central Park,266726110,Sergii,Manhattan,Harlem,40.80315,-73.95616,Private room,88,30,0,,,7,364 +35451637,Amazing private room near central park and subway2,266726110,Sergii,Manhattan,Harlem,40.80445,-73.9567,Private room,88,30,0,,,7,360 +35453591,Cozy Home Just Minutes From Midtown Manhattan,266754587,Mela,Queens,Long Island City,40.75734,-73.9324,Entire home/apt,225,2,1,2019-06-23,1,1,261 +35454095,Beautiful Townhouse - Center of NYC 4br/2ba,177188159,Anna + Brad,Manhattan,Upper East Side,40.76254,-73.96223,Entire home/apt,800,3,0,,,1,277 +35454285,"Sunny, spacious Brooklyn apt - solo woman only",17224232,Alva,Brooklyn,Flatbush,40.64635,-73.95474,Shared room,30,3,3,2019-07-07,3,1,46 +35454551,Spacious RM in Home w/Backyard/Balcony/Near Metro,23878336,Armando,Bronx,Fordham,40.86963,-73.89465,Private room,79,3,0,,,10,69 +35454756,Fully furnished APT located close to Manhattan,39275815,Sena,Queens,Long Island City,40.76435,-73.93537,Entire home/apt,220,5,1,2019-06-21,1,1,63 +35455445,Sunny Unit. New ! Quiet. Near the UN,266762890,Bel,Manhattan,Civic Center,40.71301,-74.00481,Entire home/apt,172,30,0,,,1,331 +35455986,Newly renovated 1 bedroom apartment!,63227531,Marwa,Staten Island,Randall Manor,40.62845,-74.12294,Entire home/apt,99,2,1,2019-06-20,1,2,342 +35456139,Charming Attic RM with Backyard/Porch/Near Metro,23878336,Armando,Bronx,Fordham,40.87085,-73.89318,Private room,58,3,0,,,10,75 +35456208,Spacious private room Central Park & Columbia2,266726110,Sergii,Manhattan,Harlem,40.80322,-73.95673,Private room,89,30,0,,,7,305 +35456322,Brand New Spacious 2 Bedroom Apt Near Times Square,266762041,Rivka,Manhattan,Hell's Kitchen,40.75259,-73.9942,Entire home/apt,220,1,3,2019-06-22,3,1,52 +35456622,4 Bedroom apartment in 2 family house in Brooklyn,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68919,-73.92553,Entire home/apt,190,1,3,2019-07-01,3,2,269 +35457028,Cozy Attic RM in Home w/Backyard/Patio/Near Metro,23878336,Armando,Bronx,Fordham,40.86947,-73.89389,Private room,55,3,0,,,10,86 +35457664,Cute Attic RM with Backyard/Patio/Near Metro,23878336,Armando,Bronx,Fordham,40.87066,-73.89317,Private room,55,3,0,,,10,89 +35458291,Geraldine's 1 BR APT 5 min from JFK,259207391,Pauline,Queens,Jamaica,40.67634,-73.79687,Private room,65,1,3,2019-07-02,3,3,357 +35458547,Charming Apartment a few steps from Soho!,266769677,Carme,Manhattan,Chinatown,40.71654,-73.99485,Entire home/apt,202,3,2,2019-07-06,2,1,215 +35458699,Cute house close to manhattan,257879526,Israel,Brooklyn,East Flatbush,40.65926,-73.93468,Private room,60,2,1,2019-07-07,1,2,343 +35459319,Luxury and Relaxation in Midtown East,266773830,Christopher,Manhattan,Kips Bay,40.74402,-73.97477,Entire home/apt,475,4,2,2019-07-01,2,1,157 +35459328,Best Views of Times Square,266780775,Margarita,Manhattan,Hell's Kitchen,40.76021,-73.99976,Entire home/apt,305,1,2,2019-06-19,2,1,133 +35459465,Spacious Private Room for 2ppl-Close to Manhattan,13954138,Clarissa,Brooklyn,Bushwick,40.6949,-73.91636,Private room,60,7,0,,,2,15 +35459480,Riverside Domino Park-LARGE 2 & a 1/2 :-) Bedroom,266774171,Gage,Brooklyn,Williamsburg,40.71334,-73.96717,Entire home/apt,262,2,5,2019-07-07,5,1,118 +35459559,Flushing - downtown,46672441,Vivian,Queens,Flushing,40.7488,-73.82191,Private room,70,3,0,,,1,90 +35459644,Fort Greene Duplex- Live and Work Space,1355112,Jean,Brooklyn,Clinton Hill,40.68875,-73.96725,Entire home/apt,300,5,0,,,2,209 +35460496,"1 room in the coolest neighborhood, good lighting",6291714,Ava,Manhattan,Little Italy,40.71703,-73.998,Private room,74,4,0,,,1,44 +35460630,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69757,-73.97557,Private room,48,30,0,,,25,347 +35460924,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69611,-73.97542,Private room,48,30,0,,,25,333 +35460949,Sweet Home,69683180,Shuhua,Manhattan,Hell's Kitchen,40.76198,-74.00033,Entire home/apt,200,1,0,,,1,3 +35461013,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69747,-73.97506,Private room,48,30,0,,,25,310 +35461095,Sunny Private BR Apt in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69632,-73.97396,Private room,48,30,0,,,25,68 +35461209,Freshly furnished private room - GREAT Location!,230192510,Zach,Brooklyn,Fort Greene,40.69696,-73.97496,Private room,48,30,0,,,25,219 +35461302,"Your Private Oasis In A Shared Apt, Near 3 Trains!",230192510,Zach,Brooklyn,Fort Greene,40.69698,-73.97412,Private room,48,30,0,,,25,340 +35461373,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69617,-73.97532,Private room,48,30,0,,,25,341 +35461466,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69749,-73.97551,Private room,48,30,0,,,25,257 +35461527,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69634,-73.97393,Private room,48,30,0,,,25,342 +35461620,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.6971,-73.97523,Private room,48,30,0,,,25,305 +35461700,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69774,-73.97502,Private room,48,30,0,,,25,341 +35461818,Zen East Williamsburg w/ yard,2428014,Kristen,Brooklyn,Williamsburg,40.7128,-73.94342,Entire home/apt,199,7,0,,,1,33 +35461822,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.974,Private room,48,30,0,,,25,67 +35461885,Stylish Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69768,-73.97564,Private room,48,30,0,,,25,337 +35461960,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69633,-73.97361,Private room,48,30,0,,,25,334 +35462054,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69693,-73.97396,Private room,48,30,0,,,25,66 +35462128,Airy Private BR In Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69632,-73.97553,Private room,48,30,0,,,25,342 +35462273,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.97498,Private room,48,30,0,,,25,189 +35463373,"1BR Loft in Williamsburg, High Ceilings",17346516,John,Brooklyn,Williamsburg,40.71926,-73.96035,Entire home/apt,200,2,0,,,1,10 +35463466,Cozy Studio ⭐ Premium Location in the Village!,266800773,Ximena,Manhattan,Greenwich Village,40.72973,-74.00166,Entire home/apt,249,2,2,2019-06-30,2,1,177 +35463471,West 15th Street Cozy Chelsea 1bd Serviced Apt,22541573,Ken,Manhattan,West Village,40.74,-74.004,Entire home/apt,209,30,0,,,87,364 +35463686,"Rento mi sofá cama , en mi apartamento. Vivo solo",57201275,Jesús,Queens,Astoria,40.75942,-73.92601,Shared room,45,2,1,2019-06-22,1,1,84 +35463900,Large Full Floor Apartment in Heart of Times Sqr!!,253482129,Ilir,Manhattan,Hell's Kitchen,40.76437,-73.99184,Entire home/apt,210,2,1,2019-06-30,1,1,32 +35463996,Spacious Upper West Side Bedroom,19639667,Sara,Manhattan,Upper West Side,40.80092,-73.96195,Private room,100,1,0,,,1,293 +35464309,Historic Manhattan Home to make your stay special!,38458421,Jonalee,Manhattan,Kips Bay,40.74501,-73.97774,Entire home/apt,900,2,0,,,1,245 +35464315,Apartment with basement private entrance,14717052,Lora,Brooklyn,Greenpoint,40.72329,-73.93758,Entire home/apt,180,1,2,2019-06-30,2,1,365 +35464448,Modern Loft in Times Square/Hells Kitchen District,227805996,Jessie,Manhattan,Hell's Kitchen,40.75332,-73.99539,Entire home/apt,300,3,1,2019-06-28,1,1,53 +35464492,Cozy Nights In The Village,266818709,Nat,Manhattan,East Village,40.72175,-73.98259,Entire home/apt,400,3,3,2019-07-07,3,1,128 +35464510,Cozy super affordable room,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.67813,-73.92904,Private room,38,5,1,2019-06-14,1,3,356 +35464594,Charming large 2 bedroom + 2 bath Ditmas park apt,29929166,Yvette,Brooklyn,Flatbush,40.62958,-73.96137,Entire home/apt,150,20,0,,,1,35 +35464662,BEAUTIFUL MADISON AVE STUDIO -- EXPERIENCED HOST!,25012594,Shane,Manhattan,Upper East Side,40.76801,-73.96896,Entire home/apt,140,2,2,2019-06-22,2,1,105 +35464719,Designer 1 Bedroom in Serviced Doorman Building,107987935,Tommy,Manhattan,Financial District,40.70701,-74.01007,Entire home/apt,175,30,0,,,1,311 +35464920,I have private bathrooms i have a lovely dresser,266823254,Temi,Queens,Bayswater,40.60825,-73.75695,Private room,60,1,0,,,1,342 +35464959,"1 bedroom, shared apartment/living.",266823933,Natalie,Bronx,Van Nest,40.8455,-73.86217,Private room,35,3,1,2019-06-17,1,1,342 +35465106,Explore NYC in Stylish Contemporary Studio,265666981,Lenny,Manhattan,Hell's Kitchen,40.76397,-73.99078,Entire home/apt,219,1,5,2019-07-01,5,1,173 +35465165,Design XL large one bedroom apartment in Chelsea,19593305,Cyril,Manhattan,Chelsea,40.74942,-74.00335,Private room,350,8,0,,,1,78 +35465343,BedStuyBeauty,266826469,Lisa,Brooklyn,Bedford-Stuyvesant,40.6815,-73.93408,Entire home/apt,85,28,0,,,1,74 +35465452,Mid-Century Modern near Madison Square Park,239758048,Shelly,Manhattan,Flatiron District,40.74055,-73.98522,Entire home/apt,450,3,3,2019-07-02,3,1,101 +35465579,Be happy in New York,194804585,Ines,Queens,Jackson Heights,40.75268,-73.88595,Private room,55,1,4,2019-06-27,4,2,308 +35465766,NYC Beach House with Yard.,6227706,Michael,Queens,Arverne,40.58817,-73.79914,Private room,99,3,1,2019-06-29,1,1,95 +35465967,Cozy room in the heart of SoHo,266829739,Peel,Manhattan,SoHo,40.72208,-74.00389,Private room,70,30,0,,,1,96 +35466184,Beautiful large master bedroom suite,266834909,Fred,Brooklyn,South Slope,40.66512,-73.99084,Private room,60,14,1,2019-07-08,1,1,26 +35466744,Riverdales finest!,105190318,Samuel,Bronx,Riverdale,40.88452,-73.91065,Entire home/apt,99,3,2,2019-06-12,2,1,52 +35466745,Elegant 2bdrm apt in the Center of NYC,265617965,Yan,Manhattan,Flatiron District,40.74032,-73.98801,Entire home/apt,300,3,4,2019-07-01,4,1,161 +35466749,Brand New One bedroom UpperEastSide,199466039,Sydney,Manhattan,Upper East Side,40.77664,-73.95481,Entire home/apt,349,1,0,,,3,346 +35466764,"Classic Williamsburg 2 bedroom loft, with rooftop!",50996583,Justin,Brooklyn,Williamsburg,40.71216,-73.9623,Entire home/apt,264,2,5,2019-06-30,5,1,327 +35466919,Astoria 2nd Floor,59553953,Sam,Queens,Long Island City,40.76117,-73.93038,Entire home/apt,149,4,0,,,1,39 +35467129,Gorgeous Luxury Studio!!,205510323,Dave,Manhattan,Hell's Kitchen,40.77044,-73.99126,Entire home/apt,220,3,0,,,1,29 +35467286,Beautiful studio basement in Bushwick,14763957,Giuliana,Brooklyn,Bushwick,40.70364,-73.92679,Private room,58,2,0,,,1,57 +35467615,I LOVE NYC STUDIO .,241985816,Carlos,Queens,Astoria,40.76842,-73.90633,Private room,100,1,2,2019-06-25,2,3,179 +35467651,AMAZING TWO BEDROOMS IN THE BEST PART OF BROOKLYN!,260445684,Giovany,Brooklyn,Williamsburg,40.70599,-73.94817,Entire home/apt,299,3,3,2019-07-07,3,1,195 +35467734,2 BEDROOM RIGHT IN THE MIDDLE OF MANHATTAN!!,266826700,Maria De La Encarnacion,Manhattan,Kips Bay,40.74399,-73.97753,Entire home/apt,299,3,2,2019-06-16,2,1,350 +35467947,Harmonious Bright Bedroom,4107600,Valentina,Brooklyn,Bushwick,40.70385,-73.91694,Private room,55,2,0,,,3,314 +35468220,Forest Hills Charming 1 bdrm apartment!,7599704,Sasha,Queens,Forest Hills,40.72085,-73.84088,Entire home/apt,75,1,0,,,1,7 +35468369,4BR/3BA Triplex w/ Patio (Empire State Building!),266364277,Emilia & Jonathan,Manhattan,Kips Bay,40.74337,-73.97726,Entire home/apt,850,3,0,,,1,19 +35468870,Sunny. Free Parking available on street.,266860944,Rohon,Queens,Rosedale,40.65792,-73.73945,Private room,44,7,1,2019-06-30,1,1,227 +35468906,Gorgeous 1BR Upper West Side *NEW LISTING *,266860871,Georgia,Manhattan,Upper West Side,40.787,-73.97237,Entire home/apt,200,2,1,2019-07-03,1,1,265 +35469069,La Guardia Aiport My Place 1,259289556,Emely,Queens,East Elmhurst,40.76227,-73.86451,Private room,49,1,1,2019-06-16,1,1,48 +35470543,"Brooklyn - Bushwick/ Pool, Gym, Sauna, Rooftop.",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69339,-73.90647,Private room,60,3,1,2019-06-21,1,3,72 +35471285,gorgeous boho soho apartment!,52137386,Camille,Manhattan,Nolita,40.72087,-73.99647,Entire home/apt,203,2,0,,,1,88 +35474470,Cute Apartment steps from Time Square,264805208,Mariel,Manhattan,Hell's Kitchen,40.75765,-73.99247,Entire home/apt,211,3,4,2019-06-28,4,1,56 +35474830,Huge room in Brooklyn for rent,147228245,Evelyn,Brooklyn,Sunset Park,40.64658,-74.00986,Private room,38,10,0,,,1,67 +35475475,Beautiful place in❤️of Manhattan ⌚Times Square,266828407,Alex,Manhattan,Hell's Kitchen,40.76183,-73.98948,Entire home/apt,350,1,10,2019-06-28,10,1,163 +35477828,Spacious Modern Studio in Brooklyn Close to Subway,33861246,Ivo,Brooklyn,Bedford-Stuyvesant,40.68209,-73.91323,Entire home/apt,100,2,4,2019-07-05,4,1,64 +35479956,Airy and bright artist’s loft space in Fort Greene,602359,Mutale,Brooklyn,Fort Greene,40.6938,-73.97404,Entire home/apt,150,3,1,2019-06-16,1,2,107 +35480817,★★★Chic place in center of Manhattan★★★,266828681,Alex,Manhattan,Hell's Kitchen,40.75493,-73.99458,Entire home/apt,320,1,12,2019-07-02,12,1,189 +35481276,NIGHT CRAS PAD,153371127,Nancy,Queens,Jackson Heights,40.74908,-73.87961,Shared room,28,1,0,,,2,341 +35481361,Prospect Park Hostel- Male Long Term Stay-3,179478172,Elizabeth,Brooklyn,Flatbush,40.65175,-73.96208,Shared room,25,10,1,2019-06-15,1,3,299 +35481807,Male Shared room 1 bed in the bedroom long term,179478172,Elizabeth,Brooklyn,Flatbush,40.65022,-73.96281,Shared room,25,4,1,2019-06-26,1,3,334 +35481836,Duplex Residence with Breathtaking NYC View!,232557023,NuAve,Manhattan,Flatiron District,40.73942,-73.98648,Entire home/apt,1750,7,0,,,1,178 +35481930,Prospect Park Hostel- Male Long Term Stay-1,179478172,Elizabeth,Brooklyn,Flatbush,40.64946,-73.96041,Shared room,25,10,0,,,3,341 +35482322,⚡Quiet Home in Center of Village,266797970,Javi,Manhattan,Greenwich Village,40.72938,-73.99955,Entire home/apt,249,2,1,2019-06-24,1,1,146 +35482487,"Private studio and backyard, 12 mins drive to JFK",55450195,Francis,Brooklyn,Cypress Hills,40.68224,-73.86806,Entire home/apt,60,3,6,2019-07-08,6,1,21 +35482897,Great Flat in Chelsea:),117484717,Gerado,Manhattan,Chelsea,40.74637,-74.0002,Entire home/apt,240,3,2,2019-06-23,2,1,35 +35483304,"Chelsea Condo - Near Restaurants, Shops, & Trains!",74250362,Molly,Manhattan,Chelsea,40.74509,-73.99135,Entire home/apt,325,2,4,2019-06-28,4,1,197 +35483321,1 bedroom apt 35min away from the city.,254622508,Stephanie,Bronx,Kingsbridge,40.87256,-73.89978,Entire home/apt,95,1,4,2019-07-01,4,1,84 +35483911,Lux 2BR apt City View:),191009021,Matt,Manhattan,Upper West Side,40.77119,-73.98769,Entire home/apt,250,3,1,2019-06-20,1,1,14 +35484268,Best CoLiving next to Bushwick! 2,133802988,Sergii,Queens,Ridgewood,40.7046,-73.90215,Shared room,38,30,0,,,6,358 +35484401,Newly renovated shared room in great neighborhood2,248161322,Sergii,Brooklyn,Bushwick,40.7003,-73.9406,Shared room,35,30,0,,,14,320 +35484662,Cozy bedroom in Astoria next to subway,243367528,Lucca & Paula,Queens,Astoria,40.76599,-73.91225,Private room,100,1,9,2019-07-01,9,7,253 +35484875,Luxury apt with Statue of Liberty view,266966503,Nyc,Manhattan,Financial District,40.70629,-74.01535,Entire home/apt,200,1,1,2019-06-27,1,1,326 +35485080,GOOD VYBZ BROOKLYN,237729032,Samuel,Brooklyn,East New York,40.67807,-73.8794,Private room,60,3,0,,,2,365 +35485220,A Comfy room in 3-bedroom apartment,264296595,Hyunsung,Queens,Flushing,40.75811,-73.82504,Shared room,69,1,2,2019-06-23,2,3,355 +35485306,MODERN LOFT STUDIO IN CENTRE MANHATTAN (SLEEP 4)!,266800860,Marco,Manhattan,Murray Hill,40.74612,-73.97417,Entire home/apt,159,1,0,,,1,201 +35486014,Executive private room with full size bed-M train2,248161322,Sergii,Brooklyn,Bushwick,40.69935,-73.93889,Private room,63,30,0,,,14,311 +35486841,Amazing private room!!! near subway & Broadway2,248161322,Sergii,Brooklyn,Bushwick,40.70024,-73.9392,Private room,64,30,0,,,14,343 +35486871,The Hot Spot,208230311,Jordan,Manhattan,Washington Heights,40.83833,-73.94539,Private room,34,1,2,2019-06-21,2,1,278 +35487169,Lavish Private Room with Bathroom/Williamsburg2,248161322,Sergii,Brooklyn,Bushwick,40.70109,-73.93952,Private room,79,30,0,,,14,365 +35487203,Sweet-room,266983536,Nawa,Bronx,Longwood,40.82794,-73.90412,Private room,45,2,1,2019-06-24,1,1,364 +35487783,Lovely Private 1 bed + 1 bath in my shared duplex,15163034,Gonzalo,Manhattan,Upper East Side,40.77005,-73.95926,Entire home/apt,119,3,3,2019-07-02,3,1,174 +35487942,Artist apartment in the heart of two bridges,1616218,Liza,Manhattan,Lower East Side,40.7132,-73.99103,Entire home/apt,165,3,0,,,1,71 +35488159,Spread Love it's Brooklyn,242361272,Alicia,Brooklyn,East New York,40.66192,-73.88213,Entire home/apt,80,1,0,,,1,297 +35488376,Entire Apartment Near Times Square & Central Park,157430725,Fiona,Manhattan,Hell's Kitchen,40.76581,-73.98867,Entire home/apt,150,1,6,2019-07-01,6,3,222 +35489384,Cozy Apartment,236186921,Iveth,Staten Island,Tottenville,40.50641,-74.23059,Entire home/apt,75,1,1,2019-06-28,1,1,299 +35490477,"Rooms in the new hipster area of Brooklyn, NYC 1",266998393,Hector,Brooklyn,Bushwick,40.69424,-73.91847,Private room,35,3,0,,,3,275 +35490616,Williamsburg Oasis: 2BR with Washer-Dryer!,180966626,Jonathan,Brooklyn,Williamsburg,40.71336,-73.95914,Entire home/apt,259,2,4,2019-07-01,4,1,345 +35490736,Brownstone BK heaven,2954749,Anna,Brooklyn,Fort Greene,40.69216,-73.97455,Private room,100,30,0,,,1,64 +35490739,Times Square Studio -- Central location yet quiet,206222230,Neil,Manhattan,Theater District,40.7572,-73.98628,Entire home/apt,180,10,1,2019-06-13,1,1,17 +35490967,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73325,-74.00583,Entire home/apt,200,3,0,,,5,294 +35491013,Cozy Apartment Located in Midtown/Times Square,267009547,Jerry,Manhattan,Hell's Kitchen,40.7643,-73.9876,Entire home/apt,395,3,2,2019-07-07,2,1,152 +35491409,Sunny Spacious Room in UWS near Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80155,-73.96732,Private room,150,1,7,2019-07-07,7,3,135 +35491909,Glorious Garden Apt Getaway,267015745,MacKenzie,Brooklyn,East New York,40.67228,-73.89194,Entire home/apt,97,2,0,,,1,324 +35492112,"Spacious Bushwick 3BR, 2.5 Bath (Steps to Subway!)",266531875,Willy,Brooklyn,Bushwick,40.69403,-73.91991,Entire home/apt,475,2,3,2019-07-01,3,3,343 +35492191,Budget-Friendly 1 Bedroom 1 Bath near Wall St,71577601,Gensing,Manhattan,Financial District,40.70595,-74.00974,Entire home/apt,250,2,2,2019-06-21,2,1,335 +35492664,Modern Bushwick 2BR (15 Minutes to Manhattan!),266531875,Willy,Brooklyn,Bushwick,40.69222,-73.91971,Entire home/apt,200,2,2,2019-07-02,2,3,351 +35492876,"Spacious Bushwick 5BR, 3.5 BATH (Steps to Subway!)",266531875,Willy,Brooklyn,Bushwick,40.69383,-73.91878,Entire home/apt,650,2,1,2019-06-16,1,3,338 +35493162,Luxury Apartment in Amazing Williamsburg! Sleeps 7,259662705,Elay,Brooklyn,Williamsburg,40.71324,-73.94271,Entire home/apt,184,3,1,2019-06-11,1,1,217 +35493691,Apartment for rent in Spanish Harlem,16334409,Lisa,Manhattan,East Harlem,40.79495,-73.93335,Entire home/apt,89,24,0,,,2,36 +35493937,"1 bdrm condo/ rooftop pool, jacuzzi, water views!",10811427,David,Manhattan,Murray Hill,40.74536,-73.97222,Entire home/apt,189,2,1,2019-06-23,1,1,69 +35494744,37th Floor Apt w/ Views in Prime Brooklyn Location,11814933,Puja,Brooklyn,Fort Greene,40.69171,-73.98145,Entire home/apt,198,2,2,2019-07-05,2,1,11 +35495374,"Bedroom in Hell’s Kitchen, Queen sized.",42761912,Dale,Manhattan,Hell's Kitchen,40.76333,-73.99141,Private room,125,1,0,,,1,207 +35495582,★ AMAZING★ TIME SQUARE/ 2 Bedroom 3 Bed Apartment,266992480,Sam,Manhattan,Hell's Kitchen,40.76573,-73.98897,Entire home/apt,500,3,14,2019-07-07,14,2,45 +35496484,Sophisticated Midtown/Hell's Kitchen Apartment,267046022,Jacquelyn,Manhattan,Hell's Kitchen,40.76369,-73.991,Entire home/apt,275,4,0,,,1,59 +35496676,Cozy Private Bedroom in Upper West Side,266522456,Aaron,Manhattan,Upper West Side,40.8014,-73.96563,Private room,130,1,9,2019-07-07,9,3,79 +35496813,"Malls, Resturants, Parks, Beaches, Musems, Gyms",224558991,Gerry Elizabeth,Brooklyn,East New York,40.65681,-73.87854,Private room,31,1,0,,,1,105 +35496842,"Private, cozy, comfortable, it feels like home",127836236,Segun,Bronx,Williamsbridge,40.88125,-73.84922,Entire home/apt,85,1,6,2019-07-04,6,1,362 +35497728,"Upper West, cozy and clean appartment",24587566,Kasia,Manhattan,Washington Heights,40.85681,-73.92655,Private room,50,1,0,,,1,87 +35497792,Chelsea room near Highline,267068278,Sara,Manhattan,Chelsea,40.74704,-74.00239,Private room,105,1,1,2019-06-30,1,1,21 +35499352,A luxury Bronx living,170071460,Inas,Bronx,Kingsbridge,40.88531,-73.90008,Private room,100,3,0,,,1,88 +35505287,Large and Quiet Home with Nice Cats,267113508,Matilde,Manhattan,Upper West Side,40.80069,-73.96431,Shared room,300,7,0,,,1,39 +35507112,Lovely Park Slope House with Beautiful Garden,15131634,Rebecca,Brooklyn,South Slope,40.66731,-73.98547,Entire home/apt,275,5,0,,,1,9 +35507424,Spacious 1 Bedroom in the heart of Chelsea,229706010,Tony,Manhattan,Chelsea,40.7428,-73.9956,Entire home/apt,290,2,1,2019-06-14,1,1,25 +35507713,Beautiful Ground Floor Upper East Side Apartment,80164857,Nicole,Manhattan,Upper East Side,40.76453,-73.95867,Entire home/apt,160,4,1,2019-06-17,1,1,243 +35507844,Art and Adventure Steps from Central Park,1237426,Corder,Manhattan,Hell's Kitchen,40.7665,-73.98578,Entire home/apt,178,3,2,2019-06-28,2,1,22 +35507981,Experience the Passion of Hospitality,267033835,Eva,Brooklyn,East New York,40.66302,-73.86082,Entire home/apt,60,3,1,2019-06-17,1,1,94 +35508218,Garden Flat,155137506,Dandey,Queens,Laurelton,40.68129,-73.74745,Entire home/apt,85,1,8,2019-07-06,8,1,166 +35508864,Architect Designed Industrial Oasis in Greenpoint,3830566,Tom,Brooklyn,Greenpoint,40.72105,-73.93933,Entire home/apt,200,1,2,2019-06-13,2,1,316 +35509087,A sunny room within a catering studio’s loft space,602359,Mutale,Brooklyn,Fort Greene,40.69235,-73.97369,Private room,95,2,2,2019-06-26,2,2,164 +35509152,"Charming 1BR apt, Penn Station:)",192505058,Celine,Manhattan,Chelsea,40.75117,-73.99783,Entire home/apt,220,3,2,2019-07-02,2,1,54 +35509472,Master Room in FiDi - Private Bathroom,267144101,Olivia,Manhattan,Financial District,40.70612,-74.00464,Private room,145,1,0,,,2,83 +35510673,Clean Cozy Home,256502464,Paul,Manhattan,Harlem,40.82817,-73.94598,Private room,55,1,1,2019-06-23,1,3,35 +35510795,"离缅街步行9分钟的电梯独立房间,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76316,-73.82337,Private room,99,1,4,2019-07-06,4,6,364 +35510968,Cute & Cozy studio in Prospect Park,54332560,Jacqueline,Brooklyn,Park Slope,40.66993,-73.97709,Entire home/apt,97,11,0,,,1,25 +35512005,Hotel like stay in beautiful Brooklyn,742949,Adam,Brooklyn,Prospect Heights,40.67977,-73.96882,Entire home/apt,249,3,1,2019-07-06,1,1,89 +35512438,Private Room in Ground Floor Apt w/Backyard access,13678557,Eb,Manhattan,East Harlem,40.80857,-73.93951,Private room,90,1,0,,,1,102 +35512965,Quiet Cozy Clean Home,256502464,Paul,Manhattan,Harlem,40.82784,-73.94559,Private room,55,1,0,,,3,21 +35513883,Cozy room in Brooklyn,204915695,Jian,Brooklyn,Sunset Park,40.63851,-74.00843,Private room,50,3,0,,,2,158 +35515382,Extra Large Posh Prime Soho Apartment 1 Bedroom,62001,Rany,Manhattan,SoHo,40.72438,-74.00114,Entire home/apt,249,3,0,,,1,176 +35515415,COZY APT CLOSE TO LGA & JFK AND TRANSPORTATION,267193767,Jenny,Queens,East Elmhurst,40.75558,-73.89316,Entire home/apt,200,2,4,2019-07-05,4,1,365 +35515733,"Family-Friendly 3BR Luxury in Tribeca, (1900 sqft)",2116342,David,Manhattan,Civic Center,40.71625,-74.00316,Entire home/apt,950,3,0,,,1,69 +35515780,30-min to Manhattan Quiet Big House in Great Neck,31859704,Vincent,Queens,Little Neck,40.77444,-73.73373,Entire home/apt,149,3,0,,,1,3 +35515910,Perfect location in Soho!,19407918,Jamie,Manhattan,SoHo,40.72367,-74.00229,Entire home/apt,180,4,0,,,1,5 +35516587,3 bedroom house on a beach & 50 min to Manhattan,153561136,Irene,Staten Island,New Dorp Beach,40.56153,-74.10047,Entire home/apt,109,5,0,,,1,46 +35516704,SUPER BRIGHT & SPACIOUS BROOKLYN GEM,81127692,Rauf,Brooklyn,Flatbush,40.64434,-73.95288,Private room,50,3,0,,,2,311 +35517557,2 NICE ROMANTIC ROOM WITH AIR CONDITION BROOKLYN,102292061,Roman,Brooklyn,Sheepshead Bay,40.58567,-73.94501,Private room,50,1,6,2019-07-04,6,3,83 +35518055,Modern room in the heart of Brooklyn,26071530,Olman,Brooklyn,Crown Heights,40.67711,-73.95,Private room,100,2,0,,,2,20 +35518708,EMPIRE STATE BUILDING,241985816,Carlos,Queens,Astoria,40.76822,-73.90783,Private room,85,1,1,2019-06-17,1,3,60 +35518765,Nolita Gem 2 bedroom One bath,11134859,Anthony,Manhattan,Nolita,40.72037,-73.99454,Entire home/apt,179,2,0,,,1,311 +35518805,FLATBUSH PLACE TO STAY AND GO attractions nearby,267223765,Jarmel,Brooklyn,Flatbush,40.64685,-73.96102,Private room,50,1,3,2019-06-26,3,3,348 +35519038,3 Bedroom house in 2 family house.,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92527,Entire home/apt,190,1,1,2019-06-16,1,2,311 +35519175,Brooklyn’s Delight nearJFK & LGA,16608415,Smidty,Brooklyn,East New York,40.66524,-73.89052,Private room,120,1,0,,,3,103 +35520115,"Kew Gardens/Flushing ""Pet Friendly"" avail Fr 6/13",266779292,Eileen,Queens,Kew Gardens Hills,40.71913,-73.816,Private room,90,1,2,2019-06-30,2,1,90 +35520176,New Luxury Manhattan Apartment,217625111,Sonja,Manhattan,Harlem,40.80621,-73.94877,Entire home/apt,750,3,0,,,1,13 +35520479,Charming Moroccan style Rooms on Upper West Side,260895286,Hajar,Manhattan,Upper West Side,40.78642,-73.97723,Private room,90,3,0,,,2,112 +35520721,A Treasure by The Water,26543881,Walt & Daisy,Queens,Rockaway Beach,40.58447,-73.81704,Entire home/apt,200,3,2,2019-06-30,2,1,261 +35521170,Small cozy bedroom in the heart of Manhattan.,254015746,Niki,Manhattan,Midtown,40.7459,-73.98663,Private room,280,2,1,2019-06-15,1,1,363 +35521820,Bright & beautiful loft - heart of Williamsburg!,10160373,Mj,Brooklyn,Williamsburg,40.71144,-73.96488,Entire home/apt,200,2,0,,,1,4 +35521916,Beautiful One Bedroom with Huge Private Terrace,180754298,Bowen,Brooklyn,Williamsburg,40.71431,-73.9532,Entire home/apt,130,2,1,2019-06-23,1,1,13 +35522281,"Kajou1, 100% privacy, 100% independent.",185199487,Ralph,Brooklyn,Clinton Hill,40.68965,-73.96742,Private room,65,6,1,2019-06-22,1,1,19 +35522357,Bright Bohemian Gem in the Lower East Side,13483820,Marc,Manhattan,Chinatown,40.71496,-73.99063,Entire home/apt,120,1,0,,,1,160 +35522946,Stylish 1BR by East River,18550483,Emily,Manhattan,Murray Hill,40.744,-73.97364,Entire home/apt,197,30,0,,,1,158 +35524274,Master Room 315-B,267272502,Orfelina,Bronx,Claremont Village,40.84308,-73.90652,Private room,67,3,0,,,2,113 +35526392,Charming 1.5 Bed Apartment Upper East Side,129443696,Andrea,Manhattan,Upper East Side,40.7739,-73.94803,Entire home/apt,250,7,0,,,1,44 +35531168,NEW Bedroom w/Private Toilet (Great Study Space),7167290,Rasheda,Brooklyn,Midwood,40.62382,-73.94683,Private room,35,30,0,,,1,44 +35533434,Upscale Deluxe Queen Hotel Room in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.7207,-74.00034,Private room,100,1,0,,,4,353 +35533850,Your Own Private Hideaway Junior Suite in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72109,-73.99972,Private room,100,1,0,,,4,350 +35533939,Private Deluxe Queen Room with Patio View in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72085,-73.99966,Private room,100,1,0,,,4,352 +35534087,Your own Penthouse with Private Terrace in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72254,-73.99985,Private room,100,1,0,,,4,293 +35535750,New Gorgeous 2 BED apt Lower East Side,264752722,Anna,Manhattan,Lower East Side,40.72232,-73.99256,Entire home/apt,350,4,3,2019-07-01,3,1,129 +35535989,Peace home in Bedford Stuyvesant Brooklyn,107085019,Azuri,Brooklyn,Bedford-Stuyvesant,40.68557,-73.93023,Private room,65,3,1,2019-06-11,1,1,348 +35536266,Private quiet studio,107716952,Michael,Queens,Jamaica,40.69128,-73.80864,Entire home/apt,50,1,4,2019-07-04,4,2,119 +35536969,Lofty spacious sun drenched home,40275,Yael,Brooklyn,Bedford-Stuyvesant,40.69312,-73.96051,Entire home/apt,250,2,1,2019-06-16,1,1,66 +35539005,Private room in a clean two bedroom apartment,266117120,Adedayo,Brooklyn,Brownsville,40.65944,-73.91489,Private room,55,1,0,,,1,86 +35539036,Two-Bedroom Apartment in Meatpacking District,262501312,Micah,Manhattan,Chelsea,40.74441,-74.00765,Entire home/apt,299,2,0,,,1,74 +35539920,#1 Hotel-Like Private Room King Bed Near JFK,263504959,David,Queens,Woodhaven,40.69158,-73.86578,Private room,50,1,6,2019-07-06,6,8,273 +35540614,"Central Park Area Luxury Condo, BEST CITY VIEW",182505049,Trinity,Manhattan,Upper West Side,40.77122,-73.99111,Entire home/apt,499,3,0,,,1,34 +35540673,Beautiful Sunny & Bright Brooklyn Apartment.,119908176,Claudia,Brooklyn,Bedford-Stuyvesant,40.68603,-73.92006,Entire home/apt,120,3,1,2019-06-29,1,1,9 +35540740,Private Single Room 4 min walk to subway,175771113,Victoria,Brooklyn,East Flatbush,40.64575,-73.94654,Private room,36,15,1,2019-06-22,1,1,46 +35540762,驿站,239139334,Fang,Queens,Bayside,40.76883,-73.78707,Private room,49,1,4,2019-07-08,4,3,345 +35541835,Lower East Side Gem - Perfect location,65346107,Jonathan,Manhattan,Lower East Side,40.72076,-73.9885,Entire home/apt,170,5,1,2019-06-14,1,1,4 +35542412,Private Patio Williamsburg 2BD/2BA Next to Subway!,267396936,Amy,Brooklyn,Williamsburg,40.71418,-73.93837,Entire home/apt,465,3,3,2019-07-02,3,1,250 +35542686,"Quaint cozy room in Flushing Queens, in big apt",24423571,Ronny,Queens,Flushing,40.75283,-73.82561,Private room,46,1,1,2019-06-23,1,1,365 +35542830,North Williamsburg Retreat,1646818,Sara,Brooklyn,Williamsburg,40.71884,-73.9502,Entire home/apt,120,30,1,2019-07-06,1,1,286 +35543031,Amazingly lit with views over entire manhattan.,4602926,Michael,Brooklyn,Clinton Hill,40.69325,-73.96732,Entire home/apt,175,2,0,,,1,6 +35543132,1 Bedroom Park Slope Apartment w/ Private Patio,35299064,Rachel,Brooklyn,Park Slope,40.67606,-73.98251,Entire home/apt,150,3,0,,,1,232 +35543291,Room for rent for 2 Free parking pets welcomed,267414692,Carlos,Queens,Flushing,40.75932,-73.79859,Private room,70,1,2,2019-06-30,2,1,365 +35543560,Sun filled 1br in the heart of Bushwick,13500337,Ian,Brooklyn,East New York,40.6666,-73.89112,Private room,55,2,0,,,2,179 +35545031,Clean and cozy,85400172,Joy,Brooklyn,Crown Heights,40.6752,-73.94851,Private room,95,3,1,2019-06-30,1,2,360 +35545082,"Subway 1 min , Manhattan 10 min. Modern & Cozy",253571094,Jesus,Queens,Astoria,40.75809,-73.91271,Private room,50,2,3,2019-07-01,3,2,330 +35545626,Large quite apartment across from beautiful park,7271522,Mordechai,Manhattan,Morningside Heights,40.80695,-73.9654,Entire home/apt,250,7,0,,,1,10 +35546298,★Official & Only 6★Star Airbnb w/ TempurPedic Bed,52062343,Ronald,Bronx,Bronxdale,40.856,-73.86705,Shared room,57,1,4,2019-06-30,4,1,340 +35546352,"Zen-Oasis, Entire Apartment Only 8 min from JFK!!",103336088,Tiyanna,Queens,Jamaica,40.6748,-73.79242,Entire home/apt,85,1,5,2019-07-07,5,1,62 +35546843,Náser's on Lexington Ave 3bds /2ba,7309232,London,Manhattan,East Harlem,40.80391,-73.9361,Entire home/apt,300,3,1,2019-07-01,1,3,302 +35547124,Cozy room in family home near subway,173794097,Jessica,Queens,Jackson Heights,40.75304,-73.87661,Private room,40,2,2,2019-06-21,2,1,3 +35547909,舒适单人房(Comfort single room),257683179,H Ai,Queens,Flushing,40.76135,-73.80724,Private room,35,1,0,,,6,7 +35548551,"Bright, Clean and Spacious 2 bdrm top floor!",11397354,Regine,Brooklyn,Flatbush,40.64225,-73.96425,Entire home/apt,89,2,1,2019-06-27,1,1,4 +35548672,Private room in the heart of the Heights,210800401,Jasmine,Manhattan,Washington Heights,40.84655,-73.93332,Private room,60,3,0,,,2,81 +35548721,Elissa's Private Room/clean/quiet,119155499,Julio,Brooklyn,Bushwick,40.69405,-73.92642,Private room,49,5,0,,,4,134 +35549378,A dreamy stay,267476000,Xanthi,Manhattan,Hell's Kitchen,40.76369,-73.98891,Private room,100,1,0,,,1,167 +35558366,"离缅街步行9分钟的电梯单间,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76313,-73.8234,Private room,99,1,4,2019-07-01,4,6,365 +35561531,"Spacious and bright room, with easy commute in nyc",6048765,Raz,Manhattan,Harlem,40.81868,-73.93937,Private room,67,3,0,,,2,88 +35563249,Perfectly Located Apartment in Gramercy,46094733,Mafer,Manhattan,Flatiron District,40.73975,-73.98511,Entire home/apt,100,2,3,2019-06-27,3,1,6 +35563781,"FLATBUSH PLACE TO COME AND GO +1 out of 2 listing",267223765,Jarmel,Brooklyn,Flatbush,40.64936,-73.96061,Private room,50,1,2,2019-07-01,2,3,342 +35564919,"King bed, doorman, mod, new & pristine in Brooklyn",4344188,Joseph,Brooklyn,Bushwick,40.70013,-73.93502,Entire home/apt,159,4,2,2019-07-02,2,1,28 +35565108,Beautiful New Entire Parkview 3bed 2.5bath,257647514,Juhyun,Brooklyn,Bushwick,40.69175,-73.90932,Entire home/apt,250,2,1,2019-06-26,1,2,9 +35565616,West Village Sanctuary,72674364,Leslie,Manhattan,West Village,40.73234,-74.00543,Entire home/apt,240,1,1,2019-06-22,1,1,75 +35566070,Small One Bedroom in Manhattan,5665090,Silvia,Manhattan,Upper East Side,40.77842,-73.95026,Entire home/apt,135,3,1,2019-07-01,1,1,15 +35566162,Cozy one bedroom apartment in the Bronx,185355022,Vivi,Bronx,Concourse,40.8315,-73.92277,Entire home/apt,60,3,1,2019-06-22,1,1,20 +35567048,Entire 3 bedroom apartment in beautiful Harlem,18042477,Madeline,Manhattan,Washington Heights,40.83329,-73.94056,Entire home/apt,160,14,0,,,1,59 +35567269,Private Studio Upper East Side,60117043,Ray,Manhattan,Upper East Side,40.76209,-73.96181,Entire home/apt,125,5,0,,,1,58 +35567504,Private room in big house in Bushwick,13064420,Nicolás,Brooklyn,Bushwick,40.69014,-73.91531,Private room,50,7,0,,,1,6 +35568112,Perfect Large Apt for your NYC Stay!,247094998,Bennett,Manhattan,Upper West Side,40.77719,-73.98312,Entire home/apt,800,2,0,,,1,225 +35569130,Spacious Room_2,265057419,Dameon,Brooklyn,East New York,40.67072,-73.86947,Private room,68,3,0,,,2,363 +35569189,Bright & Cozy Studio next to Columbia University,265156761,Demir,Manhattan,Harlem,40.80434,-73.95515,Entire home/apt,165,3,2,2019-07-07,2,1,207 +35569456,"2 BR Modern Apt, Extra Lofted Bed, BK Heights",267621090,Shameika,Brooklyn,Brooklyn Heights,40.69934,-73.99635,Entire home/apt,600,3,4,2019-07-06,4,1,323 +35569459,Luxury Full Floor SoHo Loft | 3 Bed/2 Bath,163029687,Anna + Jason,Manhattan,SoHo,40.72434,-73.99945,Entire home/apt,900,3,1,2019-07-06,1,1,292 +35569626,Giant One-Bedroom In Heart Of Historic Area,245166170,Meg,Brooklyn,Flatbush,40.642,-73.95979,Entire home/apt,80,1,0,,,1,12 +35570396,Big Room (up to 3 people),166984137,Piergiorgio,Manhattan,Harlem,40.8129,-73.94391,Private room,90,5,0,,,1,193 +35570498,Stunning Midtown Apt near U.N. and Central Park,267627839,Hagar,Manhattan,Midtown,40.75563,-73.96621,Entire home/apt,175,28,0,,,1,340 +35570515,Unique Furnished Apt in UES Mansion Off 5th,265662009,Maria,Manhattan,Upper East Side,40.77065,-73.96675,Entire home/apt,180,7,0,,,3,270 +35570674,Quiet Apartment for Large Groups,49658508,Kate,Manhattan,Kips Bay,40.74244,-73.97872,Entire home/apt,600,2,1,2019-07-02,1,1,226 +35570995,Clean warm.peaceful.joyful.respectful,231378604,S.,Manhattan,East Harlem,40.78986,-73.94783,Private room,65,14,0,,,1,319 +35571189,Comfy Apt - heart of Williamsburg. 10min to city,16963619,Sebastian,Brooklyn,Williamsburg,40.71139,-73.96208,Entire home/apt,139,2,0,,,1,134 +35572261,"20 minutes to Manhattan, spacious apt in Ridgewood",267405973,Peter,Queens,Ridgewood,40.70126,-73.90292,Entire home/apt,110,20,0,,,2,161 +35572377,Spacious shared room in modern Bed-Stuy 2,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69483,-73.94059,Shared room,32,30,0,,,10,324 +35572559,Small Room in FiDi,267144101,Olivia,Manhattan,Financial District,40.70737,-74.00622,Private room,145,1,0,,,2,35 +35573040,Summer sublet in south slope,16354887,Sonya,Brooklyn,Sunset Park,40.66154,-73.99158,Entire home/apt,109,9,0,,,1,16 +35573043,"TIMES SQUARE! Minutes Away, Studio Apartment",257348210,J,Manhattan,Midtown,40.75372,-73.97232,Entire home/apt,350,3,0,,,1,51 +35573815,Private Single Room in UWS near to Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80102,-73.96669,Private room,60,1,3,2019-07-02,3,3,130 +35573971,The Garden Apartment,60541281,Ebony,Brooklyn,Crown Heights,40.67037,-73.92764,Entire home/apt,95,4,2,2019-07-05,2,1,84 +35574349,SoHo SoHo SoHo,159112181,Zachary And Ashley,Manhattan,SoHo,40.72683,-74.00222,Entire home/apt,275,1,1,2019-07-01,1,1,308 +35575060,Brand New Modern 3 Bedroom Greenpoint apartment!,267632589,Jon,Brooklyn,Greenpoint,40.72775,-73.94944,Entire home/apt,187,3,1,2019-06-15,1,1,256 +35575853,"Great view, 1 BR right next to Central Park!",35965489,Meygan,Manhattan,East Harlem,40.79755,-73.94797,Private room,100,2,0,,,1,7 +35575867,Modern & Charming Lower East Side Apartment,74819532,Julie,Manhattan,Lower East Side,40.71982,-73.98849,Entire home/apt,250,2,0,,,1,170 +35575973,Luxury Building one stop from midtown Manhattan !!,265422938,泽宇,Queens,Long Island City,40.74887,-73.93829,Private room,149,2,0,,,2,53 +35576264,"Spacious private room, subway on same block",50278442,Francesco,Manhattan,Morningside Heights,40.80478,-73.96665,Private room,70,30,0,,,3,225 +35576552,Private Room For The Night,155529225,Alejandro,Queens,Corona,40.74415,-73.86545,Private room,80,1,0,,,1,365 +35576863,JAVITS Beautiful Stay for your NYC Vacation *****,83819376,Ryan & Mary,Manhattan,Hell's Kitchen,40.75438,-73.99378,Entire home/apt,843,1,4,2019-07-04,4,1,358 +35577620,Large Crownheights Apartment Sublet,21400616,LeKethia,Brooklyn,Crown Heights,40.67718,-73.93524,Entire home/apt,67,1,0,,,2,300 +35577642,Luxury building close to Yankees stadium,265153176,Jose,Bronx,Morris Heights,40.84631,-73.91641,Entire home/apt,150,1,3,2019-07-05,3,1,65 +35577716,Cozy & Super Clean 2 Bedrooms Private,83132880,Alyandry,Queens,Maspeth,40.73877,-73.8946,Private room,129,2,0,,,4,316 +35577810,Francesco’s Manhattan Bedroom w/Private Bathroom,50278442,Francesco,Manhattan,Morningside Heights,40.80482,-73.96493,Private room,70,30,0,,,3,339 +35577860,Convenient Center of Times Square 3 Bedroom Apt!!!,2196491,Sophia,Manhattan,Theater District,40.75692,-73.98373,Entire home/apt,140,30,0,,,3,116 +35577986,Cozy Brooklyn bedroom close to Manhattan et al,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94546,Private room,46,3,1,2019-06-19,1,3,81 +35578345,CLEAN CHIC CHELSEA NYC,146603340,Maria & Tom,Manhattan,Chelsea,40.74783,-73.99978,Entire home/apt,213,1,1,2019-07-08,1,1,336 +35578522,"Huge, private bedroom next to train and PARK!",1394543,Jennifer,Brooklyn,Flatbush,40.6524,-73.96314,Private room,59,1,1,2019-07-02,1,2,24 +35578616,Bayridge Brooklyn NYC!Beautiful Space,258880426,Kheira,Brooklyn,Bay Ridge,40.63646,-74.02396,Private room,65,3,0,,,1,327 +35578766,"Comfort, Safety, Style, Right by L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.70545,-73.93273,Private room,75,3,3,2019-06-30,3,3,13 +35578913,Luxury Studio-Wall Street Awesome View & King Bed,267678892,Sang,Manhattan,Financial District,40.7061,-74.00936,Entire home/apt,225,1,1,2019-06-20,1,1,82 +35579143,"Eastnest, amazing couch for your stay.",26364534,Mauricio,Manhattan,Upper East Side,40.76418,-73.9555,Shared room,66,1,1,2019-07-05,1,1,70 +35579436,The Artist's Loft,194369832,Adam,Manhattan,East Village,40.72347,-73.97792,Entire home/apt,200,2,1,2019-06-26,1,1,43 +35579504,Sunny 4 br 2 bath duplex in the heart of Manhattan,267698769,Chase,Manhattan,Midtown,40.74512,-73.98212,Entire home/apt,395,1,4,2019-06-29,4,1,296 +35579856,Time square Hell’s Kitchen 2bedroom,245518352,John,Manhattan,Hell's Kitchen,40.76135,-73.99343,Entire home/apt,400,3,0,,,1,161 +35580305,Beautiful studio loft on Wall St for 4,267702003,Tracie,Manhattan,Financial District,40.70517,-74.00907,Entire home/apt,215,1,4,2019-06-23,4,1,246 +35580335,Modern townhouse convenient to everything,3562596,Sheethal,Brooklyn,Boerum Hill,40.68615,-73.98056,Entire home/apt,500,3,0,,,1,28 +35580805,"Private, Cozy, Safe, Two Blocks from L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.70519,-73.93418,Private room,75,3,1,2019-06-17,1,3,13 +35581246,"Minimal, Private Loft Two Blocks from L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.7055,-73.93437,Entire home/apt,145,5,1,2019-06-11,1,3,17 +35581315,7minutesSubway. Maimonides&IndustryCity,163625145,Steven,Brooklyn,Borough Park,40.64265,-73.99138,Private room,46,2,1,2019-06-22,1,3,163 +35582464,Union Square/East Village Flat,267728008,Ross,Manhattan,East Village,40.7316,-73.98576,Entire home/apt,179,5,3,2019-06-17,3,1,76 +35582765,Charming 1 Bedroom Apartment (Discounted),267253127,Donna,Manhattan,Kips Bay,40.74496,-73.97678,Entire home/apt,132,1,2,2019-06-28,2,1,46 +35583012,Private Bedroom Shared Kitchen and Bath #2,28891151,Kimesha,Brooklyn,East New York,40.67054,-73.89002,Private room,79,2,1,2019-06-30,1,4,90 +35583150,Beautiful Brownstone Entire Apartment In Manhattan,265424495,Benat,Manhattan,Harlem,40.80369,-73.94764,Entire home/apt,150,1,0,,,2,14 +35583579,A large room in 2br apartment,167025338,Ameer,Manhattan,Upper East Side,40.773,-73.94759,Private room,90,8,0,,,2,77 +35583886,Artsy Parisian Apt in Greenwich Village,255626808,Oli,Manhattan,Greenwich Village,40.73313,-73.9971,Entire home/apt,450,1,1,2019-06-26,1,1,156 +35584234,Your PRIME 2 Bedroom Apartment in best Area LES,267739313,Tim,Manhattan,Lower East Side,40.72056,-73.98894,Entire home/apt,210,7,1,2019-06-22,1,1,306 +35584546,Downtown Bronx Studio 15 min ride to Manhattan,267744284,Andre,Bronx,Melrose,40.82231,-73.91696,Entire home/apt,69,7,0,,,1,254 +35590205,Beautiful apartment in the heart of Harlem,208570396,Mamadou,Manhattan,East Harlem,40.80837,-73.93937,Entire home/apt,120,5,4,2019-07-06,4,1,285 +35593963,Great Apartment close to Time Square,264833923,Sharoom,Manhattan,Hell's Kitchen,40.75612,-73.99263,Entire home/apt,209,3,1,2019-06-27,1,1,68 +35595716,Our slice of the Big Apple - good for large groups,266569093,Irma,Manhattan,Midtown,40.75519,-73.97011,Entire home/apt,800,30,0,,,1,266 +35595727,Loft Studio Apartment - Bushwick - Jefferson L,11583998,Carolanne,Brooklyn,Bushwick,40.70816,-73.9222,Entire home/apt,128,5,0,,,1,152 +35596905,CONEY ISLAND BEACH close to Manhattan New York,29622548,Solvita,Brooklyn,Coney Island,40.58101,-73.98514,Entire home/apt,149,6,0,,,1,297 +35596923,3 Bedroom NEAR SUBWAY & SOHO A+ LOCATION,216786331,Alex,Manhattan,SoHo,40.71891,-74.00024,Entire home/apt,429,5,2,2019-07-03,2,1,152 +35597268,Beautiful Manhattan Bdwy Apt Close to Columbia!,255259069,Jonah,Manhattan,Harlem,40.82623,-73.95271,Entire home/apt,135,31,2,2019-06-25,2,2,184 +35597348,MODERN APARTMENT MINUTES AWAY FROM MANHATTAN,196255493,Elizabeth,Bronx,Kingsbridge,40.87277,-73.90268,Entire home/apt,95,2,0,,,1,47 +35597782,Luxurious Studio High rise Condo Near Manhattan!,247335568,Evelyn,Queens,Long Island City,40.74762,-73.94278,Entire home/apt,160,3,0,,,7,23 +35597932,Beautiful NYC Broadway Apartment next to Subway!,255259069,Jonah,Manhattan,Harlem,40.82586,-73.95296,Entire home/apt,130,31,0,,,2,333 +35598116,Best Value ❤ Memorable Vacation in NYC,267678006,Alex,Manhattan,Midtown,40.76537,-73.98375,Entire home/apt,320,1,7,2019-06-28,7,1,121 +35598253,2 bedroom kitchen/ bath/1 block from #3& L train,180793066,Shari,Brooklyn,East New York,40.66537,-73.88569,Entire home/apt,87,2,1,2019-06-30,1,1,90 +35598472,Clean Affordable Luxury Studio on Wall St,267818706,Jonathan,Manhattan,Financial District,40.70611,-74.00773,Entire home/apt,205,1,3,2019-06-23,3,1,45 +35598561,Beautiful charming 3 bedroom apt off broadway,201914956,Angelo,Manhattan,Upper West Side,40.80099,-73.96514,Entire home/apt,305,30,3,2019-06-29,3,1,311 +35598818,Charming manhattan 1 bedrooms in the city,243660343,Dan,Manhattan,Harlem,40.82593,-73.95075,Entire home/apt,144,30,1,2019-06-21,1,2,223 +35599003,Cozy 2 bedroom apartment near JFK,267015438,Jairo,Queens,Ozone Park,40.67299,-73.845,Entire home/apt,167,5,1,2019-07-01,1,1,94 +35599237,Spacious Williamsburg Apartment (PERFECT location),3078929,Sonia,Brooklyn,Williamsburg,40.70919,-73.95755,Entire home/apt,100,30,0,,,1,235 +35599954,AMAZING LOCATION IN WILLIASMBURG,206722794,Martin,Brooklyn,Williamsburg,40.70823,-73.95702,Entire home/apt,168,2,4,2019-07-06,4,1,154 +35600813,"Luxurious Penthouse Mid Manhattan, next to Times S",265157006,Orjan,Manhattan,Hell's Kitchen,40.76199,-73.99884,Entire home/apt,425,3,0,,,1,135 +35600829,"Charming 1 Bedroom On Broadway, next to subway!",243660343,Dan,Manhattan,Harlem,40.82549,-73.95133,Entire home/apt,115,30,0,,,2,211 +35600877,7MinutesSubway.Maimonides&IndustryCityRoom,163625145,Steven,Brooklyn,Borough Park,40.64468,-73.99026,Private room,46,2,2,2019-06-23,2,3,180 +35601251,7minutesToSubway.NearMaimonidesSmallRoom,163625145,Steven,Brooklyn,Borough Park,40.64405,-73.99125,Private room,38,2,0,,,3,171 +35601334,Large Private Room with Modern amenities,5971264,Marco,Bronx,Kingsbridge,40.86429,-73.90204,Private room,60,1,0,,,1,83 +35601555,The High Rise Apartment,61396454,Ash,Manhattan,Midtown,40.75424,-73.96416,Entire home/apt,300,30,0,,,14,338 +35601668,Modern Sunny Studio in Lower East Side,136438670,Ken,Manhattan,East Village,40.72304,-73.98372,Entire home/apt,159,1,5,2019-06-28,5,1,170 +35602964,"Cozy/Comfortable/Clean, 3 Bedroom/2 Bathroom",267849738,Oriana,Manhattan,Kips Bay,40.74293,-73.97923,Entire home/apt,600,2,0,,,1,267 +35602997,Large 2bed apt Southside Williamsburg walkup,267849472,George,Brooklyn,Williamsburg,40.71269,-73.95902,Entire home/apt,185,1,2,2019-07-01,2,1,130 +35603341,Cozy studio in the UES (30 days min),159598333,Sol,Manhattan,Upper East Side,40.78166,-73.94593,Entire home/apt,99,30,0,,,5,344 +35603512,Great 1 Bedroom Loft in Cool SoBro Area,2548258,Dakota,Bronx,Port Morris,40.80807,-73.92811,Entire home/apt,140,4,0,,,1,103 +35603798,Effortlessly Tasteful 1BR in Prime East Village,263049454,Conor & Rose,Manhattan,East Village,40.7294,-73.98664,Entire home/apt,290,1,0,,,1,355 +35603885,AMAZING 2 BEDROOM SPTEPS FROM SUBWAY,230403448,Francisco,Brooklyn,Williamsburg,40.71006,-73.95716,Entire home/apt,180,2,0,,,1,260 +35603965,Charming Sunny and Quiet Designer Suite,267651337,Leo,Manhattan,Midtown,40.7569,-73.96623,Entire home/apt,170,30,0,,,1,332 +35604423,Battery Park Studio with a View,241551759,Artemis,Manhattan,Financial District,40.70417,-74.01511,Entire home/apt,200,9,0,,,1,15 +35604447,Empire State Studio Apt,267860635,Jey,Manhattan,Midtown,40.74307,-73.98386,Entire home/apt,170,1,3,2019-06-23,3,1,270 +35604874,the Horizon View,221200420,Adam,Manhattan,Murray Hill,40.74385,-73.97219,Entire home/apt,400,30,0,,,23,211 +35605010,Captivatingly Cozy 2 Bedroom Apartment,267864516,Madison,Brooklyn,East New York,40.65905,-73.88273,Entire home/apt,99,2,1,2019-06-21,1,1,144 +35605729,ULTRA LUXURIOUS 5 STAR DUPLEX -- EXPERIENCED HOST!,267191710,Robert,Manhattan,Upper East Side,40.76769,-73.96692,Entire home/apt,425,2,0,,,1,162 +35605837,Hudson Yards 1 Bedroom (LGBT friendly),51020118,Ben,Manhattan,Hell's Kitchen,40.75351,-73.99523,Entire home/apt,175,4,0,,,1,89 +35606165,Luggage storage only No Beds Available.,267872829,Sonya,Brooklyn,Fort Hamilton,40.61819,-74.03296,Shared room,20,1,1,2019-06-27,1,1,353 +35606381,The City Horizon,221200420,Adam,Manhattan,Murray Hill,40.74422,-73.97261,Entire home/apt,350,30,0,,,23,331 +35606417,Modern 2 Bed! Easy Access to Manhattan!,267875219,Ridge,Queens,Ridgewood,40.70762,-73.89784,Entire home/apt,149,3,0,,,1,169 +35606542,Nicely Orgonized Three Bedrrom Apartment,221200420,Adam,Manhattan,Murray Hill,40.74336,-73.97143,Entire home/apt,350,30,0,,,23,327 +35606565,STUDIO LOFT WITH GARDEN CENTER OF WILLIAMSBURG,130030703,Margarita,Brooklyn,Williamsburg,40.71421,-73.96259,Entire home/apt,220,2,0,,,1,244 +35607369,Fully Renovated One Bedroom,221200420,Adam,Manhattan,Murray Hill,40.74399,-73.97204,Entire home/apt,200,30,0,,,23,365 +35607523,"Bright, Spacious & Charming 1-bed Brownstone Apt",6768659,Leonie,Brooklyn,Park Slope,40.66678,-73.97709,Entire home/apt,170,4,0,,,1,199 +35607568,High Floor One Bedroom Apartment,221200420,Adam,Manhattan,Murray Hill,40.74405,-73.97349,Entire home/apt,200,30,0,,,23,365 +35607797,High Floor One Bedroom,221200420,Adam,Manhattan,Murray Hill,40.74419,-73.97195,Entire home/apt,175,30,0,,,23,353 +35607893,BRAND NEW APT CLOSE TO SUBWAY WILLIAMSBURG,223917190,Annette,Brooklyn,Williamsburg,40.70779,-73.96254,Entire home/apt,161,2,2,2019-07-05,2,1,288 +35607907,Astoria Modern 3 Bedroom near Steinway,1348312,Lindsay,Queens,Astoria,40.76151,-73.90964,Entire home/apt,300,4,0,,,1,26 +35607932,LGBT welcome for Pride Greenwich Village,265901814,Evette,Manhattan,West Village,40.73613,-73.9987,Private room,125,1,0,,,2,75 +35608098,Spacious room with balcony near downtown Manhattan,267886811,Stu,Manhattan,Washington Heights,40.8462,-73.93498,Private room,80,3,1,2019-06-30,1,1,112 +35608108,"BEST LOCATION IN WILLIAMSBURG, CLOSE TO SUBWAY",75395247,Ramiro,Brooklyn,Williamsburg,40.71243,-73.9604,Entire home/apt,160,2,3,2019-07-01,3,1,309 +35608298,High Floor two Bed One Bath,221200420,Adam,Manhattan,Murray Hill,40.74424,-73.97272,Entire home/apt,190,30,0,,,23,343 +35608471,Welcome Palace!!!,182954454,Thaddeus,Queens,Jamaica,40.66969,-73.77464,Private room,75,2,0,,,2,90 +35608603,New Luxury NYC Two-Bedroom with Perfect Views,267590902,Sophie,Manhattan,Financial District,40.70423,-74.00909,Entire home/apt,365,2,0,,,1,18 +35608677,"BRAND NEW , STEPS FROM SUBWAY, 5 MIN TO MANHATTAN",25970549,Ramiro,Brooklyn,Williamsburg,40.70769,-73.96257,Entire home/apt,150,2,0,,,1,235 +35608964,"Private Furnished Room, Cozy, Quiet & Perfect",154077074,Anderson,Queens,Flushing,40.74511,-73.82909,Private room,55,1,0,,,1,59 +35609328,Central Park/ Times Square -Bright and Quiet 1 BDR,267175603,Sonia,Manhattan,Midtown,40.76551,-73.98217,Entire home/apt,190,3,2,2019-06-23,2,1,23 +35609562,Shared Apartment in a cool neighborhood,53432601,Jill,Manhattan,East Harlem,40.7885,-73.95093,Private room,80,2,2,2019-07-01,2,1,11 +35609955,Spacious modern apartment in the heart of Astoria,267624351,Mohamad,Queens,Astoria,40.76332,-73.91166,Entire home/apt,75,2,0,,,1,14 +35610163,Charming Modern Entire One Bedroom!,267902045,Maiya,Queens,Elmhurst,40.74696,-73.87104,Entire home/apt,130,1,2,2019-06-30,2,1,148 +35610220,"Laid back and homey, roof access, bidet, vibes af",21649183,Shane,Brooklyn,Bushwick,40.69644,-73.91995,Private room,78,2,0,,,1,28 +35610360,Charming Moroccan-style Rooms on Upper West Side,260895286,Hajar,Manhattan,Upper West Side,40.7846,-73.97636,Private room,90,3,0,,,2,24 +35610591,Private Queen Bedroom with WiFi near Central Park!,82406306,Marc,Manhattan,East Harlem,40.79879,-73.94202,Private room,85,2,1,2019-07-02,1,2,36 +35611637,Beautiful big room. Women only,267912902,Shira,Brooklyn,Borough Park,40.62317,-73.98873,Private room,39,3,0,,,2,179 +35611781,Peace and Comfort,264862581,Dianne,Queens,Rosedale,40.68036,-73.72716,Private room,75,1,3,2019-07-07,3,3,90 +35612199,Designer large studio in Brooklyn Heights,213432040,Naomi,Brooklyn,Brooklyn Heights,40.69924,-73.99296,Entire home/apt,150,2,0,,,1,74 +35612963,"Bright Spacious CrashPad , NextDoor To Subway",21261408,Jay,Brooklyn,Clinton Hill,40.68981,-73.9604,Shared room,37,1,4,2019-06-29,4,6,344 +35612982,Luggage drop off ONLY! Close to LGA & JFK,108512889,Syed,Queens,Sunnyside,40.73954,-73.92095,Shared room,12,1,0,,,1,359 +35613002,Manhattan ☯ Brooklyn | Best of Both❤️,267680159,Alex,Manhattan,Lower East Side,40.71261,-73.98857,Entire home/apt,300,1,8,2019-06-30,8,1,213 +35613103,Stylish / Unique Greenpoint Studio,11971910,Madeleine,Brooklyn,Greenpoint,40.72685,-73.94433,Entire home/apt,110,30,0,,,1,104 +35613104,Queen Bed Artist Apt by Bushwick w/ Piano & Guitar,251969263,Eunice,Queens,Ridgewood,40.70022,-73.89597,Private room,54,1,0,,,2,29 +35613598,nice room in bedstuy E,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68382,-73.95022,Private room,45,1,3,2019-07-04,3,15,188 +35613707,Cozy One BR near Manhattan!- 15min to Time Square.,267928032,Chhong,Queens,Flushing,40.72899,-73.79578,Entire home/apt,119,1,0,,,1,179 +35614155,"""The quick get Away #2""",241454071,Leyland,Bronx,Hunts Point,40.81879,-73.88646,Private room,35,2,1,2019-06-26,1,2,59 +35614263,"Luxury, Cozy & Modern apartment in Brooklyn",193961455,Gerald,Brooklyn,Williamsburg,40.7191,-73.94494,Entire home/apt,190,1,7,2019-07-06,7,1,210 +35614490,Luxury Wall Street Apartment,62271274,Kayla,Manhattan,Financial District,40.70537,-74.00784,Entire home/apt,220,2,1,2019-06-12,1,1,10 +35614638,"Center of Manhattan, 24hrs security doorman. Wi-Fi",71653051,Eady,Manhattan,West Village,40.73894,-74.00087,Private room,99,2,2,2019-07-01,2,1,63 +35614773,Beautiful 1 bedroom steps from Central Park!,267936314,Jahni,Manhattan,Upper West Side,40.79976,-73.96549,Entire home/apt,200,1,2,2019-06-30,2,1,37 +35614888,"Beautiful peacefull +Calm",267938006,Francoise X,Bronx,Concourse Village,40.82759,-73.92081,Private room,65,1,2,2019-06-23,2,1,364 +35615010,Cozy Private Room in Brooklyn!,103716352,Luanny,Brooklyn,Sunset Park,40.64699,-74.0156,Private room,50,1,0,,,1,28 +35615611,Recording Studio,267940629,Kettly,Brooklyn,Flatlands,40.61994,-73.93967,Private room,60,1,0,,,1,365 +35615652,Room in a cozy Brooklyn apartment,19017210,Karl,Brooklyn,Bedford-Stuyvesant,40.67897,-73.94192,Private room,41,3,1,2019-07-02,1,1,57 +35615687,Duplex Apartment 3 bedroom 2 bath (6 guest),145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95006,Entire home/apt,350,2,1,2019-06-30,1,2,0 +35616144,NYC Apt. By the Beach,11378117,Sonya,Brooklyn,Coney Island,40.57534,-73.98664,Entire home/apt,70,21,0,,,1,195 +35616292,Nice house 35 min subway to manhattan,257879526,Israel,Brooklyn,East Flatbush,40.65982,-73.93468,Private room,54,2,0,,,2,336 +35616402,Cozy room for NYC summer rental,152132335,Ursula,Queens,Woodside,40.74164,-73.90289,Private room,100,5,0,,,1,197 +35616470,"Great place, safety lovely convenient location",267933377,ゆりあ & Fredy,Manhattan,Upper East Side,40.78015,-73.94571,Private room,100,2,0,,,1,89 +35616482,Comfortable and spacious room with private rooftop,121705027,Salome,Brooklyn,Bedford-Stuyvesant,40.69229,-73.94116,Private room,90,2,1,2019-06-17,1,1,5 +35616750,2 bedrooms/1.5 bath East Village Cozy Apartment,267953852,Kyle,Manhattan,Greenwich Village,40.72815,-73.99693,Entire home/apt,196,2,1,2019-06-18,1,1,149 +35616793,"CozySuite near F Train & LIRR +Min 2 guests",153141476,Franz,Queens,Briarwood,40.70762,-73.81453,Entire home/apt,78,1,5,2019-07-06,5,3,326 +35617028,Huge room @ a Gorgeous apt + beautiful back yard,6997690,Gregg,Brooklyn,Greenpoint,40.73259,-73.95611,Private room,100,3,1,2019-06-23,1,1,65 +35617075,Fantastic 2BRM - 2 Minute Walk to Times Square,266925045,Ivana,Manhattan,Hell's Kitchen,40.7607,-73.99033,Entire home/apt,320,3,3,2019-07-01,3,1,160 +35617353,Lovely Stylish Trendy Studio,267937666,Russell,Manhattan,Hell's Kitchen,40.76286,-73.99113,Entire home/apt,129,1,4,2019-07-05,4,1,186 +35617505,Walking to Central Park!!! Private bedroom!!,130617332,Haley,Manhattan,Harlem,40.81173,-73.94213,Private room,80,3,0,,,3,170 +35617875,The New York House,125170095,João,Queens,Astoria,40.76408,-73.91979,Private room,85,3,1,2019-06-24,1,1,341 +35618095,LARGE ROOM WITH PRIVATE ENTRANCE IN RIDGEWOOD,161346189,Patrick,Queens,Ridgewood,40.70771,-73.90486,Private room,40,14,0,,,1,342 +35618225,Huge studio in a doorman bld in midtown manhattan,4481028,Sanket,Manhattan,Midtown,40.75249,-73.9689,Entire home/apt,140,3,1,2019-06-20,1,1,5 +35618798,Private room!,175276860,Hae Li,Queens,Jamaica Hills,40.71512,-73.79391,Private room,100,3,0,,,1,179 +35618939,NYC private room super clean and cozy,83132880,Alyandry,Queens,Maspeth,40.73953,-73.89499,Private room,56,1,0,,,4,304 +35619073,"Ferry to Manhattan, private, newly renovated",256966373,Amir,Staten Island,St. George,40.64332,-74.07812,Entire home/apt,100,3,1,2019-06-20,1,1,201 +35619385,2 bd 2 bath Penthouse Apartment Manhattan,32159799,Chike,Manhattan,East Harlem,40.80144,-73.94463,Private room,180,2,3,2019-07-05,3,1,327 +35619415,Gorgeous Central Park Sanctuary,267980502,Yinelda,Manhattan,Upper West Side,40.78544,-73.97062,Entire home/apt,150,4,0,,,1,317 +35619694,Lovely New Private Room in Brooklyn!,92936093,Kenny,Brooklyn,Flatbush,40.64898,-73.95502,Private room,65,1,4,2019-07-01,4,1,109 +35619784,Patty Home,267951770,Patricia,Queens,Ozone Park,40.68761,-73.84241,Entire home/apt,100,1,0,,,1,189 +35620506,Private room Shared Kitchen and Bath #1,28891151,Kimesha,Brooklyn,East New York,40.66772,-73.88813,Private room,75,2,2,2019-07-06,2,4,349 +35628011,Peaceful Studio,6428897,Negin,Brooklyn,Williamsburg,40.70677,-73.94196,Entire home/apt,95,3,1,2019-06-20,1,1,5 +35633100,Zebra Room,258053084,Carlos,Manhattan,Harlem,40.80386,-73.95065,Private room,65,2,3,2019-07-01,3,1,76 +35633408,Impeccable Private one&half bedroom and full bath,83132880,Alyandry,Queens,Maspeth,40.73859,-73.89534,Private room,49,2,0,,,4,307 +35633930,"Stunning, clean and quiet studio in Little Italy!",70082582,Anna,Manhattan,Chinatown,40.7189,-73.99627,Entire home/apt,120,5,0,,,1,27 +35634364,Large Bushwick Bedroom in Newly Renovated Aprtment,51985960,Jonathan,Brooklyn,Williamsburg,40.70748,-73.92835,Private room,40,3,0,,,2,34 +35634704,WOODSIDE COMFORTABLE ROOM 15 MINUTES FROM THE CITY,266792224,Alex,Queens,Woodside,40.74833,-73.90827,Private room,90,2,1,2019-07-01,1,1,365 +35634901,Prime Midtown 2 Bdrm apt near Central Park & 5 Ave,102373033,Marjorie,Manhattan,Midtown,40.76355,-73.98102,Entire home/apt,249,3,1,2019-06-30,1,1,149 +35635711,Clean & Modern 3BR - Incredible Midtown Location !,263550606,Justin,Manhattan,Kips Bay,40.74509,-73.97894,Entire home/apt,300,4,0,,,1,77 +35635841,A Very Special Apt - Lots of Light and Space,267989178,Seza,Manhattan,Kips Bay,40.74318,-73.97916,Entire home/apt,800,2,0,,,1,254 +35638345,Heart of the Big Apple Close to Broadway,263229425,Dylan,Manhattan,Hell's Kitchen,40.76617,-73.99169,Shared room,400,2,0,,,1,26 +35638944,☀Bright & sunny townhouse | Perfect for families ☀,154268909,Malik,Queens,Bellerose,40.74006,-73.7169,Entire home/apt,240,2,0,,,2,159 +35639073,Modern Studio Few Steps From Times Square,260807399,John,Manhattan,Hell's Kitchen,40.76536,-73.98866,Shared room,400,2,0,,,1,23 +35639950,Perfect place to stay in Bushwick in a shared room,268110281,Sergii,Brooklyn,Bushwick,40.69172,-73.9113,Shared room,49,30,0,,,3,365 +35640448,"3 bedroom beautiful, cozy apt close to Times Sq.",267989700,Nusrat,Queens,Sunnyside,40.74174,-73.90817,Entire home/apt,179,1,1,2019-06-22,1,1,321 +35640594,!!Renovated shared room in great neighborhood!!,268122129,Sergii,Brooklyn,Williamsburg,40.70087,-73.94075,Shared room,35,30,0,,,5,341 +35641231,Steps to Times Square Modern Apt ♥,260805765,Paul,Manhattan,Hell's Kitchen,40.75882,-73.9903,Shared room,400,2,0,,,1,166 +35642392,Entire apt in the hearth of EAST VILLAGE!,146623639,Fabiola,Manhattan,East Village,40.72478,-73.98297,Entire home/apt,250,4,0,,,1,4 +35642402,1-Bedroom Sweet Spot in Carroll Gardens!,8093028,Jordana,Brooklyn,Carroll Gardens,40.67867,-73.9969,Entire home/apt,129,3,1,2019-07-06,1,1,21 +35642484,"Huge Bushwick 4BR apt w/private baths, sleeps 12!",268135013,Noel,Brooklyn,Bushwick,40.69463,-73.92707,Entire home/apt,475,1,1,2019-06-23,1,6,9 +35642823,"Quiet home, near Columbia Presbyterian & trains!",268137256,Germania,Manhattan,Washington Heights,40.8433,-73.93616,Private room,35,2,1,2019-06-30,1,1,359 +35642891,Beautiful room in Bushwick,268138154,Julio,Brooklyn,Bushwick,40.6964,-73.91898,Private room,10,1,2,2019-06-18,2,1,0 +35643772,"Delightful, Spacious Ditmas Park One Bedroom",21918321,Lily,Brooklyn,Flatbush,40.64151,-73.96104,Entire home/apt,90,2,0,,,1,10 +35643807,Harlem 1 bedroom Private Room - Modern,181673933,Andres,Manhattan,Harlem,40.80033,-73.95382,Private room,100,1,0,,,1,341 +35644433,***Cozy artist loft in heart of Williamsburg***,268150010,Jessica,Brooklyn,Williamsburg,40.71918,-73.95591,Entire home/apt,200,2,0,,,1,14 +35644555,Amazing Luxury on Striver’s Row,268149303,Tarvatta,Manhattan,Harlem,40.81858,-73.94524,Private room,125,2,0,,,1,125 +35644795,Bed in a shared dormitory next to Brooklyn bridge,11182145,Kateryna,Brooklyn,Fort Greene,40.69334,-73.98179,Shared room,50,1,0,,,1,347 +35645630,Cute 1 bdr in UWS & Morningside Heights,13175303,Sasha,Manhattan,Morningside Heights,40.80491,-73.96339,Entire home/apt,135,1,1,2019-06-14,1,1,3 +35645833,Brooklyn Botanical Hideaway,100981446,David,Brooklyn,Crown Heights,40.67437,-73.96177,Entire home/apt,199,6,1,2019-07-01,1,1,156 +35646056,Gorgeous East Village 2BR / 2BA & Patio,268162851,Sam,Manhattan,East Village,40.73035,-73.9845,Entire home/apt,295,5,0,,,1,268 +35646375,Large Private Chic and Cosy Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.76073,-73.99032,Private room,140,4,1,2019-06-16,1,2,34 +35646392,Luxury Junior Suite - Manhattan Club Near Park,16830841,Mara,Manhattan,Midtown,40.76391,-73.98028,Private room,358,1,0,,,5,349 +35646472,Sunny Summer Sublet entire Gorgeous Studio,268165286,Andrea,Manhattan,Upper West Side,40.79213,-73.9704,Entire home/apt,89,10,0,,,1,53 +35646539,Manhattan Club Luxury Junior Suite - Best Location,16830841,Mara,Manhattan,Midtown,40.76553,-73.98148,Private room,358,1,0,,,5,353 +35646737,"Private Cabins @ Chelsea, Manhattan",117365574,Maria,Manhattan,Chelsea,40.74946,-73.99627,Private room,85,1,1,2019-06-22,1,5,261 +35646747,Sweet and Simple,34450489,K,Brooklyn,Downtown Brooklyn,40.69691,-73.98237,Private room,111,2,2,2019-07-07,2,1,6 +35647681,Fabulous 1-bedroom apartment in Clinton Hill,268173853,Kim,Brooklyn,Clinton Hill,40.6853,-73.96662,Entire home/apt,100,5,1,2019-06-29,1,1,243 +35647761,Charming 2 Bedroom (Converted) Loft -Wall St for 5,267818779,Jonathan,Manhattan,Financial District,40.70567,-74.00566,Entire home/apt,265,1,2,2019-06-24,2,1,246 +35647951,*Prime 2BR* in Central East Village +Free Laundry,268177002,Li,Manhattan,East Village,40.72716,-73.98436,Entire home/apt,295,5,1,2019-06-16,1,1,141 +35648056,High Ceiling 5 BEDS up to 10 people in Times Sq.!,11066012,Mike And Narimá,Manhattan,Hell's Kitchen,40.76164,-73.99218,Entire home/apt,417,3,1,2019-07-01,1,1,219 +35648435,Suzy ville,244116720,Carsandra,Bronx,Throgs Neck,40.82754,-73.82124,Private room,65,1,1,2019-06-18,1,1,365 +35649754,Perfect Times Square Apartment,78896912,Courtney,Manhattan,Hell's Kitchen,40.7637,-73.99184,Entire home/apt,150,1,0,,,1,2 +35650240,1 Private bedroom in a spacious Wburg Apartment,8518298,Sanket,Brooklyn,Williamsburg,40.70924,-73.95208,Private room,57,2,3,2019-07-04,3,1,29 +35650326,안전하고 조용한 숙소,40971988,Hyunje,Manhattan,Upper East Side,40.76954,-73.94959,Private room,75,1,4,2019-07-01,4,1,9 +35651376,Bright & Peaceful Loft in Park Slope/Greenwood,15200548,Maria Fernanda,Brooklyn,Sunset Park,40.66008,-73.99684,Entire home/apt,180,4,0,,,1,12 +35651982,Modern Manhattan Apartment,72015429,Julian,Manhattan,Inwood,40.86114,-73.92717,Private room,59,1,0,,,1,357 +35652031,Comfortable private bedroom in Apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.69524,-73.93234,Private room,54,4,2,2019-06-24,2,3,330 +35652334,"Rooms in the new hipster area of Brooklyn, NYC 2",266998393,Hector,Brooklyn,Bushwick,40.69423,-73.91945,Private room,40,3,1,2019-07-02,1,3,96 +35653043,"Steps from Central Park, private bdrm, 2 full bath",93533725,Christine,Manhattan,Midtown,40.76465,-73.98155,Private room,350,2,0,,,1,38 +35653330,Heart of Bushwick home,20514946,Jennifer,Brooklyn,Bushwick,40.70056,-73.92162,Entire home/apt,230,2,2,2019-06-24,2,1,274 +35653871,Room with a View,268230638,Ilka,Manhattan,Kips Bay,40.73775,-73.97368,Private room,95,15,0,,,1,89 +35654692,Modern 3BED LOFT Near Metro & Madison Sq.Park,258376648,Samuel,Manhattan,Murray Hill,40.74673,-73.9792,Entire home/apt,299,6,0,,,1,57 +35654798,AUC Stay Room 315-3,267272502,Orfelina,Bronx,Claremont Village,40.84346,-73.90554,Private room,55,3,0,,,2,140 +35655420,Midtown 2 Bedroom w King bed near Madison Ave,2883788,Steven,Manhattan,Murray Hill,40.74825,-73.98101,Entire home/apt,239,3,3,2019-07-03,3,1,158 +35655547,"NEW!! Hip spot in the Heightz, MANHATTAN",268240039,Rafael,Manhattan,Washington Heights,40.83747,-73.94123,Private room,51,1,1,2019-07-01,1,1,84 +35655950,Gorgeous Super Clean Guest Suite,80443454,Kathryn,Queens,Kew Gardens Hills,40.71708,-73.82411,Private room,74,1,10,2019-07-07,10,1,160 +35656431,Private big bedroom w/ access to kitchen- Flushing,128681436,Angel,Queens,Flushing,40.75938,-73.80124,Private room,40,1,1,2019-07-01,1,1,66 +35656689,Jackson Heights stay near everything,133130957,Meya,Queens,Elmhurst,40.74509,-73.88492,Entire home/apt,120,1,1,2019-06-25,1,1,331 +35657486,AMAZING APARTMENT BROWNSTONE CONFI AND BIG!,86724810,Antia,Brooklyn,Bedford-Stuyvesant,40.69252,-73.93787,Entire home/apt,200,1,1,2019-06-21,1,1,344 +35657662,"GREAT APARTMENT, VERY COMFORTABLE, 5 mins to SOHO!",135127305,M. Alejandro,Manhattan,Chinatown,40.71821,-73.99506,Entire home/apt,200,1,0,,,1,312 +35658004,"CHARM APT IN LOWER EAST SIDE, WALKING EVERYWHERE",7768807,Antina,Manhattan,Lower East Side,40.7195,-73.98558,Entire home/apt,200,1,1,2019-07-01,1,1,270 +35658458,"GREAT LOFT STYLE APT, HEART OF LOWER EAST SIDE",11608565,Matt,Manhattan,Lower East Side,40.71694,-73.98218,Entire home/apt,200,3,0,,,1,270 +35658677,Manhattan Lux ♔,268266826,Max,Manhattan,Hell's Kitchen,40.76413,-73.99466,Entire home/apt,450,1,1,2019-06-26,1,1,337 +35660065,Beautiful shared room in 20 min to Manhattan,268110281,Sergii,Brooklyn,Bushwick,40.69258,-73.91168,Shared room,32,30,0,,,3,330 +35661889,Wonderful private room with entire ameneties,268110281,Sergii,Brooklyn,Bushwick,40.69208,-73.91296,Private room,58,30,0,,,3,340 +35662019,Cheap price near Timesquare,79269209,소정,Manhattan,Hell's Kitchen,40.75625,-73.99357,Private room,63,31,0,,,1,250 +35664876,Amazing twin room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.6997,-73.93944,Shared room,45,30,0,,,5,302 +35665927,AMAZING MANHATTAN SKYLINE VIEW,13813923,Maria,Queens,Long Island City,40.74383,-73.951,Private room,55,1,2,2019-06-28,2,2,293 +35666988,Best place to stay ⚓⚓⚓ with friends,268118262,Alex,Manhattan,East Harlem,40.80775,-73.93767,Private room,210,1,3,2019-07-03,3,1,7 +35667379,Renovated apartment near 1 train ( & Columbia),222549093,Anna Laura,Manhattan,Harlem,40.81668,-73.9569,Private room,65,1,1,2019-07-06,1,3,17 +35667738,Fully equipped room that's 3 mins from L train!2,101970559,Sergii,Brooklyn,Bushwick,40.6922,-73.90563,Shared room,31,30,0,,,6,333 +35668212,Bright shared room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.69965,-73.93909,Shared room,35,30,0,,,5,357 +35669284,Cozy private room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.70125,-73.93915,Private room,72,30,0,,,5,341 +35669345,"Spacious shared room in modern Bed-Stuy/ M,J,Z,G",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94005,Shared room,34,30,0,,,10,341 +35669735,Charming Stylish Apartment in Soho/Nolita,130906690,Nadiel,Manhattan,Nolita,40.72098,-73.9972,Entire home/apt,225,4,1,2019-07-03,1,1,225 +35669975,Diamond place ✿✿ to rest in NYC center,268119713,Alex,Manhattan,Midtown,40.75855,-73.96661,Entire home/apt,300,30,0,,,1,155 +35670657,Charming and quiet 2 bedroom on Washington Ave,18392694,Yamini,Brooklyn,Crown Heights,40.67976,-73.9633,Entire home/apt,100,7,0,,,1,146 +35670919,Amazing private room with private bathroom,268122129,Sergii,Brooklyn,Bushwick,40.70105,-73.93954,Private room,80,30,0,,,5,343 +35671265,Cozy Studio on Upper East,42730216,Tatjana,Manhattan,Upper East Side,40.76569,-73.95829,Entire home/apt,130,3,0,,,2,42 +35671794,My comfy room,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.6871,-73.94651,Private room,100,1,0,,,3,178 +35671998,Spectacular Apartment in the Heart of NYC,261295185,Laila,Queens,Jamaica Estates,40.71213,-73.78778,Entire home/apt,219,2,0,,,1,359 +35672353,Room in Luxury Building by Yankee Stadium.,289271,Damian,Bronx,Highbridge,40.83351,-73.93033,Private room,65,2,0,,,1,296 +35672714,perfect location to experience the Big Apple,38580398,Lisa,Queens,South Ozone Park,40.6765,-73.81947,Entire home/apt,150,3,3,2019-07-06,3,1,327 +35672777,**SUMMER OFFER**Healers LOFT: Tranquil and Light,2010787,Amma,Manhattan,Lower East Side,40.7144,-73.98201,Entire home/apt,297,20,0,,,1,276 +35672836,Times Square NYC,241985816,Carlos,Queens,Astoria,40.76847,-73.90852,Private room,100,1,1,2019-06-27,1,3,89 +35673061,Luxury Central Park Apartment,268352337,Logan,Manhattan,Hell's Kitchen,40.76374,-73.98844,Entire home/apt,450,1,1,2019-06-27,1,2,360 +35674837,Shared big room in a duplex apartment,213719157,Denis,Manhattan,East Harlem,40.79833,-73.93781,Shared room,60,1,5,2019-07-07,5,1,1 +35675069,Newly Renovated Apartment (47 Buffalo 1F Room #2),268358454,Devin,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92346,Private room,60,1,0,,,1,171 +35675859,Affordable Luxury & Comfort in Manhattan. For 5.,71276635,Joe,Manhattan,Washington Heights,40.84143,-73.94569,Entire home/apt,235,1,0,,,5,338 +35676024,"Private bedroom with lovely, spacious shared area",177507494,Evan,Brooklyn,Kensington,40.64264,-73.97855,Private room,67,1,0,,,1,31 +35676174,HOTEL ROOM STYLE STUDIO IN THE EAST VILLAGE,2860131,Kodi,Manhattan,East Village,40.72488,-73.98317,Entire home/apt,120,2,1,2019-06-24,1,1,6 +35676573,Beautiful 3 bedroom apartment in East Williamsburg,268377412,Nancis,Brooklyn,Williamsburg,40.70522,-73.94243,Entire home/apt,226,2,0,,,1,328 +35676738,Comfortable Private Room,264362310,Lens,Brooklyn,Sheepshead Bay,40.60724,-73.95219,Private room,25,1,0,,,1,178 +35677001,Large Times Sq/Midtown/Broadway Luxury High-rise,11908795,Ryan,Manhattan,Hell's Kitchen,40.7615,-73.99546,Entire home/apt,350,5,0,,,1,87 +35677349,No Sleep Till Brooklyn!,222069293,Mariela,Brooklyn,Williamsburg,40.71556,-73.94245,Entire home/apt,275,3,0,,,1,362 +35678147,Artist Bedroom in BUSHWICK NEXT to L and M Train,4077292,Unue,Brooklyn,Bushwick,40.69698,-73.90774,Private room,65,3,0,,,2,364 +35678273,Fordham University Bronx Get Away #4,35783912,Pi & Leo,Bronx,Fordham,40.86269,-73.89073,Private room,39,3,0,,,8,170 +35678627,Private Large Bedroom Apt w/ Bathroom (NO KITCHEN),88171838,Kimi,Brooklyn,Bay Ridge,40.6346,-74.03022,Private room,99,2,1,2019-06-23,1,4,169 +35679309,A unique cozy 2 bedroom apartment,268396733,Hirsh,Brooklyn,Kensington,40.64353,-73.9845,Entire home/apt,100,1,1,2019-06-28,1,1,96 +35679614,Private BR in Eco-Friendly East Village Apt,1764739,Bobby,Manhattan,East Village,40.72352,-73.97493,Private room,85,1,0,,,1,23 +35679813,Studio Style Basement in Shared Apartment,63356650,Rochelle,Brooklyn,Crown Heights,40.6771,-73.96007,Private room,60,20,0,,,1,38 +35679935,Casa de Marko,33555400,Marko,Queens,Briarwood,40.71288,-73.81368,Entire home/apt,300,2,0,,,1,12 +35680065,Room 1: Spacious Queen w/ Closet & Light breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.69134,-73.93288,Private room,75,1,2,2019-07-06,2,3,139 +35680174,Gorgeous 2 Bedroom apartment in Bushwick...,268405137,Maria,Brooklyn,Bushwick,40.69284,-73.91248,Entire home/apt,140,2,4,2019-07-03,4,1,359 +35680258,spacious sun-lit brooklyn apt by water,7073540,Nico,Brooklyn,Red Hook,40.68002,-74.0055,Entire home/apt,130,2,0,,,1,79 +35680818,Best Block in Soho Peaceful Private Room,263322673,Sofia,Manhattan,SoHo,40.72546,-74.0008,Private room,75,14,0,,,2,133 +35681056,"Elegant Times Square Apartment, with City Views!!!",268392801,Marisa,Manhattan,Hell's Kitchen,40.75597,-73.99457,Entire home/apt,251,3,3,2019-07-04,3,1,258 +35681112,Old world oasis of calm nestled in a vibrant hood,4363908,James Abordo,Brooklyn,Bedford-Stuyvesant,40.68479,-73.94416,Private room,75,2,0,,,1,14 +35681163,Comfy room in South Williamsburg- Big Screen TV,9843389,Lawrence,Brooklyn,Williamsburg,40.70816,-73.95591,Private room,100,1,1,2019-06-23,1,2,27 +35681619,Modern Bright 3bd/2ba (10 mins to NYC) w Roof Deck,69356879,Lacy,Brooklyn,Williamsburg,40.71668,-73.94252,Entire home/apt,295,2,0,,,1,300 +35681857,Stunning Brownstone Apt in Historic Fort Greene,12166612,Dana,Brooklyn,Fort Greene,40.68884,-73.9733,Entire home/apt,310,3,1,2019-07-05,1,1,5 +35682178,Comfy King-size Bedroom in NYC,268135013,Noel,Brooklyn,Bushwick,40.6944,-73.92531,Private room,69,1,1,2019-07-01,1,6,170 +35682486,1 pvt room w bath in fully furnished luxuary 2BHK,127821506,Arpit,Manhattan,Upper East Side,40.76814,-73.96088,Private room,125,1,0,,,1,20 +35682527,Friendly hosts,35620036,Temo,Manhattan,Harlem,40.82178,-73.93946,Private room,51,1,1,2019-07-03,1,1,45 +35682665,Big sunny room for women only,267912902,Shira,Brooklyn,Borough Park,40.62434,-73.98821,Private room,80,3,1,2019-06-25,1,2,179 +35682980,ENTIRE Home! 5BR/2BA + Private Garden Williamsburg,10353677,Dan,Brooklyn,Williamsburg,40.71283,-73.94278,Entire home/apt,395,2,0,,,1,351 +35683012,3 BEDROOMS IN BROOKLYN,219459418,Right,Brooklyn,Williamsburg,40.70905,-73.95484,Entire home/apt,450,2,0,,,1,345 +35683489,Brand new 2 BEDROOMS BROOKLYN,218666938,Casey,Brooklyn,Williamsburg,40.71011,-73.95782,Entire home/apt,500,3,0,,,1,362 +35683518,Sun-drenched Loft,3590361,L,Brooklyn,Boerum Hill,40.68612,-73.99024,Private room,99,1,1,2019-07-02,1,1,264 +35683776,"Cozy 1 BR by St. George Ferry., 2nd Floor apt.",268430876,Edilma,Staten Island,St. George,40.63772,-74.08315,Private room,42,1,0,,,1,87 +35684442,ROOM in safe clean apt NEAR SUBWAY,1100494,Mike&Mavi,Manhattan,Harlem,40.82292,-73.95598,Private room,50,30,0,,,3,338 +35684457,Brand new one bedroom UpperEastSide,268438637,Kenneth,Manhattan,Upper East Side,40.76938,-73.95143,Entire home/apt,249,1,1,2019-07-06,1,1,359 +35684596,Homey & Cozy room in queens!,83132880,Alyandry,Queens,Maspeth,40.73888,-73.89486,Private room,49,1,0,,,4,321 +35685857,NEW! CHARMING 2 BEDROOM APARTMENT IN MANHATTAN,78424147,Catherine,Manhattan,Washington Heights,40.84344,-73.93967,Entire home/apt,210,5,2,2019-07-01,2,1,354 +35686069,Perfect Two Bed Railroad Style Apartment,254422852,Ben,Manhattan,East Harlem,40.79522,-73.93918,Entire home/apt,225,4,2,2019-06-29,2,1,289 +35686533,The Outback Private's Escape,175730239,Baboucarr,Queens,Sunnyside,40.73902,-73.92686,Private room,59,3,2,2019-06-24,2,12,353 +35686575,Bright clean near metro,268149976,Lulu,Queens,Elmhurst,40.7315,-73.87931,Private room,35,1,2,2019-06-18,2,1,23 +35686594,Brownstone apt 2 bedrooms rent the entire apt,96608840,Jerry,Brooklyn,Bushwick,40.68434,-73.9064,Entire home/apt,90,3,1,2019-07-02,1,1,329 +35686679,Beautiful and spacious house in Forest Hills NY,141211593,Tamar,Queens,Forest Hills,40.71655,-73.85219,Entire home/apt,250,5,0,,,1,53 +35686816,Clinton Hill Dupex,50506922,Asli,Brooklyn,Clinton Hill,40.68927,-73.96542,Entire home/apt,125,3,0,,,1,31 +35687199,Nice Suite in Astoria 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.77012,-73.90919,Private room,80,1,0,,,5,19 +35687862,Beautiful 3 bedroom apartment in East Williamsburg,268465931,Sumergida,Brooklyn,Williamsburg,40.7043,-73.94285,Entire home/apt,200,2,1,2019-07-01,1,1,338 +35688219,Brooklyn Home I,268468020,Tylor,Brooklyn,East Flatbush,40.641,-73.93467,Entire home/apt,98,1,0,,,2,88 +35688424,Bedroom + Ensuite Bath + Backyard in Bedstuy,20086738,Kristin Page,Brooklyn,Bedford-Stuyvesant,40.68028,-73.91829,Private room,105,2,0,,,2,17 +35691113,Brand NEW 2br/2bath in Lower Manhattan,268491219,Stas,Manhattan,Two Bridges,40.71143,-73.99557,Entire home/apt,285,2,0,,,1,338 +35691215,Spacious ROOM in Luxury Condo with Gym & BBQ,5028297,Charles,Brooklyn,Fort Greene,40.69416,-73.9809,Private room,159,2,1,2019-07-01,1,1,327 +35692073,Prime location! 5BR with 3BA Townhouse + Patio!,268207118,Rosaline,Manhattan,Midtown,40.75959,-73.96473,Entire home/apt,279,3,2,2019-06-22,2,1,244 +35693860,Spacious Private Room on Quiet Tree-Lined Street,38209756,Jay,Brooklyn,Clinton Hill,40.69382,-73.96644,Private room,60,1,0,,,1,9 +35699079,Harlem Retreat,57627694,Olga,Manhattan,Harlem,40.82339,-73.95106,Entire home/apt,91,1,0,,,1,50 +35699567,studio type large next to LGA/JFK/Manhattan20 min,268537798,Liz,Queens,Jackson Heights,40.7486,-73.88469,Private room,99,2,0,,,1,90 +35700408,Cute and convenient near Central Park,67433858,Peter,Manhattan,East Harlem,40.78991,-73.94816,Entire home/apt,130,3,0,,,1,38 +35700700,Private clean studio for adults *,96659533,Angelica,Brooklyn,Bushwick,40.69429,-73.91385,Private room,70,2,2,2019-07-07,2,2,331 +35702066,Private Bedroom in cozy apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.69386,-73.93256,Private room,52,4,1,2019-06-22,1,3,325 +35702658,Bedroom in a Loft 12 minutes from Soho,22382915,Alessandro,Brooklyn,Bedford-Stuyvesant,40.69207,-73.93833,Private room,69,2,0,,,1,0 +35702864,LOVELY separate apartment in Bedstuy brownstone,6712411,John,Brooklyn,Bedford-Stuyvesant,40.68273,-73.9193,Entire home/apt,118,2,3,2019-07-01,3,1,101 +35703509,Luxury;Threes Company's Shared Room,175730239,Baboucarr,Queens,Sunnyside,40.74083,-73.92821,Shared room,30,3,0,,,12,360 +35703583,Prospect Park /Park Slope Huge Apartment,17426621,Claudia,Brooklyn,South Slope,40.66438,-73.97931,Entire home/apt,195,4,0,,,1,39 +35704185,Cute studio with adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68729,-73.96766,Entire home/apt,125,2,0,,,2,37 +35704764,Spacious modern room close to Manhattan!!,268572259,Sergii,Brooklyn,Bushwick,40.70322,-73.92718,Private room,79,30,1,2019-06-26,1,3,297 +35704999,Comfortable 2BR Apartment in City Center ♛,238324936,Marcel,Manhattan,Hell's Kitchen,40.765,-73.98737,Entire home/apt,300,1,0,,,3,334 +35705257,International Shared Wiggle Room BEST for Groups,175730239,Baboucarr,Queens,Sunnyside,40.73996,-73.92829,Shared room,30,3,2,2019-07-01,2,12,354 +35705482,Private room close to Manhattan (L and M train),268572259,Sergii,Brooklyn,Bushwick,40.70483,-73.92565,Private room,79,30,1,2019-06-26,1,3,365 +35705568,Trendy Queen Bed room w/private Bath in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69624,-73.92554,Private room,59,1,4,2019-07-06,4,6,160 +35706068,wait until later,35741633,Chen,Queens,Long Island City,40.74869,-73.94294,Entire home/apt,2000,1,0,,,1,365 +35706150,Shared Spaces in Candlelight;Quiescence w Relaxing,175730239,Baboucarr,Queens,Sunnyside,40.74064,-73.92871,Shared room,30,3,0,,,12,351 +35706482,Trendy Williamsburg Apartment,16342788,Carlos,Brooklyn,Williamsburg,40.7069,-73.94521,Private room,79,1,0,,,2,342 +35706862,Prime Williamsburg - 2BR - 10 min to Manhattan!,268585880,Angelica,Brooklyn,Williamsburg,40.71564,-73.94497,Entire home/apt,80,1,0,,,2,2 +35706957,Room in Central Harlem Close to Everything!!,89862690,Idara,Manhattan,Harlem,40.81395,-73.94199,Private room,75,1,1,2019-06-21,1,1,65 +35707070,Nice Room with Water Views,22071068,Max,Brooklyn,Williamsburg,40.70929,-73.96889,Private room,115,1,0,,,1,90 +35707097,A Shared Space in a Shared Room,175730239,Baboucarr,Queens,Sunnyside,40.74088,-73.92726,Shared room,30,3,1,2019-06-29,1,12,358 +35707367,Great studio located in Heart of Chelsea,266833571,Ezequiel,Manhattan,Chelsea,40.7503,-73.99746,Entire home/apt,175,3,3,2019-06-30,3,1,49 +35707474,Backyard Sleeping,175730239,Baboucarr,Queens,Sunnyside,40.7389,-73.92792,Private room,89,1,0,,,12,365 +35707595,NYC Lower Eastside loft room,36649618,Emilio,Manhattan,Lower East Side,40.71722,-73.98388,Private room,150,1,2,2019-07-01,2,1,58 +35707776,Share Room;Relaxing Guaranteed;Or REFUND !!,175730239,Baboucarr,Queens,Sunnyside,40.739,-73.92796,Shared room,30,3,0,,,12,360 +35707820,"Beautiful Midtown Apt by Grand Central, Sleeps 5!",141059668,Tom,Manhattan,Midtown,40.75237,-73.97092,Entire home/apt,150,1,0,,,1,223 +35707944,Private Yard / Williamsburg / 10 min to Manhattan,268585880,Angelica,Brooklyn,Williamsburg,40.71659,-73.94397,Entire home/apt,80,1,0,,,2,1 +35707945,The Heartbeat of Harlem,104151293,Jacqueline,Manhattan,East Harlem,40.80921,-73.94019,Entire home/apt,160,1,1,2019-06-30,1,1,26 +35708459,ROOM 1,6270968,Ryan,Brooklyn,Bedford-Stuyvesant,40.68364,-73.94067,Private room,43,3,0,,,2,320 +35708807,NEW ENTIRE HOME BEAUTIFUL 3BED/2.5BATH DUPLEX,12549759,Koen,Brooklyn,Bedford-Stuyvesant,40.68575,-73.92046,Entire home/apt,260,2,1,2019-07-01,1,2,36 +35709113,Centrally Located Private 2BR Residence ♛,224731704,Andrew,Manhattan,Hell's Kitchen,40.7655,-73.98871,Entire home/apt,300,1,0,,,3,350 +35709161,"Beautiful Midtown Apt by Grand Central, Sleeps 4!",41833764,Lior,Manhattan,Midtown,40.75174,-73.9706,Entire home/apt,145,1,1,2019-06-30,1,1,277 +35709450,"Best SOHO LOCATION, 2 BEDROOMS",253334687,Emma,Manhattan,Nolita,40.72226,-73.99351,Entire home/apt,400,3,3,2019-06-26,3,1,312 +35709682,"Shared Spaces;Safe,Great Location 15 to Times Sq",175730239,Baboucarr,Queens,Sunnyside,40.73883,-73.92698,Shared room,30,3,2,2019-06-24,2,12,327 +35709724,Private Studio steps from Herald Square ☆,218335154,Nelson,Manhattan,Midtown,40.74339,-73.98205,Entire home/apt,250,1,0,,,2,360 +35709825,Studio w Laundry Minutes from Major Attractions ☆,218335154,Nelson,Manhattan,Midtown,40.74335,-73.98287,Entire home/apt,250,1,3,2019-07-01,3,2,360 +35709849,Palace of Perhaps (Bushwick/Ridgewood),24294179,Alexander,Queens,Ridgewood,40.70084,-73.90843,Private room,48,1,2,2019-07-07,2,1,17 +35709875,BRAND NEW! Brooklyn 2 bedrooms,229725669,Sofia,Brooklyn,Williamsburg,40.7113,-73.9576,Entire home/apt,400,3,0,,,1,359 +35709924,"❥❥❥NYC apt: 4min/subway, 25m/city, 20m/LGA,JFK❥❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.6935,-73.86837,Entire home/apt,145,3,0,,,6,8 +35710204,The N residence,136408243,David,Brooklyn,Midwood,40.61354,-73.96316,Private room,140,1,0,,,1,364 +35710560,"❥❥1*NYC Cozy: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69343,-73.86745,Private room,60,3,0,,,6,50 +35710684,"Large Midtown Apartment by Grand Central, Sleeps 4",143959643,Gispan,Manhattan,Midtown,40.75284,-73.97088,Entire home/apt,145,1,0,,,1,310 +35710697,Prime East Village *Sunny & Spacious* 2BR Flat,268614079,Andrew,Manhattan,East Village,40.72513,-73.9839,Entire home/apt,315,5,2,2019-07-01,2,1,160 +35710939,Midtown 2 BR Private Apt for Urban Dwellers ✧,112799848,Arthur,Manhattan,Hell's Kitchen,40.76433,-73.993,Entire home/apt,300,1,0,,,3,342 +35710965,Charming Authentic NYC Home 12 min to Manhattan,10061222,Rob,Queens,Astoria,40.75909,-73.92227,Private room,95,1,0,,,1,355 +35711228,Trendy East Village apt for 4! Street level apt,4210130,Zachary,Manhattan,East Village,40.72438,-73.98901,Entire home/apt,199,3,6,2019-07-06,6,1,98 +35711402,Amazing Brooklyn 1Bd with Private Balcony,12061757,Taaj,Brooklyn,Brownsville,40.67511,-73.90836,Entire home/apt,100,2,0,,,1,53 +35711535,"❥❥2*NYC Cozy: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69482,-73.86747,Private room,60,3,0,,,6,41 +35711784,Private 1BR Apt 3min from Times Square,268352337,Logan,Manhattan,Hell's Kitchen,40.76494,-73.98874,Entire home/apt,250,1,0,,,2,360 +35711828,Cosy Bedroom in CITY CENTER,268276813,Andy,Manhattan,Hell's Kitchen,40.76565,-73.99392,Private room,150,1,0,,,3,365 +35712132,NEW MODERN & CLASSIC ENTIRE 2BED PRIVATE ENTRANCE,12549759,Koen,Brooklyn,Bedford-Stuyvesant,40.68656,-73.91921,Entire home/apt,160,4,2,2019-06-20,2,2,34 +35712515,PAULINE'S PLACE 1 BR APT 5 Min from JFK,259207391,Pauline,Queens,Jamaica,40.67632,-73.79856,Private room,70,1,3,2019-07-01,3,3,174 +35712642,PRIVATE BR 5min to TIMES SQ,268276813,Andy,Manhattan,Hell's Kitchen,40.7639,-73.99542,Private room,150,1,0,,,3,362 +35712883,Lovely Spacious Studio in Bedstuy,268627924,Alison,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95348,Shared room,90,3,0,,,1,38 +35713130,Private 2BR apartment in Historic Hell’s Kitchen,268276813,Andy,Manhattan,Hell's Kitchen,40.7645,-73.99434,Entire home/apt,300,1,0,,,3,362 +35713184,"Prospect Park Historic 1BR near 2,5,Q, B, S trains",11503187,A,Brooklyn,Prospect-Lefferts Gardens,40.66085,-73.95586,Entire home/apt,1400,10,1,2019-07-02,1,1,17 +35713272,Bright & Modern East Village Apartment,268631641,Harris,Manhattan,East Village,40.72198,-73.97678,Private room,97,1,1,2019-06-20,1,1,1 +35713295,Apartment Walking Distance to Central Park,75285802,Lauren,Manhattan,East Harlem,40.78861,-73.94523,Entire home/apt,150,4,0,,,2,35 +35713310,Premier Two Queens close to Central Park,261761196,Park Central,Manhattan,Midtown,40.76542,-73.98192,Private room,300,1,0,,,8,321 +35713334,Two Doubles in Historical Central Park Hotel,261761196,Park Central,Manhattan,Midtown,40.76523,-73.98049,Private room,250,1,0,,,8,306 +35713354,Carnegie Hall Two Queens with Corner View,261761196,Park Central,Manhattan,Midtown,40.76546,-73.9806,Private room,300,1,0,,,8,317 +35713596,"Spacious 2 Bed, 2 Bath in Vibrant East Village",268634598,James,Manhattan,East Village,40.72632,-73.9846,Entire home/apt,325,5,1,2019-06-27,1,1,163 +35714753,The Jamaica Experience,46662635,DuVall,Queens,Jamaica,40.70477,-73.80335,Entire home/apt,44,1,3,2019-07-03,3,1,330 +35715071,Shared Spaces;15 m to Times SQ;Safest Area in NY,175730239,Baboucarr,Queens,Sunnyside,40.73864,-73.92728,Shared room,30,3,2,2019-07-01,2,12,361 +35715171,Host yr PARTY in style -Manhattan ROOF TOP for 25,71276635,Joe,Manhattan,Washington Heights,40.83571,-73.94179,Entire home/apt,750,1,1,2019-07-07,1,5,364 +35715382,Nice thing,208559533,Mechel,Brooklyn,Bedford-Stuyvesant,40.69528,-73.95603,Shared room,115,1,0,,,1,89 +35715791,Elegant private bedroom in sunny modern home #1,101771985,Yudis,Manhattan,Harlem,40.8076,-73.94886,Private room,80,1,0,,,3,127 +35716058,Lux 23rd Fl. Wall St. Apartment,7169907,Nikki,Manhattan,Financial District,40.70424,-74.00789,Entire home/apt,135,2,2,2019-07-05,2,1,2 +35716084,Private rooms And Matchless Location,233050530,Suleyman,Queens,Woodside,40.74568,-73.90844,Private room,49,2,0,,,1,177 +35716310,Cool palce ✌✌✌ for 2 people,268657406,Alex,Manhattan,East Harlem,40.80935,-73.93812,Private room,270,1,3,2019-06-29,3,1,30 +35716452,big studio loft with private rooftop,17601262,Enrico,Brooklyn,East Flatbush,40.6509,-73.95108,Entire home/apt,200,3,0,,,2,324 +35717310,Apartment in Williamsburg,10086230,Ksenia,Brooklyn,Williamsburg,40.7113,-73.95395,Entire home/apt,200,10,0,,,1,27 +35717406,"マンハッタン、駅から徒歩4分でどこに行くのにも便利な場所!女性の方希望,キレイなお部屋。",63513465,Mika,Manhattan,East Harlem,40.80347,-73.93522,Private room,70,1,0,,,1,314 +35717409,Share Room;Cozy;Silent and Safe 15 m to Times Sq,175730239,Baboucarr,Queens,Sunnyside,40.73913,-73.92692,Shared room,30,3,0,,,12,359 +35717460,Comfortable Stay near Yankee Stadium,264676469,Diane,Bronx,Highbridge,40.83163,-73.93077,Private room,80,1,1,2019-06-21,1,1,2 +35717508,PRIME SOHO / Nolita 2 bedroom apartment,5678260,Louise,Manhattan,Nolita,40.72165,-73.99584,Entire home/apt,249,3,0,,,1,85 +35717719,"Location is Everything, plus all this! NYC Luxury",257033785,Amy,Manhattan,Upper West Side,40.77219,-73.98991,Entire home/apt,400,2,0,,,1,15 +35717735,AMAZING ONE BED IN MEATPACKING/CHELSEA MARKET!!,268271871,Miguel,Manhattan,Chelsea,40.74499,-74.00704,Entire home/apt,399,3,1,2019-06-23,1,1,179 +35717846,Share;Almost Heart of Manhattan;Safe and Silent !!,175730239,Baboucarr,Queens,Sunnyside,40.73997,-73.92655,Shared room,30,3,1,2019-06-20,1,12,345 +35718061,"Share Spaces;Almost Manhattan #1 Safety,Silent !!",175730239,Baboucarr,Queens,Sunnyside,40.74033,-73.92646,Shared room,30,3,2,2019-06-19,2,12,350 +35718147,New room! Cute & clean. Close to train. Wood floor,128843123,Ashley,Brooklyn,East New York,40.66784,-73.88575,Private room,45,1,0,,,2,365 +35718438,"Sunny, Spacious, Beautiful Apt",76407060,Sammie,Manhattan,East Village,40.72503,-73.98546,Entire home/apt,295,1,1,2019-06-30,1,1,11 +35718516,Luxury High Rise Condominium 2 Bedroom,267483864,Henry,Manhattan,Murray Hill,40.74457,-73.97493,Entire home/apt,449,1,1,2019-07-04,1,1,216 +35718849,PRIVACY CHELSEA BEAUTY WITH PRIVATE ENTRANCE,14563616,Anna/Phillip,Manhattan,Chelsea,40.73724,-73.99429,Entire home/apt,249,1,5,2019-07-01,5,2,125 +35719112,King bed. New room! Wood floors. Train is close,128843123,Ashley,Brooklyn,East New York,40.66588,-73.891,Private room,48,1,1,2019-06-24,1,2,334 +35719162,2 Bedroom Apartment in SoHo,1221359,Aleksei,Manhattan,Lower East Side,40.72076,-73.98843,Entire home/apt,400,5,0,,,1,173 +35720262,Best manhattan view and 5 min into manhattan,265422938,泽宇,Queens,Long Island City,40.74639,-73.9435,Private room,149,2,0,,,2,23 +35720329,Amazing Location in Williamsburg with 4 Bedrooms,222287033,Francis,Brooklyn,Williamsburg,40.71151,-73.96515,Entire home/apt,350,3,2,2019-06-20,2,5,347 +35721596,Homey and modern 1BR,21942647,Langston,Queens,Long Island City,40.75777,-73.93509,Private room,125,1,0,,,1,358 +35726476,Queen Sized Bedroom with Frontal Ocean View,26935419,Nikki,Brooklyn,Brighton Beach,40.5771,-73.96499,Private room,120,1,0,,,1,252 +35726877,Manhattan Apartment Near it All!,11490581,Pedro,Manhattan,Hell's Kitchen,40.75292,-73.99487,Entire home/apt,249,2,1,2019-06-23,1,1,7 +35727309,Prime Midtown West! Spacious & Renovated 3BR!,268294305,Karissa,Manhattan,Hell's Kitchen,40.75499,-73.99437,Entire home/apt,299,3,0,,,1,237 +35728246,Massive Victorian Home with Parking!,122178596,Elana,Brooklyn,Flatlands,40.62948,-73.94088,Entire home/apt,195,2,0,,,3,80 +35728640,Brooklyn Home II,268468020,Tylor,Brooklyn,East Flatbush,40.64262,-73.93621,Private room,101,1,0,,,2,116 +35729594,Rose's Brooklyn Oasis - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.6456,-73.95065,Private room,40,1,1,2019-06-30,1,2,151 +35729630,Elegant private bedroom in sunny modern home #2,101771985,Yudis,Manhattan,Harlem,40.80609,-73.9484,Private room,90,1,0,,,3,121 +35732634,Rose's Brooklyn Oasis 2 - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.64457,-73.94915,Private room,35,1,3,2019-07-07,3,2,171 +35732847,A lovely room in a great house close to RUMC.,102263916,John,Staten Island,Tompkinsville,40.63281,-74.09132,Private room,50,1,4,2019-07-07,4,2,84 +35733228,Relax comfortably 1BR w/AC in the Heart of Queens1,268784513,Amit,Queens,East Elmhurst,40.75938,-73.88219,Private room,70,1,8,2019-07-07,8,3,342 +35734363,2 Bed/2 Bath Upper East Manhattan Luxury Doorman,83934468,B,Manhattan,Upper East Side,40.78149,-73.95168,Entire home/apt,400,14,0,,,1,25 +35734937,Deluxe bedroom w/ 2 beds - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75267,-73.93111,Private room,59,1,0,,,5,351 +35735657,A Stylist's entire apt (2BDs) in heart of NYC!!,28580275,Sommy,Manhattan,Midtown,40.75823,-73.96509,Entire home/apt,290,1,0,,,4,286 +35735822,"Great Room! Great Price! +Can wait to see you !",268198789,Davica,Brooklyn,Cypress Hills,40.67804,-73.86761,Private room,48,2,1,2019-07-02,1,2,348 +35736396,Private Cozy Apartment,220125576,Yogi,Queens,Ozone Park,40.6726,-73.84567,Entire home/apt,85,3,1,2019-07-08,1,3,52 +35736648,Cozy private Apartment in great area 30min to NYC,110644265,Ahmad,Queens,Rego Park,40.72733,-73.86047,Entire home/apt,75,1,2,2019-06-23,2,1,1 +35736834,Gorgeous Room in Chic Apartment! PRIVATE BACKYARD,10690947,Melody,Brooklyn,Bushwick,40.68787,-73.90601,Private room,60,2,0,,,1,20 +35737107,"BEAUTIFUL MINI GYM, ELEVATOR, QUEEN SIZE BEDROOM",245781620,Amina,Bronx,Kingsbridge,40.88587,-73.89865,Private room,80,4,0,,,1,87 +35737368,Cozy Room w/ Private Lounge Nolita,26781753,Burtay,Manhattan,Nolita,40.72247,-73.99473,Private room,95,7,0,,,1,125 +35738384,Fully equipped 2 bedroom/Heart of Bushwick.,9510645,Rylan,Brooklyn,Bushwick,40.70205,-73.92798,Entire home/apt,225,2,0,,,2,161 +35738942,Spacious apartment with amazing natural light,3741794,Jason,Queens,Sunnyside,40.74709,-73.9138,Entire home/apt,150,5,0,,,1,359 +35738953,Bedroom in Downtown Brooklyn Near Manhattan,268832581,Gregory,Brooklyn,Downtown Brooklyn,40.69733,-73.98427,Private room,90,1,0,,,1,189 +35739486,Cozy Home in the suburbs,140665873,Rehat,Queens,Jamaica Estates,40.71797,-73.78478,Private room,50,1,3,2019-06-30,3,1,179 +35739927,"Charming ""Library"" Apt, Heart of Greenwich Village",4129805,Evelyn,Manhattan,West Village,40.73286,-74.00244,Entire home/apt,175,2,2,2019-06-21,2,5,79 +35740337,"CENTRAL PARK APARTMENT +BEST LOCATION IN NYC",4955986,Michael,Manhattan,Midtown,40.76364,-73.97589,Entire home/apt,249,2,0,,,1,253 +35740429,Affordable 3 beds / 2 baths Grand central gem,268838097,Larisa,Manhattan,Murray Hill,40.74889,-73.9747,Entire home/apt,399,5,0,,,1,208 +35740468,Studio at Hilton Club Residence - Manhattan's Best,6524762,Armstrong,Manhattan,Midtown,40.76303,-73.97896,Entire home/apt,380,1,0,,,3,364 +35740661,Brickwall 3BR 5bed 10pl - Prime location Times Sq.,268847927,Dae,Manhattan,Hell's Kitchen,40.762,-73.99158,Entire home/apt,399,3,0,,,1,218 +35740716,"Home Away, JFK Apartment",145406361,Ken & Janelle,Queens,Jamaica,40.68474,-73.79197,Entire home/apt,79,1,0,,,1,167 +35740944,Great affordable space for large groups up to 30,122178596,Elana,Brooklyn,Flatlands,40.62806,-73.94137,Entire home/apt,649,1,0,,,3,64 +35741117,Rare Spacious 2 Bedroom apartment with yard...,268852377,Wanderson,Brooklyn,Bedford-Stuyvesant,40.69819,-73.94719,Entire home/apt,160,2,1,2019-07-01,1,1,347 +35741268,Studio at Hilton Club Residence - Manhattan's Best,6524762,Armstrong,Manhattan,Midtown,40.76218,-73.98002,Entire home/apt,380,2,0,,,3,2 +35742470,⍟Times Square | The Feeling of Home in Manhattan⍟,181773256,Laura,Manhattan,Midtown,40.7509,-73.98557,Entire home/apt,450,1,0,,,1,65 +35742633,Luxury new 1 bed apartment in East Williamsburg,265866685,Mindy,Brooklyn,Bushwick,40.69796,-73.92915,Entire home/apt,198,30,0,,,2,179 +35742909,The waterview quiet area and just everything,268868462,Duane,Brooklyn,Greenpoint,40.7309,-73.95969,Private room,200,4,0,,,1,365 +35743508,"20 Min to Manhattan, Big 3 bed RM Apt in Ridgewood",267405973,Peter,Queens,Ridgewood,40.70141,-73.90415,Entire home/apt,195,18,0,,,2,347 +35744074,Sparkling 3BR near subway/beach - with a yard!,73670512,Monika,Brooklyn,Gravesend,40.59301,-73.975,Entire home/apt,140,3,3,2019-07-07,3,2,222 +35744269,Single Professional Room with Private Bath,261187437,Shasha,Brooklyn,Borough Park,40.63524,-74.0039,Private room,55,1,1,2019-06-23,1,6,358 +35744524,Comfy house close to Central Brooklyn,258885293,Gedalia,Brooklyn,East Flatbush,40.65937,-73.9348,Private room,59,1,3,2019-07-06,3,1,343 +35744751,LIC Jackson park luxury apartment Queen Plaza,245830692,Ruijia,Queens,Long Island City,40.74776,-73.93869,Private room,65,2,3,2019-06-29,3,1,26 +35745348,Private room in Greenwich Village,265901814,Evette,Manhattan,West Village,40.73638,-74.00057,Private room,125,2,0,,,2,180 +35745881,Large room in a cozy and very clean apt,129797713,Rosa,Queens,Astoria,40.76375,-73.91061,Private room,70,7,0,,,1,222 +35747359,"Lovely*Bright Place in Brooklyn/ Nearby L, G train",22134437,Grace,Brooklyn,Greenpoint,40.72256,-73.94889,Private room,85,2,2,2019-06-30,2,1,103 +35752161,Private Balcony & Rooftop Deck in New Building,15020878,Vallery,Manhattan,East Harlem,40.80622,-73.93875,Entire home/apt,115,2,0,,,1,3 +35753330,Cozy bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67442,-73.92949,Private room,50,1,4,2019-07-06,4,3,364 +35754234,Sunny and clean bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67615,-73.93046,Private room,50,1,5,2019-07-05,5,3,361 +35754565,Bright private bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67631,-73.92912,Private room,58,1,2,2019-06-18,2,3,363 +35754614,Chelsea Sunroof,180237401,Jarrod,Manhattan,Chelsea,40.74443,-73.9967,Entire home/apt,200,4,0,,,1,31 +35756536,Beautiful apt with prime LES location,2351947,Caroline,Manhattan,Lower East Side,40.72065,-73.98733,Entire home/apt,280,2,0,,,1,17 +35757257,2 BATHROOMS Times Sq. Duplex for upto 8 people,18288234,Lisa And Mike,Manhattan,Hell's Kitchen,40.76035,-73.99039,Entire home/apt,379,3,0,,,1,333 +35757611,TriBeCa / Fidi in the sky,181143,Michael,Manhattan,Financial District,40.71013,-74.00511,Entire home/apt,200,4,1,2019-07-01,1,1,108 +35758732,"The Gallery Bed & Breakfast in Bed-Stuy, Brooklyn",21299191,The Gallery BnB,Brooklyn,Bedford-Stuyvesant,40.68794,-73.93626,Private room,175,2,3,2019-07-07,3,1,358 +35760845,Cozy UWS Only two blocks away from Central Park!,261451511,Valeria,Manhattan,Upper West Side,40.78527,-73.97623,Private room,150,2,3,2019-06-30,3,1,21 +35762030,Francesco’s Manhattan Private Room w/private bath,50278442,Francesco,Manhattan,Morningside Heights,40.80528,-73.96547,Private room,70,30,0,,,3,328 +35762202,Basement apartment in single family home,122178596,Elana,Brooklyn,Flatlands,40.62987,-73.94267,Entire home/apt,80,2,0,,,3,65 +35763026,Beautiful location for enjoy in NYC,188498431,Han,Queens,Sunnyside,40.7388,-73.92282,Private room,65,2,3,2019-07-06,3,6,347 +35763126,Charming & Stylish Home in Chelsea,44138549,Jonathan,Manhattan,Chelsea,40.74357,-73.99751,Entire home/apt,260,5,0,,,1,17 +35765145,Big comfortable private bedroom in Upper Manhattan,266770733,Eduardo,Manhattan,Inwood,40.85988,-73.92703,Private room,50,2,1,2019-06-24,1,1,11 +35766124,"Sunlit Fabulous ""Treehouse"" in Greenwich Village",269055881,Allen,Manhattan,West Village,40.73243,-74.00333,Private room,160,3,1,2019-06-26,1,1,52 +35766431,Urban Oasis Apartment for Fam or Friends,433917,Daniela,Brooklyn,Bedford-Stuyvesant,40.67913,-73.94872,Entire home/apt,100,3,0,,,1,28 +35766933,Great place,94214493,Dadrine,Brooklyn,East Flatbush,40.65643,-73.91875,Private room,80,7,0,,,9,365 +35767325,one privet bedroom cheap price perfect for singel,148004680,Matanel,Brooklyn,Midwood,40.62245,-73.9696,Private room,35,1,1,2019-07-01,1,1,50 +35767582,Modern double bed in large duplex (in Gramercy),7761295,Macha,Manhattan,Gramercy,40.73808,-73.98325,Private room,85,2,0,,,1,12 +35767632,Brooklyn Apt: Redhook,269070501,Erich,Brooklyn,Red Hook,40.67887,-74.00582,Entire home/apt,100,1,0,,,1,43 +35767995,The Clifton Eastern Room,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95333,Private room,75,2,0,,,2,88 +35768121,Murray Hill studio,2448443,Alex,Manhattan,Murray Hill,40.74849,-73.97708,Entire home/apt,140,3,1,2019-06-17,1,1,3 +35768150,"Stunning, Renovated 2bed/1.5bath Apt in Prime LES!",268205314,Vanessa,Manhattan,Chinatown,40.71598,-73.99549,Entire home/apt,299,1,2,2019-06-28,2,1,334 +35768266,Private bedroom in a PENTHOUSE apartment,269078087,Aditya,Manhattan,East Harlem,40.79846,-73.93359,Private room,62,1,4,2019-06-28,4,1,7 +35768324,Private Affordable room in the heart of Harlem NYC,268896283,Khady,Manhattan,Harlem,40.81566,-73.94174,Private room,45,1,1,2019-07-01,1,2,73 +35768335,Room with private bathroom in Brooklyn,238908845,Thibault,Brooklyn,Bushwick,40.69328,-73.92085,Private room,55,2,0,,,1,5 +35768373,Entire Luxurious Spacious Studio! NYC!,41829977,Sonam,Queens,Elmhurst,40.74638,-73.87353,Private room,99,1,0,,,2,161 +35768735,"Large Bright Studio,Sleeps 5 w/2 Queen Beds&Futon",21261408,Jay,Brooklyn,Clinton Hill,40.68991,-73.96132,Private room,130,1,2,2019-07-01,2,6,345 +35768873,Brand new 3 BD apartment a minute from G train,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95457,Entire home/apt,300,2,0,,,4,275 +35769795,Carlos apartment,269095308,Juan,Manhattan,East Harlem,40.79234,-73.94592,Private room,75,4,1,2019-06-23,1,1,24 +35770104,Townhouse in Bed Stuy with beautiful garden,18142449,Mara,Brooklyn,Bedford-Stuyvesant,40.68743,-73.95257,Entire home/apt,350,5,0,,,1,22 +35770530,"Spacious, Luxury Duplex with Outside Deck",37888781,Fran,Brooklyn,Bedford-Stuyvesant,40.67884,-73.92611,Entire home/apt,195,2,1,2019-06-17,1,1,71 +35770687,Bright & quiet room 25 min from Downtown Manhattan,178036911,Kate And Alex,Brooklyn,Bedford-Stuyvesant,40.68298,-73.9298,Private room,60,1,4,2019-07-07,4,2,354 +35770783,"Cozy, sun-drenched, 1st floor apt in Astoria / LIC",269105402,Jennifer,Queens,Long Island City,40.76049,-73.9288,Entire home/apt,110,2,2,2019-07-07,2,1,21 +35771605,Master Bedroom with Private Bathroom,121917249,Yijun,Brooklyn,Clinton Hill,40.6941,-73.96295,Private room,70,3,0,,,2,25 +35771730,Cozy bedroom close to Manhattan,178036911,Kate And Alex,Brooklyn,Bedford-Stuyvesant,40.68293,-73.92924,Private room,50,1,5,2019-07-05,5,2,359 +35771989,Bedroom with Private bathroom,121917249,Yijun,Brooklyn,Clinton Hill,40.69333,-73.965,Private room,80,7,0,,,2,37 +35772228,Medical Student Apartment D-Shared,146776990,Rosemarie,Brooklyn,East Flatbush,40.65465,-73.93383,Shared room,33,31,0,,,4,41 +35772374,Luxury Brooklyn Condo only 30 min to NYC,264272029,Amer,Brooklyn,East Flatbush,40.63673,-73.94988,Entire home/apt,399,2,2,2019-06-30,2,1,161 +35772999,Luxury Penthouse – Chelsea – Manhattan,20049684,Booking,Manhattan,Chelsea,40.74887,-74.00498,Entire home/apt,350,3,0,,,1,328 +35773859,Spacious Room Steps to Prospect Park (built 2017),269121359,Azure,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95832,Private room,100,10,0,,,1,59 +35774669,Serene modern space in the heart of greenpoint!,25490213,Tony,Brooklyn,Greenpoint,40.72549,-73.94912,Private room,95,2,1,2019-06-24,1,1,67 +35776956,"luxury apt in long lsland city +1min to subway",221012726,Lyn,Queens,Long Island City,40.74786,-73.93889,Private room,46,1,0,,,1,6 +35777392,SPACIOUS STUDIO FLAT In Tree-Lined Neighborhood,117987098,Tam,Brooklyn,Kensington,40.63293,-73.97117,Private room,86,2,0,,,1,365 +35783252,Feel like home room in Manhattan,98662265,Yana,Manhattan,Midtown,40.75061,-73.97233,Private room,85,1,1,2019-06-20,1,1,43 +35783942,Cozy one bedroom in the city!!,37140959,Cindy,Manhattan,East Village,40.72281,-73.98099,Private room,66,3,0,,,1,9 +35784049,Perfect NYC crib for Explorers & Travelers,269193265,Ana,Manhattan,Murray Hill,40.74611,-73.974,Private room,105,1,1,2019-06-30,1,1,38 +35785973,Custom home by lake and NYC,20024538,Liza,Staten Island,Arrochar,40.5949,-74.07084,Entire home/apt,199,1,1,2019-06-30,1,1,81 +35788042,☕ ✈Fantastic Room ⚡⚡ ✈,269075374,Alex,Manhattan,East Harlem,40.80911,-73.93698,Private room,150,1,0,,,1,7 +35788732,Cozy 2 Bedroom apartment next to Manhattan!!,163360671,Jenny,Queens,Astoria,40.75732,-73.91557,Entire home/apt,135,3,0,,,1,227 +35789093,Renovated 2 Bedroom next to Manhattan!!!,258094448,Anna,Queens,Astoria,40.75916,-73.92541,Entire home/apt,120,3,0,,,1,105 +35789987,Brand new fully furnished studio apartment!,59521234,Krysta,Brooklyn,Crown Heights,40.66986,-73.95598,Entire home/apt,120,1,0,,,1,14 +35790090,Authentic Chelsea Studio Loft,89629761,Juan,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,89,2,0,,,1,37 +35790417,Cozy 1 Bedroom Apartment next to Manhattan!!!,258089128,Evelina,Queens,Astoria,40.76019,-73.92489,Entire home/apt,135,3,0,,,1,109 +35791289,Renta de Habitación a una cuadra de Central Park,29340158,Enrique,Manhattan,Upper West Side,40.79618,-73.96312,Private room,43,10,0,,,1,128 +35791325,Stunning Full Floor Apartment in the Village,1238383,Dave,Manhattan,Greenwich Village,40.72935,-73.99934,Entire home/apt,500,4,0,,,1,74 +35792068,"Entire Apartment. One block to Bars, Coop, Qtrain.",198020385,Margaret,Brooklyn,Flatbush,40.63704,-73.96693,Entire home/apt,130,3,2,2019-07-06,2,1,33 +35792968,Spacious 3 Bedroom 5 mins way from Manhattan!!!,257680857,Daniella,Queens,Long Island City,40.7537,-73.93505,Entire home/apt,139,3,0,,,1,105 +35793455,Massive Sun Filled East Village Bedroom with Roof,28103718,Patrick,Manhattan,East Village,40.7319,-73.98981,Private room,150,3,1,2019-06-30,1,1,209 +35793693,Sonder | 116 John | Cozy Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70831,-74.00642,Entire home/apt,180,29,0,,,327,342 +35793784,Sonder | 116 John | Tasteful 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70833,-74.00497,Entire home/apt,270,29,0,,,327,350 +35793925,Private studio. Near Bars & Q-train. Gay friendly,189808492,Mary Beth,Brooklyn,Flatbush,40.63771,-73.9672,Private room,70,3,0,,,1,38 +35794273,Hope Garden,106798652,Timbrooke,Brooklyn,Bushwick,40.69554,-73.92511,Private room,130,1,0,,,2,365 +35794314,Penthouse Apartment with *Private* Rooftop,23715245,Sara,Manhattan,Lower East Side,40.71976,-73.98397,Entire home/apt,275,2,1,2019-06-23,1,1,12 +35794415,Magnificent Royal Townhouse in NEW YORK CITY!,221213143,David,Manhattan,Kips Bay,40.74297,-73.98195,Entire home/apt,650,1,0,,,9,302 +35794618,2 TWIN BEDS (OR 1 KING BED) IN A BOUTIQUE HOTEL,33213436,Alec,Brooklyn,Gowanus,40.68019,-73.98408,Private room,160,1,1,2019-06-23,1,8,364 +35795510,Cozy 2/1 apartment in Heart of Brooklyn,81957771,Gabs,Brooklyn,Bushwick,40.70318,-73.92636,Entire home/apt,120,3,0,,,1,177 +35795817,Newly Furnished 2 Bed 1 Bath,61396454,Ash,Manhattan,Midtown,40.75508,-73.96379,Entire home/apt,220,30,0,,,14,343 +35795970,Sutton Place High Rise,61396454,Ash,Manhattan,Midtown,40.75518,-73.96306,Entire home/apt,190,30,0,,,14,365 +35796073,Newly renovated and modern apartment in Manhattan,149334307,Julie,Manhattan,Washington Heights,40.83901,-73.93943,Private room,61,1,1,2019-06-23,1,1,268 +35796194,"Super Nice Flat in Nolita, NYC",33144953,Carly,Manhattan,Nolita,40.72206,-73.99695,Entire home/apt,189,4,0,,,1,317 +35796952,Ginger Home,2113042,Ly,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94073,Private room,70,3,1,2019-07-01,1,1,65 +35797061,Affordable Midtown East 2 bedrooms/2 bathrooms,269264973,Dima,Manhattan,Midtown,40.75903,-73.96669,Entire home/apt,199,7,0,,,1,134 +35798549,"concrete jungle, dreams are made, Studio nextdoor",216289751,Cierra,Manhattan,Midtown,40.7518,-73.97158,Entire home/apt,145,3,0,,,1,62 +35798611,Recording Studio Overnight Stays. Downton Bklyn,37424221,Trevor,Brooklyn,Downtown Brooklyn,40.69677,-73.98155,Private room,100,2,0,,,1,365 +35798701,Charming 2 bed's in Midtown East Near U.N,51589519,Asi,Manhattan,Midtown,40.75726,-73.96671,Entire home/apt,180,28,0,,,1,338 +35799445,Clinton Midtwon WesT,243288727,Matt,Manhattan,Hell's Kitchen,40.76965,-73.99001,Entire home/apt,190,30,0,,,7,353 +35799708,THE HEART OF MIDTOWN WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76783,-73.98847,Entire home/apt,190,30,0,,,7,267 +35799984,The Brooklyn Plaza,57888148,Abosede,Brooklyn,East Flatbush,40.66242,-73.92833,Private room,70,1,0,,,1,325 +35800046,Sunny 5Br 4Ba - Townhouse on Upper East Side,268680530,Oliver,Manhattan,Upper East Side,40.77587,-73.95308,Entire home/apt,1100,4,0,,,1,270 +35800182,LUXIRIOUS ONE BEDROOM MIDTWON WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76896,-73.98908,Entire home/apt,190,30,0,,,7,348 +35800352,"close to LGA, JFK LIRR , (private parking)",26802715,Wu,Queens,Flushing,40.7664,-73.8227,Private room,49,4,0,,,2,63 +35800448,LUXUARY 2 BEDROOM APARTMENT,243288727,Matt,Manhattan,Hell's Kitchen,40.76793,-73.9882,Entire home/apt,190,30,0,,,7,354 +35800600,1BD SAFE & AFFORDABLE WITH TV FULLY RENOVATED,73676969,Meezy,Bronx,Williamsbridge,40.87852,-73.85003,Private room,36,2,2,2019-07-05,2,3,47 +35800764,Amazing 2 Br 2bath upper east side prime location,269312373,Noura,Manhattan,Upper East Side,40.76074,-73.96015,Entire home/apt,340,30,0,,,2,332 +35800768,THE HEART OF THE WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76285,-73.98653,Entire home/apt,300,30,0,,,7,310 +35800903,MIDTOWN WEST APARTMENT,243288727,Matt,Manhattan,Hell's Kitchen,40.76364,-73.98694,Entire home/apt,300,30,0,,,7,310 +35801208,Comfy 2 bedroom Close To Manhattan,256911412,Taylor,Brooklyn,Williamsburg,40.70469,-73.9369,Entire home/apt,101,4,0,,,1,27 +35801421,HIGHR RISE IN MIDTOWN WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76192,-73.98696,Entire home/apt,190,30,0,,,7,311 +35803121,Private room with a sofa bed in Greenpoint BK,138150256,Alejandro,Brooklyn,Greenpoint,40.73171,-73.95374,Private room,50,3,0,,,2,0 +35803274,PrivateRoom Queens 1block7train 15minManhattan LGA,119110280,Maria,Queens,Sunnyside,40.74175,-73.91409,Private room,50,1,4,2019-07-01,4,1,82 +35803557,Sunny room in a 2 bedroom shared apartment,77196523,Ninett,Manhattan,Harlem,40.82936,-73.9493,Private room,80,2,0,,,1,15 +35803559,*NEW* Bright Spacious Brooklyn 2 Bedroom Sleeps 9,133005440,Alex,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95823,Entire home/apt,125,2,1,2019-06-23,1,2,342 +35803621,TRANQUIL HAVEN-8 MINS TO JFK/LIRR/AIRTRAIN RM#2.,178272943,Sharon,Queens,Jamaica,40.67207,-73.78094,Private room,60,1,2,2019-07-08,2,4,79 +35803740,Special 1 Bedroom in Prime Location Upper East,269312373,Noura,Manhattan,Upper East Side,40.76139,-73.9625,Entire home/apt,200,30,0,,,2,365 +35804219,Cozy room available in Brooklyn for July,35616021,Begum,Brooklyn,Bedford-Stuyvesant,40.68477,-73.9509,Private room,40,2,1,2019-06-29,1,1,1 +35804587,1BD WITH PRIVATE BATHROOM - VERY COZY & 42 INCH TV,73676969,Meezy,Bronx,Williamsbridge,40.87877,-73.85044,Private room,55,2,0,,,3,35 +35804589,Heart of Astoria,5825467,Michael,Queens,Astoria,40.76215,-73.91973,Shared room,110,1,1,2019-06-20,1,1,21 +35804885,Cozy Classic Convenient Apartment Near The Park,269345151,Marlene,Brooklyn,Crown Heights,40.67221,-73.94847,Entire home/apt,100,2,0,,,1,87 +35805037,Lovely & Spacious 2 Bedroom Apartment,269345069,Joyce,Brooklyn,Vinegar Hill,40.70112,-73.98402,Entire home/apt,225,2,1,2019-06-27,1,1,303 +35805094,Artist’s Live/Work Space,44245355,Sarah,Brooklyn,Bushwick,40.68898,-73.91358,Private room,60,7,0,,,1,24 +35805262,Discounted! Quiet 1 BR next to Times Square,10745276,Kortney William,Manhattan,Hell's Kitchen,40.75993,-73.99074,Entire home/apt,225,2,0,,,1,270 +35805474,Industrial artsy loft in Williamsburg,269297229,Юлия,Brooklyn,Williamsburg,40.71394,-73.96301,Entire home/apt,199,5,0,,,1,213 +35807159,"Cozy, sunny entire two bedroom Bed-Stuy apartment",23196609,Emma,Brooklyn,Bedford-Stuyvesant,40.69386,-73.94192,Entire home/apt,100,4,0,,,2,0 +35807376,E Z Living In Harlem,244536777,Chester,Manhattan,Harlem,40.81745,-73.94441,Entire home/apt,225,3,0,,,2,235 +35807411,Beautiful private room in 3br apartment!,2367604,Sagi,Queens,Ridgewood,40.70694,-73.91552,Private room,50,1,0,,,1,67 +35807543,Beautiful beach apartment,25544585,Mary,Queens,Rockaway Beach,40.5847,-73.81387,Entire home/apt,250,2,0,,,1,52 +35808103,Cozy 2 Bd Apartment in Near Central Park New York,269372955,Pol,Manhattan,Upper West Side,40.7875,-73.97511,Entire home/apt,350,4,0,,,1,324 +35808316,Water View in Battery Park near Statue of Liberty,76572037,Lisa,Manhattan,Battery Park City,40.70964,-74.01798,Entire home/apt,199,1,0,,,1,43 +35808498,2 bd 2 bathroom Apartment in Upper East Side,269377869,Jordi,Manhattan,Upper East Side,40.77223,-73.95082,Entire home/apt,350,4,0,,,1,337 +35808578,"Sunny, Comfortably Cozy, Private Room",269375490,Rena,Brooklyn,Canarsie,40.64567,-73.89091,Private room,45,1,7,2019-07-06,7,1,68 +35808986,Private room overlooking backyard in Bushwick,24342773,Chris,Brooklyn,Bushwick,40.70534,-73.92357,Private room,65,1,1,2019-06-23,1,1,188 +35809169,Triplex loft in Williamsburg/MacCarren Park,242152267,Andris,Brooklyn,Greenpoint,40.7199,-73.95085,Entire home/apt,199,14,0,,,1,21 +35809258,Cozy and Modern 3BR for upto 6 ppl - 4min to metro,269220629,Isidro M.,Brooklyn,Crown Heights,40.67671,-73.93991,Entire home/apt,169,4,0,,,1,324 +35809289,3 COZY LIGHT ROOM BROOKLYN,102292061,Roman,Brooklyn,Sheepshead Bay,40.58624,-73.9448,Private room,50,1,5,2019-07-05,5,3,85 +35810926,Stylish and Comfortable 3 Bedrooms in Williamsburg,185968630,Eli,Brooklyn,Williamsburg,40.71115,-73.94371,Entire home/apt,210,3,1,2019-06-27,1,1,254 +35811237,Centrally located spacious 1-bedroom apartment,269401661,Nick,Manhattan,Murray Hill,40.74942,-73.9817,Entire home/apt,95,1,7,2019-06-29,7,1,54 +35812122,Room with Private Bathroom near Times Square,211196034,Sam,Manhattan,Hell's Kitchen,40.75895,-73.99509,Private room,189,4,1,2019-07-02,1,1,8 +35816788,Artists cave,226970380,Tunie,Manhattan,East Village,40.72555,-73.98198,Entire home/apt,145,1,3,2019-07-02,3,1,84 +35817430,Bright Designer's Flat in E Williamsburg,104905299,Ben,Brooklyn,Williamsburg,40.7069,-73.9436,Entire home/apt,159,14,0,,,1,345 +35819469,Best Location! Massive 5BR Townhouse w/ Deck!,255306962,Roman,Manhattan,Midtown,40.7624,-73.9693,Entire home/apt,299,30,2,2019-06-26,2,1,248 +35821347,TWO BEDROOM IN BEST PART OF BROOKLYN!! SLEEPS 6!!,262583834,Isabel,Brooklyn,Bedford-Stuyvesant,40.69069,-73.9298,Entire home/apt,399,3,3,2019-07-07,3,1,235 +35822763,Quiet space in Brooklyn,3599030,Julianna,Brooklyn,Crown Heights,40.67555,-73.95298,Private room,85,2,0,,,1,363 +35823101,SO CHILL!! Very spacious and cozy bk apartment !!,269470349,Jim,Brooklyn,Bushwick,40.70146,-73.91932,Entire home/apt,75,2,3,2019-06-28,3,1,163 +35823611,Cute East village one bedroom apartment for 3,240141402,Kaspars,Manhattan,East Village,40.72607,-73.97622,Entire home/apt,145,4,0,,,1,26 +35825111,Comfortable and modern one bedroom in Midtown West,269308830,Сергей,Manhattan,Hell's Kitchen,40.75395,-73.99593,Entire home/apt,168,5,0,,,1,50 +35826493,NEW Modern Entire 2Bed Parkview Unforgettable,257647514,Juhyun,Brooklyn,Bushwick,40.69185,-73.91073,Entire home/apt,150,3,1,2019-06-27,1,2,21 +35826544,Gorgeous 3 bedroom close to Manhattan,138729500,John & Leni,Queens,Astoria,40.76067,-73.9198,Entire home/apt,225,2,2,2019-06-30,2,1,277 +35826827,1 bedroom apt close to Times Square,213156539,Javier,Manhattan,Hell's Kitchen,40.76171,-73.98728,Entire home/apt,177,2,1,2019-06-24,1,1,125 +35827321,West village gem with private backyard,217852396,Evgeniy,Manhattan,West Village,40.73895,-74.00268,Entire home/apt,199,5,0,,,1,122 +35827378,Luxury Spacious Up To 5 Bedroom House in Brooklyn,269499114,Ramin,Brooklyn,Sheepshead Bay,40.60467,-73.94243,Entire home/apt,139,1,5,2019-07-07,5,1,162 +35827600,Amazing apartment half block away from the subway,64185868,Adriana,Brooklyn,Bedford-Stuyvesant,40.67822,-73.90938,Private room,50,5,1,2019-06-19,1,1,32 +35828713,MIDTOWN EAST 2 BEDROOM,221200420,Adam,Manhattan,Murray Hill,40.74554,-73.97368,Entire home/apt,300,30,0,,,23,349 +35828913,MURRAY HILL LUXURY 2 BEDROOMS,221200420,Adam,Manhattan,Murray Hill,40.74833,-73.97253,Entire home/apt,280,30,0,,,23,336 +35829338,Bright 3bd/1ba Apartment in the heart of Brooklyn,219908197,Anthony,Brooklyn,Williamsburg,40.71693,-73.94267,Entire home/apt,295,2,1,2019-06-23,1,3,354 +35829544,MURRAY HILL LUXURY APARTMENT,221200420,Adam,Manhattan,Murray Hill,40.74964,-73.97203,Entire home/apt,280,30,0,,,23,336 +35829570,★ Easy Access to the Best of Brooklyn - Tree Top ★,393473,Bobby,Brooklyn,Bedford-Stuyvesant,40.69221,-73.95168,Entire home/apt,116,2,4,2019-07-02,4,2,156 +35830404,Beautiful Designed Studio Right of Grand Central!!,263205756,Matan,Manhattan,Midtown,40.75229,-73.96953,Entire home/apt,155,1,2,2019-06-30,2,1,300 +35830870,Large 2Bedroom Apartment right off Grand Central!!,20053314,Noa,Manhattan,Midtown,40.75161,-73.97025,Entire home/apt,175,1,0,,,1,250 +35830892,"Open floor plan, 1,000 Sq ft in Bed-Stuy",6346488,S,Brooklyn,Bedford-Stuyvesant,40.68218,-73.92129,Private room,120,2,1,2019-06-23,1,1,97 +35830998,Private Bathroom Bedroom Close to Subway,256479489,Amy,Brooklyn,Bath Beach,40.60544,-74.00137,Private room,59,1,0,,,2,364 +35831203,Beautiful 2 bedroom by Grand Central and the UN!!!,79008205,Josh,Manhattan,Midtown,40.75109,-73.97086,Entire home/apt,155,1,0,,,2,244 +35831474,"Large Apt with Patio, walking to Times Square!!!!!",79008205,Josh,Manhattan,Midtown,40.75225,-73.97107,Entire home/apt,165,1,0,,,2,330 +35831503,Stunning Duplex in prime Park Slope!,116535992,Jaclyn,Brooklyn,Park Slope,40.67853,-73.97749,Entire home/apt,250,5,0,,,1,14 +35831833,"Large Apartment with Patio, Walk to Times Square!!",142408357,Rotem,Manhattan,Midtown,40.75209,-73.96944,Entire home/apt,165,1,0,,,1,341 +35832547,Big 1 Bedroom located in Union Square,95000637,Mike,Manhattan,Gramercy,40.73592,-73.98993,Entire home/apt,295,2,1,2019-07-01,1,1,0 +35832561,Spacious room in beautiful Manhattan apartment!,20788222,Thirsa,Manhattan,Harlem,40.81216,-73.95036,Private room,150,1,1,2019-06-23,1,1,59 +35833041,Luxury 5 Bedroom | 3 Bathroom South Street Seaport,268445572,Gabrielle And Steven,Manhattan,Financial District,40.70662,-74.00258,Entire home/apt,750,3,0,,,1,352 +35833383,Spacious Williamsburg Loft/Apartment,5900670,Natalie,Brooklyn,Williamsburg,40.71401,-73.96572,Entire home/apt,140,4,0,,,1,24 +35833554,Bohemian Garden Apartment,359692,Hue,Brooklyn,Clinton Hill,40.69229,-73.96774,Entire home/apt,115,2,1,2019-06-30,1,1,26 +35834284,Charming Studio in the heart of the West Village,35733814,Margaret,Manhattan,West Village,40.73559,-73.99985,Entire home/apt,199,30,0,,,1,340 +35834935,Williamsburg Apartment,82674375,Meg,Brooklyn,Williamsburg,40.70898,-73.94885,Entire home/apt,140,500,0,,,1,331 +35835601,Sunny spacious quiet bedroom with a full bath.,47131399,Ben,Brooklyn,Bedford-Stuyvesant,40.67925,-73.94286,Private room,80,1,1,2019-07-06,1,1,22 +35835936,BEAUTIFUL WEST VILLAGE APARTMENT,22550881,Graham,Manhattan,West Village,40.73895,-74.00393,Entire home/apt,151,1,1,2019-07-05,1,1,8 +35836163,Brooklyn @ Bedford,24933402,Megan,Brooklyn,Williamsburg,40.71582,-73.9573,Private room,75,9,0,,,1,310 +35836317,Gorgeous Duplex 2BED/1.5BA Modern,269242923,John,Manhattan,Kips Bay,40.7449,-73.97888,Entire home/apt,288,5,2,2019-06-30,2,1,74 +35836471,Cozy Large Sunny Artist Retreat 10min to Manhattan,269114687,Felicia,Brooklyn,Williamsburg,40.71799,-73.95826,Entire home/apt,188,5,1,2019-06-30,1,1,51 +35837250,Oversize Brooklyn duplex with backyard!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94969,Entire home/apt,195,2,0,,,2,7 +35837998,Large 2-bedroom 2-bath Apt by Central Park,8066407,Vladimir,Manhattan,Harlem,40.79981,-73.95436,Entire home/apt,250,4,0,,,1,13 +35838750,Beautiful apartment. Coolest area of Bed-Stuy!,23831257,Nicole,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92931,Private room,50,7,0,,,2,214 +35839059,Light filled studio apt with expansive city view,106823925,Kyle,Brooklyn,Downtown Brooklyn,40.68886,-73.98303,Entire home/apt,100,2,0,,,1,69 +35839537,Empire State Jazz! Superb location!,269585762,Teri,Manhattan,Midtown,40.74894,-73.98788,Entire home/apt,99,1,2,2019-06-22,2,1,264 +35839702,Brooklyn's Best Location ~ Kingsland Paradise,27007200,Lili,Brooklyn,Williamsburg,40.7193,-73.93993,Entire home/apt,125,7,0,,,1,29 +35839810,Private Bedroom in Bushwick Townhouse,6237789,Pierrick,Brooklyn,Bushwick,40.69209,-73.91882,Private room,50,7,1,2019-06-29,1,1,18 +35840369,"Layton Apt. Is Only 20 Min Ride into Manhattan, NY",269592097,Selma,Staten Island,St. George,40.64244,-74.08494,Entire home/apt,78,2,0,,,1,342 +35840564,Cozy 2 bedroom apt in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76595,-73.92656,Entire home/apt,215,2,2,2019-07-07,2,2,153 +35841083,*Nice and Cozy private Bedroom*,13059803,Marie,Queens,Jackson Heights,40.7574,-73.85825,Private room,60,2,2,2019-07-01,2,1,326 +35841291,Large bedroom in super large elevator building,153313824,Jeffrey,Manhattan,Inwood,40.86471,-73.92474,Private room,100,1,0,,,1,365 +35841507,Scandinavian style 1Br with city view,103125301,Jessica,Brooklyn,Williamsburg,40.71043,-73.95963,Entire home/apt,175,30,0,,,1,154 +35842224,Private floor in historic Bed Stuy next to subway,110026,George,Brooklyn,Bedford-Stuyvesant,40.68034,-73.93991,Entire home/apt,87,1,0,,,1,9 +35842254,Santa’s Party House,269606659,Steve,Brooklyn,Bushwick,40.69874,-73.92969,Entire home/apt,150,2,0,,,1,365 +35842268,A Modern Studio in the heart of Midtown West,188338351,Janette,Manhattan,Hell's Kitchen,40.75654,-74.00012,Entire home/apt,177,1,5,2019-06-30,5,1,86 +35842456,"spacious room, subway, LIRR &private parking",26802715,Wu,Queens,Flushing,40.76731,-73.8222,Private room,54,4,0,,,2,68 +35842545,Cozy perfection in the middle of everything,2880794,Brandy,Brooklyn,Park Slope,40.67757,-73.98037,Entire home/apt,115,3,1,2019-07-02,1,1,29 +35842576,"Sunny, quiet 2 BR apt in the heart of Manhattan",200782217,Tara,Manhattan,Chelsea,40.74325,-73.99528,Entire home/apt,223,3,0,,,1,169 +35842999,Clean Quiet 1BR in lovely doorman FiDi building,5339419,Catherine,Manhattan,Financial District,40.71133,-74.00676,Entire home/apt,220,4,0,,,1,6 +35843422,"private room & bathroom, 500 ft away from beach.",5334994,Urmat,Queens,Arverne,40.58921,-73.79967,Private room,75,2,3,2019-06-30,3,1,79 +35843964,Luxury 3 Stops to Times Square,13107477,Henry,Manhattan,Harlem,40.82024,-73.94362,Entire home/apt,125,2,1,2019-07-05,1,1,266 +35844248,LUXURY apartment in the upper east side .,233756380,Andrea,Manhattan,Upper East Side,40.77098,-73.9524,Entire home/apt,115,2,1,2019-06-24,1,1,234 +35844386,Brooklyn.,67302443,Madina,Brooklyn,Crown Heights,40.66603,-73.92925,Shared room,50,1,0,,,1,314 +35844745,Entire apartment 3BDR 2BR,493545,Jennifer,Brooklyn,Crown Heights,40.67398,-73.94669,Entire home/apt,250,1,0,,,2,22 +35845267,"Modern Astoria ""Crib""",269635110,Niko,Queens,Long Island City,40.75527,-73.93125,Entire home/apt,125,2,1,2019-06-23,1,1,346 +35845453,bushwick dream,161467377,Sam,Brooklyn,Bushwick,40.69689,-73.92566,Entire home/apt,189,2,1,2019-06-30,1,1,24 +35845476,Modern & Hip Building - Quiet Room - Elevator!,4239407,Steve,Manhattan,Chinatown,40.71658,-73.99065,Private room,89,2,0,,,2,10 +35846059,★ AMAZING★ TIME SQUARE/ 2 Bedroom 3 Bed APT,266992480,Sam,Manhattan,Hell's Kitchen,40.76558,-73.98855,Entire home/apt,500,1,4,2019-07-06,4,2,2 +35847458,"Spacious, cozy and bright bedroom in Sunset Park",39259484,Clarissa,Brooklyn,Sunset Park,40.64458,-74.02001,Private room,50,2,0,,,1,20 +35847646,south bronx luxury amenities building,269656657,Dev,Bronx,Port Morris,40.80855,-73.92948,Entire home/apt,220,30,0,,,1,180 +35848679,Private Room in Ridgewood 25 mins from Manhattan!!,269664482,Jacqueline,Queens,Ridgewood,40.70774,-73.90929,Private room,60,3,0,,,1,365 +35850605,Convenient Private Master Room Prime Time Square!,2196491,Sophia,Manhattan,Theater District,40.75696,-73.98323,Private room,65,14,0,,,3,85 +35850990,Convenient Private Room in Middle of Times Square!,2196491,Sophia,Manhattan,Theater District,40.75675,-73.98514,Private room,70,14,0,,,3,35 +35855199,Beautiful bedroom in NYC! Minutes to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80143,-73.93916,Private room,80,3,0,,,3,205 +35855969,Stunning bedroom!! Walking to Central Park!!!,130617332,Haley,Manhattan,Harlem,40.81226,-73.94349,Private room,80,3,0,,,3,187 +35856471,GRAND OPENING 3 levels tons of sunlights 25%off,269707834,Angel,Bronx,Wakefield,40.89198,-73.84779,Entire home/apt,309,2,0,,,1,168 +35856599,Awesome private room with queen-size bed,268572259,Sergii,Brooklyn,Bushwick,40.70489,-73.92558,Private room,78,30,0,,,3,325 +35858194,The Foodie Pad,269718824,Ndeye Anta,Manhattan,Harlem,40.81436,-73.95399,Private room,119,3,0,,,1,5 +35859800,Spectacular Sunny 3Br | 2Ba,268612146,Sharon & Henry,Manhattan,Financial District,40.70762,-74.00233,Entire home/apt,600,3,0,,,1,355 +35860327,Dreamy bright Nook,4107600,Valentina,Brooklyn,Bushwick,40.70379,-73.91708,Private room,50,2,0,,,3,77 +35860350,"Cute, Tidy Room in the Best Part of Crown Heights!",37678089,Katie,Brooklyn,Crown Heights,40.67459,-73.9576,Private room,65,1,0,,,1,342 +35860425,Amazing West Village ✌ Location is ♕NYC,269076400,Alex,Manhattan,Greenwich Village,40.73054,-74.00061,Entire home/apt,323,1,5,2019-07-05,5,1,185 +35860626,"Backyard in BK, Modern Reno, Sleeps 6, Walk 2train",53648985,Cristina,Brooklyn,Crown Heights,40.67612,-73.93722,Entire home/apt,300,2,1,2019-07-01,1,1,58 +35862574,2bdrms lrg prime Williamsburg apt in townhouse,269652307,Gabriel,Brooklyn,Williamsburg,40.71325,-73.95874,Entire home/apt,170,1,1,2019-06-28,1,1,77 +35863145,Cozy and Clean entire home,23533897,Fatou,Brooklyn,Crown Heights,40.6758,-73.95091,Entire home/apt,1500,2,0,,,7,267 +35863336,STUNNING SPACIOUS KING SIZE -BEDROOM NEAR COLUMBIA,2542371,Leonidas,Manhattan,Upper West Side,40.79829,-73.97266,Entire home/apt,174,30,0,,,1,1 +35863730,Cozy Private Room in Ditmars Astoria,15678733,Melisa,Queens,Ditmars Steinway,40.77379,-73.91291,Private room,56,4,0,,,1,350 +35864796,Trendy&Fun Family Home|15min to Midtown Manhattan,91926697,Jan,Queens,Long Island City,40.75943,-73.92901,Entire home/apt,350,2,2,2019-07-04,2,1,330 +35864932,Best Location in NYC | 2 Bedroom Gem!,268066785,Yael & Graham,Manhattan,Midtown,40.75549,-73.96938,Entire home/apt,350,3,0,,,1,280 +35865346,Spacious Modern Apt. Near JFK Airport and Trains,269763887,Sharon,Queens,Jamaica,40.68636,-73.78866,Entire home/apt,129,2,3,2019-07-07,3,1,348 +35865788,Brand new 1Bedroom apartment with private terrace,81957246,Kasper,Queens,Long Island City,40.75041,-73.93761,Entire home/apt,175,7,1,2019-06-23,1,1,17 +35866148,Luxury 2 bed in Crown Heights.,267593494,Matthew,Brooklyn,Crown Heights,40.67532,-73.90891,Entire home/apt,150,3,0,,,1,73 +35866165,A Place to stay in Brooklyn,269334919,Mord,Brooklyn,Borough Park,40.63979,-73.98633,Entire home/apt,150,1,2,2019-07-01,2,1,44 +35866719,THE WHITE HOUSE BEDROOM 1,269775225,Dennis,Bronx,Port Morris,40.80146,-73.91673,Private room,125,3,0,,,2,365 +35867138,New Cozy Studio on the UES with Gym and Pool #6127,130270076,Keren,Manhattan,East Harlem,40.78672,-73.9488,Entire home/apt,180,30,0,,,2,341 +35867271,Empire State Building Area,269579151,Freedom,Manhattan,Midtown,40.74801,-73.98592,Entire home/apt,229,3,0,,,1,65 +35867917,"Updated Studio apartment, clean and fresh",158458681,Sadie,Brooklyn,Bushwick,40.69406,-73.9255,Entire home/apt,99,1,5,2019-07-05,5,1,57 +35867923,Room in a lovely loft with waterfront view,258654859,Mailys,Brooklyn,Williamsburg,40.71735,-73.96441,Private room,80,8,1,2019-06-24,1,1,157 +35868549,Brand New 1 Bed in Full Service Building #6125,35098529,David,Manhattan,Kips Bay,40.7441,-73.97683,Entire home/apt,170,30,0,,,5,213 +35868596,LOFTED BED IN CONVERTED FACTORY LOFT NEAR 2 METROS,35606248,Blake And Madia,Brooklyn,Bushwick,40.70301,-73.92552,Private room,63,2,0,,,5,358 +35869234,Sonder | 116 John | Classic 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70852,-74.0051,Entire home/apt,198,29,0,,,327,345 +35869466,Sonder | 116 John | Classic Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70802,-74.00642,Entire home/apt,180,29,0,,,327,338 +35870390,NYC West Village Charming 2 Bedroom APT,269799543,Darlene,Manhattan,West Village,40.73558,-74.00492,Entire home/apt,550,3,0,,,1,353 +35871036,Huge 1 bedroom w/ a backyard near the heart of nyc,226414996,John,Queens,Ditmars Steinway,40.7717,-73.90799,Entire home/apt,90,3,0,,,2,21 +35871317,LOVELY 1 BR APARTMENT IN THE HEART OF GREENPOINT,5564361,Cecile,Brooklyn,Greenpoint,40.73109,-73.95267,Entire home/apt,130,3,1,2019-06-27,1,1,43 +35871510,Sonder | 116 John | Vibrant Studio + Fitness Room,219517861,Sonder (NYC),Manhattan,Financial District,40.70818,-74.00631,Entire home/apt,135,29,0,,,327,339 +35871511,Sonder | 116 John | Vibrant 1BR + Fitness Room,219517861,Sonder (NYC),Manhattan,Financial District,40.70691,-74.00682,Entire home/apt,165,29,0,,,327,342 +35871515,Sonder | 116 John | Stunning 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70772,-74.00673,Entire home/apt,165,29,0,,,327,347 +35871541,Exquisite 3Br 2Ba Gem in UES,268623761,Julia & Todd,Manhattan,Upper East Side,40.76891,-73.95289,Entire home/apt,600,3,0,,,1,357 +35872009,Charming Room 1 with 2 Beds Close to 2 Metros,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95514,Private room,70,2,0,,,3,291 +35872024,"Full size bedroom in a duplex, private garden view",4521174,Caroline,Brooklyn,Crown Heights,40.67032,-73.93957,Private room,65,7,0,,,3,63 +35872972,TOTALLY RENOVATED LARGE APT. MINUTES TO MANHATTAN,269818817,Mark,Queens,Ridgewood,40.70305,-73.89614,Entire home/apt,230,4,0,,,2,142 +35873124,Bright and Spacious Apartment in East Williamsburg,269818165,Michael,Brooklyn,Williamsburg,40.71171,-73.9454,Private room,60,3,0,,,1,0 +35873317,Cozy and beautiful studio near Times Square,269822898,Jenny,Manhattan,Hell's Kitchen,40.76097,-74.00026,Entire home/apt,135,1,1,2019-07-01,1,1,9 +35874052,Cozy room with Queen Bed close to Columbia Uni,41434577,Nino,Manhattan,Morningside Heights,40.80413,-73.96556,Private room,49,30,0,,,1,32 +35874420,HUGE Brick studio apartment SECONDS from subway!,55190776,Josh,Manhattan,Upper East Side,40.78539,-73.95062,Entire home/apt,156,1,0,,,1,7 +35874530,2 Bedroom w/ King Bed in Greenpoint BK,146636596,Lala,Brooklyn,Greenpoint,40.72845,-73.95791,Entire home/apt,300,2,1,2019-06-23,1,1,24 +35874763,Cozy & Modern Chelsea Studio,141760353,Carlos,Manhattan,Chelsea,40.74526,-74.00605,Entire home/apt,269,1,4,2019-07-05,4,1,122 +35874901,JFKQueensComfort. Private Room -Welcome Long Stays,105444832,Angie,Queens,Woodhaven,40.68931,-73.85485,Private room,35,9,0,,,1,246 +35875111,Dikeman comfort,261779182,Torrey,Brooklyn,Red Hook,40.67568,-74.00997,Entire home/apt,125,2,1,2019-06-21,1,2,325 +35875206,3 Bedroom Apartment in Forest Hills. Sleeps 8.,269836191,Gabriel,Queens,Forest Hills,40.73352,-73.84721,Entire home/apt,250,2,0,,,1,160 +35875685,"Harlem Hidden Gem,Clean, Affordable and Convenient",269838822,Asya,Manhattan,Harlem,40.80549,-73.95136,Private room,80,2,0,,,1,352 +35875858,#3 Hotel-Like LOFT Private Room KING Bed Near JFK,263504959,David,Queens,Woodhaven,40.69298,-73.86396,Private room,50,1,6,2019-07-04,6,8,288 +35876030,Cozy 3bdr Brooklyn Home in East Flatbush,269840768,Dionne,Brooklyn,Flatlands,40.62585,-73.9392,Entire home/apt,300,4,0,,,1,163 +35876147,A wonderfull suite in Brooklyn,269342470,Bracha,Brooklyn,Borough Park,40.64116,-73.98589,Entire home/apt,67,1,1,2019-06-27,1,2,48 +35876236,Three Bedroom Apartment Steps from Union Square,269233466,Chris,Manhattan,East Village,40.72936,-73.98298,Entire home/apt,400,3,2,2019-07-07,2,1,336 +35876561,Modern house (2 BR Apt) • 30Mins from Time Square1,76360760,Christopher,Queens,Woodside,40.744,-73.90185,Entire home/apt,169,1,0,,,1,60 +35876621,Modern Cozy Apartment in the heart of Willamsburg,21364757,Shiran,Brooklyn,Williamsburg,40.71775,-73.96211,Entire home/apt,75,2,0,,,1,174 +35876721,Home away from home,269840781,Rosemary,Queens,Maspeth,40.71673,-73.90009,Private room,140,1,0,,,1,88 +35876805,Tropical Bushwick Paradise,269266449,Andrea,Brooklyn,Bushwick,40.70266,-73.91723,Private room,50,7,1,2019-06-28,1,1,310 +35877559,Cozy Private Room Near Fordham University Bronx #5,35783912,Pi & Leo,Bronx,Fordham,40.86249,-73.89234,Private room,39,3,1,2019-07-07,1,8,180 +35877681,Get away Private Bedroom in New York City #6,35783912,Pi & Leo,Bronx,Fordham,40.86427,-73.89215,Private room,39,2,1,2019-07-01,1,8,175 +35877755,Best Memories in ❤️ NYC,269757415,Alex,Manhattan,Hell's Kitchen,40.76516,-73.98817,Entire home/apt,350,1,4,2019-06-29,4,1,164 +35877927,Private apartment in bronx ##2,35783912,Pi & Leo,Bronx,Fordham,40.86294,-73.89242,Entire home/apt,99,2,0,,,8,343 +35878332,Newly Renovated Apartment in a Brooklyn Brownstone,269860794,Amy,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93748,Entire home/apt,275,2,0,,,1,365 +35878473,"Eclectic Love Boat, ""VACILANDA"" Far Rockaway",110721237,Kathryn,Queens,Arverne,40.59549,-73.78857,Entire home/apt,120,1,0,,,1,81 +35878481,"Home Away Home,NextDoor To Subway, Accommodates 10",21261408,Jay,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95936,Entire home/apt,282,1,1,2019-06-25,1,6,342 +35878775,Spread Love its the Brooklyn Way!,269867427,Grace,Brooklyn,Park Slope,40.67567,-73.97683,Entire home/apt,185,1,0,,,1,43 +35878814,"3BR, 1.5 Bath in Bushwick (10 Mins to Manhattan!)",269865501,Adela,Brooklyn,Bushwick,40.69297,-73.92111,Entire home/apt,275,2,0,,,3,360 +35879296,A Harlem Haven,6908132,Alonzo,Manhattan,Harlem,40.80245,-73.9583,Private room,110,1,1,2019-06-30,1,1,157 +35879563,sweet Bushwick spot with backyard,10920759,Jamie,Brooklyn,Bushwick,40.69397,-73.91139,Entire home/apt,90,5,0,,,1,12 +35879684,McCarren Park 3 Bed/2 Bath with private terrace,179237742,R David,Brooklyn,Williamsburg,40.71698,-73.95003,Entire home/apt,299,2,2,2019-06-30,2,1,298 +35880079,Cozy apartment in the heart of Williamsburg,36426894,Vera Lucía,Brooklyn,Williamsburg,40.7142,-73.96161,Private room,75,2,0,,,1,282 +35880571,Enchanting Studio with Amenities,5910667,Edward,Manhattan,Upper West Side,40.78549,-73.97188,Entire home/apt,168,2,0,,,1,46 +35880602,Large Sunlit Private Queen Bed Room Crown Heights,78113383,Sara,Brooklyn,Crown Heights,40.67244,-73.92267,Private room,30,7,0,,,3,44 +35880719,Modern Boho Lux 2 Bed 2 Bath Haven + Quiet Garden,269885851,Sharon,Manhattan,Lower East Side,40.72057,-73.99343,Entire home/apt,495,3,1,2019-07-06,1,1,264 +35880886,*Modern Upper East Side Studio *,74031703,Tanpreet,Manhattan,Upper East Side,40.76868,-73.95166,Entire home/apt,100,1,1,2019-06-20,1,1,134 +35881157,Large Bright Private Queen bedroom Crown Heights!,78113383,Sara,Brooklyn,Crown Heights,40.67305,-73.92279,Private room,30,7,0,,,3,44 +35881328,Cozy room at heart of Astoria ...,45232769,Nadir,Queens,Astoria,40.7668,-73.91917,Private room,79,4,0,,,3,2 +35881347,gorgeous bedroom near Yankee Stadium,263317402,Cynthia Vanessa,Bronx,Concourse Village,40.82964,-73.91833,Private room,53,3,0,,,1,162 +35881797,Luxury Hi-End Brooklyn Brownstone with backyard,269893009,Ek,Brooklyn,Bay Ridge,40.63294,-74.0273,Entire home/apt,595,1,4,2019-07-07,4,1,57 +35882372,"Welcome to the best area of Williamsburg, NY",20536889,Edwin,Brooklyn,Williamsburg,40.71131,-73.96562,Entire home/apt,500,4,0,,,1,358 +35882973,Large studio - Heart of Union Square for 3-5 ppl!,28580275,Sommy,Manhattan,Midtown,40.75795,-73.96567,Entire home/apt,189,1,0,,,4,351 +35883107,Unbeatable & Massive Midtown 3 Bedroom Apt,269215864,Shivam,Manhattan,Hell's Kitchen,40.76405,-73.99004,Entire home/apt,299,4,0,,,1,95 +35883990,Smart Bedroom in Artistic Williamsburg Apartment,89919417,T. & Marnie,Brooklyn,Williamsburg,40.71019,-73.95739,Private room,70,1,1,2019-06-30,1,1,46 +35884220,Luxury apartment in Manhattan midtown!,128175450,Howell,Manhattan,Hell's Kitchen,40.77122,-73.99356,Entire home/apt,350,2,0,,,1,179 +35884299,Waterside Studio,193256713,Katharine,Manhattan,Kips Bay,40.73763,-73.97368,Entire home/apt,80,1,0,,,1,1 +35886159,Ozone Park Tudor Village,269901856,Akm,Queens,Ozone Park,40.67405,-73.85402,Private room,80,15,0,,,1,61 +35891506,THE WHITE HOUSE BEDROOM 2,269775225,Dennis,Bronx,Port Morris,40.80087,-73.91635,Private room,100,3,0,,,2,365 +35892874,3 Bedroom Loft Like Triplex 2.5 Bath with Garden.,269970642,Rita,Manhattan,Harlem,40.80778,-73.94762,Entire home/apt,200,120,0,,,1,365 +35893569,Cozy nest in the East Village,170566147,P,Manhattan,East Village,40.72573,-73.98414,Entire home/apt,180,3,2,2019-07-01,2,1,291 +35896695,Private basement studio with backyard access.,1576926,Michael,Brooklyn,Bedford-Stuyvesant,40.6906,-73.94986,Private room,45,3,1,2019-07-01,1,1,116 +35898307,1 bedroom overlooking STONEWALL - PRIDE WEEKEND.,133372725,Andrew,Manhattan,West Village,40.73421,-74.00321,Entire home/apt,750,1,0,,,1,5 +35898731,#4 Hotel-Like LOFT Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69311,-73.86526,Private room,50,1,4,2019-07-07,4,8,283 +35899414,"Rise & Shine: Home in Ditmas, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.6392,-73.96499,Entire home/apt,75,2,1,2019-06-30,1,2,32 +35899551,"Clean, Elegant luxury and close to everything!",259226302,Karen,Brooklyn,Flatbush,40.63378,-73.95867,Private room,135,3,0,,,1,248 +35899864,Spacious 1 Bedroom Apt in East Williamsburg,132342992,Nicole,Brooklyn,Williamsburg,40.71245,-73.94064,Entire home/apt,150,3,0,,,1,12 +35900132,Prospect ave moments from Yankee Stadium,13221575,Lorie,Bronx,Longwood,40.82519,-73.90101,Entire home/apt,150,1,0,,,1,88 +35900353,Splendid 4Br 2Ba | Steps From Midtown!,268452805,Marsha & Jakob,Manhattan,Kips Bay,40.73985,-73.98074,Entire home/apt,600,3,0,,,1,355 +35900875,Private Bedroom en-suite Bathroom - Manhattan,270029540,Aamir,Manhattan,Harlem,40.81561,-73.94823,Private room,99,1,1,2019-06-30,1,1,256 +35900993,Private Bed n Bath w/ Breakfast and Taxi!,270030033,Anna-Kay,Brooklyn,East Flatbush,40.63971,-73.94377,Private room,85,1,1,2019-07-01,1,1,167 +35901040,Private Cozy Three Bedroom apartment for 8,92493393,Eddie & Lois,Staten Island,West Brighton,40.63207,-74.11406,Entire home/apt,190,1,0,,,5,342 +35901703,LES Living in Bohemian Inspired Studio,7273116,Gwendolyn,Manhattan,Lower East Side,40.72131,-73.98902,Entire home/apt,129,2,0,,,1,15 +35901922,Charming one-bedroom apartment in Williamsburg,29569974,Raphaël,Brooklyn,Williamsburg,40.70558,-73.9418,Entire home/apt,89,2,1,2019-06-20,1,1,266 +35902528,Trendy4BR 2Baths Family Home| 10 min to Midtown,141716782,Nicholas,Queens,Long Island City,40.75283,-73.92504,Private room,375,2,0,,,1,356 +35903152,Cozy studio in the Heart of Bedstuy. Modern design,7074749,Clara,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94776,Entire home/apt,90,14,0,,,1,85 +35903155,Modern Chic 2Br 2Ba | Lux Elevator Building,268856904,Louis,Manhattan,East Village,40.72123,-73.97884,Entire home/apt,450,3,0,,,1,361 +35903262,Luxury 2 bed 2 bath with outdoor space (5D),202757964,Mayan,Brooklyn,Williamsburg,40.71749,-73.96362,Entire home/apt,220,30,0,,,6,211 +35903391,1 Bedroom in a Washington Heights Apartment,129301317,Natalie,Manhattan,Washington Heights,40.84191,-73.93705,Private room,50,2,1,2019-06-30,1,1,26 +35904221,Penthouse duplex 2 BR with private rooftop (7E),202757964,Mayan,Brooklyn,Williamsburg,40.71863,-73.96358,Entire home/apt,220,30,0,,,6,205 +35904308,Cozy NYC room 25min to Times Square,1272625,Noel & Rachel,Queens,Astoria,40.76598,-73.9162,Private room,60,30,0,,,1,43 +35904454,Luxury Penthouse in Union Square / East Village,270057532,Luke,Manhattan,East Village,40.73303,-73.98955,Entire home/apt,225,3,0,,,1,7 +35904939,Queen Room near Flushing and Arthur Ashe Stadium- Breakfast Included,261007573,Adria Hotel & Conference Center,Queens,Bayside,40.76179,-73.76013,Private room,100,1,0,,,2,358 +35906345,beautiful 2 bedroom skylight apt,270072182,Vel,Brooklyn,Crown Heights,40.66711,-73.9375,Entire home/apt,100,7,0,,,1,44 +35907127,Huge 1 Bedroom Apt +balcony,265498730,Tatiana,Manhattan,Hell's Kitchen,40.76212,-73.99771,Entire home/apt,280,3,2,2019-07-01,2,1,341 +35907197,Master Bedroom in Your Cozy Queens Getaway,142871086,Emily,Queens,East Elmhurst,40.75637,-73.89729,Private room,65,1,0,,,1,36 +35907244,Bright Breezy Sleeping Pad NextdoorTo Subway/Pratt,21261408,Jay,Brooklyn,Clinton Hill,40.68853,-73.96089,Shared room,45,1,0,,,6,345 +35907389,Private studio in Crown Heights triplex townhouse,191800,Jose,Brooklyn,Crown Heights,40.67069,-73.94343,Private room,62,3,0,,,1,22 +35907876,Gorgeous 2BR / 2BA & Patio in Prime East Village,269825284,Sam,Manhattan,East Village,40.73085,-73.9837,Entire home/apt,315,5,2,2019-07-03,2,1,249 +35908075,Large 6 bedroom 15 minutes to Manhattan,141742656,Lorenna,Queens,Astoria,40.76614,-73.91371,Entire home/apt,500,2,0,,,1,157 +35909458,Stylish duplex in Midtown East /UN w/ terrace,269845683,Lee,Manhattan,Midtown,40.75304,-73.96658,Entire home/apt,399,3,0,,,1,148 +35909488,"Sunny , spacious, luxury building off Bedford Ave.",28500137,Penelope,Brooklyn,Greenpoint,40.71895,-73.95332,Entire home/apt,164,4,0,,,1,7 +35911322,Dope Yurt in Brooklyn,1648806,Maraliz,Brooklyn,Williamsburg,40.71358,-73.94092,Private room,60,1,0,,,2,173 +35912030,Get Inspired in Soho | 1 Bedroom,18464253,Ravid,Manhattan,NoHo,40.72727,-73.99322,Entire home/apt,180,5,0,,,1,317 +35912059,Luxury 2BR loft near Empire State Building,270054787,Emily,Manhattan,Midtown,40.74904,-73.98312,Entire home/apt,499,3,0,,,1,144 +35912471,King Bay Area,270119171,Val,Brooklyn,Sheepshead Bay,40.5908,-73.94693,Private room,35,2,2,2019-06-30,2,1,250 +35913114,Cozy Budget 2 Bedroom Apt in Times Square,270074042,Kirk,Manhattan,Hell's Kitchen,40.76123,-73.99084,Entire home/apt,229,3,1,2019-07-01,1,1,150 +35913850,Private room for rent,270132300,Rahul,Queens,Flushing,40.74793,-73.81782,Private room,50,7,0,,,1,89 +35914333,"Room near NYU, New School, Union Square, Chelsea",4915341,Son,Manhattan,West Village,40.73691,-73.99715,Private room,79,28,0,,,3,70 +35914591,**Central Park* UWS Luxury 4 Bed/2 Bath Sleeps 8!!,270139900,Norman,Manhattan,Upper West Side,40.78439,-73.97746,Entire home/apt,307,4,0,,,1,344 +35914632,Bright Chelsea Entire 2 Bedroom Apartment,269987340,Nicolas,Manhattan,Chelsea,40.74315,-73.99591,Entire home/apt,225,3,0,,,1,87 +35915030,Lovely North Park Slope Private Garden Apartment,270144441,Carla & Ken,Brooklyn,Park Slope,40.67817,-73.97603,Entire home/apt,145,6,0,,,1,14 +35915753,Sunny huge Apartment,167819022,Nell,Queens,Briarwood,40.71316,-73.81953,Entire home/apt,85,5,1,2019-06-22,1,1,54 +35915754,Prime Williamsburg Apt with Tons of Natural Light,11403548,Lauren,Brooklyn,Williamsburg,40.71422,-73.95697,Entire home/apt,110,2,0,,,1,30 +35916310,Nice house private room,230720704,Pp,Bronx,North Riverdale,40.91234,-73.89417,Private room,40,1,1,2019-06-30,1,3,179 +35916489,Sun-drenched LGBT Cozy Private QueenRoom @Bushwick,135563904,Michael,Queens,Ridgewood,40.7055,-73.9096,Private room,180,1,2,2019-07-01,2,3,78 +35916694,New Sophisticated 4BR/2.5BA NYC Midtown Apt,115180259,Leslie,Manhattan,Murray Hill,40.74865,-73.98158,Entire home/apt,299,3,1,2019-06-29,1,1,187 +35916778,1 Bed Just off the J,15624547,Steve,Brooklyn,Bushwick,40.6929,-73.92643,Private room,60,1,0,,,1,97 +35916821,New Glamorous 4 Bedroom/3 BA Duplex in Murray Hill,118373535,Noah,Manhattan,Murray Hill,40.74839,-73.98087,Entire home/apt,199,3,0,,,1,208 +35916913,New Massive 4BR/3.5BA Townhouse near Park Ave,144813834,Dominic,Manhattan,Upper East Side,40.7609,-73.96147,Entire home/apt,299,3,0,,,1,177 +35920784,Stunning Bedroom in NYC!! Walking to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80321,-73.93781,Private room,80,3,1,2019-07-03,1,3,213 +35921065,Stunning Bedroom NYC!! Walking to Central Park!!,268807394,Dean,Manhattan,East Harlem,40.803,-73.93913,Private room,80,3,2,2019-07-07,2,3,242 +35929061,★ Retreat to a Stylish 4BR in NYC ★,268834081,Frankie,Manhattan,East Harlem,40.78661,-73.94273,Entire home/apt,450,3,0,,,1,358 +35931169,Great Room Great Location Williamsburg,35082637,Ollya,Brooklyn,Williamsburg,40.71655,-73.96416,Shared room,115,3,1,2019-07-02,1,2,66 +35931422,Bed Stuy Brooklyn Room AVail,230230732,Kashoya,Brooklyn,Bedford-Stuyvesant,40.69387,-73.93885,Private room,100,1,0,,,1,87 +35932913,Huge bedroom in Morningside Heights townhouse,73964015,Austin,Manhattan,Harlem,40.80494,-73.95463,Private room,150,1,0,,,1,8 +35933715,"Private, cozy room in Astoria!!!",270277478,Marina,Queens,Long Island City,40.7564,-73.92101,Private room,85,3,0,,,1,250 +35933956,2BR Getaway in Modern Luxury Building,268630107,Justice & Ellie,Manhattan,East Village,40.7206,-73.97913,Entire home/apt,375,3,0,,,1,357 +35934018,Home In Briarwood Queens NYC | Near Subway & JFK,270280544,Meital,Queens,Briarwood,40.70577,-73.81539,Entire home/apt,105,1,4,2019-07-04,4,1,208 +35934191,Luxury apartment in Midtown Manhattan!,8285778,Gaddi,Manhattan,Hell's Kitchen,40.7687,-73.98927,Entire home/apt,179,2,0,,,1,12 +35934279,My Vintage Brooklyn Hideaway (Williamsburg),507966,Colleen,Brooklyn,Williamsburg,40.71606,-73.94367,Entire home/apt,250,5,0,,,1,318 +35934299,Penthouse large 1 BR with huge terrace (7C),202757964,Mayan,Brooklyn,Williamsburg,40.71792,-73.96266,Entire home/apt,195,30,0,,,6,200 +35934686,2BR Midtown Times Square!,269164383,Tristan Mark,Manhattan,Hell's Kitchen,40.76274,-73.99118,Entire home/apt,189,31,0,,,1,237 +35935010,Penthouse duplex with 2 balconies! (7D),202757964,Mayan,Brooklyn,Williamsburg,40.71936,-73.96436,Entire home/apt,195,30,0,,,6,239 +35935104,Cozy Central Park West Residence,270284621,Kate,Manhattan,Upper West Side,40.77485,-73.97827,Entire home/apt,150,4,0,,,1,63 +35935180,Room with Two Beds near Flushing and Arthur Ashe Stadium-Breakfast Included!,261007573,Adria Hotel & Conference Center,Queens,Bayside,40.76321,-73.7608,Private room,100,1,0,,,2,351 +35935675,Spacious Room w/Kitchen in Prime Manhattan,436365,Jessica M.,Manhattan,Upper East Side,40.76924,-73.95323,Private room,100,3,0,,,3,37 +35935711,Spacious room near Bed- Stuy,270293762,Ruben,Brooklyn,Bedford-Stuyvesant,40.68789,-73.95596,Private room,55,1,0,,,1,312 +35936418,Sonder | 116 John | Polished Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.7084,-74.00518,Entire home/apt,699,29,0,,,327,327 +35936469,Livingroom near Columbia University in Manhattan,224900105,文清,Manhattan,Harlem,40.81908,-73.95718,Shared room,30,7,0,,,1,83 +35936654,True 1-Bedroom in Waterfront Luxury Building,9618786,Natalia,Brooklyn,Williamsburg,40.72003,-73.96242,Entire home/apt,350,4,0,,,1,9 +35936791,Amazing Apartment in Upper East near Guggenheim,270301946,Carlos,Manhattan,Upper East Side,40.77961,-73.95181,Entire home/apt,230,3,0,,,1,324 +35937183,Cozy 2Bd apartment in Little Italy New York,270306505,Sonia,Manhattan,Little Italy,40.71717,-73.99817,Entire home/apt,350,4,0,,,1,334 +35937316,Private Room in heart of East Village,7109410,Bobby & Ana,Manhattan,East Village,40.72653,-73.97949,Private room,100,1,0,,,1,188 +35937388,Cat Lover's Room in Bushwick w/Queen Bed,268135013,Noel,Brooklyn,Bushwick,40.69627,-73.92705,Private room,49,1,1,2019-07-01,1,6,7 +35937891,Sonder | 116 John | Simple Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70707,-74.00557,Entire home/apt,699,29,0,,,327,341 +35938183,"Immaculate, Grand, Clean Apartment Near the Subway",270314733,H.,Brooklyn,Crown Heights,40.67268,-73.94895,Entire home/apt,190,2,0,,,1,128 +35938640,The Moses Suite 2,270314994,Nicole/Jason,Brooklyn,Canarsie,40.64078,-73.90575,Entire home/apt,110,2,1,2019-07-01,1,1,360 +35939197,"Rooms in the new hipster area of Brooklyn, NYC 3",266998393,Hector,Brooklyn,Bushwick,40.69427,-73.91995,Private room,30,3,0,,,3,100 +35939513,★NYC Place with Private Garden★sleep 4★,270077888,Jane,Brooklyn,Bushwick,40.69266,-73.92684,Private room,99,3,3,2019-07-03,3,2,17 +35939585,舒适的带空调单间,270327975,文静,Manhattan,Morningside Heights,40.80701,-73.96619,Private room,63,10,0,,,2,83 +35939805,Chill & Cozy bedroom in the heart of Brooklyn.,104423008,Mimi & Elen,Brooklyn,Bedford-Stuyvesant,40.68715,-73.94232,Private room,45,2,1,2019-06-29,1,1,6 +35940079,House of Monkey playful space for kids and family,65591,Lalo,Brooklyn,Williamsburg,40.71199,-73.96479,Entire home/apt,220,4,1,2019-06-23,1,1,25 +35940153,Cute modern one bedroom apartment near Gramercy,269762668,Ekaterina,Manhattan,Kips Bay,40.73853,-73.97982,Entire home/apt,179,5,0,,,1,236 +35941038,Times Square modern and contemporary studio,269837702,Андрей,Manhattan,Theater District,40.761,-73.98217,Entire home/apt,249,5,0,,,1,117 +35941134,Comfortable Living Space,270340525,Marcelia,Brooklyn,East New York,40.66548,-73.86935,Private room,60,1,1,2019-06-24,1,1,361 +35941376,舒适的阳光朝南单间-与哥大咫尺之遥,270327975,文静,Manhattan,Morningside Heights,40.80498,-73.9664,Private room,250,1,0,,,2,17 +35941870,Modern abode in Bedsty BK,120551798,Dacia,Brooklyn,Bedford-Stuyvesant,40.68975,-73.92598,Entire home/apt,200,2,0,,,1,71 +35941974,Unheard real 2 bedrooms apartment on Park avenue,269822492,Оксана,Manhattan,Midtown,40.74497,-73.9844,Entire home/apt,290,7,0,,,1,199 +35942603,"Trip to NYC, US OPEN, Comfort, Clean and Close all",201667999,Lily2R,Queens,Elmhurst,40.7391,-73.86944,Entire home/apt,88,1,0,,,2,50 +35943320,Lovely 2 bed 2 bath home - Upper East Side,270358676,Michael,Manhattan,Upper East Side,40.7789,-73.95554,Entire home/apt,199,4,1,2019-07-02,1,1,314 +35943489,Prime Nolita/Soho/Little Italy studio apt,23495753,Teresa,Manhattan,Little Italy,40.71807,-73.99843,Entire home/apt,125,3,0,,,1,11 +35943602,$79.00 per night in the safest neighborhood in NYC,267710728,James,Bronx,Pelham Gardens,40.86143,-73.84556,Entire home/apt,79,2,2,2019-07-06,2,2,169 +35943648,Spacious 6BR in Bushwick (10 Mins to Manhattan!),269865501,Adela,Brooklyn,Bushwick,40.69445,-73.92235,Entire home/apt,550,2,0,,,3,354 +35943649,SoHa Bliss - Central Park North 2 Bed / 1 Bath,270288786,Aidas,Manhattan,Harlem,40.79965,-73.95157,Entire home/apt,300,3,2,2019-07-01,2,1,349 +35944364,E Z Living In Harlem 2,244536777,Chester,Manhattan,Harlem,40.81615,-73.94359,Entire home/apt,225,3,0,,,2,170 +35944768,nO placE likE iT-2 Beds & Loft Room @McCarren Park,113583961,Alina,Brooklyn,Greenpoint,40.71982,-73.94742,Entire home/apt,260,2,1,2019-06-30,1,1,245 +35944866,Sweet Sunny Apt in prime Park Slope Location,270372514,Jo-Ann,Brooklyn,Park Slope,40.67441,-73.98258,Entire home/apt,185,3,1,2019-06-29,1,1,117 +35944908,3BR Duplex in Bushwick (10 Minutes to Manhattan!),269865501,Adela,Brooklyn,Bushwick,40.69457,-73.92109,Entire home/apt,280,2,0,,,3,356 +35945025,"LGBTQIA+ friendly 2 br in queer, artsy Bushwick",13750109,Michael,Brooklyn,Bushwick,40.70281,-73.93188,Entire home/apt,249,2,1,2019-07-01,1,1,17 +35945192,Very cozy private bedroom The heart of Astoria,270374596,Loubna,Queens,Astoria,40.76591,-73.90934,Private room,90,3,0,,,1,78 +35945228,Affordable Private Room in the Heart of Harlem NYC,268896283,Khady,Manhattan,Harlem,40.81524,-73.94168,Private room,47,1,0,,,2,115 +35945256,Penn House~~~~5 mins from JFK,269113892,Penn,Queens,Jamaica,40.68248,-73.79417,Entire home/apt,128,1,5,2019-07-01,5,1,176 +35945823,PLUSH RENOVATED APARTMENT CLOSE TO MANHATTAN!,269818817,Mark,Queens,Ridgewood,40.7032,-73.89571,Entire home/apt,220,4,2,2019-07-08,2,2,146 +35945859,纽约的家,98455047,Jessica,Queens,Bay Terrace,40.77415,-73.79218,Entire home/apt,258,1,0,,,1,362 +35945923,Cozy Private Studio in Queens New York,19407201,Freddy,Queens,East Elmhurst,40.75971,-73.86607,Entire home/apt,90,2,2,2019-07-04,2,1,135 +35946646,Stunning Private Room in Heart of NYC with Jacuzzi,270096906,Marcos,Manhattan,Kips Bay,40.74316,-73.98038,Private room,400,2,0,,,1,365 +35946652,Calming Place,264862581,Dianne,Queens,Rosedale,40.68263,-73.72597,Private room,79,1,3,2019-07-01,3,3,89 +35946773,中央公园旁的单间,270382544,Maggie,Manhattan,Upper West Side,40.80158,-73.96182,Private room,100,1,1,2019-06-27,1,1,1 +35946932,Very Clean Private Room Near Buses & Restaurants!!,118405437,PengYu,Queens,Woodhaven,40.69405,-73.86693,Private room,66,2,2,2019-07-05,2,2,364 +35947579,Urban Oasis w/3br in the Middle of Manhattan,128898379,Davis,Manhattan,Midtown,40.75736,-73.96665,Entire home/apt,425,5,0,,,1,40 +35947912,Comfortable 3 bedroom in Heart of Manhattan,135718152,Danny,Manhattan,Midtown,40.75827,-73.97092,Entire home/apt,425,3,0,,,1,24 +35948011,"Classic, Urban with a splash of Glam! Near Metro",269165235,Jessie,Manhattan,East Village,40.72546,-73.98703,Entire home/apt,235,3,1,2019-06-29,1,1,326 +35948933,"Lovely Private Room, 5 mins to Yankee Stadium!",270414511,Christopher,Manhattan,Washington Heights,40.83325,-73.94034,Private room,84,1,0,,,1,39 +35948934,Fully Furnished Studio Apartment Midtown East,270414459,Kevin,Manhattan,Midtown,40.75836,-73.96289,Entire home/apt,135,30,0,,,1,99 +35949012,Modern apartment - 5mins walk to Grand Central,164692592,Nuoya,Manhattan,Midtown,40.75205,-73.97076,Private room,100,1,1,2019-06-27,1,1,1 +35954294,"5 Star Modern Hotel, With Beautiful Midtown Views!",166195455,Charles,Manhattan,Murray Hill,40.74864,-73.971,Entire home/apt,346,1,0,,,1,364 +35954804,Luxury private bed and huge bath With amenities !,270456105,Emily,Brooklyn,Williamsburg,40.71711,-73.94804,Private room,80,3,0,,,1,351 +35957263,Perfect apartments for living in❤️Manhattan,270119750,Alex,Manhattan,Midtown,40.75655,-73.96552,Entire home/apt,200,30,0,,,1,155 +35958528,East Harlem Studio Sleeps 3,56731026,Danyelle,Manhattan,Harlem,40.81709,-73.93866,Entire home/apt,125,1,0,,,1,69 +35960702,Marvelous Studio Available 5mins from Times SQ NY!,247335568,Evelyn,Queens,Long Island City,40.74753,-73.94054,Entire home/apt,170,3,0,,,7,16 +35961207,Bright Row House with Garden by Prospect Park,7487973,Rachel,Brooklyn,South Slope,40.66076,-73.98475,Entire home/apt,125,2,2,2019-07-07,2,1,9 +35962449,Budget Friendly Private Room with NYC Locals,81763793,Danae And Mike,Manhattan,East Harlem,40.79752,-73.93287,Private room,65,3,0,,,1,173 +35962668,Private Townhome in Midtown East near UN,270294045,Christian,Manhattan,Midtown,40.7542,-73.96815,Entire home/apt,1600,3,0,,,1,365 +35962803,Best Looking Townhouse in Brooklyn-GQ Magazine,5099333,Robert,Brooklyn,Fort Greene,40.68893,-73.97016,Entire home/apt,800,3,0,,,1,37 +35963599,SMH's Abode,26127333,Angie,Manhattan,Hell's Kitchen,40.76125,-73.99506,Entire home/apt,200,3,1,2019-06-23,1,1,39 +35963736,BedStuy/Clinton Hill 2-Story Apt 1 Block to Subway,33814070,Carolyn,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95449,Entire home/apt,100,11,0,,,1,25 +35965362,Stunning 2 Bed 15 min from Midtown w/ Backyard,269599664,Linda,Queens,Astoria,40.75741,-73.91665,Entire home/apt,250,2,0,,,1,354 +35965985,My comfy space,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.68708,-73.94657,Entire home/apt,44,1,0,,,3,179 +35966154,Only August. 14 ft Ceiling Loft in Williamsburg.,30671432,Susana,Brooklyn,Williamsburg,40.70986,-73.95125,Entire home/apt,112,31,0,,,1,195 +35966653,"Bright, contemporary and best location",24232061,Tracy,Manhattan,Upper East Side,40.77297,-73.9553,Private room,122,10,0,,,3,306 +35966672,Iconic Tribeca Loft,87007791,Dion,Manhattan,Tribeca,40.71878,-74.00491,Entire home/apt,380,5,0,,,1,73 +35966895,Gorgeous Harlem Hideout | Close to Everything,103503018,Carlos,Manhattan,Harlem,40.83029,-73.94191,Private room,60,1,3,2019-07-06,3,2,49 +35967057,Williamsburg loft less than one block from L,80901802,Samuel,Brooklyn,Williamsburg,40.71335,-73.94453,Private room,90,1,0,,,1,179 +35967094,"Rise & Shine: Treetop Apartment, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.63926,-73.96416,Entire home/apt,100,2,0,,,2,71 +35967171,Private Room in Luxury Apt Building - NYC,19445589,Nicole,Manhattan,Hell's Kitchen,40.75707,-73.99764,Private room,225,2,0,,,1,20 +35967222,Spacious 1BR Flat near King’s Theatre,9872248,Shanna,Brooklyn,Flatbush,40.63415,-73.95208,Entire home/apt,120,4,0,,,1,65 +35967471,"Beautiful, spacious apartment in great location",22658749,Ari,Manhattan,East Harlem,40.80505,-73.93964,Private room,95,1,1,2019-07-01,1,1,8 +35968049,Single Room on the Upper West Side,16486125,Hj,Manhattan,Upper West Side,40.79906,-73.96517,Private room,60,1,0,,,1,7 +35968392,"50% off! Trendy Wburg, private yard",3360618,Tc,Brooklyn,Williamsburg,40.71186,-73.9399,Private room,59,2,2,2019-07-01,2,3,74 +35968862,Noho Modern 2 +2 Living,19433714,Jeff,Manhattan,Greenwich Village,40.72782,-73.99759,Entire home/apt,420,4,0,,,3,22 +35968923,Spacious and Modern Hideout | Close to Everything,103503018,Carlos,Manhattan,Harlem,40.82856,-73.94021,Private room,60,1,2,2019-06-27,2,2,33 +35969545,Townhouse Apt. w/Backyard-20 min train to City!,7660014,Vanessa,Brooklyn,Bedford-Stuyvesant,40.6825,-73.91596,Entire home/apt,150,1,3,2019-06-28,3,1,228 +35969818,Newly Renovated Bright Studio In the East Village,2795371,Natalia,Manhattan,East Village,40.72715,-73.98327,Entire home/apt,140,10,0,,,2,264 +35970385,Williamsburg Domino Park Prime Location 2 bedroom,11612418,Yulia,Brooklyn,Williamsburg,40.71812,-73.96404,Entire home/apt,285,7,0,,,1,6 +35970386,Brooklyn 3BD family oasis w/ walk to Prospect Park,4336488,Francesca,Brooklyn,Prospect-Lefferts Gardens,40.66365,-73.94611,Entire home/apt,135,3,0,,,1,9 +35970902,Stunning High Ceiling 2 Bedroom Apt!,145210031,Jesus,Brooklyn,Bushwick,40.69965,-73.92837,Entire home/apt,199,6,0,,,1,85 +35971141,2 Twin Beds Room,261187437,Shasha,Brooklyn,Borough Park,40.63314,-74.006,Private room,69,1,0,,,6,365 +35971244,Cobble Hill 2 Bedroom Garden Apartment Near Subway,76783729,Danny,Brooklyn,Cobble Hill,40.68732,-73.99096,Entire home/apt,289,30,0,,,1,105 +35971401,Spread Love it's the Brooklyn Way x 2,40846857,Kaylin,Brooklyn,Crown Heights,40.67327,-73.94951,Private room,70,4,0,,,2,17 +35971673,Quiet Bedroom in Modern Chelsea Apartment,261627898,Brett,Manhattan,Chelsea,40.74755,-74.00394,Private room,105,1,1,2019-06-25,1,2,31 +35971792,Newly Renovated Bright Studio In The East Village,2795371,Natalia,Manhattan,East Village,40.72878,-73.98478,Entire home/apt,129,20,0,,,2,180 +35971885,Private Room + Outdoor Space in Modern Chelsea Apt,261627898,Brett,Manhattan,Chelsea,40.74672,-74.00431,Private room,105,1,2,2019-07-06,2,2,31 +35972171,Vibrant Private Room in Greenwich Village,50724816,Glenn,Manhattan,Greenwich Village,40.72902,-74.00152,Private room,116,1,0,,,1,105 +35972361,Top Floor Fort Greene Park Manhattan Views!,270592883,Zori,Brooklyn,Fort Greene,40.688,-73.97008,Entire home/apt,199,2,1,2019-07-07,1,1,68 +35972538,3bedroom First Floor apt in prime Williamsburg,3068092,Marc,Brooklyn,Williamsburg,40.71449,-73.9569,Entire home/apt,196,1,0,,,1,95 +35972633,New Boutique Sunny Luxury Williamsburg Condo,269112262,Sam,Brooklyn,Williamsburg,40.71443,-73.9527,Entire home/apt,175,2,0,,,1,81 +35972860,Brooklyn family apartment,16056444,Charlotte,Brooklyn,Greenpoint,40.72229,-73.94846,Entire home/apt,128,30,0,,,1,312 +35973248,★Large Full Floor Apartment in Heart of Times Sqr★,269854098,Bledar,Manhattan,Hell's Kitchen,40.76246,-73.99193,Entire home/apt,250,2,0,,,1,32 +35973556,Beautiful Aptin heart of williamsburg .Sleeps 4,268815831,Andres,Brooklyn,Williamsburg,40.71109,-73.96191,Entire home/apt,100,2,1,2019-06-30,1,1,296 +35974123,Downtown NYC - Across From the Freedom Tower!,73986440,Daniel,Manhattan,Financial District,40.71047,-74.00761,Entire home/apt,150,30,1,2019-07-03,1,1,53 +35974526,A Private Room in a Unique Apartment in Bushwick!,133138724,Stephanie,Brooklyn,Bushwick,40.68726,-73.91421,Private room,60,1,0,,,1,179 +35975000,"2beds Room steps to LGA, CitiField, JFK Manhattan",217463199,Marvy,Queens,Flushing,40.74345,-73.82721,Private room,80,3,0,,,4,358 +35975257,Spacious & clean room 25 minutes from Manhattan,31044879,Ara,Queens,Sunnyside,40.73681,-73.92024,Private room,80,2,2,2019-07-01,2,2,188 +35975325,"50% off! Futon, yard access, trendy wburg",3360618,Tc,Brooklyn,Williamsburg,40.71246,-73.94014,Private room,57,2,1,2019-07-01,1,3,16 +35975528,"50% off! Sliding door yard access, trendy wburg",3360618,Tc,Brooklyn,Williamsburg,40.71329,-73.93993,Private room,59,2,2,2019-07-04,2,3,15 +35975589,Huge room on the Upper West Side!!!,270631254,Peter,Manhattan,Upper West Side,40.799,-73.97012,Private room,130,2,0,,,1,71 +35977480,The Empress den,270651073,Nazesta,Queens,Edgemere,40.5954,-73.7764,Private room,50,3,0,,,1,363 +35978071,Urban Heaven in the City! Near Yankee Stdm/Harlem,30873670,Jay,Bronx,Longwood,40.82101,-73.90919,Entire home/apt,75,3,0,,,1,0 +35984474,Perfect Weekend Stay,229739739,John,Brooklyn,Flatbush,40.64726,-73.95455,Private room,85,14,0,,,2,176 +35985735,One Bedroom Oasis in the Heart of Brooklyn,70538107,Claire,Brooklyn,Bushwick,40.68834,-73.90714,Private room,45,1,0,,,1,16 +35985851,PERFECT CHIC DOWNTOWN APARTMENT,11306615,Matt,Manhattan,Chinatown,40.71767,-73.9997,Entire home/apt,350,2,0,,,2,12 +35986504,Private Comfortable Room near Subway,164648188,Sonia,Brooklyn,East New York,40.67595,-73.87964,Private room,50,3,0,,,2,23 +35988369,"Spacious, light studio in heart of Alphabet City",6230673,Malin,Manhattan,East Village,40.72304,-73.9791,Entire home/apt,119,12,0,,,1,247 +35989097,Large Cozy Newly Renovated 1 Bedroom Private Apt,200927536,Manu,Brooklyn,Bushwick,40.70517,-73.91703,Entire home/apt,120,2,0,,,3,155 +35989395,"Greatest view in nyc , biggest room also!",189081814,Shenav,Manhattan,Kips Bay,40.74476,-73.97622,Private room,200,1,0,,,1,89 +35990312,3 Bed Astoria Dream By N/W Train | Street Parking,253839975,J,Queens,Ditmars Steinway,40.77674,-73.91031,Entire home/apt,190,4,0,,,1,152 +35991170,"Heart of NYC! - Large, Spacious, Bright 1 Bedroom!",1386697,Andreas,Manhattan,Midtown,40.75913,-73.96487,Entire home/apt,133,30,0,,,1,246 +35991399,Half rental fee the first month in Brooklyn!,89264510,Xueming,Brooklyn,Bushwick,40.69399,-73.92609,Private room,50,1,1,2019-06-30,1,1,365 +35991548,Serenity,266981597,Loves,Brooklyn,Flatbush,40.65087,-73.95566,Entire home/apt,123,1,0,,,1,365 +35991606,CHARMING THREE BEDROOM APARTMENT IN MANHATTAN,270578453,Alvin,Manhattan,Washington Heights,40.84154,-73.93766,Entire home/apt,260,5,0,,,1,260 +35991985,Penthouse Lofts + Private Terrace!,270590027,Amanda,Brooklyn,Williamsburg,40.70907,-73.95054,Entire home/apt,599,2,1,2019-07-05,1,1,346 +35992301,Waterfront 1 BR 2 Bath w/ Pool Prime Williamsburg,1325958,Blake,Brooklyn,Williamsburg,40.72013,-73.96299,Entire home/apt,300,14,0,,,1,38 +35992337,Private 1 bedroom studio bed and breakfast,145140746,Regina,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9277,Private room,250,2,0,,,1,350 +35992447,"Amazing Bedroom , two stops from Times Square! LIC",218986739,Mary,Queens,Long Island City,40.74586,-73.94553,Private room,79,2,0,,,2,279 +35994335,Riverside Drive Apartment,59181407,Pierre-Marc,Manhattan,Washington Heights,40.83573,-73.94895,Entire home/apt,129,31,0,,,1,306 +35994356,River views in the heart of NYC,9790846,Katie,Manhattan,Murray Hill,40.74686,-73.97361,Private room,185,1,0,,,1,310 +35994980,Beautiful Bedroom steps away from Central Park,270790446,Aaron,Manhattan,East Harlem,40.79584,-73.94747,Private room,75,5,1,2019-06-25,1,1,291 +35995074,Amazing*Quiet*Sunny*Bedroom*PrivateLivingRm*Charm*,4128829,Sara,Queens,Ditmars Steinway,40.77292,-73.90101,Private room,62,9,0,,,2,365 +35995089,Private Cozy Room near Subway,164648188,Sonia,Brooklyn,East New York,40.67407,-73.88179,Private room,49,3,0,,,2,23 +35995460,"Comfortable place to stay, downtown Manhattan, NYC",33205064,Patrick,Manhattan,Financial District,40.70372,-74.01002,Shared room,65,1,0,,,1,357 +35996222,Stylish 2 Beds Apartment with Private Parking,270796745,Sonia,Bronx,Allerton,40.86886,-73.84915,Entire home/apt,140,2,1,2019-06-30,1,1,175 +35997412,"Bright, airy & cute Single Bedroom in Williamsburg",1857457,Sarah,Brooklyn,Williamsburg,40.7137,-73.94331,Entire home/apt,180,2,0,,,1,6 +35998183,Sunny 1 Bedroom in Historic Lower East Side,70682660,Andi,Manhattan,Lower East Side,40.72037,-73.9872,Entire home/apt,143,4,0,,,1,343 +35998302,Sunny and Spacious room near CUMC,269078124,铀 Yuli,Manhattan,Washington Heights,40.84251,-73.94105,Private room,52,1,0,,,3,33 +35998402,Comfy room near Columbia Uni medical school,269078124,铀 Yuli,Manhattan,Washington Heights,40.84288,-73.94201,Private room,54,1,0,,,3,6 +35998467,Private room like studio in shared APT,269078124,铀 Yuli,Manhattan,Washington Heights,40.84365,-73.94069,Private room,60,20,0,,,3,180 +35998531,Beautiful Sheepshead Bay experience.,9484127,Ken,Brooklyn,Sheepshead Bay,40.58387,-73.93957,Entire home/apt,300,3,0,,,1,364 +35999182,Comfortable room in Brooklyn 30 min to Manhattan,270823235,Matias,Brooklyn,Flatbush,40.65168,-73.96269,Private room,50,2,3,2019-07-07,3,1,3 +35999335,Cozy private bedroom in Chinatown/Lower East Side,60441049,Kelly,Manhattan,Chinatown,40.71409,-73.99427,Private room,71,1,0,,,1,259 +35999509,Amazing One Bedroom near Times Square,270829995,Ashley,Manhattan,Murray Hill,40.74811,-73.97718,Entire home/apt,168,3,0,,,1,341 +35999656,Cosy LES Apartment,270829432,Andrea,Manhattan,East Village,40.72309,-73.98519,Entire home/apt,195,1,0,,,1,25 +35999735,Bedroom in Astoria 20min to Manhattan,259683021,Jucimara,Queens,Astoria,40.77441,-73.93641,Private room,50,2,1,2019-07-06,1,1,1 +36000224,Brand New Hamilton Heights Apartment,38576999,Maureen,Manhattan,Harlem,40.82806,-73.94537,Private room,50,20,0,,,1,42 +36000376,★★ 4Br 2Ba Getaway in Chelsea ★★,268449136,Alexandra & William,Manhattan,Chelsea,40.74263,-74.00234,Entire home/apt,800,3,1,2019-07-01,1,1,345 +36000864,Grand and Bright Home in Historic Park Slope,185212,Marc,Brooklyn,Park Slope,40.67091,-73.97479,Entire home/apt,168,5,0,,,1,23 +36000993,SHANGRI-LUZ: Urban Oasis,50224626,Luz,Queens,Ridgewood,40.70491,-73.91024,Private room,45,2,1,2019-07-07,1,1,133 +36001142,Clinton Hill CrashPad Near Subway/Citibike/Pratt,21261408,Jay,Brooklyn,Clinton Hill,40.68783,-73.96061,Shared room,40,1,3,2019-07-06,3,6,350 +36001307,1 Large Apartment in Williamsburg,270845109,Sarah,Brooklyn,Williamsburg,40.71336,-73.95865,Entire home/apt,150,5,1,2019-06-28,1,1,327 +36001548,Home Away From Home in the Bronx,270852954,Jasmine,Bronx,Westchester Square,40.83671,-73.84677,Private room,75,1,0,,,1,363 +36001552,NYC Traveler’s dream,197551920,Mehek,Manhattan,Theater District,40.76122,-73.98655,Private room,70,1,2,2019-07-07,2,1,39 +36001911,Spectacular Views of NYC - 54th Floor Corner Apt,89394733,Alan And Beckie,Manhattan,Chelsea,40.75003,-74.01455,Entire home/apt,250,90,0,,,1,244 +36001938,Spacious 2BR Manhattan/NYC apt. Mins. to time sq.,55711801,Le,Manhattan,Harlem,40.82297,-73.94882,Entire home/apt,139,1,0,,,1,29 +36002044,Comfortable luxury apartment with Manhattan views,24266846,Jurgen,Brooklyn,Williamsburg,40.71329,-73.9653,Entire home/apt,345,6,0,,,1,22 +36002325,Modern and Charming Greenpoint by the Park,185352365,Megan,Brooklyn,Greenpoint,40.72214,-73.94566,Entire home/apt,220,2,0,,,1,12 +36002707,"Unique 4bed/2Bath Place Close to Subway, Food&MORE",258091747,Vilma Mathew,Manhattan,Upper West Side,40.79577,-73.97377,Entire home/apt,399,4,0,,,1,248 +36002857,Soho Comfort,91111113,Javier,Manhattan,SoHo,40.72236,-74.00255,Entire home/apt,125,3,1,2019-07-03,1,1,77 +36003288,Apartment in Kensington area of Brooklyn,161196794,Pearl,Brooklyn,Kensington,40.64126,-73.97797,Entire home/apt,169,1,2,2019-06-30,2,1,53 +36003336,Gorgeous Views in a Shared Space,43726295,Ess,Manhattan,Financial District,40.70815,-74.00619,Shared room,105,6,0,,,1,87 +36003858,★Premier Queen Room with Balcony ★,270874051,Hotel Vetiver,Queens,Long Island City,40.75436,-73.93483,Private room,99,1,0,,,8,319 +36004196,24+Day Stay:1000 sq Bsmt Apartment Great Living,270878146,Pachito,Queens,Maspeth,40.72205,-73.91024,Entire home/apt,70,24,0,,,1,52 +36004542,Cosy Bedroom in the Heart of Manhattan,30461045,Dayana,Manhattan,Midtown,40.76384,-73.98248,Private room,125,1,6,2019-07-01,6,1,142 +36004612,637 Hawthorne Street,270871567,Veronica,Brooklyn,East Flatbush,40.65855,-73.93794,Entire home/apt,150,5,0,,,1,365 +36004912,"Cozy ,quiet with lots of attractions near by",85518583,Matany,Brooklyn,Williamsburg,40.7191,-73.95685,Entire home/apt,151,14,0,,,1,25 +36006640,Bright and Cozy Room - Renovated Williamsburg Apt,22883314,Tzvetomir,Brooklyn,Williamsburg,40.71073,-73.96208,Private room,80,2,2,2019-07-01,2,1,42 +36006715,Room in cozy Brooklyn apartment,1639684,Tyler,Brooklyn,Williamsburg,40.70757,-73.94247,Private room,49,5,0,,,1,4 +36007006,Centrally Located 1BDR With Furnished Patio,270906714,Jennifer,Manhattan,Hell's Kitchen,40.75654,-73.99173,Entire home/apt,320,3,0,,,1,341 +36008082,"Luxury Spacious Cityview Studio, Lots of Sunshine!",82650642,Praise,Queens,Long Island City,40.74818,-73.94123,Entire home/apt,116,90,0,,,1,131 +36018376,Beautiful Rooftop Home -Upper East Side -,39021367,Christelle,Manhattan,Upper East Side,40.77097,-73.95245,Entire home/apt,149,6,0,,,1,82 +36018750,Spacious private room - minutes to Manhattan train,22534862,Christina,Queens,Rego Park,40.72364,-73.85605,Private room,100,1,0,,,1,341 +36019067,Cozy Sunlit Brooklyn Apt (GREEN ROOM),119051571,Sou,Brooklyn,Bedford-Stuyvesant,40.69346,-73.96064,Private room,90,1,1,2019-06-29,1,2,321 +36019688,"Good Bedroom close to the Subways L,J,A,C and Z",175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68058,-73.90702,Private room,60,1,0,,,6,152 +36021253,Bushwicks Finest!! Enjoy a long weekend or week!!!,181075211,Mario,Brooklyn,Bedford-Stuyvesant,40.69107,-73.92638,Private room,56,2,1,2019-07-05,1,1,179 +36022650,Charming entire apartment in Hell's Kitchen,2967377,Aude,Manhattan,Hell's Kitchen,40.76279,-73.99463,Entire home/apt,15,2,0,,,1,139 +36023315,Be our guest!,40188920,Robin,Queens,Maspeth,40.72201,-73.90822,Private room,40,1,0,,,1,82 +36023925,Cozy and Renovated Private Studio,44355774,Marco,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.96156,Entire home/apt,82,14,0,,,1,30 +36024736,Trendy and Modern Apartment in New York City,221213143,David,Manhattan,Kips Bay,40.74164,-73.982,Entire home/apt,350,1,0,,,9,337 +36024957,New Spacious 3BR/1BA Apt mins to Columbia University,221201482,Ron,Manhattan,Harlem,40.80927,-73.9472,Entire home/apt,99,2,0,,,1,189 +36025215,Gorgeous sunny room in fabulous Brooklyn duplex,3103656,Laurel,Brooklyn,Bushwick,40.69184,-73.90924,Private room,99,3,0,,,2,150 +36025515,Private Spacious Artist’s Bedroom In Manhattan,271029539,Dominique,Manhattan,Harlem,40.82165,-73.95423,Private room,48,1,1,2019-07-06,1,4,128 +36025798,Beautiful and light-filled Park Slope studio,23384343,Chloe,Brooklyn,Park Slope,40.68258,-73.97771,Entire home/apt,100,5,0,,,1,8 +36025938,Cute & Clean Chinatown 1 bedroom!,271030049,Joy,Manhattan,Chinatown,40.71554,-73.9982,Entire home/apt,146,4,0,,,1,36 +36025970,LUXRY SPACE IN WILLIAMSBURG - 10 MIN TO CITY,270881069,Java,Brooklyn,Williamsburg,40.71797,-73.94948,Private room,150,3,0,,,1,344 +36026259,1 bdr in heart of Harlem,6150742,Anna,Manhattan,Harlem,40.81761,-73.94434,Private room,80,1,1,2019-07-07,1,1,86 +36026771,A cute guest unit in Brooklyn,270309212,Abe,Brooklyn,Borough Park,40.64137,-73.98654,Entire home/apt,67,1,1,2019-07-02,1,1,49 +36027346,Live in style @ the BEST LOCATION in MANHATTAN,10117927,Noa,Manhattan,Gramercy,40.73708,-73.98826,Entire home/apt,180,3,0,,,1,4 +36027436,Comfortable 2 bedroom apartment in HK 4-5ppl,268332955,Iustin,Manhattan,Hell's Kitchen,40.76577,-73.98482,Entire home/apt,269,3,0,,,1,329 +36027598,Manhatten dream apt thats just like home.,1967818,Debra,Manhattan,Hell's Kitchen,40.76769,-73.99129,Private room,110,30,0,,,1,105 +36029624,Lovely Two Bedroom Next to Central Park,218969291,Danielle,Manhattan,Upper West Side,40.78635,-73.97636,Entire home/apt,279,5,2,2019-07-02,2,1,346 +36029691,GRAMERCY + WIGWAM = FUN!!!,270620369,Bryan,Manhattan,Midtown,40.74188,-73.98419,Entire home/apt,650,3,0,,,1,337 +36029952,Sun Filled | Grand | Studio in Heart of SoHo,237189890,Dante,Manhattan,SoHo,40.72088,-74.00318,Entire home/apt,150,30,0,,,1,32 +36030151,Cozy Room in the heart of Williamsburg!,153713033,Annalisa,Brooklyn,Williamsburg,40.71432,-73.94805,Private room,48,7,1,2019-06-29,1,1,13 +36031121,Home Away From Home,271069449,Tristan,Queens,Arverne,40.59125,-73.79683,Entire home/apt,129,2,1,2019-06-30,1,1,362 +36031234,Luxury 2 bed in great neighborhood,271070664,Albert,Brooklyn,East Flatbush,40.65394,-73.92777,Entire home/apt,150,6,0,,,1,62 +36031282,"Luxury, Doorman, Steps From United Nations,",52950465,Gal,Manhattan,Midtown,40.75258,-73.97111,Private room,134,30,0,,,12,365 +36031639,Sunlit Room in Cozy Apartment,89830146,Max,Brooklyn,Crown Heights,40.66801,-73.94863,Private room,50,2,0,,,1,29 +36032098,2 Bedroom Fits 4 In Downtown NYC,267458545,Robin,Manhattan,Nolita,40.7223,-73.99508,Entire home/apt,225,7,1,2019-07-03,1,1,76 +36032523,Awesome comfy 1st fl walk up across from subway,743321,Michael,Manhattan,Midtown,40.75747,-73.96892,Entire home/apt,125,7,0,,,1,34 +36032998,Spacious Sunny Private Bedroom with Windows,2355573,Sarah,Brooklyn,Williamsburg,40.71808,-73.94261,Private room,44,5,1,2019-07-08,1,2,40 +36034181,Best in Greenwood 1min walk 15min Manhattan,27922303,Aprilene,Brooklyn,Sunset Park,40.65625,-74.0038,Private room,75,2,1,2019-07-01,1,2,311 +36034580,Cozy Apartment in the Historic Village of FiDi!,32990881,Alicia,Manhattan,Financial District,40.70328,-74.01099,Entire home/apt,180,2,2,2019-06-30,2,1,295 +36035142,"Large 1 Bedroom Apartment, Steps to Central Park!!",263336381,Tanya,Manhattan,Upper West Side,40.7836,-73.97511,Entire home/apt,135,30,0,,,1,44 +36035471,Breezy Plant Filled Oasis w/ Warm Miminalism,23436595,Greem,Brooklyn,Greenpoint,40.72803,-73.95557,Entire home/apt,180,3,0,,,2,262 +36036585,Full Service amenities Designer Modern New Studio,117953124,Sergio,Manhattan,Financial District,40.70534,-74.00631,Entire home/apt,180,30,0,,,1,333 +36036692,"Views, modern layout, elevator, sweet LES.",1316936,Carlo,Manhattan,Chinatown,40.71688,-73.9904,Private room,125,31,0,,,1,179 +36036850,Spacious room in historic brownstone,60404912,Ira,Brooklyn,Flatbush,40.64235,-73.95227,Private room,50,2,1,2019-07-07,1,1,7 +36037081,Great deal-private-NON shared apt in Chelsea,271114286,Deemy,Manhattan,Chelsea,40.74169,-73.99723,Entire home/apt,240,2,0,,,1,6 +36037105,Private Room Dumbo,113058525,Alfredo,Brooklyn,Vinegar Hill,40.70089,-73.98253,Private room,75,1,0,,,1,7 +36037506,The blue house,56602710,Auilda,Bronx,Melrose,40.82093,-73.91279,Entire home/apt,125,2,0,,,1,207 +36037692,Charming and Spacious 2 Bedroom Midtown Apt,270309706,Axay,Manhattan,Hell's Kitchen,40.76496,-73.98928,Entire home/apt,244,3,0,,,1,167 +36037836,Amazing Wiliamsburg Private Room,222287033,Francis,Brooklyn,Williamsburg,40.71096,-73.96575,Private room,95,2,0,,,5,211 +36037899,Beautiful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.71259,-73.96669,Private room,95,2,0,,,5,193 +36037964,Charming room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.71129,-73.96555,Private room,90,2,0,,,5,211 +36038003,Modern & Hip Building-Lower East Side- Elevator!,4239407,Steve,Manhattan,Lower East Side,40.71467,-73.98985,Entire home/apt,209,3,0,,,2,5 +36038012,Delightful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.7122,-73.96667,Private room,90,2,0,,,5,211 +36038070,✨Superb Room- 2 Queen Beds ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75255,-73.93324,Private room,149,1,0,,,8,316 +36038093,Comfortable & independent apartment in Queens NY,234010972,Kevin,Queens,East Elmhurst,40.75888,-73.87889,Entire home/apt,120,1,0,,,1,264 +36038200,Spacious Sunny Apartment (July 4 to 7),204301604,Funmi,Manhattan,Midtown,40.75669,-73.96848,Private room,100,2,0,,,1,89 +36038287,"Huge, Clean & Quiet room in a 2 BR Apt",167769983,Sara,Manhattan,Stuyvesant Town,40.73221,-73.97941,Private room,77,21,2,2019-06-25,2,1,321 +36039490,"A clean, comfortable private room near Bowne park",215128544,Sherry,Queens,Flushing,40.76987,-73.80451,Private room,48,1,3,2019-07-04,3,2,166 +36039574,★Premier Queen Room with Balcony ★,270874051,Hotel Vetiver,Queens,Long Island City,40.753,-73.93485,Private room,99,1,0,,,8,319 +36040430,RARE | Entire 2-bed apt ♥ 0 min to M/L train,227206998,Jessica,Brooklyn,Bushwick,40.69975,-73.91202,Entire home/apt,150,1,0,,,1,41 +36040477,"The clean, cozy room next to a beautiful park.",215128544,Sherry,Queens,Flushing,40.76986,-73.80515,Private room,49,1,2,2019-07-07,2,2,168 +36040561,Nice room to rent 1,230720704,Pp,Bronx,North Riverdale,40.91306,-73.89389,Private room,40,1,1,2019-07-06,1,3,175 +36040924,Cozy entire apt in Queens near St. John's Univ,271146927,Chooyou,Queens,Jamaica Estates,40.72124,-73.80072,Entire home/apt,68,2,2,2019-07-07,2,1,43 +36041065,Large bedroom with private bathroom is suit,225118276,Alex And Mila,Brooklyn,Bedford-Stuyvesant,40.6838,-73.92854,Private room,75,1,7,2019-07-06,7,1,326 +36041096,Luxury building Brand new Apartment in Chelsea!,271151866,Shelly,Manhattan,Chelsea,40.74438,-73.997,Entire home/apt,250,5,0,,,1,60 +36041232,Nice house room 2 near van cortlandt park,230720704,Pp,Bronx,North Riverdale,40.91167,-73.89566,Private room,40,1,1,2019-07-06,1,3,174 +36041377,Newly Renovated 1 BD w/ AC & Netflix in Queens (2),268784513,Amit,Queens,East Elmhurst,40.75755,-73.88199,Private room,50,1,3,2019-07-05,3,3,359 +36041578,✨Superb Room- 2 Queen Beds and Balcony ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75368,-73.93298,Private room,159,1,0,,,8,318 +36042251,LARGE COZY ROOM FOR 2people +1(child)+AMENITIES ),271162941,Anna,Brooklyn,Midwood,40.62351,-73.95509,Private room,120,1,2,2019-06-30,2,3,330 +36042368,Colorful + Comfortable Downtown NYC Apartment,32768394,Andrea,Manhattan,East Village,40.72338,-73.9851,Entire home/apt,180,3,0,,,1,17 +36042727,Lovely Private Corner Room in Bushwick,249235228,Bora,Brooklyn,Bedford-Stuyvesant,40.68996,-73.92669,Private room,55,3,0,,,1,84 +36043079,Beachside Serenity,36380968,Alex,Brooklyn,Brighton Beach,40.57759,-73.96218,Private room,75,1,2,2019-07-02,2,2,353 +36043243,Small Private Room in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78189,-73.9455,Private room,69,3,0,,,9,30 +36044645,"Cozy, perfect located, Room in the middle of NYC",271170087,Ricardo,Manhattan,Hell's Kitchen,40.76557,-73.9909,Private room,185,4,1,2019-06-30,1,1,50 +36044819,Cozy single room in Manhattan,3773866,Megumi & Nathan,Manhattan,Harlem,40.81842,-73.9391,Private room,42,2,0,,,2,14 +36056808,Luxury TriBeCa Apartment at an amazing price,271248669,Jenny,Manhattan,Tribeca,40.71206,-74.00999,Entire home/apt,6500,180,0,,,1,365 +36057923,"Cozy room in Brooklyn, Park Slope",52587835,Lorrayne,Brooklyn,Sunset Park,40.65989,-73.99336,Private room,42,3,0,,,1,24 +36057961,"Cozy apartment, amazing location!",271094569,Weronika,Manhattan,Lower East Side,40.71895,-73.98813,Entire home/apt,99,2,1,2019-06-26,1,1,333 +36059155,Charming prewar 1 bedroom in vibrant Midtown East,271264403,Arthur,Manhattan,Murray Hill,40.7472,-73.97337,Entire home/apt,229,1,0,,,1,176 +36060344,"BEAUTIFUL ONE BEDROOM, PRIVATE BACKYARD. Manhattan",269609725,Cristina,Manhattan,Lower East Side,40.71276,-73.98488,Entire home/apt,200,2,0,,,1,361 +36060576,4FE Chelsea Studio Exclusively Yours,271275048,Isaac,Manhattan,Chelsea,40.74638,-73.99094,Entire home/apt,125,30,0,,,2,245 +36060652,"Private room w/ Loft Bed, Desk, Quick Ride to City",271275248,Nikolas,Brooklyn,Bushwick,40.69057,-73.90671,Private room,50,2,1,2019-06-30,1,1,15 +36061406,Chelsea Loft Living - Perfect for LARGE groups,63492343,Lenore,Manhattan,Chelsea,40.73971,-73.99611,Entire home/apt,1050,2,0,,,1,365 +36061459,"Spectacular 2 Bedroom, 2 1/2 Bath",6960348,Elizabeth,Brooklyn,Williamsburg,40.71537,-73.94601,Entire home/apt,385,2,0,,,1,80 +36061719,Private Studio-Bedroom in Duplex in Williamsburg,271282883,Terence,Brooklyn,Greenpoint,40.72779,-73.94081,Private room,99,6,0,,,2,54 +36062007,"Private room in a spacious, clean, cozy apartment.",11123552,Paola,Brooklyn,Bushwick,40.70187,-73.92389,Private room,50,1,1,2019-07-01,1,2,11 +36062014,"Chic room, excellent location!",14844084,Patricia,Manhattan,Harlem,40.82625,-73.94791,Private room,75,4,0,,,1,113 +36062088,Williamsburg 2nd Fl 2bed Floor thru Apt townhouse,269568546,Di,Brooklyn,Williamsburg,40.7144,-73.95757,Entire home/apt,155,1,2,2019-07-05,2,1,88 +36062221,SHORT TERM STAY,9037589,Rahib,Queens,Woodside,40.74367,-73.91247,Private room,90,1,0,,,1,179 +36062290,"True 1 bedroom, with add'l pull out couch",9483525,Gail,Manhattan,West Village,40.73669,-74.001,Entire home/apt,300,2,1,2019-07-01,1,1,28 +36062578,"Sunlit, cozy and tranquil one bedroom in Brooklyn",39724060,Jaime,Brooklyn,Bedford-Stuyvesant,40.68932,-73.93494,Entire home/apt,115,7,0,,,1,79 +36063144,"Airy, light-filled, charming and zen duplex",4073971,Adena,Brooklyn,Bedford-Stuyvesant,40.68899,-73.94988,Entire home/apt,210,5,0,,,1,80 +36064435,Great Room; by Park / River; 15 min to Manhattan,161031033,Jav,Queens,Ditmars Steinway,40.78316,-73.91804,Private room,70,5,0,,,1,30 +36064676,Trendy and Tranquil Brooklyn Duplex,271300364,Your Fave,Brooklyn,Bushwick,40.69599,-73.93154,Entire home/apt,172,1,0,,,1,88 +36065361,Artist Luxe Loft Prime Williamsburg,271035656,Josh,Brooklyn,Williamsburg,40.70835,-73.95368,Entire home/apt,270,2,1,2019-07-05,1,1,308 +36065368,"NYC Trip! Safe,Walk to train, 20 min toTime Square",105579614,Kim,Queens,Ridgewood,40.70869,-73.90835,Private room,80,1,0,,,1,72 +36066113,"Stylish bedroom, two stops from Times Square! LIC",218986739,Mary,Queens,Long Island City,40.74575,-73.9449,Private room,79,1,0,,,2,346 +36066155,Comfy Private Room Shared Bath/Kitchen,28891151,Kimesha,Brooklyn,East New York,40.66802,-73.88724,Private room,75,2,0,,,4,90 +36066526,Convenient family friendly entire 2br in Bushwick.,5178414,Jen,Brooklyn,Bushwick,40.69859,-73.91398,Entire home/apt,250,7,0,,,1,32 +36067108,In the heart of the LES a sunny and charming room!,271321622,Rafaela,Manhattan,Lower East Side,40.71968,-73.98453,Private room,120,1,0,,,1,352 +36068351,The Emperors Den,252897042,Oza,Bronx,Bronxdale,40.85247,-73.86418,Entire home/apt,60,4,2,2019-07-07,2,1,194 +36069295,Private Rock and roll room 1blk from train,95886123,Melissa,Queens,Astoria,40.76621,-73.92274,Private room,100,2,0,,,2,357 +36069466,Luxury 800sq ft loft in the heart of Little Italy!,17869274,Nick,Manhattan,Little Italy,40.71878,-73.99808,Entire home/apt,202,1,0,,,1,23 +36069486,Private room in Central Park North,264495166,Jordania,Manhattan,Harlem,40.80199,-73.95779,Private room,90,2,1,2019-07-03,1,3,46 +36070717,Private Room in Lower East Side,30797242,Allison,Manhattan,Lower East Side,40.72285,-73.98895,Private room,75,3,0,,,1,21 +36071215,An inspiring loft in Williamsburg,2206491,Paola,Brooklyn,Williamsburg,40.71483,-73.95243,Entire home/apt,110,5,0,,,1,303 +36071685,Cosy Sunny room near Prospect Park,121127613,Amanda,Brooklyn,Flatbush,40.65205,-73.96311,Private room,50,1,0,,,1,265 +36071960,"Great Apartment only $79 per night +Great area",267710728,James,Bronx,Pelham Gardens,40.86143,-73.84573,Entire home/apt,79,2,1,2019-06-26,1,2,354 +36072301,Large private room in the heart of Williamsburg,271350187,Elena,Brooklyn,Williamsburg,40.71814,-73.95041,Private room,109,1,0,,,3,304 +36072357,Charming suite on Historic block,271354975,Frances,Brooklyn,Bedford-Stuyvesant,40.68323,-73.94694,Private room,170,2,0,,,1,164 +36073384,Private Room In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.82682,-73.95157,Private room,70,2,0,,,2,312 +36073776,"Amazing Room! Awesome Price! +Can’t wait to meet U!",268198789,Davica,Brooklyn,Cypress Hills,40.67877,-73.86722,Private room,68,2,0,,,2,315 +36074198,Luxury apartment 2 min to times square,203565865,Vinícius,Manhattan,SoHo,40.7206,-74.00023,Entire home/apt,1308,2,0,,,1,179 +36074873,"Cosy Private room, weekly cleaner",15057355,Benjamin,Manhattan,Two Bridges,40.71155,-73.99712,Private room,70,3,0,,,1,62 +36075020,Apartment In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.8233,-73.95122,Entire home/apt,125,3,0,,,2,326 +36075404,Shared BR for Overnight Sleep,217595343,Jack,Manhattan,East Harlem,40.7982,-73.94422,Shared room,65,1,2,2019-06-30,2,2,170 +36075606,Luxury One Bedroom Apartment on Wall Street 3 Beds,271379777,Kimhue,Manhattan,Financial District,40.70411,-74.00909,Entire home/apt,255,1,0,,,1,9 +36076098,Beautiful place walking distance from Central Park,271384163,Edward,Manhattan,Harlem,40.80446,-73.9455,Entire home/apt,320,1,0,,,1,322 +36076181,3 Bedroom Penthouse minutes from JFK and Manhattan,34023353,Angelo,Queens,Woodhaven,40.69855,-73.85279,Private room,130,1,0,,,1,89 +36076335,★ Premier Room with 2 Queen Beds ★,270874051,Hotel Vetiver,Queens,Long Island City,40.75258,-73.93475,Private room,119,1,0,,,8,333 +36076338,Comfortable King Size Bed-Block away from D Train,25667666,Elias,Brooklyn,Borough Park,40.64018,-73.99157,Private room,50,2,1,2019-07-07,1,1,25 +36076577,Luxury Private One Bedroom in the Upper East Side,271391063,Bryan,Manhattan,Upper East Side,40.76943,-73.95608,Entire home/apt,165,1,1,2019-06-30,1,1,5 +36076594,Beautiful Private Room in Sunny Greenpoint,94510125,Nathalie,Brooklyn,Greenpoint,40.72923,-73.95693,Private room,75,2,0,,,1,73 +36076758,"Sunny, Comfortable Room in Historic Heights!",271391825,Gloria,Manhattan,Washington Heights,40.84638,-73.93846,Private room,46,2,0,,,1,121 +36076807,cozy apt in midtown,271393608,Michael,Manhattan,Hell's Kitchen,40.76725,-73.98669,Shared room,70,1,3,2019-06-30,3,6,24 +36077160,Beautiful One Bedroom in Astoria,17330506,Oli,Queens,Astoria,40.77472,-73.92825,Private room,75,3,0,,,1,43 +36077537,"Clean, quiet, lux BR in Midtown",10287553,Marie,Manhattan,Hell's Kitchen,40.76843,-73.9894,Private room,147,2,1,2019-07-01,1,1,27 +36077664,"Cozy Shared BR in East Side +(Female Guests Only)",271401156,Abraham,Manhattan,Upper East Side,40.77324,-73.95969,Shared room,69,1,0,,,1,164 +36077745,AMAZING LARGE ONE BEDROOM IN WILLIAMSBURG!!,266752544,Haily,Brooklyn,Williamsburg,40.71527,-73.93852,Entire home/apt,299,3,2,2019-07-03,2,1,178 +36078121,Large Sunny Apartment-By Subway-Lower East Side,40058915,Kevin,Manhattan,Lower East Side,40.71755,-73.98967,Entire home/apt,164,1,1,2019-07-06,1,1,163 +36078765,Bright Bushwick room with view of park,3567433,Wesley,Brooklyn,Bushwick,40.69069,-73.90836,Private room,55,3,0,,,2,23 +36078798,Great Greenpoint location!,1422618,Nicole,Brooklyn,Greenpoint,40.73395,-73.9538,Private room,85,1,0,,,1,341 +36078939,Cosy room Bushwick,235745868,Mari,Brooklyn,Bushwick,40.69324,-73.9094,Private room,37,29,0,,,1,340 +36079246,Spacious Clinton Hill Apartment,34774173,Natalie,Brooklyn,Bedford-Stuyvesant,40.69198,-73.96008,Entire home/apt,95,2,0,,,1,5 +36080023,The Game Room,188453457,Denise,Bronx,Claremont Village,40.84218,-73.90969,Entire home/apt,390,2,0,,,2,348 +36080238,Brand new cozy 1 bedroom apartment in Brooklyn,164701861,Brenda,Brooklyn,East New York,40.67451,-73.88806,Entire home/apt,100,3,0,,,2,112 +36081181,Private Room in the most convenient location!,93551842,Farhath,Manhattan,Murray Hill,40.74605,-73.9773,Private room,80,1,1,2019-06-26,1,1,2 +36081186,"Central location, Manhattan. 1-bed Apt",150518920,Val,Manhattan,Murray Hill,40.74666,-73.97358,Entire home/apt,185,1,0,,,1,192 +36082032,An Urban Oasis in Brooklyn,14515065,Vanessa,Brooklyn,Bushwick,40.69845,-73.93591,Entire home/apt,148,1,0,,,2,349 +36082127,Stylish apartment near Central Park!,113344533,Alina,Manhattan,East Harlem,40.79446,-73.94455,Entire home/apt,170,1,1,2019-07-03,1,1,20 +36082371,Amazing big East Village apt with vintage details,42687204,Ricardo,Manhattan,East Village,40.73034,-73.98725,Entire home/apt,197,1,0,,,1,33 +36082721,Upper Court Room,57023844,Karlene,Queens,Jamaica,40.68588,-73.77823,Private room,69,3,0,,,2,365 +36083269,"Serene Storefront Studio, a private cozy hideaway",3358348,Jennifer,Brooklyn,Crown Heights,40.67497,-73.94973,Entire home/apt,97,1,0,,,1,63 +36085870,The Game Room Place,188453457,Denise,Bronx,Claremont Village,40.84037,-73.8998,Private room,122,1,0,,,2,166 +36087720,PRIVATE TIMES SQUARE TOWNHOUSE,269235140,Ronnie,Manhattan,Hell's Kitchen,40.76437,-73.99044,Entire home/apt,560,1,0,,,1,32 +36087897,Plush And Spacious 2 Bedroom Flat In Manhattan,269235465,Jolien,Manhattan,Harlem,40.80618,-73.94587,Entire home/apt,315,1,0,,,1,5 +36088017,2 Bed 1 Bath Manhattan Apartment,269236041,Marquita,Manhattan,Harlem,40.80629,-73.95001,Entire home/apt,222,6,0,,,1,18 +36095313,New York City escape,25279755,Stacey,Manhattan,Kips Bay,40.74413,-73.97993,Private room,90,2,0,,,1,17 +36095625,Comfortable cosy room,115939890,Ant,Manhattan,Stuyvesant Town,40.73143,-73.97549,Shared room,56,1,0,,,1,3 +36097705,Like a Cottage in the Sky!,271528362,Terri,Staten Island,Grymes Hill,40.61674,-74.10169,Entire home/apt,175,1,0,,,1,350 +36097970,Astonishing Nomad Apt in the Center Of Manhattan,270292053,Teufik,Manhattan,Chelsea,40.7469,-73.99038,Entire home/apt,350,3,3,2019-07-03,3,1,345 +36099118,"Luxury Penthouse 3bed/2bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77574,-73.98917,Entire home/apt,583,30,0,,,6,343 +36099301,Amazing 2 Bedroom in the Village!,256090291,Dan,Manhattan,Greenwich Village,40.72897,-74.00167,Entire home/apt,200,30,0,,,1,363 +36100102,"Central Harlem Lux, near to all major restaurants.",271432195,Mohamed,Manhattan,East Harlem,40.80605,-73.94208,Entire home/apt,175,1,1,2019-07-05,1,1,307 +36100457,Trendy King Bedroom w/private Bath in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69485,-73.92759,Private room,69,1,1,2019-06-30,1,6,103 +36100744,Penthouse with Skyline View & Terrace,52115380,Erika,Queens,Glendale,40.69784,-73.89427,Entire home/apt,125,7,0,,,1,39 +36100855,Lovely Studio near Franklin Ave,2390913,Peter,Brooklyn,Crown Heights,40.6756,-73.95644,Entire home/apt,85,4,0,,,1,50 +36100930,Garden Apartment in Artist’s Historical Brownstone,8094859,Elizabeth,Brooklyn,Boerum Hill,40.686,-73.98794,Entire home/apt,190,1,0,,,1,148 +36101190,Flushing Hideout,30839692,Stavros,Queens,Flushing,40.75406,-73.80613,Shared room,25,1,1,2019-06-30,1,3,86 +36101396,7 minutes away from JFK,83974928,Danica,Queens,Laurelton,40.66992,-73.74518,Private room,34,1,3,2019-07-08,3,1,70 +36102578,***New*** Explore the NYC in this Brooklyn Oasis,271568898,Gabriel & Aquanna,Brooklyn,Cypress Hills,40.67814,-73.89286,Entire home/apt,150,1,0,,,1,9 +36102590,金城发大床房 Suit1,255641440,Li,Queens,Flushing,40.75181,-73.81356,Private room,55,1,0,,,7,79 +36103059,Lovely room with full size bed(suit3),255641440,Li,Queens,Flushing,40.76393,-73.80895,Private room,42,1,0,,,7,4 +36103759,East 60s NYC. Heart of midtown manhattan,134749416,Amir,Manhattan,Upper East Side,40.76059,-73.9616,Shared room,209,3,0,,,1,30 +36104174,Stunning ! All new near U.N. & Central Park,271581236,Amir,Manhattan,Midtown,40.7572,-73.96464,Entire home/apt,179,30,0,,,1,242 +36104262,Great soho Designer furniture modern home,269556381,Yolanda,Manhattan,Greenwich Village,40.72785,-74.00145,Entire home/apt,300,4,0,,,1,336 +36105607,NYC apartment located in Midtown Manhattan,271591823,Rob,Manhattan,Kips Bay,40.73835,-73.98121,Private room,150,2,0,,,1,31 +36105765,"Bright, spacious 1br in Harlem | Near 4/5/6 train",13231566,Jordan,Manhattan,East Harlem,40.8019,-73.93829,Entire home/apt,100,14,0,,,1,52 +36105777,Nice central bushwick room with backyard,114413305,Bryant,Brooklyn,Bushwick,40.6949,-73.90954,Private room,45,1,1,2019-07-07,1,1,30 +36106800,LUXE LOFT NYC's BEST NEIGHBORHOOD,270041172,Madison,Manhattan,Greenwich Village,40.73486,-73.99843,Entire home/apt,350,1,0,,,1,363 +36106887,Simple + Cute + Spacious Studio (Perfect for 1-2),102848162,Daniel,Manhattan,Upper West Side,40.78627,-73.97995,Entire home/apt,149,1,1,2019-07-03,1,1,189 +36107133,Charming Area! Private Room!,192951036,Jasmine,Manhattan,Greenwich Village,40.728,-74.00032,Private room,99,1,0,,,10,226 +36107361,Luxury Furnished Apartment in Heart of Astoria,128629269,Cristina,Queens,Astoria,40.76686,-73.9239,Private room,100,30,0,,,1,328 +36107501,Huge New Basement w/Queen Bed in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69617,-73.92588,Shared room,39,1,0,,,6,28 +36107803,"Dreamy brownstone with cozy room, big closet, bike",57919043,Garrison,Brooklyn,Park Slope,40.67918,-73.97659,Private room,49,24,0,,,1,44 +36108523,Luxury Private Bedroom and bathroom in Midtown,245843084,Dany,Manhattan,Hell's Kitchen,40.75957,-73.99535,Private room,129,3,0,,,1,5 +36108534,Luxury 1 bed in UWS Finest Building with Gym #6109,116305897,Laura,Manhattan,Upper West Side,40.78935,-73.97389,Entire home/apt,180,30,0,,,9,311 +36108714,Williamsburg Waterfront Apartment,212865,Waad,Brooklyn,Williamsburg,40.72045,-73.96313,Entire home/apt,150,90,0,,,1,91 +36108811,Bright and Sunny home away from home.,271616449,Raiysa,Bronx,Parkchester,40.8349,-73.85259,Private room,40,3,1,2019-06-28,1,1,68 +36108975,Very Cozy Van,10407935,Meng,Manhattan,SoHo,40.72427,-73.99849,Entire home/apt,89,1,0,,,8,71 +36109087,ROSE QUARTZ 1 BEDROOM,9093418,Abbey,Manhattan,Chelsea,40.75073,-73.99549,Private room,300,1,0,,,1,365 +36109132,"Private large room, 15 minutes to Times Square.",23835825,Adam,Queens,Sunnyside,40.74608,-73.92179,Private room,59,7,0,,,1,0 +36109290,Very Comfy Van,10407935,Meng,Manhattan,West Village,40.73635,-74.00223,Entire home/apt,89,1,0,,,8,72 +36109452,Cozy Camper Van,10407935,Meng,Manhattan,West Village,40.73295,-74.00365,Entire home/apt,89,1,0,,,8,72 +36109625,"THE BEST 1 bedroom apt in Astoria, seriously, best",93723961,Kevin,Queens,Astoria,40.76769,-73.91994,Entire home/apt,99,2,0,,,1,94 +36109658,Comfy 2 bedroom apartment in Brooklyn,55363509,Eli,Brooklyn,Gravesend,40.60829,-73.97009,Entire home/apt,150,3,0,,,1,172 +36109691,Modern and Beautiful Riverdale Apartment,118853924,Sayar,Bronx,North Riverdale,40.90527,-73.89707,Entire home/apt,150,30,0,,,1,89 +36109805,Amazing Studio in the UWS with Gym #6108,116305897,Laura,Manhattan,Upper West Side,40.79098,-73.97384,Entire home/apt,150,30,0,,,9,343 +36112291,Fire Escape Bedroom in Artist Loft.,101618737,Sihan,Brooklyn,Bushwick,40.69191,-73.90807,Private room,80,3,0,,,2,13 +36112415,Family-Friendly 2BR Apt. in Beautiful Fort Greene,61784887,Landon,Brooklyn,Fort Greene,40.69101,-73.97197,Entire home/apt,250,2,0,,,1,46 +36112469,"Perfect location, beautiful apartment in the City",44183725,Neelam,Manhattan,Chelsea,40.75095,-73.99542,Entire home/apt,185,3,1,2019-07-01,1,1,7 +36112665,1BR steps away from Time Square,250126499,Jeff,Manhattan,Hell's Kitchen,40.75871,-73.99659,Entire home/apt,250,1,0,,,1,8 +36112704,Bright & Cozy Brooklyn Apartment,713116,June,Brooklyn,Prospect-Lefferts Gardens,40.65633,-73.95722,Entire home/apt,145,4,0,,,1,41 +36112923,Lovely 1BR Apartment Central Park/ Columbus Circle,35652410,Kate,Manhattan,Upper West Side,40.77568,-73.98019,Entire home/apt,170,4,0,,,1,30 +36113110,Beautiful unique artist loft!,18594883,Reece,Brooklyn,Bedford-Stuyvesant,40.6924,-73.95927,Private room,51,1,2,2019-07-07,2,1,23 +36113226,Room in Charming Williamsburg Townhouse,28752285,Mirro,Brooklyn,Williamsburg,40.71268,-73.95855,Private room,90,2,0,,,1,347 +36113257,WaHi Walk Up,22528598,Jennifer,Manhattan,Washington Heights,40.85269,-73.93616,Private room,80,1,1,2019-06-29,1,1,68 +36113332,Large room(Brooklyn) - 20 min to Manhattan+comfort,271162941,Anna,Brooklyn,Midwood,40.62486,-73.95458,Private room,80,1,0,,,3,330 +36113697,Elegant private bedroom in sunny modern home #3,101771985,Yudis,Manhattan,Harlem,40.80624,-73.9502,Private room,90,1,1,2019-06-30,1,3,179 +36114015,Spacious Private Room in Williamsburg,197119374,Chenoa,Brooklyn,Williamsburg,40.70982,-73.95831,Private room,55,1,0,,,1,2 +36114202,Private Room in Central Park North #2,264495166,Jordania,Manhattan,Harlem,40.80079,-73.95783,Private room,85,2,0,,,3,11 +36114258,Luxury Chelsea Studio,47334774,Sally,Manhattan,Chelsea,40.75223,-74.00816,Entire home/apt,300,2,0,,,1,168 +36114840,Stunning Penthouse Over the High Line,3868762,Fabio,Manhattan,Chelsea,40.75218,-74.00241,Entire home/apt,550,4,0,,,1,34 +36115183,Cozy warm,271667012,Dilenny,Bronx,Pelham Bay,40.85234,-73.82969,Entire home/apt,55,7,0,,,1,179 +36115258,Sunlit Design Loft 2bdroom,271663737,Jesse,Brooklyn,Williamsburg,40.70612,-73.95549,Entire home/apt,99,1,0,,,1,297 +36115461,Private Room In a Beautiful Tree-Lined Brownstone,24633205,Joshua,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93982,Private room,50,1,1,2019-06-30,1,1,27 +36116045,Cristina's place,95007110,Rosa,Manhattan,Washington Heights,40.84773,-73.94015,Private room,60,2,0,,,1,343 +36116336,Very Large/Spacious Private Bedroom in Manhattan,118892550,Jona,Manhattan,Upper East Side,40.78269,-73.95452,Private room,85,2,0,,,1,30 +36116772,"Sunny room in Brooklyn, Sunset Park",271681014,Ying Hua,Brooklyn,Borough Park,40.64531,-73.99757,Private room,45,2,0,,,3,139 +36117025,"Cool Studio in SoHo, Manhattan",217692384,Gabriel,Manhattan,SoHo,40.72552,-74.00101,Entire home/apt,240,2,0,,,1,90 +36117267,convenient 5min away from jfk 20 min lga airport,129654782,Kevon,Queens,Richmond Hill,40.68978,-73.81468,Entire home/apt,150,3,0,,,1,179 +36117552,Quiet 1BR Apt in West Village/NYU,1196848,Kim,Manhattan,West Village,40.73564,-74.00997,Entire home/apt,229,2,0,,,1,10 +36117652,"In the heart of the Upper East Side, Manhattan",7464960,Charlie,Manhattan,Upper East Side,40.77247,-73.95792,Entire home/apt,200,2,0,,,1,47 +36118677,Modern room with balcony,271350187,Elena,Brooklyn,Williamsburg,40.71731,-73.94907,Private room,135,1,2,2019-07-05,2,3,353 +36118872,A Cozy Bed Dream in Manhattan,178720348,Mingmei,Manhattan,Harlem,40.81851,-73.9567,Shared room,75,1,0,,,2,34 +36120293,Spacious Studio Near Manhattan -15 min to Time SQ!,41829977,Sonam,Queens,Elmhurst,40.7479,-73.87496,Private room,115,1,0,,,2,170 +36120857,Rare Find - 9bd/3ba Duplex - 15 mins to Manhattan,219908197,Anthony,Brooklyn,Williamsburg,40.71632,-73.94295,Entire home/apt,595,2,0,,,3,340 +36127750,Lovely 3 bedroom w/ 4beds & 2 bathroom in Queens,261953214,Kumar,Queens,Jamaica Estates,40.71572,-73.78204,Entire home/apt,280,1,0,,,1,330 +36128584,SOHO One bedroom Good vibes Perfect location,1312063,Carla,Manhattan,SoHo,40.72548,-74.0021,Private room,200,1,1,2019-07-01,1,1,203 +36129014,Semi-Private Brooklyn Quiet Sundrenched Apartment,271749110,Ed,Brooklyn,Crown Heights,40.67333,-73.91614,Private room,150,1,0,,,1,177 +36129923,Space to breath in Crown Heights,6322527,Emily,Brooklyn,Crown Heights,40.67122,-73.94093,Private room,75,2,2,2019-06-30,2,1,89 +36130876,Kosy apt w modern new furniture in the heart of NY,7441368,Chris And Jamie,Manhattan,Hell's Kitchen,40.75584,-73.99304,Entire home/apt,175,1,0,,,2,270 +36130946,Sunset Park Upgraded Apartment,268119922,Francisco,Brooklyn,Sunset Park,40.64534,-74.01992,Entire home/apt,200,2,0,,,1,322 +36131210,Luxury new private studio one stop to Manhattan4,53620244,Chiara,Queens,Long Island City,40.74812,-73.93875,Entire home/apt,180,1,1,2019-07-04,1,1,334 +36131784,Entire 3 Bedroom apt next to Barclay’s center,229381517,Pavel,Brooklyn,Prospect Heights,40.68077,-73.97489,Entire home/apt,250,1,0,,,2,175 +36133191,Spacious and Sunny Bushwick Artist's Loft,153616576,Erica,Brooklyn,Bushwick,40.70795,-73.92039,Entire home/apt,250,1,0,,,1,188 +36133997,Refreshing apt in the heart of downtown,8415945,Dennis,Manhattan,Greenwich Village,40.72968,-74.00195,Entire home/apt,157,3,1,2019-06-28,1,1,169 +36134580,COSY 2BR APARTMENT IN LOWER EAST SIDE,55814811,Doni,Manhattan,Lower East Side,40.71989,-73.98459,Entire home/apt,198,3,0,,,1,5 +36134670,Amazing and clean apartment-15 min to Central Park,271784048,Deruchett,Manhattan,Harlem,40.82601,-73.93795,Private room,60,3,0,,,1,229 +36135376,"Private and cozy room, steps to LGA and Manhattan",216297714,Alex,Queens,Elmhurst,40.746,-73.87506,Private room,78,14,0,,,1,0 +36136048,Manhattan ♥ 2BR apartment,270307751,Charles,Manhattan,Lower East Side,40.71877,-73.99055,Entire home/apt,320,4,0,,,1,160 +36136548,Amazing Condo In Amazing Part of an Amazing City-2,258762273,Andrew,Queens,Richmond Hill,40.6984,-73.84921,Private room,50,1,0,,,1,308 +36137064,BEAUTIFUL 2 BEDROOM APARTMENT BY TIMES SQUARE,271015294,Natalia,Manhattan,Hell's Kitchen,40.76116,-73.99031,Entire home/apt,250,3,0,,,1,259 +36137531,NYC oasis in Gramercy,14499116,Michal,Manhattan,Stuyvesant Town,40.73549,-73.97707,Entire home/apt,250,20,0,,,1,30 +36137613,Modern and Hip Brooklyn Brownstone!,206115,Christian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.92436,Entire home/apt,110,2,0,,,1,182 +36137740,Cozy Kips Bay Apartment,30933227,Dipti,Manhattan,Kips Bay,40.74133,-73.97706,Entire home/apt,130,30,1,2019-06-28,1,1,54 +36138394,"Free Cleaning & WiFi, Quick Walk to Metro-Modern!",114394986,Charlotte & Brad,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95547,Private room,35,30,0,,,1,43 +36138789,Room with Amazing location in Manhattan,31846499,Veronika,Manhattan,East Harlem,40.78774,-73.94627,Private room,73,180,0,,,1,0 +36139701,Cozy place by Times Square,271393608,Michael,Manhattan,Hell's Kitchen,40.76658,-73.98566,Shared room,69,1,0,,,6,23 +36139806,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Jackson Heights,40.75077,-73.8702,Entire home/apt,67,2,0,,,3,134 +36139906,NYC full spacious apartment.,34274867,Sarah,Manhattan,Washington Heights,40.85453,-73.93562,Entire home/apt,300,4,0,,,1,319 +36139954,Best location in ny,271393608,Michael,Manhattan,Hell's Kitchen,40.76802,-73.98721,Shared room,69,1,1,2019-06-30,1,6,24 +36139960,Master bedroom in luxury building,61993016,Daniel,Manhattan,Hell's Kitchen,40.76054,-73.99936,Private room,150,2,0,,,1,11 +36140236,Beautiful room near central park,271393608,Michael,Manhattan,Hell's Kitchen,40.7664,-73.98586,Shared room,69,1,1,2019-06-30,1,6,24 +36140542,Wonderful Summer Vacation Getaways For Weekenders,229739739,John,Brooklyn,Flatbush,40.646,-73.95455,Private room,85,7,0,,,2,176 +36140620,Cozy room in Nyc,271393608,Michael,Manhattan,Hell's Kitchen,40.76824,-73.98538,Shared room,69,1,0,,,6,19 +36140801,Stylish room in midtown,271393608,Michael,Manhattan,Hell's Kitchen,40.76759,-73.98697,Shared room,69,1,1,2019-06-30,1,6,24 +36141106,Honest clean living,13605253,Kerrey,Queens,Springfield Gardens,40.67136,-73.76248,Entire home/apt,95,2,0,,,1,81 +36142215,SUMMER RENTAL IN SUNNY SPACIOUS ROOM,41484943,Melissa,Brooklyn,Kensington,40.63676,-73.97448,Private room,54,7,0,,,2,225 +36142219,Beautiful 2 bedroom Apartment on Prime Upper East!,47785320,Cristina,Manhattan,Upper East Side,40.77352,-73.94693,Entire home/apt,150,30,0,,,1,66 +36142241,Cozy room in Brooklyn Bushwick,226718475,Marion,Brooklyn,Bushwick,40.6938,-73.9091,Private room,39,15,0,,,1,354 +36142296,July sublet in Bushwick,26794324,Quinten,Brooklyn,Bushwick,40.70269,-73.92833,Private room,45,7,0,,,1,10 +36142537,2 Bedroom Home away from home,62154352,Emily,Manhattan,Harlem,40.81427,-73.95141,Entire home/apt,150,2,0,,,1,40 +36142853,Bright and cozy room in Greenpoint with loft,6900478,Rebecca,Brooklyn,Greenpoint,40.73201,-73.95299,Private room,85,1,0,,,2,83 +36143087,"Beautiful, Spacious room in prime Williamsburg!",226520484,Mika,Brooklyn,Williamsburg,40.7154,-73.95438,Private room,70,5,1,2019-07-01,1,1,7 +36143214,Cute 1 Bedroom Bungalow-Steps to Beach&Subway,271844440,Timothy,Queens,Rockaway Beach,40.59087,-73.81143,Entire home/apt,139,1,0,,,3,166 +36144863,Amazing 2 bed 2 bath in Williamsburg,14098199,Lucas,Brooklyn,Williamsburg,40.71413,-73.95685,Entire home/apt,250,5,0,,,1,209 +36144903,Harlem Hot Spot,240367821,Javon,Manhattan,Harlem,40.81121,-73.94124,Entire home/apt,132,2,0,,,1,199 +36144933,BEST DEAL 2 BR APT IN MANHATTAN! 6 BEDS AVAILABLE!,270583057,Reccie M.,Manhattan,Washington Heights,40.84366,-73.94018,Entire home/apt,195,5,0,,,1,270 +36145134,"HUGE Tribeca/SOHO Loft - 2,200 Square Feet!!",271863165,Johanna,Manhattan,Tribeca,40.71888,-74.00431,Private room,500,5,0,,,1,252 +36145317,1910 Original Rockaway Bungalow,63389796,Diana,Queens,Rockaway Beach,40.58947,-73.81435,Entire home/apt,150,1,5,2019-07-07,5,1,79 +36145564,The place is a brand new gut renovated apartment.,24304607,Scott,Bronx,Kingsbridge,40.87997,-73.90135,Private room,100,1,0,,,1,115 +36145727,Park side Apt in front of Forest Park,271867677,Erwin,Queens,Woodhaven,40.69658,-73.85615,Private room,50,1,2,2019-07-06,2,1,359 +36146653,Beautiful bedroom in traditional NYC apt!,40984551,Felix,Brooklyn,Bushwick,40.70567,-73.92359,Private room,70,2,0,,,1,5 +36146672,Veneta New York suite,266037277,Gianluigi,Manhattan,Hell's Kitchen,40.76687,-73.98644,Private room,561,1,0,,,1,364 +36146761,Gorgeous 1 family home in Astoria; 2 floors,44032493,Veronica,Queens,Ditmars Steinway,40.77333,-73.9071,Entire home/apt,200,4,0,,,1,117 +36147589,"Cozy private room with ensuite, 25min to Manhattan",18924861,Vincent,Queens,Sunnyside,40.73769,-73.92441,Private room,60,28,0,,,1,330 +36147750,*TIMES SQ CENTRAL*,21515253,Jenny,Manhattan,Hell's Kitchen,40.76141,-73.99213,Entire home/apt,209,1,1,2019-06-30,1,2,32 +36148359,Spacious and light-filled 2.5 bedroom in Ridgewood,201361410,Jonah,Queens,Ridgewood,40.70657,-73.90448,Entire home/apt,55,20,0,,,1,28 +36148417,1 Bedroom Bungalow-Rockaway-By Beach&Subway,271885652,Elizabeth,Queens,Rockaway Beach,40.58681,-73.8128,Entire home/apt,159,1,0,,,4,166 +36148509,Classy East Village Enclave,60811527,Mariana,Manhattan,East Village,40.72595,-73.98971,Entire home/apt,220,15,0,,,1,61 +36148594,Beautiful Brooklyn,91813899,Tássia,Brooklyn,Crown Heights,40.67331,-73.93212,Private room,115,1,0,,,1,58 +36148925,Cozy Brooklyn Home on a Tree-lined Block,8084384,Kara,Brooklyn,Fort Greene,40.6853,-73.9722,Entire home/apt,220,2,0,,,1,3 +36149019,Cozy Studio near JFK and LaGuardia Newly Renovated,267016512,Alexis,Queens,Hollis,40.71309,-73.77171,Entire home/apt,99,1,0,,,1,139 +36149148,Bushwick Michael,271896011,Jeremy,Brooklyn,Bushwick,40.68936,-73.90879,Private room,75,1,0,,,1,175 +36149281,My Cozy Two Bedroom Apt in Soho - Very Conve,1387341,Dan,Manhattan,SoHo,40.72403,-73.997,Entire home/apt,250,2,0,,,1,247 +36149658,Bedstuy Home of The Greats (Stuyvesant Heights),271901058,Fernando,Brooklyn,Bedford-Stuyvesant,40.68795,-73.9374,Private room,65,1,1,2019-06-29,1,1,335 +36149911,"Financial District,wall street,PV ROOM,FEMALE ONLY",87827436,Camelia,Manhattan,Financial District,40.704,-74.00646,Private room,90,24,0,,,1,362 +36150121,AMAZING 3 BEDROOM APARTMENT NEAR UNION SQUARE,271349926,Monika,Manhattan,East Village,40.72833,-73.98482,Entire home/apt,250,3,0,,,1,220 +36150599,The most convenient place in Brooklyn,229381517,Pavel,Brooklyn,Prospect Heights,40.68017,-73.97352,Entire home/apt,250,1,0,,,2,158 +36151001,Crown Heights Haven,209921907,Erma,Brooklyn,Crown Heights,40.66997,-73.92696,Private room,38,2,0,,,1,179 +36151482,Luxury apartment in the “heart of queens”,271916367,Celina,Queens,East Elmhurst,40.75899,-73.85605,Private room,65,2,0,,,1,176 +36151576,~TIMES SQ CENTRAL~,21515253,Jenny,Manhattan,Hell's Kitchen,40.76062,-73.99349,Entire home/apt,209,1,0,,,2,112 +36152646,"Peace, Love and Sunshine",44929652,Lawanne,Brooklyn,East Flatbush,40.64431,-73.94867,Entire home/apt,200,3,1,2019-07-06,1,4,357 +36152878,Cozy Apartment in Midtown West,271928929,Asil,Manhattan,Hell's Kitchen,40.75402,-73.99318,Entire home/apt,75,1,4,2019-07-05,4,1,98 +36153727,Ridgewood Deal,271925782,Stephane,Queens,Ridgewood,40.70062,-73.90796,Shared room,35,1,0,,,1,72 +36154148,"Private and cozy bedroom, for rent.",214483712,Christina,Staten Island,Bull's Head,40.59436,-74.16345,Private room,50,30,0,,,3,179 +36154590,Private and Cozy Bedroom.,214483712,Christina,Staten Island,Bull's Head,40.59475,-74.1637,Private room,50,30,0,,,3,364 +36163803,A luxury one-bedroom apartment,242376689,Xiuzhen,Queens,Long Island City,40.74693,-73.94175,Entire home/apt,150,5,0,,,1,15 +36164019,Home near the park,139897963,Vanisha-Arleen,Brooklyn,Prospect-Lefferts Gardens,40.65694,-73.95374,Private room,33,7,0,,,1,159 +36164059,Spacious room near Brooklyn Botanic Gardens,3833262,Sara,Brooklyn,Crown Heights,40.66929,-73.96222,Private room,46,2,0,,,1,136 +36164533,Summer Oasis Brooklyn Apartment,29535980,Tiffany,Brooklyn,Williamsburg,40.70671,-73.95076,Private room,65,7,0,,,1,210 +36166946,Spacious decorated 2 BR minutes from Central Park.,21802668,Domenica,Manhattan,East Harlem,40.80208,-73.94415,Entire home/apt,250,17,0,,,1,46 +36168631,The coziest garden apartment in Harlem!!,4169722,Jophiel,Manhattan,Harlem,40.80637,-73.94282,Entire home/apt,100,2,0,,,1,11 +36168735,Cozy Two Bedroom Apartment in the East Village,270613726,Benjamin,Manhattan,East Village,40.72567,-73.98635,Entire home/apt,225,3,0,,,1,231 +36168746,"I promise you ,you'll never want to leave!",272022688,Natanel,Brooklyn,Sheepshead Bay,40.58713,-73.95349,Private room,89,2,0,,,1,59 +36169764,Studio (200 sq ft.) near Times Square!,78501032,Eileen,Manhattan,Hell's Kitchen,40.76066,-73.99011,Entire home/apt,134,1,0,,,1,0 +36169832,"Tiny Room only for “1 lady” :) +Solo Travelers !!!!",264823783,Wada,Manhattan,Harlem,40.81922,-73.95287,Private room,50,7,0,,,2,53 +36170293,Convenient and Spacious Sugar Hill Apartment,272034378,Cristian,Manhattan,Harlem,40.82808,-73.94126,Private room,45,3,0,,,1,10 +36170749,Luxury 1 BD Full Bed w/ AC & Netflix in Queens (3),268784513,Amit,Queens,East Elmhurst,40.75815,-73.88323,Private room,55,1,2,2019-07-06,2,3,358 +36172164,Sleeping Easy on the East Side! 1 Bed/1 Bath,270629822,Jasson,Manhattan,East Harlem,40.78586,-73.94475,Entire home/apt,199,3,3,2019-07-02,3,1,349 +36172246,Pirate's den,272049968,Samuel,Queens,Arverne,40.59389,-73.7906,Entire home/apt,90,1,0,,,1,39 +36172249,Premier room in Downtown Manhattan,253552326,Grace,Manhattan,Chinatown,40.71368,-73.99635,Private room,98,1,0,,,4,87 +36172519,"Cozy, Spacious and private apartment in NYC",219573002,Camille,Manhattan,Washington Heights,40.85488,-73.93194,Entire home/apt,125,2,0,,,1,2 +36172912,Stylish 1 Bedroom in the Heart of the LES,44995980,Ann,Manhattan,Lower East Side,40.72007,-73.98873,Entire home/apt,179,10,0,,,1,313 +36174744,an L.E.S. Jewel-in-the-Crown of Chinatown!,2344295,Yoav,Manhattan,Lower East Side,40.71752,-73.99147,Private room,260,2,0,,,1,23 +36175342,South Park Slope 2 BR Garden-Level - Brand New!,48164151,Todd,Brooklyn,Sunset Park,40.66294,-73.99146,Entire home/apt,250,3,0,,,1,85 +36175552,Large Apartment by Central Park with an Elevator!!,139995595,Eli,Manhattan,Upper West Side,40.78331,-73.9747,Entire home/apt,115,30,0,,,1,103 +36175721,Historic Beach Bungalow-Steps to train- By Beach,271844440,Timothy,Queens,Rockaway Beach,40.58967,-73.81351,Entire home/apt,129,1,0,,,3,172 +36176125,2 Bedroom 10 Minutes from JFK on the 1st floor,52997121,Iwona,Queens,Jamaica,40.67606,-73.78288,Entire home/apt,250,1,0,,,4,90 +36176586,BRAND NEW KING 2br Airports& Times Sq MINUTES away,272080566,Sarah,Queens,Elmhurst,40.7348,-73.86906,Entire home/apt,199,2,0,,,1,157 +36176688,Quaint Little Reader’s Retreat in Hudson Heights.,272081051,Isabelle,Manhattan,Washington Heights,40.85342,-73.93714,Entire home/apt,99,3,0,,,1,34 +36176909,Large Apartment by Union Sqaure with an Elevator!!,183950711,Livne,Manhattan,Gramercy,40.73275,-73.98242,Entire home/apt,125,30,0,,,1,119 +36177135,Historic Rockaway Beach Bungalow-By Subway & Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.58818,-73.81302,Entire home/apt,139,1,1,2019-07-05,1,4,171 +36177241,VJ'S 5 HOUR YACHT TOUR,23732730,Buddy,Bronx,City Island,40.84443,-73.78497,Entire home/apt,1000,1,0,,,4,90 +36177711,Moroccan Lounge*,58629935,Saida,Brooklyn,Bushwick,40.6986,-73.91914,Private room,95,2,1,2019-07-01,1,2,65 +36177747,* Brooklyn's Prospect Park Perfection *,13422723,Zoē,Brooklyn,Flatbush,40.65296,-73.95724,Entire home/apt,90,4,1,2019-07-03,1,1,14 +36178444,Your relaxing escape - studio apartment in NYC,1134155,Hadeel,Manhattan,Morningside Heights,40.80739,-73.96068,Entire home/apt,150,2,0,,,1,33 +36178893,♥~Cutest apartment in the East Village~♥,222487531,Andi,Manhattan,East Village,40.73061,-73.98409,Entire home/apt,215,2,0,,,1,109 +36180341,VIP Pristine Luxury 2BED Prime Midtown west,84749340,Pierre,Manhattan,Upper West Side,40.76836,-73.98419,Entire home/apt,245,1,0,,,1,287 +36180667,Pristine Bedroom in Historic Harlem Neighborhood,33362434,Melani,Manhattan,Harlem,40.81795,-73.94099,Private room,100,2,0,,,1,15 +36180945,✰ Manhattan Bridge ✰ STUDIO / w. Private Backyard,272118165,Feliks,Manhattan,Chinatown,40.71387,-73.99427,Entire home/apt,155,5,0,,,1,165 +36181000,Charming brownstone in the heart of Brooklyn!,30730392,Vlada,Brooklyn,Clinton Hill,40.6898,-73.96731,Entire home/apt,122,4,1,2019-06-29,1,1,31 +36181391,Woman Flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64493,-73.99597,Shared room,35,1,0,,,4,362 +36182083,Comfortable apartment in BUSHWICK by GATES stop(J),272127488,Jim&Daniela,Brooklyn,Bushwick,40.69206,-73.92282,Entire home/apt,80,1,0,,,2,13 +36182136,House by the beach side,234781729,Nikky,Queens,Edgemere,40.59309,-73.77958,Private room,65,1,2,2019-07-06,2,1,363 +36182317,"Sunny room in Sunset Park, Brooklyn",271681014,Ying Hua,Brooklyn,Borough Park,40.6466,-73.99751,Private room,45,1,0,,,3,151 +36182715,Connected rooms with single twin bed per room,271681014,Ying Hua,Brooklyn,Borough Park,40.64452,-73.99699,Private room,45,1,0,,,3,179 +36182794,"Two Bedrooms with Four Beds, Bathroom, Kitchenette",266092932,Blanca,Manhattan,Hell's Kitchen,40.75732,-73.99312,Entire home/apt,229,2,0,,,2,335 +36182819,Luxurious Studio One Stop To Manhattan!,247335568,Evelyn,Queens,Long Island City,40.74717,-73.94254,Entire home/apt,200,1,0,,,7,5 +36183003,Private bedroom withWiFi minutes from Central Park,82406306,Marc,Manhattan,East Harlem,40.80128,-73.93991,Private room,78,1,0,,,2,13 +36185385,Comfy Artistic Private Studio in Brooklyn,193345547,Victorine,Brooklyn,Bushwick,40.69953,-73.92154,Entire home/apt,110,1,1,2019-07-07,1,2,353 +36186519,The Perfume Lab Inspiration Duplex of Brooklyn,193345547,Victorine,Brooklyn,Bushwick,40.69987,-73.92203,Entire home/apt,135,1,0,,,2,331 +36186719,Private Bedroom in the Heart of Chelsea!,268920555,Terrence Jake,Manhattan,Chelsea,40.74531,-73.99454,Private room,999,30,0,,,1,270 +36188287,Available for 4th July to 6th July,129250918,Manthan,Brooklyn,Fort Greene,40.68781,-73.98012,Shared room,200,1,0,,,1,9 +36188485,Lovely Room in Williamsburg,47604405,Mariana,Brooklyn,Williamsburg,40.70957,-73.94995,Entire home/apt,50,28,0,,,1,274 +36189195,Next to Times Square/Javits/MSG! Amazing 1BR!,270214015,Rogelio,Manhattan,Hell's Kitchen,40.75533,-73.99866,Entire home/apt,2999,30,0,,,1,222 +36189257,2BR Near Museum Mile! Upper East Side!,272166348,Mary Rotsen,Manhattan,Upper East Side,40.78132,-73.95262,Entire home/apt,1999,30,0,,,1,270 +36196038,Room in Artsy Loft in the Upper West Side,73056987,Oscar,Manhattan,Upper West Side,40.7988,-73.97277,Private room,200,3,0,,,1,114 +36197063,Small private room 2 windows,2793778,Fernando,Queens,Forest Hills,40.71716,-73.83452,Private room,50,4,0,,,5,55 +36198430,Spacious Modern Apt Steinway Piano Lincoln Center,42104268,Izzy,Manhattan,Upper West Side,40.77649,-73.988,Private room,195,1,1,2019-06-30,1,1,36 +36198599,Book a room with views!,272241217,Anthony,Manhattan,Lower East Side,40.71197,-73.99019,Private room,70,1,1,2019-06-30,1,1,50 +36199090,ROMANTIC SUNSET YACHT CRUISE & FIREWORKS,23732730,Buddy,Bronx,City Island,40.84295,-73.78433,Entire home/apt,600,1,0,,,4,44 +36199092,Green flat with patio in New York artistic best,167024334,Mani,Brooklyn,Bushwick,40.701,-73.9243,Entire home/apt,150,2,0,,,2,331 +36199363,Furnished room for rent in Bronx SINGLE FEMALE,272247972,Kadeen,Bronx,Olinville,40.88116,-73.86547,Shared room,25,90,0,,,1,190 +36200103,Quite boutique type time share,272243990,Victoria,Manhattan,Midtown,40.76358,-73.97825,Entire home/apt,180,1,0,,,1,57 +36200256,"Light, airy, spacious room in the heart of BK!",18911497,Maryam,Brooklyn,Boerum Hill,40.68784,-73.98579,Private room,80,20,0,,,1,40 +36200527,"Calm, quiet space with natural creations.",11386608,Shaun,Brooklyn,Bedford-Stuyvesant,40.69265,-73.93201,Private room,35,9,0,,,1,179 +36200778,Cozy bedroom in BUSHWICK by GATES stop J Train!!!,272127488,Jim&Daniela,Brooklyn,Bushwick,40.69048,-73.92258,Private room,55,1,0,,,2,276 +36201203,Quiet Studio in the UWS by Central Park,84163854,Martha,Manhattan,Upper West Side,40.77883,-73.98146,Entire home/apt,162,2,0,,,1,12 +36201233,Comfortable Main Bedroom in Brooklyn,48018277,Alejandro,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94089,Private room,95,2,0,,,2,47 +36201685,"Cozy, serene sanctuary for one",26325723,Suzana,Manhattan,Upper East Side,40.77365,-73.94961,Private room,80,1,0,,,1,56 +36201798,A specious and bright 1 bedroom in hart of Queens,272267421,Darkhan,Queens,Maspeth,40.73455,-73.88899,Private room,50,1,0,,,3,73 +36202006,Stream-Pressed Paradise (Laundry Room Setup),43392243,Rita,Staten Island,Concord,40.6011,-74.0783,Shared room,30,2,0,,,4,82 +36202550,Beautiful 1-br with Spectacular View,144606000,Tiffany,Manhattan,Upper West Side,40.80064,-73.96778,Entire home/apt,250,14,0,,,1,34 +36203757,Classic Brooklyn Apartment,29590865,Colleen,Brooklyn,Bay Ridge,40.6327,-74.03145,Entire home/apt,125,5,0,,,1,15 +36203812,Spacious 2 story home in the heart of Manhattan,3061951,Wissam,Manhattan,Midtown,40.74422,-73.98172,Entire home/apt,190,5,0,,,1,10 +36204103,$2000 / Huge 1br - Cobble Hill | 8/1 start,95054582,Saba,Brooklyn,Cobble Hill,40.68719,-73.99515,Private room,70,60,0,,,1,156 +36204465,"Bushwick Central Avenue, between L and J train.",272265146,Alexander,Brooklyn,Bushwick,40.68822,-73.90979,Private room,50,1,0,,,1,19 +36204503,Private studio in New York most artistic Bushwick,167024334,Mani,Brooklyn,Bushwick,40.70286,-73.92697,Entire home/apt,120,1,0,,,2,339 +36204696,Perfect room in Brooklyn,263282580,Caritas,Brooklyn,Bedford-Stuyvesant,40.69567,-73.93431,Private room,45,1,1,2019-07-01,1,2,362 +36204725,Beautiful Bushwick bedroom w/backyard balcony!,10004428,Larena,Brooklyn,Bushwick,40.69128,-73.92078,Private room,75,4,0,,,1,6 +36205494,bensonhurst area,60456157,Muhammad Tahir Khan,Brooklyn,Gravesend,40.59671,-73.98741,Private room,85,7,0,,,1,365 +36205674,Large Sunny Room Available,328898,Damion,Manhattan,East Harlem,40.80041,-73.94615,Private room,59,1,1,2019-07-07,1,1,42 +36205697,Room with private bathroom,261187437,Shasha,Brooklyn,Borough Park,40.63392,-74.00505,Private room,69,1,0,,,6,180 +36205851,Entire Spacious Apartment in UWS near Central Park,140997060,Amy,Manhattan,Upper West Side,40.77824,-73.98325,Entire home/apt,275,3,0,,,2,24 +36206001,Light Filled 1-BDR Apartment Bed-Stuy / Bushwick,2485019,Vera,Brooklyn,Bedford-Stuyvesant,40.68301,-73.9138,Entire home/apt,95,4,0,,,1,14 +36206021,The Perfect Upper East Side Apartment,6754647,Daniel,Manhattan,Upper East Side,40.76163,-73.96319,Entire home/apt,161,1,0,,,1,22 +36206222,Ladies Flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64283,-73.99416,Shared room,30,1,0,,,4,365 +36206264,New Unit w/ Private Gym in Bushwick (10% off!),141718825,Richard,Brooklyn,Bushwick,40.69341,-73.9215,Private room,125,1,0,,,1,351 +36206540,Beautiful Sun-Drenched Private Room South Slope,2981481,Bridge & Samanta,Brooklyn,Sunset Park,40.661,-73.99618,Private room,80,2,0,,,1,61 +36206655,Sunny & Spacious apartment in Crown Heights,177067211,Ian,Brooklyn,Crown Heights,40.67556,-73.94418,Entire home/apt,99,15,0,,,1,34 +36206788,Best 1 bedroom apartment in NYC,272308792,Takeshia,Bronx,Longwood,40.81629,-73.90945,Entire home/apt,85,1,1,2019-07-06,1,1,14 +36206792,Woman Flower (only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64426,-73.99385,Shared room,35,1,0,,,4,365 +36206797,Violet. flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64335,-73.9956,Shared room,35,1,0,,,4,174 +36207223,"Sunny, Spacious 2-bd Chelsea Apt",5723770,Olive,Manhattan,Chelsea,40.74921,-73.99777,Entire home/apt,750,1,0,,,1,89 +36207244,Super Cool & Friendly Pad in Prime AreaofBushwick,272314085,Biagio,Brooklyn,Bushwick,40.69718,-73.92328,Private room,44,1,2,2019-07-05,2,1,55 +36207527,Bright and Cozy Uptown Retreat,43388555,Kristen,Manhattan,Washington Heights,40.85139,-73.92952,Entire home/apt,120,2,0,,,1,37 +36207556,Beautiful apartment steps away from Central Park,192572987,Stewart,Manhattan,Upper West Side,40.79617,-73.96228,Entire home/apt,125,2,0,,,1,0 +36207836,Big Room close to LGA Airport. Cuarto Grande.,157053317,Jey,Queens,East Elmhurst,40.76263,-73.88999,Private room,40,1,0,,,1,318 +36208138,Best Location! 3BR / 1 BA Chelsea! Steps to Penn!,266149167,Jhon Carlos,Manhattan,Chelsea,40.74995,-73.99711,Entire home/apt,234,2,0,,,1,19 +36208160,PVT spacious room in queens near airports,272324119,Abe,Queens,Jamaica,40.70642,-73.78365,Private room,39,2,0,,,1,54 +36208936,3min to subway - Modern 3BR with walk-in closet,160895899,Patty,Brooklyn,Crown Heights,40.67644,-73.94005,Entire home/apt,167,3,0,,,1,166 +36209003,A homey home.,272327753,Robert,Brooklyn,Bay Ridge,40.62373,-74.02676,Entire home/apt,200,1,2,2019-07-08,2,1,356 +36209463,New Studio Great Location in NYC,268248281,Jimmy,Manhattan,Chelsea,40.75264,-73.99785,Entire home/apt,225,3,0,,,1,80 +36210527,Room with a private bathroom,270849897,Helen,Manhattan,Washington Heights,40.83958,-73.94323,Private room,70,1,0,,,2,90 +36210603,Large River view room with king size bed,270849897,Helen,Manhattan,Washington Heights,40.83967,-73.94189,Private room,70,1,0,,,2,165 +36210670,little Oasis in New York artistic best Bushwick,272342845,Marc,Brooklyn,Bushwick,40.70181,-73.92541,Entire home/apt,120,30,0,,,2,338 +36210915,Beautiful apartment in old-style Brooklyn,60983246,Carlos,Brooklyn,Borough Park,40.63032,-73.9936,Entire home/apt,103,6,0,,,1,18 +36211538,Spacious getaway room in the heart of Bedstuy,139171543,Garth,Brooklyn,Bedford-Stuyvesant,40.68294,-73.9258,Private room,66,3,0,,,1,174 +36212415,Beautiful studio in far rockaway,272365275,Abimbola,Queens,Bayswater,40.59947,-73.76468,Private room,55,1,0,,,1,170 +36213323,✨Executive Room One King Bed and Kitchenette✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75237,-73.93342,Private room,89,1,0,,,8,298 +36214351,Authentic Williamsburg Loft,9676462,Iris,Brooklyn,Williamsburg,40.71127,-73.96465,Entire home/apt,200,30,0,,,1,62 +36216103,✨Marvelous Room One Queen and One Full Bed✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75428,-73.93461,Private room,89,1,0,,,8,321 +36221298,Bohemian studio in Midtown,5288346,Lauren,Manhattan,Upper East Side,40.7603,-73.96225,Entire home/apt,120,1,1,2019-07-01,1,1,1 +36221523,"1 bedroom in beautiful, bohemian East Village apt",126974091,Hayley,Manhattan,East Village,40.72823,-73.97967,Private room,100,5,0,,,1,11 +36222367,Garden flat in most artistic New York Bushwick,272342845,Marc,Brooklyn,Bushwick,40.70157,-73.92542,Entire home/apt,160,2,0,,,2,359 +36223123,Fantastic Location in Brooklyn,1409706,Dasi,Brooklyn,Fort Greene,40.68739,-73.97792,Private room,135,6,0,,,2,26 +36223408,Private queen bedroom next to Empire State Bldg,167228202,Sarina,Manhattan,Chelsea,40.74991,-73.98854,Private room,150,3,0,,,1,9 +36224443,Best luxury deal in Manhattan.,158718264,Hoda,Manhattan,Hell's Kitchen,40.76399,-73.98639,Entire home/apt,199,1,0,,,1,36 +36224509,HUGE BEDROOM WITH PATIO ON HISTORIC LENOX AVE!!!,735287,Taprena,Manhattan,Harlem,40.81458,-73.93696,Private room,150,60,0,,,1,215 +36224668,Private BR in Two-Floor Hip Bushwick Apartment,204048342,Alixandra,Brooklyn,Bushwick,40.70428,-73.92439,Private room,70,1,0,,,1,1 +36224876,Upper East Side Apt By The Water,46232598,Caitlin,Manhattan,Upper East Side,40.77001,-73.94915,Entire home/apt,150,1,1,2019-07-01,1,1,130 +36226035,Entire cozy apartment with Manhattan views,127388906,Carrie,Queens,Astoria,40.759,-73.9159,Entire home/apt,120,3,0,,,1,32 +36227045,Three Bedroom - Newly Renovated- Close to all!,90929344,Caroline,Queens,Astoria,40.75831,-73.9263,Entire home/apt,200,1,0,,,1,2 +36227447,"Minimal Rockaway Beach Studio-By Subway,JFK&Beach",271844440,Timothy,Queens,Rockaway Beach,40.59029,-73.81277,Entire home/apt,99,1,1,2019-07-04,1,3,176 +36227884,New York Guest House Private Shared Room,272477673,Jin,Manhattan,Chelsea,40.74714,-73.99117,Shared room,67,1,0,,,3,323 +36228485,Prospect Park Gem! One Room One Block from Park!,3678447,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65494,-73.9603,Private room,150,2,0,,,1,27 +36228538,Great location. Great view. Brand new Apartment,12776694,Oren,Manhattan,Upper East Side,40.76135,-73.96139,Entire home/apt,250,8,0,,,1,39 +36228780,REAL 1BR+ Entire Apt+ Pet ok+ Amazing location!!,211353297,Kiko,Manhattan,East Harlem,40.80396,-73.94038,Entire home/apt,125,3,0,,,1,25 +36228909,Sunny SoHo Penthouse w/ Pvt. Terrace!,272485928,Michael,Manhattan,SoHo,40.72336,-74.00465,Entire home/apt,600,3,0,,,1,179 +36229225,NYC Cozy Apt,272485617,Jean-Joseph,Bronx,Port Morris,40.80626,-73.92815,Entire home/apt,117,4,0,,,1,290 +36229420,Older 1st Floor in Rockaway House-By Subway&Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.5879,-73.81269,Entire home/apt,99,1,1,2019-07-06,1,4,162 +36229615,Deluxe Private Unit in Spacious Bedstuy Apartment,53243644,Omri,Brooklyn,Bedford-Stuyvesant,40.69242,-73.94133,Private room,60,1,0,,,2,20 +36230800,Queens room,234224181,Tafari,Queens,Rosedale,40.65933,-73.73993,Private room,34,1,0,,,1,89 +36231329,Large Designer One Bedroom on West 72nd,43461100,Keren,Manhattan,Upper West Side,40.77735,-73.98072,Entire home/apt,240,7,0,,,1,35 +36231580,"Great space, very large room, excellent location",1409706,Dasi,Brooklyn,Fort Greene,40.68889,-73.97632,Private room,130,6,1,2019-07-02,1,2,29 +36232432,Room in furnished & light-filled BRKLYN apartment,242573197,Emily,Brooklyn,Flatbush,40.64428,-73.96988,Private room,50,3,0,,,1,11 +36232835,Spacious 3 bedroom in the heart of Brooklyn,67670026,Deb,Brooklyn,Bedford-Stuyvesant,40.69286,-73.94195,Entire home/apt,85,2,0,,,1,17 +36233091,1 room in bushwick,258998574,Emily,Brooklyn,Bushwick,40.70384,-73.92232,Private room,40,2,1,2019-07-03,1,1,16 +36233195,Welcome home buddies in NYC,121399223,Weifeng,Staten Island,Tompkinsville,40.6283,-74.08645,Private room,60,1,0,,,1,88 +36233578,"✨Spacious bedroom│walkable to UN, Empire State✨",173417532,Ed,Manhattan,Murray Hill,40.74943,-73.97173,Private room,150,1,0,,,3,82 +36234373,Designer duplex in historic Brooklyn Brownstone,8986298,Amory,Brooklyn,Bedford-Stuyvesant,40.68463,-73.95161,Entire home/apt,150,5,0,,,1,43 +36235150,Sky View beautiful apt in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,1,2019-07-07,1,3,340 +36235154,Top on Manhattan,3850264,Jason,Manhattan,Harlem,40.80658,-73.95736,Private room,138,3,1,2019-07-03,1,2,65 +36235186,Walk to Times SQ! Simple room in heart of NYC,62241191,Jonathan,Manhattan,Hell's Kitchen,40.75512,-73.99437,Private room,85,1,0,,,1,6 +36236013,READY BED GO the goal is to make u feel at home,256197494,Emanuel,Brooklyn,Cypress Hills,40.68042,-73.88978,Private room,75,1,1,2019-07-05,1,1,82 +36236367,金城发suit3. (single room with twin bed),255641440,Li,Queens,Flushing,40.75138,-73.81515,Private room,35,1,0,,,7,358 +36236389,Large room(Brooklyn) - 20 min to the beach+comfort,271162941,Anna,Brooklyn,Midwood,40.62477,-73.95517,Private room,100,1,0,,,3,330 +36236515,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN#3.,178272943,Sharon,Queens,Jamaica,40.67189,-73.78008,Private room,50,1,0,,,4,70 +36236767,Small Comfy space,104028121,Diana,Manhattan,Washington Heights,40.85044,-73.93042,Private room,41,1,0,,,1,38 +36236981,~MANHATTAN CENTRAL~,268598775,Al,Manhattan,Lower East Side,40.71984,-73.9865,Entire home/apt,249,3,0,,,1,91 +36237507,Amazing private bedroom next to Central Pk & Sub,272557714,Eva,Manhattan,Upper West Side,40.79993,-73.96475,Private room,137,3,0,,,1,44 +36237529,"Beautiful Cozy Room, 20mn to FREE ferry",272557707,Marouene,Staten Island,Rosebank,40.6075,-74.07979,Private room,65,1,1,2019-07-05,1,1,179 +36237913,Spacious Soho Loft,49346143,Nicole,Manhattan,Nolita,40.72309,-73.99412,Entire home/apt,270,3,0,,,1,152 +36237967,Gorgeous 5th FL Walk-up Historic Harlem Sugar Hill,1687367,Mike,Manhattan,Harlem,40.82913,-73.94484,Entire home/apt,199,2,0,,,1,71 +36238485,Chic Room in Williamsburg + Backyard +Washer Dryer,22157126,Ryan,Brooklyn,Williamsburg,40.71773,-73.94159,Private room,91,2,1,2019-07-04,1,1,344 +36238864,Home away from home 2BDR apartment,272571748,Maurissa,Brooklyn,Canarsie,40.63836,-73.89387,Entire home/apt,160,2,0,,,1,349 +36239107,Exposed brickwall flat in the heart of Greenpoint,15550310,Oda,Brooklyn,Greenpoint,40.72931,-73.95515,Entire home/apt,115,3,0,,,1,8 +36239113,Greenwich Village Private Room and shared Bath,177402508,Jahlyn,Manhattan,West Village,40.73495,-74.00583,Private room,200,2,0,,,1,32 +36239436,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room4,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67762,-73.91565,Private room,46,30,0,,,5,246 +36241283,Enjoy your friendly stay at my place,267943725,Lana,Brooklyn,Midwood,40.62555,-73.95724,Private room,50,1,1,2019-07-02,1,1,86 +36241782,Classic Brooklyn Loft (East Williamsburg/Bushwick),12091973,Ap,Brooklyn,Williamsburg,40.70518,-73.93794,Private room,100,1,1,2019-07-06,1,1,1 +36241854,Union Square Private Apt,272596313,David Bruce,Manhattan,Gramercy,40.7358,-73.99074,Entire home/apt,150,7,0,,,1,29 +36241914,"❥❥❥*NYC Room: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69342,-73.8684,Private room,55,4,0,,,6,150 +36242888,Upper East Site Luxury 2 Bed rooms,12579773,Jean-Nicolas,Manhattan,Upper East Side,40.76996,-73.95117,Private room,220,4,1,2019-07-03,1,1,15 +36243050,spacious space privated room #1,35783912,Pi & Leo,Bronx,Fordham,40.86355,-73.89234,Private room,39,2,0,,,8,58 +36243129,Brand New Private 5 bedrooms apartment ##5,35783912,Pi & Leo,Bronx,Fordham,40.86265,-73.89263,Entire home/apt,178,2,0,,,8,89 +36243183,Spacious private room #2,35783912,Pi & Leo,Bronx,Fordham,40.86264,-73.89139,Private room,29,2,0,,,8,81 +36243240,spacious private room #3,35783912,Pi & Leo,Bronx,Fordham,40.86263,-73.89088,Private room,33,2,0,,,8,84 +36243744,"Single bed step to Citi Field, LGA, JFK,Manhattan",217463199,Marvy,Queens,Flushing,40.74344,-73.82642,Private room,45,3,0,,,4,365 +36243764,"2bed bedroom step to LGA, JFK bus to Manhattan",217463199,Marvy,Queens,Flushing,40.74407,-73.82645,Private room,75,3,0,,,4,362 +36244479,Private Room: Have your own and share some comm,272609175,Avi,Brooklyn,Flatlands,40.61813,-73.94253,Private room,70,2,0,,,1,365 +36253150,Quaint And Cozy Beach House Close To All!!,43282809,Sue Ellen,Queens,Rockaway Beach,40.58954,-73.81361,Entire home/apt,125,1,0,,,1,67 +36254789,Huge 3 bdrm apartment on the beach paradise,105620188,Michail,Queens,Belle Harbor,40.57762,-73.84462,Entire home/apt,350,3,0,,,1,41 +36255515,Chill in Style - A Music Producer's Dream Pad,66486652,Micah,Manhattan,Upper East Side,40.77439,-73.95047,Entire home/apt,242,3,0,,,1,17 +36256460,Great room in an amazing loft - style apartment,59513442,Hannah,Manhattan,Gramercy,40.73619,-73.98022,Private room,88,18,0,,,1,33 +36259636,2 Bedroom Family Apartment in a Quiet Neighborhood,85261578,Ted,Brooklyn,Flatbush,40.64105,-73.9595,Entire home/apt,195,5,0,,,1,6 +36260895,Midtown 34th st 1 Br apt with patio!,24856484,Mike,Manhattan,Murray Hill,40.74506,-73.97362,Entire home/apt,400,2,0,,,1,66 +36262579,Amazing bedroom with Backyard close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94314,Private room,77,2,0,,,7,153 +36262925,Amazing 1BR Apartment near Columbia University,6186588,Julio,Manhattan,Morningside Heights,40.81546,-73.95823,Entire home/apt,150,2,0,,,1,10 +36264087,Sun filled apartment in SoHo/Nolita,23780133,Justine,Manhattan,Nolita,40.72349,-73.99322,Entire home/apt,180,3,0,,,1,14 +36264980,Times Square River View,272747534,Ali,Manhattan,Hell's Kitchen,40.75987,-73.99615,Private room,125,2,0,,,1,41 +36265137,"Cozy, modern room close to Manhattan for 2 guests",272748063,Rosana,Queens,Woodside,40.75496,-73.90685,Private room,50,7,0,,,1,0 +36265549,Perfect Location - Midtown Manhattan Modern 2BD!,272747109,Lynn,Manhattan,Kips Bay,40.74612,-73.9796,Entire home/apt,220,4,0,,,1,78 +36265557,"Lovely 2 bedroom on Prospect Park, near subway",23905369,Shadi,Brooklyn,Prospect-Lefferts Gardens,40.66148,-73.96248,Entire home/apt,100,3,0,,,1,165 +36265677,Best Brooklyn room w/ bathroom close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69563,-73.94197,Private room,77,2,0,,,7,165 +36265970,Comfortable Brooklyn room close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69549,-73.9416,Private room,77,2,0,,,7,150 +36266227,LaGuardia airport hub and very close to Manhattan,116027328,Aymen,Queens,East Elmhurst,40.76565,-73.88278,Private room,45,1,0,,,1,45 +36266639,Small and Cozy room only 4 stations to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69685,-73.94372,Private room,77,2,0,,,7,169 +36266960,Cozy bedroom in a great Apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66662,-73.9936,Private room,51,1,0,,,3,333 +36267023,Humble Hutch in the Heights,10002937,Cameron,Manhattan,Washington Heights,40.84267,-73.93816,Entire home/apt,85,1,0,,,1,1 +36267230,Spacious bedroom only 4 stations to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.6963,-73.94365,Private room,77,2,0,,,7,170 +36267546,A Home Away From Home,233485864,Jeannie,Staten Island,New Dorp Beach,40.56506,-74.1024,Private room,40,1,0,,,2,341 +36267904,Gorgeous bedroom in Brooklyn close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69684,-73.94257,Private room,77,2,0,,,7,168 +36268101,Adorable apartment decorated with local art.,95143048,Jeffree,Manhattan,East Village,40.72384,-73.98791,Entire home/apt,200,2,0,,,2,314 +36268350,Beautiful Brooklyn room close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69653,-73.94213,Private room,77,2,0,,,7,147 +36268615,"Small Bedroom, simple & clean. Nice apt. Yard.",19797950,Shepherd,Brooklyn,Gowanus,40.66684,-73.99333,Private room,51,1,0,,,3,333 +36270376,"Beautiful home on Staten Island, walk to ferry",444904,Janine,Staten Island,St. George,40.64005,-74.07987,Entire home/apt,100,365,0,,,1,342 +36270530,Heart of Harlem Studio,272787571,Rj,Manhattan,Harlem,40.81374,-73.9439,Entire home/apt,125,4,0,,,1,158 +36270538,big nice warm place in Stuytown,70343342,Veco,Manhattan,Stuyvesant Town,40.73258,-73.98039,Private room,99,5,0,,,1,12 +36270801,One Bedroom Walk to Central Park or Times Square!,159239228,Touie,Manhattan,Hell's Kitchen,40.76595,-73.98661,Entire home/apt,190,4,0,,,1,158 +36270864,Luxury one bedroom in Fort Green,6077516,Juliana,Brooklyn,Downtown Brooklyn,40.69751,-73.98536,Entire home/apt,200,3,0,,,1,0 +36271603,Big Beautiful Apartment on Flatbush ave near Park,272796645,Toby,Brooklyn,Prospect-Lefferts Gardens,40.65567,-73.96125,Entire home/apt,199,2,0,,,1,141 +36272531,Charming TriBeCa Loft - Avail for Summer,194377959,Natasha,Manhattan,Tribeca,40.72262,-74.00861,Entire home/apt,250,21,0,,,1,66 +36272851,Private Bedroom in a Prewar Gramercy Building!*,19962052,Thikshan,Manhattan,Kips Bay,40.73929,-73.98183,Private room,135,2,1,2019-07-07,1,3,41 +36273046,Elegant Spacious UES private room,267839371,Celine,Manhattan,Upper East Side,40.77551,-73.95404,Private room,120,1,1,2019-07-06,1,2,358 +36273876,Manhattan cute sofa bed,267839371,Celine,Manhattan,Upper East Side,40.77574,-73.95324,Shared room,100,1,0,,,2,360 +36273985,Luxury new private studio one stop to Manhattan,272815283,Chen,Queens,Long Island City,40.74893,-73.93755,Entire home/apt,180,1,0,,,1,60 +36274037,Cozy Wall Street Studio,272816114,Schmid,Manhattan,Financial District,40.70583,-74.01038,Entire home/apt,170,1,1,2019-07-06,1,1,323 +36274279,"10 Mins to Manhattan - 3 Bdr, Duplex Entire House",179256587,Ali,Queens,Sunnyside,40.74907,-73.91892,Entire home/apt,95,5,0,,,1,42 +36274721,Nyc Beach Getaway(20 mins from airport),159382205,Rhonda,Queens,Arverne,40.59291,-73.78708,Shared room,39,1,0,,,2,43 +36275438,Private 1 bedroom apartment,137094460,Adesola,Queens,Springfield Gardens,40.66015,-73.7528,Entire home/apt,100,2,0,,,1,13 +36275631,❤️Ever best located cozy flat❤️,271624892,Alex,Manhattan,Hell's Kitchen,40.76356,-73.98823,Entire home/apt,330,1,0,,,1,180 +36275781,Private Bedroom in Duplex in Williamsburg,271282883,Terence,Brooklyn,Greenpoint,40.72613,-73.9426,Private room,109,6,0,,,2,54 +36275809,Cozy 1BR Apartment in Upper East Side New York,272829356,David,Manhattan,Upper East Side,40.77469,-73.95181,Entire home/apt,230,3,0,,,1,350 +36276166,"room in 3-bedroom house , Central Brooklyn",144107218,Israel,Brooklyn,East Flatbush,40.65823,-73.93459,Private room,55,1,0,,,1,316 +36276355,"Modern, Spacious Brooklyn Museum Home",199696316,Joanna,Brooklyn,Crown Heights,40.66709,-73.96095,Entire home/apt,150,2,0,,,1,6 +36276474,Modern Luxury in Brooklyn's Premier Neighborhood,494507,Elizabeth,Brooklyn,Gowanus,40.67587,-73.98418,Private room,100,5,0,,,1,91 +36276575,Prime West Village One Bedroom,6432439,Annie,Manhattan,West Village,40.73477,-74.00246,Entire home/apt,299,3,0,,,1,107 +36276859,NYC STYLE - SUBWAY AREA 10 MINUTES TO TIMES SQUARE,24187843,Lucy,Queens,Astoria,40.76462,-73.91039,Entire home/apt,180,2,0,,,1,365 +36276938,FUNKY FLATBUSH FLAT,179384567,Isa,Brooklyn,East Flatbush,40.64165,-73.9282,Entire home/apt,159,7,0,,,1,343 +36276943,Brand New & Cozy Private Bedroom w/ Full Bed !!,272838881,Isabella,Brooklyn,Bushwick,40.69027,-73.91376,Private room,60,2,0,,,1,74 +36277331,Gossip Girl Pied-à-terre @ Central Park and Plaza,272842040,Aly,Manhattan,Upper East Side,40.76703,-73.96979,Entire home/apt,225,2,0,,,1,39 +36277545,On the Waterfront Is Yours!,7460932,Wylie,Brooklyn,Columbia St,40.68174,-74.00483,Entire home/apt,94,5,0,,,1,5 +36277571,FANTASTIC APT IN THE HEART OF THE EAST VILLAGE,261612429,Peter,Manhattan,East Village,40.72627,-73.98543,Entire home/apt,207,30,0,,,1,55 +36277598,Hell's Kitchen Heaven,272317337,Boris,Manhattan,Hell's Kitchen,40.76294,-73.99167,Entire home/apt,170,3,0,,,1,188 +36277784,Quiet crash pad in Bushwick,52371107,Joe,Brooklyn,Bushwick,40.69212,-73.92521,Private room,40,1,0,,,1,33 +36278431,Furnished Bedroom in FiDi Apt for Sublet,17728651,Steph,Manhattan,Financial District,40.70847,-74.00498,Private room,57,1,0,,,1,7 +36278924,"Clean & Spacious 2 BR in DwnTwn NYC, Walk to UNSQ!",272856249,Alex,Manhattan,Gramercy,40.73258,-73.9819,Entire home/apt,300,10,0,,,1,33 +36278959,"Bright and sunny clean, cute Upper East side oasis",29570399,Sean,Manhattan,Upper East Side,40.77488,-73.94934,Entire home/apt,210,2,0,,,1,106 +36278966,Cozy bright room with half bath and bunk beds,38858002,Phillip,Manhattan,Washington Heights,40.84467,-73.94289,Private room,90,1,0,,,1,12 +36279030,Good-looking Room,272602584,Cherry,Manhattan,Kips Bay,40.7401,-73.98256,Private room,70,20,0,,,1,314 +36279099,"PRIME LOCATION, Private 2BR in UNION SQUARE",264621546,Marcelo,Manhattan,East Village,40.73123,-73.98896,Entire home/apt,400,2,0,,,1,90 +36279106,This is your Happy Place in Brooklyn NYC,172693570,Leodelys,Brooklyn,Bushwick,40.69196,-73.91143,Private room,45,1,0,,,1,8 +36279375,"Cozy, bohemian vibe private room",220991097,Jessica,Brooklyn,East New York,40.67303,-73.88621,Private room,50,1,0,,,1,166 +36279837,Art and View authentic Williamsburg Loft,272865451,Roberto,Brooklyn,Williamsburg,40.71299,-73.96559,Entire home/apt,280,2,0,,,1,318 +36280357,"Bright and sunny top floor, spacious apartment",49037454,Nicole,Manhattan,Chelsea,40.74218,-73.99813,Entire home/apt,150,5,0,,,1,4 +36280646,"Cable and wfi, L/G included.",272872092,Chris,Queens,Forest Hills,40.73657,-73.85088,Entire home/apt,16,9,1,2019-07-07,1,1,322 +36280703,Open light loft in the heart of Manhattan,99927578,Maria,Manhattan,Hell's Kitchen,40.75906,-73.99049,Entire home/apt,300,5,0,,,1,83 +36280858,"【Brooklyn N, R地铁口 45街阳光主卧7月短租】限女生,Only girls",122963021,莹,Brooklyn,Sunset Park,40.65012,-74.00867,Private room,30,7,0,,,1,190 +36281050,"Beautiful, Sunny Loft Studio in Heart of Chelsea",15439713,Javier,Manhattan,Chelsea,40.73916,-74.0006,Entire home/apt,181,1,0,,,1,4 +36281099,Room on the garden in co-op brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.68041,-73.95579,Private room,58,4,0,,,4,29 +36281984,No-frills master bedroom in spacious Bushwick flat,45909314,Andrew,Brooklyn,Bushwick,40.69807,-73.93466,Private room,55,1,0,,,1,14 +36282009,Private Room in a beautiful 2 BR apartment,213428885,Anas,Manhattan,Harlem,40.80707,-73.95242,Private room,40,20,0,,,1,273 +36282108,Great apartment in downtown NYC for August,45623497,Kristy,Manhattan,Battery Park City,40.70974,-74.01774,Entire home/apt,105,30,0,,,1,31 +36282337,Sunny Jr 1 Bed in Clinton Hill,17211451,Jamila,Brooklyn,Clinton Hill,40.68316,-73.96289,Entire home/apt,84,30,0,,,1,39 +36282795,Brooklyn hot party place with jaccuzi,270554496,Marie,Brooklyn,Bedford-Stuyvesant,40.69246,-73.93427,Private room,450,1,0,,,1,179 +36283398,Dream House,174496733,Francis,Bronx,Clason Point,40.80655,-73.85093,Entire home/apt,379,3,0,,,1,167 +36284725,Gorgeous Room in Manhattan-20mins to Times Square,6057887,Mutaz,Manhattan,Washington Heights,40.84905,-73.93951,Private room,79,3,0,,,5,18 +36285236,Enormous Sunlit Manhattan Room-18m Times Sqr,6057887,Mutaz,Manhattan,Washington Heights,40.84817,-73.93848,Private room,95,3,0,,,5,18 +36285623,Cozy Tiny Room with Prvate Toilet-18m to Times Sqr,6057887,Mutaz,Manhattan,Washington Heights,40.84762,-73.93898,Private room,45,4,0,,,5,7 +36286545,Spacious room near subway,174811960,Heidi,Queens,Ridgewood,40.70864,-73.90034,Private room,55,1,0,,,1,165 +36287314,NYC/ 1st Floor ✰ Prime Duplex ✰ w/ Movie Theatre,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68196,-73.94463,Entire home/apt,165,3,0,,,3,152 +36297217,Bedroom + Private Bathroom. 20 min. to Manhattan,45919617,Ingrid,Queens,Maspeth,40.73792,-73.89201,Private room,65,1,0,,,1,177 +36298737,Fresh & Bright Private Room near J train,5680111,Timothy,Brooklyn,Bushwick,40.6878,-73.91506,Private room,65,4,0,,,7,149 +36299344,Light-filled loft full of happy plants,272994721,Sloane,Brooklyn,Williamsburg,40.70497,-73.9375,Private room,60,5,0,,,1,15 +36301030,Cozy two bedroom nestled in trendy Gramercy,66404497,Gabbie,Manhattan,Gramercy,40.73776,-73.98418,Entire home/apt,250,7,0,,,1,12 +36301344,New Renovated Cozy Private 1 Bedroom Apartment,200927536,Manu,Brooklyn,Bushwick,40.70598,-73.91618,Entire home/apt,129,5,0,,,3,351 +36302523,(2RW) Chic Chelsea Studio Just for You,271275048,Isaac,Manhattan,Chelsea,40.74767,-73.99256,Entire home/apt,109,30,0,,,2,363 +36302780,Beautiful Prospect Heights Brooklyn Townhouse,55108207,Angela,Brooklyn,Prospect Heights,40.67928,-73.97069,Entire home/apt,450,3,0,,,1,31 +36303421,3 Bedroom Apartment in Upper West Side Manhattan,217362657,Josua,Manhattan,Upper West Side,40.79469,-73.96687,Entire home/apt,520,30,0,,,1,310 +36304117,Gorgeous 4 BR Apt in the Heart of Nolita!,273024325,Margaret,Manhattan,Nolita,40.72349,-73.99457,Entire home/apt,316,30,0,,,1,310 +36304817,HugeHipHome 5BR 2 Bath w/ Yard 15 min to Midtown!,143725634,Jennifer,Queens,Long Island City,40.76001,-73.93031,Entire home/apt,450,2,0,,,1,321 +36304897,Cozy Sunnyside Apartment,214095681,Pavel And Sarah,Queens,Sunnyside,40.74583,-73.92268,Entire home/apt,74,15,0,,,2,22 +36305071,Eclectic and Peaceful Suite with Private Bathroom,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93508,Private room,75,2,0,,,2,115 +36305634,Home Away From Home,159382205,Rhonda,Queens,Arverne,40.59173,-73.78668,Shared room,37,1,0,,,2,148 +36305881,Manhattan On The Hill,273038911,Denise,Manhattan,Inwood,40.8683,-73.92161,Entire home/apt,349,2,0,,,1,365 +36305966,Wonderful studio apartment by the ocean line,219987377,Iryna,Brooklyn,Brighton Beach,40.57936,-73.95388,Entire home/apt,150,7,0,,,1,7 +36306938,"Simple, Safe, Clean",23191854,Akiva,Brooklyn,Midwood,40.61231,-73.95448,Private room,44,2,0,,,1,7 +36307792,Private room in spacious East Village oasis,41698272,Rachel,Manhattan,East Village,40.72797,-73.98155,Private room,72,3,0,,,1,170 +36307882,Adorable TriBeCa neighborhood easy subway access!,111768943,Kristin,Manhattan,Tribeca,40.71918,-74.00786,Entire home/apt,169,6,0,,,1,55 +36307890,BEAUTIFUL BEDROOM IN NICE AREA UPTOWN NYC!,139296591,David,Manhattan,Washington Heights,40.83851,-73.94579,Private room,120,3,0,,,1,344 +36308266,A large bedroom with a king size bed in Queens.,272267421,Darkhan,Queens,Maspeth,40.73452,-73.88795,Private room,70,1,0,,,3,75 +36308459,Sunny Spacious Long Island City Apartment,273059367,Efsun,Queens,Long Island City,40.74356,-73.95314,Entire home/apt,250,2,0,,,1,76 +36308562,"Tasteful & Trendy Brooklyn Brownstone, near Train",217732163,Sandy,Brooklyn,Bedford-Stuyvesant,40.68767,-73.95805,Entire home/apt,1369,1,0,,,1,349 +36308600,Cozy and Beautiful Park Slope One Bedroom,74773867,Kailey,Brooklyn,Park Slope,40.67455,-73.98477,Entire home/apt,150,1,1,2019-07-05,1,1,8 +36308658,Room 2: Sunny Queen W Private Bathroom & Breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93345,Private room,75,1,0,,,3,137 +36309284,"Private Room Near JFK, St John's Hospital, & Beach",234090781,Phoenix,Queens,Bayswater,40.60804,-73.75829,Private room,45,3,1,2019-07-04,1,2,90 +36309296,2bed Home on Quiet Block Right by The Action,273057459,Lutfu,Manhattan,Chelsea,40.7404,-73.99853,Entire home/apt,299,2,0,,,1,157 +36309780,LIC Family Apt w/ Plenty of Sleeping Space,143730512,Stephen,Queens,Long Island City,40.75419,-73.93445,Entire home/apt,350,2,0,,,1,312 +36309944,Lavish 1br apartment in New York's Upper East Side,30283594,Kara,Manhattan,Upper East Side,40.76288,-73.95828,Entire home/apt,269,30,0,,,121,333 +36309947,Spacious Upper East Side 1BR apt near attractions,30283594,Kara,Manhattan,Upper East Side,40.76302,-73.95769,Entire home/apt,269,30,0,,,121,318 +36310247,Spacious 1 Bedroom With Private Garden,25498509,Michael,Brooklyn,Clinton Hill,40.68183,-73.96464,Entire home/apt,100,1,0,,,1,6 +36310268,Full size room,171482981,Alejandro,Queens,Maspeth,40.71327,-73.90982,Private room,65,2,1,2019-07-06,1,1,21 +36310353,Staten Island Resort minutes from ferry! Amazing!!,28586423,Danielle,Staten Island,Stapleton,40.62878,-74.07301,Entire home/apt,450,5,0,,,1,88 +36310855,Room 3: Cozy Room w Large Closet & Light Breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.68969,-73.93285,Private room,68,1,1,2019-07-06,1,3,127 +36311055,"Stunning & Stylish Brooklyn Luxury, near Train",245712163,Urvashi,Brooklyn,Bedford-Stuyvesant,40.68245,-73.93417,Entire home/apt,1749,1,0,,,1,303 +36311265,Bright sunny large BK room in shared space,97633452,Noelani,Brooklyn,Williamsburg,40.71437,-73.9437,Private room,150,10,0,,,1,91 +36311334,Amazing 2 Bedrooms with a HUGE living room!!,25585857,Lukas,Manhattan,Upper East Side,40.78324,-73.94734,Entire home/apt,275,6,0,,,1,73 +36311599,Your 1B1B Home in Midtown Clean Cozy & Comfy,180397183,Xiao,Manhattan,Hell's Kitchen,40.76806,-73.99254,Entire home/apt,320,1,0,,,1,90 +36311694,A sunny and huge 1 bedroom in a big private house,272267421,Darkhan,Queens,Maspeth,40.73283,-73.8892,Private room,60,1,0,,,3,90 +36311866,Best location in Bay Ridge. Cozy and private room.,256634262,Jean,Brooklyn,Bay Ridge,40.63107,-74.0255,Private room,46,1,0,,,1,131 +36312088,"Welcoming, Cozy 2 bedroom Home.",273086651,Andres,Queens,Richmond Hill,40.69203,-73.83012,Entire home/apt,185,3,0,,,1,32 +36312324,Great apartment Times Square-Bryant Park,264971021,Raul,Manhattan,Midtown,40.75167,-73.98585,Entire home/apt,325,2,0,,,1,324 +36312522,Modern Room in Heart of Harlem,84333525,Aaron,Manhattan,Harlem,40.81758,-73.94008,Private room,75,2,0,,,1,49 +36312602,A Brooklyn totally private guest unit,269342470,Bracha,Brooklyn,Windsor Terrace,40.64921,-73.97971,Entire home/apt,100,1,0,,,2,11 +36312667,"My Cozy Apartment! +My apartment has the best view!",272870209,Edna,Manhattan,East Village,40.72413,-73.97277,Private room,75,2,0,,,1,365 +36312752,Spacious 1 bedroom Open Concept Apt in E Flatbush.,45631198,Arturo,Brooklyn,East Flatbush,40.63845,-73.94365,Entire home/apt,63,1,0,,,1,19 +36312899,Sunny Loft top location in Bushwick / Ridgewood,5958193,Majo,Queens,Ridgewood,40.69326,-73.90316,Entire home/apt,140,2,0,,,1,62 +36312994,Cosy and quiet studio near Columbia University,2019485,Maria,Manhattan,Morningside Heights,40.8075,-73.96679,Entire home/apt,103,3,0,,,1,40 +36312999,Perfect Place to stay in Manhattan,86813128,Tiffany,Manhattan,East Harlem,40.81488,-73.93458,Private room,65,4,0,,,1,10 +36313048,Sunny room with private entrance in shared home,16883913,Tiffany,Queens,Ridgewood,40.69919,-73.89902,Private room,45,1,0,,,1,0 +36313671,July Steal! Up to one month sublet,19510896,Stephanie,Manhattan,Harlem,40.82539,-73.9488,Private room,70,1,0,,,1,5 +36314110,"Quiet, cozy and clean walkup in Greenpoint",17522037,David,Brooklyn,Greenpoint,40.72673,-73.95223,Private room,75,3,0,,,1,23 +36314262,Lg and Lovely 2 bedroom in Astoria. Sleeps up to 8,273101976,Jp,Queens,Astoria,40.75825,-73.90959,Entire home/apt,169,3,0,,,1,151 +36314672,Cute Bedroom in the heart of Bushwick,115168723,Geoffrey,Brooklyn,Bushwick,40.70469,-73.92458,Private room,43,7,0,,,1,12 +36315143,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN.,178272943,Sharon,Queens,Jamaica,40.671,-73.77911,Entire home/apt,250,1,0,,,4,69 +36315267,"Great Soho Apartment "" Renovated & Clean """,138379336,Karin,Manhattan,SoHo,40.72654,-74.00201,Entire home/apt,285,5,0,,,1,365 +36315326,Co-working Professional Respite UWS,28966357,Dorothy,Manhattan,Upper West Side,40.79485,-73.96243,Private room,100,28,0,,,3,337 +36315537,Luxurious Apartment in a Brooklyn Brownstone,273108831,RoseMarie,Brooklyn,Bedford-Stuyvesant,40.6915,-73.9359,Entire home/apt,275,3,0,,,1,365 +36315540,"Cheery 1BR in Chelsea w/Gym, Doorman, great Rooftop views by Blueground",107434423,Blueground,Manhattan,Flatiron District,40.74395,-73.99109,Entire home/apt,321,30,0,,,232,330 +36315612,"Convenient Midtown 1BR w/ Gym, W/D, Doorman, Baclony, by Blueground",107434423,Blueground,Manhattan,Theater District,40.76111,-73.98511,Entire home/apt,303,30,0,,,232,318 +36315657,"Ample SoHo 2BR w/ W/D, View of Kemare Sq., near Subway, by Blueground",107434423,Blueground,Manhattan,SoHo,40.72229,-73.99888,Entire home/apt,466,30,0,,,232,354 +36315692,"Premium Chelsea 1BR w/ Gym, W/D, Doorman, Sundeck, Cinema, by Blueground",107434423,Blueground,Manhattan,Midtown,40.7453,-73.99063,Entire home/apt,338,30,0,,,232,325 +36315721,"Stunning Chelsea 1BR w/ Gym, W/D, Doorman, Sundeck, Cinema, by Blueground",107434423,Blueground,Manhattan,Midtown,40.74444,-73.99015,Entire home/apt,343,30,0,,,232,324 +36315759,"Quaint Tribeca Studio w/ Gym, W/D, Doorman, Garage, Valet, by Blueground",107434423,Blueground,Manhattan,Tribeca,40.713,-74.00991,Entire home/apt,269,30,0,,,232,193 +36315794,Elegant Chelsea 2BR w/ Elevator,107434423,Blueground,Manhattan,Chelsea,40.74451,-73.99939,Entire home/apt,421,30,0,,,232,292 +36315828,Lux Tribeca Studio w/ Pool + Gym + View near City Hall by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71495,-74.00701,Entire home/apt,314,30,0,,,232,299 +36315904,Your Private Duplex Mansion in the HEART of NYC!,269146714,Clinton,Manhattan,West Village,40.7367,-74.00105,Entire home/apt,333,2,0,,,1,336 +36316537,Nice and cozy apartment,35343897,Tatyanna,Brooklyn,Sheepshead Bay,40.60853,-73.96044,Private room,38,12,0,,,1,156 +36316748,Modern Room in the Jungles (15 min to Downtown),31422161,Pavel,Brooklyn,Bedford-Stuyvesant,40.68983,-73.92775,Private room,75,1,0,,,1,76 +36316884,Photography Rooftop for Creatives :),62659791,Chiz,Brooklyn,Crown Heights,40.67833,-73.95349,Shared room,80,1,0,,,2,365 +36316944,3Bed - Spanish Harlem Getaway 2 blocks to 1 train,167089974,Elise,Manhattan,Harlem,40.81893,-73.95417,Entire home/apt,202,3,0,,,1,205 +36317097,"Clinton Hill Oasis, Next To Subway/Citibike,",21261408,Jay,Brooklyn,Clinton Hill,40.68971,-73.96073,Shared room,35,1,0,,,6,345 +36317597,"Alphabet City Cul de Sac, 3 roommates",130159651,Theo,Manhattan,East Village,40.72327,-73.98027,Shared room,40,7,0,,,1,42 +36317980,Cosy 1 bedroom NYC apartment close to Manhattan.,86365675,Aoife,Queens,Astoria,40.76483,-73.91897,Entire home/apt,150,5,0,,,1,348 +36318339,Private Bedroom in Newly Renovated Apartment,273139430,Ethan,Brooklyn,Crown Heights,40.67322,-73.95581,Private room,39,1,0,,,1,14 +36318560,Luxury Sun-filled Private Room near Time Square,52917571,Linda Lou,Manhattan,Midtown,40.75286,-73.99297,Private room,120,2,1,2019-07-06,1,1,7 +36318625,Cozy Private Room in Crown Heights,50213173,Maryam,Brooklyn,Crown Heights,40.67733,-73.94878,Private room,45,30,0,,,1,31 +36318711,Nice and Comfy room with a Queen Size Bed!!,273142559,Nila,Queens,Glendale,40.70428,-73.85726,Private room,40,1,0,,,1,149 +36318764,"Modern, Artistic, Cheap & Chic",21357175,Tomy,Manhattan,Washington Heights,40.8415,-73.93661,Entire home/apt,107,4,0,,,1,9 +36318888,Cute bedroom in ideal location in Williamsburg,14598000,Daniel,Brooklyn,Williamsburg,40.70928,-73.94066,Private room,59,4,0,,,2,297 +36319036,Brooklyn Soul,22566268,Maria,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95675,Private room,110,1,0,,,1,45 +36319154,Nice and large room to rent in a 2 beds apt,221179834,Uri,Brooklyn,Sheepshead Bay,40.60146,-73.94673,Private room,40,2,0,,,1,89 +36319687,Amazing and very large bedroom,167092099,Gili,Manhattan,Upper East Side,40.76887,-73.95894,Entire home/apt,188,1,0,,,1,179 +36319887,Room at cool flat at the coolest place Brooklyn,3247267,Vincenza,Brooklyn,Greenpoint,40.73625,-73.95444,Private room,70,1,0,,,1,70 +36319984,Spacious 1BR 5 min from JFK international Airport,177402890,Brandon,Queens,Cambria Heights,40.69053,-73.73203,Private room,60,1,0,,,1,83 +36320933,Newyork guest house,272477673,Jin,Manhattan,Chelsea,40.74753,-73.9908,Shared room,75,2,0,,,3,336 +36321224,Private bedroom & bathroom in Greenpoint BK,100427647,Denise,Brooklyn,Greenpoint,40.73261,-73.95157,Private room,195,1,0,,,1,160 +36321385,"Quiet Brooklyn Room: Gym, Pool, Sauna, Hot Tub",140433148,Lauren,Brooklyn,Bushwick,40.69283,-73.90481,Private room,55,29,0,,,3,66 +36321453,Your family in NYC,259645305,Daniel,Brooklyn,Crown Heights,40.66531,-73.93887,Private room,35,1,0,,,1,56 +36321920,Central Park Hidden Gem 5*,273078104,Luli,Manhattan,Upper East Side,40.76966,-73.96688,Entire home/apt,239,1,0,,,1,15 +36321994,Private room in Williamsburg,273170125,Lipaz,Brooklyn,Williamsburg,40.7128,-73.93984,Private room,99,1,0,,,1,90 +36322141,Charming and Spacious Harlem Nest,54634154,Qai,Manhattan,Harlem,40.8026,-73.95373,Private room,75,3,0,,,1,29 +36322148,Welcome Palace 2 !!!,182954454,Thaddeus,Queens,Jamaica,40.67105,-73.77308,Private room,75,2,0,,,2,88 +36323065,Lovely Home Away,273177557,Veronica,Queens,Jamaica,40.66806,-73.77658,Private room,200,1,0,,,1,168 +36329299,Central Park European 2 Bedroom 2 bath duplex,6524294,Natascha,Manhattan,Upper East Side,40.78439,-73.95762,Entire home/apt,400,5,0,,,2,363 +36332335,Manhattan Rooms by Central Park & 6 green train,97640457,Mel,Manhattan,East Harlem,40.79913,-73.94226,Private room,90,2,0,,,1,171 +36333565,Great room in ⚓NYC⚓,271627222,Alex,Manhattan,East Harlem,40.80995,-73.93801,Private room,215,1,0,,,1,30 +36334586,4min walk to Times Square! Cozy and very clean!,262999899,Eduard,Manhattan,Hell's Kitchen,40.75941,-73.99179,Entire home/apt,239,7,0,,,1,77 +36334813,Sunny Room in the heart of Williamsburg,17379828,Caterina,Brooklyn,Williamsburg,40.70906,-73.95544,Private room,75,3,0,,,1,7 +36335028,Quiet and safe neighborhood close to the bus,235465195,Monica,Queens,Flushing,40.74761,-73.8138,Private room,100,1,0,,,1,177 +36335990,Sunny Studio steps from Wall Street,269870940,Farina,Manhattan,Financial District,40.70603,-74.01084,Entire home/apt,75,1,1,2019-07-03,1,1,181 +36336560,Spacious Bushwick Room w/ Window and Central Air,236187116,Shawana,Brooklyn,Bushwick,40.69757,-73.92611,Private room,65,1,0,,,2,19 +36338430,Zen Room in Creative Apt- <3 of Williamsburg,10184022,Elisa,Brooklyn,Williamsburg,40.72078,-73.95892,Private room,115,2,0,,,1,54 +36338659,Simple Clean Single Room in Bushwick,234635363,Linghsiu,Brooklyn,Bushwick,40.69922,-73.9313,Private room,50,1,0,,,1,12 +36339403,Private bedroom near the water and Columbia,222549093,Anna Laura,Manhattan,Morningside Heights,40.81486,-73.95795,Private room,59,3,0,,,3,5 +36339442,Spacious Sun-Filled Artist Oasis,236187116,Shawana,Brooklyn,Bushwick,40.6978,-73.92589,Private room,75,1,0,,,2,18 +36339521,Suite in NY's new Movie Studio Land,5498979,Alan,Queens,Ditmars Steinway,40.7772,-73.90258,Private room,79,2,0,,,1,8 +36340028,Cozy Private Budget room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68111,-73.91294,Private room,40,5,0,,,10,356 +36341047,Studio close to Manhattan,273288629,Hailey,Queens,Astoria,40.76799,-73.91559,Entire home/apt,150,2,0,,,1,359 +36341389,Spoon's Mom's House,59333822,Odehyah,Brooklyn,Bedford-Stuyvesant,40.68471,-73.92627,Private room,75,2,0,,,1,356 +36341843,"It's up to you, New York, NEW YORK!",17682620,Michel,Manhattan,Hell's Kitchen,40.75896,-73.99153,Entire home/apt,300,5,0,,,1,34 +36343069,Private Room In Renovated Brooklyn Brownstone!,27560165,Amanda,Brooklyn,Crown Heights,40.67764,-73.94991,Private room,45,1,0,,,1,176 +36343547,Gorgeous 3 BR with backyard 15 minutes from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69378,-73.93932,Entire home/apt,200,3,0,,,2,316 +36343588,"Beautiful 2 BR apt, UWS",264810896,Christine,Manhattan,Upper West Side,40.7715,-73.9877,Entire home/apt,240,3,0,,,1,58 +36344079,The Little Castle in Astoria,3867848,Prince,Queens,Astoria,40.76887,-73.91128,Private room,150,1,1,2019-07-04,1,1,165 +36344347,Beautiful apartment /1 min walk from Time Square,119005168,Noah,Manhattan,Theater District,40.75982,-73.98662,Entire home/apt,400,2,0,,,1,3 +36345151,Home Away from Home,273316025,Cristian,Queens,Rego Park,40.72614,-73.8594,Private room,80,1,0,,,1,123 +36345653,Vegan/cruelty free home,58956100,Diane,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93044,Private room,80,7,0,,,1,61 +36345739,Your Finest room in Gramercy,111020505,Maja,Manhattan,Kips Bay,40.74049,-73.98184,Private room,57,30,0,,,1,253 +36345911,SUPER COZY 2 BEDS IN BEST PART OF CHELSEA!!,91268177,Beatriz,Manhattan,Chelsea,40.7448,-74.00761,Entire home/apt,299,3,0,,,4,220 +36346454,Queen Bed in Queens **Amazing Astoria Location**,27589350,Adam,Queens,Astoria,40.76575,-73.92307,Private room,55,1,0,,,1,13 +36347051,Beautiful Large Bedroom in the Heart of Harlem,273101668,Betty,Manhattan,Harlem,40.83225,-73.94496,Private room,60,2,0,,,1,72 +36348332,Private bedroom in a townhouse,23254491,Klara,Manhattan,East Harlem,40.80109,-73.94364,Private room,150,1,0,,,2,26 +36348535,Gorgeous large 3 bedroom apartment in Williamsburg,14598000,Daniel,Brooklyn,Williamsburg,40.70802,-73.94053,Entire home/apt,200,4,0,,,2,315 +36348763,Large NEW 2 bedroom in Brooklyn,273344288,Ann,Brooklyn,Midwood,40.61693,-73.95354,Entire home/apt,180,1,0,,,1,57 +36349092,Beautiful duplex with terrace. Up to 6 people.,273347409,Alex,Manhattan,Financial District,40.70485,-74.00822,Entire home/apt,430,3,0,,,1,42 +36350007,Spacious brand new 2 bedrooms apartment ##2,273354185,Lee & Luffy,Bronx,Castle Hill,40.81576,-73.84653,Entire home/apt,98,3,0,,,7,169 +36350210,"Cozy brand new 3 bedrooms apartment, HugeSpace ##3",273354185,Lee & Luffy,Bronx,Castle Hill,40.81733,-73.84807,Entire home/apt,128,2,0,,,7,167 +36350460,Cozy Spacious Queens Private Room #1,273354185,Lee & Luffy,Bronx,Castle Hill,40.8154,-73.84657,Private room,38,3,0,,,7,177 +36350612,Get Away NYC Queens Bedroom #2,273354185,Lee & Luffy,Bronx,Castle Hill,40.81727,-73.84588,Private room,38,2,0,,,7,177 +36350749,NYC Traveler Get Away Private ROOM #3,273354185,Lee & Luffy,Bronx,Castle Hill,40.81572,-73.84592,Private room,39,2,0,,,7,177 +36350871,Spacious brand new room getaway traveler NYC #4,273354185,Lee & Luffy,Bronx,Castle Hill,40.81539,-73.84669,Private room,39,2,0,,,7,177 +36351030,Brand New Privated Room for NYC Traveler,273354185,Lee & Luffy,Bronx,Castle Hill,40.81709,-73.84811,Private room,39,2,0,,,7,177 +36351128,"One bedroom without roomies, close to everything",273361532,David & Amy,Manhattan,Upper West Side,40.80281,-73.9655,Entire home/apt,110,3,2,2019-07-05,2,1,15 +36351333,Stunning Luxury Loft in NYC's Best Neighborhood,12268556,Carlos,Manhattan,Tribeca,40.71877,-74.0026,Entire home/apt,349,3,0,,,1,11 +36351543,2-MONTH SUBLEASE (WITH EARLY MOVE-IN),52984497,Friday,Brooklyn,Bedford-Stuyvesant,40.68914,-73.92408,Private room,33,30,2,2019-07-06,2,1,87 +36351709,Fidi 1 Bedroom,28983064,Joseph,Manhattan,Financial District,40.70664,-74.01258,Private room,57,30,0,,,1,66 +36351985,Duplex studio renovated new bathroom own entrance,36205885,Eddy,Queens,Ridgewood,40.70688,-73.90981,Entire home/apt,80,1,0,,,3,163 +36352170,Spacious room in a two bathroom apartment.,55038786,Guillermo,Brooklyn,Bensonhurst,40.62056,-74.00225,Private room,50,30,0,,,1,98 +36352377,★Long-term★Discount★Sunny NYC Room Near Subway,270077888,Jane,Brooklyn,Bushwick,40.69266,-73.92589,Private room,47,30,0,,,2,162 +36352604,Large 1 bedroom with backyard grill,54706499,Eberly,Manhattan,Upper East Side,40.77792,-73.94476,Entire home/apt,250,2,0,,,1,16 +36352893,Bright & modern West Village unit w/ elevator,15870918,Sofia,Manhattan,West Village,40.72964,-74.0031,Entire home/apt,200,2,0,,,1,6 +36353482,EAST VILLAGE Apt. (ABC City) w/awesome Roof Deck,44024684,Zack,Manhattan,East Village,40.72597,-73.97645,Private room,85,1,0,,,1,15 +36353835,"✨Marvelous Room One Queen,One Full Bed and Balcony",270874051,Hotel Vetiver,Queens,Long Island City,40.75285,-73.93428,Private room,139,1,0,,,8,359 +36353849,Hip Neighborhood/Private Bedroom in Modern Duplex,81345246,Franco,Brooklyn,Bedford-Stuyvesant,40.69053,-73.92635,Private room,85,4,0,,,1,89 +36354043,"Super Modern, Clean, Quiet Apartment in Flatlands!",270278177,Victoria,Brooklyn,Flatlands,40.63236,-73.93214,Entire home/apt,78,1,0,,,1,86 +36354776,Cozy bedroom in diverse neighborhood near JFK,273393150,Liza,Queens,Richmond Hill,40.68639,-73.81847,Private room,28,2,0,,,1,24 +36354796,"✨Superb King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75716,-73.94222,Private room,101,1,0,,,3,365 +36355110,PRIVATE ROOM IN STATEN ISLAND -FOR LADIES ONLY,201187671,Tuana,Staten Island,Shore Acres,40.61283,-74.06625,Private room,54,4,0,,,1,89 +36356416,[Female Only]Private Room near Columbia University,118767681,Sunny,Manhattan,Upper West Side,40.80243,-73.96637,Private room,49,1,0,,,1,14 +36356804,Bright quiet and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6618,-73.87908,Private room,48,2,0,,,2,329 +36356906,Spacious,108355692,Christopher,Queens,Flushing,40.75825,-73.83369,Private room,57,30,0,,,1,87 +36357112,"Sunny, adorable 1BR apartment in Greenpoint",251802585,Kay,Brooklyn,Greenpoint,40.73192,-73.95839,Private room,115,5,0,,,1,10 +36357591,Harlem lounge,268242223,K,Manhattan,Harlem,40.81954,-73.94277,Private room,40,2,0,,,1,363 +36358848,Old World Charm Meets Modern Brooklyn,273424772,Cyrus,Brooklyn,Prospect-Lefferts Gardens,40.65784,-73.94484,Entire home/apt,200,5,0,,,1,156 +36358910,"Bright, quiet railroad style apartment",160175680,Chiara,Queens,Ridgewood,40.70617,-73.90503,Entire home/apt,75,15,0,,,1,22 +36359394,Madeline’s Place,135363269,Hal,Brooklyn,Sunset Park,40.64372,-74.00656,Entire home/apt,120,3,0,,,1,320 +36361813,Relax with simplicity!,111001956,Deborah,Brooklyn,East New York,40.65698,-73.89212,Private room,45,1,0,,,1,363 +36368048,"Luxury appartment, special edition for musicians.",253681134,Azamat,Manhattan,Washington Heights,40.83423,-73.94723,Private room,74,3,0,,,1,3 +36368998,Queen size bedroom close to Columbia,3850264,Jason,Manhattan,Harlem,40.80656,-73.95593,Private room,60,3,0,,,2,86 +36371082,845 Bushwick Ave.,258391290,Nuci,Brooklyn,Bushwick,40.69342,-73.92679,Private room,45,7,0,,,1,14 +36372006,Very Clean Private Room Near Buses & Restaurants!!,118405437,PengYu,Queens,Woodhaven,40.69411,-73.86877,Private room,66,1,0,,,2,365 +36372104,Exposed Brick,32303395,Roderick,Brooklyn,Bedford-Stuyvesant,40.6858,-73.92899,Private room,120,2,0,,,1,6 +36373544,Large studio with tall ceiling near Central Park,35141789,Janey,Manhattan,Upper East Side,40.78332,-73.95155,Entire home/apt,100,10,0,,,1,21 +36374141,Sunny Bedroom with renovated rooftop + balcony!,37872024,Jeano,Brooklyn,Crown Heights,40.67011,-73.9243,Private room,30,10,0,,,1,32 +36374510,Shh!@Belindas,271336460,Belinda,Brooklyn,East New York,40.6625,-73.88081,Shared room,200,7,0,,,1,365 +36375840,Perfectly Located Studio in FiDi has all you need!,273524881,Shannon,Manhattan,Financial District,40.70787,-74.0078,Entire home/apt,158,7,0,,,1,70 +36378818,Clean One Bedroom,3449848,V,Manhattan,Chelsea,40.73896,-73.99935,Entire home/apt,350,3,0,,,1,8 +36378891,Harman st Loft,273546395,Allen,Brooklyn,Bushwick,40.6998,-73.91913,Entire home/apt,165,3,0,,,1,364 +36379279,"Amazing ,quiet, cozy, 1 bedroom on Union Square E",273519401,Geraldo,Manhattan,Gramercy,40.73684,-73.98797,Entire home/apt,299,1,0,,,1,168 +36379292,Little Italy Studio in Soho - Sleeps up to 4!,273544738,Jane,Manhattan,Nolita,40.72132,-73.99586,Entire home/apt,176,2,0,,,1,324 +36379536,Comfy room 15 mins to JFK near lots of good food,273551058,Andra,Queens,Ozone Park,40.68432,-73.85862,Private room,55,1,0,,,1,129 +36379540,Gorgeous brand new Studio Apt 5 min from Manhattan,48434623,Mariana,Queens,Long Island City,40.75267,-73.93028,Entire home/apt,85,20,0,,,1,51 +36379669,Shared living space in the Bronx!,44378432,Bryan,Bronx,Pelham Bay,40.84735,-73.83095,Shared room,50,1,0,,,1,88 +36379995,**Bright Luxury Apt in Financial District+Balcony,90870599,Claris,Manhattan,Financial District,40.70822,-74.01418,Entire home/apt,225,4,0,,,1,79 +36380964,Cozy bedroom in East Village apt!,271590063,Mariel,Manhattan,Stuyvesant Town,40.7338,-73.97972,Private room,70,1,0,,,1,270 +36381008,Comfort home,266211707,Yan,Brooklyn,Sunset Park,40.64454,-74.0201,Private room,185,1,0,,,2,175 +36381795,"Lovely one-bedroom; +Brooklyn Heights",289823,Ben,Brooklyn,Brooklyn Heights,40.69383,-73.99328,Entire home/apt,115,14,0,,,1,17 +36381819,Wonderful Oasis in the heart of New York city,273560024,Thea,Manhattan,Hell's Kitchen,40.76443,-73.98516,Private room,88,3,0,,,1,7 +36382093,Chelsea Corner Unit Overlooking the Highline,1256264,Michelle,Manhattan,Chelsea,40.75113,-74.00231,Entire home/apt,450,5,0,,,1,167 +36382148,Lower East Side 1-Bedroom,273568164,Doug,Manhattan,Lower East Side,40.71958,-73.98741,Entire home/apt,198,30,0,,,1,152 +36382381,Spacious studio in the heart of downtown Astoria,273570019,Khaled,Queens,Astoria,40.76349,-73.92577,Private room,75,1,0,,,1,359 +36382761,Magical Brooklyn Brownstone,6948761,Angela,Brooklyn,Clinton Hill,40.68807,-73.96572,Entire home/apt,400,5,0,,,1,13 +36382847,Comfort home,266211707,Yan,Brooklyn,Sunset Park,40.64439,-74.01816,Private room,185,1,0,,,2,177 +36383565,Spacious Astoria Apartment in a Prime Location!,14258377,Tracy,Queens,Astoria,40.76389,-73.91963,Private room,50,4,0,,,1,38 +36383943,15 mins to LOVE NYC in a NEW Elegant NY Style 1BR,185936267,Serena,Manhattan,Lower East Side,40.72129,-73.98585,Entire home/apt,200,3,0,,,1,89 +36384346,"✨Superior King Room , Manhattan View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75615,-73.94121,Private room,101,1,0,,,3,365 +36384487,Peace in NYC,108640056,Osi,Manhattan,Lower East Side,40.71421,-73.97853,Entire home/apt,350,1,0,,,1,131 +36384760,CHELSEA BEAUTY Prime location,14563616,Anna/Phillip,Manhattan,Chelsea,40.74271,-73.99554,Entire home/apt,215,1,0,,,2,127 +36384956,Amazing True Loft/ Bed-Stuy/ Full Weekly Cleaning.,2628658,Marc-Antoine,Brooklyn,Bedford-Stuyvesant,40.68194,-73.93567,Entire home/apt,120,30,0,,,2,45 +36385310,Piano duplex in New York artistic best Bushwick,273547720,Cedric,Brooklyn,Bushwick,40.69982,-73.92321,Entire home/apt,170,30,0,,,1,360 +36386298,Spacious 3 Bedroom Duplex w/ Huge Backyard,273596828,Enoma,Brooklyn,Bedford-Stuyvesant,40.67959,-73.94987,Entire home/apt,180,3,0,,,1,133 +36387296,Cozy basement studio in Brooklyn,24726785,Claudia,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9471,Private room,80,1,0,,,1,30 +36387416,"Incredibly large room, excellent location!",6570630,Marisol,Brooklyn,Bushwick,40.7018,-73.93282,Private room,60,4,0,,,2,47 +36387905,Manhattan Apartment Private Close to Subway,273613106,Jose L.,Manhattan,East Harlem,40.79031,-73.94269,Entire home/apt,139,1,0,,,1,354 +36388492,"✨Premier King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75559,-73.94106,Private room,101,1,0,,,3,361 +36388720,HUGE LUXURY CONDO – INCREDIBLE WATER VIEWS,273619215,Layla,Manhattan,Upper West Side,40.77665,-73.98867,Entire home/apt,750,4,0,,,1,174 +36388748,Private Times Square Room with Pool/Gym,217557021,Jas,Manhattan,Hell's Kitchen,40.7617,-73.99815,Private room,180,3,0,,,1,365 +36388807,seagate pravite house 5 mins away from beach,273619304,Tural,Brooklyn,Sea Gate,40.57531,-74.00518,Entire home/apt,99,4,0,,,1,19 +36389944,Family Friendly Apt in Midtown East,224309949,Efrat,Manhattan,Midtown,40.75988,-73.96591,Entire home/apt,325,5,0,,,1,298 +36390226,Comfortable clean Bedstuy private room,267932490,Angela,Brooklyn,Bedford-Stuyvesant,40.69551,-73.93951,Private room,45,1,2,2019-07-08,2,1,14 +36390301,"3 Bedroom Apt in Ridgewood, 20 Min to Manhattan",273632292,Pete,Queens,Ridgewood,40.70268,-73.90353,Entire home/apt,110,24,0,,,1,183 +36390829,Rockaway Beach Apartment Blocks from Ocean,68862521,Megan,Queens,Rockaway Beach,40.58837,-73.81654,Entire home/apt,150,1,0,,,1,88 +36391474,Wonderful apartment close to Metro,273025497,Richard,Brooklyn,Fort Greene,40.68868,-73.97671,Entire home/apt,107,1,0,,,1,49 +36391615,Hidden gem! Cozy home in heart of Lower East Side,70653354,John,Manhattan,Lower East Side,40.72013,-73.98769,Entire home/apt,235,1,0,,,1,349 +36391866,"Clean, modern, and comfy 1bd apt Manhattan-Harlem",273644177,Merce,Manhattan,Harlem,40.80078,-73.95079,Entire home/apt,137,1,0,,,1,35 +36392015,Room W/private bathroom.3 min to park and subway,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66289,-73.96165,Private room,70,1,0,,,6,189 +36392607,A shared room in Manhattan,178720348,Mingmei,Manhattan,Harlem,40.81991,-73.9575,Shared room,60,1,0,,,2,86 +36393539,Cozy Nice Spot for ladies. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66067,-73.96094,Shared room,39,1,0,,,6,207 +36394726,1 bed available in a 2bd/1ba Bushwick Gem,239638986,Marné,Brooklyn,Bushwick,40.69287,-73.92289,Private room,125,1,0,,,1,175 +36395052,Premium Spot for female. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96162,Shared room,40,1,0,,,6,211 +36395366,Deluxe Bedroom w/ 2 Beds - 3 stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75415,-73.93144,Private room,89,1,0,,,5,358 +36395484,Lovely spot for female. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66079,-73.96181,Shared room,40,1,0,,,6,224 +36395677,Cozy 4 Bedrooms Apt - 3 stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75388,-73.92957,Entire home/apt,396,3,0,,,5,351 +36395954,Cozy bedroom - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75366,-73.9311,Private room,89,1,0,,,5,359 +36395973,Homely spot for female. Close to subway &Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96064,Shared room,40,1,0,,,6,245 +36396082,LUXURY RENTAL NYC - Hell’s Kitchen,237217643,Yakir,Manhattan,Hell's Kitchen,40.76142,-73.99865,Entire home/apt,220,28,0,,,1,167 +36396086,Nice bedroom - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75255,-73.93128,Private room,89,1,0,,,5,359 +36396394,Modern private room with great location!,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96155,Private room,62,1,0,,,6,229 +36399640,Queen size bed in long island city,32392762,奕竹,Queens,Long Island City,40.74723,-73.94098,Shared room,45,1,0,,,1,15 +36402818,SMALL STUDIO IN EXCELLENT GREENPOINT LOCATION!,1568269,Skylar,Brooklyn,Greenpoint,40.73149,-73.95041,Entire home/apt,85,8,0,,,1,10 +36404568,Sharp Upper East Side 2BR w/ Gym + W/D near the MET by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77739,-73.94916,Entire home/apt,393,30,0,,,232,307 +36404684,Smart Nolita 1BR w/ W/D near famous cafes by Blueground,107434423,Blueground,Manhattan,Nolita,40.72283,-73.99472,Entire home/apt,316,30,0,,,232,325 +36404784,Dapper Hell's Kitchen 2BR w/ Gym + W/D + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76082,-73.99709,Entire home/apt,385,30,0,,,232,338 +36404815,Trendy Hell's Kitchen 1BR w/ Gym + W/D + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76083,-73.99727,Entire home/apt,267,30,0,,,232,228 +36404936,Beautiful Williamsburg 2BR w/ Skyline views + Gym by Blueground,107434423,Blueground,Brooklyn,Williamsburg,40.71493,-73.96365,Entire home/apt,278,30,0,,,232,188 +36404972,"Hip East Village 1BR w/ Gym, W/D, Doorman, near Union Sq., by Blueground",107434423,Blueground,Manhattan,East Village,40.73206,-73.98776,Entire home/apt,365,30,0,,,232,295 +36407969,"1 BDRM SPACIOUS ,QUIET, EAST VILLAGE ARTIST OASIS",273741577,Lynn,Manhattan,East Village,40.72388,-73.98354,Entire home/apt,178,1,0,,,1,35 +36409084,newyork guest house shared room,272477673,Jin,Manhattan,Chelsea,40.74643,-73.99105,Shared room,75,1,0,,,3,352 +36409903,Near the city,273536212,Marjorie,Queens,Cambria Heights,40.69973,-73.74592,Private room,50,1,0,,,1,339 +36410519,Sunlight charming apt. in the heart of Brooklyn,121384174,Luciana Paula,Brooklyn,Park Slope,40.66716,-73.98101,Entire home/apt,111,8,0,,,1,0 +36411407,Brand new 1 bedroom steps from Soho!,33917435,Mike,Manhattan,Lower East Side,40.71825,-73.99019,Entire home/apt,150,4,1,2019-07-06,1,1,13 +36412355,Diamond in the Rough,2716800,Leona,Queens,Forest Hills,40.71935,-73.84362,Private room,50,2,0,,,1,13 +36412410,Cozy 1 bedroom in East Williamsburg,62763569,Yuting,Brooklyn,Williamsburg,40.70266,-73.94284,Entire home/apt,99,3,0,,,1,14 +36412461,"Sunny, Cozy, Private Room In The Heart of Bushwick",147515897,Flávia,Brooklyn,Bushwick,40.70366,-73.92728,Private room,84,3,0,,,1,28 +36412880,Massive Master Bedroom w Private Bathroom,3427758,Phil,Manhattan,Harlem,40.81274,-73.94357,Private room,110,3,0,,,1,199 +36413114,Studio on West 14th Street and 7th Avenue,273772372,Richard,Manhattan,West Village,40.73713,-73.9987,Entire home/apt,144,1,0,,,1,110 +36413327,CHEAP AND COZY ROOM JUST 20 MIN AWAY FROM TIMES SQ,255476470,Maria,Manhattan,Washington Heights,40.83331,-73.94547,Private room,50,5,0,,,1,51 +36413532,Little hideaway at the East Village!,48685332,Carissa,Manhattan,East Village,40.72146,-73.98279,Private room,100,1,0,,,1,1 +36413632,Spacious 2BR in Beautiful Brooklyn Heights,6608220,Matt,Brooklyn,Brooklyn Heights,40.69827,-73.99649,Entire home/apt,550,3,1,2019-07-07,1,1,230 +36413779,Sunny & spacious room in a 3 Br - Williamsburg,2449230,Itamar,Brooklyn,Williamsburg,40.71812,-73.95495,Private room,80,5,0,,,1,38 +36414101,New York cutest studio,23899462,Florencia,Manhattan,Harlem,40.80505,-73.94894,Entire home/apt,90,7,0,,,1,23 +36414576,Room in Beautiful Bed-Stuy Apartment,45397566,Meru,Brooklyn,Bedford-Stuyvesant,40.69012,-73.93631,Private room,60,1,0,,,1,29 +36415840,A BEAUTIFUL SPACE IN HEART OF WILLIAMSBURG,223715460,Simon And Julian,Brooklyn,Williamsburg,40.71091,-73.9656,Entire home/apt,499,30,0,,,1,365 +36415915,Two bedroom cute apartment in the lower east side,246222122,Anna,Manhattan,East Village,40.72874,-73.98344,Entire home/apt,198,2,0,,,2,344 +36416632,Nice studio 4 people next to Times Square.,266294029,Carolina,Manhattan,Midtown,40.75354,-73.98377,Entire home/apt,245,2,0,,,1,79 +36416759,LIC Garden House Top Floor | 10 Min to Manhattan,53602261,Ray,Queens,Long Island City,40.75432,-73.93521,Entire home/apt,375,2,0,,,1,364 +36417250,US Open special 2-bed luxury condo,133288905,Cherie,Manhattan,Midtown,40.75174,-73.97343,Entire home/apt,369,4,0,,,3,4 +36417643,Luxury private room apt near Central Park (UES),49796302,Natasha,Manhattan,East Harlem,40.79339,-73.93784,Private room,150,1,0,,,1,265 +36417651,Mid-century Modern Studio on UWS,11270687,Lauren,Manhattan,Upper West Side,40.79873,-73.96938,Entire home/apt,150,2,0,,,1,74 +36417725,Ocenfront Glamping in Queens,273672846,Hectavious,Queens,Breezy Point,40.56546,-73.86968,Private room,250,1,0,,,1,82 +36417926,"Room in Beautiful Duplex 4BR 2BA Nostrand av (A,C)",272504878,Lana,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95014,Private room,45,32,0,,,1,85 +36418759,"Spacious Room w/ AC, Laundry, WiFi + Free Cleaning",154980356,Joanne & Robert,Brooklyn,Bedford-Stuyvesant,40.686,-73.93,Private room,32,30,0,,,1,10 +36419115,Room for rent - Right by Bedford ave L train,27089410,Nagui,Brooklyn,Williamsburg,40.71775,-73.95767,Private room,60,1,0,,,1,54 +36419291,Wyndham Midtown 45 New York City 1 Bedroom Deluxe,273812306,Kelly,Manhattan,Midtown,40.75288,-73.97269,Private room,380,3,0,,,1,3 +36419441,Murray Hill Masterpiece,273824202,David,Manhattan,Murray Hill,40.74404,-73.97239,Entire home/apt,129,2,0,,,1,0 +36419574,Luxury & Spacious 1500 ft² MANHATTAN Townhouse,11454384,Ellen,Manhattan,Tribeca,40.71815,-74.01145,Entire home/apt,700,3,0,,,1,37 +36420289,"Rustic Garden House Apt, 2 stops from Manhattan",73211393,LaGabrell,Queens,Long Island City,40.75508,-73.93258,Entire home/apt,350,2,0,,,1,364 +36420404,Home Sweet Home,273656890,Liana,Manhattan,East Harlem,40.79266,-73.9474,Private room,50,1,0,,,1,81 +36420725,"Sunnyside, Queens 15 Mins to Midtown Clean & Comfy",19990280,Brandon,Queens,Sunnyside,40.74719,-73.91919,Private room,46,1,0,,,1,0 +36420855,1900s 1 Bed Rockaway Beach Bungalow-ByMTA&Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.58893,-73.81347,Entire home/apt,89,1,0,,,4,175 +36421287,Nice & Lovely room in LIC.5 stops to Times Square,203866020,Karma,Queens,Sunnyside,40.73799,-73.92749,Private room,60,1,0,,,1,34 +36421390,House feeling in Caroll Garden,3827238,Tarek,Brooklyn,Carroll Gardens,40.67666,-73.99981,Entire home/apt,170,30,0,,,1,64 +36421786,Luxury | Private room |Balcony|Parking included,211500809,Stefania,Queens,Jackson Heights,40.74765,-73.89445,Private room,110,2,0,,,1,85 +36421796,Cozy Room with Private Bathroom,273843157,Matheus,Brooklyn,Greenpoint,40.73164,-73.95187,Private room,105,1,0,,,1,199 +36422456,3 Br ✰ Prime Williamsburg ✰ | 5 min to Manhattan ✰,255815505,Feliks,Brooklyn,Williamsburg,40.70626,-73.94699,Entire home/apt,245,4,0,,,1,156 +36422573,Romantic studio in New York artistic best Bushwick,273849259,Alexander,Brooklyn,Bushwick,40.69958,-73.92772,Entire home/apt,120,1,0,,,1,363 +36423090,Private room in beautiful Williamsburg loft!,43297161,Perry,Brooklyn,Williamsburg,40.70538,-73.94314,Private room,65,2,0,,,1,6 +36423179,Williamsburg: private bright bedroom - cosy appt,130906452,Pierre,Brooklyn,Williamsburg,40.71175,-73.96197,Private room,70,6,0,,,1,18 +36423704,"City and water views, 1 BR w/ private terrace!",1338608,Dan,Manhattan,Murray Hill,40.74604,-73.97228,Entire home/apt,250,5,0,,,1,233 +36423944,Modern room in luxury apartment,271350187,Elena,Brooklyn,Greenpoint,40.71918,-73.94853,Private room,130,1,0,,,3,360 +36424129,Bright & Cheerful! Modern w/ Laundry + Fast WiFi,107407045,Brett & Megan,Brooklyn,Bedford-Stuyvesant,40.69217,-73.93191,Private room,35,30,0,,,1,44 +36424133,Huge Room,52565041,Sopho,Brooklyn,Sheepshead Bay,40.59174,-73.95816,Private room,46,4,0,,,1,60 +36424334,Laundry + Central AC - Modern Style - Near Metro,155298656,Brad & Rachel,Queens,Ridgewood,40.70585,-73.91298,Private room,35,30,0,,,1,44 +36424465,Private Room 10 mins away from Central Park,157728550,Kem,Manhattan,East Harlem,40.80268,-73.94244,Private room,100,1,0,,,2,343 +36424509,Brooklyn Loft : Comfort & Sunset City Views,8411075,Ramiro,Brooklyn,Bushwick,40.69608,-73.9121,Entire home/apt,119,2,0,,,1,5 +36424520,Comfortable bedroom to enjoy your visit in NYC!,115415245,Alejandro,Brooklyn,Bushwick,40.69799,-73.92833,Private room,60,2,0,,,1,67 +36424660,5min to Metro - Tons of Restaurants! Free Cleaning,107263278,Erin At Bedly,Manhattan,East Harlem,40.79268,-73.94577,Private room,40,30,0,,,1,46 +36424776,Queen size bedroom in two bed apt with great light,13384464,Hollie,Brooklyn,Bedford-Stuyvesant,40.69617,-73.94198,Private room,50,3,0,,,1,0 +36425157,Cozy Private Bedroom Just For You,273870123,Tim,Brooklyn,East Flatbush,40.65229,-73.95139,Private room,55,1,0,,,1,178 +36425639,Sunny private bedroom in Bushwick (Halsey street),2182412,Sofiya,Brooklyn,Bushwick,40.68932,-73.91374,Private room,80,1,0,,,1,17 +36425863,Lovely Privet Bedroom with Privet Restroom,83554966,Rusaa,Manhattan,Upper East Side,40.78099,-73.95366,Private room,129,1,1,2019-07-07,1,1,147 +36426093,Best room in nyc,273877318,Jay,Bronx,Claremont Village,40.83926,-73.91173,Private room,140,1,0,,,1,90 +36426319,"Duplex penthouse with terrace, prime UES location",46876102,Philippe,Manhattan,Upper East Side,40.7784,-73.9567,Entire home/apt,250,45,0,,,1,83 +36426720,Crash at a sofabed.Unique apt In the heart of NYC,67738361,Julie,Manhattan,Hell's Kitchen,40.75579,-73.99094,Shared room,260,1,0,,,2,168 +36426788,Serene Room 5 mins from JFK / 15 mins from LGA,266645207,Michael,Queens,Laurelton,40.67025,-73.74548,Private room,75,1,0,,,2,180 +36427094,Beautiful Sunny Space in Crown Heights Brooklyn.,82576590,Raheem,Brooklyn,Crown Heights,40.67285,-73.95133,Private room,41,1,0,,,1,66 +36427098,Downtown NYC Convenient Private Room,105447387,Xiao,Manhattan,Lower East Side,40.71466,-73.98676,Private room,80,1,0,,,1,323 +36427393,"Luxury large studio in Chelsea, at the Highline!",71473447,Andrea,Manhattan,Chelsea,40.74954,-74.00466,Entire home/apt,225,7,0,,,1,20 +36427429,No.2 with queen size bed,257683179,H Ai,Queens,Flushing,40.75104,-73.81459,Private room,45,1,1,2019-07-07,1,6,339 +36427922,Home away from home,238163900,Lucy,Queens,Cambria Heights,40.68557,-73.72731,Private room,50,3,0,,,1,176 +36428186,Private house Apartment,141511069,Carolina,Bronx,Morrisania,40.83146,-73.89666,Entire home/apt,80,7,0,,,1,71 +36428210,Beverley Road - Close to subway Q and B.,128305726,Pujan,Brooklyn,Flatbush,40.64538,-73.96239,Private room,43,2,0,,,1,21 +36428255,Skyscraper Ultimate Luxury at the Heart of BKLYN.,148289089,Elmar,Brooklyn,Boerum Hill,40.6878,-73.98145,Entire home/apt,235,10,0,,,1,64 +36429652,Cute double room for the perfect Yankee fan,58222366,Dominique,Bronx,Claremont Village,40.83502,-73.91058,Private room,125,2,0,,,1,364 +36435986,1A. Studio & Stay. 30 minutes to Midtown Manhattan,37678939,Chantal,Bronx,Concourse Village,40.83372,-73.91187,Private room,70,2,0,,,2,81 +36437317,private room in Astoria,122204600,Mohammed,Queens,Astoria,40.76431,-73.90992,Private room,49,15,0,,,1,341 +36438110,Location! View! X- Large Studio w/ Washer/Dryer!,96079975,Karen,Manhattan,Upper East Side,40.78411,-73.9487,Entire home/apt,140,7,0,,,1,158 +36438336,Seas The Moment,211644523,Ben,Staten Island,Great Kills,40.54179,-74.14275,Private room,235,1,1,2019-07-07,1,1,87 +36439512,The Bushwick Backhouse Loft.,180336853,Dash,Brooklyn,Bushwick,40.7047,-73.9225,Private room,70,2,0,,,1,255 +36439761,Hudson Yards 1 BR / 1 Bath,112300256,Ken,Manhattan,Chelsea,40.75343,-74.00208,Entire home/apt,155,30,0,,,1,171 +36441134,Brooklyn Loft with great train views,3054124,Derek,Brooklyn,Williamsburg,40.70997,-73.96289,Entire home/apt,150,7,0,,,1,11 +36441808,Hell's Kitchen charming apartment,24680496,Miriam,Manhattan,Hell's Kitchen,40.76911,-73.99248,Entire home/apt,145,1,0,,,1,10 +36441908,Amazing flex room in financial district with view,112024431,Dariné,Manhattan,Financial District,40.70597,-74.01562,Private room,99,4,0,,,1,22 +36442252,1B-1B apartment near by Metro,273841667,Blaine,Bronx,Mott Haven,40.80787,-73.924,Entire home/apt,100,1,2,2019-07-07,2,1,40 +36442487,Endless Elegance in Brooklyn,199213364,Eeman,Brooklyn,Sheepshead Bay,40.59731,-73.93381,Entire home/apt,140,7,0,,,2,171 +36444457,My Minimalist Sanctuary - Harlem Living,19580888,Lola,Manhattan,Harlem,40.81589,-73.95346,Entire home/apt,100,4,0,,,1,20 +36444527,Bright & Cheerful! Near Metro + Bars & Cafes,140961117,Christine & Ben,Manhattan,Harlem,40.81697,-73.94225,Private room,39,30,0,,,1,44 +36444734,Sunny Upper West Side Apt. 3mins from Central Park,32987938,Alex,Manhattan,Upper West Side,40.77889,-73.97668,Entire home/apt,143,3,0,,,1,10 +36445121,UWS Spacious Master Bedroom Sublet,274014453,Dagmara,Manhattan,Upper West Side,40.79952,-73.96003,Private room,75,30,0,,,1,90 +36445224,Big & Beautiful room with 2 beds!,274012871,Stefan,Queens,Long Island City,40.76807,-73.93799,Private room,95,2,0,,,2,168 +36445280,"Spacious, simple, private bath",62784258,Eliana,Manhattan,Harlem,40.81951,-73.94161,Private room,50,1,0,,,1,21 +36446225,"2 bedroom apt, 10 mins from JFK, Subway, & Beach!",115751294,Taneisha,Queens,Bayswater,40.61113,-73.76546,Entire home/apt,80,2,0,,,1,87 +36446437,Midtown bedroom in Manhattan,867516,Grace,Manhattan,Murray Hill,40.74757,-73.98118,Private room,200,1,0,,,1,34 +36446514,"Sunny, quiet, and cool bedroom in a two bedroom.",274025920,Oliver,Brooklyn,Crown Heights,40.66921,-73.93521,Private room,59,2,0,,,1,16 +36447054,Entire first floor apartment in Park Slope,71142174,Toniann,Brooklyn,Sunset Park,40.66266,-73.98908,Entire home/apt,100,4,0,,,1,6 +36447683,2B2B/3 beds entire place in luxury building,24680832,Angela,Queens,Long Island City,40.74754,-73.94194,Entire home/apt,180,3,0,,,1,13 +36447795,Beautiful studio Apt. in Harlem (near Red Rooster),274035866,Aurellia,Manhattan,East Harlem,40.8078,-73.93837,Entire home/apt,110,2,0,,,1,25 +36448215,Welcome to Quite Cozy,274040642,Ms. Tou,Queens,Cambria Heights,40.69,-73.73098,Private room,50,1,0,,,1,175 +36448400,Central East Village Apartment,16030422,Brandon,Manhattan,East Village,40.72626,-73.98729,Private room,80,3,0,,,1,18 +36448559,Stuyvesant comfort (Private bathroom),272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68676,-73.93788,Private room,50,1,0,,,2,144 +36448708,Entire 3 Bedroom Astoria Apartment,183211776,Rafael,Queens,Astoria,40.76491,-73.90959,Entire home/apt,169,1,0,,,4,28 +36449052,Lovely private room in the heart of Williamsburg,173021064,Katie,Brooklyn,Williamsburg,40.71052,-73.95149,Private room,60,2,0,,,2,134 +36449345,"Private Room in Brooklyn, 5minutes from Subway",115528632,Rachel & Alex,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95418,Private room,80,1,0,,,1,43 +36449668,Stuyvesant Luxury,272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93665,Private room,50,1,0,,,2,134 +36449743,Brooklyn's finest,66084717,Tim,Brooklyn,East Flatbush,40.6517,-73.9258,Entire home/apt,200,3,0,,,2,206 +36449938,Huge Private 3 Bedroom Art Apartment in Manhattan,271029539,Dominique,Manhattan,Harlem,40.82179,-73.95522,Entire home/apt,170,1,0,,,4,78 +36449941,2BRs on Spacious Apt. in Bushwick,161456818,Juan,Brooklyn,Bushwick,40.68884,-73.91969,Private room,50,1,0,,,1,165 +36450283,Cozy SunDrenched 1 BR close to Transportation!,53360631,Ashley,Manhattan,Washington Heights,40.83734,-73.94326,Entire home/apt,90,4,0,,,1,83 +36450318,"LUXURY, PRIVATE APT ACROSS FROM EMPIRE STATE",151831356,Michael,Manhattan,Midtown,40.74607,-73.98599,Entire home/apt,199,1,0,,,1,14 +36450435,Sunny Modern Studio Apartment in Williamsburg,29393413,Pirro,Brooklyn,Williamsburg,40.71391,-73.94431,Entire home/apt,225,1,0,,,1,84 +36450814,FLATBUSH HANG OUT AND GO,267223765,Jarmel,Brooklyn,Flatbush,40.64922,-73.96078,Shared room,20,1,0,,,3,363 +36450896,Brand New 3-Bed Apt in the Best Location of FiDi,29741813,Yue,Manhattan,Financial District,40.70605,-74.01042,Entire home/apt,475,2,0,,,1,64 +36451138,Cozy Private Room with Rooftop Space on Top Floor,211831610,Vanessa,Queens,Elmhurst,40.7371,-73.88086,Private room,50,1,0,,,1,239 +36451212,Sunny and Spacious Private Bedroom in Manhattan,271029539,Dominique,Manhattan,Harlem,40.82258,-73.95464,Private room,60,1,0,,,4,80 +36451362,Cozy Queen bed in Quiet Bedstuy!,154095549,Wa,Brooklyn,Bedford-Stuyvesant,40.69195,-73.94225,Private room,47,2,0,,,2,48 +36451481,Feels Like Home,31244206,Pedro,Manhattan,Harlem,40.82385,-73.93947,Private room,80,3,0,,,1,70 +36451653,Massive Master Bedroom in Manhattan Apartment,271029539,Dominique,Manhattan,Harlem,40.82126,-73.95458,Private room,70,1,0,,,4,90 +36452721,Massage Spa. Stay overnight. Authors Artist dream.,274079964,Richard,Brooklyn,Sheepshead Bay,40.59866,-73.95661,Private room,800,1,0,,,1,23 +36452965,"❥❥NYC Apt: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69389,-73.86823,Entire home/apt,140,3,0,,,6,232 +36453030,Astoria Luxury Studio Aprtment near Broadway,8655014,Anton,Queens,Astoria,40.76267,-73.9261,Entire home/apt,210,7,0,,,1,12 +36453160,LUXURY MANHATTAN PENTHOUSE+HUDSON RIVER+EMPIRE BLD,224171371,LuxuryApartmentsByAmber,Manhattan,Chelsea,40.75204,-74.00292,Entire home/apt,350,1,0,,,1,9 +36453642,"☆ HUGE, SUNLIT Room - 3 min walk from Train !",53966115,Nora,Brooklyn,Bedford-Stuyvesant,40.69635,-73.93743,Private room,45,29,0,,,2,341 +36453952,West Village Studio on quiet cobblestone street,115491896,Will,Manhattan,West Village,40.7362,-74.00827,Entire home/apt,205,1,0,,,1,365 +36454025,Private 5 star room,261338177,Diana,Brooklyn,Gravesend,40.59131,-73.97114,Private room,33,2,0,,,6,318 +36454717,#5 New Hotel-Like Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69185,-73.86431,Private room,37,1,0,,,8,352 +36455321,#6 New Hotel-Like Private Room QUEEN Bed near JFK,263504959,David,Queens,Woodhaven,40.69183,-73.86523,Private room,34,1,0,,,8,320 +36455402,Cute plant friendly studio in hip Brooklyn area!,184501278,Em,Brooklyn,Crown Heights,40.67198,-73.95329,Entire home/apt,180,1,0,,,1,165 +36455579,Studio in Manhattan(独立出入),257261595,Xiaolan,Manhattan,Harlem,40.80951,-73.95347,Entire home/apt,65,1,0,,,1,32 +36455584,Large studio at Union Square! for 3-5 ppl,50812891,Molo,Manhattan,East Village,40.73231,-73.98689,Entire home/apt,159,1,0,,,1,166 +36455649,#7 New Hotel-Like Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69137,-73.86591,Private room,35,1,0,,,8,341 +36455809,"Cozy Private Room in Bushwick, Brooklyn",74162901,Christine,Brooklyn,Bushwick,40.69805,-73.92801,Private room,30,1,1,2019-07-08,1,1,1 +36455917,Sunny&quiet paradise in the WV with open views,274103383,Jennifer,Manhattan,West Village,40.73444,-74.00335,Private room,202,2,0,,,1,84 +36456548,Gorgeous Brooklyn Penthouse Apartment w/City Views,13108199,Jeffrey,Brooklyn,Greenpoint,40.72781,-73.94947,Private room,150,4,0,,,1,267 +36456829,Perfectly Located Organic Getaway,6677425,Isabel,Manhattan,Upper West Side,40.79753,-73.96155,Shared room,55,2,0,,,2,49 +36457700,"Large 3 bed, 2 bath , garden , bbq , all you need",66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.68886,-73.92879,Entire home/apt,345,4,0,,,3,354 +36457832,"❥NYC Apt: 4min/subway, 25m/city, 20m/LGA,JFK❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69482,-73.86618,Entire home/apt,85,3,0,,,6,300 +36458668,"2beds Private Room Step to LGA, CitiFiled, Midtown",217463199,Marvy,Queens,Flushing,40.74387,-73.82556,Private room,68,3,0,,,4,362 +36468375,"two girls room , I speak Chinese and English",274188386,Qizhi,Manhattan,East Village,40.73197,-73.98674,Private room,93,7,0,,,1,173 +36468386,纽约罗岛Roosevelt Island整租或合租 窗外美景 设施全 家具新 到曼哈顿方便 性价比高,228268650,Yan,Manhattan,Roosevelt Island,40.76688,-73.94688,Entire home/apt,145,1,0,,,1,30 +36468409,One bedroom Manhattan Upper East Side Apartment,57502664,Omar,Manhattan,Upper East Side,40.76628,-73.95795,Entire home/apt,120,1,0,,,1,1 +36468880,Private room in a nice Brooklyn apartment,274195458,Abayomi,Brooklyn,Bushwick,40.69308,-73.91025,Private room,130,1,0,,,1,83 +36469741,Comfortable & Big room with 2 beds!,274012871,Stefan,Queens,Long Island City,40.76726,-73.93936,Private room,93,2,0,,,2,14 +36471896,Private Bedroom & PRIVATE BATHROOM in Manhattan,23548340,Sarah,Manhattan,Upper East Side,40.77192,-73.95369,Private room,95,1,0,,,1,2 +36472171,1 bedroom in sunlit apartment,99144947,Brenda,Manhattan,Inwood,40.86845,-73.92449,Private room,80,1,0,,,1,79 +36472710,CozyHideAway Suite,274225617,Alberth,Queens,Briarwood,40.70786,-73.81448,Entire home/apt,58,1,0,,,1,159 +36473044,The place you were dreaming for.(only for guys),261338177,Diana,Brooklyn,Gravesend,40.5908,-73.97116,Shared room,25,1,0,,,6,338 +36473253,Heaven for you(only for guy),261338177,Diana,Brooklyn,Gravesend,40.59118,-73.97119,Shared room,25,7,0,,,6,365 +36474023,"Cozy, Sunny Brooklyn Escape",1550580,Julia,Brooklyn,Bedford-Stuyvesant,40.68759,-73.95705,Private room,45,4,0,,,1,7 +36474911,"Cozy, clean Williamsburg 1- bedroom apartment",1273444,Tanja,Brooklyn,Williamsburg,40.71197,-73.94946,Entire home/apt,99,4,0,,,1,22 +36475746,A LARGE ROOM - 1 MONTH MINIMUM - WASHER&DRYER,144008701,Ozzy Ciao,Manhattan,Harlem,40.82233,-73.94687,Private room,35,29,0,,,2,31 +36476675,Nycity-MyHome,8636072,Ben,Manhattan,Hell's Kitchen,40.76236,-73.99255,Entire home/apt,260,3,0,,,1,9 +36477307,Brooklyn paradise,241945355,Clement & Rose,Brooklyn,Flatlands,40.63116,-73.92616,Entire home/apt,170,1,0,,,2,363 +36477588,Short Term Rental in East Harlem,214535893,Jeffrey,Manhattan,East Harlem,40.7976,-73.93947,Private room,50,7,0,,,1,22 +36478343,Welcome all as family,274273284,Anastasia,Manhattan,East Harlem,40.78749,-73.94749,Private room,140,1,0,,,1,180 +36478357,"Cozy, Air-Conditioned Private Bedroom in Harlem",177932088,Joseph,Manhattan,Harlem,40.80953,-73.9541,Private room,60,1,0,,,1,26 +36479230,Studio sized room with beautiful light,65767720,Melanie,Brooklyn,Bushwick,40.70418,-73.91471,Private room,42,7,0,,,1,16 +36479723,Room for rest,41326856,Jeerathinan,Queens,Elmhurst,40.74477,-73.87727,Private room,45,1,0,,,5,172 +36480292,Gorgeous 1.5 Bdr with a private yard- Williamsburg,540335,Lee,Brooklyn,Williamsburg,40.71728,-73.94394,Entire home/apt,120,20,0,,,1,22 +36481315,The Raccoon Artist Studio in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,120,1,0,,,3,365 +36481615,"Peaceful space in Greenpoint, BK",274298453,Adrien,Brooklyn,Greenpoint,40.72585,-73.94001,Private room,54,6,0,,,1,15 +36482231,Bushwick _ Myrtle-Wyckoff,66058896,Luisa,Brooklyn,Bushwick,40.69652,-73.91079,Private room,40,20,0,,,1,31 +36482416,Sunny Bedroom NYC! Walking to Central Park!!,131529729,Kendall,Manhattan,East Harlem,40.79755,-73.93614,Private room,75,2,0,,,2,364 +36482783,Brooklyn Oasis in the heart of Williamsburg,274307600,Jonathan,Brooklyn,Williamsburg,40.7179,-73.96238,Private room,190,7,0,,,1,341 +36482809,Stunning Bedroom NYC! Walking to Central Park!!,131529729,Kendall,Manhattan,East Harlem,40.79633,-73.93605,Private room,75,2,0,,,2,353 +36483010,Comfy 1 Bedroom in Midtown East,274311461,Scott,Manhattan,Midtown,40.75561,-73.96723,Entire home/apt,200,6,0,,,1,176 +36483152,Garden Jewel Apartment in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,0,,,3,365 +36484087,"Spacious Room w/ Private Rooftop, Central location",274321313,Kat,Manhattan,Hell's Kitchen,40.76392,-73.99183,Private room,125,4,0,,,1,31 +36484363,QUIT PRIVATE HOUSE,107716952,Michael,Queens,Jamaica,40.69137,-73.80844,Private room,65,1,0,,,2,163 +36484665,Charming one bedroom - newly renovated rowhouse,8232441,Sabrina,Brooklyn,Bedford-Stuyvesant,40.67853,-73.94995,Private room,70,2,0,,,2,9 +36485057,Affordable room in Bushwick/East Williamsburg,6570630,Marisol,Brooklyn,Bushwick,40.70184,-73.93317,Private room,40,4,0,,,2,36 +36485431,Sunny Studio at Historical Neighborhood,23492952,Ilgar & Aysel,Manhattan,Harlem,40.81475,-73.94867,Entire home/apt,115,10,0,,,1,27 +36485609,43rd St. Time Square-cozy single bed,30985759,Taz,Manhattan,Hell's Kitchen,40.75751,-73.99112,Shared room,55,1,0,,,6,2 +36487245,Trendy duplex in the very heart of Hell's Kitchen,68119814,Christophe,Manhattan,Hell's Kitchen,40.76404,-73.98933,Private room,90,7,0,,,1,23 diff --git a/data/abb_nyc_housing_2019_data2.csv b/data/abb_nyc_housing_2019_data2.csv new file mode 100644 index 00000000..8e052808 --- /dev/null +++ b/data/abb_nyc_housing_2019_data2.csv @@ -0,0 +1,48896 @@ +,host_id,borough,neighbourhood,latitude,longitude,room_type,price,minimum_nights,number_of_reviews,reviews_per_month,calculated_host_listings_count,availability_365 +0,2787,Brooklyn,Kensington,40.647490000000005,-73.97237,Private room,149,1,9,0.21,6,365 +1,2845,Manhattan,Midtown,40.75362,-73.98376999999999,Entire home/apt,225,1,45,0.38,2,355 +2,4632,Manhattan,Harlem,40.809020000000004,-73.9419,Private room,150,3,0,,1,365 +3,4869,Brooklyn,Clinton Hill,40.685140000000004,-73.95976,Entire home/apt,89,1,270,4.64,1,194 +4,7192,Manhattan,East Harlem,40.79851,-73.94399,Entire home/apt,80,10,9,0.1,1,0 +5,7322,Manhattan,Murray Hill,40.74767,-73.975,Entire home/apt,200,3,74,0.59,1,129 +6,7356,Brooklyn,Bedford-Stuyvesant,40.68688,-73.95596,Private room,60,45,49,0.4,1,0 +7,8967,Manhattan,Hell's Kitchen,40.76489,-73.98493,Private room,79,2,430,3.47,1,220 +8,7490,Manhattan,Upper West Side,40.80178,-73.96723,Private room,79,2,118,0.99,1,0 +9,7549,Manhattan,Chinatown,40.713440000000006,-73.99037,Entire home/apt,150,1,160,1.33,4,188 +10,7702,Manhattan,Upper West Side,40.80316,-73.96545,Entire home/apt,135,5,53,0.43,1,6 +11,7989,Manhattan,Hell's Kitchen,40.76076,-73.98867,Private room,85,2,188,1.5,1,39 +12,9744,Brooklyn,South Slope,40.66829,-73.98779,Private room,89,4,167,1.34,3,314 +13,11528,Manhattan,Upper West Side,40.79826,-73.96113000000001,Private room,85,2,113,0.91,1,333 +14,11975,Manhattan,West Village,40.7353,-74.00525,Entire home/apt,120,90,27,0.22,1,0 +15,15991,Brooklyn,Williamsburg,40.70837,-73.95352,Entire home/apt,140,2,148,1.2,1,46 +16,17571,Brooklyn,Fort Greene,40.69169,-73.97185,Entire home/apt,215,2,198,1.72,1,321 +17,18946,Manhattan,Chelsea,40.74192,-73.99501,Private room,140,1,260,2.12,1,12 +18,20950,Brooklyn,Crown Heights,40.67592,-73.94694,Entire home/apt,99,3,53,4.44,1,21 +19,17985,Manhattan,East Harlem,40.79685,-73.94872,Entire home/apt,190,7,0,,2,249 +20,21207,Brooklyn,Williamsburg,40.71842,-73.95718000000001,Entire home/apt,299,3,9,0.07,1,0 +21,22486,Brooklyn,Park Slope,40.680690000000006,-73.97706,Private room,130,2,130,1.09,6,347 +22,22486,Brooklyn,Park Slope,40.67989,-73.97798,Private room,80,1,39,0.37,6,364 +23,22486,Brooklyn,Park Slope,40.680009999999996,-73.97865,Private room,110,2,71,0.61,6,304 +24,25183,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94028,Entire home/apt,120,2,88,0.73,2,233 +25,25326,Brooklyn,Windsor Terrace,40.65599,-73.97519,Private room,60,1,19,1.37,2,85 +26,26394,Manhattan,Inwood,40.867540000000005,-73.92639,Private room,80,4,0,,1,0 +27,30193,Manhattan,Hell's Kitchen,40.76715,-73.98533,Entire home/apt,150,10,58,0.49,1,75 +28,31374,Manhattan,Inwood,40.86482,-73.92106,Private room,44,3,108,1.11,3,311 +29,21904,Manhattan,East Village,40.7292,-73.98541999999999,Entire home/apt,180,14,29,0.24,1,67 +30,32294,Manhattan,Harlem,40.82245,-73.95104,Private room,50,3,242,2.04,3,355 +31,32045,Manhattan,Harlem,40.81305,-73.95466,Private room,52,2,88,1.42,1,255 +32,32169,Brooklyn,Greenpoint,40.722190000000005,-73.93762,Private room,55,4,197,1.65,3,284 +33,32294,Manhattan,Harlem,40.8213,-73.95318,Private room,50,3,273,2.37,3,359 +34,35935,Brooklyn,Bedford-Stuyvesant,40.6831,-73.95473,Private room,70,1,74,0.66,2,269 +35,9744,Brooklyn,South Slope,40.668690000000005,-73.9878,Private room,89,4,168,1.41,3,340 +36,7355,Brooklyn,Bedford-Stuyvesant,40.688759999999995,-73.94312,Private room,35,60,0,,1,365 +37,44145,Brooklyn,Bushwick,40.701859999999996,-73.92745,Entire home/apt,85,2,231,1.96,2,22 +38,45445,Brooklyn,Flatbush,40.63702,-73.96327,Private room,150,1,0,,1,365 +39,7549,Manhattan,Lower East Side,40.714009999999995,-73.98917,Shared room,40,1,214,1.81,4,188 +40,46978,Manhattan,East Village,40.7229,-73.98199,Private room,68,2,245,2.08,2,96 +41,47610,Brooklyn,South Slope,40.66278,-73.97966,Entire home/apt,120,3,15,0.39,1,345 +42,47618,Brooklyn,Fort Greene,40.69673,-73.97584,Private room,120,7,25,0.23,1,311 +43,16800,Manhattan,Upper West Side,40.79009,-73.97927,Private room,135,4,81,0.69,1,273 +44,47727,Manhattan,Harlem,40.81175,-73.94478000000001,Entire home/apt,150,7,97,0.84,1,309 +45,49670,Brooklyn,Prospect-Lefferts Gardens,40.659440000000004,-73.96238000000001,Entire home/apt,150,29,11,0.49,1,95 +46,50124,Queens,Long Island City,40.74771,-73.9474,Private room,130,3,248,2.25,1,215 +47,50148,Brooklyn,Bedford-Stuyvesant,40.68111,-73.95591,Entire home/apt,110,7,61,0.52,1,265 +48,50846,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9409,Entire home/apt,115,3,11,0.1,1,0 +49,52335,Brooklyn,Fort Greene,40.69142,-73.97376,Private room,80,3,135,1.16,2,192 +50,54275,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93934,Private room,80,1,112,1.01,3,251 +51,56094,Manhattan,Upper West Side,40.78635,-73.97008000000001,Entire home/apt,151,2,73,0.63,1,302 +52,56104,Brooklyn,Williamsburg,40.7042,-73.9356,Entire home/apt,228,3,82,0.7,1,140 +53,56246,Brooklyn,Greenpoint,40.73506,-73.95392,Entire home/apt,144,2,328,2.82,1,234 +54,56284,Manhattan,Kips Bay,40.73961,-73.98074,Entire home/apt,200,7,19,0.22,1,257 +55,56512,Brooklyn,Williamsburg,40.70881,-73.9593,Entire home/apt,150,30,105,0.9,1,30 +56,59023,Manhattan,Lower East Side,40.720040000000004,-73.99104,Private room,110,5,19,0.17,1,301 +57,59734,Manhattan,Hell's Kitchen,40.755309999999994,-73.99293,Private room,69,2,289,2.49,2,294 +58,32169,Brooklyn,Greenpoint,40.72401,-73.93788,Private room,49,4,138,1.19,3,320 +59,60049,Manhattan,SoHo,40.7221,-73.99775,Entire home/apt,180,30,21,0.3,1,154 +60,60252,Brooklyn,Williamsburg,40.71185,-73.96204,Private room,80,2,42,0.38,1,263 +61,60278,Manhattan,Chelsea,40.74623,-73.9953,Entire home/apt,375,180,5,0.12,1,180 +62,61491,Manhattan,Upper East Side,40.77065,-73.95269,Entire home/apt,250,2,66,0.57,2,231 +63,63588,Brooklyn,Prospect Heights,40.67811,-73.96428,Entire home/apt,200,30,143,1.33,2,297 +64,63613,Brooklyn,Clinton Hill,40.69,-73.96788000000001,Private room,55,7,27,0.23,2,292 +65,63924,Manhattan,Hell's Kitchen,40.75979,-73.99119,Private room,52,30,191,1.65,1,191 +66,64056,Brooklyn,Park Slope,40.673429999999996,-73.98338000000001,Entire home/apt,225,3,4,0.16,1,0 +67,64442,Manhattan,East Village,40.726490000000005,-73.97904,Private room,80,1,338,4.72,2,72 +68,64522,Brooklyn,Williamsburg,40.70933,-73.96791999999999,Entire home/apt,275,1,148,1.4,1,362 +69,4396,Manhattan,East Village,40.72298,-73.98474,Private room,99,1,106,1.26,2,336 +70,65837,Manhattan,East Harlem,40.80164,-73.93921999999999,Entire home/apt,225,4,190,1.64,1,215 +71,66035,Manhattan,East Village,40.72162,-73.98008,Entire home/apt,230,9,49,0.43,1,116 +72,66243,Manhattan,Hell's Kitchen,40.76342,-73.98865,Private room,51,7,23,0.43,1,88 +73,68428,Manhattan,Washington Heights,40.83139,-73.94095,Private room,65,2,49,1.6,2,336 +74,68599,Brooklyn,Clinton Hill,40.68346,-73.96374,Private room,105,2,105,0.92,1,304 +75,69829,Manhattan,East Village,40.72828,-73.98801,Entire home/apt,190,5,21,0.2,1,224 +76,69942,Manhattan,Upper East Side,40.76865,-73.95058,Private room,200,1,142,1.5,1,322 +77,70091,Queens,Woodside,40.75038,-73.90334,Private room,70,30,25,0.22,1,324 +78,71512,Brooklyn,Fort Greene,40.6932,-73.97267,Private room,95,3,143,1.28,1,132 +79,71876,Manhattan,Chelsea,40.74138,-74.00197,Private room,150,3,167,1.65,1,295 +80,72014,Brooklyn,Williamsburg,40.71154,-73.96112,Private room,145,3,61,0.54,4,238 +81,73051,Manhattan,Harlem,40.82915,-73.95136,Entire home/apt,110,31,54,0.49,1,209 +82,73128,Manhattan,Lower East Side,40.718509999999995,-73.98892,Entire home/apt,285,5,70,0.62,1,328 +83,73469,Brooklyn,Flatbush,40.65401,-73.96323000000001,Entire home/apt,130,6,16,0.15,1,38 +84,44263,Manhattan,Lower East Side,40.7114,-73.98794000000001,Private room,94,30,94,0.84,1,188 +85,74303,Brooklyn,Brooklyn Heights,40.69723,-73.99268000000001,Entire home/apt,800,1,25,0.24,1,7 +86,74857,Brooklyn,Williamsburg,40.71833,-73.95748,Entire home/apt,105,3,61,0.53,1,272 +87,62407,Manhattan,East Village,40.72334,-73.9844,Private room,60,3,194,1.73,1,26 +88,76627,Manhattan,East Village,40.72912,-73.98057,Private room,50,1,2,0.05,1,0 +89,72014,Brooklyn,Williamsburg,40.71156,-73.96218,Private room,85,3,174,1.54,4,288 +90,961342,Brooklyn,Bushwick,40.70032,-73.9383,Private room,65,4,24,0.28,1,317 +91,78460,Brooklyn,Prospect Heights,40.68233,-73.97261,Entire home/apt,131,4,166,3.4,1,207 +92,51038,Brooklyn,Clinton Hill,40.68634,-73.96600000000001,Private room,98,7,16,0.2,6,185 +93,79070,Brooklyn,Prospect Heights,40.68035,-73.97162,Entire home/apt,250,7,21,0.3,1,158 +94,79402,Brooklyn,Williamsburg,40.70984,-73.95775,Entire home/apt,100,5,168,1.57,1,0 +95,44145,Brooklyn,Bushwick,40.70093,-73.92609,Entire home/apt,105,3,118,1.05,2,9 +96,42032,Manhattan,Upper West Side,40.79764,-73.96177,Entire home/apt,140,3,81,0.71,1,198 +97,82685,Manhattan,Harlem,40.82803,-73.94731,Private room,89,1,1,0.11,1,365 +98,83257,Manhattan,Chelsea,40.74008,-74.00271,Private room,98,30,30,0.27,2,364 +99,87773,Brooklyn,Bedford-Stuyvesant,40.684129999999996,-73.92357,Entire home/apt,125,7,139,1.23,2,311 +100,32294,Manhattan,Harlem,40.822790000000005,-73.95139,Private room,60,3,11,0.87,3,219 +101,11481,Brooklyn,Carroll Gardens,40.67967,-74.00154,Entire home/apt,175,2,233,2.09,3,342 +102,63318,Manhattan,Washington Heights,40.83927,-73.94281,Private room,65,2,68,0.6,1,312 +103,93790,Manhattan,West Village,40.730959999999996,-74.00319,Entire home/apt,500,4,46,0.55,2,243 +104,97219,Brooklyn,Williamsburg,40.71332,-73.94176999999999,Private room,101,3,335,3.02,1,152 +105,97797,Brooklyn,Park Slope,40.66941,-73.98109000000001,Entire home/apt,220,30,88,0.79,1,9 +106,87773,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92376999999999,Entire home/apt,125,90,162,1.46,2,137 +107,105538,Brooklyn,Williamsburg,40.71459,-73.94844,Entire home/apt,80,30,29,0.4,1,222 +108,107628,Manhattan,Harlem,40.8092,-73.94421,Private room,100,2,170,1.61,1,346 +109,109589,Brooklyn,Gowanus,40.68157,-73.98989,Entire home/apt,200,30,19,0.2,1,208 +110,59734,Manhattan,Hell's Kitchen,40.75527,-73.99291,Private room,59,2,334,3.0,2,279 +111,51038,Brooklyn,Clinton Hill,40.68698,-73.96571999999999,Private room,125,2,19,0.2,6,250 +112,112793,Manhattan,East Village,40.7288,-73.98192,Entire home/apt,140,7,12,0.13,1,164 +113,42273,Brooklyn,South Slope,40.66853,-73.98912,Entire home/apt,120,30,467,4.22,2,192 +114,72062,Manhattan,East Village,40.7254,-73.98156999999999,Entire home/apt,350,2,7,0.06,4,298 +115,115157,Manhattan,Kips Bay,40.742940000000004,-73.98009,Entire home/apt,199,5,38,0.38,1,260 +116,115307,Brooklyn,Williamsburg,40.71942,-73.95748,Entire home/apt,325,3,324,3.01,1,107 +117,115560,Manhattan,Upper West Side,40.77823,-73.97636999999999,Entire home/apt,235,6,27,0.27,1,199 +118,72062,Manhattan,East Village,40.72555,-73.97965,Entire home/apt,225,1,115,1.05,4,299 +119,118971,Brooklyn,South Slope,40.66831,-73.98604,Private room,99,2,354,3.2,3,20 +120,119510,Manhattan,Harlem,40.82754,-73.94919,Entire home/apt,170,2,195,2.03,1,318 +121,119588,Brooklyn,South Slope,40.66499,-73.97925,Entire home/apt,400,2,16,0.24,2,216 +122,119900,Manhattan,Upper West Side,40.778420000000004,-73.97556,Entire home/apt,170,7,13,0.12,1,224 +123,120223,Manhattan,East Village,40.72245,-73.98527,Entire home/apt,100,4,25,0.23,1,0 +124,65091,Brooklyn,Prospect-Lefferts Gardens,40.65593,-73.96053,Private room,75,2,9,0.08,1,324 +125,6197784,Brooklyn,Williamsburg,40.719229999999996,-73.96468,Private room,90,1,9,0.08,1,245 +126,124352,Manhattan,Upper East Side,40.778,-73.94821999999999,Entire home/apt,150,5,21,0.19,1,189 +127,124797,Manhattan,Washington Heights,40.85879,-73.93128,Private room,85,15,36,0.33,1,307 +128,35935,Brooklyn,Bedford-Stuyvesant,40.68332,-73.9547,Private room,70,3,63,0.58,2,310 +129,126607,Manhattan,Harlem,40.816179999999996,-73.94894000000001,Entire home/apt,120,3,155,1.42,3,213 +130,127608,Brooklyn,Clinton Hill,40.68414,-73.96351,Private room,89,3,260,2.35,1,278 +131,125857,Manhattan,East Village,40.72392,-73.99143000000001,Entire home/apt,185,5,73,0.66,1,209 +132,129352,Brooklyn,Greenpoint,40.73494,-73.9503,Private room,50,3,193,1.86,1,0 +133,120335,Manhattan,Lower East Side,40.713409999999996,-73.98855999999999,Entire home/apt,105,3,32,0.29,1,16 +134,117287,Manhattan,Hell's Kitchen,40.767540000000004,-73.98399,Private room,130,2,50,0.45,3,234 +135,135619,Manhattan,West Village,40.73442,-74.00303000000001,Entire home/apt,115,29,26,0.25,1,12 +136,137292,Brooklyn,Flatlands,40.631879999999995,-73.93248,Private room,77,2,2,0.02,1,178 +137,137814,Brooklyn,Clinton Hill,40.6873,-73.9634,Private room,76,2,426,3.89,3,275 +138,137974,Brooklyn,Bedford-Stuyvesant,40.682959999999994,-73.93661999999999,Entire home/apt,125,3,227,2.09,2,163 +139,116599,Brooklyn,Clinton Hill,40.6863,-73.96765,Private room,135,4,84,0.77,3,365 +140,138579,Brooklyn,Greenpoint,40.73409,-73.95348,Entire home/apt,250,29,3,0.03,1,34 +141,139612,Brooklyn,Williamsburg,40.71561,-73.94835,Entire home/apt,199,3,10,0.1,1,280 +142,139874,Brooklyn,Cobble Hill,40.6857,-73.99183000000001,Entire home/apt,140,2,4,0.04,1,0 +143,140025,Queens,Flushing,40.74028,-73.83168,Private room,140,2,1,0.01,1,1 +144,137974,Brooklyn,Bedford-Stuyvesant,40.682809999999996,-73.93524000000001,Entire home/apt,115,3,124,1.72,2,170 +145,142833,Brooklyn,Williamsburg,40.715959999999995,-73.93938,Entire home/apt,160,3,11,0.11,1,188 +146,143027,Brooklyn,Williamsburg,40.71492,-73.95935,Entire home/apt,195,4,240,2.19,1,214 +147,143048,Manhattan,East Village,40.72354,-73.98295,Entire home/apt,195,3,30,0.28,1,248 +148,72014,Brooklyn,Williamsburg,40.71165,-73.96087,Private room,80,3,200,1.86,4,262 +149,149929,Brooklyn,Fort Greene,40.69101,-73.97312,Private room,44,8,27,1.05,5,280 +150,120291,Manhattan,West Village,40.73474,-74.00101,Private room,156,4,79,0.74,1,307 +151,62165,Brooklyn,Prospect Heights,40.67386,-73.96641,Private room,85,15,9,0.09,1,339 +152,142684,Brooklyn,Williamsburg,40.71536,-73.96056999999999,Private room,125,3,155,1.61,1,1 +153,137432,Brooklyn,Prospect Heights,40.6741,-73.96595,Entire home/apt,115,15,4,0.05,1,269 +154,157798,Manhattan,East Harlem,40.79295,-73.93997,Private room,69,2,34,0.32,1,10 +155,158284,Manhattan,West Village,40.73226,-74.00401,Entire home/apt,225,45,134,1.24,1,312 +156,159370,Brooklyn,Williamsburg,40.71363,-73.96398,Entire home/apt,125,6,27,0.25,1,189 +157,92788,Manhattan,Upper East Side,40.77711,-73.9527,Entire home/apt,219,4,126,1.16,2,290 +158,165789,Brooklyn,Boerum Hill,40.685590000000005,-73.98094,Entire home/apt,475,3,23,0.27,1,230 +159,168417,Manhattan,Upper East Side,40.77456,-73.95323,Entire home/apt,99,1,234,2.6,2,164 +160,168525,Brooklyn,Williamsburg,40.710879999999996,-73.95055,Private room,69,4,202,1.86,2,53 +161,110506,Queens,Sunnyside,40.74559,-73.92313,Private room,79,30,28,0.26,1,126 +162,170510,Brooklyn,Bedford-Stuyvesant,40.68306,-73.94659,Entire home/apt,135,2,309,2.86,2,3 +163,171851,Brooklyn,DUMBO,40.70207,-73.98571,Private room,250,3,14,0.13,1,189 +164,174025,Manhattan,Upper East Side,40.76123,-73.9642,Entire home/apt,250,3,4,0.08,1,365 +165,180083,Brooklyn,Gowanus,40.66858,-73.99083,Entire home/apt,250,2,80,2.17,1,0 +166,181167,Manhattan,Harlem,40.827040000000004,-73.94906999999999,Entire home/apt,80,3,2,0.04,1,0 +167,137814,Brooklyn,Clinton Hill,40.68843,-73.96408000000001,Private room,70,2,294,3.47,3,336 +168,11481,Brooklyn,Carroll Gardens,40.6783,-74.00135,Entire home/apt,165,2,150,1.4,3,342 +169,185978,Staten Island,St. George,40.64524,-74.08088000000001,Private room,70,2,166,1.66,1,312 +170,177536,Brooklyn,Bushwick,40.70641,-73.91765,Private room,50,2,47,0.94,1,37 +171,190409,Bronx,Highbridge,40.83232,-73.93184000000001,Private room,40,1,219,2.04,3,353 +172,193360,Brooklyn,Williamsburg,40.71045,-73.9677,Entire home/apt,150,2,193,1.78,1,177 +173,72062,Manhattan,East Village,40.72518,-73.98034,Private room,125,1,84,0.78,4,310 +174,193722,Manhattan,Financial District,40.70666,-74.01374,Entire home/apt,196,3,114,1.06,1,0 +175,181376,Brooklyn,Fort Greene,40.690979999999996,-73.97113,Private room,110,2,213,2.0,2,321 +176,193637,Manhattan,West Village,40.737559999999995,-74.00405,Entire home/apt,170,3,86,0.8,1,246 +177,126607,Manhattan,Harlem,40.815259999999995,-73.94791,Entire home/apt,165,3,80,0.75,3,231 +178,201297,Manhattan,West Village,40.73423,-74.0046,Entire home/apt,150,26,38,0.36,1,225 +179,202249,Manhattan,Harlem,40.82374,-73.9373,Entire home/apt,100,2,18,1.79,1,0 +180,67778,Brooklyn,Fort Greene,40.688629999999996,-73.97691,Private room,65,2,206,1.92,2,0 +181,204539,Queens,Ridgewood,40.70382,-73.89797,Entire home/apt,350,8,10,0.11,5,365 +182,867225,Manhattan,Morningside Heights,40.80549,-73.95924000000001,Private room,99,4,122,1.18,2,233 +183,204724,Brooklyn,Williamsburg,40.71627,-73.9587,Entire home/apt,200,4,33,0.58,1,1 +184,8198,Brooklyn,Park Slope,40.67994,-73.97863000000001,Entire home/apt,150,5,52,0.5,1,18 +185,209460,Brooklyn,Bedford-Stuyvesant,40.67992,-73.9475,Private room,90,3,126,1.17,4,343 +186,210746,Brooklyn,Prospect Heights,40.67868,-73.97306999999999,Private room,120,3,51,0.48,3,250 +187,212722,Manhattan,Upper East Side,40.76834,-73.95334,Private room,75,3,199,1.85,1,326 +188,214148,Brooklyn,Bedford-Stuyvesant,40.68237,-73.9415,Entire home/apt,175,26,30,0.29,1,364 +189,214287,Manhattan,Chelsea,40.74031,-73.99999,Entire home/apt,125,3,3,0.03,1,0 +190,218404,Manhattan,Hell's Kitchen,40.76307,-73.99665,Entire home/apt,275,1,41,0.38,1,299 +191,221873,Manhattan,Lower East Side,40.71882,-73.98852,Entire home/apt,299,2,109,1.04,1,207 +192,9744,Brooklyn,South Slope,40.6693,-73.98804,Entire home/apt,135,5,151,1.43,3,162 +193,236421,Manhattan,Upper East Side,40.77333,-73.95199000000001,Private room,130,14,0,,2,0 +194,236655,Manhattan,Lower East Side,40.72319,-73.99201,Private room,83,1,285,2.69,1,7 +195,237329,Manhattan,Chelsea,40.74859,-73.99671,Private room,123,1,375,3.52,1,328 +196,27848,Queens,Jamaica,40.67252,-73.76597,Private room,55,2,52,0.49,2,365 +197,240360,Manhattan,Hell's Kitchen,40.762440000000005,-73.99271,Entire home/apt,195,5,10,1.01,1,0 +198,247432,Brooklyn,Bedford-Stuyvesant,40.69546,-73.93503,Private room,80,2,11,0.48,1,0 +199,204539,Queens,Middle Village,40.717220000000005,-73.87856,Entire home/apt,98,30,33,0.31,5,240 +200,204539,Queens,Ridgewood,40.70234,-73.89816,Private room,140,7,6,0.06,5,365 +201,204539,Queens,Middle Village,40.71546,-73.87854,Entire home/apt,265,7,38,0.38,5,365 +202,10889,Brooklyn,Williamsburg,40.7195,-73.95976,Entire home/apt,249,2,358,3.44,2,164 +203,255583,Manhattan,Hell's Kitchen,40.76548,-73.98474,Shared room,105,6,10,0.09,1,363 +204,253385,Manhattan,Harlem,40.80234,-73.95603,Private room,200,30,0,,1,365 +205,210746,Brooklyn,Prospect Heights,40.6787,-73.97261999999999,Private room,100,2,226,2.12,3,250 +206,256161,Manhattan,Harlem,40.81035,-73.94598,Entire home/apt,121,1,104,1.0,5,247 +207,190409,Bronx,Highbridge,40.83075,-73.93058,Private room,45,1,138,1.45,3,323 +208,258164,Manhattan,East Harlem,40.79958,-73.94275,Private room,100,5,204,1.92,1,192 +209,260709,Brooklyn,Williamsburg,40.71625,-73.93845,Entire home/apt,140,2,253,3.04,1,125 +210,262138,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93549,Private room,71,2,23,0.22,1,91 +211,88209,Manhattan,NoHo,40.72773,-73.99134000000001,Private room,130,2,115,1.17,1,75 +212,263414,Manhattan,West Village,40.728609999999996,-74.0049,Entire home/apt,199,5,129,1.22,1,286 +213,168525,Brooklyn,Williamsburg,40.709790000000005,-73.95161999999999,Private room,69,4,82,1.13,2,60 +214,264928,Brooklyn,Fort Greene,40.68656,-73.97525,Private room,68,3,37,0.35,1,0 +215,267593,Manhattan,East Village,40.72752,-73.98432,Entire home/apt,130,1,204,2.04,1,192 +216,268014,Brooklyn,Greenpoint,40.729,-73.95829,Entire home/apt,195,2,69,0.65,1,58 +217,256161,Manhattan,Harlem,40.81219,-73.94499,Private room,64,1,192,1.84,5,245 +218,272006,Queens,Ditmars Steinway,40.77185,-73.90502,Entire home/apt,140,2,17,0.16,1,292 +219,199392,Brooklyn,Cobble Hill,40.68926,-73.99386,Entire home/apt,159,2,222,2.12,1,279 +220,239208,Manhattan,East Village,40.72821,-73.98701,Entire home/apt,189,3,205,1.96,1,0 +221,274557,Manhattan,Hell's Kitchen,40.7672,-73.98508000000001,Entire home/apt,250,3,94,0.96,1,3 +222,275459,Manhattan,East Village,40.73012,-73.99053,Entire home/apt,239,3,7,0.07,1,351 +223,275578,Manhattan,Flatiron District,40.7403,-73.98498000000001,Entire home/apt,305,2,108,1.09,1,201 +224,276291,Manhattan,Harlem,40.809309999999996,-73.94343,Entire home/apt,155,3,222,2.1,2,232 +225,277379,Manhattan,Harlem,40.8251,-73.94287,Private room,60,1,458,4.58,2,258 +226,277394,Brooklyn,Windsor Terrace,40.6585,-73.98397,Private room,135,2,21,0.26,1,272 +227,279797,Manhattan,Roosevelt Island,40.76193,-73.9501,Private room,120,7,17,0.3,1,341 +228,282927,Manhattan,Lower East Side,40.72052,-73.98589,Entire home/apt,150,3,41,0.39,1,244 +229,204539,Queens,Ridgewood,40.70411,-73.89934000000001,Entire home/apt,140,14,1,0.01,5,365 +230,274782,Brooklyn,Greenpoint,40.73401,-73.95966999999999,Entire home/apt,135,2,69,0.67,1,12 +231,186084,Manhattan,Chinatown,40.71756,-73.99503,Entire home/apt,250,4,18,0.18,2,265 +232,288031,Manhattan,Midtown,40.7589,-73.96991,Entire home/apt,250,30,82,0.78,1,0 +233,289653,Manhattan,SoHo,40.72003,-74.00262,Entire home/apt,500,4,94,0.99,1,329 +234,99212,Manhattan,Greenwich Village,40.73194,-73.99474000000001,Entire home/apt,225,5,10,0.1,1,91 +235,292204,Manhattan,East Harlem,40.79163,-73.94573000000001,Entire home/apt,125,28,183,1.83,2,365 +236,256161,Manhattan,Harlem,40.8118,-73.94434,Private room,92,1,189,1.82,5,253 +237,249372,Manhattan,Harlem,40.81583,-73.94707,Private room,175,2,1,0.11,1,365 +238,292630,Manhattan,East Village,40.72654,-73.98049,Entire home/apt,99,2,127,1.22,1,320 +239,293394,Manhattan,Upper West Side,40.80021,-73.96070999999999,Entire home/apt,195,4,4,0.04,1,0 +240,126607,Manhattan,East Harlem,40.80942,-73.93936,Entire home/apt,140,3,135,1.3,3,192 +241,295760,Manhattan,Little Italy,40.719609999999996,-73.9954,Entire home/apt,135,2,21,0.2,1,0 +242,291112,Manhattan,Chelsea,40.74358,-74.00027,Entire home/apt,500,2,35,0.34,1,348 +243,297176,Manhattan,Harlem,40.80335,-73.9575,Private room,80,14,10,2.21,2,0 +244,297769,Manhattan,Chinatown,40.71445,-73.9908,Private room,120,4,171,1.8,2,353 +245,23619,Manhattan,Midtown,40.757490000000004,-73.96897,Entire home/apt,110,200,92,0.9,1,140 +246,281764,Brooklyn,East Flatbush,40.644459999999995,-73.9503,Entire home/apt,65,3,238,2.3,1,2 +247,303882,Manhattan,East Village,40.7268,-73.99079,Entire home/apt,130,50,56,0.58,1,56 +248,197755,Brooklyn,Bushwick,40.688,-73.9171,Entire home/apt,99,3,111,2.13,1,68 +249,303939,Staten Island,Tompkinsville,40.63536,-74.08537,Private room,36,2,193,1.85,6,360 +250,303939,Staten Island,Tompkinsville,40.63627,-74.08543,Private room,37,2,147,1.44,6,0 +251,303939,Staten Island,Tompkinsville,40.63518,-74.08546,Private room,37,2,177,1.71,6,320 +252,306545,Manhattan,East Village,40.72477,-73.98161,Entire home/apt,175,3,185,1.78,2,326 +253,306605,Manhattan,Chelsea,40.74238,-73.99566999999999,Entire home/apt,205,9,62,0.7,2,76 +254,306739,Brooklyn,Greenpoint,40.72945,-73.95510999999999,Entire home/apt,285,3,124,1.22,3,279 +255,308875,Brooklyn,Williamsburg,40.70763,-73.95177,Private room,59,2,181,1.77,2,15 +256,303939,Staten Island,Tompkinsville,40.634809999999995,-74.08519,Private room,36,2,333,3.19,6,340 +257,307962,Queens,Astoria,40.753840000000004,-73.91433,Entire home/apt,99,5,441,4.5,1,226 +258,308652,Brooklyn,Kensington,40.641059999999996,-73.97426,Private room,39,1,45,0.46,2,365 +259,310458,Brooklyn,Park Slope,40.66793,-73.98326999999999,Private room,60,14,9,0.09,2,0 +260,295128,Bronx,Clason Point,40.81309,-73.85514,Private room,90,2,0,,7,349 +261,310670,Bronx,Eastchester,40.88057,-73.83572,Entire home/apt,105,2,38,0.5,13,365 +262,170510,Brooklyn,Bedford-Stuyvesant,40.682359999999996,-73.94314,Entire home/apt,135,2,248,2.39,2,11 +263,306545,Manhattan,East Village,40.72185,-73.98246,Entire home/apt,390,5,143,1.38,2,316 +264,311286,Brooklyn,Bedford-Stuyvesant,40.68503,-73.95385,Private room,70,3,36,0.41,4,281 +265,312288,Manhattan,Inwood,40.866479999999996,-73.9263,Private room,75,7,0,,2,323 +266,312722,Brooklyn,Williamsburg,40.7069,-73.95467,Private room,60,17,14,0.14,4,362 +267,146944,Manhattan,East Village,40.72807,-73.98594,Entire home/apt,200,3,0,,1,0 +268,313317,Brooklyn,Crown Heights,40.6778,-73.94339000000001,Private room,100,3,279,2.69,1,301 +269,311286,Brooklyn,Bedford-Stuyvesant,40.683170000000004,-73.94700999999999,Private room,70,4,18,0.22,4,189 +270,314256,Brooklyn,Crown Heights,40.6761,-73.9529,Private room,110,6,50,3.55,1,0 +271,314582,Brooklyn,Crown Heights,40.67586,-73.95155,Private room,60,2,227,2.27,2,287 +272,7310,Manhattan,Little Italy,40.71702,-73.99811,Entire home/apt,90,14,1,0.16,1,14 +273,46978,Manhattan,East Village,40.723209999999995,-73.98156999999999,Private room,68,2,203,1.96,2,86 +274,317809,Manhattan,Upper West Side,40.77956,-73.98098,Entire home/apt,115,2,210,2.1,1,261 +275,319092,Brooklyn,Bedford-Stuyvesant,40.682759999999995,-73.95264,Private room,75,5,64,0.67,1,68 +276,320422,Brooklyn,Williamsburg,40.71368,-73.9626,Private room,60,3,0,,1,0 +277,320450,Manhattan,East Village,40.72956,-73.98158000000001,Entire home/apt,129,7,5,0.15,1,231 +278,320761,Brooklyn,Williamsburg,40.71069,-73.95175,Entire home/apt,130,10,49,0.48,1,152 +279,320538,Brooklyn,Williamsburg,40.70863,-73.94641,Entire home/apt,95,4,132,1.27,1,46 +280,321756,Manhattan,Harlem,40.82888,-73.94306999999999,Private room,75,3,20,0.26,1,364 +281,321934,Brooklyn,Park Slope,40.673190000000005,-73.97323,Entire home/apt,175,2,11,0.11,1,246 +282,322884,Brooklyn,Carroll Gardens,40.67846,-73.99443000000001,Entire home/apt,190,3,51,0.57,1,288 +283,322716,Brooklyn,Crown Heights,40.6715,-73.94808,Private room,49,21,15,0.15,5,331 +284,324460,Manhattan,East Village,40.72681,-73.98534000000001,Entire home/apt,212,3,67,1.31,1,51 +285,314941,Manhattan,Lower East Side,40.71904,-73.99391999999999,Private room,95,1,109,1.11,3,364 +286,325389,Brooklyn,Williamsburg,40.71031,-73.9583,Entire home/apt,140,2,9,0.11,1,254 +287,136227,Manhattan,Harlem,40.81322,-73.95306,Entire home/apt,135,6,187,1.87,1,189 +288,327673,Brooklyn,Park Slope,40.67732,-73.98225,Entire home/apt,150,2,214,2.08,2,263 +289,329436,Brooklyn,Gowanus,40.68076,-73.9896,Entire home/apt,190,3,69,0.79,2,258 +290,101597,Manhattan,East Harlem,40.79603,-73.94903000000001,Entire home/apt,124,28,22,0.26,1,103 +291,330347,Brooklyn,Williamsburg,40.71492,-73.96282,Entire home/apt,135,30,56,0.56,1,42 +292,332189,Manhattan,Morningside Heights,40.80393,-73.95838,Private room,122,3,93,0.93,1,246 +293,323517,Manhattan,Upper West Side,40.80082,-73.9652,Private room,109,1,104,1.05,2,364 +294,338454,Manhattan,Harlem,40.82976,-73.94866999999999,Private room,85,30,64,0.68,1,318 +295,240427,Brooklyn,Bedford-Stuyvesant,40.683,-73.91981,Entire home/apt,145,3,127,1.25,2,72 +296,342054,Manhattan,Upper West Side,40.78971,-73.9729,Entire home/apt,195,11,30,0.32,1,249 +297,282655,Brooklyn,Carroll Gardens,40.67817,-73.99495,Entire home/apt,250,2,106,1.34,3,272 +298,343250,Brooklyn,Greenpoint,40.731190000000005,-73.95578,Private room,125,3,6,0.1,1,325 +299,281229,Manhattan,Little Italy,40.719429999999996,-73.99627,Entire home/apt,575,2,191,1.88,1,298 +300,352168,Manhattan,Upper West Side,40.78,-73.98249,Entire home/apt,150,30,48,0.55,1,35 +301,155689,Brooklyn,Bushwick,40.70514,-73.91922,Private room,70,5,47,0.49,1,203 +302,353965,Manhattan,Inwood,40.867129999999996,-73.92811,Private room,90,2,120,1.27,1,132 +303,354330,Manhattan,East Village,40.73198,-73.98881,Private room,65,3,52,0.63,1,5 +304,72062,Manhattan,East Village,40.72542,-73.97986,Entire home/apt,500,2,48,0.48,4,297 +305,361855,Manhattan,Washington Heights,40.83494,-73.93869000000001,Entire home/apt,250,3,32,0.43,2,276 +306,363834,Manhattan,Chinatown,40.716590000000004,-73.98945,Entire home/apt,125,25,43,0.42,1,102 +307,364955,Manhattan,West Village,40.729659999999996,-74.00243,Entire home/apt,200,30,39,0.44,1,251 +308,365153,Brooklyn,Greenpoint,40.72898,-73.95551999999999,Entire home/apt,229,1,50,0.5,1,188 +309,369015,Bronx,Kingsbridge,40.87207,-73.90193000000001,Entire home/apt,90,30,4,0.35,2,346 +310,373085,Manhattan,Upper West Side,40.77728,-73.97818000000001,Entire home/apt,110,13,38,0.39,1,0 +311,340692,Brooklyn,Greenpoint,40.726459999999996,-73.95340999999999,Private room,59,3,29,0.36,1,15 +312,211877,Brooklyn,Williamsburg,40.71015,-73.96101,Entire home/apt,195,4,59,0.6,1,71 +313,389924,Brooklyn,Williamsburg,40.71903,-73.9597,Entire home/apt,169,1,68,0.67,2,215 +314,331328,Manhattan,East Harlem,40.80892,-73.93985,Entire home/apt,113,14,26,0.27,3,253 +315,391325,Manhattan,Harlem,40.80276,-73.9567,Entire home/apt,250,14,31,0.31,1,78 +316,265109,Queens,Astoria,40.77635,-73.93426,Entire home/apt,115,2,198,2.01,1,257 +317,394752,Brooklyn,Greenpoint,40.72488,-73.95018,Private room,55,2,1,0.01,1,0 +318,308875,Brooklyn,Williamsburg,40.71398,-73.95763000000001,Private room,69,2,220,2.17,2,8 +319,401696,Manhattan,Lower East Side,40.718759999999996,-73.98394,Entire home/apt,150,3,286,2.81,1,191 +320,118971,Brooklyn,South Slope,40.66552,-73.99019,Entire home/apt,169,2,398,3.97,3,182 +321,417504,Brooklyn,Greenpoint,40.73749,-73.95291999999999,Private room,179,3,36,0.36,28,79 +322,134355,Manhattan,Hell's Kitchen,40.76248,-73.9913,Private room,150,3,36,0.36,1,49 +323,422561,Brooklyn,Boerum Hill,40.68674,-73.98876,Entire home/apt,135,4,6,0.1,1,0 +324,425506,Brooklyn,Clinton Hill,40.6848,-73.96219,Entire home/apt,350,6,14,0.3,1,156 +325,430188,Brooklyn,Williamsburg,40.70516,-73.95455,Private room,120,14,76,0.76,6,343 +326,434987,Manhattan,East Village,40.723290000000006,-73.98486,Private room,71,2,182,1.81,1,200 +327,417504,Brooklyn,Greenpoint,40.737759999999994,-73.95326999999999,Private room,349,3,8,0.09,28,60 +328,417504,Brooklyn,Greenpoint,40.73738,-73.95482,Private room,349,3,7,0.07,28,60 +329,438133,Brooklyn,Park Slope,40.67542,-73.98142,Entire home/apt,165,30,34,0.51,2,189 +330,417504,Brooklyn,Greenpoint,40.73842,-73.95312,Private room,249,3,2,0.02,28,60 +331,448312,Brooklyn,Brooklyn Heights,40.6926,-73.99831999999999,Private room,100,3,66,0.68,2,0 +332,448312,Brooklyn,Brooklyn Heights,40.69441,-73.99771,Entire home/apt,200,3,80,0.85,2,106 +333,449787,Manhattan,East Village,40.72399,-73.98374,Entire home/apt,169,4,240,2.4,1,276 +334,451545,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94615,Entire home/apt,185,3,46,1.07,1,248 +335,453519,Brooklyn,Bushwick,40.68949,-73.91708,Entire home/apt,65,2,228,2.27,1,194 +336,454756,Brooklyn,Fort Greene,40.688190000000006,-73.97258000000001,Entire home/apt,130,35,5,0.05,1,135 +337,456638,Brooklyn,Williamsburg,40.7205,-73.96015,Entire home/apt,199,30,8,0.11,1,30 +338,410094,Manhattan,East Village,40.724509999999995,-73.98094,Entire home/apt,225,2,33,0.33,1,0 +339,417504,Brooklyn,Greenpoint,40.73813,-73.95394,Private room,179,3,13,0.14,28,81 +340,459054,Brooklyn,Crown Heights,40.675909999999995,-73.94715,Entire home/apt,150,5,5,0.05,1,0 +341,462776,Manhattan,East Village,40.728429999999996,-73.98895,Entire home/apt,139,1,388,3.88,1,142 +342,464506,Manhattan,Two Bridges,40.712709999999994,-73.99776,Private room,95,3,223,2.22,2,60 +343,322716,Brooklyn,Crown Heights,40.66966,-73.94735,Entire home/apt,79,15,11,0.11,5,179 +344,327900,Manhattan,Lower East Side,40.71965,-73.98765999999999,Entire home/apt,150,2,151,1.51,2,52 +345,116599,Brooklyn,Clinton Hill,40.68613,-73.96536,Entire home/apt,650,5,0,,3,365 +346,209460,Brooklyn,Bedford-Stuyvesant,40.680479999999996,-73.94911,Entire home/apt,90,3,218,2.26,4,324 +347,25183,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93963000000001,Entire home/apt,120,2,75,0.76,2,237 +348,35375,Queens,Astoria,40.759609999999995,-73.91117,Private room,80,1,42,1.21,2,365 +349,503800,Brooklyn,Crown Heights,40.67473,-73.94494,Entire home/apt,100,90,0,,1,365 +350,478395,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93185,Entire home/apt,175,2,370,3.74,1,204 +351,473113,Brooklyn,Crown Heights,40.67174,-73.95663,Entire home/apt,120,5,104,1.04,1,272 +352,509341,Brooklyn,Williamsburg,40.71055,-73.95098,Entire home/apt,140,7,13,0.13,1,0 +353,509918,Brooklyn,Bedford-Stuyvesant,40.69465,-73.95458,Entire home/apt,200,5,4,0.07,1,9 +354,116599,Brooklyn,Clinton Hill,40.684129999999996,-73.96542,Private room,165,4,11,0.11,3,365 +355,31374,Manhattan,Kips Bay,40.73877,-73.97707,Entire home/apt,125,4,1,0.01,3,181 +356,520279,Manhattan,Chelsea,40.74893,-73.99544,Entire home/apt,130,30,19,0.19,1,189 +357,522065,Manhattan,East Harlem,40.794059999999995,-73.94102,Shared room,65,7,131,1.31,2,0 +358,522164,Brooklyn,Fort Greene,40.68795,-73.97332,Entire home/apt,123,30,15,0.15,1,189 +359,523218,Manhattan,Washington Heights,40.85295,-73.93361,Private room,67,2,136,1.37,1,296 +360,526653,Queens,Queens Village,40.72413,-73.76133,Private room,50,1,43,0.45,1,88 +361,526805,Brooklyn,Gowanus,40.66918,-73.99186999999999,Entire home/apt,130,7,98,0.99,1,35 +362,530032,Brooklyn,Williamsburg,40.71125,-73.95613,Private room,100,3,31,0.31,1,0 +363,178043,Manhattan,Upper West Side,40.785579999999996,-73.9696,Entire home/apt,212,21,45,0.46,1,35 +364,465278,Brooklyn,Williamsburg,40.71577,-73.96053,Entire home/apt,190,3,124,1.76,1,359 +365,417504,Brooklyn,Greenpoint,40.738609999999994,-73.95485,Private room,599,3,9,0.09,28,60 +366,251176,Manhattan,East Village,40.725770000000004,-73.98745,Entire home/apt,249,5,166,1.68,2,365 +367,547386,Queens,Rockaway Beach,40.58615,-73.81245,Private room,70,27,13,0.13,1,335 +368,322716,Brooklyn,Crown Heights,40.67086,-73.94872,Entire home/apt,100,30,15,0.16,5,282 +369,551055,Manhattan,Harlem,40.827729999999995,-73.95231,Private room,60,3,380,3.83,2,247 +370,552679,Brooklyn,Bedford-Stuyvesant,40.68505,-73.95684,Entire home/apt,135,2,86,0.87,1,102 +371,306739,Brooklyn,Greenpoint,40.72911,-73.95493,Entire home/apt,175,3,248,2.53,3,274 +372,3088389,Manhattan,Upper West Side,40.77944,-73.98567,Entire home/apt,120,5,49,0.56,1,201 +373,568568,Manhattan,Midtown,40.74503,-73.98876,Entire home/apt,169,18,54,0.57,1,98 +374,572527,Brooklyn,Crown Heights,40.67539,-73.96093,Entire home/apt,165,7,3,0.03,1,157 +375,573316,Manhattan,Harlem,40.8054,-73.95189,Private room,90,1,1,0.02,1,0 +376,571952,Manhattan,Upper East Side,40.784909999999996,-73.9508,Entire home/apt,225,2,56,0.57,1,312 +377,181376,Brooklyn,Fort Greene,40.69088,-73.97306999999999,Private room,95,2,163,1.66,2,331 +378,314582,Brooklyn,Crown Heights,40.67555,-73.95057,Private room,55,2,247,2.51,2,275 +379,275582,Manhattan,Hell's Kitchen,40.75835,-73.99193000000001,Private room,85,10,116,1.17,1,174 +380,579495,Brooklyn,South Slope,40.66527,-73.9886,Entire home/apt,199,14,27,0.28,2,223 +381,314941,Manhattan,Lower East Side,40.71895,-73.99434000000001,Entire home/apt,211,1,52,0.6,3,361 +382,582598,Manhattan,Midtown,40.755790000000005,-73.96699,Entire home/apt,145,6,39,0.4,1,0 +383,567187,Manhattan,Harlem,40.82399,-73.95328,Private room,65,14,35,0.35,1,283 +384,127772,Manhattan,Harlem,40.818220000000004,-73.94095,Entire home/apt,99,1,320,3.23,1,220 +385,585166,Queens,Astoria,40.764340000000004,-73.92132,Entire home/apt,110,4,30,0.32,1,363 +386,209460,Brooklyn,Crown Heights,40.67705,-73.94925,Entire home/apt,80,3,225,2.27,4,315 +387,593115,Brooklyn,Brooklyn Heights,40.69263,-73.99438,Entire home/apt,150,30,95,0.96,1,281 +388,2248897,Brooklyn,Bedford-Stuyvesant,40.68448,-73.92747,Entire home/apt,110,4,70,0.75,1,283 +389,585458,Manhattan,Chelsea,40.74412,-74.00208,Private room,290,2,35,0.36,1,20 +390,599354,Manhattan,East Village,40.73067,-73.98702,Private room,87,2,0,,1,0 +391,138069,Brooklyn,Williamsburg,40.70665,-73.94060999999999,Entire home/apt,190,4,50,0.51,1,331 +392,262812,Brooklyn,Williamsburg,40.72063,-73.95952,Entire home/apt,200,2,29,0.31,1,36 +393,611716,Brooklyn,Park Slope,40.67644,-73.98082,Entire home/apt,165,2,23,0.23,2,7 +394,617990,Manhattan,Harlem,40.804809999999996,-73.94794,Entire home/apt,110,2,142,1.44,2,301 +395,622460,Manhattan,East Village,40.72533,-73.99143000000001,Entire home/apt,395,2,70,0.73,1,170 +396,622855,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93038,Private room,99,2,38,0.54,2,307 +397,308652,Brooklyn,Kensington,40.64302,-73.97255,Private room,39,1,82,0.94,2,365 +398,627217,Manhattan,East Village,40.72939,-73.98857,Entire home/apt,189,2,403,4.1,3,201 +399,620288,Manhattan,Upper West Side,40.79918,-73.96607,Private room,85,1,3,0.03,1,0 +400,23276,Brooklyn,Gowanus,40.668620000000004,-73.9926,Entire home/apt,260,30,3,0.03,1,316 +401,256161,Manhattan,Harlem,40.81333,-73.94453,Entire home/apt,122,1,116,1.18,5,271 +402,275563,Brooklyn,Greenpoint,40.72473,-73.95199000000001,Entire home/apt,165,2,175,1.79,1,139 +403,85330,Queens,Forest Hills,40.70925,-73.85262,Entire home/apt,97,3,28,1.21,3,209 +404,651390,Manhattan,West Village,40.73215,-74.00922,Entire home/apt,170,4,24,0.25,1,0 +405,507186,Brooklyn,Williamsburg,40.711090000000006,-73.94332,Entire home/apt,125,2,15,0.15,1,0 +406,653405,Manhattan,Murray Hill,40.7463,-73.97926,Private room,130,4,105,1.07,1,193 +407,652842,Brooklyn,Williamsburg,40.71823,-73.95849,Entire home/apt,225,10,22,0.38,1,52 +408,663764,Brooklyn,East Flatbush,40.650999999999996,-73.94886,Private room,50,2,263,2.69,2,136 +409,663879,Brooklyn,Fort Greene,40.68626,-73.97598,Entire home/apt,170,3,86,0.91,2,286 +410,665013,Manhattan,Chelsea,40.74488,-74.001,Entire home/apt,132,4,10,0.1,1,0 +411,663384,Brooklyn,Park Slope,40.676320000000004,-73.97616,Entire home/apt,250,7,18,0.21,1,18 +412,674970,Brooklyn,Greenpoint,40.722120000000004,-73.94254000000001,Entire home/apt,141,5,8,0.21,1,9 +413,680818,Brooklyn,Crown Heights,40.67456,-73.95151,Entire home/apt,64,20,70,0.73,1,3 +414,622866,Brooklyn,Williamsburg,40.71363,-73.96019,Entire home/apt,249,3,150,1.55,1,277 +415,683975,Brooklyn,Crown Heights,40.6755,-73.95878,Private room,79,2,115,1.18,1,0 +416,686147,Manhattan,East Village,40.72274,-73.97581,Entire home/apt,185,2,69,0.71,1,233 +417,686768,Brooklyn,Boerum Hill,40.6858,-73.9828,Entire home/apt,120,3,232,2.41,1,221 +418,687361,Brooklyn,Park Slope,40.67535,-73.97654,Entire home/apt,495,1,35,0.41,1,355 +419,689661,Manhattan,Nolita,40.72255,-73.99346,Entire home/apt,375,3,18,0.21,1,0 +420,630453,Manhattan,Nolita,40.72094,-73.99706,Entire home/apt,175,3,68,0.69,1,277 +421,277747,Manhattan,East Village,40.72485,-73.97813000000001,Entire home/apt,150,4,22,0.23,1,0 +422,616825,Manhattan,Harlem,40.80473,-73.9532,Entire home/apt,259,8,17,0.17,1,343 +423,299755,Manhattan,East Village,40.72217,-73.98419,Private room,96,1,34,0.58,1,0 +424,404424,Brooklyn,Williamsburg,40.719429999999996,-73.9565,Entire home/apt,145,7,8,0.08,1,0 +425,703156,Manhattan,Chelsea,40.742490000000004,-74.00329,Entire home/apt,200,4,0,,1,0 +426,706418,Manhattan,Upper West Side,40.792640000000006,-73.97294000000001,Entire home/apt,95,5,2,0.08,1,0 +427,709434,Brooklyn,Windsor Terrace,40.65749,-73.97675,Entire home/apt,250,4,52,0.72,1,188 +428,709334,Manhattan,Harlem,40.80474,-73.94688000000001,Entire home/apt,295,2,74,0.76,2,264 +429,715807,Manhattan,Greenwich Village,40.72831,-74.00177,Entire home/apt,175,3,18,0.19,1,0 +430,716064,Brooklyn,Williamsburg,40.71541,-73.94144,Entire home/apt,451,2,72,0.86,1,331 +431,718349,Manhattan,Upper West Side,40.79765,-73.96245,Entire home/apt,165,2,191,2.18,1,236 +432,720320,Manhattan,Upper East Side,40.78508,-73.95331999999999,Entire home/apt,250,4,0,,1,0 +433,716306,Bronx,Woodlawn,40.89747,-73.8639,Entire home/apt,77,1,197,2.49,1,309 +434,726333,Manhattan,Lower East Side,40.720079999999996,-73.98404000000001,Entire home/apt,250,4,19,0.2,1,0 +435,722320,Queens,Astoria,40.75725,-73.91098000000001,Entire home/apt,129,1,414,4.34,1,245 +436,216191,Brooklyn,Williamsburg,40.7102,-73.94495,Private room,98,2,8,0.09,4,0 +437,731855,Brooklyn,Park Slope,40.673590000000004,-73.97904,Entire home/apt,150,2,0,,1,8 +438,731904,Manhattan,East Village,40.72674,-73.9782,Private room,95,7,25,0.3,1,359 +439,256161,Manhattan,Harlem,40.81156,-73.94570999999999,Private room,55,3,119,1.22,5,333 +440,732535,Manhattan,Harlem,40.804970000000004,-73.95016,Entire home/apt,300,2,203,2.14,3,258 +441,733894,Queens,Sunnyside,40.7385,-73.91806,Private room,42,40,53,0.55,3,236 +442,737585,Brooklyn,Greenpoint,40.72937,-73.95671,Entire home/apt,125,2,104,1.09,1,22 +443,739499,Manhattan,East Village,40.72587,-73.98438,Private room,175,3,175,1.8,1,236 +444,745069,Manhattan,Harlem,40.824259999999995,-73.9463,Private room,75,3,38,0.42,3,365 +445,656841,Brooklyn,Williamsburg,40.71624,-73.96271999999999,Entire home/apt,255,45,39,0.5,1,89 +446,757166,Brooklyn,Bedford-Stuyvesant,40.68101,-73.94081,Entire home/apt,72,31,88,0.91,1,164 +447,758441,Brooklyn,Bedford-Stuyvesant,40.686690000000006,-73.91989000000001,Private room,165,1,27,0.28,4,311 +448,573065,Brooklyn,Williamsburg,40.715340000000005,-73.95914,Entire home/apt,165,5,117,1.28,1,23 +449,759583,Brooklyn,Clinton Hill,40.68288,-73.96024,Private room,75,3,43,0.44,2,365 +450,762563,Brooklyn,Greenpoint,40.72489,-73.95494000000001,Entire home/apt,130,5,4,0.05,1,0 +451,465589,Brooklyn,Williamsburg,40.70867,-73.94284,Entire home/apt,139,2,385,4.0,1,222 +452,54275,Brooklyn,Bedford-Stuyvesant,40.679629999999996,-73.93908,Private room,88,1,64,0.68,3,238 +453,54275,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93908,Private room,80,1,39,0.41,3,218 +454,759883,Manhattan,Chelsea,40.74346,-73.99882,Private room,150,2,37,1.79,1,0 +455,769247,Manhattan,Upper West Side,40.77724,-73.98109000000001,Entire home/apt,200,3,10,0.12,1,0 +456,770831,Manhattan,East Village,40.72972,-73.97995,Entire home/apt,200,2,103,1.08,1,235 +457,733894,Queens,Sunnyside,40.74102,-73.91681,Private room,42,40,41,0.43,3,246 +458,772300,Brooklyn,Williamsburg,40.71309,-73.94128,Private room,90,6,3,0.03,1,0 +459,1856604,Manhattan,Harlem,40.83096,-73.94633,Entire home/apt,295,3,227,2.33,1,247 +460,776490,Brooklyn,Williamsburg,40.713229999999996,-73.95745,Entire home/apt,450,5,37,0.79,1,15 +461,776645,Brooklyn,Crown Heights,40.67212,-73.9506,Entire home/apt,130,2,29,0.35,1,119 +462,242506,Brooklyn,Williamsburg,40.710229999999996,-73.96665,Private room,89,3,205,2.31,3,0 +463,781647,Manhattan,Harlem,40.80523,-73.95139,Entire home/apt,198,5,42,0.44,2,234 +464,627217,Manhattan,East Village,40.72636,-73.98917,Entire home/apt,99,2,280,2.92,3,257 +465,32169,Brooklyn,Greenpoint,40.72185,-73.93956,Private room,46,4,86,0.89,3,350 +466,69439,Manhattan,SoHo,40.72351,-73.99683,Private room,140,2,54,0.56,1,221 +467,787273,Brooklyn,Carroll Gardens,40.6809,-73.99233000000001,Entire home/apt,500,7,7,0.07,1,0 +468,867225,Manhattan,Morningside Heights,40.80525,-73.95916,Private room,75,5,57,0.59,2,201 +469,733894,Queens,Sunnyside,40.74,-73.91901,Private room,33,44,31,0.32,3,161 +470,791287,Manhattan,Upper West Side,40.800059999999995,-73.96049000000001,Entire home/apt,250,31,188,1.94,1,259 +471,792159,Brooklyn,Bushwick,40.70283,-73.92130999999999,Private room,60,3,480,6.7,1,0 +472,793620,Manhattan,Washington Heights,40.84468,-73.94303000000001,Private room,75,2,34,0.35,1,222 +473,795640,Brooklyn,Carroll Gardens,40.682520000000004,-73.99619,Entire home/apt,350,5,6,0.06,1,0 +474,306605,Manhattan,Chelsea,40.74342,-73.99483000000001,Entire home/apt,205,9,3,0.04,2,76 +475,795889,Brooklyn,Park Slope,40.67853,-73.98089,Entire home/apt,219,5,2,0.03,1,0 +476,22486,Brooklyn,Park Slope,40.6788,-73.97643000000001,Private room,60,1,20,0.21,6,258 +477,789257,Manhattan,Upper West Side,40.778859999999995,-73.98042,Entire home/apt,185,2,129,1.33,1,14 +478,800982,Manhattan,East Village,40.72578,-73.97879,Entire home/apt,190,3,147,1.6,1,27 +479,720558,Brooklyn,South Slope,40.66085,-73.98536999999999,Entire home/apt,105,28,101,1.06,1,167 +480,803086,Manhattan,East Harlem,40.80113,-73.94503,Entire home/apt,250,2,11,0.12,2,68 +481,747698,Manhattan,Upper West Side,40.78569,-73.97581,Entire home/apt,175,65,11,0.12,1,358 +482,805344,Manhattan,Harlem,40.82411,-73.94934,Private room,65,2,41,0.43,2,59 +483,806112,Brooklyn,Bedford-Stuyvesant,40.681309999999996,-73.95331999999999,Entire home/apt,75,2,87,1.09,1,0 +484,806214,Bronx,University Heights,40.858109999999996,-73.90675,Private room,37,4,117,1.21,1,232 +485,806774,Brooklyn,Williamsburg,40.70667,-73.96524000000001,Entire home/apt,85,2,86,0.89,2,15 +486,807642,Brooklyn,Gravesend,40.60452,-73.97103,Entire home/apt,106,7,0,,2,0 +487,812814,Manhattan,East Harlem,40.7932,-73.94006999999999,Entire home/apt,79,2,15,0.16,1,0 +488,67778,Brooklyn,Fort Greene,40.68768,-73.97610999999999,Private room,85,2,35,0.55,2,161 +489,803086,Manhattan,Harlem,40.802240000000005,-73.94558,Private room,170,2,17,0.18,2,88 +490,302772,Manhattan,Lower East Side,40.714729999999996,-73.98841999999999,Private room,115,3,3,0.04,2,337 +491,781647,Manhattan,Harlem,40.80518,-73.95359,Private room,89,5,43,0.47,2,247 +492,826192,Manhattan,Harlem,40.80827,-73.95329,Shared room,49,3,168,4.6,1,248 +493,826459,Brooklyn,Greenpoint,40.729009999999995,-73.95812,Private room,91,3,241,2.49,1,287 +494,829652,Manhattan,Gramercy,40.734759999999994,-73.98451999999999,Entire home/apt,400,2,105,1.13,1,304 +495,833926,Brooklyn,Bushwick,40.69055,-73.92357,Entire home/apt,150,2,11,0.46,1,0 +496,836168,Manhattan,Upper West Side,40.7735,-73.98697,Entire home/apt,2000,30,30,0.33,11,0 +497,842125,Brooklyn,Crown Heights,40.67505,-73.95969000000001,Entire home/apt,97,3,31,0.32,1,193 +498,844862,Manhattan,East Village,40.72974,-73.98201,Private room,100,4,49,0.51,2,43 +499,846309,Brooklyn,Williamsburg,40.70925,-73.95425,Entire home/apt,179,4,23,0.24,1,25 +500,848748,Brooklyn,Greenpoint,40.72315,-73.95226,Entire home/apt,500,2,20,0.21,2,127 +501,848960,Manhattan,Chelsea,40.73939,-73.99611999999999,Entire home/apt,429,10,18,0.9,1,0 +502,849492,Manhattan,Kips Bay,40.74112,-73.97686,Entire home/apt,189,6,90,0.95,1,303 +503,21475,Manhattan,Lower East Side,40.72019,-73.98217,Private room,120,2,99,1.04,1,345 +504,314941,Manhattan,Nolita,40.72133,-73.99665999999999,Entire home/apt,300,1,6,0.06,3,115 +505,864735,Queens,Astoria,40.75744,-73.92163000000001,Entire home/apt,107,30,21,0.22,8,200 +506,864735,Queens,Astoria,40.75695,-73.9202,Entire home/apt,95,30,24,0.26,8,271 +507,872121,Manhattan,Harlem,40.8296,-73.94651,Entire home/apt,199,2,111,1.17,1,12 +508,39260,Manhattan,East Harlem,40.79056,-73.9468,Entire home/apt,120,2,86,0.91,1,268 +509,872805,Manhattan,West Village,40.736309999999996,-73.99977,Entire home/apt,199,15,66,0.69,2,89 +510,873273,Bronx,Allerton,40.86466,-73.85709,Entire home/apt,125,2,271,2.84,2,347 +511,876054,Brooklyn,Williamsburg,40.71312,-73.96199,Private room,70,2,227,2.4,1,37 +512,889106,Brooklyn,Williamsburg,40.71297,-73.94336,Private room,75,4,80,1.55,1,0 +513,871727,Manhattan,West Village,40.737120000000004,-74.00166,Private room,100,30,5,0.07,1,359 +514,279078,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95097,Entire home/apt,99,2,187,1.97,2,287 +515,904833,Manhattan,Chelsea,40.738620000000004,-73.99758,Entire home/apt,250,1,2,0.02,1,0 +516,906200,Brooklyn,Williamsburg,40.7158,-73.95803000000001,Entire home/apt,350,6,1,0.02,1,233 +517,909146,Brooklyn,Prospect Heights,40.68262,-73.97299,Entire home/apt,170,3,67,0.7,1,129 +518,909234,Manhattan,East Village,40.73217,-73.98801,Entire home/apt,165,1,63,0.68,1,0 +519,179020,Manhattan,Hell's Kitchen,40.76311,-73.99388,Private room,99,1,89,1.0,1,353 +520,912541,Manhattan,Chelsea,40.74695,-74.00454,Private room,255,4,1,0.02,1,365 +521,489400,Brooklyn,East New York,40.67497,-73.87305,Entire home/apt,169,3,177,1.86,1,297 +522,915640,Brooklyn,Crown Heights,40.66788,-73.94813,Entire home/apt,99,4,90,0.94,1,56 +523,918866,Manhattan,Upper East Side,40.76684,-73.95944,Entire home/apt,169,7,39,0.41,1,44 +524,920542,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95445,Entire home/apt,160,3,42,0.44,1,355 +525,922922,Brooklyn,Prospect Heights,40.67946,-73.96500999999999,Entire home/apt,215,3,33,0.35,1,156 +526,874471,Brooklyn,Park Slope,40.66944,-73.98083000000001,Entire home/apt,130,3,179,2.02,1,273 +527,923915,Manhattan,East Village,40.72566,-73.97748,Private room,110,3,81,0.85,2,274 +528,936114,Manhattan,Hell's Kitchen,40.7709,-73.99181,Private room,150,28,43,0.45,2,258 +529,302936,Brooklyn,Williamsburg,40.719429999999996,-73.95958,Private room,65,30,52,0.54,1,276 +530,938056,Queens,Sunnyside,40.742490000000004,-73.92466,Private room,75,2,160,1.68,1,65 +531,48599,Manhattan,Chelsea,40.74033,-74.00024,Entire home/apt,149,6,23,0.27,2,0 +532,936830,Manhattan,Upper West Side,40.7969,-73.96128,Private room,89,6,35,0.37,1,180 +533,940724,Manhattan,Washington Heights,40.83403,-73.94553,Private room,50,1,225,2.35,1,343 +534,949221,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95640999999999,Private room,43,1,401,6.62,2,43 +535,949221,Brooklyn,Prospect-Lefferts Gardens,40.65589,-73.95539000000001,Private room,42,1,72,0.84,2,96 +536,304493,Brooklyn,Williamsburg,40.70275,-73.94501,Private room,85,1,46,0.97,1,59 +537,953279,Brooklyn,Bedford-Stuyvesant,40.68897,-73.93569000000001,Entire home/apt,139,3,83,1.19,1,255 +538,611716,Brooklyn,Park Slope,40.67617,-73.98136,Private room,105,1,211,2.21,2,252 +539,953565,Brooklyn,Park Slope,40.67595,-73.98053,Entire home/apt,265,5,15,0.16,1,0 +540,960836,Manhattan,Hell's Kitchen,40.76415,-73.99067,Entire home/apt,149,1,122,1.29,1,20 +541,964482,Manhattan,Harlem,40.83127,-73.94718,Private room,68,2,295,3.9,2,188 +542,289135,Brooklyn,Bedford-Stuyvesant,40.68497,-73.95591999999999,Entire home/apt,99,3,207,2.18,1,304 +543,971075,Manhattan,Harlem,40.82922,-73.94174,Private room,75,3,50,0.65,2,38 +544,973438,Brooklyn,Williamsburg,40.71137,-73.94362,Private room,100,2,273,2.85,1,254 +545,933378,Manhattan,Upper East Side,40.76739,-73.9557,Shared room,90,1,0,,1,0 +546,568325,Manhattan,East Village,40.73089,-73.98195,Entire home/apt,160,30,25,0.26,1,46 +547,988350,Brooklyn,Park Slope,40.6755,-73.97859,Entire home/apt,190,4,105,1.62,1,328 +548,918087,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94934,Private room,67,4,72,0.76,3,0 +549,1000477,Manhattan,Upper East Side,40.7694,-73.9572,Entire home/apt,190,1,8,0.08,1,0 +550,51038,Brooklyn,Clinton Hill,40.68634,-73.96161,Entire home/apt,248,2,58,0.61,6,199 +551,903686,Brooklyn,Williamsburg,40.7093,-73.9497,Private room,100,6,8,0.09,1,249 +552,464506,Manhattan,Chinatown,40.713,-73.99752,Private room,95,3,172,1.84,2,64 +553,1007558,Manhattan,Theater District,40.75895,-73.9883,Private room,150,1,330,7.14,1,111 +554,1010242,Brooklyn,Bedford-Stuyvesant,40.68186,-73.94113,Entire home/apt,145,3,123,1.29,1,287 +555,1011426,Brooklyn,Bushwick,40.683640000000004,-73.91076,Private room,41,2,55,0.59,1,286 +556,1012691,Brooklyn,Williamsburg,40.71893,-73.9428,Entire home/apt,120,4,87,0.99,1,263 +557,12221,Bronx,Concourse Village,40.82802,-73.92039,Private room,50,3,258,2.7,2,276 +558,1014639,Brooklyn,Fort Greene,40.68765,-73.97073,Entire home/apt,157,2,4,0.18,1,0 +559,1017473,Brooklyn,Williamsburg,40.71413,-73.96596,Entire home/apt,195,14,31,0.33,1,263 +560,1018472,Brooklyn,Sheepshead Bay,40.58422,-73.94079,Entire home/apt,70,4,128,1.34,2,90 +561,1024355,Brooklyn,Williamsburg,40.71973,-73.95581999999999,Entire home/apt,185,3,14,0.15,1,0 +562,1029021,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93323000000001,Entire home/apt,145,3,30,0.32,3,11 +563,1031148,Queens,Sunnyside,40.73826,-73.92458,Private room,50,28,258,2.9,1,287 +564,306739,Brooklyn,Greenpoint,40.73049,-73.96115,Entire home/apt,185,3,228,2.39,3,1 +565,272730,Manhattan,East Village,40.72956,-73.97903000000001,Entire home/apt,250,1,60,0.65,1,0 +566,666271,Manhattan,West Village,40.73854,-74.00820999999999,Private room,80,90,9,0.2,1,338 +567,1094178,Manhattan,Theater District,40.75877,-73.98863,Entire home/apt,230,2,179,1.88,1,44 +568,1096084,Brooklyn,Gowanus,40.67688,-73.9859,Entire home/apt,100,7,9,0.1,1,0 +569,293130,Brooklyn,Bushwick,40.700509999999994,-73.92204,Private room,40,1,1,0.37,1,5 +570,800223,Manhattan,Lower East Side,40.71712,-73.98898,Private room,200,30,25,0.49,1,0 +571,1109658,Staten Island,Emerson Hill,40.60742,-74.14388000000001,Private room,80,2,2,0.05,1,158 +572,1112560,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95741,Private room,79,3,152,1.6,3,192 +573,864735,Queens,Long Island City,40.75627,-73.9211,Entire home/apt,95,30,24,0.25,8,358 +574,1114587,Manhattan,Upper West Side,40.798159999999996,-73.9619,Entire home/apt,300,2,45,0.47,3,31 +575,1121193,Brooklyn,Fort Hamilton,40.61927,-74.0307,Entire home/apt,100,30,7,0.08,1,241 +576,1129218,Manhattan,Harlem,40.8078,-73.95208000000001,Private room,80,7,19,0.35,1,285 +577,447754,Brooklyn,Bensonhurst,40.61922,-73.99399,Entire home/apt,110,1,24,0.26,1,183 +578,759583,Brooklyn,Clinton Hill,40.68275,-73.96148000000001,Entire home/apt,172,4,8,0.09,2,189 +579,1138692,Manhattan,Lower East Side,40.71813,-73.98416,Entire home/apt,199,1,29,0.31,2,162 +580,1138692,Manhattan,Lower East Side,40.718920000000004,-73.98401,Entire home/apt,199,1,14,0.15,2,158 +581,1139574,Manhattan,Harlem,40.816,-73.95545,Private room,100,1,33,0.38,1,84 +582,921500,Manhattan,Harlem,40.82748,-73.95153,Private room,55,4,99,1.04,1,260 +583,918087,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95088,Private room,75,3,59,0.62,3,0 +584,1144415,Manhattan,East Village,40.72229,-73.97901,Entire home/apt,146,3,142,1.5,1,166 +585,846050,Manhattan,NoHo,40.72956,-73.99287,Private room,250,2,0,,1,0 +586,1146744,Brooklyn,Greenpoint,40.72595,-73.95298000000001,Entire home/apt,116,29,22,0.23,1,335 +587,4887492,Manhattan,Tribeca,40.711929999999995,-74.00816999999999,Private room,150,3,82,0.87,2,90 +588,22486,Brooklyn,Park Slope,40.68012,-73.97847,Private room,120,2,23,0.24,6,342 +589,1153993,Manhattan,Chelsea,40.742329999999995,-73.99865,Entire home/apt,199,4,32,0.34,1,28 +590,1164642,Brooklyn,Prospect Heights,40.674240000000005,-73.96665,Entire home/apt,150,5,24,0.25,1,363 +591,1165231,Manhattan,Harlem,40.80486,-73.95298000000001,Private room,69,1,59,0.63,2,86 +592,1165231,Manhattan,Harlem,40.80307,-73.95048,Private room,300,55,6,0.08,2,83 +593,991380,Brooklyn,Boerum Hill,40.68653,-73.98562,Entire home/apt,230,4,18,0.21,1,0 +594,1173599,Manhattan,Midtown,40.742670000000004,-73.98569,Entire home/apt,125,4,3,0.03,1,0 +595,1112560,Brooklyn,Bedford-Stuyvesant,40.687490000000004,-73.95494000000001,Private room,79,3,115,1.21,3,264 +596,663879,Brooklyn,Fort Greene,40.68645,-73.97538,Private room,130,3,154,1.63,2,305 +597,1177497,Brooklyn,Clinton Hill,40.68999,-73.96710999999999,Private room,239,1,164,1.73,11,356 +598,1177947,Staten Island,Shore Acres,40.61077,-74.06824,Entire home/apt,75,6,76,0.8,1,278 +599,815977,Brooklyn,Williamsburg,40.711259999999996,-73.94575999999999,Entire home/apt,220,3,116,1.23,2,135 +600,209460,Brooklyn,Bedford-Stuyvesant,40.67855,-73.94949,Entire home/apt,80,3,234,2.47,4,308 +601,1187935,Manhattan,East Village,40.72416,-73.9853,Entire home/apt,288,2,120,1.27,1,229 +602,1191142,Brooklyn,Bedford-Stuyvesant,40.685159999999996,-73.92520999999999,Entire home/apt,135,4,82,0.87,1,273 +603,1192424,Manhattan,West Village,40.73507,-74.00048000000001,Entire home/apt,225,3,13,0.15,1,83 +604,1192610,Manhattan,Chinatown,40.71611,-73.99828000000001,Private room,110,30,59,0.64,1,281 +605,1194377,Brooklyn,Bedford-Stuyvesant,40.67964,-73.93946,Entire home/apt,100,7,63,1.87,1,321 +606,1190088,Manhattan,Hell's Kitchen,40.76189,-73.99,Private room,130,2,52,0.55,1,303 +607,1097545,Manhattan,East Village,40.72645,-73.98035,Private room,89,1,278,2.95,3,192 +608,507304,Brooklyn,Sunset Park,40.662929999999996,-73.99833000000001,Entire home/apt,200,5,1,0.01,1,0 +609,1203500,Brooklyn,Bedford-Stuyvesant,40.690459999999995,-73.95167,Entire home/apt,80,2,35,0.4,1,36 +610,12221,Bronx,Concourse,40.830009999999994,-73.92158,Private room,50,5,235,2.49,2,271 +611,292204,Manhattan,East Harlem,40.792390000000005,-73.94535,Entire home/apt,135,28,115,1.21,2,341 +612,1207399,Manhattan,East Village,40.727090000000004,-73.98274,Private room,90,1,109,1.15,1,333 +613,1184442,Manhattan,SoHo,40.72599,-74.00168000000001,Private room,270,5,1,0.01,1,210 +614,1217241,Brooklyn,Bedford-Stuyvesant,40.68309,-73.94219,Entire home/apt,110,3,305,3.24,1,231 +615,763420,Manhattan,East Harlem,40.79442,-73.93433,Entire home/apt,145,1,102,1.52,1,308 +616,1220414,Manhattan,Hell's Kitchen,40.76166,-73.99675,Entire home/apt,179,30,83,0.88,1,292 +617,1012895,Queens,Ridgewood,40.70163,-73.90867,Private room,55,1,19,0.25,1,311 +618,1223568,Manhattan,Midtown,40.75575,-73.96842,Private room,110,2,61,0.65,1,264 +619,902054,Manhattan,Harlem,40.80903,-73.94197,Entire home/apt,325,5,89,0.94,1,153 +620,1229984,Queens,Long Island City,40.74581,-73.95295,Private room,75,30,65,0.74,3,219 +621,1234405,Brooklyn,South Slope,40.66414,-73.98574,Entire home/apt,300,1,40,0.44,1,0 +622,83257,Manhattan,West Village,40.74,-74.00381,Private room,130,30,80,0.86,2,332 +623,1236070,Manhattan,Midtown,40.753479999999996,-73.97065,Entire home/apt,190,30,136,1.45,1,120 +624,1236817,Manhattan,Lower East Side,40.720659999999995,-73.98506,Entire home/apt,200,3,100,1.06,1,191 +625,1240820,Brooklyn,Williamsburg,40.717459999999996,-73.95496999999999,Entire home/apt,180,2,125,1.36,3,248 +626,4166168,Brooklyn,DUMBO,40.70257,-73.9847,Entire home/apt,350,5,40,0.5,1,67 +627,1151987,Manhattan,East Village,40.722640000000006,-73.9837,Entire home/apt,160,4,0,,1,0 +628,1146958,Manhattan,Kips Bay,40.73833,-73.98186,Entire home/apt,195,30,139,1.59,4,325 +629,1243192,Manhattan,Greenwich Village,40.73268,-73.99255,Entire home/apt,241,30,0,,1,249 +630,65064,Manhattan,Chinatown,40.718920000000004,-73.99628,Entire home/apt,300,7,2,0.03,1,0 +631,1256874,Queens,Ditmars Steinway,40.776790000000005,-73.91686999999999,Entire home/apt,75,28,49,0.53,1,313 +632,1257309,Manhattan,Lower East Side,40.71693,-73.98948,Entire home/apt,100,5,8,0.11,1,0 +633,1257760,Manhattan,Gramercy,40.73685,-73.98359,Entire home/apt,399,1,0,,1,12 +634,136962,Brooklyn,Fort Greene,40.68501,-73.97019,Private room,85,5,124,1.32,1,69 +635,1258363,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.96003,Entire home/apt,80,21,5,0.12,1,0 +636,1263176,Brooklyn,Prospect Heights,40.67722,-73.96542,Private room,55,1,147,1.57,1,293 +637,1177497,Brooklyn,Clinton Hill,40.68975,-73.96703000000001,Private room,438,1,43,0.46,11,363 +638,1264655,Brooklyn,Bedford-Stuyvesant,40.692209999999996,-73.95866,Entire home/apt,110,6,8,0.33,1,4 +639,1269455,Manhattan,West Village,40.729690000000005,-74.00635,Entire home/apt,200,2,37,0.39,1,257 +640,1177497,Brooklyn,Clinton Hill,40.6893,-73.96602,Private room,279,1,120,1.28,11,362 +641,1273825,Brooklyn,Williamsburg,40.70832,-73.94157,Entire home/apt,137,1,24,0.29,1,0 +642,1276497,Brooklyn,Bedford-Stuyvesant,40.68016,-73.94878,Entire home/apt,280,3,5,0.05,1,365 +643,288711,Brooklyn,Williamsburg,40.70875,-73.95508000000001,Entire home/apt,199,30,242,2.59,1,102 +644,714200,Manhattan,Inwood,40.85888,-73.92886,Private room,71,4,229,2.45,1,26 +645,1260921,Bronx,Kingsbridge,40.8679,-73.90023000000001,Private room,42,2,108,1.36,2,302 +646,1288460,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95383000000001,Entire home/apt,180,2,181,1.92,1,280 +647,825022,Manhattan,Chelsea,40.75127,-73.99637,Entire home/apt,226,5,34,0.39,1,302 +648,283604,Brooklyn,Crown Heights,40.67607,-73.94421,Private room,85,3,5,0.05,1,281 +649,1292250,Manhattan,Gramercy,40.73834,-73.9823,Entire home/apt,135,1,5,0.06,1,0 +650,3647,Queens,Elmhurst,40.7347,-73.88065999999999,Entire home/apt,79,4,60,0.64,2,297 +651,936630,Manhattan,Lower East Side,40.718759999999996,-73.98850999999999,Entire home/apt,154,1,238,2.59,1,246 +652,417504,Brooklyn,Greenpoint,40.73787,-73.95385,Entire home/apt,199,3,34,0.37,28,60 +653,605463,Manhattan,West Village,40.73066,-74.00287,Entire home/apt,700,3,131,1.4,4,296 +654,1306587,Manhattan,West Village,40.73291,-74.00059,Entire home/apt,246,4,6,0.16,1,0 +655,1307773,Manhattan,Washington Heights,40.85099,-73.92822,Private room,125,60,4,0.06,1,364 +656,758441,Brooklyn,Bedford-Stuyvesant,40.68707,-73.91918000000001,Private room,100,1,7,0.08,4,281 +657,1311398,Brooklyn,Williamsburg,40.7184,-73.96019,Entire home/apt,295,5,125,3.04,1,0 +658,945499,Brooklyn,Crown Heights,40.67495,-73.95563,Private room,150,3,0,,1,0 +659,1311870,Manhattan,Chinatown,40.71582,-73.99902,Entire home/apt,119,1,49,0.58,1,0 +660,1313306,Manhattan,Harlem,40.81068,-73.94288,Private room,125,1,11,0.12,2,365 +661,1313306,Manhattan,Harlem,40.81122,-73.94279,Entire home/apt,400,5,0,,2,365 +662,1314834,Manhattan,Greenwich Village,40.73129,-73.99944,Entire home/apt,850,3,107,1.15,1,249 +663,1278802,Brooklyn,Williamsburg,40.71628,-73.95737,Private room,129,2,241,2.6,1,303 +664,1317343,Manhattan,Upper West Side,40.785579999999996,-73.9726,Private room,140,1,176,1.89,1,300 +665,297769,Manhattan,Chinatown,40.7146,-73.991,Private room,115,4,151,1.63,2,323 +666,1325961,Manhattan,East Harlem,40.79493,-73.94462,Entire home/apt,200,3,49,0.53,2,0 +667,552343,Brooklyn,Sunset Park,40.6623,-73.99049000000001,Entire home/apt,96,120,13,0.14,1,204 +668,417504,Brooklyn,Greenpoint,40.73693,-73.95284000000001,Entire home/apt,199,3,33,0.47,28,60 +669,417504,Brooklyn,Greenpoint,40.73641,-73.9533,Entire home/apt,199,3,24,0.32,28,84 +670,417504,Brooklyn,Greenpoint,40.73794,-73.95254,Entire home/apt,199,3,59,0.66,28,60 +671,1331493,Brooklyn,Brighton Beach,40.58147,-73.96726,Private room,69,1,2,0.04,1,303 +672,1331850,Manhattan,Upper West Side,40.797709999999995,-73.96323000000001,Entire home/apt,185,2,16,0.23,1,261 +673,1332108,Manhattan,Harlem,40.81512,-73.94691999999999,Private room,81,2,72,0.77,1,0 +674,417504,Brooklyn,Greenpoint,40.7373,-73.95323,Entire home/apt,199,3,24,0.26,28,60 +675,417504,Brooklyn,Greenpoint,40.73708,-73.95271,Entire home/apt,199,3,23,0.26,28,60 +676,417504,Brooklyn,Greenpoint,40.73652,-73.95236,Entire home/apt,199,3,43,0.47,28,60 +677,417504,Brooklyn,Greenpoint,40.73693,-73.95316,Entire home/apt,199,3,30,0.32,28,56 +678,417504,Brooklyn,Greenpoint,40.737840000000006,-73.95324000000001,Entire home/apt,199,3,39,0.44,28,84 +679,417504,Brooklyn,Greenpoint,40.736740000000005,-73.95246999999999,Private room,349,3,8,0.09,28,58 +680,417504,Brooklyn,Greenpoint,40.737829999999995,-73.95259,Private room,249,3,3,0.03,28,60 +681,417504,Brooklyn,Greenpoint,40.737140000000004,-73.95296,Private room,299,3,6,0.1,28,60 +682,417504,Brooklyn,Greenpoint,40.73731,-73.9545,Private room,179,3,4,0.05,28,81 +683,1267021,Queens,Jackson Heights,40.74965,-73.89344,Private room,54,5,56,0.66,3,365 +684,417504,Brooklyn,Greenpoint,40.73793,-73.95316,Private room,599,3,7,0.08,28,60 +685,1336542,Brooklyn,Clinton Hill,40.68197,-73.96549,Entire home/apt,110,1,2,0.03,1,0 +686,1340007,Brooklyn,Bushwick,40.702709999999996,-73.91566,Entire home/apt,220,2,178,2.69,1,297 +687,1302029,Brooklyn,Williamsburg,40.7116,-73.9529,Private room,89,30,30,0.8,1,91 +688,1343630,Brooklyn,Bedford-Stuyvesant,40.692409999999995,-73.94885,Entire home/apt,170,2,190,2.04,1,315 +689,506779,Manhattan,Nolita,40.720040000000004,-73.99424,Entire home/apt,495,7,25,0.27,2,338 +690,1346437,Queens,Sunnyside,40.74511,-73.92398,Entire home/apt,80,10,81,0.98,2,40 +691,1347034,Manhattan,Chelsea,40.74599,-74.00253000000001,Entire home/apt,760,2,7,0.08,1,361 +692,1348494,Brooklyn,Cobble Hill,40.68946,-73.99385,Private room,98,4,216,2.31,1,288 +693,315401,Brooklyn,Bedford-Stuyvesant,40.68226,-73.95473,Entire home/apt,125,30,31,0.33,1,218 +694,1123923,Brooklyn,Cypress Hills,40.67855,-73.8896,Private room,48,90,53,0.57,2,1 +695,1356046,Brooklyn,Williamsburg,40.714079999999996,-73.9489,Private room,64,3,247,2.65,2,117 +696,1358312,Brooklyn,Clinton Hill,40.68618,-73.96144,Entire home/apt,154,3,233,2.5,1,0 +697,1354758,Brooklyn,Park Slope,40.673790000000004,-73.98454,Entire home/apt,139,3,135,1.45,1,204 +698,1233267,Queens,St. Albans,40.70554,-73.76637,Private room,75,4,20,0.23,1,0 +699,436599,Manhattan,West Village,40.74031,-74.00532,Entire home/apt,325,4,46,0.5,1,20 +700,1359611,Manhattan,Chelsea,40.746179999999995,-74.00392,Entire home/apt,195,365,10,0.12,1,0 +701,1360043,Manhattan,Harlem,40.81872,-73.94566999999999,Private room,58,1,143,2.83,1,0 +702,1360198,Staten Island,Arrochar,40.59251,-74.06479,Entire home/apt,250,2,21,0.26,4,333 +703,1360198,Staten Island,Arrochar,40.59101,-74.06685,Private room,50,7,0,,4,189 +704,1360198,Staten Island,Arrochar,40.592620000000004,-74.06659,Entire home/apt,125,2,8,0.09,4,353 +705,52335,Brooklyn,Fort Greene,40.69142,-73.97203,Entire home/apt,70,7,4,0.05,2,0 +706,480943,Manhattan,Upper East Side,40.76928,-73.95021,Entire home/apt,189,2,314,3.45,2,206 +707,696482,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95289,Entire home/apt,130,3,18,0.25,1,1 +708,1370358,Manhattan,West Village,40.72953,-74.00461999999999,Entire home/apt,145,7,11,0.12,1,0 +709,568103,Manhattan,Financial District,40.70523,-74.01345,Private room,101,7,51,0.55,1,307 +710,1372786,Manhattan,Chelsea,40.74025,-74.00161,Private room,95,5,20,0.33,1,0 +711,1359519,Manhattan,West Village,40.733779999999996,-74.00429,Entire home/apt,375,7,8,0.12,1,0 +712,1376385,Manhattan,Lower East Side,40.72087,-73.99022,Entire home/apt,153,31,59,0.63,1,27 +713,1376778,Brooklyn,East Flatbush,40.64468,-73.94219,Entire home/apt,92,4,54,0.62,1,27 +714,535128,Manhattan,Lower East Side,40.7193,-73.98966,Private room,80,5,10,0.46,1,348 +715,605463,Manhattan,West Village,40.73312,-74.0042,Entire home/apt,300,4,153,1.66,4,246 +716,1380060,Brooklyn,Fort Greene,40.69778,-73.97676,Entire home/apt,145,3,110,1.2,1,15 +717,1020539,Manhattan,East Village,40.72534,-73.98591,Private room,88,2,69,0.91,2,0 +718,1381171,Manhattan,Harlem,40.821509999999996,-73.94516,Entire home/apt,155,1,1,0.18,1,5 +719,1382749,Brooklyn,Williamsburg,40.72059,-73.9567,Entire home/apt,185,180,24,0.26,1,0 +720,1384111,Queens,Sunnyside,40.74558,-73.92324,Private room,73,2,95,1.02,2,0 +721,1384559,Manhattan,Upper West Side,40.79433,-73.9765,Entire home/apt,225,2,129,1.41,1,107 +722,305972,Manhattan,Morningside Heights,40.81055,-73.95549,Private room,85,7,171,1.84,2,144 +723,21188,Brooklyn,Crown Heights,40.6711,-73.95231,Private room,99,2,20,0.59,1,98 +724,1123923,Brooklyn,Cypress Hills,40.67962,-73.88928,Private room,48,90,17,0.27,2,0 +725,1390947,Manhattan,Theater District,40.762170000000005,-73.98411,Entire home/apt,200,5,8,0.09,1,0 +726,1392440,Manhattan,Upper East Side,40.76128,-73.96463,Entire home/apt,485,7,11,0.12,1,0 +727,1394190,Manhattan,Nolita,40.72313,-73.99438,Entire home/apt,310,5,5,0.09,1,89 +728,1394719,Brooklyn,Williamsburg,40.7177,-73.95576,Entire home/apt,110,4,0,,1,354 +729,1385157,Manhattan,Upper West Side,40.78448,-73.97289,Entire home/apt,109,30,36,0.39,5,286 +730,1385157,Manhattan,Upper West Side,40.78304,-73.97447,Entire home/apt,167,30,16,0.17,5,252 +731,1396546,Brooklyn,Fort Greene,40.68737,-73.97125,Entire home/apt,147,15,5,0.12,1,189 +732,1397061,Manhattan,Chelsea,40.74139,-74.0005,Entire home/apt,220,4,0,,1,0 +733,1397115,Manhattan,Lower East Side,40.71992,-73.98773,Entire home/apt,195,4,68,0.77,1,271 +734,1398809,Manhattan,Little Italy,40.71905,-73.99677,Entire home/apt,199,28,89,0.99,1,0 +735,638721,Manhattan,Financial District,40.707409999999996,-74.00102,Private room,65,30,10,1.02,1,0 +736,1402454,Queens,Rego Park,40.73349,-73.86009,Private room,55,1,38,0.85,1,0 +737,1402951,Bronx,Wakefield,40.89557,-73.8447,Private room,50,2,15,0.17,1,337 +738,164675,Brooklyn,Kensington,40.64277,-73.97296,Private room,60,2,20,0.42,1,347 +739,661399,Manhattan,East Harlem,40.791109999999996,-73.94466,Private room,99,3,25,0.96,2,127 +740,1406773,Manhattan,Harlem,40.79951,-73.95257,Entire home/apt,130,2,35,0.42,1,41 +741,1380703,Brooklyn,Williamsburg,40.71647,-73.93974,Entire home/apt,290,30,1,0.01,1,0 +742,1408733,Manhattan,Chelsea,40.75114,-74.00195,Entire home/apt,350,3,64,0.7,1,18 +743,1410714,Brooklyn,Crown Heights,40.66431,-73.93216,Private room,50,3,26,0.33,1,158 +744,1413098,Queens,Long Island City,40.74579,-73.95012,Private room,96,2,244,2.74,1,270 +745,1093220,Brooklyn,Bushwick,40.70278,-73.92673,Private room,45,15,21,0.29,3,88 +746,1366310,Queens,Woodside,40.74409,-73.91122,Private room,85,2,270,2.95,2,306 +747,1398639,Brooklyn,Bedford-Stuyvesant,40.68812,-73.93254,Private room,34,10,16,0.19,3,216 +748,1415590,Manhattan,East Village,40.724540000000005,-73.99150999999999,Entire home/apt,250,3,24,0.26,1,16 +749,1315849,Brooklyn,Williamsburg,40.71073,-73.96207,Private room,190,1,30,0.33,2,365 +750,1315849,Brooklyn,Williamsburg,40.71028,-73.96128,Private room,75,2,5,0.06,2,365 +751,1217923,Brooklyn,Prospect-Lefferts Gardens,40.65772,-73.96131,Entire home/apt,93,4,115,1.25,1,312 +752,1417166,Brooklyn,Bedford-Stuyvesant,40.68884,-73.95059,Private room,60,5,9,0.19,2,33 +753,1417166,Brooklyn,Bedford-Stuyvesant,40.6865,-73.95371999999999,Private room,65,5,45,0.52,2,0 +754,1387370,Manhattan,Midtown,40.75282,-73.97315,Entire home/apt,125,365,19,0.21,1,365 +755,1362808,Manhattan,Upper East Side,40.763729999999995,-73.96897,Entire home/apt,300,3,5,0.08,1,27 +756,1423798,Manhattan,Greenwich Village,40.73388,-73.99452,Entire home/apt,150,2,203,2.22,1,300 +757,1423613,Manhattan,Washington Heights,40.85774,-73.92900999999999,Entire home/apt,56,122,20,0.41,1,216 +758,1195295,Manhattan,East Village,40.722570000000005,-73.98465,Entire home/apt,299,3,49,0.53,1,365 +759,511993,Brooklyn,Greenpoint,40.72723,-73.95728000000001,Private room,60,4,6,0.07,1,303 +760,1402817,Brooklyn,Fort Greene,40.69135,-73.97321,Entire home/apt,88,5,7,0.08,1,0 +761,1427381,Brooklyn,Williamsburg,40.70513,-73.95505,Private room,60,2,35,0.38,2,161 +762,605463,Manhattan,West Village,40.73301,-74.00268,Entire home/apt,1300,5,28,0.31,4,297 +763,1429642,Manhattan,East Harlem,40.79793,-73.93611999999999,Private room,200,6,0,,1,0 +764,1433395,Manhattan,Harlem,40.80285,-73.95166,Private room,99,2,54,0.88,1,50 +765,1434654,Brooklyn,Bushwick,40.70642,-73.91665,Entire home/apt,110,3,115,1.75,2,28 +766,1434931,Brooklyn,Clinton Hill,40.68156,-73.96537,Entire home/apt,135,5,6,0.13,1,317 +767,1436404,Manhattan,Upper East Side,40.77368,-73.95198,Entire home/apt,110,15,1,0.02,1,275 +768,1417757,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93701999999999,Entire home/apt,165,3,204,2.31,1,80 +769,1440691,Brooklyn,Sunset Park,40.65992,-73.99042,Entire home/apt,127,180,1,0.03,1,365 +770,130901,Brooklyn,Prospect Heights,40.678470000000004,-73.97038,Entire home/apt,402,3,89,0.97,1,340 +771,305972,Manhattan,Harlem,40.81371,-73.95585,Private room,85,6,130,1.42,2,97 +772,1447684,Brooklyn,Greenpoint,40.72868,-73.95835,Private room,75,7,15,0.25,3,365 +773,1448432,Manhattan,East Village,40.73168,-73.98662,Entire home/apt,139,30,52,0.6,1,314 +774,950657,Brooklyn,Prospect-Lefferts Gardens,40.656890000000004,-73.9533,Entire home/apt,70,6,58,0.63,1,0 +775,1451723,Manhattan,East Harlem,40.7928,-73.93966999999999,Private room,50,3,208,2.32,1,339 +776,1452026,Queens,Astoria,40.77117,-73.91905,Private room,30,5,3,0.03,1,0 +777,1132207,Manhattan,West Village,40.73729,-74.00806999999999,Entire home/apt,250,30,7,0.08,1,35 +778,368528,Brooklyn,Crown Heights,40.66984,-73.95141,Private room,64,1,1,0.04,1,0 +779,1455825,Manhattan,Harlem,40.82977,-73.94071,Entire home/apt,300,3,2,0.06,1,365 +780,1420300,Brooklyn,Bedford-Stuyvesant,40.68492,-73.95489,Entire home/apt,800,4,122,1.37,1,257 +781,240427,Brooklyn,Bedford-Stuyvesant,40.68255,-73.91957,Entire home/apt,100,3,63,0.72,2,5 +782,1151818,Brooklyn,Crown Heights,40.67392,-73.94662,Entire home/apt,250,5,26,0.28,1,0 +783,70614,Manhattan,West Village,40.73879,-74.00425,Entire home/apt,200,27,1,0.01,1,0 +784,1468658,Brooklyn,Greenpoint,40.73321,-73.95586999999999,Entire home/apt,140,5,14,0.16,1,0 +785,1469036,Manhattan,Harlem,40.806709999999995,-73.95082,Private room,130,1,107,2.38,1,304 +786,1471384,Brooklyn,Kensington,40.6433,-73.97386,Entire home/apt,90,30,3,0.05,1,286 +787,36897,Manhattan,Chinatown,40.71601,-73.99123,Entire home/apt,90,3,107,1.17,1,0 +788,1464358,Brooklyn,Bedford-Stuyvesant,40.681059999999995,-73.9292,Private room,97,3,29,1.57,1,118 +789,322934,Brooklyn,Gowanus,40.681309999999996,-73.98879000000001,Entire home/apt,91,6,69,0.76,1,265 +790,1474071,Brooklyn,Park Slope,40.67264,-73.98136,Private room,125,3,232,2.52,1,303 +791,1474637,Brooklyn,Cypress Hills,40.67889,-73.86404,Private room,75,7,0,,1,0 +792,511175,Manhattan,East Village,40.7241,-73.97899,Entire home/apt,180,7,24,0.26,2,125 +793,1427381,Brooklyn,Williamsburg,40.70766,-73.95191,Entire home/apt,300,7,0,,2,354 +794,524730,Brooklyn,Williamsburg,40.714220000000005,-73.9484,Entire home/apt,100,19,5,0.06,2,6 +795,1476954,Manhattan,Hell's Kitchen,40.76001,-73.99133,Entire home/apt,175,3,10,0.23,1,0 +796,1366270,Brooklyn,South Slope,40.66441,-73.97974,Private room,65,4,36,0.47,2,80 +797,1482460,Manhattan,West Village,40.73362,-74.00923,Entire home/apt,240,5,94,1.1,1,134 +798,1475866,Manhattan,East Village,40.731190000000005,-73.98819,Private room,300,6,1,0.01,1,0 +799,1486034,Manhattan,Chelsea,40.74494,-73.9998,Entire home/apt,385,1,63,0.71,1,364 +800,1487126,Brooklyn,Bushwick,40.69657,-73.9129,Private room,47,15,5,0.06,1,0 +801,1491538,Brooklyn,Crown Heights,40.67106,-73.95463000000001,Entire home/apt,110,3,238,2.6,1,297 +802,1492339,Manhattan,Harlem,40.80748,-73.95589,Private room,75,2,101,1.1,1,0 +803,1029021,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93179,Entire home/apt,100,3,21,0.23,3,43 +804,1495090,Manhattan,Hell's Kitchen,40.76147,-73.99152,Entire home/apt,165,2,72,0.82,1,10 +805,1495196,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.91920999999999,Entire home/apt,300,2,40,0.68,1,0 +806,1495141,Brooklyn,Cobble Hill,40.68538,-74.00056,Entire home/apt,140,3,103,1.13,1,189 +807,1495502,Brooklyn,Williamsburg,40.70839,-73.94289,Entire home/apt,120,6,66,0.72,2,17 +808,1498424,Brooklyn,Fort Greene,40.69018,-73.98106999999999,Entire home/apt,175,3,35,0.4,1,289 +809,1496847,Brooklyn,Carroll Gardens,40.68128,-73.99521999999999,Entire home/apt,275,31,121,1.33,1,305 +810,347036,Manhattan,East Village,40.72948,-73.98694,Entire home/apt,179,8,15,0.19,1,0 +811,632334,Brooklyn,Carroll Gardens,40.68353,-73.9914,Entire home/apt,189,2,13,0.18,1,0 +812,1502469,Manhattan,East Village,40.72506,-73.98865,Entire home/apt,219,2,129,1.42,1,220 +813,1503831,Manhattan,West Village,40.72891,-74.00293,Entire home/apt,450,20,157,1.71,1,0 +814,815741,Manhattan,SoHo,40.7253,-73.99916,Entire home/apt,249,5,8,0.11,1,0 +815,1454655,Queens,Long Island City,40.75295,-73.93228,Private room,65,2,5,0.06,1,362 +816,1505217,Brooklyn,Greenpoint,40.71947,-73.95251999999999,Entire home/apt,250,4,46,0.52,1,121 +817,207124,Manhattan,Chinatown,40.71283,-73.99703000000001,Entire home/apt,139,30,37,0.41,1,153 +818,1470688,Manhattan,Upper West Side,40.773379999999996,-73.98886999999999,Entire home/apt,209,7,14,0.16,1,205 +819,1321504,Brooklyn,Crown Heights,40.67385,-73.94405,Entire home/apt,120,5,37,0.45,1,310 +820,1509416,Queens,Astoria,40.76856,-73.91828000000001,Entire home/apt,70,5,1,0.03,1,0 +821,1490696,Manhattan,West Village,40.73908,-74.00378,Private room,90,3,209,2.38,1,236 +822,169927,Manhattan,Hell's Kitchen,40.7625,-73.9869,Entire home/apt,199,3,4,0.07,1,200 +823,1513294,Brooklyn,Bushwick,40.69755,-73.91187,Private room,50,60,17,0.19,2,74 +824,1021834,Brooklyn,Crown Heights,40.67335,-73.96,Entire home/apt,100,5,0,,1,0 +825,910719,Manhattan,Harlem,40.804970000000004,-73.95146,Entire home/apt,110,1,0,,1,0 +826,1495502,Brooklyn,Williamsburg,40.707359999999994,-73.94331,Entire home/apt,157,4,54,0.66,2,12 +827,417504,Brooklyn,Greenpoint,40.73683,-73.9543,Entire home/apt,199,3,43,0.49,28,84 +828,1521432,Queens,Astoria,40.76444,-73.92607,Entire home/apt,192,3,7,0.08,1,0 +829,417504,Brooklyn,Greenpoint,40.7389,-73.95395,Entire home/apt,199,3,75,0.93,28,84 +830,45682,Manhattan,Upper West Side,40.776109999999996,-73.97808,Entire home/apt,150,1,88,0.99,1,0 +831,417504,Brooklyn,Greenpoint,40.73806,-73.95461999999999,Entire home/apt,199,3,73,0.84,28,56 +832,417504,Brooklyn,Greenpoint,40.73661,-73.95479,Entire home/apt,199,3,89,1.06,28,62 +833,417504,Brooklyn,Greenpoint,40.73857,-73.95435,Entire home/apt,199,3,23,0.26,28,81 +834,1521604,Brooklyn,Williamsburg,40.711,-73.96225,Entire home/apt,105,3,11,0.16,1,0 +835,430188,Brooklyn,Williamsburg,40.70686,-73.95365,Private room,135,28,84,1.12,6,310 +836,417504,Brooklyn,Greenpoint,40.73857,-73.95299,Entire home/apt,199,3,54,0.61,28,60 +837,1523610,Brooklyn,Williamsburg,40.71095,-73.95239000000001,Private room,125,3,17,0.19,1,0 +838,1387286,Brooklyn,Williamsburg,40.709179999999996,-73.94881,Private room,60,7,1,0.02,2,0 +839,1525761,Brooklyn,Williamsburg,40.71685,-73.96573000000001,Entire home/apt,85,1,73,0.89,1,0 +840,568585,Manhattan,Upper West Side,40.7909,-73.96762,Entire home/apt,300,3,36,0.47,1,29 +841,496164,Brooklyn,Williamsburg,40.71143,-73.94159,Private room,75,2,98,1.07,2,264 +842,1528912,Queens,Elmhurst,40.736999999999995,-73.87444,Private room,55,1,63,0.89,2,341 +843,1530106,Brooklyn,Crown Heights,40.66469,-73.96091,Private room,44,5,2,0.09,1,0 +844,1530310,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95405,Private room,55,5,18,0.2,3,0 +845,839679,Brooklyn,Williamsburg,40.71653,-73.95554,Private room,30,3,24,0.28,3,0 +846,997124,Brooklyn,Fort Greene,40.693090000000005,-73.97074,Private room,35,3,1,0.07,1,0 +847,1535987,Brooklyn,Williamsburg,40.706379999999996,-73.96627,Private room,70,1,2,0.05,1,363 +848,1536533,Brooklyn,Williamsburg,40.71629,-73.95786,Entire home/apt,130,14,23,0.25,1,25 +849,1539749,Brooklyn,Bedford-Stuyvesant,40.68622,-73.94675,Private room,52,2,93,1.12,4,0 +850,1412944,Brooklyn,Williamsburg,40.71635,-73.94609,Private room,75,3,0,,1,358 +851,236421,Manhattan,Upper East Side,40.77272,-73.95307,Private room,190,3,0,,2,0 +852,787261,Manhattan,SoHo,40.72509,-74.00304,Entire home/apt,250,5,152,1.69,1,109 +853,1220404,Brooklyn,East New York,40.66795,-73.89232,Entire home/apt,100,1,119,1.39,2,289 +854,1557998,Brooklyn,Greenpoint,40.72582,-73.95843,Entire home/apt,130,4,9,0.1,1,188 +855,1550578,Manhattan,Harlem,40.80637,-73.95433,Private room,140,2,44,0.49,1,260 +856,1555897,Brooklyn,Flatbush,40.64387,-73.96855,Private room,75,2,158,1.77,1,168 +857,8605,Manhattan,East Harlem,40.7968,-73.93611,Entire home/apt,150,7,12,0.14,1,0 +858,1561505,Manhattan,East Harlem,40.79596,-73.94463,Entire home/apt,90,3,51,0.57,1,311 +859,1562045,Manhattan,Upper West Side,40.780120000000004,-73.98439,Entire home/apt,295,1,0,,1,146 +860,185753,Manhattan,Upper West Side,40.775079999999996,-73.9799,Entire home/apt,150,2,11,0.13,1,2 +861,1570170,Brooklyn,Williamsburg,40.71532,-73.96064,Entire home/apt,180,3,236,2.74,2,242 +862,1577493,Brooklyn,Fort Greene,40.68786,-73.97421,Private room,135,3,16,0.18,1,0 +863,1577961,Brooklyn,Bushwick,40.70793,-73.91986999999999,Private room,65,5,123,1.42,1,46 +864,1586945,Manhattan,Upper West Side,40.790440000000004,-73.97513000000001,Private room,99,3,14,0.22,1,365 +865,1590548,Brooklyn,Greenpoint,40.72668,-73.95761999999999,Private room,149,14,65,0.73,1,364 +866,1390555,Staten Island,Clifton,40.62318,-74.07848,Private room,59,1,50,0.56,1,352 +867,745069,Manhattan,Harlem,40.82286,-73.94596,Private room,75,3,33,0.39,3,301 +868,745069,Manhattan,Harlem,40.82451,-73.94457,Private room,75,3,30,0.35,3,322 +869,1597481,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95926999999999,Private room,75,3,13,0.15,1,298 +870,1385157,Manhattan,Upper West Side,40.78443,-73.97399,Entire home/apt,109,30,18,0.2,5,285 +871,72747,Brooklyn,Crown Heights,40.676790000000004,-73.95639,Entire home/apt,225,4,1,0.01,1,342 +872,1601664,Manhattan,East Harlem,40.79107,-73.94381,Private room,86,3,216,2.44,1,250 +873,142147,Queens,Ridgewood,40.70215,-73.91139,Private room,52,2,98,1.09,1,326 +874,1606222,Brooklyn,Prospect Heights,40.673390000000005,-73.96519,Private room,100,2,61,0.86,1,90 +875,1613244,Manhattan,Lower East Side,40.72209,-73.99274,Entire home/apt,99,30,13,0.34,9,289 +876,1617817,Manhattan,East Village,40.73171,-73.98716999999999,Private room,89,3,136,1.52,1,193 +877,279078,Brooklyn,Bedford-Stuyvesant,40.69213,-73.95100000000001,Entire home/apt,135,2,39,0.47,2,293 +878,1631400,Manhattan,West Village,40.73237,-74.00608000000001,Entire home/apt,199,14,65,0.73,1,155 +879,1631733,Brooklyn,Kensington,40.64354,-73.97776999999999,Entire home/apt,89,3,62,0.71,1,189 +880,1632149,Manhattan,Harlem,40.80343,-73.9531,Private room,110,3,47,0.57,1,248 +881,1633100,Brooklyn,Bushwick,40.70462,-73.9228,Entire home/apt,120,2,42,0.48,1,238 +882,1639120,Brooklyn,Williamsburg,40.71394,-73.96266999999999,Private room,59,3,207,2.29,2,284 +883,9647066,Brooklyn,Bay Ridge,40.6339,-74.02035,Private room,49,4,72,0.81,2,343 +884,1639884,Brooklyn,Greenpoint,40.73028,-73.95926999999999,Private room,79,14,22,0.25,1,268 +885,1643782,Manhattan,Harlem,40.8076,-73.94433000000001,Entire home/apt,135,30,25,0.28,1,249 +886,516347,Brooklyn,South Slope,40.66485,-73.98343,Entire home/apt,185,2,215,2.42,1,291 +887,1366194,Brooklyn,Williamsburg,40.712790000000005,-73.95852,Entire home/apt,225,4,26,0.73,1,0 +888,1644452,Manhattan,Gramercy,40.73294,-73.98281999999999,Entire home/apt,245,5,18,0.21,1,0 +889,1644999,Manhattan,Washington Heights,40.834559999999996,-73.9457,Entire home/apt,115,3,18,0.21,1,31 +890,1649300,Brooklyn,Williamsburg,40.720909999999996,-73.95814,Entire home/apt,325,2,320,3.6,1,0 +891,1651591,Brooklyn,Williamsburg,40.71819,-73.95414,Private room,95,2,160,1.8,2,79 +892,1610852,Manhattan,West Village,40.73887,-74.00341999999999,Private room,120,2,78,1.22,1,0 +893,6064192,Manhattan,Upper West Side,40.77892,-73.98238,Entire home/apt,499,30,64,0.72,1,157 +894,1639120,Brooklyn,Williamsburg,40.713359999999994,-73.96191999999999,Private room,75,2,219,2.44,2,277 +895,1660724,Manhattan,Upper East Side,40.77688,-73.96177,Private room,109,1,66,0.94,1,353 +896,1661965,Brooklyn,Williamsburg,40.71368,-73.94478000000001,Entire home/apt,160,3,25,0.29,1,0 +897,92788,Manhattan,Upper East Side,40.7761,-73.95265,Entire home/apt,219,4,102,1.15,2,280 +898,668564,Manhattan,Upper East Side,40.77471,-73.95574,Entire home/apt,159,2,32,0.47,1,7 +899,51038,Brooklyn,Clinton Hill,40.68625,-73.96446,Private room,180,3,15,0.18,6,266 +900,82896,Manhattan,East Village,40.725,-73.98850999999999,Entire home/apt,150,5,1,0.02,1,0 +901,1675255,Manhattan,Kips Bay,40.740159999999996,-73.97665,Entire home/apt,106,3,12,0.14,1,271 +902,1676487,Manhattan,Midtown,40.75023,-73.98293000000001,Entire home/apt,299,10,19,0.27,1,101 +903,1013131,Manhattan,Upper West Side,40.78867,-73.96809,Entire home/apt,179,3,297,3.37,1,205 +904,890215,Brooklyn,Crown Heights,40.66604,-73.95914,Entire home/apt,165,3,12,0.13,1,343 +905,1680375,Brooklyn,Flatbush,40.63593,-73.96076,Entire home/apt,500,4,9,0.11,1,0 +906,1681546,Manhattan,Chinatown,40.71638,-73.99167,Entire home/apt,250,15,9,0.1,1,190 +907,312288,Manhattan,Inwood,40.86658,-73.92558000000001,Private room,87,7,46,0.62,2,310 +908,1697784,Brooklyn,Williamsburg,40.71179,-73.96449,Private room,79,4,42,0.47,2,52 +909,1698391,Manhattan,Hell's Kitchen,40.76186,-73.99165,Private room,75,2,118,2.11,3,312 +910,52043,Brooklyn,Williamsburg,40.71417,-73.95917,Entire home/apt,200,30,53,0.6,1,0 +911,547177,Manhattan,Harlem,40.82772,-73.93876999999999,Private room,80,1,15,0.21,1,329 +912,1709216,Brooklyn,East Flatbush,40.63602,-73.94606999999999,Entire home/apt,115,3,64,0.72,4,333 +913,1709216,Brooklyn,East Flatbush,40.63759,-73.9459,Entire home/apt,115,3,51,0.58,4,327 +914,1709216,Brooklyn,East Flatbush,40.636109999999995,-73.94637,Entire home/apt,120,3,79,0.88,4,349 +915,1711529,Manhattan,Harlem,40.803000000000004,-73.95278,Private room,125,3,202,2.29,1,217 +916,1723485,Manhattan,Upper West Side,40.79526,-73.9655,Entire home/apt,387,1,23,0.63,1,0 +917,1732559,Manhattan,Hell's Kitchen,40.75763,-73.99481999999999,Private room,95,6,62,0.76,2,80 +918,483013,Manhattan,Upper West Side,40.77577,-73.98258,Entire home/apt,99,2,36,0.45,1,0 +919,168417,Manhattan,Upper East Side,40.776309999999995,-73.95289,Entire home/apt,121,1,16,0.19,2,351 +920,1740233,Manhattan,Hell's Kitchen,40.76774,-73.9892,Entire home/apt,350,4,24,0.27,1,362 +921,1740216,Manhattan,Harlem,40.811690000000006,-73.94355,Private room,75,2,77,0.88,2,144 +922,1732559,Manhattan,Hell's Kitchen,40.75782,-73.99349000000001,Private room,95,5,110,1.27,2,43 +923,10609846,Manhattan,Harlem,40.83177,-73.95,Private room,89,1,56,0.64,1,365 +924,1746209,Manhattan,West Village,40.73104,-74.00879,Private room,195,1,7,0.08,1,129 +925,1745312,Manhattan,Flatiron District,40.74253,-73.9916,Private room,160,21,0,,1,0 +926,1745402,Brooklyn,Sunset Park,40.64372,-74.02065999999999,Entire home/apt,70,18,19,0.22,1,0 +927,1755339,Manhattan,Greenwich Village,40.72886,-74.00013,Private room,100,3,7,0.09,1,0 +928,562614,Manhattan,Lower East Side,40.71868,-73.99016999999999,Entire home/apt,140,1,53,0.6,1,0 +929,251176,Manhattan,East Village,40.72143,-73.98116999999999,Entire home/apt,189,3,265,2.99,2,355 +930,202507,Brooklyn,Williamsburg,40.71682,-73.96369,Private room,160,5,0,,1,0 +931,1774431,Brooklyn,Park Slope,40.67725,-73.9821,Entire home/apt,178,30,8,0.1,1,280 +932,74777,Brooklyn,Crown Heights,40.66888,-73.95291999999999,Entire home/apt,145,14,46,0.52,1,38 +933,1747222,Brooklyn,Park Slope,40.67188,-73.97533,Entire home/apt,125,5,6,0.08,1,31 +934,417652,Manhattan,Chelsea,40.74964,-73.99158,Entire home/apt,265,4,75,0.86,1,324 +935,1785800,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.95057,Private room,77,5,11,0.13,3,365 +936,1786901,Manhattan,Upper East Side,40.78164,-73.94717,Private room,60,3,5,1.47,9,0 +937,314377,Manhattan,Chinatown,40.71515,-73.99029,Entire home/apt,129,3,132,1.49,1,171 +938,1474749,Manhattan,East Village,40.729859999999995,-73.97913,Entire home/apt,199,6,41,0.47,1,36 +939,1797859,Brooklyn,Prospect-Lefferts Gardens,40.66039,-73.95936999999999,Private room,92,7,34,0.39,1,332 +940,1251762,Brooklyn,Crown Heights,40.66898,-73.9571,Entire home/apt,185,3,34,0.39,1,0 +941,684129,Manhattan,Midtown,40.75407,-73.96713000000001,Entire home/apt,110,7,27,0.31,1,192 +942,1631288,Brooklyn,Williamsburg,40.70712,-73.94013000000001,Private room,65,4,30,0.34,1,139 +943,1386983,Manhattan,Midtown,40.74553,-73.98943,Private room,135,3,214,2.45,2,167 +944,1562039,Manhattan,Upper East Side,40.77584,-73.9502,Shared room,115,30,12,0.14,1,0 +945,390251,Manhattan,Harlem,40.79967,-73.95156,Private room,175,2,6,0.09,4,10 +946,256239,Manhattan,Upper West Side,40.80142,-73.96931,Private room,3000,7,0,,1,365 +947,1840564,Brooklyn,Williamsburg,40.70507,-73.9353,Private room,72,3,156,1.8,1,110 +948,1842714,Brooklyn,Park Slope,40.67962,-73.97655,Private room,80,2,30,0.74,1,0 +949,774128,Brooklyn,Crown Heights,40.66847,-73.94875,Entire home/apt,125,5,1,0.02,1,0 +950,1728785,Brooklyn,Greenpoint,40.7376,-73.95678000000001,Private room,120,5,3,0.09,1,242 +951,179679,Brooklyn,Williamsburg,40.71148,-73.95573,Private room,94,2,272,3.18,3,22 +952,1863447,Brooklyn,Prospect Heights,40.67425,-73.96514,Private room,56,3,63,0.82,1,0 +953,1863713,Manhattan,East Village,40.72899,-73.97792,Entire home/apt,549,30,58,0.66,1,200 +954,1869567,Brooklyn,Greenpoint,40.72488,-73.94013000000001,Entire home/apt,190,2,5,0.1,1,0 +955,1879389,Brooklyn,Williamsburg,40.722120000000004,-73.95696,Private room,129,3,63,0.71,2,87 +956,1884204,Brooklyn,Bedford-Stuyvesant,40.685340000000004,-73.93433,Entire home/apt,85,5,268,3.04,2,202 +957,1887999,Staten Island,Graniteville,40.62109,-74.16534,Private room,20,3,80,0.92,1,226 +958,1895957,Manhattan,Upper West Side,40.78161,-73.97898,Entire home/apt,145,3,22,0.25,1,0 +959,1900800,Manhattan,Hell's Kitchen,40.75643,-73.99046,Entire home/apt,200,7,13,0.15,1,327 +960,438133,Brooklyn,Park Slope,40.67407,-73.98111,Entire home/apt,125,4,23,0.67,2,262 +961,1317588,Brooklyn,Sheepshead Bay,40.59721,-73.95149,Entire home/apt,50,30,3,0.08,1,0 +962,732535,Manhattan,Harlem,40.80491,-73.94866,Private room,160,3,10,0.12,3,359 +963,732535,Manhattan,Harlem,40.803340000000006,-73.94805,Private room,180,3,14,0.16,3,348 +964,1928213,Manhattan,Inwood,40.87039,-73.91611,Private room,100,1,20,0.28,1,0 +965,1930204,Brooklyn,Williamsburg,40.704,-73.93285,Private room,70,5,2,0.02,1,0 +966,1931205,Bronx,Spuyten Duyvil,40.879909999999995,-73.91673,Entire home/apt,120,2,47,1.22,1,318 +967,773928,Staten Island,Stapleton,40.62766,-74.07988,Private room,110,2,6,0.19,1,363 +968,1935291,Manhattan,Upper East Side,40.7685,-73.96034,Private room,105,7,93,1.06,1,70 +969,1935605,Manhattan,Midtown,40.76082,-73.97548,Entire home/apt,250,3,116,1.32,1,0 +970,1828506,Manhattan,Kips Bay,40.74238,-73.98122,Private room,74,240,15,0.17,1,90 +971,390251,Manhattan,Harlem,40.80151,-73.9522,Entire home/apt,165,2,70,0.8,4,15 +972,1939728,Manhattan,Washington Heights,40.834340000000005,-73.94027,Private room,99,3,4,0.41,1,335 +973,1146958,Manhattan,Gramercy,40.73677,-73.98084,Entire home/apt,125,30,128,1.46,4,0 +974,1947974,Queens,Briarwood,40.71151,-73.81560999999999,Private room,75,1,59,0.69,2,0 +975,1960128,Queens,Ozone Park,40.68581,-73.84642,Shared room,45,1,8,0.11,2,364 +976,1960189,Brooklyn,Columbia St,40.68636,-74.00345,Entire home/apt,159,2,106,1.22,1,34 +977,312722,Brooklyn,Williamsburg,40.70994,-73.96573000000001,Private room,45,15,15,0.57,4,242 +978,1303029,Manhattan,Hell's Kitchen,40.76013,-73.99006999999999,Private room,104,2,133,1.51,1,147 +979,1965972,Manhattan,Financial District,40.70621,-74.01525,Entire home/apt,225,4,27,0.31,1,169 +980,1968502,Manhattan,Nolita,40.72172,-73.99689000000001,Private room,100,5,61,0.7,1,188 +981,1651591,Brooklyn,Greenpoint,40.720490000000005,-73.95221,Private room,90,2,2,0.02,2,89 +982,1947974,Queens,Briarwood,40.710679999999996,-73.81577,Private room,75,1,16,0.18,2,189 +983,1970839,Manhattan,Flatiron District,40.74125,-73.98862,Entire home/apt,350,7,0,,1,0 +984,1981742,Manhattan,Harlem,40.830909999999996,-73.94223000000001,Entire home/apt,135,5,38,0.44,1,253 +985,70234,Manhattan,Upper West Side,40.7824,-73.98294,Private room,125,1,25,0.28,1,311 +986,1982209,Manhattan,East Village,40.72634,-73.98267,Entire home/apt,225,3,93,1.05,1,0 +987,1985717,Manhattan,Harlem,40.82703,-73.94311,Private room,85,3,6,0.07,1,363 +988,325790,Manhattan,Upper East Side,40.78521,-73.95489,Entire home/apt,200,7,30,0.34,1,224 +989,1989327,Brooklyn,South Slope,40.66106,-73.98316,Entire home/apt,250,3,17,0.46,1,5 +990,1996265,Manhattan,Lower East Side,40.72123,-73.98996,Private room,90,10,67,0.77,1,301 +991,1488809,Brooklyn,Bushwick,40.70339,-73.92945,Entire home/apt,130,30,53,0.68,1,0 +992,1985759,Brooklyn,Prospect-Lefferts Gardens,40.660090000000004,-73.96236999999999,Entire home/apt,90,30,32,0.37,1,50 +993,462379,Brooklyn,Carroll Gardens,40.679390000000005,-73.99398000000001,Entire home/apt,298,30,131,1.84,2,296 +994,2005740,Manhattan,Upper East Side,40.76494,-73.95804,Entire home/apt,300,4,19,0.22,1,84 +995,2006712,Manhattan,Harlem,40.80192,-73.95827,Private room,125,1,0,,1,365 +996,2010724,Manhattan,East Harlem,40.79314,-73.94853,Private room,125,3,74,0.84,3,212 +997,1386983,Manhattan,Midtown,40.7453,-73.99056,Private room,145,3,165,1.88,2,181 +998,2013117,Manhattan,East Village,40.728120000000004,-73.97966,Entire home/apt,147,2,16,0.18,1,0 +999,242506,Brooklyn,Williamsburg,40.7093,-73.96484,Private room,123,3,269,3.09,3,158 +1000,2017752,Brooklyn,Windsor Terrace,40.647909999999996,-73.97904,Entire home/apt,88,3,243,2.75,1,217 +1001,2018042,Queens,Long Island City,40.754529999999995,-73.93377,Entire home/apt,215,2,59,0.94,1,335 +1002,2020431,Manhattan,SoHo,40.72057,-73.99976,Entire home/apt,225,3,134,1.53,1,231 +1003,2027134,Manhattan,Nolita,40.7234,-73.99439,Entire home/apt,269,28,81,0.93,1,122 +1004,1952186,Brooklyn,Williamsburg,40.711209999999994,-73.94669,Entire home/apt,145,3,7,0.08,1,270 +1005,2015914,Brooklyn,Bushwick,40.68979,-73.91660999999999,Private room,75,3,112,1.28,8,330 +1006,2034361,Manhattan,Greenwich Village,40.73448,-73.99797,Entire home/apt,145,5,0,,1,0 +1007,520189,Brooklyn,Prospect-Lefferts Gardens,40.65937,-73.95906,Entire home/apt,229,2,92,1.05,1,321 +1008,1621363,Brooklyn,Boerum Hill,40.685990000000004,-73.98826,Entire home/apt,300,29,23,0.26,2,312 +1009,2010724,Manhattan,East Harlem,40.79477,-73.95045999999999,Private room,100,3,67,0.76,3,345 +1010,405225,Brooklyn,Brighton Beach,40.5781,-73.95455,Entire home/apt,75,2,8,0.1,1,2 +1011,2047776,Manhattan,Nolita,40.72278,-73.9967,Entire home/apt,225,2,244,2.81,2,252 +1012,1697784,Brooklyn,Williamsburg,40.71472,-73.96225,Private room,120,6,62,0.7,2,15 +1013,2050338,Brooklyn,Crown Heights,40.66924,-73.94406,Entire home/apt,160,5,125,1.47,3,169 +1014,2051075,Brooklyn,Crown Heights,40.67259,-73.95489,Entire home/apt,125,30,58,0.67,2,212 +1015,2051961,Brooklyn,Bedford-Stuyvesant,40.69321,-73.9442,Entire home/apt,95,5,9,0.1,1,0 +1016,1286417,Brooklyn,Williamsburg,40.71348,-73.94447,Private room,119,3,137,1.57,1,296 +1017,2058589,Manhattan,Midtown,40.75816,-73.96457,Entire home/apt,275,2,16,0.24,1,167 +1018,2059155,Manhattan,Financial District,40.70537,-74.00992,Entire home/apt,160,1,36,0.57,1,365 +1019,319077,Brooklyn,Clinton Hill,40.68722,-73.96289,Entire home/apt,500,1,54,0.65,4,365 +1020,2050328,Manhattan,East Village,40.73111,-73.98528,Entire home/apt,175,14,1,0.03,1,0 +1021,2714164,Brooklyn,Greenpoint,40.722120000000004,-73.94389,Entire home/apt,87,6,39,0.47,2,258 +1022,119588,Brooklyn,Park Slope,40.66626,-73.97933,Entire home/apt,160,1,145,1.76,2,257 +1023,626289,Manhattan,East Village,40.72978,-73.9793,Private room,125,3,28,0.33,1,364 +1024,2085639,Brooklyn,Bedford-Stuyvesant,40.68838,-73.94193,Entire home/apt,90,2,206,2.4,1,236 +1025,2087636,Manhattan,Lower East Side,40.71804,-73.98565,Entire home/apt,200,7,4,0.22,1,0 +1026,2096690,Brooklyn,Bedford-Stuyvesant,40.685590000000005,-73.93896,Entire home/apt,250,15,37,0.52,2,54 +1027,1090764,Manhattan,Upper West Side,40.77995,-73.98342,Private room,99,30,27,0.31,1,189 +1028,2108853,Manhattan,Hell's Kitchen,40.7559,-73.99469,Entire home/apt,325,30,18,0.21,1,364 +1029,2111060,Manhattan,Hell's Kitchen,40.76291,-73.99202,Private room,99,1,134,1.54,1,265 +1030,2103888,Manhattan,Midtown,40.74406,-73.98273,Entire home/apt,325,2,197,2.25,1,207 +1031,2076827,Manhattan,West Village,40.73041,-74.00498,Entire home/apt,129,7,5,0.09,1,0 +1032,905122,Brooklyn,Crown Heights,40.6764,-73.96218,Entire home/apt,130,28,5,0.06,1,196 +1033,2116807,Brooklyn,Vinegar Hill,40.70279,-73.98284,Entire home/apt,190,4,8,0.09,1,0 +1034,2128778,Brooklyn,Crown Heights,40.67436,-73.956,Private room,55,2,62,0.71,2,57 +1035,820046,Manhattan,Washington Heights,40.83559,-73.94095,Private room,60,2,13,0.15,1,0 +1036,2141109,Manhattan,Upper West Side,40.79234,-73.96481999999999,Entire home/apt,250,1,8,0.09,1,0 +1037,361855,Manhattan,Washington Heights,40.834509999999995,-73.93885,Entire home/apt,275,3,50,0.87,2,277 +1038,2148881,Queens,Long Island City,40.748259999999995,-73.94633,Private room,50,180,69,0.79,1,0 +1039,644941,Brooklyn,Prospect Heights,40.67763,-73.97185,Entire home/apt,125,4,41,0.47,1,10 +1040,287733,Brooklyn,Clinton Hill,40.68472,-73.96691,Entire home/apt,150,20,89,1.04,1,247 +1041,1906804,Brooklyn,East New York,40.65408,-73.87883000000001,Entire home/apt,70,4,40,0.46,1,273 +1042,2117078,Brooklyn,Gowanus,40.67302,-73.98756,Entire home/apt,138,3,106,1.22,1,189 +1043,2164138,Manhattan,Financial District,40.70633,-74.00974000000001,Entire home/apt,265,4,33,0.39,1,0 +1044,2164452,Manhattan,Upper East Side,40.77548,-73.95183,Private room,145,5,2,0.09,1,365 +1045,2165401,Manhattan,West Village,40.73775,-74.00344,Entire home/apt,151,88,19,0.22,1,249 +1046,2165711,Manhattan,Financial District,40.70917,-74.0146,Entire home/apt,208,6,100,1.14,1,310 +1047,2168251,Brooklyn,Williamsburg,40.7108,-73.96226,Entire home/apt,200,3,16,0.19,1,291 +1048,2168468,Manhattan,East Village,40.72507,-73.98861,Private room,110,2,64,0.76,1,74 +1049,200243,Manhattan,Harlem,40.827259999999995,-73.9444,Private room,58,1,17,0.31,2,289 +1050,2169825,Manhattan,Harlem,40.82669,-73.94281,Private room,55,2,7,0.08,1,0 +1051,290662,Brooklyn,Park Slope,40.67078,-73.98815,Entire home/apt,105,115,15,0.17,1,219 +1052,2175110,Manhattan,East Village,40.728,-73.97903000000001,Entire home/apt,350,5,4,0.07,1,0 +1053,2177462,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.96181,Entire home/apt,150,3,87,1.0,1,73 +1054,1566042,Brooklyn,Williamsburg,40.71517,-73.94292,Private room,55,150,10,0.14,1,97 +1055,1903758,Brooklyn,Park Slope,40.66859,-73.98235,Entire home/apt,299,20,0,,1,149 +1056,1655939,Queens,Ridgewood,40.700540000000004,-73.90255,Entire home/apt,77,3,289,3.3,1,85 +1057,793225,Manhattan,Chelsea,40.74572,-73.99965,Entire home/apt,125,9,10,0.11,1,0 +1058,2204078,Manhattan,Upper West Side,40.78911,-73.97395999999999,Entire home/apt,395,14,39,0.45,1,50 +1059,2206506,Brooklyn,Bedford-Stuyvesant,40.68813,-73.92817,Entire home/apt,189,7,7,0.1,2,303 +1060,420542,Bronx,Mott Haven,40.81128,-73.92399,Private room,49,1,23,0.27,1,333 +1061,2216673,Manhattan,Upper West Side,40.775929999999995,-73.97699,Entire home/apt,90,4,22,0.27,1,239 +1062,1109143,Manhattan,Kips Bay,40.73903,-73.97975,Private room,100,1,1,0.02,1,6 +1063,242506,Brooklyn,Williamsburg,40.71164,-73.965,Entire home/apt,299,2,5,0.06,3,0 +1064,1267021,Queens,Jackson Heights,40.75193,-73.87873,Private room,75,5,30,0.37,3,180 +1065,1267021,Queens,Jackson Heights,40.74906,-73.89376999999999,Private room,69,7,55,0.64,3,318 +1066,124357,Brooklyn,Williamsburg,40.71756,-73.95281999999999,Private room,90,1,155,1.78,3,328 +1067,2229582,Manhattan,Harlem,40.8179,-73.94319,Private room,94,1,95,1.09,1,18 +1068,2233165,Brooklyn,Windsor Terrace,40.648140000000005,-73.97304,Private room,80,2,118,1.35,1,353 +1069,1812871,Bronx,Longwood,40.816109999999995,-73.89909,Entire home/apt,100,5,82,0.96,1,63 +1070,2219255,Brooklyn,Canarsie,40.62897,-73.90334,Private room,39,5,105,1.21,3,34 +1071,2237267,Manhattan,Upper West Side,40.77555,-73.9767,Entire home/apt,250,3,73,0.84,1,284 +1072,9647066,Brooklyn,Sunset Park,40.6397,-74.0162,Private room,55,7,28,0.32,2,333 +1073,2228665,Brooklyn,Park Slope,40.672670000000004,-73.98348,Private room,110,2,0,,1,0 +1074,2246071,Brooklyn,Kensington,40.64205,-73.97173000000001,Entire home/apt,200,1,3,0.06,1,0 +1075,2248545,Brooklyn,Windsor Terrace,40.660340000000005,-73.9829,Entire home/apt,142,3,120,1.4,1,222 +1076,137814,Brooklyn,Clinton Hill,40.68699,-73.9635,Private room,70,2,339,3.88,3,333 +1077,2107905,Brooklyn,Greenpoint,40.72183,-73.94908000000001,Entire home/apt,260,2,7,0.09,1,0 +1078,2252261,Manhattan,Lower East Side,40.71986,-73.9869,Entire home/apt,225,4,13,0.15,1,195 +1079,1530310,Brooklyn,Bedford-Stuyvesant,40.68881,-73.95405,Private room,59,21,6,0.07,3,0 +1080,2257289,Manhattan,Harlem,40.81669,-73.94266999999999,Private room,65,1,3,0.03,1,0 +1081,2259061,Manhattan,Inwood,40.86717,-73.9194,Entire home/apt,99,20,11,0.18,1,249 +1082,1385575,Manhattan,East Village,40.72981,-73.98318,Entire home/apt,239,2,67,1.33,1,78 +1083,2265389,Manhattan,Inwood,40.86929,-73.92421,Entire home/apt,50,2,123,1.47,1,21 +1084,2265770,Manhattan,Harlem,40.80533,-73.95204,Private room,65,4,109,1.25,3,0 +1085,2267508,Manhattan,Chelsea,40.7476,-73.99698000000001,Entire home/apt,139,4,23,0.27,1,0 +1086,2267864,Manhattan,West Village,40.73357,-74.00723,Entire home/apt,174,2,269,3.15,2,167 +1087,1594083,Manhattan,West Village,40.732040000000005,-74.00189,Entire home/apt,315,3,7,0.08,1,0 +1088,2270183,Manhattan,Harlem,40.81713,-73.94216999999999,Private room,75,3,36,1.76,1,47 +1089,2275829,Manhattan,East Village,40.72917,-73.98810999999999,Entire home/apt,210,1,178,2.06,1,0 +1090,2268393,Brooklyn,Williamsburg,40.7061,-73.94530999999999,Private room,55,4,132,1.51,2,195 +1091,346366,Brooklyn,Williamsburg,40.70147,-73.94378,Entire home/apt,229,3,12,0.15,1,319 +1092,2282355,Manhattan,Upper East Side,40.76719,-73.95303,Entire home/apt,150,2,23,0.27,1,0 +1093,2287727,Manhattan,Kips Bay,40.74134,-73.98113000000001,Entire home/apt,129,2,47,0.55,1,177 +1094,128890,Manhattan,Harlem,40.8162,-73.94747,Entire home/apt,100,8,8,0.11,1,0 +1095,2286224,Brooklyn,Williamsburg,40.71613,-73.95837,Entire home/apt,200,3,17,0.2,1,67 +1096,2298239,Manhattan,Lower East Side,40.717459999999996,-73.98782,Private room,89,5,4,0.06,1,0 +1097,2301624,Brooklyn,Crown Heights,40.66933,-73.93798000000001,Entire home/apt,250,90,19,0.22,1,311 +1098,1530310,Brooklyn,Bedford-Stuyvesant,40.68905,-73.9541,Private room,65,7,2,0.02,3,0 +1099,2065453,Brooklyn,Crown Heights,40.67615,-73.95441,Entire home/apt,68,2,35,0.54,3,0 +1100,815977,Brooklyn,Williamsburg,40.7111,-73.94643,Entire home/apt,235,3,108,1.25,2,144 +1101,2316542,Brooklyn,Bedford-Stuyvesant,40.689440000000005,-73.9376,Entire home/apt,100,3,182,2.15,1,220 +1102,282315,Manhattan,Lower East Side,40.721059999999994,-73.98384,Entire home/apt,311,3,31,0.41,1,28 +1103,2321321,Queens,Jamaica,40.67747,-73.76493,Shared room,39,1,454,5.27,1,353 +1104,2321870,Manhattan,West Village,40.73123,-74.00591,Private room,100,2,199,2.3,1,19 +1105,2325861,Manhattan,Lower East Side,40.72152,-73.99279,Private room,1300,1,0,,1,0 +1106,2332430,Manhattan,Lower East Side,40.721470000000004,-73.99208,Entire home/apt,210,1,230,2.65,1,319 +1107,2120259,Brooklyn,Crown Heights,40.66604,-73.95085999999999,Private room,55,4,101,1.19,4,170 +1108,2334269,Manhattan,Battery Park City,40.71012,-74.01504,Private room,65,2,8,0.13,1,0 +1109,2335775,Brooklyn,Williamsburg,40.71856,-73.95166,Entire home/apt,165,30,154,1.87,1,157 +1110,1274269,Manhattan,Morningside Heights,40.80661,-73.9576,Private room,89,28,69,0.81,1,80 +1111,2339722,Manhattan,Tribeca,40.72203,-74.00988000000001,Entire home/apt,500,10,3,0.05,1,0 +1112,2220859,Brooklyn,Bedford-Stuyvesant,40.68229,-73.94287,Entire home/apt,145,14,3,0.04,1,0 +1113,2147438,Brooklyn,Prospect-Lefferts Gardens,40.65955,-73.96066,Private room,110,4,12,0.16,1,330 +1114,2341078,Manhattan,Upper West Side,40.771370000000005,-73.98943,Entire home/apt,180,5,13,0.15,1,0 +1115,1689040,Brooklyn,Prospect Heights,40.67796,-73.96458,Entire home/apt,115,2,10,0.17,1,0 +1116,1600988,Brooklyn,Bushwick,40.6933,-73.90823,Entire home/apt,82,15,5,0.06,1,311 +1117,2347382,Queens,Long Island City,40.7502,-73.94189,Private room,70,1,144,1.68,2,340 +1118,2348973,Brooklyn,Williamsburg,40.71285,-73.94383,Entire home/apt,155,5,10,0.12,1,0 +1119,950232,Manhattan,Hell's Kitchen,40.76487,-73.98470999999999,Entire home/apt,117,7,0,,1,0 +1120,2355439,Brooklyn,Sunset Park,40.66387,-73.99077,Entire home/apt,100,2,17,0.2,1,0 +1121,2027013,Manhattan,East Village,40.72893,-73.98278,Entire home/apt,89,30,57,0.67,6,0 +1122,2027013,Manhattan,East Village,40.730090000000004,-73.9827,Entire home/apt,89,30,70,0.83,6,4 +1123,2027013,Manhattan,East Village,40.72955,-73.98298,Entire home/apt,99,30,62,0.74,6,8 +1124,2363997,Manhattan,East Village,40.726929999999996,-73.98521,Entire home/apt,155,6,17,0.2,1,0 +1125,277379,Manhattan,Harlem,40.82537,-73.94391999999999,Private room,85,1,439,5.12,2,238 +1126,2368753,Manhattan,Two Bridges,40.71137,-73.99403000000001,Private room,80,4,48,0.56,1,96 +1127,2368133,Manhattan,Kips Bay,40.744279999999996,-73.97809000000001,Entire home/apt,135,3,134,1.56,1,236 +1128,2371814,Brooklyn,Carroll Gardens,40.67579,-73.99968,Entire home/apt,150,6,2,0.03,1,0 +1129,1130454,Manhattan,Chelsea,40.74087,-74.00225999999999,Entire home/apt,380,3,16,0.19,1,0 +1130,1708956,Brooklyn,Fort Greene,40.68723,-73.96897,Entire home/apt,450,2,31,1.14,1,30 +1131,2373905,Brooklyn,Williamsburg,40.7182,-73.95763000000001,Entire home/apt,145,30,36,0.42,1,342 +1132,2374190,Queens,Sunnyside,40.746790000000004,-73.91853,Private room,80,3,1,0.01,1,330 +1133,2377104,Brooklyn,Williamsburg,40.71739,-73.95472,Entire home/apt,225,2,338,3.9,2,225 +1134,2361715,Manhattan,Upper West Side,40.770990000000005,-73.9898,Private room,99,3,117,1.41,1,0 +1135,2382189,Manhattan,Lower East Side,40.7195,-73.98021999999999,Entire home/apt,125,1,261,3.24,1,212 +1136,914838,Manhattan,Hell's Kitchen,40.75636,-73.9939,Entire home/apt,80,30,32,0.37,7,365 +1137,2389885,Brooklyn,Fort Greene,40.688340000000004,-73.97875,Private room,100,2,112,1.3,2,12 +1138,1539749,Brooklyn,Bedford-Stuyvesant,40.68586,-73.94837,Private room,55,2,22,0.26,4,297 +1139,1492619,Manhattan,Civic Center,40.71164,-74.00774,Entire home/apt,328,2,319,3.78,1,112 +1140,2393537,Brooklyn,Williamsburg,40.70743,-73.96728,Entire home/apt,142,7,69,0.85,1,261 +1141,2397411,Brooklyn,Clinton Hill,40.68545,-73.96534,Entire home/apt,350,4,10,0.12,1,0 +1142,2306962,Brooklyn,Windsor Terrace,40.65854,-73.98384,Entire home/apt,300,2,24,0.39,1,23 +1143,2396741,Brooklyn,Fort Hamilton,40.61269,-74.03381,Entire home/apt,105,30,3,0.05,1,30 +1144,2400932,Brooklyn,Gowanus,40.67858,-73.98536999999999,Private room,125,31,17,0.2,2,331 +1145,2407024,Brooklyn,Williamsburg,40.70821,-73.95352,Entire home/apt,225,7,13,0.15,2,0 +1146,619154,Brooklyn,Sunset Park,40.66158,-73.98954,Entire home/apt,92,2,58,0.67,1,0 +1147,864370,Manhattan,East Village,40.72457,-73.98453,Entire home/apt,185,2,62,0.74,1,0 +1148,2420670,Brooklyn,Williamsburg,40.71689,-73.95706,Entire home/apt,226,3,203,2.85,1,38 +1149,1027283,Brooklyn,Sunset Park,40.662209999999995,-73.99743000000001,Private room,50,2,33,0.39,1,20 +1150,2423067,Manhattan,East Harlem,40.79313,-73.93493000000001,Private room,80,3,47,0.66,2,0 +1151,2423401,Brooklyn,Carroll Gardens,40.68444,-73.99904000000001,Private room,200,5,0,,1,342 +1152,2424873,Manhattan,Midtown,40.75632,-73.96464,Entire home/apt,99,14,30,0.35,1,317 +1153,2427385,Brooklyn,Park Slope,40.679959999999994,-73.98026999999999,Entire home/apt,68,3,2,0.05,1,0 +1154,2427868,Brooklyn,Prospect Heights,40.67369,-73.96589,Private room,102,2,121,1.6,1,361 +1155,2429432,Brooklyn,Park Slope,40.672109999999996,-73.976,Entire home/apt,220,3,27,0.45,1,68 +1156,1995093,Manhattan,Upper West Side,40.79183,-73.97171999999999,Entire home/apt,199,3,24,0.3,1,0 +1157,2431528,Manhattan,Chinatown,40.71456,-73.99978,Entire home/apt,165,5,22,0.26,1,316 +1158,2436633,Manhattan,Chinatown,40.71668,-73.99073,Entire home/apt,150,2,162,1.92,1,231 +1159,1407251,Brooklyn,Gowanus,40.67862,-73.98561,Entire home/apt,385,1,66,0.76,2,363 +1160,2442340,Brooklyn,Columbia St,40.68721,-74.00147,Private room,75,7,0,,1,0 +1161,1527535,Manhattan,SoHo,40.72162,-74.00414,Entire home/apt,499,2,63,0.76,1,26 +1162,2446219,Queens,East Elmhurst,40.75541,-73.89239,Private room,85,1,219,2.63,2,305 +1163,2389885,Brooklyn,Fort Greene,40.69011,-73.97691,Entire home/apt,160,4,2,0.03,2,34 +1164,2450665,Brooklyn,South Slope,40.66641,-73.98283,Entire home/apt,249,3,12,0.27,1,26 +1165,2455462,Brooklyn,Gowanus,40.67828,-73.99136,Private room,80,2,35,0.41,1,189 +1166,2426779,Brooklyn,Williamsburg,40.71483,-73.96216,Private room,120,1,124,1.46,1,292 +1167,2459648,Bronx,Allerton,40.8687,-73.8524,Private room,35,7,2,0.17,1,90 +1168,2462260,Brooklyn,Brighton Beach,40.5822,-73.96392,Entire home/apt,169,4,63,1.27,1,323 +1169,1336370,Manhattan,East Village,40.726859999999995,-73.9797,Entire home/apt,220,4,162,1.88,1,341 +1170,2206506,Brooklyn,Bedford-Stuyvesant,40.68825,-73.92951,Private room,85,3,103,1.25,2,344 +1171,1386685,Manhattan,Upper West Side,40.78451,-73.97882,Entire home/apt,300,7,0,,1,0 +1172,2471671,Manhattan,Harlem,40.82392,-73.94205,Private room,79,30,185,2.15,1,302 +1173,2472680,Brooklyn,Williamsburg,40.713840000000005,-73.9474,Private room,90,4,219,2.54,1,30 +1174,1490833,Manhattan,Upper West Side,40.7952,-73.9624,Private room,99,1,280,3.51,1,246 +1175,48599,Manhattan,Chelsea,40.73942,-74.00009,Shared room,50,1,61,0.71,2,0 +1176,2478675,Brooklyn,Prospect-Lefferts Gardens,40.65524,-73.95645999999999,Private room,46,1,184,2.14,5,362 +1177,2100968,Brooklyn,South Slope,40.66153,-73.98554,Entire home/apt,325,3,116,1.37,1,203 +1178,2483236,Staten Island,New Springville,40.59274,-74.16178000000001,Private room,68,2,11,0.24,1,88 +1179,2483293,Manhattan,SoHo,40.72701,-74.0011,Entire home/apt,198,3,9,0.1,1,0 +1180,2483766,Brooklyn,Bedford-Stuyvesant,40.68607,-73.95839000000001,Entire home/apt,100,5,4,0.05,1,0 +1181,2484383,Brooklyn,Williamsburg,40.71345,-73.95689,Entire home/apt,175,2,15,0.29,1,64 +1182,2484654,Manhattan,West Village,40.73214,-74.00188,Entire home/apt,130,4,22,0.28,1,77 +1183,471928,Manhattan,Greenwich Village,40.72903,-74.00028,Entire home/apt,180,3,18,0.21,1,0 +1184,2487309,Brooklyn,Prospect Heights,40.67823,-73.97006999999999,Entire home/apt,209,3,56,0.65,1,160 +1185,2487319,Manhattan,Upper West Side,40.79842,-73.96903,Entire home/apt,150,4,2,0.03,1,141 +1186,2356449,Manhattan,Lower East Side,40.72232,-73.98686,Entire home/apt,104,3,57,0.7,1,6 +1187,2490471,Manhattan,East Village,40.724540000000005,-73.97944,Entire home/apt,175,4,13,0.17,1,0 +1188,2490915,Manhattan,Upper East Side,40.77799,-73.95223,Private room,80,1,1,0.01,1,0 +1189,167417,Brooklyn,Bushwick,40.69227,-73.90852,Private room,68,2,37,0.49,1,23 +1190,2267153,Manhattan,East Village,40.7276,-73.98347,Private room,72,5,451,5.26,2,13 +1191,864735,Queens,Astoria,40.75782,-73.92129,Entire home/apt,107,30,24,0.29,8,262 +1192,2349977,Manhattan,East Village,40.72756,-73.97939000000001,Entire home/apt,150,7,19,0.32,1,24 +1193,2001830,Bronx,Morris Heights,40.84937,-73.91328,Private room,45,3,190,2.21,2,329 +1194,1539749,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94724000000001,Private room,49,2,46,0.54,4,301 +1195,2472305,Brooklyn,Flatbush,40.64229,-73.96548,Entire home/apt,349,1,169,2.08,1,344 +1196,2513726,Manhattan,Upper West Side,40.79218,-73.97926,Entire home/apt,185,2,165,1.92,1,259 +1197,2515124,Manhattan,Kips Bay,40.739509999999996,-73.98146,Entire home/apt,145,3,2,0.02,1,0 +1198,2519356,Brooklyn,Williamsburg,40.7139,-73.96553,Entire home/apt,96,3,1,0.07,1,0 +1199,1840766,Brooklyn,Bushwick,40.70753,-73.92048,Entire home/apt,120,5,3,0.04,1,0 +1200,2521848,Manhattan,East Village,40.73044,-73.98683,Entire home/apt,160,1,15,0.18,1,0 +1201,2521513,Brooklyn,Brooklyn Heights,40.69964,-73.99299,Entire home/apt,800,3,60,0.7,1,67 +1202,2522854,Brooklyn,Crown Heights,40.67709,-73.95237,Entire home/apt,349,2,320,3.85,1,260 +1203,2396295,Queens,Long Island City,40.752959999999995,-73.93715999999999,Entire home/apt,350,2,182,2.2,1,272 +1204,2528671,Brooklyn,Prospect Heights,40.677170000000004,-73.96915,Entire home/apt,125,30,1,0.01,1,341 +1205,2530670,Brooklyn,Boerum Hill,40.68586,-73.9809,Entire home/apt,350,2,134,1.56,1,56 +1206,2096690,Brooklyn,Bedford-Stuyvesant,40.68543,-73.93838000000001,Entire home/apt,150,10,10,0.17,2,185 +1207,2533991,Brooklyn,Bushwick,40.69849,-73.92678000000001,Entire home/apt,180,30,0,,1,352 +1208,2538544,Manhattan,Chelsea,40.74348,-73.9998,Entire home/apt,200,1,60,0.78,1,260 +1209,2542888,Brooklyn,Fort Greene,40.68679,-73.97378,Entire home/apt,99,30,5,0.06,1,242 +1210,2542895,Manhattan,Chelsea,40.750859999999996,-73.99776,Entire home/apt,130,5,9,0.1,1,0 +1211,2543761,Brooklyn,Williamsburg,40.71915,-73.95581,Entire home/apt,150,3,1,0.01,1,0 +1212,696306,Brooklyn,Kensington,40.64625,-73.97932,Entire home/apt,90,10,33,0.39,1,269 +1213,2438262,Brooklyn,Williamsburg,40.71577,-73.94084000000001,Private room,95,1,10,0.14,1,0 +1214,78742,Queens,Ridgewood,40.70278,-73.90153000000001,Entire home/apt,70,30,3,0.04,1,0 +1215,1497427,Manhattan,Upper East Side,40.77108,-73.95966999999999,Private room,82,3,10,0.13,2,251 +1216,2155917,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94627,Entire home/apt,250,30,62,0.73,3,292 +1217,2155832,Manhattan,Harlem,40.82823,-73.94691,Entire home/apt,90,4,266,3.17,1,150 +1218,1366310,Queens,Woodside,40.74377,-73.91225,Private room,75,2,251,2.92,2,317 +1219,2562882,Brooklyn,Clinton Hill,40.694320000000005,-73.96481,Entire home/apt,160,14,3,0.04,1,0 +1220,2563132,Manhattan,Harlem,40.827490000000004,-73.9382,Private room,115,7,8,0.09,1,178 +1221,2440317,Brooklyn,South Slope,40.667770000000004,-73.98366999999999,Private room,150,4,5,0.06,1,0 +1222,1720619,Brooklyn,Williamsburg,40.71423,-73.95305,Private room,89,4,160,1.92,1,23 +1223,2389494,Queens,Rego Park,40.72719,-73.86166,Entire home/apt,69,5,5,0.1,1,4 +1224,1413546,Manhattan,Chelsea,40.74341,-73.99298,Private room,170,2,183,2.19,2,254 +1225,2572253,Brooklyn,South Slope,40.660509999999995,-73.98495,Entire home/apt,375,5,19,0.23,1,43 +1226,62508,Manhattan,East Village,40.72915,-73.98019000000001,Entire home/apt,118,3,141,1.66,1,13 +1227,184883,Manhattan,Chelsea,40.74767,-74.01061,Entire home/apt,135,6,42,0.49,1,170 +1228,2556498,Bronx,Concourse,40.82822,-73.92439,Entire home/apt,250,3,119,1.41,1,339 +1229,787204,Brooklyn,Greenpoint,40.73067,-73.955,Entire home/apt,200,7,20,0.24,1,365 +1230,1104814,Manhattan,Nolita,40.72246,-73.99552,Entire home/apt,150,5,5,0.06,1,0 +1231,2582890,Manhattan,East Harlem,40.80762,-73.94017,Private room,50,2,16,0.62,1,60 +1232,2576980,Brooklyn,Prospect Heights,40.677859999999995,-73.97166,Private room,60,2,0,,1,0 +1233,2492286,Manhattan,Harlem,40.807190000000006,-73.94253,Entire home/apt,100,2,24,0.29,1,0 +1234,2589521,Manhattan,Flatiron District,40.74129,-73.98374,Entire home/apt,265,3,26,0.32,1,341 +1235,2205455,Manhattan,Upper East Side,40.777609999999996,-73.94606,Private room,90,30,3,0.04,1,128 +1236,2590219,Manhattan,Upper East Side,40.76413,-73.96226999999999,Entire home/apt,175,2,0,,1,0 +1237,17985,Brooklyn,Sunset Park,40.661190000000005,-73.98822,Private room,36,10,5,0.07,2,44 +1238,2604437,Manhattan,Upper West Side,40.783390000000004,-73.98003,Entire home/apt,250,4,2,0.03,2,0 +1239,2605064,Manhattan,Harlem,40.806540000000005,-73.95019,Entire home/apt,220,3,194,2.42,1,338 +1240,263510,Manhattan,Upper West Side,40.78111,-73.97739,Private room,93,14,88,1.03,1,176 +1241,1816331,Brooklyn,Crown Heights,40.67147,-73.94979000000001,Entire home/apt,275,5,2,0.1,1,357 +1242,1787284,Queens,Astoria,40.755320000000005,-73.91603,Private room,109,30,304,3.7,1,0 +1243,2495836,Brooklyn,Williamsburg,40.70762,-73.96764,Entire home/apt,450,2,11,0.13,1,0 +1244,2609535,Manhattan,Greenwich Village,40.7311,-73.99913000000001,Entire home/apt,165,30,19,0.23,1,259 +1245,1445298,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.96294,Entire home/apt,80,7,23,0.27,1,20 +1246,683230,Manhattan,Greenwich Village,40.731759999999994,-73.99895,Private room,295,5,103,1.25,3,350 +1247,2617850,Brooklyn,Williamsburg,40.71606,-73.95526,Entire home/apt,280,7,82,0.98,1,41 +1248,2620162,Manhattan,Nolita,40.72184,-73.9944,Entire home/apt,300,30,92,1.09,1,106 +1249,2027013,Manhattan,East Village,40.72829,-73.98156,Entire home/apt,99,30,66,0.77,6,0 +1250,367815,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95676999999999,Entire home/apt,175,3,18,0.35,2,0 +1251,2624738,Manhattan,Chelsea,40.74403,-73.99580999999999,Entire home/apt,225,4,153,2.03,1,205 +1252,2426404,Manhattan,Chelsea,40.74552,-74.0006,Entire home/apt,230,6,6,0.09,1,0 +1253,598770,Brooklyn,Prospect Heights,40.6744,-73.96558,Private room,90,7,43,0.52,1,38 +1254,2630351,Manhattan,Upper West Side,40.79358,-73.97043000000001,Entire home/apt,102,3,36,0.5,1,21 +1255,2635819,Brooklyn,Bushwick,40.7014,-73.91333,Private room,59,10,19,0.27,1,0 +1256,2644519,Manhattan,East Village,40.729240000000004,-73.98113000000001,Entire home/apt,195,2,160,2.31,1,68 +1257,2645592,Queens,Astoria,40.759190000000004,-73.91835999999999,Entire home/apt,150,3,74,0.87,2,365 +1258,512878,Manhattan,Washington Heights,40.83064,-73.94076,Entire home/apt,170,1,47,0.58,2,17 +1259,2640100,Manhattan,Hell's Kitchen,40.76184,-73.99334,Entire home/apt,217,2,43,0.51,1,0 +1260,2653648,Manhattan,Harlem,40.82445,-73.95243,Entire home/apt,185,1,102,1.19,2,91 +1261,2656413,Manhattan,Little Italy,40.72006,-73.99579,Private room,58,6,18,0.21,1,0 +1262,1879389,Brooklyn,Williamsburg,40.718720000000005,-73.96042,Entire home/apt,189,4,33,0.44,2,1 +1263,2027013,Manhattan,East Village,40.72855,-73.98265,Entire home/apt,88,30,60,0.72,6,0 +1264,1846051,Manhattan,Hell's Kitchen,40.763040000000004,-73.9888,Entire home/apt,195,3,22,1.61,2,59 +1265,865264,Queens,Ridgewood,40.70878,-73.91727,Entire home/apt,110,5,107,1.25,1,276 +1266,2674637,Brooklyn,Sunset Park,40.64437,-74.00304,Entire home/apt,120,14,0,,1,0 +1267,534328,Manhattan,Greenwich Village,40.72987,-74.00081999999999,Private room,79,4,87,1.02,1,30 +1268,2676438,Manhattan,Upper East Side,40.77424,-73.94839,Entire home/apt,110,10,16,0.2,1,0 +1269,746552,Brooklyn,Clinton Hill,40.68752,-73.96688,Private room,200,3,2,0.02,1,365 +1270,1785800,Brooklyn,Prospect-Lefferts Gardens,40.658409999999996,-73.95016,Private room,69,4,19,0.24,3,43 +1271,2680820,Queens,Flushing,40.75578,-73.81948,Private room,55,1,474,5.53,3,332 +1272,2687009,Brooklyn,Brooklyn Heights,40.69271,-73.99365,Entire home/apt,135,4,5,0.06,1,0 +1273,1792568,Manhattan,Financial District,40.705870000000004,-74.01534000000001,Entire home/apt,500,2,63,0.75,1,79 +1274,2693076,Brooklyn,Flatbush,40.64882,-73.9605,Entire home/apt,90,3,0,,1,157 +1275,2694451,Brooklyn,Clinton Hill,40.69073,-73.96762,Entire home/apt,135,3,28,0.4,1,211 +1276,2694253,Brooklyn,Greenpoint,40.72515,-73.95153,Private room,199,1,0,,1,365 +1277,2702563,Manhattan,East Village,40.725640000000006,-73.98252,Entire home/apt,90,2,5,0.09,1,0 +1278,2684478,Manhattan,Upper East Side,40.78024,-73.94813,Entire home/apt,160,4,16,0.2,1,0 +1279,2706505,Brooklyn,Windsor Terrace,40.6599,-73.98279000000001,Private room,65,20,6,0.32,1,311 +1280,2707053,Manhattan,Upper West Side,40.7964,-73.9675,Entire home/apt,210,3,25,0.3,1,347 +1281,2277487,Manhattan,Chelsea,40.74664,-73.99441,Entire home/apt,399,3,15,0.31,1,0 +1282,2712998,Manhattan,Lower East Side,40.71788,-73.98975,Entire home/apt,300,1,45,0.62,1,111 +1283,2715012,Brooklyn,Crown Heights,40.673559999999995,-73.9425,Entire home/apt,185,1,215,2.55,3,348 +1284,2518984,Manhattan,Harlem,40.81757,-73.94709,Entire home/apt,220,3,33,0.51,2,174 +1285,2261381,Brooklyn,Prospect Heights,40.68052,-73.97254000000001,Entire home/apt,121,2,46,0.54,1,0 +1286,567226,Manhattan,Inwood,40.86821,-73.92251999999999,Entire home/apt,120,10,25,0.3,1,129 +1287,2647043,Brooklyn,Park Slope,40.679809999999996,-73.97967,Private room,152,2,23,0.27,1,365 +1288,1267900,Brooklyn,Gowanus,40.68251,-73.98486,Entire home/apt,250,2,57,0.67,1,25 +1289,1925503,Manhattan,East Village,40.72718,-73.9812,Private room,99,6,80,1.01,1,0 +1290,2740824,Brooklyn,Greenpoint,40.72363,-73.9457,Entire home/apt,104,11,22,0.26,1,0 +1291,2750389,Brooklyn,Greenpoint,40.72697,-73.93921,Entire home/apt,120,5,40,0.54,1,0 +1292,2753256,Manhattan,East Village,40.72274,-73.97934000000001,Entire home/apt,295,3,85,1.02,1,261 +1293,2755668,Brooklyn,Carroll Gardens,40.68343,-73.99189,Entire home/apt,90,4,1,0.01,1,0 +1294,2770788,Manhattan,West Village,40.73514,-73.99954,Entire home/apt,197,14,29,0.36,1,0 +1295,2770985,Manhattan,Greenwich Village,40.734809999999996,-73.99845,Entire home/apt,145,5,1,0.01,1,0 +1296,2773585,Manhattan,Upper West Side,40.80053,-73.96651,Entire home/apt,90,30,23,0.27,1,0 +1297,2378357,Manhattan,Chelsea,40.739709999999995,-74.00220999999999,Private room,125,2,42,0.5,1,172 +1298,2775674,Manhattan,Hell's Kitchen,40.757670000000005,-73.99034,Entire home/apt,190,1,195,2.83,1,69 +1299,2777672,Manhattan,Upper West Side,40.80165,-73.96287,Shared room,76,2,158,1.91,3,324 +1300,532819,Brooklyn,Bedford-Stuyvesant,40.683279999999996,-73.9379,Private room,50,2,1,0.03,1,0 +1301,2786764,Manhattan,East Village,40.728190000000005,-73.97933,Private room,107,1,115,1.4,1,85 +1302,2788488,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93875,Entire home/apt,80,4,42,0.49,1,245 +1303,2790324,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94004,Entire home/apt,150,5,3,0.04,1,0 +1304,2590864,Brooklyn,Bushwick,40.70779,-73.92129,Entire home/apt,110,90,32,0.4,1,330 +1305,2798644,Brooklyn,Bushwick,40.702020000000005,-73.92402,Entire home/apt,115,370,6,0.09,1,365 +1306,627217,Manhattan,East Village,40.72603,-73.98751,Entire home/apt,151,2,214,2.53,3,256 +1307,2805772,Brooklyn,Fort Greene,40.68522,-73.97771,Entire home/apt,130,2,11,0.13,1,0 +1308,2806561,Brooklyn,Crown Heights,40.67391,-73.94039000000001,Entire home/apt,180,2,221,2.6,1,264 +1309,1141935,Brooklyn,Crown Heights,40.67436,-73.94807,Private room,95,1,123,1.47,3,359 +1310,2270624,Manhattan,Harlem,40.81199,-73.95116,Private room,79,1,132,1.56,2,335 +1311,2822805,Brooklyn,Bedford-Stuyvesant,40.68586,-73.9501,Private room,60,30,41,0.65,8,245 +1312,38513,Brooklyn,East Flatbush,40.65204,-73.94938,Entire home/apt,133,4,104,1.32,1,338 +1313,1385157,Manhattan,Upper West Side,40.782920000000004,-73.97438000000001,Entire home/apt,120,30,18,0.22,5,337 +1314,2828813,Brooklyn,Williamsburg,40.716029999999996,-73.95665,Private room,120,2,143,4.14,1,102 +1315,2834840,Manhattan,Harlem,40.824459999999995,-73.95274,Private room,700,28,4,0.05,1,22 +1316,426725,Manhattan,Hell's Kitchen,40.7641,-73.98803000000001,Entire home/apt,165,3,25,0.3,1,0 +1317,2837527,Manhattan,Upper West Side,40.79785,-73.97202,Entire home/apt,165,4,4,0.05,1,0 +1318,2839267,Queens,Ditmars Steinway,40.76961,-73.90451,Entire home/apt,54,45,198,2.33,1,80 +1319,2841175,Manhattan,East Village,40.730470000000004,-73.98229,Entire home/apt,100,5,6,0.07,1,0 +1320,2841374,Brooklyn,Crown Heights,40.6772,-73.9506,Private room,80,7,10,0.48,1,365 +1321,1449904,Manhattan,Chinatown,40.71328,-73.99315,Private room,96,19,30,0.36,1,165 +1322,2847655,Brooklyn,Park Slope,40.667320000000004,-73.98233,Entire home/apt,159,2,4,0.08,1,0 +1323,2851409,Brooklyn,South Slope,40.66488,-73.98079,Private room,50,2,201,2.42,1,54 +1324,2311767,Manhattan,East Harlem,40.78837,-73.94628,Private room,75,2,51,0.61,1,77 +1325,2775107,Brooklyn,Clinton Hill,40.682320000000004,-73.96500999999999,Entire home/apt,155,30,63,0.75,1,249 +1326,2861848,Brooklyn,Greenpoint,40.73252,-73.95496,Private room,150,2,28,0.59,1,72 +1327,2861854,Queens,Arverne,40.59783,-73.80158,Entire home/apt,92,1,55,0.66,1,8 +1328,2712129,Brooklyn,Greenpoint,40.72437,-73.94847,Private room,75,5,1,0.13,1,0 +1329,733370,Queens,Astoria,40.77115,-73.92275,Private room,69,40,23,0.27,1,207 +1330,2874587,Brooklyn,Carroll Gardens,40.67859,-73.99444,Entire home/apt,115,4,61,0.72,1,15 +1331,2423042,Manhattan,East Village,40.723040000000005,-73.97923,Entire home/apt,120,60,5,0.06,1,0 +1332,2878358,Manhattan,Hell's Kitchen,40.77032,-73.99493000000001,Private room,120,2,67,0.8,1,179 +1333,911596,Manhattan,Greenwich Village,40.72692,-73.99948,Entire home/apt,215,30,110,1.3,1,332 +1334,2886652,Brooklyn,Crown Heights,40.6806,-73.96316999999999,Entire home/apt,195,2,160,1.95,1,255 +1335,2888900,Brooklyn,Greenpoint,40.729490000000006,-73.95493,Entire home/apt,175,3,102,1.23,2,215 +1336,311286,Brooklyn,Crown Heights,40.67649,-73.9435,Private room,80,2,5,0.08,4,311 +1337,2897835,Brooklyn,Williamsburg,40.71099,-73.95217,Private room,48,5,1,0.02,1,0 +1338,2897329,Manhattan,West Village,40.73041,-74.00326,Entire home/apt,200,7,34,0.41,1,217 +1339,717562,Brooklyn,Williamsburg,40.7197,-73.95741,Entire home/apt,275,30,6,0.07,1,363 +1340,807642,Brooklyn,Gravesend,40.60399,-73.97091999999999,Private room,72,1,61,0.81,2,335 +1341,2899508,Manhattan,SoHo,40.72372,-74.00277,Entire home/apt,199,60,11,0.13,1,281 +1342,2407024,Brooklyn,Williamsburg,40.70989,-73.95347,Entire home/apt,250,30,1,0.01,2,250 +1343,1345769,Manhattan,Harlem,40.807970000000005,-73.9489,Private room,75,5,46,0.6,1,343 +1344,1523018,Manhattan,SoHo,40.72466,-73.99632,Private room,125,1,132,1.75,1,365 +1345,2919467,Manhattan,Tribeca,40.71552,-74.00749,Private room,229,1,62,0.73,1,36 +1346,2920855,Brooklyn,Brooklyn Heights,40.69464,-73.99885,Entire home/apt,175,10,8,0.17,1,0 +1347,2932668,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95824,Entire home/apt,140,3,16,0.27,1,0 +1348,2926404,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95809,Private room,54,2,19,0.23,1,220 +1349,2926593,Queens,Ridgewood,40.70001,-73.90698,Entire home/apt,75,2,17,0.2,1,0 +1350,2927446,Manhattan,Upper East Side,40.77247,-73.94665,Entire home/apt,110,7,12,0.14,1,0 +1351,2929585,Manhattan,Murray Hill,40.75128,-73.97658,Entire home/apt,165,1,321,3.93,1,185 +1352,2929756,Manhattan,Inwood,40.86345,-73.92039,Private room,55,4,160,1.89,2,79 +1353,2929756,Manhattan,Inwood,40.862840000000006,-73.91955,Private room,55,4,142,1.68,2,179 +1354,2934010,Manhattan,West Village,40.73413,-74.00465,Entire home/apt,300,1,5,0.06,1,0 +1355,2937468,Manhattan,Chelsea,40.74026,-74.00079000000001,Entire home/apt,275,6,61,0.73,1,69 +1356,2938302,Manhattan,Greenwich Village,40.73474,-73.99526999999999,Entire home/apt,331,7,0,,1,189 +1357,898980,Brooklyn,Williamsburg,40.713159999999995,-73.94532,Private room,77,3,5,0.08,1,0 +1358,2943157,Manhattan,Washington Heights,40.8347,-73.94856999999999,Private room,60,30,36,0.44,1,365 +1359,2648088,Brooklyn,Brooklyn Heights,40.69082,-73.99280999999999,Entire home/apt,129,1,109,1.51,1,261 +1360,2954200,Queens,Sunnyside,40.741240000000005,-73.92273,Private room,100,3,28,0.38,1,188 +1361,2954680,Brooklyn,Park Slope,40.67465,-73.97975,Entire home/apt,120,4,14,0.16,1,0 +1362,2960326,Brooklyn,Williamsburg,40.72203,-73.95376,Entire home/apt,500,2,250,2.99,1,307 +1363,2965915,Manhattan,Upper West Side,40.7839,-73.97896999999999,Entire home/apt,179,4,12,0.25,1,11 +1364,2966937,Brooklyn,Clinton Hill,40.68533,-73.96808,Entire home/apt,149,2,20,0.24,1,4 +1365,1036617,Brooklyn,Williamsburg,40.70397,-73.95536,Entire home/apt,180,14,27,0.36,1,312 +1366,210746,Brooklyn,Prospect Heights,40.68084,-73.97429,Private room,100,2,73,0.89,3,257 +1367,2973437,Brooklyn,Boerum Hill,40.68379,-73.98313,Entire home/apt,180,3,2,0.05,1,0 +1368,2640845,Brooklyn,Greenpoint,40.72188,-73.94963,Entire home/apt,128,5,38,0.45,1,20 +1369,2233907,Brooklyn,Prospect Heights,40.679629999999996,-73.97237,Entire home/apt,260,14,5,0.07,1,0 +1370,2979607,Queens,Cambria Heights,40.69249,-73.73382,Private room,55,3,0,,2,365 +1371,2316922,Brooklyn,Park Slope,40.6686,-73.98342,Private room,65,3,31,0.5,1,22 +1372,177724,Manhattan,Upper East Side,40.76985,-73.95815,Entire home/apt,200,2,17,0.21,1,0 +1373,3002643,Manhattan,Hell's Kitchen,40.762570000000004,-73.99303,Entire home/apt,249,3,35,0.42,1,38 +1374,3011547,Brooklyn,Gowanus,40.68466,-73.98871,Entire home/apt,300,30,63,0.77,3,365 +1375,2874433,Manhattan,East Harlem,40.79183,-73.94743000000001,Entire home/apt,120,7,149,1.78,1,16 +1376,893148,Manhattan,Upper West Side,40.77471,-73.98261,Private room,120,20,107,1.29,1,144 +1377,3019795,Brooklyn,Prospect Heights,40.67293,-73.96399,Entire home/apt,125,5,7,0.08,1,0 +1378,3647,Queens,Elmhurst,40.73587,-73.88279,Entire home/apt,99,3,48,0.58,2,301 +1379,3024659,Brooklyn,Bushwick,40.69945,-73.92148,Entire home/apt,115,3,54,0.65,1,3 +1380,1144721,Brooklyn,Bushwick,40.7072,-73.92245,Entire home/apt,275,31,17,0.2,1,364 +1381,2992042,Brooklyn,Gowanus,40.673759999999994,-73.99648,Entire home/apt,198,2,103,1.62,1,299 +1382,3029414,Manhattan,East Village,40.7256,-73.97856999999999,Entire home/apt,199,3,243,2.95,1,142 +1383,2979607,Queens,Cambria Heights,40.6916,-73.73323,Private room,45,3,0,,2,365 +1384,3039868,Manhattan,Upper West Side,40.791959999999996,-73.97065,Private room,125,3,93,1.17,1,58 +1385,2518984,Manhattan,Harlem,40.81726,-73.94583,Entire home/apt,80,2,54,0.74,2,193 +1386,1475015,Manhattan,Tribeca,40.71655,-74.01171,Entire home/apt,130,30,2,0.03,52,116 +1387,2712353,Brooklyn,Cypress Hills,40.68375,-73.87065,Private room,35,28,88,1.05,4,326 +1388,3047107,Brooklyn,Williamsburg,40.709579999999995,-73.93578000000001,Entire home/apt,90,30,15,0.18,1,0 +1389,10889,Brooklyn,Williamsburg,40.720909999999996,-73.96133,Entire home/apt,250,3,25,0.3,2,188 +1390,3065891,Brooklyn,Crown Heights,40.66959,-73.95718000000001,Entire home/apt,115,3,0,,1,0 +1391,92451,Brooklyn,Prospect Heights,40.680659999999996,-73.96644,Entire home/apt,200,4,11,0.13,1,0 +1392,2272846,Brooklyn,Williamsburg,40.71447,-73.95237,Private room,64,30,17,0.26,2,230 +1393,3069794,Brooklyn,Bedford-Stuyvesant,40.68372,-73.9406,Private room,65,3,5,0.06,2,341 +1394,3073291,Queens,Astoria,40.76408,-73.92461,Entire home/apt,175,14,0,,1,0 +1395,2957827,Manhattan,Hell's Kitchen,40.76876,-73.99473,Private room,90,2,28,0.34,1,358 +1396,1563352,Brooklyn,Crown Heights,40.66839,-73.96001,Private room,85,2,0,,1,0 +1397,3091205,Manhattan,Midtown,40.74519,-73.98338000000001,Entire home/apt,150,30,0,,1,352 +1398,3050955,Manhattan,Kips Bay,40.74285,-73.97986,Entire home/apt,50,30,8,0.11,1,91 +1399,3097033,Manhattan,Harlem,40.80352,-73.95127,Entire home/apt,136,2,15,0.18,2,6 +1400,1974637,Brooklyn,Williamsburg,40.71455,-73.93739000000001,Entire home/apt,400,3,2,0.17,1,83 +1401,3102648,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95951,Entire home/apt,125,4,40,0.57,1,29 +1402,3114411,Manhattan,East Village,40.7324,-73.98577,Entire home/apt,165,7,57,0.68,1,32 +1403,585879,Brooklyn,Williamsburg,40.71402,-73.93989,Entire home/apt,180,3,0,,1,0 +1404,3119145,Manhattan,Harlem,40.80338,-73.95594,Entire home/apt,105,14,6,0.07,1,0 +1405,3120156,Manhattan,Hell's Kitchen,40.7592,-73.99133,Entire home/apt,148,4,57,0.69,1,0 +1406,2397437,Brooklyn,Fort Greene,40.68935,-73.9695,Entire home/apt,120,3,22,0.27,1,189 +1407,3129020,Manhattan,Gramercy,40.733259999999994,-73.98245,Entire home/apt,99,8,6,0.07,1,0 +1408,834185,Manhattan,East Village,40.73082,-73.98501999999999,Entire home/apt,175,1,17,0.2,1,0 +1409,155163,Brooklyn,Williamsburg,40.71382,-73.94164,Private room,85,2,14,0.19,1,0 +1410,3130534,Manhattan,Upper East Side,40.77975,-73.94977,Private room,80,1,160,1.9,1,319 +1411,3129017,Brooklyn,Bedford-Stuyvesant,40.68517,-73.95563,Entire home/apt,119,2,85,1.02,1,338 +1412,1568517,Queens,Long Island City,40.74609,-73.94691,Private room,89,1,165,1.99,2,50 +1413,2354167,Manhattan,SoHo,40.72625,-74.0018,Shared room,195,2,13,0.16,1,0 +1414,836168,Manhattan,Upper West Side,40.77428,-73.98594,Entire home/apt,1000,30,44,0.53,11,364 +1415,3158530,Manhattan,Greenwich Village,40.728120000000004,-74.00191,Entire home/apt,225,4,51,0.62,1,172 +1416,1215949,Brooklyn,Williamsburg,40.716570000000004,-73.96264000000001,Entire home/apt,165,2,179,2.2,1,0 +1417,3033622,Brooklyn,Windsor Terrace,40.65193,-73.97301,Private room,60,2,206,2.49,2,86 +1418,8425,Manhattan,West Village,40.73485,-74.00636999999999,Entire home/apt,165,5,4,0.05,1,87 +1419,1363434,Brooklyn,Bushwick,40.70074,-73.92333,Private room,80,14,2,0.11,1,67 +1420,3179968,Queens,Sunnyside,40.73607,-73.92439,Private room,52,3,1,0.08,1,0 +1421,3181665,Manhattan,Nolita,40.72095,-73.99401,Entire home/apt,160,4,2,0.02,1,0 +1422,1182294,Brooklyn,Crown Heights,40.676390000000005,-73.96003,Entire home/apt,110,5,3,0.04,1,15 +1423,1583594,Manhattan,Upper West Side,40.79913,-73.96056999999999,Private room,60,2,19,0.23,1,0 +1424,1483081,Staten Island,Tottenville,40.50868,-74.23986,Entire home/apt,299,3,59,0.82,1,245 +1425,3194190,Manhattan,East Village,40.723890000000004,-73.98934,Entire home/apt,200,6,1,0.16,1,128 +1426,3198479,Manhattan,West Village,40.73727,-74.00213000000001,Entire home/apt,700,5,1,0.01,1,365 +1427,3199395,Brooklyn,Cobble Hill,40.686479999999996,-73.99257,Private room,120,3,254,3.05,1,271 +1428,3201337,Manhattan,East Harlem,40.795120000000004,-73.93182,Private room,65,2,129,1.56,2,32 +1429,3206521,Manhattan,Hell's Kitchen,40.76206,-73.9998,Entire home/apt,263,30,11,0.13,2,33 +1430,579412,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95002,Entire home/apt,120,20,32,0.68,1,149 +1431,81335,Manhattan,Upper West Side,40.78455,-73.97352,Entire home/apt,150,5,8,0.12,3,0 +1432,400262,Manhattan,Inwood,40.871140000000004,-73.91790999999999,Private room,60,2,261,3.16,1,156 +1433,3225114,Brooklyn,Williamsburg,40.718270000000004,-73.96259,Private room,350,2,3,0.04,1,365 +1434,15523,Staten Island,Tompkinsville,40.63358,-74.0833,Private room,71,2,23,0.33,2,352 +1435,195137,Manhattan,Harlem,40.82312,-73.94971,Entire home/apt,433,5,108,1.44,2,318 +1436,1223359,Manhattan,Harlem,40.8224,-73.94358000000001,Private room,79,3,9,0.11,1,329 +1437,2494666,Manhattan,Hell's Kitchen,40.76376,-73.99161,Private room,140,2,248,2.99,1,0 +1438,3233986,Queens,Astoria,40.75703,-73.91666,Private room,61,4,107,1.29,2,335 +1439,1740784,Manhattan,Midtown,40.74648,-73.98459,Private room,100,3,41,0.52,1,0 +1440,3235547,Manhattan,Nolita,40.72294,-73.99388,Entire home/apt,250,4,43,0.52,1,347 +1441,352230,Manhattan,Harlem,40.82732,-73.95111999999999,Private room,145,3,39,0.47,1,44 +1442,147388,Brooklyn,Bedford-Stuyvesant,40.6951,-73.95605,Shared room,45,4,31,0.37,1,0 +1443,415660,Brooklyn,Williamsburg,40.712559999999996,-73.96625999999999,Private room,73,6,6,0.07,2,310 +1444,3245898,Brooklyn,Prospect Heights,40.6795,-73.9685,Entire home/apt,150,3,18,0.26,1,68 +1445,3245431,Manhattan,NoHo,40.7256,-73.99445,Entire home/apt,234,20,29,0.37,1,302 +1446,3247050,Manhattan,East Village,40.73045,-73.98541,Entire home/apt,150,1,11,0.13,1,0 +1447,672510,Manhattan,Gramercy,40.736999999999995,-73.98199,Private room,65,4,161,1.92,1,182 +1448,62583,Brooklyn,Williamsburg,40.712270000000004,-73.96776,Entire home/apt,195,1,39,0.47,1,270 +1449,3260084,Manhattan,Chelsea,40.75164,-73.99425,Entire home/apt,135,365,0,,1,365 +1450,3262771,Brooklyn,Crown Heights,40.671890000000005,-73.93499,Entire home/apt,90,7,2,0.03,1,0 +1451,3272526,Manhattan,SoHo,40.72381,-73.99684,Entire home/apt,595,5,59,0.77,1,169 +1452,468752,Manhattan,Gramercy,40.73337,-73.984,Private room,109,1,323,3.89,1,276 +1453,3274376,Brooklyn,Clinton Hill,40.683040000000005,-73.96348,Entire home/apt,200,3,56,0.96,1,365 +1454,1475015,Manhattan,Midtown,40.75743,-73.96939,Entire home/apt,90,30,3,0.05,52,358 +1455,1475015,Manhattan,Kips Bay,40.7419,-73.9816,Entire home/apt,100,30,2,0.04,52,342 +1456,1475015,Manhattan,Hell's Kitchen,40.76758,-73.98722,Entire home/apt,85,30,2,0.04,52,223 +1457,1475015,Manhattan,Kips Bay,40.741890000000005,-73.97833,Entire home/apt,87,30,3,0.05,52,363 +1458,1475015,Manhattan,Upper West Side,40.76934,-73.98464,Entire home/apt,95,30,1,0.01,52,365 +1459,1242765,Manhattan,Upper West Side,40.78363,-73.97797,Entire home/apt,349,3,58,0.7,1,341 +1460,3291022,Manhattan,East Village,40.721709999999995,-73.98334,Entire home/apt,99,3,10,0.14,1,0 +1461,3293368,Manhattan,Hell's Kitchen,40.768029999999996,-73.98767,Entire home/apt,160,2,83,1.01,1,105 +1462,3298062,Manhattan,Chinatown,40.71695,-73.99031,Entire home/apt,149,4,12,0.14,1,203 +1463,326329,Brooklyn,Crown Heights,40.675740000000005,-73.95434,Entire home/apt,60,3,1,0.01,1,0 +1464,3301845,Manhattan,Midtown,40.75663,-73.96681,Entire home/apt,285,7,10,3.53,1,0 +1465,3180741,Brooklyn,Kensington,40.64573,-73.98013,Private room,72,1,48,0.59,1,312 +1466,159780,Manhattan,West Village,40.74004,-74.00426,Entire home/apt,150,16,5,0.06,1,339 +1467,414627,Brooklyn,Columbia St,40.688629999999996,-74.00180999999999,Entire home/apt,200,3,15,0.18,1,0 +1468,3312204,Manhattan,Upper East Side,40.7779,-73.95246,Private room,79,1,347,4.24,2,247 +1469,3315563,Manhattan,Upper West Side,40.781940000000006,-73.98248000000001,Entire home/apt,197,1,108,1.31,2,269 +1470,3317183,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95375,Entire home/apt,75,3,163,1.96,2,218 +1471,3319410,Manhattan,Gramercy,40.733540000000005,-73.98593000000001,Entire home/apt,127,3,182,2.3,1,264 +1472,3320650,Manhattan,East Harlem,40.8014,-73.94360999999999,Private room,110,1,37,0.45,1,365 +1473,3323929,Queens,Ridgewood,40.699220000000004,-73.90026999999999,Private room,69,1,30,0.4,1,0 +1474,1648054,Brooklyn,Williamsburg,40.70653,-73.94421,Private room,100,60,3,0.04,1,365 +1475,3166753,Manhattan,Hell's Kitchen,40.76287,-73.9957,Entire home/apt,99,3,46,0.56,1,31 +1476,270064,Brooklyn,Williamsburg,40.702490000000004,-73.9488,Entire home/apt,139,2,211,2.57,1,19 +1477,3330459,Manhattan,Upper West Side,40.78754,-73.96989,Private room,113,1,93,1.12,1,2 +1478,3341426,Manhattan,Chelsea,40.741,-73.99956999999999,Entire home/apt,250,2,10,0.13,1,0 +1479,3351317,Manhattan,Kips Bay,40.74027,-73.98061,Entire home/apt,295,4,72,1.02,1,122 +1480,836168,Manhattan,Upper West Side,40.77516,-73.98573,Entire home/apt,2000,30,59,0.71,11,364 +1481,1139222,Manhattan,Hell's Kitchen,40.7589,-73.99015,Entire home/apt,220,2,18,0.24,1,0 +1482,2490963,Manhattan,East Village,40.727709999999995,-73.98172,Private room,75,5,6,0.07,1,0 +1483,1486465,Brooklyn,Williamsburg,40.71157,-73.9636,Entire home/apt,100,31,15,0.18,1,223 +1484,3370705,Brooklyn,Williamsburg,40.71112,-73.96338,Entire home/apt,199,4,78,1.26,1,65 +1485,3376141,Manhattan,Chelsea,40.74272,-74.00309,Entire home/apt,200,3,17,0.21,1,5 +1486,3377231,Brooklyn,Flatbush,40.64895,-73.95758000000001,Entire home/apt,140,4,15,0.18,1,365 +1487,3383354,Manhattan,Inwood,40.86186,-73.92701,Private room,50,7,1,0.02,1,0 +1488,3363720,Brooklyn,Bushwick,40.68888,-73.91911,Private room,45,5,69,0.89,3,223 +1489,2400932,Brooklyn,Gowanus,40.67947,-73.98458000000001,Entire home/apt,109,31,114,1.38,2,110 +1490,3392287,Manhattan,East Harlem,40.79591,-73.94801,Private room,108,3,161,1.98,2,24 +1491,3363720,Brooklyn,Bushwick,40.68796,-73.91906,Private room,42,5,70,0.88,3,236 +1492,3403890,Brooklyn,Crown Heights,40.67138,-73.95577,Private room,70,3,0,,1,0 +1493,1709717,Manhattan,Upper East Side,40.77382,-73.95088,Entire home/apt,141,2,46,0.57,1,346 +1494,3411621,Brooklyn,Fort Greene,40.68418,-73.96925999999999,Entire home/apt,355,5,19,0.24,1,301 +1495,3317183,Brooklyn,Bedford-Stuyvesant,40.68773,-73.95631,Entire home/apt,80,3,162,1.97,2,249 +1496,2219255,Brooklyn,Canarsie,40.62764,-73.90086,Private room,250,2,70,0.85,3,0 +1497,3425965,Queens,Ridgewood,40.707190000000004,-73.89631999999999,Private room,75,14,11,0.15,1,332 +1498,3432742,Manhattan,West Village,40.734559999999995,-74.00347,Private room,88,2,2,0.05,1,348 +1499,1465539,Manhattan,Kips Bay,40.741659999999996,-73.97811,Private room,65,5,39,0.55,1,318 +1500,27848,Queens,Jamaica,40.671659999999996,-73.76566,Private room,58,2,56,0.67,2,365 +1501,3458785,Queens,Ditmars Steinway,40.77987,-73.91565,Entire home/apt,75,3,1,0.01,1,0 +1502,3404680,Queens,Astoria,40.77329,-73.92832,Private room,100,2,35,0.42,1,144 +1503,3462232,Manhattan,Lower East Side,40.7195,-73.99416,Private room,167,5,32,0.39,1,341 +1504,2675998,Queens,Ridgewood,40.708659999999995,-73.91537,Private room,65,2,1,0.05,2,0 +1505,3467798,Manhattan,Harlem,40.80829,-73.9426,Entire home/apt,125,21,12,0.15,2,267 +1506,2777672,Manhattan,Upper West Side,40.801140000000004,-73.96378,Private room,95,2,211,2.54,3,126 +1507,3375455,Staten Island,Mariners Harbor,40.62879,-74.16062,Private room,54,2,48,0.59,1,232 +1508,3475005,Brooklyn,Flatlands,40.61676,-73.92551999999999,Entire home/apt,89,2,219,2.63,2,319 +1509,3392287,Manhattan,East Harlem,40.79417,-73.95101,Private room,92,3,218,2.63,2,12 +1510,3480879,Manhattan,Chelsea,40.75286,-74.00161999999999,Entire home/apt,199,6,40,0.5,1,0 +1511,1397883,Manhattan,West Village,40.734770000000005,-74.00275,Entire home/apt,179,14,37,0.46,1,284 +1512,1229984,Queens,Long Island City,40.7453,-73.95294,Private room,65,20,28,0.34,3,188 +1513,3447309,Manhattan,Harlem,40.80314,-73.95768000000001,Private room,55,3,66,0.8,2,13 +1514,3491890,Manhattan,Murray Hill,40.74888,-73.97828,Entire home/apt,129,30,43,0.67,6,256 +1515,3491890,Manhattan,Murray Hill,40.748509999999996,-73.97796,Entire home/apt,134,30,9,0.11,6,313 +1516,1360296,Brooklyn,East New York,40.67635,-73.89124,Private room,35,3,13,0.16,1,2 +1517,3502638,Manhattan,Upper East Side,40.78002,-73.95211,Private room,250,1,60,0.93,1,148 +1518,62855,Brooklyn,Clinton Hill,40.69445,-73.96401,Entire home/apt,249,4,19,0.23,1,362 +1519,2446219,Queens,East Elmhurst,40.75772,-73.8953,Private room,62,1,296,3.92,2,234 +1520,475916,Manhattan,Upper West Side,40.80373,-73.9679,Private room,119,1,96,1.16,1,0 +1521,3540041,Brooklyn,South Slope,40.664809999999996,-73.98366999999999,Entire home/apt,179,2,77,0.97,1,0 +1522,66329,Brooklyn,Fort Greene,40.68757,-73.97469,Entire home/apt,220,1,115,1.4,2,96 +1523,743742,Brooklyn,Williamsburg,40.7056,-73.94202,Entire home/apt,198,1,294,3.59,1,233 +1524,3530446,Brooklyn,Crown Heights,40.67722,-73.95005,Entire home/apt,155,3,66,1.75,3,309 +1525,2172525,Brooklyn,Williamsburg,40.71407,-73.95336,Entire home/apt,199,7,4,0.09,1,0 +1526,284224,Manhattan,East Village,40.72912,-73.98355,Entire home/apt,95,3,39,0.47,1,15 +1527,570988,Brooklyn,Park Slope,40.68305,-73.97853,Entire home/apt,550,4,173,2.12,1,258 +1528,3531317,Brooklyn,Bushwick,40.68161,-73.90796,Private room,60,2,295,3.56,2,210 +1529,3538661,Brooklyn,Williamsburg,40.71428,-73.961,Entire home/apt,380,4,62,0.75,2,170 +1530,3541525,Brooklyn,Bushwick,40.70234,-73.91849,Private room,84,2,138,1.69,1,225 +1531,2817397,Manhattan,Upper West Side,40.77563,-73.98065,Entire home/apt,165,30,27,0.34,1,128 +1532,1443121,Manhattan,East Village,40.72866,-73.98048,Entire home/apt,105,30,96,1.17,1,295 +1533,3558158,Brooklyn,Fort Greene,40.69096,-73.97241,Entire home/apt,134,2,119,1.46,1,0 +1534,2195782,Brooklyn,Bedford-Stuyvesant,40.691140000000004,-73.94601,Private room,68,5,8,0.1,1,281 +1535,3561489,Manhattan,East Village,40.72482,-73.98097,Entire home/apt,73,30,100,1.25,1,3 +1536,3228992,Brooklyn,Park Slope,40.67406,-73.97697,Entire home/apt,150,5,1,0.02,1,27 +1537,1372779,Manhattan,Upper West Side,40.773920000000004,-73.97851999999999,Entire home/apt,100,3,89,1.12,1,0 +1538,3576466,Manhattan,Hell's Kitchen,40.76422,-73.99382,Private room,75,2,176,2.22,2,23 +1539,3569392,Manhattan,Midtown,40.762209999999996,-73.97787,Private room,120,4,31,0.38,1,0 +1540,3577509,Brooklyn,Bedford-Stuyvesant,40.69128,-73.93653,Entire home/apt,85,4,239,2.89,2,1 +1541,3577848,Manhattan,Inwood,40.86737,-73.91877,Entire home/apt,55,2,79,0.96,1,3 +1542,1746432,Manhattan,Nolita,40.72177,-73.9961,Private room,95,10,13,0.33,1,51 +1543,3579337,Manhattan,Chelsea,40.74034,-74.00259,Private room,72,14,11,0.16,3,297 +1544,3579116,Manhattan,West Village,40.73105,-74.00285,Entire home/apt,250,80,5,0.06,2,78 +1545,2994135,Brooklyn,Cobble Hill,40.68902,-73.99517,Private room,69,2,13,0.37,1,0 +1546,279845,Brooklyn,Prospect Heights,40.677929999999996,-73.96576999999999,Private room,78,4,190,2.3,2,188 +1547,3587751,Brooklyn,Williamsburg,40.70995,-73.95536,Entire home/apt,220,1,404,4.9,2,341 +1548,2495668,Manhattan,SoHo,40.72756,-74.00239,Entire home/apt,230,2,27,1.4,1,101 +1549,3595395,Brooklyn,Bedford-Stuyvesant,40.68906,-73.94103,Entire home/apt,150,4,79,0.97,1,246 +1550,3598306,Brooklyn,Fort Greene,40.6967,-73.97622,Private room,80,2,14,0.17,2,364 +1551,240471,Brooklyn,Williamsburg,40.70751,-73.9467,Private room,150,3,32,0.42,2,365 +1552,3605606,Brooklyn,Park Slope,40.67507,-73.98093,Entire home/apt,150,3,76,0.98,1,266 +1553,3606458,Manhattan,Upper West Side,40.79507,-73.97568000000001,Entire home/apt,900,1,7,0.09,2,365 +1554,3597177,Manhattan,East Village,40.72225,-73.98496,Entire home/apt,130,7,11,0.14,1,0 +1555,1785800,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95275,Private room,70,5,18,0.22,3,365 +1556,3621183,Queens,Woodside,40.74723,-73.89706,Entire home/apt,120,3,60,1.59,3,281 +1557,3625735,Staten Island,Concord,40.60183,-74.08953000000001,Private room,75,30,59,0.72,2,354 +1558,240048,Brooklyn,Sunset Park,40.66084,-73.99328,Entire home/apt,100,15,22,0.47,2,5 +1559,839679,Brooklyn,Williamsburg,40.71796,-73.95439,Private room,69,3,2,0.03,3,284 +1560,3636235,Manhattan,East Village,40.72558,-73.97929,Entire home/apt,399,7,104,1.28,1,42 +1561,1507336,Manhattan,Harlem,40.80748,-73.94869,Entire home/apt,299,3,6,0.09,1,348 +1562,315918,Manhattan,Upper West Side,40.79854,-73.96089,Private room,100,3,326,3.96,1,90 +1563,3644693,Queens,Jackson Heights,40.74869,-73.88293,Private room,68,28,55,0.67,2,89 +1564,3136147,Brooklyn,Borough Park,40.63324,-73.99461,Private room,103,3,0,,1,0 +1565,1444304,Manhattan,Lower East Side,40.71819,-73.99136,Entire home/apt,175,5,56,0.79,1,263 +1566,283215,Brooklyn,Greenpoint,40.72582,-73.95213000000001,Entire home/apt,330,3,51,0.62,1,19 +1567,3642625,Manhattan,Chelsea,40.74225,-73.99492,Entire home/apt,425,5,7,0.09,1,0 +1568,3662459,Manhattan,East Village,40.73016,-73.98643,Entire home/apt,240,5,86,1.15,1,344 +1569,3625735,Staten Island,Concord,40.602129999999995,-74.0893,Private room,75,30,36,0.44,2,362 +1570,3666608,Brooklyn,Carroll Gardens,40.683440000000004,-73.9933,Private room,210,2,75,0.92,1,309 +1571,3672774,Brooklyn,Clinton Hill,40.683409999999995,-73.9606,Entire home/apt,175,1,363,4.55,2,323 +1572,3675389,Brooklyn,Williamsburg,40.715340000000005,-73.94906,Private room,85,2,146,1.78,1,46 +1573,3621183,Queens,Woodside,40.74746,-73.89712,Entire home/apt,120,3,51,1.52,3,253 +1574,3621183,Queens,Woodside,40.74687,-73.89891999999999,Entire home/apt,120,3,55,0.67,3,289 +1575,3597769,Brooklyn,Bedford-Stuyvesant,40.68712,-73.95876,Private room,75,5,1,0.01,2,0 +1576,3578480,Manhattan,West Village,40.73795,-74.00593,Entire home/apt,495,3,29,0.38,1,22 +1577,1002452,Brooklyn,Williamsburg,40.71055,-73.94915,Private room,65,14,30,0.76,2,38 +1578,3684360,Bronx,Allerton,40.859559999999995,-73.87066999999999,Private room,39,2,169,2.07,4,306 +1579,2055073,Brooklyn,Fort Greene,40.688109999999995,-73.97236,Entire home/apt,93,4,1,0.02,1,0 +1580,216191,Brooklyn,Williamsburg,40.70985,-73.9452,Private room,146,2,8,0.11,4,88 +1581,3711499,Brooklyn,Crown Heights,40.67473,-73.96263,Entire home/apt,120,3,12,0.18,1,15 +1582,3715319,Manhattan,Harlem,40.82655,-73.93943,Private room,79,3,19,0.3,1,365 +1583,3717536,Brooklyn,Crown Heights,40.67471,-73.95324000000001,Entire home/apt,100,5,9,0.11,1,0 +1584,3718361,Manhattan,Upper West Side,40.80155,-73.96569000000001,Private room,120,1,5,0.06,2,0 +1585,3726131,Manhattan,Harlem,40.80745,-73.94353000000001,Entire home/apt,150,5,17,0.26,2,36 +1586,3726366,Manhattan,East Village,40.72576,-73.98581999999999,Entire home/apt,144,4,70,0.86,1,198 +1587,3729726,Brooklyn,Crown Heights,40.67641,-73.95729,Private room,60,7,0,,1,0 +1588,3730928,Manhattan,Harlem,40.82398,-73.954,Entire home/apt,350,1,1,0.02,1,0 +1589,3597769,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95837,Private room,85,5,1,0.16,2,189 +1590,3737582,Manhattan,Upper West Side,40.79241,-73.97111,Entire home/apt,195,3,17,0.43,1,26 +1591,3390362,Manhattan,Upper East Side,40.77042,-73.96145,Entire home/apt,200,2,59,0.73,1,0 +1592,3738130,Manhattan,Lower East Side,40.71625,-73.9843,Entire home/apt,169,5,62,0.75,1,249 +1593,297176,Manhattan,Harlem,40.803509999999996,-73.95648,Private room,95,10,6,0.07,2,63 +1594,3750402,Manhattan,Flatiron District,40.740559999999995,-73.99262,Entire home/apt,375,2,33,0.84,1,346 +1595,3752523,Brooklyn,Crown Heights,40.66983,-73.94322,Entire home/apt,168,2,158,1.93,2,253 +1596,3759301,Brooklyn,Crown Heights,40.67942,-73.96248,Entire home/apt,50,4,8,0.12,1,220 +1597,1869332,Brooklyn,Williamsburg,40.71927,-73.95591,Private room,129,2,129,1.67,3,36 +1598,3641304,Queens,Astoria,40.762159999999994,-73.92541999999999,Entire home/apt,245,6,1,0.02,1,164 +1599,417504,Brooklyn,Greenpoint,40.73867,-73.95448,Entire home/apt,199,3,50,0.67,28,47 +1600,417504,Brooklyn,Greenpoint,40.738440000000004,-73.95456,Entire home/apt,199,3,116,1.56,28,36 +1601,3772684,Brooklyn,Williamsburg,40.708659999999995,-73.95166,Private room,99,6,89,1.09,2,89 +1602,3493470,Brooklyn,Brooklyn Heights,40.69127,-73.99552,Entire home/apt,160,1,17,0.21,1,0 +1603,3778274,Brooklyn,Williamsburg,40.70061,-73.9552,Private room,65,2,164,2.07,2,0 +1604,1601416,Manhattan,Harlem,40.81073,-73.9437,Private room,70,7,67,0.87,1,0 +1605,3779334,Manhattan,Harlem,40.805170000000004,-73.95404,Private room,80,1,135,1.67,1,365 +1606,1475015,Manhattan,Hell's Kitchen,40.76761,-73.98619000000001,Entire home/apt,100,30,3,0.12,52,365 +1607,3787686,Brooklyn,Borough Park,40.64431,-74.00016,Private room,70,1,139,1.7,1,364 +1608,73549,Manhattan,West Village,40.73616,-74.00399999999999,Entire home/apt,200,2,23,0.32,1,0 +1609,3798686,Brooklyn,Sunset Park,40.659890000000004,-73.99535999999999,Private room,66,3,51,0.64,1,329 +1610,3805320,Manhattan,Upper East Side,40.76352,-73.96394000000001,Entire home/apt,200,3,203,2.53,1,260 +1611,3398752,Brooklyn,Williamsburg,40.71141,-73.95427,Private room,95,2,164,2.07,2,93 +1612,3805397,Manhattan,Chelsea,40.74092,-74.00036999999999,Entire home/apt,140,1,6,0.07,1,0 +1613,3813161,Manhattan,Harlem,40.81908,-73.94776,Private room,65,1,327,4.01,1,287 +1614,3815537,Manhattan,Midtown,40.751540000000006,-73.97104,Entire home/apt,106,7,10,10.0,1,0 +1615,3831783,Manhattan,Upper West Side,40.783609999999996,-73.97645,Entire home/apt,155,181,82,1.07,1,188 +1616,3771963,Manhattan,East Village,40.72849,-73.98040999999999,Entire home/apt,249,2,111,4.44,1,28 +1617,3839667,Manhattan,East Village,40.723690000000005,-73.9894,Entire home/apt,120,7,6,0.08,1,0 +1618,3842134,Brooklyn,Greenpoint,40.72661,-73.94586,Private room,52,5,35,0.44,3,1 +1619,2333904,Manhattan,East Village,40.7232,-73.97927,Private room,75,26,57,0.7,3,98 +1620,3847832,Brooklyn,Williamsburg,40.71714,-73.95447,Shared room,195,2,80,0.98,1,364 +1621,1360198,Staten Island,Arrochar,40.59193,-74.06475999999999,Entire home/apt,625,4,1,0.02,4,335 +1622,15145088,Manhattan,Upper West Side,40.78674,-73.97243,Entire home/apt,171,30,4,0.06,8,346 +1623,15145088,Manhattan,Upper West Side,40.78747,-73.97238,Entire home/apt,185,30,8,0.1,8,346 +1624,1486623,Queens,Long Island City,40.74975,-73.93688,Private room,55,7,39,0.48,1,46 +1625,570882,Brooklyn,Bushwick,40.702259999999995,-73.92797,Private room,50,2,27,0.35,1,2 +1626,1475015,Manhattan,Kips Bay,40.742309999999996,-73.97839,Entire home/apt,120,30,3,0.05,52,365 +1627,1406458,Manhattan,Tribeca,40.71778,-74.00452,Entire home/apt,210,14,10,10.0,1,0 +1628,1099464,Manhattan,East Village,40.7296,-73.98479,Entire home/apt,133,2,1,0.09,1,50 +1629,2577615,Brooklyn,Brighton Beach,40.57728,-73.95362,Entire home/apt,73,30,21,0.26,1,251 +1630,3880974,Manhattan,West Village,40.73454,-74.00365,Entire home/apt,350,1,237,2.96,1,0 +1631,3131199,Manhattan,Tribeca,40.717290000000006,-74.00424,Entire home/apt,259,2,20,0.25,1,17 +1632,3883580,Manhattan,Inwood,40.859629999999996,-73.93106999999999,Private room,97,7,2,0.06,1,87 +1633,132132,Manhattan,Nolita,40.7229,-73.99574,Entire home/apt,199,7,66,0.83,1,142 +1634,3889339,Manhattan,Morningside Heights,40.80529,-73.96467,Entire home/apt,125,2,7,0.09,1,358 +1635,3889383,Brooklyn,Fort Greene,40.68736,-73.97496,Entire home/apt,100,1,273,3.35,1,45 +1636,2219255,Brooklyn,Canarsie,40.6258,-73.90004,Private room,39,5,60,0.95,3,34 +1637,52615,Manhattan,Nolita,40.72064,-73.99605,Entire home/apt,125,28,19,0.25,1,267 +1638,192750,Manhattan,Harlem,40.80145,-73.95572,Entire home/apt,150,1,2,0.03,1,0 +1639,3906249,Manhattan,Midtown,40.76412,-73.97666,Entire home/apt,170,7,83,1.04,1,203 +1640,1483464,Manhattan,Little Italy,40.71955,-73.99706,Entire home/apt,199,3,219,2.68,1,212 +1641,3920171,Manhattan,Harlem,40.811609999999995,-73.94046,Private room,80,3,0,,1,362 +1642,3920265,Brooklyn,Park Slope,40.6747,-73.98245,Private room,125,3,270,3.34,1,300 +1643,3920522,Manhattan,Chelsea,40.743140000000004,-74.00119000000001,Private room,155,5,18,0.24,1,90 +1644,3801683,Manhattan,Gramercy,40.73158,-73.98303,Private room,120,4,132,1.62,1,267 +1645,3011406,Brooklyn,Williamsburg,40.70608,-73.93154,Entire home/apt,220,3,151,1.86,1,115 +1646,160565,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95604,Entire home/apt,90,1,3,0.06,1,0 +1647,2293050,Brooklyn,Crown Heights,40.676520000000004,-73.9614,Private room,61,2,167,4.16,1,320 +1648,3665794,Manhattan,East Village,40.72699,-73.97969,Entire home/apt,179,4,213,2.62,1,277 +1649,1687335,Queens,Flushing,40.76372,-73.79201,Shared room,108,5,2,0.08,1,0 +1650,3936154,Brooklyn,Clinton Hill,40.68391,-73.96200999999999,Entire home/apt,575,3,12,0.15,1,0 +1651,3929012,Manhattan,Upper West Side,40.779379999999996,-73.98246999999999,Private room,99,1,353,4.33,4,73 +1652,3941862,Brooklyn,Williamsburg,40.7189,-73.95725,Entire home/apt,175,3,3,0.05,1,0 +1653,3905456,Brooklyn,Flatbush,40.64294,-73.96016,Entire home/apt,110,1,3,0.05,1,0 +1654,3010682,Brooklyn,Park Slope,40.667770000000004,-73.97780999999999,Entire home/apt,250,10,4,0.05,1,0 +1655,3955766,Brooklyn,Bedford-Stuyvesant,40.67968,-73.94715,Private room,100,1,113,1.43,1,0 +1656,2285974,Manhattan,Greenwich Village,40.728629999999995,-74.00137,Entire home/apt,200,4,11,0.14,1,259 +1657,3956850,Queens,Astoria,40.755829999999996,-73.91839,Entire home/apt,89,3,17,0.31,1,0 +1658,3916070,Manhattan,Chinatown,40.715920000000004,-73.9898,Entire home/apt,400,3,46,0.57,1,175 +1659,3959655,Brooklyn,Windsor Terrace,40.65142,-73.97601,Entire home/apt,149,21,52,0.64,2,0 +1660,3963008,Manhattan,SoHo,40.72408,-73.99823,Entire home/apt,500,10,10,0.22,1,33 +1661,869880,Manhattan,East Village,40.73233,-73.98695,Private room,95,5,64,0.88,1,316 +1662,3964655,Brooklyn,Bedford-Stuyvesant,40.67958,-73.93687,Entire home/apt,125,3,104,1.36,1,275 +1663,3966721,Manhattan,Upper West Side,40.80193,-73.96703000000001,Private room,80,4,75,0.93,1,15 +1664,1884204,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93557,Entire home/apt,105,5,227,2.79,2,234 +1665,3250450,Queens,Long Island City,40.757540000000006,-73.93004,Private room,39,30,13,0.16,18,360 +1666,3684360,Bronx,Allerton,40.8584,-73.86969,Entire home/apt,49,2,189,2.32,4,238 +1667,3977494,Manhattan,Greenwich Village,40.727140000000006,-73.99580999999999,Entire home/apt,187,14,1,0.01,1,0 +1668,3977693,Brooklyn,Bushwick,40.70118,-73.92826,Private room,55,3,10,0.15,1,0 +1669,3983140,Brooklyn,Prospect Heights,40.68116,-73.96559,Entire home/apt,250,3,61,0.76,1,0 +1670,3731320,Manhattan,Midtown,40.75982,-73.96521,Entire home/apt,125,4,3,0.04,1,0 +1671,1358245,Brooklyn,Clinton Hill,40.68785,-73.96708000000001,Entire home/apt,100,2,27,0.33,1,159 +1672,2124690,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95692,Entire home/apt,175,7,1,0.02,1,0 +1673,209647,Brooklyn,Clinton Hill,40.68468,-73.96303,Private room,50,4,32,0.4,1,347 +1674,286313,Manhattan,Midtown,40.75383,-73.96777,Entire home/apt,133,6,22,0.33,1,5 +1675,4007393,Manhattan,Upper East Side,40.776379999999996,-73.95246999999999,Entire home/apt,155,5,63,0.78,1,235 +1676,1292205,Queens,Astoria,40.76361,-73.91793,Entire home/apt,140,5,15,0.19,1,260 +1677,4015459,Queens,Astoria,40.76605,-73.92922,Private room,80,2,72,0.89,1,364 +1678,3992566,Brooklyn,Bushwick,40.70022,-73.93032,Private room,103,2,58,0.94,3,69 +1679,3315563,Manhattan,Upper West Side,40.782270000000004,-73.9841,Entire home/apt,600,3,9,0.12,2,353 +1680,3604585,Brooklyn,Flatbush,40.64073,-73.95832,Private room,70,3,169,3.07,3,188 +1681,3891399,Brooklyn,Williamsburg,40.70369,-73.93284,Private room,75,3,2,0.03,1,0 +1682,3604585,Brooklyn,Flatbush,40.64232,-73.9572,Private room,55,3,66,1.16,3,264 +1683,4027283,Manhattan,East Harlem,40.80826,-73.93401,Entire home/apt,50,4,24,0.3,1,25 +1684,2618273,Queens,Ditmars Steinway,40.77466,-73.91807,Entire home/apt,390,3,1,0.03,1,89 +1685,3371859,Brooklyn,Crown Heights,40.676790000000004,-73.93776,Entire home/apt,82,8,108,1.33,2,238 +1686,2276842,Brooklyn,Williamsburg,40.70745,-73.94306999999999,Shared room,52,3,19,0.44,2,88 +1687,4034995,Brooklyn,Williamsburg,40.71203,-73.95993,Private room,115,2,91,1.18,1,258 +1688,4036685,Queens,Bayside,40.75666,-73.76314,Entire home/apt,299,2,67,0.95,2,322 +1689,4036700,Brooklyn,Downtown Brooklyn,40.69594,-73.98375,Entire home/apt,175,13,64,0.8,1,116 +1690,4041877,Brooklyn,Williamsburg,40.719879999999996,-73.95616,Entire home/apt,100,90,4,0.05,1,250 +1691,4022922,Manhattan,Hell's Kitchen,40.759,-73.9953,Entire home/apt,95,1,0,,1,0 +1692,4044889,Queens,Astoria,40.77016,-73.92316,Private room,55,80,3,0.04,1,119 +1693,1949282,Brooklyn,Bushwick,40.69254,-73.91091999999999,Private room,45,2,77,0.95,5,167 +1694,4049527,Brooklyn,Williamsburg,40.715720000000005,-73.95574,Entire home/apt,165,1,41,0.52,1,19 +1695,3949235,Manhattan,Chelsea,40.75039,-74.00287,Entire home/apt,105,7,2,0.5,1,0 +1696,4048448,Brooklyn,Williamsburg,40.71435,-73.95073000000001,Entire home/apt,200,3,4,0.05,1,0 +1697,4061660,Manhattan,Washington Heights,40.83556,-73.94609,Private room,65,30,1,0.04,1,249 +1698,1228080,Manhattan,East Village,40.72439,-73.97766999999999,Private room,100,7,1,0.03,1,0 +1699,4059034,Brooklyn,Williamsburg,40.7179,-73.96106999999999,Entire home/apt,312,2,302,4.18,1,246 +1700,4064804,Manhattan,Flatiron District,40.73997,-73.98789000000001,Entire home/apt,195,1,1,0.02,1,0 +1701,4066797,Manhattan,Upper West Side,40.77734,-73.9877,Entire home/apt,100,29,3,0.11,1,301 +1702,4067211,Brooklyn,Prospect Heights,40.67453,-73.96759,Entire home/apt,155,3,13,0.16,1,0 +1703,4070269,Queens,Ditmars Steinway,40.78027,-73.90821,Entire home/apt,250,28,0,,1,88 +1704,2631234,Manhattan,Hell's Kitchen,40.76078,-73.99076,Entire home/apt,165,3,276,3.44,1,146 +1705,4076876,Manhattan,East Harlem,40.80343,-73.93514,Entire home/apt,120,3,22,0.31,1,365 +1706,3684360,Bronx,Allerton,40.859140000000004,-73.86979000000001,Private room,38,1,187,2.34,4,241 +1707,4081688,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94551,Shared room,200,1,0,,1,365 +1708,4083145,Brooklyn,Fort Greene,40.69377,-73.97009,Private room,90,10,1,0.11,1,0 +1709,4083654,Manhattan,Upper East Side,40.77032,-73.95331,Private room,85,2,138,2.06,1,196 +1710,1528912,Queens,Flushing,40.75612,-73.82517,Private room,55,2,31,0.53,2,282 +1711,266210,Manhattan,West Village,40.734609999999996,-74.00594,Shared room,350,2,13,0.17,1,0 +1712,3659439,Manhattan,East Village,40.72578,-73.98448,Private room,59,4,12,0.16,1,12 +1713,4089511,Manhattan,Harlem,40.81381,-73.94314,Entire home/apt,280,4,97,1.25,2,48 +1714,1568517,Queens,Long Island City,40.74527,-73.94629,Private room,69,1,153,1.89,2,132 +1715,4094151,Brooklyn,Williamsburg,40.71813,-73.9606,Entire home/apt,230,5,72,0.91,1,325 +1716,3419446,Brooklyn,Williamsburg,40.71606,-73.95527,Entire home/apt,200,2,72,0.95,1,52 +1717,4086839,Brooklyn,Flatbush,40.64047,-73.96388,Entire home/apt,150,5,52,0.65,1,311 +1718,3043126,Brooklyn,Bedford-Stuyvesant,40.6953,-73.95832,Private room,75,1,28,0.36,1,365 +1719,1114587,Manhattan,Upper West Side,40.797670000000004,-73.96114,Private room,120,3,2,0.02,3,0 +1720,4110491,Manhattan,West Village,40.73652,-74.00876,Entire home/apt,140,30,18,0.29,1,182 +1721,4040811,Manhattan,Upper West Side,40.7982,-73.97173000000001,Entire home/apt,200,2,8,0.53,1,337 +1722,4092307,Manhattan,Civic Center,40.71247,-73.99873000000001,Entire home/apt,225,3,3,0.07,2,189 +1723,4118217,Brooklyn,Fort Greene,40.687979999999996,-73.97442,Entire home/apt,145,7,4,0.05,1,36 +1724,2723812,Bronx,Port Morris,40.80461,-73.92276,Private room,60,3,86,1.13,2,1 +1725,4125000,Brooklyn,Bedford-Stuyvesant,40.681909999999995,-73.95475,Entire home/apt,119,5,7,0.09,1,0 +1726,1830890,Manhattan,West Village,40.73364,-74.00539,Entire home/apt,189,2,68,0.92,1,63 +1727,4129805,Manhattan,West Village,40.731640000000006,-74.00327,Entire home/apt,190,2,185,2.3,5,0 +1728,4111640,Manhattan,Lower East Side,40.71502,-73.98192,Private room,69,7,48,0.61,1,235 +1729,2347382,Queens,Long Island City,40.749970000000005,-73.9397,Private room,70,1,148,1.9,2,303 +1730,1506795,Brooklyn,Williamsburg,40.71188,-73.9608,Entire home/apt,155,2,8,0.1,1,0 +1731,3483450,Brooklyn,Bedford-Stuyvesant,40.68176,-73.914,Entire home/apt,149,2,67,0.88,3,329 +1732,4135221,Manhattan,West Village,40.73186,-74.00329,Private room,160,1,148,1.83,1,295 +1733,430188,Brooklyn,Williamsburg,40.707190000000004,-73.95228,Private room,100,20,1,0.02,6,214 +1734,2840710,Manhattan,Lower East Side,40.71818,-73.98206,Entire home/apt,220,25,1,0.01,1,350 +1735,873273,Manhattan,Washington Heights,40.84448,-73.93978,Private room,85,2,211,2.63,2,339 +1736,953375,Manhattan,East Village,40.72762,-73.98218,Entire home/apt,135,5,18,0.24,1,0 +1737,2478675,Brooklyn,Prospect-Lefferts Gardens,40.65545,-73.95781,Private room,45,1,168,2.3,5,359 +1738,4147380,Manhattan,Harlem,40.82294,-73.94999,Entire home/apt,225,1,50,0.72,1,265 +1739,4147608,Manhattan,Harlem,40.81915,-73.93964,Entire home/apt,100,7,11,0.18,1,0 +1740,3117671,Brooklyn,Williamsburg,40.71222,-73.95827,Entire home/apt,145,3,121,1.51,1,45 +1741,4148114,Manhattan,West Village,40.73403,-74.00298000000001,Entire home/apt,210,1,108,1.35,1,305 +1742,4153591,Brooklyn,Prospect Heights,40.67708,-73.96649000000001,Entire home/apt,195,4,10,0.13,1,95 +1743,4105376,Manhattan,Nolita,40.72232,-73.99343,Private room,95,7,46,0.57,1,0 +1744,3106826,Manhattan,West Village,40.73761,-74.00043000000001,Entire home/apt,140,2,34,0.43,1,159 +1745,184110,Manhattan,Harlem,40.798629999999996,-73.95291999999999,Private room,95,2,25,0.48,1,0 +1746,4160421,Manhattan,Upper West Side,40.77775,-73.98732,Entire home/apt,295,10,11,0.14,1,0 +1747,3055496,Manhattan,Washington Heights,40.85082,-73.9378,Private room,80,3,0,,1,0 +1748,1212041,Manhattan,East Village,40.728770000000004,-73.98794000000001,Entire home/apt,250,9,2,0.2,2,126 +1749,2556784,Bronx,Fieldston,40.887570000000004,-73.90522,Entire home/apt,60,1,25,0.67,1,311 +1750,4173419,Manhattan,Upper East Side,40.76553,-73.96262,Entire home/apt,150,2,4,0.06,1,0 +1751,180416,Manhattan,Lower East Side,40.71703,-73.98612,Entire home/apt,159,2,260,3.58,1,141 +1752,2450605,Brooklyn,Williamsburg,40.72034,-73.95669000000001,Entire home/apt,225,1,0,,1,0 +1753,4182834,Manhattan,Harlem,40.821690000000004,-73.93881999999999,Private room,78,1,52,0.66,1,0 +1754,58366,Manhattan,Upper West Side,40.77445,-73.98496,Entire home/apt,210,30,48,0.6,1,36 +1755,3069794,Brooklyn,Bedford-Stuyvesant,40.68356,-73.94041999999999,Private room,60,14,12,0.22,2,0 +1756,2275401,Manhattan,Greenwich Village,40.73545,-73.9931,Entire home/apt,220,6,23,0.29,1,0 +1757,4185135,Brooklyn,Windsor Terrace,40.65954,-73.97805,Entire home/apt,199,265,20,0.32,2,90 +1758,4185135,Brooklyn,Windsor Terrace,40.65875,-73.9766,Entire home/apt,225,300,13,0.23,2,0 +1759,3718361,Manhattan,Upper West Side,40.80118,-73.96783,Entire home/apt,350,6,13,0.16,2,0 +1760,4185984,Manhattan,Inwood,40.8678,-73.92619,Private room,65,2,93,1.16,1,0 +1761,4186145,Manhattan,Chelsea,40.75351,-73.99762,Entire home/apt,225,7,3,0.06,1,250 +1762,4103779,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95953,Private room,82,3,62,0.8,1,247 +1763,2333904,Manhattan,East Village,40.72381,-73.97896,Private room,75,26,58,0.73,3,129 +1764,3472148,Queens,Ditmars Steinway,40.77452,-73.90889,Private room,60,1,0,,1,0 +1765,4191209,Manhattan,Upper East Side,40.7666,-73.95903,Entire home/apt,105,14,7,0.16,1,84 +1766,4194142,Brooklyn,Bushwick,40.70308,-73.92765,Entire home/apt,115,4,12,0.18,1,0 +1767,61491,Manhattan,Upper East Side,40.77043,-73.9515,Entire home/apt,150,25,1,0.05,2,207 +1768,4107826,Brooklyn,South Slope,40.668820000000004,-73.98841,Private room,65,5,5,0.14,1,0 +1769,4195861,Brooklyn,Crown Heights,40.67759,-73.95432,Entire home/apt,150,4,13,0.3,2,15 +1770,4025188,Brooklyn,Williamsburg,40.70773,-73.9566,Private room,101,2,32,0.4,1,0 +1771,3882661,Manhattan,Gramercy,40.73493,-73.98655,Entire home/apt,130,3,26,0.32,2,19 +1772,758441,Brooklyn,Bedford-Stuyvesant,40.68561,-73.92029000000001,Private room,165,1,0,,4,0 +1773,4160649,Manhattan,Upper East Side,40.77483,-73.94674,Entire home/apt,175,3,1,0.03,1,0 +1774,4204890,Manhattan,Harlem,40.825359999999996,-73.94923,Entire home/apt,115,3,186,2.32,1,237 +1775,838848,Brooklyn,Fort Greene,40.69075,-73.97192,Entire home/apt,128,5,154,1.93,1,301 +1776,1475015,Manhattan,Kips Bay,40.7449,-73.97655999999999,Entire home/apt,116,30,5,0.09,52,311 +1777,4153233,Manhattan,Washington Heights,40.85262,-73.93821,Entire home/apt,192,2,41,0.6,2,0 +1778,4211266,Brooklyn,Prospect Heights,40.67338,-73.96415,Entire home/apt,150,17,3,0.07,1,0 +1779,2291000,Brooklyn,Williamsburg,40.70538,-73.92945999999999,Entire home/apt,163,1,3,0.04,1,0 +1780,149929,Brooklyn,Fort Greene,40.68537,-73.97713,Private room,40,8,32,0.4,5,284 +1781,195932,Brooklyn,Williamsburg,40.7176,-73.95234,Entire home/apt,200,10,6,0.09,1,174 +1782,1010338,Manhattan,Lower East Side,40.719559999999994,-73.98574,Entire home/apt,158,5,39,0.55,1,0 +1783,22486,Brooklyn,Park Slope,40.68015,-73.97800000000001,Private room,115,2,25,0.36,6,89 +1784,512878,Manhattan,Harlem,40.82974,-73.94193,Private room,85,1,190,3.7,2,178 +1785,4224513,Manhattan,Upper West Side,40.785920000000004,-73.97775,Entire home/apt,173,4,16,0.2,1,0 +1786,3642035,Brooklyn,Crown Heights,40.67504,-73.95273,Entire home/apt,250,4,6,0.08,1,250 +1787,4230317,Manhattan,NoHo,40.72591,-73.99452,Entire home/apt,465,30,47,0.67,1,277 +1788,4232762,Brooklyn,Williamsburg,40.70747,-73.93879,Entire home/apt,275,7,2,0.03,1,0 +1789,4233030,Manhattan,Chinatown,40.717859999999995,-73.99518,Private room,195,3,61,0.77,1,134 +1790,4233879,Brooklyn,Clinton Hill,40.68631,-73.96802,Entire home/apt,63,5,5,0.06,1,0 +1791,4112902,Manhattan,Washington Heights,40.833290000000005,-73.93834,Private room,36,1,33,0.77,1,211 +1792,2373697,Brooklyn,Carroll Gardens,40.682159999999996,-73.99504,Entire home/apt,130,5,2,0.04,1,0 +1793,1131081,Brooklyn,Boerum Hill,40.68418,-73.98039,Entire home/apt,200,4,13,0.22,1,0 +1794,4238591,Brooklyn,Greenpoint,40.731590000000004,-73.95048,Private room,85,2,36,0.45,1,278 +1795,4241831,Queens,Long Island City,40.76108,-73.9274,Entire home/apt,150,14,0,,1,0 +1796,4113132,Queens,Elmhurst,40.736979999999996,-73.87763000000001,Private room,45,3,89,1.12,3,213 +1797,4113132,Queens,Elmhurst,40.73842,-73.87609,Private room,45,3,125,1.57,3,208 +1798,4249297,Brooklyn,Williamsburg,40.70876,-73.94971,Private room,79,5,5,0.21,2,198 +1799,4250697,Brooklyn,Williamsburg,40.71986,-73.95925,Entire home/apt,149,4,1,0.01,1,0 +1800,4252788,Manhattan,East Village,40.72721,-73.98411,Entire home/apt,200,7,3,0.04,1,0 +1801,3775799,Manhattan,Harlem,40.83378,-73.94966,Private room,85,1,1,0.01,1,365 +1802,4254417,Queens,Kew Gardens,40.70947,-73.82921999999999,Private room,60,3,12,0.31,1,351 +1803,3038687,Manhattan,Hell's Kitchen,40.76704,-73.98345,Entire home/apt,139,45,16,0.21,8,0 +1804,4255290,Brooklyn,Williamsburg,40.7119,-73.96030999999999,Entire home/apt,160,30,19,0.26,1,59 +1805,1289936,Manhattan,East Harlem,40.787279999999996,-73.94579,Private room,95,4,150,1.88,1,192 +1806,4252490,Brooklyn,Williamsburg,40.70281,-73.94328,Private room,80,10,15,0.3,1,0 +1807,2184470,Brooklyn,Clinton Hill,40.69319,-73.96351,Entire home/apt,250,5,2,0.03,1,0 +1808,4265697,Manhattan,Chelsea,40.741170000000004,-73.99517,Entire home/apt,349,3,3,0.07,1,0 +1809,4266017,Manhattan,Harlem,40.805859999999996,-73.94641999999999,Entire home/apt,165,7,8,0.1,1,234 +1810,4231668,Brooklyn,Boerum Hill,40.68515,-73.99055,Entire home/apt,119,5,42,0.53,1,0 +1811,4255199,Manhattan,West Village,40.73713,-74.00232,Entire home/apt,240,7,7,0.1,1,0 +1812,4267089,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.92756999999999,Private room,79,4,1,0.02,1,359 +1813,4065620,Brooklyn,Bedford-Stuyvesant,40.68509,-73.93854,Entire home/apt,215,3,1,0.01,2,300 +1814,574584,Brooklyn,Kensington,40.63547,-73.97417,Private room,49,1,61,0.95,1,100 +1815,4271822,Brooklyn,Park Slope,40.67138,-73.97771999999999,Entire home/apt,190,3,76,0.95,1,48 +1816,4272748,Manhattan,Chelsea,40.74082,-73.99580999999999,Entire home/apt,99,2,52,0.65,1,30 +1817,149929,Brooklyn,Fort Greene,40.68871,-73.97180999999999,Private room,68,8,37,0.5,5,280 +1818,4275254,Brooklyn,Park Slope,40.67228,-73.97248,Entire home/apt,185,30,36,0.58,1,358 +1819,4276374,Manhattan,Lower East Side,40.719879999999996,-73.98639,Entire home/apt,225,4,92,1.47,1,67 +1820,4279005,Manhattan,Upper East Side,40.77171,-73.95042,Private room,81,10,64,0.93,1,311 +1821,545600,Manhattan,East Village,40.72699,-73.97894000000001,Entire home/apt,199,5,23,0.38,1,0 +1822,4281123,Brooklyn,Bushwick,40.6916,-73.92294,Private room,55,2,2,0.03,1,0 +1823,4281957,Manhattan,West Village,40.73227,-74.00949,Entire home/apt,340,7,38,0.54,1,302 +1824,4284154,Manhattan,Harlem,40.801390000000005,-73.95433,Entire home/apt,135,3,205,3.19,2,184 +1825,1099716,Queens,Sunnyside,40.74263,-73.92475999999999,Entire home/apt,85,2,108,1.35,1,0 +1826,4289709,Brooklyn,Bushwick,40.69764,-73.93084,Entire home/apt,65,7,4,0.09,1,0 +1827,2805766,Manhattan,Washington Heights,40.85604,-73.93469,Entire home/apt,100,30,13,0.18,1,219 +1828,1141935,Brooklyn,Crown Heights,40.67309,-73.94799,Private room,109,1,73,0.92,3,284 +1829,128256,Manhattan,Greenwich Village,40.72825,-74.00225,Entire home/apt,290,2,70,0.92,1,339 +1830,4298156,Manhattan,Harlem,40.82513,-73.94617,Private room,35,7,0,,1,0 +1831,4298167,Manhattan,Kips Bay,40.7445,-73.97583,Entire home/apt,148,5,29,0.37,1,188 +1832,4241953,Queens,Flushing,40.75979,-73.81016,Private room,57,2,17,0.21,4,308 +1833,4298896,Manhattan,Upper East Side,40.76883,-73.95353,Entire home/apt,150,6,23,0.31,1,0 +1834,4299040,Manhattan,Harlem,40.82258,-73.95418000000001,Private room,60,2,67,0.88,4,117 +1835,4299040,Manhattan,Harlem,40.822379999999995,-73.95534,Private room,60,2,48,0.61,4,114 +1836,4306950,Manhattan,East Harlem,40.791059999999995,-73.95058,Shared room,45,2,107,1.5,1,313 +1837,4299040,Manhattan,Harlem,40.82173,-73.95548000000001,Private room,60,2,33,0.46,4,211 +1838,4303726,Brooklyn,Clinton Hill,40.68443,-73.96337,Entire home/apt,125,3,124,1.56,1,158 +1839,4299040,Manhattan,Harlem,40.82233,-73.95568,Private room,60,2,36,0.54,4,133 +1840,9269794,Brooklyn,Bedford-Stuyvesant,40.68615,-73.93095,Private room,75,2,38,0.51,1,365 +1841,337159,Manhattan,East Village,40.73131,-73.98609,Entire home/apt,121,2,6,0.09,1,156 +1842,4310378,Brooklyn,Clinton Hill,40.69413,-73.96389,Private room,89,2,89,1.12,3,318 +1843,25632,Brooklyn,Greenpoint,40.72103,-73.94798,Entire home/apt,300,30,1,0.02,1,0 +1844,4311270,Brooklyn,Greenpoint,40.73319,-73.95623,Private room,110,1,4,0.18,1,0 +1845,4105474,Brooklyn,Greenpoint,40.72166,-73.94037,Entire home/apt,99,7,10,0.13,1,81 +1846,4311243,Brooklyn,Downtown Brooklyn,40.69379,-73.98525,Entire home/apt,170,7,41,0.55,1,0 +1847,61873,Brooklyn,Crown Heights,40.672309999999996,-73.96032,Private room,90,2,24,0.3,1,30 +1848,4323625,Manhattan,Chelsea,40.75284,-74.00138000000001,Private room,179,2,251,3.15,1,157 +1849,4324286,Manhattan,Harlem,40.81024,-73.94154,Private room,80,4,41,0.52,2,119 +1850,4324286,Manhattan,Harlem,40.80997,-73.93992,Private room,65,5,29,0.4,2,186 +1851,69685,Manhattan,Lower East Side,40.72125,-73.99271999999999,Private room,69,1,322,4.46,1,84 +1852,4317067,Brooklyn,Bushwick,40.69763,-73.93101999999999,Private room,42,1,18,0.35,1,60 +1853,4328005,Brooklyn,Williamsburg,40.71622,-73.96042,Private room,70,1,8,0.1,1,0 +1854,4330726,Brooklyn,Park Slope,40.67507,-73.97792,Entire home/apt,155,5,22,0.28,1,189 +1855,4331441,Manhattan,Upper East Side,40.76744,-73.96118,Entire home/apt,135,1,225,2.83,1,19 +1856,872805,Manhattan,Greenwich Village,40.73336,-73.99835999999999,Private room,120,21,79,1.04,2,34 +1857,4331864,Brooklyn,Gowanus,40.67869,-73.99197,Entire home/apt,135,8,7,0.14,1,0 +1858,4192794,Staten Island,Tompkinsville,40.63132,-74.08799,Private room,47,1,20,0.26,1,323 +1859,359447,Manhattan,Harlem,40.803940000000004,-73.9506,Private room,69,4,18,0.23,1,280 +1860,4079140,Brooklyn,Crown Heights,40.67828,-73.95645999999999,Private room,100,2,37,0.52,1,2 +1861,94669,Brooklyn,Bedford-Stuyvesant,40.68407,-73.93944,Private room,51,3,36,3.04,2,32 +1862,4289240,Brooklyn,Prospect Heights,40.679190000000006,-73.97191,Entire home/apt,4000,4,0,,1,83 +1863,4336760,Manhattan,Chelsea,40.73588,-73.99224,Private room,65,180,2,0.07,1,263 +1864,611137,Brooklyn,Clinton Hill,40.68334,-73.96704,Private room,60,3,126,3.59,2,120 +1865,4210082,Brooklyn,Prospect-Lefferts Gardens,40.662290000000006,-73.96296,Private room,70,1,84,1.06,1,188 +1866,3882661,Manhattan,Gramercy,40.7349,-73.98549,Entire home/apt,130,3,26,0.41,2,23 +1867,1865527,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94698000000001,Private room,70,1,37,0.48,3,325 +1868,4344588,Brooklyn,Clinton Hill,40.68673,-73.96252,Entire home/apt,200,2,267,3.37,1,266 +1869,4345735,Brooklyn,Prospect Heights,40.67378,-73.96471,Entire home/apt,150,3,11,0.14,1,0 +1870,4348003,Manhattan,Washington Heights,40.83783,-73.93831999999999,Entire home/apt,130,5,47,0.59,1,9 +1871,4350748,Brooklyn,Midwood,40.62908,-73.95965,Private room,68,7,1,0.01,1,87 +1872,4352069,Manhattan,East Village,40.72632,-73.97907,Private room,79,1,137,1.98,2,298 +1873,4355788,Manhattan,Upper West Side,40.776270000000004,-73.98365,Entire home/apt,149,10,9,0.19,1,0 +1874,4356301,Brooklyn,Bushwick,40.70738,-73.92213000000001,Private room,120,1,0,,1,0 +1875,1723222,Manhattan,Upper East Side,40.77613,-73.94872,Entire home/apt,250,4,1,0.03,1,0 +1876,4358812,Manhattan,Upper West Side,40.77837,-73.97964,Entire home/apt,175,7,23,0.29,1,0 +1877,4112404,Manhattan,Washington Heights,40.85123,-73.93223,Private room,40,15,4,0.05,3,353 +1878,4363775,Brooklyn,Greenpoint,40.731840000000005,-73.95801999999999,Private room,55,11,11,0.23,3,11 +1879,2369681,Manhattan,Lower East Side,40.71921,-73.99116,Private room,99,2,540,6.95,1,179 +1880,1896642,Brooklyn,Williamsburg,40.71699,-73.95817,Entire home/apt,500,5,0,,1,0 +1881,1268505,Manhattan,Chelsea,40.74372,-74.00021,Entire home/apt,240,7,26,0.37,1,330 +1882,4372934,Queens,College Point,40.78417,-73.83875,Entire home/apt,400,2,47,0.61,1,361 +1883,2862643,Manhattan,Upper East Side,40.77389,-73.95100000000001,Entire home/apt,280,2,0,,1,0 +1884,4375496,Manhattan,Tribeca,40.71969,-74.00876,Entire home/apt,235,3,5,0.08,1,177 +1885,252365,Manhattan,East Village,40.7225,-73.98267,Entire home/apt,130,5,4,0.05,1,0 +1886,265525,Brooklyn,Bedford-Stuyvesant,40.69165,-73.95456,Entire home/apt,96,5,224,2.82,1,77 +1887,4378763,Queens,Long Island City,40.7529,-73.92985,Private room,63,2,26,0.33,3,249 +1888,240048,Brooklyn,Sunset Park,40.66059,-73.99361,Entire home/apt,150,10,8,0.17,2,176 +1889,326150,Brooklyn,Williamsburg,40.71733,-73.9531,Entire home/apt,200,2,11,0.23,1,0 +1890,4255319,Brooklyn,Prospect Heights,40.67922,-73.96907,Entire home/apt,90,7,6,0.08,1,0 +1891,4383196,Manhattan,Midtown,40.76188,-73.97193,Entire home/apt,269,5,15,0.22,1,0 +1892,3200135,Manhattan,East Village,40.72876,-73.98413000000001,Private room,80,7,0,,1,31 +1893,164534,Brooklyn,Prospect Heights,40.680620000000005,-73.97041999999999,Private room,80,2,24,0.33,1,0 +1894,4389865,Manhattan,West Village,40.73126,-74.00502,Entire home/apt,400,7,7,0.1,1,365 +1895,4390058,Manhattan,Greenwich Village,40.73075,-73.99265,Entire home/apt,349,3,17,0.21,1,356 +1896,4390639,Manhattan,East Village,40.73345,-73.98956,Entire home/apt,495,2,66,0.93,1,334 +1897,4390881,Brooklyn,Prospect Heights,40.6763,-73.96528,Entire home/apt,85,14,13,0.17,1,22 +1898,4392420,Brooklyn,Bushwick,40.70366,-73.9269,Entire home/apt,85,15,22,0.28,1,0 +1899,3665164,Manhattan,Chelsea,40.7466,-73.99219000000001,Private room,999,10,30,0.4,1,365 +1900,4393626,Manhattan,Chelsea,40.74712,-73.99514,Private room,109,3,26,0.36,2,18 +1901,2682735,Manhattan,Lower East Side,40.718920000000004,-73.98626999999999,Entire home/apt,175,3,50,0.63,1,1 +1902,2257960,Manhattan,Chinatown,40.71593,-73.99031,Entire home/apt,150,4,14,0.31,1,18 +1903,3330412,Brooklyn,Williamsburg,40.71541,-73.94464,Private room,80,4,80,1.08,1,245 +1904,148545,Manhattan,Upper West Side,40.778859999999995,-73.98444,Entire home/apt,150,7,1,0.01,1,0 +1905,4401275,Manhattan,Hell's Kitchen,40.76194,-73.99346,Entire home/apt,175,1,33,0.44,1,0 +1906,864735,Queens,Astoria,40.75665,-73.92015,Entire home/apt,107,30,15,0.19,8,268 +1907,4401623,Manhattan,Washington Heights,40.84714,-73.94171999999999,Entire home/apt,80,60,22,0.28,1,226 +1908,4241953,Queens,Flushing,40.760740000000006,-73.80969,Private room,80,3,8,0.17,4,342 +1909,350553,Manhattan,Harlem,40.8129,-73.95213000000001,Private room,75,1,4,0.06,2,0 +1910,673406,Brooklyn,Bushwick,40.70234,-73.92424,Entire home/apt,800,1,34,0.45,1,365 +1911,683027,Brooklyn,Flatbush,40.62961,-73.9572,Entire home/apt,130,1,219,2.91,1,237 +1912,4413463,Manhattan,West Village,40.73574,-74.00056,Entire home/apt,250,7,0,,1,0 +1913,3891436,Manhattan,Lower East Side,40.71312,-73.99033,Entire home/apt,260,6,23,0.3,1,0 +1914,4414425,Brooklyn,Clinton Hill,40.696909999999995,-73.96713000000001,Private room,36,1,8,0.1,1,83 +1915,3159197,Brooklyn,Prospect-Lefferts Gardens,40.66251,-73.95374,Entire home/apt,140,2,11,0.18,1,35 +1916,1732005,Manhattan,Lower East Side,40.72003,-73.98693,Entire home/apt,145,2,220,2.97,1,268 +1917,945407,Brooklyn,Williamsburg,40.7141,-73.96477,Entire home/apt,120,3,8,0.13,1,0 +1918,430188,Brooklyn,Williamsburg,40.70694,-73.95307,Private room,75,18,5,0.06,6,112 +1919,4420306,Brooklyn,Bedford-Stuyvesant,40.689409999999995,-73.95246999999999,Private room,60,2,2,0.04,1,0 +1920,4421935,Brooklyn,Bushwick,40.7077,-73.92211999999999,Private room,69,30,51,0.67,1,7 +1921,395609,Manhattan,Lower East Side,40.71275,-73.98682,Private room,95,1,7,0.12,1,0 +1922,4422368,Manhattan,Upper West Side,40.78689,-73.97314,Entire home/apt,300,30,93,1.24,1,284 +1923,3179895,Manhattan,Upper West Side,40.784290000000006,-73.97815,Private room,131,2,220,2.85,1,1 +1924,4425467,Brooklyn,Bushwick,40.7016,-73.91868000000001,Entire home/apt,120,5,6,0.1,1,0 +1925,3526444,Brooklyn,Bedford-Stuyvesant,40.68196,-73.95168000000001,Entire home/apt,100,5,15,0.25,1,94 +1926,4428278,Brooklyn,Kensington,40.64651,-73.97662,Entire home/apt,100,4,20,0.26,1,0 +1927,1468667,Manhattan,East Village,40.730309999999996,-73.98425999999999,Entire home/apt,190,1,0,,1,0 +1928,4425694,Manhattan,Upper East Side,40.767140000000005,-73.95922,Entire home/apt,160,1,187,2.36,1,221 +1929,4241953,Queens,Flushing,40.76,-73.81116999999999,Private room,60,2,17,0.22,4,314 +1930,4375988,Brooklyn,Prospect-Lefferts Gardens,40.6593,-73.95685999999999,Private room,75,3,46,0.82,3,311 +1931,4241953,Queens,Flushing,40.76014,-73.81146,Private room,45,2,39,0.52,4,292 +1932,4432173,Manhattan,Harlem,40.80712,-73.95316,Private room,65,2,15,0.2,1,361 +1933,4434798,Brooklyn,Prospect Heights,40.68099,-73.97446,Entire home/apt,120,5,145,1.82,1,0 +1934,52394,Manhattan,Inwood,40.86585,-73.92693,Entire home/apt,80,4,16,0.2,1,0 +1935,4435623,Brooklyn,Crown Heights,40.67525,-73.9486,Entire home/apt,100,7,52,0.67,1,56 +1936,145609,Brooklyn,Carroll Gardens,40.67771,-73.99428,Entire home/apt,250,2,82,1.08,1,0 +1937,4438960,Manhattan,West Village,40.73118,-74.0029,Entire home/apt,235,2,97,1.47,1,40 +1938,2843998,Brooklyn,Williamsburg,40.7106,-73.96531999999999,Private room,85,2,35,0.55,2,365 +1939,4439578,Manhattan,Upper East Side,40.77815,-73.95902,Entire home/apt,195,31,8,0.1,1,273 +1940,4440548,Brooklyn,Williamsburg,40.71427,-73.94671,Entire home/apt,145,3,166,2.15,2,151 +1941,4441020,Brooklyn,Williamsburg,40.71731,-73.95626999999999,Entire home/apt,55,30,0,,1,159 +1942,254846,Brooklyn,Bushwick,40.68646,-73.91313000000001,Entire home/apt,289,3,38,0.51,4,354 +1943,4442608,Manhattan,Greenwich Village,40.731320000000004,-73.99979,Entire home/apt,120,30,17,0.27,1,231 +1944,2843998,Brooklyn,Williamsburg,40.71171,-73.96694000000001,Entire home/apt,149,5,26,0.41,2,14 +1945,4444170,Manhattan,Washington Heights,40.847640000000006,-73.93875,Shared room,100,1,31,0.4,1,364 +1946,4445677,Manhattan,Upper East Side,40.7704,-73.95024000000001,Entire home/apt,166,1,15,0.19,1,188 +1947,4446767,Manhattan,Washington Heights,40.850159999999995,-73.93178,Entire home/apt,99,3,106,1.43,1,331 +1948,3259274,Brooklyn,Crown Heights,40.67434,-73.95728000000001,Entire home/apt,150,2,37,0.58,2,230 +1949,4451246,Brooklyn,Gowanus,40.668929999999996,-73.99404,Shared room,44,2,155,2.11,1,325 +1950,4453107,Manhattan,Greenwich Village,40.72977,-74.00164000000001,Entire home/apt,195,2,12,0.18,1,90 +1951,4459052,Queens,Astoria,40.76488,-73.9297,Entire home/apt,95,30,0,,1,0 +1952,4092307,Manhattan,Civic Center,40.7123,-73.99946,Private room,100,4,8,0.11,2,7 +1953,4461145,Brooklyn,Flatbush,40.6489,-73.96871999999999,Entire home/apt,60,5,3,0.06,1,189 +1954,4463092,Manhattan,Harlem,40.80925,-73.95541,Private room,62,2,45,0.64,2,310 +1955,4467554,Manhattan,East Village,40.72957,-73.98406,Private room,99,5,8,0.14,1,0 +1956,4469832,Manhattan,Lower East Side,40.72034,-73.98585,Private room,90,15,25,0.46,1,35 +1957,213020,Manhattan,Upper West Side,40.792790000000004,-73.97131,Private room,88,1,100,1.41,3,98 +1958,4473860,Manhattan,Harlem,40.80845,-73.94435,Entire home/apt,125,1,64,1.37,1,135 +1959,524575,Brooklyn,Flatbush,40.6483,-73.9644,Private room,74,1,8,0.1,1,283 +1960,627898,Manhattan,Hell's Kitchen,40.76616,-73.98411,Entire home/apt,176,7,33,0.42,1,0 +1961,4481005,Brooklyn,Park Slope,40.67422,-73.98097,Private room,62,2,11,0.14,2,158 +1962,2559004,Manhattan,East Harlem,40.80215,-73.93889,Private room,51,1,4,0.1,5,0 +1963,4487224,Brooklyn,Williamsburg,40.71373,-73.94958000000001,Entire home/apt,249,3,31,0.4,1,365 +1964,4431107,Manhattan,Chelsea,40.73818,-73.9977,Entire home/apt,200,2,82,2.02,3,157 +1965,4494343,Bronx,Mount Eden,40.840579999999996,-73.91382,Private room,30,2,291,3.69,1,208 +1966,1536441,Brooklyn,Gowanus,40.669579999999996,-73.98998,Entire home/apt,240,2,22,0.29,1,280 +1967,4500999,Manhattan,East Harlem,40.79541,-73.94465,Private room,100,1,58,0.83,2,316 +1968,4504962,Manhattan,East Harlem,40.78844,-73.94951,Entire home/apt,125,2,71,0.9,1,199 +1969,1603942,Brooklyn,Fort Greene,40.686809999999994,-73.97675,Entire home/apt,149,29,86,1.1,2,125 +1970,4524130,Brooklyn,Clinton Hill,40.68707,-73.96571,Entire home/apt,170,1,315,4.03,1,275 +1971,4224309,Manhattan,Washington Heights,40.850809999999996,-73.93118,Private room,150,2,3,0.15,1,365 +1972,4538664,Manhattan,Upper West Side,40.77366,-73.98574,Private room,125,4,77,0.99,1,326 +1973,1650330,Brooklyn,Sunset Park,40.64902,-74.00896999999999,Private room,68,5,43,0.56,2,282 +1974,4543792,Manhattan,Harlem,40.82719,-73.94484,Private room,90,7,35,0.48,1,312 +1975,4555996,Manhattan,Harlem,40.823159999999994,-73.94129000000001,Private room,65,3,68,0.88,2,361 +1976,4363775,Brooklyn,Greenpoint,40.73404,-73.95737,Private room,50,31,10,0.25,3,193 +1977,4509849,Brooklyn,Bedford-Stuyvesant,40.683440000000004,-73.92189,Private room,65,3,132,1.68,3,35 +1978,745186,Brooklyn,Crown Heights,40.678129999999996,-73.96355,Entire home/apt,200,30,1,0.02,1,283 +1979,4509849,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92973,Private room,65,3,116,1.47,3,73 +1980,4372160,Brooklyn,Williamsburg,40.70933,-73.94141,Private room,58,10,7,0.1,1,0 +1981,4581489,Manhattan,Harlem,40.825790000000005,-73.94906999999999,Private room,65,2,2,0.05,1,0 +1982,355548,Brooklyn,Clinton Hill,40.69208,-73.96525,Entire home/apt,185,4,8,0.22,1,8 +1983,4590460,Brooklyn,Bensonhurst,40.6101,-73.99591,Entire home/apt,115,4,6,0.08,1,0 +1984,4599027,Manhattan,East Harlem,40.8032,-73.94004,Private room,100,30,0,,2,365 +1985,4600589,Manhattan,East Village,40.732,-73.98759,Private room,200,1,0,,1,0 +1986,3588693,Brooklyn,Flatbush,40.65307,-73.95781,Entire home/apt,115,2,20,0.25,1,282 +1987,699759,Brooklyn,Crown Heights,40.671209999999995,-73.95534,Entire home/apt,140,4,125,1.6,1,239 +1988,4617159,Brooklyn,Bushwick,40.68777,-73.91601,Private room,62,2,22,0.37,1,87 +1989,4616773,Brooklyn,Kensington,40.645340000000004,-73.97189,Entire home/apt,95,3,154,2.0,1,310 +1990,2908554,Brooklyn,Bedford-Stuyvesant,40.68586,-73.95875,Entire home/apt,100,3,7,0.11,1,0 +1991,4622733,Manhattan,West Village,40.73746,-74.00686,Entire home/apt,113,3,71,0.95,1,343 +1992,3994331,Manhattan,Morningside Heights,40.81368,-73.95942,Entire home/apt,108,30,5,0.07,1,230 +1993,4509849,Brooklyn,Bedford-Stuyvesant,40.68598,-73.92676999999999,Private room,62,3,112,1.43,3,59 +1994,4628887,Brooklyn,Williamsburg,40.71518,-73.94570999999999,Entire home/apt,95,3,36,0.95,1,89 +1995,2597159,Brooklyn,Williamsburg,40.71335,-73.9496,Entire home/apt,200,4,4,0.42,2,0 +1996,4655169,Manhattan,Harlem,40.82764,-73.93842,Entire home/apt,165,2,21,0.3,1,347 +1997,3549531,Brooklyn,Prospect-Lefferts Gardens,40.65514,-73.95956,Private room,60,1,109,1.52,1,2 +1998,3673451,Brooklyn,Williamsburg,40.705020000000005,-73.95262,Private room,80,2,37,0.56,2,89 +1999,4233288,Brooklyn,Prospect-Lefferts Gardens,40.66033,-73.96212,Entire home/apt,100,6,78,1.07,1,0 +2000,4670155,Manhattan,Hell's Kitchen,40.76113,-73.98918,Private room,110,3,213,2.79,1,281 +2001,4158086,Brooklyn,Bedford-Stuyvesant,40.691320000000005,-73.94205,Shared room,50,3,15,0.2,1,365 +2002,4310378,Brooklyn,Clinton Hill,40.69494,-73.96372,Private room,79,2,102,1.41,3,361 +2003,4313683,Brooklyn,Carroll Gardens,40.679959999999994,-74.00101,Entire home/apt,140,3,93,1.24,1,65 +2004,4677362,Manhattan,Upper West Side,40.78615,-73.98137,Entire home/apt,339,4,28,0.37,1,167 +2005,4701443,Queens,Flushing,40.75088,-73.81029000000001,Private room,55,1,116,1.51,2,298 +2006,4701443,Queens,Flushing,40.7525,-73.81126,Entire home/apt,81,1,313,4.09,2,263 +2007,3490818,Brooklyn,Williamsburg,40.71437,-73.96054000000001,Entire home/apt,191,3,156,2.08,1,21 +2008,4704914,Brooklyn,Bushwick,40.69982,-73.91957,Entire home/apt,139,3,106,1.42,1,248 +2009,4705358,Manhattan,Murray Hill,40.74791,-73.97334000000001,Entire home/apt,500,5,1,0.02,1,281 +2010,4282125,Brooklyn,Greenpoint,40.734,-73.95474,Entire home/apt,120,2,27,0.35,1,280 +2011,4714927,Manhattan,East Harlem,40.78933,-73.94932,Private room,60,2,53,0.86,4,0 +2012,4731046,Queens,Jackson Heights,40.75374,-73.8924,Private room,70,2,0,,1,188 +2013,831185,Brooklyn,Crown Heights,40.68015,-73.96299,Entire home/apt,295,2,8,0.11,3,365 +2014,128920,Brooklyn,Clinton Hill,40.682520000000004,-73.96664,Entire home/apt,100,6,10,0.13,1,0 +2015,4734398,Manhattan,Harlem,40.82264,-73.94041,Private room,49,1,594,7.57,3,339 +2016,1758019,Manhattan,West Village,40.73084,-74.00431,Entire home/apt,150,3,9,0.12,1,0 +2017,4746193,Brooklyn,Bedford-Stuyvesant,40.68485,-73.93684,Entire home/apt,120,2,163,2.12,1,161 +2018,4751930,Manhattan,East Village,40.72668,-73.98179,Entire home/apt,2500,30,15,0.26,1,89 +2019,1208402,Manhattan,Flatiron District,40.74207,-73.99094000000001,Entire home/apt,175,25,49,0.63,1,188 +2020,4622027,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.92896,Entire home/apt,107,2,147,1.89,1,27 +2021,1803302,Brooklyn,Williamsburg,40.71216,-73.96325999999999,Private room,98,3,78,1.01,1,268 +2022,4644172,Queens,Astoria,40.7686,-73.9201,Private room,47,1,71,1.05,1,0 +2023,4770121,Manhattan,Harlem,40.82434,-73.93956999999999,Entire home/apt,100,180,0,,4,365 +2024,2265770,Manhattan,Harlem,40.80706,-73.95403,Entire home/apt,170,5,86,1.13,3,29 +2025,4782600,Manhattan,West Village,40.73276,-74.00074000000001,Entire home/apt,150,3,90,1.17,1,184 +2026,3546135,Queens,Briarwood,40.71156,-73.8091,Entire home/apt,63,3,104,1.35,1,256 +2027,4808242,Brooklyn,Bedford-Stuyvesant,40.68145,-73.95178,Shared room,110,3,28,0.36,1,34 +2028,4634013,Brooklyn,Clinton Hill,40.687529999999995,-73.96002,Entire home/apt,275,3,0,,1,0 +2029,4837614,Brooklyn,South Slope,40.66485,-73.98838,Entire home/apt,329,4,2,0.05,1,0 +2030,4734398,Manhattan,Harlem,40.82124,-73.93838000000001,Private room,49,1,597,7.72,3,342 +2031,4734398,Manhattan,Harlem,40.82085,-73.94025,Private room,49,1,607,7.75,3,293 +2032,4834187,Brooklyn,Clinton Hill,40.68496,-73.96110999999999,Entire home/apt,165,4,37,0.47,1,343 +2033,4843750,Brooklyn,Greenpoint,40.73425,-73.95506,Entire home/apt,160,5,152,2.1,1,281 +2034,4847926,Brooklyn,Flatbush,40.643879999999996,-73.95279000000001,Private room,38,3,66,0.93,3,283 +2035,4848828,Manhattan,Upper West Side,40.79626,-73.96145,Entire home/apt,170,7,28,0.37,1,333 +2036,4765670,Manhattan,Morningside Heights,40.807759999999995,-73.9654,Private room,105,2,233,3.01,1,294 +2037,4864306,Brooklyn,Greenpoint,40.72676,-73.95529,Private room,50,2,30,0.42,3,249 +2038,4599027,Manhattan,East Harlem,40.801,-73.94009,Private room,100,30,0,,2,365 +2039,4872812,Manhattan,East Village,40.72784,-73.98486,Entire home/apt,100,3,2,0.06,1,0 +2040,3343848,Brooklyn,Park Slope,40.6734,-73.97657,Entire home/apt,890,3,26,0.34,1,341 +2041,4887492,Manhattan,Financial District,40.71078,-74.00995,Private room,160,3,24,0.31,2,352 +2042,4888892,Manhattan,East Village,40.723,-73.97861,Entire home/apt,145,2,157,2.03,1,221 +2043,4103952,Brooklyn,Bedford-Stuyvesant,40.699009999999994,-73.93966999999999,Private room,51,3,4,0.06,1,188 +2044,181756,Brooklyn,South Slope,40.66414,-73.98456999999999,Entire home/apt,150,3,136,1.8,1,301 +2045,511175,Manhattan,East Village,40.72361,-73.97877,Private room,180,3,5,0.08,2,31 +2046,4924435,Manhattan,Greenwich Village,40.73356,-73.99876,Entire home/apt,225,1,3,0.04,1,188 +2047,4929807,Manhattan,Chelsea,40.73949,-73.99483000000001,Entire home/apt,250,3,48,0.66,1,217 +2048,4930847,Brooklyn,Williamsburg,40.70159,-73.94346,Private room,56,1,103,1.6,1,65 +2049,4932354,Brooklyn,Prospect Heights,40.67852,-73.97008000000001,Private room,70,7,73,0.94,4,212 +2050,4938247,Brooklyn,Park Slope,40.67665,-73.97925,Private room,70,2,163,2.13,1,163 +2051,1895793,Manhattan,Chelsea,40.74605,-73.99906,Private room,125,2,153,2.17,1,161 +2052,2230103,Manhattan,Hell's Kitchen,40.7642,-73.98676999999999,Entire home/apt,399,2,287,3.69,1,284 +2053,4629954,Brooklyn,Carroll Gardens,40.67573,-73.99878000000001,Entire home/apt,157,6,1,0.03,1,24 +2054,4950369,Brooklyn,Bedford-Stuyvesant,40.688629999999996,-73.94294000000001,Entire home/apt,145,7,28,0.39,1,188 +2055,4954283,Manhattan,Washington Heights,40.84408,-73.93675,Private room,75,1,120,1.89,1,90 +2056,4955205,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93648,Entire home/apt,280,3,68,0.89,1,280 +2057,4955560,Brooklyn,Williamsburg,40.715790000000005,-73.9588,Entire home/apt,220,4,22,0.3,1,8 +2058,4957149,Manhattan,Upper West Side,40.7886,-73.97553,Entire home/apt,190,28,28,0.41,1,283 +2059,4967515,Manhattan,Upper West Side,40.78775,-73.98151999999999,Entire home/apt,200,6,22,0.28,2,354 +2060,4970027,Queens,Briarwood,40.70715,-73.81468000000001,Entire home/apt,77,1,78,1.02,1,168 +2061,4973668,Brooklyn,Bedford-Stuyvesant,40.687129999999996,-73.93659,Private room,35,5,69,0.91,3,244 +2062,4973668,Brooklyn,Bedford-Stuyvesant,40.687,-73.93446,Shared room,30,5,91,1.18,3,248 +2063,552453,Manhattan,East Village,40.72615,-73.98781,Entire home/apt,199,29,12,0.17,1,31 +2064,4938485,Manhattan,Hell's Kitchen,40.75893,-73.99014,Entire home/apt,140,3,25,0.33,1,157 +2065,3458692,Manhattan,Chelsea,40.74435,-74.00038,Entire home/apt,124,30,4,0.07,1,42 +2066,4976428,Manhattan,East Village,40.73194,-73.98939,Entire home/apt,295,7,92,1.23,1,316 +2067,4980428,Manhattan,Chinatown,40.7189,-73.99654,Entire home/apt,160,7,13,0.17,1,335 +2068,4260529,Queens,Long Island City,40.74641,-73.94611,Private room,349,1,30,0.39,2,365 +2069,51038,Brooklyn,Clinton Hill,40.68618,-73.96603,Private room,98,2,38,0.5,6,158 +2070,4983320,Queens,Flushing,40.75444,-73.83057,Private room,76,1,75,1.0,2,0 +2071,755172,Manhattan,Upper East Side,40.77543,-73.95499000000001,Entire home/apt,230,3,20,0.26,1,282 +2072,2420592,Brooklyn,Vinegar Hill,40.70163,-73.98208000000001,Private room,60,3,13,0.66,1,0 +2073,4156449,Brooklyn,Bushwick,40.69958,-73.92005999999999,Private room,40,5,0,,1,0 +2074,4976872,Manhattan,Murray Hill,40.74848,-73.97884,Private room,118,30,116,1.93,1,228 +2075,2902266,Brooklyn,DUMBO,40.70434,-73.98989,Private room,125,20,35,0.45,1,311 +2076,5072123,Brooklyn,Fort Greene,40.69097,-73.97972,Entire home/apt,195,29,55,0.72,2,233 +2077,5025046,Manhattan,Hell's Kitchen,40.763000000000005,-73.98911,Private room,85,2,100,1.31,1,63 +2078,5052897,Manhattan,Harlem,40.81378,-73.95353,Private room,55,14,17,0.23,1,41 +2079,5062254,Brooklyn,Bushwick,40.70627,-73.92223,Entire home/apt,155,2,20,0.26,1,0 +2080,1866827,Brooklyn,Williamsburg,40.7078,-73.94827,Private room,99,1,94,1.22,1,358 +2081,5076827,Manhattan,Harlem,40.81071,-73.94493,Entire home/apt,140,30,81,1.05,2,194 +2082,1865527,Brooklyn,Bedford-Stuyvesant,40.6943,-73.94538,Private room,85,1,32,0.43,3,340 +2083,5067409,Brooklyn,Crown Heights,40.67555,-73.95254,Entire home/apt,75,7,15,0.23,1,178 +2084,1650330,Brooklyn,Sunset Park,40.64942,-74.00749,Private room,53,5,39,0.52,2,282 +2085,4085497,Brooklyn,Crown Heights,40.672959999999996,-73.9501,Entire home/apt,150,2,42,0.72,1,365 +2086,4888599,Manhattan,Hell's Kitchen,40.76662,-73.99302,Entire home/apt,179,3,209,2.7,1,202 +2087,896918,Brooklyn,Crown Heights,40.67607,-73.95408,Entire home/apt,135,1,67,0.87,1,348 +2088,1908073,Manhattan,West Village,40.73194,-74.00189,Entire home/apt,200,4,45,0.59,1,48 +2089,3361696,Manhattan,Harlem,40.81177,-73.95139,Entire home/apt,200,3,1,0.05,1,0 +2090,3270460,Brooklyn,Prospect-Lefferts Gardens,40.659079999999996,-73.96125,Entire home/apt,100,5,117,1.61,2,73 +2091,5110818,Brooklyn,DUMBO,40.70447,-73.98754,Entire home/apt,134,14,14,0.18,1,0 +2092,5074654,Manhattan,East Village,40.728359999999995,-73.98163000000001,Private room,100,1,414,5.39,2,231 +2093,5138312,Manhattan,Upper East Side,40.774640000000005,-73.95695,Private room,50,20,11,0.16,1,269 +2094,3229099,Brooklyn,Williamsburg,40.716840000000005,-73.9441,Private room,50,40,16,0.21,1,324 +2095,1295416,Brooklyn,Gowanus,40.6745,-73.99582,Entire home/apt,400,30,30,0.39,1,67 +2096,2675998,Queens,Ridgewood,40.7099,-73.91509,Entire home/apt,115,2,74,0.96,2,314 +2097,1408973,Manhattan,SoHo,40.72493,-74.00307,Entire home/apt,235,3,73,0.94,1,44 +2098,4460034,Manhattan,East Harlem,40.79531,-73.9333,Entire home/apt,125,7,50,0.66,1,188 +2099,4797813,Manhattan,West Village,40.73377,-74.00259,Entire home/apt,250,2,56,0.73,1,134 +2100,5165749,Manhattan,SoHo,40.722559999999994,-73.99767,Entire home/apt,650,5,7,0.09,2,90 +2101,4932354,Brooklyn,Prospect Heights,40.67942,-73.97078,Private room,97,7,13,0.17,4,204 +2102,588270,Brooklyn,DUMBO,40.704240000000006,-73.98597,Entire home/apt,189,2,236,3.08,2,279 +2103,5202854,Manhattan,Upper West Side,40.7982,-73.96394000000001,Entire home/apt,100,1,129,1.76,1,281 +2104,1354796,Brooklyn,Prospect-Lefferts Gardens,40.66167,-73.95098,Private room,49,5,114,1.49,3,323 +2105,5214644,Bronx,City Island,40.85235,-73.78873,Entire home/apt,84,3,67,0.91,1,0 +2106,1797637,Brooklyn,Williamsburg,40.71765,-73.93999000000001,Entire home/apt,165,7,5,0.09,1,0 +2107,4191076,Manhattan,Chinatown,40.71687,-73.99046,Entire home/apt,87,59,51,0.66,1,0 +2108,1822729,Brooklyn,Williamsburg,40.710809999999995,-73.96121,Private room,120,6,15,0.21,2,9 +2109,1229358,Manhattan,SoHo,40.72538,-74.00375,Entire home/apt,195,10,10,0.13,1,270 +2110,1865527,Brooklyn,Bedford-Stuyvesant,40.69437,-73.94519,Private room,89,1,21,0.3,3,365 +2111,5239845,Brooklyn,Bushwick,40.69288,-73.90374,Private room,62,2,324,4.3,1,267 +2112,555739,Brooklyn,Bay Ridge,40.63463,-74.03621,Entire home/apt,130,28,14,0.69,2,340 +2113,5268970,Manhattan,East Village,40.72726,-73.97573,Private room,75,3,51,0.7,1,127 +2114,5289072,Brooklyn,Prospect Heights,40.67501,-73.96651,Private room,64,2,35,0.46,1,329 +2115,1447988,Brooklyn,Williamsburg,40.719159999999995,-73.95696,Entire home/apt,150,2,11,0.14,1,364 +2116,5286584,Manhattan,Harlem,40.806670000000004,-73.95562,Private room,100,2,53,0.7,1,350 +2117,5308961,Manhattan,Upper West Side,40.79368,-73.96486999999999,Entire home/apt,190,3,159,2.09,1,244 +2118,216191,Brooklyn,Williamsburg,40.711490000000005,-73.94504,Private room,98,2,7,0.09,4,273 +2119,434473,Brooklyn,Brooklyn Heights,40.692240000000005,-73.99638,Entire home/apt,150,30,48,0.63,1,0 +2120,3179866,Queens,East Elmhurst,40.76356,-73.8885,Entire home/apt,99,3,158,2.08,2,322 +2121,4770121,Manhattan,Harlem,40.82421,-73.93996,Entire home/apt,100,185,0,,4,358 +2122,5333736,Manhattan,East Village,40.73055,-73.98875,Entire home/apt,159,4,65,0.85,1,1 +2123,3709510,Brooklyn,Bushwick,40.692820000000005,-73.92477,Private room,70,1,18,0.32,3,146 +2124,2267153,Manhattan,East Village,40.727920000000005,-73.98507,Private room,91,5,395,5.16,2,1 +2125,5339881,Brooklyn,Brooklyn Heights,40.69293,-73.99679,Entire home/apt,325,1,11,0.19,1,363 +2126,5341060,Brooklyn,Fort Hamilton,40.61806,-74.03195,Entire home/apt,149,4,33,0.46,1,313 +2127,854208,Manhattan,East Village,40.7282,-73.98893000000001,Entire home/apt,200,10,35,0.46,1,51 +2128,5350359,Manhattan,Upper West Side,40.80014,-73.9637,Entire home/apt,169,2,61,0.8,1,59 +2129,5186189,Manhattan,West Village,40.73359,-74.00524,Entire home/apt,249,3,10,0.3,1,5 +2130,5354308,Queens,Astoria,40.757509999999996,-73.91678,Entire home/apt,85,2,260,3.44,1,254 +2131,5369117,Queens,Astoria,40.76291,-73.91871,Private room,81,2,183,2.45,2,326 +2132,5364702,Manhattan,East Village,40.72658,-73.98907,Entire home/apt,199,2,54,0.72,1,322 +2133,15742,Manhattan,Harlem,40.828920000000004,-73.94745,Entire home/apt,88,3,37,0.48,1,47 +2134,5374768,Manhattan,West Village,40.733309999999996,-74.00471,Entire home/apt,170,4,1,0.01,1,273 +2135,5207582,Manhattan,Morningside Heights,40.81062,-73.96015,Entire home/apt,100,1,0,,1,0 +2136,5378922,Brooklyn,Fort Greene,40.688590000000005,-73.9729,Entire home/apt,130,9,3,0.04,1,329 +2137,4548229,Manhattan,Harlem,40.80421,-73.94301999999999,Entire home/apt,135,30,190,2.63,4,253 +2138,555739,Brooklyn,Bay Ridge,40.63508,-74.03628,Entire home/apt,65,30,25,0.36,2,188 +2139,1417489,Brooklyn,Brooklyn Heights,40.70162,-73.99465,Entire home/apt,100,180,0,,1,365 +2140,5414067,Manhattan,East Harlem,40.806259999999995,-73.94009,Entire home/apt,165,3,281,3.68,2,177 +2141,5369117,Queens,Astoria,40.76491,-73.9207,Private room,78,4,70,1.64,2,348 +2142,4018660,Brooklyn,Cobble Hill,40.685559999999995,-73.99779000000001,Entire home/apt,350,5,12,0.17,1,0 +2143,5435208,Queens,Flushing,40.74142,-73.8202,Entire home/apt,160,3,96,1.29,1,298 +2144,5435713,Brooklyn,Prospect Heights,40.67682,-73.96585999999999,Entire home/apt,225,5,6,0.08,1,188 +2145,5438325,Manhattan,Harlem,40.80684,-73.94844,Entire home/apt,170,5,25,0.34,1,177 +2146,5440087,Manhattan,Midtown,40.75136,-73.97076,Private room,349,3,3,0.04,2,87 +2147,4714927,Manhattan,East Harlem,40.79218,-73.95076,Private room,65,2,57,0.78,4,251 +2148,2203885,Manhattan,East Village,40.72399,-73.98134,Private room,420,3,182,2.39,1,301 +2149,458021,Manhattan,Nolita,40.721309999999995,-73.99486999999999,Entire home/apt,119,3,17,0.22,1,0 +2150,4000059,Brooklyn,Park Slope,40.673590000000004,-73.97434,Entire home/apt,100,365,1,0.01,1,365 +2151,5454862,Manhattan,Harlem,40.8278,-73.94891,Entire home/apt,97,3,185,2.46,1,6 +2152,15145088,Manhattan,Upper West Side,40.787290000000006,-73.97439,Entire home/apt,191,30,8,0.11,8,346 +2153,15145088,Manhattan,Upper West Side,40.7852,-73.9746,Entire home/apt,187,30,13,0.2,8,346 +2154,15145088,Manhattan,Upper West Side,40.785579999999996,-73.97251,Entire home/apt,172,30,4,0.08,8,346 +2155,5466191,Manhattan,West Village,40.73464,-74.00225,Entire home/apt,950,3,28,1.52,1,357 +2156,2829145,Brooklyn,Fort Greene,40.692479999999996,-73.96983,Entire home/apt,275,4,81,1.07,2,310 +2157,3038687,Manhattan,Upper West Side,40.78954,-73.97222,Entire home/apt,99,30,1,0.02,8,113 +2158,412783,Manhattan,Greenwich Village,40.73506,-73.99728,Entire home/apt,334,11,14,0.24,1,238 +2159,5468901,Manhattan,Upper East Side,40.76896,-73.95898000000001,Private room,60,7,1,0.02,1,0 +2160,5480570,Brooklyn,Bedford-Stuyvesant,40.683640000000004,-73.92638000000001,Entire home/apt,145,3,200,2.62,1,303 +2161,2765234,Queens,Astoria,40.7603,-73.91395,Private room,75,4,19,0.52,1,10 +2162,227908,Manhattan,SoHo,40.72602,-74.00318,Entire home/apt,130,20,33,0.43,1,11 +2163,273174,Manhattan,Tribeca,40.71927,-74.00453,Entire home/apt,575,1,447,5.89,3,207 +2164,5497326,Manhattan,Upper West Side,40.77896,-73.97849000000001,Entire home/apt,295,7,2,0.03,2,0 +2165,5468033,Manhattan,West Village,40.73303,-74.00237,Entire home/apt,300,3,108,1.44,1,318 +2166,4797532,Brooklyn,Crown Heights,40.673190000000005,-73.95987,Entire home/apt,120,28,1,0.02,2,280 +2167,3363720,Brooklyn,Bushwick,40.68923,-73.91946,Private room,50,3,92,1.22,3,171 +2168,214794,Manhattan,East Harlem,40.79307,-73.95138,Shared room,56,2,117,1.53,1,303 +2169,5512719,Manhattan,Upper East Side,40.76249,-73.96054000000001,Entire home/apt,191,2,66,0.94,1,347 +2170,454250,Manhattan,Upper West Side,40.799620000000004,-73.96523,Private room,135,7,70,0.93,1,44 +2171,5520355,Brooklyn,South Slope,40.66162,-73.97994,Entire home/apt,195,7,98,1.39,1,94 +2172,5529633,Manhattan,Harlem,40.801320000000004,-73.95568,Shared room,75,1,43,0.61,1,9 +2173,450050,Manhattan,Harlem,40.81309,-73.95267,Private room,99,10,45,0.6,1,83 +2174,329436,Brooklyn,Carroll Gardens,40.68204,-73.99249,Entire home/apt,350,3,41,0.59,2,22 +2175,5556571,Brooklyn,Williamsburg,40.706070000000004,-73.935,Entire home/apt,40,15,10,0.13,3,365 +2176,3898812,Queens,Astoria,40.76295,-73.92652,Entire home/apt,130,1,58,0.77,1,301 +2177,5563508,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.9601,Entire home/apt,225,2,48,0.64,1,339 +2178,5018907,Brooklyn,Park Slope,40.67541,-73.9784,Entire home/apt,225,7,8,0.11,1,342 +2179,5577926,Queens,Astoria,40.76777,-73.91109,Shared room,38,1,127,1.67,4,55 +2180,5591685,Brooklyn,Clinton Hill,40.689240000000005,-73.9681,Entire home/apt,200,7,10,0.17,1,11 +2181,5593208,Manhattan,Hell's Kitchen,40.76777,-73.98931999999999,Entire home/apt,550,1,0,,1,365 +2182,5596242,Brooklyn,Clinton Hill,40.687709999999996,-73.96186,Entire home/apt,235,6,5,0.07,1,3 +2183,4937803,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95875,Private room,75,5,8,0.11,1,365 +2184,5606448,Brooklyn,Greenpoint,40.72031,-73.9483,Entire home/apt,249,30,71,0.94,1,273 +2185,693889,Brooklyn,Williamsburg,40.70798,-73.94263000000001,Entire home/apt,120,5,7,0.1,1,0 +2186,5619749,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95493,Private room,50,28,1,0.03,2,343 +2187,5622682,Brooklyn,Crown Heights,40.669740000000004,-73.958,Entire home/apt,85,3,10,0.85,1,149 +2188,315606,Brooklyn,Crown Heights,40.67515,-73.95435,Private room,78,3,10,0.14,2,95 +2189,3483960,Manhattan,Lower East Side,40.72198,-73.98931999999999,Private room,110,3,49,0.69,1,0 +2190,4932354,Brooklyn,Prospect Heights,40.6787,-73.97065,Private room,50,3,138,1.82,4,315 +2191,5634395,Manhattan,Harlem,40.821529999999996,-73.95512,Private room,52,3,163,2.17,2,0 +2192,2120889,Brooklyn,Williamsburg,40.712379999999996,-73.9379,Private room,63,2,0,,1,66 +2193,261530,Manhattan,Upper East Side,40.77421,-73.9528,Entire home/apt,105,45,20,0.26,1,109 +2194,5641042,Queens,Glendale,40.70538,-73.89448,Private room,75,2,132,1.74,1,333 +2195,5647813,Queens,Long Island City,40.744170000000004,-73.94823000000001,Private room,69,7,12,0.18,1,365 +2196,62316,Manhattan,East Village,40.72538,-73.98351,Entire home/apt,165,60,11,0.15,1,311 +2197,825252,Brooklyn,Park Slope,40.67651,-73.98007,Entire home/apt,125,2,45,0.66,1,0 +2198,5652395,Bronx,Concourse,40.81906,-73.92806,Private room,85,2,11,0.18,2,363 +2199,5655889,Manhattan,East Village,40.72351,-73.98283,Entire home/apt,499,5,47,0.63,1,341 +2200,5658953,Manhattan,East Village,40.729440000000004,-73.98645,Private room,60,5,66,0.87,1,232 +2201,5664550,Manhattan,East Village,40.723459999999996,-73.97907,Private room,95,5,35,0.46,1,320 +2202,5293735,Brooklyn,Bedford-Stuyvesant,40.69872,-73.94635,Entire home/apt,105,5,12,1.01,1,0 +2203,1949282,Brooklyn,Bushwick,40.69449,-73.91156,Private room,55,2,65,0.86,5,235 +2204,216191,Brooklyn,Williamsburg,40.71132,-73.94493,Entire home/apt,289,2,39,0.58,4,88 +2205,1113080,Brooklyn,Sunset Park,40.648709999999994,-74.00774,Private room,70,2,45,0.6,3,0 +2206,5679237,Manhattan,Chelsea,40.74583,-74.00363,Entire home/apt,275,7,0,,1,188 +2207,5681729,Manhattan,Harlem,40.80938,-73.94196,Entire home/apt,130,7,5,0.16,1,231 +2208,5682003,Brooklyn,Prospect-Lefferts Gardens,40.65743,-73.96155,Entire home/apt,125,2,38,0.61,1,3 +2209,5696628,Brooklyn,Bedford-Stuyvesant,40.68854,-73.95742,Entire home/apt,150,2,17,0.23,2,23 +2210,3233986,Queens,Astoria,40.75537,-73.91648,Private room,46,4,70,0.93,2,173 +2211,5707409,Manhattan,Upper East Side,40.770540000000004,-73.95496999999999,Entire home/apt,100,3,226,2.97,1,221 +2212,237477,Brooklyn,Williamsburg,40.718,-73.96603,Private room,90,5,8,0.11,1,0 +2213,4911550,Brooklyn,Williamsburg,40.720909999999996,-73.96124,Entire home/apt,90,3,166,2.21,1,104 +2214,5709288,Manhattan,Midtown,40.758790000000005,-73.9638,Entire home/apt,220,360,1,0.02,1,0 +2215,273174,Manhattan,Tribeca,40.720079999999996,-74.0043,Entire home/apt,1000,1,25,0.36,3,37 +2216,5447617,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93597,Entire home/apt,130,30,52,0.72,3,171 +2217,3740730,Manhattan,Chelsea,40.74398,-73.99624,Entire home/apt,499,6,127,1.68,2,303 +2218,964482,Manhattan,Harlem,40.82943,-73.94728,Private room,45,2,18,3.05,2,197 +2219,5738733,Brooklyn,Bedford-Stuyvesant,40.69235,-73.93836,Entire home/apt,70,2,210,2.79,2,288 +2220,2680820,Queens,Flushing,40.75334,-73.81699,Private room,59,1,281,3.7,3,322 +2221,2335804,Manhattan,Chelsea,40.74112,-74.00177,Entire home/apt,160,5,70,1.16,1,0 +2222,5749899,Manhattan,Harlem,40.8035,-73.94764,Entire home/apt,195,4,128,1.76,1,278 +2223,5751206,Brooklyn,Flatbush,40.64745,-73.95606,Private room,96,3,58,0.77,1,364 +2224,1356046,Brooklyn,Williamsburg,40.71454,-73.9507,Private room,75,3,179,2.39,2,136 +2225,839679,Brooklyn,Williamsburg,40.71797,-73.95508000000001,Entire home/apt,195,3,173,2.34,3,273 +2226,5760970,Queens,Ditmars Steinway,40.77117,-73.90427,Private room,200,1,16,0.68,2,364 +2227,832244,Brooklyn,Bedford-Stuyvesant,40.687529999999995,-73.95851,Entire home/apt,139,30,26,0.38,1,205 +2228,1740216,Manhattan,Harlem,40.81241,-73.94371,Entire home/apt,190,30,31,0.43,2,84 +2229,5245246,Manhattan,Harlem,40.80384,-73.95419,Private room,95,2,27,0.57,1,320 +2230,4128399,Manhattan,Lower East Side,40.71886,-73.98496999999999,Entire home/apt,350,3,7,0.1,1,364 +2231,92272,Manhattan,Gramercy,40.73323,-73.98224,Private room,80,3,7,0.1,3,217 +2232,4165498,Manhattan,East Harlem,40.79535,-73.93274,Entire home/apt,120,5,83,1.11,2,242 +2233,5810195,Manhattan,Inwood,40.85933,-73.92863,Private room,42,1,46,0.79,2,357 +2234,5817011,Brooklyn,Williamsburg,40.70851,-73.949,Entire home/apt,116,4,112,1.49,1,127 +2235,697442,Brooklyn,East Flatbush,40.648509999999995,-73.94667,Private room,60,1,356,4.72,3,19 +2236,462379,Brooklyn,Carroll Gardens,40.67881,-73.99379,Entire home/apt,1395,1,55,0.73,2,362 +2237,1600541,Manhattan,Upper East Side,40.770140000000005,-73.96222,Entire home/apt,425,2,68,0.91,1,358 +2238,2413155,Brooklyn,Boerum Hill,40.68554,-73.98924,Entire home/apt,225,4,95,1.26,1,251 +2239,5822377,Manhattan,East Village,40.7265,-73.99,Entire home/apt,159,5,16,0.25,2,0 +2240,7875272,Staten Island,Port Richmond,40.629220000000004,-74.13354,Entire home/apt,221,30,0,,3,0 +2241,11837926,Manhattan,Midtown,40.76463,-73.98111999999999,Private room,150,7,44,0.74,3,365 +2242,5837033,Manhattan,Upper East Side,40.7744,-73.95578,Entire home/apt,199,1,116,1.54,1,300 +2243,1557383,Brooklyn,Crown Heights,40.67418,-73.94660999999999,Private room,70,1,4,0.06,1,0 +2244,5851210,Manhattan,East Harlem,40.79417,-73.94376,Entire home/apt,110,31,235,3.14,2,84 +2245,2873394,Brooklyn,Bushwick,40.69935,-73.93713000000001,Private room,60,2,10,0.13,2,18 +2246,5861233,Brooklyn,Crown Heights,40.67046,-73.94835,Private room,50,3,2,0.08,1,0 +2247,3327668,Manhattan,Lower East Side,40.720459999999996,-73.98773,Private room,120,1,360,4.79,1,240 +2248,5872605,Manhattan,East Village,40.7239,-73.97869,Entire home/apt,395,5,0,,1,0 +2249,2128778,Brooklyn,Crown Heights,40.67414,-73.95666999999999,Private room,60,2,51,0.68,2,57 +2250,5867023,Manhattan,Midtown,40.75783,-73.96383,Entire home/apt,145,2,146,1.94,1,148 +2251,5879729,Brooklyn,Williamsburg,40.71273,-73.94399,Entire home/apt,83,30,16,0.21,2,26 +2252,3968209,Manhattan,SoHo,40.720859999999995,-73.99999,Private room,100,3,64,0.87,2,355 +2253,5895535,Brooklyn,Crown Heights,40.67151,-73.94885,Entire home/apt,200,2,3,0.08,1,0 +2254,5897760,Manhattan,Harlem,40.825,-73.94131999999999,Private room,50,3,145,1.97,1,211 +2255,5479559,Manhattan,Chelsea,40.74573,-73.99712,Private room,70,1,206,2.72,1,15 +2256,4243849,Brooklyn,Carroll Gardens,40.683040000000005,-73.99819000000001,Entire home/apt,175,2,279,3.68,1,218 +2257,1149419,Brooklyn,Crown Heights,40.6803,-73.96059,Entire home/apt,149,28,18,0.36,1,265 +2258,5585945,Brooklyn,Red Hook,40.67685,-74.00581,Entire home/apt,125,3,162,2.15,1,300 +2259,5909206,Manhattan,East Harlem,40.797940000000004,-73.93223,Private room,58,1,323,4.3,1,284 +2260,2981156,Queens,Astoria,40.76359,-73.92531,Entire home/apt,160,2,13,0.26,2,56 +2261,3864301,Queens,Sunnyside,40.74361,-73.91662,Entire home/apt,150,30,9,0.12,2,365 +2262,5927702,Manhattan,Gramercy,40.73807,-73.98187,Entire home/apt,131,30,23,0.61,2,33 +2263,5927702,Manhattan,Gramercy,40.73775,-73.98324000000001,Entire home/apt,250,30,17,0.39,2,327 +2264,5855145,Queens,Astoria,40.75959,-73.90835,Private room,70,1,136,1.81,2,359 +2265,5938496,Manhattan,Nolita,40.71972,-73.99438,Entire home/apt,149,5,26,0.35,1,0 +2266,5943212,Brooklyn,Sunset Park,40.65475,-74.01210999999999,Entire home/apt,109,2,70,0.96,1,339 +2267,5944682,Manhattan,Theater District,40.759640000000005,-73.98534000000001,Private room,185,2,243,3.22,1,127 +2268,5944756,Brooklyn,Greenpoint,40.72428,-73.94471999999999,Entire home/apt,138,14,6,0.1,1,356 +2269,3417321,Manhattan,East Village,40.730990000000006,-73.98761999999999,Private room,150,10,36,0.48,2,0 +2270,5959653,Brooklyn,Bedford-Stuyvesant,40.685320000000004,-73.92429,Private room,80,1,14,0.2,2,283 +2271,5972975,Brooklyn,Greenpoint,40.72613,-73.93915,Entire home/apt,75,2,2,0.03,1,0 +2272,1841580,Manhattan,Chelsea,40.74877,-73.9994,Entire home/apt,300,5,44,0.62,1,87 +2273,5971251,Manhattan,Chelsea,40.74197,-73.99701999999999,Private room,176,2,123,1.63,1,268 +2274,663764,Brooklyn,East Flatbush,40.6536,-73.94883,Private room,47,2,248,3.27,2,0 +2275,5986790,Manhattan,Washington Heights,40.83535,-73.94334,Private room,40,7,26,0.67,6,272 +2276,5993276,Queens,Richmond Hill,40.7017,-73.82316,Shared room,60,7,0,,1,362 +2277,2768182,Brooklyn,South Slope,40.66326,-73.98805,Private room,89,1,49,0.66,4,24 +2278,4714927,Manhattan,East Harlem,40.78859,-73.94715,Private room,75,2,152,2.03,4,12 +2279,5887081,Brooklyn,Bedford-Stuyvesant,40.69034,-73.95321,Entire home/apt,110,7,195,2.72,2,284 +2280,6010467,Manhattan,Harlem,40.81102,-73.94561999999999,Entire home/apt,85,30,23,0.47,1,0 +2281,6016424,Brooklyn,Greenpoint,40.730259999999994,-73.95596,Private room,72,4,54,0.72,1,71 +2282,6024006,Staten Island,St. George,40.64699,-74.08151,Entire home/apt,190,2,0,,1,365 +2283,364499,Manhattan,Harlem,40.806020000000004,-73.95362,Private room,85,2,233,3.12,1,72 +2284,1709216,Brooklyn,East Flatbush,40.63612,-73.946,Entire home/apt,325,2,19,0.31,4,328 +2285,2413714,Brooklyn,Bushwick,40.69305,-73.90398,Entire home/apt,125,2,116,1.55,1,365 +2286,5604089,Manhattan,Upper West Side,40.78264,-73.97803,Entire home/apt,200,3,3,0.06,1,0 +2287,1545977,Brooklyn,Cobble Hill,40.687540000000006,-73.99284,Entire home/apt,195,30,38,0.51,1,345 +2288,6046616,Manhattan,Washington Heights,40.83695,-73.94124000000001,Entire home/apt,175,2,0,,1,280 +2289,6048514,Brooklyn,Boerum Hill,40.68779,-73.98517,Entire home/apt,189,4,227,3.01,1,247 +2290,2571,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93845,Entire home/apt,182,9,27,0.37,1,23 +2291,5908577,Brooklyn,Crown Heights,40.672709999999995,-73.94551,Entire home/apt,105,1,349,4.73,2,277 +2292,6057624,Manhattan,Kips Bay,40.74268,-73.97853,Entire home/apt,240,1,67,0.89,1,321 +2293,3531317,Brooklyn,Bushwick,40.68185,-73.90655,Entire home/apt,185,4,95,1.33,2,215 +2294,3630531,Manhattan,Chelsea,40.7457,-73.99775,Entire home/apt,160,4,5,0.07,1,168 +2295,2757621,Manhattan,Gramercy,40.73708,-73.98455,Entire home/apt,250,4,23,0.31,1,11 +2296,4373782,Manhattan,Kips Bay,40.740520000000004,-73.97907,Entire home/apt,650,30,36,0.48,1,256 +2297,3158364,Queens,Sunnyside,40.736,-73.92425,Private room,35,5,59,1.76,4,250 +2298,1018472,Brooklyn,Sheepshead Bay,40.58408,-73.94122,Entire home/apt,85,4,72,0.97,2,360 +2299,6088518,Brooklyn,Park Slope,40.66698,-73.98161999999999,Entire home/apt,550,3,21,0.3,1,1 +2300,6093878,Brooklyn,Bedford-Stuyvesant,40.680679999999995,-73.9535,Private room,80,2,44,0.62,1,159 +2301,1690569,Brooklyn,Williamsburg,40.71852,-73.95616,Entire home/apt,175,6,32,0.43,1,291 +2302,350702,Brooklyn,Crown Heights,40.66773,-73.96144,Private room,95,2,132,1.75,1,354 +2303,6105036,Manhattan,Harlem,40.80477,-73.9512,Entire home/apt,158,4,37,0.49,3,314 +2304,3211592,Manhattan,Chinatown,40.71744,-73.99718,Private room,85,3,37,0.58,1,5 +2305,2733465,Manhattan,Nolita,40.72068,-73.99576,Entire home/apt,209,1,23,0.46,1,365 +2306,265152,Brooklyn,Fort Greene,40.68545,-73.97572,Entire home/apt,150,2,21,0.29,3,3 +2307,265152,Brooklyn,Fort Greene,40.688,-73.97745,Private room,70,2,55,0.88,3,13 +2308,6118355,Queens,Ditmars Steinway,40.771029999999996,-73.89461,Private room,73,1,6,0.13,1,363 +2309,6121678,Brooklyn,Park Slope,40.67771,-73.98151999999999,Private room,85,2,1,0.02,1,0 +2310,6133754,Brooklyn,Bedford-Stuyvesant,40.687979999999996,-73.93903,Entire home/apt,95,3,218,2.92,1,246 +2311,2843987,Brooklyn,Williamsburg,40.71353,-73.96216,Entire home/apt,125,2,16,0.26,1,0 +2312,6136511,Manhattan,Nolita,40.722120000000004,-73.99676,Private room,89,3,29,0.41,2,190 +2313,4864306,Brooklyn,Greenpoint,40.72541,-73.9567,Private room,50,2,36,0.51,3,232 +2314,496164,Brooklyn,Williamsburg,40.709740000000004,-73.93961999999999,Private room,75,5,73,0.99,2,307 +2315,5942292,Brooklyn,Bedford-Stuyvesant,40.68316,-73.93906,Private room,60,1,65,0.87,4,26 +2316,5986790,Manhattan,Washington Heights,40.834790000000005,-73.94345,Private room,45,5,20,0.54,6,244 +2317,6164428,Brooklyn,Williamsburg,40.72065,-73.959,Entire home/apt,130,14,1,0.02,1,296 +2318,6165258,Manhattan,Harlem,40.80815,-73.94325,Private room,70,28,16,0.22,3,365 +2319,5848607,Manhattan,East Village,40.727779999999996,-73.98305,Private room,125,2,246,3.3,1,216 +2320,6163192,Manhattan,Lower East Side,40.71928,-73.98993,Entire home/apt,140,3,126,1.68,1,228 +2321,5268463,Brooklyn,Sunset Park,40.66065,-73.98817,Entire home/apt,120,3,13,0.18,1,201 +2322,6180052,Brooklyn,Fort Greene,40.68769,-73.9749,Private room,99,5,4,0.17,1,250 +2323,128663,Brooklyn,Kensington,40.640240000000006,-73.96976,Entire home/apt,300,5,1,0.02,1,15 +2324,835112,Brooklyn,South Slope,40.668420000000005,-73.98659,Private room,40,90,0,,2,311 +2325,6158233,Manhattan,Harlem,40.82865,-73.94621,Private room,47,3,61,0.81,1,285 +2326,302772,Manhattan,Lower East Side,40.714459999999995,-73.98833,Private room,115,3,29,0.48,2,339 +2327,131014,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94434,Entire home/apt,90,2,4,0.05,1,0 +2328,6196141,Manhattan,East Village,40.72271,-73.98478,Entire home/apt,199,3,42,0.63,1,330 +2329,1124797,Manhattan,Harlem,40.82101,-73.94582,Entire home/apt,110,3,82,1.09,1,15 +2330,55176,Brooklyn,Bushwick,40.687670000000004,-73.91261,Entire home/apt,100,3,308,4.11,1,99 +2331,4623093,Brooklyn,Prospect Heights,40.67673,-73.96399,Private room,90,14,79,1.09,1,336 +2332,5942292,Brooklyn,Bedford-Stuyvesant,40.68312,-73.94082,Private room,40,1,66,0.89,4,118 +2333,6209044,Manhattan,Harlem,40.80745,-73.94279,Entire home/apt,133,14,19,0.26,1,279 +2334,712590,Brooklyn,Prospect Heights,40.68034,-73.97321,Private room,130,2,8,0.11,1,0 +2335,3038687,Manhattan,Upper West Side,40.78898,-73.97589,Entire home/apt,79,30,12,0.16,8,36 +2336,3965911,Manhattan,Greenwich Village,40.72855,-74.00135999999999,Entire home/apt,200,2,26,0.35,1,188 +2337,6216882,Manhattan,Chelsea,40.74119,-74.00234,Entire home/apt,175,3,19,0.25,1,194 +2338,6012816,Brooklyn,Red Hook,40.676590000000004,-74.01550999999999,Entire home/apt,200,1,7,0.52,1,0 +2339,6233644,Manhattan,Nolita,40.72404,-73.99529,Entire home/apt,200,3,0,,1,0 +2340,5446918,Brooklyn,Williamsburg,40.71756,-73.94839,Entire home/apt,300,5,34,0.46,1,365 +2341,6169516,Manhattan,Upper West Side,40.788920000000005,-73.97435,Private room,135,3,13,0.17,1,219 +2342,354887,Brooklyn,Prospect Heights,40.67678,-73.96692,Entire home/apt,189,3,173,2.36,1,265 +2343,6242426,Queens,Jamaica,40.69965,-73.79286,Private room,133,1,0,,1,281 +2344,6131397,Brooklyn,Sunset Park,40.665820000000004,-73.99349000000001,Private room,65,1,4,0.11,1,0 +2345,6245239,Manhattan,Upper West Side,40.77097,-73.98083000000001,Entire home/apt,179,4,27,0.36,1,0 +2346,5654454,Manhattan,Chelsea,40.74057,-73.99771,Entire home/apt,90,45,11,0.18,1,279 +2347,6256118,Brooklyn,Gowanus,40.67173,-73.98968,Private room,49,1,9,0.19,1,98 +2348,2637874,Brooklyn,Williamsburg,40.71666,-73.94552,Entire home/apt,140,3,60,1.19,1,197 +2349,1474508,Manhattan,Midtown,40.74658,-73.98846999999999,Entire home/apt,115,2,70,0.95,1,120 +2350,252361,Brooklyn,Cobble Hill,40.6866,-73.99123,Entire home/apt,190,1,221,3.0,1,238 +2351,585273,Brooklyn,Greenpoint,40.72448,-73.94328,Private room,99,5,179,2.61,1,0 +2352,1475015,Manhattan,Midtown,40.75274,-73.97026,Entire home/apt,110,30,3,0.06,52,365 +2353,6280254,Manhattan,East Village,40.73125,-73.98344,Private room,109,2,292,3.9,2,231 +2354,6286114,Manhattan,West Village,40.73614,-74.00634000000001,Private room,64,5,42,0.56,1,0 +2355,836168,Manhattan,Upper West Side,40.79208,-73.96481999999999,Entire home/apt,1000,30,24,0.33,11,364 +2356,5523186,Manhattan,East Village,40.73032,-73.98469,Entire home/apt,750,3,9,0.18,2,364 +2357,244071,Queens,Ditmars Steinway,40.77755,-73.90599,Entire home/apt,175,7,2,0.03,1,8 +2358,2559004,Manhattan,East Harlem,40.80421,-73.94037,Private room,47,1,6,0.08,5,353 +2359,6294856,Brooklyn,Bedford-Stuyvesant,40.68018,-73.94839,Private room,60,3,140,1.87,1,189 +2360,6298986,Manhattan,Washington Heights,40.83307,-73.93956999999999,Private room,48,14,46,0.62,1,287 +2361,6305367,Manhattan,East Harlem,40.799209999999995,-73.93656999999999,Entire home/apt,100,1,54,0.75,1,0 +2362,6305477,Brooklyn,Park Slope,40.68247,-73.97837,Private room,105,1,127,1.72,1,88 +2363,4376062,Brooklyn,Fort Greene,40.687979999999996,-73.97182,Entire home/apt,138,7,1,0.01,1,0 +2364,7399728,Manhattan,East Village,40.7252,-73.98261,Entire home/apt,129,1,96,1.31,1,324 +2365,6142196,Manhattan,Morningside Heights,40.80815,-73.96779000000001,Entire home/apt,170,30,4,0.07,1,1 +2366,6309691,Brooklyn,Greenpoint,40.73369,-73.95854,Entire home/apt,139,1,284,3.8,2,160 +2367,4910820,Manhattan,Harlem,40.80449,-73.95687,Private room,94,1,30,0.4,1,218 +2368,364351,Manhattan,Upper East Side,40.77068,-73.95867,Private room,115,3,1,0.03,1,0 +2369,2199502,Brooklyn,Fort Greene,40.68675,-73.97713,Entire home/apt,499,2,126,1.75,1,256 +2370,6334250,Brooklyn,Bedford-Stuyvesant,40.68683,-73.92922,Entire home/apt,79,2,198,2.66,1,250 +2371,1908631,Manhattan,East Village,40.72845,-73.98598,Entire home/apt,200,4,26,1.34,1,0 +2372,5644215,Brooklyn,Greenpoint,40.728970000000004,-73.95132,Private room,152,5,13,0.17,1,241 +2373,3696460,Brooklyn,Kensington,40.63381,-73.9714,Private room,50,30,10,0.13,1,205 +2374,6263282,Brooklyn,Williamsburg,40.71813,-73.95981,Entire home/apt,212,2,51,0.91,1,147 +2375,2010724,Manhattan,East Harlem,40.7948,-73.94835,Private room,108,14,4,0.06,3,38 +2376,6376776,Manhattan,West Village,40.738040000000005,-74.00416,Private room,89,30,13,0.18,1,282 +2377,6375533,Manhattan,East Harlem,40.79025,-73.9488,Private room,89,1,273,3.66,2,47 +2378,6385492,Queens,Sunnyside,40.74239,-73.92213000000001,Private room,65,2,12,0.16,1,332 +2379,3496628,Manhattan,Upper West Side,40.785709999999995,-73.97149,Entire home/apt,239,4,3,0.04,1,184 +2380,6387355,Brooklyn,Bushwick,40.69814,-73.92996,Entire home/apt,99,30,13,0.25,2,280 +2381,6388666,Manhattan,Washington Heights,40.84002,-73.9385,Private room,80,2,56,0.76,1,249 +2382,6390340,Manhattan,Washington Heights,40.8532,-73.93225,Private room,125,56,0,,1,365 +2383,6394282,Brooklyn,Greenpoint,40.73135,-73.95489,Private room,55,7,116,1.57,1,308 +2384,6407125,Brooklyn,Bushwick,40.697759999999995,-73.90939,Entire home/apt,160,2,31,0.42,1,0 +2385,6395317,Manhattan,Nolita,40.72011,-73.99468,Private room,100,15,5,0.08,1,197 +2386,6414296,Manhattan,Hell's Kitchen,40.7593,-73.99143000000001,Entire home/apt,1000,1,0,,1,365 +2387,6414916,Manhattan,Greenwich Village,40.7302,-74.00165,Entire home/apt,225,2,136,1.83,1,10 +2388,6415261,Brooklyn,Flatbush,40.63641,-73.96712,Private room,35,30,0,,1,317 +2389,4922378,Manhattan,Midtown,40.74568,-73.98321,Entire home/apt,275,7,6,0.08,1,191 +2390,6387598,Brooklyn,Bedford-Stuyvesant,40.68177,-73.9389,Entire home/apt,200,2,80,3.93,1,109 +2391,5189987,Manhattan,SoHo,40.7252,-74.00279,Entire home/apt,190,4,25,0.34,1,0 +2392,5536387,Brooklyn,Williamsburg,40.71374,-73.94641999999999,Private room,117,2,43,0.59,1,88 +2393,6444977,Manhattan,Midtown,40.74542,-73.98205,Shared room,80,1,66,0.89,1,365 +2394,6445684,Brooklyn,Canarsie,40.64298,-73.89035,Entire home/apt,99,1,93,1.28,1,311 +2395,6447462,Manhattan,Washington Heights,40.8506,-73.94023,Entire home/apt,70,6,19,0.26,1,188 +2396,2559004,Manhattan,East Harlem,40.80393,-73.94046,Private room,44,30,2,0.03,5,325 +2397,3274316,Manhattan,Harlem,40.8004,-73.95645,Private room,125,1,85,1.15,1,301 +2398,6030235,Manhattan,Lower East Side,40.71646,-73.97655999999999,Entire home/apt,130,2,32,0.44,1,184 +2399,6459215,Manhattan,Upper East Side,40.768409999999996,-73.95213000000001,Entire home/apt,130,14,8,0.11,1,332 +2400,6467086,Manhattan,Chelsea,40.746520000000004,-74.00089,Private room,125,2,228,3.07,1,53 +2401,6470443,Manhattan,Hell's Kitchen,40.76636,-73.9855,Entire home/apt,199,7,30,0.52,1,184 +2402,6471326,Brooklyn,East Flatbush,40.64513,-73.94944,Private room,89,2,0,,1,365 +2403,6436296,Brooklyn,Prospect Heights,40.67839,-73.96623000000001,Entire home/apt,155,4,125,1.68,1,297 +2404,6472794,Queens,Long Island City,40.74984,-73.91834,Private room,60,1,0,,1,0 +2405,732985,Manhattan,Chelsea,40.73984,-74.00187,Entire home/apt,248,2,9,0.12,1,363 +2406,6474981,Manhattan,Upper West Side,40.779379999999996,-73.98721,Entire home/apt,85,4,42,1.44,1,9 +2407,6482637,Manhattan,Upper West Side,40.79631,-73.96152,Private room,85,3,118,1.61,1,0 +2408,6483295,Brooklyn,Bay Ridge,40.637190000000004,-74.03489,Entire home/apt,80,3,38,0.53,1,192 +2409,6486116,Manhattan,East Harlem,40.789429999999996,-73.94726,Private room,79,1,38,0.6,4,106 +2410,6471461,Queens,Ridgewood,40.70823,-73.89925,Private room,55,1,224,3.87,2,356 +2411,6494389,Bronx,Port Morris,40.80904,-73.93037,Private room,65,2,64,0.87,1,307 +2412,6501414,Manhattan,Hell's Kitchen,40.76161,-73.99452,Entire home/apt,150,60,7,0.1,1,188 +2413,867249,Manhattan,Tribeca,40.71976,-74.00571,Entire home/apt,285,2,124,1.7,1,131 +2414,3202825,Queens,Astoria,40.76797,-73.92858000000001,Entire home/apt,119,7,11,0.63,1,143 +2415,6514245,Brooklyn,Brighton Beach,40.57519,-73.95468000000001,Entire home/apt,137,2,59,0.81,1,80 +2416,6525255,Manhattan,Upper East Side,40.76703,-73.95413,Entire home/apt,190,2,191,2.6,1,282 +2417,6527494,Manhattan,Two Bridges,40.711659999999995,-73.9972,Private room,80,1,1,0.03,1,0 +2418,6531502,Brooklyn,Bedford-Stuyvesant,40.68647,-73.95909,Entire home/apt,120,3,155,2.39,1,18 +2419,6532132,Brooklyn,East Flatbush,40.651759999999996,-73.93451999999999,Entire home/apt,95,3,105,1.42,1,333 +2420,4324767,Manhattan,Washington Heights,40.83448,-73.94476,Private room,90,1,33,0.48,1,189 +2421,2360794,Brooklyn,Clinton Hill,40.69258,-73.96649000000001,Private room,75,3,11,0.16,1,318 +2422,2020556,Queens,Astoria,40.75962,-73.92175999999999,Shared room,50,1,0,,1,0 +2423,6554341,Brooklyn,Crown Heights,40.67463,-73.91811,Private room,103,8,5,0.21,1,2 +2424,6575712,Manhattan,East Village,40.73138,-73.98807,Entire home/apt,125,2,28,0.45,1,179 +2425,6582962,Brooklyn,Fort Greene,40.69486,-73.97131999999999,Entire home/apt,150,2,213,2.87,1,288 +2426,6602545,Brooklyn,South Slope,40.6672,-73.98986,Private room,50,90,0,,2,0 +2427,396433,Manhattan,East Village,40.724990000000005,-73.98127,Private room,148,3,14,0.24,1,365 +2428,2910509,Manhattan,East Village,40.724340000000005,-73.97715,Entire home/apt,120,29,10,0.17,1,3 +2429,622855,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92885,Entire home/apt,99,3,68,0.97,2,270 +2430,3007815,Queens,Ditmars Steinway,40.77147,-73.9166,Private room,69,2,103,1.39,2,124 +2431,2554853,Manhattan,Midtown,40.75099,-73.96994000000001,Entire home/apt,200,1,7,0.1,1,358 +2432,3166165,Manhattan,Washington Heights,40.851209999999995,-73.93734,Private room,55,5,4,0.07,1,218 +2433,6625516,Manhattan,Upper West Side,40.788059999999994,-73.97969,Entire home/apt,175,8,3,0.04,1,68 +2434,6626827,Manhattan,Hell's Kitchen,40.76247,-73.99294,Private room,240,4,77,1.81,1,21 +2435,6632440,Manhattan,Harlem,40.82393,-73.95308,Private room,95,7,2,0.03,2,365 +2436,5720054,Queens,Arverne,40.592040000000004,-73.78665,Entire home/apt,150,1,109,1.49,1,358 +2437,6533489,Brooklyn,Crown Heights,40.67394,-73.95951,Entire home/apt,150,2,1,0.04,1,0 +2438,645887,Brooklyn,Williamsburg,40.71317,-73.94851,Entire home/apt,179,3,146,2.08,2,282 +2439,6642777,Brooklyn,Williamsburg,40.71024,-73.9517,Private room,105,1,374,5.06,2,69 +2440,4532557,Brooklyn,Williamsburg,40.70653,-73.9462,Entire home/apt,84,45,45,0.61,1,244 +2441,2050338,Queens,Richmond Hill,40.694140000000004,-73.82538000000001,Entire home/apt,90,30,33,0.46,3,298 +2442,3757699,Manhattan,East Harlem,40.79293,-73.94048000000001,Entire home/apt,53,7,7,0.33,2,0 +2443,2559004,Manhattan,East Harlem,40.8035,-73.94041,Private room,41,30,4,0.09,5,217 +2444,5962196,Manhattan,Flatiron District,40.74389,-73.99159,Private room,135,1,17,0.25,1,365 +2445,3475005,Queens,Queens Village,40.70382,-73.73955,Entire home/apt,84,2,172,2.32,2,345 +2446,6672450,Manhattan,Tribeca,40.71908,-74.00546,Entire home/apt,290,1,21,0.29,1,128 +2447,3571821,Brooklyn,Bedford-Stuyvesant,40.69122,-73.95648,Shared room,35,5,110,1.49,4,0 +2448,6682511,Queens,Ditmars Steinway,40.775459999999995,-73.91571,Entire home/apt,110,3,23,0.67,1,14 +2449,2888900,Brooklyn,Greenpoint,40.72992,-73.95628,Entire home/apt,350,7,4,0.06,2,0 +2450,6688471,Brooklyn,Bedford-Stuyvesant,40.69652,-73.93548,Private room,60,3,13,0.22,1,294 +2451,5309521,Brooklyn,Williamsburg,40.71333,-73.96605,Entire home/apt,220,5,0,,1,234 +2452,3086048,Brooklyn,Williamsburg,40.717040000000004,-73.95789,Entire home/apt,275,4,27,0.37,1,197 +2453,2305477,Brooklyn,Fort Greene,40.68764,-73.97545,Entire home/apt,142,7,6,0.11,1,188 +2454,6706914,Brooklyn,Crown Heights,40.67322,-73.95846999999999,Private room,38,5,1,0.02,2,0 +2455,6706578,Manhattan,Harlem,40.81691,-73.94251,Entire home/apt,100,60,0,,1,365 +2456,5894425,Manhattan,Hell's Kitchen,40.76168,-73.9949,Entire home/apt,200,2,52,0.71,1,193 +2457,3547817,Brooklyn,Williamsburg,40.71038,-73.96299,Entire home/apt,225,3,56,0.79,1,55 +2458,6721198,Manhattan,Upper East Side,40.781040000000004,-73.94915999999999,Entire home/apt,135,1,190,2.57,1,105 +2459,4185151,Manhattan,Harlem,40.8291,-73.94816,Private room,72,30,3,0.05,1,179 +2460,6270968,Brooklyn,Bedford-Stuyvesant,40.68185,-73.94108,Private room,59,3,13,0.26,2,100 +2461,6581587,Brooklyn,Crown Heights,40.665209999999995,-73.95427,Entire home/apt,350,2,23,0.37,1,188 +2462,6755111,Brooklyn,Kensington,40.6412,-73.9786,Private room,75,2,8,0.11,1,312 +2463,6762247,Brooklyn,Bushwick,40.69107,-73.91995,Private room,70,3,12,0.65,2,0 +2464,900154,Manhattan,Harlem,40.80545,-73.95563,Entire home/apt,99,30,4,0.09,1,0 +2465,6762657,Brooklyn,Cypress Hills,40.68287,-73.87295,Private room,42,3,28,0.74,2,355 +2466,2873394,Brooklyn,Bushwick,40.69822,-73.93517,Private room,60,2,11,0.15,2,296 +2467,6781477,Brooklyn,Bedford-Stuyvesant,40.69324,-73.93217,Entire home/apt,125,1,153,2.21,1,1 +2468,3363749,Brooklyn,Williamsburg,40.7084,-73.94153,Private room,99,6,148,2.09,3,252 +2469,6789857,Brooklyn,Prospect Heights,40.67321,-73.96574,Entire home/apt,99,5,12,0.25,1,0 +2470,6774871,Brooklyn,Bedford-Stuyvesant,40.68065,-73.95154000000001,Entire home/apt,165,3,130,1.84,1,0 +2471,6819812,Brooklyn,Kensington,40.6458,-73.97097,Entire home/apt,250,5,11,0.15,1,34 +2472,2868153,Brooklyn,Williamsburg,40.7149,-73.93983,Private room,135,4,12,0.17,1,365 +2473,6824711,Manhattan,Harlem,40.82427,-73.94428,Private room,58,5,66,0.91,1,242 +2474,4656534,Manhattan,Upper East Side,40.77244,-73.95206,Entire home/apt,250,3,0,,1,10 +2475,5561816,Manhattan,Upper West Side,40.783229999999996,-73.98105,Private room,95,3,191,2.61,1,207 +2476,4995411,Manhattan,Upper East Side,40.76398,-73.9589,Entire home/apt,125,1,92,1.27,1,247 +2477,1537501,Brooklyn,Park Slope,40.67157,-73.9852,Entire home/apt,147,7,42,0.61,1,365 +2478,6854750,Manhattan,Harlem,40.80707,-73.94884,Entire home/apt,300,3,66,1.62,1,286 +2479,6866620,Manhattan,Flatiron District,40.74119,-73.99168,Entire home/apt,350,14,4,0.06,1,5 +2480,6873370,Brooklyn,Sunset Park,40.66134,-73.98844,Entire home/apt,102,2,24,0.34,1,0 +2481,6881792,Manhattan,Harlem,40.81388,-73.95105,Private room,95,5,206,2.89,1,252 +2482,6885157,Brooklyn,Bedford-Stuyvesant,40.68388,-73.95019,Private room,65,1,85,1.16,15,345 +2483,809716,Brooklyn,Prospect-Lefferts Gardens,40.65994,-73.95891999999999,Entire home/apt,350,5,0,,1,365 +2484,2737373,Manhattan,Chelsea,40.74984,-73.99481999999999,Entire home/apt,595,3,106,1.51,1,247 +2485,6882340,Manhattan,Upper West Side,40.78815,-73.9737,Shared room,165,3,21,0.29,1,363 +2486,6893861,Brooklyn,Bedford-Stuyvesant,40.68445,-73.93785,Entire home/apt,181,3,153,3.17,1,174 +2487,6897732,Manhattan,Midtown,40.74331,-73.98351,Private room,110,1,4,0.05,1,0 +2488,6885157,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95012,Private room,65,1,119,1.61,15,313 +2489,6901734,Brooklyn,Clinton Hill,40.68843,-73.96239,Entire home/apt,155,2,114,1.82,1,314 +2490,5619749,Brooklyn,Bedford-Stuyvesant,40.68919,-73.95399,Private room,50,30,1,0.03,2,253 +2491,2243431,Queens,Glendale,40.70518,-73.89133000000001,Entire home/apt,85,2,1,0.02,1,0 +2492,6912221,Brooklyn,Williamsburg,40.7084,-73.92642,Private room,120,5,6,0.26,1,66 +2493,2246253,Brooklyn,Bedford-Stuyvesant,40.69585,-73.9446,Private room,75,1,2,0.03,1,0 +2494,6885157,Brooklyn,Bedford-Stuyvesant,40.6824,-73.95039,Private room,55,1,127,1.77,15,318 +2495,6903334,Brooklyn,Brooklyn Heights,40.70117,-73.99146999999999,Private room,200,1,3,0.05,1,0 +2496,6949594,Brooklyn,Williamsburg,40.70971,-73.95621,Entire home/apt,75,7,10,0.15,1,0 +2497,836911,Brooklyn,Windsor Terrace,40.65641,-73.97936999999999,Entire home/apt,150,1,1,0.02,3,129 +2498,6959061,Bronx,Mott Haven,40.812909999999995,-73.90772,Private room,60,2,147,2.02,1,213 +2499,3967827,Brooklyn,Crown Heights,40.668859999999995,-73.95411999999999,Entire home/apt,150,50,4,0.07,1,312 +2500,3891706,Brooklyn,Williamsburg,40.71737,-73.96396,Entire home/apt,240,1,77,1.08,1,116 +2501,6970732,Manhattan,East Harlem,40.78747,-73.95276,Private room,150,3,18,0.25,1,0 +2502,6970929,Manhattan,East Village,40.7216,-73.98204,Entire home/apt,200,3,0,,1,0 +2503,2577135,Manhattan,Financial District,40.70735,-74.00971,Entire home/apt,269,5,18,0.29,1,179 +2504,4365496,Brooklyn,Williamsburg,40.70794,-73.96077,Private room,112,2,9,0.37,2,0 +2505,6989825,Brooklyn,Carroll Gardens,40.68013,-73.99396999999999,Entire home/apt,250,5,49,0.67,1,0 +2506,5768571,Brooklyn,Prospect Heights,40.67731,-73.96401999999999,Entire home/apt,390,3,0,,1,28 +2507,6986713,Manhattan,Financial District,40.70946,-74.01235,Entire home/apt,350,3,27,0.37,1,22 +2508,7016230,Manhattan,Lower East Side,40.7191,-73.98866,Entire home/apt,80,3,67,0.92,1,85 +2509,1240820,Brooklyn,Williamsburg,40.71787,-73.95585,Entire home/apt,295,2,114,1.59,3,79 +2510,6602545,Brooklyn,South Slope,40.66812,-73.99022,Private room,160,30,1,1.0,2,39 +2511,2078796,Manhattan,Chinatown,40.71634,-73.99031,Entire home/apt,399,2,2,0.05,1,0 +2512,7020798,Manhattan,Greenwich Village,40.73104,-73.99956999999999,Entire home/apt,150,12,16,0.22,1,35 +2513,6885157,Brooklyn,Bedford-Stuyvesant,40.68322,-73.95085,Private room,60,1,142,1.95,15,321 +2514,7022451,Manhattan,Greenwich Village,40.72948,-73.99956999999999,Entire home/apt,219,6,45,0.64,1,188 +2515,4393626,Manhattan,Chelsea,40.7433,-73.99831999999999,Private room,119,4,106,1.47,2,23 +2516,306825,Brooklyn,Williamsburg,40.7132,-73.96798000000001,Entire home/apt,190,4,1,0.02,1,0 +2517,7041410,Manhattan,Upper West Side,40.79475,-73.976,Private room,140,5,90,1.37,1,16 +2518,4855335,Brooklyn,Williamsburg,40.708940000000005,-73.94135,Private room,125,2,4,0.08,1,364 +2519,7055547,Manhattan,West Village,40.73532,-74.00448,Entire home/apt,144,4,27,0.39,1,0 +2520,4069241,Brooklyn,Brooklyn Heights,40.69424,-73.99313000000001,Private room,1500,1,0,,1,0 +2521,2135948,Queens,Astoria,40.76788,-73.92334,Entire home/apt,100,1,102,1.73,1,33 +2522,7073209,Brooklyn,Fort Greene,40.68846,-73.97567,Private room,115,2,57,2.67,2,288 +2523,2214774,Manhattan,West Village,40.73305,-74.00412,Entire home/apt,1899,7,18,0.28,1,0 +2524,3003533,Manhattan,Washington Heights,40.84346,-73.94471,Entire home/apt,110,29,10,0.14,1,205 +2525,430826,Manhattan,West Village,40.73384,-74.00461999999999,Entire home/apt,140,14,51,0.7,1,298 +2526,2687920,Manhattan,Morningside Heights,40.80777,-73.96703000000001,Entire home/apt,94,2,1,0.12,1,3 +2527,7089676,Manhattan,Midtown,40.75728,-73.97152,Private room,50,1,49,0.91,1,14 +2528,7090408,Brooklyn,Williamsburg,40.70706,-73.95071,Entire home/apt,131,4,68,1.06,1,5 +2529,7073209,Brooklyn,Fort Greene,40.68809,-73.97578,Private room,175,2,5,0.13,2,334 +2530,7092157,Brooklyn,Kensington,40.64342,-73.97851,Entire home/apt,299,3,4,0.06,1,321 +2531,7096964,Manhattan,SoHo,40.72098,-73.99869,Entire home/apt,145,30,12,0.17,1,342 +2532,5230482,Manhattan,Harlem,40.82612,-73.95215999999999,Entire home/apt,145,2,64,0.91,1,132 +2533,5444717,Manhattan,Greenwich Village,40.72805,-73.99871,Entire home/apt,175,2,2,0.03,1,0 +2534,6714376,Manhattan,Gramercy,40.73227,-73.98451,Private room,109,5,5,0.07,1,22 +2535,5435074,Manhattan,Upper West Side,40.80274,-73.96459,Private room,150,1,28,0.51,1,364 +2536,7111113,Brooklyn,Bedford-Stuyvesant,40.69582,-73.94989,Private room,133,7,0,,1,0 +2537,7112116,Manhattan,Hell's Kitchen,40.76248,-73.98597,Entire home/apt,399,3,108,1.51,2,351 +2538,1785016,Brooklyn,Crown Heights,40.67396,-73.96083,Private room,48,25,4,0.06,1,311 +2539,2015914,Brooklyn,Bushwick,40.68799,-73.91677,Private room,75,3,73,1.0,8,341 +2540,7130382,Brooklyn,Clinton Hill,40.68371,-73.96461,Private room,55,1,3,0.06,2,343 +2541,7136700,Brooklyn,Crown Heights,40.677820000000004,-73.95385999999999,Private room,75,3,107,1.7,4,255 +2542,7138163,Manhattan,East Village,40.72353,-73.99059,Entire home/apt,465,30,11,0.18,1,273 +2543,7120328,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.94819,Entire home/apt,151,1,173,2.36,1,213 +2544,7139147,Brooklyn,Williamsburg,40.71063,-73.96774,Entire home/apt,199,3,6,0.08,1,12 +2545,6885157,Brooklyn,Bedford-Stuyvesant,40.68325,-73.94975,Private room,45,1,117,1.61,15,236 +2546,772862,Brooklyn,Clinton Hill,40.68645,-73.96587,Entire home/apt,160,3,24,0.33,1,365 +2547,2478675,Brooklyn,Flatbush,40.653929999999995,-73.95845,Private room,36,1,173,2.38,5,360 +2548,7169746,Manhattan,Upper East Side,40.774440000000006,-73.95908,Entire home/apt,235,2,10,0.2,1,345 +2549,7178784,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9489,Entire home/apt,225,4,5,0.07,1,365 +2550,7183070,Manhattan,East Village,40.72188,-73.9816,Entire home/apt,300,3,19,0.27,1,0 +2551,3571821,Brooklyn,Bedford-Stuyvesant,40.69081,-73.95626999999999,Shared room,35,5,120,1.66,4,0 +2552,6002245,Queens,Astoria,40.76062,-73.9175,Entire home/apt,80,70,44,0.61,1,198 +2553,2989617,Queens,Woodside,40.74265,-73.89780999999999,Private room,79,2,61,0.93,1,353 +2554,7182180,Manhattan,Washington Heights,40.857040000000005,-73.93789,Private room,82,1,6,0.1,2,334 +2555,7182180,Manhattan,Washington Heights,40.856770000000004,-73.93727,Private room,82,1,5,0.07,2,311 +2556,4932354,Brooklyn,Prospect Heights,40.67915,-73.97125,Entire home/apt,215,3,2,0.09,4,189 +2557,7195403,Brooklyn,Williamsburg,40.71058,-73.96243,Entire home/apt,147,3,14,0.2,2,0 +2558,7165563,Manhattan,Kips Bay,40.740190000000005,-73.98115,Entire home/apt,145,2,26,0.43,1,269 +2559,7240751,Brooklyn,Crown Heights,40.67475,-73.9465,Private room,65,3,72,1.22,1,157 +2560,514261,Brooklyn,South Slope,40.66701,-73.98703,Private room,78,3,24,0.33,3,28 +2561,7205838,Queens,Long Island City,40.76592,-73.93428,Entire home/apt,120,3,2,0.05,1,0 +2562,3290436,Brooklyn,Flatbush,40.65335,-73.96257,Entire home/apt,120,3,13,0.28,2,327 +2563,5957620,Manhattan,Lower East Side,40.71925,-73.99123,Private room,95,1,86,2.87,1,86 +2564,124357,Brooklyn,Williamsburg,40.715709999999994,-73.95813000000001,Private room,90,1,115,1.63,3,359 +2565,2014720,Brooklyn,Williamsburg,40.712759999999996,-73.95022,Entire home/apt,95,25,11,0.15,1,168 +2566,7187069,Brooklyn,Williamsburg,40.703920000000004,-73.93635,Entire home/apt,100,7,41,0.58,1,45 +2567,7220851,Manhattan,Midtown,40.76417,-73.97704,Entire home/apt,350,6,3,0.22,1,351 +2568,2671491,Brooklyn,Bedford-Stuyvesant,40.69811,-73.95557,Entire home/apt,188,3,38,0.54,1,261 +2569,7027562,Queens,Queens Village,40.725120000000004,-73.73986,Private room,80,1,5,0.07,1,363 +2570,7125872,Manhattan,West Village,40.73896,-74.00522,Entire home/apt,175,4,5,0.07,1,0 +2571,671579,Brooklyn,Carroll Gardens,40.6838,-73.99849,Entire home/apt,495,7,4,0.08,1,256 +2572,4581902,Manhattan,Little Italy,40.71833,-73.99826,Entire home/apt,250,3,155,2.18,1,159 +2573,4202236,Brooklyn,Williamsburg,40.716570000000004,-73.9597,Entire home/apt,115,7,3,0.04,1,0 +2574,6885157,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95167,Private room,55,1,75,1.04,15,285 +2575,7245581,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,93,39,25,0.35,19,245 +2576,7245581,Manhattan,Chelsea,40.75032,-73.99676,Entire home/apt,93,120,34,0.47,19,316 +2577,1673136,Manhattan,Chelsea,40.73981,-74.0016,Entire home/apt,199,3,35,0.49,1,69 +2578,7236564,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93478,Private room,70,2,6,0.1,1,0 +2579,7251483,Manhattan,Inwood,40.86446,-73.92694,Entire home/apt,125,6,0,,1,0 +2580,1475015,Manhattan,Upper West Side,40.76934,-73.9863,Entire home/apt,125,30,2,0.04,52,282 +2581,7273689,Manhattan,Upper East Side,40.77207,-73.95923,Entire home/apt,169,7,11,0.2,1,24 +2582,7281456,Brooklyn,Williamsburg,40.70816,-73.93930999999999,Entire home/apt,150,2,24,0.53,1,296 +2583,7281500,Manhattan,Harlem,40.82343,-73.94507,Private room,61,1,86,1.83,1,233 +2584,3239771,Brooklyn,Crown Heights,40.67275,-73.95144,Private room,40,7,14,0.2,2,221 +2585,5605755,Brooklyn,Williamsburg,40.71652,-73.94309,Entire home/apt,150,3,52,0.72,1,342 +2586,7308715,Brooklyn,Fort Greene,40.69774,-73.97076,Private room,65,2,14,0.2,1,275 +2587,7309046,Bronx,Kingsbridge,40.88166,-73.91103000000001,Private room,90,3,0,,1,353 +2588,7309232,Manhattan,Harlem,40.808609999999994,-73.94574,Entire home/apt,190,3,123,1.73,3,248 +2589,7310886,Brooklyn,Williamsburg,40.711009999999995,-73.95164,Private room,79,2,11,0.8,1,73 +2590,2061760,Brooklyn,Bedford-Stuyvesant,40.69376,-73.93776,Entire home/apt,225,3,230,3.31,1,259 +2591,7309232,Manhattan,Harlem,40.80862,-73.94516,Entire home/apt,185,3,141,2.0,3,258 +2592,1330500,Brooklyn,Crown Heights,40.674209999999995,-73.9504,Private room,100,2,8,0.11,1,156 +2593,7320160,Manhattan,Harlem,40.80887,-73.94756,Private room,85,2,146,2.01,1,129 +2594,5569141,Manhattan,Morningside Heights,40.809979999999996,-73.95898000000001,Private room,75,2,20,0.33,1,29 +2595,2035472,Brooklyn,Williamsburg,40.714490000000005,-73.95905,Private room,85,3,2,0.32,1,89 +2596,7318649,Brooklyn,Bedford-Stuyvesant,40.68208,-73.93115,Entire home/apt,98,3,144,2.87,1,249 +2597,6414252,Brooklyn,Kensington,40.64734,-73.97334000000001,Entire home/apt,262,30,1,0.02,1,16 +2598,7341015,Queens,Long Island City,40.743179999999995,-73.95108,Entire home/apt,145,2,30,0.42,1,278 +2599,7341851,Manhattan,Upper East Side,40.76178,-73.96713000000001,Entire home/apt,280,2,7,0.11,1,365 +2600,7021990,Manhattan,East Village,40.72685,-73.97874,Entire home/apt,210,5,11,0.18,1,8 +2601,1631330,Brooklyn,Fort Greene,40.68842,-73.97780999999999,Entire home/apt,70,15,2,0.03,1,0 +2602,7136700,Brooklyn,Bedford-Stuyvesant,40.67927,-73.94252,Entire home/apt,100,3,162,2.24,4,141 +2603,7353062,Manhattan,NoHo,40.72631,-73.99387,Entire home/apt,250,1,0,,1,0 +2604,306394,Brooklyn,Bedford-Stuyvesant,40.6842,-73.9177,Private room,59,1,123,2.23,1,336 +2605,4783987,Manhattan,East Village,40.727579999999996,-73.97762,Private room,199,1,141,4.51,1,130 +2606,1411399,Manhattan,Midtown,40.75639,-73.96558,Entire home/apt,219,1,78,1.1,5,301 +2607,6776157,Brooklyn,Prospect Heights,40.67738,-73.96509,Private room,100,1,96,1.36,2,333 +2608,3599914,Brooklyn,Park Slope,40.672740000000005,-73.97339000000001,Entire home/apt,175,30,58,0.81,1,220 +2609,176903,Manhattan,West Village,40.734320000000004,-74.00305999999999,Private room,220,1,2,0.03,2,364 +2610,2712353,Brooklyn,Cypress Hills,40.68822,-73.8759,Private room,40,28,91,1.25,4,325 +2611,7387960,Manhattan,Harlem,40.8266,-73.94443000000001,Private room,120,15,0,,1,365 +2612,7388499,Brooklyn,Park Slope,40.66945,-73.98156999999999,Entire home/apt,140,2,24,0.38,1,255 +2613,4194894,Manhattan,Nolita,40.72122,-73.99395,Private room,105,1,16,0.23,2,308 +2614,3470583,Brooklyn,Williamsburg,40.71327,-73.93979,Entire home/apt,110,10,6,0.08,1,13 +2615,287122,Brooklyn,Clinton Hill,40.690740000000005,-73.96619,Entire home/apt,131,7,140,1.94,1,32 +2616,7409102,Manhattan,SoHo,40.724109999999996,-73.99865,Entire home/apt,265,4,95,1.31,1,257 +2617,7419960,Manhattan,Roosevelt Island,40.76175,-73.95012,Private room,54,30,5,0.15,1,2 +2618,176903,Manhattan,West Village,40.73268,-74.00314,Entire home/apt,800,1,2,0.03,2,364 +2619,697442,Brooklyn,East Flatbush,40.64895,-73.94838,Private room,53,1,245,3.41,3,90 +2620,7437876,Manhattan,Washington Heights,40.833,-73.93806,Entire home/apt,99,3,5,0.07,1,365 +2621,1286275,Brooklyn,Bushwick,40.7041,-73.92418,Private room,65,5,39,0.56,1,187 +2622,5386695,Brooklyn,Williamsburg,40.71668,-73.94083,Private room,55,28,0,,1,365 +2623,7460434,Manhattan,East Village,40.72383,-73.9829,Private room,120,3,90,1.25,2,173 +2624,7461332,Manhattan,Upper West Side,40.79801,-73.97045,Entire home/apt,169,120,3,0.04,1,36 +2625,7463731,Manhattan,Chelsea,40.74572,-73.99637,Entire home/apt,180,4,28,0.4,1,280 +2626,7465509,Brooklyn,Bedford-Stuyvesant,40.68732,-73.93004,Private room,67,7,2,1.0,1,14 +2627,7475363,Manhattan,Upper East Side,40.76723,-73.9551,Private room,111,2,77,1.1,2,259 +2628,7458733,Manhattan,SoHo,40.72466,-74.0042,Private room,90,1,77,2.0,1,269 +2629,6245535,Brooklyn,Carroll Gardens,40.68298,-73.99171,Entire home/apt,259,1,2,0.04,1,0 +2630,40100,Manhattan,Upper West Side,40.76977,-73.98638000000001,Private room,89,3,231,4.67,2,38 +2631,7503643,Brooklyn,Greenpoint,40.72456,-73.94343,Entire home/apt,129,30,7,0.11,52,189 +2632,969279,Brooklyn,Bushwick,40.697309999999995,-73.92416999999999,Private room,69,2,98,1.36,1,20 +2633,7474069,Manhattan,Washington Heights,40.8469,-73.94521999999999,Private room,75,4,14,0.23,3,0 +2634,1873589,Brooklyn,Crown Heights,40.67071,-73.94752,Entire home/apt,250,5,25,0.35,1,220 +2635,5959653,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92364,Entire home/apt,120,1,226,3.22,2,274 +2636,7503643,Brooklyn,Greenpoint,40.72756,-73.9423,Entire home/apt,129,30,6,0.09,52,249 +2637,1517723,Brooklyn,Prospect Heights,40.6775,-73.96509,Entire home/apt,199,28,33,0.47,1,315 +2638,346356,Brooklyn,Fort Greene,40.68996,-73.97855,Entire home/apt,450,3,82,1.19,1,258 +2639,6083756,Manhattan,Nolita,40.72352,-73.99498,Entire home/apt,217,30,0,,1,293 +2640,1705617,Brooklyn,Fort Hamilton,40.623470000000005,-74.0359,Entire home/apt,90,7,0,,1,0 +2641,7553984,Manhattan,Upper East Side,40.76893,-73.95966999999999,Entire home/apt,350,3,53,0.79,1,87 +2642,7556987,Manhattan,Morningside Heights,40.80684,-73.96404,Entire home/apt,160,24,10,0.18,1,218 +2643,7130382,Brooklyn,Greenpoint,40.72991,-73.95208000000001,Private room,45,4,7,0.21,2,88 +2644,7557833,Brooklyn,Bedford-Stuyvesant,40.69243,-73.94547,Private room,70,3,54,0.77,5,316 +2645,7558452,Manhattan,East Village,40.72463,-73.98938000000001,Entire home/apt,260,1,320,5.68,2,253 +2646,7566397,Queens,Sunnyside,40.74342,-73.92635,Entire home/apt,100,30,2,0.06,1,250 +2647,2362862,Brooklyn,Red Hook,40.676109999999994,-74.01635,Entire home/apt,125,3,23,0.64,1,77 +2648,7573341,Brooklyn,Sunset Park,40.63947,-74.01888000000001,Entire home/apt,195,2,220,3.1,2,287 +2649,212738,Brooklyn,Bushwick,40.69916,-73.92219,Private room,58,5,31,0.43,1,297 +2650,754675,Manhattan,Harlem,40.82036,-73.95589,Private room,75,5,3,0.16,1,0 +2651,7576337,Manhattan,SoHo,40.72587,-74.00186,Entire home/apt,200,4,68,0.95,1,21 +2652,7557833,Brooklyn,Bedford-Stuyvesant,40.69063,-73.94534,Private room,75,2,33,0.52,5,201 +2653,7557833,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94673,Private room,95,2,44,0.64,5,47 +2654,7581642,Brooklyn,Williamsburg,40.70759,-73.92678000000001,Private room,99,2,189,2.63,1,0 +2655,7591257,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94201,Private room,275,3,20,0.34,1,257 +2656,5761173,Brooklyn,Downtown Brooklyn,40.69648,-73.98261,Entire home/apt,162,2,11,0.44,1,0 +2657,2594389,Manhattan,Chelsea,40.742059999999995,-73.99499,Entire home/apt,200,3,0,,1,345 +2658,7603226,Manhattan,SoHo,40.72347,-74.00488,Entire home/apt,285,5,11,0.16,1,173 +2659,4165498,Manhattan,East Harlem,40.79813,-73.93132,Entire home/apt,120,7,64,0.91,2,184 +2660,7499240,Manhattan,Washington Heights,40.8392,-73.94216,Entire home/apt,120,1,76,1.07,2,314 +2661,4129805,Manhattan,West Village,40.730779999999996,-74.00282,Entire home/apt,210,2,140,2.1,5,319 +2662,7628445,Brooklyn,Park Slope,40.67317,-73.97676,Private room,160,30,25,0.35,1,363 +2663,7633037,Manhattan,West Village,40.73721,-74.00973,Entire home/apt,110,6,1,0.1,2,0 +2664,2357027,Brooklyn,Williamsburg,40.71419,-73.95042,Entire home/apt,200,7,0,,1,345 +2665,3349838,Queens,Long Island City,40.74449,-73.95201,Entire home/apt,138,1,4,0.06,1,41 +2666,7654246,Manhattan,Chelsea,40.740359999999995,-74.00138000000001,Private room,90,3,5,0.11,1,0 +2667,7659871,Brooklyn,Prospect-Lefferts Gardens,40.65671,-73.9622,Private room,45,30,21,0.45,1,21 +2668,1403769,Brooklyn,Sunset Park,40.64674,-74.01043,Entire home/apt,80,30,18,0.31,1,161 +2669,1862491,Brooklyn,Williamsburg,40.714059999999996,-73.94965,Private room,70,10,0,,1,365 +2670,7670501,Brooklyn,Bedford-Stuyvesant,40.6937,-73.93104,Private room,72,7,41,0.58,1,68 +2671,7672728,Manhattan,East Village,40.72418,-73.98283,Private room,95,14,172,2.39,1,14 +2672,5531489,Brooklyn,Bedford-Stuyvesant,40.68584,-73.9263,Private room,75,5,13,0.56,1,3 +2673,7676839,Queens,Astoria,40.76781,-73.92684,Entire home/apt,70,20,75,1.05,1,364 +2674,7654662,Brooklyn,Williamsburg,40.71385,-73.93861,Entire home/apt,160,6,1,0.01,1,0 +2675,5912572,Brooklyn,Flatbush,40.63899,-73.95177,Shared room,29,2,5,0.07,1,321 +2676,7681637,Brooklyn,South Slope,40.66453,-73.97912,Entire home/apt,175,3,62,1.46,1,213 +2677,7681692,Queens,Astoria,40.76924,-73.91776,Private room,75,6,0,,1,180 +2678,7683052,Manhattan,Greenwich Village,40.72998,-73.99999,Private room,110,3,7,0.12,1,0 +2679,266878,Brooklyn,Williamsburg,40.71362,-73.93561,Entire home/apt,175,3,199,2.78,1,272 +2680,7691518,Manhattan,Hell's Kitchen,40.768,-73.98695,Private room,99,1,123,1.99,2,245 +2681,7693917,Manhattan,Inwood,40.86457,-73.92749,Private room,100,2,7,0.15,1,36 +2682,33816,Brooklyn,Bedford-Stuyvesant,40.68714,-73.95775,Entire home/apt,144,5,3,0.06,1,0 +2683,5654072,Brooklyn,Flatbush,40.63427,-73.95248000000001,Entire home/apt,171,2,34,1.47,3,243 +2684,3038687,Manhattan,Upper West Side,40.78622,-73.97586,Entire home/apt,99,30,23,0.32,8,89 +2685,3355679,Manhattan,West Village,40.73556,-74.00903000000001,Entire home/apt,270,1,4,0.06,1,0 +2686,4314535,Manhattan,Lower East Side,40.71444,-73.98348,Entire home/apt,160,3,220,3.19,1,24 +2687,7728790,Manhattan,Harlem,40.82407,-73.94434,Private room,65,7,40,0.86,1,64 +2688,7460181,Brooklyn,Bedford-Stuyvesant,40.68238,-73.93795,Entire home/apt,99,3,208,2.89,1,206 +2689,7735666,Manhattan,Harlem,40.81623,-73.94906999999999,Entire home/apt,125,3,232,3.22,1,47 +2690,7388128,Brooklyn,Bedford-Stuyvesant,40.686690000000006,-73.91897,Private room,72,3,0,,1,365 +2691,5908577,Brooklyn,Crown Heights,40.67427,-73.95042,Entire home/apt,300,2,16,0.24,2,41 +2692,7755092,Manhattan,Hell's Kitchen,40.763909999999996,-73.99225,Private room,112,1,196,5.4,1,71 +2693,926743,Brooklyn,Carroll Gardens,40.67947,-73.99709,Entire home/apt,100,30,4,0.06,1,321 +2694,5109475,Brooklyn,Bushwick,40.704440000000005,-73.92005,Private room,60,2,64,0.89,2,87 +2695,7701933,Manhattan,East Village,40.7262,-73.97913,Entire home/apt,232,10,2,0.03,1,234 +2696,1481172,Brooklyn,Williamsburg,40.70823,-73.94405,Private room,138,1,0,,1,29 +2697,5283769,Manhattan,East Village,40.7223,-73.9821,Entire home/apt,140,2,149,2.41,1,16 +2698,213266,Manhattan,Nolita,40.72193,-73.99379,Entire home/apt,5000,1,2,0.03,1,365 +2699,7777902,Brooklyn,Bedford-Stuyvesant,40.68665,-73.93293,Entire home/apt,168,2,1,0.03,1,0 +2700,7779204,Brooklyn,Flatbush,40.64965,-73.96154,Entire home/apt,100,30,49,0.69,1,342 +2701,6122499,Queens,Bellerose,40.73193,-73.74481,Shared room,150,2,0,,1,365 +2702,2780717,Brooklyn,Bushwick,40.69979,-73.92078000000001,Entire home/apt,95,4,21,0.29,1,98 +2703,4028305,Manhattan,Morningside Heights,40.8057,-73.95826,Entire home/apt,175,2,1,0.05,1,0 +2704,683794,Manhattan,West Village,40.73458,-74.00492,Entire home/apt,220,2,13,0.23,1,3 +2705,838704,Manhattan,Upper West Side,40.80028,-73.9618,Entire home/apt,178,32,132,1.84,1,211 +2706,7815949,Brooklyn,Crown Heights,40.67265,-73.9247,Entire home/apt,85,2,67,0.97,1,8 +2707,7645338,Queens,Rego Park,40.72638,-73.85852,Private room,35,4,76,1.07,1,5 +2708,7503643,Brooklyn,Greenpoint,40.72732,-73.94076,Entire home/apt,129,30,6,0.08,52,277 +2709,7831209,Manhattan,East Harlem,40.807590000000005,-73.93839,Private room,55,1,167,2.78,10,363 +2710,3604585,Brooklyn,Flatbush,40.641870000000004,-73.9586,Private room,69,4,34,0.72,3,68 +2711,279845,Brooklyn,Prospect Heights,40.6762,-73.96670999999999,Private room,68,3,11,0.33,2,187 +2712,7833913,Brooklyn,Crown Heights,40.67471,-73.94570999999999,Private room,69,2,90,1.25,1,186 +2713,7837136,Manhattan,Hell's Kitchen,40.76582,-73.99468,Entire home/apt,300,2,23,0.32,1,365 +2714,7850260,Manhattan,Harlem,40.80533,-73.94665,Entire home/apt,175,1,152,4.54,3,248 +2715,7853251,Queens,St. Albans,40.6891,-73.7733,Private room,59,1,190,2.64,5,359 +2716,7853251,Queens,St. Albans,40.69045,-73.77467,Private room,59,1,19,0.26,5,359 +2717,7112116,Manhattan,Theater District,40.761990000000004,-73.98626999999999,Private room,169,2,33,0.47,2,340 +2718,7856381,Brooklyn,Williamsburg,40.70901,-73.95291,Entire home/apt,120,2,1,0.02,1,0 +2719,7858405,Brooklyn,Bedford-Stuyvesant,40.69301,-73.94551,Entire home/apt,155,3,227,3.16,1,244 +2720,7859118,Brooklyn,Williamsburg,40.71915,-73.94060999999999,Entire home/apt,165,2,80,1.28,1,188 +2721,7858210,Manhattan,Harlem,40.81384,-73.93973000000001,Private room,60,2,125,1.77,4,167 +2722,7860852,Brooklyn,Williamsburg,40.71867,-73.9557,Entire home/apt,190,3,10,0.26,2,0 +2723,6263540,Manhattan,West Village,40.73695,-74.00572,Entire home/apt,150,5,3,0.13,1,0 +2724,10528,Manhattan,Upper West Side,40.77864,-73.98437,Entire home/apt,150,30,18,0.29,2,135 +2725,4130492,Brooklyn,Bedford-Stuyvesant,40.69077,-73.95745,Entire home/apt,120,4,26,0.53,1,10 +2726,4260529,Queens,Long Island City,40.746320000000004,-73.94799,Private room,349,1,26,0.36,2,365 +2727,7853251,Queens,St. Albans,40.68872,-73.77373,Private room,59,1,14,0.19,5,359 +2728,3003563,Manhattan,Theater District,40.76035,-73.98026,Shared room,99,2,62,2.22,1,21 +2729,7853251,Queens,St. Albans,40.690540000000006,-73.77306,Private room,59,1,32,0.45,5,359 +2730,2259113,Brooklyn,Williamsburg,40.71215,-73.95636999999999,Private room,110,3,23,0.32,1,159 +2731,823392,Manhattan,East Village,40.72247,-73.97946999999999,Private room,73,12,11,0.16,1,21 +2732,7895068,Manhattan,Chinatown,40.71608,-73.98962,Entire home/apt,179,3,201,2.84,1,256 +2733,7896605,Queens,Sunnyside,40.742340000000006,-73.92579,Private room,102,5,8,0.24,1,0 +2734,2015914,Brooklyn,Bushwick,40.68786,-73.91722,Private room,62,3,95,1.32,8,338 +2735,7897301,Queens,Astoria,40.7703,-73.93306,Entire home/apt,140,2,13,0.18,1,0 +2736,7324189,Manhattan,Midtown,40.76084,-73.96908,Entire home/apt,300,15,6,0.58,2,98 +2737,7901999,Manhattan,Nolita,40.7245,-73.99419,Entire home/apt,299,2,26,0.37,1,88 +2738,1834942,Brooklyn,Clinton Hill,40.69332,-73.96543,Entire home/apt,104,12,11,0.15,1,15 +2739,7245581,Manhattan,Chelsea,40.75029,-73.99556,Entire home/apt,98,120,38,0.54,19,290 +2740,176836,Manhattan,Lower East Side,40.71501,-73.98061,Private room,49,1,90,1.29,1,0 +2741,7245581,Manhattan,Chelsea,40.75028,-73.99533000000001,Entire home/apt,96,115,45,0.63,19,210 +2742,5464042,Brooklyn,Williamsburg,40.70952,-73.95078000000001,Private room,80,3,130,1.85,1,0 +2743,7809536,Brooklyn,Crown Heights,40.68007,-73.96334,Private room,89,3,147,2.05,1,362 +2744,7919277,Manhattan,Lower East Side,40.71862,-73.99154,Private room,125,1,1,0.01,1,364 +2745,7938019,Brooklyn,Cypress Hills,40.68505,-73.8718,Entire home/apt,345,2,78,2.49,1,185 +2746,477140,Brooklyn,Fort Greene,40.6862,-73.97184,Entire home/apt,150,3,17,0.43,1,0 +2747,6228539,Manhattan,Harlem,40.80427,-73.95404,Private room,100,2,15,0.21,2,326 +2748,7727015,Manhattan,Lower East Side,40.7204,-73.99042,Entire home/apt,120,5,9,0.16,1,0 +2749,7503643,Brooklyn,Greenpoint,40.72267,-73.94362,Entire home/apt,149,30,9,0.13,52,343 +2750,1308282,Brooklyn,Crown Heights,40.67838,-73.95549,Entire home/apt,145,4,18,0.25,1,0 +2751,7964729,Manhattan,Financial District,40.70582,-74.00888,Entire home/apt,390,3,1,0.1,1,0 +2752,6586128,Bronx,Port Morris,40.80011,-73.9133,Private room,60,21,19,0.28,2,178 +2753,7959444,Brooklyn,Park Slope,40.6747,-73.97946999999999,Entire home/apt,190,3,17,0.28,1,167 +2754,7977178,Manhattan,SoHo,40.72822,-74.00429,Private room,80,3,51,0.79,3,276 +2755,6885157,Brooklyn,Bedford-Stuyvesant,40.68411,-73.95169,Private room,55,1,162,2.26,15,334 +2756,7988149,Brooklyn,Williamsburg,40.71202,-73.96602,Entire home/apt,275,2,195,2.74,1,331 +2757,7997061,Brooklyn,Williamsburg,40.71471,-73.94045,Entire home/apt,250,1,87,1.23,1,272 +2758,8000315,Manhattan,Harlem,40.82124,-73.94973,Entire home/apt,100,2,271,3.85,2,270 +2759,1601577,Manhattan,Murray Hill,40.74776,-73.97335,Entire home/apt,600,4,7,0.1,1,0 +2760,6457253,Brooklyn,Sunset Park,40.66405,-73.9923,Private room,66,2,4,0.08,1,365 +2761,2024924,Brooklyn,Park Slope,40.67171,-73.98079,Private room,65,7,58,0.83,2,333 +2762,8049757,Manhattan,East Harlem,40.80108,-73.94346,Entire home/apt,220,4,60,0.85,1,332 +2763,109505,Manhattan,Upper East Side,40.77006,-73.95441,Entire home/apt,159,2,114,1.62,1,46 +2764,8071107,Brooklyn,Williamsburg,40.7057,-73.93836,Private room,70,2,31,0.44,2,20 +2765,1354796,Brooklyn,Prospect-Lefferts Gardens,40.65936,-73.95139,Private room,49,5,84,1.17,3,296 +2766,8071900,Brooklyn,Bushwick,40.701209999999996,-73.91883,Private room,47,5,21,0.36,1,56 +2767,4731948,Manhattan,Lower East Side,40.71804,-73.99146999999999,Entire home/apt,299,1,200,2.8,4,100 +2768,8088731,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96106999999999,Entire home/apt,79,7,19,0.43,1,0 +2769,1396183,Brooklyn,Fort Greene,40.69197,-73.97218000000001,Entire home/apt,115,4,12,0.17,1,0 +2770,8092548,Brooklyn,Clinton Hill,40.68639,-73.9624,Entire home/apt,229,3,38,0.54,1,364 +2771,8092818,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94645,Entire home/apt,115,5,3,0.04,1,0 +2772,4358024,Manhattan,Greenwich Village,40.730509999999995,-73.99518,Entire home/apt,1100,2,17,0.25,2,364 +2773,228583,Brooklyn,Williamsburg,40.71,-73.9523,Entire home/apt,165,4,10,0.14,1,49 +2774,1430128,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94678,Entire home/apt,67,6,10,0.39,1,0 +2775,8112941,Brooklyn,Bedford-Stuyvesant,40.692890000000006,-73.94355999999999,Private room,68,3,52,2.44,3,72 +2776,8113165,Brooklyn,Canarsie,40.635909999999996,-73.90941,Private room,85,3,1,0.16,2,132 +2777,347642,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92804,Entire home/apt,170,3,134,2.0,3,209 +2778,8119708,Brooklyn,Midwood,40.62666,-73.96094000000001,Private room,95,3,46,0.76,3,86 +2779,8120180,Brooklyn,Bedford-Stuyvesant,40.68329,-73.95111,Private room,45,3,2,0.05,1,0 +2780,7304881,Brooklyn,Williamsburg,40.710409999999996,-73.93847,Private room,178,2,2,0.06,1,0 +2781,8131878,Manhattan,Chelsea,40.744609999999994,-74.00171999999999,Entire home/apt,140,5,50,0.91,1,328 +2782,7503643,Brooklyn,Greenpoint,40.726859999999995,-73.94176999999999,Entire home/apt,149,30,7,0.11,52,281 +2783,4540899,Brooklyn,Bedford-Stuyvesant,40.69399,-73.93135,Entire home/apt,89,3,86,1.29,1,223 +2784,8135210,Queens,Astoria,40.763870000000004,-73.92593000000001,Entire home/apt,108,4,3,0.06,1,0 +2785,3217480,Manhattan,Washington Heights,40.85652,-73.92975,Entire home/apt,138,7,14,0.3,1,13 +2786,1200603,Brooklyn,Crown Heights,40.66751,-73.95867,Entire home/apt,115,2,121,1.7,1,39 +2787,6486116,Manhattan,East Harlem,40.790040000000005,-73.94846,Shared room,69,1,136,2.13,4,103 +2788,8163133,Manhattan,West Village,40.73988,-74.0036,Entire home/apt,269,2,68,1.14,1,311 +2789,173980,Brooklyn,Williamsburg,40.70919,-73.95012,Entire home/apt,160,30,13,0.18,2,252 +2790,4045167,Manhattan,SoHo,40.71908,-73.99976,Entire home/apt,150,1,2,0.03,1,207 +2791,8178950,Manhattan,Upper West Side,40.783570000000005,-73.97268000000001,Entire home/apt,121,7,76,1.11,1,151 +2792,8179855,Brooklyn,Flatbush,40.63863,-73.95729,Entire home/apt,95,7,22,0.49,1,20 +2793,7365834,Brooklyn,Sheepshead Bay,40.58426,-73.95949,Entire home/apt,99,3,66,1.05,5,365 +2794,8184930,Brooklyn,Prospect Heights,40.68249,-73.97139,Private room,40,1,73,1.1,1,65 +2795,2333904,Manhattan,East Village,40.72307,-73.97910999999999,Private room,89,28,23,0.38,3,125 +2796,8200820,Brooklyn,Greenpoint,40.71938,-73.95136,Private room,50,2,11,0.16,2,157 +2797,6885157,Brooklyn,Bedford-Stuyvesant,40.6839,-73.95042,Private room,55,1,126,1.77,15,343 +2798,66193,Brooklyn,South Slope,40.66448,-73.98695,Entire home/apt,224,2,229,3.28,1,257 +2799,7646038,Queens,Ditmars Steinway,40.77448,-73.90907,Entire home/apt,120,2,2,0.19,1,0 +2800,4983320,Queens,Flushing,40.75431,-73.83131,Private room,59,1,116,1.63,2,0 +2801,4548229,Manhattan,Harlem,40.8033,-73.95008,Entire home/apt,135,31,177,2.49,4,340 +2802,8261145,Manhattan,Lower East Side,40.72317,-73.9929,Entire home/apt,175,3,105,1.49,1,274 +2803,8126811,Queens,Long Island City,40.75676,-73.93463,Entire home/apt,250,3,184,2.65,1,84 +2804,8282962,Manhattan,East Village,40.7282,-73.98066999999999,Entire home/apt,156,2,31,0.44,1,3 +2805,5191738,Brooklyn,Bedford-Stuyvesant,40.68864,-73.9213,Entire home/apt,75,2,36,0.66,1,0 +2806,8301763,Manhattan,Morningside Heights,40.8061,-73.9662,Entire home/apt,79,5,9,0.13,1,0 +2807,3038687,Manhattan,Upper West Side,40.789809999999996,-73.97518000000001,Entire home/apt,104,30,27,0.38,8,137 +2808,8300712,Brooklyn,Williamsburg,40.7133,-73.94601999999999,Entire home/apt,280,1,124,1.77,1,359 +2809,8323145,Manhattan,Nolita,40.724109999999996,-73.99372,Private room,80,4,131,1.88,1,34 +2810,7776144,Brooklyn,Williamsburg,40.71171,-73.96101,Entire home/apt,136,30,50,0.72,1,0 +2811,8336526,Manhattan,Upper West Side,40.78024,-73.97941999999999,Entire home/apt,550,4,17,0.27,1,201 +2812,8111912,Brooklyn,Flatbush,40.643609999999995,-73.96821,Entire home/apt,190,2,95,1.65,2,349 +2813,377151,Manhattan,East Village,40.72915,-73.98565,Entire home/apt,199,2,29,0.47,1,361 +2814,8316059,Queens,Woodside,40.74409,-73.89864,Private room,75,2,25,0.4,1,365 +2815,4106680,Manhattan,East Village,40.72853,-73.98619000000001,Private room,100,1,212,3.05,1,278 +2816,8362282,Manhattan,Upper West Side,40.78808,-73.9754,Entire home/apt,125,1,15,0.21,1,362 +2817,6866353,Brooklyn,Bushwick,40.68585,-73.90686,Private room,75,2,12,0.24,1,0 +2818,245881,Manhattan,Harlem,40.80355,-73.95227,Private room,99,2,30,2.61,1,24 +2819,999689,Brooklyn,Greenpoint,40.72887,-73.95163000000001,Private room,35,30,5,0.07,1,97 +2820,4645357,Queens,Long Island City,40.75909,-73.93217,Private room,51,1,165,2.36,1,361 +2821,7748180,Queens,Ditmars Steinway,40.77787,-73.91471999999999,Entire home/apt,188,2,260,3.97,1,312 +2822,8422502,Manhattan,NoHo,40.72545,-73.99492,Entire home/apt,90,7,2,0.04,1,0 +2823,4894525,Brooklyn,Crown Heights,40.68034,-73.9615,Entire home/apt,279,3,9,0.19,1,0 +2824,117236,Manhattan,West Village,40.730779999999996,-74.0104,Entire home/apt,350,4,9,0.14,1,13 +2825,8434244,Manhattan,East Harlem,40.79255,-73.93842,Private room,125,2,59,0.84,1,360 +2826,8119708,Brooklyn,Midwood,40.62733,-73.96101999999999,Private room,85,4,38,0.56,3,81 +2827,8452695,Queens,Maspeth,40.737320000000004,-73.90168,Private room,48,20,33,0.46,2,297 +2828,8452695,Queens,Maspeth,40.74033,-73.89921,Private room,56,28,14,0.2,2,310 +2829,8452639,Brooklyn,Flatbush,40.649190000000004,-73.96143000000001,Private room,84,2,68,0.96,3,362 +2830,8455776,Manhattan,Harlem,40.824529999999996,-73.94923,Entire home/apt,155,1,123,1.74,2,170 +2831,8457613,Manhattan,Gramercy,40.73494,-73.98751,Entire home/apt,250,365,0,,1,365 +2832,1400369,Manhattan,Chinatown,40.71702,-73.99566,Entire home/apt,300,5,31,0.45,1,278 +2833,8255208,Brooklyn,Williamsburg,40.709509999999995,-73.96262,Entire home/apt,140,1,1,0.02,1,0 +2834,8481125,Manhattan,Upper East Side,40.76142,-73.96086,Private room,120,7,19,0.27,2,245 +2835,8265050,Brooklyn,Williamsburg,40.71188,-73.95155,Entire home/apt,99,2,198,2.78,2,89 +2836,8289606,Manhattan,Greenwich Village,40.73158,-73.99254,Entire home/apt,240,7,19,0.27,1,158 +2837,4327300,Manhattan,Washington Heights,40.83399,-73.94474,Entire home/apt,72,7,27,0.46,1,73 +2838,3360223,Queens,Astoria,40.767920000000004,-73.92228,Private room,45,4,68,0.96,1,0 +2839,7875272,Staten Island,Port Richmond,40.62947,-74.13378,Entire home/apt,250,30,1,0.02,3,0 +2840,8521063,Manhattan,West Village,40.73254,-74.00466999999999,Private room,100,2,48,0.9,1,78 +2841,8038118,Manhattan,Midtown,40.7529,-73.97094,Entire home/apt,175,5,116,1.65,1,299 +2842,8523970,Manhattan,East Village,40.72694,-73.98304,Entire home/apt,200,5,10,0.14,1,0 +2843,7853251,Queens,St. Albans,40.69015,-73.77472,Private room,59,1,8,0.12,5,359 +2844,2698515,Manhattan,Financial District,40.70939,-74.00121,Entire home/apt,420,2,285,4.02,1,294 +2845,8548430,Brooklyn,Williamsburg,40.72149,-73.96174,Private room,120,3,142,2.01,1,37 +2846,8548453,Manhattan,Chelsea,40.746109999999994,-73.99209,Entire home/apt,295,30,3,0.04,1,235 +2847,3130819,Brooklyn,Williamsburg,40.72079,-73.95640999999999,Entire home/apt,200,120,12,0.17,1,306 +2848,7009551,Brooklyn,Bushwick,40.701879999999996,-73.92275,Private room,48,7,61,0.87,1,0 +2849,5533135,Manhattan,Hell's Kitchen,40.764759999999995,-73.99011,Entire home/apt,99,2,55,0.78,1,182 +2850,7503643,Brooklyn,Greenpoint,40.7257,-73.94181,Entire home/apt,129,30,8,0.12,52,344 +2851,5283853,Manhattan,East Village,40.73082,-73.98693,Entire home/apt,160,2,44,0.64,2,0 +2852,1254489,Brooklyn,Park Slope,40.67477,-73.97404,Entire home/apt,142,4,41,0.58,1,151 +2853,8783166,Queens,Astoria,40.767520000000005,-73.9273,Private room,120,3,12,0.17,2,365 +2854,6676776,Manhattan,Battery Park City,40.71239,-74.0162,Entire home/apt,400,1000,0,,1,362 +2855,953843,Brooklyn,Clinton Hill,40.68572,-73.9641,Entire home/apt,130,7,26,0.41,1,182 +2856,2240143,Manhattan,Harlem,40.81606,-73.94363,Shared room,85,3,38,0.56,1,157 +2857,8102595,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95756999999999,Entire home/apt,600,1,48,0.68,1,89 +2858,8616291,Manhattan,Harlem,40.82184,-73.95031,Private room,69,5,152,2.14,2,110 +2859,8619862,Brooklyn,Williamsburg,40.70863,-73.95543,Entire home/apt,150,3,1,0.03,1,0 +2860,2196224,Manhattan,East Village,40.730509999999995,-73.9814,Entire home/apt,10,30,0,,4,137 +2861,1345611,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95223,Private room,87,1,4,2.26,1,12 +2862,5440087,Manhattan,Midtown,40.7513,-73.97239,Private room,249,3,1,0.02,2,87 +2863,8638841,Brooklyn,Williamsburg,40.70537,-73.92975,Private room,65,4,142,2.03,1,115 +2864,8653725,Brooklyn,Canarsie,40.64308,-73.9077,Entire home/apt,175,3,158,2.27,1,317 +2865,5334697,Manhattan,Washington Heights,40.839420000000004,-73.93855,Private room,79,5,112,1.59,3,1 +2866,2935265,Manhattan,SoHo,40.72391,-73.99879,Private room,194,2,141,2.0,2,340 +2867,1232988,Manhattan,Lower East Side,40.71915,-73.99309000000001,Entire home/apt,150,3,19,0.27,1,9 +2868,8677042,Brooklyn,Williamsburg,40.7086,-73.94715,Entire home/apt,241,2,1,0.15,1,0 +2869,8677477,Manhattan,Harlem,40.81307,-73.93854,Private room,80,1,73,1.08,1,309 +2870,8680097,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92505,Entire home/apt,120,4,72,1.02,1,284 +2871,8685072,Manhattan,Upper East Side,40.78013,-73.95082,Entire home/apt,155,4,13,0.22,1,0 +2872,8687489,Manhattan,West Village,40.7338,-74.00328,Entire home/apt,150,7,40,0.57,1,0 +2873,8313953,Manhattan,Upper East Side,40.76866,-73.9536,Entire home/apt,140,6,36,0.69,1,71 +2874,8726014,Brooklyn,East Flatbush,40.63205,-73.94587,Entire home/apt,90,1,5,0.08,1,361 +2875,1338262,Brooklyn,Carroll Gardens,40.68468,-73.99145,Entire home/apt,150,3,94,1.33,3,250 +2876,8708720,Brooklyn,Bedford-Stuyvesant,40.68019,-73.93042,Entire home/apt,135,2,127,1.8,1,354 +2877,4623045,Brooklyn,Park Slope,40.67179,-73.97248,Entire home/apt,140,2,45,1.64,1,31 +2878,8732694,Brooklyn,Bedford-Stuyvesant,40.68656,-73.95348,Entire home/apt,130,3,220,3.11,2,0 +2879,8026393,Manhattan,Upper East Side,40.77118,-73.9527,Private room,150,2,121,1.72,1,225 +2880,1967871,Brooklyn,South Slope,40.66623,-73.98217,Entire home/apt,115,3,185,2.62,1,163 +2881,8732694,Brooklyn,Bedford-Stuyvesant,40.684709999999995,-73.95325,Entire home/apt,130,3,229,3.32,2,259 +2882,8739354,Manhattan,Greenwich Village,40.72831,-73.9987,Entire home/apt,380,6,29,0.43,1,365 +2883,2899693,Brooklyn,Williamsburg,40.70773,-73.94144,Entire home/apt,115,20,1,0.02,1,0 +2884,8751800,Manhattan,Morningside Heights,40.8117,-73.9555,Entire home/apt,125,2,21,0.3,1,363 +2885,8753908,Brooklyn,Bushwick,40.70045,-73.93831999999999,Private room,65,5,1,0.02,1,169 +2886,8759781,Queens,Jackson Heights,40.75238,-73.87746,Entire home/apt,110,9,11,0.16,1,362 +2887,3562322,Brooklyn,Bedford-Stuyvesant,40.68708,-73.95125999999999,Private room,31,6,41,0.58,3,55 +2888,517966,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93911,Entire home/apt,135,3,173,2.47,2,277 +2889,8772693,Manhattan,West Village,40.731190000000005,-74.00615,Entire home/apt,200,3,20,0.29,1,0 +2890,8773518,Brooklyn,Bedford-Stuyvesant,40.68553,-73.94466,Private room,212,3,1,0.33,3,109 +2891,5556571,Brooklyn,Williamsburg,40.70617,-73.93760999999999,Shared room,40,1,34,0.48,3,75 +2892,914838,Manhattan,Hell's Kitchen,40.76364,-73.99465,Entire home/apt,80,30,12,0.18,7,365 +2893,4847926,Brooklyn,Flatbush,40.64233,-73.95655,Entire home/apt,95,2,147,2.09,3,275 +2894,2119276,Manhattan,Hell's Kitchen,40.765440000000005,-73.9882,Entire home/apt,185,30,7,0.13,39,347 +2895,5942292,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.94068,Entire home/apt,100,1,59,0.84,4,165 +2896,8778889,Manhattan,Flatiron District,40.74096,-73.9927,Entire home/apt,1200,1,0,,1,0 +2897,7503643,Brooklyn,Greenpoint,40.72531,-73.94221999999999,Entire home/apt,149,30,9,0.14,52,341 +2898,93790,Manhattan,West Village,40.73089,-74.00301999999999,Private room,139,1,203,2.87,2,32 +2899,1147345,Manhattan,Greenwich Village,40.72866,-74.00095,Entire home/apt,226,3,25,0.36,1,80 +2900,5738733,Brooklyn,Bedford-Stuyvesant,40.68978,-73.93751,Entire home/apt,74,2,189,3.02,2,131 +2901,8315861,Manhattan,West Village,40.73433,-74.0036,Entire home/apt,195,5,52,0.74,1,0 +2902,8791051,Brooklyn,East Flatbush,40.6526,-73.94999,Entire home/apt,104,59,48,0.69,1,122 +2903,1253125,Manhattan,SoHo,40.72047,-74.00049,Entire home/apt,275,2,6,0.51,1,5 +2904,8796895,Manhattan,Upper West Side,40.7854,-73.97368,Private room,310,4,12,0.18,1,358 +2905,2110601,Manhattan,East Village,40.72379,-73.98826,Entire home/apt,145,29,3,0.04,1,35 +2906,8821936,Staten Island,Shore Acres,40.61135,-74.06356,Entire home/apt,75,3,19,0.28,1,258 +2907,8265050,Brooklyn,Williamsburg,40.710840000000005,-73.94861,Entire home/apt,99,2,201,2.85,2,106 +2908,8838470,Manhattan,Hell's Kitchen,40.76464,-73.98749000000001,Entire home/apt,250,6,79,1.12,1,137 +2909,3038687,Manhattan,Upper West Side,40.79221,-73.97476,Entire home/apt,104,30,24,0.34,8,57 +2910,8844412,Manhattan,Gramercy,40.73681,-73.98366,Entire home/apt,250,5,5,0.07,1,358 +2911,2119276,Manhattan,Hell's Kitchen,40.76493,-73.98652,Entire home/apt,150,30,18,0.27,39,340 +2912,2119276,Manhattan,Hell's Kitchen,40.76703,-73.98874,Entire home/apt,195,30,17,0.35,39,333 +2913,2119276,Manhattan,Hell's Kitchen,40.766709999999996,-73.98666,Entire home/apt,350,30,14,0.22,39,327 +2914,5719998,Brooklyn,Williamsburg,40.71346,-73.93883000000001,Private room,75,1,23,0.33,1,0 +2915,8756595,Brooklyn,Prospect-Lefferts Gardens,40.661390000000004,-73.96027,Private room,80,31,28,0.4,1,167 +2916,8619985,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93933,Entire home/apt,96,2,14,4.62,1,50 +2917,5434492,Manhattan,Kips Bay,40.740109999999994,-73.98185,Entire home/apt,200,1,0,,1,0 +2918,8896180,Manhattan,East Harlem,40.79053,-73.94398000000001,Private room,90,3,139,2.38,1,293 +2919,6194487,Queens,Astoria,40.76359,-73.90586,Private room,79,1,274,4.02,3,308 +2920,8900383,Manhattan,Morningside Heights,40.81326,-73.96181,Private room,220,1,0,,1,365 +2921,274702,Brooklyn,Williamsburg,40.711079999999995,-73.96318000000001,Entire home/apt,224,31,14,0.2,1,219 +2922,762610,Queens,Arverne,40.59684,-73.79449,Private room,35,2,201,3.28,2,88 +2923,177712,Queens,Astoria,40.763940000000005,-73.92022,Private room,70,7,34,0.48,1,140 +2924,8792814,Brooklyn,Prospect-Lefferts Gardens,40.66359,-73.95235,Private room,85,1,40,0.83,10,293 +2925,8925763,Manhattan,Harlem,40.8174,-73.94629,Entire home/apt,110,30,128,1.82,2,314 +2926,8925493,Brooklyn,Bedford-Stuyvesant,40.68208,-73.9104,Private room,65,3,2,0.06,2,365 +2927,8934751,Queens,Maspeth,40.72509,-73.89686999999999,Entire home/apt,200,4,24,0.38,2,157 +2928,8937205,Manhattan,Chinatown,40.7157,-73.99183000000001,Entire home/apt,249,31,6,0.09,1,365 +2929,2015914,Brooklyn,East New York,40.667590000000004,-73.88584,Private room,62,3,52,0.74,8,361 +2930,8918030,Bronx,Williamsbridge,40.88296,-73.86264,Private room,50,1,19,0.83,1,311 +2931,2015914,Brooklyn,East New York,40.66907,-73.88493000000001,Private room,62,3,48,0.68,8,340 +2932,4864306,Brooklyn,Greenpoint,40.72668,-73.95555,Private room,50,2,13,0.22,3,282 +2933,8955761,Manhattan,Murray Hill,40.74722,-73.97734,Private room,55,1,0,,1,0 +2934,4463092,Manhattan,Harlem,40.80339,-73.95167,Private room,71,2,64,1.02,2,18 +2935,2717428,Manhattan,East Harlem,40.7977,-73.93754,Private room,75,1,37,0.53,1,139 +2936,4184612,Brooklyn,Williamsburg,40.712509999999995,-73.947,Private room,115,3,146,2.08,1,277 +2937,1562642,Brooklyn,Williamsburg,40.7138,-73.96251,Private room,82,2,144,3.37,1,0 +2938,2015914,Brooklyn,East New York,40.66874,-73.88548,Private room,75,3,34,0.49,8,341 +2939,8289663,Manhattan,Harlem,40.819759999999995,-73.94029,Private room,60,3,101,1.44,1,340 +2940,1120027,Manhattan,Chelsea,40.74072,-74.00438,Entire home/apt,200,7,11,1.17,1,11 +2941,8986314,Brooklyn,Greenpoint,40.7337,-73.95427,Private room,90,1,0,,1,0 +2942,8335875,Brooklyn,Park Slope,40.68242,-73.97904,Entire home/apt,215,3,59,0.84,1,356 +2943,5668786,Manhattan,Hell's Kitchen,40.767959999999995,-73.98601,Private room,100,2,244,3.49,1,52 +2944,7614595,Queens,Astoria,40.7672,-73.92799000000001,Private room,38,30,7,0.19,1,137 +2945,706623,Brooklyn,Bushwick,40.69383,-73.90836999999999,Entire home/apt,159,3,11,0.2,4,77 +2946,8136206,Brooklyn,Prospect-Lefferts Gardens,40.65763,-73.96029,Private room,64,2,108,1.61,2,296 +2947,2731594,Brooklyn,Windsor Terrace,40.64928,-73.97538,Entire home/apt,125,15,53,0.75,1,5 +2948,5693756,Manhattan,Lower East Side,40.7189,-73.99176999999999,Entire home/apt,120,4,182,2.6,1,72 +2949,8998805,Manhattan,Chelsea,40.75224,-73.99486999999999,Private room,76,3,164,2.34,1,27 +2950,5662533,Manhattan,Upper West Side,40.77532,-73.97952,Private room,175,2,4,0.1,1,0 +2951,9008935,Brooklyn,Greenpoint,40.726459999999996,-73.95799,Private room,110,5,7,0.1,1,300 +2952,9010955,Brooklyn,Greenpoint,40.73487,-73.95789,Private room,75,1,69,4.43,2,49 +2953,840868,Manhattan,Washington Heights,40.85287,-73.93794,Private room,80,2,28,0.4,2,327 +2954,9031941,Brooklyn,Greenpoint,40.72124,-73.93673000000001,Private room,110,4,2,0.06,1,0 +2955,2332618,Brooklyn,Williamsburg,40.70833,-73.95395,Private room,89,1,214,3.07,2,354 +2956,6144668,Brooklyn,Bushwick,40.70306,-73.92526,Entire home/apt,110,3,23,0.33,1,67 +2957,153494,Manhattan,Lower East Side,40.71906,-73.9845,Private room,96,1,274,3.94,1,145 +2958,9051298,Manhattan,Harlem,40.81027,-73.94639000000001,Entire home/apt,75,5,31,0.49,2,0 +2959,9053036,Manhattan,Nolita,40.72182,-73.99625,Entire home/apt,185,3,65,1.04,1,106 +2960,8943770,Brooklyn,Flatbush,40.63304,-73.95625,Entire home/apt,49,2,23,3.5,1,262 +2961,9053452,Manhattan,West Village,40.74035,-74.00615,Entire home/apt,440,3,6,0.09,1,70 +2962,9053876,Brooklyn,Crown Heights,40.6776,-73.93504,Entire home/apt,220,7,18,0.27,2,156 +2963,9072771,Manhattan,Financial District,40.70758,-74.00799,Private room,99,4,11,0.18,2,365 +2964,215764,Manhattan,Murray Hill,40.7474,-73.97847,Private room,85,1,135,1.93,1,15 +2965,2510744,Brooklyn,Williamsburg,40.713159999999995,-73.95648,Entire home/apt,98,7,7,0.1,1,0 +2966,8792814,Brooklyn,Prospect-Lefferts Gardens,40.66231,-73.95394,Private room,84,1,60,1.05,10,302 +2967,8792814,Brooklyn,Prospect-Lefferts Gardens,40.66182,-73.95338000000001,Private room,65,1,38,0.6,10,239 +2968,9109049,Brooklyn,Greenpoint,40.71985,-73.94015,Entire home/apt,160,2,19,0.32,1,0 +2969,478717,Brooklyn,Park Slope,40.67629,-73.97654,Private room,115,3,200,3.16,1,256 +2970,8366233,Manhattan,East Harlem,40.79377,-73.9361,Private room,59,14,30,0.43,2,36 +2971,9119678,Manhattan,Midtown,40.75622,-73.9728,Private room,119,2,27,0.58,1,325 +2972,7228995,Brooklyn,Crown Heights,40.67394,-73.92399999999999,Entire home/apt,120,2,92,1.37,1,311 +2973,7379093,Manhattan,Upper West Side,40.790859999999995,-73.96683,Entire home/apt,439,5,79,1.15,2,154 +2974,17318747,Manhattan,Upper East Side,40.77084,-73.95810999999999,Private room,99,1,20,0.42,2,278 +2975,1818792,Brooklyn,Greenpoint,40.72716,-73.94971,Entire home/apt,199,2,25,0.44,1,5 +2976,8072802,Brooklyn,Williamsburg,40.7179,-73.95103,Private room,99,1,340,4.9,2,263 +2977,9131167,Queens,Astoria,40.76135,-73.91571,Private room,195,3,231,3.51,1,304 +2978,8910286,Brooklyn,Williamsburg,40.72076,-73.95614,Entire home/apt,180,30,183,2.63,1,0 +2979,6790494,Queens,Long Island City,40.76081,-73.93163,Private room,100,20,52,0.75,1,182 +2980,1755097,Brooklyn,Bedford-Stuyvesant,40.68972,-73.93073000000001,Entire home/apt,115,2,210,3.58,2,106 +2981,721267,Brooklyn,Prospect-Lefferts Gardens,40.65769,-73.96161,Entire home/apt,115,30,2,0.03,1,0 +2982,5064855,Manhattan,Two Bridges,40.709109999999995,-73.99685,Entire home/apt,180,3,18,0.26,1,72 +2983,8989844,Bronx,Soundview,40.82138,-73.87603,Private room,45,3,53,0.82,1,249 +2984,9162713,Manhattan,Lower East Side,40.72105,-73.98519,Entire home/apt,300,2,65,0.96,1,350 +2985,652092,Manhattan,Upper East Side,40.76358,-73.95895,Entire home/apt,90,80,20,0.29,1,203 +2986,1845333,Manhattan,East Harlem,40.79858,-73.93585,Private room,95,1,0,,1,0 +2987,2127723,Queens,Sunnyside,40.74609,-73.91405999999999,Entire home/apt,140,2,40,0.6,1,20 +2988,2548224,Manhattan,Upper East Side,40.78031,-73.94653000000001,Entire home/apt,123,5,14,0.2,1,0 +2989,9173924,Manhattan,Hell's Kitchen,40.76708,-73.986,Entire home/apt,200,2,119,1.89,1,216 +2990,8783166,Queens,Astoria,40.76549,-73.92934,Private room,100,3,4,0.07,2,364 +2991,9177920,Brooklyn,Williamsburg,40.70982,-73.9642,Entire home/apt,250,3,144,2.06,1,128 +2992,2480939,Brooklyn,Williamsburg,40.71973,-73.96070999999999,Private room,85,1,221,4.1,3,206 +2993,6544987,Manhattan,Kips Bay,40.741479999999996,-73.98304,Entire home/apt,100,3,3,0.05,1,0 +2994,9186542,Manhattan,Hell's Kitchen,40.765,-73.98904,Entire home/apt,109,2,26,0.49,1,139 +2995,7503643,Brooklyn,Greenpoint,40.72569,-73.94054,Entire home/apt,159,30,6,0.1,52,310 +2996,9187795,Manhattan,Greenwich Village,40.73236,-73.9992,Entire home/apt,260,5,13,0.21,1,167 +2997,4051126,Manhattan,Chelsea,40.74188,-73.99729,Entire home/apt,555,3,111,1.63,1,191 +2998,9117590,Manhattan,East Harlem,40.80012,-73.94086999999999,Private room,87,2,235,3.37,1,23 +2999,9197101,Bronx,Mount Eden,40.84367,-73.91718,Private room,43,2,11,0.16,1,338 +3000,1411399,Manhattan,Upper East Side,40.77219,-73.95073000000001,Entire home/apt,199,1,29,0.42,5,339 +3001,9207223,Manhattan,Harlem,40.80247,-73.94530999999999,Private room,90,2,17,0.24,3,177 +3002,3336010,Brooklyn,Bedford-Stuyvesant,40.69194,-73.95952,Entire home/apt,195,3,78,1.13,1,312 +3003,9209820,Brooklyn,Crown Heights,40.66946,-73.95008,Entire home/apt,185,3,115,2.09,3,314 +3004,5862053,Manhattan,Upper West Side,40.78952,-73.98097,Entire home/apt,400,7,19,0.28,1,46 +3005,5243858,Manhattan,Chelsea,40.743140000000004,-73.9957,Entire home/apt,200,2,144,2.07,1,263 +3006,4500999,Manhattan,East Harlem,40.79692,-73.94434,Private room,100,1,41,0.87,2,355 +3007,9232106,Manhattan,Upper East Side,40.77648,-73.96126,Entire home/apt,225,4,10,0.17,1,348 +3008,2715012,Brooklyn,Crown Heights,40.672470000000004,-73.93616,Entire home/apt,450,1,9,0.25,3,364 +3009,9234456,Brooklyn,Bedford-Stuyvesant,40.69696,-73.93576999999999,Private room,80,3,112,1.61,2,0 +3010,8998154,Brooklyn,Bushwick,40.693659999999994,-73.92281,Entire home/apt,89,4,123,1.76,2,18 +3011,9250406,Manhattan,East Village,40.727140000000006,-73.98397,Entire home/apt,179,4,127,1.83,1,17 +3012,104250,Manhattan,Chelsea,40.74563,-73.99325,Private room,90,3,6,0.1,1,11 +3013,9264606,Queens,Long Island City,40.748490000000004,-73.94946999999999,Entire home/apt,275,7,0,,1,0 +3014,173997,Brooklyn,Williamsburg,40.70942,-73.95302,Private room,35,2,3,0.12,2,0 +3015,9268156,Queens,Astoria,40.764509999999994,-73.92942,Private room,86,2,107,1.58,1,0 +3016,9268805,Queens,Sunnyside,40.74244,-73.91676,Entire home/apt,95,1,41,0.59,2,177 +3017,1304097,Manhattan,Upper West Side,40.78448,-73.97386,Private room,116,1,43,0.63,1,0 +3018,9271872,Manhattan,Hell's Kitchen,40.76421,-73.99115,Private room,80,5,62,1.72,2,23 +3019,5586949,Manhattan,East Village,40.731,-73.98427,Entire home/apt,110,1,233,3.39,2,17 +3020,9284163,Queens,Woodhaven,40.689679999999996,-73.85219000000001,Private room,29,2,386,5.53,3,50 +3021,9306716,Manhattan,Harlem,40.802659999999996,-73.94728,Entire home/apt,200,60,74,1.08,1,233 +3022,7379093,Manhattan,Upper West Side,40.78852,-73.96746,Entire home/apt,390,5,108,2.63,2,156 +3023,3980927,Manhattan,Battery Park City,40.71078,-74.01623000000001,Shared room,55,1,205,3.04,1,326 +3024,2793778,Queens,Forest Hills,40.71697,-73.83396,Shared room,75,5,63,0.91,5,19 +3025,6327260,Brooklyn,Crown Heights,40.67528,-73.95741,Private room,75,1,0,,1,58 +3026,367815,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95548000000001,Entire home/apt,120,7,39,0.91,2,50 +3027,9293512,Manhattan,Murray Hill,40.74881,-73.97234,Private room,143,2,37,0.53,1,364 +3028,9348961,Manhattan,Midtown,40.764559999999996,-73.98233,Entire home/apt,250,3,1,0.02,1,0 +3029,1482208,Brooklyn,Williamsburg,40.71284,-73.93965,Private room,99,3,19,0.41,2,310 +3030,9352452,Manhattan,Harlem,40.80395,-73.95519,Entire home/apt,150,3,50,0.74,1,152 +3031,226697,Brooklyn,Bedford-Stuyvesant,40.690090000000005,-73.95314,Private room,55,10,20,0.29,1,184 +3032,7880914,Brooklyn,Bedford-Stuyvesant,40.69169,-73.9603,Entire home/apt,175,2,85,1.31,1,287 +3033,3886532,Brooklyn,Bushwick,40.70818,-73.92201999999999,Private room,69,1,142,2.12,3,329 +3034,9358396,Manhattan,Tribeca,40.71481,-74.00934000000001,Entire home/apt,184,4,22,0.33,1,12 +3035,5481728,Brooklyn,Williamsburg,40.706579999999995,-73.96759,Entire home/apt,145,2,6,0.09,1,0 +3036,8222814,Manhattan,Lower East Side,40.721309999999995,-73.98527,Private room,100,3,210,3.01,1,256 +3037,1354796,Brooklyn,Prospect-Lefferts Gardens,40.65987,-73.95076,Private room,44,5,79,1.14,3,251 +3038,9375506,Brooklyn,Greenpoint,40.72495,-73.95111999999999,Private room,70,3,0,,1,0 +3039,9381867,Brooklyn,Bedford-Stuyvesant,40.68273,-73.95437,Entire home/apt,185,1,0,,1,0 +3040,7607092,Manhattan,Nolita,40.72311,-73.99476,Entire home/apt,225,3,10,0.15,1,0 +3041,6989380,Manhattan,Upper East Side,40.78277,-73.95164,Entire home/apt,199,2,2,0.03,1,0 +3042,8535372,Manhattan,Harlem,40.81157,-73.95335,Private room,60,1,57,0.91,1,301 +3043,9407785,Manhattan,Upper West Side,40.776309999999995,-73.97953000000001,Entire home/apt,175,3,258,3.8,1,235 +3044,2273886,Manhattan,East Village,40.7312,-73.98857,Entire home/apt,199,5,4,0.06,1,0 +3045,7757648,Brooklyn,Williamsburg,40.70683,-73.95375,Private room,65,1,10,0.44,1,73 +3046,2140820,Brooklyn,Williamsburg,40.71295,-73.93874,Entire home/apt,190,2,11,0.24,1,331 +3047,9340104,Brooklyn,Crown Heights,40.67204,-73.95147,Entire home/apt,107,3,143,2.07,1,23 +3048,9430658,Manhattan,East Village,40.72878,-73.97854,Entire home/apt,150,1,26,0.38,1,0 +3049,9430973,Staten Island,Woodrow,40.53884,-74.19826,Entire home/apt,700,7,0,,1,0 +3050,310670,Bronx,Co-op City,40.863170000000004,-73.82494,Private room,75,2,32,0.46,13,363 +3051,8200820,Brooklyn,Williamsburg,40.7187,-73.95133,Private room,45,2,14,0.2,2,36 +3052,9443112,Brooklyn,Park Slope,40.67749,-73.98031,Entire home/apt,179,2,15,0.22,1,0 +3053,2961266,Queens,Sunnyside,40.73747,-73.9248,Entire home/apt,110,1,92,6.3,2,147 +3054,2019832,Brooklyn,Williamsburg,40.71875,-73.94935,Entire home/apt,245,2,14,0.76,1,65 +3055,9453400,Manhattan,Midtown,40.763909999999996,-73.9782,Entire home/apt,799,6,40,0.58,1,365 +3056,7239405,Manhattan,Morningside Heights,40.815690000000004,-73.96058000000001,Private room,100,2,12,0.17,1,252 +3057,6885157,Brooklyn,Bedford-Stuyvesant,40.683659999999996,-73.95009,Private room,61,1,71,1.06,15,314 +3058,9462127,Manhattan,Flatiron District,40.74107,-73.98487,Entire home/apt,475,1,0,,1,0 +3059,8423479,Brooklyn,Brooklyn Heights,40.7001,-73.99183000000001,Entire home/apt,275,5,16,0.23,1,12 +3060,1929442,Brooklyn,Fort Greene,40.68585,-73.97015999999999,Entire home/apt,250,4,134,1.95,1,222 +3061,3267818,Brooklyn,Williamsburg,40.70498,-73.92868,Entire home/apt,120,3,2,0.03,1,0 +3062,9223085,Brooklyn,Crown Heights,40.67191,-73.93997,Entire home/apt,135,3,190,2.77,1,267 +3063,9473928,Manhattan,West Village,40.732459999999996,-74.00215,Entire home/apt,199,10,4,0.06,1,3 +3064,7557833,Brooklyn,Bedford-Stuyvesant,40.69023,-73.94628,Private room,75,1,19,0.29,5,289 +3065,7557833,Brooklyn,Bedford-Stuyvesant,40.69096,-73.94613000000001,Private room,75,7,30,0.43,5,216 +3066,9207223,Manhattan,East Harlem,40.80126,-73.9454,Private room,75,3,22,0.32,3,177 +3067,4572968,Manhattan,Harlem,40.817479999999996,-73.94539,Private room,140,1,0,,1,365 +3068,9490594,Manhattan,Chelsea,40.741659999999996,-73.99892,Private room,90,30,83,1.2,1,282 +3069,2621935,Manhattan,Harlem,40.8145,-73.94962,Private room,80,1,1,0.02,1,0 +3070,9486005,Brooklyn,Williamsburg,40.71261,-73.94154,Entire home/apt,115,2,2,0.05,1,0 +3071,9501531,Manhattan,Harlem,40.82519,-73.9453,Private room,60,1,93,1.34,3,358 +3072,3257486,Manhattan,NoHo,40.726440000000004,-73.9923,Entire home/apt,175,2,25,0.36,1,273 +3073,6841194,Brooklyn,Bushwick,40.68909,-73.9173,Entire home/apt,125,2,240,3.53,2,242 +3074,1572271,Manhattan,Gramercy,40.73689,-73.98451,Entire home/apt,185,1,80,1.16,1,0 +3075,9509269,Queens,Briarwood,40.71594,-73.82264,Private room,56,5,80,1.16,2,298 +3076,6957798,Brooklyn,Bushwick,40.69048,-73.92193,Private room,64,1,336,4.83,1,133 +3077,9520082,Brooklyn,Williamsburg,40.71454,-73.94965,Entire home/apt,300,2,10,0.15,1,214 +3078,9522475,Manhattan,NoHo,40.72569,-73.99226999999999,Entire home/apt,455,30,93,1.36,2,332 +3079,9522524,Brooklyn,Canarsie,40.64738,-73.89163,Private room,37,5,54,0.78,5,353 +3080,9524360,Brooklyn,Williamsburg,40.71618,-73.94189,Entire home/apt,193,3,164,2.39,2,256 +3081,159011,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94161,Private room,53,3,35,0.72,1,113 +3082,3609524,Manhattan,Chelsea,40.74386,-73.99540999999999,Entire home/apt,161,2,8,0.18,1,0 +3083,3889301,Manhattan,Washington Heights,40.85557,-73.93641,Entire home/apt,99,7,3,0.04,1,0 +3084,2208993,Manhattan,East Village,40.7221,-73.98356,Entire home/apt,420,1,53,1.04,3,250 +3085,3981706,Manhattan,Lower East Side,40.72018,-73.98839,Entire home/apt,92,2,0,,1,0 +3086,1146958,Manhattan,Gramercy,40.73679,-73.98177,Entire home/apt,195,30,104,1.51,4,333 +3087,9554965,Brooklyn,Bedford-Stuyvesant,40.68385,-73.92349,Private room,81,1,36,0.53,1,0 +3088,6632440,Manhattan,Harlem,40.82557,-73.95514,Private room,65,7,9,0.14,2,332 +3089,9470293,Brooklyn,Flatbush,40.65083,-73.96101,Private room,70,3,3,0.04,1,188 +3090,9563216,Manhattan,Gramercy,40.73285,-73.98245,Entire home/apt,400,2,40,0.63,1,190 +3091,9564410,Brooklyn,Williamsburg,40.717659999999995,-73.95634,Entire home/apt,170,3,61,0.9,1,190 +3092,9339714,Manhattan,East Village,40.729820000000004,-73.98532,Entire home/apt,175,2,53,0.79,2,0 +3093,5309364,Brooklyn,Bushwick,40.68135,-73.9046,Private room,41,3,7,0.11,1,0 +3094,6499364,Manhattan,Harlem,40.80964,-73.94098000000001,Entire home/apt,149,4,35,0.52,1,16 +3095,7195403,Brooklyn,Williamsburg,40.71216,-73.96274,Private room,87,3,85,1.35,2,38 +3096,9593224,Manhattan,Chelsea,40.73865,-73.9962,Entire home/apt,300,5,0,,1,0 +3097,7245581,Manhattan,Chelsea,40.75,-73.99721,Entire home/apt,92,110,13,0.21,19,327 +3098,9600781,Brooklyn,Bedford-Stuyvesant,40.69168,-73.932,Private room,85,2,0,,1,0 +3099,9613050,Manhattan,East Village,40.73135,-73.98298,Entire home/apt,150,1,0,,1,0 +3100,9610339,Brooklyn,Williamsburg,40.71817,-73.96401,Entire home/apt,300,5,14,0.22,1,188 +3101,9615574,Manhattan,Stuyvesant Town,40.73196,-73.97932,Entire home/apt,139,5,27,0.48,1,0 +3102,9622750,Manhattan,Kips Bay,40.74392,-73.9811,Private room,90,3,12,0.18,3,0 +3103,8976567,Manhattan,Kips Bay,40.735440000000004,-73.97465,Private room,118,5,51,0.76,1,201 +3104,9630447,Manhattan,Midtown,40.76547,-73.97729,Entire home/apt,295,2,0,,1,0 +3105,2021121,Brooklyn,Cypress Hills,40.6784,-73.89362,Entire home/apt,125,1,319,8.52,1,357 +3106,9632747,Brooklyn,Bedford-Stuyvesant,40.68674,-73.95392,Entire home/apt,122,7,122,1.91,2,364 +3107,9634183,Manhattan,Midtown,40.76129,-73.96869000000001,Entire home/apt,280,3,21,0.34,1,98 +3108,1512462,Manhattan,Midtown,40.7525,-73.96491999999999,Entire home/apt,215,4,130,1.92,2,270 +3109,9637768,Brooklyn,Boerum Hill,40.68897,-73.98765,Private room,89,90,47,0.73,1,365 +3110,9638204,Manhattan,Harlem,40.82097,-73.93765,Private room,130,1,1,0.03,2,0 +3111,1340205,Brooklyn,Bushwick,40.70714,-73.9216,Entire home/apt,201,2,8,0.12,1,177 +3112,9644289,Brooklyn,East Flatbush,40.644690000000004,-73.9469,Private room,119,2,23,0.34,1,311 +3113,8951505,Manhattan,East Village,40.723690000000005,-73.9753,Entire home/apt,103,2,29,0.86,1,55 +3114,9646158,Brooklyn,South Slope,40.66516,-73.9794,Private room,72,2,166,2.49,1,78 +3115,3952560,Manhattan,East Village,40.729690000000005,-73.98151,Entire home/apt,169,5,9,0.13,1,0 +3116,315654,Manhattan,Tribeca,40.71417,-74.00678,Entire home/apt,240,3,60,0.91,1,348 +3117,9371210,Brooklyn,Carroll Gardens,40.67522,-73.99978,Entire home/apt,180,2,29,0.63,1,45 +3118,9632747,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95473,Entire home/apt,150,7,108,1.72,2,359 +3119,9665594,Manhattan,Morningside Heights,40.80738,-73.95855,Entire home/apt,120,5,4,0.07,1,0 +3120,173980,Brooklyn,Bedford-Stuyvesant,40.693220000000004,-73.94581,Entire home/apt,345,3,181,2.69,2,213 +3121,9671392,Brooklyn,Bedford-Stuyvesant,40.6889,-73.92469,Entire home/apt,95,3,134,2.0,1,281 +3122,416918,Manhattan,Upper East Side,40.775929999999995,-73.94927,Entire home/apt,550,1,0,,1,0 +3123,9685977,Manhattan,Harlem,40.82597,-73.95102,Entire home/apt,150,5,29,0.43,1,260 +3124,267955,Manhattan,East Village,40.72485,-73.98349,Private room,95,3,97,1.45,1,11 +3125,9407818,Manhattan,Hell's Kitchen,40.76254,-73.98711999999999,Private room,90,1,61,1.04,1,316 +3126,9689041,Brooklyn,Crown Heights,40.67143,-73.94929,Private room,175,5,0,,1,359 +3127,485738,Manhattan,East Village,40.72335,-73.98549,Entire home/apt,225,3,10,0.15,1,0 +3128,1010940,Manhattan,Upper East Side,40.769059999999996,-73.9517,Entire home/apt,240,5,6,0.1,1,0 +3129,9702964,Manhattan,East Village,40.72394,-73.98940999999999,Entire home/apt,150,4,43,0.68,1,188 +3130,8276592,Manhattan,Washington Heights,40.84278,-73.93725,Private room,44,3,79,1.15,1,191 +3131,9709464,Manhattan,East Village,40.72898,-73.98051,Private room,1700,1,0,,1,0 +3132,9710466,Manhattan,Upper West Side,40.78618,-73.97339000000001,Entire home/apt,299,4,38,0.56,1,3 +3133,3351261,Brooklyn,Bedford-Stuyvesant,40.68864,-73.94166,Entire home/apt,120,1,93,1.51,1,0 +3134,9720494,Manhattan,Hell's Kitchen,40.75562,-73.99736,Entire home/apt,525,5,42,0.61,1,80 +3135,194918,Manhattan,Upper East Side,40.77585,-73.95566,Entire home/apt,600,3,46,0.67,1,210 +3136,9725785,Brooklyn,Williamsburg,40.71338,-73.96833000000001,Private room,88,1,220,3.53,2,100 +3137,1753078,Manhattan,Harlem,40.80491,-73.94752,Entire home/apt,139,5,0,,1,0 +3138,9729421,Manhattan,Chelsea,40.74386,-74.00106,Entire home/apt,200,2,2,0.05,1,0 +3139,5008954,Manhattan,Midtown,40.7582,-73.96692,Entire home/apt,100,2,19,0.28,1,0 +3140,9744172,Manhattan,SoHo,40.72838,-74.00461999999999,Entire home/apt,209,2,7,0.1,1,265 +3141,376084,Brooklyn,Carroll Gardens,40.682829999999996,-73.99813,Entire home/apt,240,3,14,0.21,1,199 +3142,9745149,Brooklyn,Bedford-Stuyvesant,40.68185,-73.95336,Entire home/apt,90,7,8,0.35,2,301 +3143,4378763,Queens,Long Island City,40.752829999999996,-73.92915,Private room,73,2,97,1.44,3,359 +3144,9751988,Manhattan,Chelsea,40.74599,-73.99775,Private room,90,6,4,0.07,1,0 +3145,2808971,Manhattan,Hell's Kitchen,40.76316,-73.99358000000001,Entire home/apt,200,2,6,0.09,1,20 +3146,4693453,Brooklyn,Crown Heights,40.67593,-73.95885,Entire home/apt,94,20,46,0.72,1,0 +3147,9762099,Manhattan,Lower East Side,40.71845,-73.99325999999999,Entire home/apt,145,1,0,,1,0 +3148,9774018,Manhattan,Gramercy,40.7366,-73.98703,Entire home/apt,199,2,240,3.49,1,152 +3149,9582999,Brooklyn,Bedford-Stuyvesant,40.68305,-73.9419,Entire home/apt,150,1,0,,1,0 +3150,7748646,Manhattan,Upper East Side,40.7789,-73.95311,Private room,85,3,134,1.96,1,108 +3151,9782866,Manhattan,Murray Hill,40.74855,-73.977,Entire home/apt,195,4,31,0.46,1,78 +3152,9782676,Manhattan,Greenwich Village,40.72934,-74.00075,Entire home/apt,173,5,143,2.13,1,144 +3153,7503643,Brooklyn,Greenpoint,40.72589,-73.94055,Entire home/apt,159,30,5,0.07,52,346 +3154,9790609,Brooklyn,Williamsburg,40.71216,-73.96615,Private room,85,3,92,1.57,1,123 +3155,9795483,Brooklyn,Bedford-Stuyvesant,40.684129999999996,-73.92693,Entire home/apt,120,3,207,3.04,1,237 +3156,9795610,Manhattan,Midtown,40.75669,-73.9666,Entire home/apt,225,3,1,0.05,1,0 +3157,8292927,Brooklyn,Williamsburg,40.71394,-73.94193,Entire home/apt,175,2,111,2.4,2,108 +3158,586409,Manhattan,Midtown,40.75375,-73.96556,Private room,130,2,128,1.88,1,294 +3159,3627583,Manhattan,West Village,40.733109999999996,-74.00761,Entire home/apt,249,60,0,,1,363 +3160,9522524,Brooklyn,Canarsie,40.64448,-73.89222,Private room,38,5,72,1.11,5,349 +3161,2673168,Brooklyn,Bushwick,40.70343,-73.91343,Private room,53,1,38,0.55,1,312 +3162,32704,Manhattan,Hell's Kitchen,40.76296,-73.98640999999999,Private room,125,4,108,1.69,1,285 +3163,9813233,Manhattan,SoHo,40.72617,-74.00140999999999,Entire home/apt,245,1,0,,1,0 +3164,9813350,Brooklyn,DUMBO,40.702890000000004,-73.98583,Entire home/apt,150,9,0,,1,0 +3165,9522524,Brooklyn,Canarsie,40.64674,-73.89501,Private room,32,5,85,1.25,5,155 +3166,9817733,Manhattan,Hell's Kitchen,40.754059999999996,-73.99376,Entire home/apt,160,3,158,2.33,1,188 +3167,9818634,Brooklyn,Prospect-Lefferts Gardens,40.66173,-73.95382,Entire home/apt,175,1,0,,1,0 +3168,9820312,Brooklyn,Williamsburg,40.70711,-73.94457,Private room,40,7,0,,1,331 +3169,9820942,Brooklyn,Bushwick,40.70565,-73.92254,Private room,58,1,236,3.45,3,350 +3170,6321587,Brooklyn,Bedford-Stuyvesant,40.68166,-73.94325,Entire home/apt,149,2,20,0.31,1,355 +3171,9794342,Manhattan,Chelsea,40.750659999999996,-74.00376999999999,Entire home/apt,200,3,35,0.55,1,0 +3172,9831559,Brooklyn,Bedford-Stuyvesant,40.68285,-73.95111999999999,Entire home/apt,100,4,10,0.24,1,0 +3173,9832158,Brooklyn,Bedford-Stuyvesant,40.68442,-73.95639,Private room,50,2,6,0.12,1,0 +3174,3196987,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95366,Entire home/apt,97,5,44,1.5,1,66 +3175,3416555,Manhattan,Chelsea,40.74793,-74.00690999999999,Private room,84,2,143,2.13,1,311 +3176,1297675,Brooklyn,Prospect Heights,40.68049,-73.97301999999999,Entire home/apt,275,4,19,0.28,2,205 +3177,9847713,Manhattan,Upper East Side,40.76981,-73.95812,Entire home/apt,99,2,249,3.63,1,172 +3178,9848620,Brooklyn,Greenpoint,40.72587,-73.94122,Entire home/apt,70,5,2,0.06,1,26 +3179,7503643,Brooklyn,Greenpoint,40.72749,-73.94201,Entire home/apt,149,30,7,0.11,52,340 +3180,9854533,Manhattan,Midtown,40.75463,-73.97062,Entire home/apt,399,5,33,0.49,1,36 +3181,9856784,Brooklyn,Gowanus,40.68374,-73.98558,Entire home/apt,145,3,266,4.49,1,224 +3182,9520651,Brooklyn,Gowanus,40.68323,-73.98643,Private room,200,2,0,,1,365 +3183,9820942,Brooklyn,Bushwick,40.70505,-73.92281,Private room,59,1,238,3.46,3,320 +3184,5097458,Brooklyn,Williamsburg,40.71863,-73.94575,Private room,70,3,30,0.6,1,364 +3185,9870396,Manhattan,Gramercy,40.73892,-73.98921999999999,Entire home/apt,249,4,26,0.62,1,281 +3186,9872650,Brooklyn,Flatbush,40.6406,-73.96195,Entire home/apt,70,4,26,0.39,1,81 +3187,3158364,Queens,Sunnyside,40.73673,-73.92526,Private room,45,5,70,2.23,4,250 +3188,3187531,Manhattan,Chelsea,40.746759999999995,-74.00234,Private room,75,1,202,3.19,1,0 +3189,7849107,Brooklyn,Williamsburg,40.71351,-73.94315999999999,Private room,70,6,1,0.04,2,0 +3190,2332618,Brooklyn,Williamsburg,40.70727,-73.95459,Entire home/apt,159,1,15,0.22,2,194 +3191,6806417,Manhattan,Hell's Kitchen,40.76019,-73.99586,Entire home/apt,499,4,8,0.12,1,0 +3192,9820942,Brooklyn,Bushwick,40.70561,-73.92515,Private room,55,1,227,3.31,3,341 +3193,4358024,Manhattan,Lower East Side,40.721470000000004,-73.98806,Private room,228,1,2,0.22,2,365 +3194,9898029,Brooklyn,East Flatbush,40.64913,-73.92525,Private room,67,5,17,0.25,5,308 +3195,9888877,Manhattan,East Village,40.72745,-73.98344,Private room,119,3,1,0.01,1,0 +3196,684629,Manhattan,Upper West Side,40.7706,-73.98919000000001,Entire home/apt,189,1,7,0.13,1,0 +3197,9906590,Manhattan,Upper East Side,40.77785,-73.9454,Entire home/apt,350,1,0,,1,0 +3198,9912620,Brooklyn,Gowanus,40.68396,-73.98914,Entire home/apt,450,30,14,0.21,1,1 +3199,9917136,Brooklyn,Bedford-Stuyvesant,40.67814,-73.92375,Private room,45,29,12,0.18,3,337 +3200,5032943,Manhattan,Midtown,40.758759999999995,-73.96854,Entire home/apt,175,30,2,0.04,1,342 +3201,9921108,Brooklyn,Crown Heights,40.67801,-73.96106,Entire home/apt,83,7,2,0.03,1,0 +3202,325455,Brooklyn,Fort Greene,40.685159999999996,-73.97461,Entire home/apt,120,1,2,0.03,1,0 +3203,9745149,Brooklyn,Crown Heights,40.67138,-73.96058000000001,Private room,35,30,7,0.15,2,318 +3204,9709235,Manhattan,Harlem,40.810559999999995,-73.943,Entire home/apt,140,2,322,4.71,1,258 +3205,9909455,Manhattan,Harlem,40.82954,-73.94436,Private room,45,4,7,2.26,1,32 +3206,9930219,Manhattan,East Harlem,40.800290000000004,-73.94294000000001,Private room,90,3,7,0.11,1,310 +3207,6194487,Queens,Astoria,40.76425,-73.90489000000001,Private room,79,1,108,2.68,3,313 +3208,342599,Brooklyn,Bedford-Stuyvesant,40.693090000000005,-73.95921,Private room,100,3,15,0.22,1,0 +3209,9931428,Manhattan,Chelsea,40.74276,-74.00016,Entire home/apt,225,2,0,,1,17 +3210,9509269,Queens,Briarwood,40.71477,-73.82011999999999,Private room,66,5,95,1.39,2,301 +3211,5453550,Brooklyn,Clinton Hill,40.694140000000004,-73.96634,Entire home/apt,140,3,123,1.8,3,244 +3212,9947332,Brooklyn,Clinton Hill,40.684740000000005,-73.9632,Private room,98,4,245,3.61,1,247 +3213,5243122,Brooklyn,Bedford-Stuyvesant,40.679629999999996,-73.9375,Entire home/apt,140,3,156,2.36,2,230 +3214,9951559,Manhattan,Lower East Side,40.72083,-73.98755,Entire home/apt,195,2,71,1.04,1,222 +3215,9501531,Manhattan,Harlem,40.82438,-73.94332,Private room,60,1,245,3.6,3,336 +3216,1345452,Brooklyn,Crown Heights,40.67689,-73.95878,Entire home/apt,150,5,11,0.16,1,0 +3217,1229984,Queens,Long Island City,40.744040000000005,-73.95233,Private room,40,25,8,0.12,3,0 +3218,9959323,Queens,Astoria,40.77453,-73.92833,Entire home/apt,130,4,17,0.25,1,347 +3219,8740210,Brooklyn,Williamsburg,40.71278,-73.94035,Private room,75,3,1,0.02,1,0 +3220,915973,Brooklyn,Williamsburg,40.71715,-73.95527,Entire home/apt,248,3,57,0.9,1,344 +3221,9965028,Manhattan,East Village,40.727090000000004,-73.98442,Entire home/apt,450,2,18,0.28,1,363 +3222,110958,Brooklyn,Williamsburg,40.7161,-73.95074,Entire home/apt,120,14,29,0.43,1,0 +3223,9946315,Brooklyn,Williamsburg,40.71758,-73.9543,Entire home/apt,250,8,79,1.16,1,78 +3224,2765870,Manhattan,Lower East Side,40.7193,-73.98986,Private room,80,1,1,0.02,1,0 +3225,4482351,Manhattan,Hell's Kitchen,40.76143,-73.99223,Entire home/apt,140,5,17,0.25,2,2 +3226,4393792,Brooklyn,Williamsburg,40.71532,-73.94581,Entire home/apt,120,3,5,0.26,1,0 +3227,9989761,Manhattan,Harlem,40.800259999999994,-73.95196999999999,Shared room,45,3,229,3.36,2,312 +3228,9265204,Brooklyn,Williamsburg,40.70576,-73.94827,Private room,100,1,1,0.02,2,44 +3229,9990552,Brooklyn,Bedford-Stuyvesant,40.69135,-73.95859,Entire home/apt,175,2,52,1.26,1,264 +3230,9991075,Brooklyn,Clinton Hill,40.68492,-73.96669,Entire home/apt,130,1,16,0.38,2,0 +3231,6846161,Manhattan,Kips Bay,40.73772,-73.98025,Entire home/apt,175,3,9,0.13,1,0 +3232,9997988,Manhattan,Financial District,40.70602,-74.0072,Private room,40,1,0,,1,0 +3233,9442045,Brooklyn,Park Slope,40.67982,-73.98005,Entire home/apt,650,2,166,2.87,1,215 +3234,10001478,Manhattan,Midtown,40.76135,-73.97785,Private room,85,4,29,0.42,1,13 +3235,10001551,Manhattan,East Village,40.723729999999996,-73.99118,Private room,175,30,20,0.31,1,83 +3236,10003254,Manhattan,Hell's Kitchen,40.75887,-73.99475,Private room,105,4,10,0.2,1,0 +3237,4393358,Brooklyn,Williamsburg,40.71674,-73.95262,Private room,80,10,5,0.07,1,0 +3238,2317686,Brooklyn,Clinton Hill,40.6912,-73.96686,Entire home/apt,150,7,37,0.6,1,39 +3239,10012271,Bronx,Parkchester,40.83645,-73.86634000000001,Entire home/apt,195,5,1,0.02,1,0 +3240,10012421,Brooklyn,Clinton Hill,40.69356,-73.96744,Entire home/apt,750,3,32,1.66,1,141 +3241,1319462,Manhattan,Lower East Side,40.71972,-73.99299,Entire home/apt,249,2,230,3.39,2,166 +3242,239829,Brooklyn,Greenpoint,40.734190000000005,-73.95493,Entire home/apt,140,7,1,0.03,1,0 +3243,10008086,Brooklyn,Fort Greene,40.69117,-73.97046999999999,Entire home/apt,180,2,72,3.12,1,290 +3244,9207223,Manhattan,Harlem,40.80688,-73.94932,Private room,90,3,1,0.02,3,177 +3245,10018391,Bronx,City Island,40.852579999999996,-73.78761999999999,Entire home/apt,120,3,84,1.26,1,16 +3246,2274545,Queens,Middle Village,40.715759999999996,-73.86268000000001,Entire home/apt,85,2,97,1.43,1,230 +3247,8826175,Manhattan,Harlem,40.80874,-73.94756,Entire home/apt,174,3,177,2.62,3,165 +3248,10023559,Manhattan,Hell's Kitchen,40.76247,-73.99225,Entire home/apt,150,21,2,0.04,1,203 +3249,5048868,Manhattan,East Village,40.72815,-73.98059,Entire home/apt,295,1,261,3.82,1,245 +3250,3294551,Queens,Astoria,40.7582,-73.91686999999999,Entire home/apt,180,3,77,1.35,1,254 +3251,3710931,Manhattan,East Village,40.72997,-73.98496999999999,Entire home/apt,172,1,18,0.27,1,0 +3252,7329934,Brooklyn,Gowanus,40.68437,-73.98654,Entire home/apt,130,5,36,0.53,1,224 +3253,5164854,Manhattan,Harlem,40.820240000000005,-73.93799,Private room,52,7,19,0.28,8,324 +3254,576056,Brooklyn,Greenpoint,40.72318,-73.94931,Entire home/apt,220,1,2,0.03,1,0 +3255,2559004,Manhattan,East Harlem,40.80447,-73.94034,Private room,50,30,0,,5,356 +3256,9917136,Brooklyn,Bedford-Stuyvesant,40.677690000000005,-73.92303000000001,Private room,37,25,16,0.24,3,179 +3257,10041857,Manhattan,East Harlem,40.79629,-73.94769000000001,Private room,85,2,36,0.53,1,288 +3258,1430695,Brooklyn,Bushwick,40.68626,-73.91324,Entire home/apt,249,3,76,1.13,1,40 +3259,1479666,Brooklyn,South Slope,40.66583,-73.98956,Entire home/apt,150,14,10,0.21,1,0 +3260,7720086,Brooklyn,Fort Greene,40.68605,-73.97516999999999,Entire home/apt,119,6,7,0.25,1,0 +3261,861330,Brooklyn,Williamsburg,40.70139,-73.94499,Entire home/apt,49,7,0,,3,0 +3262,10061009,Manhattan,Harlem,40.804190000000006,-73.95581999999999,Private room,90,4,57,2.67,1,74 +3263,10071397,Manhattan,Chelsea,40.74328,-73.99741999999999,Entire home/apt,200,4,4,0.06,1,0 +3264,9950152,Brooklyn,East Flatbush,40.63803,-73.94894000000001,Entire home/apt,97,3,177,2.64,1,272 +3265,9535237,Brooklyn,Greenpoint,40.72575,-73.95231,Entire home/apt,399,30,13,0.19,1,363 +3266,8551260,Brooklyn,Williamsburg,40.70604,-73.94457,Entire home/apt,151,5,39,0.58,2,0 +3267,10074602,Manhattan,Hell's Kitchen,40.76435,-73.99054,Entire home/apt,200,5,0,,1,0 +3268,10087095,Manhattan,Little Italy,40.7193,-73.99781,Entire home/apt,200,3,41,0.6,1,0 +3269,8048803,Queens,Long Island City,40.75401,-73.91757,Entire home/apt,82,5,2,0.03,1,0 +3270,4259154,Manhattan,Upper West Side,40.800090000000004,-73.97009,Entire home/apt,130,1,87,1.42,1,5 +3271,1294674,Brooklyn,Fort Greene,40.68508,-73.97393000000001,Private room,69,2,12,0.18,1,6 +3272,10100413,Queens,Astoria,40.76266,-73.91450999999999,Entire home/apt,150,1,89,1.32,1,148 +3273,10102581,Manhattan,Washington Heights,40.85516,-73.93717,Entire home/apt,150,4,0,,1,0 +3274,2266169,Manhattan,East Village,40.72187,-73.98083000000001,Entire home/apt,150,2,221,3.3,1,215 +3275,10102809,Manhattan,East Village,40.7281,-73.98671,Entire home/apt,100,3,2,0.03,1,0 +3276,10103520,Manhattan,Kips Bay,40.74423,-73.97614,Entire home/apt,195,4,30,0.45,1,4 +3277,1308525,Manhattan,Chelsea,40.73925,-73.99359,Entire home/apt,251,5,26,0.43,1,14 +3278,5278115,Brooklyn,Williamsburg,40.717459999999996,-73.9607,Entire home/apt,200,1,1,0.02,1,320 +3279,1500550,Brooklyn,Prospect Heights,40.67475,-73.96385,Entire home/apt,100,6,5,0.07,1,0 +3280,120623,Bronx,Port Morris,40.808440000000004,-73.92889,Entire home/apt,140,30,16,0.24,1,365 +3281,2301618,Manhattan,East Village,40.7334,-73.98801,Entire home/apt,146,18,34,0.5,1,0 +3282,10123248,Brooklyn,Williamsburg,40.716879999999996,-73.94584,Entire home/apt,250,2,88,1.31,1,223 +3283,10124193,Manhattan,Upper East Side,40.77924,-73.95405,Entire home/apt,499,1,6,0.1,1,0 +3284,6655162,Brooklyn,Williamsburg,40.71842,-73.94093000000001,Private room,80,31,0,,1,0 +3285,10129919,Brooklyn,Cypress Hills,40.68528,-73.87819,Entire home/apt,80,3,225,3.49,2,250 +3286,1321170,Manhattan,Lower East Side,40.72139,-73.99271,Entire home/apt,220,2,85,1.27,1,305 +3287,10134825,Manhattan,Lower East Side,40.71286,-73.98437,Private room,102,2,6,0.13,4,0 +3288,3899946,Manhattan,Harlem,40.8233,-73.95591,Entire home/apt,120,5,8,0.12,1,0 +3289,10150931,Manhattan,East Village,40.72811,-73.98663,Entire home/apt,170,2,7,0.11,1,312 +3290,10153235,Manhattan,Upper West Side,40.781220000000005,-73.98473,Entire home/apt,235,1,0,,1,0 +3291,10153970,Manhattan,Upper East Side,40.76876,-73.95979,Entire home/apt,149,1,1,0.03,1,0 +3292,9975193,Brooklyn,Park Slope,40.67694,-73.9813,Entire home/apt,180,3,6,0.13,1,0 +3293,2052364,Brooklyn,Williamsburg,40.71367,-73.95673000000001,Private room,89,1,25,0.43,1,78 +3294,579495,Brooklyn,South Slope,40.66579,-73.98991,Entire home/apt,199,2,31,0.52,2,220 +3295,3388950,Brooklyn,Bedford-Stuyvesant,40.69484,-73.9342,Private room,72,5,62,1.05,6,140 +3296,10176907,Brooklyn,Bushwick,40.70022,-73.91441,Entire home/apt,80,7,6,0.12,1,3 +3297,10178252,Manhattan,Hell's Kitchen,40.76636,-73.98634,Private room,99,3,160,2.36,1,133 +3298,1225787,Brooklyn,Crown Heights,40.6713,-73.94329,Entire home/apt,125,30,26,0.38,1,264 +3299,10179999,Manhattan,Upper West Side,40.77021,-73.98721,Private room,150,1,157,2.49,1,365 +3300,10180449,Brooklyn,Windsor Terrace,40.65899,-73.97771,Entire home/apt,100,15,0,,1,0 +3301,3020145,Manhattan,SoHo,40.72493,-74.00193,Private room,106,2,191,2.81,1,291 +3302,1556814,Manhattan,Harlem,40.81381,-73.94166,Entire home/apt,250,30,19,0.3,1,318 +3303,151654,Manhattan,Greenwich Village,40.727959999999996,-73.99761,Private room,150,2,7,0.12,1,0 +3304,1351409,Brooklyn,Williamsburg,40.70978,-73.96854,Private room,100,3,15,0.24,1,358 +3305,10200352,Manhattan,Chelsea,40.74163,-73.99857,Entire home/apt,189,3,9,0.87,1,0 +3306,6547579,Manhattan,East Village,40.728229999999996,-73.98933000000001,Entire home/apt,1999,1,20,0.39,1,0 +3307,9878261,Manhattan,East Village,40.72679,-73.98598,Entire home/apt,120,1,73,1.07,1,49 +3308,8551260,Brooklyn,Williamsburg,40.70608,-73.94269,Private room,100,4,3,0.05,2,0 +3309,7503643,Brooklyn,Greenpoint,40.725390000000004,-73.94074,Entire home/apt,149,30,7,0.11,52,277 +3310,1472225,Manhattan,East Village,40.7282,-73.98615,Entire home/apt,480,10,59,0.87,1,24 +3311,10071119,Manhattan,Upper East Side,40.76838,-73.95481,Private room,100,1,1,0.01,1,0 +3312,8219931,Manhattan,Upper West Side,40.78468,-73.97137,Entire home/apt,300,1,0,,1,0 +3313,9522524,Brooklyn,Canarsie,40.64605,-73.89381999999999,Private room,33,5,84,1.25,5,295 +3314,10217559,Brooklyn,Park Slope,40.67122,-73.98618,Entire home/apt,175,1,0,,1,0 +3315,18174,Manhattan,East Village,40.72862,-73.98885,Entire home/apt,142,1,214,3.17,1,242 +3316,6638763,Queens,Ditmars Steinway,40.77906,-73.91265,Entire home/apt,135,3,38,0.62,1,243 +3317,10225447,Brooklyn,Bushwick,40.69937,-73.91463,Entire home/apt,135,3,164,2.45,1,325 +3318,4139790,Brooklyn,Williamsburg,40.718709999999994,-73.96455999999999,Entire home/apt,350,5,0,,1,365 +3319,10226006,Brooklyn,Prospect-Lefferts Gardens,40.66362,-73.94926,Entire home/apt,80,5,19,0.28,1,0 +3320,1521508,Manhattan,Upper West Side,40.798590000000004,-73.96078,Private room,80,3,38,0.59,1,344 +3321,2777672,Manhattan,Upper West Side,40.80168,-73.96253,Private room,87,2,272,4.02,3,133 +3322,5586949,Manhattan,East Village,40.727540000000005,-73.98555,Entire home/apt,450,3,12,0.19,2,0 +3323,10238618,Manhattan,Upper East Side,40.77556,-73.9483,Entire home/apt,275,2,2,0.03,1,0 +3324,10239152,Brooklyn,Crown Heights,40.67468,-73.94184,Entire home/apt,150,2,43,0.64,1,285 +3325,10241822,Brooklyn,Crown Heights,40.671479999999995,-73.95698,Private room,50,5,3,0.16,1,0 +3326,1525582,Brooklyn,Williamsburg,40.71971,-73.95998,Private room,79,3,176,2.63,1,37 +3327,6885157,Brooklyn,Bedford-Stuyvesant,40.68248,-73.95149,Private room,60,1,93,1.38,15,305 +3328,4113132,Queens,Elmhurst,40.73943,-73.87475,Private room,45,3,49,0.77,3,307 +3329,10251511,Manhattan,Upper West Side,40.78918,-73.97927,Entire home/apt,120,2,5,0.07,1,0 +3330,10252755,Manhattan,Washington Heights,40.84082,-73.93896,Entire home/apt,145,3,1,0.01,1,0 +3331,10256663,Manhattan,Harlem,40.81402,-73.94358000000001,Entire home/apt,175,3,136,2.0,1,171 +3332,1674102,Manhattan,East Village,40.72886,-73.98036,Entire home/apt,137,7,6,0.11,1,0 +3333,3185905,Manhattan,Midtown,40.76316,-73.98109000000001,Entire home/apt,1500,1,0,,1,0 +3334,10262420,Manhattan,East Harlem,40.788129999999995,-73.94495,Private room,86,4,37,0.97,1,22 +3335,10258336,Brooklyn,Bushwick,40.706179999999996,-73.91669,Entire home/apt,90,3,0,,1,0 +3336,2719126,Manhattan,Midtown,40.76663,-73.98069,Entire home/apt,345,5,19,0.33,1,192 +3337,10280728,Manhattan,Roosevelt Island,40.77,-73.94285,Entire home/apt,150,1,0,,1,0 +3338,374305,Manhattan,Hell's Kitchen,40.76485,-73.98751999999999,Entire home/apt,250,5,7,0.32,1,314 +3339,10294443,Brooklyn,Crown Heights,40.67497,-73.95879000000001,Entire home/apt,105,4,2,0.03,1,0 +3340,10294707,Brooklyn,Clinton Hill,40.69025,-73.96704,Entire home/apt,130,2,15,0.41,1,0 +3341,3767367,Manhattan,Upper East Side,40.7838,-73.9482,Private room,90,3,97,2.39,3,332 +3342,10263251,Brooklyn,Crown Heights,40.66952,-73.94377,Entire home/apt,150,3,154,2.27,1,218 +3343,10304755,Brooklyn,Williamsburg,40.71002,-73.95801999999999,Entire home/apt,150,4,42,0.62,2,0 +3344,6716330,Manhattan,Inwood,40.8639,-73.92808000000001,Entire home/apt,225,3,127,1.89,3,157 +3345,10317189,Manhattan,Upper West Side,40.793209999999995,-73.9694,Entire home/apt,1000,1,0,,1,0 +3346,4467316,Brooklyn,Williamsburg,40.710440000000006,-73.93987,Private room,80,30,4,0.08,2,254 +3347,10335193,Brooklyn,South Slope,40.66928,-73.98662,Entire home/apt,150,1,3,0.04,1,0 +3348,8481125,Manhattan,Upper East Side,40.76273,-73.95866,Private room,120,1,12,0.19,2,206 +3349,9539641,Bronx,North Riverdale,40.90804,-73.90005,Private room,53,2,143,2.13,1,263 +3350,10346273,Brooklyn,Flatbush,40.63524,-73.96602,Entire home/apt,115,30,4,0.07,1,47 +3351,1859395,Brooklyn,Williamsburg,40.71861,-73.94362,Shared room,175,1,7,0.1,1,0 +3352,4803115,Manhattan,Harlem,40.8083,-73.9439,Entire home/apt,150,1,5,0.08,1,0 +3353,7683195,Manhattan,SoHo,40.727779999999996,-74.0086,Entire home/apt,162,2,18,0.26,1,247 +3354,2933058,Manhattan,Morningside Heights,40.80446,-73.96366,Private room,95,4,9,0.13,1,0 +3355,10352213,Manhattan,Morningside Heights,40.81615,-73.96155999999999,Private room,55,2,19,0.79,2,0 +3356,1364042,Manhattan,Chinatown,40.71695,-73.99178,Entire home/apt,117,5,221,3.27,2,163 +3357,275744,Manhattan,Midtown,40.76542,-73.98080999999999,Entire home/apt,175,2,4,0.12,1,0 +3358,10355206,Queens,Ridgewood,40.70493,-73.90795,Entire home/apt,75,30,64,0.95,1,178 +3359,1364042,Manhattan,Lower East Side,40.71914,-73.99174000000001,Entire home/apt,189,5,220,3.25,2,271 +3360,10363037,Manhattan,Upper West Side,40.78021,-73.9805,Entire home/apt,150,2,7,0.18,1,0 +3361,10364678,Manhattan,Inwood,40.86888,-73.92059,Private room,45,2,36,0.57,2,188 +3362,10365281,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95575,Entire home/apt,190,2,237,3.7,1,266 +3363,7127362,Brooklyn,Clinton Hill,40.6841,-73.96691,Entire home/apt,130,5,9,0.13,1,0 +3364,8013034,Brooklyn,Bushwick,40.69641,-73.90994,Private room,79,1,13,0.49,2,315 +3365,10373126,Manhattan,West Village,40.739670000000004,-74.00933,Entire home/apt,850,3,0,,1,0 +3366,2496464,Brooklyn,Crown Heights,40.66687,-73.95619,Entire home/apt,150,5,68,1.07,1,202 +3367,10383481,Brooklyn,Clinton Hill,40.69594,-73.96715,Entire home/apt,100,2,100,1.49,1,280 +3368,10384087,Manhattan,Inwood,40.863170000000004,-73.92873,Entire home/apt,115,1,78,1.81,1,93 +3369,10387304,Manhattan,East Village,40.73003,-73.98576,Entire home/apt,300,2,17,0.55,2,169 +3370,10390993,Manhattan,Midtown,40.74873,-73.98827,Entire home/apt,159,7,0,,1,0 +3371,10392717,Manhattan,Midtown,40.74897,-73.98265,Private room,500,5,0,,1,0 +3372,7580038,Manhattan,Harlem,40.82475,-73.94842,Private room,39,12,26,0.42,3,155 +3373,8214568,Manhattan,Upper East Side,40.780809999999995,-73.95045,Entire home/apt,250,1,0,,1,0 +3374,4419367,Brooklyn,Windsor Terrace,40.653909999999996,-73.97400999999999,Entire home/apt,200,4,20,0.3,1,279 +3375,195168,Manhattan,Hell's Kitchen,40.76709,-73.98577,Entire home/apt,250,3,16,0.24,1,0 +3376,10398270,Manhattan,East Harlem,40.78605,-73.95087,Entire home/apt,120,6,4,0.06,1,0 +3377,323517,Manhattan,Upper West Side,40.800340000000006,-73.96638,Private room,105,1,31,0.46,2,365 +3378,10362054,Queens,Astoria,40.7577,-73.91981,Entire home/apt,100,3,1,0.05,1,0 +3379,212572,Manhattan,East Village,40.72977,-73.98713000000001,Entire home/apt,175,4,0,,1,0 +3380,5772472,Brooklyn,Greenpoint,40.72,-73.95433,Entire home/apt,500,5,0,,1,0 +3381,10411521,Manhattan,East Village,40.7282,-73.9834,Entire home/apt,120,5,0,,1,0 +3382,10417106,Brooklyn,Williamsburg,40.714909999999996,-73.94864,Private room,85,2,7,0.11,1,207 +3383,4363412,Manhattan,Chelsea,40.73985,-74.00138000000001,Entire home/apt,320,30,24,0.36,1,66 +3384,10243387,Queens,Astoria,40.7582,-73.92811,Entire home/apt,149,3,19,0.56,2,291 +3385,10417911,Manhattan,SoHo,40.723290000000006,-73.9981,Entire home/apt,400,3,1,0.02,1,0 +3386,10243387,Queens,Long Island City,40.75832,-73.92874,Private room,72,3,26,0.41,2,307 +3387,10419406,Manhattan,Harlem,40.82486,-73.93993,Entire home/apt,300,3,0,,1,0 +3388,9852787,Manhattan,Harlem,40.816390000000006,-73.94085,Entire home/apt,115,7,57,0.89,1,125 +3389,10162529,Queens,St. Albans,40.700390000000006,-73.75233,Entire home/apt,325,3,82,1.37,2,359 +3390,10384906,Brooklyn,Sunset Park,40.64532,-74.02063000000001,Private room,32,1,111,1.7,5,208 +3391,25100,Manhattan,Upper West Side,40.79675,-73.96916,Private room,100,3,11,0.16,1,0 +3392,10437461,Manhattan,Harlem,40.81858,-73.9559,Entire home/apt,150,4,12,0.2,1,0 +3393,667627,Manhattan,Harlem,40.81728,-73.94583,Entire home/apt,95,4,72,1.1,1,11 +3394,7846216,Manhattan,East Village,40.72635,-73.97595,Entire home/apt,290,1,114,1.71,1,157 +3395,10384906,Brooklyn,Dyker Heights,40.6283,-74.01608,Private room,30,1,67,0.99,5,150 +3396,10211848,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94445999999999,Entire home/apt,75,4,1,0.01,1,0 +3397,1415489,Manhattan,East Village,40.72782,-73.98095,Entire home/apt,140,5,25,0.37,1,13 +3398,4191006,Manhattan,West Village,40.73858,-74.00875,Private room,500,365,0,,1,0 +3399,10456845,Queens,Astoria,40.76589,-73.92864,Entire home/apt,100,1,2,0.03,2,0 +3400,7028387,Manhattan,Upper East Side,40.76749,-73.95533,Private room,80,24,89,1.4,1,146 +3401,10468616,Brooklyn,Park Slope,40.67559,-73.98362,Entire home/apt,125,3,1,0.03,1,0 +3402,3707465,Brooklyn,South Slope,40.667190000000005,-73.98361,Entire home/apt,250,4,11,0.17,1,0 +3403,6447895,Brooklyn,Bushwick,40.68673,-73.91024,Private room,50,2,2,0.5,1,35 +3404,1499286,Manhattan,Midtown,40.763259999999995,-73.98165,Entire home/apt,395,5,37,0.55,2,350 +3405,10478532,Manhattan,Hell's Kitchen,40.76473,-73.98937,Entire home/apt,100,2,11,0.16,1,0 +3406,620218,Brooklyn,Williamsburg,40.71257,-73.96149,Entire home/apt,250,4,0,,1,0 +3407,3886532,Brooklyn,Bushwick,40.707809999999995,-73.92184,Private room,79,1,89,1.39,3,310 +3408,4119331,Manhattan,Lower East Side,40.718920000000004,-73.98383000000001,Entire home/apt,100,7,0,,1,0 +3409,320284,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93346,Private room,52,2,203,3.13,1,323 +3410,4274857,Manhattan,Lower East Side,40.72148,-73.98823,Private room,98,4,67,1.09,3,102 +3411,10490291,Brooklyn,Crown Heights,40.66539,-73.95651,Entire home/apt,120,2,3,0.04,1,0 +3412,3126588,Brooklyn,Sunset Park,40.66118,-73.98901,Private room,40,25,0,,1,0 +3413,1442412,Manhattan,Kips Bay,40.73987,-73.98317,Entire home/apt,345,1,56,0.83,1,0 +3414,763439,Queens,Sunnyside,40.74817,-73.91886,Private room,50,1,1,0.04,1,0 +3415,9446761,Brooklyn,Williamsburg,40.70371,-73.93344,Private room,45,7,0,,1,0 +3416,10406601,Manhattan,Midtown,40.7552,-73.9724,Entire home/apt,250,1,0,,1,0 +3417,4836650,Manhattan,NoHo,40.72717,-73.9927,Entire home/apt,350,2,1,0.02,1,0 +3418,4684532,Brooklyn,Flatbush,40.65398,-73.96139000000001,Private room,57,2,199,2.98,1,265 +3419,4965107,Brooklyn,Fort Greene,40.69767,-73.97137,Entire home/apt,120,2,4,0.06,1,42 +3420,800720,Manhattan,West Village,40.73187,-74.00865,Entire home/apt,1000,3,0,,1,0 +3421,10525320,Manhattan,Upper East Side,40.773759999999996,-73.95343000000001,Entire home/apt,125,5,54,0.9,2,274 +3422,10526058,Manhattan,Harlem,40.801629999999996,-73.95413,Entire home/apt,145,3,58,0.97,1,0 +3423,10526877,Manhattan,East Village,40.72852,-73.98705,Entire home/apt,150,1,0,,1,0 +3424,10527465,Brooklyn,Fort Greene,40.6856,-73.97418,Private room,89,90,13,0.19,1,101 +3425,10528287,Brooklyn,Williamsburg,40.71589,-73.95534,Entire home/apt,164,1,200,3.37,2,208 +3426,10528287,Brooklyn,Williamsburg,40.71542,-73.95652,Entire home/apt,210,1,215,3.2,2,224 +3427,1584064,Manhattan,Harlem,40.80121,-73.95063,Private room,115,7,1,0.02,2,0 +3428,10534508,Manhattan,West Village,40.73075,-74.00238,Entire home/apt,110,45,21,0.31,1,0 +3429,10535116,Manhattan,Upper West Side,40.79053,-73.96956,Entire home/apt,199,5,8,0.12,1,9 +3430,6145679,Manhattan,SoHo,40.725770000000004,-74.00279,Entire home/apt,272,5,4,0.08,1,0 +3431,10535719,Manhattan,East Harlem,40.79981,-73.94048000000001,Private room,75,7,7,0.12,3,328 +3432,10535464,Manhattan,East Village,40.72829,-73.98907,Private room,69,13,42,0.62,1,84 +3433,10545845,Manhattan,East Harlem,40.807970000000005,-73.93686,Private room,179,1,1,0.01,1,0 +3434,9563358,Manhattan,Midtown,40.75184,-73.97199,Entire home/apt,106,7,3,0.09,1,4 +3435,10547610,Manhattan,West Village,40.732459999999996,-74.00854,Entire home/apt,800,1,0,,1,0 +3436,10550207,Manhattan,Upper West Side,40.77895,-73.97837,Private room,100,2,0,,1,0 +3437,4601412,Brooklyn,Bushwick,40.6922,-73.92399,Private room,60,2,226,3.42,2,164 +3438,10552208,Manhattan,Upper West Side,40.77928,-73.97966,Entire home/apt,120,7,3,0.04,1,0 +3439,6313448,Bronx,Bronxdale,40.85667,-73.86543,Entire home/apt,80,1,1,0.02,1,0 +3440,9864136,Manhattan,Kips Bay,40.74282,-73.9803,Private room,75,30,42,0.67,26,345 +3441,7455886,Queens,Astoria,40.7672,-73.90795,Private room,35,7,0,,1,0 +3442,617671,Brooklyn,Crown Heights,40.676590000000004,-73.95608,Entire home/apt,88,2,14,0.21,1,16 +3443,9757249,Queens,Sunnyside,40.74071,-73.9191,Private room,50,1,0,,1,0 +3444,5164854,Manhattan,Harlem,40.82078,-73.93771,Private room,45,4,19,0.31,8,42 +3445,10573163,Manhattan,Upper East Side,40.77127,-73.95033000000001,Entire home/apt,75,3,2,0.08,1,0 +3446,10575680,Manhattan,Kips Bay,40.74221,-73.98121,Private room,79,2,2,0.06,2,0 +3447,10577541,Queens,Forest Hills,40.71215,-73.85356,Private room,55,15,6,0.1,1,255 +3448,10581418,Brooklyn,Williamsburg,40.71524,-73.94299000000001,Private room,45,1,17,0.55,1,354 +3449,10581580,Brooklyn,South Slope,40.66551,-73.98805,Private room,85,10,0,,1,0 +3450,347642,Brooklyn,Bedford-Stuyvesant,40.67828,-73.92965,Private room,80,3,130,2.0,3,220 +3451,10585956,Manhattan,Hell's Kitchen,40.76874,-73.98756999999999,Entire home/apt,599,1,0,,1,0 +3452,10590038,Brooklyn,Williamsburg,40.70491,-73.94268000000001,Entire home/apt,110,3,3,0.05,1,0 +3453,10590692,Manhattan,Chelsea,40.74374,-74.00044,Entire home/apt,199,2,177,2.85,2,112 +3454,3608781,Brooklyn,Williamsburg,40.71955,-73.96049000000001,Private room,94,2,129,2.22,1,188 +3455,3011547,Brooklyn,Boerum Hill,40.6863,-73.98572,Entire home/apt,400,5,34,0.5,3,333 +3456,1939680,Brooklyn,Williamsburg,40.70731,-73.94344,Private room,60,7,5,0.14,1,3 +3457,1394669,Manhattan,Murray Hill,40.75053,-73.97747,Entire home/apt,175,2,31,0.46,1,33 +3458,1468317,Brooklyn,Greenpoint,40.72323,-73.94915,Entire home/apt,200,5,0,,1,0 +3459,1468247,Manhattan,East Village,40.73033,-73.98742,Private room,100,5,2,0.06,1,0 +3460,248739,Brooklyn,Crown Heights,40.66806,-73.95358,Entire home/apt,50,3,9,0.13,1,0 +3461,10607256,Manhattan,Kips Bay,40.73899,-73.98153,Entire home/apt,175,3,0,,1,0 +3462,7503643,Brooklyn,Greenpoint,40.72532,-73.93992,Entire home/apt,199,30,8,0.14,52,308 +3463,10607636,Brooklyn,Greenpoint,40.73397,-73.95442,Private room,54,4,4,0.06,1,0 +3464,8109174,Brooklyn,Park Slope,40.66952,-73.98285,Entire home/apt,130,4,8,0.12,1,0 +3465,5089,Brooklyn,Bedford-Stuyvesant,40.686370000000004,-73.9417,Entire home/apt,151,2,43,0.65,1,220 +3466,10610482,Manhattan,Morningside Heights,40.812329999999996,-73.96101,Entire home/apt,80,1,1,0.02,1,0 +3467,10621196,Manhattan,Lower East Side,40.71715,-73.98935999999999,Entire home/apt,110,8,5,0.07,1,333 +3468,7624316,Brooklyn,Bushwick,40.7018,-73.91823000000001,Entire home/apt,60,3,14,0.21,1,0 +3469,3389163,Brooklyn,Bedford-Stuyvesant,40.681709999999995,-73.92085,Entire home/apt,110,10,58,0.92,1,282 +3470,4030621,Brooklyn,Greenpoint,40.73303,-73.95153,Private room,73,2,19,0.28,1,0 +3471,10630723,Brooklyn,Bedford-Stuyvesant,40.69142,-73.93481,Entire home/apt,177,3,209,3.11,2,237 +3472,542611,Queens,Sunnyside,40.74409,-73.91868000000001,Entire home/apt,90,14,6,0.09,1,0 +3473,2707940,Manhattan,Lower East Side,40.71864,-73.98496,Entire home/apt,190,1,2,0.04,1,0 +3474,318435,Brooklyn,Crown Heights,40.66646,-73.93605,Entire home/apt,105,5,1,0.02,1,0 +3475,1657228,Manhattan,Harlem,40.81286,-73.94385,Entire home/apt,150,14,1,0.01,1,35 +3476,9947836,Bronx,Longwood,40.82347,-73.89495,Private room,65,4,26,0.85,2,7 +3477,10638597,Brooklyn,Williamsburg,40.70674,-73.94365,Private room,35,1,2,0.03,1,0 +3478,10638711,Brooklyn,Williamsburg,40.709579999999995,-73.94287,Entire home/apt,700,3,1,0.01,1,0 +3479,4690301,Brooklyn,Brooklyn Heights,40.691340000000004,-73.99334,Entire home/apt,185,2,10,0.2,1,0 +3480,10643341,Manhattan,Upper West Side,40.800329999999995,-73.96509,Entire home/apt,150,90,54,0.86,1,153 +3481,14751,Brooklyn,Bedford-Stuyvesant,40.68773,-73.9452,Private room,100,1,0,,1,220 +3482,10643695,Brooklyn,Williamsburg,40.71131,-73.96813,Entire home/apt,575,1,0,,1,0 +3483,2657134,Manhattan,Lower East Side,40.710440000000006,-73.98756,Private room,128,1,16,0.75,1,0 +3484,10650502,Manhattan,East Village,40.72247,-73.97923,Entire home/apt,299,28,92,1.37,1,14 +3485,10653693,Manhattan,Chinatown,40.71651,-73.99053,Entire home/apt,169,3,2,0.03,1,0 +3486,1763458,Manhattan,East Village,40.728640000000006,-73.98216,Private room,109,7,130,3.38,1,78 +3487,10656683,Brooklyn,Clinton Hill,40.680409999999995,-73.95838,Entire home/apt,99,4,74,1.93,1,261 +3488,10657268,Queens,Astoria,40.76165,-73.92179,Entire home/apt,130,5,0,,1,0 +3489,10658486,Manhattan,West Village,40.73552,-74.00716,Entire home/apt,239,4,52,0.82,1,84 +3490,234918,Brooklyn,Clinton Hill,40.68476,-73.96672,Entire home/apt,100,30,17,0.25,1,0 +3491,10661536,Brooklyn,Gowanus,40.66983,-73.9904,Entire home/apt,124,4,52,0.8,1,147 +3492,8452639,Brooklyn,Flatbush,40.64717,-73.96189,Private room,69,1,64,0.96,3,362 +3493,8956323,Brooklyn,Williamsburg,40.70867,-73.94799,Entire home/apt,180,2,0,,1,0 +3494,1104548,Brooklyn,Williamsburg,40.71371,-73.96236,Entire home/apt,225,2,28,0.55,1,0 +3495,10666587,Manhattan,Hell's Kitchen,40.757740000000005,-73.99371,Entire home/apt,119,2,3,0.04,1,0 +3496,10661984,Manhattan,Chelsea,40.746109999999994,-74.00014,Entire home/apt,220,7,55,1.12,1,13 +3497,10672341,Brooklyn,Crown Heights,40.66876,-73.95633000000001,Entire home/apt,150,4,6,0.1,2,0 +3498,2529788,Brooklyn,Prospect Heights,40.67321,-73.96514,Private room,75,1,0,,1,188 +3499,10677584,Brooklyn,Greenpoint,40.73408,-73.95600999999999,Private room,51,3,19,0.32,4,0 +3500,10662294,Manhattan,Upper East Side,40.77519,-73.95688,Entire home/apt,150,9,9,0.13,1,0 +3501,10099888,Brooklyn,Williamsburg,40.71243,-73.95873,Private room,91,1,9,0.14,1,0 +3502,7245581,Manhattan,Chelsea,40.74978,-73.99686,Entire home/apt,139,90,20,0.31,19,219 +3503,9791461,Brooklyn,Fort Greene,40.692859999999996,-73.96993,Entire home/apt,100,4,45,1.01,1,190 +3504,6471461,Queens,Ridgewood,40.707159999999995,-73.89905999999999,Private room,60,1,275,4.64,2,329 +3505,10642609,Manhattan,NoHo,40.72477,-73.99323000000001,Entire home/apt,255,2,8,0.12,1,0 +3506,10692401,Queens,Sunnyside,40.74409,-73.92471,Entire home/apt,94,7,27,0.4,1,0 +3507,10694601,Manhattan,East Village,40.72287,-73.98461999999999,Entire home/apt,179,2,21,0.31,1,0 +3508,1461630,Manhattan,Upper East Side,40.76352,-73.95548000000001,Entire home/apt,135,4,105,1.56,1,267 +3509,4970579,Brooklyn,Flatbush,40.63832,-73.96769,Private room,50,5,77,1.14,1,33 +3510,2462590,Brooklyn,Bushwick,40.690670000000004,-73.92206999999999,Entire home/apt,350,2,6,0.95,2,99 +3511,10710522,Manhattan,Upper East Side,40.77452,-73.94951,Entire home/apt,150,30,26,0.41,1,269 +3512,10545523,Manhattan,Nolita,40.72045,-73.99598,Entire home/apt,375,3,6,0.1,1,0 +3513,9829662,Manhattan,Upper West Side,40.77747,-73.98095,Private room,150,3,10,0.16,1,42 +3514,10717291,Manhattan,Hell's Kitchen,40.76204,-73.99143000000001,Entire home/apt,175,1,0,,1,0 +3515,7096230,Brooklyn,Park Slope,40.67281,-73.97628,Entire home/apt,170,2,24,0.38,1,0 +3516,10720001,Brooklyn,Williamsburg,40.70981,-73.95189,Entire home/apt,275,3,3,0.05,1,0 +3517,5976214,Brooklyn,Bushwick,40.70381,-73.92766,Private room,30,3,2,0.03,1,0 +3518,2977901,Brooklyn,Cobble Hill,40.68803,-73.99181999999999,Entire home/apt,150,1,19,0.28,1,0 +3519,4265753,Manhattan,Midtown,40.754259999999995,-73.96885999999999,Entire home/apt,140,3,2,0.07,1,0 +3520,10721586,Manhattan,Upper West Side,40.78835,-73.9681,Entire home/apt,200,30,1,0.02,1,365 +3521,10725397,Manhattan,Upper West Side,40.778220000000005,-73.98016,Entire home/apt,560,1,0,,1,0 +3522,6757150,Manhattan,Theater District,40.76263,-73.98271,Entire home/apt,240,4,0,,1,0 +3523,10643810,Queens,Ridgewood,40.70988,-73.90845,Entire home/apt,99,2,57,0.89,1,42 +3524,10732706,Manhattan,Gramercy,40.73646,-73.98337,Entire home/apt,195,3,3,0.21,1,0 +3525,10575680,Manhattan,Murray Hill,40.74961,-73.97865,Private room,89,2,10,0.32,2,0 +3526,1318137,Brooklyn,Bushwick,40.694720000000004,-73.92874,Private room,65,3,87,1.37,2,305 +3527,10736013,Manhattan,West Village,40.73192,-74.00433000000001,Entire home/apt,156,1,0,,1,0 +3528,1534243,Manhattan,East Village,40.728590000000004,-73.98957,Private room,120,1,0,,1,0 +3529,10346860,Manhattan,Upper West Side,40.79994,-73.97094,Entire home/apt,400,1,0,,1,0 +3530,9265204,Brooklyn,Williamsburg,40.70765,-73.94821,Entire home/apt,210,3,7,0.1,2,343 +3531,7503643,Brooklyn,Greenpoint,40.72587,-73.94138000000001,Entire home/apt,159,30,5,0.14,52,338 +3532,1318137,Brooklyn,Bedford-Stuyvesant,40.69193,-73.9274,Private room,55,3,70,1.11,2,285 +3533,7503643,Brooklyn,Greenpoint,40.72546,-73.94136,Entire home/apt,129,30,4,0.06,52,322 +3534,4185342,Manhattan,Upper West Side,40.77517,-73.98829,Entire home/apt,300,3,4,0.06,1,0 +3535,8013034,Brooklyn,Bushwick,40.69636,-73.91138000000001,Private room,79,1,20,0.32,2,285 +3536,2770596,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94673,Private room,100,4,0,,2,0 +3537,2151325,Manhattan,Upper West Side,40.77782,-73.97848,Entire home/apt,6000,14,17,0.27,1,359 +3538,1834769,Queens,Maspeth,40.72675,-73.90522,Entire home/apt,64,3,7,0.69,1,333 +3539,8337801,Brooklyn,Williamsburg,40.718720000000005,-73.95496,Private room,110,10,72,1.07,1,42 +3540,10764579,Manhattan,Harlem,40.82532,-73.94991999999999,Private room,55,14,66,1.12,1,17 +3541,10784618,Brooklyn,Bedford-Stuyvesant,40.68162,-73.94848,Private room,55,5,8,0.21,1,270 +3542,10768668,Brooklyn,Bushwick,40.70177,-73.91922,Private room,75,5,0,,1,0 +3543,10775192,Brooklyn,Greenpoint,40.72553,-73.94570999999999,Private room,70,1,0,,2,0 +3544,10777592,Manhattan,Upper East Side,40.7686,-73.95307,Shared room,85,2,16,0.25,1,0 +3545,1998676,Brooklyn,Windsor Terrace,40.650220000000004,-73.97247,Entire home/apt,130,29,16,0.26,1,217 +3546,514261,Brooklyn,South Slope,40.66639,-73.98706,Private room,120,7,0,,3,0 +3547,10787148,Brooklyn,Flatbush,40.64759,-73.96173,Entire home/apt,50,10,4,0.06,1,0 +3548,10788865,Manhattan,Washington Heights,40.834540000000004,-73.94224,Entire home/apt,100,1,205,3.05,1,1 +3549,2715062,Manhattan,Lower East Side,40.71973,-73.99338,Entire home/apt,145,2,4,0.06,1,0 +3550,5243832,Brooklyn,Williamsburg,40.712579999999996,-73.96392,Private room,100,5,44,1.68,1,41 +3551,7579627,Manhattan,West Village,40.73236,-74.00353,Entire home/apt,200,1,4,0.06,1,0 +3552,10806025,Manhattan,Harlem,40.82029,-73.93861,Entire home/apt,80,1,353,5.26,1,258 +3553,4967515,Manhattan,Upper West Side,40.78881,-73.98116,Entire home/apt,200,6,4,0.06,2,364 +3554,6854214,Manhattan,West Village,40.72975,-74.00414,Entire home/apt,325,1,0,,1,0 +3555,10577784,Queens,Long Island City,40.763040000000004,-73.92777,Entire home/apt,120,3,80,1.74,2,69 +3556,10828833,Manhattan,Hell's Kitchen,40.76466,-73.99325,Private room,180,3,191,3.29,1,161 +3557,269710,Manhattan,Financial District,40.70912,-74.01321999999999,Entire home/apt,379,2,96,1.52,1,0 +3558,10384906,Brooklyn,Borough Park,40.63592,-74.00476,Private room,33,1,98,1.55,5,0 +3559,10846328,Brooklyn,Williamsburg,40.712959999999995,-73.95088,Private room,60,4,0,,2,0 +3560,7503643,Brooklyn,Greenpoint,40.72552,-73.94195,Entire home/apt,199,30,4,0.07,52,365 +3561,7503643,Brooklyn,Greenpoint,40.72722,-73.94167,Entire home/apt,149,30,4,0.06,52,343 +3562,10852093,Manhattan,Upper East Side,40.77924,-73.95092,Entire home/apt,150,1,0,,1,0 +3563,8384058,Manhattan,Harlem,40.81143,-73.94248,Entire home/apt,98,8,37,0.59,1,170 +3564,923915,Manhattan,East Village,40.724759999999996,-73.97643000000001,Entire home/apt,250,4,34,0.52,2,239 +3565,10859032,Brooklyn,Bushwick,40.69312,-73.90581999999999,Private room,60,1,4,0.06,1,0 +3566,407078,Brooklyn,Williamsburg,40.715579999999996,-73.94355,Entire home/apt,149,2,49,0.73,1,171 +3567,3695778,Brooklyn,Williamsburg,40.7147,-73.96554,Private room,95,5,0,,1,0 +3568,2533833,Brooklyn,Bedford-Stuyvesant,40.684090000000005,-73.95402,Entire home/apt,85,3,122,1.93,1,41 +3569,7978448,Manhattan,Chelsea,40.741929999999996,-74.0017,Entire home/apt,90,3,23,0.36,1,0 +3570,10859726,Queens,Astoria,40.77073,-73.93229000000001,Private room,47,5,11,0.16,3,162 +3571,2119276,Manhattan,Hell's Kitchen,40.76613,-73.98721,Entire home/apt,180,30,16,0.25,39,337 +3572,2382974,Manhattan,Battery Park City,40.71,-74.0154,Private room,110,3,1,0.04,1,0 +3573,8624212,Brooklyn,Carroll Gardens,40.68362,-73.99714,Entire home/apt,170,2,131,2.02,1,26 +3574,7793849,Manhattan,Greenwich Village,40.72934,-73.99983,Entire home/apt,210,5,25,0.42,1,0 +3575,4074918,Manhattan,Upper West Side,40.794779999999996,-73.97474,Entire home/apt,900,1,0,,1,0 +3576,6599585,Queens,Richmond Hill,40.70171,-73.82788000000001,Entire home/apt,65,2,162,2.45,1,302 +3577,6001762,Brooklyn,Bedford-Stuyvesant,40.67927,-73.9113,Private room,60,7,0,,1,365 +3578,10906528,Manhattan,Upper West Side,40.78689,-73.96985,Entire home/apt,225,2,14,0.29,1,0 +3579,1193933,Brooklyn,Bushwick,40.68342,-73.91017,Entire home/apt,200,7,0,,1,0 +3580,10909829,Brooklyn,Bedford-Stuyvesant,40.684779999999996,-73.92971,Entire home/apt,170,3,125,1.86,2,314 +3581,68428,Manhattan,Washington Heights,40.83191,-73.9411,Private room,62,2,4,0.19,2,336 +3582,10928857,Manhattan,Murray Hill,40.74487,-73.97452,Entire home/apt,125,2,8,0.13,1,0 +3583,10929586,Manhattan,SoHo,40.72356,-74.00305,Private room,106,1,1,0.02,1,0 +3584,10929872,Manhattan,Harlem,40.81968,-73.95353,Private room,93,2,138,2.23,1,7 +3585,1580799,Manhattan,Upper East Side,40.77459,-73.95149,Private room,85,5,44,0.77,1,299 +3586,8280182,Manhattan,Washington Heights,40.85098,-73.93664,Private room,300,2,0,,1,365 +3587,10932521,Manhattan,Lower East Side,40.71978,-73.98643,Entire home/apt,224,2,12,0.21,1,0 +3588,6166889,Brooklyn,Williamsburg,40.714729999999996,-73.96495,Private room,145,1,52,0.82,1,291 +3589,10945216,Brooklyn,Crown Heights,40.67177,-73.95221,Private room,40,1,1,0.01,1,0 +3590,1698391,Manhattan,Hell's Kitchen,40.76197,-73.99308,Private room,135,2,150,2.42,3,98 +3591,10949644,Manhattan,Midtown,40.75667,-73.96464,Private room,97,3,177,2.69,1,58 +3592,2879920,Manhattan,Upper East Side,40.76141,-73.96273000000001,Private room,69,60,43,0.65,2,90 +3593,9130465,Brooklyn,Bushwick,40.693459999999995,-73.90765,Entire home/apt,225,4,233,3.55,1,89 +3594,7363831,Manhattan,SoHo,40.72615,-74.00123,Entire home/apt,900,1,0,,1,0 +3595,10454853,Manhattan,Hell's Kitchen,40.76213,-73.99376,Entire home/apt,215,3,2,0.04,1,0 +3596,10972334,Brooklyn,Bushwick,40.6966,-73.93072,Private room,99,2,8,0.25,2,88 +3597,10974237,Manhattan,East Village,40.72767,-73.98825,Entire home/apt,850,1,0,,1,0 +3598,5579700,Manhattan,Gramercy,40.73545,-73.98238,Entire home/apt,2000,1,0,,1,0 +3599,9268805,Queens,Sunnyside,40.74527,-73.91693000000001,Private room,60,1,10,0.16,2,184 +3600,6542088,Manhattan,Upper East Side,40.7836,-73.95093,Entire home/apt,303,7,29,0.46,1,3 +3601,10263977,Manhattan,Upper West Side,40.79752,-73.96298,Entire home/apt,750,3,0,,1,0 +3602,10981050,Brooklyn,Bedford-Stuyvesant,40.68922,-73.94626,Entire home/apt,111,3,104,1.65,1,261 +3603,2838861,Brooklyn,Greenpoint,40.73107,-73.95711999999999,Private room,60,30,10,0.15,1,92 +3604,4630562,Brooklyn,Williamsburg,40.71587,-73.96351,Entire home/apt,320,2,172,2.99,1,330 +3605,10992588,Brooklyn,Bedford-Stuyvesant,40.6864,-73.94529,Entire home/apt,112,200,314,4.82,2,42 +3606,9430366,Brooklyn,Bedford-Stuyvesant,40.682320000000004,-73.92746,Entire home/apt,185,2,159,3.2,1,348 +3607,10998158,Queens,Long Island City,40.75874,-73.92999,Private room,100,29,37,0.57,1,305 +3608,10995590,Brooklyn,Bushwick,40.700140000000005,-73.92705,Entire home/apt,150,1,1,0.02,1,0 +3609,305395,Manhattan,Hell's Kitchen,40.76337,-73.98576,Private room,130,5,98,1.73,1,48 +3610,11010011,Brooklyn,Bushwick,40.70751,-73.92058,Entire home/apt,130,5,9,0.18,1,0 +3611,11012889,Manhattan,Financial District,40.70451,-74.00671,Entire home/apt,575,1,0,,1,0 +3612,11012377,Brooklyn,Carroll Gardens,40.68497,-73.9902,Entire home/apt,125,5,2,0.32,1,196 +3613,11021180,Manhattan,East Village,40.72671,-73.98437,Entire home/apt,190,4,216,3.34,1,55 +3614,6326737,Brooklyn,Bushwick,40.68926,-73.91595,Private room,70,3,40,0.63,1,365 +3615,11039974,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,599,1,5,0.14,2,0 +3616,1470471,Brooklyn,Bedford-Stuyvesant,40.69112,-73.95203000000001,Private room,80,3,90,1.39,1,199 +3617,2090668,Manhattan,Upper East Side,40.774640000000005,-73.95226,Entire home/apt,99,1,0,,1,0 +3618,10533538,Manhattan,Upper East Side,40.7604,-73.96029,Entire home/apt,100,6,29,0.47,1,128 +3619,11051885,Manhattan,Theater District,40.76252,-73.98376,Entire home/apt,200,30,2,0.05,1,339 +3620,9949214,Manhattan,Harlem,40.822520000000004,-73.94462,Private room,60,2,13,0.45,1,33 +3621,11066377,Brooklyn,Prospect-Lefferts Gardens,40.6591,-73.96115999999999,Private room,100,2,13,0.36,1,365 +3622,8258307,Manhattan,Murray Hill,40.74855,-73.98001,Entire home/apt,2000,1,0,,1,0 +3623,11070320,Manhattan,Harlem,40.812,-73.95366999999999,Private room,90,3,82,1.29,1,0 +3624,11073109,Brooklyn,Clinton Hill,40.682140000000004,-73.96474,Private room,61,4,3,0.06,1,0 +3625,11063639,Brooklyn,Williamsburg,40.71557,-73.96149,Private room,99,1,0,,1,0 +3626,11079245,Queens,Ridgewood,40.70218,-73.91005,Private room,100,7,14,0.24,1,365 +3627,10096792,Manhattan,Upper West Side,40.77608,-73.97614,Entire home/apt,340,6,1,0.41,1,365 +3628,909577,Brooklyn,Williamsburg,40.71354,-73.96183,Private room,75,2,183,3.03,3,154 +3629,11103721,Brooklyn,Williamsburg,40.713640000000005,-73.96427,Entire home/apt,130,30,6,0.17,1,39 +3630,5716241,Brooklyn,Williamsburg,40.71328,-73.95154000000001,Entire home/apt,140,2,6,0.1,1,0 +3631,824689,Manhattan,Harlem,40.81562,-73.94426,Entire home/apt,112,3,22,0.34,1,313 +3632,377361,Manhattan,East Village,40.72456,-73.98004,Entire home/apt,160,3,25,0.4,1,0 +3633,5414067,Manhattan,Harlem,40.81333,-73.94194,Entire home/apt,165,3,142,2.27,2,301 +3634,3579337,Manhattan,Chelsea,40.74106,-74.00262,Private room,80,30,8,0.12,3,301 +3635,6910298,Manhattan,Hell's Kitchen,40.76,-73.99009000000001,Entire home/apt,850,1,0,,1,0 +3636,11147328,Manhattan,Midtown,40.75764,-73.96826999999999,Entire home/apt,950,1,0,,1,0 +3637,10636508,Manhattan,Tribeca,40.71725,-74.00528,Entire home/apt,1500,1,0,,1,0 +3638,11126880,Manhattan,Chelsea,40.74259,-73.99708000000001,Entire home/apt,160,4,8,0.12,1,0 +3639,11155956,Manhattan,West Village,40.73818,-74.00433000000001,Entire home/apt,300,2,0,,1,0 +3640,11157871,Brooklyn,Bedford-Stuyvesant,40.67892,-73.95156,Entire home/apt,150,2,94,2.55,1,144 +3641,11163727,Brooklyn,Park Slope,40.66587,-73.97737,Entire home/apt,250,1,0,,1,0 +3642,11165856,Manhattan,East Village,40.72358,-73.9867,Entire home/apt,100,10,0,,1,0 +3643,11167829,Manhattan,Harlem,40.828109999999995,-73.94372,Private room,49,2,79,1.22,3,52 +3644,11176329,Manhattan,Upper East Side,40.784009999999995,-73.94863000000001,Entire home/apt,675,5,3,0.05,1,0 +3645,6959160,Manhattan,Hell's Kitchen,40.76293,-73.98980999999999,Entire home/apt,150,5,9,0.15,1,6 +3646,11183488,Manhattan,Upper East Side,40.78328,-73.95273,Entire home/apt,300,1,0,,1,0 +3647,11136429,Manhattan,Lower East Side,40.71735,-73.99095,Private room,79,1,259,3.93,1,2 +3648,1587234,Manhattan,East Village,40.72422,-73.98210999999999,Entire home/apt,225,2,46,0.8,1,320 +3649,11189139,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9521,Private room,90,2,145,2.26,1,250 +3650,11189753,Brooklyn,Fort Greene,40.68683,-73.96981,Entire home/apt,285,8,23,0.36,4,364 +3651,11192207,Manhattan,Upper West Side,40.78731,-73.97805,Entire home/apt,300,2,2,0.06,1,0 +3652,396599,Brooklyn,Bushwick,40.69972,-73.92244000000001,Private room,55,2,1,0.16,2,157 +3653,8706294,Manhattan,Washington Heights,40.840579999999996,-73.93885,Entire home/apt,80,5,81,1.26,1,315 +3654,11208418,Manhattan,Washington Heights,40.841190000000005,-73.939,Private room,90,1,271,4.32,1,281 +3655,7181895,Manhattan,Upper East Side,40.7759,-73.94921,Entire home/apt,325,2,3,0.05,1,0 +3656,4173868,Manhattan,Washington Heights,40.84531,-73.93583000000001,Private room,55,7,9,0.14,1,0 +3657,5081260,Manhattan,NoHo,40.7278,-73.99205,Private room,208,2,38,0.6,1,313 +3658,3579337,Manhattan,West Village,40.737759999999994,-73.99996,Entire home/apt,156,1,8,0.15,3,300 +3659,11231506,Brooklyn,Bedford-Stuyvesant,40.69587,-73.94037,Entire home/apt,85,4,9,0.22,1,1 +3660,305591,Brooklyn,Fort Greene,40.69093,-73.97936,Entire home/apt,200,2,4,0.06,1,0 +3661,5392354,Manhattan,East Village,40.73087,-73.98713000000001,Entire home/apt,180,2,2,0.03,1,0 +3662,1500487,Brooklyn,Williamsburg,40.71577,-73.95408,Entire home/apt,250,10,0,,1,0 +3663,1451417,Brooklyn,Williamsburg,40.712920000000004,-73.95876,Entire home/apt,325,3,169,3.33,1,277 +3664,5149997,Manhattan,Midtown,40.75701,-73.96781,Entire home/apt,140,3,0,,1,0 +3665,4906960,Manhattan,Chinatown,40.71539,-73.99379,Entire home/apt,160,6,65,1.19,1,7 +3666,11265131,Manhattan,Lower East Side,40.72053,-73.98901,Private room,130,1,59,1.0,1,0 +3667,9538322,Manhattan,West Village,40.73747,-74.00014,Private room,110,1,136,3.1,1,63 +3668,8811222,Manhattan,Kips Bay,40.74361,-73.97677,Entire home/apt,150,2,120,3.25,1,29 +3669,8112314,Manhattan,Upper West Side,40.786159999999995,-73.97348000000001,Private room,149,2,121,2.06,2,270 +3670,11273539,Manhattan,Chelsea,40.74798,-74.00314,Entire home/apt,900,1,0,,1,0 +3671,11276922,Manhattan,Chelsea,40.74047,-73.99508,Entire home/apt,215,3,9,0.27,1,0 +3672,6447944,Manhattan,Upper West Side,40.79558,-73.96969,Entire home/apt,155,1,21,0.38,1,0 +3673,4618666,Brooklyn,Gowanus,40.68019,-73.98119,Private room,50,3,3,0.07,1,0 +3674,11279303,Brooklyn,Greenpoint,40.72764,-73.95557,Entire home/apt,225,5,0,,1,0 +3675,551055,Manhattan,Harlem,40.82649,-73.95253000000001,Private room,65,2,2,0.05,2,114 +3676,7644839,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93993,Entire home/apt,112,4,138,2.21,1,248 +3677,4237535,Manhattan,Lower East Side,40.71969,-73.99287,Entire home/apt,250,3,107,1.64,1,273 +3678,5278391,Brooklyn,Williamsburg,40.715270000000004,-73.94038,Private room,65,4,8,0.19,2,19 +3679,7503643,Brooklyn,Greenpoint,40.72572,-73.94031,Entire home/apt,159,30,0,,52,349 +3680,11297009,Manhattan,Upper West Side,40.78605,-73.97354,Entire home/apt,99,1,153,2.39,4,327 +3681,11257635,Manhattan,Upper West Side,40.7834,-73.97904,Entire home/apt,395,3,1,0.02,1,340 +3682,11306420,Brooklyn,Bushwick,40.700390000000006,-73.92867,Private room,145,1,0,,1,0 +3683,1544485,Manhattan,West Village,40.733109999999996,-74.00401,Entire home/apt,185,7,19,0.31,1,0 +3684,11312158,Manhattan,Kips Bay,40.74262,-73.97945,Entire home/apt,1500,1,0,,1,0 +3685,11313668,Brooklyn,Williamsburg,40.70046,-73.95133,Private room,45,2,26,0.68,2,241 +3686,10485182,Manhattan,Upper West Side,40.78835,-73.97256999999999,Entire home/apt,60,1,0,,1,0 +3687,11330638,Manhattan,Kips Bay,40.73879,-73.98226,Entire home/apt,749,1,0,,1,0 +3688,12190039,Manhattan,Washington Heights,40.83426,-73.94758,Private room,55,2,17,0.27,2,34 +3689,11339193,Manhattan,Midtown,40.74364,-73.98303,Entire home/apt,1000,3,0,,1,0 +3690,11340369,Manhattan,West Village,40.73823,-74.00233,Entire home/apt,165,7,1,1.0,1,8 +3691,1446751,Manhattan,Chelsea,40.745020000000004,-74.00429,Entire home/apt,285,2,47,0.74,1,194 +3692,11111521,Manhattan,Upper East Side,40.772659999999995,-73.95257,Entire home/apt,220,3,20,0.32,1,31 +3693,11342593,Bronx,Kingsbridge,40.864670000000004,-73.90125,Private room,75,2,11,0.2,1,365 +3694,4028092,Brooklyn,Bushwick,40.70147,-73.92005,Entire home/apt,120,5,11,0.27,1,2 +3695,11353904,Manhattan,Upper West Side,40.79476,-73.97299,Entire home/apt,4000,1,0,,1,0 +3696,11366961,Manhattan,Gramercy,40.73588,-73.98252,Entire home/apt,650,1,0,,1,0 +3697,11371978,Manhattan,Midtown,40.76402,-73.9777,Entire home/apt,750,4,0,,1,0 +3698,11375556,Brooklyn,Bushwick,40.700540000000004,-73.92374000000001,Entire home/apt,100,3,10,0.15,1,10 +3699,11386273,Manhattan,Harlem,40.80922,-73.95306,Private room,95,1,4,0.11,1,270 +3700,11385753,Manhattan,Financial District,40.70511,-74.00943000000001,Shared room,1000,1,0,,1,0 +3701,8312378,Manhattan,Greenwich Village,40.72926,-73.9989,Private room,119,2,146,2.21,2,265 +3702,112879,Brooklyn,Williamsburg,40.70949,-73.94221,Entire home/apt,1200,1,0,,1,0 +3703,11395220,Manhattan,East Village,40.73215,-73.98821,Entire home/apt,200,1,28,0.45,1,341 +3704,1726966,Brooklyn,Crown Heights,40.67167,-73.92434,Shared room,48,1,146,2.21,1,0 +3705,10931680,Manhattan,East Village,40.72672,-73.98850999999999,Shared room,30,30,125,1.88,1,304 +3706,11418277,Queens,Astoria,40.76437,-73.9195,Entire home/apt,65,4,2,0.03,1,0 +3707,1589909,Queens,Long Island City,40.74495,-73.95146,Private room,79,15,15,0.29,2,238 +3708,11313778,Manhattan,Kips Bay,40.74163,-73.97533,Entire home/apt,105,7,22,0.46,1,121 +3709,5078978,Manhattan,Kips Bay,40.743829999999996,-73.97909,Entire home/apt,420,2,2,0.04,1,0 +3710,2261678,Manhattan,Upper East Side,40.773309999999995,-73.95067,Entire home/apt,250,1,0,,1,0 +3711,249753,Brooklyn,Bushwick,40.70422,-73.91405,Entire home/apt,95,5,1,0.05,1,0 +3712,11430355,Brooklyn,Sunset Park,40.66296,-73.98955,Entire home/apt,290,2,25,0.39,1,195 +3713,11430909,Manhattan,Harlem,40.81085,-73.94768,Entire home/apt,100,1,0,,1,0 +3714,11440643,Manhattan,Chelsea,40.75,-73.99637,Entire home/apt,395,3,0,,1,0 +3715,4660888,Manhattan,Upper East Side,40.772259999999996,-73.95895,Entire home/apt,180,2,2,0.03,1,0 +3716,11457317,Manhattan,Upper West Side,40.77775,-73.98485,Entire home/apt,380,3,11,0.18,1,43 +3717,11457662,Brooklyn,Bensonhurst,40.60918,-73.99799,Entire home/apt,40,2,0,,2,0 +3718,11457662,Brooklyn,Bensonhurst,40.60931,-73.99847,Entire home/apt,45,2,28,0.43,2,0 +3719,9644281,Manhattan,Lower East Side,40.72082,-73.99028,Entire home/apt,300,1,2,0.05,1,0 +3720,1483320,Manhattan,Little Italy,40.71895,-73.99793000000001,Entire home/apt,5250,1,0,,1,0 +3721,11460768,Manhattan,Upper West Side,40.8002,-73.96045,Entire home/apt,1500,1,0,,1,0 +3722,11461795,Manhattan,Upper West Side,40.798590000000004,-73.9697,Private room,125,2,0,,1,0 +3723,11461854,Manhattan,West Village,40.73295,-74.00755,Entire home/apt,1500,1,0,,1,0 +3724,11443640,Manhattan,Upper East Side,40.78158,-73.94808,Entire home/apt,110,1,3,0.06,1,0 +3725,11333699,Brooklyn,Crown Heights,40.67112,-73.94536,Entire home/apt,105,2,281,4.29,1,248 +3726,2024924,Brooklyn,Park Slope,40.67232,-73.97879,Private room,45,5,42,0.64,2,221 +3727,11483903,Manhattan,Greenwich Village,40.73411,-73.99723,Entire home/apt,1000,1,0,,1,0 +3728,4358264,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94579,Entire home/apt,80,13,109,1.66,1,15 +3729,470870,Manhattan,Upper West Side,40.785309999999996,-73.96988,Entire home/apt,375,1,0,,1,0 +3730,2675913,Manhattan,Upper West Side,40.785740000000004,-73.9764,Entire home/apt,1000,1,0,,1,0 +3731,11492501,Manhattan,Stuyvesant Town,40.73205,-73.98094,Entire home/apt,1500,1,0,,1,0 +3732,11490872,Manhattan,Kips Bay,40.74422,-73.97822,Entire home/apt,1550,2,0,,1,0 +3733,11494661,Manhattan,Upper West Side,40.79891,-73.96705,Private room,89,3,7,0.15,1,10 +3734,4265028,Manhattan,East Village,40.72847,-73.99029,Private room,129,5,1,0.02,1,0 +3735,11505536,Manhattan,East Village,40.73046,-73.9921,Private room,500,1,0,,1,0 +3736,11508018,Manhattan,Upper East Side,40.7829,-73.94721,Entire home/apt,500,3,0,,1,0 +3737,11473727,Manhattan,Tribeca,40.7196,-74.00571,Entire home/apt,250,30,4,0.06,1,310 +3738,10036249,Manhattan,West Village,40.73341,-74.00791,Entire home/apt,250,1,2,0.03,1,0 +3739,11512483,Manhattan,Upper East Side,40.78021,-73.95044,Entire home/apt,175,2,5,0.08,1,0 +3740,11512676,Brooklyn,Bedford-Stuyvesant,40.68835,-73.95568,Private room,40,3,10,0.16,1,0 +3741,11512908,Manhattan,Upper East Side,40.7732,-73.95082,Entire home/apt,400,2,0,,1,0 +3742,6060700,Brooklyn,Williamsburg,40.71801,-73.95869,Private room,85,14,1,0.02,1,0 +3743,3672774,Brooklyn,Clinton Hill,40.68255,-73.96124,Entire home/apt,219,4,21,0.33,2,31 +3744,9420221,Manhattan,Upper East Side,40.76886,-73.95877,Entire home/apt,130,30,3,0.39,1,156 +3745,7503643,Brooklyn,Greenpoint,40.72599,-73.94171999999999,Entire home/apt,149,30,4,0.09,52,330 +3746,7748022,Manhattan,Kips Bay,40.73876,-73.98108,Entire home/apt,100,1,5,0.12,1,0 +3747,8312378,Manhattan,Greenwich Village,40.728320000000004,-73.99916,Entire home/apt,289,3,41,0.96,2,247 +3748,11297009,Manhattan,Upper West Side,40.78409,-73.97886,Private room,67,1,21,0.36,4,331 +3749,735701,Manhattan,Chelsea,40.7444,-73.9994,Entire home/apt,221,2,252,4.91,1,256 +3750,11523254,Manhattan,Chelsea,40.74344,-73.99826,Entire home/apt,750,2,0,,1,0 +3751,11526701,Brooklyn,Williamsburg,40.713570000000004,-73.96279,Private room,75,4,3,0.05,1,0 +3752,3312524,Manhattan,Hell's Kitchen,40.753609999999995,-73.99501,Entire home/apt,350,1,0,,1,0 +3753,11538076,Manhattan,Battery Park City,40.70517,-74.01753000000001,Entire home/apt,425,2,0,,1,0 +3754,11539672,Manhattan,SoHo,40.727059999999994,-74.00043000000001,Entire home/apt,200,1,0,,1,0 +3755,11540028,Manhattan,Chelsea,40.749990000000004,-73.99687,Entire home/apt,1000,3,0,,1,0 +3756,10683147,Brooklyn,Williamsburg,40.70943,-73.95101,Private room,100,7,0,,1,0 +3757,11503864,Queens,Astoria,40.76427,-73.91561999999999,Shared room,65,1,0,,1,0 +3758,11542120,Manhattan,Greenwich Village,40.73532,-73.99473,Private room,1250,1,0,,1,0 +3759,2027013,Manhattan,East Village,40.72959,-73.98111999999999,Entire home/apt,112,30,22,0.34,6,244 +3760,9389685,Manhattan,Murray Hill,40.7461,-73.97628,Entire home/apt,175,1,15,0.29,1,0 +3761,10416706,Brooklyn,Sea Gate,40.57645,-74.01065,Entire home/apt,1485,2,6,0.24,1,260 +3762,11552512,Queens,Sunnyside,40.74622,-73.92296,Entire home/apt,120,2,5,0.19,1,81 +3763,11163915,Manhattan,Upper West Side,40.79432,-73.97269,Entire home/apt,150,26,1,0.02,1,0 +3764,11557572,Manhattan,Kips Bay,40.74438,-73.97965,Entire home/apt,369,2,1,0.02,1,0 +3765,9989761,Manhattan,Harlem,40.801190000000005,-73.95295,Private room,81,1,133,2.23,2,13 +3766,11570627,Brooklyn,Williamsburg,40.70868,-73.95343000000001,Private room,89,3,152,2.67,1,147 +3767,7503643,Brooklyn,Greenpoint,40.72569,-73.94017,Entire home/apt,199,30,3,0.06,52,127 +3768,7503643,Brooklyn,Greenpoint,40.72537,-73.94076,Entire home/apt,149,30,0,,52,330 +3769,11576459,Brooklyn,Sunset Park,40.655,-74.00676,Private room,45,2,211,3.25,1,270 +3770,7503643,Brooklyn,Greenpoint,40.7272,-73.94176,Entire home/apt,149,30,2,0.03,52,337 +3771,3619427,Queens,Sunnyside,40.738170000000004,-73.92463000000001,Entire home/apt,600,4,0,,1,0 +3772,1531465,Manhattan,Kips Bay,40.74438,-73.97744,Entire home/apt,400,1,0,,1,0 +3773,8568891,Queens,Jamaica,40.7095,-73.78828,Private room,65,2,13,0.22,1,362 +3774,11598359,Brooklyn,Clinton Hill,40.68766,-73.96439000000001,Entire home/apt,6500,1,0,,1,0 +3775,11599506,Manhattan,Upper West Side,40.78345,-73.97858000000001,Entire home/apt,150,2,48,0.73,1,0 +3776,11600691,Brooklyn,Gowanus,40.68107,-73.98245,Entire home/apt,265,3,0,,1,0 +3777,11603608,Manhattan,Greenwich Village,40.7358,-73.99677,Entire home/apt,199,3,8,0.16,1,0 +3778,5175067,Manhattan,Hell's Kitchen,40.76726,-73.98285,Entire home/apt,395,5,9,0.19,1,0 +3779,8105524,Manhattan,Upper West Side,40.770179999999996,-73.98643,Entire home/apt,150,1,0,,1,0 +3780,11607949,Brooklyn,Gowanus,40.676320000000004,-73.99204,Entire home/apt,130,30,28,0.43,1,297 +3781,8730513,Manhattan,Greenwich Village,40.73357,-73.99767,Private room,175,3,1,0.07,1,0 +3782,11610321,Manhattan,Kips Bay,40.74215,-73.98018,Entire home/apt,2750,1,0,,1,0 +3783,11611239,Manhattan,Hell's Kitchen,40.7604,-73.9922,Private room,90,1,170,2.92,1,255 +3784,9451697,Manhattan,Midtown,40.75225,-73.98725,Entire home/apt,1500,1,0,,1,0 +3785,11623750,Manhattan,Greenwich Village,40.7335,-73.99834,Entire home/apt,2500,1,0,,1,0 +3786,11630571,Manhattan,Upper West Side,40.78498,-73.97284,Entire home/apt,350,1,7,0.14,1,365 +3787,7009234,Brooklyn,Williamsburg,40.71947,-73.9552,Entire home/apt,250,2,3,0.06,1,0 +3788,1427243,Manhattan,East Village,40.73323,-73.98859,Entire home/apt,3750,1,0,,1,0 +3789,7580102,Manhattan,Midtown,40.76292,-73.98128,Private room,250,3,6,0.58,2,170 +3790,2044302,Brooklyn,Williamsburg,40.71969,-73.9583,Entire home/apt,500,1,0,,1,0 +3791,10532769,Brooklyn,Carroll Gardens,40.68123,-73.99558,Entire home/apt,180,2,97,1.83,1,24 +3792,11661229,Manhattan,Upper West Side,40.78269,-73.9839,Entire home/apt,800,7,0,,1,0 +3793,11668649,Manhattan,Upper East Side,40.769040000000004,-73.95435,Entire home/apt,1600,1,0,,1,0 +3794,11669123,Manhattan,Upper West Side,40.79822,-73.97059,Entire home/apt,85,5,0,,1,0 +3795,11671329,Brooklyn,Bushwick,40.69982,-73.9249,Private room,49,4,2,0.04,1,0 +3796,11674823,Manhattan,Upper West Side,40.77859,-73.97964,Entire home/apt,750,1,0,,1,0 +3797,11675390,Brooklyn,Greenpoint,40.73052,-73.95568,Private room,91,4,106,2.82,1,113 +3798,11675431,Manhattan,West Village,40.735209999999995,-74.00089,Private room,100,5,8,0.26,1,0 +3799,11691665,Manhattan,Kips Bay,40.74398,-73.97662,Entire home/apt,152,1,5,0.14,1,0 +3800,9968385,Brooklyn,Williamsburg,40.71725,-73.96249,Entire home/apt,250,1,0,,1,0 +3801,11673798,Manhattan,Murray Hill,40.74576,-73.97821,Private room,110,1,227,3.5,1,239 +3802,11057719,Brooklyn,Williamsburg,40.715579999999996,-73.94881,Private room,73,14,0,,1,0 +3803,11706506,Queens,Astoria,40.76895,-73.9236,Shared room,300,1,0,,1,0 +3804,11708656,Manhattan,Upper East Side,40.774770000000004,-73.95503000000001,Entire home/apt,1000,1,0,,1,0 +3805,11710466,Manhattan,Upper East Side,40.77715,-73.94788,Entire home/apt,135,2,3,0.06,1,0 +3806,440396,Manhattan,Upper East Side,40.78103,-73.95069000000001,Entire home/apt,75,2,14,0.33,1,0 +3807,11721588,Manhattan,Midtown,40.76486,-73.97885,Private room,600,1,0,,1,0 +3808,6509406,Manhattan,Hell's Kitchen,40.75786,-73.99485,Entire home/apt,800,1,0,,1,0 +3809,2321783,Bronx,Riverdale,40.88579,-73.91599000000001,Entire home/apt,250,7,2,0.04,1,338 +3810,10974421,Manhattan,Hell's Kitchen,40.76182,-73.99003,Entire home/apt,200,1,8,0.16,1,0 +3811,10674441,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.95607,Private room,75,3,5,0.08,2,334 +3812,11732741,Manhattan,Financial District,40.70825,-74.00495,Entire home/apt,1000,1,0,,1,0 +3813,11733037,Brooklyn,Boerum Hill,40.68497,-73.98899999999999,Entire home/apt,900,1,0,,1,365 +3814,7636125,Manhattan,Tribeca,40.72035,-74.00493,Private room,70,14,0,,1,0 +3815,10149317,Queens,Rego Park,40.72988,-73.85773,Entire home/apt,88,3,33,0.77,5,262 +3816,11741773,Manhattan,Hell's Kitchen,40.76774,-73.98503000000001,Entire home/apt,425,1,0,,1,0 +3817,11747009,Manhattan,Theater District,40.76096,-73.98646,Entire home/apt,975,2,1,0.02,1,0 +3818,11753837,Brooklyn,Park Slope,40.67262,-73.97351,Entire home/apt,305,10,8,0.12,1,30 +3819,11762397,Manhattan,Lower East Side,40.72153,-73.99331,Entire home/apt,220,2,146,3.45,1,112 +3820,11764444,Manhattan,Hell's Kitchen,40.76532,-73.99061,Entire home/apt,150,1,11,0.26,1,0 +3821,7714918,Brooklyn,Bushwick,40.70544,-73.92192,Private room,49,4,4,0.07,2,8 +3822,11774081,Brooklyn,Bay Ridge,40.62455,-74.02756,Entire home/apt,86,2,0,,1,0 +3823,11778114,Brooklyn,Flatbush,40.63449,-73.95742,Entire home/apt,140,1,141,2.41,1,307 +3824,11790431,Queens,Kew Gardens Hills,40.72664,-73.82795,Entire home/apt,86,1,52,0.79,1,53 +3825,11793333,Manhattan,Upper West Side,40.78263,-73.97415,Entire home/apt,650,2,30,0.47,1,0 +3826,11254580,Manhattan,East Village,40.73259,-73.98680999999999,Entire home/apt,350,1,0,,1,0 +3827,11796166,Manhattan,Upper East Side,40.77469,-73.96327,Entire home/apt,225,2,3,0.09,1,88 +3828,5019619,Manhattan,Chinatown,40.71627,-73.99404,Private room,75,1,4,0.06,1,0 +3829,10973455,Manhattan,Chelsea,40.74935,-73.99723,Entire home/apt,150,1,49,0.75,1,0 +3830,7317241,Manhattan,Harlem,40.820159999999994,-73.94559,Private room,199,3,1,0.56,1,0 +3831,4148248,Brooklyn,Williamsburg,40.709720000000004,-73.93864,Entire home/apt,95,4,204,3.1,2,22 +3832,3689829,Brooklyn,Clinton Hill,40.685829999999996,-73.96558,Entire home/apt,200,2,110,1.73,1,51 +3833,11774035,Manhattan,Upper West Side,40.7803,-73.98347,Entire home/apt,200,3,45,0.73,1,346 +3834,11246260,Brooklyn,Cobble Hill,40.68554,-73.99499,Entire home/apt,175,7,32,0.5,1,24 +3835,7503643,Brooklyn,Greenpoint,40.727270000000004,-73.93986,Entire home/apt,129,30,3,0.08,52,365 +3836,305132,Brooklyn,Williamsburg,40.70771,-73.94344,Entire home/apt,200,3,13,0.22,1,0 +3837,6165258,Manhattan,Harlem,40.802690000000005,-73.94637,Private room,60,3,11,0.18,3,365 +3838,11845040,Manhattan,Financial District,40.70583,-74.00612,Private room,130,7,0,,1,157 +3839,11847492,Manhattan,East Harlem,40.7916,-73.94686,Private room,115,3,242,3.69,1,55 +3840,1639277,Manhattan,West Village,40.733740000000004,-74.00121,Private room,135,2,80,1.22,1,296 +3841,11861244,Manhattan,Upper East Side,40.76225,-73.96165,Private room,300,1,0,,1,0 +3842,3976338,Queens,Ridgewood,40.702059999999996,-73.90935999999999,Private room,59,3,106,1.61,1,87 +3843,5714455,Brooklyn,Clinton Hill,40.68568,-73.96244,Entire home/apt,196,2,232,4.31,1,261 +3844,11876825,Brooklyn,Bushwick,40.69856,-73.93162,Private room,128,3,52,0.8,1,219 +3845,9754117,Manhattan,Upper West Side,40.77794,-73.97699,Entire home/apt,400,1,0,,1,0 +3846,11894522,Manhattan,Theater District,40.76054,-73.98508000000001,Entire home/apt,200,30,11,0.18,1,363 +3847,3627104,Manhattan,Lower East Side,40.721709999999995,-73.99053,Entire home/apt,180,5,13,0.22,1,0 +3848,4467316,Brooklyn,Williamsburg,40.70874,-73.93818,Private room,60,30,16,0.28,2,190 +3849,11910223,Brooklyn,Williamsburg,40.71216,-73.94612,Private room,70,90,2,0.03,1,264 +3850,8873749,Manhattan,Washington Heights,40.84966,-73.93945,Private room,40,2,76,1.29,1,291 +3851,11915544,Brooklyn,Prospect-Lefferts Gardens,40.65747,-73.95798,Entire home/apt,250,5,7,0.11,1,195 +3852,11917311,Brooklyn,Crown Heights,40.67026,-73.92586999999999,Entire home/apt,80,2,17,0.39,1,0 +3853,11280333,Manhattan,Harlem,40.81128,-73.94117,Entire home/apt,85,3,82,1.38,1,35 +3854,11947308,Manhattan,Chinatown,40.7159,-73.99059,Private room,70,1,196,3.03,1,0 +3855,11976770,Brooklyn,Williamsburg,40.70941,-73.9522,Private room,55,5,4,0.08,1,0 +3856,11981562,Brooklyn,Bedford-Stuyvesant,40.6901,-73.94524,Private room,60,2,0,,1,0 +3857,6771815,Brooklyn,Greenpoint,40.73421,-73.95698,Private room,100,2,9,0.14,1,0 +3858,10792303,Brooklyn,Williamsburg,40.71165,-73.96715999999999,Private room,73,10,19,0.3,1,13 +3859,10672341,Brooklyn,Crown Heights,40.667320000000004,-73.95794000000001,Entire home/apt,145,2,0,,2,0 +3860,11983859,Queens,Astoria,40.76315,-73.92617,Private room,65,2,183,2.82,1,146 +3861,11998560,Brooklyn,Crown Heights,40.67286,-73.92566,Entire home/apt,162,1,75,1.2,2,103 +3862,11722972,Queens,Rego Park,40.73243,-73.86773000000001,Entire home/apt,275,30,9,0.14,1,342 +3863,1334808,Brooklyn,Williamsburg,40.71338,-73.95738,Private room,56,12,0,,2,0 +3864,6970733,Manhattan,Greenwich Village,40.729459999999996,-74.00189,Entire home/apt,200,2,26,0.55,1,0 +3865,3793026,Manhattan,Hell's Kitchen,40.763490000000004,-73.98985,Entire home/apt,250,5,176,2.72,1,0 +3866,5535265,Brooklyn,Bedford-Stuyvesant,40.68172,-73.93236,Entire home/apt,500,1,11,0.19,1,365 +3867,12059266,Brooklyn,Crown Heights,40.67935,-73.9633,Entire home/apt,120,30,14,0.22,1,108 +3868,10283677,Brooklyn,Flatbush,40.65173,-73.96035,Private room,55,3,8,0.36,1,0 +3869,2768182,Brooklyn,South Slope,40.66468,-73.98777,Private room,59,1,126,2.15,4,22 +3870,7881738,Brooklyn,Williamsburg,40.711,-73.95403,Entire home/apt,99,1,1,0.02,1,0 +3871,12092726,Manhattan,Upper East Side,40.78092,-73.95161999999999,Entire home/apt,155,1,75,1.3,1,0 +3872,12098551,Manhattan,Kips Bay,40.73997,-73.98137,Entire home/apt,200,3,4,0.08,2,0 +3873,7708014,Manhattan,Civic Center,40.71654,-74.00138000000001,Private room,60,4,23,0.35,1,0 +3874,10721506,Queens,Ozone Park,40.67657,-73.84083000000001,Entire home/apt,85,3,106,1.66,1,238 +3875,2588427,Manhattan,SoHo,40.72541,-74.01015,Private room,150,3,30,0.48,2,4 +3876,12120448,Queens,Ridgewood,40.70375,-73.9094,Private room,45,2,27,0.42,1,190 +3877,12123995,Manhattan,Hell's Kitchen,40.760459999999995,-73.99131,Entire home/apt,200,2,53,2.51,2,223 +3878,12129877,Brooklyn,Crown Heights,40.6738,-73.93985,Entire home/apt,120,2,193,2.97,2,292 +3879,12140561,Manhattan,Hell's Kitchen,40.763940000000005,-73.99448000000001,Entire home/apt,100,1,0,,1,4 +3880,12145783,Manhattan,East Harlem,40.80021,-73.94142,Entire home/apt,195,4,137,2.13,2,233 +3881,12157737,Brooklyn,Crown Heights,40.673429999999996,-73.96291,Private room,38,3,0,,1,0 +3882,1226950,Brooklyn,Crown Heights,40.6769,-73.9513,Private room,75,2,0,,1,0 +3883,12126255,Brooklyn,Bensonhurst,40.61518,-73.98874,Entire home/apt,76,30,28,0.44,1,282 +3884,10674441,Brooklyn,Bedford-Stuyvesant,40.69392,-73.95446,Entire home/apt,175,27,0,,2,148 +3885,179296,Brooklyn,Greenpoint,40.733340000000005,-73.95478,Entire home/apt,500,3,74,1.17,1,364 +3886,12186466,Brooklyn,Bedford-Stuyvesant,40.68843,-73.93678,Entire home/apt,179,3,149,2.33,1,242 +3887,8452639,Brooklyn,Flatbush,40.64846,-73.96186,Private room,200,1,30,0.5,3,362 +3888,132244,Manhattan,Lower East Side,40.717620000000004,-73.98334,Entire home/apt,400,7,0,,1,365 +3889,10510181,Bronx,Kingsbridge,40.884370000000004,-73.89746,Shared room,32,2,6,0.16,1,83 +3890,173997,Brooklyn,Williamsburg,40.7106,-73.95325,Private room,50,3,16,0.25,2,0 +3891,12223914,Manhattan,Lower East Side,40.71968,-73.98725999999999,Private room,75,1,0,,1,0 +3892,12245536,Manhattan,Harlem,40.82039,-73.95514,Private room,40,1,5,0.08,2,0 +3893,3992566,Brooklyn,Bushwick,40.700540000000004,-73.92954,Private room,62,21,39,0.65,3,110 +3894,1177497,Brooklyn,Clinton Hill,40.69045,-73.96762,Private room,239,1,16,0.28,11,363 +3895,2297544,Brooklyn,Williamsburg,40.719190000000005,-73.9418,Entire home/apt,179,5,22,0.37,1,336 +3896,12290324,Brooklyn,Williamsburg,40.71952,-73.96281,Entire home/apt,250,5,21,0.35,1,284 +3897,12294891,Manhattan,West Village,40.73618,-74.00256,Entire home/apt,400,5,8,0.13,1,35 +3898,5905011,Manhattan,Harlem,40.81904,-73.94325,Private room,98,2,182,2.85,1,312 +3899,11982812,Brooklyn,Williamsburg,40.710229999999996,-73.94657,Private room,89,1,99,1.55,1,0 +3900,12320096,Manhattan,Upper East Side,40.78331,-73.94489,Entire home/apt,185,2,3,0.27,1,0 +3901,1522929,Manhattan,East Village,40.72916,-73.98021999999999,Private room,125,3,13,0.34,1,0 +3902,4183222,Brooklyn,Carroll Gardens,40.68008,-73.99391999999999,Entire home/apt,180,2,1,0.02,1,0 +3903,8904815,Brooklyn,Flatbush,40.64307,-73.95455,Shared room,30,5,34,0.52,2,288 +3904,12346795,Brooklyn,Crown Heights,40.670190000000005,-73.95541,Private room,60,1,35,0.54,1,333 +3905,1191562,Manhattan,Lower East Side,40.71962,-73.99178,Private room,115,2,130,2.3,1,276 +3906,12348871,Brooklyn,Kensington,40.647420000000004,-73.97559,Entire home/apt,200,2,13,0.21,2,0 +3907,1473507,Brooklyn,Williamsburg,40.7186,-73.9451,Private room,70,1,0,,1,0 +3908,26640,Manhattan,Upper West Side,40.78327,-73.97343000000001,Entire home/apt,179,30,14,0.27,2,365 +3909,571080,Brooklyn,Bushwick,40.6998,-73.92913,Entire home/apt,109,1,12,0.19,1,0 +3910,12366541,Manhattan,Hell's Kitchen,40.76589,-73.98536,Private room,124,5,263,4.1,2,236 +3911,12384418,Manhattan,Chelsea,40.7453,-74.00704,Entire home/apt,159,2,43,1.1,1,25 +3912,10434821,Brooklyn,Crown Heights,40.67422,-73.95569,Entire home/apt,85,10,9,0.14,1,12 +3913,2841152,Brooklyn,Greenpoint,40.73169,-73.9554,Private room,109,2,107,1.64,1,269 +3914,12394900,Manhattan,Tribeca,40.72034,-74.01122,Entire home/apt,110,10,1,0.02,1,0 +3915,12399023,Manhattan,Tribeca,40.7159,-74.00834,Private room,500,1,0,,1,0 +3916,9915185,Manhattan,Harlem,40.82301,-73.94906999999999,Private room,65,2,2,0.04,1,0 +3917,8351424,Manhattan,Washington Heights,40.83358,-73.94462,Private room,112,2,20,1.44,1,179 +3918,4973668,Brooklyn,Bedford-Stuyvesant,40.68642,-73.9344,Shared room,25,5,76,1.22,3,258 +3919,2335233,Manhattan,Upper West Side,40.7809,-73.98215,Entire home/apt,220,5,0,,1,0 +3920,3053987,Brooklyn,Bushwick,40.6911,-73.92125,Entire home/apt,79,3,43,0.71,2,0 +3921,377287,Brooklyn,Greenpoint,40.72545,-73.95405,Entire home/apt,200,3,2,0.03,1,205 +3922,2120259,Brooklyn,Crown Heights,40.665859999999995,-73.95128000000001,Private room,55,4,21,0.34,4,129 +3923,12446529,Bronx,Soundview,40.82528,-73.86004,Private room,50,2,32,0.51,2,156 +3924,7503643,Brooklyn,Greenpoint,40.726690000000005,-73.9419,Entire home/apt,129,30,9,0.16,52,325 +3925,26640,Manhattan,Upper West Side,40.7851,-73.97397,Entire home/apt,195,30,45,0.73,2,327 +3926,1301613,Brooklyn,Flatbush,40.64815,-73.96486,Entire home/apt,79,2,8,0.13,1,6 +3927,2102889,Manhattan,Two Bridges,40.711490000000005,-73.99721,Private room,65,3,8,1.71,1,123 +3928,3948178,Manhattan,Hell's Kitchen,40.76453,-73.99515,Entire home/apt,123,2,8,0.13,1,0 +3929,9872597,Brooklyn,Williamsburg,40.711240000000004,-73.9499,Private room,70,5,8,0.15,1,0 +3930,3578009,Queens,Long Island City,40.74955,-73.95081,Private room,100,2,37,0.58,2,97 +3931,2768182,Brooklyn,South Slope,40.664429999999996,-73.98791999999999,Private room,69,1,143,2.41,4,22 +3932,3540714,Manhattan,Tribeca,40.72023,-74.00715,Entire home/apt,450,1,10,0.16,1,0 +3933,5165749,Manhattan,SoHo,40.725120000000004,-74.00024,Entire home/apt,650,5,0,,2,83 +3934,12386614,Manhattan,East Harlem,40.79926,-73.94499,Entire home/apt,125,3,2,0.13,1,249 +3935,12515888,Brooklyn,Greenpoint,40.73418,-73.95683000000001,Private room,75,1,35,0.55,2,306 +3936,12515888,Brooklyn,Greenpoint,40.73348,-73.95689,Entire home/apt,154,1,7,0.11,2,213 +3937,6717488,Manhattan,Morningside Heights,40.8049,-73.96315,Entire home/apt,60,14,12,0.19,1,0 +3938,12533228,Manhattan,Greenwich Village,40.729079999999996,-73.9965,Entire home/apt,279,1,78,1.22,1,363 +3939,10193030,Manhattan,Harlem,40.82349,-73.94193,Private room,80,3,3,0.05,2,178 +3940,64442,Manhattan,East Village,40.72598,-73.97778000000001,Private room,84,1,184,2.86,2,59 +3941,10232293,Brooklyn,Gowanus,40.67906,-73.99093,Entire home/apt,180,6,1,1.0,1,26 +3942,6369087,Brooklyn,Crown Heights,40.676520000000004,-73.95713,Entire home/apt,100,5,7,0.11,1,0 +3943,5696628,Brooklyn,Bedford-Stuyvesant,40.69011,-73.96025999999999,Private room,86,2,20,0.31,2,35 +3944,6718172,Brooklyn,Park Slope,40.67348,-73.9779,Entire home/apt,189,7,13,0.39,1,33 +3945,9991763,Manhattan,Financial District,40.707809999999995,-74.00701,Entire home/apt,130,365,6,0.1,1,262 +3946,4335080,Manhattan,Hell's Kitchen,40.76852,-73.98735,Entire home/apt,150,1,94,1.48,2,215 +3947,7503643,Brooklyn,Greenpoint,40.72708,-73.94171,Entire home/apt,149,30,1,0.07,52,0 +3948,4549281,Queens,Astoria,40.75705,-73.91771,Entire home/apt,83,14,0,,1,0 +3949,12575621,Manhattan,Upper East Side,40.78474,-73.94974,Entire home/apt,180,1,0,,1,0 +3950,12577771,Brooklyn,Bedford-Stuyvesant,40.689479999999996,-73.93528,Private room,18,1,0,,1,0 +3951,12579916,Brooklyn,Park Slope,40.68091,-73.9766,Entire home/apt,100,2,1,0.02,1,0 +3952,4137875,Brooklyn,Greenpoint,40.725590000000004,-73.95033000000001,Private room,145,2,21,0.45,1,64 +3953,12586492,Manhattan,Lower East Side,40.72007,-73.98946,Entire home/apt,133,14,177,2.82,2,221 +3954,12587147,Queens,Astoria,40.75799,-73.92005999999999,Private room,75,7,186,2.93,1,193 +3955,1262622,Brooklyn,Williamsburg,40.70669,-73.93578000000001,Private room,100,2,16,0.25,1,341 +3956,6530413,Manhattan,East Village,40.73237,-73.98918,Shared room,99,1,94,1.46,1,0 +3957,12058474,Brooklyn,Fort Greene,40.68825,-73.98038000000001,Entire home/apt,132,3,5,0.14,1,0 +3958,12608261,Manhattan,Harlem,40.79841,-73.95257,Private room,72,2,27,0.44,1,183 +3959,1000014,Queens,Astoria,40.76122,-73.91163,Entire home/apt,125,1,13,0.22,1,0 +3960,8778997,Brooklyn,Williamsburg,40.71512,-73.94978,Entire home/apt,102,7,26,0.41,1,2 +3961,7503643,Brooklyn,Greenpoint,40.72574,-73.94145999999999,Entire home/apt,129,30,3,0.05,52,303 +3962,101924,Brooklyn,Columbia St,40.68727,-74.00352,Entire home/apt,107,30,35,0.55,1,18 +3963,12616627,Manhattan,Nolita,40.722970000000004,-73.99539,Entire home/apt,250,1,2,0.05,1,0 +3964,7801481,Queens,Bay Terrace,40.78645,-73.77958000000001,Private room,90,3,8,0.25,2,324 +3965,12620213,Manhattan,Upper West Side,40.78792,-73.97758,Entire home/apt,200,4,0,,1,0 +3966,786862,Brooklyn,Williamsburg,40.71841,-73.95992,Private room,90,1,2,0.03,1,0 +3967,4665764,Manhattan,Upper West Side,40.79838,-73.96388,Private room,200,5,20,0.33,1,0 +3968,12637520,Brooklyn,Boerum Hill,40.68955,-73.98885,Entire home/apt,160,7,7,0.15,1,0 +3969,12366541,Manhattan,Hell's Kitchen,40.76269,-73.9907,Private room,124,5,196,3.02,2,149 +3970,12641005,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95279000000001,Private room,95,4,171,2.72,1,137 +3971,7503643,Brooklyn,Greenpoint,40.72591,-73.9422,Entire home/apt,129,30,2,0.04,52,341 +3972,10431172,Brooklyn,Williamsburg,40.71492,-73.94124000000001,Private room,110,4,66,1.04,1,323 +3973,12649246,Manhattan,Harlem,40.80121,-73.95002,Private room,92,2,173,2.71,1,276 +3974,8826175,Manhattan,Harlem,40.80705,-73.94452,Entire home/apt,175,3,157,2.46,3,38 +3975,9089934,Queens,Ozone Park,40.67948,-73.85335,Private room,30,7,0,,1,0 +3976,12516367,Brooklyn,Red Hook,40.68075,-74.00961,Entire home/apt,134,2,157,2.45,1,264 +3977,2935265,Manhattan,SoHo,40.72337,-74.00175,Entire home/apt,400,1,18,0.28,2,30 +3978,7974574,Manhattan,Kips Bay,40.744,-73.98054,Entire home/apt,152,270,5,0.1,1,0 +3979,12718658,Queens,Jackson Heights,40.75484,-73.8764,Shared room,75,2,0,,1,0 +3980,6194434,Manhattan,Financial District,40.70933,-74.00381,Private room,169,8,15,0.24,1,60 +3981,12358955,Brooklyn,Williamsburg,40.71116,-73.96078,Private room,95,2,156,2.43,2,274 +3982,12358955,Brooklyn,Williamsburg,40.71072,-73.96143000000001,Private room,90,2,142,2.22,2,306 +3983,12732806,Manhattan,Harlem,40.8151,-73.95147,Private room,60,1,19,1.34,1,356 +3984,12732385,Manhattan,Lower East Side,40.72005,-73.98609,Entire home/apt,180,6,55,0.85,1,97 +3985,3562864,Manhattan,Upper East Side,40.77194,-73.94773,Private room,84,3,150,2.38,1,294 +3986,2498724,Brooklyn,Bushwick,40.70451,-73.92588,Entire home/apt,98,4,32,0.5,1,8 +3987,9543143,Brooklyn,Flatlands,40.62338,-73.94078,Entire home/apt,90,7,21,0.33,1,0 +3988,4543994,Brooklyn,Greenpoint,40.727709999999995,-73.95382,Entire home/apt,134,6,6,0.09,1,0 +3989,598167,Manhattan,Chelsea,40.750659999999996,-73.9972,Private room,119,2,32,1.09,1,0 +3990,12760201,Manhattan,Upper East Side,40.77574,-73.9524,Entire home/apt,141,1,20,0.33,1,0 +3991,12773532,Manhattan,Greenwich Village,40.73405,-73.99725,Entire home/apt,199,4,3,0.05,1,0 +3992,4142684,Brooklyn,Bushwick,40.69587,-73.9096,Entire home/apt,108,3,232,3.62,1,89 +3993,12796040,Manhattan,Hell's Kitchen,40.7673,-73.98809,Entire home/apt,150,5,3,0.05,1,0 +3994,179679,Brooklyn,Williamsburg,40.71009,-73.95741,Entire home/apt,175,2,46,0.72,3,14 +3995,3030031,Brooklyn,Boerum Hill,40.68844,-73.98513,Private room,90,3,5,0.08,1,0 +3996,12806055,Brooklyn,Prospect-Lefferts Gardens,40.6574,-73.96174,Private room,45,2,3,0.06,1,151 +3997,12834599,Brooklyn,Borough Park,40.63256,-73.99453000000001,Private room,49,3,0,,4,180 +3998,8552126,Queens,Jamaica,40.67349,-73.76951,Entire home/apt,63,3,146,2.28,2,23 +3999,3905432,Manhattan,Harlem,40.81456,-73.94583,Private room,100,6,13,0.22,2,308 +4000,3034421,Brooklyn,Williamsburg,40.71683,-73.95623,Private room,110,1,38,0.63,1,157 +4001,12622830,Manhattan,Upper East Side,40.779790000000006,-73.96153000000001,Entire home/apt,600,1,0,,1,0 +4002,12851900,Queens,Long Island City,40.74263,-73.95594,Entire home/apt,395,7,50,0.8,1,319 +4003,12864943,Queens,Astoria,40.76441,-73.92878,Private room,70,3,1,0.02,2,0 +4004,12872352,Manhattan,Midtown,40.758790000000005,-73.96413000000001,Entire home/apt,399,1,87,1.37,3,267 +4005,12872812,Manhattan,Upper West Side,40.79732,-73.97259,Entire home/apt,145,14,22,0.35,1,282 +4006,12878653,Queens,Astoria,40.763740000000006,-73.90965,Private room,59,14,19,0.31,1,346 +4007,10440985,Queens,Astoria,40.758790000000005,-73.91185,Private room,50,10,1,0.03,1,0 +4008,9229424,Manhattan,Nolita,40.72276,-73.99499,Entire home/apt,145,2,52,0.86,1,0 +4009,10264377,Manhattan,East Village,40.73101,-73.98935999999999,Entire home/apt,245,2,3,0.07,1,0 +4010,9372538,Manhattan,Hell's Kitchen,40.761520000000004,-73.98793,Private room,149,1,158,3.11,2,78 +4011,808206,Brooklyn,Bushwick,40.70365,-73.92711,Private room,50,1,1,0.02,1,0 +4012,12899510,Queens,Ditmars Steinway,40.778040000000004,-73.91623,Entire home/apt,150,1,1,0.02,1,0 +4013,10149453,Manhattan,Lower East Side,40.71934,-73.98196,Private room,110,3,0,,1,0 +4014,6723969,Brooklyn,Crown Heights,40.675709999999995,-73.95161,Entire home/apt,60,1,2,0.03,1,0 +4015,12921356,Brooklyn,South Slope,40.66517,-73.98637,Entire home/apt,165,5,7,0.11,1,0 +4016,8288419,Brooklyn,Borough Park,40.644259999999996,-73.99555,Private room,53,1,162,2.51,4,60 +4017,918543,Manhattan,East Village,40.72314,-73.98491,Entire home/apt,160,5,0,,1,0 +4018,8288419,Brooklyn,Borough Park,40.64601,-73.99765,Private room,38,1,40,0.62,4,280 +4019,8288419,Brooklyn,Borough Park,40.64447,-73.99574,Private room,49,1,96,1.51,4,120 +4020,8288419,Brooklyn,Borough Park,40.64492,-73.99611999999999,Private room,47,1,90,1.43,4,74 +4021,1091832,Brooklyn,Bushwick,40.69728,-73.93066,Entire home/apt,120,2,15,0.24,1,61 +4022,7520792,Manhattan,Financial District,40.70558,-74.01533,Entire home/apt,175,2,45,0.76,1,0 +4023,7365834,Manhattan,Theater District,40.76084,-73.98366999999999,Entire home/apt,129,30,16,0.25,5,171 +4024,11825464,Brooklyn,Crown Heights,40.67901,-73.96236999999999,Private room,105,1,1,0.02,1,0 +4025,1210541,Brooklyn,Carroll Gardens,40.68287,-73.99082,Entire home/apt,275,2,3,0.05,1,0 +4026,3237558,Manhattan,Harlem,40.81927,-73.94631,Private room,99,1,0,,1,0 +4027,4517005,Manhattan,Kips Bay,40.73905,-73.98161,Entire home/apt,210,1,32,0.5,1,0 +4028,12967572,Manhattan,Upper West Side,40.77929,-73.97787,Private room,65,1,1,0.02,1,0 +4029,4636483,Brooklyn,Sunset Park,40.63747,-74.01153000000001,Private room,52,3,5,0.11,1,281 +4030,12972780,Queens,Astoria,40.76163,-73.91783000000001,Private room,100,1,13,0.51,2,0 +4031,9426702,Manhattan,Battery Park City,40.70657,-74.01675999999999,Private room,91,2,26,0.44,1,0 +4032,9743617,Manhattan,Harlem,40.81472,-73.94291,Entire home/apt,124,5,124,1.93,2,279 +4033,4358702,Manhattan,Harlem,40.82277,-73.94981,Private room,200,1,0,,1,0 +4034,7821383,Brooklyn,Prospect Heights,40.67454,-73.96803,Entire home/apt,550,1,24,0.38,1,0 +4035,4096786,Bronx,Norwood,40.87605,-73.88046999999999,Private room,70,6,40,0.73,1,313 +4036,4291837,Manhattan,Nolita,40.72224,-73.99491,Entire home/apt,150,1,156,2.46,1,111 +4037,13063145,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.95558,Entire home/apt,176,3,168,2.64,2,302 +4038,13068601,Manhattan,Morningside Heights,40.8075,-73.95844,Entire home/apt,99,30,9,0.14,1,0 +4039,7132792,Manhattan,Gramercy,40.73237,-73.98288000000001,Entire home/apt,130,6,2,0.06,1,0 +4040,9586465,Manhattan,Hell's Kitchen,40.76518,-73.98746,Entire home/apt,109,1,208,3.22,1,261 +4041,13094498,Manhattan,East Village,40.72939,-73.98319000000001,Private room,75,2,124,1.92,1,109 +4042,4912237,Manhattan,Hell's Kitchen,40.76791,-73.98735,Private room,95,4,7,0.11,1,0 +4043,2766490,Brooklyn,Crown Heights,40.68027,-73.96379,Private room,50,7,1,0.02,1,0 +4044,6754169,Brooklyn,Williamsburg,40.71685,-73.94246,Private room,100,2,38,0.61,2,0 +4045,8785876,Manhattan,Harlem,40.8235,-73.95144,Private room,68,1,86,1.36,1,64 +4046,1163315,Manhattan,Harlem,40.8029,-73.95694,Private room,104,3,298,4.67,1,42 +4047,13125674,Brooklyn,Flatbush,40.645759999999996,-73.95871,Private room,30,15,1,0.08,1,0 +4048,13067214,Brooklyn,Clinton Hill,40.6842,-73.9636,Entire home/apt,595,4,22,0.39,1,0 +4049,13132515,Brooklyn,Williamsburg,40.70819,-73.94813,Private room,65,9,12,0.19,1,0 +4050,13156191,Manhattan,East Harlem,40.797309999999996,-73.94230999999999,Shared room,55,1,10,0.2,1,0 +4051,13156754,Brooklyn,Boerum Hill,40.68611,-73.99031,Entire home/apt,250,6,6,0.09,1,56 +4052,10302140,Brooklyn,Williamsburg,40.71075,-73.95676,Entire home/apt,85,10,40,0.64,1,324 +4053,153675,Manhattan,East Village,40.731120000000004,-73.98558,Private room,90,5,109,1.73,2,21 +4054,1676600,Manhattan,Washington Heights,40.843090000000004,-73.94126999999999,Private room,90,3,2,0.03,1,0 +4055,13165300,Brooklyn,Williamsburg,40.72002,-73.9578,Entire home/apt,90,14,2,0.14,1,310 +4056,5140244,Manhattan,Upper West Side,40.78283,-73.97206,Entire home/apt,199,13,2,0.03,1,0 +4057,9090698,Manhattan,Chelsea,40.743109999999994,-74.00718,Entire home/apt,275,30,2,0.03,1,365 +4058,7451917,Brooklyn,Bay Ridge,40.63113,-74.02767,Entire home/apt,125,5,0,,2,213 +4059,2920976,Manhattan,Harlem,40.8127,-73.94367,Private room,150,3,23,0.36,1,0 +4060,13207016,Queens,Rockaway Beach,40.584509999999995,-73.815,Entire home/apt,140,2,14,0.22,1,0 +4061,413336,Manhattan,East Harlem,40.79249,-73.94592,Entire home/apt,120,7,0,,1,6 +4062,13225047,Brooklyn,Williamsburg,40.71997,-73.95945,Private room,60,1,44,1.24,3,0 +4063,4612212,Brooklyn,Bushwick,40.69304,-73.92079,Private room,36,10,2,0.03,1,0 +4064,6970030,Manhattan,Harlem,40.80546,-73.95221,Private room,85,3,51,1.27,1,66 +4065,2132620,Brooklyn,Crown Heights,40.676559999999995,-73.95825,Private room,85,1,4,0.11,1,0 +4066,12508991,Brooklyn,Flatbush,40.64772,-73.96273000000001,Private room,45,7,30,0.48,1,287 +4067,727585,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95644,Entire home/apt,92,3,227,3.61,1,173 +4068,13272957,Brooklyn,Bedford-Stuyvesant,40.69135,-73.94694,Private room,30,1,1,0.02,1,0 +4069,13304615,Brooklyn,Greenpoint,40.72707,-73.95681,Private room,75,1,3,0.05,1,0 +4070,13314076,Manhattan,Midtown,40.75529,-73.96897,Entire home/apt,99,6,15,0.24,1,0 +4071,13314736,Brooklyn,Williamsburg,40.70942,-73.94693000000001,Entire home/apt,100,20,7,0.21,1,327 +4072,13322259,Brooklyn,Boerum Hill,40.68647,-73.98595,Entire home/apt,115,3,54,0.94,1,188 +4073,8798158,Brooklyn,Bushwick,40.69911,-73.93713000000001,Entire home/apt,175,5,16,0.25,1,0 +4074,13345581,Brooklyn,Crown Heights,40.67648,-73.95098,Entire home/apt,112,4,19,0.52,2,0 +4075,13347139,Manhattan,Harlem,40.80007,-73.9562,Entire home/apt,450,7,6,0.16,1,0 +4076,13347167,Manhattan,Upper East Side,40.77231,-73.95588000000001,Entire home/apt,103,30,7,0.23,29,326 +4077,13347167,Manhattan,Upper East Side,40.77263,-73.95567,Entire home/apt,117,30,0,,29,331 +4078,13322169,Manhattan,Morningside Heights,40.81503,-73.96029,Entire home/apt,150,5,9,0.14,1,0 +4079,13373889,Staten Island,Concord,40.60375,-74.08065,Private room,129,1,40,0.85,2,86 +4080,10331953,Manhattan,Upper West Side,40.79071,-73.97408,Entire home/apt,145,3,8,0.13,1,0 +4081,2681844,Brooklyn,Bushwick,40.703179999999996,-73.91462,Entire home/apt,115,14,0,,1,0 +4082,10894722,Manhattan,Upper West Side,40.79733,-73.96104,Entire home/apt,90,5,0,,1,0 +4083,6222620,Manhattan,Hell's Kitchen,40.76608,-73.99203,Entire home/apt,90,2,1,0.02,1,0 +4084,524730,Brooklyn,Williamsburg,40.7165,-73.94842,Entire home/apt,100,30,99,1.57,2,151 +4085,13408910,Bronx,Concourse,40.83012,-73.92714000000001,Private room,41,2,12,0.35,2,0 +4086,13347167,Manhattan,Upper East Side,40.77265,-73.9574,Entire home/apt,145,30,1,0.11,29,329 +4087,13347167,Manhattan,Upper East Side,40.77276,-73.95675,Entire home/apt,139,30,4,0.07,29,308 +4088,13347167,Manhattan,Upper East Side,40.77107,-73.95682,Entire home/apt,117,30,6,0.11,29,255 +4089,4691967,Brooklyn,Bushwick,40.70065,-73.93862,Private room,50,5,5,0.12,1,0 +4090,13451102,Manhattan,Upper West Side,40.79827,-73.96880999999999,Private room,80,1,254,4.02,1,118 +4091,3881345,Brooklyn,Prospect Heights,40.67318,-73.96738,Entire home/apt,100,5,10,0.16,1,0 +4092,2818232,Brooklyn,Fort Greene,40.686609999999995,-73.97054,Entire home/apt,225,3,12,0.19,1,0 +4093,4045120,Brooklyn,Flatbush,40.648509999999995,-73.96121,Private room,70,1,7,2.21,1,176 +4094,12360441,Bronx,Co-op City,40.86646,-73.82154,Private room,80,3,2,0.03,1,365 +4095,6243156,Manhattan,Harlem,40.82424,-73.94664,Private room,70,2,228,4.27,1,247 +4096,10384906,Brooklyn,Borough Park,40.63081,-73.99638,Private room,31,1,60,0.97,5,158 +4097,13486605,Brooklyn,Bushwick,40.69616,-73.93200999999999,Private room,40,1,25,0.39,1,0 +4098,9482259,Manhattan,Harlem,40.800290000000004,-73.95362,Entire home/apt,290,4,12,0.2,1,359 +4099,1821771,Brooklyn,Fort Greene,40.68914,-73.9776,Entire home/apt,235,4,23,0.36,1,31 +4100,13496782,Brooklyn,Williamsburg,40.707190000000004,-73.96406999999999,Entire home/apt,200,1,2,0.06,1,0 +4101,13497325,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94184,Entire home/apt,180,1,0,,1,0 +4102,7250500,Brooklyn,South Slope,40.66141,-73.98097,Entire home/apt,110,1,5,0.88,1,85 +4103,13499885,Manhattan,East Village,40.728390000000005,-73.98613,Private room,120,3,5,0.09,2,0 +4104,13347167,Manhattan,Upper East Side,40.77278,-73.95753,Entire home/apt,142,30,1,0.03,29,205 +4105,4274857,Manhattan,Lower East Side,40.720729999999996,-73.98954,Private room,105,3,21,0.33,3,20 +4106,13501034,Manhattan,Upper East Side,40.780609999999996,-73.9498,Entire home/apt,100,10,4,0.06,1,0 +4107,13295673,Manhattan,Hell's Kitchen,40.765029999999996,-73.98827,Private room,102,2,6,0.26,1,0 +4108,8481739,Brooklyn,Williamsburg,40.71498,-73.96104,Entire home/apt,152,1,334,5.2,1,269 +4109,13503154,Brooklyn,Crown Heights,40.67228,-73.93352,Entire home/apt,150,28,22,0.38,2,207 +4110,2687435,Queens,Ditmars Steinway,40.775940000000006,-73.91786,Entire home/apt,95,3,25,3.04,1,6 +4111,9898029,Brooklyn,East Flatbush,40.64942,-73.92482,Private room,67,5,50,0.8,5,300 +4112,1570348,Brooklyn,Crown Heights,40.67265,-73.9485,Private room,65,2,51,0.81,1,73 +4113,72014,Brooklyn,Williamsburg,40.71112,-73.96268,Private room,79,22,21,0.34,4,313 +4114,4282318,Brooklyn,Flatbush,40.65403,-73.95904,Private room,55,1,151,2.37,2,135 +4115,4294396,Manhattan,Morningside Heights,40.8098,-73.95721999999999,Entire home/apt,83,60,1,0.02,1,0 +4116,2653156,Manhattan,Gramercy,40.73409,-73.98559,Entire home/apt,200,30,38,0.65,1,170 +4117,7706697,Brooklyn,Carroll Gardens,40.67909,-73.99600000000001,Private room,150,4,0,,2,257 +4118,320285,Manhattan,East Village,40.728159999999995,-73.98035,Entire home/apt,160,10,18,0.28,1,281 +4119,13574223,Queens,Maspeth,40.718270000000004,-73.90647,Entire home/apt,80,2,61,3.13,1,32 +4120,9951993,Manhattan,Upper West Side,40.79592,-73.97024,Entire home/apt,159,2,1,0.05,1,0 +4121,13360423,Manhattan,Upper East Side,40.77645,-73.94865,Entire home/apt,90,30,13,0.25,1,0 +4122,157795,Brooklyn,Crown Heights,40.67799,-73.94709,Shared room,45,4,11,0.19,2,0 +4123,6991947,Manhattan,Two Bridges,40.71226,-73.99416,Private room,100,1,103,2.21,1,223 +4124,13596820,Brooklyn,Greenpoint,40.732820000000004,-73.9578,Entire home/apt,125,3,16,0.25,1,60 +4125,9051298,Manhattan,Harlem,40.8106,-73.94646999999999,Shared room,100,1,0,,2,0 +4126,13604945,Manhattan,East Village,40.721,-73.98169,Private room,80,4,143,2.24,1,187 +4127,5907325,Manhattan,Upper East Side,40.76791,-73.96509,Entire home/apt,2300,3,32,0.53,1,139 +4128,13611255,Brooklyn,Bedford-Stuyvesant,40.688520000000004,-73.93588000000001,Entire home/apt,90,30,62,1.2,3,280 +4129,2294061,Manhattan,East Harlem,40.7913,-73.94265,Entire home/apt,140,3,2,0.04,1,0 +4130,3842134,Brooklyn,Greenpoint,40.725609999999996,-73.94745,Private room,52,5,7,0.18,3,342 +4131,2319102,Manhattan,Chinatown,40.71675,-73.99091999999999,Entire home/apt,200,2,9,0.18,1,0 +4132,13617251,Brooklyn,Williamsburg,40.70844,-73.95191,Entire home/apt,94,2,0,,1,0 +4133,13617520,Brooklyn,Clinton Hill,40.691720000000004,-73.96934,Shared room,40,5,8,0.13,1,0 +4134,13621509,Queens,Rego Park,40.72786,-73.86946,Private room,55,2,12,0.2,1,89 +4135,5352610,Brooklyn,Williamsburg,40.70585,-73.92698,Private room,69,5,6,0.1,2,0 +4136,13632182,Manhattan,Gramercy,40.73657,-73.98019000000001,Entire home/apt,200,3,6,0.09,1,0 +4137,12461367,Brooklyn,Bushwick,40.699870000000004,-73.92551999999999,Entire home/apt,100,1,104,1.65,1,334 +4138,197156,Brooklyn,Bay Ridge,40.63465,-74.02365999999999,Entire home/apt,53,20,16,0.27,1,220 +4139,13664226,Manhattan,Upper West Side,40.795120000000004,-73.97091999999999,Private room,425,3,24,0.39,1,365 +4140,13664245,Bronx,Claremont Village,40.84192,-73.91108,Private room,40,3,46,0.72,2,292 +4141,13670148,Brooklyn,Williamsburg,40.71209,-73.95196,Private room,40,2,32,0.5,1,0 +4142,706191,Brooklyn,Williamsburg,40.716390000000004,-73.95271,Entire home/apt,150,4,0,,1,0 +4143,8212880,Manhattan,Washington Heights,40.83677,-73.94314,Private room,65,3,1,0.02,1,0 +4144,3929012,Manhattan,Upper West Side,40.77848,-73.98334,Private room,109,1,288,4.58,4,103 +4145,8083568,Queens,Jackson Heights,40.75107,-73.87654,Private room,60,5,66,1.05,1,348 +4146,10846328,Brooklyn,Williamsburg,40.71262,-73.95291999999999,Entire home/apt,180,3,13,0.21,2,0 +4147,1091875,Queens,Long Island City,40.74627,-73.94666,Private room,95,2,126,1.98,1,39 +4148,11837926,Manhattan,Midtown,40.76419,-73.98018,Private room,140,7,49,0.82,3,296 +4149,1273385,Queens,Long Island City,40.74749,-73.92089,Entire home/apt,155,3,4,0.07,1,0 +4150,13736818,Manhattan,Harlem,40.80494,-73.95638000000001,Entire home/apt,105,5,132,2.09,1,12 +4151,4334757,Brooklyn,Bedford-Stuyvesant,40.6821,-73.91632,Private room,45,2,53,0.83,1,365 +4152,1602568,Brooklyn,Williamsburg,40.709340000000005,-73.9627,Entire home/apt,330,10,1,0.02,1,0 +4153,10621468,Brooklyn,Crown Heights,40.66733,-73.95666999999999,Private room,50,30,0,,1,281 +4154,13749425,Manhattan,Midtown,40.754129999999996,-73.96791999999999,Private room,100,2,198,3.1,1,305 +4155,13384586,Brooklyn,Clinton Hill,40.68274,-73.96486999999999,Private room,49,3,74,1.16,1,284 +4156,5283121,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95033000000001,Entire home/apt,65,1,1,0.09,1,98 +4157,10264372,Manhattan,Harlem,40.82305,-73.93739000000001,Private room,70,1,6,0.11,1,0 +4158,3016371,Manhattan,Gramercy,40.73701,-73.98241999999999,Entire home/apt,180,3,7,0.11,1,0 +4159,480923,Queens,Long Island City,40.74606,-73.95765,Entire home/apt,130,30,1,0.02,1,0 +4160,13788158,Brooklyn,Fort Greene,40.69265,-73.97009,Entire home/apt,225,3,95,1.51,2,112 +4161,13773574,Manhattan,Hell's Kitchen,40.767109999999995,-73.98371,Entire home/apt,225,30,0,,12,343 +4162,13795689,Manhattan,Washington Heights,40.84203,-73.93985,Private room,85,2,24,0.63,1,318 +4163,13795760,Manhattan,Kips Bay,40.74035,-73.98114,Entire home/apt,125,2,0,,2,0 +4164,3038687,Manhattan,Hell's Kitchen,40.764790000000005,-73.98455,Entire home/apt,99,30,8,0.14,8,107 +4165,10851687,Queens,Long Island City,40.743320000000004,-73.95425999999999,Private room,95,2,185,2.92,1,140 +4166,13811875,Queens,Whitestone,40.79721,-73.816,Entire home/apt,400,3,7,0.15,1,281 +4167,13792543,Manhattan,Harlem,40.8084,-73.95123000000001,Private room,99,3,81,1.28,3,307 +4168,13792543,Manhattan,Harlem,40.80697,-73.95203000000001,Private room,85,3,100,1.6,3,341 +4169,13829968,Manhattan,Harlem,40.82907,-73.94939000000001,Entire home/apt,90,5,16,0.25,1,3 +4170,13830544,Brooklyn,Bushwick,40.69574,-73.93111,Entire home/apt,85,5,32,0.66,3,38 +4171,159726,Manhattan,Washington Heights,40.83482,-73.94617,Entire home/apt,130,6,5,0.08,1,0 +4172,8373183,Manhattan,Nolita,40.72173,-73.99383,Private room,95,1,32,0.75,1,0 +4173,7503643,Brooklyn,Greenpoint,40.72595,-73.94143000000001,Entire home/apt,149,30,2,0.08,52,341 +4174,4341057,Brooklyn,Greenpoint,40.728120000000004,-73.94704,Entire home/apt,225,7,2,0.04,1,0 +4175,13871213,Brooklyn,Williamsburg,40.70666,-73.9506,Entire home/apt,135,2,2,0.03,1,0 +4176,9854463,Manhattan,Hell's Kitchen,40.7678,-73.9868,Entire home/apt,140,2,41,0.73,1,0 +4177,13888072,Manhattan,Upper East Side,40.77518,-73.95618,Entire home/apt,200,5,4,0.07,1,0 +4178,7503643,Brooklyn,Greenpoint,40.727129999999995,-73.94141,Entire home/apt,159,30,7,0.12,52,327 +4179,3964453,Brooklyn,Red Hook,40.67795,-74.00747,Entire home/apt,200,2,17,1.68,1,81 +4180,13503154,Brooklyn,Crown Heights,40.67203,-73.93494,Entire home/apt,155,28,23,0.36,2,336 +4181,13903103,Brooklyn,South Slope,40.664809999999996,-73.97807,Entire home/apt,125,150,18,0.29,1,0 +4182,6586128,Bronx,Port Morris,40.800909999999995,-73.91449,Private room,71,4,18,0.37,2,45 +4183,13917921,Brooklyn,Bushwick,40.69895,-73.93249,Private room,75,2,26,1.22,2,266 +4184,13262455,Manhattan,Upper East Side,40.77107,-73.95322,Entire home/apt,275,3,7,0.11,3,157 +4185,13931194,Brooklyn,Williamsburg,40.70024,-73.95047,Private room,70,7,0,,1,0 +4186,3280997,Manhattan,Theater District,40.76351,-73.98431,Entire home/apt,250,1,1,0.02,1,0 +4187,8489537,Brooklyn,Williamsburg,40.70404,-73.93496,Entire home/apt,200,2,129,2.03,1,64 +4188,13934498,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95688,Entire home/apt,90,30,3,0.08,1,311 +4189,13933851,Brooklyn,Bedford-Stuyvesant,40.690259999999995,-73.92701,Private room,50,4,2,0.09,2,0 +4190,9652075,Brooklyn,Clinton Hill,40.694179999999996,-73.9677,Entire home/apt,124,4,65,1.06,1,165 +4191,13937830,Manhattan,Chelsea,40.73942,-73.99629,Entire home/apt,110,25,0,,1,0 +4192,136352,Queens,Astoria,40.7558,-73.92376999999999,Private room,50,5,37,0.59,1,313 +4193,4992804,Manhattan,East Harlem,40.79121,-73.94793,Private room,75,2,1,0.02,1,0 +4194,12511213,Manhattan,East Village,40.7221,-73.98259,Private room,90,4,1,0.03,1,0 +4195,13974214,Brooklyn,Bedford-Stuyvesant,40.68058,-73.93856,Entire home/apt,130,3,92,1.45,1,248 +4196,13968910,Manhattan,Upper West Side,40.794959999999996,-73.97349,Entire home/apt,140,1,19,0.3,1,0 +4197,3758251,Brooklyn,Kensington,40.64468,-73.97208,Entire home/apt,200,3,2,0.03,1,0 +4198,14011859,Brooklyn,Carroll Gardens,40.68322,-73.99248,Entire home/apt,350,5,6,0.12,1,0 +4199,3130728,Manhattan,Harlem,40.80966,-73.94711,Entire home/apt,100,2,23,0.39,1,0 +4200,12082653,Queens,Long Island City,40.7625,-73.93919,Entire home/apt,225,1,1,0.02,1,0 +4201,12449641,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93055,Private room,65,1,3,0.07,2,0 +4202,14019268,Brooklyn,Bushwick,40.69686,-73.93042,Entire home/apt,145,5,171,2.75,2,275 +4203,3417714,Manhattan,Hell's Kitchen,40.75927,-73.99223,Entire home/apt,189,5,14,0.25,1,0 +4204,14020493,Manhattan,Greenwich Village,40.73085,-73.99421,Entire home/apt,265,3,6,0.1,1,29 +4205,8511789,Manhattan,Midtown,40.765440000000005,-73.98186,Entire home/apt,409,1,3,0.05,1,0 +4206,12958562,Brooklyn,Fort Greene,40.69226,-73.98056,Private room,95,4,12,0.19,1,0 +4207,2739598,Manhattan,Harlem,40.81677,-73.94371,Private room,175,3,89,1.41,1,324 +4208,1172202,Queens,Ditmars Steinway,40.77138,-73.90895,Private room,55,1,115,1.82,5,30 +4209,6055938,Manhattan,Hell's Kitchen,40.7645,-73.99314,Entire home/apt,200,4,36,0.57,1,248 +4210,14058714,Manhattan,East Village,40.73243,-73.98906,Entire home/apt,200,5,51,0.81,1,88 +4211,11757212,Brooklyn,Bushwick,40.6982,-73.92851999999999,Private room,69,1,159,2.89,4,280 +4212,2153455,Brooklyn,Williamsburg,40.71813,-73.95869,Entire home/apt,135,5,33,0.53,1,76 +4213,14081811,Brooklyn,Carroll Gardens,40.68009,-74.00009,Entire home/apt,325,4,12,0.2,1,0 +4214,933263,Manhattan,Lower East Side,40.71542,-73.98510999999999,Private room,95,2,267,4.2,1,18 +4215,13347167,Manhattan,Upper East Side,40.772490000000005,-73.95756,Entire home/apt,117,30,3,0.09,29,298 +4216,3447539,Manhattan,Washington Heights,40.84915,-73.93848,Private room,59,30,65,1.33,2,99 +4217,12750945,Manhattan,Chelsea,40.74389,-73.99835,Shared room,85,2,65,1.03,4,171 +4218,14103991,Queens,Flushing,40.75606,-73.81954,Private room,55,1,51,0.82,4,333 +4219,14120733,Brooklyn,Williamsburg,40.71614,-73.96134,Private room,80,2,349,5.54,1,13 +4220,2155360,Brooklyn,Park Slope,40.66587,-73.97881,Entire home/apt,115,13,2,0.04,1,0 +4221,14133008,Manhattan,Midtown,40.75967,-73.96595,Private room,78,12,43,0.74,1,49 +4222,2208993,Manhattan,East Village,40.72278,-73.98496999999999,Private room,150,3,38,0.6,3,357 +4223,14163479,Brooklyn,Park Slope,40.67736,-73.98084,Entire home/apt,195,5,3,0.05,1,0 +4224,2333018,Brooklyn,Clinton Hill,40.68998,-73.96072,Entire home/apt,142,10,8,0.13,1,157 +4225,14174901,Manhattan,Upper West Side,40.78694,-73.97384,Entire home/apt,150,20,0,,1,0 +4226,14176488,Bronx,Fordham,40.86705,-73.88545,Shared room,55,7,10,0.16,1,365 +4227,3883648,Brooklyn,Windsor Terrace,40.66044,-73.97977,Entire home/apt,97,30,5,0.12,1,282 +4228,1253739,Brooklyn,Flatbush,40.64602,-73.95964000000001,Entire home/apt,70,20,11,0.21,1,211 +4229,1866728,Manhattan,Upper West Side,40.77024,-73.98746,Shared room,70,1,225,3.53,1,262 +4230,9421493,Manhattan,Upper West Side,40.77852,-73.98577,Private room,155,5,24,0.4,1,88 +4231,14197781,Brooklyn,Bedford-Stuyvesant,40.697070000000004,-73.93914000000001,Entire home/apt,68,30,3,0.09,1,0 +4232,4417252,Manhattan,Harlem,40.83252,-73.94915999999999,Private room,68,9,31,0.61,1,129 +4233,309329,Brooklyn,Carroll Gardens,40.68235,-74.00046999999999,Entire home/apt,150,2,52,1.33,1,53 +4234,621971,Brooklyn,Carroll Gardens,40.68238,-73.99481,Entire home/apt,150,4,0,,1,0 +4235,3187645,Manhattan,Upper East Side,40.77349,-73.95137,Entire home/apt,150,6,1,0.02,1,0 +4236,10870477,Manhattan,East Village,40.72105,-73.9814,Private room,100,1,1,0.07,1,365 +4237,8925763,Manhattan,Harlem,40.817809999999994,-73.94577,Entire home/apt,110,30,101,1.61,2,331 +4238,14262697,Brooklyn,Fort Greene,40.69056,-73.98038000000001,Entire home/apt,150,3,1,0.02,1,0 +4239,14269155,Brooklyn,Boerum Hill,40.68671,-73.98952,Entire home/apt,160,5,0,,1,24 +4240,7069480,Manhattan,Chelsea,40.74309,-73.99436,Entire home/apt,218,6,53,0.9,1,304 +4241,4731948,Manhattan,Nolita,40.721059999999994,-73.99417,Entire home/apt,430,1,24,0.38,4,14 +4242,2637408,Brooklyn,Williamsburg,40.711729999999996,-73.94955,Private room,79,3,115,2.83,2,111 +4243,9031632,Manhattan,West Village,40.73571,-74.00375,Entire home/apt,120,1,58,0.91,1,99 +4244,14285627,Brooklyn,Brooklyn Heights,40.69297,-73.99758,Entire home/apt,200,5,42,0.67,1,15 +4245,14289427,Manhattan,Chinatown,40.71418,-73.99295,Private room,120,5,12,0.19,3,0 +4246,9509125,Manhattan,East Village,40.72266,-73.98337,Private room,250,3,0,,1,365 +4247,14290739,Manhattan,Upper West Side,40.791940000000004,-73.96913,Entire home/apt,200,30,28,0.45,3,0 +4248,14295613,Staten Island,Clifton,40.62578,-74.07356,Entire home/apt,75,1,1,0.02,1,0 +4249,2343136,Brooklyn,Cobble Hill,40.688109999999995,-73.99421,Entire home/apt,175,1,2,0.03,1,0 +4250,251842,Brooklyn,Bedford-Stuyvesant,40.682109999999994,-73.93876,Entire home/apt,76,31,1,0.04,1,333 +4251,14317804,Manhattan,Upper West Side,40.78414,-73.9783,Entire home/apt,75,1,2,0.1,1,0 +4252,14325632,Brooklyn,Crown Heights,40.67301,-73.95312,Entire home/apt,400,30,22,0.35,2,171 +4253,14103991,Queens,Flushing,40.75611,-73.81957,Private room,75,1,48,0.77,4,355 +4254,8497788,Manhattan,Hell's Kitchen,40.7642,-73.99133,Entire home/apt,189,3,1,0.02,1,0 +4255,3181226,Queens,Woodside,40.74235,-73.90375,Private room,55,1,1,0.02,1,0 +4256,11330223,Brooklyn,Williamsburg,40.71389,-73.9657,Private room,80,5,11,0.18,1,0 +4257,14343538,Brooklyn,Bushwick,40.70012,-73.93061999999999,Private room,69,3,19,0.31,1,238 +4258,8741682,Manhattan,Morningside Heights,40.805040000000005,-73.96454,Private room,100,4,1,0.02,1,0 +4259,2918667,Queens,Sunnyside,40.74405,-73.91502,Entire home/apt,100,1,1,0.02,1,0 +4260,5225737,Manhattan,West Village,40.7339,-74.00177,Entire home/apt,300,5,19,0.3,1,219 +4261,11725608,Manhattan,Washington Heights,40.83333,-73.94181999999999,Private room,53,3,209,3.29,2,117 +4262,14361027,Manhattan,Upper West Side,40.78882,-73.97945,Entire home/apt,179,2,15,0.26,1,0 +4263,14362628,Brooklyn,Flatbush,40.6435,-73.96065,Entire home/apt,100,8,0,,1,0 +4264,6364557,Queens,Astoria,40.7576,-73.92698,Entire home/apt,130,4,45,0.82,1,170 +4265,14399467,Bronx,Port Morris,40.80554,-73.92605999999999,Entire home/apt,120,4,89,1.54,2,0 +4266,2739024,Brooklyn,Greenpoint,40.7202,-73.95191,Private room,150,7,25,0.42,1,16 +4267,13347167,Manhattan,Upper East Side,40.77125,-73.95735,Entire home/apt,105,30,5,0.09,29,265 +4268,7850260,Brooklyn,Bedford-Stuyvesant,40.685759999999995,-73.92211,Entire home/apt,150,1,197,3.19,3,209 +4269,2333304,Manhattan,Upper West Side,40.775890000000004,-73.98188,Entire home/apt,200,1,1,0.02,1,0 +4270,5986790,Manhattan,Washington Heights,40.834179999999996,-73.94274,Private room,39,30,18,0.3,6,168 +4271,14435551,Manhattan,Harlem,40.8068,-73.94258,Entire home/apt,67,5,6,0.12,1,0 +4272,14441566,Manhattan,Midtown,40.76147,-73.9761,Entire home/apt,200,4,7,0.93,1,32 +4273,7503643,Brooklyn,Greenpoint,40.7254,-73.94136,Entire home/apt,129,30,3,0.05,52,336 +4274,6885157,Brooklyn,Bedford-Stuyvesant,40.681909999999995,-73.95136,Private room,55,1,67,1.11,15,307 +4275,11363157,Queens,Astoria,40.76123,-73.92177,Private room,65,50,30,0.48,1,198 +4276,12795393,Manhattan,Upper East Side,40.77065,-73.95495,Entire home/apt,100,3,18,0.29,1,0 +4277,3289988,Manhattan,Harlem,40.80925,-73.94226,Private room,55,5,0,,1,90 +4278,7915183,Manhattan,Midtown,40.75546,-73.96762,Entire home/apt,240,1,1,0.02,1,0 +4279,3237504,Manhattan,Greenwich Village,40.73083,-74.0006,Entire home/apt,150,3,33,0.52,1,107 +4280,2074433,Manhattan,Upper West Side,40.77397,-73.98241999999999,Entire home/apt,299,2,155,2.46,1,267 +4281,10987233,Queens,Ditmars Steinway,40.77297,-73.91604,Entire home/apt,160,2,175,2.78,1,269 +4282,14518375,Manhattan,East Harlem,40.78833,-73.94888,Private room,299,1,0,,1,365 +4283,8867917,Brooklyn,Prospect Heights,40.674459999999996,-73.96324,Entire home/apt,99,17,0,,1,0 +4284,7503643,Brooklyn,Greenpoint,40.72733,-73.9404,Entire home/apt,199,30,5,0.08,52,311 +4285,3864482,Manhattan,Greenwich Village,40.72842,-73.99903,Private room,100,1,34,0.55,1,0 +4286,3056690,Manhattan,Washington Heights,40.836870000000005,-73.94324,Private room,45,4,120,1.92,1,53 +4287,13649613,Bronx,University Heights,40.85711,-73.91594,Private room,44,2,135,2.13,4,70 +4288,14582705,Brooklyn,Carroll Gardens,40.68108,-73.99381,Entire home/apt,150,2,0,,1,0 +4289,6194657,Brooklyn,Bushwick,40.69727,-73.92373,Private room,100,20,0,,1,0 +4290,14601436,Manhattan,Lower East Side,40.71484,-73.98977,Entire home/apt,185,5,4,0.08,1,0 +4291,6064963,Brooklyn,Fort Greene,40.688790000000004,-73.97589,Entire home/apt,150,3,0,,1,0 +4292,14565422,Manhattan,East Harlem,40.78587,-73.94764,Entire home/apt,650,2,67,1.76,2,283 +4293,13759034,Brooklyn,Williamsburg,40.71055,-73.95553000000001,Private room,100,2,11,0.18,1,0 +4294,14611970,Manhattan,Harlem,40.80005,-73.95212,Private room,111,3,104,1.65,1,317 +4295,3716641,Manhattan,Hell's Kitchen,40.76634,-73.98719,Entire home/apt,99,30,8,0.19,8,139 +4296,14586041,Brooklyn,Williamsburg,40.70665,-73.95067,Private room,75,7,18,0.31,1,87 +4297,13347167,Manhattan,Upper East Side,40.77233,-73.95626999999999,Entire home/apt,103,30,3,0.06,29,336 +4298,14636480,Queens,Astoria,40.77182,-73.93129,Entire home/apt,130,4,56,1.55,1,0 +4299,3716641,Manhattan,Upper West Side,40.79193,-73.97443,Entire home/apt,109,30,20,0.34,8,90 +4300,5229579,Brooklyn,Williamsburg,40.7196,-73.96335,Private room,95,3,0,,3,0 +4301,14641776,Brooklyn,Fort Greene,40.690529999999995,-73.9791,Entire home/apt,100,5,3,0.05,1,0 +4302,3543836,Brooklyn,Park Slope,40.66977,-73.98305,Entire home/apt,155,29,5,0.08,1,59 +4303,14655604,Queens,Sunnyside,40.745470000000005,-73.93184000000001,Private room,60,2,55,2.64,1,118 +4304,13601944,Brooklyn,South Slope,40.66372,-73.97793,Entire home/apt,195,6,11,0.18,1,13 +4305,14204809,Queens,Jackson Heights,40.75625,-73.87541999999999,Entire home/apt,69,6,78,1.25,1,30 +4306,1668930,Manhattan,Washington Heights,40.850840000000005,-73.94125,Private room,72,2,65,1.05,1,311 +4307,14680576,Brooklyn,Crown Heights,40.67007,-73.94729,Entire home/apt,300,2,13,0.24,1,224 +4308,13347167,Manhattan,Upper East Side,40.77105,-73.95727,Entire home/apt,119,30,4,0.13,29,339 +4309,164781,Brooklyn,Williamsburg,40.71242,-73.96793000000001,Private room,100,30,5,0.09,1,296 +4310,1177497,Brooklyn,Clinton Hill,40.6907,-73.96732,Private room,199,1,72,1.14,11,363 +4311,9638204,Manhattan,Harlem,40.821490000000004,-73.93718,Private room,75,1,3,0.33,2,126 +4312,5317082,Brooklyn,Williamsburg,40.71376,-73.94239,Private room,100,21,62,1.22,2,96 +4313,6122006,Manhattan,Morningside Heights,40.81153,-73.95855999999999,Entire home/apt,125,2,27,1.0,2,0 +4314,14720647,Queens,Ridgewood,40.71046,-73.91786,Entire home/apt,95,5,25,0.4,1,0 +4315,1240820,Brooklyn,Williamsburg,40.719229999999996,-73.95684,Entire home/apt,295,2,110,1.74,3,151 +4316,14723162,Queens,Astoria,40.77162,-73.92626,Private room,149,1,10,0.17,1,365 +4317,6964353,Manhattan,Upper West Side,40.79972,-73.96418,Entire home/apt,150,10,6,0.1,1,0 +4318,5117939,Brooklyn,Crown Heights,40.67335,-73.91881,Entire home/apt,100,5,177,2.87,1,214 +4319,4119786,Brooklyn,Prospect Heights,40.67353,-73.96505,Private room,45,20,0,,2,0 +4320,14554858,Manhattan,West Village,40.72965,-74.00397,Entire home/apt,385,5,44,0.75,1,180 +4321,14759766,Brooklyn,Flatbush,40.6435,-73.96208,Entire home/apt,87,2,132,3.31,2,233 +4322,14763882,Manhattan,Kips Bay,40.74288,-73.9803,Entire home/apt,180,4,5,0.1,1,184 +4323,14103991,Queens,Flushing,40.754940000000005,-73.81818,Private room,59,2,48,0.78,4,185 +4324,2269517,Staten Island,St. George,40.6427,-74.08001,Private room,95,2,234,3.74,1,264 +4325,14724243,Manhattan,Upper East Side,40.772909999999996,-73.95176,Entire home/apt,130,25,3,0.05,1,161 +4326,14291250,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91624,Entire home/apt,120,5,136,2.2,1,254 +4327,5454390,Manhattan,East Village,40.73362,-73.9892,Private room,113,2,255,4.05,1,41 +4328,3339701,Queens,Ditmars Steinway,40.77503,-73.91882,Private room,60,1,135,2.14,4,309 +4329,9840901,Brooklyn,Bedford-Stuyvesant,40.68105,-73.95783,Private room,40,7,16,0.5,1,221 +4330,7853680,Manhattan,Murray Hill,40.74923,-73.97849000000001,Entire home/apt,250,5,2,0.03,1,0 +4331,7321253,Brooklyn,Williamsburg,40.71853,-73.96287,Entire home/apt,150,3,0,,1,0 +4332,4123046,Brooklyn,Prospect Heights,40.68183,-73.97195,Entire home/apt,450,30,0,,1,0 +4333,6789600,Brooklyn,Carroll Gardens,40.677859999999995,-73.99871,Entire home/apt,149,6,2,0.04,1,0 +4334,195783,Brooklyn,Williamsburg,40.71264,-73.94017,Entire home/apt,169,4,33,0.54,1,0 +4335,14019963,Brooklyn,Park Slope,40.68006,-73.97759,Private room,105,2,88,1.4,1,93 +4336,10593364,Brooklyn,Bedford-Stuyvesant,40.69924,-73.94057,Private room,42,7,6,0.1,1,0 +4337,14861483,Manhattan,Battery Park City,40.7162,-74.01565,Entire home/apt,325,1,0,,1,0 +4338,14864202,Manhattan,Upper West Side,40.78352,-73.97482,Entire home/apt,200,1,9,0.14,1,0 +4339,263500,Brooklyn,East Flatbush,40.66411,-73.92905,Entire home/apt,160,1,44,0.74,2,279 +4340,1646926,Brooklyn,Williamsburg,40.71288,-73.95822,Private room,155,2,42,0.67,1,0 +4341,14902860,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9425,Entire home/apt,151,3,34,0.54,5,308 +4342,4619132,Manhattan,Chelsea,40.74411,-74.0029,Entire home/apt,200,1,1,0.02,1,0 +4343,6683775,Brooklyn,Bushwick,40.70071,-73.92468000000001,Private room,80,2,9,0.14,1,0 +4344,14906518,Queens,Long Island City,40.74923,-73.94962,Entire home/apt,119,3,2,0.05,1,0 +4345,14908606,Brooklyn,Bedford-Stuyvesant,40.69572,-73.95730999999999,Private room,5000,6,10,0.16,1,363 +4346,4282318,Brooklyn,Flatbush,40.65387,-73.95973000000001,Private room,45,1,91,1.58,2,99 +4347,7229763,Brooklyn,East Flatbush,40.65267,-73.9485,Entire home/apt,115,7,5,0.08,1,0 +4348,1447684,Brooklyn,Greenpoint,40.730259999999994,-73.95513000000001,Private room,65,1,56,1.06,3,269 +4349,14932802,Manhattan,Chinatown,40.71782,-73.99422,Private room,87,4,9,0.63,1,89 +4350,14933223,Manhattan,Midtown,40.75293,-73.97173000000001,Private room,110,14,9,0.14,1,21 +4351,9576121,Brooklyn,Williamsburg,40.71416,-73.9488,Private room,80,2,71,1.13,1,0 +4352,14935685,Manhattan,Hell's Kitchen,40.76761,-73.98496999999999,Entire home/apt,250,1,0,,1,0 +4353,8520430,Brooklyn,South Slope,40.66449,-73.99047,Private room,63,4,65,1.34,1,290 +4354,17930,Brooklyn,Windsor Terrace,40.655409999999996,-73.9761,Entire home/apt,200,5,37,0.78,2,78 +4355,3136117,Brooklyn,Greenpoint,40.73487,-73.95626999999999,Entire home/apt,185,3,9,0.16,1,0 +4356,846521,Manhattan,SoHo,40.7241,-74.0042,Entire home/apt,250,2,18,1.83,1,9 +4357,14970988,Manhattan,West Village,40.73704,-74.01049,Entire home/apt,130,2,57,0.94,1,187 +4358,9503874,Brooklyn,Brooklyn Heights,40.69683,-73.99206,Entire home/apt,185,4,65,1.18,1,254 +4359,14975379,Brooklyn,Crown Heights,40.67512,-73.96278000000001,Private room,75,2,5,0.08,1,0 +4360,11774630,Manhattan,East Harlem,40.7888,-73.94844,Entire home/apt,240,4,229,3.67,2,52 +4361,7171571,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94689,Private room,65,1,4,0.08,1,0 +4362,10395636,Manhattan,Upper West Side,40.77435,-73.97889,Entire home/apt,195,2,32,0.51,1,0 +4363,14990573,Manhattan,Battery Park City,40.71097,-74.01658,Entire home/apt,200,1,46,0.74,1,0 +4364,13908017,Manhattan,Greenwich Village,40.730340000000005,-73.99991999999999,Private room,120,2,209,4.07,1,283 +4365,686494,Brooklyn,Gowanus,40.68322,-73.98968,Entire home/apt,180,1,183,2.9,1,197 +4366,15009272,Queens,Woodhaven,40.6955,-73.86281,Private room,53,3,89,1.44,2,189 +4367,15010803,Manhattan,Lower East Side,40.71615,-73.98478,Entire home/apt,200,1,10,0.16,1,0 +4368,15002363,Manhattan,Harlem,40.800709999999995,-73.9534,Private room,100,3,60,2.26,1,0 +4369,4963379,Brooklyn,Flatbush,40.63615,-73.95148,Entire home/apt,86,3,62,1.07,1,0 +4370,1495881,Manhattan,Chelsea,40.73936,-73.99965,Entire home/apt,225,3,6,0.1,1,0 +4371,15009272,Queens,Woodhaven,40.694140000000004,-73.86324,Private room,40,3,136,2.21,2,291 +4372,160337,Manhattan,Washington Heights,40.83549,-73.94765,Entire home/apt,60,365,9,0.15,1,291 +4373,15029400,Queens,Bayswater,40.60549,-73.75546999999999,Private room,70,1,13,0.21,1,220 +4374,3250450,Queens,Maspeth,40.73726,-73.89792,Private room,35,30,1,1.0,18,364 +4375,15049157,Manhattan,Hell's Kitchen,40.76375,-73.9924,Entire home/apt,250,3,136,2.17,1,284 +4376,1177497,Brooklyn,Clinton Hill,40.69127,-73.96563,Entire home/apt,4500,1,5,0.09,11,365 +4377,1177497,Brooklyn,Clinton Hill,40.69137,-73.96723,Entire home/apt,8000,1,1,0.03,11,365 +4378,15081041,Manhattan,Murray Hill,40.745509999999996,-73.97757,Entire home/apt,169,5,0,,1,0 +4379,15089968,Queens,Richmond Hill,40.70061,-73.84107,Entire home/apt,255,2,60,0.97,2,297 +4380,15099550,Manhattan,Harlem,40.80879,-73.94126999999999,Entire home/apt,290,1,77,1.25,1,252 +4381,15100977,Manhattan,Midtown,40.75969,-73.96644,Entire home/apt,140,300,0,,1,365 +4382,15102869,Manhattan,Washington Heights,40.85504,-73.93648,Entire home/apt,115,7,11,0.3,1,4 +4383,37879,Brooklyn,Gowanus,40.67024,-73.99351,Entire home/apt,299,3,13,0.56,1,346 +4384,3963645,Manhattan,West Village,40.73279,-74.00322,Entire home/apt,160,2,13,0.55,1,0 +4385,15141764,Manhattan,Upper East Side,40.78139,-73.95260999999999,Shared room,175,1,1,0.02,1,0 +4386,14380456,Manhattan,Hell's Kitchen,40.75971,-73.98979,Private room,120,1,365,5.81,1,174 +4387,1177497,Brooklyn,Clinton Hill,40.68975,-73.96724,Private room,179,1,8,0.13,11,365 +4388,1012583,Brooklyn,Williamsburg,40.71587,-73.95934,Private room,74,4,106,1.71,2,25 +4389,7691518,Manhattan,Hell's Kitchen,40.76794,-73.98781,Private room,68,1,152,2.42,2,237 +4390,15153596,Manhattan,Chelsea,40.73726,-73.99399,Private room,235,1,34,0.68,1,135 +4391,2363988,Brooklyn,Williamsburg,40.70775,-73.94214000000001,Private room,100,5,2,0.07,1,0 +4392,15082988,Brooklyn,Greenpoint,40.72292,-73.94924,Entire home/apt,270,3,13,0.22,1,0 +4393,588899,Brooklyn,Prospect Heights,40.67925,-73.9688,Entire home/apt,200,14,2,0.04,1,0 +4394,15178288,Manhattan,Greenwich Village,40.72603,-73.99746,Entire home/apt,161,21,0,,1,0 +4395,3259274,Brooklyn,Crown Heights,40.67479,-73.95721999999999,Private room,60,2,2,0.04,2,83 +4396,15182886,Manhattan,East Village,40.7231,-73.98494000000001,Entire home/apt,155,4,44,0.7,1,341 +4397,15185319,Manhattan,East Harlem,40.79285,-73.94481999999999,Private room,95,1,270,4.5,1,288 +4398,5418972,Manhattan,Chinatown,40.71433,-73.99028,Entire home/apt,125,2,11,0.27,1,0 +4399,13347167,Manhattan,Upper East Side,40.77233,-73.9572,Entire home/apt,118,30,1,0.03,29,308 +4400,15198359,Manhattan,Harlem,40.80095,-73.9541,Private room,80,7,95,1.56,1,278 +4401,11018460,Brooklyn,Williamsburg,40.71593,-73.95642,Entire home/apt,210,3,4,0.11,2,0 +4402,15179425,Brooklyn,Brooklyn Heights,40.69443,-73.99068,Entire home/apt,150,2,10,0.16,1,0 +4403,1720071,Brooklyn,Sunset Park,40.658409999999996,-73.99664,Entire home/apt,135,2,133,2.19,1,296 +4404,13347167,Manhattan,Upper East Side,40.772220000000004,-73.95544,Entire home/apt,118,30,3,0.06,29,326 +4405,2604437,Manhattan,Upper West Side,40.78504,-73.97959,Private room,110,3,40,1.48,2,113 +4406,15265839,Brooklyn,Greenpoint,40.73057,-73.95023,Private room,70,2,8,0.17,1,0 +4407,15266695,Brooklyn,Bensonhurst,40.62019,-73.99624,Private room,43,1,127,2.77,2,220 +4408,1971142,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94295,Entire home/apt,140,2,205,3.26,1,294 +4409,13347167,Manhattan,Upper East Side,40.77126,-73.95671,Entire home/apt,116,30,1,0.02,29,335 +4410,7503643,Brooklyn,Greenpoint,40.72525,-73.9418,Entire home/apt,159,30,6,0.12,52,317 +4411,15271110,Brooklyn,Bedford-Stuyvesant,40.68548,-73.92039,Entire home/apt,135,2,296,4.84,1,187 +4412,5986790,Manhattan,Washington Heights,40.83383,-73.94469000000001,Private room,39,7,13,0.36,6,310 +4413,5684941,Brooklyn,Bushwick,40.696659999999994,-73.93248,Private room,59,20,16,0.28,1,54 +4414,5422083,Manhattan,Battery Park City,40.70633,-74.01836999999999,Entire home/apt,600,30,2,0.03,1,0 +4415,11998560,Brooklyn,Crown Heights,40.674009999999996,-73.92833,Private room,66,1,6,0.11,2,41 +4416,1475015,Manhattan,Civic Center,40.71662,-74.00352,Entire home/apt,130,30,2,0.03,52,365 +4417,15310896,Brooklyn,Bedford-Stuyvesant,40.684259999999995,-73.95054,Entire home/apt,100,3,284,4.57,1,237 +4418,15303460,Brooklyn,Prospect-Lefferts Gardens,40.65595,-73.95411999999999,Private room,50,7,1,0.94,1,125 +4419,7629544,Manhattan,Washington Heights,40.85719,-73.93573,Private room,185,2,34,0.56,1,365 +4420,15318802,Brooklyn,Sunset Park,40.665279999999996,-73.99382,Private room,54,1,4,0.07,1,0 +4421,15341073,Brooklyn,Flatbush,40.646609999999995,-73.95999,Entire home/apt,100,6,2,0.11,1,202 +4422,15341568,Manhattan,Chelsea,40.74227,-73.99361999999999,Entire home/apt,180,1,6,0.1,1,0 +4423,550520,Brooklyn,East Flatbush,40.65262,-73.94866999999999,Entire home/apt,115,30,43,0.7,1,78 +4424,5663597,Brooklyn,Prospect Heights,40.67553,-73.96376,Entire home/apt,350,3,11,0.19,1,21 +4425,13208084,Brooklyn,Crown Heights,40.6769,-73.94483000000001,Private room,32,7,3,0.07,3,319 +4426,1504257,Brooklyn,Williamsburg,40.71756,-73.95579000000001,Entire home/apt,165,8,23,0.38,1,297 +4427,15355526,Manhattan,Chelsea,40.738929999999996,-73.99464,Entire home/apt,350,2,12,0.19,1,0 +4428,15356877,Brooklyn,Cobble Hill,40.684940000000005,-73.99685,Entire home/apt,795,6,0,,1,14 +4429,15134522,Brooklyn,Williamsburg,40.70971,-73.9639,Entire home/apt,200,4,15,0.32,1,95 +4430,15358791,Brooklyn,Bushwick,40.70113,-73.91119,Entire home/apt,175,5,5,0.1,1,107 +4431,10364678,Manhattan,Inwood,40.86786,-73.92076999999999,Private room,50,2,58,0.96,2,188 +4432,67180,Manhattan,West Village,40.73722,-74.00043000000001,Entire home/apt,190,1,11,0.18,1,0 +4433,8656650,Manhattan,Harlem,40.80453,-73.95699,Private room,110,2,37,0.6,1,182 +4434,7249524,Brooklyn,Gowanus,40.67729,-73.99164,Entire home/apt,414,3,2,0.06,1,0 +4435,10842335,Brooklyn,Downtown Brooklyn,40.689679999999996,-73.98404000000001,Entire home/apt,135,2,0,,1,0 +4436,1475015,Manhattan,Murray Hill,40.743179999999995,-73.97193,Entire home/apt,150,30,2,0.03,52,365 +4437,7245581,Manhattan,Chelsea,40.74873,-73.99557,Entire home/apt,93,365,10,0.17,19,97 +4438,15445130,Manhattan,Upper East Side,40.76712,-73.95668,Private room,70,2,0,,1,0 +4439,339586,Staten Island,St. George,40.64444,-74.08301999999999,Entire home/apt,175,3,22,0.4,1,39 +4440,14892152,Brooklyn,Bedford-Stuyvesant,40.685959999999994,-73.95837,Entire home/apt,155,25,3,0.05,1,364 +4441,7503643,Brooklyn,Greenpoint,40.7276,-73.94029,Entire home/apt,129,30,4,0.08,52,337 +4442,8159536,Bronx,Concourse Village,40.832879999999996,-73.91834,Private room,50,1,21,0.36,3,188 +4443,15476280,Brooklyn,Kensington,40.64638,-73.97723,Entire home/apt,499,7,2,0.03,1,31 +4444,15478980,Brooklyn,Sunset Park,40.65513,-74.00621,Shared room,80,1,7,0.15,1,90 +4445,1475015,Manhattan,Midtown,40.76132,-73.96611999999999,Entire home/apt,115,30,0,,52,342 +4446,6041,Queens,Ditmars Steinway,40.77748,-73.90971,Private room,47,2,14,0.28,1,0 +4447,4401973,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.95043000000001,Private room,95,1,1,0.02,1,0 +4448,15430260,Manhattan,East Village,40.72889,-73.98853000000001,Entire home/apt,249,1,150,2.52,1,278 +4449,1475015,Manhattan,Murray Hill,40.74475,-73.97201,Entire home/apt,150,30,2,0.04,52,362 +4450,15492140,Manhattan,Lower East Side,40.72232,-73.98987,Private room,77,3,139,2.29,1,18 +4451,1451702,Manhattan,East Village,40.72687,-73.97995,Entire home/apt,225,8,0,,1,0 +4452,10432817,Brooklyn,Brooklyn Heights,40.69405,-73.99634,Private room,70,14,16,0.61,1,67 +4453,1475015,Manhattan,Murray Hill,40.74462,-73.97488,Entire home/apt,100,30,6,0.11,52,311 +4454,1475015,Manhattan,Hell's Kitchen,40.76866,-73.98616,Entire home/apt,87,30,6,0.1,52,365 +4455,2534076,Brooklyn,Park Slope,40.6728,-73.97166,Entire home/apt,245,4,3,0.05,1,0 +4456,15542183,Manhattan,Upper West Side,40.785759999999996,-73.97594000000001,Entire home/apt,300,3,92,1.53,1,254 +4457,15543098,Manhattan,Upper East Side,40.77401,-73.9457,Private room,55,1,2,0.03,1,0 +4458,15559190,Manhattan,West Village,40.72916,-74.00433000000001,Entire home/apt,120,3,5,0.08,1,0 +4459,5986790,Manhattan,Washington Heights,40.835679999999996,-73.94457,Private room,40,31,2,0.15,6,130 +4460,15569250,Manhattan,Nolita,40.72118,-73.99682,Private room,115,2,9,0.29,1,332 +4461,7245581,Manhattan,Chelsea,40.74897,-73.9968,Entire home/apt,93,75,16,0.3,19,234 +4462,7101220,Manhattan,East Harlem,40.79245,-73.94563000000001,Private room,37,30,1,0.02,1,0 +4463,15579200,Brooklyn,Williamsburg,40.7172,-73.9616,Entire home/apt,240,2,18,0.29,1,0 +4464,15581137,Manhattan,West Village,40.73229,-74.00399999999999,Private room,130,2,0,,1,0 +4465,6653718,Queens,Long Island City,40.74902,-73.94066,Private room,70,3,145,2.33,1,32 +4466,7503643,Brooklyn,Greenpoint,40.72691,-73.94041,Entire home/apt,149,30,5,0.1,52,295 +4467,5317082,Brooklyn,Williamsburg,40.71477,-73.94105,Private room,100,21,10,0.17,2,14 +4468,3541594,Manhattan,East Village,40.73057,-73.99034,Entire home/apt,200,2,12,1.52,1,0 +4469,3241305,Brooklyn,Prospect-Lefferts Gardens,40.659620000000004,-73.96063000000001,Entire home/apt,99,4,43,0.7,1,0 +4470,2539525,Manhattan,Chelsea,40.74221,-73.9974,Entire home/apt,220,8,5,0.08,1,2 +4471,15613241,Manhattan,Upper East Side,40.78145,-73.95588000000001,Entire home/apt,250,3,3,0.06,1,0 +4472,13347167,Manhattan,Upper East Side,40.772090000000006,-73.9563,Entire home/apt,103,30,12,0.2,29,209 +4473,13347167,Manhattan,Upper East Side,40.772240000000004,-73.95629,Entire home/apt,108,30,7,0.14,29,188 +4474,2448006,Manhattan,Harlem,40.80392,-73.94685,Private room,75,3,5,0.1,3,325 +4475,3053987,Brooklyn,Bushwick,40.69158,-73.92115,Entire home/apt,78,3,10,0.16,2,0 +4476,15639713,Brooklyn,Williamsburg,40.70442,-73.95413,Private room,75,4,6,0.13,1,0 +4477,1370474,Brooklyn,Navy Yard,40.704809999999995,-73.97755,Entire home/apt,152,2,3,0.1,1,12 +4478,13969061,Manhattan,Lower East Side,40.71987,-73.98640999999999,Entire home/apt,150,1,32,0.51,1,3 +4479,740656,Manhattan,Nolita,40.72293,-73.99413,Entire home/apt,320,3,168,2.7,1,269 +4480,15674437,Brooklyn,Williamsburg,40.70789,-73.94632,Entire home/apt,220,29,4,0.07,1,0 +4481,15681707,Brooklyn,Crown Heights,40.674890000000005,-73.91405,Entire home/apt,99,2,190,3.67,3,287 +4482,15688520,Manhattan,East Village,40.72592,-73.97991,Entire home/apt,950,3,42,0.69,2,34 +4483,15638528,Manhattan,Upper West Side,40.78087,-73.97811999999999,Entire home/apt,120,1,1,0.02,1,0 +4484,5691429,Manhattan,Morningside Heights,40.807390000000005,-73.95918,Entire home/apt,100,1,5,0.08,1,0 +4485,15636404,Brooklyn,Borough Park,40.61098,-73.9742,Entire home/apt,199,4,4,0.11,1,37 +4486,15718962,Manhattan,Hell's Kitchen,40.757709999999996,-73.99407,Private room,100,1,257,4.2,1,20 +4487,4936720,Brooklyn,Williamsburg,40.7152,-73.95445,Private room,75,1,52,1.29,2,25 +4488,1475015,Manhattan,Kips Bay,40.74175,-73.97740999999999,Entire home/apt,84,30,7,0.12,52,365 +4489,2308616,Brooklyn,Greenpoint,40.7245,-73.95022,Entire home/apt,100,14,1,0.04,1,0 +4490,7136700,Brooklyn,Crown Heights,40.671040000000005,-73.94561999999999,Private room,75,3,85,1.41,4,292 +4491,7107807,Brooklyn,Clinton Hill,40.68541,-73.96728,Private room,93,6,108,1.73,1,336 +4492,15733420,Brooklyn,Bedford-Stuyvesant,40.69205,-73.93144000000001,Entire home/apt,140,4,64,1.38,2,315 +4493,15740819,Brooklyn,Fort Greene,40.690709999999996,-73.97057,Entire home/apt,200,30,38,0.63,2,5 +4494,13125226,Brooklyn,Williamsburg,40.7177,-73.94612,Entire home/apt,200,2,2,0.03,1,157 +4495,15743167,Brooklyn,South Slope,40.665079999999996,-73.98974,Entire home/apt,200,2,14,0.6,1,0 +4496,10930874,Queens,Forest Hills,40.727129999999995,-73.84946,Entire home/apt,100,1,1,0.02,1,0 +4497,9716281,Manhattan,Harlem,40.80399,-73.94665,Private room,100,250,91,1.47,1,138 +4498,1906150,Manhattan,Upper East Side,40.7759,-73.94227,Entire home/apt,120,7,100,1.61,1,203 +4499,15767190,Brooklyn,Flatbush,40.65235,-73.9635,Entire home/apt,109,2,2,0.08,1,0 +4500,9229108,Brooklyn,Greenpoint,40.72126,-73.93961,Private room,126,2,15,0.8,2,105 +4501,15778597,Manhattan,Harlem,40.82243,-73.94785999999999,Private room,50,2,2,0.04,1,321 +4502,15783686,Manhattan,Chelsea,40.74765,-74.0042,Entire home/apt,325,4,6,0.12,1,0 +4503,9306192,Manhattan,Upper East Side,40.77766,-73.9561,Entire home/apt,750,6,0,,1,0 +4504,8822946,Brooklyn,Crown Heights,40.67228,-73.96239,Entire home/apt,135,5,4,0.07,1,0 +4505,2885147,Queens,Rego Park,40.7246,-73.85744,Entire home/apt,52,2,1,0.02,1,0 +4506,3765042,Manhattan,Lower East Side,40.71848,-73.98159,Entire home/apt,124,28,13,0.21,1,38 +4507,15815237,Queens,Flushing,40.76428,-73.83225,Private room,59,3,35,0.61,1,158 +4508,2641574,Manhattan,Upper West Side,40.775729999999996,-73.98264,Entire home/apt,215,2,8,0.13,1,0 +4509,15688520,Manhattan,East Village,40.72488,-73.97995999999999,Private room,240,2,8,0.13,2,93 +4510,14911623,Manhattan,Harlem,40.81736,-73.93921,Private room,150,1,2,0.19,2,87 +4511,5352357,Brooklyn,Greenpoint,40.72418,-73.94528000000001,Private room,83,2,2,0.03,1,0 +4512,3008690,Queens,Ridgewood,40.701240000000006,-73.90941,Entire home/apt,70,10,0,,1,0 +4513,15853337,Manhattan,Lower East Side,40.72165,-73.98573,Entire home/apt,160,2,6,0.1,1,0 +4514,8703,Manhattan,Harlem,40.80699,-73.94227,Shared room,200,1,8,0.13,1,180 +4515,3663033,Brooklyn,Williamsburg,40.71662,-73.95993,Entire home/apt,50,7,4,0.07,1,0 +4516,1475015,Manhattan,Hell's Kitchen,40.76745,-73.98489000000001,Entire home/apt,87,30,8,0.2,52,311 +4517,15859636,Manhattan,Harlem,40.81595,-73.9447,Private room,125,1,0,,1,0 +4518,4025280,Manhattan,Upper East Side,40.782759999999996,-73.95299,Entire home/apt,250,5,22,0.36,1,7 +4519,2442348,Brooklyn,South Slope,40.6679,-73.9872,Entire home/apt,162,2,123,3.47,1,282 +4520,15890334,Brooklyn,Prospect Heights,40.675270000000005,-73.96604,Entire home/apt,67,1,0,,1,0 +4521,7853594,Manhattan,Upper East Side,40.76282,-73.9637,Private room,147,1,25,0.51,2,10 +4522,2213809,Brooklyn,Bedford-Stuyvesant,40.68176,-73.92883,Entire home/apt,149,2,225,3.7,1,254 +4523,15904341,Brooklyn,Crown Heights,40.672309999999996,-73.94426,Entire home/apt,65,5,6,0.14,1,0 +4524,2472358,Brooklyn,Park Slope,40.67668,-73.97718,Entire home/apt,250,5,2,0.21,1,0 +4525,15908653,Brooklyn,Flatbush,40.63463,-73.95899,Private room,160,2,156,2.54,2,307 +4526,15414317,Manhattan,Upper East Side,40.76299,-73.96166,Entire home/apt,150,5,10,0.16,1,0 +4527,15667008,Manhattan,Gramercy,40.73666,-73.9796,Private room,199,1,0,,1,365 +4528,3814039,Brooklyn,Williamsburg,40.70921,-73.95178,Private room,64,3,47,0.77,1,282 +4529,2885704,Brooklyn,Bushwick,40.69545,-73.91967,Private room,33,2,182,3.62,2,16 +4530,7580038,Manhattan,Harlem,40.82584,-73.94673,Private room,500,1,3,0.05,3,363 +4531,469098,Brooklyn,Boerum Hill,40.684740000000005,-73.97959,Entire home/apt,150,3,55,0.94,1,7 +4532,15518085,Manhattan,Lower East Side,40.71973,-73.98993,Private room,110,14,2,0.03,1,0 +4533,3323488,Brooklyn,Bedford-Stuyvesant,40.68452,-73.95535,Entire home/apt,145,2,119,1.96,2,218 +4534,15960720,Brooklyn,Flatbush,40.64056,-73.96571,Private room,40,10,0,,1,0 +4535,7784911,Brooklyn,Williamsburg,40.707240000000006,-73.94216999999999,Private room,95,3,10,0.17,2,0 +4536,10835806,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92994,Entire home/apt,185,5,60,1.3,1,0 +4537,3323488,Brooklyn,Bedford-Stuyvesant,40.68695,-73.95427,Entire home/apt,500,1,28,0.71,2,365 +4538,7361593,Manhattan,West Village,40.72976,-74.00445,Entire home/apt,115,3,2,0.03,1,0 +4539,13530123,Staten Island,St. George,40.64553,-74.08323,Entire home/apt,195,3,105,1.73,1,204 +4540,16003147,Brooklyn,Prospect Heights,40.67391,-73.96739000000001,Entire home/apt,105,21,5,0.08,1,221 +4541,4299288,Brooklyn,Bushwick,40.69465,-73.92675,Entire home/apt,67,30,10,0.16,1,26 +4542,9105586,Brooklyn,Bedford-Stuyvesant,40.68898,-73.9412,Entire home/apt,75,1,1,0.02,1,0 +4543,4119683,Manhattan,Battery Park City,40.71029,-74.01725,Private room,100,1,4,0.08,1,0 +4544,14736455,Brooklyn,Bedford-Stuyvesant,40.693940000000005,-73.95017,Entire home/apt,125,7,56,0.93,1,188 +4545,6754169,Brooklyn,Williamsburg,40.715720000000005,-73.94058000000001,Entire home/apt,350,2,2,0.04,2,0 +4546,2338762,Brooklyn,Williamsburg,40.71808,-73.95510999999999,Entire home/apt,150,1,12,0.33,1,0 +4547,15998942,Queens,Astoria,40.77221,-73.92493,Entire home/apt,200,5,22,0.37,1,188 +4548,2323652,Brooklyn,Park Slope,40.678000000000004,-73.98049,Entire home/apt,270,3,6,0.16,1,12 +4549,8488933,Brooklyn,Windsor Terrace,40.655159999999995,-73.97633,Entire home/apt,184,5,22,0.37,1,0 +4550,16067583,Brooklyn,Prospect Heights,40.67765,-73.96378,Entire home/apt,275,4,19,0.32,1,34 +4551,16069958,Manhattan,East Village,40.72854,-73.98434,Entire home/apt,171,2,1,0.02,1,0 +4552,2416036,Brooklyn,Williamsburg,40.71765,-73.9624,Entire home/apt,425,5,0,,1,0 +4553,6183406,Manhattan,West Village,40.73509,-74.00323,Entire home/apt,200,4,4,0.07,1,0 +4554,847230,Brooklyn,Fort Greene,40.68731,-73.9745,Entire home/apt,165,3,7,0.19,1,0 +4555,7351,Brooklyn,South Slope,40.66257,-73.98777,Private room,85,2,23,0.45,3,363 +4556,16109802,Brooklyn,Williamsburg,40.71262,-73.95676,Entire home/apt,170,7,20,0.33,1,44 +4557,6396561,Brooklyn,Williamsburg,40.70675,-73.94984000000001,Private room,70,3,69,1.13,1,142 +4558,16092773,Brooklyn,Crown Heights,40.66638,-73.95229,Private room,125,2,36,0.6,1,7 +4559,16100913,Manhattan,Chelsea,40.74449,-73.99445,Entire home/apt,275,3,63,1.02,1,323 +4560,14325632,Brooklyn,Crown Heights,40.67476,-73.95312,Private room,120,2,8,2.2,2,162 +4561,16107699,Manhattan,Midtown,40.76552,-73.97738000000001,Entire home/apt,429,2,0,,1,0 +4562,16108191,Brooklyn,South Slope,40.66488,-73.98725,Entire home/apt,225,4,2,0.11,1,0 +4563,16108973,Queens,Astoria,40.76068,-73.91359,Entire home/apt,119,2,217,3.67,1,214 +4564,16114134,Manhattan,Upper East Side,40.77737,-73.95031999999999,Entire home/apt,175,3,6,0.1,1,0 +4565,14902860,Brooklyn,Bedford-Stuyvesant,40.68291,-73.94613000000001,Entire home/apt,155,3,44,0.71,5,363 +4566,8158276,Manhattan,Inwood,40.85893,-73.92985,Entire home/apt,100,3,1,0.02,1,0 +4567,16142344,Manhattan,Harlem,40.82165,-73.95491,Private room,70,3,16,0.26,1,209 +4568,16151285,Bronx,Williamsbridge,40.88075,-73.84845,Entire home/apt,95,3,58,0.96,4,358 +4569,16152979,Brooklyn,Park Slope,40.67507,-73.97706,Entire home/apt,450,2,12,0.2,1,13 +4570,11249746,Brooklyn,Fort Greene,40.69117,-73.97421,Entire home/apt,215,5,28,0.53,1,106 +4571,241593,Brooklyn,Flatbush,40.64996,-73.9615,Private room,60,3,4,0.07,2,0 +4572,9122601,Bronx,Fieldston,40.896029999999996,-73.89958,Private room,75,5,35,0.67,1,300 +4573,3772684,Brooklyn,Williamsburg,40.70667,-73.94921,Private room,99,3,22,0.36,2,11 +4574,738918,Brooklyn,Park Slope,40.67561,-73.97823000000001,Entire home/apt,300,2,85,1.81,2,268 +4575,16209547,Manhattan,Harlem,40.80185,-73.95666999999999,Entire home/apt,175,2,142,2.39,2,339 +4576,9523245,Manhattan,Upper West Side,40.79739,-73.96945,Entire home/apt,195,3,8,0.13,1,0 +4577,627678,Queens,Forest Hills,40.73381,-73.85365999999999,Private room,50,7,2,0.15,1,140 +4578,16217769,Manhattan,Hell's Kitchen,40.763090000000005,-73.99155,Entire home/apt,175,4,1,0.03,1,0 +4579,1369577,Brooklyn,Crown Heights,40.67499,-73.92426999999999,Entire home/apt,120,5,175,2.86,2,56 +4580,727114,Brooklyn,Flatbush,40.646770000000004,-73.96946,Private room,54,10,11,0.19,1,0 +4581,13789963,Manhattan,Harlem,40.82931,-73.94358000000001,Entire home/apt,345,3,141,2.34,1,273 +4582,9209820,Brooklyn,Crown Heights,40.67138,-73.94949,Entire home/apt,225,3,76,1.24,3,275 +4583,1832751,Brooklyn,Boerum Hill,40.68823,-73.98604,Entire home/apt,151,28,12,0.3,1,54 +4584,16245414,Brooklyn,Bushwick,40.69368,-73.92295,Entire home/apt,110,1,189,3.06,4,179 +4585,16245979,Manhattan,Upper East Side,40.770590000000006,-73.94991,Entire home/apt,280,2,17,0.28,1,0 +4586,1874429,Brooklyn,Boerum Hill,40.68558,-73.9903,Private room,99,1,75,1.28,1,125 +4587,16254543,Brooklyn,Carroll Gardens,40.67863,-73.99399,Entire home/apt,350,3,8,0.14,1,0 +4588,1465030,Brooklyn,Williamsburg,40.71042,-73.94702,Private room,70,5,0,,1,0 +4589,8658146,Manhattan,Upper West Side,40.77802,-73.98255999999999,Entire home/apt,120,3,214,3.47,1,197 +4590,16257970,Manhattan,Lower East Side,40.712540000000004,-73.98535,Private room,89,3,231,3.72,2,177 +4591,16258619,Brooklyn,Fort Greene,40.69802,-73.97614,Private room,120,3,1,0.02,1,365 +4592,16264357,Manhattan,East Village,40.7215,-73.97747,Private room,85,5,142,2.3,1,80 +4593,16266298,Manhattan,Little Italy,40.71883,-73.99716,Entire home/apt,220,2,119,1.93,1,0 +4594,11837926,Manhattan,Midtown,40.76429,-73.98043,Private room,125,7,17,0.29,3,309 +4595,1014484,Manhattan,Murray Hill,40.74814,-73.97277,Entire home/apt,189,1,3,0.05,1,0 +4596,16279457,Brooklyn,Crown Heights,40.66985,-73.95675,Private room,100,7,0,,1,0 +4597,7691955,Manhattan,Lower East Side,40.719809999999995,-73.98701,Private room,81,3,9,0.19,1,0 +4598,6150328,Manhattan,East Harlem,40.797940000000004,-73.93876,Shared room,45,2,136,2.22,1,15 +4599,496465,Brooklyn,Williamsburg,40.71622,-73.93942,Private room,150,21,0,,1,0 +4600,16288210,Manhattan,Washington Heights,40.84919,-73.94021,Private room,62,3,37,0.61,1,35 +4601,16288928,Brooklyn,Park Slope,40.68193,-73.97636,Entire home/apt,330,2,122,1.98,2,351 +4602,9502879,Manhattan,Upper East Side,40.76158,-73.96030999999999,Private room,80,2,10,0.25,1,0 +4603,16251030,Manhattan,Washington Heights,40.8365,-73.93688,Shared room,65,2,9,0.21,1,0 +4604,3321910,Manhattan,Nolita,40.722429999999996,-73.99655,Private room,125,6,3,0.05,1,43 +4605,103640,Brooklyn,Flatbush,40.63649,-73.96508,Entire home/apt,165,2,172,3.1,1,264 +4606,3481965,Manhattan,Greenwich Village,40.729279999999996,-74.00135,Private room,90,4,3,0.05,1,0 +4607,16304160,Brooklyn,South Slope,40.66565,-73.98782,Entire home/apt,120,3,8,0.13,1,9 +4608,16305093,Brooklyn,Windsor Terrace,40.657790000000006,-73.97595,Entire home/apt,250,1,0,,2,0 +4609,16306708,Brooklyn,Clinton Hill,40.68331,-73.96568,Entire home/apt,115,7,6,0.1,1,0 +4610,16307118,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.95719,Private room,55,1,47,0.79,1,249 +4611,15646137,Manhattan,Lower East Side,40.71813,-73.99063000000001,Entire home/apt,200,30,0,,1,365 +4612,16319729,Manhattan,SoHo,40.72652,-74.00265999999999,Entire home/apt,149,1,0,,1,0 +4613,16245414,Brooklyn,Bushwick,40.694359999999996,-73.9253,Entire home/apt,55,1,115,1.91,4,64 +4614,16329859,Brooklyn,Gowanus,40.68338,-73.98926999999999,Entire home/apt,400,6,34,0.56,1,1 +4615,2941712,Brooklyn,Clinton Hill,40.68717,-73.9669,Entire home/apt,200,5,3,0.05,1,0 +4616,4427756,Brooklyn,Greenpoint,40.7215,-73.94136,Entire home/apt,111,2,45,3.08,1,0 +4617,15384170,Brooklyn,Fort Greene,40.68727,-73.972,Entire home/apt,175,3,12,0.2,1,0 +4618,14337132,Manhattan,Harlem,40.80118,-73.95451,Entire home/apt,150,2,31,0.54,1,0 +4619,5164854,Manhattan,Harlem,40.82075,-73.9379,Private room,52,7,17,0.28,8,17 +4620,16376419,Brooklyn,Sunset Park,40.648109999999996,-74.01366,Entire home/apt,88,30,2,0.09,1,101 +4621,11494077,Brooklyn,Carroll Gardens,40.682520000000004,-73.99224,Entire home/apt,425,6,5,0.08,1,321 +4622,4928687,Manhattan,East Village,40.7278,-73.97997,Entire home/apt,175,1,2,0.05,1,0 +4623,16379550,Brooklyn,Williamsburg,40.72123,-73.95891,Entire home/apt,270,14,0,,1,0 +4624,16383743,Brooklyn,Flatbush,40.649640000000005,-73.96016999999999,Private room,180,1,0,,1,0 +4625,2656209,Brooklyn,Williamsburg,40.70552,-73.93842,Private room,55,13,0,,1,0 +4626,16385595,Brooklyn,Bedford-Stuyvesant,40.67994,-73.94318,Private room,105,14,26,0.42,1,285 +4627,16395150,Brooklyn,Boerum Hill,40.68554,-73.98470999999999,Entire home/apt,265,2,10,0.18,1,0 +4628,16396714,Manhattan,Kips Bay,40.740590000000005,-73.97953000000001,Private room,60,2,15,0.25,3,188 +4629,16399575,Manhattan,Washington Heights,40.836859999999994,-73.94393000000001,Private room,45,3,13,0.21,1,0 +4630,4422817,Manhattan,East Harlem,40.808009999999996,-73.93854,Private room,89,2,7,0.92,1,0 +4631,1866033,Manhattan,Upper East Side,40.7659,-73.96611,Entire home/apt,200,4,102,1.7,1,6 +4632,13561307,Brooklyn,Greenpoint,40.7238,-73.94859,Entire home/apt,149,1,2,0.28,1,0 +4633,16425715,Manhattan,Harlem,40.81198,-73.9437,Private room,80,1,134,4.36,1,227 +4634,1588656,Brooklyn,Park Slope,40.67794,-73.97398000000001,Entire home/apt,125,1,154,3.05,2,122 +4635,16430857,Manhattan,Harlem,40.82524,-73.94185999999999,Entire home/apt,78,5,13,0.22,1,0 +4636,6032480,Brooklyn,Williamsburg,40.712070000000004,-73.95076999999999,Private room,65,2,152,2.5,2,80 +4637,16433878,Brooklyn,Fort Greene,40.68833,-73.97606,Entire home/apt,350,7,5,0.14,1,0 +4638,1705205,Brooklyn,Brooklyn Heights,40.6906,-73.99339,Entire home/apt,115,5,0,,1,0 +4639,14369316,Manhattan,Chelsea,40.74156,-73.99476,Entire home/apt,289,2,1,0.02,1,0 +4640,16437254,Brooklyn,Sunset Park,40.66592,-73.99434000000001,Entire home/apt,158,30,1,0.14,21,365 +4641,16442583,Manhattan,East Harlem,40.79848,-73.93908,Private room,50,2,6,0.11,1,0 +4642,8349905,Manhattan,Midtown,40.76016,-73.96597,Entire home/apt,234,4,5,0.08,1,0 +4643,8243983,Brooklyn,Crown Heights,40.66758,-73.95033000000001,Private room,50,1,0,,1,0 +4644,6726808,Manhattan,Upper West Side,40.80131,-73.9675,Private room,69,5,2,0.03,1,0 +4645,417100,Manhattan,Chinatown,40.71338,-73.99226,Entire home/apt,135,1,18,0.35,1,0 +4646,169843,Brooklyn,Williamsburg,40.71601,-73.9587,Private room,89,3,73,1.19,1,359 +4647,16477306,Manhattan,Upper East Side,40.76866,-73.95553000000001,Entire home/apt,16,2,21,1.69,1,9 +4648,10297692,Brooklyn,Crown Heights,40.67658,-73.93122,Entire home/apt,300,1,32,0.52,2,254 +4649,124345,Manhattan,Kips Bay,40.74436,-73.97977,Entire home/apt,250,5,49,0.83,1,234 +4650,16499705,Brooklyn,Flatbush,40.65148,-73.95846999999999,Entire home/apt,70,1,5,0.08,1,0 +4651,16500110,Manhattan,Upper East Side,40.76572,-73.95541,Private room,140,3,118,1.91,1,316 +4652,5668550,Manhattan,Midtown,40.75182,-73.97052,Entire home/apt,175,3,18,0.3,1,0 +4653,8830645,Brooklyn,Carroll Gardens,40.6812,-74.00116,Entire home/apt,160,3,2,0.03,1,0 +4654,16512899,Manhattan,Upper West Side,40.7898,-73.9708,Entire home/apt,200,1,0,,1,0 +4655,9944244,Brooklyn,Prospect Heights,40.67303,-73.96424,Private room,57,7,11,0.18,1,0 +4656,5508109,Manhattan,Chelsea,40.749559999999995,-73.99671,Private room,90,3,2,1.58,1,53 +4657,16514175,Queens,Elmhurst,40.74644,-73.88656,Private room,89,2,40,0.65,5,1 +4658,16516195,Brooklyn,Park Slope,40.677659999999996,-73.98191,Entire home/apt,90,4,22,0.37,1,13 +4659,16525423,Manhattan,West Village,40.73547,-74.0051,Entire home/apt,200,4,48,0.82,1,312 +4660,1746811,Brooklyn,Park Slope,40.67751,-73.98143,Entire home/apt,100,2,52,1.08,2,30 +4661,16534981,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.93444000000001,Entire home/apt,68,30,14,0.41,5,334 +4662,16536815,Manhattan,East Village,40.728229999999996,-73.9817,Entire home/apt,170,4,14,0.23,1,0 +4663,13208084,Brooklyn,Crown Heights,40.6774,-73.94566,Private room,40,28,13,0.22,3,318 +4664,14289427,Manhattan,Chinatown,40.71613,-73.99266,Entire home/apt,500,4,6,0.18,3,341 +4665,2009585,Brooklyn,Cobble Hill,40.68785,-73.99181,Entire home/apt,145,3,13,0.22,1,0 +4666,327673,Brooklyn,Park Slope,40.67592,-73.98106999999999,Entire home/apt,250,3,16,0.27,2,6 +4667,16545323,Manhattan,West Village,40.735040000000005,-74.00658,Entire home/apt,288,7,14,0.23,1,222 +4668,4233003,Brooklyn,Williamsburg,40.71314,-73.96719,Entire home/apt,245,3,18,0.3,1,0 +4669,1568951,Manhattan,Harlem,40.80407,-73.94603000000001,Entire home/apt,80,3,12,0.25,1,0 +4670,4080758,Brooklyn,Prospect Heights,40.68033,-73.96528,Entire home/apt,125,5,5,0.08,1,0 +4671,16566615,Manhattan,West Village,40.736909999999995,-74.00013,Entire home/apt,166,14,18,0.3,1,48 +4672,7105630,Manhattan,Upper West Side,40.782059999999994,-73.97797,Entire home/apt,330,4,11,0.18,1,260 +4673,16572580,Brooklyn,Williamsburg,40.70943,-73.94948000000001,Private room,60,5,6,0.16,2,0 +4674,16572957,Manhattan,East Harlem,40.8008,-73.94346999999999,Private room,130,1,3,0.05,1,0 +4675,16069319,Brooklyn,Gravesend,40.59601,-73.96862,Private room,45,30,4,0.07,1,0 +4676,109738,Manhattan,Chelsea,40.7518,-73.9969,Entire home/apt,165,3,159,2.71,1,75 +4677,16509287,Manhattan,Harlem,40.80002,-73.95559,Private room,155,2,14,0.23,1,172 +4678,418289,Manhattan,Upper East Side,40.77449,-73.96228,Entire home/apt,119,60,1,0.04,1,0 +4679,1174963,Brooklyn,Boerum Hill,40.6846,-73.98454,Entire home/apt,158,3,12,0.19,1,0 +4680,16591767,Brooklyn,Williamsburg,40.71165,-73.94708,Entire home/apt,169,5,51,0.83,1,91 +4681,16593547,Brooklyn,Bedford-Stuyvesant,40.68562,-73.92375,Entire home/apt,139,2,124,2.09,1,231 +4682,16596651,Manhattan,Upper East Side,40.77787,-73.95104,Entire home/apt,125,4,7,0.11,1,0 +4683,15055035,Queens,Astoria,40.7631,-73.92262,Private room,70,3,25,0.41,1,353 +4684,16608415,Brooklyn,East New York,40.67517,-73.89814,Private room,135,1,173,4.69,3,162 +4685,3716641,Manhattan,Lower East Side,40.717690000000005,-73.98953,Entire home/apt,99,30,8,0.13,8,170 +4686,4042938,Brooklyn,Williamsburg,40.711890000000004,-73.96282,Entire home/apt,175,10,0,,1,0 +4687,5231131,Brooklyn,Greenpoint,40.72096,-73.94424000000001,Entire home/apt,150,7,0,,1,0 +4688,16622685,Manhattan,Nolita,40.72235,-73.99543,Entire home/apt,250,3,30,0.51,1,173 +4689,16628226,Queens,Long Island City,40.7593,-73.92884000000001,Private room,100,1,0,,1,0 +4690,15740819,Brooklyn,Fort Greene,40.69236,-73.97254000000001,Private room,100,30,5,0.08,2,10 +4691,16580725,Brooklyn,Bedford-Stuyvesant,40.68073,-73.90915,Entire home/apt,128,3,89,1.53,1,32 +4692,16641600,Brooklyn,Sunset Park,40.66294,-73.99675,Entire home/apt,121,12,8,0.13,2,7 +4693,2051075,Brooklyn,Crown Heights,40.67045,-73.95716,Entire home/apt,160,30,36,0.63,2,228 +4694,56920,Manhattan,Upper West Side,40.80118,-73.97063,Private room,135,2,0,,2,352 +4695,16678513,Manhattan,Gramercy,40.735479999999995,-73.98895999999999,Entire home/apt,275,5,30,0.5,1,20 +4696,16680791,Manhattan,West Village,40.7381,-74.00489,Entire home/apt,180,3,3,0.07,1,0 +4697,16680861,Manhattan,East Village,40.72749,-73.99070999999999,Entire home/apt,189,2,138,2.86,1,203 +4698,2082345,Queens,Woodhaven,40.69165,-73.84841,Entire home/apt,250,5,0,,1,32 +4699,4279827,Brooklyn,Cypress Hills,40.67731,-73.90733,Entire home/apt,99,2,148,2.46,1,235 +4700,12385603,Brooklyn,Bedford-Stuyvesant,40.68207,-73.94994,Entire home/apt,200,5,120,2.0,1,193 +4701,16683574,Manhattan,Harlem,40.82888,-73.94997,Entire home/apt,145,4,115,1.9,2,262 +4702,12465884,Manhattan,East Harlem,40.79269,-73.94218000000001,Private room,100,3,64,1.05,1,219 +4703,7889819,Manhattan,West Village,40.73993,-74.00619,Entire home/apt,240,1,22,0.37,1,0 +4704,341981,Brooklyn,Bedford-Stuyvesant,40.67822,-73.9389,Private room,90,3,52,0.85,1,0 +4705,16713474,Brooklyn,Crown Heights,40.66939,-73.94839,Entire home/apt,220,2,55,0.91,1,306 +4706,430188,Brooklyn,Williamsburg,40.70648,-73.95444,Private room,100,20,62,1.01,6,240 +4707,11674837,Queens,Ridgewood,40.70476,-73.90874000000001,Private room,59,1,142,2.34,3,359 +4708,13611255,Brooklyn,Bedford-Stuyvesant,40.68975,-73.9346,Entire home/apt,78,30,81,1.33,3,188 +4709,14214034,Bronx,Mott Haven,40.814440000000005,-73.92515999999999,Entire home/apt,75,2,85,1.41,2,253 +4710,3691863,Brooklyn,Bedford-Stuyvesant,40.68172,-73.94095,Private room,78,3,86,1.43,1,362 +4711,12774721,Manhattan,Upper East Side,40.768840000000004,-73.95826,Entire home/apt,250,1,4,0.07,1,0 +4712,175694,Brooklyn,Bedford-Stuyvesant,40.6979,-73.94126,Entire home/apt,150,1,0,,1,0 +4713,16751902,Manhattan,Upper West Side,40.80048,-73.96621,Private room,44,1,2,0.05,1,0 +4714,9306976,Brooklyn,Greenpoint,40.73535,-73.9565,Private room,69,2,25,0.47,2,125 +4715,1498951,Brooklyn,Bushwick,40.70247,-73.92061,Private room,65,1,0,,1,5 +4716,7640229,Brooklyn,Flatbush,40.65376,-73.95336,Entire home/apt,90,7,4,0.07,1,0 +4717,1442768,Brooklyn,East Flatbush,40.64082,-73.94818000000001,Entire home/apt,125,4,10,0.17,1,0 +4718,18566028,Brooklyn,Flatbush,40.6532,-73.96216,Entire home/apt,78,18,11,0.2,1,0 +4719,16777963,Manhattan,Chinatown,40.715559999999996,-73.99234,Entire home/apt,785,2,85,1.52,1,331 +4720,16782573,Queens,Middle Village,40.71347,-73.88199,Entire home/apt,99,3,160,2.65,4,299 +4721,11827364,Queens,Sunnyside,40.73873,-73.92435,Private room,74,30,9,0.16,1,76 +4722,16789954,Manhattan,Upper West Side,40.7995,-73.96965,Entire home/apt,130,4,2,0.06,1,0 +4723,16790098,Queens,Woodside,40.745490000000004,-73.90872,Entire home/apt,105,2,216,3.54,1,70 +4724,3053578,Manhattan,Upper West Side,40.799209999999995,-73.96704,Entire home/apt,145,7,6,0.1,1,0 +4725,16805656,Manhattan,Upper West Side,40.79893,-73.96249,Private room,90,1,146,2.67,2,40 +4726,3840659,Brooklyn,Bedford-Stuyvesant,40.6851,-73.95655,Entire home/apt,215,4,14,0.23,1,0 +4727,16826094,Manhattan,East Harlem,40.787279999999996,-73.94976,Entire home/apt,100,3,1,0.03,1,0 +4728,16834792,Brooklyn,Prospect-Lefferts Gardens,40.65752,-73.95728000000001,Entire home/apt,92,5,192,3.14,2,281 +4729,16838156,Manhattan,Kips Bay,40.73953,-73.98009,Entire home/apt,185,29,5,0.08,1,2 +4730,3655542,Brooklyn,Boerum Hill,40.68732,-73.98254,Entire home/apt,1000,4,0,,1,0 +4731,15689833,Manhattan,Chelsea,40.74259,-74.00128000000001,Entire home/apt,160,4,11,0.18,1,1 +4732,7245581,Manhattan,Chelsea,40.75045,-73.99662,Entire home/apt,93,110,12,0.26,19,329 +4733,2119276,Manhattan,West Village,40.73316,-74.00632,Entire home/apt,300,30,13,0.24,39,291 +4734,1558222,Brooklyn,Greenpoint,40.72285,-73.95192,Private room,75,1,3,0.05,3,0 +4735,16872923,Manhattan,Chelsea,40.749340000000004,-74.00274,Entire home/apt,370,1,8,0.13,1,365 +4736,16874459,Manhattan,Kips Bay,40.74369,-73.98153,Entire home/apt,425,2,4,0.07,1,0 +4737,10457196,Brooklyn,South Slope,40.6674,-73.98273,Entire home/apt,200,30,4,0.18,11,282 +4738,16879147,Manhattan,Midtown,40.75958,-73.96231,Private room,125,2,55,0.89,1,348 +4739,1290508,Manhattan,Chelsea,40.74646,-73.99678,Entire home/apt,179,10,1,0.03,1,0 +4740,16883036,Brooklyn,Bushwick,40.69893,-73.91549,Private room,46,2,55,1.24,1,346 +4741,19402,Brooklyn,Williamsburg,40.709720000000004,-73.95576,Entire home/apt,150,5,37,0.76,1,86 +4742,12556197,Brooklyn,Crown Heights,40.66959,-73.95664000000001,Private room,52,4,37,0.6,2,0 +4743,455017,Manhattan,Washington Heights,40.83473,-73.93706,Private room,80,1,1,0.67,1,351 +4744,317692,Brooklyn,Boerum Hill,40.68687,-73.98472,Entire home/apt,120,2,4,0.08,1,0 +4745,16916853,Brooklyn,Sheepshead Bay,40.58527,-73.93534,Entire home/apt,300,5,8,0.13,2,363 +4746,8882019,Brooklyn,Brooklyn Heights,40.69846,-73.99311999999999,Private room,110,2,1,0.02,1,189 +4747,16926937,Brooklyn,South Slope,40.666909999999994,-73.98507,Entire home/apt,200,1,4,0.07,1,0 +4748,4319841,Brooklyn,Windsor Terrace,40.65181,-73.97648000000001,Entire home/apt,75,5,9,0.16,1,0 +4749,16942970,Manhattan,Upper East Side,40.766490000000005,-73.96453000000001,Entire home/apt,200,5,49,0.84,1,25 +4750,16947051,Manhattan,Chelsea,40.74722,-74.00466,Entire home/apt,300,3,11,0.19,1,0 +4751,16948705,Manhattan,Harlem,40.81742,-73.95358,Private room,22,10,3,0.05,1,0 +4752,7503643,Brooklyn,Greenpoint,40.72428,-73.94348000000001,Entire home/apt,129,30,15,0.27,52,157 +4753,16962600,Manhattan,Lower East Side,40.71866,-73.98592,Entire home/apt,125,7,4,0.07,1,0 +4754,16968100,Brooklyn,East Flatbush,40.652840000000005,-73.94413,Private room,150,1,0,,1,299 +4755,16968641,Manhattan,Upper East Side,40.77486,-73.94856999999999,Entire home/apt,185,5,18,0.3,1,31 +4756,16989237,Brooklyn,Williamsburg,40.71626,-73.95795,Entire home/apt,158,4,17,0.28,1,0 +4757,4044499,Brooklyn,Flatbush,40.65287,-73.96353,Private room,30,1,0,,1,0 +4758,5783747,Brooklyn,Fort Greene,40.689809999999994,-73.97768,Entire home/apt,316,3,29,0.49,1,6 +4759,16106756,Brooklyn,Park Slope,40.67978,-73.97458,Entire home/apt,175,3,176,2.88,1,0 +4760,17000648,Queens,Astoria,40.7743,-73.92579,Entire home/apt,97,3,33,0.65,1,0 +4761,17001535,Manhattan,Hell's Kitchen,40.75524,-73.99839,Entire home/apt,175,1,1,0.02,1,347 +4762,1910452,Brooklyn,Williamsburg,40.705859999999994,-73.94135,Shared room,60,1,0,,2,0 +4763,17003476,Brooklyn,Crown Heights,40.675909999999995,-73.93985,Private room,72,3,6,0.1,1,83 +4764,17015217,Brooklyn,Bedford-Stuyvesant,40.687529999999995,-73.93656,Entire home/apt,175,5,82,1.41,1,0 +4765,1283991,Manhattan,Upper West Side,40.78818,-73.97133000000001,Entire home/apt,225,3,0,,1,0 +4766,17018997,Brooklyn,Flatbush,40.64615,-73.9641,Entire home/apt,85,5,1,0.04,1,0 +4767,7549,Manhattan,Lower East Side,40.71307,-73.99025,Entire home/apt,150,1,60,1.0,4,188 +4768,2377104,Brooklyn,Williamsburg,40.711220000000004,-73.94985,Entire home/apt,225,2,257,4.21,2,179 +4769,17032761,Manhattan,Midtown,40.76423,-73.98187,Private room,400,7,5,0.09,1,0 +4770,2042864,Brooklyn,Williamsburg,40.70926,-73.94673,Private room,125,4,14,0.3,1,0 +4771,17036912,Brooklyn,Crown Heights,40.669109999999996,-73.94824,Entire home/apt,200,3,153,2.64,1,260 +4772,3463555,Manhattan,Washington Heights,40.85304,-73.93555,Entire home/apt,88,2,0,,1,0 +4773,6273146,Brooklyn,Williamsburg,40.70935,-73.94614,Private room,250,1,0,,1,0 +4774,13535952,Manhattan,Hell's Kitchen,40.76125,-73.99642,Entire home/apt,300,1,0,,1,0 +4775,9317567,Queens,Ridgewood,40.70026,-73.90720999999999,Entire home/apt,89,10,10,0.18,1,222 +4776,908514,Manhattan,Kips Bay,40.73873,-73.98100000000001,Entire home/apt,165,2,25,0.41,1,0 +4777,6146050,Manhattan,Financial District,40.70885,-74.002,Private room,84,15,0,,2,0 +4778,4185064,Brooklyn,Williamsburg,40.71649,-73.96166,Entire home/apt,285,1,89,1.47,2,110 +4779,17087544,Brooklyn,Windsor Terrace,40.64846,-73.97338,Entire home/apt,150,4,26,0.44,1,0 +4780,2468616,Brooklyn,Crown Heights,40.66955,-73.95026999999999,Private room,70,2,10,0.16,2,68 +4781,15310997,Manhattan,Upper East Side,40.781929999999996,-73.94884,Entire home/apt,300,30,3,0.05,9,365 +4782,3435970,Brooklyn,Brooklyn Heights,40.691,-73.99467,Entire home/apt,220,5,3,0.13,1,186 +4783,3542562,Manhattan,Harlem,40.824909999999996,-73.94774,Entire home/apt,149,31,0,,4,77 +4784,8597778,Manhattan,West Village,40.738170000000004,-74.00274,Entire home/apt,249,3,6,0.1,1,0 +4785,2443535,Brooklyn,Crown Heights,40.67321,-73.93093,Entire home/apt,90,7,0,,1,0 +4786,10657357,Manhattan,Washington Heights,40.83367,-73.94298,Private room,69,3,18,0.29,4,270 +4787,12057272,Brooklyn,Greenpoint,40.719590000000004,-73.95153,Entire home/apt,120,30,77,1.3,1,3 +4788,17125263,Manhattan,East Harlem,40.80174,-73.93925,Private room,69,2,60,1.05,2,271 +4789,10657357,Manhattan,Harlem,40.83058,-73.9495,Private room,54,5,21,0.34,4,187 +4790,10657357,Manhattan,Washington Heights,40.83132,-73.94100999999999,Private room,50,5,24,0.39,4,177 +4791,10657357,Manhattan,Washington Heights,40.83328,-73.94511,Private room,51,6,20,0.33,4,258 +4792,17130866,Manhattan,Hell's Kitchen,40.764959999999995,-73.99073,Private room,99,3,10,0.58,1,0 +4793,17132728,Manhattan,Upper West Side,40.7939,-73.97485,Entire home/apt,290,7,1,0.03,1,0 +4794,39304,Brooklyn,Williamsburg,40.71852,-73.94165,Entire home/apt,240,365,0,,1,363 +4795,16286162,Bronx,Allerton,40.86677,-73.85938,Private room,49,2,114,1.87,4,240 +4796,178784,Brooklyn,Boerum Hill,40.68572,-73.98602,Entire home/apt,115,3,6,0.1,1,0 +4797,17151343,Brooklyn,Crown Heights,40.67132,-73.9325,Private room,78,21,60,0.99,1,0 +4798,17153037,Brooklyn,Bushwick,40.69195,-73.92068,Entire home/apt,125,7,25,0.41,1,270 +4799,5851210,Manhattan,East Harlem,40.791909999999994,-73.94433000000001,Entire home/apt,135,3,225,3.69,2,13 +4800,17156530,Manhattan,Battery Park City,40.71062,-74.01536999999999,Private room,110,1,0,,1,0 +4801,17157906,Manhattan,Financial District,40.70765,-74.00761,Entire home/apt,205,2,8,0.16,1,0 +4802,17161465,Manhattan,Harlem,40.82967,-73.94428,Entire home/apt,95,30,36,0.61,1,245 +4803,17169449,Brooklyn,Bushwick,40.69502,-73.90645,Private room,55,3,225,3.7,1,15 +4804,17170345,Brooklyn,Brownsville,40.66682,-73.92303000000001,Private room,47,2,118,1.99,1,310 +4805,17171419,Manhattan,Washington Heights,40.85083,-73.9287,Private room,39,4,48,0.82,2,12 +4806,17190169,Manhattan,Chelsea,40.7476,-73.99195,Entire home/apt,349,5,19,0.45,1,358 +4807,17196239,Brooklyn,Williamsburg,40.71082,-73.95186,Entire home/apt,250,1,7,0.12,1,170 +4808,4903508,Manhattan,East Village,40.73165,-73.98715,Entire home/apt,290,7,90,1.53,1,41 +4809,1649108,Brooklyn,Vinegar Hill,40.7044,-73.98153,Private room,85,1,83,1.51,3,21 +4810,2574806,Brooklyn,Bushwick,40.693490000000004,-73.92211,Entire home/apt,170,2,1,0.02,1,0 +4811,1964249,Manhattan,Lower East Side,40.72012,-73.99091999999999,Entire home/apt,146,11,50,0.82,1,0 +4812,17206543,Queens,Astoria,40.770559999999996,-73.92159000000001,Entire home/apt,99,2,7,0.12,1,0 +4813,3640784,Brooklyn,Prospect Heights,40.68148,-73.96674,Entire home/apt,150,3,25,0.42,1,18 +4814,5722995,Brooklyn,Williamsburg,40.711220000000004,-73.94893,Entire home/apt,240,2,87,1.46,1,77 +4815,17218916,Brooklyn,Williamsburg,40.7117,-73.96321,Entire home/apt,500,2,48,0.8,1,365 +4816,4345336,Queens,Sunnyside,40.7468,-73.92218000000001,Private room,48,2,33,0.92,1,113 +4817,17241205,Brooklyn,Williamsburg,40.70791,-73.93396,Entire home/apt,129,1,21,0.36,1,0 +4818,16345041,Manhattan,Hell's Kitchen,40.76477,-73.98541999999999,Entire home/apt,750,3,16,0.27,1,365 +4819,17243187,Manhattan,SoHo,40.72511,-74.00016,Entire home/apt,180,5,9,0.15,1,87 +4820,12483101,Queens,Long Island City,40.768440000000005,-73.93819,Private room,70,3,1,0.09,1,342 +4821,17256091,Manhattan,Upper East Side,40.77565,-73.95085999999999,Entire home/apt,150,2,0,,1,0 +4822,17247205,Brooklyn,Park Slope,40.66891,-73.97986999999999,Entire home/apt,240,1,1,0.05,1,0 +4823,7398990,Brooklyn,Park Slope,40.67505,-73.97795,Entire home/apt,100,5,10,0.17,1,0 +4824,10665748,Manhattan,East Village,40.73005,-73.98525,Entire home/apt,122,30,7,0.12,1,339 +4825,17272284,Manhattan,Upper East Side,40.763490000000004,-73.95969000000001,Entire home/apt,400,3,9,0.36,2,0 +4826,16286162,Bronx,Allerton,40.866890000000005,-73.85776,Private room,47,2,75,1.27,4,172 +4827,17289499,Brooklyn,Prospect Heights,40.67998,-73.96743000000001,Entire home/apt,140,3,12,0.2,1,4 +4828,17292935,Bronx,Mott Haven,40.81055,-73.92482,Private room,55,1,231,3.95,2,16 +4829,4274268,Brooklyn,Crown Heights,40.67183,-73.95491,Entire home/apt,110,4,3,0.05,1,0 +4830,17299359,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95792,Entire home/apt,175,3,1,0.02,2,365 +4831,11081628,Manhattan,Civic Center,40.71663,-74.00231,Entire home/apt,80,7,6,0.18,1,0 +4832,16914467,Manhattan,Midtown,40.75812,-73.96171,Entire home/apt,150,2,4,0.07,1,0 +4833,13148521,Manhattan,Upper West Side,40.79037,-73.97195,Entire home/apt,200,4,4,0.07,1,0 +4834,17315514,Brooklyn,Sunset Park,40.662009999999995,-73.99719,Private room,50,10,1,0.03,2,0 +4835,17318747,Manhattan,Upper East Side,40.77343,-73.95979,Private room,99,1,21,0.47,2,82 +4836,5634395,Manhattan,Harlem,40.82186,-73.95671999999999,Private room,60,7,11,0.18,2,0 +4837,7356757,Manhattan,Greenwich Village,40.73232,-74.0002,Entire home/apt,225,1,39,2.73,1,49 +4838,17339848,Manhattan,Washington Heights,40.855290000000004,-73.9398,Entire home/apt,175,3,5,0.08,1,0 +4839,6045456,Brooklyn,Williamsburg,40.71409,-73.93979,Private room,60,7,16,0.26,1,313 +4840,17198795,Manhattan,Upper East Side,40.78284,-73.94825,Entire home/apt,255,2,1,0.02,1,341 +4841,8697041,Brooklyn,Williamsburg,40.71266,-73.94829,Private room,75,15,4,0.07,2,0 +4842,17347275,Brooklyn,Gowanus,40.68094,-73.98205,Entire home/apt,190,3,2,0.03,1,0 +4843,17051201,Brooklyn,Park Slope,40.67224,-73.97837,Entire home/apt,495,3,15,0.27,3,198 +4844,13637847,Brooklyn,Crown Heights,40.67432,-73.95949,Entire home/apt,98,5,11,0.18,1,188 +4845,14509754,Brooklyn,Williamsburg,40.719359999999995,-73.96181,Private room,150,1,0,,1,364 +4846,634096,Brooklyn,Williamsburg,40.716440000000006,-73.95876,Entire home/apt,250,1,0,,1,0 +4847,17389236,Manhattan,Harlem,40.80493,-73.95676999999999,Entire home/apt,215,1,107,1.8,1,47 +4848,17130308,Brooklyn,Williamsburg,40.721540000000005,-73.95449,Entire home/apt,200,5,7,0.12,1,0 +4849,666862,Brooklyn,Clinton Hill,40.68266,-73.96743000000001,Entire home/apt,100,2,45,0.98,1,0 +4850,2533026,Brooklyn,Williamsburg,40.71204,-73.95628,Entire home/apt,200,30,0,,1,0 +4851,178551,Manhattan,Harlem,40.81525,-73.95279000000001,Entire home/apt,200,6,0,,1,0 +4852,9604972,Manhattan,Lower East Side,40.7212,-73.98893000000001,Entire home/apt,110,1,1,0.02,1,0 +4853,17430718,Manhattan,Harlem,40.81511,-73.94315,Entire home/apt,115,3,64,1.05,2,211 +4854,5220670,Manhattan,East Harlem,40.80278,-73.94001,Private room,75,1,3,0.05,1,0 +4855,17159358,Manhattan,West Village,40.734759999999994,-74.001,Entire home/apt,289,1,7,0.12,1,0 +4856,10698270,Manhattan,Upper East Side,40.76717,-73.95532,Private room,95,1,202,3.31,2,263 +4857,1384256,Manhattan,Lower East Side,40.71812,-73.98619000000001,Entire home/apt,197,1,285,4.83,1,8 +4858,17456385,Manhattan,Hell's Kitchen,40.76753,-73.98397,Entire home/apt,150,1,0,,1,0 +4859,17457445,Queens,Ridgewood,40.70706,-73.91436999999999,Entire home/apt,225,7,0,,1,0 +4860,12220316,Brooklyn,Fort Greene,40.6857,-73.97088000000001,Entire home/apt,375,3,6,0.1,1,252 +4861,4060346,Staten Island,Eltingville,40.54268,-74.16254,Private room,56,1,145,2.38,1,258 +4862,1535732,Manhattan,Upper West Side,40.78478,-73.97668,Entire home/apt,225,15,15,0.45,1,266 +4863,17475146,Manhattan,East Harlem,40.80409,-73.93988,Entire home/apt,70,7,1,0.02,1,0 +4864,17477908,Manhattan,Upper West Side,40.79098,-73.96745,Entire home/apt,264,30,6,0.1,10,281 +4865,17477908,Manhattan,Upper West Side,40.792190000000005,-73.96862,Entire home/apt,199,30,11,0.19,10,365 +4866,17051201,Brooklyn,Park Slope,40.6705,-73.97954,Entire home/apt,149,2,19,0.33,3,28 +4867,1499484,Brooklyn,Red Hook,40.678509999999996,-74.01590999999999,Entire home/apt,142,1,169,2.8,2,306 +4868,17479416,Manhattan,East Harlem,40.80422,-73.93841,Entire home/apt,299,4,58,0.97,2,324 +4869,16718001,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95013,Entire home/apt,50,3,15,0.25,1,0 +4870,12949460,Brooklyn,Park Slope,40.67926,-73.97711,Entire home/apt,160,1,488,8.14,1,269 +4871,5810978,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95666,Entire home/apt,127,4,142,2.34,1,2 +4872,4374828,Brooklyn,Clinton Hill,40.68407,-73.96715,Entire home/apt,110,3,39,0.85,1,0 +4873,6230230,Manhattan,Lower East Side,40.71922,-73.98472,Private room,69,2,36,0.6,3,5 +4874,17299359,Brooklyn,Bedford-Stuyvesant,40.68448,-73.95854,Entire home/apt,175,3,4,0.07,2,365 +4875,3395227,Manhattan,East Village,40.72402,-73.98770999999999,Entire home/apt,179,5,72,1.18,1,0 +4876,17527788,Brooklyn,Bushwick,40.69642,-73.93361,Entire home/apt,144,1,51,0.84,2,85 +4877,4320908,Manhattan,Nolita,40.72044,-73.99645,Entire home/apt,175,7,0,,1,0 +4878,6707119,Manhattan,Harlem,40.8079,-73.94887,Entire home/apt,150,1,1,0.02,1,0 +4879,3841446,Brooklyn,Williamsburg,40.710229999999996,-73.95688,Entire home/apt,109,2,214,4.58,1,127 +4880,2553182,Manhattan,Upper East Side,40.77097,-73.94848,Entire home/apt,350,1,0,,1,0 +4881,17208512,Brooklyn,Bay Ridge,40.63195,-74.0214,Entire home/apt,75,3,4,0.08,1,0 +4882,17568735,Manhattan,Harlem,40.82639,-73.94185999999999,Entire home/apt,135,3,3,0.05,1,0 +4883,3250450,Queens,Maspeth,40.74064,-73.89956,Private room,39,30,0,,18,352 +4884,3250450,Queens,Astoria,40.771,-73.92563,Private room,38,30,8,0.14,18,358 +4885,15697051,Brooklyn,Bedford-Stuyvesant,40.68885,-73.92354,Entire home/apt,195,2,231,3.82,1,251 +4886,17266994,Manhattan,Morningside Heights,40.8081,-73.95647,Entire home/apt,146,3,91,1.52,2,223 +4887,17592620,Brooklyn,Williamsburg,40.71788,-73.96021,Entire home/apt,318,5,19,0.32,1,268 +4888,721833,Manhattan,Kips Bay,40.74593,-73.97915,Entire home/apt,184,3,0,,1,0 +4889,17601262,Brooklyn,Williamsburg,40.7139,-73.9353,Entire home/apt,140,2,133,2.52,2,283 +4890,16677326,Manhattan,Chelsea,40.74977,-73.99647,Private room,85,1,145,3.48,12,342 +4891,17604079,Manhattan,Harlem,40.80724,-73.94739,Entire home/apt,170,1,1,0.02,1,0 +4892,17618198,Queens,Ditmars Steinway,40.77902,-73.90768,Private room,100,2,2,0.03,1,365 +4893,6145540,Manhattan,Nolita,40.7208,-73.99436,Entire home/apt,350,4,8,0.13,1,196 +4894,10034987,Manhattan,Upper West Side,40.78273,-73.97319,Entire home/apt,199,3,25,0.42,1,0 +4895,380728,Brooklyn,Williamsburg,40.71119,-73.96703000000001,Private room,77,6,17,0.29,1,188 +4896,11308483,Manhattan,Kips Bay,40.73877,-73.98170999999999,Private room,80,1,2,0.03,1,0 +4897,17658078,Bronx,Mott Haven,40.81049,-73.9043,Private room,79,2,11,0.19,1,0 +4898,17671787,Brooklyn,Bushwick,40.69601,-73.92236,Private room,550,3,5,0.1,1,358 +4899,130216,Brooklyn,Brooklyn Heights,40.69088,-73.99416,Entire home/apt,155,5,7,0.12,1,17 +4900,17681072,Manhattan,Greenwich Village,40.733309999999996,-73.9941,Entire home/apt,275,30,12,0.2,1,358 +4901,17347754,Brooklyn,Williamsburg,40.711870000000005,-73.93593,Entire home/apt,119,2,10,0.18,1,0 +4902,17682043,Brooklyn,Greenpoint,40.73689,-73.95488,Entire home/apt,85,20,5,0.09,1,0 +4903,17682312,Manhattan,Harlem,40.82947,-73.95104,Private room,84,1,0,,1,0 +4904,17616305,Manhattan,Harlem,40.827740000000006,-73.9508,Private room,90,2,127,2.15,1,58 +4905,617127,Brooklyn,Crown Heights,40.676190000000005,-73.94389,Entire home/apt,135,5,53,0.9,1,191 +4906,4904811,Brooklyn,Williamsburg,40.70848,-73.95323,Private room,90,3,230,3.79,1,125 +4907,6153186,Brooklyn,Williamsburg,40.71784,-73.95521,Entire home/apt,150,1,5,0.08,1,0 +4908,4847926,Brooklyn,Flatbush,40.64246,-73.95443,Private room,38,3,76,1.3,3,253 +4909,1475015,Manhattan,Kips Bay,40.743179999999995,-73.97858000000001,Entire home/apt,87,30,4,0.07,52,343 +4910,17711637,Brooklyn,Kensington,40.6451,-73.97798,Entire home/apt,210,5,3,0.05,1,0 +4911,5407403,Manhattan,Inwood,40.86176,-73.93082,Private room,80,2,50,0.83,1,6 +4912,17719747,Brooklyn,Fort Greene,40.68902,-73.96976,Entire home/apt,250,3,20,0.39,1,323 +4913,17730490,Manhattan,Chelsea,40.74252,-73.9975,Entire home/apt,175,1,18,0.31,1,0 +4914,922478,Brooklyn,Clinton Hill,40.6825,-73.95888000000001,Private room,65,1,52,0.87,2,82 +4915,17737666,Manhattan,East Village,40.731359999999995,-73.98714,Entire home/apt,140,1,48,0.81,1,0 +4916,17739111,Manhattan,Harlem,40.80297,-73.95132,Entire home/apt,129,4,17,0.28,1,64 +4917,515946,Manhattan,East Village,40.73041,-73.9896,Entire home/apt,159,4,45,0.75,1,87 +4918,10628463,Queens,Fresh Meadows,40.750370000000004,-73.79154,Private room,125,7,0,,1,365 +4919,4254072,Manhattan,West Village,40.73022,-74.00421,Entire home/apt,249,3,44,0.74,1,332 +4920,14902860,Brooklyn,Bedford-Stuyvesant,40.68388,-73.94426999999999,Entire home/apt,151,5,52,0.91,5,333 +4921,6491377,Brooklyn,Bedford-Stuyvesant,40.69334,-73.94608000000001,Private room,79,4,70,1.19,1,308 +4922,9952523,Brooklyn,Crown Heights,40.66919,-73.95079,Entire home/apt,125,3,10,0.22,1,0 +4923,228012,Manhattan,Harlem,40.81792,-73.94236,Entire home/apt,135,5,76,1.28,1,257 +4924,7665324,Manhattan,Lower East Side,40.72274,-73.99169,Entire home/apt,151,2,5,0.1,2,46 +4925,17773625,Manhattan,Tribeca,40.72113,-74.00478000000001,Entire home/apt,600,3,73,1.23,1,282 +4926,12291588,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92975,Entire home/apt,59,1,142,2.63,1,318 +4927,1457351,Manhattan,Lower East Side,40.72007,-73.99078,Entire home/apt,273,4,85,1.41,1,91 +4928,12337318,Manhattan,Harlem,40.82435,-73.94507,Private room,70,2,28,0.82,2,80 +4929,17781037,Manhattan,Harlem,40.82447,-73.95076,Private room,95,1,2,0.03,1,0 +4930,254846,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9256,Entire home/apt,399,3,49,0.96,4,269 +4931,9510645,Brooklyn,Bushwick,40.703990000000005,-73.92813000000001,Private room,96,1,332,5.57,2,355 +4932,6828085,Manhattan,West Village,40.73622,-74.00147,Shared room,110,1,47,0.81,1,362 +4933,17791294,Manhattan,Hell's Kitchen,40.76878,-73.98719,Private room,110,1,0,,1,0 +4934,17791467,Manhattan,Harlem,40.82233,-73.93779,Private room,69,2,249,4.12,2,132 +4935,7157099,Brooklyn,Prospect-Lefferts Gardens,40.65732,-73.95991,Private room,85,2,67,1.56,3,264 +4936,13337141,Manhattan,Lower East Side,40.71867,-73.98612,Entire home/apt,150,2,121,2.02,1,0 +4937,506909,Manhattan,Kips Bay,40.73788,-73.98048,Entire home/apt,170,1,9,0.15,1,0 +4938,16583238,Manhattan,Lower East Side,40.72165,-73.98759,Entire home/apt,125,5,12,0.2,1,0 +4939,17820079,Manhattan,East Village,40.726729999999996,-73.98004,Private room,130,1,191,3.17,1,0 +4940,17820464,Manhattan,East Village,40.724540000000005,-73.97836,Entire home/apt,145,1,358,5.96,1,3 +4941,747031,Brooklyn,Williamsburg,40.714659999999995,-73.96429,Entire home/apt,500,1,138,2.34,1,282 +4942,3912009,Manhattan,Harlem,40.82193,-73.94499,Private room,95,3,160,2.78,2,0 +4943,17842194,Brooklyn,Crown Heights,40.67893,-73.96262,Entire home/apt,150,4,9,0.15,2,0 +4944,17845064,Queens,Forest Hills,40.733340000000005,-73.85433,Entire home/apt,150,1,0,,1,364 +4945,17224426,Brooklyn,Bedford-Stuyvesant,40.68643,-73.92208000000001,Private room,56,2,180,3.04,1,0 +4946,7879349,Brooklyn,Greenpoint,40.72472,-73.94135,Private room,60,1,1,0.02,1,0 +4947,7458731,Brooklyn,East Flatbush,40.661229999999996,-73.93428,Entire home/apt,85,3,37,0.62,1,310 +4948,7250241,Manhattan,Lower East Side,40.71306,-73.98855999999999,Private room,80,5,3,0.05,1,0 +4949,6212988,Manhattan,West Village,40.733259999999994,-74.00604,Private room,100,3,16,0.26,1,0 +4950,17866326,Brooklyn,Bushwick,40.70228,-73.92824,Private room,54,3,2,0.05,2,0 +4951,3563304,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95693,Entire home/apt,113,4,38,0.63,1,191 +4952,6309019,Brooklyn,Williamsburg,40.71474,-73.95662,Entire home/apt,200,2,175,2.93,1,303 +4953,16974369,Manhattan,Harlem,40.81813,-73.9398,Private room,75,5,5,0.1,1,0 +4954,17874864,Manhattan,Harlem,40.8214,-73.95675,Shared room,200,1,31,0.53,1,365 +4955,1439449,Brooklyn,South Slope,40.66308,-73.98309,Entire home/apt,110,30,4,0.07,1,220 +4956,319077,Brooklyn,Clinton Hill,40.68761,-73.96096,Entire home/apt,500,3,19,0.36,4,365 +4957,17885257,Manhattan,Midtown,40.75503,-73.96710999999999,Entire home/apt,180,1,0,,1,0 +4958,15735446,Brooklyn,Williamsburg,40.71707,-73.94708,Entire home/apt,200,1,14,0.24,1,336 +4959,2879920,Manhattan,Upper East Side,40.76189,-73.96298,Private room,69,60,9,0.16,2,90 +4960,17891677,Manhattan,West Village,40.73496,-74.00005,Entire home/apt,200,5,64,1.09,1,329 +4961,7157099,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95971999999999,Entire home/apt,140,5,7,0.15,3,14 +4962,2120259,Brooklyn,Crown Heights,40.66518,-73.95109000000001,Private room,45,4,37,0.64,4,281 +4963,6504434,Brooklyn,Sunset Park,40.64993,-74.00191,Private room,35,7,0,,1,0 +4964,3902832,Brooklyn,Greenpoint,40.7322,-73.95881999999999,Private room,80,3,0,,1,0 +4965,636319,Brooklyn,South Slope,40.66252,-73.98433,Entire home/apt,150,2,0,,1,0 +4966,7245581,Manhattan,Washington Heights,40.83365,-73.94059,Entire home/apt,70,180,7,0.12,19,308 +4967,17906693,Manhattan,Hell's Kitchen,40.76553,-73.9953,Private room,200,2,62,1.06,1,304 +4968,17920050,Manhattan,Midtown,40.765240000000006,-73.98018,Entire home/apt,308,2,9,0.15,1,0 +4969,17920926,Manhattan,Nolita,40.71987,-73.9947,Entire home/apt,270,5,8,0.21,1,0 +4970,2401823,Brooklyn,Clinton Hill,40.68695,-73.9631,Entire home/apt,150,3,0,,1,0 +4971,8924899,Manhattan,East Village,40.728320000000004,-73.9852,Entire home/apt,365,2,62,1.02,1,28 +4972,6911276,Brooklyn,Clinton Hill,40.6818,-73.96238000000001,Private room,99,1,83,1.39,1,248 +4973,17953139,Manhattan,Lower East Side,40.7211,-73.98397,Entire home/apt,175,7,9,0.27,1,255 +4974,298914,Manhattan,Gramercy,40.737109999999994,-73.98985,Entire home/apt,220,4,60,1.01,1,4 +4975,7499240,Manhattan,Washington Heights,40.8362,-73.94033,Private room,80,1,3,0.05,2,314 +4976,1673750,Brooklyn,Park Slope,40.66617,-73.97593,Entire home/apt,230,2,7,0.15,1,0 +4977,7438973,Manhattan,Harlem,40.814640000000004,-73.95351,Private room,60,30,2,0.19,1,183 +4978,1239959,Manhattan,Greenwich Village,40.72802,-73.99644,Private room,120,14,1,0.03,1,0 +4979,18007776,Brooklyn,Prospect-Lefferts Gardens,40.65698,-73.95761,Private room,45,14,8,0.81,4,31 +4980,18008945,Manhattan,East Harlem,40.79805,-73.94533,Entire home/apt,100,4,50,0.83,1,12 +4981,17891224,Manhattan,Harlem,40.80612,-73.95678000000001,Entire home/apt,138,4,0,,1,0 +4982,18032197,Brooklyn,Sunset Park,40.662729999999996,-73.99110999999999,Entire home/apt,100,4,25,1.11,1,0 +4983,18038832,Manhattan,Chelsea,40.74767,-73.99393,Entire home/apt,230,1,29,0.49,1,0 +4984,18041691,Manhattan,Harlem,40.804109999999994,-73.95624000000001,Entire home/apt,225,1,5,0.09,1,0 +4985,3771272,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95031,Entire home/apt,120,2,60,1.0,1,156 +4986,3609048,Brooklyn,Crown Heights,40.67089,-73.93323000000001,Private room,99,2,8,0.17,3,365 +4987,18051675,Manhattan,Washington Heights,40.85153,-73.93815,Entire home/apt,150,3,0,,1,0 +4988,18018059,Brooklyn,Bushwick,40.68258,-73.90472,Entire home/apt,122,1,157,2.64,1,235 +4989,11495235,Brooklyn,Bushwick,40.702040000000004,-73.92109,Entire home/apt,150,1,2,0.03,1,0 +4990,17943391,Manhattan,Harlem,40.809,-73.94263000000001,Entire home/apt,140,2,292,4.95,2,186 +4991,3588028,Manhattan,Lower East Side,40.721579999999996,-73.98998,Entire home/apt,150,3,18,0.3,1,0 +4992,14898658,Brooklyn,Windsor Terrace,40.65015,-73.97945,Private room,38,30,77,1.28,11,309 +4993,8483704,Manhattan,West Village,40.73002,-74.00653,Entire home/apt,200,7,16,1.09,1,50 +4994,6310115,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95512,Private room,50,1,12,0.31,1,0 +4995,5164854,Manhattan,Harlem,40.82071,-73.93813,Private room,45,6,13,0.23,8,346 +4996,18105672,Brooklyn,Williamsburg,40.716590000000004,-73.9458,Private room,90,30,1,0.02,1,0 +4997,6150064,Queens,Astoria,40.76972,-73.9206,Private room,85,2,2,0.04,1,0 +4998,18115202,Manhattan,East Village,40.7296,-73.99054,Private room,85,1,0,,1,0 +4999,18108212,Queens,St. Albans,40.69283,-73.75828,Entire home/apt,108,2,81,1.35,1,328 +5000,18115545,Brooklyn,Prospect Heights,40.6751,-73.96558,Entire home/apt,129,3,15,0.25,1,204 +5001,7076239,Brooklyn,Fort Greene,40.68744,-73.9747,Entire home/apt,275,2,180,2.99,2,290 +5002,12485770,Manhattan,Midtown,40.74596,-73.98411,Entire home/apt,148,30,9,0.15,9,329 +5003,4367602,Manhattan,Gramercy,40.73389,-73.98724,Entire home/apt,250,31,0,,1,365 +5004,18142696,Manhattan,East Village,40.72974,-73.98371999999999,Entire home/apt,160,2,5,0.08,1,0 +5005,16834792,Brooklyn,Crown Heights,40.66529,-73.9557,Entire home/apt,130,5,150,2.48,2,309 +5006,18146661,Brooklyn,Park Slope,40.66884,-73.97575,Private room,180,3,192,3.2,1,60 +5007,18147523,Manhattan,Washington Heights,40.84943,-73.93146,Private room,50,1,14,0.23,1,0 +5008,18150845,Manhattan,Washington Heights,40.83473,-73.93982,Private room,145,6,61,1.17,1,257 +5009,18151946,Manhattan,Chinatown,40.71445,-73.99287,Private room,94,7,17,0.28,1,0 +5010,17898189,Manhattan,Upper East Side,40.77487,-73.949,Entire home/apt,180,2,24,0.41,1,0 +5011,146825,Manhattan,Nolita,40.72061,-73.99472,Private room,80,6,3,0.07,1,0 +5012,18156556,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91856,Entire home/apt,97,3,15,0.25,1,0 +5013,11430190,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94082,Entire home/apt,90,2,51,0.86,1,179 +5014,14157138,Brooklyn,Brownsville,40.66748,-73.92554,Entire home/apt,70,2,56,0.94,1,1 +5015,16809056,Queens,Astoria,40.75997,-73.90926,Entire home/apt,120,3,29,0.55,1,0 +5016,17958831,Manhattan,Kips Bay,40.74173,-73.97906,Entire home/apt,120,3,116,1.95,1,261 +5017,18170442,Manhattan,Financial District,40.7055,-74.00865999999999,Entire home/apt,165,1,0,,1,0 +5018,1921498,Manhattan,Washington Heights,40.844640000000005,-73.9355,Private room,59,9,26,0.44,3,109 +5019,18183144,Brooklyn,Flatbush,40.64802,-73.97095,Private room,91,3,33,0.65,1,90 +5020,18189519,Queens,Bay Terrace,40.77995,-73.78506,Entire home/apt,184,3,146,2.46,1,143 +5021,18198406,Brooklyn,Bedford-Stuyvesant,40.692,-73.93852,Private room,45,1,13,0.26,1,0 +5022,8410380,Manhattan,Gramercy,40.73755,-73.98595,Private room,150,4,147,2.44,1,344 +5023,11976676,Manhattan,Harlem,40.80465,-73.95365,Entire home/apt,139,3,24,0.49,1,0 +5024,17450462,Manhattan,Harlem,40.82544,-73.9402,Private room,65,7,45,0.92,1,290 +5025,2033003,Manhattan,East Village,40.729659999999996,-73.98515,Private room,65,2,13,0.28,2,157 +5026,461269,Brooklyn,Prospect Heights,40.67426,-73.96585999999999,Private room,150,2,13,0.26,1,0 +5027,18212957,Queens,Astoria,40.7638,-73.91622,Entire home/apt,115,2,5,0.08,1,0 +5028,4421323,Manhattan,Financial District,40.70883,-74.01266,Entire home/apt,299,7,6,0.19,1,0 +5029,18219988,Brooklyn,Flatbush,40.63981,-73.95711999999999,Entire home/apt,80,2,103,1.7,1,0 +5030,2383619,Brooklyn,Carroll Gardens,40.68184,-73.99308,Private room,80,21,88,1.5,1,364 +5031,16669342,Brooklyn,Clinton Hill,40.69741,-73.96942,Entire home/apt,100,1,0,,1,0 +5032,18225315,Manhattan,Chelsea,40.740159999999996,-74.00049,Private room,135,1,14,0.27,1,0 +5033,6643482,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.96046,Private room,80,2,122,2.07,1,227 +5034,17619450,Brooklyn,Flatbush,40.636309999999995,-73.95313,Private room,69,1,4,0.09,1,0 +5035,18212433,Manhattan,East Harlem,40.7946,-73.94105,Private room,75,30,2,0.04,8,352 +5036,14273136,Brooklyn,Park Slope,40.66981,-73.98461999999999,Entire home/apt,94,10,26,0.52,1,0 +5037,18254730,Brooklyn,South Slope,40.66748,-73.98971,Entire home/apt,192,4,6,0.14,1,8 +5038,18212433,Manhattan,East Harlem,40.79319,-73.94209000000001,Private room,50,21,3,0.3,8,350 +5039,18212433,Manhattan,East Harlem,40.7942,-73.94136,Private room,58,21,2,0.04,8,331 +5040,4666670,Queens,Long Island City,40.76481,-73.93163,Entire home/apt,120,6,25,0.42,4,346 +5041,6472334,Brooklyn,Williamsburg,40.71286,-73.96244,Private room,69,2,11,0.18,2,0 +5042,2574452,Queens,Jackson Heights,40.75193,-73.89085,Private room,50,4,2,0.03,1,0 +5043,18260128,Manhattan,Harlem,40.822790000000005,-73.94946999999999,Entire home/apt,125,3,8,0.13,1,0 +5044,18260299,Brooklyn,Bushwick,40.692170000000004,-73.90768,Private room,50,30,14,0.23,6,88 +5045,18264329,Brooklyn,Sunset Park,40.64894,-74.00621,Private room,85,3,47,0.81,1,299 +5046,11674837,Queens,Ridgewood,40.70554,-73.90729,Private room,59,1,173,2.87,3,352 +5047,13347167,Manhattan,Upper East Side,40.77274,-73.95732,Entire home/apt,130,30,3,0.08,29,308 +5048,3038687,Manhattan,Lower East Side,40.717490000000005,-73.99016,Entire home/apt,104,30,11,0.19,8,80 +5049,12306481,Queens,Sunnyside,40.74365,-73.91632,Entire home/apt,95,30,8,0.16,3,332 +5050,18212433,Manhattan,Hell's Kitchen,40.76385,-73.9905,Entire home/apt,199,5,40,0.68,8,43 +5051,5652395,Bronx,Concourse,40.81954,-73.92715,Private room,105,1,3,0.14,2,365 +5052,3562322,Brooklyn,Bedford-Stuyvesant,40.685990000000004,-73.95182,Private room,34,6,81,1.35,3,92 +5053,14905237,Brooklyn,Flatbush,40.64372,-73.95969000000001,Entire home/apt,120,3,12,0.22,1,0 +5054,1279211,Bronx,Concourse Village,40.826029999999996,-73.92312,Entire home/apt,87,6,11,0.28,1,0 +5055,3552711,Queens,Queens Village,40.7229,-73.7462,Entire home/apt,125,1,30,0.5,2,158 +5056,10262649,Brooklyn,Bushwick,40.68779,-73.90521,Entire home/apt,170,2,41,0.69,2,0 +5057,18287550,Manhattan,Upper East Side,40.772420000000004,-73.96212,Entire home/apt,250,7,3,0.06,1,0 +5058,18289867,Manhattan,East Harlem,40.79032,-73.94523000000001,Private room,55,1,3,0.05,1,0 +5059,18297103,Queens,Sunnyside,40.74269,-73.91518,Private room,80,1,57,0.97,1,253 +5060,12306481,Queens,Sunnyside,40.74493,-73.91528000000001,Entire home/apt,95,30,10,0.28,3,332 +5061,3325418,Manhattan,Morningside Heights,40.803090000000005,-73.96367,Private room,150,1,13,1.27,3,273 +5062,740032,Brooklyn,Windsor Terrace,40.65413,-73.97684,Entire home/apt,140,5,28,0.6,1,192 +5063,3096525,Brooklyn,Bedford-Stuyvesant,40.67927,-73.93208,Entire home/apt,150,3,117,1.96,1,242 +5064,6050632,Manhattan,Lower East Side,40.721379999999996,-73.98371,Entire home/apt,159,3,1,0.02,1,0 +5065,7245581,Manhattan,Chelsea,40.74994,-73.99611999999999,Entire home/apt,95,75,13,0.23,19,245 +5066,7503643,Brooklyn,Greenpoint,40.72705,-73.94033,Entire home/apt,159,30,3,0.08,52,365 +5067,18343265,Brooklyn,Bushwick,40.69942,-73.91209,Private room,65,4,18,0.3,1,0 +5068,17917168,Brooklyn,Sunset Park,40.650459999999995,-74.00402,Entire home/apt,100,1,26,2.52,1,0 +5069,3563235,Manhattan,East Village,40.72135,-73.98,Private room,85,5,12,0.2,1,0 +5070,534776,Brooklyn,Prospect Heights,40.6786,-73.96694000000001,Entire home/apt,175,2,25,0.43,1,2 +5071,18388112,Brooklyn,Carroll Gardens,40.68235,-73.99806,Entire home/apt,175,3,4,0.07,1,0 +5072,16916853,Brooklyn,Sheepshead Bay,40.58363,-73.93553,Entire home/apt,260,7,3,0.05,2,363 +5073,2052361,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.95815999999999,Entire home/apt,80,3,24,0.4,3,19 +5074,18397763,Brooklyn,Bedford-Stuyvesant,40.68635,-73.93245999999999,Private room,69,2,56,0.95,7,66 +5075,10263308,Brooklyn,Bedford-Stuyvesant,40.68949,-73.92784,Entire home/apt,100,3,36,0.6,1,89 +5076,5909599,Queens,Ditmars Steinway,40.775909999999996,-73.9145,Private room,85,1,31,0.51,2,84 +5077,14945045,Brooklyn,Bay Ridge,40.63777,-74.02497,Entire home/apt,95,3,2,0.03,1,0 +5078,2119276,Manhattan,Upper East Side,40.76043,-73.95992,Entire home/apt,160,30,15,0.25,39,333 +5079,946672,Brooklyn,Kensington,40.63402,-73.97556,Private room,49,2,6,0.1,1,0 +5080,17525930,Brooklyn,Williamsburg,40.71566,-73.941,Private room,65,1,35,0.88,1,0 +5081,2119276,Manhattan,Gramercy,40.73568,-73.98062,Entire home/apt,150,30,2,0.03,39,331 +5082,1475015,Manhattan,Hell's Kitchen,40.76073,-73.99215,Entire home/apt,115,30,3,0.06,52,342 +5083,681225,Queens,Rockaway Beach,40.5903,-73.8143,Private room,113,2,36,0.74,1,365 +5084,1475015,Manhattan,Hell's Kitchen,40.76882,-73.98699,Entire home/apt,110,30,10,0.18,52,323 +5085,7920086,Manhattan,East Harlem,40.78698,-73.944,Private room,75,11,14,0.23,3,0 +5086,15784,Manhattan,Midtown,40.7509,-73.96963000000001,Entire home/apt,250,5,2,0.04,1,0 +5087,18492106,Bronx,Wakefield,40.88855,-73.85127,Private room,50,7,12,0.55,1,0 +5088,18495460,Brooklyn,Crown Heights,40.6737,-73.95335,Entire home/apt,81,30,99,1.67,3,318 +5089,12327430,Manhattan,Hell's Kitchen,40.76625,-73.99387,Private room,69,3,168,2.88,2,129 +5090,8182126,Brooklyn,Greenpoint,40.71952,-73.94844,Private room,125,5,1,0.03,2,0 +5091,3344830,Brooklyn,Williamsburg,40.71202,-73.96665,Private room,65,5,2,0.03,1,0 +5092,18556644,Manhattan,East Village,40.73312,-73.99096999999999,Entire home/apt,150,62,0,,1,358 +5093,16098958,Manhattan,Upper East Side,40.77448,-73.96101999999999,Entire home/apt,175,30,2,0.06,96,281 +5094,18565670,Brooklyn,Midwood,40.62401,-73.95775,Private room,49,2,26,0.54,1,362 +5095,8200795,Manhattan,Nolita,40.72168,-73.99544,Entire home/apt,191,3,51,0.88,1,55 +5096,14041891,Manhattan,Flatiron District,40.7411,-73.98455,Entire home/apt,200,4,0,,1,0 +5097,18567895,Manhattan,Hell's Kitchen,40.76522,-73.99486,Entire home/apt,250,2,6,0.11,1,0 +5098,710916,Brooklyn,Crown Heights,40.67541,-73.94408,Entire home/apt,216,1,233,3.89,1,295 +5099,18570567,Brooklyn,Bedford-Stuyvesant,40.68412,-73.95039,Entire home/apt,200,3,0,,1,0 +5100,18272570,Brooklyn,Williamsburg,40.70917,-73.94918,Private room,119,2,43,0.72,1,0 +5101,13347167,Manhattan,Upper East Side,40.772220000000004,-73.95604,Entire home/apt,118,30,4,0.08,29,341 +5102,6913016,Manhattan,Midtown,40.749109999999995,-73.98201999999999,Private room,95,3,67,1.65,1,355 +5103,5872286,Brooklyn,Greenpoint,40.73526,-73.95375,Entire home/apt,110,3,34,0.57,1,12 +5104,17544112,Brooklyn,Bay Ridge,40.62356,-74.024,Entire home/apt,170,4,137,2.55,1,302 +5105,18594426,Manhattan,Upper East Side,40.7729,-73.95276,Entire home/apt,99,3,9,0.15,1,0 +5106,16437254,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.95819,Entire home/apt,172,30,9,0.16,21,342 +5107,6966831,Queens,Sunnyside,40.74532,-73.91974,Private room,75,2,3,0.06,1,0 +5108,4578923,Brooklyn,Bedford-Stuyvesant,40.69437,-73.95841,Private room,50,5,18,0.79,1,0 +5109,2702080,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94714,Private room,77,2,145,2.42,1,365 +5110,2076525,Brooklyn,Navy Yard,40.69839,-73.97666,Entire home/apt,125,14,15,0.41,1,32 +5111,18681479,Queens,Sunnyside,40.741890000000005,-73.92375,Private room,75,2,111,1.89,1,348 +5112,9553177,Manhattan,Harlem,40.80677,-73.94977,Entire home/apt,350,2,13,0.35,1,0 +5113,2120259,Brooklyn,Crown Heights,40.66709,-73.9514,Private room,55,4,27,0.46,4,261 +5114,18693665,Brooklyn,Bedford-Stuyvesant,40.68138,-73.95018,Entire home/apt,99,2,216,3.61,1,321 +5115,17051201,Brooklyn,Park Slope,40.671640000000004,-73.97761,Entire home/apt,545,2,6,0.12,3,227 +5116,7474069,Manhattan,Washington Heights,40.84686,-73.94181,Private room,70,2,277,4.67,3,244 +5117,378737,Brooklyn,Bedford-Stuyvesant,40.68908,-73.92893000000001,Private room,250,2,0,,1,365 +5118,18726889,Brooklyn,Bushwick,40.68781,-73.91377,Entire home/apt,150,4,2,0.03,1,0 +5119,2955491,Brooklyn,Bushwick,40.69753,-73.93619,Private room,55,2,20,0.41,1,19 +5120,18030682,Brooklyn,Crown Heights,40.67472,-73.94736999999999,Entire home/apt,100,7,46,0.87,1,0 +5121,15817252,Brooklyn,Clinton Hill,40.69494,-73.96888,Entire home/apt,100,5,7,0.12,1,0 +5122,2640773,Brooklyn,Bedford-Stuyvesant,40.68822,-73.94357,Entire home/apt,95,2,116,2.18,1,226 +5123,16098958,Manhattan,Gramercy,40.73632,-73.98475,Entire home/apt,175,30,0,,96,312 +5124,18690148,Manhattan,Upper West Side,40.77905,-73.97939000000001,Entire home/apt,200,4,22,0.45,1,2 +5125,5771331,Manhattan,Greenwich Village,40.72858,-73.99951,Entire home/apt,190,1,20,0.33,1,0 +5126,4765290,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95333000000001,Private room,65,2,3,0.06,1,0 +5127,2461535,Brooklyn,Fort Greene,40.68927,-73.96956999999999,Entire home/apt,400,2,120,2.05,1,300 +5128,11371357,Brooklyn,Kensington,40.646440000000005,-73.9756,Entire home/apt,95,1,10,0.21,1,0 +5129,2267864,Manhattan,West Village,40.734190000000005,-74.00213000000001,Entire home/apt,197,2,207,3.46,2,166 +5130,2673332,Brooklyn,Kensington,40.64295,-73.97632,Entire home/apt,395,3,20,0.34,1,9 +5131,17696653,Brooklyn,Bedford-Stuyvesant,40.691340000000004,-73.94468,Private room,100,1,2,0.04,1,365 +5132,1010344,Brooklyn,Bedford-Stuyvesant,40.68592,-73.95501999999999,Entire home/apt,200,3,6,0.1,1,0 +5133,18646528,Brooklyn,Williamsburg,40.71385,-73.94156,Entire home/apt,165,3,6,0.1,1,0 +5134,1176165,Brooklyn,Carroll Gardens,40.684309999999996,-73.99781999999999,Entire home/apt,145,5,4,0.07,1,0 +5135,807340,Brooklyn,Brownsville,40.66827,-73.92509,Entire home/apt,75,1,135,2.27,1,174 +5136,18138735,Manhattan,Gramercy,40.73343,-73.98634,Entire home/apt,180,3,72,1.22,1,25 +5137,18836774,Manhattan,Upper East Side,40.775420000000004,-73.95437,Private room,73,4,48,0.8,5,153 +5138,18836774,Manhattan,Upper East Side,40.77579,-73.9557,Private room,87,3,61,1.01,5,132 +5139,18836774,Manhattan,Upper East Side,40.77688,-73.95616,Private room,74,3,60,1.0,5,169 +5140,5465947,Brooklyn,Prospect Heights,40.67948,-73.97219,Private room,65,1,6,0.12,1,0 +5141,7644834,Manhattan,Greenwich Village,40.7284,-73.99812,Entire home/apt,199,8,48,1.06,1,37 +5142,18866837,Brooklyn,Park Slope,40.679159999999996,-73.97454,Private room,65,60,2,0.03,1,0 +5143,3146957,Manhattan,Upper West Side,40.77918,-73.9874,Entire home/apt,160,7,5,0.09,1,0 +5144,10972334,Brooklyn,Bushwick,40.69825,-73.92788,Private room,175,1,6,0.1,2,0 +5145,18876264,Manhattan,Upper West Side,40.77817,-73.97844,Entire home/apt,200,1,0,,1,0 +5146,2119276,Manhattan,East Village,40.73268,-73.98689,Entire home/apt,195,30,7,0.14,39,331 +5147,6932160,Brooklyn,Crown Heights,40.66935,-73.9485,Private room,99,5,27,0.7,1,365 +5148,188896,Brooklyn,Clinton Hill,40.69034,-73.96675,Entire home/apt,175,1,121,2.03,2,171 +5149,10856201,Manhattan,Hell's Kitchen,40.76027,-73.99081,Entire home/apt,190,1,0,,1,0 +5150,7420906,Brooklyn,Bedford-Stuyvesant,40.68473,-73.95697,Entire home/apt,99,3,10,0.28,1,66 +5151,1788746,Manhattan,Nolita,40.7216,-73.99558,Private room,100,2,6,0.16,1,0 +5152,18929364,Brooklyn,Prospect-Lefferts Gardens,40.66271,-73.95392,Entire home/apt,199,2,18,0.3,1,0 +5153,318729,Brooklyn,Bedford-Stuyvesant,40.67862,-73.94686999999999,Entire home/apt,199,3,118,2.12,1,23 +5154,15789646,Queens,Sunnyside,40.745020000000004,-73.9169,Entire home/apt,100,3,70,1.21,2,319 +5155,3007815,Queens,Astoria,40.76977,-73.91596,Shared room,45,2,38,1.6,2,38 +5156,9784206,Manhattan,East Harlem,40.79508,-73.94895,Private room,72,1,204,3.41,1,219 +5157,13042411,Manhattan,East Village,40.726690000000005,-73.98419,Entire home/apt,129,2,179,2.99,1,179 +5158,18970667,Brooklyn,Bedford-Stuyvesant,40.68205,-73.94239,Entire home/apt,100,3,168,2.81,1,317 +5159,18393872,Brooklyn,Bedford-Stuyvesant,40.69141,-73.95886,Entire home/apt,85,7,2,0.03,1,0 +5160,5573250,Brooklyn,Kensington,40.6413,-73.98233,Private room,70,1,2,0.03,1,0 +5161,18988423,Brooklyn,Williamsburg,40.70536,-73.94229,Entire home/apt,100,2,5,0.09,1,0 +5162,1363910,Brooklyn,Williamsburg,40.709140000000005,-73.95236,Entire home/apt,160,3,1,0.02,1,0 +5163,19011946,Manhattan,Upper East Side,40.77883,-73.95498,Entire home/apt,185,30,1,0.02,2,365 +5164,4830699,Brooklyn,Gowanus,40.6779,-73.98421,Entire home/apt,162,1,9,0.23,1,0 +5165,19044620,Queens,Forest Hills,40.73538,-73.85300000000001,Private room,80,1,2,0.03,1,0 +5166,19044783,Manhattan,Harlem,40.80257,-73.9548,Private room,200,1,0,,1,0 +5167,19046961,Brooklyn,Bedford-Stuyvesant,40.68905,-73.92685,Private room,45,5,8,0.31,1,247 +5168,7503643,Brooklyn,Greenpoint,40.72533,-73.94204,Entire home/apt,129,30,6,0.12,52,188 +5169,19067223,Brooklyn,Williamsburg,40.71795,-73.95804,Private room,55,1,1,0.02,1,0 +5170,19072805,Brooklyn,Bushwick,40.69865,-73.92971999999999,Private room,68,5,12,0.26,1,14 +5171,7598755,Brooklyn,Williamsburg,40.71985,-73.94422,Entire home/apt,120,2,1,0.02,1,0 +5172,5064699,Brooklyn,Bedford-Stuyvesant,40.68732,-73.94058000000001,Private room,55,2,41,1.09,2,0 +5173,19107278,Brooklyn,Bushwick,40.70033,-73.91197,Private room,50,5,0,,2,0 +5174,19107278,Brooklyn,Bushwick,40.7001,-73.91204,Private room,50,5,2,0.03,2,0 +5175,19111611,Brooklyn,Navy Yard,40.698170000000005,-73.9654,Entire home/apt,150,1,7,0.12,1,0 +5176,10675384,Brooklyn,Williamsburg,40.72037,-73.9596,Entire home/apt,140,30,21,0.38,1,252 +5177,17770287,Manhattan,Midtown,40.750679999999996,-73.98177,Entire home/apt,136,30,9,0.17,14,220 +5178,3586725,Manhattan,Nolita,40.72339,-73.99476999999999,Private room,92,5,0,,1,0 +5179,2523466,Manhattan,Hell's Kitchen,40.76215,-73.99036,Private room,125,3,133,2.25,1,9 +5180,14102923,Brooklyn,Flatbush,40.65136,-73.95974,Private room,48,5,0,,1,0 +5181,18836774,Manhattan,Upper East Side,40.77693,-73.95631999999999,Private room,82,3,56,0.94,5,138 +5182,10577253,Manhattan,Harlem,40.81217,-73.95303,Entire home/apt,150,1,3,0.05,1,0 +5183,19131844,Brooklyn,Bedford-Stuyvesant,40.68237,-73.94811,Entire home/apt,90,8,17,0.42,1,0 +5184,19133023,Brooklyn,Bedford-Stuyvesant,40.68667,-73.93897,Entire home/apt,117,5,105,1.77,1,6 +5185,18836774,Manhattan,Upper East Side,40.77707,-73.95652,Private room,71,3,55,1.03,5,156 +5186,9859391,Manhattan,Chelsea,40.74944,-73.99631,Entire home/apt,390,3,10,0.17,1,9 +5187,19143974,Staten Island,St. George,40.644079999999995,-74.07834,Private room,58,3,93,2.1,1,279 +5188,9535767,Queens,Woodside,40.74626,-73.9009,Private room,50,5,3,0.05,1,0 +5189,2203817,Brooklyn,Park Slope,40.67256,-73.97211999999999,Entire home/apt,150,5,10,0.17,1,0 +5190,15805343,Brooklyn,Williamsburg,40.718579999999996,-73.95711,Private room,150,1,9,0.19,1,0 +5191,522065,Manhattan,East Harlem,40.79416,-73.93984,Private room,80,7,47,0.8,2,121 +5192,10094431,Brooklyn,Williamsburg,40.716229999999996,-73.96415,Private room,115,1,78,1.31,1,8 +5193,19191737,Brooklyn,Windsor Terrace,40.65084,-73.97334000000001,Private room,70,10,0,,1,0 +5194,1475015,Manhattan,Upper East Side,40.77175,-73.95742,Entire home/apt,95,30,10,0.22,52,336 +5195,15270760,Brooklyn,Bedford-Stuyvesant,40.694109999999995,-73.93987,Private room,85,2,1,0.05,1,0 +5196,14961638,Brooklyn,Bedford-Stuyvesant,40.68772,-73.95484,Entire home/apt,180,3,72,1.31,1,291 +5197,9928037,Manhattan,Murray Hill,40.74735,-73.97671,Entire home/apt,149,3,8,0.17,1,0 +5198,19233588,Manhattan,Tribeca,40.717259999999996,-74.01134,Entire home/apt,200,7,16,0.34,1,0 +5199,17465563,Manhattan,Gramercy,40.73601,-73.98205,Private room,69,2,177,2.98,1,285 +5200,19240279,Manhattan,Morningside Heights,40.80645,-73.95804,Private room,85,5,25,0.44,1,198 +5201,19242857,Brooklyn,Crown Heights,40.67472,-73.93,Entire home/apt,117,1,82,1.39,1,280 +5202,18270150,Manhattan,West Village,40.73243,-74.00052,Entire home/apt,219,1,68,1.15,1,122 +5203,19250606,Queens,Astoria,40.75508,-73.91673,Entire home/apt,100,2,141,2.43,1,216 +5204,10491406,Brooklyn,Prospect Heights,40.67609,-73.96459,Entire home/apt,320,3,39,0.71,1,242 +5205,9864136,Manhattan,Kips Bay,40.742129999999996,-73.9801,Private room,95,30,54,0.91,26,335 +5206,12720552,Brooklyn,Bushwick,40.70322,-73.92913,Private room,110,1,16,0.32,5,345 +5207,19272788,Manhattan,Harlem,40.80581,-73.95374,Entire home/apt,105,24,2,0.04,1,60 +5208,3022504,Brooklyn,Williamsburg,40.7151,-73.95421999999999,Entire home/apt,134,4,46,0.89,1,32 +5209,5242693,Brooklyn,Flatbush,40.65441,-73.96257,Private room,45,10,9,0.26,1,90 +5210,5160726,Manhattan,Kips Bay,40.739670000000004,-73.98040999999999,Entire home/apt,200,13,3,0.05,1,166 +5211,5086937,Manhattan,Hell's Kitchen,40.76559,-73.99221,Private room,110,2,79,1.33,1,80 +5212,17479416,Manhattan,East Harlem,40.80592,-73.93653,Entire home/apt,150,3,72,1.23,2,283 +5213,16351647,Brooklyn,Bushwick,40.6825,-73.90818,Entire home/apt,149,2,234,3.9,1,255 +5214,3231109,Manhattan,Morningside Heights,40.81065,-73.96311999999999,Private room,85,2,52,0.91,2,329 +5215,4951037,Brooklyn,Bedford-Stuyvesant,40.688179999999996,-73.959,Entire home/apt,200,7,5,0.09,1,0 +5216,18953786,Queens,Astoria,40.76403,-73.92161999999999,Entire home/apt,170,3,116,1.96,2,355 +5217,3086826,Bronx,Mount Hope,40.846109999999996,-73.91036,Private room,40,3,59,1.0,1,343 +5218,19315796,Manhattan,Midtown,40.75911,-73.96299,Private room,70,1,0,,1,0 +5219,19331457,Manhattan,Upper East Side,40.77632,-73.95458,Private room,95,1,389,6.51,2,254 +5220,7665324,Manhattan,Lower East Side,40.72144,-73.99356,Private room,95,1,64,1.12,2,266 +5221,15765273,Manhattan,Midtown,40.76514,-73.98058,Private room,350,1,9,0.2,1,0 +5222,19356930,Brooklyn,Bedford-Stuyvesant,40.6872,-73.93805,Entire home/apt,165,3,173,2.97,1,297 +5223,2274845,Brooklyn,Prospect Heights,40.67262,-73.96542,Entire home/apt,120,2,21,0.51,1,13 +5224,19359650,Manhattan,Midtown,40.74596,-73.98678000000001,Private room,130,3,10,0.38,1,0 +5225,23193,Brooklyn,Bedford-Stuyvesant,40.68826,-73.9385,Private room,40,1,8,0.16,4,335 +5226,19382874,Brooklyn,Bedford-Stuyvesant,40.6825,-73.92519,Entire home/apt,130,3,135,2.27,2,206 +5227,5785240,Manhattan,Harlem,40.80919,-73.94815,Entire home/apt,120,3,80,1.37,1,245 +5228,6739436,Brooklyn,Bushwick,40.707159999999995,-73.92171,Entire home/apt,90,1,40,0.68,1,0 +5229,18880856,Brooklyn,Bedford-Stuyvesant,40.68358,-73.94838,Private room,120,2,82,1.6,1,328 +5230,16065171,Manhattan,Harlem,40.81022,-73.94266,Shared room,115,1,16,0.27,1,365 +5231,7196556,Manhattan,Chelsea,40.73986,-74.00035,Entire home/apt,150,2,1,0.02,1,0 +5232,5003239,Manhattan,Greenwich Village,40.7311,-74.00014,Private room,170,1,20,0.4,1,364 +5233,3363799,Brooklyn,Williamsburg,40.70967,-73.94945,Entire home/apt,124,5,85,1.45,1,238 +5234,3716641,Manhattan,Upper West Side,40.79253,-73.97378,Entire home/apt,104,30,16,0.28,8,101 +5235,3716641,Manhattan,Upper West Side,40.79203,-73.97299,Entire home/apt,99,30,14,0.24,8,135 +5236,10193030,Manhattan,Harlem,40.82217,-73.94149,Private room,85,3,0,,2,88 +5237,16437254,Brooklyn,Fort Greene,40.689609999999995,-73.97780999999999,Entire home/apt,158,30,5,0.1,21,278 +5238,15047361,Manhattan,Lower East Side,40.720459999999996,-73.99237,Entire home/apt,400,3,0,,1,0 +5239,5680409,Manhattan,Washington Heights,40.85672,-73.9302,Shared room,100,2,0,,1,363 +5240,18609156,Brooklyn,Greenpoint,40.72793,-73.95011,Entire home/apt,115,1,2,0.03,1,0 +5241,17292935,Bronx,Mott Haven,40.8105,-73.92506999999999,Private room,55,1,276,4.63,2,19 +5242,1317384,Manhattan,Harlem,40.826209999999996,-73.94596,Private room,72,3,154,2.72,2,153 +5243,2119276,Manhattan,West Village,40.73254,-74.00698,Entire home/apt,170,30,12,0.22,39,252 +5244,3028267,Brooklyn,Clinton Hill,40.69352,-73.96556,Entire home/apt,150,7,15,0.27,1,280 +5245,5810195,Manhattan,Inwood,40.85988,-73.92709,Private room,39,1,13,1.18,2,233 +5246,7508547,Queens,Ridgewood,40.7012,-73.90008,Private room,49,2,77,1.53,1,1 +5247,3250450,Queens,Woodside,40.75338,-73.90618,Private room,39,30,9,0.16,18,318 +5248,2331719,Manhattan,East Village,40.72695,-73.98617,Entire home/apt,200,3,78,1.33,1,336 +5249,700913,Brooklyn,Williamsburg,40.71601,-73.95359,Entire home/apt,185,30,12,0.2,1,0 +5250,19106718,Manhattan,West Village,40.73223,-74.00355,Entire home/apt,200,4,17,0.29,1,35 +5251,2538522,Brooklyn,Boerum Hill,40.68558,-73.9815,Private room,110,3,1,0.02,1,0 +5252,19510462,Brooklyn,Park Slope,40.68098,-73.97925,Entire home/apt,275,3,4,0.07,1,0 +5253,6642777,Brooklyn,Williamsburg,40.712309999999995,-73.95313,Private room,105,1,372,6.23,2,59 +5254,7558452,Manhattan,East Village,40.723279999999995,-73.98926,Entire home/apt,260,1,299,5.04,2,232 +5255,3245596,Brooklyn,Williamsburg,40.71283,-73.96714,Entire home/apt,175,25,4,0.07,1,0 +5256,7453027,Brooklyn,Canarsie,40.64287,-73.90228,Entire home/apt,90,3,96,1.66,1,295 +5257,810266,Brooklyn,Williamsburg,40.71694,-73.96016999999999,Entire home/apt,125,21,1,0.02,1,0 +5258,10162529,Queens,St. Albans,40.7012,-73.75041,Entire home/apt,239,3,11,0.45,2,355 +5259,12090062,Manhattan,Chelsea,40.739959999999996,-73.99919,Entire home/apt,195,2,31,0.52,1,10 +5260,19533769,Bronx,Mott Haven,40.80772,-73.91790999999999,Private room,53,1,321,5.46,1,44 +5261,16677444,Manhattan,Hell's Kitchen,40.75882,-73.99168,Private room,99,1,147,2.84,1,4 +5262,19539944,Manhattan,Inwood,40.86711,-73.92742,Private room,52,7,0,,1,0 +5263,19550968,Manhattan,Battery Park City,40.710190000000004,-74.01705,Entire home/apt,130,60,4,0.07,1,13 +5264,19569660,Manhattan,Battery Park City,40.71031,-74.01557,Entire home/apt,325,30,9,0.16,1,0 +5265,19569725,Brooklyn,Bedford-Stuyvesant,40.68419,-73.92217,Entire home/apt,135,2,252,4.37,1,35 +5266,7848968,Brooklyn,Prospect Heights,40.67548,-73.96802,Private room,85,2,206,3.5,2,3 +5267,265278,Manhattan,Harlem,40.80384,-73.94691999999999,Private room,68,3,164,2.85,1,87 +5268,19569282,Queens,Astoria,40.76315,-73.92709,Private room,45,14,1,0.02,1,0 +5269,1475015,Manhattan,Hell's Kitchen,40.76867,-73.98541,Entire home/apt,87,30,6,0.11,52,365 +5270,19524858,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.95419,Private room,89,1,52,1.44,1,188 +5271,10603767,Brooklyn,Bushwick,40.707840000000004,-73.92224,Entire home/apt,150,3,203,3.42,1,308 +5272,3997854,Manhattan,Flatiron District,40.73923,-73.98589,Entire home/apt,124,30,10,0.17,1,0 +5273,1529179,Manhattan,Upper West Side,40.77885,-73.98178,Entire home/apt,169,7,0,,1,0 +5274,19597910,Queens,Forest Hills,40.72356,-73.83981999999999,Private room,125,2,128,2.17,3,332 +5275,19597910,Queens,Forest Hills,40.727,-73.83924,Private room,145,2,75,1.27,3,358 +5276,23633,Brooklyn,Bushwick,40.70248,-73.93225,Private room,75,1,0,,2,0 +5277,23633,Brooklyn,Bushwick,40.70315,-73.93124,Private room,75,2,2,0.04,2,0 +5278,1475015,Manhattan,Murray Hill,40.74915,-73.97196,Entire home/apt,87,30,7,0.12,52,340 +5279,6615826,Queens,Sunnyside,40.74219,-73.92585,Private room,50,5,6,1.41,1,54 +5280,2119276,Manhattan,Hell's Kitchen,40.7662,-73.98612,Entire home/apt,150,30,11,0.2,39,313 +5281,19633755,Manhattan,Upper West Side,40.79744,-73.97098000000001,Private room,95,30,2,0.04,1,365 +5282,2119276,Manhattan,Murray Hill,40.74445,-73.97180999999999,Entire home/apt,200,30,7,0.14,39,188 +5283,3856533,Manhattan,Harlem,40.802929999999996,-73.95586,Entire home/apt,120,1,23,0.45,1,0 +5284,9784802,Manhattan,Upper West Side,40.776270000000004,-73.98080999999999,Entire home/apt,325,3,70,1.19,1,71 +5285,19644902,Manhattan,Greenwich Village,40.727740000000004,-74.00004,Entire home/apt,165,2,2,0.04,1,0 +5286,16098958,Manhattan,Upper West Side,40.790820000000004,-73.97452,Entire home/apt,140,30,4,0.09,96,342 +5287,20169857,Brooklyn,Bedford-Stuyvesant,40.69634,-73.9441,Private room,33,1,52,0.87,2,255 +5288,14908547,Manhattan,Lower East Side,40.71962,-73.98434,Entire home/apt,169,4,7,0.14,1,0 +5289,19663195,Brooklyn,Williamsburg,40.71863,-73.94416,Entire home/apt,75,24,0,,1,27 +5290,7018154,Manhattan,Gramercy,40.732929999999996,-73.9836,Entire home/apt,190,5,5,0.08,1,0 +5291,3250450,Queens,Astoria,40.76577,-73.91471,Private room,39,30,9,0.19,18,237 +5292,15733420,Brooklyn,Bedford-Stuyvesant,40.682520000000004,-73.94443000000001,Entire home/apt,165,4,138,2.66,2,322 +5293,19691070,Queens,Long Island City,40.74622,-73.94277,Private room,79,1,39,0.83,1,297 +5294,19693124,Manhattan,Harlem,40.82654,-73.9462,Entire home/apt,125,1,10,0.17,1,297 +5295,1484799,Manhattan,West Village,40.73016,-74.00259,Entire home/apt,349,4,10,0.17,1,0 +5296,4702135,Brooklyn,Williamsburg,40.71328,-73.95787,Private room,130,1,0,,1,0 +5297,19708200,Brooklyn,Canarsie,40.63881,-73.91751,Private room,40,3,41,0.7,3,278 +5298,4928083,Brooklyn,Crown Heights,40.67767,-73.95161999999999,Entire home/apt,76,5,14,0.28,1,0 +5299,2236848,Brooklyn,Flatbush,40.64699,-73.96307,Entire home/apt,50,24,0,,1,0 +5300,19239110,Brooklyn,Bushwick,40.70098,-73.93959,Private room,45,30,25,0.53,1,197 +5301,18982191,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93796999999999,Entire home/apt,80,3,2,0.06,1,0 +5302,18094896,Manhattan,West Village,40.72912,-74.00298000000001,Entire home/apt,265,4,21,0.36,1,334 +5303,15192022,Brooklyn,Sunset Park,40.64752,-74.0059,Shared room,65,2,7,0.12,1,0 +5304,2141246,Brooklyn,Bedford-Stuyvesant,40.68127,-73.94865,Entire home/apt,90,3,2,0.05,1,0 +5305,3284613,Manhattan,Greenwich Village,40.72917,-73.99974,Private room,115,25,70,1.27,1,31 +5306,539204,Manhattan,Upper West Side,40.79998,-73.96404,Entire home/apt,145,15,0,,1,0 +5307,19708200,Brooklyn,Canarsie,40.63888,-73.91729000000001,Private room,45,3,23,0.39,3,327 +5308,3339701,Queens,Ditmars Steinway,40.77478,-73.91913000000001,Private room,50,1,164,2.78,4,308 +5309,18397763,Brooklyn,Bedford-Stuyvesant,40.68769,-73.93074,Private room,72,2,36,0.61,7,71 +5310,3339701,Queens,Ditmars Steinway,40.773759999999996,-73.91855,Private room,50,1,207,3.48,4,311 +5311,18397763,Brooklyn,Bedford-Stuyvesant,40.68565,-73.93249,Private room,57,2,43,0.72,7,58 +5312,19758346,Manhattan,West Village,40.73648,-74.00173000000001,Entire home/apt,225,3,5,0.08,1,0 +5313,9314076,Brooklyn,Bedford-Stuyvesant,40.69291,-73.95142,Private room,80,1,0,,1,0 +5314,19758179,Queens,East Elmhurst,40.76287,-73.88367,Entire home/apt,120,3,102,1.73,1,300 +5315,4091348,Brooklyn,Williamsburg,40.71241,-73.9653,Entire home/apt,450,4,0,,1,0 +5316,177233,Manhattan,Upper West Side,40.79903,-73.96451,Entire home/apt,249,2,80,1.35,1,58 +5317,19772879,Manhattan,Washington Heights,40.83818,-73.94303000000001,Entire home/apt,100,1,0,,1,0 +5318,107340,Brooklyn,Prospect-Lefferts Gardens,40.65806,-73.95815,Entire home/apt,225,4,3,0.05,1,0 +5319,9332835,Bronx,Fieldston,40.89022,-73.9039,Entire home/apt,95,14,3,0.13,1,0 +5320,19783353,Brooklyn,Williamsburg,40.70955,-73.95085,Entire home/apt,90,4,17,0.29,1,4 +5321,1459837,Brooklyn,Bedford-Stuyvesant,40.68056,-73.9151,Entire home/apt,101,10,16,0.29,1,0 +5322,1482208,Brooklyn,Williamsburg,40.71159,-73.94043,Entire home/apt,246,2,25,0.54,2,0 +5323,10366196,Brooklyn,Williamsburg,40.70859,-73.94639000000001,Entire home/apt,120,5,18,0.32,1,188 +5324,19785817,Brooklyn,Downtown Brooklyn,40.690540000000006,-73.99039,Entire home/apt,150,3,68,1.35,1,88 +5325,9708374,Brooklyn,Bay Ridge,40.63592,-74.02704,Entire home/apt,119,1,1,0.02,1,0 +5326,18286622,Manhattan,Lower East Side,40.721740000000004,-73.98501,Entire home/apt,150,1,8,0.13,1,0 +5327,2222500,Manhattan,Upper East Side,40.77993,-73.94939000000001,Private room,80,5,18,0.3,2,118 +5328,1277222,Brooklyn,Sheepshead Bay,40.585809999999995,-73.9383,Entire home/apt,189,2,13,0.27,1,0 +5329,12971995,Brooklyn,Bedford-Stuyvesant,40.680820000000004,-73.93599,Private room,90,3,39,0.67,1,0 +5330,11495251,Manhattan,West Village,40.73123,-74.00428000000001,Entire home/apt,200,5,1,0.02,1,0 +5331,19839188,Manhattan,Harlem,40.820190000000004,-73.95448,Entire home/apt,120,25,6,0.11,1,225 +5332,5369757,Manhattan,SoHo,40.72569,-74.00331,Private room,149,1,55,0.94,1,354 +5333,1475015,Manhattan,Upper East Side,40.76236,-73.96642,Entire home/apt,130,30,2,0.04,52,365 +5334,5175407,Brooklyn,Bushwick,40.6998,-73.93265,Private room,35,10,20,0.34,1,0 +5335,19349568,Brooklyn,Flatlands,40.6225,-73.92578,Entire home/apt,139,3,108,1.83,1,353 +5336,3424306,Brooklyn,Crown Heights,40.6692,-73.94739,Entire home/apt,100,2,11,0.24,1,0 +5337,19860559,Manhattan,Upper West Side,40.78802,-73.97509000000001,Private room,65,30,12,0.21,1,336 +5338,1582736,Manhattan,Greenwich Village,40.7338,-73.99498,Entire home/apt,200,5,7,0.18,1,0 +5339,4940167,Manhattan,Gramercy,40.73608,-73.9857,Entire home/apt,99,4,26,0.49,1,0 +5340,14902860,Brooklyn,Bedford-Stuyvesant,40.6847,-73.94523000000001,Entire home/apt,115,2,59,1.02,5,337 +5341,19866189,Queens,Arverne,40.58835,-73.79565,Private room,149,1,91,1.53,5,358 +5342,12615927,Brooklyn,Sunset Park,40.65957,-73.99253,Entire home/apt,135,3,15,0.32,1,10 +5343,3861404,Brooklyn,Prospect-Lefferts Gardens,40.65575,-73.9609,Private room,150,5,11,0.23,2,0 +5344,19902271,Manhattan,Washington Heights,40.83602,-73.94294000000001,Private room,105,3,104,1.79,1,288 +5345,5174082,Brooklyn,Columbia St,40.68404,-74.00399999999999,Entire home/apt,75,8,1,0.02,1,0 +5346,7782769,Manhattan,West Village,40.738240000000005,-74.00027,Entire home/apt,175,3,45,1.05,1,0 +5347,1812825,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92947,Entire home/apt,135,3,8,0.14,1,0 +5348,1908606,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.95428000000001,Private room,72,5,0,,1,88 +5349,12749383,Brooklyn,Williamsburg,40.70684,-73.94227,Private room,60,1,0,,1,0 +5350,13644183,Brooklyn,Greenpoint,40.722409999999996,-73.94179,Private room,97,5,3,0.06,1,0 +5351,14733148,Manhattan,Hell's Kitchen,40.76052,-73.99115,Entire home/apt,860,4,39,0.67,1,365 +5352,19800918,Manhattan,Hell's Kitchen,40.760529999999996,-73.99002,Private room,200,1,0,,1,0 +5353,19961114,Manhattan,Upper West Side,40.787890000000004,-73.97426999999999,Entire home/apt,98,3,233,3.97,1,33 +5354,1475015,Manhattan,Upper West Side,40.769079999999995,-73.98483,Entire home/apt,87,30,5,0.1,52,365 +5355,17770287,Manhattan,Midtown,40.7495,-73.98313,Entire home/apt,150,30,13,0.23,14,331 +5356,18260299,Brooklyn,Bushwick,40.693490000000004,-73.90726,Private room,50,4,3,0.06,6,79 +5357,16098958,Manhattan,Upper West Side,40.7937,-73.9659,Entire home/apt,185,30,2,0.13,96,310 +5358,47459,Manhattan,Lower East Side,40.72168,-73.98876,Entire home/apt,225,2,16,0.28,1,0 +5359,14902860,Brooklyn,Bedford-Stuyvesant,40.68374,-73.942,Entire home/apt,151,5,51,0.87,5,318 +5360,2718526,Brooklyn,Greenpoint,40.73385,-73.95418000000001,Entire home/apt,75,1,42,0.72,1,10 +5361,8180517,Manhattan,Upper East Side,40.781240000000004,-73.95227,Entire home/apt,110,1,0,,1,0 +5362,4089400,Brooklyn,Bushwick,40.70818,-73.92256,Entire home/apt,150,2,254,4.33,1,294 +5363,19986984,Manhattan,East Village,40.73263,-73.98728,Entire home/apt,145,4,17,0.29,1,0 +5364,736815,Manhattan,East Village,40.724709999999995,-73.98673000000001,Entire home/apt,250,4,28,0.49,1,4 +5365,19993822,Queens,Elmhurst,40.74122,-73.88641,Private room,170,1,4,0.07,1,90 +5366,16765013,Brooklyn,Clinton Hill,40.68423,-73.96242,Entire home/apt,145,5,53,0.9,1,14 +5367,4564600,Manhattan,East Village,40.72915,-73.98501,Entire home/apt,200,6,19,0.32,1,0 +5368,20022909,Brooklyn,Crown Heights,40.6749,-73.95166,Private room,50,1,5,0.09,1,0 +5369,20033436,Manhattan,Upper West Side,40.79254,-73.97531,Private room,250,1,6,0.1,1,365 +5370,4084075,Manhattan,Murray Hill,40.74712,-73.97434,Entire home/apt,229,2,21,0.36,1,0 +5371,18051112,Manhattan,East Harlem,40.786970000000004,-73.94999,Entire home/apt,129,2,12,0.2,1,0 +5372,16098958,Manhattan,Hell's Kitchen,40.76665,-73.9866,Entire home/apt,250,30,0,,96,281 +5373,16098958,Manhattan,Upper West Side,40.795629999999996,-73.9664,Entire home/apt,168,30,4,0.16,96,283 +5374,194994,Manhattan,Harlem,40.81419,-73.94717,Private room,80,4,27,0.46,1,196 +5375,12556197,Brooklyn,Crown Heights,40.66856,-73.95619,Entire home/apt,104,5,45,0.77,2,159 +5376,20084270,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96001,Entire home/apt,100,2,7,0.12,1,0 +5377,16715941,Manhattan,East Harlem,40.79887,-73.94178000000001,Private room,95,1,297,5.03,2,127 +5378,4680747,Queens,Flushing,40.756640000000004,-73.79975,Private room,95,2,2,0.06,1,267 +5379,176285,Brooklyn,Prospect Heights,40.6742,-73.96639,Entire home/apt,200,7,2,0.03,1,0 +5380,8179499,Manhattan,East Village,40.731770000000004,-73.98598,Entire home/apt,180,5,0,,1,0 +5381,8834412,Bronx,Longwood,40.81321,-73.90259,Private room,100,3,2,0.22,2,207 +5382,20116872,Manhattan,Upper West Side,40.77571,-73.97757,Entire home/apt,195,1,401,6.76,1,178 +5383,3150902,Manhattan,Chelsea,40.74057,-73.99977,Entire home/apt,299,5,1,0.06,1,0 +5384,18260299,Brooklyn,Bushwick,40.694390000000006,-73.90715,Private room,45,30,7,0.74,6,92 +5385,20133610,Manhattan,Financial District,40.7094,-74.00278,Private room,139,365,13,0.23,1,365 +5386,20136355,Manhattan,Nolita,40.722409999999996,-73.99592,Entire home/apt,200,4,3,0.05,1,0 +5387,46969,Staten Island,Clifton,40.6205,-74.07451,Entire home/apt,70,2,242,4.09,1,256 +5388,20156576,Brooklyn,Greenpoint,40.72829,-73.95354,Private room,50,7,1,0.02,1,0 +5389,157795,Brooklyn,Crown Heights,40.67658,-73.94683,Private room,42,4,4,0.11,2,0 +5390,20166817,Brooklyn,Greenpoint,40.719590000000004,-73.94795,Entire home/apt,116,28,45,0.76,1,35 +5391,20171951,Manhattan,Chelsea,40.73957,-74.00027,Entire home/apt,200,4,1,0.02,1,0 +5392,20172814,Manhattan,East Village,40.728590000000004,-73.97915,Private room,129,4,32,0.56,1,365 +5393,20177472,Brooklyn,Park Slope,40.67927,-73.97434,Private room,125,2,117,1.99,1,270 +5394,18572906,Brooklyn,Park Slope,40.67053,-73.98558,Private room,55,3,4,0.07,1,0 +5395,20177186,Manhattan,Financial District,40.70943,-74.01405,Entire home/apt,200,2,6,0.1,1,0 +5396,5072123,Brooklyn,Fort Greene,40.690979999999996,-73.97989,Entire home/apt,165,29,7,0.27,2,159 +5397,6426063,Manhattan,West Village,40.73377,-74.0057,Entire home/apt,199,5,5,0.08,1,0 +5398,18481203,Manhattan,Greenwich Village,40.733740000000004,-73.9976,Entire home/apt,150,3,15,0.26,1,0 +5399,9990930,Brooklyn,Williamsburg,40.71751,-73.95895,Private room,95,1,0,,1,0 +5400,2316267,Brooklyn,Williamsburg,40.7083,-73.94846,Private room,90,1,10,0.17,1,365 +5401,3097631,Manhattan,Gramercy,40.7364,-73.98436,Entire home/apt,120,10,51,0.86,1,64 +5402,20169857,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94314,Private room,40,1,73,1.23,2,190 +5403,14890430,Brooklyn,Williamsburg,40.71223,-73.94169000000001,Private room,75,3,174,2.96,1,311 +5404,5879951,Brooklyn,Williamsburg,40.70617,-73.93674,Private room,68,5,5,0.11,1,0 +5405,20243795,Brooklyn,Bedford-Stuyvesant,40.68137,-73.9565,Private room,75,2,99,1.67,3,365 +5406,10352213,Manhattan,Morningside Heights,40.81488,-73.96058000000001,Entire home/apt,45,2,7,0.12,2,0 +5407,20260083,Manhattan,East Harlem,40.79332,-73.94105,Shared room,45,1,6,0.21,1,0 +5408,12348871,Brooklyn,Kensington,40.644870000000004,-73.97895,Private room,65,1,74,1.26,2,21 +5409,102525,Brooklyn,South Slope,40.66714,-73.98401,Private room,75,3,14,0.24,2,347 +5410,4934489,Manhattan,Hell's Kitchen,40.76008,-73.992,Private room,84,2,5,0.09,3,0 +5411,18834080,Manhattan,Chinatown,40.71672,-73.99184,Entire home/apt,130,2,101,1.71,1,0 +5412,960861,Brooklyn,Prospect Heights,40.676520000000004,-73.96441999999999,Private room,50,30,12,0.2,1,0 +5413,2045335,Manhattan,Upper West Side,40.78099,-73.97416,Private room,150,3,50,0.85,1,365 +5414,20278196,Brooklyn,East Flatbush,40.66165,-73.92536,Private room,95,2,7,0.13,3,365 +5415,9081271,Manhattan,Murray Hill,40.74933,-73.9724,Entire home/apt,300,1,2,0.03,1,0 +5416,1475015,Manhattan,Upper West Side,40.769040000000004,-73.98494000000001,Entire home/apt,113,30,8,0.13,52,258 +5417,20286123,Manhattan,Harlem,40.82079,-73.95115,Entire home/apt,145,1,23,0.39,1,219 +5418,4718049,Brooklyn,Williamsburg,40.719809999999995,-73.95558,Entire home/apt,150,3,0,,1,0 +5419,16715941,Manhattan,East Harlem,40.79882,-73.94266,Private room,90,1,295,4.99,2,155 +5420,7245581,Manhattan,Chelsea,40.75076,-73.99588,Entire home/apt,95,30,15,0.27,19,204 +5421,13347167,Manhattan,Upper East Side,40.77237,-73.95536,Entire home/apt,118,30,3,0.1,29,282 +5422,20324827,Brooklyn,Flatbush,40.64117,-73.96167,Entire home/apt,75,5,2,0.03,1,0 +5423,13135873,Manhattan,Upper West Side,40.77595,-73.97966,Entire home/apt,225,7,26,0.68,1,85 +5424,20278196,Brooklyn,East Flatbush,40.66336,-73.92656,Private room,81,2,4,0.08,3,364 +5425,20329737,Brooklyn,Williamsburg,40.71267,-73.95721,Entire home/apt,190,2,4,0.08,1,0 +5426,452781,Brooklyn,Crown Heights,40.67297,-73.95489,Private room,75,1,3,0.05,1,0 +5427,1216362,Brooklyn,Flatbush,40.65271,-73.96074,Private room,59,2,12,0.2,4,189 +5428,1632428,Manhattan,Harlem,40.82035,-73.95529,Private room,99,1,75,1.31,2,361 +5429,2224374,Brooklyn,Williamsburg,40.71293,-73.95321,Entire home/apt,270,7,0,,1,0 +5430,14549202,Manhattan,Lower East Side,40.719570000000004,-73.9863,Entire home/apt,140,70,0,,1,83 +5431,16101222,Manhattan,Financial District,40.70563,-74.00878,Entire home/apt,275,3,9,0.19,1,0 +5432,1331180,Brooklyn,Bushwick,40.6845,-73.91193,Entire home/apt,1000,2,0,,1,0 +5433,622694,Brooklyn,Greenpoint,40.729420000000005,-73.95291,Entire home/apt,120,28,12,0.22,1,0 +5434,92782,Brooklyn,Greenpoint,40.723,-73.94237,Entire home/apt,125,3,11,0.19,1,0 +5435,1568383,Brooklyn,Williamsburg,40.714940000000006,-73.93906,Private room,75,30,1,0.42,1,271 +5436,20364466,Manhattan,East Village,40.72509,-73.97898,Entire home/apt,117,3,7,0.12,1,7 +5437,20377328,Manhattan,Washington Heights,40.857490000000006,-73.93258,Entire home/apt,80,1,4,0.07,1,0 +5438,20379079,Queens,Long Island City,40.7512,-73.94019,Private room,60,6,3,0.08,1,0 +5439,1406214,Brooklyn,Fort Greene,40.6926,-73.97336999999999,Private room,103,3,169,2.88,1,192 +5440,284199,Queens,Jackson Heights,40.74946,-73.89505,Entire home/apt,65,1,1,0.06,2,0 +5441,881214,Bronx,Mott Haven,40.808659999999996,-73.92069000000001,Private room,45,5,14,0.28,1,0 +5442,20411855,Queens,Briarwood,40.71009,-73.8196,Private room,70,3,64,1.16,1,282 +5443,7837510,Manhattan,Washington Heights,40.85722,-73.93354000000001,Entire home/apt,90,7,1,0.02,1,124 +5444,2555556,Manhattan,Battery Park City,40.70797,-74.01693,Entire home/apt,225,5,7,0.12,1,0 +5445,20433199,Manhattan,East Village,40.72186,-73.97663,Entire home/apt,125,14,2,0.04,1,3 +5446,20435647,Brooklyn,Williamsburg,40.71713,-73.95669000000001,Entire home/apt,175,2,76,1.29,1,19 +5447,20438402,Manhattan,East Harlem,40.79508,-73.93256,Entire home/apt,195,3,25,0.43,3,0 +5448,12351216,Manhattan,Theater District,40.75848,-73.98414,Private room,130,4,177,3.01,1,235 +5449,6771709,Brooklyn,Crown Heights,40.670809999999996,-73.95761,Private room,96,3,1,0.02,1,0 +5450,20440955,Brooklyn,Brooklyn Heights,40.69417,-73.99443000000001,Private room,129,2,199,3.42,1,298 +5451,71418,Manhattan,Gramercy,40.73845,-73.98373000000001,Entire home/apt,200,7,10,0.17,1,100 +5452,20447869,Manhattan,Kips Bay,40.745329999999996,-73.97955999999999,Private room,95,4,11,0.19,2,0 +5453,20449160,Manhattan,Theater District,40.75977,-73.98763000000001,Entire home/apt,189,2,57,1.18,1,9 +5454,20449763,Manhattan,Upper West Side,40.80075,-73.9677,Entire home/apt,450,1,1,0.03,1,121 +5455,20438402,Manhattan,East Harlem,40.7948,-73.93457,Entire home/apt,264,3,38,0.65,3,0 +5456,5650180,Queens,Elmhurst,40.74471,-73.88075,Private room,45,30,20,0.34,2,188 +5457,20449694,Brooklyn,Clinton Hill,40.68646,-73.95975,Entire home/apt,150,2,11,0.42,1,0 +5458,20438402,Manhattan,East Harlem,40.79365,-73.9349,Entire home/apt,540,3,20,0.38,3,350 +5459,7739416,Brooklyn,Flatbush,40.65101,-73.95517,Private room,95,3,0,,1,365 +5460,20464791,Manhattan,Upper West Side,40.78829,-73.97053000000001,Entire home/apt,230,6,1,0.02,1,0 +5461,10528897,Queens,Astoria,40.76957,-73.91502,Private room,65,2,16,0.27,1,302 +5462,9769764,Brooklyn,Bushwick,40.688190000000006,-73.91594,Private room,70,30,0,,1,0 +5463,20484008,Manhattan,Upper West Side,40.79407,-73.97513000000001,Entire home/apt,160,4,75,1.31,2,8 +5464,3097283,Brooklyn,Williamsburg,40.71305,-73.94334,Entire home/apt,200,6,0,,1,0 +5465,20435679,Brooklyn,Windsor Terrace,40.65527,-73.97853,Entire home/apt,138,5,1,0.1,1,0 +5466,295128,Bronx,Clason Point,40.81192,-73.85334,Entire home/apt,155,1,19,0.35,7,332 +5467,295128,Bronx,Clason Point,40.81225,-73.85349000000001,Private room,75,2,0,,7,349 +5468,7580038,Manhattan,Harlem,40.82546,-73.94629,Private room,39,4,33,0.57,3,292 +5469,8015051,Brooklyn,Crown Heights,40.67042,-73.95608,Entire home/apt,115,2,76,1.3,1,283 +5470,12485770,Manhattan,SoHo,40.72699,-74.0012,Entire home/apt,110,30,3,0.05,9,333 +5471,10194688,Manhattan,Upper West Side,40.77323,-73.98014,Private room,100,3,172,2.93,1,214 +5472,2032408,Manhattan,Battery Park City,40.71185,-74.01719,Entire home/apt,225,3,2,0.04,1,0 +5473,20534981,Brooklyn,Flatlands,40.61938,-73.92471,Entire home/apt,125,14,10,0.21,1,180 +5474,20536249,Manhattan,Gramercy,40.733709999999995,-73.98576,Private room,150,1,1,0.02,1,0 +5475,5742948,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91471999999999,Entire home/apt,199,4,9,0.23,1,0 +5476,978546,Manhattan,East Village,40.73152,-73.98676,Entire home/apt,250,3,12,0.25,1,0 +5477,20543178,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93705,Entire home/apt,210,2,10,0.21,2,180 +5478,20555401,Staten Island,Stapleton,40.63628,-74.07763,Entire home/apt,180,2,139,2.42,1,263 +5479,5160894,Manhattan,East Village,40.72777,-73.99005,Entire home/apt,129,5,26,0.58,1,0 +5480,18481481,Manhattan,East Harlem,40.79347,-73.95029,Private room,90,1,265,4.5,1,36 +5481,1100494,Manhattan,Harlem,40.82257,-73.95565,Private room,50,30,46,0.79,3,330 +5482,20567256,Manhattan,Greenwich Village,40.72818,-73.9981,Entire home/apt,140,1,37,0.66,1,19 +5483,1033829,Brooklyn,Bedford-Stuyvesant,40.68692,-73.93113000000001,Entire home/apt,150,2,5,0.09,1,0 +5484,363472,Manhattan,East Village,40.72088,-73.98149000000001,Entire home/apt,233,30,17,0.33,1,364 +5485,15309829,Manhattan,East Village,40.73057,-73.98725999999999,Entire home/apt,170,2,1,0.16,1,0 +5486,20278196,Brooklyn,East Flatbush,40.66303,-73.92526,Private room,60,2,6,0.26,3,326 +5487,3339819,Brooklyn,Crown Heights,40.6723,-73.95951,Entire home/apt,200,2,3,0.05,1,0 +5488,3164949,Brooklyn,Cobble Hill,40.68781,-73.99415,Entire home/apt,160,4,0,,1,0 +5489,1475015,Manhattan,Gramercy,40.73771,-73.98058,Entire home/apt,150,30,1,0.02,52,342 +5490,20580437,Brooklyn,Williamsburg,40.712759999999996,-73.95114000000001,Entire home/apt,140,2,3,0.12,1,0 +5491,1840581,Brooklyn,Flatbush,40.63762,-73.96155,Private room,65,1,0,,1,0 +5492,14741088,Brooklyn,Carroll Gardens,40.67845,-73.99983,Private room,60,3,3,0.07,1,0 +5493,17576229,Brooklyn,Bay Ridge,40.63562,-74.0235,Entire home/apt,130,3,1,0.07,1,83 +5494,19808313,Brooklyn,Clinton Hill,40.68316,-73.96163,Entire home/apt,103,1,0,,1,0 +5495,1401835,Brooklyn,Williamsburg,40.709740000000004,-73.95612,Private room,89,2,30,0.52,3,219 +5496,20047729,Manhattan,Upper West Side,40.787890000000004,-73.97679000000001,Private room,50,5,0,,1,0 +5497,20604091,Queens,Woodside,40.74433,-73.91171999999999,Entire home/apt,150,2,110,1.86,1,294 +5498,20624434,Manhattan,Midtown,40.74819,-73.9856,Entire home/apt,240,3,7,0.13,1,0 +5499,19407840,Manhattan,Roosevelt Island,40.75592,-73.95515,Entire home/apt,1400,90,31,0.53,1,88 +5500,20625992,Queens,Jackson Heights,40.74892,-73.88883,Entire home/apt,200,2,0,,1,364 +5501,2766755,Manhattan,Harlem,40.8095,-73.95395,Private room,88,2,171,2.93,2,234 +5502,557329,Manhattan,Harlem,40.8012,-73.95424,Shared room,75,1,6,0.1,1,315 +5503,3424328,Manhattan,Chelsea,40.73923,-73.99826999999999,Entire home/apt,500,1,27,0.46,1,90 +5504,17546682,Manhattan,Chelsea,40.74496,-73.99934,Entire home/apt,125,4,1,0.08,1,0 +5505,8734291,Manhattan,Upper West Side,40.80311,-73.96648,Private room,75,1,65,1.12,1,301 +5506,1475015,Manhattan,Gramercy,40.73731,-73.98338000000001,Entire home/apt,130,30,2,0.04,52,335 +5507,2119276,Manhattan,East Village,40.73256,-73.98558,Entire home/apt,170,30,11,0.19,39,319 +5508,6337882,Manhattan,Chelsea,40.753190000000004,-74.00159000000001,Entire home/apt,300,2,11,0.19,1,137 +5509,20670026,Brooklyn,Bedford-Stuyvesant,40.68084,-73.94779,Entire home/apt,115,2,259,4.43,1,285 +5510,20670246,Brooklyn,Bushwick,40.6876,-73.9167,Entire home/apt,93,30,23,0.4,1,226 +5511,1272714,Brooklyn,Bedford-Stuyvesant,40.68313,-73.9413,Entire home/apt,119,2,209,3.62,1,241 +5512,20694703,Manhattan,Lower East Side,40.714209999999994,-73.98793,Entire home/apt,180,6,24,0.41,2,51 +5513,11790239,Manhattan,Harlem,40.81453,-73.94807,Entire home/apt,226,3,8,0.14,3,303 +5514,6198638,Brooklyn,Park Slope,40.67814,-73.9778,Entire home/apt,155,2,2,0.04,1,0 +5515,14545465,Manhattan,West Village,40.73455,-74.00614,Entire home/apt,115,4,16,0.27,1,0 +5516,20738908,Brooklyn,Flatbush,40.64119,-73.96295,Private room,50,2,4,0.07,1,0 +5517,3325418,Manhattan,Morningside Heights,40.80395,-73.96436,Entire home/apt,600,1,0,,3,344 +5518,3325418,Manhattan,Morningside Heights,40.804520000000004,-73.96393,Private room,200,1,30,0.52,3,0 +5519,3146353,Brooklyn,Clinton Hill,40.68329,-73.9609,Entire home/apt,157,4,3,0.05,1,0 +5520,1542375,Brooklyn,Bedford-Stuyvesant,40.6835,-73.92754000000001,Entire home/apt,145,3,122,2.14,1,269 +5521,2787824,Queens,Glendale,40.705909999999996,-73.89264,Private room,95,2,46,1.15,1,0 +5522,942933,Manhattan,Harlem,40.80489,-73.95759,Entire home/apt,115,1,1,0.02,1,0 +5523,3120671,Queens,Astoria,40.76294,-73.91545,Private room,65,2,5,5.0,1,2 +5524,16949652,Manhattan,Harlem,40.80655,-73.94854000000001,Entire home/apt,275,1,0,,1,0 +5525,20741468,Queens,Astoria,40.75568,-73.91578,Private room,250,2,22,0.43,1,123 +5526,2090439,Manhattan,Little Italy,40.72023,-73.99693,Private room,95,3,135,2.31,1,9 +5527,20809866,Brooklyn,Park Slope,40.66972,-73.97954,Entire home/apt,185,4,111,1.9,1,9 +5528,7831209,Manhattan,East Harlem,40.807320000000004,-73.93775,Private room,55,1,163,2.76,10,359 +5529,14707270,Manhattan,Nolita,40.72322,-73.99351,Entire home/apt,350,1,1,0.02,1,0 +5530,20822611,Manhattan,Lower East Side,40.71891,-73.98592,Private room,170,5,22,0.38,1,259 +5531,9639040,Brooklyn,Park Slope,40.667229999999996,-73.98043,Entire home/apt,100,2,18,0.31,1,58 +5532,20827756,Manhattan,Washington Heights,40.84787,-73.93306,Private room,36,2,10,0.2,1,0 +5533,20830484,Brooklyn,Gowanus,40.68163,-73.98088,Private room,60,1,1,0.02,1,0 +5534,12876904,Brooklyn,Bedford-Stuyvesant,40.67918,-73.95318,Private room,125,2,1,0.02,1,0 +5535,10263619,Brooklyn,Williamsburg,40.71908,-73.95675,Entire home/apt,120,2,135,2.32,1,66 +5536,17249397,Manhattan,Financial District,40.704570000000004,-74.00733000000001,Shared room,90,1,8,0.14,2,0 +5537,9743617,Manhattan,Harlem,40.81586,-73.94117,Entire home/apt,129,5,91,1.63,2,260 +5538,16514175,Queens,Elmhurst,40.74561,-73.88514,Entire home/apt,78,2,133,2.26,5,107 +5539,7877288,Manhattan,Lower East Side,40.72102,-73.98621999999999,Entire home/apt,120,1,0,,1,0 +5540,4163733,Manhattan,Greenwich Village,40.729240000000004,-74.00148,Private room,99,2,21,0.36,1,268 +5541,20900568,Bronx,Norwood,40.87786,-73.87640999999999,Private room,50,1,108,1.84,1,261 +5542,20902552,Manhattan,Washington Heights,40.834559999999996,-73.94344,Private room,16,14,0,,1,0 +5543,13649613,Bronx,University Heights,40.85696,-73.91439,Private room,47,2,122,2.15,4,71 +5544,2155917,Brooklyn,Bedford-Stuyvesant,40.68693,-73.95725,Entire home/apt,150,5,18,2.57,3,254 +5545,20911928,Staten Island,Lighthouse Hill,40.57718,-74.13981,Entire home/apt,200,2,49,0.92,1,360 +5546,20912185,Brooklyn,Crown Heights,40.66649,-73.92855,Entire home/apt,125,2,130,2.23,1,293 +5547,1369577,Brooklyn,Crown Heights,40.674409999999995,-73.92371,Entire home/apt,60,6,144,2.5,2,59 +5548,11818785,Queens,Jackson Heights,40.7525,-73.88592,Private room,200,30,0,,1,88 +5549,5642757,Brooklyn,Flatbush,40.62918,-73.96348,Entire home/apt,100,3,9,0.16,1,0 +5550,608396,Queens,Astoria,40.76269,-73.90816,Private room,99,1,15,0.26,1,322 +5551,19638238,Manhattan,Washington Heights,40.83428,-73.94738000000001,Private room,75,2,25,0.53,1,198 +5552,430188,Brooklyn,Williamsburg,40.70588,-73.95421999999999,Private room,140,5,1,0.02,6,185 +5553,20945243,Bronx,Concourse Village,40.83331,-73.91741999999999,Entire home/apt,90,30,1,0.04,1,358 +5554,3789165,Manhattan,Theater District,40.75974,-73.9866,Shared room,59,2,58,0.99,1,345 +5555,15742426,Manhattan,East Village,40.73118,-73.98794000000001,Entire home/apt,111,3,51,0.88,1,198 +5556,19755511,Manhattan,Washington Heights,40.83469,-73.93961,Entire home/apt,80,4,3,0.05,1,0 +5557,2034343,Brooklyn,Crown Heights,40.67152,-73.92687,Private room,80,1,0,,1,0 +5558,20955075,Manhattan,Harlem,40.81118,-73.93977,Private room,50,14,5,0.14,1,0 +5559,20971414,Manhattan,Chinatown,40.71399,-73.99107,Entire home/apt,300,4,7,0.12,1,0 +5560,15582617,Brooklyn,Fort Greene,40.6878,-73.97166999999999,Entire home/apt,90,4,3,0.12,1,0 +5561,20979850,Manhattan,East Village,40.72087,-73.97952,Private room,119,1,49,1.4,1,84 +5562,20987432,Queens,Astoria,40.7653,-73.92661,Private room,69,4,22,0.38,1,311 +5563,16325217,Manhattan,Upper West Side,40.7908,-73.97723,Entire home/apt,260,2,0,,1,0 +5564,20987992,Brooklyn,Greenpoint,40.724140000000006,-73.95355,Entire home/apt,185,2,114,1.94,1,16 +5565,20988865,Queens,Jackson Heights,40.7517,-73.89478000000001,Entire home/apt,100,2,24,0.42,1,0 +5566,20989479,Manhattan,Upper West Side,40.772220000000004,-73.98923,Shared room,85,1,33,0.56,1,0 +5567,10135,Manhattan,SoHo,40.71972,-73.99986,Private room,135,2,125,2.14,2,340 +5568,9492212,Brooklyn,Park Slope,40.66898,-73.97831,Private room,169,1,151,2.58,4,0 +5569,21014758,Brooklyn,Bedford-Stuyvesant,40.688520000000004,-73.92393,Private room,38,2,50,1.35,3,126 +5570,21004091,Brooklyn,Bushwick,40.70102,-73.92864,Private room,90,2,52,2.21,1,288 +5571,21009723,Manhattan,Harlem,40.8242,-73.93789,Private room,45,4,1,0.03,1,0 +5572,2037149,Brooklyn,Windsor Terrace,40.6501,-73.97985,Entire home/apt,149,4,143,2.62,1,254 +5573,21019043,Brooklyn,Clinton Hill,40.68436,-73.96223,Entire home/apt,200,2,14,0.24,1,0 +5574,21019260,Manhattan,Roosevelt Island,40.76365,-73.94914,Entire home/apt,125,60,6,0.11,1,278 +5575,3967335,Brooklyn,Greenpoint,40.72607,-73.95103,Private room,65,2,26,0.45,2,6 +5576,3967335,Brooklyn,Greenpoint,40.72527,-73.95016,Entire home/apt,174,2,31,0.54,2,12 +5577,21020951,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93848,Private room,89,2,24,0.41,5,339 +5578,5133495,Brooklyn,South Slope,40.66202,-73.98589,Entire home/apt,150,3,8,0.15,1,0 +5579,21017521,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.95915,Private room,75,18,0,,1,0 +5580,1960128,Queens,Ozone Park,40.6844,-73.8472,Private room,58,1,2,0.04,2,364 +5581,21026294,Brooklyn,Park Slope,40.67017,-73.97752,Private room,103,30,45,0.82,1,0 +5582,4054295,Manhattan,Hell's Kitchen,40.76331,-73.99262,Entire home/apt,383,3,24,0.41,1,251 +5583,12368114,Brooklyn,Clinton Hill,40.684540000000005,-73.96382,Private room,40,1,1,0.02,1,0 +5584,2075509,Queens,Long Island City,40.75977,-73.92904,Private room,76,1,14,0.41,1,225 +5585,20484008,Manhattan,Upper West Side,40.79408,-73.9757,Private room,170,1,3,0.05,2,0 +5586,7831209,Manhattan,East Harlem,40.80617,-73.93868,Private room,45,1,151,2.59,10,357 +5587,20441343,Brooklyn,Bedford-Stuyvesant,40.69587,-73.95114000000001,Private room,100,3,0,,1,352 +5588,2788262,Manhattan,SoHo,40.72525,-73.99636,Entire home/apt,199,2,167,3.17,1,17 +5589,21060554,Manhattan,Inwood,40.87279,-73.91991,Entire home/apt,99,5,61,1.06,1,1 +5590,10384906,Brooklyn,Sunset Park,40.64047,-74.00842,Private room,39,1,51,0.88,5,273 +5591,21064077,Queens,Ridgewood,40.70046,-73.90692,Entire home/apt,60,21,5,0.1,1,0 +5592,19382874,Brooklyn,Bedford-Stuyvesant,40.68439,-73.92811,Entire home/apt,130,3,132,2.53,2,257 +5593,4050500,Brooklyn,Williamsburg,40.71236,-73.9379,Entire home/apt,200,1,170,2.96,1,303 +5594,21096602,Brooklyn,East Flatbush,40.64434,-73.94830999999999,Private room,65,1,0,,1,0 +5595,19331457,Manhattan,Upper East Side,40.77462,-73.95461,Private room,105,1,239,4.13,2,287 +5596,14793862,Brooklyn,East Flatbush,40.653009999999995,-73.95241,Entire home/apt,115,3,64,1.13,1,0 +5597,21105084,Manhattan,Harlem,40.81575,-73.9537,Entire home/apt,145,7,34,0.58,2,0 +5598,20741012,Brooklyn,Greenpoint,40.73357,-73.95439,Entire home/apt,75,2,102,4.27,1,30 +5599,21110000,Brooklyn,DUMBO,40.70452,-73.98583,Entire home/apt,250,2,150,2.57,1,309 +5600,5558013,Manhattan,East Harlem,40.7941,-73.94045,Private room,80,2,2,0.06,1,0 +5601,10135,Manhattan,SoHo,40.71995,-73.99975,Private room,120,3,71,1.21,2,304 +5602,6459254,Brooklyn,Williamsburg,40.71413,-73.94868000000001,Private room,100,4,32,0.56,1,0 +5603,13322263,Manhattan,Hell's Kitchen,40.75735,-73.99603,Private room,125,10,12,0.2,1,0 +5604,7116594,Brooklyn,Williamsburg,40.71009,-73.96471,Entire home/apt,132,3,2,0.05,1,0 +5605,316474,Brooklyn,South Slope,40.66693,-73.98801,Entire home/apt,225,2,66,1.13,1,158 +5606,4148174,Brooklyn,Williamsburg,40.708079999999995,-73.94757,Entire home/apt,175,2,2,0.03,1,0 +5607,21149119,Manhattan,Chinatown,40.71585,-73.99014,Entire home/apt,225,3,2,0.03,1,221 +5608,21149129,Brooklyn,Bedford-Stuyvesant,40.690129999999996,-73.92805,Entire home/apt,215,1,167,2.86,1,250 +5609,4792032,Brooklyn,Red Hook,40.67815,-74.01443,Entire home/apt,300,7,9,0.18,1,32 +5610,4835582,Manhattan,Harlem,40.80856,-73.94573000000001,Entire home/apt,130,2,185,3.76,1,300 +5611,21171867,Queens,Springfield Gardens,40.67425,-73.75796,Entire home/apt,110,1,279,5.02,1,355 +5612,310670,Bronx,Eastchester,40.8806,-73.83433000000001,Private room,75,2,37,0.73,13,364 +5613,3801427,Brooklyn,Greenpoint,40.72631,-73.94126999999999,Private room,36,14,18,0.34,1,0 +5614,1335736,Brooklyn,Bedford-Stuyvesant,40.68634,-73.92515999999999,Entire home/apt,299,4,8,0.15,1,279 +5615,7861502,Manhattan,East Village,40.72878,-73.98521,Entire home/apt,200,1,1,0.02,1,0 +5616,21145652,Brooklyn,East New York,40.65741,-73.87854,Entire home/apt,110,3,9,0.16,1,36 +5617,2436652,Brooklyn,Williamsburg,40.713809999999995,-73.96065,Entire home/apt,160,30,44,0.76,1,226 +5618,21183428,Brooklyn,Bedford-Stuyvesant,40.68407,-73.95487,Entire home/apt,152,3,146,2.51,2,287 +5619,5317124,Brooklyn,Clinton Hill,40.6921,-73.96797,Entire home/apt,145,3,16,0.31,1,96 +5620,21210898,Brooklyn,Bushwick,40.70794,-73.92168000000001,Private room,120,2,11,0.2,2,365 +5621,2917387,Brooklyn,Bushwick,40.7041,-73.92475999999999,Entire home/apt,84,3,120,2.29,1,224 +5622,21217401,Manhattan,Upper East Side,40.76965,-73.96258,Entire home/apt,160,5,13,0.22,1,0 +5623,21222224,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95373000000001,Entire home/apt,150,5,14,0.28,2,363 +5624,21228368,Queens,Forest Hills,40.71291,-73.84678000000001,Entire home/apt,180,2,105,1.8,5,190 +5625,310670,Bronx,Eastchester,40.88009,-73.83442,Private room,68,2,41,0.74,13,365 +5626,21232737,Manhattan,SoHo,40.72651,-74.00014,Entire home/apt,125,1,0,,1,1 +5627,11090576,Brooklyn,Bushwick,40.69216,-73.90859,Private room,25,1,8,0.14,1,0 +5628,4065620,Brooklyn,Bedford-Stuyvesant,40.68663,-73.9379,Entire home/apt,155,3,1,1.0,2,342 +5629,2705041,Manhattan,East Village,40.73131,-73.98321,Private room,105,2,0,,1,0 +5630,11948817,Brooklyn,Canarsie,40.630559999999996,-73.89043000000001,Entire home/apt,75,2,91,1.56,2,289 +5631,15277039,Manhattan,Harlem,40.8236,-73.94743000000001,Private room,80,4,2,0.05,1,0 +5632,20245055,Manhattan,Lower East Side,40.71273,-73.9882,Private room,72,3,56,0.96,2,304 +5633,1539749,Brooklyn,Bedford-Stuyvesant,40.686409999999995,-73.94735,Private room,52,2,29,0.5,4,335 +5634,21279472,Brooklyn,Carroll Gardens,40.67335,-73.99886,Entire home/apt,125,3,93,1.82,1,30 +5635,4473954,Manhattan,Upper West Side,40.78156,-73.97796,Private room,85,29,10,0.36,1,241 +5636,61463,Brooklyn,Windsor Terrace,40.65157,-73.97383,Private room,58,4,18,0.42,1,58 +5637,1637916,Brooklyn,Greenpoint,40.72122,-73.94121,Private room,100,1,36,2.69,1,335 +5638,21315876,Manhattan,East Village,40.72333,-73.98838,Private room,65,1,139,3.64,2,103 +5639,622779,Brooklyn,Greenpoint,40.72452,-73.93916,Entire home/apt,300,1,12,0.32,1,362 +5640,7714918,Brooklyn,Bushwick,40.705690000000004,-73.92268,Private room,40,28,191,3.36,2,95 +5641,19914713,Queens,Astoria,40.76177,-73.91359,Entire home/apt,110,2,47,0.81,2,0 +5642,21327210,Brooklyn,Bay Ridge,40.63745,-74.02534,Private room,85,2,45,0.77,2,90 +5643,21352288,Brooklyn,South Slope,40.66617,-73.98626999999999,Entire home/apt,158,3,87,1.53,1,204 +5644,4314639,Brooklyn,Crown Heights,40.67284,-73.9521,Private room,65,1,0,,1,0 +5645,4934489,Manhattan,Hell's Kitchen,40.76032,-73.99076,Private room,100,2,8,0.97,3,0 +5646,4516038,Brooklyn,Williamsburg,40.71673,-73.94315999999999,Private room,64,5,4,0.07,1,0 +5647,21362718,Brooklyn,Carroll Gardens,40.67823,-73.99515,Entire home/apt,395,4,33,0.65,1,158 +5648,21367938,Queens,Sunnyside,40.74947,-73.91471999999999,Entire home/apt,120,10,30,0.52,1,142 +5649,10172703,Bronx,Norwood,40.87184,-73.88622,Private room,51,4,109,1.88,1,212 +5650,21371406,Manhattan,Two Bridges,40.70989,-74.00105,Entire home/apt,149,6,1,0.05,1,0 +5651,21373495,Brooklyn,Williamsburg,40.7105,-73.9438,Private room,65,1,113,3.99,1,308 +5652,21228368,Queens,Forest Hills,40.71293,-73.84915,Private room,70,1,11,0.19,5,183 +5653,1923075,Manhattan,Upper West Side,40.79145,-73.97709,Entire home/apt,170,5,1,0.02,1,0 +5654,17249397,Manhattan,Financial District,40.70499,-74.00819,Entire home/apt,150,1,2,0.04,2,0 +5655,21380762,Manhattan,East Harlem,40.80738,-73.93706999999999,Entire home/apt,75,30,6,0.12,1,203 +5656,21400083,Manhattan,Upper West Side,40.78732,-73.97489,Private room,100,1,10,0.21,1,0 +5657,21400616,Brooklyn,Crown Heights,40.67673,-73.9362,Private room,38,2,12,0.21,2,351 +5658,21405141,Manhattan,Gramercy,40.733270000000005,-73.98503000000001,Entire home/apt,200,3,13,0.22,1,157 +5659,19802029,Manhattan,Hell's Kitchen,40.76468,-73.98514,Entire home/apt,145,7,37,0.65,1,97 +5660,21336880,Brooklyn,Crown Heights,40.67822,-73.95883,Entire home/apt,150,5,14,0.29,1,0 +5661,828682,Queens,Long Island City,40.74264,-73.95121999999999,Entire home/apt,200,1,2,0.04,1,0 +5662,20543178,Brooklyn,Bedford-Stuyvesant,40.67879,-73.93653,Entire home/apt,125,2,191,3.27,2,311 +5663,21416490,Manhattan,Murray Hill,40.74713,-73.98075,Private room,175,2,8,0.43,1,177 +5664,6885530,Brooklyn,Cobble Hill,40.6883,-73.99132,Entire home/apt,180,2,2,0.03,1,0 +5665,8280108,Manhattan,East Village,40.728840000000005,-73.98277,Entire home/apt,175,3,6,0.13,1,18 +5666,702419,Manhattan,Chelsea,40.75097,-73.99562,Entire home/apt,175,14,78,1.36,1,0 +5667,11555258,Brooklyn,Kensington,40.644490000000005,-73.97238,Private room,50,3,8,0.14,2,14 +5668,21422095,Brooklyn,Flatbush,40.64335,-73.96316,Entire home/apt,109,2,37,0.64,1,356 +5669,18397763,Brooklyn,Bedford-Stuyvesant,40.687059999999995,-73.93077,Private room,67,2,21,0.36,7,58 +5670,18397763,Brooklyn,Bedford-Stuyvesant,40.68707,-73.93247,Private room,57,2,22,0.38,7,71 +5671,18397763,Brooklyn,Bedford-Stuyvesant,40.68627,-73.93131,Private room,77,2,38,0.66,7,66 +5672,9234456,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93387,Private room,80,2,61,1.05,2,0 +5673,20169986,Brooklyn,Flatbush,40.63146,-73.96486,Entire home/apt,85,3,12,0.21,1,97 +5674,21020951,Brooklyn,Bedford-Stuyvesant,40.69562,-73.93791999999999,Private room,86,2,11,0.19,5,311 +5675,15908653,Brooklyn,Flatbush,40.63268,-73.96059,Private room,120,2,114,1.96,2,312 +5676,7677048,Brooklyn,Downtown Brooklyn,40.69682,-73.9837,Entire home/apt,140,3,131,3.24,1,28 +5677,2011110,Brooklyn,Fort Greene,40.68786,-73.97339000000001,Entire home/apt,300,1,5,0.09,1,0 +5678,21455632,Manhattan,Harlem,40.82498,-73.93629,Private room,90,1,5,0.11,1,0 +5679,21455957,Manhattan,Harlem,40.81892,-73.94646999999999,Private room,70,3,86,1.48,2,157 +5680,14952623,Manhattan,Harlem,40.80985,-73.94348000000001,Private room,90,2,82,1.53,1,0 +5681,21459667,Manhattan,Lower East Side,40.72005,-73.98649,Entire home/apt,200,30,35,0.61,1,286 +5682,9232428,Manhattan,East Village,40.72934,-73.98603,Entire home/apt,135,1,6,0.1,1,0 +5683,7410674,Brooklyn,Bushwick,40.70495,-73.9209,Private room,37,1,202,3.74,1,73 +5684,11134688,Brooklyn,Williamsburg,40.71243,-73.95655,Private room,60,1,1,0.02,1,0 +5685,3507684,Manhattan,Upper West Side,40.776070000000004,-73.98035,Entire home/apt,419,2,10,0.47,1,10 +5686,3145112,Queens,Ridgewood,40.70293,-73.90771,Entire home/apt,130,7,2,0.03,1,0 +5687,21466751,Brooklyn,Windsor Terrace,40.65282,-73.97394,Entire home/apt,180,3,56,0.99,1,121 +5688,6087686,Manhattan,Upper East Side,40.76968,-73.9593,Entire home/apt,160,2,7,0.12,1,0 +5689,7243674,Brooklyn,Greenpoint,40.72126,-73.94328,Entire home/apt,125,2,204,3.51,1,71 +5690,21480710,Brooklyn,Bedford-Stuyvesant,40.685140000000004,-73.93207,Entire home/apt,100,1,0,,2,0 +5691,21228368,Queens,Forest Hills,40.711459999999995,-73.84676999999999,Private room,65,4,20,0.35,5,133 +5692,18189742,Brooklyn,Sunset Park,40.66355,-73.99547,Entire home/apt,140,1,0,,1,0 +5693,1756624,Queens,Sunnyside,40.740590000000005,-73.91985,Private room,79,3,23,0.4,1,88 +5694,21500500,Brooklyn,Williamsburg,40.717940000000006,-73.95682,Private room,125,2,0,,1,0 +5695,21501965,Manhattan,Chelsea,40.74411,-74.00204000000001,Entire home/apt,115,3,33,0.57,1,11 +5696,651818,Manhattan,Hell's Kitchen,40.7555,-73.9926,Private room,100,23,12,0.22,1,23 +5697,21505913,Brooklyn,Crown Heights,40.67205,-73.95092,Private room,90,12,24,0.41,1,64 +5698,11950557,Manhattan,Harlem,40.80709,-73.94951999999999,Entire home/apt,135,2,232,4.01,1,192 +5699,4375988,Brooklyn,Prospect-Lefferts Gardens,40.660790000000006,-73.95693,Private room,50,3,47,0.84,3,76 +5700,7848968,Brooklyn,Prospect Heights,40.67579,-73.9679,Private room,71,2,174,3.0,2,3 +5701,21535262,Queens,Ridgewood,40.70599,-73.89755,Entire home/apt,80,30,4,0.08,1,220 +5702,21546973,Manhattan,Hell's Kitchen,40.76444,-73.98965,Private room,103,1,394,6.79,1,237 +5703,17477908,Manhattan,Upper West Side,40.79545,-73.96595,Entire home/apt,250,30,5,0.1,10,303 +5704,21560088,Manhattan,East Village,40.72784,-73.99104,Entire home/apt,219,2,9,0.15,1,0 +5705,11948817,Brooklyn,Canarsie,40.628640000000004,-73.89265,Entire home/apt,225,2,11,0.22,2,305 +5706,21565088,Manhattan,East Harlem,40.79591,-73.93316,Entire home/apt,99,1,50,0.87,1,333 +5707,3563,Brooklyn,Sunset Park,40.64076,-74.0224,Private room,35,6,1,0.02,1,0 +5708,9432174,Manhattan,Upper East Side,40.76805,-73.95424,Private room,90,4,87,2.01,1,10 +5709,19139700,Queens,Ridgewood,40.69518,-73.9038,Private room,47,30,4,0.07,1,157 +5710,17462748,Brooklyn,Crown Heights,40.67495,-73.93845,Private room,75,5,125,2.15,5,108 +5711,6580488,Brooklyn,Windsor Terrace,40.65337,-73.97483000000001,Entire home/apt,170,4,43,0.77,1,275 +5712,21601222,Brooklyn,Flatbush,40.63512,-73.95815,Entire home/apt,150,3,37,0.86,1,320 +5713,1267556,Brooklyn,Flatbush,40.63995,-73.96195999999999,Shared room,30,1,81,1.39,1,319 +5714,6897051,Manhattan,Upper West Side,40.78398,-73.97795,Private room,119,4,7,0.12,2,0 +5715,21609476,Brooklyn,Midwood,40.6251,-73.96163,Private room,40,15,1,0.02,1,0 +5716,17451048,Brooklyn,Fort Greene,40.6888,-73.97635,Entire home/apt,85,2,1,0.03,1,0 +5717,1401835,Brooklyn,Williamsburg,40.71007,-73.95653,Private room,99,3,19,0.33,3,354 +5718,15573381,Manhattan,Upper West Side,40.78085,-73.98470999999999,Entire home/apt,250,1,0,,1,0 +5719,4403262,Manhattan,Lower East Side,40.71906,-73.98433,Private room,79,9,5,0.09,1,0 +5720,20979241,Brooklyn,Williamsburg,40.72022,-73.96055,Private room,60,3,5,0.1,1,0 +5721,5243122,Brooklyn,Bedford-Stuyvesant,40.6805,-73.93775,Entire home/apt,115,3,131,2.27,2,241 +5722,21634948,Queens,Ditmars Steinway,40.77375,-73.91646,Private room,90,3,17,0.31,1,340 +5723,9452830,Brooklyn,Bushwick,40.70732,-73.91926,Private room,65,1,32,0.55,1,188 +5724,21641206,Brooklyn,Bedford-Stuyvesant,40.6956,-73.94827,Private room,65,1,357,6.19,4,321 +5725,733543,Manhattan,Harlem,40.80849,-73.9446,Entire home/apt,131,3,10,0.27,1,12 +5726,21645208,Brooklyn,Bushwick,40.69917,-73.93146,Entire home/apt,150,1,3,0.05,1,0 +5727,6032480,Brooklyn,Williamsburg,40.7095,-73.94945,Private room,55,2,86,1.49,2,38 +5728,17462748,Brooklyn,Crown Heights,40.67412,-73.93833000000001,Private room,70,5,92,1.58,5,148 +5729,21652004,Queens,Astoria,40.756370000000004,-73.92132,Entire home/apt,160,2,1,0.04,1,0 +5730,21653460,Brooklyn,Bedford-Stuyvesant,40.6942,-73.95269,Entire home/apt,95,7,69,1.79,2,0 +5731,9197440,Manhattan,Harlem,40.81619,-73.94003000000001,Entire home/apt,99,3,5,0.09,1,0 +5732,5739699,Manhattan,SoHo,40.7244,-73.99763,Entire home/apt,500,3,3,0.05,1,0 +5733,21660125,Brooklyn,Bushwick,40.69358,-73.91914,Private room,35,15,1,0.03,1,0 +5734,21663531,Queens,Ridgewood,40.7078,-73.90177,Private room,50,21,38,0.76,2,245 +5735,17462748,Brooklyn,Crown Heights,40.675990000000006,-73.93995,Private room,77,5,108,2.14,5,129 +5736,21680683,Brooklyn,Williamsburg,40.719609999999996,-73.95837,Entire home/apt,380,3,105,1.82,2,264 +5737,21682640,Brooklyn,Flatbush,40.642509999999994,-73.9597,Private room,65,30,0,,2,365 +5738,21688467,Manhattan,Lower East Side,40.718140000000005,-73.98411,Entire home/apt,150,60,9,0.16,1,210 +5739,1475015,Manhattan,Hell's Kitchen,40.76239,-73.99226999999999,Entire home/apt,125,30,0,,52,331 +5740,18049970,Brooklyn,Bedford-Stuyvesant,40.68312,-73.92506999999999,Entire home/apt,199,3,82,1.78,2,269 +5741,3267848,Brooklyn,Williamsburg,40.70969,-73.96225,Private room,150,1,12,0.21,1,180 +5742,9405848,Manhattan,West Village,40.73314,-74.00475,Entire home/apt,145,3,11,0.34,1,0 +5743,21705739,Brooklyn,Crown Heights,40.67196,-73.93824000000001,Private room,70,7,20,0.35,1,364 +5744,21706654,Brooklyn,Bedford-Stuyvesant,40.684540000000005,-73.93178,Entire home/apt,120,30,131,2.29,1,336 +5745,919218,Manhattan,Harlem,40.806059999999995,-73.95061,Private room,86,3,34,1.0,1,359 +5746,20289059,Manhattan,Upper East Side,40.7661,-73.9573,Entire home/apt,139,2,160,2.76,1,248 +5747,12360407,Brooklyn,Bay Ridge,40.62433,-74.02892,Private room,85,2,1,0.02,1,0 +5748,5309160,Manhattan,Upper East Side,40.77065,-73.95064,Entire home/apt,94,30,15,0.26,1,309 +5749,610819,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93058,Entire home/apt,116,2,148,2.56,1,0 +5750,4152484,Brooklyn,Prospect-Lefferts Gardens,40.66018,-73.96005,Private room,72,1,229,3.94,1,20 +5751,21734605,Brooklyn,Park Slope,40.67925,-73.97463,Entire home/apt,95,4,0,,2,0 +5752,21739563,Brooklyn,Bedford-Stuyvesant,40.69525,-73.93768,Private room,100,1,0,,1,0 +5753,17106992,Manhattan,Murray Hill,40.74643,-73.97536,Entire home/apt,200,1,1,0.02,1,0 +5754,21751476,Brooklyn,Bushwick,40.69233,-73.90579,Private room,72,1,360,6.22,1,66 +5755,21759005,Manhattan,Inwood,40.864959999999996,-73.9262,Entire home/apt,100,3,15,0.27,1,0 +5756,10367443,Manhattan,SoHo,40.72149,-73.99815,Entire home/apt,900,3,10,0.17,1,0 +5757,191324,Queens,Sunnyside,40.74944,-73.91360999999999,Private room,80,2,76,1.31,2,102 +5758,21768291,Brooklyn,Greenpoint,40.72401,-73.94015999999999,Entire home/apt,75,2,0,,1,0 +5759,21777274,Manhattan,Upper East Side,40.76169,-73.95682,Entire home/apt,92,4,179,3.14,1,245 +5760,7805184,Manhattan,East Village,40.72956,-73.98275,Entire home/apt,160,3,0,,1,0 +5761,21782731,Brooklyn,Midwood,40.62735,-73.95704,Private room,50,7,7,0.12,1,364 +5762,21787420,Manhattan,East Village,40.73062,-73.99122,Entire home/apt,350,2,0,,1,0 +5763,21789707,Brooklyn,South Slope,40.6656,-73.98575,Entire home/apt,135,2,128,2.23,1,245 +5764,4738242,Manhattan,Financial District,40.709559999999996,-74.01341,Entire home/apt,160,7,3,0.05,1,0 +5765,12419083,Manhattan,Kips Bay,40.7444,-73.98031,Entire home/apt,270,1,0,,1,0 +5766,21811394,Brooklyn,Bedford-Stuyvesant,40.6789,-73.94001,Entire home/apt,129,1,223,3.91,1,230 +5767,17550546,Manhattan,Greenwich Village,40.732929999999996,-73.99781999999999,Entire home/apt,180,1250,2,0.03,1,365 +5768,1162642,Manhattan,NoHo,40.725770000000004,-73.99337,Entire home/apt,350,2,0,,2,0 +5769,6468894,Brooklyn,Williamsburg,40.71564,-73.95107,Private room,75,1,10,0.17,1,0 +5770,20312973,Brooklyn,Sunset Park,40.664229999999996,-73.99565,Entire home/apt,119,5,6,0.11,1,0 +5771,18382740,Staten Island,Tompkinsville,40.634809999999995,-74.09591,Entire home/apt,99,7,35,0.61,1,326 +5772,2423107,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.95965,Entire home/apt,120,1,4,0.07,1,0 +5773,17462748,Brooklyn,Crown Heights,40.674170000000004,-73.94028,Private room,73,5,102,1.88,5,147 +5774,4218058,Brooklyn,Fort Greene,40.68526,-73.97154,Entire home/apt,500,7,11,0.2,2,173 +5775,20700823,Manhattan,Greenwich Village,40.73473,-73.99244,Entire home/apt,225,1,1,0.02,1,0 +5776,21064917,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95198,Entire home/apt,275,3,3,0.05,1,0 +5777,1172202,Queens,Ditmars Steinway,40.769890000000004,-73.90735,Private room,50,1,127,2.25,5,52 +5778,7549,Manhattan,Lower East Side,40.71329,-73.99047,Shared room,40,1,88,1.53,4,197 +5779,14565233,Brooklyn,Williamsburg,40.71543,-73.94159,Entire home/apt,115,2,3,0.05,1,0 +5780,1361993,Bronx,Kingsbridge,40.883990000000004,-73.89502,Entire home/apt,110,2,0,,1,0 +5781,21881605,Brooklyn,Crown Heights,40.67658,-73.9444,Private room,100,1,0,,2,83 +5782,15243531,Brooklyn,Williamsburg,40.717220000000005,-73.95862,Entire home/apt,150,2,4,0.07,1,0 +5783,9904977,Brooklyn,Greenpoint,40.72309,-73.93767,Entire home/apt,200,3,95,1.65,1,358 +5784,21886798,Manhattan,Washington Heights,40.84261,-73.93771,Entire home/apt,75,7,1,0.09,1,0 +5785,10618980,Queens,Ridgewood,40.70729,-73.91696999999999,Entire home/apt,98,2,157,2.73,1,15 +5786,6841194,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91971,Entire home/apt,199,2,222,3.92,2,238 +5787,20448670,Manhattan,Harlem,40.81422,-73.94844,Entire home/apt,109,2,11,0.19,1,0 +5788,21892444,Manhattan,Harlem,40.80653,-73.95194000000001,Entire home/apt,110,4,26,0.45,1,14 +5789,21641206,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94785999999999,Private room,59,1,350,6.05,4,328 +5790,21902316,Brooklyn,Bushwick,40.70071,-73.92913,Entire home/apt,95,2,19,0.44,2,172 +5791,21903562,Manhattan,Chelsea,40.74588,-74.00055,Entire home/apt,159,1,202,3.53,1,234 +5792,20335235,Manhattan,Midtown,40.755759999999995,-73.96548,Entire home/apt,225,1,10,0.18,1,0 +5793,21921207,Brooklyn,Boerum Hill,40.684490000000004,-73.98524,Entire home/apt,195,2,116,2.02,1,260 +5794,21929547,Queens,Astoria,40.76273,-73.90579,Entire home/apt,96,1,196,3.44,1,316 +5795,21930475,Brooklyn,Clinton Hill,40.68275,-73.96542,Entire home/apt,73,2,7,0.13,1,0 +5796,21930989,Manhattan,Upper West Side,40.78883,-73.97616,Private room,88,1,319,5.6,2,251 +5797,20112613,Brooklyn,Williamsburg,40.70013,-73.95165,Entire home/apt,90,2,3,0.05,1,0 +5798,14543419,Brooklyn,Crown Heights,40.6721,-73.95371999999999,Entire home/apt,99,5,16,0.28,1,0 +5799,21937306,Brooklyn,Williamsburg,40.71752,-73.94187,Shared room,150,1,0,,1,0 +5800,21938126,Brooklyn,Bedford-Stuyvesant,40.68724,-73.94218000000001,Private room,35,2,11,0.81,2,11 +5801,20318233,Brooklyn,Bedford-Stuyvesant,40.68542,-73.95184,Entire home/apt,1050,3,121,2.19,1,327 +5802,21938678,Brooklyn,South Slope,40.66752,-73.98892,Entire home/apt,175,2,76,1.33,1,308 +5803,2811458,Manhattan,Chelsea,40.747240000000005,-74.00355,Entire home/apt,395,4,73,1.27,1,2 +5804,21941065,Queens,Woodside,40.7426,-73.90706,Entire home/apt,195,3,124,2.2,1,305 +5805,21962039,Brooklyn,Bay Ridge,40.62605,-74.03014,Private room,49,10,7,0.14,1,281 +5806,9368118,Manhattan,Upper East Side,40.77065,-73.95163000000001,Entire home/apt,150,1,0,,1,0 +5807,21964818,Manhattan,Upper West Side,40.782779999999995,-73.97437,Entire home/apt,250,1,1,0.02,1,0 +5808,651771,Brooklyn,Williamsburg,40.7068,-73.93772,Entire home/apt,150,4,17,0.3,1,170 +5809,11243583,Manhattan,Upper West Side,40.77715,-73.98235,Entire home/apt,260,1,0,,1,0 +5810,21979970,Queens,Flushing,40.73303,-73.79736,Entire home/apt,100,7,9,0.16,1,268 +5811,20559017,Manhattan,East Harlem,40.78627,-73.94315999999999,Private room,55,30,4,0.07,9,339 +5812,16276317,Manhattan,Chelsea,40.74366,-73.99721,Entire home/apt,275,3,1,0.03,1,0 +5813,14729523,Manhattan,West Village,40.73408,-74.0057,Private room,110,1,0,,1,0 +5814,3650005,Brooklyn,Clinton Hill,40.69191,-73.96624,Entire home/apt,150,3,0,,1,0 +5815,22005943,Brooklyn,Bushwick,40.69108,-73.91443000000001,Private room,80,2,129,2.24,1,346 +5816,22006854,Queens,Jamaica,40.6852,-73.7962,Entire home/apt,89,1,352,6.1,1,359 +5817,22009089,Manhattan,East Village,40.72685,-73.98638000000001,Entire home/apt,280,2,92,1.59,1,173 +5818,8732038,Queens,Woodside,40.74808,-73.90404000000001,Private room,100,1,0,,1,0 +5819,21062282,Brooklyn,Greenpoint,40.73235,-73.95106,Private room,80,2,0,,1,0 +5820,22023014,Brooklyn,Bedford-Stuyvesant,40.694959999999995,-73.93949,Private room,70,1,110,1.96,1,323 +5821,782008,Brooklyn,Greenpoint,40.73093,-73.95331999999999,Private room,75,1,1,0.02,1,0 +5822,4162754,Brooklyn,Williamsburg,40.71295,-73.9623,Private room,80,1,52,1.12,1,297 +5823,21977919,Manhattan,Washington Heights,40.8544,-73.93091,Shared room,41,1,1,0.02,1,0 +5824,22010885,Manhattan,West Village,40.73545,-74.00097,Entire home/apt,195,4,1,0.02,1,0 +5825,22047286,Manhattan,Upper West Side,40.77881,-73.97726,Entire home/apt,250,2,5,0.11,1,0 +5826,12534414,Manhattan,East Village,40.73175,-73.98756,Entire home/apt,96,1,198,3.47,1,169 +5827,2495483,Manhattan,Financial District,40.70948,-74.00654,Private room,98,7,23,0.55,1,116 +5828,22057975,Brooklyn,Bushwick,40.69271,-73.92535,Entire home/apt,140,4,120,2.09,1,100 +5829,13949526,Brooklyn,Williamsburg,40.70028,-73.95439,Private room,99,1,0,,1,0 +5830,1542713,Manhattan,West Village,40.73539,-74.00818000000001,Entire home/apt,175,2,105,1.88,1,276 +5831,19644682,Manhattan,Upper West Side,40.78245,-73.98163000000001,Entire home/apt,120,6,5,0.09,1,0 +5832,22096807,Manhattan,Morningside Heights,40.8049,-73.96558,Private room,89,1,46,1.33,1,363 +5833,20408723,Brooklyn,Bushwick,40.69863,-73.91235,Private room,90,3,0,,1,0 +5834,1663994,Brooklyn,Fort Greene,40.68796,-73.97735,Entire home/apt,178,3,11,0.24,1,32 +5835,21833312,Brooklyn,Crown Heights,40.67027,-73.94033,Entire home/apt,210,6,27,0.47,1,302 +5836,16212001,Manhattan,Harlem,40.81774,-73.94595,Entire home/apt,150,4,82,1.53,1,46 +5837,22022473,Manhattan,Harlem,40.80936,-73.94454,Entire home/apt,149,2,82,1.43,1,215 +5838,8533891,Manhattan,Hell's Kitchen,40.76443,-73.99184,Entire home/apt,225,3,2,0.03,1,0 +5839,6914968,Manhattan,Upper West Side,40.7681,-73.98376999999999,Entire home/apt,2695,1,0,,1,0 +5840,22124628,Queens,Howard Beach,40.65443,-73.84605,Entire home/apt,63,30,2,0.03,1,362 +5841,7651028,Manhattan,Hell's Kitchen,40.76842,-73.98589,Entire home/apt,150,1,0,,1,0 +5842,22131209,Brooklyn,Crown Heights,40.67566,-73.93944,Entire home/apt,106,3,15,0.26,1,0 +5843,11189753,Brooklyn,Fort Greene,40.68562,-73.9693,Entire home/apt,165,10,36,0.63,4,328 +5844,3609048,Brooklyn,Crown Heights,40.67009,-73.9329,Private room,75,2,25,0.43,3,365 +5845,3250450,Queens,Astoria,40.764959999999995,-73.91169000000001,Private room,39,31,5,0.1,18,310 +5846,3250450,Queens,Astoria,40.758959999999995,-73.9153,Private room,39,30,13,0.26,18,341 +5847,3294438,Brooklyn,Bedford-Stuyvesant,40.68676,-73.95801,Shared room,30,2,13,0.37,3,339 +5848,6793885,Manhattan,Lower East Side,40.72156,-73.98711999999999,Private room,70,1,2,0.03,1,0 +5849,22158091,Manhattan,East Harlem,40.796079999999996,-73.93819,Private room,100,3,140,2.45,1,66 +5850,22171095,Queens,Astoria,40.763690000000004,-73.92291,Entire home/apt,125,2,112,1.94,2,0 +5851,5835210,Queens,Astoria,40.76386,-73.91001999999999,Entire home/apt,110,3,3,0.05,1,342 +5852,208565,Brooklyn,Greenpoint,40.73527,-73.95398,Entire home/apt,145,2,7,0.13,2,0 +5853,15638520,Manhattan,Upper West Side,40.76845,-73.9832,Private room,112,3,126,2.92,1,230 +5854,21091779,Brooklyn,Bedford-Stuyvesant,40.6869,-73.92254,Private room,69,1,121,2.68,3,286 +5855,22188911,Manhattan,Upper East Side,40.767509999999994,-73.96309000000001,Entire home/apt,300,4,57,1.08,1,0 +5856,22131245,Manhattan,Midtown,40.75195,-73.97191,Private room,260,2,1,0.03,1,177 +5857,22189723,Queens,Ridgewood,40.704390000000004,-73.91111,Private room,49,2,37,0.73,2,298 +5858,16666294,Manhattan,Tribeca,40.71743,-74.00623,Entire home/apt,215,2,23,0.4,1,187 +5859,22088164,Manhattan,East Harlem,40.80751,-73.94097,Entire home/apt,200,3,162,2.84,1,208 +5860,22198017,Brooklyn,Bushwick,40.69341,-73.92266,Entire home/apt,100,15,0,,1,0 +5861,9854191,Manhattan,Harlem,40.80469,-73.94594000000001,Entire home/apt,1000,3,38,0.72,1,270 +5862,1405217,Manhattan,Chelsea,40.75238,-73.9945,Entire home/apt,120,3,18,0.31,1,0 +5863,2807798,Manhattan,Harlem,40.83048,-73.9437,Entire home/apt,310,1,64,1.32,2,7 +5864,14279331,Brooklyn,Gowanus,40.67044,-73.99157,Private room,70,4,91,3.64,1,0 +5865,6894447,Brooklyn,Williamsburg,40.71484,-73.96741999999999,Entire home/apt,195,2,57,0.99,1,15 +5866,22209733,Brooklyn,Crown Heights,40.67484,-73.95751,Entire home/apt,110,2,32,0.56,1,264 +5867,17770287,Manhattan,Midtown,40.75062,-73.98246999999999,Entire home/apt,75,30,13,0.23,14,167 +5868,295128,Bronx,Clason Point,40.81231,-73.85535,Shared room,45,1,7,0.14,7,365 +5869,1143151,Manhattan,Lower East Side,40.72184,-73.98755,Entire home/apt,165,3,23,0.41,1,0 +5870,22216726,Queens,Ridgewood,40.70463,-73.90132,Entire home/apt,150,2,77,1.5,1,24 +5871,21140491,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.9484,Private room,80,1,2,0.03,1,0 +5872,22218694,Manhattan,Lower East Side,40.719120000000004,-73.9863,Entire home/apt,180,2,122,2.15,2,362 +5873,20243795,Brooklyn,Bedford-Stuyvesant,40.68206,-73.95441,Private room,80,2,100,1.73,3,365 +5874,1990602,Brooklyn,Bushwick,40.707409999999996,-73.92239000000001,Private room,60,3,2,0.04,1,0 +5875,22227178,Manhattan,Greenwich Village,40.73341,-73.99489,Entire home/apt,149,1,26,0.45,1,0 +5876,21641206,Brooklyn,Bedford-Stuyvesant,40.69724,-73.94914,Private room,53,1,351,6.09,4,0 +5877,9471525,Manhattan,Kips Bay,40.74092,-73.97816999999999,Entire home/apt,200,7,9,0.16,1,291 +5878,4532548,Manhattan,Chelsea,40.74305,-73.99733,Entire home/apt,160,2,79,1.38,1,108 +5879,22240717,Manhattan,East Village,40.72833,-73.98917,Private room,199,1,0,,1,0 +5880,22248783,Manhattan,Lower East Side,40.71281,-73.99174000000001,Entire home/apt,140,1,16,0.28,1,0 +5881,6280254,Manhattan,East Village,40.73045,-73.98392,Entire home/apt,199,4,8,0.19,2,232 +5882,22253568,Manhattan,Greenwich Village,40.73032,-73.99976,Entire home/apt,190,1,43,0.75,1,3 +5883,15715046,Brooklyn,Sunset Park,40.65031,-74.00239,Entire home/apt,125,2,51,0.89,1,351 +5884,3750547,Manhattan,Upper East Side,40.76051,-73.96083,Entire home/apt,145,3,62,1.1,1,50 +5885,1994261,Manhattan,East Village,40.73046,-73.98808000000001,Entire home/apt,150,3,1,0.02,1,0 +5886,19597910,Queens,Forest Hills,40.7269,-73.83952,Private room,95,2,42,0.74,3,334 +5887,22280299,Brooklyn,Williamsburg,40.70407,-73.93562,Private room,100,1,0,,1,0 +5888,1141935,Brooklyn,Crown Heights,40.67391,-73.9472,Private room,99,1,74,1.34,3,290 +5889,13402436,Brooklyn,Greenpoint,40.7223,-73.94938,Entire home/apt,130,1,43,0.84,1,0 +5890,21499988,Brooklyn,Williamsburg,40.71613,-73.95336,Private room,56,1,1,0.02,1,0 +5891,4473916,Manhattan,Greenwich Village,40.73175,-73.99518,Entire home/apt,450,1,1,0.02,1,0 +5892,19841476,Manhattan,East Harlem,40.80161,-73.94277,Private room,75,1,7,0.2,1,0 +5893,19174715,Brooklyn,Brooklyn Heights,40.69276,-73.9963,Private room,240,2,45,0.79,1,348 +5894,7503643,Brooklyn,Greenpoint,40.7255,-73.9409,Entire home/apt,129,30,1,0.02,52,300 +5895,10981052,Brooklyn,East Flatbush,40.64768,-73.95138,Private room,45,1,5,0.27,1,0 +5896,22299389,Manhattan,Hell's Kitchen,40.7555,-73.99369,Entire home/apt,259,4,25,0.44,1,255 +5897,22303517,Manhattan,East Harlem,40.78907,-73.94877,Entire home/apt,75,1,107,1.91,1,116 +5898,1260921,Bronx,Kingsbridge,40.86809,-73.90201,Private room,37,2,63,1.15,2,305 +5899,22307859,Brooklyn,Canarsie,40.63621,-73.89407,Entire home/apt,210,3,11,2.75,5,83 +5900,22305520,Manhattan,Chelsea,40.7492,-73.99847,Entire home/apt,199,2,194,3.37,2,178 +5901,17164818,Brooklyn,Clinton Hill,40.68566,-73.96021999999999,Entire home/apt,189,8,33,0.58,1,271 +5902,4600692,Queens,Long Island City,40.74742,-73.94646999999999,Private room,58,1,33,1.98,1,101 +5903,2822805,Brooklyn,Bedford-Stuyvesant,40.68531,-73.95185,Private room,60,30,44,0.78,8,99 +5904,3578009,Queens,Long Island City,40.74853,-73.95068,Entire home/apt,190,1,34,0.6,2,182 +5905,5918341,Brooklyn,Clinton Hill,40.681470000000004,-73.96488000000001,Entire home/apt,139,2,88,1.53,2,82 +5906,16798055,Manhattan,Hell's Kitchen,40.76502,-73.98931999999999,Entire home/apt,125,1,186,3.28,1,193 +5907,22364611,Brooklyn,Williamsburg,40.716029999999996,-73.9547,Private room,94,2,46,0.9,1,267 +5908,16906759,Manhattan,Upper East Side,40.77254,-73.96193000000001,Entire home/apt,100,2,58,1.02,1,9 +5909,6195809,Manhattan,East Village,40.72607,-73.98867,Private room,149,364,8,0.17,1,90 +5910,22367030,Manhattan,East Village,40.72603,-73.98897,Private room,128,7,15,0.26,1,249 +5911,13063145,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95266,Entire home/apt,160,3,149,2.61,2,303 +5912,1918986,Brooklyn,Park Slope,40.666509999999995,-73.97922,Entire home/apt,160,31,8,0.17,1,296 +5913,21127377,Manhattan,East Village,40.72627,-73.98915,Private room,110,3,64,1.26,1,14 +5914,4644513,Brooklyn,Williamsburg,40.71436,-73.96361999999999,Entire home/apt,285,3,43,0.75,1,12 +5915,22405856,Brooklyn,Bedford-Stuyvesant,40.6792,-73.90937,Entire home/apt,75,10,2,0.1,1,349 +5916,22420381,Manhattan,Chelsea,40.740390000000005,-74.00356,Entire home/apt,650,7,6,0.13,1,358 +5917,11790239,Manhattan,Harlem,40.81599,-73.94676,Entire home/apt,133,1,20,0.36,3,345 +5918,2999445,Manhattan,East Village,40.73073,-73.98105,Entire home/apt,149,2,36,0.79,1,0 +5919,22459182,Manhattan,Upper East Side,40.78535,-73.94997,Entire home/apt,210,1,0,,1,0 +5920,1537663,Manhattan,Upper West Side,40.78667,-73.96924,Entire home/apt,200,2,56,0.98,1,226 +5921,2657430,Manhattan,Chelsea,40.74751,-74.00086,Private room,110,6,20,0.36,2,0 +5922,22487371,Manhattan,Hell's Kitchen,40.755790000000005,-73.99154,Entire home/apt,375,3,13,0.23,1,0 +5923,22490457,Manhattan,Lower East Side,40.71845,-73.986,Entire home/apt,95,10,2,0.04,1,0 +5924,11790239,Manhattan,Harlem,40.816179999999996,-73.94516999999999,Entire home/apt,94,1,23,0.57,3,316 +5925,8659738,Brooklyn,South Slope,40.6631,-73.98603,Entire home/apt,120,3,118,2.07,1,266 +5926,2357221,Brooklyn,Williamsburg,40.711040000000004,-73.95917,Entire home/apt,150,5,1,0.02,1,0 +5927,2119276,Manhattan,Chelsea,40.739470000000004,-74.00114,Entire home/apt,160,30,6,0.12,39,267 +5928,22410033,Manhattan,Morningside Heights,40.808009999999996,-73.9582,Entire home/apt,132,2,9,0.16,1,0 +5929,910592,Brooklyn,Bedford-Stuyvesant,40.6845,-73.93968000000001,Entire home/apt,102,1,10,0.18,1,4 +5930,22526585,Brooklyn,Bedford-Stuyvesant,40.6933,-73.94976,Entire home/apt,85,1,84,1.46,1,286 +5931,3341356,Brooklyn,Fort Greene,40.691720000000004,-73.9703,Entire home/apt,142,6,2,0.04,1,0 +5932,22527661,Queens,Astoria,40.762609999999995,-73.91767,Private room,70,3,2,0.05,1,23 +5933,22530714,Brooklyn,Bushwick,40.6989,-73.92904,Entire home/apt,200,90,91,1.59,1,365 +5934,7503643,Brooklyn,Greenpoint,40.72603,-73.94147,Entire home/apt,199,30,5,0.09,52,339 +5935,22448247,Brooklyn,East Flatbush,40.65337,-73.91229,Entire home/apt,100,3,62,1.19,1,343 +5936,3800365,Brooklyn,Williamsburg,40.718740000000004,-73.94055,Entire home/apt,123,3,21,0.61,1,0 +5937,356690,Brooklyn,Flatlands,40.62677,-73.9326,Entire home/apt,175,2,17,0.49,1,0 +5938,3822369,Manhattan,Upper East Side,40.7681,-73.96018000000001,Private room,100,4,14,0.25,1,0 +5939,22548091,Manhattan,Harlem,40.80733,-73.95642,Private room,57,7,3,0.22,2,222 +5940,22384027,Brooklyn,Crown Heights,40.67122,-73.91813,Private room,39,1,153,2.66,10,178 +5941,22548091,Manhattan,Morningside Heights,40.8067,-73.95799,Private room,107,6,12,0.47,2,251 +5942,22568643,Manhattan,Flatiron District,40.73956,-73.98774,Entire home/apt,2000,7,0,,1,0 +5943,22578720,Brooklyn,Flatbush,40.645070000000004,-73.95933000000001,Private room,69,1,33,0.59,1,0 +5944,21457707,Brooklyn,Greenpoint,40.72623,-73.94298,Entire home/apt,137,5,26,1.16,1,344 +5945,1717520,Manhattan,East Village,40.7239,-73.98312,Entire home/apt,150,5,0,,2,0 +5946,6697886,Manhattan,Harlem,40.81588,-73.94591,Private room,65,3,1,0.02,2,0 +5947,14194388,Manhattan,East Harlem,40.790079999999996,-73.94766,Private room,66,4,1,0.02,1,0 +5948,5982086,Brooklyn,Clinton Hill,40.68485,-73.9643,Private room,77,14,9,0.16,1,0 +5949,16504161,Brooklyn,Prospect Heights,40.67757,-73.96412,Entire home/apt,110,3,8,0.14,1,0 +5950,22595345,Manhattan,Gramercy,40.735409999999995,-73.98061,Private room,64,26,47,0.82,1,331 +5951,16572955,Brooklyn,Canarsie,40.63969,-73.89548,Entire home/apt,90,2,112,1.96,1,349 +5952,14730409,Brooklyn,Williamsburg,40.70941,-73.94556,Private room,50,5,0,,1,0 +5953,20539345,Manhattan,Upper East Side,40.7786,-73.95104,Entire home/apt,146,5,21,1.01,1,0 +5954,7809661,Queens,Ditmars Steinway,40.77172,-73.91769000000001,Entire home/apt,200,1,0,,1,0 +5955,22727798,Queens,Bay Terrace,40.77774,-73.78376,Entire home/apt,189,3,85,1.88,1,330 +5956,22622958,Brooklyn,Park Slope,40.677609999999994,-73.97667,Entire home/apt,985,2,20,1.6,2,19 +5957,20599015,Brooklyn,Bedford-Stuyvesant,40.69103,-73.95441,Entire home/apt,285,2,37,0.65,1,0 +5958,841179,Brooklyn,Bushwick,40.695840000000004,-73.90794,Entire home/apt,140,3,122,2.21,1,251 +5959,2129777,Queens,Long Island City,40.752590000000005,-73.94104,Private room,97,2,14,0.55,2,90 +5960,22240236,Queens,Astoria,40.7672,-73.91198,Entire home/apt,180,2,7,0.31,1,90 +5961,13481367,Manhattan,East Village,40.72841,-73.98231,Entire home/apt,199,2,10,0.18,1,0 +5962,19735589,Brooklyn,Park Slope,40.676829999999995,-73.97617,Entire home/apt,220,2,83,1.48,1,253 +5963,3905383,Manhattan,Lower East Side,40.71847,-73.98246,Entire home/apt,180,3,5,0.13,1,226 +5964,22656394,Brooklyn,Williamsburg,40.70874,-73.95439,Entire home/apt,88,14,5,0.09,1,0 +5965,22657141,Manhattan,Upper West Side,40.77859,-73.9816,Entire home/apt,350,4,0,,1,0 +5966,3081990,Brooklyn,Williamsburg,40.70698,-73.95406,Entire home/apt,170,1,141,3.05,1,28 +5967,2814004,Manhattan,East Village,40.72325,-73.98336,Private room,120,14,14,0.24,2,0 +5968,2814004,Manhattan,East Village,40.72242,-73.98262,Private room,105,2,9,0.16,2,0 +5969,22661286,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93678,Entire home/apt,110,2,192,3.35,1,132 +5970,22661810,Brooklyn,East Flatbush,40.63213,-73.94598,Private room,55,4,10,0.2,2,100 +5971,208410,Brooklyn,Williamsburg,40.71759,-73.95407,Entire home/apt,150,5,7,0.12,1,0 +5972,20243795,Brooklyn,Bedford-Stuyvesant,40.68204,-73.95642,Entire home/apt,180,3,50,0.97,3,365 +5973,14400653,Brooklyn,Greenpoint,40.72668,-73.94728,Entire home/apt,110,2,4,0.12,1,0 +5974,15154,Manhattan,Upper West Side,40.78,-73.97793,Entire home/apt,160,3,5,0.09,1,0 +5975,22686810,Manhattan,Nolita,40.720459999999996,-73.9955,Entire home/apt,215,7,5,0.09,1,0 +5976,22715031,Queens,Astoria,40.76575,-73.92092,Private room,75,5,1,0.02,1,0 +5977,22716230,Manhattan,East Harlem,40.800059999999995,-73.9459,Entire home/apt,200,5,0,,1,0 +5978,18893494,Manhattan,East Harlem,40.79872,-73.9411,Entire home/apt,120,3,6,0.96,1,279 +5979,7245580,Manhattan,East Village,40.72627,-73.98303,Entire home/apt,198,4,180,3.22,1,269 +5980,21902316,Brooklyn,Bushwick,40.702529999999996,-73.92898000000001,Private room,60,2,63,1.68,2,352 +5981,510577,Brooklyn,Bedford-Stuyvesant,40.68578,-73.93965,Entire home/apt,170,3,207,3.76,1,151 +5982,16598048,Manhattan,East Village,40.72902,-73.98814,Entire home/apt,248,6,1,0.02,1,0 +5983,22738480,Brooklyn,Cobble Hill,40.68874,-73.99855,Private room,100,8,1,0.02,1,0 +5984,11742895,Manhattan,West Village,40.73858,-74.00145,Entire home/apt,180,2,1,0.03,1,0 +5985,18674671,Brooklyn,Bushwick,40.69435,-73.91852,Private room,60,2,12,0.21,1,0 +5986,457976,Brooklyn,Bedford-Stuyvesant,40.69017,-73.93951,Entire home/apt,83,2,88,4.66,1,165 +5987,7010789,Brooklyn,Crown Heights,40.67054,-73.95668,Private room,45,2,1,0.03,1,0 +5988,22764554,Brooklyn,Williamsburg,40.71797,-73.95981,Private room,135,1,1,0.02,1,0 +5989,7809712,Manhattan,Lower East Side,40.71938,-73.98906,Entire home/apt,275,3,0,,1,0 +5990,10556597,Manhattan,East Village,40.724779999999996,-73.97771,Entire home/apt,230,3,12,0.21,1,4 +5991,356933,Manhattan,Lower East Side,40.71962,-73.98567,Entire home/apt,180,2,178,3.11,1,227 +5992,22502212,Manhattan,Upper West Side,40.787490000000005,-73.97086999999999,Entire home/apt,175,21,1,0.02,1,0 +5993,21802126,Queens,Belle Harbor,40.573209999999996,-73.85769,Private room,110,2,1,1.0,1,325 +5994,22262958,Brooklyn,Williamsburg,40.711420000000004,-73.95535,Entire home/apt,160,3,87,1.63,1,302 +5995,3597708,Brooklyn,Bedford-Stuyvesant,40.68708,-73.9577,Entire home/apt,115,2,9,0.16,1,0 +5996,22688555,Manhattan,Upper East Side,40.77126,-73.95483,Shared room,169,2,3,0.07,1,0 +5997,5605897,Brooklyn,Williamsburg,40.70903,-73.9394,Private room,100,1,0,,1,0 +5998,1475015,Manhattan,Kips Bay,40.74111,-73.97951,Entire home/apt,87,30,4,0.09,52,325 +5999,20820856,Queens,Ditmars Steinway,40.77431,-73.9114,Private room,75,1,4,1.85,1,0 +6000,844096,Manhattan,Upper West Side,40.78568,-73.97698000000001,Entire home/apt,130,1,10,0.19,1,0 +6001,22805263,Manhattan,West Village,40.7322,-74.00423,Entire home/apt,115,30,7,0.13,1,251 +6002,21228368,Queens,Forest Hills,40.7132,-73.84900999999999,Private room,50,1,1,0.02,5,183 +6003,6032373,Manhattan,Hell's Kitchen,40.7659,-73.99543,Entire home/apt,200,2,2,0.04,1,0 +6004,21228368,Queens,Forest Hills,40.71233,-73.84848000000001,Private room,55,1,13,0.23,5,281 +6005,10952317,Manhattan,Upper East Side,40.77626,-73.95246,Entire home/apt,125,1,7,0.13,1,0 +6006,1167801,Queens,Long Island City,40.75227,-73.95012,Entire home/apt,160,4,79,1.38,1,133 +6007,22384027,Brooklyn,Brownsville,40.66938,-73.91830999999999,Private room,39,1,158,2.77,10,32 +6008,22827111,Manhattan,Hell's Kitchen,40.760490000000004,-73.99569,Private room,89,4,56,0.98,2,301 +6009,5912357,Brooklyn,Canarsie,40.632690000000004,-73.90358,Entire home/apt,85,4,60,1.12,1,247 +6010,22840018,Brooklyn,Crown Heights,40.67828,-73.96228,Private room,50,1,4,0.11,1,0 +6011,2007928,Brooklyn,Bedford-Stuyvesant,40.678490000000004,-73.91672,Entire home/apt,229,2,195,3.41,1,254 +6012,22205787,Manhattan,Morningside Heights,40.80699,-73.95936999999999,Entire home/apt,130,4,4,0.07,1,0 +6013,22780462,Queens,Kew Gardens Hills,40.72891,-73.82588,Entire home/apt,149,3,82,1.55,2,327 +6014,22807362,Brooklyn,Prospect-Lefferts Gardens,40.66025,-73.9627,Entire home/apt,120,3,3,0.05,1,16 +6015,13061093,Brooklyn,Williamsburg,40.70953,-73.95994,Private room,45,1,1,0.02,1,0 +6016,2558779,Queens,Ridgewood,40.70216,-73.90716,Private room,56,3,45,0.88,2,304 +6017,22860848,Manhattan,Upper East Side,40.778909999999996,-73.9484,Entire home/apt,295,6,0,,1,0 +6018,22864208,Brooklyn,Bushwick,40.69703,-73.93207,Private room,75,2,53,1.23,1,340 +6019,2909990,Manhattan,Washington Heights,40.851040000000005,-73.93616999999999,Entire home/apt,110,7,0,,1,0 +6020,5787701,Manhattan,East Harlem,40.78802,-73.95026,Entire home/apt,115,4,68,1.2,1,10 +6021,2770375,Brooklyn,Prospect-Lefferts Gardens,40.662009999999995,-73.95414,Private room,90,4,12,0.37,1,365 +6022,22880393,Manhattan,Lower East Side,40.71287,-73.98685,Private room,109,3,83,1.57,2,355 +6023,16286162,Bronx,Allerton,40.866820000000004,-73.85812,Private room,49,2,42,0.74,4,227 +6024,263500,Brooklyn,East Flatbush,40.66428,-73.92911,Entire home/apt,100,1,102,1.85,2,243 +6025,22886115,Manhattan,East Village,40.731120000000004,-73.98572,Entire home/apt,295,2,4,0.09,1,0 +6026,22893493,Brooklyn,Red Hook,40.68039,-74.01729,Entire home/apt,245,1,50,0.92,1,19 +6027,22904933,Manhattan,East Harlem,40.79765,-73.94022,Private room,79,3,56,1.1,2,90 +6028,10074473,Manhattan,Hell's Kitchen,40.76638,-73.98741,Private room,60,1,22,0.63,1,0 +6029,980118,Brooklyn,Bedford-Stuyvesant,40.69024,-73.95196999999999,Entire home/apt,125,3,7,0.12,1,0 +6030,22628166,Brooklyn,Bushwick,40.69787,-73.93202,Private room,55,1,8,0.17,1,0 +6031,22927481,Manhattan,Midtown,40.765640000000005,-73.98013,Private room,425,7,1,0.02,3,0 +6032,21571748,Brooklyn,Windsor Terrace,40.65783,-73.97501,Entire home/apt,150,14,1,0.03,1,0 +6033,16744487,Brooklyn,Bedford-Stuyvesant,40.693670000000004,-73.93981,Entire home/apt,130,5,0,,1,0 +6034,22927646,Manhattan,Upper East Side,40.773709999999994,-73.95007,Entire home/apt,250,1,0,,1,0 +6035,22954228,Brooklyn,Flatbush,40.65339,-73.962,Private room,49,3,7,0.12,2,0 +6036,651770,Manhattan,East Village,40.72801,-73.98336,Entire home/apt,250,3,0,,1,0 +6037,7183243,Manhattan,Upper West Side,40.79913,-73.95931999999999,Private room,97,2,114,2.0,1,363 +6038,22963957,Manhattan,Harlem,40.804790000000004,-73.9529,Entire home/apt,115,1,8,0.16,1,0 +6039,3447311,Manhattan,Upper West Side,40.80188,-73.96808,Entire home/apt,200,2,22,0.5,1,0 +6040,15310997,Manhattan,Upper East Side,40.782779999999995,-73.9482,Entire home/apt,250,30,4,0.07,9,311 +6041,15310997,Manhattan,Upper East Side,40.78368,-73.94941999999999,Entire home/apt,200,30,8,0.14,9,336 +6042,3641595,Brooklyn,Park Slope,40.67099,-73.98791,Entire home/apt,160,1,323,5.81,1,211 +6043,22980167,Manhattan,Harlem,40.81613,-73.93765,Entire home/apt,90,30,20,0.36,1,249 +6044,11636894,Brooklyn,Fort Greene,40.68499,-73.97403,Entire home/apt,239,3,19,0.33,1,257 +6045,22984252,Manhattan,Washington Heights,40.85083,-73.94093000000001,Entire home/apt,290,4,21,0.37,1,193 +6046,10396079,Brooklyn,Prospect Heights,40.67734,-73.96814,Entire home/apt,150,6,5,0.09,1,0 +6047,1447684,Brooklyn,Greenpoint,40.72951,-73.95525,Private room,55,1,75,1.52,3,173 +6048,2119928,Brooklyn,South Slope,40.66421,-73.98706,Entire home/apt,380,4,7,0.12,1,62 +6049,1728899,Brooklyn,Williamsburg,40.70789,-73.94811,Entire home/apt,120,2,19,1.82,1,11 +6050,819257,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95225,Entire home/apt,200,7,0,,1,0 +6051,22992909,Brooklyn,Carroll Gardens,40.68592,-73.99285,Private room,188,2,0,,1,0 +6052,747934,Brooklyn,Bedford-Stuyvesant,40.69175,-73.92834,Entire home/apt,103,2,5,0.09,1,211 +6053,23002099,Queens,Jamaica Estates,40.71873,-73.80324,Entire home/apt,64,2,192,3.47,1,234 +6054,23002143,Manhattan,East Village,40.72847,-73.98682,Entire home/apt,195,5,3,0.05,1,0 +6055,22382732,Manhattan,Chelsea,40.74726,-74.00213000000001,Shared room,70,2,126,2.61,1,309 +6056,21841949,Manhattan,Harlem,40.80066,-73.95147,Entire home/apt,150,2,36,0.78,2,0 +6057,23025661,Manhattan,West Village,40.73191,-74.00679000000001,Entire home/apt,300,3,0,,1,0 +6058,3708965,Brooklyn,Sunset Park,40.66063,-73.98894,Entire home/apt,60,1,0,,1,0 +6059,21841949,Brooklyn,Crown Heights,40.66825,-73.95304,Private room,150,7,21,0.54,2,292 +6060,23030943,Manhattan,Nolita,40.72144,-73.99435,Private room,105,1,102,1.79,1,362 +6061,974868,Manhattan,Chelsea,40.74635,-73.99604000000001,Entire home/apt,360,3,28,0.5,1,128 +6062,22606202,Manhattan,Harlem,40.80743,-73.95663,Private room,165,2,6,0.12,1,363 +6063,4967319,Manhattan,Chelsea,40.739740000000005,-73.99985,Entire home/apt,325,2,19,0.34,1,0 +6064,3289567,Manhattan,East Village,40.72607,-73.98045,Private room,105,2,9,0.19,2,191 +6065,1405374,Manhattan,Inwood,40.86626,-73.92543,Private room,57,4,0,,1,4 +6066,14612223,Manhattan,East Village,40.726240000000004,-73.99018000000001,Private room,100,6,10,0.61,1,200 +6067,23044811,Brooklyn,Bedford-Stuyvesant,40.68687,-73.94518000000001,Entire home/apt,129,2,179,3.14,2,285 +6068,195137,Manhattan,Harlem,40.822720000000004,-73.94941999999999,Entire home/apt,229,5,38,0.75,2,332 +6069,23046908,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95952,Private room,64,1,14,0.28,1,0 +6070,14546480,Brooklyn,Bushwick,40.7026,-73.92787,Entire home/apt,100,3,4,0.08,1,0 +6071,3716641,Manhattan,Lower East Side,40.72169,-73.98773,Entire home/apt,99,30,21,0.38,8,52 +6072,5162192,Manhattan,Upper West Side,40.79795,-73.96175,Entire home/apt,300,30,4,0.07,12,310 +6073,7351,Brooklyn,South Slope,40.66483,-73.98892,Private room,84,2,11,0.2,3,87 +6074,946323,Brooklyn,Flatbush,40.638259999999995,-73.96815,Entire home/apt,125,3,6,0.11,1,0 +6075,23077718,Brooklyn,Crown Heights,40.67512,-73.96146,Private room,50,1,0,,1,0 +6076,9685363,Manhattan,West Village,40.736340000000006,-74.00841,Entire home/apt,200,2,9,0.16,1,0 +6077,10471097,Manhattan,Gramercy,40.73577,-73.98455,Entire home/apt,350,1,0,,1,0 +6078,23083111,Manhattan,Upper West Side,40.77783,-73.9815,Entire home/apt,80,30,5,0.09,1,180 +6079,23089516,Manhattan,Harlem,40.81693,-73.95421,Private room,180,1,26,0.47,1,0 +6080,23092836,Bronx,Concourse,40.82636,-73.92655,Entire home/apt,105,30,18,0.48,1,52 +6081,16761703,Brooklyn,Bushwick,40.697959999999995,-73.93124,Entire home/apt,200,7,0,,1,0 +6082,23095202,Brooklyn,East Flatbush,40.63395,-73.94771999999999,Entire home/apt,100,2,1,0.11,2,363 +6083,2050338,Queens,Richmond Hill,40.69947,-73.82795,Entire home/apt,90,30,11,0.2,3,189 +6084,5827529,Manhattan,Hell's Kitchen,40.762209999999996,-73.99028,Entire home/apt,160,1,8,0.14,1,0 +6085,2166065,Brooklyn,Williamsburg,40.71909,-73.95897,Entire home/apt,250,2,103,1.87,1,315 +6086,1390414,Manhattan,Harlem,40.81071,-73.94433000000001,Entire home/apt,115,2,84,1.51,1,50 +6087,454009,Manhattan,Upper East Side,40.774809999999995,-73.95562,Entire home/apt,250,2,0,,1,0 +6088,22552201,Manhattan,Upper West Side,40.7982,-73.97119,Entire home/apt,130,5,9,0.16,1,0 +6089,13541655,Manhattan,West Village,40.730140000000006,-74.00754,Private room,159,2,150,3.19,1,54 +6090,8490286,Brooklyn,Clinton Hill,40.68653,-73.96412,Entire home/apt,110,3,189,3.4,1,268 +6091,1171707,Brooklyn,Bushwick,40.70112,-73.91201,Private room,60,3,4,0.09,1,0 +6092,3551179,Bronx,Kingsbridge,40.87829,-73.89336999999999,Private room,57,3,20,0.43,1,311 +6093,747671,Brooklyn,South Slope,40.663470000000004,-73.98438,Entire home/apt,180,1,7,0.12,1,0 +6094,21641206,Brooklyn,Bedford-Stuyvesant,40.69725,-73.94908000000001,Entire home/apt,250,1,4,0.07,4,165 +6095,22904933,Manhattan,East Harlem,40.79849,-73.93843000000001,Private room,92,3,48,0.94,2,115 +6096,14758012,Manhattan,Nolita,40.72421,-73.99304000000001,Entire home/apt,195,3,66,1.24,1,0 +6097,16286162,Bronx,Allerton,40.868140000000004,-73.85874,Private room,47,2,97,1.81,4,262 +6098,302529,Manhattan,Lower East Side,40.71331,-73.98189,Entire home/apt,175,3,2,0.05,1,0 +6099,15778416,Manhattan,West Village,40.73066,-74.00371,Entire home/apt,175,1,0,,2,0 +6100,6526979,Manhattan,Upper West Side,40.78962,-73.97718,Entire home/apt,165,2,9,0.16,1,0 +6101,23162890,Brooklyn,Flatbush,40.6489,-73.96374,Private room,79,3,35,0.62,2,336 +6102,23178728,Manhattan,Chelsea,40.74998,-73.99772,Entire home/apt,345,7,95,1.7,1,13 +6103,10304755,Brooklyn,Williamsburg,40.71156,-73.95826,Private room,80,2,108,1.93,2,4 +6104,23189353,Manhattan,Harlem,40.805209999999995,-73.94519,Entire home/apt,300,4,143,2.56,1,204 +6105,19336493,Manhattan,Lower East Side,40.71777,-73.99011,Entire home/apt,325,4,0,,1,0 +6106,5838331,Manhattan,Gramercy,40.735490000000006,-73.98311,Entire home/apt,249,1,0,,1,0 +6107,3740730,Manhattan,Theater District,40.75607,-73.98593000000001,Entire home/apt,699,6,186,3.27,2,254 +6108,1532337,Bronx,Van Nest,40.8423,-73.87055,Private room,25,30,6,0.17,4,219 +6109,5800619,Manhattan,Hell's Kitchen,40.755309999999994,-73.99945,Entire home/apt,195,1,136,2.94,1,203 +6110,23208658,Manhattan,East Harlem,40.8002,-73.94079,Entire home/apt,165,2,146,2.6,3,277 +6111,16066343,Manhattan,East Harlem,40.788340000000005,-73.9472,Private room,65,2,219,3.88,2,35 +6112,23226529,Manhattan,Upper West Side,40.77706,-73.98406999999999,Entire home/apt,550,4,0,,1,0 +6113,23228839,Manhattan,Harlem,40.810559999999995,-73.94627,Entire home/apt,149,3,28,0.5,1,329 +6114,23243453,Queens,Long Island City,40.746809999999996,-73.94586,Entire home/apt,225,1,1,0.02,1,0 +6115,2380912,Brooklyn,Williamsburg,40.712340000000005,-73.94158,Entire home/apt,135,2,0,,1,0 +6116,20431437,Manhattan,SoHo,40.72736,-74.00192,Entire home/apt,495,30,159,2.83,1,129 +6117,5152761,Manhattan,Chinatown,40.71759,-73.9922,Entire home/apt,200,2,23,0.41,1,0 +6118,23249630,Brooklyn,Bedford-Stuyvesant,40.682559999999995,-73.94326,Entire home/apt,125,3,24,0.44,2,69 +6119,1816417,Queens,Ridgewood,40.69945,-73.90651,Entire home/apt,95,4,44,0.81,1,271 +6120,23249630,Brooklyn,Bedford-Stuyvesant,40.68339,-73.9422,Entire home/apt,135,3,15,0.27,2,89 +6121,567972,Brooklyn,Bushwick,40.69815,-73.93616,Entire home/apt,120,3,4,0.08,1,157 +6122,23256032,Brooklyn,Park Slope,40.66767,-73.9828,Entire home/apt,160,14,1,0.02,1,36 +6123,304346,Brooklyn,Williamsburg,40.71498,-73.96437,Entire home/apt,225,2,0,,1,0 +6124,1869332,Brooklyn,Williamsburg,40.7188,-73.95775,Private room,139,2,6,0.12,3,36 +6125,23159248,Manhattan,Upper East Side,40.77473,-73.94859,Private room,69,2,11,0.19,1,240 +6126,1633246,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92508000000001,Private room,100,30,2,0.04,4,7 +6127,17065184,Manhattan,Harlem,40.80743,-73.94256,Private room,71,3,211,3.72,1,6 +6128,21938150,Manhattan,Gramercy,40.7373,-73.98392,Private room,250,1,4,0.08,1,365 +6129,2589436,Brooklyn,Williamsburg,40.71594,-73.95649,Private room,70,2,15,0.29,2,0 +6130,8713930,Manhattan,East Village,40.729079999999996,-73.97901,Entire home/apt,225,1,0,,1,0 +6131,14138135,Manhattan,Financial District,40.70388,-74.00633,Entire home/apt,170,1,2,0.04,1,0 +6132,23287601,Brooklyn,Flatlands,40.62598,-73.92509,Entire home/apt,125,3,2,0.05,1,161 +6133,23293704,Brooklyn,Bushwick,40.68488,-73.91225,Entire home/apt,139,2,190,4.15,1,218 +6134,15823911,Queens,Long Island City,40.76063,-73.92801,Private room,69,1,0,,1,0 +6135,7567309,Manhattan,Upper West Side,40.78137,-73.98183,Entire home/apt,199,2,19,0.35,1,0 +6136,18601618,Manhattan,East Village,40.72724,-73.98639,Entire home/apt,175,1,2,0.04,1,0 +6137,743716,Brooklyn,Boerum Hill,40.683479999999996,-73.98087,Entire home/apt,120,3,3,0.05,1,0 +6138,5777821,Manhattan,Financial District,40.70428,-74.00952,Private room,100,5,2,0.04,1,0 +6139,23308381,Manhattan,West Village,40.736470000000004,-73.99814,Private room,150,1,0,,1,0 +6140,1869421,Brooklyn,Williamsburg,40.712559999999996,-73.94188,Entire home/apt,100,8,14,0.25,1,0 +6141,22720650,Manhattan,West Village,40.73604,-74.0056,Entire home/apt,130,30,1,0.15,2,0 +6142,23314412,Manhattan,East Village,40.72347,-73.98116,Entire home/apt,150,5,0,,1,0 +6143,11228023,Brooklyn,Sunset Park,40.65188,-74.00610999999999,Private room,50,30,2,0.04,1,0 +6144,22831759,Brooklyn,Flatbush,40.64617,-73.97018,Private room,80,2,11,0.19,1,0 +6145,10225905,Manhattan,West Village,40.73474,-74.00867,Entire home/apt,250,2,0,,1,0 +6146,12881527,Brooklyn,Bedford-Stuyvesant,40.684,-73.95002,Entire home/apt,227,1,17,0.31,1,362 +6147,23334165,Manhattan,Harlem,40.82257,-73.94543,Entire home/apt,300,5,91,1.65,3,288 +6148,23334541,Manhattan,Upper West Side,40.77998,-73.98461999999999,Entire home/apt,130,2,17,0.37,1,2 +6149,23338742,Manhattan,Upper West Side,40.788779999999996,-73.97386,Entire home/apt,225,30,17,0.31,1,179 +6150,2829908,Manhattan,Murray Hill,40.74685,-73.97598,Entire home/apt,149,2,1,0.02,1,0 +6151,6519939,Manhattan,Chelsea,40.75005,-73.99718,Entire home/apt,320,3,0,,1,0 +6152,23342156,Manhattan,Washington Heights,40.837140000000005,-73.93713000000001,Private room,75,1,9,0.2,1,0 +6153,2781725,Brooklyn,Kensington,40.64687,-73.98182,Entire home/apt,115,7,6,0.11,1,183 +6154,17074459,Manhattan,East Village,40.73325,-73.98789000000001,Private room,97,3,64,1.15,3,0 +6155,23349530,Manhattan,Harlem,40.802040000000005,-73.95656,Shared room,80,1,0,,1,59 +6156,23084155,Manhattan,Upper East Side,40.7671,-73.96968000000001,Entire home/apt,275,2,20,0.45,1,0 +6157,23353897,Brooklyn,Park Slope,40.667629999999996,-73.98156,Entire home/apt,163,4,58,1.38,1,132 +6158,16151285,Bronx,Williamsbridge,40.87896,-73.84978000000001,Private room,55,28,27,0.53,4,338 +6159,1607087,Brooklyn,Crown Heights,40.6771,-73.95994,Private room,75,2,2,0.04,1,0 +6160,10303277,Brooklyn,Fort Greene,40.69059,-73.97853,Entire home/apt,110,5,0,,1,0 +6161,2282450,Manhattan,West Village,40.73553,-74.00546,Entire home/apt,247,2,21,0.41,2,173 +6162,301549,Manhattan,Upper West Side,40.76885,-73.98254,Entire home/apt,180,14,0,,1,0 +6163,15313939,Manhattan,Harlem,40.82412,-73.93871999999999,Private room,69,1,22,0.47,1,365 +6164,2119276,Manhattan,Chelsea,40.73984,-74.0006,Entire home/apt,150,30,7,0.15,39,339 +6165,2119276,Manhattan,Gramercy,40.73505,-73.98212,Entire home/apt,140,30,9,0.17,39,344 +6166,23383529,Manhattan,West Village,40.73277,-74.00413,Entire home/apt,205,2,6,0.13,1,0 +6167,13282162,Manhattan,Upper West Side,40.78294,-73.98474,Entire home/apt,148,3,35,0.63,1,207 +6168,11760806,Manhattan,Upper West Side,40.79994,-73.97001,Private room,299,1,1,0.64,1,88 +6169,16685925,Manhattan,Washington Heights,40.830890000000004,-73.94125,Private room,49,3,3,0.05,2,0 +6170,23401472,Manhattan,Harlem,40.826240000000006,-73.94527,Entire home/apt,150,30,1,0.03,2,244 +6171,23401743,Manhattan,East Harlem,40.799170000000004,-73.93995,Entire home/apt,195,2,0,,1,0 +6172,3709510,Brooklyn,Bushwick,40.69213,-73.92371,Private room,80,1,4,0.34,3,342 +6173,3388950,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.93467,Private room,68,5,81,1.47,6,83 +6174,3388950,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93427,Private room,72,5,89,1.65,6,322 +6175,16480700,Manhattan,Harlem,40.82014,-73.95433,Private room,97,2,146,2.59,7,83 +6176,23419852,Queens,Long Island City,40.74236,-73.95640999999999,Entire home/apt,170,2,84,1.51,1,178 +6177,7245581,Manhattan,Washington Heights,40.83335,-73.94048000000001,Entire home/apt,67,74,7,0.14,19,251 +6178,23424461,Queens,Astoria,40.763690000000004,-73.91601,Entire home/apt,80,1,3,0.05,1,0 +6179,16310013,Manhattan,Washington Heights,40.85181,-73.93824000000001,Private room,29,7,0,,1,0 +6180,22880393,Manhattan,Lower East Side,40.71452,-73.9871,Private room,120,3,66,1.27,2,295 +6181,9196903,Brooklyn,Midwood,40.62403,-73.9618,Private room,100,1,0,,1,0 +6182,23439479,Manhattan,Inwood,40.866440000000004,-73.92676999999999,Private room,250,3,18,0.35,2,336 +6183,20019392,Manhattan,East Village,40.73337,-73.98828,Private room,200,2,109,2.15,1,336 +6184,2138902,Brooklyn,Gowanus,40.666940000000004,-73.99299,Private room,90,1,0,,1,0 +6185,12149644,Manhattan,Upper West Side,40.78304,-73.98146,Entire home/apt,125,1,0,,1,0 +6186,20627511,Queens,Jackson Heights,40.75034,-73.89215,Entire home/apt,90,3,0,,1,0 +6187,2277244,Manhattan,East Village,40.729490000000006,-73.97894000000001,Entire home/apt,180,1,2,0.05,1,0 +6188,3201774,Brooklyn,South Slope,40.66388,-73.9905,Private room,53,1,105,2.11,2,137 +6189,9997747,Brooklyn,Williamsburg,40.71906,-73.95798,Entire home/apt,200,3,7,0.12,1,0 +6190,7245581,Manhattan,Washington Heights,40.83488,-73.93843000000001,Entire home/apt,66,180,7,0.14,19,330 +6191,6197480,Manhattan,East Village,40.72568,-73.98823,Entire home/apt,200,2,0,,1,0 +6192,23497375,Brooklyn,Bedford-Stuyvesant,40.68157,-73.92023,Private room,75,1,0,,1,0 +6193,13888249,Brooklyn,Williamsburg,40.70798,-73.95374,Entire home/apt,165,3,15,0.27,2,158 +6194,20164579,Brooklyn,Williamsburg,40.71909,-73.95998,Private room,45,1,170,5.9,1,245 +6195,23503432,Manhattan,Washington Heights,40.8552,-73.93354000000001,Entire home/apt,80,1,150,2.68,1,35 +6196,11010205,Brooklyn,Bensonhurst,40.615759999999995,-73.99166,Private room,125,2,4,0.07,2,0 +6197,6926899,Brooklyn,Williamsburg,40.7113,-73.94938,Private room,90,3,4,0.07,1,0 +6198,1509863,Queens,Rego Park,40.72937,-73.86804000000001,Entire home/apt,40,7,53,0.94,1,10 +6199,22927481,Manhattan,Midtown,40.76377,-73.98103,Private room,400,3,0,,3,0 +6200,3250450,Queens,Astoria,40.764959999999995,-73.9282,Private room,39,31,2,0.04,18,310 +6201,8737911,Brooklyn,Boerum Hill,40.6875,-73.99027,Entire home/apt,125,1,2,0.04,1,0 +6202,12879538,Manhattan,Harlem,40.821020000000004,-73.94633,Private room,85,1,21,0.38,2,343 +6203,22384027,Brooklyn,Brownsville,40.670609999999996,-73.91672,Private room,39,1,130,2.32,10,26 +6204,3473330,Manhattan,Kips Bay,40.7401,-73.97994,Entire home/apt,150,2,23,0.41,1,12 +6205,23532244,Queens,Astoria,40.77002,-73.91498,Entire home/apt,100,2,18,0.38,1,83 +6206,4806989,Brooklyn,Williamsburg,40.708259999999996,-73.94059,Entire home/apt,189,1,0,,1,0 +6207,2968247,Manhattan,Harlem,40.80583,-73.95711999999999,Entire home/apt,99,3,18,0.33,1,0 +6208,23538896,Brooklyn,Crown Heights,40.67771,-73.96285999999999,Entire home/apt,167,4,6,0.12,1,0 +6209,23540800,Manhattan,Hell's Kitchen,40.753809999999994,-73.99491,Entire home/apt,205,2,0,,1,0 +6210,10718241,Brooklyn,Greenpoint,40.7191,-73.94964,Private room,50,1,0,,1,0 +6211,23548583,Brooklyn,East Flatbush,40.65262,-73.94211,Entire home/apt,109,30,23,0.44,2,221 +6212,23185328,Queens,Ditmars Steinway,40.776720000000005,-73.90878000000001,Entire home/apt,127,2,12,0.25,2,0 +6213,23569951,Manhattan,Upper East Side,40.7811,-73.94566999999999,Entire home/apt,220,3,28,0.5,1,293 +6214,23570473,Brooklyn,Crown Heights,40.67414,-73.95368,Private room,45,1,22,0.96,3,339 +6215,23570593,Manhattan,Washington Heights,40.84769,-73.93512,Private room,75,2,24,0.44,1,321 +6216,23573737,Brooklyn,Williamsburg,40.71171,-73.94575,Entire home/apt,120,5,1,0.02,1,0 +6217,23575706,Brooklyn,Bedford-Stuyvesant,40.6958,-73.94515,Private room,55,1,0,,1,0 +6218,10411359,Manhattan,Upper West Side,40.783159999999995,-73.97269,Entire home/apt,120,3,33,0.62,1,0 +6219,1443186,Manhattan,East Harlem,40.80985,-73.93919,Entire home/apt,108,4,3,0.07,1,0 +6220,22089583,Brooklyn,Williamsburg,40.71901,-73.95618,Entire home/apt,200,3,3,0.05,1,0 +6221,6571805,Manhattan,Upper West Side,40.79407,-73.97679000000001,Shared room,55,2,54,1.4,2,336 +6222,23588055,Manhattan,Harlem,40.81208,-73.94243,Private room,205,2,3,0.05,1,364 +6223,2748575,Manhattan,Hell's Kitchen,40.75506,-73.99622,Private room,129,4,0,,1,0 +6224,19196381,Manhattan,Upper East Side,40.77127,-73.95108,Entire home/apt,150,3,74,1.33,1,263 +6225,15778416,Manhattan,West Village,40.73033,-74.00284,Private room,110,1,0,,2,0 +6226,23591164,Queens,East Elmhurst,40.765390000000004,-73.87635999999999,Private room,65,1,356,6.31,4,341 +6227,785283,Queens,Ditmars Steinway,40.77648,-73.91595,Entire home/apt,150,28,50,0.89,2,38 +6228,23591164,Queens,East Elmhurst,40.7668,-73.87759,Private room,65,1,426,7.53,4,312 +6229,23533897,Brooklyn,Crown Heights,40.6759,-73.95274,Private room,75,1,77,1.4,7,340 +6230,23533897,Brooklyn,Crown Heights,40.67565,-73.95121,Private room,85,2,37,0.67,7,325 +6231,2480939,Brooklyn,Williamsburg,40.71839,-73.95996,Private room,58,1,210,3.8,3,217 +6232,2480939,Brooklyn,Williamsburg,40.71994,-73.9599,Private room,90,1,194,3.81,3,229 +6233,20042936,Brooklyn,Prospect Heights,40.673759999999994,-73.96373,Entire home/apt,120,5,1,0.03,1,0 +6234,22568612,Brooklyn,Prospect Heights,40.6803,-73.97185,Entire home/apt,115,6,3,0.06,1,0 +6235,23342410,Queens,Long Island City,40.75985,-73.92979,Entire home/apt,99,2,0,,1,0 +6236,22348314,Queens,Astoria,40.76542,-73.92115,Entire home/apt,105,25,14,0.27,1,277 +6237,23612276,Manhattan,Harlem,40.82083,-73.95436,Private room,69,7,15,0.27,1,213 +6238,3074432,Brooklyn,Greenpoint,40.73298,-73.95813000000001,Private room,80,1,0,,1,0 +6239,6246089,Queens,Astoria,40.76587,-73.92156999999999,Entire home/apt,125,5,27,0.5,1,2 +6240,7257731,Manhattan,Inwood,40.86335,-73.92822,Entire home/apt,90,7,7,0.15,1,249 +6241,23629361,Brooklyn,Crown Heights,40.66953,-73.92685999999999,Entire home/apt,80,7,0,,1,0 +6242,23635670,Manhattan,Hell's Kitchen,40.758559999999996,-73.99569,Private room,125,1,186,3.33,1,271 +6243,22885233,Manhattan,Hell's Kitchen,40.76575,-73.99240999999999,Entire home/apt,215,6,39,1.57,1,24 +6244,23659408,Manhattan,Hell's Kitchen,40.758109999999995,-73.99073,Entire home/apt,107,21,193,3.42,1,310 +6245,619991,Manhattan,Lower East Side,40.72082,-73.98952,Private room,89,4,91,1.86,1,16 +6246,1019170,Manhattan,East Village,40.72312,-73.98255,Entire home/apt,175,2,81,1.59,1,0 +6247,54712,Brooklyn,Greenpoint,40.733509999999995,-73.95459,Entire home/apt,245,3,0,,2,280 +6248,54712,Brooklyn,Greenpoint,40.73455,-73.95489,Entire home/apt,245,3,0,,2,0 +6249,3814458,Manhattan,Midtown,40.75186,-73.98557,Entire home/apt,450,3,12,0.23,1,0 +6250,23671946,Manhattan,Harlem,40.81622,-73.95885,Private room,100,3,0,,2,0 +6251,23673285,Queens,Astoria,40.76413,-73.92374000000001,Entire home/apt,98,6,38,0.67,1,306 +6252,22384027,Brooklyn,Brownsville,40.67068,-73.91633,Private room,39,1,89,1.57,10,0 +6253,23671946,Manhattan,Morningside Heights,40.81473,-73.96039,Entire home/apt,160,4,10,0.43,2,0 +6254,22935835,Brooklyn,South Slope,40.66616,-73.99009000000001,Entire home/apt,150,2,0,,1,0 +6255,1277144,Manhattan,East Village,40.72809,-73.98188,Entire home/apt,299,2,63,1.15,1,210 +6256,5650951,Brooklyn,Greenpoint,40.7249,-73.94528000000001,Private room,75,8,6,0.14,1,0 +6257,23697064,Brooklyn,South Slope,40.662890000000004,-73.98176,Private room,99,5,1,0.02,1,0 +6258,23699355,Manhattan,East Village,40.7309,-73.98785,Entire home/apt,165,2,40,0.73,1,0 +6259,14768898,Manhattan,Morningside Heights,40.80747,-73.9603,Entire home/apt,145,1,12,0.21,1,0 +6260,23708028,Manhattan,Lower East Side,40.72058,-73.98674,Entire home/apt,239,3,145,2.63,1,1 +6261,21935479,Manhattan,Inwood,40.86821,-73.92128000000001,Private room,76,2,70,1.37,1,352 +6262,11308807,Manhattan,Harlem,40.82158,-73.9533,Private room,65,1,0,,2,0 +6263,20559017,Manhattan,East Harlem,40.78617,-73.94421,Private room,60,30,2,0.04,9,312 +6264,23038979,Brooklyn,Cypress Hills,40.68711,-73.87335999999999,Entire home/apt,50,3,114,2.02,1,18 +6265,22017065,Brooklyn,Prospect Heights,40.68137,-73.97081,Entire home/apt,250,3,27,0.49,1,266 +6266,4362140,Brooklyn,Bedford-Stuyvesant,40.687979999999996,-73.95678000000001,Entire home/apt,140,3,11,0.2,1,0 +6267,4263114,Manhattan,Hell's Kitchen,40.76612,-73.99324,Entire home/apt,125,5,5,0.09,1,0 +6268,23748343,Manhattan,Upper West Side,40.773340000000005,-73.99031,Shared room,80,1,0,,1,0 +6269,21600904,Brooklyn,Williamsburg,40.7137,-73.94378,Private room,150,1,0,,1,0 +6270,4618480,Brooklyn,Sunset Park,40.65687,-74.00489,Private room,75,1,0,,1,0 +6271,23751556,Manhattan,Hell's Kitchen,40.75835,-73.99286,Private room,200,4,0,,1,0 +6272,23754530,Brooklyn,Fort Greene,40.688590000000005,-73.9767,Entire home/apt,150,2,99,1.77,1,246 +6273,6780571,Brooklyn,Williamsburg,40.71765,-73.95772,Entire home/apt,220,2,79,1.62,1,143 +6274,13161042,Manhattan,Upper East Side,40.78555,-73.95311,Entire home/apt,180,2,18,0.33,1,0 +6275,23208658,Manhattan,East Harlem,40.79826,-73.94145,Entire home/apt,260,3,20,2.74,3,283 +6276,23677128,Brooklyn,Greenpoint,40.72712,-73.95499000000001,Private room,80,1,0,,1,0 +6277,8503180,Manhattan,East Village,40.73118,-73.98885,Entire home/apt,1500,30,24,0.43,2,358 +6278,23776693,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92925,Private room,50,2,100,3.21,3,260 +6279,23778946,Manhattan,East Village,40.725229999999996,-73.97999,Entire home/apt,400,3,1,0.02,1,0 +6280,3693416,Brooklyn,Greenpoint,40.72214,-73.94835,Entire home/apt,450,1,0,,1,0 +6281,1500858,Manhattan,Upper West Side,40.77926,-73.97877,Entire home/apt,225,30,7,0.13,1,173 +6282,66286,Brooklyn,Bedford-Stuyvesant,40.685959999999994,-73.94068,Entire home/apt,100,2,2,0.05,2,0 +6283,5926785,Manhattan,East Village,40.725559999999994,-73.98504,Entire home/apt,205,1,0,,1,0 +6284,7852646,Brooklyn,Fort Greene,40.69563,-73.98193,Private room,110,1,38,2.06,1,46 +6285,4445796,Brooklyn,Greenpoint,40.725570000000005,-73.95243,Private room,95,1,7,0.14,1,0 +6286,23810895,Manhattan,Hell's Kitchen,40.7592,-73.98902,Entire home/apt,150,2,42,0.76,1,258 +6287,23812318,Queens,Jackson Heights,40.75401,-73.88235999999999,Entire home/apt,100,2,21,0.38,1,124 +6288,5050537,Brooklyn,Bedford-Stuyvesant,40.684020000000004,-73.94164,Entire home/apt,69,1,40,0.83,1,3 +6289,23772724,Manhattan,Upper East Side,40.78302,-73.94646999999999,Entire home/apt,110,30,12,0.27,15,332 +6290,1520215,Brooklyn,Boerum Hill,40.68598,-73.98004,Entire home/apt,250,3,0,,1,0 +6291,23824219,Queens,East Elmhurst,40.75943,-73.89553000000001,Private room,44,3,46,0.83,1,88 +6292,23834677,Manhattan,Harlem,40.82863,-73.94358000000001,Entire home/apt,155,1,242,4.4,2,238 +6293,15310997,Manhattan,Upper East Side,40.78318,-73.94556,Entire home/apt,300,30,10,0.19,9,331 +6294,23847354,Manhattan,East Harlem,40.78882,-73.94869,Private room,67,1,2,0.05,1,0 +6295,6949069,Brooklyn,Greenpoint,40.72403,-73.95055,Entire home/apt,175,4,2,0.04,1,0 +6296,45609,Brooklyn,Greenpoint,40.731320000000004,-73.95831,Entire home/apt,149,15,22,0.39,1,0 +6297,23718461,Brooklyn,Flatlands,40.629490000000004,-73.92703,Private room,85,2,0,,1,365 +6298,23861788,Brooklyn,Bedford-Stuyvesant,40.700070000000004,-73.94338,Private room,75,2,224,4.44,1,74 +6299,23575977,Manhattan,Two Bridges,40.71205,-73.99463,Private room,120,5,0,,1,0 +6300,23788242,Brooklyn,Bedford-Stuyvesant,40.68853,-73.9498,Private room,100,3,50,1.08,1,339 +6301,23867361,Manhattan,Upper West Side,40.792840000000005,-73.97675,Entire home/apt,129,12,20,0.37,1,193 +6302,3184878,Brooklyn,Bushwick,40.70545,-73.91929,Entire home/apt,150,1,1,0.02,1,0 +6303,23862900,Manhattan,East Village,40.72887,-73.98633000000001,Entire home/apt,219,5,1,0.02,1,0 +6304,23870076,Manhattan,Morningside Heights,40.80549,-73.96393,Entire home/apt,185,3,10,0.38,1,0 +6305,23591164,Queens,East Elmhurst,40.7661,-73.87739,Private room,65,1,21,0.38,4,0 +6306,1113080,Brooklyn,Sunset Park,40.647220000000004,-74.00475,Private room,55,7,98,1.75,3,312 +6307,626876,Manhattan,Washington Heights,40.836529999999996,-73.94277,Entire home/apt,350,3,0,,3,0 +6308,11702175,Manhattan,East Harlem,40.79038,-73.94412,Entire home/apt,170,3,6,0.11,1,0 +6309,626876,Manhattan,Upper East Side,40.77963,-73.94864,Private room,250,1,0,,3,0 +6310,626876,Manhattan,Upper East Side,40.77941,-73.94861999999999,Private room,250,1,0,,3,0 +6311,21906247,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93536999999999,Private room,70,1,0,,1,0 +6312,23899573,Manhattan,Hell's Kitchen,40.76679,-73.98598,Entire home/apt,150,7,23,0.42,1,0 +6313,16437254,Brooklyn,Sunset Park,40.6642,-73.99322,Entire home/apt,172,30,5,0.09,21,328 +6314,4293340,Manhattan,East Village,40.72764,-73.98748,Private room,79,2,2,0.1,1,0 +6315,8530836,Manhattan,Harlem,40.82458,-73.95223,Entire home/apt,100,4,5,0.09,1,105 +6316,1698391,Manhattan,Hell's Kitchen,40.76142,-73.99176999999999,Entire home/apt,272,2,7,0.13,3,277 +6317,22350590,Manhattan,Harlem,40.82351,-73.94046999999999,Private room,85,10,57,1.03,1,6 +6318,23073152,Manhattan,Kips Bay,40.7396,-73.98228,Entire home/apt,350,2,0,,1,0 +6319,23915731,Manhattan,Upper East Side,40.774390000000004,-73.94965,Entire home/apt,249,3,1,0.03,1,0 +6320,1403669,Brooklyn,Fort Greene,40.68547,-73.96885999999999,Entire home/apt,180,4,20,0.39,1,208 +6321,6028908,Brooklyn,Crown Heights,40.67569,-73.95548000000001,Private room,38,10,0,,1,0 +6322,23929065,Manhattan,West Village,40.73173,-74.00904,Entire home/apt,450,3,0,,1,0 +6323,1599319,Manhattan,Little Italy,40.71954,-73.9975,Private room,60,7,5,0.09,1,0 +6324,12511067,Brooklyn,Williamsburg,40.718,-73.95344,Entire home/apt,95,1,0,,1,0 +6325,23935018,Brooklyn,Bedford-Stuyvesant,40.68175,-73.95416999999999,Private room,85,3,1,0.02,1,0 +6326,21685221,Manhattan,Upper West Side,40.79293,-73.97126,Entire home/apt,199,1,0,,1,0 +6327,23899821,Manhattan,Upper West Side,40.78604,-73.97363,Entire home/apt,260,2,54,0.98,1,16 +6328,2119276,Manhattan,Gramercy,40.73346,-73.98216,Entire home/apt,140,30,7,0.13,39,332 +6329,2119276,Manhattan,Gramercy,40.7339,-73.98548000000001,Entire home/apt,185,30,5,0.1,39,1 +6330,7947211,Brooklyn,Prospect Heights,40.68153,-73.96669,Entire home/apt,126,1,44,0.78,1,7 +6331,2593268,Manhattan,Chinatown,40.7157,-73.99094000000001,Entire home/apt,399,2,122,2.24,1,109 +6332,23945185,Manhattan,East Village,40.726,-73.97773000000001,Entire home/apt,100,7,6,0.11,1,0 +6333,22506665,Staten Island,St. George,40.64571,-74.07835,Entire home/apt,1000,1,0,,1,364 +6334,1136842,Brooklyn,Fort Greene,40.69249,-73.97068,Entire home/apt,225,7,3,0.05,1,44 +6335,2378231,Brooklyn,Greenpoint,40.73108,-73.95416,Entire home/apt,85,4,4,0.07,1,0 +6336,23267314,Manhattan,East Harlem,40.791270000000004,-73.94431,Entire home/apt,147,2,45,0.92,2,154 +6337,9072771,Manhattan,Financial District,40.70581,-74.00948000000001,Private room,90,14,8,0.23,2,146 +6338,23952819,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93285999999999,Entire home/apt,500,1,1,0.02,2,362 +6339,23162890,Brooklyn,Flatbush,40.65039,-73.96393,Private room,72,3,37,0.66,2,334 +6340,7799229,Brooklyn,Williamsburg,40.71387,-73.95652,Private room,41,4,14,0.37,2,0 +6341,6465286,Brooklyn,Williamsburg,40.711909999999996,-73.96376,Entire home/apt,180,3,103,1.92,2,0 +6342,23971734,Queens,Sunnyside,40.739779999999996,-73.92124,Private room,67,5,4,0.07,1,0 +6343,3754729,Brooklyn,Bushwick,40.690870000000004,-73.90916999999999,Entire home/apt,122,3,48,0.87,1,256 +6344,23974215,Manhattan,Harlem,40.807970000000005,-73.95181,Entire home/apt,105,3,29,0.52,2,0 +6345,22503794,Brooklyn,South Slope,40.66238,-73.98456999999999,Private room,95,1,2,0.04,1,364 +6346,23971405,Queens,Kew Gardens,40.70705,-73.83346,Entire home/apt,100,2,1,0.02,1,0 +6347,16437254,Brooklyn,Boerum Hill,40.68851,-73.98655,Entire home/apt,130,30,3,0.07,21,312 +6348,6762751,Manhattan,Harlem,40.800959999999996,-73.95776,Private room,107,2,92,1.64,1,157 +6349,3250450,Manhattan,Upper West Side,40.78628,-73.97264,Private room,100,30,12,0.24,18,364 +6350,23991556,Bronx,Concourse,40.83719,-73.92015,Private room,85,1,9,0.18,1,342 +6351,23993707,Queens,Woodside,40.74626,-73.89726999999999,Private room,30,5,2,0.04,2,0 +6352,23876129,Manhattan,Chinatown,40.71648,-73.9912,Entire home/apt,175,4,57,1.04,1,0 +6353,24006197,Brooklyn,Williamsburg,40.7118,-73.93729,Private room,95,1,0,,1,0 +6354,24007762,Manhattan,East Village,40.72639,-73.98827,Entire home/apt,125,1,8,0.15,1,0 +6355,23993707,Queens,Woodside,40.74668,-73.89723000000001,Private room,35,5,9,0.16,2,0 +6356,12459436,Queens,Flushing,40.75398,-73.82778,Entire home/apt,119,3,26,0.46,2,319 +6357,24009463,Queens,Astoria,40.76794,-73.93413000000001,Entire home/apt,150,3,149,2.71,2,133 +6358,3123405,Brooklyn,Williamsburg,40.7033,-73.94305,Private room,55,1,4,0.13,1,0 +6359,1755097,Brooklyn,Bedford-Stuyvesant,40.69084,-73.93079,Entire home/apt,115,2,214,4.07,2,108 +6360,5552587,Brooklyn,Bedford-Stuyvesant,40.69492,-73.95839000000001,Private room,99,5,14,0.25,1,306 +6361,6569891,Brooklyn,Greenpoint,40.733959999999996,-73.95537,Private room,150,1,0,,1,0 +6362,23974215,Manhattan,Harlem,40.806490000000004,-73.95225,Private room,84,2,38,0.68,2,147 +6363,14380678,Manhattan,Hell's Kitchen,40.76195,-74.00001,Private room,129,2,13,0.27,1,176 +6364,3571821,Brooklyn,Bedford-Stuyvesant,40.68951,-73.9565,Private room,44,5,86,1.67,4,0 +6365,24020898,Brooklyn,Greenpoint,40.724990000000005,-73.94481,Private room,55,6,0,,1,0 +6366,6470787,Brooklyn,Carroll Gardens,40.68244,-73.99539,Entire home/apt,100,3,15,0.27,1,0 +6367,23355801,Manhattan,Harlem,40.8257,-73.93786,Private room,65,1,40,2.88,1,45 +6368,24030482,Queens,Bellerose,40.72401,-73.72901,Private room,99,1,3,0.23,1,365 +6369,17281607,Manhattan,Harlem,40.80297,-73.95537,Entire home/apt,100,7,2,0.04,1,0 +6370,5025692,Manhattan,Hell's Kitchen,40.7616,-73.99677,Entire home/apt,225,5,13,0.24,1,0 +6371,16035346,Brooklyn,Windsor Terrace,40.65057,-73.97858000000001,Entire home/apt,120,7,23,0.41,1,196 +6372,6694436,Manhattan,Gramercy,40.73533,-73.98384,Entire home/apt,139,2,5,0.11,1,0 +6373,13347167,Manhattan,Upper East Side,40.77167,-73.95735,Entire home/apt,142,30,3,0.09,29,321 +6374,8555319,Manhattan,Chinatown,40.71399,-73.99744,Entire home/apt,140,4,13,0.65,1,0 +6375,10992588,Brooklyn,Bedford-Stuyvesant,40.68797,-73.94696,Entire home/apt,130,200,271,4.84,2,64 +6376,24046558,Manhattan,Upper East Side,40.76358,-73.96464,Entire home/apt,325,5,64,1.15,1,330 +6377,16927633,Manhattan,Hell's Kitchen,40.76198,-73.98718000000001,Entire home/apt,350,2,9,0.21,1,0 +6378,805843,Brooklyn,Williamsburg,40.71745,-73.95961,Entire home/apt,175,2,5,0.12,1,0 +6379,22827111,Manhattan,Hell's Kitchen,40.76025,-73.99555,Private room,89,4,59,1.06,2,286 +6380,2520125,Brooklyn,East New York,40.66171,-73.89891,Entire home/apt,69,4,159,3.25,2,48 +6381,1660261,Brooklyn,Prospect-Lefferts Gardens,40.658590000000004,-73.96195999999999,Private room,40,6,10,0.21,1,0 +6382,24052348,Manhattan,East Village,40.72052,-73.98003,Shared room,65,10,21,0.38,4,0 +6383,2592109,Manhattan,Upper East Side,40.769040000000004,-73.95902,Entire home/apt,160,14,20,0.37,1,43 +6384,9492212,Brooklyn,Park Slope,40.6702,-73.97885,Private room,135,2,88,1.6,4,0 +6385,6230230,Manhattan,Lower East Side,40.71927,-73.98510999999999,Entire home/apt,109,3,42,1.13,3,7 +6386,24075308,Brooklyn,Greenpoint,40.72518,-73.93844,Private room,85,14,3,0.05,1,0 +6387,24020050,Manhattan,Chinatown,40.71566,-73.99076,Entire home/apt,189,4,25,0.48,1,191 +6388,2563415,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.96109,Entire home/apt,125,3,56,2.42,1,19 +6389,9953720,Manhattan,East Village,40.729209999999995,-73.98631,Private room,140,1,1,0.02,1,0 +6390,6349214,Brooklyn,Fort Greene,40.69492,-73.97061,Entire home/apt,160,3,4,0.07,1,0 +6391,24094211,Brooklyn,Park Slope,40.67256,-73.97229,Entire home/apt,115,5,4,0.08,1,0 +6392,8291260,Manhattan,Washington Heights,40.85171,-73.92894,Entire home/apt,80,3,31,0.56,1,68 +6393,7518105,Brooklyn,Windsor Terrace,40.649609999999996,-73.97465,Entire home/apt,198,2,7,0.13,1,0 +6394,24109809,Queens,Astoria,40.77271,-73.93159,Private room,200,1,0,,1,0 +6395,1420868,Manhattan,East Village,40.7257,-73.9795,Entire home/apt,230,1,46,0.84,1,353 +6396,23334165,Manhattan,Harlem,40.82396,-73.94388000000001,Entire home/apt,450,5,81,1.48,3,303 +6397,745486,Manhattan,SoHo,40.72592,-73.99933,Entire home/apt,895,1,66,1.18,1,365 +6398,4517642,Manhattan,Morningside Heights,40.8104,-73.95976999999999,Entire home/apt,170,3,6,0.11,1,0 +6399,24117644,Queens,Astoria,40.755829999999996,-73.92596,Private room,120,3,18,0.33,2,0 +6400,24118443,Brooklyn,Williamsburg,40.7193,-73.94502,Entire home/apt,140,2,18,0.33,1,0 +6401,3175065,Brooklyn,Fort Greene,40.69207,-73.97407,Private room,70,14,18,0.35,1,128 +6402,21455957,Manhattan,Harlem,40.81995,-73.94606999999999,Private room,70,3,122,2.19,2,243 +6403,20559017,Manhattan,East Harlem,40.78644,-73.9438,Private room,45,30,4,0.08,9,311 +6404,21688465,Brooklyn,Crown Heights,40.674890000000005,-73.93081,Private room,140,3,148,2.88,1,0 +6405,24041562,Manhattan,Upper West Side,40.786970000000004,-73.96929,Entire home/apt,600,5,6,0.11,1,0 +6406,16018853,Brooklyn,Clinton Hill,40.692890000000006,-73.96701,Entire home/apt,195,4,0,,1,0 +6407,24132118,Manhattan,Hell's Kitchen,40.76793,-73.98817,Private room,79,7,1,0.02,1,0 +6408,4098538,Manhattan,Harlem,40.82768,-73.94736999999999,Entire home/apt,55,14,2,0.05,1,0 +6409,24144577,Manhattan,Harlem,40.80382,-73.94476,Entire home/apt,275,3,41,0.79,1,258 +6410,18511357,Queens,Ditmars Steinway,40.77272,-73.90756999999999,Private room,60,7,1,0.04,1,0 +6411,24146326,Queens,Astoria,40.76638,-73.93236,Entire home/apt,195,3,86,1.69,2,248 +6412,20559017,Manhattan,East Harlem,40.78512,-73.94409,Private room,50,30,5,0.11,9,330 +6413,2312420,Manhattan,West Village,40.73317,-74.00118,Entire home/apt,125,30,31,0.83,2,346 +6414,24149026,Bronx,Concourse Village,40.82393,-73.92414000000001,Entire home/apt,145,5,1,0.02,1,0 +6415,23772724,Manhattan,Upper East Side,40.77388,-73.95343000000001,Entire home/apt,99,30,15,0.31,15,341 +6416,10860081,Brooklyn,Clinton Hill,40.68241,-73.96354000000001,Entire home/apt,130,1,9,0.16,1,0 +6417,1901846,Manhattan,Lower East Side,40.7136,-73.98935999999999,Entire home/apt,115,3,8,0.16,1,0 +6418,190409,Bronx,Highbridge,40.83212,-73.93054000000001,Private room,60,1,56,1.09,3,355 +6419,966461,Manhattan,West Village,40.73814,-74.00046999999999,Entire home/apt,199,4,108,1.93,1,162 +6420,3108161,Brooklyn,Williamsburg,40.715959999999995,-73.95876,Entire home/apt,170,3,22,0.4,1,0 +6421,10476487,Manhattan,SoHo,40.72632,-74.00749,Entire home/apt,385,3,1,0.02,1,365 +6422,24191104,Manhattan,Morningside Heights,40.810990000000004,-73.95759,Entire home/apt,125,4,0,,1,0 +6423,10387090,Brooklyn,Bushwick,40.683479999999996,-73.90817,Private room,37,30,6,0.11,5,333 +6424,23939128,Manhattan,Harlem,40.8136,-73.94999,Entire home/apt,80,5,5,0.1,1,0 +6425,24195428,Brooklyn,Crown Heights,40.66811,-73.93393,Private room,65,1,222,3.99,1,292 +6426,24195790,Manhattan,Greenwich Village,40.73444,-73.99761,Entire home/apt,600,1,0,,1,0 +6427,24048208,Brooklyn,Bedford-Stuyvesant,40.6848,-73.95728000000001,Entire home/apt,140,3,0,,1,0 +6428,7304425,Manhattan,Harlem,40.82888,-73.94467,Private room,56,1,7,0.14,1,0 +6429,23047797,Manhattan,Washington Heights,40.85658,-73.92656,Private room,70,2,7,0.13,1,0 +6430,24201950,Queens,Jackson Heights,40.751999999999995,-73.88898,Entire home/apt,105,7,3,0.17,1,141 +6431,24208781,Manhattan,Harlem,40.80126,-73.95777,Private room,70,2,68,1.31,1,129 +6432,2368446,Queens,Ditmars Steinway,40.774429999999995,-73.90756,Private room,60,1,0,,1,0 +6433,4357223,Brooklyn,Williamsburg,40.705740000000006,-73.95551999999999,Private room,120,1,0,,1,0 +6434,7759020,Manhattan,Hell's Kitchen,40.76663,-73.9895,Entire home/apt,150,1,3,0.05,1,0 +6435,24232061,Manhattan,Upper East Side,40.77345,-73.95848000000001,Private room,112,10,38,0.78,3,157 +6436,529546,Manhattan,Hell's Kitchen,40.76865,-73.98671999999999,Private room,145,3,0,,2,0 +6437,24236837,Brooklyn,Fort Greene,40.69549,-73.97144,Entire home/apt,80,30,6,0.11,1,187 +6438,23772724,Manhattan,Upper East Side,40.7734,-73.95357,Entire home/apt,99,30,6,0.11,15,332 +6439,19007585,Manhattan,Flatiron District,40.744,-73.9907,Entire home/apt,110,7,11,0.2,1,0 +6440,24253453,Brooklyn,Park Slope,40.674890000000005,-73.97963,Private room,70,2,120,2.47,2,68 +6441,8501698,Brooklyn,Williamsburg,40.71971,-73.95919,Entire home/apt,140,4,1,0.03,1,0 +6442,9123948,Brooklyn,Bedford-Stuyvesant,40.68229,-73.91574,Private room,46,4,3,0.05,1,0 +6443,3753306,Manhattan,Gramercy,40.73287,-73.98585,Entire home/apt,180,1,1,0.05,1,0 +6444,24268565,Brooklyn,Cobble Hill,40.689820000000005,-73.99675,Entire home/apt,250,1,185,3.32,1,209 +6445,24269297,Brooklyn,Bushwick,40.69935,-73.9228,Private room,75,3,41,0.81,1,294 +6446,1843216,Manhattan,Lower East Side,40.7135,-73.988,Entire home/apt,250,4,26,0.61,1,102 +6447,4217567,Manhattan,Chelsea,40.7416,-73.99681,Entire home/apt,250,3,2,0.04,1,0 +6448,15642271,Manhattan,Washington Heights,40.8442,-73.93721,Private room,60,1,3,0.05,1,0 +6449,4259327,Manhattan,Flatiron District,40.741279999999996,-73.98428,Private room,95,7,10,0.18,1,331 +6450,24067453,Manhattan,East Village,40.72274,-73.98143,Entire home/apt,138,11,5,0.09,1,0 +6451,5352419,Brooklyn,Vinegar Hill,40.70213,-73.9838,Entire home/apt,550,20,1,0.08,1,220 +6452,24291213,Brooklyn,Sunset Park,40.64009,-74.01714,Private room,35,1,0,,2,0 +6453,11708876,Brooklyn,Williamsburg,40.7114,-73.96293,Private room,90,1,0,,1,0 +6454,17014518,Brooklyn,Greenpoint,40.73039,-73.9541,Entire home/apt,180,1,0,,1,0 +6455,41358,Brooklyn,Fort Greene,40.6908,-73.97332,Entire home/apt,145,2,1,0.02,1,0 +6456,24295835,Brooklyn,Prospect-Lefferts Gardens,40.660740000000004,-73.96035,Entire home/apt,100,3,15,0.27,1,0 +6457,21409261,Brooklyn,Fort Greene,40.69477,-73.97258000000001,Entire home/apt,119,4,19,0.36,1,0 +6458,14320459,Brooklyn,Williamsburg,40.70985,-73.94738000000001,Private room,70,2,0,,1,0 +6459,24298733,Brooklyn,Bushwick,40.69167,-73.92169,Private room,48,4,1,0.02,2,0 +6460,24298733,Brooklyn,Kensington,40.6367,-73.97434,Private room,35,4,0,,2,0 +6461,10535719,Manhattan,East Harlem,40.798629999999996,-73.93795,Entire home/apt,200,7,28,0.55,3,363 +6462,15702523,Manhattan,Lower East Side,40.7198,-73.98434,Private room,64,2,58,1.05,1,0 +6463,7460434,Manhattan,East Village,40.72119,-73.98021,Private room,120,3,25,0.46,2,89 +6464,24304871,Brooklyn,Flatbush,40.6536,-73.95810999999999,Private room,50,2,23,0.42,1,0 +6465,10568263,Brooklyn,Boerum Hill,40.685179999999995,-73.9853,Entire home/apt,190,2,8,0.87,1,0 +6466,24319884,Manhattan,Upper East Side,40.77429,-73.95628,Entire home/apt,235,7,8,0.16,1,0 +6467,24117644,Queens,Astoria,40.755720000000004,-73.92631999999999,Private room,70,3,74,1.38,2,285 +6468,633339,Manhattan,East Harlem,40.806509999999996,-73.93776,Shared room,60,1,4,0.08,1,0 +6469,6327629,Manhattan,Harlem,40.82502,-73.94404,Private room,90,3,1,0.02,1,0 +6470,529546,Manhattan,Hell's Kitchen,40.766890000000004,-73.98612,Private room,125,1,1,0.02,2,0 +6471,1265619,Brooklyn,Williamsburg,40.72018,-73.96055,Entire home/apt,120,2,8,0.16,1,8 +6472,19972390,Brooklyn,Greenpoint,40.732620000000004,-73.95795,Private room,55,1,24,0.44,1,157 +6473,670367,Manhattan,Hell's Kitchen,40.75614,-73.99341,Entire home/apt,225,7,0,,1,0 +6474,1511206,Manhattan,East Harlem,40.79912,-73.94187,Private room,150,2,1,0.02,1,0 +6475,24343117,Manhattan,East Harlem,40.80038,-73.94655999999999,Entire home/apt,175,3,44,0.8,1,280 +6476,24344136,Queens,Astoria,40.768879999999996,-73.90807,Private room,70,5,0,,1,0 +6477,129558,Brooklyn,Greenpoint,40.72907,-73.95468000000001,Entire home/apt,112,2,8,0.18,1,0 +6478,24344873,Manhattan,Kips Bay,40.74512,-73.98040999999999,Entire home/apt,200,10,3,0.05,1,0 +6479,24347671,Queens,Sunnyside,40.74607,-73.91415,Shared room,105,1,19,0.54,1,364 +6480,10148113,Brooklyn,Bedford-Stuyvesant,40.68927,-73.94767,Private room,70,2,3,0.05,1,0 +6481,12098551,Manhattan,Kips Bay,40.73937,-73.98187,Private room,115,3,1,0.02,2,0 +6482,23772724,Manhattan,Upper East Side,40.78171,-73.94617,Entire home/apt,99,30,6,0.15,15,225 +6483,13976132,Manhattan,Harlem,40.79973,-73.95541,Entire home/apt,120,3,133,2.39,1,4 +6484,21208237,Manhattan,East Harlem,40.79311,-73.94587,Private room,80,1,0,,1,0 +6485,2466294,Brooklyn,Bushwick,40.70131,-73.91745,Private room,90,2,8,0.16,2,363 +6486,2358032,Brooklyn,Bushwick,40.70027,-73.9231,Entire home/apt,70,4,8,0.33,1,0 +6487,24370211,Brooklyn,Williamsburg,40.71138,-73.95385,Private room,52,6,1,0.02,2,0 +6488,24009463,Queens,Long Island City,40.765859999999996,-73.93342,Entire home/apt,150,3,63,1.34,2,187 +6489,3237577,Manhattan,Chinatown,40.71585,-73.98982,Entire home/apt,170,3,94,1.71,1,7 +6490,9633085,Brooklyn,Williamsburg,40.706590000000006,-73.94049,Entire home/apt,132,4,7,0.16,1,0 +6491,24374791,Brooklyn,Bedford-Stuyvesant,40.67893,-73.95236,Entire home/apt,90,4,12,0.22,2,0 +6492,4655338,Brooklyn,Williamsburg,40.71751,-73.95839000000001,Entire home/apt,525,6,28,0.5,1,365 +6493,8778846,Manhattan,East Harlem,40.79315,-73.94787,Entire home/apt,249,1,67,1.25,1,0 +6494,24381419,Manhattan,Upper West Side,40.79973,-73.9711,Entire home/apt,160,2,6,0.11,1,0 +6495,24382598,Manhattan,Harlem,40.81455,-73.94471,Entire home/apt,125,1,142,2.55,1,266 +6496,34915,Manhattan,Upper East Side,40.77169,-73.95583,Entire home/apt,500,7,0,,1,0 +6497,21466735,Brooklyn,Carroll Gardens,40.68234,-73.9932,Private room,65,1,0,,1,0 +6498,5279180,Manhattan,Kips Bay,40.739509999999996,-73.9827,Entire home/apt,170,3,0,,1,0 +6499,1887912,Manhattan,Upper West Side,40.786570000000005,-73.97161,Entire home/apt,150,30,31,0.59,1,213 +6500,14140782,Manhattan,Harlem,40.81535,-73.95322,Private room,80,1,0,,1,0 +6501,19924780,Manhattan,Chelsea,40.74968,-73.99381,Entire home/apt,1000,2,95,1.7,1,353 +6502,23752440,Manhattan,Upper East Side,40.77065,-73.95702,Private room,175,30,0,,1,365 +6503,9288052,Brooklyn,Clinton Hill,40.685629999999996,-73.95956,Private room,50,2,15,0.29,2,0 +6504,855266,Manhattan,West Village,40.73767,-74.0065,Entire home/apt,250,5,1,0.05,1,0 +6505,6720617,Brooklyn,Crown Heights,40.67116,-73.93581999999999,Private room,40,1,1,0.02,1,0 +6506,12729740,Brooklyn,Bedford-Stuyvesant,40.684670000000004,-73.92863,Private room,75,1,0,,1,0 +6507,24403405,Brooklyn,Crown Heights,40.67163,-73.94265,Entire home/apt,82,1,1,0.02,1,0 +6508,24404709,Manhattan,Upper West Side,40.78635,-73.97616,Entire home/apt,93,30,16,0.29,1,271 +6509,405090,Brooklyn,Williamsburg,40.7119,-73.96377,Entire home/apt,100,7,6,0.15,1,0 +6510,11686822,Manhattan,Harlem,40.811690000000006,-73.94301,Private room,75,1,0,,1,0 +6511,724633,Manhattan,Tribeca,40.72325,-74.00990999999999,Entire home/apt,1000,2,6,0.25,1,19 +6512,24413323,Brooklyn,Williamsburg,40.70828,-73.95481,Private room,65,1,13,0.24,1,128 +6513,18746337,Brooklyn,Williamsburg,40.710640000000005,-73.96335,Entire home/apt,250,2,5,5.0,1,204 +6514,10679309,Manhattan,Midtown,40.745779999999996,-73.98076,Entire home/apt,130,1,3,0.08,2,0 +6515,24415699,Manhattan,Civic Center,40.71395,-74.00545,Entire home/apt,199,6,0,,1,0 +6516,12261576,Brooklyn,Sunset Park,40.65014,-74.00615,Private room,37,3,10,0.2,1,6 +6517,799566,Brooklyn,Bushwick,40.69702,-73.93365,Private room,80,2,0,,1,0 +6518,6898927,Brooklyn,Bushwick,40.697379999999995,-73.91162,Private room,33,2,9,0.19,1,0 +6519,10503555,Manhattan,East Village,40.72717,-73.991,Private room,55,26,0,,1,0 +6520,24429897,Manhattan,West Village,40.73552,-74.00520999999999,Entire home/apt,299,5,0,,1,0 +6521,706623,Brooklyn,Bushwick,40.694390000000006,-73.9068,Private room,69,4,5,0.09,4,98 +6522,1279274,Brooklyn,Williamsburg,40.71334,-73.96207,Entire home/apt,200,30,0,,1,0 +6523,17893360,Brooklyn,Crown Heights,40.67238,-73.95768000000001,Entire home/apt,109,1,18,0.38,1,0 +6524,6274029,Brooklyn,Prospect Heights,40.67895,-73.97233,Entire home/apt,200,4,5,0.1,1,21 +6525,3570170,Manhattan,Greenwich Village,40.72874,-74.00088000000001,Private room,95,2,4,0.08,1,0 +6526,4568686,Manhattan,Upper East Side,40.77556,-73.95245,Entire home/apt,375,4,0,,1,0 +6527,24454737,Manhattan,Morningside Heights,40.81088,-73.95774,Private room,50,14,1,0.02,1,0 +6528,24418383,Queens,Astoria,40.759159999999994,-73.91427,Private room,60,1,72,1.3,1,364 +6529,24459029,Brooklyn,Crown Heights,40.67083,-73.94944,Private room,44,1,3,0.05,1,0 +6530,1235070,Manhattan,East Harlem,40.792640000000006,-73.93898,Entire home/apt,9999,5,1,0.02,1,0 +6531,24461143,Brooklyn,Williamsburg,40.71754,-73.96228,Private room,77,1,0,,1,0 +6532,24462091,Manhattan,Washington Heights,40.84749,-73.9391,Private room,40,6,0,,1,0 +6533,295128,Bronx,Clason Point,40.81214,-73.85370999999999,Entire home/apt,110,1,15,0.49,7,325 +6534,15821855,Manhattan,Morningside Heights,40.81615,-73.95921,Private room,65,1,1,0.02,1,0 +6535,24467359,Brooklyn,Crown Heights,40.676559999999995,-73.94542,Entire home/apt,85,5,14,0.26,1,0 +6536,24468833,Brooklyn,Prospect Heights,40.67906,-73.96602,Entire home/apt,175,3,19,0.34,2,88 +6537,22616989,Brooklyn,Bensonhurst,40.61957,-73.9936,Entire home/apt,93,3,52,0.99,1,325 +6538,6932195,Queens,Fresh Meadows,40.7312,-73.78579,Entire home/apt,375,2,30,0.66,1,351 +6539,7111318,Manhattan,Harlem,40.82784,-73.93704,Entire home/apt,100,3,111,3.15,1,9 +6540,895109,Manhattan,West Village,40.73571,-74.00341,Entire home/apt,258,3,57,1.1,1,320 +6541,24487418,Brooklyn,Crown Heights,40.67318,-73.94842,Private room,75,2,19,0.39,1,0 +6542,24487842,Brooklyn,Williamsburg,40.71181,-73.95736,Entire home/apt,118,30,29,0.52,1,295 +6543,6648212,Manhattan,Morningside Heights,40.815090000000005,-73.96019,Entire home/apt,120,4,4,0.07,1,0 +6544,1766929,Manhattan,Upper East Side,40.76339,-73.95832,Entire home/apt,154,4,17,0.31,1,0 +6545,2665225,Brooklyn,Williamsburg,40.71717,-73.95688,Entire home/apt,150,3,1,0.02,1,0 +6546,21047204,Queens,Long Island City,40.74821,-73.94803,Entire home/apt,150,2,1,0.02,1,0 +6547,18975770,Manhattan,West Village,40.7325,-74.00453,Private room,145,2,93,1.82,2,193 +6548,24450948,Manhattan,East Village,40.726490000000005,-73.98284,Entire home/apt,250,2,11,0.2,1,0 +6549,24500940,Brooklyn,Windsor Terrace,40.651309999999995,-73.97405,Entire home/apt,100,5,24,0.44,1,0 +6550,24109763,Manhattan,Two Bridges,40.7123,-73.9956,Private room,155,1,193,8.21,1,37 +6551,24508767,Brooklyn,Williamsburg,40.71174,-73.94353000000001,Private room,100,1,0,,1,0 +6552,13631524,Manhattan,East Harlem,40.797740000000005,-73.93244,Private room,75,2,262,4.73,1,166 +6553,11950208,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95759,Entire home/apt,110,1,0,,1,0 +6554,21247073,Brooklyn,Williamsburg,40.71573,-73.96172,Private room,50,12,4,0.1,1,0 +6555,24454906,Manhattan,Washington Heights,40.833009999999994,-73.9394,Entire home/apt,225,1,0,,1,0 +6556,12112004,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.92336,Private room,150,1,0,,1,365 +6557,24525377,Manhattan,East Village,40.72513,-73.98064000000001,Private room,125,1,73,1.51,1,154 +6558,24529969,Manhattan,SoHo,40.72704,-74.00558000000001,Entire home/apt,200,3,10,0.21,1,0 +6559,24530713,Manhattan,Harlem,40.82332,-73.95470999999999,Private room,90,2,16,0.3,3,235 +6560,24530713,Manhattan,Harlem,40.82501,-73.95373000000001,Private room,125,1,4,0.08,3,365 +6561,3709510,Brooklyn,Bushwick,40.69258,-73.92528,Private room,125,2,0,,3,280 +6562,6649124,Manhattan,Upper West Side,40.80149,-73.96458,Private room,70,1,0,,1,0 +6563,2702777,Brooklyn,Bushwick,40.6984,-73.91476,Private room,55,1,0,,1,0 +6564,840590,Manhattan,Gramercy,40.73348,-73.98562,Entire home/apt,199,2,3,0.07,1,19 +6565,4031913,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.96055,Private room,89,2,139,2.53,1,94 +6566,24544724,Brooklyn,Williamsburg,40.71383,-73.96289,Entire home/apt,298,3,16,0.39,1,4 +6567,1832442,Brooklyn,Bushwick,40.70046,-73.92825,Private room,70,1,0,,1,0 +6568,10563051,Manhattan,Murray Hill,40.74811,-73.97298,Entire home/apt,110,15,26,0.47,1,0 +6569,24551170,Manhattan,East Village,40.72619,-73.98284,Entire home/apt,239,2,2,0.04,1,0 +6570,9150099,Manhattan,Upper East Side,40.762440000000005,-73.96215,Entire home/apt,300,3,2,0.04,1,0 +6571,24554369,Brooklyn,Bedford-Stuyvesant,40.68778,-73.92484,Private room,31,5,1,0.02,1,0 +6572,24555605,Manhattan,Lower East Side,40.72229,-73.9873,Private room,70,2,0,,1,0 +6573,24555785,Brooklyn,Bushwick,40.69685,-73.92933000000001,Private room,73,1,1,0.02,1,0 +6574,15055041,Manhattan,Washington Heights,40.837790000000005,-73.94328,Private room,70,2,248,4.65,1,12 +6575,11045893,Brooklyn,Red Hook,40.67915,-74.00707,Private room,63,25,10,0.2,1,290 +6576,15310997,Manhattan,Upper East Side,40.78032,-73.95249,Entire home/apt,200,30,9,0.21,9,332 +6577,7741110,Manhattan,Midtown,40.74245,-73.9845,Entire home/apt,220,4,149,2.68,1,287 +6578,24561040,Brooklyn,Park Slope,40.678509999999996,-73.97678,Private room,95,2,132,2.7,3,265 +6579,16437254,Brooklyn,Boerum Hill,40.68902,-73.98631999999999,Entire home/apt,127,30,7,0.15,21,342 +6580,302865,Brooklyn,Williamsburg,40.71337,-73.9642,Private room,85,8,0,,1,0 +6581,22814290,Manhattan,Upper West Side,40.78143,-73.98321,Entire home/apt,250,5,0,,1,0 +6582,24576978,Brooklyn,Greenpoint,40.72035,-73.95355,Entire home/apt,195,1,1,0.02,1,0 +6583,24584990,Manhattan,Harlem,40.8261,-73.95074,Private room,50,3,8,0.15,1,0 +6584,24587292,Brooklyn,Crown Heights,40.67507,-73.96092,Private room,60,7,0,,2,0 +6585,24587457,Brooklyn,Bedford-Stuyvesant,40.697759999999995,-73.96006,Private room,58,9,2,0.04,1,0 +6586,24590092,Queens,Astoria,40.75962,-73.91419,Private room,80,1,2,0.04,1,0 +6587,420111,Manhattan,East Harlem,40.797959999999996,-73.93856,Private room,73,2,15,0.33,2,250 +6588,24591281,Brooklyn,Bushwick,40.69913,-73.91484,Entire home/apt,91,15,1,0.03,1,0 +6589,24591710,Manhattan,SoHo,40.724940000000004,-74.00839,Private room,100,30,19,0.5,1,0 +6590,16066343,Manhattan,East Harlem,40.78825,-73.94861,Private room,52,3,186,3.39,2,49 +6591,13705706,Brooklyn,Williamsburg,40.71887,-73.94845,Private room,65,1,0,,1,0 +6592,15815124,Brooklyn,Prospect Heights,40.68163,-73.97122,Private room,70,2,45,0.85,1,0 +6593,207356,Brooklyn,Carroll Gardens,40.681709999999995,-73.99765,Entire home/apt,150,5,1,0.03,1,0 +6594,24597265,Queens,Ditmars Steinway,40.772059999999996,-73.91124,Entire home/apt,107,7,105,2.07,8,261 +6595,24598868,Manhattan,East Harlem,40.79588,-73.93646,Private room,80,1,0,,1,0 +6596,7182609,Brooklyn,Bushwick,40.70016,-73.91572,Private room,45,12,0,,1,0 +6597,23062393,Brooklyn,Bedford-Stuyvesant,40.6894,-73.95357,Private room,62,20,2,0.11,1,0 +6598,24597265,Queens,Ditmars Steinway,40.77075,-73.91018000000001,Private room,49,7,4,0.1,8,309 +6599,24597265,Queens,Ditmars Steinway,40.77183,-73.90973000000001,Private room,50,6,17,0.34,8,365 +6600,7156474,Queens,Long Island City,40.74651,-73.954,Entire home/apt,175,1,0,,1,0 +6601,22565253,Brooklyn,Bay Ridge,40.6342,-74.02337,Entire home/apt,129,5,48,0.87,4,91 +6602,17921968,Manhattan,Gramercy,40.73196,-73.9823,Entire home/apt,198,3,103,1.99,1,0 +6603,24517455,Manhattan,Upper East Side,40.77792,-73.9539,Entire home/apt,185,1,121,2.19,1,337 +6604,1660841,Brooklyn,Prospect-Lefferts Gardens,40.65713,-73.9537,Private room,90,1,0,,1,0 +6605,24625694,Manhattan,Washington Heights,40.85198,-73.93108000000001,Private room,40,1,0,,1,0 +6606,24404928,Brooklyn,Crown Heights,40.671170000000004,-73.95934,Entire home/apt,130,1,9,0.16,1,0 +6607,6465286,Brooklyn,Williamsburg,40.71217,-73.96367,Private room,100,2,32,0.55,2,74 +6608,6948005,Brooklyn,Bedford-Stuyvesant,40.69294,-73.96001,Private room,75,1,1,0.02,1,0 +6609,4601412,Brooklyn,Bushwick,40.69437,-73.92607,Private room,90,5,107,2.03,2,133 +6610,24630374,Brooklyn,Clinton Hill,40.68233,-73.96418,Entire home/apt,110,4,14,0.25,1,0 +6611,8873293,Brooklyn,Bedford-Stuyvesant,40.68897,-73.95477,Private room,65,2,8,0.15,2,175 +6612,12300501,Manhattan,Hell's Kitchen,40.759840000000004,-73.99214,Private room,49,1,102,1.84,1,1 +6613,24631934,Manhattan,East Village,40.72781,-73.97646,Entire home/apt,400,3,42,0.77,1,363 +6614,1641589,Brooklyn,Williamsburg,40.71172,-73.93973000000001,Private room,60,2,0,,1,0 +6615,24636847,Queens,Woodhaven,40.69634,-73.8563,Private room,31,3,3,0.23,1,0 +6616,3295012,Queens,Rego Park,40.72018,-73.86322,Private room,70,1,28,0.61,1,325 +6617,24585465,Manhattan,Upper West Side,40.77871,-73.97733000000001,Entire home/apt,250,2,23,0.48,1,0 +6618,10319096,Manhattan,Chelsea,40.73932,-73.99264000000001,Entire home/apt,215,1,0,,1,0 +6619,24639120,Manhattan,Midtown,40.760220000000004,-73.9744,Entire home/apt,235,6,13,0.25,1,0 +6620,1581845,Manhattan,Tribeca,40.71883,-74.00357,Entire home/apt,2400,1,2,0.05,1,365 +6621,24643923,Manhattan,Harlem,40.808820000000004,-73.94165,Private room,35,20,2,0.04,1,0 +6622,482242,Manhattan,Harlem,40.81651,-73.94319,Private room,59,1,0,,1,0 +6623,24655252,Manhattan,Hell's Kitchen,40.7637,-73.98985,Private room,65,17,24,0.45,1,86 +6624,2715121,Manhattan,Lower East Side,40.71801,-73.99078,Entire home/apt,180,1,5,0.09,1,0 +6625,24657274,Manhattan,Upper West Side,40.79202,-73.97946999999999,Entire home/apt,175,1,0,,1,0 +6626,5071632,Brooklyn,Borough Park,40.61959,-73.97856999999999,Entire home/apt,81,3,47,1.06,1,287 +6627,2910317,Manhattan,Midtown,40.7555,-73.96575,Entire home/apt,225,1,14,0.25,1,0 +6628,24660443,Brooklyn,Bushwick,40.695040000000006,-73.92709,Entire home/apt,100,4,123,2.48,1,184 +6629,186888,Brooklyn,Williamsburg,40.70936,-73.94109,Private room,75,3,125,3.26,1,134 +6630,3805240,Brooklyn,Bushwick,40.7001,-73.93009,Private room,85,7,2,0.09,1,0 +6631,7655962,Manhattan,Hell's Kitchen,40.7574,-73.99361,Entire home/apt,99,6,11,0.22,1,0 +6632,177846,Brooklyn,Fort Greene,40.68916,-73.977,Entire home/apt,175,4,27,0.49,2,11 +6633,24666854,Manhattan,Upper East Side,40.77321,-73.95175,Private room,90,1,0,,1,0 +6634,12374283,Manhattan,East Village,40.72333,-73.97948000000001,Private room,125,1,39,0.8,4,0 +6635,24667595,Brooklyn,Bushwick,40.69169,-73.92351,Private room,30,1,8,0.15,1,0 +6636,198387,Brooklyn,Williamsburg,40.71349,-73.9629,Entire home/apt,165,5,26,0.47,1,0 +6637,18156463,Manhattan,Nolita,40.72405,-73.99518,Entire home/apt,149,3,0,,1,0 +6638,1977947,Brooklyn,Carroll Gardens,40.67725,-73.99968,Private room,100,1,0,,1,0 +6639,1786943,Manhattan,Greenwich Village,40.729040000000005,-74.00129,Entire home/apt,200,4,2,0.04,1,0 +6640,24672682,Manhattan,East Village,40.728790000000004,-73.97959,Private room,110,1,1,0.02,1,0 +6641,1760609,Manhattan,East Village,40.7223,-73.98128,Entire home/apt,315,1,2,0.04,1,0 +6642,23852000,Brooklyn,Williamsburg,40.71975,-73.96285,Entire home/apt,148,30,16,0.37,1,195 +6643,7365719,Brooklyn,Bedford-Stuyvesant,40.67958,-73.94581,Entire home/apt,150,5,12,0.24,1,9 +6644,24678971,Manhattan,East Village,40.724540000000005,-73.98688,Private room,175,1,41,0.77,1,0 +6645,9767363,Manhattan,East Harlem,40.79637,-73.93370999999999,Private room,59,2,151,2.75,1,308 +6646,23020530,Manhattan,Upper West Side,40.77917,-73.97397,Entire home/apt,139,1,1,0.02,1,0 +6647,2052361,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95936,Private room,50,3,50,0.92,3,98 +6648,4923436,Manhattan,Gramercy,40.73877,-73.98706999999999,Entire home/apt,250,30,2,0.04,1,0 +6649,14608821,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95421999999999,Private room,42,7,0,,1,0 +6650,1725974,Brooklyn,Williamsburg,40.70973,-73.96056,Private room,100,1,0,,1,0 +6651,16297020,Brooklyn,Williamsburg,40.712340000000005,-73.96601,Private room,80,1,0,,1,0 +6652,11479819,Queens,Astoria,40.76235,-73.9217,Entire home/apt,90,14,0,,1,0 +6653,6328283,Manhattan,Harlem,40.82291,-73.94171,Entire home/apt,105,2,49,0.9,1,193 +6654,13343955,Brooklyn,Clinton Hill,40.684509999999996,-73.96461,Private room,75,2,6,0.2,1,133 +6655,57101,Queens,Rockaway Beach,40.58822,-73.81299,Entire home/apt,130,1,186,3.35,1,292 +6656,3471761,Brooklyn,Bedford-Stuyvesant,40.688109999999995,-73.92398,Entire home/apt,149,2,145,2.62,2,305 +6657,24704747,Manhattan,Upper East Side,40.77378,-73.95684,Entire home/apt,200,1,3,0.07,1,0 +6658,7503643,Brooklyn,Greenpoint,40.72545,-73.94039000000001,Entire home/apt,149,30,2,0.06,52,358 +6659,24710778,Manhattan,Harlem,40.81004,-73.95231,Private room,60,1,1,0.02,1,0 +6660,24711105,Manhattan,Harlem,40.82796,-73.9505,Private room,100,1,0,,1,0 +6661,16151285,Bronx,Williamsbridge,40.88016,-73.84923,Private room,43,28,15,0.3,4,336 +6662,24712268,Brooklyn,Gowanus,40.66845,-73.99181,Entire home/apt,145,5,11,0.24,1,40 +6663,8902883,Manhattan,Washington Heights,40.83729,-73.94372,Entire home/apt,85,30,10,0.28,1,147 +6664,24715671,Manhattan,Midtown,40.74439,-73.98329,Entire home/apt,275,30,39,0.72,4,365 +6665,810311,Brooklyn,Crown Heights,40.66596,-73.9549,Private room,100,3,3,0.08,1,89 +6666,23982388,Manhattan,Midtown,40.75235,-73.96781,Entire home/apt,105,30,2,0.04,5,315 +6667,1660906,Manhattan,West Village,40.73245,-74.00275,Entire home/apt,250,2,3,0.06,1,0 +6668,24728241,Manhattan,Kips Bay,40.74317,-73.97508,Entire home/apt,180,1,0,,1,0 +6669,5999440,Manhattan,Hell's Kitchen,40.755109999999995,-73.99247,Private room,175,2,188,4.01,1,203 +6670,1559494,Brooklyn,Williamsburg,40.71262,-73.95026,Entire home/apt,600,2,20,3.3,1,283 +6671,9864136,Manhattan,Kips Bay,40.74156,-73.97968,Private room,95,30,37,0.68,26,365 +6672,24740606,Queens,Astoria,40.76457,-73.91205,Entire home/apt,150,2,2,0.04,1,0 +6673,12968821,Manhattan,Upper East Side,40.77613,-73.9462,Entire home/apt,119,10,12,0.22,1,0 +6674,13026391,Manhattan,Midtown,40.75456,-73.96625999999999,Entire home/apt,165,2,11,0.21,1,0 +6675,24744819,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94951,Private room,50,1,0,,1,0 +6676,24747103,Manhattan,Hell's Kitchen,40.7646,-73.98799,Entire home/apt,225,1,0,,1,0 +6677,932245,Manhattan,Harlem,40.82775,-73.94313000000001,Entire home/apt,80,2,22,0.48,1,87 +6678,24750076,Manhattan,Upper West Side,40.79331,-73.97537,Entire home/apt,149,4,15,0.3,1,0 +6679,24761711,Brooklyn,Windsor Terrace,40.64865,-73.97946999999999,Entire home/apt,195,2,186,3.55,2,230 +6680,1870841,Brooklyn,Prospect Heights,40.67995,-73.97021,Entire home/apt,130,3,5,0.11,1,0 +6681,3422859,Manhattan,Harlem,40.80434,-73.95476,Entire home/apt,95,3,9,0.16,1,0 +6682,23982388,Manhattan,Midtown,40.75244,-73.96619,Entire home/apt,125,30,5,0.1,5,331 +6683,23982388,Manhattan,Midtown,40.75248,-73.96695,Entire home/apt,95,30,3,0.06,5,318 +6684,24765924,Queens,East Elmhurst,40.76313,-73.88368,Private room,50,1,55,1.21,1,332 +6685,23982388,Manhattan,Midtown,40.75427,-73.96689,Entire home/apt,85,30,2,0.05,5,83 +6686,5715779,Brooklyn,Bushwick,40.704679999999996,-73.92863,Shared room,95,1,0,,1,0 +6687,24770709,Brooklyn,Crown Heights,40.67033,-73.95262,Private room,50,1,0,,1,0 +6688,24766218,Brooklyn,Clinton Hill,40.689170000000004,-73.96545,Private room,80,14,2,0.04,1,335 +6689,22643930,Brooklyn,Bushwick,40.697109999999995,-73.93373000000001,Entire home/apt,320,3,125,3.42,1,269 +6690,24789838,Brooklyn,Bushwick,40.688759999999995,-73.90824,Private room,37,17,0,,2,0 +6691,4312196,Brooklyn,Crown Heights,40.6794,-73.9616,Private room,90,4,1,0.02,1,0 +6692,23982388,Manhattan,Hell's Kitchen,40.76497,-73.98854,Entire home/apt,95,30,4,0.11,5,337 +6693,24792241,Manhattan,Upper West Side,40.7915,-73.96696999999999,Private room,85,3,6,0.15,1,193 +6694,13486673,Brooklyn,Prospect Heights,40.67904,-73.97289,Private room,79,13,8,0.19,3,24 +6695,24793480,Manhattan,East Village,40.727709999999995,-73.98549,Private room,100,7,0,,1,0 +6696,24796602,Brooklyn,Crown Heights,40.672340000000005,-73.92721,Private room,54,2,50,2.26,4,302 +6697,24797535,Manhattan,Upper West Side,40.80123,-73.96248,Entire home/apt,129,10,29,0.54,1,0 +6698,3211,Queens,Long Island City,40.76308,-73.92843,Private room,90,4,21,0.41,1,89 +6699,7351,Brooklyn,South Slope,40.66442,-73.99047,Entire home/apt,254,2,8,0.23,3,365 +6700,21671443,Manhattan,Hell's Kitchen,40.765570000000004,-73.98745,Entire home/apt,159,2,16,0.31,1,0 +6701,3514707,Manhattan,East Harlem,40.7945,-73.94298,Entire home/apt,90,5,2,0.04,1,0 +6702,177846,Brooklyn,Fort Greene,40.68864,-73.97669,Private room,85,5,47,0.85,2,9 +6703,24827152,Brooklyn,Bedford-Stuyvesant,40.68383,-73.95298000000001,Private room,45,3,5,0.09,1,0 +6704,24827643,Brooklyn,Cobble Hill,40.686170000000004,-73.99632,Entire home/apt,275,10,1,0.03,1,1 +6705,24828814,Brooklyn,Bushwick,40.70295,-73.91354,Private room,38,1,1,0.03,1,0 +6706,1543006,Brooklyn,Bedford-Stuyvesant,40.68675,-73.93749,Entire home/apt,100,2,3,0.06,1,0 +6707,19660044,Brooklyn,Williamsburg,40.70816,-73.94244,Private room,103,1,7,0.13,1,0 +6708,23772724,Manhattan,Upper East Side,40.77427,-73.95325,Entire home/apt,99,30,8,0.28,15,270 +6709,24832100,Manhattan,Upper East Side,40.761720000000004,-73.96074,Entire home/apt,185,3,7,0.13,1,0 +6710,24832418,Brooklyn,Bedford-Stuyvesant,40.69253,-73.94681,Private room,90,1,0,,1,0 +6711,11708118,Manhattan,Financial District,40.70373,-74.00827,Private room,86,4,2,0.06,1,0 +6712,24835471,Manhattan,Washington Heights,40.84359,-73.94134,Private room,40,3,23,0.43,1,70 +6713,16514175,Queens,Elmhurst,40.746320000000004,-73.88681,Entire home/apt,165,2,58,2.1,5,163 +6714,6677425,Manhattan,Upper West Side,40.795840000000005,-73.96381,Shared room,35,2,134,2.48,2,66 +6715,2921076,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94634,Entire home/apt,2000,7,3,0.05,1,0 +6716,10503302,Manhattan,Upper West Side,40.79228,-73.97414,Entire home/apt,117,14,0,,1,15 +6717,24633966,Brooklyn,Kensington,40.644690000000004,-73.97086,Private room,50,14,0,,1,0 +6718,24839116,Brooklyn,South Slope,40.66437,-73.9823,Entire home/apt,175,3,14,0.25,1,0 +6719,24840863,Brooklyn,Bushwick,40.70092,-73.92945,Entire home/apt,95,1,1,0.02,1,0 +6720,24841295,Manhattan,East Village,40.72503,-73.97695999999999,Private room,70,2,5,0.14,1,0 +6721,7402258,Brooklyn,Williamsburg,40.7091,-73.94279,Entire home/apt,100,3,18,0.33,1,3 +6722,1445060,Brooklyn,Williamsburg,40.707770000000004,-73.94816,Private room,150,4,3,0.21,1,362 +6723,24842701,Manhattan,Upper East Side,40.77493,-73.95874,Entire home/apt,169,3,130,2.36,1,274 +6724,24844547,Brooklyn,Crown Heights,40.669340000000005,-73.94976,Private room,50,1,0,,1,0 +6725,20934972,Manhattan,Kips Bay,40.742459999999994,-73.9767,Private room,99,1,5,0.11,1,0 +6726,24844621,Manhattan,Midtown,40.766090000000005,-73.98038000000001,Entire home/apt,200,1,0,,1,0 +6727,3800548,Brooklyn,Greenpoint,40.731759999999994,-73.95371,Private room,70,4,6,0.11,1,0 +6728,7552191,Brooklyn,Bedford-Stuyvesant,40.68515,-73.91981,Entire home/apt,130,14,33,0.72,1,105 +6729,17883343,Manhattan,Murray Hill,40.747679999999995,-73.97561999999999,Private room,125,1,0,,1,0 +6730,854458,Manhattan,Greenwich Village,40.728120000000004,-73.99983,Entire home/apt,180,2,11,0.22,1,0 +6731,1631807,Brooklyn,Clinton Hill,40.6868,-73.96517,Private room,80,5,1,0.03,1,0 +6732,24865745,Queens,Ozone Park,40.683370000000004,-73.8431,Private room,45,1,0,,1,0 +6733,21191214,Brooklyn,Clinton Hill,40.683479999999996,-73.96394000000001,Entire home/apt,99,5,0,,1,0 +6734,2489199,Manhattan,Harlem,40.82376,-73.94492,Entire home/apt,99,25,16,0.3,1,157 +6735,3677131,Brooklyn,Red Hook,40.67627,-74.00625,Private room,99,1,58,1.15,1,88 +6736,24872048,Manhattan,Lower East Side,40.72229,-73.98913,Entire home/apt,225,1,0,,1,0 +6737,24614110,Queens,Astoria,40.76042,-73.92073,Entire home/apt,150,1,3,0.06,1,0 +6738,323771,Manhattan,Nolita,40.72351,-73.99627,Entire home/apt,100,3,0,,1,13 +6739,6707311,Brooklyn,Williamsburg,40.71895,-73.95604,Private room,73,2,39,0.71,1,260 +6740,24878584,Manhattan,East Village,40.72999,-73.98764,Private room,180,1,0,,1,0 +6741,20038668,Manhattan,Harlem,40.828990000000005,-73.95024000000001,Private room,80,1,9,0.19,1,364 +6742,24895956,Manhattan,East Harlem,40.78712,-73.95365,Private room,80,1,39,0.91,1,189 +6743,19636200,Manhattan,Upper West Side,40.776920000000004,-73.97977,Private room,85,1,34,0.71,1,8 +6744,24899760,Manhattan,Stuyvesant Town,40.72912,-73.97624,Entire home/apt,175,4,0,,1,0 +6745,20357771,Brooklyn,Williamsburg,40.71114,-73.94438000000001,Private room,100,1,1,0.02,1,0 +6746,1304390,Brooklyn,Bushwick,40.70037,-73.92820999999999,Private room,85,4,2,0.07,1,364 +6747,10600973,Manhattan,East Harlem,40.791129999999995,-73.94792,Private room,65,5,7,0.22,1,80 +6748,24903878,Manhattan,Financial District,40.70465,-74.00773000000001,Private room,150,1,1,0.02,1,0 +6749,988069,Brooklyn,Williamsburg,40.71983,-73.96465,Entire home/apt,249,30,0,,1,0 +6750,854567,Brooklyn,Bushwick,40.68843,-73.91577,Private room,40,1,0,,2,0 +6751,6430105,Manhattan,Upper West Side,40.77773,-73.97764000000001,Private room,200,1,1,0.02,1,0 +6752,24907501,Queens,Astoria,40.769740000000006,-73.91819,Entire home/apt,124,14,8,0.15,1,0 +6753,24821875,Manhattan,Hell's Kitchen,40.764509999999994,-73.9882,Private room,200,1,0,,1,0 +6754,12730517,Manhattan,Upper West Side,40.80107,-73.96065,Entire home/apt,50,1,1,0.02,1,0 +6755,24833732,Manhattan,Little Italy,40.71763,-73.99753,Entire home/apt,160,2,6,0.12,1,0 +6756,4244200,Manhattan,Lower East Side,40.71942,-73.98605,Entire home/apt,200,2,0,,1,0 +6757,24913141,Manhattan,Lower East Side,40.7182,-73.99325999999999,Entire home/apt,300,6,0,,1,0 +6758,14923355,Manhattan,Chelsea,40.74583,-74.00405,Entire home/apt,200,3,7,0.13,1,0 +6759,24915465,Brooklyn,Prospect-Lefferts Gardens,40.662440000000004,-73.95813000000001,Entire home/apt,139,1,44,0.8,1,0 +6760,15615036,Brooklyn,Bushwick,40.690909999999995,-73.91402,Private room,49,4,19,0.35,2,0 +6761,24918898,Brooklyn,Williamsburg,40.70765,-73.95116,Private room,55,4,13,0.24,2,0 +6762,7065271,Manhattan,East Village,40.72551,-73.98541999999999,Entire home/apt,260,10,4,0.08,1,31 +6763,6954001,Manhattan,Chelsea,40.74372,-73.99682,Private room,150,1,0,,1,0 +6764,12485770,Manhattan,East Village,40.72829,-73.98071999999999,Entire home/apt,110,30,8,0.18,9,280 +6765,5545129,Brooklyn,Boerum Hill,40.688959999999994,-73.98961,Entire home/apt,110,5,2,0.04,1,0 +6766,6486116,Manhattan,East Harlem,40.78804,-73.94906,Private room,81,1,142,2.81,4,223 +6767,6885157,Brooklyn,Bedford-Stuyvesant,40.68266,-73.95031999999999,Entire home/apt,60,1,23,1.99,15,83 +6768,6706914,Brooklyn,Crown Heights,40.672779999999996,-73.95688,Private room,65,1,1,0.02,2,0 +6769,24941494,Brooklyn,Clinton Hill,40.689240000000005,-73.96453000000001,Private room,175,3,0,,1,83 +6770,22930715,Brooklyn,Brooklyn Heights,40.69191,-73.99331,Entire home/apt,130,2,1,0.02,1,0 +6771,157051,Brooklyn,Williamsburg,40.71411,-73.9495,Entire home/apt,240,2,9,0.2,1,0 +6772,6902571,Brooklyn,Bedford-Stuyvesant,40.68886,-73.95212,Entire home/apt,130,2,6,0.29,1,0 +6773,1475015,Manhattan,Hell's Kitchen,40.76719,-73.98533,Entire home/apt,97,30,6,0.12,52,365 +6774,24950473,Brooklyn,Sheepshead Bay,40.584140000000005,-73.95489,Private room,50,2,0,,1,0 +6775,21209568,Brooklyn,Bushwick,40.70516,-73.91946,Entire home/apt,88,7,2,0.04,1,0 +6776,2464823,Queens,Astoria,40.7643,-73.92636999999999,Entire home/apt,112,7,5,0.1,1,0 +6777,22219331,Brooklyn,Bushwick,40.701409999999996,-73.91781999999999,Private room,65,1,0,,1,0 +6778,24967136,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93183,Entire home/apt,105,7,53,1.12,2,77 +6779,23621417,Brooklyn,Williamsburg,40.70969,-73.94925,Entire home/apt,120,1,0,,1,0 +6780,414477,Brooklyn,Crown Heights,40.6776,-73.94918,Entire home/apt,70,2,15,0.27,1,18 +6781,24880134,Brooklyn,Prospect Heights,40.67935,-73.96911999999999,Private room,75,3,1,0.1,3,0 +6782,6162041,Queens,Ozone Park,40.685590000000005,-73.8496,Entire home/apt,99,2,129,2.33,1,344 +6783,11064999,Brooklyn,Brooklyn Heights,40.69454,-73.99547,Entire home/apt,275,5,0,,1,0 +6784,24973819,Manhattan,Stuyvesant Town,40.73001,-73.97579,Private room,600,1,0,,1,0 +6785,12220,Manhattan,Upper West Side,40.77904,-73.98899,Private room,90,1,24,0.46,3,341 +6786,24448659,Brooklyn,Midwood,40.629709999999996,-73.95069000000001,Entire home/apt,60,3,1,0.02,1,0 +6787,2306320,Brooklyn,Crown Heights,40.6785,-73.96041,Entire home/apt,125,1,7,0.2,1,0 +6788,14747290,Brooklyn,Bushwick,40.70583,-73.91658000000001,Private room,65,10,4,0.27,1,349 +6789,4306959,Brooklyn,Bushwick,40.69986,-73.9298,Entire home/apt,159,3,30,0.54,1,0 +6790,19263941,Manhattan,Morningside Heights,40.80442,-73.96338,Entire home/apt,145,5,3,0.06,1,0 +6791,3449749,Manhattan,Upper East Side,40.762029999999996,-73.96183,Private room,130,1,0,,1,0 +6792,15398647,Manhattan,Upper West Side,40.7838,-73.97266,Entire home/apt,255,2,47,0.92,1,352 +6793,25002053,Manhattan,Upper West Side,40.78866,-73.96908,Private room,90,2,157,2.95,1,85 +6794,25001808,Brooklyn,South Slope,40.66003,-73.98567,Entire home/apt,150,3,73,1.34,1,120 +6795,2503221,Brooklyn,Williamsburg,40.72104,-73.96034,Entire home/apt,295,2,75,1.5,1,339 +6796,7355953,Queens,Astoria,40.75741,-73.92509,Entire home/apt,125,1,0,,1,0 +6797,25015010,Manhattan,Inwood,40.866479999999996,-73.92754000000001,Entire home/apt,75,1,5,0.11,1,31 +6798,25017014,Brooklyn,Bedford-Stuyvesant,40.68662,-73.9479,Entire home/apt,188,2,23,3.47,1,75 +6799,11457159,Manhattan,Upper East Side,40.78335,-73.94821999999999,Entire home/apt,130,1,2,0.09,1,0 +6800,7017213,Brooklyn,Flatbush,40.649190000000004,-73.96129,Entire home/apt,72,1,3,0.07,1,0 +6801,5650180,Queens,Elmhurst,40.745129999999996,-73.8825,Private room,45,3,12,0.37,2,201 +6802,2346300,Brooklyn,Boerum Hill,40.68983,-73.99114,Private room,80,1,168,3.11,1,272 +6803,1292274,Manhattan,Upper East Side,40.783429999999996,-73.94764,Private room,94,1,51,0.93,2,88 +6804,1113080,Brooklyn,Sunset Park,40.64605,-74.00338,Private room,70,22,16,0.29,3,173 +6805,87473,Brooklyn,Greenpoint,40.72996,-73.95302,Entire home/apt,150,6,1,0.16,1,0 +6806,1968327,Brooklyn,Bedford-Stuyvesant,40.692679999999996,-73.95575,Private room,70,2,6,0.12,1,365 +6807,10387090,Brooklyn,Bedford-Stuyvesant,40.6815,-73.91266999999999,Private room,42,30,3,0.05,5,348 +6808,4952537,Manhattan,Greenwich Village,40.729040000000005,-74.00116,Entire home/apt,225,3,0,,1,0 +6809,25037051,Brooklyn,Crown Heights,40.67006,-73.9553,Private room,70,1,10,0.18,2,0 +6810,15442902,Brooklyn,Boerum Hill,40.6832,-73.98109000000001,Private room,60,1,0,,1,0 +6811,3336995,Manhattan,Hell's Kitchen,40.76736,-73.98383000000001,Entire home/apt,180,2,8,0.15,1,10 +6812,25043292,Manhattan,Nolita,40.72011,-73.99465,Entire home/apt,150,3,2,0.08,2,0 +6813,1509237,Manhattan,East Harlem,40.7951,-73.94716,Private room,105,2,88,2.03,2,266 +6814,25052740,Brooklyn,Bedford-Stuyvesant,40.69627,-73.94371,Entire home/apt,100,5,9,0.17,3,262 +6815,3896287,Brooklyn,Williamsburg,40.71396,-73.94021,Entire home/apt,225,4,9,0.16,1,0 +6816,12708335,Brooklyn,Crown Heights,40.66948,-73.95156999999999,Entire home/apt,125,15,0,,1,0 +6817,4712698,Queens,Long Island City,40.74282,-73.94994,Private room,82,2,116,2.1,1,58 +6818,22840947,Manhattan,Chinatown,40.71633,-73.99133,Entire home/apt,140,1,0,,1,0 +6819,25073318,Brooklyn,Fort Greene,40.692029999999995,-73.97088000000001,Entire home/apt,250,4,0,,1,0 +6820,6439895,Brooklyn,Bushwick,40.702529999999996,-73.91889,Private room,69,4,0,,1,0 +6821,516877,Manhattan,Hell's Kitchen,40.76332,-73.9863,Entire home/apt,275,2,0,,1,0 +6822,25093848,Brooklyn,Bedford-Stuyvesant,40.68175,-73.9153,Entire home/apt,145,3,209,3.79,1,219 +6823,25102191,Manhattan,East Harlem,40.807320000000004,-73.93972,Entire home/apt,125,7,0,,1,0 +6824,1473630,Brooklyn,Gowanus,40.68234,-73.98168000000001,Private room,100,1,2,0.04,1,0 +6825,18254644,Manhattan,Lower East Side,40.71951,-73.98449000000001,Entire home/apt,100,5,131,2.4,1,108 +6826,66276,Brooklyn,Williamsburg,40.7077,-73.94785,Entire home/apt,190,6,8,0.16,1,5 +6827,3568184,Manhattan,SoHo,40.722190000000005,-73.99741999999999,Entire home/apt,200,1,49,0.94,1,0 +6828,25110559,Manhattan,Upper West Side,40.77669,-73.97695999999999,Entire home/apt,125,31,1,0.02,1,41 +6829,23439479,Manhattan,Inwood,40.864940000000004,-73.92671999999999,Entire home/apt,300,4,3,0.06,2,316 +6830,25112856,Manhattan,West Village,40.739329999999995,-74.00313,Entire home/apt,159,4,40,0.83,1,267 +6831,12417880,Manhattan,Upper West Side,40.79527,-73.96486,Entire home/apt,225,2,0,,1,0 +6832,210602,Manhattan,Chelsea,40.73932,-73.99032,Entire home/apt,300,1,0,,1,0 +6833,17056215,Manhattan,Greenwich Village,40.73055,-74.0007,Entire home/apt,180,2,28,0.58,1,0 +6834,25134822,Queens,Astoria,40.77029,-73.92493,Entire home/apt,99,1,38,0.74,2,263 +6835,24943630,Manhattan,Greenwich Village,40.73222,-73.9969,Private room,120,4,19,0.35,1,339 +6836,21817218,Manhattan,Midtown,40.75163,-73.9722,Private room,90,7,27,0.5,1,35 +6837,2470606,Brooklyn,Greenpoint,40.72418,-73.94757,Private room,59,1,2,0.04,1,0 +6838,1705071,Queens,Long Island City,40.747409999999995,-73.94712,Private room,95,1,141,2.77,2,331 +6839,24982697,Brooklyn,Sunset Park,40.64132,-74.01767,Private room,65,30,11,0.2,2,312 +6840,25145883,Queens,Sunnyside,40.744609999999994,-73.91514000000001,Private room,40,2,2,2.0,1,5 +6841,3339901,Manhattan,Nolita,40.72285,-73.99409,Entire home/apt,250,4,7,0.14,1,0 +6842,17928071,Brooklyn,Williamsburg,40.71009,-73.9575,Private room,85,3,23,0.42,2,280 +6843,7920086,Manhattan,East Harlem,40.78615,-73.94295,Private room,71,30,19,0.35,3,0 +6844,14813211,Manhattan,Harlem,40.81964,-73.9468,Entire home/apt,109,4,0,,1,0 +6845,3417940,Brooklyn,Gowanus,40.67308,-73.99333,Entire home/apt,262,2,166,3.06,1,0 +6846,6438118,Brooklyn,Williamsburg,40.712790000000005,-73.9641,Private room,55,3,0,,1,0 +6847,25168328,Manhattan,Harlem,40.823890000000006,-73.94033,Entire home/apt,70,1,1,0.02,1,0 +6848,25168888,Manhattan,Harlem,40.821909999999995,-73.95736,Entire home/apt,109,14,3,0.05,3,0 +6849,25175433,Queens,Ridgewood,40.69958,-73.90825,Private room,40,3,0,,1,0 +6850,9845403,Queens,Long Island City,40.75358,-73.92336,Private room,70,1,0,,1,0 +6851,14035846,Queens,Sunnyside,40.743829999999996,-73.92076999999999,Private room,50,15,2,0.17,1,341 +6852,14289427,Manhattan,Chinatown,40.715790000000005,-73.99253,Private room,120,5,8,0.15,3,318 +6853,10450922,Manhattan,Harlem,40.8076,-73.95274,Private room,80,50,0,,1,0 +6854,6285979,Brooklyn,Brooklyn Heights,40.6945,-73.99543,Entire home/apt,200,3,6,0.11,1,0 +6855,25230336,Brooklyn,Clinton Hill,40.683820000000004,-73.96292,Entire home/apt,300,3,0,,1,0 +6856,16460889,Manhattan,Greenwich Village,40.729690000000005,-73.9995,Entire home/apt,175,1,4,0.08,1,0 +6857,5564276,Brooklyn,Bedford-Stuyvesant,40.68998,-73.95645999999999,Private room,75,1,0,,1,0 +6858,557918,Queens,Sunnyside,40.74628,-73.9196,Entire home/apt,119,6,15,0.46,1,1 +6859,25237492,Manhattan,Upper East Side,40.760670000000005,-73.9602,Entire home/apt,165,30,11,0.21,34,274 +6860,25249481,Bronx,Mount Hope,40.85062,-73.90250999999999,Private room,40,14,5,0.13,1,322 +6861,25237492,Manhattan,Upper West Side,40.78286,-73.98339,Entire home/apt,265,30,14,0.26,34,274 +6862,25237492,Manhattan,Upper West Side,40.78141,-73.98445,Entire home/apt,130,30,12,0.23,34,292 +6863,13772270,Brooklyn,Kensington,40.6461,-73.97332,Entire home/apt,85,2,3,0.08,1,351 +6864,25263341,Brooklyn,Crown Heights,40.664120000000004,-73.95591,Private room,70,15,1,0.02,1,314 +6865,551139,Brooklyn,Williamsburg,40.70666,-73.96526,Entire home/apt,210,3,31,0.57,1,0 +6866,25264954,Manhattan,Hell's Kitchen,40.7583,-73.99001,Private room,225,1,0,,1,0 +6867,25037051,Brooklyn,Crown Heights,40.66915,-73.95339,Private room,46,1,8,0.15,2,333 +6868,25268374,Brooklyn,Crown Heights,40.6741,-73.94496,Private room,75,1,0,,1,0 +6869,25268900,Brooklyn,Bushwick,40.700829999999996,-73.91679,Entire home/apt,126,3,98,1.95,1,180 +6870,25242899,Brooklyn,Sunset Park,40.65616,-74.00091,Private room,88,4,42,0.82,1,261 +6871,25266756,Manhattan,Harlem,40.807390000000005,-73.95159,Entire home/apt,150,5,14,0.26,1,66 +6872,25273326,Brooklyn,Fort Greene,40.68528,-73.97528,Entire home/apt,175,1,89,1.77,1,0 +6873,23772724,Manhattan,Hell's Kitchen,40.76102,-73.98881999999999,Entire home/apt,380,30,5,0.11,15,332 +6874,25276263,Brooklyn,Boerum Hill,40.6881,-73.98699,Entire home/apt,500,6,29,0.53,1,89 +6875,6230230,Manhattan,Lower East Side,40.718059999999994,-73.98493,Private room,110,20,13,0.25,3,0 +6876,24127267,Manhattan,East Village,40.73037,-73.98268,Entire home/apt,175,1,1,0.02,1,0 +6877,236659,Manhattan,Financial District,40.7082,-74.00139,Private room,78,1,1,0.02,1,0 +6878,4422415,Manhattan,Upper East Side,40.777159999999995,-73.94779,Entire home/apt,250,2,11,0.21,2,358 +6879,81335,Manhattan,Upper West Side,40.78334,-73.97452,Entire home/apt,125,1,171,4.63,3,121 +6880,4445005,Brooklyn,Williamsburg,40.71281,-73.9657,Entire home/apt,200,2,3,0.1,1,16 +6881,1780076,Brooklyn,Crown Heights,40.6763,-73.95764,Private room,55,3,0,,2,0 +6882,1633246,Brooklyn,Bedford-Stuyvesant,40.68679,-73.92327,Private room,65,2,9,0.17,4,280 +6883,22338025,Manhattan,Chelsea,40.74244,-73.99854,Entire home/apt,175,1,0,,1,0 +6884,25237492,Manhattan,Upper West Side,40.7813,-73.98319000000001,Entire home/apt,205,30,20,0.38,34,274 +6885,25365628,Queens,Woodside,40.744679999999995,-73.91102,Entire home/apt,90,1,0,,1,0 +6886,23069182,Brooklyn,Fort Greene,40.68346,-73.97214,Private room,100,1,55,4.16,1,342 +6887,331579,Brooklyn,Bedford-Stuyvesant,40.68744,-73.92322,Private room,60,3,29,0.6,2,232 +6888,22210080,Manhattan,Hell's Kitchen,40.76175,-73.9892,Private room,99,1,318,5.78,1,0 +6889,7537442,Manhattan,East Harlem,40.80315,-73.94017,Private room,50,7,25,0.5,1,151 +6890,331579,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92331,Private room,50,3,32,0.72,2,329 +6891,23533897,Brooklyn,Crown Heights,40.67419,-73.95251,Private room,68,1,91,1.78,7,329 +6892,25003560,Manhattan,Harlem,40.81405,-73.95285,Entire home/apt,125,1,31,0.57,1,188 +6893,25394253,Manhattan,Chelsea,40.741409999999995,-73.99996,Entire home/apt,175,1,1,0.02,1,0 +6894,25399747,Brooklyn,Bedford-Stuyvesant,40.68168,-73.9368,Entire home/apt,100,3,91,2.0,1,160 +6895,15824660,Manhattan,Greenwich Village,40.7282,-74.00165,Private room,85,2,0,,1,0 +6896,25401356,Manhattan,East Harlem,40.79717,-73.93298,Entire home/apt,125,2,7,0.15,1,0 +6897,5037211,Brooklyn,Greenpoint,40.72023,-73.9479,Private room,118,3,1,0.02,2,188 +6898,25404246,Manhattan,Nolita,40.72139,-73.99688,Entire home/apt,346,198,163,2.96,1,0 +6899,25295888,Brooklyn,Bedford-Stuyvesant,40.67917,-73.92565,Private room,52,2,16,0.37,1,0 +6900,864735,Queens,Astoria,40.75782,-73.92128000000001,Entire home/apt,107,30,15,0.29,8,311 +6901,8183266,Manhattan,Midtown,40.75462,-73.96869000000001,Entire home/apt,99,2,168,3.1,1,46 +6902,22087408,Manhattan,Lower East Side,40.71763,-73.98359,Entire home/apt,150,1,17,0.36,3,264 +6903,2439175,Brooklyn,Bedford-Stuyvesant,40.69147,-73.94113,Private room,65,4,180,3.37,1,6 +6904,25439443,Manhattan,Harlem,40.81831,-73.93833000000001,Entire home/apt,85,30,5,0.11,1,7 +6905,15297517,Manhattan,Upper East Side,40.78096,-73.9475,Entire home/apt,155,4,9,0.19,1,0 +6906,25468442,Brooklyn,Prospect Heights,40.67273,-73.96361,Entire home/apt,125,2,34,0.64,1,0 +6907,519554,Manhattan,Lower East Side,40.72007,-73.98775,Private room,59,3,36,0.8,5,349 +6908,25473311,Queens,Sunnyside,40.73835,-73.92636,Private room,70,7,56,1.18,2,90 +6909,25476493,Manhattan,Harlem,40.80607,-73.94805,Entire home/apt,115,1,0,,1,0 +6910,3834614,Manhattan,Upper West Side,40.79432,-73.97636999999999,Private room,175,10,0,,1,0 +6911,25494876,Manhattan,Lower East Side,40.719590000000004,-73.9919,Entire home/apt,149,2,14,0.28,1,0 +6912,25412718,Brooklyn,Crown Heights,40.66948,-73.93638,Private room,50,5,0,,1,0 +6913,1556712,Brooklyn,Greenpoint,40.732079999999996,-73.95653,Entire home/apt,190,3,32,0.6,1,265 +6914,914838,Manhattan,Hell's Kitchen,40.765370000000004,-73.99438,Entire home/apt,80,20,5,0.15,7,346 +6915,19965673,Brooklyn,Greenpoint,40.720859999999995,-73.94609,Private room,75,1,0,,1,0 +6916,8253604,Manhattan,Harlem,40.81561,-73.95264,Private room,89,1,203,3.89,2,162 +6917,25517905,Manhattan,Upper West Side,40.797509999999996,-73.96168,Private room,123,3,176,3.39,3,253 +6918,10795846,Manhattan,Upper West Side,40.789359999999995,-73.97502,Private room,78,2,171,3.43,2,0 +6919,25379501,Brooklyn,Crown Heights,40.66585,-73.94993000000001,Private room,62,1,44,1.26,1,77 +6920,7463662,Brooklyn,South Slope,40.66599,-73.9869,Entire home/apt,120,2,149,2.76,1,0 +6921,25537637,Queens,Bayside,40.7583,-73.77232,Entire home/apt,80,2,123,4.69,1,108 +6922,8951256,Manhattan,Lower East Side,40.713159999999995,-73.9916,Entire home/apt,180,3,38,0.81,1,36 +6923,90860,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93141,Entire home/apt,145,2,222,4.15,4,109 +6924,25517905,Manhattan,Upper West Side,40.7962,-73.96155999999999,Private room,99,1,277,5.44,3,294 +6925,1649951,Manhattan,Lower East Side,40.720909999999996,-73.98475,Entire home/apt,300,3,57,1.12,1,168 +6926,7245581,Manhattan,East Village,40.72251,-73.97677,Entire home/apt,87,100,5,0.1,19,7 +6927,310670,Bronx,Eastchester,40.87829,-73.83471,Entire home/apt,155,2,11,0.29,13,348 +6928,310670,Bronx,Eastchester,40.88017,-73.83484,Entire home/apt,250,1,15,1.08,13,357 +6929,14854832,Manhattan,SoHo,40.72101,-74.00189,Private room,130,1,9,0.17,1,0 +6930,25602663,Queens,Long Island City,40.75202,-73.93588000000001,Shared room,65,4,1,0.11,2,1 +6931,2007148,Manhattan,Gramercy,40.73721,-73.98886999999999,Entire home/apt,156,3,4,0.08,1,0 +6932,25605654,Bronx,Morris Park,40.85465,-73.85669,Private room,50,1,2,0.04,1,0 +6933,25605887,Manhattan,Hell's Kitchen,40.7666,-73.98475,Entire home/apt,450,1,0,,1,0 +6934,25082897,Brooklyn,Bushwick,40.70516,-73.91609,Private room,40,1,0,,1,0 +6935,248490,Brooklyn,Bedford-Stuyvesant,40.68045,-73.93796,Entire home/apt,95,3,51,1.19,2,194 +6936,23345098,Queens,East Elmhurst,40.75703,-73.87666999999999,Private room,45,7,30,0.56,1,115 +6937,2793778,Queens,Forest Hills,40.71543,-73.83564,Shared room,60,4,45,0.87,5,0 +6938,9271872,Manhattan,Hell's Kitchen,40.76543,-73.99154,Private room,100,4,117,2.44,2,162 +6939,693815,Manhattan,Chinatown,40.71652,-73.99801,Private room,75,1,0,,1,0 +6940,12342828,Manhattan,East Harlem,40.79399,-73.94255,Private room,84,4,99,2.06,2,11 +6941,25641892,Staten Island,West Brighton,40.631820000000005,-74.124,Entire home/apt,70,2,196,3.63,1,231 +6942,519554,Manhattan,Lower East Side,40.71904,-73.98962,Private room,69,2,80,1.49,5,331 +6943,373019,Brooklyn,Williamsburg,40.711890000000004,-73.94632,Private room,62,30,3,0.06,1,319 +6944,10350245,Manhattan,Lower East Side,40.72076,-73.98925,Entire home/apt,200,1,1,0.02,1,0 +6945,25659180,Brooklyn,Crown Heights,40.6729,-73.96003,Entire home/apt,100,2,4,0.08,1,0 +6946,3737351,Brooklyn,Canarsie,40.64027,-73.91751,Private room,45,4,33,0.66,1,323 +6947,271527,Manhattan,Harlem,40.81007,-73.94006999999999,Entire home/apt,170,3,52,1.0,2,316 +6948,2316247,Manhattan,Upper West Side,40.781240000000004,-73.98475,Entire home/apt,150,7,10,0.18,1,68 +6949,25686141,Queens,Ozone Park,40.67924,-73.84770999999999,Entire home/apt,99,3,66,1.29,1,189 +6950,2803589,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.95196,Private room,45,1,0,,1,0 +6951,25688822,Manhattan,Harlem,40.79967,-73.95444,Private room,95,3,70,1.38,1,117 +6952,4162067,Brooklyn,Greenpoint,40.72811,-73.94925,Private room,95,4,1,0.02,1,0 +6953,23570473,Brooklyn,Crown Heights,40.6726,-73.95364000000001,Private room,79,1,37,0.72,3,339 +6954,2628658,Brooklyn,Bedford-Stuyvesant,40.683009999999996,-73.93738,Entire home/apt,120,30,2,0.18,2,0 +6955,17985595,Manhattan,Greenwich Village,40.73189,-73.9947,Entire home/apt,375,14,26,0.59,1,147 +6956,23929877,Manhattan,East Harlem,40.7912,-73.94318,Entire home/apt,120,5,23,1.25,1,151 +6957,25711730,Brooklyn,Williamsburg,40.7116,-73.96774,Shared room,85,1,0,,1,0 +6958,25715117,Queens,Astoria,40.76357,-73.92829,Private room,100,5,46,0.91,1,338 +6959,12342828,Manhattan,East Harlem,40.79492,-73.94086999999999,Private room,84,4,79,2.06,2,8 +6960,25720293,Manhattan,Chelsea,40.74481,-74.00148,Entire home/apt,549,4,17,0.33,3,6 +6961,637688,Brooklyn,Prospect Heights,40.67347,-73.96544,Entire home/apt,230,7,12,0.24,1,5 +6962,25271688,Brooklyn,Greenpoint,40.7313,-73.95340999999999,Private room,100,14,1,0.02,1,0 +6963,10635169,Brooklyn,Crown Heights,40.67067,-73.95693,Private room,70,1,49,4.45,1,47 +6964,25744379,Queens,Astoria,40.76958,-73.92223,Entire home/apt,72,3,36,0.71,1,10 +6965,25747773,Manhattan,Kips Bay,40.74045,-73.98175,Private room,140,5,2,0.05,1,0 +6966,41398078,Manhattan,Financial District,40.7076,-74.01366999999999,Private room,125,3,0,,1,0 +6967,24620881,Manhattan,Midtown,40.75765,-73.96466,Entire home/apt,135,1,168,3.21,1,287 +6968,25748492,Manhattan,East Village,40.72954,-73.98337,Entire home/apt,120,1,8,0.18,1,0 +6969,25757883,Brooklyn,Bushwick,40.70213,-73.91471999999999,Private room,49,1,43,0.82,1,25 +6970,45384,Brooklyn,Williamsburg,40.70971,-73.96561,Entire home/apt,240,14,20,0.43,1,238 +6971,317718,Brooklyn,Greenpoint,40.72514,-73.95392,Entire home/apt,380,4,0,,1,177 +6972,25773982,Manhattan,Upper East Side,40.775690000000004,-73.95721,Entire home/apt,150,1,9,0.24,2,364 +6973,25774748,Queens,Flushing,40.76435,-73.83211,Private room,89,1,3,0.06,2,365 +6974,25773982,Manhattan,Upper East Side,40.77595,-73.95573,Private room,100,3,28,0.55,2,364 +6975,262760,Brooklyn,Flatbush,40.6404,-73.9612,Private room,75,1,24,0.52,1,0 +6976,19918657,Queens,College Point,40.78631,-73.83923,Private room,50,5,5,0.47,1,310 +6977,25807709,Brooklyn,Midwood,40.6216,-73.95315,Private room,60,10,27,0.5,1,322 +6978,6095946,Manhattan,SoHo,40.72177,-74.00356,Entire home/apt,760,14,1,0.04,1,292 +6979,4830078,Brooklyn,Williamsburg,40.708529999999996,-73.95368,Private room,85,3,15,0.57,1,82 +6980,25821864,Queens,Ridgewood,40.707390000000004,-73.91498,Private room,65,3,5,0.09,1,0 +6981,25840204,Manhattan,Upper East Side,40.775459999999995,-73.95165,Entire home/apt,150,3,75,1.44,1,234 +6982,7847292,Manhattan,Upper East Side,40.77537,-73.95029,Entire home/apt,169,4,147,2.76,1,310 +6983,8834234,Manhattan,Harlem,40.81419,-73.95033000000001,Entire home/apt,85,2,25,0.52,1,58 +6984,10207681,Manhattan,Tribeca,40.71732,-74.00981,Entire home/apt,350,3,13,0.36,1,69 +6985,1387175,Brooklyn,Crown Heights,40.67279,-73.96033,Entire home/apt,148,7,56,1.05,1,44 +6986,5349999,Brooklyn,Crown Heights,40.67777,-73.95130999999999,Entire home/apt,100,6,13,0.26,1,0 +6987,25870353,Manhattan,Gramercy,40.73661,-73.98706,Entire home/apt,1000,7,0,,1,365 +6988,25894037,Brooklyn,Crown Heights,40.67477,-73.94960999999999,Entire home/apt,125,1,0,,1,0 +6989,25895198,Brooklyn,Williamsburg,40.71505,-73.93936,Entire home/apt,80,7,10,0.22,1,0 +6990,10366837,Queens,Flushing,40.75784,-73.83181,Entire home/apt,72,2,94,3.4,3,102 +6991,17770322,Brooklyn,Carroll Gardens,40.68138,-73.9926,Private room,125,1,8,0.16,1,191 +6992,17638424,Queens,Elmhurst,40.74602,-73.87338000000001,Private room,34,1,95,2.37,8,175 +6993,630519,Brooklyn,Prospect Heights,40.676759999999994,-73.96683,Entire home/apt,288,1,2,0.05,1,0 +6994,3560446,Brooklyn,Williamsburg,40.7169,-73.95087,Entire home/apt,167,2,59,1.2,1,0 +6995,25881276,Manhattan,Upper West Side,40.7921,-73.97918,Entire home/apt,125,21,45,0.86,2,176 +6996,3116461,Brooklyn,East Flatbush,40.653079999999996,-73.95109000000001,Entire home/apt,100,2,67,1.27,1,153 +6997,5244243,Manhattan,Financial District,40.710679999999996,-74.00713,Entire home/apt,290,5,0,,1,0 +6998,14362471,Manhattan,East Harlem,40.796409999999995,-73.94847,Entire home/apt,229,30,6,0.12,1,61 +6999,3646549,Brooklyn,Williamsburg,40.71735,-73.94465,Private room,100,2,49,0.9,1,149 +7000,25961456,Brooklyn,Prospect Heights,40.67824,-73.96514,Private room,60,1,0,,1,0 +7001,25318403,Brooklyn,Williamsburg,40.71281,-73.95796,Entire home/apt,225,3,87,1.63,3,275 +7002,8707742,Brooklyn,Bedford-Stuyvesant,40.6955,-73.94385,Private room,70,2,0,,1,0 +7003,21721684,Brooklyn,Bushwick,40.68594,-73.90653,Entire home/apt,174,3,198,3.7,2,269 +7004,25974544,Manhattan,Hell's Kitchen,40.76263,-73.9887,Entire home/apt,350,1,0,,1,0 +7005,25237492,Manhattan,Upper West Side,40.78147,-73.98315,Entire home/apt,250,30,13,0.25,34,304 +7006,25237492,Manhattan,Upper West Side,40.78215,-73.98349,Entire home/apt,105,30,15,0.31,34,285 +7007,15929586,Queens,Ditmars Steinway,40.77645,-73.90566,Private room,40,3,95,1.75,1,336 +7008,25999700,Brooklyn,Crown Heights,40.67615,-73.95776,Private room,50,14,43,0.8,1,313 +7009,26005018,Manhattan,Roosevelt Island,40.76193,-73.94941999999999,Private room,65,3,43,0.81,1,35 +7010,6228539,Manhattan,Harlem,40.80535,-73.95407,Private room,75,30,1,0.45,2,330 +7011,17465490,Brooklyn,Fort Greene,40.68752,-73.9795,Entire home/apt,180,31,1,0.02,1,0 +7012,26018110,Brooklyn,Williamsburg,40.70898,-73.93285999999999,Private room,60,25,0,,1,0 +7013,26019828,Manhattan,Hell's Kitchen,40.761590000000005,-73.99824,Private room,69,2,22,0.64,2,7 +7014,19195540,Manhattan,Chinatown,40.71723,-73.99164,Private room,150,4,36,0.71,3,294 +7015,26024349,Brooklyn,Downtown Brooklyn,40.6978,-73.98396,Private room,200,1,0,,1,0 +7016,26024433,Manhattan,Gramercy,40.73272,-73.9852,Entire home/apt,125,3,21,0.4,1,7 +7017,26031034,Manhattan,Upper West Side,40.796929999999996,-73.96348,Entire home/apt,795,4,22,0.42,1,249 +7018,23732730,Bronx,Allerton,40.870540000000005,-73.84680999999999,Entire home/apt,450,2,45,0.84,4,342 +7019,22776830,Manhattan,Upper East Side,40.772090000000006,-73.95083000000001,Private room,80,1,0,,1,0 +7020,2370532,Brooklyn,Brooklyn Heights,40.69119,-73.99438,Entire home/apt,300,2,8,0.22,1,0 +7021,6454648,Manhattan,Harlem,40.815490000000004,-73.95278,Shared room,80,1,29,0.62,1,357 +7022,905563,Manhattan,Gramercy,40.73718,-73.98373000000001,Private room,75,5,0,,1,0 +7023,22927481,Manhattan,Midtown,40.7655,-73.98018,Private room,500,3,1,0.02,3,0 +7024,193488,Manhattan,East Village,40.73273,-73.98969,Private room,135,1,14,0.28,2,332 +7025,23465153,Manhattan,East Village,40.725359999999995,-73.9856,Entire home/apt,250,1,0,,1,0 +7026,93292,Manhattan,Chinatown,40.71848,-73.99549,Private room,80,3,153,2.9,1,238 +7027,16616158,Brooklyn,Crown Heights,40.67586,-73.9621,Entire home/apt,85,5,22,0.42,1,0 +7028,10975987,Brooklyn,Bushwick,40.683859999999996,-73.90935999999999,Entire home/apt,150,4,119,2.23,1,273 +7029,26089087,Brooklyn,Williamsburg,40.709070000000004,-73.96396,Private room,60,1,33,2.75,1,19 +7030,26079021,Manhattan,Upper East Side,40.76173,-73.96183,Entire home/apt,249,3,85,1.59,1,158 +7031,25237492,Manhattan,Upper East Side,40.7606,-73.96028000000001,Entire home/apt,155,30,17,0.32,34,316 +7032,8873293,Brooklyn,Bedford-Stuyvesant,40.68951,-73.95524,Private room,65,2,14,0.27,2,0 +7033,26100862,Brooklyn,Greenpoint,40.724740000000004,-73.94733000000001,Entire home/apt,90,1,0,,1,0 +7034,13220337,Manhattan,East Harlem,40.79213,-73.94974,Entire home/apt,150,3,27,0.5,1,0 +7035,3074904,Brooklyn,Williamsburg,40.71301,-73.95374,Private room,96,1,175,3.27,4,44 +7036,26124805,Brooklyn,Williamsburg,40.716770000000004,-73.95773,Private room,90,1,0,,1,0 +7037,26133955,Manhattan,West Village,40.73345,-74.00301999999999,Private room,89,1,1,0.03,1,365 +7038,9018446,Manhattan,Washington Heights,40.83554,-73.93849,Private room,80,1,307,5.66,1,54 +7039,26136707,Manhattan,Washington Heights,40.8447,-73.93369,Private room,77,4,80,1.57,1,66 +7040,13501341,Brooklyn,Bushwick,40.70171,-73.91344000000001,Private room,60,1,155,3.39,2,170 +7041,10428997,Manhattan,Upper West Side,40.79463,-73.97061,Entire home/apt,165,4,72,1.35,1,0 +7042,25963759,Brooklyn,South Slope,40.66135,-73.98725999999999,Private room,70,1,3,0.06,1,363 +7043,8813443,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95758000000001,Entire home/apt,83,1,0,,1,0 +7044,26162659,Brooklyn,Bedford-Stuyvesant,40.69494,-73.95506999999999,Private room,70,1,0,,1,0 +7045,1445871,Manhattan,East Village,40.730959999999996,-73.98376,Entire home/apt,139,1,62,1.15,1,240 +7046,25052740,Brooklyn,Bedford-Stuyvesant,40.69604,-73.94504,Private room,50,7,13,0.33,3,227 +7047,26164700,Brooklyn,Bushwick,40.69709,-73.91003,Private room,50,1,0,,1,0 +7048,2372310,Brooklyn,Williamsburg,40.713429999999995,-73.94842,Entire home/apt,220,5,0,,1,21 +7049,6278351,Manhattan,Hell's Kitchen,40.75977,-73.98980999999999,Entire home/apt,250,3,26,0.51,1,96 +7050,8954264,Manhattan,Harlem,40.80858,-73.95132,Private room,177,10,25,0.51,1,213 +7051,23340108,Manhattan,Financial District,40.71182,-74.00497,Entire home/apt,150,3,7,0.13,1,0 +7052,26176627,Brooklyn,Bushwick,40.70126,-73.93731,Private room,50,1,0,,1,0 +7053,12306481,Queens,Sunnyside,40.745129999999996,-73.91685,Entire home/apt,90,30,10,0.28,3,332 +7054,26184062,Brooklyn,Williamsburg,40.71223,-73.95681,Private room,150,7,1,0.03,1,179 +7055,192852,Manhattan,Upper East Side,40.77407,-73.95238,Entire home/apt,125,3,211,3.95,1,230 +7056,7021059,Manhattan,Upper East Side,40.77636,-73.95099,Entire home/apt,150,1,0,,2,0 +7057,3196390,Brooklyn,Flatbush,40.63854,-73.95814,Entire home/apt,415,4,3,0.06,1,0 +7058,12603113,Brooklyn,Kensington,40.63953,-73.97214,Private room,50,2,39,0.77,1,245 +7059,25237492,Manhattan,Upper West Side,40.78305,-73.98398,Entire home/apt,165,30,16,0.31,34,326 +7060,2908101,Manhattan,Harlem,40.82846,-73.94393000000001,Entire home/apt,175,4,29,0.55,1,7 +7061,63613,Brooklyn,Clinton Hill,40.69105,-73.96789,Private room,50,60,0,,2,210 +7062,1700398,Manhattan,Upper East Side,40.77421,-73.95361,Entire home/apt,250,4,0,,1,0 +7063,26265097,Manhattan,East Village,40.7295,-73.98398,Entire home/apt,100,5,1,0.02,1,0 +7064,23772724,Manhattan,Upper East Side,40.78151,-73.94775,Entire home/apt,99,30,12,0.29,15,208 +7065,26301893,Queens,Forest Hills,40.71158,-73.85273000000001,Private room,80,1,12,0.35,1,59 +7066,17312709,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94719,Entire home/apt,140,5,4,0.08,1,0 +7067,19850240,Manhattan,Harlem,40.809540000000005,-73.94227,Private room,83,7,18,0.66,1,0 +7068,7801481,Queens,Bay Terrace,40.78598,-73.77915,Private room,99,3,4,0.08,2,7 +7069,21201361,Brooklyn,Williamsburg,40.71102,-73.95626999999999,Private room,79,1,1,0.09,1,89 +7070,19293586,Brooklyn,Williamsburg,40.71759,-73.94388000000001,Private room,100,2,19,0.61,1,34 +7071,26360956,Brooklyn,Cobble Hill,40.68854,-73.99533000000001,Entire home/apt,160,4,16,0.3,1,0 +7072,26260328,Brooklyn,Bushwick,40.702059999999996,-73.91342,Private room,45,7,1,0.02,1,0 +7073,26362901,Brooklyn,Williamsburg,40.711240000000004,-73.95716999999999,Entire home/apt,225,1,63,1.27,1,0 +7074,24915685,Manhattan,Hell's Kitchen,40.75928,-73.99036,Entire home/apt,180,1,0,,1,0 +7075,26380626,Brooklyn,Williamsburg,40.71768,-73.95355,Entire home/apt,90,7,1,0.07,1,0 +7076,15321576,Brooklyn,Prospect Heights,40.67467,-73.96557,Private room,60,1,0,,1,0 +7077,26382036,Queens,Elmhurst,40.74038,-73.87599,Entire home/apt,120,5,31,0.64,2,64 +7078,8329975,Manhattan,Hell's Kitchen,40.76645,-73.98539,Entire home/apt,150,4,15,0.41,1,5 +7079,4265630,Brooklyn,Flatbush,40.64801,-73.95623,Entire home/apt,80,4,51,0.97,2,306 +7080,22984995,Manhattan,West Village,40.73822,-74.00605999999999,Entire home/apt,275,2,11,0.21,1,0 +7081,26388856,Queens,Long Island City,40.7599,-73.9285,Entire home/apt,110,14,35,0.69,1,177 +7082,26405093,Staten Island,Stapleton,40.6375,-74.07654000000001,Private room,85,1,0,,2,359 +7083,1965783,Manhattan,Upper East Side,40.76996,-73.95875,Entire home/apt,245,1,3,0.06,1,0 +7084,2638171,Brooklyn,Williamsburg,40.71577,-73.94604,Private room,90,3,0,,1,364 +7085,10125456,Brooklyn,Red Hook,40.674040000000005,-74.01021,Entire home/apt,115,5,51,0.95,1,8 +7086,26432133,Queens,East Elmhurst,40.763740000000006,-73.87103,Private room,54,1,430,13.45,5,347 +7087,26433326,Brooklyn,Williamsburg,40.70783,-73.94858,Entire home/apt,195,2,3,0.06,1,0 +7088,7203997,Brooklyn,Park Slope,40.67034,-73.97511999999999,Entire home/apt,995,2,43,0.82,2,328 +7089,2897021,Manhattan,East Village,40.72695,-73.98675,Entire home/apt,120,10,7,0.13,1,0 +7090,26446036,Manhattan,Upper West Side,40.78648,-73.9692,Private room,135,2,78,1.68,1,0 +7091,17450152,Manhattan,Hell's Kitchen,40.76332,-73.9884,Private room,150,1,38,0.77,5,307 +7092,9059339,Manhattan,East Harlem,40.787440000000004,-73.95211,Private room,61,7,167,3.21,1,292 +7093,1475015,Manhattan,Midtown,40.75587,-73.96856,Entire home/apt,115,30,0,,52,281 +7094,26003292,Brooklyn,Fort Greene,40.69454,-73.97166,Private room,63,1,104,2.16,1,11 +7095,1946840,Manhattan,East Village,40.729820000000004,-73.98316,Entire home/apt,185,7,21,0.4,1,27 +7096,26529661,Brooklyn,Williamsburg,40.7127,-73.94643,Entire home/apt,1763,60,0,,1,0 +7097,24711354,Brooklyn,Crown Heights,40.66809,-73.93373000000001,Private room,33,28,20,0.37,1,282 +7098,2086194,Brooklyn,Prospect Heights,40.68163,-73.96709,Private room,55,2,3,0.06,1,189 +7099,7088204,Brooklyn,Crown Heights,40.67131,-73.94979000000001,Entire home/apt,150,5,8,0.36,1,118 +7100,5125933,Brooklyn,Prospect-Lefferts Gardens,40.656209999999994,-73.95696,Entire home/apt,80,21,3,0.07,1,0 +7101,8118080,Brooklyn,Bedford-Stuyvesant,40.68716,-73.91882,Private room,40,7,0,,1,0 +7102,26558533,Manhattan,Upper West Side,40.79678,-73.96545,Private room,79,2,8,0.22,1,0 +7103,7881946,Manhattan,Harlem,40.80657,-73.95532,Entire home/apt,140,2,5,0.09,1,0 +7104,21112602,Manhattan,Greenwich Village,40.73253,-73.99826,Entire home/apt,198,2,15,0.29,1,0 +7105,20518366,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.95105,Private room,65,1,0,,2,0 +7106,26597048,Manhattan,Harlem,40.80516,-73.94299000000001,Entire home/apt,117,3,126,3.91,2,66 +7107,2055698,Manhattan,Upper East Side,40.77944,-73.95296,Entire home/apt,125,3,2,0.05,1,0 +7108,26606802,Manhattan,West Village,40.73451,-74.00746,Entire home/apt,510,3,12,0.24,1,364 +7109,215570,Brooklyn,Williamsburg,40.71135,-73.96596,Entire home/apt,125,2,5,0.12,1,0 +7110,1867263,Manhattan,Financial District,40.70663,-74.0117,Private room,170,1,0,,1,0 +7111,26640253,Manhattan,Harlem,40.82383,-73.94639000000001,Private room,65,1,61,1.16,1,323 +7112,22011099,Brooklyn,Greenpoint,40.72981,-73.95268,Entire home/apt,195,6,21,0.44,1,42 +7113,115669,Manhattan,East Harlem,40.79643,-73.93543000000001,Entire home/apt,115,3,8,0.15,1,183 +7114,8780729,Manhattan,Chelsea,40.7417,-73.9978,Entire home/apt,135,3,31,0.63,1,0 +7115,1027417,Brooklyn,Park Slope,40.67365,-73.9814,Entire home/apt,350,3,5,0.12,1,22 +7116,23719409,Manhattan,Harlem,40.827740000000006,-73.95181,Private room,115,1,28,1.13,4,6 +7117,23719409,Manhattan,Harlem,40.82801,-73.95167,Private room,45,1,205,3.86,4,0 +7118,26710027,Brooklyn,Bedford-Stuyvesant,40.68074,-73.92513000000001,Private room,65,2,21,0.43,1,0 +7119,10433019,Queens,Long Island City,40.744009999999996,-73.95094,Entire home/apt,135,30,3,0.06,1,231 +7120,23386756,Brooklyn,Williamsburg,40.70792,-73.94601999999999,Private room,40,6,0,,1,0 +7121,26756453,Brooklyn,Bedford-Stuyvesant,40.68833,-73.94329,Private room,70,1,0,,1,0 +7122,22305520,Manhattan,Hell's Kitchen,40.76064,-73.99112,Entire home/apt,199,30,119,2.21,2,215 +7123,18388649,Manhattan,Harlem,40.82415,-73.94113,Private room,100,2,0,,1,364 +7124,4406876,Manhattan,Upper East Side,40.76761,-73.95391,Entire home/apt,195,6,5,0.11,1,329 +7125,26789544,Brooklyn,Windsor Terrace,40.65494,-73.97478000000001,Entire home/apt,200,3,0,,1,0 +7126,10711342,Brooklyn,Sunset Park,40.66298,-73.99011999999999,Entire home/apt,150,5,1,0.09,1,0 +7127,26794599,Brooklyn,Bushwick,40.692370000000004,-73.92097,Private room,60,2,1,0.02,1,0 +7128,15714652,Brooklyn,Bushwick,40.70041,-73.93816,Private room,70,11,21,0.4,1,134 +7129,5399418,Brooklyn,Bushwick,40.69092,-73.90443,Private room,30,1,0,,1,0 +7130,1762555,Brooklyn,Williamsburg,40.71508,-73.94586,Private room,100,4,38,1.06,1,10 +7131,26819401,Manhattan,Upper East Side,40.775940000000006,-73.95584000000001,Entire home/apt,180,3,3,0.06,1,0 +7132,5788393,Queens,Long Island City,40.76117,-73.9265,Entire home/apt,105,2,19,0.41,1,0 +7133,5896802,Manhattan,Harlem,40.815020000000004,-73.9546,Entire home/apt,110,90,7,0.28,1,90 +7134,26377263,Queens,Far Rockaway,40.59642,-73.75605999999999,Private room,38,6,5,0.11,43,313 +7135,3977023,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95603,Private room,70,1,1,0.02,2,0 +7136,21538710,Brooklyn,Crown Heights,40.67116,-73.94293,Entire home/apt,72,7,11,0.21,1,0 +7137,610690,Brooklyn,Bedford-Stuyvesant,40.68006,-73.91113,Private room,75,1,35,0.69,2,80 +7138,26856159,Manhattan,Harlem,40.82306,-73.94688000000001,Private room,63,1,209,4.12,3,274 +7139,26856159,Manhattan,Harlem,40.821529999999996,-73.94651,Private room,58,1,194,3.81,3,307 +7140,10677483,Manhattan,Upper West Side,40.80173,-73.96625,Private room,70,1,0,,1,0 +7141,1002840,Manhattan,East Village,40.726690000000005,-73.98275,Entire home/apt,145,5,63,1.24,1,242 +7142,26867230,Brooklyn,Fort Greene,40.69605,-73.98207,Private room,45,1,3,0.08,2,0 +7143,23909946,Brooklyn,Bushwick,40.68755,-73.91856,Private room,60,2,77,1.56,3,28 +7144,12879620,Manhattan,Upper West Side,40.79148,-73.97828,Entire home/apt,158,100,2,0.04,1,290 +7145,26877037,Brooklyn,Sheepshead Bay,40.600590000000004,-73.95899,Private room,139,1,3,0.06,2,0 +7146,26877931,Brooklyn,Bedford-Stuyvesant,40.69467,-73.9501,Private room,45,5,20,0.38,1,52 +7147,23772724,Manhattan,Upper East Side,40.77339,-73.95421,Entire home/apt,99,30,13,0.26,15,333 +7148,26899122,Brooklyn,South Slope,40.66437,-73.98353,Entire home/apt,85,3,1,0.02,1,0 +7149,24052348,Manhattan,East Village,40.720420000000004,-73.97998,Private room,85,10,14,0.27,4,18 +7150,1238879,Brooklyn,Crown Heights,40.67198,-73.93011,Entire home/apt,95,3,2,0.04,1,0 +7151,81928,Brooklyn,Bedford-Stuyvesant,40.6856,-73.95331999999999,Entire home/apt,150,3,45,0.96,1,0 +7152,1242374,Brooklyn,Williamsburg,40.71495,-73.93997,Private room,96,3,82,1.58,1,289 +7153,26942242,Manhattan,East Village,40.7295,-73.98623,Entire home/apt,230,2,1,0.02,1,0 +7154,8353665,Manhattan,Harlem,40.82227,-73.94878,Entire home/apt,150,4,4,0.07,1,33 +7155,26958002,Manhattan,Kips Bay,40.74041,-73.98176,Entire home/apt,225,2,2,0.04,1,0 +7156,17448220,Brooklyn,Bedford-Stuyvesant,40.68383,-73.92226,Entire home/apt,130,3,138,2.59,1,254 +7157,2265800,Brooklyn,Greenpoint,40.72862,-73.95495,Entire home/apt,116,1,0,,1,0 +7158,26975156,Manhattan,East Harlem,40.803020000000004,-73.93476,Entire home/apt,115,4,1,0.02,1,0 +7159,25762289,Brooklyn,Greenpoint,40.72614,-73.94813,Entire home/apt,126,3,3,0.06,1,110 +7160,26564745,Brooklyn,Prospect-Lefferts Gardens,40.656490000000005,-73.95854,Entire home/apt,174,5,17,0.32,1,15 +7161,3510638,Manhattan,Murray Hill,40.74479,-73.97573,Entire home/apt,149,5,13,0.24,1,0 +7162,26781249,Manhattan,Upper East Side,40.76802,-73.95653,Entire home/apt,150,4,10,0.19,1,0 +7163,1220404,Brooklyn,East New York,40.66811,-73.89394,Entire home/apt,100,2,1,0.03,2,292 +7164,2265022,Staten Island,Mariners Harbor,40.62726,-74.1588,Entire home/apt,150,5,16,0.33,1,299 +7165,27046912,Manhattan,Harlem,40.80669,-73.95655,Private room,89,4,56,1.07,2,15 +7166,1226742,Brooklyn,Clinton Hill,40.68383,-73.96319,Entire home/apt,308,2,62,2.01,2,294 +7167,27072226,Brooklyn,Crown Heights,40.669259999999994,-73.93603,Private room,40,1,0,,1,0 +7168,2119276,Manhattan,Upper East Side,40.76201,-73.96084,Entire home/apt,150,30,5,0.11,39,228 +7169,3339701,Queens,Ditmars Steinway,40.77776,-73.91611999999999,Private room,55,1,90,1.72,4,310 +7170,27081028,Manhattan,Midtown,40.759,-73.9701,Private room,55,1,16,0.52,1,0 +7171,19034179,Manhattan,Upper East Side,40.769020000000005,-73.95806999999999,Entire home/apt,139,2,2,0.07,1,0 +7172,27084741,Queens,Woodside,40.74436,-73.91141,Private room,90,1,27,0.55,2,365 +7173,4655245,Manhattan,East Harlem,40.79462,-73.94923,Entire home/apt,249,3,150,2.91,1,159 +7174,12762559,Manhattan,Upper East Side,40.78633,-73.95218,Entire home/apt,150,1,0,,1,0 +7175,189275,Brooklyn,Fort Greene,40.69658,-73.97116,Entire home/apt,95,1,49,6.77,1,40 +7176,1297675,Brooklyn,Prospect Heights,40.68093,-73.97182,Private room,135,2,79,1.49,2,11 +7177,675317,Brooklyn,Greenpoint,40.737120000000004,-73.95521,Private room,45,17,0,,1,0 +7178,27121854,Manhattan,Midtown,40.752390000000005,-73.9707,Entire home/apt,289,10,169,3.23,1,3 +7179,1884659,Brooklyn,Bushwick,40.70827,-73.92264,Entire home/apt,97,2,47,0.88,2,345 +7180,956379,Brooklyn,South Slope,40.663090000000004,-73.98496999999999,Entire home/apt,180,30,84,1.7,1,204 +7181,172672,Manhattan,Upper East Side,40.77828,-73.94768,Entire home/apt,75,30,32,0.67,1,4 +7182,9423379,Brooklyn,Williamsburg,40.71526,-73.95016,Entire home/apt,320,6,10,0.2,1,0 +7183,17129810,Brooklyn,Red Hook,40.665409999999994,-74.01406999999999,Private room,60,5,66,1.75,5,326 +7184,17129810,Brooklyn,Columbia St,40.68173,-74.00366,Private room,60,3,118,2.84,5,326 +7185,5102579,Brooklyn,Park Slope,40.68247,-73.97961,Entire home/apt,144,15,6,0.11,1,0 +7186,3114551,Brooklyn,Bushwick,40.698879999999996,-73.92081,Private room,40,14,0,,1,0 +7187,27181264,Brooklyn,Williamsburg,40.71843,-73.95725,Private room,115,1,0,,1,0 +7188,27181498,Manhattan,Financial District,40.705729999999996,-74.00855,Shared room,75,1,0,,1,0 +7189,419629,Queens,Elmhurst,40.74125,-73.89035,Private room,47,2,2,0.04,1,17 +7190,27212322,Manhattan,Hell's Kitchen,40.75563,-73.99424,Private room,1450,1,0,,1,0 +7191,3605729,Brooklyn,Williamsburg,40.70709,-73.95191,Private room,100,3,19,0.42,1,0 +7192,1519119,Manhattan,Washington Heights,40.8545,-73.93169,Shared room,50,1,0,,1,89 +7193,2119276,Manhattan,West Village,40.73226,-74.00644,Entire home/apt,250,30,3,0.06,39,365 +7194,1478146,Manhattan,Harlem,40.80177,-73.9571,Entire home/apt,115,8,9,0.18,1,111 +7195,17491348,Manhattan,East Village,40.72878,-73.97747,Private room,60,7,1,0.02,1,0 +7196,27238076,Manhattan,Hell's Kitchen,40.76432,-73.98599,Private room,135,2,195,3.69,1,241 +7197,4534649,Manhattan,Harlem,40.81617,-73.95371,Private room,50,2,170,3.2,3,84 +7198,27053744,Manhattan,Midtown,40.76186,-73.97324,Entire home/apt,149,3,1,0.02,1,0 +7199,27261471,Brooklyn,Canarsie,40.64716,-73.89403,Entire home/apt,120,2,1,1.0,2,140 +7200,14684238,Manhattan,East Village,40.7249,-73.98852,Entire home/apt,150,5,22,0.41,1,6 +7201,27263990,Brooklyn,Bushwick,40.695440000000005,-73.93046,Entire home/apt,110,3,0,,1,0 +7202,10698270,Manhattan,Upper East Side,40.76578,-73.95509,Private room,95,1,21,0.39,2,188 +7203,6155803,Brooklyn,Greenpoint,40.72402,-73.95025,Entire home/apt,190,2,12,0.29,1,0 +7204,27277459,Brooklyn,East Flatbush,40.65491,-73.9222,Entire home/apt,139,4,77,1.65,2,340 +7205,26732630,Manhattan,East Village,40.72787,-73.98969,Private room,115,1,0,,1,0 +7206,6960329,Manhattan,Upper West Side,40.774840000000005,-73.98659,Private room,130,2,2,0.94,1,150 +7207,6716330,Manhattan,Upper West Side,40.773109999999996,-73.98606,Private room,125,3,124,2.32,3,347 +7208,20114391,Brooklyn,Fort Greene,40.68557,-73.97073,Private room,45,21,14,0.27,2,48 +7209,27314977,Manhattan,Upper East Side,40.76771,-73.95844,Entire home/apt,110,4,8,0.15,1,0 +7210,8858347,Brooklyn,Fort Greene,40.68792,-73.97319,Entire home/apt,120,21,12,0.22,1,22 +7211,6023360,Brooklyn,Crown Heights,40.67221,-73.95584000000001,Private room,50,1,1,0.02,1,0 +7212,8627814,Brooklyn,Williamsburg,40.70629,-73.92884000000001,Entire home/apt,100,2,3,0.06,1,0 +7213,6900870,Brooklyn,Prospect Heights,40.67382,-73.96781999999999,Private room,75,2,14,0.27,1,0 +7214,7503643,Brooklyn,Greenpoint,40.72546,-73.94046,Entire home/apt,129,30,7,0.14,52,328 +7215,6339750,Manhattan,Kips Bay,40.740840000000006,-73.98008,Entire home/apt,196,5,66,1.23,1,323 +7216,7181834,Manhattan,Chelsea,40.738609999999994,-73.99481999999999,Entire home/apt,400,1,0,,1,0 +7217,153675,Manhattan,East Village,40.73279,-73.98746,Entire home/apt,140,12,1,0.02,2,164 +7218,15264295,Queens,Maspeth,40.73973,-73.90731,Private room,60,1,0,,1,0 +7219,11483208,Brooklyn,Williamsburg,40.70903,-73.95936,Private room,55,1,4,0.1,1,0 +7220,2423067,Manhattan,East Harlem,40.79303,-73.93368000000001,Entire home/apt,175,2,24,0.56,2,0 +7221,11601961,Brooklyn,Flatbush,40.648579999999995,-73.96378,Entire home/apt,90,3,24,0.45,1,29 +7222,3866196,Manhattan,Midtown,40.7461,-73.98631999999999,Entire home/apt,281,1,3,0.07,1,0 +7223,27371081,Brooklyn,Midwood,40.62636,-73.9627,Private room,50,2,21,1.47,1,179 +7224,27376622,Manhattan,Gramercy,40.73765,-73.98366,Shared room,65,1,49,0.93,1,353 +7225,27379417,Queens,South Ozone Park,40.66788,-73.82419,Private room,85,1,243,4.54,1,281 +7226,860636,Bronx,Tremont,40.83875,-73.88728,Private room,38,3,15,0.28,3,0 +7227,11297009,Manhattan,Upper West Side,40.78785,-73.97717,Private room,59,1,15,0.29,4,330 +7228,1189622,Queens,Ridgewood,40.69804,-73.90683,Private room,40,4,15,0.3,1,0 +7229,16427090,Manhattan,Chelsea,40.739329999999995,-73.99879,Entire home/apt,229,3,2,0.06,1,0 +7230,6177121,Brooklyn,Clinton Hill,40.69358,-73.96966,Entire home/apt,70,2,1,0.02,1,0 +7231,27428173,Manhattan,East Harlem,40.799,-73.9428,Entire home/apt,190,7,2,2.0,1,135 +7232,26134830,Brooklyn,Bedford-Stuyvesant,40.682109999999994,-73.92121,Entire home/apt,150,3,109,2.1,1,343 +7233,17462748,Brooklyn,Crown Heights,40.67411,-73.93843000000001,Private room,68,5,115,2.2,5,149 +7234,11462251,Manhattan,Chelsea,40.73885,-73.99701,Private room,109,2,2,0.04,1,0 +7235,2730883,Manhattan,Washington Heights,40.85341,-73.93181,Entire home/apt,37,30,3,0.06,2,82 +7236,3868692,Manhattan,Financial District,40.704570000000004,-74.00952,Private room,124,1,107,3.21,2,62 +7237,11414889,Brooklyn,Prospect Heights,40.67986,-73.97027,Entire home/apt,190,2,9,0.25,1,0 +7238,16155254,Manhattan,East Village,40.72956,-73.98165999999999,Entire home/apt,160,1,210,3.93,4,265 +7239,1763862,Brooklyn,South Slope,40.66485,-73.98543000000001,Entire home/apt,160,1,111,2.23,1,253 +7240,9846230,Brooklyn,Park Slope,40.6774,-73.98246999999999,Entire home/apt,145,5,0,,1,0 +7241,25854571,Brooklyn,Greenpoint,40.725559999999994,-73.94104,Private room,49,1,2,0.05,1,0 +7242,7503643,Brooklyn,Greenpoint,40.72738,-73.94077,Entire home/apt,159,30,9,0.21,52,362 +7243,5663328,Brooklyn,Williamsburg,40.70429,-73.93793000000001,Private room,75,14,0,,1,0 +7244,27502743,Manhattan,West Village,40.73183,-74.00649,Entire home/apt,175,90,0,,1,89 +7245,7989115,Manhattan,Washington Heights,40.83299,-73.94527,Private room,150,2,8,0.16,1,364 +7246,24528234,Manhattan,Harlem,40.80446,-73.95786,Private room,65,1,8,0.18,1,0 +7247,22420999,Queens,Richmond Hill,40.69509,-73.83203,Private room,50,2,20,0.47,5,347 +7248,1747467,Brooklyn,Crown Heights,40.674640000000004,-73.95735,Private room,52,1,0,,1,0 +7249,839021,Manhattan,West Village,40.73075,-74.00233,Entire home/apt,176,5,7,0.21,1,8 +7250,22761603,Brooklyn,Williamsburg,40.71425,-73.96054000000001,Private room,90,1,1,0.02,1,0 +7251,936258,Brooklyn,Clinton Hill,40.68378,-73.96483,Entire home/apt,175,2,8,0.15,1,0 +7252,27538684,Manhattan,Harlem,40.811859999999996,-73.94019,Entire home/apt,125,6,2,0.04,1,0 +7253,11137400,Brooklyn,Crown Heights,40.6686,-73.93037,Entire home/apt,249,3,193,3.61,1,344 +7254,1475015,Manhattan,Upper West Side,40.76917,-73.98488,Entire home/apt,87,30,7,0.18,52,365 +7255,7389379,Brooklyn,Fort Greene,40.68436,-73.9735,Private room,65,2,0,,1,0 +7256,8354345,Brooklyn,Gowanus,40.68095,-73.98901,Entire home/apt,495,2,95,1.94,1,285 +7257,3865502,Brooklyn,Williamsburg,40.713229999999996,-73.95852,Entire home/apt,120,30,21,0.4,1,219 +7258,27315132,Manhattan,East Harlem,40.78866,-73.95461,Entire home/apt,110,6,25,0.49,1,161 +7259,5734689,Manhattan,Gramercy,40.736270000000005,-73.9802,Entire home/apt,159,2,13,0.25,1,10 +7260,588270,Brooklyn,DUMBO,40.7043,-73.98666999999999,Entire home/apt,189,2,177,3.33,2,235 +7261,27591905,Brooklyn,Bedford-Stuyvesant,40.68076,-73.91673,Private room,58,2,0,,1,0 +7262,1884659,Brooklyn,Bushwick,40.70745,-73.92255,Private room,59,1,12,0.23,2,358 +7263,7363727,Brooklyn,Crown Heights,40.67784,-73.94995,Private room,51,7,0,,1,0 +7264,11576606,Manhattan,East Village,40.722590000000004,-73.98501999999999,Entire home/apt,199,3,1,0.03,1,0 +7265,322716,Brooklyn,Crown Heights,40.672090000000004,-73.94899000000001,Private room,52,12,1,0.02,5,89 +7266,5074654,Manhattan,Chelsea,40.74326,-74.00004,Entire home/apt,199,2,98,1.88,2,33 +7267,7877557,Manhattan,East Village,40.72825,-73.98879000000001,Private room,100,2,0,,1,0 +7268,12213641,Manhattan,East Harlem,40.80249,-73.93463,Private room,54,1,46,0.91,2,14 +7269,117949,Brooklyn,Greenpoint,40.72722,-73.94209000000001,Private room,49,3,59,1.12,1,99 +7270,14794302,Manhattan,SoHo,40.72578,-73.99998000000001,Private room,250,1,10,0.26,1,364 +7271,27240422,Brooklyn,Park Slope,40.67487,-73.98459,Private room,45,1,2,0.04,1,0 +7272,27673980,Queens,Flushing,40.74569,-73.83299,Private room,50,1,214,4.08,8,56 +7273,17502474,Brooklyn,Fort Greene,40.68894,-73.9803,Entire home/apt,600,1,0,,1,0 +7274,27589508,Manhattan,Midtown,40.756240000000005,-73.96417,Entire home/apt,200,2,84,2.21,1,272 +7275,27698133,Queens,Woodside,40.74705,-73.89564,Private room,38,5,13,0.25,1,0 +7276,27700855,Brooklyn,Brooklyn Heights,40.69165,-73.99764,Entire home/apt,300,2,62,1.19,1,274 +7277,4731044,Brooklyn,Bedford-Stuyvesant,40.694,-73.93472,Private room,50,14,0,,1,0 +7278,7451917,Brooklyn,Bay Ridge,40.63304,-74.02811,Private room,55,15,7,0.13,2,317 +7279,27741331,Brooklyn,East Flatbush,40.65777,-73.92263,Private room,27,30,9,0.18,2,345 +7280,5740424,Manhattan,Midtown,40.75045,-73.98456,Entire home/apt,200,6,1,0.03,1,0 +7281,23772724,Manhattan,Upper East Side,40.77528,-73.95238,Entire home/apt,99,30,13,0.3,15,323 +7282,16548665,Brooklyn,Bedford-Stuyvesant,40.69365,-73.95841,Entire home/apt,80,5,5,0.09,1,0 +7283,9350960,Manhattan,West Village,40.73433,-74.00588,Entire home/apt,250,2,168,4.39,1,222 +7284,27748965,Brooklyn,Flatbush,40.6549,-73.95432,Entire home/apt,95,3,0,,1,0 +7285,19931875,Manhattan,Inwood,40.87206,-73.92945999999999,Private room,59,4,13,0.28,3,157 +7286,13649613,Bronx,University Heights,40.85535,-73.91388,Private room,57,2,106,2.02,4,82 +7287,2119276,Manhattan,Hell's Kitchen,40.76685,-73.98644,Entire home/apt,170,30,20,0.43,39,320 +7288,27782348,Brooklyn,Bushwick,40.6983,-73.92607,Private room,50,1,1,0.02,1,0 +7289,27790643,Manhattan,Washington Heights,40.84522,-73.93952,Private room,49,1,1,0.02,1,0 +7290,1290741,Brooklyn,Williamsburg,40.71539,-73.95425999999999,Private room,65,4,2,0.04,1,0 +7291,27796188,Manhattan,Harlem,40.80917,-73.95405,Entire home/apt,250,3,104,2.07,2,266 +7292,9787502,Brooklyn,Brooklyn Heights,40.69482,-73.99221999999999,Entire home/apt,200,4,24,0.45,1,0 +7293,13483550,Manhattan,East Harlem,40.79312,-73.94115,Entire home/apt,110,2,10,0.19,1,0 +7294,17982486,Manhattan,Kips Bay,40.74205,-73.97997,Entire home/apt,250,30,13,0.25,1,274 +7295,3201774,Brooklyn,South Slope,40.66305,-73.9886,Private room,73,1,199,4.15,2,142 +7296,27807705,Brooklyn,Bedford-Stuyvesant,40.687670000000004,-73.94147,Private room,70,1,0,,1,0 +7297,9881214,Brooklyn,Bushwick,40.700179999999996,-73.92586,Entire home/apt,125,1,1,0.02,1,0 +7298,27551876,Brooklyn,Williamsburg,40.711859999999994,-73.96115,Entire home/apt,195,1,0,,1,50 +7299,569577,Brooklyn,Prospect-Lefferts Gardens,40.66126,-73.96257,Private room,75,1,0,,1,0 +7300,12621774,Queens,Corona,40.738859999999995,-73.85146999999999,Private room,36,1,69,1.32,1,354 +7301,1295576,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95481,Entire home/apt,99,1,100,1.97,1,158 +7302,20806507,Brooklyn,Boerum Hill,40.68558,-73.98175,Entire home/apt,100,2,8,0.17,1,359 +7303,1223259,Manhattan,Lower East Side,40.71952,-73.99313000000001,Private room,71,10,56,1.08,1,131 +7304,26951283,Brooklyn,Park Slope,40.67092,-73.98759,Entire home/apt,100,2,4,0.08,1,0 +7305,10887881,Brooklyn,Clinton Hill,40.68943,-73.96635,Private room,85,1,28,0.53,1,0 +7306,6917906,Manhattan,Gramercy,40.73554,-73.98855,Entire home/apt,169,2,16,0.31,1,0 +7307,10306287,Manhattan,West Village,40.73666,-74.00690999999999,Entire home/apt,149,2,3,0.1,1,0 +7308,4693468,Manhattan,Upper East Side,40.77993,-73.94879,Private room,89,1,91,1.71,1,166 +7309,26377263,Brooklyn,East Flatbush,40.6593,-73.93512,Private room,44,30,1,0.03,43,273 +7310,27660118,Brooklyn,Williamsburg,40.70713,-73.94537,Entire home/apt,150,2,233,4.38,1,5 +7311,1564111,Brooklyn,Fort Greene,40.69105,-73.97355999999999,Entire home/apt,125,2,73,1.39,1,20 +7312,26377263,Queens,Far Rockaway,40.596959999999996,-73.75524,Private room,42,6,2,0.04,43,151 +7313,27919611,Manhattan,Washington Heights,40.83242,-73.93930999999999,Private room,28,20,0,,1,0 +7314,4624753,Brooklyn,Williamsburg,40.71395,-73.96298,Entire home/apt,155,4,0,,1,0 +7315,3641421,Queens,Astoria,40.7636,-73.926,Entire home/apt,300,7,1,0.16,1,42 +7316,4589525,Manhattan,Upper West Side,40.774609999999996,-73.98899,Private room,250,7,3,0.06,1,0 +7317,27944388,Manhattan,East Harlem,40.80226,-73.94506,Private room,70,1,325,6.19,1,108 +7318,1509452,Brooklyn,Crown Heights,40.67494,-73.95841,Entire home/apt,80,15,2,0.04,1,0 +7319,14586567,Manhattan,Upper West Side,40.79368,-73.97324,Entire home/apt,150,1,0,,1,0 +7320,27969560,Queens,Ridgewood,40.69829,-73.90771,Private room,65,2,132,2.54,1,261 +7321,1721426,Brooklyn,Greenpoint,40.725590000000004,-73.95384,Entire home/apt,167,5,2,0.04,1,0 +7322,2119276,Manhattan,East Village,40.73117,-73.98335,Entire home/apt,130,30,10,0.2,39,311 +7323,22249707,Brooklyn,Sheepshead Bay,40.58343,-73.95385999999999,Entire home/apt,115,2,60,1.15,1,0 +7324,27530449,Brooklyn,Greenpoint,40.72071,-73.94901999999999,Private room,94,4,199,3.75,2,246 +7325,9209691,Manhattan,Harlem,40.82313,-73.94981999999999,Entire home/apt,185,4,137,2.83,2,261 +7326,27998261,Manhattan,Chelsea,40.74742,-73.99616999999999,Entire home/apt,195,7,14,0.29,1,0 +7327,27159364,Brooklyn,Williamsburg,40.71475,-73.95557,Entire home/apt,90,4,1,0.02,1,0 +7328,27927011,Manhattan,Hell's Kitchen,40.75755,-73.99305,Private room,99,365,7,0.14,1,337 +7329,28005408,Manhattan,Murray Hill,40.74746,-73.97883,Entire home/apt,499,30,4,0.09,1,364 +7330,28013319,Brooklyn,Prospect Heights,40.67665,-73.97094,Entire home/apt,180,2,135,2.62,1,151 +7331,5175035,Brooklyn,Williamsburg,40.71208,-73.95091,Entire home/apt,300,2,3,0.07,1,0 +7332,27974744,Manhattan,East Village,40.72755,-73.97876,Private room,100,2,156,3.9,1,197 +7333,17062221,Manhattan,Kips Bay,40.73879,-73.97994,Private room,134,3,139,2.66,2,3 +7334,22189723,Queens,Ridgewood,40.706959999999995,-73.91155,Private room,49,2,49,0.95,2,303 +7335,400240,Brooklyn,Flatbush,40.65323,-73.96223,Private room,47,2,91,1.73,2,51 +7336,7016520,Brooklyn,Windsor Terrace,40.65497,-73.97459,Entire home/apt,120,2,17,0.33,1,0 +7337,25237492,Manhattan,Upper East Side,40.76235,-73.96005,Entire home/apt,185,30,9,0.18,34,342 +7338,5768957,Brooklyn,South Slope,40.66832,-73.98754,Entire home/apt,169,30,136,2.7,1,279 +7339,21327210,Brooklyn,Bay Ridge,40.63692,-74.0276,Entire home/apt,130,14,23,0.48,2,33 +7340,19655924,Brooklyn,Bedford-Stuyvesant,40.688559999999995,-73.95315,Entire home/apt,110,1,3,0.06,1,0 +7341,11968309,Brooklyn,Williamsburg,40.70882,-73.93705,Entire home/apt,122,4,21,0.41,1,306 +7342,28065838,Brooklyn,Prospect Heights,40.6769,-73.96485,Private room,150,1,2,0.04,1,0 +7343,7503643,Brooklyn,Greenpoint,40.72533,-73.94014,Entire home/apt,129,30,1,0.07,52,340 +7344,27673980,Queens,Flushing,40.744279999999996,-73.8333,Private room,65,1,76,1.46,8,25 +7345,25237492,Manhattan,Upper East Side,40.76181,-73.96127,Entire home/apt,115,30,18,0.35,34,311 +7346,27614204,Queens,Bayswater,40.59968,-73.76451999999999,Private room,60,2,81,1.6,1,312 +7347,1020326,Brooklyn,Carroll Gardens,40.67757,-73.99616999999999,Entire home/apt,150,7,1,0.02,1,0 +7348,28100741,Manhattan,Upper West Side,40.775290000000005,-73.98192,Entire home/apt,200,6,35,0.69,1,11 +7349,11650470,Manhattan,Upper East Side,40.78026,-73.9529,Entire home/apt,110,30,1,0.02,1,188 +7350,23234988,Queens,Flushing,40.75077,-73.80676,Entire home/apt,259,1,72,1.37,6,257 +7351,9488731,Manhattan,SoHo,40.72593,-74.00185,Entire home/apt,150,1,5,0.1,1,0 +7352,420993,Brooklyn,Williamsburg,40.71813,-73.95758000000001,Entire home/apt,295,3,0,,1,0 +7353,15402737,Manhattan,Upper West Side,40.7717,-73.98759,Private room,140,1,2,0.04,1,0 +7354,6885157,Brooklyn,Bedford-Stuyvesant,40.68182,-73.95152,Private room,70,1,49,0.94,15,359 +7355,3680008,Queens,Long Island City,40.75104,-73.93863,Entire home/apt,134,500,30,0.57,1,90 +7356,23334165,Manhattan,Harlem,40.82249,-73.94479,Entire home/apt,825,5,28,0.59,3,290 +7357,28000421,Brooklyn,Williamsburg,40.715509999999995,-73.9436,Private room,100,1,0,,2,0 +7358,17822208,Manhattan,Kips Bay,40.743520000000004,-73.97859,Entire home/apt,175,2,0,,1,0 +7359,23163374,Brooklyn,Bushwick,40.699870000000004,-73.93216,Private room,60,1,0,,1,0 +7360,5261137,Manhattan,East Village,40.73418,-73.9893,Entire home/apt,250,1,15,0.4,1,15 +7361,6480337,Brooklyn,Greenpoint,40.72665,-73.94832,Private room,58,2,4,0.17,1,0 +7362,28187447,Brooklyn,Bedford-Stuyvesant,40.684059999999995,-73.91611999999999,Entire home/apt,142,4,106,2.07,2,247 +7363,3674378,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.91349,Entire home/apt,120,3,194,3.72,1,213 +7364,27813383,Manhattan,Greenwich Village,40.72937,-74.00125,Entire home/apt,136,30,43,0.85,1,338 +7365,4534649,Manhattan,Harlem,40.816629999999996,-73.95315,Private room,55,2,71,1.34,3,0 +7366,3810454,Manhattan,Upper West Side,40.795840000000005,-73.97156,Entire home/apt,185,3,0,,1,0 +7367,24468833,Brooklyn,Prospect Heights,40.67734,-73.96433,Private room,75,1,1,0.02,2,188 +7368,19066350,Manhattan,East Harlem,40.79963,-73.94628,Entire home/apt,103,2,98,1.94,1,237 +7369,16437254,Brooklyn,Fort Greene,40.68969,-73.97797,Entire home/apt,193,30,1,0.13,21,311 +7370,3483450,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91374,Entire home/apt,700,1,6,0.13,3,322 +7371,27204642,Manhattan,Theater District,40.76115,-73.98224,Entire home/apt,200,30,14,0.29,1,284 +7372,2119276,Manhattan,Hell's Kitchen,40.76615,-73.9879,Entire home/apt,145,30,11,0.24,39,351 +7373,28234750,Brooklyn,Williamsburg,40.70892,-73.94981999999999,Entire home/apt,200,14,14,0.28,1,0 +7374,21838149,Brooklyn,DUMBO,40.70299,-73.98624000000001,Private room,160,1,54,1.03,1,10 +7375,17246368,Brooklyn,Bedford-Stuyvesant,40.6848,-73.94939000000001,Private room,45,2,43,0.82,1,302 +7376,28255422,Manhattan,Hell's Kitchen,40.763870000000004,-73.99039,Entire home/apt,151,7,12,0.24,1,0 +7377,28173937,Manhattan,Hell's Kitchen,40.7634,-73.98928000000001,Private room,98,2,20,0.41,1,0 +7378,7159349,Brooklyn,Greenpoint,40.73556,-73.9557,Private room,75,6,0,,1,0 +7379,2119276,Manhattan,Hell's Kitchen,40.76494,-73.9881,Entire home/apt,185,30,15,0.29,39,336 +7380,1364903,Bronx,Concourse Village,40.83161,-73.91958000000001,Entire home/apt,150,4,6,0.32,1,346 +7381,4413909,Brooklyn,Boerum Hill,40.68557,-73.99074,Entire home/apt,170,3,7,0.14,1,0 +7382,28183109,Brooklyn,Bedford-Stuyvesant,40.68481,-73.93186999999999,Entire home/apt,119,2,83,1.58,1,217 +7383,18212433,Manhattan,Hell's Kitchen,40.766020000000005,-73.99249,Entire home/apt,229,5,5,0.09,8,43 +7384,1340207,Manhattan,Harlem,40.815740000000005,-73.94877,Private room,80,2,5,0.1,1,0 +7385,22709931,Manhattan,Hell's Kitchen,40.769090000000006,-73.98639,Private room,100,5,0,,1,0 +7386,10297692,Brooklyn,Crown Heights,40.67615,-73.92945,Entire home/apt,500,1,68,1.41,2,313 +7387,20318406,Manhattan,Hell's Kitchen,40.76571,-73.99481999999999,Entire home/apt,120,1,12,0.24,1,163 +7388,4687722,Brooklyn,Williamsburg,40.715379999999996,-73.94527,Private room,85,1,0,,1,0 +7389,1506972,Brooklyn,Greenpoint,40.73406,-73.95551,Entire home/apt,135,3,17,0.32,1,8 +7390,28411613,Manhattan,Midtown,40.74447,-73.98362,Entire home/apt,524,3,57,1.14,1,115 +7391,20121732,Manhattan,Harlem,40.82205,-73.94523000000001,Private room,60,1,0,,1,0 +7392,5515591,Brooklyn,Bedford-Stuyvesant,40.68685,-73.95526,Entire home/apt,159,4,142,2.74,2,24 +7393,8817100,Manhattan,Washington Heights,40.8434,-73.94139,Entire home/apt,200,2,0,,1,0 +7394,26602392,Queens,Springfield Gardens,40.6631,-73.76749000000001,Private room,73,1,148,3.82,2,347 +7395,6834165,Brooklyn,Crown Heights,40.67044,-73.94292,Shared room,70,2,2,0.04,1,0 +7396,28468845,Brooklyn,Bushwick,40.69024,-73.9059,Private room,168,7,1,0.02,1,179 +7397,11463877,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93486999999999,Private room,75,1,0,,1,0 +7398,59185,Manhattan,Upper East Side,40.76272,-73.96775,Entire home/apt,169,3,76,1.48,1,126 +7399,15107994,Queens,Jackson Heights,40.747609999999995,-73.89466,Entire home/apt,85,4,6,0.11,1,0 +7400,26377263,Brooklyn,East Flatbush,40.66087,-73.93516,Private room,38,30,1,0.29,43,331 +7401,26377263,Brooklyn,East Flatbush,40.658809999999995,-73.93375999999999,Private room,48,30,2,0.04,43,306 +7402,860636,Bronx,Tremont,40.83887,-73.88805,Private room,42,2,25,0.47,3,0 +7403,248865,Manhattan,Upper East Side,40.77045,-73.95564,Private room,80,30,57,1.1,3,245 +7404,6050250,Brooklyn,Williamsburg,40.714040000000004,-73.93982,Entire home/apt,145,3,8,0.16,1,0 +7405,26080167,Manhattan,Washington Heights,40.83551,-73.94232,Private room,72,2,18,0.35,3,145 +7406,3398752,Brooklyn,Williamsburg,40.71074,-73.95429,Private room,95,2,186,3.75,2,62 +7407,3562322,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95291,Private room,45,4,49,0.93,3,40 +7408,25602417,Manhattan,Hell's Kitchen,40.7624,-73.99136,Entire home/apt,250,2,64,1.96,1,27 +7409,28557212,Manhattan,Gramercy,40.73305,-73.98255,Private room,73,5,4,0.08,1,0 +7410,2263462,Manhattan,Murray Hill,40.74467,-73.97202,Private room,100,1,1,0.02,1,0 +7411,28564535,Brooklyn,Bedford-Stuyvesant,40.69129,-73.93338,Private room,50,1,1,0.03,1,0 +7412,1924825,Brooklyn,Williamsburg,40.70565,-73.93518,Entire home/apt,165,1,75,1.45,1,365 +7413,1098902,Brooklyn,Park Slope,40.669990000000006,-73.98079,Entire home/apt,184,3,123,2.35,2,292 +7414,25134906,Manhattan,East Harlem,40.79582,-73.9479,Entire home/apt,295,2,0,,1,365 +7415,6145618,Queens,Ridgewood,40.70612,-73.9079,Entire home/apt,135,2,97,1.85,1,0 +7416,7580514,Manhattan,Hell's Kitchen,40.76181,-73.98756999999999,Entire home/apt,160,2,53,1.06,1,0 +7417,28584269,Brooklyn,Crown Heights,40.67687,-73.96242,Entire home/apt,99,3,72,1.4,1,266 +7418,28577246,Brooklyn,Boerum Hill,40.68607,-73.99048,Entire home/apt,85,10,3,0.06,1,0 +7419,7033514,Manhattan,West Village,40.73426,-74.00525,Entire home/apt,199,1,1,0.02,1,0 +7420,2353777,Manhattan,East Village,40.728429999999996,-73.97872,Entire home/apt,195,2,3,0.06,1,0 +7421,3191371,Manhattan,East Harlem,40.80843,-73.93722,Private room,80,1,134,2.69,3,211 +7422,9862957,Brooklyn,Crown Heights,40.67049,-73.94176999999999,Private room,69,15,21,0.43,1,360 +7423,201390,Manhattan,West Village,40.73174,-74.00309,Entire home/apt,145,3,13,0.25,1,0 +7424,12212944,Brooklyn,Kensington,40.643209999999996,-73.98294,Private room,52,3,8,0.15,2,27 +7425,28645131,Manhattan,Harlem,40.81777,-73.95753,Entire home/apt,80,5,2,0.06,1,0 +7426,119911,Manhattan,Harlem,40.82056,-73.95661,Entire home/apt,300,2,9,0.18,1,0 +7427,18950563,Manhattan,Washington Heights,40.85396,-73.93785,Entire home/apt,75,20,2,0.04,1,100 +7428,1854977,Manhattan,Upper West Side,40.77361,-73.97908000000001,Entire home/apt,180,3,7,0.15,1,0 +7429,23086547,Manhattan,Chinatown,40.71705,-73.99668,Private room,62,6,62,1.27,1,317 +7430,8278521,Manhattan,Tribeca,40.71966,-74.00984,Entire home/apt,750,1,50,1.07,1,345 +7431,28669815,Manhattan,Washington Heights,40.84503,-73.93978,Private room,31,7,0,,1,0 +7432,28690907,Brooklyn,Bushwick,40.69525,-73.91385,Entire home/apt,250,3,16,0.31,2,72 +7433,28696923,Manhattan,Washington Heights,40.84347,-73.93406,Entire home/apt,99,1,8,0.23,1,0 +7434,28699661,Brooklyn,Greenpoint,40.73066,-73.955,Entire home/apt,120,7,17,0.33,1,0 +7435,1539848,Manhattan,SoHo,40.72092,-73.99965999999999,Entire home/apt,150,3,58,2.78,1,40 +7436,28706617,Manhattan,East Harlem,40.80177,-73.93531999999999,Entire home/apt,100,7,0,,1,0 +7437,257479,Manhattan,Upper West Side,40.78257,-73.97681,Entire home/apt,150,14,6,0.12,1,0 +7438,28709982,Brooklyn,Williamsburg,40.71986,-73.95619,Private room,99,2,35,0.68,3,76 +7439,24715671,Manhattan,Midtown,40.742940000000004,-73.98499,Entire home/apt,200,30,9,0.17,4,342 +7440,28711190,Brooklyn,Park Slope,40.6682,-73.98196,Private room,75,1,0,,1,0 +7441,26377263,Brooklyn,Prospect-Lefferts Gardens,40.656040000000004,-73.94221,Private room,45,30,0,,43,361 +7442,26377263,Brooklyn,East Flatbush,40.65546,-73.94619,Private room,45,30,0,,43,361 +7443,28722667,Brooklyn,Flatlands,40.62506,-73.93046,Private room,59,1,75,1.46,3,322 +7444,16862116,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93823,Private room,84,2,5,0.1,1,364 +7445,25237492,Manhattan,Upper West Side,40.78182,-73.98491999999999,Entire home/apt,140,30,11,0.22,34,204 +7446,3424719,Brooklyn,Columbia St,40.68255,-74.00224,Private room,90,4,8,0.16,1,0 +7447,28745989,Brooklyn,Midwood,40.61056,-73.96558,Entire home/apt,125,1,0,,1,0 +7448,28752891,Manhattan,Upper West Side,40.790929999999996,-73.9678,Private room,250,3,33,2.31,2,38 +7449,10014288,Brooklyn,Prospect-Lefferts Gardens,40.65739,-73.95983000000001,Entire home/apt,100,5,0,,1,0 +7450,11369454,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.95975,Entire home/apt,190,2,119,2.42,1,243 +7451,6289792,Brooklyn,Bedford-Stuyvesant,40.689370000000004,-73.95097,Entire home/apt,298,3,17,0.33,1,35 +7452,322697,Manhattan,Gramercy,40.7317,-73.98272,Private room,99,2,136,2.67,1,33 +7453,13972159,Manhattan,East Village,40.72681,-73.97994,Entire home/apt,250,2,12,0.26,1,0 +7454,1982425,Manhattan,Hell's Kitchen,40.757020000000004,-73.99458,Private room,95,7,2,0.14,1,335 +7455,28513635,Brooklyn,Williamsburg,40.71755,-73.95437,Private room,110,6,0,,1,0 +7456,3447539,Manhattan,Washington Heights,40.84898,-73.93642,Private room,59,4,109,2.08,2,284 +7457,28809821,Manhattan,Murray Hill,40.744440000000004,-73.97174,Shared room,115,1,7,0.15,1,0 +7458,28812204,Queens,Ridgewood,40.70463,-73.91272,Entire home/apt,200,2,6,0.13,1,349 +7459,9035762,Brooklyn,Bushwick,40.69099,-73.91665,Private room,75,1,8,0.17,1,281 +7460,16548032,Brooklyn,Park Slope,40.66907,-73.97609,Entire home/apt,115,5,4,0.08,1,0 +7461,28473177,Manhattan,Upper West Side,40.77122,-73.98135,Entire home/apt,146,3,45,0.87,1,211 +7462,640117,Brooklyn,Williamsburg,40.711929999999995,-73.95605,Private room,110,3,4,0.08,5,0 +7463,17548709,Brooklyn,Crown Heights,40.67151,-73.95789,Private room,60,1,0,,1,0 +7464,1693243,Brooklyn,Williamsburg,40.71544,-73.94771,Entire home/apt,450,5,137,2.63,1,226 +7465,16155254,Manhattan,East Village,40.73097,-73.98178,Entire home/apt,160,1,169,3.22,4,238 +7466,1389487,Manhattan,Upper East Side,40.773990000000005,-73.95101,Entire home/apt,149,2,15,0.29,1,0 +7467,27201435,Manhattan,East Harlem,40.80015,-73.94043,Entire home/apt,100,2,32,0.62,1,0 +7468,2306485,Manhattan,West Village,40.73296,-74.00235,Entire home/apt,220,3,118,2.26,1,180 +7469,7797690,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.95824,Entire home/apt,120,1,282,5.51,1,187 +7470,134936,Brooklyn,Williamsburg,40.70893,-73.94832,Entire home/apt,99,25,24,0.46,1,0 +7471,13299977,Manhattan,Harlem,40.81608,-73.9397,Private room,65,1,27,0.52,1,1 +7472,13728275,Queens,Astoria,40.76272,-73.92004,Private room,50,4,1,0.02,1,0 +7473,5074343,Brooklyn,Bushwick,40.703359999999996,-73.92416,Entire home/apt,65,5,0,,1,0 +7474,2729850,Brooklyn,Greenpoint,40.72658,-73.94031,Entire home/apt,125,1,0,,1,0 +7475,20559017,Manhattan,Upper East Side,40.76324,-73.96251,Private room,75,30,8,0.16,9,303 +7476,28891151,Brooklyn,East New York,40.66905,-73.88976,Private room,85,2,3,0.22,4,353 +7477,26098783,Brooklyn,Sunset Park,40.65137,-74.00666,Private room,2000,40,28,0.54,2,0 +7478,10054163,Brooklyn,South Slope,40.6642,-73.98435,Entire home/apt,149,2,1,0.02,1,0 +7479,329917,Brooklyn,Greenpoint,40.72905,-73.95755,Private room,53,2,5,0.13,1,0 +7480,19512999,Manhattan,Upper West Side,40.80251,-73.96531999999999,Entire home/apt,325,3,2,0.04,1,0 +7481,21497854,Brooklyn,Bushwick,40.701240000000006,-73.92218000000001,Private room,45,2,13,0.25,1,0 +7482,26377263,Queens,Far Rockaway,40.59535,-73.75441,Private room,38,30,4,0.08,43,222 +7483,28937325,Manhattan,Washington Heights,40.857690000000005,-73.93374,Shared room,120,3,38,0.74,1,178 +7484,26377263,Queens,Far Rockaway,40.59594,-73.75492,Private room,38,30,5,0.1,43,312 +7485,26098783,Brooklyn,Sunset Park,40.65118,-74.00842,Private room,2000,2,0,,2,365 +7486,28974263,Brooklyn,Williamsburg,40.70945,-73.95491,Private room,60,3,31,0.77,1,147 +7487,489950,Brooklyn,Greenpoint,40.73111,-73.95591999999999,Entire home/apt,190,3,16,0.4,1,0 +7488,20573060,Manhattan,East Village,40.72566,-73.98031999999999,Private room,125,2,16,0.37,1,18 +7489,28984530,Manhattan,Harlem,40.812509999999996,-73.95102,Entire home/apt,100,6,0,,1,0 +7490,28723165,Manhattan,Harlem,40.82778,-73.94884,Private room,70,1,131,2.5,1,0 +7491,7434416,Brooklyn,Flatbush,40.64913,-73.96379,Entire home/apt,130,1,45,0.86,1,7 +7492,20083880,Brooklyn,Fort Greene,40.69701,-73.97353000000001,Private room,45,1,1,0.02,1,0 +7493,5855080,Manhattan,Upper West Side,40.78965,-73.9687,Entire home/apt,110,30,7,0.14,1,67 +7494,29003805,Manhattan,Harlem,40.827529999999996,-73.94601999999999,Private room,60,3,18,1.17,2,0 +7495,29005043,Brooklyn,Bedford-Stuyvesant,40.67861,-73.9453,Private room,125,14,7,0.15,1,179 +7496,1342014,Manhattan,Lower East Side,40.71369,-73.98828,Private room,81,1,3,0.68,1,0 +7497,29011140,Manhattan,Harlem,40.80672,-73.95404,Private room,80,5,0,,1,0 +7498,18941320,Queens,Astoria,40.76327,-73.92456999999999,Entire home/apt,105,1,7,0.14,1,0 +7499,29034854,Manhattan,Greenwich Village,40.72918,-73.99882,Entire home/apt,200,7,1,0.03,1,23 +7500,11658596,Manhattan,Morningside Heights,40.80469,-73.96381,Entire home/apt,100,1,0,,1,0 +7501,7798111,Brooklyn,Williamsburg,40.70827,-73.95229,Private room,100,2,0,,1,61 +7502,24665235,Brooklyn,Bedford-Stuyvesant,40.68417,-73.94977,Entire home/apt,75,2,9,0.2,1,0 +7503,1407325,Brooklyn,Prospect Heights,40.67909,-73.97315,Entire home/apt,250,5,17,0.33,1,36 +7504,3852579,Manhattan,Nolita,40.72092,-73.99386,Entire home/apt,400,2,101,1.94,1,258 +7505,19523446,Brooklyn,Crown Heights,40.67644,-73.95991,Entire home/apt,160,3,134,2.62,1,338 +7506,28576665,Manhattan,Chinatown,40.7175,-73.99264000000001,Private room,110,1,175,3.34,2,43 +7507,28690907,Brooklyn,Bushwick,40.69363,-73.91329,Entire home/apt,220,1,76,2.95,2,81 +7508,517966,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93885999999999,Entire home/apt,135,3,148,2.86,2,134 +7509,4514390,Brooklyn,Williamsburg,40.710609999999996,-73.96764,Private room,99,2,41,0.82,1,143 +7510,5934575,Manhattan,East Village,40.72795,-73.98539,Private room,89,4,6,0.14,1,35 +7511,7322898,Brooklyn,Prospect Heights,40.67928,-73.97013000000001,Private room,110,7,0,,1,0 +7512,29106164,Manhattan,East Village,40.72805,-73.98415,Private room,75,3,32,1.39,1,72 +7513,836168,Manhattan,Upper West Side,40.7747,-73.98708,Entire home/apt,2000,30,9,0.18,11,364 +7514,11904076,Brooklyn,Greenpoint,40.73046,-73.95211,Entire home/apt,160,1,0,,1,0 +7515,3868692,Manhattan,Financial District,40.70462,-74.00986,Entire home/apt,475,2,57,1.11,2,141 +7516,23747060,Manhattan,Chelsea,40.74406,-73.99551,Entire home/apt,230,4,41,0.8,1,236 +7517,9311147,Manhattan,Harlem,40.82417,-73.94496,Private room,49,1,0,,1,0 +7518,20469855,Manhattan,Upper West Side,40.78913,-73.97021,Private room,125,2,7,0.14,1,248 +7519,15775091,Brooklyn,Crown Heights,40.67051,-73.95851,Entire home/apt,180,2,2,0.07,1,0 +7520,6372947,Brooklyn,Flatbush,40.65305,-73.95818,Entire home/apt,80,5,1,0.02,1,0 +7521,29161738,Manhattan,Harlem,40.82855,-73.94745,Private room,55,1,7,0.18,1,0 +7522,13451939,Brooklyn,Bedford-Stuyvesant,40.68153,-73.93825,Entire home/apt,135,3,140,2.75,2,197 +7523,29167335,Manhattan,Midtown,40.7555,-73.96826,Entire home/apt,182,4,56,1.08,2,148 +7524,24715671,Manhattan,Midtown,40.74197,-73.98373000000001,Entire home/apt,209,30,14,0.28,4,0 +7525,23863437,Manhattan,Harlem,40.82955,-73.9477,Private room,78,7,26,0.71,1,0 +7526,14358525,Manhattan,Upper East Side,40.76873,-73.95487,Entire home/apt,202,1,0,,1,0 +7527,26377263,Brooklyn,Bushwick,40.70406,-73.91811,Private room,48,30,3,0.06,43,224 +7528,11363708,Brooklyn,Bedford-Stuyvesant,40.70021,-73.9447,Private room,81,4,165,3.26,1,15 +7529,20694703,Manhattan,Lower East Side,40.71286,-73.98849,Shared room,80,2,12,0.24,2,89 +7530,3128437,Queens,Astoria,40.7576,-73.92134,Private room,60,1,0,,2,89 +7531,7503643,Brooklyn,Greenpoint,40.727509999999995,-73.94078,Entire home/apt,129,30,5,0.1,52,342 +7532,240584,Brooklyn,Bushwick,40.7001,-73.93602,Entire home/apt,100,3,28,0.54,1,0 +7533,25354313,Brooklyn,Crown Heights,40.67413,-73.95916,Private room,35,3,54,1.18,2,0 +7534,8000315,Manhattan,Harlem,40.8215,-73.95006,Entire home/apt,100,2,243,4.65,2,250 +7535,26080167,Manhattan,Washington Heights,40.83481,-73.94317,Private room,82,2,11,0.32,3,364 +7536,9503725,Queens,Astoria,40.762240000000006,-73.92023,Private room,80,7,0,,1,0 +7537,16482147,Brooklyn,Bedford-Stuyvesant,40.68294,-73.92671999999999,Entire home/apt,128,4,44,1.98,1,88 +7538,2458750,Manhattan,Upper East Side,40.76923,-73.95034,Entire home/apt,159,30,14,0.3,1,265 +7539,643512,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95016,Entire home/apt,101,7,4,0.11,1,365 +7540,29278028,Manhattan,Upper East Side,40.77618,-73.95626999999999,Private room,195,5,56,1.1,4,145 +7541,836168,Manhattan,Upper West Side,40.77306,-73.98637,Entire home/apt,2000,30,9,0.17,11,364 +7542,9680175,Manhattan,East Harlem,40.79331,-73.9408,Entire home/apt,160,2,57,1.11,1,129 +7543,6165258,Manhattan,Harlem,40.803020000000004,-73.94476999999999,Private room,100,7,0,,3,365 +7544,29278028,Manhattan,Upper East Side,40.77789,-73.95730999999999,Private room,195,5,62,1.2,4,84 +7545,3999695,Brooklyn,Bedford-Stuyvesant,40.695609999999995,-73.93603,Private room,475,3,1,0.02,1,0 +7546,29279330,Manhattan,Inwood,40.85991,-73.93193000000001,Entire home/apt,122,3,34,0.68,1,0 +7547,19233353,Brooklyn,Prospect-Lefferts Gardens,40.657579999999996,-73.95866,Private room,45,14,6,0.12,2,0 +7548,16091512,Brooklyn,Cobble Hill,40.685340000000004,-73.99471,Entire home/apt,235,5,10,0.21,1,0 +7549,5790236,Manhattan,Upper West Side,40.78974,-73.97018,Entire home/apt,275,7,15,0.29,2,45 +7550,1394543,Brooklyn,Flatbush,40.65044,-73.96327,Entire home/apt,99,2,35,0.76,2,15 +7551,26080167,Manhattan,Washington Heights,40.83514,-73.94334,Private room,78,5,0,,3,364 +7552,29332408,Manhattan,East Village,40.72866,-73.9806,Entire home/apt,125,3,51,1.06,1,67 +7553,29336125,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92909,Entire home/apt,125,3,64,1.26,1,132 +7554,4653182,Brooklyn,Boerum Hill,40.68282,-73.98111999999999,Entire home/apt,170,1,0,,1,0 +7555,29345363,Manhattan,Chelsea,40.74924,-73.99784,Entire home/apt,165,3,58,1.72,1,138 +7556,21503931,Manhattan,Hell's Kitchen,40.765609999999995,-73.99439,Entire home/apt,129,1,178,3.43,1,272 +7557,27755788,Brooklyn,Park Slope,40.67812,-73.97353000000001,Entire home/apt,150,6,1,0.09,1,209 +7558,26377263,Brooklyn,Crown Heights,40.677,-73.93763,Private room,45,30,0,,43,303 +7559,29358602,Manhattan,Harlem,40.80663,-73.94991,Private room,90,1,151,4.42,1,129 +7560,10807892,Manhattan,East Village,40.724000000000004,-73.98905,Private room,175,3,85,1.65,1,0 +7561,5515591,Brooklyn,Clinton Hill,40.68699,-73.96049000000001,Entire home/apt,188,3,146,2.93,2,135 +7562,1686834,Queens,Astoria,40.76632,-73.91873000000001,Private room,80,3,11,0.21,1,0 +7563,1434654,Queens,Ridgewood,40.7073,-73.91775,Entire home/apt,160,7,3,0.06,2,15 +7564,29408218,Brooklyn,Crown Heights,40.67092,-73.95300999999999,Private room,50,1,0,,1,0 +7565,15586243,Brooklyn,Williamsburg,40.7095,-73.94933,Entire home/apt,100,3,1,0.02,1,0 +7566,142695,Brooklyn,Bedford-Stuyvesant,40.6813,-73.9476,Private room,65,1,0,,1,0 +7567,2423554,Brooklyn,Crown Heights,40.675309999999996,-73.94967,Private room,50,4,15,0.32,1,324 +7568,6003891,Manhattan,Hell's Kitchen,40.761959999999995,-73.99194,Private room,70,3,3,0.07,1,0 +7569,93781,Brooklyn,Fort Greene,40.6918,-73.9729,Entire home/apt,130,7,83,1.59,1,67 +7570,2671902,Brooklyn,Bedford-Stuyvesant,40.680240000000005,-73.93987,Entire home/apt,60,14,0,,1,59 +7571,14513121,Brooklyn,Park Slope,40.67731,-73.97475,Entire home/apt,180,3,21,0.4,1,125 +7572,1303542,Manhattan,Financial District,40.70909,-74.00579,Entire home/apt,150,90,3,0.06,1,86 +7573,16514175,Queens,Elmhurst,40.74595,-73.88691,Private room,69,1,20,0.57,5,65 +7574,4029415,Manhattan,Harlem,40.81645,-73.94483000000001,Private room,62,5,47,0.9,1,89 +7575,29456424,Brooklyn,Greenpoint,40.73125,-73.95905,Entire home/apt,150,2,8,0.16,1,0 +7576,1606397,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.95969000000001,Entire home/apt,118,5,1,0.02,1,0 +7577,470675,Manhattan,East Village,40.72322,-73.98283,Entire home/apt,195,12,10,0.2,1,64 +7578,22020703,Manhattan,Washington Heights,40.85494,-73.93179,Private room,75,1,155,4.42,1,314 +7579,26264587,Brooklyn,Clinton Hill,40.68319,-73.96766,Entire home/apt,135,14,20,0.46,1,41 +7580,24575626,Manhattan,West Village,40.733979999999995,-74.00369,Entire home/apt,450,2,3,0.08,1,260 +7581,3148473,Manhattan,Washington Heights,40.83891,-73.93758000000001,Private room,45,1,10,0.19,1,0 +7582,1803036,Manhattan,Chelsea,40.74405,-73.99915,Entire home/apt,250,3,164,3.21,1,71 +7583,4471002,Brooklyn,Greenpoint,40.72705,-73.95504,Private room,70,5,0,,2,0 +7584,29518961,Manhattan,Upper West Side,40.77937,-73.97805,Entire home/apt,120,1,1,0.02,1,0 +7585,12419033,Brooklyn,Gowanus,40.68202,-73.98151,Private room,125,2,40,0.77,1,295 +7586,13347167,Manhattan,Upper East Side,40.7711,-73.95626999999999,Entire home/apt,118,30,4,0.08,29,283 +7587,15897880,Queens,Ridgewood,40.70066,-73.90964,Private room,50,1,0,,1,0 +7588,36841,Brooklyn,Bedford-Stuyvesant,40.68421,-73.92608,Entire home/apt,100,2,107,2.23,1,41 +7589,29528182,Brooklyn,Bedford-Stuyvesant,40.6792,-73.95358,Private room,40,10,2,0.04,1,0 +7590,29537636,Manhattan,Financial District,40.7091,-74.01286,Entire home/apt,225,1,3,0.07,1,0 +7591,2119276,Manhattan,Hell's Kitchen,40.766459999999995,-73.98805,Entire home/apt,185,30,6,0.2,39,281 +7592,93779,Manhattan,West Village,40.74033,-74.00872,Private room,225,1,17,0.34,1,365 +7593,946943,Brooklyn,Williamsburg,40.71212,-73.94965,Entire home/apt,155,4,58,1.21,3,3 +7594,8686625,Manhattan,Upper East Side,40.78301,-73.95085,Entire home/apt,165,1,166,3.3,1,210 +7595,16437254,Brooklyn,Boerum Hill,40.68897,-73.98634,Entire home/apt,165,30,3,0.06,21,339 +7596,7503643,Brooklyn,Greenpoint,40.72573,-73.94071,Entire home/apt,149,30,1,0.05,52,357 +7597,13347167,Manhattan,Upper East Side,40.77276,-73.95557,Entire home/apt,142,30,3,0.1,29,315 +7598,29592244,Queens,Forest Hills,40.718109999999996,-73.83368,Private room,59,4,138,2.69,1,35 +7599,3780975,Manhattan,Harlem,40.80403,-73.95615,Entire home/apt,200,2,6,0.12,1,0 +7600,2946319,Brooklyn,Prospect Heights,40.67758,-73.96452,Entire home/apt,125,7,1,0.03,1,0 +7601,29628369,Brooklyn,Park Slope,40.66568,-73.9774,Entire home/apt,181,2,238,4.57,1,302 +7602,29641189,Brooklyn,Williamsburg,40.703140000000005,-73.93656,Private room,90,2,3,1.73,1,18 +7603,29642992,Brooklyn,Kensington,40.63694,-73.97487,Private room,70,3,8,0.17,1,0 +7604,11559667,Manhattan,Lower East Side,40.72019,-73.99297,Entire home/apt,150,2,3,0.13,1,0 +7605,29651191,Manhattan,Upper West Side,40.79589,-73.96186999999999,Entire home/apt,225,3,13,0.25,1,0 +7606,87105,Manhattan,Upper West Side,40.77737,-73.98355,Entire home/apt,240,7,8,0.16,1,38 +7607,5735779,Brooklyn,Prospect-Lefferts Gardens,40.66012,-73.96078,Entire home/apt,98,5,11,0.24,1,0 +7608,29661897,Manhattan,Washington Heights,40.8558,-73.93025,Entire home/apt,100,5,15,0.29,1,30 +7609,29664627,Manhattan,West Village,40.73271,-74.00545,Entire home/apt,200,2,8,0.19,1,0 +7610,29683852,Brooklyn,Downtown Brooklyn,40.68927,-73.98423000000001,Entire home/apt,150,1,2,0.04,1,0 +7611,14001033,Brooklyn,Williamsburg,40.71239,-73.96178,Private room,65,5,0,,1,0 +7612,23570473,Brooklyn,Crown Heights,40.67219,-73.95461,Private room,129,30,18,0.36,3,339 +7613,29693386,Brooklyn,Williamsburg,40.705059999999996,-73.93200999999999,Private room,65,7,1,0.02,1,0 +7614,29697292,Manhattan,Financial District,40.70854,-73.99991999999999,Private room,70,7,12,0.28,1,318 +7615,29698290,Manhattan,Upper West Side,40.77655,-73.98074,Entire home/apt,200,3,9,0.19,1,0 +7616,23185328,Queens,Ditmars Steinway,40.778420000000004,-73.90994,Private room,58,1,34,0.66,2,129 +7617,26955105,Brooklyn,Williamsburg,40.70835,-73.95226,Entire home/apt,180,4,67,1.32,1,304 +7618,4271676,Manhattan,Nolita,40.72217,-73.99481,Private room,120,7,3,0.06,3,0 +7619,12020405,Manhattan,Upper West Side,40.77556,-73.98416,Entire home/apt,244,4,38,0.74,1,222 +7620,27281731,Brooklyn,Flatbush,40.64295,-73.95276,Private room,40,3,20,0.38,1,131 +7621,29707420,Manhattan,Upper East Side,40.76939,-73.9504,Entire home/apt,150,1,0,,1,0 +7622,29739883,Brooklyn,Greenpoint,40.72102,-73.94382,Entire home/apt,135,2,249,4.84,2,248 +7623,29741575,Manhattan,Upper West Side,40.78519,-73.97032,Entire home/apt,150,5,0,,1,0 +7624,4471002,Brooklyn,Fort Greene,40.68914,-73.97406,Entire home/apt,200,1,0,,2,0 +7625,610690,Brooklyn,Bedford-Stuyvesant,40.6801,-73.90975999999999,Private room,65,1,24,0.47,2,80 +7626,16621177,Brooklyn,Park Slope,40.66812,-73.98303,Entire home/apt,140,2,232,4.46,1,326 +7627,6094516,Brooklyn,Williamsburg,40.70905,-73.95152,Private room,80,1,0,,1,0 +7628,7503643,Brooklyn,Greenpoint,40.7254,-73.94051,Entire home/apt,129,30,1,0.12,52,311 +7629,22557949,Queens,East Elmhurst,40.7583,-73.87679,Entire home/apt,112,2,3,0.35,1,338 +7630,9080758,Brooklyn,Gowanus,40.679590000000005,-73.98713000000001,Private room,80,2,48,0.93,1,0 +7631,29784880,Manhattan,Chinatown,40.714909999999996,-73.99181999999999,Entire home/apt,149,7,6,0.12,1,241 +7632,29786027,Manhattan,Hell's Kitchen,40.75437,-73.99334,Private room,99,4,2,0.04,1,0 +7633,29792577,Manhattan,Harlem,40.821709999999996,-73.95515,Private room,50,1,6,0.12,1,0 +7634,22677829,Brooklyn,Bushwick,40.69226,-73.92286,Entire home/apt,190,2,34,0.69,1,341 +7635,29817997,Queens,Rego Park,40.727990000000005,-73.85543,Private room,70,2,175,3.45,2,349 +7636,860636,Bronx,Tremont,40.84061,-73.88858,Private room,30,3,11,0.45,3,0 +7637,24911518,Manhattan,East Harlem,40.79733,-73.9363,Private room,96,21,14,1.38,1,3 +7638,16727332,Brooklyn,Park Slope,40.668009999999995,-73.98142,Private room,85,7,0,,1,0 +7639,11732381,Manhattan,Midtown,40.75858,-73.96342,Entire home/apt,200,2,0,,1,0 +7640,13347167,Manhattan,Upper East Side,40.7729,-73.95586999999999,Entire home/apt,118,30,3,0.11,29,204 +7641,27583102,Manhattan,Kips Bay,40.73894,-73.98049,Entire home/apt,150,2,21,0.4,1,191 +7642,4275400,Manhattan,Morningside Heights,40.80317,-73.96338,Private room,50,20,0,,1,0 +7643,75815,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92079,Entire home/apt,99,3,0,,1,0 +7644,1632428,Manhattan,Harlem,40.820029999999996,-73.95745,Entire home/apt,350,1,4,0.08,2,365 +7645,29867161,Manhattan,Murray Hill,40.74415,-73.97322,Private room,165,1,0,,1,0 +7646,21823,Brooklyn,Bushwick,40.6878,-73.91452,Entire home/apt,225,3,82,1.58,3,255 +7647,1613244,Manhattan,Lower East Side,40.72292,-73.99242,Entire home/apt,110,30,17,0.34,9,276 +7648,29885916,Manhattan,SoHo,40.723859999999995,-74.00461999999999,Entire home/apt,245,4,8,0.16,1,52 +7649,29887425,Manhattan,Harlem,40.81732,-73.94757,Private room,65,2,58,1.12,1,24 +7650,10532169,Manhattan,East Village,40.73065,-73.98444,Private room,100,1,0,,1,0 +7651,27673980,Queens,Flushing,40.745129999999996,-73.83139,Private room,60,1,100,1.93,8,76 +7652,29901463,Manhattan,Upper West Side,40.7726,-73.97928,Shared room,68,3,105,2.09,1,302 +7653,19735540,Brooklyn,Bushwick,40.70754,-73.92138,Private room,55,2,0,,1,0 +7654,3448931,Brooklyn,Clinton Hill,40.69174,-73.96871999999999,Entire home/apt,195,3,6,0.12,1,0 +7655,29452212,Manhattan,Upper East Side,40.76545,-73.95668,Entire home/apt,120,7,0,,1,0 +7656,11722846,Brooklyn,Williamsburg,40.715,-73.95018,Entire home/apt,80,10,3,0.06,1,0 +7657,29936494,Manhattan,Hell's Kitchen,40.76525,-73.98953,Entire home/apt,195,5,55,1.09,1,34 +7658,21191263,Manhattan,East Village,40.72915,-73.98866,Entire home/apt,275,1,1,0.02,1,0 +7659,1211067,Staten Island,Tompkinsville,40.62105,-74.08723,Private room,49,2,151,3.06,2,277 +7660,12212944,Brooklyn,Kensington,40.64455,-73.98298,Private room,30,21,1,0.02,2,1 +7661,2446016,Manhattan,Upper West Side,40.79246,-73.97480999999999,Entire home/apt,150,5,48,0.93,1,0 +7662,25859072,Brooklyn,Clinton Hill,40.6896,-73.96761,Entire home/apt,140,5,5,0.1,1,0 +7663,1674428,Manhattan,East Village,40.724779999999996,-73.9755,Entire home/apt,160,7,9,0.24,1,0 +7664,19498957,Manhattan,East Village,40.72481,-73.98216,Private room,125,3,4,0.08,1,0 +7665,30002976,Brooklyn,Bushwick,40.70212,-73.93032,Private room,48,7,0,,1,0 +7666,23533897,Brooklyn,Crown Heights,40.67383,-73.95137,Private room,50,2,61,1.17,7,285 +7667,23977712,Manhattan,East Harlem,40.79088,-73.94596999999999,Private room,100,1,315,6.1,2,76 +7668,23977712,Manhattan,East Harlem,40.790820000000004,-73.94615,Shared room,50,1,181,3.49,2,46 +7669,19446943,Manhattan,Upper East Side,40.76236,-73.95827,Entire home/apt,320,30,9,0.19,1,215 +7670,29888597,Manhattan,Washington Heights,40.84347,-73.93978,Private room,200,7,41,0.8,1,87 +7671,30037999,Manhattan,Morningside Heights,40.80593,-73.9583,Private room,70,2,200,3.92,1,202 +7672,8818661,Brooklyn,Williamsburg,40.71335,-73.9655,Private room,70,3,16,0.49,1,0 +7673,30046603,Brooklyn,Brooklyn Heights,40.69758,-73.99139,Entire home/apt,200,2,2,0.05,1,0 +7674,248865,Manhattan,Upper East Side,40.77107,-73.95517,Entire home/apt,100,30,71,1.42,3,248 +7675,15175443,Manhattan,Financial District,40.70471,-74.00816999999999,Private room,150,3,2,0.04,1,0 +7676,30050649,Manhattan,East Village,40.73141,-73.98737,Entire home/apt,185,1,9,0.24,1,0 +7677,8390853,Manhattan,Lower East Side,40.7189,-73.99181999999999,Entire home/apt,125,3,117,2.29,1,228 +7678,257676,Brooklyn,Flatbush,40.654090000000004,-73.96025,Private room,148,1,11,0.22,2,90 +7679,24126726,Manhattan,Midtown,40.75245,-73.97341999999999,Private room,295,1,6,0.12,3,0 +7680,30078721,Brooklyn,Williamsburg,40.71375,-73.96311999999999,Private room,80,7,0,,1,0 +7681,16151285,Bronx,Williamsbridge,40.8789,-73.84855,Private room,45,14,27,0.55,4,325 +7682,278576,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.95071,Entire home/apt,114,2,81,1.57,2,160 +7683,30063582,Queens,Woodside,40.74905,-73.90185,Private room,37,1,0,,1,0 +7684,30112106,Brooklyn,Bushwick,40.70033,-73.93964,Private room,45,6,13,0.25,1,0 +7685,13501779,Brooklyn,Crown Heights,40.671690000000005,-73.95116999999999,Entire home/apt,85,2,14,0.28,2,0 +7686,3974808,Queens,Ditmars Steinway,40.7778,-73.9144,Private room,150,1,0,,1,0 +7687,19390428,Manhattan,Chelsea,40.74157,-74.00140999999999,Entire home/apt,240,1,0,,1,0 +7688,23719409,Manhattan,Harlem,40.8261,-73.95139,Private room,65,1,157,3.04,4,137 +7689,12484957,Manhattan,Nolita,40.72102,-73.99469,Entire home/apt,280,3,122,2.35,1,113 +7690,18060780,Brooklyn,Bushwick,40.69611,-73.92258000000001,Private room,65,1,1,0.02,1,0 +7691,17997408,Brooklyn,Clinton Hill,40.694390000000006,-73.96484,Private room,65,1,136,5.72,2,11 +7692,29817997,Queens,Rego Park,40.72846,-73.85546,Private room,65,1,120,2.35,2,355 +7693,4473420,Brooklyn,Boerum Hill,40.68821,-73.9903,Private room,120,1,0,,1,0 +7694,6877794,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94171,Entire home/apt,255,6,12,0.24,1,66 +7695,2558779,Queens,Ridgewood,40.70152,-73.90568,Private room,54,3,47,0.93,2,321 +7696,5963594,Manhattan,Upper West Side,40.77647,-73.98210999999999,Entire home/apt,175,1,0,,1,0 +7697,29650513,Brooklyn,Bedford-Stuyvesant,40.69307,-73.96073,Private room,90,30,30,0.58,6,338 +7698,29650513,Brooklyn,Clinton Hill,40.69454,-73.96198000000001,Private room,90,30,47,0.91,6,297 +7699,29650513,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9607,Private room,90,30,47,0.92,6,323 +7700,30196119,Manhattan,Harlem,40.82943,-73.9407,Entire home/apt,120,5,28,0.82,1,355 +7701,10553573,Brooklyn,Williamsburg,40.711220000000004,-73.95602,Entire home/apt,210,1,3,0.06,1,0 +7702,30224326,Manhattan,Morningside Heights,40.8063,-73.96268,Entire home/apt,150,7,2,0.05,1,0 +7703,30224269,Manhattan,Upper East Side,40.779070000000004,-73.95211,Entire home/apt,140,2,135,2.68,1,228 +7704,30232055,Bronx,Longwood,40.82209,-73.90086,Private room,80,1,2,0.32,1,255 +7705,2483427,Brooklyn,Crown Heights,40.66907,-73.94168,Entire home/apt,200,2,61,1.18,1,341 +7706,22627992,Brooklyn,Park Slope,40.676809999999996,-73.97535,Entire home/apt,450,6,12,0.24,1,2 +7707,27894798,Manhattan,East Harlem,40.79372,-73.94315999999999,Entire home/apt,200,30,0,,1,0 +7708,30242959,Manhattan,Harlem,40.82682,-73.94634,Private room,116,2,129,2.5,1,89 +7709,4731948,Manhattan,Chinatown,40.71647,-73.99116,Entire home/apt,215,1,36,1.45,4,0 +7710,26328221,Manhattan,Harlem,40.82505,-73.95294,Entire home/apt,160,30,36,0.7,2,0 +7711,1409854,Manhattan,Upper East Side,40.77155,-73.94763,Private room,150,25,2,0.04,1,110 +7712,30280316,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92056,Private room,40,1,0,,1,0 +7713,7503643,Brooklyn,Greenpoint,40.72704,-73.94006999999999,Entire home/apt,149,30,7,0.15,52,335 +7714,30314132,Manhattan,Chinatown,40.715090000000004,-73.9967,Entire home/apt,65,5,108,2.1,1,0 +7715,580009,Brooklyn,Williamsburg,40.716029999999996,-73.94785,Entire home/apt,260,7,56,1.08,1,132 +7716,16245414,Brooklyn,Bushwick,40.694759999999995,-73.92359,Entire home/apt,400,1,2,0.04,4,179 +7717,3560299,Brooklyn,Williamsburg,40.71671,-73.95591,Private room,90,1,1,0.02,1,0 +7718,30346554,Queens,Astoria,40.76956,-73.91787,Private room,75,2,6,0.12,1,0 +7719,22534207,Manhattan,East Harlem,40.809059999999995,-73.93686,Private room,75,2,45,0.94,1,123 +7720,30354449,Manhattan,Upper East Side,40.771390000000004,-73.95766,Entire home/apt,110,1,3,0.07,1,0 +7721,24561040,Brooklyn,Park Slope,40.68018,-73.97596,Private room,115,2,153,3.0,3,0 +7722,30357478,Brooklyn,East Flatbush,40.65406,-73.9506,Private room,20,1,0,,1,0 +7723,8968224,Brooklyn,Bushwick,40.689170000000004,-73.91549,Private room,49,1,0,,1,0 +7724,30360956,Queens,Ridgewood,40.705729999999996,-73.89873,Private room,100,180,0,,1,266 +7725,13465396,Manhattan,East Village,40.72956,-73.98613,Entire home/apt,82,5,3,0.07,1,0 +7726,28252018,Manhattan,West Village,40.73379,-74.00421999999999,Private room,90,1,5,0.1,1,0 +7727,5541374,Brooklyn,Bushwick,40.68638,-73.91368,Private room,69,2,148,2.86,5,112 +7728,5541374,Brooklyn,Bushwick,40.6863,-73.91378,Private room,69,3,127,2.48,5,40 +7729,9898029,Brooklyn,East Flatbush,40.65041,-73.92574,Entire home/apt,249,3,10,0.65,5,156 +7730,5541374,Brooklyn,Bushwick,40.68691,-73.91317,Private room,89,3,116,2.24,5,83 +7731,5541374,Brooklyn,Bushwick,40.6864,-73.9133,Private room,159,3,30,0.59,5,254 +7732,2843970,Manhattan,Flatiron District,40.741209999999995,-73.98648,Entire home/apt,220,1,1,0.02,1,0 +7733,26440049,Brooklyn,Bushwick,40.70088,-73.91830999999999,Private room,95,3,12,0.25,1,0 +7734,4194830,Brooklyn,Williamsburg,40.71047,-73.95732,Private room,60,1,13,0.39,1,0 +7735,29408349,Manhattan,Chinatown,40.7149,-73.99976,Entire home/apt,179,5,7,0.14,1,0 +7736,8953823,Manhattan,Hell's Kitchen,40.76348,-73.99344,Private room,120,3,0,,1,0 +7737,2171626,Brooklyn,Williamsburg,40.71228,-73.96103000000001,Entire home/apt,275,5,0,,1,0 +7738,27378293,Manhattan,Harlem,40.82862,-73.94706,Private room,86,1,8,0.17,3,325 +7739,30382692,Brooklyn,Williamsburg,40.712509999999995,-73.9517,Private room,62,3,47,1.14,1,24 +7740,30418082,Manhattan,Upper East Side,40.77554,-73.95141,Entire home/apt,165,6,46,0.92,1,3 +7741,4267075,Brooklyn,Clinton Hill,40.684979999999996,-73.96618000000001,Entire home/apt,89,14,4,0.11,2,343 +7742,13347167,Manhattan,Upper East Side,40.7717,-73.95572,Entire home/apt,116,30,2,0.05,29,333 +7743,16437254,Brooklyn,Bedford-Stuyvesant,40.684490000000004,-73.95893000000001,Entire home/apt,172,30,6,0.14,21,221 +7744,30432695,Manhattan,Lower East Side,40.71832,-73.98325,Entire home/apt,125,7,11,0.22,1,20 +7745,30436731,Queens,Astoria,40.76279,-73.92039,Entire home/apt,90,2,16,0.31,1,0 +7746,26377263,Brooklyn,Borough Park,40.64032,-73.99728,Private room,50,30,0,,43,361 +7747,30475154,Manhattan,Upper West Side,40.77636,-73.98937,Entire home/apt,250,1,3,0.07,1,0 +7748,54255,Brooklyn,Bedford-Stuyvesant,40.68469,-73.93467,Entire home/apt,185,3,213,4.14,3,298 +7749,5309143,Bronx,Williamsbridge,40.87765,-73.86318,Entire home/apt,63,5,85,2.24,1,235 +7750,9893040,Manhattan,Chelsea,40.74302,-74.00015,Entire home/apt,163,3,12,0.24,1,0 +7751,30498160,Manhattan,Upper West Side,40.8034,-73.96831999999999,Shared room,40,1,0,,1,0 +7752,30500226,Manhattan,East Village,40.73182,-73.9845,Private room,195,5,19,0.37,1,178 +7753,28722667,Brooklyn,Flatlands,40.62345,-73.93001,Private room,89,1,68,1.31,3,365 +7754,9235481,Manhattan,Washington Heights,40.8538,-73.93196999999999,Shared room,45,2,2,0.04,2,0 +7755,18527346,Brooklyn,Prospect Heights,40.674170000000004,-73.96518,Private room,60,1,5,0.1,1,0 +7756,22087408,Manhattan,Lower East Side,40.71735,-73.98213,Private room,125,1,44,1.15,3,284 +7757,3311124,Manhattan,East Village,40.73172,-73.98874,Entire home/apt,220,2,0,,1,0 +7758,2533934,Brooklyn,Flatbush,40.64802,-73.96063000000001,Entire home/apt,85,2,11,0.78,1,0 +7759,20557884,Brooklyn,Williamsburg,40.70691,-73.9481,Entire home/apt,165,4,73,1.42,1,237 +7760,436365,Manhattan,Upper East Side,40.76813,-73.95354,Entire home/apt,144,7,17,0.35,3,0 +7761,30554435,Brooklyn,Greenpoint,40.72684,-73.95628,Private room,75,1,0,,1,0 +7762,21364540,Brooklyn,Williamsburg,40.70217,-73.93737,Private room,60,4,3,0.09,2,25 +7763,4291007,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9598,Private room,95,30,40,0.8,11,331 +7764,4291007,Brooklyn,Bedford-Stuyvesant,40.69442,-73.96016,Private room,95,30,53,1.05,11,201 +7765,4291007,Brooklyn,Clinton Hill,40.69344,-73.96153000000001,Private room,95,30,46,0.9,11,317 +7766,4291007,Brooklyn,Bedford-Stuyvesant,40.69498,-73.96002,Private room,95,30,35,0.69,11,340 +7767,4291007,Brooklyn,Clinton Hill,40.69292,-73.96151,Private room,95,30,43,0.84,11,312 +7768,30585124,Bronx,Longwood,40.81935,-73.90772,Private room,65,5,15,0.69,2,150 +7769,18014128,Staten Island,Great Kills,40.5517,-74.14636,Entire home/apt,65,5,62,1.22,1,336 +7770,29739883,Brooklyn,Greenpoint,40.72232,-73.9434,Entire home/apt,110,2,248,4.82,2,1 +7771,10859726,Queens,Astoria,40.77093,-73.93290999999999,Private room,47,5,7,0.13,3,236 +7772,30606207,Queens,Ditmars Steinway,40.778420000000004,-73.92549,Private room,175,30,5,0.31,1,283 +7773,8201914,Brooklyn,Williamsburg,40.711240000000004,-73.95255999999999,Entire home/apt,234,4,11,0.23,1,0 +7774,26554386,Brooklyn,Prospect-Lefferts Gardens,40.655159999999995,-73.95881999999999,Entire home/apt,105,14,43,0.83,1,319 +7775,30616879,Queens,Flushing,40.754,-73.80700999999999,Private room,47,2,40,0.81,3,311 +7776,30616879,Queens,Flushing,40.76173,-73.80767,Private room,55,2,55,1.12,3,342 +7777,17266994,Manhattan,Harlem,40.807959999999994,-73.95623,Entire home/apt,146,5,67,2.17,2,239 +7778,6319915,Staten Island,St. George,40.64567,-74.08368,Entire home/apt,60,4,118,2.54,2,17 +7779,30656279,Manhattan,Hell's Kitchen,40.767990000000005,-73.98644,Private room,61,12,31,0.6,4,102 +7780,30616009,Manhattan,Chinatown,40.71758,-73.99201,Private room,84,1,2,0.08,1,2 +7781,766580,Manhattan,East Harlem,40.78935,-73.94788,Entire home/apt,179,2,55,1.06,1,185 +7782,30665412,Queens,Astoria,40.76384,-73.92023,Private room,100,1,0,,1,365 +7783,30667498,Brooklyn,Greenpoint,40.724920000000004,-73.95097,Entire home/apt,175,1,1,0.02,1,0 +7784,30667653,Manhattan,Chelsea,40.74621,-73.99119,Entire home/apt,250,2,1,0.02,1,0 +7785,30667773,Manhattan,Kips Bay,40.74405,-73.97780999999999,Private room,150,1,0,,1,0 +7786,28187447,Brooklyn,Bedford-Stuyvesant,40.68336,-73.91449,Entire home/apt,83,3,57,1.13,2,264 +7787,9053876,Brooklyn,Crown Heights,40.67768,-73.93682,Entire home/apt,105,1,59,1.15,2,213 +7788,30710562,Brooklyn,Greenpoint,40.7229,-73.94775,Entire home/apt,125,2,5,0.1,1,0 +7789,30719563,Brooklyn,Bedford-Stuyvesant,40.67953,-73.95136,Private room,150,7,12,0.25,1,0 +7790,2272846,Brooklyn,Williamsburg,40.71614,-73.95281999999999,Private room,69,30,16,0.45,2,225 +7791,7956482,Brooklyn,Bedford-Stuyvesant,40.68701,-73.95411999999999,Entire home/apt,190,2,1,0.04,1,0 +7792,4327985,Brooklyn,Williamsburg,40.71288,-73.94406,Private room,76,2,34,0.7,1,39 +7793,30731188,Brooklyn,Brooklyn Heights,40.69713,-73.99235,Private room,45,120,0,,1,146 +7794,2938204,Manhattan,SoHo,40.72741,-74.00178000000001,Private room,142,5,8,0.16,1,188 +7795,2588808,Manhattan,Hell's Kitchen,40.76115,-73.98706999999999,Entire home/apt,125,7,4,0.08,1,0 +7796,410962,Manhattan,Hell's Kitchen,40.767379999999996,-73.98465999999999,Entire home/apt,200,3,14,0.32,1,9 +7797,1177497,Brooklyn,Clinton Hill,40.68963,-73.96713000000001,Private room,259,1,94,1.85,11,365 +7798,30768511,Brooklyn,Park Slope,40.676159999999996,-73.97418,Entire home/apt,275,5,1,0.03,1,0 +7799,557157,Manhattan,NoHo,40.72951,-73.99203,Entire home/apt,179,1,28,0.54,1,0 +7800,30430827,Brooklyn,Fort Greene,40.69634,-73.97296,Private room,70,1,152,3.02,1,249 +7801,30775529,Manhattan,East Village,40.73101,-73.99087,Private room,300,2,0,,1,0 +7802,28362995,Manhattan,Hell's Kitchen,40.76042,-73.99021,Entire home/apt,300,3,0,,1,0 +7803,24982374,Brooklyn,Clinton Hill,40.693540000000006,-73.96152,Entire home/apt,259,2,99,3.07,1,296 +7804,23116198,Manhattan,Harlem,40.828959999999995,-73.94059,Private room,50,1,0,,1,0 +7805,30803097,Manhattan,West Village,40.72934,-74.00276,Entire home/apt,300,2,6,0.27,1,0 +7806,4461578,Brooklyn,Park Slope,40.6748,-73.97736,Entire home/apt,95,3,4,0.08,1,270 +7807,1407676,Brooklyn,Williamsburg,40.71604,-73.9589,Private room,132,1,143,2.99,4,273 +7808,28846474,Queens,Long Island City,40.7477,-73.94438000000001,Private room,80,4,3,0.06,1,0 +7809,30824695,Manhattan,Upper East Side,40.7817,-73.94613000000001,Private room,85,3,3,0.09,1,0 +7810,14152383,Brooklyn,Gowanus,40.6777,-73.99126,Entire home/apt,246,4,0,,1,0 +7811,30839692,Queens,Flushing,40.755179999999996,-73.80422,Private room,50,1,154,3.05,3,243 +7812,2862308,Brooklyn,Greenpoint,40.72777,-73.95231,Entire home/apt,75,2,6,0.14,1,0 +7813,30836013,Manhattan,Gramercy,40.73536,-73.98393,Entire home/apt,209,30,27,0.53,1,197 +7814,1679702,Manhattan,NoHo,40.72634,-73.9932,Entire home/apt,330,2,4,0.08,1,0 +7815,2981156,Queens,Long Island City,40.7618,-73.92728000000001,Shared room,55,1,26,0.55,2,84 +7816,18002339,Manhattan,Upper West Side,40.79788,-73.9618,Private room,60,7,1,0.02,1,0 +7817,17300177,Brooklyn,Williamsburg,40.70965,-73.96817,Entire home/apt,180,30,4,0.13,1,13 +7818,27796188,Manhattan,Harlem,40.809470000000005,-73.95392,Entire home/apt,300,2,60,1.18,2,198 +7819,30865924,Manhattan,Inwood,40.87093,-73.91736999999999,Entire home/apt,175,3,6,0.13,1,0 +7820,11237515,Manhattan,Harlem,40.82335,-73.94887,Private room,100,3,4,0.08,1,358 +7821,30909882,Brooklyn,Greenpoint,40.72102,-73.94808,Entire home/apt,175,5,21,0.41,1,0 +7822,30918671,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.95222,Private room,60,1,0,,1,0 +7823,5449480,Brooklyn,Fort Greene,40.691340000000004,-73.97229,Entire home/apt,175,10,1,0.03,1,189 +7824,30454464,Manhattan,Chelsea,40.747170000000004,-73.99179000000001,Private room,105,1,158,3.08,1,105 +7825,1566167,Brooklyn,Kensington,40.63555,-73.97151,Entire home/apt,49,5,21,0.42,1,34 +7826,4308068,Brooklyn,Bushwick,40.699040000000004,-73.91282,Private room,65,2,37,0.78,1,0 +7827,29278028,Manhattan,Upper East Side,40.77635,-73.95616,Entire home/apt,450,5,37,0.86,4,108 +7828,3912042,Manhattan,Upper West Side,40.79092,-73.97426,Entire home/apt,185,3,59,1.17,1,4 +7829,31040344,Brooklyn,Bedford-Stuyvesant,40.684020000000004,-73.95176,Private room,57,2,104,2.33,1,0 +7830,7039396,Brooklyn,Cypress Hills,40.68085,-73.88895,Entire home/apt,79,1,91,1.81,2,255 +7831,31074353,Brooklyn,South Slope,40.66923,-73.98714,Entire home/apt,218,2,137,2.79,1,250 +7832,914838,Manhattan,Hell's Kitchen,40.757090000000005,-73.99545,Entire home/apt,70,30,11,0.23,7,333 +7833,12411178,Brooklyn,Red Hook,40.67477,-74.01046,Entire home/apt,350,2,71,1.45,1,287 +7834,31102831,Brooklyn,Boerum Hill,40.68401,-73.98521,Private room,100,4,120,2.36,1,22 +7835,31108509,Brooklyn,Borough Park,40.6409,-73.99891,Entire home/apt,150,3,51,1.07,1,180 +7836,429305,Queens,Ridgewood,40.709140000000005,-73.90737,Entire home/apt,45,4,0,,1,0 +7837,22388424,Queens,Ridgewood,40.703990000000005,-73.91195,Private room,46,4,17,0.39,2,262 +7838,2537749,Brooklyn,Fort Greene,40.6942,-73.97104,Private room,50,1,2,0.06,1,0 +7839,4562182,Manhattan,Harlem,40.815059999999995,-73.94851,Entire home/apt,285,30,74,1.47,4,284 +7840,5574620,Brooklyn,Crown Heights,40.67215,-73.95753,Entire home/apt,220,2,5,0.1,1,0 +7841,4198853,Manhattan,Lower East Side,40.717690000000005,-73.98801,Private room,125,1,1,0.02,1,0 +7842,4714927,Manhattan,East Harlem,40.79155,-73.94745999999999,Private room,80,1,70,1.36,4,102 +7843,10859726,Queens,Astoria,40.7701,-73.93219,Private room,58,1,2,0.04,3,249 +7844,31150792,Brooklyn,Bushwick,40.69709,-73.93538000000001,Entire home/apt,100,2,143,3.41,1,0 +7845,2787900,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94662,Entire home/apt,175,2,42,0.82,1,0 +7846,23708009,Manhattan,Upper East Side,40.78155,-73.95175,Entire home/apt,1200,5,43,0.9,1,309 +7847,4266202,Queens,Astoria,40.76105,-73.92068,Private room,60,2,0,,1,0 +7848,27175572,Brooklyn,Prospect Heights,40.67949,-73.97171999999999,Entire home/apt,160,2,105,2.05,1,18 +7849,20109767,Manhattan,Harlem,40.82846,-73.94492,Private room,65,1,6,0.12,1,341 +7850,28720717,Manhattan,East Village,40.73235,-73.98646,Entire home/apt,499,30,11,0.52,2,332 +7851,14477996,Manhattan,SoHo,40.72703,-74.00286,Entire home/apt,350,2,10,0.2,1,0 +7852,31175000,Brooklyn,Bedford-Stuyvesant,40.68459,-73.93985,Entire home/apt,105,2,127,3.88,3,113 +7853,31177258,Brooklyn,Williamsburg,40.71151,-73.95339,Entire home/apt,245,5,32,0.63,1,305 +7854,23044811,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94358000000001,Entire home/apt,139,2,119,2.31,2,175 +7855,31181172,Manhattan,Harlem,40.82442,-73.95203000000001,Private room,50,20,9,0.24,1,300 +7856,31182668,Manhattan,Kips Bay,40.74349,-73.97577,Private room,90,5,0,,1,0 +7857,31183039,Queens,Jackson Heights,40.749359999999996,-73.88698000000001,Entire home/apt,90,7,2,0.04,1,0 +7858,28429835,Manhattan,East Village,40.72753,-73.98749000000001,Private room,250,1,1,0.02,1,0 +7859,6527023,Brooklyn,Sunset Park,40.66343,-73.99324,Private room,70,4,1,0.02,1,0 +7860,25796636,Manhattan,East Village,40.72425,-73.98866,Entire home/apt,150,1,44,0.91,1,0 +7861,13917722,Manhattan,Theater District,40.76164,-73.98594,Private room,150,1,0,,1,0 +7862,31175000,Brooklyn,Bedford-Stuyvesant,40.684459999999994,-73.93956,Entire home/apt,109,3,79,2.07,3,0 +7863,820011,Manhattan,East Village,40.726459999999996,-73.98685,Entire home/apt,140,7,59,1.17,1,268 +7864,8636732,Brooklyn,Flatbush,40.636759999999995,-73.96713000000001,Private room,31,10,1,0.02,2,0 +7865,25237492,Manhattan,Washington Heights,40.84245,-73.93918000000001,Entire home/apt,140,30,8,0.17,34,312 +7866,31241183,Manhattan,Washington Heights,40.83741,-73.93928000000001,Private room,65,2,36,0.74,2,273 +7867,31245355,Manhattan,Harlem,40.809909999999995,-73.94058000000001,Entire home/apt,85,2,18,0.38,1,90 +7868,12154854,Brooklyn,Gowanus,40.67092,-73.98997,Private room,35,1,0,,1,0 +7869,28422099,Manhattan,Morningside Heights,40.81134,-73.95531,Entire home/apt,155,5,87,1.7,1,99 +7870,1511065,Brooklyn,Bedford-Stuyvesant,40.6825,-73.94709,Private room,65,1,0,,1,0 +7871,31260008,Brooklyn,Williamsburg,40.70532,-73.93868,Private room,100,5,0,,1,88 +7872,31274483,Manhattan,Washington Heights,40.83413,-73.94296999999999,Private room,100,1,0,,1,0 +7873,3372156,Manhattan,East Village,40.7254,-73.98854,Private room,125,3,2,0.04,1,0 +7874,22613302,Manhattan,Upper East Side,40.77793,-73.9602,Entire home/apt,170,5,2,0.04,1,0 +7875,2881,Brooklyn,Bedford-Stuyvesant,40.68242,-73.94774,Private room,65,2,280,5.51,2,249 +7876,31283971,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95237,Private room,38,3,1,0.05,1,0 +7877,31284832,Manhattan,Harlem,40.82875,-73.94371,Private room,68,2,0,,1,0 +7878,1257611,Brooklyn,Williamsburg,40.71192,-73.94161,Private room,110,2,4,0.08,1,0 +7879,4049004,Brooklyn,Bedford-Stuyvesant,40.68245,-73.91951,Entire home/apt,100,3,106,2.28,1,52 +7880,15635060,Manhattan,Washington Heights,40.84305,-73.94045,Entire home/apt,125,2,10,0.21,1,0 +7881,6396863,Manhattan,Theater District,40.762570000000004,-73.98574,Private room,60,1,1,0.02,1,0 +7882,20667334,Manhattan,West Village,40.73261,-74.00116,Private room,80,3,129,2.52,1,78 +7883,25237492,Manhattan,Washington Heights,40.84035,-73.94089,Entire home/apt,95,30,11,0.25,34,97 +7884,7256281,Manhattan,East Village,40.728159999999995,-73.98843000000001,Private room,163,2,396,7.71,1,143 +7885,23713669,Brooklyn,Prospect Heights,40.675540000000005,-73.96384,Entire home/apt,225,3,29,0.58,1,56 +7886,30354475,Manhattan,East Harlem,40.8124,-73.9347,Entire home/apt,150,2,0,,1,0 +7887,17199564,Brooklyn,Boerum Hill,40.686859999999996,-73.98231,Entire home/apt,170,10,2,0.04,1,0 +7888,31358851,Manhattan,Washington Heights,40.85882,-73.92896999999999,Entire home/apt,65,4,38,0.79,1,307 +7889,9745447,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95116,Private room,60,1,11,0.32,1,0 +7890,16458904,Manhattan,Murray Hill,40.74725,-73.97431,Entire home/apt,168,30,12,0.25,1,58 +7891,6475110,Brooklyn,Crown Heights,40.676520000000004,-73.96146999999999,Entire home/apt,100,2,3,0.09,1,0 +7892,6657363,Manhattan,Battery Park City,40.71111,-74.01567,Entire home/apt,195,7,0,,1,0 +7893,31204745,Queens,Arverne,40.589209999999994,-73.79479,Entire home/apt,89,2,150,3.0,1,268 +7894,3435092,Manhattan,Upper East Side,40.782340000000005,-73.94906999999999,Private room,109,4,191,3.75,3,243 +7895,31376201,Queens,Kew Gardens,40.70664,-73.83395,Private room,150,1,0,,3,365 +7896,31376201,Queens,Kew Gardens,40.7064,-73.83327,Private room,150,1,0,,3,363 +7897,11884842,Manhattan,Upper East Side,40.77727,-73.95089,Entire home/apt,150,2,0,,1,0 +7898,31389734,Manhattan,Greenwich Village,40.729659999999996,-73.99786999999999,Entire home/apt,120,4,1,0.02,1,0 +7899,16139880,Brooklyn,Bedford-Stuyvesant,40.67815,-73.91518,Private room,40,3,101,2.01,6,180 +7900,2119276,Manhattan,Gramercy,40.73342,-73.98545,Entire home/apt,150,30,10,0.21,39,67 +7901,9828418,Manhattan,Washington Heights,40.84411,-73.93764,Private room,45,2,3,0.07,1,0 +7902,8893700,Brooklyn,Sunset Park,40.66124,-73.99449,Entire home/apt,159,30,8,0.81,2,51 +7903,7809025,Manhattan,East Harlem,40.798159999999996,-73.94111,Entire home/apt,149,4,14,0.28,1,0 +7904,2568690,Queens,Astoria,40.75673,-73.9253,Entire home/apt,125,3,3,0.06,1,0 +7905,18874199,Brooklyn,Greenpoint,40.736290000000004,-73.95208000000001,Entire home/apt,75,1,27,0.53,1,0 +7906,3088202,Brooklyn,Carroll Gardens,40.68051,-73.99743000000001,Entire home/apt,109,4,6,0.12,1,0 +7907,10622869,Manhattan,Upper West Side,40.78826,-73.96767,Entire home/apt,499,1,19,0.38,1,296 +7908,1098902,Brooklyn,Park Slope,40.66955,-73.98174,Entire home/apt,480,3,0,,2,191 +7909,24561040,Brooklyn,Park Slope,40.67975,-73.97666,Private room,220,2,9,0.2,3,251 +7910,9897580,Brooklyn,Bedford-Stuyvesant,40.686690000000006,-73.93451999999999,Private room,55,3,51,1.0,1,340 +7911,31477675,Manhattan,Lower East Side,40.7208,-73.9867,Entire home/apt,341,3,138,2.87,1,58 +7912,31483029,Brooklyn,Greenpoint,40.72661,-73.95153,Entire home/apt,108,2,3,0.06,1,33 +7913,12811150,Brooklyn,Windsor Terrace,40.658879999999996,-73.98013,Entire home/apt,128,5,83,1.63,1,52 +7914,19810363,Bronx,Clason Point,40.8115,-73.85606999999999,Entire home/apt,110,2,95,1.91,1,283 +7915,17958459,Brooklyn,Williamsburg,40.714620000000004,-73.96309000000001,Entire home/apt,179,8,39,0.77,1,113 +7916,13934385,Manhattan,Upper West Side,40.77684,-73.97979000000001,Entire home/apt,175,5,2,0.04,1,0 +7917,3987736,Brooklyn,Bushwick,40.70069,-73.91114,Entire home/apt,80,5,8,0.16,1,0 +7918,21248779,Brooklyn,Crown Heights,40.67406,-73.95234,Entire home/apt,149,2,22,0.49,1,365 +7919,21940966,Manhattan,Morningside Heights,40.80465,-73.95827,Private room,50,2,7,0.15,2,191 +7920,31522185,Queens,Astoria,40.766020000000005,-73.91741999999999,Shared room,75,5,4,0.08,1,0 +7921,6600505,Manhattan,Financial District,40.70763,-74.00778000000001,Private room,100,3,24,0.48,2,186 +7922,23234988,Queens,Flushing,40.74896,-73.80715,Entire home/apt,369,2,74,1.46,6,256 +7923,12692690,Brooklyn,Brooklyn Heights,40.69384,-73.99261,Entire home/apt,198,7,7,0.14,1,4 +7924,31545214,Queens,Middle Village,40.72399,-73.87088,Private room,100,2,49,0.96,1,365 +7925,31425596,Manhattan,Upper West Side,40.78866,-73.97878,Entire home/apt,195,3,67,1.33,1,85 +7926,1820750,Manhattan,Lower East Side,40.720040000000004,-73.98895999999999,Entire home/apt,257,3,11,0.22,1,0 +7927,30214562,Queens,Jamaica Estates,40.723620000000004,-73.791,Entire home/apt,145,4,38,0.75,1,125 +7928,31555753,Manhattan,Upper West Side,40.80272,-73.96634,Private room,45,1,7,0.14,1,0 +7929,31534322,Queens,Long Island City,40.74637,-73.94615,Private room,60,2,83,1.65,4,81 +7930,8448216,Brooklyn,Red Hook,40.675290000000004,-74.0099,Entire home/apt,120,43,0,,1,0 +7931,1211856,Brooklyn,Prospect-Lefferts Gardens,40.6586,-73.96104,Private room,80,3,4,0.22,1,331 +7932,31594375,Brooklyn,Bedford-Stuyvesant,40.69962,-73.94102,Private room,85,1,0,,1,0 +7933,28023382,Brooklyn,Gowanus,40.684,-73.98859,Entire home/apt,99,1,183,3.74,1,196 +7934,31599293,Manhattan,Hell's Kitchen,40.757490000000004,-73.99656999999999,Entire home/apt,180,3,1,0.02,1,0 +7935,3250450,Queens,Jackson Heights,40.75181,-73.89064,Private room,40,25,1,0.1,18,364 +7936,4183050,Brooklyn,Williamsburg,40.7168,-73.94073,Private room,96,3,28,0.56,1,0 +7937,2798394,Manhattan,Harlem,40.80386,-73.95369000000001,Entire home/apt,105,4,9,0.18,1,0 +7938,31614694,Queens,Long Island City,40.76019,-73.92915,Entire home/apt,80,3,177,3.66,1,196 +7939,7271842,Manhattan,Washington Heights,40.83987,-73.94279,Entire home/apt,100,2,1,0.03,1,0 +7940,31621291,Brooklyn,Williamsburg,40.7058,-73.93803,Private room,58,1,270,5.29,2,83 +7941,26414016,Brooklyn,Williamsburg,40.7186,-73.95951,Private room,89,5,6,0.12,2,0 +7942,31626212,Manhattan,Theater District,40.75863,-73.98472,Private room,105,90,163,3.21,5,316 +7943,31629890,Manhattan,Lower East Side,40.717240000000004,-73.98546,Entire home/apt,85,1,0,,1,0 +7944,15763944,Brooklyn,Clinton Hill,40.690690000000004,-73.96043,Private room,68,3,2,0.11,1,0 +7945,6230173,Manhattan,Hell's Kitchen,40.76017,-73.99198,Entire home/apt,200,4,30,0.65,1,0 +7946,9107715,Manhattan,Upper East Side,40.775259999999996,-73.95075,Entire home/apt,170,5,26,0.55,1,115 +7947,182477,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96148000000001,Entire home/apt,60,5,9,0.19,1,0 +7948,4562182,Manhattan,Harlem,40.81128,-73.94646999999999,Entire home/apt,285,30,104,2.07,4,249 +7949,27289632,Manhattan,East Harlem,40.79842,-73.93549,Entire home/apt,90,3,138,2.74,1,71 +7950,31673092,Brooklyn,Crown Heights,40.67757,-73.94886,Entire home/apt,75,30,101,2.06,1,62 +7951,19661729,Queens,Jackson Heights,40.748979999999996,-73.88638,Entire home/apt,115,1,51,1.03,1,78 +7952,815619,Brooklyn,East Flatbush,40.64685,-73.95,Entire home/apt,118,30,1,0.02,1,68 +7953,946182,Brooklyn,Bedford-Stuyvesant,40.68582,-73.94230999999999,Private room,76,1,19,0.7,1,89 +7954,184833,Brooklyn,Greenpoint,40.72123,-73.95357,Entire home/apt,245,7,6,0.12,1,67 +7955,31678869,Manhattan,Harlem,40.8251,-73.93899,Private room,200,1,0,,1,0 +7956,2077383,Manhattan,Upper East Side,40.77724,-73.95883,Entire home/apt,75,3,3,0.06,1,0 +7957,7241674,Manhattan,Hell's Kitchen,40.76378,-73.98846999999999,Entire home/apt,200,6,24,0.7,1,188 +7958,1475015,Manhattan,Midtown,40.756209999999996,-73.96802,Entire home/apt,85,30,4,0.12,52,342 +7959,13920011,Brooklyn,Greenpoint,40.72987,-73.95296,Entire home/apt,350,5,11,0.23,1,12 +7960,30080463,Manhattan,Harlem,40.80226,-73.94976,Private room,101,3,65,1.28,1,138 +7961,10873558,Brooklyn,Gowanus,40.67743,-73.98464,Entire home/apt,110,2,0,,2,0 +7962,21327551,Manhattan,Nolita,40.72191,-73.99587,Private room,125,1,1,0.02,1,0 +7963,16923190,Manhattan,Lower East Side,40.71974,-73.98549,Private room,89,3,19,0.41,1,0 +7964,8164199,Manhattan,Midtown,40.751020000000004,-73.97447,Entire home/apt,180,1,0,,1,0 +7965,24216745,Brooklyn,Williamsburg,40.71482,-73.93863,Entire home/apt,120,30,1,0.05,1,128 +7966,31737002,Brooklyn,Gowanus,40.66928,-73.99019,Private room,50,5,0,,1,0 +7967,30787515,Manhattan,Midtown,40.76365,-73.98057,Entire home/apt,299,2,8,0.16,1,176 +7968,13525339,Manhattan,SoHo,40.72337,-73.99724,Entire home/apt,195,2,60,1.18,1,16 +7969,7655328,Manhattan,Greenwich Village,40.72923,-73.99949000000001,Private room,78,1,3,0.06,3,0 +7970,3035426,Manhattan,Chelsea,40.74089,-74.00180999999999,Entire home/apt,250,2,28,0.56,1,328 +7971,301346,Manhattan,Chelsea,40.75054,-73.99683,Entire home/apt,150,14,1,0.02,1,0 +7972,31796292,Manhattan,Upper East Side,40.777,-73.95253000000001,Entire home/apt,350,1,0,,1,0 +7973,29871437,Queens,Sunnyside,40.74315,-73.91733,Private room,78,3,113,2.23,1,285 +7974,3940516,Brooklyn,Crown Heights,40.67331,-73.95863,Private room,55,1,1,0.02,1,0 +7975,311608,Manhattan,SoHo,40.72716,-74.0032,Entire home/apt,300,10,7,2.04,1,239 +7976,21014758,Brooklyn,Bedford-Stuyvesant,40.68875,-73.92376999999999,Private room,38,2,39,0.86,3,99 +7977,6976808,Manhattan,SoHo,40.72708,-74.00055,Entire home/apt,150,5,36,0.71,1,0 +7978,15078552,Manhattan,Lower East Side,40.71869,-73.98281999999999,Private room,75,1,0,,1,0 +7979,31817441,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93305,Private room,52,2,1,0.02,1,0 +7980,6003040,Manhattan,Upper West Side,40.78926,-73.96989,Entire home/apt,198,2,161,3.21,1,252 +7981,6541721,Brooklyn,Sunset Park,40.64027,-74.01774,Private room,49,1,67,1.56,1,8 +7982,1978841,Manhattan,Upper West Side,40.79233,-73.9643,Entire home/apt,950,4,6,0.13,1,274 +7983,1613244,Manhattan,Lower East Side,40.72003,-73.98901,Entire home/apt,105,30,12,0.24,9,227 +7984,10529692,Manhattan,Kips Bay,40.74257,-73.98207,Entire home/apt,225,30,276,5.54,1,338 +7985,6984488,Brooklyn,Prospect Heights,40.67483,-73.9646,Private room,125,4,16,0.32,2,339 +7986,10520210,Brooklyn,Bedford-Stuyvesant,40.69315,-73.95998,Entire home/apt,110,2,19,0.44,1,0 +7987,31876574,Brooklyn,Crown Heights,40.667390000000005,-73.9501,Private room,44,1,1,0.02,1,0 +7988,9532490,Manhattan,East Village,40.73065,-73.98899,Shared room,77,2,57,1.13,3,311 +7989,1943161,Brooklyn,East Flatbush,40.649440000000006,-73.93375999999999,Entire home/apt,97,3,62,1.23,1,326 +7990,14796247,Brooklyn,Flatbush,40.64224,-73.96273000000001,Private room,45,5,59,1.46,4,247 +7991,21558108,Brooklyn,Williamsburg,40.711999999999996,-73.96666,Entire home/apt,157,1,1,0.02,1,0 +7992,608113,Brooklyn,Williamsburg,40.71059,-73.9506,Private room,80,4,1,0.02,1,0 +7993,26790498,Manhattan,Harlem,40.82366,-73.9461,Private room,50,3,1,0.07,1,0 +7994,31916657,Queens,East Elmhurst,40.76509,-73.877,Entire home/apt,275,3,96,1.9,1,333 +7995,15395133,Brooklyn,Clinton Hill,40.68732,-73.96654000000001,Private room,129,3,103,2.02,1,156 +7996,7573842,Manhattan,West Village,40.73405,-74.00283,Entire home/apt,250,3,1,0.03,1,0 +7997,18248926,Manhattan,Harlem,40.82434,-73.94816,Shared room,36,1,84,2.26,1,347 +7998,10154856,Manhattan,Hell's Kitchen,40.768809999999995,-73.98832,Entire home/apt,200,5,0,,1,0 +7999,7775447,Manhattan,Upper East Side,40.78073,-73.94976,Entire home/apt,185,1,4,0.08,1,0 +8000,31937844,Manhattan,Hell's Kitchen,40.763290000000005,-73.99554,Entire home/apt,130,1,2,0.04,1,0 +8001,23591164,Queens,East Elmhurst,40.76664,-73.87576999999999,Private room,65,1,466,9.16,4,331 +8002,31963371,Brooklyn,Williamsburg,40.71014,-73.96253,Entire home/apt,275,3,78,1.53,1,0 +8003,6090087,Manhattan,Upper East Side,40.772529999999996,-73.95789,Entire home/apt,120,1,9,0.18,1,0 +8004,886109,Manhattan,Lower East Side,40.721340000000005,-73.99104,Entire home/apt,180,2,25,0.51,1,200 +8005,25406101,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.96114,Entire home/apt,123,2,2,0.04,1,0 +8006,30906910,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94339000000001,Private room,750,1,0,,1,0 +8007,25228783,Manhattan,Upper West Side,40.778040000000004,-73.97610999999999,Entire home/apt,210,6,7,0.14,1,0 +8008,31997128,Manhattan,West Village,40.73905,-74.0014,Entire home/apt,139,3,4,0.08,1,0 +8009,32001723,Brooklyn,Bushwick,40.69505,-73.93160999999999,Shared room,45,1,1,0.02,1,0 +8010,15743117,Manhattan,Harlem,40.81192,-73.95239000000001,Private room,79,5,2,0.04,1,0 +8011,9773128,Brooklyn,Park Slope,40.66798,-73.9761,Entire home/apt,345,30,0,,1,156 +8012,3598306,Brooklyn,Fort Greene,40.69677,-73.97622,Private room,90,1,2,0.06,2,364 +8013,32007353,Queens,Ridgewood,40.708009999999994,-73.9011,Entire home/apt,150,2,65,1.32,1,171 +8014,10720264,Manhattan,Harlem,40.82135,-73.95521,Entire home/apt,75,500,0,,1,362 +8015,32011239,Manhattan,Gramercy,40.73556,-73.98679,Entire home/apt,200,2,14,0.28,1,0 +8016,31104121,Brooklyn,Clinton Hill,40.68678,-73.96044,Entire home/apt,100,3,127,2.62,1,290 +8017,32018795,Brooklyn,Crown Heights,40.66746,-73.96073,Private room,32,7,0,,1,0 +8018,32052000,Brooklyn,Manhattan Beach,40.5777,-73.93988,Private room,45,4,118,2.34,2,269 +8019,26819117,Manhattan,Kips Bay,40.74174,-73.97878,Private room,115,7,1,0.02,1,0 +8020,8826175,Bronx,Concourse,40.821220000000004,-73.92773000000001,Private room,56,2,132,2.61,3,52 +8021,14318669,Manhattan,Lower East Side,40.71526,-73.9867,Entire home/apt,210,2,44,1.16,1,0 +8022,1475015,Manhattan,Upper West Side,40.76877,-73.9846,Entire home/apt,87,30,3,0.1,52,275 +8023,32060911,Staten Island,West Brighton,40.63438,-74.11518000000001,Private room,40,30,6,0.12,2,354 +8024,10576263,Brooklyn,Crown Heights,40.67603,-73.95302,Private room,58,4,1,0.02,1,332 +8025,8389213,Brooklyn,Williamsburg,40.70778,-73.94953000000001,Entire home/apt,125,4,7,0.14,1,0 +8026,1912541,Brooklyn,Bushwick,40.68994,-73.92125,Entire home/apt,100,2,3,0.06,1,0 +8027,23593179,Brooklyn,Williamsburg,40.71998,-73.95838,Entire home/apt,195,2,3,0.06,1,0 +8028,5689587,Brooklyn,Williamsburg,40.71178,-73.95684,Entire home/apt,90,15,27,0.68,1,173 +8029,31241183,Manhattan,Washington Heights,40.837759999999996,-73.94086999999999,Private room,65,2,43,0.85,2,279 +8030,32083955,Brooklyn,Bedford-Stuyvesant,40.69542,-73.9497,Private room,100,14,0,,1,123 +8031,3341690,Manhattan,Upper West Side,40.80121,-73.96163,Entire home/apt,200,31,2,0.04,1,212 +8032,32092775,Manhattan,Chinatown,40.71546,-73.99226,Private room,75,4,23,0.45,1,212 +8033,32096696,Manhattan,Upper West Side,40.77901,-73.97596,Entire home/apt,220,1,4,0.08,1,0 +8034,1811344,Brooklyn,Greenpoint,40.731629999999996,-73.95434,Entire home/apt,225,3,1,0.02,1,0 +8035,32117091,Brooklyn,Williamsburg,40.70776,-73.95886,Entire home/apt,163,30,37,0.74,1,186 +8036,14600914,Brooklyn,Williamsburg,40.71371,-73.95433,Private room,85,1,118,2.38,1,327 +8037,10618197,Queens,Ditmars Steinway,40.7802,-73.90913,Entire home/apt,150,7,1,0.02,1,0 +8038,31621291,Brooklyn,Williamsburg,40.70472,-73.93784000000001,Shared room,38,1,236,4.63,2,56 +8039,32135311,Manhattan,Inwood,40.85901,-73.92874,Entire home/apt,79,4,4,0.09,1,0 +8040,26908204,Brooklyn,Crown Heights,40.66356,-73.95666999999999,Entire home/apt,90,4,59,1.17,1,28 +8041,10014644,Brooklyn,Park Slope,40.6681,-73.98319000000001,Private room,100,3,97,1.91,2,300 +8042,1613244,Manhattan,Lower East Side,40.72182,-73.99263,Entire home/apt,99,30,8,0.17,9,197 +8043,1245722,Brooklyn,Williamsburg,40.71776,-73.94538,Entire home/apt,200,3,30,0.65,1,364 +8044,31877774,Manhattan,Upper West Side,40.778890000000004,-73.98155,Entire home/apt,190,2,1,0.02,1,0 +8045,10418386,Manhattan,Upper West Side,40.79422,-73.97565,Private room,90,7,0,,1,0 +8046,32155871,Manhattan,Morningside Heights,40.81143,-73.95987,Private room,60,1,0,,1,0 +8047,32158960,Manhattan,Washington Heights,40.83562,-73.94581,Private room,90,1,0,,1,0 +8048,9671470,Manhattan,Harlem,40.81422,-73.95199000000001,Private room,75,2,129,3.01,2,6 +8049,15498912,Manhattan,Washington Heights,40.856770000000004,-73.93715,Private room,70,3,14,0.3,1,0 +8050,32195844,Manhattan,Upper East Side,40.784279999999995,-73.94872,Private room,85,4,1,0.02,1,0 +8051,14772147,Brooklyn,Williamsburg,40.71295,-73.93715999999999,Private room,50,4,2,0.04,1,0 +8052,32197200,Manhattan,East Harlem,40.79614,-73.93786999999999,Entire home/apt,130,2,34,0.69,1,0 +8053,32199364,Manhattan,Harlem,40.80686,-73.9554,Entire home/apt,199,1,0,,1,0 +8054,7894614,Manhattan,Gramercy,40.73697,-73.98074,Entire home/apt,150,7,5,0.1,1,0 +8055,319077,Brooklyn,Clinton Hill,40.685559999999995,-73.96238000000001,Entire home/apt,750,1,15,0.34,4,364 +8056,12422467,Brooklyn,Bedford-Stuyvesant,40.689009999999996,-73.94054,Private room,80,1,0,,1,0 +8057,26811311,Brooklyn,Williamsburg,40.70431,-73.94528000000001,Shared room,62,2,45,0.9,1,325 +8058,16970067,Brooklyn,Williamsburg,40.7137,-73.94214000000001,Private room,105,14,0,,1,0 +8059,31617949,Manhattan,East Village,40.72551,-73.97893,Entire home/apt,250,30,25,0.51,1,0 +8060,770004,Brooklyn,Clinton Hill,40.68346,-73.96264000000001,Entire home/apt,350,1,2,0.04,1,0 +8061,31675601,Brooklyn,Bay Ridge,40.62672,-74.02802,Private room,65,30,56,1.14,4,208 +8062,1613244,Manhattan,Nolita,40.723420000000004,-73.99292,Entire home/apt,95,30,13,0.27,9,137 +8063,32279718,Queens,Long Island City,40.74253,-73.9549,Entire home/apt,153,4,77,1.62,1,252 +8064,150832,Brooklyn,Williamsburg,40.71479,-73.96048,Entire home/apt,150,4,95,1.88,1,0 +8065,7702854,Manhattan,Lower East Side,40.72014,-73.99268000000001,Entire home/apt,280,3,46,3.17,1,64 +8066,19682564,Manhattan,Upper West Side,40.80301,-73.96644,Private room,70,4,2,0.04,1,0 +8067,19007308,Manhattan,Harlem,40.823370000000004,-73.94529,Entire home/apt,155,5,22,0.44,1,362 +8068,909577,Brooklyn,Williamsburg,40.714,-73.96253,Private room,71,2,162,3.18,3,332 +8069,29167335,Manhattan,Midtown,40.755309999999994,-73.96600000000001,Entire home/apt,182,4,51,1.03,2,317 +8070,32295605,Manhattan,Upper East Side,40.76449,-73.96169,Private room,105,3,75,1.57,1,338 +8071,6089159,Manhattan,Upper West Side,40.78302,-73.98057,Entire home/apt,100,14,3,0.13,1,205 +8072,26595479,Brooklyn,Bedford-Stuyvesant,40.67998,-73.9452,Private room,45,1,0,,1,0 +8073,23548583,Brooklyn,East Flatbush,40.65336,-73.94345,Entire home/apt,109,30,23,0.46,2,188 +8074,36119,Brooklyn,Clinton Hill,40.68465,-73.96051,Entire home/apt,95,14,3,0.08,1,0 +8075,31675601,Brooklyn,Bay Ridge,40.626740000000005,-74.02996,Private room,65,30,67,1.31,4,252 +8076,32340523,Manhattan,Murray Hill,40.74409,-73.97145,Entire home/apt,250,1,0,,1,0 +8077,32345728,Brooklyn,Williamsburg,40.70834,-73.96646,Private room,60,2,0,,1,339 +8078,4422415,Manhattan,Upper East Side,40.7755,-73.9475,Private room,130,1,1,0.02,2,364 +8079,32347526,Manhattan,East Harlem,40.79445,-73.93307,Entire home/apt,120,3,116,2.29,1,231 +8080,13324888,Queens,Astoria,40.77262,-73.92364,Entire home/apt,200,7,2,0.04,1,0 +8081,16419236,Manhattan,Upper West Side,40.78078,-73.97466,Entire home/apt,190,2,2,0.04,1,21 +8082,32365131,Brooklyn,Brighton Beach,40.58148,-73.96696,Private room,129,3,0,,1,365 +8083,32305413,Brooklyn,Prospect Heights,40.675540000000005,-73.96835,Private room,85,1,156,3.11,1,150 +8084,25689357,Brooklyn,Bedford-Stuyvesant,40.681999999999995,-73.92246,Entire home/apt,125,3,165,3.27,1,249 +8085,32374510,Manhattan,Hell's Kitchen,40.76497,-73.9933,Entire home/apt,175,1,0,,1,0 +8086,32384960,Brooklyn,Cypress Hills,40.68465,-73.8684,Entire home/apt,130,1,94,1.92,1,0 +8087,23290881,Brooklyn,Flatbush,40.649429999999995,-73.96245,Private room,70,3,121,2.63,1,341 +8088,32405588,Brooklyn,Williamsburg,40.71046,-73.96054000000001,Entire home/apt,184,10,1,0.03,2,6 +8089,32406934,Brooklyn,Bedford-Stuyvesant,40.67986,-73.94259,Private room,180,2,9,0.36,1,364 +8090,1892681,Brooklyn,South Slope,40.665859999999995,-73.97948000000001,Entire home/apt,100,1,183,5.17,1,1 +8091,17264040,Bronx,Mount Hope,40.84819,-73.90648,Entire home/apt,125,2,41,0.81,2,342 +8092,7290581,Brooklyn,Prospect Heights,40.678470000000004,-73.96694000000001,Entire home/apt,150,2,2,0.06,1,0 +8093,7038817,Manhattan,Harlem,40.80373,-73.95523,Entire home/apt,105,5,5,0.1,1,0 +8094,9922972,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93641,Private room,35,1,162,3.2,5,162 +8095,9922972,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93531999999999,Private room,30,1,163,3.21,5,134 +8096,9922972,Brooklyn,Bedford-Stuyvesant,40.68517,-73.9369,Private room,30,1,170,3.34,5,165 +8097,519483,Manhattan,East Village,40.72587,-73.98244,Entire home/apt,125,2,3,0.06,1,0 +8098,27428499,Brooklyn,Williamsburg,40.71475,-73.93782,Entire home/apt,190,2,1,0.02,1,0 +8099,30586356,Manhattan,Washington Heights,40.85475,-73.93372,Shared room,95,1,36,3.03,1,27 +8100,4336757,Brooklyn,Williamsburg,40.71905,-73.93905,Private room,55,3,4,0.08,1,0 +8101,32443084,Manhattan,Upper East Side,40.762879999999996,-73.96084,Entire home/apt,130,3,2,0.04,1,0 +8102,32445083,Bronx,Longwood,40.828829999999996,-73.88854,Entire home/apt,119,4,48,0.98,1,223 +8103,18418581,Manhattan,Washington Heights,40.85228,-73.93498000000001,Private room,67,1,297,5.92,3,271 +8104,14614459,Manhattan,Upper East Side,40.78354,-73.94699,Private room,90,5,4,0.08,4,0 +8105,31914305,Manhattan,Morningside Heights,40.80461,-73.96401,Private room,60,1,0,,1,0 +8106,6493905,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95402,Entire home/apt,199,3,10,0.2,1,0 +8107,32479008,Brooklyn,Park Slope,40.66936,-73.98116,Entire home/apt,150,7,47,0.96,1,291 +8108,32482524,Brooklyn,Williamsburg,40.714940000000006,-73.95472,Private room,115,3,40,2.8,1,18 +8109,8095903,Manhattan,Harlem,40.829029999999996,-73.94123,Entire home/apt,100,1,2,0.04,1,0 +8110,11189753,Brooklyn,Fort Greene,40.68698,-73.97097,Entire home/apt,165,6,30,0.59,4,0 +8111,17264040,Bronx,Mount Hope,40.84626,-73.90473,Entire home/apt,105,2,80,1.66,2,365 +8112,11757212,Brooklyn,Bushwick,40.69755,-73.92748,Private room,49,1,170,3.36,4,356 +8113,1856829,Brooklyn,Fort Greene,40.685590000000005,-73.96932,Entire home/apt,100,2,1,0.02,1,0 +8114,32517582,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95642,Private room,94,1,46,1.81,1,72 +8115,31405259,Manhattan,East Village,40.72745,-73.98362,Private room,75,6,3,0.06,1,0 +8116,11131161,Brooklyn,Crown Heights,40.67822,-73.96069,Private room,60,7,0,,1,0 +8117,32527193,Manhattan,Upper West Side,40.778940000000006,-73.98099,Entire home/apt,322,4,89,1.76,1,76 +8118,1197823,Brooklyn,Williamsburg,40.70839,-73.94538,Private room,119,3,126,2.49,2,0 +8119,32537024,Brooklyn,Williamsburg,40.712340000000005,-73.94085,Entire home/apt,100,30,63,1.25,1,321 +8120,32537929,Manhattan,Upper West Side,40.80146,-73.96132,Private room,50,2,0,,1,0 +8121,4153233,Manhattan,Washington Heights,40.85457,-73.94062,Private room,90,2,2,0.08,2,0 +8122,4582357,Manhattan,Chelsea,40.738890000000005,-73.99749,Private room,150,1,1,0.02,1,0 +8123,405555,Manhattan,Theater District,40.76295,-73.98435,Entire home/apt,230,1,1,0.02,1,0 +8124,15743237,Queens,Forest Hills,40.71448,-73.85285999999999,Private room,59,1,2,0.04,2,0 +8125,32304586,Manhattan,East Harlem,40.79115,-73.94663,Private room,90,3,95,1.88,1,175 +8126,1190853,Manhattan,Lower East Side,40.7175,-73.98435,Private room,95,2,247,4.87,1,60 +8127,7322303,Brooklyn,Williamsburg,40.71335,-73.95789,Private room,75,45,0,,1,92 +8128,32576167,Manhattan,Midtown,40.75179,-73.98606,Private room,85,1,0,,1,0 +8129,32800,Brooklyn,Bedford-Stuyvesant,40.68739,-73.94859,Entire home/apt,85,10,4,0.08,1,0 +8130,9524360,Brooklyn,Williamsburg,40.7137,-73.93734,Entire home/apt,150,3,139,2.74,2,238 +8131,32582256,Manhattan,Hell's Kitchen,40.75546,-73.99701,Entire home/apt,189,5,9,0.25,2,0 +8132,32582256,Manhattan,Hell's Kitchen,40.75691,-73.9984,Private room,99,2,35,0.69,2,28 +8133,25915648,Queens,Flushing,40.755320000000005,-73.8206,Private room,41,2,151,3.09,2,0 +8134,233161,Brooklyn,Windsor Terrace,40.65246,-73.97369,Entire home/apt,150,6,0,,1,0 +8135,32583105,Manhattan,Upper East Side,40.77867,-73.95121,Private room,90,1,75,1.49,1,359 +8136,25915648,Queens,Flushing,40.75717,-73.82004,Private room,37,2,128,2.53,2,20 +8137,1118139,Manhattan,Tribeca,40.712959999999995,-74.00981999999999,Entire home/apt,300,1,0,,1,0 +8138,3773133,Brooklyn,Williamsburg,40.7207,-73.96217,Private room,380,1,1,0.02,1,0 +8139,32596841,Brooklyn,Crown Heights,40.67905,-73.95612,Private room,75,1,0,,2,0 +8140,4248868,Manhattan,West Village,40.736740000000005,-74.00832,Entire home/apt,200,1,0,,1,0 +8141,3759052,Manhattan,East Harlem,40.7882,-73.94762,Private room,50,3,5,0.13,1,188 +8142,32608639,Brooklyn,Williamsburg,40.71544,-73.95551999999999,Entire home/apt,225,3,24,0.47,1,17 +8143,3764548,Manhattan,Upper East Side,40.78042,-73.95128000000001,Entire home/apt,150,14,2,0.04,1,0 +8144,29111260,Brooklyn,Bedford-Stuyvesant,40.69148,-73.9388,Private room,55,1,2,0.05,1,0 +8145,9742010,Manhattan,Upper West Side,40.78203,-73.97644,Private room,175,2,0,,1,0 +8146,3603806,Manhattan,Upper West Side,40.7722,-73.98119,Entire home/apt,276,4,46,1.15,1,9 +8147,41612,Brooklyn,Carroll Gardens,40.67678,-73.99708000000001,Private room,45,2,0,,1,0 +8148,7474069,Manhattan,Washington Heights,40.84656,-73.94143000000001,Entire home/apt,199,1,39,0.89,3,192 +8149,20559017,Manhattan,East Harlem,40.78709,-73.94423,Private room,48,30,4,0.15,9,341 +8150,8726203,Brooklyn,Bushwick,40.70451,-73.92685,Entire home/apt,145,3,99,1.97,1,327 +8151,32678605,Brooklyn,Bushwick,40.697559999999996,-73.92209,Private room,100,1,0,,1,0 +8152,1771148,Brooklyn,Crown Heights,40.678090000000005,-73.95903,Private room,62,4,12,0.24,1,0 +8153,4405241,Manhattan,East Village,40.731120000000004,-73.98364000000001,Entire home/apt,230,6,6,0.13,1,0 +8154,27054429,Manhattan,Two Bridges,40.71063,-73.99526,Private room,90,10,133,2.64,1,81 +8155,32142173,Brooklyn,Sheepshead Bay,40.58662,-73.94263000000001,Entire home/apt,83,3,29,0.58,1,227 +8156,612221,Brooklyn,Fort Greene,40.686479999999996,-73.97525,Entire home/apt,120,1,7,0.17,1,239 +8157,31675601,Brooklyn,Bay Ridge,40.62449,-74.02977,Private room,65,30,57,1.13,4,307 +8158,20565470,Brooklyn,Williamsburg,40.71859,-73.95598000000001,Entire home/apt,140,3,2,0.04,1,0 +8159,987621,Brooklyn,Williamsburg,40.70792,-73.94274,Private room,80,1,2,0.04,1,0 +8160,931790,Brooklyn,Kensington,40.638220000000004,-73.97123,Entire home/apt,75,1,0,,1,0 +8161,7189415,Manhattan,Upper East Side,40.77357,-73.95193,Entire home/apt,300,1,0,,1,0 +8162,28980092,Brooklyn,Williamsburg,40.71075,-73.95168000000001,Private room,110,1,0,,1,0 +8163,32722063,Brooklyn,East Flatbush,40.65263,-73.93215,Entire home/apt,85,2,182,3.59,2,318 +8164,2563284,Manhattan,East Village,40.72232,-73.98289,Entire home/apt,120,3,6,0.12,1,0 +8165,32745492,Brooklyn,Sunset Park,40.66066,-73.99257,Entire home/apt,100,10,5,0.1,1,0 +8166,29854689,Brooklyn,Bushwick,40.69793,-73.92775,Private room,65,2,17,0.45,1,30 +8167,19575935,Brooklyn,Greenpoint,40.72469,-73.95099,Private room,80,1,2,0.05,1,0 +8168,4505274,Manhattan,Upper West Side,40.77468,-73.97966,Entire home/apt,299,7,3,0.06,1,0 +8169,655506,Manhattan,SoHo,40.7234,-73.99967,Entire home/apt,16,3,3,0.16,1,0 +8170,20451969,Brooklyn,Bushwick,40.69985,-73.94001,Private room,46,4,0,,1,0 +8171,31913986,Manhattan,West Village,40.73318,-74.00745,Entire home/apt,245,3,62,1.23,1,350 +8172,21211868,Brooklyn,Bedford-Stuyvesant,40.68728,-73.94104,Private room,55,5,1,0.02,1,0 +8173,18671223,Manhattan,Washington Heights,40.84773,-73.93346,Private room,45,1,1,0.02,1,0 +8174,32778868,Brooklyn,Cobble Hill,40.687490000000004,-73.99899,Entire home/apt,100,60,2,0.04,1,0 +8175,6283678,Brooklyn,Greenpoint,40.726659999999995,-73.94819,Entire home/apt,165,17,0,,1,0 +8176,2822805,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95111999999999,Private room,60,30,26,0.52,8,236 +8177,2822805,Brooklyn,Bedford-Stuyvesant,40.685629999999996,-73.94953000000001,Private room,60,30,23,0.48,8,244 +8178,10384362,Brooklyn,Williamsburg,40.716,-73.94666,Entire home/apt,140,2,7,0.14,1,0 +8179,1528333,Brooklyn,Clinton Hill,40.693220000000004,-73.96554,Entire home/apt,300,2,1,0.03,1,0 +8180,886705,Brooklyn,Williamsburg,40.717490000000005,-73.96525,Entire home/apt,249,2,4,0.08,1,0 +8181,309393,Brooklyn,Boerum Hill,40.68492,-73.97913,Entire home/apt,175,30,1,0.02,1,45 +8182,32798845,Brooklyn,Kensington,40.64345,-73.98258,Private room,35,1,0,,1,0 +8183,30494262,Brooklyn,Bushwick,40.70227,-73.92926,Private room,55,2,4,0.08,1,0 +8184,32826638,Brooklyn,Greenpoint,40.73284,-73.95822,Entire home/apt,135,3,2,0.04,1,0 +8185,4309521,Manhattan,Lower East Side,40.719590000000004,-73.98984,Private room,60,1,1,0.02,1,0 +8186,9864136,Manhattan,Kips Bay,40.74253,-73.98006,Private room,75,30,1,0.14,26,345 +8187,24874937,Manhattan,NoHo,40.72652,-73.99259,Entire home/apt,300,1,0,,1,0 +8188,3944633,Manhattan,Harlem,40.82782,-73.95155,Private room,79,1,0,,1,0 +8189,6844007,Brooklyn,Bedford-Stuyvesant,40.690529999999995,-73.95466,Private room,65,3,0,,1,0 +8190,3249903,Brooklyn,Flatbush,40.635979999999996,-73.95611,Private room,129,3,12,0.26,3,75 +8191,656798,Brooklyn,Bedford-Stuyvesant,40.680679999999995,-73.92874,Entire home/apt,280,3,152,3.01,1,274 +8192,13451939,Brooklyn,Bedford-Stuyvesant,40.683209999999995,-73.93666,Entire home/apt,132,3,120,2.37,2,214 +8193,1231888,Brooklyn,Park Slope,40.67173,-73.97724000000001,Private room,70,1,1,0.02,1,0 +8194,32865595,Brooklyn,Prospect-Lefferts Gardens,40.66083,-73.96247,Private room,52,1,26,0.52,3,332 +8195,28722667,Brooklyn,Flatlands,40.62536,-73.929,Private room,148,1,8,0.16,3,365 +8196,80447,Queens,Long Island City,40.7645,-73.93181,Entire home/apt,115,5,6,0.13,1,0 +8197,24070095,Manhattan,Upper East Side,40.77032,-73.96161,Entire home/apt,175,3,0,,1,0 +8198,32904968,Manhattan,Hell's Kitchen,40.75815,-73.99374,Shared room,130,1,0,,1,0 +8199,4157362,Brooklyn,Bedford-Stuyvesant,40.695640000000004,-73.93335,Private room,35,10,0,,1,0 +8200,3471761,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92347,Entire home/apt,109,5,2,0.04,2,0 +8201,23589288,Brooklyn,Bedford-Stuyvesant,40.68851,-73.9574,Private room,60,3,9,0.18,1,0 +8202,32922532,Manhattan,East Village,40.73069,-73.98515,Entire home/apt,150,3,107,2.16,1,99 +8203,32924122,Manhattan,West Village,40.73623,-74.00036,Entire home/apt,207,1,1,0.02,1,0 +8204,32924087,Manhattan,Washington Heights,40.8327,-73.94028,Shared room,63,1,2,0.04,2,0 +8205,241395,Manhattan,East Village,40.72526,-73.99201,Entire home/apt,185,3,10,0.21,1,275 +8206,29594719,Brooklyn,Carroll Gardens,40.6795,-73.99468,Entire home/apt,445,5,1,0.02,1,0 +8207,16152105,Manhattan,Washington Heights,40.8531,-73.94091,Entire home/apt,125,7,6,0.13,1,0 +8208,9922972,Brooklyn,Bedford-Stuyvesant,40.68497,-73.93669,Private room,35,1,174,3.45,5,153 +8209,27289127,Manhattan,West Village,40.740390000000005,-74.00665,Entire home/apt,200,5,3,0.06,1,0 +8210,31033526,Manhattan,Upper West Side,40.79466,-73.96623000000001,Entire home/apt,141,7,4,0.16,1,0 +8211,25697753,Manhattan,Morningside Heights,40.80692,-73.96434,Entire home/apt,120,4,2,0.04,1,0 +8212,8876603,Manhattan,Harlem,40.813559999999995,-73.94807,Entire home/apt,145,3,143,2.95,1,252 +8213,31626212,Manhattan,Theater District,40.75731,-73.98479,Private room,120,60,140,2.81,5,283 +8214,6319915,Staten Island,St. George,40.64524,-74.08326,Entire home/apt,89,4,129,2.57,2,25 +8215,32958503,Brooklyn,Bedford-Stuyvesant,40.686,-73.93793000000001,Entire home/apt,90,1,2,0.04,1,0 +8216,21725994,Brooklyn,Prospect-Lefferts Gardens,40.65597,-73.95806999999999,Entire home/apt,95,2,77,1.61,2,83 +8217,11127879,Brooklyn,Crown Heights,40.6726,-73.92859,Private room,120,1,0,,2,177 +8218,4194894,Manhattan,Nolita,40.721309999999995,-73.99429,Entire home/apt,295,2,94,1.98,2,272 +8219,32901759,Brooklyn,Crown Heights,40.6756,-73.92305,Entire home/apt,104,3,60,1.2,1,320 +8220,139311,Brooklyn,Boerum Hill,40.68363,-73.98011,Entire home/apt,150,2,63,1.26,1,0 +8221,27295569,Brooklyn,Brighton Beach,40.57679,-73.96016,Private room,75,1,127,2.54,2,247 +8222,32979427,Manhattan,East Village,40.72786,-73.988,Private room,170,5,0,,1,0 +8223,4365980,Manhattan,Gramercy,40.734809999999996,-73.98669,Entire home/apt,194,2,8,0.16,1,0 +8224,12459436,Queens,Flushing,40.736270000000005,-73.81305,Private room,49,15,0,,2,27 +8225,32992675,Brooklyn,Bedford-Stuyvesant,40.68351,-73.93224000000001,Entire home/apt,125,3,90,1.88,1,155 +8226,32991339,Brooklyn,Williamsburg,40.70841,-73.95496999999999,Private room,84,2,190,3.82,2,254 +8227,33000709,Manhattan,Harlem,40.81412,-73.95185,Entire home/apt,140,2,2,0.04,1,0 +8228,248865,Manhattan,Upper East Side,40.770720000000004,-73.95424,Private room,50,30,14,0.28,3,310 +8229,29893120,Manhattan,Tribeca,40.714659999999995,-74.00802,Private room,89,3,9,0.18,1,0 +8230,33037772,Brooklyn,Crown Heights,40.667559999999995,-73.95187,Private room,55,1,5,0.1,1,0 +8231,32865595,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.96083,Private room,62,1,54,1.1,3,343 +8232,32849197,Brooklyn,Fort Greene,40.68673,-73.97318,Entire home/apt,100,1,0,,1,0 +8233,14898658,Brooklyn,Kensington,40.64423,-73.98224,Private room,40,30,43,0.87,11,99 +8234,9680171,Brooklyn,Greenpoint,40.73148,-73.95929,Entire home/apt,350,3,1,0.02,1,0 +8235,2427529,Brooklyn,Clinton Hill,40.684090000000005,-73.96264000000001,Private room,75,1,0,,1,0 +8236,13275837,Manhattan,Greenwich Village,40.73109,-73.99410999999999,Entire home/apt,190,3,7,0.15,1,0 +8237,32846930,Manhattan,Nolita,40.72098,-73.99493000000001,Entire home/apt,350,1,0,,1,0 +8238,14087588,Manhattan,East Village,40.72514,-73.9896,Entire home/apt,300,1,1,0.03,1,0 +8239,1659891,Manhattan,West Village,40.73854,-74.00147,Entire home/apt,295,5,6,0.12,1,0 +8240,33063310,Manhattan,Kips Bay,40.73789,-73.97493,Private room,113,1,2,0.04,1,0 +8241,33064443,Manhattan,Flatiron District,40.741690000000006,-73.9933,Private room,95,3,1,0.04,1,0 +8242,33064599,Manhattan,Upper West Side,40.80168,-73.96543,Private room,59,3,68,1.42,6,319 +8243,33070890,Brooklyn,Flatbush,40.63025,-73.96555,Entire home/apt,100,28,0,,1,4 +8244,33074274,Manhattan,Harlem,40.80581,-73.95,Private room,69,6,40,0.8,2,329 +8245,10562062,Manhattan,East Village,40.722970000000004,-73.98604,Private room,190,2,1,0.02,1,0 +8246,8852945,Manhattan,East Village,40.72852,-73.9856,Private room,110,4,0,,1,0 +8247,33108060,Brooklyn,Flatlands,40.62276,-73.93289,Entire home/apt,65,14,1,0.02,1,0 +8248,20320155,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91156,Entire home/apt,185,1,69,1.4,1,309 +8249,31600563,Brooklyn,Park Slope,40.67194,-73.97247,Entire home/apt,152,3,1,0.02,1,0 +8250,33113275,Manhattan,East Village,40.72872,-73.98043,Entire home/apt,249,3,3,0.06,1,0 +8251,23975421,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94948000000001,Private room,100,1,0,,1,0 +8252,20156894,Manhattan,Harlem,40.80627,-73.94896,Private room,95,4,20,0.51,1,69 +8253,18762837,Manhattan,Upper West Side,40.79159,-73.97809000000001,Entire home/apt,130,2,3,0.06,1,0 +8254,33125859,Brooklyn,Prospect Heights,40.67758,-73.97239,Entire home/apt,145,3,18,0.37,1,0 +8255,5720429,Manhattan,Murray Hill,40.74853,-73.98192,Entire home/apt,325,1,66,1.33,1,67 +8256,33128992,Manhattan,Morningside Heights,40.814440000000005,-73.95863,Private room,75,1,1,0.02,1,0 +8257,33134899,Brooklyn,Bushwick,40.70146,-73.92792,Private room,37,1,1,0.02,1,0 +8258,3320288,Queens,Ridgewood,40.70365,-73.90351,Entire home/apt,75,1,52,1.78,1,317 +8259,16139880,Brooklyn,Bedford-Stuyvesant,40.67682,-73.91597,Private room,50,3,102,2.02,6,364 +8260,33138892,Queens,Long Island City,40.74725,-73.95669000000001,Entire home/apt,150,14,0,,1,0 +8261,3716641,Manhattan,Upper West Side,40.78185,-73.97844,Entire home/apt,99,30,13,0.27,8,140 +8262,28645487,Brooklyn,Bushwick,40.6952,-73.92396,Private room,50,4,11,0.48,1,0 +8263,33149697,Brooklyn,Williamsburg,40.720259999999996,-73.96110999999999,Private room,65,1,0,,1,0 +8264,33152462,Manhattan,Financial District,40.70778,-74.00685,Entire home/apt,150,1,9,0.18,1,0 +8265,14104449,Manhattan,Washington Heights,40.85111,-73.93325,Private room,88,2,48,0.97,1,122 +8266,3471132,Manhattan,Upper West Side,40.7966,-73.97154,Entire home/apt,190,4,8,0.16,1,0 +8267,7532832,Manhattan,Upper West Side,40.80066,-73.96941,Private room,125,1,1,0.02,1,0 +8268,32162351,Manhattan,East Village,40.72917,-73.98223,Entire home/apt,284,4,11,0.22,2,0 +8269,4358400,Manhattan,West Village,40.73707,-74.00524,Private room,150,1,1,0.02,1,0 +8270,33106693,Manhattan,Harlem,40.82159,-73.95013,Private room,16,2,43,1.66,3,154 +8271,6415669,Manhattan,Midtown,40.74832,-73.98814,Entire home/apt,190,6,0,,1,0 +8272,33166971,Brooklyn,Bushwick,40.6861,-73.91241,Private room,60,2,70,1.39,2,70 +8273,33182386,Manhattan,East Harlem,40.78775,-73.94891,Private room,99,4,49,0.97,1,97 +8274,2683773,Manhattan,Hell's Kitchen,40.765209999999996,-73.98776,Entire home/apt,100,3,63,1.25,1,7 +8275,33198779,Manhattan,Washington Heights,40.84064,-73.93727,Private room,35,1,4,0.08,1,0 +8276,33200237,Manhattan,Upper West Side,40.785759999999996,-73.97629,Entire home/apt,167,7,2,0.07,1,14 +8277,17450152,Manhattan,Hell's Kitchen,40.76525,-73.98895,Private room,140,1,159,3.17,5,249 +8278,26484511,Manhattan,Upper West Side,40.78293,-73.97667,Entire home/apt,175,3,4,0.08,1,0 +8279,11740479,Manhattan,Lower East Side,40.71818,-73.9935,Entire home/apt,249,1,6,0.12,1,0 +8280,6771594,Manhattan,Tribeca,40.719590000000004,-74.00429,Private room,110,1,0,,1,0 +8281,33212205,Manhattan,Midtown,40.75506,-73.96887,Entire home/apt,250,1,0,,1,0 +8282,33213436,Brooklyn,Gowanus,40.67883,-73.98406999999999,Private room,129,1,116,2.38,8,236 +8283,3867,Manhattan,Two Bridges,40.71213,-73.99661,Private room,95,1,92,2.4,2,47 +8284,26818265,Manhattan,Upper West Side,40.79745,-73.96916,Entire home/apt,280,1,1,0.02,1,0 +8285,33221872,Manhattan,Upper West Side,40.78587,-73.97180999999999,Entire home/apt,200,7,3,0.06,1,0 +8286,738918,Brooklyn,Park Slope,40.676190000000005,-73.97726,Entire home/apt,276,3,19,0.38,2,78 +8287,32203454,Manhattan,East Village,40.72378,-73.98385,Entire home/apt,130,3,26,0.51,1,0 +8288,33232851,Manhattan,Marble Hill,40.87494,-73.91056999999999,Entire home/apt,40,3,2,0.05,1,0 +8289,2321422,Queens,Astoria,40.76273,-73.91315999999999,Entire home/apt,122,6,0,,1,13 +8290,33234599,Manhattan,Kips Bay,40.74025,-73.98323,Private room,64,3,4,0.08,1,0 +8291,14141873,Manhattan,Gramercy,40.73637,-73.98619000000001,Entire home/apt,399,1,28,0.61,1,354 +8292,1993978,Manhattan,Chelsea,40.74068,-74.00346,Entire home/apt,495,5,8,0.16,1,0 +8293,25472836,Brooklyn,Clinton Hill,40.68672,-73.96376,Entire home/apt,145,2,2,0.06,1,0 +8294,33166971,Brooklyn,Bushwick,40.68541,-73.91211,Private room,53,2,56,1.12,2,81 +8295,33163646,Queens,Sunnyside,40.744440000000004,-73.92451,Entire home/apt,100,1,72,1.46,1,0 +8296,6645134,Brooklyn,Bushwick,40.70104,-73.91813,Private room,42,3,5,0.1,1,298 +8297,15310997,Manhattan,Upper East Side,40.77643,-73.95085999999999,Entire home/apt,200,30,3,0.09,9,353 +8298,252121,Brooklyn,Clinton Hill,40.68374,-73.96452,Entire home/apt,130,3,97,1.95,1,348 +8299,1245695,Manhattan,East Village,40.732490000000006,-73.9887,Private room,200,30,8,0.16,1,365 +8300,4233168,Brooklyn,Prospect-Lefferts Gardens,40.656279999999995,-73.95753,Private room,75,1,1,0.02,1,0 +8301,31752474,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.96197,Private room,45,14,9,0.19,2,0 +8302,2881,Brooklyn,Bedford-Stuyvesant,40.68473,-73.946,Private room,52,2,110,2.63,2,220 +8303,3922258,Manhattan,Lower East Side,40.7188,-73.99452,Private room,100,1,1,0.02,1,0 +8304,834483,Brooklyn,Greenpoint,40.72833,-73.94781,Entire home/apt,350,3,15,0.3,1,0 +8305,21361229,Manhattan,Washington Heights,40.83998,-73.94295,Private room,70,1,88,3.66,1,0 +8306,33297467,Brooklyn,Bushwick,40.70104,-73.92278,Private room,39,4,4,0.13,1,0 +8307,9815198,Manhattan,Upper West Side,40.77724,-73.97699,Entire home/apt,120,150,0,,1,365 +8308,3269171,Manhattan,West Village,40.73507,-74.00825999999999,Entire home/apt,239,2,6,0.18,1,0 +8309,7202402,Manhattan,Chinatown,40.71399,-73.99707,Entire home/apt,375,2,15,0.3,2,365 +8310,33159253,Brooklyn,Williamsburg,40.71999,-73.94551,Entire home/apt,125,1,1,0.02,1,0 +8311,33317997,Brooklyn,Vinegar Hill,40.70098,-73.98210999999999,Entire home/apt,375,14,0,,1,0 +8312,5972246,Brooklyn,Bedford-Stuyvesant,40.68217,-73.9534,Private room,45,3,3,0.06,1,0 +8313,3911265,Queens,Long Island City,40.75405,-73.93717,Private room,60,7,1,0.02,1,0 +8314,33323743,Brooklyn,Crown Heights,40.67371,-73.92743,Private room,75,1,5,0.55,1,65 +8315,33346283,Manhattan,Harlem,40.830009999999994,-73.94815,Private room,70,5,42,0.87,3,348 +8316,23693099,Bronx,Concourse Village,40.82809,-73.9159,Entire home/apt,65,4,107,2.3,1,210 +8317,33355603,Manhattan,West Village,40.73314,-74.00835,Private room,250,2,0,,1,0 +8318,2696970,Manhattan,Two Bridges,40.711929999999995,-73.99454,Private room,99,2,28,0.55,1,296 +8319,21894410,Brooklyn,Williamsburg,40.70125,-73.94060999999999,Private room,95,1,3,0.06,1,0 +8320,31762883,Queens,Ditmars Steinway,40.77915,-73.90902,Private room,46,7,0,,1,0 +8321,264659,Manhattan,East Village,40.72361,-73.98775,Entire home/apt,275,1,35,0.7,1,0 +8322,33368633,Queens,Forest Hills,40.72391,-73.84407,Entire home/apt,168,3,133,2.64,2,336 +8323,1535739,Brooklyn,Williamsburg,40.709559999999996,-73.95328,Private room,45,31,3,0.06,1,0 +8324,24833181,Brooklyn,Bedford-Stuyvesant,40.69385,-73.9481,Entire home/apt,80,1,93,2.0,2,0 +8325,5707879,Manhattan,Upper West Side,40.78017,-73.98317,Entire home/apt,150,16,0,,1,0 +8326,15195194,Manhattan,Washington Heights,40.839,-73.94543,Entire home/apt,115,1,4,0.08,1,0 +8327,11731168,Brooklyn,Boerum Hill,40.68848,-73.99009000000001,Private room,65,2,6,0.13,1,0 +8328,5463220,Brooklyn,Williamsburg,40.712579999999996,-73.95555999999999,Entire home/apt,201,2,175,3.53,1,68 +8329,10645724,Brooklyn,Crown Heights,40.677040000000005,-73.93955,Private room,55,7,0,,1,0 +8330,7256646,Brooklyn,Williamsburg,40.70609,-73.95331999999999,Private room,120,1,3,0.08,1,0 +8331,30166510,Queens,Astoria,40.77006,-73.93043,Private room,50,1,1,0.02,1,0 +8332,6354467,Manhattan,Chelsea,40.74476,-73.99861999999999,Entire home/apt,100,4,4,0.09,1,0 +8333,33394459,Manhattan,Harlem,40.80645,-73.95260999999999,Entire home/apt,100,14,2,0.04,1,0 +8334,33396510,Brooklyn,Williamsburg,40.70745,-73.94223000000001,Entire home/apt,59,7,9,0.19,1,0 +8335,21090508,Brooklyn,Bushwick,40.69914,-73.93590999999999,Shared room,44,5,27,0.54,2,0 +8336,33403059,Brooklyn,Crown Heights,40.67725,-73.95994,Private room,79,5,3,0.06,3,0 +8337,10396710,Brooklyn,Williamsburg,40.70933,-73.95577,Private room,56,3,2,0.04,1,0 +8338,5919678,Manhattan,Lower East Side,40.71983,-73.98801,Entire home/apt,140,5,8,0.16,1,0 +8339,33426004,Manhattan,Murray Hill,40.74583,-73.97834,Entire home/apt,160,1,5,0.1,1,0 +8340,10136764,Brooklyn,Crown Heights,40.677659999999996,-73.93934,Entire home/apt,119,4,91,1.81,1,316 +8341,15613411,Manhattan,Lower East Side,40.7187,-73.99043,Entire home/apt,185,3,26,0.52,1,0 +8342,1503493,Brooklyn,Prospect-Lefferts Gardens,40.659009999999995,-73.96045,Private room,55,3,0,,1,0 +8343,11555845,Manhattan,Washington Heights,40.84543,-73.94283,Private room,58,1,148,3.58,1,280 +8344,24448775,Brooklyn,Williamsburg,40.70883,-73.94068,Private room,85,4,4,0.08,1,0 +8345,2216353,Brooklyn,Bedford-Stuyvesant,40.69435,-73.93294,Private room,100,1,1,0.02,1,0 +8346,33499491,Brooklyn,Crown Heights,40.67699,-73.95179,Entire home/apt,110,1,5,0.1,1,0 +8347,6680071,Manhattan,Chinatown,40.714890000000004,-73.99168,Private room,80,5,1,0.02,1,0 +8348,310670,Bronx,Eastchester,40.88241,-73.83422,Entire home/apt,115,1,6,0.18,13,364 +8349,3011903,Brooklyn,Williamsburg,40.7105,-73.9451,Private room,99,4,58,1.25,1,307 +8350,2680820,Queens,Flushing,40.753479999999996,-73.81785,Entire home/apt,105,2,204,4.05,3,313 +8351,13341919,Manhattan,Upper East Side,40.78396,-73.95218,Private room,110,2,3,0.06,1,0 +8352,33510832,Brooklyn,Bedford-Stuyvesant,40.69271,-73.94353000000001,Private room,70,1,397,7.97,2,35 +8353,33513998,Manhattan,Upper West Side,40.77883,-73.97494,Private room,160,1,7,0.14,1,0 +8354,6767463,Brooklyn,Bushwick,40.70746,-73.92054,Private room,150,30,10,0.2,1,0 +8355,26624082,Manhattan,Upper West Side,40.78885,-73.98013,Entire home/apt,90,4,1,0.03,1,0 +8356,6969910,Brooklyn,DUMBO,40.703720000000004,-73.9899,Entire home/apt,150,7,0,,1,0 +8357,30641136,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95161999999999,Entire home/apt,86,30,10,0.33,1,302 +8358,16598550,Manhattan,Washington Heights,40.85516,-73.9378,Entire home/apt,200,1,2,0.04,1,0 +8359,33530934,Manhattan,Hell's Kitchen,40.76525,-73.99056,Entire home/apt,272,1,38,0.89,1,360 +8360,32715865,Manhattan,Upper West Side,40.79169,-73.97498,Entire home/apt,86,1,5,0.13,1,0 +8361,33533091,Brooklyn,Williamsburg,40.70885,-73.94927,Entire home/apt,200,5,0,,1,0 +8362,33535691,Manhattan,Hell's Kitchen,40.75674,-73.99774000000001,Private room,129,2,290,5.92,1,26 +8363,7831209,Manhattan,East Harlem,40.80749,-73.93803,Private room,50,1,103,2.07,10,365 +8364,3760161,Manhattan,Nolita,40.720659999999995,-73.99566,Private room,95,4,1,0.03,1,0 +8365,13043852,Brooklyn,Cobble Hill,40.68477,-73.99825,Entire home/apt,400,6,5,0.1,1,85 +8366,21694306,Manhattan,Financial District,40.70949,-74.01379,Entire home/apt,212,1,0,,1,0 +8367,33558572,Brooklyn,Red Hook,40.67731,-74.0112,Entire home/apt,160,2,64,1.27,1,341 +8368,19251040,Manhattan,Upper West Side,40.79275,-73.97199,Private room,90,3,1,0.02,1,0 +8369,1905361,Brooklyn,Clinton Hill,40.68404,-73.96714,Entire home/apt,145,6,17,0.34,1,15 +8370,33582013,Queens,Forest Hills,40.71345,-73.85658000000001,Entire home/apt,125,2,44,0.91,1,319 +8371,2433524,Manhattan,Upper East Side,40.78125,-73.94851,Entire home/apt,250,3,0,,1,0 +8372,17382690,Brooklyn,South Slope,40.66632,-73.99013000000001,Entire home/apt,100,3,100,1.98,1,6 +8373,33605594,Brooklyn,Sheepshead Bay,40.59225,-73.95026,Private room,75,1,8,0.26,1,311 +8374,7108862,Brooklyn,Williamsburg,40.7103,-73.96621999999999,Private room,75,4,2,0.04,1,0 +8375,11885649,Manhattan,Upper East Side,40.76313,-73.96191999999999,Entire home/apt,195,3,0,,1,0 +8376,33611370,Brooklyn,Carroll Gardens,40.68303,-73.99686,Entire home/apt,125,14,2,0.04,1,0 +8377,33614329,Brooklyn,Bushwick,40.69528,-73.93079,Entire home/apt,85,1,208,4.14,4,197 +8378,33640698,Manhattan,West Village,40.73404,-74.00955,Entire home/apt,200,1,0,,1,0 +8379,7853594,Manhattan,Upper East Side,40.76235,-73.9626,Entire home/apt,449,4,6,0.14,2,4 +8380,32850071,Brooklyn,Williamsburg,40.71411,-73.95770999999999,Entire home/apt,150,2,1,0.02,1,0 +8381,5622480,Brooklyn,Williamsburg,40.711059999999996,-73.94918,Entire home/apt,250,2,176,3.51,1,275 +8382,13873277,Brooklyn,Williamsburg,40.715990000000005,-73.95539000000001,Private room,100,28,0,,1,0 +8383,33648474,Brooklyn,Bushwick,40.6971,-73.92045999999999,Entire home/apt,120,2,56,1.11,1,314 +8384,2223278,Manhattan,East Village,40.726440000000004,-73.97865999999999,Private room,115,2,246,4.94,1,69 +8385,33616159,Manhattan,Chinatown,40.717620000000004,-73.99328,Private room,89,4,3,0.06,1,0 +8386,11179499,Manhattan,Greenwich Village,40.72846,-74.00113,Entire home/apt,180,3,2,0.04,1,0 +8387,517772,Queens,Ditmars Steinway,40.77387,-73.91778000000001,Entire home/apt,70,4,2,0.04,1,0 +8388,33675739,Manhattan,East Harlem,40.792759999999994,-73.93854,Private room,140,2,50,1.01,2,0 +8389,9522524,Brooklyn,Canarsie,40.64548,-73.8949,Private room,37,5,72,1.43,5,322 +8390,4498389,Brooklyn,Clinton Hill,40.683840000000004,-73.96042,Private room,70,1,4,0.08,1,0 +8391,640117,Brooklyn,Williamsburg,40.713390000000004,-73.95546,Private room,88,4,7,0.14,5,0 +8392,640117,Brooklyn,Williamsburg,40.714079999999996,-73.95708,Entire home/apt,320,4,56,1.13,5,141 +8393,33680384,Manhattan,Kips Bay,40.74077,-73.98085,Entire home/apt,200,2,0,,1,0 +8394,20192028,Brooklyn,Gowanus,40.66683,-73.99308,Private room,55,1,1,0.02,1,0 +8395,17408676,Manhattan,Midtown,40.74957,-73.98255,Entire home/apt,195,3,5,0.1,1,0 +8396,1471506,Brooklyn,Williamsburg,40.70798,-73.95095,Private room,115,3,0,,1,0 +8397,12060709,Manhattan,Midtown,40.75545,-73.96896,Private room,125,1,0,,1,0 +8398,276291,Manhattan,East Harlem,40.80755,-73.94141,Entire home/apt,155,3,116,2.36,2,247 +8399,33433635,Manhattan,Harlem,40.80273,-73.95748,Entire home/apt,170,3,1,0.02,1,0 +8400,6826449,Manhattan,East Village,40.72672,-73.98514,Private room,115,2,0,,1,0 +8401,33695968,Brooklyn,Prospect-Lefferts Gardens,40.66102,-73.96224000000001,Entire home/apt,74,2,0,,1,0 +8402,28000421,Brooklyn,Williamsburg,40.71532,-73.9442,Private room,100,1,0,,2,0 +8403,19475826,Manhattan,Murray Hill,40.7487,-73.97358,Entire home/apt,125,2,21,0.44,1,0 +8404,33721278,Brooklyn,Midwood,40.618390000000005,-73.95761999999999,Private room,70,1,0,,1,0 +8405,33722691,Brooklyn,Clinton Hill,40.69298,-73.96851,Entire home/apt,110,1,179,3.56,2,118 +8406,26408268,Brooklyn,Williamsburg,40.71161,-73.95957,Entire home/apt,395,4,9,0.25,1,10 +8407,1531125,Brooklyn,Williamsburg,40.71741,-73.95555,Entire home/apt,215,3,14,0.33,1,0 +8408,11775328,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96162,Entire home/apt,150,2,17,0.37,1,336 +8409,33741028,Manhattan,Gramercy,40.73235,-73.98392,Private room,295,3,22,0.46,1,0 +8410,33607986,Brooklyn,Bushwick,40.69113,-73.91501,Private room,60,4,6,0.13,1,2 +8411,33746505,Brooklyn,Gravesend,40.6075,-73.96763,Private room,55,1,135,2.79,1,22 +8412,33736005,Queens,Sunnyside,40.7453,-73.92311,Entire home/apt,85,1,3,0.06,2,0 +8413,16549175,Manhattan,Washington Heights,40.844409999999996,-73.94218000000001,Private room,40,6,0,,1,0 +8414,3210626,Brooklyn,Park Slope,40.6761,-73.97509000000001,Entire home/apt,200,1,0,,1,0 +8415,33750239,Brooklyn,Bedford-Stuyvesant,40.68521,-73.93706999999999,Private room,90,2,115,2.29,2,0 +8416,3312204,Manhattan,Upper East Side,40.772240000000004,-73.94844,Private room,49,2,78,1.66,2,182 +8417,32430692,Manhattan,Washington Heights,40.84405,-73.93796,Private room,50,1,10,8.82,1,71 +8418,18412434,Brooklyn,Prospect Heights,40.67485,-73.9632,Entire home/apt,85,7,52,1.05,1,24 +8419,21176015,Brooklyn,Park Slope,40.67844,-73.98136,Entire home/apt,350,4,1,0.39,1,14 +8420,7455366,Brooklyn,Flatbush,40.648759999999996,-73.96279,Private room,38,30,2,0.05,1,0 +8421,33782884,Brooklyn,Carroll Gardens,40.67674,-73.99805,Private room,158,2,4,0.08,2,0 +8422,253533,Manhattan,Chinatown,40.715070000000004,-73.99033,Entire home/apt,245,4,27,0.58,1,0 +8423,645887,Brooklyn,Williamsburg,40.713229999999996,-73.94699,Entire home/apt,110,3,137,3.51,2,154 +8424,33788184,Manhattan,Harlem,40.82948,-73.94876,Private room,55,2,0,,1,0 +8425,33803881,Manhattan,Financial District,40.70516,-74.00798,Entire home/apt,275,1,0,,1,0 +8426,10380050,Manhattan,Harlem,40.82373,-73.95144,Private room,50,1,37,0.74,1,0 +8427,24597265,Queens,Ditmars Steinway,40.77077,-73.90903,Private room,45,6,4,0.09,8,318 +8428,33817646,Manhattan,Little Italy,40.71864,-73.99753,Private room,85,2,79,1.7,1,0 +8429,33825321,Brooklyn,Crown Heights,40.67255,-73.93328000000001,Entire home/apt,150,1,24,0.51,1,299 +8430,33833944,Manhattan,Midtown,40.76015,-73.96378,Entire home/apt,247,5,25,0.51,1,0 +8431,18693139,Manhattan,East Harlem,40.80182,-73.94014,Private room,105,2,5,0.1,1,273 +8432,25646971,Manhattan,Financial District,40.71095,-74.00912,Entire home/apt,400,2,8,0.19,1,44 +8433,6696648,Queens,Astoria,40.7666,-73.92079,Entire home/apt,155,6,4,0.11,1,173 +8434,17770287,Manhattan,Midtown,40.75085,-73.98266,Entire home/apt,150,30,5,0.13,14,217 +8435,29690360,Manhattan,Inwood,40.86743,-73.92643000000001,Entire home/apt,120,3,0,,1,0 +8436,15743237,Queens,Elmhurst,40.734,-73.86596,Private room,69,1,14,0.28,2,0 +8437,7898046,Manhattan,Chelsea,40.73992,-73.99888,Entire home/apt,199,2,71,1.42,1,0 +8438,18897568,Manhattan,Greenwich Village,40.72764,-74.00076,Entire home/apt,499,5,3,0.06,1,0 +8439,33774886,Manhattan,Chelsea,40.74026,-73.99746,Entire home/apt,150,2,150,2.99,1,2 +8440,13356805,Brooklyn,Park Slope,40.66753,-73.97747,Private room,300,1,0,,1,0 +8441,1871609,Brooklyn,Williamsburg,40.720079999999996,-73.94464,Entire home/apt,105,5,33,0.66,1,8 +8442,24597265,Queens,Ditmars Steinway,40.772090000000006,-73.91082,Private room,45,6,25,0.53,8,307 +8443,1862576,Brooklyn,Sunset Park,40.65168,-74.00178000000001,Entire home/apt,105,7,3,0.06,1,0 +8444,3499548,Manhattan,Hell's Kitchen,40.7644,-73.99338,Private room,130,3,14,0.63,1,293 +8445,3263765,Manhattan,Greenwich Village,40.729859999999995,-73.99468,Private room,75,2,4,0.08,1,0 +8446,14063,Brooklyn,Brooklyn Heights,40.7007,-73.99257,Entire home/apt,150,5,15,0.31,1,0 +8447,7503643,Brooklyn,Greenpoint,40.72583,-73.94176999999999,Entire home/apt,159,30,3,0.07,52,340 +8448,818508,Brooklyn,Williamsburg,40.71515,-73.94798,Entire home/apt,100,7,15,0.3,1,0 +8449,33929905,Brooklyn,Manhattan Beach,40.578720000000004,-73.95251,Entire home/apt,145,4,59,1.24,1,157 +8450,1982268,Manhattan,Upper West Side,40.79,-73.97318,Entire home/apt,220,2,13,0.26,1,0 +8451,6804278,Brooklyn,Bedford-Stuyvesant,40.68084,-73.93075,Entire home/apt,160,4,9,0.18,1,365 +8452,21575456,Brooklyn,Clinton Hill,40.68502,-73.96073,Entire home/apt,175,1,150,2.98,1,300 +8453,1480124,Manhattan,East Village,40.721740000000004,-73.98418000000001,Private room,82,3,11,0.23,1,0 +8454,26270573,Manhattan,Upper East Side,40.77025,-73.95491,Entire home/apt,200,5,95,1.95,2,182 +8455,2938550,Manhattan,Midtown,40.76571,-73.98023,Entire home/apt,300,1,0,,1,0 +8456,33941066,Manhattan,Murray Hill,40.746959999999994,-73.9767,Entire home/apt,199,1,0,,1,0 +8457,33527075,Queens,Elmhurst,40.74525,-73.87626999999999,Private room,85,2,188,3.75,2,2 +8458,33970775,Manhattan,Upper East Side,40.764,-73.9587,Entire home/apt,135,3,11,0.22,1,0 +8459,33975064,Manhattan,Harlem,40.80571,-73.95429,Entire home/apt,150,3,2,0.04,1,0 +8460,33977124,Brooklyn,Bedford-Stuyvesant,40.685790000000004,-73.95535,Private room,65,2,49,1.42,2,310 +8461,33977623,Brooklyn,Williamsburg,40.712379999999996,-73.96451,Entire home/apt,395,5,16,0.32,1,67 +8462,1304710,Manhattan,East Village,40.72275,-73.98525,Entire home/apt,379,7,45,0.91,1,364 +8463,14231957,Manhattan,West Village,40.73408,-74.00263000000001,Entire home/apt,250,2,5,0.14,1,0 +8464,17344881,Manhattan,Harlem,40.80454,-73.95133,Private room,90,2,11,0.22,3,282 +8465,5785497,Brooklyn,Bushwick,40.70154,-73.92154000000001,Private room,40,10,22,0.47,1,4 +8466,34009194,Manhattan,Washington Heights,40.837709999999994,-73.94638,Entire home/apt,200,2,1,0.02,1,0 +8467,12798614,Brooklyn,Bedford-Stuyvesant,40.68997,-73.94205,Entire home/apt,133,2,49,1.0,3,319 +8468,34013546,Manhattan,Upper West Side,40.793240000000004,-73.97489,Entire home/apt,140,1,2,0.04,1,0 +8469,23772724,Manhattan,East Harlem,40.797259999999994,-73.9329,Entire home/apt,100,30,12,0.25,15,342 +8470,25441469,Brooklyn,Prospect-Lefferts Gardens,40.6587,-73.95911,Entire home/apt,85,2,2,0.09,1,0 +8471,696487,Manhattan,Upper West Side,40.7837,-73.97851,Entire home/apt,385,30,0,,1,0 +8472,10077626,Brooklyn,Flatbush,40.65208,-73.95340999999999,Private room,50,10,0,,1,0 +8473,34049419,Brooklyn,South Slope,40.6675,-73.98898,Entire home/apt,140,3,14,0.28,1,0 +8474,34052554,Manhattan,Upper East Side,40.77499,-73.94875,Entire home/apt,120,1,1,0.02,1,0 +8475,14979188,Manhattan,East Village,40.72781,-73.9862,Entire home/apt,110,4,3,0.06,1,0 +8476,4224588,Brooklyn,Williamsburg,40.71155,-73.94883,Private room,106,14,0,,1,0 +8477,25865233,Manhattan,Harlem,40.81698,-73.95259,Entire home/apt,115,3,71,1.43,1,4 +8478,829717,Queens,Arverne,40.59428,-73.78855,Entire home/apt,120,1,26,0.53,1,14 +8479,4089529,Queens,Arverne,40.593990000000005,-73.79693,Entire home/apt,300,1,67,1.34,1,344 +8480,26439972,Brooklyn,Sheepshead Bay,40.60078,-73.96526999999999,Private room,59,1,5,0.13,1,319 +8481,34113764,Queens,Ditmars Steinway,40.77086,-73.89578,Entire home/apt,140,3,2,1.33,2,363 +8482,2124716,Brooklyn,Park Slope,40.66923,-73.98134,Private room,99,1,100,2.11,1,1 +8483,34124276,Queens,Long Island City,40.75235,-73.93714,Private room,52,1,4,0.08,1,0 +8484,33733944,Manhattan,East Village,40.72152,-73.97761,Entire home/apt,125,1,4,0.09,1,0 +8485,34129674,Queens,Corona,40.748259999999995,-73.86755,Private room,150,2,0,,1,363 +8486,25168888,Manhattan,Harlem,40.82119,-73.95773,Private room,65,4,37,0.76,3,196 +8487,34142649,Manhattan,Gramercy,40.73742,-73.98052,Entire home/apt,249,2,0,,1,0 +8488,34142729,Manhattan,Morningside Heights,40.80625,-73.96176,Private room,84,1,0,,1,0 +8489,34143084,Queens,Astoria,40.77238,-73.92446,Private room,53,3,2,0.22,1,0 +8490,34174768,Manhattan,Midtown,40.75055,-73.98679,Entire home/apt,340,2,19,0.38,1,0 +8491,34186180,Brooklyn,Bushwick,40.70252,-73.9279,Private room,80,7,2,0.04,1,0 +8492,8479809,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96240999999999,Entire home/apt,75,5,0,,1,0 +8493,34197591,Brooklyn,Bedford-Stuyvesant,40.6832,-73.95455,Private room,80,3,131,2.64,1,140 +8494,111837,Brooklyn,Williamsburg,40.71145,-73.95302,Private room,78,2,1,0.02,1,0 +8495,34201688,Brooklyn,Williamsburg,40.718340000000005,-73.95867,Entire home/apt,149,30,35,0.83,1,0 +8496,31298029,Brooklyn,Fort Greene,40.68626,-73.97138000000001,Private room,80,2,124,2.5,1,251 +8497,7155183,Brooklyn,Crown Heights,40.67191,-73.95265,Entire home/apt,115,5,1,0.02,1,0 +8498,33975302,Manhattan,Upper West Side,40.79909,-73.9602,Private room,90,1,185,3.71,1,60 +8499,3057531,Brooklyn,Williamsburg,40.71839,-73.94329,Entire home/apt,175,3,10,0.2,1,0 +8500,23116237,Manhattan,Midtown,40.766220000000004,-73.97783000000001,Entire home/apt,350,1,0,,1,364 +8501,6789992,Manhattan,East Village,40.724959999999996,-73.98289,Entire home/apt,194,2,36,0.74,1,0 +8502,18342421,Manhattan,Chelsea,40.73963,-73.99898,Entire home/apt,175,4,5,0.1,1,0 +8503,2436695,Manhattan,Chelsea,40.74218,-73.99963000000001,Entire home/apt,350,14,0,,1,0 +8504,2482106,Manhattan,Harlem,40.82553,-73.93875,Private room,63,1,6,0.13,1,0 +8505,2232455,Brooklyn,Park Slope,40.67289,-73.97129,Entire home/apt,150,7,4,0.08,1,94 +8506,34233009,Manhattan,West Village,40.73638,-74.00393000000001,Entire home/apt,180,28,0,,1,0 +8507,3992566,Brooklyn,Bushwick,40.69918,-73.92886,Private room,64,2,32,0.64,3,14 +8508,3174520,Manhattan,Greenwich Village,40.733990000000006,-73.99305,Entire home/apt,185,2,52,1.04,1,35 +8509,10771238,Manhattan,Harlem,40.82589,-73.95094,Private room,80,2,126,2.65,3,173 +8510,34262042,Manhattan,Harlem,40.817809999999994,-73.9347,Entire home/apt,75,2,15,0.32,1,0 +8511,34272645,Staten Island,Tompkinsville,40.634890000000006,-74.08592,Entire home/apt,105,3,69,1.49,1,343 +8512,33945670,Queens,Long Island City,40.74876,-73.94507,Entire home/apt,130,1,137,2.82,2,197 +8513,34276823,Manhattan,West Village,40.736259999999994,-74.00180999999999,Entire home/apt,264,2,5,0.12,1,0 +8514,33125778,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95466,Entire home/apt,215,3,5,0.1,1,0 +8515,13262455,Manhattan,Upper East Side,40.77323,-73.95567,Private room,85,20,2,0.06,3,128 +8516,14098887,Queens,Ridgewood,40.70503,-73.91433,Private room,35,2,0,,1,0 +8517,24597265,Queens,Ditmars Steinway,40.772090000000006,-73.91096,Private room,50,6,11,0.24,8,358 +8518,34285520,Brooklyn,Red Hook,40.67811,-74.00605999999999,Entire home/apt,145,7,2,0.04,1,0 +8519,11513446,Manhattan,Lower East Side,40.71908,-73.99446,Entire home/apt,150,3,2,0.04,1,0 +8520,9119676,Brooklyn,Prospect Heights,40.6815,-73.97309,Entire home/apt,175,2,10,0.2,1,0 +8521,7074531,Bronx,Longwood,40.82639,-73.90363,Private room,680,1,0,,1,0 +8522,28305098,Manhattan,Chelsea,40.745740000000005,-73.99226,Entire home/apt,900,3,13,0.26,1,24 +8523,12764940,Brooklyn,Williamsburg,40.70608,-73.93223,Private room,95,1,0,,1,0 +8524,34306160,Brooklyn,Williamsburg,40.70306,-73.93629,Private room,60,4,87,1.75,1,96 +8525,31675601,Brooklyn,Bay Ridge,40.62487,-74.02949,Private room,70,30,54,1.17,4,288 +8526,26270573,Manhattan,Upper East Side,40.77205,-73.95339,Entire home/apt,240,5,82,1.87,2,158 +8527,3531344,Brooklyn,Bushwick,40.70755,-73.92277,Entire home/apt,150,3,16,0.33,1,0 +8528,34310803,Manhattan,Washington Heights,40.855090000000004,-73.93744000000001,Entire home/apt,150,30,0,,1,0 +8529,23311838,Manhattan,Upper West Side,40.7791,-73.98565,Entire home/apt,175,1,4,0.08,1,0 +8530,836168,Manhattan,Upper West Side,40.79222,-73.96445,Entire home/apt,1000,30,27,0.57,11,364 +8531,34313950,Brooklyn,Bedford-Stuyvesant,40.68584,-73.92294,Private room,48,1,0,,1,0 +8532,24860438,Brooklyn,Williamsburg,40.70313,-73.93566,Private room,42,8,1,0.02,1,0 +8533,34322623,Manhattan,Washington Heights,40.85133,-73.93844,Private room,80,2,18,0.36,1,326 +8534,34345802,Brooklyn,Crown Heights,40.67569,-73.95563,Entire home/apt,150,5,15,0.34,1,342 +8535,33459378,Manhattan,Battery Park City,40.7101,-74.01720999999999,Entire home/apt,195,7,2,0.04,1,0 +8536,22261783,Brooklyn,Bedford-Stuyvesant,40.68258,-73.93893,Entire home/apt,145,3,130,2.63,2,105 +8537,4534649,Manhattan,Harlem,40.8179,-73.9539,Private room,75,2,52,1.04,3,0 +8538,9630921,Queens,Long Island City,40.75628,-73.92071999999999,Entire home/apt,85,7,0,,1,0 +8539,1808103,Brooklyn,Williamsburg,40.707229999999996,-73.95515,Entire home/apt,90,2,85,1.99,2,4 +8540,31458100,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95307,Private room,53,2,11,0.23,1,0 +8541,34372907,Manhattan,East Village,40.72872,-73.98639,Entire home/apt,155,2,36,0.8,1,164 +8542,1808103,Brooklyn,Williamsburg,40.70664,-73.95399,Private room,49,3,13,0.26,2,181 +8543,16139880,Brooklyn,Bedford-Stuyvesant,40.677,-73.91677,Private room,78,3,108,2.17,6,158 +8544,31234460,Manhattan,East Village,40.72854,-73.98118000000001,Private room,100,1,0,,1,0 +8545,34386255,Brooklyn,Bedford-Stuyvesant,40.67922,-73.95383000000001,Private room,85,1,0,,1,0 +8546,34387513,Queens,Long Island City,40.7583,-73.9315,Private room,225,1,0,,1,365 +8547,909577,Brooklyn,Williamsburg,40.71329,-73.96231999999999,Private room,199,1,2,0.06,3,346 +8548,33247865,Manhattan,Greenwich Village,40.72911,-73.99915,Entire home/apt,350,2,34,0.74,1,0 +8549,33680030,Manhattan,Harlem,40.82033,-73.95631999999999,Entire home/apt,120,1,3,0.06,1,0 +8550,34397256,Queens,Ozone Park,40.6904,-73.83726999999999,Private room,70,2,114,2.47,1,310 +8551,34426902,Manhattan,Upper West Side,40.8017,-73.96991,Entire home/apt,250,15,0,,1,39 +8552,23607132,Manhattan,Midtown,40.765390000000004,-73.97896999999999,Private room,180,2,62,1.34,1,261 +8553,2566034,Brooklyn,Park Slope,40.67326,-73.98076999999999,Entire home/apt,145,7,1,0.02,1,8 +8554,3450556,Manhattan,Inwood,40.86719,-73.92679,Entire home/apt,130,2,0,,1,0 +8555,19866189,Queens,Arverne,40.58977,-73.79498000000001,Private room,149,1,56,1.14,5,361 +8556,1263574,Manhattan,Upper West Side,40.80133,-73.96574,Private room,60,4,5,0.1,1,0 +8557,34453577,Manhattan,Lower East Side,40.72101,-73.98905,Entire home/apt,140,4,119,2.43,1,29 +8558,19233353,Brooklyn,Prospect-Lefferts Gardens,40.65599,-73.95746,Private room,60,3,0,,2,0 +8559,34748949,Brooklyn,Park Slope,40.675329999999995,-73.9793,Entire home/apt,350,7,0,,1,0 +8560,6495511,Brooklyn,Williamsburg,40.712140000000005,-73.95111,Entire home/apt,175,3,5,0.1,1,0 +8561,20113500,Manhattan,Chelsea,40.74465,-73.9955,Private room,110,3,2,0.04,1,0 +8562,9777215,Manhattan,Harlem,40.81346,-73.94458,Entire home/apt,177,3,122,2.49,3,199 +8563,34501360,Brooklyn,Park Slope,40.6746,-73.97901,Entire home/apt,275,30,12,0.25,1,70 +8564,34113764,Queens,Ditmars Steinway,40.76962,-73.89604,Entire home/apt,99,1,49,0.99,2,0 +8565,4654046,Manhattan,West Village,40.73086,-74.00506999999999,Private room,105,2,111,2.31,1,92 +8566,8934751,Queens,Maspeth,40.72721,-73.89346,Entire home/apt,200,4,1,0.64,2,129 +8567,5280006,Manhattan,Harlem,40.82606,-73.95075,Private room,58,3,27,0.54,1,0 +8568,13106591,Manhattan,Upper West Side,40.80157,-73.96635,Private room,100,9,3,0.06,1,0 +8569,8838164,Brooklyn,Bedford-Stuyvesant,40.692240000000005,-73.95865,Private room,45,14,0,,1,0 +8570,17382149,Brooklyn,Williamsburg,40.716840000000005,-73.95907,Private room,110,1,48,2.17,1,0 +8571,15386409,Manhattan,Harlem,40.828790000000005,-73.93821,Entire home/apt,80,3,3,0.06,1,0 +8572,34475475,Manhattan,Washington Heights,40.85131,-73.94059,Private room,75,1,0,,1,0 +8573,1651102,Manhattan,West Village,40.73752,-74.00113,Entire home/apt,700,1,0,,1,0 +8574,34534668,Brooklyn,Williamsburg,40.71297,-73.96409,Entire home/apt,165,2,5,0.27,1,0 +8575,7155363,Brooklyn,Williamsburg,40.71198,-73.96114,Private room,80,2,12,0.38,1,356 +8576,1021060,Brooklyn,South Slope,40.66564,-73.98465,Entire home/apt,145,3,133,3.69,1,277 +8577,6864230,Manhattan,Lower East Side,40.713429999999995,-73.98826,Private room,125,1,0,,1,0 +8578,5226684,Brooklyn,Bushwick,40.703379999999996,-73.91374,Private room,45,1,2,0.04,1,0 +8579,9922972,Brooklyn,Bedford-Stuyvesant,40.68517,-73.93473,Private room,30,1,107,2.18,5,345 +8580,22222260,Manhattan,Harlem,40.818940000000005,-73.93871,Private room,81,4,20,0.41,2,334 +8581,570850,Brooklyn,Midwood,40.618140000000004,-73.97078,Entire home/apt,49,4,5,0.2,1,179 +8582,26415767,Brooklyn,Sunset Park,40.6655,-73.99501,Entire home/apt,225,3,52,1.12,1,297 +8583,34546849,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92827,Private room,70,2,131,2.63,3,255 +8584,26228337,Brooklyn,Park Slope,40.6801,-73.97918,Entire home/apt,120,7,20,0.43,1,0 +8585,6375533,Manhattan,East Harlem,40.78828,-73.9484,Entire home/apt,175,1,70,1.62,2,123 +8586,7701992,Manhattan,Harlem,40.825359999999996,-73.94383,Entire home/apt,130,1,0,,1,0 +8587,5753744,Brooklyn,Prospect-Lefferts Gardens,40.660579999999996,-73.95825,Entire home/apt,130,4,2,0.04,2,0 +8588,23152983,Manhattan,Washington Heights,40.83206,-73.94261,Entire home/apt,150,4,11,0.24,1,319 +8589,34595916,Brooklyn,South Slope,40.669340000000005,-73.98793,Entire home/apt,95,5,161,3.22,3,207 +8590,21823,Brooklyn,Bushwick,40.68781,-73.91421,Entire home/apt,300,3,18,0.45,3,217 +8591,4124666,Queens,Ditmars Steinway,40.7724,-73.90474,Entire home/apt,180,1,145,3.55,1,33 +8592,21823,Brooklyn,Bushwick,40.68779,-73.91407,Entire home/apt,375,3,46,1.07,3,217 +8593,3183567,Brooklyn,Park Slope,40.6777,-73.98106,Private room,75,2,0,,1,0 +8594,1797304,Manhattan,Hell's Kitchen,40.7617,-73.99244,Private room,75,5,53,1.34,1,239 +8595,28181993,Manhattan,Kips Bay,40.739090000000004,-73.9788,Private room,70,15,0,,1,0 +8596,24261066,Manhattan,Lower East Side,40.71966,-73.99235999999999,Entire home/apt,300,2,5,0.1,1,0 +8597,33976673,Queens,Sunnyside,40.74137,-73.9234,Private room,60,7,11,0.22,1,0 +8598,10014644,Brooklyn,Park Slope,40.66775,-73.98151,Private room,60,3,18,0.36,2,0 +8599,33782884,Brooklyn,Gowanus,40.67711,-73.99577,Private room,158,2,3,0.06,2,0 +8600,34608427,Manhattan,Lower East Side,40.71855,-73.9895,Entire home/apt,184,4,11,1.2,1,273 +8601,6492234,Manhattan,Washington Heights,40.83721,-73.93894,Private room,50,4,0,,1,0 +8602,34642925,Manhattan,Chelsea,40.74327,-73.99807,Entire home/apt,230,2,1,0.02,1,0 +8603,34643568,Manhattan,East Harlem,40.79229,-73.93954000000001,Private room,95,3,24,0.49,6,334 +8604,4265630,Brooklyn,Flatbush,40.64683,-73.95429,Entire home/apt,110,3,58,1.18,2,205 +8605,4769812,Manhattan,Harlem,40.812870000000004,-73.95186,Entire home/apt,120,10,7,0.19,1,8 +8606,263882,Brooklyn,Bedford-Stuyvesant,40.68023,-73.91046999999999,Entire home/apt,189,2,92,1.95,2,239 +8607,31880074,Brooklyn,Bedford-Stuyvesant,40.696659999999994,-73.93548,Entire home/apt,98,10,7,0.14,1,0 +8608,2128805,Manhattan,Gramercy,40.733909999999995,-73.98552,Entire home/apt,150,3,12,0.24,1,38 +8609,5025809,Brooklyn,Crown Heights,40.6737,-73.95913,Entire home/apt,100,1,1,0.02,1,0 +8610,23527094,Brooklyn,Williamsburg,40.711870000000005,-73.96342,Private room,85,1,11,0.33,1,154 +8611,27077862,Manhattan,East Village,40.72699,-73.98694,Entire home/apt,200,1,0,,1,0 +8612,13500220,Manhattan,Upper West Side,40.78283,-73.98396,Entire home/apt,450,3,1,0.02,1,0 +8613,263614,Brooklyn,Williamsburg,40.71932,-73.95446,Entire home/apt,250,3,1,0.02,1,0 +8614,10899109,Brooklyn,South Slope,40.665259999999996,-73.98449000000001,Private room,100,2,1,0.02,1,0 +8615,16941743,Queens,Astoria,40.76482,-73.92514,Private room,40,2,36,0.73,1,0 +8616,34690679,Manhattan,East Harlem,40.796009999999995,-73.93454,Private room,50,2,0,,1,0 +8617,27462282,Manhattan,Harlem,40.80133,-73.95251,Private room,80,1,0,,1,0 +8618,25599307,Brooklyn,Flatbush,40.63915,-73.95451,Entire home/apt,90,6,33,0.69,1,0 +8619,33722691,Brooklyn,Clinton Hill,40.693740000000005,-73.96727,Entire home/apt,150,4,2,0.06,2,22 +8620,24839107,Brooklyn,Williamsburg,40.716809999999995,-73.96141,Private room,80,1,7,0.14,1,0 +8621,3274213,Manhattan,Upper West Side,40.78602,-73.97729,Private room,89,2,133,2.8,1,155 +8622,20587549,Brooklyn,Williamsburg,40.707840000000004,-73.94698000000001,Private room,90,2,15,0.41,1,188 +8623,34712280,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95832,Entire home/apt,91,2,16,1.7,1,10 +8624,22058409,Manhattan,Financial District,40.7061,-74.0157,Private room,85,1,2,0.05,2,0 +8625,3173147,Manhattan,Lower East Side,40.71968,-73.98708,Entire home/apt,250,3,68,1.36,2,166 +8626,34720872,Queens,Long Island City,40.75529,-73.92961,Private room,50,1,4,1.62,1,107 +8627,27439632,Manhattan,West Village,40.732040000000005,-74.00399,Entire home/apt,160,4,0,,1,0 +8628,3858150,Manhattan,Morningside Heights,40.81165,-73.95639,Private room,60,9,7,0.15,1,0 +8629,34738375,Brooklyn,Prospect-Lefferts Gardens,40.66205,-73.96301,Entire home/apt,150,5,12,0.34,1,0 +8630,20123174,Brooklyn,Williamsburg,40.71178,-73.94617,Private room,90,1,0,,1,0 +8631,34740215,Manhattan,Midtown,40.74801,-73.98817,Entire home/apt,225,3,11,0.23,1,0 +8632,5609081,Queens,Richmond Hill,40.700540000000004,-73.83781,Entire home/apt,290,4,13,0.28,1,277 +8633,31889552,Brooklyn,Fort Greene,40.68711,-73.9747,Entire home/apt,95,3,1,0.02,1,0 +8634,23032146,Manhattan,Washington Heights,40.84239,-73.93574,Entire home/apt,139,4,3,0.07,1,0 +8635,562114,Brooklyn,Bay Ridge,40.633140000000004,-74.02896,Entire home/apt,295,5,4,0.13,1,19 +8636,240740,Manhattan,Lower East Side,40.7192,-73.99139,Private room,140,1,221,4.59,1,187 +8637,2536417,Manhattan,Upper East Side,40.76555,-73.95791,Entire home/apt,399,3,38,0.77,1,311 +8638,2329581,Manhattan,Nolita,40.72299,-73.99344,Private room,100,7,11,0.22,2,0 +8639,15537676,Brooklyn,Williamsburg,40.71082,-73.94275999999999,Private room,80,10,1,0.02,1,0 +8640,34779392,Manhattan,Upper West Side,40.77689,-73.98103,Entire home/apt,135,5,8,0.16,1,0 +8641,34782697,Manhattan,Chelsea,40.737829999999995,-73.99383,Private room,100,21,0,,1,0 +8642,351650,Brooklyn,Williamsburg,40.710840000000005,-73.96557,Entire home/apt,175,3,2,0.05,1,0 +8643,24260658,Manhattan,East Harlem,40.794779999999996,-73.93415999999999,Private room,70,2,32,0.64,5,63 +8644,4580943,Brooklyn,Williamsburg,40.705690000000004,-73.95329,Private room,50,1,1,0.02,1,0 +8645,23582893,Brooklyn,Bushwick,40.69038,-73.91462,Private room,52,18,24,0.49,8,76 +8646,3579116,Manhattan,West Village,40.73267,-74.00379000000001,Private room,140,3,64,1.29,2,5 +8647,20700509,Manhattan,West Village,40.73592,-74.00492,Entire home/apt,169,4,11,0.22,1,0 +8648,18081869,Brooklyn,South Slope,40.66561,-73.98843000000001,Entire home/apt,173,3,1,0.02,1,0 +8649,34813492,Brooklyn,Boerum Hill,40.68932,-73.99082,Entire home/apt,169,2,49,1.0,1,4 +8650,17927814,Brooklyn,Flatlands,40.62787,-73.94275999999999,Shared room,27,5,0,,1,0 +8651,7106617,Manhattan,Upper West Side,40.79828,-73.97231,Entire home/apt,150,5,6,0.12,1,0 +8652,16718896,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96029,Entire home/apt,145,5,25,0.51,1,0 +8653,25812962,Manhattan,East Harlem,40.79052,-73.94364,Private room,70,1,33,1.28,3,313 +8654,2979971,Brooklyn,Prospect-Lefferts Gardens,40.66016,-73.95382,Entire home/apt,205,3,1,0.16,1,0 +8655,34824417,Manhattan,Murray Hill,40.74522,-73.97505,Entire home/apt,145,5,18,0.38,1,179 +8656,34828488,Brooklyn,Canarsie,40.64372,-73.90361,Private room,88,2,12,0.26,1,180 +8657,16437254,Brooklyn,Fort Greene,40.6882,-73.97719000000001,Entire home/apt,179,30,0,,21,0 +8658,5417600,Brooklyn,Park Slope,40.673759999999994,-73.98397,Entire home/apt,200,365,4,0.14,1,173 +8659,7088466,Brooklyn,Prospect Heights,40.67904,-73.967,Entire home/apt,165,2,13,0.27,1,0 +8660,1418498,Brooklyn,Clinton Hill,40.684020000000004,-73.96637,Private room,89,4,0,,1,0 +8661,33622924,Manhattan,Harlem,40.83155,-73.94804,Private room,85,1,52,1.39,4,355 +8662,1131394,Manhattan,Upper East Side,40.78071,-73.95309,Entire home/apt,240,5,4,0.09,1,0 +8663,6913285,Brooklyn,Bedford-Stuyvesant,40.69154,-73.95544,Entire home/apt,95,5,4,0.08,1,0 +8664,30858029,Brooklyn,Williamsburg,40.71018,-73.94988000000001,Private room,99,1,0,,1,0 +8665,12720552,Brooklyn,Bushwick,40.701679999999996,-73.92845,Private room,70,1,20,0.42,5,332 +8666,192349,Brooklyn,Bushwick,40.70323,-73.92836,Entire home/apt,99,1,3,0.06,1,0 +8667,1761447,Brooklyn,Williamsburg,40.7123,-73.95401,Entire home/apt,177,3,78,1.68,2,177 +8668,2196224,Manhattan,East Village,40.73082,-73.98182,Entire home/apt,120,30,0,,4,213 +8669,1586060,Manhattan,West Village,40.73608,-74.00039,Entire home/apt,300,1,7,0.14,1,0 +8670,25812962,Manhattan,East Harlem,40.791309999999996,-73.94344,Private room,40,1,62,1.35,3,257 +8671,34861715,Manhattan,East Village,40.72639,-73.98875,Entire home/apt,280,2,29,0.59,1,0 +8672,34861728,Queens,Kew Gardens,40.70945,-73.83131999999999,Private room,59,9,12,0.26,4,318 +8673,1546620,Brooklyn,Bedford-Stuyvesant,40.68657,-73.94072,Entire home/apt,100,3,1,0.03,1,0 +8674,15008796,Manhattan,Hell's Kitchen,40.7611,-73.99316,Entire home/apt,150,4,1,0.02,1,0 +8675,29212339,Manhattan,Harlem,40.799820000000004,-73.95405,Entire home/apt,140,1,52,1.05,1,222 +8676,30208406,Manhattan,Chelsea,40.73857,-73.99786999999999,Entire home/apt,400,1,4,0.08,1,0 +8677,34873920,Brooklyn,Park Slope,40.68018,-73.97556999999999,Entire home/apt,250,6,0,,1,0 +8678,34874378,Manhattan,Harlem,40.82398,-73.94846,Private room,75,1,59,1.19,2,0 +8679,6984488,Brooklyn,Prospect Heights,40.676790000000004,-73.96502,Entire home/apt,175,4,34,0.79,2,286 +8680,34876980,Manhattan,Harlem,40.801320000000004,-73.9547,Private room,85,1,19,0.39,1,365 +8681,8816218,Brooklyn,Williamsburg,40.71162,-73.94551,Private room,125,1,0,,1,0 +8682,16437254,Brooklyn,Bedford-Stuyvesant,40.68356,-73.95851,Entire home/apt,179,30,0,,21,274 +8683,1287185,Manhattan,East Village,40.72865,-73.98023,Entire home/apt,150,35,7,0.14,1,304 +8684,2196224,Manhattan,East Village,40.73037,-73.98158000000001,Entire home/apt,197,30,1,0.06,4,191 +8685,1549512,Brooklyn,Clinton Hill,40.68385,-73.96748000000001,Private room,68,7,0,,2,0 +8686,6591262,Manhattan,Lower East Side,40.716609999999996,-73.98916,Entire home/apt,150,3,1,0.02,1,0 +8687,19600872,Brooklyn,Gravesend,40.6046,-73.97771999999999,Private room,69,1,0,,1,0 +8688,1208337,Manhattan,Upper East Side,40.76832,-73.96118,Entire home/apt,200,1,4,0.08,1,0 +8689,5143511,Manhattan,Hell's Kitchen,40.76127,-73.99161,Entire home/apt,125,3,0,,1,0 +8690,6725667,Manhattan,Chelsea,40.73969,-73.99446999999999,Private room,130,3,11,0.23,1,106 +8691,34933217,Manhattan,East Harlem,40.79435,-73.94071,Private room,97,1,0,,1,0 +8692,12720552,Brooklyn,Bushwick,40.701609999999995,-73.92919,Shared room,50,1,9,0.19,5,365 +8693,34943122,Brooklyn,Bedford-Stuyvesant,40.68566,-73.95808000000001,Entire home/apt,175,1,5,0.1,2,0 +8694,34950721,Brooklyn,Williamsburg,40.70621,-73.94903000000001,Private room,100,1,1,0.02,2,0 +8695,34371968,Brooklyn,Bedford-Stuyvesant,40.68207,-73.93279,Entire home/apt,150,4,70,1.54,1,293 +8696,34954047,Manhattan,Murray Hill,40.74912,-73.98007,Entire home/apt,145,30,2,0.05,1,189 +8697,7577024,Manhattan,Harlem,40.82875,-73.94574,Private room,100,1,0,,1,0 +8698,7409073,Manhattan,Hell's Kitchen,40.75885,-73.99584,Private room,130,7,2,0.04,1,0 +8699,30839692,Queens,Flushing,40.75394,-73.80538,Private room,45,2,186,3.74,3,170 +8700,4028339,Brooklyn,Clinton Hill,40.68542,-73.96103000000001,Entire home/apt,600,4,28,0.58,1,295 +8701,315082,Brooklyn,Williamsburg,40.70877,-73.94889,Entire home/apt,125,3,20,0.4,1,0 +8702,1030526,Brooklyn,Fort Greene,40.69023,-73.98085999999999,Entire home/apt,95,2,0,,1,0 +8703,6743604,Manhattan,Nolita,40.72227,-73.99526,Entire home/apt,130,1,13,0.26,1,0 +8704,34995566,Queens,Long Island City,40.76177,-73.92627,Private room,44,28,14,0.39,1,275 +8705,30340506,Brooklyn,Bushwick,40.69207,-73.92312,Entire home/apt,190,1,0,,1,0 +8706,35000945,Manhattan,Lower East Side,40.71748,-73.98364000000001,Private room,60,1,0,,1,0 +8707,35005938,Brooklyn,South Slope,40.661359999999995,-73.98437,Entire home/apt,199,1,1,0.02,1,0 +8708,35008385,Brooklyn,Williamsburg,40.71366,-73.94021,Entire home/apt,49,7,1,0.02,1,0 +8709,11199830,Manhattan,Marble Hill,40.87495,-73.90982,Private room,45,2,1,0.02,1,0 +8710,4271676,Manhattan,Nolita,40.72287,-73.99593,Entire home/apt,265,2,90,1.95,3,11 +8711,3131306,Brooklyn,Clinton Hill,40.68623,-73.96755,Entire home/apt,220,30,1,0.02,1,0 +8712,2135117,Brooklyn,Windsor Terrace,40.65766,-73.97927,Private room,52,2,53,2.87,1,55 +8713,35025150,Brooklyn,Williamsburg,40.72006,-73.95694,Entire home/apt,180,2,6,0.14,1,0 +8714,6847312,Manhattan,Upper East Side,40.78165,-73.94825,Entire home/apt,127,2,30,0.62,1,0 +8715,35030648,Manhattan,East Village,40.72354,-73.9819,Private room,108,2,17,0.35,1,0 +8716,22727131,Queens,Flushing,40.75529,-73.83043,Entire home/apt,150,7,1,0.02,1,0 +8717,481921,Brooklyn,Prospect Heights,40.67604,-73.96875,Entire home/apt,440,4,23,0.47,1,7 +8718,29417590,Manhattan,Chelsea,40.7465,-73.991,Private room,100,1,2,0.04,1,0 +8719,398440,Brooklyn,Bedford-Stuyvesant,40.6913,-73.92934,Entire home/apt,200,3,4,0.53,1,14 +8720,10717539,Brooklyn,Flatbush,40.63485,-73.96208,Entire home/apt,175,1,0,,1,0 +8721,4316973,Manhattan,Hell's Kitchen,40.75335,-73.99525,Entire home/apt,180,3,2,0.76,1,2 +8722,12432650,Manhattan,Chinatown,40.7142,-73.99119,Entire home/apt,250,5,14,0.45,1,5 +8723,34914311,Bronx,Longwood,40.8198,-73.90341,Private room,99,1,0,,1,0 +8724,35070587,Brooklyn,Sunset Park,40.65972,-73.9937,Private room,75,7,0,,1,0 +8725,35075473,Brooklyn,Carroll Gardens,40.67885,-74.00027,Entire home/apt,150,5,5,0.1,1,0 +8726,13953653,Queens,Sunnyside,40.74573,-73.92260999999999,Private room,49,6,15,0.3,1,128 +8727,8730,Manhattan,Chelsea,40.73692,-73.99219000000001,Entire home/apt,1495,1,11,0.22,1,0 +8728,35087743,Manhattan,East Village,40.72132,-73.98263,Entire home/apt,100,5,0,,1,0 +8729,34841020,Brooklyn,Williamsburg,40.71056,-73.94906,Private room,110,1,1,0.02,1,0 +8730,34578795,Queens,Astoria,40.75929,-73.9173,Private room,45,10,1,0.02,1,0 +8731,35100060,Manhattan,Harlem,40.80144,-73.95193,Entire home/apt,399,4,15,0.31,2,5 +8732,16462666,Brooklyn,Williamsburg,40.71506,-73.96181999999999,Private room,103,2,1,0.03,3,0 +8733,35103293,Bronx,Norwood,40.87225,-73.88748000000001,Private room,33,7,40,0.82,1,0 +8734,35103206,Queens,Rego Park,40.7262,-73.8672,Entire home/apt,86,3,3,0.09,1,0 +8735,25071191,Queens,Ditmars Steinway,40.78112,-73.91079,Entire home/apt,110,5,5,0.1,1,0 +8736,2466294,Brooklyn,Bushwick,40.70264,-73.91702,Entire home/apt,160,2,3,0.06,2,359 +8737,8556751,Queens,Ditmars Steinway,40.77583,-73.9131,Private room,50,3,0,,1,0 +8738,11039369,Brooklyn,Fort Greene,40.68881,-73.97391,Private room,55,1,1,0.02,1,0 +8739,14946552,Brooklyn,Park Slope,40.668659999999996,-73.98214,Private room,100,14,0,,1,0 +8740,10771238,Manhattan,Harlem,40.82608,-73.9525,Private room,80,2,185,3.72,3,203 +8741,22651758,Queens,Sunnyside,40.74147,-73.91996999999999,Entire home/apt,85,1,2,0.04,1,0 +8742,35144920,Manhattan,Upper East Side,40.766999999999996,-73.95456,Private room,100,1,0,,1,0 +8743,1401919,Brooklyn,Bedford-Stuyvesant,40.684470000000005,-73.9543,Entire home/apt,275,3,21,0.44,1,5 +8744,35149173,Manhattan,Midtown,40.75549,-73.97149,Entire home/apt,450,2,2,0.04,1,364 +8745,12447185,Brooklyn,Crown Heights,40.675470000000004,-73.95711,Private room,80,1,0,,1,0 +8746,34988058,Manhattan,Upper East Side,40.762170000000005,-73.96621999999999,Entire home/apt,275,1,0,,1,0 +8747,6226676,Manhattan,Harlem,40.80748,-73.94922,Entire home/apt,120,2,1,0.02,1,0 +8748,35108277,Manhattan,Upper East Side,40.76685,-73.95265,Entire home/apt,250,5,0,,1,0 +8749,171653,Brooklyn,Park Slope,40.6669,-73.97827,Entire home/apt,250,2,1,0.03,1,0 +8750,31765814,Queens,Astoria,40.765609999999995,-73.92056,Private room,85,1,3,0.06,1,0 +8751,24466159,Manhattan,East Village,40.728790000000004,-73.98575,Private room,100,7,2,0.04,1,0 +8752,23082955,Brooklyn,Williamsburg,40.708729999999996,-73.95219,Private room,65,1,107,2.17,1,0 +8753,34992043,Queens,Flushing,40.74024,-73.83105,Private room,68,1,222,4.48,2,330 +8754,15444104,Manhattan,Upper East Side,40.77878,-73.94491,Entire home/apt,170,10,11,0.24,1,0 +8755,35174506,Brooklyn,Bensonhurst,40.61625,-73.9916,Private room,50,2,9,1.41,1,81 +8756,4130512,Brooklyn,Bushwick,40.69093,-73.91291,Private room,45,30,1,0.03,1,0 +8757,26377263,Brooklyn,East Flatbush,40.660790000000006,-73.9342,Private room,48,30,2,0.06,43,249 +8758,26377263,Brooklyn,East Flatbush,40.660579999999996,-73.93383,Private room,43,30,1,0.02,43,347 +8759,26377263,Brooklyn,East Flatbush,40.66037,-73.93316,Private room,47,30,0,,43,311 +8760,21079341,Manhattan,Chelsea,40.74558,-74.00325,Entire home/apt,260,2,2,0.18,1,0 +8761,5013592,Brooklyn,Flatbush,40.638000000000005,-73.96741999999999,Entire home/apt,75,7,0,,1,0 +8762,19406327,Manhattan,Murray Hill,40.747859999999996,-73.97277,Shared room,160,1,0,,1,365 +8763,21444167,Bronx,Kingsbridge,40.88238,-73.90689,Entire home/apt,159,3,8,0.17,2,112 +8764,921857,Brooklyn,Bedford-Stuyvesant,40.68354,-73.92612,Private room,50,7,3,0.06,1,31 +8765,7588851,Brooklyn,Prospect-Lefferts Gardens,40.6637,-73.94644,Entire home/apt,100,5,0,,1,0 +8766,34058193,Brooklyn,Bedford-Stuyvesant,40.68972,-73.95629,Entire home/apt,60,5,5,0.1,1,0 +8767,6386894,Brooklyn,Cobble Hill,40.68701,-73.99054,Private room,80,2,4,0.19,2,0 +8768,6386894,Brooklyn,Boerum Hill,40.68542,-73.98916,Entire home/apt,115,4,13,0.64,2,18 +8769,7186661,Manhattan,Chelsea,40.74688,-74.00145,Entire home/apt,200,1,4,0.09,1,0 +8770,32220047,Queens,Springfield Gardens,40.684909999999995,-73.75895,Entire home/apt,160,3,29,0.59,3,179 +8771,24131487,Manhattan,Harlem,40.80352,-73.95079,Entire home/apt,109,3,1,0.02,1,0 +8772,35086035,Brooklyn,Crown Heights,40.669129999999996,-73.93199,Private room,25,2,5,0.27,1,158 +8773,63588,Brooklyn,Prospect Heights,40.67731,-73.96683,Entire home/apt,280,5,5,0.1,2,0 +8774,35254359,Queens,Astoria,40.76774,-73.92414000000001,Entire home/apt,120,1,0,,1,0 +8775,30345458,Brooklyn,Williamsburg,40.71444,-73.96024,Entire home/apt,98,3,8,0.21,1,0 +8776,5532810,Brooklyn,Williamsburg,40.71676,-73.9439,Private room,70,2,99,2.02,2,37 +8777,1398639,Brooklyn,Bedford-Stuyvesant,40.688140000000004,-73.93089,Private room,55,10,14,0.31,3,301 +8778,35280507,Queens,Ridgewood,40.707370000000004,-73.91439,Entire home/apt,100,3,17,1.41,1,0 +8779,10576227,Manhattan,Chelsea,40.7481,-74.00533,Entire home/apt,200,5,1,0.02,1,0 +8780,8965532,Manhattan,Lower East Side,40.71937,-73.99098000000001,Entire home/apt,120,1,11,0.27,1,0 +8781,35287916,Brooklyn,Greenpoint,40.73401,-73.95470999999999,Entire home/apt,150,14,1,0.02,1,0 +8782,25368839,Staten Island,Dongan Hills,40.58115,-74.09182,Entire home/apt,155,3,63,1.29,1,0 +8783,1012583,Brooklyn,Williamsburg,40.71458,-73.96181,Private room,60,7,6,0.13,2,0 +8784,35299368,Manhattan,Murray Hill,40.74798,-73.9814,Private room,200,1,1,0.02,1,0 +8785,6028102,Manhattan,Upper East Side,40.77259,-73.95647,Entire home/apt,200,3,47,0.95,1,0 +8786,5556571,Brooklyn,Williamsburg,40.70645,-73.9379,Shared room,25,1,25,0.5,3,358 +8787,740756,Manhattan,West Village,40.73742,-74.00171,Entire home/apt,199,2,14,0.29,1,0 +8788,1211067,Staten Island,Tompkinsville,40.62154,-74.08700999999999,Private room,49,2,100,2.12,2,284 +8789,2388537,Manhattan,Morningside Heights,40.81666,-73.96074,Entire home/apt,105,15,33,0.69,2,5 +8790,35322092,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92783,Private room,49,1,107,2.19,3,69 +8791,3282552,Manhattan,Upper West Side,40.77818,-73.98959,Entire home/apt,256,4,11,0.23,1,0 +8792,29769754,Manhattan,NoHo,40.7259,-73.9939,Entire home/apt,499,3,35,0.72,1,223 +8793,20904647,Brooklyn,Fort Greene,40.68662,-73.97601999999999,Private room,90,4,32,0.67,1,295 +8794,35329789,Brooklyn,Sunset Park,40.66002,-73.99073,Entire home/apt,80,4,152,3.08,1,142 +8795,3900093,Brooklyn,Williamsburg,40.71054,-73.95669000000001,Entire home/apt,180,3,35,0.71,1,18 +8796,1490702,Manhattan,Chelsea,40.741209999999995,-74.00121999999999,Entire home/apt,145,6,2,0.04,1,0 +8797,34950721,Brooklyn,Williamsburg,40.70799,-73.94888,Private room,100,1,1,0.02,2,0 +8798,4195861,Brooklyn,Crown Heights,40.67837,-73.95517,Entire home/apt,150,3,208,4.36,2,238 +8799,25111342,Brooklyn,Kensington,40.6345,-73.97270999999999,Private room,95,2,0,,1,0 +8800,173938,Brooklyn,Bedford-Stuyvesant,40.684909999999995,-73.94919,Private room,55,5,4,0.08,1,21 +8801,35288455,Brooklyn,Williamsburg,40.71154,-73.96424,Entire home/apt,147,3,55,1.29,1,5 +8802,7209,Manhattan,Midtown,40.74642,-73.98516,Entire home/apt,220,3,108,2.17,1,24 +8803,28813132,Manhattan,Morningside Heights,40.816559999999996,-73.96122,Private room,70,1,0,,1,0 +8804,22894987,Brooklyn,Williamsburg,40.71085,-73.94894000000001,Entire home/apt,100,1,0,,1,0 +8805,35384978,Manhattan,Upper East Side,40.77635,-73.94813,Entire home/apt,888,2,42,0.86,2,35 +8806,5693024,Brooklyn,Bedford-Stuyvesant,40.68675,-73.94497,Private room,40,1,1,0.02,1,0 +8807,35386618,Queens,Astoria,40.757059999999996,-73.91834,Private room,70,1,7,0.15,1,325 +8808,35388074,Brooklyn,Sunset Park,40.64465,-74.01881,Private room,150,1,1,0.02,1,0 +8809,12432739,Brooklyn,Greenpoint,40.73511,-73.95551,Private room,75,7,1,0.03,1,0 +8810,35391852,Brooklyn,Bushwick,40.69545,-73.92336,Entire home/apt,85,5,2,0.04,1,0 +8811,11631535,Manhattan,East Harlem,40.79596,-73.94958000000001,Entire home/apt,124,3,6,0.14,1,0 +8812,29239547,Manhattan,Washington Heights,40.85322,-73.93563,Entire home/apt,89,2,25,0.79,1,346 +8813,1549503,Brooklyn,Brooklyn Heights,40.690090000000005,-73.99355,Entire home/apt,195,3,1,0.02,1,0 +8814,2521069,Brooklyn,Williamsburg,40.71374,-73.9627,Entire home/apt,160,3,27,0.55,1,193 +8815,5360450,Manhattan,Harlem,40.81791,-73.95357,Private room,60,1,5,0.1,1,0 +8816,362418,Brooklyn,DUMBO,40.703179999999996,-73.9878,Private room,125,3,181,3.67,1,111 +8817,35415860,Manhattan,West Village,40.7342,-74.00854,Entire home/apt,225,2,6,0.12,1,0 +8818,35417042,Queens,Astoria,40.76855,-73.92583,Private room,86,4,28,0.59,1,364 +8819,35421272,Brooklyn,Williamsburg,40.71128,-73.954,Entire home/apt,119,4,6,0.12,1,0 +8820,35422693,Brooklyn,Crown Heights,40.66922,-73.94682,Entire home/apt,70,15,9,0.19,1,0 +8821,35423181,Queens,Astoria,40.7665,-73.91759,Private room,75,1,10,0.22,1,357 +8822,35426209,Queens,Astoria,40.76964,-73.91402,Entire home/apt,150,3,3,0.06,1,0 +8823,35426480,Brooklyn,Fort Greene,40.69297,-73.9741,Entire home/apt,145,25,1,0.02,1,0 +8824,27103894,Brooklyn,Williamsburg,40.70965,-73.94411,Private room,115,1,0,,1,0 +8825,308930,Brooklyn,Prospect-Lefferts Gardens,40.655770000000004,-73.95903,Entire home/apt,130,5,7,0.15,1,0 +8826,23582893,Brooklyn,Bushwick,40.69047,-73.91565,Private room,53,21,24,0.49,8,114 +8827,35432501,Manhattan,Midtown,40.75861,-73.96939,Private room,110,1,0,,1,0 +8828,24742173,Manhattan,Upper West Side,40.79745,-73.96936,Entire home/apt,130,4,16,0.32,3,0 +8829,30616879,Queens,Flushing,40.75443,-73.80787,Private room,48,2,53,1.07,3,153 +8830,32220047,Queens,Springfield Gardens,40.685109999999995,-73.76012,Entire home/apt,105,3,7,0.14,3,0 +8831,23985505,Manhattan,Greenwich Village,40.72835,-74.00259,Entire home/apt,150,1,0,,1,0 +8832,9284163,Queens,Woodhaven,40.689820000000005,-73.85379,Entire home/apt,65,2,85,2.4,3,311 +8833,35474215,Queens,Ridgewood,40.70966,-73.90064,Entire home/apt,100,4,1,0.02,1,0 +8834,9284163,Queens,Woodhaven,40.68955,-73.85348,Private room,39,2,262,5.28,3,346 +8835,35476099,Manhattan,Upper East Side,40.769659999999995,-73.95319,Entire home/apt,150,5,2,0.04,1,0 +8836,6378149,Brooklyn,Bushwick,40.6987,-73.91578,Private room,50,2,28,0.56,3,0 +8837,18591697,Manhattan,Washington Heights,40.83705,-73.9399,Private room,55,7,4,0.09,1,0 +8838,35488245,Manhattan,West Village,40.73212,-74.01051,Entire home/apt,195,1,1,0.02,1,0 +8839,230856,Brooklyn,Williamsburg,40.7154,-73.93866,Entire home/apt,295,30,6,0.13,1,0 +8840,3403868,Manhattan,West Village,40.73643,-74.00350999999999,Entire home/apt,140,4,0,,1,0 +8841,31147528,Brooklyn,Williamsburg,40.71354,-73.93881999999999,Private room,45,1,0,,1,0 +8842,23582893,Brooklyn,Bushwick,40.69058,-73.91471,Private room,50,91,42,0.85,8,218 +8843,35512327,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94243,Private room,75,3,0,,1,0 +8844,18268348,Manhattan,Little Italy,40.71968,-73.9968,Private room,110,4,12,0.26,1,0 +8845,6387355,Brooklyn,Bushwick,40.69959,-73.92975,Private room,64,2,48,1.0,2,318 +8846,7788268,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95947,Private room,75,2,10,0.22,1,52 +8847,12764250,Manhattan,Financial District,40.70793,-74.00411,Private room,125,1,0,,1,0 +8848,29509026,Manhattan,Upper East Side,40.76644,-73.95803000000001,Entire home/apt,130,1,6,0.13,1,0 +8849,15724675,Queens,Woodside,40.74375,-73.90678,Private room,50,2,16,0.42,2,0 +8850,2903840,Brooklyn,Greenpoint,40.72298,-73.94545,Entire home/apt,270,4,4,0.09,1,7 +8851,18186682,Manhattan,Inwood,40.87211,-73.91544,Entire home/apt,78,30,2,0.09,1,15 +8852,32722063,Brooklyn,East Flatbush,40.64345,-73.93643,Entire home/apt,100,2,157,3.18,2,342 +8853,35524316,Manhattan,Hell's Kitchen,40.76037,-73.99084,Private room,155,1,176,3.57,11,248 +8854,35524316,Manhattan,Hell's Kitchen,40.76044,-73.98903,Private room,210,1,182,3.69,11,249 +8855,32596841,Brooklyn,Crown Heights,40.67852,-73.9557,Private room,59,1,1,0.02,2,0 +8856,8198108,Brooklyn,Greenpoint,40.72278,-73.94478000000001,Entire home/apt,140,2,8,0.17,1,0 +8857,12965328,Brooklyn,Greenpoint,40.73632,-73.95445,Private room,59,3,0,,1,0 +8858,35340889,Queens,Sunnyside,40.74589,-73.91956,Entire home/apt,89,5,4,0.09,1,0 +8859,24973811,Manhattan,Inwood,40.86623,-73.91993000000001,Private room,50,1,1,0.02,1,0 +8860,12541502,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94438000000001,Private room,85,3,0,,1,0 +8861,35524316,Manhattan,Hell's Kitchen,40.7614,-73.98954,Private room,155,1,179,3.66,11,243 +8862,33622924,Manhattan,Harlem,40.83174,-73.94686,Private room,75,1,134,3.13,4,354 +8863,35574300,Brooklyn,Gowanus,40.67928,-73.98254,Private room,98,1,238,4.85,1,236 +8864,8924676,Manhattan,Upper West Side,40.778240000000004,-73.97700999999999,Entire home/apt,375,1,0,,1,0 +8865,35581556,Manhattan,Gramercy,40.73727,-73.98432,Entire home/apt,120,1,0,,1,0 +8866,11013095,Manhattan,Upper East Side,40.77734,-73.95997,Entire home/apt,150,8,0,,1,0 +8867,1320538,Brooklyn,Williamsburg,40.70995,-73.96609000000001,Entire home/apt,102,10,8,0.2,1,277 +8868,33279657,Brooklyn,Midwood,40.61291,-73.94972,Entire home/apt,85,2,20,0.41,1,0 +8869,35590273,Brooklyn,Red Hook,40.677279999999996,-74.00572,Entire home/apt,80,1,0,,2,0 +8870,35590273,Brooklyn,Red Hook,40.676590000000004,-74.00643000000001,Private room,35,10,1,0.02,2,0 +8871,35524316,Manhattan,Hell's Kitchen,40.7618,-73.99093,Private room,255,1,192,3.91,11,305 +8872,35524316,Manhattan,Hell's Kitchen,40.76207,-73.98945,Private room,245,1,162,3.29,11,1 +8873,35524316,Manhattan,Hell's Kitchen,40.76146,-73.99109,Private room,155,1,201,4.1,11,240 +8874,35524316,Manhattan,Hell's Kitchen,40.76015,-73.99086,Private room,155,1,200,4.07,11,240 +8875,257676,Brooklyn,Flatbush,40.65348,-73.95978000000001,Private room,148,1,12,0.24,2,90 +8876,35524316,Manhattan,Hell's Kitchen,40.75987,-73.99056,Private room,155,1,203,4.13,11,211 +8877,35524316,Manhattan,Hell's Kitchen,40.76036,-73.99073,Private room,165,1,153,3.16,11,271 +8878,35524316,Manhattan,Hell's Kitchen,40.76185,-73.99126,Private room,155,1,189,3.86,11,245 +8879,503555,Brooklyn,Williamsburg,40.712959999999995,-73.96148000000001,Entire home/apt,389,3,18,0.37,3,0 +8880,7858210,Manhattan,Harlem,40.81456,-73.94159,Private room,65,2,105,2.12,4,180 +8881,503555,Brooklyn,Williamsburg,40.71481,-73.96262,Private room,89,8,6,0.13,3,0 +8882,20279153,Brooklyn,Crown Heights,40.67702,-73.96261,Entire home/apt,250,5,3,0.06,1,0 +8883,7323687,Manhattan,Upper West Side,40.793040000000005,-73.97725,Private room,125,1,0,,1,0 +8884,32924087,Manhattan,Washington Heights,40.8334,-73.93913,Private room,81,2,8,0.16,2,0 +8885,4055091,Manhattan,East Village,40.729490000000006,-73.98012,Private room,80,1,0,,1,0 +8886,7853731,Brooklyn,Crown Heights,40.67367,-73.96079,Entire home/apt,200,5,3,0.06,2,157 +8887,35634594,Brooklyn,Prospect-Lefferts Gardens,40.66233,-73.9615,Entire home/apt,130,7,1,0.02,1,0 +8888,35637698,Manhattan,Kips Bay,40.74362,-73.98058,Entire home/apt,100,6,4,0.08,1,0 +8889,23582893,Brooklyn,Bushwick,40.68908,-73.91452,Private room,61,2,59,1.22,8,102 +8890,198010,Manhattan,West Village,40.73728,-74.00773000000001,Entire home/apt,95,5,4,0.09,1,0 +8891,35660592,Queens,Maspeth,40.73878,-73.89423000000001,Private room,65,2,92,1.87,6,79 +8892,21130473,Brooklyn,Bedford-Stuyvesant,40.68587,-73.92094,Private room,40,5,4,0.08,1,0 +8893,400240,Brooklyn,Flatbush,40.65303,-73.96164,Entire home/apt,120,6,1,0.1,2,0 +8894,23582893,Brooklyn,Bushwick,40.690540000000006,-73.91403000000001,Private room,59,2,36,0.83,8,218 +8895,2608356,Manhattan,Battery Park City,40.70944,-74.01829000000001,Entire home/apt,100,21,0,,1,222 +8896,19109608,Queens,Astoria,40.762190000000004,-73.91963,Entire home/apt,135,1,229,4.65,3,89 +8897,1550419,Brooklyn,Fort Greene,40.6892,-73.96976,Private room,50,1,0,,1,0 +8898,24742173,Manhattan,Upper West Side,40.79866,-73.9681,Entire home/apt,460,4,11,0.23,3,0 +8899,2264481,Brooklyn,Bedford-Stuyvesant,40.685520000000004,-73.93581,Entire home/apt,110,4,15,0.31,1,97 +8900,1153591,Brooklyn,Boerum Hill,40.68724,-73.98595999999999,Entire home/apt,225,2,24,0.49,1,189 +8901,35726649,Queens,Jackson Heights,40.751290000000004,-73.88784,Entire home/apt,135,5,8,0.17,1,0 +8902,13219494,Brooklyn,Clinton Hill,40.68636,-73.96207,Entire home/apt,125,1,1,0.02,1,0 +8903,1456436,Brooklyn,Bushwick,40.69859,-73.92401,Private room,64,5,32,0.65,1,0 +8904,23582893,Brooklyn,Bushwick,40.6904,-73.91538,Private room,58,6,31,0.63,8,147 +8905,35350208,Manhattan,Washington Heights,40.84872,-73.93633,Private room,69,1,1,0.02,1,0 +8906,7021059,Manhattan,Upper East Side,40.76806,-73.95227,Private room,59,1,0,,2,0 +8907,10630723,Brooklyn,Bedford-Stuyvesant,40.6888,-73.93545,Entire home/apt,177,3,144,3.02,2,260 +8908,5967944,Brooklyn,Bushwick,40.7027,-73.92511999999999,Entire home/apt,150,1,0,,1,0 +8909,28509737,Brooklyn,Williamsburg,40.70412,-73.93555,Private room,69,14,1,0.02,2,0 +8910,3759488,Brooklyn,Fort Greene,40.6886,-73.97409,Entire home/apt,275,4,1,0.02,1,146 +8911,35788303,Manhattan,Chelsea,40.74733,-73.99023000000001,Private room,99,1,17,0.39,1,0 +8912,26185036,Brooklyn,Williamsburg,40.71647,-73.93824000000001,Private room,65,1,0,,1,0 +8913,1587123,Manhattan,Upper East Side,40.76716,-73.96366,Entire home/apt,135,3,4,0.09,1,0 +8914,1787313,Manhattan,West Village,40.73185,-74.00271,Entire home/apt,150,4,5,0.1,1,0 +8915,10767841,Manhattan,Lower East Side,40.71321,-73.99099,Entire home/apt,2000,1,18,0.39,1,365 +8916,2851131,Brooklyn,Bedford-Stuyvesant,40.68175,-73.91144,Entire home/apt,90,2,23,3.65,1,190 +8917,28509737,Brooklyn,Williamsburg,40.70299,-73.93585,Private room,59,5,2,0.04,2,0 +8918,438545,Brooklyn,Carroll Gardens,40.682759999999995,-74.00016,Entire home/apt,275,4,0,,1,0 +8919,2947857,Manhattan,Lower East Side,40.71966,-73.98165999999999,Entire home/apt,215,14,1,0.02,1,0 +8920,14261988,Brooklyn,Flatbush,40.6412,-73.95302,Entire home/apt,70,2,150,3.34,1,222 +8921,35829854,Manhattan,Lower East Side,40.72082,-73.98592,Private room,135,1,6,0.12,1,0 +8922,5361360,Manhattan,Upper West Side,40.78787,-73.97116,Entire home/apt,200,3,6,0.16,1,0 +8923,14171882,Manhattan,Upper East Side,40.773720000000004,-73.94986,Entire home/apt,120,1,6,0.12,1,0 +8924,2558534,Brooklyn,Williamsburg,40.715709999999994,-73.96556,Entire home/apt,85,3,93,1.9,1,13 +8925,35878048,Manhattan,Morningside Heights,40.81103,-73.95804,Private room,82,1,0,,1,0 +8926,973817,Manhattan,Washington Heights,40.85151,-73.93789,Entire home/apt,105,2,0,,1,0 +8927,35897162,Brooklyn,Williamsburg,40.709540000000004,-73.94808,Private room,52,20,6,0.23,1,0 +8928,27287584,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.94457,Entire home/apt,250,4,0,,1,0 +8929,33605216,Manhattan,Washington Heights,40.8395,-73.9447,Private room,145,3,1,0.02,1,3 +8930,35902297,Brooklyn,Carroll Gardens,40.67416,-73.99955,Private room,40,1,0,,1,0 +8931,6959884,Manhattan,Greenwich Village,40.729,-74.00066,Entire home/apt,245,3,18,0.38,1,307 +8932,2407990,Brooklyn,Greenpoint,40.729820000000004,-73.95503000000001,Entire home/apt,120,3,2,0.05,1,0 +8933,3997451,Manhattan,Chelsea,40.74153,-74.00036,Entire home/apt,150,2,106,2.29,1,318 +8934,35914632,Manhattan,Lower East Side,40.71905,-73.98487,Entire home/apt,250,2,2,0.04,1,0 +8935,946943,Brooklyn,Williamsburg,40.71332,-73.94951999999999,Entire home/apt,295,2,0,,3,0 +8936,946943,Brooklyn,Williamsburg,40.712379999999996,-73.94776,Entire home/apt,125,4,148,3.01,3,11 +8937,22136368,Brooklyn,Bedford-Stuyvesant,40.683820000000004,-73.9215,Entire home/apt,120,2,0,,1,0 +8938,14495918,Brooklyn,Greenpoint,40.73376,-73.95443,Private room,40,7,2,0.05,1,0 +8939,1461503,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92425,Private room,55,1,2,0.04,1,0 +8940,35919822,Manhattan,Financial District,40.70892,-74.01325,Entire home/apt,130,14,1,0.02,1,0 +8941,24260658,Manhattan,East Harlem,40.79487,-73.93477,Private room,110,2,68,1.39,5,44 +8942,15783878,Manhattan,Harlem,40.82094,-73.95622,Private room,185,2,14,0.33,1,155 +8943,17782625,Brooklyn,DUMBO,40.70212,-73.9851,Entire home/apt,245,3,8,0.16,2,0 +8944,4754282,Manhattan,Midtown,40.76493,-73.98066,Entire home/apt,700,2,5,0.1,1,63 +8945,21705761,Brooklyn,Park Slope,40.66722,-73.97811,Entire home/apt,215,2,2,0.05,1,0 +8946,700224,Brooklyn,Gowanus,40.68338,-73.98657,Entire home/apt,250,29,16,0.36,4,300 +8947,3313475,Manhattan,Kips Bay,40.742290000000004,-73.98165,Entire home/apt,150,2,2,0.04,1,0 +8948,35798207,Brooklyn,Bedford-Stuyvesant,40.69468,-73.94729,Private room,80,1,0,,1,0 +8949,35969865,Manhattan,Lower East Side,40.714490000000005,-73.9874,Private room,89,3,68,1.38,1,252 +8950,29480685,Manhattan,East Village,40.72148,-73.98235,Entire home/apt,244,2,22,0.45,1,1 +8951,844227,Brooklyn,Williamsburg,40.71117,-73.95291999999999,Private room,74,3,9,0.66,1,18 +8952,4939720,Brooklyn,Crown Heights,40.66689,-73.95881999999999,Entire home/apt,88,1,8,0.17,1,0 +8953,3256433,Manhattan,Lower East Side,40.72215,-73.9914,Entire home/apt,150,30,17,0.36,7,0 +8954,35983559,Brooklyn,East Flatbush,40.63868,-73.95049,Entire home/apt,150,4,93,1.93,3,320 +8955,13667779,Manhattan,Harlem,40.82443,-73.93843000000001,Private room,40,2,27,0.55,2,345 +8956,35997540,Manhattan,Upper West Side,40.78748,-73.98023,Entire home/apt,150,1,0,,1,0 +8957,731601,Queens,Astoria,40.77199,-73.93159,Private room,55,15,1,0.02,2,0 +8958,34780872,Manhattan,Upper West Side,40.7787,-73.98088,Entire home/apt,259,3,20,0.41,1,0 +8959,4271676,Manhattan,Nolita,40.7214,-73.99635,Private room,100,1,18,0.38,3,0 +8960,26490481,Brooklyn,Greenpoint,40.72424,-73.95303,Entire home/apt,125,1,1,0.02,1,0 +8961,17475096,Brooklyn,Flatbush,40.65194,-73.95997,Entire home/apt,85,2,2,0.05,2,0 +8962,36055888,Manhattan,Harlem,40.83019,-73.94991,Private room,75,2,1,0.02,1,0 +8963,25111426,Manhattan,Hell's Kitchen,40.76308,-73.99,Private room,190,2,0,,1,0 +8964,4040200,Manhattan,Lower East Side,40.71952,-73.98535,Entire home/apt,198,2,17,0.35,1,0 +8965,14510607,Queens,Astoria,40.762570000000004,-73.92634,Entire home/apt,300,2,13,0.27,1,365 +8966,35651501,Manhattan,Chelsea,40.73983,-73.9988,Entire home/apt,295,1,17,0.35,1,175 +8967,36072139,Brooklyn,Bushwick,40.69296,-73.9242,Private room,50,1,0,,1,0 +8968,19789003,Brooklyn,Bedford-Stuyvesant,40.686659999999996,-73.91972,Private room,35,1,1,0.02,1,0 +8969,640117,Brooklyn,Williamsburg,40.71314,-73.95535,Private room,80,3,8,0.17,5,0 +8970,36074783,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95211,Entire home/apt,200,5,0,,1,0 +8971,7238334,Brooklyn,Greenpoint,40.72253,-73.94733000000001,Private room,110,1,1,0.02,1,0 +8972,1442860,Brooklyn,Flatbush,40.6548,-73.95388,Private room,40,2,32,0.68,1,82 +8973,36080537,Manhattan,Hell's Kitchen,40.756029999999996,-73.99247,Entire home/apt,95,1,0,,1,0 +8974,5743711,Brooklyn,Williamsburg,40.70748,-73.95503000000001,Private room,75,2,2,0.04,1,0 +8975,1694147,Manhattan,Hell's Kitchen,40.767340000000004,-73.98676,Entire home/apt,199,3,13,0.27,1,4 +8976,11081099,Manhattan,Harlem,40.82878,-73.94625,Private room,50,1,1,0.02,1,0 +8977,21426910,Brooklyn,Gravesend,40.596270000000004,-73.97287,Entire home/apt,109,2,224,4.7,2,73 +8978,36119026,Brooklyn,Sheepshead Bay,40.58804,-73.95674,Entire home/apt,120,2,15,0.4,1,334 +8979,10348305,Brooklyn,Flatbush,40.63967,-73.96424,Private room,50,27,3,0.06,1,17 +8980,7107154,Brooklyn,Greenpoint,40.73659,-73.95354,Entire home/apt,95,5,4,0.11,1,0 +8981,10489933,Manhattan,Midtown,40.76003,-73.96969,Entire home/apt,180,30,0,,1,177 +8982,72773,Brooklyn,Williamsburg,40.720040000000004,-73.95615,Private room,100,3,51,1.07,1,345 +8983,11395856,Manhattan,Kips Bay,40.74508,-73.97854,Entire home/apt,350,3,6,0.13,1,0 +8984,32775769,Brooklyn,Midwood,40.61679,-73.95521,Entire home/apt,89,7,5,0.1,1,251 +8985,25812962,Manhattan,East Harlem,40.78968,-73.94202,Private room,80,1,39,0.82,3,306 +8986,2831384,Queens,Woodside,40.74198,-73.89558000000001,Entire home/apt,125,1,262,5.37,1,246 +8987,36164182,Brooklyn,Bushwick,40.69712,-73.93325,Entire home/apt,155,2,114,2.86,3,250 +8988,36166165,Brooklyn,Williamsburg,40.71909,-73.95810999999999,Private room,62,1,1,0.05,1,0 +8989,36167966,Manhattan,Harlem,40.800540000000005,-73.95496999999999,Entire home/apt,93,12,5,0.14,1,0 +8990,36164182,Brooklyn,Bushwick,40.69768,-73.93359,Private room,80,2,51,1.04,3,249 +8991,88032,Brooklyn,Crown Heights,40.676590000000004,-73.95416999999999,Entire home/apt,65,7,0,,1,0 +8992,36176332,Brooklyn,Flatbush,40.65146,-73.96634,Entire home/apt,120,5,19,0.39,1,1 +8993,21705530,Brooklyn,Clinton Hill,40.694390000000006,-73.96898,Entire home/apt,450,7,1,0.04,1,0 +8994,2119276,Manhattan,Chelsea,40.74138,-74.00072,Entire home/apt,155,30,6,0.13,39,289 +8995,36205028,Queens,Jamaica,40.686370000000004,-73.79214,Private room,53,1,189,3.9,2,348 +8996,36207962,Manhattan,Upper West Side,40.78267,-73.97661,Entire home/apt,150,3,13,0.26,1,0 +8997,36208205,Manhattan,Washington Heights,40.84666,-73.9379,Private room,45,1,1,0.02,1,0 +8998,36211685,Queens,Ridgewood,40.70588,-73.91464,Private room,85,1,1,0.02,1,0 +8999,1106323,Brooklyn,Windsor Terrace,40.66036,-73.98214,Private room,59,1,1,0.03,2,0 +9000,21183428,Brooklyn,Bedford-Stuyvesant,40.684020000000004,-73.95573,Entire home/apt,122,3,101,2.08,2,293 +9001,36227371,Brooklyn,Bushwick,40.70035,-73.92316,Private room,75,1,0,,1,0 +9002,15792771,Queens,Rego Park,40.725970000000004,-73.86131,Private room,80,4,2,0.04,1,0 +9003,36229779,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95767,Entire home/apt,105,1,9,0.18,1,0 +9004,26377263,Brooklyn,Bushwick,40.703759999999996,-73.91765,Private room,47,30,3,0.07,43,144 +9005,10716661,Queens,Ditmars Steinway,40.77228,-73.91345,Entire home/apt,75,3,2,0.04,1,0 +9006,26377263,Brooklyn,Bushwick,40.70393,-73.91679,Private room,47,30,3,0.06,43,259 +9007,36166297,Manhattan,Stuyvesant Town,40.7339,-73.97743,Private room,45,1,0,,1,0 +9008,36237566,Manhattan,East Village,40.727140000000006,-73.97894000000001,Private room,100,1,1,0.02,1,0 +9009,27962518,Queens,Elmhurst,40.73713,-73.8741,Private room,85,1,1,0.02,2,0 +9010,4112404,Manhattan,Hell's Kitchen,40.76441,-73.99245,Entire home/apt,269,7,31,0.66,3,11 +9011,36268893,Manhattan,Upper West Side,40.80108,-73.9705,Entire home/apt,70,1,1,0.03,1,0 +9012,1544412,Brooklyn,Williamsburg,40.71761,-73.9641,Private room,90,5,18,0.4,1,37 +9013,36279488,Manhattan,Harlem,40.8122,-73.95246,Private room,172,3,8,0.17,1,0 +9014,35921273,Brooklyn,Williamsburg,40.7173,-73.9532,Entire home/apt,160,1,1,0.02,1,0 +9015,619693,Manhattan,West Village,40.73323,-74.00434,Entire home/apt,198,2,3,0.07,1,0 +9016,742729,Manhattan,East Village,40.72691,-73.98534000000001,Entire home/apt,154,2,37,0.81,1,0 +9017,12738054,Brooklyn,Greenpoint,40.72532,-73.95338000000001,Entire home/apt,230,2,6,0.13,2,272 +9018,896708,Brooklyn,Cobble Hill,40.68391,-73.99583,Entire home/apt,285,5,4,0.36,2,19 +9019,1164568,Brooklyn,Williamsburg,40.71199,-73.96021999999999,Entire home/apt,180,3,3,0.06,1,0 +9020,36285615,Manhattan,Harlem,40.801520000000004,-73.9509,Private room,90,2,12,0.24,1,0 +9021,12072392,Manhattan,Harlem,40.802859999999995,-73.94997,Private room,120,1,0,,1,0 +9022,32767789,Manhattan,Greenwich Village,40.73256,-74.00008000000001,Private room,60,14,0,,1,0 +9023,4019055,Manhattan,Lower East Side,40.7179,-73.98477,Entire home/apt,99,2,57,1.17,1,0 +9024,1325961,Manhattan,East Harlem,40.79721,-73.94328,Entire home/apt,111,3,6,0.13,2,0 +9025,26330490,Brooklyn,Bushwick,40.70479,-73.92316,Private room,40,7,5,0.11,1,0 +9026,36308476,Brooklyn,Flatbush,40.64924,-73.96714,Private room,35,4,2,0.06,1,157 +9027,4667102,Manhattan,Little Italy,40.7185,-73.99805,Private room,95,5,1,0.02,1,0 +9028,503555,Brooklyn,Williamsburg,40.71488,-73.96148000000001,Private room,89,8,2,0.04,3,0 +9029,25237492,Manhattan,Upper East Side,40.76044,-73.96068000000001,Entire home/apt,195,30,7,0.2,34,304 +9030,36333834,Brooklyn,Bedford-Stuyvesant,40.68378,-73.93573,Entire home/apt,139,4,152,3.26,1,281 +9031,25168888,Manhattan,Harlem,40.822309999999995,-73.95626,Private room,75,3,14,0.29,3,20 +9032,35914251,Queens,Astoria,40.763709999999996,-73.92049,Entire home/apt,100,4,2,0.04,1,0 +9033,24465231,Brooklyn,Greenpoint,40.72464,-73.9533,Entire home/apt,149,7,7,0.15,1,0 +9034,36356923,Queens,Astoria,40.76348,-73.91995,Private room,55,1,0,,1,0 +9035,12028820,Manhattan,Upper East Side,40.76348,-73.95884000000001,Entire home/apt,900,7,28,0.58,1,340 +9036,36369314,Brooklyn,Williamsburg,40.716159999999995,-73.94351999999999,Entire home/apt,199,7,3,0.06,1,0 +9037,36373090,Brooklyn,Bushwick,40.70043,-73.92166999999999,Private room,70,5,1,0.02,1,0 +9038,1106323,Brooklyn,Windsor Terrace,40.66036,-73.98244,Private room,65,3,0,,2,0 +9039,36375657,Manhattan,Kips Bay,40.73873,-73.98153,Shared room,800,30,1,0.02,1,0 +9040,5164854,Manhattan,Harlem,40.81961,-73.93937,Private room,43,6,6,0.12,8,324 +9041,36381094,Brooklyn,Park Slope,40.67177,-73.97882,Entire home/apt,229,3,22,0.46,1,0 +9042,34930811,Manhattan,East Village,40.72517,-73.98742,Entire home/apt,195,1,15,0.31,1,0 +9043,2419331,Brooklyn,Greenpoint,40.73407,-73.95314,Entire home/apt,150,14,3,0.06,1,0 +9044,2723812,Bronx,Mott Haven,40.80993,-73.92613,Entire home/apt,100,2,57,1.17,2,284 +9045,36307255,Manhattan,Tribeca,40.715,-74.0094,Entire home/apt,700,1,8,0.16,1,0 +9046,36387290,Manhattan,Upper West Side,40.78147,-73.97806,Entire home/apt,150,1,0,,1,0 +9047,36006178,Manhattan,Hell's Kitchen,40.76497,-73.98848000000001,Entire home/apt,300,7,8,0.21,1,0 +9048,3266476,Manhattan,Kips Bay,40.742059999999995,-73.98014,Private room,100,5,11,0.23,1,0 +9049,36388501,Brooklyn,Williamsburg,40.706579999999995,-73.93800999999999,Private room,50,3,5,0.1,1,0 +9050,13031379,Manhattan,Upper East Side,40.77252,-73.9556,Entire home/apt,140,2,57,1.18,1,0 +9051,36400642,Manhattan,Midtown,40.76448,-73.98187,Entire home/apt,175,7,0,,1,0 +9052,10124757,Manhattan,Upper West Side,40.78905,-73.96748000000001,Entire home/apt,185,8,3,0.06,1,0 +9053,36413917,Brooklyn,Williamsburg,40.707029999999996,-73.95234,Private room,73,14,0,,1,0 +9054,204472,Brooklyn,South Slope,40.66672,-73.98461999999999,Entire home/apt,250,3,2,0.04,1,0 +9055,35968845,Manhattan,Upper West Side,40.79421,-73.97097,Private room,89,3,1,0.02,2,0 +9056,36425465,Manhattan,Chelsea,40.73857,-73.99256,Entire home/apt,800,15,0,,1,0 +9057,35968845,Manhattan,Upper West Side,40.79265,-73.97108,Private room,89,1,1,0.02,2,0 +9058,24806455,Manhattan,Chelsea,40.74815,-73.99417,Entire home/apt,250,1,0,,1,0 +9059,2176547,Manhattan,Chelsea,40.74723,-73.9916,Entire home/apt,220,31,4,0.12,1,54 +9060,6884282,Manhattan,Chelsea,40.74682,-74.00417,Private room,135,5,1,0.02,1,0 +9061,36434721,Brooklyn,Fort Greene,40.68503,-73.9742,Entire home/apt,160,1,70,1.43,1,356 +9062,10609847,Brooklyn,Williamsburg,40.707809999999995,-73.95553000000001,Private room,93,3,0,,1,0 +9063,6434434,Queens,Ditmars Steinway,40.7789,-73.90688,Entire home/apt,110,2,14,0.29,1,0 +9064,7253422,Manhattan,Harlem,40.825990000000004,-73.94545,Entire home/apt,76,1,3,0.06,1,0 +9065,36441990,Queens,Astoria,40.75671,-73.91749,Entire home/apt,105,1,5,0.1,1,0 +9066,31883140,Brooklyn,Fort Greene,40.69173,-73.97756,Entire home/apt,120,4,1,0.03,1,0 +9067,36453453,Manhattan,East Harlem,40.79063,-73.94718,Entire home/apt,110,5,3,0.06,1,0 +9068,14379468,Manhattan,Harlem,40.812540000000006,-73.94118,Entire home/apt,125,1,4,0.09,1,0 +9069,16533401,Brooklyn,Gowanus,40.67781,-73.9851,Private room,130,1,0,,1,0 +9070,21976382,Brooklyn,Boerum Hill,40.68564,-73.98408,Entire home/apt,105,14,48,1.02,1,74 +9071,7013442,Manhattan,Lower East Side,40.71996,-73.98729,Private room,100,3,2,0.04,1,0 +9072,13347167,Manhattan,Upper East Side,40.775659999999995,-73.95335,Entire home/apt,118,30,4,0.09,29,258 +9073,18091740,Brooklyn,Williamsburg,40.70198,-73.947,Private room,70,4,1,0.03,1,0 +9074,22346913,Brooklyn,Carroll Gardens,40.68153,-74.0016,Entire home/apt,220,2,118,2.51,1,277 +9075,15647782,Manhattan,Upper West Side,40.80271,-73.96853,Entire home/apt,155,4,10,0.21,1,0 +9076,330976,Brooklyn,Williamsburg,40.70875,-73.95364000000001,Private room,85,1,20,0.42,1,0 +9077,33069475,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93153000000001,Private room,40,20,42,1.12,2,257 +9078,36489857,Manhattan,Upper West Side,40.78768,-73.97238,Entire home/apt,85,3,29,0.75,1,309 +9079,28601986,Manhattan,East Harlem,40.79952,-73.93502,Entire home/apt,84,3,10,0.21,1,0 +9080,19228782,Manhattan,Chelsea,40.74438,-74.00178000000001,Entire home/apt,150,3,2,0.05,1,1 +9081,2001830,Bronx,Morris Heights,40.85073,-73.9128,Private room,50,3,20,0.47,2,316 +9082,36208562,Brooklyn,Bushwick,40.69847,-73.92787,Entire home/apt,250,2,23,0.49,1,0 +9083,2714997,Manhattan,Upper West Side,40.801,-73.96647,Private room,70,30,76,1.57,1,0 +9084,36530547,Manhattan,Upper West Side,40.79126,-73.96738,Private room,110,1,0,,1,0 +9085,36531150,Brooklyn,Prospect Heights,40.67886,-73.96802,Entire home/apt,164,1,2,0.04,1,0 +9086,36534042,Brooklyn,Fort Hamilton,40.62084,-74.03739,Entire home/apt,120,7,1,0.02,1,0 +9087,8080357,Brooklyn,Fort Greene,40.69246,-73.97171,Private room,55,4,0,,1,0 +9088,36537579,Brooklyn,Red Hook,40.67819,-74.00924,Entire home/apt,500,1,0,,1,0 +9089,36538690,Brooklyn,South Slope,40.6648,-73.98044,Entire home/apt,224,4,1,0.02,1,0 +9090,107016,Brooklyn,Crown Heights,40.67618,-73.95133,Private room,47,14,9,0.19,1,8 +9091,12906455,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93333,Private room,61,2,29,0.59,1,5 +9092,30247261,Manhattan,Little Italy,40.72039,-73.99683,Entire home/apt,999,7,1,0.02,1,0 +9093,23026033,Manhattan,Greenwich Village,40.73104,-73.99708000000001,Entire home/apt,230,7,1,0.02,1,0 +9094,25237492,Manhattan,Upper East Side,40.76112,-73.9619,Entire home/apt,150,30,12,0.27,34,298 +9095,25237492,Manhattan,Upper East Side,40.762159999999994,-73.96195,Entire home/apt,115,30,12,0.26,34,331 +9096,36551297,Queens,Astoria,40.76194,-73.91881,Private room,70,2,8,0.16,1,0 +9097,25237492,Manhattan,Upper East Side,40.76222,-73.9603,Entire home/apt,325,30,2,0.21,34,191 +9098,25237492,Manhattan,Upper East Side,40.76249,-73.96217,Entire home/apt,155,30,6,0.14,34,295 +9099,25237492,Manhattan,Upper East Side,40.76021,-73.96157,Entire home/apt,165,30,10,0.22,34,346 +9100,25237492,Manhattan,Upper East Side,40.762440000000005,-73.96030999999999,Entire home/apt,165,30,9,0.2,34,280 +9101,25237492,Manhattan,Upper East Side,40.76035,-73.96133,Entire home/apt,155,30,8,0.27,34,339 +9102,23574544,Manhattan,Upper West Side,40.78567,-73.97665,Private room,150,1,7,0.14,1,0 +9103,25237492,Manhattan,Upper West Side,40.78181,-73.98465999999999,Entire home/apt,130,30,10,0.26,34,303 +9104,25237492,Manhattan,Upper West Side,40.78289,-73.98477,Entire home/apt,125,30,17,0.38,34,202 +9105,31213925,Manhattan,Midtown,40.74462,-73.98272,Entire home/apt,150,2,0,,1,0 +9106,21803081,Brooklyn,Williamsburg,40.71591,-73.9417,Private room,55,7,2,0.04,1,0 +9107,17155244,Manhattan,East Harlem,40.7984,-73.94776999999999,Entire home/apt,155,4,4,0.08,1,0 +9108,13698410,Brooklyn,Clinton Hill,40.69489,-73.96495999999999,Private room,80,7,12,0.25,1,0 +9109,19247979,Brooklyn,Flatbush,40.634879999999995,-73.96546,Entire home/apt,85,3,0,,1,0 +9110,4225192,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94653000000001,Private room,40,1,1,0.02,1,0 +9111,12374283,Manhattan,East Village,40.722970000000004,-73.97973,Private room,99,3,12,0.26,4,0 +9112,5577926,Queens,Astoria,40.76583,-73.91086,Private room,59,1,108,2.23,4,0 +9113,12374283,Manhattan,East Village,40.72403,-73.97783000000001,Entire home/apt,300,2,1,0.05,4,0 +9114,36566148,Queens,Long Island City,40.75328,-73.92244000000001,Private room,55,1,5,0.1,1,0 +9115,6623402,Brooklyn,Williamsburg,40.7196,-73.95599,Entire home/apt,125,1,6,0.13,1,0 +9116,36571434,Manhattan,Upper West Side,40.80016,-73.96448000000001,Private room,139,2,24,0.5,1,20 +9117,21175506,Brooklyn,Greenpoint,40.730059999999995,-73.95694,Entire home/apt,165,1,1,0.02,1,0 +9118,36575095,Brooklyn,Clinton Hill,40.684090000000005,-73.96531,Private room,50,1,1,0.02,1,0 +9119,1373836,Brooklyn,Carroll Gardens,40.681509999999996,-73.99285,Entire home/apt,150,5,3,0.06,1,0 +9120,687062,Manhattan,Harlem,40.81398,-73.95213000000001,Private room,65,1,142,4.22,1,93 +9121,36610302,Brooklyn,Bedford-Stuyvesant,40.686820000000004,-73.92019,Private room,50,1,0,,1,0 +9122,25237492,Manhattan,Upper West Side,40.78201,-73.98379,Entire home/apt,120,30,9,0.24,34,339 +9123,25237492,Manhattan,Upper West Side,40.7818,-73.98483,Entire home/apt,115,30,7,0.19,34,325 +9124,23582893,Brooklyn,Bushwick,40.690540000000006,-73.91445999999999,Private room,51,13,20,0.41,8,14 +9125,36634420,Manhattan,Washington Heights,40.85183,-73.94022,Entire home/apt,120,1,0,,1,0 +9126,13857446,Brooklyn,Flatbush,40.65371,-73.95623,Entire home/apt,90,2,12,0.25,1,0 +9127,36641477,Queens,Forest Hills,40.724000000000004,-73.84962,Private room,75,3,1,0.02,1,0 +9128,36133913,Manhattan,Midtown,40.7544,-73.97345,Entire home/apt,190,2,25,0.51,1,4 +9129,7339760,Manhattan,East Harlem,40.792429999999996,-73.93952,Entire home/apt,130,2,1,0.02,1,0 +9130,36644635,Manhattan,East Harlem,40.79229,-73.94962,Private room,80,2,142,3.05,1,0 +9131,36650631,Manhattan,Kips Bay,40.73912,-73.9825,Entire home/apt,300,1,0,,1,0 +9132,16978260,Manhattan,Harlem,40.811609999999995,-73.94306,Shared room,70,1,0,,1,365 +9133,36656552,Manhattan,Lower East Side,40.71947,-73.99327,Private room,150,1,2,0.04,3,0 +9134,24530713,Manhattan,Harlem,40.82416,-73.95306,Private room,75,1,11,0.25,3,332 +9135,18260299,Brooklyn,Bushwick,40.69347,-73.90703,Private room,50,30,2,0.04,6,5 +9136,36663321,Brooklyn,Flatbush,40.635040000000004,-73.96603,Private room,60,3,173,3.52,1,281 +9137,1281637,Brooklyn,Fort Greene,40.6873,-73.97225,Entire home/apt,140,2,1,0.02,1,0 +9138,5162530,Brooklyn,Williamsburg,40.718379999999996,-73.9563,Entire home/apt,145,1,0,,1,0 +9139,36666388,Brooklyn,Williamsburg,40.7166,-73.96379,Entire home/apt,375,2,0,,1,0 +9140,35928174,Brooklyn,Williamsburg,40.70458,-73.94095,Entire home/apt,110,2,15,0.31,1,12 +9141,36673376,Brooklyn,Bedford-Stuyvesant,40.69213,-73.95869,Entire home/apt,100,15,5,0.26,1,24 +9142,415502,Manhattan,Harlem,40.80418,-73.95513000000001,Private room,70,1,3,0.06,1,0 +9143,36708202,Manhattan,Upper East Side,40.76425,-73.96811,Entire home/apt,195,7,26,0.54,1,1 +9144,2720363,Brooklyn,Bushwick,40.68802,-73.91474000000001,Private room,125,2,4,0.19,1,310 +9145,36452416,Manhattan,Upper East Side,40.77138,-73.94809000000001,Entire home/apt,95,14,2,0.06,1,4 +9146,10945786,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94882,Private room,30,6,1,0.02,1,0 +9147,36710507,Manhattan,Morningside Heights,40.81514,-73.95954,Private room,80,1,0,,1,0 +9148,36713105,Manhattan,East Harlem,40.785509999999995,-73.94167,Entire home/apt,99,3,4,0.1,1,0 +9149,1599175,Manhattan,Upper West Side,40.77828,-73.9764,Entire home/apt,165,3,1,0.04,1,0 +9150,6968630,Brooklyn,Crown Heights,40.67627,-73.94775,Entire home/apt,95,4,5,0.1,1,1 +9151,20582832,Queens,Astoria,40.7681,-73.91651,Private room,10000,100,2,0.04,1,0 +9152,21773199,Queens,Long Island City,40.74406,-73.94504,Entire home/apt,149,4,4,0.09,1,0 +9153,21641864,Manhattan,SoHo,40.72745,-74.0027,Entire home/apt,190,6,61,1.27,1,275 +9154,36727985,Manhattan,Midtown,40.743790000000004,-73.98795,Entire home/apt,177,3,22,0.45,1,0 +9155,36726560,Manhattan,Chelsea,40.74613,-74.00468000000001,Entire home/apt,350,1,0,,1,0 +9156,22908412,Brooklyn,Crown Heights,40.67259,-73.95831,Private room,65,2,155,3.17,1,117 +9157,24706492,Manhattan,Upper East Side,40.77734,-73.95779,Shared room,130,7,0,,1,0 +9158,36754170,Brooklyn,Prospect-Lefferts Gardens,40.65703,-73.95964000000001,Entire home/apt,110,1,2,0.04,1,0 +9159,36029533,Brooklyn,Bushwick,40.69034,-73.91666,Private room,35,1,1,0.02,1,0 +9160,36164182,Brooklyn,Bushwick,40.6969,-73.93435,Private room,75,2,46,0.94,3,256 +9161,4783045,Manhattan,Harlem,40.81435,-73.94588,Private room,52,2,1,0.03,1,0 +9162,1733462,Brooklyn,Williamsburg,40.71351,-73.92999,Entire home/apt,160,4,40,0.83,1,138 +9163,34908118,Brooklyn,Williamsburg,40.70711,-73.95136,Entire home/apt,100,3,5,0.11,1,0 +9164,3524653,Brooklyn,Williamsburg,40.716879999999996,-73.94162,Private room,90,2,18,0.37,1,280 +9165,6406576,Manhattan,East Village,40.72795,-73.98503000000001,Entire home/apt,250,5,0,,1,0 +9166,6661559,Manhattan,East Village,40.72294,-73.9857,Private room,99,1,0,,1,0 +9167,54255,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93208,Private room,99,1,4,0.08,3,189 +9168,1298759,Brooklyn,Williamsburg,40.713029999999996,-73.94063,Entire home/apt,220,7,2,0.04,1,0 +9169,36816110,Manhattan,Morningside Heights,40.804809999999996,-73.96375,Private room,45,21,4,0.09,1,0 +9170,36816089,Manhattan,Washington Heights,40.84454,-73.94188,Private room,70,1,0,,1,0 +9171,23833056,Manhattan,Upper East Side,40.7688,-73.9535,Private room,150,1,0,,1,0 +9172,36817279,Manhattan,Midtown,40.7587,-73.96705,Private room,105,2,17,0.55,1,190 +9173,36818817,Manhattan,Morningside Heights,40.80395,-73.96531,Private room,50,3,3,0.06,2,0 +9174,12930988,Manhattan,Upper East Side,40.78402,-73.94974,Entire home/apt,222,2,94,2.16,1,281 +9175,2750745,Brooklyn,Bedford-Stuyvesant,40.69039,-73.95947,Entire home/apt,120,2,4,0.08,1,0 +9176,36579485,Brooklyn,Canarsie,40.64574,-73.90781,Entire home/apt,600,7,0,,3,365 +9177,15929157,Brooklyn,East New York,40.6724,-73.88118,Private room,34,20,29,0.59,3,192 +9178,16112564,Brooklyn,Brooklyn Heights,40.69382,-73.99334,Entire home/apt,130,7,1,0.02,1,0 +9179,703023,Brooklyn,Fort Greene,40.69276,-73.97061,Entire home/apt,205,3,3,0.06,1,0 +9180,238354,Brooklyn,Clinton Hill,40.68524,-73.9607,Entire home/apt,150,3,125,2.6,1,271 +9181,3011750,Manhattan,West Village,40.73669,-74.00375,Entire home/apt,149,3,5,0.1,1,0 +9182,3743867,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95275,Private room,100,1,0,,1,0 +9183,33736005,Queens,Sunnyside,40.74439,-73.92163000000001,Shared room,50,1,1,0.02,2,0 +9184,4051711,Manhattan,Financial District,40.708090000000006,-74.0017,Entire home/apt,210,1,0,,1,0 +9185,1971850,Manhattan,Harlem,40.81054,-73.94447,Private room,135,1,0,,1,0 +9186,3716646,Manhattan,Lower East Side,40.72115,-73.98308,Entire home/apt,240,5,1,0.02,1,0 +9187,7651357,Brooklyn,Flatbush,40.65452,-73.9596,Private room,48,2,55,1.12,1,0 +9188,14104350,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94232,Entire home/apt,90,5,25,0.53,2,347 +9189,27439022,Manhattan,Washington Heights,40.85008,-73.94277,Private room,85,2,95,1.96,1,321 +9190,36871638,Manhattan,Morningside Heights,40.81142,-73.95978000000001,Private room,70,4,5,0.1,1,0 +9191,36881439,Queens,Long Island City,40.756,-73.9205,Private room,60,7,0,,1,365 +9192,9492212,Brooklyn,Park Slope,40.6688,-73.97865,Private room,139,1,184,3.86,4,0 +9193,33821265,Brooklyn,Park Slope,40.67792,-73.98035,Private room,200,1,0,,1,0 +9194,36885571,Manhattan,Upper East Side,40.77098,-73.95034,Entire home/apt,153,1,76,1.61,1,305 +9195,36885622,Manhattan,Upper West Side,40.7855,-73.97641999999999,Entire home/apt,125,1,0,,1,0 +9196,5781885,Brooklyn,Cobble Hill,40.688359999999996,-73.99763,Entire home/apt,285,6,6,0.13,1,0 +9197,36889987,Manhattan,East Village,40.72815,-73.97598,Shared room,100,1,0,,1,0 +9198,36889012,Brooklyn,Bedford-Stuyvesant,40.68237,-73.91977,Private room,50,1,123,2.95,4,349 +9199,5476372,Brooklyn,Bushwick,40.692890000000006,-73.92312,Private room,35,1,3,0.06,1,0 +9200,36897569,Brooklyn,Greenpoint,40.72442,-73.93956999999999,Entire home/apt,115,10,2,0.04,1,0 +9201,2170381,Manhattan,East Harlem,40.79674,-73.94449,Private room,73,5,4,0.08,1,242 +9202,36899834,Brooklyn,Bedford-Stuyvesant,40.6874,-73.9383,Entire home/apt,180,3,123,2.53,1,211 +9203,36242220,Queens,East Elmhurst,40.76578,-73.86424,Private room,60,1,209,4.38,1,364 +9204,34546849,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92825,Private room,50,2,34,0.7,3,279 +9205,36907706,Brooklyn,Crown Heights,40.667429999999996,-73.94712,Private room,58,7,49,1.01,1,81 +9206,36926132,Manhattan,Harlem,40.80594,-73.95363,Entire home/apt,80,5,0,,1,0 +9207,36935244,Queens,Arverne,40.5927,-73.7899,Entire home/apt,250,2,89,1.82,1,300 +9208,20270730,Brooklyn,Williamsburg,40.715579999999996,-73.93926,Entire home/apt,499,5,4,0.08,1,0 +9209,3434070,Manhattan,Upper East Side,40.777029999999996,-73.94773,Entire home/apt,159,4,8,0.17,1,0 +9210,36956206,Brooklyn,Williamsburg,40.71687,-73.94655999999999,Entire home/apt,140,1,66,1.35,1,5 +9211,1299252,Manhattan,Flatiron District,40.74068,-73.98999,Entire home/apt,850,1,177,3.78,1,268 +9212,90316,Brooklyn,Flatbush,40.65231,-73.96189,Private room,38,3,0,,1,7 +9213,1154790,Brooklyn,Crown Heights,40.66673,-73.96127,Entire home/apt,289,1,0,,1,0 +9214,21323838,Manhattan,Upper West Side,40.77408,-73.98181,Entire home/apt,245,5,17,0.35,1,346 +9215,36962150,Manhattan,Tribeca,40.71845,-74.01183,Entire home/apt,500,1,0,,1,0 +9216,26389845,Manhattan,East Village,40.72826,-73.98422,Private room,130,1,8,0.16,2,0 +9217,36962041,Brooklyn,Williamsburg,40.70862,-73.94651,Private room,80,1,0,,1,0 +9218,36818817,Manhattan,Morningside Heights,40.8046,-73.96545,Private room,50,1,1,0.02,2,0 +9219,2042568,Brooklyn,Park Slope,40.67505,-73.98045,Private room,95,3,0,,1,0 +9220,36980964,Queens,Long Island City,40.74989,-73.93777,Entire home/apt,155,2,5,0.1,1,0 +9221,36976268,Manhattan,Upper West Side,40.76807,-73.98342,Entire home/apt,400,1,0,,1,0 +9222,8002698,Queens,Astoria,40.75966,-73.90924,Private room,27,30,3,0.07,1,0 +9223,15542610,Manhattan,Washington Heights,40.842890000000004,-73.93925,Private room,60,1,86,1.94,1,0 +9224,36894011,Brooklyn,Fort Greene,40.68835,-73.9736,Private room,120,2,77,1.68,2,0 +9225,18600674,Brooklyn,Williamsburg,40.71805,-73.93973000000001,Private room,103,100,128,2.63,1,358 +9226,36998520,Manhattan,Upper East Side,40.76719,-73.95358,Entire home/apt,155,15,0,,1,0 +9227,36999491,Brooklyn,Flatbush,40.653259999999996,-73.96011,Private room,80,1,0,,1,0 +9228,29702921,Manhattan,East Village,40.72206,-73.97981999999999,Private room,80,1,0,,1,0 +9229,24830540,Brooklyn,Williamsburg,40.71188,-73.95088,Private room,85,1,1,0.02,1,0 +9230,32220047,Queens,Springfield Gardens,40.68485,-73.76063,Entire home/apt,150,3,7,0.19,3,179 +9231,8082431,Manhattan,West Village,40.73489,-74.00182,Entire home/apt,220,1,84,1.75,1,6 +9232,29204097,Manhattan,Upper East Side,40.77516,-73.95224,Entire home/apt,160,1,18,0.95,1,180 +9233,2180889,Brooklyn,Brooklyn Heights,40.69454,-73.99499,Entire home/apt,125,1,0,,1,24 +9234,16639377,Manhattan,Midtown,40.74631,-73.98550999999999,Private room,150,1,0,,1,0 +9235,4193378,Manhattan,Upper East Side,40.772690000000004,-73.95055,Entire home/apt,140,7,8,0.18,1,0 +9236,37035401,Manhattan,Upper West Side,40.7736,-73.98428,Entire home/apt,500,3,36,0.75,1,85 +9237,12605496,Brooklyn,Fort Greene,40.688590000000005,-73.972,Entire home/apt,205,2,0,,1,0 +9238,11068937,Brooklyn,Greenpoint,40.731359999999995,-73.95276,Private room,140,2,21,0.43,2,0 +9239,37040263,Brooklyn,Bushwick,40.69682,-73.91458,Private room,80,1,1,0.02,1,0 +9240,33622924,Manhattan,Harlem,40.8298,-73.94683,Private room,70,1,141,2.99,4,348 +9241,4242708,Manhattan,SoHo,40.726,-74.00204000000001,Entire home/apt,150,4,12,0.31,1,0 +9242,1306850,Manhattan,Kips Bay,40.7402,-73.97935,Entire home/apt,195,2,7,0.15,1,0 +9243,37047337,Manhattan,East Village,40.72332,-73.97985,Private room,57,1,0,,1,0 +9244,7951613,Queens,Long Island City,40.7419,-73.95738,Entire home/apt,125,2,7,0.14,1,0 +9245,13347167,Manhattan,Upper East Side,40.775529999999996,-73.95343000000001,Entire home/apt,120,30,2,0.08,29,209 +9246,10174191,Manhattan,West Village,40.73055,-74.00435,Entire home/apt,275,3,58,1.2,1,59 +9247,17475096,Brooklyn,Flatbush,40.651920000000004,-73.96023000000001,Private room,75,1,0,,2,0 +9248,16602154,Brooklyn,Bushwick,40.69811,-73.93051,Private room,60,3,1,0.02,1,0 +9249,17470984,Manhattan,Chinatown,40.71813,-73.99665,Private room,89,3,7,0.18,1,317 +9250,4909308,Manhattan,Upper East Side,40.77344,-73.95035,Entire home/apt,243,1,26,1.1,1,149 +9251,37077066,Manhattan,Harlem,40.81863,-73.95748,Private room,90,1,0,,1,0 +9252,37076121,Brooklyn,Bushwick,40.69899,-73.92286,Private room,50,2,2,0.06,1,0 +9253,6474887,Manhattan,East Village,40.72397,-73.97855,Private room,115,1,0,,1,0 +9254,35819315,Brooklyn,Bushwick,40.6942,-73.92024,Entire home/apt,150,4,11,0.23,2,8 +9255,4582256,Brooklyn,Bedford-Stuyvesant,40.682970000000005,-73.93804,Entire home/apt,250,2,3,0.06,1,0 +9256,2141626,Brooklyn,Williamsburg,40.71067,-73.95419,Private room,109,2,118,2.54,1,14 +9257,4133458,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95281999999999,Entire home/apt,120,2,0,,1,0 +9258,43772,Brooklyn,Greenpoint,40.72074,-73.94740999999999,Entire home/apt,272,3,3,0.06,1,0 +9259,37091023,Brooklyn,Park Slope,40.67102,-73.9808,Private room,100,1,1,0.02,1,0 +9260,37095710,Brooklyn,Clinton Hill,40.686640000000004,-73.95981,Entire home/apt,170,7,3,0.08,1,0 +9261,37096607,Manhattan,Greenwich Village,40.72968,-74.00114,Entire home/apt,175,2,5,0.11,1,0 +9262,11453695,Brooklyn,Bushwick,40.70317,-73.92724,Private room,85,6,1,0.02,1,0 +9263,6766728,Manhattan,East Village,40.72639,-73.98756,Entire home/apt,150,4,1,0.02,1,0 +9264,32212535,Manhattan,Hell's Kitchen,40.76551,-73.98899,Shared room,116,2,101,2.07,2,42 +9265,22095455,Manhattan,Civic Center,40.71674,-74.00334000000001,Private room,100,5,1,0.02,1,0 +9266,27919510,Manhattan,West Village,40.736340000000006,-74.00485,Entire home/apt,350,1,7,0.15,1,0 +9267,37138042,Manhattan,Washington Heights,40.836209999999994,-73.94646,Private room,80,3,112,2.29,1,144 +9268,3923244,Queens,Astoria,40.76623,-73.91901999999999,Entire home/apt,80,5,17,0.35,1,12 +9269,24982709,Brooklyn,Bushwick,40.687740000000005,-73.9155,Entire home/apt,110,29,103,2.16,1,222 +9270,3974249,Brooklyn,Windsor Terrace,40.65459,-73.97475,Entire home/apt,267,2,14,0.42,1,1 +9271,5476918,Bronx,Kingsbridge,40.871829999999996,-73.90371,Private room,75,1,0,,1,0 +9272,10566585,Manhattan,Upper West Side,40.7777,-73.9896,Entire home/apt,200,1,0,,1,0 +9273,12602098,Brooklyn,Bedford-Stuyvesant,40.68115,-73.95074,Private room,55,1,2,0.04,1,0 +9274,37157641,Queens,Jamaica Estates,40.722229999999996,-73.78565,Entire home/apt,398,4,55,1.28,1,82 +9275,19834927,Manhattan,East Village,40.72382,-73.98170999999999,Private room,80,1,3,0.06,1,0 +9276,10285950,Brooklyn,Bedford-Stuyvesant,40.68403,-73.92071,Entire home/apt,125,30,3,0.11,3,308 +9277,2478675,Brooklyn,Flatbush,40.6541,-73.95814,Private room,38,1,41,0.87,5,335 +9278,24825760,Brooklyn,Gowanus,40.66664,-73.99348,Private room,80,2,18,0.52,1,189 +9279,7719262,Manhattan,Flatiron District,40.74138,-73.98814,Entire home/apt,299,28,160,3.39,1,315 +9280,14329995,Manhattan,Harlem,40.82632,-73.95168000000001,Entire home/apt,125,4,2,0.04,1,0 +9281,37170055,Manhattan,Lower East Side,40.72348,-73.99095,Private room,250,1,0,,1,1 +9282,7503643,Brooklyn,Greenpoint,40.72568,-73.94142,Entire home/apt,129,30,4,0.08,52,357 +9283,16381764,Manhattan,Upper East Side,40.7604,-73.96257,Entire home/apt,190,1,36,0.75,1,358 +9284,36562419,Manhattan,Nolita,40.72123,-73.99513,Private room,90,1,1,0.02,1,0 +9285,37181980,Manhattan,Roosevelt Island,40.76193,-73.94933,Private room,83,2,178,3.72,1,255 +9286,3946744,Manhattan,Midtown,40.75651,-73.96696,Entire home/apt,450,2,0,,1,0 +9287,25109461,Manhattan,East Harlem,40.79326,-73.93988,Entire home/apt,102,1,0,,1,11 +9288,12749467,Manhattan,East Village,40.73022,-73.98893000000001,Entire home/apt,198,30,5,0.11,1,301 +9289,22625462,Manhattan,Midtown,40.75788,-73.9689,Entire home/apt,149,2,14,0.3,1,0 +9290,10896584,Brooklyn,Greenpoint,40.7324,-73.95828,Entire home/apt,120,2,6,0.13,1,0 +9291,2052211,Brooklyn,Windsor Terrace,40.6536,-73.97546,Entire home/apt,143,14,2,0.04,1,10 +9292,37186427,Manhattan,Kips Bay,40.7449,-73.97959,Private room,120,1,1,0.02,1,0 +9293,1714147,Brooklyn,Crown Heights,40.671009999999995,-73.9525,Private room,44,4,0,,1,0 +9294,36656552,Manhattan,Lower East Side,40.718920000000004,-73.99240999999999,Private room,150,1,51,1.05,3,0 +9295,2252859,Manhattan,Financial District,40.70668,-74.00913,Entire home/apt,160,200,0,,1,365 +9296,37191710,Manhattan,East Village,40.724740000000004,-73.98273,Private room,110,1,1,0.02,1,0 +9297,37191929,Brooklyn,Crown Heights,40.67921,-73.9603,Entire home/apt,125,2,31,0.67,1,0 +9298,9819284,Manhattan,Upper East Side,40.76533,-73.96163,Entire home/apt,270,4,44,0.92,1,335 +9299,32252422,Brooklyn,Canarsie,40.64796,-73.89175999999999,Entire home/apt,110,2,38,0.81,2,290 +9300,37011739,Manhattan,Upper West Side,40.79435,-73.9745,Entire home/apt,145,5,7,0.16,1,0 +9301,3627066,Brooklyn,South Slope,40.66657,-73.98725,Entire home/apt,190,7,2,0.04,1,0 +9302,3664074,Manhattan,West Village,40.73894,-74.00067,Entire home/apt,250,2,5,0.1,1,0 +9303,24797068,Manhattan,Washington Heights,40.83663,-73.94502,Private room,45,9,1,0.03,1,0 +9304,37229098,Brooklyn,Bushwick,40.70041,-73.93956999999999,Entire home/apt,200,2,9,0.19,1,357 +9305,3801047,Manhattan,Upper West Side,40.7982,-73.96931,Entire home/apt,187,3,1,0.02,1,0 +9306,37248762,Brooklyn,Williamsburg,40.716429999999995,-73.95430999999999,Private room,90,3,0,,1,0 +9307,34546849,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92989,Shared room,29,2,102,2.11,3,288 +9308,37252712,Brooklyn,Park Slope,40.66817,-73.98406,Entire home/apt,100,3,5,0.17,1,0 +9309,26998839,Brooklyn,Williamsburg,40.70684,-73.93854,Entire home/apt,90,7,6,0.15,2,302 +9310,11725595,Brooklyn,Bushwick,40.70415,-73.92551,Private room,100,1,0,,1,0 +9311,26998839,Brooklyn,Williamsburg,40.70675,-73.93909000000001,Private room,85,11,7,0.14,2,316 +9312,34866720,Queens,Ridgewood,40.708659999999995,-73.90578000000001,Private room,69,1,0,,1,0 +9313,16296388,Brooklyn,Bushwick,40.68412,-73.91045,Private room,43,1,4,0.13,1,0 +9314,36903907,Brooklyn,Bensonhurst,40.61112,-74.00028,Entire home/apt,145,2,207,4.26,1,287 +9315,37166807,Brooklyn,Sunset Park,40.65702,-73.99874,Private room,65,7,37,0.78,1,0 +9316,7078254,Brooklyn,Prospect-Lefferts Gardens,40.65683,-73.9609,Private room,45,1,2,0.04,1,0 +9317,37291339,Queens,Jamaica,40.69121,-73.78341999999999,Entire home/apt,130,2,77,1.65,1,322 +9318,20515254,Manhattan,Upper West Side,40.76812,-73.98340999999999,Entire home/apt,99,3,99,2.08,1,45 +9319,37275619,Manhattan,Washington Heights,40.85471,-73.93021,Private room,90,1,0,,1,0 +9320,33002613,Manhattan,Washington Heights,40.8347,-73.94413,Private room,45,10,0,,1,0 +9321,1788377,Manhattan,SoHo,40.726209999999995,-74.00186,Entire home/apt,200,1,0,,1,0 +9322,2055744,Brooklyn,Fort Greene,40.68842,-73.97254000000001,Entire home/apt,149,4,1,0.02,1,0 +9323,37312959,Queens,East Elmhurst,40.77005,-73.87691,Private room,45,1,448,9.63,5,166 +9324,5549408,Manhattan,Upper West Side,40.79033,-73.9729,Entire home/apt,140,2,4,0.09,1,0 +9325,19187413,Brooklyn,Williamsburg,40.70485,-73.93863,Private room,60,20,0,,2,88 +9326,37325763,Manhattan,East Village,40.723929999999996,-73.98271,Private room,100,1,0,,1,0 +9327,37191276,Brooklyn,Williamsburg,40.71255,-73.95121,Private room,125,2,0,,1,0 +9328,37332180,Queens,Astoria,40.762640000000005,-73.91156,Entire home/apt,70,4,10,0.21,1,0 +9329,950041,Brooklyn,Crown Heights,40.66851,-73.95936,Private room,70,3,5,0.11,1,21 +9330,37331914,Brooklyn,Bushwick,40.69683,-73.92371999999999,Private room,50,2,0,,1,0 +9331,1574618,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94501,Private room,95,4,47,1.01,1,3 +9332,3704762,Manhattan,Civic Center,40.71649,-74.00267,Entire home/apt,169,4,8,0.17,1,0 +9333,2830197,Brooklyn,Bedford-Stuyvesant,40.6852,-73.95636,Entire home/apt,110,3,14,0.29,1,0 +9334,37357605,Brooklyn,Clinton Hill,40.691390000000006,-73.961,Private room,40,5,0,,1,0 +9335,23988743,Brooklyn,Bushwick,40.69319,-73.92375,Private room,75,2,22,0.46,1,362 +9336,37362312,Brooklyn,Bedford-Stuyvesant,40.69464,-73.93369,Private room,65,2,0,,2,19 +9337,37188098,Queens,Astoria,40.75878,-73.92615,Private room,85,2,32,0.67,2,177 +9338,37368735,Brooklyn,Bedford-Stuyvesant,40.67995,-73.90921999999999,Entire home/apt,97,2,120,2.75,1,292 +9339,36715249,Manhattan,Chinatown,40.71706,-73.99285,Entire home/apt,110,3,0,,1,0 +9340,37396328,Manhattan,Harlem,40.80712,-73.95323,Private room,51,7,0,,1,4 +9341,16396714,Manhattan,Kips Bay,40.74281,-73.97981,Private room,120,7,11,0.32,3,2 +9342,37405985,Queens,Forest Hills,40.71818,-73.84944,Private room,109,1,86,1.78,1,344 +9343,37410263,Manhattan,SoHo,40.721790000000006,-73.99829,Entire home/apt,159,31,8,0.17,1,0 +9344,34582356,Manhattan,Lower East Side,40.71754,-73.99025,Private room,75,1,1,0.02,1,0 +9345,37360127,Staten Island,Castleton Corners,40.61363,-74.12151999999999,Private room,45,30,0,,1,365 +9346,4036685,Queens,Bayside,40.75873,-73.76244,Private room,99,1,3,0.06,2,322 +9347,37440707,Manhattan,Upper West Side,40.79355,-73.97122,Private room,95,1,0,,1,0 +9348,16478353,Brooklyn,Clinton Hill,40.68538,-73.96479000000001,Private room,65,14,6,0.16,1,0 +9349,37442404,Manhattan,Washington Heights,40.83255,-73.94411,Private room,38,1,0,,1,0 +9350,37453881,Brooklyn,Williamsburg,40.718270000000004,-73.94258,Private room,95,1,6,0.17,1,0 +9351,6312248,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92782,Entire home/apt,120,2,74,1.83,2,60 +9352,1279181,Brooklyn,Williamsburg,40.7155,-73.95603,Private room,150,1,0,,1,0 +9353,5602641,Brooklyn,Bedford-Stuyvesant,40.679390000000005,-73.94939000000001,Entire home/apt,135,2,174,3.58,1,5 +9354,15878233,Brooklyn,Kensington,40.64456,-73.97723,Entire home/apt,115,4,3,0.09,1,0 +9355,292421,Brooklyn,Bushwick,40.70272,-73.93151,Private room,100,1,14,0.37,1,0 +9356,25517905,Manhattan,Upper West Side,40.79632,-73.96225,Private room,99,1,222,4.56,3,251 +9357,334348,Manhattan,East Village,40.72299,-73.97756,Entire home/apt,148,3,9,0.19,1,8 +9358,37503617,Brooklyn,Bedford-Stuyvesant,40.69325,-73.94819,Entire home/apt,150,7,3,0.06,1,0 +9359,19055216,Manhattan,Chelsea,40.74219,-73.99903,Entire home/apt,599,5,0,,1,0 +9360,32212535,Manhattan,Hell's Kitchen,40.76546,-73.98782,Entire home/apt,349,3,31,0.65,2,157 +9361,37565381,Manhattan,Upper West Side,40.79527,-73.96695,Entire home/apt,165,5,5,0.1,1,0 +9362,20914965,Brooklyn,Kensington,40.646209999999996,-73.98163000000001,Entire home/apt,95,1,4,0.08,1,0 +9363,25912623,Brooklyn,Fort Greene,40.687259999999995,-73.97616,Entire home/apt,129,1,9,0.41,1,157 +9364,37579015,Manhattan,Hell's Kitchen,40.75788,-73.99223,Private room,250,2,17,0.37,5,130 +9365,36903246,Manhattan,Upper East Side,40.776140000000005,-73.95036999999999,Entire home/apt,700,1,1,0.02,1,0 +9366,37588475,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92963,Private room,66,1,0,,1,0 +9367,32933539,Manhattan,Washington Heights,40.83524,-73.943,Entire home/apt,165,4,1,0.03,1,0 +9368,37587378,Brooklyn,Gowanus,40.679159999999996,-73.98911,Entire home/apt,450,2,8,0.17,1,263 +9369,780952,Manhattan,Morningside Heights,40.80441,-73.96409,Entire home/apt,120,2,7,0.15,1,0 +9370,15115649,Brooklyn,Park Slope,40.672670000000004,-73.97870999999999,Private room,65,1,0,,1,0 +9371,37563411,Brooklyn,Crown Heights,40.66898,-73.9514,Private room,55,2,47,0.98,3,0 +9372,37614545,Queens,Astoria,40.75871,-73.91112,Private room,85,1,0,,1,0 +9373,3508047,Brooklyn,Bushwick,40.69765,-73.93334,Private room,35,5,1,0.16,3,0 +9374,4993337,Brooklyn,Williamsburg,40.710440000000006,-73.953,Entire home/apt,110,1,2,0.04,1,0 +9375,37668524,Manhattan,Chelsea,40.73888,-73.99897,Entire home/apt,500,3,11,0.23,1,2 +9376,33739627,Manhattan,East Village,40.72896,-73.9843,Private room,99,1,4,0.08,1,0 +9377,9484908,Queens,Ridgewood,40.71005,-73.91956,Private room,64,3,0,,2,77 +9378,7546816,Brooklyn,Williamsburg,40.71781,-73.96251,Entire home/apt,168,2,20,0.41,1,0 +9379,16782665,Brooklyn,Carroll Gardens,40.6748,-74.00005999999999,Entire home/apt,200,2,28,0.59,1,0 +9380,37633503,Manhattan,Harlem,40.80595,-73.94882,Entire home/apt,355,3,42,1.03,1,116 +9381,22502429,Manhattan,Upper West Side,40.78363,-73.97485,Entire home/apt,190,3,9,0.19,1,0 +9382,2902496,Brooklyn,Williamsburg,40.7113,-73.94249,Entire home/apt,99,1,2,0.04,1,0 +9383,37691482,Manhattan,Lower East Side,40.72135,-73.98668,Entire home/apt,180,2,8,0.19,1,0 +9384,140817,Manhattan,Inwood,40.86717,-73.91943,Entire home/apt,145,3,9,0.23,1,0 +9385,30066276,Brooklyn,Greenpoint,40.723279999999995,-73.94041,Private room,55,1,1,0.02,1,0 +9386,8792814,Brooklyn,Bedford-Stuyvesant,40.6927,-73.94655999999999,Private room,65,1,5,0.11,10,158 +9387,11241369,Brooklyn,Crown Heights,40.67026,-73.9497,Entire home/apt,130,2,151,3.16,1,36 +9388,21651082,Manhattan,Upper West Side,40.78487,-73.97816,Private room,68,6,1,0.02,1,0 +9389,37243004,Manhattan,Midtown,40.75255,-73.98003,Entire home/apt,167,1,0,,1,0 +9390,6674211,Manhattan,SoHo,40.72525,-73.99998000000001,Entire home/apt,375,14,0,,1,0 +9391,37711914,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,160,10,25,0.53,1,1 +9392,23952819,Brooklyn,Bedford-Stuyvesant,40.68651,-73.933,Entire home/apt,98,3,91,1.92,2,217 +9393,7252535,Brooklyn,Williamsburg,40.712790000000005,-73.96037,Private room,90,2,262,5.41,2,226 +9394,21381325,Brooklyn,Williamsburg,40.709990000000005,-73.9689,Private room,100,1,0,,1,0 +9395,37723496,Brooklyn,DUMBO,40.70429,-73.98773,Private room,125,2,152,3.16,2,166 +9396,7065810,Brooklyn,Fort Greene,40.68677,-73.97791,Entire home/apt,150,2,0,,1,0 +9397,37188272,Brooklyn,Crown Heights,40.67357,-73.95268,Entire home/apt,95,2,4,0.11,1,0 +9398,35651880,Manhattan,Upper West Side,40.79874,-73.96034,Entire home/apt,130,3,18,0.39,1,0 +9399,16282382,Brooklyn,Greenpoint,40.7359,-73.95799,Entire home/apt,130,2,3,0.06,1,0 +9400,25712247,Brooklyn,Greenpoint,40.72283,-73.95232,Private room,140,1,0,,1,0 +9401,37731444,Brooklyn,Bedford-Stuyvesant,40.68435,-73.93806,Entire home/apt,125,3,17,0.37,1,80 +9402,37731966,Manhattan,West Village,40.73525,-74.00216999999999,Entire home/apt,165,10,10,0.21,1,0 +9403,37731938,Brooklyn,Bushwick,40.70093,-73.92375,Private room,90,2,11,0.24,1,89 +9404,17383399,Manhattan,Inwood,40.86755,-73.92336,Entire home/apt,175,1,0,,1,0 +9405,37735816,Manhattan,Upper West Side,40.7972,-73.96921999999999,Private room,65,3,95,1.97,1,0 +9406,15491509,Brooklyn,Williamsburg,40.71544,-73.95433,Private room,66,2,6,0.13,1,0 +9407,37737721,Brooklyn,Fort Greene,40.68919,-73.97474,Entire home/apt,225,2,117,2.48,1,242 +9408,22792227,Brooklyn,Crown Heights,40.67031,-73.95859,Private room,45,1,0,,1,0 +9409,3415,Queens,Fresh Meadows,40.73859,-73.78891,Private room,59,3,4,0.09,1,365 +9410,12460557,Manhattan,East Village,40.72873,-73.98793,Private room,90,8,3,0.06,1,0 +9411,17464442,Manhattan,Harlem,40.80492,-73.94485999999999,Private room,125,2,3,0.08,1,0 +9412,10910216,Brooklyn,Red Hook,40.67993,-74.00688000000001,Entire home/apt,450,1,5,0.1,1,207 +9413,1283476,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94409,Private room,50,15,4,0.09,2,0 +9414,6466155,Brooklyn,Boerum Hill,40.68618,-73.98836999999999,Entire home/apt,124,2,1,0.1,1,0 +9415,1903737,Brooklyn,Bedford-Stuyvesant,40.695879999999995,-73.93384,Private room,29,3,30,0.65,3,0 +9416,92436,Brooklyn,Williamsburg,40.70833,-73.9564,Entire home/apt,86,7,1,0.02,1,0 +9417,18489745,Manhattan,Upper East Side,40.76446,-73.95603,Private room,86,2,2,0.04,1,0 +9418,6403403,Brooklyn,Williamsburg,40.71992,-73.95536,Entire home/apt,299,2,18,0.38,1,0 +9419,5998033,Brooklyn,Bushwick,40.68929,-73.90484000000001,Private room,36,2,3,0.06,1,0 +9420,5570436,Brooklyn,Bushwick,40.70548,-73.91776,Private room,100,1,15,0.33,1,359 +9421,1613244,Manhattan,Lower East Side,40.71992,-73.98822,Entire home/apt,110,30,10,0.23,9,263 +9422,9288577,Manhattan,Chelsea,40.74923,-73.99376,Entire home/apt,450,4,206,4.24,1,1 +9423,6407741,Brooklyn,Bedford-Stuyvesant,40.694990000000004,-73.9469,Private room,39,1,0,,1,0 +9424,1639755,Brooklyn,Fort Hamilton,40.61985,-74.03255,Private room,55,2,56,1.23,2,306 +9425,1639755,Brooklyn,Fort Hamilton,40.61999,-74.03181,Private room,55,1,34,0.8,2,281 +9426,9166253,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9589,Private room,60,3,0,,2,0 +9427,37101663,Manhattan,Harlem,40.82101,-73.95436,Private room,71,30,66,2.99,1,0 +9428,700231,Manhattan,Harlem,40.82918,-73.94856999999999,Entire home/apt,500,10,0,,1,0 +9429,11107448,Brooklyn,Williamsburg,40.71965,-73.9428,Private room,63,4,3,0.08,2,0 +9430,1793569,Brooklyn,Park Slope,40.68073,-73.97515,Entire home/apt,170,1,0,,1,0 +9431,1762355,Brooklyn,Brooklyn Heights,40.6947,-73.99304000000001,Entire home/apt,250,7,11,0.24,1,225 +9432,8438140,Brooklyn,Williamsburg,40.71335,-73.93956999999999,Entire home/apt,159,3,14,0.3,1,31 +9433,19806276,Brooklyn,Williamsburg,40.71133,-73.96533000000001,Entire home/apt,200,4,0,,1,0 +9434,37903935,Manhattan,East Harlem,40.79831,-73.93961,Private room,70,1,1,0.02,1,0 +9435,37904263,Manhattan,Upper East Side,40.76364,-73.9588,Entire home/apt,120,5,5,0.13,1,0 +9436,14905080,Manhattan,Morningside Heights,40.805690000000006,-73.96058000000001,Entire home/apt,75,25,1,0.02,1,0 +9437,37909191,Brooklyn,Bushwick,40.69246,-73.91909,Entire home/apt,195,1,0,,1,0 +9438,4419418,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9405,Entire home/apt,90,5,9,0.19,1,8 +9439,2519631,Manhattan,West Village,40.7363,-74.00317,Entire home/apt,233,30,10,0.21,1,14 +9440,6697833,Manhattan,Washington Heights,40.85487,-73.93777,Entire home/apt,115,7,2,0.04,1,0 +9441,3302103,Brooklyn,Clinton Hill,40.69158,-73.96699,Private room,65,2,6,0.12,1,0 +9442,37915862,Brooklyn,East New York,40.6752,-73.89218000000001,Entire home/apt,80,5,49,1.01,2,217 +9443,37932285,Manhattan,Harlem,40.82028,-73.95381,Private room,65,1,3,0.08,1,0 +9444,37934478,Manhattan,East Village,40.728770000000004,-73.98175,Private room,139,1,9,0.23,1,0 +9445,9481957,Brooklyn,Bushwick,40.69818,-73.91356,Entire home/apt,210,1,0,,1,0 +9446,9539044,Brooklyn,Williamsburg,40.712920000000004,-73.94873,Entire home/apt,66,6,3,0.06,1,0 +9447,31245915,Manhattan,Upper West Side,40.790240000000004,-73.97910999999999,Entire home/apt,200,1,0,,1,0 +9448,920222,Manhattan,Lower East Side,40.722590000000004,-73.99311,Entire home/apt,200,3,18,0.37,1,188 +9449,3586177,Manhattan,Lower East Side,40.7201,-73.9841,Entire home/apt,175,3,44,0.92,1,34 +9450,26411218,Queens,Maspeth,40.734559999999995,-73.88891,Entire home/apt,96,3,139,3.14,2,21 +9451,37947830,Manhattan,Chinatown,40.715740000000004,-73.99107,Private room,100,1,13,0.27,1,2 +9452,2483508,Brooklyn,Bushwick,40.704640000000005,-73.91596,Private room,44,5,1,0.02,1,0 +9453,16183358,Brooklyn,Park Slope,40.67545,-73.98234000000001,Entire home/apt,175,4,5,0.1,1,13 +9454,3695529,Brooklyn,Carroll Gardens,40.68358,-73.99474000000001,Entire home/apt,600,5,12,0.25,2,174 +9455,37987441,Brooklyn,Bedford-Stuyvesant,40.68538,-73.92447,Private room,32,3,7,0.15,1,0 +9456,37579015,Manhattan,Hell's Kitchen,40.758340000000004,-73.99277,Private room,98,1,147,3.03,5,149 +9457,1468231,Manhattan,East Village,40.7333,-73.98943,Entire home/apt,219,2,30,0.62,1,2 +9458,1467387,Manhattan,West Village,40.7332,-74.00281,Entire home/apt,175,21,17,0.36,1,0 +9459,14726038,Manhattan,Chinatown,40.71475,-73.9912,Entire home/apt,120,2,13,0.37,1,0 +9460,23387933,Manhattan,Greenwich Village,40.73088,-74.00035,Entire home/apt,140,1,1,0.02,1,0 +9461,2662538,Brooklyn,Williamsburg,40.71563,-73.95737,Private room,84,1,204,4.24,1,319 +9462,20404001,Manhattan,Nolita,40.7208,-73.99647,Entire home/apt,80,1,1,0.02,1,0 +9463,5499064,Brooklyn,Bedford-Stuyvesant,40.687540000000006,-73.92522,Private room,45,3,87,1.91,1,258 +9464,24269641,Brooklyn,Bedford-Stuyvesant,40.68782,-73.935,Entire home/apt,115,1,0,,1,0 +9465,38010132,Queens,Astoria,40.77268,-73.92503,Private room,36,1,0,,1,0 +9466,24884055,Manhattan,Upper West Side,40.79715,-73.96873000000001,Private room,80,1,0,,1,0 +9467,37325782,Brooklyn,Bedford-Stuyvesant,40.68397,-73.95136,Private room,40,7,0,,1,0 +9468,38029848,Brooklyn,Bedford-Stuyvesant,40.696490000000004,-73.93645,Private room,38,1,2,0.04,1,0 +9469,5030772,Manhattan,Upper East Side,40.77258,-73.95213000000001,Entire home/apt,120,1,13,0.27,1,0 +9470,15416709,Brooklyn,Sunset Park,40.65295,-74.00411,Private room,70,5,0,,1,0 +9471,38032297,Manhattan,Morningside Heights,40.80445,-73.9649,Entire home/apt,140,4,2,0.04,1,0 +9472,37362312,Brooklyn,Bushwick,40.696220000000004,-73.93394,Private room,70,1,1,0.04,2,115 +9473,6994503,Manhattan,Upper West Side,40.78931,-73.9752,Entire home/apt,200,5,12,0.25,1,25 +9474,912400,Brooklyn,Park Slope,40.6756,-73.97780999999999,Private room,89,5,102,2.17,1,255 +9475,7118658,Manhattan,Washington Heights,40.848279999999995,-73.94284,Private room,250,3,11,0.24,1,345 +9476,38038797,Brooklyn,Sunset Park,40.662259999999996,-73.98956,Entire home/apt,125,2,11,0.23,1,10 +9477,15899061,Manhattan,Financial District,40.70583,-74.00717,Shared room,47,1,2,0.04,1,0 +9478,16155254,Manhattan,Stuyvesant Town,40.7305,-73.98043,Entire home/apt,160,1,150,3.21,4,238 +9479,38073985,Brooklyn,Bushwick,40.7005,-73.91816,Entire home/apt,75,60,0,,1,0 +9480,38076944,Manhattan,East Village,40.730309999999996,-73.98784,Private room,90,3,0,,1,0 +9481,8792814,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94678,Private room,65,1,6,0.13,10,158 +9482,8792814,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94666,Private room,63,1,3,0.07,10,306 +9483,7079175,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93193000000001,Private room,100,1,0,,1,0 +9484,21336136,Brooklyn,Vinegar Hill,40.70107,-73.98391,Entire home/apt,178,3,163,3.4,1,201 +9485,16398769,Manhattan,Chelsea,40.74116,-73.99523,Entire home/apt,200,1,0,,1,0 +9486,19491505,Manhattan,East Village,40.72457,-73.98142,Entire home/apt,170,2,5,0.11,1,0 +9487,31851704,Queens,East Elmhurst,40.7582,-73.87656,Private room,50,1,211,4.37,2,339 +9488,228858,Brooklyn,South Slope,40.66163,-73.98602,Entire home/apt,295,9,2,0.04,2,1 +9489,24821272,Manhattan,Upper East Side,40.77877,-73.94824,Private room,100,1,3,0.06,1,0 +9490,38101644,Manhattan,Financial District,40.70811,-74.01301,Private room,65,1,1,0.02,1,0 +9491,24772574,Manhattan,Upper East Side,40.764829999999996,-73.95366999999999,Entire home/apt,175,1,0,,1,0 +9492,6862694,Brooklyn,Prospect Heights,40.67628,-73.96425,Entire home/apt,90,5,1,0.02,1,0 +9493,22816592,Queens,Elmhurst,40.736259999999994,-73.87143,Entire home/apt,158,30,130,2.71,1,311 +9494,1557442,Manhattan,Harlem,40.80682,-73.95196,Entire home/apt,450,2,48,1.04,1,188 +9495,13904931,Queens,Ridgewood,40.70735,-73.90696,Entire home/apt,110,1,0,,1,0 +9496,7705129,Brooklyn,Park Slope,40.671279999999996,-73.97863000000001,Entire home/apt,100,5,0,,1,0 +9497,5369287,Brooklyn,Williamsburg,40.70995,-73.96722,Private room,130,1,13,0.28,1,188 +9498,97580,Queens,Long Island City,40.7631,-73.92936,Private room,70,3,137,2.84,1,8 +9499,38169148,Brooklyn,Greenpoint,40.726420000000005,-73.94519,Private room,70,7,3,0.06,1,0 +9500,13976139,Manhattan,Upper West Side,40.7905,-73.97385,Entire home/apt,120,10,0,,1,0 +9501,9403624,Manhattan,Chelsea,40.744820000000004,-73.99916999999999,Entire home/apt,170,5,13,0.3,1,4 +9502,2993160,Manhattan,Upper West Side,40.78629,-73.98056,Entire home/apt,200,7,0,,1,0 +9503,10353278,Manhattan,East Village,40.73125,-73.98675,Entire home/apt,480,3,2,0.04,2,0 +9504,1533248,Brooklyn,Greenpoint,40.7272,-73.95134,Entire home/apt,120,3,2,0.05,1,0 +9505,37623794,Manhattan,East Village,40.72545,-73.98801999999999,Entire home/apt,299,1,69,1.52,1,257 +9506,38269863,Manhattan,Harlem,40.81882,-73.956,Entire home/apt,150,3,0,,1,0 +9507,38272413,Brooklyn,Kensington,40.64028,-73.97395999999999,Private room,45,4,5,0.1,2,0 +9508,16237939,Brooklyn,Prospect Heights,40.67958,-73.96956,Private room,70,2,4,0.09,1,0 +9509,26364541,Brooklyn,Bedford-Stuyvesant,40.69381,-73.944,Private room,49,1,1,0.02,1,0 +9510,38284667,Manhattan,East Village,40.728190000000005,-73.98589,Private room,115,1,1,0.02,2,0 +9511,38288441,Manhattan,Harlem,40.82416,-73.94623,Private room,55,3,8,0.22,1,0 +9512,34873213,Brooklyn,Williamsburg,40.70909,-73.9256,Private room,55,1,1,0.02,1,0 +9513,7737249,Manhattan,Chinatown,40.71431,-73.99141999999999,Entire home/apt,250,30,48,1.83,2,341 +9514,38292974,Brooklyn,South Slope,40.666909999999994,-73.98658,Entire home/apt,399,3,11,0.31,1,18 +9515,14715701,Brooklyn,Cobble Hill,40.68628,-73.99681,Entire home/apt,198,3,1,0.09,1,5 +9516,38294553,Brooklyn,Bedford-Stuyvesant,40.682109999999994,-73.94775,Entire home/apt,78,1,1,0.02,1,0 +9517,38297695,Brooklyn,Prospect Heights,40.67797,-73.9701,Entire home/apt,200,2,1,0.02,1,0 +9518,38294027,Manhattan,East Village,40.7228,-73.98562,Entire home/apt,300,23,1,0.02,1,0 +9519,1603343,Brooklyn,Bushwick,40.704029999999996,-73.91275999999999,Entire home/apt,225,2,3,0.06,1,0 +9520,3390947,Manhattan,SoHo,40.72268,-74.00269,Entire home/apt,650,2,24,0.51,1,23 +9521,1641537,Brooklyn,Greenpoint,40.72503,-73.93909000000001,Private room,53,7,7,0.15,2,0 +9522,38337856,Manhattan,Greenwich Village,40.733779999999996,-73.99714,Entire home/apt,159,5,22,0.46,1,22 +9523,20559017,Manhattan,Upper East Side,40.76164,-73.95995,Private room,65,30,3,0.08,9,342 +9524,18605510,Brooklyn,Bedford-Stuyvesant,40.68555,-73.94873,Private room,45,1,0,,1,0 +9525,19195540,Manhattan,Lower East Side,40.71894,-73.99205,Private room,120,3,86,1.82,3,99 +9526,11773680,Manhattan,Kips Bay,40.73813,-73.98098,Entire home/apt,280,1,4,0.09,1,225 +9527,19692652,Brooklyn,Clinton Hill,40.693870000000004,-73.96840999999999,Private room,60,2,42,0.87,1,0 +9528,5499953,Brooklyn,Crown Heights,40.67047,-73.95371999999999,Private room,100,1,2,0.04,2,365 +9529,38350446,Manhattan,Hell's Kitchen,40.76146,-73.9896,Private room,160,5,5,0.13,1,0 +9530,38352423,Queens,Long Island City,40.75508,-73.92918,Private room,45,1,1,0.02,1,0 +9531,24259346,Queens,Rego Park,40.726440000000004,-73.85477,Private room,39,1,2,0.04,1,0 +9532,38360286,Brooklyn,Bushwick,40.68992,-73.91408,Private room,50,1,0,,1,0 +9533,2303270,Manhattan,East Village,40.72947,-73.9813,Entire home/apt,120,4,21,1.23,1,9 +9534,942252,Brooklyn,Prospect Heights,40.67885,-73.96838000000001,Private room,99,1,8,0.17,2,0 +9535,379663,Manhattan,Upper West Side,40.78763,-73.97308000000001,Private room,129,3,5,0.1,1,0 +9536,38373441,Brooklyn,Bushwick,40.70174,-73.92662,Entire home/apt,350,3,58,1.21,1,81 +9537,1841169,Manhattan,Upper East Side,40.77016,-73.95716,Entire home/apt,300,1,1,0.02,1,0 +9538,38380486,Brooklyn,Williamsburg,40.70521,-73.94258,Entire home/apt,140,2,4,0.08,1,0 +9539,33300449,Manhattan,East Village,40.72869,-73.97653000000001,Entire home/apt,120,1,2,0.05,1,0 +9540,38388018,Brooklyn,Crown Heights,40.66664,-73.92805,Private room,64,2,56,2.65,1,184 +9541,27630423,Brooklyn,Crown Heights,40.674640000000004,-73.94275999999999,Entire home/apt,120,2,2,0.04,1,0 +9542,38390671,Manhattan,Washington Heights,40.83769,-73.94207,Private room,40,7,12,0.27,1,48 +9543,15743291,Manhattan,Chinatown,40.71479,-73.99284,Entire home/apt,120,4,7,0.15,1,0 +9544,2482069,Manhattan,Flatiron District,40.74145,-73.98828,Private room,95,1,0,,1,0 +9545,38392850,Brooklyn,Fort Greene,40.687940000000005,-73.97393000000001,Entire home/apt,150,3,10,0.21,1,0 +9546,38398698,Manhattan,Nolita,40.72044,-73.99568000000001,Entire home/apt,650,6,14,0.29,1,90 +9547,18008678,Manhattan,Upper West Side,40.80243,-73.9706,Private room,100,2,33,0.68,2,0 +9548,22373907,Queens,Bayside,40.76729,-73.77162,Entire home/apt,290,1,74,1.59,1,338 +9549,681331,Brooklyn,Crown Heights,40.66539,-73.96041,Entire home/apt,120,3,5,0.11,1,0 +9550,23851015,Manhattan,Lower East Side,40.72157,-73.98489000000001,Entire home/apt,130,2,0,,1,0 +9551,38405623,Queens,Long Island City,40.76432,-73.93401,Private room,70,5,0,,1,0 +9552,2282450,Manhattan,West Village,40.73529,-74.00323,Entire home/apt,235,3,111,2.38,2,126 +9553,5628243,Manhattan,Harlem,40.81024,-73.9525,Private room,95,1,10,0.21,1,0 +9554,38433605,Manhattan,Hell's Kitchen,40.75979,-73.99401999999999,Private room,80,18,0,,1,0 +9555,9892766,Manhattan,East Village,40.722609999999996,-73.98196,Entire home/apt,280,30,1,0.05,1,116 +9556,36625404,Manhattan,West Village,40.73545,-74.00686,Entire home/apt,195,2,30,0.62,1,189 +9557,38452274,Manhattan,Harlem,40.82196,-73.94247,Entire home/apt,100,3,14,0.29,1,0 +9558,6772512,Brooklyn,Greenpoint,40.721379999999996,-73.94709,Entire home/apt,100,3,7,0.14,1,0 +9559,11354707,Queens,Long Island City,40.75588,-73.93117,Entire home/apt,130,3,6,0.13,1,0 +9560,21498479,Manhattan,East Village,40.72168,-73.98418000000001,Entire home/apt,130,7,2,0.04,1,0 +9561,38460304,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94100999999999,Private room,125,4,27,0.57,2,312 +9562,38460304,Brooklyn,Bedford-Stuyvesant,40.69169,-73.93141999999999,Entire home/apt,130,4,34,0.73,2,340 +9563,13891989,Bronx,East Morrisania,40.82873,-73.89553000000001,Entire home/apt,120,1,142,3.1,1,345 +9564,24742173,Manhattan,Upper West Side,40.79708,-73.969,Entire home/apt,180,2,3,0.06,3,70 +9565,24260658,Manhattan,East Harlem,40.7946,-73.93571999999999,Private room,80,2,97,2.03,5,22 +9566,12149983,Manhattan,Civic Center,40.71645,-74.00402,Entire home/apt,250,2,2,0.04,1,0 +9567,38480809,Brooklyn,Williamsburg,40.71711,-73.94259,Private room,125,1,0,,1,0 +9568,38480982,Brooklyn,South Slope,40.663779999999996,-73.97813000000001,Entire home/apt,166,3,6,0.13,1,0 +9569,9166875,Manhattan,Upper West Side,40.80304,-73.96582,Private room,64,4,1,0.02,1,0 +9570,6284410,Brooklyn,Williamsburg,40.70794,-73.93975999999999,Private room,35,5,1,0.03,1,0 +9571,21056821,Manhattan,Harlem,40.80819,-73.94315,Entire home/apt,120,1,1,0.03,1,0 +9572,3369909,Brooklyn,Park Slope,40.68006,-73.98053,Private room,60,2,7,0.16,1,0 +9573,38497438,Brooklyn,Williamsburg,40.71969,-73.9562,Entire home/apt,215,1,1,0.02,1,0 +9574,4579626,Brooklyn,Park Slope,40.67618,-73.98122,Private room,58,1,211,5.13,2,178 +9575,5042891,Manhattan,Midtown,40.76579,-73.98057,Entire home/apt,260,5,0,,1,0 +9576,15147904,Brooklyn,Bushwick,40.69508,-73.91053000000001,Private room,40,3,71,1.47,1,24 +9577,31469635,Manhattan,Harlem,40.82606,-73.94659,Private room,78,1,4,0.09,2,55 +9578,38507835,Manhattan,East Village,40.724920000000004,-73.97914,Private room,80,6,1,0.02,1,0 +9579,26925894,Manhattan,East Village,40.729620000000004,-73.9836,Shared room,80,2,2,0.04,1,0 +9580,3484734,Brooklyn,Bedford-Stuyvesant,40.68396,-73.92872,Entire home/apt,159,7,6,0.19,1,1 +9581,12644018,Brooklyn,Bushwick,40.70055,-73.92193,Private room,150,1,0,,1,0 +9582,26202073,Brooklyn,Bushwick,40.68833,-73.91676,Entire home/apt,89,5,0,,1,0 +9583,2127057,Manhattan,Lower East Side,40.72065,-73.98273,Private room,145,2,148,3.16,1,134 +9584,38445572,Manhattan,Murray Hill,40.74823,-73.97447,Private room,130,1,2,0.04,1,0 +9585,13896003,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95472,Private room,50,1,0,,1,0 +9586,38569616,Brooklyn,Flatbush,40.64691,-73.95855,Entire home/apt,100,1,2,0.04,1,0 +9587,38567763,Brooklyn,Bedford-Stuyvesant,40.688559999999995,-73.9547,Private room,63,3,2,0.04,1,0 +9588,2164856,Brooklyn,East Flatbush,40.649390000000004,-73.94791,Private room,50,1,0,,1,0 +9589,34834676,Manhattan,Lower East Side,40.717290000000006,-73.98442,Entire home/apt,189,5,21,0.47,1,239 +9590,38583557,Brooklyn,Flatbush,40.653490000000005,-73.95527,Entire home/apt,99,7,2,0.04,1,0 +9591,8144621,Manhattan,Chelsea,40.74627,-73.99141999999999,Private room,150,1,0,,1,0 +9592,38599690,Manhattan,East Harlem,40.80023,-73.93822,Private room,35,1,1,0.02,1,0 +9593,1472993,Manhattan,Financial District,40.7078,-74.00914,Entire home/apt,200,1,6,0.13,1,0 +9594,4964848,Manhattan,Harlem,40.826809999999995,-73.9426,Private room,35,5,2,0.05,1,0 +9595,31452390,Manhattan,Washington Heights,40.83428,-73.94445999999999,Private room,60,1,1,0.02,1,0 +9596,38606448,Brooklyn,Bedford-Stuyvesant,40.68889,-73.95406,Private room,80,2,8,0.17,1,281 +9597,3890297,Manhattan,Kips Bay,40.73943,-73.98135,Entire home/apt,199,3,20,0.42,1,0 +9598,6486116,Manhattan,East Harlem,40.788579999999996,-73.94742,Entire home/apt,174,1,19,0.43,4,322 +9599,9059810,Brooklyn,Sheepshead Bay,40.59244,-73.95633000000001,Private room,85,7,0,,3,90 +9600,32004384,Manhattan,Upper West Side,40.779759999999996,-73.97837,Private room,120,7,11,1.16,1,362 +9601,11129295,Brooklyn,Bushwick,40.70178,-73.92829,Entire home/apt,98,4,1,0.02,1,0 +9602,27283579,Manhattan,East Village,40.72423,-73.99013000000001,Private room,119,2,4,0.08,1,0 +9603,38661692,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95205,Private room,1600,1,0,,1,0 +9604,16283468,Brooklyn,Sunset Park,40.66196,-73.99176999999999,Private room,75,1,113,2.33,2,233 +9605,33365473,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94119,Entire home/apt,450,2,34,0.76,2,337 +9606,12866178,Brooklyn,East New York,40.65918,-73.89226,Private room,55,2,9,0.19,1,342 +9607,38672291,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93436,Private room,64,1,24,0.5,1,0 +9608,16548316,Brooklyn,Williamsburg,40.70767,-73.94821,Private room,70,14,0,,1,0 +9609,19504544,Manhattan,West Village,40.72911,-74.00338,Private room,106,5,2,0.04,1,0 +9610,4907734,Brooklyn,Williamsburg,40.70068,-73.94103,Private room,45,3,14,0.35,1,0 +9611,14281112,Manhattan,SoHo,40.7221,-74.00464000000001,Private room,125,2,2,0.04,1,0 +9612,38678875,Manhattan,Midtown,40.75277,-73.96686,Private room,70,1,2,0.04,1,0 +9613,1163720,Manhattan,Harlem,40.81355,-73.94407,Private room,40,1,2,0.04,1,0 +9614,25705189,Queens,Long Island City,40.74364,-73.95392,Entire home/apt,100,5,0,,1,0 +9615,38404959,Queens,Ditmars Steinway,40.77742,-73.90965,Private room,85,3,3,0.06,2,163 +9616,12517331,Brooklyn,Prospect Heights,40.67876,-73.9715,Entire home/apt,75,1,4,0.08,1,0 +9617,38694062,Manhattan,East Village,40.72164,-73.97927,Entire home/apt,175,1,9,0.24,1,31 +9618,38702813,Manhattan,Lower East Side,40.72309,-73.98926,Private room,150,1,0,,1,0 +9619,37993952,Manhattan,Hell's Kitchen,40.76171,-73.99478,Private room,150,1,1,0.02,1,0 +9620,7365834,Brooklyn,Sheepshead Bay,40.58294,-73.95897,Entire home/apt,129,2,45,0.93,5,256 +9621,38712916,Brooklyn,Bushwick,40.69927,-73.92133000000001,Private room,60,1,0,,1,0 +9622,1173652,Brooklyn,Williamsburg,40.71058,-73.9672,Private room,80,2,74,1.64,1,210 +9623,38741040,Queens,Long Island City,40.75547,-73.92017,Private room,40,1,0,,1,0 +9624,23425862,Brooklyn,Bedford-Stuyvesant,40.691720000000004,-73.95862,Private room,90,1,0,,2,0 +9625,7489344,Manhattan,Lower East Side,40.71508,-73.98973000000001,Private room,120,1,18,0.37,1,0 +9626,38757107,Brooklyn,Bedford-Stuyvesant,40.68978,-73.94444,Entire home/apt,100,7,2,0.04,1,0 +9627,9991314,Queens,Astoria,40.76448,-73.92714000000001,Entire home/apt,125,2,0,,1,0 +9628,38759330,Brooklyn,Williamsburg,40.7122,-73.9511,Private room,35,1,3,0.06,1,0 +9629,7983308,Brooklyn,Williamsburg,40.71452,-73.95486,Entire home/apt,269,1,1,0.02,1,0 +9630,28269324,Manhattan,Gramercy,40.73448,-73.98056,Private room,45,30,2,0.04,1,0 +9631,5898139,Manhattan,Upper West Side,40.79933,-73.95949,Entire home/apt,185,1,1,0.02,1,0 +9632,38706510,Manhattan,Upper West Side,40.78015,-73.97875,Entire home/apt,120,30,2,0.08,1,200 +9633,38767720,Manhattan,Lower East Side,40.71934,-73.98424,Private room,97,1,2,0.04,1,0 +9634,393944,Manhattan,Murray Hill,40.74537,-73.97462,Entire home/apt,230,2,0,,1,0 +9635,4343834,Brooklyn,Carroll Gardens,40.68189,-73.99695,Entire home/apt,150,1,6,0.12,1,0 +9636,32604265,Brooklyn,Crown Heights,40.67647,-73.94813,Entire home/apt,135,2,23,0.59,1,0 +9637,3911807,Brooklyn,Williamsburg,40.715759999999996,-73.94468,Private room,45,5,0,,1,0 +9638,10832128,Brooklyn,Sunset Park,40.644,-74.01092,Private room,47,3,2,0.04,1,0 +9639,11962385,Queens,Astoria,40.76778,-73.92201,Entire home/apt,120,1,3,0.06,1,0 +9640,38788236,Brooklyn,Williamsburg,40.70649,-73.94505,Entire home/apt,100,1,11,0.23,1,0 +9641,38791434,Manhattan,Morningside Heights,40.804190000000006,-73.96268,Entire home/apt,60,1,0,,1,0 +9642,15107351,Manhattan,NoHo,40.72579,-73.99341,Entire home/apt,245,3,14,0.3,1,198 +9643,1405974,Manhattan,Midtown,40.74603,-73.98364000000001,Entire home/apt,150,3,1,0.02,1,0 +9644,38796373,Manhattan,Midtown,40.76441,-73.98058,Entire home/apt,386,7,0,,1,0 +9645,3401676,Manhattan,Kips Bay,40.73774,-73.97343000000001,Private room,95,28,1,0.03,1,72 +9646,5417646,Manhattan,Lower East Side,40.71546,-73.9896,Entire home/apt,120,4,3,0.08,1,0 +9647,38827405,Manhattan,Greenwich Village,40.7292,-74.00209,Private room,145,3,62,1.3,1,0 +9648,3750905,Brooklyn,Williamsburg,40.713029999999996,-73.9558,Entire home/apt,109,2,28,0.61,1,170 +9649,1023985,Brooklyn,Williamsburg,40.71376,-73.95293000000001,Private room,80,3,2,0.04,1,0 +9650,38832294,Brooklyn,Crown Heights,40.67358,-73.94351,Entire home/apt,105,1,7,0.15,1,0 +9651,15824880,Queens,Astoria,40.7722,-73.93105,Private room,37,1,0,,1,0 +9652,38850307,Brooklyn,Bedford-Stuyvesant,40.6846,-73.94478000000001,Entire home/apt,125,3,130,2.72,1,217 +9653,3417039,Manhattan,Nolita,40.724109999999996,-73.99563,Private room,80,2,1,0.02,1,0 +9654,11239404,Manhattan,Upper West Side,40.77088,-73.98061,Entire home/apt,140,2,2,0.04,1,0 +9655,37028138,Manhattan,East Village,40.72228,-73.9838,Entire home/apt,250,3,21,0.44,1,0 +9656,601586,Brooklyn,Bedford-Stuyvesant,40.68148,-73.93145,Private room,79,1,0,,1,0 +9657,6575777,Manhattan,Lower East Side,40.71864,-73.98346,Entire home/apt,450,7,1,0.02,1,0 +9658,30423241,Brooklyn,Greenpoint,40.72927,-73.95707,Entire home/apt,120,3,6,0.17,2,43 +9659,22805576,Manhattan,East Village,40.72163,-73.97888,Private room,100,1,0,,1,0 +9660,19135506,Manhattan,Upper West Side,40.7777,-73.98796,Entire home/apt,150,1,1,0.02,1,0 +9661,4875631,Manhattan,Gramercy,40.73579,-73.98175,Private room,200,1,0,,1,0 +9662,22344488,Queens,Long Island City,40.75226,-73.94089,Entire home/apt,110,1,9,0.19,1,0 +9663,38902136,Brooklyn,Gowanus,40.66892,-73.99136,Entire home/apt,165,3,178,3.7,1,134 +9664,3542562,Manhattan,Harlem,40.82622,-73.9498,Private room,69,31,1,0.03,4,64 +9665,3542562,Manhattan,Harlem,40.82605,-73.94783000000001,Private room,69,31,3,0.08,4,32 +9666,38914517,Brooklyn,Flatbush,40.64213,-73.95298000000001,Private room,180,1,22,0.5,2,89 +9667,16617981,Manhattan,Washington Heights,40.835229999999996,-73.9398,Private room,40,1,2,0.05,1,0 +9668,4279384,Brooklyn,Flatbush,40.64167,-73.95465,Private room,40,3,4,0.09,2,0 +9669,34789416,Queens,Springfield Gardens,40.67205,-73.75343000000001,Private room,109,1,1,0.08,1,365 +9670,2134232,Manhattan,Tribeca,40.71928,-74.01125,Private room,100,1,15,0.34,2,0 +9671,3861404,Brooklyn,Prospect-Lefferts Gardens,40.656279999999995,-73.96014,Private room,70,5,3,0.06,2,0 +9672,38943127,Manhattan,Murray Hill,40.74981,-73.9786,Entire home/apt,198,5,1,0.02,1,0 +9673,38946305,Brooklyn,Bushwick,40.694959999999995,-73.93088,Private room,50,3,4,0.08,1,0 +9674,38948315,Brooklyn,Bushwick,40.69644,-73.92707,Entire home/apt,130,2,106,2.2,1,210 +9675,28460565,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92831,Entire home/apt,135,2,6,0.13,1,0 +9676,4807448,Brooklyn,Bushwick,40.70647,-73.92093,Private room,35,20,0,,1,0 +9677,38952124,Manhattan,Upper West Side,40.79555,-73.96578000000001,Entire home/apt,399,3,0,,1,0 +9678,6367907,Brooklyn,Flatbush,40.63198,-73.95988,Private room,108,2,59,1.24,1,344 +9679,1025745,Manhattan,Upper East Side,40.782709999999994,-73.95288000000001,Entire home/apt,595,2,30,0.63,1,332 +9680,17942384,Brooklyn,Park Slope,40.66835,-73.97981,Entire home/apt,129,5,2,0.04,1,0 +9681,38965196,Manhattan,Harlem,40.806490000000004,-73.95565,Private room,88,4,16,0.43,1,0 +9682,38840706,Queens,Flushing,40.76735,-73.81801,Private room,75,1,28,0.6,1,363 +9683,38973529,Brooklyn,Williamsburg,40.71723,-73.96285,Private room,85,1,0,,1,0 +9684,25615380,Manhattan,Washington Heights,40.856190000000005,-73.93117,Private room,70,1,2,0.06,1,145 +9685,6223874,Brooklyn,Greenpoint,40.73059,-73.95651,Entire home/apt,185,1,3,0.06,1,0 +9686,3676701,Brooklyn,Clinton Hill,40.68128,-73.96285999999999,Entire home/apt,145,3,5,0.1,1,0 +9687,918087,Brooklyn,Bedford-Stuyvesant,40.686859999999996,-73.94973,Entire home/apt,150,1,1,0.02,3,0 +9688,429925,Brooklyn,Flatbush,40.63767,-73.95636999999999,Entire home/apt,50,21,0,,1,0 +9689,344035,Brooklyn,Prospect Heights,40.67883,-73.97051,Private room,70,1,258,5.45,13,320 +9690,39039509,Brooklyn,East Flatbush,40.64563,-73.9419,Entire home/apt,150,2,36,0.77,1,248 +9691,38944275,Brooklyn,Williamsburg,40.7138,-73.96798000000001,Private room,100,1,12,0.26,1,89 +9692,8670155,Manhattan,Kips Bay,40.74085,-73.98153,Private room,69,1,1,0.02,1,0 +9693,38609509,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.95888000000001,Entire home/apt,115,3,65,1.37,1,127 +9694,2801316,Manhattan,West Village,40.73778,-73.99941,Entire home/apt,120,5,17,0.56,1,28 +9695,1407021,Manhattan,Chinatown,40.71624,-73.99015,Entire home/apt,180,3,30,0.63,1,0 +9696,36849759,Brooklyn,Bushwick,40.702220000000004,-73.93294,Entire home/apt,147,3,109,2.5,2,191 +9697,5553132,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95666,Entire home/apt,125,2,6,0.12,1,0 +9698,39055176,Manhattan,Upper East Side,40.76205,-73.96382,Entire home/apt,328,2,145,3.05,1,298 +9699,2203415,Brooklyn,Bedford-Stuyvesant,40.68678,-73.9513,Entire home/apt,85,1,6,0.13,1,0 +9700,37077716,Brooklyn,Bay Ridge,40.630140000000004,-74.027,Entire home/apt,60,7,10,0.21,1,0 +9701,32691187,Brooklyn,Bedford-Stuyvesant,40.68618,-73.93273,Private room,60,3,7,0.15,1,0 +9702,1910452,Brooklyn,Williamsburg,40.70608,-73.9433,Private room,46,2,0,,2,0 +9703,18922562,Manhattan,Hell's Kitchen,40.75538,-73.99750999999999,Private room,90,2,0,,1,0 +9704,14925591,Brooklyn,Williamsburg,40.70275,-73.93445,Entire home/apt,150,1,191,3.97,1,290 +9705,12738054,Brooklyn,Greenpoint,40.72435,-73.95154000000001,Private room,95,1,119,2.57,2,1 +9706,28316637,Brooklyn,Crown Heights,40.66514,-73.95688,Entire home/apt,185,3,56,1.25,1,333 +9707,942252,Brooklyn,Prospect Heights,40.680240000000005,-73.96658000000001,Private room,89,1,213,4.42,2,38 +9708,15539137,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93751,Entire home/apt,67,2,149,4.08,1,142 +9709,39085295,Brooklyn,Flatbush,40.63968,-73.95215,Entire home/apt,125,3,105,2.67,1,195 +9710,39085072,Manhattan,Gramercy,40.73366,-73.98313,Private room,80,1,4,0.08,1,0 +9711,39126862,Brooklyn,Williamsburg,40.70732,-73.95259,Entire home/apt,199,3,4,0.08,2,0 +9712,1534857,Manhattan,Nolita,40.722609999999996,-73.99333,Private room,79,12,0,,2,0 +9713,13001047,Manhattan,Gramercy,40.73768,-73.98727,Entire home/apt,225,3,0,,1,0 +9714,3504234,Brooklyn,Williamsburg,40.7128,-73.94175,Entire home/apt,125,1,0,,1,0 +9715,34315772,Brooklyn,Williamsburg,40.70414,-73.93408000000001,Entire home/apt,360,6,34,0.72,1,76 +9716,3700637,Brooklyn,Williamsburg,40.71332,-73.95291,Entire home/apt,200,3,1,0.02,1,0 +9717,26388084,Queens,Sunnyside,40.74824,-73.91360999999999,Private room,80,4,42,0.89,2,1 +9718,39143718,Brooklyn,Bedford-Stuyvesant,40.68141,-73.95841,Entire home/apt,400,7,9,0.2,2,365 +9719,14291580,Brooklyn,Park Slope,40.68049,-73.97662,Private room,65,8,7,0.15,1,11 +9720,39148503,Brooklyn,Williamsburg,40.708909999999996,-73.94161,Private room,70,3,8,0.17,2,0 +9721,22652051,Brooklyn,Bushwick,40.70414,-73.92888,Private room,85,2,24,0.58,1,0 +9722,12535775,Manhattan,Gramercy,40.73764,-73.9819,Entire home/apt,200,1,0,,1,0 +9723,10183117,Brooklyn,Prospect-Lefferts Gardens,40.66037,-73.95900999999999,Entire home/apt,68,2,7,0.15,1,0 +9724,9942424,Brooklyn,Williamsburg,40.71326,-73.9542,Private room,50,10,0,,1,0 +9725,4336763,Brooklyn,Gowanus,40.6798,-73.98231,Entire home/apt,130,1,4,0.08,1,0 +9726,15887987,Manhattan,Chelsea,40.73925,-74.0,Entire home/apt,215,3,94,2.02,1,8 +9727,12161280,Manhattan,East Village,40.72528,-73.97882,Entire home/apt,165,4,38,0.8,1,0 +9728,18576994,Manhattan,East Village,40.72361,-73.98395,Private room,100,1,6,0.12,1,0 +9729,10558084,Brooklyn,Bedford-Stuyvesant,40.68558,-73.9281,Entire home/apt,85,3,1,0.02,1,0 +9730,39186813,Brooklyn,Carroll Gardens,40.67541,-73.99812,Private room,75,1,0,,1,0 +9731,8435624,Brooklyn,Crown Heights,40.68073,-73.96369,Entire home/apt,105,2,15,0.31,1,0 +9732,4157435,Brooklyn,Bushwick,40.69696,-73.93433,Entire home/apt,100,5,71,1.54,1,238 +9733,14084147,Manhattan,Hell's Kitchen,40.75864,-73.99056,Entire home/apt,499,3,149,3.11,1,201 +9734,7202390,Manhattan,Chelsea,40.74582,-73.99472,Private room,195,1,0,,1,0 +9735,11816453,Brooklyn,South Slope,40.662659999999995,-73.98885,Entire home/apt,150,3,4,0.09,1,0 +9736,33983182,Manhattan,Upper East Side,40.78235,-73.95058,Private room,54,25,4,0.08,1,0 +9737,35321797,Brooklyn,Williamsburg,40.71802,-73.95228,Entire home/apt,250,1,1,0.03,1,0 +9738,39200438,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93983,Private room,40,1,23,0.56,1,365 +9739,30662827,Queens,Astoria,40.766999999999996,-73.93051,Entire home/apt,95,4,1,0.03,1,0 +9740,30283594,Manhattan,Financial District,40.70862,-74.01408,Entire home/apt,169,30,3,0.09,121,364 +9741,6004716,Queens,Astoria,40.7573,-73.92773000000001,Private room,75,1,0,,1,0 +9742,23224059,Manhattan,Hell's Kitchen,40.76432,-73.99396,Entire home/apt,175,4,19,0.43,1,343 +9743,2045777,Brooklyn,South Slope,40.66707,-73.98994,Entire home/apt,145,1,4,0.09,1,0 +9744,6520502,Manhattan,Financial District,40.70725,-74.01533,Entire home/apt,450,1,0,,1,0 +9745,3530591,Manhattan,East Village,40.72295,-73.98246,Entire home/apt,135,4,4,0.09,1,0 +9746,39262419,Manhattan,Upper West Side,40.7787,-73.98406999999999,Entire home/apt,125,3,2,0.05,1,0 +9747,241593,Brooklyn,Flatbush,40.65036,-73.96306,Private room,70,1,0,,2,0 +9748,39268020,Manhattan,Upper East Side,40.77673,-73.95078000000001,Private room,100,1,7,0.2,1,0 +9749,13347167,Manhattan,Upper East Side,40.77085,-73.95725,Entire home/apt,118,30,4,0.11,29,315 +9750,35819315,Brooklyn,Bushwick,40.69593,-73.92057,Entire home/apt,172,3,135,2.99,2,247 +9751,24377694,Brooklyn,Crown Heights,40.67804,-73.95411,Private room,105,1,1,0.05,3,0 +9752,24377694,Brooklyn,Crown Heights,40.67628,-73.95421999999999,Private room,55,1,1,0.04,3,0 +9753,7443028,Brooklyn,Bushwick,40.68949,-73.91190999999999,Private room,60,5,0,,1,0 +9754,19976579,Manhattan,East Village,40.726820000000004,-73.97845,Entire home/apt,250,1,0,,1,0 +9755,16960158,Manhattan,Battery Park City,40.71011,-74.01456999999999,Private room,99,2,31,0.65,1,0 +9756,21742272,Brooklyn,Midwood,40.62467,-73.96406,Entire home/apt,88,2,13,0.37,1,0 +9757,11279503,Manhattan,NoHo,40.7256,-73.99555,Private room,125,1,3,0.06,1,0 +9758,39288710,Brooklyn,Bedford-Stuyvesant,40.68544,-73.93871999999999,Entire home/apt,102,3,64,1.38,1,296 +9759,30320622,Brooklyn,Borough Park,40.64305,-73.99959,Private room,40,2,1,0.02,2,0 +9760,2260108,Brooklyn,Boerum Hill,40.688520000000004,-73.98697,Entire home/apt,119,5,12,0.25,1,0 +9761,5565918,Brooklyn,Bedford-Stuyvesant,40.69141,-73.934,Entire home/apt,101,4,54,1.14,1,0 +9762,39249461,Brooklyn,Bushwick,40.70512,-73.92187,Private room,65,3,3,0.06,1,0 +9763,32164030,Bronx,Hunts Point,40.81335,-73.8873,Private room,40,30,15,0.32,6,333 +9764,10131727,Manhattan,Harlem,40.8051,-73.95069000000001,Entire home/apt,109,2,1,0.02,1,0 +9765,32164030,Bronx,Hunts Point,40.81395,-73.88675,Private room,40,30,21,0.44,6,343 +9766,22079796,Queens,Sunnyside,40.74601,-73.9149,Entire home/apt,250,15,0,,1,18 +9767,39335488,Manhattan,East Harlem,40.81211,-73.9378,Private room,75,3,134,2.88,1,90 +9768,26354652,Brooklyn,Flatbush,40.64935,-73.96485,Private room,90,2,24,1.48,1,175 +9769,29156329,Manhattan,Upper West Side,40.8012,-73.96382,Private room,87,3,9,0.19,1,0 +9770,30200529,Manhattan,Harlem,40.81095,-73.9443,Entire home/apt,185,2,12,0.65,1,0 +9771,39347667,Brooklyn,Bushwick,40.68496,-73.91107,Private room,45,14,15,0.48,1,0 +9772,2588427,Manhattan,SoHo,40.72547,-74.01,Private room,300,7,51,1.11,2,156 +9773,7094504,Brooklyn,Fort Greene,40.68799,-73.97314,Entire home/apt,140,2,19,0.4,1,1 +9774,39355825,Brooklyn,Williamsburg,40.71477,-73.94761,Private room,70,5,5,0.11,1,0 +9775,23584870,Brooklyn,Williamsburg,40.71733,-73.95566,Entire home/apt,150,6,0,,1,0 +9776,13873590,Brooklyn,Williamsburg,40.70884,-73.95742,Private room,80,1,3,0.06,1,0 +9777,1497263,Brooklyn,Williamsburg,40.717040000000004,-73.94509000000001,Private room,60,1,0,,1,0 +9778,37407363,Brooklyn,Bushwick,40.70192,-73.92928,Private room,45,1,7,0.15,1,0 +9779,18277294,Brooklyn,Crown Heights,40.67065,-73.93544,Private room,40,8,1,0.02,1,0 +9780,1825554,Manhattan,Chelsea,40.7394,-73.99838000000001,Entire home/apt,210,1,10,0.22,1,6 +9781,60046,Brooklyn,Vinegar Hill,40.70146,-73.98188,Entire home/apt,225,30,23,0.49,1,268 +9782,29544115,Manhattan,Midtown,40.75737,-73.96916,Private room,70,1,1,0.02,1,0 +9783,15772306,Brooklyn,Clinton Hill,40.69188,-73.9607,Private room,45,5,0,,1,0 +9784,39389693,Manhattan,Washington Heights,40.8327,-73.94485999999999,Entire home/apt,120,1,3,0.06,1,0 +9785,39394883,Manhattan,Chinatown,40.716120000000004,-73.99121,Entire home/apt,150,1,0,,1,0 +9786,397423,Manhattan,Upper West Side,40.77778,-73.9781,Private room,133,2,183,3.9,1,263 +9787,39298265,Manhattan,Harlem,40.803129999999996,-73.95742,Private room,60,2,1,0.02,1,0 +9788,11203708,Manhattan,Harlem,40.811890000000005,-73.94148,Private room,64,2,20,0.42,1,0 +9789,20245055,Manhattan,Lower East Side,40.71289,-73.98877,Private room,69,3,27,0.56,2,261 +9790,39457267,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95393,Private room,40,1,2,0.04,1,0 +9791,810560,Manhattan,Financial District,40.70552,-74.00841,Entire home/apt,190,1,3,0.06,1,0 +9792,12215421,Brooklyn,Park Slope,40.668890000000005,-73.97617,Entire home/apt,275,2,60,1.26,1,0 +9793,16387794,Manhattan,Hell's Kitchen,40.7603,-73.99221999999999,Entire home/apt,200,3,203,4.27,1,271 +9794,39480845,Manhattan,East Harlem,40.790420000000005,-73.94641,Private room,75,4,37,0.77,1,0 +9795,39483454,Brooklyn,Williamsburg,40.7129,-73.95565,Entire home/apt,180,14,2,0.04,1,0 +9796,39503857,Manhattan,Harlem,40.82034,-73.94345,Private room,200,1,0,,1,0 +9797,31086628,Brooklyn,Gowanus,40.67758,-73.98519,Private room,59,2,96,2.07,1,41 +9798,1110017,Brooklyn,Greenpoint,40.72402,-73.9415,Entire home/apt,149,5,2,0.04,1,0 +9799,9646150,Brooklyn,Prospect-Lefferts Gardens,40.65736,-73.96094000000001,Private room,55,1,107,2.22,2,46 +9800,31799541,Manhattan,Upper West Side,40.79452,-73.97065,Private room,75,1,12,0.27,1,0 +9801,7753501,Manhattan,Harlem,40.80772,-73.95100000000001,Entire home/apt,400,2,1,0.02,1,0 +9802,39533449,Manhattan,Lower East Side,40.71281,-73.98705,Entire home/apt,169,4,68,2.54,1,44 +9803,24265578,Manhattan,Upper West Side,40.79955,-73.96369,Entire home/apt,125,2,7,0.15,1,0 +9804,2277452,Brooklyn,Bedford-Stuyvesant,40.68346,-73.95551,Private room,58,2,30,1.97,1,0 +9805,25846948,Manhattan,Upper East Side,40.7631,-73.96393,Entire home/apt,151,3,19,0.41,1,0 +9806,39539952,Manhattan,Inwood,40.86464,-73.92768000000001,Entire home/apt,67,14,7,0.15,1,21 +9807,39539913,Manhattan,Harlem,40.825990000000004,-73.94238,Private room,100,1,0,,1,0 +9808,39541748,Manhattan,West Village,40.73764,-73.99887,Entire home/apt,185,3,4,0.08,1,0 +9809,198538,Brooklyn,Crown Heights,40.67215,-73.94126,Entire home/apt,190,2,63,1.41,1,0 +9810,39549996,Manhattan,East Village,40.729620000000004,-73.98931999999999,Private room,78,16,9,0.19,1,23 +9811,9646150,Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96064,Private room,60,1,140,4.0,2,40 +9812,17122110,Manhattan,Greenwich Village,40.735279999999996,-73.99744,Entire home/apt,210,2,193,4.13,1,169 +9813,9970061,Queens,Long Island City,40.7432,-73.95565,Entire home/apt,139,2,6,0.13,1,0 +9814,39599671,Manhattan,Upper West Side,40.79045,-73.97361,Entire home/apt,200,5,12,0.26,1,0 +9815,39603420,Manhattan,Harlem,40.82652,-73.95304,Private room,75,1,151,3.17,1,0 +9816,16437254,Brooklyn,Fort Greene,40.688959999999994,-73.97737,Entire home/apt,123,30,7,0.19,21,342 +9817,39608626,Manhattan,Harlem,40.82929,-73.94181999999999,Private room,28,1,1,0.02,1,0 +9818,16437254,Brooklyn,Boerum Hill,40.68857,-73.98668,Entire home/apt,120,30,7,0.15,21,360 +9819,3894475,Brooklyn,South Slope,40.666709999999995,-73.98172,Private room,85,2,5,0.1,3,0 +9820,9443343,Queens,Ditmars Steinway,40.776720000000005,-73.91956,Entire home/apt,122,3,109,2.34,1,271 +9821,39624147,Manhattan,Midtown,40.76372,-73.98080999999999,Entire home/apt,700,7,0,,1,0 +9822,20670988,Manhattan,Upper West Side,40.794000000000004,-73.97632,Entire home/apt,99,5,16,0.34,1,0 +9823,22863142,Manhattan,Washington Heights,40.833529999999996,-73.94393000000001,Private room,110,4,45,2.23,1,59 +9824,8726365,Brooklyn,Williamsburg,40.70641,-73.96800999999999,Entire home/apt,185,1,0,,1,0 +9825,39635423,Brooklyn,Williamsburg,40.712720000000004,-73.96632,Entire home/apt,120,1,0,,1,0 +9826,19914713,Queens,Astoria,40.76254,-73.91415,Private room,89,2,7,0.15,2,0 +9827,39636434,Brooklyn,Bushwick,40.69095,-73.92385999999999,Private room,48,4,8,0.17,1,0 +9828,4291007,Brooklyn,Clinton Hill,40.69342,-73.9611,Private room,90,30,20,0.42,11,249 +9829,4291007,Brooklyn,Clinton Hill,40.694109999999995,-73.96151,Private room,90,30,31,0.66,11,314 +9830,39639929,Bronx,Concourse,40.823809999999995,-73.92725,Entire home/apt,110,1,1,0.02,1,0 +9831,10095503,Manhattan,Harlem,40.82112,-73.94962,Entire home/apt,150,1,7,0.15,1,10 +9832,1348134,Brooklyn,Crown Heights,40.67552,-73.96041,Entire home/apt,120,5,4,0.09,1,10 +9833,39639169,Brooklyn,Bedford-Stuyvesant,40.68338,-73.92071999999999,Entire home/apt,110,3,125,2.66,1,315 +9834,10475653,Brooklyn,Windsor Terrace,40.64813,-73.97237,Private room,45,1,66,1.38,3,228 +9835,3353772,Brooklyn,Williamsburg,40.708890000000004,-73.94113,Private room,75,1,1,0.02,1,0 +9836,39648442,Queens,Flushing,40.74823,-73.8084,Private room,65,1,158,3.35,2,355 +9837,39652597,Manhattan,Chelsea,40.744659999999996,-73.99504,Entire home/apt,170,2,4,0.09,1,0 +9838,39655899,Manhattan,Midtown,40.75176,-73.96921,Entire home/apt,140,1,1,0.02,1,0 +9839,16173306,Manhattan,Hell's Kitchen,40.76548,-73.99155,Private room,90,1,0,,1,0 +9840,39699925,Manhattan,Chinatown,40.71379,-73.99112,Entire home/apt,170,3,39,0.85,1,19 +9841,37579015,Manhattan,Hell's Kitchen,40.75894,-73.9915,Private room,90,1,142,3.1,5,164 +9842,4398238,Brooklyn,Prospect Heights,40.67505,-73.96710999999999,Entire home/apt,175,2,5,0.11,1,0 +9843,4565614,Brooklyn,South Slope,40.662929999999996,-73.9838,Entire home/apt,135,1,3,0.06,1,0 +9844,5287536,Brooklyn,Greenpoint,40.72961,-73.95656,Entire home/apt,120,1,0,,1,0 +9845,1242357,Manhattan,Upper West Side,40.79397,-73.97376,Entire home/apt,175,3,1,0.02,1,0 +9846,6031454,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.95866,Private room,40,15,2,0.04,1,0 +9847,38699335,Manhattan,Morningside Heights,40.806740000000005,-73.96141,Private room,65,1,0,,1,0 +9848,39713675,Brooklyn,Bedford-Stuyvesant,40.683659999999996,-73.9247,Private room,69,2,186,3.89,1,6 +9849,35307662,Manhattan,Greenwich Village,40.73049,-74.00111,Private room,119,2,0,,1,0 +9850,39725165,Manhattan,Harlem,40.80256,-73.94524,Private room,85,30,27,0.61,1,0 +9851,1355616,Brooklyn,Boerum Hill,40.68234,-73.98088,Private room,100,3,0,,1,0 +9852,39742177,Manhattan,Upper West Side,40.783229999999996,-73.97721,Entire home/apt,155,3,1,0.02,1,0 +9853,10622338,Manhattan,Lower East Side,40.71767,-73.99004000000001,Entire home/apt,160,1,26,0.54,1,0 +9854,18770940,Brooklyn,Williamsburg,40.704609999999995,-73.93845,Private room,50,21,16,0.34,1,0 +9855,62791,Manhattan,Harlem,40.81208,-73.95097,Entire home/apt,125,3,1,0.03,1,0 +9856,27921486,Manhattan,SoHo,40.72487,-73.99858,Entire home/apt,350,1,0,,1,0 +9857,12757332,Manhattan,Financial District,40.70406,-74.01227,Entire home/apt,350,1,0,,1,0 +9858,23124921,Brooklyn,Clinton Hill,40.68973,-73.96073,Private room,65,2,2,0.04,1,0 +9859,23299199,Manhattan,West Village,40.73453,-74.00656,Entire home/apt,247,1,0,,1,0 +9860,23129690,Manhattan,Upper West Side,40.80089,-73.96752,Shared room,85,1,0,,1,0 +9861,39805148,Queens,Jamaica,40.68692,-73.78022,Private room,45,1,63,1.34,2,250 +9862,3751296,Brooklyn,Greenpoint,40.72717,-73.94697,Entire home/apt,139,2,21,0.45,1,188 +9863,39808438,Brooklyn,Bushwick,40.68902,-73.9156,Entire home/apt,85,2,172,3.6,5,136 +9864,34312106,Queens,Ridgewood,40.69962,-73.90439,Entire home/apt,125,2,108,2.28,1,321 +9865,16382059,Manhattan,Upper East Side,40.77459,-73.9476,Private room,115,2,18,0.38,1,0 +9866,13283118,Brooklyn,South Slope,40.666270000000004,-73.98954,Entire home/apt,175,60,1,0.38,1,282 +9867,4582155,Manhattan,East Village,40.72475,-73.98009,Entire home/apt,140,3,0,,1,0 +9868,17675081,Manhattan,Midtown,40.7601,-73.96746,Private room,125,1,0,,1,0 +9869,26388084,Queens,Long Island City,40.750370000000004,-73.91265,Private room,59,4,28,0.59,2,364 +9870,17868326,Manhattan,Lower East Side,40.720279999999995,-73.98182,Private room,80,3,1,0.03,1,0 +9871,15762897,Brooklyn,Bushwick,40.69574,-73.9286,Private room,50,14,10,0.21,1,0 +9872,19037938,Brooklyn,Greenpoint,40.72541,-73.95279000000001,Private room,45,12,0,,1,0 +9873,7182520,Brooklyn,Bedford-Stuyvesant,40.6862,-73.9542,Entire home/apt,90,4,7,0.15,1,18 +9874,7399447,Brooklyn,Williamsburg,40.71163,-73.95186,Entire home/apt,250,7,33,0.7,1,0 +9875,39706334,Brooklyn,Williamsburg,40.71009,-73.95398,Entire home/apt,140,1,0,,1,0 +9876,35102629,Manhattan,Chelsea,40.75013,-74.0033,Entire home/apt,215,1,75,1.61,1,331 +9877,2619307,Manhattan,SoHo,40.72634,-74.00101,Entire home/apt,180,3,6,0.14,1,0 +9878,18008678,Manhattan,Upper West Side,40.80193,-73.97038,Entire home/apt,250,2,18,0.38,2,0 +9879,39868106,Manhattan,Flatiron District,40.74334,-73.99204,Entire home/apt,400,1,0,,1,0 +9880,2859398,Manhattan,Chelsea,40.7457,-73.9939,Entire home/apt,700,5,1,0.02,1,0 +9881,17163531,Brooklyn,Flatbush,40.653529999999996,-73.95611,Private room,65,1,0,,1,0 +9882,39875363,Manhattan,Chelsea,40.7438,-73.99750999999999,Private room,118,2,259,5.44,1,47 +9883,8617411,Manhattan,Tribeca,40.71978,-74.00968,Private room,1500,1,0,,1,365 +9884,10831168,Brooklyn,Fort Hamilton,40.61926,-74.03272,Private room,70,1,15,0.39,1,22 +9885,39880500,Manhattan,Upper West Side,40.79203,-73.96967,Entire home/apt,110,7,9,0.19,1,19 +9886,39915290,Manhattan,Harlem,40.81095,-73.95296,Entire home/apt,299,3,90,1.96,2,304 +9887,39916890,Manhattan,East Village,40.7324,-73.98883000000001,Private room,95,4,3,0.08,1,0 +9888,87494,Manhattan,Washington Heights,40.834309999999995,-73.9402,Private room,70,2,2,0.04,1,0 +9889,39921605,Manhattan,Upper West Side,40.80417,-73.96874,Private room,167,30,44,0.92,5,188 +9890,4936739,Manhattan,Upper West Side,40.791,-73.9722,Private room,103,5,42,1.49,1,221 +9891,39938343,Manhattan,Lower East Side,40.71813,-73.99231,Entire home/apt,145,6,13,0.27,1,0 +9892,37676608,Brooklyn,Canarsie,40.63118,-73.89679,Entire home/apt,100,2,187,3.93,1,300 +9893,39940356,Brooklyn,Fort Greene,40.6874,-73.97484,Entire home/apt,275,6,8,0.23,1,9 +9894,3663218,Brooklyn,Williamsburg,40.71405,-73.94129000000001,Private room,60,1,1,0.02,2,0 +9895,6828611,Brooklyn,Williamsburg,40.70854,-73.95281,Private room,70,1,4,0.09,1,0 +9896,1464880,Manhattan,Nolita,40.72118,-73.99575,Entire home/apt,300,4,4,0.09,1,89 +9897,710443,Brooklyn,Williamsburg,40.715340000000005,-73.96633,Entire home/apt,370,2,132,3.14,1,257 +9898,16662303,Manhattan,Harlem,40.81835,-73.94138000000001,Private room,50,1,2,0.04,1,0 +9899,39968155,Manhattan,East Harlem,40.791059999999995,-73.94588,Entire home/apt,65,20,0,,1,0 +9900,38670785,Brooklyn,Bushwick,40.70189,-73.92872,Private room,68,1,1,0.02,1,0 +9901,15163256,Brooklyn,Sheepshead Bay,40.60633,-73.95704,Private room,92,3,60,1.29,3,334 +9902,39977656,Manhattan,Upper West Side,40.80299,-73.96465,Private room,40,9,0,,1,0 +9903,39978385,Queens,Astoria,40.76979,-73.92019,Entire home/apt,100,10,7,0.15,1,0 +9904,35743318,Manhattan,Upper East Side,40.77756,-73.94859,Private room,140,7,9,0.6,1,204 +9905,6684858,Manhattan,Hell's Kitchen,40.76769,-73.99405,Private room,150,3,17,0.37,1,364 +9906,13866555,Brooklyn,Bedford-Stuyvesant,40.68268,-73.92825,Private room,45,1,2,0.04,1,0 +9907,16929791,Brooklyn,Columbia St,40.6851,-74.00228,Private room,70,7,2,0.17,1,32 +9908,37138251,Manhattan,Upper West Side,40.78733,-73.97364,Entire home/apt,230,1,161,3.39,1,347 +9909,22994376,Queens,Ditmars Steinway,40.78261,-73.91452,Private room,49,1,0,,1,0 +9910,40034304,Queens,Long Island City,40.75203,-73.9361,Private room,80,3,8,0.56,1,0 +9911,19650141,Manhattan,Hell's Kitchen,40.75563,-73.99741999999999,Private room,105,1,0,,1,0 +9912,4596309,Brooklyn,Bedford-Stuyvesant,40.683170000000004,-73.91431999999999,Private room,40,3,3,0.07,1,0 +9913,40037773,Manhattan,Kips Bay,40.7438,-73.9781,Private room,90,3,19,0.43,1,0 +9914,39455276,Manhattan,Upper West Side,40.7874,-73.97381,Entire home/apt,600,10,2,0.06,1,36 +9915,40041424,Brooklyn,Crown Heights,40.67215,-73.94281,Private room,50,2,2,0.04,1,0 +9916,3672503,Brooklyn,South Slope,40.663070000000005,-73.9834,Entire home/apt,195,3,84,1.77,1,18 +9917,15192120,Manhattan,West Village,40.738659999999996,-74.00537,Entire home/apt,200,3,0,,1,0 +9918,9584747,Manhattan,East Village,40.721779999999995,-73.98212,Entire home/apt,250,2,11,0.24,1,0 +9919,40058595,Manhattan,Upper East Side,40.77865,-73.94858,Entire home/apt,175,2,4,0.08,1,0 +9920,40062888,Brooklyn,Greenpoint,40.7252,-73.95276,Private room,100,13,0,,1,0 +9921,1723544,Queens,Long Island City,40.75215,-73.93913,Entire home/apt,150,7,9,0.19,1,9 +9922,15090552,Manhattan,Midtown,40.74559,-73.98325,Entire home/apt,175,1,1,0.02,1,0 +9923,2484520,Manhattan,Morningside Heights,40.81033,-73.95897,Private room,150,1,0,,1,0 +9924,40068023,Manhattan,Midtown,40.75219,-73.97133000000001,Entire home/apt,400,6,0,,1,0 +9925,24170584,Manhattan,Little Italy,40.719590000000004,-73.99604000000001,Private room,99,2,2,0.04,2,0 +9926,39835878,Queens,Ditmars Steinway,40.77648,-73.90987,Private room,70,3,13,0.28,1,219 +9927,40072723,Queens,Rego Park,40.72929,-73.8574,Private room,48,1,32,0.92,1,0 +9928,39918716,Brooklyn,East Flatbush,40.65551,-73.94206,Entire home/apt,199,2,6,0.16,1,130 +9929,39706100,Manhattan,Upper West Side,40.79317,-73.96956,Private room,90,3,6,0.13,1,0 +9930,33853401,Brooklyn,Crown Heights,40.67714,-73.9486,Entire home/apt,130,2,3,0.06,1,0 +9931,29999716,Brooklyn,South Slope,40.66393,-73.98728,Entire home/apt,300,7,0,,1,0 +9932,7500,Brooklyn,Clinton Hill,40.68864,-73.96759,Entire home/apt,175,30,7,0.17,1,27 +9933,24001156,Brooklyn,Williamsburg,40.71905,-73.94937,Private room,48,5,3,0.06,1,0 +9934,40027302,Brooklyn,Williamsburg,40.72002,-73.96028000000001,Private room,70,3,90,1.89,1,323 +9935,6182854,Brooklyn,Clinton Hill,40.68458,-73.96332,Entire home/apt,380,3,5,0.11,1,0 +9936,40124500,Brooklyn,Borough Park,40.637409999999996,-74.00118,Private room,45,1,43,0.99,2,310 +9937,6072700,Brooklyn,Red Hook,40.67791,-74.0072,Private room,55,5,5,0.1,1,0 +9938,40138709,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95634,Private room,32,1,0,,1,0 +9939,40151792,Manhattan,Lower East Side,40.71903,-73.9904,Entire home/apt,160,5,10,0.21,1,11 +9940,39726069,Manhattan,Tribeca,40.7187,-74.00384,Private room,107,1,2,0.04,1,0 +9941,405908,Brooklyn,Bedford-Stuyvesant,40.68248,-73.92811,Entire home/apt,155,2,139,2.93,1,235 +9942,9209691,Manhattan,Harlem,40.82206,-73.95234,Entire home/apt,275,4,5,2.78,2,284 +9943,63607,Brooklyn,Williamsburg,40.71242,-73.95009,Private room,80,2,33,0.7,1,0 +9944,40163236,Manhattan,Upper East Side,40.770179999999996,-73.95947,Entire home/apt,205,2,23,0.61,1,0 +9945,27784469,Manhattan,Upper West Side,40.78557,-73.97214,Private room,150,1,2,0.04,1,0 +9946,18985761,Brooklyn,Carroll Gardens,40.67763,-74.00108,Entire home/apt,99,59,17,0.49,1,58 +9947,40176101,Brooklyn,Bedford-Stuyvesant,40.6884,-73.9305,Private room,59,1,237,5.09,7,70 +9948,1311104,Brooklyn,Williamsburg,40.712559999999996,-73.95695,Private room,45,30,19,0.43,1,0 +9949,1163318,Manhattan,Chelsea,40.743759999999995,-74.00386999999999,Entire home/apt,270,30,195,4.26,1,270 +9950,23187157,Brooklyn,Bushwick,40.700359999999996,-73.91723,Private room,80,1,0,,1,0 +9951,18953786,Queens,Astoria,40.7655,-73.92169,Entire home/apt,150,3,21,0.46,2,349 +9952,40010465,Brooklyn,East Flatbush,40.65429,-73.94917,Private room,35,1,1,0.02,1,0 +9953,40204929,Manhattan,Washington Heights,40.83436,-73.94735,Entire home/apt,99,5,5,0.11,1,0 +9954,345252,Brooklyn,Prospect Heights,40.6799,-73.96415999999999,Entire home/apt,150,7,9,0.19,3,0 +9955,19071455,Manhattan,West Village,40.740359999999995,-74.00416,Entire home/apt,190,3,0,,1,0 +9956,6338005,Brooklyn,Crown Heights,40.67139,-73.94,Private room,50,3,7,0.15,1,0 +9957,40223271,Manhattan,Harlem,40.828829999999996,-73.94468,Entire home/apt,79,15,22,0.49,1,0 +9958,1599136,Brooklyn,Bedford-Stuyvesant,40.68716,-73.9243,Entire home/apt,199,7,35,0.78,1,283 +9959,11528105,Queens,Astoria,40.76508,-73.90935,Entire home/apt,65,14,0,,1,0 +9960,33007145,Brooklyn,Bushwick,40.695890000000006,-73.93231999999999,Private room,65,1,3,0.06,1,0 +9961,31250964,Brooklyn,Crown Heights,40.67034,-73.95848000000001,Private room,75,1,0,,1,0 +9962,17466612,Brooklyn,Bensonhurst,40.6089,-73.97865999999999,Private room,43,2,22,0.54,2,0 +9963,25266538,Manhattan,Harlem,40.81541,-73.94149,Entire home/apt,130,5,12,0.25,1,0 +9964,15716203,Manhattan,East Village,40.72399,-73.98869,Entire home/apt,180,2,2,0.04,1,0 +9965,40234779,Brooklyn,Sunset Park,40.66016,-73.99813,Private room,60,1,0,,1,0 +9966,40124500,Brooklyn,Borough Park,40.635740000000006,-74.00329,Shared room,33,1,73,1.53,2,365 +9967,433207,Queens,Astoria,40.76205,-73.91379,Private room,45,1,190,5.2,2,132 +9968,40236384,Brooklyn,Prospect-Lefferts Gardens,40.65933,-73.95931,Private room,65,1,35,0.73,2,0 +9969,40237377,Brooklyn,Sheepshead Bay,40.5994,-73.95940999999999,Private room,119,1,0,,1,126 +9970,15892935,Brooklyn,Sunset Park,40.641529999999996,-74.01562,Private room,50,1,2,0.04,1,0 +9971,40244009,Queens,Sunnyside,40.739259999999994,-73.92045,Entire home/apt,150,3,2,0.04,1,0 +9972,40164647,Brooklyn,Midwood,40.62713,-73.95221,Private room,150,3,0,,1,0 +9973,2048347,Brooklyn,Prospect Heights,40.67293,-73.96678,Entire home/apt,99,7,11,0.23,1,216 +9974,22959695,Queens,Richmond Hill,40.69604,-73.82449,Private room,50,1,424,8.86,5,0 +9975,3526617,Brooklyn,Greenpoint,40.73604,-73.95415,Entire home/apt,250,2,4,0.16,1,322 +9976,22959695,Queens,Richmond Hill,40.69463,-73.8261,Private room,50,1,408,8.56,5,0 +9977,40236486,Manhattan,Washington Heights,40.8403,-73.93833000000001,Private room,50,1,6,0.13,3,64 +9978,844862,Manhattan,East Village,40.73107,-73.98213,Private room,100,2,14,0.3,2,342 +9979,33064599,Manhattan,Upper West Side,40.80188,-73.96696,Private room,59,1,26,0.68,6,326 +9980,40316314,Manhattan,East Village,40.72338,-73.98239000000001,Private room,80,1,1,0.02,2,0 +9981,326952,Brooklyn,Prospect Heights,40.67309,-73.96354000000001,Entire home/apt,95,3,4,0.09,1,0 +9982,40319733,Brooklyn,Bedford-Stuyvesant,40.68548,-73.94988000000001,Entire home/apt,110,2,3,0.06,1,0 +9983,39197422,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9303,Private room,60,5,1,0.03,1,0 +9984,1477833,Brooklyn,Red Hook,40.678940000000004,-74.0128,Private room,64,1,128,2.71,1,76 +9985,3130040,Queens,Ditmars Steinway,40.776790000000005,-73.9212,Entire home/apt,175,2,7,0.15,1,0 +9986,40327248,Queens,Neponsit,40.57215,-73.85821999999999,Entire home/apt,350,2,5,2.88,1,334 +9987,7065413,Manhattan,Lower East Side,40.72014,-73.98498000000001,Private room,80,1,2,0.04,1,0 +9988,5513694,Manhattan,Hell's Kitchen,40.76377,-73.98786,Entire home/apt,200,2,49,1.06,1,205 +9989,40332331,Brooklyn,Windsor Terrace,40.657579999999996,-73.97801,Entire home/apt,128,3,10,0.21,2,3 +9990,1550888,Brooklyn,Bedford-Stuyvesant,40.680009999999996,-73.94971,Entire home/apt,150,30,11,0.29,3,332 +9991,347642,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92795,Entire home/apt,100,3,120,2.63,3,220 +9992,268419,Manhattan,Upper West Side,40.79387,-73.97136,Entire home/apt,300,5,0,,1,0 +9993,40371157,Bronx,Longwood,40.82417,-73.90156,Private room,95,1,182,3.82,2,0 +9994,40076332,Manhattan,East Village,40.726440000000004,-73.98403,Entire home/apt,175,5,0,,1,0 +9995,12620454,Brooklyn,Bushwick,40.70442,-73.92484,Entire home/apt,220,5,27,0.57,1,0 +9996,2060383,Brooklyn,Cobble Hill,40.68732,-73.99245,Entire home/apt,147,3,23,0.51,1,2 +9997,39956905,Manhattan,East Village,40.72811,-73.98453,Private room,95,2,1,0.02,2,0 +9998,33064750,Brooklyn,Carroll Gardens,40.68282,-73.99774000000001,Entire home/apt,160,5,2,0.06,1,0 +9999,33068587,Queens,Jamaica,40.68547,-73.78924,Private room,99,3,0,,1,365 +10000,40394783,Manhattan,Battery Park City,40.70803,-74.01735,Entire home/apt,200,1,0,,1,0 +10001,255597,Brooklyn,Crown Heights,40.66465,-73.95371999999999,Entire home/apt,225,3,105,2.28,1,94 +10002,32164030,Bronx,Hunts Point,40.812290000000004,-73.88887,Private room,40,30,19,0.4,6,287 +10003,40401163,Manhattan,Harlem,40.80591,-73.95525,Private room,75,14,0,,1,0 +10004,3587751,Brooklyn,Williamsburg,40.70841,-73.9539,Private room,120,1,205,4.39,2,349 +10005,4073947,Brooklyn,Crown Heights,40.665420000000005,-73.96061999999999,Entire home/apt,110,1,0,,1,0 +10006,20691165,Manhattan,Upper West Side,40.77368,-73.98704000000001,Private room,60,3,4,0.08,1,0 +10007,40404813,Brooklyn,East Flatbush,40.64588,-73.94960999999999,Private room,100,1,2,0.05,1,365 +10008,24666317,Brooklyn,Clinton Hill,40.68443,-73.96736999999999,Private room,77,2,12,0.25,1,0 +10009,1784925,Manhattan,Upper West Side,40.791,-73.96809,Entire home/apt,150,3,10,0.21,1,0 +10010,1338262,Brooklyn,Boerum Hill,40.68589,-73.99101999999999,Entire home/apt,160,3,38,0.8,3,249 +10011,6654378,Manhattan,Lower East Side,40.71796,-73.99032,Private room,58,10,0,,1,0 +10012,16932691,Manhattan,Hell's Kitchen,40.75946,-73.99083,Private room,70,1,5,0.11,1,0 +10013,7590543,Brooklyn,Navy Yard,40.69855,-73.97595,Entire home/apt,215,4,99,2.09,1,0 +10014,5742112,Manhattan,Harlem,40.81236,-73.94142,Entire home/apt,100,4,0,,1,0 +10015,40425528,Brooklyn,Williamsburg,40.71608,-73.95966999999999,Private room,60,3,1,0.02,1,0 +10016,40427171,Brooklyn,Cobble Hill,40.68665,-73.9922,Entire home/apt,125,1,0,,1,0 +10017,17326743,Manhattan,Upper West Side,40.785059999999994,-73.97723,Private room,130,1,9,0.19,1,0 +10018,40428881,Brooklyn,Williamsburg,40.71119,-73.96471,Private room,99,3,1,0.02,1,0 +10019,40429192,Brooklyn,Greenpoint,40.72831,-73.949,Entire home/apt,175,3,96,2.06,1,328 +10020,5974094,Brooklyn,Bedford-Stuyvesant,40.693509999999996,-73.94011,Entire home/apt,200,2,3,0.09,1,188 +10021,35997506,Brooklyn,Williamsburg,40.70939,-73.96758,Private room,85,1,0,,1,0 +10022,31919780,Brooklyn,Bedford-Stuyvesant,40.685990000000004,-73.9394,Entire home/apt,99,3,98,2.39,2,52 +10023,40439772,Manhattan,Washington Heights,40.85076,-73.93049,Private room,45,3,29,0.61,2,0 +10024,820649,Manhattan,Murray Hill,40.74751,-73.97676,Entire home/apt,190,1,0,,1,0 +10025,40443551,Manhattan,Washington Heights,40.8508,-73.94004,Entire home/apt,112,1,1,0.02,1,0 +10026,22703843,Manhattan,Upper East Side,40.76102,-73.96124,Private room,95,1,1,0.02,1,0 +10027,15420345,Brooklyn,Bushwick,40.70005,-73.91882,Private room,65,1,0,,1,0 +10028,3074287,Brooklyn,Carroll Gardens,40.681670000000004,-73.99276,Entire home/apt,150,4,96,2.02,2,3 +10029,40448425,Manhattan,Harlem,40.81882,-73.9468,Entire home/apt,77,1,1,0.02,1,0 +10030,3284564,Manhattan,Harlem,40.81406,-73.95281999999999,Private room,69,2,1,0.02,1,0 +10031,38301594,Manhattan,Upper East Side,40.774840000000005,-73.95725999999999,Private room,80,1,2,0.04,2,0 +10032,19056507,Manhattan,East Village,40.72448,-73.9895,Entire home/apt,175,2,9,0.19,1,0 +10033,6238227,Brooklyn,Bedford-Stuyvesant,40.69551,-73.95075,Private room,60,5,0,,1,0 +10034,40498479,Manhattan,Harlem,40.823640000000005,-73.95121999999999,Private room,59,1,0,,1,0 +10035,40503855,Manhattan,Midtown,40.75669,-73.96410999999999,Private room,90,1,3,0.06,1,0 +10036,6432385,Brooklyn,Greenpoint,40.72446,-73.94008000000001,Entire home/apt,70,30,4,0.09,1,34 +10037,278713,Manhattan,West Village,40.733509999999995,-74.00454,Entire home/apt,350,3,0,,1,0 +10038,3737483,Manhattan,Chinatown,40.71382,-73.99769,Private room,75,6,2,0.05,1,0 +10039,5663719,Manhattan,Little Italy,40.719120000000004,-73.99776,Private room,61,2,6,0.13,1,213 +10040,40509550,Manhattan,Washington Heights,40.84805,-73.94209000000001,Shared room,42,1,14,0.3,1,363 +10041,3256433,Manhattan,Nolita,40.72276,-73.99314,Entire home/apt,350,60,10,0.22,7,0 +10042,40516440,Brooklyn,Sheepshead Bay,40.58851,-73.9558,Private room,45,4,52,1.09,1,341 +10043,12303720,Brooklyn,Clinton Hill,40.68405,-73.96681,Private room,75,3,2,0.04,1,0 +10044,40527701,Queens,Elmhurst,40.73726,-73.88065,Entire home/apt,150,2,2,0.04,1,0 +10045,2520125,Brooklyn,East New York,40.66045,-73.89873,Entire home/apt,72,4,121,2.54,2,33 +10046,11272233,Brooklyn,Crown Heights,40.6735,-73.93856,Private room,59,1,199,4.19,2,288 +10047,15581933,Manhattan,East Harlem,40.793240000000004,-73.94513,Entire home/apt,90,2,4,0.08,1,0 +10048,40206276,Brooklyn,Cobble Hill,40.6881,-73.99498,Entire home/apt,145,2,4,0.09,1,0 +10049,19411025,Queens,Sunnyside,40.74633,-73.91293,Private room,115,1,0,,1,0 +10050,22770300,Brooklyn,Williamsburg,40.71331,-73.96347,Entire home/apt,225,1,0,,1,0 +10051,27474206,Brooklyn,Crown Heights,40.67317,-73.95419,Private room,45,1,1,0.02,1,0 +10052,40532977,Brooklyn,Bedford-Stuyvesant,40.67982,-73.91346999999999,Entire home/apt,35,3,63,1.33,4,0 +10053,11003269,Manhattan,Washington Heights,40.85159,-73.94036,Entire home/apt,150,1,32,1.18,1,358 +10054,3074287,Brooklyn,Carroll Gardens,40.68333,-73.99369,Entire home/apt,147,4,91,2.1,2,3 +10055,25169596,Manhattan,Upper West Side,40.77148,-73.98226,Private room,182,1,221,4.65,2,327 +10056,40585281,Manhattan,Washington Heights,40.84687,-73.94004,Private room,110,1,0,,1,0 +10057,40585961,Manhattan,Lower East Side,40.72092,-73.98849,Private room,85,1,0,,1,0 +10058,36195153,Manhattan,Kips Bay,40.73999,-73.98122,Private room,175,3,174,3.66,1,194 +10059,7456416,Brooklyn,Clinton Hill,40.6867,-73.9621,Entire home/apt,250,1,2,0.04,1,0 +10060,23715762,Manhattan,Upper West Side,40.80113,-73.96566,Private room,50,1,0,,1,0 +10061,40591396,Queens,Long Island City,40.742290000000004,-73.95427,Private room,70,1,5,0.1,1,0 +10062,3320167,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94662,Private room,47,7,0,,1,0 +10063,10872717,Manhattan,Harlem,40.81469,-73.94887,Private room,75,1,1,0.03,1,0 +10064,40595718,Queens,Ozone Park,40.68792,-73.83752,Entire home/apt,79,1,22,0.49,1,130 +10065,7375767,Brooklyn,Bedford-Stuyvesant,40.68927,-73.95277,Entire home/apt,115,1,0,,1,0 +10066,25843005,Queens,Astoria,40.758179999999996,-73.92679,Private room,35,2,191,4.0,3,24 +10067,40539880,Manhattan,Hell's Kitchen,40.76104,-73.9885,Entire home/apt,300,3,4,0.12,1,0 +10068,22577148,Brooklyn,Bedford-Stuyvesant,40.69461,-73.93406,Private room,86,3,91,1.99,7,20 +10069,40608098,Manhattan,East Harlem,40.78502,-73.94763,Entire home/apt,189,1,14,0.3,1,0 +10070,23420949,Brooklyn,Bedford-Stuyvesant,40.69451,-73.94419,Entire home/apt,70,1,2,0.04,1,0 +10071,6623512,Brooklyn,Bedford-Stuyvesant,40.684459999999994,-73.95779,Private room,32,7,0,,1,0 +10072,40611169,Brooklyn,Carroll Gardens,40.677929999999996,-73.99531,Entire home/apt,150,1,78,2.22,5,365 +10073,7503643,Brooklyn,Greenpoint,40.72674,-73.94004,Entire home/apt,159,30,2,0.05,52,0 +10074,18066933,Brooklyn,Crown Heights,40.67517,-73.94421,Private room,50,1,2,0.04,2,0 +10075,30283594,Manhattan,Theater District,40.75967,-73.98573,Entire home/apt,135,30,0,,121,174 +10076,21256980,Manhattan,Murray Hill,40.7459,-73.97606999999999,Private room,170,1,0,,1,0 +10077,21297782,Manhattan,Hell's Kitchen,40.76292,-73.99551,Entire home/apt,140,5,5,0.11,1,0 +10078,40627479,Manhattan,Upper West Side,40.79433,-73.97333,Entire home/apt,175,1,5,0.11,1,0 +10079,5085741,Queens,Sunnyside,40.736779999999996,-73.92437,Private room,55,7,0,,1,0 +10080,16683784,Brooklyn,Williamsburg,40.71375,-73.94341999999999,Private room,72,2,5,0.11,1,0 +10081,3010260,Brooklyn,Crown Heights,40.66983,-73.95331999999999,Entire home/apt,198,4,4,0.08,1,0 +10082,36539736,Brooklyn,Boerum Hill,40.68658,-73.9891,Entire home/apt,180,2,17,0.36,1,0 +10083,1289713,Brooklyn,Park Slope,40.67757,-73.98195,Entire home/apt,200,4,12,0.25,1,5 +10084,1036161,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95016,Private room,220,1,88,1.84,2,60 +10085,35976278,Queens,Arverne,40.59029,-73.79032,Entire home/apt,125,1,9,0.2,1,340 +10086,40645778,Manhattan,Hell's Kitchen,40.76444,-73.98592,Entire home/apt,300,3,12,0.26,1,33 +10087,32164030,Bronx,Hunts Point,40.81387,-73.88797,Private room,37,30,13,0.28,6,333 +10088,40684968,Manhattan,Harlem,40.8127,-73.95004,Private room,60,1,1,0.02,1,0 +10089,910884,Brooklyn,Prospect-Lefferts Gardens,40.65606,-73.95902,Private room,49,10,1,0.03,1,0 +10090,40694772,Queens,Flushing,40.733309999999996,-73.80811,Private room,55,2,0,,1,0 +10091,40695843,Brooklyn,Park Slope,40.67202,-73.98531,Entire home/apt,145,5,18,0.5,1,0 +10092,8692598,Manhattan,Inwood,40.86363,-73.93002,Private room,48,1,5,0.11,1,0 +10093,40699990,Brooklyn,Crown Heights,40.67589,-73.9287,Private room,75,2,0,,1,0 +10094,1641361,Brooklyn,Carroll Gardens,40.68229,-73.99369,Entire home/apt,200,1,0,,1,0 +10095,40703442,Manhattan,Harlem,40.807390000000005,-73.94196,Entire home/apt,153,4,91,1.95,3,4 +10096,15905720,Brooklyn,Williamsburg,40.71278,-73.96292,Private room,69,1,0,,1,0 +10097,7876900,Brooklyn,Williamsburg,40.7088,-73.93983,Private room,45,1,3,0.06,1,0 +10098,20156140,Brooklyn,Greenpoint,40.7334,-73.95639,Entire home/apt,104,5,0,,1,0 +10099,40703442,Manhattan,Harlem,40.80872,-73.94228000000001,Entire home/apt,150,1,2,0.07,3,0 +10100,16641806,Manhattan,East Harlem,40.78824,-73.94686999999999,Entire home/apt,195,1,112,2.38,1,262 +10101,40703442,Manhattan,Harlem,40.8098,-73.94443000000001,Private room,90,2,1,0.02,3,0 +10102,40140854,Queens,Elmhurst,40.73607,-73.87980999999999,Private room,60,1,1,0.02,1,0 +10103,1353426,Brooklyn,Clinton Hill,40.68202,-73.96273000000001,Entire home/apt,145,3,2,0.06,1,0 +10104,40735098,Brooklyn,Borough Park,40.64346,-73.99814,Entire home/apt,120,2,35,0.78,1,346 +10105,10784441,Brooklyn,Williamsburg,40.7149,-73.95588000000001,Entire home/apt,111,2,15,0.32,1,0 +10106,40732314,Brooklyn,Park Slope,40.67621,-73.97238,Entire home/apt,140,5,1,0.02,1,0 +10107,13667779,Manhattan,Harlem,40.824529999999996,-73.93952,Private room,60,2,9,0.19,2,280 +10108,39528519,Manhattan,Lower East Side,40.70993,-73.987,Shared room,35,14,6,0.25,28,201 +10109,40221604,Manhattan,Harlem,40.82312,-73.94539,Private room,93,1,100,2.74,3,49 +10110,3508047,Brooklyn,Bushwick,40.69845,-73.93495,Private room,30,1,3,0.07,3,0 +10111,15931768,Brooklyn,Bedford-Stuyvesant,40.69704,-73.94761,Private room,60,5,2,0.04,1,0 +10112,40784273,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91819,Entire home/apt,99,5,1,0.02,1,0 +10113,8314981,Manhattan,Chelsea,40.74212,-73.99828000000001,Private room,210,2,20,0.42,2,0 +10114,30669247,Manhattan,Chelsea,40.74313,-73.99844,Entire home/apt,175,3,2,0.04,1,0 +10115,8335684,Manhattan,Inwood,40.86274,-73.92841999999999,Private room,22,1,13,0.28,3,0 +10116,39060578,Manhattan,Chelsea,40.743359999999996,-74.00278,Entire home/apt,200,6,45,0.99,1,0 +10117,40812784,Queens,Sunnyside,40.74494,-73.91513,Entire home/apt,120,30,29,0.62,1,178 +10118,4403646,Manhattan,Midtown,40.76352,-73.9777,Entire home/apt,319,4,9,0.24,1,358 +10119,40812084,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92494,Private room,45,4,2,0.04,1,0 +10120,3189999,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94962,Entire home/apt,99,5,1,0.02,1,0 +10121,1273607,Manhattan,Harlem,40.82651,-73.94870999999999,Entire home/apt,450,3,35,0.77,1,264 +10122,1112560,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95595,Private room,89,5,28,0.6,3,282 +10123,40828217,Brooklyn,Prospect-Lefferts Gardens,40.66026,-73.93992,Private room,65,2,71,1.57,4,170 +10124,489734,Brooklyn,Williamsburg,40.71264,-73.94622,Entire home/apt,185,3,8,0.17,1,0 +10125,40834217,Queens,Whitestone,40.78223,-73.80724000000001,Private room,35,7,0,,1,365 +10126,39921605,Manhattan,Upper West Side,40.80328,-73.96898,Entire home/apt,238,30,14,0.31,5,91 +10127,40867860,Brooklyn,Bedford-Stuyvesant,40.68053,-73.90879,Private room,63,1,4,2.18,1,240 +10128,40863179,Brooklyn,Fort Greene,40.68504,-73.9696,Entire home/apt,150,7,43,1.2,1,53 +10129,514455,Manhattan,West Village,40.73162,-74.00928,Entire home/apt,180,1,0,,1,0 +10130,40874834,Queens,Jackson Heights,40.75421,-73.86435,Private room,75,1,96,2.06,3,339 +10131,8134104,Queens,Woodside,40.74507,-73.90738,Entire home/apt,500,1,10,0.21,1,0 +10132,40877319,Bronx,Pelham Bay,40.844229999999996,-73.83601999999999,Private room,59,3,113,2.42,1,290 +10133,14139134,Manhattan,Morningside Heights,40.8061,-73.96641,Private room,90,1,1,0.02,1,0 +10134,16000650,Brooklyn,Park Slope,40.68193,-73.97807,Entire home/apt,150,5,1,0.02,1,0 +10135,40895369,Queens,Rockaway Beach,40.588809999999995,-73.81066,Entire home/apt,70,1,70,2.45,1,336 +10136,40895328,Queens,Astoria,40.75743,-73.92366,Entire home/apt,289,2,176,4.07,2,309 +10137,40895919,Manhattan,Chelsea,40.74327,-73.99848,Entire home/apt,245,3,115,2.43,1,125 +10138,1503022,Brooklyn,Bushwick,40.69866,-73.92498,Private room,53,14,0,,1,0 +10139,2640056,Manhattan,Chelsea,40.741479999999996,-74.00048000000001,Entire home/apt,225,4,2,0.04,1,0 +10140,10054959,Manhattan,Upper East Side,40.783390000000004,-73.95239000000001,Private room,149,4,33,0.83,1,53 +10141,40905449,Manhattan,Financial District,40.70689,-74.01451,Entire home/apt,160,2,7,0.15,1,0 +10142,33190103,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9478,Entire home/apt,70,2,1,0.02,1,0 +10143,24560401,Brooklyn,Fort Greene,40.69705,-73.97743,Entire home/apt,165,3,120,2.54,1,170 +10144,3002111,Manhattan,Kips Bay,40.740559999999995,-73.98389,Private room,70,15,0,,1,0 +10145,7285322,Brooklyn,Williamsburg,40.71607,-73.95352,Entire home/apt,150,3,9,0.2,1,0 +10146,8792814,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94495,Private room,65,1,11,0.24,10,260 +10147,25881276,Manhattan,Upper West Side,40.79063,-73.97864,Entire home/apt,175,2,13,0.28,2,0 +10148,40958326,Brooklyn,Bedford-Stuyvesant,40.68528,-73.91573000000001,Entire home/apt,175,4,99,2.12,1,334 +10149,25602663,Queens,Long Island City,40.75255,-73.93654000000001,Private room,90,4,19,0.41,2,286 +10150,11048791,Brooklyn,Bushwick,40.70068,-73.91620999999999,Private room,40,7,2,0.04,1,0 +10151,4797755,Manhattan,Upper East Side,40.7829,-73.94694,Entire home/apt,170,2,53,1.19,1,0 +10152,4263734,Brooklyn,Crown Heights,40.67195,-73.95535,Private room,70,3,8,0.17,1,0 +10153,26377263,Brooklyn,Bushwick,40.70326,-73.91821999999999,Private room,50,30,1,0.03,43,203 +10154,36205028,Queens,Jamaica,40.68542,-73.7926,Private room,52,1,179,3.79,2,350 +10155,26377263,Brooklyn,Bushwick,40.702490000000004,-73.91904,Private room,47,30,0,,43,347 +10156,26377263,Brooklyn,Bushwick,40.704679999999996,-73.91935,Private room,47,30,0,,43,257 +10157,26377263,Brooklyn,Bushwick,40.70387,-73.91665,Private room,47,30,4,0.13,43,144 +10158,1439611,Manhattan,Lower East Side,40.71783,-73.98392,Entire home/apt,175,4,36,0.77,1,0 +10159,26377263,Brooklyn,Bushwick,40.702329999999996,-73.9175,Private room,47,30,2,0.06,43,229 +10160,26377263,Brooklyn,Bushwick,40.70619,-73.9191,Private room,47,30,3,0.07,43,291 +10161,26377263,Brooklyn,Bushwick,40.704679999999996,-73.91683,Private room,47,2,4,0.11,43,222 +10162,40994490,Brooklyn,Bushwick,40.70153,-73.93064,Entire home/apt,200,3,0,,1,0 +10163,40995200,Manhattan,Morningside Heights,40.81483,-73.9609,Private room,30,1,0,,1,0 +10164,1418015,Brooklyn,Crown Heights,40.67839,-73.95434,Private room,80,2,158,3.47,4,204 +10165,17550956,Manhattan,Upper East Side,40.77357,-73.94729,Entire home/apt,142,2,48,1.02,1,329 +10166,16962694,Brooklyn,Bensonhurst,40.60788,-73.98161,Private room,69,7,3,0.06,1,0 +10167,310670,Bronx,Eastchester,40.88001,-73.8345,Private room,62,2,5,0.12,13,320 +10168,310670,Bronx,Eastchester,40.88211,-73.83625,Shared room,45,1,1,0.37,13,318 +10169,19693990,Manhattan,Chelsea,40.751940000000005,-74.00468000000001,Entire home/apt,300,30,0,,1,0 +10170,41046343,Manhattan,Lower East Side,40.72235,-73.98769,Private room,75,1,1,0.02,1,0 +10171,21150000,Brooklyn,Flatbush,40.654740000000004,-73.95448,Entire home/apt,80,3,10,1.53,1,124 +10172,41049217,Manhattan,Upper West Side,40.79882,-73.96382,Entire home/apt,200,1,0,,1,0 +10173,33593407,Brooklyn,Flatbush,40.63219,-73.95835,Entire home/apt,90,1,3,0.06,1,0 +10174,3467798,Manhattan,Harlem,40.80877,-73.94456,Entire home/apt,173,30,12,0.28,2,194 +10175,5134018,Brooklyn,Williamsburg,40.70694,-73.93245999999999,Entire home/apt,100,14,10,0.24,1,249 +10176,11549078,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93092,Entire home/apt,160,5,148,3.24,1,149 +10177,41059169,Brooklyn,Williamsburg,40.710029999999996,-73.96096999999999,Private room,116,2,17,0.37,3,329 +10178,41060321,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.95015,Private room,35,1,0,,1,0 +10179,41060870,Manhattan,Lower East Side,40.72077,-73.98550999999999,Entire home/apt,160,4,0,,1,0 +10180,1619994,Manhattan,East Village,40.72822,-73.98639,Entire home/apt,150,4,11,0.25,1,0 +10181,2083759,Manhattan,Harlem,40.79996,-73.95485,Entire home/apt,104,3,42,0.89,1,219 +10182,2033003,Manhattan,East Village,40.72935,-73.98465,Entire home/apt,200,2,6,0.13,2,134 +10183,12904034,Queens,Long Island City,40.74462,-73.95521,Entire home/apt,80,2,1,0.02,1,0 +10184,26358061,Manhattan,Upper East Side,40.770590000000006,-73.95685999999999,Entire home/apt,150,1,0,,1,0 +10185,25847311,Manhattan,Upper West Side,40.778490000000005,-73.98527,Entire home/apt,374,30,16,0.35,1,363 +10186,8375500,Manhattan,Washington Heights,40.832609999999995,-73.94328,Private room,46,2,9,0.19,1,0 +10187,41079797,Brooklyn,Williamsburg,40.71158,-73.94653000000001,Entire home/apt,94,1,28,0.62,1,274 +10188,30467944,Manhattan,Hell's Kitchen,40.76294,-73.99248,Private room,92,2,1,0.02,1,0 +10189,37915862,Brooklyn,East New York,40.67351,-73.89267,Entire home/apt,155,5,80,1.73,2,256 +10190,37353953,Manhattan,Upper West Side,40.781009999999995,-73.98533,Private room,70,3,4,0.11,1,0 +10191,16853124,Brooklyn,Boerum Hill,40.68671,-73.98541,Entire home/apt,75,1,2,0.04,1,0 +10192,40080883,Brooklyn,Williamsburg,40.71225,-73.96246,Entire home/apt,150,2,1,0.02,1,0 +10193,17141160,Manhattan,Upper East Side,40.78086,-73.95029,Entire home/apt,130,4,0,,1,0 +10194,6947307,Brooklyn,Williamsburg,40.70497,-73.94194,Private room,75,1,1,0.02,1,0 +10195,41106580,Manhattan,Kips Bay,40.74111,-73.97959,Private room,70,7,0,,1,0 +10196,1103465,Brooklyn,Clinton Hill,40.68332,-73.96271,Entire home/apt,145,6,35,0.76,1,31 +10197,30247185,Queens,Ridgewood,40.70994,-73.90201,Entire home/apt,65,1,2,0.04,1,0 +10198,41140356,Brooklyn,Park Slope,40.672309999999996,-73.98069,Entire home/apt,195,7,14,0.37,1,326 +10199,41147578,Manhattan,Midtown,40.763870000000004,-73.98021,Entire home/apt,420,1,3,0.07,1,0 +10200,1317360,Manhattan,SoHo,40.722190000000005,-74.0014,Entire home/apt,500,7,44,0.94,2,365 +10201,38301594,Manhattan,Upper East Side,40.774409999999996,-73.95692,Private room,100,1,0,,2,0 +10202,41162207,Brooklyn,Fort Greene,40.68854,-73.97789,Entire home/apt,85,2,4,0.13,1,0 +10203,5623834,Brooklyn,East Flatbush,40.64569,-73.94776,Entire home/apt,100,30,29,0.74,1,326 +10204,40070423,Brooklyn,Bedford-Stuyvesant,40.68741,-73.92622,Private room,70,3,5,0.11,1,0 +10205,13612070,Manhattan,East Village,40.7305,-73.98416,Entire home/apt,150,1,0,,1,0 +10206,4068324,Manhattan,Greenwich Village,40.73415,-73.99814,Entire home/apt,425,4,68,1.45,1,36 +10207,8314981,Manhattan,Chelsea,40.74221,-73.99821999999999,Entire home/apt,490,3,1,0.02,2,0 +10208,2327346,Manhattan,Harlem,40.80689,-73.94784,Private room,70,1,0,,1,0 +10209,1249116,Brooklyn,Greenpoint,40.72971,-73.95834,Private room,135,7,2,0.04,1,0 +10210,37402024,Manhattan,Morningside Heights,40.80379,-73.96571,Private room,80,1,4,0.08,1,0 +10211,41190629,Brooklyn,Crown Heights,40.664429999999996,-73.94821999999999,Entire home/apt,90,1,3,0.06,1,0 +10212,11898556,Manhattan,Chelsea,40.7414,-73.99815,Entire home/apt,800,30,22,0.48,1,266 +10213,39148503,Brooklyn,Williamsburg,40.708659999999995,-73.94122,Private room,70,4,7,0.21,2,364 +10214,41193978,Manhattan,Hell's Kitchen,40.76222,-73.99088,Private room,100,3,4,0.09,1,0 +10215,37138145,Manhattan,Upper West Side,40.801109999999994,-73.96539,Private room,75,1,205,4.32,2,197 +10216,36070324,Manhattan,Harlem,40.831070000000004,-73.9486,Private room,88,3,6,0.33,1,82 +10217,24881130,Manhattan,Lower East Side,40.72184,-73.9868,Private room,100,3,0,,1,0 +10218,41219108,Queens,Astoria,40.762570000000004,-73.91803,Private room,50,3,1,0.03,1,0 +10219,41201538,Brooklyn,Bushwick,40.70126,-73.918,Private room,63,2,104,2.19,1,230 +10220,30379314,Queens,Sunnyside,40.74447,-73.92546999999999,Private room,50,1,1,0.02,1,0 +10221,41240531,Manhattan,Financial District,40.705009999999994,-74.01395,Private room,90,5,2,0.05,1,0 +10222,41262382,Brooklyn,Bedford-Stuyvesant,40.68237,-73.95257,Entire home/apt,85,2,10,0.21,1,0 +10223,13425453,Brooklyn,Clinton Hill,40.68096,-73.95902,Private room,69,1,0,,1,0 +10224,41261306,Brooklyn,Clinton Hill,40.69218,-73.96127,Private room,90,2,32,1.24,1,20 +10225,2682346,Brooklyn,Bedford-Stuyvesant,40.6891,-73.93926,Entire home/apt,75,2,4,0.08,1,0 +10226,1302599,Manhattan,West Village,40.729659999999996,-74.00234,Entire home/apt,150,2,1,0.02,1,0 +10227,40693481,Brooklyn,Kensington,40.64493,-73.97801,Private room,38,5,1,0.02,1,0 +10228,10786794,Brooklyn,Williamsburg,40.70492,-73.93831999999999,Private room,70,3,1,0.02,1,0 +10229,13089720,Manhattan,Morningside Heights,40.81411,-73.96073,Entire home/apt,180,2,0,,1,0 +10230,7641397,Brooklyn,Williamsburg,40.71621,-73.93984,Private room,65,12,2,0.04,1,0 +10231,41007099,Brooklyn,Crown Heights,40.66855,-73.92945,Private room,75,10,12,0.26,1,0 +10232,19483885,Brooklyn,Bedford-Stuyvesant,40.69695,-73.95951,Private room,60,1,184,4.83,2,240 +10233,2610233,Manhattan,Flatiron District,40.739470000000004,-73.98593000000001,Entire home/apt,221,3,99,2.26,1,110 +10234,3147660,Brooklyn,Williamsburg,40.70985,-73.96923000000001,Entire home/apt,500,2,39,0.84,1,330 +10235,12650039,Manhattan,Upper West Side,40.78718,-73.97521,Entire home/apt,150,2,0,,1,0 +10236,2119276,Manhattan,Midtown,40.74926,-73.98201,Entire home/apt,250,30,2,0.04,39,98 +10237,2905589,Manhattan,Midtown,40.74645,-73.9853,Entire home/apt,239,4,4,0.09,1,0 +10238,7579910,Brooklyn,Bedford-Stuyvesant,40.695879999999995,-73.93944,Entire home/apt,105,30,5,0.11,1,363 +10239,3064885,Brooklyn,Williamsburg,40.71086,-73.96088,Private room,50,1,2,0.04,1,0 +10240,24976518,Manhattan,West Village,40.74005,-74.00466,Private room,75,3,4,0.09,1,0 +10241,30320622,Brooklyn,Borough Park,40.64362,-74.00046,Private room,55,1,0,,2,0 +10242,7634973,Brooklyn,Boerum Hill,40.68357,-73.98285,Entire home/apt,108,1,40,0.87,1,0 +10243,3599088,Manhattan,Nolita,40.72113,-73.99465,Private room,59,2,10,0.21,2,0 +10244,8475475,Manhattan,Upper West Side,40.781279999999995,-73.98184,Entire home/apt,149,2,3,0.06,1,0 +10245,328951,Brooklyn,Williamsburg,40.70955,-73.95678000000001,Entire home/apt,150,1,20,1.44,1,35 +10246,1246073,Brooklyn,Crown Heights,40.67042,-73.95676999999999,Entire home/apt,119,2,27,0.58,1,154 +10247,41329387,Manhattan,Harlem,40.80755,-73.95104,Entire home/apt,100,2,193,4.17,1,213 +10248,41330687,Manhattan,Gramercy,40.73363,-73.98545,Private room,79,1,0,,1,0 +10249,41332081,Brooklyn,Crown Heights,40.67689,-73.94884,Private room,85,3,8,0.17,1,179 +10250,14199417,Brooklyn,Crown Heights,40.67053,-73.95136,Private room,45,1,1,0.02,1,0 +10251,41367164,Manhattan,Lower East Side,40.721470000000004,-73.98733,Entire home/apt,295,3,63,1.4,1,214 +10252,41371043,Manhattan,East Village,40.7246,-73.98953,Entire home/apt,400,1,0,,1,0 +10253,31304940,Brooklyn,Williamsburg,40.71631,-73.96353,Private room,60,2,121,2.55,8,69 +10254,24570526,Brooklyn,Fort Greene,40.69565,-73.9711,Private room,90,1,0,,1,0 +10255,631747,Brooklyn,Carroll Gardens,40.67986,-73.9945,Private room,60,2,1,0.02,1,0 +10256,2119276,Manhattan,Gramercy,40.73337,-73.98524,Entire home/apt,200,30,5,0.11,39,331 +10257,41385305,Manhattan,Harlem,40.81899,-73.94694,Entire home/apt,80,2,1,0.02,1,0 +10258,31304940,Brooklyn,Williamsburg,40.71692,-73.96353,Private room,60,2,97,2.07,8,83 +10259,41392993,Brooklyn,Greenpoint,40.72555,-73.94846,Private room,50,3,2,0.05,1,0 +10260,24629261,Staten Island,Randall Manor,40.63878,-74.10636,Private room,69,3,23,0.52,1,172 +10261,16437254,Brooklyn,Boerum Hill,40.68782,-73.98514,Entire home/apt,123,30,7,0.23,21,319 +10262,41405875,Brooklyn,Bedford-Stuyvesant,40.69457,-73.93889,Private room,36,1,0,,1,0 +10263,41406733,Manhattan,Midtown,40.75399,-73.96967,Entire home/apt,135,1,214,4.5,1,170 +10264,41411996,Manhattan,East Village,40.72316,-73.97706,Entire home/apt,400,2,9,0.25,1,0 +10265,41411803,Manhattan,Gramercy,40.7357,-73.98087,Private room,87,3,3,0.06,1,0 +10266,8552927,Manhattan,Hell's Kitchen,40.76425,-73.99162,Private room,99,1,309,6.61,1,254 +10267,735786,Brooklyn,Crown Heights,40.67082,-73.9278,Private room,55,2,39,0.83,1,311 +10268,6181443,Manhattan,Nolita,40.71987,-73.99436,Entire home/apt,225,5,9,0.33,1,0 +10269,31304940,Brooklyn,Williamsburg,40.71767,-73.96252,Private room,60,2,92,1.94,8,87 +10270,2577242,Manhattan,West Village,40.73039,-74.00223000000001,Entire home/apt,250,4,0,,1,0 +10271,27655084,Manhattan,Midtown,40.757090000000005,-73.96972,Entire home/apt,299,2,7,0.15,1,0 +10272,33069475,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92989,Private room,40,20,23,0.49,2,206 +10273,8554194,Manhattan,Chelsea,40.74453,-73.99988,Entire home/apt,120,3,39,0.84,1,1 +10274,24559181,Manhattan,Upper East Side,40.76312,-73.96624,Private room,89,1,148,3.18,3,351 +10275,37138145,Manhattan,Upper West Side,40.80021,-73.96634,Entire home/apt,195,1,0,,2,0 +10276,40548594,Manhattan,Financial District,40.70623,-74.0051,Entire home/apt,150,2,52,1.11,1,72 +10277,9367710,Manhattan,Hell's Kitchen,40.75543,-73.99662,Private room,140,1,0,,1,0 +10278,36264666,Manhattan,Harlem,40.801559999999995,-73.95128000000001,Entire home/apt,240,3,2,0.04,1,0 +10279,40511631,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93867,Private room,36,2,6,0.13,2,0 +10280,41464907,Manhattan,Kips Bay,40.74086,-73.9803,Entire home/apt,67,1,1,0.02,1,0 +10281,17714726,Manhattan,Upper West Side,40.80268,-73.969,Entire home/apt,140,4,11,0.23,1,10 +10282,30541205,Brooklyn,Bushwick,40.699940000000005,-73.92175999999999,Private room,50,3,0,,1,0 +10283,17382996,Bronx,Port Morris,40.80247,-73.91435,Entire home/apt,90,2,152,3.25,1,299 +10284,31304940,Brooklyn,Williamsburg,40.71755,-73.96419,Private room,60,2,99,2.1,8,77 +10285,39840590,Queens,Long Island City,40.74365,-73.95376999999999,Entire home/apt,138,1,227,4.83,1,21 +10286,25613217,Manhattan,Upper West Side,40.80049,-73.96064,Entire home/apt,96,1,2,0.05,1,0 +10287,4769886,Brooklyn,Bushwick,40.69533,-73.92053,Private room,109,2,105,2.25,2,244 +10288,10659447,Brooklyn,Bedford-Stuyvesant,40.68439,-73.95231,Entire home/apt,135,4,106,2.23,1,282 +10289,5577926,Queens,Astoria,40.75793,-73.90959000000001,Entire home/apt,58,30,7,0.15,4,134 +10290,1212731,Manhattan,Upper West Side,40.79943,-73.968,Private room,65,1,2,0.04,1,0 +10291,38337141,Manhattan,Washington Heights,40.84984,-73.94187,Entire home/apt,225,3,2,0.04,1,0 +10292,37282412,Manhattan,Harlem,40.800090000000004,-73.95313,Entire home/apt,130,3,1,0.02,1,0 +10293,31304940,Brooklyn,Williamsburg,40.71714,-73.96234,Private room,60,2,107,2.26,8,84 +10294,3593739,Manhattan,Financial District,40.70518,-74.0127,Private room,80,2,0,,1,0 +10295,10447370,Brooklyn,Williamsburg,40.7167,-73.95272,Entire home/apt,210,2,2,0.04,1,0 +10296,34595916,Brooklyn,South Slope,40.66921,-73.98813,Entire home/apt,275,6,28,0.68,3,0 +10297,41543076,Manhattan,Midtown,40.74321,-73.98474,Entire home/apt,175,7,1,0.03,1,0 +10298,66354,Manhattan,Chelsea,40.7468,-74.00493,Entire home/apt,175,1,6,0.13,1,0 +10299,41565192,Manhattan,Washington Heights,40.84877,-73.93515,Private room,43,3,1,0.02,1,0 +10300,7139819,Manhattan,Chelsea,40.74716,-74.00046999999999,Entire home/apt,250,3,2,0.05,2,0 +10301,20792304,Brooklyn,Williamsburg,40.71413,-73.95044,Private room,79,2,3,0.06,1,0 +10302,41574770,Manhattan,Gramercy,40.73428,-73.98521,Entire home/apt,300,3,0,,1,0 +10303,31304940,Brooklyn,Williamsburg,40.716359999999995,-73.96246,Private room,60,2,97,2.13,8,122 +10304,119441,Queens,Astoria,40.75837,-73.91386999999999,Entire home/apt,100,30,61,1.39,3,224 +10305,11010205,Brooklyn,Bensonhurst,40.61391,-73.99128,Private room,79,2,2,0.22,2,365 +10306,2829145,Brooklyn,Fort Greene,40.6923,-73.97123,Entire home/apt,285,3,66,1.41,2,292 +10307,1330961,Brooklyn,Williamsburg,40.71502,-73.96436,Entire home/apt,220,1,0,,1,0 +10308,41619645,Queens,Arverne,40.58875,-73.79109,Private room,200,2,70,1.48,1,90 +10309,41620310,Manhattan,Upper East Side,40.77391,-73.94816,Entire home/apt,100,3,0,,1,0 +10310,1830864,Manhattan,East Village,40.72395,-73.98001,Entire home/apt,150,2,25,0.55,1,0 +10311,39531775,Manhattan,Hell's Kitchen,40.76449,-73.9934,Entire home/apt,175,3,0,,1,0 +10312,598090,Manhattan,Upper West Side,40.777,-73.97708,Private room,180,1,8,0.17,1,0 +10313,41644172,Manhattan,Upper West Side,40.78888,-73.97723,Entire home/apt,150,1,1,0.02,1,0 +10314,39472987,Manhattan,Harlem,40.82861,-73.94126999999999,Private room,58,1,5,0.11,1,0 +10315,40605120,Manhattan,East Harlem,40.78938,-73.94679000000001,Entire home/apt,140,7,3,0.06,1,56 +10316,2697468,Brooklyn,Williamsburg,40.71058,-73.95191,Private room,80,1,2,0.04,1,0 +10317,32828988,Manhattan,Theater District,40.75995,-73.98617,Entire home/apt,100,15,5,0.11,1,0 +10318,41657584,Manhattan,West Village,40.73519,-74.00641999999999,Entire home/apt,200,3,9,0.2,1,168 +10319,37728157,Brooklyn,Williamsburg,40.71139,-73.94176,Entire home/apt,175,11,11,0.24,1,0 +10320,41658748,Manhattan,Gramercy,40.73518,-73.98047,Entire home/apt,250,2,105,2.26,3,307 +10321,18397763,Brooklyn,Bedford-Stuyvesant,40.6869,-73.93074,Private room,74,2,22,0.63,7,76 +10322,31304940,Brooklyn,Williamsburg,40.71544,-73.96211,Private room,60,2,99,2.1,8,100 +10323,29599415,Manhattan,Harlem,40.80356,-73.95666,Private room,60,1,2,0.04,1,0 +10324,4646764,Queens,Astoria,40.762809999999995,-73.91554000000001,Private room,60,1,2,0.04,1,0 +10325,41666655,Manhattan,Upper East Side,40.77098,-73.95965,Entire home/apt,150,2,5,0.11,1,157 +10326,41667978,Manhattan,Lower East Side,40.714490000000005,-73.987,Private room,70,2,1,0.02,1,0 +10327,3041587,Manhattan,Financial District,40.70395,-74.00995,Private room,98,14,121,2.58,1,204 +10328,21657314,Brooklyn,Clinton Hill,40.69143,-73.96079,Private room,108,4,21,2.31,1,12 +10329,16430135,Manhattan,Lower East Side,40.71846,-73.98671999999999,Private room,80,4,3,0.06,1,0 +10330,15904258,Queens,Maspeth,40.72172,-73.8881,Entire home/apt,60,3,45,1.06,1,219 +10331,4152479,Brooklyn,Williamsburg,40.70978,-73.95143,Entire home/apt,220,3,5,0.13,2,0 +10332,24732939,Manhattan,East Village,40.72578,-73.98236,Entire home/apt,140,5,16,0.72,1,1 +10333,1696219,Manhattan,East Village,40.7336,-73.99006,Entire home/apt,1200,3,9,0.25,1,359 +10334,18118610,Brooklyn,Prospect Heights,40.67308,-73.96336,Entire home/apt,120,2,0,,1,0 +10335,30283594,Manhattan,Theater District,40.75654,-73.98891,Entire home/apt,369,30,0,,121,364 +10336,2405940,Manhattan,Harlem,40.82457,-73.94984000000001,Private room,42,2,3,0.08,1,0 +10337,2010157,Brooklyn,Bedford-Stuyvesant,40.68372,-73.91994,Entire home/apt,120,2,92,2.02,1,54 +10338,22282829,Manhattan,East Village,40.726859999999995,-73.98743,Private room,69,5,10,0.28,1,0 +10339,34943122,Brooklyn,Clinton Hill,40.684329999999996,-73.95982,Private room,85,1,14,0.3,2,0 +10340,2339049,Brooklyn,Bushwick,40.69919,-73.93818,Private room,75,2,226,4.78,2,128 +10341,5719436,Brooklyn,Flatbush,40.63982,-73.96634,Private room,1100,1,1,0.03,1,365 +10342,29235148,Brooklyn,Prospect-Lefferts Gardens,40.65508,-73.95689,Private room,60,2,3,0.07,1,0 +10343,41743945,Manhattan,Hell's Kitchen,40.76328,-73.99347,Private room,160,3,3,0.06,2,0 +10344,20336015,Manhattan,Hell's Kitchen,40.7699,-73.98985,Private room,120,1,1,0.02,1,0 +10345,41747327,Manhattan,Lower East Side,40.71909,-73.99028,Entire home/apt,95,1,98,2.13,1,240 +10346,16262059,Manhattan,East Village,40.723040000000005,-73.97695999999999,Entire home/apt,180,1,1,0.02,1,0 +10347,41757762,Brooklyn,Williamsburg,40.711220000000004,-73.95663,Entire home/apt,170,13,6,0.17,1,0 +10348,10399992,Brooklyn,Bushwick,40.70098,-73.92674,Private room,39,14,1,0.02,1,0 +10349,23533897,Brooklyn,Crown Heights,40.67568,-73.95124,Private room,75,1,38,1.12,7,322 +10350,41760536,Manhattan,Upper East Side,40.7695,-73.95115,Private room,100,1,0,,1,0 +10351,4549552,Brooklyn,Bedford-Stuyvesant,40.691179999999996,-73.95928,Entire home/apt,160,2,14,0.3,1,0 +10352,10353278,Manhattan,East Village,40.73243,-73.98692,Private room,96,2,114,2.47,2,98 +10353,36089884,Manhattan,Washington Heights,40.85597,-73.9333,Private room,50,2,93,3.37,1,208 +10354,6272532,Manhattan,SoHo,40.72521,-74.00213000000001,Entire home/apt,145,5,8,0.19,1,0 +10355,15102423,Brooklyn,Fort Greene,40.69011,-73.98053,Entire home/apt,225,1,0,,1,0 +10356,41775303,Manhattan,Lower East Side,40.721309999999995,-73.98541,Entire home/apt,100,3,1,0.02,1,0 +10357,6444987,Brooklyn,Bedford-Stuyvesant,40.6796,-73.93021999999999,Private room,95,2,153,3.27,3,296 +10358,6238742,Brooklyn,Crown Heights,40.67702,-73.959,Entire home/apt,115,1,0,,1,0 +10359,41810578,Manhattan,Chelsea,40.7393,-73.99609,Entire home/apt,215,1,0,,1,0 +10360,1453898,Brooklyn,Williamsburg,40.71268,-73.96676,Private room,105,2,232,5.0,3,64 +10361,6312322,Manhattan,Harlem,40.8215,-73.95565,Private room,75,1,0,,1,0 +10362,28398689,Brooklyn,Bedford-Stuyvesant,40.68179,-73.92947,Private room,150,1,0,,1,0 +10363,41827222,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94962,Private room,35,6,10,0.28,2,0 +10364,21468915,Brooklyn,Bushwick,40.69559,-73.92783,Entire home/apt,80,1,1,0.02,1,0 +10365,109981,Brooklyn,Bedford-Stuyvesant,40.682790000000004,-73.92135,Entire home/apt,120,2,11,0.93,1,6 +10366,40336543,Queens,Long Island City,40.76422,-73.93169,Private room,89,2,0,,2,364 +10367,41764756,Brooklyn,Prospect-Lefferts Gardens,40.65602,-73.95891,Entire home/apt,130,3,20,0.43,1,0 +10368,8363605,Manhattan,Two Bridges,40.711059999999996,-73.99576,Entire home/apt,122,1,0,,1,0 +10369,12589844,Manhattan,East Village,40.72157,-73.97861,Private room,71,7,42,0.89,1,0 +10370,2128535,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96246,Private room,50,3,5,0.11,1,0 +10371,6444987,Brooklyn,Bedford-Stuyvesant,40.67973,-73.93058,Private room,72,2,151,3.23,3,288 +10372,2787,Brooklyn,Bensonhurst,40.60951,-73.97622,Private room,99,1,21,0.5,6,153 +10373,5504415,Brooklyn,Carroll Gardens,40.681290000000004,-73.99426,Entire home/apt,110,1,2,0.04,1,0 +10374,355259,Manhattan,Upper East Side,40.76637,-73.95345,Entire home/apt,118,1,2,0.04,1,0 +10375,26297795,Manhattan,East Harlem,40.79025,-73.9482,Private room,75,1,5,0.11,1,0 +10376,7020836,Manhattan,West Village,40.738490000000006,-74.00589000000001,Entire home/apt,225,3,159,3.4,1,132 +10377,41919914,Brooklyn,Bushwick,40.698809999999995,-73.93056999999999,Private room,80,1,2,0.04,1,188 +10378,119445,Bronx,City Island,40.85205,-73.78868,Private room,107,1,73,1.73,1,173 +10379,1696218,Brooklyn,Williamsburg,40.7187,-73.95606,Entire home/apt,500,26,9,0.19,1,178 +10380,292522,Brooklyn,Fort Greene,40.68857,-73.97385,Entire home/apt,200,2,120,2.61,2,287 +10381,7057608,Queens,East Elmhurst,40.75712,-73.89365,Private room,42,2,25,0.54,1,283 +10382,11081810,Manhattan,Chelsea,40.747679999999995,-73.99625,Entire home/apt,350,4,3,0.06,1,0 +10383,3333577,Manhattan,Gramercy,40.73523,-73.98668,Private room,160,2,53,1.16,2,344 +10384,41939599,Brooklyn,Prospect Heights,40.680240000000005,-73.97173000000001,Entire home/apt,164,30,0,,1,0 +10385,10556524,Brooklyn,Williamsburg,40.70649,-73.92954,Private room,89,2,2,0.05,2,0 +10386,2665690,Brooklyn,Bedford-Stuyvesant,40.68432,-73.93226999999999,Entire home/apt,150,30,10,0.25,1,30 +10387,39956905,Manhattan,East Village,40.72775,-73.9863,Private room,100,2,0,,2,0 +10388,41951749,Brooklyn,South Slope,40.66495,-73.99146999999999,Entire home/apt,120,2,8,0.17,1,0 +10389,6263244,Manhattan,Harlem,40.82036,-73.94219,Private room,73,1,10,0.29,2,365 +10390,6263244,Manhattan,Harlem,40.81944,-73.9408,Private room,73,1,27,0.59,2,340 +10391,32502064,Manhattan,Financial District,40.7044,-74.00851,Entire home/apt,200,1,0,,1,0 +10392,5555793,Brooklyn,Carroll Gardens,40.67857,-73.99485,Entire home/apt,140,3,3,0.06,2,0 +10393,3251778,Brooklyn,Crown Heights,40.67323,-73.9619,Entire home/apt,125,2,4,0.09,1,0 +10394,32088026,Brooklyn,Sheepshead Bay,40.584790000000005,-73.9388,Entire home/apt,109,1,0,,1,0 +10395,42008401,Queens,Long Island City,40.75403,-73.91814000000001,Entire home/apt,140,1,9,0.19,1,0 +10396,2762022,Brooklyn,Bedford-Stuyvesant,40.693979999999996,-73.9338,Private room,48,4,22,0.47,1,0 +10397,42030960,Brooklyn,Bay Ridge,40.63519,-74.02634,Entire home/apt,135,1,0,,1,0 +10398,30283594,Manhattan,Midtown,40.766329999999996,-73.98145,Entire home/apt,335,30,0,,121,201 +10399,42034713,Manhattan,SoHo,40.72251,-73.99956999999999,Private room,50,1,0,,1,0 +10400,4352069,Manhattan,East Village,40.72672,-73.97965,Entire home/apt,400,1,15,0.34,2,6 +10401,2781031,Manhattan,Hell's Kitchen,40.76885,-73.98631,Entire home/apt,165,3,68,1.46,1,195 +10402,42043282,Brooklyn,Bushwick,40.70335,-73.92891,Private room,70,2,1,0.02,1,0 +10403,4094837,Queens,Ridgewood,40.71111,-73.91689000000001,Private room,52,10,8,0.17,1,36 +10404,24707895,Manhattan,Chelsea,40.740520000000004,-74.00423,Entire home/apt,385,3,3,0.07,1,0 +10405,42045746,Brooklyn,Bushwick,40.68935,-73.9127,Private room,45,1,1,0.02,1,0 +10406,780477,Brooklyn,East New York,40.66125,-73.89976,Entire home/apt,275,3,77,1.67,1,256 +10407,42050222,Manhattan,Chelsea,40.74192,-73.99978,Private room,135,3,250,5.36,1,111 +10408,4831239,Queens,Astoria,40.76583,-73.92878,Entire home/apt,75,1,0,,1,0 +10409,39651842,Manhattan,Upper East Side,40.77285,-73.94715,Private room,110,1,0,,1,0 +10410,20233558,Brooklyn,Greenpoint,40.73175,-73.95403,Entire home/apt,350,2,5,0.11,1,0 +10411,12720552,Brooklyn,Bushwick,40.70158,-73.92724,Private room,100,1,22,0.48,5,324 +10412,42073103,Queens,Astoria,40.75535,-73.92609,Entire home/apt,100,2,4,0.09,1,0 +10413,1287826,Brooklyn,Prospect Heights,40.67603,-73.96941,Entire home/apt,135,4,2,0.04,1,0 +10414,17770287,Manhattan,Upper East Side,40.76769,-73.95236,Entire home/apt,115,30,12,0.27,14,239 +10415,5828974,Brooklyn,Williamsburg,40.71147,-73.95312,Entire home/apt,150,6,2,0.04,1,0 +10416,42082221,Manhattan,Washington Heights,40.83713,-73.94343,Private room,60,1,3,0.07,1,0 +10417,42082780,Brooklyn,Flatbush,40.64689,-73.96048,Entire home/apt,99,2,85,1.83,1,342 +10418,12986426,Manhattan,Harlem,40.82215,-73.95600999999999,Entire home/apt,180,5,95,2.09,1,60 +10419,12739246,Brooklyn,Bedford-Stuyvesant,40.684259999999995,-73.95669000000001,Entire home/apt,95,5,11,0.23,1,0 +10420,344035,Brooklyn,Prospect Heights,40.6796,-73.96948,Private room,60,1,197,4.19,13,324 +10421,37801911,Queens,Astoria,40.75959,-73.92439,Entire home/apt,100,1,2,0.04,1,0 +10422,27331181,Manhattan,Murray Hill,40.74763,-73.9733,Entire home/apt,250,2,26,0.58,1,0 +10423,42125531,Manhattan,Chelsea,40.75091,-73.99414,Shared room,200,1,0,,1,0 +10424,27712561,Brooklyn,Gowanus,40.6834,-73.98549,Entire home/apt,150,3,0,,1,0 +10425,41112084,Brooklyn,Clinton Hill,40.68817,-73.96852,Entire home/apt,145,3,3,0.06,1,0 +10426,13037911,Brooklyn,Williamsburg,40.72124,-73.95846999999999,Entire home/apt,250,1,54,1.15,1,365 +10427,43671,Brooklyn,Carroll Gardens,40.68502,-73.99306,Entire home/apt,150,2,8,0.17,1,196 +10428,32218896,Manhattan,Chelsea,40.74904,-74.00164000000001,Entire home/apt,400,3,15,0.39,1,0 +10429,15311573,Brooklyn,Prospect-Lefferts Gardens,40.65798,-73.95985,Private room,83,3,14,0.31,1,0 +10430,6491050,Brooklyn,Williamsburg,40.719390000000004,-73.94355999999999,Entire home/apt,150,13,8,0.17,1,0 +10431,42154621,Manhattan,Theater District,40.7566,-73.98329,Entire home/apt,1195,3,109,2.37,1,264 +10432,30487854,Brooklyn,Williamsburg,40.71067,-73.96005,Private room,68,5,14,0.3,2,10 +10433,34149113,Brooklyn,Bushwick,40.70227,-73.92362,Private room,50,2,0,,1,0 +10434,4277896,Brooklyn,Clinton Hill,40.6917,-73.96508,Private room,70,2,173,3.8,2,93 +10435,5555793,Brooklyn,Gowanus,40.67705,-73.99606999999999,Private room,65,1,3,0.06,2,0 +10436,42160853,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93003,Private room,45,1,2,0.04,1,0 +10437,276042,Manhattan,Greenwich Village,40.72913,-74.00074000000001,Private room,75,1,32,1.63,1,0 +10438,83834,Brooklyn,Williamsburg,40.713809999999995,-73.93619,Entire home/apt,115,7,0,,1,0 +10439,38793847,Manhattan,Harlem,40.82291,-73.95172,Private room,65,2,80,1.71,1,347 +10440,3318161,Brooklyn,Williamsburg,40.71212,-73.95888000000001,Entire home/apt,170,3,36,0.77,1,1 +10441,42215969,Queens,Woodside,40.74583,-73.90059000000001,Entire home/apt,450,1,0,,1,341 +10442,975656,Brooklyn,Crown Heights,40.66783,-73.93042,Entire home/apt,100,5,11,0.24,1,0 +10443,9835167,Manhattan,Upper West Side,40.781290000000006,-73.98572,Shared room,65,2,7,0.15,2,0 +10444,30529,Brooklyn,Prospect Heights,40.67354,-73.96359,Entire home/apt,280,2,24,0.52,2,151 +10445,40536602,Brooklyn,Midwood,40.62022,-73.95622,Entire home/apt,65,7,0,,1,0 +10446,42233780,Brooklyn,Clinton Hill,40.69485,-73.96254,Entire home/apt,150,2,9,0.2,1,0 +10447,3348610,Manhattan,Chelsea,40.75014,-73.99069,Entire home/apt,250,6,17,0.37,1,0 +10448,2119276,Manhattan,Midtown,40.74947,-73.98257,Entire home/apt,250,90,3,0.08,39,0 +10449,42243297,Brooklyn,Bensonhurst,40.61059,-74.00601999999999,Entire home/apt,65,1,287,7.31,1,308 +10450,11360525,Queens,Sunnyside,40.74667,-73.92361,Entire home/apt,130,5,4,0.09,1,0 +10451,390117,Manhattan,West Village,40.732209999999995,-74.00928,Entire home/apt,375,3,19,0.46,2,0 +10452,37849636,Brooklyn,Sheepshead Bay,40.60991,-73.95676999999999,Shared room,48,1,59,1.26,1,90 +10453,3491228,Brooklyn,Sunset Park,40.6529,-74.00399,Entire home/apt,80,10,2,0.04,1,0 +10454,1883133,Manhattan,Washington Heights,40.842690000000005,-73.93605,Entire home/apt,110,1,133,2.85,1,267 +10455,42295490,Manhattan,Chinatown,40.71608,-73.99425,Private room,72,4,12,0.25,2,0 +10456,16762482,Brooklyn,Greenpoint,40.73219,-73.95776,Private room,49,1,16,0.34,1,0 +10457,21267483,Manhattan,Upper West Side,40.775690000000004,-73.98028000000001,Entire home/apt,250,1,3,0.07,1,0 +10458,48165,Manhattan,Financial District,40.70726,-74.00593,Private room,120,2,128,2.74,1,246 +10459,8687068,Brooklyn,Bedford-Stuyvesant,40.68318,-73.95002,Entire home/apt,240,1,33,2.96,1,83 +10460,42309351,Manhattan,Harlem,40.82987,-73.94625,Entire home/apt,77,15,2,0.04,1,0 +10461,24496111,Manhattan,Gramercy,40.7331,-73.984,Private room,65,11,0,,1,0 +10462,29338009,Manhattan,Midtown,40.74921,-73.98445,Entire home/apt,185,7,17,0.36,1,0 +10463,38857566,Manhattan,Chelsea,40.74042,-73.99714,Private room,100,1,2,0.04,1,0 +10464,42315851,Brooklyn,Crown Heights,40.66827,-73.93255,Private room,50,1,1,0.02,1,0 +10465,259826,Brooklyn,Bushwick,40.69312,-73.9236,Private room,50,1,1,0.02,1,0 +10466,20413250,Queens,Astoria,40.76189,-73.9225,Private room,90,14,0,,2,0 +10467,42320409,Brooklyn,Williamsburg,40.7076,-73.94072,Entire home/apt,87,1,3,0.07,1,0 +10468,12474780,Brooklyn,Park Slope,40.66948,-73.97797,Private room,30,1,6,0.14,1,0 +10469,21787440,Manhattan,Washington Heights,40.840740000000004,-73.93544,Private room,65,1,11,0.24,2,0 +10470,1444040,Manhattan,Lower East Side,40.72126,-73.98482,Entire home/apt,109,1,76,1.65,1,0 +10471,10779300,Manhattan,West Village,40.7383,-74.00601999999999,Entire home/apt,150,4,0,,1,0 +10472,39921605,Manhattan,Upper West Side,40.80189,-73.96961999999999,Private room,152,1,39,0.83,5,157 +10473,312080,Brooklyn,Prospect Heights,40.67427,-73.96511,Entire home/apt,150,3,28,0.6,1,168 +10474,40082650,Manhattan,Chinatown,40.71555,-73.99298,Entire home/apt,300,3,30,0.66,1,87 +10475,20490026,Queens,Sunnyside,40.74109,-73.91577,Private room,55,90,15,0.32,1,365 +10476,36640518,Manhattan,Chelsea,40.736999999999995,-73.99576,Entire home/apt,500,1,0,,1,0 +10477,22221590,Brooklyn,Downtown Brooklyn,40.68973,-73.98563,Private room,70,10,1,0.02,2,0 +10478,28185540,Brooklyn,Williamsburg,40.7083,-73.95473,Private room,60,1,4,0.1,1,0 +10479,2073942,Brooklyn,Prospect Heights,40.678740000000005,-73.96842,Entire home/apt,150,1,1,0.02,1,0 +10480,33213436,Brooklyn,Gowanus,40.67872,-73.98286,Private room,119,1,171,3.82,8,236 +10481,42418809,Manhattan,Washington Heights,40.85563,-73.93509,Entire home/apt,74,1,3,0.07,1,0 +10482,1346505,Manhattan,Lower East Side,40.72045,-73.99016,Entire home/apt,250,3,4,0.09,1,0 +10483,42237225,Manhattan,Harlem,40.80083,-73.95584000000001,Private room,250,1,22,0.47,1,365 +10484,58546,Manhattan,Upper West Side,40.797909999999995,-73.96951,Entire home/apt,130,3,4,0.09,1,0 +10485,42436366,Manhattan,Murray Hill,40.7484,-73.97298,Private room,200,1,0,,1,0 +10486,39921605,Manhattan,Upper West Side,40.80377,-73.96903,Private room,163,1,30,0.64,5,188 +10487,1229609,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95218,Entire home/apt,125,3,2,0.06,1,0 +10488,183594,Brooklyn,Williamsburg,40.71693,-73.94476999999999,Entire home/apt,149,1,7,0.15,1,0 +10489,42404417,Brooklyn,Williamsburg,40.71848,-73.95834,Entire home/apt,135,4,54,1.17,1,158 +10490,30283594,Manhattan,Chelsea,40.74465,-73.99253,Entire home/apt,129,30,3,0.07,121,161 +10491,42488595,Queens,Astoria,40.76762,-73.90727,Entire home/apt,87,3,151,3.32,1,210 +10492,23027887,Brooklyn,Greenpoint,40.72569,-73.95179,Private room,55,4,2,0.04,1,0 +10493,21090508,Brooklyn,Bushwick,40.69758,-73.93417,Shared room,54,5,73,1.56,2,0 +10494,42524168,Manhattan,East Village,40.72351,-73.98288000000001,Entire home/apt,110,4,6,0.13,1,0 +10495,16396888,Brooklyn,Williamsburg,40.71062,-73.95274,Entire home/apt,250,1,3,0.06,1,0 +10496,39084892,Manhattan,Midtown,40.75512,-73.96826,Entire home/apt,150,4,15,0.32,1,0 +10497,3367355,Manhattan,Upper East Side,40.78451,-73.94939000000001,Entire home/apt,150,1,0,,1,0 +10498,1112829,Brooklyn,Bushwick,40.700109999999995,-73.92119,Private room,40,5,1,0.02,1,0 +10499,42535703,Manhattan,Harlem,40.80025,-73.95519,Entire home/apt,295,3,32,0.7,2,0 +10500,965061,Brooklyn,Williamsburg,40.71278,-73.96471,Private room,130,3,7,0.15,1,278 +10501,40176101,Brooklyn,Bedford-Stuyvesant,40.68929,-73.93079,Private room,79,1,296,6.37,7,59 +10502,40176101,Brooklyn,Bedford-Stuyvesant,40.689170000000004,-73.92900999999999,Private room,69,1,291,6.23,7,68 +10503,40176101,Brooklyn,Bedford-Stuyvesant,40.69003,-73.93085,Private room,79,1,284,6.09,7,67 +10504,2799733,Manhattan,Washington Heights,40.852959999999996,-73.93526999999999,Entire home/apt,147,7,27,0.78,1,294 +10505,40176101,Brooklyn,Bedford-Stuyvesant,40.690220000000004,-73.93077,Private room,79,1,291,6.26,7,26 +10506,40176101,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93035,Private room,69,1,327,7.07,7,41 +10507,14019268,Brooklyn,Bushwick,40.69702,-73.93167,Private room,70,2,67,1.45,2,353 +10508,4304095,Brooklyn,Clinton Hill,40.68352,-73.96348,Private room,119,4,115,2.47,1,26 +10509,1100659,Brooklyn,Bushwick,40.7052,-73.91549,Private room,49,1,107,3.04,1,340 +10510,42586851,Brooklyn,Bedford-Stuyvesant,40.691320000000005,-73.93866,Entire home/apt,132,2,81,1.94,1,10 +10511,4671519,Brooklyn,Williamsburg,40.71549,-73.94712,Entire home/apt,155,31,8,0.17,1,331 +10512,5072735,Brooklyn,Clinton Hill,40.6854,-73.96741,Entire home/apt,150,7,0,,1,0 +10513,2928867,Manhattan,West Village,40.7354,-74.00861,Entire home/apt,179,2,10,0.22,1,0 +10514,42601948,Manhattan,Upper West Side,40.80115,-73.96043,Private room,60,1,0,,1,0 +10515,4205261,Brooklyn,Clinton Hill,40.68667,-73.9676,Entire home/apt,104,2,15,0.39,2,100 +10516,19510122,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95798,Private room,40,2,9,0.2,1,0 +10517,3958647,Brooklyn,Bushwick,40.69955,-73.92225,Private room,90,3,0,,1,0 +10518,7890158,Manhattan,Lower East Side,40.71373,-73.98465,Entire home/apt,80,3,16,0.34,1,1 +10519,1433657,Brooklyn,Williamsburg,40.7079,-73.95598000000001,Private room,89,2,86,1.9,2,307 +10520,42619297,Brooklyn,Clinton Hill,40.69242,-73.96828000000001,Entire home/apt,999,2,141,3.04,2,67 +10521,7363236,Brooklyn,Bushwick,40.69715,-73.92865,Entire home/apt,85,25,2,0.04,1,0 +10522,42623155,Brooklyn,Bushwick,40.70343,-73.92538,Private room,75,10,1,0.02,1,0 +10523,29896455,Manhattan,Chinatown,40.71743,-73.99372,Private room,59,6,72,1.57,2,200 +10524,22470446,Brooklyn,Williamsburg,40.70803,-73.94868000000001,Private room,45,3,2,0.04,1,0 +10525,36481078,Manhattan,SoHo,40.727309999999996,-74.00471999999999,Entire home/apt,350,3,74,1.6,1,247 +10526,54255,Brooklyn,Bedford-Stuyvesant,40.684,-73.93226999999999,Entire home/apt,395,3,60,1.29,3,17 +10527,40085749,Brooklyn,East Flatbush,40.63774,-73.93714,Private room,200,1,0,,1,0 +10528,42660040,Manhattan,Midtown,40.75513,-73.96446,Entire home/apt,180,4,20,1.46,1,13 +10529,42667448,Brooklyn,Williamsburg,40.71982,-73.94409,Private room,46,7,2,0.04,1,0 +10530,30283594,Manhattan,Theater District,40.76145,-73.98555999999999,Entire home/apt,203,30,0,,121,365 +10531,30283594,Manhattan,Financial District,40.7055,-74.00811999999999,Entire home/apt,189,30,4,0.11,121,365 +10532,14946082,Queens,Long Island City,40.756440000000005,-73.93486,Entire home/apt,195,3,121,2.59,1,66 +10533,42691960,Manhattan,Harlem,40.80557,-73.94618,Private room,39,4,14,0.3,2,0 +10534,9489975,Manhattan,Upper East Side,40.7795,-73.94778000000001,Entire home/apt,57,7,0,,1,0 +10535,15585119,Brooklyn,Bushwick,40.70111,-73.92935,Private room,65,1,1,0.02,1,0 +10536,42700722,Manhattan,East Harlem,40.79985,-73.93836,Shared room,35,120,0,,1,0 +10537,42701501,Brooklyn,Greenpoint,40.72218,-73.93894,Entire home/apt,140,4,18,0.39,1,30 +10538,1903737,Brooklyn,Bushwick,40.69542,-73.93258,Private room,65,2,5,0.11,3,4 +10539,12483260,Manhattan,Upper East Side,40.77343,-73.95651,Entire home/apt,118,1,1,0.02,1,0 +10540,35524316,Manhattan,Hell's Kitchen,40.759890000000006,-73.98899999999999,Shared room,250,1,134,2.88,11,306 +10541,18655157,Manhattan,Midtown,40.74475,-73.98512,Shared room,55,5,32,0.69,3,0 +10542,42718751,Manhattan,Upper East Side,40.76511,-73.96555,Entire home/apt,155,30,9,0.2,1,316 +10543,17377835,Queens,Sunnyside,40.74674,-73.91881,Entire home/apt,250,3,0,,1,364 +10544,344035,Brooklyn,Prospect Heights,40.67811,-73.97126,Private room,85,1,222,4.98,13,290 +10545,20739852,Manhattan,Upper West Side,40.794940000000004,-73.97221,Entire home/apt,168,1,2,0.04,1,0 +10546,39156453,Brooklyn,South Slope,40.66594,-73.98814,Entire home/apt,110,2,10,0.22,1,0 +10547,16420179,Brooklyn,Columbia St,40.68274,-74.00433000000001,Entire home/apt,125,2,2,0.04,1,0 +10548,5489956,Brooklyn,Fort Greene,40.68886,-73.97686999999999,Entire home/apt,125,3,3,0.06,1,0 +10549,26163238,Manhattan,Upper West Side,40.78856,-73.97368,Private room,115,1,1,0.04,1,0 +10550,42788707,Manhattan,Chinatown,40.71475,-73.99257,Entire home/apt,130,180,15,0.35,1,365 +10551,1831760,Brooklyn,Gowanus,40.68334,-73.9847,Private room,64,7,1,0.02,1,0 +10552,23613165,Manhattan,Midtown,40.75932,-73.96396,Entire home/apt,140,2,2,0.04,1,0 +10553,7380428,Manhattan,Harlem,40.81525,-73.94552,Entire home/apt,165,7,86,1.84,3,99 +10554,202211,Manhattan,Gramercy,40.73284,-73.98510999999999,Entire home/apt,160,2,1,0.02,1,0 +10555,19668001,Brooklyn,Williamsburg,40.710609999999996,-73.94971,Private room,70,1,40,0.87,1,125 +10556,42814202,Queens,Fresh Meadows,40.742670000000004,-73.78737,Entire home/apt,100,1,59,1.58,3,132 +10557,2035326,Manhattan,East Village,40.72873,-73.98399,Entire home/apt,225,2,2,0.04,1,0 +10558,32441059,Queens,Astoria,40.768,-73.92429,Entire home/apt,70,2,13,0.28,1,159 +10559,23075765,Brooklyn,Williamsburg,40.7151,-73.96037,Private room,60,1,2,0.04,1,0 +10560,9659956,Brooklyn,Bushwick,40.7027,-73.92811,Entire home/apt,120,1,2,0.04,1,0 +10561,19058116,Brooklyn,Williamsburg,40.7105,-73.94693000000001,Private room,50,1,3,0.08,1,0 +10562,40874834,Queens,Jackson Heights,40.75526,-73.86468,Private room,75,1,114,2.45,3,328 +10563,40874834,Queens,Jackson Heights,40.75548,-73.86632,Private room,75,1,102,2.21,3,362 +10564,3250450,Queens,Long Island City,40.75547,-73.91866999999999,Private room,37,15,12,0.26,18,361 +10565,722831,Manhattan,Chelsea,40.75165,-74.00074000000001,Entire home/apt,225,29,9,0.24,1,280 +10566,1106804,Manhattan,East Village,40.7281,-73.98106,Entire home/apt,250,31,2,0.04,1,358 +10567,22261783,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93961,Entire home/apt,125,3,92,1.97,2,121 +10568,37670256,Manhattan,Midtown,40.75245,-73.98442,Entire home/apt,170,1,3,0.07,1,0 +10569,42874738,Manhattan,Upper East Side,40.77887,-73.95406,Private room,110,4,81,1.75,1,360 +10570,10606799,Manhattan,Upper East Side,40.76777,-73.96393,Entire home/apt,299,7,0,,1,0 +10571,8301365,Manhattan,Murray Hill,40.74553,-73.97301999999999,Private room,100,6,5,0.14,1,25 +10572,42911814,Brooklyn,Williamsburg,40.707879999999996,-73.9426,Private room,50,10,3,0.09,1,0 +10573,3228421,Manhattan,West Village,40.73319,-74.00502,Entire home/apt,205,3,47,1.01,1,262 +10574,16746108,Manhattan,Harlem,40.81993,-73.94704,Private room,45,2,0,,1,0 +10575,41059169,Brooklyn,Williamsburg,40.7124,-73.96314,Entire home/apt,90,3,17,0.36,3,77 +10576,3692257,Brooklyn,Kensington,40.64423,-73.98019000000001,Private room,49,1,1,0.02,2,0 +10577,13164593,Manhattan,Upper West Side,40.802659999999996,-73.96465,Private room,88,1,0,,1,0 +10578,17478311,Manhattan,East Village,40.72573,-73.97926,Entire home/apt,129,3,5,0.11,1,0 +10579,42942193,Manhattan,Kips Bay,40.73845,-73.9795,Entire home/apt,165,3,2,0.04,1,0 +10580,4983838,Brooklyn,Bedford-Stuyvesant,40.68499,-73.93918000000001,Entire home/apt,103,7,14,0.31,1,13 +10581,33519200,Brooklyn,East Flatbush,40.63939,-73.94988000000001,Entire home/apt,97,2,100,2.15,1,307 +10582,42951928,Manhattan,Theater District,40.76205,-73.9845,Private room,49,1,8,0.18,1,0 +10583,42959506,Manhattan,Hell's Kitchen,40.76127,-73.99181,Entire home/apt,245,4,55,1.29,1,261 +10584,27362570,Queens,Ridgewood,40.70136,-73.89608,Private room,52,1,4,0.09,1,0 +10585,7849109,Brooklyn,Bedford-Stuyvesant,40.680409999999995,-73.92971999999999,Entire home/apt,280,1,1,0.02,1,0 +10586,9835167,Manhattan,Upper West Side,40.78143,-73.98638000000001,Entire home/apt,120,3,0,,2,0 +10587,33747092,Brooklyn,Bedford-Stuyvesant,40.6795,-73.90899,Private room,30,7,0,,1,0 +10588,42991737,Manhattan,Financial District,40.70517,-74.01142,Entire home/apt,350,3,0,,1,0 +10589,22221590,Brooklyn,Downtown Brooklyn,40.68967,-73.98664000000001,Entire home/apt,150,3,0,,2,0 +10590,2126994,Manhattan,Harlem,40.80679,-73.94408,Private room,62,3,5,0.11,1,0 +10591,18223173,Manhattan,East Village,40.72777,-73.98545,Entire home/apt,195,1,0,,1,0 +10592,24430182,Manhattan,Chelsea,40.743179999999995,-73.9982,Entire home/apt,129,1,6,0.13,1,0 +10593,7950356,Brooklyn,Park Slope,40.66766,-73.98257,Entire home/apt,175,2,10,0.25,1,0 +10594,43007744,Queens,Ditmars Steinway,40.77433,-73.91734,Private room,80,4,32,0.72,1,303 +10595,12796091,Brooklyn,Crown Heights,40.67658,-73.95786,Entire home/apt,90,3,14,0.3,1,0 +10596,8860559,Brooklyn,Williamsburg,40.70939,-73.95155,Private room,77,4,1,0.02,1,0 +10597,5983145,Brooklyn,Bushwick,40.69867,-73.91134,Entire home/apt,120,30,51,1.28,1,202 +10598,24982391,Brooklyn,Williamsburg,40.71248,-73.96379,Private room,90,1,5,0.11,1,0 +10599,1740952,Brooklyn,Bedford-Stuyvesant,40.68355,-73.94129000000001,Entire home/apt,180,2,1,0.02,1,0 +10600,43034440,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.96177,Entire home/apt,100,30,43,0.94,1,43 +10601,43038322,Manhattan,Lower East Side,40.71826,-73.99199,Entire home/apt,159,3,170,3.64,1,37 +10602,34920172,Manhattan,East Village,40.72995,-73.98135,Entire home/apt,200,1,101,2.19,1,247 +10603,10134825,Manhattan,Lower East Side,40.7146,-73.98423000000001,Private room,89,3,5,0.11,4,0 +10604,19966390,Manhattan,East Village,40.72845,-73.97989,Entire home/apt,200,2,3,0.06,1,0 +10605,28888685,Manhattan,SoHo,40.72528,-74.00223000000001,Private room,72,2,5,0.11,1,0 +10606,10134825,Manhattan,Lower East Side,40.71358,-73.98456,Entire home/apt,250,3,0,,4,0 +10607,43052750,Manhattan,Battery Park City,40.709559999999996,-74.01605,Entire home/apt,165,30,6,0.13,1,43 +10608,43075550,Manhattan,Tribeca,40.72018,-74.00981,Private room,100,1,18,0.38,1,31 +10609,11315661,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92198,Private room,90,1,0,,1,0 +10610,41087164,Manhattan,Lower East Side,40.71349,-73.98473,Private room,90,10,8,0.17,1,0 +10611,43082153,Manhattan,Midtown,40.75249,-73.96866,Entire home/apt,120,4,3,0.06,1,0 +10612,22372311,Manhattan,Upper West Side,40.798770000000005,-73.96259,Entire home/apt,185,3,200,4.31,1,6 +10613,6816235,Manhattan,Lower East Side,40.719770000000004,-73.98176,Private room,100,1,0,,1,0 +10614,43091823,Manhattan,East Village,40.723620000000004,-73.98519,Entire home/apt,120,5,0,,1,0 +10615,43092626,Manhattan,Upper East Side,40.78338,-73.95008,Entire home/apt,159,1,126,2.7,1,338 +10616,9862206,Brooklyn,Williamsburg,40.71697,-73.95919,Private room,70,1,19,0.41,1,0 +10617,19990876,Brooklyn,Bedford-Stuyvesant,40.683890000000005,-73.95557,Private room,80,3,4,0.09,1,0 +10618,2881763,Manhattan,Chelsea,40.73921,-73.99717,Entire home/apt,220,2,3,0.06,1,0 +10619,6101617,Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96131,Entire home/apt,89,4,3,0.07,1,0 +10620,1510638,Queens,Astoria,40.75535,-73.91396999999999,Entire home/apt,135,7,2,0.04,1,157 +10621,19982835,Manhattan,Harlem,40.79965,-73.95446,Entire home/apt,150,2,13,0.28,1,362 +10622,43108922,Brooklyn,Greenpoint,40.721759999999996,-73.94393000000001,Entire home/apt,165,2,129,2.8,2,235 +10623,37312959,Queens,East Elmhurst,40.77006,-73.87683,Private room,46,1,543,11.59,5,163 +10624,20912691,Queens,Jamaica,40.710359999999994,-73.78260999999999,Private room,50,2,24,0.95,7,0 +10625,43119699,Manhattan,Upper East Side,40.78222,-73.94791,Entire home/apt,100,1,1,0.02,1,0 +10626,41466973,Manhattan,Hell's Kitchen,40.75849,-73.9907,Entire home/apt,200,2,1,0.02,1,161 +10627,40336543,Queens,Long Island City,40.76211,-73.92894,Private room,100,1,1,0.02,2,364 +10628,3692257,Brooklyn,Kensington,40.64277,-73.97946999999999,Entire home/apt,81,1,1,0.02,2,0 +10629,43134580,Manhattan,East Harlem,40.80965,-73.93911999999999,Entire home/apt,150,4,111,2.44,1,99 +10630,12485696,Manhattan,Chinatown,40.713429999999995,-73.99531999999999,Private room,60,2,3,0.07,1,0 +10631,14196588,Manhattan,Upper East Side,40.779140000000005,-73.94965,Entire home/apt,180,14,0,,1,0 +10632,38378985,Brooklyn,Bedford-Stuyvesant,40.67797,-73.93966999999999,Entire home/apt,239,5,147,3.19,1,142 +10633,24982697,Brooklyn,Sunset Park,40.64355,-74.01908,Private room,70,7,13,0.28,2,326 +10634,27990825,Brooklyn,Bushwick,40.70128,-73.92666,Private room,45,2,7,0.15,2,0 +10635,43137812,Manhattan,Harlem,40.80089,-73.95674,Entire home/apt,200,2,113,2.46,1,197 +10636,9511935,Manhattan,Roosevelt Island,40.76641,-73.94561,Shared room,45,1,1,0.02,1,0 +10637,20538121,Brooklyn,Bedford-Stuyvesant,40.68372,-73.95551,Entire home/apt,45,2,7,0.15,1,14 +10638,3538661,Brooklyn,Williamsburg,40.71519,-73.96174,Entire home/apt,400,4,0,,2,170 +10639,37563411,Brooklyn,Crown Heights,40.6683,-73.94977,Entire home/apt,110,1,5,0.12,3,0 +10640,37563411,Brooklyn,Crown Heights,40.6682,-73.94927,Private room,65,14,0,,3,0 +10641,10963050,Manhattan,East Village,40.73178,-73.98841999999999,Entire home/apt,250,2,48,1.07,1,211 +10642,43175172,Manhattan,Financial District,40.7066,-74.00395999999999,Private room,120,1,2,0.04,1,0 +10643,30283594,Manhattan,Upper East Side,40.763909999999996,-73.95938000000001,Entire home/apt,249,30,2,0.1,121,273 +10644,2182167,Brooklyn,Williamsburg,40.71288,-73.94136999999999,Private room,80,2,2,0.04,1,0 +10645,56350,Manhattan,Midtown,40.75463,-73.97445,Entire home/apt,124,2,14,0.42,1,0 +10646,22751337,Brooklyn,Fort Greene,40.69262,-73.97245,Entire home/apt,175,3,2,0.04,1,0 +10647,6898461,Brooklyn,Bushwick,40.70511,-73.91755,Private room,45,1,0,,1,0 +10648,3663218,Brooklyn,Williamsburg,40.71321,-73.94099,Private room,60,1,0,,2,0 +10649,333195,Brooklyn,Carroll Gardens,40.68326,-73.99327,Entire home/apt,115,3,27,0.58,1,166 +10650,1597935,Brooklyn,Prospect Heights,40.676970000000004,-73.97069,Entire home/apt,99,7,11,0.24,1,0 +10651,43203249,Queens,Woodside,40.74715,-73.91104,Private room,75,7,1,0.04,1,364 +10652,13184549,Manhattan,Upper East Side,40.775690000000004,-73.95201999999999,Entire home/apt,140,7,3,0.06,1,0 +10653,31804977,Manhattan,Harlem,40.82488,-73.94471999999999,Private room,75,4,0,,1,0 +10654,31304940,Brooklyn,Williamsburg,40.715959999999995,-73.96215,Private room,60,2,106,2.29,8,104 +10655,13871584,Queens,Woodside,40.74693,-73.90146,Private room,132,1,0,,1,0 +10656,2808153,Manhattan,Harlem,40.80577,-73.94708,Private room,120,2,11,0.25,2,263 +10657,2808153,Manhattan,Harlem,40.80565,-73.94621,Entire home/apt,150,2,13,0.42,2,271 +10658,28421010,Manhattan,Tribeca,40.72095,-74.00918,Entire home/apt,500,3,0,,1,0 +10659,10473601,Manhattan,Upper East Side,40.7734,-73.95832,Entire home/apt,150,5,11,0.24,1,0 +10660,13076168,Brooklyn,Bedford-Stuyvesant,40.67889,-73.9481,Private room,49,14,9,0.2,1,0 +10661,7430851,Brooklyn,Fort Greene,40.687909999999995,-73.97438000000001,Entire home/apt,110,2,2,0.04,1,0 +10662,43226806,Manhattan,Harlem,40.80214,-73.95325,Private room,65,6,1,0.03,1,0 +10663,24128401,Brooklyn,Williamsburg,40.71387,-73.95697,Entire home/apt,190,13,1,0.02,1,0 +10664,43257501,Manhattan,Upper West Side,40.77795,-73.9825,Entire home/apt,125,2,1,0.02,1,0 +10665,32791632,Manhattan,Upper West Side,40.773540000000004,-73.98461999999999,Private room,92,2,21,0.46,1,39 +10666,11268108,Brooklyn,Williamsburg,40.71468,-73.93774,Entire home/apt,100,2,0,,1,3 +10667,10387090,Brooklyn,Bushwick,40.68358,-73.90884,Private room,36,20,0,,5,346 +10668,3039478,Brooklyn,Bedford-Stuyvesant,40.69352,-73.94376,Entire home/apt,325,5,9,0.21,1,0 +10669,4307662,Manhattan,East Village,40.72555,-73.97713,Entire home/apt,120,4,3,0.07,1,0 +10670,1194064,Brooklyn,Williamsburg,40.707879999999996,-73.95106,Private room,60,5,1,0.02,1,0 +10671,9911159,Manhattan,East Harlem,40.79505,-73.93925,Entire home/apt,175,3,24,0.52,1,0 +10672,43282186,Brooklyn,Bushwick,40.689890000000005,-73.92128000000001,Entire home/apt,200,2,147,3.24,1,103 +10673,22572797,Manhattan,East Village,40.72504,-73.97905,Entire home/apt,180,1,146,3.14,1,270 +10674,17686601,Manhattan,Theater District,40.76365,-73.98484,Private room,155,1,0,,1,0 +10675,43286973,Brooklyn,Williamsburg,40.71887,-73.96069,Entire home/apt,120,1,0,,1,0 +10676,344035,Brooklyn,Prospect Heights,40.678000000000004,-73.97118,Private room,60,1,186,3.99,13,293 +10677,19477617,Manhattan,Chelsea,40.745129999999996,-74.00076,Private room,95,3,100,2.16,1,80 +10678,4998154,Brooklyn,Greenpoint,40.732659999999996,-73.95841,Private room,80,3,0,,1,0 +10679,90860,Brooklyn,Bedford-Stuyvesant,40.684979999999996,-73.93191999999999,Entire home/apt,230,2,203,4.55,4,283 +10680,27990825,Brooklyn,Bushwick,40.70015,-73.92693,Private room,45,2,1,0.02,2,0 +10681,43299973,Queens,Ridgewood,40.704679999999996,-73.90553,Private room,40,2,1,0.02,1,0 +10682,43302952,Brooklyn,East Flatbush,40.66383,-73.92706,Shared room,95,2,7,0.15,1,238 +10683,13563861,Brooklyn,Crown Heights,40.672109999999996,-73.94946999999999,Entire home/apt,200,2,0,,1,0 +10684,43298076,Manhattan,Harlem,40.8224,-73.95402,Private room,42,2,34,0.73,4,101 +10685,28025816,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95103,Private room,70,2,255,5.46,1,11 +10686,1177497,Brooklyn,Clinton Hill,40.68971,-73.96695,Private room,199,1,20,0.45,11,365 +10687,7806471,Manhattan,Washington Heights,40.84111,-73.93698,Private room,65,3,157,3.4,1,287 +10688,42849963,Manhattan,Hell's Kitchen,40.75383,-73.99535999999999,Entire home/apt,190,30,4,0.09,1,9 +10689,22529847,Manhattan,Greenwich Village,40.72853,-73.99914,Entire home/apt,200,2,146,3.13,1,264 +10690,19379151,Brooklyn,Crown Heights,40.6766,-73.95987,Entire home/apt,75,3,21,1.06,1,0 +10691,43361668,Brooklyn,Greenpoint,40.719229999999996,-73.95204,Private room,98,1,31,0.67,1,343 +10692,4591602,Brooklyn,Bushwick,40.7043,-73.92719,Private room,120,2,78,1.79,1,206 +10693,43371802,Brooklyn,Flatlands,40.62802,-73.92729,Private room,130,4,9,0.2,5,365 +10694,43370599,Manhattan,Harlem,40.81243,-73.9392,Entire home/apt,250,1,0,,1,89 +10695,11004198,Manhattan,East Village,40.72057,-73.97997,Entire home/apt,125,31,2,0.04,1,204 +10696,37440683,Manhattan,Upper West Side,40.77832,-73.98069,Entire home/apt,225,2,0,,1,0 +10697,41962603,Brooklyn,Bushwick,40.6972,-73.92697,Private room,96,3,0,,1,0 +10698,43390488,Brooklyn,Flatbush,40.64438,-73.95408,Private room,55,5,4,0.09,1,89 +10699,43330303,Manhattan,Washington Heights,40.85369,-73.93186999999999,Private room,68,3,8,0.2,2,160 +10700,481603,Brooklyn,Bushwick,40.69017,-73.91291,Private room,45,15,0,,1,0 +10701,7853503,Queens,Astoria,40.7713,-73.92628,Entire home/apt,140,1,2,0.05,1,0 +10702,37440412,Manhattan,Hell's Kitchen,40.76016,-73.98929,Entire home/apt,160,4,5,0.11,1,0 +10703,13716326,Brooklyn,Williamsburg,40.70828,-73.95246,Private room,77,7,1,0.02,1,0 +10704,43434198,Brooklyn,Greenpoint,40.72784,-73.94937,Private room,90,1,1,0.02,1,0 +10705,8332684,Manhattan,Lower East Side,40.71868,-73.99036,Entire home/apt,208,13,1,0.02,1,0 +10706,38363621,Manhattan,East Village,40.72765,-73.98634,Entire home/apt,215,3,72,1.56,1,0 +10707,43446271,Manhattan,Harlem,40.802040000000005,-73.95794000000001,Private room,100,2,21,0.45,1,79 +10708,36192346,Manhattan,Washington Heights,40.85415,-73.93108000000001,Private room,40,2,9,0.2,1,0 +10709,43449898,Queens,Maspeth,40.721940000000004,-73.91138000000001,Private room,59,1,85,1.85,1,176 +10710,13407785,Bronx,Throgs Neck,40.81476,-73.80001,Entire home/apt,325,2,44,2.23,1,153 +10711,36791609,Brooklyn,Bushwick,40.69836,-73.93521,Entire home/apt,98,1,201,4.37,1,293 +10712,43461780,Manhattan,West Village,40.73618,-74.00201,Private room,109,1,0,,1,0 +10713,21628945,Brooklyn,Bedford-Stuyvesant,40.681670000000004,-73.92525,Private room,69,3,13,0.28,2,333 +10714,6865699,Queens,Long Island City,40.75363,-73.93463,Private room,80,3,1,0.02,1,0 +10715,43494916,Brooklyn,Crown Heights,40.67791,-73.95336999999999,Entire home/apt,80,3,0,,2,0 +10716,22384027,Brooklyn,Brownsville,40.67065,-73.91643,Private room,39,1,45,0.97,10,158 +10717,9775058,Brooklyn,Kensington,40.64125,-73.9763,Private room,70,2,7,2.63,1,37 +10718,43509184,Manhattan,West Village,40.73418,-74.0046,Entire home/apt,194,3,117,2.58,1,0 +10719,7455706,Manhattan,East Village,40.72255,-73.97813000000001,Private room,90,5,92,2.01,2,8 +10720,22384027,Brooklyn,Crown Heights,40.67115,-73.91620999999999,Private room,39,1,70,1.51,10,33 +10721,10276104,Brooklyn,Williamsburg,40.71219,-73.95623,Private room,85,2,71,1.53,1,151 +10722,43524236,Staten Island,Todt Hill,40.60926,-74.10092,Entire home/apt,429,2,4,0.09,1,0 +10723,26856159,Manhattan,Harlem,40.82205,-73.9467,Private room,42,1,161,3.46,3,259 +10724,123713,Brooklyn,Bedford-Stuyvesant,40.681779999999996,-73.94179,Entire home/apt,200,2,1,0.02,1,0 +10725,4910739,Manhattan,NoHo,40.72847,-73.99302,Entire home/apt,700,2,31,1.29,1,54 +10726,19963678,Brooklyn,Bushwick,40.70299,-73.92648,Private room,50,1,4,0.09,1,0 +10727,43534773,Brooklyn,Sunset Park,40.65585,-73.99918000000001,Entire home/apt,100,1,1,0.02,1,0 +10728,18183596,Brooklyn,Crown Heights,40.67743,-73.95523,Entire home/apt,150,4,61,1.33,1,365 +10729,41514104,Brooklyn,Bushwick,40.6938,-73.92562,Entire home/apt,100,5,85,1.84,1,269 +10730,5973406,Brooklyn,Park Slope,40.66826,-73.98223,Entire home/apt,85,30,26,0.56,2,282 +10731,41547419,Manhattan,Greenwich Village,40.72681,-73.99951999999999,Entire home/apt,240,1,72,1.8,1,0 +10732,43549138,Manhattan,Kips Bay,40.74123,-73.97731,Entire home/apt,135,7,2,0.04,1,0 +10733,37376980,Manhattan,Upper East Side,40.78086,-73.94974,Entire home/apt,135,14,3,0.07,1,0 +10734,43583032,Bronx,West Farms,40.84328,-73.88173,Private room,79,1,3,0.16,1,179 +10735,32277262,Manhattan,East Village,40.72305,-73.98834000000001,Private room,150,2,10,0.31,1,0 +10736,43588775,Brooklyn,Bedford-Stuyvesant,40.68137,-73.94233,Private room,139,4,84,1.83,1,307 +10737,983006,Brooklyn,Bedford-Stuyvesant,40.68632,-73.95093,Private room,38,2,2,0.04,1,0 +10738,32492147,Brooklyn,Downtown Brooklyn,40.69579,-73.98295999999999,Private room,100,4,65,1.43,1,0 +10739,43590457,Queens,Astoria,40.76599,-73.91776999999999,Private room,75,3,0,,1,0 +10740,21148770,Queens,Ridgewood,40.70995,-73.90959000000001,Entire home/apt,170,4,6,0.13,1,0 +10741,43600713,Manhattan,Harlem,40.82137,-73.94769000000001,Private room,70,2,57,1.48,1,188 +10742,43599290,Manhattan,SoHo,40.724090000000004,-74.00241,Private room,199,3,107,2.69,2,276 +10743,22384027,Brooklyn,Crown Heights,40.67073,-73.91799,Private room,39,1,62,1.34,10,159 +10744,22384027,Brooklyn,Crown Heights,40.67112,-73.91685,Private room,39,1,73,1.57,10,33 +10745,43601551,Manhattan,East Harlem,40.78987,-73.94883,Private room,75,2,13,0.28,2,325 +10746,3959655,Brooklyn,Windsor Terrace,40.65106,-73.97704,Entire home/apt,99,20,30,0.65,2,65 +10747,2417692,Queens,Astoria,40.75748,-73.91221,Private room,100,15,15,0.32,2,61 +10748,38465372,Brooklyn,Cobble Hill,40.6869,-73.99741,Entire home/apt,225,3,38,0.96,1,135 +10749,25728891,Brooklyn,Brooklyn Heights,40.69449,-73.99727,Private room,99,2,72,1.62,1,231 +10750,179246,Brooklyn,Bedford-Stuyvesant,40.67804,-73.90997,Entire home/apt,469,9,7,0.16,2,48 +10751,1804684,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93884,Private room,67,60,6,0.13,1,266 +10752,43628713,Manhattan,Harlem,40.808009999999996,-73.9486,Private room,180,3,18,0.39,1,362 +10753,16805656,Manhattan,Upper West Side,40.79927,-73.96235,Private room,100,1,87,1.88,2,263 +10754,1017231,Manhattan,Harlem,40.82755,-73.93786999999999,Entire home/apt,125,3,8,0.17,1,1 +10755,43633040,Queens,Astoria,40.76086,-73.92604,Entire home/apt,85,3,25,0.55,1,0 +10756,9597454,Manhattan,Upper East Side,40.77001,-73.95691,Private room,175,2,3,0.08,1,0 +10757,32379616,Bronx,Williamsbridge,40.88301,-73.85452,Private room,65,5,17,0.4,2,123 +10758,43635876,Brooklyn,Borough Park,40.64077,-73.99268000000001,Private room,52,2,6,2.09,1,90 +10759,424343,Manhattan,Inwood,40.85911,-73.928,Entire home/apt,85,3,3,0.07,1,0 +10760,43637999,Staten Island,Great Kills,40.5455,-74.14829,Private room,99,1,82,1.78,1,325 +10761,43371802,Brooklyn,Flatlands,40.628409999999995,-73.92591,Private room,130,4,3,0.07,5,364 +10762,43645608,Manhattan,Hell's Kitchen,40.76128,-73.99616999999999,Entire home/apt,189,2,39,0.86,1,37 +10763,21628945,Brooklyn,Bedford-Stuyvesant,40.68223,-73.9269,Entire home/apt,121,2,16,0.42,2,0 +10764,43669213,Brooklyn,Williamsburg,40.70309,-73.94788,Private room,150,1,4,0.09,1,363 +10765,43669488,Manhattan,Midtown,40.7579,-73.96243,Entire home/apt,170,1,1,0.02,1,0 +10766,11428056,Manhattan,Hell's Kitchen,40.76039,-73.99002,Private room,70,2,11,0.24,1,0 +10767,21221987,Manhattan,Upper West Side,40.795120000000004,-73.97479,Private room,80,5,1,0.02,1,0 +10768,15809410,Manhattan,Morningside Heights,40.814640000000004,-73.96185,Entire home/apt,186,7,0,,1,0 +10769,1181122,Manhattan,East Village,40.72824,-73.97543,Entire home/apt,174,3,11,0.24,1,0 +10770,10134825,Manhattan,Lower East Side,40.71413,-73.9864,Private room,89,1,5,0.11,4,0 +10771,23936958,Manhattan,East Village,40.72749,-73.98894,Private room,109,3,4,0.09,1,0 +10772,43691297,Brooklyn,Greenpoint,40.72788,-73.95408,Entire home/apt,100,4,26,0.57,1,0 +10773,6112537,Brooklyn,Williamsburg,40.71078,-73.94060999999999,Private room,80,5,5,0.11,2,0 +10774,14796247,Brooklyn,Flatbush,40.6419,-73.96421,Private room,41,7,16,0.35,4,292 +10775,41152325,Brooklyn,Greenpoint,40.723729999999996,-73.94537,Entire home/apt,120,5,0,,1,0 +10776,2857722,Manhattan,West Village,40.73435,-73.99903,Entire home/apt,230,8,23,0.5,1,0 +10777,43719073,Brooklyn,Sheepshead Bay,40.6,-73.95612,Shared room,45,1,126,2.94,5,342 +10778,19194060,Manhattan,East Village,40.7241,-73.97991999999999,Entire home/apt,600,3,0,,1,0 +10779,634004,Brooklyn,Prospect Heights,40.67835,-73.97074,Entire home/apt,125,2,80,2.83,1,105 +10780,3901962,Manhattan,East Village,40.72948,-73.98664000000001,Entire home/apt,149,2,1,0.02,1,0 +10781,11305944,Bronx,Allerton,40.86789,-73.85999,Private room,63,4,40,0.87,5,0 +10782,25266527,Brooklyn,Bensonhurst,40.620540000000005,-73.99828000000001,Entire home/apt,60,3,6,0.13,1,0 +10783,5164854,Manhattan,Harlem,40.819590000000005,-73.9379,Private room,57,3,17,0.38,8,341 +10784,36955448,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95893000000001,Entire home/apt,160,2,59,1.58,1,304 +10785,3038856,Brooklyn,Williamsburg,40.7124,-73.96259,Entire home/apt,164,1,10,0.23,3,0 +10786,5499953,Brooklyn,Crown Heights,40.66916,-73.95288000000001,Entire home/apt,250,2,10,0.22,2,365 +10787,8791857,Manhattan,Morningside Heights,40.81067,-73.96377,Entire home/apt,194,5,29,0.75,1,102 +10788,14386700,Manhattan,Financial District,40.70698,-74.01383,Entire home/apt,140,10,0,,1,0 +10789,43443842,Brooklyn,Crown Heights,40.668890000000005,-73.93045,Entire home/apt,205,3,84,1.85,1,172 +10790,43371802,Brooklyn,Flatlands,40.6283,-73.92619,Private room,129,4,5,0.11,5,365 +10791,7784911,Brooklyn,Williamsburg,40.70948,-73.94081,Entire home/apt,250,4,0,,2,188 +10792,41007625,Manhattan,Midtown,40.76502,-73.98198000000001,Private room,399,6,0,,1,0 +10793,6502766,Manhattan,Greenwich Village,40.73637,-73.99746,Entire home/apt,150,2,16,0.37,1,0 +10794,10129919,Brooklyn,Cypress Hills,40.68537,-73.8775,Entire home/apt,75,3,160,3.44,2,256 +10795,43719073,Brooklyn,Sheepshead Bay,40.59836,-73.95416999999999,Shared room,45,1,135,2.91,5,351 +10796,51414,Brooklyn,Williamsburg,40.71525,-73.94742,Private room,65,2,9,0.2,1,0 +10797,43804373,Manhattan,Upper East Side,40.76096,-73.95964000000001,Entire home/apt,250,1,13,0.28,1,0 +10798,10023505,Brooklyn,Greenpoint,40.7347,-73.95727,Shared room,185,1,1,0.02,1,0 +10799,8550571,Manhattan,West Village,40.73105,-74.00541,Entire home/apt,400,2,10,0.25,1,0 +10800,5268758,Queens,Sunnyside,40.73633,-73.92641,Entire home/apt,125,1,172,4.48,1,234 +10801,41817016,Queens,Ditmars Steinway,40.771879999999996,-73.91555,Private room,175,1,5,0.11,1,87 +10802,43126563,Brooklyn,Park Slope,40.67173,-73.98303,Entire home/apt,300,3,70,1.51,1,338 +10803,30283594,Manhattan,Upper East Side,40.764829999999996,-73.95801,Entire home/apt,249,30,1,0.04,121,273 +10804,30283594,Manhattan,Upper East Side,40.76137,-73.96042,Entire home/apt,199,30,3,0.11,121,365 +10805,39047190,Manhattan,Gramercy,40.73858,-73.98881999999999,Entire home/apt,180,4,2,0.04,1,0 +10806,4818113,Brooklyn,Brownsville,40.6678,-73.92526,Private room,60,3,34,0.73,1,116 +10807,30866347,Brooklyn,Williamsburg,40.708659999999995,-73.94116,Private room,55,7,2,0.05,1,0 +10808,5008870,Brooklyn,Bedford-Stuyvesant,40.682109999999994,-73.9236,Entire home/apt,135,2,129,3.32,1,242 +10809,43876308,Brooklyn,East Flatbush,40.64464,-73.94807,Entire home/apt,90,2,4,1.85,1,93 +10810,14156051,Manhattan,East Village,40.73305,-73.98668,Private room,130,4,1,0.02,1,0 +10811,43885876,Bronx,Pelham Bay,40.85362,-73.82949,Shared room,150,1,0,,1,364 +10812,43889585,Brooklyn,Greenpoint,40.73747,-73.95289,Private room,80,1,0,,1,0 +10813,43893277,Manhattan,Harlem,40.82523,-73.95383000000001,Private room,85,3,37,0.81,1,61 +10814,34934128,Manhattan,Theater District,40.76095,-73.98668,Private room,150,2,3,0.08,1,0 +10815,43897442,Brooklyn,Flatbush,40.65309,-73.95523,Private room,62,1,73,1.58,1,334 +10816,6444987,Brooklyn,Bedford-Stuyvesant,40.68121,-73.93038,Entire home/apt,155,2,188,4.06,3,262 +10817,890425,Brooklyn,Bedford-Stuyvesant,40.67889,-73.94326,Private room,40,2,3,0.27,1,0 +10818,5283853,Manhattan,East Village,40.72972,-73.9875,Private room,140,2,35,0.78,2,28 +10819,12720552,Brooklyn,Bushwick,40.699020000000004,-73.93101999999999,Shared room,50,1,5,0.11,5,365 +10820,1237358,Manhattan,East Village,40.723420000000004,-73.98871,Entire home/apt,250,2,1,0.02,1,0 +10821,43949321,Brooklyn,Clinton Hill,40.68717,-73.96015,Private room,70,7,1,0.02,1,0 +10822,1854179,Brooklyn,Prospect Heights,40.68043,-73.96781,Entire home/apt,160,5,5,0.11,1,0 +10823,11995451,Brooklyn,Midwood,40.62857,-73.94828000000001,Entire home/apt,78,2,114,2.65,1,217 +10824,43956548,Manhattan,Chinatown,40.71631,-73.99694000000001,Entire home/apt,139,4,8,0.17,1,350 +10825,20990447,Manhattan,Washington Heights,40.85338,-73.93061,Private room,50,5,4,0.09,1,0 +10826,43964253,Manhattan,Upper East Side,40.77455,-73.94981999999999,Entire home/apt,145,2,31,0.69,1,0 +10827,43298076,Manhattan,Harlem,40.82323,-73.95494000000001,Private room,55,2,84,1.82,4,72 +10828,43969051,Manhattan,Upper West Side,40.79061,-73.97335,Entire home/apt,215,5,1,0.02,1,0 +10829,43945071,Queens,Long Island City,40.74654,-73.95778,Entire home/apt,199,480,0,,1,365 +10830,43375242,Queens,Long Island City,40.75653,-73.93268,Private room,120,2,9,0.2,2,89 +10831,26012172,Manhattan,Chelsea,40.75093,-73.99675,Entire home/apt,160,3,9,0.19,1,0 +10832,37131217,Manhattan,Upper West Side,40.7816,-73.97638,Entire home/apt,125,5,0,,1,0 +10833,43976299,Manhattan,Harlem,40.83057,-73.94582,Entire home/apt,99,1,0,,1,0 +10834,43977828,Staten Island,Silver Lake,40.62257,-74.09984,Entire home/apt,80,2,147,3.19,1,324 +10835,4230646,Manhattan,East Village,40.72595,-73.98218,Entire home/apt,150,2,6,0.18,1,0 +10836,15756065,Brooklyn,Bushwick,40.69795,-73.92161999999999,Private room,110,1,2,0.04,1,0 +10837,619330,Brooklyn,South Slope,40.66616,-73.98904,Entire home/apt,360,4,5,0.12,1,0 +10838,38204730,Manhattan,Gramercy,40.735240000000005,-73.98441,Entire home/apt,239,5,2,0.05,3,30 +10839,44042396,Brooklyn,Crown Heights,40.66754,-73.95265,Private room,40,4,3,0.07,1,0 +10840,15833732,Manhattan,Upper West Side,40.80285,-73.9657,Private room,60,5,2,0.05,1,0 +10841,30460662,Manhattan,Harlem,40.82117,-73.94306,Entire home/apt,87,2,11,0.25,1,0 +10842,33874814,Brooklyn,Williamsburg,40.70617,-73.95055,Private room,44,2,0,,1,6 +10843,44050884,Manhattan,Harlem,40.8272,-73.94136999999999,Private room,80,1,0,,1,0 +10844,10618178,Manhattan,Upper East Side,40.78174,-73.94829,Entire home/apt,119,6,4,0.09,1,0 +10845,2128335,Brooklyn,Sunset Park,40.66198,-73.99785,Entire home/apt,69,5,9,0.2,1,0 +10846,44087298,Manhattan,Washington Heights,40.84707,-73.93541,Private room,50,1,38,0.84,2,0 +10847,8489997,Brooklyn,Williamsburg,40.71111,-73.95141,Entire home/apt,200,10,27,0.59,1,280 +10848,10024006,Bronx,Riverdale,40.88837,-73.90939,Private room,65,1,202,4.35,1,0 +10849,44099001,Queens,Elmhurst,40.7452,-73.89086,Entire home/apt,78,2,1,0.03,1,0 +10850,2477248,Brooklyn,Fort Greene,40.68602,-73.97386,Entire home/apt,150,4,4,0.09,1,0 +10851,44096608,Manhattan,Upper West Side,40.7965,-73.96179000000001,Private room,99,2,165,3.56,1,105 +10852,20413250,Queens,Astoria,40.76307,-73.92246999999999,Entire home/apt,150,14,0,,2,0 +10853,4167576,Manhattan,Chelsea,40.7368,-73.9925,Entire home/apt,140,1,71,1.56,1,256 +10854,15789077,Manhattan,Murray Hill,40.74716,-73.97606999999999,Entire home/apt,500,1,1,0.02,1,0 +10855,28916226,Brooklyn,Prospect-Lefferts Gardens,40.657740000000004,-73.95201999999999,Entire home/apt,75,1,0,,1,0 +10856,31104953,Brooklyn,Windsor Terrace,40.66012,-73.98343,Entire home/apt,123,3,141,3.09,1,0 +10857,43371802,Brooklyn,Flatlands,40.62862,-73.92629000000001,Entire home/apt,414,16,5,0.12,5,365 +10858,43371802,Brooklyn,Flatlands,40.628679999999996,-73.92739,Private room,125,4,13,0.29,5,180 +10859,40376473,Manhattan,Chelsea,40.74451,-73.99226,Entire home/apt,299,2,25,1.22,1,221 +10860,44107591,Brooklyn,Flatbush,40.652159999999995,-73.96119,Private room,55,3,219,4.73,1,286 +10861,44123353,Manhattan,Upper West Side,40.78583,-73.9768,Private room,55,3,2,0.04,1,0 +10862,27708645,Brooklyn,Bedford-Stuyvesant,40.678309999999996,-73.93903,Private room,65,3,3,0.07,1,342 +10863,25360921,Manhattan,Midtown,40.749109999999995,-73.9877,Entire home/apt,300,3,0,,1,0 +10864,15094887,Manhattan,Harlem,40.805820000000004,-73.95355,Entire home/apt,150,5,11,0.82,1,0 +10865,19838610,Manhattan,Hell's Kitchen,40.76859,-73.9872,Private room,79,1,5,0.14,1,0 +10866,2284111,Manhattan,Hell's Kitchen,40.76599,-73.98388,Entire home/apt,152,1,0,,1,0 +10867,44171084,Manhattan,Harlem,40.82244,-73.94773,Entire home/apt,124,3,102,2.66,1,247 +10868,44170892,Brooklyn,Bay Ridge,40.634209999999996,-74.0263,Private room,85,2,36,0.94,1,281 +10869,2448006,Manhattan,Harlem,40.80311,-73.94858,Private room,100,3,6,0.13,3,349 +10870,13501341,Brooklyn,Bushwick,40.700540000000004,-73.91185,Entire home/apt,82,4,8,0.22,2,0 +10871,2422554,Bronx,Highbridge,40.83746,-73.92268,Private room,59,4,51,1.11,2,0 +10872,44193702,Manhattan,East Village,40.72137,-73.97785999999999,Private room,75,1,5,0.11,1,0 +10873,26909087,Brooklyn,Bedford-Stuyvesant,40.690670000000004,-73.92643000000001,Private room,65,1,2,0.04,1,0 +10874,44195923,Staten Island,Tompkinsville,40.63378,-74.08726,Private room,50,1,0,,1,0 +10875,25370219,Brooklyn,Williamsburg,40.71495,-73.96321,Private room,65,2,12,0.26,1,0 +10876,2227376,Manhattan,Chelsea,40.74501,-73.99725,Entire home/apt,109,3,10,0.33,1,0 +10877,36688169,Brooklyn,Boerum Hill,40.688629999999996,-73.98935,Private room,59,1,151,3.37,1,325 +10878,23968798,Manhattan,Upper East Side,40.764359999999996,-73.96471,Entire home/apt,300,4,7,0.16,1,188 +10879,4168247,Brooklyn,Fort Greene,40.693709999999996,-73.97076,Entire home/apt,135,6,12,0.32,1,188 +10880,32588705,Manhattan,East Harlem,40.797709999999995,-73.93449,Entire home/apt,110,2,1,0.02,1,0 +10881,10953390,Manhattan,East Village,40.723690000000005,-73.98998,Entire home/apt,300,2,1,0.02,1,0 +10882,2321776,Manhattan,Washington Heights,40.83368,-73.94314,Private room,80,4,0,,1,0 +10883,5338040,Manhattan,Upper East Side,40.773720000000004,-73.94803,Private room,185,5,7,0.15,1,341 +10884,1182180,Brooklyn,Sunset Park,40.64985,-74.00206999999999,Private room,35,6,26,0.57,1,160 +10885,17871237,Brooklyn,Williamsburg,40.715990000000005,-73.95514,Private room,250,5,0,,1,0 +10886,43779028,Manhattan,Upper West Side,40.769740000000006,-73.98743,Private room,90,2,2,0.05,1,0 +10887,31851704,Queens,East Elmhurst,40.75819,-73.87504,Private room,50,1,209,4.53,2,1 +10888,43768534,Brooklyn,Greenpoint,40.72403,-73.94306,Private room,60,7,11,0.24,1,0 +10889,1278978,Brooklyn,Williamsburg,40.71602,-73.94645,Private room,70,3,1,0.05,1,0 +10890,44262118,Manhattan,Upper West Side,40.77915,-73.97794,Private room,130,2,3,0.06,1,0 +10891,44260966,Bronx,Soundview,40.829390000000004,-73.86514,Private room,28,2,98,2.12,3,108 +10892,3687880,Brooklyn,Bedford-Stuyvesant,40.68293,-73.93437,Private room,35,14,0,,1,0 +10893,15928518,Brooklyn,Williamsburg,40.7127,-73.94048000000001,Entire home/apt,110,3,10,0.22,1,0 +10894,44273727,Brooklyn,Crown Heights,40.67416,-73.93854,Private room,70,1,3,0.06,1,0 +10895,6630320,Brooklyn,Williamsburg,40.711090000000006,-73.95918,Entire home/apt,200,2,7,0.15,1,0 +10896,15807888,Manhattan,Financial District,40.70963,-74.00759000000001,Private room,90,2,71,1.55,1,0 +10897,9684993,Queens,Ridgewood,40.70928,-73.89795,Entire home/apt,139,5,3,0.16,1,0 +10898,44206893,Manhattan,Hell's Kitchen,40.7595,-73.98966999999999,Entire home/apt,360,1,13,0.28,1,188 +10899,1938669,Manhattan,Midtown,40.74268,-73.98401,Entire home/apt,185,4,15,0.33,1,7 +10900,10181589,Queens,Sunnyside,40.74592,-73.92399,Entire home/apt,95,1,0,,1,0 +10901,6112537,Brooklyn,Williamsburg,40.71116,-73.94014,Private room,100,1,2,0.05,2,0 +10902,25802929,Manhattan,Midtown,40.76146,-73.96649000000001,Private room,195,3,67,1.64,1,265 +10903,3266068,Manhattan,East Village,40.72625,-73.98173,Entire home/apt,235,3,4,0.09,1,0 +10904,43108922,Brooklyn,Greenpoint,40.723209999999995,-73.9433,Entire home/apt,150,3,107,2.38,2,277 +10905,44303500,Manhattan,Washington Heights,40.8484,-73.93972,Private room,70,2,1,0.16,2,0 +10906,26389845,Manhattan,East Village,40.72696,-73.98406,Private room,95,2,2,0.04,2,0 +10907,19939430,Manhattan,Hell's Kitchen,40.76041,-73.99495999999999,Entire home/apt,450,6,15,0.44,1,364 +10908,44308521,Manhattan,Harlem,40.82355,-73.94881,Private room,50,2,0,,1,0 +10909,9247072,Manhattan,Upper West Side,40.798790000000004,-73.96721,Private room,100,1,9,0.19,1,0 +10910,44314131,Brooklyn,Crown Heights,40.66852,-73.9425,Entire home/apt,160,1,1,0.02,1,0 +10911,44322686,Brooklyn,Williamsburg,40.711929999999995,-73.94266,Private room,65,1,9,0.19,1,35 +10912,44329555,Queens,Jackson Heights,40.75273,-73.87144,Entire home/apt,104,2,166,3.63,1,195 +10913,6722310,Manhattan,Lower East Side,40.71915,-73.98546,Private room,60,2,12,0.26,1,0 +10914,44344360,Brooklyn,Bushwick,40.69882,-73.91771,Private room,60,7,0,,1,0 +10915,44347591,Brooklyn,Bushwick,40.7034,-73.9296,Private room,50,2,0,,1,0 +10916,44350279,Manhattan,Gramercy,40.73572,-73.98735,Entire home/apt,190,2,134,3.2,4,270 +10917,44343181,Brooklyn,Greenpoint,40.72522,-73.94563000000001,Private room,60,6,0,,1,0 +10918,9996343,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9463,Private room,55,3,18,0.39,1,0 +10919,31230100,Brooklyn,Crown Heights,40.67352,-73.95633000000001,Entire home/apt,80,7,45,1.06,3,161 +10920,44361695,Queens,Bellerose,40.733509999999995,-73.71299,Private room,65,2,39,0.85,1,222 +10921,41808609,Manhattan,Hell's Kitchen,40.75711,-73.99665,Entire home/apt,235,2,20,0.43,1,0 +10922,21940002,Manhattan,Lower East Side,40.71978,-73.98424,Entire home/apt,205,2,6,0.13,1,0 +10923,3404110,Brooklyn,Clinton Hill,40.695609999999995,-73.969,Entire home/apt,109,3,1,0.02,1,0 +10924,14564141,Brooklyn,Clinton Hill,40.68255,-73.96167,Private room,85,2,12,0.26,1,0 +10925,5354888,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96144,Private room,80,1,169,4.11,1,233 +10926,17853061,Manhattan,East Village,40.73106,-73.98467,Entire home/apt,120,3,4,0.09,1,0 +10927,17473615,Manhattan,Hell's Kitchen,40.75548,-73.99706,Private room,130,1,1,0.02,1,0 +10928,9036787,Manhattan,Upper West Side,40.80109,-73.97093000000001,Entire home/apt,190,4,46,1.02,1,207 +10929,44382810,Manhattan,Midtown,40.75188,-73.97251999999999,Entire home/apt,455,2,0,,1,0 +10930,21737404,Manhattan,Harlem,40.8022,-73.95737,Private room,99,4,2,0.04,1,0 +10931,1905482,Manhattan,Washington Heights,40.84747,-73.94279,Entire home/apt,125,30,0,,1,0 +10932,44398705,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92805,Private room,52,4,3,0.35,2,157 +10933,44398705,Brooklyn,Bedford-Stuyvesant,40.68942,-73.9287,Entire home/apt,110,4,5,0.11,2,50 +10934,2945143,Queens,Ridgewood,40.70588,-73.90821,Private room,75,2,0,,1,0 +10935,18830662,Manhattan,Chinatown,40.71707,-73.99065999999999,Private room,99,3,1,0.02,2,0 +10936,41042927,Manhattan,Upper West Side,40.77697,-73.97698000000001,Private room,137,1,163,3.55,1,32 +10937,44433249,Manhattan,Murray Hill,40.7465,-73.97734,Private room,85,5,2,0.04,1,0 +10938,7654837,Manhattan,Midtown,40.75287,-73.97439,Entire home/apt,149,10,3,0.13,1,14 +10939,2761047,Brooklyn,Williamsburg,40.71175,-73.96092,Entire home/apt,124,2,13,0.28,1,0 +10940,44436646,Manhattan,East Village,40.72529,-73.97756,Private room,125,2,23,0.51,1,0 +10941,7137049,Manhattan,Lower East Side,40.713229999999996,-73.9878,Private room,70,1,212,4.64,1,41 +10942,1411399,Queens,Astoria,40.76615,-73.91325,Private room,99,1,6,0.13,5,323 +10943,1411399,Queens,Astoria,40.767990000000005,-73.91234,Private room,109,1,2,0.04,5,138 +10944,18418581,Manhattan,Washington Heights,40.85432,-73.93198000000001,Entire home/apt,235,1,28,0.64,3,364 +10945,11625123,Brooklyn,Crown Heights,40.67501,-73.95873,Entire home/apt,95,2,20,0.44,1,0 +10946,15231059,Manhattan,Lower East Side,40.71978,-73.98705,Entire home/apt,250,2,8,0.17,4,297 +10947,44457589,Manhattan,SoHo,40.72607,-74.00166,Private room,95,1,152,3.34,2,9 +10948,4821374,Manhattan,Upper East Side,40.77564,-73.9533,Private room,85,1,71,1.55,2,186 +10949,44460139,Manhattan,Greenwich Village,40.72815,-74.00084,Entire home/apt,190,4,4,0.09,1,0 +10950,20123860,Manhattan,East Village,40.72831,-73.98481,Private room,125,1,2,0.04,2,0 +10951,36573037,Manhattan,Inwood,40.87126,-73.91722,Entire home/apt,125,2,20,0.46,2,164 +10952,39921605,Manhattan,Upper West Side,40.8037,-73.96803,Entire home/apt,374,1,31,0.69,5,188 +10953,16954469,Brooklyn,Crown Heights,40.669990000000006,-73.94735,Private room,160,2,2,0.04,1,364 +10954,17607789,Manhattan,East Harlem,40.79866,-73.94148,Private room,59,1,0,,1,0 +10955,44516268,Brooklyn,Bushwick,40.70337,-73.93070999999999,Entire home/apt,70,2,171,3.74,1,183 +10956,44506171,Brooklyn,East Flatbush,40.634009999999996,-73.93808,Entire home/apt,55,1,47,1.03,1,348 +10957,44086736,Manhattan,Upper East Side,40.78465,-73.94914,Entire home/apt,100,1,7,0.2,1,0 +10958,24559181,Manhattan,Upper East Side,40.763009999999994,-73.96734000000001,Private room,95,1,60,1.31,3,351 +10959,3256433,Manhattan,Lower East Side,40.72116,-73.99124,Entire home/apt,250,30,8,0.2,7,4 +10960,3626916,Brooklyn,Park Slope,40.67307,-73.97235,Entire home/apt,95,1,1,0.03,1,0 +10961,30791331,Queens,East Elmhurst,40.7568,-73.88894,Entire home/apt,89,2,9,0.2,2,331 +10962,44534342,Manhattan,Midtown,40.74568,-73.98324000000001,Entire home/apt,285,7,8,0.18,1,302 +10963,35302724,Manhattan,Tribeca,40.71924,-74.01165,Private room,127,2,2,0.04,1,0 +10964,44593150,Manhattan,Civic Center,40.7139,-74.00621,Entire home/apt,150,1,0,,1,0 +10965,44593642,Manhattan,Upper West Side,40.78385,-73.97466,Entire home/apt,225,30,1,0.02,1,0 +10966,19244346,Manhattan,Upper West Side,40.79893,-73.96769,Entire home/apt,150,4,1,0.02,1,0 +10967,6518093,Brooklyn,Bedford-Stuyvesant,40.67968,-73.90764,Private room,50,1,2,0.04,1,0 +10968,31469635,Manhattan,Harlem,40.82497,-73.94595,Private room,60,1,1,0.16,2,363 +10969,2742979,Manhattan,Chelsea,40.73983,-74.00102,Entire home/apt,275,7,6,0.14,1,0 +10970,14817413,Manhattan,Kips Bay,40.74088,-73.98285,Shared room,65,1,8,0.17,1,0 +10971,3826160,Brooklyn,Williamsburg,40.71032,-73.9517,Private room,80,1,215,4.68,1,232 +10972,9295237,Queens,Astoria,40.75763,-73.91389000000001,Entire home/apt,130,5,2,0.04,2,0 +10973,3191699,Queens,Long Island City,40.74534,-73.95557,Entire home/apt,199,2,0,,1,0 +10974,44623374,Brooklyn,Crown Heights,40.67763,-73.95943,Private room,65,1,5,0.11,1,0 +10975,5803786,Brooklyn,Williamsburg,40.70727,-73.94025,Private room,75,2,1,0.02,1,0 +10976,36889012,Brooklyn,Bedford-Stuyvesant,40.68251,-73.91944000000001,Entire home/apt,200,1,52,1.82,4,359 +10977,40696448,Manhattan,Morningside Heights,40.80773,-73.95976999999999,Private room,40,4,2,0.05,1,0 +10978,44630169,Manhattan,Harlem,40.82725,-73.9453,Entire home/apt,68,2,9,0.29,1,0 +10979,44631190,Brooklyn,Columbia St,40.68053,-74.00386999999999,Entire home/apt,130,3,15,0.33,1,356 +10980,44660079,Manhattan,Upper West Side,40.7786,-73.98554,Private room,135,3,79,2.19,2,20 +10981,44660079,Manhattan,Upper West Side,40.77875,-73.9875,Entire home/apt,165,5,25,0.54,2,70 +10982,44666806,Manhattan,East Village,40.72767,-73.98451999999999,Entire home/apt,250,1,2,0.04,1,0 +10983,32833549,Queens,Astoria,40.765409999999996,-73.92009,Shared room,52,1,1,0.02,1,363 +10984,44675456,Manhattan,West Village,40.73798,-73.99963000000001,Entire home/apt,170,2,1,0.03,1,0 +10985,9246269,Brooklyn,Bedford-Stuyvesant,40.69498,-73.94237,Private room,42,5,0,,1,0 +10986,26443890,Brooklyn,Williamsburg,40.70496,-73.93689,Private room,65,3,2,0.04,1,0 +10987,10364617,Brooklyn,Sunset Park,40.64685,-74.01097,Entire home/apt,80,3,34,0.75,1,0 +10988,30376992,Manhattan,Upper East Side,40.77964,-73.95474,Entire home/apt,130,2,5,0.11,1,0 +10989,5805675,Manhattan,Upper East Side,40.76693,-73.95911,Entire home/apt,140,7,2,0.05,1,0 +10990,29821368,Manhattan,Gramercy,40.73809,-73.98215,Entire home/apt,200,2,2,0.04,1,0 +10991,44697034,Brooklyn,Bedford-Stuyvesant,40.695040000000006,-73.94807,Private room,55,1,14,0.3,1,0 +10992,39769788,Brooklyn,Bushwick,40.7012,-73.92681999999999,Private room,50,3,0,,1,0 +10993,3969780,Manhattan,Upper East Side,40.77843,-73.95191,Entire home/apt,175,2,1,0.02,1,0 +10994,44742061,Manhattan,Hell's Kitchen,40.763259999999995,-73.99141999999999,Entire home/apt,500,1,0,,1,0 +10995,29408645,Manhattan,Chinatown,40.718790000000006,-73.99586,Entire home/apt,99,2,4,0.09,1,18 +10996,44751629,Manhattan,Upper East Side,40.77532,-73.95132,Entire home/apt,650,2,0,,1,0 +10997,32583045,Manhattan,Lower East Side,40.71297,-73.98561,Entire home/apt,200,1,4,0.09,1,0 +10998,44754726,Manhattan,Harlem,40.81646,-73.9369,Entire home/apt,180,1,0,,1,0 +10999,3501090,Queens,Astoria,40.76404,-73.91174000000001,Private room,75,4,86,1.88,1,324 +11000,28783846,Manhattan,Lower East Side,40.71435,-73.98924,Entire home/apt,90,6,7,0.23,1,0 +11001,938086,Queens,Elmhurst,40.74537,-73.88337,Private room,51,1,12,0.26,1,0 +11002,17530762,Brooklyn,Bushwick,40.70374,-73.93016,Private room,62,5,1,0.02,1,0 +11003,8636732,Brooklyn,Flatbush,40.63682,-73.9676,Entire home/apt,70,3,0,,2,0 +11004,17028800,Brooklyn,Bushwick,40.69856,-73.93087,Private room,90,1,1,0.02,1,0 +11005,25913948,Brooklyn,Bushwick,40.70145,-73.93798000000001,Private room,45,3,1,0.02,1,0 +11006,44779572,Manhattan,Upper West Side,40.800959999999996,-73.96670999999999,Private room,109,1,7,0.15,1,0 +11007,38361857,Manhattan,East Village,40.72612,-73.99043,Private room,100,3,98,2.15,1,0 +11008,44782700,Brooklyn,Bedford-Stuyvesant,40.684259999999995,-73.91939,Entire home/apt,200,3,63,1.39,1,354 +11009,20338412,Manhattan,East Village,40.7298,-73.9791,Private room,149,3,86,1.88,1,62 +11010,43220439,Queens,Jamaica,40.67068,-73.76711,Private room,55,5,29,0.64,1,314 +11011,11241345,Manhattan,Lower East Side,40.72027,-73.98565,Entire home/apt,275,1,0,,1,0 +11012,44791079,Brooklyn,Kensington,40.64291,-73.97928,Entire home/apt,70,1,1,0.02,1,0 +11013,44037475,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96042,Shared room,29,8,41,0.89,4,53 +11014,3599579,Brooklyn,Brooklyn Heights,40.694720000000004,-73.99856,Entire home/apt,195,5,94,2.04,1,26 +11015,258023,Manhattan,Upper West Side,40.77799,-73.98205,Entire home/apt,220,1,2,0.05,1,0 +11016,20985328,Queens,Astoria,40.761520000000004,-73.92254,Private room,80,5,30,0.66,2,249 +11017,5557052,Queens,Astoria,40.764359999999996,-73.92628,Private room,110,1,5,0.14,1,0 +11018,436365,Manhattan,Upper East Side,40.7696,-73.95275,Private room,70,3,31,0.68,3,345 +11019,21180293,Manhattan,Chinatown,40.71342,-73.99045,Private room,90,2,47,1.04,1,28 +11020,2876700,Brooklyn,Williamsburg,40.71369,-73.95523,Entire home/apt,130,10,2,0.04,1,0 +11021,44837740,Manhattan,Theater District,40.756009999999996,-73.98909,Entire home/apt,2000,1,3,0.07,1,0 +11022,32768581,Manhattan,East Village,40.72948,-73.98855999999999,Entire home/apt,149,5,107,2.84,1,12 +11023,44850669,Bronx,Clason Point,40.81773,-73.86164000000001,Entire home/apt,100,2,58,1.26,1,324 +11024,4264360,Brooklyn,Williamsburg,40.71263,-73.9591,Entire home/apt,100,2,6,0.13,1,0 +11025,4277248,Brooklyn,Bushwick,40.69999,-73.93863,Entire home/apt,125,2,1,0.02,1,0 +11026,44857362,Manhattan,Chelsea,40.74041,-74.00140999999999,Entire home/apt,200,1,0,,1,0 +11027,44862166,Manhattan,East Village,40.726890000000004,-73.98676,Entire home/apt,199,1,205,4.5,1,349 +11028,9864136,Brooklyn,Bushwick,40.68623,-73.91374,Private room,50,1,2,0.06,26,365 +11029,44866282,Manhattan,Chelsea,40.74026,-74.00091,Entire home/apt,300,1,2,0.04,1,0 +11030,684398,Manhattan,Hell's Kitchen,40.75744,-73.99269,Entire home/apt,285,4,2,0.04,1,0 +11031,3321346,Manhattan,East Village,40.72903,-73.98938000000001,Entire home/apt,330,3,12,0.32,1,58 +11032,21014758,Brooklyn,Bedford-Stuyvesant,40.68793,-73.92179,Private room,39,2,57,1.25,3,117 +11033,44875359,Manhattan,East Village,40.72184,-73.98165,Shared room,60,10,0,,2,0 +11034,44018877,Brooklyn,Flatbush,40.6394,-73.95136,Entire home/apt,77,2,136,3.0,2,265 +11035,12649916,Brooklyn,Williamsburg,40.71383,-73.95273,Entire home/apt,115,1,2,0.04,1,0 +11036,44881523,Manhattan,Harlem,40.8294,-73.94695,Entire home/apt,99,3,13,0.28,1,0 +11037,44882587,Manhattan,East Village,40.72613,-73.98062,Entire home/apt,250,1,1,0.02,1,0 +11038,44887928,Manhattan,Upper East Side,40.7851,-73.95254,Shared room,62,1,104,2.26,1,333 +11039,44225290,Brooklyn,Williamsburg,40.713229999999996,-73.94866,Entire home/apt,105,3,26,0.58,1,0 +11040,22420999,Queens,Richmond Hill,40.69474,-73.83038,Private room,55,1,7,0.15,5,344 +11041,16437254,Brooklyn,Sunset Park,40.66406,-73.9949,Entire home/apt,172,30,2,0.46,21,362 +11042,11234583,Manhattan,Midtown,40.75547,-73.96467,Entire home/apt,100,1,0,,1,0 +11043,44923714,Manhattan,Upper East Side,40.7818,-73.95121999999999,Entire home/apt,120,1,0,,1,0 +11044,44924968,Brooklyn,Crown Heights,40.67677,-73.94804,Private room,60,2,42,0.94,1,354 +11045,44924546,Brooklyn,Boerum Hill,40.68347,-73.97971,Private room,72,1,201,4.45,4,5 +11046,34021565,Manhattan,Upper West Side,40.79401,-73.96432,Private room,80,1,0,,1,0 +11047,1420715,Brooklyn,Bushwick,40.68821,-73.9187,Entire home/apt,229,3,159,3.54,3,231 +11048,44924379,Queens,Jamaica,40.69872,-73.78614,Private room,70,1,68,1.5,3,349 +11049,27974952,Brooklyn,East Flatbush,40.644870000000004,-73.94919,Shared room,40,30,3,0.07,7,360 +11050,406843,Manhattan,East Village,40.729040000000005,-73.97946,Private room,99,2,50,1.1,2,131 +11051,44932338,Queens,Astoria,40.7657,-73.92469,Private room,100,2,15,0.33,1,318 +11052,32289994,Manhattan,Lower East Side,40.72195,-73.98796999999999,Private room,78,4,5,0.11,1,0 +11053,19100918,Manhattan,SoHo,40.727920000000005,-74.00323,Entire home/apt,125,1,88,1.91,1,320 +11054,44941648,Manhattan,Murray Hill,40.74648,-73.97726,Entire home/apt,190,3,130,2.83,1,249 +11055,44875359,Manhattan,East Village,40.72367,-73.98131,Shared room,100,15,0,,2,0 +11056,43523900,Manhattan,Hell's Kitchen,40.763659999999994,-73.99438,Entire home/apt,135,2,2,0.04,1,0 +11057,44950182,Brooklyn,Cobble Hill,40.68665,-73.99150999999999,Entire home/apt,250,2,23,1.04,1,0 +11058,6193870,Manhattan,Murray Hill,40.744690000000006,-73.97443,Entire home/apt,125,4,0,,1,0 +11059,1841463,Brooklyn,Greenpoint,40.72361,-73.94123,Entire home/apt,228,1,0,,1,0 +11060,6653707,Queens,Sunnyside,40.748540000000006,-73.91338,Private room,37,1,0,,1,0 +11061,44967011,Manhattan,Chelsea,40.75215,-74.00426,Entire home/apt,116,120,0,,1,0 +11062,27615247,Brooklyn,Midwood,40.624190000000006,-73.96287,Entire home/apt,99,5,67,1.83,3,27 +11063,14046692,Queens,Howard Beach,40.65918,-73.83038,Private room,50,1,5,0.24,2,0 +11064,44992001,Brooklyn,Bedford-Stuyvesant,40.69562,-73.94734,Private room,54,30,9,0.2,1,0 +11065,44996314,Brooklyn,Williamsburg,40.71179,-73.96092,Private room,70,3,26,0.57,1,0 +11066,44996501,Manhattan,Hell's Kitchen,40.7633,-73.98591,Private room,135,2,58,2.16,1,42 +11067,23296023,Manhattan,East Village,40.72828,-73.98602,Entire home/apt,425,2,95,2.17,1,0 +11068,45003774,Brooklyn,Greenpoint,40.732479999999995,-73.95237,Entire home/apt,122,5,3,0.07,1,189 +11069,22910743,Manhattan,Upper West Side,40.77205,-73.98924,Entire home/apt,141,6,2,0.04,1,0 +11070,45016174,Manhattan,Chelsea,40.747890000000005,-73.98953,Entire home/apt,800,1,0,,1,0 +11071,3656083,Brooklyn,Greenpoint,40.73464,-73.95413,Private room,70,4,17,0.37,2,159 +11072,1603471,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95286999999999,Private room,90,1,0,,1,0 +11073,45023742,Manhattan,East Village,40.72623,-73.98451999999999,Entire home/apt,150,1,2,0.05,1,0 +11074,45029559,Manhattan,Chelsea,40.74068,-74.00279,Entire home/apt,250,1,1,0.02,1,0 +11075,45033175,Manhattan,Theater District,40.75731,-73.98435,Private room,115,4,122,2.71,3,29 +11076,45033715,Manhattan,Upper East Side,40.7796,-73.94806,Entire home/apt,130,2,19,0.42,1,0 +11077,44924546,Brooklyn,Boerum Hill,40.684979999999996,-73.97856,Private room,74,1,241,5.42,4,4 +11078,45045974,Brooklyn,Cypress Hills,40.68173,-73.87314,Private room,48,2,58,1.34,1,248 +11079,13313020,Manhattan,Hell's Kitchen,40.76389,-73.99072,Shared room,85,1,8,0.17,1,0 +11080,25170062,Manhattan,Nolita,40.72271,-73.99545,Entire home/apt,180,3,2,0.04,1,0 +11081,24632224,Brooklyn,Crown Heights,40.67902,-73.96101,Entire home/apt,97,5,2,0.04,1,0 +11082,6178560,Manhattan,Harlem,40.81951,-73.93715,Entire home/apt,131,1,0,,1,0 +11083,45093051,Manhattan,Harlem,40.80255,-73.95347,Private room,100,1,36,2.52,2,365 +11084,45094827,Brooklyn,Sheepshead Bay,40.606759999999994,-73.96011999999999,Entire home/apt,100,1,0,,1,0 +11085,45100854,Manhattan,East Village,40.72249,-73.98042,Private room,105,5,74,1.61,2,0 +11086,3062365,Brooklyn,Williamsburg,40.71894,-73.95713,Entire home/apt,100,6,3,0.07,1,0 +11087,45112353,Brooklyn,Bedford-Stuyvesant,40.68528,-73.92296,Entire home/apt,145,4,59,1.37,1,242 +11088,6926778,Manhattan,West Village,40.73932,-74.00381999999999,Entire home/apt,289,3,10,0.22,1,88 +11089,11623096,Brooklyn,Flatbush,40.64697,-73.96465,Entire home/apt,800,3,1,0.02,1,0 +11090,45082108,Brooklyn,Greenpoint,40.725640000000006,-73.94885,Private room,90,1,0,,1,0 +11091,28272799,Manhattan,Harlem,40.82855,-73.94033,Private room,29,3,27,0.59,1,0 +11092,45197192,Brooklyn,Prospect-Lefferts Gardens,40.65869,-73.95652,Entire home/apt,70,2,7,0.15,1,0 +11093,2636827,Brooklyn,Williamsburg,40.71795,-73.94273000000001,Private room,80,3,6,0.16,2,0 +11094,10312377,Manhattan,Harlem,40.80458,-73.94888,Private room,120,3,0,,1,0 +11095,25889382,Brooklyn,Crown Heights,40.67649,-73.94657,Private room,60,2,79,1.75,1,268 +11096,45203510,Manhattan,Tribeca,40.72075,-74.00981999999999,Private room,80,1,0,,1,0 +11097,45204053,Brooklyn,Williamsburg,40.716809999999995,-73.9408,Private room,70,5,22,0.48,2,359 +11098,32228,Manhattan,Chinatown,40.7148,-73.99248,Entire home/apt,175,5,16,0.35,1,0 +11099,45201692,Staten Island,St. George,40.64779,-74.0846,Entire home/apt,144,1,105,2.3,1,258 +11100,32792372,Brooklyn,Crown Heights,40.66872,-73.95362,Private room,40,2,18,0.4,1,0 +11101,45208389,Manhattan,Hell's Kitchen,40.75589,-73.99729,Entire home/apt,340,1,0,,1,0 +11102,6346333,Manhattan,East Village,40.72917,-73.98517,Private room,180,1,27,0.59,2,0 +11103,45226022,Manhattan,East Harlem,40.79802,-73.94003000000001,Private room,75,4,162,3.55,1,60 +11104,45226868,Brooklyn,Crown Heights,40.67455,-73.93968000000001,Entire home/apt,80,4,56,1.23,1,343 +11105,9737872,Brooklyn,Red Hook,40.67521,-74.01103,Entire home/apt,352,3,7,0.16,1,0 +11106,45232769,Queens,Astoria,40.76685,-73.91762,Private room,69,2,62,1.37,3,67 +11107,45231777,Manhattan,Upper East Side,40.76517,-73.96665,Entire home/apt,150,2,134,2.95,1,36 +11108,19564640,Manhattan,Greenwich Village,40.73008,-74.0005,Entire home/apt,500,1,0,,1,0 +11109,642004,Brooklyn,Brooklyn Heights,40.69162,-73.99252,Entire home/apt,250,30,6,0.14,1,0 +11110,6346333,Manhattan,East Village,40.72756,-73.98588000000001,Entire home/apt,280,4,2,0.05,2,0 +11111,6424258,Brooklyn,Clinton Hill,40.695890000000006,-73.96261,Private room,55,3,16,0.37,1,0 +11112,43908809,Queens,Woodside,40.74921,-73.9037,Private room,50,1,3,0.07,3,65 +11113,43298844,Brooklyn,Williamsburg,40.71764,-73.95689,Private room,49,1,1,0.02,1,0 +11114,21734605,Brooklyn,Park Slope,40.677859999999995,-73.97412,Private room,135,4,0,,2,0 +11115,3210447,Brooklyn,Bushwick,40.69784,-73.9284,Private room,45,4,2,0.05,1,0 +11116,28781526,Brooklyn,Downtown Brooklyn,40.688790000000004,-73.98127,Entire home/apt,150,1,68,1.49,1,74 +11117,17258663,Brooklyn,Williamsburg,40.71006,-73.95725999999999,Entire home/apt,120,3,1,0.03,1,0 +11118,2520559,Manhattan,SoHo,40.72214,-73.99793000000001,Entire home/apt,150,2,89,1.94,1,55 +11119,4586854,Brooklyn,Bedford-Stuyvesant,40.685520000000004,-73.95328,Entire home/apt,120,30,143,3.17,1,221 +11120,45295976,Manhattan,Morningside Heights,40.81281,-73.95881999999999,Entire home/apt,80,14,3,0.07,1,0 +11121,45303998,Manhattan,Harlem,40.80171,-73.95303,Private room,60,5,78,2.32,1,30 +11122,20985328,Queens,Astoria,40.76258,-73.92141,Private room,70,3,1,0.02,2,36 +11123,27018630,Manhattan,Hell's Kitchen,40.760690000000004,-73.99068,Entire home/apt,239,2,163,4.18,1,118 +11124,45315085,Manhattan,Upper West Side,40.778659999999995,-73.98065,Entire home/apt,275,1,0,,1,0 +11125,1367316,Brooklyn,Prospect-Lefferts Gardens,40.66301,-73.95487,Entire home/apt,89,2,58,1.5,1,279 +11126,45318624,Brooklyn,Park Slope,40.67858,-73.97901999999999,Entire home/apt,300,1,0,,1,0 +11127,6272317,Manhattan,Washington Heights,40.84957,-73.93959,Private room,50,3,6,0.13,1,0 +11128,44620317,Queens,Corona,40.73977,-73.85777,Shared room,37,1,34,0.76,4,362 +11129,45319781,Manhattan,West Village,40.73464,-74.00084,Entire home/apt,239,1,272,5.98,1,305 +11130,14035150,Brooklyn,Williamsburg,40.711859999999994,-73.95098,Entire home/apt,190,4,0,,1,0 +11131,3699016,Brooklyn,Bedford-Stuyvesant,40.679120000000005,-73.9506,Entire home/apt,150,4,12,0.27,2,0 +11132,13487080,Manhattan,Upper East Side,40.77065,-73.95205,Private room,150,1,1,0.02,1,0 +11133,9209820,Brooklyn,Crown Heights,40.67017,-73.94852,Entire home/apt,360,3,12,0.37,3,261 +11134,17428203,Manhattan,Upper East Side,40.77127,-73.95175,Private room,115,7,90,1.97,2,23 +11135,4308094,Manhattan,Lower East Side,40.71848,-73.99091,Entire home/apt,150,1,2,0.04,1,0 +11136,41420696,Manhattan,Lower East Side,40.72135,-73.98915,Entire home/apt,207,4,84,2.16,1,88 +11137,45354224,Queens,Astoria,40.76914,-73.92118,Private room,120,2,240,5.22,1,298 +11138,4228414,Manhattan,Financial District,40.7083,-74.00415,Entire home/apt,160,7,1,0.03,1,0 +11139,45359132,Queens,Queens Village,40.720009999999995,-73.75402,Entire home/apt,85,2,57,1.26,1,317 +11140,11796122,Brooklyn,Red Hook,40.679159999999996,-74.00466999999999,Entire home/apt,100,1,2,0.04,1,0 +11141,45293333,Brooklyn,Flatbush,40.65336,-73.95305,Private room,45,2,3,0.69,1,249 +11142,17286936,Brooklyn,Carroll Gardens,40.6787,-73.99857,Entire home/apt,160,5,79,1.72,1,271 +11143,19303369,Queens,Elmhurst,40.74073,-73.87591,Private room,40,29,1,0.77,37,30 +11144,4481005,Brooklyn,Park Slope,40.673970000000004,-73.98236999999999,Private room,49,2,43,0.94,2,283 +11145,45383901,Brooklyn,Bedford-Stuyvesant,40.693329999999996,-73.94184,Private room,40,1,0,,1,0 +11146,200782,Manhattan,Kips Bay,40.74262,-73.98063,Entire home/apt,495,15,4,0.09,1,0 +11147,28709982,Brooklyn,Greenpoint,40.72014,-73.95496,Private room,89,3,19,0.42,3,76 +11148,33200173,Manhattan,Upper West Side,40.78709,-73.97755,Entire home/apt,220,3,7,0.16,2,4 +11149,45391169,Manhattan,East Village,40.72781,-73.98398,Private room,99,2,78,1.71,1,363 +11150,27504587,Manhattan,East Village,40.72979,-73.98905,Entire home/apt,160,1,0,,1,0 +11151,19480603,Brooklyn,Crown Heights,40.67589,-73.95196,Private room,80,5,2,0.04,1,0 +11152,4920604,Brooklyn,Williamsburg,40.718720000000005,-73.9603,Private room,78,2,23,0.51,1,0 +11153,45399701,Brooklyn,Williamsburg,40.70828,-73.94572,Private room,110,1,1,0.02,1,0 +11154,24188973,Manhattan,Harlem,40.80449,-73.94743000000001,Entire home/apt,130,31,31,0.69,1,66 +11155,20008462,Manhattan,Upper East Side,40.76643,-73.95809,Entire home/apt,150,1,2,0.05,1,0 +11156,45404928,Queens,Queens Village,40.71412,-73.73008,Entire home/apt,59,1,113,2.79,1,346 +11157,2568318,Brooklyn,Williamsburg,40.7172,-73.95983000000001,Private room,80,9,1,0.02,1,0 +11158,45329725,Manhattan,Harlem,40.80316,-73.95447,Private room,80,3,1,0.02,1,0 +11159,45433475,Manhattan,East Village,40.72976,-73.98245,Entire home/apt,160,2,8,0.18,1,0 +11160,13440686,Brooklyn,Bedford-Stuyvesant,40.68233,-73.91001,Private room,45,1,87,1.9,1,0 +11161,32970856,Manhattan,Upper East Side,40.78406,-73.95294,Private room,94,14,1,0.02,1,0 +11162,10164435,Queens,Astoria,40.7571,-73.92792,Private room,77,1,254,5.61,3,11 +11163,7374372,Brooklyn,Park Slope,40.67374,-73.97976,Entire home/apt,149,6,108,2.38,1,268 +11164,15954226,Brooklyn,Bedford-Stuyvesant,40.68222,-73.95284000000001,Entire home/apt,130,7,2,0.04,1,0 +11165,2591842,Queens,Astoria,40.75758,-73.9206,Private room,57,3,2,0.19,1,5 +11166,8733761,Brooklyn,Williamsburg,40.70821,-73.95187,Entire home/apt,150,5,9,0.2,1,0 +11167,45464080,Queens,Jackson Heights,40.751670000000004,-73.89171,Private room,55,4,6,0.13,1,249 +11168,9094952,Manhattan,Financial District,40.70428,-74.01066999999999,Entire home/apt,127,2,3,0.07,1,0 +11169,8137499,Brooklyn,Bay Ridge,40.6328,-74.02748000000001,Private room,60,2,20,0.44,1,363 +11170,21508828,Manhattan,Washington Heights,40.85289,-73.93508,Private room,64,1,16,0.36,2,249 +11171,9917136,Brooklyn,Crown Heights,40.677,-73.92363,Private room,40,1,22,0.5,3,67 +11172,45471621,Manhattan,Washington Heights,40.85041,-73.92645,Private room,50,3,122,2.68,1,199 +11173,44924546,Brooklyn,Boerum Hill,40.68522,-73.97856,Private room,83,1,202,4.53,4,0 +11174,21169602,Brooklyn,Greenpoint,40.727140000000006,-73.95088,Entire home/apt,200,1,3,0.11,1,0 +11175,4154037,Manhattan,Harlem,40.82305,-73.94555,Private room,49,14,25,0.55,2,276 +11176,44924546,Brooklyn,Boerum Hill,40.68477,-73.97833,Private room,60,1,194,4.29,4,0 +11177,31598220,Queens,Jackson Heights,40.747659999999996,-73.88949000000001,Private room,45,20,1,0.03,1,0 +11178,43219894,Manhattan,Upper West Side,40.78322,-73.97435,Entire home/apt,180,1,2,0.04,1,0 +11179,39031994,Brooklyn,Bushwick,40.69428,-73.90679,Private room,45,2,4,0.34,1,34 +11180,24856634,Brooklyn,Bay Ridge,40.634609999999995,-74.03164,Entire home/apt,89,2,101,2.26,1,291 +11181,45513630,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94485,Private room,25,2,1,0.02,1,0 +11182,45468039,Brooklyn,Williamsburg,40.718709999999994,-73.95862,Entire home/apt,285,2,53,1.2,1,13 +11183,45516192,Manhattan,Upper West Side,40.7936,-73.97442,Private room,100,5,91,2.07,1,279 +11184,16339935,Queens,Long Island City,40.75819,-73.93213,Private room,90,3,1,0.02,1,0 +11185,45519775,Staten Island,Randall Manor,40.62859,-74.12272,Entire home/apt,75,2,131,2.85,1,310 +11186,45446889,Queens,Astoria,40.767070000000004,-73.91473,Entire home/apt,75,3,1,0.03,1,0 +11187,23073564,Manhattan,Midtown,40.74576,-73.98146,Private room,200,2,150,3.32,1,0 +11188,43719073,Brooklyn,Sheepshead Bay,40.59852,-73.95481,Shared room,35,1,116,2.55,5,351 +11189,17074459,Manhattan,East Village,40.7316,-73.98543000000001,Entire home/apt,297,1,9,0.24,3,0 +11190,22044830,Brooklyn,Bushwick,40.68697,-73.91592,Private room,150,1,0,,1,0 +11191,31876150,Brooklyn,Sunset Park,40.66567,-73.99509,Entire home/apt,195,3,116,2.56,1,38 +11192,45533710,Brooklyn,Bushwick,40.70498,-73.92115,Entire home/apt,80,3,4,0.15,1,0 +11193,8996336,Brooklyn,Crown Heights,40.67255,-73.94914,Private room,50,500,10,0.22,1,365 +11194,22251283,Manhattan,Hell's Kitchen,40.75679,-73.99547,Entire home/apt,115,30,18,0.41,4,37 +11195,11540159,Brooklyn,Park Slope,40.673759999999994,-73.98195,Entire home/apt,70,5,4,0.26,2,0 +11196,10595966,Brooklyn,Crown Heights,40.66687,-73.95662,Entire home/apt,119,4,13,0.29,1,0 +11197,45550171,Staten Island,Concord,40.605140000000006,-74.07366999999999,Entire home/apt,120,1,26,0.58,1,333 +11198,6639602,Brooklyn,Williamsburg,40.71151,-73.96665,Private room,400,3,0,,1,0 +11199,4068325,Manhattan,Midtown,40.75594,-73.96874,Entire home/apt,250,3,8,0.19,1,1 +11200,45557152,Bronx,Morrisania,40.82424,-73.91315999999999,Entire home/apt,225,1,0,,1,0 +11201,27973696,Manhattan,Washington Heights,40.83401,-73.94254000000001,Entire home/apt,45,1,1,0.02,1,0 +11202,4360949,Manhattan,Hell's Kitchen,40.763659999999994,-73.98849,Entire home/apt,260,1,0,,1,0 +11203,12190039,Manhattan,Washington Heights,40.83591,-73.94776999999999,Entire home/apt,155,5,3,0.08,2,0 +11204,1644914,Manhattan,Kips Bay,40.73842,-73.98008,Shared room,97,1,1,0.02,1,0 +11205,17794638,Queens,Ditmars Steinway,40.77442,-73.91465,Private room,75,2,4,0.12,1,0 +11206,45595980,Manhattan,Upper East Side,40.769420000000004,-73.96705,Entire home/apt,155,30,7,0.19,12,52 +11207,45598282,Manhattan,Hell's Kitchen,40.764140000000005,-73.99296,Entire home/apt,237,3,6,0.15,2,0 +11208,45598132,Brooklyn,Williamsburg,40.71358,-73.95906,Private room,80,5,0,,1,0 +11209,28518140,Manhattan,Tribeca,40.7252,-74.01054,Entire home/apt,250,3,8,0.18,1,0 +11210,45600001,Queens,Flushing,40.74491,-73.83355,Private room,60,1,27,0.59,3,76 +11211,45601111,Queens,Laurelton,40.67168,-73.74744,Private room,42,2,54,1.22,5,189 +11212,45598282,Manhattan,Hell's Kitchen,40.76443,-73.99219000000001,Private room,105,3,17,0.4,2,0 +11213,45601660,Manhattan,Hell's Kitchen,40.759,-73.98894,Entire home/apt,300,1,0,,1,0 +11214,45604174,Brooklyn,South Slope,40.668,-73.98702,Private room,120,2,125,2.75,1,177 +11215,42713726,Brooklyn,Crown Heights,40.668820000000004,-73.95396,Private room,80,1,1,0.02,1,0 +11216,45608786,Manhattan,Washington Heights,40.85845,-73.92860999999999,Entire home/apt,125,1,6,0.13,1,0 +11217,20234611,Queens,Sunnyside,40.74454,-73.92394,Entire home/apt,125,1,14,0.33,1,0 +11218,24597265,Queens,Ditmars Steinway,40.77114,-73.90968000000001,Private room,50,14,2,0.06,8,317 +11219,45613202,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95548000000001,Private room,60,2,10,0.22,1,0 +11220,13713605,Brooklyn,Kensington,40.642720000000004,-73.97418,Entire home/apt,90,4,68,1.78,2,267 +11221,3856750,Manhattan,East Village,40.7229,-73.98313,Private room,60,5,0,,2,0 +11222,45620787,Manhattan,Upper East Side,40.7644,-73.9693,Entire home/apt,275,2,148,3.26,1,216 +11223,19808319,Manhattan,Harlem,40.80706,-73.94665,Private room,100,30,146,3.22,2,44 +11224,45632792,Manhattan,Theater District,40.7599,-73.98541999999999,Private room,200,1,1,0.02,2,0 +11225,42421006,Manhattan,Washington Heights,40.84874,-73.94202,Private room,99,1,129,3.75,2,299 +11226,45667135,Manhattan,Chelsea,40.7411,-74.00184,Private room,112,5,31,0.68,1,0 +11227,9166253,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95826,Private room,65,1,1,0.02,2,0 +11228,7991797,Manhattan,Midtown,40.745090000000005,-73.98268,Entire home/apt,200,1,9,0.2,1,0 +11229,40828217,Brooklyn,Prospect-Lefferts Gardens,40.661590000000004,-73.94129000000001,Entire home/apt,98,5,135,2.96,4,102 +11230,30791331,Queens,Jackson Heights,40.7553,-73.88701999999999,Private room,50,2,49,1.08,2,356 +11231,9376458,Queens,Astoria,40.76512,-73.92430999999999,Entire home/apt,135,3,11,0.24,1,0 +11232,45694156,Brooklyn,Red Hook,40.67807,-74.01397,Private room,50,1,190,4.23,1,188 +11233,45696732,Manhattan,Upper East Side,40.77858,-73.95059,Entire home/apt,145,4,2,0.05,1,0 +11234,43820172,Manhattan,Upper West Side,40.794940000000004,-73.96545,Entire home/apt,450,28,0,,1,365 +11235,41638669,Manhattan,Upper East Side,40.76574,-73.95875,Private room,141,1,2,0.04,1,0 +11236,22577148,Brooklyn,Bedford-Stuyvesant,40.69473,-73.93437,Private room,110,2,86,1.9,7,316 +11237,22502130,Manhattan,Upper West Side,40.8005,-73.96211,Private room,107,2,0,,1,0 +11238,1613244,Brooklyn,Brighton Beach,40.581759999999996,-73.96264000000001,Entire home/apt,110,30,7,0.19,9,284 +11239,9739435,Brooklyn,Gowanus,40.67475,-73.99707,Entire home/apt,1000,2,0,,1,365 +11240,10111580,Manhattan,West Village,40.73406,-74.00963,Entire home/apt,299,2,2,0.05,1,0 +11241,2610741,Manhattan,Upper East Side,40.775,-73.95071,Entire home/apt,190,2,26,0.58,1,42 +11242,18052038,Brooklyn,Fort Greene,40.686009999999996,-73.97813000000001,Entire home/apt,175,1,0,,1,0 +11243,3869531,Manhattan,Nolita,40.72143,-73.99427,Private room,70,3,13,0.29,1,0 +11244,42788011,Manhattan,Kips Bay,40.74279,-73.97833,Entire home/apt,75,1,4,0.09,1,0 +11245,4319369,Manhattan,Gramercy,40.73438,-73.9853,Entire home/apt,155,3,17,0.37,1,0 +11246,729279,Manhattan,Upper East Side,40.77243,-73.95016,Entire home/apt,96,2,34,0.75,1,0 +11247,2636827,Brooklyn,Williamsburg,40.7171,-73.94289,Entire home/apt,350,3,2,0.04,2,0 +11248,41324442,Manhattan,Lower East Side,40.71971,-73.98494000000001,Private room,90,4,59,1.36,1,2 +11249,45774138,Manhattan,Hell's Kitchen,40.763020000000004,-73.98833,Entire home/apt,500,3,55,1.23,1,46 +11250,8315176,Brooklyn,South Slope,40.66852,-73.9895,Private room,40,1,0,,1,0 +11251,45774825,Manhattan,Midtown,40.7675,-73.98228,Entire home/apt,175,7,15,0.34,1,0 +11252,45778782,Brooklyn,Prospect-Lefferts Gardens,40.659490000000005,-73.94852,Entire home/apt,50,5,1,0.02,1,0 +11253,2101644,Manhattan,Harlem,40.82248,-73.94891,Entire home/apt,130,1,289,6.46,1,217 +11254,3910533,Brooklyn,Williamsburg,40.706959999999995,-73.94349,Private room,90,2,1,0.02,1,0 +11255,420111,Manhattan,East Harlem,40.79699,-73.93881999999999,Private room,65,2,38,0.83,2,270 +11256,45815117,Manhattan,East Village,40.72895,-73.98789000000001,Entire home/apt,200,1,1,0.03,1,0 +11257,38914517,Brooklyn,Flatbush,40.64201,-73.95425,Entire home/apt,63,5,35,0.78,2,98 +11258,960850,Manhattan,Upper West Side,40.80093,-73.96308,Private room,110,1,2,0.07,1,0 +11259,475986,Queens,Kew Gardens,40.71065,-73.83015,Entire home/apt,100,1,14,0.31,1,90 +11260,45823919,Manhattan,Morningside Heights,40.81669,-73.96029,Private room,60,2,11,0.25,1,188 +11261,3571821,Brooklyn,Bedford-Stuyvesant,40.690529999999995,-73.95631999999999,Private room,45,5,32,0.7,4,0 +11262,19808319,Manhattan,Harlem,40.808640000000004,-73.95007,Entire home/apt,117,28,125,2.77,2,29 +11263,22171747,Brooklyn,Williamsburg,40.711040000000004,-73.96113000000001,Entire home/apt,175,5,10,0.23,1,32 +11264,45837698,Brooklyn,Sheepshead Bay,40.58599,-73.92761999999999,Entire home/apt,2000,1,1,0.02,1,365 +11265,12639098,Brooklyn,Flatbush,40.65315,-73.95538,Private room,60,1,0,,1,0 +11266,45837872,Manhattan,Midtown,40.755309999999994,-73.9655,Private room,148,1,30,0.84,1,16 +11267,16934136,Queens,Queens Village,40.713409999999996,-73.74804,Private room,65,1,0,,1,0 +11268,5270447,Brooklyn,Bushwick,40.700759999999995,-73.92828,Private room,150,4,0,,1,0 +11269,44508730,Brooklyn,Prospect-Lefferts Gardens,40.659729999999996,-73.94826,Private room,100,1,5,0.22,1,89 +11270,23772724,Manhattan,Hell's Kitchen,40.76612,-73.98545,Entire home/apt,200,30,3,0.07,15,336 +11271,3784682,Manhattan,Harlem,40.80745,-73.9418,Entire home/apt,650,2,1,0.04,1,0 +11272,2851789,Manhattan,Chinatown,40.71569,-73.99174000000001,Entire home/apt,199,2,18,1.28,1,1 +11273,1475015,Manhattan,Midtown,40.7569,-73.96408000000001,Entire home/apt,115,30,1,0.03,52,341 +11274,45854238,Manhattan,West Village,40.736309999999996,-74.00610999999999,Entire home/apt,245,3,51,1.12,1,0 +11275,24597265,Queens,Ditmars Steinway,40.770579999999995,-73.91091,Entire home/apt,187,6,57,1.33,8,275 +11276,45857976,Manhattan,Harlem,40.8186,-73.94413,Entire home/apt,88,2,24,0.53,1,39 +11277,45859613,Manhattan,Upper West Side,40.77812,-73.98066999999999,Entire home/apt,280,1,1,0.02,1,0 +11278,45864201,Manhattan,Chelsea,40.740429999999996,-73.99913000000001,Entire home/apt,200,1,0,,1,0 +11279,12226733,Manhattan,Harlem,40.81132,-73.94496,Entire home/apt,95,2,1,0.02,1,0 +11280,24032852,Manhattan,East Village,40.727740000000004,-73.97934000000001,Entire home/apt,260,2,170,3.85,1,236 +11281,45897508,Manhattan,Upper East Side,40.76127,-73.95815,Entire home/apt,148,2,1,0.02,1,0 +11282,1475015,Manhattan,Midtown,40.75618,-73.96600000000001,Entire home/apt,100,30,2,0.05,52,365 +11283,21180442,Manhattan,Harlem,40.82219,-73.9448,Private room,100,1,58,1.27,1,78 +11284,20261309,Manhattan,Washington Heights,40.8465,-73.94319,Shared room,60,1,0,,1,0 +11285,45913415,Manhattan,Harlem,40.81146,-73.94589,Private room,64,3,142,3.12,2,210 +11286,7706697,Brooklyn,Carroll Gardens,40.67763,-73.99628,Private room,125,2,30,0.67,2,80 +11287,26129793,Bronx,Fordham,40.86711,-73.89525,Private room,65,1,0,,1,0 +11288,8235517,Manhattan,Harlem,40.81925,-73.94073,Entire home/apt,110,2,4,0.11,1,0 +11289,45619483,Manhattan,East Village,40.73138,-73.99002,Entire home/apt,745,1,0,,1,0 +11290,45595980,Manhattan,Upper East Side,40.769420000000004,-73.96614,Entire home/apt,140,30,5,0.15,12,0 +11291,45937698,Brooklyn,Greenpoint,40.726040000000005,-73.95536,Private room,35,1,9,0.2,1,0 +11292,45937956,Queens,Jackson Heights,40.75115,-73.8939,Entire home/apt,85,3,91,2.11,2,50 +11293,45941254,Manhattan,Murray Hill,40.7494,-73.97823000000001,Private room,111,1,4,0.09,1,0 +11294,18062807,Manhattan,SoHo,40.72613,-74.00825999999999,Entire home/apt,399,90,5,0.11,1,365 +11295,44620317,Queens,Corona,40.74049,-73.85606999999999,Shared room,40,1,39,0.87,4,351 +11296,45944532,Manhattan,Greenwich Village,40.73076,-73.99566999999999,Entire home/apt,300,1,0,,1,0 +11297,4277896,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95976,Private room,180,5,12,0.28,2,189 +11298,45951143,Manhattan,Chinatown,40.713190000000004,-73.99265,Private room,100,1,1,0.02,1,0 +11299,45955013,Brooklyn,Williamsburg,40.708940000000005,-73.94554000000001,Entire home/apt,150,2,198,4.48,1,92 +11300,29896455,Manhattan,Chinatown,40.7182,-73.99562,Private room,63,1,52,1.14,2,276 +11301,2972546,Manhattan,Washington Heights,40.84478,-73.94131999999999,Entire home/apt,175,1,1,0.02,1,0 +11302,2399157,Brooklyn,Bushwick,40.69911,-73.91601,Private room,84,3,17,0.38,1,0 +11303,45990565,Bronx,Morris Heights,40.85311,-73.90861,Private room,33,2,103,2.27,2,282 +11304,6408132,Brooklyn,Crown Heights,40.67553,-73.94195,Private room,50,5,1,0.02,1,35 +11305,4205149,Brooklyn,Crown Heights,40.67869,-73.95498,Private room,75,1,1,0.02,1,0 +11306,46004430,Manhattan,Kips Bay,40.74433,-73.97769,Private room,125,2,10,0.22,1,256 +11307,8822845,Brooklyn,Williamsburg,40.70353,-73.93482,Entire home/apt,140,7,16,0.49,1,1 +11308,44524700,Brooklyn,Sunset Park,40.64962,-74.0035,Entire home/apt,85,5,0,,1,0 +11309,40611169,Brooklyn,Carroll Gardens,40.67778,-73.9952,Entire home/apt,250,1,50,1.46,5,365 +11310,2774528,Brooklyn,Bushwick,40.70021,-73.92241,Private room,60,3,1,0.02,1,0 +11311,45408439,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95472,Private room,45,1,0,,1,0 +11312,4380547,Manhattan,East Village,40.73046,-73.98094,Entire home/apt,395,7,0,,1,0 +11313,5170691,Manhattan,Inwood,40.867290000000004,-73.92716,Entire home/apt,140,1,49,1.23,1,16 +11314,46039971,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,190,5,15,0.35,1,0 +11315,13456636,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92584000000001,Entire home/apt,91,2,166,3.66,1,38 +11316,46066063,Brooklyn,Bedford-Stuyvesant,40.6945,-73.93113000000001,Private room,40,4,34,0.75,2,105 +11317,12330542,Manhattan,Midtown,40.75417,-73.97279,Private room,135,1,0,,1,0 +11318,11918958,Brooklyn,Crown Heights,40.68003,-73.96123,Private room,50,1,0,,1,0 +11319,6672223,Queens,Astoria,40.761959999999995,-73.92399999999999,Entire home/apt,72,3,7,0.15,1,0 +11320,9138796,Brooklyn,Bedford-Stuyvesant,40.68967,-73.93381,Entire home/apt,130,3,115,2.83,1,49 +11321,46096478,Brooklyn,Prospect Heights,40.68078,-73.96816,Private room,90,1,6,0.13,1,0 +11322,4455698,Manhattan,Financial District,40.70867,-74.0003,Private room,100,15,2,0.06,3,313 +11323,37818581,Manhattan,East Harlem,40.80275,-73.93904,Private room,150,1,225,4.95,4,0 +11324,46105205,Manhattan,Chinatown,40.71591,-73.99488000000001,Private room,62,10,32,0.74,1,144 +11325,7512454,Manhattan,Hell's Kitchen,40.75902,-73.99112,Entire home/apt,100,7,5,0.11,1,0 +11326,37818581,Manhattan,East Harlem,40.80109,-73.93887,Private room,150,1,207,4.55,4,0 +11327,46112296,Manhattan,Harlem,40.81057,-73.94565,Entire home/apt,95,2,3,0.11,1,6 +11328,22159648,Brooklyn,Williamsburg,40.7057,-73.94258,Entire home/apt,170,1,8,0.19,2,0 +11329,14796247,Brooklyn,Flatbush,40.639759999999995,-73.96419,Private room,40,7,16,0.39,4,130 +11330,23582893,Brooklyn,Bushwick,40.69036,-73.91608000000001,Private room,54,9,23,0.53,8,135 +11331,26033344,Brooklyn,Bushwick,40.70438,-73.92116999999999,Private room,30,1,4,0.12,1,0 +11332,7650414,Manhattan,Harlem,40.80281,-73.94644,Entire home/apt,150,6,51,1.13,2,66 +11333,8115401,Manhattan,Midtown,40.75606,-73.97004,Entire home/apt,250,2,33,0.73,1,7 +11334,13318184,Brooklyn,Williamsburg,40.70548,-73.93698,Private room,50,1,1,0.02,4,0 +11335,496979,Brooklyn,Park Slope,40.674240000000005,-73.97717,Entire home/apt,120,1,1,0.02,1,0 +11336,3333577,Manhattan,Gramercy,40.73563,-73.98801,Entire home/apt,410,30,3,0.15,2,346 +11337,33899056,Brooklyn,Bushwick,40.696090000000005,-73.92369000000001,Entire home/apt,73,45,3,0.07,1,21 +11338,14914020,Manhattan,Chelsea,40.7442,-74.00123,Entire home/apt,250,1,1,0.02,1,0 +11339,30283594,Manhattan,Midtown,40.748670000000004,-73.96734000000001,Entire home/apt,1170,80,0,,121,365 +11340,7227499,Manhattan,West Village,40.73523,-74.00607,Entire home/apt,250,2,2,0.04,1,0 +11341,17074459,Manhattan,East Village,40.73128,-73.98595999999999,Private room,139,1,6,0.13,3,0 +11342,41865488,Manhattan,Lower East Side,40.712920000000004,-73.98496,Entire home/apt,149,5,11,0.28,1,0 +11343,4385138,Manhattan,Hell's Kitchen,40.7567,-73.99277,Entire home/apt,185,2,241,5.65,1,22 +11344,30350590,Manhattan,Theater District,40.762679999999996,-73.98406999999999,Private room,230,5,10,0.23,1,0 +11345,45850983,Manhattan,Hell's Kitchen,40.76455,-73.99297,Entire home/apt,175,1,49,1.11,1,4 +11346,10167933,Manhattan,Upper West Side,40.78481,-73.97414,Entire home/apt,150,2,1,0.02,1,0 +11347,4185064,Brooklyn,Williamsburg,40.715540000000004,-73.96246,Entire home/apt,325,1,264,5.85,2,47 +11348,46178050,Brooklyn,East New York,40.665859999999995,-73.89443,Shared room,100,4,0,,1,270 +11349,46182625,Manhattan,East Harlem,40.79333,-73.94274,Private room,50,1,0,,1,0 +11350,40236486,Manhattan,Washington Heights,40.84121,-73.93881,Entire home/apt,80,12,27,0.67,3,88 +11351,40800505,Brooklyn,Bedford-Stuyvesant,40.68691,-73.93294,Entire home/apt,135,28,29,0.65,1,268 +11352,4430927,Queens,Forest Hills,40.73122,-73.85302,Private room,32,60,3,0.08,1,0 +11353,24628477,Manhattan,Lower East Side,40.71963,-73.98499,Entire home/apt,261,4,196,4.3,1,125 +11354,1415417,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95688,Entire home/apt,60,3,0,,1,0 +11355,1418015,Brooklyn,Crown Heights,40.67722,-73.95305,Private room,57,2,91,2.06,4,228 +11356,46224845,Manhattan,East Harlem,40.8081,-73.93807,Entire home/apt,225,2,62,1.62,1,231 +11357,414999,Brooklyn,Greenpoint,40.72922,-73.95134,Entire home/apt,200,3,1,0.02,1,0 +11358,46230558,Queens,Glendale,40.70302,-73.89499,Private room,115,2,0,,1,0 +11359,46234202,Manhattan,Upper East Side,40.769,-73.9541,Entire home/apt,200,2,5,0.11,1,0 +11360,4087478,Manhattan,Lower East Side,40.72159,-73.99234,Entire home/apt,699,6,0,,1,0 +11361,40828217,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.93993,Private room,65,2,81,1.79,4,131 +11362,4703687,Brooklyn,Greenpoint,40.72311,-73.93819,Entire home/apt,150,2,1,0.02,2,0 +11363,41743945,Manhattan,Hell's Kitchen,40.76206,-73.9937,Entire home/apt,375,3,3,0.07,2,0 +11364,5172606,Manhattan,Upper West Side,40.78698,-73.97005,Entire home/apt,175,3,0,,1,0 +11365,1423123,Brooklyn,Bedford-Stuyvesant,40.69937,-73.94447,Private room,45,1,9,0.27,1,0 +11366,46289881,Manhattan,Upper West Side,40.79221,-73.96588,Entire home/apt,225,3,2,0.04,1,0 +11367,10595200,Manhattan,SoHo,40.72549,-74.00523000000001,Entire home/apt,165,10,31,0.71,1,55 +11368,46293809,Manhattan,Chelsea,40.743359999999996,-73.99706,Entire home/apt,250,1,0,,1,0 +11369,42621530,Brooklyn,Williamsburg,40.71097,-73.95886,Entire home/apt,1150,7,2,0.04,1,0 +11370,39556296,Brooklyn,Bedford-Stuyvesant,40.6802,-73.95768000000001,Entire home/apt,85,3,1,0.03,1,0 +11371,21332287,Brooklyn,Park Slope,40.67129,-73.98277,Entire home/apt,135,2,0,,1,0 +11372,5380471,Manhattan,East Harlem,40.79037,-73.9445,Entire home/apt,125,1,2,0.04,1,0 +11373,46305818,Staten Island,Shore Acres,40.60597,-74.06208000000001,Private room,300,1,0,,1,0 +11374,10261855,Brooklyn,Boerum Hill,40.68338,-73.98231,Entire home/apt,120,4,0,,1,0 +11375,4586937,Brooklyn,Williamsburg,40.706579999999995,-73.94413,Entire home/apt,100,1,2,0.05,1,0 +11376,3411058,Manhattan,Nolita,40.72337,-73.99574,Entire home/apt,179,3,26,0.58,1,6 +11377,4231636,Brooklyn,Bedford-Stuyvesant,40.68721,-73.94256999999999,Private room,50,3,4,0.09,1,0 +11378,14104350,Brooklyn,Bedford-Stuyvesant,40.68363,-73.94142,Entire home/apt,115,5,28,0.7,2,347 +11379,46314409,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93268,Entire home/apt,100,3,151,3.32,1,105 +11380,45232769,Queens,Astoria,40.76628,-73.91761,Private room,75,2,94,2.08,3,35 +11381,34738391,Brooklyn,Greenpoint,40.7308,-73.95394,Private room,60,1,4,0.09,1,0 +11382,21172422,Manhattan,Chelsea,40.74197,-74.00409,Entire home/apt,240,2,1,0.02,1,0 +11383,46322064,Manhattan,Harlem,40.81147,-73.9471,Entire home/apt,290,3,58,1.33,1,188 +11384,46323110,Brooklyn,Bushwick,40.69639,-73.91008000000001,Private room,56,5,76,1.74,2,68 +11385,46322730,Manhattan,Washington Heights,40.844440000000006,-73.9399,Private room,95,2,32,0.72,1,170 +11386,4035773,Manhattan,Harlem,40.80769,-73.95496999999999,Private room,70,1,76,1.78,1,293 +11387,15641304,Manhattan,East Harlem,40.79387,-73.94202,Entire home/apt,125,4,8,0.18,1,0 +11388,3285026,Manhattan,East Village,40.72704,-73.98783,Entire home/apt,195,1,4,0.09,1,0 +11389,46087238,Queens,Jamaica,40.68858,-73.78961,Private room,45,1,25,0.65,2,335 +11390,23521722,Manhattan,Hell's Kitchen,40.76767,-73.98783,Shared room,64,2,0,,1,0 +11391,46329096,Brooklyn,Flatbush,40.642720000000004,-73.95852,Private room,50,3,9,0.2,1,0 +11392,1818225,Brooklyn,Greenpoint,40.722120000000004,-73.9378,Entire home/apt,80,3,0,,1,0 +11393,6630815,Brooklyn,Bushwick,40.68769,-73.91377,Private room,55,2,197,4.46,2,21 +11394,21052756,Brooklyn,Cobble Hill,40.68561,-73.99571999999999,Entire home/apt,1000,5,1,0.02,1,0 +11395,46122430,Queens,Astoria,40.761140000000005,-73.91398000000001,Private room,42,60,1,0.02,1,0 +11396,39975694,Brooklyn,Williamsburg,40.70813,-73.95104,Private room,80,4,0,,1,0 +11397,10549906,Brooklyn,Clinton Hill,40.68313,-73.96165,Entire home/apt,105,1,54,1.19,1,365 +11398,23270872,Brooklyn,Bedford-Stuyvesant,40.685190000000006,-73.91494,Private room,45,3,11,0.24,1,66 +11399,46365876,Manhattan,East Village,40.73113,-73.98295,Entire home/apt,125,2,2,0.06,1,0 +11400,45601111,Queens,Laurelton,40.66943,-73.74778,Private room,45,2,85,1.99,5,333 +11401,46372931,Brooklyn,Clinton Hill,40.69096,-73.96051999999999,Private room,95,2,10,0.22,1,22 +11402,2232742,Brooklyn,Cobble Hill,40.68954,-73.99383,Entire home/apt,200,5,7,0.16,1,0 +11403,12838732,Manhattan,Gramercy,40.737429999999996,-73.98652,Entire home/apt,190,2,76,1.68,1,12 +11404,9933134,Manhattan,Harlem,40.80519,-73.94974,Entire home/apt,170,4,28,0.82,1,364 +11405,46388202,Brooklyn,Columbia St,40.6893,-74.00023,Entire home/apt,250,7,0,,1,0 +11406,46389507,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91141999999999,Private room,54,2,2,0.05,1,0 +11407,46395463,Manhattan,Midtown,40.755559999999996,-73.96817,Entire home/apt,150,1,3,0.07,1,0 +11408,27657527,Manhattan,East Village,40.72417,-73.98391,Entire home/apt,300,2,1,0.02,1,0 +11409,46397067,Brooklyn,Prospect Heights,40.673809999999996,-73.96495999999999,Private room,115,2,2,0.92,1,362 +11410,46401172,Manhattan,West Village,40.73458,-74.00808,Entire home/apt,225,1,83,1.9,1,344 +11411,46401675,Manhattan,East Harlem,40.7929,-73.94108,Private room,83,1,0,,1,0 +11412,45595980,Manhattan,Upper East Side,40.76941,-73.96694000000001,Entire home/apt,125,30,10,0.27,12,0 +11413,46404051,Manhattan,Midtown,40.76385,-73.98212,Entire home/apt,250,1,1,0.02,1,0 +11414,986623,Brooklyn,Greenpoint,40.722159999999995,-73.94255,Entire home/apt,129,3,93,2.1,1,0 +11415,1596626,Manhattan,Hell's Kitchen,40.76262,-73.98676999999999,Entire home/apt,135,2,115,2.56,1,19 +11416,3629010,Brooklyn,Williamsburg,40.71248,-73.96679,Entire home/apt,200,20,0,,1,0 +11417,2452616,Brooklyn,Greenpoint,40.73072,-73.95416,Entire home/apt,175,2,12,0.77,1,0 +11418,46414646,Queens,Long Island City,40.75085,-73.93743,Private room,55,3,6,0.13,1,0 +11419,7234603,Brooklyn,Williamsburg,40.70953,-73.92657,Private room,50,1,0,,1,0 +11420,18048584,Manhattan,East Village,40.72988,-73.98713000000001,Private room,125,1,2,0.05,1,0 +11421,9444795,Brooklyn,Brooklyn Heights,40.699329999999996,-73.99249,Entire home/apt,200,3,2,0.06,1,0 +11422,46420811,Brooklyn,Prospect-Lefferts Gardens,40.65631,-73.95535,Private room,40,10,12,0.28,1,343 +11423,45600001,Queens,Flushing,40.74651,-73.83195,Private room,50,1,71,1.57,3,83 +11424,1845920,Brooklyn,Williamsburg,40.70883,-73.94415,Private room,166,1,16,0.36,1,0 +11425,27240092,Manhattan,Gramercy,40.73557,-73.98353,Private room,124,1,118,2.7,1,278 +11426,46458011,Brooklyn,Bushwick,40.69497,-73.92598000000001,Private room,65,2,28,0.7,1,204 +11427,46399563,Manhattan,Inwood,40.866890000000005,-73.92224,Private room,57,1,6,0.13,1,1 +11428,18023496,Manhattan,Midtown,40.74382,-73.98798000000001,Private room,100,1,1,0.02,1,0 +11429,3758073,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9567,Private room,60,3,9,0.2,1,0 +11430,3441272,Brooklyn,Bushwick,40.69883,-73.93364,Private room,90,1,254,5.59,5,222 +11431,21366569,Manhattan,Hell's Kitchen,40.763740000000006,-73.99422,Private room,130,1,66,1.75,2,289 +11432,218425,Brooklyn,Park Slope,40.668479999999995,-73.98002,Entire home/apt,350,4,18,0.42,1,0 +11433,46476909,Brooklyn,Crown Heights,40.67052,-73.95621,Private room,60,2,1,0.02,1,0 +11434,26123839,Manhattan,East Village,40.72285,-73.98133,Private room,80,2,7,0.15,1,0 +11435,46481544,Brooklyn,Prospect-Lefferts Gardens,40.65874,-73.96108000000001,Entire home/apt,70,1,0,,1,0 +11436,46474221,Brooklyn,Bushwick,40.70554,-73.91934,Private room,41,7,0,,1,0 +11437,46482708,Queens,Maspeth,40.72582,-73.90549,Entire home/apt,100,3,74,1.63,1,321 +11438,14889425,Manhattan,East Village,40.72887,-73.98835,Entire home/apt,500,1,0,,1,53 +11439,46486441,Brooklyn,Bedford-Stuyvesant,40.68846,-73.95653,Entire home/apt,200,3,115,2.61,1,243 +11440,30426158,Manhattan,Hell's Kitchen,40.76285,-73.99159,Private room,120,6,17,0.38,2,0 +11441,43908809,Queens,Woodside,40.74968,-73.90333000000001,Private room,170,1,1,0.03,3,90 +11442,46501842,Brooklyn,Park Slope,40.67603,-73.98239000000001,Private room,42,15,3,0.07,1,0 +11443,36573037,Manhattan,Inwood,40.87157,-73.91744,Private room,50,1,38,0.85,2,344 +11444,11469296,Manhattan,Morningside Heights,40.80596,-73.96471,Entire home/apt,170,1,7,0.16,1,0 +11445,46509461,Manhattan,Little Italy,40.71855,-73.99791,Entire home/apt,189,1,168,3.71,1,347 +11446,10328631,Manhattan,Upper West Side,40.78671,-73.97825,Entire home/apt,150,2,11,0.24,1,0 +11447,7006490,Manhattan,East Village,40.72797,-73.97787,Private room,77,1,9,0.21,1,0 +11448,24297041,Brooklyn,Williamsburg,40.7069,-73.93754,Entire home/apt,150,1,0,,1,0 +11449,46323110,Brooklyn,Bushwick,40.6965,-73.91036,Private room,60,5,165,3.63,2,261 +11450,1020828,Manhattan,Hell's Kitchen,40.76392,-73.99514,Entire home/apt,150,1,1,0.03,1,0 +11451,46544348,Manhattan,Upper East Side,40.77688,-73.94686999999999,Entire home/apt,120,1,2,0.05,1,0 +11452,31067208,Manhattan,East Harlem,40.79714,-73.94023,Entire home/apt,85,1,2,0.05,1,0 +11453,3441272,Brooklyn,Bushwick,40.69699,-73.93387,Private room,85,1,270,5.94,5,227 +11454,2543296,Manhattan,Chelsea,40.743390000000005,-73.99414,Entire home/apt,450,6,2,0.05,1,0 +11455,46562860,Bronx,Longwood,40.82226,-73.88906,Private room,60,3,8,0.19,1,363 +11456,15433113,Manhattan,Harlem,40.805409999999995,-73.95198,Entire home/apt,95,2,5,0.11,1,0 +11457,3684360,Bronx,Norwood,40.87709,-73.88228000000001,Private room,38,1,50,1.1,4,267 +11458,46573375,Queens,Long Island City,40.752159999999996,-73.94099,Shared room,150,3,0,,1,0 +11459,46574350,Queens,Forest Hills,40.71372,-73.83693000000001,Entire home/apt,125,1,2,0.05,1,0 +11460,20367564,Manhattan,East Harlem,40.792120000000004,-73.95031999999999,Private room,125,2,1,0.02,1,0 +11461,46579560,Manhattan,Upper East Side,40.77837,-73.95318,Entire home/apt,130,5,0,,1,0 +11462,3989837,Brooklyn,Williamsburg,40.7074,-73.94063,Private room,59,3,59,1.3,2,119 +11463,9597041,Manhattan,Harlem,40.824940000000005,-73.943,Entire home/apt,65,2,32,0.73,1,16 +11464,9012184,Brooklyn,Williamsburg,40.72227,-73.95788,Entire home/apt,259,2,222,4.9,1,250 +11465,46537493,Manhattan,East Village,40.72822,-73.98128,Private room,90,3,0,,1,0 +11466,13951574,Manhattan,Harlem,40.81491,-73.94779,Private room,60,30,22,0.51,1,0 +11467,5109475,Brooklyn,Bushwick,40.70544,-73.91993000000001,Private room,95,2,20,0.45,2,191 +11468,2968774,Brooklyn,Crown Heights,40.66838,-73.95624000000001,Shared room,45,1,1,0.02,2,0 +11469,25688324,Manhattan,Upper West Side,40.777570000000004,-73.97932,Entire home/apt,133,3,38,0.89,1,2 +11470,46632551,Manhattan,Hell's Kitchen,40.75994,-73.98812,Entire home/apt,259,2,103,2.29,1,34 +11471,46632214,Brooklyn,Park Slope,40.6711,-73.9772,Entire home/apt,150,7,40,0.89,1,279 +11472,46650449,Brooklyn,Bushwick,40.69846,-73.91202,Private room,35,1,0,,1,0 +11473,15995278,Manhattan,Lower East Side,40.72189,-73.99186999999999,Entire home/apt,139,3,6,0.13,1,0 +11474,4262510,Manhattan,Morningside Heights,40.814170000000004,-73.9603,Private room,39,3,6,0.13,1,0 +11475,29823680,Brooklyn,Red Hook,40.67668,-74.00247,Entire home/apt,125,1,0,,1,0 +11476,36264739,Manhattan,Upper West Side,40.7941,-73.96314,Entire home/apt,434,5,1,0.05,1,0 +11477,46665505,Manhattan,East Village,40.721790000000006,-73.97951,Entire home/apt,500,2,0,,1,0 +11478,6818674,Brooklyn,Greenpoint,40.732620000000004,-73.95209,Entire home/apt,100,1,2,0.05,1,0 +11479,27502041,Queens,Sunnyside,40.74746,-73.91416,Entire home/apt,99,3,40,0.91,1,128 +11480,4077292,Brooklyn,Bushwick,40.69744,-73.90773,Private room,70,4,57,1.44,2,333 +11481,33834627,Manhattan,Nolita,40.72217,-73.99375,Entire home/apt,200,1,0,,1,0 +11482,46690777,Brooklyn,Crown Heights,40.67653,-73.93766,Private room,88,4,64,1.44,1,68 +11483,4824082,Brooklyn,Bedford-Stuyvesant,40.68112,-73.94409,Entire home/apt,115,1,0,,1,0 +11484,719497,Manhattan,Harlem,40.81425,-73.9516,Private room,75,3,0,,1,0 +11485,5641193,Brooklyn,Park Slope,40.66795,-73.98053,Entire home/apt,140,40,59,1.31,1,126 +11486,16877292,Manhattan,East Harlem,40.79207,-73.94196,Private room,80,1,16,1.15,2,345 +11487,12502512,Brooklyn,Bushwick,40.69451,-73.92397,Private room,44,1,1,0.02,1,0 +11488,30283594,Manhattan,Chelsea,40.742259999999995,-73.99608,Entire home/apt,269,30,0,,121,337 +11489,35430339,Brooklyn,Prospect Heights,40.6791,-73.97369,Entire home/apt,150,1,0,,1,0 +11490,6764705,Manhattan,West Village,40.7382,-74.00299,Entire home/apt,299,5,4,0.09,1,0 +11491,3538412,Brooklyn,Williamsburg,40.705729999999996,-73.92886999999999,Entire home/apt,195,4,85,1.93,1,63 +11492,46628999,Brooklyn,Williamsburg,40.71282,-73.95537,Entire home/apt,140,3,8,0.18,1,0 +11493,7918948,Manhattan,Hell's Kitchen,40.76263,-73.98909,Entire home/apt,180,1,1,0.02,1,0 +11494,45738364,Queens,Sunnyside,40.74153,-73.91806,Entire home/apt,84,2,0,,1,0 +11495,46741696,Queens,Woodside,40.74688,-73.90674,Private room,70,3,138,3.1,1,54 +11496,9864136,Brooklyn,Bushwick,40.68587,-73.91435,Private room,55,1,4,0.19,26,365 +11497,11659708,Brooklyn,Bedford-Stuyvesant,40.693490000000004,-73.94745999999999,Private room,65,5,1,0.02,1,0 +11498,9864136,Brooklyn,Bushwick,40.68591,-73.91344000000001,Private room,45,1,18,0.41,26,250 +11499,36821356,Brooklyn,Borough Park,40.62251,-73.99396999999999,Entire home/apt,96,14,93,2.06,1,73 +11500,2695451,Manhattan,SoHo,40.724759999999996,-74.00386999999999,Private room,82,1,228,5.11,2,28 +11501,5548597,Manhattan,Upper East Side,40.77162,-73.95808000000001,Entire home/apt,150,1,6,0.14,1,0 +11502,46778191,Brooklyn,Williamsburg,40.71454,-73.95894,Private room,125,3,1,0.02,1,0 +11503,30116009,Brooklyn,Sunset Park,40.6503,-74.00231,Entire home/apt,115,5,1,0.02,1,0 +11504,3736228,Manhattan,Chinatown,40.71719,-73.99109,Entire home/apt,145,30,60,1.38,1,15 +11505,46785121,Brooklyn,Greenpoint,40.720240000000004,-73.95483,Entire home/apt,169,1,22,2.59,1,39 +11506,46786142,Brooklyn,East Flatbush,40.65012,-73.94055999999999,Private room,75,1,15,0.33,1,355 +11507,46787065,Manhattan,Upper West Side,40.80356,-73.9698,Entire home/apt,100,7,2,0.05,1,0 +11508,31752474,Brooklyn,Prospect-Lefferts Gardens,40.66141,-73.9615,Entire home/apt,69,45,1,0.03,2,0 +11509,45416627,Queens,Astoria,40.76786,-73.92433,Private room,45,1,137,3.06,9,283 +11510,46794554,Queens,Ditmars Steinway,40.77987,-73.90309,Entire home/apt,75,7,0,,1,0 +11511,45416627,Queens,Astoria,40.76783,-73.92316,Private room,55,1,143,3.19,9,276 +11512,45416627,Queens,Astoria,40.76801,-73.92501,Private room,55,1,78,1.78,9,311 +11513,45416627,Queens,Astoria,40.76832,-73.92345999999999,Private room,48,1,150,3.39,9,323 +11514,45416627,Queens,Astoria,40.769420000000004,-73.92343000000001,Private room,50,1,99,2.21,9,341 +11515,20627781,Brooklyn,Greenpoint,40.72569,-73.95515,Private room,56,2,1,0.02,1,0 +11516,11546043,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.9607,Private room,65,28,13,0.3,3,319 +11517,46182242,Brooklyn,Sunset Park,40.644690000000004,-74.01035,Entire home/apt,140,2,74,1.65,1,2 +11518,46810144,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.95405,Private room,95,2,57,1.27,1,209 +11519,1317384,Manhattan,Harlem,40.82647,-73.94747,Private room,73,2,92,2.08,2,177 +11520,25492187,Manhattan,East Village,40.72566,-73.98323,Entire home/apt,230,1,0,,1,0 +11521,46846064,Manhattan,Roosevelt Island,40.76348,-73.94859,Entire home/apt,180,7,2,0.05,2,0 +11522,1610862,Brooklyn,Prospect Heights,40.67985,-73.96454,Private room,47,7,8,0.18,1,0 +11523,18655157,Manhattan,Midtown,40.74387,-73.98496,Shared room,55,5,5,0.12,3,0 +11524,2968774,Brooklyn,Crown Heights,40.667759999999994,-73.957,Entire home/apt,125,2,10,0.22,2,0 +11525,46848226,Queens,Astoria,40.7601,-73.91929,Private room,60,2,5,0.21,1,0 +11526,46851431,Manhattan,Murray Hill,40.74637,-73.97469,Entire home/apt,104,1,0,,1,0 +11527,321710,Brooklyn,Cobble Hill,40.68653,-73.99288,Entire home/apt,225,3,1,0.03,1,0 +11528,46881049,Brooklyn,Canarsie,40.64455,-73.90978,Entire home/apt,169,2,30,0.87,1,345 +11529,27974952,Brooklyn,East Flatbush,40.64595,-73.9504,Private room,45,30,7,0.15,7,124 +11530,12933114,Manhattan,East Village,40.72143,-73.97824,Entire home/apt,130,5,4,0.09,1,0 +11531,46888345,Brooklyn,Williamsburg,40.70666,-73.93788,Private room,53,3,1,0.02,1,0 +11532,806818,Brooklyn,Bedford-Stuyvesant,40.678509999999996,-73.92002,Entire home/apt,150,2,121,2.69,1,287 +11533,8595112,Manhattan,Midtown,40.755309999999994,-73.97147,Private room,140,1,13,0.29,2,0 +11534,1372837,Manhattan,Upper East Side,40.77595,-73.94969,Entire home/apt,295,4,0,,1,0 +11535,26271616,Manhattan,Upper West Side,40.80101,-73.96076,Private room,98,2,1,0.02,2,0 +11536,11458977,Brooklyn,Clinton Hill,40.68699,-73.9639,Entire home/apt,120,3,88,2.04,1,49 +11537,46815771,Manhattan,Midtown,40.75687,-73.96639,Entire home/apt,170,3,1,0.02,1,0 +11538,4154037,Manhattan,Harlem,40.82325,-73.94444,Private room,47,14,19,0.54,2,210 +11539,46901221,Brooklyn,Sheepshead Bay,40.5974,-73.96211,Entire home/apt,129,2,137,3.55,2,133 +11540,46901221,Brooklyn,Sheepshead Bay,40.59629,-73.96367,Entire home/apt,119,2,174,3.88,2,65 +11541,9903826,Brooklyn,Clinton Hill,40.687129999999996,-73.96226,Shared room,99,3,0,,1,0 +11542,3256202,Manhattan,Chelsea,40.74044,-74.00326,Entire home/apt,225,1,0,,1,0 +11543,4428757,Brooklyn,Crown Heights,40.6758,-73.93185,Private room,50,6,24,0.54,1,0 +11544,46941561,Manhattan,Upper East Side,40.760659999999994,-73.96372,Entire home/apt,100,20,16,0.6,1,49 +11545,27670390,Brooklyn,Fort Greene,40.69402,-73.97274,Private room,55,1,3,0.09,1,0 +11546,21293445,Brooklyn,Gowanus,40.66864,-73.99484,Private room,155,1,0,,1,0 +11547,46946480,Brooklyn,Williamsburg,40.71223,-73.94864,Entire home/apt,275,3,51,1.14,1,0 +11548,2948932,Brooklyn,Bushwick,40.69689,-73.93333,Private room,65,2,6,0.13,1,156 +11549,2932525,Brooklyn,Crown Heights,40.66352,-73.96005,Entire home/apt,170,3,28,0.62,1,0 +11550,46953097,Bronx,Concourse Village,40.82705,-73.91337,Private room,95,2,6,0.14,1,173 +11551,30283594,Manhattan,Chelsea,40.74569,-73.99183000000001,Entire home/apt,129,30,0,,121,164 +11552,15105912,Manhattan,Harlem,40.80473,-73.94763,Entire home/apt,175,3,186,4.12,1,187 +11553,30283594,Manhattan,Chelsea,40.74463,-73.9919,Entire home/apt,136,30,0,,121,349 +11554,46962156,Manhattan,Upper West Side,40.78172,-73.97825,Entire home/apt,190,1,0,,1,0 +11555,5485733,Brooklyn,Williamsburg,40.70862,-73.95432,Entire home/apt,150,2,19,0.42,1,0 +11556,9060143,Brooklyn,Bushwick,40.69502,-73.93126,Entire home/apt,75,3,6,0.15,1,0 +11557,8113248,Manhattan,Theater District,40.75935,-73.9875,Entire home/apt,590,1,0,,2,0 +11558,579126,Manhattan,Harlem,40.80307,-73.946,Entire home/apt,169,5,0,,1,0 +11559,40552516,Brooklyn,Bedford-Stuyvesant,40.6863,-73.92635,Private room,51,1,2,0.05,1,0 +11560,46973966,Manhattan,Harlem,40.80049,-73.95533,Entire home/apt,899,6,52,1.16,2,287 +11561,46976876,Manhattan,East Village,40.72477,-73.98836,Private room,90,7,0,,2,0 +11562,27974952,Brooklyn,East Flatbush,40.64601,-73.94886,Shared room,25,30,8,0.18,7,343 +11563,46979077,Queens,Elmhurst,40.74085,-73.89022,Private room,65,1,123,2.76,2,333 +11564,36889012,Brooklyn,Bedford-Stuyvesant,40.68003,-73.92094,Private room,42,1,122,2.84,4,340 +11565,12774739,Brooklyn,Bedford-Stuyvesant,40.68654,-73.95044,Private room,40,5,12,0.28,1,0 +11566,44929652,Brooklyn,East Flatbush,40.64335,-73.94888,Private room,60,2,9,0.21,4,361 +11567,4974196,Manhattan,Greenwich Village,40.72744,-73.99979,Entire home/apt,157,3,2,0.1,1,0 +11568,2599664,Manhattan,Lower East Side,40.7154,-73.98473,Entire home/apt,170,1,1,0.02,1,0 +11569,25077909,Brooklyn,Bedford-Stuyvesant,40.68915,-73.92466999999999,Private room,50,3,15,0.33,2,217 +11570,13813923,Queens,Long Island City,40.744170000000004,-73.94964,Private room,55,1,33,2.1,2,293 +11571,47013708,Brooklyn,Crown Heights,40.678670000000004,-73.96276,Private room,45,3,3,0.07,1,0 +11572,30283594,Manhattan,Chelsea,40.7449,-73.99167,Entire home/apt,109,30,1,0.03,121,184 +11573,47025665,Brooklyn,Bedford-Stuyvesant,40.68973,-73.93785,Entire home/apt,105,4,131,2.92,1,55 +11574,47022650,Manhattan,East Harlem,40.79405,-73.93429,Entire home/apt,150,1,48,1.07,3,326 +11575,31666407,Manhattan,Harlem,40.819990000000004,-73.93933,Private room,45,14,1,0.02,1,0 +11576,27974952,Brooklyn,East Flatbush,40.64517,-73.94843,Shared room,40,30,5,0.11,7,365 +11577,25344446,Brooklyn,Park Slope,40.67037,-73.97636999999999,Private room,105,5,32,0.71,2,312 +11578,45595980,Manhattan,Midtown,40.76135,-73.96706999999999,Entire home/apt,135,30,8,0.19,12,282 +11579,7324559,Manhattan,Lower East Side,40.71067,-73.98695,Private room,180,1,0,,1,0 +11580,31019553,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92576,Entire home/apt,150,1,1,0.02,1,0 +11581,8011670,Brooklyn,Bedford-Stuyvesant,40.68757,-73.93032,Entire home/apt,70,2,77,1.77,1,274 +11582,4048695,Brooklyn,Clinton Hill,40.68724,-73.96361,Entire home/apt,120,2,28,0.64,1,294 +11583,24622525,Manhattan,East Village,40.7268,-73.98026999999999,Private room,89,1,0,,1,0 +11584,36228511,Manhattan,East Village,40.72247,-73.98435,Private room,100,1,5,0.12,1,0 +11585,47076540,Manhattan,Morningside Heights,40.81111,-73.95465,Private room,125,1,27,2.87,1,80 +11586,24677080,Manhattan,Upper East Side,40.77762,-73.9516,Entire home/apt,170,1,190,4.36,1,260 +11587,8311526,Manhattan,Upper West Side,40.79807,-73.96894,Private room,80,1,1,0.02,1,0 +11588,47104818,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93228,Private room,249,3,5,0.45,3,360 +11589,7366091,Brooklyn,Williamsburg,40.716229999999996,-73.9579,Entire home/apt,350,3,4,0.09,1,0 +11590,2856748,Manhattan,Midtown,40.75251,-73.97261999999999,Entire home/apt,175,30,0,,49,365 +11591,8313697,Brooklyn,Park Slope,40.673,-73.98076,Private room,120,20,0,,1,365 +11592,2856748,Manhattan,Midtown,40.75759,-73.96902,Entire home/apt,230,30,0,,49,332 +11593,47113234,Brooklyn,Bushwick,40.69989,-73.92352,Private room,100,1,0,,1,0 +11594,410665,Manhattan,East Village,40.7232,-73.98561,Entire home/apt,139,3,11,0.25,1,0 +11595,4422465,Brooklyn,Bushwick,40.70288,-73.91506,Entire home/apt,89,4,5,0.12,1,2 +11596,7503643,Brooklyn,Greenpoint,40.72614,-73.94006999999999,Entire home/apt,159,30,6,0.15,52,343 +11597,30283594,Manhattan,Financial District,40.70726,-74.01429,Entire home/apt,229,30,0,,121,184 +11598,31680304,Brooklyn,Gravesend,40.58892,-73.97379000000001,Private room,70,3,67,1.53,2,40 +11599,4619655,Manhattan,Upper West Side,40.78487,-73.9754,Entire home/apt,125,1,0,,1,0 +11600,2266437,Manhattan,East Village,40.72314,-73.97929,Entire home/apt,200,5,10,0.26,1,0 +11601,30283594,Manhattan,Financial District,40.70776,-74.01514,Entire home/apt,169,30,2,0.05,121,364 +11602,19435113,Manhattan,West Village,40.731390000000005,-74.00452,Entire home/apt,175,1,0,,1,0 +11603,3754629,Manhattan,Lower East Side,40.71873,-73.98394,Entire home/apt,150,1,0,,1,0 +11604,24780521,Brooklyn,Greenpoint,40.72698,-73.94911,Private room,90,1,116,3.17,1,76 +11605,1584064,Manhattan,Harlem,40.80093,-73.95012,Entire home/apt,165,1,0,,2,0 +11606,47129484,Manhattan,Gramercy,40.73744,-73.98413000000001,Entire home/apt,305,3,175,3.89,1,132 +11607,3248277,Brooklyn,Williamsburg,40.70742,-73.94185,Entire home/apt,200,3,0,,1,0 +11608,46473604,Manhattan,Upper West Side,40.777390000000004,-73.98231,Entire home/apt,88,29,71,1.62,1,95 +11609,47139912,Manhattan,Upper East Side,40.77029,-73.95812,Entire home/apt,110,3,69,1.78,1,5 +11610,47140247,Queens,Bellerose,40.72756,-73.71795,Entire home/apt,42,3,0,,1,0 +11611,39763202,Brooklyn,Crown Heights,40.668690000000005,-73.96021999999999,Entire home/apt,150,2,11,0.24,1,0 +11612,7252221,Brooklyn,Flatbush,40.65061,-73.96125,Private room,50,27,6,0.14,2,0 +11613,15055897,Brooklyn,Clinton Hill,40.6921,-73.96603,Entire home/apt,125,3,3,0.08,2,0 +11614,45296989,Manhattan,Upper West Side,40.771879999999996,-73.98846999999999,Entire home/apt,125,7,4,0.1,1,0 +11615,254860,Manhattan,Chinatown,40.71434,-73.99342,Private room,80,4,1,0.02,1,0 +11616,47176167,Manhattan,Washington Heights,40.8512,-73.93693,Private room,75,1,0,,1,0 +11617,21716352,Manhattan,Kips Bay,40.74208,-73.98084,Entire home/apt,120,1,4,0.1,1,0 +11618,29213,Brooklyn,Fort Greene,40.68785,-73.97681999999999,Private room,79,7,1,0.02,1,0 +11619,47187008,Manhattan,East Village,40.72737,-73.98605,Private room,90,7,0,,1,0 +11620,6304221,Manhattan,SoHo,40.72038,-73.99818,Entire home/apt,190,2,10,0.97,1,41 +11621,30283594,Manhattan,Financial District,40.705740000000006,-74.00809,Entire home/apt,239,30,2,0.09,121,186 +11622,3331710,Manhattan,Greenwich Village,40.72874,-74.00121999999999,Entire home/apt,200,2,29,0.65,1,0 +11623,47198995,Staten Island,Grymes Hill,40.61201,-74.09513000000001,Entire home/apt,200,1,1,0.02,1,0 +11624,7380428,Manhattan,Harlem,40.81345,-73.94659,Entire home/apt,175,7,44,0.99,3,193 +11625,12995701,Manhattan,West Village,40.732079999999996,-74.00393000000001,Entire home/apt,200,4,1,0.02,1,0 +11626,47202400,Brooklyn,Bedford-Stuyvesant,40.678670000000004,-73.92282,Entire home/apt,130,3,129,2.93,1,163 +11627,21647215,Manhattan,East Harlem,40.79717,-73.93519,Entire home/apt,95,1,2,0.04,1,0 +11628,31153462,Manhattan,Lower East Side,40.721759999999996,-73.99345,Entire home/apt,140,7,3,0.07,1,0 +11629,2660650,Queens,Long Island City,40.74977,-73.93979,Private room,100,4,46,1.18,1,284 +11630,47212879,Manhattan,Inwood,40.86703,-73.93007,Private room,75,3,1,0.03,1,89 +11631,2413971,Manhattan,Harlem,40.80193,-73.95573,Private room,74,1,0,,1,0 +11632,47217135,Manhattan,Upper East Side,40.7737,-73.95616,Shared room,80,1,17,0.38,1,0 +11633,14456700,Brooklyn,Williamsburg,40.71594,-73.95991,Private room,60,2,1,0.52,1,0 +11634,47219962,Brooklyn,Prospect-Lefferts Gardens,40.662890000000004,-73.96175,Entire home/apt,125,2,125,2.79,2,229 +11635,7360880,Brooklyn,Bedford-Stuyvesant,40.685320000000004,-73.9571,Private room,80,1,2,0.05,1,0 +11636,1393469,Brooklyn,Flatbush,40.65228,-73.96428,Entire home/apt,97,2,22,0.54,1,2 +11637,7407846,Manhattan,Harlem,40.82642,-73.93668000000001,Private room,79,1,0,,1,0 +11638,22007415,Manhattan,East Village,40.72246,-73.97912,Private room,110,3,2,0.05,1,0 +11639,14544355,Brooklyn,Crown Heights,40.66588,-73.95676999999999,Entire home/apt,140,3,60,1.34,1,37 +11640,1283476,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94572,Private room,57,5,14,0.37,2,216 +11641,47228873,Manhattan,East Harlem,40.78972,-73.9503,Private room,195,1,0,,1,0 +11642,2856748,Manhattan,Theater District,40.75891,-73.9845,Entire home/apt,175,30,0,,49,333 +11643,10701169,Brooklyn,Crown Heights,40.67192,-73.95116,Private room,50,3,1,0.03,1,0 +11644,14614459,Manhattan,Upper East Side,40.7837,-73.94877,Entire home/apt,180,1,1,0.02,4,0 +11645,4087778,Queens,Sunnyside,40.745020000000004,-73.91355,Entire home/apt,180,3,0,,1,0 +11646,4186597,Manhattan,Harlem,40.80822,-73.94264,Entire home/apt,180,2,18,0.42,1,29 +11647,6075567,Brooklyn,Crown Heights,40.67089,-73.94825,Entire home/apt,100,2,13,0.31,1,0 +11648,21804910,Brooklyn,Greenpoint,40.73258,-73.95581999999999,Entire home/apt,175,2,21,1.4,1,38 +11649,8113248,Manhattan,Theater District,40.7594,-73.98634,Private room,210,3,0,,2,0 +11650,13530279,Manhattan,East Village,40.72517,-73.99023000000001,Private room,100,3,3,0.07,1,0 +11651,47275801,Brooklyn,Williamsburg,40.712559999999996,-73.95224,Entire home/apt,250,2,1,0.02,1,0 +11652,3819001,Brooklyn,South Slope,40.6647,-73.97791,Entire home/apt,55,3,0,,2,0 +11653,3040551,Brooklyn,Bushwick,40.69709,-73.91435,Private room,80,3,0,,1,0 +11654,4166175,Manhattan,Midtown,40.754540000000006,-73.97083,Entire home/apt,103,6,0,,1,0 +11655,1606152,Brooklyn,Williamsburg,40.70697,-73.94291,Entire home/apt,150,1,1,0.02,1,0 +11656,26379512,Queens,Long Island City,40.74495,-73.9557,Private room,90,3,34,1.02,1,3 +11657,17713747,Manhattan,Washington Heights,40.85479,-73.93313,Entire home/apt,150,5,6,0.14,3,37 +11658,47289872,Manhattan,Lower East Side,40.720040000000004,-73.99025999999999,Entire home/apt,190,1,2,0.05,1,0 +11659,6942997,Manhattan,Upper East Side,40.7834,-73.94556,Entire home/apt,95,2,0,,1,0 +11660,260958,Manhattan,Lower East Side,40.71334,-73.99025,Private room,75,1,91,2.07,3,0 +11661,8163703,Brooklyn,Williamsburg,40.712379999999996,-73.9559,Entire home/apt,150,3,12,0.28,1,0 +11662,47329500,Brooklyn,Bedford-Stuyvesant,40.67852,-73.94377,Private room,48,15,0,,1,0 +11663,7019923,Brooklyn,Clinton Hill,40.69161,-73.96571999999999,Private room,65,30,8,0.18,1,18 +11664,27974952,Brooklyn,East Flatbush,40.64509,-73.94825,Shared room,27,30,7,0.16,7,342 +11665,47219962,Brooklyn,Prospect-Lefferts Gardens,40.66086,-73.96159,Entire home/apt,150,2,123,2.74,2,263 +11666,42570179,Manhattan,Washington Heights,40.83559,-73.94552,Private room,75,2,53,1.18,1,0 +11667,1453898,Brooklyn,Williamsburg,40.712540000000004,-73.96849,Private room,80,2,38,0.89,3,0 +11668,3724325,Manhattan,East Village,40.72162,-73.97923,Entire home/apt,185,2,4,0.09,1,0 +11669,2123463,Brooklyn,Bushwick,40.69342,-73.91116,Private room,55,1,2,0.05,1,0 +11670,46019410,Brooklyn,Sheepshead Bay,40.596309999999995,-73.95743,Entire home/apt,98,2,12,0.27,1,320 +11671,47351539,Brooklyn,East Flatbush,40.65422,-73.93784000000001,Entire home/apt,165,1,232,5.18,4,231 +11672,47353889,Brooklyn,Prospect Heights,40.679390000000005,-73.97126,Private room,75,4,40,0.89,1,0 +11673,34398769,Manhattan,Upper East Side,40.76773,-73.95456,Entire home/apt,145,1,3,0.07,1,0 +11674,5671308,Manhattan,East Village,40.731640000000006,-73.98454,Entire home/apt,135,3,10,0.23,1,0 +11675,47394476,Queens,Astoria,40.76352,-73.91353000000001,Private room,50,2,1,0.02,1,0 +11676,47399155,Manhattan,Tribeca,40.720240000000004,-74.00865999999999,Private room,100,1,25,0.72,1,0 +11677,3829471,Brooklyn,Bedford-Stuyvesant,40.69045,-73.95852,Private room,100,6,0,,1,0 +11678,47403089,Manhattan,East Village,40.722809999999996,-73.97768,Entire home/apt,130,1,6,0.13,1,0 +11679,47406119,Manhattan,SoHo,40.72558,-74.00195,Private room,145,2,1,0.02,1,0 +11680,47407352,Manhattan,Inwood,40.86444,-73.92899,Private room,45,5,0,,1,0 +11681,552067,Brooklyn,Williamsburg,40.70994,-73.94915,Entire home/apt,120,7,9,0.21,1,0 +11682,47411697,Manhattan,Harlem,40.81185,-73.94579,Private room,90,2,67,1.54,1,211 +11683,47036828,Manhattan,East Village,40.732,-73.98518,Entire home/apt,190,1,0,,1,0 +11684,8093077,Manhattan,Upper East Side,40.76717,-73.95317,Entire home/apt,250,2,3,0.07,1,0 +11685,38738475,Brooklyn,Park Slope,40.670359999999995,-73.97776,Entire home/apt,90,5,1,0.02,1,0 +11686,47414802,Manhattan,Harlem,40.8035,-73.95105,Entire home/apt,165,120,7,0.22,2,139 +11687,4655737,Manhattan,East Village,40.72742,-73.98968,Entire home/apt,175,5,9,0.2,1,0 +11688,2653685,Brooklyn,Bedford-Stuyvesant,40.68282,-73.93289,Entire home/apt,120,2,74,1.65,1,333 +11689,47426195,Manhattan,Harlem,40.80891,-73.94113,Private room,85,1,3,0.07,1,0 +11690,23948552,Manhattan,Chinatown,40.71544,-73.99106,Private room,90,1,1,0.02,1,0 +11691,14356,Brooklyn,South Slope,40.66255,-73.983,Private room,70,6,9,0.21,1,0 +11692,47457325,Manhattan,Harlem,40.8239,-73.95393,Entire home/apt,110,3,1,0.02,1,0 +11693,30283594,Manhattan,Financial District,40.70535,-74.00672,Entire home/apt,239,30,0,,121,186 +11694,22251283,Manhattan,Hell's Kitchen,40.75633,-73.99439,Entire home/apt,125,30,8,0.3,4,56 +11695,30283594,Manhattan,Financial District,40.70358,-74.00824,Entire home/apt,239,30,0,,121,186 +11696,32848328,Brooklyn,Bushwick,40.70107,-73.91983,Private room,55,1,0,,1,0 +11697,29721928,Manhattan,West Village,40.73001,-74.00369,Entire home/apt,195,3,5,0.14,1,0 +11698,1692708,Brooklyn,Greenpoint,40.72782,-73.95459,Entire home/apt,150,14,0,,1,42 +11699,23338493,Manhattan,Chinatown,40.71665,-73.99633,Private room,104,3,65,1.46,1,0 +11700,4336010,Manhattan,East Village,40.72786,-73.98693,Private room,95,3,0,,1,0 +11701,42786873,Brooklyn,Bedford-Stuyvesant,40.6948,-73.94161,Private room,45,1,2,0.04,1,0 +11702,3664194,Manhattan,Upper East Side,40.78419,-73.94851,Entire home/apt,210,5,0,,1,0 +11703,30283594,Manhattan,Financial District,40.70415,-74.00688000000001,Entire home/apt,189,30,0,,121,365 +11704,16154600,Brooklyn,Kensington,40.64584,-73.97303000000001,Private room,40,4,1,0.02,1,0 +11705,4055295,Manhattan,Harlem,40.82673,-73.94995,Entire home/apt,100,2,17,0.39,1,0 +11706,301887,Manhattan,West Village,40.73658,-74.00121,Entire home/apt,295,4,2,0.05,1,0 +11707,6509584,Manhattan,Upper West Side,40.80059,-73.96552,Entire home/apt,75,1,123,2.89,1,80 +11708,45601111,Queens,Laurelton,40.67106,-73.74833000000001,Private room,34,2,71,1.72,5,282 +11709,2581079,Brooklyn,Bushwick,40.702459999999995,-73.91756,Entire home/apt,200,5,0,,1,0 +11710,19885346,Brooklyn,Williamsburg,40.70448,-73.94208,Private room,75,3,6,0.16,1,0 +11711,7486909,Manhattan,East Harlem,40.79311,-73.93928000000001,Entire home/apt,110,1,85,1.9,1,304 +11712,35905254,Manhattan,East Harlem,40.79423,-73.94214000000001,Private room,100,1,0,,1,0 +11713,2069753,Manhattan,East Village,40.730140000000006,-73.98019000000001,Entire home/apt,185,2,2,0.06,1,0 +11714,39916377,Manhattan,Upper East Side,40.76295,-73.95725,Entire home/apt,145,6,49,2.38,1,76 +11715,1202621,Manhattan,Upper West Side,40.78607,-73.97346999999999,Entire home/apt,250,7,34,0.78,1,147 +11716,47489718,Brooklyn,Bedford-Stuyvesant,40.685159999999996,-73.9533,Private room,55,2,0,,1,0 +11717,15175378,Brooklyn,Crown Heights,40.675940000000004,-73.94839,Entire home/apt,145,5,98,2.26,2,88 +11718,47493116,Manhattan,Harlem,40.8243,-73.94258,Entire home/apt,150,1,0,,1,0 +11719,7390259,Brooklyn,Williamsburg,40.71591,-73.95695,Private room,70,6,0,,1,0 +11720,47408505,Manhattan,Upper East Side,40.770379999999996,-73.95829,Entire home/apt,195,4,4,0.09,1,0 +11721,27012583,Manhattan,Midtown,40.7606,-73.97180999999999,Private room,86,1,3,0.07,1,0 +11722,47500192,Brooklyn,Prospect-Lefferts Gardens,40.66059,-73.95841999999999,Entire home/apt,120,5,0,,1,190 +11723,47501348,Brooklyn,Bushwick,40.698240000000006,-73.93231,Private room,60,1,0,,1,0 +11724,12690012,Manhattan,Harlem,40.83013,-73.94112,Private room,65,3,17,0.39,1,280 +11725,3883685,Manhattan,Upper West Side,40.78627,-73.97112,Entire home/apt,199,28,17,0.63,1,114 +11726,20318052,Brooklyn,Bedford-Stuyvesant,40.69587,-73.9453,Private room,55,2,67,1.72,2,110 +11727,8862886,Brooklyn,Bushwick,40.708420000000004,-73.9208,Entire home/apt,150,2,40,0.9,1,0 +11728,3922367,Brooklyn,Williamsburg,40.71617,-73.95395,Entire home/apt,165,4,0,,1,0 +11729,8503277,Manhattan,East Village,40.7281,-73.97952,Entire home/apt,100,5,3,0.07,1,0 +11730,46644337,Brooklyn,Bedford-Stuyvesant,40.68357,-73.94126,Entire home/apt,149,2,26,0.67,3,360 +11731,41510712,Manhattan,Harlem,40.82827,-73.9493,Private room,36,1,1,0.02,1,0 +11732,22420999,Queens,Richmond Hill,40.69417,-73.83072,Private room,50,2,3,0.08,5,346 +11733,7858210,Manhattan,Harlem,40.816140000000004,-73.94116,Private room,50,2,66,1.51,4,180 +11734,47541749,Manhattan,Midtown,40.758070000000004,-73.96308,Entire home/apt,300,1,0,,1,0 +11735,20233581,Manhattan,Kips Bay,40.73833,-73.98058,Private room,73,1,4,0.09,1,0 +11736,1519189,Brooklyn,Bedford-Stuyvesant,40.69342,-73.94322,Entire home/apt,100,15,3,0.07,2,211 +11737,19627702,Manhattan,Chelsea,40.743840000000006,-73.99383,Entire home/apt,193,1,8,0.23,1,0 +11738,47546771,Queens,Holliswood,40.72402,-73.76828,Private room,79,3,4,0.31,1,180 +11739,47549695,Brooklyn,Crown Heights,40.67846,-73.96242,Private room,60,4,2,0.05,1,0 +11740,17497762,Brooklyn,Bushwick,40.69836,-73.9212,Private room,60,3,1,0.02,1,0 +11741,47556575,Manhattan,Gramercy,40.7356,-73.99049000000001,Entire home/apt,159,1,188,4.19,1,157 +11742,9870919,Brooklyn,Williamsburg,40.71253,-73.96023000000001,Private room,75,4,2,0.04,1,0 +11743,6674503,Brooklyn,Clinton Hill,40.68567,-73.96271999999999,Entire home/apt,750,1,6,0.17,1,365 +11744,14829766,Manhattan,Upper East Side,40.775490000000005,-73.95196,Private room,235,1,2,0.04,1,0 +11745,30283594,Manhattan,Midtown,40.75242,-73.97187,Entire home/apt,139,30,0,,121,360 +11746,25459,Manhattan,Harlem,40.82711,-73.93989,Private room,41,1,124,2.78,2,37 +11747,7202402,Manhattan,Chinatown,40.713809999999995,-73.99784,Entire home/apt,220,2,93,2.48,2,293 +11748,3092054,Manhattan,Hell's Kitchen,40.766420000000004,-73.98621,Entire home/apt,120,360,0,,1,365 +11749,47584049,Manhattan,East Village,40.72524,-73.9882,Entire home/apt,180,4,5,0.11,1,0 +11750,44034234,Manhattan,Hell's Kitchen,40.75911,-73.98931999999999,Entire home/apt,185,6,10,0.23,1,0 +11751,15278522,Manhattan,East Village,40.724790000000006,-73.98849,Entire home/apt,225,2,1,0.02,1,0 +11752,4223044,Manhattan,Upper East Side,40.77012,-73.95777,Entire home/apt,200,1,0,,1,0 +11753,2264413,Brooklyn,Prospect-Lefferts Gardens,40.65838,-73.96048,Entire home/apt,150,2,9,0.21,1,6 +11754,47594947,Queens,Sunnyside,40.742709999999995,-73.92493,Private room,74,2,6,0.13,1,5 +11755,35322092,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92926,Private room,49,1,136,3.05,3,200 +11756,47621361,Manhattan,Chelsea,40.745259999999995,-73.99545,Private room,140,14,1,0.02,1,0 +11757,3025128,Manhattan,Upper West Side,40.77942,-73.97627,Entire home/apt,180,1,43,0.98,1,0 +11758,31980952,Brooklyn,Williamsburg,40.71076,-73.96328000000001,Private room,50,3,2,0.05,1,0 +11759,47621202,Queens,Jamaica,40.6673,-73.76831,Private room,47,1,629,14.58,2,333 +11760,2856748,Manhattan,Midtown,40.75687,-73.97321,Entire home/apt,245,30,1,0.03,49,331 +11761,835110,Brooklyn,Bedford-Stuyvesant,40.689840000000004,-73.92703,Entire home/apt,115,1,131,2.92,1,241 +11762,47627249,Brooklyn,Bushwick,40.69907,-73.92723000000001,Private room,50,7,1,0.02,1,0 +11763,403032,Bronx,City Island,40.84487,-73.78954,Entire home/apt,110,2,112,2.6,1,162 +11764,25344446,Brooklyn,Park Slope,40.67143,-73.97538,Private room,125,5,26,0.59,2,292 +11765,3201337,Manhattan,East Harlem,40.79779,-73.93648,Entire home/apt,150,3,90,2.11,2,37 +11766,47636934,Manhattan,Kips Bay,40.73975,-73.98073000000001,Entire home/apt,139,1,1,0.02,1,0 +11767,46561509,Brooklyn,Park Slope,40.67286,-73.97133000000001,Entire home/apt,220,1,0,,1,0 +11768,2119276,Manhattan,West Village,40.73533,-74.00378,Entire home/apt,150,30,10,0.39,39,241 +11769,22489244,Brooklyn,Williamsburg,40.7048,-73.94294000000001,Private room,79,2,78,1.91,1,58 +11770,8133069,Brooklyn,Williamsburg,40.70919,-73.94804,Entire home/apt,240,1,1,0.05,1,0 +11771,40880743,Brooklyn,Clinton Hill,40.68481,-73.9656,Entire home/apt,115,5,1,0.02,1,0 +11772,1443812,Brooklyn,Williamsburg,40.71083,-73.96401,Entire home/apt,120,3,184,4.1,2,262 +11773,4313126,Brooklyn,Bushwick,40.698440000000005,-73.9334,Entire home/apt,200,1,1,0.02,2,0 +11774,4313126,Brooklyn,Bushwick,40.69885,-73.93370999999999,Entire home/apt,200,10,1,0.02,2,0 +11775,9787825,Manhattan,Flatiron District,40.74283,-73.99246,Entire home/apt,150,7,1,0.04,1,0 +11776,46644337,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94038,Entire home/apt,165,2,53,1.24,3,289 +11777,47661247,Manhattan,East Village,40.72525,-73.98691,Private room,85,6,10,0.23,1,36 +11778,4900788,Manhattan,Chelsea,40.73868,-73.99647,Entire home/apt,130,2,4,0.1,1,0 +11779,47663806,Manhattan,Kips Bay,40.7427,-73.98231,Private room,85,1,1,0.02,1,0 +11780,43825074,Brooklyn,Cypress Hills,40.6845,-73.87706,Entire home/apt,90,3,82,1.83,3,351 +11781,47672492,Manhattan,Morningside Heights,40.80447,-73.96621,Private room,120,1,0,,1,0 +11782,914838,Manhattan,Hell's Kitchen,40.76321,-73.99297,Entire home/apt,70,20,2,0.06,7,341 +11783,16947579,Brooklyn,Bedford-Stuyvesant,40.68201,-73.93802,Private room,40,5,8,0.23,1,289 +11784,44087298,Manhattan,Washington Heights,40.846990000000005,-73.9362,Private room,55,7,24,0.54,2,0 +11785,17943391,Manhattan,Harlem,40.80843,-73.94125,Entire home/apt,130,2,210,4.73,2,237 +11786,47577737,Manhattan,Midtown,40.7662,-73.98321,Private room,60,3,1,0.03,1,0 +11787,47718277,Brooklyn,Bedford-Stuyvesant,40.68878,-73.93109,Private room,65,1,71,1.61,1,0 +11788,46973966,Manhattan,Harlem,40.79939,-73.9547,Entire home/apt,249,7,107,2.4,2,249 +11789,12986471,Brooklyn,Williamsburg,40.719840000000005,-73.9588,Private room,75,1,1,0.02,1,0 +11790,47731857,Manhattan,Chelsea,40.748090000000005,-73.99271999999999,Entire home/apt,500,2,2,0.05,1,0 +11791,47705853,Manhattan,Hell's Kitchen,40.75525,-73.99412,Entire home/apt,169,1,66,1.51,3,231 +11792,6615642,Brooklyn,Crown Heights,40.67342,-73.9561,Entire home/apt,300,4,0,,1,0 +11793,8167329,Manhattan,Hell's Kitchen,40.76236,-73.99261,Entire home/apt,95,1,6,0.14,1,0 +11794,706623,Brooklyn,Bushwick,40.69513,-73.90881,Private room,69,1,0,,4,334 +11795,12901128,Brooklyn,Brooklyn Heights,40.69927,-73.994,Private room,240,1,0,,1,0 +11796,47741973,Manhattan,Upper East Side,40.76935,-73.95381,Entire home/apt,120,3,1,0.02,1,0 +11797,10621862,Manhattan,Chelsea,40.74236,-74.00656,Entire home/apt,180,4,13,0.35,1,4 +11798,527811,Manhattan,Harlem,40.79724,-73.94968,Private room,80,1,200,4.51,1,58 +11799,47773961,Manhattan,East Village,40.72403,-73.97740999999999,Private room,90,4,72,1.62,1,63 +11800,16176030,Queens,Ditmars Steinway,40.77497,-73.91425,Entire home/apt,140,4,11,0.25,1,38 +11801,9859148,Manhattan,East Village,40.72603,-73.98614,Entire home/apt,200,1,1,0.02,1,0 +11802,872654,Manhattan,Chelsea,40.74406,-73.99287,Private room,139,1,3,0.07,1,0 +11803,8737065,Manhattan,Upper West Side,40.796440000000004,-73.96135,Entire home/apt,250,7,0,,1,0 +11804,31291159,Manhattan,Harlem,40.81686,-73.94129000000001,Private room,47,7,2,0.04,1,0 +11805,17615713,Brooklyn,Greenpoint,40.72697,-73.94712,Entire home/apt,108,7,19,0.43,1,21 +11806,47790612,Manhattan,Harlem,40.81344,-73.95007,Entire home/apt,85,1,0,,1,0 +11807,47790995,Queens,Queens Village,40.71846,-73.75584,Entire home/apt,75,5,85,1.9,1,332 +11808,46547144,Brooklyn,Williamsburg,40.70782,-73.95461999999999,Private room,60,1,2,0.05,1,0 +11809,6217827,Brooklyn,Greenpoint,40.730509999999995,-73.95496,Private room,80,2,2,0.05,1,0 +11810,36297318,Brooklyn,Bushwick,40.702690000000004,-73.92626,Private room,60,1,0,,1,0 +11811,1495355,Queens,Forest Hills,40.7232,-73.84425999999999,Private room,50,1,9,0.42,2,0 +11812,14340851,Manhattan,Financial District,40.704370000000004,-74.00952,Entire home/apt,120,2,0,,1,0 +11813,47825300,Manhattan,Upper West Side,40.77616,-73.98974,Private room,300,1,0,,1,0 +11814,3129612,Manhattan,Upper East Side,40.7605,-73.96053,Entire home/apt,275,30,4,0.09,1,253 +11815,47835171,Brooklyn,Park Slope,40.673840000000006,-73.97765,Private room,100,1,0,,1,0 +11816,34907341,Manhattan,Upper East Side,40.76579,-73.96168,Private room,65,2,24,0.54,1,0 +11817,47838741,Manhattan,Harlem,40.82411,-73.94404,Private room,65,5,2,0.05,1,159 +11818,26474885,Brooklyn,Clinton Hill,40.695170000000005,-73.96701999999999,Entire home/apt,350,3,0,,1,0 +11819,7897952,Brooklyn,Gowanus,40.676520000000004,-73.99682,Entire home/apt,132,1,1,0.02,1,0 +11820,40236486,Manhattan,Washington Heights,40.8398,-73.9385,Shared room,35,1,25,0.63,3,55 +11821,1459609,Manhattan,Greenwich Village,40.727959999999996,-74.00194,Entire home/apt,150,7,0,,1,0 +11822,13794250,Manhattan,Upper West Side,40.78107,-73.97816999999999,Private room,75,5,1,0.02,1,0 +11823,47860375,Manhattan,Chelsea,40.74188,-73.99865,Private room,100,1,2,0.05,1,0 +11824,39939246,Brooklyn,Clinton Hill,40.68363,-73.96305,Entire home/apt,89,3,3,0.07,1,0 +11825,47886371,Brooklyn,Midwood,40.62402,-73.97071,Private room,50,1,1,0.02,1,0 +11826,25798603,Manhattan,Midtown,40.76331,-73.97910999999999,Private room,300,3,0,,1,0 +11827,47893591,Manhattan,East Harlem,40.79804,-73.93127,Private room,50,13,0,,1,0 +11828,47903548,Manhattan,Midtown,40.75505,-73.96714,Entire home/apt,400,1,0,,1,0 +11829,36430529,Manhattan,Hell's Kitchen,40.75997,-73.99265,Entire home/apt,250,2,0,,1,0 +11830,43846246,Queens,Astoria,40.76547,-73.92079,Private room,70,1,0,,1,0 +11831,17634934,Manhattan,Upper East Side,40.78179,-73.947,Entire home/apt,135,1,0,,1,0 +11832,28570275,Manhattan,Chelsea,40.74799,-73.99993,Entire home/apt,450,2,9,0.23,1,0 +11833,47917120,Manhattan,East Harlem,40.78748,-73.95102,Entire home/apt,80,2,2,0.05,1,0 +11834,3311487,Brooklyn,Williamsburg,40.712920000000004,-73.96215,Private room,90,1,46,1.04,3,16 +11835,1651250,Brooklyn,Fort Greene,40.68766,-73.97837,Private room,100,1,1,0.03,2,0 +11836,19648898,Manhattan,Harlem,40.80542,-73.9455,Entire home/apt,90,3,1,0.03,1,0 +11837,881301,Brooklyn,Clinton Hill,40.68356,-73.96152,Entire home/apt,145,3,3,0.07,1,0 +11838,47932600,Queens,Rego Park,40.7303,-73.86674000000001,Entire home/apt,125,5,6,0.16,1,157 +11839,13318184,Brooklyn,Williamsburg,40.70521,-73.93623000000001,Private room,50,1,2,0.04,4,0 +11840,8838044,Brooklyn,South Slope,40.662490000000005,-73.98704000000001,Entire home/apt,150,3,34,0.77,1,0 +11841,20123860,Manhattan,East Village,40.72647,-73.98379,Private room,95,1,2,0.04,2,0 +11842,47672228,Brooklyn,Bushwick,40.69064,-73.921,Entire home/apt,125,1,9,0.21,1,0 +11843,12864943,Queens,Astoria,40.75855,-73.91020999999999,Entire home/apt,120,1,1,0.02,2,0 +11844,47952362,Manhattan,Upper East Side,40.77707,-73.94994,Entire home/apt,400,3,124,2.82,1,245 +11845,2807798,Manhattan,Harlem,40.82993,-73.9435,Entire home/apt,201,1,162,4.46,2,73 +11846,15565209,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95703,Private room,50,2,38,1.06,1,98 +11847,47985489,Manhattan,Hell's Kitchen,40.76018,-73.98916,Entire home/apt,199,2,5,0.11,1,0 +11848,8439782,Brooklyn,Williamsburg,40.71322,-73.95199000000001,Private room,49,5,0,,1,0 +11849,4031222,Manhattan,Upper West Side,40.77431,-73.97883,Entire home/apt,185,5,14,0.38,1,4 +11850,20956615,Brooklyn,Bedford-Stuyvesant,40.68698,-73.91861,Private room,85,1,8,0.19,1,364 +11851,45168846,Brooklyn,Flatbush,40.64631,-73.96258,Entire home/apt,89,1,0,,1,0 +11852,14667282,Brooklyn,Bedford-Stuyvesant,40.694359999999996,-73.93144000000001,Private room,100,1,0,,1,0 +11853,47989547,Brooklyn,Bushwick,40.69647,-73.92495,Private room,60,1,3,0.07,1,0 +11854,45595980,Manhattan,Midtown,40.7598,-73.96684,Entire home/apt,132,30,5,0.13,12,220 +11855,42528111,Brooklyn,Greenpoint,40.719640000000005,-73.94719,Entire home/apt,125,2,0,,1,0 +11856,47995413,Brooklyn,Flatbush,40.64873,-73.96419,Entire home/apt,100,1,10,0.23,1,0 +11857,43538528,Manhattan,Financial District,40.7092,-74.00699,Entire home/apt,175,5,0,,1,0 +11858,9419684,Manhattan,Hell's Kitchen,40.7602,-73.99868000000001,Entire home/apt,304,30,0,,3,176 +11859,48007438,Brooklyn,Bushwick,40.70198,-73.91571,Entire home/apt,95,1,0,,1,0 +11860,11013791,Brooklyn,Clinton Hill,40.68864,-73.96154,Entire home/apt,100,30,4,0.11,1,0 +11861,47743811,Manhattan,Hell's Kitchen,40.76416,-73.98807,Entire home/apt,300,2,8,0.18,1,181 +11862,17051015,Manhattan,Battery Park City,40.717040000000004,-74.0162,Entire home/apt,175,1,0,,1,0 +11863,17507097,Manhattan,Midtown,40.763709999999996,-73.98204,Entire home/apt,300,3,3,0.07,1,0 +11864,48016303,Queens,Astoria,40.75546,-73.91768,Private room,39,4,9,0.21,1,0 +11865,24272490,Manhattan,Midtown,40.75145,-73.97162,Entire home/apt,179,1,9,0.21,1,189 +11866,48017685,Queens,Flushing,40.7544,-73.82866,Shared room,20,3,3,0.07,1,0 +11867,4396038,Manhattan,Morningside Heights,40.80874,-73.9589,Entire home/apt,120,2,2,0.05,1,0 +11868,47052253,Manhattan,Lower East Side,40.71244,-73.98756,Private room,82,5,0,,1,0 +11869,20761853,Manhattan,Upper East Side,40.78167,-73.95004,Entire home/apt,170,1,137,3.06,2,289 +11870,2598539,Manhattan,Gramercy,40.73318,-73.98449000000001,Entire home/apt,120,1,206,4.64,1,278 +11871,14078910,Brooklyn,Carroll Gardens,40.68172,-73.99358000000001,Private room,75,2,42,0.96,1,0 +11872,39768761,Brooklyn,Bushwick,40.69813,-73.93433,Entire home/apt,110,2,50,1.15,1,0 +11873,23267314,Manhattan,Hell's Kitchen,40.754740000000005,-73.99835999999999,Entire home/apt,177,2,123,2.81,2,261 +11874,3335559,Manhattan,Midtown,40.76362,-73.97542,Private room,180,1,10,0.3,1,175 +11875,48055483,Queens,Middle Village,40.715270000000004,-73.89829,Private room,70,1,1,0.02,1,364 +11876,46631730,Manhattan,Greenwich Village,40.73297,-73.99217,Entire home/apt,325,2,9,0.21,1,0 +11877,48054322,Manhattan,Hell's Kitchen,40.76637,-73.98342,Private room,165,1,193,4.37,1,213 +11878,48057837,Brooklyn,Williamsburg,40.71914,-73.96477,Private room,75,1,2,0.05,1,0 +11879,48059119,Manhattan,Midtown,40.747840000000004,-73.9862,Private room,159,1,0,,3,365 +11880,20694807,Manhattan,Upper West Side,40.77912,-73.97976,Entire home/apt,150,6,1,0.02,1,0 +11881,11120994,Manhattan,Upper West Side,40.777409999999996,-73.97789,Entire home/apt,150,1,0,,1,0 +11882,30283594,Manhattan,Theater District,40.76063,-73.98577,Entire home/apt,230,30,0,,121,363 +11883,48059119,Manhattan,Midtown,40.74702,-73.98778,Private room,159,1,1,0.07,3,365 +11884,733282,Brooklyn,Carroll Gardens,40.68152,-73.99518,Entire home/apt,250,28,4,0.09,1,0 +11885,798653,Brooklyn,Williamsburg,40.7131,-73.94422,Entire home/apt,119,1,7,0.16,1,0 +11886,30283594,Manhattan,Theater District,40.758559999999996,-73.98221,Entire home/apt,239,30,0,,121,363 +11887,1941852,Brooklyn,Crown Heights,40.66965,-73.95517,Entire home/apt,80,1,17,0.38,1,0 +11888,3001268,Manhattan,Midtown,40.75261,-73.97063,Private room,99,1,0,,1,0 +11889,31537314,Manhattan,Upper West Side,40.80118,-73.96642,Entire home/apt,250,5,12,0.27,1,20 +11890,48078451,Brooklyn,Williamsburg,40.71673,-73.94193,Entire home/apt,125,3,93,2.69,1,23 +11891,902703,Brooklyn,Bushwick,40.69975,-73.92051,Entire home/apt,150,5,30,0.76,1,284 +11892,16865342,Brooklyn,Bushwick,40.704840000000004,-73.91942,Private room,50,3,71,1.85,2,2 +11893,12587611,Manhattan,East Village,40.72614,-73.98795,Entire home/apt,200,4,0,,1,0 +11894,48106825,Bronx,Pelham Gardens,40.866170000000004,-73.848,Private room,47,2,138,3.22,2,353 +11895,8996900,Brooklyn,Kensington,40.64735,-73.97610999999999,Entire home/apt,150,4,1,0.02,1,0 +11896,1974661,Manhattan,East Village,40.72788,-73.9869,Entire home/apt,299,1,177,4.05,1,91 +11897,3509166,Manhattan,Hell's Kitchen,40.76375,-73.98885,Entire home/apt,142,20,0,,1,0 +11898,12780893,Brooklyn,South Slope,40.66905,-73.9877,Entire home/apt,150,1,0,,1,0 +11899,7174662,Queens,Sunnyside,40.744609999999994,-73.92004,Private room,88,2,132,3.23,1,14 +11900,30637963,Manhattan,Upper West Side,40.79355,-73.96641,Private room,800,5,0,,1,0 +11901,48133396,Brooklyn,Crown Heights,40.66563,-73.96118,Entire home/apt,85,90,0,,1,0 +11902,9372538,Manhattan,Hell's Kitchen,40.76121,-73.98895,Private room,169,1,9,0.21,2,89 +11903,2801328,Brooklyn,Bedford-Stuyvesant,40.683,-73.93305,Entire home/apt,110,2,104,2.38,2,155 +11904,48148603,Brooklyn,Greenpoint,40.73469,-73.95778,Private room,60,1,1,0.02,1,0 +11905,2801328,Brooklyn,Bedford-Stuyvesant,40.68375,-73.93313,Entire home/apt,110,2,122,2.76,2,159 +11906,48161896,Manhattan,SoHo,40.72356,-74.00471999999999,Entire home/apt,78,5,2,0.08,1,0 +11907,48169083,Brooklyn,Bay Ridge,40.63066,-74.02577,Entire home/apt,110,1,0,,1,0 +11908,48170780,Brooklyn,Bedford-Stuyvesant,40.679359999999996,-73.93388,Private room,46,1,0,,1,0 +11909,48171900,Queens,Ditmars Steinway,40.77707,-73.91398000000001,Private room,80,1,2,0.05,1,0 +11910,2782391,Manhattan,Hell's Kitchen,40.76639,-73.98727,Entire home/apt,150,3,12,0.27,2,1 +11911,46323876,Manhattan,East Village,40.72765,-73.98199,Entire home/apt,199,2,1,0.02,1,0 +11912,25687571,Manhattan,East Village,40.72959,-73.98245,Entire home/apt,125,2,15,0.34,1,0 +11913,42047615,Manhattan,Nolita,40.72347,-73.99302,Entire home/apt,650,3,130,3.11,2,235 +11914,48183551,Queens,Elmhurst,40.74507,-73.88351999999999,Private room,58,6,76,1.75,5,279 +11915,1449710,Manhattan,East Village,40.72404,-73.98838,Entire home/apt,200,1,2,0.05,1,0 +11916,48190744,Manhattan,Gramercy,40.73438,-73.98615,Entire home/apt,145,21,0,,1,0 +11917,1747007,Brooklyn,Bedford-Stuyvesant,40.690290000000005,-73.95443,Entire home/apt,98,14,9,0.2,1,6 +11918,114649,Brooklyn,Crown Heights,40.66933,-73.9252,Private room,40,7,23,0.57,1,130 +11919,11526455,Manhattan,Hell's Kitchen,40.760459999999995,-73.9901,Private room,135,2,123,2.81,1,124 +11920,4835399,Manhattan,Kips Bay,40.74138,-73.98048,Entire home/apt,250,5,0,,1,0 +11921,5603037,Manhattan,Lower East Side,40.72014,-73.98277,Entire home/apt,250,13,9,0.21,1,44 +11922,11607339,Brooklyn,Park Slope,40.67815,-73.97878,Entire home/apt,130,2,4,0.09,1,0 +11923,26885466,Brooklyn,Midwood,40.61949,-73.95443,Private room,60,2,54,1.22,1,0 +11924,6640038,Manhattan,East Village,40.72789,-73.98756,Entire home/apt,350,3,0,,1,0 +11925,43963802,Manhattan,Harlem,40.8228,-73.94566999999999,Entire home/apt,465,3,46,1.22,2,325 +11926,48244550,Manhattan,Upper East Side,40.76405,-73.95966999999999,Entire home/apt,126,1,3,0.07,1,0 +11927,23429756,Manhattan,Upper East Side,40.776379999999996,-73.9476,Entire home/apt,215,1,0,,1,0 +11928,11797330,Manhattan,Upper East Side,40.783970000000004,-73.95040999999999,Entire home/apt,139,3,18,0.44,1,0 +11929,42064476,Manhattan,Upper East Side,40.77234,-73.96045,Entire home/apt,200,1,9,0.2,1,0 +11930,34734634,Manhattan,Upper West Side,40.791740000000004,-73.97755,Entire home/apt,200,6,0,,1,0 +11931,48264527,Manhattan,Upper West Side,40.77944,-73.98518,Entire home/apt,40,1,1,0.03,1,0 +11932,48264768,Brooklyn,Flatbush,40.64905,-73.96799,Private room,55,1,0,,1,0 +11933,48261452,Brooklyn,Bushwick,40.70686,-73.91960999999999,Entire home/apt,99,30,7,0.16,1,0 +11934,10646374,Brooklyn,Williamsburg,40.708009999999994,-73.94787,Private room,82,3,0,,1,0 +11935,4631581,Brooklyn,Cobble Hill,40.68805,-73.99634,Entire home/apt,185,2,3,0.07,1,0 +11936,3856750,Manhattan,East Village,40.72283,-73.98356,Private room,60,7,6,0.18,2,0 +11937,48277456,Manhattan,Chelsea,40.73936,-73.99351999999999,Entire home/apt,200,7,0,,1,0 +11938,48278499,Manhattan,Upper East Side,40.771609999999995,-73.95295,Entire home/apt,140,1,0,,1,0 +11939,1550888,Brooklyn,Bedford-Stuyvesant,40.680609999999994,-73.94996,Entire home/apt,94,30,3,0.08,3,355 +11940,15895218,Brooklyn,Carroll Gardens,40.68423,-73.98996,Entire home/apt,134,2,2,0.05,2,0 +11941,48287405,Brooklyn,Williamsburg,40.70644,-73.93759,Private room,60,1,0,,1,0 +11942,9226879,Manhattan,Midtown,40.75249,-73.97412,Private room,70,3,6,0.28,2,233 +11943,4865452,Manhattan,Lower East Side,40.71269,-73.98170999999999,Entire home/apt,200,1,1,0.02,1,0 +11944,31038604,Manhattan,Harlem,40.79912,-73.95204,Private room,90,2,66,1.5,1,0 +11945,1516920,Brooklyn,Greenpoint,40.73077,-73.95851,Entire home/apt,115,1,1,0.02,2,0 +11946,84320,Manhattan,Lower East Side,40.71692,-73.98259,Entire home/apt,245,10,6,0.14,1,0 +11947,21893700,Manhattan,East Village,40.72837,-73.98631,Entire home/apt,375,1,110,2.47,1,134 +11948,7065964,Brooklyn,Crown Heights,40.66722,-73.94800000000001,Entire home/apt,75,2,161,3.65,1,183 +11949,6655182,Manhattan,Lower East Side,40.71846,-73.98727,Private room,150,2,2,0.05,1,0 +11950,6930315,Bronx,Concourse,40.81897,-73.92735,Entire home/apt,159,1,0,,1,0 +11951,10387090,Brooklyn,Bedford-Stuyvesant,40.68244,-73.91091999999999,Private room,40,15,0,,5,342 +11952,1516920,Brooklyn,Greenpoint,40.73274,-73.95505,Private room,57,1,10,0.22,2,0 +11953,48345272,Manhattan,Tribeca,40.71474,-74.01101,Entire home/apt,425,5,1,0.02,1,0 +11954,15815555,Manhattan,West Village,40.7356,-74.00405,Entire home/apt,200,1,0,,1,0 +11955,48351548,Manhattan,Harlem,40.80157,-73.95407,Private room,65,1,11,0.25,1,0 +11956,1838431,Brooklyn,Greenpoint,40.734190000000005,-73.95264,Private room,65,15,1,0.03,1,0 +11957,48356150,Brooklyn,Bedford-Stuyvesant,40.68465,-73.91528000000001,Private room,75,14,3,0.13,1,0 +11958,31245408,Manhattan,East Harlem,40.792590000000004,-73.95170999999999,Private room,90,1,0,,1,0 +11959,30738895,Manhattan,East Village,40.72518,-73.98439,Private room,100,1,0,,1,0 +11960,48370995,Manhattan,NoHo,40.726240000000004,-73.99316999999999,Entire home/apt,100,1,8,0.19,1,0 +11961,48372942,Queens,Astoria,40.76354,-73.91789,Private room,77,2,1,0.07,1,364 +11962,9659504,Brooklyn,Williamsburg,40.71676,-73.94575,Entire home/apt,165,4,10,0.23,1,0 +11963,33377685,Manhattan,Hell's Kitchen,40.764359999999996,-73.98573,Entire home/apt,190,4,1,0.02,1,0 +11964,48402458,Manhattan,Chinatown,40.713770000000004,-73.99311,Entire home/apt,190,2,119,2.72,1,78 +11965,48410883,Brooklyn,South Slope,40.66641,-73.99078,Private room,45,3,7,0.16,2,0 +11966,2754405,Brooklyn,Bedford-Stuyvesant,40.69153,-73.94263000000001,Entire home/apt,72,30,11,0.26,1,251 +11967,43963802,Manhattan,Harlem,40.82287,-73.94561,Entire home/apt,230,3,52,1.33,2,325 +11968,11241615,Manhattan,East Harlem,40.79598,-73.94288,Entire home/apt,250,5,33,0.76,1,28 +11969,9226879,Manhattan,Midtown,40.75145,-73.9752,Entire home/apt,140,4,1,0.02,2,223 +11970,48423154,Brooklyn,Brighton Beach,40.57808,-73.96253,Entire home/apt,85,5,0,,1,0 +11971,28396398,Manhattan,East Village,40.72919,-73.98104000000001,Entire home/apt,99,30,0,,1,0 +11972,48427159,Manhattan,Lower East Side,40.7225,-73.9894,Entire home/apt,200,3,0,,1,0 +11973,20267329,Brooklyn,Prospect Heights,40.67263,-73.96437,Private room,99,2,3,0.07,1,0 +11974,1698259,Brooklyn,Williamsburg,40.711079999999995,-73.94799,Entire home/apt,140,7,31,0.72,1,209 +11975,17433287,Brooklyn,Williamsburg,40.717859999999995,-73.95588000000001,Entire home/apt,181,4,4,0.09,2,188 +11976,6894897,Brooklyn,Bedford-Stuyvesant,40.69122,-73.94377,Entire home/apt,165,2,166,3.76,1,8 +11977,48431029,Manhattan,Lower East Side,40.72201,-73.98775,Entire home/apt,175,3,14,1.86,1,51 +11978,45589955,Brooklyn,Crown Heights,40.67637,-73.95951,Entire home/apt,100,6,1,0.02,1,0 +11979,48356908,Brooklyn,Carroll Gardens,40.68047,-73.99594,Entire home/apt,209,1,178,4.47,1,228 +11980,48437907,Manhattan,Washington Heights,40.838190000000004,-73.94373,Private room,110,1,1,0.02,1,0 +11981,48442001,Brooklyn,Williamsburg,40.707229999999996,-73.94811,Private room,50,7,4,0.09,1,0 +11982,25402037,Manhattan,Washington Heights,40.84465,-73.93733,Entire home/apt,80,2,3,0.07,1,0 +11983,48249473,Bronx,Kingsbridge,40.87842,-73.9029,Private room,75,1,59,1.45,2,354 +11984,1423321,Manhattan,East Village,40.72695,-73.99011999999999,Entire home/apt,70,7,1,0.02,1,0 +11985,20592462,Manhattan,Upper East Side,40.77751,-73.9556,Entire home/apt,125,1,1,0.02,1,0 +11986,2716515,Queens,Astoria,40.7576,-73.9067,Entire home/apt,70,1,1,0.02,1,0 +11987,27962518,Queens,Elmhurst,40.73682,-73.875,Private room,180,1,0,,2,0 +11988,48471249,Brooklyn,Clinton Hill,40.693059999999996,-73.96813,Private room,100,2,7,0.19,1,310 +11989,1939202,Brooklyn,Park Slope,40.66675,-73.97570999999999,Entire home/apt,200,8,2,0.05,1,0 +11990,377783,Manhattan,Harlem,40.80786,-73.94313000000001,Entire home/apt,100,30,3,0.16,1,0 +11991,5549166,Manhattan,Upper West Side,40.7915,-73.97197,Private room,95,3,0,,1,0 +11992,350553,Manhattan,Harlem,40.81293,-73.95191,Entire home/apt,150,5,0,,2,0 +11993,22308430,Queens,Jackson Heights,40.75462,-73.88284,Entire home/apt,144,2,13,0.3,1,288 +11994,10406276,Brooklyn,Williamsburg,40.70491,-73.93098,Private room,42,3,0,,1,0 +11995,11824700,Manhattan,Lower East Side,40.715140000000005,-73.98293000000001,Private room,95,1,13,0.32,2,0 +11996,11824700,Manhattan,Lower East Side,40.71549,-73.9834,Entire home/apt,220,2,3,0.07,2,0 +11997,48492929,Manhattan,Kips Bay,40.74198,-73.9768,Private room,209,3,7,0.22,1,317 +11998,17433287,Brooklyn,Williamsburg,40.718959999999996,-73.95423000000001,Private room,118,3,5,0.16,2,0 +11999,16963843,Brooklyn,Bushwick,40.699020000000004,-73.92195,Private room,50,5,28,1.36,2,0 +12000,4429743,Brooklyn,Bedford-Stuyvesant,40.685340000000004,-73.95709000000001,Private room,95,1,0,,1,0 +12001,39333015,Manhattan,East Village,40.7228,-73.98352,Private room,85,1,1,0.02,1,0 +12002,48511336,Manhattan,Upper West Side,40.78479,-73.97521,Entire home/apt,200,5,5,0.12,1,0 +12003,3311487,Brooklyn,Williamsburg,40.71294,-73.96224000000001,Entire home/apt,161,2,21,0.48,3,2 +12004,6264251,Brooklyn,Williamsburg,40.71968,-73.9602,Entire home/apt,110,2,24,0.56,1,0 +12005,7992346,Manhattan,Midtown,40.752179999999996,-73.97216999999999,Entire home/apt,149,1,0,,1,0 +12006,3716641,Manhattan,Upper West Side,40.79273,-73.97216,Entire home/apt,104,30,5,0.13,8,156 +12007,5854655,Brooklyn,Williamsburg,40.71824,-73.95455,Entire home/apt,200,1,1,0.02,1,0 +12008,35489917,Brooklyn,Williamsburg,40.714009999999995,-73.96333,Private room,99,1,5,0.12,1,0 +12009,10621509,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91479,Entire home/apt,80,5,12,0.28,1,0 +12010,2539393,Manhattan,West Village,40.73486,-74.00386,Entire home/apt,400,1,3,0.08,1,0 +12011,13031745,Brooklyn,Williamsburg,40.7073,-73.94219,Entire home/apt,98,4,3,0.07,3,0 +12012,2953015,Brooklyn,Clinton Hill,40.69223,-73.96879,Private room,63,2,2,0.05,1,0 +12013,47784768,Brooklyn,Brownsville,40.66447,-73.91743000000001,Private room,69,2,75,1.73,2,249 +12014,48532777,Queens,Ditmars Steinway,40.776270000000004,-73.90963,Entire home/apt,89,1,16,0.45,1,36 +12015,48534909,Queens,Astoria,40.764829999999996,-73.91521999999999,Entire home/apt,99,4,4,0.09,1,0 +12016,33281828,Manhattan,Midtown,40.74966,-73.98781,Entire home/apt,140,4,2,0.05,1,0 +12017,10909829,Brooklyn,Bedford-Stuyvesant,40.68346,-73.93121,Entire home/apt,150,4,76,1.78,2,274 +12018,9038714,Brooklyn,Carroll Gardens,40.675779999999996,-73.99814,Entire home/apt,199,2,6,1.4,1,73 +12019,34654571,Manhattan,Financial District,40.71035,-74.01343,Entire home/apt,120,20,0,,1,0 +12020,23716267,Manhattan,Hell's Kitchen,40.75505,-73.99354,Entire home/apt,175,1,0,,1,0 +12021,19195540,Manhattan,Lower East Side,40.718059999999994,-73.99221999999999,Entire home/apt,300,3,25,0.58,3,0 +12022,1733622,Brooklyn,Crown Heights,40.67246,-73.93401,Private room,40,1,3,0.07,1,0 +12023,29988752,Brooklyn,Bushwick,40.7047,-73.92109,Private room,100,2,22,0.5,1,0 +12024,48576700,Brooklyn,Clinton Hill,40.69545,-73.96795999999999,Entire home/apt,170,2,127,2.9,2,236 +12025,48577772,Manhattan,East Village,40.72787,-73.98718000000001,Entire home/apt,120,8,6,0.14,1,0 +12026,820010,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94249,Private room,60,1,145,3.26,3,313 +12027,4983133,Manhattan,Harlem,40.82339,-73.95271,Entire home/apt,90,7,7,0.16,1,269 +12028,48582770,Manhattan,Inwood,40.86227,-73.92943000000001,Private room,60,5,1,0.02,1,0 +12029,812866,Manhattan,Battery Park City,40.70941,-74.01774,Entire home/apt,450,1,0,,1,0 +12030,48588586,Manhattan,Midtown,40.755109999999995,-73.96825,Private room,75,1,0,,1,0 +12031,24708016,Manhattan,Upper West Side,40.78228,-73.97748,Entire home/apt,170,3,11,0.31,1,0 +12032,22141007,Brooklyn,Prospect Heights,40.680479999999996,-73.97463,Private room,75,2,0,,1,0 +12033,48592068,Manhattan,Washington Heights,40.84864,-73.94046,Private room,75,1,0,,1,1 +12034,2376644,Brooklyn,Greenpoint,40.72741,-73.94337,Private room,80,2,0,,1,0 +12035,48593631,Brooklyn,Gowanus,40.67696,-73.99569,Entire home/apt,139,3,10,0.7,1,0 +12036,48593893,Manhattan,Midtown,40.75103,-73.98349,Entire home/apt,250,2,10,0.23,1,0 +12037,3843401,Manhattan,Chelsea,40.740970000000004,-73.99953000000001,Entire home/apt,150,1,1,0.02,1,0 +12038,258409,Brooklyn,Bushwick,40.701,-73.91593,Private room,90,3,6,0.32,1,0 +12039,10549294,Manhattan,Upper East Side,40.76999,-73.9477,Private room,55,4,14,0.33,1,8 +12040,48601058,Manhattan,NoHo,40.727109999999996,-73.99198,Entire home/apt,296,2,24,1.69,1,0 +12041,31668272,Manhattan,Little Italy,40.719,-73.99565,Entire home/apt,150,2,9,1.41,1,89 +12042,48603884,Bronx,Parkchester,40.83735,-73.85996999999999,Entire home/apt,139,3,30,0.69,1,357 +12043,24975940,Manhattan,Greenwich Village,40.73294,-73.99726,Private room,249,4,0,,2,0 +12044,22157668,Manhattan,Upper West Side,40.78074,-73.98393,Entire home/apt,250,5,0,,1,0 +12045,801176,Manhattan,Greenwich Village,40.72893,-74.00176,Entire home/apt,205,3,2,0.05,1,0 +12046,943095,Brooklyn,Bushwick,40.70267,-73.92923,Entire home/apt,90,2,2,0.07,1,0 +12047,27974952,Brooklyn,East Flatbush,40.646029999999996,-73.94869,Shared room,25,30,5,0.12,7,365 +12048,48618336,Queens,Astoria,40.76507,-73.90576999999999,Entire home/apt,65,30,32,0.72,1,67 +12049,6452596,Manhattan,Chinatown,40.71544,-73.99051999999999,Entire home/apt,250,2,1,0.02,1,0 +12050,46638648,Brooklyn,Bedford-Stuyvesant,40.68503,-73.93809,Entire home/apt,140,29,12,0.31,1,339 +12051,5993775,Manhattan,Upper East Side,40.775,-73.94842,Entire home/apt,110,3,4,0.09,1,0 +12052,32975805,Manhattan,Murray Hill,40.74961,-73.97846,Entire home/apt,200,2,0,,1,0 +12053,149430,Manhattan,East Harlem,40.7884,-73.94533,Entire home/apt,120,5,79,1.82,2,307 +12054,6337128,Brooklyn,Greenpoint,40.72096,-73.94574,Entire home/apt,120,4,0,,1,0 +12055,3289567,Manhattan,East Village,40.72502,-73.97835,Private room,110,2,2,0.06,2,188 +12056,48638439,Queens,Springfield Gardens,40.66203,-73.7698,Entire home/apt,200,30,68,1.66,2,365 +12057,1021134,Brooklyn,Williamsburg,40.7069,-73.96833000000001,Private room,60,2,1,0.03,1,0 +12058,48664130,Manhattan,Theater District,40.755720000000004,-73.98531,Entire home/apt,205,2,1,0.02,1,0 +12059,48578050,Brooklyn,Williamsburg,40.71439,-73.96256,Private room,50,7,4,0.11,1,0 +12060,7379511,Manhattan,East Village,40.72847,-73.98579000000001,Entire home/apt,183,1,1,0.02,1,0 +12061,27499750,Brooklyn,Williamsburg,40.70943,-73.94277,Entire home/apt,125,1,0,,1,0 +12062,822839,Brooklyn,Williamsburg,40.70704,-73.95522,Private room,70,2,47,1.1,1,54 +12063,48674244,Brooklyn,Sunset Park,40.662890000000004,-73.99584,Entire home/apt,90,14,7,0.16,1,0 +12064,8237570,Brooklyn,Williamsburg,40.71801,-73.9526,Entire home/apt,375,1,23,0.52,2,364 +12065,48677964,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.95069000000001,Private room,50,3,6,0.14,1,10 +12066,6991164,Manhattan,Upper East Side,40.76854,-73.95532,Private room,199,1,49,1.11,1,230 +12067,48627335,Manhattan,Kips Bay,40.737629999999996,-73.97284,Private room,130,1,0,,1,0 +12068,13838573,Manhattan,Midtown,40.74538,-73.98313,Entire home/apt,285,31,5,0.12,1,365 +12069,3388950,Brooklyn,Bedford-Stuyvesant,40.6947,-73.93481,Private room,72,4,100,2.34,6,113 +12070,23268312,Brooklyn,Prospect-Lefferts Gardens,40.65822,-73.95439,Private room,36,15,14,0.49,1,15 +12071,4769886,Brooklyn,Bushwick,40.69535,-73.9184,Private room,84,2,48,1.11,2,263 +12072,48695642,Manhattan,East Village,40.72314,-73.98066,Private room,100,1,1,0.02,1,0 +12073,48696992,Brooklyn,Bedford-Stuyvesant,40.68925,-73.94462,Private room,130,2,16,0.41,1,262 +12074,6753765,Manhattan,East Village,40.722190000000005,-73.98409000000001,Entire home/apt,285,4,1,0.02,3,0 +12075,47581480,Manhattan,SoHo,40.72667,-74.00256999999999,Entire home/apt,175,4,0,,1,0 +12076,15280538,Manhattan,East Harlem,40.78758,-73.95026,Entire home/apt,465,3,74,1.67,1,62 +12077,6487616,Manhattan,Nolita,40.72291,-73.9945,Entire home/apt,175,3,6,0.14,1,0 +12078,48712266,Brooklyn,Greenpoint,40.72528,-73.94488,Entire home/apt,165,5,201,4.7,2,212 +12079,16098958,Manhattan,Upper West Side,40.79312,-73.96606,Entire home/apt,156,30,1,0.1,96,252 +12080,16098958,Manhattan,Upper West Side,40.79155,-73.97476999999999,Entire home/apt,191,30,0,,96,341 +12081,9703540,Brooklyn,Williamsburg,40.70973,-73.94289,Entire home/apt,160,14,1,0.03,1,0 +12082,14847501,Manhattan,Hell's Kitchen,40.766459999999995,-73.9929,Entire home/apt,305,1,0,,2,0 +12083,47730499,Manhattan,East Village,40.72161,-73.98013,Entire home/apt,200,1,52,1.2,1,74 +12084,32812120,Brooklyn,Williamsburg,40.7196,-73.95956,Entire home/apt,260,3,4,0.11,2,0 +12085,14847501,Manhattan,Hell's Kitchen,40.76747,-73.99422,Private room,105,5,0,,2,0 +12086,46467513,Brooklyn,Gowanus,40.67017,-73.99029,Private room,85,1,0,,1,0 +12087,35899921,Manhattan,Harlem,40.81176,-73.94999,Entire home/apt,100,3,2,0.05,1,0 +12088,48723117,Brooklyn,Williamsburg,40.7116,-73.9521,Private room,79,4,0,,1,0 +12089,1557889,Manhattan,Hell's Kitchen,40.75925,-73.99136,Private room,120,5,125,2.83,2,177 +12090,48723057,Manhattan,East Village,40.72339,-73.9833,Entire home/apt,300,3,0,,1,0 +12091,38805180,Bronx,Mott Haven,40.8113,-73.92465,Private room,65,3,2,0.05,1,356 +12092,48726094,Manhattan,Chelsea,40.75088,-73.99951,Private room,100,2,151,3.46,1,0 +12093,3732336,Brooklyn,Clinton Hill,40.68215,-73.96121,Entire home/apt,127,1,7,0.16,1,0 +12094,36577517,Queens,Elmhurst,40.74449,-73.88096,Private room,49,2,21,0.48,2,311 +12095,26347594,Manhattan,Upper West Side,40.77772,-73.98514,Private room,108,1,11,0.25,1,0 +12096,48489264,Manhattan,Harlem,40.81443,-73.94121,Entire home/apt,121,30,0,,1,0 +12097,39694819,Manhattan,Chelsea,40.740809999999996,-74.00296,Entire home/apt,180,1,1,0.02,1,0 +12098,48757168,Brooklyn,Bedford-Stuyvesant,40.6869,-73.95496,Private room,34,5,34,0.77,1,7 +12099,10999333,Manhattan,Two Bridges,40.712709999999994,-73.99512,Entire home/apt,180,4,0,,1,0 +12100,24530091,Manhattan,Greenwich Village,40.73491,-73.99231,Entire home/apt,250,53,2,0.05,1,365 +12101,20475463,Brooklyn,Greenpoint,40.722640000000006,-73.93823,Entire home/apt,100,5,3,0.25,1,78 +12102,16098958,Manhattan,Upper West Side,40.79224,-73.97417,Entire home/apt,175,30,0,,96,265 +12103,16098958,Manhattan,Upper West Side,40.79285,-73.967,Entire home/apt,175,30,7,0.18,96,280 +12104,381669,Manhattan,East Village,40.730470000000004,-73.98576,Entire home/apt,190,4,10,0.23,1,0 +12105,2743716,Brooklyn,Sunset Park,40.64577,-74.00532,Entire home/apt,90,7,6,0.17,1,0 +12106,48771768,Manhattan,Hell's Kitchen,40.75735,-73.99006999999999,Entire home/apt,160,2,143,3.29,1,215 +12107,19059946,Manhattan,Upper West Side,40.79947,-73.964,Private room,51,1,1,0.02,1,0 +12108,3414967,Manhattan,Upper West Side,40.77668,-73.97815,Entire home/apt,150,1,1,0.02,1,0 +12109,48775347,Brooklyn,Fort Greene,40.68914,-73.97853,Entire home/apt,325,3,16,0.42,1,103 +12110,8712984,Brooklyn,Bushwick,40.708890000000004,-73.92135,Entire home/apt,99,3,9,0.23,1,42 +12111,48784045,Manhattan,Kips Bay,40.743790000000004,-73.97803,Private room,150,1,0,,2,0 +12112,31368679,Brooklyn,Williamsburg,40.71914,-73.95709000000001,Entire home/apt,280,1,13,0.3,1,363 +12113,48784879,Manhattan,East Harlem,40.79417,-73.94331,Entire home/apt,110,2,166,3.78,1,229 +12114,24338701,Brooklyn,Williamsburg,40.71787,-73.95396,Private room,100,5,0,,1,0 +12115,48790146,Brooklyn,Bedford-Stuyvesant,40.69182,-73.95696,Entire home/apt,125,2,127,2.92,1,126 +12116,1442864,Manhattan,Greenwich Village,40.72824,-73.99517,Entire home/apt,275,4,18,1.9,1,85 +12117,2370614,Brooklyn,Williamsburg,40.71133,-73.96924,Entire home/apt,308,2,22,0.55,1,109 +12118,1401316,Brooklyn,South Slope,40.66548,-73.98279000000001,Entire home/apt,200,4,3,0.07,1,0 +12119,47993495,Manhattan,East Harlem,40.79668,-73.93379,Private room,60,2,136,3.07,4,48 +12120,17234494,Manhattan,West Village,40.73319,-74.00225,Private room,65,1,2,0.05,1,0 +12121,7683847,Manhattan,Upper West Side,40.79632,-73.96879,Entire home/apt,110,1,0,,1,0 +12122,48249473,Bronx,Kingsbridge,40.879,-73.90061999999999,Entire home/apt,189,1,8,0.22,2,354 +12123,24244132,Manhattan,Roosevelt Island,40.76168,-73.95059,Private room,60,2,1,0.03,1,0 +12124,26926354,Manhattan,Hell's Kitchen,40.76534,-73.9925,Private room,90,5,0,,1,0 +12125,3337974,Brooklyn,Williamsburg,40.71605,-73.95176,Private room,65,3,1,0.02,1,0 +12126,492064,Brooklyn,Clinton Hill,40.682809999999996,-73.96446,Entire home/apt,128,2,37,0.84,1,0 +12127,1333485,Brooklyn,Windsor Terrace,40.6491,-73.97434,Entire home/apt,200,2,19,0.45,1,0 +12128,14435697,Brooklyn,Park Slope,40.67159,-73.97482,Entire home/apt,120,14,0,,1,0 +12129,48811662,Brooklyn,Prospect-Lefferts Gardens,40.65837,-73.96115,Private room,75,3,67,1.52,1,296 +12130,37169371,Manhattan,Inwood,40.85945,-73.92834,Entire home/apt,69,1,1,0.02,1,0 +12131,23850513,Manhattan,Morningside Heights,40.80887,-73.95917,Entire home/apt,120,5,3,0.07,1,0 +12132,14995329,Manhattan,Kips Bay,40.7435,-73.97907,Private room,95,1,1,0.02,1,0 +12133,48816743,Brooklyn,Bedford-Stuyvesant,40.69856,-73.94368,Entire home/apt,142,2,18,0.44,1,0 +12134,17764174,Manhattan,Inwood,40.87045,-73.9183,Entire home/apt,210,1,0,,1,365 +12135,43908809,Queens,Woodside,40.750659999999996,-73.90424,Private room,155,2,14,0.33,3,90 +12136,43864152,Manhattan,West Village,40.73129,-74.00237,Entire home/apt,300,2,3,0.08,1,0 +12137,31680304,Brooklyn,Gravesend,40.5888,-73.97278,Private room,70,3,46,1.05,2,92 +12138,48823036,Manhattan,Midtown,40.75452,-73.96767,Entire home/apt,180,1,156,3.58,1,22 +12139,48603189,Manhattan,Harlem,40.824020000000004,-73.9456,Private room,70,1,17,0.4,1,0 +12140,12154291,Manhattan,Gramercy,40.73537,-73.98244,Private room,95,1,1,0.03,1,0 +12141,248490,Brooklyn,Bedford-Stuyvesant,40.680409999999995,-73.93611999999999,Entire home/apt,100,3,83,1.9,2,224 +12142,48854322,Brooklyn,Bushwick,40.699940000000005,-73.92378000000001,Entire home/apt,129,5,89,2.02,2,72 +12143,12122228,Manhattan,Upper East Side,40.77557,-73.94615,Private room,62,30,0,,1,174 +12144,48861563,Manhattan,Washington Heights,40.84899,-73.94018,Private room,40,1,2,0.05,1,0 +12145,31985378,Brooklyn,Williamsburg,40.7158,-73.95586999999999,Private room,90,2,3,0.48,1,6 +12146,5753744,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.9588,Private room,42,1,1,0.03,2,0 +12147,12241602,Brooklyn,Bedford-Stuyvesant,40.691559999999996,-73.94275999999999,Entire home/apt,125,7,0,,1,0 +12148,32725953,Brooklyn,Williamsburg,40.7197,-73.95519,Entire home/apt,100,4,0,,1,0 +12149,48866651,Manhattan,Hell's Kitchen,40.76465,-73.99499,Entire home/apt,70,30,1,0.13,5,365 +12150,48870194,Brooklyn,Bushwick,40.70505,-73.92239000000001,Entire home/apt,108,2,4,0.09,1,0 +12151,23234988,Queens,Flushing,40.75114,-73.80695,Entire home/apt,500,2,20,0.85,6,243 +12152,47507350,Manhattan,Lower East Side,40.72278,-73.98878,Private room,115,1,0,,1,0 +12153,13129524,Manhattan,Upper West Side,40.78198,-73.97803,Entire home/apt,275,1,4,0.09,1,0 +12154,3100823,Brooklyn,Bushwick,40.703829999999996,-73.92853000000001,Private room,40,1,0,,1,0 +12155,1601345,Brooklyn,Williamsburg,40.71409,-73.96359,Entire home/apt,289,3,128,2.89,1,92 +12156,34236533,Brooklyn,Williamsburg,40.70851,-73.94244,Private room,130,5,102,2.48,1,288 +12157,26299995,Manhattan,East Harlem,40.79733,-73.93988,Private room,55,3,125,2.87,1,1 +12158,8012008,Manhattan,Kips Bay,40.74015,-73.98038000000001,Entire home/apt,125,2,0,,1,0 +12159,1241420,Manhattan,Harlem,40.81051,-73.94723,Entire home/apt,130,4,94,2.2,1,27 +12160,48899796,Brooklyn,Midwood,40.62186,-73.95347,Private room,60,2,62,1.45,2,107 +12161,48899736,Brooklyn,Boerum Hill,40.68632,-73.98796,Entire home/apt,99,1,140,3.2,1,363 +12162,10335025,Brooklyn,Bushwick,40.70254,-73.93095,Private room,50,5,12,0.27,1,0 +12163,35539248,Manhattan,East Village,40.72117,-73.98125999999999,Private room,78,25,0,,1,0 +12164,48904356,Manhattan,East Harlem,40.79335,-73.94583,Entire home/apt,150,1,1,0.02,1,0 +12165,16722827,Manhattan,Morningside Heights,40.80294,-73.96007,Private room,90,2,62,1.73,1,320 +12166,5037211,Brooklyn,Greenpoint,40.72104,-73.94805,Entire home/apt,275,5,77,1.89,2,6 +12167,48866651,Manhattan,Hell's Kitchen,40.76365,-73.99472,Entire home/apt,70,30,3,0.07,5,339 +12168,7117596,Brooklyn,Bedford-Stuyvesant,40.689640000000004,-73.94884,Private room,39,3,0,,1,0 +12169,4284267,Manhattan,Theater District,40.75732,-73.98276,Entire home/apt,185,3,177,4.16,1,216 +12170,48913242,Manhattan,Washington Heights,40.83907,-73.94256,Private room,49,2,0,,1,0 +12171,20496152,Brooklyn,Bushwick,40.69798,-73.93205999999999,Private room,69,1,30,0.8,1,0 +12172,48943908,Brooklyn,Clinton Hill,40.6846,-73.96536,Entire home/apt,330,2,84,2.03,1,327 +12173,15873085,Manhattan,Upper West Side,40.7894,-73.9762,Entire home/apt,110,5,0,,1,7 +12174,14266812,Manhattan,Upper East Side,40.77254,-73.9493,Entire home/apt,450,1,0,,1,0 +12175,29417940,Manhattan,Upper West Side,40.77813,-73.97574,Private room,150,2,2,0.05,2,0 +12176,48866651,Manhattan,Hell's Kitchen,40.75591,-73.99499,Entire home/apt,80,30,10,0.24,5,357 +12177,48866651,Manhattan,Hell's Kitchen,40.76376,-73.99323000000001,Entire home/apt,80,30,5,0.12,5,365 +12178,48949937,Manhattan,SoHo,40.72419,-74.00451,Entire home/apt,310,3,117,2.88,1,57 +12179,48866651,Manhattan,Hell's Kitchen,40.763729999999995,-73.99297,Entire home/apt,70,30,5,0.12,5,341 +12180,9703336,Manhattan,Chelsea,40.7411,-73.99978,Entire home/apt,325,1,2,0.05,1,0 +12181,7989399,Queens,Sunnyside,40.7388,-73.92501,Private room,65,3,13,0.58,2,167 +12182,48970186,Brooklyn,Carroll Gardens,40.68315,-73.99387,Entire home/apt,155,4,128,2.89,2,0 +12183,3718888,Brooklyn,Bushwick,40.68943,-73.90574000000001,Private room,45,1,2,0.05,1,0 +12184,25406270,Manhattan,Hell's Kitchen,40.76355,-73.98914,Entire home/apt,125,4,148,3.69,1,129 +12185,6630815,Brooklyn,Bushwick,40.68817,-73.91257,Private room,49,2,213,4.9,2,30 +12186,48977782,Manhattan,Washington Heights,40.851279999999996,-73.93907,Private room,150,1,0,,1,0 +12187,22953164,Brooklyn,Williamsburg,40.71028,-73.95445,Private room,80,2,4,0.09,1,0 +12188,34403316,Manhattan,East Harlem,40.793820000000004,-73.94334,Entire home/apt,145,1,152,3.43,1,200 +12189,5855145,Queens,Ditmars Steinway,40.77588,-73.90782,Entire home/apt,125,2,38,0.87,2,330 +12190,48983104,Queens,Middle Village,40.7206,-73.87382,Private room,60,1,95,2.22,3,80 +12191,23909946,Brooklyn,Bedford-Stuyvesant,40.68632,-73.91793,Private room,50,3,70,1.59,3,25 +12192,3784521,Bronx,Belmont,40.85487,-73.88710999999999,Private room,70,7,0,,1,0 +12193,48988714,Brooklyn,Williamsburg,40.71174,-73.95544,Entire home/apt,531,1,119,2.71,3,353 +12194,48320077,Manhattan,East Village,40.72443,-73.98289,Entire home/apt,199,1,81,1.91,2,318 +12195,8604689,Manhattan,Upper East Side,40.76892,-73.96845,Entire home/apt,214,3,151,3.58,1,219 +12196,49011283,Manhattan,Kips Bay,40.744040000000005,-73.97564,Entire home/apt,70,3,0,,1,0 +12197,7571483,Brooklyn,Crown Heights,40.669709999999995,-73.95645,Entire home/apt,105,4,1,0.03,1,0 +12198,49015331,Manhattan,Hell's Kitchen,40.76037,-73.99016,Entire home/apt,240,2,64,1.68,2,262 +12199,33368633,Queens,Forest Hills,40.72484,-73.84505,Entire home/apt,114,4,74,1.69,2,350 +12200,4052055,Manhattan,East Village,40.724000000000004,-73.98376,Private room,45,1,1,0.02,1,0 +12201,17263290,Manhattan,Harlem,40.82241,-73.9412,Private room,45,1,0,,1,0 +12202,49027658,Brooklyn,Greenpoint,40.733909999999995,-73.95679,Entire home/apt,143,1,0,,1,0 +12203,29408743,Brooklyn,Williamsburg,40.7121,-73.96101,Entire home/apt,145,10,18,0.43,1,157 +12204,11611066,Manhattan,Harlem,40.8096,-73.94099,Private room,90,1,0,,1,0 +12205,29518662,Brooklyn,Park Slope,40.68182,-73.97704,Private room,75,3,14,0.33,1,352 +12206,2611503,Manhattan,SoHo,40.72675,-74.00757,Private room,225,3,49,1.44,1,322 +12207,1374432,Manhattan,Upper West Side,40.78743,-73.96855,Entire home/apt,150,2,51,1.21,1,0 +12208,10240786,Brooklyn,Carroll Gardens,40.68177,-73.99393,Entire home/apt,150,1,1,0.02,1,0 +12209,5857948,Manhattan,Chelsea,40.74163,-74.00102,Entire home/apt,182,20,6,0.17,1,32 +12210,30942491,Manhattan,Morningside Heights,40.80473,-73.96528,Private room,62,20,0,,1,0 +12211,1607111,Brooklyn,Williamsburg,40.7075,-73.95385,Private room,65,6,3,0.07,1,0 +12212,42956813,Manhattan,Upper East Side,40.7713,-73.95443,Entire home/apt,175,1,15,0.35,1,0 +12213,48890727,Brooklyn,Carroll Gardens,40.679390000000005,-73.99598,Entire home/apt,525,4,11,0.28,1,159 +12214,15208048,Manhattan,Chelsea,40.74601,-73.99987,Private room,98,1,1,0.02,1,0 +12215,5776966,Manhattan,Gramercy,40.73683,-73.98191,Private room,61,3,21,0.47,1,16 +12216,33580313,Manhattan,Upper West Side,40.783390000000004,-73.98018,Entire home/apt,159,30,21,0.48,1,141 +12217,39981142,Queens,Maspeth,40.733290000000004,-73.89463,Private room,68,1,0,,1,0 +12218,15674613,Brooklyn,Bushwick,40.69395,-73.92418,Entire home/apt,69,10,11,0.27,1,226 +12219,1240958,Manhattan,East Harlem,40.78763,-73.95111,Private room,125,5,0,,1,0 +12220,48854322,Brooklyn,Bushwick,40.69979,-73.92260999999999,Entire home/apt,115,4,132,3.0,2,71 +12221,49082748,Manhattan,East Village,40.72911,-73.98151,Private room,85,14,99,2.32,1,21 +12222,49083612,Manhattan,Upper East Side,40.76656,-73.97038,Entire home/apt,209,1,116,2.63,1,168 +12223,49090209,Manhattan,Greenwich Village,40.72772,-74.0013,Entire home/apt,225,1,1,0.02,1,0 +12224,10208450,Manhattan,SoHo,40.72615,-74.00225,Entire home/apt,100,4,1,0.02,1,0 +12225,49099055,Brooklyn,Bushwick,40.68983,-73.90512,Private room,55,1,1,0.02,1,0 +12226,6240859,Brooklyn,Carroll Gardens,40.68535,-73.99192,Private room,80,2,11,0.27,1,0 +12227,13713658,Brooklyn,Williamsburg,40.7161,-73.94264,Private room,80,1,1,0.02,1,0 +12228,49101398,Brooklyn,Gravesend,40.59592,-73.97523000000001,Entire home/apt,85,30,9,0.21,3,216 +12229,43951918,Manhattan,Hell's Kitchen,40.75553,-73.9923,Entire home/apt,280,4,0,,1,0 +12230,49108001,Brooklyn,Bedford-Stuyvesant,40.68735,-73.94541,Entire home/apt,125,2,180,4.09,1,116 +12231,13034246,Brooklyn,Williamsburg,40.71642,-73.95298000000001,Private room,90,1,0,,1,0 +12232,3394386,Manhattan,Upper East Side,40.78113,-73.95452,Entire home/apt,175,1,1,0.02,1,0 +12233,1991700,Manhattan,Financial District,40.711240000000004,-74.00834,Entire home/apt,150,3,0,,1,0 +12234,49115124,Manhattan,East Village,40.72636,-73.98454,Entire home/apt,180,2,51,4.77,1,6 +12235,9721574,Manhattan,West Village,40.73338,-74.00752,Entire home/apt,250,1,0,,1,0 +12236,40503875,Queens,Astoria,40.75823,-73.90881,Private room,60,1,49,1.13,2,0 +12237,13859188,Brooklyn,Park Slope,40.66737,-73.97822,Entire home/apt,200,2,2,0.05,1,0 +12238,15145088,Manhattan,Upper West Side,40.78613,-73.9732,Entire home/apt,295,30,2,0.06,8,332 +12239,49118721,Manhattan,Washington Heights,40.85068,-73.93046,Private room,40,4,1,0.02,1,0 +12240,40947332,Manhattan,Upper West Side,40.77877,-73.97872,Entire home/apt,150,3,39,0.89,1,0 +12241,49120717,Manhattan,Harlem,40.82516,-73.95288000000001,Private room,40,1,1,0.02,1,0 +12242,22063782,Manhattan,East Village,40.72311,-73.98389,Entire home/apt,180,7,1,0.02,1,0 +12243,49123284,Manhattan,Two Bridges,40.71255,-73.99673,Entire home/apt,145,6,106,2.48,2,249 +12244,7530710,Brooklyn,Prospect Heights,40.67768,-73.97114,Entire home/apt,175,10,11,0.25,1,0 +12245,26748898,Manhattan,West Village,40.73431,-74.00635,Entire home/apt,275,3,4,0.11,1,0 +12246,8200337,Queens,Sunnyside,40.74538,-73.92139,Entire home/apt,115,2,6,0.18,1,0 +12247,1177400,Manhattan,Two Bridges,40.71183,-73.99685,Entire home/apt,175,4,3,0.08,1,0 +12248,49133999,Brooklyn,Clinton Hill,40.69585,-73.96344,Private room,65,60,0,,1,0 +12249,369154,Manhattan,Harlem,40.813190000000006,-73.94423,Entire home/apt,345,4,16,0.37,1,206 +12250,49158190,Manhattan,Chinatown,40.71564,-73.99169,Entire home/apt,150,1,3,0.07,1,0 +12251,13667539,Manhattan,East Village,40.72145,-73.97881,Private room,75,1,2,0.05,1,0 +12252,49160243,Manhattan,Hell's Kitchen,40.764720000000004,-73.98813,Entire home/apt,219,4,130,3.04,1,329 +12253,46142110,Brooklyn,Williamsburg,40.72182,-73.95576,Entire home/apt,300,3,0,,1,0 +12254,49164778,Manhattan,Harlem,40.81041,-73.9445,Entire home/apt,225,3,76,1.78,1,360 +12255,14565422,Manhattan,East Harlem,40.78591,-73.94832,Entire home/apt,275,2,95,2.51,2,248 +12256,49167739,Manhattan,Greenwich Village,40.72797,-74.0019,Entire home/apt,350,4,47,1.06,2,283 +12257,49167534,Manhattan,Upper East Side,40.77281,-73.95822,Entire home/apt,175,2,0,,1,0 +12258,49170998,Brooklyn,Bushwick,40.70138,-73.92168000000001,Private room,60,7,3,0.07,1,0 +12259,7526931,Brooklyn,Sunset Park,40.66214,-73.99223,Entire home/apt,350,4,0,,1,0 +12260,2448332,Brooklyn,Cobble Hill,40.69035,-73.99633,Entire home/apt,119,8,37,0.87,1,85 +12261,4515330,Manhattan,Upper West Side,40.7795,-73.98258,Entire home/apt,175,4,2,0.05,1,0 +12262,49177258,Brooklyn,Bedford-Stuyvesant,40.68282,-73.92934,Entire home/apt,335,2,21,0.53,1,304 +12263,1657540,Brooklyn,Bedford-Stuyvesant,40.68023,-73.94487,Private room,70,7,2,0.05,1,0 +12264,3848874,Brooklyn,Bushwick,40.70479,-73.92054,Entire home/apt,180,4,0,,1,0 +12265,49176019,Manhattan,Upper West Side,40.7996,-73.9621,Entire home/apt,299,4,114,2.62,1,282 +12266,49181430,Manhattan,East Harlem,40.79351,-73.93388,Entire home/apt,99,5,13,0.3,1,127 +12267,49186493,Manhattan,Washington Heights,40.84369,-73.93828,Entire home/apt,95,4,0,,1,0 +12268,26415140,Brooklyn,Williamsburg,40.71002,-73.94796,Private room,50,5,0,,1,0 +12269,49191712,Brooklyn,Bedford-Stuyvesant,40.69372,-73.94578,Entire home/apt,150,2,59,1.38,1,19 +12270,5658754,Manhattan,East Village,40.727759999999996,-73.98328000000001,Private room,655,3,1,0.02,1,0 +12271,47066108,Manhattan,Hell's Kitchen,40.76393,-73.99124,Private room,99,3,5,0.12,1,0 +12272,171213,Manhattan,Financial District,40.70864,-74.00675,Entire home/apt,250,1,0,,1,0 +12273,1335392,Brooklyn,Williamsburg,40.71584,-73.95868,Entire home/apt,450,2,0,,1,0 +12274,15441931,Manhattan,Harlem,40.80965,-73.94553,Entire home/apt,190,3,102,2.33,1,281 +12275,826493,Brooklyn,Crown Heights,40.67252,-73.96154,Private room,58,1,0,,1,0 +12276,49202910,Brooklyn,Greenpoint,40.72637,-73.94467,Private room,70,1,0,,1,0 +12277,1857387,Brooklyn,Williamsburg,40.7139,-73.94628,Private room,41,3,1,0.02,1,0 +12278,224009,Manhattan,East Harlem,40.794779999999996,-73.94178000000001,Entire home/apt,325,7,5,0.12,1,358 +12279,33058791,Brooklyn,Clinton Hill,40.6858,-73.96789,Entire home/apt,180,2,0,,1,0 +12280,45514903,Manhattan,Washington Heights,40.84687,-73.94228000000001,Entire home/apt,95,5,2,0.05,1,0 +12281,8920162,Manhattan,West Village,40.73302,-74.00585,Entire home/apt,500,1,0,,1,0 +12282,41066327,Manhattan,Chelsea,40.74603,-74.00147,Entire home/apt,160,4,2,0.05,1,0 +12283,42573050,Manhattan,Midtown,40.759029999999996,-73.96287,Entire home/apt,303,5,0,,1,0 +12284,1557889,Manhattan,Hell's Kitchen,40.75826,-73.98923,Entire home/apt,400,5,15,0.35,2,78 +12285,6515431,Brooklyn,Williamsburg,40.70564,-73.93646,Private room,46,1,2,0.05,1,0 +12286,8472477,Manhattan,West Village,40.73095,-74.00242,Entire home/apt,132,1,1,0.02,1,0 +12287,49220133,Manhattan,Harlem,40.81297,-73.93921999999999,Entire home/apt,125,3,0,,1,0 +12288,20160518,Brooklyn,East Flatbush,40.65343,-73.95175,Private room,50,3,0,,1,129 +12289,1850477,Brooklyn,Crown Heights,40.67797,-73.94675,Private room,45,3,0,,2,320 +12290,49245656,Manhattan,Harlem,40.80211,-73.94573000000001,Entire home/apt,165,5,42,0.97,1,281 +12291,31155262,Brooklyn,Williamsburg,40.71165,-73.94898,Private room,79,56,0,,1,0 +12292,19410959,Brooklyn,Bushwick,40.69914,-73.91471,Entire home/apt,215,3,0,,1,0 +12293,49255756,Brooklyn,Williamsburg,40.71848,-73.95817,Private room,80,7,11,0.25,1,0 +12294,7098925,Manhattan,Chelsea,40.75182,-73.99779000000001,Entire home/apt,150,5,1,0.02,1,0 +12295,338562,Brooklyn,Boerum Hill,40.6836,-73.98285,Private room,62,2,4,0.11,1,0 +12296,49260425,Brooklyn,Bushwick,40.695440000000005,-73.93221,Entire home/apt,68,3,1,0.03,1,0 +12297,37579015,Manhattan,Theater District,40.75598,-73.98796,Entire home/apt,300,5,7,0.16,5,82 +12298,49182321,Queens,Long Island City,40.752109999999995,-73.94082,Entire home/apt,149,5,4,0.14,1,0 +12299,3256433,Manhattan,Lower East Side,40.72292,-73.99306999999999,Entire home/apt,200,30,7,0.19,7,0 +12300,49268145,Brooklyn,South Slope,40.66872,-73.98648,Entire home/apt,275,2,2,0.05,1,0 +12301,43707936,Manhattan,Washington Heights,40.83279,-73.94174,Private room,110,2,0,,1,0 +12302,10039346,Brooklyn,Flatbush,40.62924,-73.96311,Entire home/apt,83,2,0,,1,0 +12303,5023498,Brooklyn,Crown Heights,40.67682,-73.96178,Entire home/apt,150,4,116,2.74,1,165 +12304,49275064,Manhattan,East Village,40.731609999999996,-73.9896,Entire home/apt,166,3,54,1.24,1,0 +12305,24767704,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93262,Entire home/apt,79,2,4,0.09,1,0 +12306,21366569,Manhattan,Hell's Kitchen,40.7638,-73.99298,Entire home/apt,220,5,49,1.15,2,251 +12307,49279577,Queens,Astoria,40.76737,-73.91244,Private room,70,2,26,0.75,1,128 +12308,240471,Brooklyn,Williamsburg,40.70766,-73.94739,Private room,60,3,6,0.14,2,188 +12309,49286334,Manhattan,Stuyvesant Town,40.73288,-73.97984,Private room,80,1,1,0.02,1,0 +12310,4110869,Manhattan,Harlem,40.82243,-73.95447,Private room,50,30,10,0.23,2,359 +12311,33136017,Brooklyn,Greenpoint,40.726890000000004,-73.94674,Entire home/apt,120,1,0,,1,0 +12312,20019653,Manhattan,East Village,40.72309,-73.98285,Private room,50,1,1,0.02,1,0 +12313,49293535,Manhattan,SoHo,40.72741,-74.00178000000001,Entire home/apt,185,3,2,0.05,1,0 +12314,49293531,Brooklyn,Bedford-Stuyvesant,40.68481,-73.92763000000001,Entire home/apt,320,80,0,,3,25 +12315,24295818,Brooklyn,Williamsburg,40.70968,-73.94575,Private room,45,10,0,,1,0 +12316,49293611,Bronx,Allerton,40.85753,-73.86605,Private room,85,7,9,0.25,1,364 +12317,49295995,Manhattan,Upper West Side,40.77685,-73.9771,Entire home/apt,300,30,5,0.12,1,263 +12318,48936457,Manhattan,East Village,40.725359999999995,-73.98252,Entire home/apt,199,7,36,0.84,1,164 +12319,2005639,Manhattan,Upper West Side,40.784620000000004,-73.97273,Entire home/apt,150,1,0,,1,0 +12320,5668894,Brooklyn,Greenpoint,40.72396,-73.95182,Private room,50,5,2,0.05,1,0 +12321,912101,Brooklyn,Prospect Heights,40.678059999999995,-73.96735,Entire home/apt,180,5,0,,1,0 +12322,16675838,Manhattan,Hell's Kitchen,40.76526,-73.99096,Entire home/apt,299,1,0,,1,0 +12323,38342237,Brooklyn,Williamsburg,40.70725,-73.94187,Private room,66,2,0,,1,0 +12324,49305338,Brooklyn,Fort Greene,40.68719,-73.97776999999999,Entire home/apt,410,1,0,,1,0 +12325,888939,Brooklyn,Boerum Hill,40.686440000000005,-73.9857,Entire home/apt,200,2,8,0.35,1,0 +12326,42597922,Brooklyn,Williamsburg,40.71171,-73.95704,Entire home/apt,149,1,87,1.99,1,151 +12327,42807409,Manhattan,Financial District,40.71002,-74.00723,Private room,98,3,0,,1,0 +12328,31248442,Manhattan,West Village,40.7347,-74.00784,Entire home/apt,150,2,1,0.07,1,0 +12329,3338222,Manhattan,West Village,40.73837,-74.00586,Entire home/apt,1200,6,1,0.16,1,290 +12330,14466771,Manhattan,Battery Park City,40.70702,-74.01675999999999,Entire home/apt,300,180,0,,1,0 +12331,34066586,Brooklyn,Williamsburg,40.705009999999994,-73.93738,Private room,55,14,0,,1,0 +12332,14391637,Manhattan,East Village,40.72286,-73.9834,Entire home/apt,200,1,3,0.07,1,0 +12333,1216362,Brooklyn,Prospect-Lefferts Gardens,40.65497,-73.96169,Entire home/apt,140,2,45,1.08,4,345 +12334,19733878,Brooklyn,Williamsburg,40.71018,-73.95488,Entire home/apt,110,3,4,0.11,1,0 +12335,39072477,Manhattan,Roosevelt Island,40.766890000000004,-73.94564,Private room,80,10,2,0.05,1,0 +12336,37606128,Manhattan,Harlem,40.80319,-73.95432,Private room,60,1,6,0.14,1,0 +12337,2787066,Manhattan,Chelsea,40.73945,-73.99616,Entire home/apt,126,4,8,0.18,1,0 +12338,49347979,Manhattan,Harlem,40.813759999999995,-73.95321,Private room,55,1,2,0.05,1,0 +12339,41094794,Manhattan,East Village,40.72826,-73.98871,Entire home/apt,325,3,2,0.05,1,0 +12340,8702561,Brooklyn,Fort Greene,40.69027,-73.97847,Entire home/apt,140,90,78,1.83,1,126 +12341,5341236,Brooklyn,Bushwick,40.69745,-73.92527,Private room,50,2,30,0.68,2,0 +12342,3906464,Manhattan,Lower East Side,40.71355,-73.98507,Private room,9999,99,6,0.14,1,83 +12343,49364392,Brooklyn,Fort Greene,40.69093,-73.97046,Entire home/apt,186,3,104,2.52,1,249 +12344,1461344,Brooklyn,Williamsburg,40.71218,-73.95766,Entire home/apt,245,3,20,0.46,1,128 +12345,43333475,Manhattan,Nolita,40.72132,-73.99708000000001,Private room,150,1,3,0.9,1,178 +12346,47993495,Manhattan,East Harlem,40.79735,-73.93386,Private room,99,2,80,1.83,4,158 +12347,49367316,Manhattan,Morningside Heights,40.80542,-73.9623,Entire home/apt,290,5,0,,1,0 +12348,21100276,Manhattan,Washington Heights,40.85617,-73.93141,Private room,43,4,70,1.61,1,0 +12349,47993495,Manhattan,East Harlem,40.79823,-73.9326,Private room,85,2,155,3.55,4,141 +12350,47993495,Manhattan,East Harlem,40.79886,-73.93373000000001,Private room,95,2,169,3.87,4,166 +12351,16098958,Manhattan,Upper West Side,40.76941,-73.98161999999999,Entire home/apt,180,30,1,0.02,96,280 +12352,4455698,Manhattan,Two Bridges,40.708890000000004,-73.99964,Private room,100,20,2,0.25,3,330 +12353,485349,Brooklyn,Crown Heights,40.67483,-73.94697,Private room,40,1,0,,1,0 +12354,49379520,Manhattan,Upper West Side,40.78572,-73.97036,Entire home/apt,129,1,0,,1,0 +12355,24120376,Brooklyn,Greenpoint,40.72484,-73.94306999999999,Entire home/apt,130,4,1,0.04,1,0 +12356,12260878,Queens,Astoria,40.75762,-73.9144,Entire home/apt,280,2,0,,1,0 +12357,12449641,Brooklyn,Bedford-Stuyvesant,40.682159999999996,-73.93178,Entire home/apt,165,10,0,,2,0 +12358,396819,Brooklyn,Prospect Heights,40.67413,-73.96497,Entire home/apt,100,3,4,0.13,1,0 +12359,49411357,Queens,Forest Hills,40.71425,-73.84503000000001,Entire home/apt,100,14,0,,1,0 +12360,49412548,Manhattan,Washington Heights,40.84335,-73.94059,Entire home/apt,85,1,28,0.65,1,27 +12361,2027404,Brooklyn,Carroll Gardens,40.680479999999996,-73.99379,Entire home/apt,160,7,46,1.06,1,254 +12362,6904334,Manhattan,Chelsea,40.74556,-74.00156,Private room,195,2,0,,1,0 +12363,55480,Queens,Long Island City,40.76227,-73.93034,Entire home/apt,150,1,0,,1,0 +12364,19698371,Brooklyn,Gowanus,40.680679999999995,-73.98186,Entire home/apt,63,5,2,0.05,1,0 +12365,11460541,Brooklyn,Prospect Heights,40.679390000000005,-73.96631,Entire home/apt,60,1,1,0.03,1,0 +12366,13262455,Manhattan,Upper East Side,40.7709,-73.95561,Private room,95,5,1,0.03,3,0 +12367,13778440,Manhattan,Washington Heights,40.85256,-73.93598,Private room,50,2,95,2.19,1,315 +12368,2966628,Brooklyn,Bedford-Stuyvesant,40.68795,-73.94173,Private room,59,1,2,0.05,1,0 +12369,48498097,Brooklyn,Williamsburg,40.71849,-73.95212,Entire home/apt,175,3,0,,1,0 +12370,10681247,Manhattan,East Village,40.7229,-73.98414,Entire home/apt,83,3,31,0.73,1,0 +12371,49413208,Brooklyn,Fort Hamilton,40.61605,-74.03641999999999,Entire home/apt,80,5,4,0.1,2,269 +12372,17888644,Manhattan,East Harlem,40.78987,-73.9482,Entire home/apt,200,2,39,1.14,1,19 +12373,49015331,Manhattan,Hell's Kitchen,40.76103,-73.99001,Entire home/apt,265,2,88,2.01,2,278 +12374,16098958,Manhattan,Theater District,40.76251,-73.98552,Entire home/apt,350,30,0,,96,327 +12375,22423049,Brooklyn,Crown Heights,40.67157,-73.94117,Private room,36,2,100,2.28,1,0 +12376,49431548,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95777,Private room,78,1,1,0.02,1,0 +12377,40316314,Manhattan,East Village,40.72363,-73.98234000000001,Private room,80,1,1,0.02,2,0 +12378,49435973,Brooklyn,Williamsburg,40.70665,-73.93529000000001,Entire home/apt,218,3,102,2.46,1,171 +12379,34000566,Brooklyn,Williamsburg,40.71069,-73.95283,Entire home/apt,95,2,0,,1,0 +12380,45595980,Manhattan,Upper East Side,40.76866,-73.96562,Entire home/apt,130,30,10,0.41,12,13 +12381,45595980,Manhattan,Upper East Side,40.76719,-73.96565,Entire home/apt,130,30,11,0.3,12,28 +12382,24337956,Brooklyn,Williamsburg,40.70714,-73.93611,Private room,51,1,1,0.02,1,0 +12383,5053976,Brooklyn,Bedford-Stuyvesant,40.690020000000004,-73.96002,Private room,45,12,2,0.05,3,281 +12384,21188854,Manhattan,Midtown,40.75553,-73.97251,Entire home/apt,200,2,0,,1,0 +12385,49451877,Manhattan,Midtown,40.763740000000006,-73.98089,Entire home/apt,350,2,2,0.05,1,0 +12386,24170584,Manhattan,Little Italy,40.72011,-73.99729,Entire home/apt,265,1,1,0.03,2,0 +12387,49455312,Manhattan,Upper West Side,40.77472,-73.98323,Entire home/apt,228,2,14,0.41,1,0 +12388,34691404,Manhattan,SoHo,40.72501,-74.00353,Private room,90,3,2,0.05,1,0 +12389,48983104,Queens,Middle Village,40.72058,-73.87493,Private room,60,2,72,1.68,3,81 +12390,48399349,Brooklyn,Downtown Brooklyn,40.69072,-73.99034,Entire home/apt,120,2,1,0.03,1,0 +12391,21787440,Manhattan,Washington Heights,40.84005,-73.93735,Private room,65,1,1,0.02,2,0 +12392,1459446,Brooklyn,Windsor Terrace,40.64801,-73.97561999999999,Private room,90,3,4,0.09,1,290 +12393,49349133,Manhattan,East Harlem,40.79665,-73.94824,Entire home/apt,225,2,31,0.7,1,160 +12394,23815371,Queens,Ditmars Steinway,40.78115,-73.90883000000001,Entire home/apt,103,1,126,3.2,1,245 +12395,41863600,Manhattan,East Village,40.73068,-73.98949,Entire home/apt,500,5,4,0.22,1,0 +12396,49485109,Brooklyn,Bushwick,40.70111,-73.92201999999999,Private room,62,6,18,0.51,1,4 +12397,49489331,Brooklyn,Crown Heights,40.665279999999996,-73.93293,Private room,45,2,1,0.02,1,0 +12398,608275,Manhattan,Greenwich Village,40.72704,-73.99954,Entire home/apt,300,3,1,0.02,1,0 +12399,49494701,Manhattan,Chelsea,40.74835,-74.00336,Entire home/apt,299,1,176,4.02,1,297 +12400,23854797,Manhattan,Lower East Side,40.72136,-73.98767,Private room,85,1,1,0.03,1,0 +12401,17493980,Manhattan,Financial District,40.711420000000004,-74.00535,Private room,80,30,0,,1,67 +12402,49502599,Manhattan,Upper East Side,40.76928,-73.96163,Private room,250,1,1,0.02,1,0 +12403,2316568,Manhattan,East Village,40.725640000000006,-73.98088,Private room,49,1,0,,1,0 +12404,253057,Brooklyn,Fort Greene,40.68965,-73.97169,Entire home/apt,220,55,10,0.23,1,0 +12405,49509847,Queens,Rego Park,40.724779999999996,-73.85579,Entire home/apt,109,3,88,2.49,1,357 +12406,49511227,Manhattan,Lower East Side,40.71582,-73.98812,Entire home/apt,300,2,60,1.36,2,118 +12407,7969836,Manhattan,SoHo,40.71927,-73.99943,Entire home/apt,300,2,4,0.09,1,0 +12408,48937383,Manhattan,Inwood,40.86458,-73.92883,Private room,90,1,0,,1,0 +12409,49513668,Manhattan,Financial District,40.71143,-74.00596,Entire home/apt,289,2,180,4.13,1,253 +12410,49514708,Queens,Jamaica,40.690090000000005,-73.79555,Private room,37,4,42,0.98,1,228 +12411,5532810,Brooklyn,Williamsburg,40.71731,-73.943,Private room,50,2,42,1.33,2,244 +12412,1401835,Brooklyn,Williamsburg,40.71032,-73.95482,Private room,75,3,17,0.49,3,355 +12413,43298076,Manhattan,Harlem,40.82292,-73.95373000000001,Private room,44,2,12,0.28,4,45 +12414,49482081,Brooklyn,Bedford-Stuyvesant,40.698859999999996,-73.94617,Private room,45,1,1,0.02,1,0 +12415,26787684,Brooklyn,Windsor Terrace,40.65863,-73.98435,Entire home/apt,120,2,0,,1,0 +12416,49561278,Manhattan,Lower East Side,40.71752,-73.99077,Entire home/apt,110,4,1,0.02,1,0 +12417,2699292,Brooklyn,Greenpoint,40.720659999999995,-73.95308,Entire home/apt,195,3,39,0.94,1,54 +12418,49566321,Manhattan,Hell's Kitchen,40.76515,-73.9847,Shared room,100,2,18,0.41,1,365 +12419,4025647,Brooklyn,Williamsburg,40.712590000000006,-73.96037,Entire home/apt,200,7,3,0.08,1,216 +12420,48966726,Brooklyn,Crown Heights,40.669959999999996,-73.94989,Entire home/apt,160,2,35,0.9,1,8 +12421,23254783,Brooklyn,Williamsburg,40.71219,-73.94826,Entire home/apt,115,3,43,1.03,1,0 +12422,7252221,Brooklyn,Flatbush,40.65221,-73.96289,Private room,55,14,5,0.24,2,21 +12423,43632142,Queens,Astoria,40.76275,-73.92052,Entire home/apt,150,3,0,,1,220 +12424,49570763,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95896,Entire home/apt,70,1,0,,1,0 +12425,1115741,Brooklyn,Crown Heights,40.67228,-73.9573,Entire home/apt,130,30,6,0.14,1,8 +12426,16417917,Manhattan,Morningside Heights,40.80774,-73.95703,Private room,100,2,17,0.39,1,0 +12427,69510,Manhattan,Chelsea,40.7465,-74.0036,Entire home/apt,375,3,0,,1,0 +12428,10619345,Brooklyn,Williamsburg,40.7157,-73.96011,Private room,49,1,1,0.02,1,0 +12429,21091779,Brooklyn,Bedford-Stuyvesant,40.686640000000004,-73.92318,Private room,49,1,113,2.89,3,288 +12430,49572701,Manhattan,Harlem,40.80948,-73.94739,Entire home/apt,245,3,69,1.61,1,226 +12431,4562182,Manhattan,Harlem,40.812459999999994,-73.94506,Entire home/apt,250,30,57,1.32,4,224 +12432,44620317,Queens,Corona,40.73703,-73.85861,Private room,55,2,33,0.75,4,280 +12433,49577355,Manhattan,West Village,40.74029,-74.00578,Entire home/apt,225,2,185,4.24,1,250 +12434,4451240,Manhattan,Morningside Heights,40.80536,-73.96228,Private room,68,14,1,0.02,1,0 +12435,1439333,Manhattan,West Village,40.738659999999996,-74.00063,Entire home/apt,220,6,79,1.9,1,81 +12436,3389541,Brooklyn,Crown Heights,40.67859,-73.96076,Private room,75,1,117,2.82,1,96 +12437,19510808,Manhattan,Murray Hill,40.74755,-73.98054,Entire home/apt,120,2,2,0.05,1,0 +12438,1407251,Brooklyn,Gowanus,40.67924,-73.98718000000001,Entire home/apt,129,1,120,2.73,2,275 +12439,2335786,Manhattan,Upper East Side,40.77919,-73.94733000000001,Entire home/apt,199,4,10,0.26,1,0 +12440,49511227,Manhattan,Chinatown,40.71668,-73.98954,Private room,92,1,120,2.74,2,0 +12441,20510488,Brooklyn,Prospect Heights,40.677479999999996,-73.96469,Entire home/apt,185,5,0,,1,0 +12442,49287218,Manhattan,Hell's Kitchen,40.76661,-73.98439,Entire home/apt,179,2,27,0.63,1,8 +12443,49592958,Manhattan,Gramercy,40.73684,-73.98194000000001,Private room,80,1,0,,1,0 +12444,45632792,Manhattan,Kips Bay,40.742309999999996,-73.97697,Private room,80,1,2,0.05,2,0 +12445,49616729,Manhattan,Chelsea,40.75164,-74.00146,Entire home/apt,100,2,5,0.12,1,0 +12446,397900,Brooklyn,Kensington,40.63984,-73.97197,Entire home/apt,225,4,0,,1,0 +12447,27065592,Brooklyn,Clinton Hill,40.684020000000004,-73.96094000000001,Private room,60,1,2,0.05,1,0 +12448,47933513,Manhattan,Upper East Side,40.780390000000004,-73.95863,Entire home/apt,166,2,8,0.39,1,3 +12449,4739974,Brooklyn,Bushwick,40.70641,-73.92158,Private room,70,4,0,,1,0 +12450,6697886,Manhattan,Harlem,40.81613,-73.94546,Private room,63,1,0,,2,0 +12451,49630478,Manhattan,Upper East Side,40.78007,-73.94677,Entire home/apt,115,4,1,0.02,1,0 +12452,9910378,Brooklyn,Bushwick,40.69276,-73.92493,Private room,65,14,0,,1,0 +12453,10061428,Brooklyn,Bushwick,40.69911,-73.92441,Private room,55,1,6,0.14,1,0 +12454,21086012,Brooklyn,Bedford-Stuyvesant,40.69422,-73.94615999999999,Private room,76,1,4,0.09,1,0 +12455,6312670,Manhattan,Nolita,40.72097,-73.99605,Entire home/apt,140,20,1,0.02,1,0 +12456,49383811,Manhattan,Midtown,40.75435,-73.96729,Entire home/apt,150,1,142,3.52,1,58 +12457,49641082,Manhattan,Harlem,40.81872,-73.94491,Private room,39,1,0,,1,0 +12458,49645950,Manhattan,SoHo,40.72546,-74.00036,Entire home/apt,450,3,12,0.28,2,3 +12459,34503055,Brooklyn,Clinton Hill,40.68275,-73.96705,Entire home/apt,105,14,9,0.21,1,285 +12460,49649740,Manhattan,Harlem,40.81026,-73.95279000000001,Private room,80,5,0,,1,0 +12461,12982906,Brooklyn,Fort Greene,40.69338,-73.97322,Entire home/apt,110,3,19,0.44,3,0 +12462,49651648,Manhattan,Harlem,40.80196,-73.95260999999999,Private room,75,1,0,,1,0 +12463,10651357,Manhattan,SoHo,40.72468,-74.00746,Entire home/apt,450,3,2,0.05,1,0 +12464,49661200,Manhattan,Harlem,40.82458,-73.95038000000001,Entire home/apt,150,1,287,6.57,1,198 +12465,4397614,Brooklyn,Park Slope,40.678090000000005,-73.97324,Entire home/apt,125,1,0,,1,0 +12466,49662115,Manhattan,Midtown,40.74606,-73.98688,Private room,125,3,0,,1,0 +12467,33906084,Brooklyn,Williamsburg,40.7171,-73.95273,Entire home/apt,80,4,1,0.02,1,0 +12468,37058836,Manhattan,East Harlem,40.796820000000004,-73.94876,Entire home/apt,260,1,1,0.02,1,0 +12469,4931159,Manhattan,Upper West Side,40.7924,-73.97265,Entire home/apt,85,4,17,0.55,1,0 +12470,47705853,Manhattan,Hell's Kitchen,40.75452,-73.99266999999999,Private room,199,2,93,2.14,3,232 +12471,21498793,Brooklyn,Crown Heights,40.67726,-73.95928,Entire home/apt,135,3,21,0.56,1,15 +12472,49671297,Queens,Ridgewood,40.707770000000004,-73.898,Entire home/apt,100,3,27,0.63,1,107 +12473,47705853,Manhattan,Hell's Kitchen,40.754290000000005,-73.99198,Private room,99,2,5,0.11,3,252 +12474,32379616,Bronx,Williamsbridge,40.88165,-73.85625,Private room,34,5,17,0.4,2,313 +12475,2736439,Queens,Maspeth,40.71382,-73.91282,Entire home/apt,89,3,54,1.26,1,331 +12476,37450458,Brooklyn,Bedford-Stuyvesant,40.68125,-73.91272,Private room,77,1,118,2.74,2,216 +12477,24951732,Brooklyn,South Slope,40.66519,-73.98264,Entire home/apt,350,2,0,,1,0 +12478,11491789,Brooklyn,Williamsburg,40.707209999999996,-73.93956999999999,Entire home/apt,190,4,64,1.54,1,159 +12479,47710992,Brooklyn,Bushwick,40.70831,-73.92095,Entire home/apt,115,2,9,0.27,1,1 +12480,23193,Brooklyn,Bedford-Stuyvesant,40.68777,-73.9387,Private room,40,2,5,0.12,4,87 +12481,6725302,Manhattan,Hell's Kitchen,40.76769,-73.988,Entire home/apt,200,2,0,,1,0 +12482,2513586,Manhattan,Upper East Side,40.78495,-73.9503,Entire home/apt,135,7,1,0.02,1,0 +12483,49709755,Brooklyn,Greenpoint,40.723040000000005,-73.95239000000001,Entire home/apt,135,1,0,,1,0 +12484,36380016,Manhattan,Midtown,40.7532,-73.96710999999999,Entire home/apt,99,1,7,0.16,1,0 +12485,46222477,Manhattan,SoHo,40.7261,-74.00281,Entire home/apt,145,2,61,1.4,1,0 +12486,6590142,Manhattan,Financial District,40.70835,-74.00702,Entire home/apt,349,2,5,0.13,1,0 +12487,45100854,Manhattan,East Village,40.72401,-73.98061,Private room,75,5,4,0.09,2,0 +12488,2816129,Brooklyn,Greenpoint,40.719840000000005,-73.95385999999999,Entire home/apt,200,4,25,0.58,1,6 +12489,49720830,Manhattan,Murray Hill,40.74899,-73.97301,Private room,119,1,1,0.02,1,0 +12490,9144442,Manhattan,Upper West Side,40.80219,-73.96618000000001,Private room,65,3,9,0.21,1,0 +12491,12651062,Manhattan,Washington Heights,40.83625,-73.93753000000001,Private room,50,3,2,0.05,1,5 +12492,27158859,Manhattan,Chelsea,40.747609999999995,-73.99761,Entire home/apt,199,4,15,0.38,1,0 +12493,15337454,Manhattan,West Village,40.734359999999995,-73.99994000000001,Private room,80,1,1,0.02,1,0 +12494,47511212,Manhattan,Morningside Heights,40.80508,-73.96262,Private room,55,2,4,0.09,1,0 +12495,1192413,Brooklyn,Crown Heights,40.669090000000004,-73.95144,Entire home/apt,99,1,0,,1,0 +12496,5238157,Brooklyn,Carroll Gardens,40.68002,-73.99625999999999,Entire home/apt,125,1,5,0.12,1,0 +12497,8797100,Manhattan,Chelsea,40.74361,-73.99503,Entire home/apt,235,4,107,2.98,1,27 +12498,8871082,Brooklyn,Carroll Gardens,40.6776,-74.0014,Entire home/apt,110,5,1,0.03,1,0 +12499,49736436,Manhattan,Washington Heights,40.83549,-73.93968000000001,Entire home/apt,120,3,10,0.7,2,244 +12500,49737913,Manhattan,Upper West Side,40.78095,-73.98178,Entire home/apt,195,3,1,0.02,1,0 +12501,37626481,Manhattan,Upper West Side,40.79622,-73.97059,Private room,109,1,113,2.58,2,197 +12502,49738780,Queens,Astoria,40.77211,-73.92055,Private room,100,1,0,,1,0 +12503,7371085,Brooklyn,Williamsburg,40.70436,-73.93225,Private room,55,7,2,0.05,1,0 +12504,49742527,Manhattan,Midtown,40.75246,-73.97171,Entire home/apt,150,4,76,1.79,1,299 +12505,766920,Brooklyn,Carroll Gardens,40.68316,-73.99775,Entire home/apt,100,2,4,0.09,1,0 +12506,7534128,Manhattan,Hell's Kitchen,40.76406,-73.98705,Entire home/apt,450,1,0,,1,0 +12507,6040624,Brooklyn,Sunset Park,40.6454,-74.00782,Entire home/apt,155,1,138,3.14,1,225 +12508,32971323,Brooklyn,Williamsburg,40.70863,-73.95328,Private room,80,14,0,,1,0 +12509,49673620,Manhattan,East Harlem,40.79651,-73.93184000000001,Private room,60,3,10,0.23,1,0 +12510,49746656,Queens,Long Island City,40.74572,-73.95679,Entire home/apt,85,5,1,0.03,1,0 +12511,6628233,Brooklyn,Bedford-Stuyvesant,40.685340000000004,-73.95533,Private room,90,4,0,,1,0 +12512,35320945,Manhattan,Roosevelt Island,40.76108,-73.95058,Private room,70,2,5,0.14,1,0 +12513,3501254,Brooklyn,Bushwick,40.70393,-73.9284,Private room,50,5,1,0.02,1,66 +12514,16396714,Manhattan,Kips Bay,40.74054,-73.97626,Entire home/apt,120,3,1,0.04,3,0 +12515,49753169,Manhattan,Morningside Heights,40.80838,-73.95995,Private room,75,2,1,0.02,1,0 +12516,49754509,Brooklyn,Bedford-Stuyvesant,40.689009999999996,-73.95057,Private room,31,2,1,0.02,1,0 +12517,47784768,Brooklyn,Brownsville,40.663740000000004,-73.91733,Private room,79,2,70,1.6,2,253 +12518,38284667,Manhattan,East Village,40.72888,-73.98193,Entire home/apt,160,160,2,0.05,2,363 +12519,49764808,Brooklyn,Bedford-Stuyvesant,40.67695,-73.91566999999999,Entire home/apt,99,2,96,2.5,2,357 +12520,1509237,Manhattan,East Harlem,40.796859999999995,-73.9459,Entire home/apt,199,2,5,0.12,2,177 +12521,518931,Manhattan,Harlem,40.80263,-73.94662,Entire home/apt,260,3,38,0.94,1,296 +12522,623474,Brooklyn,Williamsburg,40.70983,-73.96494,Entire home/apt,200,6,0,,1,0 +12523,41702722,Manhattan,Midtown,40.76278,-73.97443,Entire home/apt,395,7,0,,1,0 +12524,11497855,Brooklyn,Prospect-Lefferts Gardens,40.66145,-73.96005,Private room,65,10,1,0.02,1,0 +12525,156959,Brooklyn,Carroll Gardens,40.684059999999995,-73.99155999999999,Entire home/apt,219,2,0,,2,0 +12526,36792245,Manhattan,Harlem,40.80272,-73.95564,Private room,60,2,8,0.19,1,0 +12527,2247187,Brooklyn,Bedford-Stuyvesant,40.68545,-73.95883,Private room,45,25,1,0.05,1,19 +12528,49807145,Brooklyn,Bedford-Stuyvesant,40.68379,-73.94648000000001,Private room,60,60,34,0.79,1,189 +12529,49807312,Manhattan,East Village,40.72554,-73.9838,Entire home/apt,107,3,19,0.44,1,72 +12530,16098958,Manhattan,Hell's Kitchen,40.7659,-73.98674,Entire home/apt,230,30,1,0.12,96,281 +12531,16098958,Manhattan,Upper West Side,40.79509,-73.96649000000001,Entire home/apt,288,30,0,,96,311 +12532,47640633,Brooklyn,Williamsburg,40.71621,-73.93941,Private room,50,7,0,,1,0 +12533,23312516,Queens,Astoria,40.75697,-73.91847,Entire home/apt,130,3,39,0.89,1,331 +12534,6753765,Manhattan,East Village,40.72422,-73.98465,Shared room,85,2,2,0.05,3,0 +12535,7631412,Brooklyn,Crown Heights,40.66426,-73.94758,Entire home/apt,80,2,18,0.42,1,0 +12536,12298772,Manhattan,Harlem,40.80464,-73.95636999999999,Private room,84,2,3,0.07,1,0 +12537,18330683,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93015,Private room,63,3,15,0.35,1,0 +12538,49827772,Brooklyn,Bedford-Stuyvesant,40.686609999999995,-73.91944000000001,Private room,45,2,1,0.02,1,0 +12539,49831860,Brooklyn,Canarsie,40.6424,-73.91275,Entire home/apt,125,2,172,4.01,2,155 +12540,49742862,Brooklyn,Greenpoint,40.73168,-73.95829,Private room,160,2,5,0.12,2,0 +12541,298841,Brooklyn,Windsor Terrace,40.65992,-73.98403,Private room,63,2,22,0.51,1,48 +12542,24298532,Manhattan,Lower East Side,40.72043,-73.98916,Private room,125,1,85,2.23,1,335 +12543,11132113,Brooklyn,Bedford-Stuyvesant,40.68673,-73.95829,Private room,45,3,1,0.02,1,0 +12544,7897771,Brooklyn,Williamsburg,40.717690000000005,-73.9544,Private room,115,3,3,0.07,1,0 +12545,49808435,Manhattan,Gramercy,40.73857,-73.98335,Entire home/apt,269,3,145,3.31,1,110 +12546,14965776,Brooklyn,Crown Heights,40.669309999999996,-73.9555,Private room,55,5,5,0.12,1,0 +12547,49873719,Manhattan,West Village,40.729409999999994,-74.00480999999999,Entire home/apt,150,7,0,,1,0 +12548,2204011,Queens,Forest Hills,40.71322,-73.83493,Entire home/apt,100,4,11,0.31,1,15 +12549,18668835,Manhattan,East Village,40.7233,-73.98819,Entire home/apt,190,1,0,,1,0 +12550,1120455,Brooklyn,Greenpoint,40.72798,-73.95038000000001,Entire home/apt,150,7,0,,1,0 +12551,49879147,Queens,Forest Hills,40.7276,-73.85183,Private room,75,1,0,,1,0 +12552,47341341,Brooklyn,Midwood,40.61952,-73.96928,Private room,59,28,2,0.05,1,365 +12553,48576700,Brooklyn,Clinton Hill,40.69347,-73.967,Entire home/apt,173,2,179,4.18,2,228 +12554,49898234,Brooklyn,Williamsburg,40.71205,-73.95787,Private room,60,7,0,,1,0 +12555,16356851,Brooklyn,Greenpoint,40.734190000000005,-73.95905,Private room,115,5,24,0.56,2,179 +12556,17065519,Manhattan,Harlem,40.80407,-73.95761999999999,Entire home/apt,89,1,1,0.02,1,0 +12557,8308648,Brooklyn,Bushwick,40.68781,-73.91695,Private room,70,1,5,0.14,2,0 +12558,22855974,Queens,Astoria,40.765609999999995,-73.9248,Private room,89,2,53,1.33,1,39 +12559,433207,Queens,Astoria,40.76112,-73.9146,Private room,60,1,150,3.75,2,179 +12560,4878479,Brooklyn,Crown Heights,40.67629,-73.96208,Entire home/apt,130,5,0,,1,0 +12561,49907738,Manhattan,Upper West Side,40.78494,-73.97663,Entire home/apt,400,1,2,0.05,1,0 +12562,1633246,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92369000000001,Entire home/apt,90,4,8,0.19,4,0 +12563,45166068,Manhattan,East Village,40.72316,-73.9844,Entire home/apt,200,2,8,0.19,1,188 +12564,506208,Brooklyn,Bushwick,40.70435,-73.91646,Private room,65,1,2,0.06,1,0 +12565,3250450,Queens,Astoria,40.75806,-73.91345,Private room,43,30,3,0.08,18,310 +12566,32173907,Brooklyn,Bushwick,40.70433,-73.92652,Private room,55,3,6,0.14,1,0 +12567,49951208,Queens,Long Island City,40.74391,-73.95461,Entire home/apt,120,2,0,,1,0 +12568,49963831,Manhattan,East Harlem,40.79479,-73.94919,Private room,110,1,123,3.07,1,264 +12569,13197498,Manhattan,Washington Heights,40.85,-73.93796999999999,Entire home/apt,95,7,0,,1,0 +12570,49967558,Manhattan,NoHo,40.72459,-73.99365999999999,Entire home/apt,145,1,3,0.07,1,0 +12571,49970809,Manhattan,East Village,40.72846,-73.98987,Entire home/apt,550,1,141,3.29,1,302 +12572,49620552,Queens,Astoria,40.76768,-73.90986,Private room,59,1,156,3.59,4,208 +12573,49620552,Queens,Astoria,40.76923,-73.91203,Entire home/apt,239,3,8,0.19,4,274 +12574,49620552,Queens,Astoria,40.76933,-73.91164,Private room,49,1,14,0.32,4,89 +12575,30312537,Manhattan,Hell's Kitchen,40.7608,-73.9947,Private room,95,3,0,,1,0 +12576,23048845,Manhattan,Upper East Side,40.7718,-73.94915999999999,Entire home/apt,160,2,0,,1,0 +12577,49991005,Brooklyn,Canarsie,40.63013,-73.90809,Entire home/apt,90,2,214,4.89,1,82 +12578,5480274,Brooklyn,Williamsburg,40.70997,-73.94296999999999,Private room,80,2,9,0.41,1,0 +12579,9966670,Brooklyn,Bedford-Stuyvesant,40.689859999999996,-73.95891999999999,Entire home/apt,125,3,42,0.98,1,226 +12580,1387286,Brooklyn,Williamsburg,40.70796,-73.95035,Private room,65,1,1,0.03,2,0 +12581,50001302,Manhattan,Harlem,40.82476,-73.9438,Entire home/apt,77,4,63,1.56,1,0 +12582,50001799,Brooklyn,Bedford-Stuyvesant,40.69218,-73.93574,Entire home/apt,220,2,26,0.61,1,8 +12583,229109,Brooklyn,Williamsburg,40.714620000000004,-73.94641,Entire home/apt,150,40,4,0.16,2,0 +12584,5731898,Brooklyn,Williamsburg,40.71,-73.95506999999999,Private room,200,5,8,0.19,2,0 +12585,50003858,Manhattan,West Village,40.73702,-74.00633,Entire home/apt,200,1,5,0.12,1,0 +12586,50005319,Brooklyn,Park Slope,40.676320000000004,-73.98116,Entire home/apt,160,4,0,,1,0 +12587,5731898,Brooklyn,Williamsburg,40.70794,-73.9566,Private room,90,3,28,0.65,2,0 +12588,50006995,Brooklyn,Bushwick,40.7005,-73.92814,Entire home/apt,230,1,1,0.02,1,0 +12589,50006975,Brooklyn,Bushwick,40.70633,-73.92231,Private room,55,1,1,0.02,1,0 +12590,25165109,Manhattan,Gramercy,40.73429,-73.98689,Private room,160,2,1,0.02,1,0 +12591,4369380,Brooklyn,Williamsburg,40.71436,-73.95421,Private room,46,3,11,0.26,1,0 +12592,24199235,Manhattan,Midtown,40.75328,-73.97211999999999,Private room,224,3,0,,1,3 +12593,50015739,Manhattan,Murray Hill,40.74695,-73.98062,Entire home/apt,300,2,13,0.3,1,0 +12594,50016613,Manhattan,Harlem,40.8241,-73.95259,Private room,100,3,1,0.03,1,0 +12595,17261034,Brooklyn,Williamsburg,40.712109999999996,-73.95949,Private room,95,12,1,0.03,1,0 +12596,39093118,Manhattan,Roosevelt Island,40.75965,-73.95125,Private room,100,1,0,,1,0 +12597,1885068,Brooklyn,Flatbush,40.653729999999996,-73.95535,Private room,47,1,0,,1,0 +12598,16024390,Manhattan,Upper West Side,40.794990000000006,-73.96631,Private room,139,1,0,,1,0 +12599,50024703,Queens,Astoria,40.75658,-73.92181,Private room,68,3,6,0.14,1,0 +12600,11054692,Brooklyn,Crown Heights,40.669509999999995,-73.94931,Entire home/apt,110,1,0,,1,0 +12601,6115134,Manhattan,Upper East Side,40.778490000000005,-73.95045999999999,Entire home/apt,112,4,13,0.3,1,0 +12602,46846064,Manhattan,Roosevelt Island,40.76359,-73.94981999999999,Private room,85,3,32,0.9,2,0 +12603,33833815,Brooklyn,Fort Greene,40.68878,-73.97995,Entire home/apt,450,1,0,,1,0 +12604,28191353,Manhattan,East Village,40.72912,-73.97854,Entire home/apt,390,7,0,,1,0 +12605,50028109,Manhattan,Morningside Heights,40.81109,-73.95904,Private room,55,1,0,,1,0 +12606,50031308,Brooklyn,Midwood,40.63009,-73.96670999999999,Private room,55,4,47,1.09,1,304 +12607,50032395,Manhattan,Upper West Side,40.80023,-73.96678,Private room,85,1,7,0.16,2,188 +12608,50045329,Brooklyn,Dyker Heights,40.6186,-74.0071,Entire home/apt,160,3,52,1.2,1,291 +12609,42694270,Manhattan,Upper West Side,40.77401,-73.99056,Entire home/apt,155,4,6,0.14,1,0 +12610,2088995,Brooklyn,Flatbush,40.653259999999996,-73.95513000000001,Entire home/apt,70,2,1,0.33,1,0 +12611,50053165,Brooklyn,Fort Greene,40.68574,-73.97045,Entire home/apt,185,1,1,0.02,1,0 +12612,38596175,Brooklyn,Williamsburg,40.71654,-73.94104,Entire home/apt,90,7,0,,1,0 +12613,34796316,Manhattan,Morningside Heights,40.805620000000005,-73.95978000000001,Private room,200,7,1,0.02,1,0 +12614,9507017,Manhattan,Lower East Side,40.71954,-73.99067,Private room,58,10,0,,1,0 +12615,42950170,Manhattan,East Village,40.72636,-73.98231,Private room,70,4,2,0.05,1,0 +12616,50013026,Manhattan,Upper West Side,40.80012,-73.96441,Private room,50,1,2,0.05,1,0 +12617,634195,Queens,Sunnyside,40.745090000000005,-73.9236,Entire home/apt,85,4,2,0.05,1,0 +12618,35321358,Manhattan,East Harlem,40.78626,-73.94295,Entire home/apt,200,6,0,,1,0 +12619,28422539,Manhattan,West Village,40.73713,-74.00059,Entire home/apt,250,7,0,,1,0 +12620,50064597,Queens,Woodhaven,40.694720000000004,-73.84855999999999,Private room,45,2,5,0.12,1,0 +12621,3245480,Brooklyn,Greenpoint,40.73154,-73.95485,Entire home/apt,109,4,4,0.09,1,0 +12622,50068597,Staten Island,Stapleton,40.63573,-74.0772,Private room,48,2,112,2.6,3,316 +12623,14651590,Manhattan,Morningside Heights,40.80462,-73.96074,Entire home/apt,150,7,4,0.09,1,0 +12624,2024620,Brooklyn,Williamsburg,40.71753,-73.95742,Entire home/apt,350,2,9,0.27,1,130 +12625,25499953,Manhattan,Upper West Side,40.802459999999996,-73.96884,Entire home/apt,100,2,1,0.02,1,0 +12626,48678883,Manhattan,Upper East Side,40.76871,-73.95479,Entire home/apt,177,1,136,3.12,1,258 +12627,5291029,Manhattan,Greenwich Village,40.73411,-73.99786999999999,Entire home/apt,108,1,111,2.57,1,0 +12628,43380791,Brooklyn,Bedford-Stuyvesant,40.68762,-73.92318,Private room,28,10,1,0.02,1,0 +12629,50080673,Manhattan,East Village,40.73033,-73.98788,Private room,101,1,0,,1,0 +12630,50084376,Queens,Ditmars Steinway,40.77472,-73.90993,Private room,35,1,2,0.05,1,0 +12631,50084137,Queens,Jackson Heights,40.75251,-73.8898,Entire home/apt,105,7,2,0.05,1,0 +12632,2262706,Brooklyn,Carroll Gardens,40.68378,-73.992,Private room,95,1,2,0.06,1,0 +12633,43298076,Manhattan,Harlem,40.82195,-73.95373000000001,Private room,62,2,24,0.55,4,97 +12634,24445542,Manhattan,Harlem,40.82569,-73.94277,Private room,65,2,0,,1,0 +12635,3655401,Manhattan,Kips Bay,40.74106,-73.97818000000001,Entire home/apt,150,3,2,0.05,1,0 +12636,38014669,Brooklyn,Bushwick,40.68996,-73.92045999999999,Entire home/apt,113,7,38,0.94,1,355 +12637,8144242,Brooklyn,Bedford-Stuyvesant,40.683820000000004,-73.95566,Entire home/apt,300,2,24,0.56,1,0 +12638,20007675,Brooklyn,Bedford-Stuyvesant,40.683890000000005,-73.93437,Entire home/apt,65,2,4,0.09,1,0 +12639,50086145,Brooklyn,Crown Heights,40.66916,-73.95125,Private room,55,2,5,0.12,1,0 +12640,7185488,Brooklyn,Brooklyn Heights,40.69565,-73.99663000000001,Entire home/apt,150,8,0,,1,0 +12641,43438475,Brooklyn,South Slope,40.667590000000004,-73.99009000000001,Entire home/apt,120,3,152,3.6,3,180 +12642,35671352,Manhattan,Lower East Side,40.719409999999996,-73.98534000000001,Entire home/apt,160,1,2,0.05,1,0 +12643,14811787,Manhattan,Upper East Side,40.76675,-73.95144,Private room,135,2,10,0.23,2,339 +12644,15647614,Brooklyn,Williamsburg,40.7162,-73.95384,Entire home/apt,175,1,11,0.36,2,37 +12645,50126257,Brooklyn,Borough Park,40.63692,-73.99063000000001,Entire home/apt,300,2,51,2.06,1,297 +12646,40044130,Brooklyn,Williamsburg,40.71009,-73.953,Private room,80,6,2,0.05,1,0 +12647,50131208,Queens,Astoria,40.769940000000005,-73.91841,Private room,40,1,0,,1,0 +12648,16098958,Manhattan,Midtown,40.766009999999994,-73.97789,Entire home/apt,170,30,1,0.04,96,332 +12649,20709383,Manhattan,Washington Heights,40.845040000000004,-73.93658,Entire home/apt,85,90,1,0.03,1,0 +12650,50132533,Bronx,Riverdale,40.88422,-73.90886,Entire home/apt,85,1,0,,1,0 +12651,7027191,Brooklyn,Crown Heights,40.6773,-73.95000999999999,Entire home/apt,84,10,2,0.05,1,0 +12652,14163805,Brooklyn,Prospect-Lefferts Gardens,40.66001,-73.94664,Entire home/apt,399,3,129,3.2,1,237 +12653,30707611,Manhattan,West Village,40.73123,-74.00684,Entire home/apt,450,1,0,,1,0 +12654,9339714,Manhattan,Gramercy,40.73304,-73.9843,Entire home/apt,140,3,103,2.46,2,270 +12655,2412806,Brooklyn,Fort Greene,40.68792,-73.97904,Entire home/apt,210,2,115,2.66,1,247 +12656,50143518,Manhattan,Upper West Side,40.80172,-73.9656,Entire home/apt,135,4,0,,1,0 +12657,8262339,Brooklyn,Williamsburg,40.71287,-73.96325,Entire home/apt,200,3,3,0.42,1,0 +12658,50144728,Manhattan,Harlem,40.804629999999996,-73.95044,Entire home/apt,200,2,148,3.47,1,0 +12659,50144624,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93746,Private room,47,2,2,0.05,1,0 +12660,50144878,Brooklyn,Bedford-Stuyvesant,40.68362,-73.94646,Entire home/apt,50,7,1,0.03,1,0 +12661,11575335,Brooklyn,Crown Heights,40.677620000000005,-73.95764,Private room,95,2,9,0.21,1,342 +12662,13148824,Manhattan,Chelsea,40.741859999999996,-74.00528,Entire home/apt,280,2,6,0.14,1,0 +12663,16164068,Brooklyn,Bedford-Stuyvesant,40.68,-73.95526,Private room,50,3,5,0.13,1,0 +12664,1317360,Manhattan,SoHo,40.72145,-74.00231,Private room,200,1,16,0.83,2,365 +12665,50148553,Manhattan,Theater District,40.76278,-73.98498000000001,Private room,197,3,18,0.46,1,0 +12666,202665,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95865,Entire home/apt,120,5,4,0.12,1,0 +12667,50152355,Brooklyn,Bushwick,40.69715,-73.92243,Entire home/apt,60,14,0,,1,0 +12668,6105861,Manhattan,Upper East Side,40.764959999999995,-73.95801,Private room,100,1,0,,1,0 +12669,43198464,Manhattan,Upper East Side,40.7651,-73.95812,Private room,84,1,0,,1,0 +12670,6365575,Queens,Long Island City,40.74723,-73.94144,Entire home/apt,200,3,0,,1,0 +12671,50157334,Manhattan,Kips Bay,40.74285,-73.97468,Entire home/apt,150,5,1,0.02,1,0 +12672,43719073,Brooklyn,Sheepshead Bay,40.59878,-73.95425,Shared room,35,1,104,2.45,5,352 +12673,956269,Manhattan,Gramercy,40.73725,-73.98439,Entire home/apt,195,3,19,0.43,1,34 +12674,4549440,Manhattan,Harlem,40.82347,-73.93944,Private room,37,1,0,,1,0 +12675,50165358,Manhattan,Murray Hill,40.74987,-73.97293,Entire home/apt,200,1,0,,1,0 +12676,31626212,Manhattan,Theater District,40.75699,-73.98493,Private room,125,3,141,3.29,5,226 +12677,31626212,Manhattan,Midtown,40.748259999999995,-73.98653,Private room,100,30,2,2.0,5,248 +12678,45198805,Manhattan,Washington Heights,40.832879999999996,-73.93821,Entire home/apt,70,1,0,,1,0 +12679,290908,Brooklyn,Prospect-Lefferts Gardens,40.66195,-73.95275,Entire home/apt,125,6,155,3.54,1,155 +12680,16437254,Brooklyn,Boerum Hill,40.68788,-73.98550999999999,Entire home/apt,123,30,10,0.27,21,246 +12681,292084,Brooklyn,Kensington,40.64463,-73.97057,Entire home/apt,95,7,5,0.12,1,59 +12682,37803660,Manhattan,Midtown,40.75088,-73.96918000000001,Entire home/apt,199,4,1,0.02,1,0 +12683,31543325,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.961,Entire home/apt,125,20,0,,1,0 +12684,50199816,Brooklyn,Bushwick,40.701679999999996,-73.92593000000001,Private room,45,1,1,0.02,1,0 +12685,5124437,Manhattan,Hell's Kitchen,40.761720000000004,-73.99916999999999,Entire home/apt,189,3,4,0.09,1,0 +12686,3758471,Brooklyn,Crown Heights,40.6744,-73.95902,Private room,50,2,1,0.02,2,0 +12687,27163319,Manhattan,Hell's Kitchen,40.76444,-73.98728,Private room,120,5,0,,1,8 +12688,68890,Brooklyn,Bedford-Stuyvesant,40.689679999999996,-73.95213000000001,Entire home/apt,250,1,11,0.32,3,365 +12689,50207684,Brooklyn,Sunset Park,40.64962,-74.00028,Entire home/apt,95,3,74,1.72,1,251 +12690,1038645,Manhattan,Lower East Side,40.72133,-73.9877,Private room,140,1,5,0.12,1,0 +12691,50213378,Queens,Sunnyside,40.74463,-73.91918000000001,Entire home/apt,99,1,0,,1,0 +12692,29877911,Manhattan,Harlem,40.799890000000005,-73.95213000000001,Entire home/apt,120,30,33,0.81,1,247 +12693,8693741,Brooklyn,Bedford-Stuyvesant,40.69616,-73.94736999999999,Private room,35,1,2,0.05,1,0 +12694,34939187,Manhattan,Hell's Kitchen,40.765640000000005,-73.98759,Entire home/apt,195,3,30,0.68,1,0 +12695,14974205,Brooklyn,Bushwick,40.693509999999996,-73.92309,Private room,35,1,1,0.02,1,0 +12696,33624354,Manhattan,Tribeca,40.72117,-74.00591999999999,Entire home/apt,250,1,1,0.02,1,0 +12697,50220666,Brooklyn,Greenpoint,40.72594,-73.95174,Private room,70,7,2,0.05,1,0 +12698,14800483,Brooklyn,Williamsburg,40.71702,-73.94339000000001,Entire home/apt,140,7,0,,1,0 +12699,4396337,Brooklyn,Williamsburg,40.719640000000005,-73.95538,Entire home/apt,159,28,4,0.1,1,0 +12700,11763414,Manhattan,Gramercy,40.736059999999995,-73.98241999999999,Entire home/apt,149,7,13,0.33,1,0 +12701,9408069,Manhattan,Lower East Side,40.72082,-73.98728,Entire home/apt,180,1,130,2.98,1,328 +12702,50189863,Manhattan,East Harlem,40.79566,-73.9448,Entire home/apt,110,1,198,4.58,1,250 +12703,166014,Queens,Astoria,40.77066,-73.92181,Entire home/apt,100,7,2,0.05,1,0 +12704,6501582,Brooklyn,Crown Heights,40.67693,-73.93234,Private room,50,7,11,0.26,1,0 +12705,49494357,Manhattan,Nolita,40.72116,-73.9959,Entire home/apt,425,2,23,0.64,1,54 +12706,17870643,Manhattan,Midtown,40.75843,-73.96265,Entire home/apt,195,1,0,,1,0 +12707,19135883,Manhattan,Kips Bay,40.74178,-73.97313,Entire home/apt,260,4,15,0.35,1,34 +12708,9245509,Manhattan,Hell's Kitchen,40.76,-73.98971999999999,Entire home/apt,499,2,4,0.09,1,0 +12709,50235395,Manhattan,Morningside Heights,40.805690000000006,-73.96333,Private room,75,14,0,,1,0 +12710,33075414,Manhattan,West Village,40.73053,-74.00296999999999,Entire home/apt,250,3,3,0.08,1,16 +12711,267959,Brooklyn,Williamsburg,40.72038,-73.95993,Entire home/apt,350,2,5,0.12,1,0 +12712,14786085,Manhattan,Kips Bay,40.74302,-73.98098,Entire home/apt,275,5,3,0.08,1,0 +12713,9392189,Brooklyn,Williamsburg,40.71134,-73.95192,Entire home/apt,325,5,0,,1,0 +12714,40169737,Manhattan,Hell's Kitchen,40.76553,-73.98709000000001,Entire home/apt,300,1,268,6.12,1,261 +12715,30968452,Brooklyn,Bushwick,40.68881,-73.92017,Private room,75,3,5,0.12,1,365 +12716,50054847,Brooklyn,Crown Heights,40.668420000000005,-73.95600999999999,Private room,100,1,0,,1,0 +12717,50252837,Manhattan,Harlem,40.816559999999996,-73.95725,Private room,45,1,0,,1,0 +12718,389899,Brooklyn,Williamsburg,40.7179,-73.95938000000001,Entire home/apt,146,28,208,4.8,2,200 +12719,50145118,Manhattan,Harlem,40.80857,-73.942,Private room,89,1,19,0.44,3,0 +12720,11462920,Manhattan,Harlem,40.81788,-73.93583000000001,Entire home/apt,75,2,19,0.44,1,0 +12721,50255130,Manhattan,Chelsea,40.74098,-74.00513000000001,Entire home/apt,175,4,0,,1,0 +12722,18830662,Manhattan,SoHo,40.72051,-74.00168000000001,Private room,75,1,1,0.02,2,0 +12723,7230698,Manhattan,Harlem,40.827490000000004,-73.94329,Entire home/apt,102,5,20,0.52,2,18 +12724,14005489,Manhattan,SoHo,40.728229999999996,-74.00571,Entire home/apt,250,4,0,,1,0 +12725,50279938,Manhattan,East Harlem,40.78857,-73.94328,Entire home/apt,190,2,118,2.74,1,237 +12726,50282201,Manhattan,Upper West Side,40.800270000000005,-73.96970999999999,Private room,120,1,0,,1,0 +12727,8768792,Brooklyn,Greenpoint,40.72449,-73.95149,Private room,70,5,1,0.02,1,0 +12728,4018726,Brooklyn,Bedford-Stuyvesant,40.69297,-73.94521999999999,Private room,63,3,6,2.77,1,60 +12729,9895399,Brooklyn,Greenpoint,40.72484,-73.9472,Entire home/apt,100,6,1,0.02,1,0 +12730,24260658,Manhattan,East Harlem,40.79443,-73.93500999999999,Private room,130,2,49,1.52,5,76 +12731,50289490,Manhattan,East Village,40.72613,-73.98621,Entire home/apt,140,5,0,,1,0 +12732,19256647,Queens,Flushing,40.73157,-73.83263000000001,Entire home/apt,65,7,0,,1,0 +12733,50292584,Brooklyn,Sunset Park,40.642179999999996,-74.01175,Entire home/apt,90,2,75,1.84,2,364 +12734,50291368,Brooklyn,Bushwick,40.6882,-73.90598,Private room,46,2,18,0.42,1,0 +12735,3051323,Brooklyn,Bushwick,40.69917,-73.93178,Entire home/apt,72,20,0,,1,0 +12736,393473,Brooklyn,Bedford-Stuyvesant,40.69227,-73.95187,Entire home/apt,115,2,142,3.38,2,89 +12737,4173415,Manhattan,West Village,40.73737,-74.00591,Private room,90,1,103,2.4,1,239 +12738,1587834,Brooklyn,Greenpoint,40.722120000000004,-73.94423,Private room,65,2,0,,1,0 +12739,1527888,Brooklyn,Williamsburg,40.7109,-73.95236,Entire home/apt,250,31,8,0.19,1,0 +12740,1342653,Manhattan,SoHo,40.725429999999996,-74.00242,Entire home/apt,1000,4,10,0.23,1,326 +12741,2147475,Brooklyn,Greenpoint,40.721070000000005,-73.95376,Entire home/apt,159,1,3,0.1,1,0 +12742,15231059,Manhattan,Lower East Side,40.7203,-73.98698,Private room,99,3,24,0.56,4,333 +12743,19067539,Queens,Kew Gardens,40.70344,-73.83435,Entire home/apt,100,1,2,0.09,1,0 +12744,10611392,Manhattan,East Harlem,40.79331,-73.94149,Entire home/apt,250,4,13,0.32,1,35 +12745,33401596,Brooklyn,Bedford-Stuyvesant,40.69048,-73.94763,Entire home/apt,120,3,5,0.12,1,0 +12746,9262409,Manhattan,Hell's Kitchen,40.76504,-73.98718000000001,Private room,80,3,1,0.02,1,0 +12747,18799694,Manhattan,East Village,40.73333,-73.99075,Entire home/apt,300,1,0,,1,0 +12748,47512544,Manhattan,Roosevelt Island,40.76206,-73.94904,Private room,45,3,1,0.02,1,0 +12749,18954539,Manhattan,Upper East Side,40.763740000000006,-73.96583000000001,Entire home/apt,200,1,0,,1,0 +12750,11513145,Manhattan,Upper West Side,40.78641,-73.97739,Private room,65,1,2,0.05,1,0 +12751,39631811,Manhattan,Morningside Heights,40.809290000000004,-73.95826,Private room,70,1,0,,1,0 +12752,33349807,Brooklyn,Bedford-Stuyvesant,40.6801,-73.92873,Entire home/apt,60,13,0,,1,0 +12753,1587220,Manhattan,West Village,40.73577,-74.00582,Entire home/apt,240,1,0,,1,0 +12754,50318467,Manhattan,Marble Hill,40.87663,-73.91041,Private room,50,1,2,0.05,1,0 +12755,4422477,Manhattan,East Village,40.72936,-73.97882,Private room,100,2,1,0.03,1,0 +12756,7952263,Manhattan,Upper East Side,40.78389,-73.95306,Entire home/apt,200,4,1,0.03,1,0 +12757,3696938,Brooklyn,Williamsburg,40.70935,-73.95206999999999,Entire home/apt,180,1,0,,1,0 +12758,34861728,Queens,Kew Gardens,40.7092,-73.82984,Private room,65,7,8,0.18,4,320 +12759,50323495,Brooklyn,Williamsburg,40.70357,-73.9474,Entire home/apt,130,4,52,1.2,1,321 +12760,50324996,Manhattan,Harlem,40.83113,-73.94596999999999,Entire home/apt,125,21,0,,1,0 +12761,50324962,Brooklyn,Prospect Heights,40.67545,-73.96884,Entire home/apt,250,30,13,0.34,1,319 +12762,411677,Brooklyn,Flatbush,40.63565,-73.96434,Entire home/apt,70,20,0,,1,0 +12763,13342524,Brooklyn,South Slope,40.66352,-73.98488,Entire home/apt,100,3,6,0.14,1,0 +12764,50331528,Manhattan,Hell's Kitchen,40.76599,-73.98404000000001,Entire home/apt,90,5,3,0.08,1,0 +12765,50331556,Queens,Rosedale,40.67836,-73.729,Private room,90,1,54,1.26,1,180 +12766,6706379,Brooklyn,Bedford-Stuyvesant,40.69133,-73.9426,Private room,31,3,2,0.05,1,0 +12767,9039711,Manhattan,Washington Heights,40.83358,-73.94113,Private room,45,1,2,0.05,1,0 +12768,18080415,Manhattan,Upper West Side,40.775940000000006,-73.98449000000001,Entire home/apt,188,3,0,,1,0 +12769,37821056,Brooklyn,Flatbush,40.6502,-73.95509,Private room,39,7,6,0.17,4,278 +12770,37821056,Brooklyn,Flatbush,40.6518,-73.95894,Private room,39,7,13,0.3,4,346 +12771,9662924,Brooklyn,Williamsburg,40.70669,-73.94943,Private room,85,5,1,0.02,1,0 +12772,10366292,Brooklyn,Clinton Hill,40.685520000000004,-73.96481,Private room,40,5,2,0.06,3,0 +12773,10366292,Brooklyn,Clinton Hill,40.68522,-73.96325999999999,Private room,75,1,0,,3,0 +12774,38297722,Brooklyn,Williamsburg,40.71691,-73.93953,Entire home/apt,200,2,1,0.02,1,0 +12775,19874128,Manhattan,Harlem,40.82083,-73.95407,Private room,88,2,0,,1,0 +12776,50364039,Brooklyn,Williamsburg,40.71602,-73.96248,Entire home/apt,130,2,67,1.57,3,252 +12777,50068597,Staten Island,Tompkinsville,40.63661,-74.07868,Private room,40,2,157,3.67,3,324 +12778,618803,Manhattan,Washington Heights,40.83424,-73.94275,Private room,65,3,0,,1,0 +12779,50366054,Manhattan,Upper West Side,40.80055,-73.96011,Entire home/apt,129,3,6,0.14,1,0 +12780,670690,Manhattan,Chelsea,40.73809,-73.99695,Entire home/apt,500,1,0,,1,0 +12781,9144218,Queens,Astoria,40.764759999999995,-73.91935,Entire home/apt,125,8,0,,1,0 +12782,50368164,Brooklyn,Windsor Terrace,40.64845,-73.97301999999999,Entire home/apt,100,1,7,0.16,1,0 +12783,50368837,Brooklyn,Crown Heights,40.67735,-73.94468,Entire home/apt,100,3,1,0.05,2,0 +12784,50369736,Brooklyn,Kensington,40.646370000000005,-73.97863000000001,Private room,24,18,1,0.02,1,0 +12785,50372319,Brooklyn,Gowanus,40.66948,-73.9903,Entire home/apt,160,2,70,1.63,1,342 +12786,50374022,Brooklyn,Williamsburg,40.71162,-73.9639,Entire home/apt,125,5,13,0.31,2,0 +12787,96598,Brooklyn,Greenpoint,40.72061,-73.94886,Entire home/apt,205,7,2,0.19,1,0 +12788,2001524,Manhattan,East Village,40.730270000000004,-73.98759,Entire home/apt,750,3,97,2.22,1,47 +12789,49293531,Brooklyn,Bedford-Stuyvesant,40.68124,-73.94188,Private room,75,14,18,0.5,3,189 +12790,16098958,Manhattan,Gramercy,40.73558,-73.9852,Entire home/apt,150,30,1,0.04,96,282 +12791,47577639,Manhattan,Chelsea,40.74105,-74.00401,Entire home/apt,195,4,48,1.19,2,280 +12792,50385630,Brooklyn,Williamsburg,40.71712,-73.94671,Private room,477,2,1,0.03,1,358 +12793,16098958,Manhattan,Upper West Side,40.79569,-73.96583000000001,Entire home/apt,275,30,1,0.02,96,332 +12794,31758028,Manhattan,SoHo,40.724959999999996,-74.00928,Entire home/apt,699,7,0,,1,37 +12795,3816296,Manhattan,Chinatown,40.71611,-73.99539,Entire home/apt,180,1,0,,1,0 +12796,12974174,Brooklyn,Crown Heights,40.66782,-73.92969000000001,Private room,60,1,1,0.02,1,0 +12797,50396427,Brooklyn,Prospect Heights,40.67702,-73.96445,Entire home/apt,128,28,12,0.31,1,256 +12798,38263259,Manhattan,Harlem,40.81949,-73.95676,Entire home/apt,140,5,7,0.16,1,0 +12799,24894370,Brooklyn,Crown Heights,40.67042,-73.95071999999999,Entire home/apt,98,1,5,0.12,1,0 +12800,50397134,Manhattan,Midtown,40.76103,-73.97511999999999,Entire home/apt,1200,1,0,,1,0 +12801,22098830,Brooklyn,Bedford-Stuyvesant,40.68581,-73.94689,Entire home/apt,800,3,33,0.76,1,178 +12802,502563,Manhattan,East Village,40.73052,-73.98461,Private room,130,3,134,3.08,2,23 +12803,9424650,Brooklyn,Williamsburg,40.71761,-73.95423000000001,Entire home/apt,325,3,74,1.73,1,179 +12804,2491622,Manhattan,East Village,40.72745,-73.98979,Private room,200,1,0,,1,0 +12805,20068971,Manhattan,Washington Heights,40.85147,-73.93771,Entire home/apt,125,2,0,,1,0 +12806,4098796,Manhattan,Harlem,40.820209999999996,-73.95421,Private room,62,2,0,,1,0 +12807,11026504,Manhattan,Upper West Side,40.78818,-73.96928,Entire home/apt,144,2,30,0.8,1,0 +12808,40571321,Brooklyn,Bedford-Stuyvesant,40.69335,-73.93106999999999,Private room,90,1,0,,1,0 +12809,50411330,Manhattan,Lower East Side,40.71504,-73.98879000000001,Private room,45,1,2,0.05,1,0 +12810,34351124,Brooklyn,Bedford-Stuyvesant,40.68768,-73.92069000000001,Private room,75,1,1,0.02,1,0 +12811,10262649,Brooklyn,Bushwick,40.691340000000004,-73.90895,Private room,85,4,24,0.57,2,0 +12812,32525636,Manhattan,Harlem,40.82094,-73.95745,Entire home/apt,50,3,1,0.03,1,0 +12813,3758471,Brooklyn,Crown Heights,40.673770000000005,-73.95886999999999,Private room,50,10,1,0.02,2,0 +12814,15401907,Manhattan,Gramercy,40.735240000000005,-73.98812,Entire home/apt,86,20,0,,1,0 +12815,30793816,Brooklyn,Bushwick,40.68589,-73.91486,Private room,60,1,17,0.4,1,205 +12816,4094857,Manhattan,Upper West Side,40.791129999999995,-73.96645,Entire home/apt,372,3,23,0.54,1,17 +12817,42424450,Brooklyn,Williamsburg,40.719879999999996,-73.95591,Private room,75,2,1,0.02,1,0 +12818,50442604,Brooklyn,Flatbush,40.63655,-73.95424,Private room,60,1,1,0.02,1,0 +12819,26627436,Manhattan,Harlem,40.81602,-73.94315999999999,Private room,29,28,42,1.0,1,16 +12820,1698487,Brooklyn,Prospect Heights,40.67835,-73.96846,Private room,85,1,90,2.08,1,345 +12821,49293531,Brooklyn,Bedford-Stuyvesant,40.686659999999996,-73.92724,Private room,60,15,14,0.38,3,251 +12822,50445531,Manhattan,Upper West Side,40.79827,-73.97321,Private room,124,1,0,,1,0 +12823,24260658,Manhattan,East Harlem,40.794709999999995,-73.93482,Private room,90,2,17,0.45,5,0 +12824,50448556,Manhattan,Harlem,40.80316,-73.95189,Entire home/apt,300,5,0,,5,0 +12825,20328794,Manhattan,Upper East Side,40.77507,-73.94896,Entire home/apt,70,10,3,0.07,1,0 +12826,785524,Bronx,Concourse,40.82023,-73.92844000000001,Entire home/apt,87,1,132,3.11,2,211 +12827,50448556,Manhattan,Harlem,40.80518,-73.95099,Private room,100,1,1,0.02,5,0 +12828,10338528,Brooklyn,Flatbush,40.654109999999996,-73.95815999999999,Private room,55,4,8,0.19,1,173 +12829,50455731,Manhattan,Upper East Side,40.77227,-73.94968,Entire home/apt,139,3,26,0.6,1,0 +12830,50448556,Manhattan,Harlem,40.80345,-73.95067,Private room,200,1,0,,5,0 +12831,50459536,Manhattan,West Village,40.73455,-74.00312,Private room,300,1,0,,1,0 +12832,2949577,Brooklyn,Crown Heights,40.665929999999996,-73.95082,Private room,50,4,2,0.05,1,0 +12833,16098958,Manhattan,Upper East Side,40.7773,-73.95305,Entire home/apt,260,30,1,0.3,96,336 +12834,39615319,Manhattan,East Village,40.73352,-73.98895999999999,Private room,120,2,3,0.08,1,0 +12835,50463621,Manhattan,Kips Bay,40.7412,-73.98170999999999,Entire home/apt,110,4,0,,1,0 +12836,8265805,Brooklyn,Williamsburg,40.71725,-73.96446999999999,Private room,50,3,0,,1,0 +12837,48593918,Manhattan,East Village,40.72265,-73.98365,Private room,90,2,187,4.31,1,86 +12838,5814274,Queens,Astoria,40.77254,-73.92853000000001,Entire home/apt,225,4,0,,1,0 +12839,1475015,Manhattan,Midtown,40.75185,-73.97001,Entire home/apt,83,30,3,0.09,52,331 +12840,50467679,Brooklyn,Crown Heights,40.67176,-73.93387,Private room,30,3,3,0.1,1,0 +12841,20337316,Manhattan,Hell's Kitchen,40.766459999999995,-73.99345,Shared room,65,1,1,0.02,1,0 +12842,7036796,Brooklyn,Williamsburg,40.71891,-73.96133,Private room,60,5,0,,1,0 +12843,13811334,Manhattan,East Harlem,40.79197,-73.94711,Entire home/apt,140,1,1,0.03,1,0 +12844,50472471,Manhattan,SoHo,40.7209,-74.00229,Entire home/apt,799,3,16,0.4,1,365 +12845,11358093,Brooklyn,Williamsburg,40.71283,-73.9593,Entire home/apt,330,5,0,,1,0 +12846,50473263,Manhattan,Upper East Side,40.76875,-73.96763,Entire home/apt,1100,1,0,,1,0 +12847,23698012,Brooklyn,Greenpoint,40.72276,-73.94856999999999,Private room,75,1,0,,1,0 +12848,50475515,Manhattan,East Village,40.724070000000005,-73.98236,Entire home/apt,140,12,0,,1,0 +12849,8546088,Manhattan,Upper West Side,40.8,-73.96404,Private room,100,2,42,1.02,1,0 +12850,17490821,Queens,Astoria,40.7609,-73.92288,Entire home/apt,100,3,1,0.02,1,0 +12851,18998261,Manhattan,Hell's Kitchen,40.76339,-73.99404,Private room,110,5,0,,1,0 +12852,23372553,Manhattan,Tribeca,40.71561,-74.00641999999999,Private room,75,1,1,0.02,1,0 +12853,4205782,Manhattan,Hell's Kitchen,40.762229999999995,-73.99296,Entire home/apt,150,4,0,,1,0 +12854,34202667,Brooklyn,Bushwick,40.69084,-73.92075,Private room,90,3,0,,1,0 +12855,41003664,Manhattan,Lower East Side,40.71282,-73.98448,Private room,70,9,2,0.05,1,0 +12856,5474579,Manhattan,East Harlem,40.796170000000004,-73.93451999999999,Entire home/apt,85,1,0,,1,0 +12857,50490104,Manhattan,Greenwich Village,40.72939,-74.00225,Entire home/apt,150,2,0,,1,0 +12858,22247089,Manhattan,Hell's Kitchen,40.76576,-73.98383000000001,Private room,145,2,51,1.19,1,139 +12859,36585734,Manhattan,East Village,40.72955,-73.98058,Private room,77,1,0,,1,0 +12860,4050348,Manhattan,Greenwich Village,40.72935,-74.00064,Private room,200,1,0,,1,0 +12861,2330750,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95021,Private room,60,3,4,0.13,1,0 +12862,3285138,Brooklyn,Williamsburg,40.71776,-73.9605,Private room,70,5,1,0.02,1,0 +12863,48705835,Manhattan,Chelsea,40.74566,-73.99989000000001,Entire home/apt,365,6,100,2.37,1,257 +12864,49347242,Manhattan,Hell's Kitchen,40.7682,-73.98467,Entire home/apt,180,1,3,0.08,1,0 +12865,10487850,Manhattan,Midtown,40.75287,-73.96708000000001,Entire home/apt,230,1,0,,1,0 +12866,12996782,Manhattan,Theater District,40.76278,-73.98178,Private room,79,7,0,,1,0 +12867,50520029,Brooklyn,Bushwick,40.69184,-73.90593,Private room,49,7,2,0.05,1,0 +12868,2329581,Manhattan,Nolita,40.72248,-73.99481,Private room,165,7,4,0.12,2,0 +12869,50523735,Brooklyn,Prospect-Lefferts Gardens,40.6576,-73.94609,Entire home/apt,140,2,131,3.06,1,273 +12870,4765305,Manhattan,East Village,40.722879999999996,-73.98454,Private room,72,1,3,0.08,4,201 +12871,30283594,Manhattan,Hell's Kitchen,40.76681,-73.98365,Entire home/apt,369,30,0,,121,331 +12872,50526314,Manhattan,Morningside Heights,40.81047,-73.95735,Private room,63,1,0,,1,0 +12873,16098958,Manhattan,Gramercy,40.735640000000004,-73.98611,Entire home/apt,165,30,2,0.05,96,321 +12874,30223110,Manhattan,Midtown,40.75134,-73.96807,Entire home/apt,112,4,1,0.03,1,0 +12875,10316525,Brooklyn,Williamsburg,40.71197,-73.96061,Entire home/apt,119,3,3,0.07,1,0 +12876,16098958,Manhattan,Hell's Kitchen,40.76565,-73.98586999999999,Entire home/apt,160,30,1,0.03,96,365 +12877,3829864,Brooklyn,Williamsburg,40.71907,-73.95434,Entire home/apt,170,2,6,0.32,1,0 +12878,3976298,Brooklyn,Prospect Heights,40.67815,-73.96823,Entire home/apt,995,5,1,0.02,1,89 +12879,50537550,Brooklyn,Bedford-Stuyvesant,40.68441,-73.91625,Entire home/apt,185,2,24,0.56,1,365 +12880,50539403,Manhattan,Tribeca,40.71819,-74.00833,Entire home/apt,500,4,0,,1,0 +12881,50539477,Manhattan,Harlem,40.8226,-73.95468000000001,Private room,48,30,100,2.31,2,183 +12882,50540315,Manhattan,Battery Park City,40.71775,-74.01509,Private room,150,3,0,,1,0 +12883,50541121,Manhattan,Hell's Kitchen,40.76385,-73.98669,Entire home/apt,199,2,137,3.14,1,317 +12884,16003028,Brooklyn,Greenpoint,40.72974,-73.95163000000001,Private room,80,5,2,0.05,1,0 +12885,13275669,Manhattan,Harlem,40.80145,-73.95428000000001,Private room,60,3,0,,1,0 +12886,24554945,Manhattan,Morningside Heights,40.80761,-73.95841,Entire home/apt,125,6,5,0.16,1,1 +12887,49861582,Manhattan,Lower East Side,40.71209,-73.98794000000001,Private room,62,28,2,0.05,1,0 +12888,17557243,Manhattan,Harlem,40.8216,-73.95583,Shared room,60,1,0,,1,0 +12889,1106592,Manhattan,Upper West Side,40.79502,-73.96703000000001,Entire home/apt,600,3,0,,1,0 +12890,22159648,Brooklyn,Williamsburg,40.70657,-73.94234,Private room,75,1,2,0.21,2,0 +12891,2290932,Brooklyn,Fort Greene,40.685790000000004,-73.97455,Entire home/apt,80,2,4,0.17,1,0 +12892,22440410,Manhattan,SoHo,40.72688,-74.00058,Entire home/apt,195,2,1,0.02,1,0 +12893,50583919,Manhattan,Hell's Kitchen,40.75992,-73.9879,Private room,68,3,1,0.02,1,0 +12894,50584770,Manhattan,East Village,40.72246,-73.98006,Private room,45,14,0,,1,0 +12895,4400935,Brooklyn,Bedford-Stuyvesant,40.682590000000005,-73.92358,Entire home/apt,90,2,5,0.12,1,0 +12896,16352538,Manhattan,Hell's Kitchen,40.76379,-73.99378,Entire home/apt,200,2,1,0.02,1,0 +12897,50588693,Queens,Astoria,40.76125,-73.91008000000001,Private room,30,1,0,,1,0 +12898,50588394,Manhattan,Harlem,40.82391,-73.93881,Private room,80,1,28,0.72,1,364 +12899,1010435,Manhattan,East Village,40.727920000000005,-73.98718000000001,Entire home/apt,125,7,4,0.17,1,1 +12900,50591230,Brooklyn,Bushwick,40.695570000000004,-73.9315,Private room,70,1,0,,1,0 +12901,23914377,Brooklyn,Bushwick,40.70179,-73.93689,Private room,50,1,0,,1,0 +12902,50593630,Brooklyn,Crown Heights,40.67239,-73.93225,Private room,110,1,6,0.14,1,0 +12903,50593964,Manhattan,Upper East Side,40.77641,-73.95505,Entire home/apt,199,4,1,0.02,1,0 +12904,4119786,Brooklyn,Prospect Heights,40.6733,-73.9647,Private room,40,1,1,0.02,2,0 +12905,46256682,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95019,Private room,65,5,10,0.49,1,3 +12906,25153542,Manhattan,Hell's Kitchen,40.76057,-73.99038,Private room,85,1,1,0.02,1,0 +12907,18195071,Brooklyn,Williamsburg,40.71481,-73.95475,Entire home/apt,160,3,0,,1,0 +12908,24175837,Manhattan,Kips Bay,40.74423,-73.97742,Private room,69,4,107,2.5,2,0 +12909,50600973,Brooklyn,Bushwick,40.694520000000004,-73.9284,Private room,42,1,216,5.0,7,61 +12910,50601765,Manhattan,Kips Bay,40.74195,-73.98241999999999,Entire home/apt,120,2,4,0.11,1,0 +12911,19103161,Brooklyn,Greenpoint,40.72691,-73.94802,Entire home/apt,150,1,0,,1,0 +12912,1583768,Manhattan,Harlem,40.799820000000004,-73.95375,Entire home/apt,130,2,18,0.42,1,0 +12913,1570949,Brooklyn,South Slope,40.66817,-73.98774,Private room,85,2,0,,1,0 +12914,9055412,Brooklyn,Williamsburg,40.70663,-73.94700999999999,Private room,100,1,0,,1,0 +12915,28768715,Manhattan,Murray Hill,40.74852,-73.97521,Entire home/apt,210,3,59,1.54,1,248 +12916,5385509,Brooklyn,Crown Heights,40.675340000000006,-73.94958000000001,Private room,28,14,3,0.07,1,0 +12917,18215000,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95345,Private room,60,2,1,0.03,1,0 +12918,820010,Brooklyn,Bedford-Stuyvesant,40.6913,-73.9406,Private room,60,1,113,2.66,3,332 +12919,15312389,Brooklyn,Bedford-Stuyvesant,40.68752,-73.9567,Entire home/apt,140,2,5,0.12,1,0 +12920,25752230,Brooklyn,Bushwick,40.692240000000005,-73.91834,Private room,69,2,0,,1,0 +12921,15163256,Brooklyn,Sheepshead Bay,40.605959999999996,-73.95671999999999,Private room,73,3,77,2.04,3,354 +12922,15163256,Brooklyn,Sheepshead Bay,40.60666,-73.9575,Private room,67,3,62,1.65,3,338 +12923,49453860,Queens,Forest Hills,40.72126,-73.84541999999999,Entire home/apt,123,1,0,,1,0 +12924,50638417,Manhattan,East Harlem,40.784420000000004,-73.94722,Entire home/apt,110,5,70,1.81,2,310 +12925,50640005,Manhattan,Greenwich Village,40.73393,-73.9982,Entire home/apt,250,2,0,,1,0 +12926,15584022,Manhattan,Upper West Side,40.77633,-73.97932,Entire home/apt,80,5,7,0.16,1,0 +12927,45911716,Manhattan,East Village,40.72804,-73.97638,Entire home/apt,325,3,17,0.46,1,0 +12928,47785416,Manhattan,Upper East Side,40.78333,-73.94996,Entire home/apt,300,1,0,,1,0 +12929,2409133,Brooklyn,Williamsburg,40.70848,-73.94584,Private room,44,47,7,0.16,1,0 +12930,33908393,Manhattan,Tribeca,40.71982,-74.01134,Entire home/apt,197,1,0,,1,0 +12931,50656310,Manhattan,Hell's Kitchen,40.76487,-73.99143000000001,Private room,60,21,0,,1,0 +12932,10664416,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9196,Entire home/apt,165,3,36,4.37,2,274 +12933,38064272,Brooklyn,Bedford-Stuyvesant,40.68535,-73.95036,Private room,30,1,3,0.11,1,0 +12934,16209547,Brooklyn,Fort Hamilton,40.61634,-74.03378000000001,Private room,120,2,9,0.23,2,365 +12935,46080859,Brooklyn,Bedford-Stuyvesant,40.68307,-73.92894,Entire home/apt,119,5,13,0.3,1,3 +12936,48939879,Brooklyn,Bushwick,40.703109999999995,-73.91264,Private room,39,10,2,0.28,1,0 +12937,5904463,Manhattan,East Village,40.724509999999995,-73.98369,Entire home/apt,250,1,0,,4,0 +12938,18982207,Brooklyn,Brooklyn Heights,40.692370000000004,-73.99412,Entire home/apt,130,4,0,,1,0 +12939,1426080,Manhattan,Upper West Side,40.78763,-73.97204,Private room,100,3,21,0.49,2,0 +12940,12745771,Manhattan,Washington Heights,40.855090000000004,-73.93236,Private room,28,1,1,0.02,1,0 +12941,3510997,Manhattan,Harlem,40.82545,-73.94969,Entire home/apt,149,31,24,0.58,1,149 +12942,3250450,Queens,Astoria,40.76036,-73.92399999999999,Private room,39,18,0,,18,310 +12943,5657756,Manhattan,East Village,40.72464,-73.98861,Entire home/apt,225,4,7,0.19,1,0 +12944,11303788,Brooklyn,Williamsburg,40.71229,-73.95695,Private room,100,14,0,,1,88 +12945,14018666,Brooklyn,Sheepshead Bay,40.586999999999996,-73.95588000000001,Private room,45,1,9,0.22,1,0 +12946,3242525,Manhattan,West Village,40.73113,-74.00314,Entire home/apt,120,4,1,0.03,1,0 +12947,25131945,Manhattan,Upper West Side,40.78528,-73.98091,Entire home/apt,99,2,5,0.12,1,0 +12948,50678424,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94793,Entire home/apt,206,1,35,0.81,2,365 +12949,50638417,Manhattan,East Harlem,40.79088,-73.94261,Entire home/apt,120,5,52,1.29,2,323 +12950,50680790,Manhattan,Financial District,40.7088,-74.01455,Entire home/apt,275,2,0,,1,0 +12951,50681342,Manhattan,Hell's Kitchen,40.76542,-73.98702,Entire home/apt,290,2,55,1.37,1,0 +12952,145616,Manhattan,Greenwich Village,40.73238,-73.99517,Entire home/apt,300,3,0,,1,0 +12953,4210456,Manhattan,Morningside Heights,40.80638,-73.96245,Entire home/apt,75,15,0,,1,0 +12954,3820569,Brooklyn,Greenpoint,40.735279999999996,-73.95647,Entire home/apt,80,3,2,0.06,1,0 +12955,50686888,Brooklyn,East New York,40.6682,-73.88541,Entire home/apt,150,30,16,0.37,1,365 +12956,92272,Manhattan,Gramercy,40.73307,-73.9835,Private room,80,2,23,0.54,3,362 +12957,50687223,Brooklyn,Prospect-Lefferts Gardens,40.66044,-73.96114,Entire home/apt,70,6,4,0.09,1,0 +12958,29241227,Brooklyn,Kensington,40.64689,-73.97446,Entire home/apt,130,4,1,0.02,2,0 +12959,44791860,Brooklyn,Prospect-Lefferts Gardens,40.661120000000004,-73.95461999999999,Private room,50,1,0,,1,0 +12960,9523962,Brooklyn,Prospect-Lefferts Gardens,40.662009999999995,-73.95352,Entire home/apt,125,9,10,0.24,1,0 +12961,23806994,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.96003,Entire home/apt,150,2,1,0.02,1,0 +12962,1761447,Brooklyn,Williamsburg,40.71032,-73.95345,Entire home/apt,290,6,1,0.04,2,95 +12963,50690190,Manhattan,Greenwich Village,40.729690000000005,-74.00117,Entire home/apt,210,1,0,,1,0 +12964,1134635,Manhattan,Midtown,40.742509999999996,-73.98414,Entire home/apt,150,2,1,0.03,1,0 +12965,2580352,Brooklyn,Bushwick,40.69923,-73.9308,Entire home/apt,129,7,5,0.12,1,0 +12966,20271650,Bronx,Mott Haven,40.81192,-73.90949,Private room,64,3,36,0.84,1,1 +12967,21269488,Manhattan,East Village,40.73145,-73.98384,Private room,100,3,1,0.02,1,0 +12968,7511881,Manhattan,East Village,40.726079999999996,-73.97843,Private room,60,2,1,0.02,1,0 +12969,12871485,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.94628,Entire home/apt,120,2,9,0.21,1,0 +12970,16098958,Manhattan,Hell's Kitchen,40.7665,-73.98675,Entire home/apt,180,30,6,0.16,96,255 +12971,50727041,Manhattan,Morningside Heights,40.81536,-73.96246,Private room,45,15,0,,1,0 +12972,7033731,Manhattan,East Village,40.7243,-73.97684,Private room,90,3,40,0.94,1,0 +12973,33889947,Manhattan,SoHo,40.72767,-74.00344,Entire home/apt,200,2,20,0.48,1,0 +12974,30283594,Manhattan,Midtown,40.76482,-73.98216,Entire home/apt,239,30,0,,121,351 +12975,5259567,Manhattan,Tribeca,40.71813,-74.00509,Entire home/apt,139,5,0,,1,0 +12976,30283594,Manhattan,Hell's Kitchen,40.76667,-73.98340999999999,Entire home/apt,279,30,0,,121,352 +12977,43943644,Brooklyn,Greenpoint,40.72612,-73.95113,Private room,95,1,0,,1,0 +12978,18282,Manhattan,Lower East Side,40.71813,-73.98715,Private room,70,1,3,0.07,1,0 +12979,3709185,Manhattan,Inwood,40.87045,-73.91765,Entire home/apt,90,5,4,0.09,1,0 +12980,50729557,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95470999999999,Private room,70,2,63,1.46,1,322 +12981,8033291,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94678,Entire home/apt,94,4,6,0.16,1,0 +12982,6355999,Manhattan,Chelsea,40.74387,-74.00134,Entire home/apt,250,2,3,0.07,1,0 +12983,29941633,Manhattan,Tribeca,40.71454,-74.00816,Entire home/apt,850,4,0,,1,0 +12984,1433657,Brooklyn,Williamsburg,40.70888,-73.95622,Private room,85,2,37,0.95,2,334 +12985,50451849,Queens,Astoria,40.76993,-73.91762,Entire home/apt,65,2,92,2.19,1,12 +12986,30283594,Manhattan,Midtown,40.76704,-73.98153,Entire home/apt,369,30,1,0.02,121,345 +12987,7611383,Manhattan,Hell's Kitchen,40.76457,-73.98525,Private room,200,3,0,,1,0 +12988,10237786,Queens,Ditmars Steinway,40.782740000000004,-73.91318000000001,Entire home/apt,88,3,117,2.88,1,192 +12989,50750250,Manhattan,Harlem,40.80728,-73.94986999999999,Entire home/apt,65,1,3,0.07,1,0 +12990,30283594,Manhattan,Theater District,40.75943,-73.98302,Entire home/apt,239,30,0,,121,363 +12991,24120303,Brooklyn,Williamsburg,40.70848,-73.94945,Private room,79,1,13,0.3,1,0 +12992,30283594,Manhattan,Theater District,40.76064,-73.98554,Entire home/apt,239,30,0,,121,363 +12993,30283594,Manhattan,Theater District,40.75864,-73.98196999999999,Entire home/apt,239,30,0,,121,363 +12994,30283594,Manhattan,Theater District,40.76105,-73.98638000000001,Entire home/apt,239,30,1,0.07,121,363 +12995,50755667,Brooklyn,Park Slope,40.66854,-73.98482,Entire home/apt,120,3,71,2.12,3,200 +12996,3965200,Manhattan,Financial District,40.70629,-74.0098,Private room,175,3,55,2.95,1,26 +12997,5559432,Manhattan,Upper West Side,40.79322,-73.96726,Entire home/apt,200,5,2,0.05,1,0 +12998,32787246,Manhattan,Upper West Side,40.80383,-73.96793000000001,Entire home/apt,103,3,1,0.02,1,0 +12999,50761842,Manhattan,Chelsea,40.74443,-74.00259,Entire home/apt,80,5,0,,1,0 +13000,50762019,Brooklyn,Bay Ridge,40.632659999999994,-74.0284,Private room,80,1,1,0.02,1,0 +13001,7532013,Brooklyn,Fort Greene,40.694309999999994,-73.97316,Private room,60,3,1,0.02,1,0 +13002,18900298,Brooklyn,Greenpoint,40.72522,-73.95124,Private room,50,1,0,,1,0 +13003,11402864,Brooklyn,Crown Heights,40.66891,-73.9533,Private room,50,2,4,0.1,1,0 +13004,39322,Manhattan,Midtown,40.74612,-73.98948,Entire home/apt,145,21,0,,1,0 +13005,3011547,Brooklyn,Boerum Hill,40.68651,-73.98624000000001,Entire home/apt,425,14,4,0.09,3,205 +13006,38795245,Manhattan,Greenwich Village,40.73418,-73.99887,Entire home/apt,275,10,0,,1,0 +13007,50769650,Manhattan,Midtown,40.74501,-73.98574,Private room,150,4,0,,1,0 +13008,50770601,Manhattan,Midtown,40.75622,-73.96467,Entire home/apt,229,1,0,,5,306 +13009,50770601,Manhattan,Gramercy,40.73683,-73.97926,Entire home/apt,200,1,1,0.03,5,335 +13010,50772475,Manhattan,Lower East Side,40.7201,-73.98984,Entire home/apt,300,3,1,0.02,1,0 +13011,50772718,Brooklyn,Flatbush,40.63443,-73.96703000000001,Private room,47,4,2,0.05,1,0 +13012,13757674,Manhattan,Chelsea,40.74807,-74.00209,Entire home/apt,200,3,0,,1,0 +13013,26920640,Manhattan,Gramercy,40.73637,-73.98106999999999,Entire home/apt,200,2,2,0.05,1,0 +13014,109879,Manhattan,Hell's Kitchen,40.76355,-73.98815,Entire home/apt,180,7,5,0.19,1,0 +13015,314008,Manhattan,Midtown,40.75247,-73.97196,Entire home/apt,270,4,8,0.19,1,0 +13016,50680795,Manhattan,Harlem,40.82976,-73.94663,Private room,30,8,1,0.02,1,0 +13017,8013847,Brooklyn,Williamsburg,40.70774,-73.94139,Entire home/apt,170,2,17,0.44,2,270 +13018,29111960,Manhattan,Lower East Side,40.72168,-73.99183000000001,Private room,55,7,1,0.02,1,0 +13019,4498059,Brooklyn,Bushwick,40.704190000000004,-73.92114000000001,Entire home/apt,185,2,0,,1,0 +13020,7410082,Brooklyn,Greenpoint,40.72515,-73.9397,Private room,30,8,1,0.02,1,0 +13021,30283594,Manhattan,Theater District,40.761179999999996,-73.98535,Entire home/apt,139,30,1,0.04,121,306 +13022,14811787,Manhattan,Upper East Side,40.76678,-73.95170999999999,Private room,101,3,4,0.15,2,345 +13023,36830075,Manhattan,Harlem,40.8292,-73.94874,Private room,85,4,0,,2,0 +13024,37401126,Brooklyn,East Flatbush,40.64165,-73.94062,Private room,50,2,32,0.74,4,362 +13025,22967540,Brooklyn,Bushwick,40.700790000000005,-73.92095,Private room,38,7,3,0.07,1,0 +13026,1869332,Brooklyn,Williamsburg,40.71947,-73.95676999999999,Entire home/apt,219,30,3,0.09,3,36 +13027,48059119,Manhattan,Midtown,40.74673,-73.98666999999999,Private room,325,1,0,,3,360 +13028,1090021,Brooklyn,Williamsburg,40.714,-73.94062,Entire home/apt,100,20,0,,1,51 +13029,5229579,Brooklyn,Williamsburg,40.718109999999996,-73.96222,Private room,69,3,0,,3,0 +13030,50831724,Manhattan,Hell's Kitchen,40.76234,-73.98732,Entire home/apt,275,2,6,0.15,1,0 +13031,30283594,Manhattan,Upper East Side,40.762570000000004,-73.95915,Entire home/apt,249,30,1,0.06,121,273 +13032,30283594,Manhattan,Upper East Side,40.76429,-73.95774,Entire home/apt,249,30,0,,121,272 +13033,30283594,Manhattan,Midtown,40.7655,-73.98308,Entire home/apt,239,30,0,,121,352 +13034,3460956,Manhattan,Washington Heights,40.85884,-73.93356,Entire home/apt,100,5,13,0.35,1,0 +13035,2569188,Brooklyn,Bushwick,40.70021,-73.94081,Private room,49,1,2,0.05,1,0 +13036,30283594,Manhattan,Midtown,40.76555,-73.98224,Entire home/apt,239,30,0,,121,351 +13037,21222224,Brooklyn,Bedford-Stuyvesant,40.68243,-73.9534,Entire home/apt,150,2,2,0.06,2,364 +13038,30283594,Manhattan,Hell's Kitchen,40.76702,-73.9834,Entire home/apt,239,30,0,,121,352 +13039,30283594,Manhattan,Midtown,40.76693,-73.98139,Entire home/apt,239,30,0,,121,352 +13040,5913612,Queens,Astoria,40.76197,-73.92208000000001,Entire home/apt,150,1,1,0.02,1,0 +13041,23500650,Manhattan,West Village,40.7385,-74.00378,Entire home/apt,200,1,0,,1,0 +13042,50839249,Manhattan,Chelsea,40.74836,-73.99031,Private room,50,7,0,,1,0 +13043,30283594,Manhattan,Midtown,40.76665,-73.98281,Entire home/apt,190,30,1,0.04,121,286 +13044,5229579,Brooklyn,Williamsburg,40.71801,-73.96405,Private room,59,3,0,,3,0 +13045,7408257,Brooklyn,Bedford-Stuyvesant,40.6948,-73.95101,Private room,40,15,0,,1,0 +13046,50068597,Staten Island,Stapleton,40.63516,-74.07735,Private room,52,2,137,3.17,3,340 +13047,4483467,Brooklyn,Greenpoint,40.73081,-73.95466,Entire home/apt,89,2,2,0.07,1,0 +13048,30283594,Manhattan,Hell's Kitchen,40.76704,-73.98355,Entire home/apt,369,30,3,0.07,121,345 +13049,50846116,Manhattan,Lower East Side,40.72156,-73.98866,Entire home/apt,100,5,0,,1,0 +13050,21966105,Brooklyn,Williamsburg,40.720490000000005,-73.95894,Private room,90,6,2,0.16,1,331 +13051,22962853,Manhattan,Upper East Side,40.78306,-73.94581,Entire home/apt,115,2,8,0.18,1,0 +13052,8936829,Manhattan,Lower East Side,40.72282,-73.98908,Private room,150,20,0,,1,0 +13053,16177882,Manhattan,Midtown,40.76566,-73.97873,Entire home/apt,400,1,0,,1,0 +13054,47653056,Queens,Long Island City,40.75342,-73.9237,Private room,66,7,1,0.02,1,0 +13055,17108566,Manhattan,East Village,40.73271,-73.98638000000001,Entire home/apt,180,2,0,,1,0 +13056,40302046,Manhattan,West Village,40.73194,-74.00241,Entire home/apt,149,3,0,,1,0 +13057,1762558,Manhattan,East Village,40.72143,-73.97892,Private room,89,2,24,0.56,1,0 +13058,42453789,Manhattan,Chelsea,40.74192,-73.99677,Entire home/apt,85,7,0,,1,0 +13059,37306329,Manhattan,Chinatown,40.71632,-73.99328,Private room,67,4,0,,1,0 +13060,50857647,Brooklyn,Crown Heights,40.67797,-73.95397,Private room,75,14,0,,1,0 +13061,221266,Manhattan,East Harlem,40.79108,-73.94641999999999,Private room,94,2,3,0.07,1,0 +13062,17023017,Brooklyn,Crown Heights,40.66555,-73.95613,Private room,80,2,0,,1,0 +13063,33499326,Manhattan,Upper West Side,40.799609999999994,-73.96654000000001,Private room,70,15,2,0.05,1,0 +13064,8119817,Brooklyn,Williamsburg,40.71821,-73.94116,Private room,115,2,0,,2,121 +13065,31534322,Queens,Long Island City,40.7484,-73.94604,Private room,90,2,59,1.37,4,33 +13066,56326,Brooklyn,Flatbush,40.65234,-73.95329,Entire home/apt,155,1,1,0.02,1,0 +13067,10456845,Queens,Astoria,40.75764,-73.92283,Private room,65,1,2,0.05,2,0 +13068,1418854,Manhattan,Harlem,40.83021,-73.94765,Private room,60,2,0,,1,0 +13069,50894847,Manhattan,Upper East Side,40.7692,-73.96754,Entire home/apt,149,1,1,0.02,1,0 +13070,31534322,Queens,Long Island City,40.7484,-73.94651,Private room,70,2,113,2.6,4,63 +13071,50448556,Manhattan,Harlem,40.80489,-73.95170999999999,Private room,100,2,1,0.02,5,0 +13072,49120239,Manhattan,Harlem,40.814370000000004,-73.93833000000001,Entire home/apt,120,7,0,,1,0 +13073,50760546,Manhattan,Murray Hill,40.746359999999996,-73.9783,Entire home/apt,150,30,1,0.02,31,125 +13074,40709140,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94758,Entire home/apt,160,1,0,,1,0 +13075,19529891,Manhattan,Upper East Side,40.7687,-73.9556,Entire home/apt,135,3,0,,1,0 +13076,9995094,Queens,Long Island City,40.74691,-73.95348,Entire home/apt,200,3,93,2.17,1,86 +13077,10836122,Brooklyn,Greenpoint,40.72522,-73.94022,Private room,50,1,1,0.02,1,0 +13078,2574856,Manhattan,Nolita,40.72051,-73.99513,Entire home/apt,225,2,29,0.68,1,176 +13079,34991003,Brooklyn,East Flatbush,40.6458,-73.92384,Private room,35,7,9,0.39,3,326 +13080,50914877,Manhattan,Harlem,40.8185,-73.9442,Private room,45,4,1,0.02,1,0 +13081,3879284,Manhattan,Upper West Side,40.77578,-73.97794,Private room,140,2,16,0.47,1,0 +13082,1345812,Manhattan,East Harlem,40.79795,-73.9442,Entire home/apt,160,13,21,0.88,1,0 +13083,34991003,Brooklyn,East Flatbush,40.64604,-73.92511,Private room,35,3,19,0.47,3,272 +13084,914972,Brooklyn,Prospect Heights,40.67946,-73.96494,Entire home/apt,125,2,7,0.19,1,0 +13085,6567286,Manhattan,Financial District,40.70844,-74.0124,Entire home/apt,160,3,1,0.02,1,0 +13086,1904415,Manhattan,Upper West Side,40.77789,-73.97700999999999,Entire home/apt,180,1,0,,1,0 +13087,50904121,Manhattan,Upper West Side,40.78366,-73.97899,Entire home/apt,179,2,5,0.12,1,0 +13088,2350080,Manhattan,Upper West Side,40.8004,-73.96849,Entire home/apt,120,9,0,,1,0 +13089,35407948,Brooklyn,Greenpoint,40.737390000000005,-73.95568,Private room,70,1,2,0.05,1,0 +13090,5325431,Brooklyn,Williamsburg,40.71374,-73.96336,Private room,68,2,0,,1,0 +13091,50448556,Manhattan,Harlem,40.80519,-73.95091,Private room,100,6,0,,5,0 +13092,6079156,Manhattan,West Village,40.73434,-74.00461999999999,Entire home/apt,300,4,104,2.46,1,58 +13093,50925964,Manhattan,Chinatown,40.71844,-74.00228,Entire home/apt,152,3,16,0.37,1,0 +13094,10396448,Manhattan,East Village,40.726259999999996,-73.97822,Private room,100,1,4,0.09,1,0 +13095,3631872,Manhattan,Midtown,40.75342,-73.98729,Entire home/apt,200,4,3,0.07,1,0 +13096,15869370,Manhattan,East Village,40.73036,-73.98673000000001,Entire home/apt,250,7,20,0.47,1,13 +13097,246710,Manhattan,Harlem,40.8235,-73.95139,Entire home/apt,200,2,0,,1,0 +13098,11940121,Manhattan,Greenwich Village,40.73007,-74.00193,Entire home/apt,200,2,2,0.05,1,0 +13099,50939666,Manhattan,Hell's Kitchen,40.76109,-73.99417,Entire home/apt,245,2,1,0.03,1,0 +13100,7655328,Manhattan,Greenwich Village,40.727909999999994,-73.99996999999999,Private room,79,1,3,0.07,3,0 +13101,50943387,Manhattan,Lower East Side,40.71759,-73.9842,Entire home/apt,175,1,1,0.02,1,0 +13102,15381858,Brooklyn,Clinton Hill,40.68336,-73.96122,Private room,45,1,0,,1,0 +13103,29505367,Manhattan,East Village,40.72738,-73.98076,Entire home/apt,180,3,0,,1,0 +13104,17131739,Manhattan,Midtown,40.7415,-73.98354,Entire home/apt,139,7,1,0.02,1,0 +13105,1999466,Brooklyn,Williamsburg,40.71432,-73.94615,Entire home/apt,220,2,25,0.65,1,5 +13106,14537404,Brooklyn,Fort Greene,40.69283,-73.98061,Private room,70,2,6,0.14,1,0 +13107,33021531,Brooklyn,Prospect-Lefferts Gardens,40.661840000000005,-73.96001,Private room,99,1,186,4.73,1,232 +13108,66286,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94138000000001,Entire home/apt,120,3,3,0.08,2,0 +13109,50988308,Brooklyn,Gowanus,40.66896,-73.9918,Entire home/apt,178,2,12,0.56,1,0 +13110,24919557,Manhattan,Morningside Heights,40.807559999999995,-73.96724,Private room,55,21,0,,1,0 +13111,50994782,Brooklyn,Fort Greene,40.68974,-73.97316,Entire home/apt,124,2,20,0.49,1,0 +13112,50997070,Manhattan,East Village,40.72964,-73.98095,Entire home/apt,380,1,0,,1,0 +13113,22954228,Brooklyn,Prospect-Lefferts Gardens,40.65433,-73.96117,Private room,55,3,0,,2,0 +13114,50997424,Queens,Middle Village,40.71578,-73.87713000000001,Entire home/apt,250,7,5,0.13,2,363 +13115,6896056,Brooklyn,Williamsburg,40.71569,-73.93735,Entire home/apt,180,7,0,,1,0 +13116,50997424,Queens,Ridgewood,40.70422,-73.8984,Entire home/apt,375,4,5,0.13,2,364 +13117,15445809,Manhattan,Greenwich Village,40.73383,-73.99899,Entire home/apt,200,2,0,,1,0 +13118,36054372,Manhattan,Chinatown,40.714009999999995,-73.99063000000001,Entire home/apt,180,1,0,,1,0 +13119,11546043,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95934,Private room,65,28,11,0.26,3,320 +13120,51002691,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94537,Entire home/apt,65,1,0,,1,0 +13121,19844147,Brooklyn,Bedford-Stuyvesant,40.68125,-73.94044,Private room,60,3,8,0.58,1,296 +13122,49964890,Manhattan,Hell's Kitchen,40.76684,-73.98765999999999,Private room,60,1,1,0.02,1,0 +13123,51009239,Brooklyn,South Slope,40.662490000000005,-73.97921,Private room,45,1,1,0.02,1,0 +13124,3400687,Brooklyn,Flatbush,40.653529999999996,-73.95528,Private room,50,1,0,,1,0 +13125,5879729,Brooklyn,Williamsburg,40.7138,-73.94581,Entire home/apt,74,1,1,0.02,2,27 +13126,17646340,Brooklyn,Williamsburg,40.70293,-73.94279,Private room,50,7,26,0.63,2,0 +13127,26714887,Brooklyn,Greenpoint,40.73036,-73.95453,Private room,60,1,3,0.07,2,0 +13128,29413554,Manhattan,Flatiron District,40.739259999999994,-73.98758000000001,Entire home/apt,150,1,1,0.02,1,0 +13129,10799035,Brooklyn,Williamsburg,40.70728,-73.94144,Private room,55,1,0,,1,0 +13130,2955215,Brooklyn,Williamsburg,40.71255,-73.94881,Entire home/apt,40,1,95,2.24,1,7 +13131,51021121,Manhattan,Lower East Side,40.7202,-73.98284,Private room,120,1,1,0.02,1,0 +13132,46887682,Brooklyn,Bushwick,40.7049,-73.92,Private room,35,1,1,0.02,1,0 +13133,1455309,Manhattan,Greenwich Village,40.7274,-73.99991,Entire home/apt,250,3,0,,1,0 +13134,432318,Brooklyn,Kensington,40.644,-73.98091,Entire home/apt,85,7,3,0.14,1,0 +13135,16616941,Manhattan,Murray Hill,40.74807,-73.98091,Private room,125,1,0,,1,0 +13136,6161265,Manhattan,Hell's Kitchen,40.75578,-73.99523,Private room,146,2,26,0.6,1,30 +13137,51027744,Brooklyn,Crown Heights,40.67621,-73.94913000000001,Private room,99,1,4,0.12,1,342 +13138,30283911,Brooklyn,Bushwick,40.69924,-73.92392,Private room,69,2,1,0.02,1,0 +13139,22414947,Brooklyn,Williamsburg,40.71147,-73.96745,Private room,70,1,1,0.02,1,0 +13140,23599716,Brooklyn,Williamsburg,40.718959999999996,-73.9592,Entire home/apt,159,3,6,0.15,2,0 +13141,27371503,Brooklyn,Bedford-Stuyvesant,40.683890000000005,-73.92659,Private room,40,1,0,,1,0 +13142,22553147,Brooklyn,Williamsburg,40.710809999999995,-73.94060999999999,Private room,65,2,15,5.62,3,155 +13143,10677584,Brooklyn,Greenpoint,40.73271,-73.95751,Private room,45,30,5,0.14,4,0 +13144,61042,Manhattan,Harlem,40.821979999999996,-73.95418000000001,Private room,42,5,7,0.16,6,24 +13145,31222791,Brooklyn,Prospect-Lefferts Gardens,40.659859999999995,-73.96163,Entire home/apt,100,1,15,0.35,1,0 +13146,2670322,Brooklyn,Bedford-Stuyvesant,40.6894,-73.9518,Private room,40,2,0,,1,0 +13147,51006349,Brooklyn,Williamsburg,40.71269,-73.94979000000001,Entire home/apt,175,2,16,0.37,1,364 +13148,51024536,Brooklyn,Sheepshead Bay,40.59195,-73.94639000000001,Private room,500,30,0,,2,173 +13149,12838834,Manhattan,Lower East Side,40.72143,-73.98434,Private room,90,5,5,0.12,2,0 +13150,51024536,Brooklyn,Crown Heights,40.66565,-73.95006,Entire home/apt,400,30,0,,2,173 +13151,28565101,Brooklyn,Gowanus,40.67264,-73.98801999999999,Entire home/apt,130,2,45,1.05,1,58 +13152,19242683,Manhattan,East Harlem,40.78929,-73.94178000000001,Shared room,70,1,4,0.09,1,0 +13153,1504702,Brooklyn,Clinton Hill,40.693529999999996,-73.96784,Private room,48,1,2,0.05,1,0 +13154,30283594,Manhattan,Financial District,40.70749,-74.01413000000001,Entire home/apt,169,30,2,0.06,121,364 +13155,970003,Manhattan,Morningside Heights,40.81218,-73.96112,Entire home/apt,200,3,1,0.03,1,0 +13156,2239025,Brooklyn,South Slope,40.66495,-73.98989,Entire home/apt,100,3,0,,1,0 +13157,17543924,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92987,Private room,50,6,8,0.19,1,0 +13158,1714427,Brooklyn,Bedford-Stuyvesant,40.67902,-73.94747,Entire home/apt,80,30,7,0.16,1,0 +13159,13169974,Manhattan,Upper West Side,40.78048,-73.98210999999999,Entire home/apt,200,1,11,0.26,1,0 +13160,30283594,Manhattan,Upper East Side,40.76453,-73.95911,Entire home/apt,369,30,0,,121,297 +13161,50760546,Manhattan,Midtown,40.76625,-73.97886,Entire home/apt,215,29,4,0.11,31,146 +13162,50760546,Manhattan,Midtown,40.76542,-73.97844,Entire home/apt,249,30,5,0.12,31,125 +13163,50760546,Manhattan,Midtown,40.74892,-73.9828,Entire home/apt,110,30,7,0.17,31,179 +13164,50760546,Manhattan,Midtown,40.74909,-73.98253000000001,Entire home/apt,110,30,1,0.02,31,145 +13165,45928403,Brooklyn,Bushwick,40.69525,-73.90848000000001,Private room,30,1,0,,1,0 +13166,1968682,Brooklyn,Williamsburg,40.70926,-73.95036999999999,Private room,50,2,0,,1,0 +13167,5417308,Brooklyn,South Slope,40.66557,-73.97896,Entire home/apt,86,30,1,0.02,1,0 +13168,51087754,Manhattan,Roosevelt Island,40.760459999999995,-73.95125,Private room,79,2,3,0.07,1,0 +13169,14314420,Brooklyn,South Slope,40.66086,-73.98421,Entire home/apt,150,2,21,0.82,1,11 +13170,51088203,Manhattan,Chelsea,40.746759999999995,-73.99562,Entire home/apt,199,4,52,1.25,1,1 +13171,793833,Brooklyn,Bedford-Stuyvesant,40.6793,-73.91968,Entire home/apt,85,2,133,3.25,1,34 +13172,51099309,Manhattan,Inwood,40.86615,-73.92331999999999,Private room,50,1,0,,1,0 +13173,20765208,Manhattan,Upper West Side,40.78148,-73.97869,Entire home/apt,140,4,0,,1,0 +13174,26444500,Queens,Sunnyside,40.74024,-73.92428000000001,Private room,59,1,0,,1,0 +13175,37441611,Manhattan,Upper West Side,40.784690000000005,-73.9738,Entire home/apt,330,2,119,2.78,1,258 +13176,19758408,Brooklyn,Williamsburg,40.71817,-73.95635,Entire home/apt,175,2,3,0.08,1,0 +13177,50615055,Manhattan,Chinatown,40.71521,-73.99606,Private room,91,1,1,0.02,1,0 +13178,19878684,Queens,Ozone Park,40.68247,-73.84368,Shared room,25,10,0,,1,0 +13179,47060168,Brooklyn,Bedford-Stuyvesant,40.69345,-73.93304,Entire home/apt,75,7,2,0.05,1,0 +13180,51105827,Manhattan,Battery Park City,40.71192,-74.01572,Entire home/apt,225,90,1,0.02,1,362 +13181,51108205,Manhattan,Hell's Kitchen,40.763220000000004,-73.99354,Private room,66,2,0,,1,0 +13182,23193,Brooklyn,Bedford-Stuyvesant,40.688179999999996,-73.93826,Private room,40,1,4,0.12,4,365 +13183,663517,Manhattan,Lower East Side,40.71908,-73.98633000000001,Entire home/apt,174,2,142,3.31,1,198 +13184,14521821,Brooklyn,Brooklyn Heights,40.692609999999995,-73.99252,Entire home/apt,200,2,2,0.05,1,0 +13185,12574877,Manhattan,Hell's Kitchen,40.76443,-73.98728,Entire home/apt,150,1,65,1.56,1,186 +13186,8515724,Brooklyn,Williamsburg,40.70896,-73.94129000000001,Private room,102,1,30,0.7,3,10 +13187,51137245,Manhattan,Greenwich Village,40.727779999999996,-73.99899,Private room,85,2,0,,1,0 +13188,820010,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94204,Private room,76,1,25,0.58,3,141 +13189,2361525,Brooklyn,Crown Heights,40.67565,-73.91582,Shared room,75,1,2,0.19,1,318 +13190,3598016,Manhattan,Lower East Side,40.71607,-73.98439,Entire home/apt,135,2,0,,1,0 +13191,1397160,Manhattan,Kips Bay,40.74238,-73.97652,Entire home/apt,175,2,1,0.02,1,0 +13192,201232,Brooklyn,Williamsburg,40.711040000000004,-73.96287,Entire home/apt,100,5,3,0.07,1,0 +13193,40597585,Manhattan,Lower East Side,40.71282,-73.98915,Entire home/apt,145,3,70,1.64,1,230 +13194,10677584,Brooklyn,Greenpoint,40.73343,-73.95638000000001,Private room,49,3,3,0.1,4,244 +13195,16568093,Manhattan,East Harlem,40.791109999999996,-73.94077,Private room,50,3,1,0.03,1,0 +13196,18999923,Manhattan,Harlem,40.82011,-73.94434,Entire home/apt,120,3,92,2.39,1,32 +13197,10338497,Manhattan,Upper East Side,40.78614,-73.95541,Private room,50,10,0,,1,0 +13198,3358001,Brooklyn,Williamsburg,40.71748,-73.95685,Private room,50,6,5,0.13,1,0 +13199,50735735,Queens,Richmond Hill,40.702490000000004,-73.83251,Private room,60,2,10,0.23,1,0 +13200,31534322,Queens,Long Island City,40.74767,-73.94468,Private room,55,2,107,2.47,4,46 +13201,10558287,Manhattan,Kips Bay,40.7439,-73.97974,Entire home/apt,199,10,0,,1,0 +13202,51171909,Manhattan,Upper West Side,40.774809999999995,-73.98144,Private room,90,20,12,0.28,1,23 +13203,51176545,Queens,Astoria,40.771679999999996,-73.9222,Entire home/apt,189,1,0,,1,0 +13204,29871124,Manhattan,Morningside Heights,40.81508,-73.95935,Private room,49,1,1,0.03,1,0 +13205,42741722,Manhattan,Harlem,40.82042,-73.95255999999999,Private room,65,2,5,0.14,2,0 +13206,887115,Brooklyn,Crown Heights,40.67665,-73.95734,Private room,90,1,1,0.02,1,0 +13207,51216049,Brooklyn,Crown Heights,40.67758,-73.93547,Private room,49,1,2,0.05,1,0 +13208,7461203,Brooklyn,Clinton Hill,40.68715,-73.96433,Entire home/apt,75,3,4,0.09,1,0 +13209,51219881,Manhattan,Upper East Side,40.77878,-73.95148,Private room,100,1,2,0.05,1,0 +13210,23599716,Brooklyn,Williamsburg,40.71901,-73.9594,Private room,59,3,82,1.92,2,0 +13211,6172959,Manhattan,Battery Park City,40.70431,-74.0168,Entire home/apt,130,1,0,,1,0 +13212,3859737,Manhattan,Upper East Side,40.76481,-73.95651,Entire home/apt,225,3,5,0.53,1,0 +13213,51230222,Manhattan,Morningside Heights,40.805409999999995,-73.96576,Entire home/apt,97,1,0,,1,0 +13214,39695769,Brooklyn,South Slope,40.667190000000005,-73.98957,Entire home/apt,250,7,0,,1,0 +13215,28336810,Manhattan,East Village,40.72571,-73.98833,Entire home/apt,150,1,3,0.07,1,0 +13216,24332919,Brooklyn,Williamsburg,40.72003,-73.94147,Private room,63,7,1,0.02,1,0 +13217,31068253,Manhattan,West Village,40.73342,-74.00615,Entire home/apt,200,4,10,0.25,1,0 +13218,7614268,Manhattan,West Village,40.73299,-74.00444,Entire home/apt,139,7,0,,1,0 +13219,51248093,Queens,Ditmars Steinway,40.77623,-73.91503,Entire home/apt,250,1,0,,1,0 +13220,3778297,Manhattan,Hell's Kitchen,40.76455,-73.98855,Entire home/apt,140,5,2,0.05,1,0 +13221,50928025,Manhattan,Upper West Side,40.7859,-73.9779,Private room,95,1,1,0.03,1,0 +13222,33876689,Brooklyn,Williamsburg,40.70986,-73.95926999999999,Private room,55,7,1,0.02,1,0 +13223,11095923,Brooklyn,Flatbush,40.647220000000004,-73.95987,Private room,32,10,3,0.07,3,0 +13224,4844390,Manhattan,Harlem,40.82502,-73.95186,Entire home/apt,110,5,9,0.22,1,0 +13225,11069084,Brooklyn,Flatbush,40.6465,-73.96066,Private room,30,1,0,,1,0 +13226,46976876,Manhattan,East Village,40.72537,-73.99054,Entire home/apt,250,2,0,,2,0 +13227,51262617,Brooklyn,Greenpoint,40.72722,-73.95246999999999,Private room,100,2,101,2.75,1,284 +13228,4829216,Brooklyn,Kensington,40.64682,-73.98036,Entire home/apt,115,1,0,,1,0 +13229,6608183,Manhattan,Upper East Side,40.76276,-73.96009000000001,Private room,90,1,4,0.09,1,0 +13230,15523549,Manhattan,West Village,40.73491,-74.00578,Entire home/apt,139,2,11,0.27,1,49 +13231,8595112,Manhattan,Midtown,40.75606,-73.97108,Private room,150,2,2,0.05,2,0 +13232,929983,Manhattan,Tribeca,40.718540000000004,-74.00439,Private room,170,5,7,0.56,1,6 +13233,12573771,Manhattan,Tribeca,40.71689,-74.00563000000001,Private room,75,1,0,,1,0 +13234,5904463,Manhattan,East Village,40.724309999999996,-73.98312,Private room,120,1,1,0.02,4,0 +13235,5904463,Manhattan,East Village,40.7237,-73.98223,Private room,80,1,2,0.05,4,0 +13236,34010790,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9206,Private room,50,1,0,,1,0 +13237,5904463,Manhattan,East Village,40.72504,-73.98241999999999,Private room,100,1,0,,4,0 +13238,51278789,Queens,Corona,40.74071,-73.86498,Private room,36,16,55,1.43,2,110 +13239,6837486,Manhattan,Theater District,40.75927,-73.98646,Entire home/apt,100,1,0,,1,0 +13240,936114,Manhattan,Upper West Side,40.772079999999995,-73.98907,Private room,129,28,22,0.52,2,261 +13241,51300628,Manhattan,Upper West Side,40.7939,-73.9761,Entire home/apt,199,10,0,,1,0 +13242,310458,Brooklyn,Park Slope,40.66588,-73.97833,Private room,60,14,1,0.03,2,0 +13243,45832664,Manhattan,Hell's Kitchen,40.76059,-73.99475,Private room,60,1,2,0.05,1,0 +13244,9148721,Brooklyn,Bedford-Stuyvesant,40.68945,-73.94595,Private room,60,1,2,0.05,2,0 +13245,404692,Queens,Astoria,40.76248,-73.91279,Entire home/apt,99,5,15,0.43,1,0 +13246,3694186,Brooklyn,Flatbush,40.64295,-73.96137,Entire home/apt,101,1,2,0.05,1,0 +13247,10702860,Queens,Astoria,40.76498,-73.91765,Private room,55,10,0,,1,0 +13248,5445371,Manhattan,Upper West Side,40.783640000000005,-73.97632,Entire home/apt,219,2,1,0.03,1,0 +13249,51327044,Manhattan,Gramercy,40.738820000000004,-73.9857,Entire home/apt,150,7,0,,1,0 +13250,4878363,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.94349,Private room,25,1,7,0.19,2,8 +13251,21216008,Queens,Jackson Heights,40.750240000000005,-73.87849,Shared room,26,1,15,0.68,4,365 +13252,8013847,Brooklyn,Williamsburg,40.70852,-73.94386999999999,Private room,90,2,45,1.15,2,245 +13253,2974643,Manhattan,West Village,40.73105,-74.00464000000001,Entire home/apt,500,7,0,,1,365 +13254,7367006,Manhattan,Midtown,40.74604,-73.98555,Entire home/apt,120,1,0,,1,0 +13255,51337085,Manhattan,Harlem,40.83,-73.94299000000001,Private room,59,1,1,0.02,1,0 +13256,34874378,Manhattan,Harlem,40.82362,-73.95063,Private room,70,1,7,0.23,2,0 +13257,19131159,Manhattan,Midtown,40.75199,-73.97193,Private room,100,4,0,,1,0 +13258,431884,Brooklyn,Williamsburg,40.71532,-73.93951,Entire home/apt,115,4,38,0.89,1,0 +13259,47022650,Manhattan,East Harlem,40.7933,-73.93424,Entire home/apt,150,1,48,1.26,3,321 +13260,35082637,Brooklyn,Williamsburg,40.71841,-73.96389,Private room,105,5,7,0.16,2,212 +13261,51348096,Brooklyn,Flatbush,40.651340000000005,-73.958,Private room,65,1,0,,1,0 +13262,12877954,Brooklyn,Bedford-Stuyvesant,40.68076,-73.93996,Entire home/apt,113,3,174,4.02,1,63 +13263,51349952,Manhattan,Lower East Side,40.718579999999996,-73.98613,Private room,70,1,1,0.02,1,0 +13264,16222762,Manhattan,East Village,40.72788,-73.98436,Entire home/apt,199,1,14,0.33,1,0 +13265,2703735,Brooklyn,Williamsburg,40.71638,-73.96356999999999,Entire home/apt,125,3,2,0.05,1,0 +13266,9212402,Brooklyn,Williamsburg,40.70973,-73.95300999999999,Entire home/apt,140,4,12,0.29,1,0 +13267,50865592,Brooklyn,Park Slope,40.6735,-73.97644,Private room,85,1,133,3.23,1,230 +13268,311286,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94839,Private room,70,30,1,0.08,4,249 +13269,51356178,Manhattan,Morningside Heights,40.8046,-73.9654,Entire home/apt,89,1,3,0.07,1,0 +13270,19109608,Queens,Astoria,40.76273,-73.91642,Private room,95,2,55,1.28,3,244 +13271,50695071,Queens,Ditmars Steinway,40.7756,-73.90825,Private room,70,1,0,,1,0 +13272,51358854,Manhattan,East Village,40.73048,-73.98196999999999,Entire home/apt,154,5,0,,1,0 +13273,23863809,Manhattan,Chelsea,40.73927,-73.99833000000001,Entire home/apt,220,1,8,0.19,2,0 +13274,5123299,Brooklyn,Bushwick,40.703520000000005,-73.93104,Private room,45,1,4,0.09,1,0 +13275,8302904,Manhattan,Nolita,40.72336,-73.99618000000001,Private room,59,60,6,0.15,1,0 +13276,22735666,Manhattan,Chinatown,40.71346,-73.99592,Private room,95,1,1,0.02,1,0 +13277,32993860,Manhattan,East Village,40.72658,-73.97827,Private room,129,1,0,,1,0 +13278,36865981,Brooklyn,Crown Heights,40.67665,-73.95534,Entire home/apt,115,3,1,0.03,1,0 +13279,51364562,Manhattan,Hell's Kitchen,40.76019,-73.99299,Private room,105,3,4,0.09,1,0 +13280,9108035,Brooklyn,Bedford-Stuyvesant,40.68636,-73.93104,Entire home/apt,93,4,5,0.12,1,0 +13281,36279810,Manhattan,Upper West Side,40.80085,-73.96468,Private room,40,6,5,0.12,1,0 +13282,51367478,Queens,Long Island City,40.76406,-73.9349,Private room,88,5,0,,1,0 +13283,2880824,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93176,Entire home/apt,85,1,1,0.02,1,0 +13284,51368588,Manhattan,Upper East Side,40.764379999999996,-73.95871,Entire home/apt,170,3,35,0.82,2,0 +13285,51371360,Manhattan,Upper West Side,40.78347,-73.97748,Private room,75,2,2,0.05,1,0 +13286,51372003,Brooklyn,Flatbush,40.64881,-73.96724,Private room,55,2,5,0.12,2,213 +13287,51374331,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93893,Private room,57,2,175,4.08,1,38 +13288,6891770,Manhattan,Upper West Side,40.78239,-73.97581,Entire home/apt,199,2,10,0.25,1,0 +13289,27078779,Queens,Astoria,40.76047,-73.92288,Entire home/apt,105,1,0,,1,0 +13290,5885714,Manhattan,Tribeca,40.717420000000004,-74.00395999999999,Entire home/apt,485,3,14,0.36,1,54 +13291,3841035,Manhattan,Harlem,40.83034,-73.94901999999999,Entire home/apt,125,2,31,0.72,1,14 +13292,4409832,Manhattan,Washington Heights,40.85139,-73.93722,Entire home/apt,150,6,0,,1,0 +13293,4513827,Manhattan,Murray Hill,40.74622,-73.97913,Private room,95,14,19,0.52,1,96 +13294,43014167,Manhattan,Washington Heights,40.83403,-73.93867,Entire home/apt,200,1,1,0.03,1,0 +13295,49903913,Manhattan,Upper West Side,40.7993,-73.96642,Entire home/apt,90,1,171,3.98,1,53 +13296,8936313,Manhattan,Upper West Side,40.781459999999996,-73.97845,Entire home/apt,120,5,0,,1,0 +13297,22257525,Manhattan,Harlem,40.82501,-73.95125,Entire home/apt,100,3,1,0.03,1,0 +13298,24190730,Brooklyn,Bushwick,40.68353,-73.90484000000001,Private room,70,1,21,0.5,1,0 +13299,50760546,Manhattan,Murray Hill,40.749629999999996,-73.98098,Entire home/apt,110,30,5,0.16,31,157 +13300,51422606,Brooklyn,Williamsburg,40.71237,-73.93929,Entire home/apt,96,2,17,0.4,1,0 +13301,51422338,Brooklyn,Williamsburg,40.71993,-73.94479,Private room,50,1,0,,1,0 +13302,14910665,Brooklyn,Williamsburg,40.71273,-73.95749,Entire home/apt,175,1,3,0.07,1,0 +13303,6570788,Manhattan,Lower East Side,40.72173,-73.99351,Private room,70,3,1,0.02,1,0 +13304,20222376,Manhattan,Lower East Side,40.718140000000005,-73.99166,Private room,75,10,17,0.46,1,128 +13305,51430742,Bronx,Morris Heights,40.852920000000005,-73.91683,Private room,51,2,36,0.96,1,364 +13306,51433399,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.96101,Entire home/apt,80,1,1,0.02,1,0 +13307,50760546,Manhattan,Midtown,40.75093,-73.98096,Entire home/apt,110,30,1,0.03,31,133 +13308,5041830,Manhattan,Upper West Side,40.80137,-73.9615,Private room,80,3,1,0.03,1,0 +13309,51434460,Brooklyn,Williamsburg,40.70998,-73.95956,Private room,60,1,0,,1,0 +13310,50760546,Manhattan,Murray Hill,40.74908,-73.98095,Entire home/apt,170,30,1,0.03,31,142 +13311,50760546,Manhattan,Midtown,40.75065,-73.98204,Entire home/apt,155,29,0,,31,327 +13312,16664377,Manhattan,Lower East Side,40.71835,-73.99138,Private room,65,1,178,4.16,3,79 +13313,50760546,Manhattan,Midtown,40.74906,-73.98276,Entire home/apt,165,29,3,0.09,31,134 +13314,50760546,Manhattan,Murray Hill,40.74711,-73.97694,Entire home/apt,115,30,5,0.14,31,179 +13315,50760546,Manhattan,Murray Hill,40.74537,-73.97652,Entire home/apt,150,30,1,0.07,31,125 +13316,45483124,Queens,East Elmhurst,40.758359999999996,-73.87631,Private room,700,1,1,0.02,1,97 +13317,50760546,Manhattan,Murray Hill,40.74677,-73.97846,Entire home/apt,125,30,4,0.11,31,111 +13318,51439873,Brooklyn,Williamsburg,40.71557,-73.94004,Private room,75,1,0,,1,0 +13319,50760546,Manhattan,Murray Hill,40.746759999999995,-73.97681999999999,Entire home/apt,150,30,3,0.1,31,107 +13320,36638599,Manhattan,Hell's Kitchen,40.76316,-73.9884,Private room,170,1,112,2.63,1,0 +13321,50760546,Manhattan,Kips Bay,40.74495,-73.97627,Entire home/apt,150,30,4,0.11,31,156 +13322,50760546,Manhattan,Murray Hill,40.74672,-73.97841,Entire home/apt,150,30,4,0.12,31,128 +13323,7217937,Manhattan,Inwood,40.8686,-73.92594,Private room,45,2,6,0.5,2,64 +13324,13507716,Manhattan,East Village,40.723240000000004,-73.98195,Entire home/apt,55,1,0,,1,0 +13325,1909320,Brooklyn,Williamsburg,40.7167,-73.96327,Private room,89,1,96,2.24,3,237 +13326,27952234,Manhattan,Financial District,40.70623,-74.00905999999999,Private room,100,1,0,,1,0 +13327,48487386,Brooklyn,Gowanus,40.6824,-73.98824,Private room,35,2,112,2.7,1,27 +13328,50368837,Brooklyn,Crown Heights,40.6781,-73.94584,Entire home/apt,70,3,2,0.05,2,88 +13329,44216429,Manhattan,Gramercy,40.73628,-73.98549,Private room,100,4,115,2.67,1,268 +13330,48818023,Manhattan,Harlem,40.82909,-73.94183000000001,Entire home/apt,78,5,0,,1,0 +13331,51095356,Brooklyn,Bushwick,40.699659999999994,-73.93241,Private room,59,2,41,0.96,1,301 +13332,51450214,Manhattan,West Village,40.73004,-74.00381,Entire home/apt,148,1,0,,1,0 +13333,564585,Brooklyn,Clinton Hill,40.68731,-73.96446,Entire home/apt,125,6,0,,1,0 +13334,12227689,Brooklyn,Crown Heights,40.67694,-73.95575,Entire home/apt,155,2,24,0.57,1,0 +13335,48446355,Brooklyn,Williamsburg,40.71074,-73.95145,Private room,61,1,1,0.02,1,0 +13336,44118283,Manhattan,Upper West Side,40.79546,-73.97497,Private room,100,15,1,0.02,1,0 +13337,51458776,Queens,Jackson Heights,40.75161,-73.88315,Private room,55,2,42,1.04,1,118 +13338,11275734,Brooklyn,Bushwick,40.69791,-73.93615,Private room,40,14,1,0.02,1,0 +13339,7655328,Manhattan,Greenwich Village,40.727990000000005,-74.00046,Entire home/apt,196,1,0,,3,0 +13340,10770088,Manhattan,Midtown,40.75221,-73.97157,Entire home/apt,101,2,1,0.02,1,0 +13341,50539477,Manhattan,Harlem,40.82203,-73.95612,Private room,50,30,77,3.26,2,190 +13342,4628519,Manhattan,Upper West Side,40.79072,-73.97251999999999,Entire home/apt,150,3,0,,1,0 +13343,13056751,Manhattan,Hell's Kitchen,40.76458,-73.99006999999999,Private room,102,1,49,1.7,1,134 +13344,7581707,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95081,Private room,30,1,0,,1,0 +13345,51496578,Manhattan,Lower East Side,40.71504,-73.98071999999999,Entire home/apt,250,1,0,,1,0 +13346,38204730,Manhattan,Gramercy,40.73652,-73.98458000000001,Private room,115,4,0,,3,249 +13347,21801127,Manhattan,Upper East Side,40.77668,-73.94819,Entire home/apt,129,3,0,,1,0 +13348,51499758,Manhattan,Lower East Side,40.71686,-73.98346,Private room,90,4,0,,1,0 +13349,46540057,Manhattan,Chinatown,40.71474,-73.99778,Entire home/apt,120,5,15,0.61,1,0 +13350,51501835,Manhattan,Hell's Kitchen,40.76262,-73.99283,Entire home/apt,150,30,3,0.08,31,210 +13351,8343891,Manhattan,Upper East Side,40.76501,-73.95862,Entire home/apt,146,1,0,,1,0 +13352,20884486,Manhattan,Morningside Heights,40.804829999999995,-73.96486,Private room,70,1,0,,1,0 +13353,51504193,Manhattan,SoHo,40.72515,-73.99919,Entire home/apt,115,28,12,0.31,1,77 +13354,2830735,Manhattan,Upper West Side,40.80195,-73.96714,Private room,49,5,1,0.02,1,0 +13355,39945901,Manhattan,East Harlem,40.78866,-73.94941,Entire home/apt,200,3,28,0.65,1,3 +13356,51501835,Manhattan,Hell's Kitchen,40.762440000000005,-73.99295,Entire home/apt,166,30,7,0.18,31,195 +13357,7763913,Brooklyn,Williamsburg,40.71049,-73.94515,Private room,40,1,1,0.02,1,0 +13358,47554473,Brooklyn,Greenpoint,40.72913,-73.9436,Private room,137,3,39,0.91,13,53 +13359,1653404,Brooklyn,Williamsburg,40.70872,-73.95689,Private room,58,5,1,0.02,1,0 +13360,10970798,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95599,Private room,55,14,0,,1,0 +13361,51513260,Brooklyn,Bushwick,40.70136,-73.91856999999999,Private room,35,6,1,0.02,1,0 +13362,51501835,Manhattan,Hell's Kitchen,40.76343,-73.99381,Entire home/apt,150,30,1,0.03,31,339 +13363,28640162,Manhattan,Upper East Side,40.78352,-73.94973,Entire home/apt,150,3,0,,1,0 +13364,51513795,Manhattan,Upper West Side,40.77845,-73.97985,Entire home/apt,175,2,1,0.02,1,0 +13365,47554473,Brooklyn,Greenpoint,40.72762,-73.94443000000001,Entire home/apt,189,3,26,0.61,13,69 +13366,51517754,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93705,Private room,42,10,0,,1,0 +13367,51502398,Brooklyn,Crown Heights,40.6698,-73.94991999999999,Entire home/apt,175,3,77,1.8,1,54 +13368,50520440,Manhattan,Battery Park City,40.71777,-74.01493,Private room,150,4,1,0.02,1,0 +13369,35890377,Manhattan,Chelsea,40.74135,-73.99507,Entire home/apt,425,2,59,1.38,1,39 +13370,583269,Brooklyn,Bedford-Stuyvesant,40.69998,-73.9413,Private room,110,1,0,,1,0 +13371,51520983,Manhattan,East Harlem,40.80681,-73.93956,Private room,75,3,4,0.09,1,0 +13372,24225915,Manhattan,Chelsea,40.74845,-73.99635,Entire home/apt,170,4,1,0.02,1,0 +13373,51525788,Manhattan,Inwood,40.86569,-73.92865,Entire home/apt,120,1,1,0.02,1,0 +13374,1558222,Brooklyn,Greenpoint,40.72809,-73.94365,Private room,65,3,2,0.06,3,0 +13375,47554473,Brooklyn,Greenpoint,40.72917,-73.94354,Entire home/apt,350,3,1,0.05,13,74 +13376,47554473,Brooklyn,Greenpoint,40.72717,-73.94479,Entire home/apt,199,3,26,0.61,13,74 +13377,19049309,Manhattan,East Harlem,40.79586,-73.94332,Private room,67,1,1,0.02,1,0 +13378,47554473,Brooklyn,Greenpoint,40.727340000000005,-73.94451,Entire home/apt,189,3,7,0.21,13,74 +13379,16260491,Manhattan,East Village,40.72627,-73.9802,Private room,80,5,0,,1,0 +13380,51531044,Queens,Jackson Heights,40.75164,-73.87644,Private room,50,1,84,2.1,4,302 +13381,48681257,Manhattan,Midtown,40.75828,-73.96285999999999,Entire home/apt,220,1,116,2.89,1,264 +13382,41316877,Manhattan,East Village,40.724340000000005,-73.98447,Private room,79,3,0,,1,0 +13383,36577517,Queens,Elmhurst,40.74556,-73.88118,Private room,49,2,1,0.02,2,83 +13384,7727013,Manhattan,Harlem,40.811840000000004,-73.94287,Entire home/apt,226,3,61,2.57,2,276 +13385,19912320,Brooklyn,Williamsburg,40.71686,-73.95428000000001,Private room,79,5,3,0.07,2,0 +13386,12435489,Brooklyn,Greenpoint,40.72088,-73.95375,Private room,80,5,1,0.02,1,0 +13387,9059810,Manhattan,Civic Center,40.713159999999995,-74.00498,Private room,169,4,0,,3,89 +13388,7503132,Brooklyn,Clinton Hill,40.68399,-73.96191999999999,Entire home/apt,100,5,7,0.16,1,0 +13389,51542781,Manhattan,Hell's Kitchen,40.7666,-73.99256,Entire home/apt,98,7,6,0.14,1,0 +13390,50007401,Brooklyn,Bedford-Stuyvesant,40.689679999999996,-73.94833,Private room,45,2,0,,1,0 +13391,49535506,Queens,Sunnyside,40.73839,-73.93,Private room,70,4,4,0.1,1,25 +13392,51552511,Manhattan,Harlem,40.823640000000005,-73.94556,Entire home/apt,150,2,2,0.05,1,0 +13393,10737943,Manhattan,Upper East Side,40.77292,-73.95015,Private room,125,1,210,4.89,10,81 +13394,51556615,Queens,Sunnyside,40.744440000000004,-73.91467,Entire home/apt,155,4,66,1.54,1,307 +13395,1523549,Manhattan,Kips Bay,40.743959999999994,-73.9758,Entire home/apt,179,29,4,0.11,1,0 +13396,5065719,Brooklyn,Greenpoint,40.73226,-73.95285,Private room,60,1,2,0.05,1,0 +13397,2784447,Manhattan,Upper East Side,40.76206,-73.95705,Private room,90,8,0,,1,0 +13398,35083661,Brooklyn,Williamsburg,40.71741,-73.95978000000001,Private room,65,1,0,,1,0 +13399,47554473,Brooklyn,Greenpoint,40.72766,-73.94393000000001,Entire home/apt,179,3,36,0.84,13,53 +13400,51584665,Brooklyn,Williamsburg,40.71229,-73.96245,Private room,50,10,3,0.07,1,0 +13401,49522403,Brooklyn,Brownsville,40.66409,-73.92314,Private room,50,3,3,0.07,1,362 +13402,47554473,Brooklyn,Greenpoint,40.72829,-73.94355999999999,Private room,189,3,34,0.79,13,74 +13403,5769728,Brooklyn,Bedford-Stuyvesant,40.69455,-73.95144,Entire home/apt,67,2,12,0.59,1,332 +13404,2697686,Manhattan,Harlem,40.82915,-73.94034,Entire home/apt,99,999,2,0.07,1,42 +13405,25821059,Manhattan,West Village,40.73482,-74.00834,Entire home/apt,140,2,6,0.15,1,0 +13406,13203690,Queens,Astoria,40.76805,-73.90906,Entire home/apt,90,2,0,,1,0 +13407,16179625,Manhattan,Harlem,40.826240000000006,-73.9434,Private room,55,3,58,1.76,1,0 +13408,707992,Brooklyn,Sunset Park,40.640409999999996,-74.01496999999999,Private room,80,20,0,,1,0 +13409,7271269,Brooklyn,Williamsburg,40.71575,-73.94224,Entire home/apt,170,1,1,0.02,1,0 +13410,280883,Manhattan,Harlem,40.82353,-73.93824000000001,Private room,90,1,0,,1,0 +13411,18198859,Manhattan,East Village,40.72655,-73.97825999999999,Entire home/apt,175,1,59,1.44,1,307 +13412,14852867,Manhattan,Financial District,40.709379999999996,-74.01371,Entire home/apt,117,2,0,,1,0 +13413,51605949,Brooklyn,Clinton Hill,40.694590000000005,-73.96408000000001,Private room,43,1,0,,1,0 +13414,47554473,Brooklyn,Greenpoint,40.7287,-73.94504,Private room,189,3,21,0.49,13,0 +13415,25866647,Brooklyn,Midwood,40.62259,-73.96106999999999,Private room,35,3,175,4.1,1,49 +13416,10807649,Brooklyn,South Slope,40.66218,-73.98385,Entire home/apt,61,2,20,0.57,1,0 +13417,47554473,Brooklyn,Greenpoint,40.727779999999996,-73.94471999999999,Entire home/apt,205,3,5,0.12,13,72 +13418,51614806,Queens,Long Island City,40.74967,-73.9396,Private room,35,14,1,0.02,1,0 +13419,12245536,Manhattan,Harlem,40.82083,-73.95795,Private room,39,2,3,0.07,2,0 +13420,9050420,Manhattan,East Village,40.7278,-73.98040999999999,Private room,190,1,0,,1,0 +13421,11068351,Manhattan,Little Italy,40.71924,-73.99719,Entire home/apt,249,1,0,,1,0 +13422,51623576,Manhattan,Chelsea,40.737190000000005,-73.99336,Entire home/apt,159,3,1,0.03,1,0 +13423,36905682,Manhattan,West Village,40.73454,-74.00140999999999,Entire home/apt,125,1,0,,1,0 +13424,51652888,Brooklyn,Bedford-Stuyvesant,40.68678,-73.95572,Private room,37,7,2,0.05,1,0 +13425,50760546,Manhattan,NoHo,40.72888,-73.99199,Entire home/apt,299,30,1,0.04,31,160 +13426,22217087,Manhattan,Nolita,40.723209999999995,-73.99531999999999,Entire home/apt,175,3,12,0.28,1,0 +13427,47472192,Manhattan,Upper West Side,40.79954,-73.9626,Private room,42,12,0,,1,0 +13428,9294273,Brooklyn,Greenpoint,40.72712,-73.95146,Entire home/apt,110,4,1,0.02,1,0 +13429,36866768,Manhattan,Nolita,40.72238,-73.99631,Entire home/apt,179,7,0,,1,0 +13430,51662642,Brooklyn,Crown Heights,40.67023,-73.95257,Entire home/apt,90,1,0,,1,0 +13431,51664119,Brooklyn,Williamsburg,40.712740000000004,-73.94513,Private room,130,2,1,0.02,1,0 +13432,49905246,Brooklyn,Park Slope,40.67163,-73.98584,Entire home/apt,140,2,89,2.11,1,9 +13433,16591072,Brooklyn,Boerum Hill,40.68869,-73.98899,Entire home/apt,168,1,1,0.02,1,0 +13434,2436599,Brooklyn,Flatbush,40.65132,-73.95691,Entire home/apt,128,3,2,0.07,1,0 +13435,13358864,Brooklyn,Bedford-Stuyvesant,40.6943,-73.9481,Private room,64,3,6,0.14,2,0 +13436,5391472,Brooklyn,Crown Heights,40.67154,-73.94981,Private room,35,14,1,0.03,2,0 +13437,13358864,Brooklyn,Bedford-Stuyvesant,40.69453,-73.94725,Private room,60,3,0,,2,0 +13438,1522922,Brooklyn,Crown Heights,40.67617,-73.95536,Entire home/apt,200,2,0,,1,0 +13439,12616662,Brooklyn,Williamsburg,40.717420000000004,-73.95510999999999,Entire home/apt,199,3,3,0.08,1,0 +13440,8820573,Brooklyn,Williamsburg,40.714,-73.96395,Entire home/apt,175,3,105,2.45,1,104 +13441,51525183,Manhattan,Harlem,40.81566,-73.94293,Private room,95,180,0,,1,358 +13442,27915373,Brooklyn,Bedford-Stuyvesant,40.68273,-73.94785999999999,Private room,55,1,18,0.49,1,65 +13443,39765154,Manhattan,Upper West Side,40.7986,-73.96168,Entire home/apt,125,9,0,,1,0 +13444,51674579,Manhattan,Upper West Side,40.79616,-73.97506,Private room,45,1,0,,1,0 +13445,51651427,Manhattan,Upper East Side,40.7612,-73.96254,Entire home/apt,95,16,8,0.2,1,0 +13446,15065559,Brooklyn,Crown Heights,40.67105,-73.94324,Entire home/apt,153,4,105,2.45,1,9 +13447,40532707,Brooklyn,Bedford-Stuyvesant,40.687290000000004,-73.95555999999999,Private room,39,1,1,0.02,1,0 +13448,6050369,Manhattan,Harlem,40.82697,-73.95236,Entire home/apt,200,1,0,,1,0 +13449,51678353,Manhattan,West Village,40.733259999999994,-74.00577,Private room,85,2,2,0.05,1,0 +13450,31281230,Manhattan,SoHo,40.72697,-74.00098,Entire home/apt,315,2,29,1.31,1,177 +13451,50687547,Brooklyn,Bedford-Stuyvesant,40.68843,-73.94537,Entire home/apt,89,5,10,0.23,1,64 +13452,51684417,Manhattan,Upper West Side,40.80082,-73.96059,Entire home/apt,350,7,0,,2,0 +13453,51688993,Queens,Jamaica,40.6896,-73.80445999999999,Entire home/apt,179,1,103,2.67,2,324 +13454,1737876,Brooklyn,Bushwick,40.689840000000004,-73.91507,Private room,37,1,0,,1,0 +13455,51690846,Brooklyn,Downtown Brooklyn,40.6965,-73.98376999999999,Private room,75,5,0,,1,0 +13456,28504839,Manhattan,Upper West Side,40.7863,-73.97658,Entire home/apt,150,3,5,0.13,1,0 +13457,51716739,Brooklyn,Bedford-Stuyvesant,40.68886,-73.93084,Entire home/apt,225,2,68,1.69,3,273 +13458,51728257,Manhattan,Gramercy,40.73462,-73.98227,Entire home/apt,140,4,1,0.02,1,0 +13459,51734800,Brooklyn,Flatbush,40.63066,-73.96495999999999,Private room,115,2,5,0.13,2,358 +13460,22068394,Brooklyn,Bedford-Stuyvesant,40.691759999999995,-73.94765,Private room,58,2,2,0.05,1,0 +13461,51742426,Brooklyn,Williamsburg,40.711929999999995,-73.96383,Entire home/apt,190,4,63,1.58,1,257 +13462,51743699,Manhattan,Morningside Heights,40.80986,-73.95945,Entire home/apt,100,1,1,0.02,1,0 +13463,3870120,Brooklyn,Williamsburg,40.71139,-73.96002,Private room,119,2,82,2.06,1,0 +13464,5882165,Brooklyn,Williamsburg,40.71171,-73.96256,Entire home/apt,139,5,0,,1,0 +13465,51749922,Manhattan,Kips Bay,40.73956,-73.98163000000001,Private room,140,1,0,,1,0 +13466,47554473,Brooklyn,Greenpoint,40.72845,-73.94476999999999,Entire home/apt,129,3,16,0.37,13,71 +13467,2072706,Manhattan,West Village,40.73191,-74.00493,Entire home/apt,800,3,0,,1,0 +13468,13792543,Manhattan,Harlem,40.80729,-73.95238,Private room,110,3,76,1.78,3,281 +13469,2144034,Manhattan,Harlem,40.827529999999996,-73.94861999999999,Entire home/apt,90,1,2,0.05,1,0 +13470,28840058,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9189,Private room,61,1,4,0.1,1,0 +13471,51764491,Manhattan,East Village,40.73076,-73.98374,Private room,65,2,4,0.09,1,0 +13472,216227,Manhattan,Harlem,40.82069,-73.95549,Private room,60,1,229,6.25,3,310 +13473,216227,Manhattan,Harlem,40.82232,-73.95696,Private room,60,1,219,5.95,3,280 +13474,16684382,Manhattan,Upper East Side,40.76266,-73.95989,Entire home/apt,150,2,25,0.66,1,0 +13475,51772392,Manhattan,Midtown,40.76039,-73.9736,Private room,587,1,3,0.16,1,365 +13476,6772290,Manhattan,Chelsea,40.74156,-74.00036999999999,Entire home/apt,175,3,136,3.18,1,288 +13477,42332704,Brooklyn,Crown Heights,40.67176,-73.95936999999999,Private room,60,1,0,,1,0 +13478,12485770,Manhattan,West Village,40.7313,-74.00154,Entire home/apt,166,30,5,0.13,9,332 +13479,12485770,Manhattan,East Village,40.729620000000004,-73.98078000000001,Entire home/apt,120,30,4,0.11,9,338 +13480,51813565,Brooklyn,Greenpoint,40.72034,-73.95478,Entire home/apt,135,2,18,0.42,1,0 +13481,34607505,Manhattan,Chelsea,40.74577,-74.00074000000001,Entire home/apt,145,2,1,0.02,1,0 +13482,51813748,Brooklyn,Williamsburg,40.719359999999995,-73.94225,Entire home/apt,185,4,77,1.8,1,25 +13483,1822420,Brooklyn,Williamsburg,40.71119,-73.96515,Entire home/apt,120,1,0,,1,0 +13484,50678424,Brooklyn,Bedford-Stuyvesant,40.686659999999996,-73.94739,Private room,206,1,1,0.05,2,365 +13485,7375144,Brooklyn,Bushwick,40.70348,-73.91476999999999,Private room,65,1,0,,1,0 +13486,16869971,Manhattan,Roosevelt Island,40.76947,-73.94303000000001,Private room,80,1,1,0.02,2,0 +13487,51829088,Queens,Jackson Heights,40.74856,-73.88906,Entire home/apt,139,1,0,,1,0 +13488,51830532,Manhattan,Chelsea,40.74201,-74.00325,Entire home/apt,239,4,55,1.29,1,161 +13489,23215098,Brooklyn,Bedford-Stuyvesant,40.68513,-73.95286,Entire home/apt,399,4,39,0.91,1,29 +13490,3582774,Manhattan,Little Italy,40.71756,-73.99824,Entire home/apt,550,5,0,,1,0 +13491,271073,Brooklyn,Midwood,40.623909999999995,-73.96146,Private room,30,1,0,,1,0 +13492,9250639,Brooklyn,Park Slope,40.67622,-73.97953000000001,Entire home/apt,125,2,7,0.2,1,0 +13493,6866192,Manhattan,East Village,40.7271,-73.99091999999999,Entire home/apt,195,2,0,,1,0 +13494,5073789,Brooklyn,Williamsburg,40.7184,-73.95359,Entire home/apt,500,2,111,2.92,1,88 +13495,47621202,Queens,Jamaica,40.66939,-73.76975,Private room,47,1,576,13.4,2,173 +13496,51680319,Queens,Sunnyside,40.74181,-73.90783,Private room,69,1,0,,1,0 +13497,51835429,Manhattan,East Village,40.725970000000004,-73.9838,Private room,90,2,0,,1,0 +13498,51838759,Manhattan,Upper East Side,40.76256,-73.9632,Private room,99,2,122,2.95,1,77 +13499,51839283,Manhattan,Washington Heights,40.850640000000006,-73.93833000000001,Private room,75,1,1,0.02,1,0 +13500,33480709,Brooklyn,Crown Heights,40.67114,-73.93561,Shared room,35,1,0,,1,0 +13501,8832880,Brooklyn,Greenpoint,40.73321,-73.9561,Private room,55,2,0,,1,0 +13502,2350144,Brooklyn,Bushwick,40.69611,-73.91891,Entire home/apt,80,31,1,0.03,1,0 +13503,51850937,Manhattan,East Village,40.73061,-73.98335,Private room,100,2,51,1.19,3,4 +13504,51851212,Brooklyn,Crown Heights,40.67418,-73.95958,Private room,60,1,4,0.09,1,0 +13505,11095923,Brooklyn,Bushwick,40.69802,-73.91471999999999,Private room,40,1,0,,3,0 +13506,27341303,Manhattan,Greenwich Village,40.730090000000004,-73.99965,Entire home/apt,118,5,1,0.02,1,0 +13507,1428501,Manhattan,Hell's Kitchen,40.764070000000004,-73.98579000000001,Private room,97,6,36,0.84,2,0 +13508,51857384,Manhattan,Upper West Side,40.77836,-73.9822,Entire home/apt,210,2,51,1.19,1,11 +13509,8511553,Brooklyn,Crown Heights,40.6774,-73.94726,Entire home/apt,55,2,6,0.14,1,0 +13510,16139880,Brooklyn,Bedford-Stuyvesant,40.677620000000005,-73.9159,Private room,62,3,69,1.7,6,27 +13511,51902072,Manhattan,SoHo,40.72485,-74.00254,Entire home/apt,185,1,1,0.02,1,0 +13512,49871658,Manhattan,Upper West Side,40.78778,-73.97498,Entire home/apt,200,3,0,,1,0 +13513,47351539,Brooklyn,East Flatbush,40.65382,-73.93903,Entire home/apt,165,1,216,5.49,4,194 +13514,29923547,Manhattan,Lower East Side,40.71886,-73.98881,Private room,125,1,0,,1,0 +13515,16682678,Manhattan,Kips Bay,40.74091,-73.98271,Entire home/apt,102,1,3,0.07,1,0 +13516,10221694,Brooklyn,Williamsburg,40.712759999999996,-73.96300000000001,Private room,80,1,2,0.05,1,0 +13517,48784045,Manhattan,Kips Bay,40.7452,-73.97779,Entire home/apt,449,1,0,,2,0 +13518,51913270,Manhattan,Midtown,40.75939,-73.96949000000001,Entire home/apt,200,1,0,,1,0 +13519,51913826,Manhattan,Nolita,40.72354,-73.99333,Private room,84,1,1,0.3,8,0 +13520,8869875,Manhattan,Upper East Side,40.76427,-73.962,Entire home/apt,95,1,5,0.12,1,0 +13521,17794202,Brooklyn,Boerum Hill,40.68485,-73.9819,Private room,65,3,2,0.05,1,0 +13522,30370192,Manhattan,Upper East Side,40.75979,-73.96079,Entire home/apt,152,1,42,1.06,1,357 +13523,18782603,Brooklyn,Bushwick,40.685390000000005,-73.9092,Private room,50,3,2,0.06,1,0 +13524,12190846,Brooklyn,Williamsburg,40.72097,-73.9548,Entire home/apt,250,1,0,,1,0 +13525,48535457,Brooklyn,Williamsburg,40.71975,-73.95964000000001,Private room,149,2,15,0.35,1,0 +13526,51913826,Manhattan,Nolita,40.722879999999996,-73.99466,Private room,124,1,19,0.46,8,0 +13527,6388652,Manhattan,Washington Heights,40.83871,-73.9468,Private room,58,3,49,1.28,1,275 +13528,51913826,Manhattan,Nolita,40.72152,-73.99476,Private room,159,1,9,0.22,8,0 +13529,51844270,Manhattan,East Village,40.73046,-73.98643,Entire home/apt,250,7,1,0.02,1,0 +13530,33231070,Manhattan,Lower East Side,40.72063,-73.98944,Entire home/apt,150,3,0,,1,0 +13531,24347,Manhattan,Chelsea,40.744409999999995,-73.99915,Entire home/apt,250,4,11,0.35,1,0 +13532,51948055,Manhattan,Midtown,40.76372,-73.97691999999999,Entire home/apt,500,29,5,0.13,1,88 +13533,51954926,Brooklyn,Bedford-Stuyvesant,40.69508,-73.94856,Private room,58,2,256,5.96,4,38 +13534,51940393,Brooklyn,Bedford-Stuyvesant,40.68353,-73.94877,Entire home/apt,199,2,74,1.84,1,231 +13535,15109029,Manhattan,East Harlem,40.801970000000004,-73.93888000000001,Private room,55,1,0,,1,0 +13536,18139498,Brooklyn,Williamsburg,40.70987,-73.95392,Private room,95,4,16,0.46,1,10 +13537,43128266,Manhattan,Washington Heights,40.83379,-73.94141,Shared room,36,1,20,0.47,3,324 +13538,24673896,Manhattan,West Village,40.73182,-74.01,Entire home/apt,165,4,4,0.1,1,0 +13539,51954926,Brooklyn,Bedford-Stuyvesant,40.69566,-73.95000999999999,Private room,72,2,255,5.95,4,0 +13540,51991283,Manhattan,Harlem,40.80057,-73.95468000000001,Private room,179,1,2,0.05,5,309 +13541,51991283,Manhattan,Harlem,40.79945,-73.95411,Private room,209,1,1,0.27,5,244 +13542,51991283,Manhattan,Harlem,40.79865,-73.95295,Private room,149,1,0,,5,281 +13543,21247379,Manhattan,Harlem,40.809259999999995,-73.95455,Entire home/apt,150,3,25,1.2,1,22 +13544,16272340,Brooklyn,Williamsburg,40.71351,-73.95116999999999,Private room,375,2,2,0.05,1,0 +13545,15640532,Queens,Elmhurst,40.74157,-73.88389000000001,Private room,65,4,1,0.02,1,0 +13546,52004369,Manhattan,Upper East Side,40.7664,-73.95854,Entire home/apt,275,2,9,0.24,1,0 +13547,6606618,Manhattan,Lower East Side,40.7178,-73.98504,Shared room,110,2,4,0.11,1,0 +13548,566660,Manhattan,Chinatown,40.71615,-73.99539,Private room,99,1,42,0.98,1,0 +13549,2017504,Manhattan,Gramercy,40.73375,-73.98474,Private room,85,1,2,0.06,2,0 +13550,51991283,Manhattan,Harlem,40.79933,-73.95296,Private room,189,1,7,0.16,5,291 +13551,6753765,Manhattan,East Village,40.72423,-73.98326999999999,Shared room,100,5,0,,3,0 +13552,14439022,Manhattan,Harlem,40.827740000000006,-73.94983,Private room,75,3,86,2.01,1,224 +13553,17653796,Queens,Ditmars Steinway,40.77575,-73.91419,Private room,45,1,27,0.75,1,16 +13554,11615226,Brooklyn,Greenpoint,40.723079999999996,-73.95071,Private room,75,1,0,,1,0 +13555,4946655,Manhattan,East Village,40.72435,-73.98461,Entire home/apt,125,2,6,0.14,1,0 +13556,52022983,Manhattan,Upper West Side,40.7937,-73.9652,Entire home/apt,150,1,0,,1,0 +13557,10474877,Brooklyn,Boerum Hill,40.68358,-73.98127,Private room,71,7,11,0.42,1,98 +13558,52031360,Queens,Jackson Heights,40.74953,-73.88025,Private room,46,3,137,3.21,1,286 +13559,52031473,Manhattan,Nolita,40.72148,-73.99580999999999,Private room,105,2,44,1.03,1,35 +13560,52031734,Brooklyn,Bedford-Stuyvesant,40.695029999999996,-73.94986,Private room,41,1,1,0.02,1,0 +13561,23772724,Manhattan,Upper East Side,40.77349,-73.95225,Entire home/apt,99,30,7,0.18,15,327 +13562,38260715,Queens,Corona,40.7394,-73.85526999999999,Private room,37,1,74,1.73,1,135 +13563,31698014,Manhattan,East Village,40.727470000000004,-73.98833,Entire home/apt,60,5,2,0.05,1,0 +13564,9153601,Brooklyn,Bushwick,40.68594,-73.91448000000001,Entire home/apt,218,2,70,1.67,1,335 +13565,502563,Manhattan,East Village,40.72888,-73.98496,Private room,150,3,17,0.4,2,43 +13566,290094,Manhattan,Chelsea,40.7456,-73.99852,Private room,52,2,2,0.06,1,0 +13567,7342535,Brooklyn,Clinton Hill,40.68142,-73.95889,Entire home/apt,210,1,3,0.07,1,0 +13568,5461672,Manhattan,Hell's Kitchen,40.763740000000006,-73.98872,Entire home/apt,115,3,1,0.02,1,0 +13569,12485770,Manhattan,SoHo,40.72542,-74.00158,Entire home/apt,105,30,2,0.06,9,327 +13570,52112891,Manhattan,East Village,40.727740000000004,-73.98210999999999,Private room,80,2,3,0.07,1,0 +13571,23419527,Manhattan,West Village,40.73713,-74.00358,Entire home/apt,225,3,1,0.02,1,0 +13572,1260413,Brooklyn,Williamsburg,40.71275,-73.94299000000001,Entire home/apt,175,3,2,0.05,3,0 +13573,9369977,Manhattan,Midtown,40.75763,-73.96359,Private room,120,7,4,0.09,1,0 +13574,37626481,Manhattan,Upper West Side,40.79637,-73.96996,Shared room,65,1,55,1.34,2,0 +13575,47554473,Brooklyn,Greenpoint,40.7276,-73.94495,Entire home/apt,99,3,29,0.7,13,50 +13576,342734,Manhattan,Lower East Side,40.7191,-73.98812,Entire home/apt,160,1,9,0.21,1,0 +13577,52127857,Manhattan,East Village,40.72314,-73.9797,Private room,60,1,1,0.03,2,0 +13578,28105866,Manhattan,East Harlem,40.79739,-73.94054,Entire home/apt,90,1,0,,1,0 +13579,4023912,Manhattan,Financial District,40.70524,-74.01278,Entire home/apt,230,5,6,0.15,1,208 +13580,28722501,Manhattan,Gramercy,40.73618,-73.9833,Entire home/apt,250,2,47,2.15,1,89 +13581,173218,Manhattan,Lower East Side,40.7213,-73.98559,Entire home/apt,299,30,60,1.71,1,332 +13582,50760546,Manhattan,NoHo,40.72895,-73.9934,Entire home/apt,499,30,0,,31,167 +13583,2787,Brooklyn,Gravesend,40.60755,-73.9741,Private room,79,1,17,0.4,6,174 +13584,2995352,Queens,Jackson Heights,40.75658,-73.86806999999999,Private room,46,1,0,,1,0 +13585,25169027,Brooklyn,Bushwick,40.70491,-73.92367,Entire home/apt,110,4,3,0.07,1,0 +13586,41535999,Manhattan,Morningside Heights,40.80348,-73.9632,Private room,70,1,1,0.02,1,0 +13587,4273661,Brooklyn,Bedford-Stuyvesant,40.69145,-73.93536,Entire home/apt,150,2,1,0.03,1,0 +13588,27537912,Brooklyn,Williamsburg,40.703790000000005,-73.94228000000001,Private room,59,15,12,0.28,1,0 +13589,39603281,Manhattan,Upper West Side,40.79437,-73.97152,Entire home/apt,165,1,188,4.42,1,328 +13590,47554473,Brooklyn,Greenpoint,40.72919,-73.94511999999999,Private room,149,3,32,0.75,13,74 +13591,47554473,Brooklyn,Greenpoint,40.72888,-73.94485999999999,Entire home/apt,129,3,3,0.08,13,74 +13592,30658746,Brooklyn,Bushwick,40.69392,-73.92262,Private room,42,1,3,0.07,1,0 +13593,52183960,Brooklyn,Bedford-Stuyvesant,40.68025,-73.91199,Entire home/apt,120,2,141,3.35,1,215 +13594,486147,Brooklyn,Park Slope,40.67174,-73.98616,Private room,63,30,17,0.44,1,73 +13595,35215309,Manhattan,East Harlem,40.79805,-73.93943,Entire home/apt,180,4,24,0.56,2,3 +13596,14461742,Brooklyn,Williamsburg,40.71552,-73.93869000000001,Entire home/apt,220,5,1,0.02,1,0 +13597,8515724,Brooklyn,Williamsburg,40.7075,-73.94055,Private room,68,1,29,0.77,3,0 +13598,21430239,Manhattan,East Village,40.72828,-73.98901,Private room,119,1,134,3.15,1,0 +13599,37256833,Manhattan,Harlem,40.82914,-73.94254000000001,Private room,37,2,11,0.28,1,0 +13600,52228249,Bronx,Bronxdale,40.855920000000005,-73.86743,Entire home/apt,80,7,0,,1,0 +13601,24840827,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93444000000001,Private room,55,1,0,,1,0 +13602,7940120,Manhattan,Upper West Side,40.79958,-73.96403000000001,Private room,50,1,0,,1,0 +13603,40640586,Manhattan,Lower East Side,40.72299,-73.99251,Entire home/apt,199,2,168,3.93,1,65 +13604,52243765,Brooklyn,Crown Heights,40.678509999999996,-73.95566,Private room,50,3,0,,1,0 +13605,10590489,Brooklyn,Williamsburg,40.71367,-73.94228000000001,Private room,60,2,7,0.17,1,0 +13606,15312592,Queens,Astoria,40.76722,-73.92203,Entire home/apt,135,3,44,1.03,1,0 +13607,12378834,Brooklyn,Williamsburg,40.70512,-73.94346999999999,Private room,64,1,1,0.02,1,0 +13608,41326856,Queens,Elmhurst,40.74674,-73.87995,Private room,80,1,34,0.88,5,49 +13609,50466143,Brooklyn,Williamsburg,40.71215,-73.95801,Private room,65,2,0,,1,0 +13610,14785032,Queens,St. Albans,40.69112,-73.77761,Private room,48,1,165,4.64,1,365 +13611,42487547,Brooklyn,Carroll Gardens,40.67875,-73.99599,Entire home/apt,115,3,9,0.21,1,0 +13612,37312959,Queens,East Elmhurst,40.77026,-73.87561,Private room,45,1,459,10.72,5,175 +13613,10855721,Brooklyn,Williamsburg,40.703520000000005,-73.93798000000001,Private room,38,7,1,0.02,1,0 +13614,20992861,Manhattan,Lower East Side,40.71757,-73.99028,Private room,85,5,1,0.02,1,0 +13615,52320213,Manhattan,Midtown,40.7533,-73.97162,Entire home/apt,275,4,77,1.84,1,0 +13616,26111326,Queens,Astoria,40.76951,-73.93077,Entire home/apt,125,2,26,0.64,1,0 +13617,52320041,Manhattan,Upper West Side,40.801140000000004,-73.96772,Entire home/apt,250,30,17,0.47,1,190 +13618,1589909,Queens,Long Island City,40.74392,-73.95147,Private room,79,15,9,0.26,2,259 +13619,7108710,Manhattan,West Village,40.7344,-74.00262,Private room,105,1,0,,1,0 +13620,15891234,Manhattan,East Harlem,40.794000000000004,-73.94585,Entire home/apt,100,2,6,0.14,1,0 +13621,16869971,Manhattan,Roosevelt Island,40.76882,-73.94315,Private room,70,1,7,0.19,2,0 +13622,16978120,Manhattan,Harlem,40.83,-73.94931,Private room,65,30,0,,2,308 +13623,569864,Brooklyn,Prospect Heights,40.68007,-73.97317,Entire home/apt,60,2,12,0.28,1,0 +13624,1519189,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94273000000001,Private room,50,2,3,0.09,2,316 +13625,37561828,Brooklyn,Bushwick,40.693870000000004,-73.92666,Private room,35,3,33,0.78,1,0 +13626,4821374,Manhattan,Upper East Side,40.77791,-73.95362,Entire home/apt,180,3,22,0.83,2,273 +13627,43192686,Brooklyn,Borough Park,40.625859999999996,-73.98079,Entire home/apt,70,5,33,0.81,1,27 +13628,52430092,Manhattan,East Harlem,40.80107,-73.93656,Entire home/apt,220,2,59,1.47,1,185 +13629,16098958,Manhattan,Hell's Kitchen,40.765440000000005,-73.98651,Entire home/apt,135,30,5,0.16,96,311 +13630,16098958,Manhattan,Upper West Side,40.79544,-73.96736,Entire home/apt,140,30,2,0.06,96,244 +13631,50549394,Brooklyn,Flatbush,40.632670000000005,-73.96199,Private room,175,2,6,0.22,1,178 +13632,16098958,Manhattan,Upper West Side,40.79534,-73.96583000000001,Entire home/apt,180,30,4,0.12,96,319 +13633,16098958,Manhattan,Financial District,40.70503,-74.00674000000001,Entire home/apt,165,30,0,,96,329 +13634,52445657,Queens,Flushing,40.729459999999996,-73.8075,Private room,55,2,16,0.46,1,0 +13635,52454608,Manhattan,Hell's Kitchen,40.7631,-73.98753,Entire home/apt,100,1,0,,1,0 +13636,9532490,Manhattan,East Village,40.73008,-73.98996,Private room,91,4,8,0.19,3,0 +13637,52342677,Manhattan,Chelsea,40.74729,-73.99107,Private room,175,1,0,,1,0 +13638,20086355,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95151,Private room,70,5,0,,1,0 +13639,42413378,Brooklyn,South Slope,40.6641,-73.98036,Entire home/apt,143,3,180,4.2,2,263 +13640,2109282,Brooklyn,Bushwick,40.69688,-73.93448000000001,Private room,55,14,2,0.06,1,0 +13641,52526463,Manhattan,East Village,40.73133,-73.98747,Entire home/apt,110,3,1,0.02,1,0 +13642,287634,Brooklyn,Prospect-Lefferts Gardens,40.65568,-73.95891999999999,Private room,30,1,0,,1,0 +13643,10590166,Queens,Fresh Meadows,40.7492,-73.78445,Private room,90,1,3,0.3,1,87 +13644,51991283,Manhattan,Harlem,40.800329999999995,-73.9528,Private room,199,1,1,0.02,5,267 +13645,52551507,Manhattan,Gramercy,40.73728,-73.9842,Private room,99,1,0,,1,0 +13646,32824042,Manhattan,Lower East Side,40.71334,-73.98575,Private room,40,1,0,,1,0 +13647,9504403,Manhattan,Kips Bay,40.74443,-73.97949,Entire home/apt,235,3,2,0.05,1,0 +13648,24884472,Queens,Astoria,40.7662,-73.92027,Private room,62,2,9,0.24,1,358 +13649,52573647,Queens,Rosedale,40.65108,-73.73402,Private room,85,2,9,0.23,1,87 +13650,52539349,Queens,Springfield Gardens,40.67035,-73.7541,Entire home/apt,60,1,212,4.95,1,297 +13651,52577963,Queens,Woodhaven,40.69454,-73.85041,Private room,45,5,34,0.85,6,212 +13652,29452204,Manhattan,Hell's Kitchen,40.76124,-73.98897,Entire home/apt,155,2,0,,1,0 +13653,52584471,Manhattan,Murray Hill,40.74666,-73.97847,Entire home/apt,135,1,0,,1,0 +13654,389899,Brooklyn,Williamsburg,40.717420000000004,-73.95846999999999,Entire home/apt,165,1,58,1.36,2,287 +13655,14064072,Manhattan,Hell's Kitchen,40.76166,-73.99197,Private room,295,1,0,,1,0 +13656,51169036,Manhattan,Washington Heights,40.83473,-73.93858,Private room,77,1,89,2.29,1,228 +13657,11554193,Brooklyn,Crown Heights,40.666709999999995,-73.94981,Private room,43,5,16,0.4,2,38 +13658,4227531,Manhattan,Midtown,40.756859999999996,-73.96723,Entire home/apt,230,180,0,,1,365 +13659,14590096,Brooklyn,East New York,40.6729,-73.88919,Entire home/apt,70,30,62,1.56,1,7 +13660,52577563,Brooklyn,Sunset Park,40.6642,-73.99371,Entire home/apt,105,5,1,0.02,3,365 +13661,21094081,Brooklyn,Bushwick,40.69675,-73.92964,Private room,54,4,6,0.14,1,0 +13662,655234,Brooklyn,Williamsburg,40.71523,-73.95503000000001,Entire home/apt,199,3,0,,1,0 +13663,52604429,Brooklyn,Bedford-Stuyvesant,40.69171,-73.94891,Entire home/apt,145,4,63,1.6,2,37 +13664,39126862,Brooklyn,Williamsburg,40.70635,-73.95175,Private room,97,2,0,,2,0 +13665,4209540,Brooklyn,Williamsburg,40.70154,-73.94759,Private room,55,3,26,0.68,1,1 +13666,5162192,Manhattan,Upper West Side,40.78273,-73.97553,Entire home/apt,285,5,79,2.09,12,153 +13667,18652590,Brooklyn,Flatbush,40.63177,-73.96341,Private room,185,2,0,,1,0 +13668,52656488,Manhattan,Harlem,40.810520000000004,-73.94008000000001,Private room,200,2,0,,1,0 +13669,52661714,Manhattan,Hell's Kitchen,40.76214,-73.98985,Private room,300,1,0,,1,0 +13670,52663715,Brooklyn,Williamsburg,40.7126,-73.94668,Entire home/apt,255,3,97,2.37,1,230 +13671,22693737,Brooklyn,Crown Heights,40.671459999999996,-73.94377,Entire home/apt,500,30,96,2.38,1,339 +13672,22663500,Brooklyn,South Slope,40.66622,-73.98357,Private room,75,5,1,0.08,1,0 +13673,52674088,Brooklyn,Greenpoint,40.72738,-73.95553000000001,Private room,150,1,0,,1,0 +13674,2348712,Brooklyn,Williamsburg,40.70727,-73.96056999999999,Private room,64,2,2,0.06,1,0 +13675,36494040,Manhattan,Hell's Kitchen,40.7609,-73.99405,Entire home/apt,250,1,0,,1,0 +13676,50914821,Manhattan,Hell's Kitchen,40.76577,-73.9855,Private room,135,1,101,2.36,1,365 +13677,21147839,Brooklyn,Flatbush,40.64543,-73.96455999999999,Private room,70,7,1,0.03,1,0 +13678,14084903,Brooklyn,Prospect Heights,40.67473,-73.96529,Entire home/apt,295,3,182,4.33,1,226 +13679,19927798,Manhattan,East Harlem,40.793659999999996,-73.94059,Entire home/apt,135,1,4,0.11,1,0 +13680,2782391,Manhattan,Hell's Kitchen,40.766459999999995,-73.98704000000001,Shared room,50,2,2,0.05,2,0 +13681,52705961,Queens,Forest Hills,40.73352,-73.85237,Entire home/apt,69,1,85,2.13,1,308 +13682,10721093,Staten Island,Castleton Corners,40.61042,-74.12276999999999,Entire home/apt,299,3,49,1.91,1,350 +13683,27431753,Queens,Sunnyside,40.7388,-73.92327,Entire home/apt,204,4,188,4.49,1,0 +13684,8885753,Brooklyn,Williamsburg,40.71702,-73.95356,Private room,80,3,0,,1,0 +13685,5903619,Manhattan,Hell's Kitchen,40.76464,-73.99403000000001,Private room,125,1,45,1.13,1,322 +13686,11904916,Brooklyn,Dyker Heights,40.62296,-74.01483,Entire home/apt,69,3,35,0.88,1,0 +13687,6713072,Manhattan,Upper East Side,40.78464,-73.95142,Entire home/apt,139,4,3,0.08,1,0 +13688,2787,Brooklyn,Gravesend,40.6081,-73.97541,Private room,149,1,24,0.64,6,180 +13689,52793525,Queens,Far Rockaway,40.596070000000005,-73.75910999999999,Entire home/apt,100,6,9,0.22,1,0 +13690,16098958,Manhattan,Upper East Side,40.7776,-73.95277,Entire home/apt,360,30,1,0.11,96,213 +13691,52799398,Brooklyn,Williamsburg,40.71386,-73.94742,Private room,99,3,35,0.82,1,0 +13692,22543733,Queens,Sunnyside,40.747009999999996,-73.92314,Private room,60,2,5,0.12,1,0 +13693,52601644,Manhattan,Harlem,40.80338,-73.95734,Private room,60,1,2,0.05,1,0 +13694,40895328,Queens,Astoria,40.75691,-73.92879,Entire home/apt,275,2,147,3.43,2,325 +13695,9346894,Brooklyn,Cypress Hills,40.68203,-73.89374000000001,Private room,65,1,75,1.8,2,361 +13696,9346894,Brooklyn,Cypress Hills,40.682809999999996,-73.89509,Entire home/apt,149,1,119,2.81,2,361 +13697,42278723,Manhattan,East Harlem,40.78593,-73.94169000000001,Private room,60,1,1,0.02,1,0 +13698,13187595,Brooklyn,Bushwick,40.701609999999995,-73.93131,Entire home/apt,120,4,77,1.92,1,1 +13699,52756677,Manhattan,Harlem,40.81667,-73.95695,Private room,35,3,0,,1,0 +13700,5610823,Brooklyn,Clinton Hill,40.68274,-73.96367,Entire home/apt,261,1,5,0.14,1,0 +13701,52862385,Brooklyn,Crown Heights,40.66404,-73.93334,Entire home/apt,99,2,110,2.81,3,271 +13702,24411752,Brooklyn,Williamsburg,40.71042,-73.95071,Private room,49,2,0,,1,0 +13703,756173,Brooklyn,Flatbush,40.643159999999995,-73.96285,Private room,65,1,105,2.54,2,111 +13704,17607084,Brooklyn,South Slope,40.6627,-73.98353,Entire home/apt,150,3,0,,1,0 +13705,23156396,Manhattan,Harlem,40.82042,-73.95305,Private room,65,1,0,,1,0 +13706,756173,Brooklyn,Flatbush,40.64396,-73.96328000000001,Private room,60,1,138,3.36,2,122 +13707,2238052,Brooklyn,Bushwick,40.69288,-73.90831,Private room,69,2,54,1.26,1,0 +13708,18272255,Brooklyn,Prospect Heights,40.67357,-73.96576999999999,Entire home/apt,150,2,77,2.56,1,142 +13709,13345581,Brooklyn,Crown Heights,40.67607,-73.95121,Private room,37,21,11,0.28,2,0 +13710,35518413,Queens,Long Island City,40.763220000000004,-73.93334,Entire home/apt,100,1,206,5.25,2,304 +13711,31919780,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93888000000001,Entire home/apt,99,3,88,2.19,2,47 +13712,16098958,Manhattan,Midtown,40.75295,-73.98889,Entire home/apt,160,30,4,0.12,96,365 +13713,52950465,Manhattan,Hell's Kitchen,40.76195,-73.99224,Entire home/apt,225,30,18,0.45,12,173 +13714,52954055,Brooklyn,Bedford-Stuyvesant,40.68574,-73.93021999999999,Private room,51,5,13,0.33,1,89 +13715,52978874,Manhattan,East Harlem,40.78703,-73.95196,Entire home/apt,250,90,0,,1,363 +13716,52973925,Queens,Astoria,40.756190000000004,-73.91881,Private room,66,1,0,,1,0 +13717,52981364,Manhattan,Harlem,40.80621,-73.94461,Private room,65,2,167,4.16,1,209 +13718,40826687,Brooklyn,Williamsburg,40.710809999999995,-73.94238,Entire home/apt,120,5,34,0.83,1,0 +13719,12518470,Manhattan,Upper East Side,40.781620000000004,-73.9475,Shared room,125,1,6,0.15,1,365 +13720,1250061,Manhattan,Upper West Side,40.79121,-73.96963000000001,Entire home/apt,260,3,82,2.05,1,12 +13721,36753915,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94539,Entire home/apt,94,2,37,0.88,1,0 +13722,6057887,Manhattan,Washington Heights,40.8471,-73.93803,Private room,79,3,4,0.1,5,17 +13723,11095923,Brooklyn,Flatbush,40.64569,-73.95849,Private room,49,8,0,,3,0 +13724,4393578,Manhattan,Chelsea,40.742340000000006,-74.00032,Entire home/apt,1731,10,84,2.8,2,97 +13725,33213436,Brooklyn,Gowanus,40.67843,-73.98393,Private room,99,1,176,4.14,8,365 +13726,13031745,Brooklyn,Williamsburg,40.707640000000005,-73.94230999999999,Private room,41,1,1,0.02,3,0 +13727,4685913,Manhattan,East Village,40.72156,-73.97901999999999,Private room,90,1,3,0.08,2,0 +13728,40501530,Manhattan,Harlem,40.823170000000005,-73.94507,Entire home/apt,69,3,4,0.34,1,0 +13729,20193547,Manhattan,Chelsea,40.75168,-73.99376,Private room,81,1,0,,1,0 +13730,53153865,Brooklyn,Brooklyn Heights,40.69267,-73.99793000000001,Entire home/apt,113,5,77,1.99,1,44 +13731,53169195,Bronx,Fordham,40.855979999999995,-73.90052,Private room,35,3,2,0.06,1,0 +13732,5744448,Manhattan,East Harlem,40.793459999999996,-73.94613000000001,Entire home/apt,85,1,0,,1,0 +13733,10197136,Brooklyn,Bedford-Stuyvesant,40.680859999999996,-73.92746,Private room,45,1,0,,1,0 +13734,283636,Brooklyn,Clinton Hill,40.68545,-73.96048,Entire home/apt,200,3,22,0.54,1,363 +13735,15310997,Manhattan,Upper East Side,40.77467,-73.95405,Entire home/apt,100,30,7,0.21,9,331 +13736,50742613,Bronx,Pelham Bay,40.84721,-73.83221999999999,Entire home/apt,37,5,10,0.25,1,0 +13737,53206623,Queens,Edgemere,40.596059999999994,-73.77882,Entire home/apt,180,1,19,0.54,1,361 +13738,53209258,Brooklyn,Bushwick,40.69724,-73.932,Private room,105,1,0,,1,0 +13739,3599608,Manhattan,Gramercy,40.73555,-73.98994,Entire home/apt,200,28,4,0.11,1,73 +13740,53217509,Brooklyn,Crown Heights,40.67434,-73.95761999999999,Private room,45,4,0,,1,0 +13741,53216788,Manhattan,Harlem,40.81015,-73.94728,Private room,80,1,27,0.79,1,302 +13742,8292025,Manhattan,East Village,40.72551,-73.99075,Entire home/apt,122,3,0,,1,0 +13743,5836431,Manhattan,Hell's Kitchen,40.76367,-73.98613,Entire home/apt,400,3,0,,1,0 +13744,50828435,Brooklyn,Bay Ridge,40.62317,-74.02535,Private room,55,1,1,0.02,1,0 +13745,53218990,Manhattan,Harlem,40.82377,-73.94565,Entire home/apt,110,1,0,,1,0 +13746,23772724,Manhattan,Upper East Side,40.78165,-73.94646999999999,Entire home/apt,110,30,7,0.22,15,331 +13747,53228755,Manhattan,Hell's Kitchen,40.75427,-73.9928,Entire home/apt,135,1,3,0.09,1,0 +13748,48370755,Manhattan,Washington Heights,40.85143,-73.93089,Private room,45,1,3,0.08,1,0 +13749,21359759,Manhattan,Upper West Side,40.79939,-73.96875,Entire home/apt,145,1,20,0.48,1,0 +13750,13400096,Brooklyn,Crown Heights,40.6765,-73.94277,Private room,37,10,6,0.14,3,0 +13751,17929902,Brooklyn,Bedford-Stuyvesant,40.68676,-73.92192,Entire home/apt,90,1,163,3.94,1,25 +13752,1288080,Manhattan,Upper West Side,40.78986,-73.96825,Entire home/apt,305,2,21,0.54,1,177 +13753,53268392,Manhattan,Upper West Side,40.80076,-73.96389,Shared room,100,1,0,,1,0 +13754,53281880,Manhattan,Chinatown,40.71288,-73.9974,Entire home/apt,180,2,167,4.04,1,261 +13755,53274087,Manhattan,Harlem,40.82284,-73.94199,Private room,90,1,151,5.34,1,22 +13756,18471568,Manhattan,Upper East Side,40.768240000000006,-73.95858,Entire home/apt,135,3,5,0.13,1,0 +13757,53284346,Brooklyn,Park Slope,40.66932,-73.98321,Private room,49,5,2,0.05,1,0 +13758,22423634,Brooklyn,Red Hook,40.677409999999995,-74.0139,Entire home/apt,95,3,12,0.3,1,0 +13759,3530446,Brooklyn,Crown Heights,40.67785,-73.95217,Entire home/apt,155,3,71,1.81,3,302 +13760,28340799,Brooklyn,Bedford-Stuyvesant,40.687459999999994,-73.95936,Private room,47,14,1,0.03,1,0 +13761,2321360,Brooklyn,Bedford-Stuyvesant,40.6858,-73.93465,Entire home/apt,120,2,0,,1,0 +13762,16823940,Queens,Ditmars Steinway,40.776509999999995,-73.91009,Private room,38,4,54,1.4,2,24 +13763,3609048,Brooklyn,Crown Heights,40.6695,-73.93298,Entire home/apt,199,2,9,0.61,3,90 +13764,53308963,Manhattan,Chinatown,40.714240000000004,-73.9968,Private room,87,3,27,0.71,2,12 +13765,53319402,Queens,Astoria,40.763009999999994,-73.91295,Private room,80,1,0,,1,0 +13766,16823940,Queens,Ditmars Steinway,40.77673,-73.90993,Private room,40,2,8,0.2,2,229 +13767,53321966,Brooklyn,Bushwick,40.69177,-73.90451,Entire home/apt,155,2,207,4.89,1,20 +13768,53330133,Brooklyn,Carroll Gardens,40.67905,-74.00089,Entire home/apt,125,21,0,,1,0 +13769,8049682,Brooklyn,Crown Heights,40.67433,-73.9575,Private room,81,3,120,2.81,1,0 +13770,30983216,Brooklyn,Bushwick,40.69358,-73.92409,Entire home/apt,129,2,114,2.75,1,235 +13771,17790870,Manhattan,Murray Hill,40.74673,-73.97343000000001,Entire home/apt,83,1,2,0.05,1,0 +13772,5764600,Manhattan,Harlem,40.81388,-73.95229,Private room,70,2,0,,1,0 +13773,724870,Brooklyn,Park Slope,40.6732,-73.97282,Entire home/apt,130,2,16,0.4,1,0 +13774,29466025,Brooklyn,Park Slope,40.67992,-73.9776,Entire home/apt,325,4,2,0.05,1,0 +13775,53369750,Manhattan,Washington Heights,40.8379,-73.94095,Private room,30,3,119,3.19,1,3 +13776,27673980,Queens,Flushing,40.74651,-73.83176,Private room,50,1,112,2.78,8,84 +13777,27673980,Queens,Flushing,40.74609,-73.83175,Private room,50,1,98,2.32,8,79 +13778,53387593,Manhattan,Upper West Side,40.79988,-73.9612,Private room,45,27,0,,1,0 +13779,2983459,Manhattan,Nolita,40.721740000000004,-73.99639,Entire home/apt,200,2,5,0.12,1,0 +13780,53412784,Manhattan,Midtown,40.74357,-73.98465999999999,Private room,600,1,0,,1,0 +13781,29741970,Brooklyn,Greenpoint,40.72508,-73.94488,Private room,80,2,14,0.37,1,0 +13782,53445174,Brooklyn,Bushwick,40.685970000000005,-73.91417,Private room,35,1,1,0.02,1,0 +13783,53411078,Brooklyn,Bushwick,40.6863,-73.91365,Private room,75,1,1,0.08,1,158 +13784,53450065,Queens,Flushing,40.72211,-73.80908000000001,Private room,30,1,0,,1,0 +13785,53462017,Manhattan,Upper West Side,40.789229999999996,-73.96802,Entire home/apt,135,30,1,1.0,1,30 +13786,53468381,Brooklyn,Bedford-Stuyvesant,40.69507,-73.94332,Entire home/apt,125,2,202,4.76,1,276 +13787,15895218,Brooklyn,Gowanus,40.68444,-73.98846999999999,Private room,62,2,1,0.02,2,0 +13788,53471415,Brooklyn,Williamsburg,40.71141,-73.95155,Private room,1002,365,10,0.25,1,365 +13789,53477091,Brooklyn,Williamsburg,40.71436,-73.95445,Entire home/apt,100,1,5,0.12,1,0 +13790,22959695,Queens,Richmond Hill,40.69317,-73.82526999999999,Private room,50,1,96,3.77,5,0 +13791,2581816,Brooklyn,Flatbush,40.65003,-73.96,Entire home/apt,80,7,0,,1,0 +13792,3078092,Manhattan,East Village,40.73144,-73.98355,Private room,75,1,0,,1,0 +13793,53492531,Brooklyn,Crown Heights,40.67778,-73.96091,Entire home/apt,60,1,2,0.05,1,0 +13794,53495399,Brooklyn,Bushwick,40.705259999999996,-73.91964,Private room,75,1,1,0.02,1,0 +13795,12258594,Brooklyn,Crown Heights,40.66386,-73.93876,Entire home/apt,65,3,8,0.19,2,0 +13796,51309850,Manhattan,Greenwich Village,40.730129999999996,-74.00171999999999,Private room,80,1,1,0.02,1,0 +13797,52657843,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.94723,Private room,130,3,6,0.23,1,0 +13798,29065752,Brooklyn,Williamsburg,40.71863,-73.94528000000001,Entire home/apt,333,7,0,,1,365 +13799,9870528,Manhattan,Chelsea,40.73968,-73.99693,Entire home/apt,120,1,0,,1,0 +13800,46714717,Manhattan,Murray Hill,40.74796,-73.97018,Entire home/apt,144,3,0,,1,0 +13801,33213436,Brooklyn,Gowanus,40.67991,-73.98368,Private room,149,1,93,2.48,8,365 +13802,12306936,Brooklyn,Bushwick,40.684129999999996,-73.90731,Entire home/apt,150,3,45,1.1,1,129 +13803,9679291,Brooklyn,Williamsburg,40.710770000000004,-73.96259,Shared room,60,1,1,0.03,1,0 +13804,2360150,Brooklyn,Greenpoint,40.72025,-73.95195,Entire home/apt,190,2,0,,1,0 +13805,53582731,Brooklyn,Bushwick,40.69995,-73.92936999999999,Entire home/apt,100,5,14,0.33,1,1 +13806,814747,Brooklyn,Fort Greene,40.68805,-73.96951999999999,Entire home/apt,150,2,131,3.09,2,0 +13807,3113491,Brooklyn,Crown Heights,40.67008,-73.9571,Entire home/apt,170,3,1,0.03,1,354 +13808,35421139,Queens,Long Island City,40.7457,-73.94497,Private room,65,4,38,0.93,1,12 +13809,8775113,Manhattan,East Harlem,40.79037,-73.9428,Entire home/apt,90,2,1,0.04,1,0 +13810,15235299,Brooklyn,Greenpoint,40.73345,-73.95973000000001,Private room,55,2,26,0.81,2,0 +13811,53618094,Manhattan,Nolita,40.72265,-73.99493000000001,Entire home/apt,250,1,0,,1,0 +13812,36892974,Brooklyn,Bushwick,40.698859999999996,-73.92957,Private room,80,10,0,,1,0 +13813,53627366,Brooklyn,Williamsburg,40.71156,-73.96343,Entire home/apt,319,3,75,1.84,1,112 +13814,51501835,Manhattan,Hell's Kitchen,40.76343,-73.99391,Entire home/apt,120,30,5,0.13,31,345 +13815,53627900,Staten Island,New Brighton,40.64465,-74.09272,Private room,50,1,149,3.7,1,276 +13816,525663,Manhattan,Chinatown,40.714890000000004,-73.991,Private room,100,1,0,,1,0 +13817,53652520,Queens,Astoria,40.76771,-73.91675,Private room,60,1,0,,1,0 +13818,24796157,Brooklyn,Fort Greene,40.68797,-73.97288,Entire home/apt,175,5,16,0.46,1,129 +13819,265152,Brooklyn,Fort Greene,40.68665,-73.9774,Private room,67,3,14,0.41,3,0 +13820,16098958,Manhattan,Upper West Side,40.79141,-73.97345,Entire home/apt,140,30,0,,96,338 +13821,6320146,Brooklyn,Williamsburg,40.71855,-73.9438,Private room,90,2,0,,1,0 +13822,52616278,Brooklyn,Williamsburg,40.71966,-73.96265,Entire home/apt,165,30,14,0.36,1,330 +13823,5487321,Manhattan,Gramercy,40.735620000000004,-73.98308,Private room,90,1,0,,1,0 +13824,51501835,Manhattan,Hell's Kitchen,40.76486,-73.99479000000001,Entire home/apt,150,30,8,0.2,31,298 +13825,5927655,Brooklyn,Williamsburg,40.718920000000004,-73.95616,Private room,115,3,27,0.69,1,56 +13826,9372363,Brooklyn,Midwood,40.61465,-73.96065,Private room,65,2,8,0.19,2,321 +13827,53773419,Brooklyn,Bedford-Stuyvesant,40.69363,-73.94805,Private room,70,3,33,0.81,1,365 +13828,4289557,Manhattan,East Village,40.72647,-73.99061,Entire home/apt,219,2,3,0.09,1,306 +13829,344035,Brooklyn,Prospect Heights,40.678329999999995,-73.96904,Private room,45,1,204,4.82,13,324 +13830,299236,Brooklyn,Bedford-Stuyvesant,40.68379,-73.9405,Private room,55,1,2,0.06,1,365 +13831,11386786,Manhattan,West Village,40.7327,-74.00341,Private room,80,1,0,,1,0 +13832,53819985,Manhattan,Harlem,40.816990000000004,-73.94254000000001,Private room,45,1,15,0.35,1,0 +13833,344035,Brooklyn,Prospect Heights,40.67887,-73.97006,Private room,65,1,64,1.53,13,329 +13834,183151,Manhattan,Lower East Side,40.71578,-73.98201,Private room,47,1,0,,1,0 +13835,11742675,Manhattan,Upper East Side,40.77686,-73.95084,Private room,65,5,7,0.19,2,0 +13836,2981910,Manhattan,Greenwich Village,40.73466,-73.99539,Entire home/apt,229,1,0,,1,0 +13837,1918272,Brooklyn,Williamsburg,40.71419,-73.94368,Entire home/apt,160,5,1,0.16,1,305 +13838,49167739,Manhattan,SoHo,40.72768,-74.00233,Entire home/apt,500,5,24,0.58,2,321 +13839,3370169,Brooklyn,Bushwick,40.70086,-73.93063000000001,Entire home/apt,120,2,99,2.46,1,288 +13840,6158370,Manhattan,Chelsea,40.751259999999995,-73.99498,Private room,139,3,0,,1,0 +13841,53327491,Manhattan,Tribeca,40.71934,-74.00998,Entire home/apt,400,6,40,1.02,1,105 +13842,53884572,Brooklyn,Bedford-Stuyvesant,40.69433,-73.93262,Private room,45,5,2,0.06,1,342 +13843,16480700,Manhattan,Harlem,40.820209999999996,-73.95307,Private room,87,1,80,2.29,7,55 +13844,32812120,Brooklyn,Williamsburg,40.71986,-73.96046,Private room,50,3,0,,2,0 +13845,53955282,Manhattan,East Harlem,40.80985,-73.93838000000001,Entire home/apt,115,3,118,2.85,1,157 +13846,778746,Brooklyn,Williamsburg,40.713190000000004,-73.96406,Private room,51,1,0,,1,0 +13847,53966115,Brooklyn,Bedford-Stuyvesant,40.69693,-73.93725,Private room,43,30,5,0.12,2,311 +13848,41832478,Brooklyn,Williamsburg,40.71852,-73.95897,Private room,70,1,0,,1,0 +13849,6385674,Manhattan,Harlem,40.80639,-73.95551,Entire home/apt,125,3,7,0.19,1,0 +13850,9383056,Brooklyn,Bedford-Stuyvesant,40.69664,-73.93628000000001,Private room,55,5,3,0.09,1,0 +13851,40312267,Brooklyn,Flatbush,40.65398,-73.96377,Private room,50,2,5,0.12,1,0 +13852,24094081,Brooklyn,Bushwick,40.69808,-73.93174,Private room,60,1,1,0.03,1,0 +13853,53717769,Bronx,Parkchester,40.839529999999996,-73.85717,Entire home/apt,88,1,121,2.9,1,170 +13854,47573846,Bronx,Wakefield,40.88808,-73.86017,Entire home/apt,85,20,10,0.24,1,277 +13855,347475,Brooklyn,Columbia St,40.68606,-74.00121999999999,Entire home/apt,275,2,18,0.46,1,292 +13856,52172297,Brooklyn,Bedford-Stuyvesant,40.68168,-73.93574,Private room,65,1,9,0.24,1,343 +13857,9122037,Brooklyn,Park Slope,40.66564,-73.97666,Entire home/apt,135,30,0,,1,341 +13858,16300728,Brooklyn,Sunset Park,40.64953,-74.00010999999999,Private room,40,2,9,0.25,1,20 +13859,16677326,Manhattan,Chelsea,40.74751,-73.99483000000001,Private room,85,1,165,3.96,12,338 +13860,16677326,Manhattan,Chelsea,40.74896,-73.99656999999999,Private room,85,1,146,3.62,12,352 +13861,16677326,Manhattan,Chelsea,40.74973,-73.99515,Private room,85,1,162,3.91,12,344 +13862,1692144,Brooklyn,South Slope,40.66388,-73.98586999999999,Entire home/apt,120,1,5,0.12,1,0 +13863,587918,Manhattan,East Village,40.72315,-73.98250999999999,Entire home/apt,220,2,48,1.21,1,135 +13864,2355573,Brooklyn,Williamsburg,40.719570000000004,-73.94199,Private room,80,5,81,1.96,2,308 +13865,5162192,Manhattan,Upper West Side,40.79783,-73.96405,Entire home/apt,275,30,10,0.25,12,219 +13866,16782573,Queens,Middle Village,40.71852,-73.88373,Entire home/apt,125,4,93,2.22,4,306 +13867,54074349,Manhattan,Chelsea,40.74398,-73.99664,Shared room,46,1,0,,1,0 +13868,54074445,Manhattan,Roosevelt Island,40.76859,-73.94359,Entire home/apt,65,1,3,0.07,1,0 +13869,2503478,Brooklyn,Prospect-Lefferts Gardens,40.65436,-73.96179000000001,Private room,58,1,5,0.13,1,2 +13870,54081802,Queens,Ridgewood,40.70017,-73.91014,Private room,60,1,0,,1,0 +13871,16782573,Queens,Middle Village,40.71632,-73.88297,Entire home/apt,115,4,6,0.14,4,314 +13872,21820535,Brooklyn,Crown Heights,40.671040000000005,-73.93859,Private room,65,3,0,,1,0 +13873,54123180,Queens,Astoria,40.75869,-73.91899000000001,Private room,49,1,5,0.13,1,332 +13874,5829904,Brooklyn,Greenpoint,40.727090000000004,-73.95326,Entire home/apt,70,3,2,0.11,1,0 +13875,54130768,Manhattan,Washington Heights,40.85823,-73.93611999999999,Private room,95,1,0,,1,158 +13876,22364252,Manhattan,West Village,40.73492,-74.00457,Entire home/apt,196,15,2,0.05,1,31 +13877,16572048,Manhattan,Upper East Side,40.76574,-73.95915,Private room,80,5,5,0.12,1,0 +13878,43392243,Staten Island,Concord,40.600770000000004,-74.07788000000001,Private room,35,4,73,2.1,4,320 +13879,8255336,Manhattan,SoHo,40.72302,-74.00487,Private room,82,5,12,0.3,2,0 +13880,26584499,Manhattan,Upper West Side,40.7832,-73.98189,Entire home/apt,136,31,2,0.1,8,365 +13881,6429683,Manhattan,Upper East Side,40.76278,-73.96638,Private room,75,1,89,2.1,1,268 +13882,40861618,Manhattan,Inwood,40.868179999999995,-73.92708,Entire home/apt,68,6,24,0.6,1,0 +13883,853118,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.92059,Private room,64,4,25,0.59,1,18 +13884,54206554,Brooklyn,Bedford-Stuyvesant,40.68577,-73.95179,Entire home/apt,100,3,1,0.02,1,0 +13885,48170471,Brooklyn,Williamsburg,40.71886,-73.96234,Private room,65,2,2,0.05,2,0 +13886,3710888,Brooklyn,Park Slope,40.67546,-73.97528,Private room,350,365,0,,1,364 +13887,4118478,Manhattan,East Village,40.72948,-73.98885,Entire home/apt,450,1,1,0.03,1,0 +13888,54210823,Manhattan,Upper West Side,40.790040000000005,-73.97308000000001,Private room,99,1,0,,1,157 +13889,54235059,Queens,Long Island City,40.743990000000004,-73.95321,Entire home/apt,195,1,0,,1,0 +13890,54242258,Brooklyn,Bushwick,40.702059999999996,-73.92964,Private room,48,1,1,0.03,1,0 +13891,1855214,Brooklyn,Bushwick,40.693659999999994,-73.91608000000001,Entire home/apt,85,2,99,2.5,1,29 +13892,54262760,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95387,Private room,70,1,0,,1,0 +13893,48705078,Manhattan,Hell's Kitchen,40.76165,-73.99061999999999,Entire home/apt,180,2,136,3.45,1,253 +13894,49380531,Manhattan,Hell's Kitchen,40.76696,-73.99139,Private room,90,1,0,,1,0 +13895,14076423,Brooklyn,Park Slope,40.67626,-73.98210999999999,Entire home/apt,175,7,43,1.07,1,0 +13896,41177070,Brooklyn,Williamsburg,40.71402,-73.94431999999999,Entire home/apt,245,3,16,0.4,2,66 +13897,13200818,Brooklyn,Bushwick,40.69913,-73.91814000000001,Private room,45,3,11,0.31,1,0 +13898,54279433,Queens,Sunnyside,40.74286,-73.91635,Private room,34,1,1,0.02,1,0 +13899,54280519,Manhattan,Upper East Side,40.76705,-73.95125999999999,Entire home/apt,125,1,0,,1,0 +13900,54282449,Brooklyn,Bedford-Stuyvesant,40.684490000000004,-73.92773000000001,Entire home/apt,75,1,38,3.79,1,195 +13901,54283244,Brooklyn,Bedford-Stuyvesant,40.67895,-73.92851,Entire home/apt,125,3,75,3.27,1,316 +13902,14290739,Manhattan,Upper West Side,40.79182,-73.96564000000001,Entire home/apt,200,31,8,0.22,3,342 +13903,17500155,Queens,Long Island City,40.74775,-73.94797,Entire home/apt,100,12,5,0.13,1,0 +13904,2650644,Manhattan,Harlem,40.81306,-73.94141,Entire home/apt,70,7,12,0.33,1,38 +13905,54339185,Brooklyn,Greenpoint,40.72963,-73.94937,Private room,45,1,0,,1,0 +13906,7203997,Brooklyn,Park Slope,40.67094,-73.97388000000001,Entire home/apt,154,3,123,3.01,2,289 +13907,54120025,Manhattan,Upper East Side,40.782709999999994,-73.9451,Entire home/apt,300,31,1,0.04,1,358 +13908,54348871,Manhattan,Upper West Side,40.79753,-73.96211,Entire home/apt,250,1,88,2.13,1,329 +13909,54351163,Manhattan,East Village,40.72834,-73.98048,Entire home/apt,140,7,65,1.65,1,242 +13910,54353888,Manhattan,Harlem,40.83338,-73.95051,Private room,59,5,26,0.61,1,0 +13911,40221604,Manhattan,Harlem,40.82385,-73.94686999999999,Private room,80,2,86,2.43,3,63 +13912,53713798,Brooklyn,Greenpoint,40.7264,-73.95405,Entire home/apt,230,5,33,0.94,1,26 +13913,36710280,Manhattan,Upper West Side,40.78975,-73.97001,Entire home/apt,150,1,4,0.11,1,0 +13914,51531044,Queens,Jackson Heights,40.75009,-73.87578,Private room,45,1,78,1.94,4,337 +13915,10099253,Brooklyn,Fort Greene,40.69406,-73.98102,Entire home/apt,144,3,1,0.02,1,0 +13916,30423241,Brooklyn,Greenpoint,40.7299,-73.95782,Private room,44,4,47,1.3,2,0 +13917,2470568,Brooklyn,Greenpoint,40.7235,-73.94203,Entire home/apt,75,1,0,,1,0 +13918,18802626,Brooklyn,Bedford-Stuyvesant,40.693670000000004,-73.93285999999999,Private room,45,10,25,0.62,1,29 +13919,16911296,Manhattan,East Village,40.72997,-73.98633000000001,Private room,129,1,11,0.27,1,0 +13920,54375099,Manhattan,SoHo,40.72566,-74.00275,Private room,75,1,1,0.02,1,0 +13921,54378184,Brooklyn,Clinton Hill,40.68895,-73.96489,Entire home/apt,220,12,13,0.31,3,354 +13922,4148248,Brooklyn,Williamsburg,40.70687,-73.93981,Entire home/apt,125,4,138,3.5,2,37 +13923,54378184,Brooklyn,Fort Greene,40.687059999999995,-73.97065,Entire home/apt,150,30,20,0.47,3,326 +13924,18030603,Manhattan,Gramercy,40.733309999999996,-73.98229,Private room,63,1,3,0.07,1,0 +13925,8007003,Manhattan,West Village,40.73557,-74.006,Entire home/apt,120,1,0,,1,0 +13926,13558726,Brooklyn,Bedford-Stuyvesant,40.68645,-73.95711,Private room,45,7,0,,1,0 +13927,1520623,Brooklyn,Columbia St,40.68591,-74.00164000000001,Entire home/apt,120,7,0,,1,0 +13928,54401446,Manhattan,Harlem,40.83113,-73.94924,Entire home/apt,125,1,0,,1,0 +13929,52262589,Manhattan,Kips Bay,40.73988,-73.97968,Entire home/apt,450,2,2,0.05,1,0 +13930,25996073,Manhattan,Tribeca,40.71991,-74.00641,Entire home/apt,1250,30,0,,1,342 +13931,880323,Brooklyn,Bushwick,40.69447,-73.92213000000001,Private room,36,2,1,0.02,1,0 +13932,54422839,Brooklyn,Prospect Heights,40.68018,-73.96571999999999,Private room,48,3,4,0.1,1,0 +13933,44547688,Brooklyn,East New York,40.67283,-73.87785,Private room,50,1,35,0.92,2,365 +13934,6650002,Queens,Long Island City,40.75951,-73.92820999999999,Private room,59,3,42,0.99,1,3 +13935,45531690,Brooklyn,Greenpoint,40.72853,-73.95533,Private room,39,1,1,0.02,1,0 +13936,30356325,Manhattan,Harlem,40.80734,-73.94666,Entire home/apt,70,2,4,0.1,1,0 +13937,5769963,Brooklyn,Williamsburg,40.7172,-73.95557,Entire home/apt,150,1,0,,1,0 +13938,9932811,Brooklyn,Flatbush,40.64875,-73.96978,Entire home/apt,100,5,2,0.05,1,0 +13939,15105293,Brooklyn,Williamsburg,40.707770000000004,-73.9435,Entire home/apt,80,6,0,,1,0 +13940,1258469,Brooklyn,Fort Greene,40.68983,-73.97327,Entire home/apt,125,1,75,1.81,1,171 +13941,304651,Manhattan,Chelsea,40.74666,-74.00201,Entire home/apt,180,1,0,,1,0 +13942,17012496,Brooklyn,Williamsburg,40.71987,-73.93705,Private room,45,4,1,0.03,1,0 +13943,51501835,Manhattan,Hell's Kitchen,40.76467,-73.99422,Entire home/apt,185,30,8,0.21,31,332 +13944,17191693,Brooklyn,Williamsburg,40.70732,-73.95466,Private room,60,2,18,0.46,2,0 +13945,22499760,Brooklyn,Williamsburg,40.71532,-73.95352,Private room,40,1,1,0.02,1,0 +13946,17191693,Brooklyn,Williamsburg,40.706920000000004,-73.95501,Private room,80,3,35,0.85,2,0 +13947,48170471,Brooklyn,Williamsburg,40.71906,-73.96338,Entire home/apt,85,2,0,,2,0 +13948,54539364,Brooklyn,South Slope,40.6651,-73.98307,Entire home/apt,135,3,134,3.18,1,241 +13949,54548232,Manhattan,Harlem,40.825,-73.95226,Private room,70,2,84,2.23,2,311 +13950,1802807,Brooklyn,Williamsburg,40.71412,-73.95895,Entire home/apt,600,30,7,0.17,2,67 +13951,25475028,Manhattan,Chinatown,40.71448,-73.99157,Private room,110,1,1,0.03,1,0 +13952,14611780,Brooklyn,Columbia St,40.68928,-73.99903,Entire home/apt,105,1,5,0.14,1,0 +13953,5479882,Manhattan,Harlem,40.80512,-73.953,Private room,100,2,72,2.08,1,19 +13954,5304248,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95,Private room,65,5,8,0.21,1,0 +13955,10406845,Manhattan,Upper East Side,40.76952,-73.95688,Entire home/apt,125,14,28,1.29,1,22 +13956,1424084,Brooklyn,Bushwick,40.693490000000004,-73.91109,Private room,50,1,9,0.92,1,179 +13957,48988714,Brooklyn,Williamsburg,40.71362,-73.95617,Entire home/apt,360,1,4,0.18,3,201 +13958,14944507,Brooklyn,Park Slope,40.67225,-73.97357,Entire home/apt,160,5,16,0.4,1,11 +13959,32712155,Manhattan,Chelsea,40.7408,-74.00126999999999,Entire home/apt,225,1,0,,1,0 +13960,1558246,Brooklyn,Fort Greene,40.688109999999995,-73.97621,Private room,105,3,0,,1,0 +13961,14077910,Manhattan,Greenwich Village,40.728429999999996,-73.9999,Entire home/apt,175,60,28,0.7,1,126 +13962,4745560,Brooklyn,Bushwick,40.70158,-73.91851,Entire home/apt,130,1,0,,1,0 +13963,2787,Brooklyn,Bensonhurst,40.60951,-73.97641999999999,Shared room,79,1,15,0.43,6,180 +13964,16919131,Brooklyn,Park Slope,40.6668,-73.97713,Private room,90,2,56,1.34,1,60 +13965,13731605,Brooklyn,Crown Heights,40.6764,-73.93819,Entire home/apt,283,4,92,2.34,2,234 +13966,54675040,Queens,Woodside,40.74706,-73.90434,Private room,50,1,0,,1,0 +13967,53894093,Staten Island,Midland Beach,40.57411,-74.09436,Entire home/apt,100,2,0,,1,0 +13968,344035,Brooklyn,Prospect Heights,40.67897,-73.9709,Private room,70,1,238,5.87,13,313 +13969,13731605,Brooklyn,Crown Heights,40.67689,-73.93966999999999,Entire home/apt,199,4,52,1.31,2,242 +13970,43816209,Brooklyn,Bedford-Stuyvesant,40.68616,-73.92514,Private room,45,4,30,0.77,1,286 +13971,1515120,Manhattan,Midtown,40.755,-73.96562,Private room,325,3,9,0.23,1,88 +13972,5179817,Manhattan,Flatiron District,40.74102,-73.98961,Entire home/apt,275,1,0,,1,0 +13973,51501835,Manhattan,Hell's Kitchen,40.76295,-73.99432,Entire home/apt,130,30,6,0.15,31,331 +13974,24938988,Manhattan,Upper East Side,40.77032,-73.95268,Entire home/apt,179,1,138,3.3,1,252 +13975,54761069,Manhattan,Harlem,40.80708,-73.95211,Private room,80,3,10,0.28,1,332 +13976,54763152,Manhattan,Upper West Side,40.77929,-73.98513,Private room,99,4,68,1.62,1,57 +13977,13620283,Manhattan,Harlem,40.8027,-73.94629,Entire home/apt,135,3,16,0.39,1,0 +13978,4966907,Brooklyn,Bedford-Stuyvesant,40.69506,-73.95019,Entire home/apt,145,3,41,1.0,1,0 +13979,4274594,Brooklyn,Bedford-Stuyvesant,40.6859,-73.9576,Entire home/apt,69,90,43,1.16,1,0 +13980,5812675,Brooklyn,Crown Heights,40.66791,-73.95914,Entire home/apt,89,5,0,,1,0 +13981,9273561,Manhattan,East Harlem,40.79013,-73.94473,Private room,75,2,21,0.5,1,0 +13982,37806185,Manhattan,Murray Hill,40.7441,-73.97224,Shared room,200,1,0,,1,0 +13983,697477,Queens,Woodside,40.75427,-73.90646,Private room,55,1,54,1.28,1,297 +13984,54908827,Manhattan,Murray Hill,40.749759999999995,-73.97748,Entire home/apt,80,1,0,,1,0 +13985,54917558,Brooklyn,Bushwick,40.68678,-73.90629,Entire home/apt,75,2,154,4.04,1,15 +13986,11160340,Manhattan,Morningside Heights,40.80387,-73.96096,Entire home/apt,90,3,1,0.07,2,0 +13987,54921733,Brooklyn,Flatbush,40.64295,-73.96704,Entire home/apt,98,4,106,2.59,3,273 +13988,32298504,Manhattan,Washington Heights,40.83723,-73.94249,Entire home/apt,70,3,34,0.81,1,0 +13989,10489069,Manhattan,Upper West Side,40.79886,-73.96157,Entire home/apt,132,7,0,,1,0 +13990,25104068,Brooklyn,Crown Heights,40.66938,-73.95721999999999,Private room,50,2,24,1.79,1,47 +13991,16098958,Manhattan,Hell's Kitchen,40.75685,-73.99569,Entire home/apt,250,30,1,0.13,96,331 +13992,55036405,Manhattan,Upper East Side,40.775240000000004,-73.94682,Shared room,199,1,0,,1,0 +13993,36199306,Manhattan,Nolita,40.72396,-73.99445,Entire home/apt,99,2,43,1.05,1,0 +13994,10571574,Brooklyn,Bedford-Stuyvesant,40.69892,-73.94645,Private room,77,2,74,1.88,1,343 +13995,21229563,Manhattan,Upper East Side,40.782309999999995,-73.94570999999999,Entire home/apt,100,1,0,,1,0 +13996,2645592,Queens,Astoria,40.75666,-73.91449,Entire home/apt,130,3,50,1.27,2,352 +13997,55060863,Brooklyn,Midwood,40.61155,-73.96337,Private room,60,1,1,0.03,1,0 +13998,55062858,Manhattan,Hell's Kitchen,40.75645,-73.99404,Entire home/apt,200,1,207,5.01,1,245 +13999,9466826,Brooklyn,Williamsburg,40.707879999999996,-73.93889,Entire home/apt,117,10,3,0.43,1,1 +14000,11375436,Brooklyn,Windsor Terrace,40.65412,-73.97706,Entire home/apt,89,1,1,0.02,1,0 +14001,8136206,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95836,Private room,44,2,31,0.75,2,297 +14002,40733633,Manhattan,Inwood,40.86912,-73.91988,Private room,70,1,1,0.03,1,312 +14003,51238762,Manhattan,East Village,40.730579999999996,-73.98286,Private room,39,1,4,0.1,1,0 +14004,2199280,Manhattan,Morningside Heights,40.81535,-73.95862,Entire home/apt,150,31,15,0.36,1,0 +14005,7556789,Manhattan,East Harlem,40.80523,-73.93929,Private room,60,1,0,,1,0 +14006,12672672,Brooklyn,Sunset Park,40.64179,-74.01146999999999,Entire home/apt,75,1,0,,1,0 +14007,47121117,Manhattan,Harlem,40.80097,-73.9489,Private room,89,1,8,0.21,1,0 +14008,41474488,Manhattan,Greenwich Village,40.7276,-74.00075,Entire home/apt,200,2,47,1.14,1,205 +14009,48415933,Brooklyn,Clinton Hill,40.682559999999995,-73.96108000000001,Entire home/apt,124,2,97,2.45,1,104 +14010,55165952,Brooklyn,Williamsburg,40.715070000000004,-73.94093000000001,Private room,60,1,0,,1,0 +14011,29882817,Manhattan,East Village,40.72553,-73.9777,Private room,70,4,0,,1,0 +14012,5075354,Brooklyn,Crown Heights,40.67755,-73.95108,Entire home/apt,100,4,8,0.19,1,0 +14013,16098958,Manhattan,Hell's Kitchen,40.7653,-73.98536,Entire home/apt,117,30,2,0.07,96,198 +14014,55179950,Manhattan,Washington Heights,40.83865,-73.93782,Private room,100,1,0,,1,0 +14015,41494545,Brooklyn,Bushwick,40.701229999999995,-73.91865,Private room,50,5,2,0.07,1,0 +14016,8655790,Brooklyn,Bushwick,40.69887,-73.9227,Private room,75,20,1,0.11,1,93 +14017,50296635,Brooklyn,Williamsburg,40.71455,-73.9618,Private room,75,2,3,0.07,1,0 +14018,19227044,Brooklyn,Flatbush,40.64945,-73.9624,Entire home/apt,75,7,1,0.02,1,0 +14019,55197031,Manhattan,West Village,40.73242,-74.00411,Entire home/apt,150,1,0,,1,0 +14020,55201743,Brooklyn,Bushwick,40.696999999999996,-73.92175999999999,Private room,65,1,1,0.04,1,0 +14021,18192996,Queens,Ditmars Steinway,40.7794,-73.91646,Shared room,22,1,14,0.34,2,0 +14022,36998357,Manhattan,Kips Bay,40.7388,-73.98024000000001,Entire home/apt,120,1,0,,1,0 +14023,10558652,Manhattan,Two Bridges,40.71287,-73.99573000000001,Entire home/apt,320,4,6,0.18,2,142 +14024,55207670,Queens,Astoria,40.76446,-73.92988000000001,Private room,65,2,0,,1,0 +14025,15927582,Brooklyn,Park Slope,40.67706,-73.98227,Entire home/apt,95,1,0,,1,0 +14026,8784903,Manhattan,Inwood,40.86679,-73.92699,Entire home/apt,115,30,1,0.09,1,0 +14027,2541529,Manhattan,Chelsea,40.74237,-74.00063,Entire home/apt,120,2,2,0.05,1,0 +14028,488202,Manhattan,SoHo,40.72112,-74.00039,Private room,150,1,0,,1,0 +14029,55257448,Brooklyn,Flatbush,40.64205,-73.96621999999999,Private room,40,5,0,,1,0 +14030,55261821,Brooklyn,Park Slope,40.67631,-73.97224,Entire home/apt,425,5,2,0.05,1,0 +14031,55270457,Brooklyn,Bushwick,40.68696,-73.91382,Entire home/apt,75,2,179,4.47,1,123 +14032,345252,Brooklyn,Crown Heights,40.6803,-73.96261,Entire home/apt,150,21,23,0.57,3,0 +14033,14796247,Brooklyn,Flatbush,40.64266,-73.96491999999999,Private room,49,7,22,0.54,4,269 +14034,23778489,Manhattan,East Village,40.72215,-73.98496,Entire home/apt,165,4,8,0.21,1,351 +14035,55300400,Manhattan,SoHo,40.725229999999996,-74.00126999999999,Entire home/apt,200,1,0,,1,0 +14036,6716450,Manhattan,Upper West Side,40.798159999999996,-73.97178000000001,Entire home/apt,175,2,1,0.03,1,0 +14037,55334250,Brooklyn,Crown Heights,40.6643,-73.95196,Private room,97,1,209,5.02,1,9 +14038,11774630,Manhattan,East Harlem,40.79018,-73.94689,Entire home/apt,270,4,171,4.14,2,15 +14039,35761677,Brooklyn,Bedford-Stuyvesant,40.681999999999995,-73.91851,Entire home/apt,155,2,156,3.74,1,223 +14040,7822683,Brooklyn,Greenpoint,40.73539,-73.95838,Private room,55,10,2,0.05,1,0 +14041,45085848,Manhattan,East Village,40.72999,-73.98275,Private room,80,3,72,1.79,1,133 +14042,55395596,Bronx,Fieldston,40.88777,-73.9059,Private room,70,1,1,0.03,1,0 +14043,24981045,Queens,Astoria,40.76061,-73.91767,Private room,35,1,1,0.02,1,0 +14044,1913404,Manhattan,Gramercy,40.738040000000005,-73.9852,Entire home/apt,110,1,3,0.07,1,0 +14045,52950465,Manhattan,Midtown,40.752790000000005,-73.97251,Entire home/apt,129,30,4,0.11,12,328 +14046,55433649,Brooklyn,Williamsburg,40.71504,-73.93613,Private room,45,1,169,4.11,1,134 +14047,3139829,Manhattan,Upper East Side,40.76797,-73.95369000000001,Private room,50,1,2,0.05,1,0 +14048,10954437,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94864,Private room,105,1,24,0.69,1,0 +14049,28546873,Brooklyn,Bedford-Stuyvesant,40.68995,-73.92844000000001,Private room,45,3,9,0.34,1,80 +14050,45033175,Manhattan,Hell's Kitchen,40.76175,-73.99041,Private room,83,2,15,0.37,3,1 +14051,10525320,Manhattan,Upper East Side,40.771409999999996,-73.9534,Shared room,40,1,56,1.35,2,173 +14052,29880001,Manhattan,Flatiron District,40.74095,-73.98554,Private room,85,1,0,,1,0 +14053,12133055,Manhattan,Hell's Kitchen,40.759809999999995,-73.99070999999999,Entire home/apt,400,3,124,3.0,1,261 +14054,22774265,Manhattan,Roosevelt Island,40.76189,-73.94934,Private room,64,3,51,1.28,1,40 +14055,34040597,Manhattan,Upper East Side,40.76443,-73.95833,Entire home/apt,130,2,19,0.45,1,13 +14056,53224546,Manhattan,Washington Heights,40.83365,-73.94459,Private room,65,3,0,,1,0 +14057,45005719,Manhattan,Hell's Kitchen,40.76504,-73.98855999999999,Entire home/apt,200,1,1,0.03,1,364 +14058,55532612,Queens,Arverne,40.5903,-73.79247,Entire home/apt,200,1,15,1.23,1,354 +14059,55558315,Brooklyn,Crown Heights,40.6713,-73.95603,Entire home/apt,120,2,0,,1,0 +14060,24489871,Queens,Rego Park,40.73462,-73.85705,Private room,60,1,64,1.57,2,280 +14061,55567227,Manhattan,Harlem,40.829029999999996,-73.94747,Private room,60,3,124,3.16,2,82 +14062,15546330,Manhattan,Morningside Heights,40.80554,-73.96422,Entire home/apt,80,1,1,0.02,1,0 +14063,20358661,Manhattan,Lower East Side,40.71823,-73.98319000000001,Private room,90,7,0,,1,0 +14064,2423061,Brooklyn,Clinton Hill,40.6837,-73.96505,Entire home/apt,125,5,1,0.02,1,0 +14065,8794068,Brooklyn,Williamsburg,40.71113,-73.95456999999999,Private room,40,20,0,,1,0 +14066,35301269,Manhattan,Harlem,40.80526,-73.95509,Private room,80,2,69,1.72,1,140 +14067,55617221,Manhattan,Civic Center,40.71331,-73.99821999999999,Entire home/apt,100,2,0,,1,0 +14068,25514430,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.9489,Entire home/apt,50,6,1,0.04,1,0 +14069,33859930,Brooklyn,East Flatbush,40.64528,-73.93457,Private room,37,1,16,0.46,1,0 +14070,8851665,Manhattan,West Village,40.73303,-74.00118,Entire home/apt,200,3,1,0.03,1,0 +14071,243427,Brooklyn,Williamsburg,40.71327,-73.96438,Private room,65,3,9,0.24,1,0 +14072,13713796,Manhattan,Chelsea,40.74358,-73.99758,Private room,130,2,32,0.79,1,355 +14073,9358748,Brooklyn,Crown Heights,40.670390000000005,-73.95959,Entire home/apt,95,14,3,0.08,1,0 +14074,51372003,Brooklyn,East Flatbush,40.65058,-73.94859,Private room,54,2,63,1.52,2,316 +14075,55709707,Manhattan,Upper West Side,40.79176,-73.97329,Entire home/apt,82,1,0,,1,0 +14076,55713233,Manhattan,Murray Hill,40.7462,-73.97707,Entire home/apt,105,3,3,0.08,1,0 +14077,47062311,Brooklyn,Flatbush,40.646809999999995,-73.95900999999999,Shared room,30,3,5,0.14,1,189 +14078,55718379,Manhattan,Hell's Kitchen,40.764070000000004,-73.98868,Entire home/apt,169,30,0,,1,364 +14079,55725808,Manhattan,East Harlem,40.7869,-73.95285,Private room,45,1,2,0.05,1,0 +14080,3068641,Manhattan,Harlem,40.80806,-73.9435,Entire home/apt,100,4,0,,1,0 +14081,55785222,Queens,Astoria,40.76636,-73.90393,Entire home/apt,75,1,0,,1,0 +14082,48320077,Manhattan,East Village,40.7276,-73.98635,Entire home/apt,219,1,101,2.46,2,341 +14083,55808233,Manhattan,Hell's Kitchen,40.75979,-73.99216,Private room,75,2,0,,1,0 +14084,55813598,Brooklyn,Gravesend,40.6074,-73.97458,Shared room,25,3,119,2.9,2,349 +14085,16430584,Manhattan,Hell's Kitchen,40.763709999999996,-73.99306,Entire home/apt,250,3,3,0.08,1,0 +14086,55823684,Manhattan,East Village,40.72381,-73.9892,Entire home/apt,149,1,0,,1,0 +14087,329931,Brooklyn,Crown Heights,40.67393,-73.9546,Private room,33,7,0,,1,0 +14088,32003714,Queens,Ditmars Steinway,40.77567,-73.92201999999999,Private room,90,7,3,0.09,1,358 +14089,14171743,Brooklyn,South Slope,40.66323,-73.98116999999999,Private room,87,2,112,2.74,1,10 +14090,55853534,Brooklyn,Bedford-Stuyvesant,40.68542,-73.93965,Private room,60,4,0,,1,0 +14091,798949,Brooklyn,Greenpoint,40.7254,-73.95246,Entire home/apt,99,10,0,,1,0 +14092,11189753,Brooklyn,Fort Greene,40.687290000000004,-73.96995,Entire home/apt,225,10,10,0.26,4,350 +14093,55908144,Manhattan,Harlem,40.81389,-73.95205,Private room,45,7,6,0.15,1,0 +14094,18575991,Brooklyn,Williamsburg,40.7178,-73.95595,Entire home/apt,129,4,5,0.12,1,0 +14095,11522679,Manhattan,East Village,40.73117,-73.98593000000001,Entire home/apt,325,1,0,,1,0 +14096,45082547,Brooklyn,South Slope,40.66686,-73.98907,Entire home/apt,120,2,5,0.12,1,0 +14097,55948559,Bronx,Pelham Gardens,40.86553,-73.83993000000001,Private room,35,1,67,1.81,4,11 +14098,15129374,Manhattan,Lower East Side,40.72088,-73.98533,Entire home/apt,200,2,1,0.03,1,0 +14099,6198203,Brooklyn,East Flatbush,40.66101,-73.9302,Entire home/apt,100,2,29,2.17,1,318 +14100,5397742,Brooklyn,Downtown Brooklyn,40.700070000000004,-73.99091,Entire home/apt,250,1,0,,1,0 +14101,6778614,Brooklyn,Bushwick,40.70807,-73.92113,Private room,122,2,11,0.82,2,0 +14102,19408191,Manhattan,Greenwich Village,40.72891,-74.00109,Entire home/apt,149,5,0,,1,0 +14103,6044561,Manhattan,Midtown,40.74662,-73.98965,Entire home/apt,295,1,0,,1,0 +14104,768181,Brooklyn,Williamsburg,40.713770000000004,-73.94091999999999,Entire home/apt,120,1,1,0.02,1,0 +14105,6126518,Manhattan,Upper East Side,40.77949,-73.94973,Entire home/apt,150,6,11,0.3,1,174 +14106,4827009,Brooklyn,Williamsburg,40.70528,-73.94384000000001,Private room,60,1,0,,1,0 +14107,1639309,Brooklyn,Columbia St,40.68403,-74.00192,Entire home/apt,110,30,1,0.03,1,312 +14108,55982547,Manhattan,Battery Park City,40.70642,-74.01756,Entire home/apt,245,3,59,1.49,1,184 +14109,17052634,Brooklyn,Crown Heights,40.67204,-73.94614,Private room,100,1,0,,1,0 +14110,16326744,Brooklyn,Bushwick,40.70373,-73.92455,Entire home/apt,75,1,0,,1,0 +14111,24304455,Manhattan,Flatiron District,40.739670000000004,-73.98643,Entire home/apt,99,14,0,,1,0 +14112,7911103,Brooklyn,Greenpoint,40.72639,-73.94764,Entire home/apt,205,2,0,,1,0 +14113,12485770,Manhattan,SoHo,40.726890000000004,-74.00086,Entire home/apt,110,30,2,0.06,9,333 +14114,10295496,Brooklyn,Bushwick,40.684459999999994,-73.90850999999999,Private room,33,1,1,0.02,1,0 +14115,31411094,Brooklyn,Crown Heights,40.6725,-73.93981,Entire home/apt,98,3,128,3.1,1,342 +14116,5075049,Manhattan,East Village,40.7297,-73.98192,Entire home/apt,133,28,2,0.05,1,0 +14117,56066018,Brooklyn,Crown Heights,40.6786,-73.9621,Private room,45,1,1,0.02,1,0 +14118,697990,Brooklyn,Williamsburg,40.70516,-73.95088,Private room,65,3,2,0.05,1,0 +14119,56078939,Staten Island,Tottenville,40.499790000000004,-74.24084,Private room,110,2,0,,1,364 +14120,2276842,Brooklyn,Williamsburg,40.7054,-73.94283,Private room,80,2,5,0.15,2,0 +14121,56082757,Brooklyn,Williamsburg,40.71074,-73.96276,Entire home/apt,150,2,0,,1,0 +14122,1334808,Brooklyn,Williamsburg,40.71414,-73.95761,Entire home/apt,110,5,0,,2,0 +14123,12353168,Brooklyn,Williamsburg,40.71716,-73.96455999999999,Entire home/apt,149,5,20,1.08,1,0 +14124,17592675,Manhattan,Midtown,40.752990000000004,-73.97154,Entire home/apt,400,1,0,,1,0 +14125,56119624,Manhattan,Harlem,40.81195,-73.95274,Private room,150,1,17,0.43,1,363 +14126,2252514,Brooklyn,Prospect-Lefferts Gardens,40.65791,-73.95009,Private room,35,1,2,0.06,1,0 +14127,43533460,Manhattan,Washington Heights,40.83525,-73.9452,Private room,36,1,3,0.08,1,0 +14128,3881467,Manhattan,Washington Heights,40.856120000000004,-73.93024,Private room,45,1,50,1.32,1,90 +14129,56112494,Brooklyn,Bushwick,40.6887,-73.90598,Private room,65,2,0,,1,0 +14130,56124518,Manhattan,Lower East Side,40.72005,-73.98409000000001,Private room,90,5,1,0.03,1,0 +14131,38116129,Brooklyn,Bensonhurst,40.60729,-74.00117,Private room,68,2,39,1.1,1,0 +14132,34698196,Brooklyn,Flatbush,40.65123,-73.96436,Private room,36,1,1,0.03,1,0 +14133,39261381,Brooklyn,Flatlands,40.62361,-73.93423,Private room,34,1,7,0.17,2,349 +14134,56193545,Manhattan,Upper East Side,40.77516,-73.9555,Shared room,80,1,0,,1,0 +14135,185847,Brooklyn,Fort Greene,40.68584,-73.97570999999999,Entire home/apt,135,2,1,0.03,1,0 +14136,56197328,Manhattan,Morningside Heights,40.807320000000004,-73.9648,Private room,128,1,33,0.85,2,235 +14137,7594757,Manhattan,Washington Heights,40.83625,-73.94062,Private room,40,2,18,0.44,1,0 +14138,8573805,Queens,Ridgewood,40.70384,-73.91145,Private room,40,7,0,,1,0 +14139,56214524,Brooklyn,Clinton Hill,40.6869,-73.96324,Entire home/apt,155,3,161,3.94,1,251 +14140,35494734,Queens,Woodside,40.75293,-73.90304,Private room,50,4,49,1.21,2,211 +14141,790177,Brooklyn,Sunset Park,40.64553,-74.00220999999999,Private room,40,2,119,2.88,1,0 +14142,36894011,Brooklyn,Fort Greene,40.6884,-73.97527,Entire home/apt,250,2,109,3.22,2,243 +14143,14460656,Manhattan,East Village,40.72633,-73.98068,Entire home/apt,295,1,7,0.18,1,0 +14144,53199312,Queens,East Elmhurst,40.76327,-73.88655,Entire home/apt,145,2,61,1.52,1,302 +14145,47898830,Manhattan,Upper West Side,40.77774,-73.97700999999999,Entire home/apt,199,2,0,,1,0 +14146,20408271,Brooklyn,Red Hook,40.675290000000004,-74.01514,Entire home/apt,140,1,0,,2,0 +14147,56312532,Manhattan,Upper West Side,40.80283,-73.96504,Entire home/apt,60,15,0,,1,0 +14148,43220844,Manhattan,Upper East Side,40.763090000000005,-73.95794000000001,Entire home/apt,175,1,1,0.02,1,0 +14149,56342651,Manhattan,Upper West Side,40.803000000000004,-73.96459,Entire home/apt,150,1,0,,1,0 +14150,617990,Queens,Jackson Heights,40.75055,-73.88365999999999,Private room,89,14,4,0.1,2,0 +14151,2478644,Brooklyn,Bedford-Stuyvesant,40.68926,-73.94074,Private room,38,2,0,,1,43 +14152,56376946,Brooklyn,Clinton Hill,40.68683,-73.96177,Entire home/apt,350,4,1,0.05,1,86 +14153,30410829,Manhattan,Chinatown,40.717859999999995,-74.00009,Entire home/apt,105,1,16,0.4,1,0 +14154,14585417,Brooklyn,Williamsburg,40.713190000000004,-73.95669000000001,Entire home/apt,185,2,122,3.12,1,105 +14155,27360886,Manhattan,Upper East Side,40.77617,-73.94677,Entire home/apt,195,1,136,3.26,1,103 +14156,15651999,Manhattan,Midtown,40.75598,-73.96664,Entire home/apt,135,3,4,0.13,1,0 +14157,56410306,Brooklyn,Prospect-Lefferts Gardens,40.6607,-73.96168,Private room,60,1,0,,1,0 +14158,17646340,Brooklyn,Williamsburg,40.70094,-73.9435,Entire home/apt,120,7,0,,2,0 +14159,56412357,Brooklyn,Greenpoint,40.72527,-73.94803,Private room,34,1,0,,1,0 +14160,8261208,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94875,Private room,45,2,27,0.78,1,339 +14161,4343152,Manhattan,Harlem,40.81223,-73.94313000000001,Entire home/apt,199,4,2,0.05,1,0 +14162,39754804,Manhattan,Hell's Kitchen,40.764379999999996,-73.99481999999999,Entire home/apt,125,1,64,1.88,1,0 +14163,971075,Bronx,Mount Hope,40.8506,-73.90231,Entire home/apt,109,3,62,1.51,2,58 +14164,836911,Brooklyn,Windsor Terrace,40.65627,-73.97955,Entire home/apt,250,7,0,,3,0 +14165,836911,Brooklyn,Windsor Terrace,40.65636,-73.97945,Entire home/apt,150,4,1,0.03,3,0 +14166,605463,Manhattan,West Village,40.73303,-74.005,Entire home/apt,1100,6,4,0.12,4,313 +14167,32265481,Manhattan,Harlem,40.82289,-73.94915,Private room,52,3,0,,1,0 +14168,28378670,Manhattan,Chelsea,40.7487,-73.99514,Private room,119,2,134,3.42,1,66 +14169,56514111,Manhattan,Chelsea,40.7386,-73.99775,Private room,70,1,2,0.05,1,0 +14170,5429885,Manhattan,Harlem,40.79929,-73.95199000000001,Private room,100,3,147,3.55,1,66 +14171,25498781,Manhattan,East Village,40.72931,-73.98222,Entire home/apt,250,2,9,0.22,1,0 +14172,4497387,Manhattan,Upper West Side,40.792770000000004,-73.97613,Entire home/apt,150,1,16,0.4,1,0 +14173,56607815,Manhattan,Upper West Side,40.77035,-73.98638000000001,Entire home/apt,150,2,0,,1,0 +14174,3411196,Brooklyn,Kensington,40.64751,-73.97814,Entire home/apt,100,1,0,,1,0 +14175,56616493,Queens,Forest Hills,40.72272,-73.84206,Private room,30,14,0,,1,0 +14176,39528519,Manhattan,Lower East Side,40.70985,-73.98724,Shared room,35,14,2,0.08,28,320 +14177,25461543,Manhattan,Harlem,40.83117,-73.94281,Entire home/apt,200,1,3,0.38,2,365 +14178,36081529,Manhattan,West Village,40.72965,-74.00261,Private room,99,12,60,1.6,1,0 +14179,7364894,Brooklyn,Bushwick,40.70128,-73.9253,Private room,40,7,0,,1,0 +14180,3576466,Manhattan,Hell's Kitchen,40.76364,-73.9898,Entire home/apt,170,2,18,0.45,2,63 +14181,7650414,Manhattan,Harlem,40.80257,-73.94693000000001,Entire home/apt,399,5,9,0.25,2,12 +14182,25044529,Manhattan,Upper West Side,40.79583,-73.97493,Entire home/apt,87,1,0,,1,0 +14183,17601552,Manhattan,Harlem,40.81794,-73.94326,Private room,75,1,0,,1,0 +14184,2455178,Brooklyn,Flatbush,40.64145,-73.96642,Private room,55,5,6,0.17,1,0 +14185,10583598,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.95963,Private room,40,2,9,0.22,1,0 +14186,7501803,Brooklyn,Flatbush,40.65188,-73.96410999999999,Private room,55,4,3,0.07,1,0 +14187,914838,Manhattan,Hell's Kitchen,40.76382,-73.99498,Entire home/apt,140,30,3,0.08,7,365 +14188,9192860,Queens,Ridgewood,40.70286,-73.90649,Private room,71,3,62,2.76,1,291 +14189,56726605,Brooklyn,Canarsie,40.6344,-73.8948,Entire home/apt,177,3,23,0.6,3,363 +14190,56732131,Manhattan,Lower East Side,40.72221,-73.99284,Entire home/apt,395,2,57,1.41,1,279 +14191,52761277,Manhattan,East Village,40.72387,-73.979,Private room,80,2,1,0.11,1,87 +14192,56710089,Manhattan,Harlem,40.8263,-73.94375,Entire home/apt,198,5,42,1.07,1,267 +14193,56752163,Manhattan,Lower East Side,40.71731,-73.99108000000001,Entire home/apt,199,3,4,0.16,2,0 +14194,56758927,Queens,Queens Village,40.70684,-73.74627,Entire home/apt,97,2,252,6.08,1,290 +14195,18495460,Brooklyn,Crown Heights,40.6735,-73.95486,Entire home/apt,162,30,26,0.64,3,18 +14196,56775169,Bronx,Kingsbridge,40.88214,-73.90847,Entire home/apt,99,3,1,0.07,1,311 +14197,20903132,Brooklyn,Bedford-Stuyvesant,40.69187,-73.95408,Entire home/apt,80,90,0,,1,89 +14198,56836468,Manhattan,East Village,40.72663,-73.97851999999999,Private room,65,1,1,0.02,1,0 +14199,21784104,Manhattan,East Harlem,40.79226,-73.93895,Private room,150,3,73,1.85,1,32 +14200,4269459,Brooklyn,Crown Heights,40.67734,-73.96076,Private room,35,1,2,0.05,1,0 +14201,56887361,Brooklyn,Bedford-Stuyvesant,40.68636,-73.92599,Private room,30,1,1,0.02,1,0 +14202,4837798,Manhattan,Harlem,40.82561,-73.9446,Private room,50,3,107,2.57,1,209 +14203,7781522,Manhattan,Harlem,40.82332,-73.94705,Private room,40,3,4,0.11,1,0 +14204,834052,Manhattan,Hell's Kitchen,40.76254,-73.99974,Entire home/apt,259,7,5,0.14,1,122 +14205,11559235,Manhattan,Harlem,40.82765,-73.94889,Private room,125,2,3,0.07,1,87 +14206,48573590,Brooklyn,East Flatbush,40.66209,-73.93947,Shared room,85,1,1,0.11,1,365 +14207,56754697,Manhattan,Midtown,40.75862,-73.96840999999999,Entire home/apt,160,3,50,1.23,1,4 +14208,22858411,Brooklyn,South Slope,40.66252,-73.97910999999999,Entire home/apt,450,5,2,0.06,1,9 +14209,79339,Brooklyn,Bedford-Stuyvesant,40.6811,-73.9542,Entire home/apt,90,14,12,0.45,1,64 +14210,56984176,Queens,Rego Park,40.721470000000004,-73.86317,Entire home/apt,140,3,84,2.09,1,32 +14211,23865843,Manhattan,Upper West Side,40.78116,-73.9786,Entire home/apt,265,1,0,,1,0 +14212,22702361,Manhattan,Chinatown,40.71628,-73.98999,Private room,85,1,1,0.02,1,0 +14213,56995315,Manhattan,Roosevelt Island,40.763659999999994,-73.9479,Private room,79,2,29,0.74,1,321 +14214,825856,Brooklyn,Bedford-Stuyvesant,40.683890000000005,-73.92128000000001,Entire home/apt,76,2,2,0.05,1,0 +14215,56998739,Brooklyn,Greenpoint,40.72729,-73.95138,Entire home/apt,125,2,0,,1,0 +14216,7903382,Brooklyn,Brooklyn Heights,40.69449,-73.99188000000001,Entire home/apt,150,3,7,0.17,1,0 +14217,57015584,Queens,Long Island City,40.74129,-73.95004,Entire home/apt,175,3,22,0.54,1,0 +14218,24361297,Manhattan,Chinatown,40.71781,-73.99569,Entire home/apt,100,1,0,,1,0 +14219,19000768,Queens,Sunnyside,40.74219,-73.92485,Entire home/apt,90,2,3,0.12,2,0 +14220,11501945,Brooklyn,Flatbush,40.63649,-73.95614,Entire home/apt,92,1,25,0.63,2,0 +14221,1755999,Brooklyn,Williamsburg,40.70532,-73.92814,Private room,39,5,0,,1,0 +14222,57055185,Queens,Astoria,40.76802,-73.91685,Private room,33,1,0,,1,0 +14223,38794144,Brooklyn,Crown Heights,40.67754,-73.96163,Private room,64,1,2,0.07,1,21 +14224,57097075,Manhattan,Washington Heights,40.84901,-73.93859,Entire home/apt,90,12,1,0.03,1,0 +14225,57107571,Manhattan,East Village,40.72808,-73.98763000000001,Entire home/apt,200,30,22,0.65,1,112 +14226,56498254,Manhattan,SoHo,40.72761,-74.00901999999999,Entire home/apt,150,7,9,0.22,1,190 +14227,24625891,Manhattan,Chelsea,40.74815,-74.00493,Entire home/apt,125,3,0,,1,0 +14228,30283594,Manhattan,Theater District,40.7598,-73.98536999999999,Entire home/apt,369,30,0,,121,148 +14229,57122538,Manhattan,Harlem,40.82564,-73.94143000000001,Private room,60,1,6,2.43,1,83 +14230,344035,Brooklyn,Prospect Heights,40.67824,-73.97106,Private room,65,1,245,5.87,13,339 +14231,57069872,Queens,Astoria,40.76101,-73.91573000000001,Private room,70,3,65,1.66,1,89 +14232,22861935,Brooklyn,Columbia St,40.68443,-74.00392,Entire home/apt,162,3,37,1.06,1,22 +14233,38968716,Manhattan,Kips Bay,40.73939,-73.983,Entire home/apt,250,28,5,0.13,1,0 +14234,53051331,Brooklyn,Crown Heights,40.67156,-73.95684,Private room,75,2,13,0.47,1,354 +14235,57165692,Bronx,Baychester,40.87223,-73.84335,Entire home/apt,95,3,206,4.98,2,144 +14236,57186170,Brooklyn,Bedford-Stuyvesant,40.683659999999996,-73.94606999999999,Private room,75,2,129,3.36,3,227 +14237,27673980,Queens,Flushing,40.74514,-73.83136999999999,Private room,60,1,66,3.07,8,67 +14238,57242530,Manhattan,East Village,40.727940000000004,-73.98731,Entire home/apt,189,2,9,0.23,1,23 +14239,44776542,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94898,Private room,66,1,0,,1,0 +14240,6265305,Brooklyn,Williamsburg,40.7169,-73.94714,Private room,100,2,0,,1,0 +14241,57254931,Brooklyn,Clinton Hill,40.68121,-73.96319,Entire home/apt,190,7,60,1.66,1,0 +14242,57257971,Brooklyn,Sunset Park,40.66227,-73.99138,Private room,50,1,1,0.02,1,0 +14243,16141222,Manhattan,West Village,40.7341,-74.00434,Entire home/apt,814,3,31,0.78,1,353 +14244,57269448,Manhattan,Lower East Side,40.72104,-73.98298,Private room,100,2,1,0.03,1,0 +14245,57265004,Brooklyn,Prospect-Lefferts Gardens,40.659929999999996,-73.95725,Entire home/apt,125,1,151,3.86,1,37 +14246,31651673,Brooklyn,Williamsburg,40.70818,-73.94951999999999,Private room,90,1,17,0.44,3,0 +14247,57275881,Brooklyn,Williamsburg,40.711870000000005,-73.95566,Entire home/apt,250,1,0,,1,0 +14248,57289930,Queens,Sunnyside,40.74214,-73.92463000000001,Entire home/apt,115,1,0,,1,0 +14249,20607397,Manhattan,Harlem,40.80735,-73.95684,Entire home/apt,300,2,26,0.64,1,176 +14250,57305837,Brooklyn,South Slope,40.66355,-73.98056,Entire home/apt,145,3,147,3.62,1,235 +14251,1607646,Manhattan,East Harlem,40.80771,-73.93966999999999,Private room,65,7,7,0.3,1,0 +14252,5546836,Manhattan,Lower East Side,40.71884,-73.98594,Entire home/apt,150,1,1,0.03,1,0 +14253,31879354,Brooklyn,Bushwick,40.70131,-73.93032,Private room,50,2,0,,1,0 +14254,914838,Manhattan,Hell's Kitchen,40.757740000000005,-73.99523,Entire home/apt,80,30,3,0.07,7,356 +14255,1395401,Manhattan,Upper East Side,40.78119,-73.9468,Entire home/apt,200,5,6,0.17,1,67 +14256,57049951,Manhattan,Harlem,40.81238,-73.95319,Private room,69,2,128,3.16,9,365 +14257,57322543,Manhattan,Hell's Kitchen,40.76355,-73.99391,Entire home/apt,150,1,52,1.26,1,7 +14258,17171841,Manhattan,East Harlem,40.79736,-73.94203,Entire home/apt,79,1,149,3.63,1,290 +14259,10573152,Brooklyn,Flatbush,40.64261,-73.95779,Entire home/apt,219,2,119,2.93,1,275 +14260,36369973,Manhattan,East Village,40.7264,-73.97889,Entire home/apt,199,2,67,1.64,1,39 +14261,16098958,Manhattan,West Village,40.73134,-74.00215,Entire home/apt,450,30,0,,96,327 +14262,57398859,Queens,Flushing,40.76726,-73.81217,Private room,27,1,0,,1,0 +14263,12872352,Manhattan,Midtown,40.75912,-73.9621,Entire home/apt,550,1,57,1.44,3,267 +14264,30918593,Manhattan,Hell's Kitchen,40.76578,-73.99309000000001,Entire home/apt,120,1,0,,1,0 +14265,3419036,Manhattan,Upper East Side,40.78482,-73.95191,Entire home/apt,90,4,9,0.22,1,0 +14266,6961443,Manhattan,Midtown,40.759570000000004,-73.96802,Private room,70,1,1,0.02,2,0 +14267,6961443,Manhattan,Midtown,40.76163,-73.96956,Private room,70,1,2,0.05,2,0 +14268,45896206,Brooklyn,Greenpoint,40.73144,-73.95745,Entire home/apt,110,2,0,,1,0 +14269,57434801,Brooklyn,Brooklyn Heights,40.69257,-73.99304000000001,Entire home/apt,100,1,0,,1,0 +14270,19340034,Manhattan,Gramercy,40.73788,-73.98103,Private room,150,1,2,0.05,1,0 +14271,8243103,Manhattan,Civic Center,40.71567,-74.00061,Entire home/apt,200,1,33,0.8,1,0 +14272,9132107,Manhattan,Upper West Side,40.78731,-73.97407,Entire home/apt,145,3,2,0.05,1,0 +14273,57452929,Brooklyn,Williamsburg,40.70673,-73.92695,Private room,79,2,134,3.26,1,2 +14274,390251,Manhattan,Harlem,40.80129,-73.95389,Private room,95,2,2,0.14,4,88 +14275,57460097,Queens,Elmhurst,40.73816,-73.88211,Private room,55,1,63,2.92,1,21 +14276,38068387,Brooklyn,Clinton Hill,40.69308,-73.96649000000001,Entire home/apt,207,2,58,1.49,4,1 +14277,2155213,Manhattan,Washington Heights,40.84393,-73.94065,Private room,83,2,142,3.55,1,80 +14278,30995829,Manhattan,Washington Heights,40.84411,-73.93784000000001,Private room,50,3,89,2.54,1,113 +14279,10994250,Brooklyn,Williamsburg,40.70925,-73.94909,Private room,50,1,0,,1,0 +14280,118126,Manhattan,Harlem,40.83135,-73.94442,Entire home/apt,200,3,114,3.19,1,165 +14281,15231059,Manhattan,Lower East Side,40.72118,-73.98875,Private room,100,3,19,0.46,4,303 +14282,7775937,Brooklyn,East New York,40.66483,-73.88208,Entire home/apt,119,4,148,3.75,1,111 +14283,38068387,Brooklyn,Clinton Hill,40.69458,-73.96757,Entire home/apt,175,1,58,1.45,4,331 +14284,38120363,Brooklyn,Crown Heights,40.67415,-73.9163,Private room,49,2,115,2.96,2,59 +14285,2228137,Brooklyn,Kensington,40.64779,-73.97955999999999,Private room,45,500,0,,1,358 +14286,24800102,Manhattan,East Harlem,40.79733,-73.93955,Entire home/apt,110,1,221,5.53,1,348 +14287,10199059,Brooklyn,Bushwick,40.69712,-73.93055,Private room,70,1,0,,1,0 +14288,57648603,Manhattan,Gramercy,40.735620000000004,-73.98756,Entire home/apt,500,4,49,1.23,1,249 +14289,48880382,Brooklyn,Carroll Gardens,40.6785,-73.99594,Entire home/apt,180,4,37,0.91,1,185 +14290,7872220,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9579,Entire home/apt,145,1,153,4.66,1,47 +14291,4110759,Brooklyn,Williamsburg,40.71725,-73.95392,Private room,60,7,0,,1,0 +14292,16098958,Manhattan,West Village,40.73198,-74.00239,Entire home/apt,550,30,0,,96,352 +14293,57697937,Manhattan,Harlem,40.82645,-73.94426,Private room,57,3,90,2.26,1,247 +14294,13611255,Brooklyn,Bedford-Stuyvesant,40.68652,-73.93506,Entire home/apt,98,30,13,0.32,3,140 +14295,57755346,Manhattan,East Harlem,40.79014,-73.94698000000001,Entire home/apt,120,3,33,0.86,1,0 +14296,57762390,Queens,Forest Hills,40.71813,-73.8386,Entire home/apt,100,2,1,0.03,1,0 +14297,57765248,Manhattan,Hell's Kitchen,40.75744,-73.9936,Private room,90,1,6,0.14,1,0 +14298,15193965,Brooklyn,Crown Heights,40.668409999999994,-73.93621,Entire home/apt,85,25,1,0.03,1,0 +14299,46980935,Brooklyn,Downtown Brooklyn,40.697309999999995,-73.98228,Entire home/apt,120,30,9,0.22,1,0 +14300,55425653,Manhattan,NoHo,40.72683,-73.99328,Entire home/apt,180,3,4,0.59,1,0 +14301,10556524,Brooklyn,Williamsburg,40.70606,-73.92884000000001,Private room,149,1,0,,2,0 +14302,20794193,Manhattan,Harlem,40.82546,-73.95291999999999,Entire home/apt,90,10,6,0.18,1,6 +14303,3135272,Manhattan,Gramercy,40.73427,-73.98456,Entire home/apt,250,2,4,0.14,1,0 +14304,42779345,Queens,Long Island City,40.74523,-73.94906,Private room,50,2,3,0.41,1,0 +14305,57843472,Manhattan,Hell's Kitchen,40.76198,-73.99739,Private room,550,1,0,,1,0 +14306,43082746,Manhattan,Washington Heights,40.832190000000004,-73.94334,Private room,50,1,0,,1,0 +14307,21986616,Brooklyn,Gravesend,40.58571,-73.96710999999999,Entire home/apt,90,7,32,0.83,1,71 +14308,24839836,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94975,Entire home/apt,165,4,123,3.08,1,43 +14309,57885166,Brooklyn,Gowanus,40.67153,-73.988,Private room,70,1,3,0.07,1,0 +14310,57885474,Bronx,Wakefield,40.89694,-73.86055,Entire home/apt,90,2,199,5.0,2,319 +14311,827235,Brooklyn,Bedford-Stuyvesant,40.68437,-73.95849,Entire home/apt,109,3,3,0.08,1,0 +14312,45677054,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91838,Entire home/apt,96,2,64,1.58,1,256 +14313,923791,Brooklyn,South Slope,40.66473,-73.98704000000001,Entire home/apt,390,4,14,0.36,2,13 +14314,49033458,Brooklyn,Windsor Terrace,40.65895,-73.97768,Entire home/apt,78,5,1,0.02,1,0 +14315,27087652,Brooklyn,Bushwick,40.69995,-73.92612,Private room,50,1,1,0.03,1,0 +14316,48819868,Brooklyn,Williamsburg,40.71119,-73.95097,Private room,200,1,0,,1,0 +14317,7401344,Manhattan,Midtown,40.74545,-73.98128,Private room,112,3,1,0.02,1,0 +14318,16098958,Manhattan,Upper West Side,40.791909999999994,-73.97322,Entire home/apt,117,30,4,0.13,96,327 +14319,344035,Brooklyn,Prospect Heights,40.679629999999996,-73.97054,Private room,50,1,257,6.23,13,286 +14320,57944278,Brooklyn,Williamsburg,40.718740000000004,-73.96077,Entire home/apt,200,1,0,,1,0 +14321,22218564,Brooklyn,Fort Greene,40.68675,-73.97923,Entire home/apt,185,30,13,0.33,1,212 +14322,57954654,Bronx,Williamsbridge,40.87556,-73.8584,Entire home/apt,85,2,147,3.88,1,304 +14323,6980995,Manhattan,Chinatown,40.713229999999996,-73.99752,Entire home/apt,235,2,66,1.63,5,184 +14324,57995737,Manhattan,East Harlem,40.805859999999996,-73.93861,Entire home/apt,75,5,2,0.05,1,0 +14325,2856748,Manhattan,Midtown,40.7591,-73.96334,Entire home/apt,180,30,1,0.03,49,364 +14326,17259339,Manhattan,Two Bridges,40.7113,-73.99441999999999,Entire home/apt,100,4,26,0.85,1,0 +14327,4968801,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94516,Private room,75,1,0,,1,0 +14328,4302160,Brooklyn,Fort Greene,40.68642,-73.97700999999999,Entire home/apt,200,1,0,,1,12 +14329,14713587,Manhattan,Upper West Side,40.80288,-73.96484,Private room,125,3,6,0.15,1,0 +14330,2119276,Manhattan,Gramercy,40.732009999999995,-73.98328000000001,Entire home/apt,130,30,6,0.17,39,246 +14331,58061728,Queens,Ditmars Steinway,40.78,-73.91672,Entire home/apt,99,4,17,0.44,1,0 +14332,58070616,Brooklyn,Bedford-Stuyvesant,40.69032,-73.93699000000001,Private room,40,1,5,0.12,1,0 +14333,5162894,Manhattan,Midtown,40.74389,-73.98515,Private room,120,1,28,0.89,1,17 +14334,58076069,Brooklyn,Williamsburg,40.71617,-73.95379,Entire home/apt,350,5,54,1.38,1,274 +14335,36574113,Queens,Long Island City,40.75332,-73.93343,Private room,84,1,25,2.56,1,69 +14336,1475015,Manhattan,Murray Hill,40.74544,-73.9748,Entire home/apt,83,30,1,0.09,52,311 +14337,58098561,Brooklyn,Park Slope,40.67923,-73.97659,Entire home/apt,125,2,8,0.2,1,0 +14338,6032945,Brooklyn,Greenpoint,40.71987,-73.95427,Entire home/apt,110,3,0,,1,0 +14339,23435560,Brooklyn,Bedford-Stuyvesant,40.69823,-73.9431,Private room,38,7,0,,1,0 +14340,2856748,Manhattan,Upper East Side,40.76162,-73.96588,Entire home/apt,138,30,2,0.05,49,341 +14341,32124237,Brooklyn,Prospect-Lefferts Gardens,40.65505,-73.96086,Entire home/apt,100,4,4,0.11,1,0 +14342,58164974,Manhattan,Hell's Kitchen,40.75925,-73.99427,Private room,150,4,37,0.92,1,0 +14343,6980995,Manhattan,Chinatown,40.71312,-73.99669,Private room,90,1,5,0.12,5,0 +14344,45595980,Manhattan,Upper East Side,40.767920000000004,-73.96724,Entire home/apt,154,30,8,0.22,12,18 +14345,20609201,Brooklyn,Crown Heights,40.6774,-73.94888,Private room,75,3,29,0.85,1,67 +14346,1613244,Manhattan,East Village,40.72438,-73.98782,Entire home/apt,110,30,10,0.28,9,337 +14347,58234433,Queens,Sunnyside,40.7359,-73.91911999999999,Private room,129,1,52,1.27,8,250 +14348,3285470,Brooklyn,Cobble Hill,40.684979999999996,-73.9996,Entire home/apt,190,31,23,0.62,1,288 +14349,2772230,Manhattan,Hell's Kitchen,40.75577,-73.99466,Entire home/apt,185,2,205,5.83,1,233 +14350,35672187,Manhattan,East Village,40.721959999999996,-73.98345,Private room,108,2,36,1.18,1,51 +14351,6980995,Manhattan,Civic Center,40.71327,-73.99853,Private room,98,1,10,0.24,5,0 +14352,1549512,Brooklyn,Bushwick,40.69931,-73.91603,Private room,39,4,0,,2,0 +14353,18833883,Brooklyn,Bedford-Stuyvesant,40.679809999999996,-73.94372,Entire home/apt,145,2,125,3.23,1,271 +14354,35320932,Manhattan,Gramercy,40.73598,-73.98161,Entire home/apt,125,1,19,0.47,1,0 +14355,58274544,Brooklyn,Crown Heights,40.67305,-73.94533,Private room,85,1,1,0.02,1,0 +14356,29510402,Bronx,Longwood,40.82345,-73.9033,Entire home/apt,89,1,185,4.52,3,104 +14357,2856748,Manhattan,Greenwich Village,40.73455,-73.99171,Entire home/apt,245,30,0,,49,364 +14358,2856748,Manhattan,East Village,40.7318,-73.98998,Entire home/apt,230,30,0,,49,363 +14359,22123619,Brooklyn,Crown Heights,40.67502,-73.9178,Private room,43,3,10,0.25,2,305 +14360,7678663,Brooklyn,Crown Heights,40.66727,-73.95274,Private room,40,4,1,0.03,1,0 +14361,15231059,Manhattan,Lower East Side,40.72003,-73.98646,Private room,200,3,8,0.21,4,333 +14362,58388047,Manhattan,Upper West Side,40.79481,-73.97185,Private room,40,21,11,0.27,1,177 +14363,58389790,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93257,Entire home/apt,85,180,0,,1,1 +14364,57069428,Brooklyn,Williamsburg,40.715,-73.95,Private room,50,1,0,,1,0 +14365,58405281,Manhattan,Harlem,40.82485,-73.93774,Entire home/apt,75,1,1,0.02,1,0 +14366,34813079,Manhattan,Little Italy,40.71862,-73.997,Entire home/apt,255,31,0,,1,317 +14367,58437137,Manhattan,West Village,40.73386,-74.0046,Entire home/apt,199,1,10,0.25,1,0 +14368,24880134,Brooklyn,Prospect Heights,40.67801,-73.96739000000001,Private room,70,5,2,0.05,3,0 +14369,58453451,Brooklyn,East New York,40.67327,-73.8872,Private room,33,1,147,4.08,2,231 +14370,58467654,Manhattan,Midtown,40.757709999999996,-73.96871999999999,Private room,90,3,3,0.07,1,0 +14371,18284376,Manhattan,West Village,40.73618,-74.009,Entire home/apt,150,1,0,,1,0 +14372,36656552,Manhattan,Lower East Side,40.71894,-73.99293,Entire home/apt,229,2,147,3.9,3,283 +14373,683203,Brooklyn,Prospect Heights,40.675,-73.9656,Private room,34,2,2,0.05,1,0 +14374,16103591,Manhattan,Inwood,40.86609,-73.92638000000001,Entire home/apt,115,3,6,0.18,1,0 +14375,58514808,Brooklyn,Williamsburg,40.713190000000004,-73.95806999999999,Entire home/apt,171,1,201,4.87,1,293 +14376,22420999,Queens,Richmond Hill,40.69585,-73.83098000000001,Private room,50,2,5,0.25,5,344 +14377,58523861,Manhattan,Upper East Side,40.77837,-73.94802,Private room,70,1,0,,1,0 +14378,20134231,Queens,Springfield Gardens,40.66275,-73.76391,Private room,40,2,375,9.26,3,336 +14379,56878925,Queens,Forest Hills,40.72282,-73.85571,Private room,37,25,15,0.45,2,330 +14380,24146326,Queens,Astoria,40.766259999999996,-73.93054000000001,Shared room,1800,3,5,0.13,2,90 +14381,219970,Brooklyn,Crown Heights,40.67648,-73.9634,Private room,36,1,19,0.53,2,0 +14382,26434803,Brooklyn,Bushwick,40.699670000000005,-73.91403000000001,Private room,65,7,1,0.03,2,0 +14383,33535733,Manhattan,Midtown,40.76096,-73.9672,Private room,120,5,0,,1,0 +14384,12317978,Manhattan,East Village,40.72814,-73.98018,Entire home/apt,135,2,25,0.62,1,0 +14385,25713263,Manhattan,Upper West Side,40.79101,-73.97961,Entire home/apt,2000,4,2,0.06,1,75 +14386,17861935,Queens,Flushing,40.76015,-73.79105,Entire home/apt,70,4,0,,1,0 +14387,24058309,Manhattan,Midtown,40.75266,-73.97378,Entire home/apt,160,3,1,0.02,1,0 +14388,55688014,Manhattan,Hell's Kitchen,40.76112,-73.99075,Private room,70,1,0,,1,0 +14389,58730304,Manhattan,East Village,40.724340000000005,-73.98904,Entire home/apt,140,1,6,0.18,1,0 +14390,181201,Brooklyn,Bedford-Stuyvesant,40.68472,-73.93145,Private room,69,3,23,0.57,1,317 +14391,56066134,Manhattan,Washington Heights,40.85585,-73.93741,Entire home/apt,125,5,2,0.05,1,0 +14392,29182025,Manhattan,Gramercy,40.73268,-73.98550999999999,Entire home/apt,700,5,87,2.12,1,266 +14393,5440411,Brooklyn,Williamsburg,40.70647,-73.93265,Private room,64,3,10,0.27,1,0 +14394,58779931,Brooklyn,Williamsburg,40.715540000000004,-73.94115,Entire home/apt,250,3,7,0.38,1,0 +14395,8145820,Manhattan,East Harlem,40.79606,-73.94881,Private room,30,1,1,0.02,1,0 +14396,58857198,Bronx,Concourse Village,40.82731,-73.91632,Private room,100,2,54,1.32,1,0 +14397,1373616,Brooklyn,Williamsburg,40.70346,-73.93523,Private room,40,5,0,,1,0 +14398,47481444,Manhattan,Gramercy,40.7357,-73.98396,Private room,200,1,0,,1,0 +14399,10262436,Brooklyn,Park Slope,40.67788,-73.98085999999999,Private room,90,5,0,,1,0 +14400,22492254,Manhattan,Upper East Side,40.774159999999995,-73.95259,Entire home/apt,145,5,54,1.43,1,236 +14401,22292023,Manhattan,Lower East Side,40.72224,-73.99192,Entire home/apt,170,1,0,,1,0 +14402,525856,Brooklyn,Clinton Hill,40.68354,-73.96748000000001,Entire home/apt,70,6,18,0.47,1,203 +14403,24258262,Manhattan,Washington Heights,40.83336,-73.94333,Private room,70,2,118,2.93,1,283 +14404,3040512,Manhattan,West Village,40.73292,-74.00222,Entire home/apt,168,1,1,0.02,1,0 +14405,1779599,Brooklyn,Bedford-Stuyvesant,40.685559999999995,-73.92766999999999,Entire home/apt,195,4,5,0.14,1,15 +14406,58931360,Manhattan,Upper West Side,40.77616,-73.98485,Entire home/apt,250,3,6,0.15,1,0 +14407,5408649,Manhattan,Hell's Kitchen,40.76508,-73.99087,Private room,55,10,0,,1,0 +14408,3925093,Brooklyn,Prospect Heights,40.68018,-73.96582,Entire home/apt,75,16,9,0.24,1,0 +14409,4592263,Brooklyn,Bushwick,40.70192,-73.92464,Private room,55,30,0,,1,0 +14410,7519175,Brooklyn,Bushwick,40.7066,-73.92115,Private room,75,3,0,,1,0 +14411,25052740,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9434,Private room,50,7,10,0.25,3,243 +14412,59007500,Manhattan,East Village,40.72814,-73.97995,Private room,85,1,4,0.11,1,0 +14413,59018284,Brooklyn,Bedford-Stuyvesant,40.69062,-73.93496999999999,Private room,28,1,5,0.12,1,0 +14414,7055854,Manhattan,East Harlem,40.80296,-73.94399,Private room,60,5,39,1.2,5,271 +14415,4671389,Brooklyn,Prospect-Lefferts Gardens,40.661429999999996,-73.95999,Private room,70,1,0,,1,0 +14416,59032240,Manhattan,Chelsea,40.74322,-73.99744,Entire home/apt,165,6,4,0.19,1,13 +14417,4726696,Manhattan,Upper West Side,40.79589,-73.96811,Entire home/apt,145,1,1,0.02,1,0 +14418,59066199,Manhattan,Upper East Side,40.77511,-73.95276,Entire home/apt,125,10,5,0.12,1,88 +14419,59095370,Manhattan,West Village,40.733129999999996,-74.00336,Entire home/apt,250,1,1,0.02,1,0 +14420,6761373,Brooklyn,Flatbush,40.64495,-73.95896,Entire home/apt,69,5,1,0.34,1,0 +14421,59105771,Manhattan,Inwood,40.86083,-73.92626,Entire home/apt,140,3,5,0.13,1,8 +14422,344035,Brooklyn,Prospect Heights,40.67771,-73.96979,Private room,250,1,25,0.63,13,0 +14423,2856748,Manhattan,East Village,40.73157,-73.98791999999999,Entire home/apt,278,30,0,,49,339 +14424,2856748,Manhattan,East Village,40.73235,-73.98823,Entire home/apt,285,30,0,,49,364 +14425,5577926,Queens,Astoria,40.768209999999996,-73.9125,Private room,60,1,72,1.82,4,0 +14426,3530018,Brooklyn,Bedford-Stuyvesant,40.69873,-73.93937,Private room,30,50,2,0.05,1,0 +14427,20527254,Brooklyn,Williamsburg,40.70821,-73.94719,Private room,65,2,9,0.25,1,0 +14428,51025844,Manhattan,Inwood,40.86761,-73.92718,Shared room,29,1,93,2.28,3,90 +14429,47625541,Manhattan,East Village,40.72152,-73.97999,Private room,65,2,4,0.1,2,1 +14430,24789838,Bronx,Kingsbridge,40.88599,-73.89868,Private room,45,6,0,,2,0 +14431,59215698,Manhattan,Upper East Side,40.767959999999995,-73.95205,Entire home/apt,130,1,21,0.56,2,53 +14432,59215650,Brooklyn,Williamsburg,40.712590000000006,-73.95974,Private room,75,3,0,,1,0 +14433,17824959,Brooklyn,Bushwick,40.69585,-73.92585,Private room,50,2,1,0.03,1,0 +14434,1525033,Brooklyn,Williamsburg,40.71055,-73.95017,Entire home/apt,160,7,4,0.1,1,0 +14435,31860430,Brooklyn,Greenpoint,40.73733,-73.95336,Private room,65,1,0,,1,0 +14436,59070885,Manhattan,Upper East Side,40.76658,-73.95224,Private room,39,1,5,0.12,1,0 +14437,3417090,Manhattan,Gramercy,40.7328,-73.9841,Entire home/apt,145,1,125,3.63,1,0 +14438,404629,Brooklyn,Bedford-Stuyvesant,40.68079,-73.95555999999999,Entire home/apt,195,4,122,3.01,1,236 +14439,13125944,Manhattan,Hell's Kitchen,40.7651,-73.98854,Private room,79,1,2,0.05,2,0 +14440,41616878,Brooklyn,Bushwick,40.690329999999996,-73.9083,Private room,50,30,12,0.31,4,326 +14441,47515751,Manhattan,Inwood,40.86679,-73.92551999999999,Private room,35,3,10,0.24,2,31 +14442,35095754,Manhattan,Lower East Side,40.72048,-73.9906,Private room,325,2,130,3.3,2,139 +14443,5650826,Manhattan,East Harlem,40.78626,-73.94429000000001,Private room,40,4,2,0.05,1,0 +14444,22570120,Brooklyn,Williamsburg,40.70969,-73.9592,Entire home/apt,95,30,10,0.3,2,27 +14445,3660628,Manhattan,Upper West Side,40.76898,-73.98453,Private room,105,4,0,,1,0 +14446,59345189,Manhattan,Inwood,40.86313,-73.92161999999999,Private room,43,2,55,1.98,1,0 +14447,58179165,Brooklyn,Williamsburg,40.71175,-73.96728,Entire home/apt,225,1,6,0.28,1,89 +14448,10990986,Manhattan,Upper West Side,40.79153,-73.97174,Entire home/apt,175,3,3,0.08,1,0 +14449,978580,Brooklyn,Bushwick,40.70515,-73.925,Private room,75,1,0,,1,0 +14450,5368671,Brooklyn,Cobble Hill,40.68963,-73.99259,Entire home/apt,94,1,39,0.98,1,4 +14451,26082446,Brooklyn,Bushwick,40.69607,-73.92295,Private room,100,1,0,,1,0 +14452,29658310,Manhattan,Greenwich Village,40.73469,-73.99838000000001,Entire home/apt,200,3,1,0.03,1,0 +14453,26024758,Manhattan,East Harlem,40.81357,-73.93575,Entire home/apt,95,2,74,1.85,1,92 +14454,49621731,Manhattan,Little Italy,40.71987,-73.99729,Shared room,65,5,19,0.67,1,89 +14455,7194539,Brooklyn,Williamsburg,40.717,-73.9565,Entire home/apt,349,2,42,1.07,1,337 +14456,6369681,Brooklyn,Williamsburg,40.7106,-73.95884000000001,Private room,41,1,4,0.1,1,0 +14457,59499901,Manhattan,Hell's Kitchen,40.76189,-73.98961,Entire home/apt,200,3,1,0.03,1,0 +14458,42389158,Brooklyn,Flatbush,40.64181,-73.9522,Entire home/apt,85,2,168,4.22,1,246 +14459,53356372,Manhattan,Gramercy,40.735459999999996,-73.98057,Entire home/apt,1200,2,0,,1,0 +14460,59509831,Brooklyn,Clinton Hill,40.68073,-73.96217,Private room,150,2,3,0.08,1,35 +14461,1565924,Manhattan,East Harlem,40.791909999999994,-73.94613000000001,Private room,65,1,1,0.03,1,0 +14462,59529529,Manhattan,Hell's Kitchen,40.761790000000005,-73.99403000000001,Private room,110,1,161,4.42,6,165 +14463,29392554,Manhattan,East Village,40.72916,-73.97816,Private room,75,120,0,,1,173 +14464,6669178,Manhattan,Harlem,40.816959999999995,-73.94164,Private room,80,3,69,1.7,1,3 +14465,12797993,Brooklyn,Bushwick,40.697829999999996,-73.90998,Private room,45,3,6,0.15,1,0 +14466,59595517,Brooklyn,Bedford-Stuyvesant,40.68164,-73.93496999999999,Entire home/apt,83,4,106,2.64,1,201 +14467,55618434,Bronx,Bronxdale,40.85324,-73.86506,Private room,40,2,83,2.08,1,276 +14468,22577148,Brooklyn,Bedford-Stuyvesant,40.69627,-73.9345,Private room,79,3,37,0.94,7,358 +14469,32974295,Brooklyn,Prospect Heights,40.67893,-73.97068,Entire home/apt,70,1,0,,1,0 +14470,9777215,Manhattan,Harlem,40.81312,-73.94273000000001,Entire home/apt,177,3,90,2.59,3,175 +14471,59609062,Brooklyn,Williamsburg,40.70718,-73.94672,Private room,60,1,0,,1,0 +14472,4275336,Manhattan,Upper West Side,40.77271,-73.98810999999999,Entire home/apt,190,1,2,0.05,1,0 +14473,7605261,Manhattan,East Harlem,40.79766,-73.94756,Entire home/apt,240,2,5,0.13,1,0 +14474,58110428,Manhattan,Upper East Side,40.7695,-73.9532,Entire home/apt,150,2,10,0.25,1,0 +14475,42626435,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9441,Private room,31,29,10,0.25,1,0 +14476,16969920,Manhattan,Morningside Heights,40.81633,-73.96146999999999,Entire home/apt,110,1,3,0.09,1,0 +14477,4161553,Brooklyn,Gowanus,40.6848,-73.98894,Entire home/apt,120,2,5,0.13,1,0 +14478,5120972,Brooklyn,Greenpoint,40.72555,-73.95323,Entire home/apt,176,3,122,3.63,1,54 +14479,49021868,Manhattan,Lower East Side,40.7213,-73.98899999999999,Entire home/apt,199,4,9,0.22,1,0 +14480,17598715,Brooklyn,Red Hook,40.67941,-74.0124,Entire home/apt,200,1,0,,1,0 +14481,51425591,Brooklyn,Greenpoint,40.72347,-73.94199,Private room,70,1,0,,1,0 +14482,59746634,Manhattan,Chelsea,40.747209999999995,-73.98968,Private room,65,1,0,,1,0 +14483,59756933,Brooklyn,Bushwick,40.70223,-73.9148,Private room,60,2,1,0.02,1,0 +14484,9585945,Manhattan,Harlem,40.80761,-73.94249,Entire home/apt,140,4,7,0.2,1,128 +14485,2821175,Brooklyn,Prospect Heights,40.67948,-73.96566999999999,Entire home/apt,150,21,1,0.03,1,0 +14486,31284498,Brooklyn,Williamsburg,40.71905,-73.95425999999999,Entire home/apt,200,1,0,,1,0 +14487,4218873,Brooklyn,Sunset Park,40.66216,-73.98985,Private room,55,1,1,0.3,1,0 +14488,23590752,Manhattan,East Village,40.72201,-73.98277,Entire home/apt,200,2,7,3.68,1,36 +14489,59849677,Manhattan,East Harlem,40.79736,-73.94442,Private room,100,2,77,1.9,1,235 +14490,9290968,Queens,Astoria,40.77349,-73.92648,Entire home/apt,112,1,2,0.07,1,0 +14491,57287881,Brooklyn,Williamsburg,40.71097,-73.94549,Private room,45,5,0,,1,0 +14492,18873268,Brooklyn,Bedford-Stuyvesant,40.695859999999996,-73.95026,Private room,75,5,3,0.08,1,0 +14493,59916586,Brooklyn,Williamsburg,40.707229999999996,-73.94939000000001,Private room,45,1,1,0.03,1,0 +14494,40744172,Manhattan,Midtown,40.75225,-73.97176999999999,Private room,499,3,0,,1,0 +14495,59922151,Brooklyn,Cobble Hill,40.6885,-73.99526,Entire home/apt,160,2,205,5.08,1,6 +14496,6705983,Queens,Jackson Heights,40.75179,-73.89015,Entire home/apt,100,2,6,0.17,1,0 +14497,20868549,Manhattan,East Village,40.72793,-73.98770999999999,Entire home/apt,175,1,2,0.05,1,0 +14498,6034691,Manhattan,Chelsea,40.744479999999996,-73.99221,Private room,80,40,2,0.05,1,0 +14499,59913399,Brooklyn,Williamsburg,40.710159999999995,-73.96076,Private room,60,3,8,0.36,1,3 +14500,16098958,Manhattan,Financial District,40.70425,-74.00845,Entire home/apt,175,30,2,0.05,96,312 +14501,45404393,Queens,Jackson Heights,40.751059999999995,-73.88349000000001,Private room,65,2,17,0.44,1,314 +14502,1746436,Manhattan,West Village,40.73682,-74.00238,Entire home/apt,159,2,47,1.16,1,361 +14503,51276298,Queens,Ridgewood,40.706790000000005,-73.91691999999999,Entire home/apt,118,2,153,3.77,1,337 +14504,59996301,Queens,Maspeth,40.7416,-73.90684,Entire home/apt,120,3,88,2.25,1,303 +14505,7505413,Manhattan,Lower East Side,40.71523,-73.98489000000001,Private room,91,2,42,1.1,1,80 +14506,1449155,Brooklyn,Carroll Gardens,40.68285,-73.99495,Entire home/apt,125,5,1,0.03,1,0 +14507,60059749,Brooklyn,Crown Heights,40.67283,-73.95551,Private room,55,1,21,0.53,2,0 +14508,3395433,Manhattan,East Village,40.73117,-73.98385999999999,Entire home/apt,175,3,6,1.91,1,0 +14509,60077790,Manhattan,Harlem,40.820440000000005,-73.93605,Private room,100,1,0,,1,0 +14510,5162192,Manhattan,Upper West Side,40.79804,-73.96135,Entire home/apt,140,30,19,0.47,12,256 +14511,12925391,Manhattan,Harlem,40.8006,-73.95314,Private room,55,1,0,,1,0 +14512,30545042,Brooklyn,Gowanus,40.67937,-73.98404000000001,Private room,40,3,1,0.02,1,0 +14513,16098958,Manhattan,Theater District,40.762409999999996,-73.98586999999999,Entire home/apt,180,30,5,0.15,96,303 +14514,217922,Queens,Long Island City,40.74859,-73.93904,Entire home/apt,110,30,32,0.84,1,66 +14515,25194025,Queens,Astoria,40.755790000000005,-73.9148,Entire home/apt,90,2,101,2.91,1,266 +14516,354385,Brooklyn,Williamsburg,40.71004,-73.95644,Private room,50,1,2,0.07,1,0 +14517,4422962,Brooklyn,Bedford-Stuyvesant,40.678340000000006,-73.92442,Entire home/apt,135,30,155,3.97,1,281 +14518,9896078,Brooklyn,Williamsburg,40.71745,-73.9569,Private room,60,3,1,0.03,1,0 +14519,60112093,Manhattan,Kips Bay,40.74308,-73.98172,Private room,200,2,12,0.52,1,0 +14520,1721738,Manhattan,Upper East Side,40.773270000000004,-73.94981999999999,Private room,90,10,23,0.6,1,8 +14521,26104727,Manhattan,Upper West Side,40.771370000000005,-73.98321,Entire home/apt,180,1,0,,1,0 +14522,6501137,Manhattan,West Village,40.73982,-74.00806999999999,Entire home/apt,228,1,10,0.25,1,0 +14523,24405972,Manhattan,Upper West Side,40.77661,-73.98228,Entire home/apt,250,4,3,0.08,1,0 +14524,60145132,Queens,Jamaica,40.69462,-73.80178000000001,Private room,40,1,1,0.03,1,88 +14525,60163700,Manhattan,Harlem,40.822829999999996,-73.95246999999999,Private room,65,14,42,1.04,4,185 +14526,2856748,Manhattan,West Village,40.73642,-74.00263000000001,Entire home/apt,188,30,2,0.06,49,342 +14527,31500454,Manhattan,Morningside Heights,40.8042,-73.96507,Entire home/apt,130,5,1,0.02,1,0 +14528,2266717,Brooklyn,Greenpoint,40.72306,-73.94785999999999,Entire home/apt,140,2,43,1.06,1,0 +14529,17038671,Manhattan,West Village,40.73133,-74.00459000000001,Private room,130,1,74,1.86,2,243 +14530,1621363,Brooklyn,Boerum Hill,40.68623,-73.98956,Entire home/apt,300,29,7,0.19,2,312 +14531,12531773,Manhattan,Harlem,40.82195,-73.95508000000001,Private room,50,4,64,3.31,2,162 +14532,22169347,Brooklyn,Crown Heights,40.6758,-73.95578,Entire home/apt,75,4,6,0.16,1,0 +14533,2119276,Manhattan,Chelsea,40.7437,-73.99476,Entire home/apt,200,30,7,0.49,39,311 +14534,16245414,Brooklyn,Bushwick,40.693220000000004,-73.92378000000001,Entire home/apt,250,1,6,0.15,4,0 +14535,60239797,Queens,Elmhurst,40.73958,-73.87288000000001,Private room,100,1,0,,1,0 +14536,60244293,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92849,Entire home/apt,112,2,168,4.11,2,291 +14537,9419684,Manhattan,Hell's Kitchen,40.75994,-73.99781,Entire home/apt,230,30,0,,3,176 +14538,16098958,Manhattan,Financial District,40.70563,-74.00658,Entire home/apt,170,30,3,0.1,96,312 +14539,16589150,Manhattan,East Village,40.72526,-73.99031,Private room,79,2,14,0.34,1,0 +14540,45033175,Manhattan,Hell's Kitchen,40.760709999999996,-73.99188000000001,Private room,125,3,0,,3,0 +14541,16098958,Manhattan,Theater District,40.76279,-73.9854,Entire home/apt,285,30,7,0.19,96,311 +14542,9419684,Manhattan,Hell's Kitchen,40.76144,-73.99826999999999,Entire home/apt,421,30,0,,3,0 +14543,20175896,Manhattan,Lower East Side,40.72132,-73.98369,Private room,110,3,26,0.64,1,0 +14544,60266817,Brooklyn,Williamsburg,40.71213,-73.95654,Entire home/apt,690,1,91,2.28,1,169 +14545,60278793,Manhattan,Harlem,40.81575,-73.94913000000001,Entire home/apt,169,3,96,2.51,1,39 +14546,12981247,Brooklyn,Crown Heights,40.67677,-73.93783,Private room,60,3,1,0.03,1,0 +14547,16919101,Brooklyn,Greenpoint,40.724740000000004,-73.95508000000001,Private room,70,2,28,1.12,1,0 +14548,60281397,Manhattan,Upper West Side,40.795759999999994,-73.96856,Private room,150,2,21,0.53,3,333 +14549,14076492,Manhattan,Upper West Side,40.7989,-73.96775,Private room,120,12,0,,1,0 +14550,46453731,Manhattan,Harlem,40.801359999999995,-73.95476,Entire home/apt,140,4,0,,1,0 +14551,48870027,Manhattan,East Village,40.72697,-73.98071999999999,Entire home/apt,160,4,19,0.48,1,343 +14552,60346942,Brooklyn,Bedford-Stuyvesant,40.69165,-73.943,Private room,50,1,210,5.17,4,189 +14553,15145474,Queens,Ozone Park,40.68165,-73.84558,Entire home/apt,120,4,70,1.76,4,51 +14554,1524765,Brooklyn,Clinton Hill,40.68701,-73.96174,Entire home/apt,140,3,4,0.11,1,0 +14555,60401178,Brooklyn,Gowanus,40.67884,-73.99238000000001,Entire home/apt,619,5,9,0.23,1,54 +14556,60409176,Manhattan,Flatiron District,40.739940000000004,-73.99005,Entire home/apt,600,5,28,0.71,1,338 +14557,24031106,Manhattan,Harlem,40.81086,-73.94037,Entire home/apt,76,14,2,0.05,1,0 +14558,7990995,Brooklyn,Bushwick,40.70017,-73.92081,Private room,35,1,0,,1,0 +14559,60294559,Manhattan,Midtown,40.753209999999996,-73.97215,Shared room,75,1,2,0.1,1,0 +14560,51278789,Queens,Corona,40.73884,-73.8665,Private room,40,16,34,0.87,2,146 +14561,60446325,Brooklyn,Clinton Hill,40.694829999999996,-73.96403000000001,Private room,54,2,30,1.17,1,333 +14562,10174622,Manhattan,Nolita,40.72225,-73.99473,Entire home/apt,140,2,44,1.1,1,110 +14563,2856748,Manhattan,Hell's Kitchen,40.765840000000004,-73.98422,Entire home/apt,225,30,0,,49,348 +14564,27378293,Manhattan,Harlem,40.8285,-73.94889,Private room,87,1,2,0.23,3,332 +14565,4964682,Manhattan,Marble Hill,40.87665,-73.90855,Entire home/apt,131,3,43,1.18,1,317 +14566,2856748,Manhattan,Midtown,40.750659999999996,-73.97036999999999,Entire home/apt,198,30,0,,49,364 +14567,8536366,Manhattan,Morningside Heights,40.80792,-73.96728,Entire home/apt,450,5,9,0.33,1,329 +14568,24743701,Brooklyn,Prospect-Lefferts Gardens,40.65976,-73.95604,Entire home/apt,175,2,123,3.32,2,67 +14569,60500336,Manhattan,Murray Hill,40.74573,-73.97802,Entire home/apt,100,1,1,0.03,1,0 +14570,60502606,Manhattan,Upper West Side,40.78838,-73.97892,Entire home/apt,250,1,0,,1,0 +14571,60516459,Manhattan,Upper West Side,40.77156,-73.98284,Private room,280,2,60,1.47,1,317 +14572,51646459,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93375,Entire home/apt,135,30,26,0.64,1,365 +14573,60535622,Brooklyn,Crown Heights,40.663909999999994,-73.95179,Entire home/apt,2100,120,0,,1,363 +14574,60535711,Manhattan,Midtown,40.7604,-73.9741,Entire home/apt,1100,2,20,0.53,2,268 +14575,15145474,Queens,Ozone Park,40.68084,-73.84765,Entire home/apt,87,4,86,2.13,4,58 +14576,60542135,Manhattan,Harlem,40.80187,-73.94705,Entire home/apt,165,3,60,1.49,1,278 +14577,831572,Brooklyn,Fort Greene,40.69277,-73.97449,Entire home/apt,170,1,12,0.3,1,0 +14578,6067526,Queens,Jackson Heights,40.74852,-73.8889,Private room,50,1,0,,1,188 +14579,60501531,Bronx,Spuyten Duyvil,40.88058,-73.91812,Entire home/apt,79,186,7,0.18,1,365 +14580,6502531,Manhattan,Chelsea,40.745490000000004,-73.99473,Private room,84,1,13,0.36,2,23 +14581,60596749,Manhattan,Morningside Heights,40.807520000000004,-73.96713000000001,Entire home/apt,375,7,5,0.14,1,0 +14582,60615372,Manhattan,Upper East Side,40.78222,-73.94725,Entire home/apt,135,2,31,0.83,1,0 +14583,923791,Brooklyn,South Slope,40.66397,-73.98538,Private room,125,1,7,0.17,2,0 +14584,60639864,Brooklyn,Bedford-Stuyvesant,40.68962,-73.95169,Private room,79,1,16,0.41,1,0 +14585,23901404,Manhattan,Harlem,40.82334,-73.94811,Entire home/apt,165,2,90,2.58,1,35 +14586,1827164,Manhattan,Upper East Side,40.772870000000005,-73.95291999999999,Entire home/apt,300,31,1,0.03,1,201 +14587,17752872,Manhattan,Harlem,40.83038,-73.94530999999999,Private room,45,1,2,0.05,1,0 +14588,2119276,Manhattan,Midtown,40.766870000000004,-73.98273,Entire home/apt,400,30,2,0.06,39,188 +14589,47105925,Brooklyn,Crown Heights,40.6718,-73.94266,Private room,40,2,2,0.05,1,0 +14590,50462669,Manhattan,Upper West Side,40.7939,-73.97404,Private room,60,3,2,0.05,1,0 +14591,60688035,Manhattan,Midtown,40.759209999999996,-73.97361,Private room,250,3,167,4.42,2,198 +14592,54772069,Brooklyn,Crown Heights,40.67634,-73.94133000000001,Private room,55,30,0,,1,365 +14593,19249692,Manhattan,Chinatown,40.716590000000004,-73.98949,Entire home/apt,199,3,92,2.28,1,48 +14594,60753668,Brooklyn,Williamsburg,40.71946,-73.94193,Entire home/apt,130,30,42,1.06,1,0 +14595,21937063,Manhattan,East Harlem,40.79712,-73.93469,Private room,44,6,14,0.35,1,335 +14596,576387,Manhattan,Nolita,40.7219,-73.99669,Entire home/apt,200,5,5,0.12,1,0 +14597,21960625,Queens,Flushing,40.75485,-73.82138,Entire home/apt,90,3,1,0.02,1,0 +14598,15152746,Manhattan,Gramercy,40.7339,-73.98523,Private room,139,1,0,,1,0 +14599,1141610,Brooklyn,Crown Heights,40.675779999999996,-73.92730999999999,Entire home/apt,250,7,0,,1,0 +14600,149430,Manhattan,East Harlem,40.78687,-73.94542,Entire home/apt,120,5,35,1.27,2,303 +14601,14406362,Brooklyn,Bay Ridge,40.62637,-74.02989000000001,Entire home/apt,100,4,2,0.09,1,0 +14602,60802539,Brooklyn,Crown Heights,40.675090000000004,-73.9572,Entire home/apt,133,2,0,,1,0 +14603,42535703,Manhattan,East Harlem,40.79922,-73.94677,Private room,120,3,0,,2,0 +14604,740029,Brooklyn,Williamsburg,40.70997,-73.9647,Entire home/apt,100,1,1,0.02,1,0 +14605,27906470,Manhattan,Chelsea,40.741609999999994,-74.00161999999999,Private room,70,1,0,,1,0 +14606,60817772,Brooklyn,Sunset Park,40.66052,-73.9939,Entire home/apt,200,4,1,0.03,1,0 +14607,420399,Manhattan,Upper East Side,40.769729999999996,-73.9566,Private room,89,5,16,0.4,2,80 +14608,60821050,Brooklyn,Williamsburg,40.72005,-73.95676999999999,Private room,75,1,1,0.03,1,0 +14609,24319977,Manhattan,East Village,40.72895,-73.98558,Entire home/apt,200,1,0,,1,0 +14610,11670284,Manhattan,Upper East Side,40.769909999999996,-73.95145,Private room,90,1,38,0.95,2,361 +14611,7539044,Manhattan,SoHo,40.72705,-74.00314,Private room,190,2,53,1.42,2,38 +14612,52203920,Manhattan,Washington Heights,40.8348,-73.94067,Entire home/apt,150,2,119,2.95,1,300 +14613,25237492,Manhattan,Washington Heights,40.84077,-73.93924,Entire home/apt,85,30,6,0.17,34,311 +14614,35664937,Manhattan,Lower East Side,40.71713,-73.98906,Private room,65,1,14,0.35,1,0 +14615,25237492,Manhattan,Washington Heights,40.84098,-73.94085,Entire home/apt,110,30,7,0.18,34,252 +14616,60915621,Manhattan,Chinatown,40.715559999999996,-73.99209,Shared room,70,1,88,5.44,1,55 +14617,8167445,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94242,Private room,55,3,10,0.25,1,0 +14618,44357881,Manhattan,Midtown,40.74512,-73.98176,Private room,75,1,0,,1,0 +14619,13125944,Manhattan,Hell's Kitchen,40.7653,-73.98825,Private room,59,1,1,0.02,2,0 +14620,8200984,Brooklyn,Park Slope,40.677640000000004,-73.97835,Entire home/apt,200,3,4,0.1,1,0 +14621,22551065,Manhattan,Lower East Side,40.71931,-73.98393,Private room,85,5,1,0.03,1,0 +14622,36625256,Brooklyn,Bushwick,40.702729999999995,-73.91565,Private room,85,1,0,,1,0 +14623,55601638,Queens,Long Island City,40.74493,-73.9537,Entire home/apt,158,1,1,0.03,1,0 +14624,27751504,Brooklyn,Kensington,40.63974,-73.97439,Private room,35,14,2,0.06,1,0 +14625,697442,Brooklyn,East Flatbush,40.64885,-73.94681,Private room,57,1,206,5.2,3,89 +14626,18002193,Manhattan,Hell's Kitchen,40.76035,-73.99051999999999,Entire home/apt,138,1,20,0.5,1,265 +14627,60990988,Manhattan,Harlem,40.810320000000004,-73.95415,Entire home/apt,90,2,198,4.87,1,39 +14628,3483450,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.91365,Entire home/apt,125,2,40,0.99,3,354 +14629,42619297,Brooklyn,Fort Greene,40.69413,-73.9723,Entire home/apt,999,2,94,2.85,2,361 +14630,39226206,Manhattan,East Harlem,40.79504,-73.94584,Entire home/apt,225,2,4,0.1,1,0 +14631,26138712,Queens,Ditmars Steinway,40.77587,-73.91775,Private room,45,1,5,0.13,1,0 +14632,10558652,Manhattan,Chinatown,40.71351,-73.99691999999999,Private room,150,5,37,0.91,2,0 +14633,61003876,Manhattan,Upper East Side,40.77505,-73.95357,Entire home/apt,150,1,3,0.1,1,0 +14634,56043282,Manhattan,Upper West Side,40.77872,-73.98025,Entire home/apt,140,1,8,0.2,1,0 +14635,60126047,Queens,Jamaica,40.67667,-73.79829000000001,Private room,40,3,11,0.33,1,318 +14636,2856748,Manhattan,Midtown,40.754529999999995,-73.96473,Entire home/apt,205,30,0,,49,364 +14637,2856748,Manhattan,Murray Hill,40.7471,-73.97263000000001,Entire home/apt,190,30,0,,49,364 +14638,10307134,Manhattan,Chelsea,40.74118,-74.00012,Private room,110,1,48,1.8,2,67 +14639,52997121,Queens,Jamaica,40.6756,-73.78244000000001,Entire home/apt,150,1,257,7.38,4,80 +14640,33856311,Manhattan,Upper East Side,40.76769,-73.95616,Entire home/apt,100,1,0,,1,0 +14641,61088024,Manhattan,Upper East Side,40.77697,-73.95371999999999,Entire home/apt,75,1,0,,1,0 +14642,60687546,Brooklyn,Prospect-Lefferts Gardens,40.66258,-73.95205,Entire home/apt,115,2,44,1.11,2,126 +14643,61099962,Brooklyn,Prospect Heights,40.67525,-73.96418,Private room,50,1,0,,1,0 +14644,11523568,Manhattan,West Village,40.72983,-74.00556999999999,Entire home/apt,190,1,25,0.67,1,158 +14645,10929225,Queens,Ridgewood,40.71112,-73.91932,Private room,60,2,2,0.05,1,0 +14646,48024019,Manhattan,Midtown,40.74644,-73.98389,Entire home/apt,200,1,0,,1,0 +14647,1253313,Queens,Astoria,40.76964,-73.92116999999999,Entire home/apt,90,2,28,0.7,1,0 +14648,5333348,Manhattan,Tribeca,40.71526,-74.01044,Entire home/apt,500,3,0,,1,0 +14649,1432593,Brooklyn,Bushwick,40.70024,-73.92055,Entire home/apt,115,3,33,0.89,1,20 +14650,55504410,Manhattan,Murray Hill,40.74969,-73.97298,Entire home/apt,140,5,0,,1,0 +14651,48202082,Manhattan,East Harlem,40.80147,-73.93706,Private room,50,30,0,,1,345 +14652,11764237,Manhattan,Kips Bay,40.74342,-73.97505,Entire home/apt,135,1,1,0.03,1,0 +14653,59493714,Manhattan,East Village,40.72367,-73.98401,Private room,109,3,0,,1,0 +14654,7041668,Brooklyn,Crown Heights,40.67075,-73.9447,Private room,60,1,0,,1,0 +14655,61175876,Brooklyn,Bushwick,40.69531,-73.92248000000001,Entire home/apt,148,5,77,1.96,2,275 +14656,3867,Manhattan,Chinatown,40.7138,-73.99758,Private room,95,1,80,2.0,2,49 +14657,60346942,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94266,Private room,50,1,192,4.72,4,189 +14658,61175876,Brooklyn,Bushwick,40.69549,-73.92249,Entire home/apt,79,4,97,2.42,2,250 +14659,59075666,Brooklyn,Williamsburg,40.70395,-73.93366999999999,Private room,50,6,11,0.27,1,0 +14660,61229318,Manhattan,Morningside Heights,40.81045,-73.95961,Private room,40,3,1,0.02,1,0 +14661,196298,Manhattan,Upper West Side,40.78638,-73.97004,Entire home/apt,101,30,10,0.4,1,0 +14662,130023,Brooklyn,Bedford-Stuyvesant,40.68165,-73.93267,Entire home/apt,135,5,63,1.6,2,281 +14663,5466759,Manhattan,Midtown,40.75438,-73.96576,Private room,99,4,0,,1,0 +14664,61252195,Brooklyn,Williamsburg,40.71308,-73.94077,Private room,95,1,0,,1,0 +14665,10563705,Manhattan,Washington Heights,40.850429999999996,-73.936,Entire home/apt,110,4,0,,1,0 +14666,5099080,Manhattan,Upper West Side,40.79795,-73.96155999999999,Entire home/apt,299,4,7,0.19,1,0 +14667,27125291,Manhattan,Upper West Side,40.79908,-73.96141,Private room,79,1,4,0.1,1,0 +14668,40470433,Manhattan,Lower East Side,40.713029999999996,-73.98645,Private room,52,1,0,,1,0 +14669,4732500,Manhattan,Upper West Side,40.79828,-73.97166,Entire home/apt,95,1,0,,1,0 +14670,17862696,Brooklyn,Gowanus,40.6717,-73.99247,Entire home/apt,295,4,2,0.07,1,326 +14671,15524268,Brooklyn,Williamsburg,40.71117,-73.95196999999999,Private room,65,1,0,,1,0 +14672,50760546,Manhattan,Midtown,40.74596,-73.98195,Entire home/apt,110,30,4,0.14,31,126 +14673,50760546,Manhattan,Midtown,40.7455,-73.98111999999999,Entire home/apt,215,30,2,0.06,31,125 +14674,49413208,Brooklyn,Fort Hamilton,40.617309999999996,-74.0344,Entire home/apt,100,15,3,0.14,2,365 +14675,23387829,Manhattan,Upper East Side,40.76105,-73.96222,Entire home/apt,450,1,0,,1,0 +14676,2487433,Brooklyn,Williamsburg,40.71826,-73.95795,Entire home/apt,95,30,11,0.28,1,32 +14677,51528392,Brooklyn,Crown Heights,40.671690000000005,-73.94612,Entire home/apt,140,4,130,3.23,1,30 +14678,10703999,Manhattan,Chinatown,40.714690000000004,-73.9995,Entire home/apt,220,4,0,,1,0 +14679,2856748,Manhattan,Midtown,40.75615,-73.9649,Entire home/apt,355,30,0,,49,364 +14680,2856748,Manhattan,Midtown,40.75505,-73.96484,Entire home/apt,185,30,0,,49,364 +14681,2856748,Manhattan,Murray Hill,40.74754,-73.97199,Entire home/apt,297,30,1,0.03,49,311 +14682,61391963,Manhattan,Upper East Side,40.78465,-73.95735,Entire home/apt,133,30,7,0.22,91,311 +14683,39123185,Manhattan,Hell's Kitchen,40.767140000000005,-73.99229,Private room,100,1,0,,1,0 +14684,16899697,Manhattan,Lower East Side,40.718540000000004,-73.98362,Private room,250,2,2,0.07,1,0 +14685,7982432,Queens,Long Island City,40.76485,-73.93959,Private room,65,1,1,0.03,1,0 +14686,13031745,Brooklyn,Williamsburg,40.70878,-73.94071,Private room,50,3,3,0.07,3,0 +14687,16098958,Manhattan,Upper West Side,40.7906,-73.97267,Entire home/apt,135,30,2,0.06,96,313 +14688,14933972,Brooklyn,Bedford-Stuyvesant,40.68023,-73.93585999999999,Private room,80,2,77,1.91,3,12 +14689,28369674,Brooklyn,Williamsburg,40.70357,-73.93444000000001,Private room,69,3,66,1.9,2,91 +14690,61420312,Manhattan,Two Bridges,40.71222,-73.99566,Private room,75,2,25,1.04,1,271 +14691,12352188,Brooklyn,Boerum Hill,40.68792,-73.98999,Entire home/apt,125,5,8,0.2,1,0 +14692,61391963,Manhattan,Little Italy,40.71885,-73.99571999999999,Entire home/apt,142,30,6,0.15,91,342 +14693,50556696,Manhattan,Kips Bay,40.74296,-73.97771,Entire home/apt,200,1,0,,1,0 +14694,19479273,Brooklyn,Bushwick,40.69019,-73.91574,Private room,45,1,0,,1,0 +14695,56372211,Manhattan,Gramercy,40.73737,-73.97995,Private room,97,3,120,3.04,1,18 +14696,1143620,Manhattan,Murray Hill,40.74742,-73.97724000000001,Entire home/apt,229,3,1,0.02,1,0 +14697,1265437,Manhattan,Hell's Kitchen,40.75573,-73.99228000000001,Entire home/apt,175,1,57,1.41,1,273 +14698,4829797,Brooklyn,Williamsburg,40.705890000000004,-73.94749,Private room,63,7,1,0.02,1,0 +14699,37312959,Queens,East Elmhurst,40.77107,-73.87559,Private room,45,1,412,10.19,5,159 +14700,61391963,Manhattan,Hell's Kitchen,40.76406,-73.991,Entire home/apt,185,30,3,0.08,91,0 +14701,51446803,Manhattan,Harlem,40.83122,-73.94475,Shared room,50,1,67,1.65,1,216 +14702,61391963,Manhattan,Little Italy,40.719570000000004,-73.99573000000001,Entire home/apt,175,30,3,0.16,91,161 +14703,61391963,Manhattan,Kips Bay,40.74053,-73.97906,Entire home/apt,133,30,7,0.2,91,312 +14704,55468128,Brooklyn,Windsor Terrace,40.65959,-73.98222,Private room,62,1,208,5.28,7,260 +14705,58234433,Queens,Sunnyside,40.7364,-73.91923,Private room,90,1,36,0.99,8,346 +14706,23607758,Brooklyn,Cobble Hill,40.68874,-73.99525,Private room,99,2,46,1.15,1,66 +14707,20114391,Brooklyn,Fort Greene,40.68465,-73.97069,Private room,61,60,2,0.09,2,43 +14708,2666654,Queens,Ditmars Steinway,40.77536,-73.90781,Entire home/apt,120,1,268,6.78,1,139 +14709,1172202,Queens,Ditmars Steinway,40.771229999999996,-73.90932,Private room,100,1,107,2.67,5,32 +14710,43128266,Manhattan,Washington Heights,40.83463,-73.94,Shared room,32,1,32,0.83,3,332 +14711,61601216,Manhattan,Upper East Side,40.7687,-73.95705,Private room,80,2,11,0.31,1,0 +14712,4383413,Brooklyn,East Flatbush,40.64583,-73.94693000000001,Entire home/apt,90,3,5,0.14,1,0 +14713,28808966,Brooklyn,Crown Heights,40.67815,-73.96231999999999,Entire home/apt,180,1,0,,1,0 +14714,61382075,Manhattan,Washington Heights,40.84398,-73.94064,Private room,65,4,2,0.05,2,0 +14715,4187747,Bronx,Riverdale,40.9008,-73.90639,Private room,49,6,2,0.05,1,340 +14716,61382075,Manhattan,Washington Heights,40.84326,-73.93901,Entire home/apt,100,14,1,0.03,2,0 +14717,22686950,Brooklyn,Bushwick,40.698679999999996,-73.93518,Entire home/apt,380,3,75,1.94,1,290 +14718,61684714,Manhattan,Washington Heights,40.84248,-73.93849,Private room,26,7,0,,1,0 +14719,524597,Manhattan,Washington Heights,40.8481,-73.93585,Entire home/apt,100,3,2,0.06,1,0 +14720,1547578,Manhattan,East Village,40.72868,-73.98635,Private room,90,15,1,0.04,1,0 +14721,25141383,Manhattan,Lower East Side,40.719359999999995,-73.98878,Private room,89,2,0,,1,0 +14722,61699814,Bronx,Kingsbridge,40.8787,-73.90098,Private room,35,30,7,0.49,2,155 +14723,2375701,Brooklyn,Greenpoint,40.7307,-73.95568,Private room,66,1,1,0.02,1,0 +14724,1709718,Manhattan,Midtown,40.76453,-73.97769,Private room,285,1,32,1.39,2,365 +14725,34220831,Manhattan,Morningside Heights,40.81377,-73.96166,Private room,46,1,2,0.05,1,0 +14726,61719199,Manhattan,Flatiron District,40.73955,-73.98568,Entire home/apt,275,2,4,0.1,1,0 +14727,21480710,Brooklyn,Bedford-Stuyvesant,40.68486,-73.932,Private room,89,1,0,,2,0 +14728,254650,Manhattan,Harlem,40.803059999999995,-73.95308,Entire home/apt,250,1,1,0.03,2,0 +14729,2483628,Brooklyn,Williamsburg,40.713,-73.9653,Entire home/apt,200,4,50,1.24,1,50 +14730,2422648,Brooklyn,Prospect Heights,40.68112,-73.96491999999999,Entire home/apt,175,2,15,0.39,1,4 +14731,61800014,Manhattan,Lower East Side,40.720929999999996,-73.98493,Entire home/apt,140,1,144,3.63,1,98 +14732,61391963,Manhattan,Upper East Side,40.781259999999996,-73.94655,Entire home/apt,133,30,9,0.26,91,311 +14733,61391963,Manhattan,Midtown,40.756879999999995,-73.96815,Entire home/apt,150,30,9,0.26,91,206 +14734,61804662,Queens,Flushing,40.760490000000004,-73.81633000000001,Private room,55,1,126,3.13,2,180 +14735,61391963,Manhattan,Greenwich Village,40.72818,-73.99886,Entire home/apt,142,30,10,0.25,91,157 +14736,3927655,Manhattan,Washington Heights,40.83441,-73.93706,Entire home/apt,95,7,1,0.02,1,0 +14737,61391963,Manhattan,Midtown,40.75605,-73.96503,Entire home/apt,165,30,0,,91,180 +14738,1479763,Brooklyn,Williamsburg,40.71228,-73.94211,Entire home/apt,150,3,7,0.18,1,0 +14739,26405086,Manhattan,Harlem,40.80069,-73.95340999999999,Private room,99,28,2,0.07,4,365 +14740,61391963,Manhattan,Midtown,40.75589,-73.96753000000001,Entire home/apt,133,30,7,0.21,91,310 +14741,282655,Brooklyn,Flatbush,40.64841,-73.96969,Entire home/apt,150,3,125,3.32,3,264 +14742,10575779,Queens,Astoria,40.7588,-73.91762,Entire home/apt,190,2,1,0.03,1,0 +14743,6001746,Brooklyn,Bushwick,40.70478,-73.92766999999999,Private room,60,21,0,,1,0 +14744,61842904,Brooklyn,Crown Heights,40.67727,-73.96251,Entire home/apt,106,7,7,0.18,3,26 +14745,61851697,Brooklyn,Bedford-Stuyvesant,40.69207,-73.94321,Entire home/apt,165,3,0,,1,273 +14746,6392776,Brooklyn,Williamsburg,40.717620000000004,-73.94354,Entire home/apt,190,2,181,4.51,1,229 +14747,46502890,Queens,Jamaica Estates,40.72191,-73.78206999999999,Private room,750,1,0,,2,0 +14748,17548437,Bronx,Melrose,40.8183,-73.91938,Entire home/apt,150,5,58,1.45,1,37 +14749,15835554,Brooklyn,Gowanus,40.67553,-73.98533,Entire home/apt,150,2,0,,1,0 +14750,61863502,Manhattan,Upper East Side,40.77933,-73.94861999999999,Entire home/apt,119,5,1,0.03,1,0 +14751,60346942,Brooklyn,Bedford-Stuyvesant,40.69165,-73.94345,Private room,62,1,244,6.02,4,189 +14752,21382844,Manhattan,Gramercy,40.73458,-73.98128,Private room,99,1,5,0.16,1,0 +14753,52347885,Brooklyn,Flatlands,40.630520000000004,-73.92181,Private room,34,2,91,3.1,2,78 +14754,24856724,Manhattan,Lower East Side,40.72005,-73.98911,Entire home/apt,129,4,78,2.07,1,26 +14755,49572092,Brooklyn,Williamsburg,40.71976,-73.94234,Entire home/apt,105,180,10,0.25,1,1 +14756,8856151,Manhattan,SoHo,40.72616,-74.00102,Entire home/apt,229,4,0,,1,0 +14757,61938683,Manhattan,Upper West Side,40.78629,-73.98062,Entire home/apt,350,7,0,,1,0 +14758,60500199,Manhattan,Harlem,40.807970000000005,-73.94243,Entire home/apt,205,3,71,1.76,1,331 +14759,61945871,Queens,Rockaway Beach,40.58587,-73.81652,Private room,85,2,15,0.38,1,330 +14760,61962183,Queens,Ditmars Steinway,40.77687,-73.90386,Private room,30,15,0,,1,0 +14761,61391963,Manhattan,Upper West Side,40.78833,-73.97026,Entire home/apt,150,30,5,0.27,91,311 +14762,61972032,Manhattan,Gramercy,40.7318,-73.98321999999999,Entire home/apt,186,2,169,4.17,1,0 +14763,52794726,Brooklyn,Downtown Brooklyn,40.69789,-73.98259,Private room,50,1,0,,1,0 +14764,4992559,Brooklyn,Park Slope,40.67821,-73.97484,Entire home/apt,200,2,12,0.31,1,0 +14765,57694481,Manhattan,Upper West Side,40.7783,-73.98807,Entire home/apt,172,12,13,0.37,1,34 +14766,16098958,Manhattan,Upper East Side,40.77688,-73.95505,Entire home/apt,250,30,1,0.04,96,333 +14767,61391963,Manhattan,Kips Bay,40.74021,-73.97991999999999,Entire home/apt,133,30,5,0.15,91,311 +14768,26584499,Manhattan,Upper West Side,40.7824,-73.98215,Entire home/apt,150,30,4,0.1,8,220 +14769,34564001,Manhattan,Chelsea,40.74866,-73.98986,Entire home/apt,290,2,62,1.53,1,19 +14770,62001039,Queens,Forest Hills,40.72227,-73.84173,Entire home/apt,120,2,4,0.1,1,0 +14771,56714504,Bronx,City Island,40.85139,-73.78414000000001,Entire home/apt,95,1,227,5.65,1,16 +14772,1534857,Manhattan,Chinatown,40.71674,-73.98995,Entire home/apt,120,7,1,0.03,2,0 +14773,62014546,Manhattan,Upper East Side,40.776540000000004,-73.94904,Entire home/apt,165,1,141,3.54,1,262 +14774,3850478,Brooklyn,Greenpoint,40.72435,-73.94004,Private room,50,1,0,,1,0 +14775,8756821,Manhattan,Chinatown,40.71555,-73.99091,Entire home/apt,180,2,10,0.25,1,0 +14776,9073820,Brooklyn,Bedford-Stuyvesant,40.69144,-73.95891,Private room,38,1,0,,1,0 +14777,61553719,Brooklyn,Bedford-Stuyvesant,40.68205,-73.94469000000001,Entire home/apt,85,2,39,0.98,1,190 +14778,13305499,Manhattan,Lower East Side,40.72025,-73.98371999999999,Entire home/apt,145,2,3,0.07,1,0 +14779,116382,Brooklyn,Crown Heights,40.67031,-73.94088,Private room,29,2,142,3.54,5,0 +14780,3792156,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95203000000001,Entire home/apt,120,1,6,0.16,1,0 +14781,61391963,Manhattan,Upper East Side,40.760870000000004,-73.96217,Entire home/apt,117,30,9,0.27,91,173 +14782,22808020,Brooklyn,Bushwick,40.69473,-73.91882,Entire home/apt,70,7,1,0.03,1,0 +14783,46036778,Manhattan,Upper East Side,40.75977,-73.95917,Entire home/apt,180,14,0,,1,0 +14784,12010675,Brooklyn,Sunset Park,40.64997,-74.00347,Entire home/apt,115,2,4,0.11,1,0 +14785,62130666,Brooklyn,Williamsburg,40.70998,-73.94854000000001,Entire home/apt,225,2,110,2.74,1,124 +14786,45595980,Manhattan,Upper East Side,40.76798,-73.96755,Entire home/apt,140,30,4,0.3,12,57 +14787,16234492,Bronx,Soundview,40.82442,-73.86193,Private room,45,2,6,0.15,1,0 +14788,33214549,Manhattan,East Village,40.72573,-73.98406,Private room,119,1,1,0.42,5,0 +14789,61391963,Manhattan,Upper East Side,40.78002,-73.95284000000001,Entire home/apt,125,30,8,0.23,91,343 +14790,22769314,Brooklyn,Williamsburg,40.71588,-73.95515,Private room,46,1,0,,1,0 +14791,1838844,Brooklyn,Bushwick,40.70153,-73.9169,Private room,50,1,0,,1,0 +14792,1640615,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93478,Entire home/apt,150,5,1,0.03,1,0 +14793,62192916,Manhattan,Upper West Side,40.77609,-73.98991,Entire home/apt,120,5,20,0.5,1,34 +14794,14898658,Brooklyn,Kensington,40.64188,-73.98042,Private room,45,1,108,2.68,11,23 +14795,62249912,Brooklyn,Fort Greene,40.6876,-73.97083,Private room,115,28,39,1.05,1,3 +14796,412228,Manhattan,Upper West Side,40.778890000000004,-73.9878,Private room,95,14,0,,1,0 +14797,39149459,Manhattan,East Village,40.72428,-73.98748,Entire home/apt,110,1,1,0.03,1,0 +14798,1486872,Brooklyn,Gowanus,40.670609999999996,-73.9904,Entire home/apt,250,7,5,0.15,2,1 +14799,10078038,Brooklyn,Williamsburg,40.71765,-73.95189,Entire home/apt,300,5,46,1.18,1,29 +14800,17156658,Queens,Astoria,40.76207,-73.90852,Private room,45,5,50,1.27,1,145 +14801,61391963,Manhattan,Kips Bay,40.74168,-73.9804,Entire home/apt,159,30,8,0.37,91,190 +14802,3256433,Manhattan,Lower East Side,40.722229999999996,-73.99189,Entire home/apt,220,30,3,0.12,7,2 +14803,61391963,Manhattan,Kips Bay,40.74044,-73.98029,Entire home/apt,159,30,3,0.14,91,312 +14804,23902914,Manhattan,East Village,40.73082,-73.98445,Entire home/apt,70,1,144,3.55,1,49 +14805,62298504,Brooklyn,Greenpoint,40.7258,-73.9515,Private room,45,7,2,0.05,1,0 +14806,41411171,Manhattan,Upper West Side,40.79469,-73.96575,Private room,40,1,0,,1,0 +14807,18562674,Manhattan,Harlem,40.8284,-73.94461,Private room,81,1,102,2.7,2,90 +14808,62320186,Manhattan,Harlem,40.81327,-73.94628,Entire home/apt,190,2,46,1.17,1,323 +14809,59625377,Manhattan,Hell's Kitchen,40.75705,-73.99265,Entire home/apt,225,5,24,0.96,1,42 +14810,62335395,Manhattan,Washington Heights,40.85029,-73.93645,Shared room,360,1,0,,1,0 +14811,62359474,Manhattan,Hell's Kitchen,40.75926,-73.99304000000001,Entire home/apt,125,2,104,2.63,1,5 +14812,10620222,Queens,Astoria,40.767109999999995,-73.92045999999999,Entire home/apt,95,3,1,0.03,1,0 +14813,1700752,Queens,Elmhurst,40.74297,-73.87508000000001,Entire home/apt,62,2,1,0.29,1,0 +14814,11292325,Manhattan,Harlem,40.81613,-73.94622,Entire home/apt,150,30,17,0.42,1,157 +14815,292522,Brooklyn,Fort Greene,40.69014,-73.97346999999999,Entire home/apt,495,5,10,0.27,2,21 +14816,5362257,Manhattan,Harlem,40.8249,-73.94288,Entire home/apt,130,3,74,1.87,1,16 +14817,18466740,Brooklyn,Bushwick,40.69862,-73.93066,Private room,80,5,7,0.18,1,300 +14818,11544181,Brooklyn,Greenpoint,40.72522,-73.94124000000001,Private room,89,1,199,5.07,1,114 +14819,2350014,Brooklyn,Crown Heights,40.67073,-73.95021,Private room,55,1,0,,1,0 +14820,25116430,Manhattan,Upper East Side,40.77559,-73.95263,Entire home/apt,140,1,183,4.56,1,63 +14821,61303786,Manhattan,Financial District,40.70666,-74.00596999999999,Private room,60,15,1,0.03,1,0 +14822,61391963,Manhattan,Midtown,40.75639,-73.96593,Entire home/apt,142,30,3,0.19,91,357 +14823,61391963,Manhattan,Upper East Side,40.770340000000004,-73.96257,Entire home/apt,125,30,11,0.32,91,105 +14824,61391963,Manhattan,Hell's Kitchen,40.75892,-73.98949,Entire home/apt,133,30,7,0.21,91,281 +14825,1709729,Brooklyn,Williamsburg,40.721379999999996,-73.95756999999999,Entire home/apt,200,30,45,1.27,1,310 +14826,24458604,Brooklyn,Williamsburg,40.71813,-73.96464,Entire home/apt,85,5,2,0.07,1,0 +14827,62466366,Manhattan,West Village,40.73405,-74.00789,Entire home/apt,625,5,12,0.47,1,130 +14828,19962052,Manhattan,Gramercy,40.735859999999995,-73.98028000000001,Private room,100,2,33,0.82,3,44 +14829,19285185,Brooklyn,Clinton Hill,40.69388,-73.96200999999999,Entire home/apt,176,5,12,0.31,1,236 +14830,8208493,Manhattan,Hell's Kitchen,40.76235,-73.98872,Entire home/apt,175,1,179,5.71,1,116 +14831,25059970,Staten Island,Clifton,40.62375,-74.07373,Entire home/apt,75,5,81,2.04,1,155 +14832,2856748,Manhattan,Midtown,40.757540000000006,-73.96129,Entire home/apt,245,30,0,,49,334 +14833,61391963,Manhattan,Midtown,40.75387,-73.96744,Entire home/apt,125,30,11,0.29,91,157 +14834,61391963,Manhattan,Kips Bay,40.741279999999996,-73.98039,Entire home/apt,159,30,3,0.11,91,310 +14835,62530335,Bronx,Concourse,40.8199,-73.9281,Entire home/apt,110,1,0,,1,0 +14836,61391963,Manhattan,Midtown,40.75573,-73.96835,Entire home/apt,150,30,7,0.18,91,188 +14837,62535444,Brooklyn,Brighton Beach,40.57891,-73.95388,Entire home/apt,99,1,88,2.22,2,364 +14838,50199714,Brooklyn,Crown Heights,40.672,-73.94247,Private room,49,1,86,2.16,1,4 +14839,62542300,Brooklyn,South Slope,40.667359999999995,-73.98773,Private room,140,2,141,3.63,1,268 +14840,15423103,Brooklyn,Clinton Hill,40.6954,-73.96705,Entire home/apt,200,30,1,0.09,1,9 +14841,8488826,Manhattan,East Village,40.729409999999994,-73.98336,Entire home/apt,148,4,5,0.13,1,0 +14842,61391963,Manhattan,Greenwich Village,40.72815,-74.00111,Entire home/apt,165,30,7,0.28,91,142 +14843,41616878,Brooklyn,Bushwick,40.691720000000004,-73.9087,Private room,59,20,33,0.82,4,361 +14844,41616878,Brooklyn,Bushwick,40.6913,-73.90998,Private room,45,30,17,0.43,4,335 +14845,41616878,Brooklyn,Bushwick,40.69164,-73.90968000000001,Private room,45,30,16,0.43,4,334 +14846,3150538,Manhattan,Harlem,40.82066,-73.95259,Entire home/apt,225,3,25,0.63,1,0 +14847,62588398,Manhattan,East Harlem,40.79945,-73.9346,Private room,70,3,54,1.36,1,40 +14848,62634797,Queens,Sunnyside,40.73949,-73.9282,Entire home/apt,95,21,102,2.9,1,138 +14849,62649248,Brooklyn,Bushwick,40.70663,-73.9175,Entire home/apt,100,30,28,0.81,2,87 +14850,17638424,Queens,Elmhurst,40.74517,-73.87496,Private room,59,1,75,1.87,8,106 +14851,36830075,Manhattan,Harlem,40.82884,-73.94868000000001,Private room,50,1,0,,2,0 +14852,62685348,Manhattan,Upper East Side,40.77815,-73.96158,Entire home/apt,400,1,0,,1,0 +14853,15265556,Manhattan,East Village,40.72547,-73.98716999999999,Entire home/apt,100,1,3,0.07,1,0 +14854,60081723,Manhattan,Hell's Kitchen,40.76226,-73.99285,Entire home/apt,199,3,157,3.95,2,215 +14855,116382,Brooklyn,Crown Heights,40.66898,-73.94209000000001,Private room,35,3,165,4.09,5,272 +14856,15495404,Brooklyn,Crown Heights,40.67091,-73.93247,Private room,65,5,0,,1,0 +14857,6598000,Brooklyn,Prospect-Lefferts Gardens,40.661559999999994,-73.94882,Entire home/apt,95,3,9,0.23,1,0 +14858,13750728,Bronx,Longwood,40.81778,-73.90858,Private room,60,2,63,1.68,4,336 +14859,40219037,Manhattan,Hell's Kitchen,40.764520000000005,-73.99439,Entire home/apt,200,4,107,2.73,1,203 +14860,46778061,Manhattan,Upper West Side,40.778259999999996,-73.97703,Entire home/apt,200,3,43,1.08,1,14 +14861,62557719,Manhattan,Harlem,40.83155,-73.94489,Private room,50,7,21,0.55,3,363 +14862,37055110,Manhattan,Washington Heights,40.844429999999996,-73.94118,Private room,102,2,29,0.76,1,178 +14863,46583440,Manhattan,Greenwich Village,40.73573,-73.99495999999999,Entire home/apt,152,1,1,0.03,1,0 +14864,672573,Brooklyn,Cobble Hill,40.687059999999995,-73.99893,Entire home/apt,490,7,1,0.03,1,0 +14865,29244447,Manhattan,Murray Hill,40.74773,-73.98079,Entire home/apt,250,1,1,0.02,1,0 +14866,4284154,Manhattan,Harlem,40.8014,-73.95469,Entire home/apt,450,7,6,0.17,2,229 +14867,62787599,Brooklyn,Prospect-Lefferts Gardens,40.657990000000005,-73.94924,Entire home/apt,98,4,15,0.49,2,341 +14868,46798824,Brooklyn,Brighton Beach,40.57844,-73.95822,Entire home/apt,199,1,0,,1,0 +14869,23269511,Queens,Astoria,40.767920000000004,-73.91175,Private room,50,5,1,0.03,1,0 +14870,62787599,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.94791,Entire home/apt,109,4,25,0.65,2,324 +14871,1850179,Brooklyn,Bedford-Stuyvesant,40.68265,-73.94466,Entire home/apt,145,4,18,0.49,1,0 +14872,26271616,Manhattan,Upper West Side,40.80109,-73.96128,Private room,96,1,0,,2,0 +14873,1039519,Brooklyn,Bedford-Stuyvesant,40.68407,-73.9531,Entire home/apt,165,4,5,0.13,1,0 +14874,26865924,Brooklyn,Crown Heights,40.67228,-73.93569000000001,Private room,65,1,1,0.03,1,0 +14875,33547829,Manhattan,Midtown,40.75561,-73.96424,Entire home/apt,130,2,118,2.93,1,226 +14876,28551360,Manhattan,Upper East Side,40.78226,-73.95331999999999,Entire home/apt,120,1,11,0.3,1,0 +14877,62850827,Brooklyn,Crown Heights,40.67386,-73.95271,Entire home/apt,165,30,3,0.09,1,365 +14878,62852022,Brooklyn,South Slope,40.66485,-73.98822,Entire home/apt,200,2,9,0.24,1,0 +14879,24232061,Manhattan,Upper East Side,40.77189,-73.9554,Private room,122,9,12,0.32,3,160 +14880,62852828,Manhattan,Harlem,40.82443,-73.95265,Entire home/apt,400,3,2,0.06,2,88 +14881,26377263,Brooklyn,Fort Greene,40.68906,-73.97763,Private room,54,30,0,,43,361 +14882,26377263,Brooklyn,Fort Greene,40.690059999999995,-73.98056,Private room,54,30,0,,43,361 +14883,26377263,Brooklyn,Park Slope,40.66873,-73.97916,Private room,54,30,0,,43,361 +14884,1162642,Manhattan,Nolita,40.72295,-73.99481,Private room,250,1,2,0.05,2,0 +14885,411437,Manhattan,Harlem,40.81118,-73.94313000000001,Entire home/apt,120,14,9,0.23,1,0 +14886,8697041,Brooklyn,Williamsburg,40.71118,-73.947,Private room,75,1,0,,2,0 +14887,62939516,Queens,Long Island City,40.76079,-73.93215,Private room,65,1,5,0.13,1,0 +14888,264366,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.94118,Private room,60,2,0,,1,0 +14889,4629474,Brooklyn,Sunset Park,40.66162,-73.99122,Entire home/apt,179,3,0,,1,0 +14890,17638424,Queens,Elmhurst,40.74624,-73.87376,Private room,43,1,105,2.61,8,140 +14891,62968595,Manhattan,West Village,40.73892,-74.00385,Entire home/apt,130,5,0,,1,0 +14892,62971703,Manhattan,Upper West Side,40.78484,-73.97707,Entire home/apt,154,3,78,1.95,1,17 +14893,62974212,Brooklyn,Bushwick,40.69931,-73.92067,Entire home/apt,135,2,10,0.26,1,88 +14894,62978797,Queens,Woodside,40.75631,-73.90199,Private room,86,2,4,0.15,1,365 +14895,19633984,Brooklyn,Columbia St,40.68912,-74.00121,Private room,85,2,61,1.57,1,0 +14896,4348515,Queens,East Elmhurst,40.769690000000004,-73.87912,Entire home/apt,80,3,68,1.79,1,334 +14897,50556869,Brooklyn,Bedford-Stuyvesant,40.68738,-73.91906,Private room,70,2,2,0.05,1,0 +14898,63002307,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95443,Private room,65,1,0,,1,0 +14899,3716130,Manhattan,Harlem,40.82325,-73.9478,Entire home/apt,100,1,7,0.18,1,0 +14900,16058022,Manhattan,Gramercy,40.73755,-73.98040999999999,Entire home/apt,130,5,1,0.03,1,0 +14901,63006814,Brooklyn,Crown Heights,40.66429,-73.94994,Entire home/apt,139,2,67,1.7,1,75 +14902,62915940,Brooklyn,Borough Park,40.6311,-74.00445,Private room,35,1,9,0.24,1,0 +14903,9946550,Brooklyn,South Slope,40.664320000000004,-73.98846999999999,Entire home/apt,100,7,1,0.03,1,0 +14904,44071830,Manhattan,East Harlem,40.78583,-73.94315999999999,Private room,60,1,0,,1,0 +14905,61391963,Manhattan,Midtown,40.7566,-73.96956,Entire home/apt,133,30,7,0.22,91,127 +14906,62829649,Manhattan,Flatiron District,40.74341,-73.9895,Entire home/apt,275,2,136,3.4,1,170 +14907,51447330,Manhattan,Lower East Side,40.720490000000005,-73.98821,Private room,112,1,0,,1,0 +14908,61391963,Manhattan,Kips Bay,40.74025,-73.97896,Entire home/apt,142,30,9,0.36,91,157 +14909,45526701,Brooklyn,Crown Heights,40.67237,-73.95172,Entire home/apt,135,2,22,1.68,1,92 +14910,63097249,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95081,Entire home/apt,165,1,19,0.8,1,0 +14911,37809789,Manhattan,Upper West Side,40.77727,-73.98355,Entire home/apt,200,1,0,,1,0 +14912,17980647,Manhattan,Upper West Side,40.79622,-73.96988,Entire home/apt,425,5,0,,1,0 +14913,29936265,Manhattan,Financial District,40.70544,-74.01616,Entire home/apt,110,1,2,0.05,1,0 +14914,2384086,Brooklyn,Bedford-Stuyvesant,40.689,-73.95241,Private room,40,5,0,,1,0 +14915,23994508,Manhattan,East Harlem,40.79533,-73.94764,Private room,70,2,169,4.27,1,38 +14916,62557719,Manhattan,Harlem,40.83039,-73.94532,Private room,65,30,6,0.16,3,365 +14917,3864301,Queens,Sunnyside,40.743559999999995,-73.91685,Entire home/apt,95,30,3,0.09,2,357 +14918,13318184,Brooklyn,Williamsburg,40.70523,-73.94072,Private room,100,1,0,,4,0 +14919,9532490,Manhattan,East Village,40.73065,-73.9886,Entire home/apt,140,2,4,0.1,3,0 +14920,2682322,Manhattan,Kips Bay,40.743809999999996,-73.98016,Entire home/apt,150,2,0,,1,0 +14921,5245797,Brooklyn,Kensington,40.64225,-73.97197,Entire home/apt,115,2,5,0.13,1,0 +14922,39476438,Manhattan,Harlem,40.816159999999996,-73.93885,Private room,74,2,3,0.08,2,363 +14923,63157598,Brooklyn,Williamsburg,40.70807,-73.94006999999999,Entire home/apt,175,4,6,0.16,1,157 +14924,14363695,Manhattan,East Village,40.72852,-73.98064000000001,Entire home/apt,275,5,1,0.03,1,0 +14925,42308954,Queens,Sunnyside,40.74156,-73.91866,Entire home/apt,110,3,6,0.16,1,0 +14926,40068602,Manhattan,East Village,40.72099,-73.97993000000001,Private room,69,1,1,0.02,1,0 +14927,26867230,Brooklyn,Downtown Brooklyn,40.697959999999995,-73.98268,Private room,50,1,3,0.07,2,0 +14928,12440590,Brooklyn,Williamsburg,40.71079,-73.95428000000001,Private room,85,6,12,0.3,1,0 +14929,23914324,Manhattan,Financial District,40.71111,-74.00936,Private room,110,2,0,,1,0 +14930,61391963,Manhattan,Chelsea,40.74392,-74.00113,Entire home/apt,142,30,7,0.25,91,316 +14931,45859087,Manhattan,Harlem,40.82403,-73.95379,Private room,75,20,18,0.67,2,232 +14932,43174657,Manhattan,East Village,40.73062,-73.98524,Entire home/apt,133,3,3,0.08,1,0 +14933,988788,Manhattan,Hell's Kitchen,40.76362,-73.99033,Private room,79,1,1,0.03,1,0 +14934,63256824,Bronx,Norwood,40.87925,-73.88254,Entire home/apt,80,1,2,0.05,1,0 +14935,30283594,Manhattan,Hell's Kitchen,40.76072,-73.99818,Entire home/apt,239,30,2,0.07,121,365 +14936,6544323,Manhattan,East Harlem,40.78967,-73.94740999999999,Entire home/apt,100,4,0,,1,0 +14937,10002513,Brooklyn,Park Slope,40.68125,-73.97974,Entire home/apt,159,3,3,0.08,1,0 +14938,63269523,Manhattan,East Village,40.72804,-73.98281,Entire home/apt,140,1,1,0.02,1,0 +14939,1633721,Manhattan,West Village,40.733540000000005,-74.00549000000001,Entire home/apt,250,2,23,0.58,1,0 +14940,47351539,Brooklyn,East Flatbush,40.65146,-73.93966,Entire home/apt,135,1,193,4.87,4,270 +14941,9361557,Brooklyn,Prospect-Lefferts Gardens,40.66275,-73.96122,Private room,65,10,94,2.4,2,0 +14942,50032395,Manhattan,Upper West Side,40.800290000000004,-73.96625999999999,Private room,75,1,1,0.03,2,188 +14943,63294576,Manhattan,Upper West Side,40.77248,-73.98108,Entire home/apt,195,1,3,0.08,1,0 +14944,3803638,Brooklyn,Bedford-Stuyvesant,40.69178,-73.95917,Entire home/apt,99,3,35,0.9,1,39 +14945,45859087,Manhattan,Harlem,40.82247,-73.95340999999999,Private room,70,30,25,0.65,2,187 +14946,30283594,Manhattan,Hell's Kitchen,40.76078,-73.99864000000001,Entire home/apt,199,30,0,,121,365 +14947,18221107,Manhattan,Inwood,40.86087,-73.92724,Private room,65,3,36,0.9,1,249 +14948,17782625,Brooklyn,Vinegar Hill,40.70211,-73.98418000000001,Entire home/apt,245,2,3,0.08,2,0 +14949,1414412,Manhattan,Upper East Side,40.77384,-73.95619,Entire home/apt,150,4,17,0.43,1,26 +14950,35211977,Brooklyn,Bushwick,40.70578,-73.92375,Private room,55,1,1,0.03,1,0 +14951,63407204,Manhattan,Flatiron District,40.73987,-73.98982,Entire home/apt,650,5,42,1.07,1,335 +14952,60617592,Queens,Astoria,40.76487,-73.91377,Private room,50,1,1,0.02,1,0 +14953,63291733,Brooklyn,Canarsie,40.636720000000004,-73.88814,Entire home/apt,81,2,43,1.18,1,309 +14954,39476438,Manhattan,Harlem,40.81487,-73.93937,Entire home/apt,92,5,4,0.11,2,0 +14955,20348541,Manhattan,West Village,40.73146,-74.00392,Private room,105,1,14,0.36,1,0 +14956,10750483,Manhattan,East Harlem,40.795559999999995,-73.9325,Private room,89,4,1,0.16,1,365 +14957,30733725,Brooklyn,Williamsburg,40.71283,-73.95785,Entire home/apt,348,2,1,0.03,1,0 +14958,3752523,Brooklyn,Crown Heights,40.66952,-73.94287,Entire home/apt,168,2,63,1.66,2,344 +14959,40883799,Brooklyn,Bushwick,40.70518,-73.92165,Private room,65,1,52,1.7,3,179 +14960,3937437,Manhattan,East Village,40.720929999999996,-73.97964,Entire home/apt,100,2,0,,1,0 +14961,63499716,Manhattan,Harlem,40.806779999999996,-73.94976,Entire home/apt,175,4,130,3.33,1,53 +14962,3577509,Brooklyn,Bedford-Stuyvesant,40.69175,-73.93504,Entire home/apt,100,4,113,2.87,2,287 +14963,63506844,Brooklyn,Flatbush,40.63397,-73.9654,Entire home/apt,119,3,121,3.38,1,280 +14964,4323335,Brooklyn,Bedford-Stuyvesant,40.686,-73.94629,Entire home/apt,105,4,22,0.67,1,11 +14965,2103550,Brooklyn,Crown Heights,40.67765,-73.95432,Entire home/apt,200,1,0,,1,0 +14966,4392739,Manhattan,SoHo,40.72671,-74.01035,Entire home/apt,290,2,69,1.73,1,99 +14967,35362734,Brooklyn,Bedford-Stuyvesant,40.67958,-73.92509,Private room,62,1,0,,1,0 +14968,50661711,Manhattan,Washington Heights,40.832879999999996,-73.94306,Private room,70,1,0,,1,0 +14969,174570,Brooklyn,Crown Heights,40.67807,-73.95913,Entire home/apt,65,4,1,0.03,1,0 +14970,63544192,Manhattan,Tribeca,40.71893,-74.00485,Private room,60,25,2,0.05,1,0 +14971,9143200,Manhattan,Upper West Side,40.79466,-73.97173000000001,Entire home/apt,160,3,2,0.05,1,0 +14972,63560790,Queens,Kew Gardens,40.70375,-73.8304,Shared room,45,1,17,0.72,2,365 +14973,62316222,Manhattan,SoHo,40.72064,-73.99956999999999,Entire home/apt,595,5,51,1.29,1,347 +14974,63623329,Brooklyn,Crown Heights,40.67832,-73.95128000000001,Private room,60,3,5,0.13,1,0 +14975,7640852,Brooklyn,Williamsburg,40.71178,-73.95779,Private room,95,2,0,,1,0 +14976,41099363,Brooklyn,Fort Greene,40.68762,-73.97516,Private room,150,4,2,0.18,3,193 +14977,35587586,Manhattan,Hell's Kitchen,40.76594,-73.9851,Entire home/apt,200,1,0,,1,0 +14978,39111035,Manhattan,Upper West Side,40.78079,-73.98826,Private room,160,2,2,0.06,1,0 +14979,3167887,Manhattan,West Village,40.73178,-74.00173000000001,Entire home/apt,300,5,88,2.32,1,121 +14980,4501003,Brooklyn,Flatbush,40.64117,-73.96038,Entire home/apt,99,1,3,0.08,1,0 +14981,12986134,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91516,Entire home/apt,150,3,0,,1,334 +14982,4386682,Queens,Ridgewood,40.7024,-73.9106,Private room,35,5,7,0.19,3,0 +14983,5251483,Brooklyn,Vinegar Hill,40.70328,-73.98314,Entire home/apt,170,4,2,0.05,1,0 +14984,17737517,Manhattan,East Harlem,40.80012,-73.94272,Private room,65,1,0,,1,0 +14985,3274929,Brooklyn,Flatbush,40.635490000000004,-73.95817,Shared room,38,3,27,0.95,1,84 +14986,31919152,Brooklyn,Williamsburg,40.70878,-73.94440999999999,Private room,60,7,0,,1,0 +14987,63702305,Manhattan,SoHo,40.72289,-73.9974,Entire home/apt,500,4,72,1.8,1,330 +14988,24253453,Brooklyn,Park Slope,40.67549,-73.98057,Private room,85,2,1,0.03,2,0 +14989,12446288,Brooklyn,Williamsburg,40.71541,-73.93748000000001,Entire home/apt,110,3,4,0.1,1,0 +14990,9427555,Manhattan,East Harlem,40.78825,-73.9487,Private room,60,8,6,0.16,1,0 +14991,27488921,Manhattan,Harlem,40.80403,-73.95427,Entire home/apt,148,6,44,1.12,1,280 +14992,63755360,Manhattan,East Village,40.72548,-73.9857,Entire home/apt,133,2,72,1.82,1,0 +14993,19586959,Manhattan,Hell's Kitchen,40.75519,-73.99331,Entire home/apt,160,1,0,,1,0 +14994,50976547,Manhattan,East Village,40.72175,-73.98088,Entire home/apt,250,3,1,0.03,1,0 +14995,37188098,Queens,Astoria,40.76088,-73.92233,Private room,95,1,13,0.33,2,183 +14996,13509844,Manhattan,East Harlem,40.79665,-73.94928,Private room,69,7,7,0.18,1,0 +14997,2705455,Queens,Long Island City,40.74284,-73.95755,Entire home/apt,180,6,1,0.03,1,0 +14998,63790712,Manhattan,Harlem,40.80477,-73.95454000000001,Private room,40,2,16,0.4,2,0 +14999,63800453,Brooklyn,Flatbush,40.63836,-73.95698,Private room,85,1,6,0.16,1,0 +15000,3630684,Brooklyn,Bushwick,40.70487,-73.92126999999999,Private room,65,3,11,0.37,1,0 +15001,32306916,Brooklyn,Crown Heights,40.67324,-73.95156999999999,Private room,55,1,4,0.1,1,0 +15002,1212041,Manhattan,East Village,40.729820000000004,-73.98823,Shared room,75,1,4,0.1,2,0 +15003,13209857,Manhattan,East Harlem,40.7887,-73.94736,Entire home/apt,125,3,11,0.28,1,0 +15004,45990565,Bronx,Morris Heights,40.8522,-73.91014,Private room,26,3,21,0.64,2,127 +15005,18994094,Brooklyn,Williamsburg,40.712140000000005,-73.95837,Entire home/apt,175,2,28,0.7,1,0 +15006,3752933,Brooklyn,Red Hook,40.678490000000004,-74.01178,Private room,85,2,66,4.58,1,59 +15007,7306184,Brooklyn,Clinton Hill,40.68517,-73.9666,Entire home/apt,179,5,0,,1,0 +15008,9028473,Brooklyn,Crown Heights,40.67265,-73.94674,Private room,75,1,0,,1,0 +15009,63914230,Brooklyn,Williamsburg,40.7128,-73.9605,Private room,76,5,1,0.03,1,0 +15010,29084038,Manhattan,Chelsea,40.73911,-74.00046999999999,Entire home/apt,225,30,87,2.17,1,280 +15011,63928471,Manhattan,Harlem,40.833420000000004,-73.94949,Private room,40,1,6,0.16,1,0 +15012,22089496,Manhattan,Upper East Side,40.760529999999996,-73.96181,Entire home/apt,110,2,22,0.55,1,0 +15013,61391963,Manhattan,Upper East Side,40.78328,-73.95695,Entire home/apt,117,30,8,0.25,91,311 +15014,63935825,Queens,Ditmars Steinway,40.77872,-73.91396,Entire home/apt,78,1,4,0.1,1,0 +15015,63940105,Manhattan,Hell's Kitchen,40.762679999999996,-73.99235,Entire home/apt,800,3,59,1.51,1,263 +15016,15817123,Brooklyn,Greenpoint,40.731640000000006,-73.95323,Entire home/apt,65,1,152,3.8,3,1 +15017,1410306,Manhattan,Upper West Side,40.785920000000004,-73.97447,Entire home/apt,105,1,181,4.61,1,175 +15018,4411040,Brooklyn,Bushwick,40.696690000000004,-73.92785,Private room,45,1,3,0.08,1,0 +15019,17638424,Queens,Elmhurst,40.74561,-73.87344,Private room,34,1,89,2.35,8,164 +15020,5388411,Manhattan,Harlem,40.82776,-73.94700999999999,Entire home/apt,90,3,0,,1,0 +15021,54043278,Brooklyn,Bedford-Stuyvesant,40.685829999999996,-73.95676999999999,Private room,65,3,0,,1,0 +15022,15789646,Queens,Sunnyside,40.74518,-73.91704,Entire home/apt,150,30,7,0.18,2,338 +15023,10461612,Manhattan,Hell's Kitchen,40.762570000000004,-73.98603,Entire home/apt,160,3,20,0.5,1,0 +15024,16098958,Manhattan,Murray Hill,40.74962,-73.97431,Entire home/apt,250,30,2,0.17,96,337 +15025,64027912,Manhattan,Upper East Side,40.76955,-73.95002,Entire home/apt,106,1,0,,1,0 +15026,25237492,Manhattan,Washington Heights,40.84216,-73.94100999999999,Entire home/apt,95,30,7,0.19,34,322 +15027,46889591,Manhattan,Upper East Side,40.76272,-73.96269000000001,Private room,69,1,4,0.1,1,0 +15028,27709477,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94384000000001,Entire home/apt,145,2,100,2.52,1,296 +15029,25810,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95089,Entire home/apt,75,5,7,0.18,1,0 +15030,59473349,Brooklyn,East New York,40.67729,-73.87996,Entire home/apt,70,5,37,1.48,1,263 +15031,9217610,Brooklyn,Greenpoint,40.7279,-73.94494,Entire home/apt,225,6,0,,2,0 +15032,28121352,Queens,Elmhurst,40.74503,-73.87671,Private room,43,2,27,0.68,1,0 +15033,35253342,Brooklyn,Fort Hamilton,40.62168,-74.03023,Entire home/apt,121,20,23,0.6,3,294 +15034,13318184,Brooklyn,Williamsburg,40.705529999999996,-73.94203,Private room,50,1,0,,4,0 +15035,1598283,Manhattan,East Village,40.73072,-73.99174000000001,Entire home/apt,198,3,31,0.8,1,57 +15036,116382,Brooklyn,Crown Heights,40.6703,-73.94209000000001,Private room,109,2,115,2.87,5,352 +15037,42047615,Manhattan,Chelsea,40.74069,-74.00069,Entire home/apt,199,30,1,0.03,2,292 +15038,64170911,Bronx,Riverdale,40.8883,-73.91665,Entire home/apt,150,2,79,1.99,1,267 +15039,64170751,Brooklyn,Crown Heights,40.667590000000004,-73.95187,Private room,49,3,5,0.13,1,0 +15040,30283594,Manhattan,Midtown,40.76528,-73.98175,Entire home/apt,239,30,0,,121,351 +15041,6132748,Brooklyn,Park Slope,40.68224,-73.97785,Entire home/apt,100,1,0,,1,0 +15042,30283594,Manhattan,Midtown,40.76554,-73.98289,Entire home/apt,239,30,0,,121,352 +15043,30283594,Manhattan,Midtown,40.765370000000004,-73.98331999999999,Entire home/apt,239,30,0,,121,352 +15044,2295610,Brooklyn,Williamsburg,40.712140000000005,-73.96866,Entire home/apt,170,3,21,0.53,1,0 +15045,30283594,Manhattan,Midtown,40.76573,-73.98295,Entire home/apt,239,30,1,0.05,121,352 +15046,43170685,Brooklyn,Williamsburg,40.71135,-73.94435,Private room,80,1,1,0.03,1,0 +15047,30283594,Manhattan,Midtown,40.76497,-73.98201,Entire home/apt,239,30,0,,121,351 +15048,30283594,Manhattan,Midtown,40.76526,-73.9817,Entire home/apt,239,30,0,,121,352 +15049,30283594,Manhattan,Hell's Kitchen,40.76685,-73.98363,Entire home/apt,239,30,0,,121,352 +15050,22099204,Manhattan,Upper West Side,40.80229,-73.96719,Entire home/apt,80,1,2,0.05,1,0 +15051,4106320,Brooklyn,Bedford-Stuyvesant,40.67909,-73.93222,Entire home/apt,140,2,33,0.87,1,145 +15052,21661360,Manhattan,Gramercy,40.73638,-73.98453,Entire home/apt,240,2,0,,1,0 +15053,13340829,Brooklyn,Crown Heights,40.67543,-73.96311999999999,Private room,60,5,1,0.03,1,0 +15054,44596503,Manhattan,Upper West Side,40.784659999999995,-73.97276,Entire home/apt,200,2,128,3.31,1,231 +15055,18978289,Manhattan,Two Bridges,40.71127,-73.99838000000001,Entire home/apt,159,2,3,0.11,1,0 +15056,15817123,Brooklyn,Greenpoint,40.73203,-73.95263,Entire home/apt,65,1,56,1.58,3,0 +15057,5707158,Manhattan,Kips Bay,40.74418,-73.97565,Private room,70,3,2,0.05,2,0 +15058,30283594,Manhattan,Midtown,40.76647,-73.9829,Entire home/apt,369,30,0,,121,345 +15059,36076005,Manhattan,Upper West Side,40.77961,-73.98441,Private room,120,3,9,0.23,1,365 +15060,30283594,Manhattan,Midtown,40.76484,-73.98326,Entire home/apt,239,30,0,,121,348 +15061,14731964,Manhattan,East Village,40.73273,-73.98666999999999,Private room,125,1,36,1.4,1,81 +15062,59489089,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95773,Entire home/apt,200,3,6,0.15,1,0 +15063,63403077,Manhattan,East Harlem,40.79741,-73.93884,Private room,50,29,40,1.14,2,0 +15064,87266,Manhattan,Harlem,40.8245,-73.94264,Entire home/apt,120,150,10,0.46,1,331 +15065,26806527,Manhattan,Gramercy,40.734770000000005,-73.98069,Shared room,100,1,0,,1,0 +15066,1534297,Brooklyn,Williamsburg,40.70843,-73.96924,Private room,80,1,2,0.05,1,0 +15067,39856008,Manhattan,Lower East Side,40.71869,-73.99141,Entire home/apt,140,1,1,0.03,1,0 +15068,50292584,Brooklyn,Sunset Park,40.6423,-74.01275,Entire home/apt,105,2,66,1.68,2,360 +15069,51159504,Brooklyn,Crown Heights,40.66676,-73.92957,Private room,49,3,3,0.08,1,365 +15070,11481,Brooklyn,Carroll Gardens,40.6789,-74.00117,Entire home/apt,180,4,5,0.13,3,333 +15071,14476679,Manhattan,East Village,40.72659,-73.97848,Private room,70,1,3,0.08,1,0 +15072,42435983,Manhattan,East Village,40.72296,-73.98321999999999,Entire home/apt,450,1,45,1.17,1,287 +15073,62345719,Brooklyn,Crown Heights,40.66734,-73.94232,Private room,44,2,5,0.38,1,0 +15074,8303104,Brooklyn,South Slope,40.668009999999995,-73.98773,Private room,89,1,102,2.56,1,269 +15075,35027358,Brooklyn,Carroll Gardens,40.68268,-73.99687,Entire home/apt,172,2,90,2.31,1,87 +15076,438593,Manhattan,Chelsea,40.74391,-73.99582,Entire home/apt,350,1,2,0.05,2,0 +15077,64341665,Manhattan,Harlem,40.81942,-73.94264,Private room,68,1,49,1.23,2,365 +15078,63403077,Manhattan,East Harlem,40.797959999999996,-73.93921,Private room,52,32,57,1.46,2,39 +15079,64355945,Queens,Rego Park,40.72526,-73.85973,Private room,70,2,32,0.81,1,89 +15080,52474491,Brooklyn,Sea Gate,40.57804,-74.01024,Entire home/apt,223,1,1,0.03,3,0 +15081,52474491,Brooklyn,Sea Gate,40.57857,-74.01012,Private room,71,1,0,,3,0 +15082,52474491,Brooklyn,Sea Gate,40.577740000000006,-74.01021999999999,Private room,97,1,2,0.05,3,0 +15083,20353296,Manhattan,East Harlem,40.79663,-73.94893,Private room,75,1,5,0.13,1,0 +15084,7695223,Manhattan,Hell's Kitchen,40.75857,-73.98942,Private room,65,2,6,0.16,1,0 +15085,64411228,Brooklyn,Williamsburg,40.70922,-73.95232,Private room,64,1,25,0.63,1,0 +15086,7913863,Brooklyn,Williamsburg,40.70766,-73.95215999999999,Private room,59,2,138,3.63,1,268 +15087,11028022,Brooklyn,Crown Heights,40.66633,-73.93507,Private room,100,3,0,,1,0 +15088,64444742,Brooklyn,Bushwick,40.69305,-73.90825,Private room,60,2,21,0.53,1,364 +15089,34861728,Queens,Kew Gardens,40.709109999999995,-73.8296,Private room,73,9,2,0.17,4,276 +15090,34861728,Queens,Kew Gardens,40.707640000000005,-73.83116,Entire home/apt,219,9,2,0.22,4,273 +15091,64454893,Manhattan,Greenwich Village,40.73426,-73.99476,Entire home/apt,999,3,11,0.28,1,164 +15092,64528384,Manhattan,Chelsea,40.738440000000004,-73.99262,Private room,150,60,0,,1,0 +15093,17638424,Queens,Elmhurst,40.74485,-73.87552,Private room,52,1,108,2.71,8,174 +15094,64534798,Brooklyn,Crown Heights,40.66505,-73.95213000000001,Entire home/apt,90,2,2,0.05,1,0 +15095,6255163,Manhattan,Upper West Side,40.799820000000004,-73.96191999999999,Entire home/apt,150,2,16,0.42,1,220 +15096,36306552,Manhattan,Upper West Side,40.77713,-73.97758,Entire home/apt,325,1,43,1.12,1,223 +15097,44332076,Manhattan,Washington Heights,40.84915,-73.93316999999999,Entire home/apt,170,5,24,1.39,1,121 +15098,8896489,Queens,Maspeth,40.72153,-73.88753,Entire home/apt,79,3,64,1.6,1,311 +15099,8456000,Brooklyn,Clinton Hill,40.69619,-73.96944,Private room,175,1,17,1.51,2,179 +15100,45103252,Manhattan,Upper West Side,40.788070000000005,-73.97406,Private room,75,1,0,,1,0 +15101,39863896,Brooklyn,Crown Heights,40.67292,-73.94033,Entire home/apt,120,3,70,1.79,1,208 +15102,64561100,Manhattan,Harlem,40.815740000000005,-73.94870999999999,Private room,72,1,98,2.5,1,204 +15103,64568425,Brooklyn,Prospect-Lefferts Gardens,40.660990000000005,-73.96083,Entire home/apt,80,1,0,,1,0 +15104,64576222,Manhattan,Upper East Side,40.78115,-73.9466,Entire home/apt,175,4,0,,1,0 +15105,64578817,Manhattan,Harlem,40.8097,-73.94256,Entire home/apt,125,5,15,0.38,1,0 +15106,5017724,Manhattan,Theater District,40.75827,-73.98825,Private room,200,5,4,0.1,1,365 +15107,64632152,Manhattan,East Village,40.72399,-73.99109,Entire home/apt,1000,4,19,0.51,1,349 +15108,13406868,Brooklyn,Bedford-Stuyvesant,40.68464,-73.95002,Private room,45,4,1,0.03,1,0 +15109,3555480,Manhattan,Chelsea,40.74507,-73.99452,Entire home/apt,175,7,6,0.16,1,0 +15110,20161989,Brooklyn,Midwood,40.62462,-73.95508000000001,Private room,89,2,5,0.13,1,365 +15111,64678583,Bronx,Mott Haven,40.8098,-73.92149,Private room,500,10,0,,1,358 +15112,41280277,Manhattan,Washington Heights,40.85496,-73.93406,Entire home/apt,84,2,0,,1,0 +15113,64676041,Manhattan,East Harlem,40.78784,-73.94998000000001,Entire home/apt,149,5,88,2.23,1,326 +15114,2596681,Brooklyn,Bedford-Stuyvesant,40.69764,-73.94929,Entire home/apt,110,3,10,0.26,1,0 +15115,48764969,Brooklyn,Bushwick,40.6826,-73.90411,Private room,40,6,28,0.7,2,298 +15116,37820765,Brooklyn,Columbia St,40.68685,-74.00112,Entire home/apt,98,2,14,0.36,1,0 +15117,5749328,Manhattan,Upper West Side,40.7771,-73.97729,Entire home/apt,160,3,36,0.93,1,318 +15118,39528519,Manhattan,Lower East Side,40.71171,-73.98871,Shared room,32,14,0,,28,341 +15119,35329442,Manhattan,Upper West Side,40.800309999999996,-73.95846999999999,Entire home/apt,380,2,6,0.16,1,0 +15120,31230100,Brooklyn,Crown Heights,40.672979999999995,-73.95561,Private room,35,7,1,0.03,3,157 +15121,2134560,Brooklyn,Clinton Hill,40.69011,-73.96656,Private room,100,2,0,,1,0 +15122,30283594,Manhattan,Midtown,40.76571,-73.98312,Entire home/apt,239,30,0,,121,352 +15123,47954479,Brooklyn,Bedford-Stuyvesant,40.69363,-73.95084,Private room,51,1,0,,1,0 +15124,7226962,Manhattan,East Village,40.72716,-73.98264,Entire home/apt,200,4,3,0.08,1,0 +15125,30283594,Manhattan,Hell's Kitchen,40.766259999999996,-73.98342,Entire home/apt,129,30,0,,121,133 +15126,30283594,Manhattan,Midtown,40.76536,-73.98199,Entire home/apt,239,30,0,,121,351 +15127,64765550,Manhattan,Upper East Side,40.77924,-73.94924,Entire home/apt,140,1,4,0.1,1,0 +15128,30283594,Manhattan,Hell's Kitchen,40.766420000000004,-73.98326,Entire home/apt,239,30,0,,121,364 +15129,51924404,Manhattan,East Village,40.729659999999996,-73.98476,Private room,56,1,2,0.05,1,0 +15130,30283594,Manhattan,Midtown,40.76567,-73.98308,Entire home/apt,239,30,0,,121,352 +15131,30283594,Manhattan,Hell's Kitchen,40.766659999999995,-73.98306,Entire home/apt,239,30,1,0.06,121,352 +15132,30283594,Manhattan,Midtown,40.76511,-73.98345,Entire home/apt,239,30,0,,121,352 +15133,4462547,Brooklyn,Prospect Heights,40.678340000000006,-73.96685,Private room,37,180,0,,1,0 +15134,5095576,Brooklyn,Bushwick,40.70045,-73.91673,Private room,91,2,30,0.86,1,0 +15135,43483337,Manhattan,Hell's Kitchen,40.75547,-73.99501,Entire home/apt,170,5,0,,1,0 +15136,54378184,Brooklyn,Clinton Hill,40.69106,-73.96529,Entire home/apt,169,12,13,0.34,3,365 +15137,64791940,Manhattan,Upper East Side,40.77433,-73.94854000000001,Private room,35,11,9,0.24,1,0 +15138,2875590,Brooklyn,Crown Heights,40.678329999999995,-73.9629,Entire home/apt,180,3,2,0.05,1,0 +15139,1712843,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95795,Private room,55,4,4,0.11,1,0 +15140,30283594,Manhattan,Midtown,40.76545,-73.98156,Entire home/apt,239,30,1,0.23,121,351 +15141,30283594,Manhattan,Hell's Kitchen,40.76678,-73.98336,Entire home/apt,239,30,0,,121,352 +15142,438593,Manhattan,Chelsea,40.74491,-73.99535999999999,Private room,175,1,1,0.03,2,0 +15143,268961,Brooklyn,Bedford-Stuyvesant,40.6805,-73.94612,Entire home/apt,67,3,88,2.22,1,0 +15144,30283594,Manhattan,Hell's Kitchen,40.7663,-73.98359,Entire home/apt,239,30,0,,121,165 +15145,18370504,Manhattan,Morningside Heights,40.8131,-73.96074,Private room,65,2,5,0.13,1,0 +15146,61391963,Manhattan,Upper West Side,40.78342,-73.97312,Entire home/apt,125,30,9,0.25,91,127 +15147,1909320,Brooklyn,Williamsburg,40.71697,-73.96204,Entire home/apt,200,1,16,0.41,3,239 +15148,34758340,Brooklyn,Sheepshead Bay,40.60655,-73.952,Entire home/apt,81,5,9,0.24,1,1 +15149,64825610,Manhattan,Hell's Kitchen,40.761559999999996,-73.99127,Entire home/apt,325,3,99,2.56,2,246 +15150,62031986,Manhattan,Midtown,40.75237,-73.98769,Entire home/apt,333,1,246,6.38,1,323 +15151,19965375,Manhattan,Chinatown,40.7137,-73.99638,Private room,90,1,0,,1,0 +15152,7403959,Manhattan,Hell's Kitchen,40.75915,-73.99932,Entire home/apt,245,2,24,0.61,1,48 +15153,64846981,Brooklyn,Bushwick,40.69993,-73.92504,Private room,90,2,6,0.15,1,358 +15154,64052858,Manhattan,Midtown,40.7442,-73.98748,Entire home/apt,999,2,54,1.49,1,58 +15155,42905408,Queens,Astoria,40.76856,-73.92591,Entire home/apt,165,1,0,,1,0 +15156,16098958,Manhattan,Upper West Side,40.79565,-73.96584,Entire home/apt,400,30,1,0.03,96,311 +15157,16098958,Manhattan,Financial District,40.705,-74.00681999999999,Entire home/apt,160,30,2,0.07,96,336 +15158,38967549,Brooklyn,Bedford-Stuyvesant,40.68592,-73.9398,Entire home/apt,75,3,3,0.08,1,0 +15159,64916208,Manhattan,Chelsea,40.739740000000005,-74.00069,Entire home/apt,206,1,55,1.41,1,0 +15160,5075103,Manhattan,Harlem,40.82119,-73.95555999999999,Private room,70,1,16,0.4,2,0 +15161,64921358,Brooklyn,Williamsburg,40.7139,-73.95615,Private room,65,1,1,0.03,1,0 +15162,64930464,Brooklyn,Bedford-Stuyvesant,40.68823,-73.93366999999999,Entire home/apt,126,2,181,4.73,1,182 +15163,64932133,Brooklyn,Crown Heights,40.67458,-73.94214000000001,Private room,40,10,0,,1,0 +15164,30283594,Manhattan,Midtown,40.76506,-73.98236,Entire home/apt,239,30,0,,121,352 +15165,3160780,Brooklyn,Bedford-Stuyvesant,40.68158,-73.95798,Entire home/apt,129,31,6,0.15,1,0 +15166,54921733,Brooklyn,Flatbush,40.643190000000004,-73.96729,Entire home/apt,92,1,5,0.14,3,0 +15167,64948443,Manhattan,Harlem,40.80726,-73.95178,Private room,82,5,106,2.7,1,39 +15168,30283594,Manhattan,Midtown,40.76657,-73.98201,Entire home/apt,369,30,1,0.12,121,345 +15169,30283594,Manhattan,Midtown,40.765370000000004,-73.98298,Entire home/apt,369,30,0,,121,345 +15170,26802681,Manhattan,Midtown,40.74749,-73.98873,Entire home/apt,99,1,172,4.33,1,213 +15171,64967307,Brooklyn,Williamsburg,40.71334,-73.96056,Private room,78,1,0,,1,0 +15172,64963967,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92687,Private room,44,1,0,,1,0 +15173,3554055,Manhattan,Upper East Side,40.7672,-73.9695,Entire home/apt,160,3,0,,1,0 +15174,5300585,Manhattan,Chelsea,40.73949,-73.99801,Entire home/apt,220,4,81,2.11,1,217 +15175,64976141,Bronx,Mott Haven,40.80903,-73.92143,Entire home/apt,125,3,142,3.59,1,185 +15176,17770287,Manhattan,Midtown,40.749390000000005,-73.98292,Entire home/apt,99,30,9,0.24,14,227 +15177,47864677,Manhattan,Upper East Side,40.77117,-73.95851,Entire home/apt,75,7,13,0.34,1,0 +15178,17845933,Manhattan,Upper West Side,40.7889,-73.9729,Entire home/apt,300,5,3,0.08,1,9 +15179,64674589,Manhattan,Upper West Side,40.78216,-73.9835,Entire home/apt,140,1,8,0.2,1,7 +15180,53282710,Manhattan,Upper West Side,40.79546,-73.96452,Private room,98,3,2,0.05,1,0 +15181,12859795,Manhattan,Inwood,40.86399,-73.92321,Private room,99,3,150,3.85,1,320 +15182,16098958,Manhattan,Financial District,40.7035,-74.00713,Entire home/apt,178,30,2,0.06,96,332 +15183,43740859,Queens,Astoria,40.76703,-73.9166,Private room,59,1,0,,1,0 +15184,4128829,Brooklyn,Bushwick,40.69055,-73.92071,Entire home/apt,75,1,48,1.22,2,36 +15185,65096495,Queens,Belle Harbor,40.579409999999996,-73.84844,Private room,225,1,35,0.92,1,364 +15186,11338827,Manhattan,Harlem,40.826,-73.94314,Private room,60,2,5,0.13,1,0 +15187,3206521,Manhattan,West Village,40.73552,-74.00615,Entire home/apt,268,1,3,0.08,2,0 +15188,34736562,Brooklyn,Carroll Gardens,40.68124,-73.99601,Entire home/apt,300,7,0,,1,0 +15189,10584659,Manhattan,Gramercy,40.73375,-73.98704000000001,Entire home/apt,177,3,12,0.3,1,0 +15190,13750728,Bronx,Longwood,40.81928,-73.90933000000001,Private room,60,2,47,1.22,4,249 +15191,49045679,Manhattan,Lower East Side,40.712509999999995,-73.9889,Private room,60,3,8,0.21,1,0 +15192,13750728,Bronx,Longwood,40.81725,-73.90929,Private room,55,2,31,0.81,4,280 +15193,13750728,Bronx,Longwood,40.819109999999995,-73.90939,Private room,60,2,77,1.96,4,171 +15194,2613671,Brooklyn,Crown Heights,40.67593,-73.94291,Entire home/apt,135,1,38,2.49,1,359 +15195,15025923,Brooklyn,Fort Hamilton,40.61645,-74.03108,Private room,43,23,0,,1,0 +15196,65143341,Manhattan,Midtown,40.74771,-73.98727,Entire home/apt,139,1,186,4.68,1,230 +15197,2961779,Manhattan,Hell's Kitchen,40.76735,-73.98578,Entire home/apt,100,2,6,0.16,1,0 +15198,2589215,Brooklyn,Flatbush,40.65206,-73.96149,Private room,100,4,5,0.14,1,7 +15199,22117154,Queens,Ridgewood,40.70009,-73.90505,Private room,40,1,48,1.24,1,1 +15200,5075103,Manhattan,Harlem,40.82127,-73.95669000000001,Private room,55,1,1,0.03,2,0 +15201,5120853,Manhattan,Financial District,40.70433,-74.00782,Entire home/apt,175,2,2,0.05,1,0 +15202,23913300,Brooklyn,Williamsburg,40.71265,-73.96574,Entire home/apt,300,2,33,0.86,2,76 +15203,53930780,Manhattan,Harlem,40.80422,-73.95495,Private room,45,1,1,0.03,1,0 +15204,9558116,Brooklyn,Clinton Hill,40.68099,-73.96343,Entire home/apt,144,2,49,1.28,1,69 +15205,65258815,Brooklyn,Crown Heights,40.67409,-73.92607,Private room,60,2,129,3.32,2,39 +15206,167796,Manhattan,East Harlem,40.80237,-73.9437,Private room,250,1,0,,1,365 +15207,3604124,Brooklyn,Crown Heights,40.67564,-73.95449,Private room,45,4,4,0.18,1,0 +15208,34507633,Manhattan,East Village,40.72772,-73.97978,Private room,80,1,1,0.03,1,0 +15209,23772724,Manhattan,Upper West Side,40.79226,-73.97299,Entire home/apt,136,30,0,,15,317 +15210,18261318,Manhattan,East Village,40.72592,-73.99025999999999,Entire home/apt,149,2,16,0.43,1,0 +15211,4350664,Manhattan,East Harlem,40.79636,-73.94341999999999,Private room,89,5,62,1.82,1,271 +15212,50200840,Manhattan,East Village,40.72827,-73.9863,Private room,110,3,36,0.91,1,292 +15213,51434373,Manhattan,Chelsea,40.739709999999995,-73.99829,Private room,179,3,69,1.8,1,104 +15214,65359432,Queens,Astoria,40.764520000000005,-73.92804,Shared room,500,2,15,0.39,2,365 +15215,6520757,Brooklyn,Bedford-Stuyvesant,40.69574,-73.9515,Entire home/apt,150,4,11,0.29,1,0 +15216,65361160,Queens,Ridgewood,40.707190000000004,-73.91414,Entire home/apt,175,6,29,0.83,1,55 +15217,7039396,Brooklyn,Cypress Hills,40.68202,-73.88943,Entire home/apt,79,1,130,3.48,2,258 +15218,11218119,Brooklyn,Clinton Hill,40.69315,-73.96412,Entire home/apt,117,3,1,0.03,1,0 +15219,64652921,Brooklyn,Williamsburg,40.71707,-73.95859,Entire home/apt,91,5,0,,1,0 +15220,57070933,Manhattan,Upper West Side,40.79902,-73.96043,Private room,65,2,3,0.08,2,0 +15221,56098700,Manhattan,Midtown,40.76593,-73.9812,Entire home/apt,500,3,0,,1,0 +15222,16677326,Manhattan,Chelsea,40.74971,-73.99533000000001,Private room,85,1,210,5.34,12,321 +15223,50760546,Manhattan,Midtown,40.74545,-73.98113000000001,Entire home/apt,150,29,1,0.14,31,143 +15224,59928816,Queens,Ridgewood,40.707240000000006,-73.91228000000001,Private room,80,2,177,4.48,2,245 +15225,65402364,Manhattan,Upper West Side,40.78942,-73.96768,Entire home/apt,200,5,0,,1,0 +15226,22887864,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91816999999999,Entire home/apt,325,2,76,1.93,1,160 +15227,28895303,Manhattan,Upper East Side,40.7674,-73.95559,Private room,95,1,10,0.25,1,0 +15228,65415391,Manhattan,East Village,40.73185,-73.98431,Private room,100,1,0,,1,0 +15229,12446229,Manhattan,Upper West Side,40.78864,-73.97452,Shared room,85,2,47,1.2,1,76 +15230,794042,Brooklyn,Clinton Hill,40.68459,-73.96499,Entire home/apt,115,5,8,0.21,1,0 +15231,808189,Manhattan,Two Bridges,40.712790000000005,-73.99445,Entire home/apt,111,1,41,1.17,1,4 +15232,65476654,Manhattan,Upper West Side,40.7823,-73.98080999999999,Private room,84,1,27,0.69,1,0 +15233,36959636,Brooklyn,Greenpoint,40.72099,-73.94566,Private room,75,3,0,,1,0 +15234,19552418,Manhattan,Harlem,40.80807,-73.94868000000001,Private room,95,12,4,0.1,1,0 +15235,264111,Brooklyn,Crown Heights,40.66714,-73.95819,Entire home/apt,110,2,6,0.15,1,0 +15236,14208923,Brooklyn,Greenpoint,40.72599,-73.94434,Private room,50,4,1,0.03,1,0 +15237,6555513,Brooklyn,Brooklyn Heights,40.69619,-73.99296,Private room,115,1,0,,2,0 +15238,6997786,Manhattan,Chelsea,40.74369,-73.99571,Entire home/apt,225,2,5,0.14,1,0 +15239,517866,Brooklyn,Bushwick,40.69021,-73.91019,Private room,80,3,0,,1,83 +15240,14131713,Brooklyn,Bedford-Stuyvesant,40.6848,-73.93471,Private room,110,1,2,0.05,2,342 +15241,66127,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95604,Private room,49,7,13,0.36,1,0 +15242,65527002,Manhattan,Upper West Side,40.7961,-73.96300000000001,Private room,90,1,60,2.91,1,188 +15243,65482154,Queens,Arverne,40.587340000000005,-73.79971,Entire home/apt,299,3,4,0.31,1,318 +15244,57070933,Manhattan,Upper West Side,40.79981,-73.96096999999999,Private room,60,1,5,0.14,2,0 +15245,16098958,Manhattan,Financial District,40.70538,-74.00664,Entire home/apt,175,30,3,0.08,96,311 +15246,3104581,Manhattan,East Harlem,40.790729999999996,-73.94669,Entire home/apt,115,2,18,0.48,1,3 +15247,5744488,Brooklyn,Bedford-Stuyvesant,40.694379999999995,-73.94726,Private room,45,4,0,,1,0 +15248,59979344,Brooklyn,Bedford-Stuyvesant,40.69188,-73.94742,Private room,57,1,0,,1,0 +15249,9314442,Manhattan,Chinatown,40.71532,-73.99343,Entire home/apt,120,3,2,0.05,1,0 +15250,6555513,Brooklyn,Brooklyn Heights,40.69453,-73.99423,Entire home/apt,409,1,1,0.03,2,0 +15251,65625445,Queens,Rosedale,40.67112,-73.73529,Entire home/apt,350,40,15,0.39,1,365 +15252,19866189,Queens,Arverne,40.58859,-73.7938,Private room,95,1,31,0.79,5,361 +15253,5897784,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92673,Private room,49,1,1,0.03,1,0 +15254,65639106,Manhattan,East Harlem,40.78821,-73.94927,Entire home/apt,155,1,2,0.05,1,0 +15255,65667120,Brooklyn,Bedford-Stuyvesant,40.68264,-73.94238,Entire home/apt,265,4,123,3.25,1,285 +15256,65670239,Brooklyn,East Flatbush,40.64062,-73.94733000000001,Entire home/apt,215,2,44,1.28,1,279 +15257,59928816,Queens,Ridgewood,40.70707,-73.91384000000001,Private room,120,2,162,4.12,2,268 +15258,12798614,Brooklyn,Bedford-Stuyvesant,40.68979,-73.94299000000001,Private room,54,2,1,0.03,3,319 +15259,12798614,Brooklyn,Bedford-Stuyvesant,40.6886,-73.94153,Private room,79,2,0,,3,319 +15260,65690091,Manhattan,Upper East Side,40.781729999999996,-73.94621,Private room,185,1,0,,1,0 +15261,65217454,Manhattan,Washington Heights,40.85264,-73.92976,Entire home/apt,60,5,16,0.41,1,4 +15262,9040879,Queens,Arverne,40.59491,-73.78851,Entire home/apt,750,1,14,0.36,2,352 +15263,23821373,Manhattan,Upper East Side,40.76676,-73.95753,Entire home/apt,160,1,0,,1,0 +15264,9545279,Manhattan,Greenwich Village,40.72837,-73.99951999999999,Entire home/apt,210,1,58,1.49,1,2 +15265,2018172,Brooklyn,Williamsburg,40.70751,-73.95441,Private room,80,1,2,0.05,1,0 +15266,11157618,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95969000000001,Entire home/apt,85,5,93,2.38,1,0 +15267,65760387,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92142,Entire home/apt,99,2,43,1.16,1,0 +15268,65757870,Manhattan,East Village,40.72637,-73.97681999999999,Entire home/apt,200,2,0,,1,0 +15269,62316080,Brooklyn,Williamsburg,40.71394,-73.94995,Private room,84,1,181,4.59,1,282 +15270,38969372,Brooklyn,Kensington,40.64528,-73.97621,Entire home/apt,105,4,7,0.18,1,20 +15271,65776450,Brooklyn,Williamsburg,40.70952,-73.95567,Private room,150,2,0,,1,0 +15272,54129736,Queens,Rockaway Beach,40.58341,-73.8165,Private room,88,2,32,0.84,1,0 +15273,65786525,Manhattan,Upper East Side,40.776309999999995,-73.9556,Private room,65,1,0,,1,0 +15274,27953420,Brooklyn,Bedford-Stuyvesant,40.68696,-73.95094,Entire home/apt,110,1,0,,1,0 +15275,5138621,Manhattan,Upper East Side,40.77619,-73.95106,Entire home/apt,140,2,1,0.03,1,0 +15276,65802264,Brooklyn,Crown Heights,40.66877,-73.93318000000001,Private room,50,3,14,0.35,1,0 +15277,5679552,Brooklyn,Williamsburg,40.7193,-73.95730999999999,Entire home/apt,175,2,2,0.05,1,0 +15278,65806798,Staten Island,Tottenville,40.50708,-74.24285,Private room,100,2,0,,1,365 +15279,30529247,Brooklyn,Fort Greene,40.69706,-73.97421999999999,Private room,50,4,15,0.38,1,0 +15280,65809485,Queens,Flushing,40.749790000000004,-73.82911,Private room,60,5,66,1.69,12,141 +15281,18287406,Brooklyn,Bushwick,40.703070000000004,-73.91765,Private room,51,3,0,,1,0 +15282,27379452,Brooklyn,Williamsburg,40.706109999999995,-73.93966,Private room,55,5,0,,1,0 +15283,44376809,Brooklyn,Bushwick,40.70265,-73.91701,Private room,85,1,0,,1,0 +15284,65598016,Brooklyn,Crown Heights,40.66946,-73.95306,Private room,60,2,136,3.45,1,346 +15285,13089400,Manhattan,Upper West Side,40.771159999999995,-73.98796,Entire home/apt,143,2,32,0.81,1,0 +15286,65832104,Manhattan,Lower East Side,40.71877,-73.98913,Entire home/apt,85,5,4,0.11,1,282 +15287,24637162,Queens,Sunnyside,40.745940000000004,-73.91727,Entire home/apt,110,2,24,1.52,1,128 +15288,30283594,Manhattan,Midtown,40.76686,-73.98198000000001,Entire home/apt,449,30,0,,121,345 +15289,18362341,Manhattan,Harlem,40.830859999999994,-73.94478000000001,Private room,35,1,0,,1,0 +15290,30283594,Manhattan,Midtown,40.765390000000004,-73.98348,Entire home/apt,369,30,1,0.04,121,345 +15291,2863689,Manhattan,Morningside Heights,40.80514,-73.96349000000001,Private room,70,8,0,,1,0 +15292,63289810,Brooklyn,Gowanus,40.68081,-73.98945,Entire home/apt,295,2,70,1.8,1,292 +15293,65364483,Manhattan,Upper West Side,40.7992,-73.96791999999999,Entire home/apt,110,120,2,0.05,2,34 +15294,14906645,Manhattan,Upper East Side,40.77685,-73.95727,Private room,65,1,2,0.05,1,0 +15295,61391963,Manhattan,Hell's Kitchen,40.763220000000004,-73.99005,Entire home/apt,109,30,8,0.28,91,159 +15296,24291213,Brooklyn,Sunset Park,40.63877,-74.01993,Private room,35,1,2,0.05,2,0 +15297,20043119,Brooklyn,Clinton Hill,40.6881,-73.96281,Private room,50,1,3,0.1,1,0 +15298,17624300,Brooklyn,Williamsburg,40.70244,-73.94421,Private room,44,1,8,0.23,1,357 +15299,4534893,Manhattan,East Village,40.72705,-73.98787,Entire home/apt,275,2,70,1.84,4,307 +15300,4534893,Manhattan,East Village,40.72553,-73.98831,Private room,110,2,46,1.17,4,307 +15301,9280078,Brooklyn,Williamsburg,40.70845,-73.96741999999999,Entire home/apt,120,1,1,0.03,1,0 +15302,49121324,Brooklyn,Clinton Hill,40.68645,-73.96691,Private room,50,7,4,0.11,1,0 +15303,65968828,Brooklyn,Crown Heights,40.6733,-73.91235,Entire home/apt,87,3,87,2.25,1,260 +15304,51547958,Manhattan,Washington Heights,40.83498,-73.94801,Private room,78,1,0,,1,0 +15305,12608878,Manhattan,Washington Heights,40.8528,-73.94114,Private room,49,2,0,,1,0 +15306,65979198,Manhattan,Nolita,40.72232,-73.99433,Private room,109,7,3,0.09,1,0 +15307,43380926,Manhattan,East Harlem,40.78771,-73.94197,Private room,65,1,1,0.03,1,0 +15308,22087408,Manhattan,Lower East Side,40.71909,-73.98473,Private room,150,1,41,1.07,3,274 +15309,5004109,Manhattan,Murray Hill,40.750009999999996,-73.97739,Entire home/apt,225,1,45,1.16,1,255 +15310,12759735,Manhattan,Upper West Side,40.784,-73.97148,Entire home/apt,100,1,1,0.03,1,0 +15311,12879538,Manhattan,Harlem,40.82033,-73.94358000000001,Entire home/apt,125,1,103,2.67,2,339 +15312,4899404,Manhattan,East Village,40.72838,-73.98539,Entire home/apt,115,4,46,1.19,1,0 +15313,7119612,Brooklyn,Bushwick,40.69897,-73.92705,Private room,62,1,1,0.03,1,0 +15314,66089191,Brooklyn,Bushwick,40.69177,-73.92509,Private room,50,7,2,0.06,1,0 +15315,2079709,Manhattan,East Village,40.72795,-73.98567,Entire home/apt,200,2,39,1.15,1,0 +15316,9040879,Queens,Arverne,40.59413,-73.78990999999999,Entire home/apt,225,1,6,0.56,2,352 +15317,61391963,Manhattan,Kips Bay,40.74205,-73.97828,Entire home/apt,159,30,5,0.18,91,281 +15318,49580011,Manhattan,Theater District,40.762370000000004,-73.98285,Entire home/apt,150,28,4,0.11,1,331 +15319,44468180,Brooklyn,Bushwick,40.694140000000004,-73.92877,Private room,29,2,4,0.11,1,0 +15320,2261995,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94391999999999,Entire home/apt,150,1,0,,3,359 +15321,5606004,Brooklyn,Bushwick,40.70062,-73.92785,Private room,80,2,9,0.23,1,0 +15322,60756664,Brooklyn,Bay Ridge,40.63456,-74.02483000000001,Private room,35,1,33,0.84,1,337 +15323,4285208,Manhattan,Upper East Side,40.77346,-73.9559,Entire home/apt,250,7,8,0.22,1,294 +15324,66173032,Manhattan,Upper East Side,40.774409999999996,-73.95815,Entire home/apt,160,1,0,,1,0 +15325,2672883,Manhattan,Lower East Side,40.72231,-73.99069,Entire home/apt,175,30,12,0.32,1,0 +15326,36012265,Brooklyn,Williamsburg,40.70528,-73.92938000000001,Entire home/apt,150,2,11,0.28,7,330 +15327,66182162,Queens,Long Island City,40.75888,-73.9312,Entire home/apt,165,2,3,0.08,1,0 +15328,12603183,Brooklyn,Greenpoint,40.73675,-73.95382,Entire home/apt,150,3,0,,1,0 +15329,36012265,Brooklyn,Williamsburg,40.70454,-73.9299,Entire home/apt,159,2,13,0.34,7,317 +15330,4964784,Brooklyn,Sunset Park,40.65031,-74.00176,Entire home/apt,140,2,108,2.89,1,278 +15331,8182126,Brooklyn,Williamsburg,40.717909999999996,-73.94646,Entire home/apt,159,3,2,0.05,2,0 +15332,40288829,Manhattan,Washington Heights,40.83294,-73.94167,Private room,77,7,17,0.46,1,311 +15333,24918898,Brooklyn,Williamsburg,40.70755,-73.95116999999999,Private room,49,3,3,0.08,2,0 +15334,66215731,Brooklyn,Gowanus,40.67692,-73.98339,Private room,55,1,56,1.46,2,281 +15335,66215731,Brooklyn,Park Slope,40.67719,-73.98142,Private room,50,1,113,2.87,2,352 +15336,26405086,Manhattan,Washington Heights,40.83471,-73.94288,Entire home/apt,359,1,96,2.48,4,309 +15337,66191982,Brooklyn,Bedford-Stuyvesant,40.69445,-73.94459,Private room,50,3,3,0.08,1,0 +15338,66240027,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95999,Entire home/apt,40,1,2,0.05,1,0 +15339,26521212,Manhattan,Midtown,40.75314,-73.97367,Entire home/apt,219,2,5,0.13,3,0 +15340,5468528,Brooklyn,South Slope,40.6679,-73.98703,Entire home/apt,189,4,68,1.73,1,83 +15341,23638897,Manhattan,Lower East Side,40.71849,-73.98334,Entire home/apt,140,5,2,0.05,1,0 +15342,11206175,Queens,Maspeth,40.72163,-73.90612,Entire home/apt,96,30,17,0.47,2,325 +15343,27742760,Brooklyn,Boerum Hill,40.68469,-73.98603,Entire home/apt,300,180,0,,1,365 +15344,66269338,Queens,Jackson Heights,40.74838,-73.88767,Private room,125,1,11,0.28,4,301 +15345,30826804,Brooklyn,East Flatbush,40.6403,-73.94959,Private room,150,3,11,0.28,1,364 +15346,66309874,Brooklyn,Cypress Hills,40.68615,-73.87646,Private room,60,3,32,0.81,3,90 +15347,7195103,Manhattan,Upper West Side,40.779920000000004,-73.98046,Private room,99,4,51,1.31,1,0 +15348,66309874,Brooklyn,Cypress Hills,40.68577,-73.8777,Private room,60,3,15,0.41,3,90 +15349,18276764,Manhattan,Gramercy,40.7363,-73.98691,Entire home/apt,198,2,37,0.98,1,0 +15350,66326553,Manhattan,Hell's Kitchen,40.76149,-73.99159,Entire home/apt,350,6,124,3.16,2,247 +15351,5973406,Brooklyn,Park Slope,40.66977,-73.98042,Entire home/apt,85,14,4,0.15,2,275 +15352,51522009,Manhattan,Hell's Kitchen,40.76446,-73.99175,Private room,80,3,0,,1,0 +15353,5741089,Brooklyn,Williamsburg,40.71278,-73.949,Entire home/apt,80,2,6,0.15,1,0 +15354,16098958,Manhattan,Upper West Side,40.7918,-73.97413,Entire home/apt,135,30,6,0.16,96,311 +15355,26535250,Brooklyn,Windsor Terrace,40.65722,-73.9793,Entire home/apt,61,1,91,2.38,3,246 +15356,33049782,Brooklyn,Bushwick,40.69084,-73.90314000000001,Private room,45,3,3,0.08,1,0 +15357,4206804,Brooklyn,Bushwick,40.703759999999996,-73.92718,Private room,70,3,2,0.06,1,249 +15358,66383919,Manhattan,Harlem,40.80513,-73.95445,Private room,60,1,40,1.02,2,0 +15359,66383919,Manhattan,Harlem,40.80713,-73.9542,Private room,75,2,46,1.17,2,0 +15360,13716703,Brooklyn,Greenpoint,40.733340000000005,-73.95607,Entire home/apt,165,2,3,0.08,1,0 +15361,473701,Brooklyn,Greenpoint,40.73708,-73.95454000000001,Entire home/apt,112,10,11,0.28,1,21 +15362,64341665,Manhattan,Harlem,40.82039,-73.94147,Private room,69,1,38,0.97,2,365 +15363,66440767,Brooklyn,Sheepshead Bay,40.600159999999995,-73.95393,Private room,39,3,22,0.56,1,360 +15364,1512462,Manhattan,Midtown,40.75489,-73.9666,Entire home/apt,239,4,132,3.39,2,242 +15365,40726506,Manhattan,East Village,40.72591,-73.98,Entire home/apt,150,2,0,,1,0 +15366,10199873,Manhattan,Upper East Side,40.77398,-73.94606999999999,Private room,42,31,0,,1,0 +15367,32924486,Manhattan,Greenwich Village,40.73064,-73.99937,Entire home/apt,195,7,0,,1,0 +15368,38353649,Manhattan,East Village,40.72228,-73.98409000000001,Entire home/apt,194,4,5,0.13,1,0 +15369,8952737,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9535,Private room,75,2,1,0.03,1,0 +15370,87988,Brooklyn,Carroll Gardens,40.68233,-73.99373,Entire home/apt,130,2,0,,2,16 +15371,66484647,Manhattan,Chelsea,40.74419,-73.99861,Entire home/apt,165,3,110,2.87,1,222 +15372,21901103,Manhattan,Morningside Heights,40.80464,-73.96418,Private room,70,3,0,,1,0 +15373,6360636,Manhattan,East Village,40.72387,-73.98939,Entire home/apt,200,2,3,0.08,1,0 +15374,1702298,Brooklyn,Williamsburg,40.71378,-73.93762,Private room,40,15,0,,1,0 +15375,2861820,Brooklyn,Williamsburg,40.71172,-73.9417,Entire home/apt,205,2,7,0.18,1,4 +15376,30848788,Brooklyn,Bedford-Stuyvesant,40.69324,-73.94655999999999,Private room,45,4,35,0.91,2,89 +15377,66501870,Manhattan,Midtown,40.76016,-73.9691,Entire home/apt,139,2,132,3.66,1,154 +15378,26405086,Manhattan,Washington Heights,40.833259999999996,-73.94215,Entire home/apt,339,1,87,2.28,4,318 +15379,66513544,Brooklyn,Brownsville,40.65775,-73.90486,Entire home/apt,49,14,3,0.08,1,291 +15380,1304893,Manhattan,Upper West Side,40.78495,-73.9731,Entire home/apt,190,4,1,0.08,1,118 +15381,1180190,Brooklyn,Greenpoint,40.731,-73.9548,Entire home/apt,450,365,17,0.5,1,365 +15382,14898658,Brooklyn,Kensington,40.64345,-73.98015,Private room,45,1,103,2.68,11,0 +15383,66566329,Brooklyn,Williamsburg,40.71926,-73.94206,Entire home/apt,199,2,29,0.74,1,174 +15384,9632055,Brooklyn,Carroll Gardens,40.68378,-74.00046,Entire home/apt,55,2,0,,1,0 +15385,49746853,Brooklyn,Bedford-Stuyvesant,40.68042,-73.91811,Private room,33,13,7,0.2,1,297 +15386,15753023,Brooklyn,Williamsburg,40.71102,-73.9689,Entire home/apt,149,4,5,0.14,1,0 +15387,4207560,Brooklyn,Williamsburg,40.70928,-73.95286,Private room,80,1,54,1.37,1,0 +15388,2774967,Brooklyn,Fort Greene,40.6921,-73.97279,Entire home/apt,120,3,25,0.72,1,0 +15389,26414016,Brooklyn,Williamsburg,40.718059999999994,-73.95775,Private room,73,1,4,0.11,2,0 +15390,10035055,Manhattan,Tribeca,40.721379999999996,-74.00766999999999,Entire home/apt,2500,4,0,,1,89 +15391,9123131,Brooklyn,Crown Heights,40.67068,-73.94084000000001,Private room,44,3,32,0.83,2,0 +15392,6416695,Manhattan,Washington Heights,40.83549,-73.94729,Entire home/apt,105,3,8,0.21,1,0 +15393,1892706,Manhattan,East Harlem,40.78993,-73.94718,Private room,70,1,0,,1,0 +15394,19953913,Manhattan,Hell's Kitchen,40.76116,-73.99016,Private room,120,2,17,0.43,1,0 +15395,21340955,Brooklyn,Flatbush,40.65402,-73.96073,Private room,57,3,33,0.85,3,345 +15396,8389062,Queens,Astoria,40.76202,-73.91467,Entire home/apt,120,1,1,0.03,1,0 +15397,1462483,Manhattan,Midtown,40.74566,-73.9834,Private room,100,4,40,3.36,2,164 +15398,66640174,Manhattan,Flatiron District,40.7411,-73.99024,Entire home/apt,525,5,49,1.26,1,314 +15399,8854804,Brooklyn,Williamsburg,40.71635,-73.95746,Private room,100,3,0,,1,0 +15400,7476145,Brooklyn,Williamsburg,40.718109999999996,-73.95793,Private room,75,3,3,0.09,1,0 +15401,66649328,Brooklyn,Sheepshead Bay,40.60754,-73.95297,Entire home/apt,45,1,0,,1,0 +15402,8308648,Brooklyn,Bushwick,40.6879,-73.91767,Private room,65,1,2,0.06,2,0 +15403,40040638,Brooklyn,Park Slope,40.67522,-73.98063,Entire home/apt,132,1,67,1.77,1,264 +15404,33993577,Manhattan,Harlem,40.808820000000004,-73.94654,Entire home/apt,350,5,0,,1,0 +15405,65809485,Queens,Flushing,40.748490000000004,-73.82914,Private room,50,7,83,2.15,12,171 +15406,921269,Manhattan,East Harlem,40.797109999999996,-73.93647,Private room,60,3,27,0.69,1,0 +15407,52196858,Bronx,Parkchester,40.83648,-73.85812,Private room,59,1,120,3.11,2,336 +15408,44223203,Manhattan,East Village,40.72803,-73.98853000000001,Private room,80,1,32,0.85,1,0 +15409,23732730,Bronx,Pelham Gardens,40.86323,-73.84638000000001,Entire home/apt,450,2,81,2.07,4,342 +15410,42032781,Brooklyn,Williamsburg,40.70496,-73.93024,Private room,45,3,7,0.41,1,133 +15411,26405086,Manhattan,Washington Heights,40.83543,-73.94456,Entire home/apt,359,1,126,3.21,4,318 +15412,31502455,Manhattan,Chelsea,40.74553,-73.99784,Private room,200,1,1,0.03,1,0 +15413,52656626,Manhattan,Upper West Side,40.79772,-73.9626,Entire home/apt,120,3,11,0.32,1,0 +15414,43806964,Manhattan,Upper East Side,40.77667,-73.95463000000001,Entire home/apt,140,2,6,0.17,1,0 +15415,37978030,Brooklyn,Flatbush,40.63129,-73.96611,Entire home/apt,436,3,9,0.37,1,27 +15416,2640854,Manhattan,Chelsea,40.74045,-73.99824,Entire home/apt,249,3,9,0.23,1,0 +15417,16596850,Manhattan,Midtown,40.75761,-73.96217,Entire home/apt,300,1,0,,1,0 +15418,39549563,Brooklyn,Bedford-Stuyvesant,40.68075,-73.91099,Entire home/apt,140,30,38,1.1,1,312 +15419,3922831,Brooklyn,Williamsburg,40.715920000000004,-73.96265,Entire home/apt,170,5,35,0.9,1,290 +15420,32193665,Brooklyn,Williamsburg,40.71671,-73.94989,Entire home/apt,200,2,0,,1,0 +15421,11626567,Brooklyn,Williamsburg,40.70661,-73.93642,Private room,60,1,2,0.05,1,0 +15422,5074556,Manhattan,Chinatown,40.71703,-73.99338,Private room,94,3,4,0.1,1,364 +15423,11039974,Manhattan,Upper West Side,40.780390000000004,-73.98425999999999,Entire home/apt,399,1,0,,2,0 +15424,66787512,Brooklyn,Bushwick,40.699690000000004,-73.91896,Private room,45,1,7,0.18,1,0 +15425,24038764,Brooklyn,Cypress Hills,40.67708,-73.89236,Private room,60,3,2,0.05,1,0 +15426,35660592,Queens,Maspeth,40.73976,-73.8954,Private room,169,3,27,0.78,6,256 +15427,66614646,Manhattan,East Village,40.72444,-73.98136,Private room,80,3,1,0.03,1,0 +15428,22288459,Brooklyn,Bedford-Stuyvesant,40.695370000000004,-73.93494,Private room,55,1,12,0.75,2,22 +15429,66807700,Manhattan,East Harlem,40.79505,-73.94360999999999,Entire home/apt,220,2,140,3.6,3,341 +15430,66810906,Brooklyn,Bergen Beach,40.6235,-73.91056,Entire home/apt,235,4,32,0.88,1,322 +15431,5960171,Brooklyn,Clinton Hill,40.68809,-73.96027,Entire home/apt,125,3,2,0.05,1,0 +15432,3121134,Queens,Astoria,40.7619,-73.91985,Private room,66,1,1,0.03,1,0 +15433,12326402,Manhattan,Financial District,40.708729999999996,-74.00601,Private room,80,1,5,0.13,1,0 +15434,26377263,Queens,Far Rockaway,40.5978,-73.75296,Private room,40,30,0,,43,354 +15435,5741728,Queens,Astoria,40.76625,-73.91448000000001,Private room,57,2,14,0.37,1,0 +15436,116382,Brooklyn,Crown Heights,40.668820000000004,-73.9404,Private room,48,2,107,2.74,5,268 +15437,16617640,Manhattan,East Village,40.72376,-73.97975,Entire home/apt,99,20,2,0.06,1,0 +15438,45601111,Queens,Laurelton,40.66952,-73.74624,Private room,40,2,47,1.19,5,173 +15439,65364483,Manhattan,Upper West Side,40.798390000000005,-73.96804,Entire home/apt,250,90,0,,2,90 +15440,66904643,Manhattan,East Village,40.72421,-73.99041,Private room,180,1,14,0.4,1,90 +15441,41265342,Manhattan,Upper East Side,40.76769,-73.9585,Entire home/apt,115,2,7,0.2,1,0 +15442,4249297,Brooklyn,Williamsburg,40.71065,-73.95115,Private room,104,2,19,0.49,2,249 +15443,66919869,Brooklyn,Williamsburg,40.717420000000004,-73.95777,Entire home/apt,325,4,12,0.49,1,6 +15444,26521212,Manhattan,Midtown,40.75322,-73.97321,Entire home/apt,299,2,14,0.36,3,0 +15445,17001409,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94315999999999,Private room,40,1,5,0.13,1,0 +15446,24532289,Manhattan,Upper East Side,40.78755,-73.95493,Private room,89,1,9,0.23,1,198 +15447,51501835,Manhattan,Hell's Kitchen,40.763020000000004,-73.99416,Entire home/apt,100,30,7,0.19,31,244 +15448,66949758,Queens,Jamaica,40.70085,-73.81284000000001,Entire home/apt,59,1,27,0.7,2,62 +15449,7511223,Manhattan,Financial District,40.70799,-74.00976999999999,Entire home/apt,300,3,100,2.66,1,335 +15450,2017504,Manhattan,Gramercy,40.73365,-73.98481,Private room,65,1,0,,2,0 +15451,66961444,Manhattan,Inwood,40.87133,-73.91561999999999,Private room,50,2,74,1.98,1,310 +15452,31280252,Manhattan,Lower East Side,40.71894,-73.98738,Entire home/apt,120,1,0,,1,0 +15453,14278457,Manhattan,Lower East Side,40.71257,-73.98671,Private room,125,1,0,,1,0 +15454,59742433,Brooklyn,Williamsburg,40.70851,-73.95443,Private room,80,4,2,0.77,1,66 +15455,1704335,Manhattan,Upper West Side,40.79749,-73.96307,Private room,56,7,1,0.03,1,0 +15456,6884235,Manhattan,Hell's Kitchen,40.76038,-73.98781,Entire home/apt,219,7,100,2.66,1,235 +15457,66977773,Manhattan,Hell's Kitchen,40.768,-73.98557,Entire home/apt,197,1,0,,1,0 +15458,42329946,Brooklyn,Bushwick,40.69294,-73.92286999999999,Entire home/apt,260,4,105,2.85,1,48 +15459,5017615,Manhattan,Flatiron District,40.73922,-73.98886,Entire home/apt,115,14,3,0.13,1,0 +15460,52196858,Bronx,Parkchester,40.83703,-73.85648,Private room,75,2,63,1.8,2,150 +15461,20942935,Brooklyn,Crown Heights,40.675290000000004,-73.93670999999999,Private room,66,1,1,0.03,1,0 +15462,35031188,Queens,Astoria,40.77479,-73.93545999999999,Private room,75,1,21,0.55,1,364 +15463,14136274,Manhattan,SoHo,40.7244,-74.00681,Entire home/apt,500,2,0,,1,0 +15464,67045498,Queens,Ridgewood,40.709179999999996,-73.90089,Entire home/apt,215,1,38,1.75,1,77 +15465,67069129,Manhattan,Harlem,40.809670000000004,-73.95295,Entire home/apt,175,2,136,3.51,2,280 +15466,67073298,Manhattan,Hell's Kitchen,40.76058,-73.99603,Entire home/apt,140,7,131,3.37,1,111 +15467,59958998,Brooklyn,Downtown Brooklyn,40.69449,-73.98366999999999,Private room,80,1,0,,1,0 +15468,61532697,Manhattan,Midtown,40.75228,-73.97336999999999,Private room,359,5,0,,1,0 +15469,13406954,Brooklyn,Williamsburg,40.7121,-73.96155999999999,Private room,80,1,1,0.03,3,0 +15470,40015388,Brooklyn,Park Slope,40.67086,-73.97847,Private room,935,1,0,,1,0 +15471,47380199,Queens,Astoria,40.76869,-73.91966,Entire home/apt,120,7,1,0.03,1,0 +15472,1468472,Bronx,Longwood,40.81384,-73.90514,Entire home/apt,85,5,4,0.31,1,0 +15473,25095488,Brooklyn,Sunset Park,40.66248,-73.99667,Entire home/apt,100,2,3,0.1,1,0 +15474,11554193,Brooklyn,Crown Heights,40.66753,-73.95099,Private room,64,5,7,0.18,2,0 +15475,5790819,Manhattan,Lower East Side,40.7192,-73.98431,Private room,75,2,3,0.08,1,0 +15476,67105547,Manhattan,East Harlem,40.78898,-73.95478,Private room,62,1,32,0.83,1,0 +15477,51501835,Manhattan,Hell's Kitchen,40.76347,-73.99296,Entire home/apt,96,30,5,0.13,31,246 +15478,36663219,Manhattan,Kips Bay,40.74462,-73.97746,Entire home/apt,350,3,0,,1,0 +15479,13755526,Manhattan,Upper East Side,40.7673,-73.9594,Entire home/apt,100,1,0,,1,0 +15480,6662358,Brooklyn,Flatbush,40.64933,-73.96478,Entire home/apt,290,5,4,0.11,1,0 +15481,67123961,Manhattan,Harlem,40.820879999999995,-73.95628,Private room,50,2,12,0.31,2,0 +15482,52559052,Manhattan,Midtown,40.76657,-73.98207,Entire home/apt,150,2,0,,1,0 +15483,2874126,Manhattan,Hell's Kitchen,40.76535,-73.98874,Private room,81,4,27,0.7,1,188 +15484,13168457,Queens,Astoria,40.76555,-73.91458,Private room,70,2,18,0.46,1,89 +15485,44781865,Brooklyn,Clinton Hill,40.68761,-73.95979,Private room,70,2,31,0.83,1,0 +15486,20471565,Manhattan,East Village,40.72522,-73.98114,Private room,150,3,0,,1,0 +15487,3642404,Brooklyn,Williamsburg,40.70965,-73.95675,Entire home/apt,95,4,10,0.37,1,0 +15488,3518697,Brooklyn,Crown Heights,40.67634,-73.96177,Entire home/apt,150,1,1,0.03,1,188 +15489,43924728,Brooklyn,Fort Greene,40.687020000000004,-73.97506,Entire home/apt,169,2,136,3.46,1,251 +15490,26819014,Brooklyn,Cypress Hills,40.67893,-73.89423000000001,Private room,25,1,0,,1,0 +15491,22627365,Manhattan,Flatiron District,40.74047,-73.98931999999999,Entire home/apt,154,1,0,,1,0 +15492,2455544,Manhattan,Midtown,40.76507,-73.98393,Entire home/apt,140,5,1,0.03,1,0 +15493,9754272,Manhattan,Harlem,40.826159999999994,-73.94023,Entire home/apt,130,2,5,0.13,1,0 +15494,67208195,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91761,Private room,60,2,53,1.37,2,365 +15495,43585775,Manhattan,West Village,40.73475,-74.0044,Entire home/apt,250,3,0,,1,0 +15496,9249156,Brooklyn,Williamsburg,40.710190000000004,-73.95439,Private room,55,3,2,0.05,1,0 +15497,7963317,Brooklyn,Boerum Hill,40.688340000000004,-73.98601,Private room,150,1,0,,1,0 +15498,20069770,Brooklyn,Bushwick,40.69336,-73.9213,Private room,45,2,2,0.08,1,0 +15499,67223979,Brooklyn,Sunset Park,40.66482,-73.99609,Entire home/apt,199,1,164,4.25,1,340 +15500,31796914,Manhattan,Morningside Heights,40.80507,-73.96465,Entire home/apt,290,4,3,0.08,1,0 +15501,26010563,Manhattan,Upper West Side,40.78054,-73.97779,Entire home/apt,85,2,7,0.18,1,0 +15502,51501835,Manhattan,Hell's Kitchen,40.763059999999996,-73.99257,Entire home/apt,150,30,3,0.12,31,332 +15503,65258815,Brooklyn,Crown Heights,40.6736,-73.92612,Entire home/apt,60,2,23,6.22,2,33 +15504,425363,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95231,Entire home/apt,170,5,55,1.44,1,82 +15505,67261284,Queens,Jackson Heights,40.75302,-73.8797,Private room,47,1,15,0.39,2,0 +15506,40828217,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.94542,Private room,55,2,60,1.62,4,88 +15507,970831,Manhattan,Chinatown,40.71472,-73.99081,Entire home/apt,195,2,80,2.04,1,14 +15508,66807700,Manhattan,East Harlem,40.79456,-73.94345,Entire home/apt,186,2,139,3.6,3,73 +15509,67332509,Manhattan,Harlem,40.825790000000005,-73.94324,Entire home/apt,99,1,3,0.08,1,0 +15510,21742264,Manhattan,Hell's Kitchen,40.763040000000004,-73.99166,Entire home/apt,155,1,0,,1,0 +15511,102525,Brooklyn,South Slope,40.66768,-73.98425,Private room,60,3,27,0.71,2,308 +15512,67341852,Brooklyn,Gowanus,40.684740000000005,-73.98862,Private room,100,1,1,0.03,1,0 +15513,35079352,Manhattan,Upper West Side,40.7992,-73.97158,Entire home/apt,500,5,3,0.09,1,44 +15514,67063688,Brooklyn,Fort Greene,40.68521,-73.97131,Entire home/apt,150,2,68,1.74,1,319 +15515,60996330,Manhattan,Murray Hill,40.74893,-73.97036999999999,Entire home/apt,175,1,3,0.09,1,0 +15516,12327430,Manhattan,Hell's Kitchen,40.76386,-73.99707,Entire home/apt,148,4,104,2.7,2,145 +15517,7695686,Manhattan,Harlem,40.80057,-73.9556,Private room,130,3,44,1.15,1,80 +15518,8671253,Manhattan,East Village,40.724140000000006,-73.9801,Private room,80,2,3,0.08,1,0 +15519,48091946,Manhattan,Upper West Side,40.77775,-73.98169,Entire home/apt,150,2,5,0.13,1,0 +15520,639785,Brooklyn,Williamsburg,40.71774,-73.95466,Entire home/apt,285,2,17,0.44,1,0 +15521,47638752,Manhattan,Chinatown,40.7133,-73.9956,Private room,70,3,1,0.03,1,0 +15522,67471774,Manhattan,Upper West Side,40.775040000000004,-73.9896,Entire home/apt,150,1,0,,1,0 +15523,16437254,Brooklyn,Prospect Heights,40.67631,-73.96635,Entire home/apt,155,30,1,0.09,21,61 +15524,67493763,Manhattan,East Village,40.72952,-73.98214,Private room,82,1,4,0.16,1,0 +15525,36966894,Manhattan,Upper West Side,40.77835,-73.97655,Entire home/apt,200,3,5,0.13,1,0 +15526,51520084,Brooklyn,Bedford-Stuyvesant,40.696870000000004,-73.93542,Private room,60,1,0,,1,0 +15527,12114372,Manhattan,Gramercy,40.736309999999996,-73.98525,Private room,150,7,0,,1,0 +15528,283395,Manhattan,Murray Hill,40.7493,-73.9794,Private room,159,1,17,0.44,2,155 +15529,4620141,Manhattan,Washington Heights,40.84659,-73.93252,Private room,38,5,11,0.31,2,0 +15530,5206786,Manhattan,East Village,40.72804,-73.98867,Entire home/apt,155,5,12,0.31,1,2 +15531,33936693,Brooklyn,Williamsburg,40.711729999999996,-73.96646,Entire home/apt,184,4,79,2.21,1,222 +15532,66574216,Queens,Flushing,40.765640000000005,-73.82043,Private room,65,1,122,3.16,1,86 +15533,38864859,Manhattan,Upper East Side,40.7842,-73.95105,Entire home/apt,150,1,0,,1,0 +15534,9361557,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96193000000001,Private room,50,1,70,1.79,2,0 +15535,67640934,Brooklyn,Bedford-Stuyvesant,40.683609999999994,-73.93845,Private room,60,2,34,0.88,1,0 +15536,816008,Manhattan,Hell's Kitchen,40.76093,-73.99014,Private room,100,5,8,0.21,1,0 +15537,6119244,Queens,Jackson Heights,40.750690000000006,-73.89475999999999,Private room,60,2,26,0.78,1,307 +15538,67651553,Manhattan,Upper West Side,40.803020000000004,-73.96511,Entire home/apt,110,10,0,,2,0 +15539,12140588,Brooklyn,Greenpoint,40.72619,-73.95563,Private room,50,3,2,0.06,1,0 +15540,57769941,Manhattan,Midtown,40.7659,-73.98210999999999,Entire home/apt,325,1,0,,1,0 +15541,2821521,Manhattan,Greenwich Village,40.73372,-73.99834,Entire home/apt,225,3,60,1.54,1,18 +15542,22527211,Manhattan,Midtown,40.75914,-73.96591,Entire home/apt,190,29,53,1.4,1,165 +15543,2104160,Brooklyn,Greenpoint,40.7369,-73.95288000000001,Entire home/apt,119,4,4,0.1,1,0 +15544,23870466,Manhattan,Upper West Side,40.78475,-73.9717,Entire home/apt,650,30,3,0.09,1,137 +15545,11305944,Bronx,Allerton,40.86947,-73.85993,Entire home/apt,104,2,33,0.85,5,86 +15546,67674810,Manhattan,Chinatown,40.7164,-73.99743000000001,Entire home/apt,175,30,4,0.11,1,0 +15547,50137233,Brooklyn,Williamsburg,40.711999999999996,-73.94609,Private room,190,1,0,,1,0 +15548,67677095,Manhattan,Upper West Side,40.8015,-73.96605,Private room,40,3,1,0.03,1,0 +15549,379619,Brooklyn,Gowanus,40.667,-73.99233000000001,Entire home/apt,100,1,378,9.67,1,48 +15550,3982538,Brooklyn,Prospect Heights,40.67908,-73.97333,Private room,75,1,0,,1,0 +15551,5775272,Manhattan,Upper West Side,40.78406,-73.98431,Entire home/apt,125,1,0,,1,0 +15552,7475578,Manhattan,Little Italy,40.719409999999996,-73.99706,Private room,85,5,26,0.67,2,160 +15553,31376006,Brooklyn,Greenpoint,40.72191,-73.94405,Private room,60,1,2,0.05,1,0 +15554,3905432,Manhattan,Harlem,40.816140000000004,-73.94429000000001,Private room,90,6,8,0.22,2,296 +15555,67768251,Manhattan,Upper West Side,40.78461,-73.97787,Private room,53,30,4,0.17,3,185 +15556,67803853,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94793,Private room,50,3,26,0.68,1,0 +15557,56623911,Manhattan,East Harlem,40.788090000000004,-73.95333000000001,Private room,45,1,3,0.08,1,0 +15558,3207402,Manhattan,Upper West Side,40.799040000000005,-73.96045,Private room,110,4,7,0.23,1,125 +15559,2593193,Brooklyn,Sunset Park,40.66127,-73.99154,Entire home/apt,200,7,0,,1,11 +15560,66240032,Manhattan,Greenwich Village,40.73046,-73.99562,Entire home/apt,6000,1,0,,1,0 +15561,34790915,Queens,Ridgewood,40.7003,-73.89983000000001,Private room,70,2,0,,1,0 +15562,10665495,Manhattan,East Village,40.726259999999996,-73.9894,Entire home/apt,199,4,3,0.08,1,0 +15563,5069809,Queens,Forest Hills,40.71915,-73.84397,Private room,65,2,29,0.77,1,333 +15564,18004909,Brooklyn,Williamsburg,40.71513,-73.94848,Private room,95,2,1,0.03,1,9 +15565,6604691,Brooklyn,Downtown Brooklyn,40.69531,-73.98306,Private room,80,5,0,,1,0 +15566,16098958,Manhattan,Upper West Side,40.79433,-73.96518,Entire home/apt,200,30,1,0.13,96,337 +15567,55457305,Manhattan,West Village,40.72981,-74.00348000000001,Entire home/apt,274,6,37,0.94,1,339 +15568,3441272,Brooklyn,Bushwick,40.69758,-73.93493000000001,Private room,50,2,93,2.39,5,202 +15569,67884746,Brooklyn,Prospect Heights,40.67947,-73.96466,Private room,105,2,172,4.5,1,83 +15570,67931669,Manhattan,Harlem,40.81498,-73.95078000000001,Private room,45,20,0,,1,0 +15571,10158478,Manhattan,Hell's Kitchen,40.76148,-73.99489,Private room,350,1,0,,1,0 +15572,60946174,Manhattan,Upper East Side,40.78093,-73.95175,Private room,350,1,9,0.23,1,90 +15573,17770287,Manhattan,Murray Hill,40.7493,-73.98132,Entire home/apt,180,30,5,0.14,14,210 +15574,64837317,Manhattan,Hell's Kitchen,40.76231,-73.9952,Entire home/apt,225,4,128,3.39,1,218 +15575,67758079,Queens,Sunnyside,40.74706,-73.92076,Entire home/apt,100,1,1,0.03,1,0 +15576,17763535,Brooklyn,Williamsburg,40.71183,-73.94918,Private room,1300,1,0,,1,0 +15577,43128266,Manhattan,Washington Heights,40.83271,-73.94006999999999,Private room,55,1,5,0.13,3,332 +15578,3089851,Brooklyn,Bedford-Stuyvesant,40.69175,-73.95554,Entire home/apt,70,7,4,0.12,1,0 +15579,4354856,Brooklyn,Williamsburg,40.714859999999994,-73.94826,Private room,50,60,0,,2,0 +15580,12335685,Brooklyn,Crown Heights,40.67045,-73.95895,Private room,67,1,1,0.03,1,0 +15581,43436738,Manhattan,Midtown,40.76589,-73.98068,Entire home/apt,150,2,1,0.03,1,0 +15582,68013836,Manhattan,Financial District,40.70592,-74.00928,Private room,35,3,3,0.09,1,0 +15583,24225572,Brooklyn,Williamsburg,40.71353,-73.95260999999999,Private room,90,2,15,1.05,1,6 +15584,20586090,Manhattan,Harlem,40.82356,-73.95456999999999,Private room,53,5,8,0.23,1,0 +15585,15074852,Manhattan,Hell's Kitchen,40.76253,-73.98939,Entire home/apt,300,2,0,,1,0 +15586,68070597,Brooklyn,Bedford-Stuyvesant,40.697559999999996,-73.93893,Entire home/apt,80,21,0,,1,0 +15587,26521212,Manhattan,Midtown,40.75207,-73.97351,Entire home/apt,299,2,5,0.15,3,0 +15588,50600973,Brooklyn,Bushwick,40.694520000000004,-73.92806999999999,Private room,41,1,72,1.88,7,0 +15589,68082818,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93526,Private room,50,2,1,0.03,1,0 +15590,20907226,Queens,Ridgewood,40.70005,-73.8952,Entire home/apt,70,1,5,0.21,1,0 +15591,51093380,Manhattan,Harlem,40.82302,-73.94476999999999,Entire home/apt,500,1,0,,1,365 +15592,47577639,Manhattan,Chelsea,40.74137,-74.00399,Entire home/apt,185,4,49,1.31,2,279 +15593,68094755,Manhattan,Midtown,40.757090000000005,-73.96327,Private room,98,3,98,2.66,1,278 +15594,68094795,Manhattan,Upper East Side,40.76532,-73.9615,Entire home/apt,399,4,55,1.47,2,237 +15595,2898343,Manhattan,Upper West Side,40.79865,-73.96419,Entire home/apt,170,4,12,0.31,1,0 +15596,8756366,Manhattan,Financial District,40.70666,-74.00529,Private room,80,1,0,,1,0 +15597,10312167,Manhattan,Harlem,40.80276,-73.94976,Entire home/apt,376,28,53,1.4,2,310 +15598,11761831,Bronx,Wakefield,40.89118,-73.84987,Entire home/apt,99,3,68,1.78,1,2 +15599,32503657,Manhattan,Hell's Kitchen,40.75756,-73.99318000000001,Entire home/apt,200,1,0,,1,0 +15600,26813492,Brooklyn,Bedford-Stuyvesant,40.69065,-73.93708000000001,Entire home/apt,91,5,3,0.12,1,0 +15601,3910530,Brooklyn,Bedford-Stuyvesant,40.68459,-73.94993000000001,Entire home/apt,60,1,0,,1,0 +15602,68138404,Manhattan,East Village,40.72997,-73.98009,Private room,60,3,50,1.31,1,240 +15603,68139079,Brooklyn,Bushwick,40.700759999999995,-73.92371,Private room,50,1,0,,1,0 +15604,57786447,Manhattan,West Village,40.73764,-74.00146,Entire home/apt,250,2,1,0.03,1,0 +15605,68145886,Manhattan,Greenwich Village,40.734320000000004,-73.9972,Entire home/apt,209,2,75,1.93,1,8 +15606,342510,Brooklyn,South Slope,40.66383,-73.98252,Private room,65,1,0,,1,0 +15607,34546087,Queens,Astoria,40.7704,-73.91701,Private room,48,2,11,0.29,1,0 +15608,68250800,Manhattan,East Harlem,40.80015,-73.93764,Private room,60,1,137,3.55,2,98 +15609,68252461,Staten Island,Clifton,40.623490000000004,-74.07596,Entire home/apt,165,1,108,2.78,1,298 +15610,18901504,Manhattan,Midtown,40.755,-73.96670999999999,Entire home/apt,218,5,69,1.81,2,152 +15611,24018769,Manhattan,West Village,40.733259999999994,-74.00186,Entire home/apt,160,1,0,,1,0 +15612,62850707,Manhattan,Upper West Side,40.78434,-73.97867,Entire home/apt,200,2,154,4.02,1,51 +15613,1623346,Brooklyn,Williamsburg,40.71468,-73.95841,Private room,53,2,2,0.14,1,0 +15614,26225727,Brooklyn,Bushwick,40.686009999999996,-73.91167,Private room,65,3,76,1.98,1,23 +15615,43438475,Brooklyn,South Slope,40.66872,-73.98906,Entire home/apt,280,3,30,0.79,3,125 +15616,1520629,Brooklyn,Clinton Hill,40.68374,-73.96719,Private room,60,1,67,1.85,1,310 +15617,68240110,Brooklyn,Prospect-Lefferts Gardens,40.65785,-73.96068000000001,Entire home/apt,800,1,4,0.1,1,357 +15618,68309691,Queens,Flushing,40.72635,-73.80237,Entire home/apt,99,1,229,5.97,1,7 +15619,10737943,Manhattan,Upper West Side,40.7998,-73.96098,Entire home/apt,120,30,18,0.47,10,189 +15620,17603414,Manhattan,Harlem,40.824709999999996,-73.94332,Private room,70,4,27,0.75,2,156 +15621,5162192,Manhattan,Upper West Side,40.79895,-73.95949,Entire home/apt,235,30,4,0.1,12,209 +15622,5162192,Manhattan,Upper West Side,40.7986,-73.96229,Entire home/apt,275,30,4,0.15,12,199 +15623,10577784,Queens,Astoria,40.76494,-73.92752,Private room,86,4,28,0.74,2,242 +15624,13406954,Manhattan,Upper East Side,40.78305,-73.95381,Shared room,49,1,3,0.08,3,0 +15625,9848712,Manhattan,East Harlem,40.80118,-73.94513,Private room,85,3,86,2.28,2,240 +15626,5059784,Queens,Astoria,40.76465,-73.92625,Entire home/apt,125,1,10,0.26,1,0 +15627,9848712,Manhattan,East Harlem,40.80073,-73.94465,Private room,85,3,89,2.37,2,228 +15628,16702803,Brooklyn,Crown Heights,40.67426,-73.93968000000001,Entire home/apt,70,2,2,0.05,1,0 +15629,67208195,Brooklyn,Bedford-Stuyvesant,40.686009999999996,-73.91771999999999,Private room,60,2,71,1.84,2,363 +15630,57059509,Brooklyn,Bedford-Stuyvesant,40.692209999999996,-73.93823,Private room,50,20,19,0.56,1,2 +15631,18901504,Manhattan,Midtown,40.75369,-73.96632,Entire home/apt,218,5,81,2.1,2,185 +15632,9293730,Manhattan,East Harlem,40.7888,-73.94247,Entire home/apt,135,30,13,0.37,16,330 +15633,13822373,Brooklyn,Prospect-Lefferts Gardens,40.66223,-73.95955,Private room,120,2,2,0.06,1,0 +15634,66734502,Queens,Astoria,40.76188,-73.91766,Private room,55,3,3,0.08,2,0 +15635,6444711,Brooklyn,Fort Greene,40.68672,-73.97555,Entire home/apt,150,2,7,0.19,1,0 +15636,1539941,Brooklyn,Kensington,40.63568,-73.97383,Entire home/apt,75,2,10,0.26,1,362 +15637,15218314,Manhattan,Harlem,40.812509999999996,-73.95411999999999,Private room,43,7,0,,1,0 +15638,49262827,Manhattan,Hell's Kitchen,40.76192,-73.98817,Entire home/apt,115,2,150,4.06,1,1 +15639,14498263,Queens,Sunnyside,40.74431,-73.92024,Private room,60,2,105,2.72,1,101 +15640,11732822,Brooklyn,Park Slope,40.67776,-73.9743,Entire home/apt,160,4,33,0.87,1,1 +15641,657869,Manhattan,Harlem,40.81027,-73.9408,Shared room,39,4,47,1.22,2,131 +15642,4057761,Manhattan,Harlem,40.82458,-73.95175,Private room,45,3,49,1.26,1,0 +15643,1166833,Brooklyn,Flatbush,40.64966,-73.96459,Private room,45,3,5,0.19,1,0 +15644,68551886,Manhattan,Harlem,40.828590000000005,-73.9497,Private room,25,1,0,,1,0 +15645,68556398,Brooklyn,Bushwick,40.69285,-73.92703,Private room,65,12,0,,1,0 +15646,2480467,Manhattan,Harlem,40.80854,-73.94305,Entire home/apt,125,7,1,0.03,1,0 +15647,67261284,Queens,Jackson Heights,40.75123,-73.87993,Private room,67,1,204,5.27,2,0 +15648,16740102,Brooklyn,Bedford-Stuyvesant,40.68634,-73.94414,Private room,52,3,0,,1,0 +15649,516563,Manhattan,Lower East Side,40.71412,-73.98984,Entire home/apt,110,6,5,0.13,1,12 +15650,227369,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95952,Entire home/apt,177,4,82,2.22,1,73 +15651,65820457,Queens,Ridgewood,40.70595,-73.90871,Private room,25,5,0,,1,0 +15652,35383368,Brooklyn,Park Slope,40.674659999999996,-73.97711,Entire home/apt,175,3,0,,1,0 +15653,228858,Brooklyn,South Slope,40.66271,-73.98818,Entire home/apt,150,3,73,1.89,2,259 +15654,26054687,Brooklyn,Williamsburg,40.71586,-73.94859,Private room,75,7,0,,1,0 +15655,1216362,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.96122,Private room,41,1,43,1.19,4,188 +15656,9997184,Manhattan,Upper West Side,40.79376,-73.96734000000001,Entire home/apt,185,2,10,0.26,1,0 +15657,60077920,Queens,East Elmhurst,40.761070000000004,-73.86664,Entire home/apt,175,2,74,2.42,1,141 +15658,68684053,Manhattan,Harlem,40.82095,-73.94006999999999,Private room,40,1,1,0.03,1,0 +15659,52577563,Brooklyn,Sunset Park,40.66455,-73.99205,Entire home/apt,135,4,9,0.23,3,365 +15660,6389984,Brooklyn,Greenpoint,40.73081,-73.95551,Entire home/apt,195,2,34,0.97,1,0 +15661,68585649,Brooklyn,Bedford-Stuyvesant,40.69186,-73.94038,Private room,30,80,0,,1,0 +15662,709939,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94784,Private room,50,30,4,0.11,1,0 +15663,68719139,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95773,Private room,40,4,4,0.11,1,0 +15664,68729762,Manhattan,Midtown,40.7504,-73.98775,Entire home/apt,150,1,2,0.05,1,0 +15665,3629866,Brooklyn,Bedford-Stuyvesant,40.69409,-73.94815,Private room,75,3,5,0.13,1,301 +15666,68729548,Manhattan,Greenwich Village,40.72994,-73.99455,Private room,100,1,0,,1,0 +15667,24944767,Brooklyn,Bushwick,40.70068,-73.91985,Private room,65,1,3,0.08,1,0 +15668,13996246,Brooklyn,Bedford-Stuyvesant,40.681979999999996,-73.95347,Private room,250,60,2,0.05,1,0 +15669,68735532,Manhattan,Harlem,40.8181,-73.94632,Entire home/apt,136,1,30,0.82,1,0 +15670,3635907,Manhattan,Nolita,40.721759999999996,-73.99424,Entire home/apt,180,2,166,4.44,1,213 +15671,46228833,Brooklyn,Bushwick,40.69617,-73.91119,Private room,55,2,4,0.11,1,0 +15672,18597974,Queens,Astoria,40.774190000000004,-73.93016999999999,Private room,65,2,0,,1,0 +15673,2686052,Brooklyn,Williamsburg,40.71185,-73.94738000000001,Entire home/apt,225,2,39,1.25,1,0 +15674,19912320,Brooklyn,Williamsburg,40.715720000000005,-73.95376,Private room,99,5,6,0.17,2,0 +15675,62058232,Brooklyn,Williamsburg,40.711940000000006,-73.95742,Private room,90,5,3,0.08,1,0 +15676,46047223,Brooklyn,Crown Heights,40.66612,-73.93696,Shared room,20,1,0,,1,0 +15677,68769040,Manhattan,Upper West Side,40.801829999999995,-73.96373,Private room,980,20,1,0.03,1,90 +15678,68771036,Manhattan,Chelsea,40.74516,-73.9959,Private room,100,2,63,1.88,1,33 +15679,657869,Manhattan,Harlem,40.809909999999995,-73.94273000000001,Private room,73,4,69,1.77,2,122 +15680,18753186,Brooklyn,Gowanus,40.681,-73.98881999999999,Entire home/apt,380,6,9,0.26,2,0 +15681,13406954,Manhattan,Upper East Side,40.78265,-73.95364000000001,Private room,99,1,2,0.05,3,0 +15682,16623502,Brooklyn,East Flatbush,40.64741,-73.92588,Entire home/apt,105,1,43,1.17,1,13 +15683,39185689,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95155,Private room,35,3,12,0.31,1,176 +15684,55121,Brooklyn,Williamsburg,40.71351,-73.9647,Entire home/apt,200,5,10,0.28,1,117 +15685,60981198,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93495,Private room,105,10,2,0.11,3,31 +15686,24012333,Manhattan,Upper West Side,40.7842,-73.97466999999999,Entire home/apt,180,1,0,,1,0 +15687,1475015,Manhattan,Hell's Kitchen,40.76747,-73.98613,Entire home/apt,87,30,2,0.06,52,365 +15688,37234211,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.95886999999999,Private room,50,1,0,,1,0 +15689,17016231,Manhattan,Hell's Kitchen,40.76358,-73.993,Private room,69,1,5,0.13,1,0 +15690,54130816,Manhattan,Kips Bay,40.7398,-73.98208000000001,Entire home/apt,150,4,2,0.05,1,0 +15691,68250800,Manhattan,East Harlem,40.79991,-73.9363,Private room,75,1,20,0.53,2,128 +15692,68878222,Queens,Astoria,40.76508,-73.9204,Entire home/apt,215,1,0,,1,0 +15693,2750607,Manhattan,Upper East Side,40.77963,-73.94896999999999,Entire home/apt,150,4,0,,1,0 +15694,43733051,Manhattan,Harlem,40.81171,-73.95491,Entire home/apt,100,2,27,0.76,1,0 +15695,44530717,Manhattan,Hell's Kitchen,40.75965,-73.99035,Entire home/apt,224,6,1,0.03,1,0 +15696,68848703,Queens,Forest Hills,40.71933,-73.84984,Private room,119,2,21,0.57,2,363 +15697,68909853,Queens,Sunnyside,40.73944,-73.92687,Private room,80,2,53,1.37,1,364 +15698,47187182,Brooklyn,Crown Heights,40.674279999999996,-73.94373,Private room,75,3,0,,1,89 +15699,12534916,Manhattan,Chelsea,40.74187,-74.00175,Private room,125,2,0,,1,0 +15700,68907781,Queens,Astoria,40.77008,-73.92878,Private room,58,2,67,1.76,3,20 +15701,14933972,Brooklyn,Bedford-Stuyvesant,40.67798,-73.93734,Private room,128,2,3,0.08,3,12 +15702,68930733,Manhattan,Inwood,40.86158,-73.92393,Private room,60,1,0,,1,0 +15703,49902290,Manhattan,Harlem,40.824690000000004,-73.94029,Private room,115,1,2,0.05,1,0 +15704,39637568,Manhattan,SoHo,40.720420000000004,-73.99844,Private room,105,1,0,,1,0 +15705,68929870,Manhattan,Harlem,40.82617,-73.95173,Private room,69,2,0,,1,0 +15706,14933972,Brooklyn,Bedford-Stuyvesant,40.67858,-73.93713000000001,Private room,76,2,69,1.81,3,11 +15707,30848788,Brooklyn,Bedford-Stuyvesant,40.69415,-73.9481,Private room,45,4,41,1.06,2,89 +15708,49024977,Brooklyn,Park Slope,40.67687,-73.97848,Private room,80,1,2,0.05,1,0 +15709,65884381,Brooklyn,Williamsburg,40.71249,-73.94674,Private room,75,1,7,0.19,1,0 +15710,2856748,Manhattan,Upper East Side,40.76161,-73.96252,Entire home/apt,200,30,0,,49,324 +15711,8314626,Brooklyn,Williamsburg,40.71694,-73.95628,Private room,89,1,148,3.81,1,303 +15712,66556483,Brooklyn,Williamsburg,40.71332,-73.94071,Private room,80,1,0,,1,0 +15713,16098958,Manhattan,Upper West Side,40.79613,-73.96638,Entire home/apt,197,30,2,0.06,96,104 +15714,39528519,Manhattan,Lower East Side,40.711870000000005,-73.98878,Shared room,35,14,0,,28,318 +15715,11109705,Brooklyn,Clinton Hill,40.68678,-73.96178,Entire home/apt,180,7,10,0.78,1,0 +15716,2676750,Manhattan,Financial District,40.70789,-74.01521,Private room,90,3,0,,1,0 +15717,69063239,Brooklyn,Gowanus,40.67246,-73.99164,Entire home/apt,125,1,3,0.08,1,0 +15718,3836868,Manhattan,Upper East Side,40.77458,-73.95116,Entire home/apt,170,3,2,0.05,1,0 +15719,1372942,Manhattan,Washington Heights,40.8317,-73.9429,Entire home/apt,180,30,6,0.15,1,0 +15720,51501835,Manhattan,Hell's Kitchen,40.76344,-73.9929,Entire home/apt,142,30,4,0.13,31,307 +15721,66269338,Queens,Jackson Heights,40.74839,-73.88818,Private room,60,1,14,0.4,4,300 +15722,59215698,Manhattan,Upper East Side,40.76625,-73.9539,Private room,98,2,8,0.21,2,241 +15723,65809485,Queens,Flushing,40.74903,-73.82938,Private room,40,14,107,2.75,12,323 +15724,45941973,Manhattan,Harlem,40.8273,-73.94904,Private room,59,1,3,0.08,1,0 +15725,65809485,Queens,Flushing,40.74807,-73.82775,Private room,40,7,102,2.73,12,105 +15726,23919461,Manhattan,West Village,40.733990000000006,-74.00549000000001,Entire home/apt,250,3,30,0.77,2,18 +15727,25076118,Brooklyn,Sunset Park,40.6367,-74.01516,Private room,80,3,4,0.11,1,0 +15728,66269338,Queens,Jackson Heights,40.74776,-73.88826999999999,Private room,50,1,70,1.82,4,345 +15729,69124785,Manhattan,Morningside Heights,40.815670000000004,-73.95951,Private room,50,7,2,0.05,1,0 +15730,66269338,Queens,Jackson Heights,40.74859,-73.88628,Private room,65,1,49,1.31,4,329 +15731,69131589,Manhattan,Upper East Side,40.78293,-73.94691,Entire home/apt,140,30,6,0.16,1,0 +15732,68787921,Brooklyn,Bedford-Stuyvesant,40.68807,-73.92348,Private room,47,3,32,0.91,4,258 +15733,17770287,Manhattan,Midtown,40.7503,-73.98144,Entire home/apt,184,30,9,0.25,14,332 +15734,6472334,Brooklyn,Williamsburg,40.70832,-73.95336,Entire home/apt,139,4,12,0.31,2,0 +15735,4658415,Brooklyn,Williamsburg,40.71502,-73.94749,Entire home/apt,57,1,5,0.13,1,0 +15736,69203926,Brooklyn,Williamsburg,40.706140000000005,-73.94983,Entire home/apt,150,7,0,,1,0 +15737,69205600,Brooklyn,Bushwick,40.70324,-73.92943000000001,Private room,43,1,0,,1,0 +15738,69210611,Manhattan,Harlem,40.8244,-73.944,Private room,50,1,1,0.03,1,0 +15739,15089968,Queens,Richmond Hill,40.69961,-73.84158000000001,Entire home/apt,250,3,40,1.04,2,189 +15740,19710054,Brooklyn,Bedford-Stuyvesant,40.688309999999994,-73.95602,Entire home/apt,125,2,5,0.14,1,0 +15741,3673451,Brooklyn,Williamsburg,40.70577,-73.95193,Private room,50,3,3,0.21,2,0 +15742,1911171,Manhattan,Midtown,40.7421,-73.98319000000001,Entire home/apt,240,4,59,1.56,1,37 +15743,69236458,Brooklyn,Flatlands,40.62551,-73.93545,Private room,60,5,4,0.12,1,346 +15744,10777637,Brooklyn,Williamsburg,40.71696,-73.95382,Entire home/apt,160,1,9,0.24,1,0 +15745,69243005,Manhattan,Harlem,40.82555,-73.95159,Private room,45,3,1,0.03,2,0 +15746,69243005,Manhattan,Harlem,40.824329999999996,-73.95049,Private room,38,5,0,,2,0 +15747,20354912,Brooklyn,Bedford-Stuyvesant,40.69355,-73.93361,Private room,100,3,0,,1,0 +15748,69254072,Manhattan,Inwood,40.86468,-73.92209,Private room,85,1,0,,1,0 +15749,2711820,Brooklyn,Bedford-Stuyvesant,40.69301,-73.93098,Private room,50,7,2,0.05,1,0 +15750,69258420,Queens,Astoria,40.75953,-73.91181999999999,Entire home/apt,135,5,18,0.47,1,363 +15751,50601037,Manhattan,Harlem,40.82863,-73.94757,Entire home/apt,259,3,57,1.51,1,175 +15752,20557896,Manhattan,Harlem,40.82322,-73.94001999999999,Private room,50,20,0,,1,42 +15753,69267322,Manhattan,Washington Heights,40.8342,-73.94303000000001,Private room,60,1,1,0.03,1,0 +15754,69269694,Brooklyn,Williamsburg,40.70474,-73.93812,Private room,70,3,3,0.08,1,0 +15755,15019621,Brooklyn,Williamsburg,40.714009999999995,-73.93672,Private room,99,1,2,0.05,1,0 +15756,21492250,Manhattan,Upper West Side,40.79997,-73.96529,Shared room,80,5,0,,1,0 +15757,69274944,Queens,Astoria,40.76421,-73.92138,Entire home/apt,190,3,32,0.85,1,53 +15758,69276225,Manhattan,Upper East Side,40.778729999999996,-73.94917,Entire home/apt,115,14,1,0.03,1,0 +15759,18351258,Manhattan,East Village,40.72872,-73.98098,Entire home/apt,250,2,29,0.76,1,0 +15760,3038856,Brooklyn,Williamsburg,40.71403,-73.96171,Private room,70,1,9,0.24,3,0 +15761,11526146,Brooklyn,Williamsburg,40.7119,-73.94638,Entire home/apt,225,3,19,0.85,1,0 +15762,38557313,Brooklyn,Crown Heights,40.67295,-73.95395,Private room,31,5,1,0.03,1,0 +15763,68787921,Brooklyn,Bedford-Stuyvesant,40.688990000000004,-73.92339,Private room,40,2,39,1.02,4,236 +15764,68787921,Brooklyn,Bedford-Stuyvesant,40.68962,-73.92345999999999,Private room,37,3,40,1.06,4,212 +15765,2838615,Brooklyn,Williamsburg,40.711209999999994,-73.96698,Entire home/apt,239,3,5,0.13,1,0 +15766,69189948,Manhattan,Washington Heights,40.84848,-73.9343,Private room,75,2,167,4.6,3,310 +15767,69355658,Manhattan,Gramercy,40.73328,-73.9859,Private room,90,3,23,0.6,1,0 +15768,4497670,Manhattan,Inwood,40.86927,-73.91719,Private room,46,7,1,0.03,1,0 +15769,69366248,Manhattan,Upper West Side,40.8001,-73.9658,Private room,35,45,0,,1,0 +15770,5895565,Brooklyn,Flatbush,40.64123,-73.96289,Entire home/apt,85,21,0,,1,0 +15771,4549084,Manhattan,Hell's Kitchen,40.75657,-73.9942,Entire home/apt,175,3,59,1.63,1,14 +15772,10135994,Queens,Bayside,40.73975,-73.76156999999999,Private room,60,1,0,,1,0 +15773,16098958,Manhattan,Financial District,40.70555,-74.00811999999999,Entire home/apt,155,30,1,0.03,96,335 +15774,69384130,Manhattan,Midtown,40.75227,-73.97351,Entire home/apt,143,1,1,0.03,1,0 +15775,69391155,Manhattan,East Village,40.73167,-73.98581,Entire home/apt,140,7,0,,1,0 +15776,68388626,Manhattan,Upper West Side,40.784909999999996,-73.97447,Entire home/apt,120,2,4,0.11,1,0 +15777,48671504,Queens,Cambria Heights,40.68891,-73.73531,Entire home/apt,79,2,90,2.35,1,331 +15778,52630170,Manhattan,Harlem,40.8033,-73.95770999999999,Private room,50,3,2,0.05,1,0 +15779,69427329,Queens,Elmhurst,40.73854,-73.87406999999999,Private room,289,2,115,2.99,6,280 +15780,11811612,Brooklyn,Flatbush,40.65392,-73.95364000000001,Entire home/apt,62,15,7,0.19,1,0 +15781,69433039,Queens,Sunnyside,40.73852,-73.92777,Private room,85,10,27,0.71,1,125 +15782,9784153,Brooklyn,Clinton Hill,40.68752,-73.9618,Private room,99,3,0,,1,0 +15783,69435907,Brooklyn,East Flatbush,40.65886,-73.91919,Private room,50,2,149,3.86,1,92 +15784,7465850,Brooklyn,Bushwick,40.69761,-73.92495,Entire home/apt,120,4,43,1.15,1,243 +15785,69255438,Brooklyn,Crown Heights,40.67828,-73.95051,Entire home/apt,180,1,1,0.03,1,0 +15786,69446151,Manhattan,Hell's Kitchen,40.757259999999995,-73.9953,Entire home/apt,90,5,1,0.06,1,0 +15787,3311487,Brooklyn,Williamsburg,40.71165,-73.96321999999999,Private room,80,1,0,,3,0 +15788,69457013,Manhattan,Upper West Side,40.79768,-73.9633,Private room,49,30,0,,1,0 +15789,4979093,Brooklyn,Williamsburg,40.70898,-73.95085999999999,Private room,90,3,1,0.05,1,0 +15790,37521233,Manhattan,Chelsea,40.75053,-73.99685,Private room,55,2,5,0.13,1,0 +15791,65621401,Queens,Ditmars Steinway,40.778220000000005,-73.90895,Private room,49,1,7,0.18,1,341 +15792,20892338,Manhattan,Harlem,40.820640000000004,-73.94646,Entire home/apt,105,2,3,0.08,1,0 +15793,69507287,Bronx,Wakefield,40.888709999999996,-73.86175,Private room,40,1,151,4.01,1,338 +15794,33363604,Manhattan,Harlem,40.819340000000004,-73.95668,Private room,50,2,0,,1,0 +15795,1722054,Queens,Long Island City,40.74657,-73.94555,Entire home/apt,120,5,1,0.03,1,0 +15796,50533072,Manhattan,East Village,40.72591,-73.97946999999999,Private room,90,1,3,0.08,1,0 +15797,6513527,Brooklyn,Williamsburg,40.70585,-73.94178000000001,Entire home/apt,110,6,4,0.15,1,0 +15798,45595980,Manhattan,Midtown,40.760490000000004,-73.96621,Entire home/apt,140,30,5,0.15,12,290 +15799,48154615,Queens,Astoria,40.75735,-73.92134,Entire home/apt,125,3,21,0.58,1,345 +15800,69545387,Manhattan,Midtown,40.76628,-73.98308,Entire home/apt,95,14,3,0.13,1,159 +15801,18111963,Manhattan,Washington Heights,40.84205,-73.93715999999999,Entire home/apt,75,5,0,,1,0 +15802,69548489,Bronx,Pelham Gardens,40.86412,-73.84664000000001,Entire home/apt,75,2,92,2.45,1,265 +15803,280830,Manhattan,Hell's Kitchen,40.76153,-73.98915,Entire home/apt,244,2,176,4.57,1,282 +15804,57230304,Queens,Elmhurst,40.74037,-73.8861,Private room,75,1,2,0.92,3,351 +15805,69598657,Manhattan,Chelsea,40.75094,-73.99748000000001,Private room,75,2,115,2.99,1,37 +15806,390251,Manhattan,Harlem,40.799859999999995,-73.95387,Private room,105,2,5,0.36,4,15 +15807,17239096,Brooklyn,Williamsburg,40.71262,-73.94466,Private room,100,2,6,0.28,1,0 +15808,29859280,Manhattan,Gramercy,40.7367,-73.98099,Entire home/apt,150,2,13,0.34,1,26 +15809,69668616,Bronx,Concourse,40.82575,-73.92421,Entire home/apt,175,1,0,,1,0 +15810,69677082,Manhattan,Washington Heights,40.84278,-73.93916,Private room,35,3,3,0.08,1,0 +15811,11725608,Manhattan,Washington Heights,40.84021,-73.94191,Private room,51,3,68,1.78,2,313 +15812,64350843,Manhattan,Upper East Side,40.77166,-73.95796999999999,Private room,105,14,7,0.19,1,29 +15813,59375053,Brooklyn,Williamsburg,40.70766,-73.94767,Private room,80,2,2,0.05,1,0 +15814,4929873,Manhattan,East Village,40.720729999999996,-73.97839,Private room,84,3,163,4.22,1,294 +15815,21467726,Brooklyn,Williamsburg,40.702940000000005,-73.93711,Private room,70,1,10,0.29,2,281 +15816,66978896,Brooklyn,Bushwick,40.691590000000005,-73.91171,Entire home/apt,70,3,26,0.67,2,206 +15817,69702850,Brooklyn,Greenpoint,40.72453,-73.95529,Entire home/apt,195,7,0,,1,0 +15818,67311188,Manhattan,East Village,40.72125,-73.98058,Entire home/apt,150,5,1,0.04,1,0 +15819,69715276,Manhattan,Upper West Side,40.798429999999996,-73.96404,Private room,100,1,0,,2,0 +15820,69715276,Manhattan,Upper West Side,40.79806,-73.96167,Private room,100,1,1,0.03,2,0 +15821,3231109,Manhattan,Morningside Heights,40.81127,-73.95922,Private room,85,3,9,0.83,2,142 +15822,21221697,Brooklyn,Clinton Hill,40.68444,-73.96285,Entire home/apt,225,3,95,2.48,1,122 +15823,69782291,Manhattan,East Village,40.7291,-73.98628000000001,Private room,120,5,13,0.34,1,0 +15824,5826163,Manhattan,Lower East Side,40.71989,-73.98557,Private room,90,4,1,0.42,1,90 +15825,69794747,Brooklyn,Flatbush,40.64159,-73.95985,Entire home/apt,175,3,96,2.5,1,209 +15826,66469868,Manhattan,Washington Heights,40.83344,-73.94442,Private room,65,2,46,1.2,1,72 +15827,8416362,Queens,Long Island City,40.74321,-73.95533,Entire home/apt,260,21,17,0.46,1,42 +15828,1672734,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93862,Entire home/apt,225,2,33,0.85,1,1 +15829,42413378,Brooklyn,South Slope,40.66548,-73.98196,Entire home/apt,135,3,148,3.84,2,91 +15830,25971488,Brooklyn,Brooklyn Heights,40.69299,-73.99283,Private room,135,1,0,,1,0 +15831,140226,Brooklyn,Williamsburg,40.71764,-73.95291,Entire home/apt,195,3,23,0.67,1,225 +15832,15867885,Manhattan,Two Bridges,40.71114,-73.99874,Private room,99,2,3,0.08,1,0 +15833,69852641,Manhattan,Hell's Kitchen,40.76303,-73.98767,Entire home/apt,1000,2,24,0.71,3,274 +15834,9631746,Manhattan,Hell's Kitchen,40.7592,-73.99313000000001,Entire home/apt,177,25,21,0.65,1,10 +15835,9472822,Manhattan,Harlem,40.81995,-73.95266,Private room,59,1,0,,1,0 +15836,16098958,Manhattan,Upper East Side,40.77725,-73.95137,Entire home/apt,190,30,3,0.08,96,330 +15837,69852641,Manhattan,Hell's Kitchen,40.763000000000005,-73.98642,Entire home/apt,1000,2,23,0.7,3,240 +15838,25233652,Brooklyn,Williamsburg,40.712790000000005,-73.96291,Private room,80,2,6,0.16,1,0 +15839,69866168,Queens,Jamaica,40.691720000000004,-73.79495,Private room,60,1,109,2.84,1,98 +15840,30789837,Manhattan,Gramercy,40.73682,-73.98336,Entire home/apt,195,5,1,0.03,1,0 +15841,21091779,Brooklyn,Bedford-Stuyvesant,40.685520000000004,-73.9227,Private room,60,1,104,2.68,3,293 +15842,7609268,Brooklyn,Sunset Park,40.65038,-74.00551,Entire home/apt,99,3,25,0.73,1,12 +15843,545273,Brooklyn,Williamsburg,40.71728,-73.94345,Private room,79,5,0,,1,0 +15844,40332331,Brooklyn,Windsor Terrace,40.65827,-73.97962,Entire home/apt,125,2,117,3.08,2,262 +15845,69890625,Brooklyn,Clinton Hill,40.683890000000005,-73.96025999999999,Private room,89,1,15,0.43,1,179 +15846,69891208,Manhattan,Washington Heights,40.85147,-73.93618000000001,Private room,55,3,5,0.14,1,0 +15847,34034047,Queens,Ditmars Steinway,40.774229999999996,-73.90715,Entire home/apt,130,3,17,0.45,1,11 +15848,13007287,Brooklyn,Bedford-Stuyvesant,40.681470000000004,-73.95814,Private room,70,3,36,0.95,1,0 +15849,33816358,Brooklyn,Prospect Heights,40.677640000000004,-73.9647,Entire home/apt,110,3,8,0.23,1,0 +15850,69944410,Manhattan,East Village,40.730540000000005,-73.98339,Private room,100,7,1,0.03,1,0 +15851,6707228,Brooklyn,Williamsburg,40.70748,-73.9461,Private room,145,1,0,,1,0 +15852,5346314,Manhattan,Chelsea,40.742670000000004,-73.99915,Entire home/apt,195,3,1,0.03,1,0 +15853,69989416,Queens,Flushing,40.7555,-73.82712,Private room,30,4,54,1.39,1,64 +15854,15398860,Brooklyn,South Slope,40.666309999999996,-73.98268,Private room,50,20,0,,1,0 +15855,18922352,Queens,Astoria,40.76368,-73.91518,Entire home/apt,68,4,11,0.31,1,0 +15856,13023370,Manhattan,Lower East Side,40.71902,-73.98506,Private room,90,1,6,0.16,1,0 +15857,7159107,Manhattan,Harlem,40.82563,-73.94091,Entire home/apt,85,3,1,0.06,1,0 +15858,28303435,Brooklyn,Prospect Heights,40.679829999999995,-73.96931,Entire home/apt,200,1,43,1.13,1,232 +15859,3510993,Brooklyn,Greenpoint,40.72311,-73.94184,Entire home/apt,100,7,0,,1,0 +15860,70026602,Manhattan,East Village,40.72817,-73.98040999999999,Private room,150,2,18,0.47,1,0 +15861,28340943,Manhattan,Upper West Side,40.77861,-73.98336,Entire home/apt,199,1,0,,1,0 +15862,70030943,Manhattan,East Village,40.72358,-73.97593,Private room,60,1,2,0.05,1,0 +15863,1106731,Queens,Rockaway Beach,40.58943,-73.81192,Entire home/apt,135,2,27,0.72,2,0 +15864,70039705,Manhattan,Upper West Side,40.8032,-73.96495,Private room,100,1,5,0.13,1,0 +15865,22541573,Manhattan,Upper East Side,40.77102,-73.95873,Entire home/apt,163,30,1,0.05,87,350 +15866,22541573,Manhattan,Upper East Side,40.76368,-73.96153000000001,Entire home/apt,187,30,2,0.09,87,287 +15867,22541573,Manhattan,Upper East Side,40.76297,-73.96252,Entire home/apt,225,30,1,0.05,87,365 +15868,3404004,Brooklyn,Brooklyn Heights,40.698159999999994,-73.99361,Entire home/apt,120,1,1,0.03,1,0 +15869,1216362,Brooklyn,Flatbush,40.65424,-73.96008,Private room,73,1,43,1.37,4,188 +15870,10273704,Brooklyn,Fort Greene,40.68812,-73.97666,Private room,100,3,148,3.83,2,42 +15871,70065232,Brooklyn,Williamsburg,40.71154,-73.95795,Entire home/apt,99,5,1,0.07,1,0 +15872,70058270,Brooklyn,Crown Heights,40.66618,-73.93156,Entire home/apt,300,3,39,1.03,4,259 +15873,70082670,Manhattan,Morningside Heights,40.80539,-73.96409,Entire home/apt,92,1,2,0.05,1,0 +15874,2238348,Brooklyn,Williamsburg,40.71311,-73.94015999999999,Private room,42,8,0,,1,0 +15875,7443904,Manhattan,Upper East Side,40.77912,-73.95594,Private room,100,3,8,0.21,1,0 +15876,51663418,Queens,Ditmars Steinway,40.77329,-73.9163,Private room,40,14,1,0.03,1,0 +15877,62225580,Manhattan,West Village,40.733259999999994,-74.00844000000001,Entire home/apt,225,14,0,,1,0 +15878,23144316,Brooklyn,Park Slope,40.66896,-73.97641,Entire home/apt,170,13,4,0.11,1,46 +15879,8752988,Queens,Astoria,40.7613,-73.9153,Entire home/apt,125,1,0,,1,0 +15880,70164336,Brooklyn,Greenpoint,40.732820000000004,-73.9564,Entire home/apt,109,30,9,0.26,1,0 +15881,61391963,Manhattan,Hell's Kitchen,40.76014,-73.99039,Entire home/apt,150,30,6,0.32,91,126 +15882,10737943,Manhattan,Upper West Side,40.78528,-73.97623,Private room,50,30,3,0.09,10,365 +15883,46938101,Bronx,Concourse,40.83211,-73.92052,Private room,49,1,33,0.87,1,348 +15884,70181422,Brooklyn,Windsor Terrace,40.65341,-73.97877,Entire home/apt,265,2,8,0.21,4,0 +15885,70198067,Manhattan,Financial District,40.71028,-74.00929000000001,Private room,80,1,0,,1,0 +15886,64062688,Brooklyn,East New York,40.67153,-73.89112,Private room,44,3,4,0.11,1,0 +15887,44351733,Manhattan,Tribeca,40.71948,-74.00516999999999,Private room,260,4,22,0.58,1,3 +15888,61391963,Manhattan,Midtown,40.75755,-73.9666,Entire home/apt,133,30,3,0.1,91,342 +15889,3248699,Queens,Ditmars Steinway,40.771409999999996,-73.91415,Entire home/apt,80,7,15,0.41,1,0 +15890,70208173,Brooklyn,Williamsburg,40.71267,-73.95366999999999,Private room,1000,35,6,0.16,1,365 +15891,68322243,Manhattan,Upper West Side,40.80129,-73.96611,Entire home/apt,154,4,3,0.08,1,0 +15892,700224,Brooklyn,Gowanus,40.68349,-73.98518,Entire home/apt,150,29,9,0.27,4,326 +15893,2344389,Manhattan,Hell's Kitchen,40.76205,-73.9888,Private room,150,5,0,,1,0 +15894,61391963,Manhattan,Midtown,40.755720000000004,-73.96936,Entire home/apt,125,30,7,0.23,91,149 +15895,31237380,Manhattan,Harlem,40.82183,-73.9378,Private room,60,2,1,0.03,1,0 +15896,70235809,Brooklyn,Bushwick,40.69301,-73.92683000000001,Private room,95,1,0,,1,0 +15897,49622928,Manhattan,Chelsea,40.74066,-73.99895,Entire home/apt,75,1,132,4.58,1,317 +15898,70244331,Manhattan,Chelsea,40.74078,-73.99923000000001,Entire home/apt,100,1,198,5.16,1,269 +15899,70251988,Manhattan,Upper East Side,40.78147,-73.95284000000001,Entire home/apt,100,365,27,0.78,1,17 +15900,33906660,Manhattan,Harlem,40.8242,-73.94776999999999,Private room,65,1,154,4.03,1,361 +15901,18975770,Manhattan,West Village,40.73064,-74.00350999999999,Entire home/apt,200,6,5,0.24,2,17 +15902,1491770,Manhattan,Midtown,40.76386,-73.97702,Entire home/apt,180,3,1,0.03,1,0 +15903,33950089,Queens,Long Island City,40.75166,-73.94028,Private room,60,1,36,1.05,1,316 +15904,15445748,Queens,Sunnyside,40.73748,-73.92894,Private room,33,7,6,0.18,1,337 +15905,1572315,Manhattan,Murray Hill,40.74775,-73.97702,Private room,112,3,23,0.61,1,18 +15906,70321716,Brooklyn,Crown Heights,40.67212,-73.9439,Entire home/apt,150,15,0,,1,0 +15907,9679850,Manhattan,West Village,40.73361,-74.00218000000001,Entire home/apt,230,2,39,1.03,1,0 +15908,7953376,Brooklyn,Boerum Hill,40.68558,-73.98065,Private room,65,1,0,,1,0 +15909,29417940,Manhattan,Upper West Side,40.77814,-73.97627,Entire home/apt,375,2,2,0.06,2,0 +15910,7977178,Manhattan,SoHo,40.72806,-74.00381,Private room,130,3,18,0.49,3,304 +15911,70333355,Queens,Ditmars Steinway,40.77852,-73.90836,Entire home/apt,400,1,0,,1,0 +15912,51684417,Manhattan,Upper West Side,40.80032,-73.95884000000001,Private room,120,1,1,0.03,2,0 +15913,70342170,Manhattan,Midtown,40.753370000000004,-73.97289,Entire home/apt,900,3,0,,1,358 +15914,9293730,Manhattan,Upper East Side,40.76875,-73.95723000000001,Entire home/apt,150,30,12,0.35,16,325 +15915,70358943,Queens,Ditmars Steinway,40.78192,-73.91439,Private room,40,1,0,,1,0 +15916,26295451,Brooklyn,Bedford-Stuyvesant,40.68743,-73.93045,Private room,150,1,14,0.4,1,0 +15917,817948,Brooklyn,Flatbush,40.638740000000006,-73.95645,Private room,30,1,1,0.03,1,0 +15918,22541573,Manhattan,Chelsea,40.73887,-73.99983,Entire home/apt,191,30,1,0.09,87,323 +15919,22541573,Manhattan,Chelsea,40.75225,-73.99508,Entire home/apt,219,30,5,0.24,87,344 +15920,8636489,Brooklyn,Williamsburg,40.717009999999995,-73.95685,Entire home/apt,250,5,14,0.41,1,0 +15921,1233402,Brooklyn,Williamsburg,40.7125,-73.9529,Entire home/apt,180,3,3,0.08,1,0 +15922,51501835,Manhattan,Hell's Kitchen,40.76313,-73.99481999999999,Entire home/apt,115,30,4,0.12,31,65 +15923,70382366,Manhattan,Midtown,40.75347,-73.97293,Private room,145,1,0,,1,0 +15924,30368670,Manhattan,Hell's Kitchen,40.76474,-73.99154,Entire home/apt,399,180,29,0.84,2,0 +15925,29959914,Brooklyn,Bushwick,40.68616,-73.91543,Private room,52,1,3,0.08,1,0 +15926,70396243,Manhattan,Washington Heights,40.855579999999996,-73.93777,Entire home/apt,95,1,104,3.3,1,81 +15927,4391441,Brooklyn,Williamsburg,40.70678,-73.94918,Entire home/apt,190,2,84,2.19,1,8 +15928,70409953,Manhattan,Chelsea,40.748490000000004,-73.98957,Entire home/apt,480,5,106,2.99,1,263 +15929,70419222,Manhattan,Upper West Side,40.78458,-73.97836,Entire home/apt,180,3,2,0.06,1,0 +15930,8534626,Brooklyn,Greenpoint,40.72083,-73.95401,Entire home/apt,150,2,3,0.08,1,0 +15931,1909320,Brooklyn,Williamsburg,40.7155,-73.96188000000001,Private room,150,1,6,0.16,3,364 +15932,70429659,Manhattan,Greenwich Village,40.736940000000004,-73.99587,Private room,140,1,78,2.23,1,321 +15933,11452065,Brooklyn,Borough Park,40.64052,-73.99668,Private room,70,2,1,0.03,1,0 +15934,17204066,Brooklyn,Greenpoint,40.72846,-73.95033000000001,Private room,70,2,21,0.54,1,4 +15935,16098958,Manhattan,Murray Hill,40.74859,-73.97243,Entire home/apt,197,30,1,0.3,96,325 +15936,807404,Manhattan,Gramercy,40.73831,-73.98319000000001,Entire home/apt,310,4,0,,1,0 +15937,21315876,Manhattan,East Village,40.72472,-73.98665,Entire home/apt,128,1,28,0.79,2,178 +15938,3948462,Manhattan,Chelsea,40.73924,-73.99825,Entire home/apt,150,2,4,0.11,1,0 +15939,65459567,Brooklyn,Bushwick,40.68651,-73.91185,Private room,26,14,0,,1,0 +15940,2629017,Queens,Ridgewood,40.70581,-73.90111999999999,Entire home/apt,75,2,54,1.99,1,64 +15941,22541573,Manhattan,Chelsea,40.74472,-73.99266,Entire home/apt,280,30,3,0.1,87,364 +15942,31757138,Manhattan,West Village,40.730090000000004,-74.00222,Private room,93,1,0,,1,0 +15943,16098958,Manhattan,Upper East Side,40.776920000000004,-73.95125999999999,Entire home/apt,390,30,1,0.07,96,239 +15944,1475015,Manhattan,Midtown,40.757540000000006,-73.96943,Entire home/apt,115,30,0,,52,343 +15945,22541573,Manhattan,Hell's Kitchen,40.761520000000004,-73.98678000000001,Entire home/apt,256,30,3,0.09,87,358 +15946,16476167,Manhattan,Midtown,40.745129999999996,-73.98475,Entire home/apt,250,366,0,,1,365 +15947,70583598,Manhattan,Chelsea,40.74303,-73.99797,Entire home/apt,200,2,1,0.03,1,0 +15948,70594777,Brooklyn,Clinton Hill,40.68873,-73.96523,Entire home/apt,150,7,4,0.11,1,0 +15949,63790712,Manhattan,Harlem,40.804759999999995,-73.95416,Private room,41,21,2,0.16,2,0 +15950,7560581,Manhattan,Hell's Kitchen,40.76274,-73.98733,Private room,100,4,0,,1,0 +15951,70637655,Manhattan,Upper West Side,40.80288,-73.96629,Private room,75,1,1,0.03,1,0 +15952,70638431,Manhattan,Chelsea,40.750409999999995,-73.99489,Entire home/apt,300,1,2,0.05,1,0 +15953,70640302,Brooklyn,Flatbush,40.65468,-73.95703,Private room,50,3,3,0.08,1,0 +15954,10259868,Brooklyn,Crown Heights,40.66676,-73.95991,Private room,85,7,0,,1,0 +15955,17984997,Brooklyn,South Slope,40.66757,-73.98498000000001,Entire home/apt,475,3,0,,1,101 +15956,70651602,Manhattan,East Harlem,40.785759999999996,-73.94211,Private room,50,1,4,0.1,1,0 +15957,27885164,Queens,Elmhurst,40.741820000000004,-73.88875,Private room,50,1,0,,1,0 +15958,70674019,Brooklyn,Bushwick,40.69968,-73.92645,Entire home/apt,179,7,117,3.04,2,137 +15959,37782666,Manhattan,Lower East Side,40.71366,-73.98799,Private room,72,4,59,1.56,1,83 +15960,1411232,Manhattan,East Village,40.7266,-73.97872,Entire home/apt,150,1,3,0.08,1,0 +15961,70686576,Brooklyn,Fort Hamilton,40.61707,-74.03473000000001,Entire home/apt,110,1,1,0.03,1,0 +15962,70646170,Manhattan,Upper West Side,40.79167,-73.97273,Entire home/apt,200,2,6,0.16,1,0 +15963,20559017,Manhattan,East Harlem,40.7862,-73.94413,Private room,50,30,1,0.04,9,333 +15964,27634654,Brooklyn,Bay Ridge,40.6311,-74.03022,Private room,35,30,5,0.13,2,0 +15965,16414492,Manhattan,Washington Heights,40.83873,-73.94118,Private room,45,1,6,0.16,1,0 +15966,2286611,Brooklyn,South Slope,40.66455,-73.98479,Entire home/apt,195,3,6,0.16,1,0 +15967,5317451,Manhattan,Upper West Side,40.783970000000004,-73.97063,Entire home/apt,90,8,1,0.03,1,0 +15968,37241656,Brooklyn,Williamsburg,40.71638,-73.95684,Entire home/apt,325,2,27,0.72,1,0 +15969,4090856,Brooklyn,Clinton Hill,40.68425,-73.96455,Entire home/apt,100,3,2,0.09,1,8 +15970,8255336,Manhattan,SoHo,40.72258,-74.00358,Private room,85,30,5,0.14,2,69 +15971,2464187,Staten Island,St. George,40.63834,-74.08291,Private room,40,1,5,0.14,2,0 +15972,44665470,Manhattan,Harlem,40.80794,-73.9415,Private room,80,1,3,0.08,1,0 +15973,21375734,Manhattan,West Village,40.731159999999996,-74.00211999999999,Private room,149,1,6,0.18,1,0 +15974,8635103,Manhattan,Harlem,40.82125,-73.95,Private room,67,4,1,0.03,1,0 +15975,25611454,Brooklyn,East Flatbush,40.65983,-73.93472,Private room,80,3,57,1.58,1,14 +15976,16300594,Brooklyn,Williamsburg,40.71784,-73.95265,Private room,80,4,16,0.43,3,0 +15977,70058270,Brooklyn,Crown Heights,40.66623,-73.93113000000001,Entire home/apt,275,3,27,0.71,4,271 +15978,70827984,Brooklyn,East New York,40.66921,-73.87796999999999,Entire home/apt,123,4,63,1.67,1,67 +15979,70828773,Manhattan,East Harlem,40.796170000000004,-73.94735,Entire home/apt,179,1,1,0.03,1,0 +15980,951917,Brooklyn,Sunset Park,40.662240000000004,-73.99805,Entire home/apt,196,365,4,0.12,1,365 +15981,67359538,Manhattan,Hell's Kitchen,40.75873,-73.99197,Private room,180,1,28,0.73,1,0 +15982,70839024,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94843,Entire home/apt,500,2,0,,1,0 +15983,26476746,Manhattan,Lower East Side,40.72118,-73.98697,Entire home/apt,140,4,6,0.16,1,0 +15984,20220930,Manhattan,Harlem,40.82143,-73.95651,Private room,59,7,1,0.03,1,0 +15985,3988031,Manhattan,Hell's Kitchen,40.761720000000004,-73.99706,Entire home/apt,200,1,6,0.16,1,0 +15986,758441,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.91989000000001,Private room,165,1,2,0.09,4,342 +15987,19393925,Brooklyn,Williamsburg,40.70973,-73.9626,Entire home/apt,230,5,0,,1,0 +15988,28680349,Brooklyn,Greenpoint,40.725770000000004,-73.94981,Private room,90,1,7,0.19,1,0 +15989,1289635,Queens,Long Island City,40.74069,-73.95604,Entire home/apt,200,5,4,0.11,1,16 +15990,58782992,Manhattan,Harlem,40.822720000000004,-73.94502,Entire home/apt,450,31,56,1.5,2,341 +15991,3718821,Manhattan,Harlem,40.81301,-73.94955,Private room,120,2,44,1.18,1,96 +15992,65809485,Queens,Flushing,40.74954,-73.82829,Private room,60,5,62,1.64,12,174 +15993,69711528,Bronx,Parkchester,40.830490000000005,-73.87354,Shared room,51,3,9,0.26,2,89 +15994,51716739,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93536,Entire home/apt,200,2,80,2.09,3,286 +15995,406843,Manhattan,East Village,40.72889,-73.98006,Entire home/apt,250,3,33,0.9,2,80 +15996,14035480,Brooklyn,Crown Heights,40.674929999999996,-73.96195,Entire home/apt,160,3,0,,1,0 +15997,71093679,Manhattan,Upper West Side,40.794579999999996,-73.97077,Entire home/apt,180,2,7,0.18,1,0 +15998,49836177,Brooklyn,Williamsburg,40.71264,-73.94751,Private room,66,1,1,0.03,1,0 +15999,33419138,Manhattan,Upper West Side,40.78175,-73.97576,Entire home/apt,180,1,1,0.03,1,0 +16000,36948675,Manhattan,East Village,40.72886,-73.9863,Private room,65,18,6,0.17,1,0 +16001,1475015,Manhattan,Kips Bay,40.741409999999995,-73.97868000000001,Entire home/apt,87,30,2,0.16,52,365 +16002,14131713,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93557,Private room,60,7,1,0.03,2,0 +16003,1386468,Brooklyn,Bushwick,40.6898,-73.91774000000001,Entire home/apt,124,2,104,2.75,1,237 +16004,71140140,Manhattan,Lower East Side,40.719809999999995,-73.99154,Entire home/apt,225,2,1,0.03,1,0 +16005,71152156,Manhattan,Inwood,40.86612,-73.9189,Entire home/apt,77,6,1,0.03,1,0 +16006,71150679,Brooklyn,Bushwick,40.69021,-73.92206999999999,Private room,79,2,57,1.52,2,127 +16007,30283594,Manhattan,Hell's Kitchen,40.76222,-73.99889,Entire home/apt,239,30,2,0.1,121,365 +16008,71150679,Brooklyn,Bushwick,40.69024,-73.92197,Private room,65,2,77,2.04,2,116 +16009,41134220,Brooklyn,Vinegar Hill,40.70196,-73.98297,Entire home/apt,170,30,0,,1,270 +16010,3664485,Manhattan,Hell's Kitchen,40.76455,-73.99128,Shared room,30,3,0,,1,0 +16011,70181422,Brooklyn,Windsor Terrace,40.65254,-73.98017,Private room,72,1,4,0.1,4,0 +16012,24747678,Brooklyn,Bushwick,40.7029,-73.9296,Private room,75,3,5,0.14,1,0 +16013,15515731,Brooklyn,Bedford-Stuyvesant,40.68645,-73.93994,Private room,35,5,1,0.03,1,0 +16014,69232570,Brooklyn,Bushwick,40.70219,-73.9227,Private room,45,1,98,2.58,1,16 +16015,24517762,Manhattan,Upper West Side,40.80045,-73.96119,Private room,67,3,5,0.13,1,0 +16016,1413546,Manhattan,Chelsea,40.7453,-73.99333,Entire home/apt,700,30,1,0.03,2,236 +16017,3710740,Manhattan,Harlem,40.818059999999996,-73.95374,Entire home/apt,150,1,49,1.3,2,0 +16018,25733361,Brooklyn,Bedford-Stuyvesant,40.70017,-73.94357,Entire home/apt,115,3,2,0.05,1,0 +16019,12160792,Brooklyn,Brooklyn Heights,40.691829999999996,-73.99592,Entire home/apt,150,1,107,2.84,1,75 +16020,2714164,Brooklyn,Greenpoint,40.72311,-73.94489,Private room,50,2,15,0.55,2,27 +16021,62172448,Manhattan,Upper East Side,40.76635,-73.95683000000001,Private room,60,5,1,0.03,2,0 +16022,33622924,Manhattan,Harlem,40.83018,-73.9483,Private room,50,1,116,3.06,4,352 +16023,71211231,Bronx,Fordham,40.85396,-73.89872,Private room,34,1,2,0.05,1,0 +16024,23050317,Brooklyn,Williamsburg,40.70944,-73.9492,Entire home/apt,100,7,6,0.16,1,0 +16025,11363395,Manhattan,Upper West Side,40.77998,-73.98018,Entire home/apt,125,1,0,,1,0 +16026,5226800,Queens,Ditmars Steinway,40.773740000000004,-73.91903,Private room,100,5,0,,1,0 +16027,71241926,Manhattan,Financial District,40.709509999999995,-74.01476,Entire home/apt,125,32,99,2.73,1,203 +16028,21262993,Brooklyn,Bushwick,40.70267,-73.92383000000001,Private room,45,1,2,0.05,1,0 +16029,321386,Manhattan,East Village,40.728590000000004,-73.98348,Entire home/apt,198,2,32,0.84,1,0 +16030,4534893,Manhattan,East Village,40.72501,-73.98776,Private room,150,1,5,0.13,4,121 +16031,28370925,Brooklyn,Sunset Park,40.638329999999996,-74.01794,Private room,39,5,89,2.34,4,0 +16032,51501835,Manhattan,Hell's Kitchen,40.76504,-73.99491,Entire home/apt,150,30,4,0.12,31,339 +16033,11071244,Queens,Long Island City,40.76591,-73.93434,Private room,80,2,49,1.29,1,0 +16034,71188543,Manhattan,Washington Heights,40.849090000000004,-73.93829000000001,Private room,46,2,2,0.08,1,0 +16035,71312760,Staten Island,Richmondtown,40.57093,-74.12429,Entire home/apt,78,3,79,2.56,1,300 +16036,28709982,Brooklyn,Williamsburg,40.718270000000004,-73.95494000000001,Entire home/apt,219,3,51,1.36,3,71 +16037,30101336,Manhattan,Upper West Side,40.798320000000004,-73.96291,Private room,145,2,1,0.11,1,180 +16038,37219626,Manhattan,Hell's Kitchen,40.76319,-73.98693,Entire home/apt,220,3,0,,1,0 +16039,71321195,Manhattan,Chelsea,40.73737,-73.99475,Entire home/apt,225,1,0,,1,0 +16040,71315006,Manhattan,Upper West Side,40.78528,-73.97111,Entire home/apt,2000,20,0,,1,0 +16041,9991075,Manhattan,Upper West Side,40.78116,-73.98104000000001,Entire home/apt,175,1,11,0.33,2,0 +16042,160139,Brooklyn,Williamsburg,40.71559,-73.96385,Entire home/apt,220,4,42,1.11,1,318 +16043,25749667,Brooklyn,Flatbush,40.65255,-73.96226999999999,Shared room,85,1,1,0.03,1,0 +16044,5265824,Brooklyn,Clinton Hill,40.69093,-73.96507,Private room,77,5,0,,1,0 +16045,283395,Manhattan,Murray Hill,40.74933,-73.97936999999999,Private room,110,1,31,0.81,2,189 +16046,68139551,Queens,Maspeth,40.72075,-73.89496,Private room,58,1,60,1.57,3,346 +16047,203039,Manhattan,Upper West Side,40.80077,-73.9681,Entire home/apt,350,6,5,0.14,1,92 +16048,71382423,Manhattan,Lower East Side,40.71772,-73.98881999999999,Entire home/apt,329,3,104,2.79,1,205 +16049,68139551,Queens,Maspeth,40.72143,-73.8932,Private room,58,1,37,0.97,3,364 +16050,68139551,Queens,Maspeth,40.72103,-73.89458,Private room,60,1,30,0.78,3,364 +16051,63560790,Queens,Kew Gardens,40.705420000000004,-73.82979,Shared room,43,1,8,0.73,2,362 +16052,22846970,Brooklyn,Prospect Heights,40.675,-73.96406,Private room,88,2,46,1.19,1,0 +16053,71402091,Brooklyn,Flatbush,40.65421,-73.95945,Entire home/apt,90,4,7,0.18,1,0 +16054,45469626,Brooklyn,Sunset Park,40.64748,-73.99802,Private room,41,3,2,0.05,1,0 +16055,15246785,Brooklyn,Bedford-Stuyvesant,40.7001,-73.94326,Private room,65,4,36,0.96,1,80 +16056,3454707,Brooklyn,Bushwick,40.70101,-73.92505,Entire home/apt,95,5,0,,1,0 +16057,14885449,Manhattan,Financial District,40.70725,-74.00206,Entire home/apt,160,6,2,0.05,1,0 +16058,727410,Brooklyn,Bedford-Stuyvesant,40.691159999999996,-73.96039,Entire home/apt,140,6,18,0.53,1,11 +16059,22541573,Manhattan,Upper East Side,40.77301,-73.95045,Entire home/apt,169,30,1,0.13,87,347 +16060,71499258,Manhattan,Upper West Side,40.80121,-73.96276999999999,Entire home/apt,115,10,2,0.09,1,4 +16061,52498520,Brooklyn,Bushwick,40.68622,-73.91026,Private room,67,1,20,0.53,1,365 +16062,70181422,Brooklyn,Windsor Terrace,40.65256,-73.9798,Private room,60,1,1,0.03,4,0 +16063,183504,Brooklyn,Greenpoint,40.73547,-73.9545,Private room,45,28,9,0.37,1,332 +16064,56752163,Manhattan,Lower East Side,40.71884,-73.99294,Private room,60,2,3,0.08,2,0 +16065,13347167,Manhattan,Upper East Side,40.77219,-73.95588000000001,Entire home/apt,142,30,2,0.15,29,319 +16066,1477622,Brooklyn,Williamsburg,40.72113,-73.95574,Entire home/apt,350,2,3,0.08,1,0 +16067,6069897,Manhattan,Harlem,40.822720000000004,-73.95144,Private room,40,29,2,0.08,1,0 +16068,21541169,Brooklyn,South Slope,40.6617,-73.98221,Private room,65,14,8,0.21,1,0 +16069,4386682,Queens,Ridgewood,40.702040000000004,-73.91068,Private room,50,3,4,0.15,3,0 +16070,4386682,Queens,Ridgewood,40.70435,-73.91207,Private room,42,7,3,0.09,3,0 +16071,71552588,Bronx,Fordham,40.86032,-73.88493000000001,Shared room,130,1,0,,1,365 +16072,6502531,Manhattan,Chelsea,40.74711,-73.99280999999999,Private room,100,1,2,0.05,2,65 +16073,16436459,Manhattan,Chelsea,40.74583,-74.00451,Entire home/apt,175,4,30,0.82,1,48 +16074,30045665,Manhattan,Hell's Kitchen,40.76039,-73.99028,Entire home/apt,399,2,80,2.11,1,212 +16075,37194964,Manhattan,Morningside Heights,40.81488,-73.95886,Entire home/apt,110,7,0,,1,0 +16076,29268760,Queens,Ridgewood,40.692840000000004,-73.90348,Private room,45,7,0,,1,0 +16077,2736755,Queens,Astoria,40.77091,-73.91875,Private room,40,2,36,0.96,2,0 +16078,49447536,Manhattan,Hell's Kitchen,40.75484,-73.9922,Private room,100,1,1,0.03,1,0 +16079,70058270,Brooklyn,Crown Heights,40.666290000000004,-73.93073000000001,Entire home/apt,575,3,33,1.12,4,259 +16080,2736755,Queens,Astoria,40.7691,-73.91994,Private room,63,7,1,0.03,2,0 +16081,7199306,Manhattan,Hell's Kitchen,40.76814,-73.98476,Entire home/apt,177,2,2,0.06,1,0 +16082,19726948,Manhattan,Lower East Side,40.721509999999995,-73.98814,Entire home/apt,158,2,145,4.81,1,193 +16083,29210997,Brooklyn,Red Hook,40.67498,-74.01169,Entire home/apt,400,3,11,0.29,1,6 +16084,124866,Brooklyn,Cobble Hill,40.68985,-73.99311,Entire home/apt,90,5,18,0.87,1,2 +16085,1422833,Manhattan,Lower East Side,40.7205,-73.98315,Entire home/apt,135,2,16,0.44,1,0 +16086,71665510,Brooklyn,Williamsburg,40.71685,-73.9615,Entire home/apt,200,2,4,0.15,1,318 +16087,1261588,Brooklyn,Crown Heights,40.67968,-73.9595,Entire home/apt,155,30,132,3.53,1,83 +16088,19866179,Manhattan,Two Bridges,40.71098,-73.99296,Private room,100,30,1,0.22,1,0 +16089,3807299,Manhattan,Greenwich Village,40.73418,-73.99338,Entire home/apt,315,3,5,0.16,1,38 +16090,4112409,Manhattan,East Harlem,40.79193,-73.9439,Shared room,45,1,52,1.41,1,347 +16091,1475855,Manhattan,Kips Bay,40.74358,-73.98096,Private room,125,3,0,,1,0 +16092,1921498,Manhattan,Washington Heights,40.845240000000004,-73.93508,Private room,49,90,17,0.49,3,142 +16093,4852748,Manhattan,Harlem,40.80577,-73.94615999999999,Entire home/apt,220,4,1,0.08,6,364 +16094,4852748,Manhattan,Harlem,40.80527,-73.94579,Private room,220,2,3,0.09,6,365 +16095,71717596,Queens,Rockaway Beach,40.58977,-73.81324000000001,Entire home/apt,100,2,50,1.31,1,40 +16096,31996442,Brooklyn,Clinton Hill,40.69475,-73.96848,Private room,70,1,3,0.08,1,0 +16097,10838145,Manhattan,Upper West Side,40.798,-73.96316999999999,Entire home/apt,74,2,8,0.21,1,0 +16098,3059285,Manhattan,Chinatown,40.71536,-73.99794,Entire home/apt,290,2,3,0.08,1,0 +16099,71754921,Brooklyn,Crown Heights,40.66789,-73.94351,Entire home/apt,100,1,0,,1,0 +16100,42835213,Brooklyn,East Flatbush,40.64645,-73.95047,Private room,85,4,42,1.46,2,35 +16101,10458139,Manhattan,West Village,40.73799,-74.00074000000001,Entire home/apt,199,31,81,2.36,1,85 +16102,71746226,Brooklyn,Williamsburg,40.707390000000004,-73.94318,Private room,65,2,1,0.03,1,0 +16103,23269902,Brooklyn,Crown Heights,40.672509999999996,-73.95334,Private room,45,2,26,1.23,1,45 +16104,53308963,Manhattan,Chinatown,40.71415,-73.99806,Private room,95,2,6,0.17,2,7 +16105,12127963,Manhattan,East Harlem,40.78804,-73.95382,Private room,95,5,4,0.11,1,0 +16106,30074012,Brooklyn,Flatbush,40.638870000000004,-73.96667,Entire home/apt,80,3,32,0.85,1,0 +16107,71838636,Manhattan,Chelsea,40.73596,-73.99228000000001,Entire home/apt,300,5,22,0.58,1,87 +16108,22541573,Manhattan,Financial District,40.70519,-74.0082,Entire home/apt,259,30,0,,87,302 +16109,33273074,Manhattan,Kips Bay,40.74139,-73.9783,Entire home/apt,120,2,7,0.18,1,0 +16110,69841552,Manhattan,SoHo,40.72625,-74.00199,Entire home/apt,150,3,40,1.05,1,4 +16111,65727695,Manhattan,Morningside Heights,40.816320000000005,-73.96007,Entire home/apt,120,2,2,0.06,1,0 +16112,10797290,Manhattan,Chelsea,40.744690000000006,-73.99858,Entire home/apt,225,1,32,0.87,1,0 +16113,22124777,Brooklyn,Williamsburg,40.70961,-73.96351999999999,Private room,100,1,37,1.07,1,0 +16114,1207773,Brooklyn,Williamsburg,40.70772,-73.95978000000001,Entire home/apt,160,3,13,0.35,2,0 +16115,71865037,Manhattan,Harlem,40.82032,-73.94457,Private room,49,3,0,,1,0 +16116,24278208,Manhattan,East Village,40.726690000000005,-73.98791999999999,Entire home/apt,150,3,35,0.92,1,0 +16117,3671013,Manhattan,Midtown,40.76232,-73.97614,Private room,100,2,0,,2,0 +16118,57574248,Manhattan,Midtown,40.7533,-73.97346,Entire home/apt,275,3,16,0.43,3,0 +16119,59093909,Brooklyn,Clinton Hill,40.69525,-73.96604,Private room,45,1,3,0.08,1,0 +16120,4909923,Brooklyn,Williamsburg,40.71293,-73.9603,Entire home/apt,195,3,54,1.42,1,97 +16121,71853402,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95245,Private room,100,1,14,0.37,2,304 +16122,71948176,Brooklyn,Bedford-Stuyvesant,40.689170000000004,-73.95528,Private room,1000,1,0,,1,0 +16123,9455699,Manhattan,Lower East Side,40.72033,-73.98767,Entire home/apt,195,1,9,0.24,1,0 +16124,48804458,Queens,Ridgewood,40.70432,-73.90015,Entire home/apt,87,5,133,3.5,2,49 +16125,14012039,Brooklyn,Flatbush,40.65359,-73.95631,Entire home/apt,120,3,3,0.08,1,0 +16126,57574248,Manhattan,Midtown,40.753029999999995,-73.97327,Entire home/apt,170,2,9,0.26,3,0 +16127,59552219,Manhattan,Financial District,40.70645,-74.01144000000001,Entire home/apt,160,7,2,0.05,1,0 +16128,923412,Brooklyn,South Slope,40.665729999999996,-73.98947,Private room,50,7,0,,1,0 +16129,5163395,Brooklyn,Williamsburg,40.70775,-73.94725,Private room,75,2,0,,1,0 +16130,18933388,Brooklyn,Crown Heights,40.67661,-73.95611,Entire home/apt,225,1,5,0.13,1,0 +16131,72019599,Brooklyn,Crown Heights,40.67218,-73.95368,Entire home/apt,125,2,70,1.85,1,132 +16132,57571805,Manhattan,Midtown,40.75315,-73.97339000000001,Entire home/apt,350,2,3,0.1,3,0 +16133,2637408,Brooklyn,Williamsburg,40.712140000000005,-73.94991999999999,Entire home/apt,175,3,122,3.37,2,128 +16134,21340955,Brooklyn,Flatbush,40.65272,-73.96127,Private room,65,3,28,1.09,3,298 +16135,66326553,Manhattan,Hell's Kitchen,40.761109999999995,-73.99248,Entire home/apt,350,6,97,2.55,2,236 +16136,50600973,Brooklyn,Bushwick,40.694990000000004,-73.9283,Private room,45,1,251,6.68,7,69 +16137,751120,Brooklyn,Fort Greene,40.68715,-73.97388000000001,Entire home/apt,120,2,21,0.56,1,0 +16138,283116,Queens,Sunnyside,40.74625,-73.91643,Entire home/apt,75,5,0,,1,0 +16139,9460317,Manhattan,East Village,40.72906,-73.98006,Private room,100,3,2,0.05,1,0 +16140,5302382,Manhattan,Chelsea,40.745740000000005,-73.99633,Entire home/apt,850,2,10,0.26,1,10 +16141,23457783,Brooklyn,Bushwick,40.6905,-73.90834,Private room,40,1,1,0.03,1,0 +16142,28868609,Queens,Ditmars Steinway,40.772659999999995,-73.90268,Shared room,100,1,1,0.03,1,0 +16143,43339525,Brooklyn,Williamsburg,40.7163,-73.94394,Entire home/apt,178,2,22,0.59,1,3 +16144,9427289,Queens,Sunnyside,40.74691,-73.91763,Entire home/apt,170,2,149,4.21,2,229 +16145,62843071,Queens,Woodhaven,40.69617,-73.85204,Private room,45,1,235,6.15,4,278 +16146,14060030,Manhattan,Financial District,40.70527,-74.00629,Entire home/apt,180,1,2,0.05,1,0 +16147,6818577,Brooklyn,Williamsburg,40.70879,-73.95235,Private room,89,30,1,0.03,1,0 +16148,72157489,Brooklyn,Bushwick,40.6928,-73.91614,Private room,50,1,5,0.13,2,0 +16149,2349563,Brooklyn,Greenpoint,40.73356,-73.95808000000001,Private room,80,1,2,0.05,1,0 +16150,6462802,Brooklyn,South Slope,40.6647,-73.98474,Entire home/apt,250,4,4,0.11,1,0 +16151,72168153,Manhattan,Midtown,40.744640000000004,-73.98436,Private room,70,20,4,0.11,1,8 +16152,3166393,Manhattan,Chelsea,40.746320000000004,-74.00431,Entire home/apt,170,29,0,,1,64 +16153,72112652,Manhattan,Financial District,40.70825,-74.01403,Private room,90,4,0,,2,0 +16154,5288991,Manhattan,Upper East Side,40.7775,-73.95262,Shared room,45,30,20,0.53,6,258 +16155,60278094,Brooklyn,Flatbush,40.64053,-73.95785,Entire home/apt,100,2,21,0.55,1,0 +16156,24165646,Brooklyn,Bushwick,40.687540000000006,-73.91265,Private room,65,3,33,0.86,1,189 +16157,5288991,Manhattan,Upper East Side,40.77854,-73.95073000000001,Shared room,45,30,22,0.58,6,323 +16158,5288991,Manhattan,Upper East Side,40.779270000000004,-73.95071,Shared room,45,30,22,0.58,6,289 +16159,5288991,Manhattan,Upper East Side,40.77903,-73.95238,Shared room,45,30,22,0.58,6,294 +16160,5288991,Manhattan,Upper East Side,40.777359999999994,-73.95144,Private room,90,30,79,2.08,6,246 +16161,364558,Manhattan,Washington Heights,40.83805,-73.94306999999999,Entire home/apt,150,2,17,0.45,1,15 +16162,11107448,Brooklyn,Williamsburg,40.71862,-73.94216,Private room,62,7,0,,2,0 +16163,26959668,Brooklyn,Fort Greene,40.68748,-73.97397,Entire home/apt,125,3,19,0.51,1,0 +16164,72280483,Manhattan,Murray Hill,40.74688,-73.97813000000001,Entire home/apt,125,2,100,2.63,1,34 +16165,72287701,Brooklyn,Crown Heights,40.675329999999995,-73.95545,Entire home/apt,175,1,121,3.17,1,7 +16166,72291606,Brooklyn,Bushwick,40.690290000000005,-73.91899000000001,Shared room,75,1,25,0.66,1,155 +16167,27634654,Brooklyn,Bay Ridge,40.63095,-74.03026,Private room,30,90,1,0.03,2,0 +16168,72313021,Manhattan,Chelsea,40.74472,-74.00095,Entire home/apt,295,1,50,1.33,1,77 +16169,26535250,Brooklyn,Windsor Terrace,40.658409999999996,-73.97753,Entire home/apt,50,1,74,2.03,3,236 +16170,72315258,Brooklyn,Crown Heights,40.676190000000005,-73.93866,Private room,28,1,0,,1,0 +16171,72318418,Brooklyn,Brownsville,40.66783,-73.92192,Private room,69,2,104,2.72,3,362 +16172,7701998,Manhattan,Harlem,40.815690000000004,-73.94622,Private room,75,1,0,,1,0 +16173,16098958,Manhattan,Financial District,40.7034,-74.00787,Entire home/apt,175,30,2,0.1,96,365 +16174,15720806,Brooklyn,Bedford-Stuyvesant,40.693490000000004,-73.93030999999999,Private room,50,3,0,,1,0 +16175,3149121,Manhattan,Greenwich Village,40.72617,-73.99658000000001,Private room,90,1,2,0.05,1,0 +16176,16345024,Manhattan,Upper East Side,40.77687,-73.9546,Private room,100,2,1,0.03,1,0 +16177,6324947,Brooklyn,Greenpoint,40.72341,-73.94060999999999,Private room,49,3,4,0.3,1,7 +16178,33346283,Manhattan,Harlem,40.83141,-73.94722,Private room,55,5,31,0.88,3,326 +16179,59905183,Manhattan,Chelsea,40.74664,-74.00165,Entire home/apt,249,90,2,0.06,1,177 +16180,1924750,Queens,Astoria,40.76437,-73.91304000000001,Private room,36,2,37,1.03,2,228 +16181,13270888,Queens,Astoria,40.76764,-73.91633,Private room,65,4,28,0.74,1,0 +16182,1412548,Brooklyn,Williamsburg,40.708059999999996,-73.94224,Private room,60,3,1,0.05,1,0 +16183,26378652,Manhattan,East Village,40.727909999999994,-73.98916,Entire home/apt,180,4,3,0.1,1,0 +16184,23909946,Brooklyn,Bedford-Stuyvesant,40.686040000000006,-73.91924,Private room,50,5,39,1.04,3,40 +16185,15239567,Brooklyn,Brooklyn Heights,40.69218,-73.99124,Entire home/apt,110,2,1,0.03,1,0 +16186,1475015,Manhattan,Midtown,40.76102,-73.96555,Entire home/apt,87,30,2,0.05,52,365 +16187,3872251,Brooklyn,Fort Greene,40.68589,-73.97659,Entire home/apt,100,2,13,0.35,1,0 +16188,10643230,Queens,Sunnyside,40.7464,-73.91675,Entire home/apt,120,5,3,0.08,1,0 +16189,48764969,Brooklyn,Cypress Hills,40.68122,-73.90399000000001,Private room,42,6,12,0.96,2,207 +16190,42399786,Manhattan,West Village,40.735640000000004,-73.99823,Entire home/apt,145,3,100,2.62,1,0 +16191,72398084,Queens,Astoria,40.768029999999996,-73.93033,Entire home/apt,110,21,0,,1,0 +16192,11362470,Manhattan,East Village,40.73007,-73.98637,Private room,99,1,2,0.05,1,0 +16193,10677584,Brooklyn,Greenpoint,40.73333,-73.95699,Entire home/apt,129,2,87,2.33,4,124 +16194,72420514,Manhattan,West Village,40.73745,-74.00725,Entire home/apt,186,1,197,5.24,3,209 +16195,32525834,Brooklyn,Williamsburg,40.71968,-73.94368,Entire home/apt,350,3,2,0.14,1,78 +16196,19414202,Brooklyn,Greenpoint,40.73046,-73.95706,Entire home/apt,165,3,8,0.22,1,0 +16197,22541573,Manhattan,Tribeca,40.71642,-74.00679000000001,Entire home/apt,210,30,1,0.43,87,329 +16198,35660592,Queens,Corona,40.75058,-73.8535,Entire home/apt,119,2,37,1.01,6,336 +16199,1516947,Manhattan,Civic Center,40.71287,-73.99811,Private room,75,17,17,0.48,1,38 +16200,72496078,Manhattan,Upper East Side,40.773309999999995,-73.95459,Entire home/apt,400,7,4,0.33,1,31 +16201,3389514,Brooklyn,Bedford-Stuyvesant,40.69313,-73.93543000000001,Private room,60,2,59,1.56,1,6 +16202,72513175,Brooklyn,Bedford-Stuyvesant,40.68934,-73.9579,Private room,140,4,8,0.21,1,89 +16203,41263120,Manhattan,Midtown,40.75325,-73.97015999999999,Entire home/apt,190,4,0,,1,0 +16204,22541573,Manhattan,Gramercy,40.7382,-73.98301,Entire home/apt,245,30,1,0.12,87,236 +16205,22541573,Manhattan,Tribeca,40.71642,-74.00667,Entire home/apt,245,30,1,0.07,87,262 +16206,22541573,Manhattan,Midtown,40.74426,-73.98535,Entire home/apt,192,30,0,,87,334 +16207,69427329,Queens,Elmhurst,40.73874,-73.87595,Entire home/apt,89,1,146,3.85,6,252 +16208,22541573,Manhattan,Midtown,40.74556,-73.98541999999999,Entire home/apt,219,30,0,,87,343 +16209,22541573,Manhattan,Chelsea,40.739290000000004,-73.9999,Entire home/apt,179,30,0,,87,273 +16210,22541573,Manhattan,Financial District,40.7052,-74.00974000000001,Entire home/apt,199,30,0,,87,344 +16211,22541573,Manhattan,Financial District,40.70748,-74.01476,Entire home/apt,238,30,0,,87,365 +16212,7221835,Brooklyn,Fort Greene,40.6904,-73.97285,Entire home/apt,140,3,2,0.05,1,0 +16213,2340370,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95801,Private room,37,1,1,0.03,1,0 +16214,5707158,Manhattan,Kips Bay,40.7447,-73.97593,Shared room,49,2,23,0.61,2,0 +16215,51501835,Manhattan,Hell's Kitchen,40.76517,-73.99331,Entire home/apt,115,30,6,0.17,31,331 +16216,72318418,Brooklyn,Crown Heights,40.67002,-73.92054,Private room,69,2,132,3.46,3,365 +16217,17671924,Manhattan,Upper East Side,40.770790000000005,-73.95949,Entire home/apt,100,2,2,0.05,1,0 +16218,4980733,Manhattan,Midtown,40.75584,-73.96979,Entire home/apt,300,1,38,1.01,1,361 +16219,5261297,Queens,Corona,40.743320000000004,-73.85469,Private room,52,1,45,1.27,1,57 +16220,1892402,Brooklyn,Bedford-Stuyvesant,40.68347,-73.95461999999999,Private room,50,3,4,0.11,1,0 +16221,37093995,Manhattan,Inwood,40.867940000000004,-73.92792,Entire home/apt,100,15,0,,1,0 +16222,46407854,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.94317,Private room,55,1,0,,1,0 +16223,17176974,Brooklyn,Greenpoint,40.72764,-73.95579000000001,Entire home/apt,199,3,8,0.25,1,0 +16224,154956,Brooklyn,Greenpoint,40.734429999999996,-73.95678000000001,Private room,90,7,2,0.05,1,47 +16225,2497082,Brooklyn,Flatbush,40.64523,-73.96213,Entire home/apt,65,5,13,0.35,1,0 +16226,72596571,Manhattan,Midtown,40.750820000000004,-73.98526,Entire home/apt,400,7,103,2.7,1,344 +16227,22423754,Brooklyn,Park Slope,40.66936,-73.97724000000001,Entire home/apt,65,8,1,0.03,1,0 +16228,21930159,Queens,Sunnyside,40.74534,-73.91809,Entire home/apt,71,2,7,1.96,1,0 +16229,22541573,Manhattan,Theater District,40.760690000000004,-73.98319000000001,Entire home/apt,199,30,1,0.03,87,328 +16230,17770287,Manhattan,Midtown,40.74927,-73.98303,Entire home/apt,163,30,4,0.17,14,332 +16231,72677655,Manhattan,Nolita,40.72153,-73.99493000000001,Entire home/apt,126,2,11,0.29,1,0 +16232,72684665,Manhattan,Midtown,40.757329999999996,-73.96576999999999,Entire home/apt,150,1,136,3.71,1,248 +16233,30283594,Manhattan,Hell's Kitchen,40.76227,-73.99807,Entire home/apt,199,30,1,0.03,121,365 +16234,27714436,Brooklyn,Crown Heights,40.67372,-73.95334,Private room,51,1,1,0.03,1,0 +16235,22541573,Manhattan,Theater District,40.76106,-73.9848,Entire home/apt,256,30,0,,87,340 +16236,22541573,Manhattan,Chelsea,40.74641,-74.00401,Entire home/apt,289,30,2,0.08,87,339 +16237,22541573,Manhattan,Chelsea,40.74651,-74.00563000000001,Entire home/apt,219,30,1,0.04,87,340 +16238,72296750,Manhattan,Hell's Kitchen,40.757979999999996,-73.99155999999999,Entire home/apt,239,30,0,,1,365 +16239,33656032,Brooklyn,Boerum Hill,40.686,-73.98579000000001,Entire home/apt,125,3,1,0.03,1,0 +16240,72701423,Brooklyn,Carroll Gardens,40.6783,-73.99419,Private room,90,1,5,0.13,1,0 +16241,372206,Manhattan,Upper West Side,40.7869,-73.97254000000001,Entire home/apt,150,3,4,0.11,1,0 +16242,8106327,Brooklyn,Bushwick,40.698190000000004,-73.9334,Private room,40,2,1,0.04,1,0 +16243,2762303,Brooklyn,Crown Heights,40.673359999999995,-73.95451,Entire home/apt,120,4,7,0.18,1,0 +16244,38671350,Manhattan,East Harlem,40.78843,-73.95504,Private room,200,5,0,,1,0 +16245,4942450,Manhattan,Washington Heights,40.85073,-73.93851,Entire home/apt,126,68,17,0.47,1,0 +16246,51501835,Manhattan,Hell's Kitchen,40.7645,-73.99446999999999,Entire home/apt,200,30,3,0.12,31,341 +16247,47351539,Queens,South Ozone Park,40.67321,-73.79247,Entire home/apt,195,1,239,6.31,4,256 +16248,14865754,Manhattan,Harlem,40.818290000000005,-73.94686,Entire home/apt,175,2,34,0.98,1,75 +16249,24494897,Manhattan,Upper East Side,40.76704,-73.95721999999999,Entire home/apt,159,6,0,,1,0 +16250,43518492,Manhattan,Harlem,40.82828,-73.94264,Private room,130,3,3,0.1,1,0 +16251,72765906,Manhattan,Hell's Kitchen,40.76212,-73.9882,Entire home/apt,170,4,112,2.97,1,262 +16252,72770139,Brooklyn,South Slope,40.66665,-73.98875,Private room,60,1,1,0.03,1,0 +16253,620810,Queens,Astoria,40.76555,-73.9169,Entire home/apt,110,13,1,0.03,1,0 +16254,35494734,Queens,Woodside,40.75266,-73.90335999999999,Private room,70,5,9,0.29,2,138 +16255,72779585,Brooklyn,Crown Heights,40.67702,-73.95864,Entire home/apt,105,2,7,0.18,1,32 +16256,38331104,Manhattan,Gramercy,40.736270000000005,-73.98986,Private room,100,7,0,,1,0 +16257,16884931,Manhattan,East Harlem,40.80637,-73.93722,Entire home/apt,140,1,28,0.74,1,170 +16258,676499,Manhattan,East Village,40.72487,-73.98125,Entire home/apt,175,4,3,0.08,1,0 +16259,2856748,Manhattan,Upper East Side,40.75993,-73.96056,Entire home/apt,198,30,0,,49,331 +16260,45197707,Brooklyn,Flatlands,40.61529,-73.92567,Entire home/apt,90,2,125,3.3,1,302 +16261,17181881,Brooklyn,Fort Greene,40.692859999999996,-73.98037,Entire home/apt,128,10,1,0.03,1,0 +16262,2233249,Manhattan,Financial District,40.709309999999995,-74.00959,Entire home/apt,110,6,5,0.13,1,0 +16263,72839296,Queens,Long Island City,40.76235,-73.92973,Entire home/apt,99,2,16,0.44,1,0 +16264,72542338,Brooklyn,Manhattan Beach,40.58078,-73.95356,Private room,125,2,21,0.56,1,311 +16265,2856748,Manhattan,Upper East Side,40.76174,-73.96366,Entire home/apt,160,30,0,,49,364 +16266,22541573,Manhattan,Chelsea,40.74451,-73.99235999999999,Entire home/apt,270,30,0,,87,350 +16267,22541573,Manhattan,Chelsea,40.7448,-73.99204,Entire home/apt,205,30,2,0.06,87,0 +16268,22541573,Manhattan,Chelsea,40.74491,-73.99266999999999,Entire home/apt,205,30,0,,87,357 +16269,22541573,Manhattan,Chelsea,40.75148,-73.99396999999999,Entire home/apt,230,30,1,0.03,87,350 +16270,72874338,Brooklyn,Bushwick,40.69025,-73.90871,Private room,40,1,3,0.08,1,0 +16271,72874879,Brooklyn,Park Slope,40.67202,-73.97131,Entire home/apt,700,7,0,,1,0 +16272,23147852,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94515,Private room,69,90,0,,1,365 +16273,1642326,Brooklyn,Downtown Brooklyn,40.69202,-73.98469,Entire home/apt,225,3,36,1.01,1,53 +16274,72881006,Brooklyn,Bedford-Stuyvesant,40.69375,-73.95208000000001,Private room,50,1,2,0.05,1,0 +16275,72897900,Brooklyn,Bedford-Stuyvesant,40.68696,-73.92905,Private room,45,1,7,0.19,1,0 +16276,61391963,Manhattan,Greenwich Village,40.72807,-74.00041,Entire home/apt,159,30,4,0.14,91,281 +16277,52950465,Manhattan,Battery Park City,40.7109,-74.01768,Entire home/apt,250,30,0,,12,280 +16278,13769025,Brooklyn,Bedford-Stuyvesant,40.69563,-73.95149,Private room,43,1,0,,1,220 +16279,16098958,Manhattan,Gramercy,40.73505,-73.98565,Entire home/apt,180,30,1,0.04,96,281 +16280,7573341,Brooklyn,Sunset Park,40.63885,-74.01959000000001,Entire home/apt,225,2,130,3.48,2,306 +16281,72507521,Manhattan,Harlem,40.81245,-73.94085,Entire home/apt,190,1,0,,1,0 +16282,69427329,Queens,Elmhurst,40.738490000000006,-73.87606,Private room,49,1,65,1.7,6,355 +16283,72918560,Manhattan,Upper West Side,40.77995,-73.9822,Entire home/apt,294,14,0,,1,0 +16284,46648109,Manhattan,Midtown,40.757220000000004,-73.97842,Entire home/apt,559,30,2,0.17,1,0 +16285,72923241,Brooklyn,Park Slope,40.67073,-73.98719,Private room,109,3,68,1.97,1,213 +16286,34761471,Manhattan,Chelsea,40.74589,-74.0048,Entire home/apt,250,4,18,0.49,1,0 +16287,22541573,Manhattan,Midtown,40.76367,-73.98345,Entire home/apt,269,30,1,0.13,87,364 +16288,4043259,Brooklyn,Greenpoint,40.725359999999995,-73.95711999999999,Private room,81,2,131,3.5,2,120 +16289,42605385,Brooklyn,Flatbush,40.63612,-73.96297,Private room,53,14,2,0.05,3,0 +16290,72931015,Manhattan,East Village,40.72527,-73.98347,Entire home/apt,206,1,1,0.03,1,0 +16291,58735878,Manhattan,Harlem,40.82889,-73.94599000000001,Private room,40,1,1,0.03,1,0 +16292,9197619,Queens,Ditmars Steinway,40.77592,-73.91308000000001,Entire home/apt,130,10,0,,1,0 +16293,16055560,Manhattan,Chelsea,40.7453,-74.00242,Entire home/apt,105,2,6,0.16,1,0 +16294,35959584,Manhattan,East Village,40.727779999999996,-73.97825,Private room,75,1,8,0.21,1,0 +16295,350055,Brooklyn,Prospect Heights,40.67641,-73.96775,Entire home/apt,499,4,7,0.2,1,25 +16296,72967204,Manhattan,East Harlem,40.79485,-73.94868000000001,Entire home/apt,165,7,49,1.37,1,64 +16297,1921498,Manhattan,Washington Heights,40.84467,-73.93374,Private room,55,6,2,0.08,3,3 +16298,2988712,Bronx,Claremont Village,40.834579999999995,-73.91020999999999,Entire home/apt,57,90,11,0.31,7,68 +16299,70674019,Brooklyn,Prospect Heights,40.67329,-73.96291,Entire home/apt,201,30,66,1.78,2,159 +16300,24370211,Brooklyn,Williamsburg,40.71307,-73.95501999999999,Entire home/apt,80,10,2,0.05,2,0 +16301,9793190,Brooklyn,Greenpoint,40.72721,-73.94951,Private room,80,1,4,0.24,1,0 +16302,2689908,Brooklyn,Bushwick,40.69832,-73.92622,Entire home/apt,59,2,177,4.74,1,3 +16303,73029190,Manhattan,East Village,40.72554,-73.98245,Entire home/apt,250,14,0,,1,174 +16304,12341146,Manhattan,Hell's Kitchen,40.76089,-73.99879,Private room,200,1,1,0.03,1,0 +16305,18438941,Manhattan,Financial District,40.70883,-74.00764000000001,Shared room,100,10,0,,1,0 +16306,32132982,Manhattan,Upper West Side,40.79613,-73.96658000000001,Private room,60,2,23,0.62,1,0 +16307,27019686,Brooklyn,Bedford-Stuyvesant,40.68329,-73.9399,Entire home/apt,150,5,1,0.08,1,0 +16308,22541573,Manhattan,West Village,40.7304,-74.00887,Entire home/apt,215,30,0,,87,365 +16309,46087238,Queens,Jamaica,40.68723,-73.78791,Private room,40,1,14,0.42,2,335 +16310,20109188,Brooklyn,Williamsburg,40.70413,-73.93205,Entire home/apt,175,2,102,2.68,1,284 +16311,31483931,Queens,Long Island City,40.742259999999995,-73.94999,Entire home/apt,151,2,87,2.3,1,17 +16312,73069526,Manhattan,Hell's Kitchen,40.7655,-73.98682,Entire home/apt,250,7,52,1.4,1,0 +16313,42048980,Queens,Ditmars Steinway,40.77265,-73.91401,Private room,100,1,1,0.03,1,0 +16314,71619228,Manhattan,Harlem,40.805009999999996,-73.94249,Entire home/apt,200,7,0,,1,178 +16315,10676792,Brooklyn,Bedford-Stuyvesant,40.68457,-73.9262,Entire home/apt,120,2,5,0.13,2,0 +16316,16065842,Brooklyn,Clinton Hill,40.685109999999995,-73.96638,Entire home/apt,100,2,64,1.69,1,15 +16317,8687162,Manhattan,Upper East Side,40.77847,-73.95371,Entire home/apt,135,15,0,,1,0 +16318,21077880,Manhattan,East Harlem,40.79525,-73.94912,Private room,80,2,29,1.96,1,3 +16319,3710740,Manhattan,Harlem,40.81777,-73.9535,Private room,60,1,63,1.74,2,0 +16320,11935406,Manhattan,East Village,40.72684,-73.98938000000001,Entire home/apt,123,2,7,0.2,1,0 +16321,65674570,Brooklyn,Williamsburg,40.71529,-73.96398,Entire home/apt,189,3,6,0.16,1,0 +16322,12810744,Manhattan,Upper East Side,40.775859999999994,-73.95164,Entire home/apt,235,120,8,0.23,1,12 +16323,51501835,Manhattan,Hell's Kitchen,40.76502,-73.99277,Entire home/apt,90,30,11,0.33,31,223 +16324,16708043,Brooklyn,Williamsburg,40.71066,-73.95725999999999,Private room,85,1,42,1.14,1,0 +16325,73124477,Brooklyn,Crown Heights,40.67433,-73.94243,Private room,40,5,119,3.16,2,3 +16326,73126926,Bronx,Williamsbridge,40.88493,-73.8618,Entire home/apt,67,3,205,5.39,1,140 +16327,460765,Brooklyn,Gowanus,40.68164,-73.98631,Private room,63,2,2,0.05,1,0 +16328,70178459,Brooklyn,Williamsburg,40.714009999999995,-73.95664000000001,Entire home/apt,150,1,6,0.16,1,0 +16329,73179534,Brooklyn,Fort Hamilton,40.617779999999996,-74.02736,Private room,70,2,8,0.59,1,0 +16330,54454582,Manhattan,Hell's Kitchen,40.764540000000004,-73.99114,Private room,75,4,146,3.89,3,73 +16331,10234636,Manhattan,Hell's Kitchen,40.75855,-73.98931,Entire home/apt,99,30,19,0.54,1,2 +16332,16110448,Manhattan,East Harlem,40.79658,-73.93287,Entire home/apt,199,2,30,0.8,1,30 +16333,73190364,Queens,Edgemere,40.59534,-73.77209,Private room,195,4,0,,1,0 +16334,6909591,Brooklyn,Brighton Beach,40.57509,-73.96603,Entire home/apt,67,1,1,0.03,1,0 +16335,206337,Queens,Sunnyside,40.7459,-73.92441,Private room,71,3,40,1.06,1,286 +16336,9614283,Brooklyn,Bushwick,40.70158,-73.92023,Private room,35,3,7,0.22,1,0 +16337,71853402,Brooklyn,East Flatbush,40.64302,-73.95022,Private room,100,1,30,0.8,2,342 +16338,73227676,Brooklyn,Greenpoint,40.72098,-73.94639000000001,Private room,158,1,0,,1,0 +16339,34731099,Brooklyn,Bushwick,40.69096,-73.92352,Private room,30,1,0,,1,0 +16340,35384978,Manhattan,Upper East Side,40.775040000000004,-73.94945,Entire home/apt,138,1,95,2.54,2,215 +16341,73247569,Brooklyn,Bushwick,40.69989,-73.93616999999999,Private room,52,1,97,2.55,2,115 +16342,46309248,Queens,Astoria,40.767759999999996,-73.92707,Private room,120,1,1,0.03,1,0 +16343,65652567,Queens,Woodside,40.74377,-73.9024,Entire home/apt,125,2,156,4.13,1,263 +16344,22363037,Manhattan,West Village,40.73733,-74.00392,Entire home/apt,119,3,1,0.03,1,0 +16345,18893401,Brooklyn,Fort Greene,40.68457,-73.96969,Entire home/apt,225,2,11,0.3,1,0 +16346,72008788,Manhattan,Harlem,40.79952,-73.95248000000001,Private room,75,3,107,2.86,1,279 +16347,5561136,Brooklyn,Bushwick,40.6861,-73.90977,Private room,60,5,0,,1,0 +16348,52049429,Manhattan,Hell's Kitchen,40.759890000000006,-73.98832,Entire home/apt,70,2,112,2.97,1,11 +16349,18051286,Queens,Astoria,40.77221,-73.92900999999999,Private room,50,1,0,,1,0 +16350,65252597,Brooklyn,Williamsburg,40.71038,-73.95397,Private room,45,3,1,0.03,1,0 +16351,962936,Manhattan,Greenwich Village,40.72953,-74.00148,Entire home/apt,600,5,24,0.63,1,336 +16352,41084247,Brooklyn,Park Slope,40.67001,-73.98347,Entire home/apt,175,4,31,0.86,1,254 +16353,73400193,Brooklyn,Crown Heights,40.67293,-73.95519,Entire home/apt,150,2,141,3.79,1,299 +16354,4218058,Brooklyn,Fort Greene,40.686409999999995,-73.97085,Private room,76,3,23,0.62,2,177 +16355,47292710,Brooklyn,Williamsburg,40.71233,-73.94806,Entire home/apt,200,1,6,0.16,1,0 +16356,73406935,Brooklyn,Bedford-Stuyvesant,40.68145,-73.94208,Entire home/apt,170,3,72,2.0,1,255 +16357,13739649,Manhattan,Hell's Kitchen,40.76144,-73.99243,Entire home/apt,225,2,32,0.85,1,44 +16358,7532592,Brooklyn,Fort Greene,40.69497,-73.97209000000001,Private room,50,7,2,0.05,1,0 +16359,62660832,Brooklyn,Park Slope,40.669540000000005,-73.98226,Entire home/apt,150,30,42,1.11,1,117 +16360,68234238,Manhattan,Upper East Side,40.77626,-73.94693000000001,Private room,100,1,2,0.05,1,0 +16361,5162192,Manhattan,Upper West Side,40.79831,-73.96051999999999,Entire home/apt,202,30,8,0.3,12,147 +16362,11309985,Manhattan,Upper West Side,40.80279,-73.96535,Private room,60,2,2,0.05,2,0 +16363,49125175,Brooklyn,Prospect Heights,40.67539,-73.96865,Entire home/apt,99,3,6,0.16,1,0 +16364,62843071,Queens,Woodhaven,40.69546,-73.85061999999999,Private room,38,1,170,4.49,4,192 +16365,34160620,Manhattan,Harlem,40.82267,-73.94677,Private room,70,1,58,1.55,2,0 +16366,62285182,Brooklyn,Greenpoint,40.734320000000004,-73.95145,Entire home/apt,117,2,17,0.47,1,0 +16367,3671013,Manhattan,Midtown,40.76365,-73.97754,Entire home/apt,200,1,0,,2,0 +16368,65825355,Brooklyn,Brighton Beach,40.57762,-73.95662,Entire home/apt,99,3,0,,1,0 +16369,2708284,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94553,Private room,75,6,37,1.53,1,329 +16370,73459264,Manhattan,Inwood,40.86383,-73.92905,Entire home/apt,105,4,7,0.19,1,0 +16371,73505108,Manhattan,Chelsea,40.750370000000004,-73.99858,Entire home/apt,130,6,63,1.68,1,34 +16372,4326776,Queens,Woodside,40.74457,-73.90474,Private room,80,14,0,,1,0 +16373,16205472,Manhattan,Upper West Side,40.79296,-73.97456,Entire home/apt,100,4,2,0.09,1,83 +16374,23080138,Brooklyn,Crown Heights,40.67194,-73.95182,Entire home/apt,195,2,0,,1,0 +16375,55292741,Brooklyn,Bushwick,40.70153,-73.92244000000001,Private room,115,2,0,,1,0 +16376,473497,Manhattan,Washington Heights,40.85487,-73.93509,Entire home/apt,175,1,0,,1,0 +16377,15221605,Brooklyn,Williamsburg,40.71102,-73.95123000000001,Entire home/apt,269,7,1,0.03,1,0 +16378,10578546,Manhattan,Tribeca,40.71549,-74.00804000000001,Entire home/apt,325,3,6,0.18,1,333 +16379,22851099,Brooklyn,Bushwick,40.690740000000005,-73.91705,Private room,40,1,0,,1,0 +16380,43272945,Manhattan,Inwood,40.8679,-73.91842,Entire home/apt,80,1,2,0.06,1,0 +16381,68848703,Queens,Forest Hills,40.719390000000004,-73.85127,Entire home/apt,509,3,7,0.2,2,264 +16382,4104874,Brooklyn,Williamsburg,40.71021,-73.94944,Entire home/apt,200,2,1,0.03,1,0 +16383,22541573,Manhattan,West Village,40.729929999999996,-74.01,Entire home/apt,278,30,0,,87,350 +16384,73550526,Manhattan,East Village,40.728840000000005,-73.98548000000001,Entire home/apt,195,2,7,0.19,1,0 +16385,22541573,Manhattan,Gramercy,40.73754,-73.98741,Entire home/apt,225,30,1,0.04,87,249 +16386,21216008,Queens,Jackson Heights,40.74989,-73.87829,Shared room,35,1,120,3.18,4,340 +16387,15430149,Queens,Ditmars Steinway,40.77367,-73.91597,Entire home/apt,92,2,1,0.11,1,0 +16388,73561955,Manhattan,Upper West Side,40.795590000000004,-73.96434,Private room,65,7,0,,1,0 +16389,64098159,Brooklyn,Boerum Hill,40.68662,-73.98305,Entire home/apt,300,30,0,,1,36 +16390,45451107,Brooklyn,Fort Greene,40.68445,-73.97168,Private room,95,2,54,1.44,1,0 +16391,5430458,Queens,Astoria,40.76672,-73.92769,Private room,95,4,45,1.19,1,93 +16392,73583445,Manhattan,Hell's Kitchen,40.76511,-73.99432,Entire home/apt,119,4,136,3.59,1,17 +16393,988088,Manhattan,Chelsea,40.74729,-74.00244,Entire home/apt,154,2,23,0.62,1,4 +16394,7141050,Manhattan,Inwood,40.867090000000005,-73.92962,Private room,80,2,12,0.34,2,49 +16395,21425186,Manhattan,East Village,40.72333,-73.98795,Entire home/apt,250,3,0,,1,0 +16396,62535444,Brooklyn,Manhattan Beach,40.57867,-73.95227,Entire home/apt,99,1,41,1.1,2,363 +16397,73445541,Queens,Bayside,40.774390000000004,-73.77723,Private room,75,10,0,,1,365 +16398,27556149,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94821999999999,Entire home/apt,75,5,2,0.05,1,0 +16399,52950465,Manhattan,Midtown,40.75266,-73.97251999999999,Entire home/apt,142,30,0,,12,323 +16400,72101538,Brooklyn,Gravesend,40.59162,-73.9702,Entire home/apt,300,2,0,,1,0 +16401,22541573,Manhattan,Murray Hill,40.74855,-73.98019000000001,Entire home/apt,199,30,2,0.06,87,364 +16402,31154454,Manhattan,Midtown,40.74244,-73.98316,Private room,99,1,180,4.86,2,2 +16403,9864136,Manhattan,Harlem,40.82015,-73.94593,Private room,62,30,1,0.03,26,188 +16404,6652697,Manhattan,Chelsea,40.73769,-73.99025999999999,Private room,350,30,0,,1,365 +16405,73630116,Manhattan,Theater District,40.7615,-73.98527,Private room,180,14,15,0.48,1,122 +16406,30812813,Manhattan,Upper East Side,40.77097,-73.95843,Entire home/apt,115,5,4,0.11,1,0 +16407,2926947,Manhattan,West Village,40.73908,-74.00186,Entire home/apt,150,2,11,0.3,1,0 +16408,73643860,Brooklyn,Bedford-Stuyvesant,40.68846,-73.92155,Private room,65,2,5,2.24,1,48 +16409,65304194,Brooklyn,East Flatbush,40.65742,-73.92385,Entire home/apt,85,1,117,3.09,1,18 +16410,73663228,Manhattan,Washington Heights,40.85735,-73.9298,Private room,70,1,37,1.1,1,291 +16411,11309985,Manhattan,Upper West Side,40.8028,-73.96678,Private room,50,2,8,0.21,2,0 +16412,5401988,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95340999999999,Private room,65,2,5,0.13,1,0 +16413,18742,Brooklyn,Bushwick,40.7043,-73.92491,Entire home/apt,117,7,0,,1,0 +16414,73732590,Manhattan,Washington Heights,40.85261,-73.94203,Entire home/apt,150,10,12,0.33,1,6 +16415,40306612,Brooklyn,Carroll Gardens,40.685,-73.99369,Entire home/apt,250,3,12,0.32,1,0 +16416,1363435,Manhattan,East Village,40.72665,-73.98716999999999,Entire home/apt,140,31,37,1.01,1,0 +16417,73737053,Brooklyn,Bushwick,40.69068,-73.91418,Private room,70,1,111,3.06,3,364 +16418,31628863,Brooklyn,Bensonhurst,40.60391,-73.99339,Private room,80,2,7,0.23,1,0 +16419,73737053,Brooklyn,Bushwick,40.69239,-73.91416,Private room,85,1,44,1.26,3,365 +16420,11296515,Manhattan,East Village,40.72926,-73.98915,Entire home/apt,99,1,0,,1,0 +16421,2084322,Queens,Astoria,40.76832,-73.9346,Entire home/apt,99,3,94,2.52,1,1 +16422,35143476,Brooklyn,Windsor Terrace,40.65182,-73.98043,Entire home/apt,400,7,0,,1,0 +16423,73737053,Brooklyn,Bushwick,40.69239,-73.91443000000001,Private room,75,1,117,3.24,3,363 +16424,73764539,Manhattan,Washington Heights,40.85241,-73.9368,Entire home/apt,99,2,3,0.08,1,0 +16425,6721441,Manhattan,Harlem,40.8013,-73.95676999999999,Entire home/apt,165,4,2,0.06,1,0 +16426,22541573,Manhattan,Murray Hill,40.74747,-73.98061,Entire home/apt,189,30,0,,87,365 +16427,11345677,Manhattan,Chelsea,40.73887,-74.00010999999999,Private room,85,2,22,0.65,1,58 +16428,22541573,Manhattan,Murray Hill,40.74881,-73.98059,Entire home/apt,268,30,0,,87,365 +16429,73792588,Manhattan,West Village,40.730109999999996,-74.00267,Private room,55,1,7,0.19,1,0 +16430,8185477,Brooklyn,Flatbush,40.6421,-73.96166,Entire home/apt,80,29,5,0.14,1,68 +16431,18142892,Queens,Ridgewood,40.708709999999996,-73.89415,Entire home/apt,95,1,1,0.03,1,0 +16432,22541573,Manhattan,Murray Hill,40.747890000000005,-73.98057,Entire home/apt,179,30,0,,87,115 +16433,22541573,Manhattan,Murray Hill,40.74743,-73.97945,Entire home/apt,245,30,0,,87,365 +16434,42429642,Manhattan,West Village,40.731790000000004,-74.00149,Private room,300,1,0,,1,0 +16435,30283594,Manhattan,Hell's Kitchen,40.765640000000005,-73.98366999999999,Entire home/apt,369,30,1,0.03,121,345 +16436,49117269,Queens,Long Island City,40.75768,-73.92896999999999,Private room,75,15,14,0.88,2,16 +16437,6281031,Brooklyn,Prospect Heights,40.680659999999996,-73.96696,Entire home/apt,136,2,169,4.48,1,279 +16438,94946,Brooklyn,Bushwick,40.69746,-73.92065,Private room,101,1,28,1.15,1,13 +16439,40439772,Manhattan,Washington Heights,40.85244,-73.93126,Private room,40,2,11,0.29,2,16 +16440,73857756,Manhattan,Washington Heights,40.83193,-73.9364,Private room,65,2,0,,1,0 +16441,73857837,Brooklyn,Dyker Heights,40.63009,-74.01342,Private room,43,1,30,1.15,1,6 +16442,32707981,Manhattan,East Village,40.72312,-73.98795,Private room,100,2,11,0.29,4,0 +16443,73864266,Manhattan,Inwood,40.859809999999996,-73.92835,Private room,40,3,78,2.87,1,260 +16444,73924316,Manhattan,Upper East Side,40.77575,-73.95304,Entire home/apt,165,16,1,0.03,1,0 +16445,19873203,Brooklyn,Williamsburg,40.71351,-73.95848000000001,Entire home/apt,319,2,49,1.32,1,82 +16446,73953648,Manhattan,Hell's Kitchen,40.7661,-73.99053,Entire home/apt,295,3,0,,1,0 +16447,22913446,Brooklyn,Williamsburg,40.71382,-73.94285,Private room,56,21,0,,1,0 +16448,22541573,Manhattan,Midtown,40.756409999999995,-73.97811999999999,Entire home/apt,219,30,0,,87,342 +16449,5402234,Queens,Ditmars Steinway,40.774809999999995,-73.91561999999999,Private room,50,2,9,0.68,1,28 +16450,69286284,Manhattan,East Harlem,40.79566,-73.94136999999999,Entire home/apt,160,4,57,1.51,1,31 +16451,56656728,Manhattan,Financial District,40.70735,-74.01226,Private room,109,1,86,2.33,5,161 +16452,16300425,Manhattan,Washington Heights,40.84989,-73.93044,Private room,95,2,0,,1,90 +16453,1837583,Manhattan,Two Bridges,40.71141,-73.99408000000001,Private room,100,3,0,,1,0 +16454,19169325,Brooklyn,Bedford-Stuyvesant,40.68393,-73.92303000000001,Entire home/apt,200,4,0,,1,310 +16455,10580223,Brooklyn,Flatbush,40.65335,-73.95663,Private room,50,3,2,0.05,2,27 +16456,9149064,Brooklyn,Fort Greene,40.69388,-73.98085,Entire home/apt,150,1,15,0.42,1,55 +16457,24843404,Manhattan,Washington Heights,40.849959999999996,-73.93937,Private room,50,5,1,0.03,1,0 +16458,74020712,Manhattan,Upper East Side,40.7722,-73.95272,Entire home/apt,115,3,8,0.22,1,0 +16459,6357668,Queens,Astoria,40.76279,-73.91767,Entire home/apt,69,4,0,,1,0 +16460,65659872,Brooklyn,Bushwick,40.709179999999996,-73.92182,Private room,60,15,0,,1,0 +16461,74031395,Manhattan,Gramercy,40.73637,-73.98051,Entire home/apt,350,5,0,,1,0 +16462,1362083,Manhattan,Hell's Kitchen,40.76376,-73.98789000000001,Private room,131,4,33,0.88,1,180 +16463,290317,Manhattan,Upper East Side,40.77305,-73.96283000000001,Shared room,99,3,48,1.53,1,0 +16464,74044417,Queens,Rosedale,40.659729999999996,-73.74098000000001,Private room,160,1,1,0.11,1,365 +16465,6569229,Manhattan,Tribeca,40.71523,-74.0079,Entire home/apt,250,3,3,0.09,1,0 +16466,34386241,Manhattan,East Village,40.72697,-73.98488,Entire home/apt,250,1,18,0.47,2,0 +16467,60928872,Brooklyn,Park Slope,40.67002,-73.98496,Entire home/apt,150,3,3,0.08,1,0 +16468,6189263,Manhattan,Financial District,40.70433,-74.00706,Entire home/apt,150,2,6,0.16,1,0 +16469,49568280,Queens,Ditmars Steinway,40.77705,-73.91356,Private room,65,1,20,2.23,3,20 +16470,6917811,Manhattan,Civic Center,40.71537,-74.00180999999999,Private room,100,2,0,,1,0 +16471,38284609,Manhattan,Washington Heights,40.8449,-73.94034,Private room,85,3,10,0.3,1,362 +16472,74112289,Brooklyn,Williamsburg,40.71738,-73.94089,Private room,44,28,11,0.31,2,0 +16473,2856748,Manhattan,Kips Bay,40.7394,-73.97995999999999,Entire home/apt,225,30,0,,49,364 +16474,69977115,Brooklyn,Bensonhurst,40.61608,-73.99056,Private room,79,2,0,,4,179 +16475,49484132,Brooklyn,Williamsburg,40.71024,-73.96081,Entire home/apt,150,2,120,3.29,1,149 +16476,6531491,Brooklyn,Greenpoint,40.72217,-73.94800000000001,Private room,75,1,55,1.46,1,0 +16477,14052889,Manhattan,Harlem,40.82779,-73.94065,Entire home/apt,105,7,32,0.91,1,290 +16478,64172780,Brooklyn,Bedford-Stuyvesant,40.686040000000006,-73.95375,Private room,50,5,7,0.21,1,40 +16479,74130179,Manhattan,Nolita,40.72426,-73.99535,Entire home/apt,275,3,24,0.66,1,82 +16480,1514100,Manhattan,Harlem,40.809909999999995,-73.94596999999999,Private room,149,3,16,0.59,1,333 +16481,47896181,Manhattan,Upper West Side,40.80125,-73.96529,Private room,90,1,3,0.08,1,0 +16482,67641348,Brooklyn,Bedford-Stuyvesant,40.68484,-73.95759,Private room,56,3,17,0.45,1,0 +16483,33386679,Brooklyn,Crown Heights,40.67538,-73.95308,Entire home/apt,220,1,1,0.03,2,0 +16484,7592287,Brooklyn,East Flatbush,40.6531,-73.94965,Private room,42,3,6,0.16,1,0 +16485,11975339,Manhattan,Nolita,40.72315,-73.99507,Entire home/apt,129,2,6,0.28,1,0 +16486,74112289,Brooklyn,Williamsburg,40.71756,-73.94063,Private room,50,24,10,0.28,2,31 +16487,67439911,Brooklyn,Brooklyn Heights,40.697070000000004,-73.99632,Entire home/apt,110,30,3,0.08,1,6 +16488,16098958,Manhattan,Theater District,40.762640000000005,-73.98569,Entire home/apt,160,30,3,0.09,96,344 +16489,74179880,Brooklyn,East New York,40.67378,-73.88846,Private room,35,30,86,2.29,8,326 +16490,15523,Staten Island,Tompkinsville,40.63342,-74.08249,Private room,72,2,25,0.66,2,237 +16491,5955262,Queens,Long Island City,40.73487,-73.92145,Entire home/apt,95,5,46,1.23,1,244 +16492,74196752,Manhattan,Harlem,40.81162,-73.95045999999999,Entire home/apt,100,1,5,0.13,1,0 +16493,51756175,Manhattan,Upper West Side,40.77282,-73.9808,Private room,115,10,1,0.03,1,0 +16494,7195006,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95035,Entire home/apt,115,5,1,0.03,1,0 +16495,74227432,Manhattan,Harlem,40.825790000000005,-73.9528,Private room,79,1,56,1.49,1,74 +16496,74231989,Manhattan,Upper West Side,40.80205,-73.9658,Private room,36,15,1,0.03,1,0 +16497,2856748,Manhattan,Upper East Side,40.761390000000006,-73.96208,Entire home/apt,138,30,0,,49,365 +16498,20907184,Brooklyn,Bay Ridge,40.633590000000005,-74.02301999999999,Entire home/apt,75,30,1,0.03,1,191 +16499,2856748,Manhattan,Upper East Side,40.76161,-73.96191999999999,Entire home/apt,138,30,0,,49,365 +16500,4316938,Manhattan,East Harlem,40.80735,-73.94064,Entire home/apt,175,9,0,,1,365 +16501,69545272,Manhattan,Financial District,40.71085,-74.0083,Private room,59,13,24,0.68,2,166 +16502,54778990,Manhattan,East Village,40.72572,-73.98269,Private room,50,1,0,,1,0 +16503,62805890,Brooklyn,Prospect-Lefferts Gardens,40.6557,-73.95470999999999,Entire home/apt,99,3,15,0.43,1,167 +16504,35322092,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92926,Private room,49,1,77,2.44,3,239 +16505,52592877,Brooklyn,Crown Heights,40.672940000000004,-73.9581,Entire home/apt,113,1,3,0.08,1,0 +16506,17638424,Queens,Elmhurst,40.74576,-73.87406999999999,Private room,47,1,87,2.35,8,156 +16507,15774226,Manhattan,Theater District,40.76318,-73.98473,Private room,104,5,0,,1,0 +16508,24743701,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.95567,Entire home/apt,650,5,3,0.08,2,23 +16509,22682349,Manhattan,Upper West Side,40.79643,-73.97188,Private room,110,7,2,0.06,1,0 +16510,72218656,Manhattan,Upper East Side,40.7626,-73.96030999999999,Entire home/apt,199,3,57,1.51,1,93 +16511,6244152,Brooklyn,Greenpoint,40.72779,-73.94323,Private room,67,4,0,,1,0 +16512,2868,Brooklyn,Bedford-Stuyvesant,40.68258,-73.95871,Entire home/apt,60,29,2,0.06,1,221 +16513,3343599,Manhattan,SoHo,40.72515,-74.00182,Entire home/apt,150,5,0,,1,0 +16514,6098059,Manhattan,Upper West Side,40.77616,-73.97994,Entire home/apt,99,8,0,,1,0 +16515,74330820,Manhattan,East Harlem,40.81286,-73.93618000000001,Private room,52,1,33,0.91,2,4 +16516,33402262,Brooklyn,Bedford-Stuyvesant,40.68378,-73.94118,Entire home/apt,155,2,94,2.5,1,218 +16517,3491890,Manhattan,Upper West Side,40.78396,-73.97691,Entire home/apt,171,30,3,0.08,6,188 +16518,74179880,Brooklyn,East New York,40.67323,-73.8892,Private room,39,3,71,1.9,8,329 +16519,31460662,Manhattan,Upper East Side,40.76995,-73.95604,Shared room,120,1,12,0.32,1,0 +16520,74351458,Brooklyn,Bushwick,40.69893,-73.92624,Entire home/apt,115,5,54,1.47,1,105 +16521,2584324,Manhattan,West Village,40.733340000000005,-74.00104,Entire home/apt,165,1,13,0.35,1,0 +16522,40976536,Manhattan,Harlem,40.82963,-73.9495,Private room,69,1,34,0.91,1,180 +16523,7550464,Brooklyn,Bushwick,40.70238,-73.92811999999999,Private room,55,1,1,0.03,1,0 +16524,15478812,Queens,Ridgewood,40.70422,-73.90978,Private room,60,1,0,,1,0 +16525,27652670,Brooklyn,Greenpoint,40.73239,-73.95449,Entire home/apt,133,2,12,0.33,1,0 +16526,74397192,Manhattan,Hell's Kitchen,40.76345,-73.99298,Private room,79,3,136,3.65,1,47 +16527,17770598,Brooklyn,Manhattan Beach,40.5775,-73.94003000000001,Entire home/apt,79,1,0,,1,0 +16528,5704909,Manhattan,Harlem,40.80041,-73.95237,Entire home/apt,160,3,1,0.03,1,0 +16529,10110888,Manhattan,Harlem,40.80822,-73.95273,Entire home/apt,170,3,34,1.0,1,198 +16530,50855262,Queens,Elmhurst,40.73727,-73.87853,Private room,45,5,2,0.09,3,0 +16531,10039614,Manhattan,West Village,40.73506,-74.00518000000001,Entire home/apt,249,1,0,,1,0 +16532,36434327,Manhattan,Harlem,40.806979999999996,-73.95272,Private room,66,14,4,0.17,1,0 +16533,278393,Brooklyn,Bushwick,40.69798,-73.92461999999999,Private room,52,1,132,3.59,3,74 +16534,6787564,Manhattan,Lower East Side,40.712579999999996,-73.9901,Entire home/apt,200,4,6,0.31,1,0 +16535,4832845,Manhattan,Midtown,40.760259999999995,-73.9659,Private room,80,1,275,7.45,1,45 +16536,74468846,Brooklyn,Williamsburg,40.71225,-73.94413,Private room,75,2,30,2.65,2,2 +16537,72359036,Manhattan,Upper East Side,40.77983,-73.94798,Private room,125,1,5,0.13,1,0 +16538,74489237,Bronx,Tremont,40.84268,-73.89294,Entire home/apt,68,1,0,,1,0 +16539,3097033,Manhattan,Harlem,40.80304,-73.95148,Private room,65,2,50,1.39,2,15 +16540,69706365,Manhattan,Roosevelt Island,40.76205,-73.94975,Private room,79,4,2,0.05,2,0 +16541,15985137,Brooklyn,Bushwick,40.694759999999995,-73.92943000000001,Entire home/apt,125,5,42,1.12,1,1 +16542,9123131,Brooklyn,Crown Heights,40.672059999999995,-73.9429,Entire home/apt,105,4,13,0.36,2,0 +16543,1996771,Brooklyn,Bedford-Stuyvesant,40.68063,-73.95015,Entire home/apt,140,3,122,3.26,1,275 +16544,38322121,Brooklyn,Bedford-Stuyvesant,40.69484,-73.95852,Private room,70,3,2,0.05,1,0 +16545,10196579,Manhattan,Hell's Kitchen,40.75647,-73.99848,Entire home/apt,2000,1,4,0.11,1,362 +16546,74534871,Manhattan,Harlem,40.82158,-73.93824000000001,Private room,100,1,0,,1,0 +16547,41044972,Manhattan,Chelsea,40.74487,-74.00277,Shared room,75,2,9,0.26,1,231 +16548,50485365,Brooklyn,Crown Heights,40.66741,-73.9522,Private room,36,12,2,0.09,1,0 +16549,21350216,Manhattan,Chelsea,40.74858,-73.99887,Entire home/apt,240,1,1,0.03,1,0 +16550,74573695,Manhattan,Greenwich Village,40.72838,-73.99899,Entire home/apt,200,7,38,1.03,1,205 +16551,6945858,Manhattan,Upper East Side,40.769690000000004,-73.95509,Entire home/apt,250,30,0,,1,0 +16552,56142507,Brooklyn,Flatbush,40.64542,-73.96484,Shared room,46,1,22,0.58,1,365 +16553,5189524,Manhattan,Kips Bay,40.740359999999995,-73.98053,Entire home/apt,120,26,22,0.6,1,0 +16554,6458590,Manhattan,Upper West Side,40.80348,-73.96579,Private room,80,2,149,3.98,1,0 +16555,74643411,Manhattan,Upper West Side,40.77969,-73.97738000000001,Entire home/apt,120,14,12,0.34,1,261 +16556,74653179,Brooklyn,South Slope,40.66537,-73.98559,Entire home/apt,150,3,6,0.17,1,1 +16557,24693048,Manhattan,Upper East Side,40.77693,-73.94524,Entire home/apt,120,7,0,,1,0 +16558,3490622,Manhattan,Flatiron District,40.74154,-73.98515,Entire home/apt,200,5,1,0.03,1,0 +16559,18056150,Manhattan,East Village,40.72954,-73.98841999999999,Private room,100,1,1,0.03,1,0 +16560,7195638,Brooklyn,Bedford-Stuyvesant,40.685,-73.92022,Private room,73,3,5,0.14,1,359 +16561,9148721,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94636,Private room,60,2,9,0.24,2,0 +16562,55471059,Brooklyn,Brooklyn Heights,40.69511,-73.9934,Entire home/apt,110,1,3,0.08,1,0 +16563,38815234,Manhattan,Harlem,40.82605,-73.94219,Private room,55,3,60,1.68,2,246 +16564,40863393,Manhattan,Washington Heights,40.85177,-73.93652,Entire home/apt,110,1,7,0.19,1,0 +16565,74712074,Manhattan,Harlem,40.81834,-73.93929,Private room,70,1,4,0.11,1,0 +16566,14291958,Brooklyn,Williamsburg,40.70644,-73.93968000000001,Private room,60,3,2,0.06,1,0 +16567,16437254,Brooklyn,Prospect Heights,40.67634,-73.96651,Entire home/apt,270,30,3,0.11,21,255 +16568,24765466,Brooklyn,Prospect-Lefferts Gardens,40.655879999999996,-73.95062,Private room,35,20,0,,1,0 +16569,4920111,Manhattan,Midtown,40.75242,-73.97261,Private room,100,1,4,0.11,1,0 +16570,74795588,Manhattan,Inwood,40.86059,-73.92985999999999,Private room,50,7,0,,1,0 +16571,6297445,Manhattan,Financial District,40.70662,-74.0051,Entire home/apt,150,3,6,0.17,1,0 +16572,50760546,Manhattan,Midtown,40.74569,-73.98192,Entire home/apt,150,30,2,0.07,31,64 +16573,11091997,Brooklyn,Bushwick,40.70243,-73.92978000000001,Private room,77,3,47,1.25,2,46 +16574,35433522,Brooklyn,Williamsburg,40.71281,-73.95127,Private room,59,2,87,2.31,3,0 +16575,71176668,Manhattan,Harlem,40.81646,-73.93795,Private room,110,2,4,0.12,4,0 +16576,71176668,Manhattan,Harlem,40.81627,-73.93512,Private room,110,2,9,0.26,4,280 +16577,2723661,Brooklyn,Bushwick,40.69415,-73.92987,Private room,45,1,0,,1,0 +16578,74823629,Queens,Ditmars Steinway,40.77388,-73.91598,Private room,125,1,6,0.17,1,0 +16579,71176668,Manhattan,Harlem,40.81604,-73.94017,Private room,110,2,20,0.58,4,5 +16580,35433522,Brooklyn,Williamsburg,40.712340000000005,-73.95,Private room,89,2,69,1.83,3,0 +16581,14336676,Brooklyn,Bushwick,40.69808,-73.93,Private room,75,2,7,0.19,1,0 +16582,18957252,Brooklyn,Greenpoint,40.72361,-73.95039,Private room,100,1,11,0.3,1,0 +16583,6671270,Brooklyn,Brooklyn Heights,40.69304,-73.99328,Entire home/apt,250,7,5,0.14,1,0 +16584,8089285,Manhattan,Upper West Side,40.77865,-73.98104000000001,Entire home/apt,149,2,1,0.03,1,0 +16585,72483475,Brooklyn,Bushwick,40.69092,-73.91073,Private room,50,2,2,0.05,1,0 +16586,73831041,Bronx,Concourse,40.82909,-73.92249,Entire home/apt,95,5,0,,1,0 +16587,56589011,Brooklyn,Williamsburg,40.71293,-73.95945999999999,Entire home/apt,160,1,7,0.19,1,0 +16588,74879324,Manhattan,Harlem,40.80515,-73.95595,Private room,79,3,50,1.33,1,36 +16589,1362963,Brooklyn,Fort Greene,40.69016,-73.97306999999999,Entire home/apt,97,3,0,,1,0 +16590,3562912,Brooklyn,Williamsburg,40.71505,-73.94403,Private room,75,3,0,,1,0 +16591,42682752,Brooklyn,Cobble Hill,40.68868,-73.99206,Private room,65,2,17,0.45,3,0 +16592,18840786,Brooklyn,Bushwick,40.699490000000004,-73.92621,Entire home/apt,95,3,1,0.03,1,0 +16593,22656176,Manhattan,Midtown,40.756040000000006,-73.9681,Entire home/apt,185,1,2,0.05,1,0 +16594,31753024,Brooklyn,Bushwick,40.69818,-73.91941,Entire home/apt,68,2,4,0.11,1,0 +16595,49328849,Manhattan,East Harlem,40.795320000000004,-73.94454,Private room,85,4,46,1.23,1,72 +16596,424078,Brooklyn,Gowanus,40.6772,-73.99354,Private room,150,2,215,5.9,1,72 +16597,15798864,Brooklyn,Bedford-Stuyvesant,40.696459999999995,-73.96059,Private room,65,4,6,0.16,1,0 +16598,74981965,Manhattan,Murray Hill,40.74436,-73.97292,Entire home/apt,200,270,2,0.05,1,0 +16599,67661003,Brooklyn,Windsor Terrace,40.65549,-73.98111,Private room,55,2,26,1.36,1,75 +16600,75001749,Brooklyn,Greenpoint,40.73767,-73.95527,Private room,100,2,0,,1,0 +16601,993817,Manhattan,West Village,40.7321,-74.00461,Entire home/apt,250,2,1,0.03,1,0 +16602,75014265,Brooklyn,Williamsburg,40.70949,-73.96087,Private room,89,1,3,0.08,1,0 +16603,75017049,Brooklyn,South Slope,40.66662,-73.98168000000001,Private room,100,31,1,0.88,2,283 +16604,29183572,Manhattan,Kips Bay,40.74429,-73.97663,Entire home/apt,300,2,2,0.05,1,0 +16605,75020731,Queens,Ridgewood,40.70219,-73.89859,Private room,45,7,35,1.29,1,18 +16606,75029289,Manhattan,Upper East Side,40.77375,-73.94963,Entire home/apt,133,30,10,0.44,5,126 +16607,75030399,Bronx,Williamsbridge,40.87938,-73.86349,Entire home/apt,500,2,19,0.56,1,345 +16608,19529332,Brooklyn,Williamsburg,40.71736,-73.95263,Private room,68,3,9,0.25,1,0 +16609,75034279,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9512,Private room,56,2,43,1.61,2,110 +16610,39890192,Manhattan,Little Italy,40.71728,-73.99859000000001,Private room,75,15,15,0.4,12,80 +16611,20353229,Brooklyn,Williamsburg,40.70552,-73.93344,Private room,80,3,0,,1,0 +16612,33064599,Manhattan,Upper West Side,40.8002,-73.96727,Private room,299,1,3,0.08,6,345 +16613,10633027,Brooklyn,Sheepshead Bay,40.59621,-73.95767,Private room,51,2,80,2.42,3,35 +16614,54454582,Manhattan,Hell's Kitchen,40.76283,-73.99331,Private room,115,2,30,0.8,3,3 +16615,7959692,Brooklyn,Brooklyn Heights,40.69446,-73.99689000000001,Entire home/apt,180,3,5,0.14,1,0 +16616,6444963,Brooklyn,Bedford-Stuyvesant,40.69041,-73.96025999999999,Private room,50,6,3,0.08,1,3 +16617,49742862,Brooklyn,Greenpoint,40.73052,-73.95876,Private room,80,2,2,0.05,2,0 +16618,75092148,Queens,Astoria,40.760259999999995,-73.92235,Entire home/apt,300,4,4,0.11,1,0 +16619,34300852,Brooklyn,Bushwick,40.694720000000004,-73.91405,Entire home/apt,79,2,156,4.21,1,70 +16620,17265086,Manhattan,Kips Bay,40.73898,-73.98233,Entire home/apt,150,2,18,0.81,1,0 +16621,36478779,Brooklyn,Prospect-Lefferts Gardens,40.660709999999995,-73.9558,Entire home/apt,94,3,98,2.71,1,94 +16622,74304509,Brooklyn,Prospect Heights,40.67951,-73.96925999999999,Private room,65,1,16,0.46,1,0 +16623,39890192,Manhattan,Little Italy,40.71783,-73.99817,Private room,83,15,26,0.74,12,125 +16624,48036408,Brooklyn,Bushwick,40.68584,-73.90587,Private room,50,20,0,,1,0 +16625,1331063,Brooklyn,Bedford-Stuyvesant,40.68235,-73.9535,Entire home/apt,120,14,1,0.03,1,0 +16626,36579485,Brooklyn,Canarsie,40.6413,-73.90303,Private room,500,2,1,0.03,3,179 +16627,36579485,Brooklyn,Canarsie,40.6418,-73.90245,Private room,600,2,0,,3,362 +16628,9603086,Brooklyn,Gowanus,40.6664,-73.99305,Entire home/apt,300,1,0,,1,311 +16629,74180901,Manhattan,Washington Heights,40.83791,-73.94075,Entire home/apt,150,1,89,2.41,1,139 +16630,1713791,Brooklyn,Bushwick,40.706990000000005,-73.92188,Entire home/apt,149,1,41,1.1,1,69 +16631,75085688,Manhattan,Upper West Side,40.801,-73.9613,Entire home/apt,150,2,11,0.31,1,2 +16632,41408521,Manhattan,Chinatown,40.71385,-73.99710999999999,Private room,75,1,3,0.08,1,0 +16633,21367825,Manhattan,Roosevelt Island,40.7672,-73.94552,Entire home/apt,195,14,1,0.03,1,0 +16634,33386679,Brooklyn,Crown Heights,40.67512,-73.95248000000001,Private room,80,1,1,0.03,2,0 +16635,75205085,Manhattan,Nolita,40.72271,-73.99518,Entire home/apt,250,4,11,0.29,1,0 +16636,2507664,Manhattan,West Village,40.73704,-74.00371,Entire home/apt,225,1,21,0.56,1,0 +16637,75098888,Manhattan,SoHo,40.72535,-73.9966,Entire home/apt,450,2,41,1.16,1,0 +16638,75216989,Queens,Flushing,40.7662,-73.82854,Private room,35,1,67,1.78,4,339 +16639,75030544,Brooklyn,Bedford-Stuyvesant,40.68155,-73.91435,Private room,70,12,27,0.73,4,342 +16640,35313655,Brooklyn,Crown Heights,40.67389,-73.93974,Private room,80,3,1,0.03,1,0 +16641,25614735,Brooklyn,Bushwick,40.69809,-73.93435,Private room,75,2,0,,1,0 +16642,52699613,Brooklyn,Greenpoint,40.73356,-73.96001,Private room,79,1,0,,1,0 +16643,39890192,Manhattan,Chinatown,40.71552,-73.99731,Private room,84,14,25,0.71,12,89 +16644,75246219,Manhattan,Lower East Side,40.72075,-73.98733,Entire home/apt,172,3,3,0.08,1,0 +16645,2383846,Manhattan,Washington Heights,40.83945,-73.94353000000001,Entire home/apt,110,14,5,0.14,1,0 +16646,35494785,Brooklyn,Bushwick,40.70044,-73.93909000000001,Private room,55,1,1,0.03,1,0 +16647,75061595,Queens,Long Island City,40.760529999999996,-73.92976999999999,Private room,78,2,27,0.72,1,0 +16648,8387315,Brooklyn,Midwood,40.61567,-73.95488,Entire home/apt,115,1,75,2.0,1,81 +16649,14105586,Manhattan,Morningside Heights,40.80904,-73.95806999999999,Entire home/apt,180,3,1,0.03,1,0 +16650,75275467,Bronx,Port Morris,40.808840000000004,-73.9302,Entire home/apt,139,2,28,0.8,4,131 +16651,6459374,Brooklyn,Greenpoint,40.72446,-73.95235,Private room,120,2,10,0.27,1,0 +16652,75281770,Brooklyn,East Flatbush,40.65112,-73.95165,Entire home/apt,77,2,1,0.03,1,0 +16653,7333982,Manhattan,Upper East Side,40.776140000000005,-73.94626,Entire home/apt,150,7,1,0.03,1,0 +16654,11684392,Manhattan,Upper West Side,40.79951,-73.96767,Private room,67,5,1,0.03,1,0 +16655,75302217,Manhattan,East Harlem,40.7885,-73.9494,Entire home/apt,159,30,12,0.35,2,0 +16656,185394,Brooklyn,Williamsburg,40.70485,-73.94471999999999,Private room,100,1,3,0.08,2,0 +16657,34547856,Brooklyn,Crown Heights,40.67437,-73.95711,Private room,65,2,0,,1,0 +16658,38403770,Manhattan,East Village,40.727920000000005,-73.98106,Entire home/apt,199,2,4,0.11,1,0 +16659,10864311,Brooklyn,Clinton Hill,40.692479999999996,-73.96899,Private room,75,3,7,0.25,1,0 +16660,37218085,Manhattan,Upper West Side,40.799640000000004,-73.96437,Private room,70,3,2,0.06,1,0 +16661,75275467,Bronx,Port Morris,40.80872,-73.93051,Private room,49,2,59,1.59,4,148 +16662,75275467,Bronx,Port Morris,40.80952,-73.93025,Private room,41,2,57,1.54,4,146 +16663,20932025,Manhattan,Lower East Side,40.713359999999994,-73.98977,Private room,150,3,6,0.18,1,0 +16664,40221604,Manhattan,Harlem,40.822990000000004,-73.94485999999999,Private room,60,1,72,1.94,3,73 +16665,55829442,Queens,Kew Gardens Hills,40.730779999999996,-73.82231999999999,Entire home/apt,40,10,4,0.11,1,0 +16666,8273903,Queens,Astoria,40.76417,-73.92815999999999,Entire home/apt,99,31,4,0.11,1,5 +16667,27977872,Manhattan,Financial District,40.707159999999995,-74.01155,Entire home/apt,250,5,0,,1,0 +16668,11724504,Brooklyn,Bushwick,40.69903,-73.91722,Private room,40,4,1,0.03,1,0 +16669,75443454,Queens,Ditmars Steinway,40.77293,-73.91846,Private room,100,3,34,0.92,2,161 +16670,30283594,Manhattan,Theater District,40.75956,-73.98512,Entire home/apt,239,30,0,,121,363 +16671,75458749,Brooklyn,Flatbush,40.64107,-73.95325,Private room,50,4,3,0.08,2,0 +16672,11727297,Manhattan,Harlem,40.81816,-73.94305,Entire home/apt,110,2,9,0.26,1,0 +16673,70713032,Brooklyn,Brooklyn Heights,40.69775,-73.99517,Entire home/apt,375,10,2,0.18,1,22 +16674,75478154,Brooklyn,Bedford-Stuyvesant,40.682520000000004,-73.93863,Entire home/apt,229,4,92,2.54,1,236 +16675,3115626,Brooklyn,Fort Greene,40.69056,-73.97752,Entire home/apt,175,2,132,3.54,1,298 +16676,28370925,Brooklyn,Sunset Park,40.638490000000004,-74.02028,Private room,40,1,84,2.23,4,0 +16677,75506967,Bronx,Tremont,40.84559,-73.89815,Private room,41,7,22,0.61,2,68 +16678,21410914,Manhattan,Morningside Heights,40.81193,-73.95945999999999,Private room,110,3,58,1.62,6,129 +16679,75561563,Manhattan,Upper East Side,40.762840000000004,-73.96038,Entire home/apt,150,1,25,0.67,1,0 +16680,75572617,Manhattan,Upper East Side,40.77722,-73.94991,Entire home/apt,165,4,5,0.13,1,0 +16681,30283594,Manhattan,Hell's Kitchen,40.76045,-73.9981,Entire home/apt,239,30,1,0.04,121,365 +16682,75577166,Queens,Jackson Heights,40.75274,-73.87777,Entire home/apt,125,3,86,2.39,1,271 +16683,75575414,Manhattan,Nolita,40.72198,-73.99450999999999,Entire home/apt,245,5,0,,1,0 +16684,54807420,Queens,Astoria,40.756190000000004,-73.92546,Private room,80,60,3,0.1,1,83 +16685,4243971,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96016999999999,Entire home/apt,329,2,15,0.98,2,0 +16686,5777244,Brooklyn,Downtown Brooklyn,40.69209,-73.98499,Entire home/apt,175,1,10,0.27,1,0 +16687,2571641,Manhattan,Harlem,40.81771,-73.952,Entire home/apt,150,3,3,0.08,3,0 +16688,16278677,Brooklyn,Williamsburg,40.71459,-73.93885,Entire home/apt,200,7,0,,1,146 +16689,3256433,Manhattan,Upper West Side,40.794259999999994,-73.96914,Entire home/apt,200,10,4,0.12,7,154 +16690,4260505,Brooklyn,Williamsburg,40.710609999999996,-73.94289,Private room,75,2,7,0.22,1,0 +16691,69546772,Bronx,Throgs Neck,40.83166,-73.81747,Entire home/apt,89,1,192,5.15,1,303 +16692,75730551,Brooklyn,Canarsie,40.636720000000004,-73.91154,Entire home/apt,120,2,193,5.14,1,254 +16693,39644709,Manhattan,Washington Heights,40.851,-73.93141,Private room,35,3,1,0.03,1,0 +16694,75739500,Brooklyn,DUMBO,40.704,-73.98464,Private room,100,3,23,0.63,1,0 +16695,5628991,Brooklyn,Williamsburg,40.7194,-73.96262,Private room,85,3,0,,1,0 +16696,31429931,Brooklyn,Williamsburg,40.71444,-73.94058000000001,Private room,70,1,1,0.03,1,0 +16697,7097844,Brooklyn,Greenpoint,40.72552,-73.94489,Entire home/apt,114,2,3,0.08,1,0 +16698,60380241,Manhattan,Upper West Side,40.778,-73.97912,Entire home/apt,200,2,117,3.24,1,34 +16699,75484381,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94866,Entire home/apt,225,30,0,,1,249 +16700,75773748,Manhattan,Upper West Side,40.79918,-73.9635,Private room,120,2,0,,1,0 +16701,8714636,Manhattan,Greenwich Village,40.73057,-73.99422,Entire home/apt,199,3,1,0.03,1,0 +16702,28557516,Manhattan,Upper West Side,40.802859999999995,-73.96561,Private room,55,5,0,,1,0 +16703,3148025,Manhattan,West Village,40.73831,-74.00324,Entire home/apt,199,4,4,0.11,1,127 +16704,11070120,Bronx,Fordham,40.85927,-73.90142,Private room,40,21,23,0.61,2,266 +16705,4413028,Queens,Astoria,40.768359999999994,-73.91445,Entire home/apt,200,2,18,0.49,1,6 +16706,264025,Brooklyn,Williamsburg,40.718959999999996,-73.95673000000001,Private room,80,3,0,,1,0 +16707,26928086,Manhattan,Upper East Side,40.77928,-73.94861999999999,Entire home/apt,140,2,6,0.17,1,0 +16708,6741942,Queens,Rego Park,40.7234,-73.85786999999999,Entire home/apt,50,20,2,0.08,1,0 +16709,8961407,Manhattan,Harlem,40.8053,-73.94704,Entire home/apt,375,3,50,1.5,3,351 +16710,9949656,Brooklyn,Williamsburg,40.71329,-73.96585999999999,Entire home/apt,250,3,6,0.18,1,114 +16711,75828613,Brooklyn,Park Slope,40.671479999999995,-73.97785999999999,Private room,40,3,2,0.06,1,0 +16712,15318852,Manhattan,Lower East Side,40.71775,-73.98612,Private room,99,2,22,0.59,1,365 +16713,75915628,Brooklyn,Greenpoint,40.73431,-73.95928,Entire home/apt,140,2,3,0.08,1,0 +16714,13373889,Staten Island,Concord,40.60556,-74.08274,Entire home/apt,150,7,1,0.12,2,83 +16715,185394,Brooklyn,Williamsburg,40.70478,-73.9435,Private room,75,1,2,0.05,2,0 +16716,61265293,Brooklyn,Crown Heights,40.67383,-73.961,Private room,55,3,27,0.8,1,48 +16717,2455767,Brooklyn,Windsor Terrace,40.65867,-73.97971,Entire home/apt,145,2,78,2.18,1,314 +16718,75947654,Brooklyn,Carroll Gardens,40.68468,-73.99372,Entire home/apt,95,4,92,2.56,1,39 +16719,16755566,Brooklyn,Bedford-Stuyvesant,40.69076,-73.92886,Entire home/apt,69,4,5,0.13,1,0 +16720,8190806,Brooklyn,Cobble Hill,40.6885,-73.99443000000001,Entire home/apt,175,5,53,1.44,1,99 +16721,8961407,Manhattan,Harlem,40.8057,-73.94689,Entire home/apt,350,3,46,1.3,3,297 +16722,17078225,Manhattan,Harlem,40.815509999999996,-73.94915999999999,Private room,119,2,16,0.44,2,0 +16723,75968218,Manhattan,Harlem,40.80151,-73.95345999999999,Private room,160,4,3,0.08,1,0 +16724,1949282,Brooklyn,Bushwick,40.69407,-73.91124,Private room,55,2,38,1.51,5,0 +16725,75981937,Queens,Astoria,40.760020000000004,-73.92251999999999,Private room,48,1,47,1.27,2,71 +16726,33248485,Manhattan,Harlem,40.80321,-73.9521,Private room,85,1,9,0.24,1,0 +16727,73734452,Manhattan,Upper East Side,40.762,-73.96045,Entire home/apt,97,5,3,0.08,1,0 +16728,279989,Brooklyn,Williamsburg,40.70489,-73.94112,Entire home/apt,110,6,18,0.52,1,0 +16729,71496163,Manhattan,East Harlem,40.797470000000004,-73.94106,Entire home/apt,91,1,1,0.03,1,0 +16730,16836964,Brooklyn,Fort Greene,40.68877,-73.97795,Entire home/apt,150,2,1,0.03,1,0 +16731,8278179,Manhattan,East Village,40.72886,-73.98834000000001,Private room,80,1,4,0.11,1,0 +16732,76004481,Brooklyn,Flatbush,40.65251,-73.96325,Private room,60,4,1,0.04,1,0 +16733,74339725,Brooklyn,Bushwick,40.69539,-73.9285,Private room,55,7,7,0.19,1,0 +16734,16626798,Brooklyn,Bushwick,40.702220000000004,-73.92947,Private room,65,21,0,,1,0 +16735,3686511,Brooklyn,Prospect-Lefferts Gardens,40.66128,-73.94797,Entire home/apt,163,3,16,0.52,1,154 +16736,63227509,Brooklyn,Sunset Park,40.65886,-73.99054,Private room,60,2,0,,1,41 +16737,68600221,Manhattan,Harlem,40.824290000000005,-73.95225,Private room,54,7,2,0.05,1,0 +16738,28283747,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94686,Private room,46,7,1,0.03,1,0 +16739,45937956,Queens,Jackson Heights,40.75087,-73.89365,Entire home/apt,125,2,32,0.85,2,50 +16740,10859834,Brooklyn,East New York,40.66405,-73.85676,Entire home/apt,150,2,179,5.13,1,300 +16741,28370925,Brooklyn,Sunset Park,40.63909,-74.01815,Private room,47,2,87,2.32,4,0 +16742,731601,Queens,Astoria,40.77159,-73.93089,Private room,40,90,0,,2,0 +16743,76037379,Brooklyn,Clinton Hill,40.68594,-73.96293,Entire home/apt,120,3,2,0.05,1,0 +16744,76040827,Manhattan,Harlem,40.801840000000006,-73.95591,Private room,67,1,8,0.23,1,0 +16745,61393656,Brooklyn,Borough Park,40.62023,-73.99103000000001,Entire home/apt,73,1,65,3.49,1,3 +16746,43242084,Brooklyn,Prospect-Lefferts Gardens,40.656,-73.95851,Entire home/apt,128,2,2,2.0,1,133 +16747,75793151,Brooklyn,Bensonhurst,40.61448,-74.00486,Entire home/apt,121,2,24,0.64,1,14 +16748,9782292,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95316,Entire home/apt,250,2,3,0.08,1,0 +16749,76103506,Manhattan,Lower East Side,40.71962,-73.98241,Entire home/apt,80,1,4,0.11,1,0 +16750,23273780,Manhattan,Harlem,40.81619,-73.93798000000001,Entire home/apt,77,1,2,0.05,1,0 +16751,76104209,Manhattan,Upper East Side,40.76113,-73.96092,Entire home/apt,139,30,0,,33,362 +16752,61391963,Manhattan,Hell's Kitchen,40.76334,-73.98909,Entire home/apt,117,30,9,0.4,91,105 +16753,39808438,Brooklyn,Bushwick,40.68936,-73.916,Private room,75,3,23,0.62,5,0 +16754,1544804,Queens,Astoria,40.76406,-73.90769,Entire home/apt,99,1,185,5.28,1,211 +16755,43433174,Manhattan,West Village,40.73426,-74.00236,Entire home/apt,279,3,2,0.05,1,0 +16756,9679974,Manhattan,East Village,40.729659999999996,-73.98187,Entire home/apt,140,2,55,1.47,1,0 +16757,2856748,Manhattan,Murray Hill,40.74637,-73.97207,Entire home/apt,200,30,0,,49,364 +16758,22541573,Manhattan,Theater District,40.76375,-73.98387,Entire home/apt,257,30,0,,87,364 +16759,6574489,Brooklyn,Williamsburg,40.717690000000005,-73.95275,Private room,95,2,9,0.24,1,0 +16760,51765884,Brooklyn,Greenpoint,40.725229999999996,-73.95218,Private room,65,5,0,,1,0 +16761,34706197,Manhattan,East Village,40.72768,-73.98739,Private room,149,4,25,0.68,2,156 +16762,39175915,Queens,Ditmars Steinway,40.77643,-73.91364,Private room,29,14,0,,1,0 +16763,10032007,Manhattan,East Village,40.72591,-73.98917,Entire home/apt,250,1,2,0.05,1,0 +16764,76173252,Brooklyn,Carroll Gardens,40.68132,-73.99757,Entire home/apt,150,2,14,0.38,1,0 +16765,16437254,Brooklyn,Boerum Hill,40.68724,-73.98496999999999,Entire home/apt,120,30,7,0.38,21,342 +16766,23335662,Manhattan,Financial District,40.70514,-74.00921,Private room,85,1,3,0.08,1,0 +16767,30283594,Manhattan,Midtown,40.75186,-73.97062,Entire home/apt,259,30,0,,121,184 +16768,35029020,Queens,Long Island City,40.751740000000005,-73.92967,Entire home/apt,90,7,0,,1,0 +16769,29899972,Queens,Astoria,40.75855,-73.91615999999999,Entire home/apt,74,2,0,,1,0 +16770,76192815,Manhattan,Little Italy,40.71938,-73.9952,Entire home/apt,90,31,9,0.24,5,221 +16771,62843071,Queens,Woodhaven,40.69628,-73.85255,Private room,45,1,141,3.77,4,287 +16772,74789787,Brooklyn,Clinton Hill,40.69558,-73.96871999999999,Private room,100,7,2,0.06,1,0 +16773,71679540,Manhattan,Morningside Heights,40.80273,-73.95924000000001,Private room,89,1,131,3.62,1,165 +16774,61391963,Manhattan,Hell's Kitchen,40.76409,-73.99122,Entire home/apt,199,30,4,0.14,91,0 +16775,74994238,Manhattan,SoHo,40.7207,-73.99815,Entire home/apt,76,30,10,0.31,1,30 +16776,34468399,Brooklyn,Prospect Heights,40.67649,-73.96696999999999,Entire home/apt,143,31,3,0.08,1,0 +16777,37555641,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94636,Shared room,40,1,31,0.91,1,0 +16778,96755,Manhattan,Chinatown,40.715790000000005,-73.99158,Entire home/apt,125,4,31,0.84,1,7 +16779,54454582,Manhattan,Hell's Kitchen,40.76413,-73.99301,Entire home/apt,180,2,0,,3,3 +16780,20167238,Queens,Sunnyside,40.74272,-73.92347,Entire home/apt,110,2,4,0.11,1,0 +16781,3386627,Brooklyn,Williamsburg,40.71035,-73.95331999999999,Entire home/apt,185,3,0,,1,0 +16782,4445885,Brooklyn,Williamsburg,40.71685,-73.94668,Private room,85,5,0,,1,0 +16783,69050011,Manhattan,East Village,40.725629999999995,-73.99118,Entire home/apt,300,2,16,0.43,1,0 +16784,5917464,Brooklyn,Bedford-Stuyvesant,40.68697,-73.94506,Entire home/apt,99,2,148,3.98,1,29 +16785,1570170,Brooklyn,Williamsburg,40.7157,-73.95983000000001,Entire home/apt,125,3,97,2.65,2,216 +16786,76244490,Brooklyn,Williamsburg,40.71605,-73.9518,Shared room,35,15,0,,1,0 +16787,22166692,Manhattan,Lower East Side,40.72057,-73.99185,Private room,80,5,27,0.73,1,0 +16788,4027689,Manhattan,Lower East Side,40.71518,-73.98953,Private room,150,3,12,0.32,2,0 +16789,75461641,Brooklyn,Bushwick,40.6979,-73.92851999999999,Entire home/apt,90,3,0,,1,0 +16790,76303329,Brooklyn,Bushwick,40.69405,-73.91403000000001,Private room,40,1,1,0.03,1,0 +16791,76316036,Brooklyn,Crown Heights,40.67587,-73.95467,Entire home/apt,250,7,3,0.13,1,0 +16792,1501090,Manhattan,Chelsea,40.743390000000005,-73.99642,Entire home/apt,450,2,139,3.73,1,221 +16793,66309874,Brooklyn,Cypress Hills,40.686840000000004,-73.87834000000001,Private room,50,3,12,0.33,3,90 +16794,23244570,Brooklyn,Prospect Heights,40.67318,-73.9655,Entire home/apt,75,1,5,0.13,1,0 +16795,6455254,Manhattan,Midtown,40.75352,-73.96807,Entire home/apt,139,2,102,2.74,1,235 +16796,61391963,Manhattan,Midtown,40.75608,-73.96895,Entire home/apt,200,30,2,0.12,91,101 +16797,20754497,Brooklyn,Crown Heights,40.66703,-73.94054,Private room,65,1,101,2.7,1,309 +16798,27277459,Brooklyn,East Flatbush,40.65466,-73.9218,Entire home/apt,115,4,89,2.44,2,282 +16799,51001469,Manhattan,East Harlem,40.787490000000005,-73.9504,Private room,70,1,4,0.11,1,0 +16800,21573063,Brooklyn,Bedford-Stuyvesant,40.68547,-73.93209,Entire home/apt,50,1,2,0.05,1,0 +16801,544621,Manhattan,Upper West Side,40.78378,-73.97845,Private room,85,2,4,0.11,1,0 +16802,43311385,Manhattan,Chelsea,40.74921,-74.00416,Entire home/apt,275,3,1,0.03,1,0 +16803,43375242,Queens,Long Island City,40.7537,-73.93186,Entire home/apt,120,3,40,1.45,2,365 +16804,61391963,Manhattan,Hell's Kitchen,40.76327,-73.98937,Entire home/apt,185,30,4,0.13,91,0 +16805,26676357,Manhattan,Upper West Side,40.77856,-73.98278,Entire home/apt,150,7,2,0.05,1,0 +16806,76383917,Manhattan,Harlem,40.805209999999995,-73.95213000000001,Entire home/apt,145,31,3,0.08,1,0 +16807,76353208,Brooklyn,South Slope,40.66018,-73.98074,Entire home/apt,130,2,1,0.03,1,0 +16808,76193714,Brooklyn,Bushwick,40.681340000000006,-73.9072,Entire home/apt,150,3,0,,1,0 +16809,76397212,Manhattan,Marble Hill,40.8754,-73.91263000000001,Entire home/apt,88,1,2,0.06,1,0 +16810,62409721,Brooklyn,Bedford-Stuyvesant,40.690020000000004,-73.9518,Private room,75,1,0,,1,0 +16811,15380275,Brooklyn,Bedford-Stuyvesant,40.68825,-73.93433,Private room,38,7,0,,1,0 +16812,76415404,Manhattan,Upper West Side,40.8021,-73.96629,Private room,64,4,1,0.03,1,0 +16813,50760546,Manhattan,Midtown,40.74439,-73.98125,Entire home/apt,185,29,1,0.04,31,139 +16814,3248595,Manhattan,Chelsea,40.74653,-73.99632,Entire home/apt,165,1,31,0.9,1,358 +16815,10273704,Brooklyn,Fort Greene,40.688309999999994,-73.97549000000001,Entire home/apt,200,7,3,0.09,2,0 +16816,11017415,Bronx,Concourse Village,40.83041,-73.91838,Entire home/apt,75,1,0,,1,0 +16817,31651673,Brooklyn,Williamsburg,40.70821,-73.95000999999999,Private room,90,2,24,0.65,3,0 +16818,76443791,Manhattan,Upper West Side,40.77643,-73.98262,Entire home/apt,140,3,12,0.33,1,0 +16819,65590212,Brooklyn,Downtown Brooklyn,40.69805,-73.9846,Entire home/apt,150,2,16,0.43,1,0 +16820,76451668,Brooklyn,Bedford-Stuyvesant,40.68444,-73.9287,Entire home/apt,92,30,17,0.5,2,113 +16821,44350279,Manhattan,Gramercy,40.73578,-73.98706,Private room,100,2,79,2.12,4,243 +16822,65672074,Brooklyn,South Slope,40.667809999999996,-73.99024,Entire home/apt,135,7,1,0.03,1,21 +16823,76453466,Brooklyn,East Flatbush,40.66167,-73.92854,Entire home/apt,45,1,112,2.99,1,244 +16824,2988712,Bronx,Claremont Village,40.8357,-73.91023,Entire home/apt,110,90,11,0.3,7,77 +16825,76477851,Manhattan,Harlem,40.83048,-73.95009,Private room,250,1,2,0.05,1,358 +16826,76487242,Manhattan,Upper East Side,40.78521,-73.95006,Private room,154,1,0,,1,0 +16827,11274802,Manhattan,Lower East Side,40.72079,-73.98965,Private room,175,1,35,3.19,1,19 +16828,4991034,Brooklyn,Prospect Heights,40.67735,-73.96581,Entire home/apt,175,7,5,0.14,1,16 +16829,65942440,Manhattan,Lower East Side,40.71754,-73.9868,Shared room,50,1,0,,1,0 +16830,4392549,Brooklyn,Bushwick,40.69507,-73.92081,Entire home/apt,99,2,4,0.11,1,0 +16831,30283594,Manhattan,Hell's Kitchen,40.760659999999994,-73.99922,Entire home/apt,199,30,0,,121,365 +16832,30283594,Manhattan,Hell's Kitchen,40.76207,-73.99937,Entire home/apt,239,30,0,,121,365 +16833,30283594,Manhattan,Hell's Kitchen,40.762159999999994,-73.99775,Entire home/apt,235,30,1,0.04,121,365 +16834,25549474,Brooklyn,Bushwick,40.70298,-73.92203,Private room,45,5,1,0.03,1,0 +16835,3156684,Staten Island,Tompkinsville,40.63163,-74.09297,Entire home/apt,85,2,110,2.97,1,248 +16836,30283594,Manhattan,Hell's Kitchen,40.76112,-73.99893,Entire home/apt,239,30,0,,121,365 +16837,49568280,Queens,Ditmars Steinway,40.776790000000005,-73.91366,Private room,38,1,14,1.46,3,24 +16838,11791633,Queens,Ditmars Steinway,40.774370000000005,-73.91854000000001,Private room,65,1,1,0.03,1,0 +16839,78258,Manhattan,Harlem,40.82291,-73.94958000000001,Entire home/apt,79,7,42,1.14,1,0 +16840,76566529,Brooklyn,Williamsburg,40.70624,-73.92860999999999,Shared room,60,2,0,,1,0 +16841,3078690,Brooklyn,Williamsburg,40.712559999999996,-73.94785,Private room,80,5,0,,1,0 +16842,30283594,Manhattan,Hell's Kitchen,40.76258,-73.99771,Entire home/apt,239,30,1,0.08,121,179 +16843,22541573,Manhattan,Midtown,40.75695,-73.97988000000001,Entire home/apt,279,30,0,,87,332 +16844,76578903,Brooklyn,Bushwick,40.69941,-73.92833,Private room,35,10,13,0.37,1,0 +16845,30283594,Manhattan,Hell's Kitchen,40.76077,-73.99821999999999,Entire home/apt,239,30,1,0.04,121,365 +16846,4027856,Manhattan,Flatiron District,40.741479999999996,-73.98493,Entire home/apt,200,1,0,,1,0 +16847,75275467,Bronx,Port Morris,40.80842,-73.93136,Private room,33,2,63,1.75,4,145 +16848,30283594,Manhattan,Hell's Kitchen,40.761959999999995,-73.99803,Entire home/apt,239,30,1,0.04,121,365 +16849,30283594,Manhattan,Hell's Kitchen,40.76112,-73.99887,Entire home/apt,239,30,2,0.07,121,365 +16850,30283594,Manhattan,Hell's Kitchen,40.76103,-73.99745,Entire home/apt,239,30,0,,121,365 +16851,3191545,Manhattan,Hell's Kitchen,40.75833,-73.99019,Entire home/apt,229,30,2,0.08,23,0 +16852,74727409,Bronx,Longwood,40.81937,-73.90978,Private room,45,2,68,1.83,1,156 +16853,30283594,Manhattan,Hell's Kitchen,40.76213,-73.99972,Entire home/apt,239,30,1,0.03,121,365 +16854,76601346,Manhattan,Upper West Side,40.7847,-73.97155,Entire home/apt,179,2,98,2.71,1,151 +16855,30283594,Manhattan,Hell's Kitchen,40.76201,-73.99755,Entire home/apt,239,30,0,,121,365 +16856,30283594,Manhattan,Hell's Kitchen,40.76108,-73.99812,Entire home/apt,239,30,1,0.06,121,357 +16857,9617573,Manhattan,East Harlem,40.797509999999996,-73.93271,Entire home/apt,107,3,0,,1,0 +16858,10870019,Manhattan,Chinatown,40.713770000000004,-73.99464,Private room,125,1,0,,1,0 +16859,3469064,Manhattan,Upper West Side,40.7801,-73.97917,Entire home/apt,230,7,0,,1,0 +16860,69632344,Queens,South Ozone Park,40.67866,-73.8068,Entire home/apt,100,5,44,1.22,1,350 +16861,64440476,Brooklyn,Williamsburg,40.70353,-73.9344,Private room,55,2,7,0.19,1,0 +16862,31162653,Brooklyn,Bushwick,40.7025,-73.92935,Private room,95,2,3,0.09,1,0 +16863,74903132,Brooklyn,Bushwick,40.69375,-73.92123000000001,Private room,41,3,2,0.05,1,0 +16864,2559697,Brooklyn,Prospect-Lefferts Gardens,40.660579999999996,-73.96132,Entire home/apt,40,2,25,0.7,1,223 +16865,3191545,Manhattan,Hell's Kitchen,40.75892,-73.99146,Entire home/apt,150,30,2,0.06,23,213 +16866,3191545,Manhattan,Theater District,40.763690000000004,-73.98476,Entire home/apt,150,30,1,0.77,23,335 +16867,3191545,Manhattan,Midtown,40.76569,-73.98281,Entire home/apt,219,30,8,0.3,23,362 +16868,4996789,Manhattan,East Village,40.72741,-73.97529,Entire home/apt,142,1,146,3.92,1,78 +16869,5944946,Bronx,Concourse,40.81949,-73.92913,Entire home/apt,99,1,103,2.87,1,264 +16870,28370925,Brooklyn,Sunset Park,40.63974,-74.01944,Private room,41,5,81,2.18,4,0 +16871,3143680,Manhattan,Harlem,40.8259,-73.94962,Private room,48,7,2,0.06,1,0 +16872,17385374,Manhattan,Upper East Side,40.766420000000004,-73.97107,Private room,301,3,0,,1,83 +16873,7141050,Manhattan,Inwood,40.86541,-73.92935,Private room,52,2,10,0.28,2,0 +16874,29834506,Brooklyn,Greenpoint,40.7323,-73.95260999999999,Entire home/apt,150,2,3,0.12,1,0 +16875,30283594,Manhattan,Midtown,40.75143,-73.96973,Entire home/apt,1100,120,0,,121,184 +16876,76739836,Manhattan,Hell's Kitchen,40.76425,-73.98654,Private room,160,1,10,0.27,1,0 +16877,60962117,Brooklyn,Bushwick,40.68846,-73.90847,Private room,45,5,2,0.05,1,0 +16878,1671824,Manhattan,East Village,40.724709999999995,-73.98891,Entire home/apt,106,3,0,,1,0 +16879,38915391,Queens,Elmhurst,40.73888,-73.87299,Entire home/apt,178,30,83,2.22,1,342 +16880,3191545,Manhattan,Kips Bay,40.744479999999996,-73.97776,Entire home/apt,176,30,4,0.15,23,0 +16881,47073683,Manhattan,Harlem,40.815909999999995,-73.93995,Private room,70,3,7,0.19,1,0 +16882,36123030,Brooklyn,Williamsburg,40.713029999999996,-73.96574,Entire home/apt,190,2,9,0.25,1,2 +16883,66786569,Brooklyn,Williamsburg,40.70475,-73.93663000000001,Private room,62,2,5,0.13,1,0 +16884,30678610,Brooklyn,Greenpoint,40.726729999999996,-73.95406,Entire home/apt,175,2,1,0.03,1,0 +16885,13752584,Manhattan,Upper West Side,40.802890000000005,-73.96741,Entire home/apt,125,6,2,0.05,1,0 +16886,18419593,Manhattan,Morningside Heights,40.81353,-73.95878,Private room,76,2,126,3.4,1,12 +16887,50477855,Brooklyn,South Slope,40.663779999999996,-73.98621,Entire home/apt,225,5,2,0.05,1,0 +16888,70181422,Brooklyn,Windsor Terrace,40.65211,-73.97872,Private room,65,1,13,0.35,4,0 +16889,13567212,Brooklyn,Bushwick,40.69161,-73.90563,Private room,70,3,5,0.14,1,0 +16890,76809352,Manhattan,Upper West Side,40.78305,-73.97757,Entire home/apt,240,30,4,0.11,1,0 +16891,24459217,Queens,Long Island City,40.74275,-73.95513000000001,Private room,70,3,12,0.42,1,77 +16892,14055452,Manhattan,East Village,40.72118,-73.98066,Entire home/apt,130,2,1,0.03,1,0 +16893,44269461,Manhattan,Upper West Side,40.79936,-73.96105,Private room,50,1,1,0.03,1,0 +16894,64748382,Brooklyn,Bedford-Stuyvesant,40.690909999999995,-73.95435,Private room,70,3,61,1.63,1,190 +16895,12524253,Brooklyn,Williamsburg,40.70667,-73.92668,Private room,51,14,0,,1,0 +16896,2489602,Manhattan,East Village,40.72828,-73.97972,Private room,149,2,0,,1,0 +16897,16809858,Manhattan,Hell's Kitchen,40.76733,-73.98607,Entire home/apt,169,10,6,0.17,1,280 +16898,76849055,Brooklyn,Williamsburg,40.70885,-73.95349,Private room,50,1,3,0.08,1,0 +16899,17848380,Manhattan,Upper West Side,40.79875,-73.97128000000001,Private room,120,1,19,0.57,3,360 +16900,17848380,Manhattan,Upper West Side,40.796690000000005,-73.97126,Private room,120,1,12,0.35,3,338 +16901,956383,Manhattan,Midtown,40.758959999999995,-73.96439000000001,Private room,105,7,0,,1,0 +16902,8569221,Brooklyn,Williamsburg,40.71696,-73.95727,Private room,90,5,87,2.43,2,305 +16903,4841046,Brooklyn,Williamsburg,40.71216,-73.95853000000001,Entire home/apt,105,15,30,0.84,1,85 +16904,76931387,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95479,Entire home/apt,130,2,16,0.59,1,0 +16905,3191545,Manhattan,Kips Bay,40.74375,-73.97774,Entire home/apt,191,30,0,,23,362 +16906,406987,Brooklyn,Bedford-Stuyvesant,40.692609999999995,-73.95069000000001,Entire home/apt,100,4,3,0.08,1,0 +16907,22462003,Manhattan,Midtown,40.74754,-73.98741,Entire home/apt,288,5,2,0.06,1,0 +16908,3191545,Manhattan,Hell's Kitchen,40.76245,-73.98767,Entire home/apt,150,30,1,0.04,23,332 +16909,76940389,Brooklyn,Williamsburg,40.71855,-73.96359,Private room,85,3,1,0.03,1,0 +16910,23121273,Brooklyn,East Flatbush,40.64286,-73.94839,Entire home/apt,75,5,8,0.22,1,0 +16911,18655157,Manhattan,Midtown,40.74562,-73.98538,Private room,79,99,0,,3,364 +16912,9904775,Manhattan,East Village,40.72627,-73.99145,Entire home/apt,200,3,27,0.76,1,0 +16913,76998256,Manhattan,Harlem,40.82289,-73.9511,Entire home/apt,78,3,13,0.35,1,0 +16914,12176919,Manhattan,Financial District,40.70711,-74.01437,Entire home/apt,234,2,4,0.11,1,0 +16915,26297742,Manhattan,Upper West Side,40.77981,-73.98499,Entire home/apt,325,5,7,0.2,1,118 +16916,6980995,Manhattan,Two Bridges,40.71159,-73.99884,Private room,119,1,3,0.09,5,0 +16917,6980995,Manhattan,Civic Center,40.712590000000006,-73.99897,Private room,95,1,10,0.27,5,0 +16918,77011788,Queens,Long Island City,40.759029999999996,-73.92943000000001,Entire home/apt,255,2,111,3.18,1,268 +16919,76840954,Queens,Sunnyside,40.736909999999995,-73.92826,Entire home/apt,125,2,17,0.47,1,56 +16920,31373840,Manhattan,Financial District,40.70706,-74.00442,Private room,99,2,3,0.08,1,0 +16921,1711182,Manhattan,East Village,40.72229,-73.98175,Entire home/apt,175,3,27,0.75,1,0 +16922,31376201,Queens,Kew Gardens,40.70789,-73.83333,Private room,150,1,0,,3,364 +16923,1661309,Brooklyn,Bushwick,40.69887,-73.93564,Entire home/apt,75,6,9,1.14,1,53 +16924,26517955,Brooklyn,Bushwick,40.702729999999995,-73.92724,Private room,50,5,1,0.03,1,0 +16925,57186170,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9457,Entire home/apt,99,2,100,3.27,3,308 +16926,84557,Brooklyn,Bedford-Stuyvesant,40.68988,-73.93136,Entire home/apt,85,5,42,1.27,1,52 +16927,6041148,Manhattan,Hell's Kitchen,40.76571,-73.99101,Entire home/apt,137,3,2,0.05,1,0 +16928,2091070,Manhattan,Chelsea,40.7403,-74.0029,Entire home/apt,165,3,14,0.38,1,10 +16929,77135414,Brooklyn,Williamsburg,40.70742,-73.94315999999999,Entire home/apt,92,2,11,0.31,1,7 +16930,49939937,Manhattan,Midtown,40.7531,-73.97158,Entire home/apt,101,4,1,0.03,1,0 +16931,25461543,Manhattan,Harlem,40.83079,-73.9432,Private room,95,2,14,0.38,2,89 +16932,35824534,Manhattan,Morningside Heights,40.80728,-73.96634,Private room,119,1,4,0.11,1,0 +16933,14942276,Brooklyn,Williamsburg,40.71983,-73.95675,Entire home/apt,195,2,145,4.03,2,230 +16934,35309931,Manhattan,Gramercy,40.73277,-73.98448,Entire home/apt,170,4,9,0.24,1,0 +16935,25168709,Manhattan,Upper East Side,40.76184,-73.9569,Entire home/apt,150,4,45,1.27,1,6 +16936,58639009,Manhattan,Harlem,40.81134,-73.94044,Entire home/apt,157,1,11,0.29,1,0 +16937,77179176,Brooklyn,Gravesend,40.60054,-73.99416,Private room,69,1,0,,1,0 +16938,51329030,Bronx,Longwood,40.82716,-73.89911,Private room,30,1,11,0.3,1,0 +16939,77162743,Brooklyn,Williamsburg,40.71147,-73.95896,Entire home/apt,250,2,6,0.16,1,0 +16940,60059749,Brooklyn,Crown Heights,40.6737,-73.95669000000001,Private room,40,3,3,0.11,2,0 +16941,16631094,Queens,Ridgewood,40.70971,-73.89741,Entire home/apt,80,28,1,0.1,1,365 +16942,5929127,Brooklyn,Williamsburg,40.71273,-73.96478,Private room,150,3,0,,1,0 +16943,16685925,Manhattan,Harlem,40.82882,-73.94148,Private room,49,7,1,0.03,2,0 +16944,3714721,Manhattan,SoHo,40.726890000000004,-74.0089,Private room,101,2,102,2.97,2,116 +16945,53316033,Manhattan,East Harlem,40.79659,-73.93500999999999,Private room,69,3,0,,1,0 +16946,1252131,Manhattan,Kips Bay,40.73955,-73.98243000000001,Entire home/apt,199,30,36,0.98,1,242 +16947,77280363,Queens,Ridgewood,40.69807,-73.90614000000001,Private room,40,21,0,,1,0 +16948,48201284,Brooklyn,Williamsburg,40.71026,-73.96840999999999,Entire home/apt,175,1,1,0.03,1,0 +16949,1455109,Manhattan,Midtown,40.75823,-73.96453000000001,Entire home/apt,175,1,2,0.05,1,0 +16950,1678704,Brooklyn,Bedford-Stuyvesant,40.69285,-73.92849,Private room,50,1,42,2.1,3,102 +16951,9235481,Manhattan,Washington Heights,40.85413,-73.93172,Private room,45,3,1,0.03,2,0 +16952,77300379,Queens,Sunnyside,40.74472,-73.91788000000001,Entire home/apt,110,1,37,1.0,1,74 +16953,39177865,Brooklyn,South Slope,40.6612,-73.98568,Entire home/apt,70,70,3,0.08,1,0 +16954,76008109,Brooklyn,South Slope,40.66186,-73.98109000000001,Entire home/apt,129,5,1,0.03,1,0 +16955,25410835,Manhattan,Upper West Side,40.7728,-73.98737,Entire home/apt,139,4,8,0.23,1,0 +16956,5165518,Brooklyn,Bedford-Stuyvesant,40.691,-73.93032,Entire home/apt,135,3,2,0.06,1,0 +16957,37384607,Manhattan,Upper East Side,40.77363,-73.95154000000001,Entire home/apt,90,1,3,0.09,1,0 +16958,77317167,Brooklyn,Flatbush,40.65253,-73.96404,Entire home/apt,125,2,52,1.41,2,20 +16959,51137325,Manhattan,Chelsea,40.74494,-74.00116,Entire home/apt,225,30,0,,1,280 +16960,77325010,Queens,Ditmars Steinway,40.77231,-73.90793000000001,Entire home/apt,75,4,1,0.03,1,0 +16961,69706365,Manhattan,Upper West Side,40.79201,-73.97423,Private room,65,3,5,0.14,2,0 +16962,31489150,Manhattan,West Village,40.7332,-74.0039,Entire home/apt,190,2,2,0.05,1,0 +16963,3341869,Brooklyn,Kensington,40.64328,-73.97506,Entire home/apt,85,7,1,0.03,1,0 +16964,10395888,Brooklyn,East Flatbush,40.65005,-73.94776,Entire home/apt,119,1,24,1.04,1,313 +16965,2571641,Manhattan,Harlem,40.81733,-73.95384,Private room,48,2,0,,3,0 +16966,379827,Manhattan,Financial District,40.70713,-74.00793,Entire home/apt,196,3,14,0.52,1,29 +16967,2571641,Manhattan,Harlem,40.81863,-73.95295,Private room,80,2,0,,3,0 +16968,77355562,Manhattan,Upper East Side,40.77081,-73.95215999999999,Private room,90,1,65,1.76,1,338 +16969,1777483,Brooklyn,Bedford-Stuyvesant,40.68881,-73.94991,Private room,125,3,1,0.03,1,0 +16970,50945119,Manhattan,East Harlem,40.7977,-73.93736,Private room,65,28,1,0.03,1,0 +16971,77365697,Manhattan,Chelsea,40.740320000000004,-74.00265,Entire home/apt,110,4,6,0.16,1,0 +16972,9007512,Manhattan,Financial District,40.705659999999995,-74.00865,Entire home/apt,100,20,3,0.09,1,340 +16973,77369325,Brooklyn,Williamsburg,40.70844,-73.96176,Entire home/apt,200,2,0,,1,0 +16974,11414858,Manhattan,Greenwich Village,40.730059999999995,-73.99981,Entire home/apt,200,4,0,,1,0 +16975,7539044,Manhattan,SoHo,40.72795,-74.00454,Entire home/apt,360,2,22,0.66,2,333 +16976,26209213,Brooklyn,Fort Greene,40.692890000000006,-73.98076999999999,Private room,65,10,0,,1,0 +16977,1439261,Brooklyn,Greenpoint,40.73265,-73.95393,Private room,65,7,38,1.08,1,10 +16978,18066933,Brooklyn,Crown Heights,40.67555,-73.94493,Private room,65,2,21,0.58,2,0 +16979,7697189,Brooklyn,Bedford-Stuyvesant,40.68015,-73.9355,Entire home/apt,160,2,3,0.08,1,0 +16980,16288928,Brooklyn,Park Slope,40.67885,-73.97929,Entire home/apt,450,7,14,0.64,2,360 +16981,21604714,Manhattan,Lower East Side,40.71934,-73.98172,Private room,75,2,3,0.08,1,0 +16982,2861768,Manhattan,Harlem,40.81266,-73.95152,Private room,69,10,20,0.54,3,0 +16983,75310656,Brooklyn,Fort Greene,40.689209999999996,-73.98038000000001,Entire home/apt,203,7,4,0.13,1,0 +16984,6736799,Manhattan,Theater District,40.759479999999996,-73.98631,Private room,169,5,19,0.51,1,88 +16985,2861768,Manhattan,Harlem,40.81325,-73.95323,Private room,79,6,31,0.84,3,18 +16986,3978669,Manhattan,Hell's Kitchen,40.75704,-73.99564000000001,Entire home/apt,230,4,12,0.33,1,41 +16987,9055702,Queens,Woodside,40.744279999999996,-73.90898,Private room,65,1,18,1.11,1,278 +16988,77076962,Brooklyn,Bushwick,40.70286,-73.92271,Private room,50,2,6,0.16,1,0 +16989,6776157,Brooklyn,Prospect Heights,40.678470000000004,-73.96661999999999,Private room,100,1,11,0.3,2,365 +16990,2417692,Queens,Astoria,40.75946,-73.91173,Private room,70,10,3,0.4,2,250 +16991,25912717,Manhattan,Gramercy,40.73813,-73.98213,Entire home/apt,175,2,1,0.03,1,0 +16992,4337162,Brooklyn,Cobble Hill,40.68688,-73.999,Private room,142,3,8,0.22,1,10 +16993,32706119,Brooklyn,South Slope,40.66769,-73.98886,Entire home/apt,190,3,39,1.07,2,226 +16994,29510402,Bronx,Longwood,40.82412,-73.90266,Entire home/apt,350,7,0,,3,14 +16995,5390302,Manhattan,Upper East Side,40.76988,-73.95125,Entire home/apt,140,5,0,,1,0 +16996,75398380,Bronx,University Heights,40.860479999999995,-73.91181,Entire home/apt,120,1,0,,1,0 +16997,77523610,Manhattan,West Village,40.73458,-74.0028,Private room,372,2,0,,1,0 +16998,27275952,Brooklyn,Downtown Brooklyn,40.697390000000006,-73.98512,Private room,61,2,8,0.21,2,0 +16999,13482882,Queens,Ridgewood,40.70756,-73.914,Private room,65,5,0,,1,0 +17000,77514775,Manhattan,Harlem,40.8003,-73.95223,Private room,80,2,15,0.41,1,0 +17001,22541573,Manhattan,Upper East Side,40.763709999999996,-73.96153000000001,Entire home/apt,225,30,1,0.03,87,341 +17002,718492,Brooklyn,Clinton Hill,40.69288,-73.96592,Private room,105,2,0,,1,0 +17003,76192815,Manhattan,Lower East Side,40.71932,-73.99396,Entire home/apt,100,32,3,0.11,5,243 +17004,13616834,Brooklyn,Borough Park,40.64459,-73.99825,Entire home/apt,50,15,1,0.03,1,0 +17005,25750650,Manhattan,East Village,40.72152,-73.9838,Private room,109,4,25,0.91,1,140 +17006,7385139,Manhattan,Washington Heights,40.83702,-73.94199,Private room,75,1,11,0.3,1,0 +17007,1402455,Manhattan,East Harlem,40.80153,-73.94435,Private room,100,2,0,,1,0 +17008,1490202,Brooklyn,Crown Heights,40.67664,-73.95814,Private room,60,1,15,0.41,1,0 +17009,19540198,Manhattan,Morningside Heights,40.80346,-73.96488000000001,Private room,50,7,0,,1,0 +17010,74330820,Manhattan,East Harlem,40.81454,-73.93616,Entire home/apt,130,4,6,0.16,2,0 +17011,3886532,Brooklyn,Bushwick,40.70859,-73.9221,Private room,65,2,101,2.83,3,300 +17012,35590013,Manhattan,Chelsea,40.74675,-73.99555,Private room,90,2,6,0.16,1,0 +17013,3401026,Brooklyn,Kensington,40.64455,-73.97825999999999,Private room,50,14,1,0.03,1,0 +17014,24222,Manhattan,East Village,40.726279999999996,-73.97952,Private room,67,4,11,0.3,2,4 +17015,77603717,Brooklyn,Sunset Park,40.661970000000004,-73.98907,Entire home/apt,100,1,14,0.38,1,0 +17016,10743221,Queens,Astoria,40.771640000000005,-73.92028,Entire home/apt,98,4,0,,1,0 +17017,1797635,Brooklyn,Greenpoint,40.727,-73.94249,Private room,50,1,0,,1,0 +17018,1658443,Queens,Ridgewood,40.7011,-73.90964,Entire home/apt,100,5,1,0.03,1,0 +17019,12267269,Brooklyn,Prospect Heights,40.67671,-73.96466,Entire home/apt,300,3,17,0.47,1,11 +17020,58631330,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95808000000001,Private room,75,2,0,,1,0 +17021,30283594,Manhattan,Hell's Kitchen,40.761109999999995,-73.99818,Entire home/apt,219,30,0,,121,365 +17022,22541573,Manhattan,Upper West Side,40.77936,-73.97874,Entire home/apt,167,30,1,0.04,87,342 +17023,16836897,Manhattan,Lower East Side,40.718270000000004,-73.98983,Entire home/apt,180,4,13,0.35,1,0 +17024,50995154,Brooklyn,Kensington,40.64277,-73.9744,Entire home/apt,95,2,11,0.3,1,0 +17025,3329894,Manhattan,Upper West Side,40.77326,-73.98888000000001,Entire home/apt,250,1,0,,1,0 +17026,75030544,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91484,Private room,85,14,32,0.92,4,115 +17027,7202412,Manhattan,Harlem,40.81635,-73.94467,Entire home/apt,115,4,119,3.21,4,45 +17028,45595980,Manhattan,Midtown,40.760709999999996,-73.96469,Entire home/apt,150,30,8,0.36,12,267 +17029,331223,Brooklyn,Flatbush,40.646840000000005,-73.96068000000001,Entire home/apt,80,5,3,0.08,1,0 +17030,76182346,Manhattan,Chelsea,40.74584,-74.00279,Entire home/apt,225,14,0,,1,0 +17031,45691473,Brooklyn,South Slope,40.66446,-73.97986999999999,Entire home/apt,400,4,0,,1,0 +17032,2548974,Brooklyn,Williamsburg,40.7186,-73.95427,Entire home/apt,325,5,2,0.07,1,0 +17033,66981456,Manhattan,Upper East Side,40.77512,-73.95254,Private room,99,6,35,1.06,1,59 +17034,6445320,Manhattan,Upper West Side,40.79415,-73.97323,Private room,90,5,3,0.08,1,66 +17035,7202412,Manhattan,Harlem,40.81589,-73.94648000000001,Entire home/apt,110,4,125,3.37,4,44 +17036,23826651,Brooklyn,Bushwick,40.70364,-73.92769,Private room,50,7,0,,1,0 +17037,22541573,Manhattan,Midtown,40.74992,-73.97223000000001,Entire home/apt,189,30,0,,87,188 +17038,70537782,Staten Island,Tompkinsville,40.635979999999996,-74.07943,Entire home/apt,105,2,132,3.55,1,318 +17039,58104904,Brooklyn,Bushwick,40.70146,-73.91763,Private room,55,7,0,,1,0 +17040,2507277,Brooklyn,Fort Greene,40.68712,-73.97114,Entire home/apt,180,10,0,,1,0 +17041,547029,Bronx,Concourse,40.82162,-73.92698,Private room,50,2,0,,1,0 +17042,77778146,Brooklyn,East Flatbush,40.63292,-73.94569,Private room,80,2,7,0.21,8,189 +17043,3302537,Brooklyn,Cobble Hill,40.68796,-73.99229,Entire home/apt,120,1,2,0.05,1,0 +17044,77778146,Brooklyn,East Flatbush,40.63337,-73.94578,Private room,525,1,36,0.99,8,189 +17045,14524071,Manhattan,Upper West Side,40.78853,-73.9751,Entire home/apt,150,4,5,0.23,1,157 +17046,9327286,Manhattan,East Village,40.73004,-73.98225,Entire home/apt,150,2,0,,1,0 +17047,77778146,Brooklyn,East Flatbush,40.63345,-73.94536,Private room,90,1,4,0.11,8,189 +17048,3239574,Brooklyn,Bedford-Stuyvesant,40.68501,-73.95904,Entire home/apt,130,2,6,0.18,1,0 +17049,2972691,Brooklyn,Crown Heights,40.67275,-73.95169,Entire home/apt,155,3,19,0.53,1,0 +17050,32707981,Manhattan,East Village,40.72424,-73.9906,Private room,90,2,8,0.22,4,0 +17051,9540269,Manhattan,Upper West Side,40.769859999999994,-73.98673000000001,Private room,90,1,1,0.03,1,0 +17052,8255157,Brooklyn,Williamsburg,40.71182,-73.95692,Shared room,130,1,0,,1,0 +17053,26923140,Manhattan,Hell's Kitchen,40.7605,-73.99455,Entire home/apt,199,3,110,3.02,1,246 +17054,77809736,Manhattan,Morningside Heights,40.81005,-73.9599,Shared room,70,3,1,0.04,2,0 +17055,7917224,Manhattan,Harlem,40.82588,-73.9388,Private room,36,4,2,0.06,1,0 +17056,77811516,Manhattan,Lower East Side,40.714290000000005,-73.98755,Private room,59,2,14,0.38,1,0 +17057,77812281,Manhattan,East Village,40.72746,-73.97610999999999,Entire home/apt,185,2,32,0.92,1,26 +17058,4518002,Brooklyn,Flatbush,40.63736,-73.95669000000001,Entire home/apt,75,30,46,1.25,1,89 +17059,285637,Manhattan,Harlem,40.80474,-73.95527,Entire home/apt,150,2,0,,1,0 +17060,1535912,Brooklyn,Bushwick,40.69849,-73.923,Private room,75,2,170,4.58,1,37 +17061,36815239,Queens,Long Island City,40.75293,-73.93757,Private room,74,1,210,5.66,1,33 +17062,12377856,Brooklyn,Williamsburg,40.70705,-73.94326,Private room,80,2,0,,1,0 +17063,13425452,Manhattan,Greenwich Village,40.72871,-74.00149,Entire home/apt,161,1,27,0.74,1,0 +17064,22541573,Manhattan,Midtown,40.7588,-73.96611,Entire home/apt,260,30,1,0.07,87,341 +17065,26475189,Queens,Astoria,40.7696,-73.92694,Entire home/apt,79,21,0,,1,0 +17066,30801050,Brooklyn,Williamsburg,40.71438,-73.94742,Private room,43,14,0,,1,0 +17067,17860156,Brooklyn,Williamsburg,40.7042,-73.94193,Private room,60,1,3,0.08,1,0 +17068,77915011,Manhattan,Hell's Kitchen,40.76806,-73.98671999999999,Private room,100,2,1,0.03,1,0 +17069,22541573,Manhattan,Midtown,40.75897,-73.9617,Entire home/apt,210,30,0,,87,188 +17070,22541573,Manhattan,Midtown,40.75724,-73.96384,Entire home/apt,245,30,0,,87,280 +17071,49966,Brooklyn,Bedford-Stuyvesant,40.69068,-73.95465,Entire home/apt,175,3,6,0.17,1,0 +17072,32991339,Brooklyn,Williamsburg,40.70707,-73.9528,Entire home/apt,250,1,9,0.27,2,254 +17073,22541573,Manhattan,Midtown,40.757259999999995,-73.96177,Entire home/apt,220,30,0,,87,188 +17074,1475015,Manhattan,Midtown,40.75683,-73.9659,Entire home/apt,95,30,5,0.23,52,342 +17075,50760546,Manhattan,Midtown,40.74564,-73.98174,Entire home/apt,250,30,1,0.04,31,215 +17076,22541573,Manhattan,Upper West Side,40.790929999999996,-73.97969,Entire home/apt,167,30,0,,87,335 +17077,21130844,Brooklyn,Williamsburg,40.7154,-73.95469,Private room,76,2,7,0.21,1,0 +17078,26064594,Manhattan,Murray Hill,40.74686,-73.97981,Entire home/apt,200,3,1,0.03,1,0 +17079,22541573,Manhattan,Hell's Kitchen,40.76294,-73.98574,Entire home/apt,199,30,1,0.09,87,329 +17080,6493333,Manhattan,Harlem,40.8114,-73.94014,Entire home/apt,140,2,34,0.93,1,0 +17081,5677896,Manhattan,Inwood,40.86182,-73.93088,Private room,57,14,4,0.11,1,0 +17082,9501536,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93935,Private room,60,2,2,0.05,1,0 +17083,68733807,Brooklyn,Fort Hamilton,40.616,-74.02973,Entire home/apt,80,3,6,0.17,1,0 +17084,12777561,Queens,Sunnyside,40.746,-73.91503,Entire home/apt,125,1,2,0.06,1,0 +17085,61391963,Manhattan,Upper East Side,40.785309999999996,-73.95683000000001,Entire home/apt,150,30,2,0.07,91,319 +17086,19163998,Brooklyn,Flatbush,40.62978,-73.96207,Entire home/apt,70,6,70,2.12,1,3 +17087,75029289,Manhattan,Upper East Side,40.7746,-73.95546,Entire home/apt,125,30,7,0.32,5,325 +17088,25668027,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93594,Private room,56,7,1,0.03,1,0 +17089,63494345,Brooklyn,Sunset Park,40.66525,-73.99524,Entire home/apt,170,2,88,2.67,1,65 +17090,4454121,Manhattan,Upper East Side,40.761720000000004,-73.96538000000001,Entire home/apt,179,3,24,0.65,1,3 +17091,59575555,Brooklyn,Cypress Hills,40.68144,-73.89416,Entire home/apt,75,5,2,0.06,1,0 +17092,16240783,Brooklyn,Bushwick,40.70024,-73.92655,Private room,65,2,0,,1,0 +17093,3491890,Manhattan,Upper West Side,40.78435,-73.97579,Entire home/apt,295,30,2,0.06,6,0 +17094,32128412,Brooklyn,Vinegar Hill,40.699040000000004,-73.98496,Entire home/apt,150,1,6,0.16,1,0 +17095,51688993,Queens,Jamaica,40.68993,-73.80334,Entire home/apt,174,1,67,1.81,2,340 +17096,71886811,Manhattan,Morningside Heights,40.814409999999995,-73.9589,Private room,67,6,22,0.59,3,90 +17097,11736641,Manhattan,Hell's Kitchen,40.76054,-73.98971,Entire home/apt,199,4,0,,1,0 +17098,47050813,Brooklyn,Flatbush,40.65034,-73.96342,Private room,62,1,167,4.52,2,48 +17099,22591516,Queens,Arverne,40.58928,-73.79531,Private room,150,1,2,0.05,1,0 +17100,77134747,Brooklyn,Cypress Hills,40.680170000000004,-73.89031,Private room,115,3,3,0.09,1,82 +17101,51531044,Queens,Jackson Heights,40.750609999999995,-73.87576,Private room,40,2,66,1.82,4,293 +17102,22541573,Manhattan,Upper East Side,40.76911,-73.95738,Entire home/apt,200,30,0,,87,365 +17103,22541573,Manhattan,Upper East Side,40.7706,-73.95725,Entire home/apt,149,30,2,0.08,87,339 +17104,81335,Manhattan,Upper West Side,40.78243,-73.97657,Entire home/apt,125,1,180,4.88,3,125 +17105,71886811,Manhattan,Morningside Heights,40.81558,-73.95846999999999,Private room,73,6,11,0.31,3,90 +17106,3752944,Manhattan,Hell's Kitchen,40.76712,-73.98789000000001,Entire home/apt,200,4,7,0.22,1,3 +17107,75658258,Brooklyn,Bedford-Stuyvesant,40.68838,-73.9519,Private room,34,2,1,0.03,1,0 +17108,26546007,Manhattan,Upper West Side,40.7719,-73.99046,Entire home/apt,300,1,0,,1,0 +17109,2856748,Manhattan,Hell's Kitchen,40.766459999999995,-73.98649,Entire home/apt,220,30,0,,49,365 +17110,78165909,Manhattan,Harlem,40.82841,-73.94922,Private room,36,14,0,,1,0 +17111,27567524,Brooklyn,Prospect Heights,40.67937,-73.96838000000001,Private room,70,1,0,,1,0 +17112,1571120,Brooklyn,Williamsburg,40.71072,-73.96131,Private room,89,2,150,4.1,2,64 +17113,41913683,Brooklyn,Flatbush,40.65074,-73.96072,Entire home/apt,115,3,4,0.11,1,0 +17114,78176513,Manhattan,Harlem,40.81497,-73.94781,Entire home/apt,200,3,50,1.42,1,268 +17115,34911780,Manhattan,Inwood,40.86076,-73.92781,Entire home/apt,100,4,41,1.11,2,100 +17116,16904031,Manhattan,Lower East Side,40.71692,-73.98874,Entire home/apt,175,2,0,,1,0 +17117,14017165,Brooklyn,Williamsburg,40.707440000000005,-73.94485,Private room,58,2,1,0.03,1,0 +17118,44867769,Manhattan,Harlem,40.82172,-73.94791,Private room,81,1,19,0.52,1,0 +17119,50165193,Manhattan,Upper West Side,40.77567,-73.9786,Private room,95,21,2,0.05,1,281 +17120,78150907,Brooklyn,Midwood,40.62189,-73.96171,Private room,38,2,157,4.27,1,67 +17121,19417913,Manhattan,Chinatown,40.716609999999996,-73.99144,Entire home/apt,150,3,7,0.19,1,11 +17122,54797779,Manhattan,Harlem,40.820040000000006,-73.95063,Private room,40,2,3,0.1,1,0 +17123,78258683,Manhattan,Midtown,40.743109999999994,-73.98286,Entire home/apt,150,5,0,,1,0 +17124,48681901,Manhattan,East Village,40.72605,-73.98705,Entire home/apt,99,17,11,0.3,1,0 +17125,69541888,Brooklyn,Williamsburg,40.71758,-73.95015,Entire home/apt,250,1,1,0.03,1,0 +17126,41217631,Manhattan,Chinatown,40.7153,-73.99938,Private room,69,1,1,0.03,2,0 +17127,78279322,Brooklyn,Bushwick,40.69092,-73.91546,Private room,35,1,1,0.03,1,0 +17128,78286572,Brooklyn,Williamsburg,40.70559,-73.93552,Private room,65,1,3,0.08,1,0 +17129,78285810,Manhattan,Midtown,40.754940000000005,-73.96738,Entire home/apt,259,4,0,,1,0 +17130,78292517,Brooklyn,Williamsburg,40.71578,-73.95879000000001,Entire home/apt,150,2,5,0.14,1,0 +17131,9440328,Brooklyn,Crown Heights,40.674690000000005,-73.94062,Entire home/apt,270,5,9,0.25,1,0 +17132,21016849,Brooklyn,Bedford-Stuyvesant,40.69127,-73.95085,Entire home/apt,150,3,40,1.08,1,327 +17133,2960765,Queens,Ridgewood,40.70087,-73.90571,Private room,100,1,0,,1,0 +17134,19477508,Queens,Astoria,40.766259999999996,-73.91835,Entire home/apt,119,2,19,0.52,1,0 +17135,78325795,Manhattan,Harlem,40.80573,-73.94994,Entire home/apt,129,1,160,4.31,3,246 +17136,73234851,Brooklyn,Bedford-Stuyvesant,40.68343,-73.94394,Entire home/apt,175,2,103,2.9,2,144 +17137,23505542,Brooklyn,Sunset Park,40.65562,-74.00295,Private room,40,2,3,0.08,1,0 +17138,71308956,Brooklyn,Greenpoint,40.72429,-73.94534,Entire home/apt,125,3,1,0.03,1,0 +17139,26382036,Queens,Elmhurst,40.73928,-73.87755,Entire home/apt,101,5,93,2.52,2,7 +17140,10737943,Manhattan,Upper East Side,40.77989,-73.94763,Private room,49,19,6,0.17,10,285 +17141,1651250,Manhattan,Upper West Side,40.7751,-73.98148,Entire home/apt,300,2,15,0.41,2,3 +17142,2261995,Brooklyn,Bedford-Stuyvesant,40.682320000000004,-73.94400999999999,Private room,75,2,1,1.0,3,125 +17143,78408136,Brooklyn,Cypress Hills,40.68015,-73.90504,Entire home/apt,85,1,182,5.85,1,62 +17144,23657588,Brooklyn,Williamsburg,40.71307,-73.95084,Entire home/apt,185,1,49,1.34,1,50 +17145,78430614,Manhattan,Hell's Kitchen,40.75666,-73.99444,Entire home/apt,185,2,174,4.88,1,65 +17146,78218328,Brooklyn,Bedford-Stuyvesant,40.69191,-73.94636,Private room,50,6,0,,1,0 +17147,15960548,Manhattan,Little Italy,40.71955,-73.99707,Private room,110,2,1,0.03,1,0 +17148,5352610,Brooklyn,Williamsburg,40.70648,-73.92997,Private room,65,4,47,1.28,2,249 +17149,26386038,Manhattan,Theater District,40.76122,-73.98292,Entire home/apt,185,30,4,0.21,1,292 +17150,1725907,Brooklyn,Bedford-Stuyvesant,40.68541,-73.92392,Entire home/apt,195,3,4,0.11,1,0 +17151,997947,Manhattan,Upper West Side,40.80056,-73.96035,Private room,85,2,26,0.71,1,16 +17152,4047676,Manhattan,East Village,40.725390000000004,-73.97963,Entire home/apt,295,2,48,1.33,1,0 +17153,78461025,Brooklyn,Bedford-Stuyvesant,40.69123,-73.93599,Private room,120,2,21,0.59,1,0 +17154,78464432,Brooklyn,Crown Heights,40.6789,-73.96242,Entire home/apt,189,4,15,0.41,1,15 +17155,50338266,Brooklyn,Bedford-Stuyvesant,40.68731,-73.9478,Private room,60,1,0,,1,0 +17156,8336084,Manhattan,Nolita,40.721540000000005,-73.99577,Entire home/apt,123,2,33,0.9,1,1 +17157,77990284,Manhattan,Upper West Side,40.79394,-73.97665,Private room,89,3,1,0.03,1,0 +17158,21283171,Manhattan,East Harlem,40.78706,-73.94798,Entire home/apt,140,1,6,0.18,1,0 +17159,78485066,Brooklyn,East New York,40.6638,-73.89307,Entire home/apt,85,1,106,2.87,2,337 +17160,73850433,Manhattan,East Harlem,40.80038,-73.94601999999999,Entire home/apt,169,3,7,3.28,1,242 +17161,78507411,Manhattan,Upper West Side,40.79671,-73.9712,Entire home/apt,145,3,4,0.11,1,0 +17162,10641733,Brooklyn,Williamsburg,40.717,-73.96183,Entire home/apt,145,1,61,1.74,1,11 +17163,4523651,Manhattan,East Village,40.72552,-73.97879,Entire home/apt,165,2,13,0.35,1,0 +17164,6802844,Brooklyn,Bushwick,40.70458,-73.92031,Entire home/apt,152,7,0,,1,0 +17165,2768182,Brooklyn,South Slope,40.66282,-73.98714,Private room,99,7,10,0.28,4,36 +17166,2638806,Manhattan,East Village,40.72296,-73.9776,Entire home/apt,110,2,0,,1,0 +17167,37425564,Brooklyn,Midwood,40.6271,-73.97182,Private room,40,3,3,0.09,1,0 +17168,4025420,Manhattan,Greenwich Village,40.72948,-73.99986,Private room,115,3,20,0.59,2,15 +17169,11091997,Brooklyn,Bushwick,40.701240000000006,-73.93125,Entire home/apt,157,2,4,0.12,2,0 +17170,68890,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95688,Entire home/apt,1000,1,10,0.28,3,365 +17171,78672740,Brooklyn,Flatbush,40.64809,-73.9677,Private room,72,1,25,0.68,1,333 +17172,1924750,Queens,Astoria,40.76376,-73.91438000000001,Private room,40,2,50,1.63,2,179 +17173,78499938,Manhattan,Midtown,40.75561,-73.96472,Entire home/apt,175,4,0,,1,0 +17174,56352735,Brooklyn,Bedford-Stuyvesant,40.6878,-73.95493,Entire home/apt,90,3,82,2.22,1,4 +17175,27123110,Manhattan,Harlem,40.80372,-73.95036,Private room,65,3,2,0.18,1,0 +17176,14751888,Manhattan,Upper West Side,40.786970000000004,-73.97351,Private room,79,2,6,0.16,1,0 +17177,62317991,Brooklyn,East Flatbush,40.64145,-73.9433,Entire home/apt,350,2,34,1.0,1,344 +17178,2368191,Brooklyn,East Flatbush,40.66375,-73.92974,Entire home/apt,71,6,46,1.25,1,69 +17179,78727422,Manhattan,Morningside Heights,40.80325,-73.96433,Private room,50,10,1,0.03,1,0 +17180,53179388,Manhattan,Midtown,40.750040000000006,-73.97089,Entire home/apt,115,30,5,0.14,10,289 +17181,42994195,Brooklyn,Williamsburg,40.70524,-73.93305,Private room,49,5,0,,1,0 +17182,25596158,Manhattan,Chelsea,40.74366,-74.0005,Private room,70,1,2,0.06,1,0 +17183,78807434,Manhattan,East Village,40.72737,-73.97789,Entire home/apt,110,3,6,0.17,1,34 +17184,40869788,Brooklyn,Carroll Gardens,40.68354,-74.00139,Entire home/apt,140,1,4,0.17,1,0 +17185,78722739,Manhattan,Harlem,40.83077,-73.94847,Entire home/apt,89,2,8,0.34,1,5 +17186,305207,Manhattan,SoHo,40.7205,-73.9986,Entire home/apt,259,2,3,0.08,1,0 +17187,78826514,Manhattan,Upper East Side,40.76885,-73.96472,Entire home/apt,160,2,48,1.3,1,40 +17188,78832817,Manhattan,Upper East Side,40.76873,-73.95464,Entire home/apt,113,7,1,0.03,1,0 +17189,2977429,Manhattan,East Village,40.72402,-73.97778000000001,Entire home/apt,300,2,0,,1,0 +17190,3683612,Manhattan,Harlem,40.8018,-73.95166,Entire home/apt,125,3,26,0.7,1,67 +17191,32219748,Manhattan,Morningside Heights,40.81005,-73.9572,Entire home/apt,105,5,2,0.06,1,0 +17192,5110884,Brooklyn,Flatbush,40.65226,-73.95732,Private room,70,2,0,,1,0 +17193,41947929,Brooklyn,Crown Heights,40.67667,-73.94826,Private room,125,1,47,1.36,2,151 +17194,31651673,Brooklyn,Williamsburg,40.70876,-73.95125,Entire home/apt,150,2,0,,3,0 +17195,47502969,Manhattan,West Village,40.73273,-74.00704,Entire home/apt,275,3,12,0.33,1,12 +17196,78870889,Brooklyn,Williamsburg,40.717909999999996,-73.94242,Private room,65,3,0,,1,0 +17197,77765017,Brooklyn,Bedford-Stuyvesant,40.68499,-73.94433000000001,Private room,65,3,124,3.45,1,199 +17198,27175000,Manhattan,SoHo,40.72263,-74.00424,Entire home/apt,400,3,2,0.06,1,0 +17199,61391963,Manhattan,Kips Bay,40.74136,-73.98006,Entire home/apt,159,30,5,0.14,91,312 +17200,44700210,Manhattan,Upper East Side,40.7758,-73.95472,Entire home/apt,200,5,11,0.3,2,0 +17201,40425220,Manhattan,Battery Park City,40.71617,-74.01468,Private room,225,1,1,0.03,1,0 +17202,78912246,Manhattan,Upper East Side,40.767109999999995,-73.96177,Entire home/apt,199,1,3,0.09,1,0 +17203,44700210,Manhattan,Upper East Side,40.77775,-73.95361,Shared room,75,1,6,0.16,2,0 +17204,68760676,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91507,Private room,44,1,1,0.03,1,0 +17205,7571391,Brooklyn,Williamsburg,40.71673,-73.94832,Private room,100,5,1,0.03,1,0 +17206,13752339,Brooklyn,Williamsburg,40.72012,-73.95675,Entire home/apt,130,28,20,0.59,1,80 +17207,21894419,Manhattan,Financial District,40.70994,-74.00706,Entire home/apt,408,2,3,0.85,2,106 +17208,43125231,Brooklyn,Greenpoint,40.7354,-73.95706,Entire home/apt,120,3,4,0.12,1,0 +17209,22533562,Manhattan,Theater District,40.75967,-73.98732,Entire home/apt,273,1,0,,1,0 +17210,69591507,Brooklyn,East Flatbush,40.65275,-73.95119,Entire home/apt,85,1,0,,1,0 +17211,39375487,Queens,Long Island City,40.75353,-73.9289,Private room,80,2,16,0.49,1,0 +17212,26500909,Brooklyn,Bushwick,40.70347,-73.92764,Private room,60,2,1,0.03,1,0 +17213,21656569,Manhattan,Gramercy,40.73577,-73.98057,Entire home/apt,275,5,0,,1,0 +17214,78931932,Queens,Astoria,40.76764,-73.9279,Entire home/apt,125,25,5,0.14,1,0 +17215,78934668,Manhattan,Hell's Kitchen,40.76395,-73.9884,Entire home/apt,200,2,25,0.68,1,0 +17216,78929276,Manhattan,Midtown,40.7441,-73.98834000000001,Entire home/apt,199,2,106,2.96,1,250 +17217,78936234,Manhattan,Upper East Side,40.773740000000004,-73.95684,Entire home/apt,265,2,6,0.18,1,364 +17218,36435055,Manhattan,West Village,40.734840000000005,-74.00364,Entire home/apt,700,2,18,0.5,2,0 +17219,2010460,Manhattan,East Village,40.72544,-73.9899,Private room,80,2,31,0.94,1,28 +17220,9320995,Brooklyn,Bushwick,40.7035,-73.92912,Private room,35,3,1,0.05,1,0 +17221,78964994,Manhattan,Lower East Side,40.71844,-73.9858,Entire home/apt,135,2,104,2.81,1,76 +17222,2080047,Manhattan,East Village,40.72392,-73.98719,Private room,70,3,2,0.09,1,0 +17223,79020870,Brooklyn,Fort Hamilton,40.62106,-74.03384,Shared room,179,1,0,,1,0 +17224,64182621,Manhattan,East Harlem,40.78584,-73.94899000000001,Entire home/apt,99,5,0,,1,0 +17225,50210611,Brooklyn,Vinegar Hill,40.7041,-73.98089,Entire home/apt,135,6,1,0.03,1,0 +17226,7408231,Brooklyn,Gowanus,40.68331,-73.98609,Entire home/apt,104,2,0,,1,0 +17227,11686214,Manhattan,East Village,40.73055,-73.99146,Entire home/apt,128,3,3,0.08,1,0 +17228,6136799,Brooklyn,Flatbush,40.652570000000004,-73.96259,Private room,60,2,44,1.33,1,1 +17229,4372467,Brooklyn,Boerum Hill,40.68882,-73.98911,Entire home/apt,170,5,2,0.06,1,0 +17230,27379154,Manhattan,East Village,40.72248,-73.98316,Private room,85,3,4,0.11,1,0 +17231,12722812,Queens,Sunnyside,40.738459999999996,-73.92273,Private room,60,4,6,0.17,1,0 +17232,28841406,Manhattan,Two Bridges,40.71298,-73.99406,Private room,75,3,0,,1,0 +17233,1511614,Manhattan,Upper West Side,40.79229,-73.97308000000001,Entire home/apt,349,3,29,0.79,1,0 +17234,79078275,Brooklyn,Williamsburg,40.72003,-73.95756,Private room,90,1,0,,1,0 +17235,13074730,Brooklyn,Flatbush,40.64503,-73.96027,Private room,55,1,0,,1,0 +17236,2727797,Manhattan,Harlem,40.82629,-73.94785,Private room,50,5,0,,1,0 +17237,3695865,Brooklyn,Williamsburg,40.71911,-73.95828,Entire home/apt,200,2,3,0.08,1,0 +17238,4025420,Manhattan,Greenwich Village,40.72875,-74.00169,Private room,110,4,1,0.03,2,0 +17239,79114007,Manhattan,Chelsea,40.74122,-73.99963000000001,Entire home/apt,325,2,47,1.3,1,0 +17240,30656620,Brooklyn,Crown Heights,40.66887,-73.95291999999999,Private room,70,2,0,,1,0 +17241,16696505,Brooklyn,South Slope,40.6638,-73.97935,Entire home/apt,180,5,2,0.07,1,0 +17242,34915405,Manhattan,Hell's Kitchen,40.767509999999994,-73.98483,Entire home/apt,134,1,24,0.65,1,0 +17243,79141968,Manhattan,Harlem,40.81044,-73.94915999999999,Entire home/apt,150,3,13,0.37,1,207 +17244,26621764,Manhattan,Morningside Heights,40.80534,-73.96654000000001,Private room,150,1,0,,1,0 +17245,14607718,Brooklyn,Greenpoint,40.73005,-73.95806999999999,Entire home/apt,200,2,58,1.71,1,257 +17246,1316648,Brooklyn,Bedford-Stuyvesant,40.69119,-73.9601,Entire home/apt,110,4,7,0.2,1,0 +17247,79167228,Brooklyn,Williamsburg,40.71666,-73.95447,Entire home/apt,105,5,11,0.3,1,0 +17248,28115515,Manhattan,Chelsea,40.74179,-73.99855,Entire home/apt,150,1,0,,1,0 +17249,79176358,Brooklyn,Boerum Hill,40.686009999999996,-73.98335,Entire home/apt,200,5,0,,1,0 +17250,45381744,Manhattan,Upper West Side,40.79759,-73.96544,Entire home/apt,165,1,3,0.08,1,0 +17251,4110677,Manhattan,Harlem,40.8085,-73.94113,Private room,75,14,4,0.11,2,184 +17252,79258584,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94115,Entire home/apt,104,5,115,3.13,1,182 +17253,2486611,Manhattan,Financial District,40.70884,-74.00754,Entire home/apt,130,2,15,0.42,1,0 +17254,79268929,Manhattan,East Village,40.72383,-73.9839,Private room,130,1,4,0.11,1,0 +17255,35857384,Manhattan,Gramercy,40.73536,-73.98433,Entire home/apt,145,7,7,0.23,1,0 +17256,810050,Manhattan,Harlem,40.82633,-73.94459,Private room,60,1,1,0.03,1,157 +17257,14798138,Queens,Cambria Heights,40.69061,-73.73917,Private room,40,5,1,0.03,1,179 +17258,19096739,Manhattan,Harlem,40.82443,-73.95175,Private room,60,1,0,,1,0 +17259,299090,Manhattan,East Harlem,40.80767,-73.93913,Entire home/apt,99,2,7,0.2,1,0 +17260,79293619,Brooklyn,Bushwick,40.70381,-73.91922,Private room,75,2,0,,1,0 +17261,79298323,Queens,Maspeth,40.73359,-73.89227,Private room,70,14,35,1.58,3,215 +17262,79305630,Brooklyn,Gravesend,40.59535,-73.98946,Entire home/apt,109,4,80,2.53,2,107 +17263,23684,Manhattan,Upper West Side,40.797740000000005,-73.97274,Entire home/apt,250,3,5,0.15,1,23 +17264,4622157,Manhattan,Harlem,40.82438,-73.9502,Entire home/apt,129,4,4,0.11,1,0 +17265,4703687,Brooklyn,Greenpoint,40.72341,-73.93616,Entire home/apt,90,4,0,,2,0 +17266,88260,Manhattan,Lower East Side,40.71967,-73.98506,Entire home/apt,150,3,47,1.33,1,39 +17267,5369934,Manhattan,East Village,40.72857,-73.9854,Entire home/apt,198,3,5,0.22,1,0 +17268,57340330,Brooklyn,Bushwick,40.68936,-73.90814,Private room,55,1,5,0.14,1,89 +17269,4278354,Manhattan,Harlem,40.80927,-73.9427,Private room,61,1,4,0.11,1,0 +17270,79340962,Queens,Astoria,40.76923,-73.91835,Entire home/apt,90,1,2,0.05,1,0 +17271,31252117,Manhattan,Harlem,40.80131,-73.9579,Private room,45,7,2,0.06,1,0 +17272,79341807,Queens,Arverne,40.59421,-73.80043,Entire home/apt,200,2,35,0.95,1,4 +17273,29342746,Brooklyn,Crown Heights,40.67477,-73.95313,Private room,60,2,1,0.07,1,0 +17274,75501075,Manhattan,Gramercy,40.73192,-73.98291,Entire home/apt,150,5,0,,1,0 +17275,26929394,Brooklyn,Williamsburg,40.71503,-73.94733000000001,Entire home/apt,125,3,2,0.08,1,0 +17276,30719074,Manhattan,Theater District,40.75927,-73.98592,Private room,80,7,0,,1,0 +17277,51432814,Manhattan,East Harlem,40.7865,-73.94288,Private room,80,3,0,,1,0 +17278,79373292,Brooklyn,Bushwick,40.68392,-73.90654,Private room,35,6,2,0.06,1,0 +17279,79373189,Queens,Long Island City,40.757259999999995,-73.93555,Private room,40,1,113,3.17,2,57 +17280,8059211,Brooklyn,Bushwick,40.69828,-73.93205999999999,Private room,120,1,0,,1,0 +17281,15588105,Brooklyn,Windsor Terrace,40.64999,-73.97306999999999,Entire home/apt,100,30,2,0.06,1,222 +17282,4606955,Brooklyn,Clinton Hill,40.685520000000004,-73.9609,Entire home/apt,259,6,4,0.11,1,7 +17283,4411751,Manhattan,Gramercy,40.73786,-73.98678000000001,Entire home/apt,129,90,6,0.25,1,0 +17284,46370904,Brooklyn,Sunset Park,40.64569,-74.00784,Entire home/apt,89,10,3,0.09,1,1 +17285,3977023,Brooklyn,Carroll Gardens,40.6839,-73.99266,Private room,75,5,0,,2,0 +17286,182226,Brooklyn,Williamsburg,40.70845,-73.95397,Entire home/apt,135,7,9,0.25,1,7 +17287,79231531,Manhattan,Upper West Side,40.77778,-73.97795,Entire home/apt,200,4,1,0.03,1,0 +17288,79459633,Manhattan,Morningside Heights,40.80442,-73.96361999999999,Private room,90,2,8,0.22,1,0 +17289,3988830,Brooklyn,South Slope,40.666579999999996,-73.98116999999999,Entire home/apt,200,3,1,0.03,1,3 +17290,22019073,Manhattan,Hell's Kitchen,40.75571,-73.99594,Private room,90,15,0,,1,0 +17291,461413,Brooklyn,Greenpoint,40.73516,-73.95532,Entire home/apt,150,2,68,1.93,1,100 +17292,8457214,Manhattan,Nolita,40.7224,-73.99604000000001,Entire home/apt,110,1,2,0.05,2,0 +17293,79479983,Manhattan,Upper East Side,40.78137,-73.95176,Entire home/apt,150,2,1,0.03,1,0 +17294,6214982,Manhattan,Greenwich Village,40.72948,-74.00153,Private room,115,2,4,0.11,1,0 +17295,29013448,Brooklyn,Prospect-Lefferts Gardens,40.65668,-73.95969000000001,Private room,42,1,8,0.22,2,0 +17296,56044722,Brooklyn,Williamsburg,40.70922,-73.94722,Private room,75,2,1,0.03,1,0 +17297,79488969,Manhattan,Upper West Side,40.77597,-73.98038000000001,Entire home/apt,189,2,72,1.95,1,27 +17298,79492070,Manhattan,Harlem,40.82022,-73.95358,Entire home/apt,125,1,7,0.19,1,0 +17299,6057941,Brooklyn,Windsor Terrace,40.65879,-73.97733000000001,Entire home/apt,150,5,0,,1,0 +17300,2119276,Manhattan,Kips Bay,40.73969,-73.98445,Entire home/apt,175,30,5,0.14,39,283 +17301,17605950,Manhattan,Lower East Side,40.71881,-73.98881999999999,Private room,99,2,48,1.3,1,0 +17302,79340220,Bronx,Woodlawn,40.899840000000005,-73.86901999999999,Entire home/apt,85,2,43,1.19,1,299 +17303,2119276,Manhattan,Flatiron District,40.74023,-73.98443,Entire home/apt,185,30,9,0.29,39,346 +17304,79501489,Manhattan,East Village,40.73172,-73.9846,Entire home/apt,177,1,2,0.05,1,0 +17305,3136445,Brooklyn,Carroll Gardens,40.6748,-74.00024,Private room,100,2,25,0.68,1,0 +17306,2637013,Manhattan,East Harlem,40.79878,-73.94495,Entire home/apt,102,4,15,0.42,1,0 +17307,59938558,Manhattan,East Village,40.72735,-73.98739,Entire home/apt,120,3,4,0.11,1,0 +17308,79510521,Manhattan,Murray Hill,40.74327,-73.97202,Entire home/apt,155,5,2,0.05,1,0 +17309,7127392,Manhattan,Harlem,40.80549,-73.95595,Private room,67,2,36,0.98,1,0 +17310,9371652,Brooklyn,Williamsburg,40.70704,-73.93763,Private room,50,2,1,0.04,1,0 +17311,66114992,Manhattan,Upper East Side,40.76247,-73.96238000000001,Private room,55,5,0,,1,0 +17312,79505257,Staten Island,Howland Hook,40.63245,-74.17065,Entire home/apt,100,3,21,0.57,1,88 +17313,79547468,Manhattan,East Harlem,40.797579999999996,-73.94518000000001,Entire home/apt,125,6,2,0.06,1,0 +17314,78285648,Brooklyn,Kensington,40.63622,-73.97406,Entire home/apt,70,1,0,,1,0 +17315,42605385,Brooklyn,Flatbush,40.63624,-73.96365,Private room,39,4,2,0.05,3,0 +17316,45369628,Brooklyn,Bushwick,40.7017,-73.92344,Private room,60,2,0,,1,0 +17317,75029289,Manhattan,Upper East Side,40.77377,-73.9468,Entire home/apt,125,30,8,0.25,5,0 +17318,75029289,Manhattan,Upper East Side,40.77467,-73.95533,Entire home/apt,133,30,11,0.34,5,126 +17319,62028227,Brooklyn,Bedford-Stuyvesant,40.68114,-73.95795,Entire home/apt,149,3,3,0.08,1,189 +17320,30066784,Brooklyn,Gowanus,40.67674,-73.99642,Private room,110,2,204,6.19,1,41 +17321,11279326,Brooklyn,Williamsburg,40.70735,-73.95012,Private room,150,3,2,0.06,1,0 +17322,79579355,Queens,Astoria,40.76985,-73.92481,Entire home/apt,205,3,50,1.41,1,324 +17323,77983246,Manhattan,Upper East Side,40.77798,-73.95251,Entire home/apt,100,2,21,0.57,1,16 +17324,79598330,Brooklyn,East Flatbush,40.66337,-73.92576,Private room,30,3,20,0.54,1,27 +17325,23088190,Manhattan,Morningside Heights,40.80364,-73.96540999999999,Private room,69,3,1,0.03,1,0 +17326,3522798,Manhattan,SoHo,40.726259999999996,-74.00154,Entire home/apt,158,1,0,,1,0 +17327,13030891,Brooklyn,Fort Greene,40.69595,-73.98173,Entire home/apt,190,1,3,0.09,1,0 +17328,79704239,Brooklyn,Bedford-Stuyvesant,40.68888,-73.95492,Private room,36,7,0,,2,0 +17329,69977115,Brooklyn,Bensonhurst,40.61649,-73.99043,Private room,79,2,1,0.03,4,179 +17330,20446747,Manhattan,Hell's Kitchen,40.76638,-73.99013000000001,Entire home/apt,176,4,105,2.99,1,143 +17331,2438907,Brooklyn,Williamsburg,40.71894,-73.96403000000001,Entire home/apt,199,3,23,0.63,1,0 +17332,6608774,Manhattan,Hell's Kitchen,40.766090000000005,-73.99305,Private room,150,3,0,,1,0 +17333,57628579,Brooklyn,Gowanus,40.68078,-73.984,Private room,64,2,2,0.06,1,0 +17334,79713170,Manhattan,East Village,40.73202,-73.98765999999999,Entire home/apt,250,5,0,,1,0 +17335,46253146,Manhattan,Harlem,40.829240000000006,-73.94783000000001,Private room,50,1,0,,1,0 +17336,28250527,Manhattan,Midtown,40.75257,-73.97148,Private room,65,1,0,,1,0 +17337,79724562,Manhattan,East Village,40.725770000000004,-73.99169,Entire home/apt,118,10,1,0.03,1,0 +17338,21419119,Manhattan,Kips Bay,40.74033,-73.98268,Entire home/apt,189,365,7,0.19,1,362 +17339,79725282,Manhattan,Upper East Side,40.766009999999994,-73.95814,Private room,79,1,3,0.08,1,0 +17340,27473592,Brooklyn,Clinton Hill,40.682970000000005,-73.96115,Entire home/apt,75,1,2,0.05,1,0 +17341,79743216,Brooklyn,Bushwick,40.704159999999995,-73.9211,Entire home/apt,100,5,2,0.06,1,0 +17342,79744263,Manhattan,Upper East Side,40.77386,-73.95348,Entire home/apt,200,6,0,,1,0 +17343,32357613,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92196,Private room,65,1,126,3.5,3,0 +17344,79751520,Queens,Forest Hills,40.71307,-73.84833,Entire home/apt,90,1,35,3.31,2,310 +17345,79752355,Bronx,Fordham,40.85859,-73.89571,Entire home/apt,65,1,9,0.25,1,0 +17346,79753770,Manhattan,Washington Heights,40.836690000000004,-73.94274,Entire home/apt,125,3,27,0.79,2,308 +17347,8338942,Manhattan,Nolita,40.722409999999996,-73.99377,Private room,124,1,168,4.58,4,147 +17348,46083939,Brooklyn,Bedford-Stuyvesant,40.69008,-73.92661,Entire home/apt,120,1,34,0.94,1,0 +17349,79820757,Brooklyn,Crown Heights,40.676109999999994,-73.94106,Entire home/apt,300,3,83,2.43,2,218 +17350,31307789,Queens,Corona,40.74736,-73.85587,Shared room,27,2,13,0.35,2,361 +17351,79824377,Brooklyn,Williamsburg,40.70902,-73.9511,Private room,75,4,0,,1,0 +17352,71886811,Manhattan,Morningside Heights,40.81596,-73.95999,Private room,86,6,34,0.93,3,90 +17353,42605385,Brooklyn,Flatbush,40.63627,-73.96514,Entire home/apt,113,7,0,,3,0 +17354,79738917,Manhattan,Harlem,40.80968,-73.95355,Private room,69,4,0,,1,0 +17355,21325944,Manhattan,Harlem,40.819320000000005,-73.95761,Private room,50,2,16,0.46,1,0 +17356,52237758,Manhattan,Chelsea,40.74075,-73.99566999999999,Entire home/apt,155,2,1,0.03,1,0 +17357,3792661,Manhattan,Morningside Heights,40.809740000000005,-73.96034,Private room,90,7,4,0.12,1,0 +17358,29013448,Brooklyn,Prospect-Lefferts Gardens,40.658359999999995,-73.96161,Private room,44,2,15,0.43,2,0 +17359,52267190,Queens,Ozone Park,40.68226,-73.84396,Shared room,25,1,0,,1,0 +17360,3074354,Manhattan,Greenwich Village,40.7293,-73.99479000000001,Entire home/apt,499,4,0,,1,0 +17361,24341064,Brooklyn,Sunset Park,40.66131,-73.99563,Private room,90,2,16,0.44,1,0 +17362,7147901,Manhattan,Lower East Side,40.71526,-73.98484,Entire home/apt,118,1,6,0.16,1,0 +17363,33862021,Bronx,Melrose,40.822959999999995,-73.91429000000001,Private room,42,2,2,0.06,1,0 +17364,57123462,Manhattan,Harlem,40.82717,-73.95249,Private room,57,5,4,0.11,1,0 +17365,74310552,Brooklyn,Greenpoint,40.734609999999996,-73.95724,Entire home/apt,150,4,3,0.24,1,0 +17366,4283766,Brooklyn,Williamsburg,40.71005,-73.95509,Private room,66,7,0,,1,0 +17367,79834985,Manhattan,Tribeca,40.71798,-74.01253,Entire home/apt,95,7,0,,1,0 +17368,33411808,Manhattan,East Harlem,40.78559,-73.94345,Private room,40,3,0,,1,0 +17369,61585786,Manhattan,Washington Heights,40.83619,-73.94099,Private room,65,7,103,2.79,1,11 +17370,3856352,Manhattan,East Harlem,40.7974,-73.9354,Private room,40,4,14,0.41,1,0 +17371,4960457,Manhattan,Flatiron District,40.7414,-73.99075,Entire home/apt,215,45,0,,1,25 +17372,79951689,Manhattan,Hell's Kitchen,40.764959999999995,-73.99415,Entire home/apt,199,5,0,,1,0 +17373,37707224,Brooklyn,Gowanus,40.67961,-73.98886,Private room,65,1,0,,1,0 +17374,7747816,Brooklyn,Crown Heights,40.67089,-73.96035,Shared room,70,1,0,,1,0 +17375,79546891,Manhattan,Harlem,40.82,-73.95331,Private room,59,4,8,0.26,1,0 +17376,840987,Manhattan,East Village,40.72603,-73.98915,Entire home/apt,150,3,0,,1,0 +17377,80023687,Brooklyn,Greenpoint,40.73233,-73.95443,Entire home/apt,300,1,1,0.03,1,83 +17378,15838559,Queens,Forest Hills,40.714290000000005,-73.85088,Private room,59,3,15,0.41,4,0 +17379,10366292,Brooklyn,Clinton Hill,40.6854,-73.96395,Private room,45,7,1,0.05,3,0 +17380,6110471,Manhattan,Harlem,40.801,-73.95833,Private room,110,1,23,1.0,1,146 +17381,62149112,Brooklyn,Williamsburg,40.715759999999996,-73.95576,Private room,65,1,3,0.11,1,0 +17382,80068221,Brooklyn,Sunset Park,40.66448,-73.99407,Entire home/apt,130,2,3,0.08,1,0 +17383,22447216,Manhattan,Kips Bay,40.73887,-73.98177,Entire home/apt,300,1,0,,1,0 +17384,45924792,Brooklyn,Brooklyn Heights,40.69027,-73.99418,Entire home/apt,111,4,2,0.05,1,0 +17385,69001602,Queens,Ridgewood,40.70605,-73.89928,Private room,48,2,6,0.17,1,0 +17386,68404305,Brooklyn,Brownsville,40.66462,-73.91873000000001,Private room,65,3,47,1.28,1,300 +17387,80091971,Manhattan,Upper West Side,40.80421,-73.96738,Private room,75,2,17,0.46,2,0 +17388,4230541,Brooklyn,Clinton Hill,40.684459999999994,-73.96528,Private room,200,2,0,,1,0 +17389,80107649,Manhattan,Lower East Side,40.7188,-73.99458,Private room,99,3,10,0.28,1,0 +17390,19094327,Brooklyn,Clinton Hill,40.68141,-73.96268,Entire home/apt,225,1,3,0.08,1,0 +17391,80114315,Queens,Astoria,40.75965,-73.91095,Private room,65,5,10,0.28,1,68 +17392,10737943,Manhattan,Upper East Side,40.776720000000005,-73.94697,Private room,51,30,9,0.25,10,220 +17393,32928497,Brooklyn,Fort Greene,40.695029999999996,-73.97286,Entire home/apt,175,3,5,0.14,1,0 +17394,19572312,Manhattan,East Village,40.72695,-73.98546,Private room,120,1,2,0.06,1,0 +17395,60812510,Manhattan,Harlem,40.81818,-73.93905,Private room,49,1,12,0.33,1,0 +17396,41067998,Manhattan,Upper West Side,40.78817,-73.98068,Private room,175,2,0,,1,0 +17397,80061565,Bronx,Schuylerville,40.8355,-73.83729,Entire home/apt,71,2,118,3.24,1,34 +17398,79929686,Manhattan,Upper East Side,40.77857,-73.9539,Entire home/apt,350,3,0,,1,0 +17399,8327308,Manhattan,Midtown,40.74754,-73.98309,Entire home/apt,119,7,1,0.03,1,0 +17400,5267723,Manhattan,Harlem,40.81139,-73.94094,Entire home/apt,110,7,0,,1,0 +17401,2305978,Manhattan,Chelsea,40.7427,-73.99837,Entire home/apt,185,2,147,4.07,2,114 +17402,9243105,Brooklyn,Prospect-Lefferts Gardens,40.657270000000004,-73.9601,Entire home/apt,115,1,227,6.23,1,294 +17403,6263778,Brooklyn,Crown Heights,40.6698,-73.95835,Private room,90,2,0,,1,0 +17404,49367785,Brooklyn,Bushwick,40.69757,-73.92905999999999,Private room,45,5,0,,1,0 +17405,64571012,Manhattan,Lower East Side,40.72009,-73.98631,Private room,50,2,1,0.03,1,0 +17406,2352388,Brooklyn,Crown Heights,40.67992,-73.95902,Private room,80,1,22,0.6,1,0 +17407,3571172,Manhattan,Harlem,40.812509999999996,-73.94524,Entire home/apt,95,1,2,0.06,1,0 +17408,7377615,Brooklyn,Williamsburg,40.70877,-73.96054000000001,Private room,50,1,0,,2,0 +17409,20134231,Queens,Springfield Gardens,40.66298,-73.7621,Private room,40,2,187,5.12,3,352 +17410,2208993,Manhattan,East Village,40.72376,-73.98303,Shared room,30,3,10,0.27,3,0 +17411,7689009,Manhattan,West Village,40.732079999999996,-74.00784,Entire home/apt,225,2,1,0.03,1,0 +17412,579391,Brooklyn,Bushwick,40.70091,-73.93809,Private room,65,2,12,0.34,1,0 +17413,58625222,Manhattan,Midtown,40.754490000000004,-73.96545,Entire home/apt,199,3,0,,1,0 +17414,76314424,Queens,Long Island City,40.74543,-73.94595,Entire home/apt,125,5,12,0.33,1,3 +17415,2026554,Brooklyn,Bushwick,40.70173,-73.91504,Entire home/apt,89,3,14,0.39,1,0 +17416,2119276,Manhattan,East Village,40.72927,-73.99039,Entire home/apt,300,30,2,0.06,39,310 +17417,23424348,Brooklyn,Williamsburg,40.71301,-73.9495,Entire home/apt,200,30,47,1.41,1,298 +17418,3564306,Manhattan,Upper West Side,40.78829,-73.9701,Entire home/apt,200,1,17,0.47,1,0 +17419,30708411,Manhattan,East Village,40.73183,-73.98513,Entire home/apt,129,4,7,0.31,1,0 +17420,65227208,Manhattan,East Village,40.724540000000005,-73.97931,Entire home/apt,495,3,52,1.51,1,285 +17421,75857,Manhattan,Harlem,40.80477,-73.94797,Private room,125,3,14,0.42,1,121 +17422,37310365,Brooklyn,Gowanus,40.67921,-73.99226,Entire home/apt,185,3,93,2.58,1,77 +17423,80320245,Manhattan,Upper West Side,40.77841,-73.98028000000001,Private room,92,1,4,0.11,1,0 +17424,62777136,Manhattan,Harlem,40.82485,-73.94537,Entire home/apt,119,7,0,,1,0 +17425,149833,Brooklyn,Bushwick,40.70335,-73.91583,Entire home/apt,120,3,2,0.06,1,0 +17426,37927366,Manhattan,Harlem,40.82971,-73.94521,Entire home/apt,500,5,0,,1,0 +17427,80333311,Brooklyn,Canarsie,40.637229999999995,-73.90854,Entire home/apt,80,1,104,2.86,1,97 +17428,36234842,Manhattan,Chinatown,40.71709,-73.99628,Entire home/apt,124,4,0,,1,0 +17429,60002757,Manhattan,Upper West Side,40.7921,-73.97031,Entire home/apt,85,2,3,0.08,1,0 +17430,9111709,Brooklyn,Flatbush,40.63964,-73.95629,Private room,55,1,11,0.31,1,0 +17431,32357613,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92211999999999,Private room,82,1,4,0.15,3,0 +17432,37736307,Manhattan,East Harlem,40.78918,-73.94995,Entire home/apt,150,3,18,0.49,2,0 +17433,50204678,Manhattan,East Village,40.72753,-73.97825,Entire home/apt,250,2,3,0.08,1,0 +17434,16725289,Brooklyn,Windsor Terrace,40.64785,-73.97595,Entire home/apt,150,2,1,0.08,1,0 +17435,44941423,Brooklyn,Downtown Brooklyn,40.69751,-73.98454,Entire home/apt,121,5,4,0.12,1,0 +17436,33064589,Queens,Flushing,40.74953,-73.79677,Entire home/apt,350,3,1,0.03,1,0 +17437,80437226,Manhattan,Hell's Kitchen,40.7598,-73.99978,Entire home/apt,115,1,0,,1,0 +17438,20583125,Brooklyn,Flatlands,40.632220000000004,-73.93398,Private room,45,8,10,0.7,1,85 +17439,76590834,Manhattan,Upper West Side,40.80165,-73.96497,Private room,65,1,0,,1,0 +17440,8237570,Brooklyn,Williamsburg,40.71782,-73.95013,Private room,200,1,5,0.15,2,364 +17441,80463005,Brooklyn,Flatbush,40.63316,-73.96606,Entire home/apt,120,2,48,1.36,1,53 +17442,5490071,Manhattan,East Harlem,40.78672,-73.94519,Entire home/apt,175,3,119,3.31,3,238 +17443,80470317,Staten Island,Clifton,40.62356,-74.07571,Entire home/apt,120,1,82,2.26,1,310 +17444,33381088,Brooklyn,Bedford-Stuyvesant,40.69218,-73.94678,Private room,49,3,2,0.06,1,0 +17445,42782892,Manhattan,Chelsea,40.74107,-73.99595,Entire home/apt,250,5,4,0.11,1,0 +17446,438572,Manhattan,East Village,40.7281,-73.99067,Entire home/apt,250,2,3,0.08,1,0 +17447,7377615,Brooklyn,Williamsburg,40.707840000000004,-73.95884000000001,Entire home/apt,110,3,1,0.03,2,0 +17448,1571120,Brooklyn,Williamsburg,40.711040000000004,-73.96098,Entire home/apt,199,2,31,0.88,2,23 +17449,10471651,Manhattan,Upper East Side,40.763090000000005,-73.95697,Entire home/apt,350,3,12,0.34,1,301 +17450,2495361,Manhattan,Two Bridges,40.712740000000004,-73.99662,Entire home/apt,124,3,1,0.03,1,0 +17451,80501262,Brooklyn,Williamsburg,40.718,-73.9525,Entire home/apt,175,2,9,0.29,1,0 +17452,23863809,Manhattan,Chelsea,40.73938,-73.99855,Private room,150,3,0,,2,0 +17453,7009626,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94309,Entire home/apt,295,2,16,0.44,1,0 +17454,80315972,Manhattan,Chelsea,40.74361,-73.99885,Entire home/apt,210,2,1,0.03,1,0 +17455,80534927,Manhattan,East Village,40.727779999999996,-73.98335,Entire home/apt,125,2,3,0.08,1,0 +17456,3137526,Manhattan,Greenwich Village,40.72994,-73.99953000000001,Entire home/apt,112,7,0,,2,0 +17457,40507839,Brooklyn,Bedford-Stuyvesant,40.68574,-73.92975,Entire home/apt,118,3,20,3.21,1,33 +17458,8035063,Brooklyn,Williamsburg,40.70861,-73.95414,Private room,85,1,0,,1,0 +17459,6816955,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95456999999999,Private room,53,2,121,3.3,1,348 +17460,58208399,Manhattan,East Village,40.72576,-73.98691,Entire home/apt,200,2,11,0.3,1,0 +17461,65809485,Queens,Flushing,40.74821,-73.82948,Private room,40,7,19,0.52,12,251 +17462,80571474,Brooklyn,Williamsburg,40.71428,-73.95172,Private room,60,1,0,,1,0 +17463,16951458,Brooklyn,Midwood,40.61978,-73.95605,Shared room,50,1,16,0.46,1,0 +17464,4328118,Manhattan,Chelsea,40.74601,-74.00028,Private room,135,2,2,1.2,1,336 +17465,71564201,Queens,Jamaica,40.6711,-73.76508000000001,Private room,61,1,58,1.77,1,0 +17466,28930916,Manhattan,Upper East Side,40.78112,-73.95214,Shared room,42,1,50,1.41,1,343 +17467,36234811,Queens,Arverne,40.590509999999995,-73.79151999999999,Private room,69,1,51,1.4,4,152 +17468,80593607,Manhattan,Upper East Side,40.777879999999996,-73.95615,Entire home/apt,105,1,3,0.08,1,0 +17469,1434340,Brooklyn,Williamsburg,40.709379999999996,-73.95435,Entire home/apt,150,1,174,4.84,1,236 +17470,34075048,Manhattan,Upper East Side,40.769909999999996,-73.95189,Entire home/apt,240,4,26,0.75,1,188 +17471,80479138,Manhattan,Midtown,40.75965,-73.96543,Entire home/apt,140,30,14,0.39,5,75 +17472,46644337,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94100999999999,Entire home/apt,90,2,113,3.08,3,262 +17473,5514044,Manhattan,Chelsea,40.73942,-74.00065,Entire home/apt,199,2,1,0.03,1,0 +17474,8457214,Manhattan,Nolita,40.72232,-73.99579,Private room,65,3,2,0.05,2,0 +17475,59529529,Manhattan,Hell's Kitchen,40.76277,-73.99424,Private room,70,1,220,6.0,6,180 +17476,65809485,Queens,Flushing,40.74988,-73.82884,Private room,60,7,82,2.34,12,152 +17477,327900,Manhattan,Lower East Side,40.72144,-73.98655,Private room,69,1,10,0.27,2,187 +17478,20183212,Manhattan,Harlem,40.8235,-73.94332,Entire home/apt,250,5,74,2.03,1,216 +17479,59529529,Manhattan,Hell's Kitchen,40.76296,-73.99565,Private room,70,1,247,6.74,6,161 +17480,9251010,Manhattan,Upper East Side,40.7732,-73.95173,Entire home/apt,175,2,8,0.23,1,0 +17481,1003394,Manhattan,East Village,40.7294,-73.98021,Private room,110,4,12,0.33,1,0 +17482,43688213,Queens,Astoria,40.76736,-73.91462,Private room,50,5,3,0.08,1,0 +17483,40008334,Manhattan,East Village,40.7282,-73.98001,Private room,75,1,159,4.34,1,84 +17484,17370376,Brooklyn,Crown Heights,40.67431,-73.95399,Private room,55,30,19,0.52,1,281 +17485,80721470,Manhattan,Gramercy,40.73491,-73.984,Private room,75,2,1,0.03,1,0 +17486,24295412,Queens,Astoria,40.758179999999996,-73.92513000000001,Private room,30,6,0,,1,0 +17487,80731010,Brooklyn,Canarsie,40.6415,-73.88739,Entire home/apt,90,2,54,1.47,1,64 +17488,45543753,Manhattan,Harlem,40.80046,-73.95509,Private room,70,1,8,0.22,1,0 +17489,5611600,Brooklyn,Boerum Hill,40.68473,-73.97868000000001,Entire home/apt,140,2,5,0.14,2,0 +17490,22069376,Manhattan,East Village,40.7257,-73.98635,Entire home/apt,200,1,38,3.41,1,123 +17491,64839278,Manhattan,Upper East Side,40.77316,-73.94998000000001,Entire home/apt,120,2,29,0.8,1,0 +17492,29600525,Brooklyn,Williamsburg,40.70854,-73.96242,Private room,85,2,122,3.35,1,258 +17493,13408910,Bronx,Concourse,40.82948,-73.92364,Private room,82,4,0,,2,0 +17494,24908787,Manhattan,SoHo,40.72541,-74.001,Entire home/apt,200,30,1,0.03,1,0 +17495,1777689,Brooklyn,Sheepshead Bay,40.60733,-73.95322,Entire home/apt,225,2,1,0.08,1,364 +17496,61170181,Brooklyn,Greenpoint,40.72748,-73.95272,Private room,75,3,0,,1,0 +17497,5950785,Manhattan,West Village,40.73316,-74.00183,Entire home/apt,230,2,9,0.25,1,0 +17498,80778982,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91762,Private room,50,1,0,,1,0 +17499,80780369,Queens,Ridgewood,40.71118,-73.9151,Private room,35,1,2,0.06,1,0 +17500,77778146,Brooklyn,East Flatbush,40.63348,-73.94736999999999,Private room,95,1,20,0.58,8,189 +17501,80777352,Brooklyn,Prospect Heights,40.67403,-73.96798000000001,Private room,48,2,131,3.88,1,333 +17502,24054404,Brooklyn,Greenpoint,40.72249,-73.94776,Private room,50,5,3,0.08,1,0 +17503,80794677,Manhattan,Upper West Side,40.79938,-73.96235,Private room,48,1,4,0.11,1,0 +17504,65809485,Queens,Flushing,40.74879,-73.82958,Private room,55,3,47,1.33,12,65 +17505,64116761,Brooklyn,Carroll Gardens,40.67747,-73.99916999999999,Entire home/apt,100,5,0,,1,0 +17506,65809485,Queens,Flushing,40.74875,-73.82775,Private room,50,7,55,1.57,12,160 +17507,65809485,Queens,Flushing,40.75026,-73.82873000000001,Private room,40,7,59,1.67,12,120 +17508,38404959,Queens,Ditmars Steinway,40.77697,-73.9082,Private room,60,2,10,0.38,2,364 +17509,65809485,Queens,Flushing,40.74944,-73.82772,Private room,40,3,51,1.45,12,96 +17510,978029,Brooklyn,Bedford-Stuyvesant,40.687459999999994,-73.95810999999999,Entire home/apt,245,5,0,,1,0 +17511,4923567,Manhattan,Upper East Side,40.7777,-73.9535,Entire home/apt,135,3,32,0.88,1,84 +17512,2025836,Manhattan,Upper West Side,40.78176,-73.97822,Entire home/apt,150,1,2,0.06,1,0 +17513,73717067,Manhattan,Harlem,40.826609999999995,-73.94165,Entire home/apt,100,4,6,0.17,1,27 +17514,47577415,Brooklyn,Flatlands,40.629709999999996,-73.93336,Private room,45,1,9,0.26,1,189 +17515,22028840,Manhattan,Washington Heights,40.85308,-73.92878,Private room,55,3,71,1.93,2,0 +17516,80091971,Manhattan,Upper West Side,40.80268,-73.96684,Private room,80,1,2,0.06,2,0 +17517,36380968,Brooklyn,Brighton Beach,40.57577,-73.96115,Private room,60,1,18,2.78,2,343 +17518,70181692,Manhattan,Midtown,40.74595,-73.98996,Entire home/apt,399,1,1,0.03,1,0 +17519,80886117,Manhattan,Upper East Side,40.7731,-73.95169,Entire home/apt,150,4,20,0.55,1,82 +17520,5611600,Brooklyn,Boerum Hill,40.68473,-73.97863000000001,Shared room,47,1,0,,2,0 +17521,80894027,Queens,Jackson Heights,40.7532,-73.87731,Entire home/apt,125,3,12,0.35,1,274 +17522,80904983,Queens,Briarwood,40.71116,-73.81514,Entire home/apt,75,2,57,1.55,1,314 +17523,22541573,Brooklyn,Downtown Brooklyn,40.69037,-73.98206,Entire home/apt,202,30,1,0.04,87,365 +17524,59788392,Manhattan,Upper West Side,40.78573,-73.97686,Private room,80,1,0,,1,0 +17525,71857900,Queens,Astoria,40.77153,-73.93191,Private room,150,2,0,,1,0 +17526,75442218,Brooklyn,Bedford-Stuyvesant,40.68155,-73.93639,Private room,45,3,6,0.18,1,0 +17527,15700083,Queens,Maspeth,40.71609,-73.9025,Private room,30,20,0,,1,0 +17528,819636,Brooklyn,Prospect Heights,40.67575,-73.96546,Private room,102,1,5,0.14,1,0 +17529,5684580,Brooklyn,Williamsburg,40.71474,-73.94461,Entire home/apt,55,4,34,1.07,1,0 +17530,10411030,Manhattan,East Harlem,40.799209999999995,-73.94749,Entire home/apt,155,6,7,0.21,1,0 +17531,80275136,Manhattan,Harlem,40.82408,-73.95434,Entire home/apt,120,3,0,,1,0 +17532,15197019,Manhattan,Inwood,40.860820000000004,-73.92585,Entire home/apt,95,2,2,0.06,1,0 +17533,80968378,Brooklyn,Carroll Gardens,40.6788,-73.99559,Entire home/apt,525,4,5,0.14,1,327 +17534,10371038,Manhattan,Upper East Side,40.77094,-73.95125999999999,Entire home/apt,199,1,0,,1,0 +17535,19483885,Brooklyn,Bedford-Stuyvesant,40.696509999999996,-73.96146999999999,Private room,45,1,60,2.27,2,224 +17536,81080113,Manhattan,Harlem,40.81893,-73.94118,Private room,90,1,0,,1,0 +17537,4508140,Manhattan,Upper West Side,40.794259999999994,-73.96414,Entire home/apt,150,2,11,0.3,1,212 +17538,5574626,Brooklyn,Greenpoint,40.72325,-73.9432,Private room,59,4,1,0.03,1,0 +17539,22161599,Queens,Ridgewood,40.6997,-73.90243000000001,Private room,75,3,8,0.22,1,81 +17540,49294106,Brooklyn,Bushwick,40.69956,-73.91888,Private room,69,2,62,1.8,1,16 +17541,514261,Brooklyn,South Slope,40.66537,-73.98784,Private room,300,2,2,0.06,3,0 +17542,3290750,Manhattan,Upper West Side,40.800779999999996,-73.9641,Private room,60,4,11,0.3,1,0 +17543,17153180,Brooklyn,East New York,40.66337,-73.89806,Private room,50,1,1,0.03,1,0 +17544,23291979,Brooklyn,Williamsburg,40.71515,-73.93706,Entire home/apt,150,3,2,0.06,1,0 +17545,76596461,Queens,Queens Village,40.70975,-73.73347,Private room,85,1,5,0.14,1,89 +17546,81134987,Manhattan,Kips Bay,40.740990000000004,-73.98139,Entire home/apt,210,3,14,0.39,1,327 +17547,45992029,Manhattan,Harlem,40.82225,-73.94549,Private room,55,1,3,0.08,1,0 +17548,81161047,Brooklyn,Fort Greene,40.69195,-73.97151,Private room,57,7,0,,1,0 +17549,1916501,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95443,Private room,50,1,0,,1,0 +17550,43008736,Brooklyn,Williamsburg,40.7171,-73.9573,Entire home/apt,100,10,0,,1,0 +17551,35775878,Brooklyn,Clinton Hill,40.683659999999996,-73.96563,Private room,65,7,10,0.28,1,0 +17552,26022066,Brooklyn,Midwood,40.61295,-73.95366,Private room,50,1,10,0.3,1,0 +17553,80819921,Queens,Rosedale,40.65218,-73.73498000000001,Private room,70,1,0,,1,0 +17554,80770467,Brooklyn,Bushwick,40.693059999999996,-73.92106,Private room,40,4,1,0.03,1,0 +17555,8539684,Brooklyn,Williamsburg,40.70875,-73.9467,Entire home/apt,250,4,10,0.27,1,0 +17556,177922,Brooklyn,Prospect-Lefferts Gardens,40.65702,-73.96066,Private room,33,14,6,0.17,1,0 +17557,81274648,Brooklyn,Bushwick,40.69677,-73.93027,Private room,46,2,126,3.51,4,80 +17558,78732090,Queens,Long Island City,40.746159999999996,-73.94653000000001,Private room,101,1,0,,1,0 +17559,80040018,Brooklyn,East Flatbush,40.651920000000004,-73.95243,Entire home/apt,76,7,1,0.03,1,0 +17560,79086338,Manhattan,Kips Bay,40.74077,-73.98245,Private room,70,1,1,0.03,1,0 +17561,23672310,Manhattan,Upper West Side,40.80057,-73.96679,Private room,95,4,0,,1,0 +17562,74885349,Brooklyn,Bushwick,40.68365,-73.91069,Entire home/apt,129,2,43,1.2,1,80 +17563,81311292,Brooklyn,Bedford-Stuyvesant,40.682829999999996,-73.94375,Private room,100,1,0,,1,0 +17564,81325020,Brooklyn,Bedford-Stuyvesant,40.67803,-73.92663,Private room,58,2,78,2.2,3,82 +17565,81329032,Brooklyn,Kensington,40.642309999999995,-73.97974,Private room,50,5,0,,1,0 +17566,28345063,Manhattan,Harlem,40.82822,-73.94864,Entire home/apt,76,16,26,0.76,1,31 +17567,48985309,Queens,Ridgewood,40.70183,-73.91145999999999,Private room,35,7,16,0.47,1,247 +17568,65809485,Queens,Flushing,40.74981,-73.82741999999999,Private room,40,7,19,0.84,12,134 +17569,22541573,Manhattan,Upper West Side,40.786640000000006,-73.97275,Entire home/apt,195,30,2,0.06,87,45 +17570,19247677,Manhattan,Hell's Kitchen,40.76518,-73.98406,Private room,80,3,1,0.03,1,0 +17571,50600973,Brooklyn,Bushwick,40.69425,-73.92781,Private room,44,1,157,4.52,7,61 +17572,31829334,Brooklyn,Clinton Hill,40.68421,-73.96631,Entire home/apt,95,30,11,0.31,2,43 +17573,30283594,Manhattan,Midtown,40.76647,-73.98146,Entire home/apt,199,30,0,,121,189 +17574,81430151,Queens,Astoria,40.75528,-73.91628,Private room,55,2,41,1.19,1,278 +17575,7695239,Brooklyn,Williamsburg,40.72128,-73.95782,Entire home/apt,249,3,0,,1,0 +17576,14078461,Manhattan,Harlem,40.82421,-73.95425999999999,Private room,40,7,1,0.03,1,0 +17577,23436785,Queens,Ditmars Steinway,40.77407,-73.90037,Entire home/apt,200,2,11,0.52,1,363 +17578,81453500,Manhattan,Upper West Side,40.80079,-73.96619,Private room,39,4,2,0.05,1,53 +17579,81290973,Brooklyn,Park Slope,40.669579999999996,-73.98623,Entire home/apt,700,1,2,0.06,1,88 +17580,5341236,Brooklyn,Bushwick,40.69477,-73.92376,Entire home/apt,45,5,8,0.22,2,0 +17581,7248303,Brooklyn,Cobble Hill,40.68789,-73.99426,Entire home/apt,140,5,8,0.22,1,0 +17582,27615247,Brooklyn,Midwood,40.62465,-73.964,Entire home/apt,99,5,57,1.57,3,93 +17583,10231747,Manhattan,Hell's Kitchen,40.76404,-73.9926,Private room,175,2,120,3.3,2,308 +17584,33588075,Manhattan,Upper West Side,40.79942,-73.96378,Private room,80,1,0,,1,0 +17585,5700708,Brooklyn,Bedford-Stuyvesant,40.69509,-73.9367,Entire home/apt,75,10,2,0.06,1,0 +17586,79648088,Queens,Sunnyside,40.74582,-73.91233000000001,Private room,50,1,78,2.21,1,218 +17587,80491022,Manhattan,Harlem,40.82295,-73.95066,Entire home/apt,100,5,0,,1,0 +17588,20549983,Manhattan,East Village,40.72712,-73.98705,Entire home/apt,100,3,18,0.5,1,20 +17589,662794,Manhattan,Morningside Heights,40.81171,-73.96351999999999,Entire home/apt,200,5,22,0.61,1,5 +17590,57573249,Manhattan,Harlem,40.82636,-73.93867,Entire home/apt,80,2,3,0.09,2,0 +17591,252059,Brooklyn,Bedford-Stuyvesant,40.69181,-73.94312,Private room,60,5,3,0.08,1,0 +17592,19813391,Brooklyn,Prospect-Lefferts Gardens,40.65761,-73.94646,Entire home/apt,119,1,4,0.11,2,0 +17593,42520485,Manhattan,Harlem,40.829840000000004,-73.94226,Private room,69,2,57,1.57,1,287 +17594,79575143,Brooklyn,Park Slope,40.67198,-73.98278,Entire home/apt,400,5,1,0.03,1,0 +17595,62605071,Brooklyn,Coney Island,40.57476,-74.00101,Private room,95,1,41,1.33,2,158 +17596,23813425,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94513,Private room,45,1,1,0.03,1,0 +17597,87601,Queens,Briarwood,40.71409,-73.82382,Private room,73,4,72,2.11,1,282 +17598,2265770,Manhattan,Harlem,40.80742,-73.95214,Private room,123,4,1,0.1,3,0 +17599,28497808,Manhattan,Upper East Side,40.77758,-73.94641999999999,Entire home/apt,130,4,5,0.15,1,0 +17600,11791986,Manhattan,West Village,40.73511,-74.0037,Entire home/apt,325,3,29,0.84,1,349 +17601,81706032,Manhattan,Washington Heights,40.83484,-73.94009,Entire home/apt,95,4,3,0.09,1,0 +17602,8785272,Queens,Long Island City,40.744659999999996,-73.95274,Entire home/apt,90,7,0,,1,0 +17603,81730337,Brooklyn,Williamsburg,40.70912,-73.94107,Entire home/apt,150,7,0,,1,0 +17604,81747071,Manhattan,Harlem,40.80227,-73.95571,Entire home/apt,165,3,34,0.96,1,0 +17605,52851248,Manhattan,Theater District,40.76324,-73.98459,Entire home/apt,250,10,1,0.03,1,0 +17606,81752328,Manhattan,Upper East Side,40.76927,-73.949,Entire home/apt,130,7,25,0.92,1,0 +17607,81763260,Manhattan,Harlem,40.81106,-73.94467,Entire home/apt,200,3,48,1.4,1,53 +17608,4942658,Manhattan,Harlem,40.82508,-73.93884,Private room,70,1,14,0.38,1,0 +17609,14470110,Brooklyn,Bushwick,40.69997,-73.92083000000001,Entire home/apt,105,2,30,0.84,1,291 +17610,11884239,Brooklyn,Fort Greene,40.69153,-73.97078,Entire home/apt,150,7,2,0.06,1,0 +17611,912993,Manhattan,Morningside Heights,40.80595,-73.95812,Entire home/apt,172,4,0,,1,0 +17612,2737854,Brooklyn,Windsor Terrace,40.650240000000004,-73.9737,Entire home/apt,105,2,1,0.03,1,0 +17613,25330827,Manhattan,West Village,40.73557,-74.00448,Private room,100,2,58,1.62,1,190 +17614,81859848,Manhattan,East Village,40.72783,-73.98904,Entire home/apt,150,3,5,0.14,1,0 +17615,12485770,Manhattan,West Village,40.732009999999995,-74.0032,Entire home/apt,133,30,0,,9,15 +17616,81865543,Manhattan,Inwood,40.868359999999996,-73.92827,Private room,65,4,38,1.04,1,149 +17617,12485770,Manhattan,East Village,40.729,-73.98098,Entire home/apt,125,30,6,0.24,9,150 +17618,2701094,Manhattan,Harlem,40.828520000000005,-73.94583,Entire home/apt,140,7,9,0.25,1,27 +17619,79338533,Manhattan,West Village,40.73103,-74.00905999999999,Entire home/apt,300,3,1,0.03,1,0 +17620,79751520,Queens,Forest Hills,40.71249,-73.84942,Private room,90,1,31,0.9,2,1 +17621,28003040,Queens,Astoria,40.76249,-73.91176,Private room,30,2,56,1.57,1,0 +17622,81888716,Brooklyn,Bushwick,40.69715,-73.93166,Entire home/apt,109,2,117,3.22,1,51 +17623,81891866,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94508,Private room,750,1,0,,1,365 +17624,46643729,Brooklyn,Williamsburg,40.71992,-73.96069,Entire home/apt,146,1,0,,1,0 +17625,2436411,Brooklyn,Bedford-Stuyvesant,40.68278,-73.93427,Entire home/apt,120,2,2,0.06,1,0 +17626,23396858,Brooklyn,Williamsburg,40.712559999999996,-73.94505,Entire home/apt,125,1,3,0.09,1,0 +17627,9371687,Manhattan,East Village,40.72976,-73.98801999999999,Private room,80,6,0,,1,0 +17628,10346084,Queens,Astoria,40.75816,-73.91945,Entire home/apt,110,5,0,,1,0 +17629,3213737,Bronx,Allerton,40.860659999999996,-73.85414,Private room,50,1,8,0.23,1,280 +17630,74011703,Manhattan,Financial District,40.71069,-74.00751,Entire home/apt,200,3,6,0.16,1,0 +17631,4396,Manhattan,East Village,40.72309,-73.98428,Private room,74,1,2,0.05,2,188 +17632,1905137,Brooklyn,Greenpoint,40.7317,-73.95473,Private room,100,2,8,0.23,1,0 +17633,81953225,Bronx,Wakefield,40.8947,-73.85601,Private room,52,3,63,1.78,1,0 +17634,28250,Manhattan,Upper West Side,40.780229999999996,-73.97884,Entire home/apt,135,5,28,0.8,1,24 +17635,32833394,Manhattan,Midtown,40.7542,-73.96862,Private room,90,12,0,,1,70 +17636,81969914,Manhattan,Midtown,40.75248,-73.97332,Private room,200,2,0,,1,0 +17637,4317379,Manhattan,East Village,40.72394,-73.98872,Entire home/apt,165,2,3,0.08,1,0 +17638,7027982,Brooklyn,Bedford-Stuyvesant,40.686370000000004,-73.94476999999999,Private room,75,2,6,0.17,1,0 +17639,171250,Brooklyn,Williamsburg,40.71725,-73.95541,Private room,155,4,3,0.09,1,0 +17640,50410819,Brooklyn,Williamsburg,40.7099,-73.95779,Entire home/apt,144,2,14,0.39,1,0 +17641,65846751,Brooklyn,Sunset Park,40.64025,-74.01735,Private room,25,4,2,0.06,1,0 +17642,82054811,Manhattan,Midtown,40.76518,-73.98210999999999,Private room,500,3,0,,1,0 +17643,276207,Manhattan,Upper West Side,40.79564,-73.97173000000001,Private room,97,50,3,0.09,1,201 +17644,82096395,Manhattan,Hell's Kitchen,40.759809999999995,-73.99118,Private room,150,5,20,0.55,1,178 +17645,82083094,Brooklyn,Canarsie,40.63927,-73.88145,Private room,65,2,13,0.42,2,270 +17646,57994,Brooklyn,Bedford-Stuyvesant,40.680820000000004,-73.91128,Entire home/apt,99,2,142,3.94,1,57 +17647,54060270,Manhattan,Harlem,40.81691,-73.94835,Entire home/apt,100,3,2,0.06,1,0 +17648,68890,Brooklyn,Bedford-Stuyvesant,40.687740000000005,-73.95477,Entire home/apt,250,1,29,0.92,3,347 +17649,6013624,Brooklyn,Bushwick,40.6988,-73.91239,Private room,55,2,0,,1,0 +17650,22541573,Manhattan,Upper West Side,40.78593,-73.97284,Entire home/apt,169,30,1,0.05,87,0 +17651,59529529,Manhattan,Hell's Kitchen,40.762890000000006,-73.99419,Private room,70,1,218,5.98,6,184 +17652,39919088,Manhattan,Tribeca,40.71928,-74.00799,Entire home/apt,1000,2,0,,1,88 +17653,19504744,Manhattan,Upper West Side,40.79405,-73.9658,Shared room,60,1,0,,1,0 +17654,21468261,Brooklyn,Bedford-Stuyvesant,40.680009999999996,-73.94883,Private room,36,2,0,,1,0 +17655,82143608,Manhattan,East Harlem,40.7868,-73.94269,Private room,105,1,209,5.79,2,76 +17656,30498797,Manhattan,Financial District,40.71052,-74.01135,Entire home/apt,315,3,0,,1,0 +17657,82147411,Manhattan,Hell's Kitchen,40.766009999999994,-73.99167,Private room,65,1,43,1.27,1,0 +17658,82148918,Manhattan,Harlem,40.829029999999996,-73.94502,Private room,50,2,55,1.52,1,0 +17659,923465,Brooklyn,Bedford-Stuyvesant,40.68821,-73.93758000000001,Private room,69,5,54,1.55,1,320 +17660,44034761,Manhattan,Upper West Side,40.77906,-73.98507,Entire home/apt,110,1,65,1.8,2,266 +17661,82154865,Manhattan,Upper West Side,40.78935,-73.97462,Entire home/apt,95,30,0,,1,67 +17662,80837608,Brooklyn,Williamsburg,40.715579999999996,-73.93576999999999,Entire home/apt,249,3,26,0.76,1,0 +17663,1002452,Brooklyn,Williamsburg,40.711240000000004,-73.94861,Private room,57,7,14,0.39,2,0 +17664,2119276,Manhattan,Greenwich Village,40.73478,-73.99791,Entire home/apt,150,30,8,0.32,39,275 +17665,49186997,Manhattan,Greenwich Village,40.73305,-73.99373,Entire home/apt,3800,30,2,0.06,1,180 +17666,80686298,Queens,Sunnyside,40.74498,-73.91385,Entire home/apt,99,2,2,0.06,1,0 +17667,82168970,Staten Island,St. George,40.64475,-74.07811,Private room,50,1,0,,1,0 +17668,20471727,Brooklyn,Williamsburg,40.71118,-73.96342,Entire home/apt,370,6,5,0.14,1,0 +17669,16899478,Brooklyn,Williamsburg,40.71241,-73.95354,Private room,55,21,0,,1,0 +17670,48852712,Manhattan,West Village,40.737559999999995,-73.99858,Entire home/apt,147,3,6,0.17,1,0 +17671,1932969,Brooklyn,Bushwick,40.70296,-73.92919,Private room,40,30,0,,1,0 +17672,82179512,Queens,Woodside,40.743990000000004,-73.89817,Entire home/apt,87,1,162,4.45,1,332 +17673,8201520,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95084,Private room,65,2,0,,1,0 +17674,48421955,Brooklyn,Kensington,40.64498,-73.98191,Private room,46,1,19,0.56,1,0 +17675,21410914,Manhattan,Morningside Heights,40.810970000000005,-73.96001,Private room,110,3,68,1.88,6,128 +17676,21410914,Manhattan,Morningside Heights,40.81093,-73.95928,Private room,100,3,81,2.24,6,133 +17677,82208124,Manhattan,Upper West Side,40.77472,-73.98640999999999,Entire home/apt,110,3,33,0.91,2,0 +17678,80479138,Manhattan,Midtown,40.75965,-73.96631,Entire home/apt,140,30,12,0.39,5,68 +17679,11841497,Brooklyn,Bushwick,40.70112,-73.93086,Private room,55,1,3,0.08,1,0 +17680,21003389,Brooklyn,Crown Heights,40.669140000000006,-73.9557,Private room,130,2,20,0.55,1,89 +17681,75919970,Queens,Ditmars Steinway,40.77415,-73.91695,Entire home/apt,125,1,1,0.03,1,0 +17682,3388950,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93319,Private room,73,5,89,2.68,6,94 +17683,30283594,Manhattan,Hell's Kitchen,40.76062,-73.99741,Entire home/apt,479,30,1,0.24,121,185 +17684,22541573,Manhattan,Financial District,40.70358,-74.00854,Entire home/apt,270,30,0,,87,190 +17685,22861607,Brooklyn,Bedford-Stuyvesant,40.68374,-73.95012,Private room,41,1,1,0.03,1,0 +17686,9208421,Manhattan,Lower East Side,40.7209,-73.98822,Private room,85,1,120,3.37,2,29 +17687,37413,Brooklyn,Prospect-Lefferts Gardens,40.660470000000004,-73.95445,Entire home/apt,175,6,3,0.13,1,12 +17688,2700098,Manhattan,Chelsea,40.73938,-74.00001999999999,Entire home/apt,350,3,6,0.17,1,0 +17689,11730237,Brooklyn,Bushwick,40.69095,-73.91909,Entire home/apt,140,3,0,,1,0 +17690,82302838,Manhattan,Inwood,40.86118,-73.92758,Entire home/apt,89,3,6,0.18,1,0 +17691,82307155,Manhattan,Upper East Side,40.77773,-73.94938,Entire home/apt,450,2,110,3.02,1,287 +17692,5143901,Brooklyn,Greenpoint,40.7326,-73.95739,Entire home/apt,10000,5,5,0.16,1,0 +17693,31626212,Manhattan,Theater District,40.75888,-73.98467,Private room,113,2,12,0.39,5,197 +17694,2609335,Brooklyn,Williamsburg,40.713190000000004,-73.95822,Entire home/apt,300,14,3,0.08,1,345 +17695,2776152,Brooklyn,Bushwick,40.699040000000004,-73.91792,Private room,38,1,3,0.08,1,0 +17696,6000480,Brooklyn,Williamsburg,40.71741,-73.93486999999999,Entire home/apt,220,4,4,0.11,1,0 +17697,2962330,Brooklyn,Williamsburg,40.716840000000005,-73.94578,Entire home/apt,250,1,0,,1,0 +17698,15099636,Manhattan,East Village,40.72611,-73.97905,Entire home/apt,120,1,3,0.08,1,0 +17699,7262145,Manhattan,Upper East Side,40.78245,-73.94686,Private room,99,1,1,0.03,1,0 +17700,7958923,Brooklyn,Bedford-Stuyvesant,40.68861,-73.94109,Entire home/apt,115,1,350,9.61,2,137 +17701,23526253,Queens,Ridgewood,40.71164,-73.91879,Private room,30,15,0,,1,0 +17702,63097027,Queens,Jackson Heights,40.75145,-73.88946,Entire home/apt,150,3,4,0.12,1,0 +17703,82367658,Queens,Richmond Hill,40.691959999999995,-73.82029,Private room,38,3,32,0.89,5,212 +17704,82398569,Brooklyn,East Flatbush,40.65214,-73.93126,Entire home/apt,62,2,85,2.36,1,33 +17705,82412007,Manhattan,Gramercy,40.735170000000004,-73.98176,Private room,120,2,3,0.14,1,0 +17706,13499885,Brooklyn,Williamsburg,40.71281,-73.94603000000001,Private room,60,6,2,0.06,2,0 +17707,6034354,Manhattan,Hell's Kitchen,40.75913,-73.98991,Private room,195,1,41,1.19,1,170 +17708,2861768,Manhattan,Harlem,40.81142,-73.95134,Private room,69,15,19,0.54,3,106 +17709,82444858,Manhattan,Hell's Kitchen,40.7672,-73.98456999999999,Entire home/apt,150,3,0,,1,0 +17710,62785237,Brooklyn,Bedford-Stuyvesant,40.68535,-73.94959,Entire home/apt,138,3,95,2.74,1,71 +17711,82469513,Queens,Rockaway Beach,40.58633,-73.80603,Private room,85,1,0,,1,0 +17712,60922011,Brooklyn,Williamsburg,40.708420000000004,-73.95437,Entire home/apt,120,1,21,0.58,1,0 +17713,16156297,Brooklyn,Bushwick,40.69283,-73.90961,Private room,41,2,42,1.16,1,0 +17714,39476034,Queens,Jamaica,40.67088,-73.76671999999999,Private room,159,1,0,,2,363 +17715,82512085,Brooklyn,Bushwick,40.68987,-73.91548,Private room,35,1,1,0.03,1,0 +17716,359424,Manhattan,Morningside Heights,40.80734,-73.9673,Entire home/apt,250,3,1,0.03,1,0 +17717,70834,Brooklyn,Brooklyn Heights,40.69389,-73.99586,Entire home/apt,215,3,4,0.31,1,0 +17718,17927023,Queens,Astoria,40.76963,-73.93041,Entire home/apt,115,2,64,1.77,1,89 +17719,79675471,Manhattan,Upper East Side,40.76858,-73.95345999999999,Entire home/apt,99,2,0,,1,0 +17720,9293730,Manhattan,Upper East Side,40.76911,-73.95694,Entire home/apt,129,30,10,0.35,16,299 +17721,8163438,Queens,Astoria,40.756840000000004,-73.92518000000001,Private room,75,1,0,,1,0 +17722,1287719,Queens,Forest Hills,40.71642,-73.8357,Entire home/apt,200,5,1,0.03,1,0 +17723,4310378,Brooklyn,Clinton Hill,40.695609999999995,-73.96269000000001,Private room,79,3,26,0.75,3,362 +17724,324628,Manhattan,Harlem,40.80403,-73.95125,Entire home/apt,160,30,122,3.52,1,179 +17725,8812035,Brooklyn,Clinton Hill,40.692440000000005,-73.96500999999999,Entire home/apt,130,7,1,0.03,1,0 +17726,6338590,Manhattan,Upper West Side,40.781729999999996,-73.98601,Entire home/apt,70,2,7,0.19,1,0 +17727,82367658,Queens,Richmond Hill,40.69018,-73.82141,Private room,32,2,10,0.32,5,342 +17728,82562435,Queens,Arverne,40.59005,-73.79449,Private room,37,1,114,3.18,2,305 +17729,73247569,Brooklyn,Bushwick,40.7017,-73.93715999999999,Private room,55,1,88,2.43,2,102 +17730,7177483,Manhattan,Harlem,40.8038,-73.95569,Entire home/apt,250,3,10,0.28,1,0 +17731,1279152,Brooklyn,Midwood,40.628029999999995,-73.9675,Entire home/apt,75,3,6,0.17,1,0 +17732,54261444,Manhattan,Greenwich Village,40.72869,-74.00157,Private room,150,6,0,,1,0 +17733,616808,Brooklyn,Williamsburg,40.70778,-73.9464,Private room,42,15,1,0.03,1,0 +17734,82623035,Manhattan,Harlem,40.82611,-73.94407,Entire home/apt,155,2,138,3.79,1,232 +17735,80974010,Bronx,Highbridge,40.83736,-73.92318,Private room,22,3,14,0.39,1,42 +17736,29513490,Brooklyn,Bedford-Stuyvesant,40.6837,-73.93325,Entire home/apt,125,2,4,0.12,1,0 +17737,10312167,Manhattan,Harlem,40.80297,-73.9505,Entire home/apt,99,28,76,2.16,2,296 +17738,1481058,Brooklyn,Greenpoint,40.73273,-73.95764,Private room,60,4,30,0.83,2,0 +17739,18177436,Manhattan,Washington Heights,40.84156,-73.93884,Private room,45,2,3,0.08,1,0 +17740,10812002,Manhattan,Hell's Kitchen,40.76806,-73.9847,Private room,130,3,6,0.17,3,0 +17741,69376422,Manhattan,Washington Heights,40.84198,-73.93816,Private room,40,2,1,0.03,1,0 +17742,9208421,Manhattan,Lower East Side,40.72102,-73.98891,Private room,95,2,16,0.45,2,0 +17743,78529013,Queens,Astoria,40.75951,-73.91963,Private room,55,1,0,,1,0 +17744,7007654,Brooklyn,Sunset Park,40.65976,-73.99191,Private room,35,2,0,,1,0 +17745,1961818,Manhattan,Lower East Side,40.7194,-73.992,Entire home/apt,140,7,1,0.03,1,0 +17746,74906838,Queens,Long Island City,40.753820000000005,-73.91968,Private room,70,3,90,2.6,1,24 +17747,82719112,Manhattan,Upper West Side,40.782959999999996,-73.97743,Entire home/apt,250,1,1,0.03,1,0 +17748,16677326,Manhattan,Chelsea,40.74779,-73.9966,Private room,85,1,51,1.6,12,355 +17749,16677326,Manhattan,Chelsea,40.74798,-73.99531999999999,Private room,85,1,78,2.26,12,360 +17750,3491890,Manhattan,Upper West Side,40.783409999999996,-73.97713,Entire home/apt,106,30,14,0.41,6,242 +17751,82740389,Queens,Ditmars Steinway,40.78028,-73.91476999999999,Entire home/apt,90,3,5,0.14,1,0 +17752,82740724,Manhattan,Midtown,40.752590000000005,-73.97061,Entire home/apt,129,1,159,4.39,1,193 +17753,24678224,Queens,Astoria,40.76482,-73.91996,Private room,100,3,11,0.32,1,0 +17754,21493738,Brooklyn,Crown Heights,40.66957,-73.94804,Entire home/apt,150,3,0,,2,0 +17755,6934546,Manhattan,Tribeca,40.71474,-74.00596,Private room,100,30,0,,1,0 +17756,80560845,Manhattan,Harlem,40.83136,-73.94843,Entire home/apt,100,4,4,0.11,1,0 +17757,6169992,Brooklyn,Williamsburg,40.70282,-73.94287,Private room,60,1,0,,1,0 +17758,73843068,Brooklyn,Williamsburg,40.71822,-73.94454,Entire home/apt,120,4,53,1.46,1,15 +17759,82857184,Queens,Forest Hills,40.730959999999996,-73.84924000000001,Private room,75,2,16,0.61,1,157 +17760,36438456,Manhattan,Washington Heights,40.83625,-73.93915,Entire home/apt,140,2,10,0.28,1,0 +17761,33902900,Brooklyn,Williamsburg,40.70875,-73.94270999999999,Private room,55,2,2,0.06,1,0 +17762,7398239,Brooklyn,Crown Heights,40.66873,-73.9329,Entire home/apt,75,1,0,,1,0 +17763,25718914,Brooklyn,Prospect-Lefferts Gardens,40.659659999999995,-73.95600999999999,Private room,85,2,160,4.44,2,136 +17764,17551179,Manhattan,Midtown,40.76618,-73.98279000000001,Entire home/apt,225,1,0,,1,0 +17765,61649970,Manhattan,Murray Hill,40.747440000000005,-73.97299,Entire home/apt,219,1,56,1.58,2,217 +17766,79840032,Brooklyn,Clinton Hill,40.69048,-73.96576999999999,Entire home/apt,185,2,9,0.25,1,0 +17767,17452232,Queens,Ditmars Steinway,40.771209999999996,-73.9171,Entire home/apt,70,2,9,0.26,1,0 +17768,21466891,Brooklyn,Bushwick,40.68374,-73.90988,Entire home/apt,100,4,85,2.41,2,107 +17769,82921914,Manhattan,Harlem,40.81922,-73.95276,Private room,69,2,121,3.44,3,65 +17770,3003330,Brooklyn,Bedford-Stuyvesant,40.689679999999996,-73.94548,Private room,40,2,104,2.88,3,97 +17771,46712160,Queens,Woodside,40.74071,-73.89186,Private room,55,1,251,9.3,2,31 +17772,34543957,Brooklyn,Park Slope,40.67819,-73.98084,Entire home/apt,150,3,10,0.28,1,0 +17773,20536793,Brooklyn,Park Slope,40.67132,-73.98709000000001,Entire home/apt,113,1,0,,1,0 +17774,82951378,Brooklyn,Crown Heights,40.67285,-73.95734,Private room,45,1,3,0.09,1,0 +17775,24461849,Manhattan,Midtown,40.74569,-73.98592,Entire home/apt,280,3,2,0.07,1,0 +17776,5732761,Manhattan,Upper West Side,40.79657,-73.9624,Private room,120,3,68,1.87,1,0 +17777,82717014,Queens,Sunnyside,40.743790000000004,-73.91277,Private room,90,1,1,0.03,1,173 +17778,1857899,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95468000000001,Entire home/apt,225,2,10,0.29,1,0 +17779,61391963,Manhattan,Kips Bay,40.74096,-73.98055,Entire home/apt,159,30,4,0.12,91,364 +17780,65609488,Manhattan,Tribeca,40.71559,-74.00737,Entire home/apt,650,1,1,0.03,1,0 +17781,82491369,Manhattan,Hell's Kitchen,40.76463,-73.98855,Entire home/apt,275,2,125,3.44,1,146 +17782,66051630,Brooklyn,Clinton Hill,40.68265,-73.96631,Entire home/apt,325,5,80,2.21,1,92 +17783,12151986,Brooklyn,Sunset Park,40.66053,-73.98929,Entire home/apt,359,5,8,0.23,1,0 +17784,7212175,Queens,Forest Hills,40.72143,-73.85521999999999,Entire home/apt,99,1,143,3.96,1,282 +17785,14945903,Manhattan,Upper East Side,40.76749,-73.96392,Entire home/apt,108,3,1,0.03,1,0 +17786,67961258,Brooklyn,Williamsburg,40.70883,-73.93873,Private room,67,1,14,0.4,1,0 +17787,25938509,Brooklyn,Greenpoint,40.72675,-73.94219,Private room,25,7,2,0.06,1,0 +17788,83072717,Manhattan,Chelsea,40.7464,-73.9909,Entire home/apt,190,7,0,,1,0 +17789,83082749,Queens,Ozone Park,40.68345,-73.83378,Entire home/apt,125,1,11,0.31,1,0 +17790,6571805,Manhattan,Upper West Side,40.793009999999995,-73.97544,Entire home/apt,124,2,28,0.79,2,336 +17791,82505349,Brooklyn,Bushwick,40.693870000000004,-73.91341,Private room,100,5,0,,1,0 +17792,83101296,Brooklyn,Williamsburg,40.71675,-73.95725,Private room,60,4,0,,1,0 +17793,78343124,Brooklyn,Crown Heights,40.68035,-73.96239,Private room,55,2,1,0.03,1,0 +17794,4979473,Brooklyn,Prospect Heights,40.679590000000005,-73.96486,Entire home/apt,175,3,0,,1,0 +17795,18113574,Brooklyn,Williamsburg,40.7121,-73.93705,Entire home/apt,200,4,1,0.03,1,0 +17796,24424456,Brooklyn,Flatbush,40.63273,-73.96385,Entire home/apt,200,2,10,0.91,1,167 +17797,8143711,Queens,Ridgewood,40.69968,-73.90697,Private room,60,2,0,,1,0 +17798,83131313,Manhattan,East Village,40.72268,-73.98215,Entire home/apt,175,4,2,0.08,1,16 +17799,8253604,Manhattan,Harlem,40.81557,-73.95295,Private room,88,1,147,4.24,2,165 +17800,79696862,Brooklyn,Flatlands,40.62297,-73.93849,Private room,57,1,7,0.2,1,311 +17801,83156877,Brooklyn,Fort Greene,40.6875,-73.97605,Private room,145,1,0,,1,0 +17802,61391963,Manhattan,Kips Bay,40.74201,-73.97957,Entire home/apt,133,30,7,0.29,91,342 +17803,74331597,Queens,St. Albans,40.68482,-73.76929,Private room,55,5,28,0.81,5,365 +17804,61391963,Manhattan,Upper East Side,40.77148,-73.96110999999999,Entire home/apt,125,30,7,0.21,91,157 +17805,20518366,Brooklyn,Prospect-Lefferts Gardens,40.662040000000005,-73.96051999999999,Entire home/apt,80,5,4,0.11,2,0 +17806,11040921,Brooklyn,Williamsburg,40.715759999999996,-73.95586,Private room,70,2,3,0.08,1,0 +17807,29224381,Bronx,Norwood,40.86853,-73.88301,Entire home/apt,120,10,7,0.2,1,327 +17808,10231747,Manhattan,Hell's Kitchen,40.764920000000004,-73.99128,Private room,150,1,119,3.29,2,316 +17809,83183600,Brooklyn,Fort Greene,40.696259999999995,-73.97276,Entire home/apt,90,3,5,0.14,1,0 +17810,9856492,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95952,Entire home/apt,115,7,9,0.4,1,14 +17811,41870118,Queens,Forest Hills,40.72064,-73.83746,Entire home/apt,2350,365,0,,1,364 +17812,21408053,Manhattan,Harlem,40.82323,-73.9467,Private room,51,2,9,0.25,1,0 +17813,647256,Brooklyn,Park Slope,40.67922,-73.98156999999999,Entire home/apt,200,1,0,,1,0 +17814,10812002,Manhattan,Hell's Kitchen,40.76686,-73.98393,Private room,105,2,3,0.09,3,0 +17815,80479138,Manhattan,Midtown,40.76036,-73.96462,Entire home/apt,225,30,7,0.22,5,321 +17816,50145118,Manhattan,Harlem,40.80914,-73.94363,Private room,89,1,79,2.24,3,0 +17817,76975771,Queens,Maspeth,40.73425,-73.89553000000001,Private room,61,2,24,0.69,1,281 +17818,8338942,Manhattan,Nolita,40.72363,-73.99546,Shared room,70,1,228,6.36,4,103 +17819,82921914,Manhattan,Harlem,40.8197,-73.95326,Private room,69,2,72,2.09,3,72 +17820,14911571,Manhattan,Greenwich Village,40.72738,-74.00018,Private room,79,1,161,4.43,1,125 +17821,48581287,Brooklyn,Bedford-Stuyvesant,40.685829999999996,-73.94112,Entire home/apt,83,1,7,0.43,1,37 +17822,14766250,Brooklyn,Crown Heights,40.66427,-73.95770999999999,Private room,160,2,1,0.03,1,0 +17823,77317167,Brooklyn,Flatbush,40.65126,-73.96388,Shared room,40,1,5,0.15,2,0 +17824,3152934,Brooklyn,Bushwick,40.68758,-73.91320999999999,Private room,50,1,2,0.06,1,0 +17825,82921914,Manhattan,Harlem,40.82097,-73.95473,Private room,45,2,97,2.79,3,101 +17826,165566,Brooklyn,Gowanus,40.68203,-73.98427,Private room,85,1,1,0.03,1,0 +17827,22484243,Brooklyn,Bushwick,40.69647,-73.92474,Entire home/apt,100,3,102,2.82,1,31 +17828,116382,Brooklyn,Crown Heights,40.67023,-73.94078,Private room,57,1,82,2.28,5,356 +17829,32704515,Brooklyn,Greenpoint,40.72914,-73.9567,Entire home/apt,104,1,0,,1,0 +17830,50327977,Brooklyn,Williamsburg,40.7086,-73.94555,Private room,53,2,6,0.17,1,0 +17831,82367658,Queens,Richmond Hill,40.690540000000006,-73.82185,Private room,38,3,19,0.55,5,278 +17832,83403037,Brooklyn,Clinton Hill,40.68477,-73.96757,Entire home/apt,115,10,0,,1,0 +17833,11708912,Brooklyn,Bedford-Stuyvesant,40.68679,-73.957,Entire home/apt,139,1,2,0.06,1,0 +17834,32772480,Brooklyn,Prospect-Lefferts Gardens,40.660109999999996,-73.95965,Entire home/apt,150,3,15,1.46,2,154 +17835,36486481,Brooklyn,East Flatbush,40.65565,-73.93573,Entire home/apt,280,3,3,0.33,1,0 +17836,858359,Manhattan,East Village,40.72441,-73.98683,Entire home/apt,90,5,5,0.14,1,0 +17837,27673980,Queens,Flushing,40.74447,-73.83185999999999,Private room,50,1,60,1.68,8,53 +17838,21889213,Brooklyn,Sunset Park,40.646370000000005,-74.00558000000001,Private room,45,21,0,,1,0 +17839,1558222,Brooklyn,Greenpoint,40.72828,-73.94225,Private room,70,5,0,,3,0 +17840,83476674,Manhattan,Harlem,40.83065,-73.94708,Private room,150,1,1,0.03,1,87 +17841,40060170,Manhattan,Hell's Kitchen,40.76488,-73.98597,Entire home/apt,155,14,75,2.18,1,34 +17842,14833533,Manhattan,East Village,40.73395,-73.98899,Private room,109,5,25,0.72,1,2 +17843,83526094,Brooklyn,Greenpoint,40.73773,-73.95489,Entire home/apt,150,1,12,0.39,1,0 +17844,83523066,Brooklyn,Park Slope,40.67928,-73.97791,Entire home/apt,130,3,103,2.94,2,101 +17845,1419430,Manhattan,Midtown,40.76543,-73.97929,Entire home/apt,275,2,2,0.06,1,0 +17846,14512391,Brooklyn,Greenpoint,40.7205,-73.94125,Entire home/apt,100,1,1,0.05,1,0 +17847,20283580,Brooklyn,Prospect Heights,40.67921,-73.97241,Private room,55,4,0,,1,0 +17848,57509618,Brooklyn,Sunset Park,40.66206,-73.99767,Private room,50,1,0,,1,0 +17849,83549989,Manhattan,NoHo,40.72618,-73.99523,Entire home/apt,215,3,2,0.06,1,0 +17850,75916476,Manhattan,Washington Heights,40.848440000000004,-73.93611,Private room,40,10,2,0.06,1,0 +17851,6296368,Brooklyn,Flatbush,40.638729999999995,-73.95305,Private room,103,2,1,0.03,1,0 +17852,10676792,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92727,Private room,50,2,4,0.11,2,0 +17853,12455431,Manhattan,Little Italy,40.71855,-73.99718,Shared room,500,1,0,,1,0 +17854,39368803,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95708,Private room,54,4,4,0.12,1,0 +17855,5822377,Manhattan,East Village,40.726079999999996,-73.98798000000001,Shared room,79,1,1,0.03,2,0 +17856,83585937,Brooklyn,Crown Heights,40.67151,-73.91733,Private room,50,2,167,4.73,2,162 +17857,82539853,Manhattan,Midtown,40.74205,-73.98382,Private room,140,2,0,,1,0 +17858,1366270,Brooklyn,South Slope,40.664320000000004,-73.97954,Private room,59,4,28,0.8,2,99 +17859,83593559,Brooklyn,Greenpoint,40.72704,-73.94587,Entire home/apt,150,14,0,,1,0 +17860,40312918,Brooklyn,Flatbush,40.65263,-73.95734,Private room,80,5,0,,1,0 +17861,41281138,Brooklyn,Williamsburg,40.71026,-73.95165,Private room,85,3,1,0.03,1,0 +17862,83610543,Brooklyn,Bushwick,40.699740000000006,-73.9338,Entire home/apt,185,2,169,4.77,1,26 +17863,83611052,Brooklyn,Fort Greene,40.69191,-73.97151,Entire home/apt,85,7,2,0.06,1,0 +17864,44502437,Queens,Astoria,40.75687,-73.91597,Entire home/apt,135,2,135,3.8,1,168 +17865,83616984,Queens,Corona,40.745979999999996,-73.85683,Entire home/apt,85,7,60,1.65,1,284 +17866,7245466,Manhattan,Hell's Kitchen,40.7621,-73.99424,Entire home/apt,150,1,2,0.06,1,0 +17867,47988409,Brooklyn,Brooklyn Heights,40.69455,-73.99339,Entire home/apt,75,2,3,0.08,1,0 +17868,61292168,Manhattan,Harlem,40.81217,-73.94691999999999,Entire home/apt,150,3,86,2.43,1,226 +17869,2714018,Manhattan,East Village,40.72191,-73.9813,Entire home/apt,150,5,2,0.06,1,0 +17870,83627325,Queens,Sunnyside,40.74671,-73.91636,Entire home/apt,199,1,7,0.2,4,365 +17871,83632643,Queens,Woodside,40.74389,-73.89325,Entire home/apt,120,1,0,,1,0 +17872,25537819,Queens,Long Island City,40.74612,-73.94247,Private room,88,1,11,0.3,2,0 +17873,83651013,Manhattan,Harlem,40.802640000000004,-73.9554,Private room,99,3,62,1.74,1,0 +17874,254650,Manhattan,Harlem,40.80431,-73.95245,Private room,75,2,3,0.08,2,0 +17875,51501835,Manhattan,Hell's Kitchen,40.76469,-73.99394000000001,Entire home/apt,107,30,8,0.24,31,332 +17876,19462782,Manhattan,Nolita,40.72289,-73.99431,Entire home/apt,400,4,0,,1,0 +17877,1683437,Brooklyn,Crown Heights,40.664770000000004,-73.9506,Entire home/apt,89,5,9,0.25,1,0 +17878,83757347,Manhattan,East Village,40.72379,-73.98224,Entire home/apt,210,1,76,2.1,1,311 +17879,55208833,Manhattan,Lower East Side,40.719440000000006,-73.98441,Entire home/apt,275,5,0,,1,0 +17880,13730809,Brooklyn,East New York,40.66172,-73.8975,Private room,57,5,22,0.64,3,60 +17881,32785916,Brooklyn,Williamsburg,40.71686,-73.95648,Private room,150,3,0,,1,0 +17882,7658111,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93115999999999,Private room,50,2,22,0.63,1,8 +17883,15426862,Manhattan,West Village,40.73444,-74.00365,Entire home/apt,150,2,10,0.29,1,13 +17884,15929157,Brooklyn,East New York,40.674240000000005,-73.88136,Private room,29,30,12,0.38,3,193 +17885,54148881,Brooklyn,Bedford-Stuyvesant,40.681290000000004,-73.9487,Entire home/apt,100,2,1,0.03,1,0 +17886,83786650,Manhattan,Upper East Side,40.760259999999995,-73.96204,Entire home/apt,152,30,1,0.05,8,332 +17887,30283594,Manhattan,SoHo,40.72607,-74.00916,Entire home/apt,822,30,0,,121,342 +17888,4308622,Manhattan,East Village,40.72688,-73.98974,Entire home/apt,350,4,0,,1,0 +17889,83809962,Brooklyn,East Flatbush,40.66248,-73.92855,Private room,45,1,39,1.27,2,365 +17890,83811169,Brooklyn,Flatbush,40.649429999999995,-73.96202,Private room,49,2,41,1.15,1,355 +17891,82805482,Brooklyn,East Flatbush,40.65367,-73.94872,Private room,45,27,6,0.19,1,94 +17892,81939249,Manhattan,East Village,40.72383,-73.98289,Private room,120,2,0,,1,0 +17893,18881301,Brooklyn,Williamsburg,40.71091,-73.96029,Private room,66,5,0,,1,0 +17894,77498973,Manhattan,Harlem,40.802659999999996,-73.95792,Entire home/apt,122,1,41,1.13,1,8 +17895,4300035,Manhattan,Washington Heights,40.85267,-73.93664,Entire home/apt,64,15,1,0.03,1,0 +17896,13951935,Manhattan,Hell's Kitchen,40.7598,-73.99681,Entire home/apt,135,2,8,0.34,1,0 +17897,7656555,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94816999999999,Private room,33,2,11,0.31,1,0 +17898,31747645,Brooklyn,Clinton Hill,40.685829999999996,-73.96434,Private room,70,2,0,,2,0 +17899,14399467,Manhattan,Nolita,40.72203,-73.99498,Private room,320,4,6,0.18,2,0 +17900,83930029,Staten Island,New Dorp Beach,40.564640000000004,-74.1,Entire home/apt,62,1,0,,1,0 +17901,83933642,Manhattan,Theater District,40.7607,-73.98347,Entire home/apt,130,30,1,0.45,1,188 +17902,18595434,Manhattan,East Village,40.72588,-73.98198000000001,Private room,95,1,7,0.19,1,0 +17903,55703198,Queens,Ridgewood,40.70382,-73.90059000000001,Entire home/apt,100,4,0,,1,362 +17904,23502477,Manhattan,Midtown,40.75273,-73.96904,Private room,90,5,0,,1,0 +17905,18873232,Queens,Elmhurst,40.73319,-73.87782,Entire home/apt,150,3,7,0.2,1,261 +17906,57162807,Manhattan,SoHo,40.721779999999995,-73.99741999999999,Entire home/apt,350,5,1,0.03,1,0 +17907,51501835,Manhattan,Hell's Kitchen,40.763000000000005,-73.99452,Entire home/apt,120,30,6,0.19,31,322 +17908,60688035,Manhattan,Midtown,40.75938,-73.97235,Private room,250,3,152,4.25,2,229 +17909,7932698,Brooklyn,Crown Heights,40.67244,-73.94426,Entire home/apt,106,1,30,0.85,1,0 +17910,864735,Queens,Astoria,40.7626,-73.91341,Entire home/apt,65,30,6,0.17,8,201 +17911,83977725,Brooklyn,Vinegar Hill,40.70125,-73.98581999999999,Entire home/apt,175,2,114,3.36,1,154 +17912,42106344,Brooklyn,Williamsburg,40.71723,-73.96703000000001,Entire home/apt,360,5,8,0.26,1,175 +17913,42204606,Brooklyn,Sheepshead Bay,40.60778,-73.94194,Entire home/apt,119,1,12,5.37,1,140 +17914,83996144,Manhattan,Nolita,40.72202,-73.99450999999999,Entire home/apt,85,2,0,,1,0 +17915,84003200,Brooklyn,Flatbush,40.64314,-73.95817,Entire home/apt,189,2,88,3.18,1,255 +17916,57186170,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9447,Private room,68,2,134,3.8,3,245 +17917,75853911,Manhattan,Harlem,40.80299,-73.95713,Entire home/apt,100,1,3,0.09,1,0 +17918,84071996,Manhattan,Washington Heights,40.85519,-73.92705,Private room,40,3,3,0.09,1,171 +17919,5367097,Brooklyn,Williamsburg,40.706579999999995,-73.95000999999999,Private room,45,30,0,,1,0 +17920,64109887,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9575,Private room,38,31,0,,1,0 +17921,83147028,Brooklyn,Crown Heights,40.67011,-73.92544000000001,Private room,100,1,27,0.75,2,365 +17922,265832,Manhattan,Harlem,40.81103,-73.9398,Private room,165,30,9,0.25,1,88 +17923,78870551,Brooklyn,South Slope,40.665620000000004,-73.98935999999999,Private room,80,1,0,,1,0 +17924,76114171,Brooklyn,Park Slope,40.67026,-73.97668,Private room,40,1,2,0.06,1,0 +17925,20971070,Manhattan,Chelsea,40.73819,-73.99835,Entire home/apt,175,27,2,0.06,1,310 +17926,142053,Manhattan,Hell's Kitchen,40.76161,-73.98995,Entire home/apt,99,4,82,2.29,5,228 +17927,84141923,Brooklyn,Crown Heights,40.66856,-73.93929,Private room,50,3,45,1.31,2,0 +17928,84141567,Queens,Maspeth,40.73597,-73.90071999999999,Private room,70,1,2,0.07,3,188 +17929,84146048,Queens,Sunnyside,40.73894,-73.92343000000001,Entire home/apt,85,1,4,0.11,1,0 +17930,17365319,Bronx,Kingsbridge,40.88393,-73.90639,Private room,50,2,14,0.4,2,26 +17931,15838559,Queens,Forest Hills,40.71865,-73.8538,Private room,69,60,6,0.17,4,0 +17932,48100358,Brooklyn,Williamsburg,40.70843,-73.9588,Private room,54,1,148,4.11,3,19 +17933,47260217,Manhattan,Harlem,40.82287,-73.9518,Private room,38,7,2,0.06,1,0 +17934,28700317,Brooklyn,Williamsburg,40.71216,-73.94986,Shared room,300,2,0,,1,0 +17935,14235450,Brooklyn,Sunset Park,40.64775,-74.00858000000001,Private room,41,3,2,0.06,1,0 +17936,8071107,Brooklyn,Williamsburg,40.70582,-73.93696,Entire home/apt,199,2,68,1.96,2,20 +17937,83978541,Manhattan,Midtown,40.75966,-73.96828000000001,Entire home/apt,235,30,23,0.68,1,134 +17938,84303682,Brooklyn,Park Slope,40.67003,-73.97399999999999,Entire home/apt,240,2,144,4.04,1,217 +17939,25537819,Queens,Long Island City,40.74604,-73.94194,Private room,70,1,13,0.36,2,0 +17940,32919123,Manhattan,Chelsea,40.746159999999996,-73.99773,Entire home/apt,250,7,1,0.05,1,0 +17941,84339401,Brooklyn,Bedford-Stuyvesant,40.68543,-73.94570999999999,Entire home/apt,91,1,4,0.13,2,0 +17942,12750945,Manhattan,Chelsea,40.74465,-73.99883,Private room,125,1,10,0.38,4,181 +17943,48100358,Brooklyn,Williamsburg,40.70973,-73.95939,Private room,55,1,147,4.1,3,24 +17944,15579169,Brooklyn,Flatbush,40.65258,-73.96013,Private room,75,1,12,0.56,1,50 +17945,84366617,Brooklyn,Sheepshead Bay,40.58672,-73.96502,Private room,44,3,32,1.24,2,42 +17946,22058409,Manhattan,Financial District,40.70476,-74.01557,Private room,90,1,2,0.06,2,0 +17947,9273392,Brooklyn,Park Slope,40.673559999999995,-73.97742,Entire home/apt,100,28,75,2.1,1,0 +17948,84441066,Manhattan,East Village,40.73038,-73.98458000000001,Private room,170,5,22,0.61,1,143 +17949,4095135,Brooklyn,Crown Heights,40.67033,-73.95949,Entire home/apt,140,2,10,0.28,1,93 +17950,27178707,Brooklyn,Williamsburg,40.71597,-73.95223,Entire home/apt,199,3,2,0.06,1,0 +17951,16098958,Manhattan,Midtown,40.753370000000004,-73.99058000000001,Entire home/apt,156,30,2,0.09,96,189 +17952,16098958,Manhattan,Midtown,40.75298,-73.98874,Entire home/apt,170,30,3,0.1,96,0 +17953,46460278,Manhattan,East Harlem,40.794740000000004,-73.9383,Entire home/apt,110,3,26,0.73,1,5 +17954,33990883,Manhattan,Washington Heights,40.851820000000004,-73.92941,Entire home/apt,115,5,13,0.37,1,0 +17955,84463909,Manhattan,Washington Heights,40.8385,-73.94313000000001,Private room,70,3,15,0.43,1,95 +17956,13410839,Manhattan,Nolita,40.72339,-73.99461,Private room,250,91,55,1.59,1,34 +17957,2119276,Manhattan,East Village,40.72752,-73.98969,Entire home/apt,200,30,6,0.28,39,96 +17958,2856748,Manhattan,Murray Hill,40.74733,-73.97865,Entire home/apt,197,30,0,,49,329 +17959,5581683,Brooklyn,Cobble Hill,40.68759,-73.99376,Private room,82,1,25,0.7,1,0 +17960,12614433,Brooklyn,Bedford-Stuyvesant,40.695170000000005,-73.93808,Entire home/apt,85,1,1,0.03,1,0 +17961,83377687,Queens,Jackson Heights,40.75479,-73.85776,Entire home/apt,69,2,177,5.13,2,105 +17962,84515464,Queens,Astoria,40.7671,-73.91261,Entire home/apt,150,3,64,1.84,1,264 +17963,9111954,Manhattan,East Village,40.72191,-73.98141,Entire home/apt,150,2,69,5.27,1,39 +17964,2432924,Brooklyn,Greenpoint,40.73413,-73.95835,Private room,49,14,0,,1,0 +17965,61391963,Manhattan,Midtown,40.75683,-73.96901,Entire home/apt,165,30,0,,91,147 +17966,72572525,Queens,Astoria,40.76218,-73.92436,Private room,90,3,8,0.23,2,0 +17967,970540,Manhattan,Harlem,40.80546,-73.94601,Entire home/apt,92,2,0,,1,0 +17968,60617669,Manhattan,Midtown,40.7535,-73.97134,Entire home/apt,159,2,12,0.35,4,0 +17969,84584067,Brooklyn,Williamsburg,40.71928,-73.94539,Entire home/apt,280,3,43,1.24,1,335 +17970,84632856,Manhattan,Upper West Side,40.777429999999995,-73.97616,Entire home/apt,325,3,4,0.11,1,0 +17971,64960421,Manhattan,Morningside Heights,40.80408,-73.96347,Entire home/apt,120,3,6,0.17,1,8 +17972,30656279,Manhattan,Hell's Kitchen,40.767379999999996,-73.98743,Private room,61,30,3,0.1,4,180 +17973,51826974,Brooklyn,Canarsie,40.63981,-73.90211,Entire home/apt,80,3,15,0.42,2,365 +17974,12086609,Manhattan,Hell's Kitchen,40.76126,-73.99117,Private room,90,1,11,0.42,1,0 +17975,51826974,Brooklyn,Canarsie,40.63794,-73.8988,Private room,51,3,0,,2,365 +17976,26111584,Manhattan,Upper East Side,40.77601,-73.95441,Entire home/apt,178,2,72,2.07,1,0 +17977,37073646,Manhattan,Chelsea,40.739020000000004,-73.99143000000001,Entire home/apt,1100,3,0,,1,0 +17978,84737060,Brooklyn,Sunset Park,40.66142,-73.99078,Entire home/apt,119,3,63,1.82,1,18 +17979,84738777,Brooklyn,Sunset Park,40.641870000000004,-74.01252,Private room,30,2,1,0.03,1,0 +17980,57517386,Queens,Ridgewood,40.70365,-73.89572,Private room,100,1,0,,1,0 +17981,29170051,Manhattan,East Harlem,40.78986,-73.94848,Private room,100,3,80,2.26,1,112 +17982,84754283,Brooklyn,Coney Island,40.5738,-73.99044,Entire home/apt,100,2,2,0.06,1,0 +17983,77174503,Manhattan,West Village,40.73598,-74.00735999999999,Entire home/apt,250,3,3,0.09,1,328 +17984,5725732,Brooklyn,Kensington,40.640229999999995,-73.9717,Private room,30,2,1,0.03,1,0 +17985,24176743,Manhattan,Midtown,40.74572,-73.98285,Entire home/apt,240,2,5,0.14,1,0 +17986,84779589,Brooklyn,Crown Heights,40.670590000000004,-73.9337,Private room,60,2,147,4.1,3,0 +17987,84779589,Brooklyn,Crown Heights,40.67112,-73.93368000000001,Private room,65,1,149,4.17,3,185 +17988,84779589,Brooklyn,Crown Heights,40.67114,-73.93238000000001,Entire home/apt,140,2,137,3.82,3,234 +17989,25075066,Manhattan,West Village,40.7349,-74.0005,Entire home/apt,265,2,19,0.55,1,5 +17990,70671555,Manhattan,Midtown,40.75043,-73.97243,Private room,86,14,0,,1,346 +17991,79188102,Manhattan,Financial District,40.70525,-74.01045,Private room,145,1,9,0.25,1,90 +17992,31250542,Manhattan,Financial District,40.70657,-74.00549000000001,Entire home/apt,100,2,1,0.03,1,0 +17993,32764610,Manhattan,East Harlem,40.7992,-73.93879,Private room,75,1,0,,1,0 +17994,84810879,Queens,Rosedale,40.6599,-73.73221,Entire home/apt,105,2,29,0.81,3,38 +17995,5242569,Brooklyn,Williamsburg,40.71608,-73.95888000000001,Private room,85,3,1,0.03,1,0 +17996,4325334,Manhattan,East Harlem,40.78992,-73.94888,Entire home/apt,150,2,5,0.14,1,0 +17997,4765305,Manhattan,East Village,40.72166,-73.98326999999999,Private room,100,3,3,0.14,4,157 +17998,12658747,Brooklyn,Williamsburg,40.70936,-73.94708,Private room,90,6,0,,1,0 +17999,55836825,Manhattan,Upper West Side,40.78903,-73.96956,Entire home/apt,150,1,0,,1,0 +18000,27126954,Brooklyn,Midwood,40.62755,-73.96096999999999,Entire home/apt,75,1,1,0.03,1,0 +18001,13225047,Brooklyn,Williamsburg,40.719120000000004,-73.9572,Private room,60,1,53,1.52,3,0 +18002,84902242,Brooklyn,Carroll Gardens,40.67615,-74.00004,Private room,80,3,47,1.4,1,308 +18003,41158436,Brooklyn,Bedford-Stuyvesant,40.69034,-73.9444,Entire home/apt,137,2,99,2.76,1,221 +18004,84914817,Manhattan,Murray Hill,40.74733,-73.97289,Entire home/apt,79,30,5,0.36,2,308 +18005,2590902,Brooklyn,Fort Greene,40.6892,-73.97474,Private room,120,3,92,2.57,1,130 +18006,50663338,Manhattan,West Village,40.732820000000004,-74.00684,Entire home/apt,220,5,1,0.03,1,0 +18007,48910353,Manhattan,West Village,40.735640000000004,-74.00303000000001,Entire home/apt,300,1,158,4.39,1,172 +18008,22541573,Manhattan,Upper West Side,40.78989,-73.97264,Entire home/apt,267,30,0,,87,354 +18009,21792701,Manhattan,Washington Heights,40.836040000000004,-73.94067,Entire home/apt,149,3,0,,1,0 +18010,22541573,Manhattan,Chelsea,40.739290000000004,-73.99914,Entire home/apt,195,30,0,,87,57 +18011,27165264,Manhattan,Chelsea,40.74767,-73.99003,Private room,90,1,9,0.28,1,0 +18012,1805238,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.958,Private room,48,1,68,2.02,2,14 +18013,67252331,Brooklyn,South Slope,40.66414,-73.98507,Entire home/apt,179,2,16,0.45,1,1 +18014,30610258,Brooklyn,Clinton Hill,40.69591,-73.96284,Private room,58,2,1,0.1,1,0 +18015,83176398,Brooklyn,Bushwick,40.7038,-73.92712,Private room,50,14,0,,1,0 +18016,5302735,Manhattan,Harlem,40.807190000000006,-73.95303,Entire home/apt,49,4,137,3.88,2,279 +18017,3404898,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.96004,Entire home/apt,110,2,6,0.17,1,0 +18018,8349334,Manhattan,Morningside Heights,40.80822,-73.96566999999999,Entire home/apt,190,5,9,0.26,1,0 +18019,84765662,Queens,Arverne,40.588429999999995,-73.79905,Entire home/apt,450,3,15,0.42,1,290 +18020,85006429,Manhattan,Harlem,40.824459999999995,-73.94318,Private room,69,1,64,1.81,1,322 +18021,3730998,Manhattan,Chelsea,40.740109999999994,-73.99829,Entire home/apt,250,2,45,1.9,1,90 +18022,22897581,Manhattan,Chelsea,40.74438,-73.99329,Entire home/apt,400,5,0,,1,0 +18023,85013173,Manhattan,Hell's Kitchen,40.76325,-73.98980999999999,Entire home/apt,249,7,100,2.82,1,237 +18024,85021301,Manhattan,East Village,40.72677,-73.98194000000001,Entire home/apt,125,1,2,0.06,1,0 +18025,43268148,Manhattan,Harlem,40.79862,-73.953,Private room,96,2,0,,1,0 +18026,85062355,Queens,Cambria Heights,40.70219,-73.73295999999999,Private room,60,1,78,2.18,1,78 +18027,11796442,Manhattan,West Village,40.73897,-74.0018,Entire home/apt,179,5,32,0.9,1,41 +18028,44702712,Queens,Briarwood,40.70648,-73.81491,Private room,48,1,0,,1,0 +18029,11476179,Manhattan,Chelsea,40.74062,-73.99824,Entire home/apt,155,2,29,0.83,1,8 +18030,35405142,Queens,Sunnyside,40.7372,-73.919,Private room,65,5,12,0.34,1,76 +18031,16962957,Manhattan,Chinatown,40.71655,-73.99203,Entire home/apt,499,1,116,3.24,4,30 +18032,4348719,Manhattan,SoHo,40.72461,-74.01136,Entire home/apt,250,2,2,0.06,1,130 +18033,16283468,Brooklyn,Sunset Park,40.66285,-73.9908,Entire home/apt,120,2,12,0.33,2,27 +18034,1164515,Brooklyn,Bushwick,40.703179999999996,-73.92609,Private room,50,1,64,1.78,2,302 +18035,85172611,Brooklyn,Crown Heights,40.67147,-73.95181,Private room,48,2,2,0.06,1,0 +18036,2974873,Brooklyn,Bushwick,40.69271,-73.91360999999999,Private room,45,30,5,0.15,2,339 +18037,5914717,Brooklyn,Bushwick,40.69822,-73.92918,Private room,50,2,59,1.67,1,0 +18038,32545798,Brooklyn,Williamsburg,40.71378,-73.96257,Private room,75,2,17,0.47,5,0 +18039,21592879,Brooklyn,Brooklyn Heights,40.69976,-73.99313000000001,Private room,65,7,1,0.03,1,0 +18040,85191443,Manhattan,Harlem,40.82228,-73.93894,Private room,90,1,30,0.84,1,0 +18041,85196753,Manhattan,Kips Bay,40.74488,-73.98079,Private room,56,14,0,,1,0 +18042,21544501,Brooklyn,Bushwick,40.687979999999996,-73.90677,Private room,80,1,2,0.06,2,281 +18043,85235313,Manhattan,Greenwich Village,40.73085,-74.00079000000001,Entire home/apt,174,360,0,,1,365 +18044,3620205,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.95989,Private room,43,1,6,0.19,1,0 +18045,37312959,Queens,East Elmhurst,40.77009,-73.87708,Private room,32,1,411,11.4,5,161 +18046,68397685,Brooklyn,Fort Greene,40.693940000000005,-73.97115,Shared room,39,1,12,0.34,1,0 +18047,85288337,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93234,Private room,70,3,0,,1,0 +18048,63361875,Manhattan,Harlem,40.81667,-73.94341999999999,Private room,75,3,6,0.17,1,0 +18049,85313871,Brooklyn,Williamsburg,40.70965,-73.95782,Entire home/apt,130,3,4,0.12,1,0 +18050,18418244,Brooklyn,Bushwick,40.69572,-73.9293,Private room,85,2,3,0.1,1,83 +18051,35910781,Queens,Jackson Heights,40.74935,-73.88332,Shared room,23,1,0,,1,0 +18052,3703456,Brooklyn,Greenpoint,40.72488,-73.94085,Entire home/apt,95,1,39,1.1,2,29 +18053,85337174,Brooklyn,Bushwick,40.68128,-73.90545999999999,Private room,90,2,26,0.73,1,84 +18054,1252743,Brooklyn,Bushwick,40.70175,-73.91525,Private room,45,1,9,0.45,1,0 +18055,74707352,Bronx,Longwood,40.82148,-73.89121999999999,Private room,60,1,8,0.22,1,364 +18056,9293730,Manhattan,Upper East Side,40.770070000000004,-73.9569,Entire home/apt,119,30,12,0.38,16,339 +18057,19134246,Manhattan,Kips Bay,40.745059999999995,-73.97934000000001,Entire home/apt,150,3,10,0.37,1,8 +18058,2928701,Manhattan,East Village,40.72872,-73.98267,Entire home/apt,295,7,12,0.78,2,128 +18059,8133558,Brooklyn,Bushwick,40.69493,-73.9294,Private room,38,15,0,,1,0 +18060,1715674,Brooklyn,Windsor Terrace,40.655440000000006,-73.97491,Private room,130,2,4,0.11,1,0 +18061,85368273,Manhattan,Lower East Side,40.71795,-73.98553000000001,Private room,70,1,1,0.03,1,0 +18062,85375269,Queens,Woodhaven,40.689040000000006,-73.85051999999999,Entire home/apt,71,1,155,4.34,1,173 +18063,71473335,Brooklyn,Prospect-Lefferts Gardens,40.662490000000005,-73.958,Shared room,75,2,1,0.04,1,0 +18064,46667080,Queens,Woodhaven,40.6905,-73.85611999999999,Entire home/apt,85,2,74,2.08,1,52 +18065,85400172,Brooklyn,Crown Heights,40.67564,-73.94798,Private room,67,3,29,0.84,2,365 +18066,76838000,Manhattan,Harlem,40.83117,-73.94846,Entire home/apt,75,1,5,0.14,1,0 +18067,35660592,Queens,Corona,40.75134,-73.85219000000001,Entire home/apt,79,2,83,2.32,6,320 +18068,85470054,Queens,Flushing,40.73851,-73.80105999999999,Entire home/apt,72,1,256,7.1,1,124 +18069,4478946,Manhattan,Midtown,40.75247,-73.97305,Entire home/apt,153,1,1,0.03,1,0 +18070,38294216,Queens,Jamaica,40.686890000000005,-73.80117,Private room,60,7,5,0.27,4,160 +18071,16784527,Manhattan,Upper East Side,40.77711,-73.95366999999999,Entire home/apt,150,5,47,1.69,1,0 +18072,1013329,Manhattan,East Village,40.725640000000006,-73.98772,Entire home/apt,142,3,15,0.71,1,118 +18073,57890723,Queens,Sunnyside,40.74305,-73.9168,Private room,55,2,67,1.9,1,0 +18074,31301220,Brooklyn,Williamsburg,40.71192,-73.9628,Entire home/apt,249,9,19,0.66,1,0 +18075,1699871,Brooklyn,Bushwick,40.68463,-73.90729,Entire home/apt,111,2,73,2.06,3,170 +18076,7440944,Manhattan,East Village,40.72808,-73.98376999999999,Entire home/apt,179,4,13,0.38,1,0 +18077,52862385,Brooklyn,East Flatbush,40.6628,-73.93397,Private room,65,2,24,0.71,3,290 +18078,85546351,Manhattan,Hell's Kitchen,40.760940000000005,-73.994,Private room,63,2,36,3.06,1,59 +18079,4685913,Manhattan,East Village,40.72097,-73.97769,Private room,90,12,1,0.03,2,0 +18080,2688383,Manhattan,Chelsea,40.741209999999995,-73.99995,Entire home/apt,143,4,1,0.03,1,0 +18081,65057965,Manhattan,East Village,40.730579999999996,-73.99002,Private room,85,2,10,0.28,1,306 +18082,618586,Manhattan,Nolita,40.7232,-73.9946,Private room,67,1,86,2.5,1,45 +18083,6885157,Brooklyn,Bedford-Stuyvesant,40.68403,-73.94979000000001,Private room,45,1,87,2.5,15,305 +18084,71211336,Brooklyn,Gowanus,40.679629999999996,-73.98951,Entire home/apt,299,2,0,,1,0 +18085,1876539,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95773,Entire home/apt,150,6,9,0.26,1,0 +18086,30739353,Manhattan,Upper East Side,40.7638,-73.95546999999999,Entire home/apt,175,2,3,0.08,1,310 +18087,85667130,Queens,Ditmars Steinway,40.77943,-73.9117,Private room,90,2,80,2.35,1,350 +18088,84279142,Queens,Forest Hills,40.716879999999996,-73.84238,Entire home/apt,150,1,0,,1,0 +18089,15061780,Brooklyn,Williamsburg,40.71973,-73.94272,Entire home/apt,100,2,3,0.09,1,0 +18090,85669769,Brooklyn,East New York,40.67321,-73.86865,Private room,53,1,85,2.39,1,54 +18091,85684530,Brooklyn,Flatbush,40.647059999999996,-73.9593,Private room,40,5,0,,1,0 +18092,31277975,Brooklyn,Greenpoint,40.73101,-73.95248000000001,Entire home/apt,250,3,80,2.23,1,98 +18093,19538448,Queens,Forest Hills,40.72116,-73.83948000000001,Entire home/apt,115,2,0,,1,0 +18094,12461120,Brooklyn,Williamsburg,40.715309999999995,-73.94693000000001,Private room,85,2,3,0.09,1,0 +18095,1211994,Brooklyn,Flatbush,40.640879999999996,-73.96125,Private room,45,2,1,0.03,1,0 +18096,3602785,Manhattan,Upper East Side,40.766659999999995,-73.95506999999999,Entire home/apt,65,7,1,0.03,1,0 +18097,44454496,Brooklyn,Greenpoint,40.73101,-73.9405,Entire home/apt,160,3,57,1.63,1,314 +18098,8671553,Manhattan,East Harlem,40.79356,-73.94164,Entire home/apt,95,7,0,,1,0 +18099,85734571,Brooklyn,Park Slope,40.68083,-73.97823000000001,Entire home/apt,120,7,0,,1,0 +18100,23688348,Brooklyn,South Slope,40.66548,-73.98025,Entire home/apt,151,2,0,,1,0 +18101,20448276,Manhattan,Hell's Kitchen,40.76367,-73.98912,Private room,98,5,0,,1,0 +18102,18981759,Manhattan,Murray Hill,40.74702,-73.97563000000001,Private room,100,1,11,0.31,1,0 +18103,13616538,Manhattan,Gramercy,40.736999999999995,-73.98231,Private room,74,2,8,0.22,1,0 +18104,2584371,Manhattan,Inwood,40.86531,-73.92725,Private room,50,1,39,1.11,1,1 +18105,84985477,Queens,Ridgewood,40.70153,-73.89706,Entire home/apt,75,3,209,5.87,1,14 +18106,58949132,Manhattan,East Harlem,40.81473,-73.93583000000001,Entire home/apt,150,4,1,0.08,1,0 +18107,21700305,Brooklyn,Prospect-Lefferts Gardens,40.657759999999996,-73.95218,Private room,30,6,1,0.03,1,0 +18108,30175811,Manhattan,Harlem,40.81745,-73.95164,Entire home/apt,200,1,10,0.28,1,0 +18109,4043259,Brooklyn,Greenpoint,40.72521,-73.95575,Private room,67,2,103,2.94,2,126 +18110,702652,Brooklyn,Williamsburg,40.70925,-73.95255,Entire home/apt,153,3,17,0.48,1,31 +18111,13933878,Brooklyn,Williamsburg,40.70937,-73.96128,Private room,75,3,0,,1,0 +18112,29219991,Brooklyn,Williamsburg,40.71555,-73.96325,Private room,98,10,62,1.78,2,211 +18113,2856748,Manhattan,Midtown,40.75546,-73.96454,Entire home/apt,375,30,0,,49,245 +18114,55229297,Manhattan,East Harlem,40.803259999999995,-73.935,Entire home/apt,215,1,49,1.42,1,316 +18115,42150813,Queens,Astoria,40.7684,-73.91762,Private room,60,1,1,0.03,1,0 +18116,85898729,Manhattan,East Village,40.73178,-73.98613,Private room,100,3,12,0.34,1,0 +18117,84339401,Brooklyn,Bedford-Stuyvesant,40.6866,-73.94583,Entire home/apt,131,2,27,0.76,2,96 +18118,1540903,Queens,Ditmars Steinway,40.77487,-73.91196,Entire home/apt,120,1,237,6.62,1,71 +18119,85914840,Queens,Forest Hills,40.71298,-73.83601,Private room,75,1,16,0.46,1,0 +18120,84914817,Manhattan,Murray Hill,40.747370000000004,-73.97407,Entire home/apt,79,29,4,0.42,2,201 +18121,85938655,Manhattan,Hell's Kitchen,40.76439,-73.98943,Private room,120,3,53,1.53,2,197 +18122,20132140,Manhattan,Lower East Side,40.72094,-73.98649,Entire home/apt,228,1,1,0.03,1,0 +18123,62172448,Manhattan,Upper East Side,40.76471,-73.95819,Private room,85,1,2,0.06,2,0 +18124,22860550,Manhattan,Midtown,40.756009999999996,-73.96625,Entire home/apt,115,8,24,0.69,1,196 +18125,85974062,Brooklyn,Williamsburg,40.713390000000004,-73.96369,Entire home/apt,130,1,78,2.17,1,0 +18126,85986280,Manhattan,Upper East Side,40.76848,-73.96014,Entire home/apt,109,1,25,0.75,1,0 +18127,85992351,Manhattan,East Harlem,40.78752,-73.94314,Private room,65,4,0,,1,0 +18128,280693,Brooklyn,Bedford-Stuyvesant,40.68806,-73.95491,Entire home/apt,200,2,13,0.37,1,0 +18129,2856748,Manhattan,Theater District,40.759240000000005,-73.98541,Entire home/apt,560,30,0,,49,356 +18130,4908941,Brooklyn,Williamsburg,40.70698,-73.96193000000001,Entire home/apt,180,4,43,1.22,1,82 +18131,3250450,Queens,Jackson Heights,40.74684,-73.89251999999999,Shared room,35,30,1,0.05,18,280 +18132,2499618,Brooklyn,Bedford-Stuyvesant,40.68569,-73.92549,Entire home/apt,140,5,17,0.49,1,330 +18133,86090561,Manhattan,Upper West Side,40.79919,-73.96249,Private room,110,1,84,2.35,1,301 +18134,61925777,Queens,Maspeth,40.71628,-73.90093,Entire home/apt,75,2,5,0.14,1,0 +18135,17218599,Brooklyn,Bedford-Stuyvesant,40.69249,-73.94298,Private room,50,15,2,0.06,1,0 +18136,80942071,Brooklyn,Bedford-Stuyvesant,40.69484,-73.94615999999999,Private room,89,2,1,0.04,1,365 +18137,61391963,Manhattan,Hell's Kitchen,40.75999,-73.99274,Entire home/apt,175,30,5,0.16,91,363 +18138,1816548,Brooklyn,Bedford-Stuyvesant,40.687740000000005,-73.94866999999999,Private room,65,3,0,,1,0 +18139,13332949,Brooklyn,Kensington,40.63442,-73.97318,Entire home/apt,55,7,0,,1,0 +18140,309088,Brooklyn,Bushwick,40.696329999999996,-73.92143,Entire home/apt,150,3,18,0.53,1,0 +18141,557669,Queens,Woodside,40.746629999999996,-73.89653,Entire home/apt,96,2,1,0.03,1,0 +18142,23033819,Manhattan,Harlem,40.82085,-73.95398,Private room,75,2,0,,1,0 +18143,86182721,Manhattan,Upper West Side,40.78004,-73.98314,Entire home/apt,210,2,11,0.32,1,242 +18144,35605738,Manhattan,East Village,40.727959999999996,-73.98178,Entire home/apt,221,2,78,2.24,1,270 +18145,1756362,Brooklyn,Clinton Hill,40.69488,-73.96618000000001,Entire home/apt,150,4,69,1.93,1,114 +18146,2063794,Manhattan,West Village,40.73778,-74.00287,Entire home/apt,350,2,16,0.47,1,16 +18147,68598597,Manhattan,Harlem,40.82418,-73.94893,Private room,65,1,45,1.3,2,34 +18148,2343858,Brooklyn,Williamsburg,40.71635,-73.94981999999999,Entire home/apt,325,2,87,2.45,1,126 +18149,1534634,Manhattan,NoHo,40.7259,-73.99336,Entire home/apt,407,30,12,0.34,1,120 +18150,86241021,Manhattan,Upper West Side,40.80189,-73.9655,Private room,60,20,4,0.11,1,0 +18151,10580223,Brooklyn,Flatbush,40.65345,-73.9566,Private room,91,1,1,0.03,2,250 +18152,20612628,Brooklyn,Williamsburg,40.7049,-73.92966,Private room,41,1,2,0.06,1,0 +18153,22541573,Manhattan,Hell's Kitchen,40.76297,-73.98588000000001,Entire home/apt,215,30,1,0.05,87,357 +18154,1199690,Brooklyn,Williamsburg,40.70847,-73.94568000000001,Private room,57,2,1,0.03,1,0 +18155,10055751,Brooklyn,Crown Heights,40.674170000000004,-73.96110999999999,Private room,65,30,11,0.31,2,0 +18156,128480,Brooklyn,Bushwick,40.69295,-73.90791999999999,Entire home/apt,149,2,102,4.27,1,256 +18157,75480489,Queens,Ditmars Steinway,40.7708,-73.90035999999999,Private room,70,3,23,0.66,1,365 +18158,57283593,Manhattan,West Village,40.73624,-74.00310999999999,Entire home/apt,290,3,59,1.67,1,256 +18159,37318666,Manhattan,East Harlem,40.79014,-73.94035,Private room,70,1,60,1.74,1,66 +18160,6702100,Brooklyn,Williamsburg,40.71014,-73.95871,Private room,90,1,10,0.28,1,0 +18161,3664605,Manhattan,Upper West Side,40.785579999999996,-73.97704,Entire home/apt,150,4,2,0.06,1,0 +18162,86368554,Manhattan,East Village,40.726459999999996,-73.98498000000001,Private room,100,2,1,0.03,1,0 +18163,80788474,Brooklyn,Bedford-Stuyvesant,40.682320000000004,-73.95308,Entire home/apt,165,3,0,,2,0 +18164,78824908,Brooklyn,Sheepshead Bay,40.58531,-73.93811,Entire home/apt,224,30,2,0.08,1,353 +18165,1815738,Manhattan,Financial District,40.707409999999996,-74.0054,Entire home/apt,238,1,0,,1,0 +18166,10388850,Manhattan,Midtown,40.756370000000004,-73.96338,Entire home/apt,379,20,0,,1,364 +18167,59932595,Manhattan,East Harlem,40.80253,-73.94015999999999,Private room,45,21,0,,1,0 +18168,51162561,Queens,Rockaway Beach,40.586259999999996,-73.81465,Entire home/apt,125,4,1,0.03,1,0 +18169,86397793,Brooklyn,East Flatbush,40.644740000000006,-73.92296999999999,Entire home/apt,49,2,77,2.17,1,264 +18170,7408622,Manhattan,Midtown,40.75083,-73.97151,Entire home/apt,700,5,23,0.68,1,179 +18171,52999390,Brooklyn,East Flatbush,40.66525,-73.92554,Entire home/apt,650,1,3,0.08,1,0 +18172,86415678,Manhattan,Washington Heights,40.858670000000004,-73.92844000000001,Entire home/apt,150,2,42,1.61,1,83 +18173,22926868,Brooklyn,Sunset Park,40.64697,-73.99885,Private room,50,20,46,1.34,3,20 +18174,86510175,Brooklyn,Cypress Hills,40.68139,-73.89034000000001,Private room,55,2,7,0.2,1,0 +18175,746006,Brooklyn,Prospect-Lefferts Gardens,40.662490000000005,-73.95841,Entire home/apt,90,2,3,0.1,1,0 +18176,86513733,Bronx,Van Nest,40.84166,-73.86818000000001,Entire home/apt,425,5,0,,1,363 +18177,2856748,Manhattan,Upper East Side,40.7771,-73.9495,Entire home/apt,200,30,0,,49,365 +18178,86538929,Manhattan,Midtown,40.76566,-73.97748,Entire home/apt,349,2,6,0.17,1,0 +18179,18762580,Manhattan,Financial District,40.70885,-74.01074,Entire home/apt,200,30,0,,1,87 +18180,3605061,Brooklyn,Bushwick,40.69559,-73.90796,Entire home/apt,100,2,152,4.29,1,251 +18181,86560459,Manhattan,East Harlem,40.79068,-73.94944,Entire home/apt,115,2,8,0.23,1,0 +18182,20132009,Manhattan,Chelsea,40.74577,-74.00605999999999,Entire home/apt,150,3,119,3.45,2,58 +18183,86576234,Manhattan,Greenwich Village,40.72854,-74.00275,Private room,100,1,0,,1,0 +18184,344035,Brooklyn,Prospect Heights,40.67824,-73.96966,Private room,55,1,102,2.98,13,281 +18185,25843005,Queens,Long Island City,40.7591,-73.9278,Private room,49,2,105,2.94,3,21 +18186,12087651,Manhattan,Harlem,40.82265,-73.94501,Private room,95,2,44,1.27,1,90 +18187,54986261,Queens,Flushing,40.755390000000006,-73.83171999999999,Private room,75,2,57,1.64,1,335 +18188,3294438,Brooklyn,Bedford-Stuyvesant,40.6853,-73.95758000000001,Shared room,45,2,10,0.29,3,311 +18189,5064742,Manhattan,West Village,40.73342,-74.00362,Entire home/apt,200,2,0,,1,0 +18190,55976102,Manhattan,East Village,40.72835,-73.98503000000001,Entire home/apt,199,5,22,0.62,1,68 +18191,38315339,Manhattan,Upper East Side,40.76282,-73.96734000000001,Entire home/apt,195,1,109,3.21,1,190 +18192,28514966,Manhattan,Financial District,40.70615,-74.00914,Entire home/apt,349,3,38,1.08,1,72 +18193,86681077,Manhattan,Financial District,40.704229999999995,-74.01235,Entire home/apt,270,2,113,3.21,1,11 +18194,2856748,Manhattan,Upper East Side,40.777440000000006,-73.94501,Entire home/apt,230,30,0,,49,284 +18195,16098958,Manhattan,Financial District,40.703790000000005,-74.00946,Entire home/apt,165,30,0,,96,365 +18196,2021231,Brooklyn,Williamsburg,40.71417,-73.94765,Entire home/apt,159,2,1,0.03,1,0 +18197,16098958,Manhattan,Murray Hill,40.74463,-73.9722,Entire home/apt,196,30,1,0.03,96,280 +18198,19793290,Manhattan,Murray Hill,40.74796,-73.97949,Shared room,103,1,3,0.08,1,0 +18199,69093720,Brooklyn,Williamsburg,40.7133,-73.94838,Private room,92,4,18,0.52,1,341 +18200,20852937,Manhattan,Upper East Side,40.773709999999994,-73.95167,Entire home/apt,150,3,37,1.04,1,0 +18201,86786513,Manhattan,Nolita,40.72148,-73.99543,Entire home/apt,294,5,150,4.19,1,105 +18202,60366482,Manhattan,Midtown,40.75095,-73.97115,Entire home/apt,110,4,36,1.05,1,40 +18203,5682956,Bronx,Highbridge,40.84277,-73.92588,Entire home/apt,76,7,40,1.15,1,34 +18204,86077156,Brooklyn,Williamsburg,40.710359999999994,-73.95477,Entire home/apt,180,2,115,3.34,2,82 +18205,86887132,Queens,St. Albans,40.69364,-73.78025,Entire home/apt,100,2,46,1.34,2,361 +18206,49635984,Brooklyn,Crown Heights,40.676520000000004,-73.94859,Entire home/apt,80,7,0,,1,0 +18207,2487882,Brooklyn,Windsor Terrace,40.65092,-73.98054,Entire home/apt,120,5,1,0.09,2,0 +18208,33518883,Manhattan,Hell's Kitchen,40.76086,-73.99146999999999,Private room,90,1,15,0.42,2,0 +18209,12582591,Brooklyn,Prospect-Lefferts Gardens,40.65825,-73.96073,Entire home/apt,130,1,83,2.34,1,0 +18210,86950026,Brooklyn,Prospect-Lefferts Gardens,40.66081,-73.94963,Entire home/apt,84,2,84,2.39,1,211 +18211,84684940,Brooklyn,Flatbush,40.648309999999995,-73.96181,Private room,50,3,98,2.77,2,140 +18212,87041889,Queens,East Elmhurst,40.76777,-73.87733,Entire home/apt,76,2,75,4.39,1,35 +18213,7118541,Manhattan,East Village,40.727140000000006,-73.98668,Entire home/apt,316,3,74,2.19,1,348 +18214,87065585,Queens,Jamaica,40.70796,-73.80117,Entire home/apt,115,2,32,0.91,1,265 +18215,35658806,Brooklyn,Williamsburg,40.71505,-73.95716,Entire home/apt,325,1,2,0.06,1,0 +18216,87073749,Brooklyn,Williamsburg,40.71051,-73.95586999999999,Entire home/apt,160,2,130,3.72,2,69 +18217,87073939,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92284000000001,Private room,47,2,39,1.12,2,51 +18218,576575,Manhattan,Hell's Kitchen,40.76044,-73.99051,Entire home/apt,200,3,9,0.26,1,0 +18219,792365,Brooklyn,Williamsburg,40.716770000000004,-73.94124000000001,Entire home/apt,200,4,9,0.26,1,9 +18220,45204053,Brooklyn,Williamsburg,40.71498,-73.94207,Private room,75,7,12,0.35,2,359 +18221,27186608,Brooklyn,Flatbush,40.64562,-73.96446,Private room,39,3,13,0.38,1,186 +18222,60557711,Manhattan,Financial District,40.70851,-74.00563000000001,Entire home/apt,300,6,3,0.1,1,358 +18223,46164403,Manhattan,Upper West Side,40.793209999999995,-73.97685,Entire home/apt,489,7,8,0.22,1,328 +18224,84810879,Queens,Rosedale,40.65045,-73.74596,Entire home/apt,150,2,3,0.08,3,364 +18225,86209218,Queens,Queens Village,40.71168,-73.74037,Entire home/apt,65,1,152,4.67,1,335 +18226,43438475,Brooklyn,South Slope,40.66847,-73.98893000000001,Entire home/apt,120,4,139,3.98,3,136 +18227,87152012,Manhattan,Hell's Kitchen,40.76249,-73.99103000000001,Private room,80,1,117,3.34,1,0 +18228,483600,Brooklyn,Williamsburg,40.703829999999996,-73.94295,Private room,53,2,40,1.15,1,1 +18229,40405299,Manhattan,Upper West Side,40.77174,-73.98934,Entire home/apt,200,3,16,0.48,1,0 +18230,84141923,Brooklyn,Crown Heights,40.66902,-73.93771,Private room,50,3,100,2.81,2,0 +18231,38179715,Manhattan,Midtown,40.752590000000005,-73.96797,Entire home/apt,150,2,13,0.36,1,69 +18232,87242862,Manhattan,Hell's Kitchen,40.76338,-73.98911,Private room,120,2,154,4.47,1,266 +18233,39241960,Manhattan,Kips Bay,40.741640000000004,-73.98275,Private room,175,2,41,1.18,1,242 +18234,24103270,Manhattan,Harlem,40.82485,-73.94366,Entire home/apt,49,30,11,0.32,1,36 +18235,74331597,Queens,St. Albans,40.686,-73.7691,Private room,59,2,4,0.29,5,180 +18236,4269804,Queens,Ridgewood,40.70717,-73.89395,Private room,79,3,13,0.39,1,64 +18237,6543299,Manhattan,Kips Bay,40.73958,-73.98258,Entire home/apt,195,2,12,0.41,1,0 +18238,14942276,Brooklyn,Williamsburg,40.71932,-73.95649,Entire home/apt,249,3,99,2.87,2,239 +18239,32865595,Brooklyn,Prospect-Lefferts Gardens,40.66291,-73.96257,Private room,53,1,42,1.19,3,337 +18240,87312106,Manhattan,Financial District,40.707,-74.00782,Private room,189,1,22,0.67,1,0 +18241,6762657,Brooklyn,East New York,40.67324,-73.88292,Private room,60,2,38,1.07,2,357 +18242,47901176,Queens,Ridgewood,40.70882,-73.9179,Entire home/apt,135,2,73,2.11,1,345 +18243,87370616,Bronx,Longwood,40.81998,-73.90325,Private room,75,2,110,3.18,2,350 +18244,4803103,Brooklyn,Prospect Heights,40.68224,-73.97301999999999,Private room,60,5,0,,1,18 +18245,5613109,Queens,Astoria,40.7581,-73.91975,Entire home/apt,120,2,13,0.37,1,115 +18246,8108526,Manhattan,East Village,40.73226,-73.98688,Private room,100,5,4,0.17,1,0 +18247,14559352,Brooklyn,Williamsburg,40.71123,-73.96148000000001,Private room,95,3,61,1.73,2,56 +18248,87487508,Manhattan,Chelsea,40.74029,-74.00233,Entire home/apt,185,1,2,0.06,1,0 +18249,38681372,Manhattan,Upper East Side,40.76644,-73.95635,Entire home/apt,99,5,15,0.45,1,0 +18250,11052217,Brooklyn,Williamsburg,40.71358,-73.95429,Entire home/apt,180,4,94,2.72,1,326 +18251,78331155,Manhattan,Midtown,40.74426,-73.9825,Entire home/apt,350,5,24,0.7,1,137 +18252,60995455,Manhattan,Greenwich Village,40.7305,-73.99647,Private room,69,1,4,0.12,1,0 +18253,87521021,Brooklyn,East Flatbush,40.65825,-73.92191,Private room,50,2,41,1.15,1,250 +18254,54438083,Queens,Maspeth,40.72211,-73.90905,Entire home/apt,144,2,113,3.18,3,293 +18255,72607058,Brooklyn,Prospect-Lefferts Gardens,40.65656,-73.95572,Entire home/apt,85,4,9,0.25,1,0 +18256,87537411,Manhattan,Washington Heights,40.83406,-73.94731,Entire home/apt,100,5,13,1.04,1,1 +18257,1483451,Manhattan,West Village,40.729209999999995,-74.00345,Entire home/apt,240,5,52,1.54,1,271 +18258,10055751,Brooklyn,Crown Heights,40.67407,-73.96303,Entire home/apt,125,1,3,0.09,2,0 +18259,8049219,Manhattan,Upper East Side,40.77666,-73.95625,Entire home/apt,165,2,22,0.65,1,0 +18260,37718300,Queens,Rego Park,40.735409999999995,-73.85632,Entire home/apt,145,3,88,2.56,1,321 +18261,84810879,Queens,Rosedale,40.66155,-73.73064000000001,Private room,88,1,0,,3,364 +18262,21697957,Brooklyn,Williamsburg,40.706520000000005,-73.94054,Private room,65,1,1,0.03,1,0 +18263,15235299,Brooklyn,Greenpoint,40.732929999999996,-73.95919,Private room,60,3,52,1.49,2,0 +18264,2370635,Queens,Astoria,40.75868,-73.92615,Entire home/apt,122,2,128,3.65,1,255 +18265,22888115,Manhattan,Washington Heights,40.83613,-73.94471999999999,Private room,65,7,0,,1,0 +18266,14898658,Brooklyn,Kensington,40.64386,-73.98195,Private room,42,1,95,2.69,11,148 +18267,4131257,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95203000000001,Private room,55,6,7,0.54,1,179 +18268,5158569,Brooklyn,Crown Heights,40.6686,-73.93517,Entire home/apt,115,2,7,0.21,1,0 +18269,10022166,Brooklyn,Bushwick,40.69938,-73.93547,Entire home/apt,95,1,9,0.25,1,0 +18270,22194698,Brooklyn,Bedford-Stuyvesant,40.69121,-73.92529,Entire home/apt,113,2,167,4.71,2,167 +18271,11830475,Manhattan,Upper East Side,40.76347,-73.96514,Entire home/apt,185,4,10,0.28,1,329 +18272,87723508,Queens,Glendale,40.698479999999996,-73.89569,Private room,34,30,14,0.41,2,365 +18273,3767367,Manhattan,Upper East Side,40.78255,-73.95123000000001,Private room,80,3,90,2.53,3,323 +18274,31378,Brooklyn,Crown Heights,40.67385,-73.96126,Shared room,50,1,55,1.54,3,60 +18275,7721149,Manhattan,Washington Heights,40.83735,-73.94351,Private room,55,3,89,2.53,1,66 +18276,57272703,Manhattan,Murray Hill,40.74706,-73.97355,Entire home/apt,110,5,2,0.06,1,0 +18277,1528977,Manhattan,Greenwich Village,40.72915,-74.00106,Private room,115,5,65,1.84,1,157 +18278,13547493,Manhattan,Upper East Side,40.78025,-73.95183,Entire home/apt,239,3,17,0.49,2,212 +18279,45225936,Queens,Astoria,40.75593,-73.92584000000001,Private room,63,2,8,0.31,1,0 +18280,9226441,Manhattan,Kips Bay,40.74042,-73.98139,Entire home/apt,295,2,42,1.29,1,81 +18281,6804141,Manhattan,Flatiron District,40.740759999999995,-73.99306999999999,Entire home/apt,425,7,0,,1,363 +18282,43817869,Brooklyn,Bedford-Stuyvesant,40.690870000000004,-73.92952,Private room,125,4,55,1.59,1,0 +18283,9605945,Bronx,Throgs Neck,40.815870000000004,-73.81532,Entire home/apt,175,2,28,0.92,1,36 +18284,8338942,Manhattan,Nolita,40.72245,-73.99416,Shared room,90,1,10,0.28,4,14 +18285,1767228,Brooklyn,Williamsburg,40.70962,-73.9501,Private room,75,3,3,0.09,1,0 +18286,87835557,Queens,Astoria,40.76623,-73.90911,Entire home/apt,99,2,154,4.38,1,283 +18287,1120651,Manhattan,Nolita,40.72413,-73.99355,Private room,118,3,10,0.29,1,0 +18288,23816403,Manhattan,East Harlem,40.788070000000005,-73.944,Private room,75,2,50,1.46,1,0 +18289,4023646,Manhattan,Lower East Side,40.72144,-73.98915,Entire home/apt,105,3,24,0.68,1,0 +18290,60852834,Brooklyn,Greenpoint,40.7294,-73.94977,Private room,56,7,69,1.96,2,163 +18291,32207621,Brooklyn,DUMBO,40.70267,-73.98828,Private room,125,12,24,0.69,1,0 +18292,7977178,Manhattan,SoHo,40.7277,-74.00375,Private room,80,2,8,0.23,3,275 +18293,10282255,Bronx,Port Morris,40.807790000000004,-73.93095,Entire home/apt,110,3,7,0.2,1,42 +18294,21544501,Brooklyn,Bushwick,40.688759999999995,-73.90578000000001,Private room,75,1,24,0.69,2,250 +18295,46015557,Queens,Sunnyside,40.746109999999994,-73.91295,Private room,60,2,15,0.42,1,27 +18296,49620552,Queens,Astoria,40.76933,-73.91165,Private room,55,1,20,0.63,4,252 +18297,39726129,Manhattan,Stuyvesant Town,40.7294,-73.97751,Private room,60,2,2,0.06,1,0 +18298,87967262,Brooklyn,Williamsburg,40.70805,-73.95442,Private room,200,4,9,0.25,1,89 +18299,4597403,Manhattan,Harlem,40.81315,-73.95389,Private room,49,1,13,0.37,1,0 +18300,86786744,Queens,Flushing,40.75842,-73.81996,Entire home/apt,200,2,93,2.68,1,346 +18301,58453451,Brooklyn,East New York,40.67333,-73.8872,Private room,40,2,84,2.45,2,273 +18302,22541573,Manhattan,Murray Hill,40.748290000000004,-73.98040999999999,Entire home/apt,179,30,0,,87,365 +18303,22177259,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.94055,Entire home/apt,75,2,12,0.35,1,41 +18304,48489969,Brooklyn,Bedford-Stuyvesant,40.68796,-73.91991,Private room,45,2,24,0.68,1,5 +18305,3491890,Manhattan,Upper West Side,40.78411,-73.97721,Entire home/apt,245,30,12,0.37,6,245 +18306,40542519,Brooklyn,Prospect Heights,40.676790000000004,-73.96661,Entire home/apt,120,3,36,1.06,1,89 +18307,21467726,Brooklyn,Williamsburg,40.704679999999996,-73.93681,Private room,51,6,5,0.22,2,358 +18308,88043058,Brooklyn,Bedford-Stuyvesant,40.687870000000004,-73.95331999999999,Private room,83,1,110,3.46,4,307 +18309,19877163,Brooklyn,Boerum Hill,40.68316,-73.97952,Private room,55,2,1,0.03,1,0 +18310,88073013,Manhattan,Gramercy,40.73421,-73.98834000000001,Private room,85,2,47,1.32,1,18 +18311,50760546,Manhattan,Kips Bay,40.74439,-73.98111999999999,Entire home/apt,109,30,5,0.15,31,134 +18312,5120169,Brooklyn,Bedford-Stuyvesant,40.68172,-73.95118000000001,Private room,85,2,8,0.23,2,0 +18313,16098958,Manhattan,Gramercy,40.73486,-73.98611,Entire home/apt,179,30,2,0.06,96,345 +18314,21882649,Manhattan,East Village,40.73036,-73.98633000000001,Private room,95,30,7,0.2,1,238 +18315,25599142,Brooklyn,Clinton Hill,40.68634,-73.9661,Entire home/apt,95,2,47,1.34,1,0 +18316,70739054,Brooklyn,Williamsburg,40.71144,-73.96795,Entire home/apt,170,3,87,2.48,1,32 +18317,81065498,Queens,Rockaway Beach,40.58656,-73.81565,Entire home/apt,110,1,75,2.14,1,56 +18318,24897395,Brooklyn,Bedford-Stuyvesant,40.68844,-73.95442,Entire home/apt,111,2,2,0.08,1,0 +18319,20309640,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.94299000000001,Private room,125,1,1,0.03,1,87 +18320,65344210,Brooklyn,Bushwick,40.6866,-73.91221,Private room,34,3,0,,1,0 +18321,9209911,Manhattan,Harlem,40.818529999999996,-73.9472,Private room,54,3,71,2.01,1,15 +18322,9725785,Brooklyn,Williamsburg,40.7103,-73.96833000000001,Private room,79,1,39,1.11,2,152 +18323,5662183,Brooklyn,Williamsburg,40.70786,-73.9503,Private room,80,2,166,4.68,1,8 +18324,72512761,Brooklyn,Greenpoint,40.72226,-73.95044,Private room,89,4,31,4.72,3,0 +18325,35573939,Manhattan,Hell's Kitchen,40.76377,-73.98734,Entire home/apt,175,3,1,0.03,1,0 +18326,3441272,Brooklyn,Bushwick,40.69903,-73.93021,Private room,85,1,188,5.3,5,270 +18327,75506967,Bronx,Claremont Village,40.837959999999995,-73.9016,Private room,38,15,8,0.23,2,24 +18328,2373229,Brooklyn,Bushwick,40.70019,-73.94098000000001,Private room,38,1,97,2.73,2,0 +18329,2373229,Brooklyn,Bedford-Stuyvesant,40.69981,-73.94111,Private room,29,1,63,1.78,2,18 +18330,65354277,Brooklyn,Bushwick,40.69918,-73.91315999999999,Private room,45,2,5,0.14,1,0 +18331,797100,Manhattan,West Village,40.7334,-74.00546,Entire home/apt,229,2,3,0.09,1,67 +18332,59614258,Brooklyn,Williamsburg,40.71208,-73.96256,Entire home/apt,147,2,47,1.34,1,0 +18333,75216989,Queens,Flushing,40.763329999999996,-73.82879,Private room,35,1,61,1.72,4,342 +18334,88314380,Manhattan,Upper East Side,40.76242,-73.96058000000001,Entire home/apt,300,3,0,,1,179 +18335,63365572,Brooklyn,Park Slope,40.67713,-73.97829,Entire home/apt,154,2,143,4.11,1,269 +18336,88334116,Manhattan,West Village,40.73579,-74.00764000000001,Entire home/apt,250,120,2,0.09,1,273 +18337,176332,Brooklyn,Williamsburg,40.72207,-73.95697,Entire home/apt,150,4,10,0.29,1,6 +18338,88352863,Brooklyn,Crown Heights,40.67159,-73.95241999999999,Private room,65,1,6,0.17,1,0 +18339,88329273,Manhattan,Little Italy,40.71725,-73.99811,Entire home/apt,250,1,180,5.07,1,229 +18340,88361314,Brooklyn,Windsor Terrace,40.658229999999996,-73.98059,Entire home/apt,99,4,75,2.16,1,216 +18341,40070700,Brooklyn,Bedford-Stuyvesant,40.69742,-73.94775,Private room,45,8,4,0.11,1,0 +18342,5997660,Manhattan,Chinatown,40.71602,-73.99233000000001,Private room,105,2,11,0.53,1,0 +18343,20302754,Brooklyn,Bushwick,40.69494,-73.91298,Private room,45,3,101,2.89,2,60 +18344,88399191,Manhattan,Flatiron District,40.74041,-73.98933000000001,Entire home/apt,180,3,16,0.47,1,0 +18345,88450280,Queens,Sunnyside,40.74962,-73.91664,Entire home/apt,130,2,111,3.19,1,252 +18346,8116703,Manhattan,Upper East Side,40.77315,-73.95848000000001,Entire home/apt,210,3,0,,1,0 +18347,9667684,Queens,Maspeth,40.72145,-73.90802,Entire home/apt,77,4,93,2.69,1,198 +18348,84260530,Brooklyn,Flatbush,40.63953,-73.96308,Private room,450,1,1,0.03,2,364 +18349,88550022,Manhattan,East Harlem,40.79105,-73.94376,Private room,85,2,123,4.09,1,64 +18350,12442710,Brooklyn,Bushwick,40.69467,-73.93113000000001,Private room,67,3,97,2.75,1,141 +18351,88400958,Queens,Forest Hills,40.71741,-73.8333,Private room,58,2,78,2.22,1,0 +18352,88585692,Brooklyn,Bushwick,40.69641,-73.9252,Private room,149,3,19,0.56,1,363 +18353,425806,Manhattan,Harlem,40.81257,-73.94606,Entire home/apt,150,2,29,0.84,1,0 +18354,88593699,Brooklyn,Bedford-Stuyvesant,40.679840000000006,-73.91150999999999,Private room,80,1,15,0.42,1,189 +18355,71663192,Queens,Flushing,40.748909999999995,-73.82039,Private room,80,1,15,0.43,1,288 +18356,836168,Manhattan,Midtown,40.76455,-73.97959,Entire home/apt,2500,30,4,0.13,11,364 +18357,88626648,Manhattan,Upper East Side,40.76099,-73.96158,Entire home/apt,130,2,11,0.32,1,0 +18358,48113730,Brooklyn,Williamsburg,40.70749,-73.93916,Entire home/apt,150,2,2,0.06,1,0 +18359,57910970,Manhattan,Financial District,40.71097,-74.01397,Entire home/apt,180,1,36,1.05,1,0 +18360,65356318,Manhattan,Lower East Side,40.71891,-73.99095,Entire home/apt,125,4,37,1.05,1,0 +18361,3417321,Manhattan,East Village,40.72935,-73.9871,Private room,150,2,9,0.26,2,0 +18362,6136511,Manhattan,Nolita,40.72057,-73.99462,Private room,89,12,3,0.1,2,332 +18363,31344441,Brooklyn,Williamsburg,40.71346,-73.95689,Shared room,42,1,4,0.12,1,0 +18364,42627213,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91941,Private room,40,3,5,0.14,1,0 +18365,27001949,Brooklyn,Bushwick,40.69514,-73.91903,Private room,70,3,72,2.04,1,155 +18366,23266322,Brooklyn,Williamsburg,40.714940000000006,-73.94651999999999,Entire home/apt,200,90,4,0.4,1,364 +18367,15978364,Manhattan,Hell's Kitchen,40.76395,-73.99006999999999,Private room,64,2,1,0.03,1,0 +18368,3380348,Brooklyn,Bedford-Stuyvesant,40.68545,-73.93074,Private room,75,14,10,0.45,1,341 +18369,2678122,Brooklyn,Williamsburg,40.717290000000006,-73.94927,Entire home/apt,180,4,64,2.0,3,57 +18370,26714887,Brooklyn,Greenpoint,40.72988,-73.95494000000001,Private room,75,3,0,,2,0 +18371,69021484,Manhattan,Chelsea,40.750659999999996,-73.99944,Private room,139,5,120,3.91,1,52 +18372,713764,Manhattan,Hell's Kitchen,40.7632,-73.98875,Private room,149,2,121,3.5,1,70 +18373,78164397,Brooklyn,Williamsburg,40.71347,-73.96452,Private room,85,3,99,3.09,1,19 +18374,42223963,Brooklyn,Flatlands,40.626459999999994,-73.94554000000001,Private room,92,1,2,0.06,1,364 +18375,4400586,Manhattan,East Village,40.72397,-73.98329,Entire home/apt,129,7,10,0.29,1,0 +18376,2024430,Manhattan,East Village,40.72919,-73.97894000000001,Entire home/apt,150,2,1,0.03,1,0 +18377,1825030,Manhattan,Upper East Side,40.7708,-73.95416,Private room,125,1,24,0.7,1,188 +18378,5073448,Manhattan,Nolita,40.721270000000004,-73.99526,Private room,100,4,2,0.32,1,0 +18379,88884610,Manhattan,Hell's Kitchen,40.75987,-73.99008,Entire home/apt,198,3,15,0.43,1,4 +18380,30283594,Manhattan,Hell's Kitchen,40.76082,-73.99937,Entire home/apt,239,30,1,0.05,121,365 +18381,484993,Manhattan,Stuyvesant Town,40.73304,-73.97421,Private room,82,60,0,,1,365 +18382,16419280,Manhattan,East Village,40.72541,-73.97638,Entire home/apt,215,1,76,2.16,1,245 +18383,88945872,Brooklyn,East Flatbush,40.6468,-73.9508,Entire home/apt,100,5,83,2.5,1,31 +18384,88904682,Manhattan,Hell's Kitchen,40.76549,-73.98581999999999,Entire home/apt,180,2,2,0.06,1,2 +18385,30045574,Manhattan,Upper West Side,40.77445,-73.98002,Entire home/apt,150,30,8,0.24,1,328 +18386,88960729,Queens,Woodside,40.74321,-73.89988000000001,Entire home/apt,199,3,169,4.8,1,302 +18387,22246463,Brooklyn,Bushwick,40.7023,-73.92935,Private room,99,2,26,0.76,1,155 +18388,89000911,Queens,Jackson Heights,40.75533,-73.87804,Private room,40,1,81,2.32,2,127 +18389,60102990,Manhattan,West Village,40.73435,-74.0066,Entire home/apt,199,30,32,0.91,1,343 +18390,8616291,Manhattan,Harlem,40.82112,-73.95111999999999,Private room,69,5,80,2.26,2,0 +18391,81673810,Manhattan,Chinatown,40.71539,-73.99091999999999,Entire home/apt,170,4,0,,1,0 +18392,89031106,Brooklyn,Greenpoint,40.72173,-73.94768,Entire home/apt,110,30,4,0.12,4,301 +18393,79641851,Staten Island,Howland Hook,40.630140000000004,-74.17459000000001,Entire home/apt,100,4,20,0.57,1,363 +18394,52040778,Brooklyn,Greenpoint,40.72408,-73.93952,Private room,50,25,0,,1,5 +18395,16098958,Manhattan,Upper West Side,40.794000000000004,-73.96734000000001,Entire home/apt,310,30,1,0.04,96,294 +18396,3441272,Brooklyn,Bushwick,40.69972,-73.93191999999999,Private room,110,1,208,5.89,5,293 +18397,88681982,Queens,Forest Hills,40.732690000000005,-73.85284,Entire home/apt,165,2,37,1.08,1,86 +18398,88001494,Brooklyn,Crown Heights,40.66737,-73.93661,Private room,85,3,55,1.56,3,49 +18399,17466612,Brooklyn,Bensonhurst,40.60909,-73.9769,Private room,65,2,14,0.44,2,82 +18400,52950465,Manhattan,Battery Park City,40.711090000000006,-74.01536999999999,Entire home/apt,149,30,2,0.06,12,281 +18401,64065593,Manhattan,Midtown,40.7538,-73.97139,Entire home/apt,252,2,16,0.49,13,327 +18402,89158733,Manhattan,Two Bridges,40.71073,-73.99311,Private room,130,120,2,0.06,2,229 +18403,89165708,Brooklyn,Crown Heights,40.67238,-73.92781,Private room,80,6,0,,1,358 +18404,87601091,Queens,Flushing,40.77063,-73.8098,Private room,75,2,85,2.42,1,159 +18405,6955481,Brooklyn,Williamsburg,40.719159999999995,-73.95749,Private room,75,5,4,0.14,2,0 +18406,29997245,Brooklyn,Crown Heights,40.67508,-73.9271,Entire home/apt,125,2,70,2.01,1,71 +18407,60535711,Manhattan,Midtown,40.76079,-73.97528,Entire home/apt,650,2,6,0.42,2,363 +18408,8792814,Brooklyn,Bedford-Stuyvesant,40.69486,-73.94525,Entire home/apt,115,1,129,3.78,10,255 +18409,34226735,Brooklyn,Williamsburg,40.71354,-73.95095,Private room,90,2,28,0.82,1,0 +18410,16756301,Manhattan,Chelsea,40.7437,-73.99896,Entire home/apt,249,7,70,2.03,1,266 +18411,37419591,Brooklyn,Clinton Hill,40.6919,-73.96511,Entire home/apt,140,6,9,0.26,1,0 +18412,89196907,Manhattan,Upper East Side,40.7613,-73.96414,Entire home/apt,795,4,26,0.8,1,340 +18413,32446721,Queens,Corona,40.74889,-73.86489,Shared room,27,1,16,0.71,6,364 +18414,5760525,Queens,Long Island City,40.76266,-73.92773000000001,Entire home/apt,105,2,51,1.48,1,208 +18415,22565253,Brooklyn,Fort Hamilton,40.618190000000006,-74.03047,Private room,30,3,23,0.66,4,211 +18416,13143585,Brooklyn,Bushwick,40.69526,-73.92674,Private room,55,4,0,,2,0 +18417,22565253,Brooklyn,Fort Hamilton,40.61838,-74.03227,Private room,65,3,19,0.55,4,337 +18418,22565253,Brooklyn,Fort Hamilton,40.61825,-74.03188,Private room,65,3,42,1.22,4,290 +18419,1017772,Queens,Briarwood,40.71515,-73.8158,Private room,55,2,1,0.03,1,56 +18420,19928013,Manhattan,Greenwich Village,40.73389,-73.99335,Entire home/apt,800,1,0,,1,0 +18421,89211125,Queens,East Elmhurst,40.7572,-73.89569,Entire home/apt,100,3,87,2.52,1,322 +18422,2261995,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94245,Private room,55,1,0,,3,364 +18423,23727216,Brooklyn,Sheepshead Bay,40.60776,-73.95545,Entire home/apt,73,15,2,0.06,1,0 +18424,89361094,Manhattan,East Harlem,40.78672,-73.94869,Entire home/apt,289,2,74,2.09,1,243 +18425,39158104,Brooklyn,Canarsie,40.64562,-73.90961,Private room,75,1,10,0.29,1,162 +18426,26267606,Brooklyn,Prospect Heights,40.67325,-73.96348,Private room,100,3,1,0.05,1,179 +18427,1206310,Brooklyn,Bushwick,40.693690000000004,-73.92421,Entire home/apt,120,10,3,0.09,1,0 +18428,52577963,Queens,Woodhaven,40.69461,-73.8486,Private room,45,5,23,0.66,6,216 +18429,2766755,Manhattan,Harlem,40.80901,-73.95267,Private room,399,3,0,,2,362 +18430,4149263,Brooklyn,Greenpoint,40.73433,-73.95401,Entire home/apt,155,4,31,0.91,1,24 +18431,8552126,Queens,Jamaica,40.66933,-73.77818,Entire home/apt,60,3,60,1.71,2,0 +18432,34264721,Brooklyn,Sheepshead Bay,40.58721,-73.96018000000001,Entire home/apt,100,20,0,,1,364 +18433,44037475,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95966999999999,Shared room,30,25,15,0.43,4,78 +18434,19922104,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.95189,Private room,50,2,0,,1,0 +18435,16098958,Manhattan,Upper West Side,40.79377,-73.96585999999999,Entire home/apt,330,30,1,0.05,96,250 +18436,89523770,Queens,Woodside,40.75328,-73.90855,Entire home/apt,300,2,73,2.14,1,228 +18437,89526812,Queens,St. Albans,40.69654,-73.74893,Private room,65,2,52,1.93,1,78 +18438,2024671,Brooklyn,Williamsburg,40.71459,-73.9468,Entire home/apt,200,10,4,0.12,1,0 +18439,70397297,Brooklyn,Bushwick,40.702690000000004,-73.91426,Entire home/apt,85,3,7,0.2,1,0 +18440,89541786,Brooklyn,Prospect-Lefferts Gardens,40.65831,-73.96075,Entire home/apt,139,30,4,0.11,1,330 +18441,89579683,Brooklyn,Crown Heights,40.6707,-73.94793,Entire home/apt,135,3,39,1.12,1,311 +18442,14942902,Brooklyn,Flatbush,40.63135,-73.9651,Private room,150,5,0,,1,358 +18443,1215853,Manhattan,East Harlem,40.80758,-73.93701999999999,Entire home/apt,140,1,34,0.98,1,170 +18444,22847606,Staten Island,Prince's Bay,40.52211,-74.18028000000001,Entire home/apt,185,2,15,0.44,1,0 +18445,89609176,Queens,Long Island City,40.75542,-73.93294,Entire home/apt,74,5,7,0.2,1,90 +18446,849356,Manhattan,East Village,40.72652,-73.97938,Entire home/apt,162,5,22,0.64,1,156 +18447,89680675,Brooklyn,Bedford-Stuyvesant,40.6909,-73.95333000000001,Entire home/apt,185,5,53,1.53,1,269 +18448,84260530,Brooklyn,Flatbush,40.6462,-73.96114,Shared room,400,1,2,0.06,2,364 +18449,69862540,Manhattan,Washington Heights,40.83885,-73.94161,Entire home/apt,160,3,12,0.36,3,5 +18450,70060476,Manhattan,Hell's Kitchen,40.76328,-73.9928,Entire home/apt,98,60,28,0.82,1,343 +18451,33518883,Manhattan,Hell's Kitchen,40.76106,-73.99148000000001,Private room,95,1,23,0.66,2,0 +18452,22593050,Brooklyn,Prospect-Lefferts Gardens,40.65988,-73.9612,Entire home/apt,59,1,9,0.27,1,288 +18453,25760832,Manhattan,Lower East Side,40.71947,-73.98581,Entire home/apt,200,2,22,0.64,1,4 +18454,1397078,Brooklyn,Boerum Hill,40.68882,-73.98629,Entire home/apt,200,2,2,0.06,1,0 +18455,1834630,Brooklyn,Williamsburg,40.70728,-73.94413,Entire home/apt,100,7,26,0.75,1,1 +18456,83543734,Manhattan,Chinatown,40.71595,-73.98993,Entire home/apt,499,30,70,2.04,1,0 +18457,51446345,Manhattan,Midtown,40.75316,-73.9851,Entire home/apt,189,2,164,4.72,1,206 +18458,89766221,Queens,Flushing,40.7568,-73.83055,Private room,185,2,25,0.71,2,0 +18459,20521058,Manhattan,East Harlem,40.79631,-73.94771999999999,Private room,79,3,28,0.8,1,0 +18460,4548229,Manhattan,Harlem,40.80637,-73.94544,Private room,149,30,84,2.43,4,337 +18461,595368,Manhattan,Upper West Side,40.79224,-73.97408,Entire home/apt,250,30,0,,1,358 +18462,89855730,Manhattan,East Village,40.72661,-73.97894000000001,Private room,105,5,4,0.12,1,0 +18463,86629070,Brooklyn,Bedford-Stuyvesant,40.69168,-73.9406,Private room,45,3,5,0.15,1,220 +18464,89873550,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95188,Entire home/apt,125,3,38,1.1,2,197 +18465,7156036,Brooklyn,Flatbush,40.64528,-73.9612,Private room,95,6,2,0.06,1,249 +18466,89897015,Queens,Ditmars Steinway,40.774429999999995,-73.90758000000001,Entire home/apt,75,1,0,,1,0 +18467,89905737,Manhattan,Washington Heights,40.847229999999996,-73.94045,Private room,30,14,1,0.03,1,0 +18468,40238258,Manhattan,Upper East Side,40.77715,-73.94802,Private room,175,4,7,0.21,1,365 +18469,4120523,Brooklyn,Williamsburg,40.70512,-73.9348,Entire home/apt,149,2,28,0.83,2,2 +18470,30283594,Manhattan,Financial District,40.70782,-74.01525,Entire home/apt,189,30,1,1.0,121,364 +18471,9622750,Manhattan,Kips Bay,40.742020000000004,-73.98031999999999,Private room,95,5,1,0.03,3,0 +18472,77001085,Manhattan,Upper West Side,40.80449,-73.9678,Shared room,61,1,5,0.15,2,0 +18473,9622750,Manhattan,Kips Bay,40.74191,-73.98111999999999,Entire home/apt,190,5,0,,3,0 +18474,8946866,Manhattan,West Village,40.735459999999996,-74.00263000000001,Shared room,80,1,37,1.05,1,0 +18475,27427335,Brooklyn,Greenpoint,40.71937,-73.95331999999999,Private room,99,3,3,0.13,1,0 +18476,10013093,Manhattan,East Village,40.72412,-73.98666999999999,Private room,84,2,1,0.03,1,0 +18477,52441724,Brooklyn,Bushwick,40.69834,-73.92755,Entire home/apt,125,1,19,0.55,1,281 +18478,90034926,Manhattan,Lower East Side,40.71311,-73.98482,Private room,43,1,0,,1,0 +18479,89954209,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95036,Entire home/apt,107,3,82,2.34,1,284 +18480,11302433,Manhattan,Lower East Side,40.71906,-73.98836,Entire home/apt,190,3,9,0.28,1,188 +18481,3155648,Brooklyn,Windsor Terrace,40.65271,-73.97361,Entire home/apt,125,2,24,0.68,1,0 +18482,89852528,Queens,Ridgewood,40.70645,-73.90578000000001,Private room,45,1,38,1.11,1,0 +18483,80771146,Brooklyn,Bushwick,40.696,-73.92964,Private room,65,3,0,,1,0 +18484,22265887,Manhattan,Harlem,40.809329999999996,-73.945,Entire home/apt,174,5,6,0.28,1,8 +18485,42415696,Manhattan,West Village,40.73175,-74.00419000000001,Entire home/apt,170,1,127,3.61,1,1 +18486,2005927,Manhattan,Upper West Side,40.79873,-73.96781999999999,Entire home/apt,200,1,2,0.06,1,0 +18487,1258319,Manhattan,West Village,40.739329999999995,-74.00241,Entire home/apt,250,60,4,0.12,1,0 +18488,4825815,Manhattan,Lower East Side,40.718790000000006,-73.98362,Private room,95,4,9,0.26,1,0 +18489,57944900,Manhattan,Hell's Kitchen,40.76104,-73.98831,Private room,250,2,66,1.94,1,89 +18490,17365319,Bronx,Kingsbridge,40.884440000000005,-73.90583000000001,Private room,80,2,2,0.06,2,220 +18491,77001085,Manhattan,Upper West Side,40.80191,-73.9688,Entire home/apt,160,2,2,0.06,2,0 +18492,9974520,Brooklyn,Greenpoint,40.72804,-73.94599000000001,Private room,45,2,1,0.03,1,0 +18493,90125781,Manhattan,Harlem,40.80534,-73.95647,Entire home/apt,70,21,1,0.03,1,0 +18494,23533897,Brooklyn,Crown Heights,40.67479,-73.9519,Private room,75,1,22,0.63,7,319 +18495,14684457,Brooklyn,Williamsburg,40.71521,-73.96164,Private room,35,3,2,0.06,1,0 +18496,39143718,Brooklyn,Bedford-Stuyvesant,40.68355,-73.95702,Entire home/apt,200,5,21,0.6,2,364 +18497,22886163,Brooklyn,Sunset Park,40.65044,-74.00986,Entire home/apt,95,3,13,0.38,1,11 +18498,10441070,Brooklyn,Greenpoint,40.72038,-73.94233,Entire home/apt,250,4,4,0.12,1,0 +18499,90104417,Staten Island,Tottenville,40.51133,-74.23803000000001,Entire home/apt,275,4,29,0.83,2,313 +18500,65800377,Brooklyn,Bushwick,40.70087,-73.92351,Private room,70,2,90,2.57,3,33 +18501,70769144,Queens,Woodside,40.75105,-73.90151999999999,Private room,30,7,1,0.03,1,0 +18502,90258665,Manhattan,Harlem,40.80742,-73.95205,Entire home/apt,289,3,5,0.53,1,365 +18503,47984525,Manhattan,Upper West Side,40.78783,-73.97421999999999,Entire home/apt,375,1,34,0.98,1,7 +18504,32454701,Manhattan,East Village,40.72824,-73.97824,Entire home/apt,129,1,198,5.63,1,21 +18505,30283594,Manhattan,Midtown,40.76641,-73.98163000000001,Entire home/apt,219,30,0,,121,189 +18506,74471200,Brooklyn,Bushwick,40.69485,-73.92948,Private room,81,1,10,0.29,1,35 +18507,51256572,Manhattan,Hell's Kitchen,40.75797,-73.991,Private room,75,1,2,0.12,1,0 +18508,387756,Manhattan,Chelsea,40.74725,-73.99515,Entire home/apt,250,2,3,0.13,1,358 +18509,10549144,Manhattan,Upper West Side,40.7991,-73.96963000000001,Private room,99,5,42,1.21,2,29 +18510,10549144,Manhattan,Upper West Side,40.80065,-73.96944,Entire home/apt,225,5,18,0.58,2,96 +18511,14935858,Manhattan,Hell's Kitchen,40.75912,-73.98985,Private room,106,1,63,1.84,2,19 +18512,76765350,Brooklyn,Bedford-Stuyvesant,40.68465,-73.95644,Private room,55,5,37,1.16,2,72 +18513,1094833,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92671999999999,Entire home/apt,110,2,0,,1,0 +18514,90270616,Manhattan,Financial District,40.70617,-74.01529000000001,Entire home/apt,279,3,5,0.15,1,0 +18515,2887402,Manhattan,Harlem,40.828959999999995,-73.94799,Entire home/apt,94,1,11,0.31,1,0 +18516,200675,Brooklyn,Clinton Hill,40.68605,-73.96115999999999,Entire home/apt,220,3,12,0.39,1,19 +18517,154866,Brooklyn,Crown Heights,40.67275,-73.94555,Entire home/apt,110,4,75,2.26,1,48 +18518,90453529,Staten Island,South Beach,40.591159999999995,-74.08174,Entire home/apt,275,4,24,0.7,1,127 +18519,90256030,Manhattan,Chelsea,40.74775,-73.99167,Entire home/apt,999,2,1,0.03,1,0 +18520,90477848,Manhattan,Hell's Kitchen,40.76943,-73.9872,Private room,125,1,37,1.06,1,310 +18521,12188270,Brooklyn,Bedford-Stuyvesant,40.685109999999995,-73.95452,Private room,90,3,5,0.15,1,83 +18522,46723457,Manhattan,East Village,40.73048,-73.98689,Entire home/apt,122,5,13,0.42,1,0 +18523,55567227,Manhattan,Harlem,40.829570000000004,-73.94535,Private room,60,3,89,2.59,2,37 +18524,49562545,Brooklyn,Williamsburg,40.70623,-73.94951,Entire home/apt,99,1,187,5.43,2,39 +18525,81274648,Brooklyn,Bushwick,40.69664,-73.92921,Private room,48,2,91,2.6,4,21 +18526,61391963,Manhattan,Greenwich Village,40.728840000000005,-74.00056,Entire home/apt,159,30,7,0.25,91,280 +18527,61391963,Manhattan,Upper East Side,40.76141,-73.96376,Entire home/apt,117,30,7,0.22,91,312 +18528,25642456,Brooklyn,Bushwick,40.68987,-73.92241,Private room,45,1,4,0.34,1,0 +18529,90646927,Manhattan,Kips Bay,40.74496,-73.97867,Private room,100,2,11,2.02,1,20 +18530,45986534,Queens,Astoria,40.767920000000004,-73.91190999999999,Private room,40,4,23,0.73,1,30 +18531,5111513,Manhattan,Chelsea,40.74945,-73.99741999999999,Entire home/apt,175,7,26,0.8,1,188 +18532,83586204,Manhattan,East Harlem,40.792809999999996,-73.93955,Private room,40,1,19,0.9,1,18 +18533,72926334,Brooklyn,Bedford-Stuyvesant,40.684459999999994,-73.92998,Entire home/apt,85,1,113,3.25,3,59 +18534,34161028,Brooklyn,Downtown Brooklyn,40.69858,-73.98595,Private room,100,75,6,0.17,3,0 +18535,30443527,Manhattan,Greenwich Village,40.72936,-73.99911,Entire home/apt,195,4,17,0.49,1,188 +18536,65595344,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93344,Shared room,65,1,3,0.09,1,0 +18537,14433834,Brooklyn,Crown Heights,40.67228,-73.92707,Entire home/apt,250,4,61,1.89,1,324 +18538,83523066,Brooklyn,Park Slope,40.680820000000004,-73.97713,Entire home/apt,170,3,120,3.51,2,96 +18539,6321996,Manhattan,Tribeca,40.71581,-74.00616,Entire home/apt,440,30,1,0.05,1,87 +18540,90765758,Brooklyn,Sunset Park,40.64293,-74.01786,Private room,58,3,106,3.06,1,3 +18541,16205633,Brooklyn,Kensington,40.64007,-73.97067,Private room,45,7,5,0.14,1,343 +18542,10098825,Manhattan,East Harlem,40.78525,-73.94178000000001,Private room,65,1,25,0.72,1,0 +18543,1239272,Brooklyn,Gowanus,40.6702,-73.9896,Entire home/apt,299,2,35,1.02,1,261 +18544,11911230,Manhattan,Harlem,40.82736,-73.95113,Private room,100,1,1,0.11,1,363 +18545,90807417,Manhattan,East Harlem,40.79505,-73.94204,Private room,99,1,14,0.41,1,50 +18546,8525424,Manhattan,Greenwich Village,40.73383,-73.99509,Private room,120,4,2,0.06,1,0 +18547,4548229,Manhattan,Harlem,40.80622,-73.94622,Entire home/apt,149,30,86,2.51,4,220 +18548,7978333,Brooklyn,Greenpoint,40.72976,-73.95189,Entire home/apt,150,2,154,4.5,1,271 +18549,59503891,Queens,Long Island City,40.748290000000004,-73.93253,Entire home/apt,100,2,1,0.03,1,0 +18550,46502890,Queens,Richmond Hill,40.69858,-73.82893,Private room,60,30,1,0.03,2,363 +18551,90839719,Manhattan,Chinatown,40.7149,-73.99063000000001,Entire home/apt,153,3,82,2.42,1,0 +18552,43810721,Brooklyn,Williamsburg,40.71082,-73.95736,Private room,50,1,15,0.44,1,0 +18553,90848714,Brooklyn,Williamsburg,40.713359999999994,-73.96172,Entire home/apt,172,2,20,0.58,1,7 +18554,39648442,Queens,Flushing,40.75005,-73.81145,Entire home/apt,109,1,176,5.07,2,316 +18555,22218694,Manhattan,West Village,40.73455,-74.006,Entire home/apt,180,2,100,2.9,2,344 +18556,597901,Manhattan,Harlem,40.82663,-73.94624,Private room,60,1,55,1.59,1,57 +18557,33403059,Brooklyn,Bushwick,40.699009999999994,-73.93649,Entire home/apt,175,20,11,0.32,3,0 +18558,2964414,Queens,Sunnyside,40.74615,-73.91704,Private room,98,2,1,0.03,1,88 +18559,45247861,Brooklyn,Crown Heights,40.67447,-73.94665,Entire home/apt,150,1,0,,1,0 +18560,50760546,Manhattan,Midtown,40.76552,-73.97661,Entire home/apt,199,29,2,0.07,31,148 +18561,29824461,Manhattan,NoHo,40.726290000000006,-73.99237,Private room,75,2,1,0.03,1,0 +18562,37328457,Queens,Sunnyside,40.742020000000004,-73.92479,Entire home/apt,125,2,122,3.53,1,214 +18563,17938076,Staten Island,Mariners Harbor,40.6363,-74.15911,Private room,200,1,0,,1,365 +18564,91020843,Manhattan,Inwood,40.86316,-73.92627,Shared room,300,1,0,,2,363 +18565,89724008,Manhattan,Harlem,40.81919,-73.9443,Entire home/apt,750,3,0,,1,87 +18566,515095,Brooklyn,Carroll Gardens,40.67954,-73.99935,Private room,100,2,93,2.78,2,74 +18567,5420713,Manhattan,Upper East Side,40.78517,-73.95678000000001,Entire home/apt,225,5,16,0.47,1,364 +18568,91092037,Manhattan,Hell's Kitchen,40.76072,-73.98791999999999,Private room,120,1,3,0.09,1,0 +18569,22935573,Brooklyn,Williamsburg,40.71433,-73.95857,Entire home/apt,295,2,78,2.27,1,309 +18570,24898836,Manhattan,Hell's Kitchen,40.75483,-73.99468,Entire home/apt,160,3,21,0.6,1,3 +18571,91131716,Brooklyn,Bushwick,40.70061,-73.92721,Private room,40,3,2,0.06,1,0 +18572,4613888,Manhattan,Tribeca,40.71705,-74.00935,Entire home/apt,350,1,0,,1,327 +18573,91167002,Manhattan,Hell's Kitchen,40.76388,-73.98874,Private room,110,1,40,1.16,3,345 +18574,52862385,Brooklyn,East Flatbush,40.66271,-73.93498000000001,Private room,43,32,32,0.93,3,345 +18575,751743,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95166,Private room,50,3,59,1.71,1,0 +18576,89532341,Brooklyn,East Flatbush,40.6453,-73.94669,Entire home/apt,85,93,19,0.54,1,89 +18577,91194780,Manhattan,Harlem,40.80048,-73.94864,Private room,56,2,79,2.38,1,56 +18578,9030221,Brooklyn,Prospect-Lefferts Gardens,40.65563,-73.96051999999999,Private room,73,2,137,3.94,1,0 +18579,20872245,Manhattan,Harlem,40.82626,-73.93831,Private room,175,3,37,1.06,1,19 +18580,89985620,Brooklyn,Flatlands,40.62379,-73.92995,Private room,49,2,71,3.1,3,308 +18581,2856748,Manhattan,Upper East Side,40.7608,-73.96136,Entire home/apt,175,30,0,,49,365 +18582,64065593,Manhattan,Midtown,40.75294,-73.9733,Entire home/apt,672,2,23,0.87,13,268 +18583,20134231,Queens,Springfield Gardens,40.66383,-73.764,Private room,44,2,36,1.03,3,357 +18584,4961381,Brooklyn,Clinton Hill,40.684,-73.96368000000001,Private room,130,1,3,0.45,1,299 +18585,1459260,Brooklyn,Bedford-Stuyvesant,40.6907,-73.96019,Entire home/apt,132,4,92,2.69,1,260 +18586,40711894,Queens,Elmhurst,40.73958,-73.88784,Private room,55,1,54,2.14,4,0 +18587,74919443,Manhattan,Kips Bay,40.74207,-73.9824,Entire home/apt,250,1,13,0.37,1,0 +18588,27984357,Manhattan,West Village,40.73316,-74.00782,Entire home/apt,300,4,24,0.7,1,61 +18589,91359302,Brooklyn,Bedford-Stuyvesant,40.68895,-73.92146,Private room,35,1,35,1.0,1,0 +18590,91364768,Manhattan,Harlem,40.827220000000004,-73.9431,Private room,100,4,42,1.37,1,62 +18591,23772724,Manhattan,Upper East Side,40.783159999999995,-73.94662,Entire home/apt,175,30,4,0.14,15,343 +18592,59529529,Manhattan,Hell's Kitchen,40.7619,-73.995,Private room,75,1,205,5.89,6,179 +18593,91292951,Queens,Elmhurst,40.73259,-73.88083,Private room,30,1,0,,1,15 +18594,91381742,Queens,Flushing,40.75577,-73.83263000000001,Private room,60,2,42,1.23,1,355 +18595,12061634,Brooklyn,Sunset Park,40.64737,-74.01357,Private room,47,2,60,1.71,1,4 +18596,91393670,Manhattan,Kips Bay,40.73903,-73.98267,Entire home/apt,200,2,3,0.29,1,0 +18597,91147323,Brooklyn,Bedford-Stuyvesant,40.69918,-73.94513,Private room,60,2,159,4.56,1,153 +18598,45600001,Queens,Flushing,40.7445,-73.83171999999999,Private room,50,1,31,0.91,3,79 +18599,31483654,Brooklyn,Kensington,40.64535,-73.9738,Entire home/apt,100,3,2,0.06,1,0 +18600,56279680,Brooklyn,Prospect-Lefferts Gardens,40.66349,-73.94221999999999,Entire home/apt,80,28,9,0.26,1,219 +18601,3898624,Manhattan,Theater District,40.76112,-73.98473,Private room,125,5,91,2.63,1,143 +18602,7104133,Manhattan,Murray Hill,40.74993,-73.977,Entire home/apt,125,2,32,0.91,1,0 +18603,26538766,Brooklyn,Park Slope,40.6681,-73.97726,Shared room,78,1,46,1.38,2,0 +18604,1705071,Queens,Long Island City,40.74493,-73.94679000000001,Private room,75,1,86,2.63,2,337 +18605,10910171,Queens,Rockaway Beach,40.58634,-73.81867,Entire home/apt,150,1,144,4.13,2,134 +18606,2859516,Manhattan,Lower East Side,40.72163,-73.98715,Private room,100,2,165,4.77,2,2 +18607,35375,Queens,Astoria,40.76137,-73.91109,Entire home/apt,200,2,0,,2,363 +18608,91510178,Manhattan,Inwood,40.86238,-73.92806,Entire home/apt,65,3,0,,1,0 +18609,91522394,Brooklyn,Bedford-Stuyvesant,40.69532,-73.94407,Entire home/apt,145,2,133,3.83,1,178 +18610,424878,Manhattan,Financial District,40.70483,-74.01545,Entire home/apt,180,4,17,0.67,1,203 +18611,42764722,Brooklyn,East Flatbush,40.65446,-73.92613,Shared room,99,100,1,0.03,1,0 +18612,5213766,Brooklyn,Williamsburg,40.70774,-73.94819,Private room,120,2,157,4.54,1,68 +18613,91020843,Manhattan,Inwood,40.86438,-73.92787,Private room,227,1,0,,2,365 +18614,29893675,Manhattan,Harlem,40.82315,-73.93726,Private room,90,3,86,2.47,2,38 +18615,3103656,Brooklyn,Bushwick,40.69174,-73.91141,Private room,99,3,3,0.16,2,332 +18616,34924990,Brooklyn,Greenpoint,40.733740000000004,-73.95617,Private room,55,20,3,0.09,1,0 +18617,89769986,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93696,Private room,55,30,85,2.45,4,232 +18618,70724038,Brooklyn,Williamsburg,40.70525,-73.93281,Private room,80,1,16,0.51,1,0 +18619,89769986,Brooklyn,Bedford-Stuyvesant,40.69784,-73.93694,Private room,40,30,84,2.53,4,284 +18620,61391963,Manhattan,Hell's Kitchen,40.76142,-73.99248,Entire home/apt,133,30,2,0.15,91,4 +18621,61391963,Manhattan,Hell's Kitchen,40.760709999999996,-73.99032,Entire home/apt,175,30,4,0.21,91,138 +18622,91645690,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95885,Entire home/apt,163,2,33,1.08,1,255 +18623,59954257,Manhattan,Gramercy,40.737109999999994,-73.98573,Entire home/apt,250,5,7,0.2,1,0 +18624,864735,Queens,Astoria,40.755390000000006,-73.91709,Entire home/apt,117,30,7,0.23,8,241 +18625,16098958,Manhattan,Upper West Side,40.79371,-73.96708000000001,Entire home/apt,295,30,2,0.06,96,250 +18626,91657065,Manhattan,Harlem,40.8305,-73.9437,Private room,105,2,38,1.09,1,0 +18627,30499687,Bronx,Fieldston,40.89581,-73.89778000000001,Private room,59,2,7,0.21,2,0 +18628,91678787,Manhattan,Inwood,40.86763,-73.91792,Private room,60,3,83,2.39,1,300 +18629,66949758,Queens,Jamaica,40.69961,-73.81264,Entire home/apt,49,1,79,3.01,2,63 +18630,8066318,Brooklyn,Park Slope,40.66894,-73.98516,Entire home/apt,141,4,33,0.96,1,159 +18631,81762491,Brooklyn,Sheepshead Bay,40.58615,-73.94784,Private room,59,1,13,0.38,1,332 +18632,836168,Manhattan,Upper West Side,40.7791,-73.98182,Entire home/apt,3000,30,8,0.24,11,365 +18633,89769986,Brooklyn,Bedford-Stuyvesant,40.695679999999996,-73.93384,Private room,50,30,97,2.79,4,312 +18634,91804427,Manhattan,Harlem,40.82483,-73.95394,Private room,41,14,25,0.75,1,6 +18635,30283594,Manhattan,Hell's Kitchen,40.76025,-73.99811,Entire home/apt,399,30,3,0.1,121,185 +18636,6658730,Brooklyn,Prospect-Lefferts Gardens,40.65549,-73.96183,Entire home/apt,189,3,1,0.03,1,83 +18637,39181402,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95251999999999,Private room,48,3,67,1.95,1,70 +18638,19101984,Brooklyn,Bensonhurst,40.607490000000006,-73.99225,Entire home/apt,49,1,1,0.03,1,0 +18639,11158576,Manhattan,Morningside Heights,40.80429,-73.96499,Entire home/apt,175,2,2,0.06,1,0 +18640,943367,Brooklyn,Greenpoint,40.7272,-73.94374,Private room,55,14,4,0.12,1,17 +18641,91874222,Manhattan,Harlem,40.82475,-73.9507,Private room,53,1,4,0.16,1,0 +18642,948164,Brooklyn,Bushwick,40.7014,-73.91798,Private room,80,2,4,0.12,1,0 +18643,39939354,Manhattan,Midtown,40.75797,-73.97004,Entire home/apt,150,7,29,0.86,1,31 +18644,51550484,Queens,Richmond Hill,40.69621,-73.84532,Private room,67,2,8,0.23,2,337 +18645,91909024,Brooklyn,Clinton Hill,40.68548,-73.96625,Private room,80,4,2,0.06,1,0 +18646,13066224,Brooklyn,Williamsburg,40.71906,-73.95725999999999,Private room,78,1,35,1.01,1,247 +18647,68276808,Queens,Ditmars Steinway,40.773920000000004,-73.91678,Private room,50,2,10,0.46,1,0 +18648,128431,Brooklyn,Bedford-Stuyvesant,40.68112,-73.9302,Entire home/apt,120,3,59,1.73,1,57 +18649,92002479,Brooklyn,Bushwick,40.68891,-73.92084,Private room,75,1,6,0.17,2,0 +18650,6803612,Brooklyn,Bushwick,40.70497,-73.9233,Private room,60,4,3,0.09,1,0 +18651,54892756,Brooklyn,Greenpoint,40.73271,-73.95536,Private room,75,4,1,0.03,1,0 +18652,14438618,Brooklyn,Bedford-Stuyvesant,40.68253,-73.9501,Entire home/apt,99,1,31,0.89,1,345 +18653,8048669,Manhattan,Hell's Kitchen,40.76144,-73.98849,Private room,100,2,16,0.47,1,6 +18654,6049738,Manhattan,East Village,40.730290000000004,-73.98725,Private room,95,4,9,0.26,2,0 +18655,61391963,Manhattan,Upper East Side,40.78321,-73.95645999999999,Entire home/apt,200,30,4,0.21,91,311 +18656,83627325,Queens,Sunnyside,40.746340000000004,-73.9179,Entire home/apt,249,1,6,0.18,4,365 +18657,42691960,Manhattan,Harlem,40.80676,-73.94658000000001,Private room,33,4,9,0.26,2,0 +18658,25543706,Manhattan,Harlem,40.82489,-73.95336999999999,Private room,80,2,93,2.69,1,215 +18659,54743212,Brooklyn,Williamsburg,40.71588,-73.94296999999999,Entire home/apt,160,14,4,0.12,1,0 +18660,43585545,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95004,Private room,50,1,25,2.08,1,28 +18661,92110601,Queens,Sunnyside,40.739670000000004,-73.92367,Private room,50,2,7,0.21,1,0 +18662,19918057,Brooklyn,Prospect-Lefferts Gardens,40.66028,-73.961,Entire home/apt,100,2,1,0.03,1,0 +18663,74179880,Brooklyn,East New York,40.67539,-73.89039,Private room,33,3,101,2.92,8,323 +18664,83147028,Brooklyn,Crown Heights,40.67181,-73.925,Private room,100,1,16,0.46,2,365 +18665,42854068,Brooklyn,Midwood,40.61679,-73.96016,Private room,35,5,0,,1,0 +18666,20092334,Brooklyn,Bushwick,40.705420000000004,-73.92025,Private room,55,15,0,,1,0 +18667,62126843,Brooklyn,Williamsburg,40.71417,-73.94463,Entire home/apt,60,10,1,0.05,1,0 +18668,49704571,Brooklyn,Williamsburg,40.719429999999996,-73.94255,Entire home/apt,89,30,11,0.34,8,144 +18669,92193254,Manhattan,Upper West Side,40.80093,-73.9601,Private room,97,3,96,2.8,1,134 +18670,4064681,Manhattan,East Harlem,40.79834,-73.94761,Entire home/apt,164,1,8,0.23,1,0 +18671,26377263,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95246,Private room,57,30,1,0.03,43,365 +18672,72838963,Queens,Jamaica,40.68358,-73.7967,Entire home/apt,66,1,94,2.71,2,180 +18673,92238446,Queens,St. Albans,40.700520000000004,-73.75184,Private room,400,4,0,,1,365 +18674,47219202,Manhattan,Harlem,40.8222,-73.94323,Entire home/apt,199,2,15,0.58,1,54 +18675,16300594,Brooklyn,Williamsburg,40.716,-73.955,Private room,52,5,57,1.65,3,104 +18676,566200,Brooklyn,Bushwick,40.69951,-73.92848000000001,Private room,70,30,6,0.18,1,0 +18677,950826,Brooklyn,Park Slope,40.66961,-73.97991,Entire home/apt,170,30,17,0.5,1,0 +18678,71379648,Brooklyn,Bushwick,40.68815,-73.91344000000001,Private room,62,3,7,0.22,1,0 +18679,32507569,Manhattan,Midtown,40.75586,-73.96185,Entire home/apt,200,6,23,2.23,1,89 +18680,40223194,Manhattan,Harlem,40.81285,-73.95439,Private room,75,2,3,0.09,1,0 +18681,767764,Manhattan,Hell's Kitchen,40.76688,-73.99401999999999,Entire home/apt,200,3,31,0.94,1,51 +18682,11427836,Brooklyn,Flatbush,40.63825,-73.95654,Entire home/apt,160,2,18,0.52,1,0 +18683,92324633,Manhattan,East Harlem,40.81344,-73.93454,Private room,100,2,7,0.21,1,32 +18684,92325527,Brooklyn,Williamsburg,40.711529999999996,-73.94215,Private room,100,2,124,3.65,1,58 +18685,19544315,Manhattan,Washington Heights,40.83315,-73.94108,Private room,58,1,1,0.03,2,0 +18686,2724990,Brooklyn,Carroll Gardens,40.68182,-73.99208,Entire home/apt,110,10,0,,1,0 +18687,46220101,Brooklyn,Williamsburg,40.7121,-73.9623,Private room,120,3,2,0.23,1,149 +18688,69029231,Queens,Ditmars Steinway,40.78031,-73.91003,Entire home/apt,95,3,89,2.6,1,259 +18689,26759986,Brooklyn,Manhattan Beach,40.58249,-73.95347,Entire home/apt,150,30,2,0.06,1,0 +18690,21426910,Brooklyn,Gravesend,40.59544,-73.97086999999999,Entire home/apt,150,2,145,4.24,2,35 +18691,2140246,Brooklyn,Crown Heights,40.6758,-73.96251,Entire home/apt,95,3,10,0.3,1,188 +18692,16098958,Manhattan,Chelsea,40.742459999999994,-73.9954,Entire home/apt,250,30,1,0.03,96,319 +18693,92441472,Brooklyn,Bedford-Stuyvesant,40.69576,-73.96137,Private room,37,2,1,0.03,1,0 +18694,1385016,Brooklyn,Bushwick,40.704679999999996,-73.92568,Private room,75,5,4,0.12,1,88 +18695,82715129,Brooklyn,Bedford-Stuyvesant,40.69063,-73.93947,Private room,67,2,87,2.51,1,60 +18696,11272233,Brooklyn,Crown Heights,40.67532,-73.93986,Private room,59,1,7,0.2,2,189 +18697,42569610,Brooklyn,Park Slope,40.67861,-73.98066,Entire home/apt,227,30,2,0.06,1,250 +18698,92481239,Manhattan,Upper West Side,40.76938,-73.98689,Entire home/apt,160,3,4,0.28,1,2 +18699,92493393,Staten Island,West Brighton,40.63333,-74.11310999999999,Entire home/apt,125,2,96,2.82,5,362 +18700,14614459,Manhattan,East Harlem,40.78608,-73.94305,Private room,50,3,14,0.41,4,0 +18701,92509632,Brooklyn,Canarsie,40.63949,-73.90585,Entire home/apt,80,2,83,2.42,1,0 +18702,43853650,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95926999999999,Entire home/apt,225,4,112,3.23,1,136 +18703,92520154,Manhattan,Hell's Kitchen,40.7658,-73.98795,Private room,180,1,319,9.24,1,57 +18704,49704571,Brooklyn,Greenpoint,40.721070000000005,-73.943,Entire home/apt,109,30,6,0.2,8,176 +18705,9060571,Manhattan,Upper West Side,40.799859999999995,-73.96415,Private room,100,1,86,2.5,1,34 +18706,49704571,Brooklyn,Williamsburg,40.719840000000005,-73.94303000000001,Entire home/apt,79,30,11,0.35,8,136 +18707,15724675,Queens,Woodside,40.74185,-73.90684,Private room,105,2,9,0.26,2,0 +18708,7917247,Manhattan,Upper East Side,40.77544,-73.95577,Entire home/apt,125,2,102,3.21,1,35 +18709,51550484,Queens,Richmond Hill,40.69416,-73.84698,Private room,47,2,25,1.13,2,152 +18710,40236384,Brooklyn,Prospect-Lefferts Gardens,40.65934,-73.95936999999999,Private room,60,1,19,0.55,2,0 +18711,3599088,Manhattan,Nolita,40.72191,-73.99472,Entire home/apt,120,19,5,0.17,2,0 +18712,3979831,Manhattan,Upper East Side,40.772729999999996,-73.96344,Entire home/apt,195,2,90,2.59,1,134 +18713,90043913,Queens,Astoria,40.77013,-73.92092,Private room,60,2,2,1.22,2,34 +18714,88398053,Manhattan,Greenwich Village,40.72807,-73.99925,Private room,99,2,5,0.15,1,0 +18715,80782387,Manhattan,Gramercy,40.73815,-73.98443,Entire home/apt,300,3,11,0.32,1,0 +18716,40611169,Brooklyn,Carroll Gardens,40.67718,-73.99493000000001,Entire home/apt,250,1,62,1.79,5,178 +18717,1772952,Manhattan,East Village,40.72931,-73.97925,Entire home/apt,105,4,18,0.52,1,0 +18718,30283594,Manhattan,Chelsea,40.744609999999994,-73.992,Entire home/apt,129,30,0,,121,349 +18719,31307789,Queens,Corona,40.74864,-73.85436,Shared room,27,2,16,0.48,2,365 +18720,16978120,Manhattan,Harlem,40.82966,-73.95021,Private room,65,30,7,0.21,2,225 +18721,22388424,Queens,Ridgewood,40.7058,-73.91041,Private room,42,3,6,0.18,2,52 +18722,20707006,Manhattan,East Harlem,40.78962,-73.94837,Private room,100,4,1,0.03,1,0 +18723,9390190,Manhattan,SoHo,40.722809999999996,-73.9987,Private room,120,1,9,0.35,4,89 +18724,1319462,Manhattan,Chinatown,40.71775,-73.99509,Entire home/apt,199,3,19,0.56,2,11 +18725,92690603,Manhattan,Morningside Heights,40.80576,-73.95832,Private room,85,3,49,1.46,1,2 +18726,68082479,Brooklyn,East New York,40.6735,-73.89635,Entire home/apt,135,30,108,3.12,2,206 +18727,24676472,Brooklyn,Brighton Beach,40.577009999999994,-73.96616,Shared room,50,1,1,0.03,1,0 +18728,92720308,Brooklyn,Flatbush,40.640879999999996,-73.96306,Private room,120,1,87,2.53,3,313 +18729,25161779,Brooklyn,Williamsburg,40.711220000000004,-73.95922,Entire home/apt,160,3,2,0.06,1,0 +18730,9390190,Manhattan,SoHo,40.721940000000004,-73.9983,Private room,120,1,25,0.75,4,89 +18731,9390190,Manhattan,SoHo,40.72293,-73.99951999999999,Private room,120,1,24,0.71,4,89 +18732,9390190,Manhattan,SoHo,40.72364,-73.99923000000001,Shared room,100,1,51,1.48,4,82 +18733,17536826,Manhattan,East Village,40.729890000000005,-73.9888,Entire home/apt,270,2,0,,1,0 +18734,12368999,Brooklyn,Clinton Hill,40.68439,-73.96336,Private room,72,1,2,0.06,1,0 +18735,22541573,Manhattan,Upper East Side,40.76356,-73.96082,Entire home/apt,179,30,0,,87,365 +18736,92002479,Brooklyn,Bushwick,40.69018,-73.92166,Private room,72,1,96,3.13,2,365 +18737,77722758,Manhattan,Greenwich Village,40.732929999999996,-73.99846,Entire home/apt,200,1,4,0.12,1,0 +18738,29480857,Brooklyn,Bushwick,40.703520000000005,-73.92971,Private room,48,2,11,0.32,1,0 +18739,92602590,Brooklyn,Bedford-Stuyvesant,40.69042,-73.942,Entire home/apt,95,2,27,0.79,1,0 +18740,46564548,Manhattan,Tribeca,40.7155,-74.00754,Entire home/apt,800,13,2,0.14,1,173 +18741,91280958,Manhattan,SoHo,40.721790000000006,-73.99795,Private room,49,3,1,0.03,1,0 +18742,20480059,Brooklyn,Fort Greene,40.69218,-73.97138000000001,Private room,65,4,48,1.38,3,0 +18743,43599290,Manhattan,SoHo,40.72198,-74.00296,Private room,129,2,26,0.76,2,89 +18744,60968776,Brooklyn,Williamsburg,40.70812,-73.94003000000001,Private room,113,3,27,0.78,1,37 +18745,48630747,Queens,Flushing,40.72363,-73.80285,Entire home/apt,100,1,197,5.81,1,342 +18746,39543399,Brooklyn,Park Slope,40.67171,-73.97606999999999,Entire home/apt,175,3,29,0.85,1,282 +18747,9977688,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92412,Entire home/apt,575,4,6,0.19,1,179 +18748,18198110,Brooklyn,Bushwick,40.704609999999995,-73.92296999999999,Entire home/apt,135,2,6,0.17,1,0 +18749,74974718,Manhattan,Midtown,40.75015,-73.97081999999999,Private room,200,5,41,1.2,1,333 +18750,92333417,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94943,Entire home/apt,152,3,132,4.13,2,321 +18751,92872782,Queens,Jackson Heights,40.75495,-73.87774,Entire home/apt,140,2,115,3.34,1,298 +18752,90864500,Brooklyn,Sunset Park,40.65348,-74.00255,Entire home/apt,800,1,1,0.04,1,364 +18753,4611487,Manhattan,Upper East Side,40.76749,-73.95470999999999,Private room,95,4,101,2.94,1,49 +18754,49704571,Brooklyn,Greenpoint,40.72043,-73.94253,Entire home/apt,80,30,8,0.26,8,152 +18755,493093,Manhattan,Chelsea,40.75122,-73.99658000000001,Entire home/apt,215,3,88,2.59,1,200 +18756,92963740,Brooklyn,Sunset Park,40.66148,-73.98942,Entire home/apt,140,2,83,2.4,2,7 +18757,51843917,Manhattan,East Harlem,40.79853,-73.93772,Entire home/apt,110,29,9,0.26,1,35 +18758,64161144,Manhattan,East Harlem,40.815059999999995,-73.93567,Entire home/apt,100,2,9,0.26,1,0 +18759,50374022,Brooklyn,Williamsburg,40.712540000000004,-73.96410999999999,Private room,100,3,2,0.06,2,0 +18760,92986768,Brooklyn,Navy Yard,40.698029999999996,-73.97205,Entire home/apt,94,3,5,0.14,1,0 +18761,3274903,Queens,Sunnyside,40.73825,-73.92919,Private room,76,3,9,0.97,1,112 +18762,20616761,Queens,Sunnyside,40.74473,-73.91334,Entire home/apt,150,2,51,1.48,1,329 +18763,39942789,Manhattan,East Village,40.73001,-73.98464,Entire home/apt,195,2,48,1.41,1,344 +18764,10737943,Manhattan,Upper East Side,40.77819,-73.94596999999999,Private room,49,25,5,0.15,10,284 +18765,92067070,Manhattan,Midtown,40.76419,-73.98053,Entire home/apt,500,1,5,0.15,1,361 +18766,26434803,Brooklyn,Bushwick,40.69924,-73.91261,Private room,45,10,1,0.03,2,0 +18767,27673980,Queens,Flushing,40.7459,-73.83298,Private room,50,1,54,1.56,8,78 +18768,17540607,Manhattan,East Village,40.72088,-73.97825,Entire home/apt,295,4,2,0.09,1,0 +18769,93044732,Brooklyn,Bedford-Stuyvesant,40.69328,-73.95447,Private room,65,1,3,0.09,1,0 +18770,93044932,Manhattan,Chelsea,40.75005,-73.99898,Entire home/apt,90,1,80,2.32,1,73 +18771,9030453,Manhattan,Harlem,40.81172,-73.94456,Private room,71,5,6,0.18,2,305 +18772,322716,Brooklyn,Crown Heights,40.671620000000004,-73.95009,Entire home/apt,155,7,19,0.56,5,333 +18773,16795575,Queens,Flushing,40.75338,-73.82342,Private room,40,1,6,0.17,2,0 +18774,32597915,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93094,Entire home/apt,50,2,4,0.12,1,0 +18775,93148942,Brooklyn,Bushwick,40.69945,-73.92771,Private room,50,1,9,0.26,2,0 +18776,30283594,Manhattan,Midtown,40.76556,-73.98196999999999,Entire home/apt,199,30,1,0.05,121,189 +18777,40222216,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92598000000001,Entire home/apt,136,2,7,2.84,1,255 +18778,49704571,Brooklyn,Williamsburg,40.71906,-73.94394,Entire home/apt,80,30,10,0.32,8,97 +18779,84403365,Manhattan,Upper East Side,40.781940000000006,-73.94791,Private room,65,1,1,0.04,1,0 +18780,83611652,Brooklyn,Park Slope,40.67915,-73.98156999999999,Entire home/apt,200,1,4,0.15,1,20 +18781,7128634,Brooklyn,Crown Heights,40.67541,-73.95221,Entire home/apt,148,2,16,0.49,1,0 +18782,34252002,Manhattan,Nolita,40.72204,-73.99705,Private room,100,2,10,0.29,1,0 +18783,7675569,Brooklyn,Bushwick,40.69983,-73.92981,Private room,90,2,5,0.15,1,0 +18784,21327336,Brooklyn,Boerum Hill,40.68475,-73.97986,Entire home/apt,239,2,10,0.29,1,11 +18785,2909294,Manhattan,Chinatown,40.715340000000005,-73.99918000000001,Entire home/apt,150,1,23,1.42,1,14 +18786,4289248,Manhattan,East Village,40.72891,-73.98868,Entire home/apt,300,2,22,0.64,1,8 +18787,15310997,Manhattan,Midtown,40.76505,-73.97856999999999,Entire home/apt,125,30,3,0.09,9,0 +18788,45748188,Manhattan,Morningside Heights,40.81231,-73.95858,Private room,60,2,20,0.59,1,0 +18789,91466201,Manhattan,Harlem,40.80697,-73.945,Entire home/apt,200,3,25,0.73,1,89 +18790,93316008,Queens,Ridgewood,40.70925,-73.91124,Private room,50,5,2,0.06,1,280 +18791,20912275,Manhattan,Inwood,40.86541,-73.92106,Private room,75,5,0,,1,0 +18792,92720308,Brooklyn,Flatbush,40.64028,-73.96095,Private room,100,1,134,3.95,3,307 +18793,93335548,Queens,Ridgewood,40.699009999999994,-73.90168,Entire home/apt,50,3,111,3.21,1,65 +18794,93339266,Queens,Long Island City,40.75253,-73.9315,Entire home/apt,150,2,0,,1,0 +18795,24140532,Brooklyn,Bedford-Stuyvesant,40.69385,-73.94413,Private room,50,3,86,2.57,4,0 +18796,93373413,Manhattan,Midtown,40.75735,-73.96438,Entire home/apt,198,2,22,0.64,1,8 +18797,30283594,Manhattan,Chelsea,40.74615,-73.99181999999999,Entire home/apt,109,30,0,,121,184 +18798,1352304,Queens,Rockaway Beach,40.58664,-73.81295,Entire home/apt,200,3,24,0.71,1,131 +18799,93392260,Brooklyn,East New York,40.67257,-73.89081999999999,Private room,55,5,27,0.81,2,42 +18800,93441980,Staten Island,South Beach,40.59385,-74.08825,Private room,80,1,38,1.1,1,308 +18801,10459594,Manhattan,Upper West Side,40.79501,-73.97131999999999,Entire home/apt,165,3,2,0.06,1,0 +18802,36435055,Manhattan,West Village,40.73537,-74.00209,Entire home/apt,415,2,57,1.68,2,22 +18803,57437690,Manhattan,Upper East Side,40.779720000000005,-73.94543,Private room,80,100,0,,1,0 +18804,1445618,Manhattan,Financial District,40.70402,-74.00776,Entire home/apt,235,3,3,0.09,1,0 +18805,75463219,Queens,Forest Hills,40.72,-73.85410999999999,Private room,99,1,26,0.93,1,284 +18806,87848042,Manhattan,Hell's Kitchen,40.75611,-73.99387,Entire home/apt,180,7,17,0.53,1,5 +18807,3609819,Brooklyn,Park Slope,40.668209999999995,-73.98253000000001,Entire home/apt,180,31,8,0.23,1,179 +18808,107675,Brooklyn,Flatbush,40.641890000000004,-73.96066,Entire home/apt,100,3,4,0.12,1,69 +18809,71093067,Brooklyn,Crown Heights,40.67154,-73.96221,Private room,88,1,8,0.23,1,0 +18810,60852834,Brooklyn,Greenpoint,40.72948,-73.94918,Private room,56,1,154,4.49,2,44 +18811,15670189,Brooklyn,Bedford-Stuyvesant,40.678540000000005,-73.92321,Entire home/apt,98,2,6,0.66,1,9 +18812,51752700,Brooklyn,Crown Heights,40.67564,-73.95496999999999,Entire home/apt,93,3,48,1.42,1,3 +18813,93691661,Manhattan,Washington Heights,40.835029999999996,-73.94166,Private room,60,2,73,2.13,2,136 +18814,93699493,Brooklyn,Bedford-Stuyvesant,40.68381,-73.94346,Entire home/apt,250,3,41,1.2,1,30 +18815,7216016,Brooklyn,Williamsburg,40.7122,-73.96619,Entire home/apt,225,2,51,1.51,1,0 +18816,37821056,Brooklyn,Prospect-Lefferts Gardens,40.65651,-73.95322,Entire home/apt,400,14,2,0.06,4,90 +18817,7848317,Brooklyn,Windsor Terrace,40.65828,-73.98451,Entire home/apt,130,2,5,0.15,2,0 +18818,11227830,Brooklyn,Williamsburg,40.71865,-73.96392,Entire home/apt,249,2,43,1.27,1,38 +18819,93734865,Brooklyn,Bushwick,40.68312,-73.9086,Entire home/apt,85,30,42,1.24,1,355 +18820,24421177,Bronx,Kingsbridge,40.86932,-73.90057,Private room,30,2,56,1.68,1,38 +18821,93743081,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.95528,Private room,60,1,204,5.92,1,163 +18822,92720308,Brooklyn,Flatbush,40.64018,-73.96152,Private room,80,1,97,2.9,3,286 +18823,93839620,Manhattan,Hell's Kitchen,40.76793,-73.98561,Private room,129,1,133,3.95,1,61 +18824,2809938,Brooklyn,Vinegar Hill,40.70156,-73.98199,Shared room,250,2,37,1.09,1,83 +18825,71176668,Manhattan,Harlem,40.8153,-73.93741,Private room,110,2,26,0.76,4,280 +18826,80957172,Manhattan,Washington Heights,40.846059999999994,-73.93325,Private room,129,5,0,,1,365 +18827,32545798,Brooklyn,Williamsburg,40.714490000000005,-73.96311,Private room,75,2,8,0.23,5,0 +18828,30283594,Manhattan,Hell's Kitchen,40.76021,-73.99969,Entire home/apt,199,30,2,0.08,121,365 +18829,93020402,Manhattan,Harlem,40.81949,-73.94621,Entire home/apt,129,3,67,1.96,1,0 +18830,60904698,Manhattan,Upper East Side,40.773340000000005,-73.94848,Private room,75,1,3,0.09,1,0 +18831,59839625,Queens,Sunnyside,40.74211,-73.91646,Entire home/apt,105,2,48,1.42,1,13 +18832,69711528,Bronx,Parkchester,40.83112,-73.87319000000001,Private room,49,3,25,0.73,2,0 +18833,11293255,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9575,Private room,215,3,3,0.1,1,0 +18834,55547933,Manhattan,Inwood,40.8604,-73.92716,Entire home/apt,85,3,4,0.18,1,0 +18835,5792120,Brooklyn,Bushwick,40.70708,-73.92343000000001,Entire home/apt,102,1,44,1.3,1,38 +18836,32357900,Bronx,Fieldston,40.88985,-73.90746999999999,Private room,85,2,16,0.47,1,0 +18837,94039418,Brooklyn,Bushwick,40.69251,-73.92478,Private room,25,2,1,0.03,1,0 +18838,30283594,Manhattan,Murray Hill,40.7481,-73.97417,Entire home/apt,279,30,0,,121,365 +18839,94044308,Manhattan,Washington Heights,40.83849,-73.93809,Private room,41,2,57,1.67,1,0 +18840,14564237,Brooklyn,Williamsburg,40.72022,-73.95727,Entire home/apt,280,10,5,0.14,1,0 +18841,75310263,Manhattan,Hell's Kitchen,40.76495,-73.98964000000001,Entire home/apt,165,5,1,0.03,1,0 +18842,91445933,Manhattan,Theater District,40.75863,-73.98812,Private room,40,1,163,4.75,1,102 +18843,94087334,Manhattan,Upper West Side,40.77718,-73.98023,Private room,120,1,20,0.59,1,81 +18844,21679450,Manhattan,Harlem,40.80171,-73.95871,Private room,60,7,4,0.12,2,0 +18845,93368072,Brooklyn,Cypress Hills,40.67825,-73.89416,Private room,70,1,174,5.06,1,109 +18846,94118056,Manhattan,Washington Heights,40.8419,-73.93866,Entire home/apt,130,3,10,0.29,1,188 +18847,30283594,Manhattan,Upper East Side,40.7608,-73.96032,Entire home/apt,249,30,0,,121,364 +18848,67126282,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94334,Private room,80,1,4,0.12,1,0 +18849,41177070,Brooklyn,Williamsburg,40.712790000000005,-73.94443000000001,Entire home/apt,145,3,96,2.87,2,0 +18850,7903711,Manhattan,Upper East Side,40.779790000000006,-73.95379,Entire home/apt,260,2,8,0.23,1,0 +18851,16586817,Brooklyn,Bedford-Stuyvesant,40.68381,-73.91776,Entire home/apt,86,4,55,1.62,1,17 +18852,94196548,Manhattan,Upper East Side,40.77883,-73.95205,Entire home/apt,219,1,5,0.16,1,0 +18853,7848317,Brooklyn,Windsor Terrace,40.659490000000005,-73.98422,Private room,90,2,3,0.11,2,0 +18854,94219511,Manhattan,Harlem,40.80167,-73.95781,Private room,70,3,3,0.09,2,0 +18855,94232838,Brooklyn,Borough Park,40.6371,-73.99834,Private room,70,2,0,,1,365 +18856,94243268,Brooklyn,Bushwick,40.69296,-73.92092,Private room,64,1,0,,1,83 +18857,9171744,Manhattan,East Harlem,40.79757,-73.94006,Private room,85,2,87,2.54,1,1 +18858,11685844,Queens,Astoria,40.7609,-73.92515999999999,Entire home/apt,125,5,2,0.06,1,0 +18859,94263025,Brooklyn,Bushwick,40.68918,-73.91216999999999,Private room,60,1,11,0.57,2,0 +18860,8547368,Manhattan,Upper East Side,40.76404,-73.96628,Entire home/apt,225,2,84,2.47,1,27 +18861,94265445,Brooklyn,Canarsie,40.63241,-73.89367,Entire home/apt,100,2,161,4.78,1,327 +18862,24805685,Brooklyn,Park Slope,40.671240000000004,-73.98625,Entire home/apt,218,2,117,3.41,1,226 +18863,49508002,Brooklyn,Bushwick,40.69141,-73.92092,Entire home/apt,200,3,6,0.22,1,194 +18864,16686968,Manhattan,Harlem,40.81041,-73.94337,Private room,55,2,114,3.34,1,270 +18865,33799659,Brooklyn,Williamsburg,40.7119,-73.94431,Private room,90,3,17,0.5,1,4 +18866,2260600,Brooklyn,Bushwick,40.69096,-73.91055,Entire home/apt,105,5,26,0.77,1,269 +18867,26502234,Manhattan,Harlem,40.823159999999994,-73.94478000000001,Entire home/apt,195,7,28,0.92,1,285 +18868,4430266,Manhattan,Civic Center,40.71391,-74.00624,Entire home/apt,170,2,0,,1,19 +18869,4025366,Brooklyn,Williamsburg,40.71156,-73.95454000000001,Entire home/apt,150,2,14,0.41,1,363 +18870,5162192,Manhattan,Upper West Side,40.797990000000006,-73.96161,Entire home/apt,300,30,0,,12,233 +18871,21261796,Brooklyn,Greenpoint,40.73515,-73.95645,Entire home/apt,154,5,0,,1,0 +18872,28220309,Manhattan,Upper East Side,40.76744,-73.95900999999999,Entire home/apt,185,4,2,0.06,1,0 +18873,24140532,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94529,Private room,50,3,63,1.91,4,291 +18874,94404356,Brooklyn,Greenpoint,40.721509999999995,-73.94141,Private room,70,1,39,1.66,2,15 +18875,10162189,Queens,Astoria,40.76802,-73.91815,Entire home/apt,180,4,45,1.32,1,351 +18876,74331597,Queens,St. Albans,40.68692,-73.76831999999999,Private room,65,2,74,2.16,5,174 +18877,57049951,Manhattan,Harlem,40.81205,-73.95273,Private room,69,2,100,3.09,9,345 +18878,65359432,Queens,Astoria,40.763259999999995,-73.92569,Entire home/apt,500,3,3,0.09,2,0 +18879,344035,Brooklyn,Prospect Heights,40.67758,-73.97123,Private room,40,1,168,4.91,13,309 +18880,94467583,Queens,Rosedale,40.65378,-73.72582,Entire home/apt,85,2,31,0.92,1,142 +18881,141914,Manhattan,Gramercy,40.7363,-73.98338000000001,Entire home/apt,250,1,3,0.15,1,312 +18882,91545870,Manhattan,Upper East Side,40.77357,-73.95149,Entire home/apt,69,1,99,5.22,2,42 +18883,23208658,Manhattan,East Harlem,40.79853,-73.94143000000001,Entire home/apt,270,3,70,2.06,3,255 +18884,92596736,Queens,Elmhurst,40.74647,-73.88258,Private room,53,3,2,0.06,1,358 +18885,94513501,Brooklyn,Bedford-Stuyvesant,40.686640000000004,-73.93849,Entire home/apt,100,3,33,2.12,1,166 +18886,24489871,Queens,Forest Hills,40.73602,-73.85619,Private room,52,1,14,0.43,2,249 +18887,310670,Bronx,Eastchester,40.88207,-73.83538,Entire home/apt,299,2,2,0.18,13,358 +18888,16098958,Manhattan,Hell's Kitchen,40.76748,-73.98609,Entire home/apt,175,30,1,0.04,96,311 +18889,94553067,Bronx,Bronxdale,40.85499,-73.86728000000001,Private room,43,4,10,0.3,1,88 +18890,94555248,Brooklyn,East Flatbush,40.63948,-73.95008,Private room,50,1,35,1.03,2,365 +18891,92322271,Brooklyn,Crown Heights,40.670590000000004,-73.94798,Private room,88,2,0,,2,0 +18892,91997718,Brooklyn,Bushwick,40.69078,-73.92166999999999,Private room,70,1,109,3.19,1,364 +18893,62345,Brooklyn,South Slope,40.66211,-73.98594,Private room,78,1,80,2.44,1,30 +18894,94555248,Brooklyn,East Flatbush,40.64004,-73.94933,Private room,50,1,43,1.26,2,266 +18895,15310997,Manhattan,Upper East Side,40.77395,-73.95248000000001,Entire home/apt,200,30,4,0.17,9,364 +18896,50688724,Brooklyn,Williamsburg,40.7065,-73.95568,Private room,60,3,76,2.24,2,89 +18897,440145,Manhattan,Civic Center,40.71342,-73.99929,Entire home/apt,150,2,8,0.23,1,58 +18898,94707512,Queens,Ozone Park,40.67238,-73.83909,Private room,75,1,212,6.19,1,164 +18899,4522961,Brooklyn,Sunset Park,40.66005,-73.99204,Entire home/apt,150,4,123,3.61,1,101 +18900,37333386,Manhattan,Hell's Kitchen,40.76408,-73.98996,Private room,129,1,98,2.87,3,27 +18901,20317929,Manhattan,Upper West Side,40.77794,-73.9763,Entire home/apt,220,2,24,0.7,1,207 +18902,94777797,Brooklyn,Sunset Park,40.64925,-74.01146999999999,Private room,60,7,0,,1,88 +18903,94782931,Brooklyn,Crown Heights,40.666920000000005,-73.95205,Entire home/apt,105,1,7,0.21,1,6 +18904,37723496,Brooklyn,DUMBO,40.70426,-73.98633000000001,Private room,125,2,98,2.88,2,164 +18905,64065593,Manhattan,Midtown,40.75233,-73.97137,Private room,378,2,1,0.05,13,285 +18906,61675294,Queens,Astoria,40.75692,-73.9293,Private room,61,2,15,0.44,1,0 +18907,445894,Queens,Elmhurst,40.74596,-73.87762,Private room,60,2,0,,2,66 +18908,61140228,Brooklyn,Bushwick,40.7005,-73.9144,Private room,75,2,2,0.29,1,0 +18909,94820583,Manhattan,Chelsea,40.740629999999996,-73.99843,Private room,80,5,2,0.06,1,0 +18910,94034963,Manhattan,Harlem,40.82986,-73.93965,Entire home/apt,151,2,0,,1,0 +18911,93350397,Brooklyn,Williamsburg,40.71933,-73.95993,Entire home/apt,259,1,157,4.58,1,155 +18912,26924376,Queens,Ozone Park,40.68285,-73.85248,Entire home/apt,70,5,17,0.49,1,331 +18913,94864882,Brooklyn,Williamsburg,40.70661,-73.93584,Private room,60,1,1,0.03,1,0 +18914,46073068,Queens,Long Island City,40.76117,-73.92846999999999,Private room,65,3,37,1.09,1,18 +18915,8344620,Manhattan,East Village,40.726929999999996,-73.98385,Entire home/apt,180,3,10,0.3,1,0 +18916,5957027,Brooklyn,Crown Heights,40.67667,-73.9175,Entire home/apt,180,2,126,3.74,1,74 +18917,52577963,Queens,Woodhaven,40.696259999999995,-73.8488,Private room,45,5,15,0.44,6,238 +18918,78022684,Manhattan,Midtown,40.76485,-73.98121,Private room,112,2,1,0.04,2,0 +18919,6250141,Manhattan,Upper West Side,40.78074,-73.97849000000001,Entire home/apt,168,1,138,4.08,1,32 +18920,16098958,Manhattan,Midtown,40.75034,-73.9878,Entire home/apt,250,30,0,,96,311 +18921,46483041,Brooklyn,Greenpoint,40.73379,-73.95461,Entire home/apt,130,1,13,0.38,1,0 +18922,16539899,Brooklyn,Bedford-Stuyvesant,40.6892,-73.9506,Private room,50,1,0,,1,0 +18923,61391963,Manhattan,Nolita,40.72332,-73.99466,Entire home/apt,142,30,7,0.24,91,66 +18924,9671470,Manhattan,Harlem,40.81438,-73.95183,Entire home/apt,199,4,6,0.19,2,0 +18925,3416935,Manhattan,Harlem,40.83043,-73.94672,Private room,60,1,5,0.15,1,5 +18926,62604251,Brooklyn,Bedford-Stuyvesant,40.69467,-73.94833,Private room,45,3,0,,1,0 +18927,94975490,Manhattan,Upper West Side,40.787659999999995,-73.97414,Private room,85,2,19,0.6,1,0 +18928,94974597,Manhattan,Upper West Side,40.772009999999995,-73.97994,Private room,99,3,123,3.72,1,246 +18929,1207773,Brooklyn,Williamsburg,40.707190000000004,-73.95926999999999,Shared room,37,1,12,0.35,2,362 +18930,144705,Brooklyn,Kensington,40.64552,-73.97824,Private room,40,1,1,0.03,1,0 +18931,62587696,Brooklyn,Gowanus,40.67127,-73.99006,Private room,45,2,97,2.92,2,80 +18932,9472223,Manhattan,Harlem,40.80555,-73.95706,Entire home/apt,77,5,19,0.56,3,1 +18933,8048355,Manhattan,East Harlem,40.79639,-73.9347,Private room,55,7,3,0.09,1,215 +18934,69117812,Queens,Corona,40.73702,-73.857,Private room,60,1,105,3.07,1,347 +18935,95033682,Manhattan,Civic Center,40.71727,-74.00335,Private room,95,3,0,,1,189 +18936,37435755,Brooklyn,Bedford-Stuyvesant,40.69377,-73.9307,Entire home/apt,40,2,8,0.24,1,10 +18937,57023844,Queens,Jamaica,40.6871,-73.77887,Private room,68,3,16,0.47,2,359 +18938,95045653,Brooklyn,Bedford-Stuyvesant,40.684740000000005,-73.93833000000001,Private room,85,7,1,0.03,1,0 +18939,84607966,Queens,Sunnyside,40.73912,-73.92075,Private room,55,1,168,4.93,3,322 +18940,84607966,Queens,Sunnyside,40.73908,-73.9203,Private room,45,1,134,3.93,3,308 +18941,84607966,Queens,Sunnyside,40.7385,-73.91993000000001,Private room,50,1,143,4.25,3,323 +18942,16323240,Queens,Sunnyside,40.74651,-73.92283,Entire home/apt,54,3,29,0.93,2,0 +18943,74331597,Queens,St. Albans,40.685109999999995,-73.76884,Private room,70,2,125,3.65,5,365 +18944,4430657,Manhattan,Hell's Kitchen,40.75842,-73.99276,Private room,60,2,0,,1,0 +18945,95117581,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95553000000001,Entire home/apt,150,30,6,0.18,1,0 +18946,79369918,Manhattan,East Village,40.73213,-73.98517,Entire home/apt,249,5,24,0.71,1,17 +18947,83171661,Brooklyn,South Slope,40.66752,-73.9849,Entire home/apt,90,6,2,0.06,3,0 +18948,57552512,Manhattan,Midtown,40.74296,-73.98691,Entire home/apt,584,5,89,2.62,1,179 +18949,16098958,Manhattan,Murray Hill,40.744040000000005,-73.97216999999999,Private room,135,30,2,0.07,96,303 +18950,8993084,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95578,Private room,55,2,41,1.25,4,83 +18951,22541573,Manhattan,East Village,40.73193,-73.99126,Entire home/apt,267,30,1,0.04,87,356 +18952,8726843,Manhattan,East Harlem,40.795770000000005,-73.9362,Entire home/apt,350,3,85,2.5,1,175 +18953,95143048,Manhattan,East Village,40.72522,-73.9873,Entire home/apt,99,2,41,1.24,2,23 +18954,26377263,Queens,Edgemere,40.59324,-73.77288,Private room,40,30,1,0.04,43,354 +18955,26377263,Queens,Edgemere,40.59304,-73.77339,Private room,40,30,0,,43,313 +18956,26377263,Queens,Edgemere,40.59517,-73.77235999999999,Private room,43,30,2,0.07,43,306 +18957,42561290,Brooklyn,East New York,40.661359999999995,-73.8678,Private room,45,2,38,1.24,4,159 +18958,15198834,Brooklyn,Flatbush,40.64837,-73.9618,Entire home/apt,88,4,8,0.24,1,0 +18959,5330919,Manhattan,Chinatown,40.71676,-73.99369,Private room,90,20,0,,1,188 +18960,22541573,Manhattan,Chelsea,40.74481,-73.99264000000001,Entire home/apt,225,30,0,,87,236 +18961,20598700,Brooklyn,Bushwick,40.70015,-73.92506999999999,Private room,40,1,5,0.15,1,0 +18962,26377263,Brooklyn,Bedford-Stuyvesant,40.68785,-73.95045999999999,Private room,54,30,0,,43,285 +18963,16624745,Manhattan,Murray Hill,40.74653,-73.9739,Private room,115,1,15,0.44,3,7 +18964,80603103,Manhattan,Battery Park City,40.70707,-74.01702,Entire home/apt,105,30,0,,1,0 +18965,95101238,Queens,Ozone Park,40.68287,-73.85981,Private room,65,2,41,1.2,1,353 +18966,95205288,Manhattan,Midtown,40.76276,-73.97652,Private room,110,4,32,0.94,1,167 +18967,34126778,Brooklyn,Bedford-Stuyvesant,40.6898,-73.93746,Private room,99,7,0,,1,72 +18968,10737943,Manhattan,Upper West Side,40.78017,-73.97574,Private room,47,30,10,0.31,10,342 +18969,24561882,Manhattan,Greenwich Village,40.73499,-73.99254,Private room,150,2,36,1.06,1,13 +18970,2805553,Brooklyn,Williamsburg,40.71096,-73.95685,Entire home/apt,249,6,49,1.46,1,0 +18971,83909332,Manhattan,Nolita,40.72222,-73.99545,Entire home/apt,225,2,15,0.44,1,0 +18972,29637078,Brooklyn,Bedford-Stuyvesant,40.68881,-73.9497,Entire home/apt,195,2,128,3.77,1,93 +18973,72572525,Queens,Astoria,40.76145,-73.92273,Private room,90,3,6,0.18,2,10 +18974,45913415,Manhattan,Harlem,40.8117,-73.94563000000001,Private room,64,3,97,2.9,2,272 +18975,9035097,Manhattan,Chelsea,40.74787,-74.00088000000001,Entire home/apt,750,30,42,1.24,1,281 +18976,8815256,Bronx,Concourse Village,40.82974,-73.92092,Entire home/apt,159,1,0,,1,89 +18977,57793192,Brooklyn,Bedford-Stuyvesant,40.692640000000004,-73.94266999999999,Private room,59,3,0,,1,0 +18978,73046105,Brooklyn,Crown Heights,40.67046,-73.94156,Entire home/apt,105,2,4,0.12,1,0 +18979,1678050,Manhattan,West Village,40.729890000000005,-74.00541,Entire home/apt,215,30,16,0.48,2,0 +18980,26377263,Brooklyn,Bedford-Stuyvesant,40.68943,-73.95186,Private room,54,30,0,,43,328 +18981,43825948,Manhattan,Inwood,40.86582,-73.92582,Private room,79,4,26,0.78,1,238 +18982,2402292,Queens,Long Island City,40.759570000000004,-73.92863,Entire home/apt,155,2,95,2.86,1,309 +18983,8993084,Brooklyn,Bedford-Stuyvesant,40.69059,-73.95602,Private room,99,3,20,0.61,4,90 +18984,26377263,Brooklyn,Bedford-Stuyvesant,40.68979,-73.95048,Private room,57,30,1,0.05,43,216 +18985,95419310,Manhattan,Hell's Kitchen,40.76276,-73.98942,Private room,140,2,105,3.09,1,0 +18986,92493393,Staten Island,West Brighton,40.63215,-74.11403,Private room,69,2,56,1.8,5,355 +18987,1998560,Manhattan,Hell's Kitchen,40.767140000000005,-73.98777,Entire home/apt,150,14,0,,1,0 +18988,33677512,Brooklyn,Williamsburg,40.71204,-73.9656,Private room,95,3,29,0.85,1,0 +18989,4169040,Brooklyn,Williamsburg,40.71111,-73.96299,Entire home/apt,150,4,12,0.37,1,5 +18990,3660702,Manhattan,Chelsea,40.745870000000004,-73.99149,Private room,110,1,200,5.87,4,60 +18991,17770287,Manhattan,Midtown,40.74949,-73.98277,Entire home/apt,175,30,5,0.16,14,326 +18992,7018895,Brooklyn,Red Hook,40.677479999999996,-74.00989,Entire home/apt,85,2,132,3.91,1,244 +18993,5437444,Bronx,Bronxdale,40.854009999999995,-73.86594000000001,Entire home/apt,76,7,24,0.71,1,0 +18994,5525273,Manhattan,Harlem,40.80466,-73.95581999999999,Entire home/apt,399,3,1,0.03,1,364 +18995,95471771,Queens,Jamaica,40.67537,-73.77355,Private room,79,1,5,0.16,2,179 +18996,2801522,Brooklyn,Bushwick,40.69935,-73.91332,Private room,41,4,4,0.16,1,189 +18997,77778146,Brooklyn,Flatlands,40.62979,-73.94431,Private room,85,1,2,0.09,8,189 +18998,77778146,Brooklyn,Crown Heights,40.66684,-73.94753,Private room,120,30,8,0.23,8,340 +18999,74331597,Queens,St. Albans,40.68461,-73.76899,Private room,65,1,98,2.87,5,180 +19000,49807429,Brooklyn,Prospect-Lefferts Gardens,40.65916,-73.95074,Private room,54,3,169,4.98,1,136 +19001,7834564,Brooklyn,Crown Heights,40.67415,-73.95626999999999,Private room,60,4,2,0.06,1,14 +19002,89873907,Brooklyn,Cypress Hills,40.680040000000005,-73.88709,Private room,51,3,0,,1,317 +19003,95552798,Brooklyn,Williamsburg,40.7176,-73.96148000000001,Entire home/apt,250,3,19,0.57,1,7 +19004,24696055,Brooklyn,Park Slope,40.67634,-73.98311,Entire home/apt,125,14,10,0.3,1,20 +19005,17423162,Manhattan,Financial District,40.7083,-74.01406,Private room,80,5,1,0.03,1,0 +19006,43299076,Manhattan,Harlem,40.82367,-73.93762,Entire home/apt,105,2,3,0.09,1,0 +19007,63913582,Brooklyn,Sunset Park,40.65651,-74.0029,Private room,60,2,34,1.0,2,181 +19008,85202728,Queens,Holliswood,40.72468,-73.76680999999999,Private room,239,3,11,0.52,1,135 +19009,7694993,Brooklyn,Greenpoint,40.72596,-73.94643,Entire home/apt,200,3,8,0.24,1,0 +19010,23303311,Manhattan,Hell's Kitchen,40.76133,-73.99744,Entire home/apt,250,3,1,0.03,1,158 +19011,95599073,Manhattan,SoHo,40.72688,-74.0022,Entire home/apt,200,3,79,2.33,1,28 +19012,16641600,Brooklyn,Sunset Park,40.66303,-73.99431,Private room,75,10,13,0.4,2,302 +19013,95608415,Manhattan,Lower East Side,40.71975,-73.98608,Entire home/apt,225,1,2,0.06,1,0 +19014,22772389,Manhattan,Upper West Side,40.78492,-73.97991999999999,Private room,110,2,41,1.21,1,89 +19015,22611054,Queens,Arverne,40.587920000000004,-73.80062,Private room,75,2,8,0.68,1,67 +19016,95623284,Bronx,Fordham,40.86533,-73.89713,Private room,40,3,1,0.1,1,179 +19017,278624,Brooklyn,Fort Greene,40.69415,-73.97131,Entire home/apt,100,3,26,0.76,1,0 +19018,19983675,Brooklyn,Bedford-Stuyvesant,40.68678,-73.94467,Private room,55,2,3,0.09,1,0 +19019,9280524,Manhattan,Upper West Side,40.797779999999996,-73.97232,Entire home/apt,185,2,1,0.03,1,0 +19020,19187413,Brooklyn,Williamsburg,40.70547,-73.93746999999999,Private room,60,20,0,,2,363 +19021,95467310,Manhattan,Midtown,40.74371,-73.98454,Entire home/apt,165,3,57,1.7,1,157 +19022,3186019,Brooklyn,Brooklyn Heights,40.69293,-73.99113,Entire home/apt,188,2,25,0.74,1,30 +19023,25262268,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95411,Entire home/apt,140,3,62,1.88,1,275 +19024,95727501,Queens,Long Island City,40.7579,-73.93052,Entire home/apt,115,2,5,0.15,1,66 +19025,64821734,Brooklyn,Crown Heights,40.67933,-73.96219,Entire home/apt,150,2,16,0.48,1,35 +19026,79321760,Manhattan,Harlem,40.82158,-73.95591999999999,Entire home/apt,300,4,69,2.05,1,110 +19027,39300337,Manhattan,Murray Hill,40.74968,-73.97665,Private room,132,4,10,0.57,2,364 +19028,82143608,Manhattan,East Harlem,40.787620000000004,-73.94303000000001,Private room,95,1,78,2.33,2,74 +19029,39300337,Manhattan,Murray Hill,40.74825,-73.97673,Private room,85,5,3,0.17,2,364 +19030,95765103,Brooklyn,Sheepshead Bay,40.60892,-73.96221,Private room,65,3,14,0.41,2,156 +19031,95766078,Brooklyn,Bedford-Stuyvesant,40.68385,-73.9523,Entire home/apt,150,2,66,2.01,2,55 +19032,36893255,Brooklyn,Williamsburg,40.70623,-73.92808000000001,Private room,100,4,12,0.42,1,0 +19033,31070690,Manhattan,Washington Heights,40.838390000000004,-73.93819,Private room,119,2,12,0.36,1,124 +19034,87565263,Manhattan,Hell's Kitchen,40.76338,-73.99552,Entire home/apt,200,3,170,4.99,1,82 +19035,24155326,Brooklyn,Crown Heights,40.676190000000005,-73.94936,Entire home/apt,90,1,222,6.61,1,32 +19036,8832035,Manhattan,Kips Bay,40.7401,-73.98123000000001,Entire home/apt,163,2,9,0.27,1,0 +19037,87073939,Brooklyn,Bedford-Stuyvesant,40.68237,-73.92258000000001,Private room,68,2,92,3.17,2,139 +19038,15239415,Brooklyn,Bensonhurst,40.61238,-73.99805,Entire home/apt,100,3,54,1.72,1,61 +19039,3191545,Manhattan,Theater District,40.760999999999996,-73.98522,Entire home/apt,169,30,5,0.15,23,365 +19040,10209118,Manhattan,Upper East Side,40.77336,-73.95054,Entire home/apt,105,3,0,,1,0 +19041,5424751,Manhattan,Midtown,40.75645,-73.97828,Entire home/apt,475,1,0,,1,364 +19042,4811900,Queens,Ditmars Steinway,40.77021,-73.90947,Private room,70,2,59,1.77,2,232 +19043,95886123,Queens,Astoria,40.7656,-73.92293000000001,Private room,90,1,43,1.28,2,331 +19044,23089531,Manhattan,East Village,40.72609,-73.98795,Private room,100,2,74,2.2,3,62 +19045,658618,Brooklyn,Bushwick,40.69025,-73.91251,Private room,65,1,23,0.69,1,290 +19046,25237492,Manhattan,Upper East Side,40.76095,-73.96143000000001,Entire home/apt,110,30,10,0.34,34,277 +19047,95913669,Queens,Maspeth,40.73834,-73.90774,Private room,46,1,1,0.03,1,0 +19048,92237522,Brooklyn,Flatbush,40.63714,-73.95316,Private room,40,3,28,2.64,2,54 +19049,50546859,Brooklyn,Bushwick,40.68342,-73.90993,Private room,80,1,19,0.58,1,88 +19050,95939781,Manhattan,Murray Hill,40.74438,-73.97365,Entire home/apt,249,1,1,0.03,1,0 +19051,14409957,Manhattan,Upper East Side,40.77511,-73.9553,Private room,110,3,7,0.26,1,0 +19052,95949907,Queens,Ridgewood,40.70512,-73.91386,Private room,48,1,6,2.9,1,158 +19053,17840677,Brooklyn,Crown Heights,40.670190000000005,-73.9318,Private room,50,2,77,2.3,1,3 +19054,68082479,Brooklyn,East New York,40.67293,-73.89548,Entire home/apt,135,30,68,2.01,2,247 +19055,95936966,Queens,Forest Hills,40.718709999999994,-73.8532,Private room,59,3,9,0.27,1,95 +19056,78022684,Manhattan,Midtown,40.7641,-73.97989,Private room,149,2,24,0.71,2,0 +19057,95958773,Brooklyn,Brighton Beach,40.57608,-73.9614,Shared room,35,1,34,1.01,3,343 +19058,74179880,Brooklyn,East New York,40.67502,-73.89004,Entire home/apt,85,3,33,0.97,8,356 +19059,48814097,Manhattan,Washington Heights,40.85797,-73.93285999999999,Entire home/apt,120,4,13,0.39,1,42 +19060,30283594,Manhattan,Tribeca,40.72125,-74.00690999999999,Entire home/apt,894,30,0,,121,280 +19061,30283594,Manhattan,SoHo,40.7249,-74.00105,Entire home/apt,643,30,0,,121,249 +19062,79289737,Manhattan,Chelsea,40.74348,-73.99365,Private room,180,1,205,6.07,1,90 +19063,96024343,Manhattan,Gramercy,40.73405,-73.98862,Entire home/apt,299,1,103,3.11,1,335 +19064,6103075,Brooklyn,Williamsburg,40.71435,-73.96336,Private room,60,14,1,0.05,1,341 +19065,75458749,Brooklyn,Flatbush,40.64026,-73.95347,Private room,45,3,2,0.06,2,0 +19066,23495738,Brooklyn,Sunset Park,40.644870000000004,-74.00893,Private room,50,1,49,1.44,1,90 +19067,21255768,Manhattan,Upper East Side,40.77962,-73.95069000000001,Entire home/apt,300,1,0,,1,0 +19068,1903495,Brooklyn,Williamsburg,40.71411,-73.94402,Entire home/apt,151,2,13,0.41,1,188 +19069,96080998,Brooklyn,Downtown Brooklyn,40.69569,-73.98249,Private room,139,1,0,,1,0 +19070,7202412,Manhattan,Harlem,40.8155,-73.94578,Entire home/apt,160,5,102,3.04,4,118 +19071,6314010,Brooklyn,Greenpoint,40.72679,-73.94838,Private room,55,2,51,1.52,1,0 +19072,13442714,Manhattan,SoHo,40.72058,-73.99807,Private room,120,3,21,0.63,2,82 +19073,96098402,Manhattan,Midtown,40.75376,-73.97131999999999,Private room,699,3,4,0.12,12,365 +19074,37821056,Brooklyn,Prospect-Lefferts Gardens,40.6552,-73.96063000000001,Private room,65,7,2,0.06,4,364 +19075,1103252,Brooklyn,Greenpoint,40.73287,-73.95211,Private room,130,1,104,3.2,1,146 +19076,39575635,Brooklyn,Bushwick,40.70342,-73.92829,Private room,70,1,15,0.45,1,0 +19077,7245581,Manhattan,Washington Heights,40.83355,-73.93839,Entire home/apt,67,180,4,0.15,19,331 +19078,84558839,Brooklyn,Manhattan Beach,40.58085,-73.93934,Entire home/apt,130,2,73,2.15,1,330 +19079,61391963,Manhattan,Kips Bay,40.74018,-73.97962,Entire home/apt,117,30,9,0.3,91,317 +19080,893136,Brooklyn,Prospect-Lefferts Gardens,40.66198,-73.95798,Entire home/apt,98,2,4,0.17,1,0 +19081,345252,Brooklyn,Crown Heights,40.67843,-73.96385,Entire home/apt,120,5,3,0.09,3,0 +19082,96186778,Brooklyn,Williamsburg,40.71865,-73.95875,Private room,75,3,72,2.14,1,56 +19083,96202421,Manhattan,Midtown,40.76529,-73.97713,Private room,350,3,0,,1,0 +19084,96222132,Brooklyn,Sunset Park,40.65607,-74.00305999999999,Private room,60,1,25,0.74,4,52 +19085,33346283,Manhattan,Harlem,40.83185,-73.94806,Private room,40,5,19,0.57,3,316 +19086,96241686,Brooklyn,Williamsburg,40.709759999999996,-73.96686,Private room,125,3,0,,1,0 +19087,96222132,Brooklyn,Sunset Park,40.653059999999996,-74.0039,Private room,60,1,34,1.05,4,294 +19088,11585415,Brooklyn,Williamsburg,40.7047,-73.94579,Private room,100,1,0,,1,0 +19089,21142670,Manhattan,East Harlem,40.80771,-73.94112,Shared room,95,1,7,0.21,1,179 +19090,91425821,Manhattan,Nolita,40.72275,-73.99558,Entire home/apt,124,2,1,0.03,1,0 +19091,19923341,Queens,Whitestone,40.78573,-73.81062,Private room,85,1,0,,1,365 +19092,156959,Brooklyn,Carroll Gardens,40.68342,-73.9912,Private room,90,4,1,0.03,2,0 +19093,96222132,Brooklyn,Sunset Park,40.65657,-74.00358,Private room,70,1,23,0.73,4,325 +19094,96341353,Staten Island,St. George,40.6437,-74.07944,Entire home/apt,150,1,23,0.78,3,336 +19095,53309031,Manhattan,East Harlem,40.79528,-73.94418,Entire home/apt,93,2,38,1.28,1,0 +19096,50860659,Queens,Ridgewood,40.707029999999996,-73.90907,Private room,80,7,5,0.15,1,188 +19097,10973901,Queens,Kew Gardens Hills,40.71785,-73.82066,Private room,76,2,23,0.68,1,178 +19098,40611169,Brooklyn,Bushwick,40.69951,-73.91641,Entire home/apt,113,30,6,0.18,5,365 +19099,2390711,Brooklyn,Fort Greene,40.69404,-73.98066999999999,Entire home/apt,130,10,1,0.03,1,0 +19100,96361528,Manhattan,Theater District,40.76035,-73.98189,Entire home/apt,160,30,6,0.19,1,168 +19101,96368935,Manhattan,Kips Bay,40.74385,-73.97827,Private room,89,3,3,0.09,1,0 +19102,96301426,Brooklyn,Prospect-Lefferts Gardens,40.657140000000005,-73.95,Private room,50,2,2,0.17,1,0 +19103,96413175,Manhattan,East Village,40.72173,-73.98281999999999,Entire home/apt,150,9,4,0.13,1,0 +19104,61842904,Brooklyn,Prospect Heights,40.67948,-73.96526,Entire home/apt,125,30,11,0.34,3,87 +19105,96424121,Queens,St. Albans,40.70327,-73.76785,Private room,85,1,48,1.41,3,180 +19106,19694796,Brooklyn,Kensington,40.63727,-73.97718,Private room,45,2,4,0.13,1,0 +19107,96347002,Brooklyn,Crown Heights,40.67752,-73.96029,Entire home/apt,150,60,0,,1,364 +19108,20309915,Brooklyn,Williamsburg,40.70778,-73.94884,Entire home/apt,170,2,94,2.99,1,78 +19109,38790056,Brooklyn,Bath Beach,40.609790000000004,-74.01120999999999,Entire home/apt,85,1,38,1.12,1,36 +19110,64065593,Manhattan,Midtown,40.75326,-73.97303000000001,Entire home/apt,462,2,3,0.1,13,299 +19111,64065593,Manhattan,Midtown,40.753679999999996,-73.97358,Private room,198,2,30,0.89,13,333 +19112,64065593,Manhattan,Midtown,40.753240000000005,-73.97216999999999,Entire home/apt,198,2,16,0.51,13,263 +19113,96335626,Queens,Woodhaven,40.6922,-73.86399999999999,Private room,43,3,69,2.08,1,283 +19114,95471771,Queens,Jamaica,40.67627,-73.77059,Private room,65,1,3,0.12,2,179 +19115,68538563,Brooklyn,Cypress Hills,40.68978,-73.87017,Private room,41,2,8,0.24,1,0 +19116,33936240,Manhattan,Hell's Kitchen,40.76084,-73.98935999999999,Private room,89,5,1,0.03,1,0 +19117,33612454,Brooklyn,Bedford-Stuyvesant,40.68655,-73.94299000000001,Private room,80,2,106,3.14,1,47 +19118,22073094,Manhattan,East Village,40.72782,-73.9862,Private room,110,1,0,,1,0 +19119,2222500,Manhattan,Upper East Side,40.77799,-73.94935,Private room,80,5,9,0.29,2,118 +19120,24201188,Queens,Astoria,40.7591,-73.91525,Private room,75,4,87,2.61,2,57 +19121,96098402,Manhattan,Midtown,40.75362,-73.97158,Private room,749,2,5,0.15,12,365 +19122,96098402,Manhattan,Midtown,40.7521,-73.972,Private room,799,4,3,0.09,12,365 +19123,96098402,Manhattan,Midtown,40.75331,-73.9733,Private room,599,3,8,0.24,12,365 +19124,95572265,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92676,Private room,75,3,18,0.54,2,311 +19125,46576732,Manhattan,Washington Heights,40.85842,-73.92928,Private room,79,1,7,0.21,1,0 +19126,96098402,Manhattan,Midtown,40.75294,-73.9719,Private room,699,3,3,0.09,12,365 +19127,96098402,Manhattan,Midtown,40.75351,-73.97196,Private room,499,3,12,0.36,12,365 +19128,96591454,Brooklyn,East Flatbush,40.64383,-73.94901999999999,Entire home/apt,175,3,71,2.23,1,162 +19129,96341353,Staten Island,St. George,40.640570000000004,-74.0786,Private room,110,1,20,0.63,3,337 +19130,96677104,Manhattan,Hell's Kitchen,40.76615,-73.98408,Private room,189,15,0,,1,0 +19131,3360346,Brooklyn,Williamsburg,40.71622,-73.94273000000001,Private room,50,14,54,1.61,2,86 +19132,95765103,Brooklyn,Sheepshead Bay,40.60803,-73.96211,Private room,50,3,15,0.45,2,211 +19133,6107166,Manhattan,Chinatown,40.71348,-73.99135,Entire home/apt,150,20,38,1.13,1,29 +19134,50207365,Brooklyn,Bedford-Stuyvesant,40.696529999999996,-73.94994,Private room,50,2,5,0.15,1,0 +19135,96098402,Manhattan,Midtown,40.75388,-73.97308000000001,Private room,799,3,2,0.06,12,365 +19136,96098402,Manhattan,Midtown,40.753440000000005,-73.97207,Private room,499,3,7,0.21,12,365 +19137,49645950,Manhattan,SoHo,40.7263,-74.00344,Entire home/apt,189,2,136,4.09,2,30 +19138,96098402,Manhattan,Midtown,40.75359,-73.97295,Private room,649,2,13,0.39,12,365 +19139,96098402,Manhattan,Midtown,40.75375,-73.97295,Private room,799,4,3,0.09,12,365 +19140,10920393,Manhattan,Greenwich Village,40.73506,-73.99203,Entire home/apt,275,2,5,0.15,1,0 +19141,1317884,Manhattan,Upper West Side,40.795120000000004,-73.9733,Private room,100,2,45,1.36,1,83 +19142,22862376,Manhattan,Harlem,40.79992,-73.95501999999999,Entire home/apt,70,30,14,0.76,1,50 +19143,75770804,Manhattan,Harlem,40.820879999999995,-73.93879,Private room,35,1,0,,1,0 +19144,33614329,Brooklyn,Bushwick,40.69555,-73.93069,Entire home/apt,95,1,81,2.42,4,193 +19145,4071035,Manhattan,Two Bridges,40.712309999999995,-73.99257,Entire home/apt,140,3,137,4.07,1,154 +19146,89386217,Manhattan,Chinatown,40.7135,-73.99121,Private room,75,1,318,9.39,1,51 +19147,68315940,Manhattan,Theater District,40.76093,-73.98326999999999,Private room,302,3,0,,1,179 +19148,31616043,Manhattan,Harlem,40.82377,-73.94981,Private room,65,4,42,1.34,1,10 +19149,30283594,Manhattan,Hell's Kitchen,40.76027,-73.99826,Entire home/apt,399,30,0,,121,365 +19150,95459395,Manhattan,Hell's Kitchen,40.762209999999996,-73.99795,Entire home/apt,321,30,0,,18,365 +19151,95459395,Manhattan,Hell's Kitchen,40.76115,-73.99823,Entire home/apt,499,30,0,,18,146 +19152,95459395,Manhattan,Hell's Kitchen,40.7619,-73.99819000000001,Entire home/apt,534,30,0,,18,365 +19153,95459395,Manhattan,Hell's Kitchen,40.76075,-73.99893,Entire home/apt,748,30,0,,18,365 +19154,95459395,Manhattan,Hell's Kitchen,40.7602,-73.998,Entire home/apt,748,30,0,,18,185 +19155,2118206,Manhattan,Washington Heights,40.8337,-73.9458,Private room,33,10,5,0.16,1,44 +19156,12334451,Brooklyn,Williamsburg,40.71958,-73.96123,Entire home/apt,350,2,19,0.58,1,179 +19157,95459395,Manhattan,Midtown,40.76574,-73.98188,Entire home/apt,534,30,0,,18,316 +19158,95459395,Manhattan,Midtown,40.7671,-73.98148,Entire home/apt,300,30,0,,18,364 +19159,95459395,Manhattan,Hell's Kitchen,40.767140000000005,-73.9834,Entire home/apt,748,30,0,,18,333 +19160,95459395,Manhattan,Midtown,40.76487,-73.98238,Entire home/apt,748,30,0,,18,364 +19161,10528,Manhattan,Upper West Side,40.77727,-73.98453,Entire home/apt,200,30,9,0.28,2,139 +19162,85923274,Manhattan,Lower East Side,40.72195,-73.98698,Entire home/apt,214,2,15,0.48,1,17 +19163,59488330,Brooklyn,Bushwick,40.68687,-73.91564,Private room,40,2,21,0.63,1,185 +19164,19177308,Brooklyn,Bushwick,40.6883,-73.90596,Private room,39,2,104,3.09,4,174 +19165,17125263,Manhattan,East Harlem,40.79655,-73.93848,Private room,75,3,54,1.61,2,271 +19166,79738498,Manhattan,Harlem,40.8014,-73.95793,Private room,100,2,12,0.36,1,0 +19167,33064599,Manhattan,Upper West Side,40.80039,-73.96724,Private room,49,1,56,1.83,6,326 +19168,10777266,Brooklyn,Prospect Heights,40.67688,-73.96735,Entire home/apt,185,3,109,3.25,1,269 +19169,48107620,Brooklyn,Williamsburg,40.71145,-73.95886999999999,Private room,100,3,9,0.27,1,0 +19170,22129681,Brooklyn,Carroll Gardens,40.680479999999996,-73.99322,Entire home/apt,130,4,8,0.24,1,0 +19171,12008116,Manhattan,Upper East Side,40.77341,-73.95025,Entire home/apt,375,1,16,0.51,1,110 +19172,96975337,Manhattan,Chinatown,40.71333,-73.9916,Private room,69,30,1,0.03,1,359 +19173,96978953,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.95725,Private room,125,2,27,0.88,1,136 +19174,24273714,Brooklyn,Williamsburg,40.713809999999995,-73.93903,Private room,85,1,31,0.93,3,279 +19175,28458209,Manhattan,Harlem,40.83014,-73.94655999999999,Private room,59,3,49,1.51,2,203 +19176,52183380,Manhattan,Chelsea,40.743809999999996,-73.9923,Entire home/apt,110,30,2,0.06,1,0 +19177,1022070,Brooklyn,Williamsburg,40.71113,-73.95296,Entire home/apt,250,2,6,0.18,1,0 +19178,96867847,Manhattan,Midtown,40.75723,-73.96313,Entire home/apt,175,2,10,0.31,1,0 +19179,8402190,Brooklyn,Greenpoint,40.723420000000004,-73.94838,Private room,99,2,38,1.13,1,89 +19180,27803037,Manhattan,Kips Bay,40.74089,-73.98094,Entire home/apt,175,3,20,0.61,1,0 +19181,40532977,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91359,Private room,38,30,5,0.15,4,0 +19182,30499687,Bronx,North Riverdale,40.90175,-73.89761,Private room,77,2,9,0.29,2,0 +19183,26830685,Manhattan,SoHo,40.72575,-74.00128000000001,Entire home/apt,850,3,32,1.04,1,262 +19184,17243984,Brooklyn,Sunset Park,40.66198,-73.98964000000001,Private room,90,2,0,,1,0 +19185,2742827,Manhattan,Kips Bay,40.745329999999996,-73.9772,Entire home/apt,128,2,5,0.19,1,0 +19186,97086824,Queens,Springfield Gardens,40.66735,-73.76647,Entire home/apt,49,1,434,12.84,1,102 +19187,62563056,Manhattan,Midtown,40.76382,-73.98007,Entire home/apt,305,4,0,,1,124 +19188,38965064,Brooklyn,Borough Park,40.63561,-73.97961,Entire home/apt,83,7,1,0.04,1,0 +19189,219970,Brooklyn,Crown Heights,40.67642,-73.961,Private room,80,2,3,0.09,2,0 +19190,67213712,Brooklyn,Gowanus,40.68255,-73.9899,Entire home/apt,400,30,118,3.53,1,265 +19191,95436015,Manhattan,West Village,40.73322,-74.00853000000001,Entire home/apt,450,30,12,0.38,1,165 +19192,68746033,Brooklyn,Bedford-Stuyvesant,40.68303,-73.91238,Private room,80,1,2,0.06,1,0 +19193,97166562,Manhattan,Gramercy,40.73402,-73.9862,Private room,82,1,88,2.76,1,14 +19194,95796044,Bronx,Woodlawn,40.882529999999996,-73.86950999999999,Private room,68,1,6,0.19,1,87 +19195,97243693,Manhattan,Murray Hill,40.746990000000004,-73.97659,Entire home/apt,200,3,62,3.19,2,49 +19196,97122846,Brooklyn,East Flatbush,40.65141,-73.92511999999999,Entire home/apt,75,3,109,3.29,1,232 +19197,2764786,Manhattan,Chelsea,40.74853,-73.99593,Private room,120,1,18,0.55,1,0 +19198,60085031,Manhattan,Midtown,40.7536,-73.97306,Entire home/apt,125,2,9,0.34,1,0 +19199,40411263,Manhattan,East Harlem,40.79523,-73.94278,Private room,39,120,0,,1,173 +19200,51373228,Manhattan,Civic Center,40.71625,-74.00401,Entire home/apt,350,2,0,,1,0 +19201,97300191,Queens,Woodside,40.74767,-73.90720999999999,Entire home/apt,110,2,9,0.27,1,8 +19202,35433522,Brooklyn,Williamsburg,40.712579999999996,-73.95191,Entire home/apt,349,5,5,0.16,3,0 +19203,24385779,Manhattan,Nolita,40.7215,-73.99395,Private room,85,2,5,0.16,1,0 +19204,97323051,Brooklyn,Prospect Heights,40.67431,-73.9651,Private room,66,3,3,0.09,1,0 +19205,52997121,Queens,Jamaica,40.67518,-73.78045999999999,Private room,75,1,45,1.33,4,8 +19206,27227850,Brooklyn,South Slope,40.666340000000005,-73.98185,Entire home/apt,144,1,32,0.96,1,0 +19207,7850260,Manhattan,Harlem,40.80594,-73.9454,Entire home/apt,550,1,2,0.17,3,88 +19208,21594748,Manhattan,Morningside Heights,40.80751,-73.96619,Private room,110,2,5,0.15,2,0 +19209,11757212,Brooklyn,Bushwick,40.69804,-73.92815999999999,Private room,51,1,45,1.35,4,351 +19210,89388277,Manhattan,Lower East Side,40.72203,-73.98986,Private room,118,1,2,0.08,3,0 +19211,96341353,Staten Island,St. George,40.64055,-74.0784,Private room,70,1,60,1.84,3,336 +19212,89388277,Manhattan,Lower East Side,40.72205,-73.9913,Private room,118,1,3,0.17,3,0 +19213,2856748,Manhattan,Midtown,40.75936,-73.96293,Entire home/apt,250,30,0,,49,364 +19214,89388277,Manhattan,Lower East Side,40.723420000000004,-73.99108000000001,Private room,118,1,0,,3,0 +19215,4360212,Brooklyn,Williamsburg,40.70912,-73.94513,Entire home/apt,135,2,22,0.66,1,5 +19216,64065593,Manhattan,Midtown,40.7531,-73.97321,Private room,252,2,3,0.09,13,324 +19217,76192815,Manhattan,Chinatown,40.71745,-73.99409,Entire home/apt,300,1,23,0.69,5,364 +19218,25843005,Queens,Astoria,40.75786,-73.92808000000001,Private room,49,2,108,3.2,3,20 +19219,94536810,Bronx,Bronxdale,40.85585,-73.86486,Private room,40,5,65,1.94,2,328 +19220,97441717,Brooklyn,Flatbush,40.65228,-73.96401999999999,Private room,65,3,1,0.03,1,0 +19221,39054866,Brooklyn,Williamsburg,40.712379999999996,-73.96279,Entire home/apt,160,3,1,0.03,1,0 +19222,22225635,Brooklyn,Bushwick,40.69108,-73.91530999999999,Private room,65,5,0,,1,0 +19223,97454026,Manhattan,Washington Heights,40.856790000000004,-73.932,Private room,60,2,60,1.79,1,60 +19224,92195100,Bronx,Bronxdale,40.85236,-73.86632,Private room,35,1,114,3.48,1,0 +19225,11018460,Brooklyn,Williamsburg,40.7155,-73.95631999999999,Private room,125,5,15,0.46,2,288 +19226,1706073,Brooklyn,Park Slope,40.67293,-73.98609,Entire home/apt,105,30,7,0.24,1,189 +19227,2910527,Brooklyn,Fort Greene,40.68725,-73.97458,Entire home/apt,150,2,4,0.12,1,0 +19228,97513787,Manhattan,Chinatown,40.7164,-73.99188000000001,Private room,73,25,13,0.48,5,38 +19229,77778146,Brooklyn,Crown Heights,40.666309999999996,-73.94764,Private room,95,30,3,0.15,8,189 +19230,77778146,Brooklyn,Crown Heights,40.66596,-73.94936,Private room,75,1,13,0.39,8,311 +19231,27336207,Manhattan,Gramercy,40.737359999999995,-73.98025,Entire home/apt,120,5,8,0.25,2,0 +19232,52950465,Manhattan,Midtown,40.75241,-73.97081,Entire home/apt,199,30,0,,12,226 +19233,28717495,Manhattan,Financial District,40.706509999999994,-74.00656,Entire home/apt,199,2,1,0.03,1,0 +19234,97536353,Queens,Arverne,40.589290000000005,-73.79441,Private room,60,3,3,0.1,2,0 +19235,97538710,Brooklyn,Fort Greene,40.68906,-73.97896999999999,Private room,88,1,82,2.45,1,67 +19236,836168,Manhattan,Upper West Side,40.78065,-73.98253000000001,Entire home/apt,1000,30,17,0.51,11,365 +19237,7139819,Manhattan,Chelsea,40.74738,-74.00134,Entire home/apt,179,3,3,0.09,2,0 +19238,219320,Manhattan,Harlem,40.822179999999996,-73.94593,Entire home/apt,120,1,4,0.12,1,0 +19239,97631810,Queens,East Elmhurst,40.75849,-73.87068000000001,Private room,50,1,218,6.91,1,153 +19240,2657430,Manhattan,Chelsea,40.746809999999996,-74.00005999999999,Private room,110,7,3,0.21,2,0 +19241,9049657,Brooklyn,Bushwick,40.69003,-73.90890999999999,Entire home/apt,390,1,131,4.11,1,321 +19242,96098402,Manhattan,Midtown,40.75175,-73.97218000000001,Private room,269,3,8,0.24,12,365 +19243,52428829,Brooklyn,Williamsburg,40.70683,-73.94582,Private room,60,1,0,,1,0 +19244,97513787,Manhattan,Chinatown,40.715920000000004,-73.99332,Private room,65,25,20,0.9,5,365 +19245,15636131,Manhattan,Upper East Side,40.76952,-73.94892,Entire home/apt,150,7,12,0.39,1,32 +19246,93202618,Brooklyn,Bushwick,40.70588,-73.92302,Private room,45,1,7,0.21,1,0 +19247,47617616,Queens,Long Island City,40.74569,-73.94684000000001,Private room,105,4,10,0.33,1,70 +19248,96424121,Queens,St. Albans,40.70348,-73.76621,Private room,55,1,71,2.12,3,365 +19249,77665938,Queens,Maspeth,40.726929999999996,-73.90319000000001,Entire home/apt,105,1,92,2.75,1,316 +19250,92467975,Queens,Kew Gardens Hills,40.73216,-73.81841,Private room,399,1,0,,1,241 +19251,84684940,Brooklyn,Flatbush,40.64747,-73.96171,Private room,75,3,65,1.95,2,335 +19252,12573650,Brooklyn,Bushwick,40.70191,-73.92298000000001,Private room,38,1,11,0.35,1,0 +19253,77010815,Bronx,Norwood,40.8722,-73.87607,Private room,50,3,22,0.76,1,342 +19254,97779735,Brooklyn,Williamsburg,40.70879,-73.94937,Private room,70,7,15,0.45,1,292 +19255,22534244,Queens,Woodside,40.74845,-73.89665,Private room,85,1,42,1.26,1,364 +19256,97794621,Queens,Sunnyside,40.73922,-73.9265,Private room,70,1,76,2.28,1,76 +19257,31932014,Manhattan,Upper West Side,40.783190000000005,-73.97762,Private room,85,2,8,0.24,1,89 +19258,114590,Brooklyn,Williamsburg,40.720490000000005,-73.96027,Entire home/apt,180,3,7,0.21,1,54 +19259,97808036,Manhattan,Harlem,40.808690000000006,-73.94205,Entire home/apt,600,4,16,0.5,1,96 +19260,42325192,Manhattan,Harlem,40.81463,-73.95106,Private room,75,3,11,0.35,1,14 +19261,918668,Brooklyn,Crown Heights,40.677,-73.95923,Private room,200,30,0,,1,88 +19262,97822063,Queens,St. Albans,40.70577,-73.75932,Private room,47,3,2,0.06,1,56 +19263,3998751,Brooklyn,Windsor Terrace,40.65927,-73.97832,Entire home/apt,300,2,6,0.18,1,16 +19264,97825348,Queens,Arverne,40.59065,-73.79563,Entire home/apt,150,2,20,0.61,1,76 +19265,97842006,Manhattan,Chelsea,40.74624,-74.00371,Entire home/apt,225,1,51,1.63,1,9 +19266,97763801,Queens,Astoria,40.7687,-73.91975,Entire home/apt,149,4,5,0.15,1,66 +19267,30702769,Manhattan,Chinatown,40.71305,-73.99443000000001,Private room,100,1,154,4.6,1,233 +19268,88972153,Brooklyn,Greenpoint,40.73218,-73.95647,Entire home/apt,425,3,0,,1,344 +19269,97853468,Bronx,Hunts Point,40.81658,-73.88889,Private room,59,14,13,0.4,4,340 +19270,836168,Manhattan,Midtown,40.75425,-73.98312,Entire home/apt,2000,30,4,0.12,11,365 +19271,9271620,Brooklyn,Williamsburg,40.71671,-73.94592,Private room,77,28,10,0.3,1,315 +19272,97961443,Queens,Astoria,40.75954,-73.90548000000001,Entire home/apt,129,20,0,,1,0 +19273,1862880,Manhattan,SoHo,40.72652,-74.00032,Entire home/apt,245,2,44,1.34,1,0 +19274,57954964,Manhattan,Inwood,40.86906,-73.9173,Private room,50,2,7,0.23,1,155 +19275,32707981,Manhattan,East Village,40.72396,-73.98940999999999,Private room,120,2,5,0.16,4,0 +19276,16390627,Manhattan,Upper East Side,40.7723,-73.94745999999999,Private room,55,8,1,0.05,1,0 +19277,1407676,Brooklyn,Williamsburg,40.71727,-73.95753,Private room,110,1,102,3.13,4,267 +19278,5654072,Brooklyn,Flatbush,40.63503,-73.95127,Private room,150,3,10,0.38,3,0 +19279,5654072,Brooklyn,Flatbush,40.63409,-73.95245,Private room,71,3,20,0.73,3,0 +19280,67097911,Manhattan,Chelsea,40.741009999999996,-74.00496,Entire home/apt,300,2,7,0.21,1,0 +19281,17796102,Manhattan,Inwood,40.86107,-73.92959,Entire home/apt,90,26,4,0.35,1,58 +19282,10109204,Brooklyn,Bushwick,40.70378,-73.91311,Private room,65,2,3,0.09,1,0 +19283,76184970,Brooklyn,Williamsburg,40.71322,-73.9648,Entire home/apt,408,3,88,2.68,1,267 +19284,51007432,Manhattan,Upper East Side,40.7739,-73.94782,Private room,78,1,73,2.18,1,1 +19285,1454772,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94048000000001,Entire home/apt,95,3,48,1.57,1,338 +19286,98053423,Manhattan,Harlem,40.80968,-73.94425,Private room,99,1,31,2.63,1,123 +19287,97833986,Manhattan,Upper West Side,40.77851,-73.97645,Private room,77,4,93,2.87,1,115 +19288,3485640,Manhattan,Washington Heights,40.83892,-73.94265,Entire home/apt,120,3,4,0.13,1,7 +19289,2431238,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.95444,Entire home/apt,125,3,93,2.78,1,13 +19290,30494687,Manhattan,Harlem,40.80887,-73.94889,Private room,90,3,3,0.09,1,0 +19291,33991916,Brooklyn,Flatbush,40.643609999999995,-73.95366999999999,Private room,86,2,53,1.64,1,324 +19292,30384194,Queens,Astoria,40.757709999999996,-73.91385,Private room,99,3,47,1.41,2,176 +19293,7610841,Manhattan,Upper West Side,40.80088,-73.96194,Private room,115,2,72,2.55,2,275 +19294,20862571,Brooklyn,Crown Heights,40.66892,-73.96079,Private room,32,2,1,0.03,1,0 +19295,98267290,Manhattan,Upper West Side,40.775090000000006,-73.98255,Entire home/apt,130,30,0,,1,185 +19296,8903368,Manhattan,Harlem,40.81668,-73.94407,Private room,100,1,3,0.09,1,0 +19297,98279802,Brooklyn,Bushwick,40.70035,-73.92366,Private room,45,90,0,,1,0 +19298,98297464,Brooklyn,Fort Hamilton,40.61937,-74.03132,Entire home/apt,95,6,20,0.6,2,141 +19299,16810685,Manhattan,Greenwich Village,40.72868,-73.99901,Entire home/apt,183,1,173,5.21,1,271 +19300,98308046,Brooklyn,Bushwick,40.68946,-73.91537,Entire home/apt,150,2,110,3.38,1,152 +19301,1774499,Brooklyn,Bushwick,40.699090000000005,-73.92279,Private room,75,3,2,0.06,1,0 +19302,98341498,Brooklyn,Bushwick,40.6886,-73.91209,Entire home/apt,150,4,77,2.45,1,258 +19303,6357228,Manhattan,Upper West Side,40.79915,-73.96086,Private room,90,14,0,,1,0 +19304,7055854,Manhattan,East Harlem,40.80242,-73.94215,Private room,1500,4,1,0.18,5,188 +19305,3002077,Brooklyn,Williamsburg,40.71675,-73.96226,Entire home/apt,500,7,5,0.16,1,106 +19306,37435847,Manhattan,East Harlem,40.79534,-73.94526,Entire home/apt,100,1,73,2.37,1,0 +19307,52997121,Queens,Jamaica,40.67603,-73.78217,Private room,70,1,29,0.9,4,8 +19308,7025954,Manhattan,East Village,40.72188,-73.9826,Private room,99,3,11,0.33,1,0 +19309,56065753,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95593000000001,Entire home/apt,80,1,5,0.17,1,0 +19310,98485181,Brooklyn,Bedford-Stuyvesant,40.6876,-73.92690999999999,Private room,79,2,16,1.12,1,173 +19311,14295824,Manhattan,East Village,40.72718,-73.98238,Private room,80,4,7,0.33,1,0 +19312,20368225,Manhattan,Harlem,40.80854,-73.94519,Entire home/apt,200,2,102,3.5,3,101 +19313,63746890,Brooklyn,Bedford-Stuyvesant,40.690020000000004,-73.93733,Entire home/apt,100,3,92,3.26,1,4 +19314,22525595,Manhattan,West Village,40.73616,-74.00889000000001,Entire home/apt,200,2,28,1.32,1,66 +19315,46221302,Manhattan,Upper West Side,40.79858,-73.97301,Private room,95,6,4,0.15,1,0 +19316,86592511,Brooklyn,Gowanus,40.66734,-73.99383,Entire home/apt,135,2,19,0.6,1,35 +19317,2856748,Manhattan,Kips Bay,40.738240000000005,-73.97874,Entire home/apt,198,30,0,,49,364 +19318,897121,Manhattan,Lower East Side,40.718379999999996,-73.99149,Private room,85,1,135,4.3,1,8 +19319,42151184,Queens,Kew Gardens,40.70899,-73.82814,Private room,90,90,0,,1,365 +19320,1475812,Manhattan,Nolita,40.722159999999995,-73.99571,Entire home/apt,275,2,32,1.14,3,41 +19321,8113117,Brooklyn,Williamsburg,40.71228,-73.95323,Private room,80,2,181,5.42,1,52 +19322,28007844,Manhattan,Midtown,40.74459,-73.99061,Private room,108,1,1,0.03,1,0 +19323,98714463,Manhattan,Hell's Kitchen,40.76043,-73.995,Private room,110,3,94,2.83,1,26 +19324,98810918,Queens,Long Island City,40.74629,-73.95199000000001,Private room,95,3,56,1.71,1,50 +19325,98816024,Brooklyn,Williamsburg,40.7111,-73.94351999999999,Private room,95,3,24,0.73,1,5 +19326,98828133,Brooklyn,Crown Heights,40.67183,-73.94934,Entire home/apt,160,2,129,3.91,1,220 +19327,21600813,Manhattan,Harlem,40.82991,-73.94848,Private room,50,2,28,0.85,1,0 +19328,5053976,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.95878,Private room,45,7,14,0.42,3,364 +19329,62852828,Manhattan,Harlem,40.82415,-73.95283,Private room,200,2,0,,2,89 +19330,25549229,Brooklyn,Williamsburg,40.70677,-73.96745,Private room,101,1,91,2.74,2,12 +19331,98853519,Manhattan,Upper West Side,40.80209,-73.96195999999999,Entire home/apt,174,4,12,0.44,1,0 +19332,7157161,Brooklyn,Williamsburg,40.712740000000004,-73.94521,Private room,90,1,2,0.06,1,341 +19333,2807776,Brooklyn,Flatbush,40.65087,-73.96467,Private room,65,2,69,2.08,2,60 +19334,48804458,Queens,Ridgewood,40.70349,-73.8994,Entire home/apt,94,6,96,2.96,2,48 +19335,98726662,Brooklyn,Sheepshead Bay,40.60948,-73.95803000000001,Private room,39,2,66,2.01,3,62 +19336,98726662,Brooklyn,Sheepshead Bay,40.60985,-73.95926999999999,Private room,39,3,18,0.54,3,1 +19337,96892684,Manhattan,Washington Heights,40.83923,-73.94556999999999,Private room,65,1,113,3.63,1,266 +19338,14016646,Manhattan,Greenwich Village,40.729620000000004,-73.99932,Private room,100,5,18,0.56,1,0 +19339,2000143,Brooklyn,Brooklyn Heights,40.69468,-73.99327,Entire home/apt,100,3,24,0.72,1,2 +19340,49699620,Manhattan,Upper East Side,40.777770000000004,-73.94914,Private room,100,7,13,0.41,3,0 +19341,57696968,Queens,South Ozone Park,40.67711,-73.8054,Private room,29,1,73,2.2,1,0 +19342,26328087,Brooklyn,Williamsburg,40.71373,-73.94794,Entire home/apt,150,10,4,0.12,1,93 +19343,5664607,Brooklyn,Greenpoint,40.73363,-73.95333000000001,Private room,110,2,3,0.12,1,2 +19344,11082833,Queens,Astoria,40.76231,-73.92354,Entire home/apt,80,2,1,0.03,1,0 +19345,28809087,Manhattan,Chinatown,40.718090000000004,-73.99655,Private room,200,3,0,,1,0 +19346,67619393,Queens,Corona,40.737590000000004,-73.86350999999999,Private room,37,3,30,0.98,1,48 +19347,8977158,Brooklyn,Carroll Gardens,40.683840000000004,-73.99813,Entire home/apt,175,2,129,3.92,2,206 +19348,7610841,Manhattan,Upper West Side,40.80173,-73.96175,Entire home/apt,375,2,40,1.54,2,285 +19349,4970150,Manhattan,Upper West Side,40.78152,-73.97249000000001,Entire home/apt,249,2,18,0.55,1,0 +19350,65147357,Manhattan,East Harlem,40.795429999999996,-73.93539,Private room,80,1,15,0.45,1,0 +19351,17849213,Brooklyn,Williamsburg,40.71506,-73.93816,Private room,90,1,52,2.88,2,52 +19352,27506975,Brooklyn,Williamsburg,40.705529999999996,-73.94266999999999,Private room,90,2,1,0.03,1,0 +19353,35648363,Brooklyn,Brooklyn Heights,40.691829999999996,-73.99202,Entire home/apt,250,2,119,3.62,1,230 +19354,16098958,Manhattan,Theater District,40.76273,-73.98397,Entire home/apt,290,30,0,,96,0 +19355,73373504,Manhattan,Chelsea,40.74068,-74.00295,Entire home/apt,180,2,134,4.17,1,70 +19356,10238963,Brooklyn,Bay Ridge,40.62652,-74.0196,Entire home/apt,95,3,7,0.22,1,0 +19357,96996010,Manhattan,Murray Hill,40.74698,-73.97218000000001,Private room,205,1,23,0.91,1,363 +19358,37694131,Brooklyn,Prospect-Lefferts Gardens,40.65737,-73.94606999999999,Private room,87,1,11,0.36,1,361 +19359,30283594,Manhattan,Hell's Kitchen,40.76253,-73.99803,Entire home/apt,379,30,0,,121,185 +19360,64205687,Manhattan,Hell's Kitchen,40.76297,-73.98888000000001,Private room,69,4,126,3.81,1,163 +19361,30116728,Manhattan,Upper East Side,40.78324,-73.95149,Entire home/apt,125,5,1,0.05,1,0 +19362,99108929,Queens,Sunnyside,40.73707,-73.92081999999999,Shared room,30,7,4,0.43,2,206 +19363,25010766,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93058,Entire home/apt,150,2,61,1.83,1,0 +19364,37579015,Manhattan,Hell's Kitchen,40.756890000000006,-73.99315,Private room,98,1,42,1.27,5,126 +19365,1475812,Manhattan,Nolita,40.72104,-73.99498,Private room,130,2,123,3.79,3,59 +19366,60437472,Queens,Flushing,40.76491,-73.82561,Entire home/apt,122,3,32,1.06,1,84 +19367,41393276,Brooklyn,Flatbush,40.64083,-73.96436,Shared room,40,1,48,1.45,1,17 +19368,11304670,Brooklyn,Crown Heights,40.66469,-73.95125,Private room,29,5,3,0.1,1,206 +19369,99139601,Bronx,Mott Haven,40.81201,-73.90823,Entire home/apt,100,2,170,5.16,1,83 +19370,32545798,Brooklyn,Williamsburg,40.7146,-73.96321,Private room,90,1,1,0.03,5,0 +19371,22789212,Queens,Long Island City,40.74965,-73.94019,Private room,99,2,4,0.16,1,0 +19372,640117,Brooklyn,Williamsburg,40.70997,-73.9624,Entire home/apt,350,1,0,,5,364 +19373,48909179,Manhattan,Harlem,40.828340000000004,-73.9496,Private room,49,2,55,1.68,1,26 +19374,58254001,Manhattan,Upper West Side,40.80185,-73.96807,Private room,80,3,17,0.51,1,129 +19375,99205045,Bronx,Kingsbridge,40.88283,-73.89326,Private room,60,3,2,0.07,1,363 +19376,99202586,Staten Island,Randall Manor,40.63135,-74.13023000000001,Private room,79,2,21,0.64,5,355 +19377,26073602,Manhattan,East Harlem,40.79575,-73.94816999999999,Entire home/apt,145,2,101,3.07,1,0 +19378,26495690,Brooklyn,Crown Heights,40.671409999999995,-73.92643000000001,Entire home/apt,90,30,0,,1,0 +19379,99235017,Brooklyn,Sunset Park,40.6471,-74.0075,Entire home/apt,138,3,74,2.27,1,83 +19380,44350279,Manhattan,Gramercy,40.73352,-73.9873,Private room,90,2,87,2.62,4,242 +19381,4047395,Brooklyn,Clinton Hill,40.68572,-73.96627,Entire home/apt,95,14,5,0.17,2,186 +19382,21105084,Manhattan,Harlem,40.81674,-73.95291999999999,Shared room,65,1,23,0.81,2,0 +19383,12063606,Brooklyn,Crown Heights,40.67747,-73.9466,Entire home/apt,90,9,7,0.54,1,0 +19384,92708653,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93675,Entire home/apt,130,3,34,1.28,1,147 +19385,1419062,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.94278,Private room,70,2,48,1.45,1,72 +19386,35095754,Brooklyn,Red Hook,40.67668,-74.01252,Entire home/apt,115,6,0,,2,0 +19387,46322461,Brooklyn,Williamsburg,40.71996,-73.95767,Private room,100,1,7,0.21,1,0 +19388,99274925,Brooklyn,Fort Hamilton,40.6179,-74.03282,Shared room,40,1,24,0.78,1,89 +19389,71176935,Queens,Richmond Hill,40.69015,-73.8297,Private room,33,1,20,0.77,1,86 +19390,82854298,Queens,Cambria Heights,40.698370000000004,-73.74255,Private room,39,1,64,1.94,2,0 +19391,34687918,Manhattan,Upper West Side,40.792840000000005,-73.96858,Entire home/apt,120,1,0,,1,0 +19392,13069275,Manhattan,Harlem,40.82245,-73.95675,Private room,75,1,19,0.57,1,358 +19393,99346083,Queens,Queens Village,40.70811,-73.74103000000001,Entire home/apt,125,30,0,,1,365 +19394,15858985,Brooklyn,Bedford-Stuyvesant,40.688520000000004,-73.9499,Entire home/apt,140,5,0,,1,168 +19395,36861300,Brooklyn,Bushwick,40.6998,-73.92166999999999,Entire home/apt,70,2,72,2.2,1,146 +19396,20534715,Brooklyn,Williamsburg,40.71434,-73.96085,Entire home/apt,250,3,16,0.49,1,3 +19397,99392252,Brooklyn,Bedford-Stuyvesant,40.69115,-73.94526,Private room,65,1,194,5.88,4,0 +19398,1093220,Brooklyn,Bushwick,40.70435,-73.92551999999999,Private room,40,5,19,0.62,3,0 +19399,99392252,Brooklyn,Bedford-Stuyvesant,40.69143,-73.94301999999999,Private room,50,1,186,5.65,4,0 +19400,25673940,Queens,Long Island City,40.74422,-73.95432,Entire home/apt,78,3,5,0.16,1,0 +19401,99392252,Brooklyn,Bedford-Stuyvesant,40.693490000000004,-73.94439,Private room,50,1,171,5.17,4,0 +19402,75458625,Queens,Sunnyside,40.74693,-73.91896,Private room,72,3,9,0.49,4,365 +19403,75458625,Queens,Sunnyside,40.74777,-73.91685,Private room,108,3,36,1.18,4,356 +19404,75458625,Queens,Sunnyside,40.74795,-73.91744,Private room,108,3,6,0.36,4,29 +19405,10711869,Brooklyn,Downtown Brooklyn,40.69211,-73.99091999999999,Entire home/apt,170,2,21,0.64,1,8 +19406,90860,Brooklyn,Bedford-Stuyvesant,40.68271,-73.92990999999999,Entire home/apt,125,2,118,3.69,4,68 +19407,99434002,Manhattan,East Village,40.7246,-73.97877,Entire home/apt,149,2,88,2.69,1,76 +19408,19977987,Brooklyn,Bushwick,40.700509999999994,-73.93909000000001,Entire home/apt,125,1,12,0.38,1,0 +19409,31627488,Brooklyn,Williamsburg,40.719229999999996,-73.94258,Entire home/apt,70,1,86,2.59,1,192 +19410,7765138,Manhattan,Upper East Side,40.780570000000004,-73.95734,Entire home/apt,120,2,13,0.4,1,0 +19411,14010411,Brooklyn,Prospect Heights,40.67419,-73.96423,Private room,149,3,4,0.13,1,0 +19412,31747645,Brooklyn,Clinton Hill,40.68548,-73.96288,Private room,90,4,0,,2,0 +19413,31661494,Manhattan,Murray Hill,40.74817,-73.97595,Private room,150,2,74,2.34,1,112 +19414,390117,Manhattan,West Village,40.73142,-74.01,Private room,250,3,8,0.24,2,0 +19415,728477,Manhattan,Tribeca,40.72274,-74.00806999999999,Entire home/apt,375,5,3,0.33,1,296 +19416,9293730,Manhattan,East Harlem,40.78815,-73.9436,Entire home/apt,95,30,12,0.38,16,338 +19417,52950465,Manhattan,Midtown,40.75315,-73.97253,Entire home/apt,129,30,2,0.06,12,326 +19418,26943880,Brooklyn,Williamsburg,40.71529,-73.94532,Private room,80,3,6,0.2,1,0 +19419,4579626,Brooklyn,Park Slope,40.67633,-73.9793,Private room,45,1,45,1.36,2,77 +19420,3250450,Manhattan,Upper West Side,40.78895,-73.96754,Private room,53,31,2,0.06,18,249 +19421,61391963,Manhattan,Midtown,40.75592,-73.96891,Entire home/apt,125,30,8,0.36,91,342 +19422,95459395,Manhattan,Hell's Kitchen,40.7624,-73.99915,Entire home/apt,534,30,0,,18,365 +19423,28786801,Brooklyn,Bushwick,40.70268,-73.9265,Private room,65,1,3,0.09,2,0 +19424,95459395,Manhattan,Hell's Kitchen,40.76038,-73.99951,Entire home/apt,534,30,0,,18,365 +19425,95459395,Manhattan,Hell's Kitchen,40.76212,-73.99756,Entire home/apt,534,30,0,,18,365 +19426,95459395,Manhattan,Hell's Kitchen,40.76188,-73.99806,Entire home/apt,534,30,0,,18,365 +19427,95459395,Manhattan,Hell's Kitchen,40.76173,-73.99937,Entire home/apt,534,30,0,,18,365 +19428,23895443,Manhattan,Harlem,40.81545,-73.95806,Private room,99,1,2,0.09,1,35 +19429,95459395,Manhattan,Hell's Kitchen,40.7619,-73.99896,Entire home/apt,748,30,0,,18,365 +19430,95459395,Manhattan,Hell's Kitchen,40.76045,-73.99929,Entire home/apt,748,30,1,0.08,18,365 +19431,7529823,Brooklyn,Crown Heights,40.67453,-73.94537,Private room,45,2,109,3.3,1,131 +19432,99552750,Manhattan,Upper East Side,40.763459999999995,-73.96684,Entire home/apt,190,4,83,2.58,1,104 +19433,72596124,Queens,Jackson Heights,40.74912,-73.88667,Entire home/apt,80,1,202,6.13,1,143 +19434,19338842,Queens,Ditmars Steinway,40.775079999999996,-73.91230999999999,Entire home/apt,125,18,0,,1,0 +19435,95459395,Manhattan,Hell's Kitchen,40.760529999999996,-73.99809,Entire home/apt,748,30,0,,18,365 +19436,6218023,Brooklyn,Crown Heights,40.67749,-73.94386,Entire home/apt,99,180,4,0.12,1,365 +19437,39461895,Manhattan,Nolita,40.720209999999994,-73.99592,Entire home/apt,229,10,9,0.27,1,137 +19438,32052000,Brooklyn,Manhattan Beach,40.57821,-73.94122,Entire home/apt,55,4,91,2.82,2,215 +19439,99539943,Manhattan,Midtown,40.74828,-73.98401,Private room,189,1,4,0.12,1,365 +19440,99629743,Brooklyn,Clinton Hill,40.68769,-73.96604,Entire home/apt,449,2,78,2.47,2,347 +19441,16098958,Manhattan,Hell's Kitchen,40.76702,-73.98741,Entire home/apt,202,30,3,0.11,96,327 +19442,99643776,Manhattan,Lower East Side,40.718059999999994,-73.99351,Entire home/apt,250,3,41,1.42,2,147 +19443,49519202,Manhattan,SoHo,40.72576,-74.00381,Private room,85,5,0,,1,0 +19444,43718548,Manhattan,Inwood,40.8622,-73.93349,Private room,52,3,16,0.49,1,0 +19445,99651727,Bronx,Mott Haven,40.81072,-73.92349,Entire home/apt,120,2,26,0.85,1,260 +19446,10703290,Manhattan,Upper East Side,40.77344,-73.94911,Private room,90,2,61,1.84,3,0 +19447,39837217,Brooklyn,Bushwick,40.70012,-73.93775,Private room,74,3,16,0.48,2,131 +19448,99665419,Manhattan,SoHo,40.72391,-74.00658,Entire home/apt,75,4,9,0.53,1,0 +19449,62644193,Brooklyn,East Flatbush,40.64335,-73.92981,Private room,70,1,0,,1,157 +19450,1486872,Brooklyn,Gowanus,40.66881,-73.99178,Entire home/apt,147,5,85,2.58,2,0 +19451,30047867,Brooklyn,Bedford-Stuyvesant,40.68707,-73.94436999999999,Private room,50,2,3,0.09,1,0 +19452,24634123,Manhattan,East Village,40.72978,-73.98584,Entire home/apt,250,5,1,0.03,1,0 +19453,2276763,Manhattan,Harlem,40.81678,-73.93836,Private room,40,5,3,0.16,1,0 +19454,1098809,Manhattan,Chelsea,40.74244,-73.99781,Entire home/apt,200,3,41,1.24,1,1 +19455,10966079,Brooklyn,Williamsburg,40.70915,-73.96101999999999,Private room,80,4,116,3.5,2,133 +19456,42328181,Brooklyn,Williamsburg,40.71969,-73.94135,Private room,100,2,0,,1,0 +19457,8338942,Manhattan,Nolita,40.72228,-73.99582,Shared room,65,1,8,0.24,4,0 +19458,90771408,Brooklyn,South Slope,40.66565,-73.99172,Private room,70,1,30,0.91,1,297 +19459,96148809,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93479,Entire home/apt,150,2,100,3.26,1,0 +19460,96595601,Manhattan,Midtown,40.75966,-73.96313,Entire home/apt,135,3,21,0.67,1,0 +19461,99804239,Queens,Elmhurst,40.74262,-73.87907,Private room,51,2,100,3.05,1,296 +19462,99865195,Manhattan,Upper West Side,40.79772,-73.96213,Entire home/apt,335,4,59,1.89,1,263 +19463,8940513,Brooklyn,Park Slope,40.671479999999995,-73.97479,Entire home/apt,198,7,43,1.36,1,241 +19464,94945743,Manhattan,Lower East Side,40.71546,-73.98907,Private room,120,6,3,0.09,1,0 +19465,98726662,Brooklyn,Sheepshead Bay,40.60983,-73.95886999999999,Private room,39,2,26,0.98,3,101 +19466,7453255,Manhattan,East Village,40.73199,-73.98956,Private room,51,7,0,,1,0 +19467,94100727,Queens,Glendale,40.69426,-73.8964,Entire home/apt,87,2,36,1.11,1,0 +19468,30380688,Brooklyn,Bushwick,40.68502,-73.90883000000001,Entire home/apt,145,2,142,4.41,1,218 +19469,6051934,Staten Island,Midland Beach,40.56933,-74.09493,Private room,80,1,7,0.22,1,358 +19470,6119933,Brooklyn,Williamsburg,40.70908,-73.96146,Private room,90,2,2,0.09,2,0 +19471,5503249,Brooklyn,Bedford-Stuyvesant,40.68127,-73.92685999999999,Entire home/apt,125,7,29,0.95,1,347 +19472,59909443,Brooklyn,Bedford-Stuyvesant,40.677640000000004,-73.92241,Private room,75,3,5,0.15,1,145 +19473,27443229,Manhattan,Chinatown,40.7161,-73.99828000000001,Entire home/apt,140,2,43,1.32,1,0 +19474,74442807,Brooklyn,Bushwick,40.69477,-73.92611,Private room,2000,5,1,0.16,1,0 +19475,84141567,Queens,Maspeth,40.73577,-73.89981,Private room,75,1,1,0.12,3,173 +19476,39890192,Manhattan,Hell's Kitchen,40.76406,-73.98868,Entire home/apt,150,45,6,0.21,12,267 +19477,37082109,Brooklyn,Bay Ridge,40.62413,-74.03085,Entire home/apt,90,1,0,,1,0 +19478,99392252,Brooklyn,Bedford-Stuyvesant,40.691720000000004,-73.94445999999999,Private room,61,1,181,5.47,4,0 +19479,11845677,Brooklyn,Clinton Hill,40.68229,-73.96154,Entire home/apt,160,2,97,3.0,1,68 +19480,24880134,Brooklyn,Prospect Heights,40.67915,-73.96923000000001,Private room,69,14,7,0.33,3,0 +19481,14482375,Brooklyn,Greenpoint,40.72214,-73.94345,Private room,199,3,20,0.66,3,0 +19482,100718,Brooklyn,Clinton Hill,40.69278,-73.965,Entire home/apt,95,1,13,0.41,1,0 +19483,97521826,Brooklyn,Bedford-Stuyvesant,40.688159999999996,-73.95791,Private room,120,3,1,0.1,1,179 +19484,53301314,Manhattan,East Harlem,40.80832,-73.93889,Entire home/apt,200,3,58,2.12,1,152 +19485,6521189,Brooklyn,Williamsburg,40.70953,-73.96445,Entire home/apt,190,5,18,0.57,1,5 +19486,20915650,Manhattan,East Harlem,40.793240000000004,-73.94037,Private room,65,7,1,0.03,1,0 +19487,100107219,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94614,Entire home/apt,160,2,68,2.05,1,48 +19488,100113704,Manhattan,Upper East Side,40.76443,-73.96603,Entire home/apt,235,4,75,2.33,1,151 +19489,84562269,Queens,Queens Village,40.71935,-73.75383000000001,Private room,35,2,5,0.18,2,0 +19490,2500106,Brooklyn,Clinton Hill,40.68908,-73.9678,Private room,65,2,18,0.55,1,0 +19491,14676072,Manhattan,Gramercy,40.736259999999994,-73.98104000000001,Entire home/apt,180,3,0,,1,0 +19492,100128949,Queens,Long Island City,40.74364,-73.94676,Private room,55,14,20,0.61,4,2 +19493,100182541,Brooklyn,Greenpoint,40.73577,-73.95118000000001,Private room,50,20,2,0.07,1,0 +19494,24297098,Manhattan,Chinatown,40.718070000000004,-74.00215,Entire home/apt,100,6,1,0.03,1,0 +19495,100197679,Manhattan,Midtown,40.747679999999995,-73.98723000000001,Entire home/apt,195,1,2,0.06,1,351 +19496,100202479,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92864,Entire home/apt,100,3,86,3.02,1,25 +19497,7149725,Brooklyn,Bushwick,40.70236,-73.92232,Entire home/apt,185,5,2,0.06,1,0 +19498,23955743,Brooklyn,Park Slope,40.67879,-73.97438000000001,Entire home/apt,135,1,12,0.37,1,0 +19499,8598491,Manhattan,East Village,40.72275,-73.97598,Entire home/apt,175,2,27,0.82,1,63 +19500,40991179,Brooklyn,Williamsburg,40.72022,-73.95814,Entire home/apt,345,3,13,0.41,2,9 +19501,12214869,Brooklyn,Flatbush,40.63766,-73.96611,Entire home/apt,275,2,102,3.14,1,276 +19502,437960,Manhattan,Midtown,40.76135,-73.96645,Private room,230,8,4,0.17,1,87 +19503,12126100,Brooklyn,Williamsburg,40.715379999999996,-73.94712,Private room,85,2,26,0.8,1,221 +19504,10608644,Brooklyn,Bedford-Stuyvesant,40.68526,-73.94099,Entire home/apt,130,3,10,0.39,1,89 +19505,6588016,Queens,Long Island City,40.76112,-73.92631,Entire home/apt,79,3,43,1.35,1,105 +19506,37907767,Manhattan,Upper East Side,40.7673,-73.96043,Private room,110,1,1,0.03,1,0 +19507,96424121,Queens,St. Albans,40.7036,-73.76637,Private room,63,1,63,1.91,3,363 +19508,55948559,Bronx,Pelham Gardens,40.86663,-73.84139,Private room,35,1,117,4.66,4,34 +19509,66602200,Brooklyn,Park Slope,40.67688,-73.97601999999999,Private room,100,2,131,3.97,1,126 +19510,80379,Manhattan,West Village,40.7359,-74.00191,Private room,120,1,107,3.25,1,83 +19511,39476034,Queens,Jamaica,40.67203,-73.76711,Private room,159,1,0,,2,179 +19512,100401692,Brooklyn,East Flatbush,40.6393,-73.9472,Entire home/apt,90,3,53,1.61,1,201 +19513,100421535,Manhattan,SoHo,40.72524,-74.00218000000001,Entire home/apt,350,5,2,0.06,1,0 +19514,51779729,Brooklyn,Williamsburg,40.717209999999994,-73.95965,Entire home/apt,140,28,14,0.42,1,234 +19515,8962305,Manhattan,Lower East Side,40.712140000000005,-73.98955,Private room,90,5,10,0.3,3,20 +19516,76104209,Manhattan,Chelsea,40.74476,-73.99266,Entire home/apt,487,30,0,,33,364 +19517,17301301,Brooklyn,Williamsburg,40.70981,-73.94239,Entire home/apt,110,2,11,0.35,1,0 +19518,76104209,Manhattan,Chelsea,40.74633,-73.99201,Entire home/apt,300,30,0,,33,364 +19519,1427352,Brooklyn,Bedford-Stuyvesant,40.690979999999996,-73.92622,Private room,40,2,2,0.06,1,0 +19520,2456412,Brooklyn,Williamsburg,40.71524,-73.96229,Entire home/apt,200,2,3,0.09,1,0 +19521,97536353,Queens,Arverne,40.59055,-73.79281,Private room,60,1,5,0.16,2,158 +19522,1781401,Brooklyn,Bedford-Stuyvesant,40.68714,-73.93443,Entire home/apt,155,4,44,1.71,1,98 +19523,15055897,Brooklyn,Clinton Hill,40.69043,-73.96736,Private room,75,2,1,0.03,2,0 +19524,82854298,Queens,Cambria Heights,40.698570000000004,-73.74225,Private room,47,1,63,1.95,2,0 +19525,263882,Brooklyn,Bedford-Stuyvesant,40.68084,-73.91116,Entire home/apt,139,2,151,4.64,2,284 +19526,68787921,Brooklyn,Bedford-Stuyvesant,40.68817,-73.92319,Private room,39,3,33,1.03,4,146 +19527,515095,Brooklyn,Carroll Gardens,40.67855,-74.00075,Private room,79,2,74,2.24,2,45 +19528,62605071,Brooklyn,Coney Island,40.57505,-74.00161,Private room,95,1,76,2.44,2,163 +19529,100586983,Brooklyn,East New York,40.66733,-73.88348,Entire home/apt,93,1,209,6.35,1,86 +19530,24346282,Brooklyn,Park Slope,40.67729,-73.98122,Private room,71,7,12,0.36,1,0 +19531,96101938,Brooklyn,Bushwick,40.69636,-73.92482,Entire home/apt,88,2,19,0.62,1,0 +19532,78276061,Brooklyn,Flatlands,40.618629999999996,-73.93183,Private room,55,2,39,1.27,1,247 +19533,74815132,Manhattan,Upper West Side,40.78825,-73.97231,Entire home/apt,115,5,5,0.16,1,0 +19534,19313463,Brooklyn,Windsor Terrace,40.65136,-73.9746,Entire home/apt,75,5,25,0.78,1,6 +19535,5598880,Manhattan,Upper West Side,40.79985,-73.96138,Entire home/apt,135,7,7,0.22,1,99 +19536,23744032,Manhattan,West Village,40.7365,-73.99750999999999,Entire home/apt,209,2,157,4.8,1,16 +19537,95623010,Manhattan,Upper West Side,40.7762,-73.97944,Entire home/apt,185,2,145,4.59,1,215 +19538,6433320,Brooklyn,Bushwick,40.69907,-73.92115,Private room,40,5,0,,1,0 +19539,52894477,Brooklyn,Crown Heights,40.67033,-73.96161,Private room,48,30,3,0.24,1,136 +19540,76104209,Manhattan,Upper East Side,40.760999999999996,-73.9615,Entire home/apt,154,30,0,,33,342 +19541,100721907,Manhattan,Chelsea,40.74929,-73.99658000000001,Private room,78,3,87,2.68,1,44 +19542,76104209,Manhattan,Upper East Side,40.75954,-73.96099,Entire home/apt,163,30,0,,33,364 +19543,100746171,Manhattan,East Village,40.72515,-73.9839,Entire home/apt,129,3,76,2.32,1,74 +19544,100757200,Brooklyn,Bay Ridge,40.634609999999995,-74.02450999999999,Entire home/apt,126,1,188,5.81,1,295 +19545,42986446,Brooklyn,Bedford-Stuyvesant,40.691359999999996,-73.92803,Entire home/apt,229,2,8,0.25,1,0 +19546,43227390,Manhattan,East Village,40.722159999999995,-73.97806,Private room,110,3,7,0.22,1,0 +19547,9329143,Manhattan,East Harlem,40.79931,-73.94196,Entire home/apt,170,6,3,0.16,1,0 +19548,84841205,Queens,Astoria,40.76227,-73.92316,Private room,55,4,104,3.29,1,53 +19549,1327518,Brooklyn,Bushwick,40.69061,-73.91348,Private room,40,30,0,,1,5 +19550,17328624,Brooklyn,Prospect-Lefferts Gardens,40.657309999999995,-73.94693000000001,Entire home/apt,200,5,9,0.29,1,166 +19551,4808861,Manhattan,Midtown,40.75622,-73.96768,Private room,125,1,0,,1,0 +19552,16641743,Manhattan,East Village,40.72952,-73.98388,Entire home/apt,140,7,1,0.03,1,0 +19553,15353668,Manhattan,Midtown,40.75228,-73.97185999999999,Entire home/apt,144,28,0,,1,90 +19554,100829279,Manhattan,Midtown,40.76195,-73.97148,Entire home/apt,210,1,202,6.4,3,211 +19555,87393824,Queens,Jamaica Hills,40.71245,-73.79805999999999,Private room,65,1,16,0.5,1,0 +19556,76667674,Manhattan,Upper East Side,40.76397,-73.96245,Entire home/apt,186,2,109,3.42,1,77 +19557,3270460,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.95865,Entire home/apt,100,5,54,1.69,2,0 +19558,11742138,Brooklyn,Flatbush,40.63667,-73.96705,Entire home/apt,250,4,3,1.07,1,35 +19559,72029809,Brooklyn,Bedford-Stuyvesant,40.69364,-73.93303,Private room,89,5,1,0.03,1,0 +19560,98235552,Manhattan,Harlem,40.823640000000005,-73.9533,Private room,60,3,0,,1,0 +19561,8712217,Brooklyn,Greenpoint,40.72667,-73.95221,Entire home/apt,200,4,0,,1,0 +19562,531006,Manhattan,Upper West Side,40.79039,-73.96789,Entire home/apt,180,4,9,0.37,1,0 +19563,100970583,Queens,Woodhaven,40.687740000000005,-73.8593,Private room,50,4,82,2.52,2,215 +19564,18727732,Brooklyn,Williamsburg,40.71783,-73.94104,Entire home/apt,160,3,12,0.93,1,0 +19565,100971588,Bronx,Highbridge,40.838440000000006,-73.92489,Entire home/apt,75,4,37,1.21,1,26 +19566,80262218,Manhattan,Upper East Side,40.77117,-73.95599,Entire home/apt,145,30,5,0.23,3,177 +19567,57125089,Brooklyn,Bedford-Stuyvesant,40.68118,-73.91107,Entire home/apt,119,2,152,4.68,1,14 +19568,14422390,Queens,Astoria,40.76625,-73.93295,Private room,49,1,12,0.37,1,0 +19569,36743809,Brooklyn,Williamsburg,40.71443,-73.94153,Entire home/apt,300,2,2,0.06,1,310 +19570,1475812,Manhattan,Nolita,40.71995,-73.99461,Private room,140,2,66,2.05,3,44 +19571,432149,Brooklyn,Bedford-Stuyvesant,40.69905,-73.94451,Entire home/apt,98,2,0,,1,0 +19572,8977158,Brooklyn,Carroll Gardens,40.683209999999995,-73.99681,Entire home/apt,199,2,116,3.78,2,230 +19573,62256292,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93648,Entire home/apt,125,3,91,2.8,1,78 +19574,1475015,Manhattan,Midtown,40.75105,-73.97045,Entire home/apt,95,30,0,,52,297 +19575,21640001,Queens,Rego Park,40.7184,-73.86015,Entire home/apt,95,2,7,0.23,1,345 +19576,20691787,Brooklyn,Greenpoint,40.72482,-73.95408,Private room,60,1,92,2.85,1,0 +19577,68094795,Manhattan,Upper East Side,40.767540000000004,-73.96166,Entire home/apt,249,3,55,1.75,2,1 +19578,48498971,Brooklyn,Crown Heights,40.677409999999995,-73.95385999999999,Entire home/apt,160,30,2,0.09,1,0 +19579,101131690,Manhattan,Hell's Kitchen,40.757509999999996,-73.99401,Entire home/apt,175,1,22,1.04,1,12 +19580,101131904,Manhattan,Harlem,40.83124,-73.94501,Private room,40,2,59,1.9,1,39 +19581,844442,Brooklyn,Williamsburg,40.70758,-73.94197,Private room,115,2,0,,1,0 +19582,2305944,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.94532,Entire home/apt,79,5,48,1.64,1,0 +19583,22067387,Manhattan,Flatiron District,40.7385,-73.98782,Entire home/apt,236,1,23,0.71,1,0 +19584,86408170,Manhattan,Chelsea,40.74368,-73.99825,Private room,120,1,1,0.03,1,0 +19585,19282734,Brooklyn,Bedford-Stuyvesant,40.681340000000006,-73.92226,Entire home/apt,120,3,117,3.6,1,232 +19586,8832456,Brooklyn,Kensington,40.643809999999995,-73.97018,Private room,54,1,132,4.03,1,70 +19587,8164085,Queens,Ridgewood,40.69692,-73.90008,Private room,56,2,9,0.4,1,80 +19588,30653537,Manhattan,East Harlem,40.78941,-73.94881,Private room,60,1,8,0.25,1,0 +19589,22963797,Brooklyn,Williamsburg,40.71089,-73.96627,Private room,90,2,73,2.31,1,338 +19590,2394687,Brooklyn,Williamsburg,40.70005,-73.95101,Entire home/apt,260,1,1,0.11,1,88 +19591,62641421,Manhattan,Upper East Side,40.7754,-73.95236,Entire home/apt,125,2,8,0.26,1,0 +19592,101262037,Queens,Long Island City,40.75378,-73.93449,Private room,65,1,5,0.15,1,66 +19593,99145869,Brooklyn,Williamsburg,40.71822,-73.95134,Entire home/apt,120,30,6,0.29,1,164 +19594,11262790,Brooklyn,Greenpoint,40.724740000000004,-73.94859,Private room,55,5,3,0.09,1,0 +19595,3137269,Brooklyn,Crown Heights,40.67587,-73.93175,Entire home/apt,130,3,7,0.21,1,0 +19596,101276529,Queens,Flushing,40.75558,-73.83343,Private room,96,1,73,2.3,1,343 +19597,1314045,Brooklyn,Williamsburg,40.713609999999996,-73.94804,Private room,109,1,228,6.97,3,326 +19598,1314045,Brooklyn,Williamsburg,40.71326,-73.94946999999999,Private room,99,1,220,6.71,3,352 +19599,48282875,Brooklyn,Williamsburg,40.70604,-73.94306999999999,Private room,55,3,4,0.13,1,0 +19600,97186572,Manhattan,West Village,40.73088,-74.00378,Entire home/apt,300,1,59,1.83,1,73 +19601,19153021,Manhattan,East Harlem,40.78982,-73.94263000000001,Entire home/apt,220,7,0,,1,0 +19602,59962617,Manhattan,East Village,40.72635,-73.98578,Private room,155,1,1,0.04,1,0 +19603,20414163,Manhattan,Harlem,40.81102,-73.94712,Entire home/apt,133,4,23,0.72,1,5 +19604,57812046,Brooklyn,Flatbush,40.64008,-73.96579,Entire home/apt,180,3,5,0.15,2,0 +19605,62413233,Brooklyn,Bedford-Stuyvesant,40.67718,-73.91405,Entire home/apt,135,4,9,0.29,1,0 +19606,101378990,Manhattan,Midtown,40.746340000000004,-73.98704000000001,Private room,179,1,4,0.13,1,337 +19607,26504092,Manhattan,Harlem,40.81407,-73.95092,Entire home/apt,100,3,2,0.06,1,0 +19608,34061867,Manhattan,Upper East Side,40.770790000000005,-73.95922,Private room,100,2,17,0.52,1,4 +19609,9864136,Brooklyn,Bushwick,40.68602,-73.91521999999999,Private room,45,1,2,0.06,26,250 +19610,1446988,Manhattan,East Village,40.73281,-73.98686,Entire home/apt,250,4,12,0.37,1,3 +19611,16098958,Manhattan,Murray Hill,40.744609999999994,-73.97216,Entire home/apt,180,30,0,,96,320 +19612,1407676,Brooklyn,Williamsburg,40.716229999999996,-73.95777,Private room,350,1,19,0.64,4,244 +19613,2134232,Manhattan,Tribeca,40.719159999999995,-74.01177,Private room,95,1,22,0.68,2,0 +19614,78832142,Manhattan,Upper East Side,40.77851,-73.94985,Entire home/apt,218,2,60,1.85,1,305 +19615,101435219,Brooklyn,Bedford-Stuyvesant,40.69226,-73.93458000000001,Entire home/apt,176,2,80,2.52,2,197 +19616,50145118,Manhattan,Harlem,40.8091,-73.94241,Private room,89,1,3,0.1,3,0 +19617,10773304,Manhattan,Lower East Side,40.71983,-73.98196,Entire home/apt,160,3,90,3.17,1,147 +19618,101113595,Brooklyn,Bedford-Stuyvesant,40.68012,-73.93862,Private room,89,2,2,0.07,1,0 +19619,101493347,Bronx,Wakefield,40.89121,-73.85131,Entire home/apt,79,3,18,0.57,1,5 +19620,37447483,Manhattan,Harlem,40.80102,-73.95401,Private room,70,3,62,1.94,1,73 +19621,8615868,Brooklyn,Park Slope,40.678290000000004,-73.97891,Entire home/apt,100,1,0,,1,0 +19622,4075380,Brooklyn,Williamsburg,40.715509999999995,-73.96356,Entire home/apt,150,30,3,0.09,1,179 +19623,7728010,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95876,Private room,63,5,9,0.28,1,342 +19624,34875504,Brooklyn,Bushwick,40.68992,-73.90951,Private room,63,2,20,0.62,1,0 +19625,18192996,Queens,Ditmars Steinway,40.7785,-73.91693000000001,Private room,55,1,5,0.15,2,0 +19626,22118802,Brooklyn,Bushwick,40.7007,-73.92359,Private room,90,3,3,0.09,1,0 +19627,101529107,Brooklyn,Williamsburg,40.711240000000004,-73.96451,Entire home/apt,164,2,1,0.03,1,0 +19628,74782658,Queens,Glendale,40.70075,-73.88743000000001,Private room,40,1,117,3.63,1,300 +19629,14521207,Brooklyn,Greenpoint,40.72831,-73.95634,Entire home/apt,250,3,2,0.11,1,0 +19630,101550977,Manhattan,Financial District,40.704879999999996,-74.00744,Private room,95,5,45,1.4,2,272 +19631,101550977,Manhattan,Financial District,40.70602,-74.00891,Private room,90,4,61,1.9,2,246 +19632,25685076,Brooklyn,Kensington,40.63725,-73.97345,Private room,111,1,74,2.28,1,156 +19633,101557399,Brooklyn,East Flatbush,40.6418,-73.93947,Entire home/apt,120,2,56,1.82,1,85 +19634,34331702,Brooklyn,Bedford-Stuyvesant,40.68887,-73.92903000000001,Entire home/apt,95,4,20,1.81,1,14 +19635,69652097,Manhattan,Upper West Side,40.80131,-73.97114,Entire home/apt,175,21,5,0.19,1,0 +19636,101569412,Manhattan,East Harlem,40.78918,-73.94651999999999,Entire home/apt,100,7,17,0.54,1,11 +19637,39668851,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95075,Entire home/apt,100,5,11,0.44,1,298 +19638,909710,Brooklyn,Williamsburg,40.706340000000004,-73.95338000000001,Private room,49,5,17,0.53,1,0 +19639,101604346,Brooklyn,Bay Ridge,40.63447,-74.02455,Entire home/apt,116,1,213,6.55,1,314 +19640,15600805,Manhattan,Chelsea,40.73975,-73.99848,Entire home/apt,265,3,2,0.06,1,0 +19641,148108,Manhattan,Lower East Side,40.722970000000004,-73.98946,Private room,333,1,40,1.27,2,62 +19642,101632253,Manhattan,East Harlem,40.78857,-73.94951999999999,Private room,100,3,20,0.66,1,188 +19643,101643312,Queens,Queens Village,40.728159999999995,-73.73874,Entire home/apt,320,30,0,,2,180 +19644,16098958,Manhattan,Theater District,40.76258,-73.98575,Entire home/apt,155,30,1,0.03,96,309 +19645,3398280,Brooklyn,Prospect-Lefferts Gardens,40.657759999999996,-73.96174,Private room,65,20,3,0.39,1,35 +19646,101643312,Queens,Queens Village,40.72828,-73.73541999999999,Private room,149,30,0,,2,90 +19647,2908180,Manhattan,East Harlem,40.7898,-73.94213,Private room,125,5,59,2.03,1,110 +19648,57109253,Brooklyn,Williamsburg,40.71365,-73.96231999999999,Private room,70,3,12,0.38,1,188 +19649,101653570,Brooklyn,Bedford-Stuyvesant,40.68955,-73.95116999999999,Private room,59,2,195,6.01,3,40 +19650,8076786,Brooklyn,Sunset Park,40.658879999999996,-74.00044,Private room,89,1,2,0.1,3,281 +19651,101653570,Brooklyn,Bedford-Stuyvesant,40.68908,-73.95545,Private room,59,2,171,5.26,3,57 +19652,85726670,Manhattan,Upper East Side,40.77043,-73.95557,Entire home/apt,150,3,2,0.08,1,0 +19653,96098402,Manhattan,Midtown,40.75365,-73.97151,Private room,369,3,8,0.25,12,365 +19654,17043144,Brooklyn,Bushwick,40.700179999999996,-73.93858,Private room,55,3,1,0.03,1,0 +19655,83246395,Manhattan,Hell's Kitchen,40.75764,-73.98963,Private room,150,2,0,,1,0 +19656,44706272,Brooklyn,Williamsburg,40.70835,-73.955,Private room,45,3,4,0.13,1,0 +19657,101712494,Queens,Rosedale,40.67126,-73.72981999999999,Private room,55,2,4,0.13,2,349 +19658,101712494,Queens,Rosedale,40.671040000000005,-73.73006,Private room,55,2,12,0.37,2,355 +19659,8881924,Manhattan,Little Italy,40.71819,-73.99786,Entire home/apt,196,6,6,0.2,1,268 +19660,11075539,Brooklyn,Bushwick,40.69688,-73.93396,Private room,69,2,96,2.93,1,36 +19661,25851147,Manhattan,Harlem,40.81736,-73.95294,Private room,65,3,49,1.5,1,46 +19662,6109872,Manhattan,Lower East Side,40.7209,-73.98428,Private room,100,2,16,0.5,1,66 +19663,51830483,Manhattan,Hell's Kitchen,40.76028,-73.98846,Private room,92,1,140,4.29,2,152 +19664,5321130,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95245,Entire home/apt,365,5,77,2.44,1,112 +19665,101772343,Brooklyn,Williamsburg,40.71585,-73.95325,Entire home/apt,136,30,8,0.3,1,0 +19666,1515114,Manhattan,East Village,40.72503,-73.97851,Entire home/apt,300,10,4,0.53,1,16 +19667,18314550,Brooklyn,Sunset Park,40.66451,-73.99342,Entire home/apt,175,2,6,0.2,1,18 +19668,87370616,Bronx,Longwood,40.82006,-73.90332,Private room,80,2,77,2.37,2,365 +19669,3033622,Brooklyn,Windsor Terrace,40.65237,-73.97365,Entire home/apt,90,7,1,0.05,2,210 +19670,3484474,Brooklyn,Bedford-Stuyvesant,40.68561,-73.95430999999999,Entire home/apt,150,30,13,0.41,1,220 +19671,12210788,Manhattan,Upper West Side,40.795159999999996,-73.96813,Private room,119,1,117,3.61,1,365 +19672,24867105,Queens,Ditmars Steinway,40.77176,-73.90885,Private room,75,3,0,,1,0 +19673,903086,Manhattan,Lower East Side,40.71206,-73.98824,Private room,99,5,0,,1,0 +19674,9718720,Brooklyn,Williamsburg,40.71889,-73.95786,Entire home/apt,450,5,15,0.49,1,60 +19675,14258860,Brooklyn,Williamsburg,40.718090000000004,-73.95283,Entire home/apt,200,5,1,0.03,1,0 +19676,5435740,Brooklyn,Prospect-Lefferts Gardens,40.659890000000004,-73.95385999999999,Entire home/apt,99,2,96,2.98,1,0 +19677,24425145,Manhattan,Upper East Side,40.76395,-73.96195999999999,Entire home/apt,270,1,3,0.1,1,0 +19678,16098958,Manhattan,Murray Hill,40.74437,-73.97295,Entire home/apt,190,30,4,0.13,96,331 +19679,22541573,Manhattan,Chelsea,40.74565,-73.99183000000001,Entire home/apt,205,30,1,0.05,87,365 +19680,868197,Brooklyn,Bushwick,40.69945,-73.92255,Private room,39,16,38,1.21,1,192 +19681,101976032,Manhattan,Chelsea,40.74407,-73.99365999999999,Entire home/apt,499,4,69,2.13,1,280 +19682,30283594,Manhattan,Hell's Kitchen,40.7617,-73.99762,Entire home/apt,275,30,2,0.08,121,365 +19683,101982307,Brooklyn,Williamsburg,40.71512,-73.95655,Private room,80,2,29,0.9,2,34 +19684,46990279,Manhattan,Tribeca,40.71634,-74.00505,Entire home/apt,1500,2,4,0.12,1,365 +19685,90025899,Brooklyn,DUMBO,40.704159999999995,-73.98539,Private room,105,2,146,4.52,1,62 +19686,12733096,Manhattan,East Village,40.73296,-73.98884,Entire home/apt,275,2,0,,1,0 +19687,88895712,Brooklyn,Williamsburg,40.71738,-73.94527,Entire home/apt,150,4,11,0.36,1,0 +19688,795031,Brooklyn,Williamsburg,40.708090000000006,-73.9519,Private room,70,2,117,3.71,2,35 +19689,6834967,Manhattan,Chelsea,40.741240000000005,-74.00025,Entire home/apt,150,6,1,0.03,1,0 +19690,97657342,Brooklyn,Sheepshead Bay,40.60396,-73.95761,Entire home/apt,146,3,98,3.11,1,79 +19691,28966357,Manhattan,East Harlem,40.786970000000004,-73.94469000000001,Private room,99,2,90,2.79,3,92 +19692,14370,Brooklyn,Park Slope,40.67358,-73.97171,Entire home/apt,125,7,1,0.03,1,0 +19693,102016115,Brooklyn,Windsor Terrace,40.651309999999995,-73.97865999999999,Private room,125,2,89,2.78,1,310 +19694,101883929,Brooklyn,Boerum Hill,40.68326,-73.98004,Entire home/apt,182,4,83,2.82,1,254 +19695,16878736,Brooklyn,Bedford-Stuyvesant,40.67989,-73.94298,Private room,55,2,16,0.52,1,311 +19696,5450219,Brooklyn,Boerum Hill,40.68501,-73.98581,Entire home/apt,255,3,16,0.52,1,33 +19697,39890192,Manhattan,Hell's Kitchen,40.76383,-73.98947,Entire home/apt,160,45,17,0.54,12,281 +19698,39890192,Manhattan,Hell's Kitchen,40.76399,-73.98971,Entire home/apt,160,45,16,0.52,12,345 +19699,102072740,Manhattan,Washington Heights,40.83837,-73.94224,Private room,75,1,2,0.06,1,0 +19700,61842904,Brooklyn,Prospect Heights,40.67821,-73.96588,Entire home/apt,125,30,6,0.23,3,55 +19701,24215329,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92271,Private room,60,2,0,,1,0 +19702,102075715,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95224,Private room,80,1,1,1.0,1,350 +19703,101978485,Manhattan,Two Bridges,40.71165,-73.9993,Entire home/apt,125,1,59,1.82,1,88 +19704,102080453,Brooklyn,Bedford-Stuyvesant,40.694,-73.94675,Private room,54,1,166,5.09,2,0 +19705,45009,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95934,Entire home/apt,170,2,149,4.6,1,1 +19706,44498923,Queens,Sunnyside,40.74075,-73.92619,Entire home/apt,115,3,143,4.43,1,3 +19707,59059294,Brooklyn,Kensington,40.6378,-73.9696,Private room,65,4,7,0.22,1,0 +19708,1546439,Manhattan,East Village,40.72868,-73.99036,Private room,50,4,1,0.03,1,0 +19709,12475280,Brooklyn,Bedford-Stuyvesant,40.688990000000004,-73.95555,Private room,44,28,0,,1,0 +19710,22541573,Manhattan,Chelsea,40.74584,-73.99103000000001,Entire home/apt,229,30,3,0.12,87,364 +19711,90095700,Manhattan,Financial District,40.70966,-74.00761999999999,Entire home/apt,375,29,0,,1,283 +19712,102103075,Brooklyn,Crown Heights,40.67923,-73.96285999999999,Entire home/apt,139,1,216,6.64,1,257 +19713,102108786,Brooklyn,East New York,40.6724,-73.88839,Private room,300,3,8,0.26,2,80 +19714,24360599,Brooklyn,South Slope,40.66132,-73.98678000000001,Entire home/apt,85,5,5,0.16,1,0 +19715,83627325,Queens,Sunnyside,40.74481,-73.91671,Private room,139,1,3,0.12,4,365 +19716,33626735,Brooklyn,Crown Heights,40.67143,-73.92971,Entire home/apt,83,30,7,0.22,1,311 +19717,52835849,Brooklyn,Bushwick,40.70165,-73.92938000000001,Private room,50,7,0,,2,89 +19718,102080453,Brooklyn,Bedford-Stuyvesant,40.69413,-73.94481,Private room,49,1,153,4.72,2,0 +19719,7755859,Manhattan,East Village,40.72891,-73.98796999999999,Entire home/apt,120,6,46,1.75,1,40 +19720,101653570,Brooklyn,Williamsburg,40.70006,-73.95388,Private room,79,2,167,5.14,3,21 +19721,8076496,Queens,Astoria,40.76982,-73.93500999999999,Private room,60,4,6,0.28,1,96 +19722,35667639,Manhattan,Stuyvesant Town,40.73167,-73.98146,Private room,175,1,6,0.19,1,180 +19723,7607175,Manhattan,Lower East Side,40.7208,-73.9819,Private room,75,5,1,0.05,1,157 +19724,20237633,Queens,Ridgewood,40.70639,-73.90058,Private room,50,2,13,0.4,1,0 +19725,66823224,Manhattan,Upper West Side,40.793859999999995,-73.97223000000001,Private room,80,1,111,3.51,1,42 +19726,70963475,Manhattan,Upper West Side,40.80237,-73.96601,Private room,110,7,1,0.03,1,87 +19727,33924547,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95339,Private room,130,3,0,,1,0 +19728,22195599,Manhattan,East Village,40.72025,-73.97901,Private room,67,10,14,0.49,1,7 +19729,28189446,Staten Island,Eltingville,40.541059999999995,-74.14666,Entire home/apt,70,5,83,2.56,1,291 +19730,102218558,Queens,Jackson Heights,40.75523,-73.88418,Private room,70,1,52,1.61,1,0 +19731,58390804,Brooklyn,Flatbush,40.6459,-73.9642,Entire home/apt,153,3,64,2.07,1,277 +19732,102112347,Brooklyn,Park Slope,40.67427,-73.97652,Entire home/apt,350,2,22,0.69,1,21 +19733,391488,Brooklyn,Prospect-Lefferts Gardens,40.65762,-73.96129,Private room,500,1,0,,1,89 +19734,102228163,Brooklyn,Carroll Gardens,40.67844,-74.00028,Entire home/apt,90,7,1,0.07,3,50 +19735,25495114,Manhattan,East Village,40.73016,-73.98170999999999,Entire home/apt,178,9,22,0.71,1,0 +19736,12495861,Manhattan,Upper West Side,40.800959999999996,-73.96758,Private room,60,1,0,,1,0 +19737,30283594,Manhattan,Hell's Kitchen,40.766259999999996,-73.98338000000001,Entire home/apt,369,30,1,0.06,121,345 +19738,61601937,Queens,Woodside,40.742459999999994,-73.90125,Private room,40,1,7,0.23,1,0 +19739,102251846,Brooklyn,Boerum Hill,40.68898,-73.98751,Entire home/apt,160,2,127,3.9,1,270 +19740,64336536,Brooklyn,Williamsburg,40.71805,-73.94088,Private room,95,4,0,,1,0 +19741,73561233,Manhattan,Lower East Side,40.71853,-73.98911,Private room,86,5,0,,1,0 +19742,78421449,Brooklyn,Bedford-Stuyvesant,40.68631,-73.92629000000001,Private room,200,2,0,,1,0 +19743,26020769,Brooklyn,Prospect-Lefferts Gardens,40.65678,-73.95154000000001,Private room,99,2,5,0.16,1,364 +19744,84141567,Queens,Maspeth,40.73529,-73.90219,Private room,65,4,0,,3,0 +19745,100970583,Queens,Woodhaven,40.688190000000006,-73.86079000000001,Private room,45,4,22,0.68,2,266 +19746,27260699,Brooklyn,Bushwick,40.69382,-73.90925,Shared room,28,1,117,4.56,4,118 +19747,10146370,Manhattan,Chinatown,40.7152,-73.99947,Entire home/apt,159,6,39,1.31,1,351 +19748,102357305,Brooklyn,Gowanus,40.67876,-73.9904,Entire home/apt,250,5,40,1.32,1,70 +19749,11921184,Manhattan,East Village,40.72461,-73.98172,Private room,85,2,37,1.2,1,6 +19750,55149412,Manhattan,Lower East Side,40.71248,-73.98662,Entire home/apt,160,1,73,2.38,4,229 +19751,20241220,Brooklyn,Bedford-Stuyvesant,40.68186,-73.92173000000001,Private room,50,2,0,,1,0 +19752,9439324,Brooklyn,Bushwick,40.68844,-73.90531,Private room,49,1,74,2.42,3,53 +19753,102383709,Manhattan,Harlem,40.82914,-73.94736,Private room,69,4,153,4.74,2,125 +19754,5568352,Brooklyn,Fort Greene,40.68718,-73.97289,Entire home/apt,200,2,2,2.0,1,15 +19755,9549442,Brooklyn,Red Hook,40.67749,-74.00761,Private room,62,5,6,0.19,1,0 +19756,34506361,Manhattan,Murray Hill,40.74686,-73.97514,Entire home/apt,400,1,17,0.54,2,364 +19757,18192430,Brooklyn,Fort Greene,40.6967,-73.97476999999999,Private room,80,1,53,2.15,1,0 +19758,37433861,Queens,Kew Gardens Hills,40.72712,-73.8308,Entire home/apt,105,3,4,0.12,1,1 +19759,41191579,Brooklyn,Crown Heights,40.67034,-73.93902,Entire home/apt,87,1,9,0.3,3,0 +19760,30593595,Brooklyn,Bushwick,40.68442,-73.9083,Entire home/apt,99,3,126,3.93,1,46 +19761,16494382,Queens,Ridgewood,40.70735,-73.89343000000001,Private room,20,7,0,,1,89 +19762,102415020,Brooklyn,Williamsburg,40.70653,-73.93864,Entire home/apt,109,4,91,3.31,1,212 +19763,70403406,Manhattan,Upper West Side,40.80258,-73.9676,Private room,75,2,8,0.26,1,0 +19764,13454974,Manhattan,Midtown,40.74665,-73.98042,Entire home/apt,175,2,11,0.6,1,88 +19765,102478101,Manhattan,Hell's Kitchen,40.759679999999996,-73.99797,Entire home/apt,289,2,4,0.13,1,0 +19766,6119933,Brooklyn,Williamsburg,40.70944,-73.96161,Entire home/apt,209,2,23,0.72,2,11 +19767,102488175,Brooklyn,Bushwick,40.69748,-73.92588,Entire home/apt,75,2,84,2.61,1,322 +19768,102482048,Brooklyn,Bushwick,40.68224,-73.90739,Private room,35,2,106,3.26,4,349 +19769,61391963,Manhattan,Upper East Side,40.77789,-73.95473,Entire home/apt,117,30,1,0.75,91,311 +19770,102500495,Brooklyn,East Flatbush,40.66048,-73.93335,Entire home/apt,80,1,127,6.54,1,7 +19771,18143446,Manhattan,Hell's Kitchen,40.7659,-73.98371,Entire home/apt,250,15,1,0.35,1,52 +19772,4110869,Manhattan,Harlem,40.82284,-73.95546,Private room,50,30,4,0.14,2,365 +19773,10398617,Brooklyn,Williamsburg,40.7121,-73.95891999999999,Private room,70,2,19,0.6,1,19 +19774,11727149,Brooklyn,Williamsburg,40.70687,-73.9425,Entire home/apt,150,3,19,0.59,1,0 +19775,102518726,Manhattan,Financial District,40.709590000000006,-74.00646,Entire home/apt,145,3,2,0.06,1,0 +19776,18351549,Manhattan,West Village,40.73428,-73.99969,Entire home/apt,221,30,3,0.13,1,0 +19777,102526456,Brooklyn,Bedford-Stuyvesant,40.68858,-73.92211999999999,Entire home/apt,142,1,122,3.8,1,80 +19778,102526590,Staten Island,Castleton Corners,40.62063,-74.13001,Entire home/apt,65,2,52,1.95,1,40 +19779,100781220,Queens,Astoria,40.75732,-73.92019,Entire home/apt,110,2,67,2.13,1,191 +19780,7455706,Manhattan,East Village,40.72117,-73.97839,Private room,80,6,10,0.31,2,7 +19781,102482048,Brooklyn,Bushwick,40.68315,-73.90908,Private room,35,2,44,1.41,4,325 +19782,99602138,Manhattan,Washington Heights,40.8349,-73.94829,Entire home/apt,150,3,36,1.13,1,5 +19783,2719866,Manhattan,Murray Hill,40.7487,-73.97842,Private room,40,5,0,,1,0 +19784,8439929,Brooklyn,Williamsburg,40.7158,-73.94259,Entire home/apt,150,1,17,0.6,1,102 +19785,18240752,Brooklyn,Park Slope,40.67538,-73.98116999999999,Private room,47,2,7,0.26,1,0 +19786,102624893,Queens,Flushing,40.759570000000004,-73.82206,Entire home/apt,85,1,68,2.13,1,0 +19787,4702833,Brooklyn,Windsor Terrace,40.65815,-73.98172,Entire home/apt,100,2,87,2.78,1,77 +19788,98697139,Queens,Corona,40.7507,-73.85774,Private room,40,1,43,1.37,2,59 +19789,14566486,Brooklyn,Bedford-Stuyvesant,40.68434,-73.95399,Entire home/apt,85,7,1,0.03,1,0 +19790,76536839,Queens,Jackson Heights,40.750820000000004,-73.89447,Entire home/apt,99,2,171,5.3,2,1 +19791,21444167,Bronx,Kingsbridge,40.88297,-73.90727,Entire home/apt,105,3,54,1.68,2,278 +19792,46382885,Brooklyn,East Flatbush,40.660109999999996,-73.93202,Private room,33,2,119,3.69,1,277 +19793,11297371,Brooklyn,Bushwick,40.698890000000006,-73.92936999999999,Private room,50,2,72,2.35,2,293 +19794,48815188,Manhattan,Greenwich Village,40.73317,-73.99813,Entire home/apt,295,365,15,0.49,1,0 +19795,89759874,Brooklyn,Williamsburg,40.70688,-73.96745,Private room,72,1,154,4.79,1,215 +19796,102731382,Manhattan,Chinatown,40.71454,-73.99271,Entire home/apt,300,7,58,1.79,1,36 +19797,1939376,Brooklyn,Clinton Hill,40.68866,-73.96146999999999,Private room,48,20,24,0.78,1,304 +19798,40503875,Queens,Astoria,40.75927,-73.9092,Private room,55,1,94,2.91,2,0 +19799,5192686,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9563,Private room,100,2,90,2.95,2,0 +19800,3948843,Brooklyn,Fort Greene,40.69012,-73.97251999999999,Entire home/apt,180,2,5,0.16,1,18 +19801,102754726,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94041999999999,Entire home/apt,300,2,34,1.11,1,180 +19802,26556695,Manhattan,Midtown,40.7611,-73.97412,Entire home/apt,2000,2,3,0.38,6,364 +19803,26556695,Manhattan,Midtown,40.76042,-73.97345,Entire home/apt,1020,1,12,0.39,6,365 +19804,58118452,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94756,Private room,53,1,59,1.9,1,188 +19805,1583461,Brooklyn,Crown Heights,40.669579999999996,-73.95081,Entire home/apt,160,5,1,0.04,1,290 +19806,100842144,Manhattan,Upper East Side,40.77502,-73.95536,Private room,143,2,8,0.26,1,365 +19807,8715723,Manhattan,Harlem,40.807829999999996,-73.95419,Private room,164,1,141,4.74,5,209 +19808,8715723,Manhattan,Harlem,40.80986,-73.95349,Private room,164,1,143,4.82,5,221 +19809,5237407,Brooklyn,Prospect-Lefferts Gardens,40.661970000000004,-73.94668,Private room,48,2,74,2.38,2,20 +19810,102792338,Manhattan,Kips Bay,40.74411,-73.98011,Shared room,65,4,0,,1,0 +19811,99937669,Manhattan,East Village,40.72524,-73.97776999999999,Private room,70,1,209,6.45,1,203 +19812,102799406,Queens,Maspeth,40.71402,-73.90853,Entire home/apt,159,5,25,0.97,2,299 +19813,1260413,Brooklyn,Williamsburg,40.71368,-73.94236,Private room,89,5,26,0.8,3,0 +19814,102811343,Queens,Astoria,40.772040000000004,-73.93344,Entire home/apt,100,1,131,4.12,1,8 +19815,69406365,Manhattan,Upper East Side,40.77097,-73.94861999999999,Private room,60,1,27,0.88,2,0 +19816,6181203,Brooklyn,Crown Heights,40.67638,-73.91578,Private room,42,4,13,0.41,1,364 +19817,32209352,Brooklyn,Bushwick,40.696,-73.91303,Private room,57,4,17,0.66,2,307 +19818,9193762,Brooklyn,Bushwick,40.69702,-73.93269000000001,Private room,43,1,1,0.03,1,0 +19819,28966357,Manhattan,East Harlem,40.786,-73.94570999999999,Private room,99,2,81,2.51,3,88 +19820,36669277,Brooklyn,Williamsburg,40.71805,-73.96415999999999,Private room,105,1,38,1.21,1,0 +19821,8794266,Manhattan,Harlem,40.8065,-73.94941,Entire home/apt,140,15,0,,1,0 +19822,21503447,Manhattan,Washington Heights,40.8451,-73.94100999999999,Private room,65,5,3,0.1,1,179 +19823,51501835,Manhattan,Hell's Kitchen,40.76313,-73.9943,Entire home/apt,125,30,6,0.19,31,323 +19824,8616101,Manhattan,Upper West Side,40.781459999999996,-73.97917,Entire home/apt,265,2,16,0.52,1,16 +19825,37712463,Manhattan,Gramercy,40.73267,-73.98259,Private room,100,3,1,0.03,1,0 +19826,53635805,Brooklyn,Sunset Park,40.64759,-73.99812,Private room,38,2,1,0.03,1,0 +19827,48961085,Queens,Astoria,40.76422,-73.92491,Private room,88,5,7,0.22,1,0 +19828,102924482,Manhattan,Harlem,40.825140000000005,-73.95489,Private room,60,4,41,1.31,1,98 +19829,73175609,Brooklyn,Windsor Terrace,40.65739,-73.9806,Entire home/apt,159,2,32,0.99,1,0 +19830,59358,Manhattan,Upper East Side,40.7844,-73.94856,Private room,65,2,42,1.31,2,0 +19831,42271764,Brooklyn,Crown Heights,40.67432,-73.95329,Private room,700,30,1,0.03,1,87 +19832,56551795,Manhattan,Upper West Side,40.793690000000005,-73.96539,Entire home/apt,150,4,1,0.03,1,0 +19833,16973022,Brooklyn,Bushwick,40.69092,-73.91195,Private room,50,1,4,0.12,1,0 +19834,58368740,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95043000000001,Private room,70,1,1,0.03,1,0 +19835,16221357,Brooklyn,Park Slope,40.68241,-73.97957,Private room,225,15,4,0.13,1,0 +19836,10191995,Manhattan,Chinatown,40.71622,-73.9912,Private room,61,5,25,0.79,2,20 +19837,102742122,Queens,South Ozone Park,40.669959999999996,-73.8223,Private room,120,1,31,1.03,1,352 +19838,11917115,Brooklyn,Williamsburg,40.71497,-73.96145,Private room,110,3,0,,1,0 +19839,5151544,Brooklyn,Cypress Hills,40.68148,-73.8904,Entire home/apt,63,4,54,1.71,1,344 +19840,65092392,Brooklyn,Bushwick,40.69912,-73.93508,Private room,65,3,72,2.26,1,179 +19841,101491116,Brooklyn,Cypress Hills,40.6825,-73.87165,Shared room,25,1,64,2.02,6,0 +19842,5962328,Queens,Flushing,40.76092,-73.82194,Entire home/apt,143,30,4,0.22,15,7 +19843,8330977,Manhattan,Midtown,40.742259999999995,-73.98344,Entire home/apt,197,2,47,1.46,1,13 +19844,19818873,Brooklyn,Greenpoint,40.72311,-73.9411,Private room,89,1,86,2.7,1,173 +19845,103087934,Brooklyn,Crown Heights,40.675670000000004,-73.93744000000001,Entire home/apt,158,4,61,1.92,1,264 +19846,4012934,Manhattan,West Village,40.73278,-74.00053,Entire home/apt,125,7,12,0.38,1,0 +19847,2089329,Manhattan,East Harlem,40.79084,-73.93961999999999,Entire home/apt,250,3,6,0.22,1,0 +19848,10191995,Manhattan,Chinatown,40.71542,-73.99045,Private room,119,6,117,3.65,2,207 +19849,103128664,Manhattan,Upper West Side,40.77409,-73.98031,Private room,128,7,71,2.21,1,171 +19850,103129069,Brooklyn,Bedford-Stuyvesant,40.69527,-73.9365,Entire home/apt,169,3,44,1.4,1,64 +19851,103158392,Manhattan,Kips Bay,40.73726,-73.97932,Private room,115,3,61,1.94,1,137 +19852,57307079,Queens,Astoria,40.76785,-73.91596,Private room,70,1,19,1.5,1,172 +19853,103131157,Manhattan,Midtown,40.74771,-73.98873,Private room,115,1,2,0.08,1,88 +19854,2388537,Manhattan,Morningside Heights,40.816759999999995,-73.96069,Private room,100,3,6,0.19,2,0 +19855,24140532,Brooklyn,Bedford-Stuyvesant,40.694109999999995,-73.94086,Private room,50,3,91,2.83,4,262 +19856,1301576,Manhattan,Harlem,40.80811,-73.94485999999999,Entire home/apt,200,7,3,0.09,2,0 +19857,10437339,Manhattan,West Village,40.73845,-74.00551,Entire home/apt,220,10,8,0.27,2,0 +19858,31482341,Manhattan,Inwood,40.868590000000005,-73.91948000000001,Private room,45,5,30,0.94,2,0 +19859,2270624,Manhattan,Harlem,40.81462,-73.95248000000001,Entire home/apt,203,3,13,0.42,2,0 +19860,21463097,Manhattan,Murray Hill,40.74494,-73.97554000000001,Entire home/apt,180,7,95,3.01,1,87 +19861,18934273,Bronx,Norwood,40.87529,-73.8762,Private room,40,1,1,0.03,1,0 +19862,92947863,Brooklyn,Flatbush,40.64569,-73.95938000000001,Private room,42,2,0,,1,0 +19863,103270784,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92038000000001,Entire home/apt,130,2,107,3.47,1,81 +19864,103277215,Manhattan,Theater District,40.76126,-73.98635999999999,Entire home/apt,190,10,5,0.16,1,0 +19865,14315424,Brooklyn,Williamsburg,40.707809999999995,-73.95324000000001,Private room,58,2,6,0.2,1,0 +19866,19966776,Brooklyn,Fort Greene,40.683859999999996,-73.96813,Entire home/apt,150,2,1,0.05,1,0 +19867,103345244,Bronx,Kingsbridge,40.885459999999995,-73.90526,Private room,55,1,0,,2,64 +19868,529412,Manhattan,Chelsea,40.743179999999995,-74.00137,Entire home/apt,180,4,46,1.48,1,0 +19869,103349564,Brooklyn,Williamsburg,40.71463,-73.96474,Entire home/apt,250,2,53,1.68,1,2 +19870,23832321,Brooklyn,Bedford-Stuyvesant,40.69533,-73.95439,Entire home/apt,150,2,14,0.46,1,0 +19871,61391963,Manhattan,Upper East Side,40.77754,-73.95640999999999,Entire home/apt,125,30,11,0.38,91,342 +19872,22902354,Brooklyn,Williamsburg,40.70852,-73.94849,Private room,49,3,7,0.32,1,37 +19873,278393,Brooklyn,Bushwick,40.699059999999996,-73.92430999999999,Private room,40,2,96,2.99,3,78 +19874,17638424,Queens,Elmhurst,40.74612,-73.87364000000001,Private room,40,1,91,2.82,8,162 +19875,7265110,Manhattan,Harlem,40.80703,-73.95354,Entire home/apt,130,4,32,1.02,1,39 +19876,103273584,Brooklyn,Bushwick,40.69283,-73.92702,Private room,900,15,3,0.09,1,83 +19877,1810885,Manhattan,East Village,40.72468,-73.9783,Private room,85,3,48,1.51,3,44 +19878,103367641,Manhattan,Gramercy,40.73338,-73.98535,Private room,110,1,8,0.25,1,0 +19879,1778121,Manhattan,East Village,40.72692,-73.98781,Private room,119,3,8,0.25,1,76 +19880,8455776,Manhattan,Harlem,40.82305,-73.95033000000001,Private room,60,1,23,0.73,2,97 +19881,8925370,Manhattan,Inwood,40.871359999999996,-73.91723,Entire home/apt,110,2,26,0.82,1,0 +19882,51035062,Brooklyn,Bedford-Stuyvesant,40.69543,-73.94448,Private room,200,2,0,,1,89 +19883,46707487,Brooklyn,Williamsburg,40.70884,-73.94354,Private room,50,2,77,2.44,1,107 +19884,5407657,Brooklyn,Park Slope,40.675740000000005,-73.97773000000001,Entire home/apt,110,5,48,1.52,1,0 +19885,19834899,Manhattan,Chelsea,40.74022,-74.00094,Entire home/apt,180,2,146,4.55,1,259 +19886,38294216,Queens,South Ozone Park,40.66675,-73.81071,Private room,75,10,7,0.27,4,197 +19887,103450258,Queens,Kew Gardens Hills,40.72136,-73.81716999999999,Entire home/apt,105,4,12,0.39,1,335 +19888,103452342,Queens,Kew Gardens Hills,40.72077,-73.81485,Entire home/apt,105,4,21,0.69,1,352 +19889,10703290,Manhattan,Upper East Side,40.77221,-73.94819,Entire home/apt,300,2,19,0.6,3,179 +19890,1252820,Brooklyn,Williamsburg,40.71329,-73.96321999999999,Private room,60,5,72,2.35,1,7 +19891,78619120,Queens,Astoria,40.77145,-73.93008,Entire home/apt,100,4,78,2.74,1,201 +19892,101657794,Queens,Briarwood,40.70857,-73.8075,Private room,120,1,77,2.39,6,361 +19893,57646925,Brooklyn,Flatlands,40.62846,-73.93355,Private room,35,2,0,,1,0 +19894,88043058,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95402,Private room,45,1,45,1.47,4,361 +19895,103434234,Manhattan,Upper West Side,40.7768,-73.98217,Entire home/apt,255,2,65,2.04,1,5 +19896,88043058,Brooklyn,Bedford-Stuyvesant,40.68875,-73.95401,Private room,40,1,41,1.34,4,352 +19897,4263511,Brooklyn,Flatbush,40.639920000000004,-73.96074,Private room,42,7,0,,1,0 +19898,5162192,Manhattan,Upper West Side,40.79835,-73.9616,Entire home/apt,240,30,1,0.48,12,211 +19899,103545877,Staten Island,Oakwood,40.562329999999996,-74.12673000000001,Entire home/apt,100,2,2,0.06,1,36 +19900,103554758,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95478,Entire home/apt,110,3,88,2.76,1,248 +19901,97148702,Brooklyn,Park Slope,40.67192,-73.97733000000001,Entire home/apt,185,3,104,3.28,1,262 +19902,1499220,Manhattan,West Village,40.73316,-74.00476,Entire home/apt,147,1,42,1.32,1,4 +19903,58503744,Brooklyn,Bushwick,40.69505,-73.90729,Private room,65,4,4,0.12,1,0 +19904,3142220,Manhattan,Kips Bay,40.74114,-73.97657,Entire home/apt,200,2,22,0.81,1,11 +19905,38764806,Brooklyn,Clinton Hill,40.68764,-73.96781999999999,Entire home/apt,950,4,19,0.62,1,323 +19906,103597496,Brooklyn,Brooklyn Heights,40.69798,-73.99344,Entire home/apt,275,7,0,,1,0 +19907,25039414,Brooklyn,Williamsburg,40.716120000000004,-73.95085,Private room,200,5,11,0.36,1,83 +19908,38866485,Manhattan,Upper West Side,40.79402,-73.96398,Entire home/apt,100,4,3,0.1,1,0 +19909,883283,Manhattan,East Village,40.72739,-73.98274,Entire home/apt,350,2,0,,1,0 +19910,103605111,Queens,Woodside,40.743809999999996,-73.89726,Private room,45,2,36,1.13,1,52 +19911,103488282,Queens,Sunnyside,40.74674,-73.92194,Private room,75,1,122,3.78,5,0 +19912,103611173,Brooklyn,Bushwick,40.69838,-73.91965,Shared room,60,1,0,,1,0 +19913,103611863,Brooklyn,Gravesend,40.59744,-73.96964,Private room,40,2,7,0.22,1,318 +19914,9112269,Queens,Astoria,40.75669,-73.91974,Entire home/apt,74,2,21,0.89,1,0 +19915,103631576,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94494,Entire home/apt,100,2,5,0.16,1,0 +19916,778293,Brooklyn,Sunset Park,40.65766,-73.99919,Entire home/apt,95,3,73,2.39,1,131 +19917,83542652,Queens,Elmhurst,40.72381,-73.88688,Private room,59,3,8,0.83,1,73 +19918,38503504,Brooklyn,Bedford-Stuyvesant,40.685359999999996,-73.94358000000001,Entire home/apt,180,2,75,2.35,1,237 +19919,21679450,Manhattan,Harlem,40.80251,-73.95765,Private room,50,2,0,,2,0 +19920,103678761,Manhattan,Kips Bay,40.741820000000004,-73.97898,Entire home/apt,160,3,9,0.28,1,0 +19921,16460821,Brooklyn,Williamsburg,40.70856,-73.95469,Entire home/apt,139,4,2,0.07,1,0 +19922,101491116,Brooklyn,Cypress Hills,40.68313,-73.87077,Shared room,19,2,76,2.4,6,120 +19923,19536090,Manhattan,SoHo,40.72705,-74.00419000000001,Entire home/apt,375,2,14,0.73,2,335 +19924,102294498,Manhattan,East Harlem,40.79335,-73.94527,Entire home/apt,135,1,45,1.4,1,0 +19925,57574248,Manhattan,Midtown,40.753609999999995,-73.97215,Entire home/apt,175,3,0,,3,0 +19926,84495247,Brooklyn,Bedford-Stuyvesant,40.68318,-73.93496999999999,Entire home/apt,169,4,78,2.54,1,84 +19927,2753243,Queens,Astoria,40.76248,-73.92421999999999,Private room,56,3,0,,1,0 +19928,64442357,Manhattan,Upper East Side,40.76323,-73.95916,Entire home/apt,200,4,2,0.07,1,0 +19929,41471799,Brooklyn,Bushwick,40.70604,-73.92232,Entire home/apt,115,3,3,0.1,1,0 +19930,21660871,Brooklyn,Crown Heights,40.67559,-73.96066,Entire home/apt,45,3,1,0.03,1,0 +19931,12201187,Manhattan,Theater District,40.7612,-73.98631,Entire home/apt,400,4,12,0.38,1,26 +19932,101657794,Queens,Briarwood,40.70839,-73.80623,Private room,65,1,47,1.48,6,365 +19933,101491116,Brooklyn,Cypress Hills,40.68398,-73.87039,Private room,39,4,2,0.07,6,0 +19934,2448006,Manhattan,Harlem,40.8036,-73.94603000000001,Private room,80,2,3,0.28,3,339 +19935,1301576,Manhattan,East Harlem,40.80604,-73.94233,Private room,85,3,97,3.07,2,14 +19936,43936824,Manhattan,Upper East Side,40.77968,-73.95307,Private room,150,1,11,0.97,1,0 +19937,40639815,Manhattan,Lower East Side,40.71953,-73.98364000000001,Private room,75,8,0,,1,0 +19938,45404805,Queens,Astoria,40.76938,-73.93226999999999,Private room,120,5,1,0.05,2,351 +19939,1753251,Queens,Jackson Heights,40.751090000000005,-73.88049000000001,Entire home/apt,100,4,4,0.13,1,157 +19940,92272,Manhattan,Gramercy,40.732659999999996,-73.98411999999999,Private room,75,2,18,0.88,3,62 +19941,5179523,Brooklyn,Williamsburg,40.711690000000004,-73.95827,Private room,91,1,13,0.55,3,85 +19942,3587764,Manhattan,Harlem,40.800309999999996,-73.95514,Private room,150,1,2,0.07,1,0 +19943,3619937,Brooklyn,Bushwick,40.699,-73.92849,Private room,46,7,26,0.91,2,0 +19944,100806,Brooklyn,Crown Heights,40.67302,-73.94815,Private room,65,3,10,0.93,1,12 +19945,35980789,Manhattan,Upper East Side,40.763009999999994,-73.95994,Entire home/apt,500,1,5,0.16,1,362 +19946,103841276,Brooklyn,Bushwick,40.69891,-73.93072,Private room,45,1,158,4.93,2,201 +19947,103843016,Brooklyn,Bedford-Stuyvesant,40.693259999999995,-73.93265,Private room,50,3,0,,1,0 +19948,23423684,Brooklyn,Bedford-Stuyvesant,40.68638,-73.92856,Entire home/apt,155,2,122,3.96,1,59 +19949,103848813,Brooklyn,Park Slope,40.67595,-73.97635,Entire home/apt,149,11,8,0.26,1,0 +19950,103850896,Brooklyn,Williamsburg,40.716440000000006,-73.9433,Private room,60,2,5,0.16,2,0 +19951,74895323,Manhattan,Harlem,40.82434,-73.94979000000001,Private room,42,7,3,0.1,1,53 +19952,64065593,Manhattan,Midtown,40.7523,-73.97288,Private room,198,2,23,0.75,13,329 +19953,102466916,Manhattan,Harlem,40.80778,-73.94345,Private room,45,30,6,0.25,6,164 +19954,95597107,Brooklyn,Crown Heights,40.67896,-73.95748,Entire home/apt,130,4,3,0.1,1,13 +19955,27844914,Brooklyn,Bedford-Stuyvesant,40.69637,-73.93995,Private room,44,14,38,1.24,2,45 +19956,3256433,Manhattan,Lower East Side,40.72068,-73.99291,Entire home/apt,250,30,3,0.19,7,4 +19957,102466916,Manhattan,Harlem,40.80762,-73.94445999999999,Private room,50,30,5,0.16,6,151 +19958,9737900,Brooklyn,Clinton Hill,40.682520000000004,-73.96436,Entire home/apt,195,1,39,1.25,1,62 +19959,102466916,Manhattan,Harlem,40.80572,-73.94349,Private room,45,30,7,0.23,6,175 +19960,103862923,Brooklyn,Greenpoint,40.72482,-73.9525,Private room,37,3,4,0.13,1,0 +19961,519554,Manhattan,Lower East Side,40.71867,-73.98959,Private room,78,2,46,1.45,5,341 +19962,46173411,Manhattan,Washington Heights,40.8359,-73.93842,Entire home/apt,80,8,4,0.13,1,0 +19963,103839925,Manhattan,Washington Heights,40.830709999999996,-73.94093000000001,Entire home/apt,200,5,0,,1,0 +19964,519554,Manhattan,Lower East Side,40.718579999999996,-73.98968,Private room,78,2,7,0.23,5,365 +19965,103875907,Manhattan,Harlem,40.81668,-73.94511,Private room,35,1,4,0.12,1,0 +19966,86569571,Queens,Long Island City,40.75748,-73.93119,Private room,52,1,0,,1,0 +19967,19803201,Brooklyn,Greenpoint,40.72388,-73.9404,Entire home/apt,150,3,0,,2,364 +19968,103883083,Brooklyn,Flatbush,40.64693,-73.95944,Private room,33,14,1,0.03,1,0 +19969,4122796,Manhattan,Upper East Side,40.781220000000005,-73.94989,Entire home/apt,129,2,1,0.03,1,0 +19970,103281721,Staten Island,Stapleton,40.62903,-74.08206,Private room,49,1,17,0.53,1,0 +19971,103892907,Manhattan,Harlem,40.79935,-73.95399,Private room,103,1,2,0.06,1,0 +19972,10003145,Manhattan,East Village,40.72372,-73.97984,Entire home/apt,150,2,85,3.33,1,194 +19973,7380558,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95068,Private room,41,7,9,0.28,1,0 +19974,6049738,Manhattan,East Village,40.7308,-73.98619000000001,Private room,76,30,4,0.13,2,0 +19975,31175000,Brooklyn,Bedford-Stuyvesant,40.68327,-73.93858,Entire home/apt,120,3,9,0.31,3,298 +19976,44949168,Manhattan,Upper West Side,40.78602,-73.97537,Entire home/apt,167,3,3,0.09,1,0 +19977,14292409,Queens,Astoria,40.76332,-73.91351,Entire home/apt,95,4,20,0.63,1,0 +19978,103841276,Brooklyn,Bushwick,40.699940000000005,-73.93224000000001,Private room,35,1,148,4.63,2,169 +19979,15679125,Manhattan,Hell's Kitchen,40.75372,-73.99332,Shared room,99,1,8,0.26,1,365 +19980,75710434,Manhattan,Harlem,40.80878,-73.95206,Entire home/apt,150,2,81,2.57,1,63 +19981,21452718,Manhattan,Roosevelt Island,40.76375,-73.94856,Private room,65,20,2,0.34,1,0 +19982,200060,Brooklyn,Bedford-Stuyvesant,40.69092,-73.92866,Entire home/apt,150,10,3,0.09,1,0 +19983,103981529,Queens,Long Island City,40.76184,-73.92839000000001,Entire home/apt,76,3,9,0.29,1,0 +19984,64065593,Manhattan,Midtown,40.7522,-73.97285,Entire home/apt,198,2,31,1.19,13,322 +19985,20327528,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95597,Private room,35,3,0,,1,0 +19986,102278506,Queens,Astoria,40.759890000000006,-73.91343,Entire home/apt,110,21,6,0.19,1,0 +19987,4366974,Brooklyn,Crown Heights,40.6732,-73.96195,Entire home/apt,300,7,0,,1,0 +19988,104025635,Manhattan,Chelsea,40.747859999999996,-73.99526999999999,Entire home/apt,125,1,0,,1,0 +19989,11017633,Brooklyn,Downtown Brooklyn,40.69744,-73.98445,Entire home/apt,225,5,0,,1,0 +19990,17108681,Manhattan,Upper East Side,40.77878,-73.95056,Entire home/apt,265,2,10,0.45,1,3 +19991,15980694,Manhattan,Upper East Side,40.76435,-73.95782,Entire home/apt,110,3,2,0.06,1,0 +19992,7051379,Brooklyn,Downtown Brooklyn,40.696709999999996,-73.98416999999999,Private room,70,2,106,3.59,2,53 +19993,1151840,Brooklyn,Williamsburg,40.71824,-73.95289,Entire home/apt,220,5,1,0.03,1,0 +19994,26243457,Brooklyn,Bedford-Stuyvesant,40.68919,-73.94073,Entire home/apt,80,3,6,0.24,1,0 +19995,104055319,Manhattan,East Village,40.72757,-73.98439,Private room,55,3,12,0.37,1,4 +19996,104060705,Manhattan,Little Italy,40.71828,-73.99761,Entire home/apt,115,30,4,0.12,1,35 +19997,69613456,Manhattan,Harlem,40.80891,-73.94247,Entire home/apt,265,2,113,3.55,1,297 +19998,18939173,Manhattan,Chelsea,40.751329999999996,-73.99965,Entire home/apt,228,4,16,0.51,1,103 +19999,5187497,Brooklyn,Bushwick,40.69175,-73.91516,Private room,50,1,2,0.06,2,0 +20000,15757322,Manhattan,East Harlem,40.7958,-73.93186,Entire home/apt,280,2,53,2.29,2,12 +20001,101602599,Queens,Woodside,40.74327,-73.90626999999999,Private room,75,3,9,0.28,2,7 +20002,24404906,Brooklyn,Williamsburg,40.70969,-73.95251999999999,Entire home/apt,120,5,1,0.16,1,0 +20003,8531067,Manhattan,Upper West Side,40.7953,-73.97248,Entire home/apt,250,2,2,0.07,1,0 +20004,19080025,Manhattan,Midtown,40.76365,-73.98149000000001,Private room,350,4,0,,1,0 +20005,104125363,Queens,Long Island City,40.74644,-73.94479,Private room,70,4,1,0.16,1,0 +20006,104134325,Manhattan,Harlem,40.803129999999996,-73.95026999999999,Entire home/apt,135,2,113,3.58,1,86 +20007,801883,Manhattan,Hell's Kitchen,40.755359999999996,-73.9995,Private room,110,1,188,5.87,1,158 +20008,8872284,Brooklyn,Williamsburg,40.71304,-73.96381,Entire home/apt,149,1,120,3.75,1,329 +20009,39261381,Brooklyn,Flatlands,40.62531,-73.93414,Shared room,22,1,20,1.28,2,160 +20010,104166155,Brooklyn,East Flatbush,40.64277,-73.94715,Private room,49,2,18,0.59,2,90 +20011,69545883,Manhattan,Midtown,40.753809999999994,-73.97125,Private room,899,2,2,0.06,12,365 +20012,24444281,Manhattan,Harlem,40.82204,-73.94516999999999,Private room,40,5,4,0.22,1,0 +20013,104188124,Brooklyn,East Flatbush,40.632909999999995,-73.94301999999999,Entire home/apt,70,2,62,1.94,1,40 +20014,1447642,Brooklyn,Gowanus,40.68309,-73.98529,Entire home/apt,340,3,12,0.4,1,63 +20015,1622733,Brooklyn,Greenpoint,40.72413,-73.9509,Entire home/apt,75,2,14,0.7,1,93 +20016,24296233,Queens,Bayside,40.75555,-73.76515,Entire home/apt,53,6,0,,1,66 +20017,34320426,Manhattan,Midtown,40.75976,-73.97178000000001,Private room,90,1,6,0.19,1,0 +20018,23006467,Queens,Glendale,40.70564,-73.89246,Private room,105,12,0,,1,0 +20019,13394035,Brooklyn,Williamsburg,40.70875,-73.94478000000001,Private room,49,20,85,2.74,1,35 +20020,104254967,Queens,Long Island City,40.755590000000005,-73.9208,Private room,95,2,62,1.96,1,118 +20021,46627258,Manhattan,Upper East Side,40.7806,-73.95178,Entire home/apt,155,21,9,0.28,1,0 +20022,104262874,Brooklyn,Bedford-Stuyvesant,40.67776,-73.92754000000001,Shared room,40,4,17,0.53,1,0 +20023,50087191,Brooklyn,Williamsburg,40.7082,-73.94476,Private room,47,1,5,0.74,1,4 +20024,53179388,Manhattan,Upper East Side,40.77261,-73.94995,Entire home/apt,190,30,0,,10,180 +20025,63393629,Manhattan,Midtown,40.7635,-73.97677,Entire home/apt,700,10,15,1.27,1,302 +20026,104273977,Manhattan,Lower East Side,40.720079999999996,-73.98865,Private room,109,1,3,0.18,3,0 +20027,64065593,Manhattan,Midtown,40.75246,-73.97355999999999,Entire home/apt,198,2,27,0.88,13,246 +20028,26784331,Manhattan,Chelsea,40.74344,-73.99506,Entire home/apt,149,2,8,0.25,1,0 +20029,64476314,Queens,Astoria,40.76435,-73.92000999999999,Entire home/apt,101,17,9,0.28,1,0 +20030,104348941,Manhattan,West Village,40.7341,-74.00104,Entire home/apt,150,3,1,0.03,1,0 +20031,11402865,Manhattan,Greenwich Village,40.727959999999996,-74.00154,Entire home/apt,135,3,3,0.1,1,0 +20032,2622616,Manhattan,West Village,40.73596,-74.00927,Entire home/apt,220,4,0,,1,0 +20033,85294325,Manhattan,Upper East Side,40.77128,-73.95787,Private room,80,4,19,0.6,1,0 +20034,8788534,Brooklyn,Bushwick,40.689029999999995,-73.91828000000001,Entire home/apt,84,4,88,2.88,1,155 +20035,86887132,Queens,Jamaica,40.69469,-73.78196,Entire home/apt,99,2,13,1.71,2,365 +20036,10812002,Manhattan,Hell's Kitchen,40.76807,-73.98418000000001,Private room,100,2,2,0.09,3,0 +20037,83809962,Brooklyn,East Flatbush,40.66209,-73.92913,Shared room,50,1,23,0.74,2,364 +20038,53179388,Manhattan,Upper West Side,40.77105,-73.9863,Entire home/apt,175,30,4,0.14,10,160 +20039,25599837,Brooklyn,Greenpoint,40.734190000000005,-73.95675,Private room,60,3,1,0.03,1,0 +20040,4087986,Brooklyn,Carroll Gardens,40.68257,-73.99625999999999,Entire home/apt,170,2,2,0.06,1,64 +20041,104497453,Brooklyn,Bedford-Stuyvesant,40.68792,-73.92411,Entire home/apt,170,2,213,6.9,3,37 +20042,104500369,Brooklyn,Bedford-Stuyvesant,40.695190000000004,-73.95107,Entire home/apt,75,1,3,0.09,1,0 +20043,17995733,Brooklyn,Williamsburg,40.71683,-73.94448,Private room,75,10,0,,1,0 +20044,104516875,Manhattan,East Harlem,40.788920000000005,-73.94185,Entire home/apt,130,2,3,0.1,1,0 +20045,4372057,Manhattan,Upper West Side,40.77815,-73.97574,Private room,88,7,3,0.1,1,0 +20046,104350692,Manhattan,Gramercy,40.732040000000005,-73.98364000000001,Private room,110,1,16,0.5,1,0 +20047,104542199,Manhattan,Upper East Side,40.782,-73.95143,Private room,200,2,3,0.09,1,90 +20048,4233535,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95851,Private room,60,1,0,,1,0 +20049,46812877,Manhattan,Inwood,40.86271,-73.92872,Entire home/apt,100,5,39,1.28,1,12 +20050,2407821,Manhattan,East Village,40.727540000000005,-73.98329,Entire home/apt,190,2,23,0.73,1,27 +20051,104558512,Queens,Maspeth,40.7322,-73.89944,Entire home/apt,86,2,78,2.55,1,149 +20052,36420662,Brooklyn,Williamsburg,40.70775,-73.94611,Private room,75,3,3,0.11,1,0 +20053,104568045,Bronx,Morris Heights,40.85018,-73.9167,Private room,55,2,0,,1,364 +20054,617427,Brooklyn,Clinton Hill,40.68482,-73.96075,Entire home/apt,145,2,4,0.13,1,0 +20055,104584267,Bronx,Morris Heights,40.848620000000004,-73.92412,Private room,75,1,3,0.32,1,365 +20056,104626152,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95352,Private room,200,2,3,0.09,4,189 +20057,2332386,Brooklyn,Greenpoint,40.73469,-73.95527,Entire home/apt,86,4,2,0.06,1,0 +20058,83278784,Manhattan,Harlem,40.80761,-73.95416,Entire home/apt,160,1,41,1.56,1,273 +20059,15787004,Brooklyn,Bushwick,40.69467,-73.923,Private room,59,3,11,0.46,5,0 +20060,87518679,Manhattan,Hell's Kitchen,40.760090000000005,-73.98937,Entire home/apt,280,5,1,0.03,1,0 +20061,1713011,Manhattan,Inwood,40.86757,-73.92699,Entire home/apt,89,14,14,0.57,1,4 +20062,27294350,Brooklyn,Bushwick,40.693690000000004,-73.9291,Private room,55,3,0,,1,0 +20063,31378,Brooklyn,Crown Heights,40.67001,-73.96197,Entire home/apt,100,4,8,0.29,3,6 +20064,17285612,Brooklyn,Sunset Park,40.64908,-74.01418000000001,Entire home/apt,75,4,5,0.16,1,0 +20065,15792248,Brooklyn,Kensington,40.63647,-73.97463,Entire home/apt,100,2,1,0.03,1,0 +20066,13324284,Manhattan,Chinatown,40.71608,-73.99233000000001,Private room,95,4,1,0.03,1,0 +20067,39872618,Brooklyn,Crown Heights,40.6758,-73.93932,Private room,50,3,7,0.31,1,249 +20068,8455543,Manhattan,Chelsea,40.74292,-73.99969,Entire home/apt,599,2,3,0.33,1,54 +20069,96303866,Queens,College Point,40.78955,-73.83921,Private room,44,4,8,0.27,1,3 +20070,13599766,Manhattan,Morningside Heights,40.80325,-73.96174,Private room,80,8,3,0.1,1,79 +20071,7555939,Manhattan,Gramercy,40.73257,-73.98234000000001,Private room,65,5,7,0.26,1,0 +20072,49336986,Brooklyn,Flatbush,40.64111,-73.95666999999999,Entire home/apt,98,2,27,0.96,1,168 +20073,8739010,Manhattan,East Village,40.726659999999995,-73.97969,Entire home/apt,131,2,15,0.49,1,11 +20074,9563496,Queens,Ridgewood,40.71032,-73.91461,Private room,69,7,0,,1,0 +20075,24630962,Brooklyn,Williamsburg,40.70627,-73.94946999999999,Private room,70,10,17,0.61,1,0 +20076,17848497,Brooklyn,Crown Heights,40.67532,-73.94138000000001,Private room,35,3,2,0.07,1,0 +20077,10457196,Brooklyn,Park Slope,40.66754,-73.98268,Entire home/apt,200,31,2,0.17,11,310 +20078,104812805,Staten Island,Concord,40.597840000000005,-74.08391,Private room,34,4,51,1.69,8,316 +20079,29474145,Queens,Arverne,40.59098,-73.80081,Entire home/apt,100,2,48,1.57,1,167 +20080,104816559,Brooklyn,Bergen Beach,40.6266,-73.90375,Private room,85,3,30,1.15,1,90 +20081,104821930,Manhattan,Upper East Side,40.77129,-73.9501,Entire home/apt,120,1,9,0.28,1,0 +20082,11206175,Queens,Maspeth,40.72254,-73.90561,Private room,37,30,10,0.33,2,363 +20083,52347885,Brooklyn,Flatlands,40.62876,-73.92203,Private room,34,2,94,3.14,2,70 +20084,61391963,Manhattan,Kips Bay,40.741279999999996,-73.97863000000001,Entire home/apt,175,30,1,0.04,91,126 +20085,9195264,Brooklyn,Williamsburg,40.72043,-73.95508000000001,Entire home/apt,150,2,13,0.41,1,0 +20086,61804662,Queens,Flushing,40.769040000000004,-73.81687,Private room,48,1,54,1.72,2,113 +20087,104835356,Brooklyn,Sunset Park,40.65563,-74.00197,Private room,73,1,10,0.36,3,121 +20088,104838182,Manhattan,Upper West Side,40.8013,-73.96669,Private room,85,7,14,0.51,1,0 +20089,104835356,Brooklyn,Sunset Park,40.65477,-74.001,Private room,69,1,32,1.14,3,292 +20090,4630888,Manhattan,East Village,40.73073,-73.98652,Entire home/apt,170,1,36,1.14,1,36 +20091,104835356,Brooklyn,Sunset Park,40.65508,-74.00188,Private room,66,1,24,0.8,3,324 +20092,49699620,Manhattan,Upper East Side,40.77833,-73.94775,Entire home/apt,200,2,1,0.03,3,0 +20093,69545883,Manhattan,Midtown,40.75356,-73.97155,Private room,799,3,1,0.03,12,365 +20094,69545883,Manhattan,Midtown,40.753679999999996,-73.97358,Private room,1599,3,2,0.08,12,365 +20095,104812805,Staten Island,Arrochar,40.596790000000006,-74.083,Private room,34,4,39,1.39,8,347 +20096,104911818,Brooklyn,Clinton Hill,40.69487,-73.96571999999999,Private room,225,365,0,,1,90 +20097,62828813,Manhattan,Lower East Side,40.713390000000004,-73.98926,Private room,69,3,47,1.5,1,217 +20098,15793354,Brooklyn,Crown Heights,40.66675,-73.92958,Entire home/apt,73,2,4,0.16,1,0 +20099,9488965,Brooklyn,Prospect Heights,40.67414,-73.96723,Private room,125,1,0,,1,15 +20100,633395,Manhattan,Morningside Heights,40.809,-73.9661,Entire home/apt,150,5,3,0.1,1,25 +20101,104927746,Staten Island,Concord,40.59703,-74.08676,Private room,33,4,18,0.83,7,322 +20102,104927746,Staten Island,Concord,40.59704,-74.08716,Private room,32,4,30,1.2,7,342 +20103,104927746,Staten Island,South Beach,40.59587,-74.08614,Private room,35,4,10,0.34,7,323 +20104,69545883,Manhattan,Midtown,40.75162,-73.9732,Private room,649,3,1,0.03,12,365 +20105,104927746,Staten Island,Concord,40.597190000000005,-74.08754,Private room,32,4,23,0.87,7,312 +20106,104885443,Queens,Astoria,40.768190000000004,-73.92755,Private room,85,2,57,1.86,2,306 +20107,69545883,Manhattan,Midtown,40.7524,-73.97153,Private room,699,3,1,0.03,12,365 +20108,69545883,Manhattan,Midtown,40.75362,-73.97332,Private room,799,3,1,0.03,12,365 +20109,88191,Brooklyn,Carroll Gardens,40.6799,-73.99722,Entire home/apt,290,6,3,0.1,1,0 +20110,4198285,Brooklyn,Williamsburg,40.71026,-73.94744,Entire home/apt,145,3,43,1.36,1,5 +20111,13224803,Manhattan,Kips Bay,40.74446,-73.98044,Entire home/apt,199,5,53,1.67,1,0 +20112,79060345,Manhattan,Chelsea,40.73992,-74.00220999999999,Entire home/apt,200,4,31,1.31,1,291 +20113,40744019,Manhattan,Chelsea,40.74694,-73.99728,Entire home/apt,181,1,158,5.08,1,173 +20114,2642093,Brooklyn,Greenpoint,40.73124,-73.95527,Private room,75,5,1,0.05,1,0 +20115,394223,Brooklyn,South Slope,40.664590000000004,-73.9905,Entire home/apt,130,4,1,0.03,1,0 +20116,105049322,Queens,Corona,40.75094,-73.85244,Entire home/apt,125,1,16,0.52,1,157 +20117,105056232,Manhattan,Greenwich Village,40.7324,-73.99708000000001,Entire home/apt,300,5,0,,1,0 +20118,93742479,Manhattan,Upper East Side,40.77316,-73.94495,Entire home/apt,250,2,10,0.33,1,0 +20119,105069538,Manhattan,East Harlem,40.80764,-73.93963000000001,Entire home/apt,175,1,8,0.29,1,66 +20120,3842134,Brooklyn,Greenpoint,40.726409999999994,-73.94657,Private room,59,20,7,0.27,3,342 +20121,44802851,Brooklyn,Williamsburg,40.716029999999996,-73.96426,Entire home/apt,180,4,63,2.02,1,1 +20122,700224,Brooklyn,Boerum Hill,40.68424,-73.98545,Private room,250,5,0,,4,50 +20123,56878925,Brooklyn,Canarsie,40.63485,-73.92055,Shared room,40,2,4,0.13,2,3 +20124,9584918,Manhattan,Chelsea,40.74208,-74.00121,Entire home/apt,156,5,4,0.13,1,0 +20125,8572778,Manhattan,Midtown,40.76409,-73.9791,Entire home/apt,500,2,4,0.13,1,91 +20126,66915031,Manhattan,Washington Heights,40.84657,-73.9357,Private room,65,2,55,5.54,1,5 +20127,7245581,Manhattan,Washington Heights,40.83493,-73.93859,Entire home/apt,68,150,4,0.25,19,338 +20128,3740293,Manhattan,Upper West Side,40.78859,-73.97568000000001,Private room,60,14,1,0.04,1,0 +20129,6171011,Manhattan,East Harlem,40.81067,-73.93896,Entire home/apt,150,7,4,0.3,1,127 +20130,1628075,Brooklyn,Fort Greene,40.69015,-73.97264,Entire home/apt,265,31,33,1.2,1,281 +20131,6984985,Manhattan,Midtown,40.75574,-73.9705,Entire home/apt,279,5,3,0.1,1,0 +20132,104661811,Staten Island,Arrochar,40.594120000000004,-74.06955,Private room,105,1,12,0.39,1,89 +20133,105163782,Manhattan,Harlem,40.81783,-73.94051,Entire home/apt,110,2,60,1.92,1,47 +20134,17138432,Brooklyn,Greenpoint,40.72725,-73.944,Entire home/apt,130,4,10,0.33,1,0 +20135,105225099,Manhattan,Upper East Side,40.7687,-73.95596,Entire home/apt,500,2,1,0.03,1,0 +20136,90658585,Staten Island,Tompkinsville,40.632670000000005,-74.08369,Private room,34,3,24,0.78,3,159 +20137,1626704,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94978,Private room,75,2,55,1.95,1,0 +20138,105025187,Manhattan,East Village,40.726240000000004,-73.97800000000001,Private room,49,3,1,0.04,2,0 +20139,105239473,Brooklyn,Cypress Hills,40.682390000000005,-73.89319,Private room,65,3,22,0.7,1,89 +20140,9372363,Brooklyn,Borough Park,40.614259999999994,-73.97746,Private room,65,3,8,0.26,2,40 +20141,471153,Brooklyn,Williamsburg,40.71014,-73.96384,Entire home/apt,300,7,2,0.09,1,352 +20142,105258361,Manhattan,Upper West Side,40.79528,-73.97325,Private room,100,3,38,1.21,1,14 +20143,104700532,Brooklyn,Bedford-Stuyvesant,40.69383,-73.94326,Private room,55,1,1,0.03,1,6 +20144,1886695,Brooklyn,Bushwick,40.68338,-73.9078,Private room,70,2,16,0.87,1,29 +20145,15863391,Brooklyn,Clinton Hill,40.68987,-73.96095,Private room,49,5,16,0.53,1,0 +20146,44037475,Brooklyn,Bedford-Stuyvesant,40.69278,-73.95987,Private room,50,30,11,0.36,4,79 +20147,105315535,Brooklyn,Prospect Heights,40.67549,-73.96598,Entire home/apt,158,30,7,0.26,3,37 +20148,5187497,Brooklyn,Bushwick,40.6901,-73.91447,Private room,50,4,0,,2,0 +20149,33651056,Brooklyn,Bushwick,40.68778,-73.91381,Private room,120,3,1,0.03,1,0 +20150,35281088,Manhattan,Harlem,40.821909999999995,-73.9419,Private room,44,2,45,1.43,1,18 +20151,2125221,Brooklyn,Williamsburg,40.721709999999995,-73.95487,Entire home/apt,150,4,19,0.62,1,80 +20152,12018166,Brooklyn,Bedford-Stuyvesant,40.68423,-73.95715,Entire home/apt,209,2,7,0.23,1,201 +20153,105348414,Manhattan,Greenwich Village,40.73385,-73.99928,Entire home/apt,200,5,1,0.06,1,36 +20154,79751933,Brooklyn,Crown Heights,40.67034,-73.95169,Private room,30,3,1,0.03,1,0 +20155,105349749,Manhattan,Harlem,40.82349,-73.94053000000001,Private room,80,2,10,0.32,1,8 +20156,105359406,Queens,Sunnyside,40.74535,-73.91985,Private room,135,7,1,0.03,1,0 +20157,30826993,Brooklyn,Park Slope,40.6734,-73.98235,Entire home/apt,250,3,54,1.72,1,0 +20158,15956611,Manhattan,East Harlem,40.80397,-73.93499,Private room,100,29,4,0.18,2,66 +20159,20319948,Brooklyn,Crown Heights,40.66838,-73.93134,Private room,50,4,28,0.95,1,0 +20160,10332773,Manhattan,Harlem,40.81749,-73.94315,Private room,110,2,137,4.37,1,102 +20161,17638424,Queens,Elmhurst,40.74658,-73.87358,Private room,30,1,106,3.36,8,142 +20162,35093829,Brooklyn,Williamsburg,40.713190000000004,-73.93606,Entire home/apt,160,2,11,0.35,1,0 +20163,620436,Manhattan,Nolita,40.721740000000004,-73.99481999999999,Entire home/apt,295,5,36,1.4,1,16 +20164,69545883,Manhattan,Midtown,40.75302,-73.97221,Private room,699,3,2,0.06,12,365 +20165,32545798,Brooklyn,Williamsburg,40.71329,-73.96223,Private room,60,2,7,0.23,5,0 +20166,94536810,Bronx,Bronxdale,40.85711,-73.86474,Private room,45,5,30,0.98,2,318 +20167,40146897,Brooklyn,Crown Heights,40.67368,-73.92165,Private room,29,2,97,3.07,5,145 +20168,105384236,Manhattan,Washington Heights,40.85425,-73.93585,Private room,80,1,11,0.6,1,31 +20169,60628529,Manhattan,East Harlem,40.796,-73.94863000000001,Entire home/apt,265,3,111,3.53,1,155 +20170,19584296,Manhattan,East Harlem,40.791470000000004,-73.94791,Entire home/apt,225,5,6,0.38,1,0 +20171,3912009,Manhattan,Harlem,40.82408,-73.94643,Entire home/apt,210,2,4,0.13,2,0 +20172,28804489,Manhattan,East Village,40.73121,-73.98693,Entire home/apt,220,5,46,1.81,1,92 +20173,105375380,Bronx,Woodlawn,40.89743,-73.86983000000001,Private room,68,2,1,0.07,2,39 +20174,34508225,Brooklyn,Bushwick,40.70389,-73.92771,Entire home/apt,135,3,5,0.2,1,0 +20175,102012893,Manhattan,Harlem,40.80695,-73.94981999999999,Entire home/apt,130,2,133,4.21,2,21 +20176,32610275,Manhattan,Nolita,40.72075,-73.99393,Private room,110,3,0,,1,0 +20177,21877498,Brooklyn,Bushwick,40.70272,-73.93005,Entire home/apt,140,3,0,,2,0 +20178,105455587,Queens,Forest Hills,40.717459999999996,-73.85667,Private room,60,1,0,,1,0 +20179,7858210,Manhattan,Harlem,40.81588,-73.93984,Entire home/apt,400,2,3,0.1,4,180 +20180,105461266,Brooklyn,Brooklyn Heights,40.69107,-73.99378,Entire home/apt,200,4,71,2.3,1,230 +20181,105310740,Brooklyn,Bedford-Stuyvesant,40.683009999999996,-73.95305,Entire home/apt,76,30,7,0.27,3,310 +20182,20195183,Brooklyn,Williamsburg,40.717490000000005,-73.95246,Entire home/apt,200,2,9,0.29,1,0 +20183,27977412,Brooklyn,East Flatbush,40.64583,-73.9483,Shared room,25,30,10,0.32,4,332 +20184,13483196,Brooklyn,Williamsburg,40.71212,-73.96086,Private room,90,1,0,,1,0 +20185,69545883,Manhattan,Midtown,40.75228,-73.97185,Private room,799,2,1,0.03,12,365 +20186,6007970,Brooklyn,Williamsburg,40.70666,-73.93666,Private room,45,3,31,1.01,1,0 +20187,105481269,Manhattan,West Village,40.736779999999996,-74.00565999999999,Entire home/apt,800,5,0,,1,88 +20188,104926837,Manhattan,Financial District,40.706540000000004,-74.00712,Private room,176,3,123,3.9,3,17 +20189,415660,Brooklyn,Williamsburg,40.71332,-73.96585,Private room,85,6,7,0.23,2,19 +20190,83732495,Brooklyn,East Flatbush,40.65221,-73.93634,Private room,21,5,4,0.15,1,0 +20191,105489342,Brooklyn,Brownsville,40.66041,-73.91561999999999,Entire home/apt,129,2,73,2.34,1,82 +20192,30110593,Brooklyn,Bedford-Stuyvesant,40.68226,-73.9485,Entire home/apt,135,3,0,,1,0 +20193,88384901,Brooklyn,South Slope,40.66707,-73.98611,Private room,145,4,0,,1,0 +20194,104926837,Manhattan,Financial District,40.70551,-74.00735,Private room,113,3,131,4.21,3,12 +20195,104781467,Brooklyn,Williamsburg,40.71306,-73.94856,Entire home/apt,199,3,1,0.03,1,0 +20196,101289150,Bronx,Castle Hill,40.82286,-73.84765,Entire home/apt,86,2,86,2.76,1,171 +20197,78433586,Queens,Astoria,40.76001,-73.91865,Entire home/apt,95,2,9,0.29,1,212 +20198,60495305,Manhattan,Upper East Side,40.7732,-73.95857,Private room,100,2,14,0.46,1,0 +20199,68544687,Manhattan,Nolita,40.723209999999995,-73.99514,Entire home/apt,199,3,3,0.1,1,0 +20200,104926837,Manhattan,Financial District,40.7054,-74.00763,Private room,146,3,104,3.31,3,7 +20201,105507665,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93234,Entire home/apt,150,4,73,2.33,1,228 +20202,105511610,Manhattan,Lower East Side,40.719159999999995,-73.99229,Private room,98,2,76,2.42,1,46 +20203,1538057,Brooklyn,Bedford-Stuyvesant,40.695009999999996,-73.93363000000001,Entire home/apt,25,2,50,1.65,1,6 +20204,105513623,Brooklyn,Bedford-Stuyvesant,40.6885,-73.93283000000001,Entire home/apt,130,2,51,1.76,1,83 +20205,48832831,Manhattan,Upper West Side,40.77146,-73.98906,Entire home/apt,200,2,3,0.1,1,0 +20206,42814202,Queens,Fresh Meadows,40.742709999999995,-73.78749,Entire home/apt,94,1,18,0.6,3,173 +20207,12610226,Manhattan,East Village,40.72315,-73.97878,Entire home/apt,150,5,8,0.26,1,0 +20208,28875304,Brooklyn,Bushwick,40.688559999999995,-73.91503,Private room,85,4,4,0.13,2,8 +20209,4936720,Brooklyn,Williamsburg,40.71545,-73.95406,Private room,110,1,77,2.51,2,39 +20210,86115767,Manhattan,Chelsea,40.74485,-74.00186,Entire home/apt,60,1,124,3.94,1,86 +20211,10737943,Manhattan,Upper East Side,40.77257,-73.94615999999999,Private room,48,30,7,0.26,10,342 +20212,105162882,Manhattan,Upper West Side,40.7987,-73.9621,Private room,110,1,1,0.03,1,0 +20213,73447493,Brooklyn,Bedford-Stuyvesant,40.69587,-73.93406999999999,Private room,60,2,37,1.18,1,90 +20214,105572605,Brooklyn,Flatbush,40.64745,-73.96207,Entire home/apt,72,1,15,3.13,1,1 +20215,72808547,Manhattan,Harlem,40.808040000000005,-73.943,Entire home/apt,120,4,22,0.71,1,0 +20216,102383709,Manhattan,Harlem,40.830690000000004,-73.94779,Private room,58,4,131,4.17,2,115 +20217,9007993,Manhattan,Chelsea,40.74111,-73.99594,Entire home/apt,150,3,2,0.08,1,0 +20218,105582490,Queens,Ridgewood,40.710409999999996,-73.90977,Private room,40,2,20,0.64,1,0 +20219,92828204,Manhattan,Midtown,40.75979,-73.96444,Entire home/apt,1200,1,36,1.64,1,354 +20220,9293730,Manhattan,Upper East Side,40.76982,-73.95697,Entire home/apt,89,30,11,0.4,16,261 +20221,22432953,Brooklyn,Williamsburg,40.70816,-73.94821999999999,Private room,55,4,3,0.1,1,0 +20222,1354727,Queens,Astoria,40.77572,-73.9339,Entire home/apt,150,5,2,0.07,2,0 +20223,1314045,Brooklyn,Williamsburg,40.713409999999996,-73.94824,Private room,99,1,230,7.28,3,353 +20224,105074140,Queens,Flushing,40.76153,-73.80304,Private room,38,1,69,2.19,4,0 +20225,45520477,Manhattan,West Village,40.73365,-74.0041,Entire home/apt,500,3,21,0.73,1,365 +20226,61391963,Manhattan,Kips Bay,40.74,-73.97936,Entire home/apt,142,30,9,0.3,91,342 +20227,65974774,Manhattan,Upper East Side,40.773720000000004,-73.95418000000001,Private room,114,1,40,1.28,3,324 +20228,3473672,Brooklyn,Williamsburg,40.704840000000004,-73.9377,Entire home/apt,175,2,21,0.81,1,313 +20229,83929409,Manhattan,West Village,40.73621,-74.00612,Entire home/apt,350,2,5,0.16,1,0 +20230,13325936,Manhattan,East Harlem,40.79275,-73.94191,Private room,60,5,1,0.03,1,0 +20231,95766078,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95101,Private room,75,1,0,,2,0 +20232,6338496,Queens,Middle Village,40.71157,-73.87619000000001,Entire home/apt,85,30,0,,1,280 +20233,105668518,Manhattan,Washington Heights,40.8407,-73.93885999999999,Private room,100,2,4,0.13,1,0 +20234,22243853,Brooklyn,Williamsburg,40.7142,-73.96408000000001,Private room,60,3,21,0.72,1,0 +20235,563530,Bronx,Kingsbridge,40.86352,-73.90503000000001,Private room,80,30,0,,1,365 +20236,5998815,Manhattan,Stuyvesant Town,40.73052,-73.9778,Private room,85,3,16,0.51,1,9 +20237,19238497,Brooklyn,Prospect-Lefferts Gardens,40.65538,-73.96056,Private room,36,7,8,0.26,1,0 +20238,43729733,Manhattan,East Harlem,40.78565,-73.94268000000001,Private room,150,1,56,1.79,1,272 +20239,32084117,Manhattan,Chelsea,40.74183,-73.99996999999999,Entire home/apt,330,2,124,3.94,1,317 +20240,105640471,Brooklyn,Sunset Park,40.640240000000006,-74.01573,Private room,54,1,18,0.61,8,241 +20241,12943509,Brooklyn,Williamsburg,40.713,-73.94109,Private room,35,3,0,,1,0 +20242,105640471,Brooklyn,Sunset Park,40.64074,-74.01512,Private room,53,1,18,0.63,8,360 +20243,47453782,Brooklyn,Williamsburg,40.70729,-73.93129,Entire home/apt,175,2,44,1.43,1,3 +20244,105640471,Brooklyn,Sunset Park,40.64052,-74.01539,Private room,48,1,10,0.71,8,240 +20245,105640471,Brooklyn,Sunset Park,40.64167,-74.01531999999999,Private room,39,3,23,0.82,8,137 +20246,105753805,Queens,Elmhurst,40.743959999999994,-73.87476,Private room,70,1,8,0.26,1,302 +20247,40532977,Brooklyn,Bedford-Stuyvesant,40.68128,-73.91196,Private room,29,60,13,0.42,4,51 +20248,42734669,Manhattan,Chinatown,40.7155,-73.99198,Entire home/apt,120,20,4,0.13,1,0 +20249,105762561,Queens,Jamaica,40.68038,-73.77244,Entire home/apt,125,3,42,1.85,3,348 +20250,31820164,Manhattan,Harlem,40.81816,-73.94544,Entire home/apt,100,4,62,2.1,1,80 +20251,105394139,Bronx,Fordham,40.86914,-73.8951,Private room,79,3,73,2.79,4,69 +20252,312722,Brooklyn,Williamsburg,40.7087,-73.95427,Private room,70,20,3,0.15,4,275 +20253,7824337,Brooklyn,Flatbush,40.65202,-73.96325,Private room,95,3,14,0.46,2,0 +20254,67523,Brooklyn,Bedford-Stuyvesant,40.69097,-73.93611999999999,Entire home/apt,77,2,51,3.1,1,5 +20255,11073179,Brooklyn,Prospect-Lefferts Gardens,40.66122,-73.94866999999999,Private room,75,1,3,0.1,1,0 +20256,6277934,Brooklyn,Williamsburg,40.71868,-73.94918,Entire home/apt,210,4,0,,1,0 +20257,104814891,Manhattan,Chinatown,40.71521,-73.99169,Private room,80,2,152,5.01,1,105 +20258,105828180,Queens,Sunnyside,40.74604,-73.9217,Entire home/apt,120,2,78,2.55,3,135 +20259,34307713,Brooklyn,Williamsburg,40.714220000000005,-73.95732,Entire home/apt,175,2,71,2.35,1,68 +20260,78119367,Brooklyn,Bushwick,40.7015,-73.9266,Private room,82,2,0,,1,0 +20261,22511613,Brooklyn,Cobble Hill,40.68714,-73.99283,Private room,114,1,2,0.09,2,0 +20262,17167740,Brooklyn,South Slope,40.665929999999996,-73.9879,Private room,93,2,34,1.11,1,34 +20263,28365672,Manhattan,Morningside Heights,40.80793,-73.95799,Private room,55,6,0,,1,0 +20264,104238268,Manhattan,Harlem,40.81309,-73.94614,Entire home/apt,199,30,16,0.57,1,150 +20265,7618966,Manhattan,Nolita,40.722429999999996,-73.99600000000001,Entire home/apt,387,1,0,,1,0 +20266,8682765,Brooklyn,Williamsburg,40.71497,-73.93905,Entire home/apt,150,7,0,,1,0 +20267,63834432,Brooklyn,Williamsburg,40.707809999999995,-73.93926,Private room,58,1,1,0.03,1,0 +20268,1865198,Brooklyn,Williamsburg,40.71157,-73.95846,Entire home/apt,185,8,2,0.07,1,59 +20269,49699620,Manhattan,Upper East Side,40.77968,-73.94815,Private room,90,3,7,0.22,3,0 +20270,2568028,Queens,Astoria,40.76963,-73.92993,Private room,50,1,5,0.16,1,0 +20271,9601972,Manhattan,Morningside Heights,40.80724,-73.96348,Entire home/apt,189,2,1,0.03,1,0 +20272,43754478,Brooklyn,Bedford-Stuyvesant,40.69878,-73.94606999999999,Private room,50,5,5,0.17,1,0 +20273,7913732,Manhattan,East Harlem,40.79952,-73.93764,Entire home/apt,240,3,4,0.17,1,7 +20274,5237407,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94674,Entire home/apt,131,2,20,0.73,2,0 +20275,9119410,Brooklyn,Kensington,40.63501,-73.97298,Private room,80,1,1,0.03,1,0 +20276,6082745,Manhattan,Upper West Side,40.783609999999996,-73.9732,Entire home/apt,225,10,14,0.52,1,11 +20277,50760546,Manhattan,Murray Hill,40.750890000000005,-73.98059,Entire home/apt,139,30,2,0.07,31,134 +20278,83627325,Queens,Sunnyside,40.745540000000005,-73.91778000000001,Private room,109,1,5,0.17,4,356 +20279,10762834,Queens,East Elmhurst,40.7617,-73.89134,Entire home/apt,165,2,32,1.03,1,55 +20280,31207419,Manhattan,Roosevelt Island,40.76213,-73.94889,Private room,45,2,1,0.03,1,0 +20281,6134680,Brooklyn,Crown Heights,40.67476,-73.94209000000001,Private room,50,1,35,1.14,1,5 +20282,105328014,Manhattan,Gramercy,40.73565,-73.98056,Entire home/apt,90,30,5,0.16,1,154 +20283,90658585,Staten Island,Tompkinsville,40.6339,-74.08513,Private room,55,3,6,0.22,3,88 +20284,8300022,Brooklyn,Williamsburg,40.7092,-73.9506,Entire home/apt,130,5,1,0.03,1,0 +20285,1873123,Manhattan,West Village,40.73095,-74.00321,Entire home/apt,190,15,0,,1,0 +20286,40721357,Brooklyn,Fort Greene,40.688140000000004,-73.97452,Entire home/apt,150,2,34,1.11,1,3 +20287,69189948,Manhattan,Washington Heights,40.848620000000004,-73.93299,Private room,75,2,45,1.44,3,183 +20288,4013000,Queens,Bayside,40.75465,-73.77360999999999,Private room,30,15,31,0.99,2,142 +20289,3479852,Brooklyn,Gowanus,40.68275,-73.98562,Entire home/apt,150,1,179,5.69,1,0 +20290,1354727,Queens,Astoria,40.77499,-73.93565,Private room,75,1,50,1.59,2,61 +20291,386795,Brooklyn,Bedford-Stuyvesant,40.68712,-73.91847,Private room,30,7,0,,1,0 +20292,106030531,Manhattan,Morningside Heights,40.81456,-73.95953,Entire home/apt,110,7,1,0.05,1,0 +20293,29314677,Brooklyn,Sunset Park,40.64832,-73.99913000000001,Private room,64,1,87,2.82,1,42 +20294,59101644,Brooklyn,Williamsburg,40.71615,-73.94797,Entire home/apt,135,2,29,0.93,1,82 +20295,11313668,Brooklyn,Williamsburg,40.70089,-73.94997,Private room,55,1,8,0.26,2,0 +20296,1914516,Brooklyn,Williamsburg,40.71134,-73.95953,Entire home/apt,165,1,3,0.12,1,0 +20297,65974774,Manhattan,Upper East Side,40.77585,-73.95754000000001,Private room,132,1,14,0.51,3,326 +20298,3548768,Brooklyn,Greenpoint,40.72314,-73.94027,Entire home/apt,120,4,0,,1,0 +20299,106043391,Brooklyn,Greenpoint,40.72743,-73.94491,Private room,60,3,0,,1,0 +20300,33213436,Brooklyn,Gowanus,40.678309999999996,-73.98358,Private room,169,1,34,1.09,8,364 +20301,43828940,Manhattan,Midtown,40.75343,-73.97313,Entire home/apt,119,3,0,,1,0 +20302,21422835,Manhattan,Chelsea,40.743829999999996,-74.0034,Private room,120,3,0,,1,0 +20303,86509759,Manhattan,East Harlem,40.80802,-73.94013000000001,Private room,77,3,30,0.98,1,90 +20304,185745,Manhattan,Lower East Side,40.71278,-73.9919,Entire home/apt,200,1,26,0.95,2,317 +20305,29263011,Brooklyn,Red Hook,40.67705,-74.01436,Private room,85,2,68,2.22,1,69 +20306,2279300,Manhattan,West Village,40.73015,-74.00304,Entire home/apt,400,3,17,1.16,1,334 +20307,105799162,Manhattan,Greenwich Village,40.72925,-73.99927,Entire home/apt,200,1,12,8.18,1,206 +20308,38288406,Queens,Ridgewood,40.70063,-73.90474,Private room,30,15,0,,1,0 +20309,50053528,Manhattan,East Village,40.7246,-73.98258,Private room,80,3,110,3.48,1,11 +20310,89873550,Brooklyn,Bedford-Stuyvesant,40.68441,-73.95099,Shared room,68,3,0,,2,0 +20311,326185,Brooklyn,Williamsburg,40.71532,-73.95563,Entire home/apt,108,3,3,0.1,1,0 +20312,61585315,Manhattan,Upper West Side,40.78513,-73.97737,Private room,75,2,3,0.1,1,0 +20313,49900664,Manhattan,Upper East Side,40.76954,-73.94904,Entire home/apt,91,2,2,0.06,1,0 +20314,6677922,Staten Island,Great Kills,40.55616,-74.16027,Entire home/apt,51,4,29,0.97,1,15 +20315,101499766,Queens,Springfield Gardens,40.68203,-73.75437,Private room,60,1,305,9.83,2,341 +20316,2748223,Manhattan,Harlem,40.80447,-73.94623,Entire home/apt,120,14,1,0.03,1,188 +20317,32031114,Brooklyn,Crown Heights,40.672470000000004,-73.95752,Entire home/apt,110,30,1,0.03,1,0 +20318,3088873,Brooklyn,Williamsburg,40.72052,-73.96239,Entire home/apt,149,2,9,0.29,1,0 +20319,18104054,Manhattan,Upper East Side,40.76761,-73.95985999999999,Entire home/apt,160,7,1,0.03,1,0 +20320,19585203,Brooklyn,Kensington,40.64571,-73.97449,Entire home/apt,90,7,2,0.07,1,0 +20321,9442323,Brooklyn,Greenpoint,40.73242,-73.9585,Entire home/apt,250,3,64,2.15,1,72 +20322,31391525,Manhattan,Upper West Side,40.80103,-73.96546,Entire home/apt,74,27,1,0.03,1,0 +20323,36382944,Brooklyn,Williamsburg,40.7152,-73.9623,Entire home/apt,230,31,2,0.06,1,0 +20324,59442523,Brooklyn,Flatbush,40.651579999999996,-73.96428,Private room,90,1,2,0.09,2,0 +20325,24418469,Brooklyn,East Flatbush,40.64625,-73.95048,Entire home/apt,200,3,6,0.2,1,0 +20326,71147912,Brooklyn,Bushwick,40.7046,-73.92538,Private room,49,4,3,0.1,1,0 +20327,354891,Brooklyn,Crown Heights,40.67715,-73.94543,Shared room,100,2,0,,1,364 +20328,11081130,Manhattan,Morningside Heights,40.81447,-73.9593,Private room,37,5,0,,1,0 +20329,45299546,Brooklyn,Williamsburg,40.71297,-73.93602,Private room,47,7,2,0.07,1,12 +20330,33200665,Manhattan,Upper East Side,40.77026,-73.95208000000001,Entire home/apt,127,3,0,,1,0 +20331,104177785,Queens,Jackson Heights,40.75418,-73.88586,Private room,250,2,14,0.51,1,1 +20332,3991905,Manhattan,Gramercy,40.73873,-73.98714,Entire home/apt,250,3,1,0.04,1,0 +20333,32199225,Brooklyn,Williamsburg,40.7141,-73.94685,Entire home/apt,360,1,2,0.06,1,0 +20334,69131939,Manhattan,Lower East Side,40.713429999999995,-73.98676999999999,Entire home/apt,200,4,25,1.12,1,352 +20335,106197850,Brooklyn,Sunset Park,40.64318,-74.01329,Private room,50,7,1,0.04,1,0 +20336,106197923,Queens,Arverne,40.58873,-73.79573,Entire home/apt,85,2,99,3.15,1,56 +20337,44458662,Brooklyn,Bedford-Stuyvesant,40.68725,-73.93068000000001,Private room,40,5,2,0.08,1,0 +20338,53836757,Manhattan,East Village,40.72947,-73.9785,Private room,85,4,20,0.65,1,12 +20339,3568330,Brooklyn,Bedford-Stuyvesant,40.69332,-73.93502,Private room,85,9,6,0.22,1,10 +20340,106233552,Queens,East Elmhurst,40.76652,-73.86650999999999,Entire home/apt,239,3,12,0.55,2,266 +20341,1468716,Brooklyn,Cobble Hill,40.68631,-73.99624,Entire home/apt,700,4,3,0.24,1,89 +20342,35261699,Brooklyn,Greenpoint,40.72253,-73.9435,Private room,60,7,6,0.2,1,62 +20343,75443454,Queens,Ditmars Steinway,40.773070000000004,-73.91821999999999,Private room,87,3,3,0.1,2,343 +20344,40230231,Brooklyn,Greenpoint,40.72547,-73.94595,Private room,50,8,1,0.16,1,2 +20345,18625208,Brooklyn,Williamsburg,40.71606,-73.95135,Private room,85,2,4,0.13,1,0 +20346,106272021,Brooklyn,Prospect-Lefferts Gardens,40.663129999999995,-73.94028,Private room,80,1,12,0.39,3,5 +20347,12810839,Manhattan,West Village,40.73193,-74.00529,Private room,90,1,32,1.04,2,0 +20348,36234811,Queens,Arverne,40.589890000000004,-73.79117,Private room,69,1,25,0.81,4,156 +20349,86575720,Manhattan,Chelsea,40.74138,-73.99875,Entire home/apt,128,1,6,0.19,1,0 +20350,36234811,Queens,Arverne,40.59153,-73.79166,Entire home/apt,200,1,46,1.65,4,152 +20351,65811347,Manhattan,West Village,40.736129999999996,-74.00711,Entire home/apt,220,28,2,0.08,1,365 +20352,44707475,Brooklyn,Williamsburg,40.71396,-73.93952,Private room,35,7,5,0.16,1,0 +20353,62287125,Queens,Astoria,40.76755,-73.9232,Entire home/apt,110,30,0,,1,0 +20354,42734903,Manhattan,Midtown,40.75374,-73.97138000000001,Entire home/apt,300,3,0,,1,0 +20355,3086976,Brooklyn,Clinton Hill,40.68902,-73.96784,Entire home/apt,135,7,2,0.07,1,0 +20356,8091133,Brooklyn,Bushwick,40.7004,-73.91934,Private room,40,2,0,,1,0 +20357,19000672,Brooklyn,Crown Heights,40.67503,-73.95770999999999,Private room,150,2,2,0.07,1,0 +20358,106321136,Brooklyn,Bedford-Stuyvesant,40.691179999999996,-73.9554,Private room,35,15,0,,1,0 +20359,60146124,Brooklyn,Williamsburg,40.71416,-73.93852,Private room,38,21,13,0.42,1,26 +20360,46660053,Brooklyn,Williamsburg,40.71311,-73.95331999999999,Private room,70,2,52,1.7,3,62 +20361,82319393,Manhattan,Midtown,40.75073,-73.98439,Private room,350,3,1,0.03,1,0 +20362,106327066,Manhattan,Washington Heights,40.84448,-73.93576,Private room,50,2,1,0.03,1,0 +20363,40277743,Manhattan,Morningside Heights,40.80722,-73.95924000000001,Private room,68,5,0,,1,0 +20364,336228,Queens,Sunnyside,40.74673,-73.91564,Private room,95,1,2,0.09,1,0 +20365,24967970,Manhattan,Inwood,40.86269,-73.9222,Private room,80,3,6,0.28,1,58 +20366,18569725,Manhattan,Hell's Kitchen,40.76246,-73.99913000000001,Entire home/apt,150,1,21,0.67,1,0 +20367,20844522,Brooklyn,Prospect-Lefferts Gardens,40.65963,-73.96174,Entire home/apt,53,12,17,0.74,1,32 +20368,5164854,Manhattan,Harlem,40.81943,-73.9387,Private room,54,5,8,0.31,8,332 +20369,20718860,Queens,Astoria,40.76205,-73.90556,Entire home/apt,99,3,0,,1,0 +20370,40711894,Queens,Elmhurst,40.740120000000005,-73.88917,Private room,53,1,9,0.29,4,0 +20371,1192630,Brooklyn,Crown Heights,40.67775,-73.9445,Entire home/apt,135,2,77,2.66,2,61 +20372,104626152,Brooklyn,Bedford-Stuyvesant,40.68893,-73.95354,Entire home/apt,525,2,1,0.03,4,189 +20373,1395843,Manhattan,Washington Heights,40.84313,-73.93947,Private room,50,2,3,0.1,1,0 +20374,104626152,Brooklyn,Bedford-Stuyvesant,40.68802,-73.9534,Private room,200,2,0,,4,189 +20375,104626152,Brooklyn,Bedford-Stuyvesant,40.68817,-73.95479,Private room,200,2,1,0.03,4,189 +20376,101053359,Manhattan,Washington Heights,40.85447,-73.92804,Entire home/apt,99,4,2,0.09,1,0 +20377,92321381,Brooklyn,Fort Greene,40.69117,-73.96968000000001,Entire home/apt,145,30,0,,1,29 +20378,31486652,Manhattan,Financial District,40.70858,-74.00599,Private room,129,13,0,,1,0 +20379,20645317,Brooklyn,Clinton Hill,40.6886,-73.96197,Private room,80,2,4,0.13,1,10 +20380,69427329,Queens,Elmhurst,40.73812,-73.87546999999999,Entire home/apt,150,1,150,4.82,6,255 +20381,69427329,Queens,Elmhurst,40.7369,-73.87613,Entire home/apt,120,1,134,4.36,6,249 +20382,46382018,Manhattan,Chinatown,40.7162,-73.99379,Entire home/apt,90,20,0,,1,0 +20383,16437254,Brooklyn,Boerum Hill,40.68778,-73.98534000000001,Entire home/apt,123,30,5,0.16,21,343 +20384,10263854,Manhattan,Chinatown,40.71833,-73.99443000000001,Entire home/apt,250,1,29,0.95,1,358 +20385,106405713,Manhattan,Harlem,40.82098,-73.94214000000001,Private room,100,2,5,0.55,1,135 +20386,272826,Brooklyn,Williamsburg,40.71821,-73.95385,Entire home/apt,100,28,0,,1,0 +20387,85938655,Manhattan,Hell's Kitchen,40.7625,-73.98801999999999,Entire home/apt,250,3,31,1.14,2,295 +20388,51501835,Manhattan,Hell's Kitchen,40.76518,-73.9929,Entire home/apt,98,30,8,0.32,31,145 +20389,407407,Bronx,Norwood,40.87372,-73.88625,Private room,60,2,3,0.1,1,364 +20390,106437594,Manhattan,Chelsea,40.74586,-74.00361,Entire home/apt,165,6,5,0.16,1,0 +20391,106438891,Manhattan,Nolita,40.72382,-73.99335,Private room,100,3,1,0.03,1,0 +20392,33069397,Manhattan,Roosevelt Island,40.76178,-73.94988000000001,Private room,40,10,1,0.03,1,0 +20393,106442885,Brooklyn,Bedford-Stuyvesant,40.69379,-73.93645,Private room,37,1,93,3.0,2,2 +20394,106407359,Manhattan,Harlem,40.80255,-73.95434,Private room,75,2,121,3.89,1,3 +20395,65800377,Brooklyn,Bushwick,40.70068,-73.92225,Private room,39,2,9,0.29,3,79 +20396,106442885,Brooklyn,Bedford-Stuyvesant,40.68865,-73.93684,Private room,29,1,139,4.43,2,2 +20397,23055253,Brooklyn,Bushwick,40.698640000000005,-73.92933000000001,Private room,80,3,2,0.07,2,0 +20398,20362478,Manhattan,Upper East Side,40.76835,-73.95837,Private room,100,1,19,0.62,1,0 +20399,106451051,Queens,Ridgewood,40.703379999999996,-73.91006,Private room,40,5,8,0.26,1,6 +20400,77304447,Manhattan,Harlem,40.822070000000004,-73.95331999999999,Private room,45,5,40,1.31,3,45 +20401,106454216,Brooklyn,Bushwick,40.68763,-73.91773,Entire home/apt,55,3,53,1.73,2,243 +20402,32625342,Bronx,Kingsbridge,40.88467,-73.90575,Private room,30,4,11,0.35,2,0 +20403,26432133,Queens,East Elmhurst,40.76335,-73.87007,Private room,48,1,510,16.22,5,341 +20404,104166155,Brooklyn,East Flatbush,40.641709999999996,-73.94721,Private room,49,1,1,0.3,2,90 +20405,1154016,Brooklyn,Greenpoint,40.72287,-73.94135,Entire home/apt,135,5,13,0.48,1,159 +20406,14683530,Manhattan,East Harlem,40.79507,-73.94248,Entire home/apt,200,5,8,0.26,1,19 +20407,13715851,Manhattan,East Village,40.7284,-73.98673000000001,Entire home/apt,850,3,0,,1,180 +20408,54342301,Brooklyn,Crown Heights,40.677479999999996,-73.95101,Entire home/apt,300,2,11,0.38,1,9 +20409,105606522,Brooklyn,Bushwick,40.68987,-73.91858,Private room,70,3,1,0.03,1,0 +20410,49883421,Manhattan,Lower East Side,40.71973,-73.99022,Entire home/apt,225,4,8,0.26,1,0 +20411,43797176,Brooklyn,Cypress Hills,40.67816,-73.90583000000001,Private room,80,2,17,0.7,1,353 +20412,13490820,Brooklyn,Williamsburg,40.707190000000004,-73.94749,Private room,50,3,3,0.35,1,0 +20413,26765580,Brooklyn,Bedford-Stuyvesant,40.68393,-73.94967,Entire home/apt,110,2,91,3.02,1,48 +20414,34549333,Manhattan,Washington Heights,40.83321,-73.93838000000001,Private room,54,3,1,0.03,1,0 +20415,28695751,Brooklyn,Park Slope,40.68164,-73.9779,Entire home/apt,125,3,22,0.72,2,0 +20416,106544984,Bronx,Norwood,40.87583,-73.87737,Private room,125,1,0,,1,0 +20417,106546614,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.94193,Private room,40,7,0,,1,0 +20418,99494083,Brooklyn,Bedford-Stuyvesant,40.68322,-73.93073000000001,Entire home/apt,115,5,47,1.53,2,91 +20419,7965887,Queens,Ridgewood,40.70292,-73.91119,Private room,60,3,5,0.16,1,0 +20420,11768876,Brooklyn,Bushwick,40.6995,-73.93334,Private room,30,2,61,1.95,1,26 +20421,106555930,Brooklyn,Fort Greene,40.69612,-73.97361,Private room,150,2,0,,1,0 +20422,92493393,Staten Island,West Brighton,40.632090000000005,-74.11494,Private room,55,2,30,0.96,5,61 +20423,42422050,Manhattan,East Village,40.727090000000004,-73.97459,Private room,79,2,19,0.67,2,244 +20424,3018866,Manhattan,East Village,40.73067,-73.98853000000001,Entire home/apt,425,30,0,,1,179 +20425,16214285,Brooklyn,Crown Heights,40.66837,-73.95836,Entire home/apt,85,3,7,0.38,1,20 +20426,10795846,Manhattan,Upper West Side,40.7892,-73.9734,Private room,80,1,47,1.5,2,0 +20427,92493393,Staten Island,West Brighton,40.63302,-74.11395999999999,Private room,55,2,64,2.04,5,348 +20428,67469354,Manhattan,Harlem,40.828140000000005,-73.9378,Private room,66,3,78,2.49,1,55 +20429,1470458,Brooklyn,Greenpoint,40.71973,-73.95407,Entire home/apt,135,3,14,0.46,1,0 +20430,75918061,Brooklyn,Crown Heights,40.6749,-73.95233,Entire home/apt,140,4,47,1.66,1,5 +20431,5164854,Manhattan,Harlem,40.82104,-73.93915,Private room,52,7,3,0.13,8,326 +20432,4661503,Brooklyn,Greenpoint,40.726859999999995,-73.94926,Entire home/apt,130,3,0,,1,0 +20433,82646321,Manhattan,Hell's Kitchen,40.76428,-73.99381,Entire home/apt,130,2,77,3.63,1,9 +20434,106627653,Manhattan,Chelsea,40.74735,-73.99974,Entire home/apt,585,3,7,0.23,1,0 +20435,47675184,Brooklyn,Bedford-Stuyvesant,40.692009999999996,-73.9475,Private room,35,1,7,0.22,1,0 +20436,106634224,Brooklyn,Bedford-Stuyvesant,40.69554,-73.94246,Private room,55,14,4,0.13,2,0 +20437,106634512,Queens,Ridgewood,40.698209999999996,-73.89811999999999,Entire home/apt,60,3,101,3.65,2,47 +20438,4453703,Brooklyn,Bushwick,40.697309999999995,-73.93271999999999,Private room,43,1,1,0.03,1,0 +20439,27977412,Brooklyn,East Flatbush,40.645379999999996,-73.94863000000001,Shared room,36,30,2,0.07,4,365 +20440,68714722,Manhattan,Upper East Side,40.77704,-73.94442,Entire home/apt,166,2,4,0.49,1,0 +20441,22919533,Brooklyn,Williamsburg,40.712579999999996,-73.95976,Private room,150,3,43,1.41,2,67 +20442,10330612,Brooklyn,Bushwick,40.70145,-73.92708,Entire home/apt,97,12,0,,1,120 +20443,56089590,Manhattan,Lower East Side,40.72018,-73.98521,Entire home/apt,250,3,53,1.98,1,220 +20444,27260699,Brooklyn,Bushwick,40.69533,-73.90889,Shared room,28,1,103,4.02,4,133 +20445,106654118,Brooklyn,Bedford-Stuyvesant,40.68493,-73.94403,Entire home/apt,179,31,59,1.92,1,198 +20446,66271966,Manhattan,Hell's Kitchen,40.769259999999996,-73.98796,Entire home/apt,97,1,4,0.14,1,0 +20447,5865860,Manhattan,Midtown,40.75524,-73.96755,Private room,120,2,2,0.08,1,0 +20448,76212913,Brooklyn,Williamsburg,40.71049,-73.9624,Entire home/apt,350,3,17,0.55,1,129 +20449,27951037,Queens,Ditmars Steinway,40.77664,-73.90896,Private room,65,30,79,2.55,2,0 +20450,9367785,Brooklyn,Greenpoint,40.725,-73.94633,Private room,63,1,10,0.32,1,0 +20451,106714852,Manhattan,Chinatown,40.714009999999995,-73.99186999999999,Entire home/apt,151,7,2,0.14,1,0 +20452,934811,Manhattan,Kips Bay,40.74047,-73.98380999999999,Private room,70,2,8,0.26,1,0 +20453,106720090,Manhattan,Hell's Kitchen,40.76202,-73.99201,Private room,95,4,0,,1,0 +20454,101113812,Manhattan,East Village,40.73256,-73.98621999999999,Entire home/apt,198,5,10,0.32,1,0 +20455,9018292,Brooklyn,Boerum Hill,40.68894,-73.99037,Private room,60,7,0,,1,0 +20456,106723044,Manhattan,Upper East Side,40.774840000000005,-73.95103,Private room,100,1,1,0.03,1,0 +20457,1451269,Brooklyn,Bushwick,40.70234,-73.92439,Entire home/apt,140,5,3,0.1,1,7 +20458,105828057,Brooklyn,Bushwick,40.6957,-73.91875,Private room,49,25,61,1.96,1,0 +20459,69545883,Manhattan,Midtown,40.751979999999996,-73.97266,Private room,799,3,3,0.1,12,365 +20460,29111684,Manhattan,Lower East Side,40.72167,-73.99075,Private room,85,30,2,0.06,1,0 +20461,8567200,Manhattan,East Village,40.72733,-73.99037,Entire home/apt,250,3,36,1.18,1,36 +20462,53394322,Brooklyn,Williamsburg,40.71445,-73.93415999999999,Private room,58,7,0,,1,0 +20463,13846249,Manhattan,West Village,40.73368,-74.00049,Private room,100,2,2,0.06,1,0 +20464,106732476,Brooklyn,Williamsburg,40.71179,-73.95565,Entire home/apt,110,2,0,,1,0 +20465,3240340,Manhattan,Harlem,40.80392,-73.95642,Private room,55,2,7,0.23,1,0 +20466,106742582,Manhattan,Washington Heights,40.84517,-73.93748000000001,Entire home/apt,65,4,2,0.08,1,0 +20467,44102978,Manhattan,Washington Heights,40.8471,-73.93500999999999,Entire home/apt,75,1,17,0.55,1,253 +20468,106746084,Brooklyn,Williamsburg,40.714,-73.95665,Private room,55,3,0,,1,0 +20469,8381084,Manhattan,Two Bridges,40.7115,-73.99903,Entire home/apt,190,2,45,1.47,2,112 +20470,59529529,Manhattan,Hell's Kitchen,40.76275,-73.99525,Private room,70,1,178,5.75,6,146 +20471,29533851,Manhattan,East Village,40.72954,-73.98303,Private room,85,2,57,2.36,1,56 +20472,35998113,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.90956,Private room,57,2,151,4.93,3,0 +20473,106756395,Brooklyn,Bedford-Stuyvesant,40.689370000000004,-73.9226,Shared room,25,1,3,0.1,2,0 +20474,4291007,Brooklyn,Clinton Hill,40.69461,-73.96186,Private room,97,30,9,0.29,11,263 +20475,4291007,Brooklyn,Bedford-Stuyvesant,40.6945,-73.96005,Private room,80,30,15,0.48,11,342 +20476,304148,Brooklyn,Downtown Brooklyn,40.69899,-73.98653,Entire home/apt,180,5,0,,1,0 +20477,8368667,Manhattan,East Village,40.725429999999996,-73.99129,Entire home/apt,215,2,18,0.7,1,68 +20478,13741210,Brooklyn,Flatbush,40.64849,-73.96585,Entire home/apt,89,2,9,0.29,1,0 +20479,29650513,Brooklyn,Clinton Hill,40.69307,-73.96183,Private room,97,30,13,0.41,6,332 +20480,29650513,Brooklyn,Bedford-Stuyvesant,40.694590000000005,-73.96103000000001,Private room,97,30,7,0.24,6,97 +20481,2245740,Manhattan,Harlem,40.81153,-73.94528000000001,Private room,120,7,0,,1,0 +20482,106798652,Brooklyn,Bushwick,40.69477,-73.92489,Private room,50,7,0,,2,362 +20483,102913031,Manhattan,East Harlem,40.79142,-73.9398,Entire home/apt,350,4,33,1.2,1,346 +20484,88152200,Manhattan,Harlem,40.79942,-73.95128000000001,Entire home/apt,159,3,11,0.36,1,0 +20485,106816918,Brooklyn,Greenpoint,40.72623,-73.94972,Private room,150,2,37,1.23,1,0 +20486,43610994,Brooklyn,Bedford-Stuyvesant,40.67902,-73.95085,Entire home/apt,70,2,5,0.19,1,0 +20487,106819890,Manhattan,Chelsea,40.74289,-73.9953,Entire home/apt,300,6,0,,1,0 +20488,26004891,Brooklyn,Fort Greene,40.69357,-73.97235,Private room,44,6,0,,1,0 +20489,4992081,Brooklyn,Williamsburg,40.70669,-73.94334,Private room,84,3,10,0.38,1,4 +20490,8030654,Manhattan,East Village,40.72087,-73.98079,Private room,300,1,2,0.15,1,0 +20491,106827427,Brooklyn,Bushwick,40.6984,-73.92273,Private room,30,3,2,0.07,1,0 +20492,50690723,Manhattan,Harlem,40.8087,-73.95142,Entire home/apt,245,7,0,,1,0 +20493,23700673,Brooklyn,Clinton Hill,40.69546,-73.96188000000001,Private room,76,3,163,5.22,2,53 +20494,2559886,Manhattan,Hell's Kitchen,40.762840000000004,-73.98849,Entire home/apt,130,4,2,0.07,1,0 +20495,20532489,Brooklyn,Williamsburg,40.71002,-73.96236999999999,Private room,124,2,71,2.32,1,70 +20496,106837455,Manhattan,Upper West Side,40.78297,-73.98141,Entire home/apt,160,90,2,0.07,8,125 +20497,83717038,Brooklyn,Greenpoint,40.73731,-73.95493,Private room,45,2,85,2.73,3,171 +20498,58391491,Queens,East Elmhurst,40.76432,-73.87227,Private room,33,1,333,10.64,5,139 +20499,58391491,Queens,East Elmhurst,40.76509,-73.8717,Private room,45,1,255,8.17,5,175 +20500,106445501,Brooklyn,Prospect-Lefferts Gardens,40.65868,-73.94991999999999,Entire home/apt,200,2,46,1.5,1,234 +20501,27809907,Manhattan,Chinatown,40.717040000000004,-73.99081,Private room,130,2,2,0.06,1,0 +20502,3173147,Manhattan,Lower East Side,40.71833,-73.98555999999999,Private room,95,4,15,0.63,2,244 +20503,58391491,Queens,East Elmhurst,40.76582,-73.87153,Private room,45,1,306,9.82,5,155 +20504,68547639,Brooklyn,Bedford-Stuyvesant,40.689009999999996,-73.95371,Private room,100,1,0,,1,0 +20505,105075484,Brooklyn,Canarsie,40.6315,-73.90760999999999,Entire home/apt,117,2,88,2.85,1,349 +20506,106899231,Brooklyn,Fort Greene,40.69601,-73.97114,Entire home/apt,220,6,7,0.23,2,5 +20507,3952200,Brooklyn,Williamsburg,40.70581,-73.95004,Entire home/apt,100,3,72,2.31,2,302 +20508,9236677,Manhattan,Hell's Kitchen,40.75997,-73.98781,Private room,155,1,0,,1,0 +20509,15130664,Brooklyn,Carroll Gardens,40.68577,-73.9928,Entire home/apt,450,2,0,,1,0 +20510,32923003,Brooklyn,Bushwick,40.70279,-73.9289,Private room,31,7,2,0.06,1,89 +20511,85692123,Queens,Ridgewood,40.705009999999994,-73.91065,Entire home/apt,99,4,1,0.03,1,0 +20512,106837455,Manhattan,Upper West Side,40.78467,-73.98192,Entire home/apt,900,30,0,,8,362 +20513,1228668,Brooklyn,Red Hook,40.67414,-74.00707,Private room,38,4,4,0.13,1,0 +20514,33127406,Manhattan,Lower East Side,40.72007,-73.98559,Private room,90,5,0,,1,0 +20515,106921180,Queens,Ridgewood,40.70412,-73.90171,Private room,33,3,2,0.06,1,0 +20516,66375835,Bronx,North Riverdale,40.901540000000004,-73.89791,Entire home/apt,125,7,0,,1,89 +20517,32946808,Brooklyn,Greenpoint,40.728790000000004,-73.95689,Entire home/apt,170,3,37,1.18,1,258 +20518,81109720,Manhattan,Harlem,40.83036,-73.94346,Private room,35,15,0,,1,0 +20519,23848987,Queens,Ridgewood,40.707229999999996,-73.91107,Private room,40,5,0,,1,0 +20520,1636770,Brooklyn,Bedford-Stuyvesant,40.68314,-73.9566,Private room,68,2,4,0.13,1,0 +20521,105079063,Queens,Ridgewood,40.698570000000004,-73.90618,Private room,65,4,20,0.64,1,0 +20522,43719073,Brooklyn,Sheepshead Bay,40.59813,-73.95432,Shared room,37,1,47,1.58,5,354 +20523,8904815,Brooklyn,Flatbush,40.64438,-73.95484,Entire home/apt,92,7,15,0.49,2,281 +20524,3914854,Brooklyn,Williamsburg,40.70885,-73.94586,Private room,125,2,3,0.1,1,0 +20525,106940881,Brooklyn,Flatbush,40.639,-73.96661999999999,Entire home/apt,71,1,124,3.97,1,64 +20526,13933851,Brooklyn,Bedford-Stuyvesant,40.68997,-73.92742,Private room,40,8,11,0.35,2,0 +20527,106948369,Manhattan,Chelsea,40.74753,-74.00395999999999,Entire home/apt,110,3,7,0.31,1,9 +20528,91320722,Bronx,Kingsbridge,40.86605,-73.90694,Entire home/apt,47,26,3,0.16,1,37 +20529,42561290,Brooklyn,East New York,40.66192,-73.86764000000001,Private room,45,2,37,1.21,4,158 +20530,106948134,Manhattan,Roosevelt Island,40.76182,-73.94879,Private room,50,1,8,0.32,2,0 +20531,60736303,Brooklyn,Williamsburg,40.71457,-73.96332,Private room,60,2,1,0.03,1,0 +20532,36828710,Brooklyn,Williamsburg,40.7133,-73.95036999999999,Private room,60,1,1,0.04,1,0 +20533,35215309,Manhattan,East Harlem,40.79639,-73.93319,Private room,55,3,24,0.86,2,81 +20534,105394139,Bronx,Fordham,40.87093,-73.8934,Private room,58,3,84,2.74,4,75 +20535,28450419,Manhattan,Gramercy,40.73794,-73.98423000000001,Entire home/apt,200,10,4,0.15,1,48 +20536,9210000,Brooklyn,Bushwick,40.68376,-73.91121,Private room,50,2,5,0.16,1,206 +20537,106634224,Brooklyn,Bedford-Stuyvesant,40.69442,-73.94362,Private room,55,7,0,,2,0 +20538,106401814,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.94549,Entire home/apt,180,3,0,,1,0 +20539,106963874,Queens,Elmhurst,40.74572,-73.87556,Private room,50,1,2,0.07,1,0 +20540,106951556,Manhattan,Chinatown,40.714890000000004,-73.99438,Entire home/apt,129,7,11,0.35,1,188 +20541,5828836,Manhattan,Harlem,40.82548,-73.94983,Entire home/apt,255,2,1,0.03,1,0 +20542,93393807,Manhattan,Lower East Side,40.7178,-73.98448,Entire home/apt,177,1,46,1.5,1,31 +20543,106977720,Brooklyn,Carroll Gardens,40.67711,-73.99691999999999,Private room,50,2,2,0.07,1,0 +20544,40146897,Brooklyn,Crown Heights,40.67306,-73.92334,Private room,49,2,34,1.11,5,29 +20545,107022433,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93124,Entire home/apt,325,2,67,2.27,3,250 +20546,4013000,Queens,Bayside,40.75377,-73.7726,Private room,30,15,22,0.7,2,145 +20547,15702477,Manhattan,Upper West Side,40.795190000000005,-73.96945,Entire home/apt,109,2,2,0.07,1,0 +20548,19655631,Brooklyn,Bedford-Stuyvesant,40.68588,-73.92784,Entire home/apt,100,6,55,1.81,1,59 +20549,33229585,Manhattan,Upper East Side,40.76786,-73.96973,Entire home/apt,280,4,23,0.76,1,17 +20550,60617669,Manhattan,Midtown,40.75169,-73.97174,Entire home/apt,149,2,2,0.06,4,0 +20551,101132948,Manhattan,West Village,40.73726,-74.00085,Entire home/apt,2590,1,8,0.41,1,361 +20552,32707981,Manhattan,East Village,40.72357,-73.98796999999999,Entire home/apt,400,2,0,,4,0 +20553,6335037,Manhattan,West Village,40.73243,-74.00932,Entire home/apt,220,4,1,0.03,1,0 +20554,107055014,Manhattan,Harlem,40.82255,-73.94807,Private room,147,4,30,1.18,1,28 +20555,107058927,Brooklyn,Williamsburg,40.719570000000004,-73.95828,Private room,50,4,0,,1,0 +20556,1260413,Brooklyn,Williamsburg,40.712920000000004,-73.94136999999999,Private room,105,3,4,0.13,3,0 +20557,35331192,Brooklyn,Bedford-Stuyvesant,40.683690000000006,-73.94896999999999,Entire home/apt,175,4,2,0.07,1,0 +20558,69280122,Brooklyn,Greenpoint,40.7234,-73.94136,Entire home/apt,60,3,5,0.17,1,0 +20559,105394139,Bronx,Fordham,40.86909,-73.89395999999999,Private room,55,3,74,2.42,4,84 +20560,31736547,Manhattan,East Harlem,40.78983,-73.94419,Private room,65,1,73,3.32,2,34 +20561,78466689,Manhattan,Inwood,40.87247,-73.91927,Private room,59,2,11,0.36,1,29 +20562,25438770,Manhattan,East Village,40.72528,-73.98854,Private room,165,3,0,,1,0 +20563,71698853,Manhattan,Upper West Side,40.785920000000004,-73.97331,Entire home/apt,100,2,1,0.03,1,0 +20564,60163700,Manhattan,Harlem,40.82378,-73.95354,Private room,50,60,13,0.67,4,0 +20565,106949780,Manhattan,Theater District,40.75527,-73.98507,Entire home/apt,145,2,5,0.16,1,0 +20566,27932675,Manhattan,NoHo,40.72571,-73.99506,Entire home/apt,100,3,3,0.1,1,0 +20567,4229387,Brooklyn,Greenpoint,40.73475,-73.95543,Entire home/apt,150,4,4,0.13,1,0 +20568,107082851,Brooklyn,Williamsburg,40.708059999999996,-73.9427,Private room,59,5,1,0.03,2,0 +20569,32545798,Brooklyn,Williamsburg,40.71443,-73.96154,Private room,45,1,4,0.13,5,0 +20570,14808512,Brooklyn,Williamsburg,40.718090000000004,-73.95383000000001,Entire home/apt,170,3,2,0.07,1,0 +20571,93211521,Manhattan,East Village,40.7292,-73.98156,Entire home/apt,120,6,1,0.03,1,0 +20572,39528519,Manhattan,Lower East Side,40.71239,-73.98626,Shared room,32,14,0,,28,342 +20573,46416490,Manhattan,Harlem,40.80883,-73.94577,Private room,68,30,20,0.65,1,15 +20574,4487093,Manhattan,East Harlem,40.79677,-73.94823000000001,Private room,105,2,85,2.79,1,117 +20575,26574838,Brooklyn,Williamsburg,40.70769,-73.94548,Private room,65,2,2,0.07,1,0 +20576,106193743,Brooklyn,Crown Heights,40.67816,-73.95111999999999,Entire home/apt,100,7,0,,1,0 +20577,7359870,Manhattan,Harlem,40.82179,-73.94776999999999,Entire home/apt,95,4,0,,1,0 +20578,17171419,Manhattan,Washington Heights,40.85204,-73.92886,Private room,39,4,0,,2,0 +20579,48952468,Brooklyn,Bedford-Stuyvesant,40.68974,-73.94283,Entire home/apt,75,2,68,2.28,1,232 +20580,90829719,Brooklyn,Williamsburg,40.713809999999995,-73.95040999999999,Entire home/apt,125,1,112,3.65,1,221 +20581,5659683,Brooklyn,Crown Heights,40.677690000000005,-73.95309,Entire home/apt,100,3,5,0.17,1,8 +20582,105074140,Queens,Flushing,40.75482,-73.80368,Private room,48,1,52,2.03,4,0 +20583,4366982,Manhattan,Gramercy,40.73741,-73.99003,Entire home/apt,149,10,9,0.29,1,19 +20584,18329648,Brooklyn,Sheepshead Bay,40.606640000000006,-73.95402,Private room,40,1,0,,1,0 +20585,40965944,Manhattan,Midtown,40.75092,-73.98635999999999,Entire home/apt,290,2,5,0.16,1,0 +20586,6842719,Brooklyn,Williamsburg,40.71451,-73.93959,Private room,120,1,7,0.23,2,89 +20587,107158968,Brooklyn,Carroll Gardens,40.683840000000004,-73.99065,Private room,45,1,8,0.26,1,0 +20588,107162130,Manhattan,West Village,40.73021,-74.00663,Entire home/apt,119,2,0,,1,0 +20589,1528114,Brooklyn,Bedford-Stuyvesant,40.6836,-73.93495,Entire home/apt,95,4,68,2.3,1,0 +20590,61042,Manhattan,Harlem,40.82112,-73.95482,Private room,45,4,22,0.71,6,0 +20591,24074171,Manhattan,NoHo,40.72501,-73.99323000000001,Entire home/apt,400,2,26,0.9,1,10 +20592,107177716,Brooklyn,Bedford-Stuyvesant,40.68712,-73.94708,Entire home/apt,130,2,168,5.45,1,203 +20593,107040079,Brooklyn,Crown Heights,40.66713,-73.9411,Private room,80,4,46,1.94,2,272 +20594,97853468,Bronx,Hunts Point,40.81841,-73.89067,Private room,45,14,18,0.68,4,332 +20595,11511386,Manhattan,Chinatown,40.71513,-73.9981,Private room,100,2,1,0.03,1,0 +20596,7676346,Brooklyn,Sunset Park,40.66033,-73.99623000000001,Entire home/apt,80,2,0,,1,0 +20597,38679669,Manhattan,Morningside Heights,40.80324,-73.96432,Private room,65,4,0,,1,0 +20598,17098527,Manhattan,East Village,40.72638,-73.97752,Private room,200,4,2,0.07,1,39 +20599,6153409,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95535,Private room,45,15,3,0.1,1,0 +20600,107158006,Manhattan,Harlem,40.8228,-73.93956,Private room,60,2,119,3.82,1,198 +20601,48071153,Manhattan,East Village,40.72477,-73.9859,Entire home/apt,132,4,10,0.33,1,26 +20602,6202020,Queens,Astoria,40.76875,-73.92769,Private room,119,1,0,,1,0 +20603,106634512,Queens,Ridgewood,40.698209999999996,-73.8974,Entire home/apt,60,3,63,4.42,2,50 +20604,16627758,Brooklyn,Bedford-Stuyvesant,40.68643,-73.95548000000001,Private room,38,1,3,0.1,1,0 +20605,107240480,Brooklyn,South Slope,40.66383,-73.983,Entire home/apt,50,4,0,,1,0 +20606,10683360,Manhattan,Greenwich Village,40.727470000000004,-73.9969,Entire home/apt,240,3,15,0.56,1,45 +20607,27275952,Brooklyn,Downtown Brooklyn,40.695840000000004,-73.98465999999999,Entire home/apt,285,4,0,,2,102 +20608,16949541,Brooklyn,Williamsburg,40.71372,-73.96231999999999,Entire home/apt,120,4,9,0.42,2,291 +20609,16068447,Manhattan,East Village,40.72363,-73.97972,Entire home/apt,499,1,0,,1,0 +20610,697678,Brooklyn,Bedford-Stuyvesant,40.68009,-73.94676,Entire home/apt,119,3,6,0.2,1,0 +20611,106436231,Queens,Astoria,40.771209999999996,-73.92846999999999,Entire home/apt,225,7,1,0.03,1,0 +20612,81190209,Manhattan,Stuyvesant Town,40.73125,-73.97891,Private room,110,1,0,,1,0 +20613,7310057,Queens,Astoria,40.76793,-73.91918000000001,Entire home/apt,79,3,2,0.11,1,0 +20614,100595030,Brooklyn,Williamsburg,40.7131,-73.94981,Private room,85,28,14,0.5,2,0 +20615,53179388,Manhattan,Financial District,40.70742,-74.01544,Entire home/apt,200,30,1,0.03,10,342 +20616,53179388,Manhattan,Midtown,40.75006,-73.97006999999999,Entire home/apt,150,30,3,0.12,10,350 +20617,58877492,Manhattan,Hell's Kitchen,40.764179999999996,-73.98885,Entire home/apt,190,4,0,,1,0 +20618,20692024,Manhattan,Midtown,40.75827,-73.96195999999999,Entire home/apt,215,5,7,0.38,1,0 +20619,1276297,Brooklyn,Greenpoint,40.72838,-73.94739,Private room,67,1,2,0.07,1,0 +20620,99237414,Manhattan,East Harlem,40.78676,-73.94376,Private room,79,3,21,0.69,1,46 +20621,107294313,Brooklyn,Bay Ridge,40.63835,-74.02614,Entire home/apt,139,2,93,3.02,1,217 +20622,107296819,Manhattan,East Harlem,40.79583,-73.93595,Entire home/apt,105,1,142,4.62,3,11 +20623,34471130,Brooklyn,Greenpoint,40.73292,-73.95987,Entire home/apt,250,2,0,,1,0 +20624,107291364,Brooklyn,Coney Island,40.57751,-73.98521,Shared room,50,2,1,0.03,1,0 +20625,93121568,Bronx,Concourse,40.823879999999996,-73.9279,Private room,60,2,53,1.8,2,169 +20626,17691352,Manhattan,Financial District,40.706179999999996,-74.00385,Private room,75,15,3,0.1,1,0 +20627,93121568,Bronx,Concourse,40.82415,-73.92778,Private room,50,2,63,2.06,2,110 +20628,1000278,Manhattan,West Village,40.73415,-74.00721,Entire home/apt,190,1,86,2.76,1,236 +20629,13043232,Manhattan,Greenwich Village,40.72934,-74.00025,Entire home/apt,230,5,14,0.45,1,9 +20630,8571056,Manhattan,Inwood,40.86663,-73.92390999999999,Entire home/apt,80,2,4,0.13,1,0 +20631,61187947,Manhattan,Hell's Kitchen,40.762170000000005,-73.99105,Private room,100,3,0,,1,0 +20632,107136259,Brooklyn,Williamsburg,40.706140000000005,-73.9487,Entire home/apt,199,2,1,0.03,1,0 +20633,9270927,Manhattan,East Village,40.72461,-73.9892,Entire home/apt,190,1,0,,1,0 +20634,6141851,Brooklyn,Williamsburg,40.71385,-73.95559,Private room,64,2,3,0.1,1,0 +20635,2455580,Brooklyn,Fort Greene,40.68529,-73.97365,Entire home/apt,225,3,0,,1,0 +20636,106291193,Queens,Flushing,40.7408,-73.82708000000001,Private room,35,1,0,,1,0 +20637,16085180,Manhattan,East Village,40.72351,-73.98389,Private room,70,2,9,0.29,1,0 +20638,17764574,Brooklyn,Brooklyn Heights,40.69797,-73.992,Private room,60,3,0,,1,0 +20639,16462666,Brooklyn,Williamsburg,40.71385,-73.96046,Entire home/apt,264,2,2,0.07,3,0 +20640,107382521,Manhattan,Theater District,40.75725,-73.98796,Private room,100,1,36,1.18,1,0 +20641,5895282,Manhattan,Greenwich Village,40.73421,-73.9968,Entire home/apt,135,5,9,0.29,1,0 +20642,16677326,Manhattan,Chelsea,40.747859999999996,-73.99651999999999,Private room,85,1,84,2.71,12,359 +20643,16677326,Manhattan,Chelsea,40.74929,-73.99545,Private room,85,1,113,3.63,12,360 +20644,23099342,Brooklyn,Fort Greene,40.687129999999996,-73.97222,Private room,55,7,2,0.06,1,0 +20645,1482059,Manhattan,Chinatown,40.71698,-73.99629,Entire home/apt,295,2,43,1.39,1,66 +20646,101809002,Brooklyn,Brownsville,40.65958,-73.91113,Private room,28,1,7,0.23,1,0 +20647,59338077,Queens,Ridgewood,40.70443,-73.90656,Private room,45,1,2,0.07,1,0 +20648,47817193,Brooklyn,Clinton Hill,40.686040000000006,-73.9676,Private room,120,1,2,0.07,1,0 +20649,94027304,Brooklyn,Williamsburg,40.71499,-73.95561,Private room,90,3,5,0.16,1,0 +20650,52176200,Manhattan,East Harlem,40.79227,-73.94536,Private room,89,1,138,5.31,1,34 +20651,37236633,Brooklyn,Bedford-Stuyvesant,40.68273,-73.93397,Private room,50,30,2,0.07,1,0 +20652,71499658,Brooklyn,Williamsburg,40.71518,-73.94151,Private room,50,3,0,,1,0 +20653,107398940,Manhattan,Greenwich Village,40.72829,-74.00233,Entire home/apt,150,3,2,0.07,1,0 +20654,80901099,Manhattan,Washington Heights,40.850190000000005,-73.94093000000001,Shared room,40,1,0,,1,0 +20655,78497102,Manhattan,Lower East Side,40.71777,-73.98526,Private room,99,1,6,0.2,1,0 +20656,52014015,Brooklyn,Crown Heights,40.6754,-73.94977,Entire home/apt,225,1,0,,1,0 +20657,52780335,Manhattan,Washington Heights,40.83985,-73.93715,Entire home/apt,65,3,14,0.45,1,0 +20658,107412747,Brooklyn,Williamsburg,40.71058,-73.95294,Entire home/apt,280,1,133,4.34,1,359 +20659,19855956,Manhattan,Hell's Kitchen,40.76514,-73.98550999999999,Private room,100,7,0,,1,0 +20660,1175504,Manhattan,Kips Bay,40.74301,-73.98037,Entire home/apt,120,4,2,0.07,1,0 +20661,107416436,Manhattan,Upper East Side,40.77848,-73.9486,Private room,70,7,1,0.03,1,0 +20662,5212097,Manhattan,East Village,40.72258,-73.98148,Private room,100,3,5,0.19,2,0 +20663,8134440,Brooklyn,Williamsburg,40.71614,-73.94134,Private room,55,2,0,,1,0 +20664,5213327,Manhattan,Washington Heights,40.84369,-73.93890999999999,Entire home/apt,150,7,0,,1,0 +20665,107455767,Queens,Rosedale,40.653220000000005,-73.73366,Private room,50,15,92,2.96,5,356 +20666,3125516,Manhattan,Lower East Side,40.718,-73.98496999999999,Entire home/apt,95,8,3,0.1,1,0 +20667,98976,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95023,Entire home/apt,140,7,4,0.13,1,0 +20668,3413390,Manhattan,East Village,40.72249,-73.98145,Entire home/apt,180,2,24,0.77,1,0 +20669,102012893,Manhattan,Harlem,40.80669,-73.9497,Entire home/apt,200,5,2,0.07,2,0 +20670,4448551,Brooklyn,Williamsburg,40.71048,-73.96292,Private room,74,29,17,0.55,1,0 +20671,3894843,Manhattan,Chelsea,40.741820000000004,-73.99904000000001,Private room,95,1,75,3.95,1,19 +20672,50097540,Brooklyn,Williamsburg,40.70735,-73.94032,Entire home/apt,114,4,41,1.44,1,0 +20673,22541573,Manhattan,Chelsea,40.74569,-73.9922,Entire home/apt,205,30,0,,87,357 +20674,22541573,Manhattan,Chelsea,40.74613,-73.99178,Entire home/apt,279,30,1,0.26,87,358 +20675,43272616,Brooklyn,Fort Greene,40.69613,-73.97364,Private room,80,3,0,,2,0 +20676,28455413,Brooklyn,Bedford-Stuyvesant,40.67988,-73.93945,Private room,31,21,5,0.19,2,0 +20677,60617669,Manhattan,Midtown,40.75222,-73.97276,Entire home/apt,299,2,0,,4,0 +20678,22803324,Brooklyn,Williamsburg,40.70675,-73.96768,Private room,80,2,3,0.11,1,0 +20679,9947836,Bronx,Longwood,40.82441,-73.89454,Private room,50,3,61,2.17,2,22 +20680,28779108,Brooklyn,Prospect-Lefferts Gardens,40.66024,-73.95518,Entire home/apt,190,4,26,1.18,1,145 +20681,8309054,Manhattan,East Village,40.72726,-73.98037,Private room,90,2,3,0.1,1,0 +20682,254846,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92258000000001,Entire home/apt,399,3,31,1.03,4,290 +20683,70724645,Manhattan,Hell's Kitchen,40.76007,-73.99031,Private room,79,1,0,,1,0 +20684,54246858,Manhattan,Harlem,40.80997,-73.9412,Entire home/apt,110,3,79,3.69,1,257 +20685,19294443,Brooklyn,Park Slope,40.67514,-73.97598,Entire home/apt,85,2,1,0.03,1,0 +20686,20578378,Manhattan,Upper East Side,40.77547,-73.9623,Private room,105,2,35,1.35,1,327 +20687,107556087,Manhattan,East Harlem,40.804759999999995,-73.94074,Shared room,89,1,2,0.19,1,88 +20688,12349009,Manhattan,Nolita,40.72253,-73.99459,Entire home/apt,200,3,1,0.03,1,0 +20689,561033,Brooklyn,Bushwick,40.6998,-73.93781,Private room,63,3,19,0.68,1,160 +20690,106756395,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92139,Private room,50,1,0,,2,0 +20691,59886126,Queens,Glendale,40.70505,-73.89041999999999,Entire home/apt,95,4,63,2.21,1,101 +20692,3722715,Brooklyn,Bedford-Stuyvesant,40.69055,-73.95394,Private room,58,1,16,0.52,2,8 +20693,21058022,Manhattan,Greenwich Village,40.736979999999996,-73.99675,Private room,120,4,5,0.16,3,0 +20694,18483938,Manhattan,Upper East Side,40.77149,-73.95121,Entire home/apt,180,8,1,0.03,1,0 +20695,4923854,Manhattan,Hell's Kitchen,40.75966,-73.991,Private room,150,3,2,0.1,1,8 +20696,12895206,Manhattan,Upper East Side,40.776509999999995,-73.94791,Private room,65,7,4,0.13,1,0 +20697,8594019,Manhattan,Morningside Heights,40.81626,-73.96035,Private room,50,3,5,0.18,2,0 +20698,23341466,Manhattan,Theater District,40.76384,-73.98491999999999,Private room,105,8,1,0.05,1,0 +20699,74868631,Brooklyn,Bushwick,40.699690000000004,-73.92867,Entire home/apt,70,3,3,0.13,1,66 +20700,107578852,Manhattan,Washington Heights,40.8439,-73.93744000000001,Private room,53,1,165,5.35,2,120 +20701,53850552,Manhattan,Harlem,40.82682,-73.95142,Private room,50,6,4,0.13,1,0 +20702,6755652,Manhattan,Lower East Side,40.72077,-73.99023000000001,Entire home/apt,205,3,102,3.36,1,117 +20703,43870735,Brooklyn,Crown Heights,40.6706,-73.96025999999999,Entire home/apt,72,6,0,,1,0 +20704,107589614,Manhattan,Chinatown,40.715379999999996,-73.99669,Entire home/apt,142,4,12,0.43,2,151 +20705,87690038,Brooklyn,Crown Heights,40.67525,-73.93333,Private room,52,2,123,4.01,4,332 +20706,53611405,Brooklyn,Williamsburg,40.705420000000004,-73.94957,Private room,117,2,3,0.1,1,285 +20707,27847787,Manhattan,Upper West Side,40.784459999999996,-73.97189,Entire home/apt,230,6,9,0.37,1,0 +20708,71540842,Queens,Ridgewood,40.707770000000004,-73.91053000000001,Entire home/apt,75,3,90,2.93,2,72 +20709,15231187,Brooklyn,Greenpoint,40.73203,-73.95572,Entire home/apt,89,3,69,2.25,1,0 +20710,27977412,Brooklyn,East Flatbush,40.63899,-73.94886,Shared room,30,30,4,0.15,4,365 +20711,42076125,Queens,Hollis,40.71368,-73.76337,Private room,80,3,0,,2,89 +20712,107417836,Brooklyn,Bedford-Stuyvesant,40.68205,-73.92833,Entire home/apt,200,3,73,2.5,1,329 +20713,27977412,Brooklyn,East Flatbush,40.64233,-73.94773,Shared room,38,30,0,,4,365 +20714,43197578,Queens,South Ozone Park,40.6727,-73.81598000000001,Entire home/apt,89,1,2,2.0,1,42 +20715,3619937,Brooklyn,Bushwick,40.69935,-73.92642,Private room,41,7,7,0.24,2,0 +20716,7009468,Brooklyn,Park Slope,40.680890000000005,-73.97965,Private room,75,1,3,0.1,1,108 +20717,107671914,Brooklyn,East Flatbush,40.65737,-73.92563,Private room,90,3,36,1.28,1,50 +20718,20823812,Manhattan,East Village,40.72798,-73.97787,Entire home/apt,135,1,1,0.03,1,0 +20719,73550323,Bronx,Parkchester,40.84012,-73.86521,Private room,40,1,1,0.03,1,0 +20720,6439477,Brooklyn,Williamsburg,40.71304,-73.94861999999999,Private room,93,2,7,0.23,1,146 +20721,107682732,Queens,Ditmars Steinway,40.77677,-73.9106,Entire home/apt,100,3,93,3.03,1,12 +20722,40611169,Brooklyn,Carroll Gardens,40.67933,-73.99562,Entire home/apt,350,1,82,2.67,5,152 +20723,107670361,Manhattan,Lower East Side,40.71845,-73.98572,Private room,125,1,0,,1,0 +20724,18978686,Queens,Ditmars Steinway,40.77492,-73.90866,Private room,70,2,0,,1,0 +20725,43151590,Manhattan,West Village,40.73581,-74.00684,Entire home/apt,150,3,4,0.13,1,0 +20726,22526477,Manhattan,Chelsea,40.74543,-74.00055,Entire home/apt,300,4,1,0.03,1,0 +20727,107699884,Manhattan,Upper West Side,40.79096,-73.97582,Private room,86,1,42,1.55,1,24 +20728,83185960,Manhattan,Lower East Side,40.7151,-73.98661,Entire home/apt,180,3,49,1.58,1,1 +20729,45247495,Bronx,Fieldston,40.892790000000005,-73.89945999999999,Entire home/apt,135,6,8,0.32,1,250 +20730,7546451,Manhattan,East Village,40.7288,-73.98147,Private room,100,10,8,0.34,1,0 +20731,19803201,Brooklyn,Greenpoint,40.72282,-73.94174,Entire home/apt,179,30,32,1.18,2,326 +20732,11429272,Brooklyn,Williamsburg,40.70603,-73.94147,Entire home/apt,116,1,55,1.89,1,0 +20733,44269300,Queens,Sunnyside,40.7396,-73.92324,Private room,115,2,24,0.78,1,19 +20734,36758315,Brooklyn,Sunset Park,40.64342,-74.01224,Private room,60,2,1,0.03,1,0 +20735,39834676,Brooklyn,Crown Heights,40.67756,-73.94775,Entire home/apt,137,3,5,0.19,1,266 +20736,16792201,Manhattan,Kips Bay,40.74092,-73.97993000000001,Entire home/apt,190,9,5,0.2,1,0 +20737,107082851,Brooklyn,Williamsburg,40.70899,-73.94063,Private room,45,5,0,,2,0 +20738,91299100,Manhattan,Upper West Side,40.77406,-73.98252,Entire home/apt,150,3,2,0.07,2,0 +20739,4965750,Brooklyn,Bedford-Stuyvesant,40.68505,-73.93427,Entire home/apt,165,2,92,2.97,1,127 +20740,69545883,Manhattan,Midtown,40.75183,-73.97336999999999,Private room,599,3,0,,12,365 +20741,2488129,Manhattan,Greenwich Village,40.7286,-73.99971,Entire home/apt,275,1,81,2.64,1,258 +20742,40630037,Brooklyn,Williamsburg,40.70786,-73.94821,Private room,60,2,8,0.26,1,0 +20743,64042146,Brooklyn,Flatbush,40.65096,-73.96395,Private room,33,5,2,0.06,1,0 +20744,1877402,Manhattan,Harlem,40.81199,-73.95340999999999,Entire home/apt,125,2,10,0.36,2,0 +20745,21136805,Brooklyn,Crown Heights,40.66973,-73.95634,Private room,41,1,7,0.23,1,45 +20746,16462666,Brooklyn,Williamsburg,40.71353,-73.96144,Private room,89,3,0,,3,0 +20747,16677326,Manhattan,Chelsea,40.74837,-73.99639,Private room,85,1,70,2.27,12,344 +20748,570442,Queens,Briarwood,40.713570000000004,-73.81985999999999,Private room,85,2,0,,1,0 +20749,104497453,Brooklyn,Bedford-Stuyvesant,40.68606,-73.92356,Entire home/apt,150,2,7,0.24,3,37 +20750,1239078,Brooklyn,Greenpoint,40.72607,-73.95777,Entire home/apt,150,2,30,1.01,2,0 +20751,24092157,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.9215,Entire home/apt,143,2,8,0.26,1,38 +20752,107662519,Manhattan,Midtown,40.75182,-73.97354,Entire home/apt,400,3,0,,1,0 +20753,107830761,Brooklyn,Flatbush,40.652029999999996,-73.9628,Private room,36,6,1,0.03,1,0 +20754,107830392,Manhattan,East Harlem,40.79528,-73.9478,Private room,75,1,91,2.95,1,188 +20755,2422554,Bronx,University Heights,40.86084,-73.90288000000001,Entire home/apt,110,7,0,,2,40 +20756,107833451,Manhattan,Kips Bay,40.740809999999996,-73.98018,Entire home/apt,200,5,1,0.03,1,0 +20757,107836121,Manhattan,Midtown,40.76555,-73.98029,Entire home/apt,150,5,1,0.05,1,0 +20758,107836752,Manhattan,Hell's Kitchen,40.76115,-73.99597,Entire home/apt,350,4,0,,1,0 +20759,6897064,Manhattan,Upper West Side,40.781420000000004,-73.98418000000001,Private room,87,3,1,0.03,2,0 +20760,6897064,Manhattan,Upper West Side,40.78138,-73.98318,Private room,50,3,0,,2,0 +20761,49987,Manhattan,East Village,40.73245,-73.98873,Entire home/apt,130,2,1,0.03,1,0 +20762,344583,Brooklyn,Bedford-Stuyvesant,40.685590000000005,-73.95398,Entire home/apt,120,2,105,3.42,1,22 +20763,43490434,Manhattan,Harlem,40.820029999999996,-73.95194000000001,Entire home/apt,100,2,68,2.33,1,9 +20764,36234811,Queens,Arverne,40.5921,-73.79285,Private room,55,1,28,0.91,4,159 +20765,14416504,Manhattan,Financial District,40.70639,-74.00794,Private room,120,5,0,,1,0 +20766,7988793,Brooklyn,Williamsburg,40.71996,-73.95567,Private room,59,30,1,0.03,1,0 +20767,1223281,Brooklyn,Gowanus,40.66621,-73.99311,Entire home/apt,100,5,10,0.41,1,0 +20768,1647202,Brooklyn,Williamsburg,40.7083,-73.94933,Entire home/apt,100,1,37,1.28,1,44 +20769,1192630,Brooklyn,Crown Heights,40.67763,-73.94581,Entire home/apt,375,5,3,0.12,2,22 +20770,19659393,Manhattan,Morningside Heights,40.80826,-73.96499,Entire home/apt,105,2,1,0.03,1,0 +20771,107933494,Brooklyn,Park Slope,40.66643,-73.97598,Entire home/apt,165,3,33,1.15,2,305 +20772,107939984,Brooklyn,Fort Hamilton,40.61444,-74.02974,Entire home/apt,150,4,78,2.6,1,29 +20773,96438921,Manhattan,Roosevelt Island,40.7623,-73.95044,Entire home/apt,96,4,0,,1,0 +20774,881222,Brooklyn,Bedford-Stuyvesant,40.685759999999995,-73.93223,Private room,70,3,0,,1,0 +20775,97513787,Manhattan,Chinatown,40.71523,-73.99242,Private room,72,25,11,0.37,5,323 +20776,108009985,Brooklyn,Williamsburg,40.70971,-73.95229,Entire home/apt,225,7,8,0.26,1,0 +20777,50549111,Manhattan,Upper East Side,40.77198,-73.95003,Entire home/apt,200,3,3,0.1,1,0 +20778,50482164,Manhattan,Midtown,40.75993,-73.97054,Entire home/apt,145,1,51,1.69,1,0 +20779,40871485,Brooklyn,Bay Ridge,40.63821,-74.0273,Shared room,22,5,1,0.03,1,0 +20780,794727,Brooklyn,Bedford-Stuyvesant,40.690220000000004,-73.94298,Entire home/apt,60,4,11,0.36,1,0 +20781,52243881,Manhattan,East Village,40.7232,-73.98223,Private room,90,1,8,0.26,2,0 +20782,19804292,Brooklyn,Williamsburg,40.71199,-73.95581,Private room,80,3,0,,1,0 +20783,25528796,Manhattan,Tribeca,40.71812,-74.0044,Entire home/apt,190,3,0,,1,0 +20784,1708922,Brooklyn,Greenpoint,40.72463,-73.94128,Entire home/apt,128,4,17,0.67,1,9 +20785,1475015,Manhattan,Midtown,40.75072,-73.97023,Entire home/apt,83,30,0,,52,325 +20786,7579679,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96185,Entire home/apt,50,4,1,0.04,1,0 +20787,108055585,Manhattan,Upper West Side,40.78864,-73.97683,Entire home/apt,300,2,9,0.53,1,105 +20788,49208451,Manhattan,Upper West Side,40.7819,-73.98366999999999,Private room,200,1,2,0.06,1,0 +20789,107948590,Brooklyn,Bushwick,40.694520000000004,-73.92322,Private room,59,1,1,0.03,1,0 +20790,108061424,Brooklyn,Crown Heights,40.66961,-73.94032,Private room,85,2,3,0.12,1,0 +20791,16273228,Manhattan,East Harlem,40.79602,-73.94884,Private room,77,1,6,0.23,1,0 +20792,108078909,Manhattan,Upper East Side,40.77174,-73.95703,Private room,113,1,7,0.23,1,0 +20793,538300,Brooklyn,Bedford-Stuyvesant,40.6965,-73.9601,Private room,54,5,12,0.4,1,21 +20794,26789852,Queens,Long Island City,40.75502,-73.93163,Private room,50,4,125,4.29,2,11 +20795,22024939,Manhattan,East Village,40.72163,-73.98291,Entire home/apt,450,1,0,,1,0 +20796,58391491,Queens,East Elmhurst,40.76383,-73.87337,Private room,40,1,255,8.33,5,154 +20797,23700673,Brooklyn,Clinton Hill,40.69377,-73.96229,Private room,100,3,0,,2,2 +20798,23095202,Brooklyn,East Flatbush,40.63425,-73.94861999999999,Shared room,45,2,0,,2,88 +20799,51065605,Bronx,Port Morris,40.80743,-73.92971,Entire home/apt,115,5,7,0.23,1,7 +20800,3428943,Manhattan,Upper East Side,40.769059999999996,-73.95369000000001,Entire home/apt,119,7,0,,1,0 +20801,108160091,Brooklyn,Williamsburg,40.71002,-73.96114,Entire home/apt,218,30,25,0.82,3,342 +20802,60344033,Manhattan,Washington Heights,40.84916,-73.93759,Private room,35,5,0,,1,0 +20803,2970729,Manhattan,Harlem,40.8116,-73.943,Entire home/apt,120,3,15,2.06,1,15 +20804,19442899,Manhattan,Hell's Kitchen,40.75545,-73.99547,Private room,119,7,11,0.37,1,0 +20805,108188109,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93776,Entire home/apt,100,3,75,2.59,1,36 +20806,62925063,Brooklyn,Bushwick,40.70275,-73.93288000000001,Private room,69,1,6,0.33,2,83 +20807,19578509,Manhattan,West Village,40.73409,-74.00621,Entire home/apt,190,2,24,0.78,1,0 +20808,85002860,Manhattan,Morningside Heights,40.81387,-73.96205,Entire home/apt,110,10,0,,1,0 +20809,1624568,Manhattan,Inwood,40.8698,-73.92255,Entire home/apt,120,1,30,1.1,1,35 +20810,13713605,Brooklyn,Kensington,40.642720000000004,-73.97187,Entire home/apt,140,3,13,1.09,2,141 +20811,36431705,Brooklyn,Gowanus,40.6714,-73.99257,Private room,75,4,7,0.23,1,253 +20812,42783841,Manhattan,East Village,40.72807,-73.97718,Entire home/apt,85,5,0,,1,0 +20813,22541573,Manhattan,Midtown,40.74593,-73.98687,Entire home/apt,200,30,0,,87,365 +20814,85499618,Queens,Rego Park,40.72507,-73.86959,Shared room,110,1,5,0.39,1,56 +20815,69545883,Manhattan,Midtown,40.75327,-73.97175,Private room,599,3,2,0.07,12,365 +20816,24752198,Manhattan,Upper West Side,40.803470000000004,-73.96607,Private room,38,3,1,0.03,1,0 +20817,59559158,Manhattan,Tribeca,40.72355,-74.01045,Entire home/apt,375,2,30,1.03,1,38 +20818,108272855,Brooklyn,Sunset Park,40.64212,-74.00259,Entire home/apt,90,2,108,3.52,1,144 +20819,69545883,Manhattan,Midtown,40.75373,-73.97272,Private room,999,3,1,0.05,12,365 +20820,108275969,Queens,Long Island City,40.74902,-73.9472,Private room,57,5,0,,1,0 +20821,15651084,Manhattan,Murray Hill,40.74917,-73.97549000000001,Entire home/apt,200,2,0,,1,0 +20822,107933494,Brooklyn,Park Slope,40.667629999999996,-73.97485999999999,Entire home/apt,260,3,17,0.6,2,309 +20823,10896884,Manhattan,Washington Heights,40.84798,-73.94091999999999,Private room,99,2,0,,1,0 +20824,4033160,Brooklyn,Williamsburg,40.714040000000004,-73.95783,Private room,98,1,3,0.1,1,0 +20825,51830483,Manhattan,Hell's Kitchen,40.76106,-73.98891,Private room,79,1,20,0.7,2,151 +20826,69398683,Manhattan,West Village,40.73795,-74.00139,Entire home/apt,175,2,7,0.38,1,0 +20827,7427325,Manhattan,Hell's Kitchen,40.76548,-73.99374,Private room,200,1,20,0.69,2,0 +20828,11084524,Manhattan,Morningside Heights,40.804390000000005,-73.96263,Private room,50,3,0,,1,0 +20829,5379884,Brooklyn,Greenpoint,40.73792,-73.95541,Private room,60,7,5,0.16,1,0 +20830,13312279,Manhattan,East Village,40.72638,-73.98464,Entire home/apt,125,4,17,0.56,1,0 +20831,17713747,Manhattan,Washington Heights,40.85365,-73.93298,Private room,60,15,1,0.03,3,159 +20832,13924244,Brooklyn,Williamsburg,40.71281,-73.94246,Entire home/apt,100,4,48,2.16,1,6 +20833,108367656,Manhattan,Upper West Side,40.77547,-73.98154,Entire home/apt,225,4,10,0.42,1,0 +20834,26495426,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95334,Entire home/apt,110,3,147,4.79,1,88 +20835,5179443,Brooklyn,Williamsburg,40.72162,-73.96029,Entire home/apt,195,4,7,0.23,1,0 +20836,108448918,Brooklyn,Bushwick,40.700759999999995,-73.92878,Private room,55,3,13,0.43,1,0 +20837,15279171,Brooklyn,Flatbush,40.6456,-73.95982,Entire home/apt,55,2,5,0.16,1,0 +20838,12145783,Manhattan,East Harlem,40.8006,-73.94115,Entire home/apt,99,30,3,0.22,2,220 +20839,108464471,Bronx,Longwood,40.8179,-73.91456,Private room,100,6,0,,1,365 +20840,16677326,Manhattan,Chelsea,40.74788,-73.99615,Private room,85,1,108,3.53,12,356 +20841,100112994,Queens,Long Island City,40.7495,-73.93675999999999,Private room,100,3,56,4.48,2,42 +20842,51025844,Manhattan,Inwood,40.86768,-73.92685,Private room,69,2,41,1.34,3,180 +20843,1635983,Bronx,Schuylerville,40.83248,-73.83203,Private room,46,4,43,1.65,3,135 +20844,108489381,Manhattan,Upper West Side,40.782959999999996,-73.98284,Private room,165,1,1,0.03,1,0 +20845,108494755,Manhattan,Inwood,40.86253,-73.9277,Entire home/apt,75,5,0,,1,0 +20846,20414850,Queens,Glendale,40.704190000000004,-73.88558,Private room,40,2,2,0.06,1,0 +20847,108433379,Bronx,Norwood,40.87692,-73.87427,Entire home/apt,130,5,0,,1,89 +20848,23293950,Brooklyn,Red Hook,40.67706,-74.01133,Entire home/apt,115,2,124,5.04,1,275 +20849,37994197,Manhattan,Lower East Side,40.72068,-73.98574,Entire home/apt,349,3,76,2.54,1,71 +20850,12554468,Manhattan,Tribeca,40.71845,-74.00932,Entire home/apt,259,2,116,4.03,1,1 +20851,45293248,Brooklyn,Williamsburg,40.705890000000004,-73.95123000000001,Entire home/apt,137,3,3,0.1,1,0 +20852,108561042,Brooklyn,Bushwick,40.69487,-73.9263,Private room,40,10,0,,1,0 +20853,99643776,Manhattan,Chinatown,40.71682,-73.99574,Entire home/apt,160,3,40,1.35,2,124 +20854,411560,Brooklyn,Williamsburg,40.70893,-73.94662,Entire home/apt,200,2,1,0.04,1,0 +20855,23970798,Manhattan,Lower East Side,40.71265,-73.98711,Private room,52,14,4,0.61,1,0 +20856,20354091,Manhattan,Upper East Side,40.76513,-73.96583000000001,Entire home/apt,160,5,14,1.22,1,92 +20857,3012457,Manhattan,East Village,40.7235,-73.97963,Entire home/apt,200,2,3,0.16,1,0 +20858,1809640,Manhattan,Chinatown,40.71333,-73.99225,Entire home/apt,550,2,4,0.14,1,0 +20859,108608482,Manhattan,Kips Bay,40.74227,-73.97431999999999,Private room,100,5,2,0.07,1,0 +20860,19480727,Brooklyn,Williamsburg,40.71013,-73.96517,Entire home/apt,175,5,6,0.21,1,0 +20861,13584145,Manhattan,West Village,40.73308,-74.00203,Entire home/apt,275,2,4,0.15,1,0 +20862,9091115,Queens,Far Rockaway,40.59495,-73.75771,Entire home/apt,100,4,14,0.53,1,17 +20863,40146897,Brooklyn,Crown Heights,40.673559999999995,-73.92130999999999,Private room,60,2,29,1.02,5,0 +20864,50760546,Manhattan,Midtown,40.745059999999995,-73.98201999999999,Entire home/apt,99,30,2,0.11,31,132 +20865,71490429,Brooklyn,Flatbush,40.64972,-73.96363000000001,Entire home/apt,56,20,3,0.1,1,0 +20866,76767234,Manhattan,Harlem,40.82128,-73.95835,Private room,100,2,0,,1,40 +20867,7244288,Manhattan,West Village,40.7326,-74.00824,Entire home/apt,180,3,46,1.51,1,0 +20868,67925153,Brooklyn,Williamsburg,40.705090000000006,-73.93321999999999,Private room,45,1,8,0.26,1,0 +20869,14624072,Brooklyn,Williamsburg,40.71753,-73.94946,Private room,48,2,1,0.03,1,0 +20870,1863597,Manhattan,Chelsea,40.74324,-73.99586,Private room,115,1,9,0.34,1,172 +20871,8366233,Manhattan,East Harlem,40.79372,-73.93445,Private room,50,14,33,1.1,2,22 +20872,1649108,Brooklyn,Navy Yard,40.70095,-73.98006,Private room,135,1,50,1.87,3,29 +20873,22760867,Brooklyn,Bushwick,40.69833,-73.9266,Entire home/apt,200,2,0,,1,0 +20874,39072326,Manhattan,Harlem,40.80999,-73.9415,Private room,80,2,94,3.25,1,167 +20875,71370032,Brooklyn,Williamsburg,40.70827,-73.94749,Private room,80,1,0,,1,0 +20876,73643863,Manhattan,Upper East Side,40.77675,-73.95206,Entire home/apt,95,3,0,,1,0 +20877,64471880,Manhattan,Harlem,40.80227,-73.95523,Private room,87,1,269,8.79,2,65 +20878,11521252,Brooklyn,Williamsburg,40.7129,-73.94896,Private room,83,4,0,,1,0 +20879,386263,Brooklyn,Crown Heights,40.67673,-73.95311,Entire home/apt,171,3,77,2.72,2,244 +20880,61463458,Manhattan,Midtown,40.75377,-73.97203,Private room,225,2,2,0.16,2,0 +20881,80262218,Manhattan,Upper East Side,40.77251,-73.95430999999999,Entire home/apt,100,30,26,1.18,3,250 +20882,48899796,Brooklyn,Midwood,40.62066,-73.95378000000001,Private room,60,2,56,1.83,2,42 +20883,24273714,Brooklyn,Williamsburg,40.71348,-73.93748000000001,Private room,85,2,22,0.72,3,36 +20884,61463458,Manhattan,Midtown,40.75172,-73.97193,Private room,185,2,0,,2,0 +20885,1363848,Brooklyn,Park Slope,40.67129,-73.98536999999999,Entire home/apt,249,5,18,0.67,1,54 +20886,108781530,Brooklyn,Bushwick,40.695440000000005,-73.92994,Private room,35,2,1,0.1,1,0 +20887,77375497,Manhattan,Upper West Side,40.79163,-73.96727,Entire home/apt,100,4,2,0.09,1,0 +20888,72568223,Brooklyn,Gowanus,40.680659999999996,-73.99096999999999,Entire home/apt,159,5,12,0.41,1,0 +20889,2677753,Manhattan,Midtown,40.76501,-73.98076,Private room,895,2,0,,1,365 +20890,60105727,Manhattan,Chelsea,40.74067,-74.00013,Entire home/apt,196,3,90,3.09,2,186 +20891,5959857,Manhattan,Harlem,40.82097,-73.95281999999999,Private room,40,3,2,0.07,1,0 +20892,5076469,Manhattan,East Village,40.72558,-73.99025,Private room,95,7,2,0.07,1,0 +20893,10460189,Queens,Sunnyside,40.74171,-73.9254,Private room,55,6,23,0.76,1,0 +20894,7824750,Brooklyn,Williamsburg,40.70725,-73.95271,Entire home/apt,122,7,43,1.41,1,146 +20895,36232131,Queens,Woodside,40.74354,-73.90093,Private room,100,3,0,,1,90 +20896,10028635,Queens,Ditmars Steinway,40.775490000000005,-73.90786,Private room,55,3,13,1.13,1,36 +20897,2859516,Manhattan,Lower East Side,40.72198,-73.98785,Private room,90,2,77,2.5,2,68 +20898,11699708,Manhattan,Harlem,40.809309999999996,-73.9412,Private room,75,1,81,2.64,1,158 +20899,8515724,Brooklyn,Williamsburg,40.708940000000005,-73.94142,Entire home/apt,200,1,4,0.17,3,0 +20900,3290436,Brooklyn,Flatbush,40.65352,-73.96191,Private room,70,2,0,,2,177 +20901,795031,Brooklyn,Williamsburg,40.70896,-73.95383000000001,Entire home/apt,136,4,4,0.15,2,0 +20902,48983104,Queens,Middle Village,40.71991,-73.87439,Private room,50,2,47,1.99,3,90 +20903,28642501,Brooklyn,Williamsburg,40.71734,-73.95952,Private room,210,2,0,,1,0 +20904,3543739,Brooklyn,Clinton Hill,40.68513,-73.96789,Entire home/apt,95,3,0,,1,0 +20905,39055365,Brooklyn,Bedford-Stuyvesant,40.68156,-73.91424,Private room,45,2,5,0.17,1,0 +20906,26387193,Brooklyn,Flatbush,40.6528,-73.95805,Entire home/apt,69,1,0,,1,0 +20907,7229636,Bronx,Concourse,40.8262,-73.92557,Entire home/apt,150,4,84,2.87,1,93 +20908,109012504,Queens,Maspeth,40.727,-73.88974,Private room,40,3,1,0.03,1,0 +20909,78441349,Brooklyn,East Flatbush,40.64638,-73.95065,Private room,90,1,30,1.16,3,244 +20910,78441349,Brooklyn,East Flatbush,40.64863,-73.94948000000001,Private room,80,1,27,1.09,3,342 +20911,38853591,Manhattan,Harlem,40.82261,-73.95163000000001,Private room,25,2,102,3.33,1,99 +20912,109033183,Manhattan,Inwood,40.86688,-73.92402,Private room,40,6,6,0.2,1,0 +20913,109036773,Manhattan,Upper East Side,40.76794,-73.95711999999999,Entire home/apt,220,8,15,0.52,1,14 +20914,80375387,Queens,Astoria,40.75888,-73.91747,Private room,81,1,3,0.2,1,179 +20915,91744449,Manhattan,Harlem,40.81488,-73.94221,Private room,85,1,3,0.1,1,0 +20916,35998113,Brooklyn,Bedford-Stuyvesant,40.68186,-73.91188000000001,Shared room,31,4,114,3.72,3,0 +20917,108786369,Brooklyn,Bedford-Stuyvesant,40.6933,-73.9541,Entire home/apt,130,3,8,0.27,1,0 +20918,16860700,Manhattan,Upper East Side,40.77628,-73.95322,Entire home/apt,91,1,0,,1,0 +20919,24690329,Brooklyn,South Slope,40.66045,-73.98057,Private room,75,2,25,1.06,1,0 +20920,3291579,Brooklyn,Sunset Park,40.661559999999994,-73.99318000000001,Entire home/apt,73,2,48,1.86,1,2 +20921,17227959,Brooklyn,Crown Heights,40.66404,-73.95141,Entire home/apt,56,4,3,0.1,1,0 +20922,7574029,Brooklyn,Sunset Park,40.65917,-73.99136999999999,Entire home/apt,175,1,17,0.56,1,0 +20923,43642470,Manhattan,East Harlem,40.79732,-73.94873,Private room,47,2,0,,1,0 +20924,109141116,Manhattan,Murray Hill,40.74604,-73.97495,Private room,80,7,0,,1,0 +20925,327489,Brooklyn,Fort Greene,40.69269,-73.9737,Entire home/apt,125,2,8,0.31,1,185 +20926,109142193,Manhattan,Greenwich Village,40.73083,-73.9943,Private room,69,4,0,,1,0 +20927,109155011,Brooklyn,East Flatbush,40.64342,-73.94037,Entire home/apt,75,1,82,3.16,1,179 +20928,1535167,Brooklyn,Williamsburg,40.716809999999995,-73.96296,Private room,69,2,10,0.34,1,0 +20929,11935009,Brooklyn,Clinton Hill,40.68118,-73.96126,Private room,60,2,15,0.5,1,0 +20930,11586393,Brooklyn,Bushwick,40.688629999999996,-73.90874000000001,Private room,80,1,1,0.03,1,66 +20931,101982307,Brooklyn,Williamsburg,40.716609999999996,-73.9551,Private room,60,2,27,1.02,2,0 +20932,107053757,Queens,Richmond Hill,40.6887,-73.82571999999999,Entire home/apt,225,1,69,2.34,1,329 +20933,60591318,Brooklyn,Brooklyn Heights,40.693000000000005,-73.99374,Entire home/apt,185,4,0,,1,0 +20934,42076125,Queens,Hollis,40.71764,-73.76402,Shared room,120,1,0,,2,365 +20935,5281237,Queens,Astoria,40.77267,-73.92871,Private room,80,3,23,0.76,2,244 +20936,46660053,Brooklyn,Williamsburg,40.71368,-73.9536,Private room,55,4,43,1.41,3,58 +20937,22694337,Brooklyn,Flatbush,40.6485,-73.95439,Private room,36,1,18,0.79,1,154 +20938,31685194,Queens,St. Albans,40.694720000000004,-73.77109,Private room,55,2,34,1.16,1,59 +20939,17078225,Manhattan,Harlem,40.81516,-73.94829,Shared room,55,2,36,1.28,2,88 +20940,24118830,Brooklyn,Williamsburg,40.70825,-73.94932,Private room,80,2,5,0.18,1,0 +20941,109306113,Brooklyn,Bedford-Stuyvesant,40.68488,-73.92706,Entire home/apt,149,1,39,2.87,1,75 +20942,1649524,Brooklyn,Prospect Heights,40.67328,-73.96415,Private room,41,1,0,,1,0 +20943,4965665,Brooklyn,Clinton Hill,40.68855,-73.96476,Entire home/apt,95,4,0,,1,156 +20944,11704017,Brooklyn,Cobble Hill,40.6858,-73.99977,Entire home/apt,350,30,2,0.09,1,156 +20945,6600911,Brooklyn,Bensonhurst,40.61336,-73.9857,Private room,35,3,11,0.38,2,79 +20946,1236663,Manhattan,Harlem,40.81847,-73.93956999999999,Private room,50,1,105,3.68,1,25 +20947,17997408,Brooklyn,Clinton Hill,40.69482,-73.96419,Shared room,50,1,197,6.54,2,19 +20948,3781090,Brooklyn,Williamsburg,40.707240000000006,-73.94379,Entire home/apt,100,2,36,1.19,1,0 +20949,9398673,Brooklyn,Prospect Heights,40.67915,-73.96913,Entire home/apt,150,2,2,0.11,1,0 +20950,33674633,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95877,Private room,55,1,0,,1,0 +20951,33064599,Manhattan,Upper West Side,40.80007,-73.96524000000001,Entire home/apt,190,1,4,0.26,6,337 +20952,2988712,Bronx,Mount Hope,40.85188,-73.90321,Entire home/apt,60,90,5,0.2,7,94 +20953,69406365,Manhattan,Upper East Side,40.77102,-73.94671,Entire home/apt,80,1,1,0.03,2,0 +20954,8696190,Brooklyn,Fort Greene,40.6869,-73.97454,Entire home/apt,380,3,11,0.37,1,22 +20955,109498113,Brooklyn,Bushwick,40.69964,-73.93729,Entire home/apt,125,2,103,3.57,1,185 +20956,9599840,Manhattan,Financial District,40.70493,-74.01035999999999,Entire home/apt,235,2,123,4.05,1,235 +20957,94522062,Manhattan,East Village,40.7229,-73.98476,Private room,67,1,6,0.2,1,9 +20958,10075380,Manhattan,West Village,40.73233,-74.00329,Entire home/apt,232,5,5,0.17,1,13 +20959,109526714,Queens,East Elmhurst,40.762240000000006,-73.8766,Private room,40,1,128,4.36,2,145 +20960,23957491,Manhattan,Washington Heights,40.8568,-73.93162,Private room,96,1,87,2.97,1,83 +20961,4494498,Manhattan,Harlem,40.803709999999995,-73.94377,Entire home/apt,225,3,0,,1,0 +20962,109551284,Manhattan,Upper West Side,40.80288,-73.96396,Private room,120,5,11,0.76,2,134 +20963,14577537,Brooklyn,Bedford-Stuyvesant,40.6915,-73.92881,Entire home/apt,120,30,77,2.53,2,0 +20964,109527682,Queens,Jamaica,40.71107,-73.78429,Private room,72,1,10,0.54,1,175 +20965,41878998,Brooklyn,South Slope,40.66812,-73.98595,Private room,90,3,3,0.4,1,5 +20966,23120620,Queens,Flushing,40.7383,-73.80866999999999,Private room,65,1,9,0.72,5,365 +20967,89715765,Manhattan,Harlem,40.81378,-73.95152,Private room,66,3,0,,1,0 +20968,17371775,Brooklyn,Williamsburg,40.71947,-73.96255,Private room,41,10,3,0.1,1,0 +20969,4878363,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94478000000001,Private room,30,1,13,0.45,2,268 +20970,603592,Brooklyn,Bedford-Stuyvesant,40.68392,-73.93123,Entire home/apt,175,4,14,0.5,1,0 +20971,109653516,Queens,Sunnyside,40.74201,-73.92096,Entire home/apt,100,2,91,3.08,1,65 +20972,80601038,Queens,Forest Hills,40.72645,-73.84079,Private room,100,1,34,1.38,2,87 +20973,29096,Brooklyn,Bushwick,40.70677,-73.92043000000001,Private room,65,3,91,3.5,1,294 +20974,109660521,Manhattan,Civic Center,40.71391,-74.00489,Private room,70,1,11,0.45,1,0 +20975,18151522,Queens,Ridgewood,40.70538,-73.91322,Private room,73,1,0,,1,0 +20976,109667882,Brooklyn,South Slope,40.66489,-73.9805,Private room,80,2,35,1.16,1,88 +20977,3932715,Brooklyn,Williamsburg,40.70267,-73.9364,Entire home/apt,160,4,68,2.26,1,16 +20978,62716661,Queens,Astoria,40.7566,-73.91974,Private room,69,1,0,,1,0 +20979,61090067,Manhattan,East Harlem,40.79465,-73.94021,Entire home/apt,180,5,33,1.18,1,35 +20980,16392320,Brooklyn,Bedford-Stuyvesant,40.67864,-73.9444,Entire home/apt,199,2,122,4.06,1,70 +20981,107883536,Manhattan,Midtown,40.74473,-73.99005,Entire home/apt,159,2,0,,1,0 +20982,19053159,Manhattan,Lower East Side,40.71875,-73.98349,Private room,60,2,2,0.12,1,0 +20983,47027510,Brooklyn,Bushwick,40.69102,-73.90526,Private room,49,2,38,2.0,1,9 +20984,6562818,Brooklyn,Greenpoint,40.73693,-73.95506999999999,Entire home/apt,94,3,28,0.93,1,11 +20985,7005192,Manhattan,Harlem,40.83088,-73.945,Entire home/apt,77,47,5,0.18,1,188 +20986,40883799,Brooklyn,Bushwick,40.70476,-73.92195,Private room,56,1,69,2.35,3,87 +20987,2887101,Brooklyn,Williamsburg,40.70762,-73.94221,Private room,47,3,2,0.07,1,0 +20988,25355233,Queens,Springfield Gardens,40.68132,-73.75403,Private room,89,1,220,7.23,1,319 +20989,109729836,Brooklyn,Flatlands,40.62562,-73.94255,Entire home/apt,95,3,4,0.18,1,0 +20990,109733032,Brooklyn,Williamsburg,40.70436,-73.94123,Private room,60,2,14,0.58,1,3 +20991,109734523,Brooklyn,Bedford-Stuyvesant,40.685190000000006,-73.94176,Entire home/apt,125,2,111,3.67,1,255 +20992,109725962,Brooklyn,Bushwick,40.68994,-73.91556,Entire home/apt,11,2,113,3.86,1,261 +20993,6025804,Brooklyn,Bedford-Stuyvesant,40.6849,-73.9289,Private room,29,1,0,,1,0 +20994,2300134,Manhattan,Harlem,40.797979999999995,-73.95052,Private room,80,1,139,4.59,2,0 +20995,2970413,Brooklyn,Crown Heights,40.6714,-73.95546999999999,Private room,75,2,75,2.56,1,275 +20996,46068130,Manhattan,Hell's Kitchen,40.76585,-73.98507,Entire home/apt,175,3,15,0.57,2,0 +20997,2300134,Manhattan,East Harlem,40.79656,-73.94818000000001,Private room,85,1,148,4.96,2,46 +20998,107471514,Brooklyn,Downtown Brooklyn,40.69467,-73.98339,Entire home/apt,123,7,0,,1,0 +20999,107459717,Manhattan,Kips Bay,40.73945,-73.98273,Entire home/apt,144,2,2,0.08,1,0 +21000,51024366,Brooklyn,Greenpoint,40.738240000000005,-73.9537,Private room,99,2,6,0.27,1,364 +21001,109886922,Manhattan,Upper East Side,40.77486,-73.95296,Entire home/apt,899,30,6,0.23,1,89 +21002,109162710,Manhattan,Harlem,40.81367,-73.93809,Private room,141,1,41,1.61,1,334 +21003,7831209,Manhattan,East Harlem,40.80715,-73.93834,Private room,50,1,98,3.25,10,350 +21004,15225114,Brooklyn,Greenpoint,40.73362,-73.95983000000001,Private room,75,2,0,,1,0 +21005,109908957,Brooklyn,East Flatbush,40.64798,-73.94492,Private room,50,7,7,0.23,2,348 +21006,109931171,Queens,Richmond Hill,40.70162,-73.82349,Private room,70,1,0,,1,0 +21007,27102828,Brooklyn,Bedford-Stuyvesant,40.68693,-73.94579,Entire home/apt,50,3,0,,1,0 +21008,7921167,Brooklyn,Park Slope,40.67937,-73.98125999999999,Private room,40,7,0,,1,0 +21009,48866061,Queens,Rego Park,40.72755,-73.86199,Private room,35,1,131,4.33,1,294 +21010,107022433,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93088,Entire home/apt,169,2,54,1.92,3,259 +21011,6865666,Brooklyn,Williamsburg,40.71151,-73.95142,Entire home/apt,78,10,0,,1,0 +21012,110026778,Brooklyn,Williamsburg,40.70981,-73.96781,Private room,119,4,18,0.59,1,0 +21013,110049608,Brooklyn,Midwood,40.61535,-73.95351,Entire home/apt,115,2,80,2.9,1,68 +21014,110050850,Manhattan,Harlem,40.8012,-73.95589,Private room,115,2,27,0.94,1,363 +21015,24805629,Manhattan,Hell's Kitchen,40.76486,-73.98682,Entire home/apt,200,2,6,0.2,1,0 +21016,6074181,Brooklyn,Red Hook,40.67575,-74.01183,Entire home/apt,93,2,37,1.32,1,222 +21017,3019912,Brooklyn,Sunset Park,40.659440000000004,-73.98898,Entire home/apt,160,30,36,1.21,1,53 +21018,31892037,Manhattan,Hell's Kitchen,40.76636,-73.98574,Private room,100,1,1,0.46,1,156 +21019,27267477,Brooklyn,Williamsburg,40.70987,-73.9472,Private room,65,4,10,0.41,1,0 +21020,7831209,Manhattan,East Harlem,40.80545,-73.93838000000001,Private room,64,1,103,3.4,10,364 +21021,17085442,Brooklyn,Fort Greene,40.68891,-73.97284,Entire home/apt,95,1,85,2.93,1,0 +21022,9870527,Brooklyn,Boerum Hill,40.6862,-73.98906,Entire home/apt,220,2,17,0.66,1,167 +21023,42682752,Brooklyn,Cobble Hill,40.68844,-73.99141999999999,Private room,70,2,38,1.33,3,0 +21024,23820907,Queens,Long Island City,40.75699,-73.93499,Entire home/apt,125,5,0,,1,0 +21025,110198200,Brooklyn,Prospect-Lefferts Gardens,40.660340000000005,-73.95981,Entire home/apt,225,2,64,2.24,2,337 +21026,2378621,Brooklyn,Williamsburg,40.70431,-73.93273,Private room,54,12,0,,1,0 +21027,54438083,Queens,Maspeth,40.723440000000004,-73.91051999999999,Entire home/apt,184,2,51,1.72,3,300 +21028,110198200,Brooklyn,Prospect-Lefferts Gardens,40.66077,-73.96004,Entire home/apt,175,4,6,0.23,2,337 +21029,110218367,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92981,Private room,69,2,90,3.1,1,106 +21030,12096316,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94938,Entire home/apt,175,7,4,0.13,1,89 +21031,16400950,Manhattan,East Harlem,40.806740000000005,-73.94145999999999,Private room,91,1,4,0.14,1,0 +21032,13001035,Manhattan,Midtown,40.756,-73.97078,Private room,122,3,19,0.67,1,0 +21033,17753630,Brooklyn,Sunset Park,40.65948,-73.99243,Entire home/apt,150,7,0,,1,0 +21034,10437339,Manhattan,West Village,40.73898,-74.00415,Entire home/apt,250,5,10,0.37,2,198 +21035,8254680,Brooklyn,Bushwick,40.70163,-73.9227,Private room,49,2,0,,1,0 +21036,110326109,Manhattan,East Village,40.72423,-73.97885,Private room,75,1,0,,1,0 +21037,56735326,Brooklyn,Greenpoint,40.72347,-73.94039000000001,Entire home/apt,125,3,4,0.13,1,0 +21038,13257873,Manhattan,Upper East Side,40.776720000000005,-73.95559,Private room,120,3,14,0.53,1,36 +21039,59163247,Manhattan,Chelsea,40.74503,-73.99922,Entire home/apt,233,2,92,3.08,1,219 +21040,110358650,Manhattan,Harlem,40.80767,-73.95127,Entire home/apt,220,3,56,2.01,1,256 +21041,25311040,Brooklyn,Sunset Park,40.643640000000005,-74.01205999999999,Private room,32,7,0,,1,0 +21042,107296819,Manhattan,East Harlem,40.797470000000004,-73.93559,Entire home/apt,105,1,124,4.18,3,0 +21043,3843799,Manhattan,Midtown,40.753820000000005,-73.97192,Entire home/apt,165,3,4,0.18,1,0 +21044,1380312,Brooklyn,Carroll Gardens,40.67735,-73.99706,Entire home/apt,175,7,17,0.58,1,0 +21045,5855892,Manhattan,Washington Heights,40.8531,-73.93871999999999,Entire home/apt,75,2,0,,1,0 +21046,53099839,Manhattan,Lower East Side,40.719190000000005,-73.99208,Private room,200,1,0,,1,0 +21047,68302204,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95751,Private room,100,5,4,0.14,1,0 +21048,14730722,Queens,East Elmhurst,40.76441,-73.88943,Private room,90,2,9,0.34,1,0 +21049,31429300,Brooklyn,Greenpoint,40.73677,-73.95418000000001,Entire home/apt,109,90,1,0.04,1,35 +21050,110478816,Brooklyn,Williamsburg,40.71237,-73.93899,Entire home/apt,95,2,13,0.43,1,0 +21051,2600209,Brooklyn,Williamsburg,40.717079999999996,-73.94278,Private room,60,7,0,,1,0 +21052,43272616,Brooklyn,Fort Greene,40.69701,-73.97524,Private room,75,2,0,,2,0 +21053,6057126,Brooklyn,Park Slope,40.68057,-73.97721999999999,Entire home/apt,175,30,3,0.87,1,321 +21054,110522157,Brooklyn,Park Slope,40.66825,-73.98432,Private room,46,3,4,0.27,1,72 +21055,69776478,Manhattan,East Village,40.72787,-73.9792,Private room,50,7,0,,1,0 +21056,60539147,Manhattan,Hell's Kitchen,40.76468,-73.9868,Entire home/apt,98,30,4,0.14,1,0 +21057,32107612,Brooklyn,Bushwick,40.68886,-73.91906,Private room,95,5,65,2.18,1,60 +21058,49224450,Queens,Woodside,40.742709999999995,-73.9046,Private room,34,3,1,0.03,1,0 +21059,5281237,Queens,Astoria,40.77255,-73.93023000000001,Private room,79,3,26,0.93,2,144 +21060,3507099,Manhattan,Hell's Kitchen,40.76242,-73.98813,Entire home/apt,130,30,6,0.38,2,335 +21061,110629411,Manhattan,Chinatown,40.71471,-73.9993,Entire home/apt,100,7,0,,1,0 +21062,54548232,Manhattan,Harlem,40.826209999999996,-73.95104,Private room,75,2,80,2.69,2,305 +21063,30656279,Manhattan,Hell's Kitchen,40.767379999999996,-73.98565,Private room,61,30,2,0.07,4,121 +21064,59974573,Queens,Elmhurst,40.73734,-73.87215,Entire home/apt,99,4,50,1.85,2,60 +21065,110686573,Manhattan,West Village,40.72999,-74.00475,Entire home/apt,110,5,9,0.39,1,0 +21066,10585694,Manhattan,Midtown,40.75369,-73.96679,Private room,99,2,21,0.7,1,3 +21067,1938828,Brooklyn,East Flatbush,40.64836,-73.94547,Private room,42,13,22,0.75,3,267 +21068,52059111,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.9592,Private room,50,1,1,0.04,1,0 +21069,110708643,Brooklyn,Bedford-Stuyvesant,40.679829999999995,-73.92121,Entire home/apt,82,2,80,2.76,1,28 +21070,4359511,Brooklyn,Bedford-Stuyvesant,40.69089,-73.95854,Entire home/apt,206,2,13,1.25,1,116 +21071,19466874,Manhattan,Upper East Side,40.773270000000004,-73.9547,Entire home/apt,120,3,0,,1,0 +21072,2431149,Brooklyn,Crown Heights,40.67024,-73.93406,Entire home/apt,69,1,7,0.23,2,0 +21073,53277135,Manhattan,West Village,40.73194,-74.00254,Entire home/apt,164,3,20,0.68,1,0 +21074,110737214,Manhattan,Washington Heights,40.835370000000005,-73.93974,Entire home/apt,95,3,4,0.14,1,0 +21075,3507099,Manhattan,Hell's Kitchen,40.76591,-73.99016,Entire home/apt,160,45,5,0.18,2,311 +21076,110786804,Brooklyn,Fort Greene,40.68586,-73.97269,Entire home/apt,150,5,12,0.4,1,26 +21077,3989837,Brooklyn,Williamsburg,40.70867,-73.94060999999999,Private room,75,3,59,1.95,2,77 +21078,7857773,Brooklyn,Greenpoint,40.724109999999996,-73.94181999999999,Entire home/apt,130,2,21,0.94,1,0 +21079,3676370,Manhattan,Harlem,40.80283,-73.95569,Entire home/apt,95,2,4,0.2,1,0 +21080,110825940,Manhattan,Midtown,40.744890000000005,-73.98382,Entire home/apt,199,2,0,,1,0 +21081,107947878,Brooklyn,Bedford-Stuyvesant,40.67948,-73.90822,Entire home/apt,150,2,112,3.88,2,195 +21082,3915722,Brooklyn,Fort Greene,40.6864,-73.96882,Entire home/apt,550,3,1,0.42,1,15 +21083,10966450,Brooklyn,Williamsburg,40.71285,-73.96477,Entire home/apt,250,4,42,1.41,1,126 +21084,1302317,Brooklyn,Williamsburg,40.71246,-73.95308,Private room,150,2,0,,1,0 +21085,53179388,Manhattan,Upper East Side,40.78046,-73.96047,Entire home/apt,200,30,0,,10,164 +21086,99097436,Manhattan,Harlem,40.82777,-73.9407,Entire home/apt,100,1,145,4.81,1,9 +21087,100595030,Brooklyn,Williamsburg,40.71483,-73.94935,Private room,68,30,13,0.47,2,64 +21088,106837455,Manhattan,Upper West Side,40.783390000000004,-73.98168000000001,Entire home/apt,140,30,2,0.07,8,125 +21089,68762417,Manhattan,East Harlem,40.79501,-73.94448,Private room,99,1,109,3.61,4,168 +21090,38599544,Manhattan,Hell's Kitchen,40.7586,-73.98974,Private room,97,2,144,5.11,1,73 +21091,6437545,Manhattan,SoHo,40.72182,-74.00033,Entire home/apt,500,3,0,,1,6 +21092,68762417,Manhattan,East Harlem,40.79453,-73.94543,Private room,75,1,110,3.65,4,34 +21093,110884492,Brooklyn,Crown Heights,40.676759999999994,-73.94513,Entire home/apt,150,3,25,0.91,1,64 +21094,44018877,Brooklyn,East Flatbush,40.63876,-73.95073000000001,Entire home/apt,80,2,72,4.07,2,337 +21095,1384388,Brooklyn,Windsor Terrace,40.65552,-73.97493,Entire home/apt,98,1,122,4.13,1,127 +21096,1588656,Brooklyn,Park Slope,40.676970000000004,-73.97406,Entire home/apt,165,1,108,3.62,2,130 +21097,19001553,Brooklyn,Bedford-Stuyvesant,40.68949,-73.9557,Entire home/apt,125,3,9,0.3,1,0 +21098,5665728,Queens,Sunnyside,40.74801,-73.91776999999999,Entire home/apt,300,2,0,,1,0 +21099,182670,Manhattan,Lower East Side,40.717890000000004,-73.98308,Entire home/apt,124,28,12,0.43,1,38 +21100,64471880,Manhattan,Harlem,40.80172,-73.95538,Private room,100,1,226,7.75,2,32 +21101,110900012,Queens,Richmond Hill,40.68979,-73.82974,Private room,33,1,16,0.53,1,361 +21102,4547658,Brooklyn,Park Slope,40.67451,-73.97501,Entire home/apt,275,2,119,4.08,1,65 +21103,8591819,Queens,Astoria,40.76746,-73.92781,Private room,60,7,0,,1,0 +21104,24626134,Manhattan,Midtown,40.75329,-73.9888,Private room,30,2,1,0.03,1,0 +21105,2988712,Bronx,Fordham,40.85318,-73.90204,Entire home/apt,71,90,10,0.41,7,310 +21106,8715723,Manhattan,Harlem,40.80842,-73.95568,Private room,158,1,132,4.37,5,238 +21107,47716416,Manhattan,Chinatown,40.71423,-73.99441999999999,Entire home/apt,100,1,65,2.16,1,1 +21108,31867503,Brooklyn,Williamsburg,40.710640000000005,-73.95919,Private room,70,1,2,0.07,1,0 +21109,65061161,Brooklyn,Williamsburg,40.70921,-73.94144,Private room,77,1,2,0.07,1,0 +21110,64156488,Manhattan,Flatiron District,40.74147,-73.98577,Private room,90,2,3,0.1,1,0 +21111,75064270,Manhattan,Financial District,40.70932,-74.00536,Private room,210,5,2,0.11,2,365 +21112,110062117,Brooklyn,Bedford-Stuyvesant,40.68039,-73.94301999999999,Entire home/apt,250,3,57,2.09,1,258 +21113,5133087,Manhattan,Chinatown,40.71723,-73.99162,Private room,175,1,0,,1,0 +21114,32124747,Brooklyn,Bushwick,40.686370000000004,-73.91133,Entire home/apt,116,31,99,3.33,1,295 +21115,22541573,Manhattan,Murray Hill,40.74811,-73.97868000000001,Entire home/apt,190,30,1,0.73,87,365 +21116,111134635,Queens,Jamaica,40.668929999999996,-73.77144,Private room,65,3,1,0.04,1,362 +21117,5944004,Manhattan,West Village,40.73702,-73.99739,Private room,68,1,0,,1,0 +21118,21126633,Manhattan,Chinatown,40.714890000000004,-73.99459,Entire home/apt,200,2,45,1.64,1,159 +21119,24140532,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94525,Private room,55,3,2,0.17,4,0 +21120,8993084,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95669000000001,Private room,89,2,35,1.35,4,139 +21121,1691656,Brooklyn,Prospect Heights,40.68237,-73.97286,Entire home/apt,125,3,6,0.47,1,0 +21122,50282911,Brooklyn,Bushwick,40.69455,-73.91118,Entire home/apt,197,30,1,0.06,1,342 +21123,25137968,Manhattan,Harlem,40.81335,-73.95616,Shared room,50,1,36,1.32,1,23 +21124,111208718,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9326,Private room,37,1,1,0.03,1,0 +21125,7265267,Manhattan,East Harlem,40.79345,-73.93977,Entire home/apt,189,3,29,0.98,1,63 +21126,41578662,Bronx,Mott Haven,40.8115,-73.9258,Entire home/apt,80,7,0,,2,0 +21127,18451417,Manhattan,Harlem,40.828179999999996,-73.9389,Private room,39,4,75,2.52,1,52 +21128,109859103,Brooklyn,Flatbush,40.65229,-73.9603,Entire home/apt,123,1,0,,1,0 +21129,111298791,Manhattan,Washington Heights,40.84941,-73.93432,Private room,60,3,51,1.78,1,0 +21130,18654847,Brooklyn,Crown Heights,40.67089,-73.95473,Private room,74,3,0,,1,0 +21131,74896042,Brooklyn,Williamsburg,40.70811,-73.9326,Private room,45,4,3,0.12,1,0 +21132,111319972,Manhattan,Harlem,40.828509999999994,-73.94054,Private room,175,1,0,,1,0 +21133,111327104,Brooklyn,Bushwick,40.69692,-73.90831999999999,Entire home/apt,135,4,76,2.61,1,76 +21134,16139880,Brooklyn,Bedford-Stuyvesant,40.67692,-73.91541,Private room,30,3,16,0.53,6,57 +21135,87795401,Bronx,Soundview,40.82987,-73.86608000000001,Entire home/apt,60,2,105,3.61,1,131 +21136,87690038,Brooklyn,Crown Heights,40.673559999999995,-73.9321,Private room,52,2,101,3.4,4,329 +21137,4232532,Brooklyn,South Slope,40.6618,-73.98234000000001,Entire home/apt,144,2,12,0.9,2,0 +21138,39978070,Brooklyn,Bay Ridge,40.63295,-74.03028,Entire home/apt,75,60,1,0.09,1,358 +21139,24546033,Bronx,Morris Park,40.849059999999994,-73.85418,Private room,73,3,14,0.61,1,138 +21140,57657144,Manhattan,Midtown,40.75481,-73.96982,Private room,119,9,53,1.79,1,15 +21141,2938381,Brooklyn,Prospect Heights,40.68018,-73.96422,Entire home/apt,170,2,154,5.2,1,235 +21142,43601551,Manhattan,East Harlem,40.78805,-73.94924,Private room,135,6,2,0.11,2,0 +21143,111433024,Manhattan,Washington Heights,40.84353,-73.94201,Private room,25,3,34,1.46,1,139 +21144,24283455,Brooklyn,Gravesend,40.589059999999996,-73.98245,Private room,35,3,52,1.78,2,0 +21145,11699846,Manhattan,Greenwich Village,40.73239,-73.9996,Entire home/apt,103,2,15,0.57,1,0 +21146,10633027,Brooklyn,Sheepshead Bay,40.593379999999996,-73.9579,Private room,50,2,82,2.79,3,35 +21147,6263861,Manhattan,Harlem,40.80249,-73.95622,Private room,55,5,2,0.16,1,24 +21148,22101365,Manhattan,Upper East Side,40.76404,-73.96547,Private room,99,3,79,2.75,1,107 +21149,74633496,Bronx,University Heights,40.8562,-73.90899,Private room,43,3,36,1.26,5,365 +21150,20600569,Manhattan,Roosevelt Island,40.76335,-73.94937,Private room,75,1,99,3.47,2,156 +21151,44688209,Manhattan,Upper East Side,40.762809999999995,-73.96718,Private room,117,3,67,2.26,1,99 +21152,5042847,Manhattan,Greenwich Village,40.72851,-73.99985,Entire home/apt,195,3,9,0.38,1,0 +21153,25505776,Manhattan,East Village,40.72931,-73.98258,Private room,100,6,5,0.21,1,0 +21154,1938828,Brooklyn,East Flatbush,40.65071,-73.94508,Private room,34,30,6,0.2,3,280 +21155,30724451,Brooklyn,Williamsburg,40.71609,-73.94791,Private room,44,3,7,0.24,1,0 +21156,106168581,Brooklyn,South Slope,40.666,-73.9902,Entire home/apt,210,4,88,4.41,1,20 +21157,3654281,Manhattan,Little Italy,40.71909,-73.99562,Entire home/apt,150,7,10,0.44,1,43 +21158,108249932,Brooklyn,East New York,40.674490000000006,-73.89053,Entire home/apt,84,3,65,2.43,2,132 +21159,37482532,Manhattan,East Harlem,40.80964,-73.93964,Entire home/apt,69,2,2,0.07,1,0 +21160,13274612,Brooklyn,Flatbush,40.650090000000006,-73.96336,Private room,39,180,0,,1,179 +21161,7181263,Manhattan,East Harlem,40.80055,-73.94100999999999,Private room,88,1,99,3.31,2,112 +21162,49100137,Brooklyn,Bushwick,40.69228,-73.91399,Private room,33,2,90,3.1,1,308 +21163,7181263,Manhattan,East Harlem,40.79933,-73.94272,Private room,98,1,102,3.43,2,81 +21164,69862540,Manhattan,Washington Heights,40.83935,-73.94019,Private room,60,2,90,3.11,3,14 +21165,111666924,Brooklyn,Crown Heights,40.67219,-73.92168000000001,Entire home/apt,75,3,72,2.48,1,19 +21166,1653951,Brooklyn,Bay Ridge,40.63473,-74.02833000000001,Entire home/apt,100,2,109,3.67,1,216 +21167,94669886,Manhattan,East Village,40.72885,-73.98103,Entire home/apt,115,7,11,0.39,1,0 +21168,25233493,Brooklyn,Williamsburg,40.71286,-73.96084,Entire home/apt,200,5,31,1.39,2,291 +21169,47062032,Manhattan,Morningside Heights,40.804320000000004,-73.96694000000001,Entire home/apt,130,2,56,1.9,1,0 +21170,2092314,Brooklyn,East Flatbush,40.64513,-73.9488,Shared room,28,30,3,0.13,7,365 +21171,30434875,Manhattan,Chelsea,40.74814,-74.00372,Entire home/apt,230,1,27,1.83,1,189 +21172,22541573,Manhattan,Upper East Side,40.76347,-73.9631,Entire home/apt,179,30,0,,87,287 +21173,7786166,Brooklyn,Cobble Hill,40.68687,-73.99471,Entire home/apt,190,2,15,0.53,1,162 +21174,16664377,Manhattan,Lower East Side,40.71863,-73.98958,Private room,100,1,66,2.19,3,334 +21175,6696691,Manhattan,Lower East Side,40.718920000000004,-73.98958,Private room,100,20,0,,1,0 +21176,8111912,Brooklyn,Flatbush,40.64335,-73.96745,Entire home/apt,1000,1,1,0.31,2,365 +21177,26420701,Brooklyn,Greenpoint,40.726009999999995,-73.95501999999999,Private room,55,2,1,0.07,1,0 +21178,30529,Brooklyn,Prospect Heights,40.67308,-73.96294,Private room,85,1,171,5.85,2,215 +21179,4368043,Brooklyn,Sheepshead Bay,40.60738,-73.955,Private room,55,3,0,,1,0 +21180,33403059,Brooklyn,Bushwick,40.69749,-73.9336,Private room,50,9,0,,3,0 +21181,1699648,Brooklyn,Williamsburg,40.71842,-73.94467,Private room,95,5,66,2.24,1,25 +21182,10633027,Brooklyn,Sheepshead Bay,40.59425,-73.95922,Entire home/apt,139,2,41,1.52,3,29 +21183,47412121,Brooklyn,Clinton Hill,40.69559,-73.96998,Private room,100,7,1,0.05,1,0 +21184,77812140,Queens,Ridgewood,40.70475,-73.91081,Entire home/apt,120,2,2,0.08,1,0 +21185,102482048,Brooklyn,Bushwick,40.6821,-73.90856,Private room,30,2,54,1.87,4,179 +21186,1229568,Manhattan,Lower East Side,40.7219,-73.98716999999999,Private room,174,2,100,3.34,1,145 +21187,111841534,Queens,Jamaica,40.67949,-73.79841,Private room,53,1,392,13.15,1,71 +21188,23878336,Bronx,Fordham,40.87035,-73.89335,Private room,79,3,86,2.88,10,78 +21189,72366612,Manhattan,Harlem,40.81884,-73.94579,Private room,173,3,4,0.15,1,87 +21190,30576651,Brooklyn,Sunset Park,40.63964,-74.01975,Private room,55,4,1,0.03,1,0 +21191,23878336,Bronx,Fordham,40.86925,-73.89534,Private room,60,3,101,3.43,10,83 +21192,111849930,Manhattan,Lower East Side,40.72275,-73.98918,Private room,120,4,0,,1,0 +21193,10703290,Manhattan,Upper East Side,40.77328,-73.94981999999999,Private room,130,3,7,0.24,3,0 +21194,38607397,Brooklyn,Windsor Terrace,40.65815,-73.9817,Private room,80,7,0,,1,0 +21195,111918887,Brooklyn,Windsor Terrace,40.655590000000004,-73.97797,Private room,50,30,5,0.18,1,126 +21196,2092314,Brooklyn,East Flatbush,40.644709999999996,-73.9495,Shared room,20,30,1,0.09,7,365 +21197,2369654,Brooklyn,Williamsburg,40.71778,-73.95503000000001,Entire home/apt,120,4,7,0.24,1,0 +21198,10810355,Brooklyn,Williamsburg,40.70833,-73.93916,Private room,66,12,9,0.37,1,11 +21199,71739526,Manhattan,Upper West Side,40.77016,-73.98125999999999,Entire home/apt,250,7,0,,1,0 +21200,5447617,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93753000000001,Entire home/apt,110,30,9,0.34,3,319 +21201,111798802,Manhattan,Gramercy,40.73575,-73.98,Entire home/apt,155,2,3,0.12,1,3 +21202,44201583,Brooklyn,DUMBO,40.702870000000004,-73.98518,Private room,200,7,0,,1,0 +21203,82339249,Queens,Ditmars Steinway,40.77235,-73.91789,Private room,85,5,3,0.11,1,88 +21204,31175385,Manhattan,Chelsea,40.74089,-74.00001999999999,Entire home/apt,130,2,4,0.13,1,0 +21205,29040298,Manhattan,Little Italy,40.72043,-73.99706,Private room,64,3,0,,1,0 +21206,4094013,Manhattan,Lower East Side,40.72293,-73.98918,Entire home/apt,200,4,72,2.94,1,109 +21207,37832982,Manhattan,Murray Hill,40.749759999999995,-73.97444,Entire home/apt,130,2,0,,1,0 +21208,7837004,Manhattan,East Village,40.72979,-73.98917,Entire home/apt,170,5,29,0.98,1,0 +21209,2092314,Brooklyn,East Flatbush,40.651509999999995,-73.94957,Shared room,22,30,0,,7,365 +21210,2092314,Brooklyn,Flatbush,40.64476,-73.96473,Shared room,28,30,0,,7,365 +21211,2092314,Brooklyn,East Flatbush,40.64136,-73.94705,Shared room,27,30,0,,7,365 +21212,111970954,Brooklyn,Bedford-Stuyvesant,40.68785,-73.94261999999999,Private room,30,7,2,0.07,1,0 +21213,28758646,Brooklyn,Williamsburg,40.70942,-73.96330999999999,Private room,300,3,4,0.15,1,0 +21214,112127289,Brooklyn,Bushwick,40.692840000000004,-73.90695,Private room,40,3,6,0.2,1,0 +21215,109865937,Brooklyn,Clinton Hill,40.68976,-73.96533000000001,Entire home/apt,280,2,41,1.51,1,343 +21216,47737463,Manhattan,Harlem,40.82545,-73.95295,Private room,60,3,10,0.71,1,8 +21217,59358,Manhattan,Upper East Side,40.784290000000006,-73.94878,Entire home/apt,200,5,48,1.73,2,71 +21218,2712353,Brooklyn,Cypress Hills,40.686679999999996,-73.87565,Private room,35,28,5,0.19,4,326 +21219,3902092,Manhattan,Hell's Kitchen,40.75673,-73.99361999999999,Entire home/apt,170,2,0,,1,0 +21220,436642,Manhattan,Upper West Side,40.7843,-73.98262,Entire home/apt,995,4,20,0.73,1,290 +21221,28297517,Brooklyn,Bedford-Stuyvesant,40.68841,-73.95082,Entire home/apt,140,2,54,1.91,1,267 +21222,62103724,Manhattan,NoHo,40.72569,-73.99519000000001,Entire home/apt,399,3,51,1.76,1,336 +21223,24758130,Brooklyn,Flatbush,40.63192,-73.94734,Entire home/apt,75,1,12,0.43,1,0 +21224,8899812,Brooklyn,South Slope,40.66411,-73.98267,Private room,65,7,2,0.09,1,173 +21225,2092314,Brooklyn,East Flatbush,40.6392,-73.94731999999999,Private room,32,30,1,0.04,7,124 +21226,2092314,Brooklyn,East Flatbush,40.650240000000004,-73.95051,Shared room,26,30,2,0.09,7,365 +21227,18595156,Brooklyn,East New York,40.658770000000004,-73.89631,Entire home/apt,100,1,68,2.27,1,364 +21228,17911536,Manhattan,Washington Heights,40.85046,-73.94270999999999,Private room,98,2,0,,1,0 +21229,23502183,Manhattan,Midtown,40.75562,-73.96539,Entire home/apt,149,3,8,0.34,2,0 +21230,283944,Brooklyn,Williamsburg,40.70669,-73.94648000000001,Private room,85,1,16,0.55,1,7 +21231,24126726,Manhattan,Midtown,40.75305,-73.97358,Private room,640,2,0,,3,0 +21232,24126726,Manhattan,Midtown,40.75373,-73.97287,Private room,325,2,0,,3,268 +21233,3747161,Manhattan,Hell's Kitchen,40.76318,-73.99009000000001,Entire home/apt,125,30,7,0.26,1,204 +21234,3158364,Queens,Sunnyside,40.73661,-73.92514,Private room,32,5,47,1.61,4,266 +21235,97127885,Queens,Ditmars Steinway,40.76814,-73.89573,Entire home/apt,47,11,27,0.9,2,212 +21236,42993745,Manhattan,Upper East Side,40.77659,-73.95407,Private room,130,3,18,0.65,2,0 +21237,4462722,Manhattan,Upper East Side,40.765159999999995,-73.95868,Entire home/apt,249,2,7,0.27,1,363 +21238,112393778,Manhattan,Harlem,40.80346,-73.94583,Entire home/apt,360,5,23,0.84,1,3 +21239,105154603,Brooklyn,Gowanus,40.66948,-73.98976,Private room,40,4,1,0.03,1,0 +21240,10015933,Manhattan,Harlem,40.81609,-73.93663000000001,Private room,55,1,48,1.68,1,365 +21241,79089979,Brooklyn,Bay Ridge,40.63845,-74.02649,Private room,800,1,43,1.64,1,55 +21242,112439486,Queens,Sunnyside,40.74561,-73.91927,Entire home/apt,88,3,2,0.07,1,0 +21243,60665255,Queens,Maspeth,40.73147,-73.89486,Entire home/apt,175,1,60,3.05,1,317 +21244,13492085,Manhattan,Chelsea,40.74512,-73.99179000000001,Private room,200,1,8,0.28,2,0 +21245,11050811,Manhattan,Little Italy,40.71867,-73.99709,Entire home/apt,200,5,0,,1,45 +21246,87296223,Manhattan,Chinatown,40.716809999999995,-73.99539,Entire home/apt,190,5,8,0.3,1,81 +21247,26178075,Staten Island,Stapleton,40.6322,-74.07789,Entire home/apt,75,2,103,3.52,1,73 +21248,3827805,Manhattan,West Village,40.732490000000006,-74.00854,Entire home/apt,210,3,0,,1,0 +21249,5302735,Manhattan,Harlem,40.80495,-73.9556,Entire home/apt,224,4,29,0.99,2,0 +21250,42330189,Manhattan,Washington Heights,40.85622,-73.93146999999999,Entire home/apt,200,1,0,,1,0 +21251,78930817,Manhattan,Harlem,40.804429999999996,-73.94546,Entire home/apt,120,1,9,0.31,1,0 +21252,40511252,Brooklyn,Williamsburg,40.70711,-73.95344,Private room,55,30,11,0.38,3,249 +21253,112601190,Queens,Woodside,40.746159999999996,-73.90392,Entire home/apt,106,2,93,3.13,1,34 +21254,47792689,Brooklyn,Bushwick,40.70097,-73.9381,Entire home/apt,68,3,0,,1,0 +21255,9806708,Brooklyn,Williamsburg,40.70513,-73.93063000000001,Private room,60,1,0,,1,0 +21256,106460468,Bronx,Kingsbridge,40.87924,-73.89791,Entire home/apt,84,3,114,4.0,4,63 +21257,7593341,Manhattan,Theater District,40.75951,-73.98796,Private room,195,1,9,0.31,1,9 +21258,11787695,Queens,Astoria,40.76773,-73.91701,Entire home/apt,175,4,12,0.47,1,42 +21259,3855091,Brooklyn,Bushwick,40.70657,-73.92181,Private room,53,5,1,0.04,1,0 +21260,13739286,Brooklyn,Greenpoint,40.7244,-73.93913,Private room,55,5,6,0.28,1,87 +21261,1359292,Brooklyn,Bedford-Stuyvesant,40.68869,-73.9231,Private room,47,1,10,0.35,1,173 +21262,110851135,Manhattan,Upper West Side,40.79241,-73.97261999999999,Private room,53,1,39,1.39,1,0 +21263,9670774,Manhattan,Lower East Side,40.71974,-73.99263,Private room,110,7,0,,1,0 +21264,112763616,Manhattan,Lower East Side,40.71873,-73.99073,Private room,95,1,3,0.13,1,0 +21265,4185119,Brooklyn,Boerum Hill,40.685829999999996,-73.98267,Entire home/apt,148,2,23,0.78,1,3 +21266,112780904,Manhattan,SoHo,40.7255,-74.00258000000001,Entire home/apt,459,1,61,2.04,1,173 +21267,112851539,Manhattan,East Village,40.72977,-73.98841,Entire home/apt,350,3,85,2.87,1,208 +21268,51850937,Manhattan,East Village,40.72951,-73.98239000000001,Private room,90,1,200,6.79,3,272 +21269,26538766,Brooklyn,Park Slope,40.6675,-73.97694,Entire home/apt,120,1,5,0.18,2,0 +21270,190239,Brooklyn,Bedford-Stuyvesant,40.684979999999996,-73.92613,Entire home/apt,91,10,26,0.97,1,12 +21271,61127125,Brooklyn,Bedford-Stuyvesant,40.681,-73.94707,Entire home/apt,170,3,5,0.5,1,66 +21272,112957166,Manhattan,Kips Bay,40.73948,-73.97643000000001,Private room,73,1,0,,1,0 +21273,11523011,Manhattan,Morningside Heights,40.80766,-73.96594,Private room,60,30,7,0.27,2,246 +21274,13896771,Queens,Ditmars Steinway,40.77707,-73.91887,Entire home/apt,90,5,14,0.49,1,1 +21275,420620,Brooklyn,Windsor Terrace,40.65998,-73.97811,Private room,70,3,0,,1,0 +21276,31906445,Manhattan,West Village,40.734590000000004,-74.00143,Entire home/apt,135,2,1,0.03,1,0 +21277,24405003,Manhattan,Chinatown,40.71427,-73.99261,Private room,91,1,49,1.86,3,111 +21278,32304780,Manhattan,Washington Heights,40.84194,-73.94203,Private room,52,30,16,0.59,3,237 +21279,23262657,Queens,Forest Hills,40.71848,-73.85025,Entire home/apt,400,2,9,0.37,2,4 +21280,8131326,Brooklyn,Windsor Terrace,40.66063,-73.98348,Entire home/apt,239,3,0,,1,0 +21281,3737986,Manhattan,Financial District,40.70588,-74.0159,Entire home/apt,12,300,0,,1,0 +21282,5611490,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95299,Entire home/apt,150,2,33,1.21,1,80 +21283,7093576,Manhattan,Upper East Side,40.777590000000004,-73.95321,Private room,65,1,133,4.52,1,43 +21284,14060369,Brooklyn,Williamsburg,40.71218,-73.96048,Entire home/apt,220,3,8,0.3,1,0 +21285,113110121,Manhattan,Upper East Side,40.768679999999996,-73.95744,Entire home/apt,110,5,22,1.27,1,7 +21286,37185194,Queens,Astoria,40.76964,-73.91559000000001,Private room,44,1,14,0.5,1,0 +21287,17019706,Brooklyn,Park Slope,40.68203,-73.97834,Private room,75,4,0,,1,0 +21288,113128172,Brooklyn,Bushwick,40.700790000000005,-73.91847,Private room,65,1,9,0.35,1,0 +21289,29464755,Brooklyn,Bushwick,40.6978,-73.91677,Private room,40,3,34,1.16,1,0 +21290,88981564,Brooklyn,Bay Ridge,40.62158,-74.02394,Entire home/apt,175,2,35,1.17,1,325 +21291,359480,Brooklyn,South Slope,40.66398,-73.99041,Entire home/apt,77,3,4,0.14,1,0 +21292,2788934,Brooklyn,Greenpoint,40.72155,-73.94414,Private room,59,2,155,5.2,2,60 +21293,113198009,Manhattan,Harlem,40.82793,-73.94349,Private room,85,5,8,0.29,1,0 +21294,113251630,Brooklyn,Bushwick,40.69735,-73.9327,Entire home/apt,240,3,84,2.95,1,237 +21295,113251277,Manhattan,Kips Bay,40.74261,-73.98102,Shared room,49,1,11,0.39,2,304 +21296,2431149,Brooklyn,Crown Heights,40.669259999999994,-73.93211,Private room,49,1,13,0.44,2,0 +21297,67130668,Bronx,Concourse Village,40.82692,-73.92183,Private room,45,5,46,1.55,1,174 +21298,14374073,Manhattan,Chelsea,40.75166,-73.99506,Entire home/apt,150,19,0,,1,0 +21299,2807776,Brooklyn,Flatbush,40.64918,-73.96656999999999,Private room,80,2,25,0.95,2,68 +21300,102367813,Brooklyn,Williamsburg,40.7176,-73.95359,Private room,99,2,7,0.24,1,0 +21301,14898658,Brooklyn,Kensington,40.64237,-73.98048,Private room,45,1,41,1.41,11,22 +21302,3236595,Manhattan,Harlem,40.80934,-73.95071999999999,Private room,59,2,66,2.24,4,6 +21303,113399802,Brooklyn,Crown Heights,40.67138,-73.93679,Private room,82,1,21,0.78,1,89 +21304,30097523,Manhattan,Harlem,40.821670000000005,-73.94988000000001,Entire home/apt,110,6,5,0.17,1,0 +21305,36980831,Manhattan,Hell's Kitchen,40.76617,-73.98398,Private room,95,3,2,0.07,1,83 +21306,113409633,Brooklyn,Williamsburg,40.71976,-73.96051999999999,Private room,58,2,3,0.11,1,0 +21307,17791467,Manhattan,Harlem,40.8236,-73.93755,Private room,69,2,70,2.38,2,0 +21308,16300594,Brooklyn,Williamsburg,40.71586,-73.95395,Private room,50,2,9,0.31,3,0 +21309,24419810,Brooklyn,Bushwick,40.70322,-73.92025,Private room,60,5,18,0.77,1,66 +21310,2626535,Manhattan,Stuyvesant Town,40.73126,-73.98149000000001,Private room,73,2,1,0.03,1,0 +21311,113449748,Staten Island,Randall Manor,40.63552,-74.12125,Private room,100,3,0,,1,362 +21312,11105949,Brooklyn,Bedford-Stuyvesant,40.693090000000005,-73.94986999999999,Entire home/apt,139,5,13,0.48,1,0 +21313,48183551,Queens,Elmhurst,40.74552,-73.88285,Private room,55,6,69,2.44,5,253 +21314,10737943,Manhattan,Upper West Side,40.78068,-73.9767,Private room,48,30,5,0.18,10,341 +21315,3483600,Manhattan,Washington Heights,40.83498,-73.94214000000001,Private room,63,2,0,,1,0 +21316,100672521,Manhattan,Lower East Side,40.7128,-73.98909,Private room,97,1,121,4.11,3,127 +21317,100672521,Manhattan,Lower East Side,40.71203,-73.99008,Private room,99,1,125,4.31,3,119 +21318,113460991,Manhattan,Midtown,40.75784,-73.96088,Entire home/apt,175,14,8,0.28,1,310 +21319,113521983,Manhattan,Gramercy,40.73328,-73.98241,Entire home/apt,159,8,33,1.21,1,8 +21320,5744776,Manhattan,Upper East Side,40.77565,-73.94919,Entire home/apt,153,2,4,0.14,1,3 +21321,21353088,Manhattan,Upper West Side,40.77786,-73.98066,Entire home/apt,243,1,41,1.39,1,8 +21322,17459413,Brooklyn,Williamsburg,40.7138,-73.96043,Private room,98,13,14,0.56,1,145 +21323,68123997,Queens,Elmhurst,40.741,-73.88019,Private room,60,2,43,1.5,1,90 +21324,73541674,Queens,Ditmars Steinway,40.77319,-73.91686999999999,Entire home/apt,100,3,2,0.07,2,200 +21325,4942156,Queens,Sunnyside,40.74511,-73.91816,Entire home/apt,80,50,2,0.09,1,8 +21326,107455767,Queens,Rosedale,40.65292,-73.73652,Private room,45,14,70,2.38,5,281 +21327,15851669,Manhattan,Chelsea,40.7429,-73.99344,Private room,125,1,1,0.03,1,0 +21328,113558700,Queens,Rego Park,40.72804,-73.86147,Private room,30,1,74,2.53,3,358 +21329,16420977,Manhattan,East Village,40.7251,-73.98914,Entire home/apt,140,2,0,,1,0 +21330,113682832,Queens,Jamaica,40.69637,-73.81034,Private room,47,3,29,1.02,2,126 +21331,23297219,Brooklyn,Williamsburg,40.71819,-73.96531999999999,Entire home/apt,99,4,16,0.54,2,86 +21332,57455831,Brooklyn,Clinton Hill,40.6944,-73.96606,Entire home/apt,150,1,1,0.04,2,0 +21333,113740169,Manhattan,Washington Heights,40.85411,-73.93167,Private room,45,30,4,0.15,1,275 +21334,57455831,Brooklyn,Clinton Hill,40.69259,-73.9665,Entire home/apt,150,1,5,0.19,2,0 +21335,113805886,Manhattan,Upper East Side,40.777429999999995,-73.94977,Entire home/apt,140,31,4,0.23,33,338 +21336,53179388,Manhattan,Financial District,40.708290000000005,-74.01405,Entire home/apt,200,30,1,0.04,10,340 +21337,570464,Manhattan,Harlem,40.809259999999995,-73.95419,Entire home/apt,400,4,8,0.74,1,42 +21338,53127489,Brooklyn,Williamsburg,40.714040000000004,-73.96119,Private room,35,1,2,0.07,2,0 +21339,113805886,Manhattan,Upper East Side,40.7771,-73.94996,Entire home/apt,240,31,5,0.34,33,289 +21340,113805886,Manhattan,Upper East Side,40.77898,-73.94983,Entire home/apt,189,31,7,0.26,33,331 +21341,113805886,Manhattan,Upper East Side,40.77832,-73.94991,Entire home/apt,225,31,10,0.48,33,351 +21342,113905045,Queens,Ditmars Steinway,40.771029999999996,-73.91409,Entire home/apt,175,2,6,0.21,1,176 +21343,19698740,Brooklyn,Prospect Heights,40.677620000000005,-73.97097,Private room,50,2,0,,1,0 +21344,63474828,Brooklyn,Sunset Park,40.66135,-73.98841,Entire home/apt,185,30,2,0.07,1,337 +21345,113924874,Brooklyn,Brooklyn Heights,40.70081,-73.99503,Entire home/apt,107,25,12,0.42,1,1 +21346,113986628,Manhattan,East Harlem,40.78568,-73.94868000000001,Private room,85,1,18,0.68,1,357 +21347,6194871,Brooklyn,Williamsburg,40.7097,-73.95411,Private room,57,2,31,1.05,1,40 +21348,18165343,Brooklyn,Sunset Park,40.65729,-73.99916999999999,Entire home/apt,195,2,59,2.03,1,0 +21349,113558977,Queens,Rego Park,40.72651,-73.86173000000001,Entire home/apt,40,1,101,3.47,2,74 +21350,24270606,Manhattan,Morningside Heights,40.81037,-73.95833,Private room,100,5,32,1.2,1,0 +21351,1410860,Brooklyn,Bedford-Stuyvesant,40.683240000000005,-73.95174,Entire home/apt,300,30,67,2.43,1,360 +21352,15194358,Brooklyn,Boerum Hill,40.68482,-73.98302,Entire home/apt,150,3,19,0.65,1,7 +21353,2092961,Brooklyn,Williamsburg,40.70881,-73.9468,Entire home/apt,155,3,53,1.97,1,110 +21354,40872011,Brooklyn,Bedford-Stuyvesant,40.68533,-73.91941,Private room,45,2,22,0.83,1,51 +21355,114071959,Brooklyn,Greenpoint,40.725559999999994,-73.94368,Private room,59,3,64,2.24,1,162 +21356,7039858,Queens,Astoria,40.76882,-73.92793,Private room,65,3,23,0.81,1,23 +21357,104122404,Brooklyn,East Flatbush,40.63844,-73.92868,Entire home/apt,91,1,117,3.99,1,60 +21358,8715723,Manhattan,Harlem,40.80769,-73.95505,Private room,118,1,95,3.93,5,224 +21359,679157,Brooklyn,Prospect Heights,40.68125,-73.97236,Entire home/apt,199,2,4,0.15,1,179 +21360,114178347,Queens,Astoria,40.76625,-73.92447,Shared room,34,30,3,0.1,1,0 +21361,40972641,Queens,Fresh Meadows,40.742020000000004,-73.78820999999999,Private room,40,1,18,0.61,2,0 +21362,580624,Manhattan,Nolita,40.72078,-73.99473,Private room,100,10,2,0.09,1,35 +21363,26754726,Manhattan,Upper West Side,40.77673,-73.98011,Entire home/apt,200,5,0,,1,0 +21364,3003330,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94447,Private room,51,2,24,0.83,3,99 +21365,114209467,Brooklyn,Bushwick,40.69482,-73.91165,Private room,30,1,1,0.03,1,0 +21366,114219274,Brooklyn,Fort Hamilton,40.62203,-74.0303,Entire home/apt,87,1,116,3.99,1,242 +21367,9772108,Manhattan,West Village,40.73452,-74.00825,Entire home/apt,215,2,28,1.0,1,0 +21368,113558700,Queens,Rego Park,40.727270000000004,-73.86223000000001,Private room,30,1,59,2.01,3,89 +21369,21929511,Brooklyn,Bedford-Stuyvesant,40.6932,-73.95519,Private room,900,1,1,0.03,1,89 +21370,18810552,Manhattan,East Harlem,40.79149,-73.94658000000001,Private room,80,5,0,,1,0 +21371,473063,Manhattan,East Village,40.7265,-73.98278,Private room,71,3,76,2.59,1,25 +21372,1434069,Brooklyn,Clinton Hill,40.69088,-73.96653,Entire home/apt,126,1,0,,1,26 +21373,1239078,Brooklyn,Greenpoint,40.728809999999996,-73.95817,Entire home/apt,200,2,35,1.19,2,0 +21374,25967444,Brooklyn,Williamsburg,40.71247,-73.96155,Entire home/apt,225,3,15,0.55,1,0 +21375,21959207,Manhattan,Lower East Side,40.72085,-73.98895,Entire home/apt,250,3,67,3.35,1,149 +21376,110335252,Manhattan,Upper East Side,40.77428,-73.95363,Private room,100,4,0,,1,0 +21377,20481502,Manhattan,East Village,40.72429,-73.98784,Private room,80,90,0,,1,173 +21378,1568820,Bronx,Fordham,40.85615,-73.90077,Private room,34,3,7,0.79,1,126 +21379,23878336,Bronx,Fordham,40.870309999999996,-73.89322,Private room,79,3,98,3.45,10,68 +21380,23878336,Bronx,Fordham,40.869170000000004,-73.89465,Private room,60,3,77,2.7,10,65 +21381,26822855,Manhattan,East Village,40.72425,-73.98976,Entire home/apt,115,10,4,0.27,1,0 +21382,40134417,Brooklyn,Greenpoint,40.73076,-73.95575,Entire home/apt,20,4,17,0.58,1,0 +21383,114410100,Manhattan,East Village,40.7284,-73.98295,Private room,70,59,0,,1,333 +21384,114416273,Brooklyn,East Flatbush,40.639559999999996,-73.93235,Entire home/apt,165,3,55,1.95,1,171 +21385,105061915,Manhattan,Harlem,40.80379,-73.94434,Private room,46,1,25,0.97,2,91 +21386,3143126,Queens,Sunnyside,40.74615,-73.91558,Entire home/apt,85,5,2,1.05,1,0 +21387,3660702,Manhattan,Chelsea,40.7455,-73.9916,Private room,99,1,136,4.62,4,61 +21388,8635827,Brooklyn,Crown Heights,40.675,-73.95885,Entire home/apt,206,3,42,1.46,1,0 +21389,7106711,Manhattan,Chinatown,40.71485,-73.99157,Private room,65,1,2,0.07,1,0 +21390,83717038,Brooklyn,Greenpoint,40.737140000000004,-73.95333000000001,Private room,55,2,62,2.11,3,0 +21391,41398005,Staten Island,Arrochar,40.593720000000005,-74.06766,Entire home/apt,60,1,25,0.91,3,12 +21392,114541713,Queens,Jamaica,40.68619,-73.79229000000001,Entire home/apt,127,5,52,1.99,1,44 +21393,22042865,Queens,Astoria,40.75678,-73.91644000000001,Private room,50,3,1,1.0,1,341 +21394,114552571,Staten Island,St. George,40.64332,-74.08283,Entire home/apt,120,2,116,4.0,1,191 +21395,2190447,Manhattan,Midtown,40.7658,-73.98218,Entire home/apt,275,7,0,,1,0 +21396,15625009,Manhattan,Upper West Side,40.78461,-73.97627,Entire home/apt,165,1,152,5.32,1,228 +21397,114568204,Bronx,Pelham Gardens,40.86673,-73.845,Entire home/apt,119,3,75,2.74,1,146 +21398,1286399,Brooklyn,Bushwick,40.700720000000004,-73.91594,Private room,150,1,3,0.1,1,359 +21399,114477998,Manhattan,East Harlem,40.791540000000005,-73.94233,Private room,65,1,186,6.38,4,199 +21400,114477998,Manhattan,East Harlem,40.78966,-73.94232,Private room,103,1,149,5.06,4,215 +21401,53743935,Brooklyn,Williamsburg,40.71096,-73.95170999999999,Private room,65,3,7,0.24,1,2 +21402,296231,Manhattan,Theater District,40.75662,-73.98749000000001,Private room,300,3,0,,1,0 +21403,24034601,Brooklyn,Park Slope,40.68249,-73.97787,Private room,60,5,0,,1,0 +21404,420399,Manhattan,Upper East Side,40.77158,-73.95786,Private room,80,5,3,0.15,2,50 +21405,99634835,Manhattan,Upper East Side,40.770579999999995,-73.95358,Entire home/apt,160,1,68,2.33,1,19 +21406,114700646,Queens,East Elmhurst,40.76123,-73.88597,Private room,75,5,69,2.45,1,67 +21407,55948559,Bronx,Pelham Gardens,40.866859999999996,-73.84206999999999,Private room,35,1,16,0.61,4,3 +21408,11612872,Brooklyn,Greenpoint,40.73571,-73.95371999999999,Private room,55,1,111,3.77,3,9 +21409,27234116,Manhattan,Greenwich Village,40.732,-73.99959,Entire home/apt,175,2,0,,1,0 +21410,96829433,Brooklyn,Bedford-Stuyvesant,40.6924,-73.93485,Private room,55,5,14,0.54,1,0 +21411,9439324,Brooklyn,Bushwick,40.68699,-73.9056,Private room,46,1,63,2.32,3,0 +21412,69366752,Queens,Forest Hills,40.73576,-73.85434000000001,Entire home/apt,95,2,153,5.31,2,106 +21413,114736959,Brooklyn,Coney Island,40.57575,-73.98465,Entire home/apt,115,2,63,2.23,6,140 +21414,3236595,Manhattan,Harlem,40.809259999999995,-73.94979000000001,Private room,75,3,48,1.64,4,9 +21415,51459559,Queens,Astoria,40.75902,-73.9154,Private room,47,4,39,1.5,2,292 +21416,23714657,Brooklyn,Bedford-Stuyvesant,40.69471,-73.93736,Private room,70,2,5,0.27,1,272 +21417,2350326,Queens,Ditmars Steinway,40.77811,-73.91065,Private room,70,1,5,4.69,2,31 +21418,14927662,Brooklyn,Carroll Gardens,40.68255,-73.99280999999999,Entire home/apt,100,4,4,0.14,1,15 +21419,1527966,Brooklyn,Crown Heights,40.67395,-73.95682,Entire home/apt,135,3,17,0.68,1,0 +21420,114853757,Queens,Rockaway Beach,40.58718,-73.81541,Entire home/apt,145,2,42,1.63,1,310 +21421,16995499,Queens,Sunnyside,40.74993,-73.91346,Entire home/apt,75,2,0,,1,0 +21422,65971028,Manhattan,East Village,40.727090000000004,-73.98612,Entire home/apt,125,30,2,0.08,1,0 +21423,49701132,Manhattan,Chelsea,40.74187,-74.00622,Entire home/apt,600,1,86,3.04,1,261 +21424,108795105,Manhattan,Upper East Side,40.78471,-73.95054,Private room,89,4,7,0.26,1,188 +21425,114877351,Queens,Astoria,40.766459999999995,-73.92846999999999,Entire home/apt,125,2,14,0.48,1,0 +21426,15941961,Manhattan,Hell's Kitchen,40.76109,-73.99305,Private room,135,3,126,4.42,1,3 +21427,6387274,Manhattan,East Village,40.72415,-73.97451,Private room,125,1,95,3.28,1,86 +21428,4538012,Manhattan,East Harlem,40.80921,-73.94001999999999,Private room,70,2,89,3.28,4,249 +21429,4538012,Manhattan,Harlem,40.81055,-73.94015999999999,Private room,65,2,71,2.63,4,309 +21430,114977427,Manhattan,Upper West Side,40.77836,-73.97994,Entire home/apt,489,3,81,3.01,1,152 +21431,114988251,Brooklyn,Prospect-Lefferts Gardens,40.656079999999996,-73.96176,Entire home/apt,99,2,26,2.05,1,272 +21432,12233435,Manhattan,Chinatown,40.714490000000005,-73.99094000000001,Private room,70,5,0,,1,0 +21433,3236595,Manhattan,Harlem,40.80937,-73.94989,Private room,120,2,29,1.03,4,0 +21434,36383228,Manhattan,East Village,40.72576,-73.97908000000001,Entire home/apt,160,5,25,0.9,1,0 +21435,3939029,Manhattan,East Village,40.7252,-73.98339,Private room,125,1,21,0.75,1,363 +21436,9673465,Brooklyn,Greenpoint,40.72282,-73.94856,Entire home/apt,300,3,48,1.69,1,3 +21437,64960623,Manhattan,Harlem,40.82376,-73.94198,Private room,85,1,0,,1,0 +21438,115057851,Manhattan,East Harlem,40.80999,-73.93946,Entire home/apt,115,3,86,2.99,2,85 +21439,48891349,Manhattan,West Village,40.74049,-74.00527,Entire home/apt,600,1,106,3.75,1,286 +21440,115057851,Manhattan,East Harlem,40.80827,-73.93813,Entire home/apt,100,3,103,3.61,2,32 +21441,33675739,Manhattan,East Harlem,40.79315,-73.93984,Private room,47,2,60,2.52,2,233 +21442,33161690,Brooklyn,Williamsburg,40.717220000000005,-73.95477,Entire home/apt,130,3,66,2.36,1,257 +21443,22926868,Brooklyn,Sunset Park,40.64672,-74.00086999999999,Private room,55,20,23,0.84,3,41 +21444,26089606,Manhattan,Hell's Kitchen,40.75659,-73.99313000000001,Entire home/apt,230,3,13,0.46,1,260 +21445,115092398,Manhattan,Harlem,40.81843,-73.94400999999999,Entire home/apt,125,1,78,2.7,1,40 +21446,39091267,Manhattan,Morningside Heights,40.80437,-73.96387,Shared room,35,1,0,,1,0 +21447,97543375,Brooklyn,Williamsburg,40.71506,-73.94158,Private room,85,2,3,0.22,2,40 +21448,11606007,Manhattan,Midtown,40.74433,-73.98318,Entire home/apt,450,2,0,,1,0 +21449,45409030,Brooklyn,Kensington,40.64309,-73.97707,Entire home/apt,110,6,12,0.41,1,0 +21450,780958,Manhattan,Upper West Side,40.78587,-73.97468,Private room,100,5,11,0.39,1,0 +21451,41965551,Manhattan,SoHo,40.72576,-74.00265999999999,Private room,80,1,131,4.56,1,20 +21452,9132087,Manhattan,Greenwich Village,40.72766,-73.99976,Private room,98,1,0,,2,0 +21453,11167829,Manhattan,Harlem,40.82935,-73.94255,Private room,54,2,72,2.54,3,63 +21454,114975592,Queens,Springfield Gardens,40.66663,-73.76417,Private room,60,1,37,1.53,4,84 +21455,2771711,Manhattan,Upper West Side,40.80212,-73.9692,Entire home/apt,120,1,2,0.07,1,0 +21456,2770769,Brooklyn,Bushwick,40.698640000000005,-73.92827,Entire home/apt,115,90,2,0.08,1,34 +21457,92202937,Brooklyn,South Slope,40.66632,-73.9862,Private room,100,1,2,0.09,1,87 +21458,16868847,Brooklyn,Williamsburg,40.71779,-73.96337,Private room,129,2,0,,1,0 +21459,114157738,Manhattan,Morningside Heights,40.80338,-73.9636,Entire home/apt,100,1,19,0.66,1,0 +21460,55468876,Queens,Ridgewood,40.70575,-73.90171,Entire home/apt,90,1,109,3.97,1,75 +21461,26870769,Brooklyn,Williamsburg,40.71648,-73.94066,Private room,60,87,4,0.14,1,173 +21462,32383664,Manhattan,Midtown,40.751509999999996,-73.97114,Private room,60,30,1,0.04,1,0 +21463,78154356,Bronx,Pelham Bay,40.84752,-73.82797,Entire home/apt,89,2,94,3.2,1,252 +21464,51850937,Manhattan,East Village,40.73109,-73.98234000000001,Private room,85,1,209,7.18,3,252 +21465,7616444,Manhattan,Midtown,40.75029,-73.98402,Entire home/apt,350,5,4,0.15,1,0 +21466,27072611,Manhattan,Kips Bay,40.73829,-73.97896,Entire home/apt,285,1,79,2.7,1,310 +21467,4628742,Manhattan,West Village,40.733940000000004,-74.00301999999999,Entire home/apt,125,1,6,0.21,1,0 +21468,36579189,Manhattan,SoHo,40.7204,-74.00046999999999,Private room,109,1,63,2.23,1,0 +21469,12578148,Manhattan,Chelsea,40.74353,-73.99709,Entire home/apt,545,5,42,1.57,1,322 +21470,2800064,Brooklyn,Greenpoint,40.72399,-73.95166,Entire home/apt,208,4,61,2.26,1,255 +21471,16995590,Queens,Rosedale,40.65439,-73.73185,Entire home/apt,100,2,45,1.7,1,360 +21472,46108407,Manhattan,East Harlem,40.802240000000005,-73.93732,Private room,48,1,1,0.07,1,0 +21473,10762635,Brooklyn,Crown Heights,40.67685,-73.94033,Entire home/apt,93,6,0,,1,0 +21474,1784335,Brooklyn,Crown Heights,40.67627,-73.95024000000001,Private room,60,2,6,0.21,1,0 +21475,115395049,Manhattan,East Village,40.725840000000005,-73.9894,Private room,78,1,38,1.3,2,138 +21476,17727305,Brooklyn,Brooklyn Heights,40.697540000000004,-73.99298,Entire home/apt,270,4,48,1.73,1,172 +21477,39890192,Manhattan,Hell's Kitchen,40.76536,-73.98864,Entire home/apt,160,45,6,0.63,12,365 +21478,115517627,Brooklyn,Vinegar Hill,40.69891,-73.98423000000001,Entire home/apt,175,4,1,0.05,1,0 +21479,29240443,Manhattan,Theater District,40.76106,-73.98626999999999,Entire home/apt,180,3,3,0.11,1,0 +21480,113558977,Queens,Rego Park,40.7265,-73.86017,Private room,30,1,120,4.1,2,112 +21481,10590692,Manhattan,Chelsea,40.74443,-74.00012,Entire home/apt,650,3,35,1.61,2,179 +21482,1506191,Manhattan,Washington Heights,40.85188,-73.93588000000001,Private room,70,1,26,1.08,1,0 +21483,700224,Brooklyn,Gowanus,40.683609999999994,-73.98671,Entire home/apt,185,30,10,0.53,4,323 +21484,106940781,Brooklyn,Bushwick,40.69838,-73.93526999999999,Private room,50,21,0,,1,0 +21485,92322271,Brooklyn,Crown Heights,40.67055,-73.94615999999999,Private room,65,2,0,,2,0 +21486,59505164,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9449,Private room,59,4,74,2.52,1,85 +21487,115543091,Brooklyn,Flatbush,40.65221,-73.95848000000001,Private room,53,2,0,,1,0 +21488,105631352,Manhattan,East Village,40.72537,-73.97878,Private room,65,2,147,5.07,3,18 +21489,2247818,Manhattan,East Harlem,40.80268,-73.94051,Entire home/apt,100,10,28,0.97,1,0 +21490,6375225,Manhattan,West Village,40.73376,-73.99982,Entire home/apt,150,3,0,,1,0 +21491,45775461,Brooklyn,Prospect Heights,40.67365,-73.96384,Private room,80,3,4,0.15,1,88 +21492,21376087,Brooklyn,Greenpoint,40.73301,-73.95835,Entire home/apt,100,2,176,6.02,1,14 +21493,4316106,Manhattan,Midtown,40.7544,-73.96721,Entire home/apt,200,2,43,1.48,1,0 +21494,4576564,Queens,East Elmhurst,40.75625,-73.88956999999999,Private room,64,1,44,2.21,1,0 +21495,10210950,Brooklyn,Bedford-Stuyvesant,40.677040000000005,-73.91484,Private room,60,1,13,0.46,1,0 +21496,21638962,Manhattan,Washington Heights,40.84543,-73.9401,Entire home/apt,50,1,1,0.03,1,0 +21497,66978896,Brooklyn,Bushwick,40.69149,-73.91291,Entire home/apt,160,4,21,0.75,2,189 +21498,62023756,Queens,Fresh Meadows,40.74637,-73.7842,Private room,55,1,50,3.51,3,67 +21499,97513787,Manhattan,Chinatown,40.71573,-73.99176,Private room,63,20,31,1.09,5,218 +21500,2204797,Brooklyn,Bushwick,40.68185,-73.90455,Private room,30,7,0,,1,0 +21501,84523696,Brooklyn,Bushwick,40.69423,-73.91993000000001,Private room,90,2,3,0.12,1,0 +21502,45731391,Manhattan,Lower East Side,40.72045,-73.99004000000001,Private room,98,2,20,0.77,3,0 +21503,1226375,Manhattan,East Village,40.72334,-73.9839,Entire home/apt,110,2,29,1.53,1,15 +21504,6950431,Manhattan,West Village,40.73532,-74.0031,Entire home/apt,170,3,1,0.03,1,0 +21505,115845698,Brooklyn,Carroll Gardens,40.68148,-73.99315,Private room,95,3,72,2.56,1,67 +21506,31546047,Manhattan,Hell's Kitchen,40.76553,-73.98879000000001,Private room,118,2,16,0.63,1,24 +21507,278393,Brooklyn,Bushwick,40.697959999999995,-73.92409,Private room,43,2,88,3.02,3,84 +21508,115854849,Queens,Astoria,40.77355,-73.92551999999999,Entire home/apt,100,7,4,0.17,1,0 +21509,23776693,Brooklyn,Bedford-Stuyvesant,40.68412,-73.92734,Private room,45,2,61,2.4,3,110 +21510,12570191,Brooklyn,Williamsburg,40.71262,-73.96251,Entire home/apt,199,2,38,1.32,1,94 +21511,114621718,Brooklyn,Gowanus,40.67706,-73.98406,Entire home/apt,146,1,106,3.78,2,341 +21512,4554793,Manhattan,Chelsea,40.73899,-73.99911999999999,Entire home/apt,239,3,15,0.65,1,42 +21513,1700359,Manhattan,NoHo,40.72723,-73.99186,Entire home/apt,195,30,5,0.19,1,34 +21514,115939440,Queens,Ridgewood,40.69645,-73.90223,Entire home/apt,100,2,1,0.04,1,0 +21515,115946844,Brooklyn,Brooklyn Heights,40.698190000000004,-73.99324,Entire home/apt,103,2,13,0.45,1,0 +21516,3558557,Manhattan,Gramercy,40.73556,-73.98913,Entire home/apt,159,2,15,0.57,1,33 +21517,26432133,Queens,East Elmhurst,40.76367,-73.87088,Private room,48,1,417,14.36,5,338 +21518,10160214,Manhattan,Chelsea,40.73977,-73.99938,Entire home/apt,190,12,5,0.5,1,32 +21519,37163867,Queens,Long Island City,40.75455,-73.92005999999999,Private room,80,30,18,0.62,1,92 +21520,81876750,Queens,Astoria,40.76043,-73.91465,Private room,96,2,18,0.62,1,364 +21521,115993835,Brooklyn,Sunset Park,40.639920000000004,-74.0076,Private room,28,1,31,1.08,5,1 +21522,115567902,Manhattan,Upper West Side,40.78141,-73.97681,Entire home/apt,160,4,22,0.75,1,0 +21523,115993835,Brooklyn,Sunset Park,40.63929,-74.00669,Private room,30,1,27,1.64,5,168 +21524,116056294,Queens,Rego Park,40.73048,-73.85331,Private room,50,1,34,1.17,1,347 +21525,6705828,Manhattan,Gramercy,40.7363,-73.98969,Entire home/apt,300,3,0,,1,93 +21526,17928071,Brooklyn,Williamsburg,40.71162,-73.95631,Private room,85,3,12,0.58,2,289 +21527,261608,Queens,Ditmars Steinway,40.772,-73.91848,Entire home/apt,60,4,3,0.1,1,0 +21528,113805886,Manhattan,Upper East Side,40.77747,-73.95193,Entire home/apt,190,31,4,0.21,33,299 +21529,113805886,Manhattan,Upper East Side,40.77878,-73.9501,Entire home/apt,180,31,10,0.55,33,331 +21530,113805886,Manhattan,Upper East Side,40.77823,-73.95127,Entire home/apt,235,31,9,0.39,33,333 +21531,13238971,Manhattan,Chelsea,40.74281,-73.99969,Entire home/apt,175,4,5,0.23,1,8 +21532,116126452,Brooklyn,Williamsburg,40.707209999999996,-73.95340999999999,Entire home/apt,160,2,17,0.59,1,3 +21533,115395049,Manhattan,East Village,40.72598,-73.98855999999999,Private room,145,1,25,0.88,2,329 +21534,51706510,Brooklyn,Gowanus,40.6707,-73.99118,Shared room,37,1,9,0.31,1,0 +21535,6489574,Manhattan,East Village,40.72759,-73.98619000000001,Entire home/apt,140,1,31,1.14,1,1 +21536,40146897,Brooklyn,Crown Heights,40.67203,-73.922,Private room,45,2,18,0.63,5,0 +21537,40511252,Brooklyn,Williamsburg,40.70585,-73.9531,Private room,52,30,4,0.17,3,294 +21538,8159536,Bronx,Concourse,40.83243,-73.92035,Private room,40,1,11,0.42,3,239 +21539,11638358,Brooklyn,Bedford-Stuyvesant,40.69,-73.93783,Entire home/apt,100,4,77,2.66,2,100 +21540,26561588,Queens,Astoria,40.7578,-73.92368,Private room,40,2,1,0.03,1,0 +21541,105631352,Manhattan,East Village,40.72412,-73.97815,Private room,74,2,29,1.01,3,0 +21542,116268542,Brooklyn,East New York,40.674040000000005,-73.88276,Entire home/apt,62,1,98,3.4,1,23 +21543,3726590,Manhattan,Upper East Side,40.76851,-73.95506,Entire home/apt,150,1,6,0.21,1,7 +21544,12334470,Brooklyn,Crown Heights,40.66881,-73.95743,Entire home/apt,100,50,8,0.33,1,0 +21545,2158706,Manhattan,Harlem,40.81288,-73.94155,Private room,49,1,11,0.4,1,0 +21546,26899015,Brooklyn,Greenpoint,40.72317,-73.94856,Private room,70,2,0,,1,0 +21547,40032009,Manhattan,Morningside Heights,40.80387,-73.96367,Entire home/apt,200,5,2,0.07,2,0 +21548,112261228,Brooklyn,Bushwick,40.697179999999996,-73.92156999999999,Private room,45,2,72,2.54,1,51 +21549,48076117,Brooklyn,Crown Heights,40.6752,-73.93215,Private room,75,1,213,7.71,2,52 +21550,4454849,Manhattan,Hell's Kitchen,40.764070000000004,-73.99203,Entire home/apt,131,2,0,,1,0 +21551,2856748,Manhattan,Midtown,40.75802,-73.96125,Entire home/apt,500,90,0,,49,364 +21552,115259709,Staten Island,St. George,40.64508,-74.08126,Entire home/apt,180,2,59,2.21,1,135 +21553,7889472,Manhattan,Harlem,40.81922,-73.95671999999999,Entire home/apt,355,5,14,0.49,1,89 +21554,116333529,Manhattan,Washington Heights,40.85076,-73.94046999999999,Private room,50,1,0,,1,0 +21555,116365995,Queens,Woodside,40.74705,-73.90791999999999,Entire home/apt,275,4,31,1.21,2,283 +21556,2787,Brooklyn,Bensonhurst,40.60877,-73.97381999999999,Private room,49,1,19,0.7,6,360 +21557,3236595,Manhattan,Harlem,40.80754,-73.95151,Private room,58,2,68,2.35,4,1 +21558,116396065,Brooklyn,Sheepshead Bay,40.6027,-73.9486,Entire home/apt,179,2,101,3.53,1,211 +21559,116404073,Queens,Springfield Gardens,40.66812,-73.76303,Entire home/apt,95,1,240,9.66,2,253 +21560,29893723,Manhattan,West Village,40.73115,-74.00429,Entire home/apt,158,1,5,0.18,1,0 +21561,95341719,Brooklyn,Crown Heights,40.67013,-73.94397,Entire home/apt,165,2,23,0.83,3,182 +21562,95341719,Brooklyn,Crown Heights,40.66977,-73.94341,Entire home/apt,169,2,31,1.15,3,175 +21563,6396827,Brooklyn,Crown Heights,40.67083,-73.94808,Entire home/apt,135,2,18,0.64,1,0 +21564,40821640,Queens,Forest Hills,40.72737,-73.85155999999999,Entire home/apt,50,27,0,,1,0 +21565,116427778,Brooklyn,Bedford-Stuyvesant,40.68318,-73.91682,Entire home/apt,85,3,35,1.22,1,0 +21566,11612872,Brooklyn,Greenpoint,40.73643,-73.95495,Private room,53,2,78,2.68,3,14 +21567,114890218,Manhattan,Hell's Kitchen,40.76269,-73.99139,Entire home/apt,185,7,20,0.71,1,23 +21568,57655724,Manhattan,Midtown,40.75598,-73.97034000000001,Entire home/apt,260,2,64,2.36,1,131 +21569,8833885,Brooklyn,Greenpoint,40.72385,-73.9458,Entire home/apt,160,2,91,3.35,2,101 +21570,5130754,Brooklyn,Brooklyn Heights,40.69343,-73.99611,Entire home/apt,100,4,3,0.2,1,4 +21571,11661027,Brooklyn,Greenpoint,40.72699,-73.9581,Entire home/apt,240,2,16,0.57,1,302 +21572,29339405,Manhattan,Midtown,40.76579,-73.97700999999999,Entire home/apt,300,5,3,0.12,1,115 +21573,7384312,Manhattan,Lower East Side,40.71306,-73.98715,Entire home/apt,250,1,67,2.46,1,185 +21574,17713747,Manhattan,Washington Heights,40.85369,-73.93236999999999,Private room,60,7,1,0.05,3,0 +21575,15999314,Brooklyn,Boerum Hill,40.687490000000004,-73.98701,Entire home/apt,149,2,0,,1,0 +21576,62023756,Queens,Fresh Meadows,40.74624,-73.78327,Private room,69,1,62,4.26,3,65 +21577,1409823,Brooklyn,Bedford-Stuyvesant,40.688590000000005,-73.94998000000001,Entire home/apt,75,5,16,0.58,1,15 +21578,59794802,Manhattan,Hell's Kitchen,40.766420000000004,-73.99423,Private room,150,6,0,,1,51 +21579,3407346,Manhattan,East Village,40.72645,-73.98591,Entire home/apt,150,90,28,1.03,1,0 +21580,40741349,Manhattan,Washington Heights,40.83705,-73.94083,Private room,60,1,3,0.21,1,341 +21581,1432946,Brooklyn,Bushwick,40.69554,-73.92458,Private room,80,3,179,6.17,3,191 +21582,6807898,Manhattan,Hell's Kitchen,40.76076,-73.99266,Private room,110,1,7,0.24,1,45 +21583,126718,Manhattan,Chelsea,40.73958,-73.9975,Entire home/apt,160,2,1,0.04,1,0 +21584,55198931,Brooklyn,Flatbush,40.64774,-73.96517,Private room,65,2,12,0.44,1,294 +21585,17518837,Brooklyn,Williamsburg,40.7179,-73.95702,Private room,72,21,1,0.03,1,0 +21586,50153931,Brooklyn,DUMBO,40.702059999999996,-73.98804,Entire home/apt,250,1,0,,1,0 +21587,2168789,Brooklyn,Greenpoint,40.72938,-73.95675,Entire home/apt,175,2,15,0.54,1,4 +21588,116709076,Brooklyn,Williamsburg,40.70245,-73.9427,Private room,80,15,47,1.86,1,8 +21589,23919461,Manhattan,West Village,40.73381,-74.00365,Private room,150,3,87,3.09,2,39 +21590,32694917,Brooklyn,Williamsburg,40.711859999999994,-73.95402,Entire home/apt,144,2,24,1.43,1,14 +21591,89241337,Brooklyn,Bedford-Stuyvesant,40.68957,-73.9457,Private room,45,1,0,,1,0 +21592,4428742,Manhattan,Upper East Side,40.76875,-73.95965,Private room,95,2,2,0.07,1,0 +21593,78866824,Manhattan,Upper West Side,40.80238,-73.96503,Private room,100,2,16,0.56,1,0 +21594,46493114,Brooklyn,Crown Heights,40.67756,-73.95427,Private room,56,4,34,1.23,1,18 +21595,4680813,Queens,Astoria,40.767520000000005,-73.9314,Entire home/apt,150,7,12,0.42,1,3 +21596,4291007,Brooklyn,Clinton Hill,40.69616,-73.96198000000001,Private room,95,30,4,0.14,11,311 +21597,4291007,Brooklyn,Clinton Hill,40.695209999999996,-73.96199,Private room,95,30,6,0.22,11,231 +21598,1432946,Brooklyn,Bushwick,40.69652,-73.92351,Private room,70,3,174,6.03,3,202 +21599,9152821,Brooklyn,Flatbush,40.65258,-73.9624,Entire home/apt,100,1,0,,1,0 +21600,1267985,Brooklyn,Bushwick,40.70108,-73.9289,Private room,60,14,1,0.03,1,0 +21601,31857792,Brooklyn,Cobble Hill,40.68766,-73.99125,Entire home/apt,170,4,8,0.29,1,1 +21602,18212433,Manhattan,East Harlem,40.795359999999995,-73.94197,Private room,55,30,0,,8,341 +21603,18212433,Manhattan,Washington Heights,40.85131,-73.93235,Private room,50,30,0,,8,358 +21604,116854478,Brooklyn,Carroll Gardens,40.683279999999996,-73.99846,Entire home/apt,250,4,0,,1,0 +21605,116870039,Manhattan,Kips Bay,40.74511,-73.9778,Entire home/apt,200,3,72,2.55,1,249 +21606,34386241,Manhattan,East Village,40.7261,-73.98421,Entire home/apt,175,2,4,0.14,2,0 +21607,116881616,Brooklyn,Bath Beach,40.60382,-74.01083,Private room,45,4,17,0.65,2,17 +21608,116889152,Manhattan,Harlem,40.81961,-73.94583,Entire home/apt,175,2,145,5.0,2,127 +21609,42814202,Queens,Fresh Meadows,40.74227,-73.78707,Entire home/apt,90,1,26,0.9,3,358 +21610,116871769,Brooklyn,Williamsburg,40.71018,-73.94858,Private room,78,1,55,2.01,1,345 +21611,104235754,Brooklyn,Bedford-Stuyvesant,40.68336,-73.95421,Entire home/apt,100,1,27,0.98,1,39 +21612,63771415,Manhattan,East Village,40.727129999999995,-73.98159,Entire home/apt,175,2,35,1.22,1,0 +21613,54001762,Manhattan,Hell's Kitchen,40.76189,-73.99750999999999,Private room,99,10,2,0.08,1,0 +21614,3782666,Queens,Astoria,40.763259999999995,-73.91673,Private room,70,4,0,,1,0 +21615,116992515,Manhattan,West Village,40.73023,-74.00294,Entire home/apt,250,3,28,1.03,1,51 +21616,114075917,Manhattan,East Village,40.732409999999994,-73.98878,Private room,91,6,1,0.05,1,0 +21617,10291534,Brooklyn,Williamsburg,40.71372,-73.96325999999999,Entire home/apt,200,1,63,2.29,1,270 +21618,10475653,Brooklyn,Kensington,40.647690000000004,-73.97435,Private room,40,1,122,4.21,3,222 +21619,2653648,Manhattan,Harlem,40.823159999999994,-73.95343000000001,Private room,75,30,1,0.07,2,133 +21620,117108525,Queens,Sunnyside,40.74603,-73.91412,Private room,50,1,72,2.98,2,129 +21621,115854410,Brooklyn,Bedford-Stuyvesant,40.68469,-73.947,Entire home/apt,110,3,116,4.03,1,216 +21622,5334697,Manhattan,Washington Heights,40.84114,-73.93639,Private room,69,5,33,1.17,3,1 +21623,42024722,Manhattan,Chelsea,40.74462,-74.00139,Private room,103,5,77,2.73,2,79 +21624,12501130,Brooklyn,Crown Heights,40.676559999999995,-73.93705,Entire home/apt,100,2,106,3.72,1,28 +21625,5334697,Manhattan,Washington Heights,40.840990000000005,-73.93694,Private room,73,5,41,1.45,3,228 +21626,108982711,Queens,Astoria,40.75651,-73.91485,Entire home/apt,180,2,70,2.64,1,175 +21627,2450673,Manhattan,Washington Heights,40.84417,-73.94063,Entire home/apt,79,1,4,0.14,1,0 +21628,40313256,Brooklyn,Williamsburg,40.70552,-73.93,Entire home/apt,195,4,0,,1,0 +21629,65232368,Queens,Douglaston,40.76978,-73.73915,Entire home/apt,99,1,49,1.7,1,247 +21630,42024722,Manhattan,Chelsea,40.7456,-74.00107,Private room,100,5,66,2.37,2,99 +21631,1789596,Brooklyn,Williamsburg,40.707440000000005,-73.95416999999999,Entire home/apt,125,6,10,0.36,1,239 +21632,24878388,Brooklyn,Prospect Heights,40.67305,-73.96824000000001,Entire home/apt,149,5,1,0.04,2,0 +21633,16328732,Manhattan,Roosevelt Island,40.76253,-73.95000999999999,Entire home/apt,58,2,9,0.32,1,0 +21634,3537298,Brooklyn,Greenpoint,40.7355,-73.95676999999999,Private room,75,28,3,0.11,1,0 +21635,40032009,Manhattan,Morningside Heights,40.803909999999995,-73.96576,Entire home/apt,140,5,0,,2,0 +21636,40426686,Queens,Ozone Park,40.68572,-73.8493,Entire home/apt,69,4,0,,1,0 +21637,117347203,Manhattan,Kips Bay,40.7443,-73.97925,Entire home/apt,250,5,69,2.44,1,163 +21638,40438814,Manhattan,East Village,40.72117,-73.98215,Entire home/apt,160,3,31,1.08,1,136 +21639,103960,Manhattan,Harlem,40.80113,-73.95286999999999,Private room,70,4,35,1.24,1,0 +21640,572879,Manhattan,Chelsea,40.7435,-74.00119000000001,Private room,289,2,128,4.52,1,252 +21641,4120523,Brooklyn,Williamsburg,40.70616,-73.92918,Private room,29,2,58,2.02,2,0 +21642,11196496,Bronx,Highbridge,40.83173,-73.92824,Private room,75,1,127,4.45,1,134 +21643,112910861,Queens,Far Rockaway,40.59745,-73.76032,Private room,35,1,61,2.12,2,124 +21644,117365574,Manhattan,Chelsea,40.74819,-73.9954,Private room,82,1,147,5.08,5,292 +21645,112910861,Queens,Far Rockaway,40.596920000000004,-73.7602,Private room,35,1,42,1.52,2,124 +21646,16066047,Brooklyn,Crown Heights,40.679190000000006,-73.95918,Private room,70,2,12,0.47,1,120 +21647,8140134,Manhattan,Washington Heights,40.83712,-73.94664,Private room,75,2,2,0.1,1,0 +21648,1339545,Brooklyn,Park Slope,40.67005,-73.97981,Entire home/apt,120,3,125,4.51,2,61 +21649,117399779,Brooklyn,Williamsburg,40.71304,-73.96497,Private room,200,3,5,0.18,1,0 +21650,42864513,Brooklyn,Bedford-Stuyvesant,40.68469,-73.9375,Private room,65,5,69,2.4,1,104 +21651,15034908,Manhattan,Hell's Kitchen,40.7621,-73.99354,Entire home/apt,178,3,84,2.92,2,74 +21652,25270209,Brooklyn,Bedford-Stuyvesant,40.681459999999994,-73.94757,Entire home/apt,45,2,3,0.1,1,0 +21653,1012628,Brooklyn,Park Slope,40.67135,-73.97759,Entire home/apt,150,1,0,,1,0 +21654,32405588,Brooklyn,Williamsburg,40.71059,-73.96002,Private room,99,3,46,1.62,2,141 +21655,43682230,Manhattan,Lower East Side,40.72056,-73.98539,Entire home/apt,325,2,2,0.09,1,180 +21656,108621536,Manhattan,Upper East Side,40.77279,-73.94696,Entire home/apt,209,4,2,0.08,1,0 +21657,115827173,Queens,Briarwood,40.71512,-73.81928,Entire home/apt,249,4,6,0.29,2,353 +21658,34474212,Manhattan,West Village,40.73444,-74.00129,Entire home/apt,600,2,93,3.38,1,251 +21659,73541674,Queens,Ditmars Steinway,40.77367,-73.91516999999999,Private room,40,3,0,,2,82 +21660,9293730,Manhattan,Upper West Side,40.795840000000005,-73.96242,Entire home/apt,135,30,5,0.21,16,200 +21661,117492425,Staten Island,St. George,40.645959999999995,-74.08059,Entire home/apt,65,4,96,3.42,6,147 +21662,117498033,Brooklyn,Crown Heights,40.67561,-73.93138,Private room,35,20,0,,1,0 +21663,117507630,Brooklyn,Crown Heights,40.67018,-73.93224000000001,Entire home/apt,99,4,55,2.06,2,17 +21664,40549648,Queens,Astoria,40.75832,-73.91448000000001,Private room,47,15,23,0.83,2,31 +21665,19303369,Queens,Elmhurst,40.738890000000005,-73.87713000000001,Private room,35,30,0,,37,33 +21666,117521391,Manhattan,Gramercy,40.738279999999996,-73.98954,Private room,250,3,33,1.18,1,167 +21667,1450005,Brooklyn,Williamsburg,40.714929999999995,-73.95084,Entire home/apt,90,5,2,0.07,1,0 +21668,20659301,Brooklyn,Prospect-Lefferts Gardens,40.656420000000004,-73.96085,Private room,53,14,7,0.27,1,173 +21669,99556266,Manhattan,East Harlem,40.7993,-73.93305,Private room,120,2,37,1.33,2,304 +21670,52132241,Brooklyn,Crown Heights,40.67293,-73.93273,Private room,54,2,53,2.3,1,8 +21671,20410925,Manhattan,Upper East Side,40.78007,-73.94803,Entire home/apt,125,3,30,1.08,1,4 +21672,71482332,Manhattan,Upper East Side,40.76684,-73.96203,Entire home/apt,126,1,31,1.12,1,0 +21673,38294216,Queens,South Ozone Park,40.66561,-73.81103,Private room,50,15,2,0.39,4,190 +21674,117685023,Manhattan,Upper West Side,40.80355,-73.96831,Entire home/apt,110,7,3,0.11,1,0 +21675,39731713,Queens,Ridgewood,40.69934,-73.90348,Private room,45,3,0,,1,0 +21676,117699517,Queens,East Elmhurst,40.75602,-73.88110999999999,Private room,49,4,2,0.09,1,355 +21677,117742969,Brooklyn,Bedford-Stuyvesant,40.69392,-73.9472,Entire home/apt,98,2,6,0.93,1,359 +21678,9558820,Brooklyn,Williamsburg,40.71813,-73.95822,Entire home/apt,289,3,7,0.26,1,0 +21679,49117269,Queens,Astoria,40.75851,-73.92555,Private room,110,4,40,1.41,2,47 +21680,21697069,Brooklyn,Kensington,40.64465,-73.97870999999999,Private room,45,3,5,0.18,1,0 +21681,110858930,Queens,Cambria Heights,40.69206,-73.74546,Entire home/apt,169,2,65,2.33,1,263 +21682,95341719,Brooklyn,Crown Heights,40.669709999999995,-73.94351,Entire home/apt,275,1,26,0.96,3,271 +21683,106272021,Brooklyn,East Flatbush,40.66067,-73.93796,Private room,50,2,16,0.57,3,43 +21684,76186812,Brooklyn,Bedford-Stuyvesant,40.68083,-73.94445,Private room,36,5,8,1.31,2,0 +21685,25426687,Brooklyn,Borough Park,40.645509999999994,-73.9981,Entire home/apt,110,2,45,1.65,1,342 +21686,16145840,Manhattan,East Harlem,40.798770000000005,-73.93964,Private room,105,3,21,1.14,2,9 +21687,13392996,Manhattan,Washington Heights,40.8339,-73.9383,Entire home/apt,75,4,75,2.64,1,166 +21688,59900881,Queens,Howard Beach,40.66406,-73.84599,Entire home/apt,100,7,37,1.42,1,0 +21689,42835213,Brooklyn,East Flatbush,40.64841,-73.95178,Private room,75,4,27,0.95,2,54 +21690,113558700,Queens,Rego Park,40.72749,-73.86035,Private room,30,1,61,2.17,3,361 +21691,117922187,Manhattan,Roosevelt Island,40.76437,-73.94844,Private room,150,1,0,,1,88 +21692,117932348,Manhattan,Gramercy,40.735209999999995,-73.98147,Entire home/apt,155,20,25,1.06,2,62 +21693,29655230,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93426,Private room,68,30,11,0.39,1,87 +21694,117930151,Queens,Long Island City,40.74454,-73.94015999999999,Private room,109,1,35,1.23,2,364 +21695,117941939,Brooklyn,Williamsburg,40.71269,-73.96409,Private room,20,14,3,0.11,1,277 +21696,117945802,Brooklyn,East Flatbush,40.6425,-73.94293,Entire home/apt,88,2,11,0.39,1,0 +21697,1261480,Manhattan,Harlem,40.80825,-73.95004,Private room,500,1,13,0.62,2,361 +21698,49704571,Brooklyn,Williamsburg,40.71942,-73.94272,Entire home/apt,80,30,6,0.22,8,156 +21699,117962524,Brooklyn,Sheepshead Bay,40.60913,-73.95254,Private room,100,1,1,0.03,1,0 +21700,33511962,Manhattan,Harlem,40.81302,-73.95349,Shared room,10,1,0,,1,0 +21701,200243,Manhattan,Harlem,40.8255,-73.9435,Private room,55,1,8,0.28,2,293 +21702,74104595,Brooklyn,Bedford-Stuyvesant,40.689040000000006,-73.92981999999999,Entire home/apt,40,15,0,,1,42 +21703,17687105,Manhattan,Upper West Side,40.79215,-73.97108,Private room,80,1,0,,1,0 +21704,118084951,Brooklyn,Greenpoint,40.72214,-73.93725,Entire home/apt,75,1,162,5.7,1,1 +21705,15145088,Manhattan,Upper West Side,40.78688,-73.97403,Entire home/apt,184,30,3,0.12,8,346 +21706,30054890,Brooklyn,Williamsburg,40.70818,-73.94951999999999,Private room,56,2,4,0.14,2,0 +21707,118110284,Brooklyn,Williamsburg,40.71447,-73.96234,Entire home/apt,160,7,3,0.12,1,43 +21708,28584159,Manhattan,Midtown,40.750009999999996,-73.98629,Private room,65,300,1,0.04,1,89 +21709,4378763,Queens,Long Island City,40.752759999999995,-73.93101999999999,Private room,77,3,48,1.72,3,332 +21710,12767750,Manhattan,Harlem,40.811609999999995,-73.94394,Private room,65,5,2,0.07,1,0 +21711,48534640,Brooklyn,Bushwick,40.69601,-73.9069,Private room,35,15,2,0.07,1,0 +21712,20851517,Manhattan,Hell's Kitchen,40.76654,-73.98812,Private room,98,6,1,0.15,3,8 +21713,5635997,Manhattan,Upper West Side,40.79456,-73.96853,Entire home/apt,400,6,5,0.19,1,108 +21714,432867,Brooklyn,Prospect Heights,40.67613,-73.97095,Private room,64,2,16,0.57,1,6 +21715,118199454,Brooklyn,Bushwick,40.6975,-73.92998,Private room,70,4,15,1.05,1,35 +21716,2610519,Manhattan,Flatiron District,40.74252,-73.991,Entire home/apt,250,1,2,0.07,1,0 +21717,38294216,Queens,South Ozone Park,40.666540000000005,-73.81219,Private room,55,10,1,0.09,4,300 +21718,118208750,Manhattan,West Village,40.73773,-74.00180999999999,Entire home/apt,249,3,2,0.08,1,0 +21719,12588825,Manhattan,Upper West Side,40.79358,-73.97452,Private room,175,4,3,0.11,1,0 +21720,118226205,Brooklyn,Williamsburg,40.71738,-73.94158,Private room,69,2,61,2.14,3,42 +21721,1397707,Manhattan,Harlem,40.81446,-73.9379,Entire home/apt,198,3,9,0.35,1,127 +21722,4173425,Manhattan,Harlem,40.81767,-73.94051,Entire home/apt,69,2,65,2.38,1,11 +21723,109773614,Brooklyn,Bedford-Stuyvesant,40.678090000000005,-73.9128,Private room,60,2,32,1.15,1,0 +21724,2522596,Manhattan,Hell's Kitchen,40.76051,-73.99183000000001,Entire home/apt,103,2,12,0.42,1,0 +21725,116889152,Manhattan,Harlem,40.81968,-73.9458,Entire home/apt,135,2,138,4.83,2,45 +21726,33116792,Queens,Ridgewood,40.69406,-73.90068000000001,Private room,31,5,75,2.7,1,13 +21727,1377444,Brooklyn,Bedford-Stuyvesant,40.684090000000005,-73.94154,Entire home/apt,245,3,33,1.19,1,60 +21728,49166783,Brooklyn,Williamsburg,40.717040000000004,-73.95371,Shared room,175,3,0,,1,0 +21729,118276455,Manhattan,Upper West Side,40.79517,-73.97555,Entire home/apt,200,30,5,0.21,1,271 +21730,12302104,Manhattan,East Village,40.723859999999995,-73.98105,Private room,72,1,134,4.69,2,251 +21731,3637890,Manhattan,Greenwich Village,40.73565,-73.99613000000001,Entire home/apt,123,7,3,0.11,1,0 +21732,5684780,Brooklyn,Bedford-Stuyvesant,40.683479999999996,-73.95123000000001,Private room,90,3,3,0.11,1,0 +21733,86108833,Bronx,Schuylerville,40.840340000000005,-73.83006999999999,Shared room,20,1,116,4.09,1,5 +21734,2464187,Staten Island,St. George,40.637029999999996,-74.08423,Private room,50,1,12,0.42,2,0 +21735,118378908,Brooklyn,Williamsburg,40.71354,-73.95011,Private room,45,28,19,0.72,6,297 +21736,32357613,Brooklyn,Bedford-Stuyvesant,40.68759,-73.92356,Private room,41,1,12,0.42,3,0 +21737,118378908,Brooklyn,Williamsburg,40.715309999999995,-73.94986,Private room,75,1,15,0.56,6,325 +21738,4035291,Brooklyn,Crown Heights,40.67308,-73.95523,Entire home/apt,105,3,93,4.16,1,89 +21739,118341133,Brooklyn,Bushwick,40.70537,-73.92269,Private room,55,2,2,0.07,1,0 +21740,2861103,Brooklyn,Williamsburg,40.71992,-73.9413,Private room,100,1,82,2.95,1,0 +21741,118394855,Brooklyn,Williamsburg,40.71499,-73.94634,Private room,65,1,14,0.49,1,0 +21742,118400082,Queens,Corona,40.74122,-73.85334,Entire home/apt,149,2,51,1.9,1,242 +21743,52129673,Manhattan,Harlem,40.82827,-73.94785,Private room,50,1,17,1.11,1,0 +21744,1730026,Manhattan,Lower East Side,40.7127,-73.98857,Private room,78,3,3,0.21,2,166 +21745,105315839,Queens,Jamaica,40.66989,-73.77454,Entire home/apt,75,1,75,2.66,1,294 +21746,115227524,Manhattan,Morningside Heights,40.81638,-73.95936999999999,Private room,70,28,0,,1,0 +21747,83351115,Brooklyn,Bushwick,40.69484,-73.92499000000001,Private room,50,12,0,,1,0 +21748,24037775,Manhattan,Chelsea,40.74392,-73.9946,Entire home/apt,250,4,0,,1,0 +21749,118430352,Brooklyn,Crown Heights,40.67519,-73.9402,Private room,75,1,0,,1,0 +21750,7275333,Manhattan,Kips Bay,40.73695,-73.97336,Private room,133,2,37,1.39,1,33 +21751,8435480,Brooklyn,Greenpoint,40.72398,-73.94978,Entire home/apt,150,2,115,4.26,2,32 +21752,775409,Brooklyn,Clinton Hill,40.69478,-73.96126,Entire home/apt,140,3,34,2.95,1,54 +21753,17477908,Manhattan,Upper West Side,40.79424,-73.96588,Entire home/apt,200,30,2,0.11,10,338 +21754,118539035,Manhattan,Gramercy,40.73746,-73.98338000000001,Entire home/apt,99,120,2,0.08,1,167 +21755,27522582,Brooklyn,Bushwick,40.70105,-73.91547,Private room,50,1,0,,3,0 +21756,118554120,Manhattan,Upper East Side,40.78073,-73.95013,Entire home/apt,122,7,7,0.27,1,0 +21757,11968765,Manhattan,Washington Heights,40.85338,-73.93231999999999,Private room,85,3,71,2.54,1,60 +21758,90215210,Brooklyn,Crown Heights,40.67167,-73.93088,Private room,45,4,37,1.29,1,84 +21759,15864671,Queens,Astoria,40.76984,-73.91815,Entire home/apt,130,4,0,,1,83 +21760,47735494,Queens,Rego Park,40.72701,-73.87021999999999,Private room,31,1,37,1.3,4,0 +21761,118547015,Manhattan,SoHo,40.72103,-73.99866,Entire home/apt,125,2,16,0.57,1,0 +21762,114093125,Manhattan,Harlem,40.8269,-73.93634,Entire home/apt,100,4,65,2.3,1,48 +21763,1923413,Brooklyn,Williamsburg,40.70772,-73.94126,Private room,60,2,18,0.63,1,0 +21764,8381084,Manhattan,Civic Center,40.71264,-73.99893,Entire home/apt,80,2,12,0.43,2,8 +21765,46599828,Manhattan,Midtown,40.74481,-73.98523,Entire home/apt,150,3,6,0.23,1,0 +21766,37519641,Brooklyn,Fort Hamilton,40.613640000000004,-74.0354,Entire home/apt,160,2,4,0.42,1,313 +21767,87889145,Brooklyn,Canarsie,40.64458,-73.90285,Entire home/apt,59,2,68,3.5,1,240 +21768,16356565,Brooklyn,Flatbush,40.633559999999996,-73.95073000000001,Shared room,30,3,27,1.25,2,1 +21769,11620529,Manhattan,Harlem,40.81108,-73.94682,Entire home/apt,85,2,2,0.08,1,0 +21770,53759518,Brooklyn,Williamsburg,40.71397,-73.94572,Private room,110,2,0,,1,0 +21771,1647256,Manhattan,West Village,40.73418,-74.00621,Entire home/apt,180,9,0,,1,0 +21772,3191545,Manhattan,Hell's Kitchen,40.76589,-73.98434,Entire home/apt,199,30,6,0.23,23,365 +21773,32788186,Manhattan,Washington Heights,40.85321,-73.93596,Shared room,35,1,27,0.95,1,33 +21774,118378908,Brooklyn,Williamsburg,40.7141,-73.95064,Private room,70,28,28,1.01,6,303 +21775,3191545,Manhattan,Hell's Kitchen,40.757659999999994,-73.99089000000001,Entire home/apt,195,30,0,,23,364 +21776,3191545,Manhattan,Hell's Kitchen,40.759190000000004,-73.99229,Entire home/apt,169,30,1,0.04,23,115 +21777,3191545,Manhattan,Hell's Kitchen,40.7593,-73.99229,Entire home/apt,195,30,0,,23,364 +21778,3191545,Manhattan,Midtown,40.76501,-73.98312,Entire home/apt,195,30,0,,23,364 +21779,3191545,Manhattan,Hell's Kitchen,40.76485,-73.98436,Entire home/apt,195,30,0,,23,364 +21780,3191545,Manhattan,Theater District,40.76321,-73.98356,Entire home/apt,243,30,0,,23,364 +21781,3191545,Manhattan,Hell's Kitchen,40.76536,-73.98469,Entire home/apt,195,30,0,,23,364 +21782,17770287,Manhattan,Midtown,40.74896,-73.98277,Entire home/apt,115,30,8,0.31,14,203 +21783,17770287,Manhattan,Murray Hill,40.749159999999996,-73.98115,Entire home/apt,150,30,5,0.22,14,339 +21784,3191545,Manhattan,Murray Hill,40.745259999999995,-73.97679000000001,Entire home/apt,150,30,1,0.04,23,365 +21785,17770287,Manhattan,Midtown,40.7502,-73.98289,Entire home/apt,155,30,3,0.11,14,332 +21786,57050977,Brooklyn,Williamsburg,40.71397,-73.94873,Entire home/apt,68,2,22,0.78,1,0 +21787,3191545,Manhattan,Murray Hill,40.749190000000006,-73.97244,Entire home/apt,135,30,0,,23,365 +21788,11427289,Manhattan,Greenwich Village,40.734840000000005,-73.99614,Private room,300,1,1,0.04,1,0 +21789,45595980,Manhattan,Upper East Side,40.76876,-73.96686,Entire home/apt,197,30,0,,12,58 +21790,971418,Queens,Astoria,40.76101,-73.92464,Entire home/apt,75,1,73,2.75,1,273 +21791,118727691,Brooklyn,Fort Greene,40.693529999999996,-73.97431,Entire home/apt,350,3,27,1.0,1,303 +21792,10896859,Brooklyn,South Slope,40.66587,-73.98206,Entire home/apt,150,3,70,2.58,1,89 +21793,118745519,Manhattan,Little Italy,40.71942,-73.99694000000001,Entire home/apt,155,1,67,2.45,1,189 +21794,96479013,Brooklyn,Bedford-Stuyvesant,40.694990000000004,-73.94821999999999,Private room,81,5,42,1.58,3,63 +21795,118753490,Manhattan,Financial District,40.70817,-74.00511,Private room,100,1,5,0.17,1,0 +21796,1273890,Manhattan,Washington Heights,40.8513,-73.93681,Entire home/apt,185,30,7,0.26,2,331 +21797,114104868,Queens,Woodhaven,40.69883,-73.85257,Private room,65,3,7,0.4,1,365 +21798,114463720,Brooklyn,Williamsburg,40.71092,-73.96755,Entire home/apt,385,2,76,2.69,1,209 +21799,101672721,Manhattan,Harlem,40.8178,-73.93774,Private room,125,1,0,,1,0 +21800,25227079,Brooklyn,Prospect Heights,40.67435,-73.96691,Entire home/apt,130,3,2,0.07,1,0 +21801,118695056,Brooklyn,Downtown Brooklyn,40.6925,-73.98613,Private room,153,3,28,1.0,2,11 +21802,15730200,Manhattan,Lower East Side,40.721309999999995,-73.98508000000001,Private room,150,2,1,0.37,1,0 +21803,13137787,Manhattan,East Village,40.727779999999996,-73.98935999999999,Private room,95,4,2,0.08,1,0 +21804,2054816,Manhattan,Harlem,40.82805,-73.94676,Entire home/apt,150,2,10,0.36,1,0 +21805,48618586,Brooklyn,East Flatbush,40.64261,-73.94334,Entire home/apt,350,2,1,0.04,1,0 +21806,118839909,Brooklyn,Bedford-Stuyvesant,40.6875,-73.92541999999999,Entire home/apt,120,2,131,5.23,1,159 +21807,8753629,Manhattan,Inwood,40.86488,-73.92922,Entire home/apt,120,14,7,0.27,1,13 +21808,117385673,Manhattan,Gramercy,40.7317,-73.9833,Private room,100,3,9,0.32,2,0 +21809,11070120,Bronx,Fordham,40.85929,-73.90048,Private room,45,22,10,0.36,2,186 +21810,7920086,Manhattan,East Harlem,40.7865,-73.94406,Private room,74,16,7,0.28,3,0 +21811,855079,Manhattan,East Village,40.7281,-73.9839,Private room,110,1,26,0.91,3,0 +21812,105225699,Queens,Flushing,40.761990000000004,-73.79465,Entire home/apt,110,3,75,3.07,2,174 +21813,78254013,Manhattan,Upper West Side,40.799170000000004,-73.96765,Private room,75,1,19,0.73,1,0 +21814,22607793,Brooklyn,Clinton Hill,40.68152,-73.96276,Entire home/apt,94,2,10,0.39,1,0 +21815,105025187,Manhattan,East Village,40.7234,-73.97628,Private room,55,5,2,0.07,2,0 +21816,118913632,Brooklyn,Sunset Park,40.64028,-74.01262,Entire home/apt,100,7,0,,1,0 +21817,27624941,Manhattan,Upper East Side,40.78025,-73.94802,Private room,99,2,154,5.42,1,145 +21818,1097545,Manhattan,East Village,40.72521,-73.97879,Private room,69,6,30,1.08,3,43 +21819,10348014,Brooklyn,Williamsburg,40.71545,-73.95299,Entire home/apt,139,1,0,,1,0 +21820,27844914,Brooklyn,Bedford-Stuyvesant,40.69428,-73.94148,Private room,42,14,32,1.14,2,72 +21821,18037301,Manhattan,West Village,40.73571,-74.0078,Entire home/apt,4000,1,0,,1,173 +21822,21369808,Brooklyn,Bedford-Stuyvesant,40.69612,-73.94918,Private room,55,7,3,0.11,1,0 +21823,7188712,Manhattan,Washington Heights,40.83137,-73.94117,Private room,119,2,4,0.16,1,0 +21824,7070648,Manhattan,Upper East Side,40.782059999999994,-73.94949,Entire home/apt,105,5,24,0.85,1,20 +21825,1704042,Brooklyn,Bedford-Stuyvesant,40.67987,-73.93235,Private room,55,2,21,0.76,1,19 +21826,2063421,Brooklyn,Carroll Gardens,40.67522,-73.99853,Entire home/apt,125,1,0,,1,0 +21827,6811053,Manhattan,East Harlem,40.789429999999996,-73.9478,Private room,46,6,1,0.04,1,0 +21828,19177308,Brooklyn,Bushwick,40.6896,-73.90624,Private room,36,2,83,2.95,4,155 +21829,41191579,Brooklyn,Crown Heights,40.66945,-73.93899,Private room,45,1,4,0.44,3,0 +21830,40935862,Manhattan,Lower East Side,40.72105,-73.98371,Entire home/apt,150,3,6,0.22,1,90 +21831,13848780,Manhattan,Chinatown,40.71363,-73.9977,Entire home/apt,275,2,15,3.17,1,207 +21832,71126864,Brooklyn,Bushwick,40.6957,-73.93196,Entire home/apt,100,29,0,,1,310 +21833,7976263,Manhattan,Chelsea,40.74431,-73.9922,Private room,100,5,3,0.11,1,0 +21834,94100043,Manhattan,Upper East Side,40.76675,-73.95428000000001,Shared room,35,1,118,4.21,2,0 +21835,94100043,Manhattan,Upper East Side,40.767309999999995,-73.95419,Shared room,35,1,115,4.06,2,0 +21836,119027851,Bronx,Longwood,40.816320000000005,-73.90991,Entire home/apt,130,2,62,2.19,1,36 +21837,119029523,Brooklyn,Fort Hamilton,40.620670000000004,-74.02942,Entire home/apt,150,5,4,1.9,3,312 +21838,12302104,Manhattan,East Village,40.72208,-73.98109000000001,Private room,73,1,116,4.07,2,238 +21839,15266675,Brooklyn,Williamsburg,40.717859999999995,-73.94556,Entire home/apt,160,2,9,0.33,1,0 +21840,28786801,Brooklyn,Bushwick,40.70288,-73.92796,Private room,54,1,1,0.04,2,0 +21841,118870308,Manhattan,Murray Hill,40.7464,-73.97669,Private room,75,1,2,0.07,1,0 +21842,7427325,Manhattan,Hell's Kitchen,40.764070000000004,-73.99322,Entire home/apt,380,3,1,0.04,2,0 +21843,117035626,Brooklyn,Park Slope,40.67573,-73.97993000000001,Entire home/apt,115,2,97,3.68,1,0 +21844,1197823,Brooklyn,Williamsburg,40.708870000000005,-73.94609,Private room,100,3,12,0.43,2,0 +21845,118270996,Manhattan,Washington Heights,40.84806,-73.93930999999999,Private room,80,1,3,0.11,1,0 +21846,119125703,Brooklyn,Williamsburg,40.70983,-73.96495,Entire home/apt,109,3,73,2.64,1,37 +21847,76840423,Staten Island,Huguenot,40.538709999999995,-74.16966,Entire home/apt,180,1,136,4.81,1,136 +21848,5817532,Brooklyn,Park Slope,40.68326,-73.97796,Entire home/apt,600,6,7,0.36,1,42 +21849,33955029,Manhattan,East Village,40.724920000000004,-73.98982,Private room,160,3,15,0.54,1,0 +21850,5162192,Manhattan,Upper West Side,40.7979,-73.96024,Entire home/apt,130,30,2,0.08,12,216 +21851,3650456,Manhattan,Chelsea,40.74899,-74.00403,Private room,90,7,12,0.42,1,0 +21852,5524401,Manhattan,Harlem,40.82288,-73.95254,Private room,63,7,21,0.75,1,0 +21853,1659170,Brooklyn,Williamsburg,40.71315,-73.943,Entire home/apt,126,1,6,0.22,1,0 +21854,43685722,Manhattan,Upper West Side,40.78873,-73.97402,Entire home/apt,195,2,16,0.59,1,0 +21855,10475653,Brooklyn,Windsor Terrace,40.64958,-73.97482,Private room,45,1,108,3.8,3,243 +21856,119173203,Brooklyn,Bushwick,40.70537,-73.91587,Private room,47,1,17,0.97,1,0 +21857,15219324,Queens,Astoria,40.76964,-73.92303000000001,Private room,55,10,0,,1,188 +21858,119190733,Brooklyn,Carroll Gardens,40.68196,-73.99944,Entire home/apt,200,7,1,0.04,1,0 +21859,66519807,Manhattan,Upper East Side,40.77734,-73.94592,Entire home/apt,60,7,0,,1,0 +21860,117851567,Manhattan,Harlem,40.81955,-73.95586999999999,Private room,51,1,0,,1,0 +21861,80479138,Manhattan,Midtown,40.76032,-73.96618000000001,Entire home/apt,160,30,7,0.4,5,71 +21862,14759473,Brooklyn,Bedford-Stuyvesant,40.7002,-73.94327,Private room,55,1,25,0.88,1,0 +21863,3095778,Manhattan,East Village,40.72208,-73.98473,Entire home/apt,110,12,11,0.39,1,0 +21864,42555896,Manhattan,Harlem,40.80063,-73.95223,Entire home/apt,200,30,3,0.27,1,327 +21865,19177308,Brooklyn,Bushwick,40.68956,-73.90599,Entire home/apt,109,3,72,2.55,4,140 +21866,1420715,Brooklyn,Bushwick,40.6898,-73.91835,Entire home/apt,149,3,70,2.51,3,170 +21867,6335895,Manhattan,Lower East Side,40.71862,-73.98405,Entire home/apt,220,4,16,0.65,1,14 +21868,36578169,Manhattan,Upper East Side,40.77984,-73.94725,Entire home/apt,130,2,0,,1,0 +21869,1794149,Manhattan,Financial District,40.70682,-74.00445,Private room,75,2,3,0.11,1,0 +21870,24580054,Brooklyn,Greenpoint,40.732040000000005,-73.95874,Entire home/apt,250,2,0,,1,0 +21871,331658,Queens,Glendale,40.69643,-73.89362,Entire home/apt,65,3,19,0.7,1,104 +21872,79820757,Brooklyn,Crown Heights,40.67595,-73.94131999999999,Entire home/apt,300,30,9,0.33,2,136 +21873,74179880,Brooklyn,East New York,40.67549,-73.88932,Entire home/apt,90,3,68,2.51,8,343 +21874,1750299,Brooklyn,Williamsburg,40.7115,-73.9429,Private room,69,23,12,0.44,2,189 +21875,105394139,Bronx,Kingsbridge,40.870940000000004,-73.89386,Private room,79,3,115,4.1,4,71 +21876,117263759,Manhattan,Chelsea,40.75046,-73.99854,Entire home/apt,190,1,132,5.17,1,252 +21877,51752603,Manhattan,Greenwich Village,40.73104,-73.99831,Private room,80,3,1,0.04,1,0 +21878,119466544,Brooklyn,South Slope,40.66317,-73.98465,Entire home/apt,175,1,2,0.07,2,0 +21879,55125246,Queens,Jamaica,40.68638,-73.79007,Private room,65,1,347,13.48,3,159 +21880,119483929,Manhattan,Murray Hill,40.7481,-73.97771,Entire home/apt,148,14,0,,1,0 +21881,64610450,Manhattan,Chinatown,40.71569,-73.99076,Private room,63,3,10,0.36,1,0 +21882,35529867,Manhattan,Harlem,40.80339,-73.95034,Private room,99,3,9,0.42,1,0 +21883,4844209,Brooklyn,Bushwick,40.70146,-73.92886999999999,Entire home/apt,90,5,0,,1,0 +21884,86602555,Manhattan,Chelsea,40.743140000000004,-73.99552,Entire home/apt,250,2,24,0.9,1,42 +21885,99245631,Manhattan,Upper East Side,40.77186,-73.95402,Private room,90,2,3,0.11,1,0 +21886,119523037,Brooklyn,Brighton Beach,40.582,-73.96185,Entire home/apt,120,1,119,4.2,4,85 +21887,119548006,Queens,Fresh Meadows,40.73318,-73.79321999999999,Entire home/apt,39,2,113,4.04,2,3 +21888,5800161,Brooklyn,Cobble Hill,40.68886,-73.99825,Entire home/apt,117,30,11,0.47,1,324 +21889,100106209,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96234,Private room,160,1,45,1.62,2,303 +21890,975819,Manhattan,Nolita,40.72118,-73.99602,Entire home/apt,500,2,0,,1,0 +21891,16064049,Manhattan,Hell's Kitchen,40.76616,-73.98435,Entire home/apt,100,13,6,0.21,1,0 +21892,119623927,Manhattan,East Village,40.72804,-73.98665,Entire home/apt,117,180,15,0.56,1,332 +21893,5925984,Manhattan,Midtown,40.74685,-73.9841,Private room,175,2,60,2.3,1,357 +21894,29893675,Manhattan,Harlem,40.82432,-73.9385,Shared room,25,1,9,0.32,2,0 +21895,54861276,Brooklyn,Brooklyn Heights,40.69257,-73.99707,Entire home/apt,152,2,12,0.5,1,0 +21896,119634559,Brooklyn,Crown Heights,40.66507,-73.95699,Private room,45,7,11,0.4,1,0 +21897,119155499,Brooklyn,Bushwick,40.693690000000004,-73.92291999999999,Private room,59,5,26,0.93,4,325 +21898,90731801,Manhattan,East Village,40.72833,-73.98118000000001,Private room,70,3,3,0.11,1,0 +21899,119155499,Brooklyn,Bushwick,40.693909999999995,-73.92469,Private room,57,5,23,0.84,4,337 +21900,119669258,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94098000000001,Entire home/apt,200,2,77,2.97,1,88 +21901,119667654,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94755,Entire home/apt,71,5,0,,1,0 +21902,119592255,Queens,Jamaica,40.68073,-73.78354,Private room,45,1,336,11.91,2,345 +21903,119155499,Brooklyn,Bushwick,40.695159999999994,-73.92258000000001,Private room,61,5,32,1.14,4,350 +21904,59262205,Brooklyn,Bedford-Stuyvesant,40.67989,-73.90857,Private room,55,1,102,3.66,3,121 +21905,1522383,Brooklyn,Prospect Heights,40.68006,-73.97248,Private room,74,1,4,0.15,1,0 +21906,13492085,Manhattan,Chelsea,40.74525,-73.99229,Private room,100,1,1,0.04,2,0 +21907,119706589,Manhattan,Chinatown,40.71463,-73.99658000000001,Entire home/apt,178,1,146,5.28,1,212 +21908,55125246,Queens,Jamaica,40.687870000000004,-73.78843,Private room,80,1,129,5.19,3,180 +21909,13561853,Queens,Sunnyside,40.74176,-73.92399999999999,Entire home/apt,75,30,6,0.22,1,45 +21910,119779683,Manhattan,Harlem,40.80859,-73.94216,Entire home/apt,158,3,61,2.21,1,62 +21911,10015020,Brooklyn,Crown Heights,40.663909999999994,-73.93551,Entire home/apt,88,4,66,2.35,1,0 +21912,95921812,Brooklyn,Gowanus,40.67873,-73.98976,Entire home/apt,95,1,3,0.11,1,0 +21913,88326259,Manhattan,Upper East Side,40.78172,-73.94827,Entire home/apt,225,3,62,2.27,1,234 +21914,19289048,Brooklyn,Fort Greene,40.68773,-73.97901999999999,Entire home/apt,240,2,15,0.62,1,66 +21915,100656374,Queens,Ditmars Steinway,40.78304,-73.91783000000001,Entire home/apt,110,3,68,2.47,1,299 +21916,92294213,Manhattan,West Village,40.734140000000004,-74.00001,Entire home/apt,225,3,12,0.43,1,0 +21917,6978404,Brooklyn,Bay Ridge,40.62645,-74.02888,Entire home/apt,165,20,0,,1,46 +21918,7824337,Brooklyn,Flatbush,40.65218,-73.96193000000001,Entire home/apt,140,3,26,1.09,2,161 +21919,8314232,Brooklyn,Prospect-Lefferts Gardens,40.65802,-73.95595,Entire home/apt,100,1,38,1.34,1,0 +21920,79882333,Brooklyn,Bedford-Stuyvesant,40.68119,-73.93722,Private room,39,2,2,0.07,1,0 +21921,54637605,Queens,Ridgewood,40.702,-73.89768000000001,Entire home/apt,110,3,10,0.37,1,16 +21922,33510,Brooklyn,Flatbush,40.64847,-73.96132,Entire home/apt,105,31,2,0.07,1,41 +21923,10737943,Manhattan,Upper East Side,40.77414,-73.94643,Private room,49,30,4,0.3,10,99 +21924,44582082,Queens,Ridgewood,40.70013,-73.90077,Private room,45,2,9,0.32,1,0 +21925,114736959,Brooklyn,Coney Island,40.57577,-73.98553000000001,Entire home/apt,450,1,5,0.42,6,364 +21926,114736959,Brooklyn,Coney Island,40.57582,-73.98576,Entire home/apt,99,2,68,2.51,6,125 +21927,9132087,Manhattan,Greenwich Village,40.72956,-73.99979,Entire home/apt,169,3,22,0.81,2,0 +21928,119930068,Manhattan,Hell's Kitchen,40.76699,-73.9848,Entire home/apt,130,1,4,0.14,1,0 +21929,99242527,Manhattan,Flatiron District,40.74074,-73.98573,Entire home/apt,255,3,90,3.21,1,194 +21930,16261195,Manhattan,Upper East Side,40.776990000000005,-73.95193,Private room,80,9,3,0.11,1,0 +21931,119941037,Brooklyn,Cobble Hill,40.68934,-73.99438,Private room,70,1,3,0.11,1,0 +21932,7501534,Brooklyn,Williamsburg,40.710640000000005,-73.96497,Private room,60,2,0,,1,0 +21933,119959551,Manhattan,Chelsea,40.737559999999995,-73.99110999999999,Entire home/apt,219,4,5,0.18,1,0 +21934,119967955,Brooklyn,Park Slope,40.66713,-73.98155,Private room,60,1,86,3.14,1,117 +21935,44709817,Brooklyn,Bedford-Stuyvesant,40.68187,-73.94589,Private room,60,1,3,0.16,1,0 +21936,2412748,Brooklyn,Crown Heights,40.6727,-73.95505,Private room,82,4,0,,1,0 +21937,836353,Manhattan,East Village,40.72588,-73.98598,Entire home/apt,122,6,22,0.87,1,15 +21938,21877498,Brooklyn,Bushwick,40.7012,-73.92876,Entire home/apt,125,3,0,,2,0 +21939,103361884,Brooklyn,Flatbush,40.6514,-73.9616,Private room,44,3,25,1.78,1,3 +21940,120082555,Queens,Rego Park,40.72999,-73.86043000000001,Entire home/apt,125,2,67,2.58,1,278 +21941,9683962,Queens,Astoria,40.769870000000004,-73.92679,Private room,55,1,9,0.91,1,0 +21942,23192585,Brooklyn,Bedford-Stuyvesant,40.68335,-73.91221999999999,Private room,47,4,36,1.28,1,0 +21943,38593087,Brooklyn,Williamsburg,40.7087,-73.9671,Private room,80,1,58,2.08,2,120 +21944,116746802,Queens,Bayside,40.75047,-73.75349,Private room,65,7,40,1.51,5,148 +21945,105372357,Queens,Long Island City,40.741170000000004,-73.94904,Private room,75,5,17,0.61,1,112 +21946,120137482,Queens,Long Island City,40.75566,-73.9205,Private room,100,1,0,,1,0 +21947,34745360,Brooklyn,Williamsburg,40.716120000000004,-73.95983000000001,Private room,90,22,0,,2,0 +21948,13416818,Brooklyn,Bedford-Stuyvesant,40.67964,-73.95629,Private room,45,2,16,0.57,3,0 +21949,45671454,Bronx,Olinville,40.88438,-73.86397,Private room,125,1,0,,1,0 +21950,118378908,Brooklyn,Williamsburg,40.71355,-73.95003,Private room,69,28,17,0.61,6,229 +21951,13860679,Manhattan,Inwood,40.86461,-73.92363,Entire home/apt,199,2,49,1.81,3,147 +21952,119987770,Queens,East Elmhurst,40.76245,-73.87938,Private room,55,1,239,8.58,2,361 +21953,18660750,Queens,Edgemere,40.5938,-73.77373,Private room,50,1,76,2.84,1,324 +21954,120245256,Manhattan,Upper West Side,40.79712,-73.96117,Private room,125,1,4,0.14,1,0 +21955,120250860,Manhattan,SoHo,40.72318,-74.00223000000001,Entire home/apt,2250,2,21,0.74,2,343 +21956,120256797,Brooklyn,Bedford-Stuyvesant,40.69095,-73.93444000000001,Entire home/apt,125,31,4,0.16,1,178 +21957,120261070,Queens,Rego Park,40.7246,-73.85688,Private room,75,1,0,,1,0 +21958,8784337,Brooklyn,Bushwick,40.6937,-73.91006,Private room,32,5,3,0.11,1,0 +21959,42727726,Brooklyn,Williamsburg,40.71284,-73.96284,Private room,88,7,15,0.55,1,0 +21960,43907907,Manhattan,Upper West Side,40.795629999999996,-73.97634000000001,Entire home/apt,215,3,38,1.4,1,31 +21961,110081618,Manhattan,Hell's Kitchen,40.76125,-73.98945,Entire home/apt,134,1,81,2.96,2,0 +21962,112814443,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94618,Entire home/apt,125,2,104,3.69,1,268 +21963,57862648,Brooklyn,East New York,40.6613,-73.89088000000001,Private room,60,1,0,,1,88 +21964,18217011,Manhattan,Inwood,40.86857,-73.91577,Private room,60,4,95,3.65,1,323 +21965,2263722,Brooklyn,Flatbush,40.64945,-73.96108000000001,Private room,56,7,12,0.44,1,0 +21966,93148942,Brooklyn,Bushwick,40.69872,-73.92718,Private room,85,1,19,0.72,2,0 +21967,107947878,Brooklyn,Bedford-Stuyvesant,40.6781,-73.90822,Entire home/apt,100,2,50,3.12,2,235 +21968,51594665,Manhattan,Harlem,40.81248,-73.94317,Private room,55,2,0,,1,0 +21969,120393659,Manhattan,Harlem,40.81315,-73.94747,Entire home/apt,150,4,22,0.85,1,238 +21970,56840569,Manhattan,Upper East Side,40.781929999999996,-73.95099,Private room,60,183,1,0.09,1,340 +21971,118378908,Brooklyn,Williamsburg,40.71415,-73.94866999999999,Entire home/apt,108,28,17,0.66,6,332 +21972,3811546,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95404,Entire home/apt,122,4,59,2.11,1,217 +21973,119548006,Queens,Fresh Meadows,40.73275,-73.79366,Entire home/apt,45,2,142,5.03,2,2 +21974,22019825,Brooklyn,Williamsburg,40.71889,-73.95707,Entire home/apt,150,7,2,0.08,1,0 +21975,60244293,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92662,Entire home/apt,160,2,45,1.61,2,0 +21976,9028424,Brooklyn,Brooklyn Heights,40.69551,-73.99371,Entire home/apt,140,7,1,0.05,1,8 +21977,11392003,Brooklyn,Bushwick,40.69709,-73.93103,Entire home/apt,210,3,76,2.8,1,9 +21978,97266110,Manhattan,Greenwich Village,40.73523,-73.99465,Entire home/apt,180,3,2,0.07,1,365 +21979,117195769,Queens,Astoria,40.76505,-73.90918,Private room,80,1,161,5.74,3,365 +21980,54677014,Manhattan,Harlem,40.822790000000005,-73.9517,Private room,79,2,72,2.59,1,160 +21981,1721381,Brooklyn,Park Slope,40.68233,-73.97778000000001,Entire home/apt,180,3,2,0.07,1,0 +21982,21725994,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95831,Entire home/apt,190,7,9,0.36,2,82 +21983,119737270,Brooklyn,Flatbush,40.640409999999996,-73.95674,Private room,60,2,0,,2,175 +21984,19884477,Manhattan,Morningside Heights,40.80935,-73.95786,Entire home/apt,139,1,77,2.79,1,0 +21985,25054395,Brooklyn,South Slope,40.669290000000004,-73.98706999999999,Entire home/apt,163,5,12,0.43,1,192 +21986,119737270,Brooklyn,Flatbush,40.63865,-73.95786,Private room,65,2,0,,2,0 +21987,119829743,Manhattan,Chelsea,40.74054,-74.0004,Entire home/apt,365,6,7,0.26,1,0 +21988,120456470,Queens,Ditmars Steinway,40.77411,-73.90926,Entire home/apt,200,5,42,1.55,1,77 +21989,6274742,Brooklyn,Bedford-Stuyvesant,40.69197,-73.95849,Entire home/apt,84,4,8,1.1,1,0 +21990,79105834,Queens,Long Island City,40.753859999999996,-73.93324,Private room,58,1,104,3.74,9,300 +21991,58953152,Brooklyn,Bushwick,40.69927,-73.91315999999999,Private room,42,2,12,1.26,2,0 +21992,64401976,Brooklyn,South Slope,40.66175,-73.98731,Entire home/apt,90,3,76,2.75,1,248 +21993,3249903,Brooklyn,Flatbush,40.63501,-73.95522,Private room,98,4,0,,3,0 +21994,3249903,Brooklyn,Flatbush,40.63637,-73.95698,Private room,75,4,2,0.32,3,188 +21995,27378293,Manhattan,Harlem,40.82837,-73.94854000000001,Private room,86,2,3,0.11,3,342 +21996,6198824,Manhattan,Tribeca,40.7192,-74.01021999999999,Entire home/apt,251,1,12,0.43,1,0 +21997,50755667,Brooklyn,South Slope,40.66865,-73.9865,Entire home/apt,85,3,6,0.23,3,98 +21998,14768609,Brooklyn,Fort Greene,40.69677,-73.97112,Entire home/apt,285,4,19,0.68,1,15 +21999,120570941,Manhattan,Murray Hill,40.74817,-73.98210999999999,Entire home/apt,325,2,5,0.18,1,0 +22000,120577730,Manhattan,Financial District,40.70833,-74.0131,Entire home/apt,220,2,9,0.33,1,47 +22001,120577640,Brooklyn,Park Slope,40.669259999999994,-73.97861999999999,Private room,250,1,0,,1,89 +22002,79105834,Queens,Long Island City,40.75551,-73.934,Private room,58,1,74,2.66,9,281 +22003,79105834,Queens,Long Island City,40.756029999999996,-73.93405,Private room,58,1,86,3.09,9,301 +22004,10714931,Brooklyn,Crown Heights,40.67268,-73.95249,Private room,50,3,16,0.62,4,37 +22005,11524572,Brooklyn,Williamsburg,40.71233,-73.96181,Entire home/apt,145,3,56,2.01,1,18 +22006,120599606,Manhattan,Midtown,40.76383,-73.97704,Private room,199,2,0,,1,0 +22007,10661558,Manhattan,Upper East Side,40.775459999999995,-73.94896999999999,Private room,126,1,120,4.28,4,148 +22008,26177358,Manhattan,Upper East Side,40.7683,-73.95919,Entire home/apt,230,4,34,1.33,1,4 +22009,10661558,Manhattan,Upper East Side,40.77349,-73.94994,Private room,129,1,117,4.2,4,155 +22010,10661558,Manhattan,Upper East Side,40.77571,-73.94803,Private room,119,1,120,4.34,4,147 +22011,119592255,Queens,Jamaica,40.6809,-73.78196,Private room,50,1,173,6.15,2,365 +22012,18481424,Brooklyn,Bedford-Stuyvesant,40.689679999999996,-73.94483000000001,Entire home/apt,100,7,3,0.11,1,0 +22013,387844,Brooklyn,Brooklyn Heights,40.694520000000004,-73.99552,Entire home/apt,199,90,35,1.25,1,0 +22014,28573,Brooklyn,Bedford-Stuyvesant,40.6778,-73.9135,Private room,65,1,140,5.0,1,144 +22015,43098504,Manhattan,Washington Heights,40.85022,-73.92903000000001,Private room,50,4,9,0.33,1,83 +22016,73756811,Brooklyn,Crown Heights,40.672470000000004,-73.94421,Private room,65,1,51,1.83,1,0 +22017,40031815,Manhattan,East Village,40.728640000000006,-73.98102,Entire home/apt,200,5,2,0.07,1,0 +22018,7475363,Manhattan,Upper East Side,40.76578,-73.95443,Private room,150,2,61,2.85,2,287 +22019,53972872,Brooklyn,Crown Heights,40.671859999999995,-73.94094,Private room,50,1,6,0.21,1,0 +22020,120761466,Brooklyn,Flatbush,40.64765,-73.95804,Private room,90,2,45,1.64,1,363 +22021,26980460,Brooklyn,Downtown Brooklyn,40.69383,-73.98539,Entire home/apt,180,14,1,0.1,1,0 +22022,84548731,Brooklyn,Prospect-Lefferts Gardens,40.65531,-73.96161,Private room,50,4,6,0.22,1,6 +22023,4812440,Manhattan,Upper East Side,40.7701,-73.9589,Entire home/apt,250,2,0,,1,0 +22024,41398005,Staten Island,Arrochar,40.59347,-74.06914,Entire home/apt,122,1,52,2.0,3,219 +22025,7854459,Brooklyn,DUMBO,40.70208,-73.98568,Entire home/apt,225,2,1,0.07,1,88 +22026,120767920,Queens,Flushing,40.75708,-73.81268,Private room,51,2,129,4.63,10,355 +22027,4933848,Brooklyn,Bushwick,40.69554,-73.92588,Entire home/apt,90,1,4,0.14,1,0 +22028,89197711,Brooklyn,Gravesend,40.60044,-73.99341,Private room,79,1,2,0.08,1,0 +22029,29055402,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93509,Entire home/apt,275,2,66,2.42,1,23 +22030,45387487,Brooklyn,Bushwick,40.69705,-73.92585,Private room,45,1,0,,1,1 +22031,95306427,Manhattan,East Village,40.72766,-73.98249,Private room,100,3,26,0.94,1,0 +22032,62641345,Manhattan,Upper West Side,40.7975,-73.97161,Entire home/apt,199,2,83,3.01,1,37 +22033,4135793,Manhattan,Nolita,40.72263,-73.99622,Private room,75,1,8,0.28,1,0 +22034,120890372,Brooklyn,Bushwick,40.695,-73.90755,Entire home/apt,145,7,25,0.95,1,271 +22035,101435219,Brooklyn,Bedford-Stuyvesant,40.68607,-73.92392,Entire home/apt,161,2,45,1.65,2,270 +22036,13416818,Brooklyn,Bedford-Stuyvesant,40.68116,-73.95725999999999,Private room,45,2,14,0.51,3,0 +22037,369015,Bronx,Pelham Gardens,40.86437,-73.83863000000001,Private room,43,20,6,0.69,2,104 +22038,41847916,Brooklyn,Bedford-Stuyvesant,40.68683,-73.94411,Private room,50,2,0,,1,0 +22039,9263625,Brooklyn,Prospect Heights,40.67774,-73.96486999999999,Entire home/apt,95,7,22,0.78,1,13 +22040,120906593,Queens,Astoria,40.76121,-73.92341,Private room,60,2,40,1.46,1,67 +22041,120906241,Bronx,Morris Heights,40.84565,-73.91684000000001,Entire home/apt,80,4,0,,1,0 +22042,120725189,Brooklyn,Bath Beach,40.60353,-74.01599,Entire home/apt,180,3,46,1.68,1,334 +22043,25651976,Manhattan,Hell's Kitchen,40.7606,-73.99345,Entire home/apt,150,8,8,0.3,1,11 +22044,4204783,Staten Island,West Brighton,40.631159999999994,-74.12278,Private room,49,2,45,1.62,3,276 +22045,4204783,Staten Island,West Brighton,40.63149,-74.12393,Private room,49,2,32,1.14,3,315 +22046,9215977,Manhattan,Upper West Side,40.77617,-73.98188,Entire home/apt,249,3,20,0.84,1,63 +22047,43045034,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93839,Private room,70,3,27,1.81,1,0 +22048,120989542,Brooklyn,Williamsburg,40.70626,-73.95212,Private room,60,4,3,0.12,1,0 +22049,116746802,Queens,Bayside,40.74924,-73.75654,Private room,49,3,29,1.07,5,96 +22050,6166708,Queens,Rosedale,40.65252,-73.73425,Private room,22,1,59,2.1,1,0 +22051,119523037,Brooklyn,Brighton Beach,40.58017,-73.9616,Shared room,50,1,1,0.05,4,1 +22052,3435092,Manhattan,Upper East Side,40.7823,-73.94838,Entire home/apt,105,5,117,4.29,3,187 +22053,14746465,Manhattan,Harlem,40.811840000000004,-73.94488,Private room,89,3,49,1.76,1,157 +22054,119029523,Brooklyn,Fort Hamilton,40.622409999999995,-74.02863,Entire home/apt,115,4,3,0.48,3,295 +22055,16721721,Manhattan,Harlem,40.8153,-73.9508,Private room,65,2,18,0.64,1,0 +22056,25196982,Queens,Astoria,40.76924,-73.91702,Private room,65,1,11,3.24,1,9 +22057,121096858,Queens,Woodside,40.74176,-73.90630999999999,Private room,35,1,0,,1,0 +22058,13860679,Manhattan,Inwood,40.863479999999996,-73.92232,Private room,99,3,4,0.15,3,179 +22059,611109,Brooklyn,Williamsburg,40.708490000000005,-73.96603,Private room,83,1,46,1.69,2,192 +22060,121109701,Brooklyn,Williamsburg,40.70961,-73.94635,Private room,45,1,98,3.53,1,44 +22061,13860679,Manhattan,Inwood,40.86448,-73.92351,Private room,99,3,0,,3,180 +22062,119987770,Queens,East Elmhurst,40.76075,-73.87943,Private room,55,1,296,10.6,2,322 +22063,19222653,Brooklyn,Bay Ridge,40.63431,-74.02552,Entire home/apt,100,3,25,0.96,1,353 +22064,105315535,Brooklyn,Prospect Heights,40.67453,-73.96785,Entire home/apt,158,30,0,,3,281 +22065,20926711,Manhattan,Chelsea,40.74864,-73.99398000000001,Private room,89,2,2,0.07,1,113 +22066,65068375,Brooklyn,Bushwick,40.70216,-73.92928,Private room,37,2,1,0.04,1,0 +22067,121141615,Queens,Ridgewood,40.708859999999994,-73.91741999999999,Private room,60,1,1,0.05,1,0 +22068,26432133,Queens,East Elmhurst,40.76389,-73.87155,Shared room,38,1,224,7.96,5,80 +22069,7050126,Manhattan,Midtown,40.76305,-73.97841,Entire home/apt,800,1,19,0.69,2,0 +22070,121185129,Manhattan,Gramercy,40.7345,-73.98482,Entire home/apt,325,6,11,0.41,1,177 +22071,88043058,Brooklyn,Bedford-Stuyvesant,40.6899,-73.95498,Private room,89,1,76,2.77,4,358 +22072,32012247,Manhattan,Lower East Side,40.721940000000004,-73.98940999999999,Shared room,68,1,5,0.18,1,0 +22073,3726131,Manhattan,Harlem,40.80766,-73.94341999999999,Entire home/apt,700,6,2,0.09,2,72 +22074,17041154,Brooklyn,Williamsburg,40.70987,-73.94756,Entire home/apt,210,2,35,1.56,1,170 +22075,22570120,Brooklyn,Williamsburg,40.71164,-73.9572,Entire home/apt,150,30,5,0.2,2,48 +22076,19824881,Manhattan,Chelsea,40.741279999999996,-73.99986,Entire home/apt,139,1,0,,1,0 +22077,114477998,Manhattan,East Harlem,40.79274,-73.94561999999999,Private room,103,2,137,5.12,4,208 +22078,1898704,Brooklyn,Crown Heights,40.67181,-73.95865,Private room,45,25,2,0.08,1,0 +22079,114477998,Manhattan,East Harlem,40.79142,-73.94664,Private room,90,2,110,4.04,4,237 +22080,120381434,Manhattan,Hell's Kitchen,40.76722,-73.98568,Entire home/apt,227,5,6,0.95,1,0 +22081,121244117,Brooklyn,Williamsburg,40.71869,-73.95158,Entire home/apt,100,2,1,0.04,1,0 +22082,1715301,Staten Island,Tompkinsville,40.63568,-74.07826,Entire home/apt,75,4,117,4.31,3,173 +22083,120951063,Manhattan,Upper West Side,40.78549,-73.97664,Entire home/apt,97,3,4,0.14,1,0 +22084,116746802,Queens,Bayside,40.75092,-73.75316,Private room,50,7,35,1.29,5,145 +22085,116746802,Queens,Bayside,40.75136,-73.75269,Private room,60,7,30,1.1,5,169 +22086,46504226,Brooklyn,Greenpoint,40.73018,-73.95464,Private room,50,7,1,0.26,1,157 +22087,23234988,Queens,Flushing,40.74923,-73.80568000000001,Entire home/apt,229,1,22,0.8,6,265 +22088,4223227,Manhattan,Lower East Side,40.7203,-73.99172,Entire home/apt,150,2,18,0.87,1,0 +22089,9864136,Brooklyn,Bushwick,40.68643,-73.91465,Private room,50,1,3,0.13,26,342 +22090,48331309,Staten Island,Tompkinsville,40.631009999999996,-74.08443,Entire home/apt,95,4,54,2.06,1,0 +22091,121352443,Manhattan,East Harlem,40.78866,-73.95435,Private room,62,3,3,0.11,1,0 +22092,45006492,Manhattan,East Harlem,40.80617,-73.9415,Entire home/apt,115,1,161,5.78,2,156 +22093,29546670,Queens,Ridgewood,40.703359999999996,-73.90991,Private room,55,1,41,2.18,1,5 +22094,20378750,Brooklyn,Crown Heights,40.67438,-73.94071,Entire home/apt,90,6,8,0.35,1,8 +22095,121359320,Manhattan,Harlem,40.830459999999995,-73.94142,Private room,30,1,7,0.25,1,0 +22096,38772311,Manhattan,East Harlem,40.80113,-73.94283,Private room,100,2,0,,1,0 +22097,121130063,Brooklyn,Bushwick,40.70422,-73.92756999999999,Private room,71,1,73,2.61,3,364 +22098,121130063,Brooklyn,Bushwick,40.70276,-73.9271,Private room,70,1,59,2.11,3,362 +22099,45006492,Manhattan,East Harlem,40.80623,-73.94046999999999,Entire home/apt,115,1,134,4.81,2,1 +22100,121391142,Queens,Springfield Gardens,40.666,-73.76333000000001,Private room,65,1,325,11.72,2,0 +22101,10910171,Queens,Rockaway Beach,40.58493,-73.81736,Entire home/apt,120,1,113,4.07,2,133 +22102,120567010,Brooklyn,Williamsburg,40.71168,-73.9657,Private room,100,5,2,0.07,1,0 +22103,43052484,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93502,Private room,59,1,181,6.65,1,34 +22104,121391142,Queens,Springfield Gardens,40.66535,-73.76366999999999,Private room,65,1,368,13.24,2,0 +22105,18140569,Manhattan,Upper West Side,40.80171,-73.96623000000001,Private room,89,5,55,2.02,1,0 +22106,121429669,Brooklyn,Kensington,40.630520000000004,-73.97161,Private room,250,2,0,,1,365 +22107,55125246,Queens,Jamaica,40.68615,-73.78747,Private room,80,1,177,7.0,3,180 +22108,945880,Manhattan,Hell's Kitchen,40.76428,-73.9941,Entire home/apt,127,3,1,0.04,1,0 +22109,3682941,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95254,Private room,150,5,0,,1,66 +22110,116754031,Brooklyn,Flatlands,40.63159,-73.92724,Entire home/apt,170,2,3,1.14,3,180 +22111,49651890,Manhattan,Nolita,40.721959999999996,-73.99664,Private room,120,6,47,2.54,1,40 +22112,5121858,Brooklyn,Bushwick,40.69708,-73.91237,Private room,44,3,31,1.11,1,365 +22113,57643057,Queens,Long Island City,40.7483,-73.94530999999999,Private room,71,7,102,3.66,2,173 +22114,16302498,Brooklyn,Brooklyn Heights,40.69253,-73.99249,Private room,150,2,61,2.36,1,117 +22115,28876335,Brooklyn,Williamsburg,40.70973,-73.94552,Private room,75,2,0,,1,0 +22116,73610315,Queens,Astoria,40.76529,-73.92304,Private room,53,2,14,0.55,1,0 +22117,106046570,Brooklyn,Bushwick,40.69491,-73.91266,Private room,100,1,2,0.09,1,269 +22118,3803423,Brooklyn,Prospect Heights,40.67841,-73.9698,Entire home/apt,175,7,5,0.18,1,0 +22119,121574038,Manhattan,East Village,40.721070000000005,-73.98039,Entire home/apt,170,3,8,0.36,1,111 +22120,121585653,Manhattan,Harlem,40.81733,-73.95413,Private room,25,1,0,,1,0 +22121,100812175,Queens,Jackson Heights,40.75125,-73.87644,Private room,51,1,108,3.91,1,306 +22122,70543663,Manhattan,Upper East Side,40.76999,-73.94928,Entire home/apt,95,1,89,3.72,1,0 +22123,29952340,Brooklyn,Bushwick,40.70432,-73.9267,Entire home/apt,94,2,51,1.87,1,74 +22124,121612198,Brooklyn,Canarsie,40.6427,-73.91266,Private room,69,1,20,0.78,4,305 +22125,85218001,Manhattan,Upper East Side,40.77666,-73.95618,Private room,105,2,8,0.3,1,0 +22126,1872051,Manhattan,East Village,40.728559999999995,-73.98125,Entire home/apt,79,2,1,0.04,1,0 +22127,1495021,Queens,Sunnyside,40.7381,-73.91893,Private room,64,31,0,,2,95 +22128,10714931,Brooklyn,Crown Heights,40.671640000000004,-73.95326,Private room,40,15,26,0.93,4,67 +22129,76534284,Manhattan,East Harlem,40.79295,-73.93808,Private room,62,3,21,0.77,1,0 +22130,96735804,Manhattan,Financial District,40.70552,-74.00941,Entire home/apt,110,7,32,1.17,1,272 +22131,54850437,Manhattan,West Village,40.73581,-74.00666,Entire home/apt,185,4,22,0.81,1,22 +22132,6430476,Manhattan,East Harlem,40.80726,-73.93815,Entire home/apt,177,2,130,4.8,1,267 +22133,15400695,Brooklyn,Crown Heights,40.67541,-73.94917,Entire home/apt,110,2,4,0.3,1,0 +22134,9127398,Manhattan,Murray Hill,40.748909999999995,-73.97846,Entire home/apt,235,3,0,,1,0 +22135,95785961,Manhattan,Upper East Side,40.78311,-73.95299,Private room,80,3,85,3.06,1,28 +22136,121802962,Queens,Astoria,40.77411,-73.92730999999999,Private room,53,5,47,1.76,1,5 +22137,20846509,Brooklyn,Park Slope,40.671479999999995,-73.97766,Private room,95,9,4,0.18,1,0 +22138,30283594,Manhattan,Upper East Side,40.761379999999996,-73.9598,Entire home/apt,115,30,1,0.05,121,336 +22139,29510483,Brooklyn,Prospect-Lefferts Gardens,40.65749,-73.95510999999999,Private room,65,2,0,,1,0 +22140,102763353,Manhattan,Midtown,40.743970000000004,-73.98405,Entire home/apt,130,4,5,0.19,2,0 +22141,30381715,Manhattan,East Village,40.72552,-73.98657,Private room,79,4,1,0.04,1,0 +22142,48243500,Brooklyn,Clinton Hill,40.69422,-73.96565,Entire home/apt,107,2,5,0.18,1,0 +22143,5626253,Brooklyn,Greenpoint,40.7233,-73.94187,Entire home/apt,116,1,9,0.32,1,0 +22144,105018962,Brooklyn,Bedford-Stuyvesant,40.69461,-73.94825,Private room,47,3,5,0.2,2,0 +22145,23089531,Manhattan,East Village,40.727709999999995,-73.98983,Private room,100,2,66,2.39,3,27 +22146,74179880,Brooklyn,East New York,40.6754,-73.88989000000001,Private room,75,3,71,2.61,8,360 +22147,81141009,Brooklyn,Williamsburg,40.71666,-73.94561999999999,Entire home/apt,160,5,10,0.37,1,0 +22148,22659263,Brooklyn,Crown Heights,40.67091,-73.94888,Entire home/apt,275,4,6,0.26,1,96 +22149,11136995,Brooklyn,Flatbush,40.648070000000004,-73.96625,Private room,22,3,2,0.08,1,0 +22150,119523037,Brooklyn,Brighton Beach,40.58186,-73.9602,Private room,60,1,2,0.07,4,1 +22151,46506241,Manhattan,Harlem,40.812129999999996,-73.9395,Entire home/apt,70,4,9,0.44,1,0 +22152,119466544,Brooklyn,South Slope,40.66424,-73.98395,Private room,100,3,6,0.23,2,179 +22153,122012905,Brooklyn,Bedford-Stuyvesant,40.68144,-73.9426,Private room,55,5,0,,1,0 +22154,122026078,Manhattan,Harlem,40.817029999999995,-73.9525,Private room,64,2,8,0.29,3,98 +22155,122028274,Manhattan,Washington Heights,40.84545,-73.93809,Private room,47,3,4,0.16,1,0 +22156,122032246,Manhattan,Chelsea,40.74107,-73.99936,Entire home/apt,250,2,2,0.07,1,0 +22157,122038353,Brooklyn,Williamsburg,40.717240000000004,-73.94492,Entire home/apt,190,15,8,0.31,1,198 +22158,122044895,Bronx,Kingsbridge,40.8781,-73.89998,Entire home/apt,99,3,116,4.35,2,86 +22159,68228552,Brooklyn,Bedford-Stuyvesant,40.68309,-73.95249,Private room,88,7,6,0.33,2,82 +22160,122044489,Brooklyn,Bedford-Stuyvesant,40.6905,-73.94375,Private room,100,1,0,,2,130 +22161,112335936,Manhattan,Upper West Side,40.77048,-73.98252,Private room,250,3,11,0.42,1,17 +22162,23089531,Manhattan,East Village,40.72571,-73.98789000000001,Entire home/apt,250,2,8,0.32,3,264 +22163,101127101,Brooklyn,Brooklyn Heights,40.695640000000004,-73.99691,Entire home/apt,150,3,26,0.95,1,0 +22164,22456949,Manhattan,Hell's Kitchen,40.76616,-73.98916,Entire home/apt,484,2,107,3.95,1,46 +22165,122079426,Brooklyn,South Slope,40.6632,-73.98529,Private room,50,1,19,0.71,1,0 +22166,121620125,Manhattan,Midtown,40.757940000000005,-73.96959,Entire home/apt,141,8,12,0.44,1,0 +22167,31451454,Manhattan,Midtown,40.76352,-73.9831,Entire home/apt,199,2,70,2.65,1,263 +22168,9871522,Manhattan,Morningside Heights,40.81473,-73.96217,Entire home/apt,140,2,2,0.14,1,0 +22169,122118705,Manhattan,Harlem,40.8217,-73.93751,Private room,79,2,36,3.17,1,218 +22170,12117418,Brooklyn,Navy Yard,40.69851,-73.96961,Entire home/apt,142,2,3,0.11,1,0 +22171,57651976,Brooklyn,Bedford-Stuyvesant,40.68656,-73.9522,Private room,80,1,3,0.11,1,0 +22172,6945333,Manhattan,Chelsea,40.75538,-74.00441,Shared room,337,27,0,,1,365 +22173,48106825,Bronx,Pelham Gardens,40.86437,-73.8485,Private room,47,2,40,1.58,2,339 +22174,34745360,Brooklyn,Williamsburg,40.71647,-73.95971,Private room,65,20,1,0.04,2,0 +22175,53978622,Manhattan,Harlem,40.81217,-73.94055999999999,Entire home/apt,149,3,80,2.92,2,268 +22176,2065971,Brooklyn,Crown Heights,40.67933,-73.96305,Entire home/apt,300,5,3,0.12,1,0 +22177,25502436,Brooklyn,Brooklyn Heights,40.6961,-73.99329,Private room,159,2,5,0.19,1,363 +22178,611137,Brooklyn,Clinton Hill,40.68352,-73.96771,Private room,60,3,9,0.34,2,6 +22179,7573472,Brooklyn,Bushwick,40.70219,-73.93115,Private room,50,3,2,0.07,1,0 +22180,10914834,Manhattan,Financial District,40.704640000000005,-74.00715,Entire home/apt,220,2,108,3.92,1,225 +22181,41069190,Manhattan,Midtown,40.76587,-73.98210999999999,Entire home/apt,380,4,0,,1,0 +22182,47591528,Brooklyn,Sheepshead Bay,40.59211,-73.94126999999999,Private room,99,1,13,0.52,1,82 +22183,451032,Brooklyn,Greenpoint,40.72428,-73.94686,Entire home/apt,120,3,8,1.28,1,3 +22184,4059918,Manhattan,Upper East Side,40.769870000000004,-73.95111,Entire home/apt,110,14,4,0.36,1,221 +22185,5828830,Queens,Jamaica,40.67414,-73.76454,Private room,50,7,14,0.5,2,0 +22186,100128949,Queens,Astoria,40.75615,-73.91281,Private room,30,90,2,0.08,4,341 +22187,122283834,Brooklyn,Bushwick,40.69723,-73.92511,Private room,60,5,22,0.96,2,175 +22188,114736959,Brooklyn,Coney Island,40.577059999999996,-73.98439,Entire home/apt,110,2,57,2.13,6,144 +22189,22089863,Manhattan,Harlem,40.80533,-73.95049,Private room,75,1,2,0.4,1,280 +22190,30494797,Brooklyn,Williamsburg,40.71185,-73.95806,Entire home/apt,100,20,10,0.42,1,45 +22191,122372251,Manhattan,East Harlem,40.79274,-73.94286,Private room,65,1,81,2.93,1,0 +22192,10387304,Manhattan,East Village,40.73057,-73.986,Private room,125,2,21,0.77,2,329 +22193,56076854,Brooklyn,Bushwick,40.69377,-73.91269,Private room,40,5,84,3.04,2,316 +22194,11305944,Bronx,Allerton,40.86868,-73.85483,Entire home/apt,105,2,73,2.67,5,87 +22195,47054725,Brooklyn,Williamsburg,40.70937,-73.95903,Entire home/apt,115,4,6,0.22,1,0 +22196,116754031,Brooklyn,Flatlands,40.62723,-73.92635,Entire home/apt,75,2,38,1.38,3,363 +22197,122419373,Manhattan,Chelsea,40.74119,-74.0006,Private room,429,2,119,4.33,1,288 +22198,9808458,Bronx,Kingsbridge,40.8709,-73.89945999999999,Shared room,60,2,11,0.52,4,365 +22199,59654765,Brooklyn,Crown Heights,40.67689,-73.95079,Private room,30,3,3,0.11,1,0 +22200,17232044,Brooklyn,Greenpoint,40.72449,-73.94485999999999,Private room,84,7,7,0.26,1,24 +22201,122442440,Manhattan,Chinatown,40.71326,-73.99698000000001,Private room,75,2,59,2.21,1,68 +22202,2581995,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91701,Private room,50,4,10,1.06,2,7 +22203,22384027,Brooklyn,Crown Heights,40.67089,-73.9182,Private room,39,1,81,2.99,10,220 +22204,17859338,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95470999999999,Entire home/apt,160,5,59,2.4,2,243 +22205,122513490,Brooklyn,Greenpoint,40.721579999999996,-73.94578,Entire home/apt,175,3,71,2.67,1,20 +22206,120767920,Queens,Flushing,40.759009999999996,-73.81461,Private room,47,3,92,3.4,10,172 +22207,17739345,Queens,Ditmars Steinway,40.77872,-73.90943,Entire home/apt,89,1,0,,1,0 +22208,55981584,Brooklyn,Bay Ridge,40.63613,-74.02261999999999,Private room,29,1,3,0.11,2,0 +22209,6716330,Manhattan,Midtown,40.76811,-73.98181,Private room,95,3,62,2.39,3,86 +22210,25753120,Brooklyn,Crown Heights,40.67053,-73.94923,Private room,40,5,0,,2,0 +22211,14991730,Queens,Long Island City,40.7542,-73.92849,Entire home/apt,145,5,23,2.15,1,173 +22212,39832770,Manhattan,Chinatown,40.71816,-73.99538000000001,Private room,90,6,0,,1,0 +22213,10838291,Manhattan,Greenwich Village,40.73307,-73.99277,Entire home/apt,250,7,1,0.04,1,0 +22214,26821811,Manhattan,Harlem,40.8155,-73.93986,Private room,38,3,1,0.09,1,0 +22215,92561578,Queens,Maspeth,40.734429999999996,-73.89635,Private room,65,1,7,0.99,1,309 +22216,94382194,Bronx,Tremont,40.845459999999996,-73.89013,Entire home/apt,150,1,43,1.57,1,179 +22217,92963740,Brooklyn,Sunset Park,40.66194,-73.99138,Entire home/apt,139,3,32,1.25,2,20 +22218,122650568,Manhattan,Lower East Side,40.721470000000004,-73.98774,Entire home/apt,127,2,3,0.11,1,0 +22219,1481058,Brooklyn,Greenpoint,40.73223,-73.95786,Entire home/apt,290,10,2,0.07,2,0 +22220,8748472,Manhattan,Upper West Side,40.79806,-73.96085,Private room,100,2,5,0.18,1,0 +22221,122679380,Manhattan,Hell's Kitchen,40.76313,-73.98978000000001,Private room,100,1,216,8.07,1,43 +22222,12194903,Brooklyn,Williamsburg,40.70896,-73.95119,Entire home/apt,150,7,0,,1,0 +22223,8288491,Brooklyn,Bushwick,40.69107,-73.91134,Private room,65,2,4,0.15,2,0 +22224,4253817,Manhattan,Chelsea,40.74123,-73.99521999999999,Entire home/apt,200,4,45,1.66,1,49 +22225,122714664,Queens,Middle Village,40.71031,-73.87613,Entire home/apt,100,4,28,1.06,1,89 +22226,6899124,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95228,Entire home/apt,148,1,37,1.44,1,0 +22227,122722874,Brooklyn,Prospect Heights,40.67395,-73.96333,Entire home/apt,160,4,115,4.18,1,80 +22228,23377863,Manhattan,Upper East Side,40.780559999999994,-73.95182,Entire home/apt,147,4,9,0.47,1,7 +22229,77809736,Manhattan,Morningside Heights,40.80972,-73.95774,Entire home/apt,95,2,0,,2,0 +22230,5502239,Brooklyn,Clinton Hill,40.69345,-73.96632,Entire home/apt,130,5,3,0.12,1,0 +22231,4601948,Manhattan,Tribeca,40.7181,-74.00984,Entire home/apt,157,2,13,0.49,1,18 +22232,80508435,Manhattan,Upper West Side,40.79416,-73.97044,Private room,95,1,26,1.04,2,0 +22233,8894559,Brooklyn,Bushwick,40.70127,-73.91764,Entire home/apt,120,2,8,0.31,1,1 +22234,5162192,Manhattan,Upper West Side,40.79857,-73.96162,Entire home/apt,110,30,9,0.38,12,161 +22235,14135981,Manhattan,East Village,40.72439,-73.97606999999999,Entire home/apt,130,5,2,1.58,1,363 +22236,47056437,Manhattan,West Village,40.72999,-74.0034,Private room,99,1,0,,1,0 +22237,122884945,Queens,Middle Village,40.71774,-73.89180999999999,Entire home/apt,90,6,26,2.7,1,237 +22238,122498535,Brooklyn,East Flatbush,40.656940000000006,-73.92728000000001,Private room,138,30,13,0.48,3,37 +22239,122924398,Manhattan,East Harlem,40.79424,-73.93495,Entire home/apt,125,1,123,4.54,1,84 +22240,28588488,Manhattan,West Village,40.73612,-73.99978,Entire home/apt,395,1,39,1.43,1,177 +22241,2587680,Brooklyn,Park Slope,40.67156,-73.98366,Entire home/apt,100,4,7,0.46,1,37 +22242,24258807,Brooklyn,Greenpoint,40.72052,-73.94098000000001,Entire home/apt,150,8,12,0.44,1,0 +22243,855079,Manhattan,East Village,40.727340000000005,-73.98319000000001,Private room,150,1,16,1.75,3,0 +22244,96841679,Brooklyn,Canarsie,40.637159999999994,-73.88654,Entire home/apt,85,2,96,3.7,1,340 +22245,55199493,Manhattan,Upper East Side,40.7729,-73.95738,Entire home/apt,115,2,100,3.67,1,91 +22246,92277042,Brooklyn,Bushwick,40.69449,-73.91874,Private room,50,2,6,0.22,1,56 +22247,61875246,Queens,Whitestone,40.7824,-73.82144,Private room,45,1,84,5.35,2,157 +22248,44951851,Brooklyn,Crown Heights,40.66491,-73.9544,Entire home/apt,160,3,11,0.42,2,0 +22249,24383863,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94406,Private room,40,2,24,0.98,1,1 +22250,121841485,Queens,Jackson Heights,40.752359999999996,-73.89171999999999,Private room,70,3,23,0.85,1,177 +22251,1432946,Brooklyn,Bushwick,40.6974,-73.92487,Private room,80,3,172,6.37,3,169 +22252,122922752,Manhattan,Stuyvesant Town,40.73117,-73.97616,Private room,55,31,0,,1,0 +22253,3463177,Manhattan,East Village,40.73114,-73.98439,Entire home/apt,110,7,6,0.23,1,52 +22254,84979306,Queens,Long Island City,40.74443,-73.94298,Entire home/apt,225,1,6,0.22,1,358 +22255,123102489,Queens,Glendale,40.69775,-73.89474,Private room,69,2,2,0.07,1,0 +22256,107455767,Queens,Rosedale,40.65377,-73.73087,Private room,35,15,38,1.4,5,311 +22257,10744966,Manhattan,Upper East Side,40.77243,-73.95744,Private room,300,2,10,0.4,1,0 +22258,1883931,Manhattan,Murray Hill,40.74391,-73.97151,Entire home/apt,350,3,15,0.55,1,0 +22259,110872398,Brooklyn,Bedford-Stuyvesant,40.690490000000004,-73.95877,Private room,45,2,16,0.58,1,0 +22260,112901574,Brooklyn,Bedford-Stuyvesant,40.690540000000006,-73.9328,Entire home/apt,150,2,69,2.86,4,278 +22261,62685070,Brooklyn,Bushwick,40.699740000000006,-73.91935,Private room,10,5,0,,1,0 +22262,105074140,Queens,Flushing,40.75656,-73.80385,Private room,108,1,3,0.44,4,0 +22263,4204783,Staten Island,West Brighton,40.631679999999996,-74.12316,Private room,89,2,12,0.43,3,279 +22264,4112547,Queens,Astoria,40.7711,-73.92579,Private room,70,7,11,0.42,1,65 +22265,22541573,Manhattan,Upper West Side,40.78593,-73.97485,Entire home/apt,210,30,0,,87,328 +22266,2372486,Manhattan,Upper West Side,40.7902,-73.97568000000001,Entire home/apt,150,7,0,,1,0 +22267,123233613,Brooklyn,Williamsburg,40.70824,-73.94379,Private room,55,7,34,1.26,1,259 +22268,1036161,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95005,Private room,200,1,13,0.5,2,23 +22269,123048179,Brooklyn,Bensonhurst,40.619009999999996,-74.00045,Entire home/apt,120,3,45,1.65,1,295 +22270,123271654,Bronx,Port Morris,40.810340000000004,-73.93166,Shared room,165,2,20,0.85,1,15 +22271,36232508,Manhattan,Lower East Side,40.72036,-73.98458000000001,Private room,155,3,27,1.11,1,0 +22272,123307264,Manhattan,Chinatown,40.71456,-73.99077,Private room,95,14,3,0.11,1,28 +22273,23981711,Manhattan,West Village,40.735890000000005,-74.00304,Entire home/apt,139,3,29,1.05,1,0 +22274,24010376,Manhattan,Inwood,40.86517,-73.92318,Private room,65,1,1,0.05,1,0 +22275,119523037,Brooklyn,Brighton Beach,40.58092,-73.96139000000001,Private room,57,1,1,0.17,4,4 +22276,42093468,Bronx,Mott Haven,40.81234,-73.91688,Private room,42,5,54,2.05,4,314 +22277,42093468,Bronx,Mott Haven,40.81387,-73.91553,Private room,42,5,17,0.65,4,23 +22278,33200173,Manhattan,Upper West Side,40.78549,-73.97673,Private room,90,3,4,0.16,2,0 +22279,11478291,Queens,Rego Park,40.729620000000004,-73.8591,Entire home/apt,69,3,90,3.25,1,111 +22280,231704,Manhattan,Upper West Side,40.78937,-73.9789,Entire home/apt,376,30,1,0.07,3,357 +22281,123458466,Bronx,Edenwald,40.88534,-73.83434,Private room,75,1,15,0.55,1,348 +22282,11259589,Manhattan,Chinatown,40.71889,-73.99604000000001,Private room,99,3,3,0.11,1,0 +22283,123483050,Queens,Elmhurst,40.74756,-73.88193000000001,Private room,85,1,67,2.47,3,173 +22284,122026078,Manhattan,Harlem,40.820209999999996,-73.95441,Private room,69,2,7,0.26,3,71 +22285,63772058,Manhattan,Washington Heights,40.84345,-73.9422,Private room,100,2,0,,1,0 +22286,70619358,Manhattan,Upper West Side,40.80104,-73.96041,Private room,45,1,0,,1,0 +22287,84497333,Manhattan,SoHo,40.72237,-73.99817,Private room,10,5,2,0.07,1,0 +22288,12390595,Brooklyn,Bushwick,40.69365,-73.9109,Private room,60,7,1,0.04,1,0 +22289,23354644,Manhattan,East Village,40.73242,-73.9868,Private room,48,2,33,1.21,3,42 +22290,123518076,Bronx,Concourse,40.82097,-73.92739,Entire home/apt,145,2,76,3.04,1,139 +22291,95286194,Manhattan,Chelsea,40.7503,-74.00473000000001,Private room,57,1,53,1.92,1,33 +22292,123567556,Brooklyn,Crown Heights,40.67686,-73.93032,Private room,85,1,106,5.58,2,102 +22293,4296251,Manhattan,East Village,40.72286,-73.98025,Private room,100,2,0,,2,0 +22294,123580100,Queens,Flushing,40.765029999999996,-73.83039000000001,Private room,45,1,82,3.01,2,52 +22295,4296251,Manhattan,East Village,40.723079999999996,-73.97988000000001,Private room,100,2,0,,2,0 +22296,12388182,Brooklyn,Williamsburg,40.71891,-73.9657,Entire home/apt,250,2,2,0.07,1,0 +22297,98697139,Queens,Jackson Heights,40.752140000000004,-73.8584,Private room,40,4,22,0.86,2,95 +22298,231704,Manhattan,Upper West Side,40.78913,-73.98043,Entire home/apt,317,31,0,,3,82 +22299,74282739,Staten Island,Stapleton,40.62919,-74.08107,Entire home/apt,70,1,177,7.12,1,230 +22300,116408324,Queens,Bayside,40.76169,-73.76813,Private room,70,2,17,0.63,1,351 +22301,30656279,Manhattan,Hell's Kitchen,40.76634,-73.98721,Private room,61,30,3,0.11,4,160 +22302,123407715,Brooklyn,Sunset Park,40.66338,-73.99879,Entire home/apt,300,3,86,3.41,1,269 +22303,123690850,Brooklyn,Clinton Hill,40.6873,-73.96600000000001,Entire home/apt,92,10,4,0.17,1,0 +22304,10549792,Manhattan,Upper West Side,40.7807,-73.97869,Entire home/apt,200,4,2,0.08,1,0 +22305,5490071,Manhattan,East Harlem,40.78822,-73.94870999999999,Entire home/apt,150,3,102,3.78,3,222 +22306,109854433,Brooklyn,Bushwick,40.68815,-73.91032,Entire home/apt,120,2,76,2.78,2,270 +22307,6122006,Manhattan,Morningside Heights,40.81131,-73.9582,Private room,45,1,76,2.83,2,0 +22308,766182,Manhattan,West Village,40.73953,-74.00841,Entire home/apt,170,30,1,0.36,1,365 +22309,32806463,Manhattan,East Village,40.72886,-73.9883,Private room,150,1,0,,1,0 +22310,91261577,Bronx,Belmont,40.85311,-73.88763,Private room,29,4,4,0.15,1,0 +22311,886646,Manhattan,Nolita,40.722609999999996,-73.99348,Entire home/apt,250,2,5,0.2,1,0 +22312,106232698,Manhattan,Little Italy,40.717940000000006,-73.99955,Entire home/apt,195,4,30,1.1,1,0 +22313,73228035,Brooklyn,East Flatbush,40.662,-73.93775,Private room,15,1,2,0.07,2,0 +22314,82933489,Manhattan,West Village,40.73272,-74.00356,Entire home/apt,230,2,9,0.33,1,0 +22315,123818434,Manhattan,Harlem,40.81053,-73.94332,Entire home/apt,130,2,23,0.85,1,14 +22316,123646786,Queens,Flushing,40.75607,-73.83202,Private room,78,2,41,1.53,2,82 +22317,25036260,Brooklyn,Bushwick,40.68823,-73.90825,Private room,53,1,49,1.86,3,105 +22318,23390186,Manhattan,Financial District,40.70743,-74.005,Private room,100,1,11,0.41,1,0 +22319,96669597,Manhattan,Upper West Side,40.77858,-73.98706999999999,Entire home/apt,150,28,8,0.31,1,238 +22320,103995602,Brooklyn,Brownsville,40.65935,-73.90279,Entire home/apt,89,2,102,3.75,1,70 +22321,123894644,Manhattan,Financial District,40.70648,-74.01234000000001,Entire home/apt,105,12,4,0.16,1,0 +22322,63749946,Brooklyn,Crown Heights,40.67523,-73.92326,Entire home/apt,80,7,77,2.92,3,74 +22323,123920566,Queens,Flushing,40.752990000000004,-73.8307,Private room,57,1,50,1.85,1,38 +22324,40549648,Queens,Astoria,40.757290000000005,-73.91591,Private room,75,22,37,1.35,2,69 +22325,208565,Brooklyn,Greenpoint,40.733540000000005,-73.95728000000001,Entire home/apt,151,1,94,3.49,2,36 +22326,36457711,Brooklyn,Clinton Hill,40.69103,-73.96106,Entire home/apt,197,4,7,0.26,2,0 +22327,24594555,Queens,Maspeth,40.72736,-73.89659,Entire home/apt,100,2,87,3.19,1,245 +22328,123953691,Brooklyn,Crown Heights,40.67694,-73.95461999999999,Private room,88,2,55,2.07,1,282 +22329,22284124,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95891,Private room,60,4,2,0.08,1,0 +22330,47536613,Manhattan,Upper West Side,40.76876,-73.98359,Entire home/apt,375,3,76,2.89,1,301 +22331,96718265,Brooklyn,Bedford-Stuyvesant,40.69288,-73.93285,Private room,45,1,0,,1,7 +22332,4857042,Manhattan,Chelsea,40.74423,-74.00111,Entire home/apt,95,1,105,3.87,1,98 +22333,15185649,Brooklyn,Bedford-Stuyvesant,40.68295,-73.92536,Entire home/apt,82,2,134,4.93,2,238 +22334,123968750,Queens,Elmhurst,40.734809999999996,-73.88051,Private room,50,3,0,,1,0 +22335,101736132,Brooklyn,Bushwick,40.69045,-73.91507,Private room,40,2,12,0.44,2,281 +22336,6752799,Manhattan,East Harlem,40.7972,-73.94749,Private room,45,28,1,0.04,2,147 +22337,4435816,Brooklyn,Flatbush,40.63684,-73.95693,Private room,60,2,17,0.72,1,9 +22338,3660702,Manhattan,Chelsea,40.747009999999996,-73.9914,Private room,105,1,132,4.81,4,103 +22339,124082275,Brooklyn,Park Slope,40.67158,-73.97471999999999,Private room,159,1,73,2.69,1,166 +22340,124106675,Manhattan,Lower East Side,40.72054,-73.98470999999999,Entire home/apt,208,3,4,0.15,1,0 +22341,42287744,Manhattan,Financial District,40.70732,-74.01451,Private room,105,2,18,0.65,1,95 +22342,59156312,Queens,Woodhaven,40.68655,-73.86491,Private room,69,3,48,1.8,9,332 +22343,96560825,Queens,Astoria,40.76266,-73.91991999999999,Entire home/apt,250,2,0,,1,0 +22344,124142417,Brooklyn,Bushwick,40.68824,-73.91566999999999,Entire home/apt,100,2,111,4.12,2,10 +22345,100345999,Brooklyn,Crown Heights,40.67544,-73.95655,Entire home/apt,80,5,1,0.04,1,0 +22346,35292326,Brooklyn,Bushwick,40.69892,-73.9302,Private room,72,1,4,1.82,1,180 +22347,15651644,Manhattan,Chinatown,40.71866,-73.99633,Private room,120,3,1,0.04,1,0 +22348,42093468,Bronx,Mott Haven,40.81217,-73.91776999999999,Private room,41,5,21,0.78,4,334 +22349,51926018,Brooklyn,Williamsburg,40.71815,-73.95519,Entire home/apt,250,14,0,,1,83 +22350,124218492,Brooklyn,Crown Heights,40.669140000000006,-73.95333000000001,Private room,50,6,20,0.74,1,78 +22351,10621137,Manhattan,Chelsea,40.74686,-74.0043,Entire home/apt,134,3,1,0.04,1,0 +22352,52577563,Brooklyn,Sunset Park,40.664429999999996,-73.99348,Entire home/apt,150,5,2,0.08,3,179 +22353,2675644,Staten Island,Randall Manor,40.639520000000005,-74.0973,Entire home/apt,5000,1,0,,1,344 +22354,271799,Brooklyn,Bedford-Stuyvesant,40.69424,-73.9385,Entire home/apt,300,2,95,3.51,2,229 +22355,3167806,Manhattan,Harlem,40.81321,-73.94556,Entire home/apt,150,4,16,0.65,1,12 +22356,28642031,Manhattan,Harlem,40.806740000000005,-73.95616,Private room,60,5,1,0.04,1,0 +22357,138243,Brooklyn,Crown Heights,40.669940000000004,-73.9315,Private room,45,2,12,0.46,1,32 +22358,5235811,Manhattan,Upper West Side,40.77317,-73.98895,Private room,67,1,0,,1,0 +22359,27159049,Brooklyn,Gowanus,40.669259999999994,-73.991,Entire home/apt,142,1,8,0.29,1,0 +22360,9030453,Manhattan,Harlem,40.81064,-73.94405,Private room,67,2,28,1.04,2,132 +22361,20691482,Queens,Sunnyside,40.74238,-73.91783000000001,Private room,69,3,21,0.78,1,177 +22362,85316652,Queens,Sunnyside,40.74385,-73.91403000000001,Private room,95,2,36,1.37,1,0 +22363,50366453,Manhattan,Upper East Side,40.76246,-73.95985,Entire home/apt,195,1,3,0.11,1,0 +22364,117492425,Staten Island,St. George,40.64425,-74.08055999999999,Entire home/apt,72,4,97,3.71,6,152 +22365,117492425,Staten Island,St. George,40.64605,-74.07897,Entire home/apt,289,4,2,0.16,6,230 +22366,4191725,Brooklyn,Bedford-Stuyvesant,40.69502,-73.9478,Entire home/apt,80,21,1,0.05,1,66 +22367,23944472,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.96194,Entire home/apt,69,3,16,0.59,1,6 +22368,91184602,Queens,Richmond Hill,40.68821,-73.83411,Private room,95,3,26,1.38,1,160 +22369,7860852,Brooklyn,Williamsburg,40.71882,-73.95562,Private room,110,3,0,,2,0 +22370,17707106,Manhattan,Kips Bay,40.74289,-73.98134,Entire home/apt,175,2,22,0.81,1,0 +22371,79105834,Queens,Long Island City,40.75541,-73.9335,Private room,35,1,90,3.31,9,273 +22372,48712266,Brooklyn,Greenpoint,40.72528,-73.94428,Entire home/apt,175,5,72,2.73,2,198 +22373,113534805,Manhattan,Chelsea,40.749320000000004,-74.00333,Private room,2800,1,0,,1,89 +22374,69572951,Manhattan,Hell's Kitchen,40.76316,-73.9904,Private room,100,4,0,,1,0 +22375,512101,Brooklyn,Bushwick,40.69801,-73.93356999999999,Private room,88,3,11,0.81,1,0 +22376,30283594,Manhattan,Hell's Kitchen,40.76191,-73.99766,Entire home/apt,499,30,0,,121,185 +22377,43352661,Manhattan,Washington Heights,40.84497,-73.93934,Private room,80,1,129,4.7,3,365 +22378,1753130,Brooklyn,Greenpoint,40.7331,-73.95837,Private room,49,5,52,1.94,1,66 +22379,65974774,Manhattan,Upper East Side,40.77581,-73.956,Entire home/apt,510,7,0,,3,207 +22380,24467449,Brooklyn,Bedford-Stuyvesant,40.68761,-73.94953000000001,Private room,45,1,20,0.74,2,10 +22381,20600569,Manhattan,Roosevelt Island,40.76213,-73.94971,Private room,100,2,97,3.57,2,142 +22382,44924379,Queens,Jamaica,40.6987,-73.78455,Private room,50,1,38,1.41,3,359 +22383,35163646,Manhattan,Greenwich Village,40.72964,-73.99946,Entire home/apt,199,3,1,0.05,1,0 +22384,121093001,Queens,Ozone Park,40.675740000000005,-73.85601,Entire home/apt,81,3,96,3.59,1,233 +22385,52711374,Manhattan,Upper West Side,40.7822,-73.98207,Entire home/apt,90,2,12,0.44,1,0 +22386,4047395,Brooklyn,Clinton Hill,40.68535,-73.96491999999999,Private room,80,2,37,1.4,2,159 +22387,62680545,Manhattan,Upper West Side,40.79795,-73.96199,Entire home/apt,175,5,2,0.08,1,4 +22388,4004425,Manhattan,Washington Heights,40.843540000000004,-73.93874,Entire home/apt,50,6,0,,1,0 +22389,3788839,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92399,Private room,60,30,9,0.36,4,189 +22390,124486054,Bronx,Edenwald,40.88364,-73.83561,Private room,70,3,0,,1,365 +22391,124491152,Brooklyn,Williamsburg,40.721709999999995,-73.95872,Entire home/apt,175,2,134,5.12,1,208 +22392,55981584,Brooklyn,Bay Ridge,40.63592,-74.0219,Private room,30,30,6,0.22,2,0 +22393,124550001,Manhattan,Midtown,40.76576,-73.98016,Private room,350,1,1,0.05,1,0 +22394,124554019,Brooklyn,Crown Heights,40.67358,-73.93502,Private room,57,1,32,1.38,2,95 +22395,5735174,Brooklyn,Greenpoint,40.73542,-73.9562,Entire home/apt,120,20,17,0.65,1,59 +22396,124580765,Brooklyn,Prospect-Lefferts Gardens,40.65932,-73.94179,Entire home/apt,129,2,86,3.17,1,247 +22397,10472095,Brooklyn,Crown Heights,40.66935,-73.94708,Private room,60,3,0,,1,16 +22398,60786164,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96053,Entire home/apt,76,1,2,0.07,1,0 +22399,686339,Manhattan,Kips Bay,40.73819,-73.97389,Entire home/apt,150,62,0,,1,88 +22400,124593127,Manhattan,Washington Heights,40.85564,-73.93066,Private room,40,1,93,3.5,2,297 +22401,709334,Manhattan,Harlem,40.80353,-73.94707,Entire home/apt,250,2,14,0.55,2,296 +22402,124593127,Manhattan,Washington Heights,40.85516,-73.92863,Private room,55,1,96,3.61,2,128 +22403,17428203,Manhattan,Upper East Side,40.77241,-73.94800000000001,Entire home/apt,124,31,0,,2,0 +22404,16307239,Manhattan,Upper East Side,40.7709,-73.95508000000001,Entire home/apt,130,7,5,0.21,1,14 +22405,121274,Brooklyn,Cobble Hill,40.68673,-73.99653,Entire home/apt,700,4,4,0.21,1,15 +22406,3191545,Manhattan,Murray Hill,40.74563,-73.9759,Entire home/apt,219,30,1,0.07,23,362 +22407,120250860,Manhattan,SoHo,40.72207,-74.00232,Entire home/apt,2250,2,20,0.82,2,341 +22408,70774951,Queens,East Elmhurst,40.76745,-73.87915,Entire home/apt,125,1,138,6.92,3,111 +22409,3632170,Brooklyn,Williamsburg,40.7124,-73.96263,Entire home/apt,200,5,0,,1,0 +22410,22541573,Manhattan,Upper East Side,40.7631,-73.96281,Entire home/apt,179,30,0,,87,365 +22411,124702572,Brooklyn,Bedford-Stuyvesant,40.6817,-73.92068,Entire home/apt,200,2,12,0.46,1,9 +22412,5479861,Brooklyn,Williamsburg,40.71747,-73.95459,Entire home/apt,160,1,18,0.7,1,2 +22413,22541573,Manhattan,Financial District,40.704809999999995,-74.00805,Entire home/apt,270,30,0,,87,365 +22414,7370191,Brooklyn,Bushwick,40.69037,-73.9184,Private room,51,2,4,0.15,1,0 +22415,13416818,Brooklyn,Bedford-Stuyvesant,40.67992,-73.95695,Private room,65,2,3,0.11,3,0 +22416,124740003,Queens,Ditmars Steinway,40.777640000000005,-73.91128,Entire home/apt,100,3,93,3.49,1,197 +22417,124741583,Queens,Astoria,40.766009999999994,-73.91841,Private room,49,5,2,0.08,1,179 +22418,124743046,Brooklyn,Bedford-Stuyvesant,40.69171,-73.9575,Entire home/apt,195,4,80,3.0,3,218 +22419,51501835,Manhattan,Hell's Kitchen,40.764759999999995,-73.99453000000001,Entire home/apt,115,30,3,0.12,31,326 +22420,5168429,Brooklyn,Bushwick,40.69511,-73.90715,Private room,65,4,17,0.66,1,11 +22421,9193506,Brooklyn,Fort Greene,40.69664,-73.97375,Private room,65,2,3,0.11,1,0 +22422,9630989,Brooklyn,Bushwick,40.70091,-73.92215,Private room,60,2,113,4.15,2,3 +22423,16970101,Brooklyn,Williamsburg,40.72128,-73.95546999999999,Entire home/apt,175,2,8,0.43,1,0 +22424,122026078,Manhattan,Harlem,40.81928,-73.95398,Private room,80,2,9,0.36,3,72 +22425,3388950,Brooklyn,Bedford-Stuyvesant,40.69624,-73.93414,Private room,72,4,59,2.22,6,120 +22426,24594940,Manhattan,East Village,40.72177,-73.98286,Private room,100,5,8,0.3,1,128 +22427,6473469,Manhattan,Upper West Side,40.79487,-73.96555,Entire home/apt,100,3,3,0.11,1,0 +22428,124860677,Queens,Flushing,40.758109999999995,-73.81458,Private room,47,2,130,4.79,6,342 +22429,9909635,Brooklyn,Bedford-Stuyvesant,40.6919,-73.94487,Private room,125,1,60,2.21,3,90 +22430,1460313,Queens,Ridgewood,40.69661,-73.90021999999999,Private room,56,5,71,2.81,2,100 +22431,124886133,Manhattan,Upper East Side,40.76982,-73.95258000000001,Entire home/apt,105,30,2,0.08,1,120 +22432,71540662,Manhattan,Upper West Side,40.79974,-73.96432,Private room,80,6,3,0.11,1,0 +22433,54058956,Brooklyn,Flatbush,40.650259999999996,-73.96308,Private room,40,2,0,,1,0 +22434,124898889,Manhattan,Chelsea,40.74432,-73.99985,Entire home/apt,180,5,7,0.26,1,0 +22435,3084731,Manhattan,East Harlem,40.78949,-73.94461,Private room,79,5,47,1.77,1,131 +22436,9909635,Brooklyn,Bedford-Stuyvesant,40.692609999999995,-73.94393000000001,Entire home/apt,150,2,33,1.23,3,177 +22437,124999506,Manhattan,Upper West Side,40.777770000000004,-73.97939000000001,Entire home/apt,250,1,3,0.11,1,0 +22438,1746238,Brooklyn,Williamsburg,40.71398,-73.94702,Private room,169,5,60,2.22,1,50 +22439,22511613,Brooklyn,Carroll Gardens,40.68572,-73.99286,Entire home/apt,199,1,6,0.23,2,0 +22440,8740662,Brooklyn,Clinton Hill,40.693690000000004,-73.96826,Entire home/apt,125,6,0,,1,0 +22441,17643263,Manhattan,Harlem,40.83126,-73.94832,Private room,120,2,14,0.52,1,0 +22442,3988482,Manhattan,Harlem,40.82168,-73.95161,Entire home/apt,199,3,45,1.82,1,0 +22443,5736671,Brooklyn,Boerum Hill,40.68786,-73.98810999999999,Entire home/apt,160,5,10,0.39,1,8 +22444,32166735,Brooklyn,Prospect Heights,40.67387,-73.96706999999999,Entire home/apt,100,5,14,0.53,1,0 +22445,107022433,Brooklyn,Bedford-Stuyvesant,40.684020000000004,-73.93081,Entire home/apt,550,2,32,1.5,3,248 +22446,69860334,Brooklyn,Bedford-Stuyvesant,40.69307,-73.95254,Private room,40,3,1,0.04,1,0 +22447,124142417,Brooklyn,Bushwick,40.6877,-73.9159,Entire home/apt,95,2,113,4.15,2,6 +22448,54098346,Manhattan,Upper East Side,40.78071,-73.95149,Private room,150,1,3,0.11,1,0 +22449,3639678,Brooklyn,Boerum Hill,40.68727,-73.98574,Entire home/apt,189,5,58,2.17,1,24 +22450,2960920,Brooklyn,Bedford-Stuyvesant,40.68293,-73.95458,Private room,71,1,2,0.07,1,0 +22451,109855383,Brooklyn,Bedford-Stuyvesant,40.6942,-73.94963,Private room,40,3,6,0.22,1,0 +22452,22661810,Brooklyn,Flatbush,40.63256,-73.94757,Private room,55,4,8,0.35,2,364 +22453,17520527,Queens,Sunnyside,40.74473,-73.91875999999999,Private room,150,3,1,0.04,1,0 +22454,3191545,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,229,30,0,,23,149 +22455,51501835,Manhattan,Hell's Kitchen,40.7647,-73.99414,Entire home/apt,120,30,0,,31,353 +22456,125204273,Brooklyn,Williamsburg,40.708690000000004,-73.94684000000001,Private room,100,3,0,,1,0 +22457,10695335,Brooklyn,Williamsburg,40.70327,-73.93425,Entire home/apt,160,2,18,0.67,1,358 +22458,10121204,Manhattan,East Village,40.72269,-73.98428,Private room,50,5,0,,1,0 +22459,6950091,Brooklyn,Bedford-Stuyvesant,40.68544,-73.92456999999999,Private room,60,1,1,0.04,1,0 +22460,3191545,Manhattan,Hell's Kitchen,40.75735,-73.99189,Entire home/apt,229,30,2,0.08,23,362 +22461,23187808,Queens,Ditmars Steinway,40.77412,-73.9061,Entire home/apt,99,1,81,2.98,1,202 +22462,106837455,Manhattan,Upper West Side,40.7847,-73.98196,Entire home/apt,136,29,1,0.05,8,0 +22463,4240419,Manhattan,Upper East Side,40.77681,-73.95123000000001,Private room,120,2,4,0.15,1,0 +22464,98040412,Brooklyn,Park Slope,40.67259,-73.98451999999999,Entire home/apt,300,1,0,,1,0 +22465,106837455,Manhattan,Upper West Side,40.78463,-73.98303,Entire home/apt,119,30,1,0.04,8,310 +22466,75810157,Manhattan,Morningside Heights,40.804159999999996,-73.96538000000001,Private room,99,4,3,0.11,1,0 +22467,38041322,Brooklyn,Bushwick,40.70025,-73.92175,Private room,60,3,2,0.07,1,0 +22468,274333,Manhattan,Harlem,40.800259999999994,-73.9546,Shared room,31,1,65,2.44,3,89 +22469,26432133,Queens,East Elmhurst,40.7638,-73.87238,Private room,48,1,436,16.03,5,337 +22470,3660702,Manhattan,Chelsea,40.74754,-73.99036,Private room,69,1,63,2.34,4,29 +22471,9147284,Brooklyn,Bushwick,40.69808,-73.92054,Private room,60,1,4,0.3,1,341 +22472,125320407,Queens,Briarwood,40.70678,-73.80613000000001,Entire home/apt,1000,2,5,0.27,5,365 +22473,2834168,Manhattan,Tribeca,40.71893,-74.0033,Entire home/apt,350,6,20,0.74,1,25 +22474,40929418,Queens,Glendale,40.70459,-73.89574,Entire home/apt,100,1,0,,1,0 +22475,117840007,Queens,Long Island City,40.7455,-73.95607,Entire home/apt,150,3,5,0.19,1,0 +22476,116723158,Brooklyn,East Flatbush,40.653209999999994,-73.95199000000001,Entire home/apt,140,1,111,4.53,1,259 +22477,125398274,Manhattan,Lower East Side,40.71869,-73.9931,Entire home/apt,200,3,7,0.26,2,0 +22478,187912,Brooklyn,Williamsburg,40.71638,-73.96611999999999,Entire home/apt,235,1,35,1.29,2,9 +22479,51501835,Manhattan,Hell's Kitchen,40.76318,-73.99462,Entire home/apt,200,30,1,0.04,31,350 +22480,26996515,Brooklyn,Bedford-Stuyvesant,40.69016,-73.9274,Private room,40,2,4,0.16,2,0 +22481,7598580,Brooklyn,Bedford-Stuyvesant,40.679429999999996,-73.94435,Entire home/apt,90,6,1,0.11,1,35 +22482,501891,Manhattan,Gramercy,40.7368,-73.98045,Entire home/apt,379,1,0,,1,0 +22483,3749703,Manhattan,Hell's Kitchen,40.76126,-73.99685,Entire home/apt,300,2,0,,1,0 +22484,9563971,Brooklyn,Williamsburg,40.70858,-73.95857,Entire home/apt,250,2,5,0.18,1,0 +22485,27403581,Manhattan,Harlem,40.82665,-73.94669,Shared room,49,2,52,1.95,1,194 +22486,62639334,Brooklyn,Crown Heights,40.67763,-73.94755,Private room,60,2,7,0.34,1,0 +22487,611109,Brooklyn,Williamsburg,40.70743,-73.96625,Entire home/apt,224,1,26,1.01,2,192 +22488,28929752,Brooklyn,Park Slope,40.676320000000004,-73.97328,Entire home/apt,115,3,4,0.23,1,0 +22489,17527788,Brooklyn,Bushwick,40.69745,-73.93038,Private room,49,1,20,0.74,2,89 +22490,5962328,Queens,Flushing,40.75933,-73.82313,Entire home/apt,115,30,3,0.12,15,7 +22491,28483768,Staten Island,Dongan Hills,40.57825,-74.08879,Entire home/apt,95,4,45,1.66,1,134 +22492,71138930,Brooklyn,Williamsburg,40.70345,-73.94336,Private room,98,2,22,0.82,1,0 +22493,125542850,Manhattan,Upper East Side,40.76976,-73.95208000000001,Private room,110,3,11,0.41,1,203 +22494,125558761,Manhattan,Washington Heights,40.85354,-73.93095,Private room,50,2,26,0.96,1,24 +22495,125567809,Brooklyn,Park Slope,40.672129999999996,-73.98141,Private room,75,1,0,,1,0 +22496,125565839,Manhattan,Upper West Side,40.79345,-73.97191,Entire home/apt,50,5,12,0.44,1,0 +22497,54289696,Brooklyn,Crown Heights,40.67038,-73.93214,Private room,27,2,81,2.99,1,84 +22498,9945748,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94156,Entire home/apt,130,4,13,0.48,1,0 +22499,7433941,Brooklyn,Crown Heights,40.6778,-73.96321,Entire home/apt,85,3,5,0.64,1,0 +22500,5378851,Brooklyn,Crown Heights,40.66429,-73.9581,Private room,115,7,2,0.09,1,95 +22501,3859890,Brooklyn,Boerum Hill,40.6891,-73.9874,Private room,53,1,10,0.38,1,0 +22502,125557444,Queens,Jamaica,40.67057,-73.77956,Entire home/apt,80,1,7,0.27,2,304 +22503,10127519,Manhattan,Washington Heights,40.84955,-73.94167,Private room,35,1,6,0.22,1,0 +22504,7380428,Manhattan,Harlem,40.81447,-73.94721,Entire home/apt,165,7,35,1.39,3,269 +22505,16091224,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.96086,Private room,60,5,15,0.64,2,41 +22506,48205496,Queens,Long Island City,40.74834,-73.94181,Entire home/apt,379,4,91,3.44,2,152 +22507,2856748,Manhattan,East Village,40.73218,-73.98815,Entire home/apt,285,30,0,,49,364 +22508,649374,Brooklyn,East Flatbush,40.6536,-73.92643000000001,Private room,60,2,16,0.71,1,0 +22509,1448674,Manhattan,West Village,40.7355,-73.99964,Entire home/apt,329,4,33,1.25,1,16 +22510,22541573,Manhattan,East Village,40.73373,-73.98962,Entire home/apt,225,30,0,,87,347 +22511,125687221,Bronx,Longwood,40.8134,-73.89893000000001,Private room,75,3,6,0.25,1,87 +22512,43200701,Manhattan,Upper East Side,40.76889,-73.9548,Private room,100,1,68,2.62,1,5 +22513,20368225,Manhattan,Harlem,40.80803,-73.94646999999999,Entire home/apt,200,2,68,2.9,3,43 +22514,20368225,Manhattan,Harlem,40.80965,-73.94696,Private room,115,1,120,4.77,3,34 +22515,2208374,Brooklyn,Bushwick,40.7016,-73.92103,Private room,85,3,8,0.3,2,3 +22516,35525179,Manhattan,Upper West Side,40.797940000000004,-73.97188,Private room,40,1,14,0.52,1,0 +22517,76114242,Manhattan,Kips Bay,40.73916,-73.9822,Entire home/apt,235,1,0,,1,0 +22518,125717450,Brooklyn,Boerum Hill,40.68416,-73.97912,Private room,64,1,3,0.19,1,3 +22519,57571805,Manhattan,Midtown,40.7523,-73.97299,Entire home/apt,134,4,2,0.08,3,0 +22520,10285950,Brooklyn,Flatbush,40.645379999999996,-73.954,Entire home/apt,86,14,1,0.04,3,349 +22521,6726364,Manhattan,Upper West Side,40.79967,-73.96251,Entire home/apt,330,3,3,0.11,2,0 +22522,125746559,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.94475,Entire home/apt,170,3,19,0.81,1,0 +22523,41874064,Manhattan,Little Italy,40.71836,-73.99776999999999,Private room,90,1,106,4.29,2,9 +22524,10366837,Queens,Flushing,40.757670000000005,-73.83094,Entire home/apt,65,2,84,3.19,3,119 +22525,27966322,Queens,Sunnyside,40.73677,-73.9168,Private room,60,2,2,0.08,1,40 +22526,125821659,Queens,Jackson Heights,40.75147,-73.89071,Private room,75,1,6,0.32,1,341 +22527,3591955,Brooklyn,Williamsburg,40.71004,-73.95994,Entire home/apt,265,3,26,1.01,1,70 +22528,70601471,Manhattan,Upper West Side,40.78906,-73.97731999999999,Entire home/apt,148,1,131,4.9,1,277 +22529,17247848,Queens,Ditmars Steinway,40.77751,-73.90902,Private room,95,1,31,1.2,1,90 +22530,125833008,Manhattan,Harlem,40.830529999999996,-73.95048,Private room,94,3,2,0.08,1,0 +22531,120804342,Brooklyn,Bedford-Stuyvesant,40.6946,-73.94429000000001,Entire home/apt,109,2,112,4.22,2,258 +22532,15069930,Manhattan,Upper East Side,40.78164,-73.95873,Entire home/apt,490,14,1,0.04,1,180 +22533,121400000,Manhattan,SoHo,40.72528,-74.00317,Entire home/apt,200,3,16,0.6,1,15 +22534,44785461,Brooklyn,Williamsburg,40.70655,-73.95405,Private room,69,15,0,,1,0 +22535,3656008,Queens,Flushing,40.7447,-73.82497,Entire home/apt,99,3,95,3.52,1,63 +22536,29950960,Brooklyn,Clinton Hill,40.68697,-73.9615,Private room,75,4,14,0.54,1,10 +22537,57641560,Brooklyn,Williamsburg,40.7164,-73.95437,Entire home/apt,146,4,58,2.5,2,17 +22538,3600065,Manhattan,Murray Hill,40.74612,-73.97684,Private room,77,2,3,0.12,1,0 +22539,87723508,Queens,Glendale,40.69845,-73.8958,Private room,35,30,7,0.27,2,294 +22540,21940966,Manhattan,Harlem,40.80567,-73.95676999999999,Entire home/apt,140,2,82,3.17,2,5 +22541,20899650,Manhattan,East Harlem,40.7883,-73.95017,Private room,100,1,22,0.81,1,0 +22542,123580100,Queens,Flushing,40.76417,-73.83008000000001,Private room,45,1,94,3.48,2,62 +22543,125914985,Brooklyn,East Flatbush,40.63381,-73.94395,Entire home/apt,185,6,60,3.22,2,112 +22544,6358504,Bronx,Mount Hope,40.84499,-73.91157,Entire home/apt,60,5,3,0.13,1,0 +22545,62466309,Queens,East Elmhurst,40.76518,-73.89182,Private room,50,2,1,0.14,1,34 +22546,23269913,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92345,Private room,50,2,5,0.19,1,0 +22547,28260191,Brooklyn,Bedford-Stuyvesant,40.685829999999996,-73.95296,Private room,47,35,1,0.09,1,75 +22548,22307295,Manhattan,Midtown,40.76392,-73.98187,Entire home/apt,186,1,0,,1,0 +22549,125589679,Manhattan,Washington Heights,40.836940000000006,-73.94211999999999,Entire home/apt,100,3,71,2.66,1,363 +22550,126015118,Manhattan,East Village,40.72448,-73.99247,Entire home/apt,400,3,3,0.36,1,14 +22551,64425305,Bronx,Baychester,40.87372,-73.84065,Private room,75,1,3,0.11,1,129 +22552,27442469,Brooklyn,Crown Heights,40.67694,-73.94631,Private room,145,3,1,0.04,1,0 +22553,72603148,Staten Island,Stapleton,40.634570000000004,-74.07817,Private room,65,1,56,2.09,3,351 +22554,114736959,Brooklyn,Coney Island,40.57609,-73.98605,Entire home/apt,110,3,52,1.95,6,150 +22555,122495279,Manhattan,Harlem,40.80405,-73.94513,Entire home/apt,85,7,2,0.08,1,0 +22556,106932244,Manhattan,Washington Heights,40.84062,-73.94125,Entire home/apt,51,1,4,0.15,1,0 +22557,126101478,Manhattan,East Village,40.72412,-73.97910999999999,Entire home/apt,140,5,1,0.04,1,0 +22558,126110994,Manhattan,Harlem,40.8043,-73.95106,Entire home/apt,85,1,25,0.93,1,0 +22559,22769654,Brooklyn,Clinton Hill,40.69368,-73.9671,Private room,165,2,109,4.04,1,246 +22560,2331158,Manhattan,Harlem,40.809470000000005,-73.94066,Private room,30,5,3,0.12,1,0 +22561,60022283,Manhattan,Morningside Heights,40.80507,-73.96414,Entire home/apt,116,3,16,0.61,1,0 +22562,17049693,Brooklyn,Greenpoint,40.7288,-73.95408,Entire home/apt,70,13,8,0.33,1,0 +22563,19377326,Brooklyn,Crown Heights,40.67158,-73.96007,Entire home/apt,46,30,25,1.02,1,0 +22564,23168773,Manhattan,Inwood,40.865120000000005,-73.92172,Entire home/apt,70,20,17,0.72,1,0 +22565,125654433,Manhattan,Hell's Kitchen,40.76658,-73.99335,Entire home/apt,250,4,0,,1,0 +22566,3788839,Brooklyn,Bedford-Stuyvesant,40.68318,-73.92529,Private room,70,28,14,0.52,4,265 +22567,100288,Manhattan,East Village,40.72842,-73.98679,Private room,140,4,11,0.42,1,0 +22568,101262003,Manhattan,Upper West Side,40.785709999999995,-73.97649,Private room,150,1,0,,2,0 +22569,64351850,Manhattan,Kips Bay,40.73957,-73.98233,Entire home/apt,168,7,10,0.37,1,0 +22570,43089949,Brooklyn,Midwood,40.62,-73.95489,Entire home/apt,85,5,15,1.01,1,105 +22571,126176275,Brooklyn,East Flatbush,40.63602,-73.93105,Private room,50,30,32,1.29,4,64 +22572,122265852,Manhattan,Hell's Kitchen,40.764590000000005,-73.99035,Private room,99,1,159,5.88,2,178 +22573,125585107,Brooklyn,Bedford-Stuyvesant,40.686609999999995,-73.91707,Private room,65,2,2,0.08,1,0 +22574,57192926,Manhattan,Financial District,40.70689,-74.00671,Entire home/apt,145,3,87,3.28,1,140 +22575,126247863,Queens,Richmond Hill,40.69104,-73.82204,Private room,50,1,102,4.02,2,354 +22576,63417081,Manhattan,Harlem,40.823409999999996,-73.94444,Private room,39,30,3,0.14,8,282 +22577,18184562,Brooklyn,Williamsburg,40.716840000000005,-73.94256,Private room,200,4,2,0.07,1,0 +22578,99608108,Brooklyn,Bushwick,40.704640000000005,-73.91556,Private room,69,2,23,0.89,3,145 +22579,4393578,Manhattan,Chelsea,40.7402,-73.999,Entire home/apt,300,30,51,2.55,2,126 +22580,99608108,Brooklyn,Bushwick,40.705490000000005,-73.91526999999999,Private room,69,2,34,1.33,3,319 +22581,3250450,Queens,Woodside,40.75527,-73.90835,Private room,40,31,2,0.16,18,362 +22582,3955533,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95861,Entire home/apt,160,5,11,0.46,1,0 +22583,126292511,Manhattan,Midtown,40.76013,-73.96566,Shared room,99,3,6,0.24,1,0 +22584,99608108,Brooklyn,Bushwick,40.704570000000004,-73.91603,Private room,29,2,40,1.49,3,319 +22585,13058935,Brooklyn,Greenpoint,40.73434,-73.94185999999999,Private room,55,5,0,,1,0 +22586,126311719,Manhattan,SoHo,40.7239,-73.99678,Entire home/apt,850,30,7,0.26,1,365 +22587,106130636,Brooklyn,Brooklyn Heights,40.696020000000004,-73.99253,Private room,75,3,1,0.04,1,0 +22588,40883799,Brooklyn,Bushwick,40.70596,-73.92182,Private room,60,1,83,3.15,3,175 +22589,1495058,Brooklyn,Williamsburg,40.72112,-73.96034,Entire home/apt,249,60,2,0.08,1,0 +22590,20175399,Brooklyn,Bushwick,40.70765,-73.92159000000001,Private room,69,2,16,0.61,1,0 +22591,125438374,Manhattan,Financial District,40.70438,-74.00894,Private room,100,1,0,,1,0 +22592,9909635,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9449,Private room,75,1,14,0.52,3,89 +22593,21380187,Manhattan,Hell's Kitchen,40.76692,-73.98548000000001,Private room,179,2,34,1.31,1,84 +22594,5949541,Staten Island,Grant City,40.58023,-74.10725,Entire home/apt,80,3,68,2.55,1,50 +22595,87766324,Brooklyn,Bedford-Stuyvesant,40.68707,-73.9349,Entire home/apt,196,2,88,3.32,2,9 +22596,39442448,Manhattan,Washington Heights,40.84946,-73.93126,Private room,43,5,1,0.04,1,0 +22597,44453334,Manhattan,Hell's Kitchen,40.75383,-73.99733,Shared room,145,4,0,,1,0 +22598,126420866,Manhattan,Inwood,40.86396,-73.9267,Private room,50,5,2,0.08,1,0 +22599,122265852,Manhattan,Hell's Kitchen,40.766,-73.98945,Private room,99,1,134,4.96,2,176 +22600,28462809,Manhattan,Harlem,40.82205,-73.95335,Private room,80,2,18,0.69,1,55 +22601,13816539,Manhattan,East Village,40.729820000000004,-73.98076,Entire home/apt,118,2,4,0.92,1,0 +22602,77501050,Queens,Ridgewood,40.70787,-73.90961,Private room,55,1,21,0.79,1,0 +22603,126444590,Brooklyn,Clinton Hill,40.68312,-73.9592,Entire home/apt,200,7,9,0.36,1,269 +22604,18167404,Manhattan,East Village,40.7242,-73.97776999999999,Private room,150,1,0,,1,0 +22605,126451493,Brooklyn,Canarsie,40.63136,-73.90921,Entire home/apt,125,1,26,1.07,1,360 +22606,57531995,Manhattan,Upper East Side,40.77138,-73.94973,Entire home/apt,145,1,15,0.62,1,0 +22607,126168966,Manhattan,Hell's Kitchen,40.766059999999996,-73.99077,Private room,99,1,155,5.74,3,179 +22608,1918417,Brooklyn,Williamsburg,40.719190000000005,-73.95789,Private room,80,2,1,0.04,1,0 +22609,8008110,Manhattan,Chelsea,40.74672,-74.00187,Entire home/apt,195,6,33,1.36,1,1 +22610,68579384,Brooklyn,Bedford-Stuyvesant,40.68435,-73.9274,Private room,42,14,4,0.16,2,0 +22611,32304780,Manhattan,Washington Heights,40.84098,-73.937,Private room,53,30,11,0.42,3,354 +22612,17393160,Brooklyn,Cobble Hill,40.688179999999996,-73.99483000000001,Entire home/apt,125,4,3,0.11,1,0 +22613,126168966,Manhattan,Hell's Kitchen,40.764309999999995,-73.9891,Private room,99,1,147,5.45,3,174 +22614,3140916,Manhattan,Chelsea,40.749109999999995,-74.00125,Entire home/apt,210,28,4,0.15,1,95 +22615,9777215,Manhattan,Harlem,40.81358,-73.94296,Entire home/apt,177,3,71,2.67,3,199 +22616,33608519,Manhattan,Morningside Heights,40.8058,-73.9652,Entire home/apt,145,1,0,,1,0 +22617,18692297,Manhattan,Marble Hill,40.87492,-73.91164,Private room,44,5,18,0.69,1,349 +22618,2308459,Manhattan,East Village,40.727340000000005,-73.98338000000001,Private room,85,3,5,0.24,1,9 +22619,33943711,Brooklyn,Clinton Hill,40.68775,-73.95997,Entire home/apt,150,4,8,0.3,1,0 +22620,120767920,Queens,Flushing,40.75884,-73.81477,Private room,70,3,88,3.28,10,358 +22621,13540183,Brooklyn,East Flatbush,40.636759999999995,-73.95033000000001,Private room,150,2,0,,1,0 +22622,126592760,Manhattan,Harlem,40.80514,-73.95115,Entire home/apt,125,2,98,3.67,1,247 +22623,95994558,Manhattan,Midtown,40.75242,-73.97112,Private room,200,3,0,,1,0 +22624,72603148,Staten Island,Stapleton,40.634640000000005,-74.07842,Private room,55,1,13,0.48,3,362 +22625,33646389,Brooklyn,Greenpoint,40.730340000000005,-73.9527,Private room,69,10,6,0.23,2,156 +22626,114548258,Manhattan,SoHo,40.72615,-74.00097,Entire home/apt,215,1,83,3.19,2,214 +22627,67986867,Brooklyn,Bushwick,40.69449,-73.92629000000001,Entire home/apt,235,3,4,0.18,1,0 +22628,26634538,Brooklyn,Borough Park,40.64275,-74.00183,Private room,42,2,7,0.26,1,0 +22629,126632094,Brooklyn,Bedford-Stuyvesant,40.69531,-73.93276,Private room,180,2,31,1.16,2,131 +22630,55778523,Manhattan,Morningside Heights,40.804559999999995,-73.96521,Private room,125,1,4,0.15,1,0 +22631,126643339,Brooklyn,Clinton Hill,40.68854,-73.96848,Entire home/apt,160,4,7,0.26,1,0 +22632,3341119,Manhattan,Harlem,40.82443,-73.94154,Private room,100,2,43,1.65,1,120 +22633,63417081,Manhattan,Harlem,40.823479999999996,-73.94581,Private room,39,30,5,0.24,8,202 +22634,126663154,Brooklyn,Canarsie,40.64519,-73.89054,Private room,71,2,2,0.11,1,364 +22635,37901086,Manhattan,Upper East Side,40.76482,-73.96061,Entire home/apt,1475,1,1,1.0,1,362 +22636,4111729,Manhattan,Upper East Side,40.78093,-73.95499000000001,Private room,100,5,71,2.67,1,66 +22637,63238467,Manhattan,Hell's Kitchen,40.764759999999995,-73.98456999999999,Entire home/apt,180,4,79,3.03,1,211 +22638,1507779,Brooklyn,South Slope,40.66405,-73.98512,Private room,79,14,9,0.34,2,101 +22639,22591747,Brooklyn,Bedford-Stuyvesant,40.67922,-73.94937,Private room,60,4,39,1.46,1,338 +22640,64964534,Manhattan,Murray Hill,40.747690000000006,-73.9784,Entire home/apt,160,1,141,5.63,1,90 +22641,94648262,Manhattan,Kips Bay,40.744040000000005,-73.97985,Private room,110,3,59,2.92,1,51 +22642,72377141,Manhattan,Upper West Side,40.79871,-73.96800999999999,Private room,193,6,3,0.13,3,0 +22643,5641114,Queens,Ridgewood,40.70442,-73.89602,Private room,50,2,29,1.11,1,0 +22644,17449165,Brooklyn,Carroll Gardens,40.6838,-73.998,Entire home/apt,250,2,7,0.27,1,0 +22645,20017962,Queens,Long Island City,40.743990000000004,-73.95472,Private room,72,3,11,0.42,1,341 +22646,42928837,Brooklyn,Williamsburg,40.70733,-73.92996,Private room,50,4,6,0.23,1,0 +22647,2141311,Brooklyn,Williamsburg,40.71937,-73.94556,Private room,35,2,0,,2,0 +22648,5140287,Brooklyn,Park Slope,40.675740000000005,-73.98028000000001,Private room,90,2,8,0.32,1,0 +22649,125545452,Manhattan,Hell's Kitchen,40.76597,-73.98379,Entire home/apt,325,5,84,3.15,1,69 +22650,27670418,Queens,Ridgewood,40.700359999999996,-73.90238000000001,Entire home/apt,79,9,11,0.48,1,3 +22651,106068562,Manhattan,Chinatown,40.71602,-73.99293,Private room,180,1,1,0.04,1,0 +22652,7503643,Brooklyn,Greenpoint,40.72749,-73.9406,Entire home/apt,129,30,0,,52,5 +22653,22089161,Brooklyn,Williamsburg,40.718709999999994,-73.94499,Entire home/apt,125,1,0,,1,0 +22654,327033,Brooklyn,Bushwick,40.69408,-73.92307,Entire home/apt,160,3,7,0.26,2,23 +22655,120767920,Queens,Flushing,40.756370000000004,-73.81576,Private room,100,2,63,2.37,10,335 +22656,1390999,Brooklyn,Kensington,40.64632,-73.98343,Entire home/apt,110,40,0,,1,118 +22657,3859814,Manhattan,Lower East Side,40.72166,-73.98893000000001,Entire home/apt,278,5,53,2.01,1,30 +22658,15303279,Manhattan,East Harlem,40.788579999999996,-73.94946999999999,Private room,100,1,1,0.04,1,0 +22659,25221153,Manhattan,West Village,40.73376,-74.00095,Entire home/apt,350,3,0,,1,0 +22660,81671685,Manhattan,Harlem,40.81906,-73.95654,Entire home/apt,200,1,4,0.15,1,365 +22661,33723491,Brooklyn,Flatbush,40.65274,-73.95848000000001,Private room,39,2,7,0.27,1,0 +22662,66064924,Brooklyn,East New York,40.65372,-73.8828,Private room,99,2,50,1.92,1,180 +22663,4213096,Manhattan,Harlem,40.80355,-73.94646999999999,Entire home/apt,110,30,3,0.12,1,249 +22664,126922318,Manhattan,Upper West Side,40.78975,-73.97154,Private room,250,3,78,2.93,1,246 +22665,33870377,Brooklyn,Bushwick,40.694320000000005,-73.92035,Private room,199,4,2,0.07,1,179 +22666,36678842,Brooklyn,Crown Heights,40.66939,-73.95832,Entire home/apt,150,3,2,0.08,1,0 +22667,126973731,Manhattan,Harlem,40.82439,-73.94014,Private room,55,1,4,0.15,1,0 +22668,26091462,Brooklyn,Bedford-Stuyvesant,40.693740000000005,-73.94764,Private room,60,1,3,0.11,2,0 +22669,126984603,Manhattan,Hell's Kitchen,40.76534,-73.9894,Private room,65,5,31,1.2,1,54 +22670,40972641,Queens,Fresh Meadows,40.74295,-73.78962,Private room,45,1,8,0.3,2,0 +22671,12144814,Manhattan,East Village,40.729,-73.98195,Entire home/apt,150,30,3,0.13,1,0 +22672,832695,Queens,Astoria,40.7648,-73.92081,Private room,50,1,6,0.23,1,0 +22673,16718650,Brooklyn,Williamsburg,40.71099,-73.95825,Private room,250,1,0,,1,0 +22674,5143286,Manhattan,Morningside Heights,40.80897,-73.95651,Entire home/apt,120,14,5,0.21,1,79 +22675,5454042,Brooklyn,Bedford-Stuyvesant,40.68874,-73.95684,Private room,54,2,14,0.52,1,0 +22676,3404698,Manhattan,Upper West Side,40.78693,-73.97558000000001,Entire home/apt,150,30,1,0.04,1,188 +22677,8541180,Brooklyn,Williamsburg,40.70771,-73.95324000000001,Private room,100,1,60,2.25,1,78 +22678,44852596,Manhattan,Financial District,40.704679999999996,-74.00721999999999,Entire home/apt,130,3,19,0.72,1,244 +22679,127080012,Manhattan,Nolita,40.72477,-73.99534,Private room,95,4,25,0.95,1,38 +22680,40532977,Brooklyn,Bedford-Stuyvesant,40.680170000000004,-73.91379,Private room,36,30,15,0.61,4,0 +22681,41869754,Manhattan,Upper East Side,40.7839,-73.94823000000001,Private room,115,2,36,1.38,1,3 +22682,7503643,Brooklyn,Greenpoint,40.725640000000006,-73.93989,Entire home/apt,199,30,3,0.28,52,310 +22683,122877644,Manhattan,East Harlem,40.79126,-73.94663,Entire home/apt,195,2,87,3.29,1,213 +22684,3169815,Manhattan,Hell's Kitchen,40.764379999999996,-73.9886,Entire home/apt,350,1,96,3.63,1,253 +22685,127082964,Brooklyn,Bushwick,40.70426,-73.92489,Private room,72,3,12,0.47,2,0 +22686,43887030,Manhattan,Upper East Side,40.76765,-73.95506999999999,Entire home/apt,145,10,4,0.16,1,0 +22687,82562435,Queens,Arverne,40.58938,-73.79446999999999,Private room,48,1,62,2.35,2,3 +22688,127092689,Brooklyn,Bedford-Stuyvesant,40.6924,-73.94825,Private room,35,20,0,,1,0 +22689,34918098,Brooklyn,Prospect-Lefferts Gardens,40.660090000000004,-73.94009,Private room,42,2,0,,1,0 +22690,11553221,Brooklyn,Downtown Brooklyn,40.69481,-73.98422,Entire home/apt,225,1,15,0.59,1,87 +22691,127113351,Manhattan,Upper West Side,40.77827,-73.97673,Entire home/apt,149,7,5,0.21,1,10 +22692,22866591,Manhattan,Lower East Side,40.7183,-73.98639,Private room,75,2,4,0.16,1,0 +22693,127164761,Manhattan,Inwood,40.866890000000005,-73.92353,Private room,46,1,14,0.55,1,0 +22694,127080164,Queens,Howard Beach,40.654109999999996,-73.83191,Private room,100,2,0,,1,0 +22695,32044305,Manhattan,Hell's Kitchen,40.762170000000005,-73.98765,Private room,130,4,91,3.42,1,254 +22696,2946771,Manhattan,East Harlem,40.8136,-73.93606,Entire home/apt,150,2,39,1.48,1,0 +22697,36883838,Brooklyn,Greenpoint,40.72211,-73.94215,Entire home/apt,145,2,20,0.76,1,98 +22698,127196839,Brooklyn,Clinton Hill,40.68805,-73.96114,Private room,95,2,45,2.11,1,43 +22699,7496038,Brooklyn,Bushwick,40.693059999999996,-73.91918000000001,Private room,49,2,24,0.91,1,0 +22700,127218433,Manhattan,Upper West Side,40.769890000000004,-73.98229,Entire home/apt,220,30,4,0.16,1,124 +22701,8221838,Brooklyn,Fort Greene,40.68812,-73.97545,Entire home/apt,200,30,1,0.1,1,188 +22702,14588919,Brooklyn,Bedford-Stuyvesant,40.680170000000004,-73.95182,Entire home/apt,150,1,131,4.96,1,185 +22703,66961768,Brooklyn,Bedford-Stuyvesant,40.692859999999996,-73.93746999999999,Private room,30,1,9,0.34,1,0 +22704,88734376,Brooklyn,Bedford-Stuyvesant,40.680640000000004,-73.9463,Private room,187,2,31,2.69,1,35 +22705,3788839,Brooklyn,Bedford-Stuyvesant,40.68408,-73.92498,Private room,85,28,9,0.35,4,189 +22706,127250455,Brooklyn,Bedford-Stuyvesant,40.69234,-73.95993,Private room,54,2,8,0.3,1,0 +22707,76225580,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95144,Entire home/apt,175,2,104,4.0,2,168 +22708,127249880,Bronx,Tremont,40.846470000000004,-73.89299,Private room,38,2,33,1.27,2,327 +22709,13649613,Bronx,University Heights,40.85487,-73.91391,Private room,53,3,55,2.15,4,80 +22710,23036053,Manhattan,East Village,40.729079999999996,-73.9797,Private room,145,4,64,2.46,1,136 +22711,127341412,Brooklyn,Gowanus,40.6701,-73.98917,Entire home/apt,173,2,100,3.88,1,18 +22712,126501524,Brooklyn,Bedford-Stuyvesant,40.68435,-73.94135,Entire home/apt,150,3,40,1.6,3,170 +22713,7245581,Manhattan,Chelsea,40.74988,-73.99553,Entire home/apt,89,110,6,0.26,19,332 +22714,17930,Brooklyn,Windsor Terrace,40.65319,-73.97621,Entire home/apt,200,2,100,3.78,2,244 +22715,32706119,Brooklyn,Park Slope,40.66989,-73.98756999999999,Entire home/apt,120,2,86,3.24,2,185 +22716,88314328,Brooklyn,Bushwick,40.70341,-73.9292,Private room,54,2,3,0.14,1,0 +22717,47550622,Brooklyn,Crown Heights,40.668620000000004,-73.94664,Private room,50,1,6,0.23,1,0 +22718,126929216,Brooklyn,Crown Heights,40.67102,-73.93999000000001,Private room,45,14,10,0.42,3,322 +22719,126929216,Brooklyn,Crown Heights,40.67051,-73.94014,Private room,59,15,3,0.16,3,311 +22720,18767676,Manhattan,Upper West Side,40.79864,-73.96364,Entire home/apt,149,3,0,,1,0 +22721,43107610,Manhattan,Lower East Side,40.71933,-73.99,Entire home/apt,142,4,2,0.07,1,187 +22722,91167002,Manhattan,Hell's Kitchen,40.765370000000004,-73.98855,Private room,120,2,32,1.25,3,90 +22723,126632094,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9341,Private room,70,2,13,0.49,2,0 +22724,3695964,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95581999999999,Entire home/apt,200,1,37,1.53,1,5 +22725,501456,Brooklyn,Greenpoint,40.73312,-73.95754000000001,Entire home/apt,299,2,76,3.11,4,0 +22726,2828476,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.94885,Entire home/apt,80,14,1,0.04,1,0 +22727,7426741,Brooklyn,Windsor Terrace,40.65044,-73.97296,Private room,60,2,3,0.12,1,0 +22728,2845,Manhattan,Midtown,40.75358,-73.9919,Shared room,99,1,1,0.08,2,365 +22729,18784994,Manhattan,Upper West Side,40.803329999999995,-73.96693,Private room,60,14,0,,1,0 +22730,127412674,Brooklyn,Bedford-Stuyvesant,40.69944,-73.94527,Private room,46,2,71,2.69,2,309 +22731,44140036,Brooklyn,East Flatbush,40.65062,-73.93486999999999,Private room,60,2,20,0.81,2,190 +22732,23722638,Brooklyn,Carroll Gardens,40.6845,-73.99024,Entire home/apt,175,4,4,0.16,2,0 +22733,228252,Manhattan,Harlem,40.82452,-73.94511999999999,Private room,75,14,7,0.29,2,310 +22734,127449170,Queens,Flushing,40.75562,-73.80813,Private room,180,1,0,,1,0 +22735,127450854,Manhattan,Washington Heights,40.84662,-73.93436,Private room,70,1,23,0.87,1,138 +22736,2552603,Manhattan,East Village,40.72681,-73.98401,Entire home/apt,190,1,105,3.97,1,306 +22737,33434914,Bronx,Parkchester,40.82942,-73.87564,Private room,60,2,89,3.36,4,30 +22738,33434914,Bronx,Parkchester,40.83081,-73.87586999999999,Private room,45,2,74,2.89,4,34 +22739,10593759,Brooklyn,Sunset Park,40.651070000000004,-74.01096,Entire home/apt,450,1,5,0.27,1,179 +22740,104170260,Queens,Astoria,40.76736,-73.91685,Entire home/apt,99,4,1,0.04,1,0 +22741,63417081,Manhattan,Harlem,40.82359,-73.94433000000001,Private room,37,30,4,0.18,8,291 +22742,35387196,Brooklyn,Crown Heights,40.67139,-73.93930999999999,Entire home/apt,100,7,1,0.09,4,78 +22743,10335937,Queens,Forest Hills,40.72571,-73.84944,Entire home/apt,197,3,24,0.9,1,0 +22744,31681589,Brooklyn,Williamsburg,40.70882,-73.95445,Private room,90,2,4,0.15,1,0 +22745,124287074,Brooklyn,Prospect Heights,40.6809,-73.96726,Entire home/apt,188,2,59,2.25,1,28 +22746,20242206,Manhattan,Greenwich Village,40.72827,-74.00083000000001,Entire home/apt,110,10,2,0.08,1,0 +22747,7934771,Brooklyn,Flatbush,40.64246,-73.9538,Entire home/apt,175,7,3,0.47,1,0 +22748,63408461,Manhattan,Washington Heights,40.84745,-73.94116,Private room,100,2,102,3.84,1,213 +22749,127567480,Manhattan,Harlem,40.83099,-73.9444,Entire home/apt,295,1,52,5.05,1,256 +22750,10366837,Queens,Flushing,40.75763,-73.83157,Entire home/apt,99,2,88,3.38,3,120 +22751,38886949,Manhattan,Upper West Side,40.79872,-73.96173,Private room,70,1,1,0.04,2,0 +22752,127583166,Manhattan,Washington Heights,40.8398,-73.94384000000001,Private room,55,21,8,0.52,2,38 +22753,72603148,Staten Island,Stapleton,40.6348,-74.07734,Private room,65,1,37,1.41,3,356 +22754,11191325,Manhattan,Harlem,40.812529999999995,-73.93952,Entire home/apt,99,5,35,1.32,1,1 +22755,39619320,Manhattan,Chinatown,40.71495,-73.99056,Private room,60,1,6,0.23,1,0 +22756,15786933,Manhattan,Midtown,40.74559,-73.98216,Entire home/apt,259,7,0,,1,0 +22757,22541573,Manhattan,Upper West Side,40.780809999999995,-73.98080999999999,Entire home/apt,159,30,0,,87,342 +22758,2948325,Manhattan,East Harlem,40.79737,-73.93185,Entire home/apt,300,3,53,2.03,1,104 +22759,1507779,Brooklyn,South Slope,40.663990000000005,-73.98301,Entire home/apt,210,3,5,0.21,2,3 +22760,22541573,Manhattan,SoHo,40.72948,-74.00961,Entire home/apt,195,30,1,0.25,87,365 +22761,92634775,Manhattan,Gramercy,40.73433,-73.98216,Entire home/apt,96,1,3,0.11,1,0 +22762,127539184,Brooklyn,East Flatbush,40.648959999999995,-73.94317,Entire home/apt,80,3,38,1.45,2,78 +22763,113805886,Manhattan,Upper East Side,40.778220000000005,-73.95136,Entire home/apt,160,31,7,0.29,33,330 +22764,127560222,Queens,Long Island City,40.75538,-73.93455,Private room,199,1,6,0.26,2,53 +22765,63417081,Manhattan,Harlem,40.8236,-73.94412,Private room,35,30,7,0.28,8,78 +22766,17577495,Manhattan,Hell's Kitchen,40.7627,-73.98836999999999,Private room,80,3,42,1.58,3,172 +22767,38721832,Manhattan,East Harlem,40.78908,-73.94216,Private room,35,1,0,,1,0 +22768,107778395,Brooklyn,Williamsburg,40.71188,-73.94386999999999,Private room,55,5,9,0.34,1,20 +22769,6455775,Brooklyn,Bushwick,40.706790000000005,-73.92295,Entire home/apt,207,2,78,3.06,1,231 +22770,127762325,Queens,Ditmars Steinway,40.7742,-73.90808,Private room,59,1,77,2.97,1,198 +22771,54548000,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92524,Private room,75,1,70,2.79,2,220 +22772,25473311,Queens,Sunnyside,40.73702,-73.92657,Private room,49,7,4,0.19,2,90 +22773,127814176,Brooklyn,East New York,40.66556,-73.88323000000001,Entire home/apt,115,2,118,4.47,1,121 +22774,75973505,Manhattan,Washington Heights,40.86027,-73.9264,Private room,40,2,3,0.42,1,276 +22775,25385574,Bronx,Allerton,40.86718,-73.86235,Private room,33,1,0,,1,179 +22776,121419684,Brooklyn,Gravesend,40.58654,-73.98858,Private room,199,3,0,,1,363 +22777,6198836,Brooklyn,Bushwick,40.70159,-73.92115,Entire home/apt,93,30,1,0.04,1,45 +22778,11586111,Manhattan,West Village,40.73075,-74.00222,Entire home/apt,159,4,6,0.23,1,0 +22779,5945526,Manhattan,Little Italy,40.72002,-73.99629,Entire home/apt,150,3,12,0.47,1,0 +22780,14664356,Manhattan,Financial District,40.7049,-74.00617,Entire home/apt,86,70,5,0.22,1,203 +22781,127886968,Brooklyn,Bushwick,40.703509999999994,-73.93092,Private room,75,1,0,,1,0 +22782,11308807,Manhattan,Harlem,40.823890000000006,-73.95266,Private room,57,2,0,,2,0 +22783,51501835,Manhattan,Hell's Kitchen,40.76442,-73.99458,Entire home/apt,200,30,1,0.07,31,330 +22784,127895318,Bronx,Mount Hope,40.849920000000004,-73.90346,Private room,50,1,6,0.23,1,0 +22785,115529602,Manhattan,Upper East Side,40.77409,-73.94995,Private room,120,2,9,0.35,1,0 +22786,127911754,Manhattan,Inwood,40.8637,-73.92826,Entire home/apt,100,2,0,,1,0 +22787,127910599,Brooklyn,Crown Heights,40.67757,-73.94913000000001,Entire home/apt,90,31,62,2.38,1,269 +22788,36457711,Brooklyn,Clinton Hill,40.6913,-73.96099,Private room,50,2,3,0.12,2,0 +22789,127721863,Brooklyn,Flatbush,40.62934,-73.96343,Entire home/apt,100,3,62,2.37,1,108 +22790,127917641,Manhattan,Washington Heights,40.84257,-73.93805,Private room,35,30,1,0.04,1,0 +22791,3470710,Brooklyn,Williamsburg,40.702940000000005,-73.94152,Entire home/apt,94,2,29,1.1,1,1 +22792,60160069,Brooklyn,Bushwick,40.69063,-73.91224,Entire home/apt,190,3,42,1.62,1,303 +22793,70334862,Manhattan,East Village,40.72598,-73.98934,Private room,86,3,1,0.05,1,0 +22794,30283594,Manhattan,Midtown,40.76547,-73.98216,Entire home/apt,199,30,0,,121,189 +22795,17420574,Manhattan,Inwood,40.8677,-73.9225,Private room,55,2,4,0.15,1,0 +22796,68274298,Manhattan,Gramercy,40.73401,-73.9814,Entire home/apt,226,2,15,0.58,1,0 +22797,1349266,Brooklyn,Vinegar Hill,40.70369,-73.98306,Entire home/apt,186,30,1,1.0,1,1 +22798,127998381,Manhattan,East Village,40.72724,-73.98291,Entire home/apt,170,7,9,0.35,1,0 +22799,127999994,Manhattan,Roosevelt Island,40.76208,-73.94954,Private room,100,2,85,3.28,1,211 +22800,14666091,Brooklyn,Bushwick,40.70028,-73.92439,Private room,90,5,16,0.61,1,37 +22801,128004958,Brooklyn,Bushwick,40.68717,-73.91708,Private room,50,1,100,4.03,1,2 +22802,116848523,Manhattan,Hell's Kitchen,40.76341,-73.99051,Entire home/apt,119,1,12,0.45,1,0 +22803,916092,Queens,Ditmars Steinway,40.77414,-73.91625,Entire home/apt,110,6,0,,1,0 +22804,57900598,Manhattan,Harlem,40.81752,-73.94162,Entire home/apt,80,2,40,1.51,1,0 +22805,30555297,Brooklyn,Flatbush,40.653059999999996,-73.95506999999999,Private room,64,7,17,0.72,1,0 +22806,120767920,Queens,Flushing,40.755559999999996,-73.81205,Private room,47,2,79,3.15,10,346 +22807,31315421,Brooklyn,Bedford-Stuyvesant,40.68257,-73.9279,Entire home/apt,100,2,77,2.96,1,277 +22808,38120363,Brooklyn,Crown Heights,40.67238,-73.91488000000001,Private room,49,2,39,1.53,2,84 +22809,4894044,Brooklyn,Crown Heights,40.66515,-73.95186,Private room,100,1,28,1.92,1,88 +22810,122294799,Brooklyn,Bedford-Stuyvesant,40.69178,-73.92838,Private room,47,1,4,0.15,1,0 +22811,82665319,Brooklyn,Williamsburg,40.7126,-73.96347,Entire home/apt,150,3,4,0.15,1,0 +22812,42951693,Manhattan,Morningside Heights,40.8151,-73.96091,Private room,43,2,0,,1,0 +22813,60077252,Brooklyn,Bedford-Stuyvesant,40.68248,-73.93316999999999,Entire home/apt,165,4,67,2.66,1,74 +22814,78272395,Queens,Sunnyside,40.736740000000005,-73.9136,Private room,70,3,8,0.3,1,0 +22815,20438455,Brooklyn,Borough Park,40.639520000000005,-73.98205,Private room,49,2,126,4.82,2,45 +22816,639926,Manhattan,East Village,40.72603,-73.97717,Entire home/apt,199,3,10,0.43,1,0 +22817,98861076,Manhattan,Harlem,40.82444,-73.94525,Private room,90,2,136,5.13,1,204 +22818,106430338,Brooklyn,Bensonhurst,40.612770000000005,-73.99695,Private room,60,3,43,1.65,2,173 +22819,38068387,Brooklyn,Clinton Hill,40.6929,-73.96656999999999,Private room,125,2,5,0.19,4,350 +22820,38068387,Brooklyn,Clinton Hill,40.69455,-73.96763,Private room,100,2,11,0.43,4,347 +22821,9667737,Manhattan,Lower East Side,40.71862,-73.9836,Entire home/apt,80,14,1,0.06,1,0 +22822,1750685,Manhattan,Chelsea,40.74569,-73.99687,Entire home/apt,200,1,12,0.6,1,8 +22823,8594019,Manhattan,Morningside Heights,40.81651,-73.95924000000001,Private room,50,5,1,0.04,2,0 +22824,128244964,Manhattan,East Harlem,40.799209999999995,-73.9387,Entire home/apt,185,1,0,,1,0 +22825,3083244,Manhattan,Washington Heights,40.83716,-73.94048000000001,Private room,37,7,1,0.04,1,0 +22826,12700569,Queens,Jackson Heights,40.75292,-73.88129,Entire home/apt,135,6,2,0.11,1,195 +22827,81712146,Brooklyn,Bushwick,40.70113,-73.91385,Private room,50,1,9,0.34,1,0 +22828,13929469,Brooklyn,Crown Heights,40.66364,-73.95725,Private room,60,30,21,0.81,1,1 +22829,17381128,Brooklyn,Bushwick,40.686440000000005,-73.91064,Private room,40,7,0,,1,0 +22830,1540270,Brooklyn,Bushwick,40.69983,-73.91625,Private room,40,3,7,0.26,1,12 +22831,12293403,Manhattan,Harlem,40.8125,-73.94151,Entire home/apt,85,3,35,1.36,2,40 +22832,10285950,Brooklyn,Flatbush,40.64493,-73.95488,Entire home/apt,85,6,14,0.53,3,339 +22833,4775716,Brooklyn,Prospect Heights,40.67696,-73.96669,Entire home/apt,165,2,21,3.73,1,146 +22834,4193618,Brooklyn,Greenpoint,40.72995,-73.95498,Entire home/apt,200,15,3,0.12,1,342 +22835,97001292,Queens,Jamaica,40.69085,-73.79916,Entire home/apt,10,1,43,1.68,1,252 +22836,128307950,Manhattan,East Village,40.72588,-73.98827,Entire home/apt,134,2,0,,1,0 +22837,36012265,Brooklyn,Williamsburg,40.705059999999996,-73.93122,Private room,60,1,8,0.36,7,31 +22838,23234988,Queens,Flushing,40.74888,-73.8066,Entire home/apt,400,1,8,0.34,6,255 +22839,21680683,Brooklyn,Williamsburg,40.7199,-73.95828,Private room,124,1,5,0.2,2,111 +22840,4350083,Brooklyn,Clinton Hill,40.68367,-73.95982,Private room,75,2,1,0.04,1,0 +22841,510745,Brooklyn,Williamsburg,40.71555,-73.94842,Entire home/apt,106,2,20,0.76,2,0 +22842,351465,Brooklyn,Park Slope,40.67855,-73.97583,Entire home/apt,190,4,60,2.29,1,155 +22843,127714840,Brooklyn,Bedford-Stuyvesant,40.68144,-73.93429,Private room,80,5,11,0.9,1,340 +22844,128385204,Brooklyn,Sheepshead Bay,40.59339,-73.94296,Private room,199,1,0,,1,0 +22845,30157754,Queens,Ridgewood,40.6991,-73.89796,Entire home/apt,60,7,0,,1,0 +22846,106272021,Brooklyn,East Flatbush,40.66182,-73.93748000000001,Private room,50,2,21,0.83,3,31 +22847,128413939,Manhattan,Harlem,40.80584,-73.95272,Private room,78,3,88,3.36,1,189 +22848,128414475,Brooklyn,Williamsburg,40.70728,-73.92989,Private room,79,1,11,0.42,3,0 +22849,60981198,Brooklyn,Bedford-Stuyvesant,40.6911,-73.93691,Private room,75,4,8,0.32,3,0 +22850,128417181,Manhattan,Financial District,40.70766,-74.00153,Private room,205,2,41,1.56,1,308 +22851,5828830,Queens,Jamaica,40.67365,-73.76501999999999,Private room,50,7,11,0.44,2,0 +22852,90846964,Manhattan,Upper West Side,40.792640000000006,-73.97480999999999,Entire home/apt,99,1,7,0.26,1,0 +22853,31658624,Brooklyn,Crown Heights,40.669979999999995,-73.9396,Private room,44,3,104,4.0,2,0 +22854,10605984,Manhattan,Upper West Side,40.76798,-73.98356,Entire home/apt,615,5,46,1.78,1,282 +22855,123953239,Brooklyn,Williamsburg,40.71058,-73.96401999999999,Entire home/apt,260,2,34,1.31,2,330 +22856,75279920,Manhattan,Harlem,40.80833,-73.95101,Entire home/apt,275,3,89,3.41,1,96 +22857,5440952,Manhattan,Upper West Side,40.77244,-73.98204,Shared room,75,30,0,,1,0 +22858,38604449,Queens,Woodside,40.75558,-73.90534,Private room,45,2,30,1.23,2,242 +22859,1635983,Bronx,Schuylerville,40.83018,-73.83413,Private room,42,4,22,1.18,3,147 +22860,33434914,Bronx,Parkchester,40.83117,-73.87566,Private room,43,2,71,2.71,4,59 +22861,18280205,Brooklyn,Williamsburg,40.71463,-73.95501,Entire home/apt,200,2,32,1.25,1,8 +22862,112081278,Manhattan,Upper East Side,40.7802,-73.94651999999999,Entire home/apt,79,4,5,0.19,1,128 +22863,128517263,Brooklyn,Bushwick,40.69945,-73.93666999999999,Private room,70,10,4,0.17,3,44 +22864,671187,Manhattan,Upper West Side,40.800340000000006,-73.95940999999999,Private room,139,31,0,,1,83 +22865,128210772,Manhattan,West Village,40.730959999999996,-74.00406,Private room,100,4,1,0.04,1,0 +22866,550009,Brooklyn,Greenpoint,40.72215,-73.94203,Entire home/apt,137,4,0,,1,0 +22867,371654,Manhattan,Morningside Heights,40.802640000000004,-73.95921,Private room,175,5,2,0.08,1,0 +22868,8821726,Brooklyn,Flatbush,40.64909,-73.9648,Private room,40,2,12,0.47,1,0 +22869,19355895,Brooklyn,Williamsburg,40.71625,-73.96406999999999,Entire home/apt,300,4,11,0.44,1,94 +22870,7797101,Brooklyn,Park Slope,40.66832,-73.97662,Entire home/apt,180,2,67,2.88,1,289 +22871,106454216,Brooklyn,Bushwick,40.68827,-73.91815,Entire home/apt,180,2,54,2.15,2,308 +22872,128424841,Brooklyn,Bushwick,40.69364,-73.91499,Entire home/apt,149,1,30,1.13,1,284 +22873,57060982,Brooklyn,Bedford-Stuyvesant,40.68473,-73.94799,Private room,58,1,17,0.65,1,0 +22874,3413858,Brooklyn,Flatbush,40.64217,-73.9593,Entire home/apt,125,20,0,,1,4 +22875,49562545,Brooklyn,Williamsburg,40.709990000000005,-73.94807,Entire home/apt,235,1,57,7.04,2,228 +22876,113805886,Manhattan,Upper East Side,40.77878,-73.94993000000001,Entire home/apt,206,31,2,0.35,33,327 +22877,75360607,Queens,Sunnyside,40.74215,-73.92633000000001,Entire home/apt,199,5,91,3.48,2,57 +22878,39652113,Brooklyn,Bedford-Stuyvesant,40.69227,-73.94159,Private room,40,28,6,0.32,1,197 +22879,2266961,Queens,Ridgewood,40.69942,-73.90968000000001,Entire home/apt,120,3,3,0.12,1,0 +22880,21250331,Queens,Bayside,40.75444,-73.76938,Private room,38,1,86,4.19,3,346 +22881,128692351,Bronx,Highbridge,40.842890000000004,-73.92688000000001,Private room,100,2,107,4.12,5,344 +22882,3063938,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94519,Entire home/apt,100,6,18,0.69,1,0 +22883,4914270,Manhattan,West Village,40.73107,-74.00163,Entire home/apt,175,4,1,0.04,1,0 +22884,386263,Brooklyn,Crown Heights,40.6764,-73.95496999999999,Entire home/apt,171,3,61,2.59,2,267 +22885,7130003,Manhattan,East Village,40.72205,-73.98389,Private room,169,4,29,1.14,2,220 +22886,95341869,Brooklyn,Bedford-Stuyvesant,40.69502,-73.93984,Private room,60,2,47,1.81,1,77 +22887,27266433,Manhattan,Hell's Kitchen,40.75607,-73.99707,Private room,94,2,4,0.15,1,0 +22888,12627412,Brooklyn,Sheepshead Bay,40.60402,-73.95257,Entire home/apt,88,4,1,0.04,1,0 +22889,127501584,Bronx,Hunts Point,40.81406,-73.88996999999999,Private room,65,4,36,1.36,1,365 +22890,3137526,Manhattan,Greenwich Village,40.728429999999996,-73.99825,Entire home/apt,134,7,0,,2,0 +22891,13008402,Manhattan,East Village,40.73158,-73.987,Entire home/apt,419,3,0,,1,0 +22892,12831071,Manhattan,Greenwich Village,40.7331,-73.99923000000001,Private room,90,5,69,2.62,1,137 +22893,7445657,Brooklyn,Williamsburg,40.70565,-73.94791,Entire home/apt,140,3,7,0.27,1,0 +22894,7810471,Manhattan,Upper West Side,40.77404,-73.99076,Entire home/apt,198,2,2,0.08,1,0 +22895,128768798,Queens,Ditmars Steinway,40.77949,-73.91015,Private room,78,2,69,2.65,1,166 +22896,118378908,Brooklyn,Williamsburg,40.714929999999995,-73.94861,Private room,65,1,2,0.09,6,272 +22897,4075128,Manhattan,Murray Hill,40.74822,-73.97966,Private room,65,2,2,0.08,1,0 +22898,128785279,Bronx,Pelham Gardens,40.858779999999996,-73.83402,Entire home/apt,199,2,81,3.17,1,286 +22899,128787072,Manhattan,Lower East Side,40.71873,-73.9891,Private room,99,2,10,0.38,1,0 +22900,128785861,Brooklyn,Williamsburg,40.71435,-73.95508000000001,Private room,70,1,13,0.49,2,0 +22901,115932140,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95278,Private room,75,2,1,0.04,1,0 +22902,125021178,Manhattan,Midtown,40.766459999999995,-73.97912,Entire home/apt,350,3,16,0.64,1,352 +22903,7740184,Brooklyn,Crown Heights,40.67653,-73.95793,Private room,75,1,13,0.51,1,0 +22904,9727058,Manhattan,Harlem,40.80389,-73.95178,Entire home/apt,199,3,17,0.65,1,280 +22905,128852127,Brooklyn,Prospect-Lefferts Gardens,40.65634,-73.95704,Private room,30,30,1,0.05,1,0 +22906,1260642,Manhattan,Harlem,40.800940000000004,-73.95219,Private room,70,3,65,2.47,1,0 +22907,8146232,Brooklyn,Clinton Hill,40.69229,-73.96504,Entire home/apt,120,1,3,0.12,1,0 +22908,128860627,Manhattan,Upper West Side,40.77557,-73.98099,Shared room,65,3,68,2.6,1,138 +22909,39829442,Manhattan,SoHo,40.72565,-74.00161,Entire home/apt,295,2,4,0.16,1,0 +22910,24791132,Brooklyn,Prospect Heights,40.67693,-73.96517,Entire home/apt,135,3,3,0.48,1,0 +22911,50916440,Manhattan,Hell's Kitchen,40.7652,-73.99197,Private room,67,7,0,,1,0 +22912,33434914,Bronx,Parkchester,40.8298,-73.87715,Private room,40,2,62,2.38,4,44 +22913,128414475,Brooklyn,Williamsburg,40.70556,-73.92891999999999,Private room,70,2,10,0.38,3,0 +22914,7157099,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.96141999999999,Private room,60,3,3,0.13,3,21 +22915,52403444,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94678,Entire home/apt,109,1,148,5.59,3,20 +22916,88207924,Manhattan,Inwood,40.86835,-73.91958000000001,Entire home/apt,50,4,4,0.15,1,0 +22917,128899126,Queens,Astoria,40.76132,-73.92477,Entire home/apt,99,2,68,2.69,1,0 +22918,11334992,Manhattan,Hell's Kitchen,40.76059,-73.98865,Shared room,105,1,1,0.04,1,0 +22919,17486785,Brooklyn,Bedford-Stuyvesant,40.68212,-73.9486,Private room,45,2,0,,1,0 +22920,54548000,Brooklyn,Bedford-Stuyvesant,40.67779,-73.9229,Private room,70,1,54,2.15,2,197 +22921,9285643,Brooklyn,Williamsburg,40.719879999999996,-73.96294,Entire home/apt,150,5,0,,1,0 +22922,128914189,Brooklyn,Williamsburg,40.72034,-73.96030999999999,Entire home/apt,190,30,0,,2,1 +22923,4677247,Manhattan,Upper East Side,40.77973,-73.95039,Entire home/apt,150,2,17,0.71,1,338 +22924,35741929,Brooklyn,Crown Heights,40.671009999999995,-73.94543,Private room,70,2,52,1.99,2,0 +22925,99629743,Brooklyn,Clinton Hill,40.68908,-73.96429,Entire home/apt,349,2,52,1.99,2,361 +22926,89331516,Brooklyn,Williamsburg,40.71779,-73.95978000000001,Entire home/apt,79,2,0,,3,0 +22927,35998113,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91071,Private room,70,3,26,1.32,3,0 +22928,6726364,Manhattan,Upper West Side,40.80062,-73.96169,Private room,150,6,5,0.21,2,0 +22929,2856748,Manhattan,Midtown,40.751940000000005,-73.97068,Entire home/apt,232,30,2,0.1,49,364 +22930,23667219,Brooklyn,Bushwick,40.69563,-73.93205999999999,Private room,47,4,1,0.04,2,0 +22931,38236150,Brooklyn,Bedford-Stuyvesant,40.69608,-73.9432,Private room,45,1,4,0.15,1,0 +22932,11389260,Manhattan,Chelsea,40.7381,-73.9976,Entire home/apt,200,2,3,0.12,1,0 +22933,30237517,Queens,Forest Hills,40.734120000000004,-73.8509,Entire home/apt,278,2,16,0.62,6,0 +22934,118366948,Brooklyn,Park Slope,40.670790000000004,-73.97384,Entire home/apt,195,12,2,0.08,1,0 +22935,52403444,Brooklyn,Bedford-Stuyvesant,40.68914,-73.94556,Entire home/apt,109,1,146,5.57,3,21 +22936,149929,Brooklyn,Fort Greene,40.69063,-73.97195,Private room,65,8,6,0.24,5,0 +22937,22059655,Manhattan,Washington Heights,40.83847,-73.94211,Private room,80,1,93,3.59,1,311 +22938,5721788,Brooklyn,Bushwick,40.69604,-73.92278,Private room,65,25,6,0.24,1,0 +22939,129032819,Manhattan,Harlem,40.82761,-73.9375,Private room,100,1,4,0.15,1,365 +22940,21866971,Manhattan,Chelsea,40.7453,-74.00001999999999,Entire home/apt,180,3,24,1.12,1,14 +22941,18212433,Manhattan,Midtown,40.75233,-73.97296999999999,Entire home/apt,299,4,0,,8,0 +22942,128692351,Bronx,Highbridge,40.84111,-73.92513000000001,Private room,80,2,100,3.86,5,338 +22943,61673952,Brooklyn,East Flatbush,40.63693,-73.92241999999999,Entire home/apt,105,2,108,4.18,1,320 +22944,21372426,Manhattan,East Harlem,40.78974,-73.9425,Shared room,350,3,0,,1,83 +22945,11380126,Brooklyn,Bushwick,40.69083,-73.9241,Private room,45,1,2,0.08,1,0 +22946,69124870,Brooklyn,Williamsburg,40.71047,-73.96311,Entire home/apt,315,2,117,4.44,4,262 +22947,89331516,Brooklyn,Williamsburg,40.716440000000006,-73.95888000000001,Private room,79,4,0,,3,0 +22948,129062212,Manhattan,Hell's Kitchen,40.75898,-73.99035,Entire home/apt,90,7,18,0.7,1,242 +22949,97543375,Brooklyn,Williamsburg,40.71529,-73.93972,Private room,215,2,4,0.15,2,341 +22950,126929216,Brooklyn,Crown Heights,40.6699,-73.94169000000001,Private room,59,15,1,0.04,3,333 +22951,23356363,Manhattan,Lower East Side,40.71947,-73.98638000000001,Entire home/apt,200,2,24,0.91,1,6 +22952,278576,Brooklyn,Prospect-Lefferts Gardens,40.65746,-73.95221,Private room,90,3,46,1.91,2,197 +22953,129133511,Queens,Rockaway Beach,40.5889,-73.81585,Entire home/apt,545,1,31,1.2,1,224 +22954,12827876,Brooklyn,Canarsie,40.64493,-73.90897,Private room,33,2,1,0.04,1,0 +22955,51501835,Manhattan,Hell's Kitchen,40.76382,-73.99435,Entire home/apt,125,30,3,0.45,31,339 +22956,24338366,Manhattan,Inwood,40.86057,-73.92907,Entire home/apt,100,1,9,0.37,1,0 +22957,5212097,Manhattan,East Village,40.72237,-73.98148,Private room,275,2,8,0.31,2,0 +22958,159936,Brooklyn,Bushwick,40.69337,-73.91141999999999,Private room,45,1,2,0.08,1,0 +22959,29134684,Brooklyn,Greenpoint,40.726859999999995,-73.95246,Entire home/apt,199,6,2,0.08,1,0 +22960,118880596,Brooklyn,Columbia St,40.68455,-74.00188,Entire home/apt,150,4,13,0.56,1,6 +22961,51501835,Manhattan,Hell's Kitchen,40.76435,-73.99337,Entire home/apt,125,30,3,0.14,31,342 +22962,14376724,Brooklyn,Williamsburg,40.70793,-73.93902,Private room,55,5,0,,1,0 +22963,1692538,Manhattan,Upper East Side,40.772940000000006,-73.95351,Entire home/apt,168,1,126,4.78,5,287 +22964,51501835,Manhattan,Hell's Kitchen,40.76446,-73.99343,Entire home/apt,125,30,4,0.17,31,344 +22965,6423838,Brooklyn,East Flatbush,40.65229,-73.94539,Private room,150,2,1,0.1,1,83 +22966,101258676,Brooklyn,Kensington,40.63255,-73.97324,Private room,48,1,116,4.47,1,343 +22967,228252,Manhattan,Harlem,40.82607,-73.94481,Private room,85,14,3,0.12,2,125 +22968,3258630,Brooklyn,Williamsburg,40.716809999999995,-73.94556,Private room,80,1,6,0.24,1,0 +22969,128338539,Staten Island,Stapleton,40.63167,-74.07970999999999,Private room,43,1,37,1.56,4,89 +22970,7055854,Manhattan,Harlem,40.80298,-73.94333,Private room,60,5,28,1.07,5,267 +22971,112118235,Brooklyn,Flatbush,40.65255,-73.9568,Private room,60,3,0,,1,0 +22972,118124127,Brooklyn,Downtown Brooklyn,40.691559999999996,-73.98686,Entire home/apt,179,2,5,0.19,1,14 +22973,34361146,Brooklyn,Cobble Hill,40.68582,-73.99801,Entire home/apt,156,31,10,0.39,1,0 +22974,75567007,Brooklyn,Park Slope,40.676970000000004,-73.98239000000001,Entire home/apt,153,2,2,0.08,1,0 +22975,32052979,Manhattan,Kips Bay,40.73863,-73.98186,Private room,76,1,0,,1,0 +22976,7055854,Manhattan,East Harlem,40.80141,-73.94341,Private room,2000,6,0,,5,219 +22977,129270031,Manhattan,Harlem,40.82527,-73.95359,Private room,55,90,0,,1,365 +22978,129273512,Brooklyn,Gowanus,40.6697,-73.99356999999999,Private room,145,1,80,3.1,3,282 +22979,1637060,Brooklyn,Bushwick,40.6948,-73.92253000000001,Private room,75,2,80,3.11,1,3 +22980,16140828,Manhattan,Morningside Heights,40.808640000000004,-73.95913,Private room,65,4,0,,1,0 +22981,23297219,Brooklyn,Williamsburg,40.719640000000005,-73.96421,Entire home/apt,199,4,7,0.28,2,65 +22982,14444,Brooklyn,Bedford-Stuyvesant,40.69321,-73.95599,Entire home/apt,150,4,0,,2,0 +22983,13730809,Brooklyn,Brownsville,40.66088,-73.90012,Private room,60,6,26,1.0,3,90 +22984,14614459,Manhattan,East Harlem,40.78546,-73.94117,Private room,70,3,8,0.31,4,0 +22985,90289877,Queens,Flushing,40.74218,-73.82833000000001,Private room,36,2,98,3.8,1,31 +22986,7318926,Manhattan,East Village,40.72208,-73.98071,Entire home/apt,210,3,5,0.19,1,0 +22987,1635983,Bronx,Schuylerville,40.831590000000006,-73.83375,Private room,40,4,35,1.36,3,171 +22988,41467596,Brooklyn,Crown Heights,40.66482,-73.93619,Private room,140,1,1,0.04,1,0 +22989,23867523,Manhattan,Theater District,40.76207,-73.9858,Private room,120,1,8,2.09,1,5 +22990,1038989,Brooklyn,Williamsburg,40.70904,-73.9398,Private room,95,3,69,2.63,2,56 +22991,52816291,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95121,Entire home/apt,90,3,5,0.27,1,1 +22992,55017405,Manhattan,Upper West Side,40.77978,-73.97598,Entire home/apt,2900,1,0,,1,180 +22993,22204359,Manhattan,West Village,40.73369,-74.00534,Entire home/apt,199,4,24,0.95,1,35 +22994,129317761,Manhattan,East Harlem,40.78886,-73.94324,Private room,70,1,11,0.42,1,0 +22995,89331516,Brooklyn,Williamsburg,40.71591,-73.96039,Entire home/apt,169,5,1,0.04,3,0 +22996,129159456,Brooklyn,Bushwick,40.69055,-73.91599000000001,Private room,30,1,0,,1,0 +22997,1599261,Brooklyn,Williamsburg,40.70844,-73.96693,Entire home/apt,140,3,19,0.73,1,218 +22998,129333453,Manhattan,Lower East Side,40.72037,-73.98701,Entire home/apt,110,3,19,0.73,1,34 +22999,97794385,Queens,Jamaica,40.68555,-73.79415999999999,Private room,30,1,15,0.67,2,90 +23000,50605761,Brooklyn,Fort Greene,40.68647,-73.97531,Entire home/apt,130,5,1,0.05,1,2 +23001,129396046,Brooklyn,East New York,40.66547,-73.88944000000001,Entire home/apt,99,2,145,5.84,1,356 +23002,129179250,Manhattan,Upper West Side,40.772290000000005,-73.97944,Entire home/apt,200,4,10,0.43,1,68 +23003,27789935,Manhattan,Upper East Side,40.77568,-73.95405,Entire home/apt,170,1,20,0.77,1,0 +23004,4401058,Brooklyn,Kensington,40.64354,-73.97967,Private room,110,1,0,,1,0 +23005,83141510,Brooklyn,Bushwick,40.70382,-73.91745999999999,Entire home/apt,100,1,0,,1,0 +23006,49197104,Manhattan,East Village,40.731590000000004,-73.98447,Entire home/apt,133,3,5,0.19,1,0 +23007,32772382,Manhattan,Washington Heights,40.85865,-73.93559,Private room,75,2,13,0.55,1,0 +23008,14505375,Brooklyn,Carroll Gardens,40.68057,-73.99395,Entire home/apt,125,2,69,2.66,1,275 +23009,2420586,Brooklyn,Brooklyn Heights,40.692840000000004,-73.99633,Entire home/apt,325,2,12,0.46,1,39 +23010,21402517,Brooklyn,Bedford-Stuyvesant,40.694179999999996,-73.94447,Private room,50,2,19,0.76,1,4 +23011,91385196,Bronx,North Riverdale,40.91169,-73.90564,Private room,50,365,0,,1,363 +23012,55814053,Manhattan,Upper East Side,40.7672,-73.95495,Entire home/apt,120,1,89,3.43,1,9 +23013,87680800,Manhattan,Morningside Heights,40.81368,-73.95919,Private room,50,1,0,,1,0 +23014,3617473,Queens,Sunnyside,40.747890000000005,-73.91428,Entire home/apt,100,30,3,0.13,1,213 +23015,31658624,Brooklyn,Crown Heights,40.669540000000005,-73.93975,Private room,45,3,8,0.31,2,0 +23016,129497806,Brooklyn,East Flatbush,40.65064,-73.95045,Entire home/apt,94,2,73,3.09,1,66 +23017,45934567,Brooklyn,Williamsburg,40.712270000000004,-73.96233000000001,Private room,60,5,2,0.08,1,0 +23018,28290772,Queens,Astoria,40.76682,-73.90807,Private room,63,2,27,1.03,2,338 +23019,25318403,Brooklyn,Williamsburg,40.71353,-73.9578,Entire home/apt,175,3,9,0.4,3,11 +23020,48157058,Brooklyn,Crown Heights,40.67541,-73.93253,Private room,26,7,0,,1,59 +23021,63417081,Manhattan,Harlem,40.82336,-73.94511999999999,Private room,45,30,4,0.17,8,67 +23022,33786241,Manhattan,Upper East Side,40.774809999999995,-73.95640999999999,Entire home/apt,123,3,32,1.22,1,4 +23023,7041731,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95803000000001,Entire home/apt,185,3,1,0.04,1,0 +23024,128531725,Manhattan,Morningside Heights,40.80387,-73.95853000000001,Private room,55,3,103,3.93,2,18 +23025,46501846,Manhattan,East Village,40.7241,-73.98959,Entire home/apt,133,7,9,0.35,1,0 +23026,128531725,Manhattan,Harlem,40.8042,-73.95669000000001,Private room,75,2,41,1.57,2,1 +23027,3990540,Brooklyn,Prospect Heights,40.67787,-73.97225,Entire home/apt,450,3,3,0.12,1,0 +23028,97032243,Brooklyn,Crown Heights,40.675709999999995,-73.94915999999999,Private room,40,1,0,,1,0 +23029,44838931,Queens,Astoria,40.76843,-73.93257,Private room,90,3,17,0.65,2,334 +23030,69124870,Brooklyn,Williamsburg,40.710390000000004,-73.96139000000001,Private room,400,1,44,2.19,4,77 +23031,44838931,Queens,Astoria,40.76848,-73.93213,Private room,62,3,27,1.03,2,154 +23032,126470577,Manhattan,Gramercy,40.7358,-73.9889,Entire home/apt,287,1,68,2.67,1,324 +23033,21854022,Manhattan,Harlem,40.8225,-73.94493,Entire home/apt,200,1,78,3.0,1,84 +23034,35881969,Brooklyn,Williamsburg,40.70545,-73.94714,Private room,58,1,96,3.82,2,79 +23035,7147164,Brooklyn,Williamsburg,40.7137,-73.95711,Entire home/apt,325,3,32,1.25,1,33 +23036,120762452,Manhattan,Murray Hill,40.750170000000004,-73.97686999999999,Entire home/apt,222,30,0,,50,180 +23037,36522433,Brooklyn,Downtown Brooklyn,40.694590000000005,-73.98261,Entire home/apt,130,5,2,0.08,1,0 +23038,72377141,Manhattan,Upper West Side,40.79939,-73.96752,Private room,70,7,1,0.04,3,0 +23039,68017798,Brooklyn,Bushwick,40.69804,-73.9182,Private room,44,2,0,,1,0 +23040,23722638,Brooklyn,Gowanus,40.68432,-73.98867,Private room,85,1,0,,2,0 +23041,110031106,Manhattan,Financial District,40.705859999999994,-74.00875,Private room,85,1,3,0.12,1,0 +23042,19512029,Brooklyn,Midwood,40.61143,-73.9543,Private room,52,2,12,0.46,1,0 +23043,90824676,Manhattan,East Village,40.722879999999996,-73.98342,Private room,60,1,3,0.12,1,0 +23044,13524368,Brooklyn,Windsor Terrace,40.65766,-73.97614,Entire home/apt,275,3,8,0.32,1,0 +23045,15578480,Manhattan,Harlem,40.812709999999996,-73.94055,Private room,75,2,21,0.81,1,0 +23046,30348931,Brooklyn,Bedford-Stuyvesant,40.68626,-73.95918,Entire home/apt,125,1,0,,1,0 +23047,129714819,Brooklyn,Gowanus,40.68112,-73.98921,Entire home/apt,475,7,4,0.17,1,72 +23048,129723592,Brooklyn,Crown Heights,40.674040000000005,-73.95616,Private room,50,7,0,,1,0 +23049,125557444,Queens,Jamaica,40.6705,-73.77787,Entire home/apt,80,1,22,0.85,2,305 +23050,129733507,Brooklyn,Bedford-Stuyvesant,40.68391,-73.95783,Entire home/apt,200,3,4,0.17,1,250 +23051,71224013,Brooklyn,Bushwick,40.69445,-73.91161,Private room,70,1,22,0.85,1,331 +23052,127731553,Manhattan,Harlem,40.83168,-73.94743000000001,Private room,52,7,0,,1,0 +23053,119170289,Brooklyn,Bushwick,40.695170000000005,-73.92541,Entire home/apt,150,2,15,0.59,2,0 +23054,14046877,Brooklyn,Bedford-Stuyvesant,40.690870000000004,-73.946,Private room,63,3,0,,1,0 +23055,23149564,Brooklyn,Bushwick,40.696940000000005,-73.91269,Entire home/apt,100,7,0,,1,0 +23056,128338539,Staten Island,Stapleton,40.62981,-74.07998,Private room,50,1,25,1.03,4,73 +23057,119952908,Queens,Long Island City,40.75172,-73.9379,Private room,69,1,3,0.12,1,0 +23058,6356476,Brooklyn,Bedford-Stuyvesant,40.68988,-73.94136999999999,Entire home/apt,116,2,0,,1,0 +23059,129743937,Queens,East Elmhurst,40.75885,-73.86959,Private room,44,1,141,10.19,2,47 +23060,64780571,Manhattan,Washington Heights,40.84773,-73.93251,Private room,60,3,2,0.08,1,0 +23061,7193271,Manhattan,Hell's Kitchen,40.75405,-73.99377,Private room,180,1,7,0.27,1,0 +23062,129794391,Manhattan,East Village,40.723490000000005,-73.9841,Entire home/apt,95,3,2,0.08,1,0 +23063,12033348,Manhattan,Upper West Side,40.79978,-73.96797,Private room,70,7,5,0.19,1,0 +23064,18408365,Manhattan,Kips Bay,40.74518,-73.97929,Entire home/apt,275,3,0,,1,0 +23065,18838868,Manhattan,Midtown,40.74452,-73.98163000000001,Entire home/apt,195,3,14,0.58,1,0 +23066,129812563,Brooklyn,Bushwick,40.69416,-73.90816,Private room,45,7,11,0.42,1,0 +23067,64177548,Manhattan,Hell's Kitchen,40.76,-73.98915,Private room,135,3,65,2.92,1,25 +23068,71515912,Manhattan,Morningside Heights,40.80546,-73.96547,Entire home/apt,145,7,2,0.08,1,0 +23069,10477693,Manhattan,Financial District,40.70738,-74.01281,Entire home/apt,160,2,0,,1,0 +23070,13608839,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94225,Entire home/apt,98,2,0,,1,0 +23071,11881734,Brooklyn,Prospect-Lefferts Gardens,40.65475,-73.96186,Private room,80,1,24,0.92,1,0 +23072,120762452,Manhattan,Murray Hill,40.74954,-73.97686999999999,Entire home/apt,150,30,3,0.2,50,180 +23073,129890157,Bronx,Baychester,40.87192,-73.84676,Private room,60,1,0,,2,0 +23074,119940669,Brooklyn,Williamsburg,40.71255,-73.95745,Private room,430,6,0,,1,0 +23075,12540615,Manhattan,East Village,40.72415,-73.98411,Entire home/apt,128,1,13,0.5,1,0 +23076,63026371,Manhattan,Upper West Side,40.8012,-73.96693,Shared room,55,2,0,,1,0 +23077,129161153,Brooklyn,East Flatbush,40.6327,-73.93921999999999,Private room,60,1,5,0.19,1,342 +23078,59407939,Brooklyn,Bensonhurst,40.60795,-73.98955,Private room,89,1,5,0.19,1,364 +23079,24906403,Manhattan,Harlem,40.818000000000005,-73.94134,Private room,60,2,51,2.26,1,170 +23080,327033,Brooklyn,Bushwick,40.69207,-73.92331,Entire home/apt,145,3,17,0.66,2,0 +23081,127767,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95374,Entire home/apt,97,4,6,0.24,1,0 +23082,127249880,Bronx,Tremont,40.84594,-73.89358,Private room,45,2,49,1.95,2,324 +23083,68852295,Manhattan,Harlem,40.8213,-73.95130999999999,Private room,50,7,0,,1,0 +23084,129927411,Manhattan,Little Italy,40.71886,-73.99746,Private room,110,1,166,6.37,2,71 +23085,30384022,Brooklyn,Williamsburg,40.7107,-73.94295,Private room,65,7,1,0.05,1,0 +23086,68472942,Brooklyn,Williamsburg,40.70943,-73.95064,Entire home/apt,175,3,3,0.28,1,364 +23087,41580455,Manhattan,Washington Heights,40.85115,-73.93703000000001,Private room,80,4,4,0.15,1,0 +23088,128707088,Brooklyn,Downtown Brooklyn,40.70001,-73.98969,Entire home/apt,325,2,94,3.67,1,166 +23089,14444,Brooklyn,Bedford-Stuyvesant,40.69347,-73.955,Entire home/apt,126,20,0,,2,0 +23090,40225443,Manhattan,Lower East Side,40.720079999999996,-73.98268,Private room,104,3,28,1.07,1,0 +23091,14885787,Brooklyn,Williamsburg,40.71869,-73.95358,Entire home/apt,150,2,2,0.08,1,0 +23092,130005087,Brooklyn,Crown Heights,40.67371,-73.94537,Private room,85,5,0,,1,0 +23093,130013537,Brooklyn,Crown Heights,40.6746,-73.94549,Private room,45,2,19,0.73,1,0 +23094,130021104,Bronx,Williamsbridge,40.873090000000005,-73.86326,Private room,60,1,5,0.19,1,0 +23095,1038989,Brooklyn,Williamsburg,40.7097,-73.94001,Private room,120,2,3,0.14,2,0 +23096,130035533,Brooklyn,Brooklyn Heights,40.69364,-73.99467,Entire home/apt,200,2,80,3.14,1,271 +23097,22541573,Manhattan,East Village,40.733340000000005,-73.9897,Entire home/apt,235,30,1,0.07,87,307 +23098,104691618,Manhattan,Hell's Kitchen,40.75725,-73.9959,Entire home/apt,180,2,36,1.4,1,2 +23099,17859338,Brooklyn,Bedford-Stuyvesant,40.68416,-73.9551,Entire home/apt,160,3,59,2.42,2,88 +23100,97018938,Brooklyn,Canarsie,40.64005,-73.90916,Private room,42,1,29,1.13,2,35 +23101,51501835,Manhattan,Hell's Kitchen,40.76515,-73.99423,Entire home/apt,135,30,0,,31,337 +23102,4370956,Brooklyn,Fort Greene,40.6862,-73.96973,Entire home/apt,175,3,3,0.12,1,0 +23103,130062635,Manhattan,SoHo,40.72667,-74.00179,Entire home/apt,164,2,2,0.08,1,0 +23104,63749946,Brooklyn,Crown Heights,40.67324,-73.92501999999999,Entire home/apt,147,20,49,1.94,3,204 +23105,16575725,Brooklyn,Fort Greene,40.693690000000004,-73.98074,Entire home/apt,120,2,7,0.29,1,0 +23106,6646682,Brooklyn,Williamsburg,40.71232,-73.96067,Entire home/apt,88,4,6,0.24,1,1 +23107,62734,Brooklyn,Gowanus,40.67862,-73.9923,Entire home/apt,120,30,2,0.19,2,342 +23108,9913035,Manhattan,Lower East Side,40.7218,-73.98723000000001,Private room,63,30,8,0.31,3,237 +23109,2434499,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95265,Entire home/apt,114,7,0,,1,0 +23110,59117179,Manhattan,Roosevelt Island,40.76364,-73.94881,Private room,110,1,48,1.86,1,342 +23111,129942781,Queens,Rego Park,40.72446,-73.85636,Private room,60,3,46,1.77,1,48 +23112,9472223,Manhattan,Harlem,40.80393,-73.95674,Private room,55,7,0,,3,0 +23113,20662116,Brooklyn,Park Slope,40.666340000000005,-73.97806,Entire home/apt,165,4,41,1.63,1,170 +23114,66051549,Manhattan,Midtown,40.7523,-73.97287,Private room,105,4,1,0.04,1,0 +23115,52084781,Queens,Glendale,40.69252,-73.89533,Entire home/apt,150,3,22,0.93,1,292 +23116,47485343,Brooklyn,Sunset Park,40.65003,-74.00657,Entire home/apt,75,3,2,0.08,1,0 +23117,9285314,Brooklyn,Bushwick,40.69453,-73.93053,Private room,150,3,0,,1,93 +23118,130185165,Bronx,Wakefield,40.88702,-73.86575,Private room,60,1,39,1.57,1,360 +23119,130186732,Brooklyn,Crown Heights,40.675740000000005,-73.94722,Entire home/apt,90,31,70,2.79,1,263 +23120,49360262,Queens,Woodside,40.74204,-73.90639,Private room,55,2,3,0.12,1,0 +23121,4621817,Queens,Astoria,40.75865,-73.91736999999999,Private room,150,2,2,0.08,1,87 +23122,28648021,Brooklyn,Crown Heights,40.67615,-73.94752,Private room,41,3,1,0.04,1,0 +23123,130204296,Manhattan,Financial District,40.70817,-74.00675,Private room,115,1,5,0.19,1,0 +23124,67895564,Brooklyn,Bushwick,40.70373,-73.92848000000001,Entire home/apt,100,3,3,0.12,1,0 +23125,10113673,Brooklyn,Williamsburg,40.71432,-73.95629,Entire home/apt,155,2,2,0.08,1,0 +23126,643120,Brooklyn,Williamsburg,40.71725,-73.9544,Private room,52,5,111,4.26,4,10 +23127,229109,Brooklyn,Williamsburg,40.71365,-73.94821999999999,Private room,80,4,9,0.36,2,36 +23128,108546781,Manhattan,Upper East Side,40.779579999999996,-73.95025,Entire home/apt,75,15,5,0.2,1,1 +23129,8076786,Brooklyn,Sunset Park,40.6589,-74.00018,Private room,150,2,6,0.27,3,365 +23130,67768251,Manhattan,Upper West Side,40.78293,-73.97636,Private room,40,30,8,0.42,3,204 +23131,53560822,Manhattan,Harlem,40.82425,-73.9552,Entire home/apt,95,2,49,1.92,1,14 +23132,30487854,Brooklyn,Williamsburg,40.71219,-73.96085,Private room,50,5,16,0.62,2,10 +23133,81066021,Brooklyn,Williamsburg,40.70608,-73.9313,Entire home/apt,158,3,2,0.08,2,324 +23134,40238772,Brooklyn,Williamsburg,40.70884,-73.95425,Private room,60,20,2,0.08,1,0 +23135,100784323,Manhattan,Washington Heights,40.83543,-73.94372,Private room,50,2,14,0.54,1,0 +23136,112239929,Bronx,Norwood,40.87315,-73.87925,Private room,65,1,0,,1,0 +23137,130307692,Manhattan,Washington Heights,40.85618,-73.93085,Private room,44,2,7,0.27,1,0 +23138,130319645,Brooklyn,Sheepshead Bay,40.60924,-73.95555999999999,Private room,30,1,0,,1,0 +23139,123355776,Brooklyn,Bushwick,40.703359999999996,-73.92657,Entire home/apt,184,1,29,1.12,1,0 +23140,2733815,Brooklyn,Red Hook,40.67785,-74.00735,Entire home/apt,175,30,14,0.55,1,0 +23141,10805053,Brooklyn,Boerum Hill,40.68602,-73.98311,Entire home/apt,300,2,4,0.37,1,311 +23142,130331205,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94699,Entire home/apt,99,2,7,2.08,1,68 +23143,2000711,Brooklyn,Bedford-Stuyvesant,40.689240000000005,-73.92818,Entire home/apt,137,5,86,3.34,1,191 +23144,128086219,Queens,Rosedale,40.652190000000004,-73.73729,Private room,49,2,61,2.36,2,65 +23145,16481892,Brooklyn,Prospect-Lefferts Gardens,40.66325,-73.94978,Entire home/apt,75,7,0,,1,0 +23146,182461,Queens,Ozone Park,40.67555,-73.85653,Private room,39,2,21,0.81,2,0 +23147,7425132,Brooklyn,Kensington,40.63491,-73.96795999999999,Entire home/apt,59,5,7,0.8,1,140 +23148,45763784,Brooklyn,Clinton Hill,40.68307,-73.96595,Entire home/apt,229,5,11,1.22,2,0 +23149,45763784,Brooklyn,Clinton Hill,40.68499,-73.96524000000001,Entire home/apt,825,3,2,0.19,2,44 +23150,68762417,Manhattan,East Harlem,40.79376,-73.94679000000001,Private room,125,1,19,0.73,4,115 +23151,22384027,Brooklyn,Crown Heights,40.67064,-73.9178,Private room,39,1,41,1.57,10,218 +23152,37078449,Manhattan,Harlem,40.80722,-73.95614,Entire home/apt,130,1,2,0.08,1,0 +23153,110520215,Manhattan,Upper West Side,40.80066,-73.96813,Private room,500,1,0,,1,173 +23154,2469662,Brooklyn,Bushwick,40.702490000000004,-73.93025,Entire home/apt,80,2,5,0.19,1,0 +23155,1485117,Brooklyn,Greenpoint,40.72186,-73.94588,Entire home/apt,125,2,8,0.31,1,0 +23156,130400901,Brooklyn,Williamsburg,40.70398,-73.93298,Entire home/apt,185,2,39,1.5,1,0 +23157,2856748,Manhattan,Midtown,40.75403,-73.96343,Entire home/apt,225,30,0,,49,364 +23158,493545,Brooklyn,Crown Heights,40.67305,-73.94788,Private room,90,1,3,0.34,2,179 +23159,120762452,Manhattan,Murray Hill,40.74863,-73.9767,Entire home/apt,150,30,0,,50,365 +23160,8010331,Manhattan,East Harlem,40.80324,-73.9352,Entire home/apt,120,2,8,0.34,1,11 +23161,8993084,Brooklyn,Bedford-Stuyvesant,40.69023,-73.95428000000001,Private room,0,4,1,0.05,4,28 +23162,6676046,Brooklyn,Greenpoint,40.72463,-73.95227,Private room,65,5,3,0.13,1,0 +23163,130452689,Brooklyn,Greenpoint,40.72357,-73.95057,Entire home/apt,225,2,2,0.09,1,34 +23164,73214623,Brooklyn,Williamsburg,40.71627,-73.93956999999999,Private room,100,7,1,0.28,1,365 +23165,130461656,Manhattan,Harlem,40.81372,-73.95612,Entire home/apt,195,1,51,1.96,1,67 +23166,51459559,Queens,Astoria,40.75777,-73.91577,Private room,69,5,17,0.65,2,208 +23167,109106746,Manhattan,Upper West Side,40.799479999999996,-73.96314,Private room,75,1,5,0.2,1,0 +23168,130473272,Brooklyn,Prospect Heights,40.6806,-73.97164000000001,Entire home/apt,150,2,140,5.61,1,94 +23169,130493959,Staten Island,Port Richmond,40.63748,-74.13495999999999,Private room,40,1,63,2.42,1,343 +23170,130496399,Manhattan,East Village,40.73193,-73.98861,Entire home/apt,200,3,0,,1,0 +23171,119838600,Manhattan,Upper West Side,40.7932,-73.96385,Entire home/apt,260,3,1,0.05,1,0 +23172,101304664,Manhattan,Upper West Side,40.80225,-73.96633,Private room,60,3,4,0.15,1,16 +23173,130524170,Brooklyn,South Slope,40.66615,-73.98554,Entire home/apt,150,2,88,3.53,1,0 +23174,65744549,Manhattan,Hell's Kitchen,40.75997,-73.99923000000001,Entire home/apt,254,1,18,0.72,1,0 +23175,103265024,Manhattan,East Village,40.72681,-73.98963,Shared room,58,1,0,,1,0 +23176,169653,Manhattan,Upper West Side,40.80005,-73.9701,Entire home/apt,295,3,3,0.27,1,0 +23177,31482341,Manhattan,Inwood,40.86854,-73.9182,Private room,45,1,2,0.11,2,0 +23178,130582015,Manhattan,Washington Heights,40.85391,-73.93649,Private room,50,3,18,1.78,1,298 +23179,3409436,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.9603,Entire home/apt,80,4,2,0.08,1,0 +23180,1649108,Brooklyn,Vinegar Hill,40.70257,-73.98053,Private room,80,1,53,2.33,3,21 +23181,30237517,Queens,Forest Hills,40.73526,-73.85065,Entire home/apt,88,3,6,0.27,6,0 +23182,120762452,Manhattan,Murray Hill,40.74819,-73.976,Entire home/apt,150,30,3,0.14,50,180 +23183,27582777,Manhattan,Morningside Heights,40.803709999999995,-73.96324,Private room,70,3,16,0.7,1,0 +23184,24387853,Brooklyn,Greenpoint,40.72247,-73.95108,Private room,98,1,1,0.04,1,0 +23185,1890427,Brooklyn,Williamsburg,40.71813,-73.94502,Entire home/apt,250,2,9,0.36,1,0 +23186,30237517,Queens,Forest Hills,40.73437,-73.85226999999999,Entire home/apt,238,3,2,0.09,6,188 +23187,114975592,Queens,Springfield Gardens,40.66413,-73.76651,Private room,100,1,15,0.62,4,84 +23188,41658748,Manhattan,Gramercy,40.73742,-73.98219,Entire home/apt,265,2,58,2.65,3,323 +23189,60511673,Manhattan,Theater District,40.76044,-73.98321,Entire home/apt,399,10,0,,1,64 +23190,130667097,Brooklyn,Williamsburg,40.70492,-73.93341,Private room,55,1,25,0.96,2,364 +23191,2544425,Manhattan,East Village,40.733340000000005,-73.98904,Entire home/apt,160,7,35,1.4,1,7 +23192,40428152,Brooklyn,Williamsburg,40.71335,-73.94115,Entire home/apt,350,5,0,,1,0 +23193,779551,Queens,Long Island City,40.75607,-73.93021999999999,Private room,100,2,91,3.54,2,21 +23194,2856748,Manhattan,Hell's Kitchen,40.76617,-73.98445,Entire home/apt,184,30,0,,49,364 +23195,2856748,Manhattan,Midtown,40.757940000000005,-73.96143000000001,Entire home/apt,315,30,0,,49,364 +23196,1156763,Brooklyn,Williamsburg,40.713640000000005,-73.96446999999999,Entire home/apt,250,3,37,2.35,1,174 +23197,130735852,Brooklyn,Carroll Gardens,40.6737,-73.99891,Private room,77,2,18,0.77,1,1 +23198,126897352,Brooklyn,Bushwick,40.70286,-73.91884,Entire home/apt,180,29,31,1.19,2,147 +23199,120762452,Manhattan,Murray Hill,40.74814,-73.97693000000001,Entire home/apt,150,30,1,0.56,50,180 +23200,2007724,Brooklyn,Crown Heights,40.67731,-73.94615999999999,Entire home/apt,150,5,9,0.35,1,78 +23201,130774060,Brooklyn,Williamsburg,40.709590000000006,-73.95747,Entire home/apt,165,6,10,0.39,1,18 +23202,130774685,Brooklyn,Bedford-Stuyvesant,40.68843,-73.92536,Entire home/apt,125,3,96,3.87,1,1 +23203,95786,Manhattan,East Village,40.727909999999994,-73.98929,Entire home/apt,150,10,5,0.24,1,0 +23204,110349355,Brooklyn,Bushwick,40.704390000000004,-73.92619,Private room,51,3,5,0.19,1,0 +23205,33583621,Brooklyn,South Slope,40.66458,-73.98722,Private room,53,3,70,2.82,1,256 +23206,13907788,Manhattan,Greenwich Village,40.73016,-74.00137,Private room,95,1,9,0.36,1,0 +23207,55377720,Manhattan,Morningside Heights,40.812329999999996,-73.95716999999999,Private room,69,3,0,,1,0 +23208,120762452,Manhattan,Murray Hill,40.75023,-73.97664,Entire home/apt,195,30,1,0.05,50,365 +23209,4099467,Manhattan,Lower East Side,40.72146,-73.98838,Entire home/apt,125,1,2,0.08,1,0 +23210,38609043,Manhattan,Greenwich Village,40.73193,-73.99931,Entire home/apt,299,2,28,1.15,1,64 +23211,12345174,Brooklyn,Williamsburg,40.71816,-73.95799,Private room,146,2,14,0.62,1,0 +23212,26738513,Brooklyn,Bushwick,40.69319,-73.91642,Private room,55,3,49,1.9,3,13 +23213,66941336,Brooklyn,Williamsburg,40.712579999999996,-73.96341,Private room,50,2,6,0.24,1,2 +23214,32209352,Brooklyn,Bushwick,40.69573,-73.91376,Private room,65,2,17,1.21,2,349 +23215,51001918,Manhattan,West Village,40.737759999999994,-73.99794,Entire home/apt,165,4,1,0.04,1,0 +23216,4297106,Brooklyn,Bushwick,40.69079,-73.9163,Private room,41,30,56,2.21,2,280 +23217,130822245,Queens,Rego Park,40.72661,-73.86046,Entire home/apt,70,1,89,3.42,1,157 +23218,89071431,Bronx,Mount Eden,40.84473,-73.91175,Private room,55,2,112,4.65,1,271 +23219,2482085,Brooklyn,Bedford-Stuyvesant,40.68415,-73.95640999999999,Private room,55,2,0,,1,0 +23220,130835383,Manhattan,Chelsea,40.75229,-73.9955,Entire home/apt,250,2,1,0.04,1,0 +23221,2435941,Manhattan,Harlem,40.824020000000004,-73.94537,Private room,73,2,24,0.93,1,0 +23222,126159726,Brooklyn,Bushwick,40.69962,-73.91646,Private room,63,3,96,3.7,1,282 +23223,28649974,Manhattan,Upper West Side,40.801520000000004,-73.96696,Private room,50,1,0,,1,0 +23224,5962328,Queens,Flushing,40.758720000000004,-73.82174,Entire home/apt,183,30,2,0.19,15,365 +23225,2902737,Brooklyn,Williamsburg,40.71015,-73.94747,Entire home/apt,91,31,0,,1,68 +23226,130897041,Queens,Arverne,40.58934,-73.80055,Entire home/apt,250,2,48,1.93,1,280 +23227,125871624,Brooklyn,Crown Heights,40.669309999999996,-73.95215,Private room,55,2,3,0.12,1,0 +23228,58528354,Brooklyn,Crown Heights,40.67537,-73.91821999999999,Entire home/apt,85,2,42,1.71,1,147 +23229,6752799,Manhattan,East Harlem,40.79712,-73.94689,Private room,50,25,0,,2,71 +23230,2978784,Brooklyn,Sunset Park,40.65379,-74.00272,Entire home/apt,150,7,6,0.25,1,1 +23231,3754948,Manhattan,Lower East Side,40.72007,-73.98385,Entire home/apt,305,2,6,0.43,1,66 +23232,130974654,Queens,Cambria Heights,40.68722,-73.73254,Private room,80,5,23,1.0,1,83 +23233,120762452,Manhattan,Murray Hill,40.750440000000005,-73.9753,Entire home/apt,150,30,4,0.18,50,180 +23234,71849302,Brooklyn,Williamsburg,40.70798,-73.93652,Shared room,64,1,69,3.04,1,81 +23235,130982506,Manhattan,Chelsea,40.75378,-74.00274,Private room,68,14,0,,1,0 +23236,51380878,Brooklyn,Flatbush,40.65068,-73.96073,Private room,31,1,83,3.28,2,37 +23237,8833885,Brooklyn,Greenpoint,40.72528,-73.94467,Private room,125,1,1,0.07,2,0 +23238,23572402,Manhattan,Midtown,40.757540000000006,-73.96177,Entire home/apt,275,3,0,,1,21 +23239,120762452,Manhattan,Murray Hill,40.748909999999995,-73.97589,Entire home/apt,150,30,2,0.09,50,365 +23240,98038838,Manhattan,Financial District,40.70833,-74.01068000000001,Private room,70,3,18,0.69,1,0 +23241,107169456,Brooklyn,Flatbush,40.64561,-73.96961999999999,Private room,90,1,46,1.8,1,260 +23242,129927411,Manhattan,Chinatown,40.71682,-73.99843,Private room,130,1,141,5.44,2,76 +23243,31804021,Brooklyn,South Slope,40.664120000000004,-73.98161999999999,Entire home/apt,390,10,4,0.17,1,115 +23244,113805886,Manhattan,Upper East Side,40.77896,-73.95146,Entire home/apt,160,31,6,0.29,33,338 +23245,41382247,Manhattan,Hell's Kitchen,40.76011,-73.98828,Entire home/apt,275,1,0,,1,0 +23246,27522582,Brooklyn,Bushwick,40.70263,-73.91568000000001,Private room,43,1,4,0.15,3,0 +23247,13347167,Manhattan,Upper East Side,40.77299,-73.95745,Entire home/apt,119,30,3,0.14,29,327 +23248,74697676,Brooklyn,Sheepshead Bay,40.59841,-73.96122,Private room,50,5,40,1.57,1,321 +23249,76353083,Brooklyn,Bergen Beach,40.629290000000005,-73.90821,Entire home/apt,115,4,9,0.36,1,50 +23250,22875538,Brooklyn,Bushwick,40.70819,-73.92005,Private room,73,1,63,2.45,2,0 +23251,65407018,Brooklyn,Greenpoint,40.722840000000005,-73.93670999999999,Private room,85,5,45,1.79,5,355 +23252,9130040,Brooklyn,East Flatbush,40.663140000000006,-73.93299,Private room,89,1,8,0.61,6,365 +23253,131109595,Manhattan,East Village,40.72772,-73.98091,Entire home/apt,75,4,0,,1,0 +23254,48146336,Manhattan,Hell's Kitchen,40.761359999999996,-73.99309000000001,Entire home/apt,160,30,4,0.17,20,313 +23255,131115416,Staten Island,Emerson Hill,40.60642,-74.11756,Entire home/apt,49,1,43,1.67,1,64 +23256,52777892,Manhattan,Upper East Side,40.768440000000005,-73.95340999999999,Entire home/apt,10,3,10,0.39,1,0 +23257,95564806,Brooklyn,Brownsville,40.66032,-73.91341,Private room,55,2,58,2.25,3,0 +23258,131180798,Brooklyn,Bath Beach,40.59855,-74.0067,Entire home/apt,119,2,51,2.01,1,160 +23259,14480781,Brooklyn,Crown Heights,40.675779999999996,-73.95491,Entire home/apt,85,30,20,0.82,1,182 +23260,3203397,Manhattan,West Village,40.73321,-74.00242,Entire home/apt,350,1,105,4.63,1,0 +23261,3714721,Manhattan,SoHo,40.72681,-74.00771,Private room,76,2,60,2.37,2,116 +23262,131204454,Brooklyn,Canarsie,40.639590000000005,-73.88158,Entire home/apt,46,1,58,2.29,1,80 +23263,78299086,Brooklyn,Williamsburg,40.70858,-73.9509,Private room,95,5,0,,1,0 +23264,3323956,Brooklyn,Crown Heights,40.67522,-73.94677,Entire home/apt,79,4,2,0.08,1,0 +23265,34676783,Brooklyn,Greenpoint,40.71966,-73.95428000000001,Entire home/apt,350,2,5,0.2,1,0 +23266,130815919,Manhattan,SoHo,40.72633,-74.00206999999999,Entire home/apt,205,2,109,4.29,1,32 +23267,19424541,Manhattan,Upper East Side,40.76749,-73.96246,Private room,190,1,15,0.68,2,63 +23268,2294171,Brooklyn,Clinton Hill,40.68318,-73.96067,Entire home/apt,120,2,1,0.04,1,0 +23269,10355011,Manhattan,Financial District,40.71017,-74.00924,Private room,135,3,76,2.93,1,338 +23270,31979360,Brooklyn,Midwood,40.61421,-73.95347,Entire home/apt,111,90,0,,1,365 +23271,57821225,Brooklyn,Midwood,40.62017,-73.96514,Entire home/apt,85,7,1,0.04,1,0 +23272,131255262,Manhattan,Upper West Side,40.80292,-73.96692,Private room,80,1,42,1.7,1,0 +23273,7635592,Manhattan,Washington Heights,40.85031,-73.93901,Private room,49,7,10,0.46,1,76 +23274,131293304,Manhattan,Harlem,40.81711,-73.93563,Private room,51,2,21,0.87,1,0 +23275,50778925,Manhattan,Chelsea,40.74154,-74.00161,Entire home/apt,149,5,6,0.24,1,0 +23276,46113651,Brooklyn,Williamsburg,40.71275,-73.95665,Private room,55,1,0,,1,0 +23277,59884496,Manhattan,Upper West Side,40.77127,-73.98191,Entire home/apt,270,2,8,0.43,1,0 +23278,108922928,Bronx,Allerton,40.859609999999996,-73.86361,Private room,49,3,1,0.04,1,0 +23279,42422050,Manhattan,East Village,40.72696,-73.97433000000001,Private room,75,2,19,0.99,2,303 +23280,835019,Manhattan,Harlem,40.82265,-73.94686,Private room,55,21,7,0.29,1,286 +23281,129890157,Bronx,Allerton,40.87063,-73.84895999999999,Private room,70,1,3,0.12,2,0 +23282,79105834,Queens,Long Island City,40.75575,-73.93236,Private room,54,1,73,2.89,9,279 +23283,516015,Brooklyn,Williamsburg,40.70648,-73.95685999999999,Private room,55,5,2,0.08,1,0 +23284,764549,Manhattan,Nolita,40.72184,-73.99471,Private room,142,2,44,1.82,1,246 +23285,131354448,Queens,Flushing,40.754020000000004,-73.81317,Private room,50,2,54,2.09,4,174 +23286,109526714,Queens,East Elmhurst,40.76078,-73.87661,Private room,50,1,97,3.86,2,149 +23287,130618404,Brooklyn,Crown Heights,40.67155,-73.94189,Entire home/apt,109,1,93,3.66,1,79 +23288,131374030,Manhattan,Hell's Kitchen,40.763870000000004,-73.99117,Private room,100,1,9,0.35,1,0 +23289,55813598,Brooklyn,Gravesend,40.60788,-73.97454,Private room,40,1,95,3.69,2,354 +23290,131383679,Manhattan,Upper West Side,40.78663,-73.97844,Private room,100,1,14,0.55,1,24 +23291,71146310,Queens,Glendale,40.70515,-73.8945,Entire home/apt,99,4,62,2.41,1,81 +23292,131392140,Queens,Astoria,40.77407,-73.92262,Entire home/apt,125,2,49,1.99,5,86 +23293,1652471,Brooklyn,Bedford-Stuyvesant,40.68607,-73.95784,Private room,75,2,5,0.2,1,16 +23294,4463379,Brooklyn,Gowanus,40.67718,-73.99656,Entire home/apt,350,3,0,,1,0 +23295,128579948,Manhattan,Upper East Side,40.76439,-73.96569000000001,Entire home/apt,250,2,85,3.28,2,306 +23296,9293730,Manhattan,Upper West Side,40.78569,-73.97048000000001,Entire home/apt,79,30,1,0.05,16,329 +23297,1750299,Brooklyn,Williamsburg,40.711729999999996,-73.94417,Private room,90,5,13,0.6,2,255 +23298,920237,Manhattan,Lower East Side,40.71826,-73.98455,Private room,80,2,42,1.64,1,71 +23299,131476188,Brooklyn,Flatbush,40.64917,-73.96236,Private room,29,3,0,,1,0 +23300,131476092,Queens,Long Island City,40.761509999999994,-73.92643000000001,Entire home/apt,85,4,13,0.51,1,0 +23301,20559017,Manhattan,Upper East Side,40.76312,-73.96045,Private room,55,30,1,0.05,9,321 +23302,26898157,Manhattan,Lower East Side,40.71921,-73.99238000000001,Private room,150,3,77,3.1,1,59 +23303,13096043,Brooklyn,Williamsburg,40.71666,-73.96644,Entire home/apt,250,4,40,1.58,1,41 +23304,15017590,Manhattan,Harlem,40.828959999999995,-73.94223000000001,Private room,50,1,2,0.08,1,0 +23305,45605434,Queens,Long Island City,40.76365,-73.93191999999999,Private room,60,30,4,0.16,1,0 +23306,19339271,Queens,Long Island City,40.74752,-73.92264,Private room,60,1,7,0.32,1,0 +23307,57165692,Bronx,Baychester,40.87188,-73.842,Entire home/apt,75,4,69,2.68,2,119 +23308,120762452,Manhattan,Murray Hill,40.74966,-73.97601,Entire home/apt,175,30,0,,50,180 +23309,78711394,Brooklyn,Bedford-Stuyvesant,40.692440000000005,-73.94575,Private room,33,6,0,,1,0 +23310,120762452,Manhattan,Murray Hill,40.7496,-73.97609,Entire home/apt,175,30,5,0.21,50,147 +23311,62734,Brooklyn,Gowanus,40.67882,-73.99166,Entire home/apt,119,60,4,0.19,2,156 +23312,13347167,Manhattan,Upper East Side,40.77296,-73.95711,Entire home/apt,148,30,2,0.52,29,264 +23313,33003994,Brooklyn,Williamsburg,40.707409999999996,-73.94285,Private room,77,6,30,1.19,1,71 +23314,91361325,Manhattan,Gramercy,40.73318,-73.98436,Entire home/apt,118,3,103,4.02,1,17 +23315,11163128,Manhattan,Hell's Kitchen,40.762209999999996,-73.98891,Private room,350,3,28,1.11,1,76 +23316,25822424,Manhattan,Upper West Side,40.79166,-73.97319,Entire home/apt,170,3,0,,1,0 +23317,131530387,Queens,Astoria,40.75704,-73.92135,Private room,60,1,129,5.11,1,95 +23318,131530792,Brooklyn,Sheepshead Bay,40.59019,-73.96123,Entire home/apt,105,2,22,0.87,1,0 +23319,4175606,Brooklyn,Bushwick,40.696709999999996,-73.92628,Entire home/apt,100,4,25,1.05,1,56 +23320,131354448,Queens,Flushing,40.753640000000004,-73.8108,Private room,50,2,51,1.98,4,156 +23321,73866735,Brooklyn,Williamsburg,40.71066,-73.94126999999999,Private room,65,1,1,1.0,1,110 +23322,5374369,Brooklyn,Carroll Gardens,40.68329,-73.99764,Entire home/apt,245,3,24,0.97,1,13 +23323,71149842,Manhattan,East Village,40.7291,-73.97941,Private room,80,1,8,0.31,2,0 +23324,3291930,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,155,1,0,,1,0 +23325,56265076,Queens,Kew Gardens Hills,40.7224,-73.81039,Private room,40,6,3,0.3,2,89 +23326,131621761,Brooklyn,East Flatbush,40.65292,-73.94269,Private room,50,1,0,,1,0 +23327,80333891,Brooklyn,Park Slope,40.67386,-73.98439,Private room,40,7,2,0.08,2,0 +23328,65933105,Manhattan,West Village,40.73267,-74.00404,Entire home/apt,254,2,4,0.17,1,0 +23329,11361046,Brooklyn,Crown Heights,40.66847,-73.94981,Private room,80,5,18,0.72,1,312 +23330,131635044,Brooklyn,Bedford-Stuyvesant,40.6792,-73.93070999999999,Entire home/apt,299,2,59,2.31,1,180 +23331,9898029,Brooklyn,East Flatbush,40.6506,-73.92553000000001,Private room,67,3,6,0.27,5,307 +23332,27552154,Manhattan,Upper East Side,40.76275,-73.96093,Private room,110,2,9,0.36,2,0 +23333,15474495,Manhattan,Chelsea,40.73884,-73.99767,Private room,150,1,1,0.04,1,0 +23334,31314659,Manhattan,East Harlem,40.79439,-73.94129000000001,Private room,75,7,0,,1,0 +23335,24589216,Brooklyn,Williamsburg,40.708490000000005,-73.9619,Private room,80,1,19,1.11,2,0 +23336,19001247,Brooklyn,Carroll Gardens,40.68333,-73.99802,Entire home/apt,800,3,1,0.05,1,0 +23337,2988712,Bronx,Mount Hope,40.85152,-73.90374,Entire home/apt,48,90,2,0.16,7,93 +23338,37032324,Brooklyn,Bedford-Stuyvesant,40.69334,-73.95079,Private room,52,6,5,0.2,1,0 +23339,34649502,Manhattan,Upper East Side,40.77948,-73.95152,Entire home/apt,200,2,1,0.04,1,0 +23340,45601111,Queens,Laurelton,40.669709999999995,-73.7473,Private room,37,2,8,0.37,5,0 +23341,9484439,Manhattan,Battery Park City,40.71842,-74.01523,Entire home/apt,200,1,4,0.16,1,0 +23342,131684478,Staten Island,West Brighton,40.63452,-74.11707,Private room,45,2,47,1.89,3,207 +23343,4440278,Brooklyn,Williamsburg,40.71143,-73.94009,Private room,119,3,10,0.39,3,180 +23344,123646786,Queens,Flushing,40.75575,-73.83261,Private room,60,2,45,1.77,2,45 +23345,127560222,Queens,Long Island City,40.75578,-73.93666,Private room,259,2,3,0.22,2,0 +23346,17766289,Bronx,Kingsbridge,40.86707,-73.90711999999999,Private room,55,5,3,0.12,2,364 +23347,50600973,Brooklyn,Bushwick,40.696740000000005,-73.92971999999999,Shared room,25,1,105,4.22,7,82 +23348,14614795,Manhattan,Upper East Side,40.76615,-73.95427,Private room,90,2,1,0.04,1,0 +23349,80769114,Queens,Flushing,40.75851,-73.8203,Entire home/apt,98,1,34,1.38,1,55 +23350,9492212,Brooklyn,Park Slope,40.67075,-73.9769,Private room,149,1,0,,4,0 +23351,81128193,Manhattan,Midtown,40.753009999999996,-73.97198,Private room,515,3,0,,1,0 +23352,33075648,Brooklyn,Bushwick,40.69292,-73.9094,Entire home/apt,137,4,61,2.36,1,126 +23353,131772382,Brooklyn,Bushwick,40.69297,-73.91788000000001,Entire home/apt,70,2,93,3.68,1,142 +23354,11555258,Brooklyn,Kensington,40.64249,-73.97105,Shared room,60,4,1,0.09,2,0 +23355,7093861,Manhattan,Upper West Side,40.773559999999996,-73.98007,Entire home/apt,200,3,22,0.9,1,28 +23356,20438455,Brooklyn,Borough Park,40.63993,-73.98209,Private room,50,2,118,4.66,2,45 +23357,119170289,Brooklyn,Bushwick,40.695009999999996,-73.92538,Private room,45,3,4,0.16,2,8 +23358,87315657,Manhattan,Hell's Kitchen,40.7625,-73.99568000000001,Entire home/apt,125,2,6,0.32,1,0 +23359,131783806,Manhattan,Washington Heights,40.85152,-73.93804,Private room,45,2,8,0.31,1,0 +23360,32880142,Brooklyn,Bushwick,40.70919,-73.92158,Private room,45,2,0,,1,0 +23361,438083,Manhattan,Harlem,40.80115,-73.95262,Entire home/apt,112,3,1,0.04,1,0 +23362,131792379,Queens,Astoria,40.76834,-73.92093,Private room,55,1,0,,1,0 +23363,6759067,Manhattan,Upper East Side,40.77127,-73.95493,Entire home/apt,105,2,21,0.82,1,0 +23364,22781364,Manhattan,Greenwich Village,40.73002,-73.99804,Entire home/apt,175,3,3,0.12,1,0 +23365,33977124,Brooklyn,Bedford-Stuyvesant,40.68704,-73.95565,Private room,65,2,0,,2,189 +23366,17419817,Brooklyn,Fort Greene,40.68707,-73.97345,Private room,96,2,11,0.43,1,0 +23367,45777549,Manhattan,Inwood,40.86739,-73.92,Entire home/apt,78,4,7,0.29,1,0 +23368,23568850,Brooklyn,Williamsburg,40.715920000000004,-73.95666,Private room,120,3,4,0.16,1,0 +23369,27982346,Manhattan,East Harlem,40.797290000000004,-73.93536999999999,Private room,49,7,5,0.21,1,0 +23370,131354448,Queens,Flushing,40.7547,-73.81238,Private room,66,2,56,2.27,4,63 +23371,1776707,Bronx,Throgs Neck,40.83051,-73.82511,Entire home/apt,95,1,266,10.34,1,345 +23372,60626720,Brooklyn,Bushwick,40.69811,-73.9311,Private room,43,3,2,0.08,1,0 +23373,45935367,Brooklyn,Williamsburg,40.707359999999994,-73.95571,Private room,70,1,39,2.03,1,2 +23374,6252064,Brooklyn,Sunset Park,40.659690000000005,-73.99248,Entire home/apt,265,2,20,0.79,1,41 +23375,126176275,Brooklyn,East Flatbush,40.636829999999996,-73.93123,Private room,44,4,24,1.07,4,87 +23376,44679058,Brooklyn,Bushwick,40.69976,-73.9319,Private room,35,2,2,0.08,1,0 +23377,32613511,Manhattan,Midtown,40.743840000000006,-73.98243000000001,Shared room,55,1,1,0.04,1,0 +23378,779551,Queens,Long Island City,40.75844,-73.93154,Private room,100,2,13,0.51,2,0 +23379,131858158,Brooklyn,Bensonhurst,40.60683,-73.99743000000001,Entire home/apt,123,2,62,2.48,2,131 +23380,15553988,Manhattan,Harlem,40.82843,-73.94672,Entire home/apt,100,3,4,0.16,1,0 +23381,113805886,Manhattan,Upper East Side,40.77895,-73.94974,Entire home/apt,200,31,3,0.19,33,281 +23382,97018938,Brooklyn,Canarsie,40.63895,-73.90868,Private room,50,1,74,2.88,2,179 +23383,57230304,Queens,Elmhurst,40.73218,-73.88461,Private room,75,1,1,0.46,3,364 +23384,131910116,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93607,Entire home/apt,225,3,34,1.52,1,258 +23385,87371335,Brooklyn,Bedford-Stuyvesant,40.685390000000005,-73.94973,Private room,51,2,39,1.55,1,276 +23386,3955342,Brooklyn,Sunset Park,40.64478,-74.01318,Private room,45,7,3,0.12,1,0 +23387,6271674,Brooklyn,Crown Heights,40.66482,-73.95345,Entire home/apt,125,3,2,0.11,1,0 +23388,92650708,Manhattan,Upper East Side,40.76422,-73.96611999999999,Private room,88,1,59,2.34,1,34 +23389,10655479,Brooklyn,East Flatbush,40.6497,-73.94754,Private room,70,2,85,3.33,1,16 +23390,20812159,Manhattan,Harlem,40.80214,-73.95658,Private room,55,2,8,0.31,1,0 +23391,35405054,Queens,Long Island City,40.75027,-73.94236,Entire home/apt,104,1,7,0.28,1,0 +23392,131985573,Manhattan,Chelsea,40.75118,-73.99902,Private room,90,2,39,1.56,1,17 +23393,22959695,Queens,Richmond Hill,40.69482,-73.82551,Private room,59,1,123,4.85,5,0 +23394,131848646,Manhattan,Washington Heights,40.83827,-73.94393000000001,Private room,55,7,26,1.06,1,57 +23395,131993336,Queens,Forest Hills,40.719229999999996,-73.85189,Private room,175,1,47,2.14,2,176 +23396,23234988,Queens,Flushing,40.74982,-73.8061,Entire home/apt,1500,3,0,,6,256 +23397,43252773,Manhattan,Harlem,40.81119,-73.94751,Entire home/apt,199,2,5,0.24,2,61 +23398,12155032,Brooklyn,Bushwick,40.69412,-73.91039,Entire home/apt,150,3,6,0.27,1,0 +23399,4264890,Manhattan,Midtown,40.76461,-73.98263,Entire home/apt,145,3,66,2.61,1,9 +23400,2340947,Manhattan,Hell's Kitchen,40.762240000000006,-73.99909,Entire home/apt,220,3,8,0.31,1,0 +23401,131622175,Brooklyn,Park Slope,40.667229999999996,-73.97606999999999,Entire home/apt,105,10,4,0.2,1,258 +23402,5153110,Brooklyn,Crown Heights,40.67125,-73.95782,Entire home/apt,185,3,9,0.41,1,0 +23403,107579819,Brooklyn,Bushwick,40.69491,-73.92581,Private room,45,3,8,0.31,2,0 +23404,5295202,Manhattan,Upper East Side,40.763870000000004,-73.9618,Private room,115,2,42,1.69,1,38 +23405,62475681,Brooklyn,Fort Hamilton,40.62327,-74.03543,Private room,90,6,0,,1,365 +23406,127681510,Brooklyn,Park Slope,40.66682,-73.9768,Entire home/apt,200,2,80,3.43,1,70 +23407,590825,Manhattan,Upper East Side,40.77559,-73.95033000000001,Entire home/apt,160,2,2,0.08,1,0 +23408,22899212,Queens,Ditmars Steinway,40.772040000000004,-73.90868,Private room,35,26,1,0.04,1,0 +23409,19867664,Brooklyn,Crown Heights,40.671,-73.94703,Entire home/apt,200,1,105,4.57,2,274 +23410,132103681,Manhattan,Upper East Side,40.78285,-73.94875,Entire home/apt,129,30,2,0.08,1,0 +23411,70804640,Brooklyn,Bedford-Stuyvesant,40.68378,-73.95591999999999,Entire home/apt,1067,2,64,2.51,1,32 +23412,33683538,Manhattan,Morningside Heights,40.81002,-73.95958,Entire home/apt,120,12,11,0.43,1,0 +23413,25391872,Brooklyn,Prospect-Lefferts Gardens,40.65585,-73.95581999999999,Entire home/apt,105,1,7,0.27,1,0 +23414,9864136,Brooklyn,Bushwick,40.68603,-73.91438000000001,Private room,36,2,8,0.37,26,311 +23415,106351521,Brooklyn,Prospect-Lefferts Gardens,40.66268,-73.94963,Private room,100,2,0,,1,0 +23416,132178349,Queens,Long Island City,40.7476,-73.94433000000001,Private room,74,4,34,1.38,1,8 +23417,35201199,Brooklyn,Windsor Terrace,40.64882,-73.97629,Entire home/apt,68,2,5,0.2,1,0 +23418,37100193,Manhattan,Midtown,40.75452,-73.96634,Entire home/apt,122,1,120,5.03,1,220 +23419,132194726,Manhattan,Upper West Side,40.78841,-73.97461,Entire home/apt,200,5,0,,1,0 +23420,21190402,Staten Island,Emerson Hill,40.60577,-74.12819,Private room,85,1,0,,1,0 +23421,57643057,Queens,Long Island City,40.74617,-73.94645,Private room,71,7,94,3.66,2,194 +23422,40510005,Brooklyn,Bushwick,40.68923,-73.9154,Private room,50,1,11,0.44,1,0 +23423,21706118,Manhattan,Murray Hill,40.75071,-73.97995,Private room,138,2,41,1.9,1,66 +23424,132219056,Brooklyn,Bedford-Stuyvesant,40.690909999999995,-73.93666999999999,Private room,39,2,65,2.57,2,223 +23425,132219692,Manhattan,Midtown,40.746829999999996,-73.98761,Entire home/apt,158,1,138,5.45,1,142 +23426,5139965,Queens,Long Island City,40.75125,-73.93807,Entire home/apt,195,1,3,0.12,1,0 +23427,58773420,Brooklyn,Williamsburg,40.70602,-73.93821,Private room,80,3,4,0.16,1,0 +23428,128086219,Queens,Rosedale,40.65283,-73.73886999999999,Private room,38,2,61,2.39,2,171 +23429,22100955,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93359,Entire home/apt,134,4,65,2.56,1,130 +23430,132245692,Manhattan,Midtown,40.75169,-73.97323,Entire home/apt,70,2,79,3.21,1,98 +23431,131476075,Brooklyn,Bushwick,40.68756,-73.91326,Private room,50,1,31,1.24,8,179 +23432,4189991,Brooklyn,Williamsburg,40.70821,-73.94274,Private room,60,2,0,,1,0 +23433,128237188,Manhattan,East Harlem,40.79631,-73.94348000000001,Private room,79,3,66,2.67,1,263 +23434,59799262,Brooklyn,Gowanus,40.66724,-73.99328,Entire home/apt,150,6,2,0.08,1,0 +23435,17079377,Queens,Ditmars Steinway,40.77655,-73.91304000000001,Private room,50,1,12,0.63,1,0 +23436,27131793,Queens,Jackson Heights,40.74712,-73.89329000000001,Private room,46,1,19,0.75,1,0 +23437,111308649,Brooklyn,Williamsburg,40.71445,-73.94593,Private room,65,3,2,0.13,1,0 +23438,70074907,Manhattan,Roosevelt Island,40.76873,-73.94397,Private room,51,1,2,0.08,2,0 +23439,4365106,Manhattan,West Village,40.731790000000004,-74.00106,Entire home/apt,176,3,13,0.6,1,64 +23440,2511668,Bronx,Kingsbridge,40.87271,-73.89972,Private room,60,3,19,0.75,1,81 +23441,132435618,Brooklyn,East New York,40.670609999999996,-73.88004000000001,Entire home/apt,95,2,91,3.63,1,60 +23442,131211034,Bronx,University Heights,40.85484,-73.90646,Private room,60,1,1,0.05,1,0 +23443,88322109,Brooklyn,Windsor Terrace,40.65417,-73.97405,Entire home/apt,350,6,0,,1,47 +23444,132464510,Brooklyn,Boerum Hill,40.68508,-73.98413000000001,Private room,125,1,8,0.32,1,156 +23445,12420115,Manhattan,Lower East Side,40.7197,-73.99331,Entire home/apt,170,1,16,0.63,1,0 +23446,47464383,Manhattan,Hell's Kitchen,40.7591,-73.98971,Private room,350,2,1,0.04,1,0 +23447,74633496,Bronx,University Heights,40.85624,-73.90946,Private room,40,3,26,1.03,5,365 +23448,132485225,Brooklyn,Bensonhurst,40.617670000000004,-73.99176,Private room,42,8,26,1.04,1,43 +23449,132266502,Staten Island,Westerleigh,40.61357,-74.13566,Entire home/apt,103,3,1,0.09,1,189 +23450,132484183,Queens,Jamaica,40.69256,-73.79988,Entire home/apt,165,3,53,2.14,1,153 +23451,6825747,Brooklyn,Sunset Park,40.66134,-73.99619,Entire home/apt,128,5,6,0.25,1,0 +23452,3339820,Queens,Arverne,40.59486,-73.78856,Entire home/apt,250,2,10,0.4,1,166 +23453,132486597,Queens,Astoria,40.77126,-73.92088000000001,Private room,60,1,54,2.21,1,73 +23454,58108232,Brooklyn,Williamsburg,40.71358,-73.96519,Entire home/apt,109,2,0,,1,0 +23455,132513543,Manhattan,Upper East Side,40.76269,-73.96053,Entire home/apt,465,4,1,0.05,1,0 +23456,48590699,Manhattan,Midtown,40.75169,-73.97116,Private room,100,1,8,0.32,1,0 +23457,5391472,Brooklyn,Crown Heights,40.6721,-73.95363,Private room,40,14,1,0.04,2,0 +23458,80333891,Brooklyn,Gowanus,40.673790000000004,-73.9873,Private room,45,30,2,0.1,2,0 +23459,13237695,Brooklyn,Prospect Heights,40.67396,-73.96427,Private room,85,3,3,0.13,1,189 +23460,90104417,Staten Island,Tottenville,40.50873,-74.23914,Entire home/apt,85,2,49,2.08,2,159 +23461,92987625,Brooklyn,Clinton Hill,40.68277,-73.95886,Entire home/apt,225,3,0,,1,0 +23462,56076854,Brooklyn,Bushwick,40.6949,-73.9116,Private room,65,5,20,0.78,2,365 +23463,49270426,Brooklyn,Williamsburg,40.70445,-73.94359,Private room,55,6,1,0.07,1,0 +23464,19603674,Brooklyn,Greenpoint,40.72506,-73.93802,Entire home/apt,59,3,0,,1,0 +23465,64453478,Brooklyn,South Slope,40.66615,-73.98711999999999,Entire home/apt,225,2,78,3.18,1,80 +23466,21772730,Brooklyn,Gowanus,40.68318,-73.98578,Entire home/apt,200,5,0,,1,0 +23467,35323444,Manhattan,Hell's Kitchen,40.761990000000004,-73.98758000000001,Private room,200,3,1,1.0,1,8 +23468,76359133,Queens,Fresh Meadows,40.738620000000004,-73.79184000000001,Private room,55,1,113,4.44,3,137 +23469,132559939,Brooklyn,Williamsburg,40.71893,-73.96231999999999,Entire home/apt,180,2,20,1.17,1,0 +23470,132576479,Brooklyn,Greenpoint,40.722570000000005,-73.94544,Entire home/apt,115,30,8,0.37,1,183 +23471,21657100,Brooklyn,Williamsburg,40.71706,-73.96423,Entire home/apt,185,2,36,1.44,1,85 +23472,60494212,Brooklyn,Bushwick,40.69481,-73.92244000000001,Private room,50,3,1,0.04,1,0 +23473,132629359,Manhattan,Flatiron District,40.74165,-73.98486,Entire home/apt,218,4,3,0.13,1,9 +23474,25346530,Queens,Long Island City,40.74285,-73.95597,Entire home/apt,99,1,3,0.12,1,0 +23475,27522582,Brooklyn,Bushwick,40.70075,-73.91644000000001,Private room,70,1,0,,3,0 +23476,132635232,Manhattan,Harlem,40.81451,-73.94478000000001,Private room,99,2,59,2.38,1,362 +23477,6720525,Manhattan,East Village,40.72204,-73.97924,Private room,100,3,64,2.58,1,224 +23478,5490071,Manhattan,East Harlem,40.79475,-73.94247,Entire home/apt,150,4,67,2.7,3,242 +23479,19544315,Manhattan,Washington Heights,40.83318,-73.94081,Private room,35,1,0,,2,0 +23480,2261706,Brooklyn,Williamsburg,40.7084,-73.9551,Private room,75,2,3,0.12,1,0 +23481,132644162,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.95756999999999,Entire home/apt,250,1,1,0.04,1,0 +23482,132644665,Brooklyn,Canarsie,40.62986,-73.90638,Private room,78,2,45,1.78,1,41 +23483,10447807,Manhattan,Battery Park City,40.71588,-74.01691,Entire home/apt,250,4,0,,1,0 +23484,56909,Manhattan,Kips Bay,40.74214,-73.98048,Private room,117,7,1,0.15,1,332 +23485,10903067,Manhattan,Hell's Kitchen,40.76619,-73.98987,Entire home/apt,179,3,17,0.67,1,5 +23486,129474716,Manhattan,West Village,40.73983,-74.00586,Entire home/apt,1599,30,6,0.24,1,0 +23487,5944076,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.95263,Private room,49,2,15,0.59,1,251 +23488,117365574,Manhattan,Chelsea,40.748059999999995,-73.99665,Private room,85,1,77,3.84,5,310 +23489,17099762,Manhattan,Lower East Side,40.7231,-73.9927,Private room,80,2,0,,1,0 +23490,22221213,Manhattan,Chelsea,40.74183,-73.99878000000001,Entire home/apt,350,2,10,0.72,1,104 +23491,20287719,Manhattan,Upper East Side,40.77138,-73.95353,Entire home/apt,100,5,0,,1,0 +23492,3309783,Manhattan,Harlem,40.80545,-73.95489,Private room,125,6,3,0.12,1,0 +23493,41387722,Queens,Astoria,40.77084,-73.92600999999999,Private room,65,21,0,,1,0 +23494,41171451,Manhattan,Harlem,40.82634,-73.95061,Private room,80,1,18,0.75,1,179 +23495,92342,Brooklyn,Williamsburg,40.72059,-73.95846999999999,Entire home/apt,220,3,42,1.71,1,0 +23496,132698746,Queens,Glendale,40.70388,-73.88011999999999,Entire home/apt,100,2,117,5.33,1,3 +23497,185745,Manhattan,Lower East Side,40.71284,-73.99065999999999,Entire home/apt,300,2,0,,2,0 +23498,11540240,Brooklyn,Williamsburg,40.708659999999995,-73.95003,Private room,40,7,1,0.04,1,0 +23499,170553,Manhattan,Upper West Side,40.77565,-73.98684,Entire home/apt,389,6,0,,1,105 +23500,5049863,Brooklyn,Williamsburg,40.71099,-73.95267,Private room,45,14,1,0.1,1,0 +23501,71360671,Manhattan,Upper West Side,40.77317,-73.98729,Entire home/apt,90,30,0,,1,117 +23502,132711675,Manhattan,Murray Hill,40.74736,-73.97838,Private room,60,10,0,,1,19 +23503,7813520,Brooklyn,Bushwick,40.6948,-73.92093,Private room,49,2,55,2.15,1,332 +23504,70074907,Manhattan,Roosevelt Island,40.7687,-73.94308000000001,Private room,51,1,0,,2,0 +23505,33552302,Manhattan,East Harlem,40.802440000000004,-73.94409,Private room,125,1,11,0.44,1,341 +23506,44547688,Brooklyn,East New York,40.67249,-73.8782,Private room,52,1,13,0.53,2,365 +23507,182461,Queens,Ozone Park,40.67488,-73.85568,Entire home/apt,110,3,81,3.33,2,9 +23508,132801944,Queens,Astoria,40.76877,-73.91237,Private room,38,4,19,0.75,2,188 +23509,49193707,Manhattan,Washington Heights,40.84977,-73.93536,Private room,60,5,16,0.65,1,0 +23510,36651854,Manhattan,Washington Heights,40.8336,-73.94088,Private room,55,6,12,0.47,1,3 +23511,706623,Brooklyn,Bushwick,40.69441,-73.90881,Entire home/apt,119,3,12,0.51,4,50 +23512,93356179,Brooklyn,Bushwick,40.70674,-73.9201,Entire home/apt,121,5,3,0.12,1,0 +23513,16026934,Manhattan,East Village,40.72136,-73.97882,Private room,89,2,14,0.55,1,0 +23514,6164507,Brooklyn,Williamsburg,40.71199,-73.96316999999999,Private room,60,7,0,,1,0 +23515,912657,Brooklyn,Bedford-Stuyvesant,40.68054,-73.94129000000001,Private room,80,4,3,0.12,1,104 +23516,97794385,Queens,Jamaica,40.68347,-73.79460999999999,Private room,60,2,42,1.65,2,0 +23517,16070950,Manhattan,Morningside Heights,40.81192,-73.96164,Private room,90,20,1,0.05,1,0 +23518,26440775,Queens,Forest Hills,40.72902,-73.8474,Entire home/apt,115,30,12,0.47,1,66 +23519,17122534,Bronx,Clason Point,40.80652,-73.85311999999999,Entire home/apt,350,3,1,0.09,1,0 +23520,131976173,Brooklyn,Bedford-Stuyvesant,40.69144,-73.956,Private room,85,1,177,7.05,3,49 +23521,85526404,Queens,Flushing,40.75448,-73.82295,Private room,55,1,37,1.46,1,0 +23522,14396342,Queens,Long Island City,40.74286,-73.95416999999999,Private room,61,2,111,4.46,1,109 +23523,26410240,Manhattan,Lower East Side,40.72083,-73.99205,Private room,95,6,2,0.08,1,0 +23524,22343983,Manhattan,Washington Heights,40.85674,-73.93003,Private room,35,2,5,0.2,1,0 +23525,23431638,Manhattan,Murray Hill,40.74689,-73.97763,Entire home/apt,150,3,42,1.67,1,40 +23526,105642760,Manhattan,Battery Park City,40.71222,-74.01566,Entire home/apt,350,7,4,0.33,1,51 +23527,19419141,Brooklyn,Bushwick,40.69293,-73.9221,Private room,48,3,0,,1,0 +23528,7980049,Manhattan,Upper West Side,40.7951,-73.96675,Entire home/apt,165,2,8,0.33,1,0 +23529,132967604,Brooklyn,Crown Heights,40.665929999999996,-73.95535,Private room,45,8,3,0.12,1,0 +23530,56081679,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9266,Private room,200,2,2,0.08,1,0 +23531,132983866,Manhattan,Washington Heights,40.84733,-73.93445,Private room,75,1,100,4.52,1,280 +23532,71825402,Manhattan,East Village,40.726690000000005,-73.98864,Entire home/apt,279,2,4,0.19,1,0 +23533,89316119,Brooklyn,Williamsburg,40.7102,-73.96024,Entire home/apt,300,2,0,,1,0 +23534,69124870,Brooklyn,Williamsburg,40.71118,-73.9608,Private room,400,1,49,2.48,4,77 +23535,133004690,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93972,Entire home/apt,80,1,107,4.28,2,240 +23536,33195149,Brooklyn,Crown Heights,40.6721,-73.96159,Private room,125,10,0,,1,0 +23537,97907084,Bronx,Wakefield,40.902809999999995,-73.85200999999999,Entire home/apt,28,1,0,,1,0 +23538,133010064,Manhattan,Financial District,40.70857,-74.01005,Entire home/apt,140,2,76,3.02,1,0 +23539,58225,Brooklyn,Bedford-Stuyvesant,40.69097,-73.94721,Private room,101,2,9,0.36,1,364 +23540,81274648,Brooklyn,Bushwick,40.69628,-73.93068000000001,Private room,43,2,71,2.8,4,90 +23541,35078736,Brooklyn,Cobble Hill,40.68569,-73.99573000000001,Entire home/apt,424,21,1,0.09,1,31 +23542,67609111,Manhattan,Harlem,40.81515,-73.9421,Private room,80,1,0,,1,0 +23543,34466355,Brooklyn,Williamsburg,40.711220000000004,-73.93946,Entire home/apt,170,3,7,0.28,1,0 +23544,85082002,Brooklyn,Crown Heights,40.66413,-73.95125999999999,Private room,60,3,2,0.09,1,0 +23545,356490,Queens,Flushing,40.767959999999995,-73.81732,Shared room,1000,1,0,,1,0 +23546,538008,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94946999999999,Entire home/apt,125,5,23,0.95,1,1 +23547,10448572,Manhattan,East Harlem,40.79632,-73.93387,Entire home/apt,115,3,12,0.47,1,7 +23548,133037177,Manhattan,Inwood,40.865559999999995,-73.92656,Private room,36,28,28,1.12,1,106 +23549,14935858,Manhattan,Hell's Kitchen,40.759640000000005,-73.99070999999999,Private room,49,1,41,1.62,2,8 +23550,133045826,Manhattan,Washington Heights,40.84202,-73.94171,Entire home/apt,108,7,4,0.17,1,50 +23551,133045713,Manhattan,Greenwich Village,40.736470000000004,-73.99699,Entire home/apt,578,5,70,2.84,1,240 +23552,22860779,Brooklyn,Crown Heights,40.66496,-73.93241,Private room,40,5,5,0.21,1,0 +23553,22959695,Queens,Richmond Hill,40.69502,-73.8252,Private room,50,1,106,4.15,5,0 +23554,127784473,Manhattan,Roosevelt Island,40.76548,-73.94675,Private room,55,10,1,0.04,1,0 +23555,52052321,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95158,Private room,46,3,6,0.24,1,0 +23556,29614678,Manhattan,Greenwich Village,40.72951,-73.99996999999999,Private room,150,2,60,2.37,1,125 +23557,100128949,Queens,Astoria,40.755390000000006,-73.91311,Private room,39,1,4,0.17,4,136 +23558,23991242,Brooklyn,Bushwick,40.68748,-73.90751,Entire home/apt,100,2,1,1.0,1,99 +23559,69211977,Manhattan,Harlem,40.820879999999995,-73.9523,Private room,36,25,0,,1,0 +23560,133123832,Manhattan,Upper West Side,40.787729999999996,-73.97022,Entire home/apt,113,30,0,,3,69 +23561,778994,Manhattan,East Village,40.72529,-73.98655,Entire home/apt,300,14,5,0.2,1,2 +23562,10402380,Brooklyn,Prospect Heights,40.67245,-73.96358000000001,Private room,50,1,144,5.65,2,0 +23563,133127495,Manhattan,Upper West Side,40.79312,-73.96595,Entire home/apt,115,88,5,0.22,1,220 +23564,22455812,Manhattan,Harlem,40.80729,-73.94763,Private room,100,2,1,0.04,1,0 +23565,133130315,Manhattan,Hell's Kitchen,40.76398,-73.986,Private room,99,3,12,0.57,6,179 +23566,38217925,Brooklyn,Greenpoint,40.73453,-73.95795,Private room,120,5,0,,2,88 +23567,1424716,Manhattan,East Village,40.7242,-73.98209,Entire home/apt,175,3,7,0.3,1,0 +23568,61391963,Manhattan,Midtown,40.75609,-73.96941,Entire home/apt,125,30,2,0.15,91,140 +23569,51501835,Manhattan,Hell's Kitchen,40.76441,-73.99436999999999,Entire home/apt,100,30,2,0.09,31,345 +23570,39601665,Manhattan,East Harlem,40.80746,-73.94001,Private room,53,180,0,,1,357 +23571,50600973,Brooklyn,Bushwick,40.6951,-73.92983000000001,Shared room,29,1,124,4.99,7,73 +23572,133147190,Brooklyn,Bushwick,40.70114,-73.91763,Private room,70,2,1,0.04,1,179 +23573,60993452,Manhattan,Murray Hill,40.74763,-73.97601999999999,Private room,52,3,4,0.16,2,0 +23574,4440278,Brooklyn,Williamsburg,40.71172,-73.94143000000001,Private room,105,3,8,0.32,3,179 +23575,83756656,Manhattan,Lower East Side,40.71884,-73.99076,Shared room,29,2,21,0.86,1,0 +23576,4440278,Brooklyn,Williamsburg,40.711890000000004,-73.93881,Private room,110,3,3,0.12,3,179 +23577,16006197,Brooklyn,South Slope,40.66744,-73.98798000000001,Private room,80,2,50,1.98,1,86 +23578,91718195,Brooklyn,Kensington,40.634170000000005,-73.97541,Private room,31,25,3,0.12,1,0 +23579,113570467,Manhattan,Midtown,40.74842,-73.98541999999999,Shared room,320,1,1,0.1,1,179 +23580,60993452,Manhattan,Murray Hill,40.748459999999994,-73.9758,Private room,40,4,3,0.12,2,0 +23581,7086450,Brooklyn,Bushwick,40.69983,-73.91613000000001,Private room,70,5,0,,1,0 +23582,59089796,Queens,Richmond Hill,40.70288,-73.81955,Entire home/apt,104,2,78,3.26,2,65 +23583,133239401,Bronx,Bronxdale,40.85168,-73.86659,Entire home/apt,100,7,0,,1,180 +23584,21810947,Manhattan,Midtown,40.75488,-73.97134,Entire home/apt,1200,7,0,,1,0 +23585,4464205,Brooklyn,Bushwick,40.69446,-73.92486,Private room,37,2,6,0.25,2,0 +23586,51698646,Queens,Sunnyside,40.74242,-73.92596999999999,Private room,40,10,1,0.06,1,2 +23587,35031975,Manhattan,Hell's Kitchen,40.75625,-73.99336,Entire home/apt,207,1,0,,1,0 +23588,6219701,Brooklyn,Fort Greene,40.689659999999996,-73.97381999999999,Entire home/apt,150,10,1,0.04,1,0 +23589,133281513,Brooklyn,Williamsburg,40.71885,-73.95444,Entire home/apt,180,1,16,0.65,1,0 +23590,69442306,Brooklyn,Prospect-Lefferts Gardens,40.655120000000004,-73.96186,Private room,90,3,1,0.04,1,0 +23591,9864136,Brooklyn,Bushwick,40.68615,-73.9141,Private room,36,2,7,0.29,26,318 +23592,30168229,Brooklyn,Bedford-Stuyvesant,40.693690000000004,-73.93454,Private room,80,2,0,,1,0 +23593,133308687,Manhattan,East Harlem,40.797709999999995,-73.94833,Private room,145,2,75,3.07,1,59 +23594,51380878,Brooklyn,Flatbush,40.65067,-73.96061999999999,Private room,33,2,71,3.17,2,15 +23595,97513787,Manhattan,Chinatown,40.71595,-73.99329,Private room,68,20,6,0.31,5,332 +23596,1295284,Brooklyn,Midwood,40.614020000000004,-73.94467,Entire home/apt,70,7,0,,1,0 +23597,49781652,Brooklyn,Williamsburg,40.71033,-73.95026,Private room,67,3,21,0.86,1,0 +23598,123974198,Manhattan,Inwood,40.86665,-73.92695,Entire home/apt,175,2,7,0.29,1,0 +23599,16020315,Manhattan,Inwood,40.86822,-73.92048,Entire home/apt,100,2,9,0.59,1,0 +23600,624441,Manhattan,Upper West Side,40.79155,-73.97315,Entire home/apt,180,30,9,0.43,1,57 +23601,23821111,Manhattan,Greenwich Village,40.73095,-73.99413,Private room,200,2,0,,1,0 +23602,11687702,Manhattan,Hell's Kitchen,40.76168,-73.99144,Entire home/apt,160,4,1,0.04,1,0 +23603,6701270,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95929,Entire home/apt,130,8,4,0.18,1,0 +23604,3457404,Brooklyn,Bedford-Stuyvesant,40.68197,-73.94564,Entire home/apt,70,3,29,1.16,1,0 +23605,132530494,Brooklyn,Canarsie,40.63077,-73.90395,Entire home/apt,300,3,59,2.36,1,333 +23606,10697117,Brooklyn,Flatbush,40.64844,-73.96214,Private room,45,5,2,0.08,1,0 +23607,43595404,Brooklyn,Bedford-Stuyvesant,40.681540000000005,-73.9534,Private room,69,2,6,0.25,1,0 +23608,14322725,Manhattan,Gramercy,40.736270000000005,-73.98952,Entire home/apt,290,3,13,0.54,1,66 +23609,133410608,Brooklyn,Kensington,40.64549,-73.97883,Private room,99,7,0,,1,87 +23610,82920107,Manhattan,Chelsea,40.746190000000006,-74.00559,Entire home/apt,149,30,1,0.08,1,364 +23611,4956248,Brooklyn,Greenpoint,40.73145,-73.95135,Entire home/apt,100,3,14,0.6,1,0 +23612,68233913,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91803,Entire home/apt,100,3,107,4.31,1,77 +23613,1342918,Brooklyn,Crown Heights,40.67192,-73.93414,Entire home/apt,95,5,8,0.32,1,0 +23614,25173511,Brooklyn,Williamsburg,40.71045,-73.95784,Entire home/apt,200,2,6,0.24,1,0 +23615,81745867,Manhattan,Washington Heights,40.84917,-73.94048000000001,Private room,70,2,2,0.16,1,0 +23616,42729298,Brooklyn,Williamsburg,40.71913,-73.95774,Private room,75,1,135,5.31,2,19 +23617,133460613,Queens,Astoria,40.76169,-73.90819,Private room,49,1,6,0.24,2,359 +23618,77334582,Brooklyn,Greenpoint,40.73167,-73.95254,Private room,89,2,0,,1,0 +23619,133460613,Queens,Astoria,40.76193,-73.9074,Private room,74,1,0,,2,359 +23620,42729298,Brooklyn,Williamsburg,40.71911,-73.95805,Private room,65,1,122,4.82,2,11 +23621,133534397,Bronx,Longwood,40.8229,-73.90295,Entire home/apt,100,3,30,1.18,1,0 +23622,133536020,Manhattan,East Harlem,40.79185,-73.94139,Private room,50,1,64,2.55,1,4 +23623,46317725,Brooklyn,Bushwick,40.70179,-73.92379,Entire home/apt,79,1,2,0.08,2,0 +23624,683230,Manhattan,West Village,40.73444,-73.99967,Private room,950,3,36,1.45,3,237 +23625,2856748,Manhattan,Midtown,40.75775,-73.96132,Entire home/apt,350,30,0,,49,364 +23626,5434236,Brooklyn,Crown Heights,40.67615,-73.92935,Entire home/apt,188,3,11,0.45,1,144 +23627,32219638,Queens,Astoria,40.7683,-73.9331,Private room,50,1,28,1.5,1,175 +23628,2856748,Manhattan,Midtown,40.75905,-73.96141999999999,Entire home/apt,475,30,0,,49,343 +23629,6111018,Brooklyn,Greenpoint,40.73079,-73.95353,Private room,105,3,8,0.33,1,12 +23630,133580441,Manhattan,Financial District,40.70864,-74.01276,Entire home/apt,225,4,51,2.06,1,40 +23631,30232035,Manhattan,Lower East Side,40.71909,-73.9865,Private room,40,10,0,,1,0 +23632,12775618,Brooklyn,Greenpoint,40.737359999999995,-73.95668,Entire home/apt,185,1,4,0.19,1,0 +23633,133586767,Manhattan,Upper East Side,40.77489,-73.95241999999999,Private room,90,2,12,0.47,1,0 +23634,131218877,Manhattan,Midtown,40.758,-73.97906,Entire home/apt,250,30,0,,1,0 +23635,731582,Manhattan,Greenwich Village,40.73123,-73.99374,Private room,119,60,2,0.08,1,0 +23636,10469805,Manhattan,Harlem,40.82499,-73.94488,Entire home/apt,150,14,1,0.05,1,0 +23637,7628817,Manhattan,Financial District,40.705459999999995,-74.01465,Entire home/apt,275,1,0,,1,0 +23638,9293730,Manhattan,Upper East Side,40.76956,-73.95835,Entire home/apt,125,30,8,0.39,16,332 +23639,133602911,Bronx,Highbridge,40.829640000000005,-73.92882,Private room,60,3,17,0.67,2,66 +23640,132219056,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93715999999999,Private room,42,1,38,1.58,2,218 +23641,4492286,Manhattan,Morningside Heights,40.80563,-73.96361999999999,Entire home/apt,130,7,23,0.95,1,48 +23642,15495000,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94516999999999,Entire home/apt,66,2,3,0.12,1,0 +23643,31920354,Brooklyn,Williamsburg,40.7127,-73.94487,Private room,109,3,5,0.2,2,179 +23644,42405567,Brooklyn,Williamsburg,40.7116,-73.94431999999999,Private room,90,2,13,0.58,2,7 +23645,133426665,Brooklyn,Flatlands,40.61462,-73.92108,Private room,89,1,68,2.68,1,333 +23646,96363026,Brooklyn,Carroll Gardens,40.68293,-73.99746999999999,Entire home/apt,600,5,11,0.47,1,64 +23647,13377549,Manhattan,West Village,40.738479999999996,-74.00251999999999,Entire home/apt,250,28,13,0.52,1,0 +23648,50915075,Manhattan,West Village,40.7316,-74.00262,Entire home/apt,278,2,18,0.73,1,35 +23649,68271069,Manhattan,Upper West Side,40.79343,-73.97274,Entire home/apt,800,7,5,0.22,1,68 +23650,47015275,Queens,Elmhurst,40.745459999999994,-73.88898,Private room,70,1,31,1.23,2,89 +23651,10733404,Manhattan,Chelsea,40.74216,-73.99887,Entire home/apt,275,1,2,0.08,1,0 +23652,201735,Manhattan,Tribeca,40.717729999999996,-74.00601,Entire home/apt,195,2,4,0.16,1,0 +23653,133259451,Brooklyn,Bedford-Stuyvesant,40.68015,-73.94949,Private room,50,3,2,0.08,1,0 +23654,86134456,Brooklyn,Williamsburg,40.7069,-73.95498,Private room,45,5,2,0.08,1,0 +23655,41730784,Brooklyn,Greenpoint,40.72929,-73.95067,Private room,62,3,3,0.12,1,0 +23656,66734347,Manhattan,East Village,40.72582,-73.9886,Entire home/apt,150,2,2,0.09,1,0 +23657,16413765,Manhattan,Upper East Side,40.780840000000005,-73.94735,Entire home/apt,98,3,57,2.26,1,30 +23658,16308791,Manhattan,Little Italy,40.717690000000005,-73.99854,Entire home/apt,236,2,55,2.24,1,314 +23659,133732087,Brooklyn,Williamsburg,40.718759999999996,-73.96253,Entire home/apt,250,6,1,0.04,1,0 +23660,133736899,Manhattan,Upper West Side,40.76984,-73.98225,Entire home/apt,200,1,1,0.04,1,0 +23661,48240655,Brooklyn,Williamsburg,40.71947,-73.96112,Entire home/apt,195,2,11,0.45,1,0 +23662,2539165,Queens,Long Island City,40.75464,-73.91755,Entire home/apt,90,7,16,0.69,1,62 +23663,7604436,Brooklyn,Williamsburg,40.7203,-73.95729,Private room,128,3,22,1.43,1,305 +23664,2494945,Brooklyn,Flatbush,40.65413,-73.96024,Private room,44,5,32,1.39,1,286 +23665,5348587,Manhattan,Lower East Side,40.71734,-73.99070999999999,Private room,75,3,1,0.04,1,0 +23666,27102064,Manhattan,Harlem,40.824690000000004,-73.95031999999999,Private room,100,2,10,0.4,1,0 +23667,133762246,Manhattan,Harlem,40.81644,-73.94126999999999,Entire home/apt,90,15,8,0.32,1,44 +23668,17603414,Manhattan,Harlem,40.82566,-73.94438000000001,Private room,60,5,18,0.73,2,154 +23669,9374970,Manhattan,SoHo,40.72486,-74.00318,Entire home/apt,250,28,11,0.48,1,151 +23670,25720293,Manhattan,Chelsea,40.7462,-74.00222,Entire home/apt,349,4,24,1.0,3,264 +23671,23231840,Manhattan,Harlem,40.82216,-73.9446,Entire home/apt,101,7,6,0.28,1,0 +23672,133787072,Brooklyn,Park Slope,40.677609999999994,-73.97766999999999,Private room,120,1,96,3.9,1,53 +23673,32866694,Queens,Arverne,40.58845,-73.79514,Entire home/apt,86,2,23,2.06,1,20 +23674,133802988,Queens,Ridgewood,40.70375,-73.90342,Shared room,30,30,1,0.05,6,365 +23675,133802130,Queens,Far Rockaway,40.59326,-73.76037,Private room,40,1,33,1.33,1,36 +23676,75065047,Manhattan,Lower East Side,40.71925,-73.98955,Entire home/apt,106,1,9,0.39,1,364 +23677,82367658,Queens,Richmond Hill,40.69142,-73.82039,Private room,40,2,13,0.55,5,311 +23678,133802988,Queens,Ridgewood,40.7033,-73.90812,Shared room,30,30,2,0.08,6,365 +23679,133812877,Brooklyn,Cypress Hills,40.679140000000004,-73.88982,Private room,52,3,28,1.25,3,302 +23680,4331581,Brooklyn,Fort Greene,40.688759999999995,-73.97746,Entire home/apt,147,1,1,0.04,1,0 +23681,81553530,Manhattan,East Village,40.73355,-73.98899999999999,Private room,200,3,2,0.08,1,0 +23682,40277071,Manhattan,Upper West Side,40.79351,-73.9698,Shared room,70,2,0,,1,0 +23683,133843931,Brooklyn,Greenpoint,40.72675,-73.9554,Private room,37,1,58,2.34,2,152 +23684,31214940,Manhattan,Midtown,40.76486,-73.97822,Entire home/apt,249,3,0,,1,0 +23685,36009953,Brooklyn,Bedford-Stuyvesant,40.68099,-73.92145,Private room,70,3,13,0.53,1,48 +23686,22541573,Manhattan,Gramercy,40.73643,-73.98724,Entire home/apt,225,30,0,,87,310 +23687,8633973,Manhattan,Hell's Kitchen,40.76952,-73.98957,Entire home/apt,135,3,41,1.64,1,0 +23688,5260367,Brooklyn,Boerum Hill,40.68942,-73.98739,Entire home/apt,150,30,1,0.05,1,91 +23689,49192439,Manhattan,East Village,40.72507,-73.97667,Private room,108,10,17,0.68,1,23 +23690,42405567,Brooklyn,Williamsburg,40.71356,-73.94372,Entire home/apt,225,4,7,0.29,2,8 +23691,46712160,Queens,Jackson Heights,40.75243,-73.89553000000001,Private room,59,1,184,7.84,2,30 +23692,114146085,Brooklyn,Windsor Terrace,40.65013,-73.97863000000001,Entire home/apt,115,3,30,1.23,1,3 +23693,2712353,Brooklyn,Cypress Hills,40.68696,-73.87564,Private room,35,28,7,0.29,4,312 +23694,7050126,Manhattan,Midtown,40.76347,-73.97800000000001,Entire home/apt,1000,1,3,0.12,2,90 +23695,133802988,Queens,Ridgewood,40.70507,-73.90195,Shared room,55,30,2,0.1,6,365 +23696,56342503,Manhattan,Hell's Kitchen,40.7694,-73.98736,Entire home/apt,280,4,3,0.13,1,0 +23697,22766051,Brooklyn,Bay Ridge,40.630559999999996,-74.02037,Entire home/apt,100,4,5,0.21,1,0 +23698,133975955,Brooklyn,Williamsburg,40.70533,-73.92778,Entire home/apt,55,3,78,3.1,1,25 +23699,1728792,Manhattan,Washington Heights,40.84437,-73.94328,Private room,70,3,2,0.53,1,173 +23700,83590674,Brooklyn,Williamsburg,40.71418,-73.96404,Entire home/apt,219,4,9,0.37,1,0 +23701,3788839,Brooklyn,Bedford-Stuyvesant,40.68468,-73.92408,Private room,45,28,10,0.46,4,310 +23702,57959988,Manhattan,Harlem,40.81937,-73.95763000000001,Private room,40,10,0,,1,0 +23703,107704855,Manhattan,Morningside Heights,40.8107,-73.95841999999999,Private room,60,1,1,0.05,1,0 +23704,22723650,Brooklyn,Bushwick,40.70476,-73.92309,Entire home/apt,150,3,20,0.8,1,5 +23705,133995881,Brooklyn,Flatbush,40.63262,-73.95768000000001,Entire home/apt,150,2,77,3.29,1,106 +23706,50600973,Brooklyn,Bushwick,40.69518,-73.92856,Shared room,50,1,24,0.98,7,0 +23707,43085567,Brooklyn,Greenpoint,40.72661,-73.95178,Entire home/apt,200,1,0,,1,0 +23708,10015055,Brooklyn,South Slope,40.6646,-73.98184,Private room,119,2,94,4.09,1,279 +23709,95471685,Manhattan,Chelsea,40.74814,-73.98956,Entire home/apt,280,7,0,,1,0 +23710,23552267,Manhattan,Tribeca,40.712990000000005,-74.00972,Private room,160,7,1,0.04,1,0 +23711,132559039,Manhattan,Harlem,40.826640000000005,-73.94814000000001,Private room,60,2,38,1.71,1,13 +23712,115256,Manhattan,Upper East Side,40.7699,-73.95692,Entire home/apt,125,3,44,1.8,1,0 +23713,117460213,Manhattan,Harlem,40.823209999999996,-73.95662,Private room,37,2,0,,1,0 +23714,105707375,Manhattan,Upper East Side,40.77541,-73.95083000000001,Entire home/apt,98,12,12,0.48,1,0 +23715,18655355,Manhattan,East Harlem,40.788270000000004,-73.94629,Private room,128,1,22,0.94,1,329 +23716,71864947,Manhattan,Washington Heights,40.84393,-73.93979,Entire home/apt,100,5,11,0.47,1,22 +23717,61316506,Queens,Woodside,40.74341,-73.90041,Entire home/apt,120,1,85,3.37,2,340 +23718,90227099,Manhattan,Harlem,40.827940000000005,-73.94194,Entire home/apt,90,1,3,0.12,1,0 +23719,46317725,Brooklyn,Bushwick,40.70019,-73.92303000000001,Entire home/apt,147,2,12,0.49,2,0 +23720,134070513,Queens,Cambria Heights,40.70133,-73.74212,Private room,60,1,2,0.17,1,37 +23721,132485563,Manhattan,Upper East Side,40.772259999999996,-73.95983000000001,Private room,115,6,11,0.5,2,67 +23722,14271995,Manhattan,Upper East Side,40.76767,-73.9558,Entire home/apt,110,3,8,0.32,1,0 +23723,133972085,Manhattan,Midtown,40.75594,-73.98259,Private room,155,4,35,1.45,3,157 +23724,13848128,Manhattan,Chelsea,40.74263,-73.99769,Entire home/apt,275,6,13,0.58,1,0 +23725,80508435,Manhattan,Upper West Side,40.79367,-73.97073,Private room,150,1,1,0.04,2,0 +23726,6060075,Queens,Kew Gardens Hills,40.7249,-73.82249,Entire home/apt,159,3,2,0.08,1,0 +23727,87553853,Brooklyn,East Flatbush,40.652029999999996,-73.93316999999999,Private room,200,1,2,0.08,1,178 +23728,133972085,Manhattan,Midtown,40.75528,-73.98312,Private room,135,4,37,1.53,3,155 +23729,10685968,Brooklyn,Windsor Terrace,40.659909999999996,-73.983,Private room,89,3,9,0.4,1,0 +23730,134104016,Queens,Woodside,40.74505,-73.89995,Private room,80,2,11,0.45,1,10 +23731,65407018,Brooklyn,Greenpoint,40.72306,-73.93675999999999,Private room,60,1,36,1.55,5,180 +23732,39808438,Brooklyn,Bushwick,40.68947,-73.91544,Private room,45,2,30,1.31,5,0 +23733,20576411,Brooklyn,Flatbush,40.653290000000005,-73.96155999999999,Private room,60,2,0,,1,0 +23734,133694068,Manhattan,East Village,40.72767,-73.98855999999999,Entire home/apt,99,2,38,1.51,1,29 +23735,90279905,Manhattan,East Village,40.727059999999994,-73.98451,Private room,120,1,9,0.37,1,0 +23736,134114121,Manhattan,Hell's Kitchen,40.7598,-73.99033,Entire home/apt,219,3,12,1.33,1,59 +23737,88034180,Manhattan,Harlem,40.824729999999995,-73.94778000000001,Private room,65,3,1,0.04,1,0 +23738,1382888,Brooklyn,Greenpoint,40.72781,-73.95526,Entire home/apt,215,3,2,0.09,1,0 +23739,16404967,Manhattan,Inwood,40.86699,-73.92689,Entire home/apt,90,1,17,1.68,1,64 +23740,61649734,Brooklyn,Bushwick,40.69019,-73.91384000000001,Private room,51,1,194,7.66,2,7 +23741,126897352,Brooklyn,Bushwick,40.703759999999996,-73.92104,Entire home/apt,170,18,22,0.9,2,249 +23742,3801752,Manhattan,Chinatown,40.71522,-73.99355,Private room,90,1,124,4.95,2,125 +23743,73632360,Brooklyn,Bedford-Stuyvesant,40.68776,-73.94936,Private room,50,1,0,,1,0 +23744,131976173,Brooklyn,Bedford-Stuyvesant,40.6908,-73.95506999999999,Private room,79,1,195,7.79,3,46 +23745,133812877,Brooklyn,Cypress Hills,40.67977,-73.89022,Private room,39,3,30,1.2,3,344 +23746,133812877,Brooklyn,Cypress Hills,40.681059999999995,-73.88916,Private room,65,3,23,0.95,3,321 +23747,44140036,Brooklyn,East Flatbush,40.65185,-73.93388,Private room,80,2,1,0.04,2,158 +23748,413447,Brooklyn,Williamsburg,40.71866,-73.943,Private room,120,4,3,0.13,2,0 +23749,128744452,Manhattan,Harlem,40.80063,-73.95389,Private room,52,4,39,1.65,1,242 +23750,134160379,Bronx,Mott Haven,40.81023,-73.91926,Private room,70,1,0,,1,87 +23751,61685550,Manhattan,Upper East Side,40.770990000000005,-73.95118000000001,Entire home/apt,120,1,3,0.12,1,0 +23752,19975102,Manhattan,Upper West Side,40.78184,-73.98382,Entire home/apt,315,2,1,0.05,1,0 +23753,33439741,Brooklyn,Prospect Heights,40.67488,-73.96692,Entire home/apt,125,1,9,0.36,1,65 +23754,84126420,Manhattan,Chelsea,40.75112,-73.99605,Entire home/apt,399,3,44,2.4,1,112 +23755,3255732,Brooklyn,Williamsburg,40.70527,-73.93056999999999,Shared room,72,30,3,0.13,1,0 +23756,95102570,Queens,Bayside,40.763040000000004,-73.76948,Entire home/apt,239,5,10,0.46,1,188 +23757,134218386,Queens,Bayside,40.76143,-73.76937,Entire home/apt,200,4,27,1.11,1,215 +23758,45223012,Manhattan,Inwood,40.867020000000004,-73.92519,Entire home/apt,110,2,15,0.62,1,161 +23759,36460338,Brooklyn,Williamsburg,40.71233,-73.9586,Private room,80,5,6,0.46,1,64 +23760,9649691,Manhattan,Upper East Side,40.76715,-73.95857,Entire home/apt,118,3,29,1.15,1,0 +23761,24913451,Brooklyn,Bushwick,40.6969,-73.92627,Private room,37,3,3,0.12,1,0 +23762,23664115,Brooklyn,Greenpoint,40.72591,-73.94826,Private room,77,2,15,0.64,1,12 +23763,27694509,Manhattan,Harlem,40.803020000000004,-73.95605,Private room,100,6,98,4.07,1,28 +23764,133923404,Manhattan,Harlem,40.82669,-73.94827,Entire home/apt,95,5,9,0.38,1,0 +23765,19734419,Brooklyn,Williamsburg,40.71226,-73.95344,Entire home/apt,180,4,0,,1,0 +23766,89861903,Queens,Astoria,40.767309999999995,-73.92634,Private room,55,2,5,0.21,1,0 +23767,71203979,Manhattan,Kips Bay,40.74507,-73.9792,Private room,76,2,0,,1,0 +23768,83967416,Brooklyn,Crown Heights,40.67072,-73.957,Private room,60,2,1,0.04,1,0 +23769,389321,Brooklyn,Fort Greene,40.69135,-73.97044,Entire home/apt,240,3,15,0.78,1,0 +23770,113805886,Manhattan,Upper East Side,40.77861,-73.95015,Entire home/apt,287,31,6,0.27,33,326 +23771,133269895,Manhattan,Lower East Side,40.7195,-73.98519,Private room,100,5,0,,1,0 +23772,134293540,Queens,Ridgewood,40.7061,-73.9115,Shared room,27,30,4,0.18,4,6 +23773,134293540,Queens,Ridgewood,40.70508,-73.90217,Shared room,26,31,5,0.22,4,365 +23774,19623390,Manhattan,Theater District,40.75936,-73.98751999999999,Entire home/apt,290,5,1,0.04,1,0 +23775,123483050,Queens,Elmhurst,40.747409999999995,-73.88149,Private room,85,1,92,3.7,3,166 +23776,14249332,Queens,Astoria,40.77705,-73.93443,Private room,69,1,68,2.72,1,51 +23777,80242044,Manhattan,Greenwich Village,40.73,-74.00121999999999,Entire home/apt,196,2,15,0.61,1,0 +23778,68228552,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95297,Entire home/apt,154,14,2,1.22,2,172 +23779,131858158,Brooklyn,Bensonhurst,40.60658,-73.99738,Entire home/apt,113,3,69,2.8,2,99 +23780,6163686,Manhattan,Nolita,40.72249,-73.99507,Entire home/apt,250,3,0,,1,0 +23781,75563831,Queens,Astoria,40.76012,-73.9092,Private room,45,10,17,0.69,2,283 +23782,1252275,Manhattan,Upper West Side,40.801759999999994,-73.96638,Private room,70,3,13,0.52,1,0 +23783,128156060,Queens,Sunnyside,40.74194,-73.91289,Private room,70,21,22,1.02,1,0 +23784,6287848,Brooklyn,Prospect Heights,40.68117,-73.97461,Private room,100,2,22,0.91,1,0 +23785,87259106,Manhattan,Harlem,40.80995,-73.94485,Entire home/apt,102,3,24,0.96,1,0 +23786,134415241,Brooklyn,Clinton Hill,40.683840000000004,-73.96200999999999,Entire home/apt,350,2,4,0.16,1,0 +23787,20804098,Queens,Maspeth,40.72815,-73.89945,Private room,70,1,0,,1,0 +23788,19785181,Brooklyn,Bushwick,40.70166,-73.92673,Entire home/apt,136,3,10,0.4,1,0 +23789,16478255,Manhattan,Harlem,40.80819,-73.94729,Private room,100,3,0,,1,362 +23790,2096374,Brooklyn,Bedford-Stuyvesant,40.69601,-73.96036,Private room,80,90,0,,1,365 +23791,6850350,Manhattan,Nolita,40.72254,-73.99543,Private room,115,1,28,1.16,1,0 +23792,764688,Brooklyn,Prospect Heights,40.67649,-73.97113,Entire home/apt,160,7,1,0.04,1,0 +23793,51914156,Brooklyn,Fort Greene,40.693529999999996,-73.9711,Entire home/apt,130,2,31,1.24,1,0 +23794,11601610,Manhattan,Upper West Side,40.7732,-73.98768000000001,Entire home/apt,148,4,60,2.42,1,320 +23795,133785513,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93746,Private room,110,1,150,5.99,4,85 +23796,133785513,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93794,Private room,87,1,141,5.58,4,73 +23797,38655309,Manhattan,Harlem,40.82953,-73.94283,Entire home/apt,72,3,28,1.15,1,0 +23798,134510659,Manhattan,Chelsea,40.743190000000006,-73.99636,Private room,90,14,0,,1,0 +23799,134521683,Manhattan,East Village,40.7239,-73.98111,Private room,120,30,3,0.12,2,0 +23800,1832930,Brooklyn,Williamsburg,40.717490000000005,-73.95747,Entire home/apt,450,2,31,1.24,1,22 +23801,23257199,Brooklyn,Crown Heights,40.67375,-73.96255,Entire home/apt,84,4,8,0.33,1,0 +23802,99349134,Manhattan,Upper East Side,40.77713,-73.95277,Private room,75,1,9,0.4,2,119 +23803,63236560,Manhattan,Upper West Side,40.79835,-73.97242,Private room,110,7,3,0.13,1,321 +23804,131659,Brooklyn,Bushwick,40.68267,-73.90576,Entire home/apt,148,3,79,3.22,1,258 +23805,134549676,Manhattan,Hell's Kitchen,40.763729999999995,-73.9881,Entire home/apt,225,2,1,0.04,1,0 +23806,9963151,Manhattan,Harlem,40.823190000000004,-73.95103,Entire home/apt,122,4,16,0.67,1,5 +23807,6001984,Manhattan,Upper West Side,40.80253,-73.96812,Entire home/apt,190,4,4,0.17,1,0 +23808,21812461,Manhattan,Upper East Side,40.7787,-73.94775,Entire home/apt,120,20,7,0.29,1,0 +23809,26656760,Brooklyn,Bedford-Stuyvesant,40.69477,-73.94423,Entire home/apt,200,4,10,0.4,1,0 +23810,24709724,Queens,Ridgewood,40.70684,-73.89474,Entire home/apt,80,7,2,0.11,1,190 +23811,26814623,Brooklyn,Brooklyn Heights,40.69016,-73.99311,Entire home/apt,149,2,13,0.52,1,0 +23812,93561011,Manhattan,Washington Heights,40.84492,-73.93673000000001,Private room,60,2,3,0.19,1,223 +23813,33365473,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94270999999999,Entire home/apt,650,31,0,,2,358 +23814,80990325,Manhattan,Hell's Kitchen,40.76383,-73.99251,Entire home/apt,175,2,85,3.43,1,0 +23815,86327101,Brooklyn,Bedford-Stuyvesant,40.681779999999996,-73.91287,Private room,55,1,115,4.64,6,164 +23816,133657043,Manhattan,Harlem,40.830090000000006,-73.94723,Private room,77,1,1,0.81,1,0 +23817,86327101,Brooklyn,Bedford-Stuyvesant,40.6829,-73.91295,Private room,55,1,119,4.78,6,205 +23818,86327101,Brooklyn,Bedford-Stuyvesant,40.6812,-73.91148000000001,Private room,50,1,102,4.14,6,237 +23819,134601877,Manhattan,East Harlem,40.79929,-73.94605,Entire home/apt,350,3,81,3.46,2,27 +23820,15741095,Manhattan,Washington Heights,40.84491,-73.94044,Private room,50,1,20,0.81,1,0 +23821,333897,Queens,Ridgewood,40.69578,-73.90261,Private room,100,2,48,1.96,2,174 +23822,32988374,Manhattan,West Village,40.73526,-74.00476,Entire home/apt,319,2,20,1.51,1,79 +23823,63010844,Manhattan,Harlem,40.82399,-73.94382,Private room,46,1,0,,1,0 +23824,19783595,Manhattan,East Harlem,40.79234,-73.94145,Entire home/apt,120,5,9,0.36,1,0 +23825,6597437,Brooklyn,Prospect Heights,40.67585,-73.96755,Entire home/apt,150,3,12,0.52,1,0 +23826,1722812,Manhattan,East Village,40.73111,-73.98675,Entire home/apt,250,4,2,0.08,1,0 +23827,134672751,Staten Island,West Brighton,40.623979999999996,-74.10801,Private room,200,3,0,,1,365 +23828,20128515,Manhattan,Harlem,40.82707,-73.94763,Entire home/apt,400,4,26,1.21,1,128 +23829,3452241,Brooklyn,Bedford-Stuyvesant,40.68524,-73.92183,Private room,125,2,0,,1,0 +23830,612818,Brooklyn,Carroll Gardens,40.678470000000004,-73.99924,Entire home/apt,125,2,11,0.45,1,26 +23831,5530093,Manhattan,Upper East Side,40.76327,-73.9612,Entire home/apt,180,6,5,0.21,1,0 +23832,29735603,Brooklyn,Red Hook,40.6799,-74.01146999999999,Entire home/apt,90,7,3,0.13,1,215 +23833,133547094,Manhattan,Murray Hill,40.74808,-73.98172,Entire home/apt,200,5,10,1.41,1,52 +23834,5374258,Queens,Ridgewood,40.70545,-73.90393,Entire home/apt,100,4,7,0.29,1,0 +23835,18515933,Brooklyn,Bushwick,40.70565,-73.92492,Private room,70,2,10,0.4,1,18 +23836,39641996,Queens,Forest Hills,40.72428,-73.85155999999999,Entire home/apt,100,2,0,,1,0 +23837,134438985,Queens,Astoria,40.76473,-73.91183000000001,Entire home/apt,199,1,5,0.23,1,0 +23838,134613498,Manhattan,East Village,40.72715,-73.98623,Private room,120,1,39,1.65,7,350 +23839,17184568,Brooklyn,Bushwick,40.70232,-73.92935,Private room,60,1,1,0.04,1,0 +23840,2110569,Brooklyn,Bushwick,40.69954,-73.93760999999999,Entire home/apt,199,2,60,2.47,1,37 +23841,20283471,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93315,Entire home/apt,130,1,3,0.12,1,0 +23842,20507114,Brooklyn,Bushwick,40.70068,-73.92293000000001,Private room,60,3,8,0.33,1,0 +23843,59156312,Queens,Woodhaven,40.686409999999995,-73.86635,Private room,69,3,21,0.85,9,357 +23844,4620141,Manhattan,Washington Heights,40.84717,-73.93267,Private room,30,5,3,0.12,2,0 +23845,16262749,Brooklyn,Greenpoint,40.72092,-73.94281,Entire home/apt,350,1,70,3.26,1,142 +23846,13463652,Brooklyn,Clinton Hill,40.68399,-73.96465,Private room,125,5,0,,1,0 +23847,23350812,Brooklyn,Kensington,40.64676,-73.97403,Entire home/apt,93,13,6,0.25,1,37 +23848,42068815,Manhattan,Morningside Heights,40.80908,-73.95858,Entire home/apt,150,3,81,3.24,1,282 +23849,2514859,Brooklyn,Bedford-Stuyvesant,40.68719,-73.95298000000001,Private room,60,3,2,0.11,2,0 +23850,134613498,Manhattan,East Village,40.72717,-73.98643,Private room,180,1,28,1.17,7,328 +23851,120767920,Queens,Flushing,40.75715,-73.81272,Private room,116,2,55,2.19,10,361 +23852,22176151,Brooklyn,Williamsburg,40.715759999999996,-73.96084,Entire home/apt,225,2,5,0.21,1,0 +23853,952909,Manhattan,Upper West Side,40.77949,-73.98,Entire home/apt,183,30,0,,1,0 +23854,121732047,Queens,Forest Hills,40.710640000000005,-73.84614,Private room,40,14,0,,1,19 +23855,1241818,Brooklyn,Cobble Hill,40.68795,-73.99158,Entire home/apt,124,30,1,0.04,1,12 +23856,41902579,Manhattan,Chelsea,40.74195,-74.00052,Entire home/apt,140,7,41,1.66,1,13 +23857,45536295,Manhattan,Harlem,40.817029999999995,-73.93691,Entire home/apt,84,2,3,0.12,1,0 +23858,11760898,Brooklyn,Brooklyn Heights,40.69357,-73.99489,Entire home/apt,149,20,0,,1,0 +23859,115546121,Queens,Sunnyside,40.74694,-73.9194,Entire home/apt,130,5,0,,1,0 +23860,58782992,Manhattan,Harlem,40.82287,-73.94509000000001,Entire home/apt,125,31,96,3.93,2,186 +23861,134809070,Brooklyn,Bedford-Stuyvesant,40.67759,-73.90888000000001,Entire home/apt,63,2,26,1.08,1,0 +23862,5325177,Brooklyn,Flatbush,40.64707,-73.96278000000001,Entire home/apt,85,5,2,0.09,1,0 +23863,5453550,Brooklyn,Clinton Hill,40.69556,-73.96611,Entire home/apt,425,4,38,1.74,3,262 +23864,67992400,Brooklyn,Bedford-Stuyvesant,40.6953,-73.93567,Private room,50,2,1,0.04,1,0 +23865,6988611,Queens,Arverne,40.58781,-73.79316999999999,Entire home/apt,1500,3,0,,1,342 +23866,4279544,Manhattan,Greenwich Village,40.72954,-74.00206,Entire home/apt,215,4,6,0.24,1,0 +23867,314115,Bronx,Morrisania,40.8329,-73.89608,Private room,60,5,4,0.16,1,175 +23868,134901180,Brooklyn,Bedford-Stuyvesant,40.68153,-73.9538,Entire home/apt,200,7,8,0.33,2,355 +23869,14416238,Brooklyn,Williamsburg,40.70851,-73.94197,Entire home/apt,125,4,0,,1,0 +23870,1366844,Manhattan,Harlem,40.80079,-73.95798,Entire home/apt,135,3,71,3.52,1,9 +23871,31931291,Manhattan,West Village,40.731429999999996,-74.00816999999999,Entire home/apt,250,5,0,,1,0 +23872,124399442,Brooklyn,Midwood,40.61359,-73.95983000000001,Shared room,32,1,8,0.32,4,21 +23873,134741341,Queens,Astoria,40.77415,-73.93125,Private room,85,1,14,0.76,2,6 +23874,4297109,Manhattan,Midtown,40.75334,-73.97278,Entire home/apt,195,2,5,0.2,1,0 +23875,128780335,Manhattan,NoHo,40.72681,-73.99346,Entire home/apt,352,4,15,0.63,1,13 +23876,20292772,Manhattan,Hell's Kitchen,40.76227,-73.99035,Entire home/apt,225,2,6,0.24,1,0 +23877,134946389,Brooklyn,Bedford-Stuyvesant,40.6861,-73.93997,Entire home/apt,60,2,146,5.82,5,88 +23878,24745688,Brooklyn,Bushwick,40.694390000000006,-73.92008,Private room,35,25,3,0.13,1,36 +23879,1579845,Manhattan,Hell's Kitchen,40.76283,-73.9897,Private room,87,4,0,,1,0 +23880,134961952,Manhattan,Upper West Side,40.7765,-73.97914,Entire home/apt,230,5,0,,1,0 +23881,53480097,Brooklyn,Bushwick,40.684709999999995,-73.90906,Private room,60,2,27,1.08,2,104 +23882,4969033,Queens,Astoria,40.76634,-73.90872,Entire home/apt,90,3,30,1.24,1,0 +23883,62608664,Queens,Neponsit,40.569309999999994,-73.86121999999999,Entire home/apt,274,2,34,1.37,1,315 +23884,7033916,Manhattan,Hell's Kitchen,40.76463,-73.9877,Private room,69,6,2,0.08,1,0 +23885,36474715,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95458,Private room,65,3,27,1.09,1,78 +23886,15897027,Manhattan,Murray Hill,40.75075,-73.9752,Entire home/apt,278,2,8,0.32,1,0 +23887,24842789,Brooklyn,Williamsburg,40.70717,-73.94949,Private room,60,1,5,0.2,1,0 +23888,24771293,Manhattan,Morningside Heights,40.80477,-73.96486,Private room,79,2,11,0.45,1,0 +23889,423117,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92472,Private room,100,2,13,0.52,1,179 +23890,22215460,Manhattan,Upper East Side,40.7685,-73.95698,Entire home/apt,500,1,0,,1,363 +23891,18747504,Brooklyn,Williamsburg,40.71886,-73.95695,Private room,100,2,1,0.04,1,0 +23892,2474293,Manhattan,West Village,40.7316,-74.00211999999999,Entire home/apt,210,5,53,2.27,1,148 +23893,94877519,Manhattan,Harlem,40.82798,-73.95201999999999,Entire home/apt,180,3,40,1.69,1,65 +23894,131392140,Queens,Ditmars Steinway,40.77458,-73.92195,Entire home/apt,165,3,61,2.46,5,62 +23895,3820994,Brooklyn,Greenpoint,40.728120000000004,-73.95619,Entire home/apt,225,5,7,0.29,1,4 +23896,139573,Queens,Astoria,40.76272,-73.92656,Entire home/apt,150,7,1,0.05,1,0 +23897,107179840,Brooklyn,Bushwick,40.69477,-73.92931,Entire home/apt,90,3,8,0.32,1,0 +23898,19893801,Brooklyn,Windsor Terrace,40.6526,-73.97366,Entire home/apt,77,1,5,0.2,1,0 +23899,17770287,Manhattan,Midtown,40.75077,-73.9814,Entire home/apt,145,30,4,0.18,14,207 +23900,68915153,Manhattan,Washington Heights,40.84191,-73.9356,Private room,60,3,6,0.31,1,0 +23901,135073646,Manhattan,East Village,40.72784,-73.98883000000001,Entire home/apt,250,2,99,4.03,1,176 +23902,3801752,Manhattan,Chinatown,40.71418,-73.99238000000001,Private room,90,1,105,4.19,2,87 +23903,134887663,Manhattan,Tribeca,40.71863,-74.0117,Entire home/apt,220,2,76,3.04,1,127 +23904,135083290,Brooklyn,Williamsburg,40.70928,-73.94882,Private room,46,4,6,0.41,1,7 +23905,34198671,Brooklyn,Crown Heights,40.675940000000004,-73.9261,Private room,55,1,1,0.04,1,0 +23906,14157243,Brooklyn,Williamsburg,40.71617,-73.95283,Entire home/apt,250,2,3,0.14,1,0 +23907,47782497,Brooklyn,East New York,40.669059999999995,-73.87805,Private room,55,7,15,1.33,3,318 +23908,42941590,Manhattan,Gramercy,40.73408,-73.98163000000001,Entire home/apt,225,3,39,1.79,1,345 +23909,13547493,Manhattan,Upper East Side,40.78179,-73.95209,Entire home/apt,120,3,38,3.37,2,5 +23910,135124200,Brooklyn,Bushwick,40.68911,-73.91581,Entire home/apt,89,2,166,6.79,1,52 +23911,74633496,Bronx,University Heights,40.85771,-73.90899,Private room,40,3,31,1.26,5,362 +23912,135131537,Manhattan,Hell's Kitchen,40.75743,-73.99638,Private room,69,3,80,3.7,2,16 +23913,9913035,Manhattan,Lower East Side,40.72195,-73.98861,Shared room,55,15,11,0.44,3,347 +23914,135136607,Manhattan,West Village,40.73697,-74.00223000000001,Entire home/apt,152,2,29,1.17,1,0 +23915,23401472,Manhattan,Harlem,40.82452,-73.94499,Entire home/apt,57,30,0,,2,95 +23916,132341923,Queens,Jamaica,40.68875,-73.78786,Entire home/apt,57,1,120,5.37,2,56 +23917,132104049,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94868000000001,Shared room,37,2,3,0.13,3,343 +23918,132104049,Brooklyn,Bedford-Stuyvesant,40.69502,-73.94711,Shared room,37,2,0,,3,348 +23919,68579384,Brooklyn,Bedford-Stuyvesant,40.68274,-73.9261,Private room,42,3,3,0.12,2,0 +23920,11035230,Manhattan,Hell's Kitchen,40.75544,-73.99406,Entire home/apt,100,1,13,0.52,1,0 +23921,6179439,Brooklyn,Park Slope,40.67027,-73.97874,Entire home/apt,226,2,57,2.32,1,127 +23922,20266646,Manhattan,Morningside Heights,40.81454,-73.96101999999999,Private room,60,2,4,0.24,1,0 +23923,11688742,Brooklyn,Windsor Terrace,40.65193,-73.97743,Entire home/apt,300,3,1,0.05,1,194 +23924,10369934,Brooklyn,Williamsburg,40.71112,-73.95796999999999,Private room,85,14,0,,1,0 +23925,23131509,Manhattan,Little Italy,40.71913,-73.9968,Shared room,165,2,0,,1,0 +23926,105703386,Manhattan,Battery Park City,40.70725,-74.01741,Entire home/apt,390,2,0,,1,0 +23927,31907981,Brooklyn,Williamsburg,40.71635,-73.94238,Private room,80,3,9,0.38,1,0 +23928,40755122,Brooklyn,Park Slope,40.6704,-73.97431999999999,Entire home/apt,150,3,105,4.23,1,72 +23929,135061108,Brooklyn,East Flatbush,40.650420000000004,-73.94842,Entire home/apt,225,1,6,0.25,2,152 +23930,1103131,Manhattan,Lower East Side,40.714529999999996,-73.98679,Private room,69,5,72,2.93,2,316 +23931,8962305,Manhattan,Lower East Side,40.71391,-73.98938000000001,Private room,61,5,8,0.65,3,50 +23932,54739,Brooklyn,Crown Heights,40.675779999999996,-73.95606,Entire home/apt,100,5,9,0.47,1,0 +23933,1420715,Brooklyn,Bushwick,40.68845,-73.91985,Entire home/apt,399,4,4,0.28,3,221 +23934,9453989,Brooklyn,Crown Heights,40.6735,-73.95322,Entire home/apt,90,13,12,0.58,1,74 +23935,48891291,Brooklyn,Bushwick,40.70385,-73.92513000000001,Private room,40,2,3,0.12,1,0 +23936,18335748,Brooklyn,Williamsburg,40.715920000000004,-73.9562,Private room,60,3,22,0.88,1,46 +23937,38483192,Manhattan,Financial District,40.70476,-74.01579,Entire home/apt,165,2,0,,1,0 +23938,42947876,Brooklyn,Clinton Hill,40.686640000000004,-73.96285999999999,Entire home/apt,212,5,11,0.46,1,10 +23939,34006180,Manhattan,Chelsea,40.739959999999996,-73.99987,Entire home/apt,200,3,3,0.16,1,11 +23940,3792860,Manhattan,Upper East Side,40.76873,-73.95328,Entire home/apt,180,3,0,,2,0 +23941,26691429,Manhattan,Upper East Side,40.76892,-73.96906,Private room,115,1,56,3.03,1,325 +23942,61391963,Manhattan,Midtown,40.75542,-73.96781,Entire home/apt,185,30,3,0.16,91,147 +23943,135269204,Brooklyn,Clinton Hill,40.68284,-73.96677,Entire home/apt,130,7,3,0.13,1,189 +23944,135272642,Manhattan,East Village,40.72408,-73.98297,Entire home/apt,165,1,202,8.16,1,217 +23945,5148966,Brooklyn,Greenpoint,40.72925,-73.95645,Entire home/apt,160,2,23,0.94,1,30 +23946,89031106,Brooklyn,Greenpoint,40.724059999999994,-73.95044,Entire home/apt,185,30,3,0.16,4,261 +23947,5060814,Manhattan,Nolita,40.721779999999995,-73.99509,Entire home/apt,170,3,0,,1,0 +23948,108578737,Brooklyn,Crown Heights,40.66943,-73.96024,Private room,50,5,0,,1,0 +23949,23827731,Brooklyn,Williamsburg,40.71289,-73.96354000000001,Entire home/apt,250,14,13,0.52,1,31 +23950,135275978,Manhattan,Harlem,40.823609999999995,-73.93885999999999,Entire home/apt,150,5,78,3.14,1,281 +23951,135294307,Manhattan,Marble Hill,40.8753,-73.9116,Entire home/apt,90,5,0,,1,0 +23952,21383358,Manhattan,Roosevelt Island,40.76119,-73.94914,Entire home/apt,70,5,3,0.12,1,0 +23953,12624062,Manhattan,Financial District,40.707159999999995,-74.01035999999999,Entire home/apt,210,1,8,0.34,1,54 +23954,100835599,Manhattan,East Harlem,40.79031,-73.94688000000001,Private room,113,1,12,0.48,2,90 +23955,5416971,Brooklyn,East Flatbush,40.640409999999996,-73.95133,Entire home/apt,97,2,21,0.85,1,0 +23956,135320687,Manhattan,Roosevelt Island,40.76178,-73.94889,Private room,85,3,24,1.13,2,190 +23957,98705818,Brooklyn,Crown Heights,40.67476,-73.93016,Entire home/apt,550,1,6,0.25,1,249 +23958,21493738,Brooklyn,Crown Heights,40.67139,-73.94842,Private room,85,3,0,,2,0 +23959,36851145,Manhattan,Lower East Side,40.72141,-73.98855,Entire home/apt,260,2,5,0.2,1,0 +23960,119968055,Manhattan,East Village,40.727059999999994,-73.98583,Private room,100,1,0,,1,0 +23961,32164030,Bronx,Hunts Point,40.81227,-73.88871,Private room,37,30,5,0.37,6,329 +23962,16342788,Brooklyn,Williamsburg,40.70857,-73.94501,Private room,85,1,2,0.09,2,64 +23963,131354448,Queens,Flushing,40.755320000000005,-73.81074,Entire home/apt,85,3,37,1.51,4,0 +23964,67280917,Manhattan,East Harlem,40.79313,-73.94154,Entire home/apt,100,2,14,1.22,1,36 +23965,78183456,Brooklyn,Bushwick,40.69905,-73.93831,Private room,65,2,39,1.66,1,76 +23966,7014073,Brooklyn,Williamsburg,40.711420000000004,-73.96566999999999,Private room,90,1,7,0.71,1,0 +23967,5962328,Queens,Flushing,40.7593,-73.82329,Entire home/apt,115,30,4,0.22,15,319 +23968,1580521,Brooklyn,Carroll Gardens,40.67777,-73.99893,Entire home/apt,160,2,72,3.2,1,236 +23969,135401519,Manhattan,Kips Bay,40.740629999999996,-73.98205,Entire home/apt,325,30,155,6.22,1,240 +23970,45602137,Brooklyn,Fort Greene,40.69546,-73.97303000000001,Private room,65,4,0,,1,0 +23971,134370506,Manhattan,Morningside Heights,40.81237,-73.95985,Private room,80,1,39,1.56,1,13 +23972,4922765,Brooklyn,Bushwick,40.70541,-73.91878,Private room,80,299,0,,1,0 +23973,125231390,Brooklyn,Canarsie,40.64076,-73.88298,Entire home/apt,90,3,44,1.82,1,126 +23974,1965001,Brooklyn,Bushwick,40.70111,-73.92676999999999,Entire home/apt,150,2,0,,1,66 +23975,4298040,Brooklyn,Fort Greene,40.69211,-73.97224,Private room,125,4,0,,1,0 +23976,3734323,Brooklyn,Bushwick,40.6883,-73.91383,Private room,65,5,5,0.2,3,0 +23977,796111,Manhattan,West Village,40.73808,-74.00254,Entire home/apt,150,30,3,0.16,1,83 +23978,7727013,Manhattan,Harlem,40.80979,-73.94289,Private room,200,3,2,0.16,2,24 +23979,134808051,Brooklyn,Crown Heights,40.6746,-73.94651999999999,Private room,80,1,5,0.22,1,365 +23980,135508099,Brooklyn,Williamsburg,40.71835,-73.94498,Entire home/apt,125,2,16,0.65,1,0 +23981,28283044,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92738,Entire home/apt,139,4,61,2.53,1,82 +23982,135511518,Manhattan,Washington Heights,40.85678,-73.92696,Private room,43,7,0,,1,0 +23983,132958806,Brooklyn,Bedford-Stuyvesant,40.6914,-73.95993,Private room,45,10,0,,1,0 +23984,135522817,Manhattan,Upper East Side,40.77412,-73.95695,Entire home/apt,198,1,143,5.91,1,300 +23985,80603182,Brooklyn,Bushwick,40.7016,-73.91974,Private room,40,2,2,0.09,1,0 +23986,3542562,Manhattan,Harlem,40.82419,-73.94639000000001,Private room,50,31,0,,4,78 +23987,80292073,Brooklyn,South Slope,40.662420000000004,-73.98103,Private room,60,5,10,0.43,2,23 +23988,35786659,Manhattan,Upper East Side,40.76801,-73.96085,Private room,75,1,15,0.61,1,0 +23989,637733,Brooklyn,Bedford-Stuyvesant,40.69092,-73.93094,Private room,35,3,5,0.32,1,0 +23990,3919533,Brooklyn,Bushwick,40.699709999999996,-73.93729,Entire home/apt,162,2,46,1.92,1,19 +23991,18225837,Manhattan,Morningside Heights,40.80723,-73.96222,Private room,50,5,18,0.72,1,157 +23992,135559842,Manhattan,Harlem,40.81375,-73.95268,Private room,49,2,0,,1,0 +23993,21187349,Brooklyn,East Flatbush,40.6493,-73.94547,Private room,75,2,30,1.21,1,104 +23994,1334621,Queens,Woodside,40.7432,-73.91238,Entire home/apt,50,1,28,1.14,1,13 +23995,24806534,Brooklyn,Fort Greene,40.68287,-73.97117,Private room,130,3,1,0.04,1,0 +23996,74033595,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91478000000001,Private room,75,2,1,0.1,1,0 +23997,135582685,Manhattan,Washington Heights,40.833659999999995,-73.94301999999999,Private room,60,2,97,4.14,1,35 +23998,7969715,Manhattan,East Village,40.728840000000005,-73.98517,Entire home/apt,125,25,19,0.88,1,92 +23999,2601002,Manhattan,East Village,40.72746,-73.98781,Entire home/apt,80,4,11,0.44,1,0 +24000,9155010,Queens,Long Island City,40.745090000000005,-73.94904,Entire home/apt,120,5,4,0.32,1,7 +24001,135630698,Brooklyn,Crown Heights,40.66891,-73.94605,Entire home/apt,150,3,23,0.93,1,120 +24002,1221228,Brooklyn,Clinton Hill,40.69112,-73.96059,Private room,37,7,3,0.12,1,0 +24003,11495231,Brooklyn,Greenpoint,40.72627,-73.95943,Entire home/apt,250,3,0,,1,0 +24004,77125873,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94106,Entire home/apt,130,2,24,1.14,1,10 +24005,12518898,Manhattan,Harlem,40.801120000000004,-73.95232,Private room,69,14,3,0.12,1,0 +24006,66215286,Manhattan,East Village,40.726859999999995,-73.97864,Private room,75,20,0,,1,0 +24007,80672906,Brooklyn,Kensington,40.63142,-73.97154,Private room,100,1,0,,1,0 +24008,135680128,Bronx,Wakefield,40.903909999999996,-73.85311999999999,Entire home/apt,120,2,34,1.42,1,77 +24009,43604044,Queens,Whitestone,40.780809999999995,-73.82005,Private room,40,2,0,,1,0 +24010,6670822,Manhattan,Lower East Side,40.71992,-73.99251,Entire home/apt,300,5,6,0.24,1,45 +24011,101657794,Queens,Briarwood,40.70962,-73.80615999999999,Private room,70,1,32,1.29,6,364 +24012,135703190,Brooklyn,Vinegar Hill,40.69891,-73.98473,Entire home/apt,300,360,0,,1,365 +24013,76854135,Brooklyn,Carroll Gardens,40.67811,-74.00102,Entire home/apt,160,2,52,2.16,1,9 +24014,101657794,Queens,Briarwood,40.70988,-73.80691,Private room,60,2,38,1.53,6,365 +24015,101657794,Queens,Briarwood,40.70848,-73.80606999999999,Private room,70,1,22,0.89,6,0 +24016,125684191,Manhattan,Harlem,40.81783,-73.95345999999999,Private room,55,1,2,0.08,1,0 +24017,27721159,Manhattan,SoHo,40.72635,-74.00298000000001,Private room,94,1,1,0.04,1,0 +24018,46454894,Brooklyn,Prospect-Lefferts Gardens,40.661970000000004,-73.9543,Entire home/apt,105,1,2,0.08,1,0 +24019,27443386,Manhattan,East Village,40.72036,-73.97889,Private room,50,1,2,0.08,1,0 +24020,74541079,Brooklyn,Crown Heights,40.6692,-73.9359,Entire home/apt,87,3,32,1.36,9,72 +24021,21450607,Manhattan,West Village,40.7328,-74.00845,Entire home/apt,299,2,1,0.04,1,0 +24022,4048704,Manhattan,Chelsea,40.7417,-74.00229,Private room,100,3,1,0.04,1,0 +24023,135732224,Queens,Flushing,40.754740000000005,-73.82166,Private room,44,1,0,,1,0 +24024,39561430,Manhattan,Upper East Side,40.78119,-73.9462,Private room,52,22,1,0.14,1,0 +24025,51537620,Queens,Woodside,40.745090000000005,-73.89649,Private room,80,2,2,0.08,1,0 +24026,9530419,Brooklyn,Bedford-Stuyvesant,40.692009999999996,-73.95795,Private room,55,2,3,0.12,1,0 +24027,74179880,Brooklyn,East New York,40.67392,-73.88892,Entire home/apt,81,3,45,1.82,8,356 +24028,70154608,Manhattan,Chelsea,40.74625,-73.99911,Entire home/apt,185,5,17,0.88,1,15 +24029,119108169,Brooklyn,Bedford-Stuyvesant,40.692240000000005,-73.95819,Private room,60,4,1,0.04,1,0 +24030,127345864,Brooklyn,East Flatbush,40.64156,-73.93177,Private room,37,7,62,2.53,4,30 +24031,29243209,Brooklyn,Clinton Hill,40.68618,-73.96179000000001,Private room,70,1,6,0.24,2,0 +24032,7756888,Brooklyn,Flatbush,40.63609,-73.96687,Private room,69,2,1,0.04,1,0 +24033,7107479,Manhattan,NoHo,40.7291,-73.99246,Entire home/apt,191,2,37,1.5,1,5 +24034,34160620,Manhattan,Harlem,40.82186,-73.94624,Private room,80,2,2,0.08,2,0 +24035,13669059,Manhattan,East Village,40.72489,-73.98956,Entire home/apt,250,4,14,0.58,1,16 +24036,132826462,Manhattan,Washington Heights,40.84118,-73.93697,Private room,70,2,1,0.05,1,0 +24037,22655081,Manhattan,Upper West Side,40.79205,-73.97261999999999,Private room,45,5,0,,1,0 +24038,25064774,Brooklyn,Bedford-Stuyvesant,40.68936,-73.94189,Private room,33,14,1,0.04,1,0 +24039,9405109,Manhattan,Civic Center,40.71195,-74.00757,Entire home/apt,200,3,3,0.13,1,19 +24040,9293730,Manhattan,Upper East Side,40.76833,-73.95581,Entire home/apt,135,30,9,0.38,16,340 +24041,14398102,Brooklyn,Williamsburg,40.71487,-73.94524,Private room,49,5,1,0.23,1,33 +24042,9597266,Manhattan,West Village,40.740120000000005,-74.00364,Entire home/apt,190,2,1,0.04,1,0 +24043,135877454,Queens,Astoria,40.76065,-73.90905,Entire home/apt,80,4,6,0.48,1,0 +24044,11370189,Brooklyn,Prospect Heights,40.67602,-73.96593,Private room,225,5,0,,2,1 +24045,22193918,Brooklyn,Bedford-Stuyvesant,40.687670000000004,-73.95495,Private room,120,2,6,0.91,1,52 +24046,4581860,Manhattan,Chelsea,40.7476,-73.99348,Private room,130,2,21,0.96,1,0 +24047,5399668,Queens,Long Island City,40.74538,-73.94747,Private room,75,2,17,0.68,1,0 +24048,13283016,Brooklyn,Crown Heights,40.666579999999996,-73.95167,Entire home/apt,157,1,0,,1,0 +24049,124860677,Queens,Flushing,40.75712,-73.8122,Private room,120,2,45,1.87,6,365 +24050,106948134,Manhattan,Roosevelt Island,40.760740000000006,-73.94943,Private room,72,1,12,0.48,2,0 +24051,22462,Brooklyn,Bedford-Stuyvesant,40.68326,-73.92448,Entire home/apt,150,3,80,3.38,1,42 +24052,31920354,Brooklyn,Williamsburg,40.71152,-73.93902,Private room,110,3,3,0.14,2,269 +24053,5749658,Queens,Astoria,40.75636,-73.92699999999999,Entire home/apt,70,30,10,0.41,1,3 +24054,78325795,Manhattan,Harlem,40.80369,-73.94856999999999,Entire home/apt,179,2,143,5.77,3,197 +24055,135910220,Queens,Maspeth,40.73832,-73.90669,Private room,45,2,41,1.68,1,154 +24056,17026738,Brooklyn,Williamsburg,40.70642,-73.92739,Entire home/apt,95,8,6,0.25,1,0 +24057,32691167,Manhattan,Washington Heights,40.838029999999996,-73.94421,Private room,120,30,0,,1,0 +24058,14140453,Brooklyn,Carroll Gardens,40.68254,-73.99207,Entire home/apt,450,4,11,0.44,1,2 +24059,5180117,Manhattan,Lower East Side,40.72034,-73.98617,Entire home/apt,140,2,20,0.97,1,37 +24060,661399,Manhattan,East Harlem,40.79179,-73.94506,Private room,89,3,21,0.91,2,125 +24061,14805863,Queens,Maspeth,40.73519,-73.90271,Entire home/apt,88,3,7,0.28,1,0 +24062,50591874,Brooklyn,Prospect-Lefferts Gardens,40.65653,-73.95786,Private room,55,1,124,5.02,1,24 +24063,135932425,Manhattan,Washington Heights,40.85471,-73.93016,Private room,50,1,1,0.04,1,0 +24064,5612625,Manhattan,Upper West Side,40.79503,-73.96715,Private room,95,1,55,2.23,1,0 +24065,135932422,Brooklyn,Crown Heights,40.67398,-73.92787,Entire home/apt,124,2,65,2.67,1,308 +24066,79572183,Manhattan,West Village,40.73852,-74.00269,Entire home/apt,180,30,0,,1,264 +24067,134428157,Brooklyn,Bedford-Stuyvesant,40.69257,-73.94657,Entire home/apt,165,3,82,3.3,7,247 +24068,14404488,Brooklyn,Gowanus,40.67835,-73.9908,Entire home/apt,102,10,0,,1,0 +24069,10262363,Manhattan,Hell's Kitchen,40.75548,-73.9951,Private room,100,4,1,0.04,1,0 +24070,88861099,Manhattan,Harlem,40.8101,-73.94021,Private room,88,2,55,2.24,1,208 +24071,374115,Manhattan,Tribeca,40.72403,-74.00858000000001,Entire home/apt,200,2,7,0.29,1,0 +24072,35064923,Manhattan,East Harlem,40.80138,-73.94413,Entire home/apt,127,4,86,3.68,1,1 +24073,35108251,Brooklyn,East New York,40.669290000000004,-73.89079,Entire home/apt,133,2,73,2.98,2,171 +24074,1341922,Brooklyn,Greenpoint,40.72412,-73.95260999999999,Private room,49,1,0,,1,0 +24075,136058103,Manhattan,Upper West Side,40.802209999999995,-73.96514,Private room,35,1,4,0.17,1,0 +24076,127357582,Brooklyn,Bedford-Stuyvesant,40.6834,-73.92035,Private room,69,2,63,2.53,2,102 +24077,8304751,Brooklyn,Williamsburg,40.715270000000004,-73.95945999999999,Entire home/apt,250,7,10,0.43,1,83 +24078,34585857,Brooklyn,Crown Heights,40.6719,-73.93475,Private room,35,7,5,0.25,1,36 +24079,16932515,Manhattan,Midtown,40.76064,-73.97066,Entire home/apt,375,4,2,0.08,1,178 +24080,2102686,Manhattan,Chelsea,40.7483,-74.00031,Entire home/apt,135,2,10,0.41,1,5 +24081,120762452,Manhattan,Murray Hill,40.74818,-73.97537,Entire home/apt,175,30,1,0.06,50,342 +24082,120762452,Manhattan,Murray Hill,40.74843,-73.97715,Entire home/apt,175,30,1,0.06,50,365 +24083,4844197,Brooklyn,Williamsburg,40.7098,-73.94834,Private room,60,3,12,0.51,1,0 +24084,133573369,Manhattan,Upper East Side,40.77366,-73.95755,Entire home/apt,125,7,0,,1,0 +24085,39739038,Manhattan,East Harlem,40.79749,-73.93336,Private room,140,1,1,0.05,2,177 +24086,7252535,Brooklyn,Williamsburg,40.71228,-73.9599,Private room,80,2,31,1.26,2,5 +24087,23985682,Brooklyn,Carroll Gardens,40.67507,-73.99805,Entire home/apt,160,2,6,0.24,1,0 +24088,61483702,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93446,Private room,70,2,3,0.12,2,0 +24089,49123284,Manhattan,Two Bridges,40.711090000000006,-73.99616,Entire home/apt,145,6,42,2.13,2,221 +24090,136098610,Manhattan,West Village,40.73247,-74.00335,Entire home/apt,225,2,54,2.22,1,79 +24091,23048696,Brooklyn,Williamsburg,40.70928,-73.9659,Private room,68,3,4,0.16,1,0 +24092,28249503,Brooklyn,Bushwick,40.68663,-73.90720999999999,Private room,90,3,8,0.32,1,0 +24093,4516201,Manhattan,Harlem,40.80964,-73.94321,Entire home/apt,102,2,12,0.5,1,0 +24094,136106661,Brooklyn,Williamsburg,40.71078,-73.95071,Shared room,60,15,4,0.18,1,83 +24095,4040993,Manhattan,Chelsea,40.74371,-74.00244,Entire home/apt,400,3,0,,1,0 +24096,10457196,Queens,Ridgewood,40.70234,-73.90815,Private room,49,6,12,0.49,11,65 +24097,134677764,Brooklyn,Williamsburg,40.71112,-73.95382,Private room,70,5,3,0.12,1,0 +24098,4422523,Manhattan,West Village,40.73392,-74.00354,Entire home/apt,150,30,3,0.17,6,286 +24099,59906749,Manhattan,Upper East Side,40.7794,-73.95427,Entire home/apt,119,3,6,0.25,1,0 +24100,47336995,Manhattan,Hell's Kitchen,40.75812,-73.98935,Shared room,10,1,2,0.08,1,0 +24101,52295482,Brooklyn,Fort Greene,40.69321,-73.98143,Entire home/apt,375,2,14,0.6,1,75 +24102,35285033,Manhattan,Chelsea,40.744440000000004,-74.00068,Entire home/apt,175,3,2,0.08,1,0 +24103,136130770,Manhattan,Theater District,40.76037,-73.98747,Entire home/apt,132,24,1,0.07,1,198 +24104,26920932,Manhattan,Gramercy,40.73557,-73.98589,Entire home/apt,200,14,1,0.04,1,0 +24105,120762452,Manhattan,Murray Hill,40.74857,-73.97721999999999,Entire home/apt,150,30,5,0.26,50,344 +24106,35380551,Brooklyn,Bushwick,40.701190000000004,-73.91154,Private room,45,2,2,0.08,1,0 +24107,84803093,Queens,Kew Gardens Hills,40.73307,-73.81868,Entire home/apt,150,1,16,0.81,1,178 +24108,13484820,Brooklyn,Sunset Park,40.64667,-74.00187,Private room,55,2,0,,1,0 +24109,53480097,Brooklyn,Bushwick,40.68683,-73.90733,Private room,60,3,3,0.23,2,0 +24110,134871099,Manhattan,Roosevelt Island,40.77009,-73.9427,Entire home/apt,250,2,52,2.1,1,0 +24111,127357582,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.91832,Private room,36,2,86,3.48,2,81 +24112,136211138,Queens,Woodside,40.74374,-73.90387,Private room,59,1,0,,1,0 +24113,40086875,Brooklyn,Crown Heights,40.67484,-73.94084000000001,Private room,39,1,0,,1,0 +24114,48146336,Manhattan,Hell's Kitchen,40.76174,-73.99228000000001,Entire home/apt,130,30,5,0.22,20,333 +24115,3600282,Manhattan,Inwood,40.8674,-73.92411,Entire home/apt,99,3,4,0.18,1,0 +24116,118816229,Bronx,Williamsbridge,40.882490000000004,-73.86274,Private room,50,1,85,3.43,1,328 +24117,8575784,Brooklyn,Crown Heights,40.673159999999996,-73.95812,Entire home/apt,155,2,4,0.16,1,0 +24118,136229596,Queens,Astoria,40.76488,-73.91813,Private room,166,1,8,0.36,1,89 +24119,136230287,Queens,East Elmhurst,40.765229999999995,-73.86966,Private room,40,1,16,0.65,1,0 +24120,2129777,Queens,Long Island City,40.75132,-73.94236,Private room,135,3,17,0.7,2,90 +24121,3130452,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94409,Private room,40,3,0,,1,0 +24122,6094395,Brooklyn,Gowanus,40.67002,-73.99158,Entire home/apt,140,4,14,0.58,1,8 +24123,88972126,Manhattan,Harlem,40.80194,-73.95551,Entire home/apt,120,1,3,0.12,1,0 +24124,132104049,Brooklyn,Bedford-Stuyvesant,40.69625,-73.94856999999999,Shared room,37,2,1,0.04,3,138 +24125,136285608,Brooklyn,Bushwick,40.68919,-73.91719,Private room,50,10,1,0.15,1,0 +24126,136285709,Manhattan,SoHo,40.72439,-74.00480999999999,Private room,103,1,1,0.04,2,0 +24127,136285709,Manhattan,SoHo,40.7238,-74.00665,Private room,125,1,1,0.04,2,0 +24128,69427329,Queens,Elmhurst,40.739000000000004,-73.87609,Entire home/apt,120,2,82,3.31,6,230 +24129,107802009,Brooklyn,Crown Heights,40.67496,-73.95345,Private room,65,3,18,0.75,2,0 +24130,136288915,Queens,Richmond Hill,40.6839,-73.82444,Entire home/apt,79,1,272,11.56,1,56 +24131,24464178,Manhattan,Chelsea,40.743790000000004,-73.99433,Entire home/apt,189,2,7,0.3,1,0 +24132,136300414,Queens,East Elmhurst,40.75765,-73.89725,Entire home/apt,250,1,62,3.01,1,336 +24133,4830234,Manhattan,Upper East Side,40.775940000000006,-73.94461,Private room,100,1,51,2.11,1,172 +24134,50386076,Manhattan,Upper West Side,40.800059999999995,-73.9648,Entire home/apt,105,1,24,0.97,1,0 +24135,16566001,Manhattan,Harlem,40.816109999999995,-73.94419,Private room,36,2,11,0.45,1,0 +24136,136352388,Brooklyn,Flatbush,40.63691,-73.95326999999999,Private room,45,3,0,,1,0 +24137,10980633,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94275,Private room,70,4,0,,1,0 +24138,40823628,Manhattan,Hell's Kitchen,40.76298,-73.99438,Private room,99,3,49,1.98,1,216 +24139,8292927,Brooklyn,Williamsburg,40.7135,-73.94147,Entire home/apt,95,2,70,2.9,2,22 +24140,73186534,Manhattan,Washington Heights,40.850629999999995,-73.94315,Private room,48,2,53,2.48,1,242 +24141,19705005,Brooklyn,Clinton Hill,40.69215,-73.96692,Entire home/apt,126,10,6,0.25,1,11 +24142,42592487,Manhattan,Greenwich Village,40.73299,-73.99812,Private room,135,2,79,3.32,1,43 +24143,90531014,Manhattan,East Harlem,40.78565,-73.9436,Private room,100,2,10,0.42,1,66 +24144,733034,Brooklyn,Williamsburg,40.70753,-73.9534,Entire home/apt,126,2,4,0.16,1,0 +24145,11670284,Manhattan,Upper East Side,40.76811,-73.95194000000001,Entire home/apt,150,3,10,0.54,2,89 +24146,136431007,Manhattan,Chelsea,40.74944,-73.99774000000001,Private room,49,1,40,1.63,1,43 +24147,74541079,Brooklyn,Crown Heights,40.6696,-73.93655,Entire home/apt,88,3,29,1.26,9,46 +24148,954113,Brooklyn,South Slope,40.66043,-73.98609,Entire home/apt,139,2,19,0.78,1,93 +24149,28626337,Manhattan,Chelsea,40.73958,-74.00171,Private room,65,3,2,0.08,1,0 +24150,83171661,Brooklyn,Park Slope,40.66854,-73.98419,Private room,40,4,4,0.17,3,0 +24151,126144914,Manhattan,Upper West Side,40.7789,-73.98527,Entire home/apt,250,10,5,0.21,1,0 +24152,134184451,Queens,Briarwood,40.70454,-73.81549,Private room,93,1,2,0.08,18,90 +24153,76215404,Brooklyn,Cobble Hill,40.68849,-73.9956,Entire home/apt,125,2,137,5.78,1,2 +24154,121978270,Queens,South Ozone Park,40.67,-73.79231999999999,Entire home/apt,85,4,55,2.48,1,69 +24155,10440010,Brooklyn,Clinton Hill,40.686890000000005,-73.95982,Entire home/apt,210,7,7,0.3,1,50 +24156,90429772,Manhattan,East Village,40.72728,-73.98954,Private room,60,7,25,1.1,2,42 +24157,135696084,Manhattan,Kips Bay,40.74072,-73.98133,Private room,100,1,0,,1,0 +24158,30237517,Queens,Forest Hills,40.73437,-73.8502,Entire home/apt,278,3,9,0.39,6,0 +24159,30237517,Queens,Forest Hills,40.73321,-73.85058000000001,Private room,75,2,1,0.04,6,0 +24160,132010409,Bronx,Schuylerville,40.83855,-73.83166999999999,Entire home/apt,85,3,1,0.08,1,0 +24161,22218540,Queens,Astoria,40.765640000000005,-73.9173,Private room,99,5,0,,1,0 +24162,17274880,Brooklyn,Bedford-Stuyvesant,40.69343,-73.9371,Private room,35,5,5,0.22,1,0 +24163,8773518,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9436,Private room,60,5,11,0.47,3,56 +24164,8451716,Brooklyn,Williamsburg,40.708529999999996,-73.95249,Entire home/apt,225,3,9,0.37,1,2 +24165,9831730,Brooklyn,Williamsburg,40.71863,-73.94405,Entire home/apt,112,14,0,,1,0 +24166,10856865,Manhattan,Upper West Side,40.77727,-73.98127,Entire home/apt,250,3,23,1.1,1,237 +24167,8232441,Brooklyn,Bedford-Stuyvesant,40.68776,-73.95379,Entire home/apt,60,3,16,0.65,2,5 +24168,136607675,Brooklyn,Bedford-Stuyvesant,40.698440000000005,-73.93921,Private room,62,1,47,1.92,1,21 +24169,30237517,Queens,Forest Hills,40.73376,-73.85155,Private room,99,2,0,,6,187 +24170,59282130,Manhattan,East Village,40.729009999999995,-73.98621,Entire home/apt,250,2,22,0.91,1,165 +24171,5992129,Brooklyn,Clinton Hill,40.687459999999994,-73.96115,Entire home/apt,150,5,7,0.38,1,14 +24172,135831798,Brooklyn,Fort Greene,40.69269,-73.97093000000001,Entire home/apt,180,3,42,1.91,1,73 +24173,113805886,Manhattan,Upper East Side,40.77854,-73.94984000000001,Entire home/apt,265,31,7,0.3,33,345 +24174,30016379,Manhattan,East Village,40.72292,-73.98732,Entire home/apt,173,2,3,0.13,1,0 +24175,66734502,Queens,Astoria,40.76248,-73.91686,Private room,60,2,1,0.04,2,0 +24176,136638556,Manhattan,Harlem,40.82716,-73.93953,Private room,85,1,29,1.22,1,359 +24177,5180222,Manhattan,Inwood,40.8688,-73.92256,Entire home/apt,150,3,4,0.16,1,0 +24178,12038925,Manhattan,Chinatown,40.71585,-73.99171,Entire home/apt,250,2,15,0.63,1,0 +24179,136646834,Manhattan,Washington Heights,40.83587,-73.93734,Private room,28,2,19,0.78,1,0 +24180,3228795,Queens,Astoria,40.76386,-73.91475,Private room,60,2,3,0.13,1,0 +24181,42561290,Brooklyn,East New York,40.66168,-73.86665,Private room,25,1,29,1.17,4,319 +24182,76785138,Brooklyn,Bay Ridge,40.62298,-74.02601,Entire home/apt,256,2,61,2.52,1,166 +24183,25038748,Manhattan,Harlem,40.82119,-73.95583,Private room,70,4,11,0.45,1,0 +24184,1751498,Brooklyn,Crown Heights,40.67538,-73.96257,Entire home/apt,70,5,1,0.04,1,0 +24185,83171661,Brooklyn,Park Slope,40.6688,-73.98527,Entire home/apt,105,6,0,,3,0 +24186,74238783,Manhattan,Harlem,40.82582,-73.94876,Private room,65,1,6,0.24,1,0 +24187,136760080,Brooklyn,Bushwick,40.69181,-73.92461999999999,Private room,40,90,0,,1,341 +24188,136774720,Queens,Sunnyside,40.7496,-73.91523000000001,Entire home/apt,85,5,0,,1,0 +24189,486948,Manhattan,East Village,40.722159999999995,-73.98043,Private room,72,10,6,0.26,1,0 +24190,63956486,Manhattan,Inwood,40.86438,-73.92086,Shared room,40,2,2,0.12,1,0 +24191,17048787,Brooklyn,Williamsburg,40.716190000000005,-73.96126,Private room,80,3,5,0.36,1,13 +24192,3595138,Manhattan,Upper West Side,40.798840000000006,-73.95962,Entire home/apt,230,2,7,0.31,1,0 +24193,114574,Manhattan,Harlem,40.817029999999995,-73.94511999999999,Entire home/apt,119,1,4,0.17,2,0 +24194,136812761,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93665,Entire home/apt,389,1,107,4.4,3,80 +24195,63954950,Manhattan,Greenwich Village,40.7302,-74.0008,Entire home/apt,180,2,4,0.16,1,0 +24196,136818122,Brooklyn,Greenpoint,40.72351,-73.94241,Private room,40,3,3,0.12,1,0 +24197,8286555,Manhattan,Upper West Side,40.78116,-73.98671999999999,Entire home/apt,300,5,0,,1,83 +24198,56920,Manhattan,Upper West Side,40.80232,-73.96977,Private room,135,3,23,1.02,2,4 +24199,49924298,Manhattan,NoHo,40.72805,-73.99146,Entire home/apt,139,3,1,0.04,1,0 +24200,3372118,Manhattan,Washington Heights,40.84133,-73.93739000000001,Shared room,50,1,21,0.86,1,188 +24201,36572516,Manhattan,Upper West Side,40.78196,-73.97764000000001,Private room,54,1,17,0.69,1,0 +24202,45103075,Manhattan,Harlem,40.8188,-73.94505,Private room,38,3,0,,1,0 +24203,112799848,Manhattan,Hell's Kitchen,40.76708,-73.98912,Private room,99,1,83,3.36,3,157 +24204,112799848,Manhattan,Hell's Kitchen,40.76615,-73.98829,Private room,99,1,73,2.96,3,342 +24205,5751765,Manhattan,East Harlem,40.79956,-73.94113,Private room,82,2,93,3.9,2,323 +24206,42283996,Queens,Rego Park,40.730309999999996,-73.86896,Entire home/apt,65,10,0,,1,0 +24207,133785513,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9354,Private room,65,1,130,5.25,4,69 +24208,125514343,Manhattan,SoHo,40.72588,-74.00286,Entire home/apt,225,2,5,0.55,1,30 +24209,23755490,Brooklyn,Gowanus,40.68115,-73.98876,Private room,75,30,0,,1,0 +24210,3538684,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94682,Entire home/apt,120,28,37,1.56,1,70 +24211,136982841,Manhattan,East Harlem,40.78603,-73.95015,Private room,165,1,4,0.18,1,179 +24212,16866,Manhattan,East Village,40.72979,-73.983,Private room,149,2,9,0.37,2,0 +24213,61851470,Brooklyn,Cypress Hills,40.6796,-73.90514,Private room,52,4,0,,1,0 +24214,136995504,Queens,Rego Park,40.7306,-73.85903,Entire home/apt,248,3,17,0.73,1,262 +24215,127925141,Brooklyn,Bushwick,40.6951,-73.93016999999999,Private room,44,2,2,0.08,1,0 +24216,804812,Brooklyn,Bay Ridge,40.629129999999996,-74.01946,Entire home/apt,150,1,48,1.96,1,330 +24217,14120985,Brooklyn,Bedford-Stuyvesant,40.69129,-73.94659,Private room,89,2,27,1.12,2,40 +24218,79912031,Manhattan,Murray Hill,40.74731,-73.98167,Entire home/apt,350,5,0,,1,0 +24219,117673528,Queens,Forest Hills,40.71249,-73.85021,Private room,900,1,127,5.37,1,296 +24220,47988208,Manhattan,Murray Hill,40.74838,-73.98108,Entire home/apt,275,2,15,0.65,1,5 +24221,12647740,Brooklyn,Boerum Hill,40.68546,-73.97933,Entire home/apt,200,20,11,0.46,1,32 +24222,18327839,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.96185,Entire home/apt,115,2,5,0.22,1,0 +24223,17285102,Brooklyn,Bushwick,40.69063,-73.91784,Private room,100,3,2,0.08,1,84 +24224,137114793,Staten Island,Great Kills,40.562509999999996,-74.14780999999999,Entire home/apt,91,30,61,2.6,1,205 +24225,137068370,Manhattan,Upper West Side,40.77969,-73.98747,Entire home/apt,200,2,33,1.36,1,250 +24226,4279384,Brooklyn,Flatbush,40.64329,-73.9562,Private room,39,3,1,0.04,2,0 +24227,7958923,Brooklyn,Bedford-Stuyvesant,40.69158,-73.94329,Entire home/apt,275,1,6,0.58,2,213 +24228,11501945,Brooklyn,Flatbush,40.636390000000006,-73.95814,Private room,70,2,0,,2,0 +24229,68432448,Brooklyn,Sheepshead Bay,40.60614,-73.95374,Private room,50,1,24,0.99,1,20 +24230,24263304,Brooklyn,Williamsburg,40.70533,-73.9295,Private room,79,3,4,0.19,1,69 +24231,6835700,Brooklyn,Prospect Heights,40.67649,-73.96499,Private room,80,2,28,4.35,1,82 +24232,2988712,Bronx,Claremont Village,40.83625,-73.91079,Entire home/apt,127,90,4,0.19,7,250 +24233,89022528,Manhattan,Kips Bay,40.74008,-73.97936,Entire home/apt,110,3,58,2.49,1,26 +24234,1762828,Brooklyn,Prospect-Lefferts Gardens,40.65612,-73.9605,Entire home/apt,167,3,4,0.19,1,326 +24235,3412684,Manhattan,East Village,40.72723,-73.98465999999999,Entire home/apt,145,2,9,0.37,1,0 +24236,18940748,Brooklyn,Bedford-Stuyvesant,40.68591,-73.93424,Entire home/apt,174,2,81,3.39,1,123 +24237,37980834,Queens,Ditmars Steinway,40.76944,-73.90751,Entire home/apt,119,1,1,0.04,1,0 +24238,16884548,Bronx,Concourse Village,40.83083,-73.91928,Private room,62,1,8,0.67,1,175 +24239,4351028,Brooklyn,Bushwick,40.70118,-73.91764,Private room,65,1,0,,1,0 +24240,137129564,Queens,Flushing,40.75221,-73.81533,Private room,60,1,32,2.03,4,356 +24241,31553738,Brooklyn,Bedford-Stuyvesant,40.6995,-73.93987,Private room,50,21,1,0.12,1,0 +24242,2716583,Brooklyn,Greenpoint,40.724579999999996,-73.95191,Entire home/apt,139,3,70,2.9,1,178 +24243,56726605,Brooklyn,Canarsie,40.638009999999994,-73.89845,Entire home/apt,200,3,7,0.31,3,363 +24244,8816087,Manhattan,East Harlem,40.801829999999995,-73.94358000000001,Entire home/apt,130,2,0,,2,0 +24245,3239771,Brooklyn,Crown Heights,40.67324,-73.95028,Private room,43,6,5,0.23,2,301 +24246,57435629,Brooklyn,Kensington,40.63955,-73.9807,Entire home/apt,80,2,1,0.04,1,0 +24247,7936109,Manhattan,Upper West Side,40.77468,-73.98184,Entire home/apt,180,2,5,0.2,1,0 +24248,17555570,Brooklyn,Crown Heights,40.671079999999996,-73.92308,Private room,54,1,90,3.72,12,63 +24249,124976906,Manhattan,Upper East Side,40.76959,-73.95338000000001,Private room,75,3,17,0.74,1,0 +24250,8816087,Manhattan,East Harlem,40.80168,-73.94399,Entire home/apt,176,2,0,,2,0 +24251,137156356,Brooklyn,Bedford-Stuyvesant,40.68428,-73.94915999999999,Private room,49,7,0,,1,0 +24252,57501710,Manhattan,Upper East Side,40.770590000000006,-73.95522,Entire home/apt,200,4,7,0.29,1,0 +24253,15192,Brooklyn,Bedford-Stuyvesant,40.68268,-73.94548,Entire home/apt,95,4,33,1.4,1,199 +24254,123736951,Manhattan,Roosevelt Island,40.75829,-73.95295,Private room,80,3,35,1.44,1,0 +24255,17555570,Brooklyn,Crown Heights,40.6695,-73.92226,Private room,63,1,66,2.68,12,39 +24256,124399442,Brooklyn,Midwood,40.61391,-73.95798,Shared room,32,7,2,0.09,4,343 +24257,124399442,Brooklyn,Midwood,40.61249,-73.96018000000001,Shared room,32,7,1,0.09,4,320 +24258,137208202,Queens,Woodside,40.74695,-73.90177,Entire home/apt,275,3,104,4.29,1,293 +24259,48542743,Brooklyn,Williamsburg,40.71204,-73.93535,Entire home/apt,70,5,2,0.19,1,0 +24260,137264725,Manhattan,Lower East Side,40.71206,-73.99055,Private room,70,1,117,4.74,4,249 +24261,34682494,Manhattan,Midtown,40.747240000000005,-73.98924,Entire home/apt,400,3,1,0.58,1,180 +24262,2642103,Manhattan,Chinatown,40.71633,-73.9897,Entire home/apt,100,2,2,0.08,1,0 +24263,72539408,Manhattan,Lower East Side,40.72119,-73.98738,Entire home/apt,125,2,0,,1,0 +24264,58052561,Brooklyn,Crown Heights,40.67313,-73.96254,Private room,100,1,8,0.33,1,8 +24265,2856748,Manhattan,Upper East Side,40.77608,-73.94364,Entire home/apt,220,30,0,,49,325 +24266,137293453,Brooklyn,Crown Heights,40.67308,-73.94114,Private room,36,7,1,0.04,1,0 +24267,137270801,Queens,Ozone Park,40.67557,-73.85145,Private room,100,1,0,,1,0 +24268,45488164,Manhattan,Upper West Side,40.801790000000004,-73.96871999999999,Entire home/apt,175,2,4,0.16,1,142 +24269,137302318,Queens,Long Island City,40.753809999999994,-73.92559,Entire home/apt,93,1,185,7.64,2,73 +24270,137305439,Queens,Rockaway Beach,40.59046,-73.81481,Private room,150,2,29,1.19,2,178 +24271,4629066,Brooklyn,Flatbush,40.652640000000005,-73.96202,Entire home/apt,85,1,0,,1,0 +24272,5339759,Manhattan,Greenwich Village,40.73384,-73.99616,Entire home/apt,499,30,10,0.44,1,365 +24273,136645733,Manhattan,East Harlem,40.81355,-73.93648,Private room,60,1,0,,1,0 +24274,102926533,Manhattan,West Village,40.73185,-74.00589000000001,Entire home/apt,175,3,11,0.45,1,0 +24275,21496186,Manhattan,Midtown,40.751709999999996,-73.98642,Private room,129,3,18,0.73,2,0 +24276,19631496,Brooklyn,Williamsburg,40.70706,-73.94428,Entire home/apt,225,5,75,3.49,2,278 +24277,308068,Manhattan,Harlem,40.80291,-73.95832,Entire home/apt,68,3,2,0.09,1,0 +24278,7348150,Manhattan,Nolita,40.72294,-73.99526,Entire home/apt,250,1,23,0.95,1,0 +24279,4176842,Queens,Rego Park,40.72885,-73.86759,Entire home/apt,49,7,23,0.96,1,22 +24280,3894475,Brooklyn,South Slope,40.66595,-73.98201999999999,Private room,77,2,0,,3,0 +24281,6405437,Brooklyn,Williamsburg,40.71201,-73.96144,Entire home/apt,400,2,6,0.25,1,0 +24282,137384468,Manhattan,East Village,40.73075,-73.98635999999999,Private room,80,1,4,0.16,1,0 +24283,137382776,Brooklyn,Prospect Heights,40.680659999999996,-73.97299,Private room,340,3,0,,1,83 +24284,612563,Brooklyn,Bushwick,40.68335,-73.90756,Entire home/apt,135,2,134,5.55,1,302 +24285,17131554,Manhattan,Little Italy,40.718090000000004,-73.99811,Entire home/apt,220,1,128,5.28,1,239 +24286,97796457,Manhattan,Upper West Side,40.8016,-73.96409,Entire home/apt,2500,40,17,0.91,1,0 +24287,137264725,Manhattan,Chinatown,40.71391,-73.99162,Private room,60,1,101,4.13,4,257 +24288,51356852,Manhattan,Hell's Kitchen,40.763000000000005,-73.98624000000001,Private room,300,1,0,,1,0 +24289,37078185,Queens,Jackson Heights,40.75141,-73.8967,Private room,100,1,0,,1,0 +24290,61042,Manhattan,East Harlem,40.79995,-73.94121,Private room,50,5,16,0.68,6,15 +24291,120762452,Manhattan,Murray Hill,40.749559999999995,-73.97714,Entire home/apt,175,30,1,0.05,50,365 +24292,41680155,Manhattan,Chelsea,40.74794,-73.98926999999999,Private room,140,2,2,0.21,1,22 +24293,6313371,Brooklyn,Clinton Hill,40.689,-73.9613,Private room,90,3,0,,1,0 +24294,137129564,Queens,Flushing,40.75388,-73.81560999999999,Private room,54,1,70,2.86,4,85 +24295,8306638,Brooklyn,Prospect-Lefferts Gardens,40.65619,-73.96151,Entire home/apt,91,9,11,0.53,1,234 +24296,2128192,Brooklyn,Greenpoint,40.72485,-73.94582,Private room,99,5,0,,1,0 +24297,50755667,Brooklyn,South Slope,40.66837,-73.98649,Entire home/apt,200,2,83,3.51,3,201 +24298,137337835,Manhattan,East Village,40.727140000000006,-73.98279000000001,Private room,70,1,129,5.39,1,28 +24299,137512725,Manhattan,Harlem,40.82555,-73.94296999999999,Private room,77,2,36,1.49,1,116 +24300,73848909,Manhattan,Upper East Side,40.7662,-73.9574,Entire home/apt,100,3,2,0.15,1,0 +24301,14094953,Brooklyn,Williamsburg,40.71606,-73.95744,Private room,67,4,0,,1,0 +24302,61483702,Brooklyn,Bedford-Stuyvesant,40.69251,-73.93484000000001,Private room,70,5,2,0.08,2,0 +24303,960013,Brooklyn,Williamsburg,40.71312,-73.94866999999999,Entire home/apt,250,3,31,1.27,1,13 +24304,19703184,Manhattan,Hell's Kitchen,40.76236,-73.99826999999999,Entire home/apt,175,3,4,0.29,1,0 +24305,11787834,Manhattan,Greenwich Village,40.72985,-73.99938,Private room,106,8,25,1.05,1,10 +24306,932021,Brooklyn,Clinton Hill,40.685109999999995,-73.96775,Private room,49,1,2,0.08,1,0 +24307,44739726,Brooklyn,Williamsburg,40.717220000000005,-73.95406,Entire home/apt,200,2,9,0.38,1,0 +24308,6466505,Brooklyn,Crown Heights,40.6726,-73.9514,Entire home/apt,100,3,5,0.21,1,0 +24309,4422523,Manhattan,West Village,40.73545,-74.00529,Entire home/apt,150,30,6,0.58,6,141 +24310,75253309,Manhattan,Chelsea,40.752829999999996,-73.99951,Entire home/apt,140,4,0,,1,0 +24311,16946950,Brooklyn,Brooklyn Heights,40.69269,-73.99432,Entire home/apt,125,3,0,,1,0 +24312,14163206,Brooklyn,Bedford-Stuyvesant,40.683009999999996,-73.94757,Private room,45,2,6,0.25,1,0 +24313,105878573,Brooklyn,East New York,40.66672,-73.88852,Private room,58,1,14,0.59,5,0 +24314,16652171,Manhattan,Upper West Side,40.78413,-73.97779,Private room,94,2,65,2.69,1,54 +24315,45522333,Queens,Astoria,40.76746,-73.9223,Private room,75,2,4,0.17,1,0 +24316,5447617,Brooklyn,Bedford-Stuyvesant,40.68199,-73.93665,Entire home/apt,95,30,2,0.09,3,248 +24317,20761853,Manhattan,Upper East Side,40.76812,-73.95403,Private room,79,1,62,2.58,2,258 +24318,137647792,Manhattan,Kips Bay,40.74511,-73.97833,Entire home/apt,145,2,0,,1,0 +24319,9864136,Brooklyn,Bushwick,40.68652,-73.91365,Private room,50,1,0,,26,365 +24320,4471200,Queens,Ridgewood,40.69654,-73.90034,Private room,40,2,1,0.04,1,0 +24321,137672539,Brooklyn,Bushwick,40.70163,-73.92225,Shared room,34,2,83,3.42,1,192 +24322,137673701,Brooklyn,Windsor Terrace,40.65963,-73.98068,Private room,45,7,1,0.04,1,0 +24323,137685990,Brooklyn,Bedford-Stuyvesant,40.68387,-73.9262,Private room,32,2,3,0.12,1,0 +24324,4422523,Manhattan,West Village,40.735409999999995,-74.00331,Entire home/apt,190,30,1,0.57,6,277 +24325,137522531,Queens,Flushing,40.75745,-73.80823000000001,Entire home/apt,138,6,20,0.89,7,322 +24326,137690897,Bronx,Fordham,40.867290000000004,-73.89046,Private room,75,2,13,0.57,1,364 +24327,137700828,Queens,Astoria,40.77017,-73.92536,Private room,110,3,23,1.03,1,0 +24328,137308380,Brooklyn,Williamsburg,40.714009999999995,-73.9661,Entire home/apt,264,2,130,5.3,1,167 +24329,137702768,Manhattan,Little Italy,40.71885,-73.99514,Private room,120,7,14,0.62,1,64 +24330,137522531,Queens,Flushing,40.75558,-73.81019,Entire home/apt,298,6,30,1.34,7,174 +24331,137522531,Queens,Flushing,40.7558,-73.80953000000001,Entire home/apt,150,6,50,2.27,7,343 +24332,137522531,Queens,Flushing,40.755720000000004,-73.80790999999999,Entire home/apt,398,5,48,2.11,7,139 +24333,137720684,Queens,East Elmhurst,40.757940000000005,-73.8767,Entire home/apt,155,1,101,4.12,1,308 +24334,127181576,Manhattan,Lower East Side,40.71043,-73.98174,Private room,157,1,0,,1,0 +24335,4422523,Manhattan,West Village,40.73561,-74.0051,Entire home/apt,120,30,5,0.34,6,66 +24336,125653581,Bronx,Norwood,40.8774,-73.87536999999999,Private room,29,2,1,0.04,1,0 +24337,2926954,Manhattan,Upper East Side,40.78242,-73.9547,Entire home/apt,160,2,7,0.3,1,0 +24338,137772585,Queens,Jackson Heights,40.753820000000005,-73.88231,Entire home/apt,150,2,21,1.07,1,288 +24339,137817563,Brooklyn,Bedford-Stuyvesant,40.682959999999994,-73.93052,Entire home/apt,100,3,68,2.81,4,128 +24340,11758216,Manhattan,East Village,40.723490000000005,-73.98491,Entire home/apt,150,4,5,0.27,1,8 +24341,137821526,Manhattan,East Harlem,40.79622,-73.94825,Private room,160,1,0,,2,0 +24342,85507826,Brooklyn,Williamsburg,40.71049,-73.9441,Private room,45,21,0,,1,0 +24343,813647,Brooklyn,Downtown Brooklyn,40.69293,-73.98495,Private room,85,4,13,0.54,1,5 +24344,25959120,Manhattan,East Harlem,40.78668,-73.94247,Private room,85,2,2,0.08,1,0 +24345,136224596,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93673000000001,Entire home/apt,100,3,0,,1,0 +24346,137829485,Manhattan,Harlem,40.81232,-73.94112,Private room,45,7,1,0.06,1,17 +24347,71811779,Manhattan,West Village,40.73129,-74.00298000000001,Entire home/apt,250,1,0,,1,0 +24348,137821526,Manhattan,East Harlem,40.79572,-73.9481,Private room,165,1,3,0.13,2,0 +24349,17555570,Brooklyn,Crown Heights,40.6696,-73.92414000000001,Private room,64,1,64,3.13,12,63 +24350,137838298,Queens,Jamaica,40.68121,-73.76869,Private room,60,1,22,0.99,2,177 +24351,18632318,Manhattan,Upper West Side,40.8023,-73.96688,Private room,101,5,2,0.08,1,0 +24352,48035228,Manhattan,Two Bridges,40.71253,-73.99586,Private room,50,7,3,0.12,1,0 +24353,2520288,Brooklyn,Crown Heights,40.67815,-73.95992,Private room,55,5,0,,1,0 +24354,973036,Brooklyn,Williamsburg,40.711220000000004,-73.96361,Private room,100,2,45,3.61,1,251 +24355,3687198,Brooklyn,Greenpoint,40.73386,-73.95873,Entire home/apt,200,2,0,,1,0 +24356,17555570,Brooklyn,Crown Heights,40.66895,-73.9235,Private room,53,1,88,3.59,12,61 +24357,137884235,Brooklyn,Bedford-Stuyvesant,40.69384,-73.9422,Private room,44,3,4,0.16,1,0 +24358,11830463,Manhattan,Upper East Side,40.78324,-73.94870999999999,Private room,90,2,4,0.17,1,0 +24359,137893214,Manhattan,Chelsea,40.74498,-73.99845,Private room,105,2,0,,1,0 +24360,2597159,Brooklyn,Williamsburg,40.71304,-73.9482,Entire home/apt,215,2,74,3.08,2,31 +24361,14487073,Brooklyn,Bushwick,40.704209999999996,-73.91561,Entire home/apt,150,2,68,2.85,2,263 +24362,41381874,Manhattan,Upper East Side,40.78185,-73.9474,Entire home/apt,150,2,3,0.12,1,0 +24363,26921025,Queens,Sunnyside,40.73811,-73.92099,Entire home/apt,99,1,0,,1,0 +24364,7737249,Manhattan,Chinatown,40.715579999999996,-73.99136,Entire home/apt,325,30,76,3.27,2,294 +24365,18776880,Manhattan,Chelsea,40.74118,-73.999,Entire home/apt,155,2,4,0.16,1,0 +24366,137649778,Brooklyn,East New York,40.67327,-73.89141,Entire home/apt,100,2,74,3.13,1,78 +24367,63480384,Brooklyn,Prospect-Lefferts Gardens,40.65473,-73.96112,Entire home/apt,115,2,4,0.36,2,86 +24368,44735076,Brooklyn,Crown Heights,40.67767,-73.9602,Shared room,59,1,44,1.8,1,90 +24369,39550178,Brooklyn,Fort Greene,40.68898,-73.97707,Entire home/apt,275,1,0,,1,0 +24370,46859784,Brooklyn,Williamsburg,40.71548,-73.96236,Entire home/apt,110,3,3,0.14,1,12 +24371,105620723,Queens,Long Island City,40.76222,-73.92662,Entire home/apt,150,10,4,0.17,1,0 +24372,41940272,Manhattan,Harlem,40.82077,-73.94568000000001,Private room,75,2,44,1.91,3,77 +24373,3715206,Manhattan,Chelsea,40.74837,-74.00228,Private room,100,2,12,0.5,1,0 +24374,101262003,Manhattan,Upper West Side,40.78526,-73.97633,Private room,175,1,8,0.35,2,90 +24375,39277795,Brooklyn,Sunset Park,40.645,-74.00378,Private room,90,1,50,2.07,1,43 +24376,16260034,Brooklyn,Crown Heights,40.67742,-73.93737,Entire home/apt,250,7,0,,1,0 +24377,138033394,Queens,Jamaica,40.69934,-73.78325,Entire home/apt,150,2,85,3.52,1,132 +24378,52573016,Manhattan,Upper East Side,40.782709999999994,-73.9454,Entire home/apt,148,3,2,0.09,1,0 +24379,138052895,Brooklyn,Bushwick,40.68628,-73.91523000000001,Entire home/apt,100,2,107,4.37,1,46 +24380,115979599,Queens,Flushing,40.76818,-73.8276,Entire home/apt,188,1,85,3.52,1,151 +24381,138052282,Brooklyn,Greenpoint,40.72842,-73.9421,Private room,43,4,4,0.34,1,3 +24382,34689714,Manhattan,Hell's Kitchen,40.76591,-73.98716999999999,Private room,110,1,82,3.38,5,0 +24383,22347382,Manhattan,Hell's Kitchen,40.75554,-73.99329,Entire home/apt,200,20,0,,1,0 +24384,15602635,Manhattan,Upper East Side,40.77561,-73.95213000000001,Entire home/apt,200,4,10,0.43,1,0 +24385,59432400,Manhattan,Harlem,40.81974,-73.94457,Private room,120,4,31,1.31,2,188 +24386,19079151,Brooklyn,Bedford-Stuyvesant,40.68515,-73.95566,Private room,51,7,0,,1,0 +24387,13785996,Brooklyn,Williamsburg,40.70857,-73.96618000000001,Private room,42,3,1,0.06,1,0 +24388,41945908,Brooklyn,Greenpoint,40.72785,-73.95452,Private room,60,3,4,0.16,1,0 +24389,6920054,Manhattan,Chelsea,40.739779999999996,-73.9963,Shared room,250,1,0,,1,0 +24390,137999892,Staten Island,Concord,40.60732,-74.08709,Private room,40,2,36,1.6,7,286 +24391,52432205,Queens,Sunnyside,40.74266,-73.91884,Entire home/apt,140,2,4,0.17,1,0 +24392,138186485,Manhattan,Upper West Side,40.78823,-73.97499,Entire home/apt,116,1,28,1.22,1,0 +24393,138197456,Manhattan,Washington Heights,40.85065,-73.93356,Entire home/apt,215,3,0,,1,0 +24394,138210979,Brooklyn,Park Slope,40.67405,-73.97883,Entire home/apt,181,1,3,0.12,1,0 +24395,129627362,Manhattan,Washington Heights,40.850390000000004,-73.93855,Private room,70,2,9,0.37,1,8 +24396,20120009,Brooklyn,Bushwick,40.68927,-73.90817,Entire home/apt,169,2,80,3.58,6,241 +24397,138235784,Queens,Forest Hills,40.70838,-73.85155999999999,Entire home/apt,105,2,60,2.49,2,319 +24398,102072773,Manhattan,Kips Bay,40.74136,-73.98146,Private room,55,1,8,0.33,1,0 +24399,12244687,Manhattan,Hell's Kitchen,40.762229999999995,-73.99458,Entire home/apt,163,6,25,1.16,1,266 +24400,20440843,Queens,Long Island City,40.7451,-73.94951,Private room,75,1,5,0.23,1,0 +24401,114621718,Brooklyn,Gowanus,40.67718,-73.98513,Entire home/apt,225,1,67,2.98,2,350 +24402,2074014,Manhattan,Hell's Kitchen,40.76232,-73.99285,Private room,110,7,1,0.06,1,99 +24403,61308650,Brooklyn,Cypress Hills,40.68244,-73.89489,Private room,29,1,51,2.1,1,16 +24404,15049077,Brooklyn,Crown Heights,40.665620000000004,-73.93200999999999,Private room,55,30,15,0.67,2,163 +24405,138331581,Manhattan,Civic Center,40.71219,-73.99785,Entire home/apt,102,1,45,1.85,1,0 +24406,81531783,Manhattan,Chelsea,40.74429,-73.99984,Entire home/apt,130,26,39,1.71,1,29 +24407,1394711,Brooklyn,Sunset Park,40.66362,-73.99773,Entire home/apt,350,2,55,2.37,1,281 +24408,17555570,Brooklyn,Crown Heights,40.66964,-73.9216,Private room,53,1,65,2.75,12,30 +24409,7449972,Manhattan,Harlem,40.82512,-73.95054,Private room,69,14,6,0.25,1,0 +24410,138359867,Manhattan,Upper East Side,40.7836,-73.9522,Entire home/apt,130,5,109,4.5,1,202 +24411,138359603,Bronx,Concourse,40.821529999999996,-73.92683000000001,Entire home/apt,140,2,2,0.08,1,0 +24412,16872537,Brooklyn,Crown Heights,40.67025,-73.95009,Entire home/apt,84,6,0,,1,0 +24413,125090618,Brooklyn,Williamsburg,40.7132,-73.96042,Entire home/apt,145,10,0,,1,0 +24414,41578662,Bronx,Mott Haven,40.81133,-73.92356,Entire home/apt,100,5,13,0.58,2,14 +24415,1609077,Queens,Forest Hills,40.71127,-73.84278,Private room,125,2,3,0.13,3,364 +24416,68762417,Manhattan,East Harlem,40.79222,-73.94606999999999,Private room,125,1,1,1.0,4,87 +24417,30884023,Queens,Arverne,40.59044,-73.79179,Entire home/apt,60,1,53,2.2,1,0 +24418,6484652,Brooklyn,South Slope,40.66388,-73.98786,Private room,88,2,25,1.04,2,0 +24419,15617507,Bronx,Morris Park,40.85152,-73.86121,Private room,39,1,57,2.38,3,39 +24420,3168812,Brooklyn,Crown Heights,40.67055,-73.93233000000001,Entire home/apt,48,3,83,3.62,1,17 +24421,76359133,Queens,Fresh Meadows,40.73754,-73.7913,Private room,60,1,34,1.42,3,335 +24422,134105301,Manhattan,East Harlem,40.78723,-73.94863000000001,Entire home/apt,75,1,1,0.04,1,0 +24423,136049464,Brooklyn,Bedford-Stuyvesant,40.69277,-73.94315,Private room,55,2,11,0.47,1,5 +24424,17555570,Brooklyn,Crown Heights,40.66933,-73.92161999999999,Private room,51,1,83,3.4,12,55 +24425,17555570,Brooklyn,Crown Heights,40.66919,-73.92206999999999,Private room,54,1,65,2.75,12,57 +24426,17555570,Brooklyn,Crown Heights,40.669579999999996,-73.92361,Private room,52,1,74,3.04,12,68 +24427,134107066,Manhattan,Upper East Side,40.777440000000006,-73.95476,Entire home/apt,117,3,8,0.33,1,0 +24428,17555570,Brooklyn,Crown Heights,40.668859999999995,-73.92333,Private room,62,1,69,2.83,12,65 +24429,17555570,Brooklyn,Crown Heights,40.67021,-73.92368,Private room,63,1,49,2.02,12,51 +24430,45673606,Brooklyn,Williamsburg,40.714929999999995,-73.94502,Private room,120,1,9,0.38,1,0 +24431,101657794,Queens,Briarwood,40.70915,-73.80662,Private room,45,1,14,0.58,6,0 +24432,70506872,Brooklyn,Bushwick,40.69935,-73.93871999999999,Private room,52,1,3,0.13,2,0 +24433,59111337,Manhattan,Washington Heights,40.85029,-73.93602,Private room,42,2,3,0.13,1,0 +24434,2983089,Brooklyn,Carroll Gardens,40.68308,-73.9912,Entire home/apt,175,30,57,2.74,1,84 +24435,138526119,Queens,Rockaway Beach,40.58573,-73.8137,Entire home/apt,142,2,11,0.46,1,117 +24436,15721549,Manhattan,Upper East Side,40.772290000000005,-73.94941,Private room,80,4,3,0.34,1,0 +24437,130343656,Brooklyn,Williamsburg,40.70492,-73.94258,Private room,42,3,8,0.33,1,35 +24438,105828086,Brooklyn,Flatbush,40.64135,-73.96325,Private room,90,2,24,1.07,4,0 +24439,138546022,Brooklyn,Crown Heights,40.674659999999996,-73.95163000000001,Private room,50,1,1,0.04,2,0 +24440,70506872,Brooklyn,Bushwick,40.69915,-73.93743,Private room,52,4,4,0.18,2,0 +24441,4252459,Manhattan,Flatiron District,40.74175,-73.99104,Entire home/apt,350,2,0,,1,205 +24442,96856335,Queens,Queens Village,40.71833,-73.7507,Entire home/apt,125,2,49,2.08,1,347 +24443,116482644,Manhattan,Hell's Kitchen,40.764790000000005,-73.98841999999999,Private room,105,1,88,3.76,2,0 +24444,137666089,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92205,Entire home/apt,100,2,90,3.73,1,202 +24445,20759527,Brooklyn,Bedford-Stuyvesant,40.68506,-73.92316,Private room,31,55,4,0.17,1,0 +24446,88351271,Brooklyn,Bushwick,40.698170000000005,-73.92819,Private room,45,3,14,0.58,1,0 +24447,63336737,Brooklyn,Williamsburg,40.70994,-73.95243,Private room,50,4,3,0.12,1,0 +24448,124171,Brooklyn,Bedford-Stuyvesant,40.68533,-73.94230999999999,Private room,60,1,1,0.08,1,0 +24449,117295184,Manhattan,Midtown,40.76554,-73.98245,Private room,80,1,46,1.93,1,6 +24450,1999224,Manhattan,Chinatown,40.71346,-73.99158,Entire home/apt,180,2,1,0.04,1,0 +24451,122498535,Brooklyn,East Flatbush,40.65695,-73.92558000000001,Private room,40,30,0,,3,326 +24452,25064843,Manhattan,SoHo,40.71938,-74.00163,Entire home/apt,550,2,0,,1,0 +24453,105375380,Bronx,Woodlawn,40.89785,-73.86976999999999,Shared room,70,2,2,0.11,2,0 +24454,15820210,Brooklyn,Williamsburg,40.70932,-73.93489,Private room,60,2,36,1.96,2,52 +24455,3148366,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95376999999999,Private room,55,3,0,,1,0 +24456,55209173,Brooklyn,Bedford-Stuyvesant,40.69555,-73.93444000000001,Private room,40,1,3,0.12,1,0 +24457,31582668,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93202,Entire home/apt,99,3,55,2.48,1,74 +24458,138708257,Manhattan,Lower East Side,40.72113,-73.9849,Private room,125,2,52,2.19,1,28 +24459,128338539,Staten Island,Stapleton,40.631440000000005,-74.07913,Private room,34,1,11,0.65,4,78 +24460,106955062,Manhattan,Harlem,40.81143,-73.94935,Entire home/apt,100,3,16,0.66,1,0 +24461,138713312,Manhattan,Harlem,40.80832,-73.95275,Private room,115,2,93,3.92,1,129 +24462,120762452,Manhattan,Murray Hill,40.748459999999994,-73.97556999999999,Entire home/apt,170,30,5,0.22,50,323 +24463,138721769,Manhattan,East Village,40.72807,-73.98801,Entire home/apt,200,2,110,4.9,1,0 +24464,120762452,Manhattan,Murray Hill,40.749559999999995,-73.97668,Entire home/apt,175,30,2,0.09,50,353 +24465,21408874,Brooklyn,Bedford-Stuyvesant,40.68243,-73.93160999999999,Entire home/apt,100,30,9,0.37,1,0 +24466,12662045,Brooklyn,Bedford-Stuyvesant,40.68347,-73.93321999999999,Private room,50,3,2,0.09,1,0 +24467,138741275,Manhattan,East Village,40.72497,-73.98208000000001,Entire home/apt,220,3,78,3.26,1,232 +24468,138741690,Brooklyn,Bedford-Stuyvesant,40.686,-73.94133000000001,Private room,50,1,12,0.52,1,39 +24469,373060,Brooklyn,Boerum Hill,40.68591,-73.9863,Entire home/apt,275,2,2,0.09,1,0 +24470,2224802,Brooklyn,Williamsburg,40.71379,-73.94635,Entire home/apt,200,3,22,0.9,1,0 +24471,4334590,Brooklyn,Bushwick,40.69807,-73.9335,Private room,115,1,72,2.98,1,0 +24472,10402380,Brooklyn,Prospect Heights,40.67408,-73.96364,Private room,60,1,131,5.36,2,128 +24473,5107938,Brooklyn,Greenpoint,40.72351,-73.94059,Private room,54,2,2,0.08,1,0 +24474,70822653,Brooklyn,Bushwick,40.70126,-73.91396,Private room,55,3,2,0.1,1,241 +24475,98093770,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94839,Private room,44,3,13,0.54,1,0 +24476,12058024,Brooklyn,Prospect-Lefferts Gardens,40.661159999999995,-73.96166,Entire home/apt,70,1,3,0.12,1,4 +24477,131826530,Bronx,Riverdale,40.88671,-73.9151,Private room,2500,2,0,,3,179 +24478,48970186,Brooklyn,Carroll Gardens,40.68188,-73.99438,Entire home/apt,135,4,49,2.31,2,3 +24479,24835386,Manhattan,Lower East Side,40.71799,-73.98657,Entire home/apt,138,7,4,0.17,1,0 +24480,138784297,Manhattan,Chinatown,40.71353,-73.99632,Private room,115,2,18,0.74,1,0 +24481,138782186,Queens,Rosedale,40.65531,-73.7274,Private room,70,1,0,,2,365 +24482,138785704,Manhattan,East Harlem,40.81661,-73.93471,Entire home/apt,150,2,60,2.61,1,94 +24483,1384111,Queens,Sunnyside,40.7461,-73.92146,Entire home/apt,150,30,8,0.35,2,0 +24484,41963149,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95119,Entire home/apt,170,1,1,0.04,1,0 +24485,4422523,Manhattan,West Village,40.733940000000004,-74.0049,Entire home/apt,140,30,4,0.27,6,153 +24486,16685637,Manhattan,Upper East Side,40.76692,-73.964,Entire home/apt,400,15,0,,1,87 +24487,5413500,Queens,Ridgewood,40.70499,-73.91304000000001,Entire home/apt,95,3,0,,1,0 +24488,3309159,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95383000000001,Private room,50,1,0,,1,0 +24489,52173396,Brooklyn,Williamsburg,40.71733,-73.95886999999999,Private room,65,1,7,0.29,1,0 +24490,6933440,Manhattan,Harlem,40.804159999999996,-73.95704,Entire home/apt,102,2,18,0.77,1,0 +24491,5421054,Brooklyn,Bushwick,40.70766,-73.92169,Entire home/apt,175,5,8,0.34,1,0 +24492,138823659,Manhattan,Hell's Kitchen,40.75851,-73.99138,Entire home/apt,275,2,16,0.67,1,0 +24493,2262180,Manhattan,Upper East Side,40.76651,-73.95155,Entire home/apt,145,2,33,2.55,1,267 +24494,136729912,Manhattan,Tribeca,40.72227,-74.00804000000001,Entire home/apt,700,4,12,0.62,1,124 +24495,38204730,Manhattan,Gramercy,40.735640000000004,-73.98229,Entire home/apt,239,5,2,0.08,3,266 +24496,21056771,Manhattan,Inwood,40.86801,-73.92371999999999,Entire home/apt,65,2,112,4.67,1,103 +24497,28680760,Brooklyn,Bedford-Stuyvesant,40.684740000000005,-73.91825,Entire home/apt,250,4,3,0.13,1,333 +24498,2361069,Brooklyn,Williamsburg,40.71553,-73.96332,Private room,90,3,74,3.29,1,79 +24499,49764808,Brooklyn,Bedford-Stuyvesant,40.67848,-73.91543,Entire home/apt,85,2,67,2.85,2,171 +24500,1024251,Brooklyn,Boerum Hill,40.68807,-73.98161,Entire home/apt,170,2,21,0.86,1,9 +24501,138914016,Manhattan,East Harlem,40.80109,-73.93975,Private room,60,1,26,1.09,1,0 +24502,109908957,Brooklyn,East Flatbush,40.6458,-73.94586,Private room,50,1,8,0.35,2,89 +24503,11989253,Brooklyn,Bushwick,40.70113,-73.92299,Private room,60,3,0,,1,0 +24504,9669516,Brooklyn,Cobble Hill,40.68698,-73.99864000000001,Entire home/apt,152,3,3,0.13,1,0 +24505,137575707,Queens,Jackson Heights,40.75091,-73.89304,Private room,62,2,55,2.31,1,318 +24506,3013202,Brooklyn,Bushwick,40.69997,-73.91666,Private room,70,4,1,0.04,1,55 +24507,21418070,Brooklyn,Crown Heights,40.666090000000004,-73.93975999999999,Entire home/apt,99,2,0,,1,20 +24508,8706651,Manhattan,Chelsea,40.74862,-74.00237,Entire home/apt,150,2,1,0.41,1,0 +24509,34899836,Brooklyn,East Flatbush,40.65777,-73.91671,Entire home/apt,100,2,36,1.57,1,56 +24510,137305439,Queens,Rockaway Beach,40.58891,-73.81578,Private room,110,1,34,1.4,2,358 +24511,3889739,Brooklyn,Williamsburg,40.71322,-73.94022,Private room,60,2,6,0.25,1,0 +24512,8586684,Manhattan,SoHo,40.72569,-74.00849000000001,Entire home/apt,700,2,1,0.04,1,0 +24513,45726938,Manhattan,East Harlem,40.79368,-73.94131999999999,Private room,100,3,0,,1,0 +24514,6965700,Manhattan,East Village,40.72435,-73.98394,Private room,73,3,6,0.3,1,0 +24515,49656804,Manhattan,East Village,40.72716,-73.98524,Entire home/apt,100,3,75,3.12,1,60 +24516,3495471,Bronx,Claremont Village,40.835609999999996,-73.91108,Entire home/apt,58,3,59,2.89,1,42 +24517,26017313,Brooklyn,Crown Heights,40.67293,-73.96128,Entire home/apt,200,1,2,0.09,1,0 +24518,58753715,Brooklyn,Crown Heights,40.667390000000005,-73.94708,Private room,70,2,5,0.21,1,0 +24519,4422523,Manhattan,West Village,40.73598,-74.00505,Entire home/apt,140,30,1,0.09,6,267 +24520,138983570,Queens,Sunnyside,40.74777,-73.91546,Private room,45,6,1,0.5,1,14 +24521,96742320,Manhattan,Harlem,40.82411,-73.9509,Entire home/apt,98,2,2,0.09,1,0 +24522,12293403,Manhattan,Harlem,40.81113,-73.94113,Entire home/apt,150,2,21,0.89,2,157 +24523,138996674,Manhattan,Murray Hill,40.744659999999996,-73.9748,Entire home/apt,80,10,0,,1,0 +24524,7627586,Brooklyn,Brooklyn Heights,40.693870000000004,-73.99412,Entire home/apt,299,4,6,0.27,1,27 +24525,54283436,Manhattan,East Harlem,40.7993,-73.94164,Private room,60,3,6,0.25,1,0 +24526,133274871,Manhattan,Harlem,40.815129999999996,-73.95685,Private room,51,5,0,,1,0 +24527,12162815,Queens,Rockaway Beach,40.59093,-73.81238,Entire home/apt,140,2,9,0.38,1,36 +24528,10440694,Manhattan,Upper East Side,40.76212,-73.96358000000001,Entire home/apt,150,30,88,3.67,1,3 +24529,139076348,Queens,Long Island City,40.74515,-73.95583,Private room,150,3,0,,1,0 +24530,4452444,Brooklyn,Williamsburg,40.719159999999995,-73.94215,Private room,70,1,14,0.6,1,0 +24531,139093829,Brooklyn,Bushwick,40.6874,-73.91455,Private room,40,3,17,0.71,1,0 +24532,139096564,Brooklyn,Bushwick,40.69273,-73.9055,Private room,45,1,1,0.04,1,0 +24533,138717905,Manhattan,East Harlem,40.79626,-73.94429000000001,Private room,67,2,28,1.22,1,179 +24534,71097702,Brooklyn,Park Slope,40.6815,-73.98028000000001,Entire home/apt,290,30,48,2.07,2,299 +24535,138938451,Brooklyn,Williamsburg,40.70635,-73.93588000000001,Entire home/apt,150,3,6,0.25,1,0 +24536,9293730,Manhattan,Upper West Side,40.784690000000005,-73.97197,Entire home/apt,159,30,2,0.18,16,358 +24537,21772781,Brooklyn,Bushwick,40.70268,-73.91582,Entire home/apt,77,3,4,0.18,1,0 +24538,139135366,Manhattan,Upper East Side,40.768640000000005,-73.95427,Entire home/apt,175,2,20,0.88,1,0 +24539,137184002,Brooklyn,East Flatbush,40.6543,-73.91488000000001,Entire home/apt,85,1,183,7.65,1,120 +24540,31515758,Manhattan,Washington Heights,40.83405,-73.94565,Entire home/apt,1000,1,1,0.06,1,79 +24541,139165159,Manhattan,Inwood,40.8662,-73.92645999999999,Private room,60,1,128,6.03,1,67 +24542,139170973,Manhattan,Harlem,40.81949,-73.95521,Private room,45,7,0,,1,0 +24543,67271745,Brooklyn,Bushwick,40.69393,-73.90898,Private room,55,1,1,0.04,1,0 +24544,120767920,Queens,Flushing,40.75786,-73.8123,Private room,48,2,54,2.28,10,360 +24545,34039463,Brooklyn,Crown Heights,40.670809999999996,-73.92765,Private room,100,1,0,,1,0 +24546,24559181,Manhattan,Upper East Side,40.763020000000004,-73.96725,Entire home/apt,200,1,15,0.69,3,351 +24547,44220091,Manhattan,Harlem,40.8076,-73.94252,Private room,56,1,10,0.42,1,0 +24548,138628430,Bronx,Morris Heights,40.85167,-73.92144,Private room,50,1,0,,1,363 +24549,3363377,Brooklyn,Williamsburg,40.70997,-73.94901999999999,Private room,114,2,43,1.82,2,114 +24550,6042053,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.96084,Entire home/apt,200,3,32,1.37,1,317 +24551,2239235,Brooklyn,Crown Heights,40.67637,-73.95755,Entire home/apt,125,3,1,0.04,1,0 +24552,138003310,Queens,Richmond Hill,40.70008,-73.83344,Private room,60,7,53,2.24,1,335 +24553,8162588,Brooklyn,Crown Heights,40.672259999999994,-73.92477,Private room,40,2,10,0.41,1,22 +24554,15476792,Brooklyn,Williamsburg,40.7179,-73.96047,Entire home/apt,105,1,24,1.01,1,0 +24555,31727657,Manhattan,Washington Heights,40.84482,-73.93739000000001,Private room,70,4,1,0.04,1,0 +24556,106125,Queens,Rockaway Beach,40.59106,-73.8113,Entire home/apt,108,4,20,0.85,1,329 +24557,5018185,Brooklyn,Prospect Heights,40.67797,-73.96783,Private room,60,2,1,0.04,1,0 +24558,138579344,Brooklyn,Clinton Hill,40.68895,-73.96259,Entire home/apt,130,2,49,2.3,1,211 +24559,68321431,Queens,Sunnyside,40.7362,-73.91783000000001,Private room,30,2,6,0.42,1,0 +24560,39469408,Queens,Rego Park,40.73268,-73.85951999999999,Entire home/apt,135,3,5,0.21,1,0 +24561,95570854,Manhattan,Civic Center,40.71359,-74.00538,Private room,300,1,0,,2,179 +24562,37688229,Manhattan,Midtown,40.75568,-73.96798000000001,Entire home/apt,79,6,8,0.35,1,15 +24563,55148803,Brooklyn,Williamsburg,40.71581,-73.95423000000001,Entire home/apt,146,2,40,1.66,1,200 +24564,33243428,Brooklyn,Williamsburg,40.71365,-73.93889,Private room,57,3,1,0.04,1,0 +24565,97682736,Manhattan,Harlem,40.825590000000005,-73.94501,Entire home/apt,250,7,1,0.16,1,0 +24566,120762452,Manhattan,Murray Hill,40.74965,-73.97565999999999,Entire home/apt,150,30,1,0.07,50,320 +24567,139415761,Bronx,City Island,40.85306,-73.78948000000001,Entire home/apt,85,2,42,1.76,1,168 +24568,7338347,Manhattan,Greenwich Village,40.7289,-74.00059,Private room,70,7,0,,1,0 +24569,44358777,Manhattan,Upper West Side,40.79874,-73.9599,Private room,67,2,5,0.21,1,0 +24570,6843497,Bronx,Morris Park,40.84932,-73.85883000000001,Private room,35,3,4,0.17,1,76 +24571,12326863,Brooklyn,Brooklyn Heights,40.69144,-73.99637,Entire home/apt,160,30,0,,1,31 +24572,2269285,Manhattan,Nolita,40.72208,-73.99365,Private room,100,2,6,0.25,1,0 +24573,139467641,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92298000000001,Private room,47,3,8,0.33,1,0 +24574,12825778,Manhattan,Upper East Side,40.78273,-73.95048,Private room,46,3,23,0.96,1,12 +24575,81160897,Brooklyn,Bushwick,40.70152,-73.91148000000001,Private room,50,1,16,0.66,1,343 +24576,19612095,Brooklyn,Williamsburg,40.70496,-73.93122,Private room,65,2,20,0.83,2,179 +24577,56728868,Manhattan,Upper East Side,40.772859999999994,-73.94789,Entire home/apt,115,14,0,,1,0 +24578,106837455,Manhattan,Upper West Side,40.78443,-73.98255999999999,Entire home/apt,135,90,0,,8,125 +24579,139490165,Brooklyn,Bushwick,40.68469,-73.90794,Private room,110,2,9,0.41,3,0 +24580,3118776,Queens,Long Island City,40.76363,-73.93033,Private room,48,5,52,2.17,1,8 +24581,139503928,Brooklyn,Clinton Hill,40.68231,-73.96658000000001,Private room,45,7,1,0.04,1,0 +24582,20163996,Brooklyn,Williamsburg,40.71441,-73.94527,Entire home/apt,140,3,4,0.2,1,0 +24583,38815234,Manhattan,Harlem,40.82747,-73.94224,Private room,45,3,42,1.78,2,252 +24584,37092956,Manhattan,Midtown,40.76358,-73.98015,Private room,72,6,0,,1,0 +24585,139511753,Queens,Astoria,40.76531,-73.91155,Entire home/apt,137,2,3,0.12,1,0 +24586,28307663,Brooklyn,Greenpoint,40.73599,-73.95604,Entire home/apt,170,2,12,0.53,1,3 +24587,3900279,Brooklyn,Williamsburg,40.72054,-73.95919,Private room,100,3,0,,2,0 +24588,139127299,Manhattan,Chinatown,40.71609,-73.99204,Entire home/apt,198,10,4,0.19,1,0 +24589,16414560,Manhattan,East Village,40.72467,-73.98921999999999,Private room,100,2,1,0.61,1,0 +24590,9039995,Queens,Long Island City,40.761990000000004,-73.92684,Shared room,33,1,11,0.46,1,0 +24591,40139382,Manhattan,Upper East Side,40.77275,-73.94917,Private room,70,4,1,0.06,1,0 +24592,619942,Brooklyn,Cypress Hills,40.687490000000004,-73.87261,Private room,42,30,42,1.81,6,114 +24593,115355054,Queens,Flushing,40.75183,-73.80665,Entire home/apt,139,2,36,1.74,1,101 +24594,3792860,Manhattan,Upper East Side,40.77052,-73.95485,Entire home/apt,150,1,0,,2,0 +24595,3019399,Brooklyn,Fort Greene,40.68633,-73.97164000000001,Entire home/apt,180,2,15,0.64,1,4 +24596,35751147,Queens,Richmond Hill,40.694520000000004,-73.82741999999999,Private room,60,1,26,1.09,1,0 +24597,10307134,Manhattan,Chelsea,40.74204,-73.99899,Entire home/apt,275,3,20,0.86,2,106 +24598,15468652,Manhattan,Washington Heights,40.834990000000005,-73.94528000000001,Private room,59,6,1,0.04,1,0 +24599,54508926,Brooklyn,Canarsie,40.63837,-73.91149,Entire home/apt,167,2,102,4.27,1,294 +24600,27895393,Manhattan,East Village,40.72295,-73.98487,Private room,95,3,23,1.05,1,229 +24601,1877402,Manhattan,Harlem,40.8114,-73.95237,Private room,50,1,15,0.62,2,0 +24602,6376364,Manhattan,East Village,40.73213,-73.98944,Entire home/apt,200,2,11,0.47,1,0 +24603,3757515,Brooklyn,Cobble Hill,40.68744,-73.99229,Entire home/apt,125,7,0,,1,0 +24604,9427915,Manhattan,Harlem,40.82105,-73.94588,Entire home/apt,100,2,27,1.15,1,1 +24605,53821069,Manhattan,Lower East Side,40.72276,-73.9886,Entire home/apt,94,1,8,0.33,1,0 +24606,23055253,Brooklyn,Bushwick,40.69924,-73.93052,Private room,70,4,0,,2,0 +24607,134184451,Queens,Jamaica,40.70445,-73.81399,Private room,135,1,1,0.05,18,180 +24608,20063690,Brooklyn,Bedford-Stuyvesant,40.68827,-73.94943,Entire home/apt,550,3,4,0.22,2,97 +24609,84941679,Bronx,Clason Point,40.816990000000004,-73.86740999999999,Private room,80,1,2,0.09,1,88 +24610,16534981,Brooklyn,Bedford-Stuyvesant,40.68141,-73.93301,Entire home/apt,68,14,10,0.43,5,286 +24611,20459165,Queens,Ridgewood,40.70689,-73.91526999999999,Private room,63,4,6,0.26,1,0 +24612,131684478,Staten Island,West Brighton,40.632909999999995,-74.11777,Private room,83,2,5,0.24,3,188 +24613,86892032,Queens,Rosedale,40.65766,-73.72838,Entire home/apt,60,1,57,2.41,1,336 +24614,9293730,Manhattan,Upper East Side,40.76937,-73.95745,Entire home/apt,155,30,8,0.37,16,333 +24615,1804766,Brooklyn,Williamsburg,40.712709999999994,-73.95894,Entire home/apt,108,7,0,,1,0 +24616,63913582,Brooklyn,Sunset Park,40.6542,-74.00159000000001,Private room,75,3,7,0.29,2,0 +24617,34296062,Brooklyn,Prospect-Lefferts Gardens,40.66134,-73.9476,Entire home/apt,250,2,0,,1,0 +24618,36952002,Brooklyn,Bushwick,40.687870000000004,-73.91305,Private room,35,2,14,0.66,1,16 +24619,104892816,Brooklyn,Williamsburg,40.71248,-73.95815,Private room,70,3,1,0.04,1,0 +24620,12518089,Brooklyn,DUMBO,40.70286,-73.98911,Entire home/apt,195,2,3,0.13,1,0 +24621,139013186,Bronx,Kingsbridge,40.87896,-73.90674,Private room,75,2,40,1.74,1,246 +24622,97856969,Brooklyn,Boerum Hill,40.68909,-73.99083,Entire home/apt,98,13,1,0.04,1,0 +24623,57571805,Manhattan,Midtown,40.75315,-73.97175,Entire home/apt,100,2,1,0.05,3,0 +24624,106430338,Brooklyn,Bensonhurst,40.611999999999995,-73.99573000000001,Private room,57,3,3,0.27,2,83 +24625,24861274,Manhattan,Chelsea,40.73881,-73.99741,Entire home/apt,200,2,24,1.14,1,20 +24626,21016975,Manhattan,East Village,40.72345,-73.98406999999999,Shared room,350,1,5,0.26,1,0 +24627,112954746,Manhattan,Upper East Side,40.77428,-73.95523,Entire home/apt,145,2,3,0.12,1,0 +24628,446095,Queens,Ditmars Steinway,40.77148,-73.9138,Entire home/apt,170,2,56,2.91,1,305 +24629,5962328,Queens,Flushing,40.7602,-73.82324,Entire home/apt,180,30,2,0.12,15,320 +24630,139838320,Brooklyn,Bedford-Stuyvesant,40.67964,-73.94986999999999,Entire home/apt,200,2,36,1.54,2,124 +24631,2141311,Brooklyn,Williamsburg,40.719609999999996,-73.94266,Entire home/apt,400,3,0,,2,0 +24632,5483699,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94224,Entire home/apt,789,2,51,2.12,1,175 +24633,83671631,Brooklyn,Williamsburg,40.71262,-73.94156,Private room,60,2,1,0.7,1,248 +24634,139638096,Manhattan,Roosevelt Island,40.76412,-73.94800000000001,Private room,60,1,0,,1,0 +24635,87612379,Queens,Middle Village,40.72267,-73.86997,Entire home/apt,140,3,35,1.56,1,190 +24636,28270349,Queens,Flushing,40.76589,-73.79449,Entire home/apt,89,1,105,4.38,2,0 +24637,28881583,Manhattan,East Village,40.72759,-73.98465999999999,Entire home/apt,150,2,28,1.17,1,9 +24638,23212298,Brooklyn,Crown Heights,40.6758,-73.9401,Entire home/apt,127,4,56,2.48,1,286 +24639,9020323,Brooklyn,Bedford-Stuyvesant,40.67921,-73.94283,Private room,110,3,20,0.89,1,173 +24640,139871790,Manhattan,Upper East Side,40.763009999999994,-73.95719,Entire home/apt,123,3,26,1.08,1,0 +24641,139871943,Manhattan,Nolita,40.72044,-73.99646,Private room,81,30,59,2.47,3,111 +24642,15615036,Brooklyn,Bushwick,40.69017,-73.916,Private room,44,1,7,0.29,2,0 +24643,3900279,Brooklyn,Williamsburg,40.7198,-73.96108000000001,Private room,105,3,0,,2,0 +24644,35741929,Brooklyn,Crown Heights,40.6715,-73.94426999999999,Entire home/apt,100,2,16,0.68,2,0 +24645,69891628,Manhattan,East Village,40.72838,-73.97943000000001,Entire home/apt,305,2,29,1.29,1,58 +24646,114523254,Manhattan,East Harlem,40.7875,-73.94675,Private room,85,1,8,0.34,1,0 +24647,117530860,Brooklyn,Williamsburg,40.72019,-73.95581,Private room,65,7,1,0.04,1,0 +24648,105139019,Brooklyn,Williamsburg,40.70948,-73.94814000000001,Private room,90,3,3,0.12,1,0 +24649,103217662,Queens,Ridgewood,40.70772,-73.90959000000001,Private room,50,7,1,0.05,1,0 +24650,781674,Brooklyn,Fort Greene,40.688159999999996,-73.97579,Entire home/apt,100,14,5,0.21,1,0 +24651,134185971,Manhattan,East Village,40.72759,-73.98496,Entire home/apt,176,2,3,0.13,1,0 +24652,18197578,Brooklyn,Crown Heights,40.667559999999995,-73.95812,Entire home/apt,100,3,12,0.5,1,4 +24653,30245313,Manhattan,Upper East Side,40.76775,-73.95371,Private room,187,1,6,0.26,1,0 +24654,16705993,Queens,Woodhaven,40.68958,-73.85294,Private room,70,2,7,0.3,1,65 +24655,122038325,Manhattan,East Harlem,40.788090000000004,-73.94194,Private room,76,2,79,3.33,1,11 +24656,877697,Manhattan,Gramercy,40.73232,-73.98418000000001,Entire home/apt,175,2,0,,1,0 +24657,7831209,Manhattan,East Harlem,40.80668,-73.93828,Private room,43,1,86,3.55,10,161 +24658,28363708,Brooklyn,Fort Greene,40.69604,-73.9708,Entire home/apt,350,7,0,,1,145 +24659,38098992,Manhattan,Inwood,40.86437,-73.92347,Private room,65,2,2,0.1,2,76 +24660,139957134,Queens,Arverne,40.5991,-73.79944,Private room,50,1,28,1.23,3,251 +24661,32446721,Queens,Corona,40.74825,-73.86395999999999,Shared room,37,1,18,0.75,6,365 +24662,139985282,Queens,Astoria,40.76469,-73.91094,Private room,48,1,3,0.13,1,0 +24663,11654079,Manhattan,Nolita,40.72361,-73.99467,Entire home/apt,300,7,14,0.67,1,9 +24664,90315649,Manhattan,East Harlem,40.79241,-73.94058000000001,Entire home/apt,135,4,3,0.12,1,0 +24665,1693845,Manhattan,Harlem,40.815529999999995,-73.94672,Private room,135,2,33,1.4,1,75 +24666,5353151,Manhattan,Upper East Side,40.782070000000004,-73.94717,Private room,72,3,21,0.9,1,61 +24667,3171141,Brooklyn,Sunset Park,40.64203,-74.01383,Entire home/apt,90,30,0,,1,53 +24668,31284229,Manhattan,East Harlem,40.79652,-73.93323000000001,Private room,120,1,1,0.04,1,0 +24669,36043601,Manhattan,Chelsea,40.74927,-74.00690999999999,Entire home/apt,200,2,0,,1,0 +24670,139949166,Manhattan,Chelsea,40.750440000000005,-73.99665,Entire home/apt,128,1,4,0.17,1,0 +24671,5869629,Manhattan,Upper West Side,40.79973,-73.96152,Entire home/apt,300,2,0,,1,0 +24672,1451743,Brooklyn,Bedford-Stuyvesant,40.68562,-73.95624000000001,Entire home/apt,100,5,2,0.09,1,0 +24673,131647128,Manhattan,Upper West Side,40.77395,-73.98786,Entire home/apt,190,30,8,0.36,25,330 +24674,20063690,Brooklyn,Bedford-Stuyvesant,40.68695,-73.94858,Entire home/apt,150,2,69,2.9,2,328 +24675,55608979,Manhattan,Washington Heights,40.8352,-73.94045,Private room,50,1,3,0.13,1,0 +24676,26800649,Bronx,Belmont,40.859609999999996,-73.89031,Shared room,110,1,0,,1,0 +24677,8154922,Brooklyn,Bay Ridge,40.63347,-74.02739,Entire home/apt,60,30,0,,1,0 +24678,140083988,Brooklyn,Williamsburg,40.7111,-73.9487,Entire home/apt,175,2,102,4.23,1,152 +24679,2761278,Manhattan,Kips Bay,40.74073,-73.9791,Entire home/apt,229,5,1,0.05,1,0 +24680,21938310,Manhattan,East Village,40.72818,-73.98925,Private room,95,2,1,0.04,1,54 +24681,55389878,Brooklyn,Williamsburg,40.7188,-73.95846,Private room,84,1,1,0.04,1,0 +24682,71749435,Manhattan,Washington Heights,40.84102,-73.93822,Entire home/apt,80,3,37,1.55,1,28 +24683,8266069,Queens,Elmhurst,40.73704,-73.87876999999999,Private room,120,2,110,4.75,1,222 +24684,48881330,Brooklyn,Crown Heights,40.665890000000005,-73.95103,Entire home/apt,100,3,6,0.25,1,250 +24685,140128474,Manhattan,Theater District,40.7583,-73.98295,Entire home/apt,210,3,138,5.73,1,234 +24686,2887664,Brooklyn,Williamsburg,40.7124,-73.96342,Entire home/apt,260,2,15,0.68,1,88 +24687,123634626,Brooklyn,Bensonhurst,40.61889,-73.99895,Entire home/apt,99,3,28,1.92,1,325 +24688,139942077,Manhattan,East Village,40.723040000000005,-73.98089,Private room,125,1,80,3.35,1,340 +24689,922462,Brooklyn,Crown Heights,40.6732,-73.9553,Private room,65,2,0,,1,98 +24690,28819052,Brooklyn,Williamsburg,40.71379,-73.94207,Private room,80,2,95,4.09,1,51 +24691,140146581,Manhattan,Harlem,40.821690000000004,-73.94077,Private room,69,1,14,0.72,1,0 +24692,2891898,Brooklyn,Borough Park,40.64712,-73.99646,Private room,48,5,2,0.19,1,214 +24693,23027289,Brooklyn,Clinton Hill,40.683859999999996,-73.9627,Private room,40,1,2,0.09,1,0 +24694,4380358,Manhattan,Upper East Side,40.78072,-73.94726,Private room,135,4,5,0.22,1,95 +24695,140220933,Brooklyn,East Flatbush,40.65614,-73.91754,Entire home/apt,103,3,35,1.52,1,291 +24696,135337934,Queens,Queens Village,40.70969,-73.73133,Entire home/apt,110,2,20,0.84,2,27 +24697,2351055,Manhattan,Harlem,40.82931,-73.94801,Private room,50,4,3,0.31,1,0 +24698,19612095,Brooklyn,Williamsburg,40.706990000000005,-73.93221,Private room,45,2,0,,2,274 +24699,30868859,Manhattan,Upper East Side,40.77625,-73.95208000000001,Entire home/apt,125,5,36,1.56,1,0 +24700,105049617,Manhattan,Hell's Kitchen,40.75832,-73.99179000000001,Private room,129,1,108,4.49,3,116 +24701,105049617,Manhattan,Hell's Kitchen,40.76015,-73.99016999999999,Private room,129,1,111,4.61,3,111 +24702,105049617,Manhattan,Hell's Kitchen,40.760020000000004,-73.98958,Private room,129,1,97,4.03,3,132 +24703,131647128,Manhattan,Upper West Side,40.77418,-73.98799,Entire home/apt,190,30,9,0.43,25,334 +24704,137832487,Bronx,Longwood,40.82164,-73.90163000000001,Private room,65,3,2,0.11,1,0 +24705,94206273,Manhattan,Midtown,40.75527,-73.9657,Private room,99,1,112,4.66,1,0 +24706,2409072,Manhattan,Harlem,40.82649,-73.94623,Private room,60,2,15,0.66,1,95 +24707,140293912,Brooklyn,Kensington,40.64584,-73.97711,Entire home/apt,89,3,57,2.38,3,0 +24708,10966079,Brooklyn,Williamsburg,40.70898,-73.96121,Private room,75,3,54,2.24,2,96 +24709,3263559,Manhattan,Upper West Side,40.775090000000006,-73.98159,Entire home/apt,187,3,7,0.33,1,5 +24710,114596544,Queens,Astoria,40.76791,-73.92246999999999,Entire home/apt,95,3,19,0.79,1,0 +24711,140323391,Brooklyn,Bushwick,40.70255,-73.92103,Private room,45,3,0,,1,0 +24712,129646758,Brooklyn,East Flatbush,40.64377,-73.95085,Entire home/apt,160,3,53,2.24,2,294 +24713,140323631,Manhattan,Upper East Side,40.779270000000004,-73.94918,Entire home/apt,140,7,3,0.13,1,0 +24714,88001494,Brooklyn,Crown Heights,40.666109999999996,-73.93708000000001,Private room,90,2,38,1.59,3,45 +24715,119441,Queens,Astoria,40.75829,-73.91298,Entire home/apt,200,7,10,0.45,3,247 +24716,71540842,Queens,Ridgewood,40.708009999999994,-73.90928000000001,Private room,48,3,50,2.09,2,111 +24717,25072764,Manhattan,Lower East Side,40.71833,-73.9908,Private room,69,4,2,0.09,1,0 +24718,14898658,Brooklyn,Kensington,40.64242,-73.98138,Private room,45,1,22,0.96,11,7 +24719,131777975,Brooklyn,Brownsville,40.662929999999996,-73.91729000000001,Private room,90,4,4,0.2,3,89 +24720,18990231,Queens,Ridgewood,40.70373,-73.90873,Private room,45,1,3,0.13,1,0 +24721,79527116,Manhattan,East Village,40.72826,-73.98156,Entire home/apt,110,30,41,1.72,1,244 +24722,25789741,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94909,Private room,40,5,0,,1,0 +24723,67739226,Manhattan,Upper West Side,40.771409999999996,-73.98862,Shared room,50,1,0,,1,0 +24724,26178020,Queens,Long Island City,40.75265,-73.9405,Entire home/apt,180,30,0,,1,83 +24725,2781214,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9589,Private room,45,12,9,0.38,1,0 +24726,1132004,Manhattan,East Village,40.73022,-73.98623,Entire home/apt,125,5,2,0.08,1,0 +24727,140433041,Manhattan,Midtown,40.75083,-73.97270999999999,Entire home/apt,325,3,21,0.89,1,2 +24728,48100358,Brooklyn,Williamsburg,40.70803,-73.9591,Private room,55,1,87,3.72,3,24 +24729,39134890,Queens,Elmhurst,40.740829999999995,-73.88523,Private room,39,3,25,1.22,1,0 +24730,9121644,Queens,Ridgewood,40.703340000000004,-73.90647,Private room,85,2,5,0.21,1,0 +24731,80701659,Brooklyn,Williamsburg,40.7139,-73.9486,Private room,80,5,1,0.04,1,0 +24732,12577986,Brooklyn,Bedford-Stuyvesant,40.68614,-73.93594,Entire home/apt,124,1,113,4.71,1,63 +24733,2462300,Manhattan,Harlem,40.81707,-73.9349,Entire home/apt,120,3,20,0.94,1,0 +24734,137751858,Manhattan,Upper East Side,40.78069,-73.95149,Entire home/apt,120,3,8,0.34,1,0 +24735,17820666,Brooklyn,Williamsburg,40.706179999999996,-73.9534,Entire home/apt,198,20,4,0.18,1,0 +24736,61689461,Manhattan,Financial District,40.70498,-74.01063,Private room,55,3,2,0.08,1,0 +24737,140476993,Manhattan,Washington Heights,40.83286,-73.94135,Entire home/apt,100,7,10,0.42,1,0 +24738,16752839,Brooklyn,Carroll Gardens,40.68385,-73.99278000000001,Entire home/apt,225,2,14,0.65,1,0 +24739,140488110,Brooklyn,Williamsburg,40.70823,-73.96081,Private room,60,2,0,,1,0 +24740,140492812,Brooklyn,Bushwick,40.707,-73.92204,Private room,57,1,2,0.09,2,0 +24741,140503168,Brooklyn,Williamsburg,40.717290000000006,-73.9453,Private room,95,3,1,0.04,1,67 +24742,91358346,Brooklyn,Williamsburg,40.71479,-73.94835,Private room,600,1,0,,1,0 +24743,5244814,Brooklyn,Williamsburg,40.71949,-73.95827,Entire home/apt,200,3,1,0.16,1,0 +24744,20433973,Bronx,City Island,40.83914,-73.78158,Private room,80,1,6,1.33,2,358 +24745,22549130,Brooklyn,Williamsburg,40.7134,-73.944,Entire home/apt,116,3,6,0.26,1,0 +24746,13349759,Manhattan,East Village,40.72589,-73.97726,Private room,75,3,0,,1,0 +24747,140599227,Queens,Forest Hills,40.73076,-73.85033,Private room,45,1,43,1.85,2,0 +24748,24383253,Brooklyn,Crown Heights,40.67139,-73.95676999999999,Private room,50,8,0,,1,0 +24749,55952349,Queens,Kew Gardens,40.70847,-73.82961,Entire home/apt,150,6,3,0.12,1,36 +24750,34359486,Manhattan,Harlem,40.813790000000004,-73.94671,Entire home/apt,120,2,11,0.46,1,128 +24751,20608771,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94986,Entire home/apt,99,7,7,0.3,1,0 +24752,4328217,Manhattan,Upper West Side,40.787620000000004,-73.96826999999999,Entire home/apt,325,7,0,,1,0 +24753,24607072,Manhattan,West Village,40.73673,-74.00836,Entire home/apt,150,3,3,0.13,1,0 +24754,139259102,Manhattan,Midtown,40.75316,-73.99086,Private room,500,1,0,,2,0 +24755,93859477,Brooklyn,Williamsburg,40.71983,-73.9592,Entire home/apt,210,2,23,0.96,1,0 +24756,59045042,Brooklyn,Bushwick,40.702040000000004,-73.92591999999999,Private room,55,2,7,0.29,1,0 +24757,47198967,Brooklyn,Fort Greene,40.69692,-73.97352,Entire home/apt,108,1,6,0.26,1,0 +24758,25653961,Manhattan,Harlem,40.81566,-73.93914000000001,Private room,50,3,5,0.22,1,0 +24759,2988712,Bronx,Claremont Village,40.83507,-73.9104,Entire home/apt,72,90,2,0.12,7,223 +24760,117492425,Staten Island,St. George,40.64478,-74.07897,Private room,33,4,63,2.78,6,197 +24761,6861839,Manhattan,Chelsea,40.74637,-74.00263000000001,Entire home/apt,500,3,1,0.05,1,0 +24762,619942,Brooklyn,Cypress Hills,40.6884,-73.87253,Private room,42,30,46,1.97,6,202 +24763,19608476,Manhattan,Washington Heights,40.83495,-73.94406,Private room,87,4,34,1.41,1,31 +24764,137411167,Bronx,Parkchester,40.84024,-73.85836,Private room,45,1,23,0.96,1,54 +24765,83061189,Brooklyn,Boerum Hill,40.6859,-73.98959,Entire home/apt,150,1,8,0.34,1,158 +24766,140770094,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93379,Entire home/apt,170,3,75,3.24,1,323 +24767,128517263,Brooklyn,Bushwick,40.69876,-73.93687,Private room,75,6,8,0.34,3,53 +24768,140470401,Brooklyn,Crown Heights,40.67719,-73.93205,Entire home/apt,200,2,51,2.15,1,127 +24769,69108319,Manhattan,Upper East Side,40.77108,-73.9485,Entire home/apt,115,2,0,,1,0 +24770,140798168,Queens,Astoria,40.76988,-73.9211,Entire home/apt,165,6,0,,1,0 +24771,15096876,Brooklyn,Bushwick,40.6995,-73.92089,Private room,60,3,2,0.08,1,0 +24772,513517,Brooklyn,Crown Heights,40.675670000000004,-73.95779,Private room,59,2,1,0.07,1,0 +24773,55468128,Brooklyn,Windsor Terrace,40.6582,-73.98235,Private room,49,1,109,4.99,7,258 +24774,2574881,Manhattan,East Village,40.72225,-73.98206,Entire home/apt,150,3,6,0.28,1,0 +24775,10677720,Manhattan,Lower East Side,40.7177,-73.98245,Private room,77,5,20,0.84,1,0 +24776,325862,Brooklyn,Windsor Terrace,40.66023,-73.98259,Entire home/apt,99,2,7,0.38,1,0 +24777,8199671,Brooklyn,Bedford-Stuyvesant,40.69262,-73.95014,Entire home/apt,120,2,6,0.25,1,2 +24778,125458231,Manhattan,Upper West Side,40.79403,-73.96314,Private room,85,1,0,,1,363 +24779,52535342,Brooklyn,Park Slope,40.66711,-73.97691,Entire home/apt,175,3,0,,1,0 +24780,87474067,Brooklyn,Bedford-Stuyvesant,40.682179999999995,-73.95355,Private room,60,1,16,0.68,1,0 +24781,26645843,Manhattan,Harlem,40.807809999999996,-73.95134,Entire home/apt,250,5,2,0.11,1,6 +24782,60230747,Queens,Ridgewood,40.70306,-73.90363,Private room,30,14,2,0.08,1,0 +24783,140847083,Manhattan,Washington Heights,40.8445,-73.9404,Private room,99,2,20,0.89,1,24 +24784,619942,Brooklyn,Cypress Hills,40.68705,-73.87035999999999,Private room,42,30,33,1.42,6,74 +24785,104470941,Brooklyn,Crown Heights,40.67305,-73.92958,Private room,90,2,34,1.43,1,170 +24786,25991504,Manhattan,Morningside Heights,40.812540000000006,-73.96025,Private room,48,7,1,0.04,1,0 +24787,73056979,Manhattan,Upper East Side,40.7822,-73.95101,Private room,55,1,7,0.3,1,0 +24788,140889033,Queens,Rego Park,40.72318,-73.85621,Entire home/apt,40,14,1,0.22,1,7 +24789,140931908,Manhattan,East Harlem,40.81033,-73.93874,Entire home/apt,200,2,9,0.38,1,27 +24790,17617027,Brooklyn,Fort Greene,40.69751,-73.97544,Entire home/apt,100,1,2,0.08,1,0 +24791,17507326,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92255,Private room,107,2,1,1.0,1,90 +24792,34388017,Brooklyn,Crown Heights,40.67713,-73.94375,Entire home/apt,175,3,0,,1,0 +24793,140964310,Manhattan,East Harlem,40.79405,-73.94242,Private room,150,7,0,,1,0 +24794,131647128,Manhattan,Upper West Side,40.773959999999995,-73.98782,Entire home/apt,225,30,20,0.9,25,286 +24795,72926334,Brooklyn,Bedford-Stuyvesant,40.6844,-73.93138,Private room,27,1,68,2.88,3,112 +24796,132839074,Brooklyn,Williamsburg,40.71673,-73.94442,Entire home/apt,101,2,7,0.64,1,0 +24797,131647128,Manhattan,Upper West Side,40.77578,-73.98923,Entire home/apt,255,30,5,0.26,25,254 +24798,131647128,Manhattan,Upper West Side,40.77476,-73.98947,Entire home/apt,320,30,8,0.38,25,261 +24799,57670550,Brooklyn,Crown Heights,40.66714,-73.93365,Entire home/apt,87,2,2,0.09,2,0 +24800,29003640,Manhattan,Washington Heights,40.84851,-73.93207,Entire home/apt,60,3,6,0.25,1,0 +24801,140983856,Manhattan,Financial District,40.70492,-74.00797,Entire home/apt,199,10,36,1.52,2,297 +24802,137264725,Manhattan,Chinatown,40.71366,-73.99153000000001,Entire home/apt,320,1,2,0.1,4,249 +24803,52583380,Brooklyn,Park Slope,40.67872,-73.9792,Private room,88,3,8,0.33,1,0 +24804,1426080,Manhattan,West Village,40.73555,-74.00737,Private room,115,1,3,0.12,2,0 +24805,11878464,Brooklyn,Prospect Heights,40.67654,-73.97144,Private room,85,2,11,0.48,1,0 +24806,2505262,Brooklyn,Clinton Hill,40.68432,-73.96376,Entire home/apt,83,14,0,,1,0 +24807,141011662,Manhattan,Hell's Kitchen,40.758559999999996,-73.99056999999999,Entire home/apt,176,3,0,,1,0 +24808,141012246,Manhattan,Harlem,40.81745,-73.94203,Private room,100,1,6,0.25,2,0 +24809,23909694,Manhattan,Greenwich Village,40.72918,-73.99889,Private room,100,2,1,0.04,2,0 +24810,99202586,Staten Island,Randall Manor,40.629670000000004,-74.1285,Entire home/apt,135,2,21,0.88,5,354 +24811,36565683,Manhattan,Upper West Side,40.800129999999996,-73.95998,Entire home/apt,150,6,4,0.17,1,64 +24812,8258751,Manhattan,SoHo,40.7252,-73.99805,Entire home/apt,250,5,3,0.13,1,0 +24813,140304567,Brooklyn,Bay Ridge,40.62992,-74.01753000000001,Entire home/apt,125,7,1,0.09,1,3 +24814,15932734,Manhattan,East Village,40.72688,-73.98546,Entire home/apt,160,3,20,0.89,1,0 +24815,141025502,Brooklyn,Sheepshead Bay,40.59408,-73.94372,Entire home/apt,95,4,13,0.68,1,111 +24816,1927824,Brooklyn,Williamsburg,40.714659999999995,-73.94448,Entire home/apt,250,4,7,0.33,1,118 +24817,19113311,Manhattan,East Village,40.72592,-73.98862,Entire home/apt,175,2,3,0.13,1,0 +24818,10457196,Manhattan,Little Italy,40.71954,-73.99667,Entire home/apt,150,30,6,0.27,11,65 +24819,19863077,Manhattan,East Village,40.72574,-73.98498000000001,Entire home/apt,192,1,0,,1,0 +24820,141031544,Queens,Ditmars Steinway,40.77787,-73.90848000000001,Private room,69,7,0,,1,0 +24821,81937,Brooklyn,Bedford-Stuyvesant,40.68999,-73.92833,Entire home/apt,110,14,1,0.04,1,18 +24822,112774776,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93884,Entire home/apt,92,4,3,0.13,1,0 +24823,3300910,Brooklyn,Bedford-Stuyvesant,40.69723,-73.93769,Entire home/apt,95,3,29,1.22,1,13 +24824,43105586,Manhattan,Hell's Kitchen,40.757740000000005,-73.99225,Entire home/apt,280,3,9,0.39,1,84 +24825,6955481,Brooklyn,Williamsburg,40.71913,-73.95769,Entire home/apt,275,3,2,0.08,2,0 +24826,48081884,Brooklyn,Williamsburg,40.70564,-73.92774,Private room,60,3,2,0.08,2,0 +24827,6862083,Manhattan,Two Bridges,40.71136,-73.99391,Private room,110,3,1,0.11,1,350 +24828,31856573,Manhattan,Harlem,40.81671,-73.94013000000001,Private room,80,6,0,,1,364 +24829,141052003,Queens,Jamaica,40.68558,-73.78018,Private room,65,1,8,0.42,4,155 +24830,48972208,Manhattan,Hell's Kitchen,40.75996,-73.99798,Private room,89,1,0,,1,0 +24831,6219013,Manhattan,Nolita,40.72177,-73.99675,Entire home/apt,200,3,5,0.38,1,0 +24832,139357580,Queens,Ditmars Steinway,40.77295,-73.90512,Private room,59,1,100,4.19,8,342 +24833,139357580,Queens,Ditmars Steinway,40.77324,-73.90385,Private room,55,1,70,2.93,8,332 +24834,139357580,Queens,Ditmars Steinway,40.77321,-73.90446999999999,Private room,60,1,80,3.35,8,320 +24835,142053,Manhattan,Hell's Kitchen,40.76054,-73.99065999999999,Entire home/apt,199,2,59,2.52,5,266 +24836,51870709,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94789,Entire home/apt,120,1,4,0.17,1,0 +24837,10642725,Brooklyn,Bedford-Stuyvesant,40.69425,-73.93325,Private room,35,2,1,0.05,1,0 +24838,129273512,Brooklyn,Gowanus,40.67014,-73.99276,Private room,79,1,81,3.53,3,353 +24839,48081884,Brooklyn,Williamsburg,40.70476,-73.92942,Private room,65,3,15,0.65,2,2 +24840,135840287,Brooklyn,Crown Heights,40.67783,-73.94209000000001,Private room,65,1,8,0.34,1,0 +24841,53710434,Brooklyn,Bushwick,40.70208,-73.93258,Entire home/apt,85,5,2,0.32,1,49 +24842,46708895,Bronx,Mount Hope,40.84899,-73.90375,Entire home/apt,250,2,45,2.18,1,289 +24843,24041479,Manhattan,Upper East Side,40.7593,-73.95966999999999,Private room,246,1,10,0.42,1,365 +24844,120762452,Manhattan,Murray Hill,40.74838,-73.97695,Entire home/apt,150,30,1,0.05,50,365 +24845,10391137,Brooklyn,Clinton Hill,40.69539,-73.9666,Entire home/apt,250,3,67,2.99,1,87 +24846,137999892,Staten Island,Concord,40.60609,-74.0888,Private room,34,4,24,1.03,7,293 +24847,71730214,Queens,Ridgewood,40.69956,-73.89801,Entire home/apt,80,4,5,0.21,1,0 +24848,137999892,Staten Island,Concord,40.60613,-74.08906999999999,Private room,35,4,19,0.84,7,346 +24849,26018020,Brooklyn,Bushwick,40.70053,-73.92589,Private room,75,2,0,,1,0 +24850,137999892,Staten Island,Concord,40.60618,-74.08712,Private room,33,3,29,1.3,7,356 +24851,48146336,Manhattan,Hell's Kitchen,40.762840000000004,-73.99226,Entire home/apt,130,30,7,0.37,20,337 +24852,4335080,Manhattan,Midtown,40.763940000000005,-73.97825,Entire home/apt,350,1,1,0.05,2,365 +24853,141229116,Queens,Bellerose,40.731790000000004,-73.72179,Private room,60,2,27,1.14,1,353 +24854,45399737,Manhattan,Greenwich Village,40.7292,-73.99964,Private room,150,2,0,,1,48 +24855,92307204,Brooklyn,Williamsburg,40.71947,-73.95958,Private room,65,21,2,0.09,1,81 +24856,120762452,Manhattan,Murray Hill,40.74948,-73.97685,Entire home/apt,150,30,0,,50,365 +24857,26091462,Brooklyn,Bedford-Stuyvesant,40.694990000000004,-73.94921,Private room,100,1,1,0.05,2,0 +24858,137306448,Manhattan,Upper East Side,40.7823,-73.94736,Entire home/apt,219,1,29,2.82,1,338 +24859,39250457,Brooklyn,Williamsburg,40.71199,-73.94004,Entire home/apt,90,2,4,0.17,1,0 +24860,141322867,Brooklyn,Flatlands,40.62468,-73.94532,Private room,46,2,4,0.17,1,4 +24861,141324173,Manhattan,Financial District,40.71103,-74.00845,Entire home/apt,200,2,74,3.13,1,35 +24862,141194871,Brooklyn,Bedford-Stuyvesant,40.681979999999996,-73.94086,Entire home/apt,160,2,130,5.6,1,123 +24863,141335210,Manhattan,West Village,40.73447,-74.00265999999999,Entire home/apt,599,1,0,,1,0 +24864,2292332,Manhattan,Nolita,40.7216,-73.99721,Entire home/apt,350,5,5,0.21,1,54 +24865,34738874,Brooklyn,Crown Heights,40.678059999999995,-73.94459,Entire home/apt,88,1,2,0.08,1,0 +24866,81996236,Queens,Ditmars Steinway,40.769940000000005,-73.90659000000001,Private room,105,1,0,,1,89 +24867,5350896,Brooklyn,Williamsburg,40.71312,-73.9617,Entire home/apt,175,3,30,1.28,1,24 +24868,16567193,Brooklyn,Canarsie,40.636520000000004,-73.90015,Private room,80,5,0,,1,90 +24869,37234244,Manhattan,Midtown,40.766020000000005,-73.98323,Entire home/apt,105,10,4,0.22,1,19 +24870,48146336,Manhattan,Hell's Kitchen,40.76245,-73.99235,Entire home/apt,160,30,4,0.32,20,339 +24871,16532782,Brooklyn,Kensington,40.64206,-73.97171999999999,Entire home/apt,160,6,0,,1,0 +24872,8026588,Brooklyn,Brooklyn Heights,40.69425,-73.99503,Entire home/apt,200,3,7,0.31,1,0 +24873,141359133,Brooklyn,Park Slope,40.67677,-73.97954,Private room,97,2,54,2.38,1,85 +24874,62710779,Manhattan,Upper West Side,40.799820000000004,-73.96410999999999,Private room,89,4,1,0.04,1,0 +24875,136300221,Manhattan,West Village,40.73319,-74.00435,Entire home/apt,225,10,8,0.52,1,90 +24876,48146336,Manhattan,Hell's Kitchen,40.763090000000005,-73.99214,Entire home/apt,130,30,7,0.34,20,311 +24877,59875550,Brooklyn,Williamsburg,40.714929999999995,-73.95995,Private room,50,14,1,0.06,1,0 +24878,75967547,Manhattan,Harlem,40.804190000000006,-73.95473,Private room,125,1,19,0.8,2,0 +24879,16596728,Brooklyn,Columbia St,40.68626,-74.00140999999999,Entire home/apt,149,4,9,0.38,1,74 +24880,112186372,Brooklyn,Bedford-Stuyvesant,40.68322,-73.91702,Shared room,200,1,1,0.04,1,179 +24881,4685815,Brooklyn,Williamsburg,40.71015,-73.955,Private room,60,7,1,0.04,1,0 +24882,4109954,Brooklyn,Greenpoint,40.73636,-73.95796999999999,Entire home/apt,200,2,11,0.77,1,0 +24883,91002349,Manhattan,Harlem,40.82788,-73.94835,Shared room,65,5,0,,1,0 +24884,32153139,Manhattan,East Harlem,40.80472,-73.94077,Private room,55,3,2,0.09,2,0 +24885,35387196,Brooklyn,Crown Heights,40.67233,-73.93998,Entire home/apt,78,7,3,0.17,4,237 +24886,202362,Brooklyn,Williamsburg,40.7191,-73.9617,Entire home/apt,275,5,3,0.15,1,0 +24887,2971336,Brooklyn,Williamsburg,40.71797,-73.96628,Private room,140,10,5,0.21,2,0 +24888,6208391,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96035,Entire home/apt,214,5,37,1.57,1,211 +24889,40008714,Queens,Astoria,40.76254,-73.91533000000001,Private room,65,1,5,0.56,1,328 +24890,15835115,Brooklyn,Flatbush,40.65447,-73.95631,Entire home/apt,75,2,3,0.13,1,0 +24891,139357580,Queens,Ditmars Steinway,40.77148,-73.90545,Private room,45,1,72,3.13,8,296 +24892,129646758,Brooklyn,East Flatbush,40.643229999999996,-73.95085999999999,Entire home/apt,95,2,43,1.97,2,338 +24893,9864136,Manhattan,Harlem,40.820859999999996,-73.94485999999999,Private room,65,30,0,,26,188 +24894,131712054,Manhattan,Hell's Kitchen,40.76122,-73.99129,Private room,111,1,136,5.86,1,51 +24895,34447878,Manhattan,Civic Center,40.71365,-74.0053,Entire home/apt,210,5,6,0.26,1,0 +24896,140821239,Manhattan,Upper East Side,40.7817,-73.94731,Private room,100,2,25,1.09,1,0 +24897,1772509,Brooklyn,Red Hook,40.67798,-74.00787,Entire home/apt,145,1,11,0.49,2,333 +24898,18604887,Brooklyn,Bushwick,40.703379999999996,-73.91879,Entire home/apt,50,15,3,0.13,1,7 +24899,30849492,Manhattan,Gramercy,40.73502,-73.98612,Entire home/apt,280,3,0,,1,0 +24900,2073124,Brooklyn,Fort Greene,40.696529999999996,-73.97439,Entire home/apt,136,2,2,0.09,1,0 +24901,93355703,Brooklyn,Brooklyn Heights,40.69677,-73.99599,Entire home/apt,585,3,10,0.42,1,225 +24902,141540856,Queens,Astoria,40.7698,-73.92009,Entire home/apt,200,2,1,0.05,1,0 +24903,2036797,Brooklyn,Williamsburg,40.71236,-73.96668000000001,Entire home/apt,180,3,20,0.91,1,0 +24904,105878573,Brooklyn,East New York,40.66725,-73.88875999999999,Private room,40,1,56,2.37,5,37 +24905,105878573,Brooklyn,East New York,40.66535,-73.8891,Private room,40,1,104,4.53,5,36 +24906,141544900,Brooklyn,East Flatbush,40.6455,-73.9444,Entire home/apt,56,1,82,3.64,1,22 +24907,45752004,Manhattan,Upper East Side,40.77285,-73.95566,Entire home/apt,795,2,9,0.42,1,268 +24908,141557712,Queens,Astoria,40.76531,-73.92413,Entire home/apt,135,2,19,0.81,1,310 +24909,8977208,Manhattan,East Village,40.728970000000004,-73.9811,Entire home/apt,130,30,0,,1,186 +24910,12652679,Queens,Astoria,40.76297,-73.91696,Entire home/apt,80,2,13,0.56,1,0 +24911,33106693,Manhattan,Harlem,40.82329,-73.95184,Private room,110,3,0,,3,64 +24912,16549535,Manhattan,Lower East Side,40.71624,-73.98935,Entire home/apt,50,1,6,0.28,1,0 +24913,184913,Brooklyn,Gowanus,40.68192,-73.9908,Entire home/apt,298,3,3,0.36,1,192 +24914,38592785,Manhattan,Washington Heights,40.84218,-73.93675999999999,Private room,55,2,15,0.76,1,0 +24915,6393112,Manhattan,Chelsea,40.74286,-74.001,Private room,110,2,0,,1,0 +24916,71841088,Brooklyn,Bedford-Stuyvesant,40.69235,-73.94888,Entire home/apt,145,2,0,,1,0 +24917,27186594,Manhattan,Financial District,40.70743,-74.00785,Private room,87,2,10,0.43,1,0 +24918,14833285,Brooklyn,Sheepshead Bay,40.5967,-73.96041,Entire home/apt,100,3,23,0.99,1,2 +24919,10787007,Manhattan,Gramercy,40.7347,-73.98665,Entire home/apt,125,1,54,2.3,1,0 +24920,1902239,Manhattan,Lower East Side,40.713,-73.98986,Entire home/apt,115,3,69,2.92,1,18 +24921,54769760,Brooklyn,Williamsburg,40.71649,-73.96176,Private room,50,5,1,1.0,1,11 +24922,15344412,Staten Island,New Springville,40.58085,-74.15443,Private room,43,10,0,,3,89 +24923,22129776,Manhattan,Lower East Side,40.72337,-73.99056999999999,Entire home/apt,449,1,3,0.63,3,352 +24924,141615596,Bronx,Parkchester,40.83805,-73.85866999999999,Shared room,26,1,18,0.78,2,342 +24925,1287787,Brooklyn,Prospect-Lefferts Gardens,40.66084,-73.96001,Private room,38,20,0,,2,7 +24926,2971336,Brooklyn,Williamsburg,40.71634,-73.96469,Private room,110,2,5,0.21,2,0 +24927,26172284,Brooklyn,Bushwick,40.68875,-73.90943,Private room,32,5,0,,1,0 +24928,141700715,Brooklyn,Fort Greene,40.685520000000004,-73.97166999999999,Entire home/apt,149,5,1,0.04,1,0 +24929,138913479,Brooklyn,Sheepshead Bay,40.58745,-73.95709000000001,Entire home/apt,130,2,41,1.77,1,142 +24930,135845936,Queens,Ditmars Steinway,40.77233,-73.911,Private room,75,3,2,0.09,1,0 +24931,15200154,Manhattan,West Village,40.73275,-74.006,Entire home/apt,350,2,2,0.09,1,0 +24932,10995969,Brooklyn,Fort Greene,40.69401,-73.973,Private room,62,2,3,0.13,1,0 +24933,19134080,Manhattan,East Village,40.72795,-73.9831,Entire home/apt,110,3,3,0.13,1,0 +24934,29568720,Manhattan,Washington Heights,40.85263,-73.9352,Private room,80,1,7,0.31,1,0 +24935,132080218,Manhattan,Kips Bay,40.74023,-73.97847,Private room,120,1,14,0.59,1,0 +24936,75819473,Brooklyn,Crown Heights,40.67295,-73.95645999999999,Private room,57,1,4,0.17,1,0 +24937,10286572,Manhattan,East Village,40.72697,-73.98509,Entire home/apt,239,2,13,0.68,1,3 +24938,139879568,Queens,Long Island City,40.766259999999996,-73.94058000000001,Private room,84,1,70,3.12,6,321 +24939,138515591,Manhattan,East Harlem,40.802659999999996,-73.93904,Private room,44,30,3,0.19,4,153 +24940,44194869,Manhattan,Harlem,40.81793,-73.94149,Private room,100,1,62,2.79,1,58 +24941,19413375,Manhattan,Chelsea,40.74279,-74.00193,Entire home/apt,500,6,40,1.7,1,276 +24942,138515591,Manhattan,East Harlem,40.80257,-73.93987,Private room,46,30,5,0.26,4,220 +24943,5962328,Queens,Flushing,40.76112,-73.82327,Entire home/apt,140,30,3,0.14,15,244 +24944,138515591,Manhattan,East Harlem,40.80356,-73.94034,Private room,41,30,5,0.24,4,211 +24945,9864136,Brooklyn,Bushwick,40.68507,-73.91329,Private room,35,2,5,0.21,26,311 +24946,75218527,Brooklyn,Crown Heights,40.66912,-73.94337,Entire home/apt,114,1,72,3.02,1,140 +24947,33527075,Queens,Elmhurst,40.745470000000005,-73.87746,Private room,57,2,103,4.34,2,3 +24948,46066063,Brooklyn,Bedford-Stuyvesant,40.69287,-73.92939,Private room,40,4,13,0.63,2,188 +24949,141844749,Brooklyn,Bedford-Stuyvesant,40.68925,-73.95452,Private room,60,2,65,2.78,1,58 +24950,114867228,Manhattan,NoHo,40.73,-73.99253,Entire home/apt,137,14,17,0.83,1,233 +24951,2491844,Manhattan,East Village,40.7248,-73.98774,Entire home/apt,150,5,1,0.08,1,5 +24952,4077993,Brooklyn,Crown Heights,40.6758,-73.9415,Private room,80,5,7,0.51,2,2 +24953,1287787,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.95894,Private room,33,10,3,0.13,2,63 +24954,134762059,Brooklyn,East Flatbush,40.6534,-73.9439,Private room,50,1,24,1.12,2,0 +24955,14757938,Brooklyn,Greenpoint,40.72612,-73.95419,Private room,65,1,0,,1,0 +24956,1780076,Brooklyn,Crown Heights,40.675129999999996,-73.95714,Private room,55,2,13,0.56,2,0 +24957,116100517,Queens,Flushing,40.75553,-73.83306999999999,Entire home/apt,39,1,2,0.08,1,0 +24958,2596096,Queens,Astoria,40.75705,-73.91459,Private room,150,2,4,0.17,1,0 +24959,141910666,Manhattan,Upper East Side,40.770579999999995,-73.95666,Entire home/apt,197,4,11,0.47,1,16 +24960,131697576,Bronx,East Morrisania,40.83384,-73.8863,Private room,65,2,91,3.82,4,325 +24961,15787004,Brooklyn,Bushwick,40.69627,-73.92265,Private room,50,3,0,,5,0 +24962,102482048,Brooklyn,Bushwick,40.681740000000005,-73.90733,Private room,50,2,28,1.22,4,341 +24963,16091224,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.96094000000001,Entire home/apt,130,3,1,0.04,2,0 +24964,361155,Brooklyn,Flatbush,40.64063,-73.96348,Entire home/apt,200,4,17,0.78,1,95 +24965,64018594,Manhattan,Harlem,40.80895,-73.95266,Private room,45,3,3,0.13,2,0 +24966,27527984,Brooklyn,Bushwick,40.69613,-73.90768,Private room,66,1,2,0.09,1,0 +24967,141937671,Brooklyn,Crown Heights,40.67051,-73.95166,Private room,60,2,48,2.04,1,328 +24968,74541079,Brooklyn,Crown Heights,40.670770000000005,-73.93618000000001,Entire home/apt,399,4,5,0.39,9,65 +24969,34382987,Manhattan,East Village,40.72384,-73.98406999999999,Private room,90,5,0,,1,0 +24970,138635224,Manhattan,Washington Heights,40.85801,-73.93113000000001,Private room,33,1,0,,2,0 +24971,63986235,Manhattan,Harlem,40.82952,-73.95064,Private room,75,4,3,0.13,1,0 +24972,6137321,Manhattan,Hell's Kitchen,40.76621,-73.98516,Entire home/apt,279,1,130,5.73,1,174 +24973,3554481,Brooklyn,Bedford-Stuyvesant,40.69639,-73.9343,Entire home/apt,120,4,0,,1,0 +24974,138515591,Manhattan,East Harlem,40.80305,-73.9403,Private room,51,30,2,0.38,4,262 +24975,117287,Manhattan,Hell's Kitchen,40.76764,-73.98468000000001,Private room,130,2,3,0.19,3,239 +24976,18987217,Queens,Ridgewood,40.70792,-73.89808000000001,Entire home/apt,90,4,0,,1,0 +24977,28825500,Brooklyn,Williamsburg,40.710879999999996,-73.95099,Private room,100,1,0,,1,0 +24978,14157435,Brooklyn,Flatlands,40.62567,-73.93784000000001,Private room,47,1,36,1.52,1,59 +24979,17591452,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94452,Private room,85,3,14,0.61,1,0 +24980,115228513,Manhattan,Upper West Side,40.80263,-73.96458,Private room,99,1,90,3.8,2,331 +24981,88022215,Manhattan,Murray Hill,40.74564,-73.97593,Entire home/apt,120,5,0,,1,0 +24982,15787004,Brooklyn,Bushwick,40.69682,-73.92318,Private room,60,3,6,0.48,5,0 +24983,15617507,Bronx,Morris Park,40.85145,-73.86129,Private room,29,1,53,2.65,3,137 +24984,54498900,Manhattan,Upper West Side,40.79271,-73.97272,Entire home/apt,170,7,4,0.17,1,0 +24985,43010827,Brooklyn,Williamsburg,40.71385,-73.93739000000001,Private room,45,3,5,0.21,1,0 +24986,99380211,Manhattan,Inwood,40.86372,-73.92789,Private room,70,1,1,1.0,1,132 +24987,81140056,Manhattan,East Village,40.72338,-73.98293000000001,Entire home/apt,198,7,9,0.38,1,0 +24988,17529252,Brooklyn,Bushwick,40.70447,-73.91559000000001,Private room,87,2,1,0.04,1,0 +24989,118902541,Manhattan,Harlem,40.82755,-73.945,Entire home/apt,80,1,0,,1,0 +24990,133926727,Manhattan,Harlem,40.82278,-73.94199,Entire home/apt,250,1,21,0.89,2,0 +24991,94543144,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9449,Entire home/apt,152,2,72,3.11,1,146 +24992,45374780,Manhattan,Little Italy,40.720079999999996,-73.99611999999999,Private room,95,3,0,,1,0 +24993,142118455,Manhattan,NoHo,40.7256,-73.99486999999999,Entire home/apt,1795,1,38,1.65,1,116 +24994,55939980,Manhattan,Midtown,40.75685,-73.96388,Entire home/apt,210,2,4,0.22,1,0 +24995,82119233,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95257,Entire home/apt,135,4,68,2.97,2,247 +24996,602131,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.96169,Entire home/apt,69,3,11,0.46,1,7 +24997,142133001,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95514,Private room,55,2,53,2.31,1,88 +24998,15520689,Manhattan,Lower East Side,40.71692,-73.98321,Entire home/apt,90,26,1,0.04,1,0 +24999,142135334,Brooklyn,Bedford-Stuyvesant,40.68985,-73.95317,Private room,45,5,38,2.08,1,79 +25000,23587319,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93578000000001,Entire home/apt,80,2,3,0.14,1,0 +25001,32446721,Queens,Corona,40.74905,-73.86499,Shared room,37,1,26,1.1,6,365 +25002,5639390,Manhattan,Harlem,40.8077,-73.94345,Entire home/apt,130,4,0,,1,0 +25003,37318968,Queens,Arverne,40.59082,-73.80328,Entire home/apt,275,2,24,1.02,1,335 +25004,32446918,Brooklyn,Bushwick,40.70451,-73.92062,Entire home/apt,150,4,32,1.46,1,92 +25005,1748382,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93299,Entire home/apt,200,2,39,1.69,1,253 +25006,142240474,Manhattan,Chelsea,40.73726,-73.9928,Entire home/apt,230,5,5,0.21,1,5 +25007,39939372,Brooklyn,Bushwick,40.69851,-73.9266,Private room,65,20,0,,1,0 +25008,12431341,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94383,Entire home/apt,149,3,3,0.14,1,0 +25009,21060836,Manhattan,Midtown,40.75207,-73.97201,Entire home/apt,690,3,1,0.04,2,0 +25010,142246533,Manhattan,Upper East Side,40.769890000000004,-73.94960999999999,Private room,53,12,1,0.04,1,0 +25011,31336910,Brooklyn,Vinegar Hill,40.69951,-73.98510999999999,Private room,245,3,0,,1,0 +25012,1822729,Brooklyn,Williamsburg,40.71078,-73.96161,Private room,70,4,33,1.49,2,0 +25013,6916278,Manhattan,East Village,40.723240000000004,-73.98255,Entire home/apt,275,2,23,0.99,1,0 +25014,142263776,Manhattan,Harlem,40.80389,-73.95443,Entire home/apt,113,5,0,,1,0 +25015,4777135,Queens,Long Island City,40.75955,-73.9336,Private room,56,2,19,0.81,1,0 +25016,142268790,Queens,Forest Hills,40.73386,-73.85202,Entire home/apt,268,3,4,0.19,2,154 +25017,16329486,Brooklyn,Bushwick,40.702659999999995,-73.92153,Private room,75,12,1,0.05,1,0 +25018,57328653,Manhattan,Midtown,40.75734,-73.96429,Private room,82,15,3,1.02,2,0 +25019,31480299,Brooklyn,Fort Greene,40.68895,-73.96902,Private room,65,1,10,0.45,1,0 +25020,15899162,Brooklyn,Greenpoint,40.73129,-73.95845,Entire home/apt,71,7,10,0.51,1,0 +25021,121612198,Brooklyn,Canarsie,40.64351,-73.91405999999999,Private room,89,1,9,0.38,4,334 +25022,113295877,Staten Island,Tompkinsville,40.635290000000005,-74.09068,Private room,59,3,26,1.11,3,351 +25023,75777937,Brooklyn,Williamsburg,40.715579999999996,-73.96171,Private room,50,1,3,0.13,1,0 +25024,53630880,Brooklyn,Crown Heights,40.676190000000005,-73.9532,Entire home/apt,100,5,6,0.25,1,0 +25025,59764159,Manhattan,Harlem,40.812540000000006,-73.94204,Private room,55,3,1,0.04,1,0 +25026,142312133,Queens,Forest Hills,40.73362,-73.84747,Entire home/apt,69,2,51,2.15,1,0 +25027,131767309,Manhattan,Two Bridges,40.71138,-73.99635,Private room,35,1,2,0.11,1,0 +25028,29750315,Manhattan,West Village,40.7331,-74.01021999999999,Private room,108,3,3,0.13,1,0 +25029,19474504,Brooklyn,Bedford-Stuyvesant,40.68266,-73.94321,Entire home/apt,100,1,3,0.13,1,0 +25030,121612198,Brooklyn,Canarsie,40.64138,-73.91488000000001,Private room,75,1,11,0.48,4,347 +25031,24559370,Manhattan,Washington Heights,40.85497,-73.93469,Entire home/apt,99,3,11,0.47,2,0 +25032,48851196,Brooklyn,Williamsburg,40.71042,-73.94744,Private room,80,25,0,,1,0 +25033,27559992,Brooklyn,Clinton Hill,40.693940000000005,-73.96918000000001,Entire home/apt,158,2,97,4.19,1,28 +25034,41827222,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95116999999999,Private room,50,1,5,0.21,2,0 +25035,14680684,Manhattan,West Village,40.738479999999996,-74.00503,Entire home/apt,250,5,5,0.27,1,0 +25036,2612106,Brooklyn,Williamsburg,40.71862,-73.94579,Private room,100,5,0,,1,0 +25037,142442839,Manhattan,Upper West Side,40.78561,-73.97636999999999,Entire home/apt,299,3,57,2.57,1,116 +25038,16547637,Manhattan,East Village,40.72775,-73.98253000000001,Private room,65,2,1,0.04,1,0 +25039,9851499,Manhattan,Upper West Side,40.78284,-73.97203,Entire home/apt,175,1,0,,1,0 +25040,9215302,Brooklyn,Prospect-Lefferts Gardens,40.65558,-73.956,Entire home/apt,90,2,6,0.26,1,0 +25041,74314960,Brooklyn,Bedford-Stuyvesant,40.69182,-73.9436,Private room,120,2,82,3.52,2,0 +25042,142483517,Brooklyn,Greenpoint,40.72854,-73.95626999999999,Entire home/apt,150,3,27,1.22,1,25 +25043,63235915,Queens,Long Island City,40.76024,-73.94091,Private room,61,3,1,0.04,1,0 +25044,11307033,Manhattan,East Village,40.72408,-73.97753,Private room,175,1,68,2.89,2,22 +25045,142078178,Brooklyn,Crown Heights,40.66953,-73.9493,Entire home/apt,150,2,1,0.04,1,0 +25046,142486709,Queens,Astoria,40.75815,-73.91143000000001,Private room,80,3,35,1.5,1,154 +25047,142465460,Brooklyn,East New York,40.66645,-73.85923000000001,Entire home/apt,100,14,27,1.67,1,81 +25048,318899,Staten Island,West Brighton,40.63471,-74.10942,Entire home/apt,75,1,9,0.45,1,175 +25049,139259102,Manhattan,Midtown,40.752109999999995,-73.99228000000001,Private room,500,1,1,0.05,2,0 +25050,142502018,Queens,Elmhurst,40.7355,-73.88131,Entire home/apt,115,7,4,0.18,1,0 +25051,3666809,Manhattan,East Village,40.729620000000004,-73.98449000000001,Private room,150,1,6,0.36,1,0 +25052,27468780,Queens,Astoria,40.76189,-73.92331999999999,Entire home/apt,110,4,6,0.3,1,0 +25053,3006848,Manhattan,Hell's Kitchen,40.76494,-73.98467,Private room,160,2,2,0.09,1,0 +25054,142516320,Manhattan,East Village,40.73001,-73.98411,Entire home/apt,230,5,1,0.11,1,0 +25055,3841371,Queens,Astoria,40.7701,-73.9297,Entire home/apt,120,2,2,0.09,1,0 +25056,60370951,Queens,Astoria,40.77297,-73.92253000000001,Entire home/apt,110,2,33,1.49,2,305 +25057,135731332,Brooklyn,Sunset Park,40.650040000000004,-74.00108,Entire home/apt,80,3,46,2.19,1,195 +25058,14408045,Manhattan,Murray Hill,40.74742,-73.9775,Entire home/apt,199,3,27,1.21,1,0 +25059,134284480,Manhattan,Hell's Kitchen,40.75955,-73.99738,Entire home/apt,280,3,92,4.13,1,69 +25060,56256469,Manhattan,Lower East Side,40.7191,-73.98431,Entire home/apt,140,3,4,0.17,1,0 +25061,31883068,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94829,Private room,50,7,8,0.34,1,188 +25062,105075265,Brooklyn,Bedford-Stuyvesant,40.69512,-73.95111,Private room,40,1,0,,1,0 +25063,10595388,Brooklyn,Crown Heights,40.67201,-73.9593,Entire home/apt,200,1,25,1.07,1,2 +25064,5173627,Brooklyn,Brooklyn Heights,40.70136,-73.99372,Entire home/apt,1095,2,24,1.01,1,240 +25065,14898658,Brooklyn,Kensington,40.64293,-73.98043,Private room,56,1,58,2.48,11,16 +25066,62258958,Queens,East Elmhurst,40.75704,-73.89005999999999,Private room,80,1,27,1.19,1,95 +25067,3309814,Brooklyn,Bushwick,40.69983,-73.92814,Entire home/apt,154,3,0,,1,0 +25068,6026276,Brooklyn,Greenpoint,40.73768,-73.95741,Private room,63,7,0,,1,0 +25069,23299635,Brooklyn,Williamsburg,40.71181,-73.95235,Private room,125,2,0,,1,0 +25070,74541079,Brooklyn,Crown Heights,40.66966,-73.93719,Entire home/apt,99,3,39,1.72,9,91 +25071,33683624,Manhattan,Upper East Side,40.776990000000005,-73.9524,Entire home/apt,265,1,0,,1,0 +25072,38250741,Brooklyn,Williamsburg,40.70694,-73.94511,Private room,65,2,2,0.09,1,0 +25073,74541079,Brooklyn,Crown Heights,40.66888,-73.93638,Entire home/apt,199,3,5,0.42,9,72 +25074,5016524,Queens,Forest Hills,40.71395,-73.83185999999999,Private room,45,1,2,0.09,1,0 +25075,67127998,Manhattan,Upper East Side,40.7811,-73.95003,Private room,69,20,3,0.13,1,0 +25076,4391397,Brooklyn,Windsor Terrace,40.65814,-73.98495,Private room,65,1,35,1.57,2,130 +25077,15547192,Manhattan,Upper West Side,40.7886,-73.97088000000001,Entire home/apt,82,7,0,,1,0 +25078,142590597,Brooklyn,East New York,40.672959999999996,-73.87435,Entire home/apt,249,1,7,0.38,6,177 +25079,21594748,Manhattan,Morningside Heights,40.806999999999995,-73.96452,Entire home/apt,220,2,6,0.27,2,0 +25080,89691323,Brooklyn,Crown Heights,40.672290000000004,-73.94282,Entire home/apt,95,5,3,0.14,1,20 +25081,26558906,Brooklyn,Bushwick,40.70252,-73.91447,Private room,34,3,7,0.35,1,71 +25082,28695008,Brooklyn,Bedford-Stuyvesant,40.68838,-73.95649,Entire home/apt,190,5,24,1.11,1,215 +25083,32057251,Manhattan,East Village,40.729820000000004,-73.98178,Entire home/apt,160,2,0,,1,0 +25084,142812843,Manhattan,East Harlem,40.78958,-73.93791999999999,Private room,85,1,10,0.43,2,0 +25085,619942,Brooklyn,Cypress Hills,40.688629999999996,-73.8706,Private room,38,30,43,1.87,6,193 +25086,2174446,Manhattan,Chinatown,40.71674,-73.99079,Private room,58,3,1,0.04,1,0 +25087,51445545,Manhattan,Midtown,40.75347,-73.98567,Entire home/apt,179,2,117,4.94,1,235 +25088,107272884,Queens,Richmond Hill,40.69612,-73.84699,Private room,40,1,56,2.37,4,164 +25089,142851497,Brooklyn,Sheepshead Bay,40.58632,-73.95335,Private room,45,7,34,1.47,1,36 +25090,142855897,Manhattan,East Harlem,40.794959999999996,-73.94882,Entire home/apt,150,4,7,0.56,1,0 +25091,51501835,Manhattan,Hell's Kitchen,40.7647,-73.99391,Entire home/apt,200,30,2,0.09,31,359 +25092,52530136,Manhattan,Gramercy,40.73409,-73.98703,Entire home/apt,125,3,5,0.23,1,0 +25093,85330,Queens,Forest Hills,40.7118,-73.85285,Private room,50,3,30,1.28,3,220 +25094,4905474,Queens,Ridgewood,40.7002,-73.90596,Private room,60,2,0,,1,0 +25095,142878742,Manhattan,East Harlem,40.79074,-73.94232,Private room,70,1,172,7.27,3,0 +25096,23610188,Manhattan,Chinatown,40.71479,-73.99971,Private room,88,1,1,0.04,1,0 +25097,9216074,Manhattan,West Village,40.73825,-74.00269,Entire home/apt,370,4,0,,1,0 +25098,142925986,Manhattan,Harlem,40.826240000000006,-73.93925,Private room,100,3,0,,1,125 +25099,95734400,Manhattan,Upper East Side,40.77042,-73.94918,Entire home/apt,122,1,4,0.17,1,0 +25100,15758568,Brooklyn,Bedford-Stuyvesant,40.68121,-73.94471,Private room,50,2,17,0.76,1,89 +25101,18547000,Queens,Astoria,40.77037,-73.92416999999999,Shared room,60,3,28,2.26,1,248 +25102,41861163,Brooklyn,Bushwick,40.695209999999996,-73.90959000000001,Private room,50,7,0,,1,0 +25103,142878742,Manhattan,East Harlem,40.79012,-73.94333,Private room,60,1,163,6.9,3,61 +25104,142997033,Brooklyn,Sheepshead Bay,40.59449,-73.95166,Private room,53,2,9,2.87,1,357 +25105,15572977,Brooklyn,Bushwick,40.7005,-73.92554,Entire home/apt,150,3,1,0.04,1,0 +25106,8962305,Manhattan,Lower East Side,40.71375,-73.98988,Private room,75,5,3,0.13,3,11 +25107,74541079,Brooklyn,Crown Heights,40.670809999999996,-73.93646,Entire home/apt,129,3,24,1.04,9,74 +25108,9691202,Brooklyn,Williamsburg,40.7188,-73.94283,Entire home/apt,250,7,10,0.45,1,5 +25109,24559370,Manhattan,Washington Heights,40.8555,-73.93517,Private room,98,3,4,0.17,2,0 +25110,11822196,Manhattan,Gramercy,40.73734,-73.98565,Entire home/apt,99,3,10,0.51,2,0 +25111,46801421,Queens,Astoria,40.77133,-73.92119,Entire home/apt,120,3,11,0.48,1,6 +25112,118883025,Manhattan,Upper West Side,40.78182,-73.97915,Private room,120,1,141,5.94,1,231 +25113,2802251,Brooklyn,Flatbush,40.6495,-73.9643,Private room,60,2,2,0.08,1,0 +25114,26298732,Queens,Flushing,40.77401,-73.80169000000001,Private room,89,1,0,,1,0 +25115,143052745,Bronx,Mott Haven,40.81005,-73.91977,Private room,40,1,73,3.16,4,51 +25116,66604973,Brooklyn,Greenpoint,40.726459999999996,-73.95598000000001,Entire home/apt,150,1,0,,1,0 +25117,121612198,Brooklyn,Canarsie,40.6433,-73.91333,Private room,89,1,2,0.16,4,359 +25118,10112706,Queens,Ridgewood,40.70709,-73.89421999999999,Entire home/apt,49,2,59,3.09,1,24 +25119,10010083,Brooklyn,Bedford-Stuyvesant,40.683170000000004,-73.93553,Private room,60,3,26,1.28,1,47 +25120,24050287,Manhattan,Chelsea,40.74707,-74.00332,Entire home/apt,500,7,26,1.25,1,214 +25121,131697576,Bronx,East Morrisania,40.83336,-73.88636,Private room,75,2,71,3.0,4,358 +25122,22541573,Manhattan,Chelsea,40.74119,-73.99941,Entire home/apt,169,30,0,,87,362 +25123,10128779,Brooklyn,Williamsburg,40.71759,-73.96641,Entire home/apt,150,4,8,0.35,1,0 +25124,8760900,Manhattan,East Village,40.732409999999994,-73.98783,Entire home/apt,120,3,41,2.23,1,4 +25125,4305955,Brooklyn,Bushwick,40.70543,-73.92305999999999,Entire home/apt,165,4,12,0.55,1,0 +25126,6971106,Manhattan,Upper West Side,40.79957,-73.96989,Private room,72,3,4,0.17,2,0 +25127,143181766,Manhattan,Washington Heights,40.852129999999995,-73.9336,Entire home/apt,120,3,32,1.39,1,3 +25128,118695056,Brooklyn,Downtown Brooklyn,40.692009999999996,-73.98713000000001,Entire home/apt,275,3,20,0.96,2,35 +25129,143186772,Queens,Jamaica,40.694990000000004,-73.7991,Entire home/apt,130,2,95,4.19,1,117 +25130,90751766,Staten Island,Midland Beach,40.57294,-74.09615,Entire home/apt,90,4,8,0.4,1,179 +25131,143199593,Staten Island,Midland Beach,40.57509,-74.09606,Entire home/apt,105,4,20,1.05,1,358 +25132,131647128,Manhattan,Upper West Side,40.77548,-73.98965,Entire home/apt,190,30,5,0.38,25,181 +25133,51532290,Manhattan,East Harlem,40.79815,-73.93475,Entire home/apt,82,2,3,0.13,1,0 +25134,19990362,Brooklyn,Vinegar Hill,40.70149,-73.98091,Private room,69,5,5,0.22,1,166 +25135,2068274,Manhattan,East Village,40.72717,-73.98064000000001,Private room,99,3,2,0.09,1,0 +25136,34365131,Brooklyn,Downtown Brooklyn,40.69591,-73.98335,Private room,58,5,1,0.04,1,0 +25137,94676949,Brooklyn,East Flatbush,40.6413,-73.9236,Entire home/apt,100,2,97,4.38,1,30 +25138,6985109,Brooklyn,Prospect Heights,40.67335,-73.96763,Entire home/apt,121,9,21,1.14,1,179 +25139,95958773,Brooklyn,Brighton Beach,40.57717,-73.9608,Private room,95,1,7,0.32,3,342 +25140,136812761,Brooklyn,Bedford-Stuyvesant,40.695370000000004,-73.93598,Entire home/apt,389,1,107,4.77,3,64 +25141,1318986,Brooklyn,Williamsburg,40.708290000000005,-73.95682,Entire home/apt,90,1,0,,1,0 +25142,142812843,Manhattan,East Harlem,40.79104,-73.93805,Private room,75,1,12,0.51,2,0 +25143,4391397,Brooklyn,Windsor Terrace,40.65783,-73.98236,Entire home/apt,150,2,4,0.34,2,4 +25144,119680716,Brooklyn,Kensington,40.6368,-73.96857,Private room,35,1,6,0.26,1,0 +25145,143330206,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92605999999999,Private room,45,5,2,0.09,1,0 +25146,7927832,Staten Island,"Bay Terrace, Staten Island",40.55182,-74.14439,Entire home/apt,150,3,1,0.09,1,0 +25147,131647128,Manhattan,Upper West Side,40.77104,-73.98522,Entire home/apt,190,30,6,0.31,25,190 +25148,74541079,Brooklyn,Crown Heights,40.66955,-73.93576,Entire home/apt,199,4,7,0.34,9,89 +25149,19297877,Bronx,Bronxdale,40.855270000000004,-73.86719000000001,Private room,35,1,21,0.96,1,284 +25150,143351162,Queens,Queens Village,40.707229999999996,-73.72948000000001,Private room,75,1,16,0.71,1,342 +25151,30998389,Queens,Woodside,40.75398,-73.90083,Private room,40,10,1,0.14,1,0 +25152,75967547,Manhattan,Harlem,40.805240000000005,-73.95254,Private room,99,2,17,0.73,2,0 +25153,30933708,Brooklyn,Bushwick,40.697109999999995,-73.91519,Private room,75,2,8,0.35,1,0 +25154,139357580,Queens,Ditmars Steinway,40.77232,-73.90369,Private room,40,2,101,4.29,8,279 +25155,10461088,Brooklyn,Carroll Gardens,40.6831,-73.99945,Entire home/apt,180,4,0,,1,0 +25156,128414475,Brooklyn,Williamsburg,40.70609,-73.92828,Private room,91,1,3,0.13,3,0 +25157,40511252,Brooklyn,Williamsburg,40.70754,-73.95291,Private room,55,30,3,0.28,3,0 +25158,52127857,Manhattan,Lower East Side,40.7181,-73.98167,Private room,120,2,1,0.06,2,0 +25159,56784103,Manhattan,Kips Bay,40.744820000000004,-73.97827,Private room,69,15,25,1.1,1,29 +25160,48878986,Manhattan,Harlem,40.820859999999996,-73.95119,Private room,60,3,1,0.04,1,0 +25161,35635299,Manhattan,Midtown,40.74353,-73.98364000000001,Entire home/apt,333,30,66,2.81,1,210 +25162,126504342,Queens,Flushing,40.76271,-73.79595,Private room,50,2,74,3.19,1,246 +25163,131035061,Queens,Sunnyside,40.7463,-73.91388,Private room,60,3,105,4.49,2,90 +25164,519720,Queens,Arverne,40.59425,-73.79505999999999,Entire home/apt,150,2,2,0.09,1,309 +25165,126531152,Brooklyn,Williamsburg,40.713,-73.94381,Entire home/apt,150,1,4,0.17,1,0 +25166,143431362,Brooklyn,East Flatbush,40.63831,-73.94572,Private room,89,1,14,0.62,1,364 +25167,683142,Manhattan,Hell's Kitchen,40.76242,-73.99481999999999,Entire home/apt,135,2,3,0.13,1,0 +25168,43623968,Queens,Rego Park,40.72835,-73.86108,Entire home/apt,115,1,78,3.51,1,343 +25169,90463984,Queens,Richmond Hill,40.6997,-73.84236,Entire home/apt,100,7,3,0.17,3,324 +25170,72377141,Manhattan,Upper West Side,40.80012,-73.96896,Private room,76,7,2,0.09,3,0 +25171,12586279,Brooklyn,Fort Greene,40.68841,-73.97283,Entire home/apt,110,2,5,0.22,1,0 +25172,119260265,Brooklyn,Clinton Hill,40.68878,-73.96155999999999,Private room,60,5,4,0.17,1,0 +25173,52361698,Queens,East Elmhurst,40.76279,-73.87429,Private room,40,1,1,1.0,1,226 +25174,17290200,Brooklyn,Williamsburg,40.70503,-73.93699000000001,Private room,50,7,1,0.04,1,0 +25175,30442701,Queens,Astoria,40.7651,-73.91304000000001,Private room,49,3,36,1.55,1,0 +25176,84143174,Manhattan,Nolita,40.724270000000004,-73.99387,Entire home/apt,200,1,13,0.56,1,0 +25177,10109608,Manhattan,Harlem,40.81145,-73.95067,Entire home/apt,65,3,9,0.4,2,0 +25178,21619571,Brooklyn,Williamsburg,40.712720000000004,-73.96378,Private room,68,1,1,0.04,1,0 +25179,21060836,Manhattan,Midtown,40.7534,-73.97185999999999,Entire home/apt,199,3,0,,2,0 +25180,143534216,Queens,Elmhurst,40.7466,-73.88812,Private room,80,2,8,0.35,1,0 +25181,143555322,Queens,Jamaica Hills,40.71062,-73.80145,Private room,50,1,4,0.17,1,0 +25182,143554049,Queens,Ridgewood,40.70061,-73.911,Private room,78,3,60,2.66,1,291 +25183,22375303,Brooklyn,Bedford-Stuyvesant,40.68185,-73.9306,Private room,65,1,87,3.75,2,254 +25184,50688724,Brooklyn,Williamsburg,40.70639,-73.95551999999999,Private room,55,3,58,2.5,2,298 +25185,141141822,Manhattan,Harlem,40.81078,-73.94481999999999,Private room,63,3,50,3.01,1,315 +25186,124860677,Queens,Flushing,40.756859999999996,-73.81326999999999,Private room,43,2,65,2.87,6,364 +25187,126641287,Manhattan,Hell's Kitchen,40.76505,-73.98756999999999,Private room,140,2,54,2.36,1,0 +25188,740812,Bronx,Westchester Square,40.837579999999996,-73.84382,Entire home/apt,72,2,35,1.52,2,129 +25189,75360607,Queens,Sunnyside,40.74026,-73.92517,Entire home/apt,199,4,63,2.81,2,61 +25190,4609956,Brooklyn,Bedford-Stuyvesant,40.68305,-73.95753,Private room,90,2,55,2.42,3,110 +25191,62843071,Queens,Woodhaven,40.696059999999996,-73.85226,Private room,55,1,86,3.68,4,248 +25192,87988,Brooklyn,Carroll Gardens,40.68201,-73.99535,Entire home/apt,120,3,2,0.09,2,0 +25193,67754093,Manhattan,Lower East Side,40.72013,-73.9922,Entire home/apt,135,14,0,,1,0 +25194,4609956,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95688,Private room,80,2,64,2.73,3,116 +25195,2778578,Manhattan,Upper East Side,40.775529999999996,-73.9539,Private room,154,4,5,0.22,1,27 +25196,22373916,Manhattan,Upper West Side,40.77841,-73.97968,Entire home/apt,175,7,2,0.09,1,0 +25197,143603020,Manhattan,Harlem,40.812,-73.94189,Entire home/apt,80,5,5,0.22,1,0 +25198,22645955,Brooklyn,Bushwick,40.69786,-73.91362,Private room,50,20,3,0.13,1,2 +25199,143610690,Manhattan,Upper East Side,40.77255,-73.95456999999999,Entire home/apt,125,1,131,5.7,1,220 +25200,6658169,Brooklyn,Kensington,40.639070000000004,-73.97399,Entire home/apt,150,2,0,,1,0 +25201,3370543,Manhattan,Hell's Kitchen,40.75747,-73.99039,Private room,174,3,17,0.73,1,65 +25202,93751838,Brooklyn,Bushwick,40.70575,-73.92193,Private room,40,1,4,0.18,1,0 +25203,142447586,Bronx,Williamsbridge,40.880320000000005,-73.85876999999999,Private room,45,3,33,1.47,4,325 +25204,6971106,Manhattan,Upper West Side,40.79938,-73.97057,Private room,100,5,0,,2,0 +25205,143631031,Brooklyn,Bushwick,40.70135,-73.92402,Private room,50,2,31,1.34,1,0 +25206,712992,Brooklyn,Greenpoint,40.72025,-73.9436,Entire home/apt,115,1,92,3.93,1,33 +25207,50740281,Manhattan,Chelsea,40.73686,-73.99349000000001,Entire home/apt,175,5,0,,1,0 +25208,11297009,Manhattan,Harlem,40.815740000000005,-73.95260999999999,Entire home/apt,130,1,35,1.63,4,361 +25209,113682832,Queens,Jamaica,40.69765,-73.8114,Entire home/apt,63,3,14,0.9,2,257 +25210,124046841,Brooklyn,Prospect Heights,40.67714,-73.96437,Entire home/apt,130,2,0,,1,0 +25211,76626328,Manhattan,Hell's Kitchen,40.76336,-73.98646,Entire home/apt,275,2,86,3.68,1,137 +25212,143700620,Manhattan,Harlem,40.80942,-73.95246,Entire home/apt,130,3,40,1.76,1,275 +25213,61862775,Manhattan,East Village,40.72698,-73.98649,Entire home/apt,154,3,2,0.09,1,0 +25214,133773191,Brooklyn,Greenpoint,40.72677,-73.94578,Private room,43,2,153,6.59,1,14 +25215,48685877,Brooklyn,Bay Ridge,40.62707,-74.02816999999999,Shared room,225,3,1,0.04,1,87 +25216,94113622,Brooklyn,Bushwick,40.682520000000004,-73.90651,Private room,60,3,2,0.09,2,165 +25217,137625836,Queens,Sunnyside,40.74082,-73.91874,Private room,60,4,3,0.13,1,0 +25218,143725871,Manhattan,Upper East Side,40.77987,-73.94804,Entire home/apt,180,1,3,0.13,1,0 +25219,4609956,Brooklyn,Bedford-Stuyvesant,40.68249,-73.95683000000001,Private room,150,2,5,0.21,3,102 +25220,26823131,Brooklyn,Columbia St,40.68674,-74.00073,Entire home/apt,169,1,11,0.47,1,0 +25221,60839109,Brooklyn,East New York,40.67118,-73.86820999999999,Entire home/apt,83,1,42,1.79,1,348 +25222,107272884,Queens,Richmond Hill,40.695840000000004,-73.84727,Private room,40,1,59,2.52,4,354 +25223,2994103,Queens,Ditmars Steinway,40.776140000000005,-73.91324,Private room,75,2,2,0.1,1,0 +25224,83550011,Brooklyn,Crown Heights,40.67015,-73.95662,Entire home/apt,89,2,8,0.34,1,0 +25225,8345393,Brooklyn,South Slope,40.66563,-73.98669,Entire home/apt,150,2,3,0.13,1,0 +25226,16534981,Brooklyn,Bedford-Stuyvesant,40.679,-73.91078,Entire home/apt,68,30,11,0.48,5,332 +25227,26490904,Manhattan,Midtown,40.76149,-73.97536,Entire home/apt,200,30,5,0.26,4,280 +25228,25415637,Brooklyn,Columbia St,40.68356,-74.00301,Entire home/apt,144,1,11,0.48,1,0 +25229,52425281,Brooklyn,Boerum Hill,40.68614,-73.99082,Entire home/apt,150,4,0,,1,0 +25230,11713422,Manhattan,East Village,40.72967,-73.98595,Private room,75,2,2,0.09,2,0 +25231,5083652,Brooklyn,Bedford-Stuyvesant,40.68956,-73.93853,Entire home/apt,150,2,6,0.26,1,4 +25232,143768763,Manhattan,Upper East Side,40.786120000000004,-73.95359,Private room,105,3,29,1.31,1,75 +25233,26490904,Manhattan,Midtown,40.76255,-73.97453,Entire home/apt,350,30,2,0.21,4,332 +25234,7116018,Brooklyn,Williamsburg,40.710409999999996,-73.95773,Entire home/apt,200,3,0,,1,0 +25235,16534981,Brooklyn,Bedford-Stuyvesant,40.681329999999996,-73.90947,Entire home/apt,150,28,3,0.16,5,312 +25236,103488282,Queens,Sunnyside,40.74555,-73.92139,Private room,98,1,106,4.54,5,123 +25237,16534981,Brooklyn,Bedford-Stuyvesant,40.67925,-73.91017,Entire home/apt,122,28,7,0.3,5,226 +25238,143796248,Brooklyn,Williamsburg,40.71029,-73.95148,Private room,90,1,1,0.04,1,0 +25239,1294005,Brooklyn,Clinton Hill,40.68828,-73.96215,Entire home/apt,450,2,5,0.22,1,0 +25240,59359620,Queens,Ditmars Steinway,40.78083,-73.91145,Entire home/apt,125,2,0,,1,0 +25241,70418696,Manhattan,East Harlem,40.78757,-73.95089,Private room,185,2,98,5.19,1,103 +25242,136676366,Manhattan,Midtown,40.75155,-73.97355999999999,Private room,359,3,0,,1,0 +25243,139867352,Queens,Ditmars Steinway,40.780879999999996,-73.90819,Private room,39,1,178,7.57,2,327 +25244,58403098,Queens,Sunnyside,40.73676,-73.92756,Private room,65,2,72,3.14,3,98 +25245,76359133,Queens,Fresh Meadows,40.7385,-73.79241,Private room,60,1,100,4.27,3,311 +25246,13462855,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.93928000000001,Entire home/apt,170,3,62,2.7,2,280 +25247,5775499,Brooklyn,Bedford-Stuyvesant,40.68115,-73.90999000000001,Private room,60,5,11,0.49,1,0 +25248,143817547,Manhattan,East Harlem,40.788090000000004,-73.94319,Entire home/apt,200,7,3,0.14,1,0 +25249,7097558,Queens,South Ozone Park,40.66941,-73.79148,Entire home/apt,50,1,310,13.27,2,23 +25250,135940325,Manhattan,Upper West Side,40.776920000000004,-73.98111,Entire home/apt,206,5,0,,1,0 +25251,73028890,Queens,Astoria,40.75645,-73.91458,Private room,50,4,1,0.04,1,0 +25252,120762452,Manhattan,Murray Hill,40.748470000000005,-73.97561999999999,Entire home/apt,222,30,1,0.09,50,365 +25253,120762452,Manhattan,Murray Hill,40.74947,-73.9761,Entire home/apt,175,30,3,0.21,50,342 +25254,89893236,Brooklyn,Prospect-Lefferts Gardens,40.661559999999994,-73.94706,Entire home/apt,90,1,81,3.5,1,35 +25255,9592775,Brooklyn,South Slope,40.66729,-73.98359,Entire home/apt,196,2,93,4.1,1,154 +25256,22541573,Manhattan,Chelsea,40.73895,-73.9997,Entire home/apt,170,30,1,0.05,87,278 +25257,131035061,Queens,Sunnyside,40.74654,-73.91842,Private room,70,3,91,3.92,2,75 +25258,10768801,Manhattan,SoHo,40.72553,-74.00001999999999,Entire home/apt,899,3,5,0.22,1,161 +25259,103488282,Queens,Sunnyside,40.74572,-73.92198,Private room,78,1,74,3.19,5,88 +25260,143908925,Manhattan,Midtown,40.76549,-73.98165999999999,Entire home/apt,399,3,1,0.14,1,0 +25261,4281324,Manhattan,Morningside Heights,40.80445,-73.96649000000001,Entire home/apt,120,6,1,0.05,1,0 +25262,58353872,Brooklyn,Williamsburg,40.71987,-73.96141,Private room,55,5,4,0.17,1,0 +25263,3402375,Brooklyn,Greenpoint,40.73038,-73.95548000000001,Entire home/apt,189,1,0,,1,0 +25264,445894,Brooklyn,Bath Beach,40.60106,-74.00933,Entire home/apt,95,2,2,0.09,2,0 +25265,52166457,Queens,Long Island City,40.74715,-73.94605,Private room,70,2,6,0.26,1,0 +25266,8773518,Brooklyn,Bedford-Stuyvesant,40.68564,-73.94508,Private room,60,2,9,0.4,3,72 +25267,39808438,Brooklyn,Bushwick,40.68817,-73.91523000000001,Private room,45,2,31,1.35,5,0 +25268,56985517,Brooklyn,Crown Heights,40.67334,-73.94099,Entire home/apt,120,2,48,2.44,1,227 +25269,131684478,Staten Island,West Brighton,40.632909999999995,-74.11749,Private room,37,2,25,1.11,3,306 +25270,15675912,Brooklyn,Prospect-Lefferts Gardens,40.656729999999996,-73.96058000000001,Entire home/apt,125,4,4,0.18,1,0 +25271,61649734,Brooklyn,Bushwick,40.6902,-73.91515,Private room,50,1,61,2.6,2,9 +25272,7248357,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9329,Entire home/apt,75,2,1,0.04,1,0 +25273,83786650,Manhattan,Upper East Side,40.76143,-73.96103000000001,Entire home/apt,80,30,2,0.14,8,311 +25274,10254539,Brooklyn,Crown Heights,40.66426,-73.95773,Private room,60,1,9,0.46,1,0 +25275,143979484,Manhattan,Washington Heights,40.84532,-73.93814,Private room,68,3,34,1.69,2,253 +25276,2678122,Brooklyn,Williamsburg,40.71687,-73.95012,Entire home/apt,300,5,5,0.35,3,31 +25277,7285042,Brooklyn,Crown Heights,40.67586,-73.9504,Private room,75,3,5,0.22,1,0 +25278,107915864,Queens,Howard Beach,40.66778,-73.85345,Private room,89,1,5,5.0,4,317 +25279,6927464,Brooklyn,Crown Heights,40.673770000000005,-73.95398,Private room,53,1,0,,1,0 +25280,139357580,Queens,Ditmars Steinway,40.77368,-73.90499,Private room,62,2,95,4.09,8,327 +25281,143807664,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93861,Entire home/apt,100,3,50,2.16,1,96 +25282,144013169,Manhattan,West Village,40.73552,-74.00554,Entire home/apt,300,3,19,0.81,1,12 +25283,144017474,Brooklyn,Greenpoint,40.73639,-73.95342,Entire home/apt,83,1,85,3.74,2,0 +25284,12999475,Brooklyn,Bushwick,40.70032,-73.91684000000001,Private room,60,1,2,0.09,1,0 +25285,132735454,Brooklyn,Bushwick,40.69549,-73.91838,Private room,30,1,4,0.17,1,0 +25286,23267477,Queens,East Elmhurst,40.75482,-73.89369,Entire home/apt,118,2,119,5.2,1,87 +25287,13032983,Brooklyn,Williamsburg,40.71703,-73.94298,Entire home/apt,150,5,1,0.04,1,0 +25288,12302023,Brooklyn,Greenpoint,40.72509,-73.95418000000001,Private room,92,6,48,2.31,1,43 +25289,35894876,Brooklyn,Greenpoint,40.72505,-73.94449,Entire home/apt,99,1,114,4.97,1,255 +25290,1553230,Brooklyn,Prospect Heights,40.67635,-73.97113,Entire home/apt,124,2,9,0.39,1,0 +25291,18996093,Queens,Little Neck,40.757940000000005,-73.72955999999999,Private room,45,1,12,0.55,5,133 +25292,122120711,Brooklyn,Williamsburg,40.70745,-73.94484,Entire home/apt,175,4,2,0.09,1,0 +25293,132342343,Manhattan,Harlem,40.812459999999994,-73.94906,Entire home/apt,147,2,64,2.85,1,72 +25294,93220722,Brooklyn,Crown Heights,40.6762,-73.9617,Entire home/apt,75,2,1,0.06,1,72 +25295,144138036,Queens,St. Albans,40.69167,-73.75495,Entire home/apt,99,2,54,2.34,1,267 +25296,30852228,Queens,Flushing,40.755,-73.82333,Entire home/apt,120,1,2,0.09,1,0 +25297,67444730,Brooklyn,Bedford-Stuyvesant,40.69562,-73.95107,Private room,47,5,5,0.21,2,0 +25298,313079,Brooklyn,Bushwick,40.69426,-73.90785,Entire home/apt,157,3,70,3.06,1,223 +25299,94214493,Brooklyn,East Flatbush,40.65593,-73.91798,Private room,80,7,5,0.26,9,206 +25300,2065453,Brooklyn,Crown Heights,40.6775,-73.95404,Private room,69,1,7,0.33,3,0 +25301,4581681,Brooklyn,Flatbush,40.63646,-73.96484,Entire home/apt,250,2,58,2.7,1,312 +25302,654586,Manhattan,Greenwich Village,40.729820000000004,-74.00034000000001,Entire home/apt,175,2,25,1.78,1,64 +25303,120231560,Bronx,Bronxdale,40.85634,-73.86633,Private room,45,2,21,0.91,1,280 +25304,142235171,Manhattan,Washington Heights,40.855979999999995,-73.93427,Entire home/apt,80,2,18,0.77,1,0 +25305,43424825,Brooklyn,Williamsburg,40.70955,-73.9491,Entire home/apt,217,3,24,1.05,1,14 +25306,143977790,Manhattan,Upper East Side,40.77751,-73.95198,Entire home/apt,129,2,25,1.09,1,0 +25307,144197377,Manhattan,East Harlem,40.79873,-73.93263,Entire home/apt,199,1,34,1.5,1,0 +25308,144200262,Bronx,North Riverdale,40.907340000000005,-73.90137,Private room,119,3,0,,1,0 +25309,109884885,Brooklyn,Bushwick,40.69716,-73.91447,Entire home/apt,195,2,4,0.18,1,0 +25310,87814281,Manhattan,Harlem,40.83103,-73.94653000000001,Private room,80,1,0,,2,0 +25311,25860768,Manhattan,Upper East Side,40.78078,-73.95300999999999,Entire home/apt,126,2,45,2.0,1,0 +25312,34821813,Brooklyn,Bushwick,40.70115,-73.9212,Private room,55,6,0,,1,0 +25313,14853570,Brooklyn,Prospect-Lefferts Gardens,40.65967,-73.96242,Entire home/apt,100,2,0,,1,0 +25314,166634,Brooklyn,Brownsville,40.66192,-73.91371,Private room,59,2,34,1.47,5,0 +25315,144275900,Manhattan,Upper West Side,40.80024,-73.96826,Private room,51,7,2,0.09,1,0 +25316,6760095,Brooklyn,Bushwick,40.70089,-73.9273,Private room,250,2,0,,1,260 +25317,9450203,Brooklyn,Crown Heights,40.67215,-73.94830999999999,Private room,150,1,2,0.09,1,177 +25318,25233493,Brooklyn,Williamsburg,40.71352,-73.96148000000001,Entire home/apt,800,30,29,1.41,2,0 +25319,20850336,Manhattan,Upper West Side,40.77621,-73.98054,Private room,140,1,13,0.77,1,54 +25320,74314960,Brooklyn,Bedford-Stuyvesant,40.691559999999996,-73.94359,Private room,95,5,1,0.06,2,0 +25321,144310942,Manhattan,Flatiron District,40.74416,-73.99016999999999,Entire home/apt,600,2,41,1.93,1,174 +25322,144317997,Manhattan,Chelsea,40.74648,-73.99286,Private room,40,3,23,1.03,1,0 +25323,103488282,Queens,Sunnyside,40.74739,-73.92058,Private room,85,1,115,4.94,5,76 +25324,140299690,Manhattan,Harlem,40.8204,-73.94651999999999,Entire home/apt,150,3,18,0.79,1,4 +25325,67444730,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95116,Private room,60,30,2,0.09,2,0 +25326,144347177,Manhattan,Upper East Side,40.763259999999995,-73.95966999999999,Entire home/apt,149,5,0,,1,0 +25327,45451027,Brooklyn,Crown Heights,40.67651,-73.95877,Private room,40,6,4,0.18,1,0 +25328,20729779,Manhattan,Kips Bay,40.74195,-73.97825999999999,Private room,69,1,16,0.68,1,0 +25329,4220261,Manhattan,Civic Center,40.71332,-74.00643000000001,Entire home/apt,300,2,0,,1,89 +25330,144376495,Brooklyn,Columbia St,40.68796,-73.99996999999999,Entire home/apt,149,3,2,0.09,1,0 +25331,60293337,Manhattan,Upper East Side,40.77667,-73.95335,Private room,120,1,89,3.92,1,149 +25332,144406701,Brooklyn,Bushwick,40.692009999999996,-73.92364,Private room,40,9,2,0.09,1,0 +25333,42435903,Manhattan,Upper West Side,40.790929999999996,-73.97528,Entire home/apt,270,7,0,,1,0 +25334,44298161,Manhattan,Financial District,40.706759999999996,-74.00612,Entire home/apt,200,3,14,0.61,1,10 +25335,170094,Manhattan,Upper West Side,40.79272,-73.97519,Entire home/apt,120,3,6,0.27,1,0 +25336,107420184,Brooklyn,Crown Heights,40.671690000000005,-73.9326,Private room,50,3,28,1.76,1,93 +25337,9121940,Manhattan,West Village,40.73574,-74.00121,Entire home/apt,290,14,0,,1,341 +25338,101369464,Brooklyn,Bensonhurst,40.60848,-73.97703,Entire home/apt,100,2,115,4.95,1,323 +25339,8280982,Brooklyn,Bedford-Stuyvesant,40.681509999999996,-73.94827,Entire home/apt,250,3,1,0.32,1,133 +25340,58403098,Queens,Sunnyside,40.73726,-73.92775,Private room,45,3,58,2.53,3,97 +25341,10414799,Brooklyn,Bedford-Stuyvesant,40.690740000000005,-73.93696,Entire home/apt,85,5,6,0.33,2,5 +25342,144509624,Manhattan,Hell's Kitchen,40.76551,-73.9873,Entire home/apt,300,1,139,5.95,1,265 +25343,68724048,Queens,Ditmars Steinway,40.77773,-73.90719,Private room,35,1,3,0.13,1,0 +25344,634346,Manhattan,East Harlem,40.79629,-73.94913000000001,Private room,55,7,0,,1,0 +25345,147513,Brooklyn,Gowanus,40.67949,-73.98666,Entire home/apt,225,2,113,5.88,2,67 +25346,72375507,Brooklyn,Sheepshead Bay,40.60954,-73.95966,Entire home/apt,78,4,5,0.67,1,82 +25347,89985620,Brooklyn,Flatlands,40.62187,-73.93079,Private room,49,2,58,2.53,3,311 +25348,48146336,Manhattan,Hell's Kitchen,40.761520000000004,-73.99388,Entire home/apt,130,30,4,0.19,20,332 +25349,10217532,Brooklyn,Flatbush,40.64844,-73.96726,Entire home/apt,115,5,4,0.18,1,3 +25350,1699505,Brooklyn,Clinton Hill,40.68358,-73.9627,Private room,59,3,2,0.15,1,0 +25351,28455413,Brooklyn,Bushwick,40.68609,-73.91525,Private room,32,1,5,0.22,2,0 +25352,22899202,Brooklyn,Bedford-Stuyvesant,40.68838,-73.92208000000001,Private room,45,2,10,0.51,2,34 +25353,2514859,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95137,Private room,70,2,2,0.2,2,0 +25354,21340955,Brooklyn,Flatbush,40.65198,-73.96078,Entire home/apt,99,3,2,0.11,3,311 +25355,43121487,Queens,Maspeth,40.7355,-73.90064,Entire home/apt,105,3,71,3.08,1,285 +25356,46407533,Queens,Ditmars Steinway,40.78182,-73.91248,Entire home/apt,160,5,2,0.09,1,0 +25357,52251632,Manhattan,Morningside Heights,40.807109999999994,-73.95826,Entire home/apt,114,1,1,0.04,1,0 +25358,144647925,Brooklyn,Bedford-Stuyvesant,40.6867,-73.94211999999999,Private room,55,3,8,0.34,1,0 +25359,31687922,Queens,Flushing,40.7612,-73.8214,Entire home/apt,120,1,104,4.44,1,90 +25360,7714461,Brooklyn,Williamsburg,40.71389,-73.95103,Private room,55,7,19,0.85,2,151 +25361,9430316,Queens,Astoria,40.7641,-73.91879,Private room,160,2,1,0.05,1,0 +25362,32905351,Brooklyn,Crown Heights,40.67423,-73.95737,Entire home/apt,110,2,31,1.36,1,4 +25363,42154911,Manhattan,Harlem,40.83082,-73.94677,Private room,60,4,2,0.11,2,13 +25364,48146336,Manhattan,Hell's Kitchen,40.76163,-73.99335,Entire home/apt,130,30,4,0.41,20,310 +25365,118267672,Manhattan,Hell's Kitchen,40.766090000000005,-73.99396,Shared room,115,1,94,4.09,1,7 +25366,20279155,Manhattan,Chinatown,40.7134,-73.99069,Entire home/apt,150,1,0,,1,0 +25367,1457505,Brooklyn,Park Slope,40.6765,-73.98205,Entire home/apt,100,4,0,,1,0 +25368,115415316,Brooklyn,Bushwick,40.70515,-73.92349,Private room,85,2,5,0.22,2,0 +25369,140057330,Queens,Elmhurst,40.742470000000004,-73.88949000000001,Private room,55,1,61,2.66,7,57 +25370,48076117,Brooklyn,Crown Heights,40.6739,-73.93372,Private room,55,1,63,2.77,2,30 +25371,13872573,Manhattan,Financial District,40.707809999999995,-74.00050999999999,Private room,90,2,3,0.14,1,0 +25372,90130659,Manhattan,Two Bridges,40.71261,-73.99609,Private room,80,7,0,,1,0 +25373,33028687,Brooklyn,Bedford-Stuyvesant,40.691320000000005,-73.94494,Private room,150,2,6,0.26,1,0 +25374,40321516,Manhattan,Nolita,40.72206,-73.99497,Entire home/apt,350,5,1,0.05,1,0 +25375,138006255,Brooklyn,Canarsie,40.63601,-73.91503,Private room,110,1,1,0.07,2,365 +25376,28340376,Manhattan,Hell's Kitchen,40.76125,-73.99299,Entire home/apt,164,2,85,3.67,1,0 +25377,13989494,Queens,Ridgewood,40.695570000000004,-73.9043,Private room,42,2,1,0.04,1,0 +25378,117677214,Manhattan,West Village,40.73103,-74.00319,Entire home/apt,325,5,47,2.01,1,310 +25379,19635760,Manhattan,East Village,40.72526,-73.98128,Entire home/apt,140,3,6,0.35,1,0 +25380,38266438,Queens,Ridgewood,40.70216,-73.89944,Entire home/apt,75,10,1,0.04,1,0 +25381,104836016,Brooklyn,Kensington,40.6421,-73.98170999999999,Private room,66,2,14,0.6,4,180 +25382,104836016,Brooklyn,Kensington,40.64007,-73.98011,Private room,66,2,29,1.25,4,170 +25383,12213641,Manhattan,East Harlem,40.80196,-73.93627,Private room,95,1,35,1.56,2,15 +25384,7225691,Manhattan,Lower East Side,40.72268,-73.9893,Private room,115,1,179,7.76,2,326 +25385,23741614,Manhattan,Harlem,40.804159999999996,-73.95557,Private room,60,7,0,,1,0 +25386,1715301,Staten Island,Fort Wadsworth,40.595459999999996,-74.06092,Entire home/apt,800,7,0,,3,365 +25387,48704899,Brooklyn,Park Slope,40.67481,-73.97258000000001,Entire home/apt,200,3,41,1.84,1,1 +25388,144841101,Queens,Astoria,40.76406,-73.90959000000001,Private room,112,7,0,,1,0 +25389,144833193,Queens,Kew Gardens,40.70491,-73.83614,Entire home/apt,100,2,0,,1,0 +25390,133810925,Queens,Rosedale,40.665240000000004,-73.73283,Private room,84,1,89,4.01,3,356 +25391,133810925,Queens,Rosedale,40.66458,-73.73464,Private room,62,1,144,6.21,3,0 +25392,442106,Brooklyn,Bedford-Stuyvesant,40.69256,-73.96058000000001,Private room,35,1,5,0.22,1,0 +25393,133810925,Queens,Rosedale,40.664,-73.733,Private room,62,1,129,5.74,3,354 +25394,27098685,Queens,Long Island City,40.745,-73.94951,Entire home/apt,115,5,1,0.04,1,0 +25395,67223829,Bronx,Longwood,40.824059999999996,-73.8934,Entire home/apt,155,3,13,0.61,1,285 +25396,144868702,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92674,Entire home/apt,165,3,1,0.05,1,0 +25397,57670550,Brooklyn,Crown Heights,40.66872,-73.93451,Private room,60,3,6,0.26,2,0 +25398,24945340,Brooklyn,Park Slope,40.67447,-73.97605,Entire home/apt,400,2,7,0.37,1,14 +25399,101776118,Brooklyn,Bay Ridge,40.62493,-74.02837,Entire home/apt,90,1,92,4.09,1,312 +25400,10196765,Manhattan,Battery Park City,40.71035,-74.01722,Private room,90,1,9,0.39,1,0 +25401,7344404,Brooklyn,Williamsburg,40.71237,-73.9598,Private room,75,4,6,0.27,1,0 +25402,4412976,Manhattan,Tribeca,40.72015,-74.00435,Entire home/apt,1500,3,2,0.11,1,186 +25403,10373779,Brooklyn,Bedford-Stuyvesant,40.688829999999996,-73.94821,Private room,55,3,3,0.3,2,0 +25404,144863286,Manhattan,Harlem,40.8173,-73.95571,Private room,120,1,0,,1,180 +25405,131826530,Bronx,Riverdale,40.88667,-73.91494,Private room,600,2,0,,3,269 +25406,17555570,Brooklyn,Crown Heights,40.668820000000004,-73.92245,Private room,72,1,92,3.99,12,102 +25407,4227812,Brooklyn,Bedford-Stuyvesant,40.68161,-73.95237,Private room,120,30,4,0.37,1,0 +25408,115844816,Manhattan,Murray Hill,40.74819,-73.97201,Entire home/apt,200,6,2,0.09,1,341 +25409,1468617,Brooklyn,Clinton Hill,40.69575,-73.96966,Entire home/apt,99,3,5,0.22,1,0 +25410,65875353,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95017,Private room,40,2,0,,1,0 +25411,144992525,Manhattan,Theater District,40.758790000000005,-73.98155,Entire home/apt,185,3,5,0.22,1,0 +25412,55260292,Manhattan,Lower East Side,40.72017,-73.98411999999999,Private room,90,2,14,0.67,1,60 +25413,13300403,Manhattan,Greenwich Village,40.73372,-73.99704,Entire home/apt,615,4,42,1.83,1,117 +25414,145011016,Manhattan,Financial District,40.70912,-74.00721,Entire home/apt,180,7,3,0.14,1,20 +25415,145013050,Brooklyn,Bushwick,40.704229999999995,-73.91595,Private room,75,1,3,0.13,1,0 +25416,135373362,Queens,St. Albans,40.70644,-73.76071999999999,Entire home/apt,80,1,100,4.45,1,71 +25417,49704571,Brooklyn,Greenpoint,40.72074,-73.9432,Entire home/apt,90,30,4,0.19,8,125 +25418,127759523,Manhattan,Gramercy,40.73775,-73.98319000000001,Entire home/apt,179,1,0,,1,0 +25419,1533756,Brooklyn,Williamsburg,40.721059999999994,-73.95974,Entire home/apt,269,5,1,0.04,1,0 +25420,10149880,Brooklyn,Park Slope,40.67653,-73.9737,Entire home/apt,106,5,0,,1,0 +25421,48984291,Manhattan,Kips Bay,40.74075,-73.98161999999999,Private room,110,14,0,,1,283 +25422,131826530,Bronx,Riverdale,40.88515,-73.91411,Shared room,800,2,1,0.04,3,269 +25423,145048035,Manhattan,Harlem,40.81545,-73.94613000000001,Private room,60,1,2,0.09,1,0 +25424,20217572,Manhattan,Upper West Side,40.79312,-73.96885999999999,Entire home/apt,219,4,30,1.29,1,45 +25425,7202412,Manhattan,Harlem,40.817479999999996,-73.94484,Entire home/apt,150,5,52,2.35,4,113 +25426,18121246,Manhattan,Upper West Side,40.7856,-73.97539,Entire home/apt,289,3,3,0.13,1,0 +25427,51752582,Manhattan,Upper West Side,40.7973,-73.9618,Private room,55,3,4,0.17,1,0 +25428,106445337,Manhattan,Kips Bay,40.73891,-73.98295,Private room,139,2,1,0.04,1,0 +25429,48032663,Queens,Richmond Hill,40.70171,-73.82991,Entire home/apt,65,2,95,4.13,1,105 +25430,143944704,Manhattan,Theater District,40.763020000000004,-73.98210999999999,Entire home/apt,239,3,104,4.53,1,0 +25431,145072632,Manhattan,Hell's Kitchen,40.76181,-73.98865,Private room,110,3,111,4.95,2,128 +25432,683180,Manhattan,Upper West Side,40.77345,-73.98774,Private room,89,10,10,0.44,1,248 +25433,131697576,Bronx,East Morrisania,40.83296,-73.88668,Private room,0,2,55,2.56,4,127 +25434,145082728,Brooklyn,Bedford-Stuyvesant,40.67907,-73.94915999999999,Entire home/apt,150,2,18,0.86,2,86 +25435,32446721,Queens,Corona,40.747479999999996,-73.8647,Shared room,45,1,18,0.8,6,365 +25436,137779917,Manhattan,Morningside Heights,40.81012,-73.95825,Private room,55,1,0,,1,0 +25437,68598597,Manhattan,Washington Heights,40.84684,-73.93252,Private room,55,1,22,0.95,2,91 +25438,76104209,Manhattan,Chelsea,40.73993,-74.00147,Entire home/apt,164,30,0,,33,307 +25439,140641026,Manhattan,Harlem,40.804190000000006,-73.94792,Shared room,65,1,1,0.16,1,365 +25440,17414475,Brooklyn,Columbia St,40.68181,-74.00461999999999,Private room,63,1,51,2.89,1,6 +25441,142289760,Manhattan,Harlem,40.81698,-73.93968000000001,Private room,70,1,9,0.39,1,89 +25442,13206384,Brooklyn,Greenpoint,40.73384,-73.95407,Entire home/apt,120,4,19,0.85,1,0 +25443,142878742,Manhattan,East Harlem,40.78828,-73.94385,Private room,82,1,163,7.27,3,75 +25444,145194995,Manhattan,East Village,40.729820000000004,-73.98371,Private room,56,2,4,0.17,1,0 +25445,80028220,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92531,Private room,80,1,4,0.19,1,0 +25446,127385071,Manhattan,Hell's Kitchen,40.7658,-73.99087,Entire home/apt,139,2,121,5.35,1,82 +25447,127077398,Queens,Ozone Park,40.67801,-73.8459,Entire home/apt,110,2,51,2.22,1,295 +25448,75199843,Brooklyn,Williamsburg,40.71327,-73.94763,Private room,60,2,3,0.13,1,90 +25449,145199414,Manhattan,Harlem,40.80041,-73.95401,Private room,70,1,68,2.97,1,330 +25450,31736547,Manhattan,East Harlem,40.79148,-73.9446,Private room,69,1,58,4.1,2,26 +25451,145214508,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94226,Shared room,45,3,7,0.31,2,364 +25452,144851882,Manhattan,Kips Bay,40.73972,-73.97839,Private room,58,5,0,,1,0 +25453,145234836,Brooklyn,Bushwick,40.70258,-73.92466,Private room,110,5,0,,1,358 +25454,145239999,Manhattan,Harlem,40.81876,-73.93974,Private room,80,1,4,0.17,1,179 +25455,145241163,Queens,Elmhurst,40.73744,-73.88136,Private room,51,2,38,1.66,1,28 +25456,49539959,Brooklyn,Brownsville,40.67287,-73.9105,Private room,50,4,67,2.89,2,0 +25457,46677826,Manhattan,Hell's Kitchen,40.76044,-73.99882,Entire home/apt,273,3,13,0.6,1,116 +25458,145257512,Manhattan,Midtown,40.755990000000004,-73.96769,Entire home/apt,212,3,95,4.26,1,239 +25459,87690038,Brooklyn,Crown Heights,40.67389,-73.93363000000001,Private room,54,2,47,2.05,4,345 +25460,41844294,Brooklyn,Carroll Gardens,40.685179999999995,-73.99247,Entire home/apt,170,1,90,4.11,1,164 +25461,6933112,Manhattan,Financial District,40.70874,-74.01342,Private room,102,1,0,,2,0 +25462,145187951,Brooklyn,Bedford-Stuyvesant,40.68385,-73.95626999999999,Private room,50,3,15,0.69,2,0 +25463,1843969,Brooklyn,Bedford-Stuyvesant,40.69445,-73.93828,Private room,85,2,11,0.49,1,164 +25464,11116177,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94145,Private room,80,1,2,0.09,1,0 +25465,6263296,Brooklyn,Bushwick,40.70182,-73.9188,Private room,50,1,3,0.13,1,0 +25466,13246721,Manhattan,Harlem,40.8216,-73.93679,Private room,86,1,1,0.05,1,0 +25467,19045109,Manhattan,Theater District,40.76122,-73.98583,Private room,136,3,0,,1,0 +25468,142590597,Brooklyn,East New York,40.67425,-73.87279000000001,Shared room,79,1,9,0.4,6,180 +25469,13225047,Brooklyn,Williamsburg,40.72099,-73.96007,Entire home/apt,211,1,12,0.53,3,0 +25470,740812,Bronx,Westchester Square,40.8372,-73.84345,Entire home/apt,70,2,67,2.99,2,129 +25471,142590597,Brooklyn,East New York,40.6746,-73.87293000000001,Shared room,159,1,7,0.31,6,180 +25472,20540369,Brooklyn,Bushwick,40.700309999999995,-73.91718,Private room,55,1,0,,1,0 +25473,142590597,Brooklyn,East New York,40.67467,-73.87379,Private room,119,1,29,1.28,6,180 +25474,19924289,Brooklyn,Fort Hamilton,40.62267,-74.02989000000001,Entire home/apt,120,4,45,1.98,1,44 +25475,41047066,Manhattan,Harlem,40.81629,-73.94131,Entire home/apt,71,2,24,1.45,1,55 +25476,46736568,Manhattan,Gramercy,40.73594,-73.97946999999999,Entire home/apt,170,3,12,0.53,1,1 +25477,68011294,Brooklyn,Crown Heights,40.66583,-73.93563,Entire home/apt,70,30,4,0.18,1,61 +25478,50369101,Brooklyn,Williamsburg,40.71351,-73.96038,Private room,80,1,1,0.04,1,0 +25479,145391611,Manhattan,Harlem,40.82744,-73.94707,Private room,50,2,86,4.01,1,97 +25480,145392038,Manhattan,Lower East Side,40.721779999999995,-73.98645,Private room,80,1,1,0.04,1,0 +25481,145398177,Manhattan,Kips Bay,40.7433,-73.97919,Entire home/apt,129,2,75,3.32,1,29 +25482,29967049,Manhattan,East Harlem,40.788990000000005,-73.94726999999999,Entire home/apt,99,14,6,0.27,1,3 +25483,75749777,Manhattan,Harlem,40.82094,-73.95366,Private room,49,16,1,0.04,1,0 +25484,4102722,Brooklyn,Prospect Heights,40.67988,-73.97375,Entire home/apt,125,1,2,0.09,1,0 +25485,145328112,Manhattan,Upper East Side,40.77002,-73.96183,Entire home/apt,150,7,1,0.04,1,0 +25486,62167677,Queens,Long Island City,40.75461,-73.91903,Private room,30,4,4,0.18,2,0 +25487,17126502,Brooklyn,Williamsburg,40.712790000000005,-73.94154,Entire home/apt,144,4,10,0.93,1,43 +25488,131697576,Bronx,East Morrisania,40.83243,-73.88608,Private room,55,2,60,2.59,4,171 +25489,66993395,Brooklyn,Bedford-Stuyvesant,40.6837,-73.9511,Entire home/apt,170,5,53,2.43,3,267 +25490,57573249,Manhattan,Harlem,40.81677,-73.93927,Entire home/apt,185,1,6,0.26,2,0 +25491,93411405,Queens,Elmhurst,40.74282,-73.87655,Entire home/apt,120,6,8,0.35,2,0 +25492,3697130,Manhattan,East Village,40.72311,-73.98161,Entire home/apt,174,2,22,0.98,1,0 +25493,9217610,Brooklyn,Greenpoint,40.726420000000005,-73.94574,Entire home/apt,125,3,50,2.15,2,91 +25494,7433664,Manhattan,Washington Heights,40.8459,-73.94219,Private room,60,1,1,0.04,1,0 +25495,44964062,Manhattan,East Harlem,40.7889,-73.9482,Private room,73,3,0,,1,0 +25496,39469667,Manhattan,Midtown,40.7577,-73.9662,Private room,105,1,142,6.6,1,38 +25497,43544395,Brooklyn,Fort Hamilton,40.618970000000004,-74.03675,Entire home/apt,85,1,3,0.44,1,6 +25498,131647128,Manhattan,Upper West Side,40.775999999999996,-73.98815,Entire home/apt,300,30,7,0.85,25,312 +25499,145518739,Manhattan,Gramercy,40.73496,-73.98723000000001,Private room,150,2,57,2.51,3,149 +25500,20954844,Brooklyn,Flatbush,40.64419,-73.95947,Private room,130,1,0,,1,0 +25501,108448613,Queens,Jackson Heights,40.750009999999996,-73.87358,Private room,80,2,9,0.39,1,0 +25502,60350045,Brooklyn,Boerum Hill,40.68557,-73.98536999999999,Entire home/apt,140,7,31,1.38,2,0 +25503,57339374,Brooklyn,Borough Park,40.64394,-73.99524,Private room,75,2,25,1.08,1,129 +25504,144602805,Brooklyn,Williamsburg,40.710409999999996,-73.9663,Entire home/apt,300,2,34,1.55,1,239 +25505,1097545,Manhattan,East Village,40.72609,-73.97865,Shared room,69,6,31,1.37,3,196 +25506,145560608,Queens,College Point,40.79511,-73.8473,Private room,53,7,2,0.12,1,279 +25507,6279607,Manhattan,Kips Bay,40.74042,-73.97822,Private room,79,1,26,1.13,1,0 +25508,143477365,Manhattan,Midtown,40.75878,-73.97069,Entire home/apt,409,1,87,3.86,1,40 +25509,119441,Queens,Astoria,40.758179999999996,-73.91398000000001,Entire home/apt,600,30,1,0.05,3,220 +25510,102347748,Brooklyn,Crown Heights,40.670609999999996,-73.93151,Private room,38,2,112,4.91,1,5 +25511,33827790,Manhattan,East Village,40.72208,-73.97779,Entire home/apt,185,1,17,0.77,1,11 +25512,31624246,Brooklyn,Greenpoint,40.72037,-73.94624,Entire home/apt,175,2,3,0.13,1,178 +25513,121141431,Manhattan,Upper East Side,40.77265,-73.94833,Entire home/apt,115,2,6,0.27,1,0 +25514,64097020,Brooklyn,Bushwick,40.68513,-73.90987,Private room,50,2,38,1.66,1,0 +25515,209300,Brooklyn,Fort Greene,40.68531,-73.97451,Private room,75,1,152,6.58,2,41 +25516,65830935,Brooklyn,Bedford-Stuyvesant,40.6801,-73.94072,Private room,1000,2,0,,1,0 +25517,4296770,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.9568,Entire home/apt,70,3,13,0.57,1,0 +25518,12570239,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9438,Private room,85,4,2,0.09,1,0 +25519,625403,Manhattan,SoHo,40.721709999999995,-74.00395999999999,Entire home/apt,250,90,1,0.23,1,0 +25520,15134346,Brooklyn,Bushwick,40.69145,-73.92152,Private room,40,2,4,0.18,1,0 +25521,71850281,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95214,Private room,50,5,22,1.0,1,1 +25522,26329486,Manhattan,Chelsea,40.74418,-73.9999,Entire home/apt,162,3,4,0.18,1,0 +25523,72715655,Manhattan,Hell's Kitchen,40.76347,-73.98785,Entire home/apt,250,2,97,4.21,1,145 +25524,18947979,Queens,Woodside,40.74273,-73.90458000000001,Private room,35,7,2,0.09,1,0 +25525,145717056,Queens,Long Island City,40.75905,-73.93203000000001,Entire home/apt,295,2,106,4.73,1,188 +25526,141931484,Brooklyn,Canarsie,40.634879999999995,-73.89015,Private room,75,2,45,1.95,3,259 +25527,32446721,Queens,Corona,40.74967,-73.86310999999999,Shared room,45,1,16,0.7,6,365 +25528,73954921,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95104,Private room,38,1,1,0.04,1,0 +25529,19887805,Manhattan,Upper West Side,40.79574,-73.96311999999999,Private room,61,1,1,0.04,1,35 +25530,9475138,Manhattan,Gramercy,40.73894,-73.98651,Entire home/apt,340,2,0,,1,0 +25531,145803893,Manhattan,Midtown,40.75205,-73.98564,Entire home/apt,170,2,102,4.48,1,213 +25532,102863031,Manhattan,SoHo,40.72443,-74.00140999999999,Private room,80,5,32,1.39,1,336 +25533,18884528,Brooklyn,Park Slope,40.67133,-73.97859,Private room,94,2,0,,2,0 +25534,127082964,Brooklyn,Bushwick,40.704390000000004,-73.92546,Private room,54,2,10,0.43,2,0 +25535,63043,Brooklyn,Greenpoint,40.72767,-73.95084,Private room,80,5,19,1.26,1,0 +25536,48677247,Bronx,Norwood,40.88304,-73.88278000000001,Entire home/apt,58,5,1,0.04,1,0 +25537,61524907,Manhattan,East Village,40.725,-73.97711,Entire home/apt,120,8,6,0.27,1,0 +25538,18996093,Queens,Douglaston,40.757540000000006,-73.73068,Private room,45,1,12,0.55,5,226 +25539,145830321,Brooklyn,Williamsburg,40.70728,-73.95461,Entire home/apt,120,1,122,5.42,1,193 +25540,1939209,Bronx,Claremont Village,40.83556,-73.91098000000001,Private room,70,4,42,1.85,2,77 +25541,5047712,Brooklyn,Williamsburg,40.71418,-73.94298,Entire home/apt,215,3,3,0.14,1,0 +25542,15004693,Manhattan,Upper West Side,40.78304,-73.97309,Entire home/apt,250,2,2,0.09,1,0 +25543,31031279,Brooklyn,Sunset Park,40.6494,-74.00967,Entire home/apt,72,3,1,0.04,1,21 +25544,42701042,Manhattan,East Village,40.72698,-73.98948,Entire home/apt,181,1,0,,1,0 +25545,145872703,Manhattan,Harlem,40.821979999999996,-73.95770999999999,Private room,85,2,26,1.17,2,355 +25546,145878384,Brooklyn,East Flatbush,40.655559999999994,-73.92926,Private room,80,3,10,0.45,7,341 +25547,24105930,Manhattan,Financial District,40.70511,-74.00828,Private room,115,1,0,,1,0 +25548,5053976,Brooklyn,Bedford-Stuyvesant,40.6898,-73.96011999999999,Private room,50,14,1,0.13,3,364 +25549,32761103,Brooklyn,Williamsburg,40.71394,-73.95669000000001,Entire home/apt,255,14,9,0.41,1,326 +25550,145953481,Brooklyn,Bay Ridge,40.62985,-74.01738,Entire home/apt,120,2,7,0.31,1,0 +25551,3656083,Brooklyn,Greenpoint,40.73237,-73.95952,Private room,61,10,2,0.09,2,0 +25552,145975067,Manhattan,Harlem,40.813320000000004,-73.94869,Private room,65,1,3,0.14,3,3 +25553,37050812,Brooklyn,Greenpoint,40.73547,-73.95495,Private room,55,2,4,0.18,1,0 +25554,24377694,Brooklyn,Crown Heights,40.67837,-73.95421999999999,Entire home/apt,298,2,0,,3,189 +25555,64065593,Manhattan,Midtown,40.751740000000005,-73.97213,Entire home/apt,672,2,3,0.23,13,266 +25556,6010437,Bronx,Kingsbridge,40.88165,-73.90633000000001,Entire home/apt,100,2,46,2.0,1,10 +25557,37380820,Brooklyn,Downtown Brooklyn,40.69404,-73.9875,Entire home/apt,199,1,0,,1,0 +25558,146036754,Queens,Astoria,40.76838,-73.92564,Private room,60,2,4,0.18,2,177 +25559,55133987,Manhattan,Upper West Side,40.795320000000004,-73.96344,Entire home/apt,130,9,0,,1,0 +25560,115415316,Brooklyn,Bushwick,40.70561,-73.92378000000001,Private room,80,2,0,,2,0 +25561,17575348,Manhattan,Greenwich Village,40.733340000000005,-73.99416,Entire home/apt,200,2,3,0.14,1,0 +25562,135606570,Brooklyn,East Flatbush,40.63458,-73.94554000000001,Private room,66,2,6,0.47,1,88 +25563,134428157,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94836,Entire home/apt,165,3,72,3.16,7,226 +25564,9589826,Manhattan,Murray Hill,40.74409,-73.97166999999999,Entire home/apt,350,3,0,,1,0 +25565,49519069,Queens,Briarwood,40.7105,-73.81589,Private room,85,5,0,,1,177 +25566,60350045,Brooklyn,Boerum Hill,40.685970000000005,-73.98507,Entire home/apt,150,7,2,0.14,2,0 +25567,5962328,Queens,Flushing,40.75947,-73.82263,Entire home/apt,100,30,7,0.34,15,294 +25568,22822259,Manhattan,Harlem,40.80666,-73.95703,Private room,90,2,67,2.99,1,63 +25569,34706197,Manhattan,East Village,40.725640000000006,-73.98682,Private room,144,4,20,1.08,2,94 +25570,18884528,Brooklyn,Park Slope,40.67257,-73.97775,Private room,90,1,0,,2,0 +25571,94408885,Brooklyn,Greenpoint,40.72572,-73.93909000000001,Entire home/apt,210,2,31,1.37,1,0 +25572,8305981,Manhattan,Greenwich Village,40.73325,-73.99971,Entire home/apt,350,2,34,1.52,1,10 +25573,146178383,Staten Island,St. George,40.64262,-74.08066,Private room,68,2,29,1.3,1,57 +25574,3682854,Queens,Astoria,40.77028,-73.91665,Private room,60,3,7,0.31,1,0 +25575,146036754,Queens,Astoria,40.76972,-73.92662,Private room,60,1,19,0.85,2,250 +25576,112176192,Manhattan,Upper East Side,40.78269,-73.95288000000001,Entire home/apt,127,1,0,,1,0 +25577,85330,Queens,Forest Hills,40.71089,-73.85384,Entire home/apt,60,4,97,4.42,3,273 +25578,88787567,Manhattan,Upper West Side,40.79787,-73.96802,Private room,60,4,4,0.22,1,0 +25579,146205943,Brooklyn,East Flatbush,40.66393,-73.9279,Entire home/apt,110,1,80,3.57,1,81 +25580,785524,Bronx,Concourse,40.81941,-73.92761999999999,Entire home/apt,69,2,98,4.57,2,193 +25581,146210515,Brooklyn,Williamsburg,40.713409999999996,-73.96554,Private room,70,4,0,,1,0 +25582,80597953,Manhattan,Harlem,40.80194,-73.95602,Entire home/apt,125,2,1,0.04,1,0 +25583,15443448,Brooklyn,Clinton Hill,40.68448,-73.96385,Private room,59,3,2,0.09,1,0 +25584,10547661,Manhattan,Hell's Kitchen,40.765570000000004,-73.98949,Entire home/apt,200,3,97,4.4,1,60 +25585,10653881,Brooklyn,Park Slope,40.67242,-73.98614,Private room,70,1,11,0.49,2,0 +25586,83185467,Queens,Astoria,40.760220000000004,-73.92617,Private room,60,1,0,,1,0 +25587,35040795,Brooklyn,Sheepshead Bay,40.587790000000005,-73.94703,Private room,70,1,0,,1,0 +25588,6824234,Brooklyn,Bedford-Stuyvesant,40.6897,-73.93078,Private room,50,4,1,0.05,1,0 +25589,146219213,Queens,Forest Hills,40.716770000000004,-73.83398000000001,Private room,65,1,17,0.78,1,188 +25590,126626529,Manhattan,Hell's Kitchen,40.76093,-73.99103000000001,Private room,120,1,112,5.63,2,76 +25591,56656728,Manhattan,Financial District,40.7105,-74.00641,Private room,95,1,20,0.88,5,0 +25592,76729714,Manhattan,Harlem,40.79971,-73.95175,Private room,70,4,3,0.13,1,0 +25593,4376320,Brooklyn,Gowanus,40.68003,-73.99039,Entire home/apt,192,2,1,0.05,1,0 +25594,13730809,Brooklyn,East New York,40.66402,-73.8979,Private room,60,7,22,0.98,3,68 +25595,6503786,Brooklyn,Bushwick,40.69467,-73.91444,Entire home/apt,175,4,1,0.04,1,188 +25596,71097702,Brooklyn,Park Slope,40.68107,-73.97876,Entire home/apt,295,30,50,2.48,2,208 +25597,126844198,Manhattan,Harlem,40.8255,-73.94119,Private room,50,3,2,0.09,1,0 +25598,8115522,Brooklyn,Williamsburg,40.708290000000005,-73.94369,Private room,66,3,4,0.18,1,0 +25599,74937144,Manhattan,Hell's Kitchen,40.76163,-73.99008,Entire home/apt,226,2,73,3.35,1,56 +25600,45596004,Manhattan,Murray Hill,40.746,-73.9777,Private room,250,2,0,,1,0 +25601,3288449,Manhattan,East Village,40.72868,-73.98244,Private room,530,4,7,0.31,1,0 +25602,19901294,Queens,Astoria,40.76255,-73.92347,Entire home/apt,106,4,1,0.04,1,0 +25603,146342086,Brooklyn,Bushwick,40.700140000000005,-73.9215,Private room,40,5,48,2.08,1,341 +25604,146345538,Brooklyn,Bushwick,40.693490000000004,-73.91173,Shared room,34,30,2,0.11,5,365 +25605,9203654,Brooklyn,Crown Heights,40.67754,-73.94305,Entire home/apt,140,3,0,,1,0 +25606,25753120,Brooklyn,Crown Heights,40.6685,-73.94842,Private room,50,5,0,,2,0 +25607,1097753,Manhattan,Harlem,40.81065,-73.9457,Private room,125,3,34,1.52,1,178 +25608,146348944,Manhattan,Chelsea,40.74283,-73.99843,Entire home/apt,245,5,48,2.22,1,46 +25609,100835599,Manhattan,East Harlem,40.79099,-73.945,Entire home/apt,400,1,0,,2,364 +25610,146358413,Brooklyn,East New York,40.67585,-73.87307,Entire home/apt,65,2,53,2.37,1,2 +25611,101720883,Manhattan,Harlem,40.819320000000005,-73.94675,Private room,65,2,24,1.07,1,0 +25612,90237608,Queens,Ridgewood,40.69883,-73.90077,Private room,50,1,2,0.09,1,0 +25613,145693309,Brooklyn,Prospect-Lefferts Gardens,40.66202,-73.96195,Entire home/apt,80,16,0,,1,0 +25614,28234612,Brooklyn,Bedford-Stuyvesant,40.680170000000004,-73.93674,Private room,150,1,0,,1,0 +25615,16441670,Manhattan,Upper West Side,40.79738,-73.96332,Private room,77,1,52,2.41,1,198 +25616,133130315,Manhattan,Hell's Kitchen,40.76538,-73.98711,Private room,99,4,6,0.27,6,140 +25617,121869120,Manhattan,Midtown,40.75257,-73.96853,Entire home/apt,127,1,0,,1,0 +25618,145727343,Queens,Jamaica,40.68379,-73.79186,Private room,39,1,15,0.66,3,164 +25619,6725061,Manhattan,Lower East Side,40.71856,-73.98753,Private room,69,4,0,,1,0 +25620,12552750,Manhattan,Chelsea,40.73982,-74.0011,Entire home/apt,195,1,71,3.2,1,12 +25621,111451636,Manhattan,Washington Heights,40.84545,-73.94171999999999,Private room,50,2,1,0.05,1,0 +25622,135337934,Queens,Queens Village,40.70807,-73.73059,Entire home/apt,99,2,15,0.67,2,90 +25623,23972036,Manhattan,Harlem,40.82325,-73.95121999999999,Private room,75,4,10,0.44,1,0 +25624,11418466,Brooklyn,Williamsburg,40.70994,-73.94866999999999,Private room,89,2,50,2.35,1,246 +25625,146472361,Manhattan,Nolita,40.7212,-73.99463,Entire home/apt,265,5,87,3.79,1,118 +25626,138770550,Brooklyn,Crown Heights,40.67052,-73.93444000000001,Entire home/apt,400,3,19,1.03,3,97 +25627,80099199,Manhattan,Financial District,40.707440000000005,-74.01521,Entire home/apt,160,4,32,3.1,1,39 +25628,39657176,Manhattan,East Harlem,40.8027,-73.9398,Shared room,75,7,1,0.04,1,0 +25629,146504288,Brooklyn,Williamsburg,40.711209999999994,-73.95079,Entire home/apt,175,2,3,0.27,1,0 +25630,5190439,Brooklyn,Bushwick,40.701409999999996,-73.92368,Private room,55,1,9,0.4,1,0 +25631,2610288,Brooklyn,Crown Heights,40.66543,-73.95439,Entire home/apt,105,2,55,2.47,1,18 +25632,25043341,Manhattan,Flatiron District,40.73969,-73.98962,Entire home/apt,495,1,43,1.91,1,343 +25633,141027957,Brooklyn,Cypress Hills,40.690059999999995,-73.86917,Entire home/apt,34,2,93,4.07,2,247 +25634,15787004,Brooklyn,Bushwick,40.69467,-73.92433,Private room,0,2,16,0.71,5,0 +25635,1188096,Manhattan,Midtown,40.757509999999996,-73.96464,Entire home/apt,233,90,0,,1,365 +25636,10471351,Manhattan,Upper East Side,40.76834,-73.95647,Private room,85,30,11,0.55,1,305 +25637,54401544,Manhattan,Lower East Side,40.71898,-73.98472,Private room,133,2,1,0.05,1,0 +25638,1526757,Brooklyn,Bedford-Stuyvesant,40.685759999999995,-73.9456,Private room,70,2,57,2.54,3,324 +25639,1526757,Brooklyn,Bedford-Stuyvesant,40.68609,-73.9448,Private room,70,2,45,1.96,3,350 +25640,1526757,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94566,Private room,60,2,60,2.62,3,355 +25641,166634,Brooklyn,Brownsville,40.66114,-73.91258,Entire home/apt,300,2,11,0.57,5,51 +25642,2789221,Brooklyn,Williamsburg,40.70743,-73.96786,Entire home/apt,150,2,8,0.35,1,0 +25643,3013248,Brooklyn,Bedford-Stuyvesant,40.691990000000004,-73.95908,Private room,72,1,1,0.04,1,0 +25644,146620661,Manhattan,Upper East Side,40.77985,-73.94624,Entire home/apt,200,5,4,0.18,1,0 +25645,59442523,Brooklyn,Flatbush,40.6531,-73.96330999999999,Entire home/apt,80,1,2,0.09,2,0 +25646,3283373,Brooklyn,Fort Greene,40.68867,-73.97192,Private room,74,7,3,0.25,1,49 +25647,30805991,Manhattan,West Village,40.73514,-74.00647,Entire home/apt,190,3,2,0.09,1,0 +25648,89501678,Manhattan,East Village,40.72104,-73.97991,Private room,78,1,8,0.35,2,0 +25649,24530399,Manhattan,West Village,40.73453,-74.00238,Entire home/apt,250,2,2,0.09,1,0 +25650,64065593,Manhattan,Midtown,40.75172,-73.97211999999999,Private room,198,2,9,0.4,13,263 +25651,58391491,Queens,East Elmhurst,40.76546,-73.87201,Entire home/apt,220,1,5,0.22,5,0 +25652,87951927,Manhattan,Upper West Side,40.80046,-73.96598,Private room,75,1,5,0.22,1,0 +25653,11478902,Brooklyn,Brooklyn Heights,40.694390000000006,-73.99396,Entire home/apt,110,2,1,0.04,1,0 +25654,146675319,Bronx,Mount Hope,40.85031,-73.90101999999999,Entire home/apt,105,1,23,1.02,3,6 +25655,146677115,Queens,Astoria,40.76437,-73.91937,Entire home/apt,250,3,3,0.16,1,1 +25656,81287,Brooklyn,Williamsburg,40.71012,-73.96462,Private room,150,1,39,1.72,1,266 +25657,104927746,Staten Island,Concord,40.59669,-74.08645,Private room,32,4,45,2.09,7,333 +25658,54501105,Manhattan,East Village,40.73055,-73.98928000000001,Entire home/apt,260,3,24,3.35,2,26 +25659,100836839,Manhattan,Midtown,40.749829999999996,-73.98646,Private room,70,5,1,0.05,1,0 +25660,19537518,Manhattan,Harlem,40.822390000000006,-73.95437,Entire home/apt,115,3,5,0.24,1,0 +25661,137838298,Queens,Jamaica,40.68156,-73.76844,Private room,80,1,19,0.85,2,177 +25662,79896285,Brooklyn,Bushwick,40.69961,-73.92132,Private room,50,4,0,,1,0 +25663,57630325,Brooklyn,Flatbush,40.65265,-73.96559,Private room,47,1,18,0.8,1,0 +25664,11723764,Brooklyn,Williamsburg,40.70791,-73.93876999999999,Entire home/apt,97,1,2,0.09,1,0 +25665,90429772,Manhattan,East Village,40.727270000000004,-73.98801,Private room,95,2,26,1.14,2,1 +25666,146776990,Brooklyn,East Flatbush,40.65286,-73.93209,Private room,35,30,3,0.16,4,342 +25667,90153911,Manhattan,Harlem,40.822790000000005,-73.95215999999999,Private room,65,2,2,0.09,1,0 +25668,95572265,Brooklyn,Bedford-Stuyvesant,40.67966,-73.9283,Private room,45,3,4,0.21,2,342 +25669,131490584,Brooklyn,Clinton Hill,40.68557,-73.96056,Private room,60,4,0,,1,0 +25670,23262657,Queens,Forest Hills,40.71645,-73.85035,Private room,99,1,3,0.14,2,0 +25671,48573053,Queens,Queens Village,40.70414,-73.74418,Private room,35,4,0,,1,363 +25672,146812160,Queens,Flushing,40.760690000000004,-73.83338,Entire home/apt,150,1,19,0.83,1,0 +25673,58231083,Manhattan,Morningside Heights,40.80389,-73.96540999999999,Private room,50,2,2,0.09,1,0 +25674,59432400,Manhattan,Harlem,40.81916,-73.94561999999999,Private room,50,4,20,0.9,2,3 +25675,39927670,Manhattan,Upper East Side,40.77531,-73.95165,Entire home/apt,151,6,2,0.09,1,0 +25676,146823994,Queens,Rego Park,40.73086,-73.85663000000001,Private room,44,2,12,0.53,1,0 +25677,105074140,Queens,Flushing,40.75472,-73.80417,Private room,38,1,66,3.5,4,0 +25678,138765458,Manhattan,East Harlem,40.79674,-73.94674,Entire home/apt,325,6,15,0.68,1,156 +25679,146871946,Manhattan,Upper East Side,40.7774,-73.96066,Entire home/apt,300,1,0,,1,0 +25680,53821850,Brooklyn,Williamsburg,40.70834,-73.94717,Entire home/apt,139,1,115,5.06,2,67 +25681,28190733,Bronx,Kingsbridge,40.88883,-73.90046,Entire home/apt,175,1,10,0.54,1,0 +25682,93376283,Manhattan,Hell's Kitchen,40.76638,-73.99079,Entire home/apt,168,2,4,0.2,1,0 +25683,49989254,Manhattan,Midtown,40.74635,-73.98103,Entire home/apt,250,1,0,,1,0 +25684,11827970,Manhattan,Chelsea,40.7382,-73.99844,Entire home/apt,250,3,17,0.76,1,0 +25685,37512618,Brooklyn,East New York,40.6705,-73.87850999999999,Entire home/apt,100,2,6,0.26,1,0 +25686,44336290,Brooklyn,Greenpoint,40.72917,-73.95589,Entire home/apt,160,2,3,0.13,1,0 +25687,145801588,Manhattan,Midtown,40.75287,-73.97352,Private room,449,3,0,,4,357 +25688,21058022,Brooklyn,Williamsburg,40.70682,-73.94594000000001,Private room,90,4,3,0.16,3,0 +25689,19336311,Manhattan,West Village,40.72958,-74.00379000000001,Entire home/apt,250,14,0,,1,0 +25690,145219249,Brooklyn,Crown Heights,40.66592,-73.94266,Entire home/apt,350,2,0,,1,0 +25691,11523011,Manhattan,Morningside Heights,40.80731,-73.96579,Private room,55,14,3,0.19,2,164 +25692,131950694,Brooklyn,Williamsburg,40.71475,-73.94197,Private room,70,1,1,0.04,1,0 +25693,6918423,Brooklyn,Fort Greene,40.68481,-73.9694,Entire home/apt,275,3,62,2.78,1,310 +25694,133924344,Manhattan,East Harlem,40.792,-73.94521999999999,Private room,79,1,68,3.02,1,0 +25695,66798529,Staten Island,St. George,40.63975,-74.07774,Private room,70,31,0,,1,365 +25696,146959142,Manhattan,Washington Heights,40.84617,-73.93781,Private room,40,3,10,0.46,1,0 +25697,146963216,Brooklyn,Prospect Heights,40.680479999999996,-73.9654,Entire home/apt,105,2,61,2.72,1,239 +25698,125692898,Brooklyn,Bushwick,40.70463,-73.92428000000001,Private room,70,2,2,0.09,1,0 +25699,41121514,Queens,Ridgewood,40.71239,-73.90517,Entire home/apt,60,6,0,,1,0 +25700,3376018,Brooklyn,Brooklyn Heights,40.69093,-73.9929,Private room,64,7,6,0.7,1,0 +25701,146988248,Queens,Whitestone,40.78881,-73.82882,Entire home/apt,250,2,6,0.27,1,311 +25702,145878384,Brooklyn,East Flatbush,40.65441,-73.93009,Private room,75,3,11,0.52,7,330 +25703,39041380,Manhattan,Financial District,40.71015,-74.01281,Entire home/apt,275,2,0,,1,0 +25704,146675319,Bronx,Fordham,40.85217,-73.90239,Entire home/apt,100,2,2,1.05,3,26 +25705,82889379,Bronx,Wakefield,40.89756,-73.85639,Private room,50,1,130,5.76,4,148 +25706,166634,Brooklyn,Brownsville,40.66255,-73.91342,Private room,49,2,33,1.55,5,0 +25707,3053304,Brooklyn,Brooklyn Heights,40.699690000000004,-73.99393,Entire home/apt,125,2,0,,1,0 +25708,120762452,Manhattan,Murray Hill,40.74844,-73.97713,Entire home/apt,130,30,1,0.05,50,364 +25709,123805373,Brooklyn,Brooklyn Heights,40.693000000000005,-73.99774000000001,Entire home/apt,118,1,2,0.09,1,0 +25710,120762452,Manhattan,Murray Hill,40.7482,-73.97525,Entire home/apt,150,30,4,0.28,50,333 +25711,1488713,Manhattan,Lower East Side,40.71902,-73.99027,Entire home/apt,300,3,33,1.44,1,58 +25712,166634,Brooklyn,Brownsville,40.660340000000005,-73.91416,Private room,49,2,6,2.2,5,191 +25713,5462007,Brooklyn,Crown Heights,40.66941,-73.93849,Entire home/apt,245,4,8,0.43,1,5 +25714,147059964,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95877,Private room,60,1,23,1.01,3,0 +25715,45623372,Brooklyn,Williamsburg,40.71358,-73.96421,Entire home/apt,160,7,4,0.18,1,0 +25716,131647128,Manhattan,Upper West Side,40.7744,-73.9874,Entire home/apt,275,30,21,1.26,25,318 +25717,16401899,Manhattan,East Harlem,40.78998,-73.946,Entire home/apt,120,1,61,2.67,1,1 +25718,15723130,Brooklyn,Williamsburg,40.7138,-73.94001,Entire home/apt,150,3,8,0.35,1,9 +25719,116758734,Manhattan,Inwood,40.87085,-73.9183,Private room,59,4,19,0.84,1,0 +25720,8130515,Manhattan,East Village,40.72547,-73.98315,Entire home/apt,150,2,2,0.09,1,0 +25721,4114004,Manhattan,Chelsea,40.748470000000005,-74.00033,Entire home/apt,154,2,3,0.13,1,0 +25722,4983469,Brooklyn,Boerum Hill,40.68796,-73.98783,Entire home/apt,174,3,5,0.23,1,0 +25723,21307389,Manhattan,Financial District,40.70949,-74.01438,Entire home/apt,250,30,22,1.0,1,81 +25724,147092207,Manhattan,Upper West Side,40.7723,-73.98222,Entire home/apt,200,2,3,0.13,1,2 +25725,147094537,Bronx,Concourse Village,40.83206,-73.91969,Shared room,60,1,2,0.09,1,0 +25726,2208374,Brooklyn,Bushwick,40.70068,-73.92211,Private room,85,3,3,0.13,2,281 +25727,4033648,Brooklyn,Greenpoint,40.729420000000005,-73.95121999999999,Entire home/apt,120,4,9,0.4,1,10 +25728,5305576,Manhattan,Hell's Kitchen,40.76704,-73.98484,Entire home/apt,115,60,5,0.42,1,76 +25729,127756959,Brooklyn,East Flatbush,40.638259999999995,-73.93186,Private room,47,4,21,0.93,2,320 +25730,4530544,Manhattan,Lower East Side,40.72153,-73.98765,Entire home/apt,150,3,28,1.25,1,1 +25731,3519805,Brooklyn,Greenpoint,40.728159999999995,-73.95528,Entire home/apt,140,2,4,0.19,1,0 +25732,6745095,Brooklyn,Crown Heights,40.66925,-73.92663,Private room,65,2,81,3.61,1,64 +25733,126626529,Manhattan,Hell's Kitchen,40.76121,-73.99053,Private room,140,3,116,5.7,2,82 +25734,127756959,Brooklyn,East Flatbush,40.639720000000004,-73.93234,Private room,47,4,27,1.19,2,317 +25735,1261893,Brooklyn,Greenpoint,40.72085,-73.94131999999999,Entire home/apt,100,2,5,0.23,1,0 +25736,147148796,Manhattan,Hell's Kitchen,40.75613,-73.99785,Shared room,70,1,0,,1,15 +25737,147184528,Queens,South Ozone Park,40.66789,-73.79196999999999,Entire home/apt,62,1,53,2.36,1,178 +25738,6699943,Manhattan,Lower East Side,40.72103,-73.98434,Private room,188,2,2,0.09,1,0 +25739,11573901,Brooklyn,Williamsburg,40.711,-73.95827,Entire home/apt,185,2,1,0.04,1,0 +25740,64065593,Manhattan,Midtown,40.753,-73.97364,Private room,252,2,3,0.16,13,327 +25741,147210078,Brooklyn,Flatbush,40.65108,-73.95416999999999,Private room,44,2,38,1.67,4,0 +25742,24323380,Brooklyn,Bedford-Stuyvesant,40.69315,-73.9565,Entire home/apt,180,3,1,0.05,1,0 +25743,142398188,Brooklyn,Bedford-Stuyvesant,40.692679999999996,-73.93054000000001,Private room,50,5,1,0.04,1,6 +25744,40042311,Manhattan,Murray Hill,40.746990000000004,-73.9777,Entire home/apt,799,5,1,0.09,1,359 +25745,10768717,Brooklyn,Greenpoint,40.7324,-73.95091,Entire home/apt,180,2,49,2.18,1,60 +25746,147256218,Manhattan,NoHo,40.72788,-73.9939,Entire home/apt,180,2,18,0.79,1,0 +25747,145802745,Brooklyn,Borough Park,40.6357,-74.00508,Private room,170,5,16,0.7,1,354 +25748,47267079,Manhattan,Murray Hill,40.74838,-73.97544,Entire home/apt,186,7,9,0.41,1,0 +25749,25157246,Manhattan,Midtown,40.75212,-73.96975,Private room,82,30,0,,2,326 +25750,76829914,Queens,Astoria,40.76398,-73.91974,Private room,90,5,2,0.09,1,83 +25751,147118920,Manhattan,East Harlem,40.80924,-73.93873,Entire home/apt,172,2,63,2.78,1,0 +25752,6757221,Brooklyn,Williamsburg,40.707390000000004,-73.94726,Private room,60,6,3,0.14,2,254 +25753,1641537,Brooklyn,Greenpoint,40.72462,-73.94072,Private room,0,2,12,0.53,2,0 +25754,82189528,Manhattan,Washington Heights,40.84131,-73.93574,Private room,52,2,1,0.05,1,0 +25755,147339774,Brooklyn,Crown Heights,40.669779999999996,-73.94454,Entire home/apt,184,2,40,1.78,1,0 +25756,75109,Manhattan,Chinatown,40.71618,-73.99225,Entire home/apt,145,4,13,0.6,1,68 +25757,129242503,Brooklyn,Bedford-Stuyvesant,40.69189,-73.95936,Private room,65,2,1,0.04,1,0 +25758,3449385,Manhattan,Upper West Side,40.79273,-73.97592,Entire home/apt,100,4,32,1.51,1,0 +25759,73498715,Brooklyn,Bushwick,40.69677,-73.91404,Entire home/apt,74,7,9,0.42,1,61 +25760,7941058,Manhattan,Lower East Side,40.721,-73.99146999999999,Entire home/apt,200,2,3,0.15,1,38 +25761,5637573,Manhattan,Greenwich Village,40.7328,-73.99899,Entire home/apt,175,1,39,1.75,1,55 +25762,105462484,Manhattan,East Harlem,40.78784,-73.94931,Entire home/apt,130,1,4,0.18,1,0 +25763,147210078,Brooklyn,East Flatbush,40.65226,-73.95166,Private room,48,2,60,2.63,4,9 +25764,1524708,Manhattan,Inwood,40.85927,-73.92966,Private room,200,3,1,0.05,1,0 +25765,76104209,Manhattan,Financial District,40.7074,-74.00151,Entire home/apt,205,30,1,0.11,33,332 +25766,31884399,Queens,Laurelton,40.68507,-73.73342,Entire home/apt,90,15,0,,1,180 +25767,123849755,Brooklyn,Bedford-Stuyvesant,40.68303,-73.95430999999999,Entire home/apt,130,3,58,2.63,1,295 +25768,5291405,Brooklyn,Clinton Hill,40.68153,-73.9605,Private room,149,2,5,0.22,1,0 +25769,145801588,Manhattan,Midtown,40.7538,-73.97355,Private room,389,3,3,0.13,4,357 +25770,42951815,Manhattan,East Village,40.723209999999995,-73.98326999999999,Private room,250,2,0,,1,0 +25771,145801588,Manhattan,Midtown,40.75371,-73.97225999999999,Entire home/apt,699,3,3,0.2,4,324 +25772,3490097,Brooklyn,Fort Greene,40.68703,-73.97575,Private room,67,3,1,0.05,1,0 +25773,2409706,Manhattan,Murray Hill,40.74969,-73.97936999999999,Entire home/apt,135,2,5,0.23,1,0 +25774,9704072,Brooklyn,Bushwick,40.70763,-73.92223,Private room,90,1,0,,1,0 +25775,89501678,Manhattan,East Village,40.72132,-73.98068,Private room,83,2,1,0.04,2,0 +25776,76765350,Brooklyn,Bedford-Stuyvesant,40.68163,-73.95558,Private room,37,7,15,0.7,2,71 +25777,128227275,Manhattan,Harlem,40.82736,-73.95291999999999,Private room,65,1,41,1.84,1,81 +25778,10132166,Brooklyn,Williamsburg,40.70838,-73.94645,Entire home/apt,0,5,3,0.15,1,73 +25779,17090405,Brooklyn,Crown Heights,40.67502,-73.95732,Entire home/apt,100,1,2,0.09,1,0 +25780,100829279,Manhattan,Midtown,40.760329999999996,-73.96946,Entire home/apt,270,1,154,6.78,3,234 +25781,146776990,Brooklyn,East Flatbush,40.65312,-73.93413000000001,Private room,35,30,5,0.22,4,263 +25782,147495455,Manhattan,Kips Bay,40.7433,-73.9807,Entire home/apt,120,20,0,,1,0 +25783,147500609,Brooklyn,Bedford-Stuyvesant,40.685390000000005,-73.93638,Private room,67,2,23,1.03,1,0 +25784,90748448,Manhattan,Upper East Side,40.774390000000004,-73.95489,Private room,85,2,2,0.09,1,0 +25785,147528441,Manhattan,Upper East Side,40.77205,-73.95128000000001,Entire home/apt,225,2,3,0.13,1,0 +25786,25518844,Brooklyn,Greenpoint,40.72992,-73.96,Private room,200,2,11,0.51,1,179 +25787,145801588,Manhattan,Midtown,40.75328,-73.97193,Private room,389,3,2,0.09,4,357 +25788,57641560,Brooklyn,Williamsburg,40.714529999999996,-73.9551,Entire home/apt,182,5,62,2.83,2,28 +25789,124860677,Queens,Flushing,40.75777,-73.81172,Private room,54,2,65,2.88,6,361 +25790,1521723,Manhattan,Lower East Side,40.7147,-73.98994,Entire home/apt,400,3,5,0.24,1,26 +25791,147567811,Queens,Astoria,40.77326,-73.92676999999999,Private room,50,4,1,0.05,1,0 +25792,5137740,Manhattan,Upper West Side,40.78696,-73.97293,Shared room,125,3,0,,1,0 +25793,34379227,Queens,Sunnyside,40.74317,-73.92532,Entire home/apt,140,3,40,1.76,1,42 +25794,86327101,Brooklyn,Bedford-Stuyvesant,40.68173,-73.91342,Private room,0,1,93,4.28,6,176 +25795,86327101,Brooklyn,Bedford-Stuyvesant,40.682790000000004,-73.9117,Private room,0,1,95,4.37,6,232 +25796,86327101,Brooklyn,Bedford-Stuyvesant,40.68258,-73.91284,Private room,0,1,95,4.35,6,222 +25797,147579400,Manhattan,Greenwich Village,40.73056,-73.99356999999999,Entire home/apt,99,1,0,,1,0 +25798,3363377,Brooklyn,Williamsburg,40.70942,-73.94896999999999,Private room,105,2,48,2.14,2,46 +25799,108894035,Manhattan,Lower East Side,40.720079999999996,-73.98786,Entire home/apt,139,5,12,0.56,1,25 +25800,60908748,Brooklyn,Bushwick,40.700109999999995,-73.92241,Private room,100,1,132,5.88,2,74 +25801,725286,Brooklyn,Brighton Beach,40.576879999999996,-73.95308,Entire home/apt,130,3,22,0.99,1,134 +25802,76104209,Manhattan,Upper West Side,40.77068,-73.98674,Entire home/apt,229,30,0,,33,364 +25803,139119594,Manhattan,Harlem,40.82232,-73.93647,Private room,77,3,92,4.1,1,200 +25804,21227711,Brooklyn,Bushwick,40.69543,-73.92324,Private room,75,4,4,0.18,1,0 +25805,5731144,Manhattan,Washington Heights,40.84877,-73.93821,Entire home/apt,65,4,0,,1,0 +25806,21921891,Brooklyn,Williamsburg,40.71215,-73.95177,Private room,80,5,1,0.04,1,0 +25807,147668954,Brooklyn,Fort Hamilton,40.61765,-74.03406,Private room,125,9,0,,1,365 +25808,10414799,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93864,Private room,65,3,15,0.67,2,109 +25809,21328739,Manhattan,Kips Bay,40.74266,-73.9792,Entire home/apt,220,7,36,1.65,1,91 +25810,2203563,Brooklyn,Williamsburg,40.711940000000006,-73.94892,Private room,150,2,0,,1,0 +25811,8671974,Brooklyn,Bedford-Stuyvesant,40.68919,-73.9335,Private room,60,2,1,0.04,1,365 +25812,454274,Brooklyn,Williamsburg,40.70789,-73.96755,Entire home/apt,180,5,12,0.57,1,0 +25813,44170535,Manhattan,Chelsea,40.7459,-73.99866999999999,Private room,165,3,4,0.18,2,0 +25814,99791908,Manhattan,East Village,40.72945,-73.98203000000001,Private room,75,1,3,0.21,2,0 +25815,141012246,Manhattan,Harlem,40.81793,-73.94017,Private room,100,1,9,0.4,2,90 +25816,101533618,Brooklyn,Sunset Park,40.65198,-74.00763,Entire home/apt,120,2,7,0.5,1,0 +25817,147688555,Brooklyn,Bedford-Stuyvesant,40.68459,-73.95732,Entire home/apt,179,3,52,2.39,1,185 +25818,147695010,Queens,St. Albans,40.696059999999996,-73.77311,Private room,125,1,0,,1,179 +25819,147402286,Manhattan,Murray Hill,40.75035,-73.97907,Shared room,49,3,93,4.13,2,26 +25820,147402286,Manhattan,Murray Hill,40.74946,-73.9785,Shared room,49,3,103,4.56,2,22 +25821,30549225,Brooklyn,Bushwick,40.701879999999996,-73.92062,Private room,90,4,17,0.76,1,0 +25822,147210078,Brooklyn,Flatbush,40.649229999999996,-73.95273,Private room,50,2,26,1.16,4,0 +25823,147683950,Manhattan,Hell's Kitchen,40.761540000000004,-73.99306,Entire home/apt,499,2,16,0.75,1,240 +25824,104836016,Brooklyn,Kensington,40.64179,-73.97941,Private room,36,2,13,0.59,4,231 +25825,100069033,Brooklyn,Cypress Hills,40.68185,-73.88128,Entire home/apt,5000,2,4,0.18,1,0 +25826,6655660,Manhattan,Lower East Side,40.71798,-73.98418000000001,Entire home/apt,275,2,17,0.76,1,171 +25827,147694745,Brooklyn,Flatbush,40.65099,-73.96283000000001,Entire home/apt,80,60,46,2.05,1,54 +25828,147762665,Bronx,Wakefield,40.88698,-73.86049,Private room,35,2,16,1.55,3,156 +25829,2807926,Brooklyn,Prospect Heights,40.679840000000006,-73.9703,Private room,90,2,0,,1,0 +25830,142590597,Brooklyn,East New York,40.67262,-73.87391,Private room,50,1,3,0.13,6,179 +25831,29093058,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93975,Private room,250,2,0,,2,173 +25832,29093058,Brooklyn,Bedford-Stuyvesant,40.693659999999994,-73.93794,Private room,140,1,0,,2,173 +25833,72938614,Manhattan,Morningside Heights,40.80627,-73.96354000000001,Shared room,125,4,0,,1,0 +25834,109016966,Brooklyn,East Flatbush,40.646409999999996,-73.94955999999999,Private room,50,1,20,0.88,1,244 +25835,147796643,Manhattan,Upper West Side,40.78875,-73.9679,Private room,150,2,5,0.22,1,0 +25836,133410060,Brooklyn,Bushwick,40.69455,-73.92715,Private room,59,1,3,0.13,1,0 +25837,77944774,Brooklyn,Windsor Terrace,40.64931,-73.9733,Entire home/apt,85,3,12,0.53,1,5 +25838,147803075,Brooklyn,Bedford-Stuyvesant,40.68568,-73.91923,Private room,60,30,5,0.23,1,178 +25839,147810437,Manhattan,East Village,40.726009999999995,-73.97674,Private room,110,7,30,1.34,2,82 +25840,133843931,Brooklyn,Greenpoint,40.72546,-73.95558,Private room,37,1,62,2.8,2,359 +25841,48608026,Brooklyn,Greenpoint,40.7228,-73.94538,Private room,90,1,3,0.14,1,0 +25842,18281493,Manhattan,Kips Bay,40.73963,-73.98165999999999,Entire home/apt,180,5,8,0.41,1,0 +25843,3894387,Brooklyn,South Slope,40.6628,-73.98349,Entire home/apt,111,2,1,0.04,1,0 +25844,73228035,Brooklyn,East Flatbush,40.660470000000004,-73.93743,Private room,150,3,0,,2,0 +25845,8502406,Brooklyn,Crown Heights,40.67183,-73.95277,Entire home/apt,135,7,12,0.79,1,0 +25846,90665647,Manhattan,Chinatown,40.71405,-73.99291,Private room,120,3,35,1.65,1,337 +25847,136267788,Brooklyn,Williamsburg,40.720279999999995,-73.94152,Entire home/apt,241,5,4,0.18,1,0 +25848,83948710,Brooklyn,Bushwick,40.701,-73.91986,Private room,69,1,77,3.45,2,178 +25849,147858863,Brooklyn,Bedford-Stuyvesant,40.68797,-73.9592,Private room,150,1,0,,1,0 +25850,140492812,Brooklyn,Bushwick,40.705870000000004,-73.92358,Entire home/apt,94,2,13,0.57,2,0 +25851,10774442,Manhattan,Upper East Side,40.76644,-73.95486,Entire home/apt,130,3,3,0.13,1,0 +25852,73597988,Manhattan,Upper West Side,40.799820000000004,-73.96058000000001,Entire home/apt,135,2,1,0.04,1,0 +25853,133130315,Manhattan,Hell's Kitchen,40.76506,-73.98567,Private room,70,3,6,0.41,6,225 +25854,20369715,Manhattan,Hell's Kitchen,40.7646,-73.98980999999999,Entire home/apt,290,2,1,0.04,1,0 +25855,33204787,Brooklyn,Gowanus,40.68289,-73.98532,Private room,95,2,21,0.94,1,0 +25856,118251350,Brooklyn,Williamsburg,40.711220000000004,-73.94346999999999,Private room,53,3,4,0.18,1,0 +25857,2766813,Brooklyn,Bedford-Stuyvesant,40.68939,-73.95418000000001,Private room,58,3,5,0.22,1,0 +25858,24333820,Brooklyn,Crown Heights,40.6753,-73.96282,Private room,80,3,2,0.09,1,0 +25859,146776990,Brooklyn,East Flatbush,40.65286,-73.93370999999999,Private room,33,30,1,1.0,4,245 +25860,137522531,Queens,Flushing,40.75607,-73.80964,Entire home/apt,198,7,4,0.18,7,365 +25861,147952036,Staten Island,Rosebank,40.61353,-74.06724,Private room,55,2,88,4.73,1,114 +25862,2793254,Brooklyn,Bushwick,40.70408,-73.92045,Private room,150,3,2,0.8,3,169 +25863,13287929,Manhattan,East Harlem,40.78602,-73.94977,Private room,100,3,67,3.06,1,34 +25864,48980919,Brooklyn,Bedford-Stuyvesant,40.67753,-73.91688,Entire home/apt,129,4,97,5.02,1,211 +25865,10457196,Manhattan,Little Italy,40.719229999999996,-73.99573000000001,Entire home/apt,138,31,4,0.28,11,93 +25866,147972663,Brooklyn,East Flatbush,40.6485,-73.93855,Private room,40,3,58,2.57,3,306 +25867,139957134,Queens,Arverne,40.597359999999995,-73.80029,Private room,35,1,60,2.73,3,348 +25868,139957134,Queens,Arverne,40.59754,-73.79949,Private room,50,1,53,2.35,3,249 +25869,147972663,Brooklyn,East Flatbush,40.64991,-73.93715999999999,Private room,40,3,52,2.34,3,298 +25870,10077970,Brooklyn,Williamsburg,40.714620000000004,-73.96263,Private room,57,1,3,0.13,1,0 +25871,21464170,Manhattan,Midtown,40.7531,-73.97085,Private room,115,1,33,1.49,1,0 +25872,64887490,Queens,Flushing,40.75895,-73.79196,Entire home/apt,80,2,86,3.83,1,115 +25873,1181366,Brooklyn,Greenpoint,40.72246,-73.94768,Entire home/apt,210,7,0,,1,0 +25874,22129776,Manhattan,Hell's Kitchen,40.76363,-73.98746,Entire home/apt,379,1,3,0.14,3,365 +25875,35242969,Brooklyn,Bedford-Stuyvesant,40.6824,-73.91315,Private room,48,4,7,0.31,1,2 +25876,106241822,Manhattan,Washington Heights,40.851859999999995,-73.9305,Private room,37,3,5,0.22,1,0 +25877,10933267,Manhattan,Inwood,40.86306,-73.92896,Entire home/apt,175,2,38,1.69,1,244 +25878,143315723,Brooklyn,Cypress Hills,40.68201,-73.89425,Entire home/apt,50,30,34,1.51,1,234 +25879,63510347,Manhattan,Upper West Side,40.79412,-73.96806,Entire home/apt,173,10,0,,1,0 +25880,129602851,Bronx,Unionport,40.83121,-73.8483,Entire home/apt,450,2,1,0.06,2,342 +25881,76104209,Manhattan,Upper East Side,40.780190000000005,-73.95857,Entire home/apt,225,30,0,,33,365 +25882,14469743,Bronx,Pelham Bay,40.84711,-73.83039000000001,Entire home/apt,80,2,66,3.04,1,56 +25883,76104209,Manhattan,Midtown,40.7506,-73.97104,Entire home/apt,176,30,0,,33,365 +25884,13804630,Brooklyn,Flatbush,40.640679999999996,-73.9641,Entire home/apt,165,6,0,,1,0 +25885,41947929,Brooklyn,Crown Heights,40.67749,-73.94854000000001,Private room,125,1,32,1.5,2,351 +25886,76104209,Manhattan,Gramercy,40.73638,-73.98089,Entire home/apt,239,30,0,,33,242 +25887,1393089,Brooklyn,Prospect-Lefferts Gardens,40.663340000000005,-73.94651,Entire home/apt,130,4,17,0.78,1,110 +25888,130239329,Manhattan,East Harlem,40.79633,-73.94819,Entire home/apt,104,30,3,0.16,1,212 +25889,979144,Manhattan,Chelsea,40.74419,-73.99913000000001,Entire home/apt,225,1,102,4.55,1,33 +25890,76104209,Manhattan,Financial District,40.708659999999995,-74.01385,Entire home/apt,178,30,1,0.12,33,327 +25891,5402500,Brooklyn,Clinton Hill,40.68541,-73.96188000000001,Entire home/apt,114,12,27,1.19,1,13 +25892,14120985,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94538,Entire home/apt,130,5,7,0.52,2,4 +25893,46943042,Brooklyn,Park Slope,40.67192,-73.97444,Entire home/apt,230,3,12,0.59,1,354 +25894,139357580,Queens,Ditmars Steinway,40.77281,-73.90295,Private room,60,1,3,0.13,8,129 +25895,148074786,Bronx,Morrisania,40.82627,-73.90803000000001,Private room,65,2,0,,1,0 +25896,8366847,Manhattan,Greenwich Village,40.72733,-73.9958,Private room,150,2,1,0.14,1,0 +25897,33899564,Manhattan,East Village,40.72405,-73.97747,Entire home/apt,150,4,6,0.26,1,0 +25898,35875227,Manhattan,East Village,40.7293,-73.98283,Private room,100,3,1,0.04,1,0 +25899,113152267,Bronx,University Heights,40.85657,-73.90915,Private room,55,1,2,0.11,1,0 +25900,35431795,Brooklyn,Fort Greene,40.69122,-73.96976,Private room,75,3,14,0.64,1,35 +25901,147814925,Manhattan,Greenwich Village,40.733000000000004,-73.99413,Entire home/apt,3900,30,7,0.32,1,180 +25902,3879852,Brooklyn,Williamsburg,40.712790000000005,-73.94662,Private room,65,3,1,0.05,1,0 +25903,148124467,Manhattan,Harlem,40.8098,-73.9441,Private room,89,5,34,1.58,1,86 +25904,148130354,Brooklyn,Bedford-Stuyvesant,40.68591,-73.9249,Entire home/apt,159,3,36,1.6,2,2 +25905,48581,Manhattan,Little Italy,40.71946,-73.99761,Entire home/apt,170,4,0,,1,0 +25906,5717334,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95203000000001,Entire home/apt,115,3,5,0.22,2,0 +25907,30490972,Queens,Ridgewood,40.69748,-73.90127,Entire home/apt,125,3,5,0.22,1,0 +25908,23075166,Manhattan,West Village,40.73465,-74.00139,Entire home/apt,325,2,0,,1,0 +25909,87690038,Brooklyn,Crown Heights,40.67538,-73.93379,Entire home/apt,165,3,2,0.16,4,263 +25910,148148402,Brooklyn,Clinton Hill,40.69167,-73.96927,Entire home/apt,129,2,93,4.15,1,43 +25911,121809482,Manhattan,Midtown,40.75052,-73.97259,Entire home/apt,350,3,3,0.14,2,0 +25912,83786650,Manhattan,Upper East Side,40.76128,-73.96236,Entire home/apt,90,30,5,0.25,8,306 +25913,76104209,Manhattan,Gramercy,40.73741,-73.98096,Entire home/apt,216,30,0,,33,364 +25914,1457680,Bronx,City Island,40.84964,-73.78716999999999,Private room,50,2,45,2.04,1,118 +25915,72581005,Manhattan,East Village,40.727920000000005,-73.98288000000001,Private room,110,15,6,0.27,1,0 +25916,54081046,Brooklyn,East Flatbush,40.63524,-73.94158,Private room,55,4,18,1.44,1,82 +25917,21405142,Manhattan,Financial District,40.705009999999994,-74.00707,Entire home/apt,300,2,21,1.14,1,0 +25918,137129564,Queens,Flushing,40.75224,-73.81505,Private room,49,1,77,3.43,4,362 +25919,32689791,Manhattan,West Village,40.73632,-74.00601,Entire home/apt,158,14,4,0.18,1,0 +25920,8717872,Brooklyn,Bushwick,40.6997,-73.91305,Entire home/apt,97,3,6,0.33,1,2 +25921,35959348,Manhattan,Upper West Side,40.78965,-73.96993,Entire home/apt,95,1,9,0.48,1,70 +25922,148237535,Brooklyn,Canarsie,40.64162,-73.90890999999999,Private room,100,3,2,0.1,4,364 +25923,148241246,Manhattan,Harlem,40.82444,-73.95111999999999,Private room,65,3,69,3.16,1,57 +25924,834806,Brooklyn,Crown Heights,40.66592,-73.95319,Entire home/apt,100,7,3,0.13,1,0 +25925,11975404,Brooklyn,Bushwick,40.70088,-73.91835999999999,Private room,50,3,22,0.98,2,0 +25926,15647614,Brooklyn,Williamsburg,40.71647,-73.95333000000001,Private room,75,1,45,2.01,2,84 +25927,124554019,Brooklyn,Crown Heights,40.67225,-73.93326,Private room,55,2,4,0.18,2,0 +25928,148261815,Manhattan,Harlem,40.80171,-73.95121999999999,Private room,55,10,6,0.28,1,156 +25929,2462590,Brooklyn,Bushwick,40.69084,-73.92048,Entire home/apt,175,1,47,2.2,2,336 +25930,25124335,Manhattan,East Village,40.72987,-73.98283,Private room,100,3,3,0.14,1,0 +25931,6520264,Brooklyn,Williamsburg,40.71702,-73.95732,Private room,75,2,1,0.05,1,0 +25932,7138847,Brooklyn,Bedford-Stuyvesant,40.67865,-73.94230999999999,Private room,75,1,4,0.25,3,0 +25933,8138665,Brooklyn,Bushwick,40.706309999999995,-73.91922,Private room,35,7,2,0.09,1,364 +25934,148278552,Brooklyn,Greenpoint,40.73365,-73.95354,Private room,53,2,0,,1,0 +25935,38344324,Manhattan,Upper East Side,40.77237,-73.95275,Private room,95,2,42,1.9,1,0 +25936,7077897,Manhattan,Gramercy,40.738040000000005,-73.98178,Entire home/apt,175,5,3,0.13,1,65 +25937,9399634,Manhattan,Chinatown,40.71365,-73.9973,Entire home/apt,180,5,11,0.56,1,171 +25938,90893179,Queens,College Point,40.77773,-73.83237,Private room,55,1,51,2.29,1,65 +25939,118751485,Queens,Ditmars Steinway,40.77786,-73.90819,Private room,79,7,36,1.64,1,48 +25940,139623237,Brooklyn,Flatlands,40.61802,-73.92866,Private room,30,2,13,0.59,1,292 +25941,1424332,Manhattan,Washington Heights,40.83902,-73.93766,Entire home/apt,50,3,2,0.09,1,0 +25942,75587530,Manhattan,Upper East Side,40.78079,-73.95499000000001,Private room,150,10,0,,2,0 +25943,61391963,Manhattan,Upper East Side,40.77832,-73.95657,Entire home/apt,133,30,7,0.47,91,281 +25944,12147356,Brooklyn,Greenpoint,40.73227,-73.95149,Entire home/apt,496,3,20,0.92,1,313 +25945,40712207,Manhattan,Chelsea,40.7416,-74.00081999999999,Private room,75,30,2,0.17,1,188 +25946,147810437,Manhattan,East Village,40.7244,-73.97731999999999,Private room,100,1,33,1.62,2,124 +25947,148391880,Brooklyn,Flatlands,40.62724,-73.93043,Entire home/apt,1700,1,0,,1,365 +25948,103223295,Manhattan,Chinatown,40.71611,-73.99405,Private room,80,25,8,0.36,1,0 +25949,135904657,Manhattan,Harlem,40.80482,-73.95107,Private room,123,2,54,2.44,2,0 +25950,65258155,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92706,Private room,30,2,9,0.4,1,0 +25951,148284545,Brooklyn,Carroll Gardens,40.68225,-73.99116,Private room,50,1,12,0.54,1,0 +25952,21531418,Brooklyn,Williamsburg,40.70929,-73.95381,Entire home/apt,195,2,9,0.44,1,0 +25953,57049951,Manhattan,Harlem,40.81394,-73.95334,Private room,69,2,13,0.62,9,112 +25954,141052003,Queens,Jamaica,40.68503,-73.77983,Entire home/apt,150,2,45,2.01,4,153 +25955,31306976,Brooklyn,Bedford-Stuyvesant,40.69155,-73.93661999999999,Private room,49,7,5,0.23,1,56 +25956,148444212,Brooklyn,East Flatbush,40.65413,-73.94846,Entire home/apt,95,4,55,2.64,1,22 +25957,148444929,Staten Island,St. George,40.64119,-74.08369,Entire home/apt,109,2,87,5.08,1,100 +25958,148448869,Manhattan,Washington Heights,40.84492,-73.93890999999999,Entire home/apt,105,2,109,4.86,1,261 +25959,100833625,Queens,Long Island City,40.75401,-73.92013,Private room,49,1,4,0.19,1,0 +25960,12776165,Brooklyn,Park Slope,40.67884,-73.97493,Entire home/apt,120,3,7,0.35,1,0 +25961,57049951,Manhattan,Harlem,40.81225,-73.95196999999999,Private room,69,2,10,0.47,9,365 +25962,42783238,Manhattan,East Harlem,40.79383,-73.94968,Private room,85,1,98,4.39,2,0 +25963,19141737,Manhattan,Upper East Side,40.77037,-73.95734,Entire home/apt,120,6,0,,1,0 +25964,2687071,Brooklyn,Brooklyn Heights,40.6904,-73.99376,Entire home/apt,135,3,21,0.95,1,15 +25965,37627534,Brooklyn,Bedford-Stuyvesant,40.68953,-73.93186999999999,Private room,49,2,1,0.05,1,0 +25966,128517263,Brooklyn,Bushwick,40.69855,-73.93670999999999,Private room,100,11,13,0.6,3,0 +25967,147647020,Manhattan,Nolita,40.72372,-73.99318000000001,Entire home/apt,250,2,0,,1,2 +25968,147210078,Brooklyn,East Flatbush,40.64861,-73.94983,Private room,48,2,9,0.4,4,4 +25969,3731184,Manhattan,Inwood,40.8608,-73.9281,Entire home/apt,87,2,5,0.23,1,20 +25970,148544231,Manhattan,Morningside Heights,40.808409999999995,-73.95625,Private room,85,3,13,0.59,2,61 +25971,38561955,Brooklyn,Bedford-Stuyvesant,40.68566,-73.92551999999999,Private room,48,1,2,0.09,1,0 +25972,104116468,Manhattan,Harlem,40.80227,-73.9579,Private room,90,3,55,2.52,1,66 +25973,11300359,Brooklyn,Bushwick,40.69954,-73.93579,Private room,60,5,6,0.27,1,13 +25974,20866359,Brooklyn,Crown Heights,40.67542,-73.95107,Private room,50,2,82,3.7,1,30 +25975,47343420,Brooklyn,Kensington,40.64493,-73.97327,Private room,85,2,61,2.71,2,61 +25976,48153723,Brooklyn,Williamsburg,40.7079,-73.96609000000001,Private room,70,7,8,0.43,1,0 +25977,134264127,Brooklyn,Park Slope,40.67454,-73.9841,Entire home/apt,125,2,77,3.43,1,243 +25978,107455767,Queens,Rosedale,40.65429,-73.73432,Private room,45,30,34,1.52,5,90 +25979,23254455,Brooklyn,Clinton Hill,40.6866,-73.96761,Private room,88,2,0,,1,0 +25980,96064985,Manhattan,Upper East Side,40.779540000000004,-73.94788,Private room,89,3,9,1.03,1,18 +25981,107455767,Queens,Rosedale,40.65251,-73.7365,Private room,42,7,21,0.94,5,297 +25982,19848344,Brooklyn,Flatbush,40.6473,-73.96245,Private room,50,2,10,0.97,1,178 +25983,139879568,Queens,Long Island City,40.764829999999996,-73.94073,Private room,120,1,63,2.81,6,356 +25984,148590716,Manhattan,Inwood,40.86339,-73.92045,Private room,60,2,75,3.37,1,332 +25985,51447852,Manhattan,Upper West Side,40.77998,-73.98218,Shared room,62,1,10,0.45,1,0 +25986,76104209,Manhattan,Midtown,40.7507,-73.97086,Entire home/apt,175,30,0,,33,365 +25987,46120364,Brooklyn,Williamsburg,40.70926,-73.95515,Private room,76,1,9,0.4,1,310 +25988,23861295,Brooklyn,East Flatbush,40.6435,-73.94011,Private room,47,1,4,2.73,1,63 +25989,76104209,Manhattan,Midtown,40.75161,-73.97017,Entire home/apt,175,30,0,,33,365 +25990,28337487,Manhattan,Washington Heights,40.84962,-73.94011,Private room,60,1,11,0.49,1,0 +25991,1180050,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95151,Entire home/apt,200,4,2,0.09,1,0 +25992,76104209,Manhattan,Midtown,40.75145,-73.97010999999999,Entire home/apt,175,30,0,,33,365 +25993,148663392,Queens,Richmond Hill,40.70305,-73.82687,Private room,55,2,10,0.46,1,6 +25994,76104209,Manhattan,Midtown,40.7518,-73.97074,Entire home/apt,220,30,0,,33,365 +25995,42154911,Manhattan,Harlem,40.82992,-73.94563000000001,Shared room,60,2,1,0.04,2,0 +25996,80897490,Brooklyn,Bedford-Stuyvesant,40.69099,-73.92657,Private room,50,1,1,0.04,1,0 +25997,76104209,Manhattan,Midtown,40.74978,-73.96977,Entire home/apt,175,30,0,,33,365 +25998,36170398,Manhattan,Harlem,40.82673,-73.94633,Entire home/apt,75,30,0,,1,32 +25999,94404356,Brooklyn,Williamsburg,40.71972,-73.94337,Entire home/apt,250,3,3,0.14,2,0 +26000,6394738,Brooklyn,Bushwick,40.705740000000006,-73.92289,Private room,85,1,14,0.62,2,0 +26001,2739935,Manhattan,Greenwich Village,40.72894,-74.00018,Entire home/apt,174,3,4,0.19,1,0 +26002,148686255,Brooklyn,Bushwick,40.704840000000004,-73.92645999999999,Private room,100,4,6,0.28,1,0 +26003,148689791,Manhattan,East Village,40.72475,-73.97788,Entire home/apt,260,30,0,,1,330 +26004,148692231,Queens,Rego Park,40.715340000000005,-73.85828000000001,Private room,75,3,20,0.95,1,48 +26005,9663247,Brooklyn,Bedford-Stuyvesant,40.68371,-73.9405,Entire home/apt,160,3,20,0.94,1,136 +26006,24417778,Brooklyn,Bedford-Stuyvesant,40.67927,-73.94758,Private room,88,4,1,0.05,1,0 +26007,148705627,Queens,Ridgewood,40.701409999999996,-73.90290999999999,Entire home/apt,170,18,14,0.64,2,141 +26008,312276,Brooklyn,Williamsburg,40.7112,-73.95886,Private room,95,2,24,1.08,1,0 +26009,73066515,Brooklyn,Bedford-Stuyvesant,40.693870000000004,-73.94688000000001,Private room,62,3,51,2.3,3,108 +26010,146030957,Queens,Astoria,40.77028,-73.92112,Private room,45,5,20,0.89,1,16 +26011,51501835,Manhattan,Hell's Kitchen,40.76354,-73.99283,Entire home/apt,100,30,3,0.21,31,270 +26012,148681567,Queens,Sunnyside,40.74823,-73.91456,Private room,60,4,1,0.05,1,0 +26013,22066372,Manhattan,Upper East Side,40.76401,-73.95929,Entire home/apt,211,7,29,1.34,1,237 +26014,28999705,Brooklyn,Park Slope,40.680640000000004,-73.97657,Entire home/apt,100,3,4,0.18,1,0 +26015,12680161,Brooklyn,Boerum Hill,40.68418,-73.98373000000001,Entire home/apt,250,1,97,4.48,2,39 +26016,32502340,Manhattan,Harlem,40.8055,-73.95478,Entire home/apt,125,6,8,0.36,1,0 +26017,10388662,Manhattan,Chinatown,40.71515,-73.99863,Entire home/apt,145,4,13,0.63,1,86 +26018,4594132,Brooklyn,Greenpoint,40.72056,-73.94118,Private room,116,2,58,2.82,1,0 +26019,6423626,Manhattan,Harlem,40.80044,-73.95139,Private room,50,28,12,0.62,1,39 +26020,35645777,Brooklyn,Bedford-Stuyvesant,40.68251,-73.94102,Entire home/apt,175,2,18,0.81,1,0 +26021,76104209,Manhattan,Midtown,40.75014,-73.97001,Entire home/apt,175,30,0,,33,365 +26022,94713722,Queens,St. Albans,40.69044,-73.75489,Entire home/apt,246,2,3,0.15,4,359 +26023,4982459,Brooklyn,Flatbush,40.65247,-73.96399,Private room,44,3,1,0.05,3,0 +26024,148812441,Manhattan,East Village,40.72653,-73.98539,Entire home/apt,99,1,33,1.5,1,269 +26025,128692351,Bronx,Highbridge,40.84101,-73.92626,Private room,62,2,75,3.34,5,351 +26026,82889379,Bronx,Wakefield,40.898109999999996,-73.85543,Private room,55,1,156,7.0,4,318 +26027,57049951,Manhattan,Harlem,40.813159999999996,-73.95176,Private room,69,2,2,0.1,9,365 +26028,21066170,Manhattan,Harlem,40.80605,-73.94889,Entire home/apt,150,5,14,0.67,1,16 +26029,83786650,Manhattan,Upper East Side,40.76141,-73.96265,Entire home/apt,125,50,0,,8,176 +26030,69034515,Brooklyn,Bushwick,40.70353,-73.9288,Private room,80,4,0,,1,0 +26031,128692351,Bronx,Highbridge,40.841840000000005,-73.92535,Private room,42,2,92,4.11,5,311 +26032,128692351,Bronx,Highbridge,40.841029999999996,-73.92701,Private room,42,2,62,2.76,5,1 +26033,8833868,Manhattan,Washington Heights,40.856629999999996,-73.93564,Private room,50,4,22,1.46,1,42 +26034,57049951,Manhattan,Harlem,40.814040000000006,-73.95233,Private room,69,2,15,0.7,9,116 +26035,148861123,Manhattan,Hell's Kitchen,40.7631,-73.99133,Entire home/apt,145,2,77,3.62,1,194 +26036,2650097,Brooklyn,Sunset Park,40.662729999999996,-73.99384,Entire home/apt,58,4,10,0.45,1,0 +26037,148897644,Brooklyn,Crown Heights,40.6679,-73.93975999999999,Private room,65,1,0,,1,0 +26038,106863782,Manhattan,Washington Heights,40.85148,-73.9301,Entire home/apt,175,2,2,0.09,1,0 +26039,11525399,Manhattan,Harlem,40.817170000000004,-73.93856,Private room,100,6,21,0.96,1,87 +26040,52287004,Manhattan,Hell's Kitchen,40.763659999999994,-73.99096,Entire home/apt,135,2,65,3.04,1,59 +26041,1020539,Manhattan,East Village,40.7263,-73.98432,Private room,120,1,2,0.28,2,0 +26042,30536963,Brooklyn,Bushwick,40.6958,-73.91362,Private room,49,2,71,3.22,1,3 +26043,49154612,Brooklyn,Williamsburg,40.71823,-73.94093000000001,Private room,48,2,3,0.14,1,0 +26044,148958163,Bronx,Wakefield,40.89685,-73.85382,Shared room,55,1,0,,1,0 +26045,1911615,Manhattan,Chelsea,40.74641,-74.0051,Entire home/apt,435,3,3,0.14,2,0 +26046,148960265,Manhattan,Marble Hill,40.87618,-73.91266,Private room,93,2,7,0.32,3,0 +26047,94713722,Queens,St. Albans,40.68998,-73.75477,Private room,60,2,23,1.23,4,0 +26048,69546339,Brooklyn,Bushwick,40.702459999999995,-73.92416999999999,Private room,42,4,6,0.27,2,0 +26049,48404386,Queens,Rego Park,40.72684,-73.86409,Private room,40,4,0,,1,0 +26050,106555852,Manhattan,East Harlem,40.797109999999996,-73.93255,Private room,88,2,34,1.53,1,86 +26051,44459590,Brooklyn,Bushwick,40.70015,-73.93951,Shared room,85,1,0,,1,0 +26052,24796602,Brooklyn,Crown Heights,40.67262,-73.92534,Private room,60,2,41,1.88,4,320 +26053,83948710,Brooklyn,Bushwick,40.70256,-73.92094,Private room,58,1,79,3.56,2,178 +26054,46253884,Brooklyn,Canarsie,40.62944,-73.89678,Entire home/apt,90,2,73,3.71,1,318 +26055,148960265,Manhattan,Marble Hill,40.87519,-73.91245,Private room,65,2,5,0.23,3,112 +26056,5990565,Brooklyn,Bedford-Stuyvesant,40.683609999999994,-73.93883000000001,Private room,76,3,6,0.27,1,0 +26057,2648270,Brooklyn,Bedford-Stuyvesant,40.68462,-73.93724,Entire home/apt,74,4,1,0.05,1,0 +26058,27534002,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93191,Private room,95,1,87,3.91,1,31 +26059,19043884,Brooklyn,Greenpoint,40.72591,-73.95645,Entire home/apt,210,2,103,4.62,1,268 +26060,149071197,Manhattan,Harlem,40.8204,-73.93867,Private room,50,1,2,0.09,1,0 +26061,106894257,Queens,Astoria,40.77039,-73.92626,Entire home/apt,93,7,1,0.05,1,0 +26062,69992824,Brooklyn,Bedford-Stuyvesant,40.68181,-73.94214000000001,Entire home/apt,250,1,3,0.14,1,51 +26063,10538579,Manhattan,West Village,40.734759999999994,-74.00477,Entire home/apt,269,4,10,0.47,1,10 +26064,145872703,Manhattan,Harlem,40.81968,-73.95831,Private room,70,1,36,1.65,2,169 +26065,29516183,Brooklyn,Greenpoint,40.73595,-73.95423000000001,Private room,90,5,3,0.14,1,0 +26066,149112195,Manhattan,Midtown,40.753409999999995,-73.98504,Entire home/apt,422,5,58,2.6,1,339 +26067,302544,Manhattan,Chinatown,40.71569,-73.99421,Entire home/apt,250,2,9,0.46,1,41 +26068,30384194,Queens,Astoria,40.75713,-73.91334,Private room,99,3,1,0.05,2,328 +26069,6805463,Manhattan,Harlem,40.81561,-73.95393,Private room,65,4,59,2.71,1,44 +26070,141052003,Queens,Jamaica,40.68496,-73.78194,Private room,55,1,5,0.27,4,155 +26071,3607821,Manhattan,East Village,40.72553,-73.98012,Entire home/apt,149,2,5,0.23,1,0 +26072,6383939,Queens,Astoria,40.763040000000004,-73.90785,Private room,45,21,9,0.56,1,58 +26073,77750223,Bronx,Clason Point,40.81645,-73.86355,Private room,40,3,10,0.46,2,156 +26074,11589542,Brooklyn,Greenpoint,40.72228,-73.94816999999999,Private room,135,2,2,0.09,1,0 +26075,149147829,Bronx,Concourse Village,40.832570000000004,-73.91245,Shared room,45,1,0,,1,0 +26076,7913159,Manhattan,Washington Heights,40.845659999999995,-73.93998,Entire home/apt,75,3,3,0.14,1,0 +26077,29766155,Manhattan,Harlem,40.800990000000006,-73.95105,Entire home/apt,200,1,0,,1,0 +26078,1143503,Brooklyn,Windsor Terrace,40.65457,-73.97511999999999,Entire home/apt,145,3,1,0.05,1,0 +26079,45935256,Manhattan,Kips Bay,40.742940000000004,-73.98137,Entire home/apt,160,1,5,0.23,1,0 +26080,28341776,Brooklyn,Park Slope,40.68117,-73.97785,Private room,100,3,81,3.67,2,42 +26081,148737806,Queens,Rosedale,40.6622,-73.73135,Private room,58,1,45,2.02,2,84 +26082,28341776,Brooklyn,Park Slope,40.68265,-73.97754,Private room,120,3,5,0.23,2,0 +26083,12972780,Queens,Astoria,40.7623,-73.91645,Private room,80,2,26,1.18,2,364 +26084,149184623,Manhattan,Washington Heights,40.83636,-73.94487,Private room,65,2,81,3.8,1,11 +26085,87024253,Brooklyn,Prospect Heights,40.67935,-73.9723,Entire home/apt,115,2,7,0.32,1,0 +26086,76104209,Manhattan,Upper East Side,40.77981,-73.96030999999999,Entire home/apt,220,30,0,,33,334 +26087,76104209,Manhattan,Upper East Side,40.78098,-73.95854,Entire home/apt,225,30,0,,33,315 +26088,95416322,Queens,Forest Hills,40.7281,-73.84886,Entire home/apt,100,2,18,0.82,1,0 +26089,76104209,Manhattan,Upper East Side,40.78015,-73.95852,Entire home/apt,225,30,0,,33,346 +26090,76227113,Manhattan,Morningside Heights,40.802459999999996,-73.95971999999999,Entire home/apt,245,2,57,2.58,1,54 +26091,149249049,Brooklyn,Crown Heights,40.67785,-73.95085999999999,Entire home/apt,80,2,85,3.94,1,272 +26092,25718914,Brooklyn,Prospect-Lefferts Gardens,40.66174,-73.95496,Private room,110,2,43,1.94,2,182 +26093,27601846,Manhattan,Harlem,40.80344,-73.95513000000001,Entire home/apt,183,2,3,0.13,1,37 +26094,149265574,Queens,St. Albans,40.69514,-73.74902,Private room,55,1,97,5.23,1,354 +26095,37038571,Manhattan,Upper West Side,40.797959999999996,-73.97255,Entire home/apt,250,2,1,0.05,1,0 +26096,12099193,Brooklyn,Greenpoint,40.73658,-73.95418000000001,Entire home/apt,275,2,0,,1,0 +26097,1334160,Brooklyn,Prospect Heights,40.67729,-73.96535,Private room,120,5,37,1.71,1,135 +26098,6433797,Manhattan,Chelsea,40.740390000000005,-74.00029,Private room,89,2,1,0.05,1,0 +26099,149294813,Brooklyn,Flatlands,40.62365,-73.93171,Entire home/apt,100,3,17,1.64,1,89 +26100,149296548,Brooklyn,Bushwick,40.696529999999996,-73.91492,Private room,59,3,29,1.3,1,63 +26101,643120,Brooklyn,Williamsburg,40.71591,-73.95513000000001,Private room,50,4,56,2.53,4,8 +26102,74633496,Bronx,University Heights,40.85751,-73.90805,Private room,45,3,12,0.54,5,365 +26103,28589041,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95085,Private room,50,1,1,0.05,2,0 +26104,463061,Queens,Woodhaven,40.69621,-73.8502,Private room,49,2,8,0.51,2,96 +26105,103380674,Manhattan,Harlem,40.818670000000004,-73.95293000000001,Private room,55,2,80,3.6,1,0 +26106,149292557,Queens,Corona,40.75015,-73.85961,Entire home/apt,69,2,166,7.5,2,140 +26107,4732049,Brooklyn,Boerum Hill,40.68592,-73.98181,Entire home/apt,275,1,7,0.43,1,129 +26108,149333702,Manhattan,Washington Heights,40.84381,-73.9385,Entire home/apt,125,2,4,0.19,1,0 +26109,66096509,Manhattan,East Harlem,40.79398,-73.94159,Entire home/apt,300,2,14,0.91,1,179 +26110,127726348,Brooklyn,Greenpoint,40.72917,-73.95130999999999,Entire home/apt,145,30,44,2.07,1,205 +26111,33913938,Manhattan,East Village,40.72945,-73.97986999999999,Entire home/apt,170,30,136,6.18,1,291 +26112,116839989,Queens,Astoria,40.76064,-73.92481,Entire home/apt,95,30,48,2.97,5,217 +26113,76104209,Manhattan,Upper East Side,40.771229999999996,-73.95040999999999,Entire home/apt,243,30,0,,33,284 +26114,116839989,Manhattan,East Village,40.73105,-73.98195,Entire home/apt,150,30,48,3.03,5,199 +26115,149394434,Queens,Ridgewood,40.7025,-73.90985,Private room,23,1,0,,1,0 +26116,12568104,Brooklyn,Williamsburg,40.71353,-73.96453000000001,Private room,60,3,1,0.06,1,0 +26117,76104209,Manhattan,Financial District,40.708490000000005,-74.01486,Entire home/apt,181,30,0,,33,329 +26118,145878384,Brooklyn,Crown Heights,40.67139,-73.93131,Private room,70,5,11,0.6,7,278 +26119,148544231,Manhattan,Harlem,40.806709999999995,-73.95382,Private room,53,3,5,0.23,2,89 +26120,149409298,Manhattan,Hell's Kitchen,40.76697,-73.99134000000001,Private room,130,1,74,3.32,1,157 +26121,26490904,Manhattan,Midtown,40.761140000000005,-73.97596,Entire home/apt,350,30,1,0.15,4,151 +26122,1939209,Bronx,Claremont Village,40.835,-73.91114,Private room,60,4,30,1.38,2,179 +26123,136104359,Bronx,Concourse,40.83497,-73.9189,Private room,35,7,32,1.68,1,50 +26124,42419832,Queens,Astoria,40.76271,-73.92213000000001,Entire home/apt,179,3,5,0.23,1,0 +26125,145878384,Brooklyn,Crown Heights,40.67302,-73.93143,Private room,65,4,17,0.76,7,303 +26126,4123240,Brooklyn,Crown Heights,40.67064,-73.9476,Private room,75,4,2,0.09,1,0 +26127,149475464,Brooklyn,Williamsburg,40.70732,-73.94385,Entire home/apt,90,2,13,0.59,1,6 +26128,1651791,Manhattan,West Village,40.73145,-74.00184,Private room,114,1,10,0.47,1,0 +26129,149483822,Queens,Flushing,40.75918,-73.82921999999999,Entire home/apt,111,3,22,0.99,1,96 +26130,148737806,Queens,Rosedale,40.66183,-73.72943000000001,Private room,58,1,65,2.92,2,84 +26131,123370360,Queens,Ditmars Steinway,40.77691,-73.92662,Entire home/apt,95,3,6,0.28,1,15 +26132,36998610,Manhattan,Greenwich Village,40.73127,-73.99939,Entire home/apt,220,1,1,0.05,1,0 +26133,111969257,Brooklyn,Williamsburg,40.71725,-73.9438,Private room,99,5,15,0.71,3,0 +26134,144687507,Brooklyn,Flatbush,40.647059999999996,-73.96056999999999,Private room,93,30,1,0.63,1,0 +26135,35474485,Brooklyn,Williamsburg,40.7069,-73.95371999999999,Private room,55,5,61,2.84,1,53 +26136,137264725,Manhattan,Chinatown,40.713640000000005,-73.99153000000001,Private room,50,1,42,1.91,4,257 +26137,107434423,Manhattan,Kips Bay,40.7451,-73.97915,Entire home/apt,308,30,0,,232,156 +26138,39371342,Brooklyn,Dyker Heights,40.624990000000004,-74.01684,Entire home/apt,150,1,69,3.15,1,127 +26139,87562955,Brooklyn,Bushwick,40.69813,-73.91991,Private room,35,7,1,0.05,1,0 +26140,32626265,Manhattan,Upper East Side,40.78539,-73.95056,Entire home/apt,150,2,13,0.69,1,0 +26141,57160283,Brooklyn,Bedford-Stuyvesant,40.683279999999996,-73.93719,Entire home/apt,75,2,20,0.9,1,0 +26142,84932767,Manhattan,Upper West Side,40.78717,-73.96806,Entire home/apt,150,1,24,1.08,1,27 +26143,149608542,Manhattan,Harlem,40.81643,-73.94041999999999,Private room,65,3,84,3.8,1,205 +26144,38290241,Brooklyn,Greenpoint,40.71986,-73.95344,Entire home/apt,350,6,0,,1,0 +26145,4655461,Brooklyn,Carroll Gardens,40.6802,-73.99739,Entire home/apt,125,1,117,5.31,1,15 +26146,149618690,Bronx,Wakefield,40.90356,-73.84172,Private room,59,1,11,0.5,1,35 +26147,34692684,Manhattan,East Village,40.72737,-73.98815,Private room,140,2,0,,1,0 +26148,141931484,Brooklyn,Canarsie,40.63295,-73.89202,Private room,75,2,19,1.23,3,331 +26149,56391145,Brooklyn,Greenpoint,40.723929999999996,-73.95347,Entire home/apt,184,2,0,,2,0 +26150,45074716,Brooklyn,Bedford-Stuyvesant,40.69211,-73.95496,Entire home/apt,125,1,61,2.83,1,113 +26151,120762452,Manhattan,Murray Hill,40.74814,-73.97554000000001,Entire home/apt,175,30,1,0.09,50,365 +26152,120762452,Manhattan,Murray Hill,40.74844,-73.97694,Entire home/apt,367,30,1,0.09,50,358 +26153,105828086,Brooklyn,Flatbush,40.64108,-73.96378,Private room,75,2,25,1.16,4,0 +26154,149707913,Manhattan,Upper East Side,40.77426,-73.94893,Entire home/apt,80,5,0,,1,0 +26155,7365834,Brooklyn,Brighton Beach,40.58102,-73.95782,Entire home/apt,137,2,2,0.3,5,350 +26156,29867167,Manhattan,Chelsea,40.74821,-74.0018,Private room,95,1,17,0.78,1,0 +26157,23005126,Queens,Holliswood,40.71768,-73.77308000000001,Private room,125,3,0,,1,363 +26158,12374283,Manhattan,East Village,40.724109999999996,-73.97825999999999,Private room,150,3,103,4.71,4,94 +26159,526338,Brooklyn,Bushwick,40.69566,-73.91314,Entire home/apt,115,1,22,1.01,1,0 +26160,84562428,Queens,Forest Hills,40.73715,-73.84792,Private room,45,5,18,0.83,2,80 +26161,125588995,Bronx,Concourse Village,40.82638,-73.92225,Private room,55,1,46,2.16,1,46 +26162,127887992,Brooklyn,Bedford-Stuyvesant,40.69102,-73.94898,Entire home/apt,180,4,2,0.09,1,0 +26163,24639450,Queens,Ridgewood,40.6988,-73.90725,Private room,55,2,0,,1,0 +26164,5582262,Manhattan,East Harlem,40.7954,-73.94926,Private room,99,2,56,2.54,1,14 +26165,13462349,Manhattan,Chelsea,40.7469,-73.99494,Entire home/apt,200,2,40,1.81,1,288 +26166,49700889,Brooklyn,Bedford-Stuyvesant,40.68071,-73.91873000000001,Entire home/apt,70,1,15,0.69,1,0 +26167,2707299,Brooklyn,Carroll Gardens,40.68332,-73.99084,Entire home/apt,125,5,40,1.84,1,88 +26168,15271873,Manhattan,Upper East Side,40.76117,-73.96104,Entire home/apt,150,7,5,0.8,1,25 +26169,41499146,Manhattan,Harlem,40.8062,-73.95528,Entire home/apt,164,2,11,0.51,1,18 +26170,15246227,Queens,Astoria,40.76059,-73.92168000000001,Private room,101,1,0,,1,0 +26171,5278391,Brooklyn,Williamsburg,40.71706,-73.94091,Private room,60,2,3,0.34,2,1 +26172,149867246,Brooklyn,Flatlands,40.62191,-73.93428,Entire home/apt,130,2,35,1.59,2,357 +26173,149864933,Queens,East Elmhurst,40.764,-73.88718,Private room,150,2,0,,1,83 +26174,36920690,Brooklyn,Williamsburg,40.71244,-73.94384000000001,Entire home/apt,114,6,2,0.11,1,0 +26175,13262918,Brooklyn,Williamsburg,40.71075,-73.9564,Entire home/apt,225,2,124,5.71,3,106 +26176,3905466,Brooklyn,Clinton Hill,40.68657,-73.96003,Entire home/apt,250,3,3,0.16,1,0 +26177,104836016,Brooklyn,Kensington,40.64099,-73.98029,Entire home/apt,99,2,32,1.45,4,153 +26178,26390396,Manhattan,Midtown,40.75288,-73.97703,Entire home/apt,209,2,25,1.14,1,0 +26179,127618565,Brooklyn,Bushwick,40.70544,-73.91828000000001,Private room,59,1,90,4.26,1,42 +26180,18213484,Manhattan,Hell's Kitchen,40.766709999999996,-73.98849,Entire home/apt,300,15,8,0.37,1,30 +26181,85016972,Manhattan,Hell's Kitchen,40.76495,-73.9853,Private room,160,3,6,0.27,1,0 +26182,104300362,Queens,East Elmhurst,40.755959999999995,-73.89702,Private room,45,4,17,0.79,1,314 +26183,598896,Brooklyn,Williamsburg,40.71992,-73.96029,Entire home/apt,250,2,3,0.14,2,184 +26184,149962269,Queens,East Elmhurst,40.76381,-73.87748,Private room,60,1,0,,1,359 +26185,34506361,Manhattan,Murray Hill,40.7487,-73.97479,Shared room,120,1,47,2.2,2,365 +26186,16323240,Queens,Sunnyside,40.7448,-73.92364,Private room,47,2,2,0.09,2,0 +26187,68992648,Manhattan,Harlem,40.81888,-73.94345,Private room,53,2,47,2.16,1,0 +26188,50855262,Queens,Elmhurst,40.73612,-73.87822,Private room,55,3,10,0.47,3,0 +26189,142286413,Manhattan,Hell's Kitchen,40.76536,-73.98878,Entire home/apt,225,3,104,4.79,1,34 +26190,75458625,Queens,Sunnyside,40.74722,-73.9186,Private room,78,2,20,0.91,4,365 +26191,15344412,Staten Island,New Springville,40.580909999999996,-74.15485,Private room,52,1,74,3.34,3,78 +26192,150019486,Queens,Kew Gardens,40.70874,-73.82616999999999,Private room,60,2,137,6.27,1,32 +26193,260958,Manhattan,Chinatown,40.71418,-73.99208,Entire home/apt,161,3,92,4.73,3,63 +26194,4079889,Brooklyn,Williamsburg,40.71253,-73.96123,Private room,150,2,0,,1,36 +26195,8207362,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.93746999999999,Private room,60,1,21,0.95,2,82 +26196,150032863,Manhattan,Upper West Side,40.794990000000006,-73.97669,Private room,75,5,2,0.09,1,0 +26197,127345864,Brooklyn,East Flatbush,40.64051,-73.93224000000001,Private room,38,7,37,1.92,4,29 +26198,150038776,Queens,Long Island City,40.76462,-73.9319,Private room,35,1,16,1.37,1,95 +26199,44707578,Manhattan,Harlem,40.81953,-73.95665,Entire home/apt,115,5,0,,1,0 +26200,150111187,Brooklyn,Bedford-Stuyvesant,40.6835,-73.957,Entire home/apt,130,2,51,2.53,1,10 +26201,150044472,Brooklyn,South Slope,40.66163,-73.98265,Entire home/apt,159,2,5,0.26,2,0 +26202,37904015,Manhattan,East Village,40.72413,-73.98216,Private room,83,2,13,0.61,1,0 +26203,10262386,Brooklyn,Park Slope,40.679629999999996,-73.97849000000001,Entire home/apt,225,3,12,0.55,1,47 +26204,5299551,Brooklyn,Park Slope,40.67781,-73.98083000000001,Private room,70,2,7,0.32,1,0 +26205,83798461,Brooklyn,Park Slope,40.67518,-73.98119,Private room,70,1,4,0.18,1,0 +26206,71375344,Manhattan,Harlem,40.81301,-73.94502,Entire home/apt,125,4,9,0.94,1,245 +26207,61391963,Manhattan,Hell's Kitchen,40.761359999999996,-73.99361,Entire home/apt,125,30,6,0.29,91,314 +26208,12584768,Brooklyn,Williamsburg,40.71139,-73.96353,Private room,75,1,0,,1,0 +26209,149722669,Queens,Long Island City,40.76096,-73.93836,Private room,55,4,0,,1,0 +26210,6349846,Manhattan,Lower East Side,40.71881,-73.98378000000001,Entire home/apt,198,2,5,0.23,1,0 +26211,3002665,Brooklyn,Williamsburg,40.71459,-73.94485,Entire home/apt,200,1,17,0.77,2,87 +26212,19058010,Brooklyn,Bushwick,40.69533,-73.9132,Entire home/apt,102,2,10,0.47,1,0 +26213,5761096,Brooklyn,Prospect Heights,40.67556,-73.96427,Private room,80,1,1,0.05,1,0 +26214,30491140,Manhattan,Harlem,40.8292,-73.94742,Private room,350,7,6,0.34,1,0 +26215,130785115,Manhattan,Lower East Side,40.71822,-73.99263,Entire home/apt,140,6,0,,1,0 +26216,3273275,Brooklyn,Williamsburg,40.71967,-73.96001,Entire home/apt,155,2,6,0.27,1,4 +26217,150159094,Brooklyn,Bedford-Stuyvesant,40.69064,-73.93559,Entire home/apt,310,1,77,3.51,1,347 +26218,126466681,Manhattan,Lower East Side,40.719440000000006,-73.99396,Entire home/apt,525,2,47,2.19,1,34 +26219,1961411,Manhattan,Harlem,40.80672,-73.94648000000001,Entire home/apt,200,4,2,0.09,1,0 +26220,41407057,Brooklyn,South Slope,40.66675,-73.988,Entire home/apt,95,2,4,0.19,1,0 +26221,93025114,Brooklyn,Bedford-Stuyvesant,40.67969,-73.93974,Private room,35,3,0,,1,0 +26222,48276935,Brooklyn,Williamsburg,40.71229,-73.95782,Private room,150,1,0,,1,0 +26223,110348515,Brooklyn,Greenpoint,40.72965,-73.95707,Private room,98,2,7,0.34,1,0 +26224,26019828,Manhattan,Hell's Kitchen,40.76078,-73.99683,Private room,79,5,1,0.05,2,0 +26225,128919111,Bronx,Allerton,40.86144,-73.86426999999999,Entire home/apt,79,2,95,4.46,1,225 +26226,31989023,Manhattan,Gramercy,40.73166,-73.98299,Private room,87,3,6,0.27,1,0 +26227,40120855,Manhattan,Murray Hill,40.74943,-73.97945,Entire home/apt,210,2,14,0.64,1,13 +26228,3557641,Manhattan,East Harlem,40.809979999999996,-73.93899,Entire home/apt,150,5,31,1.47,1,24 +26229,12123995,Manhattan,Hell's Kitchen,40.76104,-73.99255,Entire home/apt,260,2,21,1.04,2,222 +26230,20625215,Manhattan,East Harlem,40.80002,-73.94136999999999,Entire home/apt,121,3,10,0.51,1,0 +26231,52950465,Manhattan,Hell's Kitchen,40.7605,-73.99189,Entire home/apt,129,30,1,0.05,12,310 +26232,85722766,Brooklyn,Williamsburg,40.71317,-73.94518000000001,Entire home/apt,90,2,5,0.23,1,157 +26233,878546,Brooklyn,Bedford-Stuyvesant,40.688590000000005,-73.92238,Private room,100,2,8,0.38,1,0 +26234,9215509,Brooklyn,Clinton Hill,40.68939,-73.96474,Entire home/apt,250,5,6,0.28,2,354 +26235,95999344,Brooklyn,Mill Basin,40.60903,-73.91846,Entire home/apt,250,1,5,1.7,1,360 +26236,411697,Brooklyn,Clinton Hill,40.684509999999996,-73.96051999999999,Entire home/apt,225,4,29,2.2,1,43 +26237,22565156,Brooklyn,Crown Heights,40.66689,-73.92806,Private room,45,21,1,0.05,1,44 +26238,9215509,Brooklyn,Clinton Hill,40.69072,-73.96539,Entire home/apt,165,14,4,0.19,2,179 +26239,150304209,Queens,St. Albans,40.6959,-73.75159000000001,Entire home/apt,85,2,59,2.69,1,36 +26240,117492425,Staten Island,St. George,40.645790000000005,-74.08027,Private room,29,4,61,2.81,6,178 +26241,118226205,Brooklyn,Williamsburg,40.71732,-73.94027,Private room,85,3,15,0.7,3,19 +26242,150345311,Brooklyn,Bay Ridge,40.63498,-74.01966,Private room,75,1,39,1.81,1,0 +26243,8245913,Manhattan,Upper West Side,40.78747,-73.96928,Entire home/apt,330,3,0,,1,0 +26244,10220753,Brooklyn,Sunset Park,40.65027,-74.01101,Private room,79,1,35,1.6,2,59 +26245,135904657,Manhattan,Harlem,40.80508,-73.94941999999999,Private room,125,2,70,3.24,2,0 +26246,70932642,Manhattan,Washington Heights,40.83571,-73.94756,Private room,78,2,4,0.28,1,0 +26247,16795575,Queens,Flushing,40.75484,-73.82323000000001,Private room,70,1,0,,2,0 +26248,150420341,Queens,Springfield Gardens,40.66257,-73.76514,Entire home/apt,113,2,55,2.5,1,297 +26249,11638358,Brooklyn,Bedford-Stuyvesant,40.69031,-73.93903,Entire home/apt,370,5,23,1.25,2,171 +26250,1963215,Brooklyn,Carroll Gardens,40.68227,-73.99948,Entire home/apt,150,30,5,0.44,1,79 +26251,139357580,Queens,Ditmars Steinway,40.77156,-73.90521,Private room,60,1,48,2.27,8,128 +26252,92474771,Manhattan,Harlem,40.8233,-73.94461,Private room,65,1,26,1.18,1,0 +26253,22721010,Manhattan,Washington Heights,40.84434,-73.94229,Entire home/apt,103,4,18,0.84,1,0 +26254,7337775,Brooklyn,Crown Heights,40.67394,-73.94991,Private room,60,5,0,,1,0 +26255,79534925,Manhattan,Upper East Side,40.77751,-73.95575,Private room,65,4,10,0.46,1,0 +26256,150482893,Brooklyn,Williamsburg,40.714690000000004,-73.93970999999999,Private room,80,3,2,0.09,1,0 +26257,150489232,Queens,Astoria,40.767590000000006,-73.92463000000001,Private room,50,1,142,6.44,1,115 +26258,63312104,Queens,Flushing,40.74893,-73.82046,Private room,60,1,39,1.79,6,359 +26259,13709292,Manhattan,Murray Hill,40.75091,-73.97596999999999,Entire home/apt,0,3,0,,1,0 +26260,140293912,Brooklyn,Kensington,40.64674,-73.97946999999999,Private room,137,3,5,0.23,3,0 +26261,30347639,Brooklyn,Sunset Park,40.66232,-73.9939,Entire home/apt,150,3,5,0.23,1,83 +26262,3630017,Manhattan,Washington Heights,40.84594,-73.94039000000001,Private room,65,2,0,,1,0 +26263,1566510,Manhattan,Lower East Side,40.71818,-73.99015,Private room,120,1,72,3.38,2,50 +26264,733286,Manhattan,East Village,40.72232,-73.98055,Entire home/apt,225,14,1,0.05,1,0 +26265,71292398,Brooklyn,Bushwick,40.69827,-73.92493,Private room,50,3,2,0.1,1,0 +26266,53953736,Manhattan,Murray Hill,40.745779999999996,-73.97595,Entire home/apt,435,5,7,0.32,1,22 +26267,15487773,Manhattan,Chelsea,40.740629999999996,-73.99998000000001,Private room,100,2,4,0.19,1,0 +26268,67268840,Brooklyn,Sunset Park,40.65157,-74.01089,Entire home/apt,150,5,47,2.26,1,76 +26269,150572903,Staten Island,St. George,40.64123,-74.08169000000001,Private room,85,2,0,,2,356 +26270,147196210,Brooklyn,Bath Beach,40.60303,-73.99596,Private room,69,2,45,2.05,1,324 +26271,76104209,Manhattan,Financial District,40.70903,-74.01401,Entire home/apt,235,30,0,,33,351 +26272,150565606,Queens,Ditmars Steinway,40.77864,-73.91445,Private room,47,1,90,4.13,2,100 +26273,117287,Manhattan,Hell's Kitchen,40.768879999999996,-73.98639,Private room,134,2,1,0.11,3,316 +26274,127726243,Brooklyn,Greenpoint,40.71951,-73.95397,Entire home/apt,200,7,6,0.27,1,0 +26275,33782746,Manhattan,Roosevelt Island,40.76846,-73.94461,Entire home/apt,150,4,1,0.05,1,0 +26276,59974573,Queens,Elmhurst,40.73742,-73.87026999999999,Entire home/apt,99,4,5,0.23,2,5 +26277,143041708,Brooklyn,East Flatbush,40.63568,-73.94745999999999,Private room,70,4,0,,1,88 +26278,100685031,Manhattan,Upper East Side,40.76798,-73.95274,Entire home/apt,148,1,68,3.09,1,98 +26279,150647463,Brooklyn,Bushwick,40.69814,-73.93033,Private room,30,14,2,0.11,2,180 +26280,42486495,Queens,Far Rockaway,40.5975,-73.7397,Entire home/apt,450,7,0,,1,0 +26281,132158770,Manhattan,Morningside Heights,40.814,-73.96228,Entire home/apt,150,2,3,0.14,1,0 +26282,47577509,Manhattan,Roosevelt Island,40.763220000000004,-73.94899000000001,Private room,50,28,0,,1,0 +26283,103477264,Queens,St. Albans,40.70791,-73.75625,Private room,45,1,30,1.37,1,0 +26284,75216989,Queens,Flushing,40.76376,-73.83094,Private room,55,1,40,1.83,4,342 +26285,147059964,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95881,Private room,105,30,8,0.38,3,89 +26286,52768036,Manhattan,East Village,40.72793,-73.98876,Private room,85,1,44,2.01,1,19 +26287,2492369,Brooklyn,Fort Greene,40.691759999999995,-73.97413,Entire home/apt,131,3,9,1.46,1,5 +26288,3574249,Brooklyn,Park Slope,40.66803,-73.97869,Entire home/apt,169,4,6,0.56,1,16 +26289,75248463,Brooklyn,East Flatbush,40.64521,-73.94751,Private room,58,2,9,0.42,4,49 +26290,98416305,Bronx,Belmont,40.85362,-73.8896,Entire home/apt,140,2,71,3.45,1,291 +26291,150761245,Brooklyn,Fort Greene,40.69563,-73.97051,Entire home/apt,200,3,53,2.5,1,75 +26292,25969105,Brooklyn,Bedford-Stuyvesant,40.69081,-73.92679,Private room,120,2,30,1.39,1,13 +26293,149867246,Brooklyn,Flatlands,40.62072,-73.93265,Private room,75,1,1,0.16,2,342 +26294,17921511,Brooklyn,Williamsburg,40.71168,-73.96338,Entire home/apt,99,3,2,0.09,1,0 +26295,42422823,Brooklyn,Bushwick,40.70163,-73.92366,Entire home/apt,120,4,3,0.14,1,0 +26296,105828086,Brooklyn,Flatbush,40.641040000000004,-73.96337,Private room,45,2,45,2.06,4,17 +26297,25774748,Queens,Flushing,40.764070000000004,-73.83051999999999,Private room,89,1,4,0.2,2,179 +26298,150846601,Manhattan,Murray Hill,40.744279999999996,-73.97364,Entire home/apt,186,3,16,0.74,1,0 +26299,150116246,Queens,Astoria,40.75633,-73.92777,Private room,70,3,5,0.24,1,0 +26300,116404073,Queens,Springfield Gardens,40.66648,-73.76286,Entire home/apt,90,1,146,6.87,2,281 +26301,65302026,Brooklyn,Bushwick,40.69686,-73.91431,Private room,35,1,0,,1,0 +26302,49664910,Brooklyn,Clinton Hill,40.69027,-73.96795999999999,Entire home/apt,134,2,17,0.8,1,0 +26303,127292,Queens,Sunnyside,40.74205,-73.92394,Entire home/apt,99,30,7,0.39,1,38 +26304,89715420,Brooklyn,Canarsie,40.64399,-73.89315,Entire home/apt,85,7,11,0.64,1,1 +26305,119828457,Brooklyn,Bushwick,40.68833,-73.90691,Private room,80,3,60,2.79,4,336 +26306,119828457,Brooklyn,Bushwick,40.68868,-73.90598,Private room,45,3,79,3.67,4,312 +26307,119828457,Brooklyn,Bushwick,40.6871,-73.90545999999999,Private room,110,3,26,1.21,4,347 +26308,27070796,Brooklyn,Williamsburg,40.71416,-73.95357,Entire home/apt,139,2,7,0.33,1,37 +26309,150876351,Brooklyn,East Flatbush,40.654540000000004,-73.91569,Entire home/apt,120,1,187,8.75,1,318 +26310,12703148,Manhattan,Upper East Side,40.77406,-73.94788,Entire home/apt,110,2,8,0.38,1,0 +26311,10980826,Manhattan,Theater District,40.75974,-73.98623,Private room,110,1,41,1.87,1,3 +26312,148394958,Manhattan,Harlem,40.828759999999996,-73.94538,Private room,38,8,20,0.97,1,26 +26313,6375186,Brooklyn,Kensington,40.647729999999996,-73.97499,Private room,100,1,28,1.44,1,21 +26314,1378036,Brooklyn,Fort Greene,40.6931,-73.9723,Entire home/apt,250,3,6,0.27,1,0 +26315,50028284,Manhattan,Nolita,40.72234,-73.99625,Private room,110,7,0,,1,0 +26316,7182337,Manhattan,East Village,40.7301,-73.98841,Entire home/apt,199,2,30,1.41,1,34 +26317,150965627,Brooklyn,Bushwick,40.6838,-73.91015,Private room,40,1,8,0.36,1,0 +26318,5335417,Manhattan,Kips Bay,40.74395,-73.98049,Entire home/apt,195,3,9,0.42,1,47 +26319,145858413,Brooklyn,Crown Heights,40.664229999999996,-73.94046999999999,Private room,25,7,0,,1,0 +26320,150993634,Brooklyn,Bushwick,40.68157,-73.90547,Private room,52,2,84,3.93,1,310 +26321,2015914,Brooklyn,Bushwick,40.68949,-73.91763,Private room,75,3,3,0.14,8,352 +26322,52604429,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94688000000001,Entire home/apt,99,90,2,0.18,2,170 +26323,31658722,Brooklyn,Crown Heights,40.67145,-73.93007,Private room,55,5,6,0.28,1,0 +26324,25039950,Brooklyn,Williamsburg,40.711,-73.9387,Private room,54,6,1,0.07,2,0 +26325,12528835,Brooklyn,Bedford-Stuyvesant,40.68909,-73.95281999999999,Private room,90,2,29,1.36,2,167 +26326,61169465,Brooklyn,Bedford-Stuyvesant,40.68475,-73.93589,Private room,50,3,1,0.05,1,0 +26327,75248463,Brooklyn,East Flatbush,40.64434,-73.94635,Private room,53,2,2,0.1,4,54 +26328,75248463,Brooklyn,East Flatbush,40.64516,-73.94751,Private room,59,2,10,0.47,4,41 +26329,13262918,Brooklyn,Williamsburg,40.70982,-73.95602,Private room,99,1,15,0.69,3,12 +26330,10191047,Manhattan,Murray Hill,40.74818,-73.98025,Entire home/apt,195,3,4,0.22,1,0 +26331,147721837,Brooklyn,East New York,40.6661,-73.87469,Entire home/apt,160,3,4,0.18,2,36 +26332,5668108,Manhattan,East Harlem,40.80012,-73.94549,Entire home/apt,250,4,7,0.33,1,0 +26333,38250510,Queens,Elmhurst,40.728590000000004,-73.87276,Entire home/apt,150,2,10,0.46,1,89 +26334,33589349,Queens,Richmond Hill,40.690020000000004,-73.83688000000001,Private room,85,3,0,,1,88 +26335,3461768,Brooklyn,Prospect Heights,40.67525,-73.96408000000001,Private room,45,2,1,0.05,1,0 +26336,117507630,Brooklyn,Crown Heights,40.67171,-73.93273,Entire home/apt,149,5,35,1.81,2,12 +26337,13500687,Brooklyn,Bushwick,40.707840000000004,-73.92054,Private room,60,1,9,0.42,1,81 +26338,151073194,Queens,Flushing,40.726620000000004,-73.80086,Entire home/apt,99,2,95,4.34,1,305 +26339,90878763,Brooklyn,Midwood,40.62518,-73.96316,Private room,65,2,2,0.09,2,0 +26340,2856748,Manhattan,Murray Hill,40.7488,-73.97844,Entire home/apt,225,30,1,1.0,49,311 +26341,151084261,Brooklyn,Williamsburg,40.71772,-73.95059,Private room,79,999,24,1.12,6,249 +26342,151087909,Queens,Flushing,40.73565,-73.81591,Private room,36,1,0,,1,89 +26343,151084261,Brooklyn,Williamsburg,40.71835,-73.94999,Private room,79,30,15,0.69,6,333 +26344,151084261,Brooklyn,Williamsburg,40.71732,-73.95048,Private room,54,30,22,1.01,6,276 +26345,17742578,Brooklyn,Midwood,40.6229,-73.96169,Entire home/apt,79,1,0,,1,0 +26346,4774053,Brooklyn,Greenpoint,40.72588,-73.94530999999999,Entire home/apt,145,3,23,1.06,1,13 +26347,603493,Brooklyn,Park Slope,40.67858,-73.9812,Entire home/apt,300,30,51,2.33,1,75 +26348,151115004,Manhattan,Harlem,40.81248,-73.9526,Private room,58,1,9,3.0,1,248 +26349,109371945,Manhattan,East Village,40.7212,-73.98045,Private room,70,3,2,0.09,1,0 +26350,97118521,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94946,Private room,50,4,5,0.23,1,0 +26351,63312104,Queens,Flushing,40.7469,-73.8179,Private room,55,1,77,3.58,6,365 +26352,151146788,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92958,Entire home/apt,170,3,99,4.79,2,288 +26353,151146788,Brooklyn,Bedford-Stuyvesant,40.690490000000004,-73.93014000000001,Entire home/apt,124,2,91,4.4,2,272 +26354,33923279,Manhattan,Harlem,40.82881,-73.94566,Private room,40,3,6,0.28,2,0 +26355,144857346,Manhattan,Nolita,40.72408,-73.99381,Private room,111,1,51,2.39,3,56 +26356,785283,Queens,Ditmars Steinway,40.77618,-73.91741,Private room,75,2,38,1.81,2,0 +26357,40507331,Manhattan,Nolita,40.72169,-73.9965,Entire home/apt,325,2,8,0.37,1,86 +26358,11392362,Manhattan,Midtown,40.76357,-73.98308,Private room,107,3,133,6.08,1,9 +26359,90531953,Bronx,Concourse,40.824529999999996,-73.92563,Private room,60,1,16,0.74,1,0 +26360,42058671,Brooklyn,Bushwick,40.70073,-73.92913,Private room,60,3,4,0.2,1,0 +26361,1137079,Brooklyn,Bushwick,40.69808,-73.93021999999999,Private room,60,2,76,4.03,1,234 +26362,128490590,Bronx,Mott Haven,40.815529999999995,-73.92453,Entire home/apt,120,2,0,,1,0 +26363,22225802,Manhattan,East Village,40.722359999999995,-73.97756,Entire home/apt,200,5,0,,1,0 +26364,151238818,Manhattan,Upper West Side,40.77867,-73.97914,Private room,135,7,8,0.82,1,363 +26365,45044964,Queens,Queens Village,40.72517,-73.76105,Shared room,41,1,11,0.51,2,125 +26366,34579576,Brooklyn,Fort Greene,40.68805,-73.97563000000001,Entire home/apt,160,2,1,0.05,1,0 +26367,676140,Brooklyn,Bedford-Stuyvesant,40.69321,-73.94207,Private room,80,3,5,0.23,1,0 +26368,15873714,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9413,Private room,100,2,6,0.28,1,39 +26369,151243003,Queens,Bayside,40.76124,-73.76178,Private room,59,1,62,2.91,1,54 +26370,151249486,Bronx,Parkchester,40.840379999999996,-73.85661999999999,Entire home/apt,65,3,12,0.55,1,0 +26371,19202566,Brooklyn,Greenpoint,40.7366,-73.95656,Entire home/apt,225,4,0,,1,159 +26372,19536090,Manhattan,SoHo,40.727090000000004,-74.00447,Private room,175,3,20,1.08,2,239 +26373,16144086,Manhattan,Inwood,40.86039,-73.92663,Entire home/apt,100,3,44,2.3,1,168 +26374,17428620,Brooklyn,Brooklyn Heights,40.69209,-73.99421,Private room,119,2,1,0.05,1,0 +26375,150122503,Brooklyn,Bay Ridge,40.62938,-74.02976,Private room,30,3,0,,1,27 +26376,2506798,Manhattan,Greenwich Village,40.7315,-73.99393,Entire home/apt,400,30,0,,1,90 +26377,151189049,Queens,Ridgewood,40.70863,-73.90249,Private room,32,1,62,2.91,1,0 +26378,151284868,Manhattan,West Village,40.73076,-74.00161999999999,Entire home/apt,245,5,13,0.61,1,50 +26379,17579903,Manhattan,Lower East Side,40.720659999999995,-73.99229,Entire home/apt,700,3,14,0.65,1,258 +26380,105631352,Manhattan,East Village,40.725609999999996,-73.97953000000001,Private room,90,2,41,1.91,3,0 +26381,151291713,Manhattan,Washington Heights,40.85014,-73.93743,Private room,30,1,67,3.07,2,72 +26382,3917497,Manhattan,Financial District,40.70445,-74.01521,Entire home/apt,135,6,10,0.48,1,160 +26383,7557662,Manhattan,Lower East Side,40.71832,-73.99287,Entire home/apt,200,1,15,0.72,1,29 +26384,151293286,Brooklyn,Bedford-Stuyvesant,40.692820000000005,-73.96034,Entire home/apt,120,4,6,0.37,1,0 +26385,66329,Brooklyn,Fort Greene,40.68634,-73.97388000000001,Private room,119,1,14,0.64,2,78 +26386,7608106,Manhattan,Gramercy,40.73247,-73.98297,Entire home/apt,196,2,47,2.26,1,6 +26387,151084261,Brooklyn,Greenpoint,40.71913,-73.95040999999999,Private room,80,30,3,0.14,6,324 +26388,63312104,Queens,Flushing,40.74922,-73.81868,Private room,55,1,41,1.9,6,340 +26389,142268790,Queens,Forest Hills,40.73307,-73.85047,Entire home/apt,88,2,9,0.42,2,54 +26390,97044757,Manhattan,Upper West Side,40.77312,-73.98819,Private room,78,1,11,0.5,2,0 +26391,29248621,Manhattan,Washington Heights,40.844440000000006,-73.93554,Private room,50,5,5,0.29,1,0 +26392,8753700,Manhattan,Hell's Kitchen,40.75994,-73.99073,Entire home/apt,215,2,28,1.28,1,6 +26393,102618751,Brooklyn,East New York,40.65894,-73.8921,Entire home/apt,300,2,24,3.29,1,294 +26394,79345554,Manhattan,Chelsea,40.75058,-73.99582,Entire home/apt,160,60,0,,1,0 +26395,147513,Brooklyn,Gowanus,40.6801,-73.9866,Entire home/apt,250,1,18,0.85,2,0 +26396,14085769,Queens,Maspeth,40.725429999999996,-73.89666,Entire home/apt,125,7,0,,1,0 +26397,51716739,Brooklyn,Bedford-Stuyvesant,40.681709999999995,-73.94471,Entire home/apt,180,2,13,0.73,3,303 +26398,151372422,Manhattan,SoHo,40.72294,-73.99869,Entire home/apt,650,2,3,0.14,1,0 +26399,59795431,Bronx,Williamsbridge,40.88192,-73.86186,Private room,60,1,70,3.55,1,283 +26400,2326517,Manhattan,SoHo,40.72391,-73.9975,Entire home/apt,695,3,0,,1,1 +26401,131647128,Manhattan,Upper West Side,40.77536,-73.98952,Entire home/apt,280,30,9,1.4,25,341 +26402,137586595,Queens,Hollis,40.71455,-73.7613,Entire home/apt,100,1,3,0.14,1,0 +26403,2195090,Brooklyn,Crown Heights,40.67292,-73.94136999999999,Entire home/apt,75,1,2,0.09,1,0 +26404,22194698,Brooklyn,Bedford-Stuyvesant,40.69012,-73.9257,Entire home/apt,135,2,89,4.14,2,139 +26405,6378149,Brooklyn,Bushwick,40.69835,-73.91644000000001,Private room,50,2,57,2.68,3,18 +26406,53179388,Manhattan,Midtown,40.75029,-73.97142,Entire home/apt,175,30,2,0.15,10,161 +26407,24770383,Manhattan,SoHo,40.7215,-73.99894,Private room,80,21,0,,1,0 +26408,18996093,Queens,Little Neck,40.75777,-73.72949,Private room,50,1,6,0.31,5,94 +26409,151421618,Queens,Ozone Park,40.68464,-73.84245,Entire home/apt,130,4,4,0.39,2,145 +26410,33167995,Brooklyn,Crown Heights,40.67071,-73.95381,Private room,70,4,8,0.37,1,6 +26411,18996093,Queens,Douglaston,40.75573,-73.72931,Private room,45,1,17,0.82,5,325 +26412,15569216,Manhattan,Upper West Side,40.78628,-73.97482,Private room,250,2,3,0.2,1,94 +26413,31929860,Manhattan,Hell's Kitchen,40.76181,-73.9905,Private room,155,1,62,2.87,4,307 +26414,9138141,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95262,Entire home/apt,100,1,85,8.95,1,125 +26415,82349344,Brooklyn,Williamsburg,40.709109999999995,-73.95288000000001,Private room,76,2,79,4.56,1,349 +26416,35852743,Brooklyn,Crown Heights,40.67245,-73.94608000000001,Entire home/apt,240,5,57,2.83,1,179 +26417,76450538,Brooklyn,Sunset Park,40.65331,-74.00814,Private room,80,4,0,,1,0 +26418,131638913,Brooklyn,Clinton Hill,40.68428,-73.96526,Private room,35,1,1,0.05,1,0 +26419,6216526,Brooklyn,Greenpoint,40.723859999999995,-73.94085,Private room,50,4,1,0.05,1,0 +26420,65112370,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94417,Private room,90,3,1,0.05,1,0 +26421,15475460,Brooklyn,Greenpoint,40.73465,-73.95314,Private room,65,2,32,1.51,1,70 +26422,150665890,Manhattan,East Village,40.72484,-73.9746,Private room,100,2,0,,1,99 +26423,31244515,Manhattan,Hell's Kitchen,40.76735,-73.98841999999999,Private room,92,3,56,4.65,1,14 +26424,151530017,Manhattan,West Village,40.73427,-74.00798,Private room,425,1,0,,1,125 +26425,100841539,Brooklyn,Bedford-Stuyvesant,40.68873,-73.93881,Private room,58,1,118,5.48,1,21 +26426,40800717,Manhattan,Washington Heights,40.84859,-73.93855,Entire home/apt,85,30,4,0.22,1,0 +26427,78107584,Manhattan,Nolita,40.720909999999996,-73.99531,Entire home/apt,250,2,34,1.61,1,0 +26428,1026622,Brooklyn,Carroll Gardens,40.68343,-73.99821,Entire home/apt,116,7,1,0.05,1,0 +26429,66060459,Brooklyn,Bushwick,40.69648,-73.92742,Entire home/apt,120,2,5,0.23,1,0 +26430,114011720,Manhattan,Upper East Side,40.7844,-73.9485,Private room,70,3,2,0.09,1,0 +26431,151560823,Brooklyn,Brownsville,40.66154,-73.91386999999999,Private room,100,1,3,1.58,1,2 +26432,31605872,Queens,Long Island City,40.76191,-73.93092,Private room,76,2,43,2.02,1,8 +26433,151563968,Manhattan,Financial District,40.70949,-74.00973,Entire home/apt,150,1,103,4.79,1,7 +26434,2575895,Brooklyn,Crown Heights,40.67467,-73.9469,Entire home/apt,100,5,2,0.66,1,0 +26435,63965653,Brooklyn,Bushwick,40.69878,-73.92194,Private room,75,4,2,0.1,1,0 +26436,44170535,Manhattan,Chelsea,40.745940000000004,-73.99829,Entire home/apt,125,3,0,,2,0 +26437,18290840,Brooklyn,Windsor Terrace,40.64816,-73.97279,Entire home/apt,120,15,3,0.16,1,0 +26438,151547086,Bronx,Norwood,40.877590000000005,-73.88459,Private room,42,2,6,0.27,1,62 +26439,48988714,Brooklyn,Williamsburg,40.71209,-73.9571,Entire home/apt,349,1,2,0.14,3,105 +26440,16359827,Manhattan,Financial District,40.704240000000006,-74.01564,Shared room,299,1,0,,1,83 +26441,27187487,Bronx,Belmont,40.854440000000004,-73.88462,Private room,30,3,5,0.23,2,361 +26442,1892493,Brooklyn,Brownsville,40.66819,-73.92394,Private room,70,2,5,0.25,2,46 +26443,55527442,Manhattan,Murray Hill,40.74685,-73.97892,Entire home/apt,1177,3,42,2.03,3,284 +26444,4421545,Manhattan,Hell's Kitchen,40.76892,-73.99016,Private room,110,3,2,0.09,1,0 +26445,151639981,Brooklyn,Williamsburg,40.711009999999995,-73.96217,Private room,65,6,1,0.05,1,0 +26446,151018315,Brooklyn,East New York,40.656040000000004,-73.88426,Private room,30,1,0,,1,174 +26447,126141244,Brooklyn,Bushwick,40.70393,-73.91427,Entire home/apt,120,2,1,0.05,1,0 +26448,145727343,Queens,Jamaica,40.68501,-73.79162,Private room,33,1,7,0.35,3,139 +26449,21891606,Queens,Ridgewood,40.69787,-73.90008,Private room,38,2,4,0.19,1,175 +26450,48638439,Queens,Springfield Gardens,40.66013,-73.77166,Entire home/apt,200,3,23,1.18,2,357 +26451,151671343,Manhattan,Chelsea,40.74881,-73.99375,Entire home/apt,790,2,42,1.99,1,36 +26452,151681101,Manhattan,Midtown,40.75614,-73.96706,Entire home/apt,225,5,30,1.4,1,0 +26453,9232930,Queens,Ditmars Steinway,40.77429,-73.92123000000001,Private room,90,2,8,0.38,1,87 +26454,151683441,Queens,Ditmars Steinway,40.77839,-73.90866,Private room,100,2,1,0.05,1,0 +26455,104450469,Manhattan,SoHo,40.7228,-73.99799,Private room,99,2,35,1.62,2,129 +26456,79105834,Queens,Long Island City,40.755990000000004,-73.93415,Private room,55,1,76,3.56,9,229 +26457,79105834,Queens,Long Island City,40.75571,-73.9338,Private room,55,1,54,2.54,9,265 +26458,79105834,Queens,Long Island City,40.7558,-73.93399000000001,Private room,58,1,62,2.87,9,279 +26459,37212082,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94736,Entire home/apt,97,15,8,0.39,1,0 +26460,45486831,Brooklyn,Bedford-Stuyvesant,40.68884,-73.93355,Entire home/apt,165,3,10,0.46,1,158 +26461,2235545,Manhattan,Upper West Side,40.77478,-73.97986,Entire home/apt,125,30,5,0.26,1,0 +26462,14719992,Brooklyn,Cypress Hills,40.67966,-73.89028,Entire home/apt,106,1,2,0.11,3,0 +26463,63312104,Queens,Flushing,40.74729,-73.81865,Private room,60,1,92,4.26,6,362 +26464,8898944,Brooklyn,Fort Hamilton,40.62053,-74.03941999999999,Entire home/apt,99,2,28,1.36,1,69 +26465,33009,Manhattan,Hell's Kitchen,40.76192,-73.9909,Entire home/apt,180,3,3,0.14,1,0 +26466,151718551,Manhattan,Harlem,40.808440000000004,-73.9502,Entire home/apt,129,28,7,0.35,1,40 +26467,9130390,Manhattan,Hell's Kitchen,40.76007,-73.99078,Entire home/apt,160,7,3,0.15,1,0 +26468,137191484,Manhattan,Hell's Kitchen,40.76583,-73.98669,Private room,86,1,158,7.33,5,170 +26469,6394738,Brooklyn,Bushwick,40.7049,-73.92448,Private room,155,1,4,0.19,2,0 +26470,9356744,Brooklyn,Bedford-Stuyvesant,40.68779,-73.95347,Entire home/apt,185,2,50,2.34,1,14 +26471,49108760,Manhattan,Hell's Kitchen,40.76195,-73.99077,Private room,210,1,4,0.22,1,0 +26472,44229047,Manhattan,Harlem,40.804359999999996,-73.95649,Private room,80,45,1,0.05,1,0 +26473,48146336,Manhattan,Hell's Kitchen,40.76269,-73.99364,Entire home/apt,130,30,4,0.23,20,272 +26474,151241345,Manhattan,East Harlem,40.79979,-73.94104,Entire home/apt,113,1,1,0.05,1,0 +26475,42631621,Brooklyn,Park Slope,40.67711,-73.98074,Entire home/apt,160,3,2,0.1,1,0 +26476,26640554,Brooklyn,Williamsburg,40.7173,-73.96199,Entire home/apt,350,7,3,0.14,1,0 +26477,120762452,Manhattan,Murray Hill,40.75008,-73.97655,Entire home/apt,222,30,2,0.15,50,364 +26478,33074274,Manhattan,Harlem,40.807520000000004,-73.94994,Private room,65,6,9,0.42,2,333 +26479,59518759,Manhattan,East Harlem,40.79483,-73.93478,Private room,90,3,2,0.09,1,0 +26480,107075694,Manhattan,Harlem,40.80531,-73.94187,Private room,65,3,3,0.14,1,0 +26481,151940941,Manhattan,Washington Heights,40.85117,-73.94344,Private room,55,3,66,3.05,1,251 +26482,137327838,Brooklyn,Sunset Park,40.6606,-73.99455,Entire home/apt,94,2,24,1.15,1,12 +26483,61391963,Manhattan,Kips Bay,40.74061,-73.97991,Entire home/apt,185,30,4,0.25,91,201 +26484,29597567,Queens,Corona,40.745329999999996,-73.86076,Private room,49,2,127,6.05,1,64 +26485,48861932,Manhattan,Lower East Side,40.71389,-73.98889,Private room,80,1,9,0.42,1,0 +26486,151812737,Brooklyn,Canarsie,40.64008,-73.89301999999999,Entire home/apt,139,2,64,3.11,1,358 +26487,11135666,Manhattan,East Harlem,40.80225,-73.94491,Private room,70,1,0,,1,0 +26488,15692021,Brooklyn,Crown Heights,40.6696,-73.94253,Entire home/apt,400,11,1,0.05,1,0 +26489,14046692,Queens,Howard Beach,40.65979,-73.8315,Private room,45,1,1,0.05,2,0 +26490,75126216,Manhattan,Washington Heights,40.83784,-73.94081,Private room,75,3,2,0.09,1,0 +26491,2749543,Manhattan,Chinatown,40.71587,-73.9989,Private room,100,2,1,0.05,1,0 +26492,51538274,Manhattan,Greenwich Village,40.72801,-74.00105,Entire home/apt,150,80,18,0.87,1,182 +26493,151139950,Brooklyn,Bedford-Stuyvesant,40.67865,-73.9126,Entire home/apt,100,2,115,5.38,1,225 +26494,108653826,Manhattan,Lower East Side,40.71808,-73.99146999999999,Entire home/apt,139,2,2,0.1,1,0 +26495,152045247,Bronx,Pelham Gardens,40.86506,-73.84295,Entire home/apt,40,2,37,1.81,1,35 +26496,83786650,Manhattan,Upper East Side,40.761390000000006,-73.96222,Entire home/apt,80,30,4,0.26,8,272 +26497,28270349,Queens,Flushing,40.766040000000004,-73.79442,Private room,100,1,34,1.65,2,189 +26498,32110549,Brooklyn,Williamsburg,40.71111,-73.94792,Private room,100,2,2,0.1,1,0 +26499,33946068,Brooklyn,Crown Heights,40.677009999999996,-73.96249,Entire home/apt,150,2,53,2.49,1,160 +26500,11855071,Manhattan,Hell's Kitchen,40.76842,-73.99109,Entire home/apt,273,1,46,2.19,1,166 +26501,21480920,Manhattan,SoHo,40.72653,-74.00054,Entire home/apt,225,3,79,3.88,1,151 +26502,16509617,Brooklyn,Sunset Park,40.64651,-74.01749000000001,Entire home/apt,100,3,0,,1,0 +26503,152096705,Brooklyn,Downtown Brooklyn,40.697720000000004,-73.98365,Entire home/apt,135,2,18,0.84,1,0 +26504,14945039,Manhattan,Greenwich Village,40.72838,-73.99897,Entire home/apt,400,4,1,0.05,1,0 +26505,25321849,Brooklyn,Boerum Hill,40.68701,-73.98841999999999,Entire home/apt,125,2,91,4.61,2,62 +26506,133790239,Manhattan,Hell's Kitchen,40.75906,-73.98898,Private room,150,2,0,,1,0 +26507,120762452,Manhattan,Murray Hill,40.74848,-73.97564,Private room,222,30,0,,50,364 +26508,120762452,Manhattan,Murray Hill,40.74896,-73.9762,Entire home/apt,175,30,1,0.08,50,364 +26509,127743419,Manhattan,Harlem,40.816309999999994,-73.93933,Entire home/apt,70,3,39,1.83,1,4 +26510,120762452,Manhattan,Murray Hill,40.74877,-73.97565,Entire home/apt,175,30,1,0.19,50,364 +26511,120762452,Manhattan,Murray Hill,40.748290000000004,-73.97554000000001,Entire home/apt,130,30,3,0.16,50,364 +26512,28066471,Manhattan,West Village,40.73223,-74.00489,Entire home/apt,150,4,1,0.05,1,6 +26513,152177080,Queens,East Elmhurst,40.77063,-73.87543000000001,Private room,45,1,222,10.39,1,164 +26514,333897,Queens,Ridgewood,40.69385,-73.90296,Private room,50,1,50,2.34,2,341 +26515,111020045,Brooklyn,Williamsburg,40.71566,-73.94485999999999,Private room,100,3,1,0.05,1,0 +26516,151316042,Manhattan,Chinatown,40.71363,-73.9909,Private room,90,1,58,2.68,2,10 +26517,25354313,Brooklyn,Crown Heights,40.673590000000004,-73.95812,Private room,45,3,9,0.43,2,0 +26518,4324444,Brooklyn,Windsor Terrace,40.65853,-73.98301,Entire home/apt,175,2,54,3.56,1,135 +26519,152195388,Manhattan,Upper West Side,40.784890000000004,-73.97345,Private room,99,20,7,0.42,2,125 +26520,25036260,Brooklyn,Bushwick,40.68949,-73.90987,Private room,60,1,66,3.24,3,120 +26521,5867412,Brooklyn,Williamsburg,40.71328,-73.9633,Entire home/apt,158,30,8,0.42,1,283 +26522,643120,Brooklyn,Williamsburg,40.71727,-73.95597,Private room,60,4,36,1.67,4,0 +26523,127985639,Brooklyn,Williamsburg,40.71171,-73.95158,Private room,45,7,0,,1,0 +26524,51339741,Manhattan,Upper West Side,40.77895,-73.98331999999999,Private room,145,1,43,2.01,1,197 +26525,5962328,Queens,Flushing,40.75951,-73.82189,Entire home/apt,110,30,5,0.27,15,297 +26526,141012332,Bronx,Mott Haven,40.80762,-73.92454000000001,Entire home/apt,115,2,100,4.76,1,130 +26527,134946389,Brooklyn,Bedford-Stuyvesant,40.685629999999996,-73.93863,Private room,50,2,23,1.08,5,0 +26528,120767920,Queens,Flushing,40.75898,-73.81448,Private room,45,3,67,3.16,10,349 +26529,59959974,Queens,Astoria,40.7726,-73.92298000000001,Entire home/apt,180,4,41,2.22,1,120 +26530,8519823,Brooklyn,Williamsburg,40.708220000000004,-73.95921,Entire home/apt,350,30,5,0.24,1,166 +26531,21383928,Brooklyn,Williamsburg,40.71195,-73.95872,Entire home/apt,125,3,40,1.85,1,0 +26532,49046009,Manhattan,Upper West Side,40.78607,-73.97717,Entire home/apt,180,5,27,1.25,1,0 +26533,114975592,Queens,Springfield Gardens,40.6651,-73.76614000000001,Private room,70,1,19,0.94,4,84 +26534,92463274,Manhattan,Harlem,40.8258,-73.94405,Entire home/apt,126,3,15,0.7,1,2 +26535,67211684,Manhattan,East Village,40.72615,-73.99072,Entire home/apt,190,4,14,0.71,1,0 +26536,36889012,Brooklyn,Bedford-Stuyvesant,40.681909999999995,-73.92064,Private room,50,3,86,3.97,4,346 +26537,145187951,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95754000000001,Private room,50,3,18,1.04,2,0 +26538,151316042,Manhattan,Chinatown,40.71396,-73.99150999999999,Private room,95,1,55,2.56,2,10 +26539,28953246,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95396,Private room,100,1,0,,1,0 +26540,6378149,Brooklyn,Bushwick,40.69883,-73.91583,Entire home/apt,115,2,1,0.09,3,0 +26541,152331348,Queens,Richmond Hill,40.69474,-73.82284,Entire home/apt,85,2,33,1.62,1,179 +26542,17766289,Bronx,Kingsbridge,40.869240000000005,-73.90651,Private room,40,30,4,0.19,2,148 +26543,152339773,Manhattan,Chelsea,40.740829999999995,-74.00349,Entire home/apt,195,5,0,,1,0 +26544,25311373,Brooklyn,Bay Ridge,40.623979999999996,-74.02786,Private room,79,1,0,,2,179 +26545,25311373,Brooklyn,Bay Ridge,40.625690000000006,-74.02654,Private room,89,1,3,0.14,2,269 +26546,39528519,Manhattan,Lower East Side,40.7111,-73.98865,Shared room,32,14,4,0.25,28,341 +26547,152353924,Bronx,Parkchester,40.83408,-73.87419,Private room,28,3,27,1.32,2,214 +26548,46019665,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95156,Private room,55,3,1,0.05,1,0 +26549,152366935,Queens,Howard Beach,40.65059,-73.82896,Entire home/apt,100,1,42,1.97,1,220 +26550,12632660,Brooklyn,Fort Greene,40.69211,-73.98102,Private room,125,3,60,2.79,1,0 +26551,12317482,Brooklyn,Crown Heights,40.66505,-73.95998,Entire home/apt,150,2,1,0.05,1,0 +26552,131647128,Manhattan,Upper West Side,40.77538,-73.98814,Entire home/apt,300,30,7,0.38,25,313 +26553,18283,Brooklyn,Greenpoint,40.73222,-73.95395,Entire home/apt,150,3,0,,1,0 +26554,28839010,Brooklyn,Williamsburg,40.71054,-73.94691,Private room,115,2,0,,1,0 +26555,54198006,Manhattan,East Harlem,40.79803,-73.93648,Private room,100,1,35,1.82,2,318 +26556,10823443,Brooklyn,Bedford-Stuyvesant,40.684540000000005,-73.94829,Private room,45,4,0,,1,0 +26557,5760970,Queens,Ditmars Steinway,40.76982,-73.90254,Entire home/apt,150,2,18,0.86,2,364 +26558,149977050,Manhattan,Upper West Side,40.78631,-73.97752,Entire home/apt,199,2,27,1.34,1,335 +26559,7835116,Brooklyn,Clinton Hill,40.687290000000004,-73.96785,Private room,50,14,0,,1,0 +26560,70307900,Manhattan,Upper East Side,40.7766,-73.94861999999999,Entire home/apt,275,30,17,0.79,1,196 +26561,56113781,Brooklyn,Bushwick,40.68765,-73.90821,Private room,75,1,11,0.52,1,0 +26562,152505727,Brooklyn,Columbia St,40.687870000000004,-74.00036999999999,Entire home/apt,150,15,5,0.25,1,105 +26563,152493041,Brooklyn,East Flatbush,40.661970000000004,-73.92586999999999,Entire home/apt,180,3,14,0.69,1,175 +26564,120767920,Queens,Flushing,40.7557,-73.81237,Private room,43,2,43,1.99,10,365 +26565,17344471,Brooklyn,Williamsburg,40.71655,-73.94162,Private room,85,1,28,1.35,2,0 +26566,28027678,Manhattan,Kips Bay,40.742740000000005,-73.97918,Private room,115,1,160,7.43,1,15 +26567,12424361,Brooklyn,Crown Heights,40.678340000000006,-73.94899000000001,Entire home/apt,105,3,8,0.38,1,188 +26568,24523422,Brooklyn,Greenpoint,40.721090000000004,-73.94679000000001,Private room,70,3,1,0.05,1,0 +26569,131647128,Manhattan,Upper West Side,40.77576,-73.98883000000001,Entire home/apt,290,30,4,0.22,25,281 +26570,152530167,Queens,Flushing,40.764070000000004,-73.82518,Entire home/apt,148,1,24,1.15,1,77 +26571,5443000,Manhattan,East Village,40.730909999999994,-73.98223,Private room,110,2,29,1.47,2,0 +26572,119464278,Manhattan,Upper West Side,40.787290000000006,-73.97033,Private room,110,30,0,,1,0 +26573,75563831,Queens,Astoria,40.758109999999995,-73.90954,Private room,43,4,19,1.64,2,1 +26574,152584041,Manhattan,Harlem,40.799690000000005,-73.95449,Entire home/apt,170,3,44,2.23,1,0 +26575,11546043,Brooklyn,Prospect-Lefferts Gardens,40.655159999999995,-73.96121,Private room,65,28,5,0.26,3,297 +26576,17767705,Manhattan,East Harlem,40.79477,-73.93281999999999,Private room,90,2,3,0.15,1,0 +26577,22541573,Manhattan,Upper East Side,40.77057,-73.95759,Entire home/apt,159,30,1,0.05,87,344 +26578,57013,Queens,Ridgewood,40.7087,-73.90897,Entire home/apt,175,4,2,0.11,1,0 +26579,18413613,Brooklyn,Bushwick,40.698479999999996,-73.93749,Private room,60,1,72,3.34,1,16 +26580,152605245,Brooklyn,Kensington,40.64382,-73.97774,Private room,35,3,1,0.05,1,0 +26581,11571496,Brooklyn,Bushwick,40.68824,-73.91628,Entire home/apt,148,2,92,4.33,2,4 +26582,35413624,Manhattan,Harlem,40.82154,-73.94554000000001,Entire home/apt,110,15,1,0.05,1,0 +26583,109930093,Manhattan,East Harlem,40.80893,-73.93982,Private room,115,3,17,0.83,2,0 +26584,35927005,Manhattan,Lower East Side,40.714259999999996,-73.98873,Private room,85,2,30,1.43,10,344 +26585,66260832,Manhattan,Harlem,40.8152,-73.95175,Private room,50,15,0,,1,0 +26586,152628203,Manhattan,Upper West Side,40.79221,-73.97331,Entire home/apt,120,4,7,0.33,1,0 +26587,150363476,Bronx,Parkchester,40.83439,-73.8585,Private room,300,2,9,0.47,1,0 +26588,80772013,Brooklyn,Carroll Gardens,40.67584,-74.00057,Entire home/apt,200,2,6,0.32,1,23 +26589,1177497,Brooklyn,Clinton Hill,40.69075,-73.9677,Private room,319,1,52,2.48,11,365 +26590,152702239,Manhattan,Upper East Side,40.77669,-73.94821999999999,Private room,100,3,5,0.24,1,0 +26591,120935104,Brooklyn,Williamsburg,40.72017,-73.9575,Entire home/apt,200,120,0,,1,263 +26592,2385790,Brooklyn,Bedford-Stuyvesant,40.69592,-73.93793000000001,Private room,80,1,5,0.24,2,0 +26593,11310249,Brooklyn,Red Hook,40.67844,-74.01058,Entire home/apt,120,2,98,4.64,1,193 +26594,24088306,Manhattan,Upper East Side,40.77112,-73.96226,Entire home/apt,239,7,70,3.76,1,185 +26595,2171676,Manhattan,East Village,40.7277,-73.97841,Private room,71,2,112,5.22,1,129 +26596,3778274,Manhattan,Midtown,40.75643,-73.96847,Entire home/apt,120,2,7,0.36,2,0 +26597,50388251,Manhattan,Upper West Side,40.80015,-73.96159,Private room,145,2,0,,1,0 +26598,146481790,Brooklyn,Clinton Hill,40.6926,-73.9639,Private room,95,1,4,0.19,1,0 +26599,152760575,Queens,Flushing,40.76047,-73.83193,Private room,100,2,1,0.05,1,0 +26600,148852095,Queens,Douglaston,40.76962,-73.74795,Private room,65,2,21,0.98,3,89 +26601,24193553,Brooklyn,Greenpoint,40.72402,-73.95285,Private room,60,10,0,,1,89 +26602,36450406,Manhattan,Harlem,40.8235,-73.94619,Entire home/apt,100,2,1,0.28,1,1 +26603,82975282,Queens,Bayswater,40.6004,-73.7667,Private room,47,30,8,0.38,2,303 +26604,6009690,Manhattan,Lower East Side,40.715090000000004,-73.98992,Entire home/apt,126,3,4,0.19,1,3 +26605,152353924,Bronx,Parkchester,40.83555,-73.8757,Private room,25,3,38,1.82,2,119 +26606,33975562,Manhattan,Hell's Kitchen,40.756840000000004,-73.99465,Private room,114,1,133,6.23,2,67 +26607,152852607,Manhattan,Midtown,40.7557,-73.96871,Entire home/apt,185,3,35,1.66,1,0 +26608,27231066,Manhattan,Harlem,40.81138,-73.95442,Entire home/apt,165,3,22,1.03,1,0 +26609,48510097,Brooklyn,Bushwick,40.6897,-73.91512,Private room,60,2,1,0.05,1,0 +26610,15751193,Manhattan,West Village,40.733090000000004,-74.00482,Entire home/apt,225,1,74,3.66,1,3 +26611,109074907,Manhattan,Upper East Side,40.77421,-73.95544,Entire home/apt,150,1,1,0.05,1,0 +26612,42916011,Queens,Sunnyside,40.74351,-73.92577,Private room,55,7,1,0.05,2,353 +26613,42628496,Manhattan,Hell's Kitchen,40.76616,-73.98441,Private room,125,1,39,1.83,1,0 +26614,152872412,Brooklyn,Borough Park,40.64103,-73.99228000000001,Private room,59,8,7,0.33,1,109 +26615,56184689,Queens,Astoria,40.76705,-73.9169,Private room,95,2,13,0.61,2,0 +26616,152878377,Brooklyn,Flatbush,40.64356,-73.96318000000001,Private room,75,3,19,0.9,1,78 +26617,7055854,Manhattan,Harlem,40.80323,-73.94253,Private room,1500,5,3,0.14,5,219 +26618,8637211,Manhattan,Harlem,40.81821,-73.94745999999999,Private room,85,30,53,2.49,4,309 +26619,152882655,Brooklyn,Crown Heights,40.67249,-73.94933,Private room,75,3,1,0.05,1,0 +26620,152883368,Brooklyn,Park Slope,40.6749,-73.97979000000001,Private room,130,1,14,0.69,1,0 +26621,8637211,Manhattan,Harlem,40.81899,-73.94584,Private room,70,30,29,1.36,4,292 +26622,152885643,Manhattan,Upper East Side,40.77585,-73.95101,Entire home/apt,128,4,12,0.6,1,0 +26623,96235534,Manhattan,Washington Heights,40.843340000000005,-73.9405,Entire home/apt,130,2,94,4.41,1,116 +26624,48812051,Manhattan,Harlem,40.81042,-73.94717,Entire home/apt,120,4,5,0.26,1,0 +26625,122975,Brooklyn,Fort Greene,40.68569,-73.97346,Private room,69,5,0,,1,0 +26626,24929024,Manhattan,Upper West Side,40.80003,-73.96446,Private room,47,1,0,,1,0 +26627,1029090,Manhattan,East Village,40.722359999999995,-73.98534000000001,Entire home/apt,181,2,10,0.47,1,0 +26628,19177308,Brooklyn,Bushwick,40.6897,-73.9064,Private room,48,2,39,1.83,4,179 +26629,52876917,Manhattan,Harlem,40.81978,-73.95476,Private room,50,2,0,,1,0 +26630,148852095,Queens,Flushing,40.75547,-73.83547,Private room,60,2,24,1.14,3,76 +26631,148852095,Queens,Flushing,40.75379,-73.83010999999999,Private room,58,3,20,0.97,3,88 +26632,152948553,Manhattan,Chelsea,40.751329999999996,-73.99671,Private room,99,1,77,3.64,1,101 +26633,91646104,Queens,Woodside,40.74371,-73.9109,Entire home/apt,150,3,87,4.59,3,200 +26634,50383289,Brooklyn,Greenpoint,40.724000000000004,-73.95201999999999,Entire home/apt,225,1,18,0.87,1,0 +26635,43148410,Brooklyn,East New York,40.667390000000005,-73.88739,Private room,40,1,7,0.33,3,364 +26636,16024560,Brooklyn,Fort Hamilton,40.61902,-74.03514,Entire home/apt,130,2,47,2.23,1,165 +26637,21250331,Queens,Bayside,40.754329999999996,-73.7688,Private room,35,1,92,4.3,3,318 +26638,22541573,Manhattan,Upper East Side,40.77122,-73.95909,Entire home/apt,169,30,0,,87,344 +26639,54198006,Manhattan,East Harlem,40.79567,-73.9366,Private room,150,1,44,2.07,2,305 +26640,30283594,Manhattan,Chelsea,40.75121,-73.99812,Entire home/apt,169,30,1,0.05,121,282 +26641,10714931,Brooklyn,Crown Heights,40.67335,-73.95391,Private room,37,15,21,1.44,4,67 +26642,75029289,Manhattan,Upper East Side,40.77606,-73.95421999999999,Entire home/apt,125,30,5,0.34,5,342 +26643,38753504,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9193,Private room,62,2,28,1.34,1,0 +26644,57576702,Brooklyn,Clinton Hill,40.6859,-73.96109,Entire home/apt,120,2,17,0.92,1,8 +26645,3183818,Brooklyn,Bedford-Stuyvesant,40.68254,-73.94504,Private room,55,5,6,0.29,1,0 +26646,67869496,Brooklyn,Flatlands,40.62187,-73.94414,Entire home/apt,250,1,0,,1,0 +26647,153015791,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93721,Private room,45,3,2,0.09,1,0 +26648,5400205,Brooklyn,Bedford-Stuyvesant,40.692609999999995,-73.93325,Private room,120,3,22,1.03,1,357 +26649,66041795,Brooklyn,Clinton Hill,40.68628,-73.96706999999999,Private room,55,5,2,0.11,1,0 +26650,8628273,Manhattan,East Village,40.729820000000004,-73.98593000000001,Entire home/apt,140,2,2,0.11,1,0 +26651,6429030,Brooklyn,Greenpoint,40.7257,-73.95606,Private room,100,1,2,0.11,1,0 +26652,81959199,Manhattan,Lower East Side,40.72269,-73.98862,Private room,80,3,23,1.1,1,28 +26653,46208887,Brooklyn,Crown Heights,40.67541,-73.96061,Entire home/apt,70,7,2,0.11,1,0 +26654,153044885,Brooklyn,Bedford-Stuyvesant,40.687470000000005,-73.92879,Entire home/apt,189,3,77,3.66,1,17 +26655,110965771,Queens,Flushing,40.77317,-73.82405,Private room,200,2,12,0.64,7,35 +26656,43148410,Brooklyn,East New York,40.667559999999995,-73.88704,Private room,45,1,6,0.28,3,333 +26657,153052198,Manhattan,Greenwich Village,40.73366,-73.99805,Entire home/apt,275,120,0,,1,235 +26658,120762452,Manhattan,Murray Hill,40.750009999999996,-73.97573,Entire home/apt,150,30,2,0.28,50,364 +26659,120762452,Manhattan,Murray Hill,40.74872,-73.97700999999999,Entire home/apt,150,30,1,0.05,50,364 +26660,138006255,Brooklyn,Canarsie,40.63928,-73.91081,Private room,65,1,2,0.19,2,365 +26661,120762452,Manhattan,Murray Hill,40.74877,-73.977,Entire home/apt,150,30,2,0.21,50,364 +26662,120762452,Manhattan,Murray Hill,40.74839,-73.97683,Entire home/apt,195,30,0,,50,364 +26663,153083048,Brooklyn,Bedford-Stuyvesant,40.68212,-73.95419,Private room,59,5,5,0.24,1,0 +26664,22784412,Queens,Glendale,40.70404,-73.85831999999999,Private room,43,1,9,0.42,2,301 +26665,42905152,Brooklyn,Greenpoint,40.72268,-73.94163,Entire home/apt,160,10,0,,1,42 +26666,153018041,Queens,Flushing,40.75602,-73.80241,Private room,95,1,22,1.12,2,0 +26667,55430096,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95709000000001,Entire home/apt,190,20,2,0.14,1,310 +26668,61391963,Manhattan,Upper East Side,40.7717,-73.96115999999999,Entire home/apt,125,30,5,0.26,91,347 +26669,151645438,Brooklyn,Cobble Hill,40.68553,-73.99804,Entire home/apt,165,2,0,,1,0 +26670,147536196,Manhattan,Lower East Side,40.7198,-73.98209,Private room,135,1,50,2.35,1,32 +26671,761943,Brooklyn,Bedford-Stuyvesant,40.68019,-73.91102,Entire home/apt,225,3,12,0.61,1,72 +26672,153143032,Brooklyn,Williamsburg,40.718579999999996,-73.96283000000001,Entire home/apt,380,1,128,5.99,1,173 +26673,32834879,Brooklyn,Greenpoint,40.7284,-73.94983,Entire home/apt,200,3,0,,1,0 +26674,40100,Manhattan,Upper West Side,40.769459999999995,-73.986,Entire home/apt,129,3,2,0.1,2,0 +26675,9206072,Brooklyn,Bedford-Stuyvesant,40.69195,-73.96045,Entire home/apt,133,2,101,4.93,1,87 +26676,4464205,Brooklyn,Bushwick,40.694720000000004,-73.92376,Private room,44,2,3,0.14,2,0 +26677,23386210,Manhattan,East Village,40.7269,-73.9847,Entire home/apt,142,10,22,1.04,1,0 +26678,61678511,Manhattan,Harlem,40.815670000000004,-73.94841,Private room,55,3,100,4.69,1,11 +26679,12160369,Queens,Astoria,40.76761,-73.93567,Entire home/apt,185,9,6,0.42,1,15 +26680,87397826,Queens,Long Island City,40.75608,-73.93048,Private room,110,4,5,0.24,2,0 +26681,120762452,Manhattan,Murray Hill,40.750170000000004,-73.97684,Entire home/apt,175,30,0,,50,364 +26682,120762452,Manhattan,Murray Hill,40.74817,-73.97665,Entire home/apt,222,30,1,0.21,50,364 +26683,120762452,Manhattan,Murray Hill,40.74876,-73.97553,Entire home/apt,175,30,5,0.37,50,344 +26684,120762452,Manhattan,Murray Hill,40.74865,-73.9753,Entire home/apt,175,30,0,,50,364 +26685,153189324,Brooklyn,Williamsburg,40.71433,-73.94026,Entire home/apt,115,2,5,0.23,2,0 +26686,3427065,Brooklyn,Williamsburg,40.71866,-73.96417,Private room,180,1,1,0.05,1,0 +26687,11026055,Manhattan,Chinatown,40.718,-73.99665999999999,Private room,80,4,2,0.09,1,0 +26688,79753770,Manhattan,Washington Heights,40.83638,-73.94294000000001,Entire home/apt,125,30,3,0.15,2,323 +26689,12528835,Brooklyn,Bedford-Stuyvesant,40.689640000000004,-73.95259,Entire home/apt,125,2,11,0.53,2,0 +26690,4457116,Brooklyn,Crown Heights,40.665409999999994,-73.95736,Entire home/apt,475,1,29,1.72,1,123 +26691,75030544,Brooklyn,Bedford-Stuyvesant,40.681999999999995,-73.91572,Private room,750,1,4,0.22,4,89 +26692,11951550,Queens,Astoria,40.77061,-73.92109,Entire home/apt,86,4,3,0.15,1,0 +26693,17412395,Brooklyn,Crown Heights,40.66788,-73.95111,Private room,75,1,55,2.7,1,35 +26694,76104209,Manhattan,Upper East Side,40.761140000000005,-73.961,Entire home/apt,153,30,1,0.05,33,365 +26695,153150422,Manhattan,Chelsea,40.742259999999995,-74.00601999999999,Entire home/apt,165,2,11,0.53,1,2 +26696,153251827,Queens,Ridgewood,40.70278,-73.90229000000001,Private room,55,1,37,2.58,1,75 +26697,141052003,Queens,Jamaica,40.6841,-73.78203,Private room,50,1,7,0.38,4,155 +26698,63417081,Manhattan,Harlem,40.82332,-73.94426,Private room,45,30,2,0.1,8,261 +26699,153262506,Queens,Far Rockaway,40.59382,-73.75503,Private room,35,1,1,0.05,1,0 +26700,3603284,Queens,Ridgewood,40.71063,-73.9152,Private room,90,7,28,1.34,1,157 +26701,9522664,Manhattan,Chelsea,40.74337,-73.99361999999999,Private room,149,2,19,0.89,1,274 +26702,2305978,Manhattan,Chelsea,40.74325,-73.99975,Entire home/apt,175,2,67,3.31,2,101 +26703,5022142,Queens,Ridgewood,40.705999999999996,-73.91418,Entire home/apt,90,4,4,0.26,1,0 +26704,145825873,Manhattan,Harlem,40.80475,-73.9491,Entire home/apt,108,30,3,0.23,4,213 +26705,14278133,Brooklyn,Williamsburg,40.71783,-73.95036,Private room,78,2,31,1.46,3,0 +26706,6958919,Manhattan,Morningside Heights,40.81373,-73.96013,Private room,50,1,0,,1,0 +26707,953913,Brooklyn,Bushwick,40.69952,-73.92616,Entire home/apt,250,6,1,0.05,1,0 +26708,10787061,Manhattan,Lower East Side,40.72105,-73.9931,Entire home/apt,95,2,5,0.24,1,0 +26709,22617181,Manhattan,Lower East Side,40.71686,-73.98458000000001,Private room,85,1,1,0.05,1,0 +26710,15277706,Brooklyn,Crown Heights,40.67212,-73.95253000000001,Private room,100,1,58,2.74,1,37 +26711,48241662,Queens,Sunnyside,40.73554,-73.91858,Private room,60,60,0,,1,179 +26712,85318599,Manhattan,Midtown,40.75649,-73.97126,Entire home/apt,160,4,12,0.59,1,0 +26713,140862658,Brooklyn,Bedford-Stuyvesant,40.689040000000006,-73.9428,Private room,68,1,37,1.84,1,0 +26714,135320687,Manhattan,Roosevelt Island,40.763009999999994,-73.94959,Private room,85,3,34,1.6,2,195 +26715,108160091,Brooklyn,Williamsburg,40.711909999999996,-73.95988,Entire home/apt,198,30,9,0.44,3,298 +26716,1565284,Brooklyn,Williamsburg,40.709579999999995,-73.96525,Entire home/apt,290,3,6,0.33,1,0 +26717,153378241,Queens,Ridgewood,40.6999,-73.90059000000001,Private room,48,3,2,0.11,1,0 +26718,122642839,Manhattan,Washington Heights,40.84301,-73.94175,Shared room,60,1,0,,1,0 +26719,9849167,Brooklyn,Crown Heights,40.672340000000005,-73.914,Private room,75,1,34,1.62,1,35 +26720,24047286,Manhattan,Chelsea,40.7456,-73.99771,Entire home/apt,250,4,1,0.05,1,0 +26721,153388393,Manhattan,Harlem,40.80305,-73.95766,Private room,50,5,8,0.39,1,188 +26722,15170042,Brooklyn,Crown Heights,40.67261,-73.9578,Private room,90,1,0,,1,0 +26723,31929860,Manhattan,Hell's Kitchen,40.7613,-73.99155,Private room,155,1,58,2.72,4,304 +26724,35902083,Manhattan,Greenwich Village,40.73386,-73.99643,Entire home/apt,220,5,7,0.33,1,0 +26725,40818755,Manhattan,NoHo,40.72535,-73.99341,Entire home/apt,250,2,22,1.04,1,89 +26726,153419495,Manhattan,Upper East Side,40.762029999999996,-73.96607,Entire home/apt,378,1,72,3.65,1,52 +26727,525698,Brooklyn,Bushwick,40.692370000000004,-73.91906999999999,Entire home/apt,325,3,0,,1,0 +26728,125549620,Brooklyn,Bedford-Stuyvesant,40.68527,-73.93924,Private room,35,2,1,0.05,1,0 +26729,110965771,Queens,Flushing,40.77241,-73.82388,Private room,45,2,24,1.22,7,57 +26730,145825873,Manhattan,Harlem,40.804359999999996,-73.94865,Entire home/apt,96,30,5,0.53,4,32 +26731,17330515,Brooklyn,Williamsburg,40.70796,-73.92412,Private room,78,2,3,1.55,1,73 +26732,18104303,Manhattan,East Village,40.7248,-73.9854,Private room,110,4,23,1.11,1,93 +26733,45440805,Brooklyn,Bedford-Stuyvesant,40.69238,-73.93989,Private room,37,10,1,0.05,1,0 +26734,134184451,Queens,Jamaica,40.70428,-73.81353,Private room,135,1,0,,18,365 +26735,14898658,Brooklyn,Kensington,40.643879999999996,-73.9813,Private room,45,1,52,2.47,11,42 +26736,9890399,Manhattan,Lower East Side,40.72229,-73.99308,Private room,60,3,10,0.47,1,0 +26737,1522036,Manhattan,East Harlem,40.80101,-73.9439,Entire home/apt,125,4,1,0.05,1,0 +26738,145255423,Queens,Astoria,40.76505,-73.93002,Private room,95,1,0,,1,177 +26739,153497815,Brooklyn,Bedford-Stuyvesant,40.68742,-73.91957,Entire home/apt,5000,2,8,0.38,1,0 +26740,11369083,Brooklyn,Cobble Hill,40.68611,-73.99877,Entire home/apt,115,2,2,0.1,1,0 +26741,153509107,Manhattan,Gramercy,40.73818,-73.98671,Entire home/apt,250,1,0,,1,0 +26742,4444524,Brooklyn,Fort Greene,40.69269,-73.97977,Private room,179,2,6,0.3,1,0 +26743,57460773,Manhattan,Harlem,40.81986,-73.94414,Entire home/apt,99,2,63,3.71,1,18 +26744,128895953,Brooklyn,Midwood,40.61193,-73.96259,Private room,65,3,3,0.16,1,364 +26745,45688062,Manhattan,Harlem,40.810829999999996,-73.95188,Private room,125,4,0,,1,0 +26746,7714461,Brooklyn,Williamsburg,40.71321,-73.95073000000001,Private room,75,25,3,0.16,2,161 +26747,11005274,Manhattan,Upper East Side,40.77179,-73.95585,Entire home/apt,125,5,48,2.3,1,2 +26748,57169534,Manhattan,West Village,40.73261,-74.00713,Entire home/apt,295,2,7,0.33,1,365 +26749,19001556,Manhattan,East Village,40.72374,-73.97989,Entire home/apt,200,2,3,0.16,2,0 +26750,78414842,Manhattan,Greenwich Village,40.73393,-73.99306,Private room,200,3,9,0.43,1,0 +26751,4476859,Brooklyn,Bushwick,40.70033,-73.92635,Private room,60,2,1,0.05,1,0 +26752,134184451,Queens,Jamaica,40.70288,-73.81531,Private room,135,1,1,0.05,18,365 +26753,134184451,Queens,Jamaica,40.70319,-73.8141,Private room,135,1,2,0.09,18,365 +26754,33975562,Manhattan,Hell's Kitchen,40.75703,-73.99371,Private room,100,1,130,6.25,2,45 +26755,153565366,Brooklyn,Gowanus,40.67543,-73.98455,Entire home/apt,250,4,70,3.51,3,174 +26756,8896831,Queens,Long Island City,40.74923,-73.95031,Private room,125,2,21,1.49,1,128 +26757,17627575,Brooklyn,Bedford-Stuyvesant,40.68639,-73.9202,Private room,38,2,15,0.73,1,0 +26758,51846382,Brooklyn,Clinton Hill,40.69427,-73.96848,Entire home/apt,220,2,57,3.8,1,77 +26759,48660417,Manhattan,Upper East Side,40.77832,-73.95017,Private room,100,30,6,0.33,1,0 +26760,10653881,Brooklyn,Park Slope,40.670590000000004,-73.98621,Entire home/apt,150,2,2,0.1,2,0 +26761,64609445,Brooklyn,Clinton Hill,40.69466,-73.96703000000001,Private room,58,1,48,2.27,2,0 +26762,4144536,Manhattan,Hell's Kitchen,40.76234,-73.99036,Private room,160,2,30,1.55,1,162 +26763,139490165,Brooklyn,Bushwick,40.6832,-73.90639,Entire home/apt,130,2,7,0.39,3,0 +26764,153635280,Manhattan,Upper East Side,40.77398,-73.9498,Entire home/apt,200,4,1,0.05,1,0 +26765,27187487,Bronx,Belmont,40.856320000000004,-73.88631,Private room,35,3,7,0.38,2,357 +26766,7831209,Manhattan,East Harlem,40.8068,-73.93932,Private room,45,1,84,3.97,10,347 +26767,60687546,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95128000000001,Entire home/apt,235,2,76,3.64,2,121 +26768,153650351,Manhattan,Upper West Side,40.78138,-73.98139,Private room,150,1,138,6.51,1,197 +26769,10994664,Brooklyn,Bushwick,40.692409999999995,-73.90545,Shared room,35,30,0,,8,312 +26770,153662409,Brooklyn,Bushwick,40.688629999999996,-73.91887,Private room,40,2,23,1.25,1,8 +26771,31929860,Manhattan,Hell's Kitchen,40.761829999999996,-73.99181,Entire home/apt,525,1,21,1.13,4,292 +26772,153664491,Queens,Elmhurst,40.736979999999996,-73.88064,Entire home/apt,85,2,1,0.05,1,0 +26773,19541889,Manhattan,Upper West Side,40.76858,-73.9847,Entire home/apt,253,3,1,0.05,1,0 +26774,41306788,Manhattan,Upper East Side,40.763000000000005,-73.96044,Entire home/apt,275,3,1,0.05,1,0 +26775,22004774,Manhattan,Chelsea,40.74772,-74.002,Private room,110,2,2,0.1,1,0 +26776,8150446,Brooklyn,Prospect-Lefferts Gardens,40.657109999999996,-73.95747,Entire home/apt,73,31,1,0.06,1,32 +26777,56197328,Manhattan,Morningside Heights,40.806470000000004,-73.96576,Entire home/apt,573,3,1,0.11,2,0 +26778,143168243,Queens,Ditmars Steinway,40.77823,-73.91247,Private room,80,1,0,,1,0 +26779,1819910,Manhattan,Upper East Side,40.77398,-73.95109000000001,Entire home/apt,170,2,51,2.44,1,33 +26780,2082420,Queens,Ridgewood,40.70626,-73.90930999999999,Entire home/apt,135,5,36,1.78,1,325 +26781,153735730,Manhattan,Gramercy,40.73765,-73.98454,Entire home/apt,1100,30,34,1.94,2,333 +26782,123320165,Manhattan,East Harlem,40.7895,-73.9441,Entire home/apt,120,5,20,1.04,1,341 +26783,1189195,Brooklyn,Williamsburg,40.711529999999996,-73.96088,Entire home/apt,195,3,4,0.22,1,0 +26784,153180105,Staten Island,Lighthouse Hill,40.576409999999996,-74.12931,Entire home/apt,115,2,29,1.41,1,71 +26785,45697749,Brooklyn,Bedford-Stuyvesant,40.68642,-73.95608,Private room,70,2,10,0.48,2,0 +26786,153735730,Manhattan,Gramercy,40.7368,-73.98307,Entire home/apt,766,30,13,0.66,2,352 +26787,44295724,Manhattan,Harlem,40.81875,-73.94467,Entire home/apt,200,3,25,1.8,1,0 +26788,20408271,Brooklyn,Red Hook,40.67503,-74.01505,Entire home/apt,150,1,2,0.11,2,0 +26789,16977462,Manhattan,Upper West Side,40.78642,-73.97652,Private room,125,5,38,1.8,1,54 +26790,7784696,Queens,Ridgewood,40.70555,-73.91333,Entire home/apt,75,3,9,0.45,1,0 +26791,67226812,Brooklyn,Bedford-Stuyvesant,40.68744,-73.94905,Entire home/apt,95,1,89,4.43,1,0 +26792,14552154,Manhattan,Midtown,40.74624,-73.98648,Private room,140,2,76,3.73,4,148 +26793,145825873,Manhattan,Harlem,40.80604,-73.94971,Entire home/apt,83,30,6,0.46,4,86 +26794,14552154,Manhattan,Midtown,40.74465,-73.98535,Private room,135,2,84,4.03,4,103 +26795,14552154,Manhattan,Midtown,40.74517,-73.98484,Private room,231,2,12,0.65,4,165 +26796,20583151,Brooklyn,Bushwick,40.697790000000005,-73.92282,Private room,95,1,1,0.59,1,89 +26797,11571496,Brooklyn,Bushwick,40.68701,-73.91436999999999,Entire home/apt,84,2,115,5.92,2,6 +26798,8857758,Queens,Maspeth,40.73007,-73.89766,Entire home/apt,89,3,27,1.28,2,143 +26799,59262205,Brooklyn,Bedford-Stuyvesant,40.67954,-73.90788,Private room,55,1,40,2.15,3,146 +26800,19985344,Manhattan,Upper East Side,40.76955,-73.95694,Entire home/apt,155,2,22,1.04,1,7 +26801,153826581,Bronx,Morris Heights,40.8459,-73.91558,Private room,77,2,36,1.81,1,5 +26802,1272997,Brooklyn,Greenpoint,40.72868,-73.95248000000001,Private room,52,2,68,3.25,1,9 +26803,31120110,Manhattan,Washington Heights,40.84195,-73.9359,Entire home/apt,95,5,3,0.15,1,0 +26804,5664549,Manhattan,Greenwich Village,40.73295,-73.992,Entire home/apt,250,4,4,0.3,1,43 +26805,133146682,Brooklyn,Williamsburg,40.706140000000005,-73.92756,Shared room,45,1,2,0.09,1,0 +26806,68557372,Manhattan,Harlem,40.806740000000005,-73.95336999999999,Private room,75,1,60,3.25,2,182 +26807,51200621,Brooklyn,Bushwick,40.69523,-73.9191,Entire home/apt,100,3,3,0.14,1,0 +26808,153886003,Queens,Maspeth,40.736979999999996,-73.90256,Entire home/apt,100,1,94,4.73,1,154 +26809,148787736,Brooklyn,Gowanus,40.66977,-73.99021,Entire home/apt,130,1,10,0.52,2,46 +26810,19424541,Manhattan,Upper East Side,40.76709,-73.96422,Entire home/apt,840,4,2,0.31,2,24 +26811,46343506,Manhattan,Financial District,40.705709999999996,-74.01031,Private room,250,3,1,0.09,1,365 +26812,25265179,Manhattan,Nolita,40.72244,-73.99461,Entire home/apt,250,1,9,0.75,1,0 +26813,33294012,Manhattan,Battery Park City,40.71646,-74.01379,Entire home/apt,300,2,1,0.05,1,0 +26814,4976240,Manhattan,Murray Hill,40.75031,-73.97776,Entire home/apt,100,7,26,1.57,1,2 +26815,752478,Manhattan,SoHo,40.72655,-74.00466,Entire home/apt,200,2,0,,1,0 +26816,153921305,Brooklyn,Sunset Park,40.64699,-74.01404000000001,Entire home/apt,120,2,54,2.59,1,90 +26817,153927396,Queens,Bellerose,40.73138,-73.72435,Private room,55,1,28,1.32,1,359 +26818,145825873,Manhattan,Harlem,40.80421,-73.9502,Private room,160,3,10,0.52,4,236 +26819,127450357,Brooklyn,Crown Heights,40.676829999999995,-73.95836,Private room,85,1,16,0.77,1,0 +26820,108605013,Brooklyn,Greenpoint,40.727540000000005,-73.94396,Entire home/apt,100,20,2,0.1,1,24 +26821,152622375,Brooklyn,East New York,40.66529,-73.88325999999999,Entire home/apt,85,2,3,0.15,2,151 +26822,14103991,Queens,Flushing,40.75602,-73.818,Private room,40,2,29,1.4,4,314 +26823,38664335,Brooklyn,East Flatbush,40.63682,-73.94946999999999,Entire home/apt,150,1,6,3.75,1,44 +26824,56537951,Manhattan,Harlem,40.81197,-73.93890999999999,Entire home/apt,230,2,2,0.1,1,0 +26825,128372045,Brooklyn,Flatbush,40.63258,-73.95924000000001,Private room,40,2,9,0.43,1,71 +26826,970375,Manhattan,Greenwich Village,40.73213,-73.99956999999999,Entire home/apt,130,3,43,2.06,1,7 +26827,47735494,Queens,Rego Park,40.72807,-73.86872,Private room,50,1,15,0.71,4,0 +26828,1662707,Brooklyn,Prospect Heights,40.679,-73.97095999999999,Entire home/apt,75,14,1,0.05,1,0 +26829,25414207,Queens,Ridgewood,40.700309999999995,-73.90828,Private room,43,1,76,3.63,2,119 +26830,16727881,Queens,Ditmars Steinway,40.7745,-73.90406,Private room,40,2,1,0.12,1,363 +26831,153988027,Queens,Woodside,40.742670000000004,-73.8996,Entire home/apt,255,4,42,3.09,1,285 +26832,15310048,Brooklyn,East Flatbush,40.652609999999996,-73.94485999999999,Private room,38,60,9,0.45,2,199 +26833,117385673,Manhattan,East Village,40.7303,-73.98340999999999,Private room,105,3,1,0.05,2,0 +26834,8345378,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93741999999999,Private room,130,2,20,1.08,1,64 +26835,23722110,Brooklyn,Williamsburg,40.71386,-73.9634,Entire home/apt,350,7,29,1.45,1,284 +26836,154037433,Queens,Jamaica,40.67048,-73.77259000000001,Private room,35,1,65,3.2,3,52 +26837,33036193,Manhattan,East Village,40.72615,-73.98303,Private room,120,10,31,1.68,2,17 +26838,154037433,Queens,Jamaica,40.669340000000005,-73.77269,Private room,68,1,14,1.23,3,13 +26839,5791944,Manhattan,Harlem,40.82096,-73.9531,Private room,55,2,1,0.05,1,0 +26840,29236921,Brooklyn,Bushwick,40.7005,-73.93826999999999,Private room,49,2,16,0.76,1,0 +26841,101970559,Brooklyn,Bushwick,40.69211,-73.9067,Shared room,0,30,2,0.11,6,333 +26842,50455642,Brooklyn,Williamsburg,40.71528,-73.95365,Private room,55,2,135,6.62,1,30 +26843,21210879,Brooklyn,Crown Heights,40.67433,-73.92824,Entire home/apt,298,3,24,1.17,1,265 +26844,17706542,Brooklyn,Bushwick,40.697309999999995,-73.90824,Shared room,29,30,2,0.1,6,324 +26845,123354518,Brooklyn,Bushwick,40.70177,-73.92313,Private room,50,2,0,,2,0 +26846,30706232,Queens,Astoria,40.76898,-73.91606999999999,Private room,40,1,2,0.09,1,0 +26847,10994839,Manhattan,Lower East Side,40.71994,-73.98184,Private room,150,2,32,1.58,1,76 +26848,154088360,Queens,Long Island City,40.75323,-73.94025,Entire home/apt,298,4,72,3.44,2,187 +26849,91299100,Manhattan,Upper West Side,40.76913,-73.986,Entire home/apt,175,4,0,,2,0 +26850,154095549,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94153,Private room,60,7,0,,2,49 +26851,25178532,Manhattan,Upper West Side,40.778290000000005,-73.97984,Entire home/apt,250,7,1,0.06,1,0 +26852,122920689,Brooklyn,East Flatbush,40.653,-73.95079,Private room,43,4,1,0.06,1,312 +26853,137389534,Brooklyn,Bedford-Stuyvesant,40.685829999999996,-73.9587,Entire home/apt,265,4,16,0.77,1,144 +26854,76021267,Brooklyn,Crown Heights,40.665079999999996,-73.95097,Private room,60,7,10,0.48,1,126 +26855,38681422,Brooklyn,Williamsburg,40.714220000000005,-73.96046,Entire home/apt,400,1,2,0.1,1,0 +26856,154106207,Queens,Astoria,40.76031,-73.91583,Private room,180,6,0,,1,83 +26857,48626585,Brooklyn,Fort Greene,40.68779,-73.97174,Entire home/apt,235,5,5,0.25,1,0 +26858,49614264,Brooklyn,East New York,40.660709999999995,-73.88858,Private room,52,2,3,0.15,1,89 +26859,15357689,Manhattan,Upper West Side,40.77816,-73.97735,Entire home/apt,250,3,4,0.21,1,3 +26860,3023513,Queens,Long Island City,40.75097,-73.94119,Entire home/apt,130,3,2,0.1,1,0 +26861,110081618,Manhattan,Hell's Kitchen,40.7617,-73.98931,Private room,150,1,146,7.19,2,60 +26862,154128335,Queens,Jamaica,40.699329999999996,-73.81436,Private room,50,2,49,2.37,4,108 +26863,60758194,Brooklyn,Canarsie,40.64185,-73.91509,Entire home/apt,160,2,1,0.14,1,191 +26864,130667097,Brooklyn,Williamsburg,40.705290000000005,-73.9331,Entire home/apt,300,1,1,0.26,2,347 +26865,44439712,Manhattan,East Harlem,40.79242,-73.94178000000001,Private room,70,4,23,1.2,1,80 +26866,101970559,Brooklyn,Bushwick,40.69166,-73.90928000000001,Shared room,0,30,5,0.26,6,139 +26867,154184894,Queens,Cambria Heights,40.6939,-73.73104000000001,Private room,130,2,0,,2,0 +26868,154184894,Queens,Cambria Heights,40.69358,-73.73,Private room,120,2,0,,2,0 +26869,1710317,Manhattan,Hell's Kitchen,40.76197,-73.98961,Entire home/apt,200,1,107,5.17,1,200 +26870,510745,Brooklyn,Williamsburg,40.7137,-73.94813,Private room,80,2,1,0.05,2,0 +26871,22541573,Manhattan,Chelsea,40.74071,-73.99977,Entire home/apt,170,30,0,,87,307 +26872,148237535,Brooklyn,Canarsie,40.64162,-73.90915,Private room,80,3,1,0.05,4,364 +26873,100354001,Queens,Rosedale,40.6598,-73.73316,Entire home/apt,65,1,76,3.64,1,65 +26874,145543998,Brooklyn,Crown Heights,40.67587,-73.96194,Private room,60,10,2,0.1,1,0 +26875,154206608,Brooklyn,East Flatbush,40.63881,-73.93476,Entire home/apt,400,1,50,2.77,1,329 +26876,12404709,Manhattan,East Village,40.72853,-73.98472,Private room,100,2,55,3.06,2,25 +26877,51547093,Manhattan,Lower East Side,40.720259999999996,-73.98468000000001,Shared room,68,1,5,0.24,2,0 +26878,146933726,Brooklyn,Crown Heights,40.6654,-73.94864,Entire home/apt,120,1,49,2.4,1,276 +26879,154217970,Manhattan,Theater District,40.76174,-73.98306,Private room,80,3,88,5.42,1,137 +26880,33776141,Manhattan,Kips Bay,40.73905,-73.97353000000001,Private room,100,2,1,0.05,1,0 +26881,148237535,Brooklyn,Canarsie,40.641259999999996,-73.90953,Private room,80,3,1,0.05,4,364 +26882,154201505,Brooklyn,Bedford-Stuyvesant,40.683679999999995,-73.93796,Entire home/apt,92,30,21,1.01,2,35 +26883,154201505,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93979,Entire home/apt,95,30,0,,2,87 +26884,154232402,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94021,Entire home/apt,185,3,19,1.03,1,363 +26885,154239561,Brooklyn,Williamsburg,40.71198,-73.95787,Entire home/apt,200,2,45,2.16,2,268 +26886,5644804,Manhattan,Upper West Side,40.778690000000005,-73.97658,Entire home/apt,300,2,31,1.57,1,99 +26887,52950465,Manhattan,Hell's Kitchen,40.76168,-73.99061,Entire home/apt,99,30,12,0.57,12,251 +26888,154220885,Queens,Ridgewood,40.70706,-73.90006,Private room,50,1,90,4.31,2,178 +26889,134184451,Queens,Jamaica,40.70258,-73.8151,Private room,135,1,0,,18,365 +26890,52950465,Manhattan,Hell's Kitchen,40.76037,-73.99085,Entire home/apt,115,30,2,0.1,12,341 +26891,134184451,Queens,Jamaica,40.70333,-73.8138,Private room,135,1,0,,18,365 +26892,134184451,Queens,Jamaica,40.70259,-73.81415,Private room,135,1,0,,18,365 +26893,134184451,Queens,Jamaica,40.70262,-73.81526,Private room,135,1,1,0.05,18,365 +26894,134184451,Queens,Briarwood,40.7045,-73.81447,Private room,135,1,0,,18,355 +26895,134184451,Queens,Briarwood,40.70458,-73.81418000000001,Private room,135,1,0,,18,355 +26896,134184451,Queens,Jamaica,40.704229999999995,-73.8144,Private room,165,1,0,,18,362 +26897,134184451,Queens,Jamaica,40.702690000000004,-73.81585,Private room,165,1,0,,18,360 +26898,134184451,Queens,Jamaica,40.70426,-73.81509,Private room,165,1,0,,18,362 +26899,134184451,Queens,Jamaica,40.70262,-73.81579,Private room,165,1,0,,18,355 +26900,134184451,Queens,Briarwood,40.70475,-73.81572,Private room,165,1,2,0.09,18,355 +26901,134184451,Queens,Briarwood,40.70471,-73.81541999999999,Private room,135,1,3,0.15,18,319 +26902,134184451,Queens,Briarwood,40.70455,-73.81528,Private room,135,1,0,,18,309 +26903,130768576,Queens,Ditmars Steinway,40.77803,-73.91084000000001,Private room,50,1,77,3.66,1,145 +26904,15356710,Brooklyn,Brighton Beach,40.575359999999996,-73.96523,Private room,40,31,1,0.23,1,342 +26905,115497723,Manhattan,Gramercy,40.73591,-73.98744,Entire home/apt,540,2,53,4.43,1,215 +26906,1566510,Manhattan,Lower East Side,40.71818,-73.98921999999999,Private room,85,1,77,3.68,2,0 +26907,10500831,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95014,Entire home/apt,130,4,42,2.01,1,91 +26908,30426158,Manhattan,Upper West Side,40.78456,-73.97933,Entire home/apt,150,4,2,0.1,2,0 +26909,18381155,Manhattan,East Village,40.723079999999996,-73.98111999999999,Private room,90,4,3,0.17,1,0 +26910,154266431,Manhattan,East Village,40.72535,-73.98244,Private room,121,3,51,2.42,3,0 +26911,154238443,Bronx,Belmont,40.85579,-73.88512,Private room,29,3,9,0.43,2,322 +26912,55724558,Queens,Long Island City,40.76044,-73.94086999999999,Shared room,40,4,22,1.04,5,90 +26913,84766486,Manhattan,Hell's Kitchen,40.76068,-73.99143000000001,Private room,79,5,0,,1,0 +26914,2108760,Queens,Long Island City,40.76661,-73.93502,Entire home/apt,115,1,21,1.0,1,0 +26915,126346950,Manhattan,East Village,40.72508,-73.98335,Entire home/apt,250,1,1,0.05,1,0 +26916,154330006,Bronx,Kingsbridge,40.87666,-73.90034,Entire home/apt,149,3,37,1.9,1,146 +26917,154339771,Brooklyn,Williamsburg,40.712579999999996,-73.95742,Private room,50,2,10,0.5,1,0 +26918,1892493,Brooklyn,Crown Heights,40.66952,-73.92345,Entire home/apt,85,1,1,0.08,2,99 +26919,13839404,Manhattan,Midtown,40.75582,-73.97175,Private room,180,2,0,,1,0 +26920,145967,Brooklyn,Flatbush,40.65258,-73.96243,Entire home/apt,100,3,1,0.05,1,0 +26921,154362702,Brooklyn,Cobble Hill,40.686609999999995,-73.99096999999999,Entire home/apt,200,3,32,1.52,1,36 +26922,12337318,Manhattan,Harlem,40.822959999999995,-73.94545,Entire home/apt,200,2,38,1.89,2,101 +26923,49582324,Brooklyn,Downtown Brooklyn,40.69276,-73.98374,Private room,119,1,0,,1,0 +26924,150565606,Queens,Ditmars Steinway,40.778240000000004,-73.91493,Entire home/apt,70,1,64,3.18,2,113 +26925,154220885,Queens,Ridgewood,40.70516,-73.90496999999999,Private room,55,1,72,3.52,2,171 +26926,154363317,Queens,St. Albans,40.6969,-73.76114,Entire home/apt,250,2,25,1.39,1,204 +26927,154375347,Manhattan,Kips Bay,40.74524,-73.97995,Private room,75,4,1,0.05,1,0 +26928,75059797,Queens,Flushing,40.746520000000004,-73.82873000000001,Private room,40,3,3,3.0,1,66 +26929,75812000,Manhattan,Washington Heights,40.85051,-73.93579,Private room,50,4,4,0.2,1,0 +26930,32446721,Queens,Corona,40.74807,-73.86511,Shared room,37,1,6,0.33,6,361 +26931,536745,Brooklyn,Williamsburg,40.716840000000005,-73.94366,Private room,90,2,5,0.24,3,310 +26932,1257048,Brooklyn,Bushwick,40.686240000000005,-73.9122,Entire home/apt,150,3,54,2.6,1,59 +26933,150970705,Brooklyn,Williamsburg,40.71428,-73.95421,Entire home/apt,140,2,11,0.55,1,214 +26934,55724558,Queens,Long Island City,40.76024,-73.94228000000001,Shared room,48,2,21,1.02,5,90 +26935,145687876,Queens,Forest Hills,40.72453,-73.8498,Entire home/apt,80,3,1,0.05,1,0 +26936,27960761,Manhattan,Greenwich Village,40.72817,-73.9958,Private room,125,3,7,0.38,3,63 +26937,4285729,Manhattan,Chinatown,40.713390000000004,-73.99115,Entire home/apt,188,3,6,0.44,1,364 +26938,87397826,Queens,Long Island City,40.75595,-73.93075,Private room,130,7,1,0.06,2,34 +26939,34867672,Manhattan,East Harlem,40.80891,-73.93798000000001,Entire home/apt,100,30,22,1.05,1,0 +26940,73856870,Brooklyn,East New York,40.666,-73.88858,Private room,75,2,0,,1,88 +26941,37818693,Manhattan,Hell's Kitchen,40.75827,-73.99368,Entire home/apt,249,31,9,0.51,1,137 +26942,154506785,Brooklyn,Williamsburg,40.717890000000004,-73.9579,Entire home/apt,345,1,75,3.64,3,243 +26943,78007526,Manhattan,Greenwich Village,40.72883,-74.00145,Private room,130,1,43,2.04,1,145 +26944,93469679,Manhattan,East Harlem,40.79639,-73.94771999999999,Private room,90,2,40,1.92,1,9 +26945,21410583,Manhattan,Hell's Kitchen,40.766020000000005,-73.98795,Private room,160,3,77,3.77,1,88 +26946,44379772,Manhattan,Inwood,40.87312,-73.9179,Private room,85,1,0,,1,317 +26947,6317895,Brooklyn,Park Slope,40.6785,-73.97542,Entire home/apt,125,4,1,0.05,1,0 +26948,63720469,Queens,Ridgewood,40.70818,-73.91206,Private room,30,5,0,,1,0 +26949,32941922,Brooklyn,Bushwick,40.70442,-73.92553000000001,Entire home/apt,200,2,2,0.1,1,0 +26950,154576996,Queens,Flushing,40.76484,-73.81569,Private room,200,1,8,0.41,1,365 +26951,11743513,Brooklyn,Brooklyn Heights,40.69252,-73.99121,Private room,90,1,87,4.29,1,108 +26952,18270371,Manhattan,Gramercy,40.73305,-73.98574,Entire home/apt,148,4,10,0.52,1,0 +26953,71725161,Brooklyn,Sunset Park,40.641909999999996,-74.02195999999999,Entire home/apt,99,4,79,3.97,2,137 +26954,154506785,Brooklyn,Williamsburg,40.7176,-73.95926999999999,Entire home/apt,148,1,72,3.63,3,272 +26955,25880686,Manhattan,Upper West Side,40.80049,-73.97159,Private room,89,10,0,,1,0 +26956,154506785,Brooklyn,Williamsburg,40.7186,-73.95810999999999,Entire home/apt,585,1,27,2.01,3,229 +26957,146000975,Queens,Woodside,40.74377,-73.90482,Entire home/apt,120,1,161,7.72,1,287 +26958,9439324,Brooklyn,Bushwick,40.68809,-73.90641,Private room,36,1,8,0.43,3,0 +26959,123483050,Queens,Elmhurst,40.7478,-73.88005,Private room,100,1,73,3.47,3,165 +26960,145214508,Brooklyn,Bedford-Stuyvesant,40.693690000000004,-73.94214000000001,Private room,60,3,0,,2,89 +26961,177293,Manhattan,East Harlem,40.80832,-73.93755999999999,Entire home/apt,200,30,0,,1,0 +26962,111969257,Brooklyn,Williamsburg,40.71608,-73.94556999999999,Private room,200,5,23,1.18,3,42 +26963,154613793,Bronx,Concourse Village,40.827059999999996,-73.91779,Private room,80,1,0,,1,88 +26964,111969257,Brooklyn,Williamsburg,40.716190000000005,-73.9441,Private room,90,4,3,0.15,3,0 +26965,110965771,Queens,Flushing,40.77221,-73.82401,Private room,80,2,36,1.76,7,122 +26966,131476068,Queens,Richmond Hill,40.6868,-73.82896,Private room,83,2,16,0.77,2,42 +26967,24210901,Brooklyn,Flatbush,40.63605,-73.96096,Entire home/apt,71,2,14,0.67,1,0 +26968,17261462,Manhattan,East Village,40.72935,-73.98056,Entire home/apt,140,4,3,0.14,1,0 +26969,45534132,Brooklyn,Brooklyn Heights,40.69689,-73.99563,Entire home/apt,180,2,1,0.05,1,0 +26970,4547593,Brooklyn,Williamsburg,40.71982,-73.95569,Entire home/apt,120,5,0,,1,0 +26971,103850896,Brooklyn,Williamsburg,40.71817,-73.94289,Private room,65,2,24,1.18,2,53 +26972,1282611,Brooklyn,Bedford-Stuyvesant,40.684090000000005,-73.93826999999999,Entire home/apt,69,4,7,0.37,1,5 +26973,8480056,Manhattan,SoHo,40.727059999999994,-74.00476,Entire home/apt,170,2,17,0.84,1,6 +26974,32527579,Brooklyn,Williamsburg,40.71239,-73.95857,Private room,70,4,8,0.44,1,0 +26975,14482375,Brooklyn,Greenpoint,40.72205,-73.94229,Private room,150,4,5,0.24,3,0 +26976,154700793,Queens,Queens Village,40.70601,-73.73737,Entire home/apt,67,3,93,4.46,1,134 +26977,154705359,Queens,Jamaica,40.66875,-73.78506,Entire home/apt,96,1,259,12.99,1,307 +26978,66960766,Manhattan,Gramercy,40.73684,-73.98058,Private room,57,3,75,3.73,1,242 +26979,154709515,Manhattan,Greenwich Village,40.7345,-73.99746999999999,Entire home/apt,395,2,0,,1,0 +26980,154238443,Bronx,Belmont,40.85456,-73.88521,Private room,29,4,5,0.25,2,360 +26981,154714898,Manhattan,Upper West Side,40.78584,-73.97341999999999,Entire home/apt,350,5,31,1.54,1,166 +26982,46332983,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95085999999999,Entire home/apt,120,2,26,1.82,1,22 +26983,154042156,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94409,Private room,100,2,24,1.14,3,358 +26984,49164956,Brooklyn,Bedford-Stuyvesant,40.67752,-73.91489,Entire home/apt,190,5,59,2.86,5,24 +26985,120574445,Brooklyn,Boerum Hill,40.68497,-73.97986,Entire home/apt,200,3,45,2.29,1,3 +26986,154042156,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.94226,Private room,70,2,32,1.53,3,358 +26987,12446529,Bronx,Soundview,40.82407,-73.8614,Private room,49,2,25,1.32,2,184 +26988,154042156,Brooklyn,Prospect-Lefferts Gardens,40.65909,-73.94423,Private room,70,2,58,2.8,3,60 +26989,1478269,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95452,Private room,70,2,7,0.36,2,49 +26990,138359650,Manhattan,East Harlem,40.80641,-73.94114,Entire home/apt,237,3,45,2.18,1,89 +26991,10545382,Brooklyn,Williamsburg,40.71561,-73.96307,Private room,129,1,66,3.32,2,84 +26992,36824919,Manhattan,Upper West Side,40.802459999999996,-73.96741,Private room,72,3,1,0.05,1,0 +26993,26702561,Manhattan,Hell's Kitchen,40.76587,-73.98527,Private room,90,1,0,,1,0 +26994,15412884,Brooklyn,Boerum Hill,40.68486,-73.98487,Entire home/apt,800,7,2,0.11,1,246 +26995,15103996,Brooklyn,South Slope,40.66489,-73.99128,Entire home/apt,130,6,4,0.22,1,5 +26996,154550758,Brooklyn,Bedford-Stuyvesant,40.68417,-73.92726,Entire home/apt,160,2,0,,1,171 +26997,120762452,Manhattan,Murray Hill,40.748709999999996,-73.9753,Entire home/apt,175,30,2,0.11,50,365 +26998,154828245,Staten Island,New Springville,40.58508,-74.16162,Entire home/apt,58,1,87,4.18,1,0 +26999,64327344,Manhattan,Upper East Side,40.777,-73.94861,Entire home/apt,115,3,38,1.81,1,0 +27000,55527442,Manhattan,Murray Hill,40.7487,-73.97861999999999,Entire home/apt,300,3,0,,3,294 +27001,55527442,Manhattan,Murray Hill,40.74827,-73.97868000000001,Private room,577,2,1,0.1,3,293 +27002,61696564,Manhattan,Greenwich Village,40.73025,-73.99996,Private room,104,31,1,0.05,2,0 +27003,11822196,Manhattan,Gramercy,40.73666,-73.98544,Shared room,49,1,76,3.64,2,0 +27004,154848269,Queens,Queens Village,40.7167,-73.73473,Private room,35,3,8,0.61,1,38 +27005,2245915,Brooklyn,Gowanus,40.6812,-73.98186,Private room,85,3,2,0.15,1,0 +27006,37333386,Manhattan,Hell's Kitchen,40.761520000000004,-73.98959,Private room,91,1,32,1.59,3,181 +27007,50760404,Brooklyn,Crown Heights,40.67178,-73.92362,Private room,80,1,108,5.18,2,0 +27008,37333386,Manhattan,Hell's Kitchen,40.76119,-73.9873,Entire home/apt,200,3,41,1.97,3,181 +27009,50760404,Brooklyn,Crown Heights,40.67318,-73.92321,Private room,80,1,98,4.75,2,0 +27010,3730706,Brooklyn,Bedford-Stuyvesant,40.68469,-73.94885,Entire home/apt,175,5,10,0.49,1,0 +27011,55724558,Queens,Long Island City,40.76048,-73.94068,Shared room,45,5,16,0.77,5,88 +27012,154886441,Manhattan,Financial District,40.7094,-74.00145,Private room,96,4,4,0.19,1,0 +27013,10546345,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92523,Entire home/apt,180,4,31,1.47,1,339 +27014,4563377,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92933000000001,Entire home/apt,100,5,5,0.27,1,0 +27015,32014256,Brooklyn,Crown Heights,40.67487,-73.95721,Entire home/apt,129,1,79,3.88,1,144 +27016,154629695,Queens,Astoria,40.758070000000004,-73.90977,Private room,60,1,66,3.29,1,19 +27017,11774785,Manhattan,Upper West Side,40.79027,-73.97241,Entire home/apt,135,2,0,,1,0 +27018,118421882,Manhattan,Chinatown,40.71541,-73.99083,Private room,95,1,132,6.45,1,27 +27019,95057247,Queens,Rosedale,40.651109999999996,-73.73441,Private room,125,3,0,,1,0 +27020,154128335,Queens,Jamaica,40.69943,-73.81444,Private room,48,1,49,2.4,4,255 +27021,154256662,Queens,Astoria,40.77134,-73.92424,Entire home/apt,250,3,1,0.05,1,180 +27022,83093714,Manhattan,Harlem,40.816309999999994,-73.94203,Private room,300,1,1,0.05,1,0 +27023,123511218,Brooklyn,Bedford-Stuyvesant,40.67947,-73.94649,Private room,44,2,3,0.14,1,0 +27024,142625186,Brooklyn,Bushwick,40.69143,-73.91756,Private room,75,1,27,1.32,2,0 +27025,2762154,Brooklyn,Sunset Park,40.63863,-74.01916,Entire home/apt,88,14,1,0.05,1,0 +27026,26765262,Brooklyn,Gowanus,40.66933,-73.99158,Entire home/apt,125,3,70,3.38,1,99 +27027,4853070,Manhattan,Nolita,40.72022,-73.99604000000001,Entire home/apt,300,3,0,,1,0 +27028,118697704,Queens,Middle Village,40.71285,-73.87626999999999,Entire home/apt,250,2,4,0.19,1,364 +27029,55858529,Brooklyn,Bedford-Stuyvesant,40.68562,-73.93836,Private room,44,2,96,4.66,3,7 +27030,8715723,Manhattan,Harlem,40.80989,-73.9549,Private room,174,1,111,5.37,5,244 +27031,22924270,Manhattan,Upper East Side,40.773309999999995,-73.95328,Entire home/apt,199,3,1,0.05,1,17 +27032,46716542,Brooklyn,Williamsburg,40.70579,-73.94277,Private room,128,1,1,0.05,1,144 +27033,145242566,Manhattan,Harlem,40.81807,-73.95487,Private room,30,3,86,4.32,2,0 +27034,205055,Brooklyn,Williamsburg,40.719229999999996,-73.95515,Entire home/apt,150,2,3,0.15,1,0 +27035,154984900,Queens,Woodside,40.74599,-73.89506999999999,Private room,65,1,133,8.87,1,7 +27036,29883522,Manhattan,Washington Heights,40.844120000000004,-73.93968000000001,Private room,50,3,1,0.05,1,0 +27037,154985306,Bronx,University Heights,40.8568,-73.9149,Entire home/apt,175,2,68,3.34,1,89 +27038,24052348,Manhattan,East Village,40.72025,-73.97833,Private room,86,6,5,0.25,4,0 +27039,907037,Manhattan,Little Italy,40.71966,-73.99591,Private room,325,2,5,0.26,1,0 +27040,2714509,Manhattan,Upper East Side,40.78098,-73.9467,Entire home/apt,95,2,58,2.96,1,0 +27041,11167829,Manhattan,Harlem,40.827940000000005,-73.94163,Private room,50,4,3,0.14,3,0 +27042,50086945,Manhattan,Lower East Side,40.71954,-73.98914,Entire home/apt,250,7,7,0.37,1,0 +27043,4058709,Brooklyn,Park Slope,40.67587,-73.9793,Entire home/apt,165,6,5,0.25,2,73 +27044,24393270,Manhattan,Upper West Side,40.76877,-73.98371,Entire home/apt,150,5,1,0.05,1,0 +27045,1016005,Brooklyn,Bedford-Stuyvesant,40.688990000000004,-73.94673,Entire home/apt,90,1,17,0.92,1,158 +27046,96346005,Manhattan,Upper West Side,40.77455,-73.98881999999999,Private room,156,3,86,4.11,3,68 +27047,155031529,Queens,Long Island City,40.74726,-73.94304,Entire home/apt,110,20,2,0.1,1,0 +27048,6563906,Brooklyn,Williamsburg,40.71318,-73.96038,Private room,70,1,8,0.41,1,0 +27049,96664487,Brooklyn,Bushwick,40.68742,-73.91628,Entire home/apt,154,3,26,1.41,3,341 +27050,7658248,Manhattan,Harlem,40.80999,-73.95484,Private room,85,2,76,3.68,2,0 +27051,22875538,Brooklyn,Bushwick,40.708079999999995,-73.9205,Entire home/apt,299,2,8,0.63,2,0 +27052,77750223,Bronx,Clason Point,40.81728,-73.86343000000001,Private room,40,3,5,0.46,2,365 +27053,7658248,Manhattan,Harlem,40.80839,-73.95269,Private room,85,2,78,3.77,2,0 +27054,59346339,Manhattan,East Harlem,40.78996,-73.94873,Entire home/apt,127,2,3,0.15,1,0 +27055,154696585,Bronx,Kingsbridge,40.87847,-73.90268,Private room,80,3,1,0.05,1,0 +27056,154842298,Manhattan,East Village,40.7266,-73.984,Entire home/apt,195,3,2,0.11,1,0 +27057,145242566,Manhattan,Harlem,40.819559999999996,-73.95277,Shared room,25,3,61,2.99,2,7 +27058,15520066,Queens,Ridgewood,40.70839,-73.89516,Private room,35,3,1,0.05,1,0 +27059,27636450,Manhattan,NoHo,40.72617,-73.99218,Entire home/apt,250,2,2,0.1,2,0 +27060,154306881,Brooklyn,Prospect-Lefferts Gardens,40.65851,-73.96151,Entire home/apt,120,3,2,0.1,1,0 +27061,155148052,Manhattan,Upper East Side,40.777190000000004,-73.9511,Entire home/apt,139,2,45,2.18,1,14 +27062,35662919,Brooklyn,Williamsburg,40.710229999999996,-73.95827,Private room,100,2,1,0.05,1,0 +27063,125492013,Queens,Elmhurst,40.7434,-73.8839,Entire home/apt,90,5,0,,2,0 +27064,22223682,Manhattan,Upper West Side,40.77158,-73.98976,Private room,150,300,2,0.1,1,365 +27065,117365574,Manhattan,Chelsea,40.74785,-73.99664,Private room,82,1,97,4.69,5,309 +27066,155171571,Bronx,Mott Haven,40.808890000000005,-73.92028,Entire home/apt,125,3,32,1.59,1,6 +27067,42784981,Manhattan,Midtown,40.7447,-73.98255,Entire home/apt,350,2,1,0.05,1,0 +27068,155182192,Manhattan,Hell's Kitchen,40.75949,-73.9908,Private room,40,1,108,5.21,1,65 +27069,25036260,Brooklyn,Bushwick,40.68826,-73.90933000000001,Private room,80,1,34,2.07,3,207 +27070,155200301,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9216,Private room,40,18,1,0.05,2,0 +27071,3711407,Queens,Long Island City,40.746790000000004,-73.94547,Entire home/apt,85,2,14,0.68,1,0 +27072,143555138,Manhattan,Hell's Kitchen,40.761309999999995,-73.99361999999999,Entire home/apt,185,1,85,4.08,1,172 +27073,155255550,Manhattan,East Village,40.72436,-73.984,Entire home/apt,215,1,126,6.12,1,234 +27074,106766048,Queens,Jackson Heights,40.752390000000005,-73.89021,Private room,45,3,12,1.67,1,0 +27075,144195040,Brooklyn,Crown Heights,40.67257,-73.95958,Entire home/apt,150,1,29,1.41,1,135 +27076,153524812,Queens,Astoria,40.76818,-73.92613,Private room,65,1,114,5.46,1,319 +27077,10391716,Manhattan,East Village,40.721709999999995,-73.98307,Entire home/apt,190,4,68,3.34,1,41 +27078,6105242,Manhattan,East Harlem,40.78671,-73.94153,Private room,60,14,1,0.16,1,55 +27079,6388732,Manhattan,Lower East Side,40.72269,-73.99101999999999,Entire home/apt,175,2,16,0.77,1,2 +27080,4414774,Brooklyn,Crown Heights,40.67366,-73.96032,Shared room,60,2,13,0.64,1,0 +27081,683457,Manhattan,East Village,40.72469,-73.99110999999999,Entire home/apt,250,3,1,0.05,1,0 +27082,154949847,Manhattan,Hell's Kitchen,40.76893,-73.99654,Entire home/apt,288,3,66,3.42,2,300 +27083,109909474,Brooklyn,Clinton Hill,40.688390000000005,-73.96018000000001,Entire home/apt,100,1,93,4.67,1,65 +27084,155318905,Manhattan,Chelsea,40.743140000000004,-73.99898,Private room,95,1,2,0.1,1,0 +27085,134428157,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94368,Private room,50,5,1,0.06,7,0 +27086,16794494,Manhattan,East Village,40.72251,-73.98129,Private room,200,2,9,0.46,1,0 +27087,122044489,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94225,Entire home/apt,110,2,39,1.91,2,130 +27088,122374980,Manhattan,Upper West Side,40.784279999999995,-73.97665,Shared room,60,1,90,4.35,4,77 +27089,382836,Manhattan,Hell's Kitchen,40.75873,-73.99041,Private room,143,3,18,0.89,4,365 +27090,11908891,Brooklyn,Flatbush,40.640159999999995,-73.96784,Entire home/apt,97,3,2,0.1,1,0 +27091,19809273,Manhattan,Midtown,40.75092,-73.98409000000001,Entire home/apt,350,2,0,,1,178 +27092,111663504,Manhattan,Harlem,40.827940000000005,-73.95118000000001,Entire home/apt,150,2,69,3.36,1,69 +27093,9554878,Manhattan,Upper East Side,40.76955,-73.95988,Entire home/apt,589,6,9,0.49,1,4 +27094,37487997,Manhattan,Murray Hill,40.74866,-73.97755,Entire home/apt,138,30,1,0.09,1,188 +27095,100970377,Manhattan,Harlem,40.810320000000004,-73.94331,Entire home/apt,200,1,3,0.15,1,0 +27096,134946389,Brooklyn,Bedford-Stuyvesant,40.68623,-73.93807,Entire home/apt,50,2,46,2.23,5,70 +27097,8112941,Brooklyn,Bedford-Stuyvesant,40.692840000000004,-73.94418,Private room,65,3,40,1.99,3,70 +27098,155400834,Manhattan,Harlem,40.81222,-73.94667,Entire home/apt,245,2,82,4.44,1,135 +27099,45658261,Brooklyn,Crown Heights,40.671859999999995,-73.92244000000001,Entire home/apt,100,2,7,0.35,1,0 +27100,13081524,Brooklyn,Williamsburg,40.71226,-73.93949,Private room,60,2,48,2.3,1,13 +27101,2545414,Brooklyn,Bushwick,40.70327,-73.92024,Entire home/apt,89,7,10,0.51,1,11 +27102,66830803,Manhattan,Washington Heights,40.85083,-73.93623000000001,Private room,51,1,4,0.31,1,0 +27103,134428157,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94242,Entire home/apt,150,30,12,0.63,7,0 +27104,8621271,Brooklyn,Crown Heights,40.675059999999995,-73.94828000000001,Entire home/apt,110,3,20,1.0,1,0 +27105,154346156,Manhattan,Hell's Kitchen,40.766729999999995,-73.98324000000001,Entire home/apt,230,2,1,0.05,1,0 +27106,126168966,Manhattan,Hell's Kitchen,40.76457,-73.99082,Private room,119,1,52,2.5,3,159 +27107,134428157,Brooklyn,Bedford-Stuyvesant,40.68558,-73.94230999999999,Private room,44,5,1,0.05,7,0 +27108,3039349,Brooklyn,Bushwick,40.70766,-73.92039,Private room,80,1,34,1.74,1,12 +27109,59405516,Manhattan,Upper East Side,40.77183,-73.95534,Entire home/apt,233,6,15,0.72,2,154 +27110,12762193,Manhattan,Harlem,40.8107,-73.94731,Entire home/apt,150,2,10,0.49,1,0 +27111,29110524,Brooklyn,Williamsburg,40.72031,-73.95615,Entire home/apt,115,4,0,,1,0 +27112,50903933,Brooklyn,Flatbush,40.651140000000005,-73.96246,Private room,60,2,2,0.1,1,0 +27113,69108572,Manhattan,Upper East Side,40.77904,-73.95205,Private room,150,1,0,,1,0 +27114,11452850,Brooklyn,Williamsburg,40.71171,-73.95896,Private room,70,2,3,0.15,1,0 +27115,59405516,Manhattan,Upper East Side,40.77296,-73.95594,Private room,75,3,11,0.82,2,62 +27116,10456843,Brooklyn,Crown Heights,40.667190000000005,-73.93913,Entire home/apt,109,2,22,1.17,1,1 +27117,155647922,Brooklyn,Flatbush,40.647659999999995,-73.95888000000001,Private room,65,3,74,3.59,1,66 +27118,33106693,Manhattan,Harlem,40.821670000000005,-73.95006,Entire home/apt,210,5,2,0.11,3,88 +27119,121809482,Manhattan,Midtown,40.750890000000005,-73.9706,Private room,145,1,25,1.27,2,0 +27120,55858529,Brooklyn,Bedford-Stuyvesant,40.68444,-73.93804,Private room,40,2,101,4.89,3,8 +27121,21341524,Manhattan,East Harlem,40.79104,-73.94144,Entire home/apt,180,2,3,0.16,1,41 +27122,155691570,Queens,East Elmhurst,40.76555,-73.87232,Private room,40,1,76,3.68,5,0 +27123,13010274,Manhattan,Washington Heights,40.83433,-73.94304,Shared room,75,1,0,,1,0 +27124,154128335,Queens,Jamaica,40.69938,-73.81304,Private room,40,1,119,5.8,4,229 +27125,7390361,Manhattan,Chelsea,40.74184,-73.99877,Entire home/apt,128,6,6,0.3,1,0 +27126,3917130,Manhattan,Harlem,40.830890000000004,-73.94541,Private room,36,1,0,,1,0 +27127,3000089,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95884000000001,Entire home/apt,85,8,16,0.81,1,6 +27128,6945444,Manhattan,Harlem,40.801109999999994,-73.95221,Entire home/apt,173,2,62,3.44,1,92 +27129,1285768,Brooklyn,Greenpoint,40.72168,-73.94336,Entire home/apt,150,10,2,0.11,1,41 +27130,2350011,Brooklyn,Clinton Hill,40.68499,-73.9616,Entire home/apt,200,10,5,0.24,1,0 +27131,155791040,Queens,Queens Village,40.71195,-73.74172,Entire home/apt,98,1,64,3.45,1,356 +27132,62888101,Brooklyn,Red Hook,40.67634,-74.00293,Private room,69,1,32,1.73,1,86 +27133,45697749,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95515999999999,Entire home/apt,142,6,4,0.2,2,0 +27134,8687478,Manhattan,Harlem,40.82523,-73.95357,Entire home/apt,180,5,1,0.05,1,0 +27135,3249409,Brooklyn,Williamsburg,40.71072,-73.96498000000001,Entire home/apt,150,4,45,2.18,1,13 +27136,155810605,Manhattan,East Harlem,40.791090000000004,-73.94915,Private room,100,2,83,4.08,2,40 +27137,10525934,Brooklyn,Gowanus,40.67585,-73.99653,Entire home/apt,125,2,13,0.64,1,0 +27138,9427815,Brooklyn,Williamsburg,40.71975,-73.94279,Entire home/apt,175,2,1,0.05,1,0 +27139,145285876,Brooklyn,Williamsburg,40.71523,-73.96245,Private room,66,2,3,0.15,2,0 +27140,13878635,Manhattan,Hell's Kitchen,40.76636,-73.99334,Private room,150,1,9,0.44,2,88 +27141,916804,Manhattan,Harlem,40.81953,-73.94717,Private room,79,2,83,4.14,1,26 +27142,145285876,Brooklyn,Williamsburg,40.71536,-73.96358000000001,Private room,66,2,1,0.05,2,0 +27143,24020292,Brooklyn,Bushwick,40.701209999999996,-73.91986,Private room,85,1,89,4.35,4,58 +27144,5057804,Manhattan,Morningside Heights,40.80605,-73.96495999999999,Entire home/apt,125,3,16,0.79,1,25 +27145,112176279,Brooklyn,Bushwick,40.70154,-73.92296999999999,Private room,89,2,0,,1,0 +27146,155885449,Brooklyn,Park Slope,40.676429999999996,-73.97824,Entire home/apt,105,7,7,0.36,1,0 +27147,739592,Brooklyn,Williamsburg,40.71563,-73.95815,Private room,120,4,0,,1,0 +27148,61696564,Manhattan,Greenwich Village,40.72849,-73.99987,Shared room,56,35,1,0.05,2,0 +27149,115228513,Manhattan,Upper West Side,40.80272,-73.96629,Private room,129,1,83,4.0,2,365 +27150,1358567,Manhattan,Chelsea,40.74387,-73.99766,Entire home/apt,180,3,6,0.42,1,20 +27151,3038856,Brooklyn,Williamsburg,40.7141,-73.96163,Shared room,35,1,0,,3,0 +27152,16301391,Manhattan,Midtown,40.74557,-73.98216,Private room,130,1,9,0.44,1,0 +27153,155923396,Brooklyn,Bushwick,40.70067,-73.92752,Private room,35,2,22,1.89,3,29 +27154,155923396,Brooklyn,Bushwick,40.700309999999995,-73.92848000000001,Private room,25,2,35,1.8,3,3 +27155,17592183,Manhattan,Upper East Side,40.762409999999996,-73.96134,Entire home/apt,150,5,1,0.05,1,0 +27156,92183983,Brooklyn,Greenpoint,40.72865,-73.95936999999999,Entire home/apt,120,5,17,0.83,1,0 +27157,14278133,Brooklyn,Williamsburg,40.717659999999995,-73.94937,Private room,60,2,7,0.34,3,0 +27158,114975592,Queens,Springfield Gardens,40.66668,-73.76417,Private room,90,1,2,0.14,4,84 +27159,2823757,Brooklyn,Williamsburg,40.71719,-73.95427,Entire home/apt,109,2,4,0.36,1,0 +27160,31154454,Manhattan,Kips Bay,40.74155,-73.98235,Private room,70,1,119,5.78,2,3 +27161,15894157,Manhattan,East Village,40.73073,-73.98601,Entire home/apt,145,3,27,1.33,1,7 +27162,155944475,Manhattan,Tribeca,40.71844,-74.00901,Private room,200,1,0,,1,0 +27163,51547093,Manhattan,Lower East Side,40.72035,-73.98541999999999,Entire home/apt,225,4,1,0.05,2,0 +27164,2628354,Manhattan,Upper West Side,40.78025,-73.97585,Entire home/apt,200,30,5,0.25,1,0 +27165,18996093,Queens,Douglaston,40.75612,-73.72954,Private room,40,1,9,0.49,5,252 +27166,2015914,Brooklyn,Bushwick,40.688179999999996,-73.91519,Private room,75,3,2,1.2,8,365 +27167,117365574,Manhattan,Chelsea,40.7497,-73.99515,Private room,85,1,113,5.5,5,292 +27168,6243641,Brooklyn,DUMBO,40.70223,-73.98971,Entire home/apt,145,2,1,0.05,1,0 +27169,12216173,Manhattan,Harlem,40.80543,-73.95739,Entire home/apt,150,1,21,1.14,1,2 +27170,6357428,Brooklyn,Crown Heights,40.67592,-73.94792,Entire home/apt,100,2,3,0.15,1,0 +27171,16445934,Queens,Long Island City,40.74622,-73.94055,Entire home/apt,100,4,2,0.19,1,0 +27172,155990761,Brooklyn,Bushwick,40.69059,-73.91805,Private room,42,2,35,1.69,1,0 +27173,1607289,Manhattan,Upper East Side,40.77196,-73.95454000000001,Entire home/apt,299,2,1,0.05,1,0 +27174,66234873,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94235,Private room,50,5,62,3.58,1,12 +27175,22541573,Manhattan,Upper East Side,40.763690000000004,-73.96122,Entire home/apt,200,30,1,0.07,87,364 +27176,156047478,Manhattan,Harlem,40.80639,-73.94829,Entire home/apt,105,30,5,0.28,2,195 +27177,134419840,Brooklyn,Bushwick,40.69242,-73.90441,Private room,60,30,5,0.24,1,141 +27178,156060717,Manhattan,Harlem,40.81535,-73.94713,Entire home/apt,175,3,33,1.61,1,1 +27179,156066689,Bronx,Concourse,40.822759999999995,-73.92681999999999,Entire home/apt,114,2,79,3.88,1,283 +27180,156068349,Brooklyn,Brownsville,40.65732,-73.90666,Entire home/apt,62,2,0,,1,0 +27181,67072838,Manhattan,Midtown,40.74703,-73.98738,Entire home/apt,160,4,48,2.44,1,327 +27182,16572580,Brooklyn,Williamsburg,40.709070000000004,-73.9495,Private room,184,2,1,0.05,2,0 +27183,142053,Manhattan,Hell's Kitchen,40.76565,-73.98554,Shared room,299,2,37,1.8,5,188 +27184,87236554,Manhattan,East Village,40.73352,-73.98777,Private room,103,1,39,2.0,1,0 +27185,156081840,Manhattan,Upper East Side,40.76767,-73.95609,Entire home/apt,225,2,7,0.37,1,0 +27186,128142697,Manhattan,Upper East Side,40.76719,-73.96973,Entire home/apt,750,4,0,,2,0 +27187,154741428,Manhattan,Harlem,40.82056,-73.95338000000001,Entire home/apt,249,3,3,0.21,1,0 +27188,152622375,Brooklyn,East New York,40.66372,-73.88285,Entire home/apt,75,2,27,1.42,2,151 +27189,26138840,Manhattan,Murray Hill,40.74689,-73.9781,Entire home/apt,175,2,1,0.05,1,0 +27190,18218495,Brooklyn,Williamsburg,40.712270000000004,-73.93618000000001,Private room,58,2,11,0.73,1,88 +27191,105340458,Manhattan,Lower East Side,40.72077,-73.98923,Entire home/apt,250,5,8,0.43,1,0 +27192,26749889,Manhattan,Chinatown,40.71601,-73.99056,Entire home/apt,110,5,4,0.19,1,0 +27193,56391145,Brooklyn,Greenpoint,40.72468,-73.9523,Entire home/apt,150,3,0,,2,0 +27194,56411266,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95908,Private room,60,3,0,,1,0 +27195,19708200,Brooklyn,Canarsie,40.63895,-73.91606,Entire home/apt,65,3,65,3.19,3,305 +27196,66807235,Bronx,Melrose,40.82251,-73.91125,Private room,60,3,0,,1,90 +27197,2230419,Brooklyn,Prospect-Lefferts Gardens,40.66308,-73.9482,Private room,80,1,27,1.66,1,0 +27198,156175292,Brooklyn,Bedford-Stuyvesant,40.6847,-73.92904,Private room,25,1,4,0.19,1,34 +27199,51729061,Brooklyn,Bedford-Stuyvesant,40.69147,-73.95572,Entire home/apt,150,3,17,1.45,1,0 +27200,8132596,Manhattan,Upper West Side,40.788579999999996,-73.97462,Entire home/apt,170,3,34,1.66,1,0 +27201,138235784,Queens,Forest Hills,40.7081,-73.85206,Entire home/apt,70,1,29,1.47,2,225 +27202,156042211,Brooklyn,Canarsie,40.64963,-73.89817,Private room,65,4,8,0.39,4,37 +27203,99202586,Staten Island,Randall Manor,40.63118,-74.12866,Private room,55,2,4,0.2,5,355 +27204,156214681,Manhattan,Nolita,40.72036,-73.99633,Entire home/apt,550,4,87,4.22,1,295 +27205,156216145,Manhattan,Financial District,40.71018,-74.01325,Entire home/apt,215,2,0,,1,0 +27206,975030,Brooklyn,Bedford-Stuyvesant,40.67664,-73.91163,Entire home/apt,90,3,36,1.83,1,253 +27207,156225107,Queens,Laurelton,40.680209999999995,-73.74167,Entire home/apt,110,1,45,2.24,1,170 +27208,156231243,Brooklyn,Bay Ridge,40.6338,-74.03161999999999,Private room,30,3,0,,1,0 +27209,50332029,Manhattan,Harlem,40.826209999999996,-73.94549,Entire home/apt,95,1,139,6.9,1,41 +27210,310296,Brooklyn,Prospect-Lefferts Gardens,40.663759999999996,-73.94643,Private room,35,1,45,2.42,2,52 +27211,155977656,Queens,Forest Hills,40.71711,-73.8347,Private room,70,1,34,1.67,1,93 +27212,156246842,Manhattan,Hell's Kitchen,40.76254,-73.98812,Private room,150,3,54,2.67,3,24 +27213,156249849,Brooklyn,Williamsburg,40.71873,-73.95535,Entire home/apt,80,2,18,0.88,1,12 +27214,39142433,Manhattan,Kips Bay,40.74484,-73.9789,Entire home/apt,160,1,12,0.59,1,0 +27215,102228163,Brooklyn,Carroll Gardens,40.678309999999996,-74.00186,Entire home/apt,90,6,0,,3,0 +27216,3900540,Brooklyn,Brooklyn Heights,40.7008,-73.99385,Entire home/apt,196,1,39,2.0,1,96 +27217,42999896,Brooklyn,Bedford-Stuyvesant,40.689029999999995,-73.93191999999999,Private room,62,1,8,0.39,1,0 +27218,156259857,Brooklyn,Cypress Hills,40.68,-73.90446999999999,Private room,36,2,70,3.43,3,326 +27219,16255906,Manhattan,Financial District,40.70507,-74.009,Private room,143,2,3,0.15,1,0 +27220,150687748,Manhattan,Hell's Kitchen,40.7661,-73.98843000000001,Entire home/apt,120,2,3,1.14,1,0 +27221,3424386,Brooklyn,Park Slope,40.68111,-73.97994,Entire home/apt,129,3,7,0.38,1,12 +27222,26804769,Brooklyn,Bushwick,40.698809999999995,-73.91278,Private room,32,1,3,0.15,1,0 +27223,70035028,Queens,Ridgewood,40.70341,-73.89624,Private room,48,2,39,1.91,1,231 +27224,6459610,Manhattan,Murray Hill,40.74819,-73.97641999999999,Entire home/apt,150,2,61,2.95,1,26 +27225,10972769,Manhattan,SoHo,40.7251,-74.00775,Entire home/apt,250,2,5,0.26,1,0 +27226,156332912,Manhattan,Lower East Side,40.72052,-73.98347,Private room,70,2,1,0.05,1,0 +27227,16501606,Brooklyn,Clinton Hill,40.69471,-73.96633,Private room,100,21,15,0.97,1,89 +27228,102599996,Queens,Ridgewood,40.70707,-73.91455,Private room,40,30,6,0.29,1,0 +27229,48053679,Manhattan,Chinatown,40.7141,-73.99157,Entire home/apt,110,2,34,1.73,1,15 +27230,156352453,Manhattan,Upper East Side,40.76667,-73.9587,Entire home/apt,200,2,41,2.06,1,158 +27231,6374043,Manhattan,Chelsea,40.743790000000004,-73.99918000000001,Entire home/apt,250,2,8,0.41,1,253 +27232,112966930,Brooklyn,Williamsburg,40.71218,-73.96268,Private room,60,2,2,0.1,1,0 +27233,3404840,Brooklyn,Crown Heights,40.6739,-73.9535,Private room,60,2,2,0.1,1,0 +27234,136214003,Staten Island,St. George,40.64591,-74.08399,Entire home/apt,125,1,108,5.41,1,319 +27235,15088853,Queens,Ditmars Steinway,40.77511,-73.91991999999999,Entire home/apt,85,1,82,6.03,1,46 +27236,2424168,Brooklyn,Williamsburg,40.71167,-73.95785,Entire home/apt,140,3,2,0.1,1,0 +27237,85370670,Manhattan,Harlem,40.8236,-73.9516,Private room,67,1,27,1.66,1,160 +27238,156396144,Bronx,Morrisania,40.82995,-73.90342,Entire home/apt,50,1,0,,1,0 +27239,33910461,Manhattan,Midtown,40.763909999999996,-73.98238,Private room,300,3,0,,1,0 +27240,154239561,Brooklyn,Williamsburg,40.71152,-73.95787,Private room,75,2,6,0.3,2,307 +27241,1196023,Queens,Ridgewood,40.7088,-73.91386999999999,Entire home/apt,140,3,54,2.82,1,230 +27242,134516,Brooklyn,Williamsburg,40.713409999999996,-73.96556,Entire home/apt,165,3,32,1.63,1,10 +27243,118137788,Manhattan,West Village,40.729859999999995,-74.00465,Private room,100,2,3,0.15,1,0 +27244,156436372,Brooklyn,Williamsburg,40.71549,-73.94973,Entire home/apt,100,30,2,0.15,4,332 +27245,79105834,Queens,Long Island City,40.7539,-73.93419,Private room,55,1,64,3.21,9,285 +27246,156436372,Brooklyn,Williamsburg,40.7163,-73.95087,Entire home/apt,100,30,4,0.2,4,323 +27247,25553833,Queens,Astoria,40.757659999999994,-73.92738,Entire home/apt,108,4,11,0.56,1,0 +27248,13917921,Brooklyn,Bushwick,40.6985,-73.93384,Shared room,42,2,13,0.65,2,365 +27249,14700562,Brooklyn,Flatbush,40.65182,-73.95804,Private room,39,7,0,,1,0 +27250,5887081,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95338000000001,Entire home/apt,100,7,2,1.5,2,189 +27251,5540379,Brooklyn,Bushwick,40.70393,-73.92376999999999,Entire home/apt,95,2,62,3.08,1,34 +27252,7114486,Manhattan,Gramercy,40.73625,-73.98597,Entire home/apt,140,2,20,0.99,1,29 +27253,1880807,Brooklyn,Greenpoint,40.73279,-73.95425999999999,Entire home/apt,110,6,5,0.24,1,0 +27254,154088360,Queens,Long Island City,40.75331,-73.93907,Entire home/apt,300,4,65,3.27,2,221 +27255,156490310,Brooklyn,East New York,40.6697,-73.88407,Entire home/apt,70,1,56,4.41,1,64 +27256,150835318,Queens,Flushing,40.76573,-73.82822,Private room,85,1,12,0.74,1,171 +27257,156535560,Brooklyn,Flatbush,40.64116,-73.95991,Entire home/apt,55,2,70,3.64,1,5 +27258,41123114,Manhattan,Theater District,40.76163,-73.98023,Private room,949,2,7,0.36,1,8 +27259,108157026,Brooklyn,Williamsburg,40.71564,-73.95821,Private room,120,2,0,,1,0 +27260,12678346,Brooklyn,Greenpoint,40.72552,-73.95108,Shared room,45,7,0,,1,0 +27261,1825159,Queens,Long Island City,40.7574,-73.93011,Entire home/apt,125,3,54,2.9,1,83 +27262,104450469,Manhattan,SoHo,40.72394,-73.99656,Private room,80,3,2,0.11,2,0 +27263,156571787,Manhattan,Midtown,40.74607,-73.98546999999999,Entire home/apt,300,2,1,0.05,1,0 +27264,110553561,Manhattan,Washington Heights,40.85561,-73.93306,Entire home/apt,99,2,12,0.61,1,0 +27265,139879568,Queens,Long Island City,40.7647,-73.93914000000001,Private room,71,1,63,3.19,6,360 +27266,156585195,Brooklyn,Bergen Beach,40.62052,-73.91145,Entire home/apt,95,2,41,2.04,2,4 +27267,156587568,Queens,Astoria,40.76129,-73.92009,Entire home/apt,123,1,56,2.73,1,126 +27268,133004690,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.94147,Entire home/apt,80,2,70,3.52,2,248 +27269,16514175,Queens,Jackson Heights,40.74763,-73.88468,Entire home/apt,95,2,46,2.29,5,168 +27270,156600754,Bronx,Longwood,40.82245,-73.90875,Entire home/apt,110,2,19,0.97,1,0 +27271,3749848,Queens,Long Island City,40.76654,-73.93508,Entire home/apt,90,6,0,,1,0 +27272,37149695,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94339000000001,Entire home/apt,100,3,1,0.05,1,0 +27273,42421006,Manhattan,Washington Heights,40.84859,-73.942,Private room,75,1,3,0.45,2,56 +27274,88001494,Brooklyn,Crown Heights,40.66389,-73.93736,Private room,150,2,16,0.87,3,66 +27275,15508421,Manhattan,East Village,40.72834,-73.97907,Entire home/apt,400,30,0,,1,119 +27276,69054780,Brooklyn,Fort Hamilton,40.62245,-74.02958000000001,Private room,55,7,3,0.15,1,0 +27277,4446647,Brooklyn,Flatbush,40.6452,-73.95958,Entire home/apt,120,5,1,0.05,1,0 +27278,156676400,Manhattan,Greenwich Village,40.730540000000005,-74.0013,Entire home/apt,165,3,14,0.69,1,0 +27279,1745206,Brooklyn,Crown Heights,40.66598,-73.95427,Entire home/apt,150,2,10,0.53,1,0 +27280,48183551,Queens,Elmhurst,40.74403,-73.88167,Private room,58,6,50,2.56,5,257 +27281,605589,Brooklyn,Williamsburg,40.71547,-73.94346,Entire home/apt,150,10,1,0.73,1,160 +27282,49496312,Brooklyn,Park Slope,40.66993,-73.98137,Private room,60,3,22,1.09,1,6 +27283,4939914,Brooklyn,Williamsburg,40.718070000000004,-73.9545,Entire home/apt,250,30,3,0.15,1,0 +27284,6420489,Manhattan,Upper West Side,40.77845,-73.98198000000001,Entire home/apt,315,4,16,0.84,1,7 +27285,29021587,Manhattan,Morningside Heights,40.809670000000004,-73.95781,Private room,75,3,0,,1,0 +27286,1913749,Brooklyn,Williamsburg,40.712590000000006,-73.94189,Entire home/apt,125,4,11,0.55,1,11 +27287,156684502,Queens,Springfield Gardens,40.6611,-73.7683,Private room,80,1,403,19.75,3,26 +27288,104812805,Staten Island,Arrochar,40.59746,-74.08406,Private room,32,4,26,1.33,8,315 +27289,7229833,Brooklyn,Kensington,40.63178,-73.97128000000001,Entire home/apt,32,1,0,,1,0 +27290,91747804,Manhattan,Harlem,40.80169,-73.95154000000001,Private room,80,3,33,1.64,1,39 +27291,45466335,Manhattan,Harlem,40.82148,-73.9366,Private room,69,1,67,3.47,2,28 +27292,70844761,Manhattan,Nolita,40.7237,-73.99454,Entire home/apt,200,5,7,0.36,1,1 +27293,156699963,Manhattan,Upper West Side,40.77538,-73.97743,Entire home/apt,350,1,11,0.54,1,80 +27294,48087870,Manhattan,Upper West Side,40.79741,-73.9697,Private room,150,2,27,1.33,1,63 +27295,83585937,Brooklyn,Crown Heights,40.6717,-73.91745,Private room,50,2,35,1.8,2,174 +27296,13400096,Brooklyn,Crown Heights,40.6777,-73.94251,Private room,48,45,3,0.15,3,0 +27297,23425862,Brooklyn,Bedford-Stuyvesant,40.69169,-73.95893000000001,Private room,49,1,0,,2,0 +27298,156758470,Manhattan,Murray Hill,40.745670000000004,-73.97578,Shared room,150,3,17,1.17,1,14 +27299,132619769,Manhattan,Hell's Kitchen,40.75744,-73.99438,Entire home/apt,230,2,21,1.09,1,120 +27300,2212344,Brooklyn,Williamsburg,40.711999999999996,-73.95766,Private room,90,4,11,0.55,3,117 +27301,3949502,Manhattan,East Village,40.72728,-73.98865,Private room,75,14,13,0.65,1,27 +27302,143696286,Brooklyn,Cypress Hills,40.67929,-73.8847,Private room,89,1,23,1.14,1,74 +27303,15145474,Queens,Ozone Park,40.681459999999994,-73.84725999999999,Entire home/apt,150,4,38,2.66,4,51 +27304,14163033,Brooklyn,Fort Greene,40.688140000000004,-73.97108,Entire home/apt,200,2,0,,1,0 +27305,155818580,Queens,Ditmars Steinway,40.77219,-73.90269,Private room,65,2,71,3.46,1,60 +27306,5754627,Brooklyn,Crown Heights,40.672540000000005,-73.95541,Private room,94,1,9,0.46,1,0 +27307,6441887,Brooklyn,Bedford-Stuyvesant,40.6906,-73.93398,Entire home/apt,95,7,1,0.05,2,0 +27308,3532263,Brooklyn,Bushwick,40.69723,-73.92244000000001,Entire home/apt,159,2,44,2.15,4,352 +27309,2179149,Brooklyn,Bedford-Stuyvesant,40.681,-73.92894,Entire home/apt,150,4,3,0.16,1,0 +27310,3532263,Brooklyn,Bushwick,40.69809,-73.92244000000001,Entire home/apt,159,2,51,2.49,4,357 +27311,143405573,Manhattan,Washington Heights,40.83294,-73.94218000000001,Private room,80,2,1,0.05,1,0 +27312,10457196,Manhattan,Little Italy,40.71932,-73.99521999999999,Entire home/apt,190,31,1,0.07,11,61 +27313,3053519,Manhattan,East Harlem,40.79697,-73.93757,Private room,70,4,0,,1,0 +27314,39362787,Brooklyn,Cobble Hill,40.68631,-73.99763,Private room,59,7,33,1.67,1,0 +27315,10457196,Manhattan,Little Italy,40.7192,-73.9965,Entire home/apt,190,30,4,0.22,11,328 +27316,73856823,Brooklyn,Bedford-Stuyvesant,40.69258,-73.94063,Entire home/apt,200,3,4,0.34,1,0 +27317,153410151,Queens,Astoria,40.7674,-73.92656,Private room,69,1,129,6.29,1,349 +27318,30284592,Brooklyn,Williamsburg,40.71078,-73.94666,Private room,70,1,1,0.05,1,0 +27319,42133913,Manhattan,Greenwich Village,40.728559999999995,-74.00097,Entire home/apt,170,3,8,0.41,1,0 +27320,61391963,Manhattan,Hell's Kitchen,40.76132,-73.99298,Entire home/apt,133,30,2,0.11,91,4 +27321,85431106,Brooklyn,Williamsburg,40.70883,-73.94242,Private room,60,1,21,1.46,1,0 +27322,134946389,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9387,Private room,50,2,15,0.75,5,4 +27323,6271042,Queens,Richmond Hill,40.69659,-73.81435,Entire home/apt,90,2,54,2.69,1,283 +27324,4058709,Brooklyn,Park Slope,40.67497,-73.97913,Entire home/apt,235,5,41,2.22,2,219 +27325,1772076,Manhattan,Upper East Side,40.77316,-73.96236999999999,Shared room,59,1,7,0.34,1,0 +27326,46723798,Brooklyn,Greenpoint,40.7255,-73.94428,Entire home/apt,100,2,13,0.66,1,1 +27327,131476075,Brooklyn,Bushwick,40.68741,-73.91138000000001,Private room,51,1,19,0.94,8,175 +27328,156843123,Queens,Flushing,40.73858,-73.80809,Private room,65,2,4,0.28,1,364 +27329,536745,Brooklyn,Williamsburg,40.71846,-73.94489,Private room,95,3,6,0.3,3,0 +27330,152089883,Queens,Ozone Park,40.68918,-73.84262,Private room,50,7,1,0.05,1,363 +27331,156246842,Manhattan,Hell's Kitchen,40.7614,-73.98682,Shared room,68,3,9,0.45,3,0 +27332,3075854,Brooklyn,Sunset Park,40.64046,-74.01337,Private room,35,3,3,0.16,1,0 +27333,67974923,Manhattan,Inwood,40.864059999999995,-73.91971,Entire home/apt,110,4,15,0.77,1,19 +27334,8628781,Brooklyn,Williamsburg,40.71075,-73.95935,Private room,70,1,1,0.07,1,0 +27335,84491220,Brooklyn,Flatbush,40.650209999999994,-73.96293,Private room,65,2,13,0.66,1,310 +27336,32230738,Manhattan,Upper West Side,40.78737,-73.97293,Entire home/apt,145,3,75,3.73,1,110 +27337,154965091,Manhattan,Hell's Kitchen,40.76914,-73.98756999999999,Private room,125,2,61,3.02,4,95 +27338,141933,Brooklyn,Park Slope,40.67023,-73.98311,Entire home/apt,250,1,48,2.38,1,2 +27339,156921633,Manhattan,Kips Bay,40.741279999999996,-73.98069,Entire home/apt,275,2,93,4.61,1,66 +27340,88780960,Brooklyn,Bedford-Stuyvesant,40.6777,-73.92175999999999,Private room,31,7,1,0.05,1,0 +27341,154965091,Manhattan,Hell's Kitchen,40.76945,-73.98798000000001,Private room,125,2,48,2.36,4,74 +27342,9956828,Queens,Astoria,40.76168,-73.91976,Private room,55,3,2,0.1,1,0 +27343,156592177,Brooklyn,Bedford-Stuyvesant,40.68315,-73.91283,Private room,32,1,0,,1,0 +27344,45874239,Brooklyn,Park Slope,40.68081,-73.97865,Private room,65,1,0,,1,0 +27345,1406432,Brooklyn,Prospect Heights,40.67502,-73.96446999999999,Private room,75,3,38,1.88,2,66 +27346,156948703,Queens,East Elmhurst,40.76876,-73.87245,Private room,65,1,191,9.41,6,336 +27347,152532170,Brooklyn,Canarsie,40.64105,-73.91369,Entire home/apt,84,2,91,4.51,1,224 +27348,17947250,Manhattan,East Harlem,40.787040000000005,-73.94209000000001,Private room,90,1,20,1.0,2,0 +27349,36293942,Brooklyn,South Slope,40.663940000000004,-73.98298,Entire home/apt,150,2,2,0.1,1,0 +27350,37750296,Manhattan,East Harlem,40.794740000000004,-73.94932,Entire home/apt,185,1,81,3.98,1,65 +27351,1414616,Brooklyn,Bedford-Stuyvesant,40.68594,-73.94967,Private room,47,5,10,0.49,1,0 +27352,42783238,Manhattan,East Harlem,40.792809999999996,-73.95192,Private room,85,1,92,4.52,2,0 +27353,156994927,Queens,Astoria,40.762190000000004,-73.9237,Private room,60,1,2,0.12,1,0 +27354,113805886,Manhattan,Upper East Side,40.777359999999994,-73.95156,Entire home/apt,200,31,2,0.29,33,325 +27355,113805886,Manhattan,Upper East Side,40.77768,-73.94998000000001,Entire home/apt,160,31,2,0.19,33,324 +27356,134946389,Brooklyn,Bedford-Stuyvesant,40.684709999999995,-73.93885,Private room,50,2,12,0.61,5,10 +27357,37880566,Brooklyn,Williamsburg,40.71209,-73.9634,Entire home/apt,107,4,17,0.85,1,9 +27358,104775467,Manhattan,East Village,40.72549,-73.99198,Shared room,120,2,0,,1,0 +27359,114811999,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95195,Entire home/apt,150,2,21,1.38,1,48 +27360,3309100,Brooklyn,Williamsburg,40.70443,-73.93039,Private room,65,2,71,3.65,1,249 +27361,80227295,Brooklyn,Gowanus,40.6723,-73.99214,Private room,40,7,1,0.05,1,0 +27362,54966810,Brooklyn,Bushwick,40.70361,-73.9255,Private room,52,1,2,0.1,1,0 +27363,102758330,Brooklyn,Williamsburg,40.71432,-73.9497,Entire home/apt,358,3,57,2.89,1,182 +27364,69205338,Brooklyn,Williamsburg,40.71829,-73.95926,Entire home/apt,219,2,64,3.48,1,257 +27365,157038767,Manhattan,East Harlem,40.78988,-73.94955999999999,Private room,130,4,31,1.63,1,8 +27366,24052348,Manhattan,East Village,40.72052,-73.97806,Entire home/apt,157,30,0,,4,0 +27367,52976247,Manhattan,Financial District,40.70812,-74.00447,Private room,100,11,0,,1,0 +27368,157040162,Queens,Flushing,40.75456,-73.80417,Private room,48,1,37,2.19,1,39 +27369,156948703,Queens,East Elmhurst,40.77046,-73.87335999999999,Private room,60,1,257,12.54,6,351 +27370,156436372,Brooklyn,Williamsburg,40.7151,-73.95129,Entire home/apt,100,30,6,0.31,4,233 +27371,157056254,Brooklyn,Bushwick,40.70312,-73.91933,Private room,45,7,0,,1,0 +27372,19536596,Brooklyn,Cypress Hills,40.67794,-73.90639,Private room,48,1,114,5.65,5,235 +27373,121943616,Manhattan,Murray Hill,40.74791,-73.97939000000001,Entire home/apt,375,3,0,,1,0 +27374,40991179,Brooklyn,Williamsburg,40.721740000000004,-73.95806999999999,Private room,125,3,1,0.05,2,2 +27375,65824474,Manhattan,Upper West Side,40.79307,-73.97449,Entire home/apt,118,1,2,0.1,1,0 +27376,7138636,Manhattan,Upper West Side,40.78544,-73.97869,Entire home/apt,116,3,15,0.77,1,0 +27377,45835291,Manhattan,Harlem,40.82397,-73.95453,Private room,55,11,124,6.1,6,95 +27378,157067019,Queens,Flushing,40.76498,-73.82904,Private room,55,1,34,1.73,3,78 +27379,157067019,Queens,Flushing,40.765190000000004,-73.82979,Private room,85,1,5,0.27,3,85 +27380,157087092,Queens,Ditmars Steinway,40.7762,-73.90623000000001,Private room,47,1,0,,1,0 +27381,2326551,Manhattan,East Village,40.72625,-73.98404000000001,Private room,80,1,10,0.52,2,97 +27382,130797315,Queens,Richmond Hill,40.702690000000004,-73.82653,Entire home/apt,40,2,30,1.47,1,44 +27383,16674870,Brooklyn,Williamsburg,40.70632,-73.94978,Entire home/apt,102,3,0,,1,0 +27384,138154835,Bronx,Edenwald,40.89215,-73.83351,Entire home/apt,75,3,50,3.02,1,148 +27385,46363732,Brooklyn,Williamsburg,40.71372,-73.95149,Private room,69,2,5,0.25,1,0 +27386,4854680,Manhattan,Harlem,40.82841,-73.9473,Private room,59,1,0,,1,0 +27387,109904033,Manhattan,Midtown,40.75219,-73.9838,Private room,489,2,0,,1,311 +27388,4726371,Brooklyn,Gowanus,40.67889,-73.987,Private room,70,1,59,3.01,2,29 +27389,20417436,Manhattan,East Village,40.72552,-73.98165,Private room,90,4,0,,1,0 +27390,6690551,Manhattan,Washington Heights,40.8556,-73.93245,Private room,35,4,67,3.61,1,2 +27391,22296461,Manhattan,Harlem,40.818659999999994,-73.93796,Private room,50,1,8,0.4,1,0 +27392,15616046,Brooklyn,Prospect Heights,40.67807,-73.96446,Entire home/apt,100,5,1,0.05,1,0 +27393,81908583,Manhattan,Harlem,40.81865,-73.93684,Entire home/apt,80,1,89,4.44,1,47 +27394,2685965,Brooklyn,Crown Heights,40.67452,-73.9554,Private room,120,1,0,,1,0 +27395,142625186,Brooklyn,Bushwick,40.69104,-73.91685,Private room,75,1,44,2.16,2,0 +27396,19536596,Brooklyn,Bedford-Stuyvesant,40.67653,-73.90814,Private room,48,1,106,5.26,5,243 +27397,153836844,Queens,Astoria,40.76818,-73.9278,Private room,40,1,134,6.64,1,343 +27398,26529889,Manhattan,Midtown,40.74172,-73.98343,Entire home/apt,379,4,63,3.17,1,238 +27399,119848398,Bronx,Parkchester,40.83079,-73.8815,Private room,50,2,10,0.79,2,283 +27400,6840321,Manhattan,Midtown,40.7582,-73.97843,Entire home/apt,210,29,0,,1,340 +27401,48418910,Brooklyn,Bushwick,40.70316,-73.91304000000001,Private room,120,2,0,,2,0 +27402,39255079,Brooklyn,Prospect Heights,40.67411,-73.96531999999999,Private room,62,1,55,2.76,1,63 +27403,34773529,Brooklyn,Bedford-Stuyvesant,40.68207,-73.92208000000001,Private room,45,5,0,,1,0 +27404,67396790,Bronx,Mott Haven,40.8118,-73.92263,Private room,54,1,9,0.46,1,0 +27405,157218948,Queens,Ozone Park,40.6776,-73.84716999999999,Private room,75,3,1,0.2,1,83 +27406,118130596,Brooklyn,Crown Heights,40.67593,-73.95366,Entire home/apt,66,2,18,0.9,1,44 +27407,129627879,Brooklyn,Bushwick,40.702529999999996,-73.92362,Private room,44,2,1,0.05,1,0 +27408,2023993,Brooklyn,Bushwick,40.70239,-73.92931,Private room,65,1,35,1.8,1,52 +27409,28478382,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95983000000001,Private room,70,3,12,0.61,1,189 +27410,869758,Manhattan,NoHo,40.72632,-73.9928,Entire home/apt,249,10,0,,1,0 +27411,157275347,Queens,Jamaica,40.68054,-73.76711999999999,Entire home/apt,128,1,141,7.24,1,164 +27412,9450412,Brooklyn,Crown Heights,40.67133,-73.94526,Entire home/apt,128,2,8,0.4,1,0 +27413,5120169,Brooklyn,Bedford-Stuyvesant,40.683440000000004,-73.95329,Private room,50,2,2,0.1,2,0 +27414,157284647,Manhattan,East Harlem,40.78743,-73.95179,Entire home/apt,150,4,92,4.62,1,0 +27415,129201757,Brooklyn,Williamsburg,40.71387,-73.94378,Private room,75,3,1,0.05,1,0 +27416,4669488,Brooklyn,Bushwick,40.70113,-73.92205,Private room,60,3,1,0.05,2,0 +27417,35703699,Manhattan,East Village,40.721790000000006,-73.97904,Private room,80,2,1,0.05,1,0 +27418,157295347,Queens,Woodside,40.74485,-73.9054,Private room,40,1,22,1.12,3,332 +27419,157296660,Manhattan,Harlem,40.82604,-73.94998000000001,Private room,60,15,18,0.89,1,0 +27420,6022622,Queens,Sunnyside,40.7479,-73.91741999999999,Entire home/apt,125,2,2,0.11,1,0 +27421,444603,Manhattan,Kips Bay,40.738009999999996,-73.98099,Private room,75,3,2,0.1,1,0 +27422,90658585,Staten Island,Tompkinsville,40.63333,-74.08389,Private room,30,3,13,0.7,3,176 +27423,89013063,Manhattan,Upper West Side,40.78901,-73.98057,Entire home/apt,199,5,12,1.35,1,12 +27424,70915198,Brooklyn,Bay Ridge,40.63435,-74.02939,Private room,100,1,3,0.21,1,179 +27425,2670192,Manhattan,East Village,40.72736,-73.98907,Entire home/apt,385,4,1,0.05,1,89 +27426,38098992,Manhattan,Inwood,40.864709999999995,-73.92421999999999,Private room,47,2,3,0.23,2,0 +27427,24035151,Brooklyn,Crown Heights,40.67577,-73.95751,Entire home/apt,70,3,3,0.15,1,0 +27428,119669058,Brooklyn,Bedford-Stuyvesant,40.693740000000005,-73.95640999999999,Entire home/apt,265,4,22,1.49,34,309 +27429,122374980,Manhattan,Upper West Side,40.78481,-73.97648000000001,Shared room,60,1,73,3.65,4,88 +27430,39528519,Manhattan,Lower East Side,40.71136,-73.98808000000001,Shared room,33,100,0,,28,308 +27431,39528519,Manhattan,Lower East Side,40.71021,-73.98863,Shared room,29,100,0,,28,341 +27432,122374980,Manhattan,Upper West Side,40.78617,-73.97663,Shared room,60,1,67,3.31,4,81 +27433,39528519,Manhattan,Lower East Side,40.71165,-73.98708,Shared room,33,100,2,0.11,28,201 +27434,259240,Brooklyn,Williamsburg,40.71675,-73.95614,Entire home/apt,219,3,2,0.11,1,0 +27435,5132258,Manhattan,Harlem,40.82587,-73.95102,Private room,80,2,33,1.74,2,65 +27436,56184689,Queens,Astoria,40.76549,-73.91735,Entire home/apt,150,3,3,0.16,2,0 +27437,12838834,Manhattan,Lower East Side,40.72112,-73.98493,Private room,80,5,5,0.26,2,0 +27438,109146538,Queens,Jackson Heights,40.75184,-73.88722,Private room,60,1,46,2.29,1,30 +27439,93392260,Brooklyn,East New York,40.672709999999995,-73.89071,Private room,55,30,0,,2,364 +27440,35083858,Brooklyn,Bedford-Stuyvesant,40.69283,-73.94573000000001,Entire home/apt,100,1,0,,1,0 +27441,6336630,Brooklyn,Williamsburg,40.71346,-73.95733,Entire home/apt,125,2,3,0.16,1,0 +27442,11975404,Brooklyn,Bushwick,40.70085,-73.91929,Private room,72,3,1,0.05,2,0 +27443,157401742,Brooklyn,Bedford-Stuyvesant,40.69059,-73.92837,Private room,64,2,30,1.62,1,94 +27444,2107234,Brooklyn,Windsor Terrace,40.65503,-73.97774,Entire home/apt,149,2,17,0.86,1,1 +27445,104401765,Queens,Flushing,40.76014,-73.82263,Entire home/apt,99,2,42,2.56,1,5 +27446,155938307,Manhattan,Harlem,40.81264,-73.94601999999999,Entire home/apt,225,2,55,3.5,1,133 +27447,155403600,Manhattan,Harlem,40.81296,-73.94625,Entire home/apt,265,2,76,4.07,1,147 +27448,70412965,Manhattan,Hell's Kitchen,40.763709999999996,-73.99346,Entire home/apt,200,2,9,2.7,1,140 +27449,7247765,Manhattan,Morningside Heights,40.80431,-73.96615,Entire home/apt,80,12,1,0.05,1,0 +27450,1679545,Manhattan,Harlem,40.81272,-73.9517,Entire home/apt,111,7,5,0.28,1,8 +27451,21099366,Brooklyn,Williamsburg,40.71223,-73.96025,Entire home/apt,150,4,5,0.25,1,0 +27452,12062317,Manhattan,Washington Heights,40.84063,-73.93928000000001,Private room,55,1,108,5.34,1,13 +27453,49735439,Brooklyn,Bushwick,40.6963,-73.90874000000001,Private room,85,3,2,0.1,2,0 +27454,32203986,Manhattan,Lower East Side,40.71389,-73.98239000000001,Entire home/apt,400,3,8,1.1,1,91 +27455,157406894,Brooklyn,Bushwick,40.70426,-73.92551,Private room,60,8,7,0.36,1,8 +27456,93487618,Brooklyn,Dyker Heights,40.62547,-74.00647,Entire home/apt,90,1,50,2.48,2,287 +27457,148018227,Brooklyn,Flatbush,40.65059,-73.9637,Private room,70,3,0,,1,0 +27458,32528909,Brooklyn,Williamsburg,40.71935,-73.96049000000001,Entire home/apt,220,2,14,0.76,1,0 +27459,157430725,Brooklyn,Bushwick,40.6994,-73.93366999999999,Entire home/apt,120,1,94,5.03,3,240 +27460,14538085,Manhattan,Upper East Side,40.783120000000004,-73.95344,Private room,64,2,7,0.35,1,0 +27461,13077909,Brooklyn,Bushwick,40.70358,-73.91515,Private room,40,3,1,0.05,1,0 +27462,157446306,Brooklyn,Canarsie,40.62834,-73.90505999999999,Private room,70,2,37,2.19,1,67 +27463,130201799,Manhattan,SoHo,40.7244,-73.99884,Private room,169,3,31,1.54,1,69 +27464,157481445,Manhattan,Washington Heights,40.83878,-73.94731,Private room,75,2,78,3.9,1,230 +27465,151454628,Manhattan,Washington Heights,40.84482,-73.94029,Entire home/apt,139,2,85,4.21,1,125 +27466,8716709,Brooklyn,Williamsburg,40.711,-73.95701,Entire home/apt,300,2,0,,1,0 +27467,34614054,Brooklyn,Greenpoint,40.72483,-73.9437,Shared room,38,1,32,1.6,5,346 +27468,82874717,Brooklyn,Gowanus,40.66705,-73.9927,Private room,40,5,0,,1,0 +27469,48183551,Queens,Elmhurst,40.74425,-73.88311,Private room,58,6,38,1.96,5,288 +27470,4201991,Brooklyn,Williamsburg,40.7074,-73.941,Private room,43,1,36,1.97,1,0 +27471,3357991,Brooklyn,Bedford-Stuyvesant,40.693090000000005,-73.94662,Private room,60,1,7,0.36,1,0 +27472,26738513,Brooklyn,Bushwick,40.6929,-73.91681,Private room,32,3,25,1.62,3,90 +27473,155789674,Queens,Ditmars Steinway,40.77109,-73.91117,Private room,55,15,3,0.15,1,55 +27474,34161028,Brooklyn,Vinegar Hill,40.69925,-73.98266,Private room,100,3,2,0.11,3,96 +27475,6619124,Brooklyn,Williamsburg,40.716809999999995,-73.94912,Entire home/apt,99,4,5,0.25,1,0 +27476,157525611,Manhattan,Harlem,40.80015,-73.95483,Private room,50,1,3,0.15,1,0 +27477,68267774,Queens,Astoria,40.75819,-73.92687,Private room,47,30,1,0.05,1,90 +27478,157540393,Queens,Rosedale,40.66158,-73.74821,Private room,67,5,0,,1,90 +27479,156948703,Queens,East Elmhurst,40.76918,-73.8719,Private room,55,1,208,10.28,6,352 +27480,31755712,Brooklyn,Clinton Hill,40.685970000000005,-73.95983000000001,Entire home/apt,125,25,0,,1,172 +27481,20067071,Manhattan,Upper East Side,40.76959,-73.95600999999999,Entire home/apt,190,2,1,0.06,1,9 +27482,6995644,Brooklyn,Williamsburg,40.71763,-73.96008,Private room,50,4,3,0.16,1,0 +27483,157558461,Brooklyn,Bedford-Stuyvesant,40.690940000000005,-73.95144,Private room,80,3,5,0.27,3,65 +27484,2347173,Manhattan,Upper East Side,40.78217,-73.94844,Entire home/apt,150,6,17,1.13,1,0 +27485,157563838,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95906,Entire home/apt,99,2,0,,1,0 +27486,77904836,Brooklyn,Bushwick,40.69168,-73.91453,Entire home/apt,500,5,1,0.05,1,0 +27487,4431637,Manhattan,Upper West Side,40.79907,-73.96961999999999,Entire home/apt,225,6,4,0.22,1,177 +27488,138546022,Brooklyn,Crown Heights,40.67354,-73.95149,Private room,41,1,1,0.05,2,0 +27489,115589496,Manhattan,Hell's Kitchen,40.75976,-73.9955,Entire home/apt,140,2,26,1.41,1,0 +27490,48492315,Brooklyn,Bedford-Stuyvesant,40.683640000000004,-73.95821,Entire home/apt,85,3,3,0.15,1,0 +27491,38530455,Manhattan,Hell's Kitchen,40.76291,-73.98976,Private room,105,1,135,6.78,1,68 +27492,119313407,Brooklyn,Brownsville,40.66087,-73.90935,Entire home/apt,115,1,2,0.1,1,0 +27493,157599851,Brooklyn,Crown Heights,40.67286,-73.94758,Private room,31,6,0,,1,0 +27494,55021,Brooklyn,Fort Greene,40.69647,-73.97681,Entire home/apt,120,20,3,0.16,1,58 +27495,18844442,Manhattan,Upper East Side,40.779759999999996,-73.95409000000001,Private room,100,2,16,0.8,1,0 +27496,862657,Manhattan,Midtown,40.7451,-73.98139,Entire home/apt,250,2,11,0.57,1,22 +27497,146345538,Brooklyn,Bushwick,40.69168,-73.9132,Shared room,28,30,5,0.25,5,281 +27498,26379887,Brooklyn,Greenpoint,40.72891,-73.95618,Private room,150,2,4,0.2,1,0 +27499,146345538,Brooklyn,Bushwick,40.6951,-73.91157,Shared room,30,30,5,0.25,5,365 +27500,10994664,Brooklyn,Bushwick,40.69641,-73.90895,Shared room,30,30,2,0.11,8,325 +27501,22675680,Queens,Forest Hills,40.71825,-73.83502,Shared room,60,1,68,3.62,1,125 +27502,157653177,Manhattan,Harlem,40.80188,-73.95695,Entire home/apt,75,7,12,0.63,1,3 +27503,2079633,Brooklyn,Fort Greene,40.68558,-73.96965,Entire home/apt,150,5,0,,1,0 +27504,476260,Brooklyn,Williamsburg,40.717290000000006,-73.95051,Private room,50,2,1,0.05,1,0 +27505,5342802,Brooklyn,Bedford-Stuyvesant,40.6864,-73.91858,Private room,50,10,6,0.33,2,5 +27506,9678658,Brooklyn,Park Slope,40.674409999999995,-73.97614,Entire home/apt,160,4,7,0.36,1,0 +27507,128009952,Manhattan,Upper East Side,40.7827,-73.94537,Entire home/apt,125,5,1,0.05,1,0 +27508,22541573,Manhattan,Chelsea,40.75286,-73.99551,Entire home/apt,239,30,0,,87,364 +27509,152639417,Manhattan,Chinatown,40.71537,-73.99119,Entire home/apt,250,4,32,1.71,1,188 +27510,124409689,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9526,Entire home/apt,110,4,38,1.91,1,309 +27511,89337192,Brooklyn,Williamsburg,40.71035,-73.94774,Private room,95,3,43,2.54,1,59 +27512,11242618,Manhattan,SoHo,40.72208,-74.00216999999999,Entire home/apt,1000,5,0,,1,364 +27513,156668591,Brooklyn,Cobble Hill,40.68615,-73.9972,Entire home/apt,160,3,11,0.59,1,14 +27514,75248463,Brooklyn,East Flatbush,40.64358,-73.9462,Private room,118,2,2,0.11,4,45 +27515,157701235,Brooklyn,Bushwick,40.69871,-73.92877,Private room,70,1,93,4.67,3,17 +27516,157701601,Brooklyn,Williamsburg,40.707370000000004,-73.93961,Entire home/apt,125,4,2,0.11,1,0 +27517,157705263,Brooklyn,Bay Ridge,40.626020000000004,-74.023,Private room,55,3,0,,1,0 +27518,107417162,Brooklyn,Columbia St,40.685590000000005,-74.0011,Entire home/apt,130,3,6,0.3,1,106 +27519,9020694,Manhattan,Financial District,40.71079,-74.00934000000001,Private room,80,30,1,0.32,1,339 +27520,157075387,Manhattan,Hell's Kitchen,40.76495,-73.98844,Entire home/apt,248,2,19,0.96,1,0 +27521,11056171,Brooklyn,Bushwick,40.69812,-73.93151,Private room,48,4,6,0.32,1,6 +27522,78251,Brooklyn,Brooklyn Heights,40.7007,-73.99517,Entire home/apt,150,30,0,,2,65 +27523,8471197,Brooklyn,Williamsburg,40.70981,-73.95343000000001,Entire home/apt,175,3,28,1.43,1,0 +27524,28369674,Brooklyn,Williamsburg,40.70551,-73.93454,Private room,67,3,33,1.66,2,127 +27525,156672333,Brooklyn,Bay Ridge,40.6247,-74.03094,Private room,80,3,1,0.05,1,363 +27526,22420999,Queens,Richmond Hill,40.69473,-73.83061,Private room,45,2,0,,5,363 +27527,3281798,Manhattan,East Village,40.730140000000006,-73.98151999999999,Entire home/apt,180,3,8,0.42,1,10 +27528,5140888,Brooklyn,Crown Heights,40.67315,-73.94534,Private room,31,7,0,,1,0 +27529,4434595,Brooklyn,Bedford-Stuyvesant,40.68717,-73.94556999999999,Entire home/apt,98,3,12,0.62,1,0 +27530,151777787,Brooklyn,Brownsville,40.67375,-73.90813,Private room,40,1,6,0.3,2,0 +27531,22507452,Brooklyn,Williamsburg,40.705090000000006,-73.94228000000001,Entire home/apt,100,3,0,,1,0 +27532,26135855,Manhattan,Murray Hill,40.74601,-73.97823000000001,Entire home/apt,200,1,46,2.36,1,0 +27533,152959594,Brooklyn,DUMBO,40.70231,-73.98938000000001,Entire home/apt,125,2,1,0.05,1,0 +27534,55308025,Brooklyn,Downtown Brooklyn,40.69339,-73.98581,Entire home/apt,90,3,7,0.37,1,0 +27535,758152,Queens,Sunnyside,40.74457,-73.9194,Entire home/apt,82,21,0,,1,0 +27536,876116,Brooklyn,Bedford-Stuyvesant,40.67954,-73.94800000000001,Entire home/apt,100,4,5,0.25,1,0 +27537,5761098,Manhattan,Chelsea,40.74023,-73.99994000000001,Entire home/apt,485,3,2,0.32,1,1 +27538,28290772,Queens,Astoria,40.76848,-73.90768,Private room,43,2,42,2.09,2,340 +27539,157183215,Manhattan,Kips Bay,40.7398,-73.98163000000001,Entire home/apt,175,2,1,0.05,1,3 +27540,85945543,Manhattan,Harlem,40.81223,-73.93992,Entire home/apt,200,3,0,,1,0 +27541,1743381,Manhattan,East Harlem,40.79313,-73.93991,Entire home/apt,108,7,3,0.16,1,20 +27542,12327841,Brooklyn,Bedford-Stuyvesant,40.6891,-73.92168000000001,Entire home/apt,80,5,4,0.21,1,0 +27543,39472888,Brooklyn,Williamsburg,40.71369,-73.93669,Private room,100,5,41,2.11,1,125 +27544,42141935,Manhattan,East Harlem,40.80834,-73.94049,Entire home/apt,89,1,2,0.11,1,0 +27545,122942281,Brooklyn,Brownsville,40.66621,-73.92073,Entire home/apt,95,7,28,1.51,1,19 +27546,4696622,Brooklyn,Greenpoint,40.727470000000004,-73.95461999999999,Entire home/apt,95,3,0,,1,0 +27547,4934112,Brooklyn,Crown Heights,40.66451,-73.93236999999999,Private room,46,1,49,2.51,1,81 +27548,15105524,Brooklyn,Williamsburg,40.71522,-73.96313,Entire home/apt,200,3,2,0.11,1,15 +27549,157825168,Brooklyn,Williamsburg,40.7185,-73.94888,Private room,148,2,0,,1,0 +27550,78942575,Brooklyn,Brooklyn Heights,40.70017,-73.99202,Private room,120,1,4,0.2,2,0 +27551,102685703,Manhattan,Chelsea,40.74394,-73.99923000000001,Private room,120,4,0,,1,0 +27552,647100,Manhattan,Greenwich Village,40.73247,-73.99998000000001,Private room,130,3,11,0.55,1,0 +27553,157846554,Manhattan,Hell's Kitchen,40.76573,-73.98682,Entire home/apt,225,5,8,0.4,1,0 +27554,81928702,Manhattan,Harlem,40.82645,-73.94457,Entire home/apt,125,3,23,1.18,1,166 +27555,2179407,Manhattan,Upper West Side,40.7872,-73.97639000000001,Private room,80,2,0,,1,0 +27556,3043800,Brooklyn,Williamsburg,40.718270000000004,-73.94381,Private room,90,3,0,,1,0 +27557,144017474,Brooklyn,Greenpoint,40.73392,-73.95528,Entire home/apt,55,1,5,0.29,2,0 +27558,12080664,Manhattan,East Village,40.732,-73.98706,Entire home/apt,500,6,0,,1,0 +27559,9655028,Brooklyn,Bedford-Stuyvesant,40.68542,-73.91741,Entire home/apt,175,7,1,0.05,1,0 +27560,74517682,Brooklyn,Williamsburg,40.706540000000004,-73.93178,Private room,75,3,1,0.05,1,0 +27561,3282906,Brooklyn,Williamsburg,40.71359,-73.96553,Private room,80,1,5,0.25,1,17 +27562,857599,Manhattan,Tribeca,40.718379999999996,-74.00495,Entire home/apt,320,3,1,0.09,1,93 +27563,21248,Brooklyn,Sunset Park,40.65015,-74.01084,Entire home/apt,300,2,1,0.05,1,0 +27564,66386802,Brooklyn,Bensonhurst,40.61097,-73.9983,Private room,78,1,21,1.52,1,30 +27565,14991456,Manhattan,Morningside Heights,40.814409999999995,-73.95939,Entire home/apt,100,2,11,0.57,1,0 +27566,18037444,Brooklyn,Park Slope,40.67545,-73.97516,Entire home/apt,213,5,1,0.05,1,0 +27567,81460578,Manhattan,East Village,40.723890000000004,-73.98346,Private room,141,5,5,0.25,1,0 +27568,24916010,Queens,Astoria,40.76448,-73.92164,Entire home/apt,100,3,1,0.12,1,0 +27569,801975,Brooklyn,Crown Heights,40.677640000000004,-73.94493,Entire home/apt,175,3,38,1.93,2,357 +27570,14603774,Manhattan,East Village,40.73281,-73.9899,Entire home/apt,225,1,1,0.05,1,0 +27571,8652278,Brooklyn,Greenpoint,40.7347,-73.95479,Entire home/apt,87,4,1,0.05,1,0 +27572,129494490,Brooklyn,Crown Heights,40.6703,-73.93241,Private room,36,10,0,,1,0 +27573,42237462,Manhattan,Harlem,40.827220000000004,-73.9457,Entire home/apt,78,6,4,0.2,1,0 +27574,10974696,Manhattan,West Village,40.73057,-74.00458,Entire home/apt,199,3,16,0.81,1,3 +27575,99346174,Queens,Sunnyside,40.745490000000004,-73.92465,Private room,50,5,0,,1,0 +27576,144893680,Brooklyn,Flatbush,40.63231,-73.96314,Entire home/apt,125,3,40,2.02,1,0 +27577,20810101,Brooklyn,Bedford-Stuyvesant,40.68245,-73.9471,Private room,100,1,8,2.07,2,23 +27578,156505456,Brooklyn,East New York,40.662209999999995,-73.88868000000001,Private room,37,3,15,0.81,13,90 +27579,157067019,Queens,Flushing,40.76498,-73.8301,Private room,78,1,17,0.87,3,82 +27580,32798079,Manhattan,Harlem,40.81691,-73.93735,Private room,98,2,94,4.65,1,117 +27581,157438293,Brooklyn,Williamsburg,40.718920000000004,-73.94932,Private room,120,1,0,,1,0 +27582,149576949,Brooklyn,Bedford-Stuyvesant,40.685190000000006,-73.92868,Private room,250,1,0,,1,0 +27583,157967816,Brooklyn,Greenpoint,40.72207,-73.94226,Private room,70,1,82,4.12,3,43 +27584,631374,Brooklyn,Clinton Hill,40.6903,-73.96883000000001,Private room,188,7,1,0.05,1,83 +27585,16956704,Brooklyn,Bushwick,40.68461,-73.91101,Private room,75,1,2,0.11,1,0 +27586,18743582,Brooklyn,Williamsburg,40.71665,-73.94169000000001,Private room,60,2,21,1.06,1,0 +27587,1264407,Manhattan,East Harlem,40.79503,-73.93953,Private room,63,3,2,0.1,1,0 +27588,8442344,Manhattan,Harlem,40.799620000000004,-73.95359,Private room,125,3,0,,1,0 +27589,209073,Manhattan,Hell's Kitchen,40.76226,-73.99519000000001,Entire home/apt,175,7,1,0.1,1,147 +27590,69852641,Manhattan,Hell's Kitchen,40.76481,-73.98845,Entire home/apt,2200,2,6,0.35,3,217 +27591,28831479,Brooklyn,Williamsburg,40.70622,-73.9495,Private room,95,2,4,0.36,2,28 +27592,96346005,Manhattan,Upper West Side,40.77268,-73.98933000000001,Private room,135,3,69,3.47,3,70 +27593,96346005,Manhattan,Upper West Side,40.77559,-73.98748,Private room,126,3,77,3.98,3,45 +27594,839657,Queens,Sunnyside,40.74706,-73.91830999999999,Private room,70,2,35,1.8,1,306 +27595,27636450,Manhattan,East Village,40.72639,-73.99051999999999,Private room,150,2,0,,2,0 +27596,145021,Brooklyn,Williamsburg,40.715090000000004,-73.96342,Entire home/apt,150,2,6,0.42,1,13 +27597,754952,Manhattan,Upper West Side,40.790690000000005,-73.96614,Entire home/apt,395,3,1,0.05,1,0 +27598,145552870,Manhattan,Upper East Side,40.775659999999995,-73.95065,Entire home/apt,165,3,2,0.1,1,0 +27599,536745,Brooklyn,Williamsburg,40.71759,-73.94549,Private room,69,2,9,0.46,3,0 +27600,271527,Manhattan,Harlem,40.81023,-73.94142,Entire home/apt,850,3,4,0.22,2,178 +27601,158054102,Manhattan,Harlem,40.83233,-73.94561999999999,Private room,47,2,66,3.28,3,49 +27602,848748,Brooklyn,Greenpoint,40.72365,-73.95188,Entire home/apt,200,3,30,1.52,2,101 +27603,49750805,Manhattan,East Harlem,40.79772,-73.94809000000001,Private room,75,3,0,,2,0 +27604,37249745,Brooklyn,Borough Park,40.63265,-74.00397,Entire home/apt,58,2,6,0.32,1,0 +27605,135204393,Brooklyn,Crown Heights,40.67034,-73.92777,Entire home/apt,90,2,31,1.63,1,45 +27606,158054102,Manhattan,Harlem,40.83139,-73.94672,Private room,47,2,68,3.38,3,49 +27607,26809413,Brooklyn,Flatbush,40.64658,-73.96909000000001,Entire home/apt,95,2,27,1.46,1,167 +27608,10396247,Brooklyn,Park Slope,40.67655,-73.97303000000001,Entire home/apt,180,4,4,0.22,1,0 +27609,63749946,Brooklyn,Crown Heights,40.67433,-73.9248,Private room,54,4,11,0.56,3,0 +27610,158087989,Manhattan,Chelsea,40.74025,-74.00066,Entire home/apt,400,3,21,1.09,1,0 +27611,16240062,Manhattan,Upper West Side,40.79951,-73.96436,Entire home/apt,175,1,37,1.93,1,176 +27612,17887542,Manhattan,Upper East Side,40.76401,-73.95823,Entire home/apt,138,7,1,0.05,1,0 +27613,158097857,Manhattan,Harlem,40.81425,-73.94187,Entire home/apt,110,3,5,0.31,1,0 +27614,157826237,Queens,Flushing,40.75314,-73.81964,Entire home/apt,245,3,50,2.51,1,40 +27615,5962328,Queens,Flushing,40.75963,-73.82218,Entire home/apt,95,30,0,,15,214 +27616,86077156,Brooklyn,Williamsburg,40.708870000000005,-73.95591,Entire home/apt,125,2,71,3.92,2,83 +27617,100935364,Brooklyn,Prospect Heights,40.6818,-73.97551999999999,Private room,45,1,13,0.65,2,0 +27618,25601048,Brooklyn,Williamsburg,40.71262,-73.94815,Private room,100,4,4,0.39,1,107 +27619,12672143,Manhattan,Financial District,40.70362,-74.00721,Entire home/apt,195,2,4,0.21,1,0 +27620,1249685,Manhattan,Harlem,40.81095,-73.93942,Entire home/apt,101,2,21,1.09,1,0 +27621,42330917,Queens,Astoria,40.75949,-73.91143000000001,Private room,49,1,19,0.96,1,0 +27622,52889093,Bronx,Kingsbridge,40.88302,-73.90899,Private room,70,1,8,0.43,1,0 +27623,158137594,Manhattan,Chelsea,40.74727,-74.00261,Entire home/apt,185,7,0,,1,0 +27624,2793254,Brooklyn,Bushwick,40.70466,-73.92043000000001,Private room,100,3,26,1.7,3,170 +27625,10197359,Brooklyn,Flatbush,40.65168,-73.96410999999999,Entire home/apt,100,3,13,0.91,1,7 +27626,13546922,Brooklyn,Williamsburg,40.7123,-73.95228,Entire home/apt,249,3,14,0.71,1,17 +27627,8334983,Manhattan,East Village,40.724109999999996,-73.98872,Entire home/apt,99,5,4,0.2,1,0 +27628,9306976,Brooklyn,Greenpoint,40.733990000000006,-73.95541999999999,Private room,60,2,35,2.41,2,85 +27629,74541079,Brooklyn,Crown Heights,40.669109999999996,-73.93666,Entire home/apt,459,4,1,1.0,9,87 +27630,158174749,Brooklyn,East Flatbush,40.65553,-73.93642,Private room,70,2,13,0.66,1,264 +27631,158191277,Brooklyn,Crown Heights,40.67668,-73.93997,Private room,60,1,19,0.94,3,85 +27632,68707439,Manhattan,Tribeca,40.71989,-74.00465,Entire home/apt,497,14,5,0.25,3,0 +27633,158198197,Brooklyn,Williamsburg,40.71273,-73.95026,Private room,130,1,8,0.52,1,0 +27634,74541079,Brooklyn,Crown Heights,40.66894,-73.93649,Entire home/apt,59,4,34,2.13,9,49 +27635,66835858,Brooklyn,Williamsburg,40.71504,-73.95394,Private room,60,3,30,1.53,1,42 +27636,68707439,Manhattan,Tribeca,40.71994,-74.00332,Entire home/apt,350,14,21,1.08,3,181 +27637,113121846,Brooklyn,Williamsburg,40.71091,-73.95747,Private room,75,2,19,0.95,2,0 +27638,90333053,Brooklyn,Clinton Hill,40.685140000000004,-73.95981,Entire home/apt,160,4,6,0.54,1,15 +27639,23190446,Manhattan,Upper West Side,40.7723,-73.98764,Entire home/apt,550,5,5,0.27,1,7 +27640,158216643,Brooklyn,Williamsburg,40.720259999999996,-73.961,Private room,60,10,5,0.27,1,0 +27641,158219768,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92961,Entire home/apt,100,2,73,3.72,1,140 +27642,158222655,Brooklyn,Williamsburg,40.71901,-73.9571,Private room,100,1,69,3.55,1,85 +27643,30723568,Manhattan,East Village,40.72672,-73.98810999999999,Entire home/apt,250,1,0,,1,0 +27644,13711192,Brooklyn,Park Slope,40.67078,-73.97948000000001,Entire home/apt,105,5,0,,1,0 +27645,158229004,Queens,Astoria,40.76919,-73.9305,Entire home/apt,70,1,0,,1,0 +27646,7118588,Brooklyn,Greenpoint,40.72683,-73.95905,Entire home/apt,105,4,4,0.2,1,3 +27647,14294841,Brooklyn,Fort Greene,40.69399,-73.97153,Private room,75,2,0,,1,0 +27648,157701235,Brooklyn,Bushwick,40.700340000000004,-73.9284,Private room,75,7,100,4.97,3,25 +27649,156948703,Queens,East Elmhurst,40.770559999999996,-73.87191,Private room,52,1,207,10.38,6,325 +27650,55468128,Brooklyn,Windsor Terrace,40.6602,-73.98244,Private room,42,1,88,4.44,7,248 +27651,506299,Brooklyn,Bushwick,40.70668,-73.92099,Private room,55,8,0,,1,0 +27652,60153355,Brooklyn,Bedford-Stuyvesant,40.679840000000006,-73.95044,Entire home/apt,120,11,8,0.42,1,189 +27653,3464645,Manhattan,Hell's Kitchen,40.75575,-73.99374,Private room,175,2,44,2.26,3,133 +27654,16068417,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93263,Entire home/apt,80,3,8,0.41,1,229 +27655,3312235,Brooklyn,Williamsburg,40.71353,-73.96441999999999,Entire home/apt,220,5,10,0.5,1,349 +27656,37084362,Brooklyn,Williamsburg,40.714690000000004,-73.94097,Private room,101,3,14,0.76,1,0 +27657,108836422,Manhattan,Harlem,40.81524,-73.95249,Private room,50,13,0,,1,0 +27658,4298654,Brooklyn,Bedford-Stuyvesant,40.68145,-73.93132,Entire home/apt,73,45,2,0.11,1,43 +27659,643120,Brooklyn,Williamsburg,40.71581,-73.95543,Entire home/apt,275,4,0,,4,5 +27660,35387196,Brooklyn,Prospect-Lefferts Gardens,40.661120000000004,-73.9539,Entire home/apt,110,12,2,0.17,4,6 +27661,40891373,Manhattan,Lower East Side,40.7192,-73.99011,Entire home/apt,125,3,25,1.27,1,28 +27662,49750805,Manhattan,East Harlem,40.7967,-73.94913000000001,Private room,75,3,2,0.11,2,0 +27663,113121846,Brooklyn,Williamsburg,40.711059999999996,-73.95954,Entire home/apt,130,3,3,0.16,2,0 +27664,11028650,Manhattan,Lower East Side,40.71935,-73.98442,Private room,69,5,0,,1,0 +27665,90721937,Brooklyn,Bushwick,40.68635,-73.91187,Private room,25,1,9,0.45,2,0 +27666,158324654,Manhattan,Hell's Kitchen,40.76123,-73.99022,Entire home/apt,185,1,176,8.92,1,252 +27667,125697192,Brooklyn,Williamsburg,40.71417,-73.93767,Private room,60,2,75,3.78,1,23 +27668,20287472,Manhattan,Harlem,40.80275,-73.95116999999999,Entire home/apt,125,20,0,,1,0 +27669,158048189,Brooklyn,Fort Hamilton,40.618179999999995,-74.03464,Entire home/apt,150,4,1,0.05,1,0 +27670,158330638,Manhattan,Hell's Kitchen,40.76008,-73.98946,Private room,175,1,3,0.21,1,0 +27671,158334115,Manhattan,Upper East Side,40.762370000000004,-73.96374,Entire home/apt,500,2,12,0.78,1,85 +27672,158335126,Manhattan,Harlem,40.81702,-73.93881999999999,Entire home/apt,130,3,11,0.56,1,89 +27673,158338077,Brooklyn,Kensington,40.63929,-73.9718,Private room,67,1,29,1.79,2,143 +27674,45044964,Queens,Queens Village,40.72417,-73.76053,Private room,65,1,15,1.14,2,349 +27675,158344372,Bronx,Wakefield,40.88688,-73.84789,Private room,70,2,5,1.16,1,365 +27676,5375870,Brooklyn,Crown Heights,40.6725,-73.94788,Entire home/apt,130,4,46,2.39,1,28 +27677,25275076,Brooklyn,Williamsburg,40.7153,-73.93906,Entire home/apt,92,3,0,,1,0 +27678,105640471,Brooklyn,Sunset Park,40.638529999999996,-74.01628000000001,Private room,51,1,21,1.08,8,130 +27679,90058061,Brooklyn,Sunset Park,40.66035,-73.99794,Private room,45,7,2,0.1,1,0 +27680,90721937,Brooklyn,Bushwick,40.68772,-73.91386,Shared room,20,1,0,,2,0 +27681,64609445,Brooklyn,Clinton Hill,40.694790000000005,-73.96812,Entire home/apt,43,3,7,0.38,2,0 +27682,105640471,Brooklyn,Sunset Park,40.64136,-74.01709,Private room,55,1,7,0.4,8,140 +27683,158399244,Brooklyn,Williamsburg,40.709920000000004,-73.95064,Entire home/apt,175,1,92,4.85,4,138 +27684,158406020,Brooklyn,East Flatbush,40.64902,-73.9286,Private room,45,1,15,0.76,2,269 +27685,4032781,Brooklyn,Bedford-Stuyvesant,40.68327,-73.94986,Entire home/apt,70,3,4,0.21,1,0 +27686,19298428,Brooklyn,Williamsburg,40.705090000000006,-73.93471,Entire home/apt,150,2,6,0.31,1,0 +27687,125997954,Brooklyn,Williamsburg,40.72011,-73.95846999999999,Private room,65,1,1,0.05,1,0 +27688,4952512,Brooklyn,Williamsburg,40.707190000000004,-73.95411999999999,Private room,140,1,12,0.85,1,156 +27689,33211768,Manhattan,Nolita,40.72364,-73.99577,Entire home/apt,200,1,1,0.05,1,0 +27690,114008316,Manhattan,East Harlem,40.78951,-73.94605,Entire home/apt,195,30,5,0.3,1,282 +27691,102933312,Manhattan,Little Italy,40.71927,-73.99663000000001,Private room,45,25,0,,1,0 +27692,27551651,Manhattan,SoHo,40.72591,-74.00395999999999,Entire home/apt,225,2,9,0.49,1,6 +27693,4636552,Manhattan,Upper East Side,40.778420000000004,-73.95903,Entire home/apt,150,3,1,0.05,1,0 +27694,26498283,Brooklyn,Sunset Park,40.64736,-74.0106,Private room,40,5,3,0.16,1,0 +27695,31583052,Brooklyn,Sunset Park,40.66427,-73.99243,Entire home/apt,105,3,3,0.16,1,0 +27696,107786131,Manhattan,Upper West Side,40.79957,-73.96902,Private room,150,2,0,,1,0 +27697,82706379,Brooklyn,Park Slope,40.67471,-73.98274,Entire home/apt,195,3,47,2.39,1,55 +27698,22730721,Brooklyn,Greenpoint,40.71958,-73.94796,Entire home/apt,225,6,8,0.47,1,0 +27699,2212344,Brooklyn,Williamsburg,40.71358,-73.95634,Private room,94,4,2,0.1,3,0 +27700,128142697,Manhattan,Upper East Side,40.76615,-73.97118,Entire home/apt,220,4,1,0.05,2,0 +27701,156505456,Brooklyn,East New York,40.66114,-73.88889,Private room,30,3,28,1.43,13,90 +27702,6792247,Manhattan,SoHo,40.72566,-74.00075,Entire home/apt,187,2,7,0.64,1,4 +27703,49736414,Brooklyn,Bushwick,40.69044,-73.90836999999999,Private room,60,1,0,,1,0 +27704,156505456,Brooklyn,East New York,40.66098,-73.88828000000001,Private room,45,3,29,1.57,13,90 +27705,29243209,Brooklyn,Clinton Hill,40.68712,-73.96297,Entire home/apt,200,2,0,,2,0 +27706,46224196,Manhattan,Upper East Side,40.763090000000005,-73.96439000000001,Shared room,89,2,1,0.05,1,0 +27707,5982945,Manhattan,Harlem,40.80791,-73.947,Private room,97,2,5,0.26,1,365 +27708,15811194,Brooklyn,Brownsville,40.67322,-73.91018000000001,Private room,49,3,30,1.62,1,62 +27709,16273067,Manhattan,Hell's Kitchen,40.76145,-73.98912,Private room,147,4,1,0.05,1,0 +27710,17906387,Brooklyn,Bushwick,40.69668,-73.91395,Private room,26,4,1,0.05,1,0 +27711,158504512,Queens,Cambria Heights,40.70225,-73.72945,Private room,31,1,2,0.1,1,0 +27712,156436372,Brooklyn,Williamsburg,40.71501,-73.95125,Entire home/apt,100,30,6,0.44,4,333 +27713,3329425,Manhattan,Washington Heights,40.837340000000005,-73.94506,Entire home/apt,120,2,1,0.07,1,210 +27714,158554204,Brooklyn,Bedford-Stuyvesant,40.67917,-73.93103,Entire home/apt,700,1,7,0.42,1,303 +27715,156833182,Brooklyn,East Flatbush,40.64676,-73.94819,Entire home/apt,100,3,41,2.07,1,0 +27716,158552987,Manhattan,Harlem,40.831720000000004,-73.9488,Private room,80,1,2,0.11,1,0 +27717,158048302,Queens,Ditmars Steinway,40.774159999999995,-73.90755,Entire home/apt,83,5,13,0.68,1,365 +27718,34614054,Brooklyn,Greenpoint,40.72317,-73.94635,Shared room,35,3,15,0.78,5,301 +27719,12586492,Manhattan,East Village,40.72336,-73.98079,Entire home/apt,133,28,9,0.54,2,211 +27720,12776493,Brooklyn,Williamsburg,40.70378,-73.94306,Entire home/apt,92,3,4,0.21,1,0 +27721,34614054,Brooklyn,Greenpoint,40.72477,-73.94465,Shared room,35,2,16,0.81,5,274 +27722,154266431,Manhattan,East Village,40.72419,-73.98294,Private room,95,3,36,1.83,3,9 +27723,152636597,Bronx,Mott Haven,40.810390000000005,-73.92478,Private room,73,1,1,0.08,1,0 +27724,4227606,Manhattan,Midtown,40.75697,-73.97909,Entire home/apt,255,4,5,0.26,2,0 +27725,965946,Brooklyn,Park Slope,40.672709999999995,-73.97663,Entire home/apt,200,5,1,1.0,1,31 +27726,4379024,Manhattan,Harlem,40.80486,-73.94889,Entire home/apt,225,3,2,0.13,1,1 +27727,14321520,Manhattan,Hell's Kitchen,40.765209999999996,-73.98507,Entire home/apt,275,4,0,,1,0 +27728,27293055,Manhattan,Chelsea,40.74143,-74.00027,Entire home/apt,159,3,3,0.16,1,0 +27729,158599708,Brooklyn,Prospect Heights,40.681090000000005,-73.96904,Entire home/apt,195,3,47,2.44,1,0 +27730,4654206,Manhattan,SoHo,40.721309999999995,-73.99816,Entire home/apt,495,5,2,0.17,1,2 +27731,48146336,Manhattan,Hell's Kitchen,40.76173,-73.99325,Entire home/apt,130,30,4,0.43,20,268 +27732,82119233,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95232,Entire home/apt,135,3,46,2.36,2,255 +27733,13015084,Queens,Sunnyside,40.74543,-73.92399,Entire home/apt,100,3,35,1.78,1,2 +27734,157262166,Brooklyn,Prospect-Lefferts Gardens,40.656620000000004,-73.95344,Private room,59,2,102,5.2,2,347 +27735,21153742,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95194000000001,Private room,150,3,2,0.1,1,364 +27736,157262166,Brooklyn,Prospect-Lefferts Gardens,40.65848,-73.952,Private room,65,2,99,5.03,2,334 +27737,7760308,Brooklyn,Williamsburg,40.71425,-73.96276,Entire home/apt,175,1,33,1.96,1,0 +27738,104458,Brooklyn,Gowanus,40.678309999999996,-73.99324,Entire home/apt,380,4,18,0.98,1,8 +27739,158628576,Queens,Sunnyside,40.74048,-73.9273,Entire home/apt,170,1,1,0.09,1,0 +27740,124042625,Queens,Corona,40.74223,-73.86408,Private room,50,1,4,0.2,1,95 +27741,23596542,Brooklyn,Crown Heights,40.6768,-73.93529000000001,Entire home/apt,78,5,2,0.11,1,0 +27742,31697949,Brooklyn,Sunset Park,40.66475,-73.99629,Private room,30,2,7,0.36,1,0 +27743,35169885,Manhattan,Chelsea,40.73649,-73.99237,Entire home/apt,200,10,3,0.16,1,0 +27744,158634669,Brooklyn,Sheepshead Bay,40.58747,-73.9587,Entire home/apt,80,1,42,2.11,1,28 +27745,26744799,Brooklyn,Bath Beach,40.60674,-74.00428000000001,Entire home/apt,99,3,39,2.37,1,306 +27746,41118093,Brooklyn,Park Slope,40.67329,-73.98311,Entire home/apt,125,3,2,0.1,1,0 +27747,1010743,Manhattan,Kips Bay,40.74295,-73.97391999999999,Entire home/apt,165,3,2,0.11,1,2 +27748,4333342,Manhattan,East Village,40.72833,-73.97926,Entire home/apt,159,6,6,0.31,2,12 +27749,129602851,Bronx,Pelham Bay,40.846070000000005,-73.83842,Entire home/apt,99,7,1,0.06,2,349 +27750,158692215,Manhattan,Harlem,40.82738,-73.94559,Private room,50,3,1,0.05,1,0 +27751,38358245,Brooklyn,Prospect Heights,40.67665,-73.96985,Entire home/apt,96,7,1,0.06,1,0 +27752,9953808,Brooklyn,Williamsburg,40.70782,-73.9403,Private room,65,2,1,0.07,1,0 +27753,53507512,Manhattan,Chelsea,40.74328,-73.9991,Entire home/apt,226,4,0,,1,0 +27754,108618132,Brooklyn,Bensonhurst,40.61497,-74.00531,Private room,65,2,30,1.55,4,305 +27755,66797339,Manhattan,Hell's Kitchen,40.760259999999995,-73.98875,Private room,250,3,1,0.05,1,0 +27756,158710682,Manhattan,Midtown,40.7548,-73.96966,Entire home/apt,193,2,75,3.84,3,105 +27757,35020019,Brooklyn,Greenpoint,40.72513,-73.94829,Private room,110,2,21,1.37,1,336 +27758,98014,Brooklyn,South Slope,40.668209999999995,-73.98834000000001,Entire home/apt,245,3,0,,1,0 +27759,2368634,Manhattan,Upper West Side,40.76814,-73.98404000000001,Entire home/apt,220,5,2,0.1,1,0 +27760,108618132,Brooklyn,Bensonhurst,40.61465,-74.00312,Private room,70,2,15,0.77,4,236 +27761,205285,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94164,Entire home/apt,80,30,7,0.5,1,0 +27762,108618132,Brooklyn,Bensonhurst,40.61466,-74.00504000000001,Private room,70,2,24,1.22,4,315 +27763,158725307,Manhattan,NoHo,40.72909,-73.99125,Entire home/apt,200,2,81,4.24,2,194 +27764,11387702,Manhattan,Upper West Side,40.78037,-73.98021,Entire home/apt,145,7,0,,1,0 +27765,50048064,Manhattan,Morningside Heights,40.80369,-73.96238000000001,Private room,50,1,0,,1,0 +27766,2101238,Brooklyn,Park Slope,40.676809999999996,-73.97910999999999,Entire home/apt,170,2,9,0.45,1,0 +27767,16866,Manhattan,East Village,40.7301,-73.98239000000001,Private room,135,3,32,1.7,2,76 +27768,33836993,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92949,Private room,65,7,1,0.05,1,0 +27769,1406432,Brooklyn,Prospect Heights,40.67471,-73.96408000000001,Private room,60,3,62,3.11,2,49 +27770,68707439,Manhattan,Tribeca,40.71953,-74.00386,Entire home/apt,339,14,10,0.53,3,335 +27771,5269420,Brooklyn,Bedford-Stuyvesant,40.68739,-73.95405,Entire home/apt,125,2,2,0.11,1,0 +27772,158745515,Manhattan,Hell's Kitchen,40.76424,-73.98713000000001,Private room,60,1,0,,1,0 +27773,64837680,Manhattan,Harlem,40.827740000000006,-73.94609,Private room,60,1,1,0.05,1,0 +27774,8905097,Manhattan,Chelsea,40.74245,-73.99348,Entire home/apt,750,12,1,0.61,1,332 +27775,78999831,Manhattan,Lower East Side,40.72221,-73.99084,Private room,200,2,0,,1,0 +27776,105130665,Brooklyn,Crown Heights,40.6703,-73.94181999999999,Entire home/apt,250,3,44,2.33,1,52 +27777,415290,Manhattan,Upper East Side,40.764359999999996,-73.96836,Entire home/apt,325,1,0,,1,0 +27778,7097558,Queens,South Ozone Park,40.67078,-73.79164,Entire home/apt,75,1,154,8.24,2,0 +27779,16962957,Manhattan,Lower East Side,40.71925,-73.99418,Private room,129,5,3,0.31,4,153 +27780,54921733,Brooklyn,Flatbush,40.6437,-73.96769,Private room,85,7,3,0.18,3,0 +27781,26095943,Manhattan,Morningside Heights,40.80423,-73.96515,Private room,60,10,0,,1,2 +27782,119848398,Bronx,Parkchester,40.83067,-73.88024,Private room,35,1,14,0.7,2,1 +27783,60291768,Queens,Elmhurst,40.73914,-73.87116,Entire home/apt,99,4,42,2.17,2,64 +27784,4575233,Brooklyn,Bedford-Stuyvesant,40.69259,-73.92881,Entire home/apt,140,3,2,0.1,1,0 +27785,72205446,Manhattan,Murray Hill,40.74866,-73.97846,Entire home/apt,1000,3,10,2.07,1,310 +27786,117711581,Brooklyn,Midwood,40.62914,-73.9575,Entire home/apt,116,2,2,0.11,1,0 +27787,33082247,Brooklyn,Greenpoint,40.72391,-73.94214000000001,Private room,60,3,2,0.1,1,0 +27788,119029523,Brooklyn,Fort Hamilton,40.62231,-74.02885,Entire home/apt,130,4,4,0.22,3,324 +27789,465290,Brooklyn,Williamsburg,40.71989,-73.95837,Entire home/apt,350,175,5,0.26,1,362 +27790,6335178,Brooklyn,Flatbush,40.63146,-73.96226999999999,Entire home/apt,95,3,24,1.25,1,277 +27791,47735494,Queens,Rego Park,40.72826,-73.87015,Shared room,21,1,11,0.55,4,0 +27792,50760546,Manhattan,Tribeca,40.72005,-74.00455,Entire home/apt,499,30,0,,31,179 +27793,51538706,Manhattan,East Harlem,40.786390000000004,-73.94869,Entire home/apt,108,3,1,0.05,1,0 +27794,153141476,Queens,Briarwood,40.70593,-73.81468000000001,Entire home/apt,50,1,47,2.38,3,40 +27795,17692768,Manhattan,West Village,40.73226,-74.00184,Entire home/apt,175,6,11,0.62,1,0 +27796,78534291,Manhattan,East Village,40.72202,-73.97909,Entire home/apt,230,5,3,0.16,1,0 +27797,10440477,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93565,Private room,60,1,1,0.05,2,0 +27798,85162903,Brooklyn,Williamsburg,40.7115,-73.95746,Entire home/apt,130,3,1,0.05,1,0 +27799,5443000,Manhattan,East Village,40.73103,-73.98233,Entire home/apt,299,2,21,1.08,2,2 +27800,1512819,Brooklyn,Flatbush,40.65314,-73.95304,Private room,40,5,12,0.7,5,67 +27801,156042211,Brooklyn,Canarsie,40.64942,-73.89783,Private room,40,4,4,0.22,4,37 +27802,3644416,Manhattan,Nolita,40.72207,-73.99596,Entire home/apt,270,7,0,,1,0 +27803,5742326,Manhattan,Harlem,40.8217,-73.95336,Private room,48,1,1,0.05,1,0 +27804,59281169,Manhattan,Greenwich Village,40.73449,-73.99299,Entire home/apt,300,1,29,1.46,1,39 +27805,137522531,Queens,Flushing,40.75759,-73.80815,Entire home/apt,228,5,50,2.63,7,178 +27806,72466752,Brooklyn,Bushwick,40.70247,-73.91793,Private room,60,4,16,0.83,1,42 +27807,156246842,Manhattan,Theater District,40.760690000000004,-73.9863,Private room,99,3,46,2.49,3,25 +27808,60163700,Manhattan,Harlem,40.82347,-73.95228,Private room,65,14,13,0.69,4,0 +27809,30322413,Manhattan,Midtown,40.76398,-73.98034,Private room,325,1,0,,1,0 +27810,158781381,Brooklyn,East New York,40.662040000000005,-73.88946,Entire home/apt,90,2,54,2.84,2,255 +27811,158731650,Manhattan,Hell's Kitchen,40.75605,-73.99797,Private room,139,1,0,,1,0 +27812,32168079,Brooklyn,Sheepshead Bay,40.58612,-73.95014,Private room,50,30,0,,3,166 +27813,158925455,Brooklyn,East Flatbush,40.63794,-73.93125,Entire home/apt,60,2,46,2.34,1,300 +27814,158961969,Brooklyn,Flatbush,40.64124,-73.9688,Entire home/apt,110,1,45,2.31,1,18 +27815,2385790,Brooklyn,Bedford-Stuyvesant,40.695679999999996,-73.93831,Private room,69,1,0,,2,0 +27816,28226289,Manhattan,East Village,40.72428,-73.97957,Entire home/apt,500,4,1,0.05,1,0 +27817,150522833,Manhattan,Midtown,40.7513,-73.98333000000001,Entire home/apt,600,1,20,1.09,1,169 +27818,158974584,Manhattan,East Village,40.72456,-73.98764,Entire home/apt,125,5,3,0.16,1,0 +27819,15544818,Bronx,Pelham Gardens,40.86264,-73.84854,Entire home/apt,62,2,61,3.22,1,68 +27820,2285348,Manhattan,East Village,40.72929,-73.98625,Entire home/apt,196,2,7,0.36,1,0 +27821,1155050,Manhattan,Chinatown,40.715720000000005,-73.99114,Entire home/apt,299,2,80,4.01,1,199 +27822,157558461,Brooklyn,Bedford-Stuyvesant,40.69001,-73.95136,Private room,80,3,2,0.11,3,5 +27823,119651060,Manhattan,Hell's Kitchen,40.761509999999994,-73.98816,Private room,111,4,1,0.05,1,0 +27824,157558461,Brooklyn,Bedford-Stuyvesant,40.69102,-73.95132,Private room,80,3,3,0.16,3,88 +27825,155014420,Manhattan,East Village,40.722559999999994,-73.97925,Entire home/apt,184,30,11,0.61,1,313 +27826,19138757,Brooklyn,Crown Heights,40.67517,-73.9564,Private room,60,3,4,0.22,1,302 +27827,158997467,Brooklyn,Williamsburg,40.70966,-73.95666999999999,Private room,75,2,41,2.11,2,0 +27828,51152932,Manhattan,Inwood,40.867940000000004,-73.91629,Entire home/apt,70,1,4,0.2,1,3 +27829,11984140,Manhattan,East Village,40.729409999999994,-73.97916,Entire home/apt,210,28,2,0.65,1,78 +27830,6502688,Brooklyn,Williamsburg,40.70592,-73.93513,Entire home/apt,165,2,7,0.37,1,0 +27831,158920456,Brooklyn,Bedford-Stuyvesant,40.6786,-73.9255,Private room,40,1,13,0.65,1,184 +27832,24528756,Manhattan,Hell's Kitchen,40.76617,-73.9883,Private room,170,1,3,0.15,1,0 +27833,1931990,Brooklyn,Clinton Hill,40.688590000000005,-73.96035,Entire home/apt,93,3,2,0.13,1,0 +27834,48960226,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95469,Private room,47,1,5,0.25,1,0 +27835,48159029,Brooklyn,Bedford-Stuyvesant,40.691790000000005,-73.95915,Entire home/apt,200,1,0,,1,0 +27836,24123958,Manhattan,West Village,40.73522,-73.99983,Entire home/apt,175,2,19,1.03,1,0 +27837,39739038,Manhattan,East Harlem,40.79741,-73.93493000000001,Private room,120,1,3,0.22,2,179 +27838,159023062,Brooklyn,Crown Heights,40.67372,-73.91648,Entire home/apt,70,2,12,0.61,1,0 +27839,35567813,Brooklyn,Williamsburg,40.715759999999996,-73.94088,Entire home/apt,175,2,0,,1,35 +27840,7412033,Manhattan,Upper East Side,40.76951,-73.96191999999999,Entire home/apt,105,2,14,0.71,1,0 +27841,158764663,Brooklyn,Crown Heights,40.66505,-73.93875,Entire home/apt,275,2,78,4.06,1,325 +27842,66472428,Manhattan,Harlem,40.81029,-73.94344,Entire home/apt,165,3,1,0.05,1,0 +27843,159027993,Queens,Flushing,40.75997,-73.81286999999999,Private room,48,4,14,0.72,2,171 +27844,159042433,Manhattan,Hell's Kitchen,40.761720000000004,-73.99428,Entire home/apt,195,3,3,0.16,1,0 +27845,18146582,Brooklyn,Park Slope,40.6789,-73.97909,Entire home/apt,280,4,2,0.11,1,0 +27846,25766360,Manhattan,Lower East Side,40.71235,-73.99070999999999,Private room,100,21,0,,1,332 +27847,1280731,Queens,Springfield Gardens,40.66578,-73.77301,Entire home/apt,80,1,214,10.86,1,307 +27848,159020652,Brooklyn,Bushwick,40.68235,-73.90381,Private room,48,2,58,3.04,1,349 +27849,3239797,Manhattan,Upper West Side,40.79401,-73.9639,Entire home/apt,228,7,1,0.08,1,0 +27850,159088461,Queens,Howard Beach,40.66802,-73.84803000000001,Private room,55,2,0,,1,363 +27851,44232555,Brooklyn,Williamsburg,40.70358,-73.93698,Entire home/apt,60,4,2,0.11,1,0 +27852,5962328,Queens,Flushing,40.758990000000004,-73.82245,Entire home/apt,90,30,3,0.3,15,281 +27853,159091490,Brooklyn,Gowanus,40.6786,-73.98380999999999,Private room,139,1,82,4.16,17,355 +27854,23818224,Queens,Sunnyside,40.74523,-73.91676,Entire home/apt,95,14,5,0.26,1,0 +27855,159091490,Brooklyn,Gowanus,40.677209999999995,-73.98444,Private room,129,1,7,0.36,17,364 +27856,22658012,Manhattan,Hell's Kitchen,40.766329999999996,-73.9875,Entire home/apt,150,4,0,,1,0 +27857,159091490,Brooklyn,Gowanus,40.678509999999996,-73.98439,Private room,119,1,9,0.46,17,364 +27858,27552154,Manhattan,Upper East Side,40.7627,-73.96225,Private room,90,3,1,0.05,2,0 +27859,157967024,Manhattan,Chinatown,40.71508,-73.99275,Entire home/apt,125,4,5,0.26,1,0 +27860,13898361,Brooklyn,Williamsburg,40.711729999999996,-73.96164,Private room,55,1,1,0.05,1,0 +27861,72926334,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93132,Entire home/apt,79,1,65,3.78,3,92 +27862,30185313,Manhattan,Greenwich Village,40.73103,-74.00140999999999,Entire home/apt,120,27,4,0.24,1,153 +27863,93705483,Manhattan,West Village,40.73158,-74.00151,Private room,138,2,92,4.65,2,60 +27864,27090361,Manhattan,Greenwich Village,40.73213,-73.99323000000001,Entire home/apt,126,3,2,0.1,1,0 +27865,159027871,Manhattan,Upper West Side,40.802040000000005,-73.96611999999999,Private room,35,10,2,0.11,1,0 +27866,80512824,Manhattan,Harlem,40.81855,-73.94447,Private room,46,1,5,0.25,1,0 +27867,120047243,Queens,Elmhurst,40.73688,-73.87644,Private room,55,15,0,,1,0 +27868,93011199,Brooklyn,Bedford-Stuyvesant,40.68588,-73.95551,Private room,50,1,24,1.21,1,0 +27869,89158733,Manhattan,Chinatown,40.71447,-73.99433,Private room,60,15,0,,2,0 +27870,69124870,Brooklyn,Williamsburg,40.708009999999994,-73.95902,Private room,400,1,23,1.36,4,77 +27871,142662928,Brooklyn,Bedford-Stuyvesant,40.69292,-73.93463,Entire home/apt,160,5,0,,1,0 +27872,9127501,Brooklyn,Crown Heights,40.67737,-73.94986,Private room,70,3,0,,1,115 +27873,34692600,Brooklyn,Bushwick,40.69608,-73.91973,Private room,45,2,1,0.05,1,0 +27874,6897051,Manhattan,Upper West Side,40.785579999999996,-73.97703,Private room,340,2,0,,2,362 +27875,43490965,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94069,Private room,50,2,4,0.21,1,0 +27876,35404558,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95801,Private room,300,1,4,0.2,1,0 +27877,41813694,Queens,Ditmars Steinway,40.778529999999996,-73.90934,Entire home/apt,95,3,8,0.67,1,3 +27878,159150155,Manhattan,Hell's Kitchen,40.76793,-73.98583,Private room,150,1,1,0.05,1,0 +27879,57882444,Bronx,Allerton,40.85973,-73.86699,Entire home/apt,70,2,7,0.36,1,0 +27880,51032135,Brooklyn,Greenpoint,40.727540000000005,-73.95527,Private room,45,1,1,0.08,1,0 +27881,44761940,Brooklyn,Williamsburg,40.71544,-73.95075,Entire home/apt,280,2,19,0.99,1,0 +27882,159014806,Manhattan,Financial District,40.71025,-74.00756,Private room,45,7,3,0.15,1,0 +27883,14760116,Manhattan,Murray Hill,40.7466,-73.97044,Entire home/apt,400,5,0,,1,0 +27884,34693688,Manhattan,Midtown,40.764109999999995,-73.98074,Entire home/apt,400,3,0,,1,0 +27885,59749036,Queens,Maspeth,40.72609,-73.90111999999999,Entire home/apt,245,2,93,4.79,1,201 +27886,14540215,Brooklyn,Bushwick,40.69834,-73.93436,Private room,50,14,1,0.05,1,0 +27887,22630406,Brooklyn,Prospect Heights,40.673759999999994,-73.96433,Entire home/apt,125,2,14,0.73,1,9 +27888,16356565,Brooklyn,Flatbush,40.63435,-73.95026999999999,Entire home/apt,95,2,41,2.13,2,0 +27889,47343420,Brooklyn,Kensington,40.64407,-73.97428000000001,Entire home/apt,150,2,10,0.54,2,0 +27890,2233850,Brooklyn,Williamsburg,40.708940000000005,-73.94847,Entire home/apt,100,2,20,1.08,1,0 +27891,128536016,Brooklyn,Williamsburg,40.7146,-73.96282,Entire home/apt,385,10,0,,1,0 +27892,9214999,Manhattan,East Village,40.728,-73.98603,Entire home/apt,125,25,3,0.15,1,0 +27893,21046508,Manhattan,Harlem,40.82502,-73.94919,Entire home/apt,100,12,0,,1,0 +27894,122045009,Brooklyn,Flatbush,40.6416,-73.96905,Private room,105,1,73,3.95,1,139 +27895,1703438,Brooklyn,Carroll Gardens,40.675740000000005,-73.99783000000001,Private room,59,5,1,0.05,1,0 +27896,5111838,Manhattan,Chelsea,40.74661,-73.99245,Private room,99,7,19,1.02,1,11 +27897,120437116,Brooklyn,Red Hook,40.67896,-74.00518000000001,Shared room,80,3,0,,1,0 +27898,6874341,Brooklyn,Park Slope,40.67145,-73.97143,Entire home/apt,115,3,2,0.11,1,0 +27899,131476075,Brooklyn,Bushwick,40.686370000000004,-73.91159,Private room,53,2,19,1.03,8,177 +27900,39346203,Queens,Forest Hills,40.72573,-73.85292,Private room,45,2,8,0.4,1,0 +27901,94214493,Brooklyn,East Flatbush,40.65532,-73.91793,Private room,80,7,1,0.36,9,364 +27902,140433148,Brooklyn,Bushwick,40.69634,-73.91323,Shared room,43,3,32,1.86,3,104 +27903,135554944,Manhattan,Harlem,40.81088,-73.9441,Entire home/apt,275,2,2,0.11,1,0 +27904,130623170,Brooklyn,Park Slope,40.680009999999996,-73.97603000000001,Entire home/apt,200,3,27,2.67,1,336 +27905,1317913,Manhattan,Chelsea,40.74116,-74.00053,Private room,200,3,0,,2,158 +27906,1684573,Manhattan,Upper West Side,40.78624,-73.96951999999999,Entire home/apt,96,3,2,0.1,1,0 +27907,1349340,Brooklyn,Clinton Hill,40.68769,-73.96118,Private room,65,3,2,0.19,2,0 +27908,4495261,Manhattan,East Village,40.72631,-73.98507,Entire home/apt,180,7,2,0.11,1,0 +27909,159312334,Brooklyn,Williamsburg,40.71078,-73.96359,Private room,95,8,0,,1,13 +27910,5067783,Manhattan,Hell's Kitchen,40.765640000000005,-73.99118,Private room,125,1,53,3.0,1,42 +27911,48735753,Manhattan,Harlem,40.81589,-73.9446,Private room,36,2,0,,1,0 +27912,41911368,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.96042,Private room,95,1,48,2.63,2,77 +27913,25814915,Manhattan,East Village,40.72755,-73.98755,Entire home/apt,150,4,1,0.05,1,0 +27914,90541057,Brooklyn,Crown Heights,40.67672,-73.92964,Private room,85,1,32,1.62,1,0 +27915,23443666,Manhattan,West Village,40.73494,-74.00228,Entire home/apt,190,7,1,0.05,1,0 +27916,159362106,Brooklyn,Williamsburg,40.71345,-73.95938000000001,Private room,61,1,25,1.27,1,7 +27917,49661012,Manhattan,Upper East Side,40.77408,-73.95504,Entire home/apt,130,5,6,0.33,1,7 +27918,7018179,Manhattan,Flatiron District,40.74044,-73.98777,Entire home/apt,180,5,4,0.22,1,0 +27919,6186498,Queens,Ridgewood,40.699459999999995,-73.90833,Private room,60,2,81,4.1,1,34 +27920,159369488,Queens,Arverne,40.59686,-73.80261999999999,Entire home/apt,200,2,18,1.3,1,202 +27921,8869512,Brooklyn,Crown Heights,40.67391,-73.95581,Private room,65,3,1,0.06,1,0 +27922,7724142,Manhattan,Upper West Side,40.77562,-73.98756,Entire home/apt,1066,1,2,0.2,1,365 +27923,7709305,Manhattan,Midtown,40.75393,-73.97316,Entire home/apt,200,2,29,1.58,1,18 +27924,153025974,Manhattan,Washington Heights,40.84182,-73.93898,Entire home/apt,130,3,25,1.36,1,155 +27925,158191137,Manhattan,East Village,40.728629999999995,-73.99008,Private room,70,3,8,0.4,1,0 +27926,159379318,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94360999999999,Entire home/apt,95,7,4,0.21,1,1 +27927,158757567,Brooklyn,Park Slope,40.6749,-73.97593,Entire home/apt,400,3,42,2.22,1,46 +27928,15907782,Manhattan,Chelsea,40.74031,-73.9986,Entire home/apt,150,3,9,0.48,1,13 +27929,21816029,Brooklyn,Greenpoint,40.72871,-73.95107,Entire home/apt,115,2,17,0.86,1,0 +27930,50175698,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94492,Entire home/apt,80,5,1,0.05,1,0 +27931,33658455,Manhattan,West Village,40.73642,-73.9992,Entire home/apt,345,3,61,3.17,1,150 +27932,18554823,Manhattan,Marble Hill,40.87634,-73.90948,Entire home/apt,110,1,85,4.4,1,52 +27933,44514403,Manhattan,Morningside Heights,40.804140000000004,-73.96576,Entire home/apt,150,2,23,1.18,1,0 +27934,67069129,Manhattan,Harlem,40.80934,-73.95456999999999,Entire home/apt,265,2,65,3.34,2,257 +27935,20346657,Brooklyn,Williamsburg,40.70941,-73.93862,Private room,42,7,4,0.22,1,53 +27936,159435936,Manhattan,Upper West Side,40.788340000000005,-73.97215,Entire home/apt,95,15,5,0.27,3,0 +27937,36757798,Manhattan,West Village,40.731759999999994,-74.00348000000001,Entire home/apt,130,6,8,0.41,1,0 +27938,49213265,Brooklyn,Crown Heights,40.67025,-73.93558,Entire home/apt,99,3,4,0.22,1,0 +27939,23039272,Brooklyn,Bedford-Stuyvesant,40.682140000000004,-73.95477,Private room,51,1,1,0.05,1,0 +27940,11844979,Brooklyn,Williamsburg,40.717690000000005,-73.96339,Entire home/apt,300,3,20,1.04,4,318 +27941,3094754,Brooklyn,Sunset Park,40.65602,-74.00509,Entire home/apt,259,2,25,1.3,2,355 +27942,9572607,Manhattan,Lower East Side,40.7235,-73.99096,Entire home/apt,250,2,5,0.25,3,4 +27943,9572607,Manhattan,Lower East Side,40.72291,-73.98915,Private room,71,1,5,0.31,3,17 +27944,2431679,Manhattan,Chelsea,40.75117,-73.99305,Private room,155,2,7,0.36,1,0 +27945,68550512,Manhattan,West Village,40.73738,-74.00012,Entire home/apt,135,4,39,2.03,1,21 +27946,8637211,Manhattan,Harlem,40.81919,-73.94554000000001,Private room,89,1,105,5.33,4,84 +27947,18405989,Brooklyn,Windsor Terrace,40.652809999999995,-73.97298,Entire home/apt,150,7,0,,1,0 +27948,88852894,Brooklyn,Sheepshead Bay,40.59664,-73.95300999999999,Private room,250,2,0,,1,178 +27949,4950822,Manhattan,Lower East Side,40.71952,-73.98495,Entire home/apt,150,2,0,,1,0 +27950,24092147,Brooklyn,Bushwick,40.69186,-73.9221,Private room,75,2,1,0.06,1,88 +27951,33435096,Brooklyn,Sunset Park,40.6588,-73.99096999999999,Private room,50,2,44,2.29,1,298 +27952,57291936,Brooklyn,Williamsburg,40.71568,-73.94415,Private room,70,2,16,0.85,1,3 +27953,67349249,Manhattan,Midtown,40.76427,-73.98208000000001,Entire home/apt,450,2,0,,4,229 +27954,159494837,Queens,Far Rockaway,40.59722,-73.75936999999999,Private room,68,1,66,3.54,1,51 +27955,133564044,Brooklyn,Flatbush,40.6429,-73.95253000000001,Private room,80,1,1,0.05,1,0 +27956,95175637,Manhattan,East Village,40.725629999999995,-73.98169,Private room,200,1,2,0.1,1,0 +27957,67349249,Manhattan,Midtown,40.76574,-73.98018,Entire home/apt,450,2,0,,4,229 +27958,67349249,Manhattan,Midtown,40.763870000000004,-73.98056,Entire home/apt,398,2,0,,4,243 +27959,67349249,Manhattan,Midtown,40.76443,-73.98151999999999,Entire home/apt,398,2,0,,4,243 +27960,29599980,Brooklyn,Bushwick,40.70636,-73.91935,Entire home/apt,41,3,1,0.05,1,0 +27961,130183779,Manhattan,Financial District,40.70407,-74.00885,Entire home/apt,200,1,13,0.67,1,1 +27962,159156636,Manhattan,Hell's Kitchen,40.756679999999996,-73.99096999999999,Private room,120,1,89,5.16,3,0 +27963,41874064,Manhattan,Little Italy,40.71801,-73.9984,Entire home/apt,160,1,22,1.12,2,23 +27964,43756609,Brooklyn,Bushwick,40.686820000000004,-73.91189,Private room,55,1,2,0.1,2,0 +27965,48056617,Manhattan,Harlem,40.82058,-73.95801999999999,Private room,37,15,0,,1,0 +27966,6938506,Brooklyn,Prospect Heights,40.678709999999995,-73.9678,Private room,60,1,14,0.71,1,0 +27967,24559343,Brooklyn,Greenpoint,40.72133,-73.94903000000001,Entire home/apt,135,2,7,0.36,1,2 +27968,120638903,Queens,Astoria,40.76543,-73.92248000000001,Entire home/apt,95,6,2,0.1,1,0 +27969,159526448,Brooklyn,Williamsburg,40.721920000000004,-73.95597,Entire home/apt,350,2,16,0.82,1,0 +27970,9282079,Manhattan,Gramercy,40.73581,-73.98918,Entire home/apt,245,4,12,0.62,1,0 +27971,97243693,Manhattan,Murray Hill,40.74812,-73.97663,Entire home/apt,150,3,57,3.07,2,49 +27972,11967922,Brooklyn,Greenpoint,40.72421,-73.95364000000001,Entire home/apt,10,1,93,4.73,1,32 +27973,57002433,Manhattan,East Harlem,40.8001,-73.94081,Private room,69,1,77,4.0,2,0 +27974,157842225,Manhattan,East Harlem,40.79999,-73.94233,Entire home/apt,250,3,62,3.23,1,82 +27975,87814281,Manhattan,Harlem,40.82978,-73.94823000000001,Private room,88,1,3,0.15,2,0 +27976,159540426,Manhattan,Hell's Kitchen,40.7676,-73.9855,Private room,200,1,1,0.05,1,0 +27977,131993395,Brooklyn,Flatlands,40.62857,-73.94071,Entire home/apt,160,2,53,2.83,1,230 +27978,125492013,Queens,Elmhurst,40.7418,-73.8861,Private room,40,5,0,,2,0 +27979,158969505,Manhattan,Lower East Side,40.72083,-73.99308,Entire home/apt,150,30,1,0.1,9,226 +27980,159587137,Brooklyn,Clinton Hill,40.690870000000004,-73.96639,Entire home/apt,280,3,1,0.44,2,343 +27981,22095324,Brooklyn,Bushwick,40.69566,-73.91611,Entire home/apt,65,5,42,2.16,1,1 +27982,4010826,Brooklyn,Red Hook,40.67787,-74.00764000000001,Entire home/apt,150,10,2,0.1,1,0 +27983,159592932,Brooklyn,East New York,40.66769,-73.88421,Entire home/apt,159,4,50,2.57,1,89 +27984,120762452,Manhattan,Murray Hill,40.74998,-73.97543,Entire home/apt,150,30,3,0.21,50,365 +27985,2946041,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95362,Entire home/apt,195,3,0,,1,0 +27986,5945683,Manhattan,Upper East Side,40.76384,-73.96355,Entire home/apt,200,4,3,0.19,1,3 +27987,1377201,Brooklyn,Vinegar Hill,40.70152,-73.98406999999999,Entire home/apt,100,30,2,0.12,1,31 +27988,159610596,Manhattan,Financial District,40.70458,-74.00755,Entire home/apt,425,1,127,6.68,6,253 +27989,29478455,Brooklyn,Clinton Hill,40.690490000000004,-73.96842,Entire home/apt,115,3,4,0.21,1,2 +27990,83422323,Manhattan,Upper West Side,40.794540000000005,-73.97541,Private room,50,1,14,0.71,1,0 +27991,159623005,Manhattan,Hell's Kitchen,40.75597,-73.99494,Entire home/apt,412,30,0,,1,0 +27992,7344277,Manhattan,Midtown,40.75249,-73.97384,Private room,93,3,1,0.05,1,0 +27993,3212890,Manhattan,Midtown,40.76733,-73.98074,Entire home/apt,160,3,52,2.66,1,27 +27994,32168079,Brooklyn,Sheepshead Bay,40.58788,-73.94955,Private room,50,180,0,,3,155 +27995,22225590,Manhattan,East Village,40.73245,-73.98848000000001,Entire home/apt,210,4,4,0.39,1,0 +27996,158444643,Manhattan,Hell's Kitchen,40.754529999999995,-73.99526,Entire home/apt,250,3,57,2.97,1,0 +27997,158710682,Manhattan,Midtown,40.75298,-73.96911999999999,Private room,90,1,0,,3,221 +27998,159610596,Manhattan,Financial District,40.7059,-74.00604,Private room,225,1,42,2.18,6,290 +27999,61175161,Queens,Astoria,40.76885,-73.90751999999999,Private room,40,3,1,0.05,1,0 +28000,159610596,Manhattan,Financial District,40.70426,-74.00711,Entire home/apt,215,1,152,7.9,6,339 +28001,23005139,Brooklyn,Crown Heights,40.67512,-73.96185,Private room,55,3,0,,1,0 +28002,158710682,Manhattan,Midtown,40.75346,-73.96871999999999,Private room,90,1,2,0.1,3,217 +28003,10979123,Manhattan,Hell's Kitchen,40.7548,-73.9965,Entire home/apt,170,3,26,1.4,1,1 +28004,17525654,Brooklyn,Windsor Terrace,40.65537,-73.9819,Entire home/apt,160,5,0,,1,0 +28005,2749343,Brooklyn,Bedford-Stuyvesant,40.68541,-73.94691999999999,Entire home/apt,80,5,1,0.05,1,0 +28006,11911154,Queens,Ditmars Steinway,40.77129,-73.91712,Private room,35,14,0,,1,0 +28007,70055156,Manhattan,Midtown,40.75893,-73.9636,Entire home/apt,200,1,77,4.03,1,268 +28008,3105557,Brooklyn,Williamsburg,40.703829999999996,-73.94431,Private room,43,2,6,0.31,1,0 +28009,7683267,Brooklyn,Prospect Heights,40.67933,-73.96911999999999,Entire home/apt,100,1,61,3.23,1,0 +28010,15049077,Brooklyn,Crown Heights,40.66373,-73.93222,Private room,55,30,1,0.1,2,137 +28011,21003445,Brooklyn,Flatbush,40.63531,-73.96546,Private room,55,2,3,0.16,1,65 +28012,42954481,Manhattan,East Village,40.72801,-73.98736,Private room,95,1,3,0.16,1,0 +28013,2856748,Manhattan,Murray Hill,40.74864,-73.97383,Entire home/apt,350,30,0,,49,330 +28014,916377,Brooklyn,Williamsburg,40.70807,-73.95099,Private room,42,7,1,0.05,1,0 +28015,157642917,Manhattan,Upper East Side,40.77089,-73.95945999999999,Entire home/apt,125,5,13,0.68,1,0 +28016,159735335,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.96014,Private room,80,1,29,1.51,1,0 +28017,61391963,Manhattan,Upper West Side,40.78383,-73.97529,Entire home/apt,133,30,8,0.43,91,301 +28018,120762452,Manhattan,Murray Hill,40.75033,-73.97546,Entire home/apt,150,30,2,0.14,50,365 +28019,1144452,Manhattan,Chelsea,40.74045,-74.00046999999999,Private room,12,3,8,0.59,1,37 +28020,39253607,Brooklyn,Williamsburg,40.712959999999995,-73.93838000000001,Entire home/apt,120,2,1,0.05,1,0 +28021,158997467,Brooklyn,Williamsburg,40.70902,-73.95724,Private room,50,2,28,1.46,2,0 +28022,37616350,Brooklyn,Park Slope,40.68057,-73.97617,Entire home/apt,250,2,15,0.8,1,0 +28023,158191277,Brooklyn,Crown Heights,40.6768,-73.95345999999999,Private room,70,5,12,0.67,3,0 +28024,325453,Brooklyn,Crown Heights,40.66715,-73.96084,Private room,80,5,0,,1,0 +28025,159757725,Manhattan,East Harlem,40.80296,-73.9369,Private room,40,7,1,0.05,1,0 +28026,50072658,Brooklyn,Williamsburg,40.712109999999996,-73.94058000000001,Entire home/apt,79,1,168,8.57,1,153 +28027,2092300,Manhattan,Morningside Heights,40.80513,-73.9632,Entire home/apt,120,3,3,0.16,1,0 +28028,54907254,Brooklyn,Park Slope,40.67607,-73.97166999999999,Entire home/apt,139,7,1,0.05,1,0 +28029,427019,Brooklyn,Williamsburg,40.705909999999996,-73.92916,Private room,66,2,48,2.6,2,5 +28030,159769278,Bronx,Pelham Gardens,40.867059999999995,-73.84674,Private room,40,2,17,1.23,1,17 +28031,131206517,Brooklyn,Williamsburg,40.69999,-73.95275,Entire home/apt,100,4,4,0.21,1,0 +28032,62635426,Brooklyn,Greenpoint,40.72566,-73.94823000000001,Private room,50,3,2,0.21,1,0 +28033,46705025,Brooklyn,Boerum Hill,40.68837,-73.98716999999999,Entire home/apt,185,3,18,0.91,1,0 +28034,8177511,Manhattan,East Village,40.72648,-73.97904,Private room,55,7,0,,1,0 +28035,41865841,Manhattan,Lower East Side,40.71325,-73.99009000000001,Private room,160,2,2,0.1,1,0 +28036,60632753,Manhattan,Greenwich Village,40.73616,-73.99614,Private room,80,5,4,0.22,1,0 +28037,155812868,Brooklyn,Brighton Beach,40.57962,-73.96535,Entire home/apt,119,1,19,1.02,2,135 +28038,72395034,Manhattan,Kips Bay,40.74416,-73.97702,Entire home/apt,125,3,0,,1,0 +28039,4089207,Brooklyn,Cypress Hills,40.67842,-73.88768,Entire home/apt,155,3,64,3.41,2,287 +28040,159794474,Manhattan,Upper East Side,40.777,-73.95770999999999,Private room,76,1,0,,1,0 +28041,1483578,Staten Island,St. George,40.64537,-74.08381,Private room,100,2,77,3.9,1,336 +28042,159156636,Manhattan,Hell's Kitchen,40.75656,-73.99063000000001,Private room,120,1,109,5.97,3,0 +28043,159811367,Brooklyn,Bedford-Stuyvesant,40.69532,-73.93995,Private room,38,30,4,0.21,10,365 +28044,1033792,Brooklyn,Park Slope,40.67835,-73.98209,Entire home/apt,80,5,2,0.11,1,0 +28045,33195820,Brooklyn,Bushwick,40.70027,-73.91268000000001,Private room,36,21,0,,1,0 +28046,159091490,Brooklyn,Gowanus,40.67848,-73.98385999999999,Private room,119,1,14,0.71,17,363 +28047,159091490,Brooklyn,Gowanus,40.67868,-73.98254,Private room,119,1,20,1.02,17,354 +28048,4076045,Queens,Astoria,40.76347,-73.90928000000001,Private room,50,2,0,,1,0 +28049,159091490,Brooklyn,Gowanus,40.67753,-73.9841,Private room,119,1,11,0.57,17,364 +28050,159091490,Brooklyn,Gowanus,40.67873,-73.98236,Private room,119,1,19,0.97,17,355 +28051,120762452,Manhattan,Murray Hill,40.75006,-73.97694,Entire home/apt,195,30,1,0.09,50,365 +28052,159091490,Brooklyn,Gowanus,40.67733,-73.98406999999999,Private room,119,1,26,1.32,17,363 +28053,18462292,Manhattan,Midtown,40.76699,-73.98174,Entire home/apt,200,7,2,0.1,1,0 +28054,65493699,Queens,Jackson Heights,40.75731,-73.85785,Entire home/apt,143,2,3,0.15,1,0 +28055,159884558,Manhattan,Roosevelt Island,40.76191,-73.94934,Private room,45,25,37,1.89,1,149 +28056,133972085,Manhattan,Midtown,40.75732,-73.98142,Entire home/apt,350,3,14,0.74,3,89 +28057,147095935,Queens,Woodside,40.74496,-73.89534,Entire home/apt,99,1,118,6.0,1,320 +28058,34281260,Manhattan,Stuyvesant Town,40.727340000000005,-73.97203,Private room,65,2,6,0.31,1,0 +28059,3440811,Manhattan,Hell's Kitchen,40.76062,-73.99297,Entire home/apt,85,3,28,1.45,1,66 +28060,134428157,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94295,Entire home/apt,160,3,32,1.64,7,3 +28061,159903889,Manhattan,SoHo,40.72067,-74.00024,Entire home/apt,400,4,42,2.13,1,306 +28062,76104209,Manhattan,Upper West Side,40.77055,-73.98615,Entire home/apt,333,30,0,,33,330 +28063,45731391,Manhattan,Lower East Side,40.721470000000004,-73.99054,Private room,85,1,4,0.21,3,0 +28064,48419413,Manhattan,East Harlem,40.79943,-73.94386,Entire home/apt,89,2,52,2.75,1,3 +28065,76104209,Manhattan,Upper West Side,40.76996,-73.98550999999999,Entire home/apt,375,30,0,,33,300 +28066,100424005,Brooklyn,Bushwick,40.69386,-73.91897,Private room,39,5,9,0.46,1,0 +28067,2598844,Brooklyn,Bedford-Stuyvesant,40.690670000000004,-73.93916999999999,Entire home/apt,50,1,49,2.65,1,47 +28068,47326818,Brooklyn,Flatbush,40.65177,-73.96417,Private room,37,2,3,0.16,1,0 +28069,4389871,Manhattan,Morningside Heights,40.80853,-73.96351999999999,Entire home/apt,90,4,0,,1,0 +28070,9238069,Brooklyn,Greenpoint,40.71911,-73.95045,Entire home/apt,150,2,15,0.76,1,1 +28071,898412,Brooklyn,Williamsburg,40.708890000000004,-73.94357,Entire home/apt,85,60,6,0.32,1,125 +28072,8494658,Brooklyn,Greenpoint,40.7264,-73.95613,Entire home/apt,99,2,12,0.71,1,64 +28073,6408088,Brooklyn,Greenpoint,40.72508,-73.94698000000001,Entire home/apt,100,1,2,0.11,1,0 +28074,39166877,Brooklyn,Windsor Terrace,40.65028,-73.97771,Entire home/apt,165,3,37,1.9,1,82 +28075,22378099,Brooklyn,Fort Greene,40.6857,-73.96964,Private room,52,5,0,,1,0 +28076,2930303,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95894,Entire home/apt,100,28,2,0.11,1,177 +28077,6411632,Brooklyn,Williamsburg,40.713440000000006,-73.95702,Entire home/apt,130,3,2,0.12,1,0 +28078,113356258,Manhattan,Upper East Side,40.77752,-73.94726,Private room,100,1,0,,1,0 +28079,83004119,Brooklyn,Greenpoint,40.73307,-73.95275,Entire home/apt,120,1,0,,1,0 +28080,17250625,Manhattan,East Harlem,40.79757,-73.93851,Private room,50,13,51,2.63,1,26 +28081,42135378,Manhattan,Chinatown,40.71601,-73.99171,Entire home/apt,130,4,2,0.1,1,0 +28082,10020112,Manhattan,Upper East Side,40.77625,-73.95495,Entire home/apt,250,3,2,0.1,1,0 +28083,6999831,Brooklyn,Flatbush,40.64813,-73.9589,Entire home/apt,90,2,8,0.42,1,0 +28084,102243363,Brooklyn,Prospect-Lefferts Gardens,40.655429999999996,-73.95674,Entire home/apt,110,1,4,0.21,1,0 +28085,35674813,Manhattan,Roosevelt Island,40.7611,-73.95015,Private room,40,7,1,0.06,1,0 +28086,159998120,Queens,Astoria,40.76522,-73.92438,Entire home/apt,92,1,0,,1,0 +28087,156952896,Queens,East Elmhurst,40.765370000000004,-73.87639,Entire home/apt,100,1,198,10.15,2,156 +28088,4514578,Queens,Elmhurst,40.74586,-73.88409,Entire home/apt,45,4,0,,1,0 +28089,126247863,Queens,Richmond Hill,40.68932,-73.82047,Private room,35,1,56,3.0,2,359 +28090,19739033,Manhattan,Harlem,40.81426,-73.95152,Private room,85,2,75,3.93,2,121 +28091,159811367,Brooklyn,Bedford-Stuyvesant,40.696870000000004,-73.94111,Private room,50,30,4,0.2,10,365 +28092,147252767,Queens,Astoria,40.76354,-73.91341,Private room,50,1,6,0.31,1,0 +28093,159974287,Queens,Flushing,40.76245,-73.8238,Private room,38,5,34,1.82,1,353 +28094,43600815,Brooklyn,Williamsburg,40.70572,-73.93823,Private room,65,8,1,0.05,2,0 +28095,45697173,Manhattan,East Harlem,40.787440000000004,-73.94319,Entire home/apt,50,10,0,,1,0 +28096,160057164,Brooklyn,Crown Heights,40.67685,-73.93141,Private room,75,1,0,,1,0 +28097,120284390,Queens,Astoria,40.7723,-73.9281,Private room,100,3,0,,1,0 +28098,160066386,Manhattan,Harlem,40.79998,-73.95633000000001,Entire home/apt,250,3,18,0.97,1,20 +28099,158445076,Manhattan,Midtown,40.76432,-73.98075,Entire home/apt,650,3,0,,1,0 +28100,159091490,Brooklyn,Gowanus,40.67773,-73.98312,Private room,129,1,13,0.67,17,361 +28101,159091490,Brooklyn,Gowanus,40.6784,-73.98447,Private room,129,1,32,1.62,17,363 +28102,9175058,Brooklyn,Bushwick,40.68782,-73.9189,Private room,41,3,17,0.93,1,0 +28103,16855791,Brooklyn,Williamsburg,40.7023,-73.9419,Private room,65,3,47,2.47,1,238 +28104,159091490,Brooklyn,Gowanus,40.677040000000005,-73.9846,Private room,129,1,9,0.46,17,338 +28105,159091490,Brooklyn,Gowanus,40.67726,-73.9837,Private room,129,1,28,1.44,17,362 +28106,41617175,Brooklyn,Gowanus,40.67787,-73.98635,Private room,70,2,1,0.05,1,0 +28107,120762452,Manhattan,Murray Hill,40.75008,-73.97752,Entire home/apt,150,30,2,0.3,50,364 +28108,6650559,Manhattan,SoHo,40.72735,-74.00131,Private room,89,1,3,0.15,1,0 +28109,97862729,Manhattan,Harlem,40.807590000000005,-73.95464,Private room,100,2,1,0.05,1,0 +28110,88713943,Manhattan,Hell's Kitchen,40.76042,-73.99032,Entire home/apt,175,4,12,0.79,1,107 +28111,43352661,Manhattan,Washington Heights,40.84344,-73.93921999999999,Private room,20,1,21,1.1,3,291 +28112,1341264,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95929,Entire home/apt,300,6,1,0.39,1,0 +28113,3484920,Manhattan,West Village,40.73811,-74.00348000000001,Entire home/apt,275,2,4,0.65,1,51 +28114,33261598,Manhattan,Midtown,40.7436,-73.98573,Shared room,185,1,2,0.11,1,0 +28115,156952896,Queens,East Elmhurst,40.76419,-73.87498000000001,Entire home/apt,120,1,118,6.05,2,79 +28116,6041929,Manhattan,West Village,40.73253,-74.00859,Entire home/apt,220,4,11,0.65,1,189 +28117,14043678,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93354000000001,Private room,50,3,6,0.32,1,363 +28118,118807152,Queens,Elmhurst,40.74361,-73.87732,Private room,30,1,15,0.77,1,249 +28119,42804325,Manhattan,Roosevelt Island,40.76858,-73.94436,Private room,70,7,1,0.08,1,0 +28120,4811900,Queens,Ditmars Steinway,40.770509999999994,-73.90944,Private room,600,2,5,0.27,2,0 +28121,1349340,Brooklyn,Greenpoint,40.72728,-73.95313,Private room,75,7,0,,2,0 +28122,21621745,Manhattan,Chelsea,40.74927,-74.00121999999999,Entire home/apt,200,1,7,0.37,1,0 +28123,157701235,Brooklyn,Bushwick,40.700390000000006,-73.93009,Private room,60,7,74,3.98,3,31 +28124,70562577,Queens,Astoria,40.77118,-73.92548000000001,Entire home/apt,125,3,10,0.54,1,64 +28125,12834599,Brooklyn,Borough Park,40.632940000000005,-73.99475,Private room,50,3,2,0.14,4,90 +28126,153066091,Queens,Ditmars Steinway,40.77323,-73.91796,Private room,75,2,1,0.05,1,89 +28127,49716547,Manhattan,East Village,40.73127,-73.98729,Entire home/apt,150,7,4,0.22,1,18 +28128,2546411,Manhattan,Lower East Side,40.71991,-73.98832,Private room,78,10,0,,1,0 +28129,160109287,Manhattan,Upper East Side,40.77154,-73.94968,Entire home/apt,200,4,1,0.05,1,0 +28130,157788926,Brooklyn,Park Slope,40.67913,-73.97476999999999,Entire home/apt,199,2,45,2.34,1,302 +28131,29238030,Brooklyn,Williamsburg,40.71284,-73.94805,Private room,70,2,3,0.2,1,0 +28132,18061262,Brooklyn,Clinton Hill,40.68173,-73.96703000000001,Entire home/apt,115,15,7,0.38,1,5 +28133,262862,Brooklyn,Williamsburg,40.71822,-73.93996,Entire home/apt,250,3,1,0.05,1,0 +28134,11322502,Brooklyn,Bedford-Stuyvesant,40.68885,-73.95296,Entire home/apt,142,2,5,0.25,1,0 +28135,62307584,Brooklyn,Bushwick,40.68187,-73.90815,Private room,67,30,3,0.16,1,179 +28136,50522860,Manhattan,Inwood,40.86144,-73.92423000000001,Private room,40,1,2,0.1,1,0 +28137,160175378,Manhattan,Midtown,40.75184,-73.97198,Entire home/apt,350,3,1,0.05,2,0 +28138,160194786,Brooklyn,Williamsburg,40.71515,-73.95231,Entire home/apt,160,2,59,3.28,1,81 +28139,55184486,Brooklyn,Bushwick,40.68885,-73.91353000000001,Entire home/apt,149,1,74,5.35,2,115 +28140,43011952,Brooklyn,Crown Heights,40.6736,-73.95043000000001,Private room,75,1,0,,1,0 +28141,35743804,Manhattan,Financial District,40.70758,-74.00409,Entire home/apt,850,1,16,0.83,1,174 +28142,158625100,Queens,Richmond Hill,40.68683,-73.82743,Private room,75,1,25,1.3,2,48 +28143,160175378,Manhattan,Midtown,40.753409999999995,-73.97313,Entire home/apt,400,1,1,0.05,2,0 +28144,33570672,Manhattan,Theater District,40.75493,-73.98618,Private room,95,2,100,5.35,1,18 +28145,40110507,Brooklyn,Bedford-Stuyvesant,40.68691,-73.91798,Entire home/apt,85,4,5,0.28,1,0 +28146,72936542,Manhattan,Midtown,40.76119,-73.97005,Shared room,130,1,1,0.05,1,0 +28147,34595916,Brooklyn,South Slope,40.66794,-73.98638000000001,Entire home/apt,149,5,55,3.03,3,235 +28148,7709326,Brooklyn,Clinton Hill,40.69513,-73.96245,Entire home/apt,90,3,0,,1,0 +28149,2300590,Brooklyn,Flatbush,40.64495,-73.9576,Entire home/apt,95,3,2,0.1,1,0 +28150,23001368,Manhattan,Tribeca,40.71735,-74.00605,Entire home/apt,850,2,14,0.76,1,36 +28151,107953084,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95196,Private room,60,2,48,2.55,3,276 +28152,16686426,Queens,Long Island City,40.75982,-73.93138,Private room,65,2,10,0.52,1,0 +28153,315606,Brooklyn,Bedford-Stuyvesant,40.68679,-73.9495,Private room,45,30,0,,2,95 +28154,116430338,Manhattan,Upper West Side,40.79572,-73.96781,Entire home/apt,105,7,1,0.05,1,0 +28155,53829616,Manhattan,Hell's Kitchen,40.75979,-73.98953,Entire home/apt,395,6,1,0.05,1,0 +28156,25321849,Brooklyn,Boerum Hill,40.6853,-73.98804,Entire home/apt,550,3,6,0.42,2,14 +28157,11486122,Brooklyn,Bushwick,40.68949,-73.90575,Private room,50,3,2,0.1,1,0 +28158,105389630,Manhattan,Theater District,40.75817,-73.98886,Entire home/apt,190,4,0,,1,0 +28159,50414933,Manhattan,Hell's Kitchen,40.76321,-73.98775,Entire home/apt,160,5,5,0.27,1,1 +28160,18918881,Queens,Far Rockaway,40.60273,-73.75466,Entire home/apt,51,1,4,0.21,1,0 +28161,1620498,Manhattan,Chelsea,40.73858,-73.99651,Entire home/apt,220,7,3,0.16,1,0 +28162,59394680,Manhattan,Upper East Side,40.77084,-73.94955999999999,Entire home/apt,130,30,0,,1,0 +28163,8801391,Manhattan,Kips Bay,40.743809999999996,-73.97944,Entire home/apt,300,3,0,,1,180 +28164,110346058,Queens,Jamaica,40.6741,-73.79775,Private room,45,4,12,2.03,1,291 +28165,160300400,Brooklyn,Bay Ridge,40.628479999999996,-74.03076999999999,Private room,79,4,12,0.62,2,175 +28166,160306249,Manhattan,Upper West Side,40.78165,-73.9749,Private room,55,2,14,0.81,2,0 +28167,7045635,Brooklyn,Crown Heights,40.67177,-73.93947,Private room,45,5,1,0.05,1,0 +28168,148100571,Bronx,Soundview,40.82739,-73.88176,Entire home/apt,50,1,0,,2,0 +28169,90956690,Manhattan,Murray Hill,40.74661,-73.97698000000001,Entire home/apt,200,4,2,0.1,1,0 +28170,160318374,Brooklyn,Bedford-Stuyvesant,40.678709999999995,-73.92678000000001,Entire home/apt,103,30,47,3.2,2,105 +28171,159091490,Brooklyn,Gowanus,40.6771,-73.98449000000001,Private room,139,1,6,0.31,17,358 +28172,21508828,Bronx,Kingsbridge,40.8739,-73.90364,Private room,69,1,31,1.7,2,365 +28173,2916281,Brooklyn,Williamsburg,40.71353,-73.94337,Private room,60,7,2,0.11,1,0 +28174,56067189,Manhattan,Morningside Heights,40.80485,-73.96345,Entire home/apt,150,3,1,0.05,1,0 +28175,130149223,Brooklyn,Crown Heights,40.67163,-73.93399000000001,Private room,31,30,7,0.36,1,302 +28176,25690203,Manhattan,Hell's Kitchen,40.763329999999996,-73.98905,Private room,100,2,5,0.26,1,0 +28177,11310081,Brooklyn,Williamsburg,40.71204,-73.95245,Entire home/apt,650,2,1,0.16,1,0 +28178,3368678,Manhattan,Midtown,40.752320000000005,-73.9689,Entire home/apt,210,3,21,1.11,1,209 +28179,8243469,Bronx,Port Morris,40.80024,-73.91422,Private room,49,3,59,3.08,1,0 +28180,160343135,Brooklyn,Crown Heights,40.67307,-73.95236,Private room,30,3,2,0.11,1,0 +28181,58943675,Queens,Sunnyside,40.74508,-73.92198,Entire home/apt,140,3,4,0.21,1,0 +28182,14278133,Brooklyn,Williamsburg,40.71733,-73.95028,Private room,71,2,30,1.6,3,0 +28183,1020357,Brooklyn,Bushwick,40.69077,-73.9133,Entire home/apt,60,2,20,1.13,1,6 +28184,160353062,Brooklyn,Boerum Hill,40.6882,-73.98999,Entire home/apt,90,30,2,0.18,1,116 +28185,77084335,Brooklyn,Bushwick,40.69871,-73.9361,Private room,80,3,2,0.1,1,0 +28186,17271293,Brooklyn,Bedford-Stuyvesant,40.68104,-73.94031,Entire home/apt,60,2,38,2.04,1,0 +28187,8331436,Brooklyn,South Slope,40.66724,-73.99023000000001,Private room,109,2,4,0.21,1,0 +28188,50577859,Brooklyn,Bushwick,40.704240000000006,-73.9199,Private room,75,2,3,0.48,1,0 +28189,159091490,Brooklyn,Gowanus,40.67893,-73.98365,Private room,139,1,10,0.51,17,364 +28190,159091490,Brooklyn,Gowanus,40.6779,-73.98459,Private room,139,1,38,2.85,17,337 +28191,13284271,Brooklyn,Williamsburg,40.7134,-73.94833,Entire home/apt,350,2,14,0.76,1,353 +28192,160233319,Brooklyn,Flatlands,40.6197,-73.94426,Entire home/apt,86,2,0,,1,0 +28193,160369263,Brooklyn,Windsor Terrace,40.65325,-73.97868000000001,Entire home/apt,100,2,61,3.17,1,337 +28194,9640114,Brooklyn,Williamsburg,40.71171,-73.95491,Private room,120,2,2,0.1,1,0 +28195,159091490,Brooklyn,Gowanus,40.67727,-73.9838,Private room,139,1,46,2.36,17,342 +28196,135836462,Manhattan,Harlem,40.81532,-73.95359,Private room,150,3,0,,1,89 +28197,3179146,Manhattan,East Harlem,40.79746,-73.93513,Entire home/apt,161,3,3,0.16,1,0 +28198,160374143,Manhattan,West Village,40.7349,-74.00618,Entire home/apt,245,2,42,2.27,1,141 +28199,160376922,Manhattan,Chelsea,40.749179999999996,-74.00369,Entire home/apt,800,1,11,0.56,1,0 +28200,55403309,Manhattan,Lower East Side,40.7209,-73.98909,Entire home/apt,350,5,0,,2,0 +28201,1852207,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96036,Entire home/apt,135,3,3,0.16,1,0 +28202,11713422,Manhattan,East Village,40.73025,-73.9861,Entire home/apt,349,5,0,,2,0 +28203,160379705,Manhattan,Harlem,40.8041,-73.95260999999999,Private room,35,2,7,0.37,1,0 +28204,160300400,Brooklyn,Bay Ridge,40.630140000000004,-74.03126,Private room,79,4,27,1.44,2,176 +28205,15146492,Manhattan,Hell's Kitchen,40.76447,-73.99056,Entire home/apt,649,2,0,,1,0 +28206,81379480,Manhattan,Lower East Side,40.72317,-73.99084,Private room,80,14,0,,1,0 +28207,72760017,Brooklyn,Williamsburg,40.70892,-73.96584,Entire home/apt,200,4,3,0.16,1,0 +28208,16840416,Brooklyn,Greenpoint,40.72379,-73.9416,Entire home/apt,225,2,1,0.06,1,0 +28209,123354518,Brooklyn,Bushwick,40.70075,-73.92421999999999,Private room,50,4,0,,2,0 +28210,16864813,Manhattan,East Harlem,40.80255,-73.94349,Entire home/apt,300,3,38,2.42,1,272 +28211,155125855,Manhattan,Midtown,40.74739,-73.98344,Private room,130,1,40,2.08,3,0 +28212,861330,Brooklyn,Williamsburg,40.70255,-73.94408,Private room,40,30,0,,3,0 +28213,158298807,Brooklyn,Bedford-Stuyvesant,40.69355,-73.95196999999999,Entire home/apt,90,2,42,2.18,1,52 +28214,146345538,Brooklyn,Bushwick,40.69475,-73.91507,Private room,50,30,1,0.11,5,361 +28215,39528519,Manhattan,Lower East Side,40.71172,-73.98665,Shared room,35,14,3,0.25,28,322 +28216,101970559,Brooklyn,Bushwick,40.693979999999996,-73.90719,Private room,50,30,1,0.15,6,365 +28217,159811367,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94076,Private room,50,30,4,0.21,10,364 +28218,3832479,Brooklyn,Crown Heights,40.67504,-73.93956,Private room,50,30,0,,1,113 +28219,13242534,Manhattan,Chelsea,40.73936,-73.99753,Entire home/apt,250,7,6,0.33,1,0 +28220,2099205,Brooklyn,Williamsburg,40.71212,-73.94011,Entire home/apt,180,3,9,0.53,1,0 +28221,8837750,Manhattan,Greenwich Village,40.73539,-73.99547,Entire home/apt,485,5,45,2.36,1,203 +28222,3052833,Brooklyn,Williamsburg,40.71622,-73.94462,Entire home/apt,350,2,22,1.15,1,132 +28223,160457828,Brooklyn,Brighton Beach,40.578720000000004,-73.96009000000001,Entire home/apt,99,1,117,6.07,1,68 +28224,2863092,Manhattan,East Village,40.7253,-73.98861,Private room,85,7,0,,1,0 +28225,16775193,Manhattan,SoHo,40.72224,-74.00356,Entire home/apt,150,14,1,0.05,1,0 +28226,7650212,Manhattan,Nolita,40.72224,-73.99438,Entire home/apt,300,5,7,0.46,1,0 +28227,151777787,Brooklyn,Brownsville,40.67528,-73.906,Private room,40,2,3,0.16,2,0 +28228,6441887,Brooklyn,Bedford-Stuyvesant,40.691309999999994,-73.93387,Private room,60,1,9,0.46,2,0 +28229,21657795,Manhattan,Harlem,40.8029,-73.95576,Entire home/apt,100,3,1,0.05,1,0 +28230,144857346,Manhattan,Nolita,40.723890000000004,-73.9954,Entire home/apt,275,2,1,0.05,3,0 +28231,160474324,Brooklyn,Bushwick,40.69267,-73.9218,Entire home/apt,70,5,1,0.05,1,0 +28232,45406877,Manhattan,Civic Center,40.71237,-74.00747,Entire home/apt,100,2,3,0.46,1,0 +28233,20214811,Brooklyn,Greenpoint,40.72672,-73.94715,Entire home/apt,66,3,3,0.17,1,0 +28234,27272337,Queens,Arverne,40.58793,-73.79268,Entire home/apt,250,4,40,2.16,1,183 +28235,17425841,Brooklyn,Williamsburg,40.71642,-73.96459,Entire home/apt,99,30,0,,1,0 +28236,5191980,Brooklyn,Crown Heights,40.677279999999996,-73.95676,Entire home/apt,200,2,0,,1,0 +28237,51765609,Brooklyn,Williamsburg,40.71015,-73.94672,Entire home/apt,100,90,1,1.0,1,3 +28238,75485224,Brooklyn,Williamsburg,40.72085,-73.95723000000001,Entire home/apt,55,2,15,0.77,1,0 +28239,6675176,Manhattan,Harlem,40.82277,-73.9555,Entire home/apt,650,5,23,1.35,1,301 +28240,75664810,Manhattan,Gramercy,40.73878,-73.9839,Entire home/apt,100,2,4,0.32,1,0 +28241,44102819,Brooklyn,Greenpoint,40.725390000000004,-73.95473,Entire home/apt,120,7,1,0.05,1,0 +28242,2066240,Brooklyn,Crown Heights,40.67405,-73.94419,Entire home/apt,12,3,0,,1,0 +28243,100672521,Manhattan,Lower East Side,40.7128,-73.99045,Private room,88,1,44,2.25,3,73 +28244,158178970,Staten Island,Randall Manor,40.63108,-74.12512,Private room,27,1,21,1.14,3,287 +28245,33738190,Brooklyn,Sunset Park,40.66222,-73.99566999999999,Private room,85,1,0,,3,0 +28246,6587683,Manhattan,Gramercy,40.737159999999996,-73.98835,Entire home/apt,150,2,21,1.1,1,1 +28247,44253752,Manhattan,Upper East Side,40.7745,-73.94844,Entire home/apt,150,8,0,,1,0 +28248,160322636,Brooklyn,East New York,40.663790000000006,-73.89126999999999,Private room,50,2,43,2.19,1,172 +28249,58847382,Brooklyn,Williamsburg,40.712709999999994,-73.94284,Entire home/apt,125,1,1,0.05,1,0 +28250,34320483,Manhattan,Harlem,40.8262,-73.95035,Private room,43,3,1,0.05,1,0 +28251,160503827,Brooklyn,Williamsburg,40.71157,-73.94308000000001,Entire home/apt,90,3,7,0.36,1,0 +28252,17038671,Manhattan,West Village,40.73144,-74.00388000000001,Entire home/apt,150,2,3,0.16,2,0 +28253,10763283,Brooklyn,Clinton Hill,40.68165,-73.96006,Entire home/apt,110,3,15,0.83,1,3 +28254,160507191,Queens,Astoria,40.76017,-73.90945,Entire home/apt,150,4,29,1.48,1,0 +28255,160507714,Brooklyn,Fort Greene,40.68286,-73.97134,Private room,80,1,1,0.05,1,0 +28256,156976885,Brooklyn,Greenpoint,40.72549,-73.94453,Entire home/apt,120,3,0,,1,0 +28257,5625684,Manhattan,Hell's Kitchen,40.76535,-73.98765,Private room,130,12,2,0.14,1,31 +28258,33978706,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94275,Entire home/apt,196,5,4,0.22,1,3 +28259,18495460,Brooklyn,Crown Heights,40.67288,-73.95444,Entire home/apt,115,30,4,0.25,3,292 +28260,12128527,Manhattan,Chelsea,40.75172,-73.99784,Entire home/apt,225,2,38,2.0,2,257 +28261,15220846,Manhattan,NoHo,40.72705,-73.9933,Entire home/apt,274,4,4,0.22,1,7 +28262,16025677,Manhattan,Hell's Kitchen,40.769,-73.98756999999999,Entire home/apt,107,4,1,0.06,2,0 +28263,16025677,Manhattan,Hell's Kitchen,40.76978,-73.98935999999999,Entire home/apt,115,5,0,,2,0 +28264,160520133,Manhattan,Midtown,40.75288,-73.98526,Entire home/apt,250,7,11,0.58,1,265 +28265,69546339,Brooklyn,Bushwick,40.70401,-73.92629000000001,Private room,41,6,2,0.11,2,0 +28266,156831639,Brooklyn,Clinton Hill,40.68318,-73.96624,Entire home/apt,125,21,0,,1,0 +28267,159091490,Brooklyn,Gowanus,40.679429999999996,-73.98387,Private room,169,1,12,0.62,17,364 +28268,52610301,Brooklyn,Crown Heights,40.67068,-73.95764,Private room,43,1,5,0.26,1,0 +28269,5400884,Manhattan,Upper West Side,40.80257,-73.96725,Private room,99,1,2,0.1,1,0 +28270,151880786,Queens,Richmond Hill,40.70231,-73.82722,Entire home/apt,66,30,9,0.47,1,173 +28271,14535843,Brooklyn,Flatbush,40.64215,-73.95685,Private room,38,4,1,0.05,1,0 +28272,105758291,Brooklyn,East Flatbush,40.6467,-73.94841,Entire home/apt,150,4,35,2.82,1,105 +28273,160326327,Brooklyn,Cypress Hills,40.685140000000004,-73.87333000000001,Shared room,49,2,32,1.67,3,5 +28274,159156636,Manhattan,Hell's Kitchen,40.75835,-73.99065,Private room,120,1,88,4.93,3,0 +28275,4130601,Manhattan,East Harlem,40.79748,-73.94800000000001,Private room,75,18,1,0.05,1,0 +28276,65046976,Manhattan,Financial District,40.70518,-74.00881,Private room,88,1,1,0.09,1,0 +28277,95010593,Manhattan,Hell's Kitchen,40.75289,-73.99403000000001,Private room,300,1,104,5.59,1,19 +28278,129577022,Manhattan,Kips Bay,40.744209999999995,-73.98007,Entire home/apt,205,3,2,0.1,1,0 +28279,1974292,Brooklyn,Williamsburg,40.71382,-73.94385,Entire home/apt,199,2,19,1.03,1,297 +28280,7465002,Queens,Astoria,40.76552,-73.92576,Private room,50,3,3,0.16,1,0 +28281,2928002,Manhattan,Upper West Side,40.799170000000004,-73.96795,Private room,69,4,2,0.11,1,0 +28282,160601986,Brooklyn,Mill Basin,40.61224,-73.91854000000001,Entire home/apt,85,3,25,1.3,1,139 +28283,79886089,Manhattan,Chelsea,40.74624,-73.99273000000001,Private room,150,5,4,0.22,1,0 +28284,4683188,Manhattan,Upper East Side,40.77885,-73.95756,Entire home/apt,250,5,0,,1,0 +28285,822034,Brooklyn,Cobble Hill,40.68719,-73.99384,Entire home/apt,210,30,0,,1,54 +28286,11951403,Manhattan,East Village,40.72732,-73.98056,Entire home/apt,475,30,0,,1,0 +28287,95459395,Manhattan,Hell's Kitchen,40.76084,-73.99899,Entire home/apt,299,30,0,,18,365 +28288,154608871,Manhattan,Upper West Side,40.78707,-73.9769,Entire home/apt,215,2,0,,1,0 +28289,621266,Brooklyn,Carroll Gardens,40.679120000000005,-74.00227,Entire home/apt,180,7,0,,1,0 +28290,812331,Manhattan,Hell's Kitchen,40.766909999999996,-73.98545,Entire home/apt,150,7,1,0.05,1,7 +28291,4102079,Brooklyn,Prospect Heights,40.67487,-73.96409,Private room,75,1,65,4.03,1,313 +28292,159655531,Manhattan,East Harlem,40.8009,-73.94333,Private room,60,3,86,4.48,2,50 +28293,160643378,Brooklyn,Bedford-Stuyvesant,40.68507,-73.92612,Private room,75,2,20,1.08,1,0 +28294,157728550,Manhattan,East Harlem,40.80219,-73.94383,Private room,150,1,107,5.55,2,365 +28295,135530716,Queens,Flushing,40.764829999999996,-73.79583000000001,Entire home/apt,460,1,49,2.55,4,160 +28296,159154462,Manhattan,Midtown,40.75741,-73.98125999999999,Entire home/apt,125,1,53,3.71,2,14 +28297,152263768,Manhattan,Harlem,40.82204,-73.94293,Private room,65,1,60,3.08,1,101 +28298,12927770,Manhattan,Upper East Side,40.77995,-73.95621,Entire home/apt,150,3,0,,1,0 +28299,4455698,Manhattan,Two Bridges,40.709920000000004,-74.00102,Private room,85,7,2,0.11,3,311 +28300,5445919,Brooklyn,Greenpoint,40.7249,-73.94105,Private room,75,7,3,0.16,1,0 +28301,113918131,Manhattan,Gramercy,40.73433,-73.98371,Private room,99,5,0,,1,0 +28302,103863147,Brooklyn,Greenpoint,40.73388,-73.95536,Entire home/apt,159,3,32,1.67,1,56 +28303,11530808,Brooklyn,Bedford-Stuyvesant,40.68416,-73.93176,Entire home/apt,60,2,1,0.05,1,0 +28304,82746113,Manhattan,Upper West Side,40.78761,-73.96862,Entire home/apt,135,5,1,1.0,2,145 +28305,160702123,Brooklyn,Bushwick,40.69234,-73.90889,Private room,50,1,13,0.7,1,0 +28306,49735439,Queens,Ridgewood,40.69587,-73.9045,Private room,65,3,1,0.07,2,125 +28307,3147227,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92793,Private room,100,10,0,,1,0 +28308,1230739,Brooklyn,Bushwick,40.691590000000005,-73.91235,Private room,35,14,0,,1,0 +28309,6493857,Manhattan,Harlem,40.810829999999996,-73.95248000000001,Private room,69,2,0,,1,0 +28310,160707142,Brooklyn,East Flatbush,40.650459999999995,-73.93633,Entire home/apt,85,2,23,1.25,1,149 +28311,41940272,Manhattan,Harlem,40.82237,-73.94617,Private room,54,2,6,0.31,3,5 +28312,790872,Manhattan,East Harlem,40.804809999999996,-73.93812,Entire home/apt,120,1,3,0.16,2,0 +28313,3574922,Brooklyn,Flatbush,40.65318,-73.96253,Private room,75,2,8,0.42,1,0 +28314,22365640,Queens,Woodside,40.74434,-73.91108,Entire home/apt,100,2,0,,1,0 +28315,41940272,Manhattan,Harlem,40.822520000000004,-73.94596999999999,Entire home/apt,73,4,11,0.61,3,6 +28316,160726948,Manhattan,Kips Bay,40.74478,-73.97968,Entire home/apt,94,30,3,0.16,2,155 +28317,2084074,Brooklyn,Fort Greene,40.69222,-73.97157,Entire home/apt,300,3,10,0.7,1,82 +28318,3872416,Brooklyn,Bushwick,40.70221,-73.91419,Private room,65,6,0,,1,0 +28319,97336460,Brooklyn,Bushwick,40.696709999999996,-73.92577,Private room,100,1,0,,1,0 +28320,2502124,Manhattan,Gramercy,40.73297,-73.98435,Entire home/apt,186,9,25,1.33,1,8 +28321,48356178,Queens,Long Island City,40.75797,-73.92908,Entire home/apt,113,5,9,0.49,1,0 +28322,48655993,Queens,Elmhurst,40.74152,-73.87633000000001,Private room,50,1,16,0.84,1,49 +28323,32093643,Manhattan,Roosevelt Island,40.76211,-73.94887,Private room,70,2,2,0.11,1,0 +28324,159571314,Manhattan,Nolita,40.72203,-73.99564000000001,Entire home/apt,325,2,4,0.21,1,0 +28325,43872938,Brooklyn,Bushwick,40.692640000000004,-73.90485,Private room,49,4,3,0.17,1,0 +28326,29395562,Brooklyn,Williamsburg,40.71222,-73.93983,Private room,85,3,58,3.14,1,5 +28327,160373219,Manhattan,Hell's Kitchen,40.76656,-73.98848000000001,Entire home/apt,487,4,50,2.61,1,198 +28328,160660639,Brooklyn,Carroll Gardens,40.67617,-74.00107,Entire home/apt,49,1,81,4.27,2,141 +28329,9605757,Brooklyn,Clinton Hill,40.68182,-73.9659,Entire home/apt,150,3,14,0.74,1,84 +28330,62706408,Manhattan,Washington Heights,40.843990000000005,-73.94228000000001,Entire home/apt,80,3,0,,1,0 +28331,27105320,Brooklyn,Crown Heights,40.67238,-73.95222,Private room,35,7,0,,1,0 +28332,25376759,Queens,Woodside,40.75247,-73.90033000000001,Entire home/apt,90,3,1,0.05,1,0 +28333,70235067,Manhattan,Washington Heights,40.84754,-73.93229000000001,Private room,34,3,4,0.22,1,0 +28334,131476075,Brooklyn,Bushwick,40.68571,-73.91317,Private room,51,1,19,1.02,8,177 +28335,160792280,Manhattan,Midtown,40.76583,-73.98087,Entire home/apt,200,1,1,0.05,2,0 +28336,70338191,Manhattan,Washington Heights,40.856770000000004,-73.92985999999999,Private room,45,2,50,2.69,1,3 +28337,13208109,Brooklyn,Flatbush,40.64066,-73.9664,Private room,45,5,3,0.16,1,0 +28338,47414802,Manhattan,Harlem,40.80427,-73.9506,Entire home/apt,115,20,4,0.21,2,282 +28339,131476075,Brooklyn,Bushwick,40.687509999999996,-73.91194,Private room,60,1,25,1.35,8,177 +28340,32237865,Manhattan,Harlem,40.807559999999995,-73.94886,Entire home/apt,150,4,4,0.21,1,0 +28341,74179880,Brooklyn,East New York,40.67471,-73.88905,Private room,33,3,56,3.19,8,305 +28342,7647511,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92222,Entire home/apt,100,4,15,0.81,1,0 +28343,111188158,Manhattan,Midtown,40.753479999999996,-73.97189,Entire home/apt,200,5,1,0.16,1,0 +28344,34216298,Brooklyn,Williamsburg,40.7113,-73.9573,Entire home/apt,150,1,16,1.17,1,334 +28345,160847231,Brooklyn,South Slope,40.66615,-73.98747,Entire home/apt,131,2,67,3.94,1,61 +28346,47598303,Queens,Astoria,40.77205,-73.92997,Private room,58,1,5,0.26,1,0 +28347,135944525,Manhattan,Harlem,40.81876,-73.9536,Private room,45,1,0,,1,0 +28348,46719,Brooklyn,Park Slope,40.671490000000006,-73.97957,Entire home/apt,300,4,3,0.47,1,350 +28349,17879753,Brooklyn,Williamsburg,40.70843,-73.94479,Entire home/apt,102,3,2,0.14,1,0 +28350,60291768,Queens,Elmhurst,40.73867,-73.87144,Entire home/apt,88,4,44,2.33,2,39 +28351,160862247,Queens,Astoria,40.75694,-73.92558000000001,Private room,57,5,0,,1,0 +28352,6967723,Brooklyn,Williamsburg,40.716029999999996,-73.95749,Entire home/apt,209,7,1,0.05,1,0 +28353,338921,Brooklyn,Cobble Hill,40.688309999999994,-73.99159,Entire home/apt,200,2,1,1.0,1,1 +28354,826567,Queens,Long Island City,40.75135,-73.94281,Entire home/apt,120,3,1,0.16,1,0 +28355,70919459,Manhattan,Upper West Side,40.80259,-73.96446,Private room,60,5,0,,1,0 +28356,160495098,Brooklyn,Flatbush,40.633590000000005,-73.94915,Entire home/apt,58,2,28,1.46,5,0 +28357,983223,Manhattan,Midtown,40.765809999999995,-73.98235,Private room,200,2,1,0.05,1,0 +28358,4027689,Manhattan,Lower East Side,40.71465,-73.98914,Private room,120,1,64,4.1,2,32 +28359,42051399,Manhattan,Harlem,40.82932,-73.94563000000001,Entire home/apt,128,30,0,,1,89 +28360,9018136,Brooklyn,Bushwick,40.69699,-73.91530999999999,Private room,60,2,8,0.43,1,0 +28361,67265708,Brooklyn,Crown Heights,40.67712,-73.95132,Private room,110,7,0,,1,89 +28362,160892059,Manhattan,Midtown,40.75292,-73.96386,Entire home/apt,145,5,16,0.84,1,173 +28363,160899890,Brooklyn,Midwood,40.61609,-73.95893000000001,Private room,35,1,2,0.11,1,0 +28364,60981198,Brooklyn,Bedford-Stuyvesant,40.69106,-73.93706999999999,Private room,75,4,5,0.5,3,132 +28365,12337690,Manhattan,East Village,40.72937,-73.98482,Entire home/apt,300,7,0,,1,0 +28366,160891716,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93857,Entire home/apt,325,2,21,1.1,1,14 +28367,38959084,Manhattan,East Harlem,40.805890000000005,-73.9414,Entire home/apt,200,4,6,0.33,1,0 +28368,148100571,Bronx,Soundview,40.826679999999996,-73.8822,Entire home/apt,50,1,2,0.1,2,0 +28369,77181668,Brooklyn,Crown Heights,40.6717,-73.93593,Entire home/apt,120,6,0,,1,5 +28370,146449899,Queens,Flushing,40.7467,-73.83456,Private room,53,1,166,8.74,2,151 +28371,20513673,Manhattan,Midtown,40.75417,-73.96556,Entire home/apt,90,6,6,0.31,1,31 +28372,46972551,Manhattan,Upper West Side,40.786229999999996,-73.98146,Entire home/apt,110,2,33,1.74,1,6 +28373,160940380,Queens,St. Albans,40.69863,-73.74941,Entire home/apt,250,3,39,2.12,3,347 +28374,33588156,Brooklyn,Williamsburg,40.71671,-73.94069,Private room,53,7,0,,1,0 +28375,33201402,Bronx,Mount Hope,40.84572,-73.91023,Private room,39,1,33,1.93,1,8 +28376,160991451,Manhattan,Upper West Side,40.79119,-73.9782,Entire home/apt,150,5,6,0.32,1,0 +28377,77145207,Brooklyn,Bushwick,40.69911,-73.92843,Private room,65,1,0,,1,0 +28378,13636138,Brooklyn,Cobble Hill,40.68828,-73.99821,Private room,105,3,14,0.8,1,173 +28379,105341430,Manhattan,Upper West Side,40.78608,-73.97251999999999,Entire home/apt,100,1,116,5.99,1,65 +28380,25325946,Manhattan,East Village,40.730290000000004,-73.98439,Entire home/apt,175,2,0,,1,0 +28381,40959256,Brooklyn,Bushwick,40.70062,-73.93103,Private room,50,3,8,0.42,1,0 +28382,9522475,Manhattan,East Village,40.724340000000005,-73.99099,Entire home/apt,455,30,26,1.77,2,332 +28383,10477204,Brooklyn,Clinton Hill,40.68827,-73.96583000000001,Private room,70,20,0,,1,0 +28384,160306249,Manhattan,Upper West Side,40.78313,-73.97555,Private room,58,3,2,0.1,2,0 +28385,7991202,Manhattan,Upper West Side,40.79971,-73.96037,Entire home/apt,125,5,5,0.27,1,7 +28386,126110540,Brooklyn,East New York,40.662690000000005,-73.8825,Private room,75,1,54,2.8,3,179 +28387,49139686,Manhattan,Harlem,40.82442,-73.9485,Private room,55,3,4,0.21,1,0 +28388,15681707,Brooklyn,Crown Heights,40.67473,-73.91424,Shared room,29,2,4,0.22,3,1 +28389,88739067,Brooklyn,Greenpoint,40.73284,-73.95919,Private room,37,3,4,0.22,1,0 +28390,62649248,Brooklyn,Bushwick,40.70429,-73.91688,Entire home/apt,90,2,89,4.67,2,38 +28391,155125855,Manhattan,Midtown,40.74669,-73.98311,Shared room,65,1,76,3.97,3,0 +28392,135530716,Queens,Flushing,40.765609999999995,-73.79576,Private room,80,2,0,,4,3 +28393,125011763,Queens,Astoria,40.76106,-73.9078,Entire home/apt,95,1,64,3.43,2,96 +28394,135530716,Queens,Flushing,40.76572,-73.79629,Private room,98,2,1,0.06,4,3 +28395,135530716,Queens,Flushing,40.76355,-73.79460999999999,Private room,120,2,1,0.05,4,6 +28396,161057073,Manhattan,Lower East Side,40.71983,-73.9877,Private room,90,2,52,2.7,4,67 +28397,44869463,Manhattan,Hell's Kitchen,40.7668,-73.98428,Entire home/apt,160,3,0,,1,0 +28398,161081229,Bronx,Morrisania,40.82496,-73.91389000000001,Private room,45,2,54,2.94,2,313 +28399,40711894,Queens,Elmhurst,40.74113,-73.88769,Shared room,41,1,9,1.01,4,27 +28400,14290739,Manhattan,Upper West Side,40.79176,-73.96717,Entire home/apt,175,30,1,0.15,3,3 +28401,60523852,Brooklyn,Bedford-Stuyvesant,40.68522,-73.94511999999999,Entire home/apt,150,3,2,0.11,1,0 +28402,4012917,Manhattan,East Harlem,40.8014,-73.94386,Entire home/apt,200,5,7,0.38,1,9 +28403,107953084,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95155,Private room,60,2,73,3.82,3,180 +28404,19628425,Brooklyn,Boerum Hill,40.68632,-73.98903,Entire home/apt,80,30,3,0.16,1,0 +28405,32299529,Brooklyn,East New York,40.6729,-73.88902,Entire home/apt,81,7,1,0.06,1,0 +28406,25330183,Queens,Sunnyside,40.73688,-73.91945,Private room,31,3,2,0.15,1,0 +28407,2343200,Brooklyn,Crown Heights,40.670190000000005,-73.93996,Private room,47,3,0,,1,125 +28408,75976584,Brooklyn,Bushwick,40.68727,-73.90701999999999,Private room,50,1,0,,1,0 +28409,3701760,Manhattan,Washington Heights,40.8411,-73.93751,Private room,50,4,5,0.26,1,0 +28410,2717905,Brooklyn,Carroll Gardens,40.67832,-73.99803,Private room,130,2,2,0.19,1,179 +28411,40866184,Manhattan,Chinatown,40.71467,-73.99239,Entire home/apt,105,14,12,0.65,1,0 +28412,5234625,Brooklyn,Williamsburg,40.707809999999995,-73.94375,Private room,50,5,2,0.22,1,0 +28413,6600911,Brooklyn,Bensonhurst,40.61224,-73.98563,Private room,35,3,1,0.05,2,61 +28414,94543911,Manhattan,Upper East Side,40.77176,-73.94943,Entire home/apt,115,2,2,0.26,1,0 +28415,737515,Brooklyn,Greenpoint,40.72915,-73.95813000000001,Entire home/apt,275,13,0,,1,0 +28416,161160095,Manhattan,Upper West Side,40.787259999999996,-73.96866999999999,Entire home/apt,170,3,42,2.19,1,4 +28417,2323561,Queens,Elmhurst,40.74475,-73.88266,Entire home/apt,90,2,8,0.43,1,0 +28418,16753102,Brooklyn,Fort Greene,40.6978,-73.97681999999999,Entire home/apt,130,4,8,0.43,1,0 +28419,20153029,Manhattan,Upper West Side,40.77244,-73.98043,Entire home/apt,190,7,0,,1,0 +28420,120762452,Manhattan,Murray Hill,40.74873,-73.97664,Entire home/apt,150,30,5,0.4,50,364 +28421,611408,Manhattan,Lower East Side,40.71542,-73.98403,Entire home/apt,143,7,0,,1,0 +28422,13285212,Manhattan,Upper East Side,40.77775,-73.94957,Entire home/apt,200,5,0,,1,0 +28423,95740953,Manhattan,Harlem,40.82887,-73.9487,Private room,55,2,3,0.16,1,0 +28424,161172539,Queens,College Point,40.7806,-73.84198,Private room,59,1,92,5.01,1,79 +28425,43960739,Manhattan,Washington Heights,40.84345,-73.94079,Private room,65,3,21,1.12,2,1 +28426,35986301,Manhattan,Upper West Side,40.79722,-73.96205,Private room,50,5,1,0.05,1,0 +28427,20604809,Brooklyn,Williamsburg,40.71305,-73.95995,Entire home/apt,148,2,11,0.58,1,64 +28428,19900075,Manhattan,Harlem,40.82393,-73.93947,Private room,55,7,0,,1,35 +28429,9831905,Brooklyn,Williamsburg,40.717929999999996,-73.95772,Entire home/apt,230,7,0,,1,0 +28430,76728828,Manhattan,Murray Hill,40.746959999999994,-73.9746,Entire home/apt,250,2,2,0.11,1,0 +28431,5480385,Brooklyn,Park Slope,40.67812,-73.9771,Entire home/apt,200,4,0,,1,0 +28432,28019842,Brooklyn,Clinton Hill,40.6938,-73.96963000000001,Entire home/apt,100,2,0,,1,0 +28433,93487618,Brooklyn,Dyker Heights,40.62643,-74.0072,Entire home/apt,90,2,55,2.85,2,285 +28434,73826443,Queens,Jackson Heights,40.751529999999995,-73.88964,Private room,120,1,4,0.21,1,0 +28435,22758387,Brooklyn,Williamsburg,40.71816,-73.95031,Private room,47,1,32,1.73,1,0 +28436,24051464,Brooklyn,Williamsburg,40.718109999999996,-73.94414,Private room,75,1,1,0.05,1,0 +28437,161184313,Brooklyn,Greenpoint,40.72977,-73.9525,Private room,80,5,19,1.28,2,95 +28438,12795683,Brooklyn,Gowanus,40.6832,-73.98736,Private room,110,2,1,0.05,1,0 +28439,137858241,Queens,Flushing,40.73067,-73.80691,Private room,45,1,9,0.48,1,328 +28440,2856748,Manhattan,Financial District,40.7043,-74.00923,Entire home/apt,300,30,0,,49,346 +28441,9320996,Manhattan,East Village,40.72508,-73.97978,Entire home/apt,150,3,2,0.11,1,0 +28442,135257383,Manhattan,Harlem,40.827709999999996,-73.94699,Entire home/apt,80,5,1,0.05,1,0 +28443,21844834,Manhattan,Midtown,40.75228,-73.97195,Entire home/apt,350,4,0,,1,0 +28444,161262280,Brooklyn,Park Slope,40.67443,-73.98366999999999,Entire home/apt,250,5,4,0.22,1,0 +28445,20827165,Brooklyn,Williamsburg,40.716840000000005,-73.9451,Private room,57,2,27,2.89,2,80 +28446,159811367,Brooklyn,Bedford-Stuyvesant,40.69294,-73.9398,Private room,50,30,3,0.17,10,364 +28447,161268152,Brooklyn,Clinton Hill,40.6838,-73.96176,Entire home/apt,399,1,42,2.25,2,308 +28448,23254491,Manhattan,East Harlem,40.7901,-73.95053,Entire home/apt,132,1,109,5.67,2,12 +28449,6123811,Brooklyn,Fort Greene,40.68892,-73.97749,Entire home/apt,150,2,11,1.46,1,0 +28450,29799151,Brooklyn,Bushwick,40.70483,-73.91433,Private room,40,3,6,0.32,2,0 +28451,32451588,Manhattan,Upper West Side,40.80049,-73.96629,Private room,150,2,0,,1,0 +28452,17322363,Manhattan,Morningside Heights,40.80608,-73.96396999999999,Entire home/apt,189,10,2,0.1,1,0 +28453,2415163,Manhattan,West Village,40.73247,-74.00378,Entire home/apt,400,3,17,0.88,1,37 +28454,15021288,Brooklyn,Greenpoint,40.7268,-73.94072,Entire home/apt,65,24,1,0.05,1,0 +28455,126489138,Queens,East Elmhurst,40.76008,-73.85965999999999,Private room,100,2,0,,1,0 +28456,50292311,Manhattan,East Village,40.72837,-73.98546,Entire home/apt,250,4,17,1.1,1,5 +28457,3562795,Manhattan,Lower East Side,40.71441,-73.98655,Private room,100,4,0,,1,0 +28458,61989330,Brooklyn,Williamsburg,40.70683,-73.93312,Private room,51,2,2,0.1,1,0 +28459,148107543,Manhattan,Chelsea,40.74494,-73.99762,Entire home/apt,299,2,30,1.57,1,274 +28460,37687663,Manhattan,Lower East Side,40.721540000000005,-73.99331,Private room,125,28,1,0.09,1,0 +28461,3770299,Brooklyn,Clinton Hill,40.692840000000004,-73.96824000000001,Entire home/apt,150,15,0,,1,0 +28462,2738676,Brooklyn,Bedford-Stuyvesant,40.68748,-73.93048,Private room,65,5,2,0.1,1,0 +28463,19909719,Brooklyn,Greenpoint,40.72397,-73.94695,Entire home/apt,295,7,1,0.05,2,0 +28464,159655531,Manhattan,East Harlem,40.80147,-73.94451,Private room,60,3,40,2.11,2,78 +28465,4865463,Manhattan,Upper East Side,40.77445,-73.94783000000001,Entire home/apt,195,6,0,,1,0 +28466,44021436,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95987,Entire home/apt,80,2,14,0.83,1,0 +28467,58633574,Brooklyn,Bedford-Stuyvesant,40.69818,-73.94154,Private room,75,2,7,0.39,1,11 +28468,156047478,Manhattan,Harlem,40.8048,-73.94951,Entire home/apt,91,30,8,0.47,2,216 +28469,16856181,Brooklyn,Bushwick,40.68958,-73.91393000000001,Private room,30,7,3,0.15,1,0 +28470,24374791,Brooklyn,Bedford-Stuyvesant,40.67944,-73.95238,Entire home/apt,57,8,0,,2,0 +28471,11365202,Brooklyn,Clinton Hill,40.68882,-73.96049000000001,Entire home/apt,160,3,38,1.99,1,2 +28472,159586124,Manhattan,Chelsea,40.73851,-73.99746,Entire home/apt,400,4,1,0.05,1,2 +28473,1472745,Manhattan,Chinatown,40.71346,-73.99141,Private room,100,2,9,0.47,1,0 +28474,149303542,Manhattan,Upper East Side,40.77752,-73.94646999999999,Private room,149,4,0,,1,0 +28475,13775180,Brooklyn,Downtown Brooklyn,40.69256,-73.99085,Entire home/apt,250,5,0,,1,0 +28476,38609489,Brooklyn,Bushwick,40.70032,-73.92985,Private room,40,4,1,0.05,1,0 +28477,107955341,Manhattan,Tribeca,40.71503,-74.00702,Entire home/apt,400,2,5,0.39,1,0 +28478,7241732,Queens,Woodside,40.74602,-73.90604,Private room,55,1,0,,1,0 +28479,3484157,Manhattan,West Village,40.73983,-74.009,Private room,250,2,2,0.11,1,0 +28480,161344095,Bronx,Van Nest,40.84279,-73.86527,Entire home/apt,100,2,98,5.1,1,89 +28481,103345244,Bronx,Kingsbridge,40.88447,-73.90156999999999,Private room,55,1,14,0.76,2,127 +28482,161352782,Staten Island,Clifton,40.61603,-74.08666,Entire home/apt,65,1,70,8.43,1,300 +28483,161351021,Queens,Woodside,40.75593,-73.90268,Private room,425,1,11,0.58,2,0 +28484,28458209,Manhattan,Harlem,40.82908,-73.94671,Private room,49,3,19,0.99,2,211 +28485,31880119,Manhattan,Nolita,40.72382,-73.99540999999999,Entire home/apt,175,2,9,0.47,1,0 +28486,2496299,Brooklyn,Williamsburg,40.71159,-73.94514000000001,Entire home/apt,129,5,19,1.03,1,295 +28487,37260534,Bronx,Norwood,40.87491,-73.87575,Private room,87,2,1,0.05,1,0 +28488,109195230,Brooklyn,Williamsburg,40.70471,-73.94151,Private room,42,4,7,0.37,1,0 +28489,161360183,Brooklyn,Gowanus,40.68015,-73.98795,Entire home/apt,115,3,2,0.11,1,0 +28490,23909694,Manhattan,Greenwich Village,40.72855,-73.99767,Entire home/apt,150,3,3,0.16,2,0 +28491,5690047,Brooklyn,Park Slope,40.66883,-73.98099,Private room,50,3,2,0.15,1,0 +28492,76104209,Manhattan,Upper West Side,40.77055,-73.98613,Entire home/apt,374,60,0,,33,290 +28493,46396810,Brooklyn,Williamsburg,40.709340000000005,-73.95243,Private room,70,7,1,0.05,1,0 +28494,51734800,Brooklyn,Flatbush,40.63074,-73.96418,Private room,50,20,1,0.19,2,358 +28495,24625767,Manhattan,Harlem,40.82394,-73.94431999999999,Private room,75,30,2,0.1,1,0 +28496,10775192,Brooklyn,Crown Heights,40.66838,-73.96,Private room,45,1,0,,2,88 +28497,19385850,Manhattan,Upper East Side,40.78281,-73.94516,Entire home/apt,143,2,88,4.9,1,29 +28498,161432983,Manhattan,East Village,40.73215,-73.98804,Entire home/apt,170,1,1,0.05,1,0 +28499,23208262,Brooklyn,Williamsburg,40.714240000000004,-73.94283,Private room,42,20,0,,1,0 +28500,109852649,Brooklyn,Bushwick,40.69984,-73.93899,Private room,65,5,0,,1,0 +28501,119669058,Brooklyn,Bedford-Stuyvesant,40.694590000000005,-73.95551,Private room,65,2,22,1.64,34,289 +28502,23385082,Queens,Astoria,40.765159999999995,-73.92281,Entire home/apt,112,6,2,0.11,1,0 +28503,20689561,Brooklyn,Sunset Park,40.646879999999996,-74.00209,Entire home/apt,150,3,5,0.27,1,3 +28504,13997669,Manhattan,Washington Heights,40.850840000000005,-73.93905,Entire home/apt,200,5,3,0.26,1,30 +28505,161446165,Manhattan,Upper West Side,40.803090000000005,-73.96568,Private room,100,4,1,0.16,1,341 +28506,61391963,Manhattan,Kips Bay,40.74241,-73.97954,Entire home/apt,142,30,8,0.42,91,281 +28507,158034247,Brooklyn,Gravesend,40.58985,-73.98482,Private room,55,2,25,1.34,1,0 +28508,94713722,Queens,Springfield Gardens,40.68857,-73.75488,Private room,50,2,23,1.4,4,348 +28509,61391963,Manhattan,Murray Hill,40.74975,-73.97699,Entire home/apt,185,30,0,,91,0 +28510,20951849,Brooklyn,Bedford-Stuyvesant,40.692240000000005,-73.93219,Entire home/apt,185,1,90,4.68,2,181 +28511,81466660,Brooklyn,Bushwick,40.69608,-73.93133,Private room,45,5,1,0.16,1,0 +28512,161458034,Brooklyn,Windsor Terrace,40.65136,-73.97689,Entire home/apt,160,3,37,1.95,1,71 +28513,20905481,Manhattan,Hell's Kitchen,40.76028,-73.99014,Entire home/apt,179,1,125,6.51,1,201 +28514,88547794,Queens,Astoria,40.76717,-73.90994,Private room,55,7,7,0.49,1,365 +28515,59477827,Manhattan,Murray Hill,40.74785,-73.96967,Private room,195,11,0,,1,0 +28516,4455011,Brooklyn,Williamsburg,40.70511,-73.94474,Private room,74,5,0,,1,0 +28517,161468583,Brooklyn,Flatbush,40.644290000000005,-73.95732,Entire home/apt,22,2,35,1.83,1,312 +28518,983477,Brooklyn,Greenpoint,40.71951,-73.95277,Entire home/apt,175,2,9,0.56,1,0 +28519,3663769,Brooklyn,Crown Heights,40.67313,-73.9448,Entire home/apt,225,1,16,0.86,1,1 +28520,18605299,Manhattan,Chelsea,40.74688,-73.99656999999999,Private room,99,5,2,0.1,1,0 +28521,36082598,Brooklyn,Bedford-Stuyvesant,40.68316,-73.95033000000001,Entire home/apt,150,2,51,2.65,2,231 +28522,161497828,Brooklyn,Prospect-Lefferts Gardens,40.65534,-73.95644,Entire home/apt,100,2,2,0.11,1,95 +28523,160647707,Brooklyn,Bedford-Stuyvesant,40.685179999999995,-73.95328,Entire home/apt,88,3,4,0.21,1,0 +28524,103170539,Queens,Astoria,40.768240000000006,-73.91135,Private room,29,5,11,0.59,1,156 +28525,28994468,Brooklyn,Williamsburg,40.71298,-73.9485,Entire home/apt,400,4,1,0.05,1,0 +28526,128466802,Brooklyn,Prospect-Lefferts Gardens,40.661,-73.9598,Entire home/apt,85,30,10,0.63,1,2 +28527,106837455,Manhattan,Upper West Side,40.78456,-73.98116999999999,Entire home/apt,140,30,0,,8,0 +28528,123605746,Brooklyn,Crown Heights,40.6752,-73.94366,Private room,65,1,0,,1,0 +28529,95485067,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94153,Entire home/apt,150,1,43,2.32,1,267 +28530,142724947,Manhattan,Inwood,40.87328,-73.91458,Entire home/apt,70,21,7,0.38,1,156 +28531,161519048,Manhattan,Murray Hill,40.7487,-73.98123000000001,Entire home/apt,250,4,0,,1,0 +28532,102011406,Manhattan,East Harlem,40.789770000000004,-73.9476,Private room,99,4,16,0.87,1,130 +28533,44620317,Queens,Corona,40.74061,-73.85651,Shared room,45,1,8,0.53,4,347 +28534,46094052,Manhattan,Midtown,40.76739,-73.98225,Entire home/apt,189,7,3,0.16,1,0 +28535,161300062,Brooklyn,Bushwick,40.69164,-73.90576999999999,Private room,70,1,9,0.49,1,0 +28536,160495098,Brooklyn,East Flatbush,40.63479,-73.94848,Private room,27,2,4,0.23,5,0 +28537,45869461,Brooklyn,Williamsburg,40.7098,-73.9545,Private room,80,4,2,0.11,1,0 +28538,101430405,Manhattan,Midtown,40.76511,-73.98046,Entire home/apt,450,3,0,,1,0 +28539,150044472,Brooklyn,Windsor Terrace,40.6597,-73.98318,Private room,75,14,0,,2,0 +28540,7112420,Manhattan,Chinatown,40.71629,-73.99065999999999,Entire home/apt,175,2,10,0.54,1,0 +28541,63935474,Brooklyn,Bedford-Stuyvesant,40.69538,-73.94657,Private room,35,2,4,0.21,1,0 +28542,3043896,Brooklyn,Bedford-Stuyvesant,40.68611,-73.95170999999999,Private room,41,7,1,0.05,1,0 +28543,161599491,Brooklyn,Borough Park,40.61984,-73.97872,Shared room,50,30,8,0.42,1,179 +28544,8739627,Brooklyn,Bushwick,40.69545,-73.91153,Private room,40,1,0,,1,0 +28545,5610754,Brooklyn,Williamsburg,40.70778,-73.94411,Entire home/apt,150,7,14,0.83,1,128 +28546,26800283,Manhattan,Upper East Side,40.77267,-73.94735,Entire home/apt,400,2,1,0.08,1,0 +28547,160461605,Manhattan,East Harlem,40.8066,-73.9408,Private room,85,1,6,0.31,1,0 +28548,2244532,Brooklyn,Crown Heights,40.67666,-73.94086999999999,Private room,100,5,1,0.1,1,0 +28549,161616186,Manhattan,Upper West Side,40.78233,-73.98415,Entire home/apt,150,3,20,1.08,1,36 +28550,99202586,Staten Island,Randall Manor,40.6311,-74.12816,Entire home/apt,149,2,3,0.34,5,354 +28551,161592215,Manhattan,East Harlem,40.80209,-73.93584,Entire home/apt,210,6,31,1.68,2,276 +28552,161617875,Manhattan,Washington Heights,40.85244,-73.9405,Entire home/apt,150,2,30,1.61,2,109 +28553,43719554,Manhattan,Harlem,40.82257,-73.94665,Private room,50,16,0,,1,0 +28554,4967965,Brooklyn,Bedford-Stuyvesant,40.682629999999996,-73.92264,Entire home/apt,350,3,42,2.23,1,275 +28555,1493800,Manhattan,East Village,40.72341,-73.98534000000001,Private room,130,4,25,1.35,1,0 +28556,68358695,Manhattan,Hell's Kitchen,40.75803,-73.99853,Entire home/apt,285,3,0,,1,0 +28557,47423579,Brooklyn,Flatbush,40.64366,-73.95794000000001,Shared room,45,2,1,0.05,1,0 +28558,161638092,Bronx,Belmont,40.85828,-73.88559000000001,Private room,30,1,3,0.16,1,0 +28559,11769840,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92456999999999,Private room,50,2,42,2.28,2,53 +28560,126110540,Brooklyn,East New York,40.663790000000006,-73.88176999999999,Private room,50,1,43,2.26,3,89 +28561,1931414,Manhattan,Upper West Side,40.797990000000006,-73.97018,Private room,250,6,1,0.08,1,55 +28562,24379402,Manhattan,East Village,40.72341,-73.98940999999999,Entire home/apt,110,7,2,0.2,1,0 +28563,59089796,Queens,Richmond Hill,40.70248,-73.81936999999999,Entire home/apt,125,2,31,1.65,2,62 +28564,10004299,Brooklyn,Prospect Heights,40.681999999999995,-73.97231,Private room,80,2,0,,1,0 +28565,154108693,Queens,Astoria,40.758590000000005,-73.91748,Private room,70,1,0,,1,0 +28566,161671480,Manhattan,Hell's Kitchen,40.76147,-73.99908,Private room,150,1,0,,1,0 +28567,159726656,Manhattan,Upper West Side,40.78898,-73.97418,Shared room,53,3,7,0.38,1,0 +28568,161613483,Brooklyn,Bedford-Stuyvesant,40.68594,-73.92394,Private room,55,4,18,0.99,1,0 +28569,88801066,Brooklyn,Brooklyn Heights,40.6936,-73.9935,Entire home/apt,647,5,4,0.25,1,166 +28570,18730893,Manhattan,Harlem,40.82547,-73.94091999999999,Private room,95,1,0,,1,0 +28571,844422,Brooklyn,Greenpoint,40.72684,-73.94001999999999,Entire home/apt,109,4,0,,1,0 +28572,1694701,Manhattan,Chelsea,40.73989,-73.99863,Entire home/apt,485,4,1,0.05,1,0 +28573,1776666,Brooklyn,Williamsburg,40.711059999999996,-73.94884,Entire home/apt,160,5,15,0.97,1,83 +28574,40875021,Manhattan,East Harlem,40.79315,-73.93385,Entire home/apt,150,1,14,0.76,3,353 +28575,22967048,Manhattan,Chelsea,40.75206,-73.99829,Entire home/apt,200,3,43,2.34,1,63 +28576,15338067,Brooklyn,Williamsburg,40.71198,-73.9582,Private room,58,4,9,0.48,1,0 +28577,73358102,Manhattan,Chelsea,40.750029999999995,-73.99647,Entire home/apt,109,2,76,3.95,1,4 +28578,16154405,Manhattan,Upper East Side,40.78314,-73.94659,Private room,75,1,45,2.34,1,7 +28579,10385600,Manhattan,Washington Heights,40.84243,-73.93693,Private room,50,1,1,0.05,1,0 +28580,19577205,Manhattan,Washington Heights,40.8335,-73.9468,Entire home/apt,215,4,2,0.11,1,0 +28581,161742462,Manhattan,Harlem,40.80814,-73.94238,Entire home/apt,249,6,40,2.35,1,293 +28582,61391963,Manhattan,Murray Hill,40.74933,-73.9767,Entire home/apt,200,30,0,,91,310 +28583,5853457,Brooklyn,Borough Park,40.6421,-73.99732,Private room,56,1,12,0.65,4,348 +28584,18587989,Brooklyn,Williamsburg,40.709790000000005,-73.96631,Entire home/apt,120,1,0,,1,0 +28585,14364462,Brooklyn,Bushwick,40.70597,-73.92090999999999,Entire home/apt,127,3,9,0.49,2,34 +28586,26411218,Queens,Elmhurst,40.73491,-73.888,Entire home/apt,83,3,77,4.05,2,22 +28587,148237535,Brooklyn,Canarsie,40.64017,-73.9105,Entire home/apt,290,3,4,0.39,4,364 +28588,28110419,Brooklyn,Boerum Hill,40.68734,-73.98633000000001,Entire home/apt,150,13,0,,1,0 +28589,139867352,Queens,Ditmars Steinway,40.78021,-73.91015,Private room,39,1,43,2.28,2,351 +28590,161743285,Queens,Rego Park,40.732659999999996,-73.85446999999999,Shared room,27,60,1,0.05,1,0 +28591,5853457,Brooklyn,Borough Park,40.64226,-73.99706,Private room,56,1,12,0.65,4,333 +28592,342760,Manhattan,Upper East Side,40.76703,-73.95553000000001,Entire home/apt,200,6,4,0.34,1,5 +28593,45553025,Bronx,Mott Haven,40.81037,-73.91946,Entire home/apt,65,2,47,2.52,1,0 +28594,10018530,Brooklyn,Bushwick,40.70328,-73.91429000000001,Private room,50,2,2,0.1,1,0 +28595,161770518,Brooklyn,East Flatbush,40.647009999999995,-73.94965,Entire home/apt,195,2,65,3.51,1,236 +28596,8456422,Manhattan,Chelsea,40.74009,-73.99608,Entire home/apt,625,2,10,0.59,1,0 +28597,14613015,Manhattan,Gramercy,40.73442,-73.98383000000001,Private room,69,4,4,0.21,1,0 +28598,161784847,Brooklyn,Flatbush,40.65229,-73.96551,Entire home/apt,125,2,31,1.67,1,24 +28599,16725099,Brooklyn,Williamsburg,40.716440000000006,-73.94807,Entire home/apt,160,2,1,0.05,1,0 +28600,161814450,Manhattan,Upper West Side,40.778059999999996,-73.98225,Entire home/apt,195,3,20,1.27,1,217 +28601,1927555,Brooklyn,Greenpoint,40.72612,-73.9532,Entire home/apt,250,4,1,0.05,1,0 +28602,127267474,Manhattan,Midtown,40.75459,-73.96706,Entire home/apt,125,2,5,0.26,1,0 +28603,4152479,Brooklyn,Williamsburg,40.70851,-73.95318,Private room,100,4,1,0.06,2,0 +28604,26328221,Brooklyn,Sunset Park,40.65413,-74.00242,Entire home/apt,180,2,19,0.99,2,15 +28605,16219811,Manhattan,Harlem,40.8,-73.95056,Entire home/apt,175,4,3,0.18,1,0 +28606,4443213,Brooklyn,Williamsburg,40.712759999999996,-73.946,Private room,90,2,5,0.33,1,0 +28607,93691661,Manhattan,Washington Heights,40.83515,-73.94226,Private room,50,2,67,3.54,2,20 +28608,161592215,Manhattan,East Harlem,40.8025,-73.93775,Entire home/apt,200,6,32,1.73,2,251 +28609,6484703,Brooklyn,Williamsburg,40.7077,-73.94029,Entire home/apt,90,4,11,0.59,1,3 +28610,100675420,Brooklyn,Bedford-Stuyvesant,40.69129,-73.9523,Private room,70,1,87,4.58,1,8 +28611,26494979,Brooklyn,Williamsburg,40.71591,-73.94693000000001,Entire home/apt,115,3,4,0.22,1,0 +28612,29343272,Manhattan,Lower East Side,40.72303,-73.98965,Private room,75,3,18,0.96,1,0 +28613,131647128,Manhattan,Upper West Side,40.77605,-73.98833,Entire home/apt,190,30,4,0.63,25,363 +28614,131647128,Manhattan,Upper West Side,40.77483,-73.98973000000001,Entire home/apt,200,30,1,0.11,25,0 +28615,126110540,Brooklyn,East New York,40.6639,-73.88173,Private room,125,1,12,0.68,3,89 +28616,116881616,Brooklyn,Bath Beach,40.605540000000005,-74.01044,Private room,33,6,29,1.53,2,32 +28617,1444513,Brooklyn,Crown Heights,40.6697,-73.95831,Entire home/apt,130,2,15,0.82,1,0 +28618,35509609,Manhattan,Chelsea,40.7478,-73.99995,Entire home/apt,149,4,3,0.32,1,0 +28619,274583,Manhattan,Gramercy,40.73702,-73.98824,Entire home/apt,195,3,2,0.11,1,0 +28620,161900946,Brooklyn,Sunset Park,40.638009999999994,-74.01665,Entire home/apt,105,2,0,,1,0 +28621,34614054,Brooklyn,Greenpoint,40.72348,-73.94569,Shared room,40,2,7,0.39,5,299 +28622,161903367,Brooklyn,Bedford-Stuyvesant,40.68135,-73.94718,Private room,28,2,1,0.05,1,0 +28623,60365315,Brooklyn,Sheepshead Bay,40.60475,-73.95987,Private room,45,7,0,,1,0 +28624,160660639,Brooklyn,Carroll Gardens,40.67666,-74.00055,Entire home/apt,68,1,62,3.33,2,179 +28625,125914985,Brooklyn,East Flatbush,40.63439,-73.94397,Entire home/apt,150,6,57,3.1,2,128 +28626,161910094,Brooklyn,Flatbush,40.638090000000005,-73.96445,Private room,60,2,0,,1,173 +28627,161915399,Manhattan,East Village,40.72245,-73.98337,Entire home/apt,260,1,86,4.59,1,259 +28628,126397762,Manhattan,Harlem,40.82967,-73.93956999999999,Private room,79,1,63,3.28,3,51 +28629,83926842,Manhattan,Midtown,40.74649,-73.98684,Entire home/apt,130,4,33,1.76,1,354 +28630,161943355,Manhattan,East Village,40.72388,-73.98411,Entire home/apt,90,5,21,1.1,1,83 +28631,40478687,Manhattan,Murray Hill,40.750690000000006,-73.97973,Entire home/apt,250,4,1,0.05,1,0 +28632,161971187,Manhattan,Inwood,40.860890000000005,-73.92832,Entire home/apt,100,4,0,,1,0 +28633,161976329,Brooklyn,East New York,40.6714,-73.87701,Entire home/apt,55,3,58,3.02,1,57 +28634,123136283,Queens,Astoria,40.76403,-73.90612,Entire home/apt,280,2,69,3.68,1,307 +28635,3297475,Brooklyn,Greenpoint,40.724579999999996,-73.94122,Private room,43,3,3,0.16,1,0 +28636,5132258,Manhattan,Harlem,40.82434,-73.95066,Entire home/apt,200,3,14,0.73,2,0 +28637,161983650,Queens,Bayside,40.752359999999996,-73.75519,Private room,41,2,2,0.11,1,0 +28638,23257217,Brooklyn,Bushwick,40.70579,-73.9185,Entire home/apt,89,2,3,0.77,1,25 +28639,9104749,Brooklyn,Bedford-Stuyvesant,40.691340000000004,-73.95551,Private room,50,3,15,0.8,1,0 +28640,161919000,Brooklyn,Sheepshead Bay,40.585679999999996,-73.93536,Private room,85,3,0,,1,0 +28641,133785513,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.93705,Private room,42,1,92,4.9,4,80 +28642,3529175,Brooklyn,Crown Heights,40.67096,-73.95260999999999,Private room,85,2,34,2.12,1,127 +28643,160326327,Brooklyn,Cypress Hills,40.68502,-73.87546999999999,Private room,45,2,31,1.63,3,0 +28644,126397762,Manhattan,Harlem,40.83021,-73.94114,Shared room,39,1,7,0.36,3,0 +28645,5853457,Brooklyn,Borough Park,40.640609999999995,-73.99631,Private room,56,1,12,0.81,4,321 +28646,161997330,Manhattan,Chelsea,40.74221,-73.99625999999999,Entire home/apt,295,9,2,0.11,1,0 +28647,2413383,Queens,Astoria,40.76432,-73.91885,Entire home/apt,110,2,7,0.37,1,0 +28648,162001851,Manhattan,West Village,40.736959999999996,-74.00397,Entire home/apt,170,1,12,0.65,1,0 +28649,110142237,Manhattan,Harlem,40.80487,-73.95752,Entire home/apt,90,3,32,1.69,1,1 +28650,77792023,Brooklyn,Bushwick,40.70391,-73.92593000000001,Private room,40,2,4,0.21,1,0 +28651,156684502,Queens,Springfield Gardens,40.66158,-73.7705,Private room,50,1,341,17.82,3,25 +28652,1664473,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.94975,Entire home/apt,120,4,0,,1,0 +28653,8750186,Brooklyn,Williamsburg,40.7207,-73.96087,Private room,69,7,0,,1,0 +28654,162005440,Queens,East Elmhurst,40.76311,-73.89098,Private room,100,2,23,1.23,1,95 +28655,1834034,Brooklyn,Crown Heights,40.672059999999995,-73.93446,Private room,25,4,7,0.37,1,174 +28656,21963202,Queens,Jamaica Estates,40.7177,-73.78689,Entire home/apt,135,1,115,6.8,2,138 +28657,6399777,Brooklyn,Crown Heights,40.66863,-73.95045999999999,Entire home/apt,120,3,3,0.16,1,89 +28658,129222253,Bronx,Williamsbridge,40.8785,-73.86346999999999,Entire home/apt,200,1,90,4.76,3,326 +28659,15640230,Brooklyn,Crown Heights,40.66571,-73.9338,Private room,35,30,5,0.28,4,292 +28660,21946213,Manhattan,Harlem,40.823890000000006,-73.93887,Private room,70,1,1,0.05,1,0 +28661,12454759,Brooklyn,Williamsburg,40.7091,-73.96032,Private room,99,1,47,2.47,1,155 +28662,16467711,Brooklyn,Bushwick,40.69743,-73.92171,Private room,75,1,2,0.11,1,0 +28663,82402385,Manhattan,East Village,40.72695,-73.97974,Private room,150,1,133,7.19,1,14 +28664,162097203,Manhattan,Lower East Side,40.718709999999994,-73.98218,Private room,220,2,1,0.05,1,0 +28665,14338184,Brooklyn,Williamsburg,40.71311,-73.95742,Entire home/apt,175,2,2,0.11,1,0 +28666,4476002,Manhattan,Inwood,40.86931,-73.91682,Shared room,90,6,0,,1,0 +28667,802971,Brooklyn,Williamsburg,40.71463,-73.9583,Entire home/apt,120,6,3,0.25,1,1 +28668,202285,Manhattan,Greenwich Village,40.73322,-73.99762,Entire home/apt,320,11,4,0.22,1,0 +28669,1661245,Brooklyn,Williamsburg,40.71,-73.96775,Entire home/apt,250,7,2,0.14,1,0 +28670,155125855,Manhattan,Midtown,40.748740000000005,-73.98495,Private room,199,1,9,0.48,3,0 +28671,67336825,Brooklyn,Williamsburg,40.70879,-73.94977,Entire home/apt,105,3,2,0.11,1,0 +28672,150355601,Brooklyn,Clinton Hill,40.69368,-73.96244,Entire home/apt,110,2,2,0.11,1,0 +28673,3044091,Manhattan,Upper East Side,40.76814,-73.95604,Private room,99,5,0,,1,0 +28674,50682735,Queens,Kew Gardens,40.71162,-73.82799,Entire home/apt,80,2,1,0.05,1,340 +28675,119128599,Queens,Maspeth,40.730940000000004,-73.90131,Private room,59,2,13,0.9,1,35 +28676,5751765,Manhattan,East Harlem,40.799170000000004,-73.94183000000001,Private room,200,3,0,,2,0 +28677,22481311,Brooklyn,Williamsburg,40.70893,-73.95472,Entire home/apt,300,5,0,,1,0 +28678,51521183,Manhattan,Murray Hill,40.74763,-73.97316,Private room,85,9,5,0.27,1,86 +28679,6963310,Brooklyn,Greenpoint,40.72074,-73.94613000000001,Entire home/apt,150,3,1,0.05,1,0 +28680,6317137,Brooklyn,Williamsburg,40.71795,-73.95096,Entire home/apt,180,2,1,0.16,1,0 +28681,10533750,Manhattan,Harlem,40.819140000000004,-73.95515999999999,Private room,75,1,1,0.05,1,0 +28682,162143245,Manhattan,Chelsea,40.745870000000004,-73.99889,Entire home/apt,229,3,2,0.11,1,206 +28683,162142087,Queens,Jamaica,40.68739,-73.80555,Private room,50,1,36,1.96,3,359 +28684,30424811,Manhattan,Midtown,40.74566,-73.98125999999999,Entire home/apt,248,3,2,0.11,1,0 +28685,48189371,Manhattan,Gramercy,40.73614,-73.98872,Private room,299,1,4,0.21,1,0 +28686,12517694,Manhattan,Harlem,40.81244,-73.95260999999999,Private room,67,2,8,0.42,1,3 +28687,162152103,Manhattan,Upper East Side,40.771409999999996,-73.94985,Entire home/apt,150,7,4,0.35,1,0 +28688,85854200,Manhattan,Theater District,40.76109,-73.98261,Entire home/apt,200,4,75,4.36,1,59 +28689,162153544,Manhattan,Murray Hill,40.750479999999996,-73.97776,Entire home/apt,277,3,70,3.66,1,75 +28690,160326327,Brooklyn,Cypress Hills,40.68529,-73.87424,Entire home/apt,99,2,37,2.05,3,14 +28691,22866437,Manhattan,Upper West Side,40.77838,-73.97851,Entire home/apt,600,3,0,,2,0 +28692,23793668,Brooklyn,Williamsburg,40.71312,-73.9517,Private room,80,2,4,0.28,1,0 +28693,83637,Manhattan,Gramercy,40.738040000000005,-73.98503000000001,Entire home/apt,500,28,5,0.27,1,173 +28694,114250912,Brooklyn,Williamsburg,40.71498,-73.94357,Private room,175,3,2,0.11,1,0 +28695,5726293,Queens,Woodside,40.74402,-73.90946,Entire home/apt,150,2,3,0.16,2,0 +28696,25275947,Manhattan,Murray Hill,40.74703,-73.97484,Entire home/apt,239,5,0,,1,0 +28697,162172469,Manhattan,Greenwich Village,40.73233,-73.99678,Entire home/apt,500,5,0,,1,229 +28698,8094921,Brooklyn,Williamsburg,40.70767,-73.943,Entire home/apt,320,1,78,4.16,1,312 +28699,27234334,Brooklyn,Fort Greene,40.68906,-73.97872,Entire home/apt,125,4,7,0.37,1,16 +28700,162174536,Queens,Ridgewood,40.696870000000004,-73.90111,Private room,31,18,1,0.05,1,0 +28701,4396760,Brooklyn,Williamsburg,40.71436,-73.93812,Entire home/apt,189,2,21,1.14,1,70 +28702,16909313,Manhattan,Kips Bay,40.739979999999996,-73.97795,Private room,200,1,1,0.05,1,0 +28703,132706680,Brooklyn,East New York,40.67539,-73.90207,Entire home/apt,120,2,55,2.89,1,86 +28704,156983314,Manhattan,West Village,40.73607,-74.00373,Entire home/apt,150,3,12,0.65,1,0 +28705,90285941,Queens,Astoria,40.76337,-73.92801,Entire home/apt,70,4,1,0.05,1,0 +28706,15969987,Manhattan,Tribeca,40.717240000000004,-74.00446,Entire home/apt,135,7,0,,1,0 +28707,139264026,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.9535,Private room,38,10,1,0.08,1,0 +28708,94981926,Queens,Rego Park,40.72997,-73.86523000000001,Entire home/apt,135,1,27,1.46,1,365 +28709,18011536,Manhattan,Chinatown,40.71799,-73.9964,Entire home/apt,125,2,0,,1,0 +28710,4445275,Brooklyn,Bushwick,40.69948,-73.92371999999999,Private room,50,3,2,0.11,1,0 +28711,1819657,Brooklyn,Clinton Hill,40.68381,-73.96786,Private room,55,2,0,,1,0 +28712,162258673,Manhattan,Washington Heights,40.85394,-73.92971999999999,Private room,50,1,14,0.8,1,63 +28713,921299,Manhattan,Washington Heights,40.8584,-73.93009,Entire home/apt,110,2,3,1.55,1,12 +28714,162261784,Manhattan,Hell's Kitchen,40.7687,-73.99184,Shared room,70,4,1,0.05,1,0 +28715,14142169,Brooklyn,Bedford-Stuyvesant,40.69165,-73.93483,Entire home/apt,140,7,31,1.67,1,67 +28716,5853457,Brooklyn,Borough Park,40.64212,-73.9973,Entire home/apt,149,2,27,1.47,4,308 +28717,2178877,Brooklyn,Williamsburg,40.71881,-73.96396999999999,Private room,100,5,3,0.16,1,0 +28718,162263721,Manhattan,Harlem,40.828920000000004,-73.95082,Private room,70,3,0,,1,0 +28719,16798487,Manhattan,Greenwich Village,40.73506,-73.99743000000001,Entire home/apt,400,7,0,,1,0 +28720,67753773,Brooklyn,Bedford-Stuyvesant,40.687540000000006,-73.94183000000001,Private room,40,5,6,0.32,1,0 +28721,3452920,Manhattan,Lower East Side,40.71765,-73.98451999999999,Entire home/apt,220,1,3,0.16,1,0 +28722,158540605,Queens,Glendale,40.69916,-73.8892,Private room,25,1,95,6.18,6,258 +28723,32345243,Brooklyn,Bushwick,40.69596,-73.92712,Private room,39,4,1,0.05,1,0 +28724,144857346,Manhattan,NoHo,40.72485,-73.99461,Entire home/apt,350,3,1,0.05,3,0 +28725,118407577,Manhattan,East Village,40.72588,-73.98243000000001,Entire home/apt,90,4,4,0.22,1,5 +28726,97510172,Brooklyn,Bushwick,40.68545,-73.91237,Private room,30,2,4,0.21,1,0 +28727,162116640,Brooklyn,Brighton Beach,40.58363,-73.96405,Private room,3000,1,0,,1,90 +28728,155989291,Queens,Corona,40.74725,-73.85486,Entire home/apt,359,3,10,0.66,1,281 +28729,162278789,Brooklyn,Flatbush,40.65224,-73.95724,Private room,65,2,23,3.15,1,0 +28730,803468,Brooklyn,Williamsburg,40.70929,-73.9477,Entire home/apt,109,3,6,0.31,1,0 +28731,3791823,Brooklyn,Williamsburg,40.70902,-73.96059,Private room,70,4,1,0.16,1,0 +28732,55324782,Manhattan,Upper West Side,40.78309,-73.97831,Private room,75,1,1,0.05,1,0 +28733,61391963,Manhattan,Murray Hill,40.74751,-73.97593,Entire home/apt,125,30,0,,91,153 +28734,79373189,Queens,Long Island City,40.759009999999996,-73.93404,Private room,40,1,32,1.75,2,123 +28735,162291393,Brooklyn,Bedford-Stuyvesant,40.6834,-73.94209000000001,Private room,98,1,26,1.4,1,73 +28736,162293435,Manhattan,Upper East Side,40.77585,-73.95336999999999,Entire home/apt,110,2,2,0.11,1,0 +28737,29035593,Manhattan,East Village,40.72339,-73.98911,Entire home/apt,115,3,0,,1,0 +28738,20855321,Brooklyn,Williamsburg,40.70643,-73.93975999999999,Entire home/apt,145,3,0,,1,0 +28739,3182367,Brooklyn,Bedford-Stuyvesant,40.684059999999995,-73.93338,Entire home/apt,89,3,0,,1,0 +28740,4667705,Brooklyn,Bushwick,40.69787,-73.92703,Private room,85,1,59,3.18,1,333 +28741,6707833,Manhattan,East Village,40.727109999999996,-73.97726999999999,Entire home/apt,300,5,1,0.06,1,0 +28742,13795760,Brooklyn,Williamsburg,40.7142,-73.96099,Private room,85,1,0,,2,0 +28743,4031946,Brooklyn,Bushwick,40.69697,-73.93207,Entire home/apt,100,2,4,0.64,1,9 +28744,93039729,Manhattan,Lower East Side,40.7193,-73.98405,Entire home/apt,225,1,0,,2,0 +28745,93039729,Manhattan,Lower East Side,40.71833,-73.98562,Private room,95,1,0,,2,0 +28746,130528939,Manhattan,Midtown,40.74238,-73.98439,Entire home/apt,91,2,1,0.05,1,0 +28747,162276183,Queens,Rego Park,40.71663,-73.85823,Entire home/apt,59,1,110,5.92,1,147 +28748,292137,Brooklyn,Bushwick,40.697540000000004,-73.9348,Private room,74,21,2,0.12,1,0 +28749,104222590,Manhattan,Harlem,40.83044,-73.94839,Private room,33,3,3,0.16,1,0 +28750,161644370,Manhattan,Harlem,40.82245,-73.95404,Private room,42,14,2,0.11,1,0 +28751,81503286,Manhattan,Upper West Side,40.796409999999995,-73.97088000000001,Entire home/apt,75,3,5,0.28,1,0 +28752,13773574,Manhattan,Midtown,40.76512,-73.98201,Entire home/apt,225,30,0,,12,344 +28753,160495098,Brooklyn,East Flatbush,40.633379999999995,-73.94753,Private room,39,2,7,0.5,5,0 +28754,13773574,Manhattan,Midtown,40.76575,-73.98168000000001,Entire home/apt,225,30,0,,12,343 +28755,13773574,Manhattan,Midtown,40.7652,-73.98174,Entire home/apt,225,30,1,0.09,12,343 +28756,159187644,Brooklyn,Bergen Beach,40.61807,-73.90162,Private room,100,5,0,,1,89 +28757,3616251,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95109000000001,Entire home/apt,66,3,41,3.3,1,219 +28758,162352916,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95418000000001,Private room,50,1,24,1.3,1,354 +28759,101970559,Brooklyn,Bushwick,40.694759999999995,-73.90545,Shared room,32,30,3,0.17,6,365 +28760,101970559,Brooklyn,Bushwick,40.69295,-73.90850999999999,Private room,50,30,4,0.21,6,325 +28761,77824133,Manhattan,Harlem,40.816340000000004,-73.95735,Private room,35,7,0,,1,0 +28762,13097902,Manhattan,East Village,40.72652,-73.98966,Entire home/apt,250,2,29,1.58,1,38 +28763,1695734,Brooklyn,Bushwick,40.70108,-73.91409,Entire home/apt,95,3,4,0.21,1,0 +28764,62068432,Manhattan,Harlem,40.81462,-73.95047,Entire home/apt,80,6,2,0.1,1,31 +28765,13773574,Manhattan,Midtown,40.76563,-73.98241999999999,Entire home/apt,225,30,0,,12,340 +28766,9416996,Brooklyn,Williamsburg,40.71672,-73.95819,Entire home/apt,220,2,95,5.02,1,67 +28767,4670203,Manhattan,Hell's Kitchen,40.76285,-73.98728,Private room,105,1,2,0.11,1,89 +28768,14103679,Manhattan,Murray Hill,40.74623,-73.97404,Private room,199,2,75,4.04,1,80 +28769,4143813,Brooklyn,Bushwick,40.70162,-73.91297,Private room,53,5,1,0.05,1,0 +28770,162411010,Queens,Ozone Park,40.68562,-73.83498,Entire home/apt,125,7,3,0.33,1,69 +28771,4332666,Manhattan,Upper West Side,40.79492,-73.96816,Entire home/apt,400,3,10,0.56,1,64 +28772,132934081,Brooklyn,Borough Park,40.64495,-73.99615,Private room,70,7,2,0.11,1,0 +28773,80561485,Queens,Astoria,40.77418,-73.93545,Private room,50,1,62,3.36,2,7 +28774,16569491,Manhattan,Nolita,40.72184,-73.99452,Private room,20,14,9,0.48,1,0 +28775,162432541,Brooklyn,Williamsburg,40.71053,-73.96261,Entire home/apt,300,2,14,2.27,2,279 +28776,1036697,Brooklyn,Bushwick,40.694359999999996,-73.92260999999999,Entire home/apt,89,3,21,1.14,1,30 +28777,6111084,Brooklyn,Williamsburg,40.7063,-73.94439,Private room,59,2,42,2.23,2,14 +28778,1391186,Manhattan,Flatiron District,40.73962,-73.98491999999999,Entire home/apt,221,5,7,0.38,1,1 +28779,160867897,Brooklyn,Sunset Park,40.64351,-74.01848000000001,Private room,100,2,1,0.06,1,365 +28780,20134899,Manhattan,Harlem,40.82816,-73.94957,Private room,69,2,47,3.78,2,0 +28781,129165729,Queens,Astoria,40.76234,-73.91991,Entire home/apt,150,1,75,4.38,1,317 +28782,4642506,Brooklyn,Bedford-Stuyvesant,40.69216,-73.96011,Private room,275,2,17,0.92,1,72 +28783,128793815,Brooklyn,Williamsburg,40.71917,-73.96079,Private room,55,2,68,3.67,4,279 +28784,128793815,Brooklyn,Williamsburg,40.72092,-73.96122,Private room,65,2,31,1.68,4,282 +28785,7002074,Manhattan,East Village,40.72625,-73.97822,Entire home/apt,250,2,2,0.1,1,0 +28786,13773574,Manhattan,Midtown,40.76639,-73.98163000000001,Entire home/apt,225,30,0,,12,343 +28787,17430718,Manhattan,Harlem,40.81537,-73.94067,Entire home/apt,135,3,21,1.13,2,75 +28788,145993199,Brooklyn,Flatbush,40.63436,-73.96126,Entire home/apt,90,2,13,0.7,1,5 +28789,57470846,Manhattan,Upper West Side,40.78472,-73.97575,Entire home/apt,175,3,0,,1,0 +28790,162459728,Manhattan,Harlem,40.80639,-73.94834,Entire home/apt,82,2,0,,1,0 +28791,33610939,Manhattan,Morningside Heights,40.80486,-73.9656,Private room,200,2,0,,1,0 +28792,7286095,Manhattan,Chelsea,40.7443,-73.99732,Entire home/apt,135,1,0,,1,0 +28793,17787106,Manhattan,Lower East Side,40.71757,-73.98394,Private room,75,1,2,0.11,1,0 +28794,23261539,Manhattan,Nolita,40.723440000000004,-73.99592,Entire home/apt,225,7,1,0.08,1,0 +28795,12821514,Manhattan,Harlem,40.80961,-73.94588,Private room,34,2,4,0.21,1,0 +28796,72838963,Queens,Jamaica,40.68411,-73.79688,Shared room,19,1,26,1.4,2,138 +28797,159811367,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93959,Shared room,35,30,4,0.22,10,327 +28798,30548145,Brooklyn,Bushwick,40.69385,-73.9096,Private room,40,14,0,,1,0 +28799,162457374,Bronx,Concourse Village,40.83314,-73.91708,Private room,38,2,0,,1,0 +28800,4148879,Manhattan,Flatiron District,40.74212,-73.99042,Entire home/apt,249,4,3,0.16,1,0 +28801,162427870,Manhattan,Chelsea,40.74729,-73.98957,Private room,115,1,162,8.68,3,312 +28802,31629237,Brooklyn,Williamsburg,40.71783,-73.96141,Entire home/apt,150,3,0,,1,0 +28803,162427870,Manhattan,Midtown,40.74535,-73.99023000000001,Private room,105,1,140,7.39,3,321 +28804,41423658,Brooklyn,Prospect-Lefferts Gardens,40.65896,-73.96104,Entire home/apt,69,2,37,2.0,1,3 +28805,5026324,Manhattan,Harlem,40.830290000000005,-73.94962,Private room,79,2,1,0.05,1,0 +28806,45858744,Brooklyn,Williamsburg,40.70755,-73.95314,Private room,100,2,3,0.3,1,0 +28807,7306239,Brooklyn,Bedford-Stuyvesant,40.68885,-73.94349,Private room,80,1,4,0.21,1,0 +28808,3186412,Queens,Astoria,40.75936,-73.91266,Private room,85,11,0,,1,0 +28809,29001464,Brooklyn,Park Slope,40.67245,-73.97341,Entire home/apt,92,60,1,0.11,1,0 +28810,106899231,Brooklyn,Fort Greene,40.693870000000004,-73.97316,Entire home/apt,100,4,53,3.05,2,88 +28811,162554140,Brooklyn,Prospect-Lefferts Gardens,40.662079999999996,-73.9443,Shared room,22,14,0,,1,0 +28812,162556385,Manhattan,SoHo,40.72224,-73.99991,Entire home/apt,720,3,0,,1,0 +28813,3266249,Brooklyn,Williamsburg,40.71032,-73.95687,Private room,65,2,0,,1,0 +28814,161349813,Queens,Woodhaven,40.69003,-73.8678,Private room,35,3,14,0.83,2,0 +28815,43600815,Brooklyn,Williamsburg,40.704809999999995,-73.93766,Private room,50,4,0,,2,0 +28816,43816141,Brooklyn,Williamsburg,40.7087,-73.94519,Private room,70,3,3,0.16,1,0 +28817,23817448,Queens,Ridgewood,40.7029,-73.91174000000001,Private room,38,2,0,,1,0 +28818,68112758,Manhattan,East Village,40.72188,-73.97957,Entire home/apt,237,4,7,0.45,1,0 +28819,17672907,Brooklyn,Bushwick,40.69178,-73.91243,Private room,30,3,7,0.38,1,0 +28820,75224562,Manhattan,Washington Heights,40.84855,-73.93704,Entire home/apt,250,2,1,0.05,1,0 +28821,14815035,Brooklyn,Williamsburg,40.71938,-73.95476,Entire home/apt,170,3,0,,1,0 +28822,22902111,Manhattan,Upper East Side,40.77774,-73.95711,Entire home/apt,400,5,0,,1,0 +28823,33470925,Manhattan,Hell's Kitchen,40.75827,-73.99544,Entire home/apt,210,4,2,0.11,1,0 +28824,85216513,Queens,Sunnyside,40.73679,-73.92560999999999,Private room,50,2,2,0.11,1,179 +28825,158191277,Brooklyn,Crown Heights,40.6763,-73.94107,Private room,75,6,3,0.16,3,0 +28826,57034140,Brooklyn,Bedford-Stuyvesant,40.69338,-73.93125,Private room,65,4,3,0.16,1,0 +28827,62048197,Brooklyn,Bedford-Stuyvesant,40.68373,-73.93056,Entire home/apt,85,2,2,0.14,1,0 +28828,53693534,Brooklyn,Crown Heights,40.6756,-73.91465,Entire home/apt,100,5,0,,1,0 +28829,4683415,Manhattan,West Village,40.73612,-74.00828,Entire home/apt,290,3,5,0.63,1,0 +28830,70068899,Manhattan,East Harlem,40.80039,-73.9361,Entire home/apt,165,3,1,0.05,1,0 +28831,17110907,Manhattan,SoHo,40.72594,-74.00135999999999,Private room,180,4,1,0.06,1,0 +28832,162598902,Brooklyn,Bedford-Stuyvesant,40.6861,-73.95161,Private room,40,4,2,0.11,1,0 +28833,16897284,Manhattan,Tribeca,40.71813,-74.00538,Entire home/apt,325,1,35,1.84,1,141 +28834,83091890,Brooklyn,Williamsburg,40.71815,-73.94189,Entire home/apt,190,2,46,2.97,1,239 +28835,26984764,Queens,Long Island City,40.743970000000004,-73.95666999999999,Private room,90,2,1,0.05,1,0 +28836,26022466,Manhattan,Lower East Side,40.71495,-73.98589,Private room,70,1,8,0.42,1,0 +28837,124006965,Manhattan,Kips Bay,40.73836,-73.98035,Entire home/apt,167,3,3,0.16,1,0 +28838,15640230,Brooklyn,Crown Heights,40.66452,-73.9337,Private room,33,30,1,0.1,4,354 +28839,134293540,Queens,Ridgewood,40.70117,-73.90666,Shared room,33,30,1,0.05,4,7 +28840,42304005,Manhattan,Theater District,40.759570000000004,-73.98798000000001,Entire home/apt,151,2,18,0.97,1,72 +28841,146345538,Brooklyn,Bushwick,40.693290000000005,-73.91328,Shared room,15,30,3,0.16,5,344 +28842,5680111,Brooklyn,Bushwick,40.68608,-73.91534,Private room,72,5,23,1.21,7,112 +28843,121713773,Manhattan,Midtown,40.74788,-73.98376,Private room,150,2,2,0.11,1,0 +28844,162456824,Brooklyn,Cobble Hill,40.68675,-73.9995,Entire home/apt,145,1,67,3.63,2,146 +28845,49019705,Brooklyn,Bushwick,40.703829999999996,-73.92663,Entire home/apt,200,1,0,,1,0 +28846,78895626,Brooklyn,Bedford-Stuyvesant,40.68444,-73.91874,Private room,35,4,0,,1,0 +28847,26898137,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94481999999999,Private room,48,7,1,0.05,1,0 +28848,150837630,Brooklyn,Bushwick,40.699670000000005,-73.9299,Private room,50,3,16,0.85,1,0 +28849,136455880,Bronx,Fordham,40.86674,-73.89284,Private room,30,2,2,0.11,2,90 +28850,9293730,Manhattan,Upper West Side,40.79638,-73.96332,Entire home/apt,125,30,1,0.09,16,284 +28851,405986,Queens,Rego Park,40.732690000000005,-73.8584,Entire home/apt,81,4,6,0.32,1,6 +28852,108774275,Manhattan,East Village,40.72712,-73.98233,Entire home/apt,115,2,14,1.21,1,3 +28853,13773574,Manhattan,Midtown,40.76518,-73.98286999999999,Entire home/apt,225,30,0,,12,343 +28854,48296060,Manhattan,Financial District,40.71086,-74.00464000000001,Private room,128,3,4,0.36,1,0 +28855,21577034,Manhattan,Hell's Kitchen,40.7638,-73.9944,Private room,65,1,28,1.51,2,107 +28856,65062170,Brooklyn,Prospect Heights,40.6776,-73.96638,Private room,80,3,1,0.05,1,0 +28857,161514654,Manhattan,East Harlem,40.79598,-73.94838,Entire home/apt,135,2,56,3.11,1,66 +28858,6145729,Manhattan,SoHo,40.72605,-74.00572,Entire home/apt,3000,7,1,1.0,1,325 +28859,46842591,Manhattan,Financial District,40.70333,-74.00959,Entire home/apt,240,10,10,0.54,2,216 +28860,104035649,Brooklyn,Bushwick,40.70185,-73.93119,Private room,50,2,0,,1,0 +28861,50909072,Brooklyn,Williamsburg,40.71291,-73.95959,Private room,100,3,3,0.16,1,0 +28862,162280872,Manhattan,Upper East Side,40.77383,-73.94903000000001,Entire home/apt,150,60,5,0.31,13,155 +28863,62792050,Manhattan,East Harlem,40.78714,-73.94114,Private room,65,2,6,0.37,1,0 +28864,162280872,Manhattan,Upper East Side,40.77466,-73.94748,Entire home/apt,150,30,5,0.29,13,140 +28865,19119771,Manhattan,Harlem,40.82025,-73.95206,Entire home/apt,180,3,5,0.26,1,0 +28866,6866356,Manhattan,Washington Heights,40.85521,-73.93528,Private room,50,4,21,1.15,1,34 +28867,91167002,Manhattan,Hell's Kitchen,40.76405,-73.98877,Entire home/apt,329,7,1,0.06,3,89 +28868,44213272,Queens,Ditmars Steinway,40.77216,-73.91252,Private room,138,30,0,,5,234 +28869,36283215,Brooklyn,Williamsburg,40.712270000000004,-73.93683,Private room,54,2,4,0.22,1,0 +28870,29412145,Bronx,Port Morris,40.80726,-73.92999,Private room,50,2,4,0.21,1,0 +28871,158461160,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94471999999999,Entire home/apt,63,30,4,0.26,6,281 +28872,138607228,Brooklyn,Bushwick,40.693670000000004,-73.90756,Entire home/apt,150,2,41,2.78,3,0 +28873,105061915,Manhattan,East Harlem,40.80279,-73.9445,Private room,43,1,13,0.72,2,6 +28874,1910170,Brooklyn,Fort Greene,40.68855,-73.97883,Entire home/apt,145,5,6,0.32,1,0 +28875,4915579,Brooklyn,Brooklyn Heights,40.69491,-73.99355,Entire home/apt,160,3,0,,1,0 +28876,72593389,Brooklyn,Williamsburg,40.71353,-73.96216,Private room,60,2,1,0.05,1,0 +28877,24875845,Manhattan,Harlem,40.82592,-73.93911,Private room,85,2,15,0.82,1,75 +28878,4243073,Manhattan,Greenwich Village,40.72847,-74.00068,Entire home/apt,149,14,8,0.42,1,38 +28879,154834587,Manhattan,East Harlem,40.79428,-73.94433000000001,Private room,69,1,145,7.64,1,4 +28880,42427554,Brooklyn,Bushwick,40.69728,-73.91386999999999,Private room,40,5,0,,1,0 +28881,13532838,Manhattan,Chinatown,40.71703,-73.9923,Entire home/apt,400,3,0,,1,0 +28882,162745077,Queens,Long Island City,40.75447,-73.92886999999999,Private room,150,2,17,0.92,2,72 +28883,79680629,Manhattan,Hell's Kitchen,40.7625,-73.99778,Entire home/apt,350,2,3,0.18,1,0 +28884,77751221,Brooklyn,Crown Heights,40.67423,-73.92913,Private room,90,3,16,0.87,1,0 +28885,162781363,Manhattan,East Village,40.72486,-73.98241,Entire home/apt,140,30,4,0.22,1,190 +28886,6924461,Queens,Ridgewood,40.71261,-73.91429000000001,Private room,80,2,39,2.08,1,68 +28887,162784512,Manhattan,Financial District,40.70875,-74.00183,Private room,129,30,32,1.73,1,0 +28888,23939793,Manhattan,Upper West Side,40.77428,-73.97893,Entire home/apt,60,3,11,0.59,1,0 +28889,49662398,Brooklyn,Bushwick,40.69546,-73.92741,Entire home/apt,110,4,5,0.27,1,0 +28890,12258594,Staten Island,St. George,40.64497,-74.08456,Private room,75,2,10,0.53,2,207 +28891,128560208,Brooklyn,Williamsburg,40.70429,-73.936,Private room,150,5,3,0.32,1,179 +28892,105018962,Brooklyn,Bedford-Stuyvesant,40.68379,-73.92931999999999,Private room,45,3,1,0.05,2,0 +28893,25769776,Brooklyn,Prospect-Lefferts Gardens,40.65616,-73.95676,Entire home/apt,64,2,4,0.21,1,0 +28894,138200407,Queens,Astoria,40.76743,-73.92336,Entire home/apt,71,98,0,,1,0 +28895,132464629,Manhattan,Upper West Side,40.78178,-73.97928,Entire home/apt,135,12,1,0.05,1,0 +28896,18616281,Brooklyn,Williamsburg,40.714529999999996,-73.96038,Private room,100,1,10,0.53,1,0 +28897,68945394,Manhattan,Roosevelt Island,40.761759999999995,-73.94999,Shared room,30,4,1,0.06,1,0 +28898,31069102,Brooklyn,Red Hook,40.67989,-74.00818000000001,Entire home/apt,110,5,28,1.53,1,0 +28899,116236385,Manhattan,Upper East Side,40.78068,-73.94963,Private room,200,2,43,2.33,1,8 +28900,21410914,Manhattan,Morningside Heights,40.81245,-73.95813000000001,Private room,200,3,30,1.84,6,1 +28901,96379938,Brooklyn,East Flatbush,40.65381,-73.94819,Private room,30,2,48,2.58,2,0 +28902,41930087,Manhattan,Washington Heights,40.848259999999996,-73.94131,Private room,65,1,6,0.33,1,0 +28903,67373899,Brooklyn,Bedford-Stuyvesant,40.68206,-73.94417,Entire home/apt,100,1,25,1.35,1,108 +28904,4189538,Manhattan,Two Bridges,40.71107,-73.99605,Entire home/apt,109,3,27,1.46,1,0 +28905,2838365,Brooklyn,Fort Greene,40.68528,-73.96947,Private room,71,1,0,,1,0 +28906,43756609,Brooklyn,Bushwick,40.68847,-73.913,Private room,70,1,3,0.16,2,0 +28907,7475578,Manhattan,Little Italy,40.71909,-73.99731,Private room,70,5,3,0.17,2,42 +28908,32153139,Manhattan,Harlem,40.813179999999996,-73.94508,Private room,85,3,0,,2,0 +28909,21410914,Manhattan,Morningside Heights,40.8112,-73.95966999999999,Private room,100,3,42,2.43,6,0 +28910,80601038,Queens,Forest Hills,40.72761,-73.84109000000001,Private room,83,1,25,1.35,2,361 +28911,162836752,Brooklyn,East New York,40.670770000000005,-73.87564,Entire home/apt,169,2,23,1.36,1,196 +28912,34954588,Queens,Elmhurst,40.740590000000005,-73.86865999999999,Private room,50,2,2,0.11,1,365 +28913,80824522,Brooklyn,Bushwick,40.70208,-73.93259,Private room,55,1,19,1.03,2,74 +28914,112901574,Brooklyn,Bedford-Stuyvesant,40.690490000000004,-73.93262,Private room,65,2,23,1.25,4,319 +28915,107296819,Manhattan,East Harlem,40.795759999999994,-73.93735,Entire home/apt,110,1,69,3.64,3,9 +28916,24478039,Manhattan,Chelsea,40.742470000000004,-74.00234,Entire home/apt,285,3,1,0.05,1,0 +28917,6447195,Manhattan,Hell's Kitchen,40.762840000000004,-73.99034,Entire home/apt,180,3,33,1.79,2,0 +28918,126397762,Manhattan,Harlem,40.83034,-73.94017,Private room,69,1,55,2.91,3,0 +28919,24715671,Manhattan,Midtown,40.74197,-73.98328000000001,Entire home/apt,199,30,1,0.08,4,177 +28920,58380725,Brooklyn,Flatbush,40.65099,-73.95596,Entire home/apt,95,2,90,4.79,1,73 +28921,11680404,Brooklyn,Williamsburg,40.71304,-73.96252,Entire home/apt,140,5,0,,1,0 +28922,162914079,Manhattan,East Village,40.72923,-73.98250999999999,Private room,99,1,1,0.05,1,0 +28923,75216989,Queens,Flushing,40.76475,-73.83,Private room,79,2,14,1.71,4,320 +28924,37172480,Manhattan,Hell's Kitchen,40.76565,-73.98708,Entire home/apt,225,1,41,2.2,1,11 +28925,162923870,Brooklyn,Williamsburg,40.71967,-73.9643,Entire home/apt,149,9,13,0.86,1,29 +28926,83170219,Brooklyn,Williamsburg,40.7052,-73.94397,Private room,60,2,1,0.06,1,0 +28927,13262918,Brooklyn,Williamsburg,40.711529999999996,-73.95743,Private room,85,1,13,0.73,3,11 +28928,4520714,Manhattan,Harlem,40.815290000000005,-73.94367,Entire home/apt,130,1,77,4.16,1,21 +28929,132130978,Brooklyn,Bedford-Stuyvesant,40.686440000000005,-73.93966999999999,Entire home/apt,150,1,50,2.96,1,335 +28930,137136024,Queens,Maspeth,40.72575,-73.89456,Private room,75,1,4,0.22,1,0 +28931,48086015,Manhattan,Chinatown,40.71532,-73.99903,Entire home/apt,150,7,2,0.11,1,0 +28932,15788530,Queens,Ridgewood,40.701879999999996,-73.90429,Private room,60,7,2,0.11,2,0 +28933,12531773,Manhattan,Harlem,40.82258,-73.95368,Private room,80,4,68,3.65,2,102 +28934,9893943,Manhattan,Gramercy,40.73445,-73.98423000000001,Entire home/apt,220,3,12,0.81,1,0 +28935,122919892,Manhattan,Harlem,40.82392,-73.94537,Entire home/apt,129,5,0,,1,0 +28936,113805886,Manhattan,Upper East Side,40.7771,-73.9502,Entire home/apt,245,31,4,0.29,33,342 +28937,4085770,Manhattan,Upper East Side,40.78208,-73.959,Entire home/apt,500,19,0,,1,0 +28938,113805886,Manhattan,Upper East Side,40.77746,-73.95043000000001,Entire home/apt,135,31,2,0.11,33,338 +28939,6997016,Brooklyn,Park Slope,40.6718,-73.98250999999999,Private room,190,2,57,3.08,1,354 +28940,58237901,Brooklyn,Brownsville,40.661159999999995,-73.90305,Entire home/apt,100,4,29,1.57,1,281 +28941,152629314,Manhattan,East Village,40.724540000000005,-73.97573,Private room,80,3,2,0.11,1,0 +28942,70079814,Brooklyn,Sheepshead Bay,40.60583,-73.95165,Entire home/apt,200,3,4,0.26,1,0 +28943,135587084,Manhattan,East Village,40.72504,-73.98326999999999,Entire home/apt,150,12,17,0.9,1,0 +28944,1626430,Queens,Ditmars Steinway,40.77714,-73.91071,Entire home/apt,120,2,81,4.31,1,27 +28945,3750764,Manhattan,Chelsea,40.750809999999994,-74.00395999999999,Private room,2010,1,0,,6,364 +28946,3750764,Manhattan,Chelsea,40.74913,-74.00373,Private room,3210,1,0,,6,364 +28947,3750764,Manhattan,Chelsea,40.74888,-74.00480999999999,Entire home/apt,4160,1,0,,6,364 +28948,4238402,Brooklyn,Williamsburg,40.715579999999996,-73.94801,Entire home/apt,117,2,1,0.05,1,0 +28949,162456824,Brooklyn,Cobble Hill,40.68696,-73.99955,Entire home/apt,125,1,68,3.65,2,142 +28950,1371055,Brooklyn,Prospect Heights,40.677640000000004,-73.96632,Private room,70,5,18,0.98,1,8 +28951,8358654,Brooklyn,Williamsburg,40.71796,-73.95522,Private room,75,2,0,,1,0 +28952,157757066,Manhattan,Upper East Side,40.76683,-73.96866999999999,Entire home/apt,1046,1,10,0.54,1,365 +28953,4421803,Brooklyn,Williamsburg,40.71092,-73.94765,Private room,60,4,0,,1,0 +28954,4364889,Manhattan,Chelsea,40.746959999999994,-73.99556,Entire home/apt,152,1,4,0.21,1,0 +28955,310296,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94676,Entire home/apt,65,1,57,3.07,2,53 +28956,44682387,Brooklyn,Greenpoint,40.72857,-73.95688,Private room,195,2,72,3.93,2,165 +28957,49404324,Manhattan,Morningside Heights,40.80751,-73.95745,Private room,70,2,0,,1,0 +28958,2435822,Brooklyn,Williamsburg,40.707809999999995,-73.94479,Entire home/apt,225,2,57,3.08,1,59 +28959,163046191,Brooklyn,Fort Greene,40.68522,-73.97115,Private room,57,28,2,0.11,2,77 +28960,163047898,Queens,Long Island City,40.74801,-73.95031999999999,Entire home/apt,160,2,2,0.11,1,0 +28961,134031945,Manhattan,SoHo,40.725159999999995,-74.00242,Entire home/apt,200,3,0,,1,0 +28962,335016,Brooklyn,Bushwick,40.70398,-73.92403,Private room,29,2,7,0.38,1,0 +28963,65339610,Bronx,Norwood,40.875040000000006,-73.88476,Private room,200,3,0,,1,83 +28964,530553,Brooklyn,Bedford-Stuyvesant,40.68156,-73.92036,Entire home/apt,149,2,70,4.48,1,309 +28965,79704239,Brooklyn,Bedford-Stuyvesant,40.68891,-73.9548,Private room,45,5,0,,2,0 +28966,4162008,Brooklyn,Bushwick,40.69914,-73.93394,Private room,45,1,1,0.05,2,0 +28967,10730227,Manhattan,Hell's Kitchen,40.75547,-73.99513,Entire home/apt,162,3,9,0.49,1,0 +28968,19561602,Brooklyn,Bushwick,40.69613,-73.93264,Entire home/apt,50,5,2,0.11,1,0 +28969,110704364,Manhattan,Upper West Side,40.776540000000004,-73.97694,Entire home/apt,400,1,0,,1,0 +28970,3161518,Queens,East Elmhurst,40.756890000000006,-73.89763,Entire home/apt,110,1,3,0.16,1,0 +28971,36163515,Manhattan,Gramercy,40.734190000000005,-73.98132,Entire home/apt,90,2,3,0.17,1,0 +28972,18146050,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94693000000001,Entire home/apt,38,4,5,0.27,1,0 +28973,163077876,Brooklyn,Gravesend,40.58486,-73.99004000000001,Entire home/apt,59,2,42,2.33,1,35 +28974,16004068,Manhattan,Harlem,40.80379,-73.95257,Entire home/apt,105,3,4,0.21,1,0 +28975,109270724,Manhattan,Upper East Side,40.76327,-73.96197,Entire home/apt,210,1,1,0.05,1,0 +28976,2424166,Manhattan,Upper East Side,40.776270000000004,-73.95124,Entire home/apt,150,3,0,,1,0 +28977,23165019,Brooklyn,Williamsburg,40.70689,-73.9506,Private room,250,1,8,0.43,1,0 +28978,56704653,Manhattan,East Harlem,40.7976,-73.93388,Entire home/apt,170,2,0,,1,0 +28979,6154298,Brooklyn,Clinton Hill,40.68585,-73.96461,Entire home/apt,115,2,0,,1,0 +28980,75872359,Manhattan,Upper East Side,40.77835,-73.94756,Entire home/apt,150,2,1,0.05,1,0 +28981,162546695,Queens,Rego Park,40.729459999999996,-73.86277,Private room,100,1,0,,1,83 +28982,160159744,Manhattan,East Village,40.72299,-73.97809000000001,Shared room,42,2,37,3.02,1,1 +28983,163098446,Queens,East Elmhurst,40.76314,-73.88619,Entire home/apt,125,1,77,4.5,1,348 +28984,135446962,Queens,Astoria,40.76797,-73.92806999999999,Private room,50,3,0,,1,0 +28985,6933112,Manhattan,Financial District,40.70711,-74.01526,Private room,130,1,0,,2,0 +28986,72410854,Queens,Astoria,40.75824,-73.92822,Entire home/apt,100,4,0,,1,0 +28987,163087464,Brooklyn,Bedford-Stuyvesant,40.691309999999994,-73.95666,Private room,59,4,53,2.88,1,39 +28988,163103487,Manhattan,East Village,40.72515,-73.98422,Entire home/apt,199,7,13,0.82,1,349 +28989,52602009,Manhattan,Chelsea,40.75071,-74.00247,Private room,84,2,119,6.44,1,20 +28990,1723702,Manhattan,West Village,40.74,-74.0079,Entire home/apt,80,60,1,0.05,1,0 +28991,8726000,Manhattan,Nolita,40.72347,-73.99302,Private room,70,2,2,0.11,1,0 +28992,34403474,Brooklyn,Crown Heights,40.67546,-73.93171,Entire home/apt,90,2,15,0.84,1,0 +28993,985926,Manhattan,Washington Heights,40.84385,-73.94324,Entire home/apt,75,20,0,,1,0 +28994,65390606,Manhattan,East Village,40.72677,-73.98267,Entire home/apt,150,5,1,0.05,1,0 +28995,138347327,Manhattan,Hell's Kitchen,40.76684,-73.98539,Private room,87,1,2,0.13,1,0 +28996,964882,Manhattan,Kips Bay,40.74435,-73.98097,Entire home/apt,140,4,1,0.05,1,0 +28997,20780421,Queens,Ditmars Steinway,40.77626,-73.92461999999999,Private room,49,7,10,0.55,1,0 +28998,163189326,Queens,Jackson Heights,40.75439,-73.89532,Entire home/apt,105,1,64,3.6,1,314 +28999,68822704,Brooklyn,Bedford-Stuyvesant,40.68345,-73.95078000000001,Entire home/apt,60,4,1,0.05,1,0 +29000,65292898,Manhattan,East Harlem,40.79733,-73.93695,Private room,75,2,0,,1,0 +29001,21577034,Manhattan,Hell's Kitchen,40.76384,-73.99309000000001,Private room,65,1,4,0.94,2,153 +29002,103259676,Brooklyn,Williamsburg,40.720209999999994,-73.95695,Entire home/apt,150,4,14,0.77,1,0 +29003,30466311,Brooklyn,Williamsburg,40.71787,-73.9587,Entire home/apt,125,3,17,1.1,1,14 +29004,21028594,Manhattan,Chinatown,40.716229999999996,-73.99521,Private room,41,15,3,0.16,1,0 +29005,33714151,Brooklyn,Bushwick,40.69348,-73.92497,Private room,100,2,0,,1,89 +29006,163210909,Manhattan,Gramercy,40.73509,-73.98637,Entire home/apt,249,3,8,0.48,1,175 +29007,1227833,Manhattan,Upper West Side,40.780120000000004,-73.97874,Entire home/apt,250,2,0,,1,0 +29008,163217478,Queens,East Elmhurst,40.75966,-73.88295,Private room,45,1,140,7.47,2,81 +29009,153660271,Manhattan,Harlem,40.8041,-73.95251999999999,Private room,150,1,28,1.49,1,68 +29010,52109239,Brooklyn,Bedford-Stuyvesant,40.68195,-73.92113,Private room,40,3,0,,1,0 +29011,74155984,Brooklyn,Williamsburg,40.712140000000005,-73.94204,Entire home/apt,170,2,1,0.05,1,0 +29012,11243357,Manhattan,Tribeca,40.72345,-74.01001,Entire home/apt,299,4,3,0.16,1,0 +29013,25188010,Brooklyn,Bedford-Stuyvesant,40.685559999999995,-73.95416999999999,Private room,55,3,15,0.81,1,66 +29014,79298323,Queens,Maspeth,40.73449,-73.89227,Private room,45,5,12,0.99,3,320 +29015,156259857,Brooklyn,Bushwick,40.68116,-73.90502,Private room,49,1,26,1.41,3,115 +29016,161351021,Queens,Woodside,40.75541,-73.90272,Private room,475,1,7,0.37,2,0 +29017,29346825,Manhattan,Harlem,40.81688,-73.94131999999999,Private room,34,1,1,0.05,1,0 +29018,31369576,Brooklyn,Prospect-Lefferts Gardens,40.66057,-73.94373,Entire home/apt,129,2,3,0.16,1,0 +29019,154494056,Manhattan,Harlem,40.81991,-73.95248000000001,Private room,75,1,4,0.22,1,0 +29020,12788163,Brooklyn,Greenpoint,40.722640000000006,-73.9437,Private room,95,3,2,0.11,1,23 +29021,145844983,Manhattan,Hell's Kitchen,40.76258,-73.9887,Entire home/apt,180,4,48,2.58,1,61 +29022,54658419,Brooklyn,Williamsburg,40.71127,-73.95898000000001,Private room,100,3,10,0.55,2,0 +29023,4457329,Manhattan,West Village,40.7375,-74.00493,Entire home/apt,220,2,0,,1,0 +29024,31660984,Manhattan,Chelsea,40.75271,-73.99573000000001,Entire home/apt,205,3,0,,1,0 +29025,108150300,Brooklyn,Greenpoint,40.7257,-73.95553000000001,Private room,100,1,5,0.27,2,163 +29026,134948140,Brooklyn,Cobble Hill,40.686690000000006,-73.99909,Entire home/apt,112,1,62,3.33,1,151 +29027,40371157,Bronx,Longwood,40.82441,-73.90361,Private room,125,1,25,1.34,2,0 +29028,15854250,Brooklyn,Clinton Hill,40.69573,-73.96744,Entire home/apt,102,13,6,0.33,1,0 +29029,861330,Brooklyn,Williamsburg,40.70232,-73.94587,Private room,40,10,0,,3,0 +29030,5891676,Brooklyn,Bedford-Stuyvesant,40.69157,-73.95522,Private room,65,2,40,2.2,1,0 +29031,57818788,Manhattan,East Harlem,40.81038,-73.93809,Entire home/apt,100,3,3,0.16,1,0 +29032,5795423,Queens,Sunnyside,40.746320000000004,-73.91299000000001,Entire home/apt,80,1,3,0.21,1,1 +29033,16026189,Manhattan,Upper East Side,40.77604,-73.95100000000001,Entire home/apt,200,2,8,0.5,2,3 +29034,160726948,Manhattan,Kips Bay,40.744040000000005,-73.97887,Entire home/apt,100,30,6,0.45,2,271 +29035,4122771,Manhattan,East Village,40.72813,-73.98132,Entire home/apt,175,2,0,,1,0 +29036,52593822,Manhattan,Harlem,40.83034,-73.94787,Entire home/apt,115,1,0,,1,0 +29037,154258141,Brooklyn,Bushwick,40.68731,-73.91669,Private room,45,3,10,0.9,10,322 +29038,58253835,Manhattan,Hell's Kitchen,40.75895,-73.99502,Entire home/apt,70,7,0,,1,0 +29039,922478,Brooklyn,Clinton Hill,40.682320000000004,-73.96043,Shared room,50,4,15,0.81,2,0 +29040,154258141,Brooklyn,Bushwick,40.68683,-73.91691999999999,Private room,60,2,41,2.46,10,362 +29041,64018594,Manhattan,Harlem,40.80966,-73.95299,Private room,90,1,1,0.05,2,0 +29042,4534686,Brooklyn,Bushwick,40.69854,-73.9235,Entire home/apt,110,5,3,0.17,1,0 +29043,162436632,Manhattan,East Village,40.7226,-73.97591,Private room,65,7,9,0.71,1,144 +29044,38500165,Brooklyn,Williamsburg,40.70683,-73.94323,Private room,70,30,0,,1,0 +29045,154258141,Brooklyn,Bushwick,40.68804,-73.91493,Private room,75,2,46,2.65,10,360 +29046,154258141,Brooklyn,Bushwick,40.68822,-73.91639,Private room,64,2,46,2.67,10,352 +29047,163329653,Brooklyn,East Flatbush,40.65145,-73.94553,Entire home/apt,120,2,83,4.43,1,346 +29048,32926963,Manhattan,East Village,40.72582,-73.97558000000001,Private room,95,2,13,0.7,1,0 +29049,154258141,Brooklyn,Bushwick,40.686659999999996,-73.91466,Private room,67,2,27,1.55,10,359 +29050,84679277,Manhattan,Upper East Side,40.77817,-73.95096,Private room,60,2,2,0.3,1,0 +29051,162280872,Manhattan,Upper East Side,40.774,-73.94932,Entire home/apt,150,30,3,0.25,13,147 +29052,18049970,Brooklyn,Brownsville,40.65948,-73.90084,Entire home/apt,175,3,56,3.0,2,288 +29053,45377675,Manhattan,Kips Bay,40.74505,-73.97867,Entire home/apt,220,5,1,0.05,1,0 +29054,16830841,Manhattan,Midtown,40.76548,-73.98035,Entire home/apt,365,1,13,0.71,5,65 +29055,8676157,Brooklyn,Williamsburg,40.71638,-73.93988,Entire home/apt,325,30,0,,1,179 +29056,162142087,Queens,Jamaica,40.68804,-73.80564,Private room,59,1,21,1.53,3,348 +29057,155109689,Brooklyn,Greenpoint,40.73322,-73.95177,Private room,121,1,8,0.44,2,91 +29058,67375050,Queens,Ditmars Steinway,40.77352,-73.91593,Private room,50,3,0,,1,0 +29059,33060882,Brooklyn,Crown Heights,40.67767,-73.95764,Private room,32,1,1,0.06,1,0 +29060,75578529,Brooklyn,Flatbush,40.649,-73.95248000000001,Private room,49,2,0,,1,0 +29061,44213272,Queens,Ditmars Steinway,40.77233,-73.91251,Private room,50,2,38,2.04,5,301 +29062,152371030,Queens,Springfield Gardens,40.665659999999995,-73.76002,Entire home/apt,95,2,44,2.53,1,190 +29063,107953084,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95326,Private room,75,2,61,3.26,3,265 +29064,163366045,Manhattan,Harlem,40.813790000000004,-73.95233,Private room,1000,11,0,,1,0 +29065,15927874,Manhattan,Greenwich Village,40.729409999999994,-74.00004,Entire home/apt,191,3,1,0.05,1,0 +29066,1177128,Brooklyn,Greenpoint,40.72529,-73.95595,Private room,125,3,9,0.49,1,0 +29067,2772294,Brooklyn,Williamsburg,40.71136,-73.94527,Private room,55,14,5,0.27,1,90 +29068,52586141,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94895,Entire home/apt,110,4,40,2.37,1,50 +29069,122177964,Brooklyn,Williamsburg,40.70192,-73.94169000000001,Entire home/apt,250,1,95,5.04,1,79 +29070,160468444,Brooklyn,Brighton Beach,40.57991,-73.95657,Private room,85,60,0,,1,358 +29071,13394563,Brooklyn,Bushwick,40.69112,-73.904,Private room,45,5,2,0.12,1,0 +29072,162966456,Manhattan,Theater District,40.75829,-73.98833,Private room,150,1,0,,1,0 +29073,163376694,Brooklyn,Greenpoint,40.722879999999996,-73.9514,Entire home/apt,125,21,24,1.3,1,264 +29074,163384875,Manhattan,Lower East Side,40.72002,-73.98893000000001,Entire home/apt,185,2,92,4.88,1,120 +29075,2921109,Brooklyn,Bedford-Stuyvesant,40.69104,-73.92886,Entire home/apt,104,2,31,1.69,1,166 +29076,14805627,Brooklyn,Bushwick,40.7032,-73.92703,Private room,45,2,8,0.43,1,0 +29077,156187884,Queens,Astoria,40.755959999999995,-73.92798,Entire home/apt,135,2,44,2.37,1,83 +29078,5064699,Brooklyn,Bedford-Stuyvesant,40.68772,-73.94094,Private room,55,2,5,0.27,2,0 +29079,162142087,Queens,Jamaica,40.68695,-73.8045,Private room,79,1,61,3.3,3,151 +29080,134293540,Queens,Ridgewood,40.70615,-73.90366999999999,Shared room,27,31,5,0.27,4,6 +29081,163421878,Queens,Woodside,40.74416,-73.91136999999999,Private room,75,1,37,2.09,3,344 +29082,11742675,Brooklyn,Williamsburg,40.7078,-73.94619,Entire home/apt,135,1,24,1.42,2,36 +29083,108275491,Manhattan,Chelsea,40.74093,-74.00285,Entire home/apt,110,2,1,0.05,1,0 +29084,1226742,Brooklyn,Clinton Hill,40.68245,-73.96321,Entire home/apt,200,1,39,2.44,2,362 +29085,44410626,Manhattan,Inwood,40.86318,-73.9221,Private room,50,4,0,,1,0 +29086,19543830,Manhattan,Harlem,40.7987,-73.9531,Private room,60,4,1,0.15,1,0 +29087,733168,Manhattan,Chelsea,40.747609999999995,-74.00584,Entire home/apt,175,5,3,0.16,1,0 +29088,163458740,Manhattan,SoHo,40.72547,-74.0021,Entire home/apt,190,1,94,5.18,1,187 +29089,52181900,Manhattan,Midtown,40.754979999999996,-73.9903,Entire home/apt,100,1,0,,1,0 +29090,120762452,Manhattan,Murray Hill,40.749790000000004,-73.97551,Entire home/apt,111,30,1,0.32,50,317 +29091,7465567,Manhattan,Chinatown,40.71835,-73.99641,Private room,130,2,2,0.13,2,0 +29092,100701558,Manhattan,Financial District,40.70521,-74.00678,Private room,100,1,0,,1,0 +29093,29003805,Manhattan,Harlem,40.82592,-73.94629,Private room,44,2,1,0.05,2,0 +29094,39150374,Manhattan,West Village,40.73638,-73.99763,Private room,100,1,0,,1,0 +29095,76835453,Brooklyn,Bushwick,40.69492,-73.91826,Entire home/apt,70,1,2,0.11,1,0 +29096,382836,Manhattan,Hell's Kitchen,40.75858,-73.99226999999999,Private room,140,4,24,1.3,4,355 +29097,7416563,Brooklyn,Downtown Brooklyn,40.68962,-73.98489000000001,Entire home/apt,80,4,87,4.71,1,4 +29098,137822449,Brooklyn,Williamsburg,40.71845,-73.95533,Entire home/apt,179,2,13,0.71,1,35 +29099,13575029,Manhattan,Washington Heights,40.848490000000005,-73.93106999999999,Private room,47,2,3,0.17,1,0 +29100,4393509,Manhattan,SoHo,40.72783,-74.00399999999999,Entire home/apt,160,7,1,0.06,1,0 +29101,82192372,Brooklyn,Williamsburg,40.709540000000004,-73.95922,Private room,80,1,0,,1,0 +29102,163489115,Manhattan,Upper East Side,40.77795,-73.94653000000001,Entire home/apt,110,3,30,1.62,1,265 +29103,158399244,Brooklyn,Bushwick,40.68853,-73.91765,Entire home/apt,250,1,103,5.5,4,69 +29104,50578169,Manhattan,Upper West Side,40.78242,-73.98380999999999,Entire home/apt,400,3,32,1.88,1,69 +29105,31867329,Brooklyn,Williamsburg,40.712509999999995,-73.94148,Private room,70,1,1,0.05,1,0 +29106,48858084,Manhattan,Greenwich Village,40.73008,-74.00123,Entire home/apt,225,7,0,,1,0 +29107,33738190,Brooklyn,Sunset Park,40.66316,-73.99643,Private room,80,1,0,,3,0 +29108,33738190,Brooklyn,Sunset Park,40.66182,-73.99794,Entire home/apt,350,1,2,0.11,3,0 +29109,160792280,Manhattan,Midtown,40.76595,-73.98169,Entire home/apt,190,1,0,,2,0 +29110,30368670,Manhattan,Hell's Kitchen,40.76282,-73.99184,Entire home/apt,275,180,5,0.27,2,364 +29111,2488360,Manhattan,Inwood,40.862320000000004,-73.93004,Entire home/apt,90,4,18,0.98,1,0 +29112,31142123,Manhattan,Chelsea,40.748259999999995,-73.98928000000001,Entire home/apt,159,4,3,0.16,1,0 +29113,163516658,Brooklyn,East New York,40.656,-73.89719000000001,Entire home/apt,80,1,139,7.65,1,77 +29114,5778653,Brooklyn,Bedford-Stuyvesant,40.696709999999996,-73.94896,Private room,45,1,1,0.05,1,0 +29115,52243881,Manhattan,East Village,40.72318,-73.98342,Private room,65,1,1,0.05,2,0 +29116,163518918,Brooklyn,Williamsburg,40.70803,-73.94255,Entire home/apt,118,3,3,1.32,1,249 +29117,7335887,Queens,Glendale,40.70037,-73.89344,Entire home/apt,60,2,34,1.89,2,117 +29118,132341923,Queens,Jamaica,40.68922,-73.78684,Entire home/apt,57,1,91,5.04,2,57 +29119,163259257,Brooklyn,Bedford-Stuyvesant,40.69512,-73.93705,Shared room,32,30,2,0.15,1,0 +29120,10994664,Brooklyn,Bushwick,40.69208,-73.90451999999999,Shared room,29,30,1,0.14,8,334 +29121,4162008,Brooklyn,Bushwick,40.70086,-73.93423,Private room,44,1,0,,2,0 +29122,163554531,Brooklyn,Bushwick,40.69417,-73.91237,Private room,35,3,0,,1,0 +29123,139329404,Brooklyn,Bedford-Stuyvesant,40.68995,-73.95167,Entire home/apt,126,1,9,0.49,1,0 +29124,20800727,Brooklyn,Fort Greene,40.69064,-73.97898,Entire home/apt,200,5,0,,1,0 +29125,163574555,Manhattan,Harlem,40.81245,-73.95130999999999,Private room,120,1,69,3.73,1,277 +29126,163576102,Brooklyn,Flatbush,40.63547,-73.9632,Entire home/apt,64,30,2,0.15,1,268 +29127,126735001,Manhattan,Harlem,40.80106,-73.95905,Private room,78,2,36,1.94,1,0 +29128,107434423,Manhattan,Financial District,40.70637,-74.00941,Entire home/apt,271,30,1,0.09,232,310 +29129,2212344,Brooklyn,Williamsburg,40.71208,-73.95566,Private room,78,4,4,0.22,3,0 +29130,13753058,Brooklyn,Crown Heights,40.66475,-73.93564,Entire home/apt,65,15,0,,1,0 +29131,94088674,Brooklyn,Bedford-Stuyvesant,40.698570000000004,-73.9439,Private room,38,1,2,0.11,1,0 +29132,47499199,Brooklyn,Columbia St,40.6827,-74.00265,Entire home/apt,140,3,10,0.54,1,0 +29133,163586662,Bronx,Norwood,40.87446,-73.87453000000001,Private room,187,3,4,0.22,1,76 +29134,156935,Brooklyn,Crown Heights,40.66602,-73.94612,Entire home/apt,300,4,28,1.52,1,179 +29135,163602988,Manhattan,Hell's Kitchen,40.7661,-73.99446999999999,Private room,100,3,22,1.2,1,13 +29136,163605956,Brooklyn,Flatlands,40.629059999999996,-73.92938000000001,Entire home/apt,117,1,24,1.3,1,328 +29137,41218193,Brooklyn,Williamsburg,40.7203,-73.95739,Entire home/apt,500,1,0,,1,0 +29138,48088611,Manhattan,Midtown,40.74816,-73.98676,Entire home/apt,158,7,2,0.12,2,0 +29139,133415438,Manhattan,Upper West Side,40.77769,-73.97953000000001,Private room,61,10,0,,1,0 +29140,161510806,Brooklyn,Crown Heights,40.67739,-73.95561,Private room,60,1,2,0.11,2,0 +29141,5524607,Brooklyn,Bedford-Stuyvesant,40.685759999999995,-73.91719,Entire home/apt,95,1,35,2.04,1,28 +29142,24273714,Brooklyn,Williamsburg,40.713390000000004,-73.93896,Entire home/apt,160,2,34,1.84,3,272 +29143,163625251,Brooklyn,Sunset Park,40.643390000000004,-74.02190999999999,Entire home/apt,109,3,34,1.85,1,156 +29144,163626113,Manhattan,Midtown,40.75349,-73.96545,Private room,160,2,107,5.73,1,49 +29145,707534,Manhattan,Theater District,40.75462,-73.9864,Entire home/apt,330,2,9,0.48,1,5 +29146,52711549,Queens,Flushing,40.75837,-73.82268,Private room,50,1,2,0.11,2,0 +29147,24755691,Queens,Long Island City,40.75673,-73.93609000000001,Private room,50,1,10,0.53,1,211 +29148,150891854,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9369,Private room,23,3,2,0.11,1,0 +29149,92649019,Brooklyn,Crown Heights,40.66921,-73.92624,Private room,68,6,48,2.59,1,0 +29150,97127885,Queens,Ditmars Steinway,40.76826,-73.89390999999999,Private room,36,1,5,0.27,2,250 +29151,10347684,Manhattan,West Village,40.73061,-74.00325,Entire home/apt,190,6,2,0.12,1,0 +29152,66837596,Brooklyn,Williamsburg,40.71908,-73.96441999999999,Private room,140,3,19,1.03,2,79 +29153,46473712,Manhattan,Midtown,40.75225,-73.97067,Private room,185,3,5,0.27,1,8 +29154,3076579,Manhattan,Inwood,40.86489,-73.92902,Private room,50,3,4,0.66,1,31 +29155,1512819,Brooklyn,Flatbush,40.65278,-73.95392,Private room,45,3,13,0.7,5,76 +29156,35089676,Brooklyn,Bushwick,40.699670000000005,-73.92096,Private room,35,1,8,0.44,1,76 +29157,163715101,Manhattan,Hell's Kitchen,40.76402,-73.98909,Entire home/apt,110,2,67,3.93,1,67 +29158,161902034,Bronx,Concourse Village,40.833729999999996,-73.91147,Entire home/apt,140,1,106,5.7,1,310 +29159,45485919,Brooklyn,Clinton Hill,40.683209999999995,-73.96076,Entire home/apt,120,1,1,0.05,1,57 +29160,68554866,Brooklyn,Bushwick,40.68481,-73.90713000000001,Entire home/apt,125,3,27,2.77,1,41 +29161,61394859,Brooklyn,Williamsburg,40.718790000000006,-73.9402,Private room,50,9,0,,1,0 +29162,31451485,Manhattan,East Harlem,40.79081,-73.94946,Entire home/apt,130,4,0,,1,0 +29163,3693489,Manhattan,Upper East Side,40.76944,-73.95251999999999,Entire home/apt,150,2,0,,1,0 +29164,25944182,Queens,Sunnyside,40.73874,-73.92961,Private room,68,2,50,2.84,2,51 +29165,48205496,Manhattan,Hell's Kitchen,40.76825,-73.99107,Entire home/apt,199,3,12,0.65,2,17 +29166,5769367,Manhattan,Chelsea,40.743120000000005,-73.99953000000001,Entire home/apt,450,3,12,0.65,1,83 +29167,25944182,Queens,Sunnyside,40.7387,-73.9283,Private room,76,2,53,3.15,2,76 +29168,163749958,Manhattan,Kips Bay,40.74351,-73.97856999999999,Shared room,39,1,4,0.49,3,324 +29169,4043468,Brooklyn,Bushwick,40.69523,-73.90871,Private room,48,2,28,1.51,1,3 +29170,151728547,Manhattan,Upper West Side,40.775059999999996,-73.98161999999999,Entire home/apt,70,15,0,,1,0 +29171,33787022,Brooklyn,Williamsburg,40.71805,-73.9584,Entire home/apt,175,3,12,0.85,1,0 +29172,6757221,Brooklyn,Williamsburg,40.70912,-73.94813,Entire home/apt,120,6,1,0.16,2,0 +29173,2257005,Manhattan,Midtown,40.74989,-73.98231,Private room,100,3,31,1.8,1,0 +29174,6764450,Brooklyn,Bushwick,40.69853,-73.92919,Private room,50,2,2,0.11,1,0 +29175,137675040,Manhattan,Harlem,40.81455,-73.95121999999999,Private room,90,3,1,0.07,1,0 +29176,96437032,Manhattan,Harlem,40.82032,-73.95465,Shared room,37,20,0,,1,0 +29177,82367658,Queens,Richmond Hill,40.68985,-73.82003,Private room,40,3,7,0.38,5,313 +29178,158568617,Bronx,Longwood,40.823,-73.90859,Entire home/apt,60,1,104,5.61,1,365 +29179,6787883,Brooklyn,Carroll Gardens,40.68105,-73.99266999999999,Private room,53,1,20,1.29,4,151 +29180,6787883,Brooklyn,Carroll Gardens,40.68168,-73.99291,Private room,120,1,16,1.05,4,150 +29181,12898987,Queens,Ditmars Steinway,40.77537,-73.90279,Entire home/apt,150,3,49,2.74,1,324 +29182,50312214,Manhattan,Lower East Side,40.71975,-73.98975,Entire home/apt,115,2,1,0.05,1,0 +29183,6787883,Brooklyn,Carroll Gardens,40.68243,-73.99334,Private room,59,1,20,1.23,4,132 +29184,163855521,Brooklyn,East New York,40.6762,-73.87935999999999,Entire home/apt,99,3,66,3.55,1,254 +29185,10674042,Manhattan,Upper East Side,40.77641,-73.94615999999999,Entire home/apt,89,2,1,0.06,1,0 +29186,102442325,Manhattan,Roosevelt Island,40.76184,-73.94848,Private room,47,1,2,0.11,1,0 +29187,163877894,Brooklyn,Clinton Hill,40.68933,-73.96879,Entire home/apt,149,29,24,1.42,1,3 +29188,1417159,Manhattan,Harlem,40.8227,-73.94014,Private room,159,4,42,2.46,1,242 +29189,54656266,Manhattan,Harlem,40.819109999999995,-73.93794,Entire home/apt,90,2,38,2.05,1,25 +29190,163905917,Manhattan,Hell's Kitchen,40.75692,-73.9979,Private room,80,2,7,0.38,3,0 +29191,52711549,Queens,Flushing,40.75855,-73.82208,Private room,50,1,16,0.85,2,1 +29192,2924286,Manhattan,Washington Heights,40.85783,-73.93117,Private room,60,3,10,0.54,1,0 +29193,16057852,Manhattan,Civic Center,40.711940000000006,-74.00704,Entire home/apt,240,4,0,,1,0 +29194,44213272,Queens,Ditmars Steinway,40.776109999999996,-73.91481,Private room,37,1,14,0.83,5,310 +29195,36356065,Brooklyn,Bay Ridge,40.63971,-74.03089,Private room,58,1,1,0.05,1,0 +29196,10663089,Brooklyn,Flatbush,40.63578,-73.95684,Private room,70,3,5,0.51,1,0 +29197,162781227,Brooklyn,Gowanus,40.68192,-73.98176,Entire home/apt,280,2,7,0.38,1,0 +29198,100032033,Brooklyn,Bushwick,40.686840000000004,-73.91001,Private room,35,1,0,,1,0 +29199,3532263,Brooklyn,Gowanus,40.67023,-73.99235,Entire home/apt,349,2,19,1.03,4,363 +29200,9470468,Manhattan,Harlem,40.80815,-73.95399,Entire home/apt,120,3,20,4.96,1,55 +29201,164048400,Brooklyn,Bushwick,40.70167,-73.93075,Private room,40,1,1,0.05,1,0 +29202,57044398,Manhattan,Midtown,40.74374,-73.98541,Entire home/apt,450,4,0,,1,0 +29203,54586794,Manhattan,Upper East Side,40.76072,-73.96271999999999,Entire home/apt,250,2,1,0.05,1,0 +29204,12233355,Brooklyn,Greenpoint,40.7233,-73.94065,Private room,80,2,5,0.27,2,0 +29205,11200970,Brooklyn,Williamsburg,40.71233,-73.94118,Private room,80,1,31,1.67,1,13 +29206,35805776,Manhattan,Hell's Kitchen,40.75857,-73.99189,Entire home/apt,300,3,6,0.32,1,0 +29207,369226,Queens,Astoria,40.765809999999995,-73.92518000000001,Shared room,40,30,2,0.11,1,0 +29208,25064629,Manhattan,Two Bridges,40.71291,-73.99463,Private room,119,3,42,2.26,1,54 +29209,1741413,Manhattan,Harlem,40.801159999999996,-73.95286999999999,Private room,110,1,5,0.27,1,0 +29210,10556923,Brooklyn,Crown Heights,40.67719,-73.95470999999999,Entire home/apt,110,4,15,0.83,1,13 +29211,3231509,Manhattan,Tribeca,40.72052,-74.00365,Entire home/apt,499,14,23,1.27,4,1 +29212,162745077,Queens,Long Island City,40.754690000000004,-73.92822,Private room,99,1,23,1.25,2,93 +29213,3231509,Manhattan,Tribeca,40.719120000000004,-74.0038,Entire home/apt,499,14,14,0.78,4,298 +29214,164164069,Staten Island,Westerleigh,40.61422,-74.13167,Private room,40,2,17,0.92,1,36 +29215,52221728,Brooklyn,Williamsburg,40.70514,-73.94418,Private room,50,4,2,0.11,1,0 +29216,35518413,Queens,Ditmars Steinway,40.776920000000004,-73.92385,Entire home/apt,130,1,93,5.01,2,279 +29217,15387,Queens,Long Island City,40.74804,-73.94171999999999,Entire home/apt,175,2,8,0.56,1,0 +29218,85678544,Queens,Long Island City,40.74832,-73.94197,Private room,60,1,4,0.22,1,0 +29219,44213272,Queens,Astoria,40.76903,-73.91895,Private room,60,1,26,1.41,5,173 +29220,164228532,Manhattan,East Village,40.73277,-73.98716,Private room,92,3,104,5.67,2,25 +29221,55804009,Brooklyn,Red Hook,40.679809999999996,-74.00446,Shared room,30,1,1,0.05,1,0 +29222,164291123,Manhattan,Flatiron District,40.74077,-73.98718000000001,Private room,129,1,47,2.8,3,364 +29223,164303137,Brooklyn,Bedford-Stuyvesant,40.69455,-73.93445,Private room,34,4,35,2.36,2,5 +29224,3244298,Manhattan,East Harlem,40.79202,-73.93999000000001,Private room,95,2,8,0.44,1,146 +29225,164308567,Brooklyn,Bushwick,40.70189,-73.91984000000001,Private room,125,1,3,0.16,1,4 +29226,84716175,Manhattan,Harlem,40.8229,-73.93925,Private room,65,1,14,0.76,2,180 +29227,43222031,Queens,Ridgewood,40.69741,-73.89895,Private room,38,4,0,,1,0 +29228,164318938,Manhattan,West Village,40.732479999999995,-74.00053,Entire home/apt,225,1,29,1.72,1,14 +29229,147058441,Manhattan,Chinatown,40.71626,-73.99224,Private room,68,1,7,0.39,1,54 +29230,5925222,Brooklyn,Bushwick,40.69,-73.91885,Entire home/apt,65,2,1,0.05,1,0 +29231,5076827,Manhattan,Harlem,40.80638,-73.94415,Entire home/apt,180,3,29,1.79,2,235 +29232,140494157,Queens,Astoria,40.76895,-73.92489,Private room,110,1,1,0.05,1,0 +29233,161510806,Brooklyn,Crown Heights,40.6781,-73.95487,Private room,150,1,3,0.16,2,0 +29234,22507599,Brooklyn,Crown Heights,40.67064,-73.95714,Private room,32,1,0,,1,0 +29235,655450,Brooklyn,Clinton Hill,40.682990000000004,-73.96258,Entire home/apt,108,29,5,0.31,1,98 +29236,110191144,Manhattan,Harlem,40.82375,-73.95379,Private room,68,2,28,1.75,2,53 +29237,114131821,Manhattan,Hell's Kitchen,40.76075,-73.99837,Entire home/apt,1500,30,0,,1,87 +29238,72390391,Manhattan,Upper West Side,40.77213,-73.98665,Entire home/apt,10000,30,0,,1,83 +29239,125898610,Brooklyn,Williamsburg,40.71479,-73.93961,Private room,75,2,0,,1,0 +29240,21878092,Brooklyn,Williamsburg,40.7089,-73.95631999999999,Entire home/apt,150,2,9,0.56,1,0 +29241,164378428,Manhattan,East Village,40.72555,-73.98246999999999,Entire home/apt,165,2,2,0.11,1,0 +29242,164391402,Manhattan,East Village,40.72167,-73.98066,Private room,125,1,3,0.38,1,365 +29243,61391963,Manhattan,Murray Hill,40.749340000000004,-73.9781,Entire home/apt,150,30,2,0.87,91,251 +29244,3812968,Brooklyn,Crown Heights,40.67542,-73.94799,Entire home/apt,60,3,9,0.51,1,0 +29245,164456084,Brooklyn,Canarsie,40.63409,-73.89383000000001,Private room,27,1,0,,1,0 +29246,128793815,Brooklyn,Williamsburg,40.72064,-73.96021999999999,Private room,50,2,55,2.97,4,281 +29247,5458990,Manhattan,East Village,40.724540000000005,-73.98749000000001,Entire home/apt,199,7,21,1.14,1,10 +29248,5425440,Brooklyn,Flatbush,40.64488,-73.96889,Private room,48,1,2,0.11,1,0 +29249,11300395,Manhattan,Tribeca,40.715140000000005,-74.00709,Entire home/apt,180,2,0,,1,0 +29250,104273977,Manhattan,Lower East Side,40.71922,-73.98714,Private room,109,1,1,0.06,3,0 +29251,686385,Manhattan,Upper East Side,40.775090000000006,-73.95554,Private room,80,1,58,3.64,1,45 +29252,104273977,Manhattan,Lower East Side,40.72133,-73.98684,Private room,109,1,1,0.06,3,0 +29253,4823243,Brooklyn,Bedford-Stuyvesant,40.683170000000004,-73.92777,Entire home/apt,139,2,9,1.08,1,57 +29254,164303137,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93288000000001,Private room,39,4,58,3.16,2,32 +29255,54549189,Brooklyn,Crown Heights,40.67518,-73.94771,Private room,80,3,1,0.05,1,0 +29256,92835031,Brooklyn,Bedford-Stuyvesant,40.6832,-73.9529,Entire home/apt,225,3,50,3.12,1,71 +29257,119828457,Brooklyn,Bushwick,40.68868,-73.90655,Private room,55,3,55,3.4,4,329 +29258,15535829,Staten Island,West Brighton,40.632290000000005,-74.11350999999999,Entire home/apt,99,2,3,0.36,1,364 +29259,164509613,Manhattan,Morningside Heights,40.804140000000004,-73.96498000000001,Entire home/apt,145,1,23,1.37,1,3 +29260,4126686,Brooklyn,Bedford-Stuyvesant,40.68427,-73.93118,Entire home/apt,75,3,87,4.91,1,267 +29261,164516331,Brooklyn,Bedford-Stuyvesant,40.68108,-73.92729,Private room,85,2,33,1.86,1,0 +29262,3695529,Brooklyn,Carroll Gardens,40.683840000000004,-73.99431,Entire home/apt,150,2,61,3.42,2,85 +29263,54554971,Manhattan,Kips Bay,40.740359999999995,-73.98301,Entire home/apt,150,2,33,1.79,1,0 +29264,117195769,Queens,Astoria,40.76401,-73.90921,Private room,70,1,92,4.96,3,357 +29265,145518739,Manhattan,Gramercy,40.73379,-73.98645,Private room,150,2,24,1.68,3,149 +29266,164537600,Brooklyn,Williamsburg,40.71243,-73.96067,Entire home/apt,140,2,3,0.17,1,0 +29267,132883674,Manhattan,Washington Heights,40.847770000000004,-73.94241,Entire home/apt,160,1,3,0.17,3,0 +29268,13677929,Manhattan,East Village,40.7232,-73.98151999999999,Private room,78,30,8,0.45,1,219 +29269,164549734,Bronx,Pelham Gardens,40.85702,-73.83697,Private room,300,1,0,,1,0 +29270,5863772,Manhattan,Upper West Side,40.77077,-73.98481,Entire home/apt,225,2,5,0.27,1,0 +29271,13510515,Queens,Astoria,40.77179,-73.93441999999999,Entire home/apt,200,4,0,,1,0 +29272,26490904,Manhattan,Midtown,40.761509999999994,-73.97635,Entire home/apt,220,30,2,0.17,4,280 +29273,77005581,Manhattan,East Village,40.73089,-73.98429,Private room,90,1,133,7.79,1,41 +29274,157935032,Queens,East Elmhurst,40.76193,-73.87521,Private room,40,1,1,0.21,1,37 +29275,162100686,Manhattan,Kips Bay,40.73735,-73.97952,Entire home/apt,200,2,0,,1,0 +29276,55807631,Brooklyn,Williamsburg,40.70827,-73.94133000000001,Private room,40,1,11,0.6,1,0 +29277,158969505,Manhattan,Lower East Side,40.72145,-73.99257,Entire home/apt,240,30,3,0.45,9,199 +29278,164637779,Manhattan,Upper East Side,40.76938,-73.96732,Entire home/apt,150,1,2,0.11,1,0 +29279,31176801,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95796,Entire home/apt,170,6,23,1.42,1,190 +29280,164650025,Brooklyn,Prospect Heights,40.67757,-73.97023,Private room,35,1,204,11.17,1,19 +29281,158969505,Manhattan,Lower East Side,40.72268,-73.99205,Entire home/apt,250,30,3,0.37,9,264 +29282,254846,Brooklyn,Bushwick,40.69023,-73.91620999999999,Entire home/apt,399,3,19,1.13,4,272 +29283,3210260,Manhattan,SoHo,40.723929999999996,-74.00446,Entire home/apt,210,5,8,0.49,1,0 +29284,158969505,Manhattan,Lower East Side,40.7224,-73.99268000000001,Entire home/apt,220,30,2,0.16,9,298 +29285,158969505,Manhattan,Lower East Side,40.7215,-73.99183000000001,Entire home/apt,170,30,0,,9,200 +29286,158969505,Manhattan,Lower East Side,40.721470000000004,-73.99181,Entire home/apt,170,30,4,0.3,9,281 +29287,27188995,Brooklyn,Bushwick,40.70071,-73.9158,Private room,90,1,1,0.08,1,280 +29288,24707177,Manhattan,East Harlem,40.79803,-73.93234,Entire home/apt,80,4,5,0.28,1,0 +29289,3389563,Manhattan,Chinatown,40.716590000000004,-73.99221999999999,Entire home/apt,96,2,13,0.73,1,0 +29290,163217478,Queens,East Elmhurst,40.75739,-73.88144,Private room,59,1,127,6.94,2,80 +29291,4177178,Brooklyn,Greenpoint,40.721470000000004,-73.9441,Private room,80,14,4,0.23,1,0 +29292,48565842,Brooklyn,Crown Heights,40.67318,-73.95679,Private room,39,7,0,,1,0 +29293,89363555,Brooklyn,Flatbush,40.641490000000005,-73.96157,Entire home/apt,100,1,5,0.27,1,0 +29294,35920741,Brooklyn,Flatlands,40.61637,-73.92206,Private room,100,1,18,0.98,1,364 +29295,67043358,Manhattan,Harlem,40.80708,-73.95583,Private room,70,7,0,,1,0 +29296,164750816,Queens,Howard Beach,40.662009999999995,-73.84084,Entire home/apt,80,2,83,4.47,1,288 +29297,113805886,Manhattan,Upper East Side,40.77708,-73.95113,Entire home/apt,235,31,5,0.4,33,327 +29298,24020292,Brooklyn,Bushwick,40.70241,-73.91996,Private room,55,1,60,3.25,4,58 +29299,164806814,Manhattan,Midtown,40.75993,-73.96342,Entire home/apt,140,4,52,3.03,1,242 +29300,164814832,Brooklyn,Fort Greene,40.68853,-73.96943,Entire home/apt,260,3,42,2.94,1,46 +29301,10685109,Manhattan,Hell's Kitchen,40.76748,-73.98536,Private room,200,2,1,0.05,1,0 +29302,4070519,Brooklyn,Williamsburg,40.71239,-73.95098,Private room,80,2,20,1.14,1,0 +29303,4500818,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92854,Private room,78,30,25,1.35,1,342 +29304,48088611,Manhattan,Midtown,40.74751,-73.98725,Entire home/apt,208,7,3,0.17,2,155 +29305,27741331,Brooklyn,East Flatbush,40.663129999999995,-73.92684,Private room,32,30,0,,2,322 +29306,22382224,Brooklyn,Windsor Terrace,40.66023,-73.9804,Private room,85,1,6,0.33,1,0 +29307,92856787,Manhattan,Hell's Kitchen,40.76011,-73.99571,Entire home/apt,250,1,75,4.78,1,283 +29308,162572530,Brooklyn,Bushwick,40.683279999999996,-73.90783,Entire home/apt,28,2,13,0.72,1,0 +29309,164847238,Manhattan,Lower East Side,40.7199,-73.99225,Private room,101,4,4,0.22,1,2 +29310,35596244,Manhattan,Murray Hill,40.74665,-73.97856,Entire home/apt,168,2,0,,1,0 +29311,26156848,Brooklyn,South Slope,40.66514,-73.99016999999999,Entire home/apt,100,1,68,3.74,1,5 +29312,130971031,Brooklyn,Bushwick,40.69977,-73.91983,Private room,79,3,22,1.22,4,125 +29313,17129810,Brooklyn,Columbia St,40.68274,-74.0046,Entire home/apt,190,4,42,2.42,5,299 +29314,55197894,Queens,Woodside,40.74907,-73.90083,Private room,30,5,7,0.38,1,0 +29315,130971031,Brooklyn,Bushwick,40.70093,-73.91864,Private room,69,2,22,1.21,4,139 +29316,26789852,Queens,Long Island City,40.753029999999995,-73.93287,Private room,44,4,77,4.27,2,32 +29317,38359380,Brooklyn,Kensington,40.644490000000005,-73.97843,Private room,45,5,2,0.17,1,0 +29318,69427350,Brooklyn,Williamsburg,40.71881,-73.93965,Private room,70,5,2,0.23,1,0 +29319,21410914,Manhattan,Morningside Heights,40.81232,-73.95849,Private room,85,3,47,2.77,6,0 +29320,164886138,Manhattan,Upper East Side,40.762209999999996,-73.96726,Entire home/apt,140,1,43,2.51,11,281 +29321,164886138,Manhattan,Upper East Side,40.76015,-73.96226999999999,Entire home/apt,140,2,4,0.53,11,354 +29322,164887236,Queens,Fresh Meadows,40.72887,-73.79205999999999,Private room,75,2,0,,1,0 +29323,123953239,Brooklyn,Williamsburg,40.71247,-73.96443000000001,Entire home/apt,400,2,8,0.55,2,327 +29324,1512819,Brooklyn,Flatbush,40.65275,-73.95456999999999,Private room,50,10,8,0.44,5,153 +29325,44216307,Brooklyn,Sunset Park,40.64976,-74.00165,Private room,35,1,27,1.5,1,35 +29326,164886138,Manhattan,Upper East Side,40.76014,-73.96098,Entire home/apt,140,1,25,1.67,11,330 +29327,67859646,Manhattan,Morningside Heights,40.80737,-73.95732,Private room,75,2,39,2.17,1,24 +29328,25581222,Bronx,Mott Haven,40.80986,-73.9214,Entire home/apt,140,2,57,3.58,1,73 +29329,89245578,Manhattan,Inwood,40.86456,-73.92799000000001,Entire home/apt,125,2,32,1.77,1,19 +29330,15740291,Manhattan,Midtown,40.75388,-73.96727,Entire home/apt,125,2,109,5.95,1,53 +29331,23719409,Manhattan,Harlem,40.82645,-73.94984000000001,Private room,60,1,41,2.24,4,132 +29332,101170573,Manhattan,Hell's Kitchen,40.77122,-73.99234,Entire home/apt,80,1,1,0.05,1,0 +29333,1355958,Manhattan,East Village,40.72432,-73.98916,Private room,250,1,0,,2,0 +29334,1355958,Manhattan,East Village,40.72472,-73.98881,Entire home/apt,100,2,0,,2,22 +29335,17947250,Manhattan,East Harlem,40.785379999999996,-73.94121,Private room,60,2,1,0.05,2,0 +29336,80612882,Manhattan,Upper East Side,40.76396,-73.96365,Entire home/apt,350,3,1,0.05,1,5 +29337,21147555,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93030999999999,Private room,60,20,0,,1,0 +29338,150858055,Brooklyn,Bushwick,40.69735,-73.93276,Private room,42,1,10,0.54,1,0 +29339,158461160,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9456,Entire home/apt,60,30,4,0.28,6,299 +29340,165109723,Queens,Queens Village,40.703829999999996,-73.73416,Private room,120,3,0,,1,83 +29341,2694297,Manhattan,Harlem,40.81685,-73.93711,Entire home/apt,95,3,3,0.2,1,78 +29342,122786340,Manhattan,Upper West Side,40.80115,-73.96524000000001,Private room,70,1,0,,1,0 +29343,138768335,Brooklyn,East Flatbush,40.65547,-73.92567,Private room,40,30,7,0.44,2,317 +29344,126687208,Manhattan,Upper West Side,40.79334,-73.96388,Private room,132,6,0,,1,0 +29345,165099226,Manhattan,Harlem,40.82601,-73.9433,Private room,45,1,1,0.07,1,0 +29346,165003654,Bronx,Norwood,40.87396,-73.87785,Private room,26,30,24,1.39,1,303 +29347,128338539,Staten Island,Stapleton,40.6322,-74.07913,Entire home/apt,95,30,25,1.47,4,178 +29348,28400686,Manhattan,Roosevelt Island,40.762409999999996,-73.94878,Private room,78,7,0,,1,0 +29349,10743035,Brooklyn,Prospect Heights,40.67579,-73.96514,Private room,75,2,0,,1,0 +29350,2818775,Brooklyn,Greenpoint,40.73304,-73.95125,Private room,75,1,16,1.08,1,280 +29351,27854445,Brooklyn,Crown Heights,40.676320000000004,-73.95535,Private room,50,4,0,,1,0 +29352,7831209,Manhattan,East Harlem,40.80686,-73.93822,Private room,50,1,13,0.81,10,365 +29353,23834677,Manhattan,Harlem,40.82788,-73.94440999999999,Entire home/apt,105,1,111,6.08,2,238 +29354,28248849,Manhattan,East Village,40.72181,-73.98146,Entire home/apt,149,3,1,0.06,1,0 +29355,59385671,Manhattan,Upper West Side,40.80055,-73.96078,Private room,54,3,0,,1,0 +29356,118182048,Manhattan,East Harlem,40.8141,-73.93602,Entire home/apt,100,1,8,0.56,1,12 +29357,40176101,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92993,Private room,89,1,92,5.1,7,11 +29358,705450,Brooklyn,Prospect-Lefferts Gardens,40.66215,-73.95187,Entire home/apt,80,3,4,0.24,1,0 +29359,26583247,Manhattan,East Village,40.7316,-73.98507,Entire home/apt,132,7,0,,1,0 +29360,112901574,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93312,Private room,50,1,14,0.78,4,306 +29361,76426686,Brooklyn,Crown Heights,40.6687,-73.93628000000001,Private room,50,5,0,,1,0 +29362,122283834,Queens,Cambria Heights,40.69807,-73.74432,Private room,50,5,0,,2,96 +29363,2203467,Brooklyn,Brooklyn Heights,40.69379,-73.99753,Entire home/apt,300,3,10,0.62,1,22 +29364,165307387,Queens,Jamaica Estates,40.71248,-73.78896,Entire home/apt,85,1,88,5.14,1,339 +29365,165360098,Brooklyn,Williamsburg,40.71868,-73.95917,Private room,80,3,1,1.0,1,84 +29366,5758215,Manhattan,SoHo,40.72293,-74.00361,Private room,350,3,0,,1,173 +29367,10022878,Manhattan,Hell's Kitchen,40.76256,-73.98935,Private room,65,3,15,0.88,1,31 +29368,158969505,Manhattan,Lower East Side,40.7211,-73.99320999999999,Entire home/apt,180,30,2,0.16,9,151 +29369,1533576,Brooklyn,Bedford-Stuyvesant,40.69336,-73.95170999999999,Entire home/apt,111,6,2,0.18,1,43 +29370,156505456,Brooklyn,East New York,40.66254,-73.88896,Private room,35,3,18,1.02,13,79 +29371,99296570,Brooklyn,Brighton Beach,40.58195,-73.95789,Private room,30,1,70,3.97,5,193 +29372,165448425,Brooklyn,East Flatbush,40.65129,-73.94058000000001,Private room,90,1,10,0.72,1,365 +29373,56757345,Brooklyn,East Flatbush,40.64857,-73.94407,Entire home/apt,89,2,43,2.74,1,10 +29374,27482728,Manhattan,Midtown,40.74317,-73.98605,Entire home/apt,255,2,69,3.85,1,149 +29375,357117,Brooklyn,Williamsburg,40.71914,-73.96236999999999,Private room,44,6,4,0.23,1,5 +29376,87174871,Manhattan,Upper West Side,40.80253,-73.96315,Private room,30,1,6,0.33,1,9 +29377,28428851,Brooklyn,East Flatbush,40.65255,-73.9454,Private room,75,2,5,0.35,2,40 +29378,155810605,Manhattan,East Harlem,40.79005,-73.94929,Entire home/apt,110,4,4,0.22,2,0 +29379,103166867,Manhattan,Inwood,40.8637,-73.92858000000001,Entire home/apt,160,3,0,,1,0 +29380,165492173,Brooklyn,Park Slope,40.67682,-73.97476,Entire home/apt,200,7,0,,1,0 +29381,164165428,Brooklyn,Crown Heights,40.67626,-73.92936,Private room,60,3,0,,1,0 +29382,23949144,Brooklyn,Williamsburg,40.717729999999996,-73.94359,Entire home/apt,300,2,6,0.38,1,0 +29383,6298158,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92706,Private room,72,1,12,0.69,1,358 +29384,22414216,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93634,Private room,39,30,0,,1,220 +29385,2339049,Brooklyn,Bushwick,40.6987,-73.93776,Private room,75,2,85,4.65,2,128 +29386,165603002,Brooklyn,Greenpoint,40.73767,-73.95732,Private room,60,6,3,0.16,1,0 +29387,138770550,Brooklyn,Crown Heights,40.67191,-73.93411,Entire home/apt,350,3,6,0.43,3,100 +29388,165612495,Bronx,Fordham,40.86665,-73.8954,Entire home/apt,80,3,26,1.68,1,15 +29389,10951481,Brooklyn,Williamsburg,40.712990000000005,-73.96144,Entire home/apt,550,2,92,5.24,5,90 +29390,12541753,Manhattan,Upper West Side,40.800340000000006,-73.96127,Private room,39,3,1,0.06,1,0 +29391,90857546,Brooklyn,Bushwick,40.69818,-73.93576999999999,Private room,108,3,12,0.79,1,112 +29392,20120009,Brooklyn,Bushwick,40.68741,-73.9066,Private room,38,1,48,2.64,6,3 +29393,3073721,Brooklyn,East Flatbush,40.65398,-73.94399,Entire home/apt,85,2,52,3.54,1,0 +29394,13061712,Brooklyn,Prospect Heights,40.680009999999996,-73.96557,Entire home/apt,800,5,6,0.34,1,177 +29395,165386495,Bronx,Fordham,40.85419,-73.89827,Private room,40,2,15,0.83,1,220 +29396,3720764,Brooklyn,Bedford-Stuyvesant,40.69207,-73.96021,Private room,60,5,3,0.36,1,0 +29397,133825714,Queens,Flushing,40.72465,-73.80162,Shared room,30,1,0,,1,0 +29398,3094303,Brooklyn,Clinton Hill,40.686409999999995,-73.96124,Private room,48,12,1,0.06,1,0 +29399,7495768,Brooklyn,Brooklyn Heights,40.69335,-73.9984,Entire home/apt,175,3,8,0.47,1,0 +29400,2453755,Brooklyn,Williamsburg,40.71179,-73.93871999999999,Entire home/apt,175,2,2,0.15,1,0 +29401,77526864,Manhattan,Chelsea,40.7498,-73.99623000000001,Private room,88,1,5,1.0,1,158 +29402,56730358,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94185999999999,Entire home/apt,60,4,5,0.28,1,0 +29403,165695294,Brooklyn,Bushwick,40.699459999999995,-73.92685999999999,Private room,85,1,0,,1,0 +29404,165715198,Manhattan,Midtown,40.760059999999996,-73.96540999999999,Private room,70,1,52,2.88,1,128 +29405,17150107,Manhattan,East Village,40.7277,-73.99006999999999,Entire home/apt,161,5,0,,1,0 +29406,16457426,Bronx,Kingsbridge,40.88435,-73.90305,Entire home/apt,145,2,14,0.77,1,332 +29407,30812164,Queens,Long Island City,40.75501,-73.93455,Private room,38,1,19,1.73,1,0 +29408,8203031,Brooklyn,Greenpoint,40.72188,-73.94355,Private room,150,3,8,0.48,1,27 +29409,1317913,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95235,Private room,75,3,0,,2,0 +29410,58403098,Queens,Long Island City,40.73641,-73.92738,Private room,35,4,39,2.2,3,304 +29411,8299661,Brooklyn,Bedford-Stuyvesant,40.68503,-73.94093000000001,Entire home/apt,70,28,4,0.3,1,216 +29412,165853174,Brooklyn,East Flatbush,40.64322,-73.93745,Entire home/apt,89,2,74,4.38,1,322 +29413,21463260,Manhattan,Hell's Kitchen,40.7633,-73.99716,Entire home/apt,275,2,0,,1,0 +29414,2880848,Brooklyn,Clinton Hill,40.69526,-73.96613,Private room,50,2,0,,1,0 +29415,83284183,Brooklyn,Williamsburg,40.72143,-73.95702,Private room,55,3,1,0.08,1,0 +29416,150858745,Queens,Rego Park,40.72195,-73.86112,Entire home/apt,300,3,0,,1,5 +29417,28574655,Brooklyn,Crown Heights,40.67589,-73.94223000000001,Entire home/apt,180,30,54,2.98,1,277 +29418,63343926,Manhattan,Battery Park City,40.71082,-74.0176,Private room,94,1,65,3.68,1,6 +29419,790872,Manhattan,East Harlem,40.8049,-73.94012,Private room,80,1,4,0.23,2,0 +29420,165887496,Manhattan,Kips Bay,40.74451,-73.97836,Entire home/apt,150,1,79,4.55,1,87 +29421,133926727,Manhattan,Harlem,40.82243,-73.94053000000001,Private room,70,1,3,0.18,2,0 +29422,87073749,Brooklyn,Williamsburg,40.70982,-73.95609,Entire home/apt,125,2,80,4.44,2,74 +29423,116746802,Queens,Bayside,40.75145,-73.75643000000001,Private room,69,5,11,0.69,5,128 +29424,24495088,Brooklyn,Brighton Beach,40.57905,-73.96088,Entire home/apt,179,2,1,0.06,1,0 +29425,165898555,Manhattan,Midtown,40.7504,-73.96934,Entire home/apt,170,30,1,0.08,7,364 +29426,3942655,Brooklyn,Williamsburg,40.71614,-73.94456,Entire home/apt,105,5,8,0.53,2,8 +29427,48616155,Brooklyn,Flatbush,40.64663,-73.96186999999999,Shared room,23,1,57,3.27,1,58 +29428,4365662,Brooklyn,Flatbush,40.641729999999995,-73.96696,Private room,54,2,96,5.43,1,130 +29429,80824522,Brooklyn,Bushwick,40.7025,-73.93253,Private room,69,2,16,1.07,2,185 +29430,162430220,Queens,College Point,40.77639,-73.84392,Private room,80,1,0,,1,0 +29431,76664098,Queens,Flushing,40.759809999999995,-73.82021,Shared room,30,1,0,,1,0 +29432,7784070,Queens,Ditmars Steinway,40.77411,-73.90016999999999,Private room,60,1,0,,1,0 +29433,3231509,Manhattan,Tribeca,40.71775,-74.00607,Entire home/apt,450,14,13,0.77,4,365 +29434,3231509,Manhattan,Tribeca,40.71953,-74.00401,Entire home/apt,490,14,14,0.81,4,365 +29435,165985048,Queens,Forest Hills,40.72616,-73.84328000000001,Private room,78,1,15,0.96,1,178 +29436,21593637,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92656,Entire home/apt,179,3,30,1.68,2,285 +29437,163829123,Brooklyn,Bushwick,40.700990000000004,-73.93728,Entire home/apt,245,2,59,3.69,1,53 +29438,4373926,Manhattan,Harlem,40.82824,-73.94525,Entire home/apt,100,10,2,0.15,1,95 +29439,126449349,Manhattan,Lower East Side,40.71327,-73.98866,Entire home/apt,160,1,2,0.31,2,159 +29440,73377818,Manhattan,Harlem,40.8168,-73.95413,Private room,35,1,0,,1,89 +29441,1653265,Brooklyn,Williamsburg,40.71136,-73.9534,Private room,50,1,0,,1,0 +29442,4719170,Brooklyn,Greenpoint,40.734770000000005,-73.95541,Private room,45,2,6,0.33,1,0 +29443,44904334,Brooklyn,Flatbush,40.65466,-73.95933000000001,Private room,38,2,1,0.07,1,0 +29444,10057035,Brooklyn,Williamsburg,40.71412,-73.93829000000001,Entire home/apt,120,2,6,0.5,1,0 +29445,166066107,Manhattan,East Village,40.72193,-73.98161999999999,Entire home/apt,280,1,66,3.88,1,257 +29446,40543452,Brooklyn,Greenpoint,40.73041,-73.95600999999999,Entire home/apt,120,2,2,0.24,1,0 +29447,21784449,Brooklyn,Boerum Hill,40.68611,-73.98336,Entire home/apt,175,3,46,2.84,1,170 +29448,187912,Brooklyn,Williamsburg,40.717079999999996,-73.96605,Private room,100,1,35,2.04,2,17 +29449,17799362,Brooklyn,Williamsburg,40.70635,-73.93658,Private room,60,2,1,0.06,1,0 +29450,53821850,Brooklyn,Williamsburg,40.706990000000005,-73.94604,Private room,80,1,62,4.83,2,58 +29451,3805722,Brooklyn,Williamsburg,40.71197,-73.95804,Entire home/apt,175,4,5,0.32,1,0 +29452,18305503,Manhattan,Hell's Kitchen,40.76637,-73.98940999999999,Entire home/apt,130,2,3,0.19,1,0 +29453,3413548,Brooklyn,Sunset Park,40.657579999999996,-73.99807,Entire home/apt,185,2,14,0.82,1,124 +29454,40748414,Manhattan,Harlem,40.81847,-73.95259,Entire home/apt,60,14,0,,1,157 +29455,15102235,Brooklyn,Cobble Hill,40.68652,-73.99965999999999,Entire home/apt,140,4,50,2.99,2,107 +29456,1873234,Manhattan,Lower East Side,40.71774,-73.99056999999999,Entire home/apt,140,3,33,1.91,1,11 +29457,166260679,Manhattan,East Village,40.72756,-73.98867,Private room,50,27,0,,1,0 +29458,166262295,Queens,Long Island City,40.753370000000004,-73.93355,Entire home/apt,95,2,57,3.57,2,53 +29459,15535189,Brooklyn,Bedford-Stuyvesant,40.68788,-73.95741,Entire home/apt,95,2,4,0.26,1,0 +29460,166286543,Brooklyn,Crown Heights,40.672990000000006,-73.95521,Private room,49,7,6,0.41,2,299 +29461,166289951,Manhattan,East Harlem,40.79303,-73.94662,Private room,90,2,0,,1,0 +29462,70236577,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94214000000001,Private room,58,1,11,1.77,1,345 +29463,166366338,Manhattan,Upper West Side,40.773270000000004,-73.97953000000001,Entire home/apt,175,3,21,1.3,1,42 +29464,166398662,Manhattan,Washington Heights,40.8372,-73.94196,Private room,25,1,2,0.11,1,0 +29465,74982218,Manhattan,Harlem,40.81309,-73.95336,Private room,32,4,45,2.53,2,38 +29466,166415629,Brooklyn,Bushwick,40.69859,-73.93534,Private room,85,1,0,,1,0 +29467,117195769,Queens,Astoria,40.76334,-73.90977,Private room,45,1,4,0.23,3,0 +29468,121849119,Manhattan,Murray Hill,40.74627,-73.97595,Entire home/apt,100,1,57,3.62,1,86 +29469,33392869,Manhattan,Upper West Side,40.79937,-73.96281,Private room,100,3,0,,1,0 +29470,2495580,Manhattan,Chelsea,40.73955,-73.99775,Entire home/apt,230,4,3,0.76,1,0 +29471,81146832,Manhattan,Inwood,40.86395,-73.92007,Private room,34,1,15,0.85,1,0 +29472,106394077,Queens,Ridgewood,40.70865,-73.91088,Private room,65,3,0,,1,0 +29473,166286543,Brooklyn,Crown Heights,40.67439,-73.95286,Private room,35,10,5,0.29,2,350 +29474,5668546,Manhattan,Hell's Kitchen,40.75574,-73.99638,Entire home/apt,103,1,0,,1,0 +29475,107978473,Brooklyn,Greenpoint,40.73375,-73.9557,Private room,60,2,3,0.23,1,0 +29476,150647463,Brooklyn,Bushwick,40.697829999999996,-73.9301,Private room,55,14,3,0.21,2,64 +29477,84716175,Manhattan,Harlem,40.82246,-73.93817,Private room,95,1,49,2.72,2,180 +29478,166544300,Manhattan,Lower East Side,40.72015,-73.98376,Entire home/apt,416,4,37,2.17,1,244 +29479,1286786,Brooklyn,Greenpoint,40.729490000000006,-73.95801999999999,Private room,45,1,1,0.06,1,0 +29480,3680044,Manhattan,Upper West Side,40.79787,-73.9688,Entire home/apt,99,2,6,0.33,1,0 +29481,130633561,Manhattan,Inwood,40.86815,-73.92342,Private room,125,1,0,,1,89 +29482,74255931,Manhattan,Chelsea,40.74776,-74.00238,Entire home/apt,75,15,1,0.06,1,0 +29483,165907758,Manhattan,Midtown,40.753009999999996,-73.97277,Entire home/apt,200,7,0,,1,0 +29484,154302755,Brooklyn,Bedford-Stuyvesant,40.68766,-73.92788,Private room,100,2,31,1.71,5,358 +29485,156042211,Brooklyn,Canarsie,40.648379999999996,-73.89834,Private room,40,4,4,0.23,4,37 +29486,42682752,Brooklyn,Cobble Hill,40.6887,-73.99168,Private room,60,1,2,0.11,3,0 +29487,41311743,Brooklyn,Crown Heights,40.67516,-73.94813,Private room,97,3,0,,2,0 +29488,44782054,Queens,Ditmars Steinway,40.77317,-73.91508,Private room,55,2,58,3.81,1,9 +29489,156042211,Brooklyn,Canarsie,40.64994,-73.8964,Entire home/apt,120,4,31,1.88,4,296 +29490,155607686,Brooklyn,Gravesend,40.58876,-73.97349,Private room,39,3,20,1.29,1,324 +29491,26101123,Manhattan,Washington Heights,40.83558,-73.9404,Private room,38,2,23,1.43,1,30 +29492,158540605,Queens,Glendale,40.701159999999994,-73.88935,Private room,45,1,61,3.52,6,274 +29493,157979999,Queens,Sunnyside,40.74648,-73.91919,Private room,60,1,76,4.43,1,301 +29494,158563237,Manhattan,Inwood,40.86958,-73.9172,Entire home/apt,225,4,9,0.65,1,364 +29495,158540605,Queens,Glendale,40.70148,-73.88954,Private room,25,2,75,4.29,6,254 +29496,158540605,Queens,Glendale,40.700990000000004,-73.89034000000001,Private room,25,1,101,5.59,6,216 +29497,89320309,Brooklyn,Fort Hamilton,40.61752,-74.03174,Private room,30,1,2,0.13,1,0 +29498,16684717,Brooklyn,Crown Heights,40.67362,-73.9568,Private room,50,1,2,0.12,1,0 +29499,22445332,Brooklyn,Crown Heights,40.67157,-73.93434,Private room,25,1,1,0.06,1,0 +29500,2925596,Manhattan,Hell's Kitchen,40.76464,-73.99361,Entire home/apt,200,5,46,2.63,1,228 +29501,15819815,Manhattan,Midtown,40.7601,-73.96356,Entire home/apt,100,30,1,0.06,1,177 +29502,1715301,Staten Island,Tompkinsville,40.63518,-74.07956,Entire home/apt,65,4,63,3.63,3,191 +29503,151233592,Queens,Ozone Park,40.68887,-73.8448,Private room,30,1,1,0.06,1,0 +29504,110345854,Manhattan,Lower East Side,40.72149,-73.98573,Entire home/apt,110,4,1,0.13,1,0 +29505,113469347,Queens,Queens Village,40.718990000000005,-73.75347,Entire home/apt,45,3,27,3.65,1,304 +29506,165898555,Manhattan,Upper East Side,40.777190000000004,-73.9529,Entire home/apt,200,30,0,,7,364 +29507,166818540,Manhattan,Chelsea,40.739909999999995,-74.00211,Entire home/apt,115,1,2,0.11,1,0 +29508,166819817,Manhattan,Washington Heights,40.83267,-73.94156,Private room,75,30,0,,1,90 +29509,124657243,Brooklyn,Flatbush,40.65105,-73.95935,Entire home/apt,89,1,4,0.23,1,0 +29510,35673036,Brooklyn,Sheepshead Bay,40.589,-73.95675,Private room,50,3,3,0.28,1,189 +29511,93339222,Brooklyn,Gowanus,40.67968,-73.99065999999999,Private room,125,2,50,3.19,1,80 +29512,4792728,Bronx,Longwood,40.81943,-73.90224,Private room,80,2,9,0.65,1,0 +29513,9246334,Brooklyn,Crown Heights,40.67521,-73.93996,Private room,70,7,0,,1,365 +29514,166861637,Manhattan,Gramercy,40.736740000000005,-73.98308,Entire home/apt,100,3,52,3.2,1,3 +29515,166879201,Brooklyn,Bedford-Stuyvesant,40.69305,-73.95599,Entire home/apt,169,2,95,5.27,1,48 +29516,165898555,Manhattan,Upper West Side,40.769729999999996,-73.9848,Entire home/apt,200,30,0,,7,365 +29517,4993038,Brooklyn,Williamsburg,40.71082,-73.96128,Entire home/apt,300,1,1,0.06,1,0 +29518,166884908,Queens,Long Island City,40.75853,-73.94304,Private room,50,1,0,,1,0 +29519,165898555,Manhattan,Financial District,40.708529999999996,-74.01436,Entire home/apt,225,30,1,0.07,7,364 +29520,37818581,Manhattan,East Harlem,40.8024,-73.93735,Shared room,30,1,17,0.94,4,0 +29521,3889408,Manhattan,Upper West Side,40.782959999999996,-73.98252,Entire home/apt,545,2,47,2.79,1,269 +29522,4976277,Queens,Sunnyside,40.74755,-73.91833000000001,Entire home/apt,200,5,19,1.18,1,155 +29523,6787261,Brooklyn,Williamsburg,40.71028,-73.95366999999999,Entire home/apt,189,1,52,2.88,2,0 +29524,5680111,Brooklyn,Bushwick,40.6881,-73.91311999999999,Private room,71,5,19,1.29,7,140 +29525,167000939,Manhattan,Upper East Side,40.763729999999995,-73.96595,Entire home/apt,200,2,13,0.87,1,0 +29526,260958,Manhattan,Chinatown,40.71391,-73.99076,Private room,65,3,3,0.17,3,0 +29527,22550357,Brooklyn,Cobble Hill,40.6901,-73.99523,Private room,85,10,19,1.06,1,0 +29528,26754841,Manhattan,West Village,40.73612,-74.0041,Private room,125,2,3,0.85,2,0 +29529,85886048,Manhattan,Upper West Side,40.7817,-73.982,Private room,395,3,0,,1,365 +29530,20120009,Brooklyn,Bushwick,40.687259999999995,-73.90621,Private room,38,1,36,2.0,6,0 +29531,20120009,Brooklyn,Bushwick,40.68757,-73.90737,Private room,38,1,33,1.83,6,1 +29532,22130449,Brooklyn,Williamsburg,40.71082,-73.95729,Private room,70,2,11,0.67,1,3 +29533,3428456,Brooklyn,DUMBO,40.703109999999995,-73.98853000000001,Private room,74,1,0,,1,0 +29534,16275624,Brooklyn,Bedford-Stuyvesant,40.68141,-73.92769,Private room,69,2,21,1.2,2,28 +29535,15537429,Manhattan,East Village,40.72785,-73.97976,Entire home/apt,155,1,80,4.62,3,21 +29536,5079985,Manhattan,Midtown,40.76334,-73.98257,Entire home/apt,165,2,4,0.24,1,188 +29537,165803414,Manhattan,Financial District,40.70789,-74.0108,Private room,80,1,1,0.06,1,0 +29538,49222773,Manhattan,Upper East Side,40.77685,-73.9537,Private room,90,2,12,0.79,1,2 +29539,167098774,Brooklyn,Canarsie,40.637609999999995,-73.89339,Private room,55,2,32,1.84,3,76 +29540,116067987,Queens,Long Island City,40.75489,-73.92166999999999,Entire home/apt,150,2,54,3.21,2,351 +29541,165898555,Manhattan,Midtown,40.75059,-73.97122,Entire home/apt,170,30,0,,7,364 +29542,42082112,Manhattan,Harlem,40.82779,-73.94716,Entire home/apt,95,4,34,2.03,1,56 +29543,3218951,Brooklyn,Prospect-Lefferts Gardens,40.656859999999995,-73.95758000000001,Private room,22,7,5,0.3,1,5 +29544,167188752,Manhattan,Chelsea,40.7394,-73.99964,Private room,150,3,1,0.07,1,364 +29545,143938171,Queens,Ozone Park,40.68275,-73.8429,Entire home/apt,200,3,0,,1,0 +29546,24124835,Brooklyn,Bedford-Stuyvesant,40.6886,-73.92936999999999,Entire home/apt,130,4,53,3.66,2,41 +29547,167208041,Manhattan,Harlem,40.82476,-73.94332,Entire home/apt,173,2,78,4.43,1,0 +29548,42585518,Brooklyn,Williamsburg,40.71945,-73.94648000000001,Entire home/apt,75,4,6,0.37,1,0 +29549,165898555,Manhattan,Midtown,40.751290000000004,-73.9698,Entire home/apt,170,30,0,,7,364 +29550,8992812,Brooklyn,Bedford-Stuyvesant,40.6805,-73.92823,Entire home/apt,110,2,10,0.68,1,0 +29551,167250189,Brooklyn,Bushwick,40.69827,-73.93207,Private room,50,5,1,0.06,1,0 +29552,72392039,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.93056999999999,Private room,55,2,9,0.8,1,319 +29553,167258458,Manhattan,East Village,40.72162,-73.97774,Entire home/apt,135,3,49,2.71,2,202 +29554,167258458,Manhattan,East Village,40.7214,-73.97787,Private room,85,2,3,0.21,2,0 +29555,27264437,Brooklyn,Bedford-Stuyvesant,40.69563,-73.93466,Private room,55,5,4,0.23,2,0 +29556,26856426,Brooklyn,Gowanus,40.668240000000004,-73.99271999999999,Entire home/apt,189,5,8,0.52,1,0 +29557,76422506,Brooklyn,Clinton Hill,40.69675,-73.96188000000001,Private room,60,3,0,,1,0 +29558,41550565,Brooklyn,Cobble Hill,40.68864,-73.99896,Entire home/apt,100,30,5,0.33,1,117 +29559,167359300,Brooklyn,Brighton Beach,40.57458,-73.96514,Private room,76,3,23,1.37,1,153 +29560,13203970,Brooklyn,Bedford-Stuyvesant,40.67974,-73.91705,Entire home/apt,97,2,44,2.92,1,174 +29561,53978622,Manhattan,East Harlem,40.809540000000005,-73.93934,Entire home/apt,175,4,8,0.51,2,160 +29562,134428157,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94657,Entire home/apt,150,3,27,1.58,7,319 +29563,117633459,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95907,Private room,42,7,2,0.11,1,0 +29564,50765187,Manhattan,Upper East Side,40.772870000000005,-73.95897,Private room,175,2,0,,1,88 +29565,167004933,Queens,Ridgewood,40.70348,-73.91051,Private room,40,2,1,0.09,1,0 +29566,56120478,Brooklyn,Williamsburg,40.71805,-73.94925,Private room,75,1,9,0.51,1,0 +29567,44174916,Brooklyn,Bushwick,40.70138,-73.9187,Entire home/apt,75,2,6,0.33,1,0 +29568,5835731,Brooklyn,Bedford-Stuyvesant,40.68037,-73.92029000000001,Entire home/apt,79,2,5,0.28,1,0 +29569,3741891,Brooklyn,Crown Heights,40.67131,-73.94753,Private room,45,2,49,3.15,1,8 +29570,167401250,Brooklyn,Greenpoint,40.72292,-73.94618,Private room,78,1,2,0.13,1,0 +29571,6291509,Brooklyn,Boerum Hill,40.6876,-73.98472,Entire home/apt,160,4,4,0.3,1,14 +29572,99652823,Brooklyn,Kensington,40.64111,-73.97345,Private room,50,2,0,,1,0 +29573,140057330,Queens,Ridgewood,40.69847,-73.90735,Private room,60,1,38,2.28,7,47 +29574,167270001,Manhattan,Hell's Kitchen,40.75763,-73.99221,Private room,300,1,64,3.59,2,332 +29575,167098774,Brooklyn,Canarsie,40.63905,-73.89243,Private room,55,2,20,1.4,3,177 +29576,162575767,Manhattan,SoHo,40.72044,-73.9998,Entire home/apt,800,2,0,,1,2 +29577,2681756,Manhattan,Upper West Side,40.7861,-73.97097,Entire home/apt,170,3,0,,1,0 +29578,93516714,Manhattan,Upper West Side,40.7734,-73.98684,Private room,120,60,0,,1,365 +29579,1692538,Manhattan,Washington Heights,40.85411,-73.92952,Private room,99,1,45,2.7,5,315 +29580,47412299,Brooklyn,Canarsie,40.64178,-73.90179,Entire home/apt,90,5,23,1.7,1,293 +29581,127740507,Manhattan,Harlem,40.83102,-73.94181,Private room,65,2,103,5.89,2,0 +29582,166873118,Manhattan,Murray Hill,40.74476,-73.9755,Private room,70,15,0,,1,0 +29583,20365135,Manhattan,East Village,40.72804,-73.98725999999999,Private room,80,2,3,0.19,1,0 +29584,163047410,Bronx,Longwood,40.81961,-73.90019000000001,Entire home/apt,40,5,45,2.51,1,266 +29585,165257273,Queens,Flushing,40.77053,-73.80067,Private room,54,30,5,0.39,3,335 +29586,10545382,Brooklyn,Williamsburg,40.7169,-73.96493000000001,Private room,138,1,75,4.59,2,81 +29587,52825108,Brooklyn,Bushwick,40.69928,-73.9309,Private room,66,14,1,0.13,1,49 +29588,54740781,Manhattan,Harlem,40.82949,-73.94644,Private room,35,3,2,0.17,1,0 +29589,58884411,Queens,Ridgewood,40.70111,-73.89988000000001,Private room,25,3,0,,1,0 +29590,133545456,Brooklyn,South Slope,40.66085,-73.98178,Shared room,55,2,1,0.06,1,0 +29591,167560332,Bronx,Hunts Point,40.81978,-73.88743000000001,Private room,45,2,0,,1,0 +29592,167270001,Manhattan,Hell's Kitchen,40.7559,-73.99324,Private room,109,1,91,5.11,2,304 +29593,45370849,Brooklyn,Bay Ridge,40.63557,-74.03449,Entire home/apt,110,2,34,3.03,1,96 +29594,41911368,Brooklyn,Prospect-Lefferts Gardens,40.65682,-73.95875,Entire home/apt,125,3,0,,2,0 +29595,24967136,Brooklyn,Bedford-Stuyvesant,40.68226,-73.93153000000001,Entire home/apt,119,5,25,1.49,2,77 +29596,5601966,Manhattan,Chelsea,40.74907,-74.00374000000001,Entire home/apt,375,4,35,2.19,1,79 +29597,17766980,Brooklyn,Williamsburg,40.707879999999996,-73.9511,Private room,65,3,5,0.31,1,0 +29598,17129810,Brooklyn,Columbia St,40.68155,-74.0039,Private room,75,4,4,0.33,5,0 +29599,158461160,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9462,Entire home/apt,58,30,4,0.26,6,220 +29600,120847,Brooklyn,Bedford-Stuyvesant,40.68959,-73.95616,Private room,85,3,11,0.82,1,13 +29601,167636238,Brooklyn,Cypress Hills,40.68177,-73.88277,Private room,68,2,10,0.94,3,365 +29602,167677659,Manhattan,Harlem,40.80399,-73.95402,Entire home/apt,90,4,5,0.31,1,7 +29603,116874533,Manhattan,Harlem,40.812940000000005,-73.94609,Private room,90,2,30,1.88,2,331 +29604,167595532,Staten Island,Arden Heights,40.56033,-74.18259,Entire home/apt,75,1,20,1.55,1,6 +29605,131827796,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95427,Entire home/apt,130,3,36,2.23,1,132 +29606,17338440,Brooklyn,Greenpoint,40.729040000000005,-73.94885,Private room,50,5,1,0.06,1,0 +29607,27960761,Manhattan,Greenwich Village,40.72815,-73.99586,Entire home/apt,150,2,14,0.79,3,0 +29608,3490389,Brooklyn,Williamsburg,40.71589,-73.94288,Private room,100,3,19,1.35,1,172 +29609,60126799,Brooklyn,Park Slope,40.67158,-73.97706,Private room,70,4,0,,1,0 +29610,167818456,Brooklyn,Williamsburg,40.71297,-73.95657,Entire home/apt,345,2,47,3.24,2,146 +29611,167831565,Brooklyn,Flatlands,40.62812,-73.94664,Private room,59,1,6,0.34,1,0 +29612,45241930,Manhattan,Upper East Side,40.77207,-73.95599,Entire home/apt,150,60,6,0.36,3,33 +29613,167818421,Queens,Astoria,40.76645,-73.91486,Private room,80,3,22,1.28,1,188 +29614,33695224,Queens,Sunnyside,40.74439,-73.91372,Private room,60,1,3,0.17,1,0 +29615,12150056,Manhattan,East Harlem,40.78662,-73.94109,Entire home/apt,100,1,4,0.22,1,22 +29616,99542612,Brooklyn,Flatbush,40.6322,-73.95969000000001,Private room,50,1,0,,1,0 +29617,510931,Manhattan,Financial District,40.70402,-74.01572,Private room,120,2,11,0.66,2,58 +29618,57195513,Queens,College Point,40.794270000000004,-73.84725999999999,Entire home/apt,120,7,13,0.73,1,0 +29619,32304780,Manhattan,Harlem,40.823890000000006,-73.95014,Private room,48,30,5,0.32,3,332 +29620,4690758,Manhattan,West Village,40.73761,-73.99758,Private room,78,1,0,,1,0 +29621,47735494,Queens,Rego Park,40.726659999999995,-73.87004,Shared room,23,1,13,0.77,4,0 +29622,4342526,Brooklyn,Crown Heights,40.67985,-73.96276999999999,Entire home/apt,175,5,4,0.31,1,98 +29623,8113165,Brooklyn,Canarsie,40.63762,-73.91004000000001,Entire home/apt,95,3,4,0.23,2,108 +29624,13032188,Brooklyn,Bedford-Stuyvesant,40.68482,-73.93723,Private room,40,1,4,0.25,1,84 +29625,891403,Manhattan,Kips Bay,40.74322,-73.98005,Entire home/apt,339,3,19,1.25,1,365 +29626,12954861,Brooklyn,Crown Heights,40.67605,-73.95791,Entire home/apt,100,2,20,1.17,1,0 +29627,24467449,Brooklyn,Bedford-Stuyvesant,40.68567,-73.95146,Entire home/apt,79,1,8,0.47,2,21 +29628,156684502,Queens,Springfield Gardens,40.66298,-73.77,Private room,50,1,302,16.81,3,26 +29629,168015754,Manhattan,Inwood,40.85925,-73.9297,Private room,40,3,33,2.05,1,18 +29630,155223823,Manhattan,Harlem,40.82881,-73.94309,Shared room,85,1,1,0.11,1,90 +29631,87786261,Brooklyn,South Slope,40.66064,-73.98564,Entire home/apt,129,1,67,3.97,5,255 +29632,167019780,Brooklyn,Bedford-Stuyvesant,40.68117,-73.93536999999999,Entire home/apt,105,3,41,2.46,1,211 +29633,33995259,Manhattan,Upper East Side,40.77418,-73.95326999999999,Entire home/apt,275,7,10,0.66,1,0 +29634,2493425,Brooklyn,Flatbush,40.65217,-73.95974,Private room,47,2,7,0.4,1,0 +29635,168044240,Manhattan,NoHo,40.7275,-73.99168,Entire home/apt,265,2,42,2.45,1,70 +29636,16200683,Manhattan,Harlem,40.812459999999994,-73.95161,Entire home/apt,155,4,18,1.05,1,0 +29637,41311743,Brooklyn,Crown Heights,40.67593,-73.94966,Private room,80,3,0,,2,0 +29638,47844929,Manhattan,Chelsea,40.739509999999996,-73.99979,Entire home/apt,115,1,4,0.24,1,0 +29639,1678704,Brooklyn,Bedford-Stuyvesant,40.69251,-73.9301,Private room,35,1,5,0.46,3,59 +29640,17105274,Brooklyn,Bushwick,40.69124,-73.90236,Private room,69,14,6,0.35,2,319 +29641,10782927,Brooklyn,Bushwick,40.7,-73.91714,Entire home/apt,250,1,45,2.56,1,96 +29642,10385345,Manhattan,Upper East Side,40.778620000000004,-73.94561999999999,Entire home/apt,100,14,6,1.94,1,0 +29643,168121995,Manhattan,Midtown,40.75241,-73.98558,Entire home/apt,120,180,3,0.42,1,299 +29644,4441023,Manhattan,Hell's Kitchen,40.75497,-73.99788000000001,Entire home/apt,450,2,2,0.14,1,0 +29645,327778,Brooklyn,Crown Heights,40.67508,-73.92269,Private room,36,3,8,0.55,1,0 +29646,119847900,Manhattan,Washington Heights,40.8485,-73.93509,Private room,52,1,46,2.73,1,21 +29647,34516512,Manhattan,Kips Bay,40.74252,-73.9798,Entire home/apt,175,2,0,,1,0 +29648,167995009,Queens,Jamaica,40.66745,-73.78156,Private room,130,1,4,0.27,1,365 +29649,8125932,Brooklyn,Windsor Terrace,40.65892,-73.98385999999999,Private room,45,2,26,1.6,1,74 +29650,50605766,Manhattan,Tribeca,40.7118,-74.0083,Entire home/apt,150,30,1,0.09,1,328 +29651,103104686,Queens,Springfield Gardens,40.666579999999996,-73.76581,Entire home/apt,228,2,4,0.26,2,0 +29652,168196322,Brooklyn,East New York,40.66337,-73.88036,Entire home/apt,80,5,55,3.31,1,139 +29653,19962052,Manhattan,Gramercy,40.73684,-73.98156999999999,Entire home/apt,200,2,20,1.17,3,20 +29654,15534068,Queens,Richmond Hill,40.703790000000005,-73.8187,Private room,50,7,14,1.03,1,93 +29655,168211014,Bronx,Mott Haven,40.809059999999995,-73.92031,Entire home/apt,150,1,9,0.72,1,168 +29656,413447,Brooklyn,Bushwick,40.70262,-73.91679,Private room,65,2,4,0.36,2,0 +29657,31665926,Brooklyn,Bushwick,40.69062,-73.92079,Private room,115,3,0,,1,0 +29658,57791424,Manhattan,East Village,40.724059999999994,-73.98275,Entire home/apt,180,3,2,0.15,1,0 +29659,160054295,Brooklyn,Crown Heights,40.67582,-73.94054,Private room,47,1,5,0.53,1,0 +29660,168279437,Queens,Woodside,40.74211,-73.89067,Private room,40,1,7,0.41,1,0 +29661,156158778,Brooklyn,Prospect Heights,40.67862,-73.97065,Entire home/apt,1680,1,0,,12,14 +29662,156158778,Manhattan,Upper East Side,40.768240000000006,-73.95989,Entire home/apt,7703,1,0,,12,146 +29663,156158778,Manhattan,East Village,40.72779,-73.98644,Entire home/apt,3518,1,0,,12,215 +29664,156158778,Manhattan,Upper East Side,40.78517,-73.9527,Entire home/apt,6419,1,0,,12,45 +29665,156158778,Brooklyn,Park Slope,40.67859,-73.97787,Entire home/apt,2626,1,0,,12,31 +29666,156158778,Brooklyn,Prospect Heights,40.678290000000004,-73.96899,Entire home/apt,2103,1,0,,12,20 +29667,168308087,Manhattan,Chelsea,40.73686,-73.99171,Entire home/apt,75,1,0,,1,0 +29668,126501524,Brooklyn,Bedford-Stuyvesant,40.685179999999995,-73.94283,Entire home/apt,125,2,61,3.47,3,250 +29669,110965771,Queens,Flushing,40.772529999999996,-73.82467,Private room,140,2,14,0.81,7,57 +29670,168353272,Manhattan,Chelsea,40.743759999999995,-73.99313000000001,Entire home/apt,220,1,9,1.79,1,13 +29671,38638199,Manhattan,Midtown,40.75721,-73.96813,Private room,50,1,18,1.01,1,0 +29672,44862267,Brooklyn,Williamsburg,40.70283,-73.93788,Private room,30,3,32,1.85,1,36 +29673,19981762,Manhattan,Battery Park City,40.7152,-74.01368000000001,Entire home/apt,980,3,0,,1,0 +29674,83426350,Brooklyn,Bedford-Stuyvesant,40.689170000000004,-73.94937,Private room,49,2,0,,1,0 +29675,118390361,Manhattan,Upper East Side,40.78096,-73.95411999999999,Private room,79,2,88,5.69,1,107 +29676,28913914,Queens,Ridgewood,40.70228,-73.90097,Private room,90,1,4,2.26,1,1 +29677,117492425,Staten Island,St. George,40.64581,-74.07949,Entire home/apt,150,4,0,,6,0 +29678,168416827,Brooklyn,Prospect Heights,40.674040000000005,-73.96395,Private room,69,4,16,0.95,1,300 +29679,6237087,Brooklyn,Williamsburg,40.712140000000005,-73.94423,Private room,50,2,15,0.97,1,0 +29680,8637211,Manhattan,Harlem,40.81899,-73.94714,Private room,49,30,11,0.79,4,257 +29681,3750764,Manhattan,Chelsea,40.74881,-74.00473000000001,Entire home/apt,1100,1,0,,6,0 +29682,168429942,Bronx,Norwood,40.88007,-73.87326,Private room,50,5,4,0.26,2,324 +29683,3750764,Manhattan,Chelsea,40.750209999999996,-74.00479,Entire home/apt,1500,1,0,,6,0 +29684,164886138,Manhattan,Harlem,40.813759999999995,-73.95354,Private room,69,2,4,0.29,11,180 +29685,164886138,Manhattan,Harlem,40.81236,-73.95204,Private room,69,1,4,0.29,11,365 +29686,164886138,Manhattan,Harlem,40.81196,-73.95221,Private room,65,1,3,0.18,11,364 +29687,9374496,Manhattan,Gramercy,40.73307,-73.98347,Entire home/apt,150,3,16,0.9,1,0 +29688,168465501,Manhattan,Murray Hill,40.7504,-73.97759,Entire home/apt,200,30,3,0.28,4,311 +29689,168501789,Brooklyn,Prospect-Lefferts Gardens,40.65676,-73.94139,Entire home/apt,150,3,1,0.08,1,363 +29690,7431741,Brooklyn,Crown Heights,40.673359999999995,-73.95383000000001,Entire home/apt,110,2,2,0.12,1,0 +29691,162127741,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.96039,Entire home/apt,110,5,28,1.71,1,347 +29692,168565806,Manhattan,Lower East Side,40.715270000000004,-73.9898,Private room,69,8,6,0.37,2,334 +29693,22768255,Brooklyn,Brooklyn Heights,40.6986,-73.99322,Entire home/apt,230,1,17,0.97,1,0 +29694,44278310,Brooklyn,Crown Heights,40.67488,-73.9388,Private room,50,1,0,,1,0 +29695,90064069,Manhattan,Harlem,40.827420000000004,-73.94878,Private room,60,1,103,5.94,1,19 +29696,167567675,Queens,Middle Village,40.71131,-73.87376,Entire home/apt,100,1,44,4.33,1,264 +29697,33822427,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94873,Entire home/apt,92,2,42,2.47,1,11 +29698,107183778,Queens,Flushing,40.76936,-73.83035,Private room,98,1,26,1.48,1,215 +29699,1597722,Brooklyn,Williamsburg,40.70858,-73.94791,Entire home/apt,145,7,5,0.32,1,0 +29700,168613171,Brooklyn,Williamsburg,40.71286,-73.95648,Private room,175,3,0,,1,365 +29701,168619140,Brooklyn,Canarsie,40.63773,-73.91729000000001,Private room,80,1,5,0.53,2,0 +29702,164886138,Manhattan,Harlem,40.81337,-73.95206,Private room,69,1,1,0.06,11,364 +29703,35559100,Manhattan,Inwood,40.86529,-73.92213000000001,Private room,55,1,28,2.54,1,175 +29704,164886138,Manhattan,Harlem,40.81351,-73.95186,Private room,65,1,0,,11,364 +29705,164886138,Manhattan,Harlem,40.813390000000005,-73.95176,Private room,65,1,1,0.07,11,364 +29706,21892425,Brooklyn,Crown Heights,40.66884,-73.95957,Private room,40,1,120,6.77,1,8 +29707,4035432,Brooklyn,South Slope,40.66013,-73.98649,Private room,100,2,9,0.59,1,0 +29708,168660624,Brooklyn,Williamsburg,40.720209999999994,-73.96246,Private room,40,5,0,,1,0 +29709,168567714,Brooklyn,East Flatbush,40.65875,-73.93698,Private room,68,1,18,1.06,1,152 +29710,27584983,Manhattan,Lower East Side,40.71263,-73.98106,Entire home/apt,250,3,9,0.53,1,0 +29711,22610399,Brooklyn,Midwood,40.623059999999995,-73.96965,Entire home/apt,66,18,0,,1,0 +29712,139490165,Brooklyn,Bushwick,40.68425,-73.90708000000001,Entire home/apt,66,3,0,,3,0 +29713,168159627,Brooklyn,Williamsburg,40.72017,-73.95976999999999,Entire home/apt,600,2,26,1.59,1,253 +29714,38814918,Queens,Woodside,40.74615,-73.90216,Private room,60,1,123,7.07,1,105 +29715,168784638,Brooklyn,Williamsburg,40.714940000000006,-73.96214,Entire home/apt,237,3,28,2.09,1,0 +29716,92524622,Manhattan,East Harlem,40.80106,-73.94503,Entire home/apt,100,5,35,2.19,1,0 +29717,17848380,Manhattan,Upper West Side,40.79551,-73.97221,Private room,120,1,14,0.81,3,360 +29718,168804578,Manhattan,Morningside Heights,40.80895,-73.95894,Private room,60,1,23,1.31,1,0 +29719,45688186,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92815,Entire home/apt,105,1,72,4.08,2,307 +29720,98956556,Brooklyn,Boerum Hill,40.68531,-73.97948000000001,Entire home/apt,150,2,19,1.13,1,1 +29721,26243777,Brooklyn,Bedford-Stuyvesant,40.687290000000004,-73.92949,Entire home/apt,125,4,6,0.36,2,0 +29722,143460,Brooklyn,Bushwick,40.698190000000004,-73.92194,Private room,45,1,3,0.21,2,0 +29723,21283448,Brooklyn,Prospect-Lefferts Gardens,40.658879999999996,-73.95959,Entire home/apt,90,4,37,2.18,1,0 +29724,168348550,Queens,Long Island City,40.75533,-73.93261,Entire home/apt,175,2,45,2.84,1,33 +29725,6762247,Brooklyn,Bushwick,40.69185,-73.92052,Entire home/apt,125,1,2,0.13,2,0 +29726,74410137,Manhattan,Harlem,40.80684,-73.94612,Private room,46,3,10,0.57,1,0 +29727,168946125,Manhattan,Chinatown,40.715270000000004,-73.99840999999999,Entire home/apt,150,3,4,0.23,1,0 +29728,43207538,Brooklyn,Bushwick,40.69226,-73.92681,Private room,60,2,0,,1,0 +29729,95014144,Queens,Astoria,40.76119,-73.91294,Private room,70,1,0,,1,0 +29730,14969786,Bronx,Kingsbridge,40.866640000000004,-73.89844000000001,Private room,70,1,26,5.23,1,0 +29731,9630772,Manhattan,Gramercy,40.736090000000004,-73.98566,Private room,149,4,10,0.65,2,0 +29732,16139880,Brooklyn,Bedford-Stuyvesant,40.67685,-73.91499,Private room,50,3,20,1.15,6,178 +29733,46081317,Queens,Astoria,40.75639,-73.91619,Private room,50,25,5,0.33,3,155 +29734,114418657,Manhattan,Upper West Side,40.80095,-73.96725,Private room,60,90,0,,1,90 +29735,17719708,Manhattan,East Harlem,40.80194,-73.94397,Private room,69,3,17,1.27,1,77 +29736,26808662,Queens,Ridgewood,40.698640000000005,-73.90746,Private room,44,1,4,0.34,1,0 +29737,169012324,Brooklyn,East Flatbush,40.63767,-73.94011,Entire home/apt,80,90,23,1.38,1,156 +29738,34635838,Staten Island,Bull's Head,40.60295,-74.17116999999999,Private room,25,1,34,2.06,2,0 +29739,25168124,Brooklyn,Greenpoint,40.72998,-73.95649,Entire home/apt,480,7,2,0.13,1,23 +29740,34614054,Brooklyn,Greenpoint,40.72522,-73.95184,Private room,46,3,7,0.4,5,285 +29741,14117835,Manhattan,East Village,40.721,-73.98186,Entire home/apt,150,2,3,0.17,1,6 +29742,87181550,Brooklyn,Bushwick,40.68993,-73.90499,Private room,55,1,36,2.07,1,26 +29743,501456,Brooklyn,Greenpoint,40.73531,-73.95631,Private room,58,3,9,0.52,4,25 +29744,501456,Brooklyn,Greenpoint,40.7348,-73.95701,Private room,58,3,11,0.64,4,14 +29745,13997208,Manhattan,Lower East Side,40.720729999999996,-73.9929,Entire home/apt,280,3,0,,1,87 +29746,102841376,Manhattan,East Village,40.72509,-73.98954,Private room,139,4,3,0.17,1,0 +29747,138706642,Manhattan,Nolita,40.72011,-73.99535,Private room,125,1,1,0.06,1,0 +29748,8997485,Brooklyn,Midwood,40.62427,-73.96194,Entire home/apt,69,2,64,3.95,2,225 +29749,29574418,Manhattan,Washington Heights,40.8521,-73.93958,Entire home/apt,110,7,19,1.11,1,171 +29750,1678861,Brooklyn,Greenpoint,40.72016,-73.95461999999999,Entire home/apt,275,2,3,0.22,1,0 +29751,25243100,Brooklyn,Bushwick,40.69158,-73.91096,Private room,45,2,0,,1,0 +29752,30786898,Brooklyn,Williamsburg,40.7195,-73.96084,Private room,125,3,1,0.06,1,0 +29753,6513281,Brooklyn,Williamsburg,40.71174,-73.94955999999999,Entire home/apt,249,2,54,3.17,2,154 +29754,169166409,Queens,Astoria,40.7682,-73.92851999999999,Shared room,32,2,28,1.64,2,16 +29755,3699016,Brooklyn,Crown Heights,40.6774,-73.95133,Entire home/apt,140,2,54,3.17,2,1 +29756,12624093,Manhattan,Upper West Side,40.7972,-73.96155999999999,Entire home/apt,86,2,3,0.19,1,0 +29757,169201555,Brooklyn,Crown Heights,40.66989,-73.9436,Private room,50,3,1,0.07,1,18 +29758,23254432,Manhattan,Financial District,40.703509999999994,-74.01266,Entire home/apt,165,2,27,1.57,1,0 +29759,17631246,Manhattan,East Village,40.72997,-73.98772,Entire home/apt,150,2,20,1.15,1,0 +29760,169211917,Brooklyn,East Flatbush,40.640159999999995,-73.94119,Private room,80,1,1,0.07,1,179 +29761,169226619,Brooklyn,Clinton Hill,40.69083,-73.9655,Private room,58,2,38,2.38,1,37 +29762,1164515,Brooklyn,Bushwick,40.70332,-73.92766,Private room,38,2,13,0.93,2,141 +29763,26500272,Brooklyn,Fort Greene,40.6932,-73.97348000000001,Entire home/apt,350,3,0,,1,0 +29764,116754031,Brooklyn,East Flatbush,40.6329,-73.92784,Entire home/apt,80,1,53,3.02,3,363 +29765,126407919,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.95931,Entire home/apt,73,31,4,0.31,1,5 +29766,425702,Manhattan,Upper East Side,40.76805,-73.96765,Entire home/apt,169,1,67,3.81,1,186 +29767,12479495,Brooklyn,Cobble Hill,40.68712,-73.9914,Private room,75,3,0,,1,0 +29768,22040625,Queens,Long Island City,40.75561,-73.93596,Private room,59,2,1,0.06,1,0 +29769,120981856,Manhattan,Upper West Side,40.78941,-73.97166999999999,Entire home/apt,145,7,9,0.55,1,80 +29770,90685499,Brooklyn,Williamsburg,40.711259999999996,-73.96009000000001,Entire home/apt,195,6,6,0.4,2,14 +29771,7759203,Manhattan,Upper East Side,40.77219,-73.94763,Entire home/apt,199,5,6,0.44,1,11 +29772,159435936,Manhattan,Upper West Side,40.78694,-73.97218000000001,Entire home/apt,100,31,1,0.09,3,161 +29773,103745233,Brooklyn,Crown Heights,40.67346,-73.93295,Private room,60,1,54,3.07,1,0 +29774,15377827,Brooklyn,Williamsburg,40.718990000000005,-73.95858,Private room,45,7,5,0.29,1,0 +29775,169382341,Manhattan,East Village,40.72149,-73.98273,Private room,90,5,11,0.69,2,5 +29776,126184451,Queens,Sunnyside,40.745259999999995,-73.91355,Entire home/apt,78,4,26,1.53,1,50 +29777,11573876,Manhattan,Financial District,40.707640000000005,-74.00076999999999,Private room,59,6,3,0.17,1,0 +29778,16005407,Queens,Ridgewood,40.70619,-73.9145,Private room,37,2,17,1.01,1,0 +29779,162427870,Manhattan,Midtown,40.74698,-73.98906,Private room,110,1,135,7.67,3,311 +29780,89221067,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95005,Private room,35,5,0,,1,0 +29781,169534923,Manhattan,Kips Bay,40.741479999999996,-73.98125999999999,Entire home/apt,188,30,40,2.35,1,146 +29782,24466431,Brooklyn,Bushwick,40.68732,-73.9151,Private room,70,7,0,,1,0 +29783,26243777,Brooklyn,Bedford-Stuyvesant,40.685990000000004,-73.92967,Private room,45,2,48,2.81,2,12 +29784,169532780,Brooklyn,East New York,40.67342,-73.89325,Entire home/apt,169,3,22,1.3,1,189 +29785,169546851,Manhattan,Upper East Side,40.76365,-73.96683,Entire home/apt,275,2,63,3.9,1,239 +29786,2076284,Queens,Ridgewood,40.70701,-73.90949,Private room,50,2,0,,1,0 +29787,20268978,Manhattan,West Village,40.73254,-74.00285,Entire home/apt,220,1,0,,1,0 +29788,16682397,Manhattan,East Village,40.72753,-73.98411999999999,Entire home/apt,190,2,5,0.29,1,0 +29789,16006049,Brooklyn,Flatbush,40.65168,-73.96457,Private room,35,2,0,,1,0 +29790,17334910,Manhattan,Washington Heights,40.83618,-73.94443000000001,Private room,60,7,0,,1,0 +29791,80479138,Manhattan,Midtown,40.75946,-73.96498000000001,Entire home/apt,189,30,3,0.21,5,108 +29792,111782745,Brooklyn,Bushwick,40.70364,-73.93146,Private room,45,2,23,1.39,2,0 +29793,169686676,Brooklyn,Crown Heights,40.678020000000004,-73.9614,Private room,60,1,19,1.17,1,362 +29794,169514692,Brooklyn,Carroll Gardens,40.67674,-73.99769,Entire home/apt,149,3,38,2.38,1,138 +29795,5165317,Manhattan,Upper East Side,40.77233,-73.95321,Entire home/apt,170,2,0,,1,0 +29796,20413013,Queens,Long Island City,40.74893,-73.94688000000001,Entire home/apt,199,2,50,2.95,1,161 +29797,9110062,Queens,Forest Hills,40.724540000000005,-73.84103,Private room,72,1,5,0.4,1,35 +29798,37818581,Manhattan,East Harlem,40.802279999999996,-73.93903,Shared room,30,1,30,1.72,4,0 +29799,104623425,Brooklyn,Williamsburg,40.705420000000004,-73.9411,Private room,60,3,1,0.06,1,0 +29800,34679426,Manhattan,Midtown,40.76482,-73.97965,Private room,300,1,2,0.13,1,0 +29801,2256583,Queens,Glendale,40.69507,-73.89599,Entire home/apt,195,5,1,0.08,1,0 +29802,107198157,Manhattan,Upper East Side,40.77978,-73.95153,Entire home/apt,119,3,0,,1,0 +29803,169340719,Manhattan,Upper East Side,40.77698,-73.95864,Entire home/apt,159,15,2,0.11,1,0 +29804,35510045,Brooklyn,Bushwick,40.705,-73.91933,Private room,27,14,0,,1,0 +29805,169795562,Brooklyn,Bushwick,40.69088,-73.90535,Private room,50,6,0,,1,0 +29806,36307813,Brooklyn,Park Slope,40.66669,-73.9807,Entire home/apt,150,14,0,,1,0 +29807,25339875,Brooklyn,Greenpoint,40.72017,-73.95352,Entire home/apt,140,6,0,,1,0 +29808,48146336,Manhattan,Hell's Kitchen,40.76274,-73.99320999999999,Entire home/apt,120,30,3,0.25,20,289 +29809,169721146,Brooklyn,Williamsburg,40.70856,-73.94281,Private room,65,2,74,4.3,1,28 +29810,2416281,Brooklyn,Bedford-Stuyvesant,40.68898,-73.95835,Entire home/apt,98,3,45,2.56,1,179 +29811,34635838,Staten Island,Bull's Head,40.603359999999995,-74.17118,Private room,39,1,29,1.81,2,0 +29812,6726656,Brooklyn,Bushwick,40.70285,-73.92563,Private room,50,6,3,0.28,3,13 +29813,4920221,Manhattan,Midtown,40.76551,-73.98315,Entire home/apt,189,29,3,0.27,1,358 +29814,51591390,Manhattan,Upper East Side,40.77251,-73.95113,Shared room,75,1,30,2.92,1,8 +29815,136636824,Brooklyn,Park Slope,40.67418,-73.97918,Entire home/apt,100,2,27,1.56,1,0 +29816,1466154,Brooklyn,Bedford-Stuyvesant,40.6964,-73.94696,Private room,36,28,1,0.06,1,297 +29817,1398639,Brooklyn,Bedford-Stuyvesant,40.6865,-73.93199,Private room,25,30,6,0.58,3,207 +29818,87782960,Manhattan,Chelsea,40.74286,-73.99847,Private room,84,4,14,0.82,1,13 +29819,169944714,Manhattan,Hell's Kitchen,40.76716,-73.98779,Entire home/apt,295,1,114,6.68,1,125 +29820,44695225,Queens,Queens Village,40.70843,-73.75018,Private room,38,7,0,,1,0 +29821,127545011,Brooklyn,East Flatbush,40.65222,-73.95016,Private room,35,1,5,0.42,1,0 +29822,170008285,Manhattan,Midtown,40.74779,-73.98734,Entire home/apt,220,3,36,2.11,1,331 +29823,36786792,Manhattan,Murray Hill,40.74658,-73.97782,Private room,70,2,3,0.17,1,0 +29824,17478161,Brooklyn,Bedford-Stuyvesant,40.688759999999995,-73.95265,Entire home/apt,150,3,43,2.86,1,10 +29825,4383475,Brooklyn,Williamsburg,40.70593,-73.92818,Entire home/apt,125,3,0,,1,0 +29826,66111674,Manhattan,East Village,40.72545,-73.98279000000001,Private room,75,1,15,0.88,1,0 +29827,98272,Brooklyn,Flatbush,40.652,-73.95805,Entire home/apt,110,3,32,1.9,1,0 +29828,39062378,Manhattan,Midtown,40.76372,-73.98355,Shared room,60,2,0,,1,0 +29829,25533198,Brooklyn,Williamsburg,40.71998,-73.96141,Private room,53,4,1,0.06,1,0 +29830,170075022,Manhattan,East Harlem,40.79846,-73.94239,Private room,89,1,63,3.74,1,12 +29831,27070336,Brooklyn,Bushwick,40.68588,-73.9144,Private room,75,2,0,,1,0 +29832,170095185,Brooklyn,Bushwick,40.70733,-73.92028,Private room,29,2,3,0.17,1,0 +29833,170092307,Brooklyn,Williamsburg,40.7141,-73.96194,Entire home/apt,128,5,56,3.32,1,18 +29834,6329693,Manhattan,East Harlem,40.80189,-73.94483000000001,Entire home/apt,130,3,3,0.21,1,128 +29835,80331757,Brooklyn,Sheepshead Bay,40.60407,-73.95302,Private room,50,2,13,1.38,1,71 +29836,163905917,Manhattan,Hell's Kitchen,40.75715,-73.99759,Private room,110,2,13,0.74,3,23 +29837,84562428,Queens,Forest Hills,40.73677,-73.84784,Private room,45,5,3,0.2,2,355 +29838,22748648,Brooklyn,Williamsburg,40.71246,-73.96133,Private room,90,5,1,0.06,1,0 +29839,52525871,Brooklyn,Clinton Hill,40.69375,-73.96696999999999,Entire home/apt,125,5,0,,1,0 +29840,52949531,Manhattan,East Village,40.721959999999996,-73.98103,Entire home/apt,170,3,0,,1,0 +29841,50949024,Brooklyn,Bushwick,40.70299,-73.92693,Private room,60,2,0,,1,0 +29842,24600315,Queens,Sunnyside,40.74355,-73.92557,Private room,89,1,0,,1,0 +29843,19074249,Brooklyn,Bedford-Stuyvesant,40.67839,-73.92532,Entire home/apt,150,2,59,3.55,1,231 +29844,99296570,Brooklyn,Brighton Beach,40.58012,-73.95896,Private room,35,1,77,4.67,5,187 +29845,52225868,Brooklyn,Crown Heights,40.66987,-73.93433,Private room,32,3,0,,1,0 +29846,170265686,Brooklyn,Crown Heights,40.66615,-73.95425999999999,Entire home/apt,69,3,85,5.0,1,193 +29847,110966607,Queens,Astoria,40.76097,-73.92191,Private room,47,3,24,1.44,1,0 +29848,158456362,Manhattan,Washington Heights,40.83755,-73.94224,Private room,50,1,3,0.19,1,0 +29849,161899037,Queens,Flushing,40.757940000000005,-73.83234,Entire home/apt,150,2,54,3.1,7,70 +29850,74873565,Manhattan,Two Bridges,40.7116,-73.99568000000001,Entire home/apt,175,2,8,0.46,1,0 +29851,9250609,Brooklyn,Greenpoint,40.72475,-73.94889,Private room,80,1,0,,1,0 +29852,46723570,Staten Island,South Beach,40.5895,-74.09663,Shared room,20,4,1,0.06,1,0 +29853,10268766,Brooklyn,Bedford-Stuyvesant,40.68156,-73.93722,Entire home/apt,140,4,19,1.32,1,76 +29854,42949529,Brooklyn,Sunset Park,40.65907,-73.99849,Private room,150,1,0,,1,90 +29855,169541552,Manhattan,Chelsea,40.741440000000004,-73.99984,Entire home/apt,299,2,0,,1,2 +29856,10826049,Brooklyn,Greenpoint,40.7195,-73.95255999999999,Private room,75,4,0,,1,0 +29857,22042097,Queens,Woodhaven,40.69665,-73.85114,Entire home/apt,50,4,1,0.06,1,0 +29858,29241227,Brooklyn,Kensington,40.645790000000005,-73.97383,Entire home/apt,57,3,94,5.4,2,69 +29859,170387293,Brooklyn,Crown Heights,40.6654,-73.93653,Private room,75,1,0,,1,0 +29860,170413197,Brooklyn,Flatbush,40.647859999999994,-73.96125,Entire home/apt,100,2,1,0.06,1,0 +29861,20754560,Manhattan,Murray Hill,40.750659999999996,-73.9804,Entire home/apt,190,1,5,0.29,1,0 +29862,170424392,Manhattan,Harlem,40.82101,-73.94065,Entire home/apt,130,4,3,0.18,1,0 +29863,1300215,Brooklyn,Bushwick,40.6996,-73.91492,Private room,65,3,12,0.89,1,0 +29864,143212135,Queens,St. Albans,40.704190000000004,-73.75116,Private room,25,3,60,3.61,1,350 +29865,71733378,Queens,Astoria,40.76475,-73.9289,Entire home/apt,175,1,21,1.2,1,85 +29866,4181378,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93559,Entire home/apt,450,2,27,1.79,2,364 +29867,170445076,Queens,Queens Village,40.72249,-73.75486,Entire home/apt,200,2,58,3.6,1,152 +29868,170446723,Queens,East Elmhurst,40.75735,-73.87845,Private room,55,2,11,0.71,2,179 +29869,7465567,Manhattan,Little Italy,40.71889,-73.99686,Entire home/apt,400,2,2,0.19,2,3 +29870,170457264,Brooklyn,Park Slope,40.67031,-73.98603,Entire home/apt,200,2,6,0.36,1,0 +29871,170458252,Queens,Ditmars Steinway,40.77799,-73.90807,Entire home/apt,140,1,67,4.14,1,145 +29872,154262349,Manhattan,Lower East Side,40.71884,-73.98354,Private room,160,4,23,2.29,1,102 +29873,39591103,Queens,Astoria,40.76853,-73.9172,Private room,100,1,13,0.91,1,172 +29874,13878635,Manhattan,Hell's Kitchen,40.76546,-73.99253,Private room,90,2,12,0.71,2,338 +29875,96317547,Manhattan,Murray Hill,40.74827,-73.97851,Private room,120,3,0,,1,0 +29876,170567335,Brooklyn,Fort Greene,40.690540000000006,-73.97892,Private room,95,2,5,0.74,1,0 +29877,170574337,Brooklyn,Williamsburg,40.71691,-73.96302,Entire home/apt,200,3,19,1.1,1,4 +29878,96810536,Brooklyn,Gowanus,40.66621,-73.99256,Private room,169,1,2,0.16,3,115 +29879,170603631,Queens,Douglaston,40.74807,-73.73674,Private room,65,2,29,1.68,1,240 +29880,29074867,Manhattan,Chelsea,40.74142,-74.0025,Entire home/apt,150,2,4,0.25,1,0 +29881,170608951,Brooklyn,Flatbush,40.653690000000005,-73.95565,Private room,65,3,22,1.4,1,89 +29882,129782365,Manhattan,East Village,40.72968,-73.98073000000001,Entire home/apt,350,2,0,,1,0 +29883,42677381,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,250,3,9,0.57,1,0 +29884,21186353,Manhattan,East Village,40.73123,-73.98655,Private room,90,14,0,,1,0 +29885,61849126,Manhattan,Upper East Side,40.77602,-73.95062,Entire home/apt,350,3,15,0.9,1,5 +29886,170629692,Brooklyn,Sunset Park,40.66182,-73.99387,Private room,65,1,0,,1,0 +29887,166204258,Brooklyn,Sheepshead Bay,40.6092,-73.9572,Private room,27,1,1,0.06,1,0 +29888,241559,Brooklyn,Crown Heights,40.676970000000004,-73.96316999999999,Entire home/apt,115,3,37,2.29,1,13 +29889,170657264,Brooklyn,Bushwick,40.702890000000004,-73.92594,Private room,74,3,37,2.27,1,46 +29890,51536620,Manhattan,Tribeca,40.71412,-74.00984,Private room,110,3,1,0.06,1,0 +29891,1339185,Manhattan,East Village,40.721959999999996,-73.98083000000001,Entire home/apt,148,4,20,1.39,1,121 +29892,14328715,Manhattan,East Village,40.72957,-73.98724,Entire home/apt,150,2,6,0.35,1,0 +29893,89391604,Queens,Ridgewood,40.70612,-73.90729,Private room,35,7,0,,1,0 +29894,99296570,Brooklyn,Brighton Beach,40.58198,-73.9577,Private room,35,1,67,3.83,5,186 +29895,78913808,Brooklyn,Crown Heights,40.67074,-73.94896,Entire home/apt,125,3,63,4.36,1,165 +29896,170724620,Manhattan,Harlem,40.820890000000006,-73.95018,Private room,65,1,50,3.69,1,1 +29897,45688186,Brooklyn,Bedford-Stuyvesant,40.68804,-73.93013,Entire home/apt,150,1,14,0.82,2,307 +29898,2317952,Manhattan,Gramercy,40.73573,-73.98755,Entire home/apt,150,30,5,0.3,1,53 +29899,1466422,Brooklyn,Crown Heights,40.67432,-73.9391,Entire home/apt,60,133,12,0.71,2,0 +29900,10836962,Bronx,Pelham Bay,40.85407,-73.83264,Entire home/apt,69,3,69,4.21,1,21 +29901,30704814,Manhattan,Inwood,40.86407,-73.92822,Entire home/apt,70,14,2,0.19,1,0 +29902,168988812,Queens,Ridgewood,40.70068,-73.91008000000001,Entire home/apt,118,6,2,0.13,1,0 +29903,8663057,Manhattan,East Harlem,40.80375,-73.93599,Entire home/apt,115,3,67,3.98,2,132 +29904,133227147,Brooklyn,Cypress Hills,40.6784,-73.8924,Private room,100,1,43,2.65,1,365 +29905,9388460,Queens,Elmhurst,40.74711,-73.88188000000001,Entire home/apt,125,3,56,3.76,1,107 +29906,170805641,Manhattan,East Village,40.72169,-73.98279000000001,Entire home/apt,399,4,43,2.55,1,161 +29907,74805133,Queens,Kew Gardens,40.707,-73.82684,Private room,70,1,0,,1,0 +29908,12417778,Manhattan,Upper East Side,40.77395,-73.95493,Entire home/apt,100,3,16,0.95,1,20 +29909,105758386,Brooklyn,Williamsburg,40.70581,-73.93454,Entire home/apt,100,2,2,0.12,1,0 +29910,108029974,Manhattan,Greenwich Village,40.728390000000005,-73.99436999999999,Entire home/apt,495,6,12,0.84,4,52 +29911,43495748,Manhattan,Harlem,40.81767,-73.93771,Entire home/apt,120,4,21,1.25,1,128 +29912,14097466,Brooklyn,Williamsburg,40.708490000000005,-73.94535,Private room,140,3,1,0.11,1,0 +29913,16928139,Queens,Sunnyside,40.74208,-73.92414000000001,Private room,50,2,51,3.17,1,36 +29914,170857849,Bronx,Pelham Bay,40.849340000000005,-73.83345,Entire home/apt,119,3,28,1.68,1,351 +29915,162432541,Brooklyn,Williamsburg,40.7117,-73.9624,Entire home/apt,200,3,40,2.3,2,279 +29916,56283770,Manhattan,Upper East Side,40.76327,-73.96766,Entire home/apt,145,30,1,1.0,6,122 +29917,101602599,Queens,Woodside,40.7434,-73.90588000000001,Entire home/apt,50,1,95,5.63,2,0 +29918,168465501,Manhattan,Upper West Side,40.7841,-73.97468,Entire home/apt,125,30,5,0.34,4,220 +29919,170935045,Manhattan,Upper West Side,40.78904,-73.97171999999999,Entire home/apt,117,5,1,0.06,1,0 +29920,113805886,Manhattan,Upper East Side,40.77847,-73.95161999999999,Entire home/apt,350,31,1,0.18,33,327 +29921,13126043,Manhattan,Midtown,40.74422,-73.98473,Private room,145,2,29,1.67,2,74 +29922,37222237,Brooklyn,Williamsburg,40.70649,-73.94317,Private room,35,6,0,,1,0 +29923,4100176,Manhattan,Morningside Heights,40.80557,-73.96441,Entire home/apt,125,5,1,0.06,1,0 +29924,113805886,Manhattan,Upper East Side,40.77742,-73.95149,Entire home/apt,300,31,1,0.16,33,248 +29925,25001097,Brooklyn,Bedford-Stuyvesant,40.68209,-73.92015,Entire home/apt,50,5,9,0.52,1,0 +29926,113805886,Manhattan,Upper East Side,40.77748,-73.9514,Entire home/apt,135,31,1,0.07,33,338 +29927,113805886,Manhattan,Upper East Side,40.77915,-73.95040999999999,Entire home/apt,225,31,0,,33,326 +29928,7381386,Bronx,Pelham Gardens,40.85929,-73.84229,Entire home/apt,60,3,41,2.44,1,23 +29929,113805886,Manhattan,Upper East Side,40.77721,-73.94997,Entire home/apt,300,31,5,0.31,33,326 +29930,113805886,Manhattan,Upper East Side,40.777120000000004,-73.95176,Entire home/apt,250,31,0,,33,345 +29931,113805886,Manhattan,Upper East Side,40.77717,-73.95130999999999,Entire home/apt,300,31,8,0.49,33,342 +29932,22246427,Brooklyn,Bedford-Stuyvesant,40.68799,-73.95201999999999,Entire home/apt,110,2,58,3.39,1,62 +29933,40811074,Manhattan,Hell's Kitchen,40.76208,-73.99932,Entire home/apt,525,3,0,,1,0 +29934,171001581,Brooklyn,Williamsburg,40.71181,-73.96383,Entire home/apt,104,1,27,1.67,1,84 +29935,105640471,Brooklyn,Sunset Park,40.638000000000005,-74.01619000000001,Private room,39,1,14,1.0,8,127 +29936,157977326,Queens,Maspeth,40.71415,-73.91426,Private room,45,1,55,3.26,2,27 +29937,24796602,Brooklyn,Crown Heights,40.67191,-73.92669000000001,Entire home/apt,178,2,19,1.13,4,257 +29938,87399457,Brooklyn,Crown Heights,40.66896,-73.95347,Entire home/apt,220,4,4,0.24,1,0 +29939,9864136,Brooklyn,Bushwick,40.685790000000004,-73.91416,Private room,45,1,0,,26,249 +29940,9864136,Brooklyn,Bushwick,40.68651,-73.91384000000001,Private room,55,1,4,0.23,26,179 +29941,7051379,Brooklyn,Downtown Brooklyn,40.69727,-73.98552,Entire home/apt,97,31,8,0.59,2,138 +29942,158540605,Queens,Glendale,40.699459999999995,-73.89079,Private room,35,1,89,5.31,6,256 +29943,171107511,Queens,East Elmhurst,40.76393,-73.86444,Private room,80,2,1,0.11,1,219 +29944,1655982,Brooklyn,Greenpoint,40.729040000000005,-73.95433,Entire home/apt,180,45,0,,1,326 +29945,16963843,Brooklyn,Bushwick,40.69842,-73.92378000000001,Private room,50,5,14,0.88,2,0 +29946,170294800,Queens,Long Island City,40.75305,-73.93486999999999,Private room,68,1,23,1.33,1,298 +29947,7216788,Brooklyn,Williamsburg,40.71563,-73.9398,Entire home/apt,140,2,18,1.07,1,36 +29948,169704873,Manhattan,Morningside Heights,40.81064,-73.95734,Private room,150,14,6,0.41,1,0 +29949,80651652,Queens,Sunnyside,40.7437,-73.91983,Entire home/apt,100,3,0,,1,0 +29950,171154086,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95989,Private room,42,1,0,,1,0 +29951,4445657,Brooklyn,Williamsburg,40.71218,-73.96710999999999,Entire home/apt,75,7,2,0.13,1,0 +29952,6966161,Staten Island,St. George,40.64399,-74.08525999999999,Entire home/apt,77,7,0,,1,0 +29953,12502207,Brooklyn,Vinegar Hill,40.70312,-73.98416,Entire home/apt,130,30,3,0.24,1,339 +29954,19930911,Brooklyn,Crown Heights,40.67218,-73.94086999999999,Entire home/apt,93,1,77,4.49,1,55 +29955,12554853,Manhattan,Upper West Side,40.79653,-73.96887,Entire home/apt,75,1,32,1.87,1,0 +29956,49831860,Brooklyn,Canarsie,40.641290000000005,-73.91315999999999,Entire home/apt,130,3,141,8.21,2,114 +29957,31315978,Brooklyn,Brownsville,40.67087,-73.91293,Entire home/apt,65,2,23,2.88,1,20 +29958,8108429,Manhattan,East Village,40.72998,-73.9839,Entire home/apt,99,2,15,0.89,1,0 +29959,179246,Brooklyn,Bedford-Stuyvesant,40.67958,-73.90858,Entire home/apt,119,3,54,3.58,2,240 +29960,9937471,Manhattan,Harlem,40.816179999999996,-73.94355,Private room,55,2,11,1.15,1,0 +29961,22375303,Brooklyn,Bedford-Stuyvesant,40.67966,-73.93045,Private room,65,1,70,4.9,2,291 +29962,19849721,Brooklyn,Bushwick,40.701240000000006,-73.91988,Entire home/apt,250,1,0,,1,0 +29963,60373268,Brooklyn,Bedford-Stuyvesant,40.6849,-73.91811,Entire home/apt,140,3,30,1.88,1,122 +29964,92192182,Manhattan,Washington Heights,40.84697,-73.93776,Shared room,29,1,13,0.75,2,0 +29965,93263,Brooklyn,Williamsburg,40.71043,-73.95575,Private room,94,2,52,3.26,1,126 +29966,92192182,Manhattan,Washington Heights,40.84861,-73.93715999999999,Entire home/apt,72,2,11,0.64,2,0 +29967,65171233,Queens,Elmhurst,40.74252,-73.8899,Private room,31,3,21,1.27,2,111 +29968,76428733,Manhattan,Morningside Heights,40.8045,-73.96383,Entire home/apt,150,6,1,0.06,1,0 +29969,87830046,Brooklyn,Williamsburg,40.712759999999996,-73.95897,Entire home/apt,250,3,41,2.94,1,235 +29970,94214493,Brooklyn,East Flatbush,40.65625,-73.91901,Private room,80,7,2,0.13,9,58 +29971,94214493,Brooklyn,East Flatbush,40.65501,-73.91886,Private room,80,5,2,0.14,9,89 +29972,2786998,Manhattan,East Village,40.726290000000006,-73.98416999999999,Entire home/apt,150,2,20,1.19,1,2 +29973,131476068,Queens,Richmond Hill,40.68728,-73.82875,Private room,75,2,1,0.06,2,48 +29974,64206316,Queens,Flushing,40.766490000000005,-73.82991,Private room,49,7,28,1.68,1,0 +29975,171339086,Manhattan,Upper West Side,40.800259999999994,-73.96425,Private room,85,2,25,1.48,1,0 +29976,158625100,Queens,Richmond Hill,40.6873,-73.82737,Private room,83,1,9,0.55,2,48 +29977,2616981,Manhattan,Upper East Side,40.76354,-73.96189,Entire home/apt,135,4,3,0.19,1,60 +29978,171352111,Manhattan,West Village,40.73718,-73.99851,Entire home/apt,100,1,1,0.06,1,0 +29979,43352661,Manhattan,Washington Heights,40.84502,-73.94078,Shared room,25,1,51,2.99,3,365 +29980,86771798,Manhattan,Murray Hill,40.7457,-73.97672,Entire home/apt,329,4,12,0.91,2,59 +29981,161846641,Manhattan,Harlem,40.83051,-73.94537,Private room,48,1,13,0.77,1,0 +29982,67375976,Manhattan,Midtown,40.75544,-73.96901,Entire home/apt,180,4,0,,1,0 +29983,24796602,Brooklyn,Crown Heights,40.6718,-73.92678000000001,Private room,55,2,34,1.99,4,341 +29984,86771798,Manhattan,Murray Hill,40.74742,-73.9766,Entire home/apt,365,5,14,0.86,2,50 +29985,5788047,Manhattan,Lower East Side,40.71269,-73.98713000000001,Entire home/apt,150,2,10,0.58,1,6 +29986,47104818,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9331,Private room,99,3,16,1.24,3,360 +29987,47104818,Brooklyn,Bedford-Stuyvesant,40.68975,-73.93327,Private room,109,3,19,1.37,3,360 +29988,46660053,Brooklyn,Williamsburg,40.71371,-73.95189,Private room,40,4,5,0.38,3,61 +29989,12872352,Manhattan,Midtown,40.75881,-73.96295,Entire home/apt,325,1,0,,3,267 +29990,171483814,Brooklyn,Flatbush,40.65331,-73.96271,Private room,58,2,2,0.12,1,0 +29991,171488589,Queens,Long Island City,40.74281,-73.95044,Private room,76,1,13,0.86,1,0 +29992,116365995,Queens,Woodside,40.746520000000004,-73.90738,Entire home/apt,289,4,10,0.91,2,271 +29993,5117805,Queens,Woodside,40.74279,-73.90419,Entire home/apt,65,2,14,0.84,1,0 +29994,66230837,Manhattan,West Village,40.731429999999996,-74.00338,Entire home/apt,850,3,27,1.57,1,344 +29995,49258234,Manhattan,Midtown,40.7654,-73.98039,Entire home/apt,160,2,3,0.17,1,0 +29996,104425922,Manhattan,Upper East Side,40.7773,-73.95652,Entire home/apt,225,2,12,0.71,1,363 +29997,142144113,Brooklyn,Flatbush,40.65175,-73.96408000000001,Entire home/apt,90,30,4,0.24,1,342 +29998,2213846,Brooklyn,Bushwick,40.70114,-73.91705,Private room,70,2,29,1.71,1,16 +29999,171522181,Brooklyn,Bedford-Stuyvesant,40.69552,-73.94835,Private room,45,7,11,0.64,1,0 +30000,7269534,Manhattan,East Village,40.72939,-73.98553000000001,Entire home/apt,100,4,5,0.3,1,0 +30001,490608,Manhattan,Morningside Heights,40.80878,-73.95777,Entire home/apt,90,10,5,0.31,1,0 +30002,142447586,Bronx,Williamsbridge,40.879059999999996,-73.85987,Private room,35,3,0,,4,0 +30003,142447586,Bronx,Williamsbridge,40.88049,-73.8613,Private room,41,3,1,0.06,4,0 +30004,6309691,Brooklyn,Greenpoint,40.73384,-73.95782,Entire home/apt,149,4,2,0.16,2,0 +30005,142447586,Bronx,Williamsbridge,40.8805,-73.86178000000001,Private room,45,1,1,0.06,4,0 +30006,171629811,Manhattan,East Harlem,40.79661,-73.93831999999999,Private room,40,5,3,0.18,1,0 +30007,21784559,Queens,Woodhaven,40.69017,-73.86683000000001,Entire home/apt,90,4,64,3.71,1,106 +30008,82889379,Bronx,Woodlawn,40.8987,-73.86389,Private room,29,1,81,4.93,4,192 +30009,156948703,Queens,East Elmhurst,40.77074,-73.87342,Entire home/apt,257,1,95,6.51,6,341 +30010,9318816,Manhattan,NoHo,40.72651,-73.99195999999999,Entire home/apt,295,2,15,0.94,1,51 +30011,32718658,Manhattan,East Harlem,40.80017,-73.93812,Private room,70,1,0,,1,0 +30012,55468128,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95541,Private room,70,1,53,3.29,7,264 +30013,171660157,Manhattan,Harlem,40.82748,-73.95083000000001,Private room,65,4,10,0.6,1,2 +30014,55468128,Brooklyn,Bedford-Stuyvesant,40.6896,-73.95653,Private room,62,1,27,1.69,7,248 +30015,171668854,Queens,Ridgewood,40.711909999999996,-73.90630999999999,Entire home/apt,60,4,2,0.19,1,0 +30016,72491205,Manhattan,Upper West Side,40.80022,-73.96301,Private room,95,2,0,,1,0 +30017,171678641,Manhattan,West Village,40.737159999999996,-73.99764,Entire home/apt,225,7,10,0.78,1,279 +30018,146172048,Queens,Woodside,40.75524,-73.90701,Private room,49,4,5,0.36,1,87 +30019,7460552,Brooklyn,Williamsburg,40.71147,-73.96,Entire home/apt,325,2,7,0.61,1,96 +30020,47023469,Manhattan,Upper West Side,40.79728,-73.97348000000001,Private room,100,1,28,1.66,3,270 +30021,86575539,Manhattan,Washington Heights,40.84693,-73.94205,Entire home/apt,67,15,1,0.06,1,1 +30022,1577803,Brooklyn,Clinton Hill,40.6897,-73.96535,Private room,90,2,19,1.23,1,149 +30023,130972997,Brooklyn,Crown Heights,40.67544,-73.94023,Private room,45,2,21,1.35,2,339 +30024,108029974,Manhattan,NoHo,40.72943,-73.99277,Entire home/apt,495,4,7,0.46,4,63 +30025,30672354,Manhattan,Flatiron District,40.74107,-73.988,Private room,112,4,14,0.9,2,1 +30026,30486909,Manhattan,Chinatown,40.71608,-73.99081,Entire home/apt,160,4,32,1.96,1,0 +30027,121379512,Bronx,Longwood,40.8273,-73.88906,Private room,37,1,7,0.41,2,0 +30028,8959179,Brooklyn,Gowanus,40.6786,-73.98705,Entire home/apt,104,4,10,0.73,1,98 +30029,3324577,Manhattan,Midtown,40.7592,-73.97017,Private room,95,2,56,3.33,1,54 +30030,133602911,Bronx,Mount Hope,40.84882,-73.90263,Private room,80,3,20,1.18,2,36 +30031,4757826,Manhattan,East Harlem,40.79037,-73.9458,Entire home/apt,115,2,3,0.22,1,1 +30032,79305630,Brooklyn,Gravesend,40.59868,-73.99202,Entire home/apt,148,4,26,1.68,2,92 +30033,10918472,Brooklyn,Prospect Heights,40.6752,-73.96385,Entire home/apt,75,2,6,0.37,1,0 +30034,101067646,Brooklyn,Clinton Hill,40.68206,-73.95998,Entire home/apt,173,2,3,0.26,1,0 +30035,171830071,Bronx,Fordham,40.85662,-73.89797,Private room,65,2,5,0.3,1,0 +30036,171854639,Queens,Ditmars Steinway,40.77418,-73.91889,Entire home/apt,75,3,13,0.78,1,1 +30037,1975628,Brooklyn,Fort Greene,40.69126,-73.97185999999999,Entire home/apt,250,2,0,,1,0 +30038,12873109,Manhattan,Midtown,40.75287,-73.99065999999999,Entire home/apt,160,2,0,,1,0 +30039,171858908,Manhattan,Greenwich Village,40.728359999999995,-73.99961,Entire home/apt,300,2,13,0.77,2,0 +30040,5849048,Manhattan,SoHo,40.72605,-74.00072,Entire home/apt,169,1,1,0.18,1,180 +30041,22313730,Brooklyn,Bushwick,40.70425,-73.92624,Private room,60,4,10,0.58,1,88 +30042,140293912,Brooklyn,Kensington,40.64593,-73.97745,Entire home/apt,84,3,38,2.36,3,0 +30043,5669820,Manhattan,Upper East Side,40.77029,-73.95526,Entire home/apt,115,4,26,1.66,1,16 +30044,161349813,Queens,Woodhaven,40.69113,-73.86778000000001,Entire home/apt,106,4,57,3.73,2,113 +30045,171888683,Brooklyn,Park Slope,40.672259999999994,-73.97251,Entire home/apt,100,10,11,0.67,1,0 +30046,11696537,Queens,Astoria,40.7675,-73.90911,Private room,100,1,3,0.41,1,0 +30047,127586030,Brooklyn,Prospect-Lefferts Gardens,40.66322,-73.95142,Private room,50,2,58,3.44,1,52 +30048,137292249,Brooklyn,Flatbush,40.640859999999996,-73.9547,Entire home/apt,55,4,8,0.53,1,0 +30049,45735959,Queens,St. Albans,40.70828,-73.75276,Entire home/apt,120,3,59,3.49,1,52 +30050,109719378,Brooklyn,Sunset Park,40.66186,-73.99505,Entire home/apt,120,1,59,3.69,1,22 +30051,15901859,Manhattan,Chelsea,40.74216,-73.99673,Entire home/apt,127,5,30,2.0,1,32 +30052,99683151,Manhattan,Kips Bay,40.73799,-73.97821,Entire home/apt,160,3,36,2.14,3,266 +30053,171939378,Manhattan,Hell's Kitchen,40.75584,-73.99559,Entire home/apt,200,3,2,0.14,2,0 +30054,4316650,Brooklyn,Williamsburg,40.71662,-73.94514000000001,Entire home/apt,117,2,14,0.82,1,0 +30055,11305944,Bronx,Allerton,40.86578,-73.86534,Entire home/apt,250,2,22,1.44,5,361 +30056,818585,Brooklyn,Flatbush,40.647259999999996,-73.95936999999999,Entire home/apt,76,14,1,0.06,1,41 +30057,6501039,Manhattan,Washington Heights,40.83416,-73.94375,Private room,30,5,2,0.14,1,0 +30058,94263025,Brooklyn,Bushwick,40.68822,-73.9124,Private room,40,1,10,0.58,2,0 +30059,7990635,Manhattan,Upper West Side,40.79298,-73.97249000000001,Private room,92,1,0,,1,0 +30060,11951436,Brooklyn,Williamsburg,40.71264,-73.96461,Entire home/apt,175,5,0,,1,0 +30061,12233355,Brooklyn,Greenpoint,40.72421,-73.94074,Entire home/apt,200,1,0,,2,0 +30062,7875272,Staten Island,Port Richmond,40.63012,-74.13512,Entire home/apt,50,31,0,,3,0 +30063,171939378,Manhattan,Hell's Kitchen,40.75546,-73.99582,Entire home/apt,180,3,31,1.98,2,4 +30064,172067924,Brooklyn,Midwood,40.61182,-73.95436,Entire home/apt,100,3,0,,1,0 +30065,5640467,Manhattan,Upper East Side,40.77579,-73.95628,Entire home/apt,117,5,1,0.08,1,0 +30066,3202437,Manhattan,Lower East Side,40.7216,-73.98959,Entire home/apt,130,10,4,0.38,1,35 +30067,172130647,Queens,Jackson Heights,40.74879,-73.88342,Private room,59,1,24,1.43,1,5 +30068,4023251,Brooklyn,Gowanus,40.68293,-73.98849,Entire home/apt,94,3,5,0.3,1,0 +30069,172145021,Queens,Woodhaven,40.695640000000004,-73.85051999999999,Entire home/apt,63,3,0,,1,0 +30070,71840935,Brooklyn,Williamsburg,40.705690000000004,-73.95300999999999,Private room,55,2,5,0.3,1,0 +30071,6577580,Queens,Forest Hills,40.7255,-73.84755,Entire home/apt,69,2,1,0.06,1,0 +30072,172189639,Queens,East Elmhurst,40.76444,-73.86907,Private room,80,1,73,4.57,2,30 +30073,172186369,Bronx,Morris Heights,40.84718,-73.91378,Shared room,20,1,9,0.53,1,0 +30074,842091,Brooklyn,Bushwick,40.69874,-73.92496,Private room,40,3,51,3.0,2,51 +30075,162153626,Manhattan,Upper East Side,40.77394,-73.95251999999999,Entire home/apt,127,1,1,0.08,1,0 +30076,625092,Manhattan,Chelsea,40.75115,-73.99786999999999,Private room,63,7,4,0.39,1,31 +30077,21485411,Brooklyn,Bedford-Stuyvesant,40.687059999999995,-73.95636999999999,Private room,95,1,22,1.33,1,36 +30078,7411846,Manhattan,Upper West Side,40.80115,-73.96282,Private room,75,1,1,0.06,1,88 +30079,172240638,Queens,Flushing,40.7681,-73.82265,Private room,50,2,1,0.06,1,0 +30080,51260506,Queens,Long Island City,40.747859999999996,-73.94628,Shared room,1250,1,1,0.06,1,173 +30081,86527607,Manhattan,Kips Bay,40.74405,-73.97596,Private room,80,1,0,,1,0 +30082,40317143,Queens,Maspeth,40.71937,-73.90442,Private room,40,1,2,0.13,2,169 +30083,21689645,Manhattan,Murray Hill,40.74668,-73.97309,Entire home/apt,145,10,2,0.13,1,0 +30084,10457196,Manhattan,Little Italy,40.71967,-73.99583,Entire home/apt,135,31,5,0.37,11,122 +30085,117108525,Queens,Sunnyside,40.74759,-73.91445999999999,Private room,44,1,78,4.62,2,116 +30086,56276728,Brooklyn,Flatbush,40.6455,-73.95975,Private room,70,14,5,0.3,1,0 +30087,169851445,Brooklyn,Flatbush,40.654,-73.96209,Private room,47,1,0,,1,0 +30088,40511631,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93753000000001,Private room,42,2,89,5.54,2,4 +30089,170263842,Manhattan,Lower East Side,40.71172,-73.98864,Shared room,33,100,2,0.18,4,320 +30090,172366460,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95883,Private room,70,1,18,1.07,1,362 +30091,7807118,Brooklyn,Gowanus,40.6844,-73.98669,Entire home/apt,350,3,0,,1,0 +30092,155618754,Manhattan,Washington Heights,40.84857,-73.94193,Private room,85,3,0,,1,0 +30093,132883674,Manhattan,Washington Heights,40.847770000000004,-73.94178000000001,Private room,90,1,0,,3,0 +30094,132883674,Manhattan,Washington Heights,40.84643,-73.94187,Private room,120,1,0,,3,0 +30095,38672377,Manhattan,Harlem,40.82015,-73.95747,Entire home/apt,100,6,5,0.31,1,0 +30096,13900556,Manhattan,Upper East Side,40.772259999999996,-73.95631,Entire home/apt,145,5,5,0.3,1,0 +30097,4249379,Brooklyn,Bedford-Stuyvesant,40.68261,-73.95187,Private room,75,2,17,1.07,1,115 +30098,5162192,Manhattan,Upper West Side,40.79788,-73.96235,Entire home/apt,250,30,2,0.19,12,310 +30099,172506981,Manhattan,Midtown,40.74827,-73.98828,Entire home/apt,150,3,27,1.79,1,320 +30100,3792602,Manhattan,Harlem,40.8298,-73.93984,Private room,65,2,25,1.5,1,30 +30101,23859317,Manhattan,Greenwich Village,40.730909999999994,-74.00001999999999,Entire home/apt,159,1,77,5.3,1,50 +30102,143460,Brooklyn,Bushwick,40.69839,-73.92044,Private room,65,2,8,0.52,2,8 +30103,172544686,Manhattan,Upper West Side,40.77722,-73.97834,Private room,159,1,0,,4,269 +30104,594634,Brooklyn,Clinton Hill,40.68651,-73.96604,Entire home/apt,200,5,1,1.0,1,0 +30105,47070613,Queens,Ridgewood,40.70663,-73.89709,Private room,60,1,44,2.57,1,84 +30106,172640229,Queens,Woodside,40.74301,-73.8954,Private room,46,1,2,0.16,1,96 +30107,154895874,Manhattan,Upper West Side,40.79408,-73.97391999999999,Entire home/apt,150,5,0,,1,13 +30108,13133943,Brooklyn,Prospect Heights,40.676159999999996,-73.96466,Entire home/apt,69,3,7,0.41,1,0 +30109,8260418,Brooklyn,Crown Heights,40.67671,-73.94938,Private room,26,2,0,,1,0 +30110,9804931,Brooklyn,Greenpoint,40.72742,-73.95066,Entire home/apt,190,2,5,0.32,2,5 +30111,2589436,Brooklyn,Williamsburg,40.716190000000005,-73.95640999999999,Private room,50,14,0,,2,0 +30112,4521174,Brooklyn,Crown Heights,40.67184,-73.94041,Private room,65,7,0,,3,59 +30113,9804931,Brooklyn,Greenpoint,40.72672,-73.9517,Private room,80,2,0,,2,0 +30114,5350903,Brooklyn,Greenpoint,40.72612,-73.95691,Entire home/apt,125,2,48,3.0,1,48 +30115,59966705,Staten Island,Arrochar,40.59078,-74.07504,Entire home/apt,71,2,30,1.8,1,306 +30116,172713193,Brooklyn,Williamsburg,40.707570000000004,-73.95387,Entire home/apt,150,4,82,4.86,1,331 +30117,172736191,Queens,Briarwood,40.7149,-73.80915999999999,Entire home/apt,80,5,51,3.23,1,57 +30118,41398005,Brooklyn,Sunset Park,40.642790000000005,-74.00515,Entire home/apt,70,30,10,0.62,3,183 +30119,33438428,Manhattan,East Harlem,40.80086,-73.93979,Entire home/apt,80,5,15,0.93,1,46 +30120,30940393,Brooklyn,Bushwick,40.689009999999996,-73.90768,Private room,43,2,39,2.31,2,0 +30121,100829279,Manhattan,Midtown,40.76163,-73.97113,Entire home/apt,210,1,108,6.4,3,216 +30122,7760617,Brooklyn,Downtown Brooklyn,40.694720000000004,-73.98337,Entire home/apt,133,3,2,0.15,1,0 +30123,131806850,Brooklyn,Kensington,40.641090000000005,-73.97503,Private room,50,1,1,0.06,1,0 +30124,84529,Queens,Elmhurst,40.74524,-73.8876,Entire home/apt,100,60,2,0.17,1,132 +30125,127740507,Manhattan,Harlem,40.831179999999996,-73.94325,Private room,47,2,83,4.97,2,48 +30126,14320524,Manhattan,Upper East Side,40.77603,-73.95573,Private room,99,3,35,2.22,1,162 +30127,172885803,Brooklyn,Bedford-Stuyvesant,40.68807,-73.93634,Entire home/apt,150,4,42,2.69,1,244 +30128,56793,Brooklyn,East Flatbush,40.64745,-73.94413,Private room,50,6,0,,1,100 +30129,20725025,Manhattan,Upper East Side,40.775059999999996,-73.95335,Shared room,80,1,1,0.06,1,170 +30130,32927725,Brooklyn,Brooklyn Heights,40.69109,-73.99654,Entire home/apt,200,1,0,,1,0 +30131,172911004,Bronx,Concourse Village,40.83168,-73.91977,Private room,47,5,33,1.96,1,176 +30132,1752807,Brooklyn,Bedford-Stuyvesant,40.693059999999996,-73.94475,Private room,44,3,9,0.54,2,0 +30133,81066021,Brooklyn,Bedford-Stuyvesant,40.6893,-73.94573000000001,Private room,67,3,16,1.11,2,307 +30134,110965771,Queens,Flushing,40.773540000000004,-73.82370999999999,Private room,60,2,25,1.54,7,14 +30135,127427486,Brooklyn,Bedford-Stuyvesant,40.6943,-73.93935,Private room,50,1,33,2.29,1,0 +30136,499896,Staten Island,Tompkinsville,40.63462,-74.08136,Entire home/apt,245,2,37,2.28,1,216 +30137,29098546,Brooklyn,Bedford-Stuyvesant,40.680820000000004,-73.92161999999999,Private room,29,1,65,3.88,1,5 +30138,83141620,Brooklyn,Sunset Park,40.65511,-74.001,Entire home/apt,180,7,1,0.09,1,0 +30139,109061785,Manhattan,East Village,40.72923,-73.98196999999999,Entire home/apt,189,1,40,2.37,1,73 +30140,4672257,Brooklyn,Bushwick,40.704679999999996,-73.92481,Private room,41,1,82,5.0,1,30 +30141,173047765,Queens,Ditmars Steinway,40.77202,-73.91292,Private room,60,2,26,2.49,1,112 +30142,9837019,Brooklyn,Williamsburg,40.71399,-73.95363,Entire home/apt,120,2,45,2.79,1,19 +30143,4220920,Manhattan,West Village,40.739000000000004,-74.00115,Entire home/apt,123,2,6,0.38,1,34 +30144,100238132,Manhattan,Midtown,40.75377,-73.97223000000001,Entire home/apt,339,3,40,2.63,12,0 +30145,2536555,Brooklyn,Red Hook,40.679140000000004,-74.0063,Entire home/apt,125,3,1,0.16,1,0 +30146,9484908,Queens,Ridgewood,40.70991,-73.91832,Private room,30,3,13,0.84,2,65 +30147,170942459,Bronx,Concourse,40.8315,-73.92047,Private room,54,1,16,0.99,1,69 +30148,4391681,Brooklyn,Crown Heights,40.672940000000004,-73.95943,Entire home/apt,75,3,9,0.54,1,280 +30149,49015786,Manhattan,Chinatown,40.71483,-73.99287,Entire home/apt,92,7,9,0.53,1,4 +30150,19631496,Brooklyn,Williamsburg,40.70794,-73.94532,Entire home/apt,130,5,61,3.84,2,185 +30151,123578077,Brooklyn,Prospect Heights,40.68215,-73.97372,Private room,55,2,2,0.13,1,0 +30152,63943922,Brooklyn,Bushwick,40.68705,-73.91425,Private room,35,3,4,0.24,1,0 +30153,3732261,Brooklyn,Prospect-Lefferts Gardens,40.66179,-73.95879000000001,Entire home/apt,75,4,2,0.12,1,0 +30154,72196680,Manhattan,Civic Center,40.71335,-74.00686999999999,Private room,50,3,0,,1,0 +30155,22412963,Manhattan,Chelsea,40.744820000000004,-73.99882,Entire home/apt,180,1,72,4.67,3,223 +30156,15194406,Brooklyn,Sunset Park,40.657740000000004,-73.99927,Entire home/apt,89,1,113,6.7,1,13 +30157,60281397,Manhattan,Upper West Side,40.79701,-73.96933,Private room,93,1,27,1.69,3,190 +30158,107434423,Manhattan,Murray Hill,40.749,-73.97961,Entire home/apt,289,30,0,,232,223 +30159,5962328,Queens,Flushing,40.76105,-73.82316999999999,Entire home/apt,85,30,4,0.31,15,232 +30160,145252418,Manhattan,East Harlem,40.805409999999995,-73.93658,Private room,80,1,54,3.74,3,180 +30161,149047,Brooklyn,Bedford-Stuyvesant,40.69158,-73.95958,Entire home/apt,150,4,6,0.63,1,11 +30162,5516133,Brooklyn,Greenpoint,40.72291,-73.94781,Private room,100,1,7,0.46,1,0 +30163,39528519,Manhattan,Lower East Side,40.70987,-73.98689,Shared room,35,14,0,,28,322 +30164,122726779,Brooklyn,Williamsburg,40.71097,-73.9533,Entire home/apt,175,2,92,5.47,1,96 +30165,47151333,Brooklyn,Brooklyn Heights,40.69061,-73.99264000000001,Entire home/apt,113,3,4,0.25,2,0 +30166,116976293,Manhattan,Little Italy,40.71913,-73.99835,Private room,69,2,45,2.75,2,0 +30167,173249074,Brooklyn,Bath Beach,40.60434,-74.0169,Private room,50,4,36,2.19,2,316 +30168,123736313,Manhattan,East Harlem,40.78785,-73.94249,Entire home/apt,105,4,8,0.5,1,0 +30169,157977326,Queens,Maspeth,40.71395,-73.91373,Private room,55,1,72,4.27,2,29 +30170,756577,Brooklyn,Greenpoint,40.71859,-73.95284000000001,Entire home/apt,100,90,0,,1,0 +30171,113905011,Queens,Rego Park,40.73082,-73.86796,Entire home/apt,109,2,68,4.02,1,54 +30172,128579948,Manhattan,Upper East Side,40.766459999999995,-73.9676,Entire home/apt,500,3,56,3.57,2,163 +30173,75633225,Brooklyn,Sunset Park,40.64555,-74.00995,Private room,150,2,0,,1,363 +30174,7138847,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94191,Entire home/apt,125,2,3,0.19,3,0 +30175,136455880,Bronx,Fordham,40.86918,-73.8905,Private room,34,1,2,0.12,2,5 +30176,10713617,Brooklyn,South Slope,40.664590000000004,-73.98553000000001,Entire home/apt,260,2,6,0.4,1,1 +30177,173362161,Brooklyn,Flatbush,40.64397,-73.96907,Private room,68,2,64,3.89,6,177 +30178,40381718,Manhattan,Midtown,40.76422,-73.98188,Private room,250,1,0,,1,0 +30179,173373234,Brooklyn,Bensonhurst,40.60859,-73.99331,Entire home/apt,200,30,19,1.17,2,179 +30180,173379189,Manhattan,Harlem,40.82521,-73.94159,Entire home/apt,200,2,2,0.13,1,0 +30181,29219991,Brooklyn,Williamsburg,40.71703,-73.96509,Entire home/apt,125,31,11,1.29,2,190 +30182,76536839,Queens,Jackson Heights,40.75159,-73.89437,Entire home/apt,199,2,39,2.48,2,0 +30183,1539109,Brooklyn,Williamsburg,40.71225,-73.95756999999999,Private room,68,28,5,0.53,1,258 +30184,32226468,Brooklyn,Williamsburg,40.705290000000005,-73.93883000000001,Entire home/apt,37,4,2,0.13,1,0 +30185,75982141,Brooklyn,Bushwick,40.690290000000005,-73.92277,Entire home/apt,60,3,8,0.49,1,0 +30186,173406651,Manhattan,Lower East Side,40.7196,-73.98133,Entire home/apt,300,3,30,1.77,2,182 +30187,173416551,Brooklyn,Bushwick,40.6858,-73.90734,Entire home/apt,87,2,70,4.25,1,54 +30188,53179388,Manhattan,Midtown,40.76126,-73.97628,Entire home/apt,500,180,0,,10,363 +30189,3402155,Brooklyn,Williamsburg,40.7186,-73.95997,Entire home/apt,160,2,9,0.56,1,157 +30190,6239596,Manhattan,Washington Heights,40.84664,-73.93977,Entire home/apt,145,2,3,0.2,1,0 +30191,173485654,Staten Island,Mariners Harbor,40.63179,-74.16122,Private room,40,5,1,0.07,1,87 +30192,173249074,Brooklyn,Bath Beach,40.604440000000004,-74.01725,Private room,50,4,24,1.69,2,311 +30193,122374980,Manhattan,Upper West Side,40.78648,-73.97923,Shared room,60,1,34,2.01,4,363 +30194,40733012,Brooklyn,Bedford-Stuyvesant,40.68231,-73.91252,Private room,40,7,0,,1,365 +30195,18554986,Queens,Woodside,40.74371,-73.90876999999999,Private room,70,1,2,0.15,1,0 +30196,33923279,Manhattan,Harlem,40.82932,-73.94575,Entire home/apt,100,3,2,0.12,2,0 +30197,11789627,Manhattan,Hell's Kitchen,40.7623,-73.99096,Entire home/apt,172,4,27,1.75,1,42 +30198,171858908,Manhattan,Greenwich Village,40.72765,-73.99880999999999,Private room,75,1,1,0.07,2,0 +30199,173535994,Manhattan,East Harlem,40.79497,-73.9477,Entire home/apt,118,1,7,0.42,1,0 +30200,172756149,Manhattan,Kips Bay,40.741209999999995,-73.98139,Entire home/apt,240,1,66,4.09,1,83 +30201,165607672,Bronx,Fordham,40.85655,-73.90377,Private room,73,2,31,1.83,2,39 +30202,11540159,Brooklyn,Park Slope,40.67289,-73.98316,Private room,58,2,0,,2,0 +30203,106897471,Staten Island,Silver Lake,40.62422,-74.09316,Private room,60,3,90,5.49,1,0 +30204,173290675,Queens,Woodhaven,40.69907,-73.85161,Shared room,34,1,45,2.66,3,348 +30205,164886138,Queens,Astoria,40.76165,-73.90839,Entire home/apt,60,6,11,0.66,11,299 +30206,1119739,Brooklyn,Williamsburg,40.717940000000006,-73.9595,Entire home/apt,125,6,11,0.66,1,0 +30207,173584558,Manhattan,Upper East Side,40.76125,-73.96449,Private room,79,1,0,,1,0 +30208,26259317,Manhattan,Harlem,40.81367,-73.95133,Private room,55,2,25,1.57,1,0 +30209,8055207,Manhattan,Upper West Side,40.77839,-73.97613,Private room,165,4,53,3.24,1,0 +30210,75748625,Brooklyn,Bedford-Stuyvesant,40.69028,-73.95195,Private room,45,1,2,0.12,1,0 +30211,24987213,Manhattan,Harlem,40.82826,-73.94589,Private room,70,2,8,0.49,1,156 +30212,172506421,Queens,Jackson Heights,40.75363,-73.88150999999999,Entire home/apt,93,2,70,4.24,1,89 +30213,70331348,Queens,Sunnyside,40.737390000000005,-73.92397,Private room,49,1,2,0.31,1,0 +30214,38908498,Queens,Long Island City,40.76506,-73.93234,Entire home/apt,65,15,1,0.06,1,0 +30215,169589888,Manhattan,Washington Heights,40.8347,-73.94487,Private room,140,3,27,1.69,1,348 +30216,173685298,Manhattan,Midtown,40.756640000000004,-73.97191,Private room,700,1,0,,11,179 +30217,75359775,Manhattan,Little Italy,40.71848,-73.99756,Private room,100,1,8,0.49,1,0 +30218,120167980,Manhattan,Harlem,40.804970000000004,-73.94951999999999,Private room,125,1,7,0.43,1,297 +30219,5201405,Manhattan,Hell's Kitchen,40.76155,-73.98687,Entire home/apt,295,2,71,4.25,1,89 +30220,10826173,Queens,Long Island City,40.74825,-73.94095,Private room,120,2,3,0.21,1,0 +30221,129273512,Brooklyn,Gowanus,40.671040000000005,-73.99361999999999,Private room,75,1,133,7.87,3,336 +30222,173754495,Brooklyn,Cypress Hills,40.678329999999995,-73.89338000000001,Shared room,75,1,25,1.69,1,270 +30223,172837223,Queens,Sunnyside,40.73307,-73.91995,Shared room,30,1,51,3.02,3,140 +30224,1730026,Manhattan,Lower East Side,40.71331,-73.99015,Entire home/apt,127,4,7,0.43,2,3 +30225,9761047,Brooklyn,Williamsburg,40.71707,-73.95982,Private room,60,3,46,2.88,3,0 +30226,173823383,Staten Island,Shore Acres,40.608090000000004,-74.0727,Entire home/apt,165,2,51,3.25,1,0 +30227,60521448,Brooklyn,Williamsburg,40.70742,-73.93754,Private room,59,5,1,0.1,2,48 +30228,12128354,Brooklyn,Williamsburg,40.707440000000005,-73.94681,Private room,100,1,0,,1,0 +30229,82930,Brooklyn,Bushwick,40.693740000000005,-73.91199999999999,Entire home/apt,105,2,45,3.98,1,74 +30230,131476075,Brooklyn,Bushwick,40.68708,-73.91237,Private room,58,1,10,0.63,8,179 +30231,4325160,Manhattan,Harlem,40.80381,-73.95055,Entire home/apt,125,10,10,0.64,1,0 +30232,172837223,Queens,Sunnyside,40.73272,-73.91826,Shared room,30,1,36,2.29,3,140 +30233,172837223,Queens,Sunnyside,40.73291,-73.9196,Shared room,30,1,41,2.48,3,145 +30234,62745867,Manhattan,Chelsea,40.73981,-74.00031,Entire home/apt,146,7,3,0.21,1,353 +30235,156505456,Brooklyn,East New York,40.66122,-73.88672,Private room,52,3,23,1.37,13,90 +30236,2730883,Manhattan,Washington Heights,40.85265,-73.93247,Private room,35,20,1,0.11,2,267 +30237,38121779,Brooklyn,Gravesend,40.60687,-73.98349,Private room,62,1,0,,1,0 +30238,55149174,Brooklyn,Kensington,40.64588,-73.97831,Private room,43,2,0,,1,0 +30239,63801339,Brooklyn,Crown Heights,40.66916,-73.9371,Private room,32,1,8,0.48,1,0 +30240,3074904,Brooklyn,Williamsburg,40.71474,-73.95476,Private room,88,1,58,3.55,4,50 +30241,101618737,Brooklyn,Bushwick,40.69273,-73.90719,Private room,80,3,0,,2,140 +30242,428643,Manhattan,East Harlem,40.7876,-73.94139,Entire home/apt,149,3,15,0.92,1,120 +30243,8990438,Manhattan,Midtown,40.75978,-73.97159,Entire home/apt,169,30,48,3.27,1,325 +30244,17015479,Queens,Elmhurst,40.74443,-73.88613000000001,Private room,85,2,3,0.18,1,89 +30245,173987923,Manhattan,East Village,40.73214,-73.98783,Entire home/apt,395,3,4,0.3,1,89 +30246,43488929,Manhattan,Greenwich Village,40.727740000000004,-74.00161,Private room,60,2,2,0.12,1,0 +30247,12404650,Brooklyn,Clinton Hill,40.68969,-73.96682,Entire home/apt,100,3,6,0.43,1,3 +30248,44951851,Brooklyn,Crown Heights,40.66505,-73.95445,Private room,50,3,1,0.06,2,0 +30249,14719992,Brooklyn,Cypress Hills,40.67853,-73.88991,Private room,35,1,17,1.13,3,0 +30250,3478341,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92557,Entire home/apt,99,2,21,1.31,1,26 +30251,65804,Manhattan,East Village,40.72831,-73.98873,Shared room,75,1,40,2.39,2,24 +30252,174124006,Manhattan,East Harlem,40.7975,-73.93556,Private room,60,1,61,3.67,1,45 +30253,174171891,Queens,East Elmhurst,40.75857,-73.89298000000001,Private room,46,2,31,1.92,1,51 +30254,688367,Brooklyn,Bedford-Stuyvesant,40.68861,-73.92941,Entire home/apt,175,4,44,2.66,1,249 +30255,59514172,Queens,Ozone Park,40.679840000000006,-73.84403,Entire home/apt,120,1,35,2.18,1,356 +30256,174180669,Manhattan,Harlem,40.818090000000005,-73.94168,Entire home/apt,179,2,37,2.32,1,333 +30257,11844979,Brooklyn,Williamsburg,40.71782,-73.96318000000001,Entire home/apt,1000,1,0,,4,179 +30258,17314413,Manhattan,Washington Heights,40.839209999999994,-73.93535,Entire home/apt,120,4,10,0.6,1,4 +30259,11844979,Brooklyn,Williamsburg,40.71846,-73.9616,Entire home/apt,2000,1,0,,4,177 +30260,11844979,Brooklyn,Williamsburg,40.71653,-73.96276,Entire home/apt,2500,1,0,,4,140 +30261,23089194,Brooklyn,Williamsburg,40.71536,-73.94058000000001,Private room,69,5,6,0.51,1,0 +30262,36291511,Manhattan,Chelsea,40.752720000000004,-73.99682,Private room,98,1,19,1.25,1,0 +30263,41354164,Brooklyn,Greenpoint,40.7286,-73.95169,Private room,100,2,0,,1,0 +30264,38386349,Manhattan,Lower East Side,40.722570000000005,-73.98884,Entire home/apt,117,1,4,0.24,1,0 +30265,3806282,Brooklyn,Bedford-Stuyvesant,40.68475,-73.92896999999999,Entire home/apt,115,2,39,2.41,1,90 +30266,77938412,Brooklyn,Crown Heights,40.67641,-73.95736,Private room,45,5,1,0.06,1,0 +30267,11274299,Manhattan,East Village,40.72603,-73.98469,Private room,149,2,5,0.3,2,0 +30268,18128455,Manhattan,Tribeca,40.72197,-74.00633,Entire home/apt,8500,30,2,0.18,1,251 +30269,63098538,Brooklyn,Kensington,40.641870000000004,-73.97376,Entire home/apt,175,7,0,,1,0 +30270,54241,Brooklyn,Sunset Park,40.662890000000004,-73.99815,Private room,80,21,0,,1,0 +30271,96686669,Queens,Sunnyside,40.74497,-73.91752,Entire home/apt,125,1,16,0.98,1,0 +30272,174255459,Manhattan,Washington Heights,40.83913,-73.9461,Entire home/apt,125,2,24,1.63,1,188 +30273,174261493,Brooklyn,Midwood,40.61204,-73.95501,Private room,99,2,31,1.9,2,0 +30274,174263749,Manhattan,Washington Heights,40.84442,-73.94039000000001,Private room,115,6,2,0.22,3,90 +30275,1670486,Brooklyn,Greenpoint,40.72345,-73.94641999999999,Entire home/apt,96,4,0,,1,0 +30276,160721088,Brooklyn,East Flatbush,40.635709999999996,-73.92398,Private room,150,5,1,0.39,1,0 +30277,51369575,Manhattan,Morningside Heights,40.80405,-73.96375,Private room,67,3,7,0.43,1,0 +30278,20869217,Brooklyn,Prospect-Lefferts Gardens,40.65465,-73.96158,Entire home/apt,225,2,32,2.31,1,56 +30279,133536506,Queens,Forest Hills,40.72743,-73.85068000000001,Private room,36,1,0,,1,0 +30280,35475017,Manhattan,Chinatown,40.714729999999996,-73.99091,Private room,62,4,7,0.43,1,0 +30281,164519659,Brooklyn,Bushwick,40.70073,-73.91714,Private room,35,1,6,0.37,1,0 +30282,12780119,Brooklyn,Park Slope,40.66876,-73.98448,Entire home/apt,175,6,2,0.13,1,67 +30283,170263842,Manhattan,Lower East Side,40.71117,-73.98727,Shared room,32,14,0,,4,341 +30284,7718759,Manhattan,Harlem,40.82781,-73.94405,Private room,39,1,26,1.62,2,10 +30285,24738447,Manhattan,Harlem,40.81862,-73.95565,Private room,60,2,5,0.31,1,0 +30286,6542295,Manhattan,SoHo,40.728,-74.00265,Private room,110,3,71,4.39,2,37 +30287,9041817,Brooklyn,Fort Greene,40.697520000000004,-73.97419000000001,Private room,47,1,1,0.06,1,0 +30288,60521448,Brooklyn,Williamsburg,40.70665,-73.93894,Private room,59,5,0,,2,67 +30289,23625464,Brooklyn,Bushwick,40.688309999999994,-73.91866,Private room,30,3,1,0.09,1,0 +30290,59089906,Brooklyn,East New York,40.67237,-73.87651,Entire home/apt,139,3,21,1.49,1,344 +30291,157967816,Brooklyn,Greenpoint,40.721070000000005,-73.94315999999999,Private room,70,1,42,2.5,3,15 +30292,50297669,Manhattan,East Village,40.7265,-73.98878,Entire home/apt,110,3,4,0.25,1,0 +30293,4057381,Manhattan,Lower East Side,40.71925,-73.99301,Private room,81,5,24,1.48,1,164 +30294,24715521,Brooklyn,Williamsburg,40.71033,-73.94921,Private room,85,2,2,0.12,1,0 +30295,174584122,Manhattan,Two Bridges,40.711240000000004,-73.99455999999999,Entire home/apt,68,3,64,3.92,1,13 +30296,152877297,Brooklyn,Bedford-Stuyvesant,40.67985,-73.91060999999999,Entire home/apt,95,2,50,3.13,1,54 +30297,14079322,Brooklyn,Bedford-Stuyvesant,40.69205,-73.94334,Private room,80,2,2,0.17,1,0 +30298,151080327,Manhattan,Kips Bay,40.73925,-73.98084,Entire home/apt,409,3,52,3.15,1,106 +30299,174628863,Manhattan,Morningside Heights,40.81449,-73.95841999999999,Private room,60,2,3,0.18,1,0 +30300,35606642,Manhattan,NoHo,40.72764,-73.993,Entire home/apt,400,1,0,,1,0 +30301,60133196,Manhattan,Chelsea,40.739740000000005,-73.99563,Private room,80,3,0,,1,0 +30302,31825530,Manhattan,Washington Heights,40.83229,-73.94339000000001,Entire home/apt,66,5,8,0.48,1,0 +30303,19400984,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95721,Entire home/apt,200,6,3,0.27,1,1 +30304,123741063,Manhattan,Harlem,40.829,-73.94803,Private room,50,1,0,,1,0 +30305,97168718,Manhattan,Upper West Side,40.78654,-73.97663,Private room,95,5,20,1.42,2,104 +30306,41105459,Brooklyn,Bushwick,40.690290000000005,-73.90623000000001,Shared room,29,1,3,0.18,1,0 +30307,75003580,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.92996,Private room,60,4,0,,1,22 +30308,4066645,Queens,Long Island City,40.74711,-73.93916999999999,Entire home/apt,90,4,0,,1,0 +30309,56283770,Manhattan,Upper East Side,40.76305,-73.96704,Entire home/apt,240,30,2,0.14,6,156 +30310,174785774,Brooklyn,Crown Heights,40.67487,-73.94051,Entire home/apt,162,2,3,0.24,1,0 +30311,124860677,Queens,Flushing,40.75522,-73.81259,Private room,46,2,26,1.65,6,180 +30312,174786681,Staten Island,Randall Manor,40.63779,-74.12274000000001,Private room,31,7,3,0.19,1,357 +30313,20488196,Queens,Astoria,40.764509999999994,-73.91181999999999,Private room,100,2,21,1.86,1,32 +30314,21593637,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92229,Entire home/apt,159,3,12,0.78,2,285 +30315,56636906,Brooklyn,Bushwick,40.70223,-73.92959,Private room,50,2,0,,1,0 +30316,57292550,Brooklyn,Sheepshead Bay,40.58591,-73.95099,Entire home/apt,70,2,1,0.06,1,0 +30317,125431405,Brooklyn,Bushwick,40.696999999999996,-73.93115999999999,Private room,35,1,1,0.07,1,0 +30318,14235061,Brooklyn,Flatbush,40.652809999999995,-73.96581,Private room,59,2,10,0.62,1,27 +30319,174780742,Brooklyn,South Slope,40.66022,-73.98581,Entire home/apt,150,2,13,0.94,1,282 +30320,172189639,Queens,East Elmhurst,40.76525,-73.86715,Private room,80,1,4,0.28,2,78 +30321,174816758,Manhattan,Hell's Kitchen,40.7551,-73.99363000000001,Entire home/apt,200,3,81,5.8,1,189 +30322,347953,Manhattan,Lower East Side,40.71971,-73.98761,Entire home/apt,225,6,22,1.36,1,17 +30323,56283770,Manhattan,Upper East Side,40.764829999999996,-73.96675,Entire home/apt,225,30,1,0.09,6,240 +30324,11581619,Queens,Long Island City,40.7605,-73.92795,Entire home/apt,100,2,45,2.89,1,269 +30325,174838471,Brooklyn,Williamsburg,40.704879999999996,-73.94100999999999,Private room,96,3,38,2.31,1,25 +30326,140057330,Queens,Ridgewood,40.697990000000004,-73.90509,Private room,60,1,22,1.37,7,73 +30327,140057330,Queens,Ridgewood,40.69704,-73.90576,Private room,60,1,14,0.88,7,64 +30328,7886822,Brooklyn,Bedford-Stuyvesant,40.687909999999995,-73.95633000000001,Entire home/apt,300,5,0,,1,0 +30329,2148510,Manhattan,Chinatown,40.717079999999996,-73.99908,Entire home/apt,145,29,18,1.13,1,155 +30330,14383640,Manhattan,Murray Hill,40.74848,-73.97609,Private room,335,4,0,,1,365 +30331,9494593,Queens,Astoria,40.76677,-73.9171,Private room,75,2,4,0.29,1,0 +30332,22820185,Brooklyn,Brooklyn Heights,40.69012,-73.99221,Private room,80,1,14,0.87,1,2 +30333,6950113,Brooklyn,Fort Greene,40.694309999999994,-73.97063,Entire home/apt,155,1,16,1.04,1,14 +30334,83786650,Manhattan,Upper East Side,40.759879999999995,-73.96115,Entire home/apt,100,30,5,0.34,8,229 +30335,17487184,Brooklyn,Williamsburg,40.71356,-73.95276,Entire home/apt,150,6,0,,1,0 +30336,3075944,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92268,Entire home/apt,120,2,89,5.59,1,35 +30337,35065193,Manhattan,Upper East Side,40.78494,-73.94988000000001,Entire home/apt,225,2,8,0.48,1,209 +30338,2416454,Manhattan,Hell's Kitchen,40.76,-73.98962,Entire home/apt,175,3,4,0.26,1,0 +30339,174986751,Manhattan,Washington Heights,40.85197,-73.94074,Private room,75,3,21,1.47,3,138 +30340,174263749,Manhattan,Washington Heights,40.84305,-73.93876999999999,Private room,89,6,5,0.31,3,90 +30341,33395500,Brooklyn,Boerum Hill,40.68307,-73.97981,Private room,55,15,0,,1,0 +30342,4781753,Manhattan,Lower East Side,40.721070000000005,-73.9834,Private room,100,7,0,,1,0 +30343,28907641,Queens,Flushing,40.76314,-73.83,Private room,60,1,112,7.55,2,84 +30344,175019394,Queens,Jamaica,40.67183,-73.78025,Private room,60,1,83,5.11,6,171 +30345,11262267,Manhattan,Upper West Side,40.803090000000005,-73.96883000000001,Shared room,77,1,0,,1,350 +30346,118086005,Brooklyn,Bedford-Stuyvesant,40.691759999999995,-73.94261,Private room,50,1,0,,1,0 +30347,175082875,Brooklyn,Windsor Terrace,40.65814,-73.97718,Entire home/apt,250,2,81,4.89,1,213 +30348,9241743,Manhattan,Harlem,40.80899,-73.94225,Private room,80,4,1,0.06,1,365 +30349,175103962,Brooklyn,Bedford-Stuyvesant,40.67964,-73.90675,Private room,43,1,58,3.65,6,152 +30350,3656871,Manhattan,Chelsea,40.742329999999995,-74.0002,Private room,99,3,3,0.19,1,0 +30351,175103962,Brooklyn,Bedford-Stuyvesant,40.680479999999996,-73.90786999999999,Private room,43,1,35,2.15,6,155 +30352,175103962,Brooklyn,Bedford-Stuyvesant,40.67913,-73.90665,Private room,43,1,33,2.04,6,170 +30353,175116422,Staten Island,Grant City,40.578790000000005,-74.11043000000001,Entire home/apt,60,3,81,5.09,3,272 +30354,28316764,Brooklyn,Williamsburg,40.718759999999996,-73.94440999999999,Private room,52,2,4,0.24,1,0 +30355,18458368,Brooklyn,Crown Heights,40.67308,-73.95522,Entire home/apt,110,1,38,2.31,1,0 +30356,10466854,Manhattan,Harlem,40.814040000000006,-73.93809,Private room,60,2,16,1.0,1,363 +30357,111782745,Brooklyn,Williamsburg,40.70477,-73.93205999999999,Shared room,26,2,8,0.48,2,0 +30358,124860677,Queens,Flushing,40.75707,-73.81205,Private room,46,2,22,1.36,6,180 +30359,15651637,Brooklyn,Prospect Heights,40.67908,-73.96858,Entire home/apt,200,3,29,3.33,1,50 +30360,148945774,Manhattan,Hell's Kitchen,40.76686,-73.98555,Entire home/apt,150,5,13,0.8,1,0 +30361,19043062,Manhattan,Chelsea,40.74085,-74.00379000000001,Private room,80,4,34,2.24,2,20 +30362,175152359,Bronx,Westchester Square,40.843,-73.84806,Private room,65,2,2,0.13,2,135 +30363,39147880,Manhattan,Chinatown,40.71655,-73.99042,Entire home/apt,130,4,17,1.1,1,0 +30364,22188,Manhattan,Upper West Side,40.78046,-73.98818,Private room,90,3,2,0.63,2,339 +30365,175180318,Manhattan,Hell's Kitchen,40.764309999999995,-73.98859,Shared room,75,1,69,4.21,6,167 +30366,23193,Brooklyn,Bedford-Stuyvesant,40.6878,-73.93915,Private room,40,3,3,0.18,4,89 +30367,24555919,Queens,Long Island City,40.763220000000004,-73.93047,Private room,47,3,0,,1,0 +30368,9287155,Manhattan,Kips Bay,40.74265,-73.98066,Entire home/apt,450,30,16,0.98,1,145 +30369,4243971,Brooklyn,Prospect-Lefferts Gardens,40.65891,-73.95886999999999,Entire home/apt,150,2,68,4.27,2,32 +30370,64076428,Brooklyn,Bushwick,40.69749,-73.93153000000001,Entire home/apt,110,3,7,0.42,1,38 +30371,39607598,Brooklyn,Williamsburg,40.71779,-73.94632,Private room,101,1,5,0.34,1,90 +30372,175289458,Queens,East Elmhurst,40.75703,-73.88368,Entire home/apt,135,2,68,4.27,1,89 +30373,15562068,Brooklyn,Bushwick,40.7046,-73.92198,Private room,55,1,18,1.11,1,19 +30374,175311339,Queens,Jackson Heights,40.75251,-73.86401,Private room,51,2,60,3.93,5,125 +30375,175311339,Queens,Jackson Heights,40.75312,-73.86479,Private room,39,2,59,3.7,5,157 +30376,175311339,Queens,Jackson Heights,40.75295,-73.86465,Private room,37,2,66,4.06,5,150 +30377,175311339,Queens,Jackson Heights,40.75287,-73.86435,Private room,37,2,34,2.07,5,126 +30378,175311339,Queens,Jackson Heights,40.75144,-73.86418,Private room,37,2,32,1.96,5,126 +30379,3552711,Queens,Queens Village,40.72528,-73.74738,Private room,75,2,85,5.56,2,349 +30380,6047516,Brooklyn,Bushwick,40.68493,-73.90881999999999,Private room,25,1,0,,1,0 +30381,170477315,Manhattan,Financial District,40.70234,-74.01047,Entire home/apt,130,2,77,4.7,1,85 +30382,24501817,Manhattan,Upper East Side,40.76398,-73.96581,Entire home/apt,479,1,52,3.24,1,3 +30383,3726127,Queens,Long Island City,40.750440000000005,-73.93961,Private room,150,4,0,,1,0 +30384,42078872,Queens,Ridgewood,40.698609999999995,-73.90728,Private room,89,1,42,2.57,1,5 +30385,90334552,Brooklyn,Williamsburg,40.712540000000004,-73.96183,Entire home/apt,220,1,0,,1,0 +30386,175372759,Brooklyn,Brighton Beach,40.5788,-73.95719,Entire home/apt,175,3,21,1.3,1,160 +30387,8335684,Manhattan,Inwood,40.86222,-73.93052,Private room,36,1,1,0.07,3,0 +30388,41326856,Queens,Elmhurst,40.74505,-73.88148000000001,Private room,49,1,3,0.19,5,35 +30389,166262295,Queens,Long Island City,40.75325,-73.93538000000001,Entire home/apt,135,30,0,,2,159 +30390,9864136,Brooklyn,Bushwick,40.68663,-73.91538,Entire home/apt,84,30,7,0.44,26,156 +30391,149579965,Queens,Ozone Park,40.68936,-73.84114,Private room,60,2,35,2.17,1,205 +30392,175448639,Manhattan,Midtown,40.74633,-73.98694,Entire home/apt,170,4,47,3.09,1,320 +30393,154955520,Manhattan,Upper East Side,40.77255,-73.96323000000001,Entire home/apt,126,3,52,3.27,1,35 +30394,84503565,Brooklyn,Bushwick,40.70333,-73.92933000000001,Private room,100,1,2,0.13,2,20 +30395,175497286,Manhattan,Washington Heights,40.83705,-73.93843000000001,Private room,55,1,2,0.13,1,341 +30396,34777741,Manhattan,East Village,40.72205,-73.98132,Entire home/apt,159,2,10,0.7,1,17 +30397,153189324,Brooklyn,Williamsburg,40.71436,-73.93949,Private room,90,2,16,1.0,2,20 +30398,77925223,Brooklyn,Sunset Park,40.65683,-73.99959,Entire home/apt,90,2,41,2.75,1,0 +30399,158540605,Queens,Glendale,40.699870000000004,-73.88951999999999,Private room,30,2,57,3.54,6,254 +30400,5977578,Brooklyn,Crown Heights,40.67843,-73.96125,Entire home/apt,325,4,3,0.27,2,98 +30401,12009770,Manhattan,Lower East Side,40.72177,-73.99205,Entire home/apt,250,5,0,,1,0 +30402,174951212,Manhattan,Midtown,40.764,-73.98033000000001,Entire home/apt,550,2,0,,1,0 +30403,13956097,Brooklyn,Williamsburg,40.71515,-73.95251999999999,Private room,70,3,2,0.32,1,223 +30404,175583687,Bronx,Highbridge,40.83452,-73.93143,Private room,80,2,32,2.07,3,17 +30405,19043062,Manhattan,Chelsea,40.74057,-74.00263000000001,Entire home/apt,150,4,21,1.46,2,5 +30406,175583687,Bronx,Highbridge,40.83593,-73.93004,Private room,80,2,29,1.81,3,17 +30407,170271533,Manhattan,Upper East Side,40.77388,-73.94913000000001,Private room,83,1,75,4.57,1,44 +30408,1687425,Brooklyn,Greenpoint,40.73075,-73.95725,Private room,80,2,0,,1,0 +30409,174511839,Queens,Sunnyside,40.74457,-73.92307,Shared room,50,1,25,1.56,1,5 +30410,7138515,Brooklyn,Williamsburg,40.71759,-73.95935,Private room,60,3,0,,1,0 +30411,27921386,Queens,Forest Hills,40.71331,-73.83474,Private room,40,1,14,0.9,1,0 +30412,4089511,Manhattan,Harlem,40.811640000000004,-73.94513,Entire home/apt,165,7,2,0.17,2,105 +30413,16110255,Brooklyn,Gowanus,40.68084,-73.98964000000001,Entire home/apt,130,7,11,1.3,1,1 +30414,23667219,Brooklyn,Williamsburg,40.710440000000006,-73.9583,Private room,65,25,6,0.42,2,0 +30415,51282128,Brooklyn,Brooklyn Heights,40.69126,-73.99288,Private room,50,10,4,0.25,1,0 +30416,112843970,Brooklyn,East New York,40.675940000000004,-73.89365,Entire home/apt,60,3,61,3.73,2,127 +30417,15919854,Brooklyn,Flatbush,40.65104,-73.96275,Private room,42,5,1,0.07,1,0 +30418,45239300,Manhattan,Lower East Side,40.720620000000004,-73.98425,Entire home/apt,158,1,46,2.88,1,106 +30419,39538634,Manhattan,East Village,40.726079999999996,-73.98258,Entire home/apt,174,2,0,,1,0 +30420,6073169,Queens,Sunnyside,40.74756,-73.91221999999999,Entire home/apt,65,2,15,1.02,1,27 +30421,6270663,Manhattan,Hell's Kitchen,40.756890000000006,-73.997,Entire home/apt,380,4,2,0.14,1,0 +30422,37541532,Brooklyn,Bedford-Stuyvesant,40.67716,-73.91418,Entire home/apt,110,1,59,3.7,1,248 +30423,175778475,Brooklyn,Crown Heights,40.67707,-73.94834,Entire home/apt,145,2,66,4.85,1,158 +30424,35506555,Brooklyn,Bedford-Stuyvesant,40.69167,-73.95381,Private room,77,2,6,0.38,2,89 +30425,35506555,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95286999999999,Private room,99,2,8,0.53,2,179 +30426,159598333,Manhattan,Upper East Side,40.78167,-73.94734,Private room,89,3,7,0.68,5,213 +30427,51368588,Manhattan,Upper East Side,40.761790000000005,-73.96199,Private room,98,5,30,1.97,2,23 +30428,107434423,Manhattan,Murray Hill,40.748909999999995,-73.97887,Entire home/apt,305,30,1,0.17,232,326 +30429,175180318,Manhattan,Hell's Kitchen,40.764520000000005,-73.9874,Shared room,75,1,53,3.25,6,172 +30430,175180318,Manhattan,Hell's Kitchen,40.7648,-73.98879000000001,Shared room,70,1,50,3.07,6,362 +30431,173362161,Brooklyn,Flatbush,40.6439,-73.96866,Private room,68,2,69,4.26,6,196 +30432,67176930,Brooklyn,Clinton Hill,40.688320000000004,-73.96366,Entire home/apt,450,3,2,0.17,1,99 +30433,53597648,Brooklyn,Crown Heights,40.67295,-73.95883,Private room,40,1,2,0.22,1,0 +30434,5047156,Brooklyn,East New York,40.66072,-73.87638000000001,Entire home/apt,75,6,30,1.84,1,0 +30435,4265419,Brooklyn,Bedford-Stuyvesant,40.687459999999994,-73.94648000000001,Private room,50,1,0,,1,0 +30436,175900532,Manhattan,Nolita,40.724340000000005,-73.99531999999999,Entire home/apt,200,3,21,1.46,1,124 +30437,30672354,Manhattan,Flatiron District,40.740159999999996,-73.98735,Entire home/apt,290,5,4,0.24,2,69 +30438,168429942,Bronx,Norwood,40.87993,-73.87195,Private room,50,3,18,1.16,2,326 +30439,163621622,Brooklyn,Canarsie,40.64715,-73.90446999999999,Entire home/apt,175,2,50,3.18,1,173 +30440,174805880,Brooklyn,Bay Ridge,40.634570000000004,-74.0325,Entire home/apt,125,3,25,1.57,1,348 +30441,52751563,Manhattan,Chelsea,40.74248,-73.99568000000001,Entire home/apt,96,1,32,2.03,1,2 +30442,24475565,Manhattan,Gramercy,40.73709,-73.98026999999999,Entire home/apt,250,2,38,2.65,1,322 +30443,7951200,Manhattan,Upper East Side,40.77825,-73.94719,Entire home/apt,135,12,4,0.28,1,171 +30444,58114733,Brooklyn,Williamsburg,40.70923,-73.95205,Entire home/apt,140,6,3,0.19,1,0 +30445,16400151,Brooklyn,Bushwick,40.70199,-73.92035,Private room,45,2,10,0.61,1,0 +30446,173021064,Brooklyn,Williamsburg,40.710809999999995,-73.94965,Private room,75,2,2,0.13,2,7 +30447,176038984,Manhattan,Midtown,40.74688,-73.98701,Entire home/apt,220,4,17,1.06,1,208 +30448,38202756,Manhattan,Chelsea,40.74968,-73.98951,Entire home/apt,186,3,4,0.24,1,0 +30449,57549945,Brooklyn,Canarsie,40.63255,-73.90742,Private room,70,2,23,1.58,1,53 +30450,2447827,Manhattan,NoHo,40.72822,-73.99239,Entire home/apt,175,7,12,1.01,1,2 +30451,23891395,Brooklyn,Park Slope,40.67066,-73.98671,Private room,55,2,5,0.31,1,0 +30452,40078965,Queens,Elmhurst,40.73182,-73.87579000000001,Entire home/apt,95,5,29,1.81,1,120 +30453,3206715,Brooklyn,Prospect Heights,40.68013,-73.97451,Private room,640,3,3,0.2,1,18 +30454,161899037,Queens,Flushing,40.75654,-73.83145999999999,Entire home/apt,278,2,31,2.12,7,68 +30455,3163859,Manhattan,Upper West Side,40.79167,-73.97421,Entire home/apt,125,2,8,0.5,1,176 +30456,139935139,Manhattan,Harlem,40.81061,-73.95125,Entire home/apt,150,2,12,0.8,1,0 +30457,65171233,Queens,Elmhurst,40.74253,-73.88962,Private room,65,3,31,2.21,2,41 +30458,20302754,Brooklyn,Bushwick,40.693220000000004,-73.91268000000001,Private room,43,1,12,0.76,2,47 +30459,104475208,Brooklyn,Kensington,40.63285,-73.97483000000001,Shared room,250,3,0,,1,365 +30460,3074904,Brooklyn,Williamsburg,40.71452,-73.95451,Entire home/apt,285,1,5,0.39,4,3 +30461,176185168,Queens,Laurelton,40.68209,-73.73662,Private room,65,1,119,7.79,1,0 +30462,176191548,Manhattan,Inwood,40.87188,-73.91936,Entire home/apt,85,1,2,0.12,1,188 +30463,170032114,Manhattan,Gramercy,40.734190000000005,-73.98725999999999,Private room,120,7,2,0.19,1,31 +30464,165135574,Manhattan,Gramercy,40.736290000000004,-73.98753,Entire home/apt,165,6,10,0.65,1,43 +30465,26953965,Brooklyn,Williamsburg,40.71072,-73.94382,Private room,39,7,4,0.45,1,0 +30466,51037916,Manhattan,Washington Heights,40.83767,-73.94171,Private room,39,5,0,,1,0 +30467,6503950,Brooklyn,Bushwick,40.69401,-73.90578000000001,Private room,40,1,12,0.74,2,0 +30468,17477908,Manhattan,Chelsea,40.741609999999994,-73.99435,Entire home/apt,250,30,3,0.19,10,338 +30469,176245949,Brooklyn,Red Hook,40.676559999999995,-74.01656,Entire home/apt,140,2,59,3.68,1,77 +30470,66865625,Brooklyn,Bay Ridge,40.631640000000004,-74.0292,Private room,60,2,12,0.73,1,0 +30471,52763343,Brooklyn,Williamsburg,40.70794,-73.94404,Entire home/apt,250,4,0,,1,0 +30472,58113598,Manhattan,Upper East Side,40.76833,-73.96155999999999,Entire home/apt,200,3,0,,1,0 +30473,109327526,Queens,Astoria,40.76509,-73.91026,Entire home/apt,135,2,57,3.52,1,0 +30474,4436365,Queens,Woodside,40.75524,-73.90768,Entire home/apt,120,3,2,1.5,1,180 +30475,30436005,Brooklyn,Bedford-Stuyvesant,40.69639,-73.93724,Private room,48,3,0,,1,0 +30476,156557516,Queens,Long Island City,40.76044,-73.92955,Entire home/apt,200,1,54,3.38,2,338 +30477,49523787,Manhattan,Harlem,40.8232,-73.95463000000001,Private room,55,1,39,2.37,2,153 +30478,34177401,Brooklyn,East New York,40.67563,-73.87866,Entire home/apt,86,1,154,9.53,2,311 +30479,76939238,Manhattan,Roosevelt Island,40.759879999999995,-73.95097,Entire home/apt,130,2,3,0.2,2,300 +30480,12881634,Brooklyn,Bedford-Stuyvesant,40.68221,-73.92614,Entire home/apt,112,3,43,2.63,1,29 +30481,111262060,Brooklyn,Flatbush,40.64105,-73.957,Private room,70,1,66,4.07,1,144 +30482,17494958,Manhattan,SoHo,40.72172,-74.0041,Entire home/apt,275,5,6,0.37,3,0 +30483,25096301,Brooklyn,Fort Greene,40.68524,-73.97463,Entire home/apt,150,2,8,0.52,2,11 +30484,5709606,Manhattan,Upper East Side,40.77154,-73.95573,Entire home/apt,175,3,24,1.48,1,0 +30485,16347259,Brooklyn,Williamsburg,40.710679999999996,-73.96035,Entire home/apt,378,3,13,0.85,1,25 +30486,43180601,Manhattan,Upper West Side,40.79913,-73.9632,Entire home/apt,150,12,0,,1,0 +30487,148564534,Brooklyn,Prospect-Lefferts Gardens,40.660940000000004,-73.94535,Private room,65,1,69,4.4,1,0 +30488,176279414,Bronx,Williamsbridge,40.87021,-73.86095,Entire home/apt,85,2,83,5.19,1,329 +30489,99270668,Staten Island,New Dorp,40.570440000000005,-74.11747,Entire home/apt,57,1,0,,1,0 +30490,60163700,Manhattan,Harlem,40.82325,-73.95243,Private room,46,14,12,0.82,4,0 +30491,8994053,Queens,Long Island City,40.76187,-73.92761999999999,Entire home/apt,190,2,65,4.05,1,259 +30492,76939238,Manhattan,Roosevelt Island,40.76032,-73.95164,Private room,70,3,1,0.26,2,358 +30493,5252932,Brooklyn,Williamsburg,40.70904,-73.9471,Private room,60,1,0,,1,0 +30494,157658093,Manhattan,Morningside Heights,40.81453,-73.96141,Entire home/apt,125,3,3,0.19,1,0 +30495,10284187,Brooklyn,Williamsburg,40.71849,-73.95053,Entire home/apt,175,4,2,0.15,1,0 +30496,335046,Manhattan,Lower East Side,40.71374,-73.98907,Private room,100,3,10,0.62,3,361 +30497,17193773,Manhattan,West Village,40.73389,-74.00086,Entire home/apt,245,60,12,0.75,1,13 +30498,5225104,Brooklyn,Bedford-Stuyvesant,40.68016,-73.91054,Entire home/apt,68,3,19,1.23,1,28 +30499,4602029,Brooklyn,Williamsburg,40.70644,-73.94339000000001,Entire home/apt,85,6,7,0.43,1,0 +30500,1746811,Brooklyn,Park Slope,40.67913,-73.98015,Entire home/apt,95,1,8,0.52,2,6 +30501,176578851,Manhattan,Financial District,40.71012,-74.00828,Private room,110,5,6,0.37,1,0 +30502,6787883,Brooklyn,Carroll Gardens,40.680859999999996,-73.9926,Private room,74,1,20,1.31,4,162 +30503,15956611,Manhattan,East Harlem,40.80373,-73.93594,Private room,53,21,2,0.46,2,61 +30504,176591085,Manhattan,Washington Heights,40.84389,-73.94126999999999,Private room,45,1,1,0.07,4,90 +30505,1699871,Brooklyn,Bushwick,40.68477,-73.908,Private room,125,3,1,0.06,3,1 +30506,130858402,Manhattan,East Village,40.72909,-73.98986,Private room,95,1,78,4.79,1,5 +30507,2251176,Brooklyn,Bushwick,40.70374,-73.92497,Private room,45,3,17,1.04,1,16 +30508,91511951,Brooklyn,Prospect Heights,40.6802,-73.96504,Private room,250,3,3,0.21,1,0 +30509,19922549,Manhattan,Two Bridges,40.7115,-73.9952,Entire home/apt,300,3,24,1.76,1,32 +30510,2485076,Brooklyn,Fort Greene,40.69466,-73.97151,Entire home/apt,148,3,20,1.27,1,0 +30511,55724558,Queens,Long Island City,40.760059999999996,-73.9408,Private room,55,4,2,0.65,5,89 +30512,19789539,Bronx,Fordham,40.86737,-73.89415,Private room,47,3,14,0.89,1,197 +30513,99256824,Manhattan,Harlem,40.82197,-73.94948000000001,Entire home/apt,250,30,0,,1,0 +30514,15798930,Manhattan,Financial District,40.70438,-74.00856,Entire home/apt,115,7,5,0.32,1,0 +30515,3741154,Brooklyn,Bushwick,40.68892,-73.90495,Private room,55,2,1,0.06,1,0 +30516,34177401,Brooklyn,East New York,40.67426,-73.87969,Entire home/apt,140,1,30,2.18,2,4 +30517,175583687,Bronx,Highbridge,40.836040000000004,-73.93099000000001,Entire home/apt,240,1,22,1.4,3,1 +30518,176651039,Manhattan,Murray Hill,40.746809999999996,-73.97910999999999,Entire home/apt,140,300,0,,1,331 +30519,176660539,Queens,Forest Hills,40.71895,-73.84249,Private room,120,1,3,0.29,1,322 +30520,176663321,Brooklyn,Clinton Hill,40.68235,-73.96128,Entire home/apt,200,30,6,0.41,1,266 +30521,128832652,Brooklyn,Bushwick,40.69308,-73.91882,Shared room,50,1,0,,1,0 +30522,17105274,Brooklyn,Bushwick,40.69166,-73.90314000000001,Private room,49,14,5,0.34,2,163 +30523,12968185,Brooklyn,Fort Greene,40.6865,-73.97494,Entire home/apt,175,2,0,,1,0 +30524,24648109,Manhattan,Battery Park City,40.70615,-74.01719,Entire home/apt,180,4,0,,1,0 +30525,176763105,Queens,Jamaica,40.6743,-73.78471,Private room,70,1,41,2.76,1,67 +30526,7918430,Manhattan,Harlem,40.80765,-73.95244,Entire home/apt,400,4,7,0.93,2,244 +30527,176436884,Manhattan,Greenwich Village,40.7323,-73.99433,Entire home/apt,199,2,69,4.23,1,112 +30528,2801739,Manhattan,East Harlem,40.78757,-73.95402,Entire home/apt,194,1,19,1.23,1,177 +30529,170444830,Manhattan,Chelsea,40.751020000000004,-73.99840999999999,Entire home/apt,500,30,2,0.12,1,179 +30530,176809727,Manhattan,Upper West Side,40.80076,-73.96236,Private room,105,2,38,2.38,1,300 +30531,176810211,Manhattan,Upper West Side,40.79902,-73.96692,Private room,70,1,1,0.07,1,0 +30532,32130349,Brooklyn,Williamsburg,40.718759999999996,-73.94341,Private room,50,1,0,,1,0 +30533,133288905,Manhattan,Midtown,40.753209999999996,-73.97131999999999,Entire home/apt,187,3,12,0.86,3,6 +30534,33153151,Manhattan,Greenwich Village,40.7275,-74.0,Entire home/apt,250,2,14,1.24,1,0 +30535,51969502,Manhattan,East Village,40.7289,-73.98865,Private room,53,3,1,0.06,1,0 +30536,101736132,Brooklyn,Bushwick,40.690509999999996,-73.91557,Private room,50,3,0,,2,86 +30537,26557574,Brooklyn,Prospect Heights,40.67905,-73.97238,Entire home/apt,100,5,1,0.06,1,0 +30538,23220666,Brooklyn,Bushwick,40.69121,-73.92099,Private room,65,2,9,0.56,1,0 +30539,173406651,Manhattan,Lower East Side,40.71967,-73.98311,Private room,110,2,29,2.02,2,117 +30540,2515199,Brooklyn,Flatbush,40.65232,-73.96208,Private room,36,2,11,0.68,1,0 +30541,176679165,Queens,Corona,40.73917,-73.86362,Private room,40,1,78,4.81,2,69 +30542,3717633,Manhattan,Chelsea,40.751290000000004,-73.99561,Entire home/apt,185,2,32,2.02,1,47 +30543,6023250,Brooklyn,Williamsburg,40.70984,-73.9433,Entire home/apt,175,2,4,0.45,1,27 +30544,1772509,Brooklyn,Red Hook,40.67923,-74.00650999999999,Private room,65,1,13,0.9,2,160 +30545,91182678,Brooklyn,Crown Heights,40.67413,-73.9398,Private room,42,2,10,0.64,1,10 +30546,176890090,Brooklyn,Crown Heights,40.67799,-73.94221999999999,Shared room,25,2,13,0.81,1,81 +30547,18485718,Brooklyn,Crown Heights,40.66798,-73.95528,Private room,72,2,16,0.99,1,0 +30548,67768251,Manhattan,Upper West Side,40.78353,-73.97802,Private room,45,30,4,0.36,3,242 +30549,270404,Brooklyn,Crown Heights,40.671859999999995,-73.93684,Entire home/apt,77,6,15,0.94,1,32 +30550,176964342,Manhattan,Upper West Side,40.7748,-73.97922,Private room,120,2,4,0.24,1,0 +30551,38672932,Brooklyn,Prospect-Lefferts Gardens,40.65609,-73.95781,Entire home/apt,70,1,6,0.39,1,0 +30552,176679165,Queens,Corona,40.73726,-73.8632,Private room,35,1,78,4.82,2,75 +30553,11243113,Manhattan,West Village,40.73976,-74.00953,Entire home/apt,200,10,11,0.76,1,365 +30554,52549310,Queens,Ditmars Steinway,40.77462,-73.91020999999999,Private room,70,2,6,0.38,1,0 +30555,51088192,Brooklyn,Bedford-Stuyvesant,40.69028,-73.94163,Private room,100,3,0,,1,364 +30556,172544686,Manhattan,Upper West Side,40.77597,-73.97686,Private room,179,1,4,0.25,4,270 +30557,142765455,Manhattan,Upper East Side,40.78268,-73.94977,Entire home/apt,110,3,2,0.14,1,0 +30558,133288905,Manhattan,Midtown,40.75173,-73.9727,Entire home/apt,374,3,11,0.84,3,3 +30559,2653232,Manhattan,Kips Bay,40.74477,-73.98004,Entire home/apt,133,6,0,,1,0 +30560,177036542,Brooklyn,Bedford-Stuyvesant,40.6845,-73.95804,Entire home/apt,175,2,44,2.72,1,285 +30561,123453141,Brooklyn,Bedford-Stuyvesant,40.69266,-73.9399,Private room,42,2,8,0.5,1,0 +30562,176983812,Manhattan,Lower East Side,40.72142,-73.98411,Private room,350,10,2,0.13,1,87 +30563,24771677,Queens,Bayside,40.76324,-73.77111,Entire home/apt,200,2,45,2.84,1,42 +30564,177045672,Brooklyn,Bushwick,40.69786,-73.93287,Private room,65,3,4,0.25,1,342 +30565,7849107,Brooklyn,Williamsburg,40.713840000000005,-73.94228000000001,Private room,55,15,0,,2,1 +30566,32772480,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.96030999999999,Entire home/apt,150,3,10,0.64,2,187 +30567,157845873,Manhattan,Harlem,40.81798,-73.93956,Private room,115,1,53,3.33,1,0 +30568,175180318,Manhattan,Hell's Kitchen,40.76534,-73.98701,Shared room,75,1,59,3.64,6,362 +30569,173362161,Brooklyn,Flatbush,40.64318,-73.96835,Private room,62,2,67,4.19,6,50 +30570,177146433,Manhattan,East Harlem,40.79766,-73.94824,Private room,139,1,6,0.46,1,0 +30571,26584499,Manhattan,Upper West Side,40.782990000000005,-73.98318,Entire home/apt,150,31,1,0.07,8,332 +30572,24595687,Brooklyn,Clinton Hill,40.68303,-73.96316999999999,Private room,75,7,1,0.08,1,0 +30573,177157966,Queens,St. Albans,40.69147,-73.76013,Private room,45,3,9,0.57,1,90 +30574,20618692,Manhattan,Washington Heights,40.837109999999996,-73.94438000000001,Private room,90,1,32,2.02,1,5 +30575,921431,Queens,Ditmars Steinway,40.77113,-73.90459,Entire home/apt,113,2,51,3.26,1,41 +30576,9638130,Brooklyn,Williamsburg,40.71198,-73.94932,Private room,100,4,0,,1,89 +30577,8993896,Brooklyn,Fort Greene,40.69011,-73.96999,Entire home/apt,186,4,2,1.36,2,22 +30578,176793977,Queens,Sunnyside,40.74035,-73.91663,Private room,60,7,0,,1,0 +30579,82889379,Bronx,Woodlawn,40.89873,-73.86449,Private room,34,1,122,8.24,4,5 +30580,115151548,Queens,Hollis,40.714,-73.77787,Private room,72,5,6,0.38,1,364 +30581,107040079,Brooklyn,Crown Heights,40.66561,-73.94156,Private room,42,4,36,2.34,2,292 +30582,1590148,Brooklyn,Williamsburg,40.71813,-73.94931,Entire home/apt,250,2,2,0.31,1,0 +30583,177174475,Manhattan,Midtown,40.74805,-73.9868,Entire home/apt,120,1,8,0.53,17,267 +30584,177174475,Manhattan,Midtown,40.74677,-73.98698,Entire home/apt,120,1,6,0.4,17,246 +30585,177174475,Manhattan,Midtown,40.74776,-73.98668,Entire home/apt,107,1,0,,17,208 +30586,177174475,Manhattan,Midtown,40.74796,-73.98814,Entire home/apt,137,1,10,1.03,17,182 +30587,177174475,Manhattan,Midtown,40.74731,-73.98821,Entire home/apt,163,1,11,1.42,17,221 +30588,177174475,Manhattan,Midtown,40.746359999999996,-73.98680999999999,Entire home/apt,153,1,7,0.49,17,226 +30589,177174475,Manhattan,Midtown,40.74793,-73.98834000000001,Entire home/apt,120,1,3,0.47,17,257 +30590,177174475,Manhattan,Midtown,40.748259999999995,-73.98873,Entire home/apt,137,1,7,0.96,17,218 +30591,177174475,Manhattan,Midtown,40.74825,-73.98853000000001,Entire home/apt,120,1,3,0.51,17,200 +30592,177174475,Manhattan,Midtown,40.74657,-73.98691,Entire home/apt,163,1,8,0.63,17,225 +30593,177174475,Manhattan,Midtown,40.7474,-73.98685,Entire home/apt,153,1,4,0.27,17,216 +30594,177174475,Manhattan,Midtown,40.74649,-73.98723000000001,Entire home/apt,137,1,5,0.34,17,162 +30595,177174475,Manhattan,Midtown,40.74796,-73.98788,Entire home/apt,120,1,7,0.51,17,232 +30596,177174475,Manhattan,Midtown,40.74653,-73.98716999999999,Entire home/apt,208,1,4,0.3,17,215 +30597,177174475,Manhattan,Midtown,40.74706,-73.98689,Entire home/apt,153,1,7,0.7,17,234 +30598,177174475,Manhattan,Midtown,40.74643,-73.98729,Entire home/apt,163,1,8,0.57,17,239 +30599,29918034,Brooklyn,Park Slope,40.6701,-73.98151,Entire home/apt,110,30,25,1.63,1,125 +30600,162586833,Manhattan,Hell's Kitchen,40.75869,-73.99068,Private room,400,2,19,1.33,1,166 +30601,130804,Manhattan,Washington Heights,40.8331,-73.94346999999999,Private room,65,2,0,,1,0 +30602,2965556,Bronx,Spuyten Duyvil,40.88316,-73.91150999999999,Entire home/apt,360,2,8,0.51,1,71 +30603,43264429,Manhattan,Morningside Heights,40.80454,-73.9645,Private room,120,1,2,0.16,1,0 +30604,2438,Brooklyn,Williamsburg,40.71412,-73.94447,Entire home/apt,95,45,1,0.06,1,0 +30605,19356927,Brooklyn,Bushwick,40.687540000000006,-73.91411,Private room,50,1,80,5.1,1,57 +30606,7168913,Brooklyn,Williamsburg,40.71594,-73.9573,Private room,65,14,0,,1,0 +30607,177161276,Bronx,Olinville,40.88455,-73.86587,Shared room,26,1,10,0.67,1,312 +30608,87786261,Brooklyn,South Slope,40.660940000000004,-73.98652,Entire home/apt,189,1,5,0.43,5,270 +30609,129483977,Brooklyn,Williamsburg,40.711659999999995,-73.96054000000001,Private room,60,2,0,,1,0 +30610,1420659,Brooklyn,Greenpoint,40.72294,-73.94901999999999,Private room,150,5,0,,1,310 +30611,177353847,Manhattan,East Village,40.72619,-73.99019,Entire home/apt,400,4,8,0.51,4,161 +30612,27245,Manhattan,Midtown,40.755320000000005,-73.9654,Private room,90,2,15,0.93,1,0 +30613,11186022,Manhattan,Midtown,40.75311,-73.97306,Private room,400,3,2,0.14,1,2 +30614,80344984,Manhattan,Harlem,40.827329999999996,-73.94937,Entire home/apt,245,3,28,1.74,1,272 +30615,51429969,Manhattan,Financial District,40.71049,-74.00869,Private room,100,3,3,0.19,1,0 +30616,90834217,Brooklyn,Bedford-Stuyvesant,40.6832,-73.93469,Entire home/apt,125,2,53,3.44,1,215 +30617,6238348,Manhattan,Civic Center,40.71353,-73.99925,Entire home/apt,220,15,4,0.25,1,9 +30618,319707,Brooklyn,Williamsburg,40.710770000000004,-73.95159,Private room,49,7,0,,1,37 +30619,10964365,Queens,Ridgewood,40.707409999999996,-73.91421,Private room,55,3,13,0.82,1,83 +30620,13788158,Brooklyn,Fort Greene,40.69392,-73.97114,Entire home/apt,250,3,37,2.39,2,140 +30621,7201216,Manhattan,Gramercy,40.7368,-73.98518,Private room,110,1,69,4.34,1,176 +30622,37286422,Queens,Briarwood,40.707390000000004,-73.81326999999999,Private room,45,2,18,1.15,1,0 +30623,22779744,Queens,East Elmhurst,40.77127,-73.87123000000001,Private room,100,1,0,,1,0 +30624,4810688,Manhattan,Harlem,40.8067,-73.95621,Entire home/apt,175,3,43,2.89,1,37 +30625,27046912,Manhattan,Harlem,40.80554,-73.95586,Private room,81,4,41,2.56,2,28 +30626,175180318,Manhattan,Hell's Kitchen,40.76502,-73.98702,Shared room,75,1,59,3.64,6,174 +30627,159811367,Brooklyn,Bedford-Stuyvesant,40.69475,-73.9405,Shared room,37,30,3,0.21,10,342 +30628,159811367,Brooklyn,Bedford-Stuyvesant,40.69312,-73.94073,Shared room,32,31,4,0.28,10,341 +30629,170534355,Manhattan,West Village,40.728840000000005,-74.00285,Entire home/apt,200,5,54,3.34,1,242 +30630,1006421,Brooklyn,Williamsburg,40.71432,-73.94751,Entire home/apt,120,14,2,0.16,1,177 +30631,3464870,Brooklyn,Bedford-Stuyvesant,40.692190000000004,-73.95851,Entire home/apt,150,3,11,0.8,1,2 +30632,10440477,Brooklyn,Bedford-Stuyvesant,40.68486,-73.93822,Private room,70,1,2,0.15,2,0 +30633,5022499,Brooklyn,Greenpoint,40.724070000000005,-73.94762,Private room,40,1,0,,1,0 +30634,18882408,Manhattan,Midtown,40.74995,-73.98602,Private room,108,3,7,0.44,1,0 +30635,8335684,Manhattan,Inwood,40.86302,-73.92981999999999,Entire home/apt,91,1,2,0.13,3,0 +30636,1327095,Brooklyn,Greenpoint,40.73343,-73.95281999999999,Private room,140,2,0,,1,0 +30637,12243051,Manhattan,Financial District,40.70738,-74.00493,Entire home/apt,212,29,0,,96,332 +30638,177562935,Manhattan,Harlem,40.81304,-73.9456,Private room,105,1,35,3.04,2,60 +30639,177562935,Manhattan,Harlem,40.812740000000005,-73.9455,Private room,147,1,3,0.3,2,57 +30640,12243051,Manhattan,Financial District,40.70753,-74.00514,Entire home/apt,205,29,1,0.07,96,338 +30641,10434360,Manhattan,Lower East Side,40.72003,-73.98588000000001,Entire home/apt,92,2,12,0.74,1,0 +30642,147721837,Brooklyn,East New York,40.6663,-73.87448,Entire home/apt,139,3,25,1.61,2,70 +30643,17125526,Queens,Astoria,40.76119,-73.92379,Private room,100,2,1,0.09,1,0 +30644,128416096,Manhattan,Harlem,40.82165,-73.95593000000001,Private room,55,5,1,0.08,1,38 +30645,153390633,Manhattan,Chinatown,40.71735,-73.99956,Entire home/apt,80,1,73,4.54,1,183 +30646,5192686,Brooklyn,Prospect-Lefferts Gardens,40.656259999999996,-73.9577,Private room,75,4,6,0.39,2,0 +30647,161081229,Bronx,Morrisania,40.82434,-73.91377,Private room,40,2,80,5.01,2,291 +30648,1581733,Brooklyn,Williamsburg,40.7109,-73.95916,Entire home/apt,400,2,3,0.21,2,0 +30649,12243051,Manhattan,Financial District,40.70805,-74.00581,Entire home/apt,205,29,2,0.14,96,10 +30650,42741722,Manhattan,Harlem,40.82065,-73.95444,Private room,70,2,6,0.37,2,0 +30651,145252418,Manhattan,East Harlem,40.80386,-73.93618000000001,Private room,80,1,47,3.41,3,178 +30652,15603100,Manhattan,Lower East Side,40.71908,-73.98379,Entire home/apt,220,2,40,2.51,1,1 +30653,12243051,Manhattan,Financial District,40.706559999999996,-74.00499,Entire home/apt,215,29,0,,96,343 +30654,48911266,Manhattan,Two Bridges,40.71262,-73.99592,Private room,119,3,17,1.31,2,86 +30655,177714844,Brooklyn,Flatbush,40.64135,-73.96811,Private room,44,30,1,0.06,1,0 +30656,4112404,Manhattan,Hell's Kitchen,40.76535,-73.99252,Entire home/apt,199,5,0,,3,9 +30657,3635762,Manhattan,Harlem,40.80389,-73.95711999999999,Entire home/apt,190,5,0,,1,0 +30658,109874158,Brooklyn,Clinton Hill,40.692440000000005,-73.96625999999999,Private room,45,3,0,,1,0 +30659,177761074,Queens,Long Island City,40.75373,-73.91901999999999,Private room,60,1,1,1.0,1,326 +30660,31665801,Manhattan,East Village,40.73294,-73.98846999999999,Entire home/apt,178,3,40,2.75,2,83 +30661,23818330,Brooklyn,Prospect Heights,40.67839,-73.96791,Entire home/apt,750,7,0,,1,0 +30662,28752891,Manhattan,Upper West Side,40.791140000000006,-73.9671,Private room,175,4,11,0.77,2,63 +30663,10331194,Brooklyn,Bedford-Stuyvesant,40.68872,-73.92425,Private room,49,5,0,,1,0 +30664,13963575,Brooklyn,Clinton Hill,40.69404,-73.96233000000001,Entire home/apt,130,3,15,1.06,1,41 +30665,127345864,Brooklyn,East Flatbush,40.641740000000006,-73.93193000000001,Entire home/apt,135,2,26,2.21,4,29 +30666,5832321,Queens,Glendale,40.695890000000006,-73.89572,Entire home/apt,100,2,57,3.68,2,267 +30667,116067987,Queens,Astoria,40.75569,-73.92175,Entire home/apt,325,2,2,2.0,2,365 +30668,15681707,Brooklyn,Crown Heights,40.673629999999996,-73.91385,Entire home/apt,150,2,49,3.31,3,210 +30669,83899060,Brooklyn,Flatbush,40.64448,-73.96396999999999,Entire home/apt,100,4,20,1.25,1,328 +30670,9223263,Brooklyn,Williamsburg,40.71665,-73.96269000000001,Private room,45,3,3,0.19,1,0 +30671,142248429,Brooklyn,Williamsburg,40.711659999999995,-73.95955,Private room,75,6,25,1.79,1,84 +30672,3734637,Manhattan,East Harlem,40.79068,-73.94461,Private room,30,1,15,0.94,3,0 +30673,6106609,Brooklyn,Bushwick,40.68965,-73.91648,Private room,130,2,30,2.05,1,290 +30674,59860568,Queens,Astoria,40.76708,-73.92315,Private room,75,7,0,,1,0 +30675,75469247,Brooklyn,Crown Heights,40.67774,-73.95742,Entire home/apt,105,1,39,2.44,1,38 +30676,50003794,Queens,Elmhurst,40.74177,-73.88445,Entire home/apt,75,1,31,1.97,1,0 +30677,85572162,Manhattan,Upper West Side,40.7943,-73.967,Entire home/apt,150,3,42,2.72,1,3 +30678,3447309,Manhattan,Harlem,40.802009999999996,-73.95774,Entire home/apt,89,5,1,0.14,2,7 +30679,8159536,Bronx,Concourse Village,40.830859999999994,-73.92025,Private room,57,1,6,0.42,3,220 +30680,172544686,Manhattan,Upper West Side,40.77706,-73.97788,Private room,800,1,0,,4,269 +30681,178059867,Queens,Flushing,40.7561,-73.80622,Private room,50,1,63,3.94,3,156 +30682,178062766,Manhattan,East Village,40.73114,-73.98869,Entire home/apt,325,5,44,2.77,1,179 +30683,124357,Brooklyn,Williamsburg,40.716029999999996,-73.95432,Entire home/apt,300,1,70,4.63,3,1 +30684,172544686,Manhattan,Upper West Side,40.77606,-73.97803,Private room,219,1,0,,4,269 +30685,83824521,Queens,Long Island City,40.75815,-73.92893000000001,Entire home/apt,150,4,41,2.65,1,175 +30686,1636933,Manhattan,Hell's Kitchen,40.76027,-73.98831,Entire home/apt,99,30,55,3.5,1,63 +30687,174838527,Queens,Richmond Hill,40.692820000000005,-73.82849,Shared room,100,1,0,,1,0 +30688,36052067,Manhattan,East Harlem,40.80185,-73.94515,Entire home/apt,250,2,17,5.54,1,47 +30689,6854910,Manhattan,Harlem,40.80849,-73.94244,Private room,150,7,0,,1,0 +30690,477787,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92009,Entire home/apt,112,2,48,3.04,1,0 +30691,6989615,Manhattan,West Village,40.74069,-74.00546,Entire home/apt,175,3,18,1.13,1,175 +30692,20447869,Manhattan,Kips Bay,40.74499,-73.97926,Private room,95,5,1,0.06,2,0 +30693,3605048,Brooklyn,Bedford-Stuyvesant,40.68052,-73.92952,Entire home/apt,100,2,25,1.55,1,65 +30694,12243051,Manhattan,Financial District,40.70786,-74.00476,Entire home/apt,220,29,0,,96,220 +30695,12243051,Manhattan,Financial District,40.70791,-74.00445,Entire home/apt,227,29,0,,96,267 +30696,178123507,Manhattan,West Village,40.7328,-74.00305999999999,Entire home/apt,280,3,9,0.56,1,0 +30697,6513281,Brooklyn,Williamsburg,40.713390000000004,-73.94873,Entire home/apt,750,5,2,0.13,2,178 +30698,131829860,Brooklyn,East Flatbush,40.63621,-73.94968,Private room,55,3,1,0.06,1,0 +30699,2250865,Manhattan,SoHo,40.72639,-74.00686999999999,Entire home/apt,165,2,0,,1,0 +30700,76104209,Manhattan,Midtown,40.75015,-73.98651,Entire home/apt,200,30,0,,33,365 +30701,76104209,Manhattan,Midtown,40.75132,-73.96925999999999,Entire home/apt,159,30,0,,33,364 +30702,76104209,Manhattan,Upper West Side,40.79446,-73.96655,Entire home/apt,200,30,0,,33,364 +30703,105825171,Manhattan,Harlem,40.82383,-73.94037,Private room,93,1,2,0.13,1,0 +30704,74033494,Brooklyn,Flatbush,40.642959999999995,-73.95238,Entire home/apt,125,2,31,2.93,1,64 +30705,6059542,Manhattan,Harlem,40.825540000000004,-73.9535,Private room,100,5,0,,1,364 +30706,30736639,Brooklyn,Bushwick,40.68609,-73.90733,Entire home/apt,105,2,80,5.08,2,77 +30707,105310740,Brooklyn,Bedford-Stuyvesant,40.68271,-73.95141,Entire home/apt,99,30,0,,3,341 +30708,16851857,Bronx,Wakefield,40.89691,-73.85121,Entire home/apt,69,21,11,0.75,4,343 +30709,178229322,Bronx,Concourse Village,40.83218,-73.91951,Private room,47,5,61,3.8,1,130 +30710,120010130,Manhattan,Harlem,40.82557,-73.94927,Private room,50,7,2,0.13,1,358 +30711,109551284,Manhattan,Upper West Side,40.80172,-73.96177,Private room,120,5,9,0.62,2,0 +30712,12243051,Manhattan,Financial District,40.706590000000006,-74.00426,Entire home/apt,210,29,0,,96,365 +30713,1181486,Brooklyn,Bushwick,40.69569,-73.90733,Entire home/apt,84,9,1,0.06,1,0 +30714,178237936,Queens,Astoria,40.77451,-73.92712,Entire home/apt,89,2,68,4.33,1,64 +30715,178244787,Brooklyn,Greenpoint,40.72254,-73.95084,Private room,90,1,13,0.87,2,0 +30716,12243051,Manhattan,Financial District,40.70747,-74.00435999999999,Entire home/apt,222,29,0,,96,241 +30717,178224519,Manhattan,Upper East Side,40.78315,-73.94768,Entire home/apt,100,30,0,,8,320 +30718,12243051,Manhattan,Financial District,40.707409999999996,-74.00656,Entire home/apt,227,29,0,,96,322 +30719,17583134,Brooklyn,Williamsburg,40.71017,-73.941,Entire home/apt,220,3,9,0.59,1,0 +30720,25939370,Manhattan,Chelsea,40.750679999999996,-73.99811,Entire home/apt,172,30,6,0.5,1,195 +30721,176051903,Brooklyn,Williamsburg,40.71832,-73.96354000000001,Entire home/apt,550,5,3,0.28,1,38 +30722,178266385,Brooklyn,Cypress Hills,40.68012,-73.89338000000001,Entire home/apt,800,1,3,0.21,1,362 +30723,178224519,Manhattan,Upper East Side,40.7813,-73.94675,Entire home/apt,162,30,0,,8,327 +30724,97262966,Queens,Forest Hills,40.71263,-73.85372,Entire home/apt,175,2,9,0.66,2,0 +30725,161899037,Queens,Flushing,40.75665,-73.83317,Entire home/apt,149,2,28,1.81,7,63 +30726,161899037,Queens,Flushing,40.75611,-73.83270999999999,Entire home/apt,149,2,28,1.78,7,74 +30727,25705033,Brooklyn,Williamsburg,40.70604,-73.93802,Entire home/apt,190,2,1,0.07,1,0 +30728,12089291,Manhattan,Lower East Side,40.7234,-73.99032,Entire home/apt,600,2,1,0.07,1,0 +30729,18825679,Brooklyn,Williamsburg,40.71586,-73.94044,Private room,96,2,9,0.77,1,0 +30730,151084261,Brooklyn,Williamsburg,40.71865,-73.94951,Private room,125,30,13,0.86,6,255 +30731,20333472,Manhattan,Upper East Side,40.765209999999996,-73.96491,Entire home/apt,166,2,2,0.13,1,0 +30732,22288459,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93472,Private room,45,1,5,0.33,2,0 +30733,83929557,Brooklyn,Prospect Heights,40.67657,-73.96465,Private room,75,2,7,4.2,1,17 +30734,3734637,Manhattan,East Harlem,40.792320000000004,-73.94634,Private room,30,4,5,0.33,3,0 +30735,45845050,Queens,Jackson Heights,40.75204,-73.88902,Private room,70,5,3,0.19,1,189 +30736,22866437,Manhattan,Upper West Side,40.779070000000004,-73.97887,Entire home/apt,300,2,2,0.13,2,0 +30737,1302843,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93663000000001,Entire home/apt,200,3,28,1.78,1,25 +30738,19909972,Manhattan,Two Bridges,40.71179,-73.99848,Private room,160,2,129,8.27,1,3 +30739,137916804,Manhattan,Washington Heights,40.85395,-73.93335,Entire home/apt,300,4,31,2.16,1,286 +30740,26921064,Manhattan,Hell's Kitchen,40.766009999999994,-73.98651,Private room,90,1,70,4.46,2,21 +30741,154965091,Manhattan,Hell's Kitchen,40.76934,-73.98782,Entire home/apt,375,2,22,1.65,4,77 +30742,178507107,Brooklyn,Bushwick,40.704840000000004,-73.92116999999999,Entire home/apt,100,2,7,0.45,1,0 +30743,37401126,Brooklyn,East Flatbush,40.640159999999995,-73.94057,Private room,50,2,35,2.22,4,296 +30744,178520748,Manhattan,East Village,40.730990000000006,-73.98477,Private room,89,1,114,7.97,1,38 +30745,113094141,Manhattan,Harlem,40.80442,-73.95629,Private room,60,1,77,4.97,1,132 +30746,31427834,Brooklyn,Bushwick,40.68868,-73.90595,Entire home/apt,100,1,13,1.16,1,34 +30747,178543960,Brooklyn,Greenpoint,40.72161,-73.94115,Private room,65,30,3,0.19,10,341 +30748,110965771,Queens,Flushing,40.77241,-73.8238,Private room,100,1,0,,7,71 +30749,176001804,Brooklyn,Prospect-Lefferts Gardens,40.659240000000004,-73.94959,Entire home/apt,125,2,68,4.45,1,290 +30750,110965771,Queens,Flushing,40.77337,-73.82500999999999,Private room,100,2,0,,7,0 +30751,178543960,Brooklyn,Greenpoint,40.72104,-73.93985,Shared room,35,30,3,0.19,10,365 +30752,5962328,Queens,Flushing,40.76035,-73.82181,Entire home/apt,85,30,3,0.2,15,256 +30753,16158622,Brooklyn,Williamsburg,40.71725,-73.95704,Private room,86,2,34,2.34,1,156 +30754,55339775,Brooklyn,East Flatbush,40.65202,-73.95104,Entire home/apt,30,4,0,,1,0 +30755,40381599,Manhattan,Upper West Side,40.769859999999994,-73.98196999999999,Private room,600,1,0,,1,199 +30756,178473107,Manhattan,Harlem,40.83093,-73.94724000000001,Private room,99,1,10,0.96,6,31 +30757,4335164,Manhattan,Washington Heights,40.83963,-73.93512,Entire home/apt,50,1,12,0.75,1,0 +30758,8662157,Manhattan,Harlem,40.80551,-73.94905,Entire home/apt,270,3,23,1.56,1,17 +30759,178665352,Queens,Jackson Heights,40.75122,-73.87977,Entire home/apt,195,3,23,1.49,1,302 +30760,116839989,Manhattan,Lower East Side,40.72051,-73.98357,Entire home/apt,110,30,54,3.4,5,193 +30761,178473107,Manhattan,Harlem,40.829609999999995,-73.9474,Private room,80,1,11,0.92,6,0 +30762,178675800,Manhattan,East Harlem,40.79504,-73.93495,Private room,85,6,2,0.14,1,0 +30763,26502283,Manhattan,East Village,40.7211,-73.97966,Entire home/apt,125,1,14,0.89,1,0 +30764,178654047,Brooklyn,Williamsburg,40.71297,-73.94242,Entire home/apt,190,1,0,,1,53 +30765,21012470,Brooklyn,Bushwick,40.70329,-73.92213000000001,Private room,75,1,20,1.27,1,89 +30766,17129810,Brooklyn,Columbia St,40.68183,-74.00369,Private room,55,2,7,0.53,5,188 +30767,178696800,Brooklyn,Crown Heights,40.67825,-73.94748,Private room,35,1,45,2.83,1,28 +30768,62127615,Brooklyn,Greenpoint,40.72858,-73.95815999999999,Private room,48,7,2,0.14,1,0 +30769,4427689,Manhattan,Hell's Kitchen,40.76318,-73.98838,Private room,129,5,94,5.95,2,110 +30770,23255533,Manhattan,Theater District,40.76155,-73.98619000000001,Private room,139,3,10,1.24,1,189 +30771,4427689,Manhattan,Hell's Kitchen,40.76489,-73.98822,Private room,129,5,97,6.11,2,114 +30772,178743973,Manhattan,SoHo,40.71989,-74.00113,Entire home/apt,400,30,0,,1,90 +30773,791011,Manhattan,West Village,40.738170000000004,-74.00768000000001,Entire home/apt,240,2,0,,1,81 +30774,3654624,Brooklyn,Bedford-Stuyvesant,40.680890000000005,-73.91112,Entire home/apt,85,5,28,2.28,1,32 +30775,116839989,Queens,Astoria,40.759409999999995,-73.92498,Entire home/apt,105,30,25,2.54,5,235 +30776,28373054,Brooklyn,Williamsburg,40.71201,-73.95881999999999,Entire home/apt,600,3,14,0.98,1,167 +30777,178636681,Brooklyn,Williamsburg,40.71097,-73.95895,Entire home/apt,110,3,11,1.05,1,90 +30778,14934881,Brooklyn,Williamsburg,40.72156,-73.96043,Entire home/apt,280,6,6,0.39,1,11 +30779,2793254,Brooklyn,Bushwick,40.703359999999996,-73.91998000000001,Private room,75,3,25,1.62,3,167 +30780,7138847,Brooklyn,Bedford-Stuyvesant,40.679959999999994,-73.94085,Private room,50,2,1,0.07,3,0 +30781,173230953,Brooklyn,Crown Heights,40.67327,-73.94403,Private room,40,2,7,0.46,1,0 +30782,34404232,Queens,Astoria,40.76143,-73.92121999999999,Private room,60,1,24,1.5,1,0 +30783,15784251,Manhattan,Little Italy,40.71907,-73.99698000000001,Entire home/apt,375,3,7,0.46,1,0 +30784,101438864,Manhattan,Upper West Side,40.79368,-73.96373,Private room,30,1,89,6.03,2,94 +30785,175507083,Brooklyn,Prospect-Lefferts Gardens,40.66114,-73.9498,Shared room,45,2,2,0.13,1,35 +30786,178986313,Brooklyn,Bedford-Stuyvesant,40.69174,-73.95921,Entire home/apt,100,1,91,5.8,1,79 +30787,149073048,Brooklyn,Bushwick,40.698370000000004,-73.93045,Private room,67,5,34,2.31,1,102 +30788,72142281,Manhattan,East Village,40.7293,-73.98488,Entire home/apt,200,1,29,1.87,1,176 +30789,94219511,Manhattan,Harlem,40.800959999999996,-73.9542,Private room,65,6,12,0.75,2,8 +30790,148130073,Staten Island,Grymes Hill,40.61758,-74.09111999999999,Entire home/apt,110,2,69,4.47,1,19 +30791,178303634,Brooklyn,South Slope,40.665009999999995,-73.98992,Private room,49,6,48,3.13,2,5 +30792,151124394,Manhattan,Harlem,40.8282,-73.94973,Private room,39,30,2,0.16,1,0 +30793,70307702,Manhattan,Chelsea,40.73959,-74.00105,Entire home/apt,199,3,36,2.44,1,293 +30794,179010070,Queens,Woodside,40.75608,-73.90535,Private room,65,3,23,1.49,1,354 +30795,63417081,Manhattan,Harlem,40.823809999999995,-73.94582,Private room,45,30,1,0.1,8,318 +30796,13873488,Manhattan,Hell's Kitchen,40.76277,-73.99320999999999,Entire home/apt,196,3,7,0.46,1,0 +30797,38615080,Brooklyn,Crown Heights,40.672270000000005,-73.95246,Private room,65,3,24,4.59,1,9 +30798,12387523,Brooklyn,Bedford-Stuyvesant,40.68033,-73.94248,Private room,47,2,27,2.05,1,272 +30799,2478424,Queens,Elmhurst,40.738409999999995,-73.88276,Entire home/apt,110,4,17,1.54,1,94 +30800,90534522,Manhattan,Murray Hill,40.74792,-73.97979000000001,Entire home/apt,240,3,6,0.4,1,0 +30801,4113106,Manhattan,Harlem,40.80397,-73.95615,Private room,45,1,60,3.85,2,195 +30802,5091423,Brooklyn,East Flatbush,40.64747,-73.95189,Entire home/apt,225,3,1,0.06,1,26 +30803,6527776,Brooklyn,Williamsburg,40.71549,-73.95579000000001,Entire home/apt,200,2,13,1.01,1,3 +30804,9574706,Brooklyn,Carroll Gardens,40.67873,-73.99564000000001,Private room,45,5,2,0.14,1,0 +30805,29100568,Manhattan,Theater District,40.76185,-73.9816,Entire home/apt,171,20,1,0.08,4,0 +30806,179187831,Manhattan,Chelsea,40.75031,-73.99336,Entire home/apt,70,1,0,,1,364 +30807,173386569,Manhattan,Stuyvesant Town,40.73101,-73.97346999999999,Entire home/apt,170,1,17,1.12,2,0 +30808,25497297,Queens,Long Island City,40.74643,-73.94693000000001,Entire home/apt,125,2,10,0.84,1,8 +30809,27703207,Brooklyn,Prospect-Lefferts Gardens,40.65844,-73.94832,Entire home/apt,45,5,3,0.19,1,0 +30810,16308520,Manhattan,Tribeca,40.71359,-74.01049,Entire home/apt,150,3,8,0.51,1,66 +30811,14476858,Brooklyn,Sunset Park,40.663070000000005,-73.99481999999999,Private room,106,2,1,0.06,1,0 +30812,64060155,Brooklyn,South Slope,40.66711,-73.98340999999999,Private room,80,10,0,,1,0 +30813,140057330,Queens,Ridgewood,40.696509999999996,-73.9057,Private room,50,1,37,2.39,7,45 +30814,140057330,Queens,Ridgewood,40.69729,-73.90571,Private room,50,1,22,1.53,7,59 +30815,18768995,Brooklyn,Bay Ridge,40.62989,-74.02345,Private room,90,3,34,2.24,1,231 +30816,154302755,Brooklyn,Bedford-Stuyvesant,40.68907,-73.92806,Private room,60,2,42,2.8,5,324 +30817,176246555,Brooklyn,Williamsburg,40.70743,-73.9416,Entire home/apt,154,3,5,0.35,1,80 +30818,179233527,Manhattan,Upper West Side,40.79806,-73.97416,Private room,80,2,22,1.44,1,0 +30819,9808458,Bronx,Kingsbridge,40.87257,-73.9009,Private room,65,1,2,0.21,4,364 +30820,9808458,Bronx,Kingsbridge,40.87287,-73.90156999999999,Private room,65,2,0,,4,365 +30821,11274299,Manhattan,East Village,40.72603,-73.98369,Private room,149,3,1,0.06,2,0 +30822,37626695,Brooklyn,Williamsburg,40.71113,-73.95675,Private room,66,10,1,0.08,1,0 +30823,27615247,Brooklyn,Midwood,40.62301,-73.96253,Entire home/apt,150,14,3,0.24,3,3 +30824,152228055,Manhattan,Nolita,40.72233,-73.99574,Entire home/apt,2990,2,69,4.36,1,237 +30825,21721684,Brooklyn,Bushwick,40.68469,-73.90760999999999,Entire home/apt,69,3,64,4.06,2,219 +30826,81510823,Brooklyn,Bedford-Stuyvesant,40.68829,-73.93184000000001,Shared room,30,1,99,6.31,1,67 +30827,178543960,Brooklyn,Greenpoint,40.72177,-73.93995,Private room,65,30,2,0.13,10,341 +30828,29326392,Brooklyn,Bushwick,40.69941,-73.93633,Private room,31,2,1,0.06,1,0 +30829,6570552,Brooklyn,Bedford-Stuyvesant,40.68424,-73.93851,Entire home/apt,120,5,2,0.2,1,301 +30830,52443525,Manhattan,Lower East Side,40.71928,-73.98739,Entire home/apt,140,2,23,1.51,1,0 +30831,3563802,Brooklyn,Park Slope,40.66799,-73.98161999999999,Private room,55,2,2,0.13,1,0 +30832,178059867,Queens,Flushing,40.756190000000004,-73.80481999999999,Private room,50,1,62,3.9,3,172 +30833,13754273,Brooklyn,Williamsburg,40.71999,-73.9417,Private room,60,2,6,0.45,1,0 +30834,12243051,Manhattan,Financial District,40.70791,-74.00545,Entire home/apt,179,29,2,0.36,96,333 +30835,179366206,Queens,Astoria,40.76021,-73.9167,Private room,45,30,5,0.56,1,101 +30836,12243051,Manhattan,Financial District,40.70852,-74.0062,Entire home/apt,187,29,1,0.71,96,332 +30837,179376942,Manhattan,Washington Heights,40.845909999999996,-73.94059,Private room,50,2,2,0.14,1,0 +30838,12243051,Manhattan,Financial District,40.70648,-74.00499,Entire home/apt,179,29,0,,96,333 +30839,10951481,Brooklyn,Williamsburg,40.71312,-73.9634,Entire home/apt,249,2,62,3.94,5,32 +30840,12243051,Manhattan,Financial District,40.70831,-74.00619,Entire home/apt,182,29,2,0.21,96,259 +30841,179387087,Brooklyn,Bedford-Stuyvesant,40.67945,-73.90841999999999,Private room,40,2,20,1.28,3,3 +30842,16597520,Queens,Astoria,40.76641,-73.9193,Private room,60,3,6,0.42,1,156 +30843,146326976,Queens,Astoria,40.7577,-73.91639,Private room,50,3,33,2.22,1,282 +30844,179397918,Brooklyn,Bedford-Stuyvesant,40.68311,-73.93124,Entire home/apt,175,2,60,3.88,1,297 +30845,8610441,Brooklyn,Gowanus,40.67705,-73.99655,Entire home/apt,195,2,60,3.87,1,258 +30846,179387087,Brooklyn,Bedford-Stuyvesant,40.679359999999996,-73.9072,Private room,40,2,41,2.59,3,0 +30847,179416315,Bronx,University Heights,40.85989,-73.91189,Private room,60,2,7,0.46,2,156 +30848,179442361,Brooklyn,Midwood,40.61962,-73.96262,Private room,75,3,5,0.36,1,67 +30849,2375125,Brooklyn,East Flatbush,40.63297,-73.93781,Private room,40,2,1,0.07,1,0 +30850,10132406,Brooklyn,Williamsburg,40.71015,-73.96591,Entire home/apt,150,3,2,0.14,1,0 +30851,26921064,Manhattan,Hell's Kitchen,40.76665,-73.98568,Entire home/apt,115,2,0,,2,0 +30852,24033115,Manhattan,Upper West Side,40.802,-73.96605,Private room,72,1,5,0.41,1,32 +30853,23839989,Brooklyn,Bedford-Stuyvesant,40.68215,-73.93644,Entire home/apt,95,4,4,0.31,1,9 +30854,8685999,Brooklyn,Bedford-Stuyvesant,40.68229,-73.93261,Entire home/apt,100,3,48,3.08,1,0 +30855,479432,Brooklyn,Bedford-Stuyvesant,40.67638,-73.91105999999999,Private room,75,1,38,2.61,1,0 +30856,15356183,Manhattan,West Village,40.73417,-74.00604,Entire home/apt,250,2,5,0.63,1,0 +30857,3201625,Manhattan,Chinatown,40.71403,-73.99076,Entire home/apt,1000,1,2,0.25,1,365 +30858,29099312,Brooklyn,Bushwick,40.696529999999996,-73.9125,Private room,60,1,3,0.22,1,0 +30859,175315624,Manhattan,West Village,40.7317,-74.00708,Entire home/apt,163,7,7,0.48,1,0 +30860,6438952,Manhattan,Hell's Kitchen,40.76191,-73.99199,Private room,75,7,0,,1,0 +30861,179594570,Brooklyn,Bushwick,40.693090000000005,-73.92399999999999,Private room,48,4,1,0.07,1,0 +30862,2776635,Brooklyn,Gowanus,40.68208,-73.98093,Private room,100,7,0,,1,0 +30863,23422026,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93715999999999,Entire home/apt,125,3,0,,1,125 +30864,100238132,Manhattan,Midtown,40.75181,-73.97137,Entire home/apt,339,3,34,2.26,12,0 +30865,20134221,Brooklyn,Flatbush,40.6478,-73.96831,Private room,40,3,10,0.63,1,0 +30866,179619904,Queens,South Ozone Park,40.67581,-73.82304,Private room,60,1,72,4.64,3,175 +30867,100238132,Manhattan,Midtown,40.75316,-73.97163,Entire home/apt,339,3,34,2.27,12,0 +30868,179619904,Queens,South Ozone Park,40.6736,-73.82092,Private room,65,2,16,1.15,3,180 +30869,100238132,Manhattan,Midtown,40.75307,-73.97162,Entire home/apt,269,3,5,0.35,12,0 +30870,100238132,Manhattan,Midtown,40.75226,-73.97355999999999,Entire home/apt,269,3,5,0.36,12,0 +30871,100238132,Manhattan,Midtown,40.75293,-73.97315,Entire home/apt,269,3,5,0.38,12,0 +30872,179634496,Manhattan,East Harlem,40.79983,-73.94481,Entire home/apt,300,2,0,,1,0 +30873,43275413,Manhattan,Midtown,40.7464,-73.97986999999999,Entire home/apt,180,2,18,1.22,1,4 +30874,92696117,Manhattan,Hell's Kitchen,40.76396,-73.99185,Entire home/apt,200,4,47,3.31,1,0 +30875,1429710,Manhattan,Midtown,40.75693,-73.97078,Shared room,63,1,18,1.2,1,56 +30876,105699183,Manhattan,Harlem,40.82718,-73.94883,Entire home/apt,65,6,2,0.13,2,9 +30877,179255065,Manhattan,Hell's Kitchen,40.7612,-73.98886,Entire home/apt,300,1,118,7.5,1,28 +30878,24288568,Brooklyn,Bedford-Stuyvesant,40.69506,-73.93556,Private room,100,1,54,3.45,1,45 +30879,1630247,Brooklyn,Park Slope,40.6785,-73.98209,Entire home/apt,95,2,9,0.58,1,0 +30880,179677211,Bronx,Morris Park,40.84857,-73.85976,Entire home/apt,190,1,19,1.47,3,8 +30881,1338262,Brooklyn,Boerum Hill,40.68782,-73.99110999999999,Entire home/apt,300,7,1,0.16,3,224 +30882,83967077,Queens,Long Island City,40.75955,-73.93293,Entire home/apt,231,3,4,0.27,1,0 +30883,179765779,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93045,Entire home/apt,125,3,80,5.41,1,269 +30884,179778880,Brooklyn,Sunset Park,40.66162,-73.99129,Private room,45,2,45,2.95,2,337 +30885,20585393,Manhattan,Upper West Side,40.800909999999995,-73.95912,Private room,64,1,4,0.26,1,0 +30886,22710535,Brooklyn,Bedford-Stuyvesant,40.68659,-73.92949,Private room,150,1,1,0.06,1,0 +30887,17315514,Brooklyn,Sunset Park,40.66168,-73.99826999999999,Private room,50,7,1,0.07,2,0 +30888,179789963,Manhattan,Midtown,40.74564,-73.98181,Entire home/apt,115,3,3,0.2,1,0 +30889,39531110,Brooklyn,Gravesend,40.606629999999996,-73.9821,Private room,29,2,1,0.08,1,0 +30890,15654962,Queens,Jackson Heights,40.750240000000005,-73.88984,Private room,50,1,0,,1,0 +30891,132485563,Manhattan,Upper East Side,40.770379999999996,-73.95273,Private room,105,5,2,0.14,2,342 +30892,165257273,Queens,Flushing,40.77244,-73.80060999999999,Private room,40,30,1,0.11,3,342 +30893,165257273,Queens,Flushing,40.77193,-73.79966,Private room,50,30,5,0.4,3,296 +30894,19472344,Manhattan,East Harlem,40.80016,-73.9383,Entire home/apt,199,21,14,0.91,1,0 +30895,179825270,Queens,Flushing,40.74309,-73.82472,Private room,49,1,53,3.47,1,341 +30896,1966537,Brooklyn,Williamsburg,40.714490000000005,-73.96265,Entire home/apt,105,2,13,0.82,1,0 +30897,1903663,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95783,Private room,50,3,5,0.32,2,365 +30898,4162797,Brooklyn,Bushwick,40.70139,-73.92567,Private room,45,10,2,0.19,1,13 +30899,6900478,Brooklyn,Greenpoint,40.72977,-73.95125,Private room,95,1,9,3.42,2,54 +30900,171198420,Brooklyn,East Flatbush,40.65381,-73.94893,Private room,47,3,19,2.38,2,12 +30901,5371388,Manhattan,Inwood,40.868159999999996,-73.93131,Entire home/apt,100,1,3,0.22,1,5 +30902,178543960,Brooklyn,Greenpoint,40.720290000000006,-73.94,Private room,65,30,1,0.3,10,341 +30903,14743478,Manhattan,Hell's Kitchen,40.7653,-73.98737,Private room,105,3,42,2.71,1,286 +30904,173362161,Brooklyn,Flatbush,40.64293,-73.96863,Private room,50,2,51,3.29,6,176 +30905,282655,Brooklyn,Flatbush,40.64866,-73.96986,Entire home/apt,175,3,52,3.58,3,222 +30906,17772042,Brooklyn,Downtown Brooklyn,40.69177,-73.98549,Entire home/apt,195,3,0,,1,0 +30907,13020369,Brooklyn,Williamsburg,40.71201,-73.96048,Entire home/apt,225,4,0,,1,0 +30908,179619904,Queens,South Ozone Park,40.67393,-73.82003,Private room,75,1,124,7.98,3,160 +30909,5628508,Brooklyn,Bedford-Stuyvesant,40.68977,-73.93773,Private room,45,2,7,0.46,1,0 +30910,80262218,Manhattan,Upper East Side,40.77172,-73.95427,Entire home/apt,125,30,5,0.34,3,283 +30911,90878763,Brooklyn,Midwood,40.62399,-73.96324,Private room,75,2,0,,2,0 +30912,37806504,Brooklyn,Bushwick,40.700720000000004,-73.91359,Private room,60,3,50,3.33,1,85 +30913,180005361,Manhattan,Upper East Side,40.759170000000005,-73.95916,Entire home/apt,148,1,55,3.59,1,123 +30914,180008916,Brooklyn,Bedford-Stuyvesant,40.68246,-73.94861,Entire home/apt,50,1,21,1.75,2,0 +30915,97964040,Brooklyn,Boerum Hill,40.68417,-73.98215,Entire home/apt,150,1,3,0.2,1,0 +30916,18598201,Manhattan,East Village,40.7235,-73.98534000000001,Entire home/apt,1000,3,55,3.5,1,37 +30917,15817123,Brooklyn,Sunset Park,40.66169,-73.9979,Entire home/apt,135,5,56,3.78,3,10 +30918,58390724,Brooklyn,Midwood,40.62923,-73.95746,Entire home/apt,140,2,19,1.23,1,165 +30919,10661558,Manhattan,Upper East Side,40.77519,-73.95153,Private room,159,1,67,4.29,4,0 +30920,65059624,Manhattan,East Harlem,40.80942,-73.93701,Entire home/apt,50,3,118,8.06,1,4 +30921,121379512,Bronx,Longwood,40.82434,-73.88705,Private room,44,20,0,,2,0 +30922,30021975,Manhattan,Harlem,40.80731,-73.95155,Private room,49,2,2,0.15,1,1 +30923,180126576,Manhattan,East Village,40.72574,-73.98272,Entire home/apt,600,5,70,4.49,3,6 +30924,128785861,Brooklyn,Williamsburg,40.71622,-73.95364000000001,Private room,70,1,13,0.93,2,0 +30925,19640594,Manhattan,Battery Park City,40.70902,-74.01686,Entire home/apt,295,75,0,,1,55 +30926,46498586,Brooklyn,Bushwick,40.69603,-73.92537,Entire home/apt,200,2,2,2.0,1,32 +30927,180154611,Brooklyn,Canarsie,40.638059999999996,-73.90024,Private room,49,2,16,1.24,3,346 +30928,10606156,Brooklyn,Greenpoint,40.725809999999996,-73.95376,Entire home/apt,175,5,0,,2,0 +30929,17631089,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93518,Private room,45,6,2,0.15,1,0 +30930,127437059,Brooklyn,Crown Heights,40.66685,-73.93828,Private room,35,2,26,1.68,1,79 +30931,180180858,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94353000000001,Entire home/apt,180,5,7,0.65,1,35 +30932,154266431,Manhattan,East Village,40.72507,-73.9827,Private room,100,3,45,3.53,3,6 +30933,180208872,Brooklyn,Canarsie,40.63382,-73.90502,Entire home/apt,155,1,82,6.97,1,302 +30934,180212824,Manhattan,Upper East Side,40.765159999999995,-73.95841,Private room,80,1,23,1.46,5,0 +30935,180219381,Manhattan,East Harlem,40.78771,-73.95143,Private room,70,2,73,4.69,1,260 +30936,79298323,Queens,Maspeth,40.73273,-73.89357,Private room,38,3,15,1.03,3,163 +30937,157141199,Manhattan,Inwood,40.86058,-73.9274,Private room,70,5,5,0.41,2,90 +30938,169166409,Queens,Astoria,40.76801,-73.92673,Private room,38,1,40,2.61,2,48 +30939,32909393,Manhattan,Upper West Side,40.802279999999996,-73.96334,Private room,75,2,70,4.6,1,1 +30940,88394152,Manhattan,Upper East Side,40.77574,-73.94638,Entire home/apt,120,3,20,1.33,1,157 +30941,25364341,Manhattan,Upper West Side,40.77669,-73.9789,Entire home/apt,200,3,1,0.07,1,16 +30942,6111084,Brooklyn,Williamsburg,40.704879999999996,-73.94301,Entire home/apt,160,3,4,0.35,2,46 +30943,105124052,Queens,Rosedale,40.65882,-73.7332,Private room,28,1,35,2.25,1,43 +30944,7988008,Manhattan,Chinatown,40.713359999999994,-73.99263,Entire home/apt,210,1,16,1.04,1,318 +30945,180347935,Queens,Queens Village,40.72822,-73.74119,Shared room,37,1,0,,1,0 +30946,178303634,Brooklyn,South Slope,40.66429,-73.9906,Entire home/apt,120,5,2,0.13,2,0 +30947,15538912,Brooklyn,Crown Heights,40.67395,-73.94874,Entire home/apt,77,3,3,0.2,1,0 +30948,50698186,Manhattan,Financial District,40.70851,-74.0137,Private room,80,2,4,0.27,1,0 +30949,3894475,Brooklyn,Park Slope,40.6678,-73.98106,Entire home/apt,150,2,0,,3,0 +30950,180379038,Brooklyn,Williamsburg,40.708079999999995,-73.93964,Entire home/apt,124,1,2,0.13,1,0 +30951,180378787,Brooklyn,Bushwick,40.7069,-73.92284000000001,Private room,30,3,1,0.07,1,0 +30952,180380802,Manhattan,Harlem,40.81312,-73.95364000000001,Private room,65,1,11,0.71,4,365 +30953,180380802,Manhattan,Harlem,40.81205,-73.95322,Private room,65,1,4,0.28,4,365 +30954,64194344,Brooklyn,Bushwick,40.702259999999995,-73.92895,Private room,55,1,0,,1,0 +30955,180467103,Manhattan,Harlem,40.82847,-73.93701,Entire home/apt,90,7,1,0.13,1,24 +30956,39865251,Brooklyn,Clinton Hill,40.68235,-73.96384,Entire home/apt,225,2,1,0.07,1,0 +30957,82834850,Queens,Long Island City,40.7546,-73.93643,Private room,48,6,2,0.13,1,0 +30958,10218953,Manhattan,Harlem,40.815540000000006,-73.94144,Private room,39,2,12,0.81,1,4 +30959,4447548,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94453,Entire home/apt,88,2,8,0.56,1,18 +30960,78441349,Brooklyn,East Flatbush,40.6485,-73.95156999999999,Entire home/apt,159,2,1,0.16,3,191 +30961,68350188,Brooklyn,Bushwick,40.70252,-73.91943,Entire home/apt,99,4,10,0.72,1,0 +30962,4841646,Queens,Elmhurst,40.72806,-73.87572,Private room,40,1,24,1.68,1,0 +30963,20855056,Queens,Ditmars Steinway,40.77694,-73.90845999999999,Private room,35,4,5,0.32,1,0 +30964,160325910,Brooklyn,Prospect-Lefferts Gardens,40.661390000000004,-73.96231,Entire home/apt,115,4,0,,1,0 +30965,180548427,Manhattan,Midtown,40.74562,-73.98510999999999,Entire home/apt,620,4,38,2.52,1,309 +30966,135510002,Manhattan,Harlem,40.81498,-73.94622,Shared room,75,2,8,0.52,1,0 +30967,303939,Staten Island,Tompkinsville,40.63485,-74.08539,Private room,37,2,53,3.4,6,341 +30968,44352618,Manhattan,SoHo,40.72613,-74.00188,Entire home/apt,200,2,37,2.51,1,8 +30969,2373120,Brooklyn,Bushwick,40.69999,-73.92806999999999,Private room,75,5,9,0.6,2,336 +30970,15344412,Staten Island,New Springville,40.57942,-74.15505999999999,Private room,50,1,38,2.64,3,88 +30971,90629446,Brooklyn,Crown Heights,40.67237,-73.95191,Private room,120,1,0,,1,0 +30972,64892392,Manhattan,East Village,40.729209999999995,-73.98629,Entire home/apt,95,3,5,0.37,1,5 +30973,19202612,Brooklyn,Canarsie,40.6302,-73.8997,Entire home/apt,80,3,13,0.86,1,0 +30974,53778891,Queens,Kew Gardens,40.71295,-73.82866999999999,Private room,50,2,20,1.4,1,334 +30975,167098774,Brooklyn,Canarsie,40.637570000000004,-73.89205,Private room,55,2,27,1.74,3,362 +30976,180720187,Manhattan,Washington Heights,40.83432,-73.94457,Private room,48,3,3,0.19,1,0 +30977,16275624,Brooklyn,Bedford-Stuyvesant,40.68238,-73.92918,Entire home/apt,100,3,3,0.2,2,0 +30978,180744564,Brooklyn,Brighton Beach,40.58019,-73.95403,Entire home/apt,99,1,36,2.39,1,350 +30979,117675375,Manhattan,East Harlem,40.8003,-73.93829000000001,Private room,74,7,26,1.7,2,26 +30980,14856361,Brooklyn,Bushwick,40.70063,-73.92981,Private room,65,1,59,4.13,1,43 +30981,105315535,Brooklyn,Prospect Heights,40.67617,-73.96636,Entire home/apt,158,30,2,0.2,3,5 +30982,9263105,Staten Island,New Brighton,40.64393,-74.09312,Private room,40,30,1,1.0,2,71 +30983,100965471,Manhattan,Midtown,40.75247,-73.9695,Entire home/apt,119,2,3,0.2,1,0 +30984,180781689,Queens,Rockaway Beach,40.58773,-73.81367,Entire home/apt,325,1,61,4.49,2,129 +30985,16962957,Manhattan,East Village,40.72845,-73.97927,Entire home/apt,215,1,52,3.34,4,51 +30986,15266695,Brooklyn,Bensonhurst,40.62062,-73.99837,Entire home/apt,120,7,0,,2,232 +30987,4094332,Brooklyn,East Flatbush,40.65478,-73.95264,Private room,65,3,51,3.71,1,62 +30988,20805,Brooklyn,Crown Heights,40.669959999999996,-73.956,Entire home/apt,90,4,0,,1,0 +30989,111978355,Queens,Elmhurst,40.73421,-73.87387,Entire home/apt,230,2,30,2.97,2,51 +30990,111978355,Queens,Elmhurst,40.73276,-73.87252,Entire home/apt,188,2,35,2.26,2,140 +30991,31671247,Manhattan,East Harlem,40.79398,-73.9397,Entire home/apt,140,2,17,1.24,1,7 +30992,175019394,Queens,Jamaica,40.67048,-73.77832,Private room,60,1,138,8.87,6,177 +30993,51038,Brooklyn,Clinton Hill,40.69415,-73.96788000000001,Entire home/apt,95,2,69,4.52,6,327 +30994,180892493,Manhattan,Greenwich Village,40.72947,-73.9995,Private room,100,1,1,0.06,1,0 +30995,180897611,Manhattan,East Village,40.726420000000005,-73.98402,Entire home/apt,175,2,5,0.34,1,15 +30996,18168381,Brooklyn,Bedford-Stuyvesant,40.692859999999996,-73.93235,Private room,45,3,7,0.46,1,0 +30997,25096301,Brooklyn,Fort Greene,40.68659,-73.97556999999999,Private room,70,2,9,0.63,2,3 +30998,40218949,Manhattan,East Harlem,40.79931,-73.94726,Private room,60,1,35,2.34,1,94 +30999,20154516,Manhattan,Upper West Side,40.79566,-73.96859,Private room,95,6,22,1.47,1,0 +31000,49219601,Brooklyn,Fort Hamilton,40.62225,-74.03444,Entire home/apt,70,1,2,0.19,1,0 +31001,16094075,Manhattan,East Village,40.72578,-73.98763000000001,Entire home/apt,119,3,8,0.58,1,41 +31002,32720219,Brooklyn,Williamsburg,40.708940000000005,-73.94333,Private room,120,4,10,0.66,2,8 +31003,10828579,Manhattan,East Harlem,40.79815,-73.93906,Entire home/apt,115,7,7,0.48,2,0 +31004,154860771,Manhattan,Upper East Side,40.77989,-73.95159,Entire home/apt,125,1,21,1.44,1,25 +31005,14795719,Brooklyn,Bedford-Stuyvesant,40.684909999999995,-73.93399000000001,Private room,45,6,30,2.06,1,21 +31006,180945232,Manhattan,Hell's Kitchen,40.75605,-73.99540999999999,Private room,89,3,9,0.58,1,32 +31007,4365496,Brooklyn,Williamsburg,40.70989,-73.96231,Private room,75,2,43,3.04,2,0 +31008,12307951,Manhattan,Tribeca,40.719159999999995,-74.00442,Entire home/apt,240,3,9,0.63,1,17 +31009,2496897,Brooklyn,East Flatbush,40.64282,-73.94497,Entire home/apt,199,4,0,,1,13 +31010,23831257,Brooklyn,Bedford-Stuyvesant,40.6807,-73.92917,Private room,40,7,6,0.45,2,216 +31011,179382251,Queens,Ditmars Steinway,40.772890000000004,-73.91293,Entire home/apt,100,7,24,1.99,1,260 +31012,56917612,Brooklyn,Bushwick,40.69781,-73.92093,Private room,60,1,16,1.2,1,21 +31013,91427536,Brooklyn,Bushwick,40.69642,-73.9243,Private room,45,5,5,0.58,2,3 +31014,143052745,Bronx,Mott Haven,40.80863,-73.92121,Private room,50,1,33,2.14,4,75 +31015,4181378,Brooklyn,Bedford-Stuyvesant,40.68967,-73.9366,Entire home/apt,175,2,20,1.67,2,357 +31016,180991373,Queens,Flushing,40.743,-73.82335,Private room,60,1,38,2.68,5,0 +31017,5044922,Queens,Astoria,40.7637,-73.9268,Entire home/apt,99,7,3,0.27,1,0 +31018,139124384,Brooklyn,Williamsburg,40.71168,-73.94058000000001,Private room,70,20,26,2.15,1,0 +31019,23989761,Manhattan,Upper West Side,40.79094,-73.97459,Entire home/apt,260,1,38,2.56,1,86 +31020,161899037,Queens,Flushing,40.75671,-73.83337,Entire home/apt,159,2,39,2.68,7,61 +31021,181108819,Staten Island,Clifton,40.61804,-74.0861,Entire home/apt,60,1,54,3.48,1,361 +31022,81022597,Manhattan,Morningside Heights,40.809470000000005,-73.96356999999999,Entire home/apt,100,3,0,,1,0 +31023,29127683,Manhattan,East Village,40.73048,-73.98269,Entire home/apt,78,3,4,0.31,1,13 +31024,22002554,Brooklyn,Bushwick,40.70057,-73.92385,Entire home/apt,180,7,3,0.22,1,1 +31025,17132917,Manhattan,Upper West Side,40.79719,-73.97097,Entire home/apt,80,3,1,0.07,1,0 +31026,16835514,Brooklyn,Williamsburg,40.71607,-73.96365,Entire home/apt,250,3,16,1.05,1,41 +31027,1583742,Brooklyn,Boerum Hill,40.68503,-73.98232,Private room,50,2,31,2.04,1,0 +31028,35996743,Brooklyn,Boerum Hill,40.68958,-73.99141,Entire home/apt,118,2,3,0.21,1,0 +31029,100128949,Queens,Astoria,40.75465,-73.91356999999999,Shared room,42,1,54,3.48,4,66 +31030,21563231,Manhattan,Harlem,40.82632,-73.94637,Private room,69,3,7,0.46,1,172 +31031,8185223,Brooklyn,Bushwick,40.69558,-73.92578,Private room,42,90,0,,1,90 +31032,4227606,Manhattan,Midtown,40.75866,-73.98031999999999,Private room,100,3,13,0.88,2,0 +31033,116482644,Manhattan,Hell's Kitchen,40.764990000000004,-73.98888000000001,Private room,110,1,67,4.51,2,0 +31034,22923979,Brooklyn,Bedford-Stuyvesant,40.681490000000004,-73.93449,Entire home/apt,155,2,13,1.28,1,53 +31035,36576422,Queens,Forest Hills,40.71754,-73.83367,Entire home/apt,150,2,31,2.04,1,89 +31036,181300842,Manhattan,Greenwich Village,40.72925,-74.00041999999999,Entire home/apt,119,2,12,1.07,1,0 +31037,44292356,Manhattan,Chelsea,40.74648,-74.00265999999999,Private room,89,30,30,2.73,1,105 +31038,19445501,Manhattan,Upper East Side,40.76692,-73.95298000000001,Entire home/apt,399,2,20,1.38,1,78 +31039,44303500,Manhattan,Washington Heights,40.846340000000005,-73.93861,Entire home/apt,275,2,7,0.52,2,0 +31040,50545016,Brooklyn,Crown Heights,40.67695,-73.95554,Entire home/apt,150,21,1,0.06,1,0 +31041,13460416,Manhattan,Little Italy,40.7193,-73.99781999999999,Entire home/apt,140,2,6,0.41,1,0 +31042,181344112,Manhattan,Kips Bay,40.74346,-73.97827,Entire home/apt,199,2,8,0.54,1,0 +31043,32434287,Manhattan,Harlem,40.81787,-73.94286,Private room,65,3,1,0.07,1,0 +31044,47929235,Manhattan,East Harlem,40.78723,-73.94955999999999,Private room,100,7,68,4.39,1,77 +31045,6523823,Queens,Ditmars Steinway,40.77516,-73.91792,Entire home/apt,103,5,1,0.07,1,0 +31046,181372846,Manhattan,Little Italy,40.71841,-73.99753,Entire home/apt,649,3,38,2.59,1,199 +31047,178833771,Manhattan,Harlem,40.82356,-73.9401,Private room,85,2,29,1.93,3,78 +31048,106460468,Bronx,Kingsbridge,40.88004,-73.9,Private room,79,3,45,3.0,4,59 +31049,181397986,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93805,Entire home/apt,96,1,50,4.37,2,257 +31050,156955078,Brooklyn,Williamsburg,40.71952,-73.94165,Private room,70,2,41,2.73,1,14 +31051,161441682,Brooklyn,Boerum Hill,40.68708,-73.98389,Private room,57,1,9,0.6,1,0 +31052,18389214,Manhattan,Marble Hill,40.87621,-73.90997,Private room,274,3,3,0.24,1,238 +31053,2163683,Manhattan,Upper East Side,40.781240000000004,-73.94988000000001,Entire home/apt,250,50,0,,1,0 +31054,10222758,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94326,Private room,90,3,54,3.68,1,69 +31055,179436298,Brooklyn,Crown Heights,40.66555,-73.95496999999999,Entire home/apt,100,1,4,2.26,2,365 +31056,22543458,Manhattan,Kips Bay,40.74528,-73.97901,Entire home/apt,412,1,69,4.45,4,133 +31057,22543458,Manhattan,Kips Bay,40.74581,-73.9784,Entire home/apt,412,30,54,3.48,4,227 +31058,22543458,Manhattan,Kips Bay,40.74481,-73.97879,Entire home/apt,412,30,69,4.45,4,234 +31059,13899187,Queens,Glendale,40.70297,-73.895,Private room,50,7,0,,1,0 +31060,656978,Manhattan,West Village,40.7378,-74.0062,Entire home/apt,148,3,0,,1,0 +31061,179351232,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92784,Entire home/apt,120,2,6,0.41,1,334 +31062,19303369,Queens,Woodside,40.742670000000004,-73.90354,Private room,41,30,1,0.1,37,1 +31063,178473107,Manhattan,Harlem,40.83163,-73.94615,Private room,70,1,16,1.22,6,32 +31064,29582228,Manhattan,East Harlem,40.79309,-73.94346999999999,Private room,90,4,1,0.07,1,6 +31065,178473107,Manhattan,Harlem,40.8301,-73.94757,Private room,99,1,22,1.88,6,45 +31066,180661875,Manhattan,Upper West Side,40.768440000000005,-73.98333000000001,Private room,10,1,2,0.13,1,0 +31067,6568865,Queens,Forest Hills,40.72385,-73.85124,Entire home/apt,69,30,0,,1,99 +31068,11582560,Manhattan,Harlem,40.81503,-73.94341,Private room,54,5,22,1.45,1,5 +31069,55948559,Bronx,Pelham Gardens,40.86615,-73.84185,Private room,35,1,6,0.4,4,0 +31070,14573346,Brooklyn,Bushwick,40.70575,-73.92075,Private room,39,7,1,0.41,1,0 +31071,5740704,Manhattan,Washington Heights,40.84884,-73.93199,Entire home/apt,82,7,0,,1,0 +31072,279067,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95784,Private room,40,7,0,,1,53 +31073,162290659,Manhattan,Chinatown,40.71396,-73.99771,Entire home/apt,148,2,3,0.21,1,5 +31074,181651082,Queens,Rosedale,40.66021,-73.73709000000001,Private room,60,1,10,0.92,3,164 +31075,10642957,Brooklyn,Bedford-Stuyvesant,40.68056,-73.94685,Entire home/apt,130,3,2,0.15,1,0 +31076,4924711,Bronx,Concourse,40.819520000000004,-73.92844000000001,Entire home/apt,95,2,37,2.89,1,193 +31077,6636052,Manhattan,East Harlem,40.79805,-73.93526999999999,Private room,65,2,62,4.14,1,9 +31078,8612450,Brooklyn,Midwood,40.61379,-73.96826,Private room,20,3,4,0.26,1,18 +31079,181679481,Queens,Arverne,40.59746,-73.79688,Entire home/apt,190,3,21,1.49,1,327 +31080,17200390,Brooklyn,Bushwick,40.69211,-73.90634,Private room,60,12,0,,1,14 +31081,24591977,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9102,Private room,55,4,25,1.67,2,0 +31082,24591977,Brooklyn,Bedford-Stuyvesant,40.67749,-73.91084000000001,Private room,49,7,41,2.67,2,0 +31083,81013659,Manhattan,Upper East Side,40.7668,-73.954,Private room,100,3,64,4.19,2,275 +31084,14905006,Brooklyn,Kensington,40.63966,-73.9716,Private room,52,1,11,0.81,1,0 +31085,181711840,Bronx,Kingsbridge,40.86286,-73.9024,Private room,35,2,24,1.56,2,365 +31086,181710793,Queens,Flushing,40.76562,-73.8299,Private room,45,1,96,6.56,3,44 +31087,163703392,Brooklyn,Bushwick,40.69384,-73.90674,Private room,41,1,18,1.19,1,0 +31088,11542546,Manhattan,Hell's Kitchen,40.76125,-73.99859000000001,Entire home/apt,275,4,2,0.13,1,0 +31089,26930091,Manhattan,Financial District,40.70745,-74.01521,Entire home/apt,265,30,4,0.35,1,322 +31090,62176119,Manhattan,Upper West Side,40.77799,-73.9782,Entire home/apt,250,4,15,1.0,1,57 +31091,91332497,Manhattan,SoHo,40.722559999999994,-74.00018,Private room,130,2,3,0.48,1,0 +31092,14742776,Manhattan,Morningside Heights,40.80466,-73.96529,Private room,55,4,3,0.2,1,0 +31093,60617669,Manhattan,Midtown,40.75305,-73.96947,Entire home/apt,365,2,1,0.07,4,0 +31094,642986,Brooklyn,Bushwick,40.69876,-73.92968,Private room,70,15,6,0.42,1,321 +31095,20771576,Manhattan,East Harlem,40.78999,-73.95226,Shared room,30,3,5,0.32,2,0 +31096,117510818,Manhattan,Hell's Kitchen,40.76657,-73.98514,Entire home/apt,225,3,28,1.87,1,323 +31097,177353847,Manhattan,East Village,40.72468,-73.98996,Entire home/apt,650,4,11,0.75,4,164 +31098,1844352,Brooklyn,Williamsburg,40.71195,-73.94306999999999,Private room,95,5,10,0.7,2,0 +31099,177353847,Manhattan,East Village,40.72677,-73.9911,Entire home/apt,500,4,6,0.4,4,121 +31100,80770105,Brooklyn,Williamsburg,40.70505,-73.92936999999999,Entire home/apt,244,3,0,,1,345 +31101,177353847,Manhattan,East Village,40.726009999999995,-73.99086,Entire home/apt,750,4,19,1.27,4,151 +31102,7199637,Brooklyn,Vinegar Hill,40.70045,-73.98468000000001,Private room,46,3,4,0.26,1,0 +31103,181851683,Bronx,Morrisania,40.83252,-73.89811,Private room,40,1,0,,1,83 +31104,181858292,Manhattan,Upper West Side,40.77864,-73.98482,Entire home/apt,140,2,34,2.27,1,0 +31105,1261480,Manhattan,Harlem,40.806459999999994,-73.9517,Private room,1500,2,0,,2,192 +31106,67785571,Manhattan,Upper East Side,40.7682,-73.95323,Entire home/apt,140,1,3,0.2,1,0 +31107,8072802,Brooklyn,Williamsburg,40.71032,-73.94806,Entire home/apt,199,30,15,1.03,2,55 +31108,1767221,Manhattan,Harlem,40.82829,-73.94691,Shared room,80,5,0,,2,363 +31109,181885526,Queens,South Ozone Park,40.67344,-73.82096,Private room,69,1,91,5.95,1,90 +31110,85506502,Manhattan,Nolita,40.72226,-73.99616,Entire home/apt,188,30,3,0.2,1,0 +31111,36818639,Manhattan,Upper East Side,40.77023,-73.95212,Entire home/apt,100,2,6,0.39,1,0 +31112,4857962,Brooklyn,Bedford-Stuyvesant,40.69017,-73.94825,Entire home/apt,235,3,5,0.32,1,3 +31113,6792120,Manhattan,Upper East Side,40.76726,-73.96333,Entire home/apt,165,2,42,2.81,1,81 +31114,83231755,Queens,Jamaica,40.68055,-73.791,Entire home/apt,55,2,4,0.26,1,0 +31115,7941100,Manhattan,Harlem,40.814679999999996,-73.93735,Private room,65,2,1,0.07,1,156 +31116,2011899,Brooklyn,Crown Heights,40.66749,-73.95555999999999,Entire home/apt,70,45,1,0.09,1,2 +31117,154965091,Manhattan,Hell's Kitchen,40.76956,-73.98804,Private room,125,2,29,2.03,4,43 +31118,37995238,Brooklyn,Williamsburg,40.714259999999996,-73.9369,Entire home/apt,90,7,18,1.31,1,0 +31119,26315450,Brooklyn,Bedford-Stuyvesant,40.67941,-73.908,Private room,56,2,8,0.67,1,0 +31120,132856118,Manhattan,Midtown,40.76441,-73.98145,Entire home/apt,394,3,1,0.12,1,13 +31121,3156480,Brooklyn,Boerum Hill,40.686690000000006,-73.98498000000001,Entire home/apt,172,5,4,0.27,1,0 +31122,182039779,Brooklyn,Carroll Gardens,40.68123,-73.99424,Entire home/apt,100,3,7,0.47,1,0 +31123,28422,Manhattan,Upper East Side,40.773590000000006,-73.94967,Entire home/apt,80,181,0,,1,189 +31124,31404168,Manhattan,Hell's Kitchen,40.761790000000005,-73.99989000000001,Entire home/apt,142,20,4,0.3,1,0 +31125,142426920,Brooklyn,Prospect Heights,40.68215,-73.97001999999999,Entire home/apt,220,2,9,0.64,1,85 +31126,128610997,Manhattan,West Village,40.73233,-74.00244,Entire home/apt,264,10,17,1.19,2,94 +31127,41366374,Queens,Long Island City,40.75047,-73.9408,Entire home/apt,150,1,0,,1,0 +31128,178145214,Brooklyn,Williamsburg,40.711890000000004,-73.95355,Entire home/apt,200,2,43,2.8,1,102 +31129,2497606,Brooklyn,Bushwick,40.68261,-73.90714,Private room,45,6,1,0.08,1,0 +31130,182086879,Brooklyn,Prospect Heights,40.67942,-73.96469,Private room,150,2,8,0.53,2,0 +31131,182092241,Manhattan,Midtown,40.75359,-73.97028,Entire home/apt,160,3,48,3.35,1,203 +31132,83377687,Queens,Jackson Heights,40.75436,-73.85696,Entire home/apt,135,2,46,3.08,2,141 +31133,178059867,Queens,Flushing,40.757220000000004,-73.80595,Private room,55,1,56,3.75,3,345 +31134,128217748,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9456,Private room,50,1,114,7.57,3,363 +31135,1391408,Manhattan,Theater District,40.75897,-73.98318,Entire home/apt,89,120,0,,1,173 +31136,74291583,Queens,Ridgewood,40.705940000000005,-73.91453,Private room,49,1,6,0.4,1,11 +31137,132492053,Manhattan,Midtown,40.75523,-73.97104,Entire home/apt,185,1,8,1.13,1,29 +31138,14678390,Manhattan,West Village,40.733540000000005,-73.99982,Entire home/apt,180,4,31,2.14,1,10 +31139,182152235,Brooklyn,Bedford-Stuyvesant,40.68853,-73.95982,Private room,70,2,33,2.33,2,17 +31140,6489789,Brooklyn,Gowanus,40.68159,-73.98075,Entire home/apt,450,2,3,0.35,1,22 +31141,72923342,Manhattan,Upper West Side,40.77101,-73.98481,Entire home/apt,110,1,7,0.46,1,0 +31142,181827361,Brooklyn,Brighton Beach,40.57721,-73.96076,Entire home/apt,125,7,0,,1,247 +31143,13929249,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95453,Private room,72,1,2,0.14,1,0 +31144,112901574,Brooklyn,Bedford-Stuyvesant,40.68962,-73.93352,Private room,80,2,3,0.29,4,54 +31145,154258141,Brooklyn,Bushwick,40.688109999999995,-73.91219,Private room,44,2,30,2.06,10,322 +31146,179778880,Brooklyn,Sunset Park,40.66179,-73.99061999999999,Private room,45,2,37,2.61,2,308 +31147,128217748,Brooklyn,Bedford-Stuyvesant,40.68524,-73.94426999999999,Private room,71,1,85,5.6,3,317 +31148,154258141,Brooklyn,Bushwick,40.68994,-73.91371,Private room,60,2,41,2.78,10,359 +31149,154258141,Brooklyn,Bushwick,40.68951,-73.91405,Private room,65,2,29,1.9,10,356 +31150,72882190,Manhattan,Chinatown,40.7147,-73.99868000000001,Entire home/apt,300,7,2,0.2,1,178 +31151,182260692,Brooklyn,Cypress Hills,40.68168,-73.87881999999999,Private room,99,2,67,4.59,2,295 +31152,128217748,Brooklyn,Bedford-Stuyvesant,40.6856,-73.94388000000001,Private room,79,1,75,4.91,3,295 +31153,100238132,Manhattan,Midtown,40.75383,-73.97278,Entire home/apt,339,3,28,1.93,12,0 +31154,48182426,Queens,Ridgewood,40.70077,-73.90793000000001,Private room,58,1,3,0.2,1,0 +31155,75479604,Brooklyn,Fort Greene,40.69461,-73.97225,Private room,90,1,24,2.18,2,0 +31156,13204586,Manhattan,Murray Hill,40.74803,-73.97282,Entire home/apt,175,3,0,,1,0 +31157,10915812,Manhattan,Battery Park City,40.71085,-74.0158,Entire home/apt,158,2,20,1.34,1,2 +31158,20367358,Manhattan,Upper East Side,40.77456,-73.94601999999999,Entire home/apt,145,28,2,0.23,1,278 +31159,17183013,Brooklyn,Bedford-Stuyvesant,40.68225,-73.9188,Private room,60,2,47,3.12,1,134 +31160,29582882,Manhattan,Midtown,40.75592,-73.96956999999999,Entire home/apt,99,2,54,3.54,1,98 +31161,49704571,Brooklyn,Williamsburg,40.71972,-73.94462,Entire home/apt,80,30,5,0.42,8,161 +31162,182363374,Brooklyn,Greenpoint,40.725629999999995,-73.9556,Private room,85,1,57,3.78,7,16 +31163,182411776,Manhattan,East Village,40.73045,-73.98066999999999,Private room,115,1,37,2.55,1,128 +31164,70162513,Manhattan,Washington Heights,40.83701,-73.94256,Private room,52,1,3,0.2,1,0 +31165,47424665,Queens,Ridgewood,40.70653,-73.90876999999999,Entire home/apt,280,2,42,3.44,2,108 +31166,25635056,Manhattan,Chelsea,40.73836,-73.99566999999999,Entire home/apt,250,2,12,1.33,1,7 +31167,182440062,Manhattan,Harlem,40.82484,-73.93913,Private room,55,1,7,0.55,2,157 +31168,9756051,Manhattan,Harlem,40.82696,-73.94598,Entire home/apt,100,3,6,0.44,1,8 +31169,51510730,Brooklyn,Fort Greene,40.68884,-73.97738000000001,Entire home/apt,195,1,6,0.49,1,0 +31170,7360975,Manhattan,East Harlem,40.79635,-73.94815,Private room,80,3,15,1.25,1,88 +31171,63929490,Manhattan,East Harlem,40.78719,-73.95201,Private room,100,7,18,1.25,1,45 +31172,4127752,Brooklyn,Bedford-Stuyvesant,40.67951,-73.94426,Private room,55,4,5,0.35,1,0 +31173,50941579,Manhattan,Harlem,40.82008,-73.95523,Entire home/apt,120,5,1,0.09,1,34 +31174,34364912,Manhattan,Hell's Kitchen,40.77024,-73.99266,Entire home/apt,300,2,14,0.95,1,87 +31175,100238132,Manhattan,Midtown,40.753679999999996,-73.97317,Entire home/apt,339,3,30,2.07,12,0 +31176,182472967,Brooklyn,Park Slope,40.670629999999996,-73.97825999999999,Entire home/apt,140,3,1,1.0,1,65 +31177,10771238,Manhattan,Harlem,40.825990000000004,-73.95289,Private room,53,2,0,,3,188 +31178,182488531,Queens,Elmhurst,40.737390000000005,-73.86991,Shared room,21,1,21,1.64,2,260 +31179,182326270,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95852,Entire home/apt,125,4,58,3.8,1,78 +31180,55468128,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95623,Private room,47,1,64,4.33,7,278 +31181,56905821,Manhattan,Upper West Side,40.77959,-73.97827,Private room,180,2,29,1.96,1,0 +31182,1218837,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95934,Private room,58,2,1,0.07,2,0 +31183,1218837,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95947,Private room,58,2,0,,2,0 +31184,97015202,Manhattan,SoHo,40.72741,-74.0088,Private room,150,1,61,4.11,1,8 +31185,20486410,Manhattan,Hell's Kitchen,40.75423,-73.99461,Private room,120,1,75,4.93,1,134 +31186,842091,Brooklyn,Bushwick,40.70081,-73.92494,Private room,47,3,55,3.67,2,12 +31187,154949847,Manhattan,Hell's Kitchen,40.76127,-74.00235,Entire home/apt,288,3,36,2.93,2,109 +31188,154258141,Brooklyn,Bushwick,40.68936,-73.91369,Private room,65,2,40,2.65,10,343 +31189,182086879,Brooklyn,Prospect Heights,40.679990000000004,-73.96462,Entire home/apt,300,7,17,1.22,2,129 +31190,34358062,Manhattan,Financial District,40.703990000000005,-74.00827,Private room,104,2,1,0.07,1,0 +31191,12002279,Brooklyn,Williamsburg,40.71417,-73.9591,Entire home/apt,160,5,20,1.43,1,0 +31192,21466891,Brooklyn,Bushwick,40.68269,-73.90911,Entire home/apt,250,5,0,,2,0 +31193,3734637,Manhattan,East Harlem,40.790459999999996,-73.94436,Entire home/apt,186,1,0,,3,0 +31194,1525346,Brooklyn,Williamsburg,40.70949,-73.94892,Private room,73,4,25,1.64,1,48 +31195,17477908,Manhattan,Upper West Side,40.79446,-73.96651,Entire home/apt,195,30,3,0.21,10,311 +31196,7461066,Manhattan,Midtown,40.743829999999996,-73.98387,Entire home/apt,200,7,1,0.16,1,0 +31197,43463232,Brooklyn,Bushwick,40.69355,-73.91829,Private room,100,7,7,0.5,2,365 +31198,182363374,Brooklyn,Greenpoint,40.72552,-73.95647,Private room,300,1,8,0.53,7,14 +31199,4391922,Brooklyn,Navy Yard,40.69792,-73.96406,Entire home/apt,150,2,19,1.27,1,0 +31200,5132019,Manhattan,Upper East Side,40.77905,-73.95275,Entire home/apt,190,2,8,0.54,1,3 +31201,127412674,Brooklyn,Williamsburg,40.70111,-73.94471,Private room,75,2,28,1.91,2,342 +31202,24175837,Manhattan,Kips Bay,40.74512,-73.97921,Private room,81,4,6,0.39,2,0 +31203,37417547,Bronx,Mount Eden,40.84197,-73.91292,Private room,25,2,2,0.14,1,0 +31204,8591292,Manhattan,Lower East Side,40.72201,-73.98855999999999,Entire home/apt,275,3,20,1.36,1,359 +31205,139946116,Queens,Long Island City,40.7613,-73.92864,Private room,60,7,1,0.07,1,365 +31206,157967816,Brooklyn,Greenpoint,40.72129,-73.94329,Entire home/apt,180,2,49,3.52,3,233 +31207,41869421,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95097,Private room,90,2,1,0.1,1,343 +31208,39083533,Manhattan,Upper East Side,40.771809999999995,-73.9574,Entire home/apt,222,2,0,,1,32 +31209,2560891,Brooklyn,Fort Greene,40.69613,-73.97117,Entire home/apt,95,7,6,0.45,1,19 +31210,74874485,Queens,Ditmars Steinway,40.77305,-73.9082,Entire home/apt,70,3,2,0.13,1,0 +31211,19707138,Brooklyn,Sunset Park,40.656040000000004,-74.00032,Entire home/apt,125,15,1,0.07,1,8 +31212,167818456,Brooklyn,Williamsburg,40.712540000000004,-73.95527,Entire home/apt,173,2,51,3.55,2,127 +31213,32720219,Brooklyn,Williamsburg,40.70735,-73.94346999999999,Entire home/apt,220,2,0,,2,0 +31214,5002183,Manhattan,Greenwich Village,40.72705,-73.99904000000001,Entire home/apt,148,2,3,0.24,1,0 +31215,176821276,Manhattan,Harlem,40.82499,-73.95374,Private room,75,3,8,0.54,1,0 +31216,70091196,Manhattan,Nolita,40.72402,-73.99452,Entire home/apt,199,2,53,4.02,1,99 +31217,79913651,Manhattan,Harlem,40.82268,-73.953,Private room,54,2,26,1.73,4,157 +31218,131914514,Manhattan,Midtown,40.75265,-73.9684,Entire home/apt,150,4,0,,1,0 +31219,106309624,Manhattan,Upper West Side,40.78723,-73.97031,Entire home/apt,153,2,6,0.41,1,0 +31220,34360053,Brooklyn,Bedford-Stuyvesant,40.6879,-73.94473,Entire home/apt,99,14,1,0.07,1,0 +31221,25237492,Manhattan,Washington Heights,40.841029999999996,-73.94063,Private room,65,30,3,0.26,34,311 +31222,38874050,Queens,Ridgewood,40.70058,-73.91060999999999,Private room,50,2,43,3.15,3,150 +31223,76737749,Brooklyn,Crown Heights,40.6735,-73.95562,Private room,45,1,0,,1,0 +31224,19001556,Manhattan,East Village,40.72421,-73.98025,Private room,100,3,6,0.42,2,0 +31225,25039950,Brooklyn,Williamsburg,40.71115,-73.93735,Private room,62,1,6,0.39,2,0 +31226,24604504,Manhattan,Chinatown,40.71394,-73.99843,Private room,77,7,1,0.07,1,0 +31227,2796906,Brooklyn,Williamsburg,40.70833,-73.94898,Private room,46,1,3,0.2,1,0 +31228,21379585,Manhattan,Upper West Side,40.77988,-73.98605,Private room,95,1,50,3.3,1,0 +31229,180329864,Manhattan,Greenwich Village,40.73393,-73.9963,Entire home/apt,159,5,4,0.31,1,42 +31230,41361010,Manhattan,West Village,40.73333,-74.0052,Entire home/apt,300,2,8,0.81,1,199 +31231,160318374,Brooklyn,Bedford-Stuyvesant,40.67791,-73.92879,Entire home/apt,103,30,42,2.91,2,139 +31232,143589,Manhattan,Nolita,40.72213,-73.99479000000001,Entire home/apt,200,2,22,1.57,1,3 +31233,58023108,Manhattan,Kips Bay,40.74077,-73.97977,Private room,102,20,2,0.13,1,0 +31234,14759766,Brooklyn,Flatbush,40.644009999999994,-73.96047,Entire home/apt,350,7,1,0.38,2,77 +31235,182940016,Queens,Far Rockaway,40.59707,-73.76505999999999,Entire home/apt,425,1,0,,1,90 +31236,15310048,Brooklyn,East Flatbush,40.65185,-73.94555,Private room,45,45,5,0.38,2,155 +31237,1133299,Brooklyn,Bedford-Stuyvesant,40.69592,-73.94765,Entire home/apt,168,3,24,1.63,1,30 +31238,182976972,Brooklyn,East Flatbush,40.64929,-73.92647,Private room,40,3,39,2.64,2,263 +31239,182945752,Manhattan,Washington Heights,40.84104,-73.93838000000001,Private room,55,2,71,4.89,1,135 +31240,182295691,Manhattan,Upper East Side,40.773109999999996,-73.95508000000001,Entire home/apt,150,5,10,0.76,1,25 +31241,84527789,Brooklyn,Williamsburg,40.71686,-73.95638000000001,Private room,79,2,17,1.15,1,1 +31242,10875931,Brooklyn,Flatbush,40.64741,-73.97102,Private room,65,2,70,4.79,1,90 +31243,182989727,Manhattan,Chelsea,40.74579,-73.9909,Private room,70,3,8,0.54,1,0 +31244,1327248,Brooklyn,Williamsburg,40.71651,-73.95623,Entire home/apt,199,2,4,0.3,1,93 +31245,181710793,Queens,Flushing,40.76525,-73.83055,Private room,45,1,101,7.03,3,33 +31246,21074914,Brooklyn,Bedford-Stuyvesant,40.679520000000004,-73.91296,Private room,70,1,90,5.99,3,31 +31247,13078961,Brooklyn,Bedford-Stuyvesant,40.692009999999996,-73.94104,Private room,60,3,1,0.07,1,0 +31248,12243051,Manhattan,Financial District,40.70688,-74.00523000000001,Entire home/apt,194,29,0,,96,343 +31249,21074914,Brooklyn,Bedford-Stuyvesant,40.68088,-73.91181,Private room,59,1,83,5.48,3,24 +31250,21074914,Brooklyn,Bedford-Stuyvesant,40.68234,-73.91318000000001,Private room,49,1,102,6.73,3,0 +31251,181710793,Queens,Flushing,40.76425,-73.83061,Private room,65,1,94,6.45,3,41 +31252,59749141,Manhattan,East Harlem,40.80451,-73.94079,Entire home/apt,165,2,61,4.06,1,59 +31253,26459329,Brooklyn,Carroll Gardens,40.67559,-73.99943,Private room,80,2,27,1.79,1,144 +31254,139105717,Queens,Arverne,40.591029999999996,-73.79496999999999,Entire home/apt,175,2,0,,1,0 +31255,19866189,Queens,Arverne,40.589059999999996,-73.79503000000001,Private room,95,1,0,,5,364 +31256,24404900,Manhattan,Chinatown,40.71371,-73.99355,Entire home/apt,100,2,73,4.86,1,3 +31257,19866189,Queens,Arverne,40.58896,-73.79494,Private room,95,1,2,0.15,5,361 +31258,183127881,Brooklyn,Canarsie,40.6469,-73.90021999999999,Private room,54,1,61,4.19,4,319 +31259,142053,Manhattan,Hell's Kitchen,40.76008,-73.98846,Entire home/apt,299,2,41,2.79,5,169 +31260,36632628,Brooklyn,Bedford-Stuyvesant,40.681020000000004,-73.93686,Private room,45,4,6,0.41,1,0 +31261,38085094,Manhattan,Chelsea,40.75087,-73.9953,Entire home/apt,250,2,3,0.21,1,0 +31262,31679084,Queens,Astoria,40.76936,-73.91490999999999,Entire home/apt,120,1,6,0.41,1,117 +31263,155935757,Manhattan,Financial District,40.70615,-74.00752,Entire home/apt,105,30,1,0.16,1,233 +31264,142053,Manhattan,Hell's Kitchen,40.76385,-73.99219000000001,Entire home/apt,299,2,26,1.76,5,0 +31265,105159,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95826,Entire home/apt,130,30,6,0.43,1,189 +31266,11150363,Queens,Ridgewood,40.70642,-73.90554,Entire home/apt,90,5,2,0.14,1,0 +31267,80793056,Brooklyn,Clinton Hill,40.692890000000006,-73.96865,Private room,62,2,2,0.14,1,0 +31268,101457588,Brooklyn,Williamsburg,40.70705,-73.94976,Private room,70,5,1,0.07,1,0 +31269,123362684,Manhattan,Hell's Kitchen,40.7671,-73.98744,Entire home/apt,225,1,11,0.73,1,1 +31270,24595747,Manhattan,Upper West Side,40.77969,-73.97861999999999,Private room,95,3,16,1.08,2,0 +31271,183178516,Queens,Rego Park,40.72643,-73.86083,Entire home/apt,288,3,16,1.17,1,136 +31272,97825,Manhattan,Lower East Side,40.71883,-73.98957,Entire home/apt,149,8,19,1.3,1,6 +31273,29110009,Brooklyn,Gowanus,40.668890000000005,-73.99115,Private room,95,1,3,0.22,1,221 +31274,183191309,Brooklyn,Prospect-Lefferts Gardens,40.657109999999996,-73.95655,Entire home/apt,150,3,26,1.84,1,26 +31275,54042,Manhattan,West Village,40.729690000000005,-74.00697,Entire home/apt,200,2,10,0.68,1,0 +31276,180289633,Queens,Woodside,40.7466,-73.89175999999999,Entire home/apt,150,4,27,2.0,1,321 +31277,16574437,Manhattan,Harlem,40.81542,-73.94574,Entire home/apt,175,2,29,1.92,1,190 +31278,32617252,Queens,Jamaica,40.66735,-73.78922,Entire home/apt,180,2,50,3.87,1,181 +31279,102896902,Bronx,Concourse Village,40.832159999999995,-73.91598,Private room,70,3,3,0.4,1,178 +31280,183211558,Manhattan,Upper East Side,40.77768,-73.94951,Private room,100,2,39,2.58,1,55 +31281,183211776,Queens,Astoria,40.763870000000004,-73.90995,Private room,79,1,73,5.03,4,171 +31282,165395917,Manhattan,Midtown,40.75512,-73.97155,Private room,350,2,60,4.0,1,148 +31283,25414207,Queens,Ridgewood,40.69928,-73.90616,Private room,75,1,59,3.99,2,162 +31284,1334373,Manhattan,Hell's Kitchen,40.76323,-73.99248,Entire home/apt,235,3,7,0.47,1,5 +31285,183211776,Queens,Astoria,40.76531,-73.91126,Private room,39,1,11,0.77,4,62 +31286,54103333,Manhattan,Hell's Kitchen,40.75974,-73.98924,Entire home/apt,300,4,2,0.14,1,5 +31287,41326856,Queens,Elmhurst,40.744679999999995,-73.87911,Private room,50,1,21,1.39,5,71 +31288,149324749,Manhattan,Midtown,40.75628,-73.96918000000001,Private room,130,2,2,0.13,1,0 +31289,25093840,Manhattan,Murray Hill,40.747659999999996,-73.97601,Private room,130,1,3,0.21,1,0 +31290,5594198,Manhattan,Greenwich Village,40.730340000000005,-74.00135,Entire home/apt,250,2,29,1.91,1,44 +31291,33067672,Brooklyn,Sunset Park,40.65247,-74.00994,Entire home/apt,120,2,1,0.08,1,0 +31292,125011763,Queens,Astoria,40.76137,-73.90581999999999,Entire home/apt,450,4,0,,2,89 +31293,170817628,Brooklyn,Fort Hamilton,40.623129999999996,-74.03114000000001,Private room,47,28,0,,1,31 +31294,471453,Manhattan,East Village,40.7209,-73.98142,Entire home/apt,115,2,12,0.8,1,0 +31295,122917817,Manhattan,Harlem,40.82036,-73.95415,Entire home/apt,100,2,24,2.57,1,8 +31296,14709426,Brooklyn,Williamsburg,40.717459999999996,-73.9506,Entire home/apt,120,6,6,0.42,1,20 +31297,106460468,Bronx,Kingsbridge,40.87997,-73.90035,Private room,65,3,54,3.69,4,64 +31298,106460468,Bronx,Kingsbridge,40.88068,-73.90012,Private room,79,3,55,3.68,4,63 +31299,16257970,Manhattan,Lower East Side,40.71313,-73.98665,Private room,89,3,48,3.19,2,181 +31300,43321,Manhattan,Chinatown,40.714259999999996,-73.99175,Entire home/apt,300,7,6,0.44,1,19 +31301,183375315,Manhattan,East Village,40.73389,-73.99083,Entire home/apt,220,4,13,0.93,1,2 +31302,101328784,Manhattan,Upper West Side,40.78243,-73.97265,Entire home/apt,265,7,13,0.98,1,130 +31303,65421561,Queens,Richmond Hill,40.69792,-73.84081,Entire home/apt,300,1,24,3.29,1,162 +31304,5717334,Brooklyn,Bedford-Stuyvesant,40.68907,-73.953,Private room,150,5,1,0.07,2,0 +31305,2631054,Manhattan,Lower East Side,40.71932,-73.98995,Entire home/apt,150,3,8,1.26,1,0 +31306,20132009,Manhattan,Chelsea,40.74491,-74.0042,Entire home/apt,150,3,49,3.53,2,64 +31307,22716889,Queens,Sunnyside,40.73937,-73.91566,Private room,46,1,9,0.59,1,0 +31308,182363374,Brooklyn,Greenpoint,40.72558,-73.95706,Private room,68,1,55,3.72,7,38 +31309,183423525,Manhattan,Upper West Side,40.80321,-73.9682,Private room,55,30,6,0.48,4,210 +31310,183423525,Manhattan,Upper West Side,40.80222,-73.96763,Private room,65,30,1,0.07,4,216 +31311,183423525,Manhattan,Upper West Side,40.80365,-73.96639,Private room,70,30,3,0.24,4,317 +31312,183423525,Manhattan,Upper West Side,40.80324,-73.96816,Private room,65,30,1,1.0,4,211 +31313,9973967,Manhattan,East Village,40.726259999999996,-73.98784,Entire home/apt,310,2,78,5.49,1,169 +31314,16851857,Bronx,Wakefield,40.896409999999996,-73.85077,Entire home/apt,88,5,8,0.61,4,322 +31315,143820550,Manhattan,Washington Heights,40.84695,-73.93593,Private room,50,1,43,3.01,1,0 +31316,127539184,Brooklyn,East Flatbush,40.64934,-73.94508,Entire home/apt,250,5,0,,2,8 +31317,34643568,Manhattan,East Harlem,40.79138,-73.9413,Private room,80,3,12,0.87,6,332 +31318,73885,Manhattan,East Village,40.723279999999995,-73.9843,Private room,80,3,2,0.14,1,0 +31319,19557813,Brooklyn,Bedford-Stuyvesant,40.68302,-73.92119,Entire home/apt,130,2,35,2.47,1,34 +31320,178244787,Brooklyn,Greenpoint,40.722429999999996,-73.95179,Entire home/apt,130,8,2,0.14,2,0 +31321,80885460,Queens,Ditmars Steinway,40.77467,-73.9094,Entire home/apt,100,2,6,0.42,1,0 +31322,183548336,Manhattan,East Harlem,40.7977,-73.93493000000001,Entire home/apt,250,3,13,0.94,1,74 +31323,183568797,Queens,Long Island City,40.75354,-73.95113,Entire home/apt,200,3,36,2.43,1,308 +31324,62803,Brooklyn,Crown Heights,40.67004,-73.92206999999999,Private room,54,6,6,0.65,2,225 +31325,183599440,Brooklyn,Williamsburg,40.7193,-73.95863,Private room,65,4,1,0.1,1,157 +31326,17577495,Manhattan,Hell's Kitchen,40.76169,-73.98839,Private room,120,3,16,1.11,3,89 +31327,3220590,Manhattan,Morningside Heights,40.80798,-73.96585,Entire home/apt,95,7,0,,1,0 +31328,183610844,Queens,Fresh Meadows,40.72688,-73.79198000000001,Private room,50,2,6,0.42,1,51 +31329,183617557,Manhattan,Upper West Side,40.77598,-73.98917,Entire home/apt,299,3,29,1.96,1,6 +31330,183633639,Queens,Richmond Hill,40.69004,-73.83368,Entire home/apt,138,1,28,1.88,1,347 +31331,174492861,Queens,Jackson Heights,40.749390000000005,-73.88155,Private room,42,2,43,2.87,2,33 +31332,183699341,Manhattan,Hell's Kitchen,40.75781,-73.99750999999999,Private room,175,1,6,0.41,1,365 +31333,4891915,Brooklyn,Bedford-Stuyvesant,40.6947,-73.94319,Private room,85,3,36,2.44,1,69 +31334,176427055,Queens,Astoria,40.766490000000005,-73.92643000000001,Private room,74,1,102,6.77,1,348 +31335,96694697,Brooklyn,Sheepshead Bay,40.60759,-73.96023000000001,Private room,65,2,11,0.77,2,156 +31336,29799151,Brooklyn,Bushwick,40.70324,-73.91353000000001,Private room,47,4,5,0.36,2,0 +31337,127532142,Brooklyn,Bushwick,40.70473,-73.92069000000001,Private room,85,3,33,2.47,1,7 +31338,87585422,Manhattan,Lower East Side,40.72081,-73.98461,Entire home/apt,975,4,8,0.64,1,164 +31339,183751102,Brooklyn,Crown Heights,40.67102,-73.96172,Entire home/apt,130,4,8,0.56,1,353 +31340,182989977,Brooklyn,East Flatbush,40.65435,-73.93785,Private room,70,3,3,0.3,5,365 +31341,55503144,Manhattan,East Harlem,40.79645,-73.94803,Private room,70,15,0,,1,0 +31342,183388833,Queens,Rockaway Beach,40.58898,-73.80575999999999,Entire home/apt,179,2,34,2.37,1,205 +31343,43037915,Brooklyn,Crown Heights,40.663709999999995,-73.95698,Private room,300,2,0,,1,0 +31344,138607228,Brooklyn,Bushwick,40.694320000000005,-73.90658,Entire home/apt,150,2,17,1.15,3,0 +31345,138607228,Brooklyn,Bushwick,40.6941,-73.90756,Entire home/apt,99,2,51,3.45,3,0 +31346,6517654,Manhattan,Washington Heights,40.8385,-73.94288,Entire home/apt,125,3,6,0.42,1,0 +31347,10711933,Manhattan,Upper East Side,40.77021,-73.95173,Entire home/apt,170,3,3,0.21,1,0 +31348,19940836,Manhattan,Lower East Side,40.71848,-73.98439,Private room,89,1,21,1.41,1,2 +31349,30075148,Brooklyn,Williamsburg,40.70695,-73.94524,Private room,50,7,1,0.07,1,0 +31350,106837455,Manhattan,Upper West Side,40.784890000000004,-73.982,Entire home/apt,90,90,0,,8,0 +31351,56202220,Brooklyn,Williamsburg,40.71196,-73.95424,Private room,80,3,1,1.0,1,20 +31352,150629197,Manhattan,Upper East Side,40.776340000000005,-73.94713,Entire home/apt,168,14,17,1.18,2,95 +31353,183833039,Brooklyn,Bushwick,40.699870000000004,-73.91404,Private room,100,1,0,,1,341 +31354,150629197,Manhattan,Upper East Side,40.777590000000004,-73.94688000000001,Entire home/apt,118,3,1,0.07,2,0 +31355,183707967,Manhattan,Washington Heights,40.85329,-73.9291,Entire home/apt,150,2,29,1.96,4,127 +31356,183886601,Manhattan,Inwood,40.87001,-73.92418,Entire home/apt,120,30,3,0.22,2,27 +31357,3540748,Manhattan,Upper East Side,40.78026,-73.954,Entire home/apt,175,2,4,0.28,1,354 +31358,3074904,Brooklyn,Clinton Hill,40.6844,-73.96221,Entire home/apt,190,2,10,0.77,4,12 +31359,178178426,Manhattan,East Harlem,40.79208,-73.94641999999999,Entire home/apt,195,1,73,5.03,1,146 +31360,2790890,Brooklyn,Bedford-Stuyvesant,40.69372,-73.9485,Entire home/apt,112,3,65,4.62,3,219 +31361,8961407,Manhattan,Harlem,40.805690000000006,-73.94848,Entire home/apt,450,3,38,3.21,3,302 +31362,521594,Manhattan,Upper East Side,40.77905,-73.94754,Private room,200,15,0,,1,34 +31363,8973065,Brooklyn,Williamsburg,40.70343,-73.93412,Private room,45,5,5,0.35,1,0 +31364,158969505,Manhattan,Lower East Side,40.721920000000004,-73.9928,Entire home/apt,150,30,3,0.24,9,310 +31365,10197436,Brooklyn,Bushwick,40.68652,-73.91212,Entire home/apt,99,2,71,4.8,1,140 +31366,8409547,Brooklyn,Greenpoint,40.73081,-73.95184,Entire home/apt,100,2,3,0.2,1,2 +31367,6024063,Manhattan,Washington Heights,40.848209999999995,-73.94153,Private room,50,2,1,1.0,1,25 +31368,183950956,Manhattan,Roosevelt Island,40.759159999999994,-73.95124,Entire home/apt,220,1,76,5.3,1,60 +31369,33587458,Brooklyn,Bedford-Stuyvesant,40.69138,-73.92617,Entire home/apt,123,3,6,0.53,1,0 +31370,25741946,Brooklyn,Bedford-Stuyvesant,40.68073,-73.92804,Entire home/apt,110,1,2,0.19,1,0 +31371,3436710,Manhattan,East Village,40.72433,-73.97688000000001,Private room,120,1,18,1.22,2,28 +31372,21766565,Manhattan,Harlem,40.82934,-73.94269,Entire home/apt,110,2,29,1.97,1,200 +31373,21410546,Manhattan,Chelsea,40.736999999999995,-73.99407,Private room,85,2,4,0.27,1,0 +31374,183989835,Manhattan,Midtown,40.76419,-73.97455,Entire home/apt,299,3,22,1.62,1,278 +31375,714531,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95664000000001,Private room,55,4,26,1.81,1,73 +31376,27923193,Brooklyn,Crown Heights,40.67085,-73.92316,Private room,47,1,9,0.61,1,0 +31377,184000316,Brooklyn,East New York,40.66972,-73.88393,Private room,55,1,1,0.09,1,87 +31378,184004979,Brooklyn,Williamsburg,40.709140000000005,-73.961,Private room,130,3,59,3.93,2,282 +31379,73592174,Brooklyn,Midwood,40.611670000000004,-73.95803000000001,Private room,40,1,4,0.29,1,84 +31380,184009385,Brooklyn,Williamsburg,40.71434,-73.94275,Entire home/apt,150,2,48,3.27,2,53 +31381,30523475,Brooklyn,Williamsburg,40.71008,-73.96175,Private room,70,5,3,0.2,1,0 +31382,184065290,Manhattan,Midtown,40.75418,-73.9664,Entire home/apt,180,30,16,1.08,1,3 +31383,151507961,Manhattan,Chinatown,40.7139,-73.9912,Private room,90,2,60,4.35,1,1 +31384,2269233,Manhattan,Murray Hill,40.74922,-73.97744,Entire home/apt,120,30,1,0.09,1,47 +31385,20813915,Brooklyn,South Slope,40.66409,-73.9909,Entire home/apt,145,1,90,5.97,1,212 +31386,19847523,Queens,Sunnyside,40.74686,-73.91283,Entire home/apt,100,2,0,,1,0 +31387,160356,Manhattan,East Village,40.72361,-73.9847,Entire home/apt,150,1,108,7.55,4,201 +31388,24405003,Manhattan,Chinatown,40.7138,-73.99371,Private room,125,3,4,0.31,3,90 +31389,110088704,Manhattan,Harlem,40.82244,-73.95262,Private room,60,1,28,1.91,1,21 +31390,55924743,Brooklyn,Crown Heights,40.67673,-73.9447,Entire home/apt,150,2,3,0.2,1,0 +31391,95108020,Manhattan,Chelsea,40.745490000000004,-73.99114,Private room,190,4,37,2.68,1,28 +31392,184119295,Manhattan,Upper West Side,40.77213,-73.98265,Entire home/apt,145,12,1,0.16,1,289 +31393,184130293,Manhattan,Inwood,40.86408,-73.92257,Private room,50,30,3,0.21,2,0 +31394,6059987,Brooklyn,Crown Heights,40.67718,-73.95566,Private room,95,1,2,0.17,1,0 +31395,184004979,Brooklyn,Williamsburg,40.7102,-73.96222,Private room,91,2,68,4.54,2,337 +31396,30927892,Brooklyn,Bushwick,40.68865,-73.9081,Entire home/apt,145,4,40,2.8,1,38 +31397,72423116,Manhattan,Morningside Heights,40.80385,-73.96499,Private room,100,1,17,1.36,1,31 +31398,53163551,Brooklyn,Bushwick,40.70037,-73.91751,Private room,35,14,4,0.28,1,0 +31399,110907551,Manhattan,Midtown,40.74515,-73.9813,Private room,120,1,12,5.0,2,156 +31400,184204269,Brooklyn,East Flatbush,40.63718,-73.94060999999999,Entire home/apt,69,2,36,2.46,1,229 +31401,21663531,Queens,Ridgewood,40.70778,-73.90323000000001,Private room,50,2,4,0.4,2,293 +31402,19259290,Manhattan,Lower East Side,40.71499,-73.98986,Private room,290,1,99,6.96,1,70 +31403,96694697,Brooklyn,Sheepshead Bay,40.60791,-73.96011999999999,Private room,50,2,4,0.29,2,358 +31404,408485,Manhattan,East Village,40.727090000000004,-73.99074,Entire home/apt,545,2,1,1.0,1,177 +31405,184264303,Brooklyn,Flatlands,40.62392,-73.93554,Entire home/apt,200,1,28,2.02,1,265 +31406,49405,Brooklyn,Park Slope,40.6757,-73.97473000000001,Entire home/apt,180,60,0,,1,0 +31407,91034542,Manhattan,Kips Bay,40.74408,-73.97803,Private room,10,5,42,2.87,1,2 +31408,184233409,Staten Island,Port Richmond,40.63275,-74.13681,Private room,47,2,13,0.96,1,283 +31409,6451492,Manhattan,Upper East Side,40.76129,-73.9652,Entire home/apt,175,2,54,3.72,1,0 +31410,72872297,Queens,Long Island City,40.75558,-73.93643,Private room,75,2,67,4.93,1,11 +31411,156505456,Brooklyn,East New York,40.662440000000004,-73.88904000000001,Private room,45,3,15,1.05,13,365 +31412,165898555,Manhattan,Upper East Side,40.75972,-73.96021,Entire home/apt,275,30,1,0.07,7,364 +31413,10534760,Bronx,Morrisania,40.83139,-73.90165999999999,Private room,23,2,18,1.25,1,36 +31414,409965,Manhattan,Upper West Side,40.778290000000005,-73.97794,Private room,95,6,11,0.76,1,219 +31415,148272313,Manhattan,Murray Hill,40.74519,-73.97676,Entire home/apt,199,2,65,4.95,1,92 +31416,16908803,Manhattan,Harlem,40.814479999999996,-73.93714,Entire home/apt,130,6,2,0.14,1,0 +31417,165884816,Brooklyn,Williamsburg,40.71975,-73.96136,Entire home/apt,161,2,10,0.69,1,0 +31418,120371644,Brooklyn,Sheepshead Bay,40.591429999999995,-73.95548000000001,Private room,65,2,52,3.57,2,340 +31419,184467900,Brooklyn,Greenpoint,40.73276,-73.95304,Private room,60,3,39,2.83,1,43 +31420,22460686,Manhattan,Harlem,40.81716,-73.94279,Entire home/apt,165,3,33,2.3,1,192 +31421,59156312,Queens,Woodhaven,40.68614,-73.86681999999999,Private room,69,3,31,2.16,9,348 +31422,111938058,Brooklyn,Prospect-Lefferts Gardens,40.659259999999996,-73.96252,Private room,100,3,14,0.98,1,364 +31423,179026754,Brooklyn,Williamsburg,40.7118,-73.96344,Private room,89,2,23,2.0,1,103 +31424,20267412,Manhattan,Morningside Heights,40.808679999999995,-73.95801,Private room,55,4,2,0.16,1,0 +31425,32168079,Brooklyn,Sheepshead Bay,40.58765,-73.94881,Shared room,37,30,0,,3,84 +31426,184496160,Queens,Astoria,40.76031,-73.91702,Private room,80,7,0,,1,0 +31427,103488282,Queens,Sunnyside,40.7467,-73.92076,Private room,80,1,34,2.49,5,262 +31428,43825074,Brooklyn,Cypress Hills,40.685990000000004,-73.87734,Private room,37,28,6,0.43,3,356 +31429,122498535,Brooklyn,East Flatbush,40.655,-73.92764,Private room,40,30,3,0.23,3,288 +31430,53781263,Queens,Ridgewood,40.70197,-73.90377,Private room,60,1,7,0.48,2,85 +31431,53781263,Queens,Ridgewood,40.70142,-73.90515,Entire home/apt,90,1,22,1.64,2,5 +31432,22541573,Manhattan,East Village,40.733990000000006,-73.99002,Entire home/apt,245,30,1,0.12,87,357 +31433,9949215,Manhattan,Harlem,40.81667,-73.94225,Entire home/apt,175,5,39,2.68,1,90 +31434,24020292,Brooklyn,Bushwick,40.70064,-73.91828000000001,Private room,50,1,27,1.94,4,55 +31435,89031106,Brooklyn,Greenpoint,40.72198,-73.94911,Entire home/apt,210,30,2,0.13,4,354 +31436,59463190,Brooklyn,Bedford-Stuyvesant,40.692679999999996,-73.93848,Entire home/apt,350,1,12,0.86,1,89 +31437,76409499,Manhattan,Harlem,40.82502,-73.95155,Private room,45,7,1,0.07,1,0 +31438,184653310,Manhattan,Midtown,40.75775,-73.97955999999999,Entire home/apt,300,7,14,0.98,1,85 +31439,107802009,Brooklyn,Crown Heights,40.6752,-73.95231,Entire home/apt,155,3,6,0.45,2,0 +31440,212420,Brooklyn,Boerum Hill,40.689440000000005,-73.98904,Entire home/apt,125,3,3,0.21,1,0 +31441,184694715,Brooklyn,Williamsburg,40.71692,-73.94131999999999,Entire home/apt,225,3,25,1.8,1,157 +31442,54548626,Queens,Flushing,40.75499,-73.78902,Private room,90,1,68,4.55,1,299 +31443,141765510,Queens,Astoria,40.76343,-73.92248000000001,Shared room,110,4,3,0.22,1,0 +31444,27532205,Brooklyn,Bushwick,40.68994,-73.90526,Private room,65,1,8,3.08,1,106 +31445,112843970,Brooklyn,Cypress Hills,40.67765,-73.89327,Entire home/apt,125,3,48,3.36,2,294 +31446,28046572,Brooklyn,Bedford-Stuyvesant,40.68869,-73.93449,Private room,35,20,1,0.08,1,0 +31447,81712936,Manhattan,Upper East Side,40.78028,-73.94769000000001,Entire home/apt,150,3,26,1.91,2,340 +31448,42993745,Manhattan,Upper East Side,40.77515,-73.95299,Entire home/apt,299,4,1,0.16,2,0 +31449,24421834,Brooklyn,Crown Heights,40.67716,-73.93885,Private room,50,7,0,,1,0 +31450,96810536,Brooklyn,Gowanus,40.66623,-73.99266999999999,Private room,60,2,49,3.3,3,74 +31451,37535886,Brooklyn,Flatbush,40.65291,-73.95285,Private room,59,2,36,2.48,1,17 +31452,184853043,Brooklyn,Kensington,40.64655,-73.97251999999999,Entire home/apt,250,2,31,2.88,1,58 +31453,3469364,Manhattan,NoHo,40.72547,-73.99284,Entire home/apt,185,10,1,0.64,1,57 +31454,66808561,Queens,Woodside,40.74579,-73.8997,Private room,60,2,6,0.43,1,0 +31455,173369078,Manhattan,Financial District,40.705870000000004,-74.0118,Private room,139,3,15,1.01,1,338 +31456,55149412,Manhattan,Chinatown,40.71585,-73.99492,Private room,80,1,14,0.96,4,234 +31457,104812805,Staten Island,Arrochar,40.597609999999996,-74.08346999999999,Private room,33,4,6,0.41,8,285 +31458,169382341,Manhattan,East Village,40.722,-73.98396,Private room,89,5,11,0.84,2,76 +31459,59156312,Queens,Woodhaven,40.68783,-73.86679000000001,Private room,69,3,28,1.95,9,359 +31460,184523531,Manhattan,East Harlem,40.79578,-73.94523000000001,Private room,68,2,31,2.1,1,265 +31461,20044199,Manhattan,SoHo,40.72503,-74.0013,Entire home/apt,185,3,26,1.81,1,42 +31462,4831440,Brooklyn,Greenpoint,40.72152,-73.94945,Entire home/apt,100,4,12,0.92,1,0 +31463,30985759,Manhattan,Hell's Kitchen,40.7578,-73.99211,Private room,116,1,95,6.42,6,280 +31464,362457,Brooklyn,Williamsburg,40.715140000000005,-73.9641,Entire home/apt,140,2,54,4.06,1,180 +31465,4110677,Manhattan,Harlem,40.8082,-73.94252,Entire home/apt,225,7,1,0.11,2,253 +31466,185022050,Brooklyn,Bensonhurst,40.61266,-73.98676999999999,Entire home/apt,99,30,5,0.36,1,320 +31467,26584499,Manhattan,Upper West Side,40.78382,-73.98235,Entire home/apt,135,30,0,,8,290 +31468,1114587,Manhattan,Upper West Side,40.79591,-73.96204,Private room,90,2,9,0.62,3,181 +31469,6257521,Brooklyn,Clinton Hill,40.69325,-73.96863,Entire home/apt,160,3,3,0.24,1,8 +31470,2450194,Manhattan,Upper West Side,40.79,-73.96851,Entire home/apt,148,2,5,0.34,1,2 +31471,43253307,Brooklyn,Bedford-Stuyvesant,40.68785,-73.93948,Private room,60,30,27,1.88,1,0 +31472,75173477,Brooklyn,Bushwick,40.69932,-73.91190999999999,Entire home/apt,200,3,7,0.48,1,6 +31473,61391963,Manhattan,Midtown,40.75393,-73.96611999999999,Entire home/apt,125,30,5,0.34,91,304 +31474,61391963,Manhattan,Midtown,40.75569,-73.96679,Entire home/apt,150,30,1,0.08,91,332 +31475,61391963,Manhattan,Kips Bay,40.74471,-73.98026999999999,Entire home/apt,125,30,4,0.32,91,346 +31476,61391963,Manhattan,Murray Hill,40.74651,-73.97868000000001,Entire home/apt,125,30,3,0.5,91,342 +31477,162280872,Manhattan,Upper East Side,40.77458,-73.94769000000001,Entire home/apt,185,30,0,,13,161 +31478,120371644,Brooklyn,Sheepshead Bay,40.5917,-73.95536,Private room,65,2,38,2.57,2,306 +31479,185067271,Manhattan,Upper West Side,40.786120000000004,-73.97010999999999,Entire home/apt,85,30,6,0.56,1,15 +31480,59156312,Queens,Woodhaven,40.68654,-73.86672,Private room,89,3,29,2.0,9,355 +31481,1273890,Manhattan,Washington Heights,40.850809999999996,-73.9368,Entire home/apt,150,30,0,,2,339 +31482,5485647,Manhattan,Hell's Kitchen,40.76206,-73.99775,Entire home/apt,300,3,2,0.14,1,0 +31483,175152359,Bronx,Westchester Square,40.84367,-73.84911,Private room,65,2,11,1.11,2,158 +31484,16828799,Manhattan,Morningside Heights,40.8058,-73.9647,Entire home/apt,110,10,0,,1,0 +31485,258674,Brooklyn,Windsor Terrace,40.65871,-73.9789,Entire home/apt,125,3,15,1.15,1,65 +31486,185189643,Queens,Sunnyside,40.7461,-73.91983,Private room,75,3,79,5.44,1,84 +31487,58097815,Brooklyn,Bedford-Stuyvesant,40.687709999999996,-73.92281,Entire home/apt,145,2,73,4.95,1,219 +31488,4576234,Brooklyn,Crown Heights,40.67535,-73.94991999999999,Private room,65,2,1,0.16,1,0 +31489,12243051,Manhattan,Financial District,40.70533,-74.00923,Entire home/apt,142,29,1,0.09,96,353 +31490,9010955,Brooklyn,Greenpoint,40.73556,-73.95725999999999,Entire home/apt,200,2,5,0.37,2,7 +31491,12243051,Manhattan,Financial District,40.70551,-74.00839,Entire home/apt,225,29,0,,96,1 +31492,83921231,Manhattan,Hell's Kitchen,40.761520000000004,-73.98758000000001,Entire home/apt,235,2,49,3.7,1,283 +31493,180700434,Manhattan,Upper East Side,40.78119,-73.95121,Entire home/apt,200,4,0,,1,83 +31494,63189852,Manhattan,Roosevelt Island,40.76811,-73.94483000000001,Private room,50,7,3,0.23,1,0 +31495,160495098,Brooklyn,East Flatbush,40.63532,-73.94924,Private room,36,2,1,0.08,5,0 +31496,296491,Brooklyn,Midwood,40.61673,-73.96491,Entire home/apt,75,2,23,1.55,2,49 +31497,9913035,Manhattan,Lower East Side,40.7213,-73.98862,Private room,60,15,8,0.68,3,260 +31498,185265758,Manhattan,Harlem,40.82156,-73.94966,Entire home/apt,247,2,82,5.68,2,266 +31499,185267820,Brooklyn,Greenpoint,40.72339,-73.94322,Entire home/apt,295,1,52,3.83,1,161 +31500,22577148,Brooklyn,Bedford-Stuyvesant,40.69616,-73.93438,Private room,80,3,22,1.54,7,96 +31501,59156312,Queens,Woodhaven,40.68765,-73.865,Private room,99,3,24,1.64,9,343 +31502,100565897,Brooklyn,Sheepshead Bay,40.60399,-73.94523000000001,Private room,36,7,3,0.24,2,29 +31503,3464645,Manhattan,Chelsea,40.74732,-73.9999,Entire home/apt,400,2,0,,3,0 +31504,6525229,Manhattan,Chinatown,40.7177,-73.99246,Private room,73,3,1,0.07,1,37 +31505,14405060,Manhattan,Upper East Side,40.773590000000006,-73.95143,Entire home/apt,117,3,7,0.5,1,0 +31506,107434423,Manhattan,Tribeca,40.71433,-74.01073000000001,Entire home/apt,323,30,0,,232,316 +31507,183779546,Brooklyn,Williamsburg,40.71824,-73.95175,Entire home/apt,1000,1,9,0.66,1,88 +31508,26584499,Manhattan,Upper West Side,40.7826,-73.98228,Entire home/apt,100,31,0,,8,50 +31509,12243051,Manhattan,Chelsea,40.740809999999996,-73.99616,Entire home/apt,265,29,0,,96,331 +31510,12243051,Manhattan,Financial District,40.70561,-74.0086,Entire home/apt,145,29,4,0.42,96,341 +31511,12243051,Manhattan,Chelsea,40.7409,-73.99596,Entire home/apt,255,29,0,,96,296 +31512,12243051,Manhattan,Financial District,40.70563,-74.0078,Entire home/apt,209,29,3,0.26,96,328 +31513,12156706,Manhattan,Greenwich Village,40.72851,-74.0,Entire home/apt,300,2,3,0.2,2,0 +31514,20584520,Manhattan,East Village,40.72926,-73.98456,Entire home/apt,101,1,25,1.74,1,363 +31515,50321289,Brooklyn,Bedford-Stuyvesant,40.68209,-73.95730999999999,Private room,60,7,11,0.8,3,0 +31516,12243051,Manhattan,Financial District,40.70503,-74.00698,Entire home/apt,185,29,0,,96,31 +31517,30985759,Manhattan,Hell's Kitchen,40.75792,-73.99172,Shared room,65,1,108,7.33,6,325 +31518,12243051,Manhattan,Financial District,40.70544,-74.00641,Entire home/apt,222,29,0,,96,333 +31519,6524762,Manhattan,Midtown,40.76487,-73.97856999999999,Entire home/apt,250,1,9,0.62,3,89 +31520,51068857,Brooklyn,Bedford-Stuyvesant,40.682970000000005,-73.95251,Private room,80,1,0,,1,5 +31521,62100691,Manhattan,East Harlem,40.78572,-73.95018,Entire home/apt,140,5,11,0.77,1,8 +31522,30895980,Brooklyn,Brighton Beach,40.576440000000005,-73.95551,Entire home/apt,110,2,8,0.58,2,248 +31523,5997182,Manhattan,Murray Hill,40.745909999999995,-73.97843,Entire home/apt,200,4,7,0.52,1,166 +31524,52525653,Manhattan,Harlem,40.80565,-73.95196999999999,Private room,100,2,73,4.98,2,68 +31525,12243051,Manhattan,Financial District,40.70558,-74.00845,Entire home/apt,175,29,1,0.45,96,290 +31526,12243051,Manhattan,Chelsea,40.7423,-73.99603,Entire home/apt,255,29,0,,96,345 +31527,182363374,Brooklyn,Greenpoint,40.72549,-73.95574,Private room,112,1,68,4.74,7,27 +31528,30384092,Brooklyn,Crown Heights,40.66725,-73.95017,Private room,70,3,45,3.33,1,135 +31529,137130915,Brooklyn,Fort Greene,40.6971,-73.97316,Private room,102,2,1,0.07,1,0 +31530,49505120,Brooklyn,Prospect Heights,40.67955,-73.97381999999999,Private room,50,15,0,,1,0 +31531,68557372,Manhattan,Harlem,40.806670000000004,-73.95182,Entire home/apt,75,5,8,0.66,2,9 +31532,24587292,Brooklyn,Crown Heights,40.676520000000004,-73.96198000000001,Private room,974,7,0,,2,0 +31533,39528519,Manhattan,Lower East Side,40.71113,-73.9884,Shared room,33,100,0,,28,320 +31534,185514817,Manhattan,Upper West Side,40.798559999999995,-73.97174,Private room,55,5,2,0.14,1,0 +31535,90937044,Brooklyn,Bushwick,40.69943,-73.92192,Private room,50,2,16,1.14,1,0 +31536,185524223,Brooklyn,Kensington,40.64196,-73.97466999999999,Private room,62,1,95,6.97,2,261 +31537,894712,Brooklyn,Crown Heights,40.67868,-73.95541,Entire home/apt,119,2,2,0.15,1,0 +31538,39038649,Brooklyn,Red Hook,40.67817,-74.00990999999999,Private room,52,2,41,2.94,1,3 +31539,73079322,Manhattan,Washington Heights,40.84365,-73.93982,Private room,45,3,1,0.17,1,5 +31540,19703783,Manhattan,Hell's Kitchen,40.76265,-73.98954,Entire home/apt,160,2,5,0.36,1,70 +31541,69767,Brooklyn,Clinton Hill,40.68059,-73.95848000000001,Entire home/apt,162,3,10,0.76,1,4 +31542,607217,Manhattan,SoHo,40.72789,-74.00275,Entire home/apt,205,4,15,1.04,1,5 +31543,1508253,Brooklyn,Bushwick,40.69403,-73.92673,Entire home/apt,86,4,4,0.3,1,0 +31544,17345576,Manhattan,Harlem,40.80322,-73.94488,Shared room,65,30,0,,1,342 +31545,37580284,Manhattan,Lower East Side,40.715709999999994,-73.98699,Entire home/apt,85,35,0,,1,0 +31546,181111992,Brooklyn,Flatbush,40.63033,-73.95724,Entire home/apt,61,3,2,0.16,2,138 +31547,167025338,Manhattan,Upper East Side,40.77163,-73.94896999999999,Private room,75,14,6,0.41,2,14 +31548,62023756,Queens,Fresh Meadows,40.74622,-73.78296999999999,Private room,79,1,35,2.4,3,32 +31549,39528519,Manhattan,Lower East Side,40.70988,-73.98666,Private room,93,15,0,,28,185 +31550,39528519,Manhattan,Lower East Side,40.71158,-73.98888000000001,Shared room,32,14,5,0.76,28,341 +31551,185636316,Manhattan,Harlem,40.82291,-73.94256,Entire home/apt,119,7,6,0.43,1,201 +31552,10679309,Brooklyn,Williamsburg,40.71181,-73.96677,Entire home/apt,150,4,6,0.41,2,8 +31553,65804,Manhattan,East Village,40.72957,-73.9882,Entire home/apt,129,7,12,0.88,2,9 +31554,104812805,Staten Island,Arrochar,40.597570000000005,-74.08434,Private room,35,4,11,0.77,8,338 +31555,6892560,Manhattan,East Harlem,40.80552,-73.94031,Private room,51,5,16,1.12,1,17 +31556,146182000,Manhattan,Theater District,40.75885,-73.98147,Private room,120,3,25,1.72,1,0 +31557,170446723,Queens,East Elmhurst,40.75906,-73.87771,Private room,78,1,4,0.41,2,363 +31558,24046704,Manhattan,Harlem,40.816,-73.94126999999999,Entire home/apt,100,3,3,0.23,1,0 +31559,179676509,Brooklyn,Greenpoint,40.72874,-73.95621,Entire home/apt,114,4,2,0.15,1,0 +31560,143070465,Brooklyn,Bedford-Stuyvesant,40.6977,-73.94781,Private room,35,2,10,0.7,1,0 +31561,10574166,Manhattan,Murray Hill,40.746809999999996,-73.97629,Entire home/apt,150,2,17,1.19,1,0 +31562,174986751,Manhattan,Washington Heights,40.85054,-73.93956,Private room,75,3,13,0.91,3,137 +31563,185512151,Brooklyn,Williamsburg,40.70743,-73.94206,Entire home/apt,128,4,6,0.42,1,0 +31564,174986751,Manhattan,Washington Heights,40.85264,-73.93975999999999,Private room,160,3,6,0.44,3,123 +31565,102287990,Brooklyn,Sunset Park,40.64499,-74.02436999999999,Private room,100,30,0,,1,365 +31566,75302217,Manhattan,Upper East Side,40.77883,-73.95528,Entire home/apt,199,3,10,0.7,2,365 +31567,7939437,Brooklyn,Bedford-Stuyvesant,40.68823,-73.95863,Private room,100,2,34,2.45,1,59 +31568,48805583,Manhattan,Midtown,40.7496,-73.98244,Entire home/apt,170,6,35,2.48,1,0 +31569,119864371,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9244,Entire home/apt,99,3,44,3.11,1,135 +31570,39528519,Manhattan,Lower East Side,40.71098,-73.98696,Shared room,35,14,0,,28,321 +31571,19068554,Manhattan,West Village,40.73608,-73.99996999999999,Entire home/apt,175,3,18,1.28,1,0 +31572,105797483,Manhattan,Midtown,40.7452,-73.98427,Entire home/apt,400,1,16,1.14,1,47 +31573,185850609,Bronx,Mott Haven,40.810109999999995,-73.92166,Entire home/apt,125,3,62,4.34,1,253 +31574,3268993,Manhattan,Harlem,40.82336,-73.95596,Private room,75,2,122,8.32,1,127 +31575,107434423,Manhattan,Kips Bay,40.74112,-73.98009,Entire home/apt,271,30,0,,232,326 +31576,20633674,Brooklyn,Bedford-Stuyvesant,40.691990000000004,-73.94426,Private room,46,3,6,0.72,1,0 +31577,12292581,Manhattan,Financial District,40.70617,-74.0112,Entire home/apt,240,15,4,0.3,1,220 +31578,185888575,Brooklyn,Bushwick,40.69571,-73.93144000000001,Entire home/apt,240,3,50,3.44,1,243 +31579,185889529,Queens,St. Albans,40.70389,-73.75782,Private room,50,3,58,4.69,3,358 +31580,12156706,Manhattan,Greenwich Village,40.728390000000005,-73.99983,Private room,115,3,2,0.14,2,0 +31581,185908506,Bronx,Edenwald,40.886340000000004,-73.83431,Private room,75,3,19,1.55,3,166 +31582,52395622,Manhattan,Upper East Side,40.77942,-73.94771999999999,Entire home/apt,160,1,16,1.1,1,0 +31583,185683441,Manhattan,Harlem,40.816390000000006,-73.94223000000001,Private room,80,2,49,3.37,3,178 +31584,165725362,Manhattan,Lower East Side,40.71432,-73.9887,Entire home/apt,150,4,32,2.36,2,216 +31585,99202586,Staten Island,Randall Manor,40.62947,-74.12991,Private room,79,2,4,0.3,5,355 +31586,128917721,Brooklyn,Greenpoint,40.7203,-73.94644,Entire home/apt,250,3,2,0.22,1,177 +31587,160614820,Queens,Ditmars Steinway,40.77496,-73.91171999999999,Private room,60,15,12,0.85,1,21 +31588,183623716,Queens,Long Island City,40.74664,-73.95039,Private room,85,1,10,0.71,1,365 +31589,118029044,Brooklyn,Midwood,40.60909,-73.97155,Entire home/apt,200,2,26,1.88,2,275 +31590,9663349,Queens,Rego Park,40.72795,-73.86048000000001,Private room,40,3,1,0.65,1,305 +31591,27032848,Brooklyn,Williamsburg,40.71747,-73.96045,Private room,89,4,4,0.29,1,128 +31592,84862540,Manhattan,Financial District,40.7069,-74.01388,Private room,95,2,6,0.41,1,0 +31593,43803591,Brooklyn,Fort Hamilton,40.61257,-74.03598000000001,Entire home/apt,135,5,31,2.16,1,151 +31594,185981519,Manhattan,East Village,40.72189,-73.98219,Entire home/apt,260,1,44,3.0,1,299 +31595,185683441,Manhattan,Harlem,40.816390000000006,-73.94414,Private room,80,2,40,2.75,3,177 +31596,127956858,Brooklyn,Bedford-Stuyvesant,40.69298,-73.94188,Entire home/apt,130,3,6,0.44,1,14 +31597,29100568,Manhattan,Theater District,40.76205,-73.982,Entire home/apt,165,30,0,,4,0 +31598,55149412,Manhattan,Chinatown,40.71409,-73.99434000000001,Entire home/apt,400,1,2,0.2,4,191 +31599,186059643,Queens,Ridgewood,40.70022,-73.90025,Entire home/apt,200,2,38,2.73,1,363 +31600,42795691,Manhattan,Upper West Side,40.78925,-73.96757,Entire home/apt,139,6,21,1.83,1,116 +31601,16754308,Manhattan,Lower East Side,40.71152,-73.99166,Private room,59,30,4,0.34,1,52 +31602,181111992,Brooklyn,Flatbush,40.630759999999995,-73.95851,Private room,45,1,19,1.57,2,98 +31603,139756559,Staten Island,Great Kills,40.54878,-74.13908,Entire home/apt,75,30,3,0.22,2,129 +31604,81662935,Brooklyn,Bedford-Stuyvesant,40.68392,-73.91324,Entire home/apt,159,2,49,3.52,2,336 +31605,5922211,Manhattan,Tribeca,40.715540000000004,-74.00645,Private room,120,2,2,0.14,1,0 +31606,186100463,Brooklyn,Crown Heights,40.67357,-73.95467,Private room,99,2,52,3.63,1,224 +31607,186111724,Manhattan,Upper West Side,40.77705,-73.98118000000001,Private room,112,2,81,5.63,1,6 +31608,47895481,Manhattan,Midtown,40.7446,-73.98399,Entire home/apt,175,1,2,0.16,1,0 +31609,31929849,Brooklyn,Midwood,40.61962,-73.96323000000001,Entire home/apt,85,2,8,0.6,1,27 +31610,2521642,Queens,Ditmars Steinway,40.784420000000004,-73.91339,Private room,55,1,14,0.96,1,123 +31611,11406067,Queens,Ditmars Steinway,40.773759999999996,-73.90484000000001,Private room,80,2,17,1.36,1,24 +31612,23971160,Manhattan,Civic Center,40.71313,-74.00681,Private room,90,2,3,0.21,1,0 +31613,24165842,Manhattan,Upper West Side,40.77127,-73.98841999999999,Entire home/apt,180,5,6,0.82,1,5 +31614,186142001,Manhattan,SoHo,40.72591,-74.00176,Entire home/apt,215,1,0,,1,158 +31615,186148319,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.944,Private room,47,10,0,,1,0 +31616,1846051,Manhattan,Hell's Kitchen,40.762809999999995,-73.98883000000001,Entire home/apt,415,4,43,3.33,2,71 +31617,186148178,Queens,Rockaway Beach,40.58466,-73.81628,Entire home/apt,275,2,29,2.13,1,138 +31618,79322329,Brooklyn,Bushwick,40.70133,-73.92074000000001,Private room,115,3,45,3.14,1,75 +31619,32162495,Staten Island,Tompkinsville,40.6326,-74.09099,Entire home/apt,199,1,36,2.51,3,171 +31620,3191545,Manhattan,Kips Bay,40.74425,-73.97754,Entire home/apt,150,30,0,,23,363 +31621,3191545,Manhattan,Kips Bay,40.74454,-73.97579,Entire home/apt,150,30,0,,23,0 +31622,24790900,Brooklyn,Brownsville,40.66959,-73.91204,Private room,120,3,3,0.29,1,365 +31623,63409074,Manhattan,East Village,40.72081,-73.97921,Private room,60,14,7,0.58,1,126 +31624,163843832,Brooklyn,Midwood,40.6155,-73.9522,Private room,58,2,12,0.87,1,36 +31625,2903817,Brooklyn,South Slope,40.66185,-73.9821,Private room,149,2,16,1.26,1,0 +31626,161268152,Manhattan,Lower East Side,40.72221,-73.99181,Entire home/apt,700,2,0,,2,338 +31627,38874050,Queens,Ridgewood,40.70055,-73.91013000000001,Private room,45,2,47,3.29,3,159 +31628,186178785,Brooklyn,Bushwick,40.69658,-73.90773,Private room,55,14,1,0.1,1,0 +31629,179657707,Manhattan,Hell's Kitchen,40.75516,-73.99603,Private room,110,3,35,2.42,2,53 +31630,171825960,Queens,Ditmars Steinway,40.778259999999996,-73.91805,Private room,70,2,1,0.07,1,0 +31631,44213272,Queens,Ditmars Steinway,40.77562,-73.91431,Private room,60,2,22,1.54,5,360 +31632,9864136,Brooklyn,Bushwick,40.68608,-73.914,Entire home/apt,121,30,1,0.07,26,31 +31633,115258603,Brooklyn,Crown Heights,40.672540000000005,-73.91686,Private room,62,2,23,1.58,1,172 +31634,9864136,Manhattan,Kips Bay,40.742329999999995,-73.98031,Private room,75,30,3,0.29,26,345 +31635,25237492,Manhattan,Washington Heights,40.84039,-73.93954000000001,Private room,50,30,2,0.21,34,281 +31636,185495146,Queens,Astoria,40.75452,-73.91458,Private room,52,6,7,0.5,1,2 +31637,4028002,Brooklyn,Prospect-Lefferts Gardens,40.65867,-73.9522,Private room,109,1,0,,1,95 +31638,31789510,Queens,Woodside,40.74667,-73.90202,Entire home/apt,100,3,8,0.55,1,0 +31639,56391348,Brooklyn,Bushwick,40.697379999999995,-73.92947,Entire home/apt,160,3,46,3.22,1,270 +31640,104497453,Brooklyn,Midwood,40.624829999999996,-73.97437,Private room,200,3,1,0.09,3,88 +31641,18416898,Brooklyn,Crown Heights,40.67014,-73.95342,Private room,65,1,13,0.91,1,83 +31642,131482216,Queens,Ridgewood,40.71002,-73.90952,Entire home/apt,115,3,14,0.99,1,19 +31643,171590575,Staten Island,Randall Manor,40.6416,-74.09861,Private room,50,10,2,0.14,1,191 +31644,126034120,Manhattan,East Village,40.72607,-73.97631,Private room,95,1,67,4.59,3,241 +31645,4538012,Manhattan,Harlem,40.80874,-73.94167,Entire home/apt,300,30,3,0.27,4,0 +31646,32008804,Manhattan,East Harlem,40.79707,-73.94739,Private room,69,2,68,4.83,1,0 +31647,186334891,Brooklyn,Sunset Park,40.66294,-73.99349000000001,Entire home/apt,169,2,48,3.42,2,171 +31648,4794638,Brooklyn,Williamsburg,40.71598,-73.95466,Entire home/apt,134,1,52,3.59,1,262 +31649,25479861,Queens,Sunnyside,40.745670000000004,-73.91881,Private room,89,1,0,,1,365 +31650,55724558,Queens,Long Island City,40.76003,-73.94111,Shared room,35,5,11,0.78,5,90 +31651,31929860,Manhattan,Hell's Kitchen,40.75985,-73.99107,Private room,120,1,18,1.27,4,249 +31652,186029613,Manhattan,Harlem,40.82452,-73.94219,Entire home/apt,140,2,23,1.64,1,0 +31653,173373234,Manhattan,Midtown,40.75864,-73.97035,Entire home/apt,200,30,7,0.51,2,188 +31654,19288299,Manhattan,Hell's Kitchen,40.76511,-73.98761999999999,Private room,139,2,35,2.45,1,93 +31655,186376053,Manhattan,Upper West Side,40.79694,-73.96268,Private room,80,2,17,1.44,1,126 +31656,159482696,Manhattan,East Village,40.72247,-73.98172,Private room,79,3,3,0.22,1,0 +31657,26584499,Manhattan,Upper West Side,40.78245,-73.98355,Entire home/apt,125,30,0,,8,283 +31658,26947215,Bronx,Clason Point,40.81862,-73.8791,Shared room,40,1,26,1.82,1,141 +31659,186362905,Brooklyn,Canarsie,40.63125,-73.88925,Entire home/apt,91,1,28,2.01,1,172 +31660,16713679,Manhattan,East Village,40.72531,-73.98187,Entire home/apt,295,3,9,0.64,1,88 +31661,13834266,Manhattan,Financial District,40.70598,-74.00761,Entire home/apt,400,30,0,,1,290 +31662,59074471,Manhattan,East Harlem,40.79762,-73.94797,Private room,76,1,16,1.45,1,0 +31663,25895777,Brooklyn,Williamsburg,40.70843,-73.96833000000001,Entire home/apt,400,6,3,0.35,1,347 +31664,33510832,Brooklyn,Bedford-Stuyvesant,40.69403,-73.94487,Private room,48,2,80,5.93,2,45 +31665,162881419,Bronx,Norwood,40.87816,-73.87213,Entire home/apt,125,3,20,1.4,1,281 +31666,186501476,Manhattan,Greenwich Village,40.72911,-74.00001,Entire home/apt,250,4,6,0.44,1,364 +31667,4538012,Manhattan,East Harlem,40.809309999999996,-73.93982,Private room,65,4,8,0.64,4,0 +31668,70237937,Brooklyn,Bedford-Stuyvesant,40.681329999999996,-73.95433,Private room,80,6,1,0.07,1,0 +31669,11305249,Manhattan,East Village,40.724990000000005,-73.98867,Entire home/apt,650,2,41,2.83,1,126 +31670,32162495,Staten Island,Tompkinsville,40.63126,-74.0921,Entire home/apt,48,3,1,0.08,3,0 +31671,186586297,Manhattan,Hell's Kitchen,40.7659,-73.98557,Private room,99,1,17,1.18,2,0 +31672,163421878,Queens,Woodside,40.743120000000005,-73.91185,Private room,55,1,25,1.75,3,332 +31673,186620707,Manhattan,Harlem,40.79892,-73.95139,Shared room,44,1,49,3.38,2,5 +31674,186626470,Queens,Ridgewood,40.70653,-73.91598,Entire home/apt,200,7,10,0.77,1,365 +31675,588933,Brooklyn,Crown Heights,40.6682,-73.95260999999999,Entire home/apt,150,3,36,2.65,1,332 +31676,98157128,Bronx,Wakefield,40.887640000000005,-73.8558,Entire home/apt,100,2,38,2.66,1,107 +31677,43184079,Manhattan,Stuyvesant Town,40.73082,-73.98023,Entire home/apt,150,35,2,0.16,1,83 +31678,14710145,Manhattan,East Village,40.7232,-73.98758000000001,Private room,150,2,3,0.21,1,0 +31679,26068038,Brooklyn,Windsor Terrace,40.64801,-73.97391,Entire home/apt,350,3,2,0.16,1,0 +31680,20912691,Queens,Jamaica,40.708870000000005,-73.78275,Entire home/apt,128,2,23,1.75,7,10 +31681,186586297,Manhattan,Hell's Kitchen,40.767520000000005,-73.98640999999999,Entire home/apt,200,3,71,5.49,2,95 +31682,5160639,Brooklyn,Bushwick,40.70434,-73.91935,Entire home/apt,190,2,19,2.18,1,2 +31683,48410883,Brooklyn,South Slope,40.66807,-73.9906,Private room,40,5,7,0.49,2,0 +31684,4607848,Manhattan,Inwood,40.8622,-73.93039,Entire home/apt,71,6,2,0.14,1,0 +31685,45416627,Queens,Astoria,40.76962,-73.92477,Private room,60,2,4,0.29,9,283 +31686,45416627,Queens,Astoria,40.76956,-73.9243,Private room,59,1,48,3.47,9,351 +31687,3532263,Brooklyn,Flatbush,40.63556,-73.95076,Entire home/apt,599,2,34,2.42,4,0 +31688,185724116,Brooklyn,Bushwick,40.68161,-73.90717,Entire home/apt,125,2,41,2.87,1,168 +31689,52575889,Brooklyn,Bedford-Stuyvesant,40.68957,-73.94445,Entire home/apt,115,3,9,0.63,1,0 +31690,101498908,Brooklyn,East Flatbush,40.65056,-73.94994,Entire home/apt,65,2,14,1.03,2,0 +31691,186361566,Manhattan,Washington Heights,40.834179999999996,-73.94088,Shared room,50,1,8,0.56,1,89 +31692,13490977,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94674,Entire home/apt,198,2,14,1.01,1,0 +31693,186791133,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.96209,Entire home/apt,78,3,53,3.77,1,74 +31694,186798498,Manhattan,Lower East Side,40.7157,-73.98864,Entire home/apt,160,2,50,4.05,1,325 +31695,46594096,Brooklyn,Greenpoint,40.72672,-73.94054,Shared room,125,3,4,0.28,1,0 +31696,84503565,Brooklyn,Bushwick,40.70182,-73.92922,Private room,90,1,8,0.55,2,295 +31697,105640471,Brooklyn,Sunset Park,40.64193,-74.01483,Private room,43,1,11,1.11,8,146 +31698,83768519,Brooklyn,Bushwick,40.697959999999995,-73.93563,Entire home/apt,80,5,1,0.09,1,5 +31699,20994908,Brooklyn,Williamsburg,40.70666,-73.94379,Private room,60,4,4,0.29,1,0 +31700,5861197,Manhattan,Chelsea,40.75254,-73.99471,Entire home/apt,190,3,2,0.15,1,0 +31701,6606533,Brooklyn,East Flatbush,40.636540000000004,-73.94861999999999,Shared room,60,1,1,0.1,1,0 +31702,186819005,Manhattan,Harlem,40.8175,-73.95234,Private room,57,1,39,2.71,1,176 +31703,48146336,Manhattan,Hell's Kitchen,40.76291,-73.99327,Entire home/apt,120,30,3,0.26,20,342 +31704,11966882,Manhattan,Kips Bay,40.73807,-73.98091,Entire home/apt,119,4,2,0.15,1,0 +31705,186851013,Brooklyn,Fort Greene,40.68957,-73.97449,Entire home/apt,200,2,31,2.27,1,95 +31706,114502589,Queens,Long Island City,40.75246,-73.94003000000001,Shared room,38,1,0,,1,0 +31707,186905487,Manhattan,Harlem,40.80863,-73.95503000000001,Entire home/apt,92,2,68,4.76,1,32 +31708,15640230,Brooklyn,Crown Heights,40.66433,-73.93438,Private room,45,13,2,0.15,4,354 +31709,7339898,Manhattan,Greenwich Village,40.72975,-74.00157,Entire home/apt,200,3,18,1.28,1,10 +31710,129585378,Manhattan,Murray Hill,40.74943,-73.97279,Private room,120,4,3,0.26,1,0 +31711,77534743,Brooklyn,Bedford-Stuyvesant,40.68622,-73.9395,Private room,42,2,4,0.28,1,0 +31712,38379191,Manhattan,Greenwich Village,40.72783,-74.00102,Private room,89,7,44,3.11,1,0 +31713,1784813,Manhattan,Upper East Side,40.78237,-73.95226,Private room,95,2,35,2.58,1,180 +31714,1100494,Manhattan,Harlem,40.82347,-73.95452,Private room,80,5,4,0.35,3,324 +31715,18418581,Manhattan,Washington Heights,40.85522,-73.93271,Entire home/apt,235,1,24,1.68,3,352 +31716,158596887,Brooklyn,Bushwick,40.7016,-73.91533000000001,Private room,40,2,3,0.21,2,0 +31717,186318389,Bronx,Mount Eden,40.84059,-73.92156,Entire home/apt,150,1,4,0.28,1,0 +31718,55325859,Manhattan,Harlem,40.8241,-73.94521999999999,Entire home/apt,120,1,4,0.31,1,0 +31719,186970542,Manhattan,Upper West Side,40.773959999999995,-73.9842,Entire home/apt,400,2,66,4.59,1,164 +31720,127764617,Manhattan,Financial District,40.70848,-74.0051,Private room,130,1,40,2.79,1,49 +31721,34672584,Brooklyn,Crown Heights,40.66916,-73.96186999999999,Private room,75,2,1,0.07,1,157 +31722,186985990,Manhattan,West Village,40.73664,-74.00567,Entire home/apt,125,3,38,2.79,1,100 +31723,15940253,Manhattan,Harlem,40.82708,-73.9447,Private room,120,10,1,0.15,2,0 +31724,87328,Brooklyn,Park Slope,40.67917,-73.97951,Entire home/apt,120,5,1,0.07,1,0 +31725,43825074,Brooklyn,Cypress Hills,40.68593,-73.87793,Private room,35,28,9,0.63,3,312 +31726,66754355,Brooklyn,Bushwick,40.70792,-73.91986,Private room,45,3,1,0.07,1,0 +31727,14577537,Brooklyn,Bedford-Stuyvesant,40.69103,-73.9288,Entire home/apt,100,30,1,0.07,2,111 +31728,186680487,Manhattan,Two Bridges,40.71094,-73.99305,Private room,97,1,86,6.34,1,20 +31729,4350342,Brooklyn,Williamsburg,40.7116,-73.95137,Entire home/apt,225,2,21,1.6,1,88 +31730,4267075,Brooklyn,Clinton Hill,40.68458,-73.96805,Entire home/apt,89,365,1,0.09,2,0 +31731,130074377,Queens,Ridgewood,40.70092,-73.90714,Private room,80,1,16,1.46,2,220 +31732,111876825,Queens,Maspeth,40.713190000000004,-73.90315,Private room,200,2,0,,1,365 +31733,63671528,Brooklyn,Bedford-Stuyvesant,40.69475,-73.93585999999999,Private room,40,7,1,0.07,1,0 +31734,7656338,Manhattan,East Village,40.72191,-73.98124,Private room,80,2,9,0.66,1,0 +31735,40502,Manhattan,Kips Bay,40.74183,-73.98165999999999,Entire home/apt,175,2,29,2.14,1,0 +31736,3346513,Brooklyn,Downtown Brooklyn,40.69192,-73.98391,Entire home/apt,250,4,15,1.04,2,22 +31737,187116536,Brooklyn,Greenpoint,40.72251,-73.95103,Entire home/apt,135,3,58,4.09,1,70 +31738,12243051,Manhattan,Financial District,40.70401,-74.00932,Entire home/apt,179,29,0,,96,1 +31739,1262513,Manhattan,Washington Heights,40.85197,-73.93308,Private room,59,2,15,1.06,1,98 +31740,130965770,Manhattan,Hell's Kitchen,40.76914,-73.98756999999999,Entire home/apt,180,1,43,4.37,1,2 +31741,183736521,Manhattan,Midtown,40.76592,-73.98095,Private room,125,3,1,0.07,1,5 +31742,5383703,Manhattan,Upper East Side,40.7648,-73.95862,Entire home/apt,170,7,29,2.06,1,173 +31743,12243051,Manhattan,Financial District,40.70518,-74.00994,Entire home/apt,182,29,2,0.24,96,347 +31744,3749502,Manhattan,Washington Heights,40.83856,-73.94411,Private room,65,3,23,1.65,1,1 +31745,4285260,Brooklyn,Bedford-Stuyvesant,40.68582,-73.93706,Entire home/apt,450,2,5,0.36,1,3 +31746,38874050,Queens,Ridgewood,40.70125,-73.91051,Private room,42,2,39,2.71,3,141 +31747,91526716,Brooklyn,Williamsburg,40.71246,-73.96084,Private room,79,3,50,3.53,1,28 +31748,22251843,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.96228,Entire home/apt,80,7,8,0.58,1,4 +31749,22824452,Manhattan,West Village,40.73272,-74.00623,Entire home/apt,165,5,4,0.3,1,0 +31750,1805238,Brooklyn,Prospect-Lefferts Gardens,40.65517,-73.95827,Private room,50,1,43,3.07,2,14 +31751,4426154,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.962,Entire home/apt,75,2,2,0.15,1,0 +31752,56051614,Brooklyn,Prospect Heights,40.67388,-73.96709,Entire home/apt,128,3,13,0.99,1,2 +31753,110062861,Manhattan,Harlem,40.814479999999996,-73.94547,Entire home/apt,122,4,17,1.42,2,245 +31754,39074591,Queens,Woodside,40.746990000000004,-73.90844,Private room,46,1,2,0.15,1,0 +31755,187182730,Manhattan,Harlem,40.825109999999995,-73.95340999999999,Private room,85,4,3,0.21,1,179 +31756,5832321,Queens,Glendale,40.69709,-73.89556,Entire home/apt,150,2,4,0.41,2,0 +31757,25146744,Manhattan,Upper East Side,40.771809999999995,-73.95097,Entire home/apt,199,5,1,0.09,1,0 +31758,60975812,Manhattan,Hell's Kitchen,40.75417,-73.99435,Private room,70,4,0,,1,0 +31759,187190679,Brooklyn,Bushwick,40.699329999999996,-73.92463000000001,Entire home/apt,105,2,31,2.34,1,353 +31760,15838559,Queens,Forest Hills,40.71447,-73.85181,Private room,59,2,6,0.43,4,6 +31761,76537707,Manhattan,Upper West Side,40.795,-73.97479,Private room,67,12,1,0.07,1,0 +31762,2788934,Brooklyn,Greenpoint,40.721790000000006,-73.9447,Private room,61,1,30,2.08,2,1 +31763,479986,Brooklyn,Williamsburg,40.707679999999996,-73.95137,Entire home/apt,170,2,77,5.54,1,10 +31764,46803679,Manhattan,West Village,40.731770000000004,-74.00161999999999,Entire home/apt,100,3,0,,1,0 +31765,1106731,Queens,Rockaway Beach,40.5886,-73.8124,Entire home/apt,86,2,2,0.14,2,0 +31766,16015663,Queens,Ditmars Steinway,40.773709999999994,-73.91689000000001,Private room,85,3,10,0.79,1,88 +31767,34948714,Manhattan,Upper West Side,40.79557,-73.97632,Entire home/apt,145,59,0,,1,0 +31768,187301833,Manhattan,SoHo,40.72095,-73.99961,Entire home/apt,210,3,34,2.48,1,37 +31769,187312110,Bronx,Fieldston,40.887640000000005,-73.90449,Private room,50,1,28,2.47,1,73 +31770,34643568,Manhattan,East Harlem,40.79244,-73.94028,Private room,80,3,18,1.74,6,88 +31771,170085232,Queens,Sunnyside,40.74425,-73.91768,Private room,50,1,74,5.15,1,0 +31772,27163168,Brooklyn,Bushwick,40.69639,-73.93245999999999,Private room,50,3,1,0.07,1,0 +31773,187340835,Queens,Forest Hills,40.71082,-73.85112,Private room,50,1,72,5.19,1,228 +31774,117367030,Brooklyn,Williamsburg,40.707029999999996,-73.95434,Private room,151,3,12,0.97,1,0 +31775,65119217,Manhattan,East Village,40.72745,-73.98536999999999,Private room,200,1,1,0.07,1,363 +31776,54481883,Manhattan,Gramercy,40.73805,-73.98415,Entire home/apt,150,4,4,0.29,2,0 +31777,25912435,Manhattan,Greenwich Village,40.73384,-73.99807,Entire home/apt,147,3,13,0.96,1,0 +31778,17778872,Manhattan,Morningside Heights,40.80937,-73.95881,Entire home/apt,350,3,0,,1,0 +31779,9922513,Brooklyn,Prospect-Lefferts Gardens,40.66247,-73.95011,Entire home/apt,200,4,1,0.07,1,21 +31780,24020292,Brooklyn,Bushwick,40.70122,-73.91835999999999,Private room,70,1,44,3.31,4,59 +31781,187388261,Brooklyn,Bedford-Stuyvesant,40.68135,-73.93709,Entire home/apt,140,8,1,0.16,1,0 +31782,24373940,Queens,East Elmhurst,40.75503,-73.89607,Entire home/apt,109,60,0,,1,365 +31783,3405917,Queens,Sunnyside,40.74597,-73.91434,Private room,55,3,26,1.82,1,1 +31784,132669029,Bronx,Throgs Neck,40.82601,-73.81907,Private room,50,3,19,1.36,4,8 +31785,28159250,Manhattan,Kips Bay,40.7385,-73.97945,Entire home/apt,200,2,43,3.1,1,284 +31786,78261482,Manhattan,Hell's Kitchen,40.76293,-73.99347,Entire home/apt,190,4,16,1.24,2,20 +31787,21764391,Brooklyn,Williamsburg,40.711659999999995,-73.95739,Entire home/apt,200,3,7,0.62,1,67 +31788,58953152,Brooklyn,Bushwick,40.70065,-73.91135,Private room,49,1,29,2.03,2,0 +31789,187487947,Brooklyn,Greenpoint,40.732279999999996,-73.95539000000001,Entire home/apt,119,1,63,4.51,6,0 +31790,25109819,Queens,Astoria,40.759890000000006,-73.91571,Private room,40,1,5,0.35,1,0 +31791,120762452,Manhattan,Murray Hill,40.75028,-73.97702,Entire home/apt,210,30,1,0.08,50,365 +31792,3082771,Brooklyn,Park Slope,40.67238,-73.97606999999999,Entire home/apt,105,7,8,0.62,1,43 +31793,39774366,Manhattan,Upper East Side,40.77882,-73.95054,Entire home/apt,86,27,2,0.19,1,154 +31794,1092203,Manhattan,Upper West Side,40.78277,-73.97604,Entire home/apt,150,4,12,1.55,1,0 +31795,26602392,Queens,Springfield Gardens,40.662040000000005,-73.76597,Private room,60,1,50,3.49,2,355 +31796,3494371,Brooklyn,Williamsburg,40.7135,-73.95468000000001,Entire home/apt,225,10,5,0.47,1,150 +31797,187530856,Brooklyn,Williamsburg,40.70896,-73.94754,Private room,157,1,6,0.42,2,365 +31798,187532995,Brooklyn,Bushwick,40.70447,-73.92589,Private room,70,4,2,0.14,1,363 +31799,75981937,Queens,Astoria,40.76197,-73.92335,Entire home/apt,140,15,2,0.18,2,71 +31800,132669029,Bronx,Throgs Neck,40.814370000000004,-73.82774,Entire home/apt,74,2,37,2.63,4,70 +31801,187536544,Brooklyn,Brighton Beach,40.57707,-73.96303,Entire home/apt,150,5,8,0.56,1,179 +31802,186679495,Manhattan,Washington Heights,40.84698,-73.93629,Entire home/apt,75,1,81,5.73,1,171 +31803,113890236,Brooklyn,Bensonhurst,40.609970000000004,-73.98021999999999,Private room,40,2,2,0.14,1,0 +31804,21573011,Manhattan,Upper West Side,40.80001,-73.96459,Entire home/apt,180,2,15,1.29,1,18 +31805,20555097,Brooklyn,Bedford-Stuyvesant,40.682359999999996,-73.9277,Private room,37,3,13,0.92,2,0 +31806,97042500,Manhattan,Harlem,40.80393,-73.95205,Entire home/apt,344,2,9,0.75,4,25 +31807,15787004,Brooklyn,Bushwick,40.695009999999996,-73.92296,Private room,40,3,2,0.14,5,0 +31808,5024658,Brooklyn,Williamsburg,40.716,-73.94434,Entire home/apt,130,7,1,0.08,1,9 +31809,1799439,Brooklyn,Williamsburg,40.71543,-73.94278,Private room,99,2,7,0.54,1,0 +31810,70043681,Manhattan,East Village,40.727340000000005,-73.97528,Entire home/apt,142,2,50,3.69,1,278 +31811,1478535,Manhattan,Upper West Side,40.78118,-73.98122,Entire home/apt,550,7,0,,1,8 +31812,28778026,Brooklyn,Bedford-Stuyvesant,40.69401,-73.95692,Private room,70,1,20,1.39,2,87 +31813,187648135,Bronx,Allerton,40.867779999999996,-73.85491,Private room,45,1,38,2.7,1,85 +31814,137129564,Queens,Flushing,40.754220000000004,-73.81586,Private room,59,1,25,1.76,4,77 +31815,27958360,Manhattan,Upper West Side,40.78136,-73.98225,Entire home/apt,160,2,20,1.47,1,6 +31816,135502033,Queens,Rockaway Beach,40.58415,-73.81243,Private room,125,1,30,2.2,1,342 +31817,130903736,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93398,Private room,59,1,97,7.08,1,25 +31818,12243051,Manhattan,Chelsea,40.7429,-73.9956,Entire home/apt,239,29,0,,96,335 +31819,187684303,Manhattan,Kips Bay,40.73992,-73.98272,Entire home/apt,200,2,16,1.57,1,6 +31820,14269481,Brooklyn,Williamsburg,40.70012,-73.95082,Entire home/apt,130,3,2,0.16,1,3 +31821,7822898,Queens,Sunnyside,40.74617,-73.91592,Entire home/apt,104,2,6,0.43,1,141 +31822,12243051,Manhattan,Financial District,40.705709999999996,-74.00833,Entire home/apt,182,29,1,0.57,96,333 +31823,187718165,Queens,Briarwood,40.71007,-73.81483,Private room,30,1,24,1.67,1,6 +31824,101216314,Manhattan,Harlem,40.808479999999996,-73.94270999999999,Private room,65,1,28,2.0,1,163 +31825,7834073,Manhattan,East Harlem,40.7879,-73.94796,Entire home/apt,250,2,27,1.94,1,31 +31826,156716488,Queens,South Ozone Park,40.669059999999995,-73.79254,Private room,60,3,2,0.23,2,180 +31827,156716488,Queens,South Ozone Park,40.66872,-73.79417,Private room,48,3,15,1.18,2,365 +31828,6194487,Queens,Astoria,40.76207,-73.90541,Entire home/apt,149,2,47,3.46,3,308 +31829,183127881,Brooklyn,Canarsie,40.644870000000004,-73.90080999999999,Private room,59,2,56,4.06,4,365 +31830,15220605,Manhattan,Upper West Side,40.80389,-73.96859,Entire home/apt,100,3,1,0.08,1,0 +31831,158461160,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92329000000001,Entire home/apt,62,30,2,0.25,6,255 +31832,52991771,Brooklyn,Downtown Brooklyn,40.69489,-73.98321999999999,Entire home/apt,135,4,27,1.95,1,57 +31833,28907641,Queens,Flushing,40.7632,-73.83098000000001,Private room,95,1,78,5.43,2,87 +31834,175019394,Queens,Jamaica,40.6706,-73.7794,Entire home/apt,450,1,3,0.22,6,83 +31835,24704779,Brooklyn,Sheepshead Bay,40.58996,-73.95835,Private room,59,5,3,0.22,1,97 +31836,3090750,Manhattan,Upper East Side,40.77106,-73.95013,Private room,59,2,4,0.28,2,0 +31837,132669029,Bronx,Throgs Neck,40.82696,-73.81926999999999,Private room,40,4,34,2.54,4,37 +31838,2316071,Brooklyn,Williamsburg,40.71136,-73.9562,Entire home/apt,215,2,8,0.6,1,77 +31839,187822021,Queens,Astoria,40.7645,-73.9238,Entire home/apt,120,30,5,0.37,1,5 +31840,187822288,Queens,East Elmhurst,40.76921,-73.87132,Private room,49,1,128,8.95,5,278 +31841,117341565,Manhattan,Little Italy,40.71835,-73.99757,Private room,41,240,1,0.08,1,0 +31842,36364146,Manhattan,Morningside Heights,40.80672,-73.96713000000001,Private room,125,6,3,0.22,1,34 +31843,120006972,Manhattan,Greenwich Village,40.72923,-74.00176,Entire home/apt,250,3,14,1.03,1,297 +31844,19508332,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.9602,Entire home/apt,75,2,7,0.54,1,9 +31845,187861161,Brooklyn,Crown Heights,40.67334,-73.93269000000001,Private room,34,5,1,0.16,1,0 +31846,95051172,Manhattan,Midtown,40.75377,-73.97301999999999,Private room,169,2,0,,1,0 +31847,148102066,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94396,Private room,60,1,85,6.01,4,0 +31848,77243829,Manhattan,Upper East Side,40.77751,-73.94774,Entire home/apt,375,2,0,,1,0 +31849,90685499,Brooklyn,Williamsburg,40.711870000000005,-73.95864,Private room,150,1,0,,2,0 +31850,187872824,Manhattan,Upper West Side,40.800129999999996,-73.95907,Entire home/apt,150,1,6,0.43,2,179 +31851,102351927,Manhattan,Hell's Kitchen,40.76482,-73.98674,Entire home/apt,224,7,10,0.74,1,0 +31852,175019394,Queens,Jamaica,40.671209999999995,-73.77859000000001,Private room,80,1,68,4.81,6,153 +31853,26474200,Brooklyn,Greenpoint,40.723729999999996,-73.94088,Private room,100,3,9,0.69,1,365 +31854,187889772,Queens,Ditmars Steinway,40.776759999999996,-73.92069000000001,Entire home/apt,100,1,4,0.28,1,0 +31855,37421312,Manhattan,Upper East Side,40.770959999999995,-73.95334,Entire home/apt,125,7,3,0.21,1,0 +31856,10901705,Brooklyn,Williamsburg,40.70763,-73.94797,Entire home/apt,120,1,20,1.42,1,0 +31857,187895786,Brooklyn,Bedford-Stuyvesant,40.69327,-73.95725,Private room,75,2,0,,1,87 +31858,136812761,Brooklyn,Bedford-Stuyvesant,40.69448,-73.93656999999999,Entire home/apt,600,1,29,2.37,3,162 +31859,175019394,Queens,Jamaica,40.67228,-73.77804,Private room,70,1,81,5.73,6,85 +31860,187908645,Queens,Flushing,40.75582,-73.83215,Private room,60,1,9,0.69,4,57 +31861,187914509,Manhattan,Upper West Side,40.800779999999996,-73.96394000000001,Private room,50,5,4,0.28,1,0 +31862,32844422,Manhattan,East Village,40.7292,-73.98491,Entire home/apt,149,3,0,,1,0 +31863,135131537,Manhattan,Midtown,40.748459999999994,-73.98708,Entire home/apt,180,6,38,2.68,2,27 +31864,142455925,Manhattan,Upper East Side,40.7661,-73.95419,Entire home/apt,118,3,3,0.23,1,0 +31865,29026712,Manhattan,Harlem,40.817170000000004,-73.93918000000001,Entire home/apt,70,2,2,0.15,1,0 +31866,2570750,Manhattan,Midtown,40.76682,-73.97943000000001,Entire home/apt,1195,3,27,1.94,1,40 +31867,187980677,Manhattan,Chelsea,40.750690000000006,-73.99736,Private room,175,1,46,3.22,1,109 +31868,69469129,Brooklyn,Flatbush,40.65341,-73.96238000000001,Entire home/apt,165,5,8,0.66,1,258 +31869,78823148,Manhattan,Kips Bay,40.74235,-73.97971,Private room,150,5,1,0.07,1,0 +31870,5679153,Manhattan,East Harlem,40.78973,-73.94965,Entire home/apt,50,4,17,1.21,1,0 +31871,186155189,Manhattan,Washington Heights,40.84332,-73.94131,Private room,50,1,8,0.58,3,53 +31872,104812805,Staten Island,Arrochar,40.596790000000006,-74.08444,Private room,33,4,17,1.2,8,316 +31873,187908645,Queens,Flushing,40.756859999999996,-73.83279,Private room,60,1,33,2.36,4,49 +31874,187908645,Queens,Flushing,40.755390000000006,-73.83203,Private room,50,1,20,1.64,4,2 +31875,3480784,Manhattan,Little Italy,40.71953,-73.99685,Private room,110,2,34,2.65,1,160 +31876,188023318,Manhattan,Midtown,40.742340000000006,-73.98277,Entire home/apt,145,5,0,,4,40 +31877,3033697,Manhattan,Upper West Side,40.78054,-73.984,Entire home/apt,137,6,5,0.37,1,0 +31878,2967674,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92681999999999,Private room,50,30,4,0.37,2,21 +31879,17620937,Manhattan,Washington Heights,40.83534,-73.94354,Entire home/apt,150,2,3,0.25,1,35 +31880,26178850,Brooklyn,Bedford-Stuyvesant,40.683440000000004,-73.93308,Private room,45,5,19,1.34,1,199 +31881,13926627,Manhattan,Harlem,40.81811,-73.94497,Private room,75,2,15,1.07,1,140 +31882,188050267,Manhattan,Washington Heights,40.83827,-73.93975999999999,Private room,50,2,0,,1,0 +31883,188051537,Manhattan,Upper West Side,40.80063,-73.96936,Private room,91,4,2,0.19,1,197 +31884,173852911,Queens,Far Rockaway,40.59486,-73.73836999999999,Entire home/apt,250,2,22,1.6,1,47 +31885,25371059,Brooklyn,Prospect-Lefferts Gardens,40.66364,-73.94978,Entire home/apt,80,60,15,1.21,1,2 +31886,150238950,Manhattan,East Village,40.72691,-73.9813,Entire home/apt,136,2,6,0.42,1,39 +31887,182260692,Brooklyn,Cypress Hills,40.68187,-73.87985,Private room,99,2,48,3.52,2,327 +31888,6762900,Bronx,Highbridge,40.83088,-73.92779,Entire home/apt,103,2,40,2.84,1,248 +31889,15139808,Manhattan,Washington Heights,40.833090000000006,-73.94008000000001,Private room,175,1,0,,1,63 +31890,188160057,Manhattan,Washington Heights,40.8483,-73.93115,Private room,125,3,0,,1,363 +31891,83978022,Brooklyn,Clinton Hill,40.69538,-73.9701,Entire home/apt,180,30,0,,1,0 +31892,188169807,Manhattan,Upper West Side,40.804390000000005,-73.96755,Entire home/apt,120,2,16,1.51,1,1 +31893,187094395,Manhattan,East Village,40.72532,-73.98023,Entire home/apt,164,3,0,,1,0 +31894,177560095,Queens,Glendale,40.699909999999996,-73.88951999999999,Private room,50,7,17,1.27,1,66 +31895,40237342,Brooklyn,Bedford-Stuyvesant,40.69089,-73.94676,Private room,80,30,10,0.71,1,37 +31896,108302188,Queens,Astoria,40.75755,-73.92854,Private room,49,3,8,0.65,1,18 +31897,58964906,Manhattan,Harlem,40.82331,-73.94403,Private room,50,5,1,0.07,1,0 +31898,48418910,Queens,Ridgewood,40.702890000000004,-73.91156,Private room,120,2,0,,2,0 +31899,16308032,Queens,East Elmhurst,40.75891,-73.87819,Entire home/apt,60,1,59,4.18,1,150 +31900,11022916,Manhattan,Harlem,40.80808,-73.95259,Private room,45,1,14,0.99,1,0 +31901,15940253,Manhattan,Harlem,40.82582,-73.946,Private room,70,4,3,0.4,2,0 +31902,30558890,Manhattan,Chelsea,40.75164,-73.99727,Entire home/apt,120,30,2,0.21,1,0 +31903,51112551,Manhattan,Upper East Side,40.7618,-73.96546,Entire home/apt,375,2,0,,1,83 +31904,116460196,Brooklyn,Williamsburg,40.70704,-73.92903000000001,Private room,75,7,0,,1,0 +31905,1005489,Brooklyn,Clinton Hill,40.684090000000005,-73.96467,Private room,70,7,2,0.88,1,89 +31906,79651295,Queens,Jamaica,40.67819,-73.78919,Entire home/apt,60,1,0,,4,177 +31907,140057330,Queens,Ridgewood,40.696490000000004,-73.90564,Private room,55,1,20,1.44,7,107 +31908,84453766,Brooklyn,Williamsburg,40.702290000000005,-73.93774,Private room,80,10,1,0.07,1,0 +31909,14396470,Manhattan,Chinatown,40.71694,-74.00076,Entire home/apt,150,3,0,,1,0 +31910,39190931,Brooklyn,Bushwick,40.702020000000005,-73.92675,Entire home/apt,150,28,0,,1,90 +31911,5074874,Manhattan,Harlem,40.80793,-73.95127,Entire home/apt,225,2,3,0.24,1,6 +31912,188328775,Queens,Neponsit,40.57043,-73.85821,Entire home/apt,200,2,7,0.55,1,44 +31913,188337220,Brooklyn,Bedford-Stuyvesant,40.68452,-73.91614,Entire home/apt,99,3,49,3.63,1,102 +31914,17005953,Queens,Long Island City,40.74462,-73.94913000000001,Entire home/apt,110,1,3,0.23,1,0 +31915,5962328,Queens,Flushing,40.76025,-73.8221,Entire home/apt,115,30,1,1.0,15,291 +31916,4407432,Brooklyn,Williamsburg,40.72163,-73.95465,Entire home/apt,225,2,9,0.66,1,120 +31917,181397986,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93729,Private room,95,1,21,1.48,2,260 +31918,7065881,Brooklyn,Park Slope,40.67691,-73.98163000000001,Entire home/apt,139,4,3,0.24,1,0 +31919,7780845,Brooklyn,Bushwick,40.702690000000004,-73.91778000000001,Private room,65,2,20,1.57,3,282 +31920,28823649,Manhattan,SoHo,40.72432,-74.00195,Entire home/apt,160,1,6,0.66,3,172 +31921,188362154,Queens,Astoria,40.76623,-73.91279,Private room,150,5,0,,1,362 +31922,188365772,Manhattan,Harlem,40.82307,-73.95447,Entire home/apt,250,3,0,,1,0 +31923,7072861,Manhattan,Gramercy,40.737140000000004,-73.98827,Entire home/apt,175,4,2,0.15,1,3 +31924,2642222,Brooklyn,Prospect Heights,40.6813,-73.97449,Entire home/apt,179,2,19,1.84,1,0 +31925,6919899,Brooklyn,Greenpoint,40.729009999999995,-73.94754,Entire home/apt,130,2,34,3.34,1,129 +31926,93359389,Brooklyn,East Flatbush,40.65755,-73.92341,Entire home/apt,80,2,18,1.46,1,39 +31927,8629268,Brooklyn,Bedford-Stuyvesant,40.68037,-73.93821,Private room,44,3,4,0.28,1,0 +31928,33225521,Manhattan,East Village,40.72888,-73.99019,Entire home/apt,300,1,8,0.58,1,16 +31929,50296004,Manhattan,Greenwich Village,40.734629999999996,-73.99795999999999,Entire home/apt,215,2,18,1.33,1,38 +31930,188390380,Brooklyn,Crown Heights,40.67575,-73.95074,Entire home/apt,100,1,26,1.91,1,0 +31931,188391102,Brooklyn,Crown Heights,40.67442,-73.94096,Entire home/apt,295,4,7,0.56,2,343 +31932,128258877,Manhattan,Upper West Side,40.79332,-73.97501,Entire home/apt,100,1,4,0.29,1,0 +31933,159154462,Manhattan,Midtown,40.757220000000004,-73.98161999999999,Shared room,85,1,5,0.36,2,83 +31934,134122415,Brooklyn,Windsor Terrace,40.6604,-73.98316,Entire home/apt,150,10,3,0.25,1,23 +31935,169882061,Brooklyn,Bedford-Stuyvesant,40.685179999999995,-73.93682,Entire home/apt,225,2,23,1.66,1,77 +31936,79651295,Queens,Jamaica,40.67733,-73.78826,Private room,80,2,0,,4,179 +31937,34184387,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94924,Private room,75,5,2,0.16,1,54 +31938,79651295,Queens,Jamaica,40.678940000000004,-73.78885,Private room,140,1,1,0.07,4,177 +31939,25347213,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9515,Entire home/apt,110,2,3,0.23,1,0 +31940,42931425,Brooklyn,Flatbush,40.65333,-73.95381,Private room,100,1,0,,1,0 +31941,187530856,Brooklyn,Williamsburg,40.70933,-73.94779,Entire home/apt,265,2,4,0.29,2,89 +31942,11095383,Brooklyn,Flatbush,40.63074,-73.95849,Entire home/apt,150,4,1,0.08,1,20 +31943,104051773,Brooklyn,East Flatbush,40.65215,-73.95219,Entire home/apt,91,3,4,0.3,1,12 +31944,11949316,Manhattan,Chelsea,40.74903,-73.99198,Entire home/apt,795,3,21,2.56,1,16 +31945,188518588,Manhattan,Hell's Kitchen,40.76189,-73.98991,Entire home/apt,185,10,23,1.68,1,68 +31946,137255181,Manhattan,Hell's Kitchen,40.76402,-73.98694,Private room,125,4,1,0.07,1,0 +31947,37193449,Queens,Sunnyside,40.74548,-73.91833000000001,Entire home/apt,75,5,0,,1,0 +31948,13089912,Manhattan,East Village,40.7258,-73.97963,Entire home/apt,330,2,3,0.25,2,22 +31949,1407676,Brooklyn,Williamsburg,40.71739,-73.95804,Private room,99,2,0,,4,159 +31950,177156643,Queens,Flushing,40.769909999999996,-73.8265,Private room,50,3,24,1.73,1,153 +31951,62026191,Manhattan,Harlem,40.81585,-73.94272,Private room,79,1,67,4.82,1,78 +31952,10777921,Brooklyn,Williamsburg,40.71269,-73.94771999999999,Entire home/apt,129,2,8,0.57,1,0 +31953,188556821,Queens,Woodside,40.74337,-73.90405,Private room,40,1,7,0.5,1,0 +31954,65562107,Manhattan,Tribeca,40.71868,-74.00765,Entire home/apt,1200,5,13,0.98,1,347 +31955,36849759,Brooklyn,Bushwick,40.7022,-73.93165,Entire home/apt,200,2,39,3.09,2,209 +31956,45376603,Brooklyn,Bushwick,40.69495,-73.92075,Private room,41,2,9,0.64,1,0 +31957,182690453,Brooklyn,Navy Yard,40.69833,-73.97086999999999,Private room,140,2,37,2.64,1,157 +31958,159610596,Manhattan,Financial District,40.70606,-74.0054,Entire home/apt,295,1,54,3.95,6,117 +31959,56726605,Brooklyn,Canarsie,40.64432,-73.90556,Entire home/apt,125,5,6,0.44,3,90 +31960,168465501,Manhattan,Murray Hill,40.74929,-73.97827,Entire home/apt,150,30,3,0.27,4,113 +31961,29100568,Manhattan,Theater District,40.76093,-73.98192,Entire home/apt,170,20,1,0.07,4,0 +31962,1590939,Queens,Astoria,40.7588,-73.92566,Entire home/apt,101,10,0,,1,0 +31963,187383058,Queens,Arverne,40.5872,-73.79567,Entire home/apt,350,2,25,1.83,2,332 +31964,164724867,Manhattan,Upper West Side,40.78922,-73.97398000000001,Entire home/apt,175,2,8,0.59,1,1 +31965,48889862,Manhattan,Harlem,40.79891,-73.9528,Entire home/apt,105,2,42,3.04,1,115 +31966,61980894,Brooklyn,Bushwick,40.6954,-73.92596,Private room,54,2,7,0.54,1,90 +31967,169940010,Queens,Ridgewood,40.70126,-73.90231,Private room,90,1,4,0.28,1,269 +31968,6636303,Queens,Astoria,40.7596,-73.92368,Entire home/apt,125,3,3,0.26,1,0 +31969,17344471,Brooklyn,Williamsburg,40.71698,-73.94224,Entire home/apt,233,6,0,,2,0 +31970,185683441,Manhattan,Harlem,40.816340000000004,-73.94344,Entire home/apt,400,2,3,0.24,3,175 +31971,65903420,Brooklyn,Crown Heights,40.66673,-73.96158,Entire home/apt,139,3,43,3.28,1,68 +31972,3440653,Brooklyn,Bushwick,40.69493,-73.92276,Entire home/apt,135,3,42,3.04,1,92 +31973,107434423,Manhattan,Tribeca,40.71686,-74.00484,Entire home/apt,305,30,0,,232,6 +31974,1562990,Manhattan,East Village,40.72249,-73.982,Entire home/apt,175,7,4,0.38,1,0 +31975,104684975,Brooklyn,Canarsie,40.643609999999995,-73.90435,Entire home/apt,140,1,1,0.08,1,178 +31976,18767788,Manhattan,Gramercy,40.7355,-73.98,Entire home/apt,126,2,25,2.03,1,30 +31977,27493716,Brooklyn,Sunset Park,40.649640000000005,-73.9992,Private room,75,1,13,0.96,2,68 +31978,94860592,Brooklyn,Bushwick,40.69992,-73.92235,Private room,62,2,5,0.36,1,0 +31979,13486673,Brooklyn,Prospect Heights,40.67846,-73.97157,Private room,99,2,2,0.14,3,0 +31980,154128335,Queens,Jamaica,40.70071,-73.81282,Private room,50,1,4,4.0,4,337 +31981,89608382,Manhattan,East Village,40.72522,-73.98205,Entire home/apt,224,3,4,0.29,1,7 +31982,4219594,Brooklyn,Bedford-Stuyvesant,40.682959999999994,-73.9358,Private room,95,2,3,0.22,1,11 +31983,1180925,Brooklyn,Fort Greene,40.694759999999995,-73.97224,Entire home/apt,108,3,5,0.36,3,99 +31984,28808740,Manhattan,Hell's Kitchen,40.76491,-73.98956,Private room,94,3,11,0.78,2,0 +31985,188741104,Manhattan,Harlem,40.80875,-73.94238,Entire home/apt,160,31,48,3.44,4,117 +31986,175116422,Staten Island,Grant City,40.578559999999996,-74.1107,Entire home/apt,72,3,11,1.05,3,333 +31987,103152379,Manhattan,Upper East Side,40.76195,-73.96056,Entire home/apt,199,3,22,1.58,1,329 +31988,7989399,Queens,Sunnyside,40.73891,-73.92642,Private room,50,3,3,0.29,2,112 +31989,7894144,Brooklyn,Williamsburg,40.714859999999994,-73.95705,Private room,75,2,8,0.58,1,0 +31990,50770601,Queens,Astoria,40.76871,-73.91839,Entire home/apt,169,1,8,0.62,5,297 +31991,22010249,Brooklyn,Bushwick,40.68973,-73.91171999999999,Private room,75,3,36,3.4,2,292 +31992,188741104,Manhattan,Harlem,40.809540000000005,-73.94256999999999,Entire home/apt,85,31,49,3.51,4,119 +31993,137575565,Queens,Long Island City,40.7563,-73.93401999999999,Private room,75,3,2,0.16,1,0 +31994,188773665,Queens,Rego Park,40.72038,-73.86310999999999,Private room,99,1,55,3.92,1,4 +31995,12931469,Staten Island,Great Kills,40.549009999999996,-74.142,Private room,120,2,4,0.29,3,86 +31996,58391499,Manhattan,Civic Center,40.71175,-74.00763,Entire home/apt,200,2,4,0.45,1,0 +31997,188783370,Queens,Flushing,40.73968,-73.80601,Private room,80,1,9,0.65,1,0 +31998,4303181,Brooklyn,Carroll Gardens,40.68352,-73.9999,Entire home/apt,150,2,37,2.93,1,100 +31999,2424887,Queens,Ditmars Steinway,40.76729,-73.89166,Private room,55,1,36,3.11,1,179 +32000,76104209,Manhattan,Upper West Side,40.7936,-73.96642,Entire home/apt,180,30,0,,33,364 +32001,14759219,Manhattan,Murray Hill,40.74793,-73.97958,Entire home/apt,120,5,2,0.15,1,0 +32002,3673226,Manhattan,East Harlem,40.78723,-73.94949,Private room,90,3,5,0.37,1,0 +32003,5719667,Manhattan,West Village,40.73722,-74.00263000000001,Entire home/apt,1500,3,15,1.21,1,54 +32004,69700229,Queens,Jamaica,40.68067,-73.77949,Private room,40,1,70,5.07,3,90 +32005,463061,Queens,Woodhaven,40.69642,-73.8502,Private room,42,3,5,0.36,2,281 +32006,94713722,Queens,St. Albans,40.69012,-73.75349,Private room,55,2,8,0.76,4,122 +32007,10972311,Manhattan,East Harlem,40.79438,-73.94463,Entire home/apt,180,10,13,0.92,1,11 +32008,26796335,Manhattan,Upper West Side,40.79891,-73.96446,Entire home/apt,225,2,29,2.21,1,35 +32009,3530446,Brooklyn,Crown Heights,40.67604,-73.95071,Entire home/apt,150,3,27,2.09,3,288 +32010,91554527,Bronx,Highbridge,40.83413,-73.92918,Private room,50,3,23,1.64,1,188 +32011,9711035,Manhattan,Chelsea,40.7464,-73.99701,Entire home/apt,170,28,4,0.32,1,61 +32012,12633660,Brooklyn,Carroll Gardens,40.67899,-74.00089,Entire home/apt,50,3,5,0.63,1,0 +32013,157402346,Manhattan,Hell's Kitchen,40.76201,-73.99099,Entire home/apt,350,2,60,4.28,1,224 +32014,143739618,Brooklyn,Williamsburg,40.71649,-73.95475,Entire home/apt,415,3,1,0.07,1,0 +32015,188947623,Brooklyn,Crown Heights,40.669979999999995,-73.94702,Entire home/apt,112,2,50,3.93,1,0 +32016,27793336,Manhattan,East Harlem,40.78877,-73.94646999999999,Private room,170,2,5,0.5,1,0 +32017,177860344,Brooklyn,Brighton Beach,40.57569,-73.95891999999999,Private room,80,3,1,0.11,1,178 +32018,188964841,Manhattan,East Harlem,40.80083,-73.93778,Entire home/apt,300,1,5,0.57,1,352 +32019,188969229,Brooklyn,Bushwick,40.68845,-73.91878,Private room,60,1,50,3.61,1,91 +32020,129743937,Queens,East Elmhurst,40.75809,-73.8693,Private room,54,1,135,9.74,2,48 +32021,188218993,Bronx,Kingsbridge,40.8801,-73.89709,Private room,46,1,68,4.89,1,63 +32022,189022543,Bronx,Parkchester,40.83688,-73.85584,Private room,80,2,6,0.44,1,0 +32023,139756559,Staten Island,Great Kills,40.54639,-74.13705999999999,Entire home/apt,180,30,9,0.79,2,130 +32024,108160091,Brooklyn,Williamsburg,40.709959999999995,-73.96129,Entire home/apt,168,10,3,0.22,3,284 +32025,189036764,Brooklyn,Park Slope,40.68375,-73.97839,Entire home/apt,400,2,0,,1,32 +32026,79651295,Queens,Jamaica,40.67901,-73.78876,Private room,100,2,0,,4,179 +32027,189047392,Brooklyn,Clinton Hill,40.69047,-73.9605,Private room,97,1,23,1.68,1,189 +32028,159027993,Queens,Flushing,40.76106,-73.81279,Private room,48,4,11,0.79,2,168 +32029,189075482,Brooklyn,Cypress Hills,40.67901,-73.89224,Entire home/apt,95,1,22,1.61,3,126 +32030,17842138,Manhattan,Chinatown,40.71529,-73.99088,Entire home/apt,170,1,11,0.78,1,24 +32031,54228386,Manhattan,East Harlem,40.79844,-73.94747,Private room,125,1,81,6.64,1,29 +32032,11307033,Manhattan,East Village,40.725609999999996,-73.97622,Private room,175,1,41,3.14,2,13 +32033,161659518,Manhattan,Kips Bay,40.74153,-73.9797,Private room,80,30,3,0.23,1,0 +32034,9177778,Manhattan,Lower East Side,40.713390000000004,-73.98684,Entire home/apt,139,3,47,3.45,1,28 +32035,4552628,Manhattan,Chinatown,40.71329,-73.99602,Entire home/apt,162,2,4,0.28,1,0 +32036,18718315,Brooklyn,Bedford-Stuyvesant,40.69197,-73.92795,Private room,75,4,25,2.26,1,249 +32037,189108951,Queens,South Ozone Park,40.669540000000005,-73.80601,Entire home/apt,93,2,48,3.47,1,316 +32038,159009468,Manhattan,Harlem,40.814440000000005,-73.94385,Private room,99,7,10,1.29,1,0 +32039,10407935,Manhattan,Nolita,40.72238,-73.99466,Entire home/apt,89,1,15,1.12,8,34 +32040,189075482,Brooklyn,Cypress Hills,40.67988,-73.89201,Private room,85,1,17,1.64,3,67 +32041,172611460,Manhattan,Harlem,40.82263,-73.95181,Entire home/apt,2500,3,14,1.38,2,150 +32042,152195388,Manhattan,Upper West Side,40.78371,-73.97358,Private room,105,20,5,0.39,2,64 +32043,127560,Brooklyn,Bedford-Stuyvesant,40.684290000000004,-73.92952,Entire home/apt,100,4,33,2.55,1,23 +32044,6319849,Manhattan,Hell's Kitchen,40.75678,-73.99356999999999,Entire home/apt,198,9,2,0.28,1,12 +32045,64426364,Brooklyn,Bedford-Stuyvesant,40.68593,-73.95702,Private room,48,7,6,0.45,1,0 +32046,133123832,Manhattan,Upper West Side,40.78802,-73.96925999999999,Entire home/apt,117,30,0,,3,200 +32047,178038608,Brooklyn,Clinton Hill,40.69365,-73.96511,Entire home/apt,110,7,2,0.14,1,125 +32048,17145227,Manhattan,East Village,40.724579999999996,-73.98822,Entire home/apt,206,5,3,0.22,1,12 +32049,4246574,Manhattan,Greenwich Village,40.72852,-74.00151,Entire home/apt,164,5,0,,1,0 +32050,2533755,Brooklyn,Bushwick,40.70388,-73.92529,Private room,90,1,74,5.58,1,48 +32051,6529128,Manhattan,Tribeca,40.718540000000004,-74.00352,Entire home/apt,220,3,15,1.21,1,84 +32052,8076786,Brooklyn,Sunset Park,40.65907,-73.99887,Private room,150,1,1,0.27,3,365 +32053,189224482,Brooklyn,Bushwick,40.68569,-73.9143,Private room,45,7,0,,1,0 +32054,2830216,Manhattan,Lower East Side,40.71937,-73.99202,Private room,65,7,9,0.71,1,0 +32055,28660089,Manhattan,East Village,40.72547,-73.98401,Entire home/apt,170,2,7,0.52,1,0 +32056,72517332,Bronx,Kingsbridge,40.88485,-73.89756,Entire home/apt,399,2,25,1.79,1,356 +32057,1273920,Manhattan,East Village,40.72606,-73.97913,Entire home/apt,175,3,2,0.15,1,0 +32058,30736639,Brooklyn,Bushwick,40.68778,-73.90748,Entire home/apt,99,3,34,2.58,2,119 +32059,1030249,Brooklyn,Brooklyn Heights,40.69924,-73.99303,Entire home/apt,185,7,10,0.87,1,125 +32060,99556266,Manhattan,East Harlem,40.79725,-73.93311,Entire home/apt,150,2,33,2.63,2,304 +32061,64542737,Brooklyn,East New York,40.6724,-73.87640999999999,Entire home/apt,175,3,10,0.74,1,292 +32062,189249070,Brooklyn,Bedford-Stuyvesant,40.680609999999994,-73.93642,Entire home/apt,189,30,24,1.82,1,99 +32063,156505456,Brooklyn,East New York,40.66154,-73.88874,Private room,51,3,13,0.97,13,180 +32064,179014177,Manhattan,Murray Hill,40.74523,-73.97334000000001,Entire home/apt,398,5,3,0.25,1,12 +32065,169960804,Manhattan,Upper East Side,40.77277,-73.94965,Entire home/apt,175,1,7,0.51,1,0 +32066,187103481,Brooklyn,Park Slope,40.68241,-73.97719000000001,Entire home/apt,160,2,39,3.02,1,246 +32067,112142263,Brooklyn,Canarsie,40.63816,-73.91443000000001,Entire home/apt,65,1,119,9.13,1,61 +32068,3346513,Brooklyn,Downtown Brooklyn,40.689840000000004,-73.98416,Private room,130,2,38,2.73,2,103 +32069,2790890,Brooklyn,Bedford-Stuyvesant,40.69401,-73.94785,Entire home/apt,96,2,39,2.88,3,237 +32070,189356812,Queens,Richmond Hill,40.688340000000004,-73.82624,Entire home/apt,89,3,29,2.52,1,313 +32071,95038818,Brooklyn,Prospect Heights,40.67757,-73.97017,Private room,70,1,42,3.01,1,163 +32072,8901437,Brooklyn,Bedford-Stuyvesant,40.68441,-73.9401,Entire home/apt,99,4,3,0.23,1,0 +32073,1722340,Manhattan,SoHo,40.723729999999996,-74.00551999999999,Entire home/apt,450,2,0,,1,164 +32074,46817579,Manhattan,Harlem,40.82996,-73.9449,Private room,69,7,6,0.53,1,156 +32075,189369825,Manhattan,Tribeca,40.716120000000004,-74.01054,Entire home/apt,500,2,1,0.09,1,363 +32076,25237492,Manhattan,Washington Heights,40.84115,-73.94095,Private room,50,30,2,0.17,34,311 +32077,106436589,Brooklyn,Brooklyn Heights,40.69915,-73.9962,Private room,120,1,18,1.42,2,75 +32078,8440,Brooklyn,Flatbush,40.6397,-73.96554,Entire home/apt,197,4,10,0.78,1,228 +32079,70120241,Manhattan,Upper West Side,40.79629,-73.96523,Entire home/apt,225,59,0,,1,358 +32080,189421403,Queens,Ridgewood,40.70498,-73.90023000000001,Entire home/apt,105,2,47,3.47,3,95 +32081,133658348,Manhattan,Harlem,40.8067,-73.94481,Entire home/apt,170,2,8,0.59,1,35 +32082,173362161,Brooklyn,Flatbush,40.6429,-73.96876999999999,Private room,68,2,38,2.73,6,85 +32083,129823499,Manhattan,Harlem,40.819309999999994,-73.956,Entire home/apt,110,7,0,,1,0 +32084,19430913,Manhattan,West Village,40.730579999999996,-74.0021,Entire home/apt,200,3,6,0.45,1,0 +32085,16205855,Manhattan,Upper West Side,40.79282,-73.97353000000001,Entire home/apt,360,6,0,,1,0 +32086,13583715,Manhattan,Upper East Side,40.777879999999996,-73.96114,Entire home/apt,165,30,4,0.29,1,203 +32087,143420714,Manhattan,Upper East Side,40.77017,-73.95365,Entire home/apt,200,5,10,0.82,1,224 +32088,5942292,Brooklyn,Bedford-Stuyvesant,40.68244,-73.93908,Entire home/apt,265,2,3,0.29,4,114 +32089,69866875,Manhattan,Harlem,40.83298,-73.94800000000001,Private room,100,7,1,0.07,1,0 +32090,24069,Manhattan,Tribeca,40.718090000000004,-74.01205,Entire home/apt,140,1,9,0.64,1,44 +32091,104921994,Manhattan,East Village,40.72718,-73.9843,Entire home/apt,128,30,7,0.5,1,142 +32092,150440720,Brooklyn,Park Slope,40.67218,-73.97774,Entire home/apt,125,1,40,2.97,1,335 +32093,116839989,Manhattan,East Village,40.73075,-73.98114,Entire home/apt,150,30,59,4.41,5,207 +32094,16237288,Manhattan,Harlem,40.80973,-73.9457,Private room,80,1,23,1.75,1,323 +32095,80465615,Brooklyn,Crown Heights,40.67208,-73.94071,Private room,52,1,2,0.16,1,0 +32096,49950511,Brooklyn,East Flatbush,40.64351,-73.95167,Entire home/apt,350,4,32,2.63,1,69 +32097,31906423,Brooklyn,Williamsburg,40.71869,-73.95487,Entire home/apt,129,2,5,0.36,1,0 +32098,164668733,Manhattan,East Village,40.72228,-73.98584,Entire home/apt,125,5,3,0.24,1,0 +32099,168180986,Brooklyn,Williamsburg,40.7191,-73.94408,Private room,100,3,8,0.61,1,0 +32100,4482351,Manhattan,Hell's Kitchen,40.75996,-73.99223,Entire home/apt,140,5,15,1.11,2,7 +32101,2846279,Brooklyn,Bedford-Stuyvesant,40.687909999999995,-73.92256,Private room,45,2,61,4.38,1,92 +32102,21938126,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94444,Private room,70,2,11,0.8,2,20 +32103,128793815,Brooklyn,Williamsburg,40.72015,-73.96117,Private room,75,5,2,0.15,4,0 +32104,15820708,Brooklyn,Williamsburg,40.70987,-73.94221999999999,Private room,110,3,15,1.13,2,254 +32105,189604966,Bronx,Schuylerville,40.830220000000004,-73.83286,Private room,90,2,1,0.11,1,35 +32106,1262195,Manhattan,Lower East Side,40.71325,-73.98510999999999,Private room,100,1,32,2.51,1,0 +32107,46590745,Manhattan,Gramercy,40.73646,-73.98853000000001,Entire home/apt,176,3,58,4.17,1,67 +32108,24916607,Manhattan,Harlem,40.8163,-73.95262,Shared room,90,1,37,2.75,1,60 +32109,704043,Manhattan,Financial District,40.709070000000004,-74.01371,Private room,89,3,5,0.38,1,0 +32110,48146336,Manhattan,Hell's Kitchen,40.76243,-73.99316,Entire home/apt,120,30,4,0.35,20,342 +32111,77716287,Manhattan,East Harlem,40.80173,-73.94035,Private room,65,2,11,0.83,1,365 +32112,86351586,Manhattan,Harlem,40.819359999999996,-73.95788,Shared room,95,1,2,0.15,1,89 +32113,188613698,Manhattan,Upper East Side,40.78074,-73.94811,Entire home/apt,180,3,10,0.86,1,340 +32114,81274648,Brooklyn,Bushwick,40.69787,-73.93091,Private room,60,2,36,2.61,4,64 +32115,28229044,Queens,Astoria,40.76723,-73.92317,Private room,80,3,0,,1,0 +32116,134601877,Manhattan,East Harlem,40.80068,-73.94598,Entire home/apt,191,3,36,3.17,2,28 +32117,20797353,Manhattan,Financial District,40.70791,-74.00529,Entire home/apt,130,3,2,0.17,1,0 +32118,65178149,Brooklyn,Williamsburg,40.716029999999996,-73.96417,Entire home/apt,650,2,6,0.44,1,0 +32119,189734742,Manhattan,Midtown,40.75184,-73.97301999999999,Private room,175,2,3,0.31,2,0 +32120,43095955,Manhattan,Harlem,40.82675,-73.9463,Private room,100,2,42,3.51,1,109 +32121,26555925,Brooklyn,Bedford-Stuyvesant,40.68057,-73.95249,Entire home/apt,113,3,6,0.46,1,1 +32122,182440062,Manhattan,Harlem,40.82493,-73.93825,Private room,43,1,6,0.57,2,90 +32123,7056141,Manhattan,Morningside Heights,40.80403,-73.96479000000001,Private room,65,30,0,,1,39 +32124,148833266,Manhattan,Upper West Side,40.7997,-73.97073,Private room,95,1,6,0.58,1,12 +32125,186141107,Manhattan,Hell's Kitchen,40.76097,-73.99959,Entire home/apt,200,4,38,2.79,1,159 +32126,32361189,Brooklyn,Bushwick,40.68242,-73.90941,Entire home/apt,130,2,53,3.99,1,122 +32127,444570,Brooklyn,Williamsburg,40.71445,-73.96200999999999,Entire home/apt,275,5,0,,1,0 +32128,61545139,Brooklyn,Brighton Beach,40.58033,-73.9657,Private room,100,1,3,0.22,1,250 +32129,41783072,Queens,Sunnyside,40.7446,-73.92342,Private room,85,1,0,,1,0 +32130,3938536,Brooklyn,Greenpoint,40.72717,-73.95688,Private room,100,4,1,0.08,1,0 +32131,32761501,Manhattan,Midtown,40.75581,-73.96605,Entire home/apt,190,1,7,0.51,1,156 +32132,12104046,Manhattan,Harlem,40.82927,-73.94272,Entire home/apt,150,2,50,3.69,2,298 +32133,6801469,Queens,College Point,40.78824,-73.84056,Entire home/apt,65,3,28,2.13,1,26 +32134,189829767,Queens,Corona,40.73587,-73.8616,Entire home/apt,100,14,0,,1,37 +32135,147313504,Manhattan,Morningside Heights,40.81385,-73.9614,Private room,50,5,0,,1,24 +32136,1546476,Brooklyn,Park Slope,40.67808,-73.98074,Entire home/apt,120,3,9,0.67,1,2 +32137,16437254,Brooklyn,Clinton Hill,40.68432,-73.96025999999999,Entire home/apt,186,30,2,0.16,21,342 +32138,13964451,Brooklyn,Bedford-Stuyvesant,40.68316,-73.91637,Entire home/apt,120,2,34,2.49,1,23 +32139,189610052,Queens,Glendale,40.70537,-73.88899,Private room,50,2,19,1.38,1,337 +32140,104812805,Staten Island,Arrochar,40.59644,-74.08279,Private room,32,4,10,0.73,8,340 +32141,38844508,Manhattan,Hell's Kitchen,40.75888,-73.99101999999999,Entire home/apt,239,2,17,1.25,1,7 +32142,40830538,Brooklyn,Prospect-Lefferts Gardens,40.65889,-73.95626999999999,Private room,45,31,3,0.27,2,242 +32143,44887757,Manhattan,Lower East Side,40.71865,-73.98982,Entire home/apt,159,4,12,0.89,1,31 +32144,1203954,Manhattan,Harlem,40.803709999999995,-73.94991,Entire home/apt,130,30,3,0.22,1,200 +32145,141597248,Brooklyn,Williamsburg,40.70847,-73.94426,Entire home/apt,107,7,1,0.08,1,0 +32146,81087558,Brooklyn,Bedford-Stuyvesant,40.68423,-73.94125,Entire home/apt,75,3,3,0.22,1,0 +32147,18691064,Manhattan,Upper West Side,40.80343,-73.96795999999999,Private room,120,4,2,0.15,1,0 +32148,2300343,Brooklyn,Bedford-Stuyvesant,40.686859999999996,-73.95425999999999,Entire home/apt,80,2,8,0.73,1,0 +32149,189962349,Manhattan,East Harlem,40.78589,-73.9487,Entire home/apt,250,2,43,3.11,1,301 +32150,175513439,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95381,Entire home/apt,217,30,1,0.09,1,189 +32151,189961241,Manhattan,Little Italy,40.71839,-73.99834,Entire home/apt,699,3,37,2.92,1,170 +32152,945063,Brooklyn,Williamsburg,40.717659999999995,-73.95348,Entire home/apt,475,3,0,,1,12 +32153,31612339,Brooklyn,Greenpoint,40.73675,-73.95443,Entire home/apt,150,5,6,0.49,1,0 +32154,1494472,Brooklyn,Navy Yard,40.69823,-73.97357,Entire home/apt,150,21,0,,2,365 +32155,23454048,Manhattan,Harlem,40.81185,-73.93902,Entire home/apt,225,1,7,0.52,1,3 +32156,189971299,Manhattan,Upper West Side,40.8004,-73.96866999999999,Entire home/apt,225,3,23,1.8,1,283 +32157,189982777,Manhattan,East Village,40.72266,-73.98148,Entire home/apt,140,4,49,3.58,1,51 +32158,19614644,Queens,Ditmars Steinway,40.77598,-73.92251999999999,Private room,49,2,25,1.83,1,4 +32159,187383058,Queens,Arverne,40.58809,-73.79387,Entire home/apt,450,2,32,2.35,2,315 +32160,3129460,Manhattan,East Harlem,40.79523,-73.94230999999999,Entire home/apt,200,3,24,1.94,1,337 +32161,189981848,Manhattan,East Harlem,40.79714,-73.93685,Entire home/apt,112,1,66,4.78,1,16 +32162,81754218,Queens,Rockaway Beach,40.58794,-73.81579,Entire home/apt,89,30,34,2.64,1,84 +32163,4281300,Brooklyn,Williamsburg,40.715720000000005,-73.94161,Private room,209,1,21,3.07,3,15 +32164,5758101,Brooklyn,Williamsburg,40.703759999999996,-73.93519,Entire home/apt,300,2,13,1.01,1,365 +32165,45416627,Queens,Astoria,40.76798,-73.92323,Private room,49,1,41,2.96,9,322 +32166,45416627,Queens,Astoria,40.77002,-73.92331999999999,Private room,50,1,27,2.02,9,363 +32167,190028461,Manhattan,Upper West Side,40.782090000000004,-73.97598,Entire home/apt,294,4,34,2.48,1,179 +32168,104386567,Manhattan,Upper East Side,40.77495,-73.94832,Entire home/apt,450,1,0,,1,173 +32169,188391102,Brooklyn,Crown Heights,40.67431,-73.94065,Entire home/apt,150,5,2,0.15,2,364 +32170,31665801,Manhattan,East Village,40.731790000000004,-73.98794000000001,Entire home/apt,89,4,16,1.36,2,17 +32171,35108251,Brooklyn,East New York,40.67018,-73.88866999999999,Entire home/apt,79,3,37,2.73,2,124 +32172,46200692,Brooklyn,East Flatbush,40.65467,-73.94967,Entire home/apt,50,2,8,0.61,1,0 +32173,4818484,Manhattan,Upper East Side,40.76996,-73.9539,Private room,70,2,24,2.32,1,5 +32174,5637331,Queens,Astoria,40.76182,-73.90621999999999,Entire home/apt,118,3,1,0.09,2,0 +32175,54469570,Manhattan,Chelsea,40.749,-73.99466,Private room,75,2,2,0.15,1,0 +32176,4876817,Brooklyn,Crown Heights,40.67589,-73.95525,Private room,41,20,1,0.08,1,0 +32177,137146680,Queens,Glendale,40.69988,-73.89504000000001,Entire home/apt,190,3,15,1.76,1,36 +32178,4294646,Manhattan,Midtown,40.75377,-73.96609000000001,Entire home/apt,90,30,4,0.35,1,0 +32179,4111662,Brooklyn,Park Slope,40.67155,-73.98373000000001,Entire home/apt,195,10,4,0.34,1,15 +32180,158566993,Brooklyn,East Flatbush,40.64333,-73.92526,Entire home/apt,150,2,4,0.31,1,106 +32181,3593395,Brooklyn,Bedford-Stuyvesant,40.68813,-73.94045,Private room,47,2,4,0.31,1,0 +32182,150773114,Queens,Middle Village,40.71893,-73.8761,Entire home/apt,86,1,110,8.27,1,174 +32183,134513664,Manhattan,Gramercy,40.73568,-73.97998,Private room,160,2,11,0.87,1,9 +32184,40875021,Manhattan,East Harlem,40.79372,-73.93552,Entire home/apt,150,1,18,1.32,3,355 +32185,1678704,Brooklyn,Bedford-Stuyvesant,40.69317,-73.93003,Private room,45,1,42,3.19,3,106 +32186,47580042,Manhattan,Theater District,40.75971,-73.98639,Entire home/apt,337,4,0,,1,83 +32187,3667601,Brooklyn,Bushwick,40.68942,-73.90918,Private room,78,2,51,3.74,1,9 +32188,148130354,Brooklyn,Bedford-Stuyvesant,40.68456,-73.92489,Entire home/apt,169,3,11,0.93,2,0 +32189,415605,Queens,East Elmhurst,40.76161,-73.89026,Entire home/apt,169,4,19,1.4,1,128 +32190,22029264,Manhattan,Upper West Side,40.774190000000004,-73.9872,Private room,86,2,1,0.08,1,0 +32191,19002326,Manhattan,East Village,40.73153,-73.98515,Entire home/apt,350,2,0,,1,0 +32192,182363374,Brooklyn,Greenpoint,40.72613,-73.95676,Private room,99,1,41,2.96,7,54 +32193,119609345,Manhattan,Upper West Side,40.77701,-73.97667,Entire home/apt,180,4,0,,1,0 +32194,182363374,Brooklyn,Greenpoint,40.727540000000005,-73.95674,Private room,105,1,24,1.77,7,32 +32195,151084261,Brooklyn,Williamsburg,40.71901,-73.94978,Private room,85,30,7,0.53,6,337 +32196,12243051,Manhattan,Financial District,40.7052,-74.00961,Entire home/apt,222,29,0,,96,334 +32197,14654770,Manhattan,East Village,40.72759,-73.98047,Private room,97,3,6,0.44,1,0 +32198,12243051,Manhattan,Financial District,40.70493,-74.0065,Entire home/apt,219,29,0,,96,282 +32199,12243051,Manhattan,Financial District,40.70375,-74.00806999999999,Entire home/apt,232,29,1,0.12,96,299 +32200,81359949,Brooklyn,Bushwick,40.70001,-73.92595,Private room,40,2,31,2.31,2,36 +32201,5608167,Brooklyn,Red Hook,40.67835,-74.01394,Private room,100,1,12,0.88,1,8 +32202,65633521,Manhattan,Harlem,40.80142,-73.9575,Entire home/apt,100,2,9,0.66,1,0 +32203,96712147,Manhattan,Financial District,40.70465,-74.00761999999999,Entire home/apt,400,2,7,0.57,2,0 +32204,23479368,Queens,South Ozone Park,40.67425,-73.82018000000001,Private room,69,1,78,5.92,1,79 +32205,186810935,Manhattan,Upper East Side,40.77646,-73.96025999999999,Entire home/apt,180,1,81,6.12,1,228 +32206,11501956,Brooklyn,Bedford-Stuyvesant,40.68273,-73.91651,Entire home/apt,150,3,28,2.04,1,316 +32207,3261533,Brooklyn,Bedford-Stuyvesant,40.679970000000004,-73.95052,Entire home/apt,88,30,4,0.38,1,126 +32208,12243051,Manhattan,Financial District,40.70803,-74.00502,Entire home/apt,169,29,2,0.27,96,337 +32209,12931469,Staten Island,Great Kills,40.54896,-74.14246,Private room,40,2,9,0.73,3,89 +32210,187312369,Manhattan,Hell's Kitchen,40.76596,-73.98926,Entire home/apt,390,3,72,5.31,1,79 +32211,30242632,Manhattan,Chelsea,40.74123,-74.00548,Entire home/apt,600,2,44,3.37,1,134 +32212,12931469,Staten Island,Great Kills,40.54889,-74.14199,Private room,50,2,4,0.3,3,84 +32213,6735192,Brooklyn,Bedford-Stuyvesant,40.68195,-73.94827,Private room,55,3,23,1.69,1,0 +32214,152431497,Manhattan,East Village,40.72787,-73.98844,Private room,90,3,0,,1,79 +32215,6387541,Brooklyn,Flatbush,40.6509,-73.96266,Private room,95,1,9,0.73,1,0 +32216,14323652,Queens,Elmhurst,40.73873,-73.88147,Entire home/apt,85,2,36,2.65,1,130 +32217,20212516,Manhattan,Greenwich Village,40.73552,-73.99719,Private room,65,14,8,0.58,2,35 +32218,48275590,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92411,Entire home/apt,100,3,4,0.29,1,358 +32219,153565366,Brooklyn,Park Slope,40.67638,-73.98278,Entire home/apt,295,4,16,1.42,3,68 +32220,69006953,Manhattan,Hell's Kitchen,40.763059999999996,-73.99015,Entire home/apt,280,1,0,,1,0 +32221,25319044,Brooklyn,Bedford-Stuyvesant,40.679559999999995,-73.93806,Private room,45,4,0,,1,0 +32222,20212516,Manhattan,West Village,40.73675,-73.998,Private room,89,1,13,1.2,2,7 +32223,180154611,Brooklyn,Canarsie,40.636520000000004,-73.89856,Private room,49,2,8,0.62,3,342 +32224,150572903,Staten Island,St. George,40.6408,-74.08097,Private room,75,3,4,0.3,2,128 +32225,52532097,Queens,Long Island City,40.75533,-73.91936,Shared room,45,1,5,0.37,1,0 +32226,190452606,Brooklyn,Greenpoint,40.73499,-73.95513000000001,Private room,90,10,0,,1,0 +32227,41762539,Brooklyn,Fort Hamilton,40.621390000000005,-74.0319,Entire home/apt,125,1,1,0.09,1,0 +32228,123519201,Manhattan,Inwood,40.86866,-73.92472,Private room,149,1,30,2.2,2,270 +32229,188830760,Queens,Ridgewood,40.70367,-73.91063,Private room,110,1,3,0.28,1,365 +32230,62183764,Manhattan,East Village,40.7286,-73.98334,Entire home/apt,115,1,0,,1,0 +32231,51091522,Manhattan,East Harlem,40.787690000000005,-73.94691,Private room,76,1,0,,1,0 +32232,79168536,Manhattan,Harlem,40.825,-73.95181,Private room,90,3,2,0.16,1,0 +32233,22587087,Manhattan,Nolita,40.722770000000004,-73.99524,Entire home/apt,182,2,11,0.9,1,30 +32234,158461160,Brooklyn,Bedford-Stuyvesant,40.6811,-73.94541,Entire home/apt,65,30,2,0.21,6,269 +32235,20882846,Manhattan,Inwood,40.867340000000006,-73.92102,Entire home/apt,95,1,31,2.28,1,0 +32236,4052765,Brooklyn,Bushwick,40.693940000000005,-73.92971999999999,Private room,46,3,1,0.08,1,0 +32237,1798193,Brooklyn,Prospect Heights,40.68081,-73.9729,Private room,120,1,41,3.1,1,0 +32238,5789204,Brooklyn,Bensonhurst,40.61006,-73.99902,Private room,37,4,52,3.94,1,70 +32239,189075482,Brooklyn,Cypress Hills,40.68074,-73.89157,Private room,85,1,1,0.6,3,0 +32240,153500245,Brooklyn,Bedford-Stuyvesant,40.6791,-73.9096,Private room,85,1,81,6.06,2,233 +32241,21550529,Queens,Ridgewood,40.6993,-73.90825,Private room,75,5,0,,1,0 +32242,190116017,Manhattan,Kips Bay,40.736309999999996,-73.97511999999999,Private room,110,5,2,0.15,1,6 +32243,3952200,Brooklyn,Williamsburg,40.71886,-73.94054,Entire home/apt,140,2,19,1.52,2,216 +32244,9414337,Manhattan,Harlem,40.81759,-73.94385,Entire home/apt,150,5,1,0.08,1,0 +32245,4224480,Brooklyn,Bedford-Stuyvesant,40.69104,-73.9258,Private room,85,2,34,2.46,1,336 +32246,190589224,Manhattan,Hell's Kitchen,40.76272,-73.98898,Entire home/apt,130,1,12,0.87,1,0 +32247,78705600,Brooklyn,Greenpoint,40.73507,-73.95229,Entire home/apt,300,7,0,,1,31 +32248,8250822,Brooklyn,Bedford-Stuyvesant,40.692840000000004,-73.96065,Entire home/apt,130,3,4,0.31,1,7 +32249,75452286,Brooklyn,Williamsburg,40.71754,-73.95906,Entire home/apt,125,2,15,1.14,1,0 +32250,132669029,Bronx,Throgs Neck,40.82617,-73.82073000000001,Private room,74,3,23,1.77,4,58 +32251,10256614,Manhattan,East Harlem,40.79938,-73.94698000000001,Private room,99,2,52,3.96,1,42 +32252,185524223,Brooklyn,Kensington,40.6417,-73.97365,Private room,62,1,107,8.25,2,263 +32253,3720000,Manhattan,East Village,40.72765,-73.98669,Entire home/apt,200,2,20,1.47,1,53 +32254,29124230,Manhattan,West Village,40.73133,-74.00461,Entire home/apt,180,7,5,0.39,1,34 +32255,190629348,Manhattan,Upper West Side,40.80149,-73.96375,Private room,46,3,7,0.51,1,0 +32256,9430106,Brooklyn,Bushwick,40.70238,-73.92886,Private room,70,7,1,0.08,1,0 +32257,47100454,Manhattan,Midtown,40.76457,-73.97518000000001,Entire home/apt,166,30,0,,1,0 +32258,2631556,Manhattan,Inwood,40.8659,-73.92869,Entire home/apt,359,2,0,,1,365 +32259,7228086,Queens,Long Island City,40.75178,-73.93973000000001,Entire home/apt,200,2,4,0.33,1,0 +32260,187574104,Manhattan,West Village,40.729409999999994,-74.00317,Private room,100,1,4,0.3,1,0 +32261,190658392,Brooklyn,East New York,40.67163,-73.88898,Entire home/apt,100,1,51,3.81,1,107 +32262,39575865,Manhattan,Upper East Side,40.77288,-73.94745,Entire home/apt,175,7,0,,1,5 +32263,116291711,Brooklyn,Crown Heights,40.66918,-73.9475,Private room,40,1,3,0.22,1,0 +32264,1497427,Manhattan,Upper East Side,40.774159999999995,-73.9501,Entire home/apt,120,3,12,1.03,2,105 +32265,3250450,Queens,Astoria,40.77182,-73.92867,Private room,38,30,1,0.08,18,310 +32266,62533391,Brooklyn,Borough Park,40.63584,-74.00578,Private room,55,1,5,0.41,7,326 +32267,62533391,Brooklyn,Borough Park,40.63404,-74.0072,Private room,60,1,20,1.52,7,177 +32268,102287310,Manhattan,Hell's Kitchen,40.76269,-73.98954,Entire home/apt,199,3,8,0.74,3,347 +32269,141347878,Manhattan,East Harlem,40.797470000000004,-73.94836,Private room,50,1,31,2.26,1,0 +32270,10875083,Brooklyn,Borough Park,40.642540000000004,-73.99759,Private room,32,29,2,0.17,1,1 +32271,3312372,Queens,Jackson Heights,40.75096,-73.88423,Entire home/apt,175,3,7,0.68,1,28 +32272,7425016,Manhattan,East Village,40.72967,-73.98668,Private room,74,2,2,0.15,1,0 +32273,119328219,Manhattan,Midtown,40.75439,-73.97339000000001,Entire home/apt,175,30,6,0.91,1,22 +32274,133123832,Manhattan,Upper West Side,40.78818,-73.97057,Entire home/apt,113,30,0,,3,315 +32275,190784850,Brooklyn,Downtown Brooklyn,40.692640000000004,-73.98541999999999,Entire home/apt,150,1,11,0.8,1,8 +32276,4675864,Brooklyn,Williamsburg,40.71024,-73.94933,Entire home/apt,200,3,9,0.69,1,2 +32277,190792355,Brooklyn,Bedford-Stuyvesant,40.69464,-73.94963,Private room,95,2,4,0.29,1,0 +32278,159495469,Bronx,Pelham Gardens,40.86681,-73.84073000000001,Entire home/apt,86,2,41,3.18,1,111 +32279,849248,Brooklyn,Sunset Park,40.659859999999995,-73.99684,Entire home/apt,260,4,2,0.18,1,3 +32280,179657707,Brooklyn,Bushwick,40.701190000000004,-73.91368,Private room,65,2,3,1.36,2,49 +32281,190823422,Manhattan,East Village,40.72469,-73.97892,Entire home/apt,165,1,67,5.51,1,38 +32282,190828985,Brooklyn,Williamsburg,40.70361,-73.942,Entire home/apt,150,2,5,0.4,2,0 +32283,190841783,Manhattan,Chelsea,40.74098,-73.99744,Entire home/apt,140,29,2,0.15,1,334 +32284,61786922,Manhattan,East Village,40.730290000000004,-73.98836,Entire home/apt,62,4,4,0.29,1,5 +32285,181074926,Manhattan,Little Italy,40.71705,-73.99818,Shared room,100,1,20,1.53,3,354 +32286,102888703,Brooklyn,Gravesend,40.6009,-73.98216,Entire home/apt,100,7,0,,1,42 +32287,103104686,Queens,Jamaica,40.67555,-73.77812,Entire home/apt,125,2,0,,2,71 +32288,186620707,Manhattan,Harlem,40.79935,-73.95208000000001,Shared room,44,1,25,1.83,2,6 +32289,22825646,Manhattan,Washington Heights,40.84959,-73.93911,Private room,75,2,4,0.34,1,0 +32290,6254791,Manhattan,Financial District,40.70884,-74.00822,Entire home/apt,299,2,2,0.2,1,0 +32291,27953442,Manhattan,Chinatown,40.71845,-74.00214,Entire home/apt,799,15,0,,1,214 +32292,5024128,Queens,Sunnyside,40.74689,-73.91651999999999,Private room,70,2,31,2.4,1,319 +32293,190878053,Manhattan,Inwood,40.8681,-73.92434,Private room,149,1,31,2.31,1,270 +32294,22935245,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95397,Entire home/apt,145,21,1,0.08,1,25 +32295,186155189,Manhattan,Washington Heights,40.84369,-73.94064,Private room,50,1,11,1.0,3,90 +32296,186155189,Manhattan,Washington Heights,40.843759999999996,-73.94208,Private room,50,1,7,0.62,3,83 +32297,12458767,Brooklyn,Bushwick,40.69044,-73.92253000000001,Private room,80,2,12,0.93,1,67 +32298,104653500,Queens,Woodside,40.7547,-73.90852,Private room,100,2,0,,1,0 +32299,15288827,Brooklyn,Williamsburg,40.709590000000006,-73.95477,Private room,60,20,4,0.32,1,66 +32300,190902382,Brooklyn,Canarsie,40.63491,-73.91163,Entire home/apt,92,2,17,1.23,1,179 +32301,37842947,Queens,Woodside,40.75607,-73.90146,Private room,80,1,3,0.31,1,89 +32302,190962476,Brooklyn,Sunset Park,40.66332,-73.99727,Entire home/apt,155,3,26,2.18,1,67 +32303,13060798,Brooklyn,Bushwick,40.68845,-73.91956,Private room,65,2,13,1.03,1,8 +32304,190921808,Manhattan,Hell's Kitchen,40.75541,-73.99502,Private room,156,7,5,0.4,47,318 +32305,184898953,Brooklyn,Gowanus,40.67602,-73.98535,Private room,100,3,8,0.59,1,0 +32306,10240682,Manhattan,Greenwich Village,40.72938,-74.00027,Entire home/apt,197,3,6,0.48,1,0 +32307,190981544,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92868,Private room,80,2,28,2.09,6,160 +32308,117341696,Brooklyn,Williamsburg,40.71477,-73.96145,Entire home/apt,250,2,24,1.83,1,0 +32309,10770787,Brooklyn,Bedford-Stuyvesant,40.6846,-73.93455,Private room,45,30,4,0.35,1,35 +32310,3734323,Brooklyn,Bushwick,40.686409999999995,-73.91199999999999,Private room,50,2,5,0.37,3,0 +32311,191007759,Manhattan,Gramercy,40.73773,-73.98321999999999,Entire home/apt,250,6,11,0.85,1,223 +32312,191011879,Manhattan,Midtown,40.75298,-73.96919,Entire home/apt,199,2,50,3.74,2,92 +32313,28589041,Brooklyn,Bushwick,40.69442,-73.93013,Entire home/apt,150,2,5,0.38,2,0 +32314,5043049,Brooklyn,Bedford-Stuyvesant,40.692170000000004,-73.95823,Private room,80,1,1,0.08,1,0 +32315,175368807,Bronx,Williamsbridge,40.87579,-73.86532,Private room,33,3,1,0.09,1,365 +32316,70007560,Manhattan,East Harlem,40.7919,-73.94561999999999,Private room,85,4,25,1.91,2,90 +32317,119669058,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95522,Private room,65,2,13,0.96,34,308 +32318,48049796,Manhattan,East Village,40.728229999999996,-73.98425,Private room,100,1,24,1.79,2,91 +32319,10659899,Brooklyn,Crown Heights,40.671279999999996,-73.93664,Entire home/apt,60,7,2,0.18,1,0 +32320,785940,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95659,Entire home/apt,150,1,4,0.3,1,0 +32321,5887537,Manhattan,Harlem,40.82297,-73.95481,Private room,80,5,1,0.16,1,18 +32322,100238132,Manhattan,Midtown,40.75196,-73.97148,Entire home/apt,339,3,18,1.37,12,0 +32323,17988586,Manhattan,Hell's Kitchen,40.76235,-73.98759,Entire home/apt,175,4,7,0.52,1,0 +32324,100238132,Manhattan,Midtown,40.75305,-73.97129,Entire home/apt,339,3,14,1.13,12,0 +32325,34954769,Manhattan,Harlem,40.81626,-73.95862,Private room,100,2,1,0.14,1,86 +32326,15668272,Manhattan,Chelsea,40.74194,-73.99914,Private room,100,2,1,0.08,1,0 +32327,33437301,Brooklyn,Williamsburg,40.71157,-73.95714,Entire home/apt,200,3,14,1.14,1,119 +32328,110191144,Manhattan,Harlem,40.82201,-73.95444,Private room,75,2,19,1.4,2,84 +32329,44539148,Manhattan,Upper East Side,40.76931,-73.95336,Entire home/apt,140,3,6,0.51,1,0 +32330,78942575,Brooklyn,Brooklyn Heights,40.702059999999996,-73.99343,Entire home/apt,245,3,1,0.16,2,58 +32331,191085997,Bronx,Pelham Bay,40.85519,-73.82932,Entire home/apt,195,2,2,0.19,3,313 +32332,81359949,Brooklyn,Bushwick,40.6978,-73.92607,Private room,45,2,25,1.97,2,54 +32333,58629935,Brooklyn,Bushwick,40.69782,-73.92025,Entire home/apt,93,2,14,1.03,2,330 +32334,43809903,Manhattan,Upper West Side,40.80321,-73.96463,Private room,35,1,64,4.76,4,22 +32335,51531044,Queens,Jackson Heights,40.7514,-73.87602,Private room,40,2,32,2.42,4,336 +32336,15807180,Manhattan,Upper West Side,40.7846,-73.97315,Entire home/apt,99,2,0,,3,93 +32337,4520673,Brooklyn,Williamsburg,40.71458,-73.96169,Private room,65,5,67,5.01,2,124 +32338,28638583,Queens,Astoria,40.774440000000006,-73.92923,Entire home/apt,156,1,70,5.16,1,67 +32339,119669058,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9571,Private room,60,2,24,1.76,34,340 +32340,119669058,Brooklyn,Bedford-Stuyvesant,40.69275,-73.95574,Private room,60,2,30,2.22,34,310 +32341,17896706,Manhattan,Upper East Side,40.77988,-73.95482,Entire home/apt,399,4,58,4.26,1,158 +32342,19503783,Queens,Ditmars Steinway,40.77975,-73.92087,Entire home/apt,100,14,0,,1,189 +32343,14993592,Brooklyn,Williamsburg,40.70691,-73.95104,Entire home/apt,95,4,3,0.24,1,0 +32344,8792814,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94633,Entire home/apt,108,1,35,2.77,10,158 +32345,10106740,Manhattan,Hell's Kitchen,40.75788,-73.99198,Entire home/apt,269,4,6,0.66,1,277 +32346,20520488,Brooklyn,Gowanus,40.68075,-73.98181,Entire home/apt,240,3,4,0.31,1,0 +32347,57059,Manhattan,Harlem,40.80693,-73.94830999999999,Entire home/apt,200,28,35,2.72,1,50 +32348,188225740,Bronx,Pelham Gardens,40.86273,-73.83715,Entire home/apt,80,2,70,5.34,1,142 +32349,179661186,Brooklyn,Sheepshead Bay,40.600570000000005,-73.95154000000001,Private room,61,2,3,1.84,2,1 +32350,29700603,Brooklyn,Greenpoint,40.726729999999996,-73.94968,Entire home/apt,200,7,1,0.16,1,16 +32351,79913651,Manhattan,Harlem,40.82294,-73.9386,Private room,50,2,20,1.74,4,157 +32352,15429605,Queens,Briarwood,40.70988,-73.81716,Entire home/apt,100,2,10,0.88,1,160 +32353,136406167,Queens,Sunnyside,40.7409,-73.92696,Private room,65,2,22,1.63,1,131 +32354,95564806,Brooklyn,Brownsville,40.660059999999994,-73.91234,Private room,60,1,1,0.08,3,0 +32355,4399103,Manhattan,Greenwich Village,40.72768,-73.99916999999999,Entire home/apt,410,31,40,3.2,2,10 +32356,191229616,Manhattan,Washington Heights,40.83271,-73.94145,Private room,55,15,10,0.8,2,35 +32357,40078170,Manhattan,Financial District,40.71033,-74.00743,Entire home/apt,245,2,8,0.68,1,163 +32358,70774951,Queens,East Elmhurst,40.767990000000005,-73.8795,Entire home/apt,132,1,114,8.38,3,316 +32359,61699814,Bronx,Kingsbridge,40.87901,-73.90155,Private room,45,30,1,0.09,2,193 +32360,4731948,Manhattan,Chinatown,40.717209999999994,-73.99311999999999,Entire home/apt,155,1,16,1.22,4,301 +32361,191263373,Manhattan,Hell's Kitchen,40.75925,-73.99375,Entire home/apt,225,1,63,4.83,1,357 +32362,4625857,Brooklyn,Crown Heights,40.67157,-73.95806999999999,Entire home/apt,150,10,1,0.16,1,0 +32363,24327574,Brooklyn,Bushwick,40.69928,-73.92385999999999,Private room,150,2,20,1.52,1,0 +32364,10369267,Manhattan,Tribeca,40.71418,-74.00676,Entire home/apt,450,3,14,1.04,1,36 +32365,181074926,Manhattan,Little Italy,40.717729999999996,-73.99812,Private room,100,1,25,1.92,3,323 +32366,181074926,Manhattan,Little Italy,40.717659999999995,-73.99826999999999,Private room,110,1,43,3.25,3,348 +32367,1417893,Brooklyn,Bedford-Stuyvesant,40.68902,-73.92838,Entire home/apt,160,3,52,3.9,1,37 +32368,191343281,Manhattan,Upper West Side,40.77255,-73.99056999999999,Shared room,220,1,1,0.07,1,89 +32369,69825290,Queens,Long Island City,40.75332,-73.94159,Entire home/apt,150,1,1,0.16,1,0 +32370,147447438,Manhattan,East Village,40.731390000000005,-73.98791,Entire home/apt,350,3,11,0.83,1,88 +32371,3360346,Brooklyn,Williamsburg,40.71604,-73.94216999999999,Entire home/apt,53,3,4,0.3,2,29 +32372,136454672,Manhattan,Upper East Side,40.765159999999995,-73.96562,Entire home/apt,1000,3,10,0.79,1,84 +32373,2053735,Manhattan,Gramercy,40.736090000000004,-73.98595,Entire home/apt,145,2,13,1.02,1,1 +32374,9523229,Manhattan,Chelsea,40.742490000000004,-73.99996999999999,Private room,68,4,33,2.56,1,0 +32375,190096034,Queens,Corona,40.744640000000004,-73.86012,Private room,60,1,63,5.12,3,155 +32376,7249636,Manhattan,Hell's Kitchen,40.7687,-73.98742,Private room,85,1,127,9.43,1,19 +32377,178147517,Brooklyn,Flatbush,40.63149,-73.95704,Private room,60,2,7,0.51,1,155 +32378,190096034,Queens,Corona,40.74322,-73.86005,Private room,65,1,29,2.57,3,333 +32379,115738772,Manhattan,Harlem,40.816,-73.95348,Entire home/apt,130,3,10,0.88,1,10 +32380,191398879,Brooklyn,Bedford-Stuyvesant,40.685179999999995,-73.94797,Private room,61,3,2,0.15,1,0 +32381,42407784,Brooklyn,Williamsburg,40.708220000000004,-73.94825,Entire home/apt,300,2,0,,1,0 +32382,191389617,Brooklyn,Sunset Park,40.64117,-74.01248000000001,Private room,41,2,54,4.14,1,0 +32383,51601657,Manhattan,Upper East Side,40.77735,-73.96222,Entire home/apt,425,3,50,3.85,1,106 +32384,189792874,Brooklyn,Canarsie,40.632020000000004,-73.90916,Entire home/apt,135,2,16,1.21,1,358 +32385,8013853,Brooklyn,Bedford-Stuyvesant,40.68412,-73.94836,Entire home/apt,85,30,16,1.18,1,318 +32386,702103,Brooklyn,South Slope,40.667359999999995,-73.98546,Private room,48,60,0,,1,342 +32387,23121862,Manhattan,Midtown,40.75815,-73.96489,Shared room,165,4,0,,1,12 +32388,191422870,Manhattan,Inwood,40.86842,-73.91747,Private room,50,7,0,,1,0 +32389,6836514,Brooklyn,Red Hook,40.67908,-74.01068000000001,Entire home/apt,117,1,48,3.51,1,108 +32390,3388542,Brooklyn,Bushwick,40.69566,-73.90687,Entire home/apt,95,3,14,1.12,1,5 +32391,1180925,Brooklyn,Fort Greene,40.69492,-73.97154,Private room,75,2,12,0.97,3,89 +32392,7772526,Brooklyn,Bushwick,40.686690000000006,-73.91573000000001,Entire home/apt,140,3,14,1.05,2,229 +32393,41457105,Brooklyn,Greenpoint,40.733740000000004,-73.95854,Entire home/apt,125,2,0,,1,0 +32394,90249125,Manhattan,Harlem,40.8063,-73.95548000000001,Private room,85,4,11,0.86,1,0 +32395,134901180,Brooklyn,Bedford-Stuyvesant,40.68333,-73.95232,Entire home/apt,200,7,4,0.29,2,179 +32396,107437866,Bronx,Edenwald,40.89124,-73.83423,Entire home/apt,149,2,59,4.33,1,328 +32397,59377513,Brooklyn,Prospect-Lefferts Gardens,40.661159999999995,-73.94781,Private room,85,5,3,0.27,1,32 +32398,26996515,Brooklyn,Bedford-Stuyvesant,40.68878,-73.92857,Shared room,30,1,21,1.6,2,0 +32399,123506305,Queens,Springfield Gardens,40.66601,-73.77638,Private room,92,1,0,,3,180 +32400,21705284,Manhattan,Chelsea,40.74388,-73.99631,Entire home/apt,200,2,71,5.23,1,230 +32401,123506305,Queens,Jamaica,40.667320000000004,-73.77813,Private room,60,1,6,0.45,3,365 +32402,6101536,Manhattan,East Village,40.72852,-73.99009000000001,Private room,150,3,34,2.91,1,3 +32403,75435800,Manhattan,Midtown,40.75523,-73.96367,Private room,109,3,7,0.53,2,0 +32404,161314694,Brooklyn,Crown Heights,40.67568,-73.91809,Private room,60,2,0,,1,365 +32405,22443613,Manhattan,East Village,40.72413,-73.98091,Entire home/apt,650,10,1,0.09,1,23 +32406,11353190,Brooklyn,Boerum Hill,40.69015,-73.99098000000001,Entire home/apt,140,3,4,0.34,1,5 +32407,16523946,Brooklyn,Gowanus,40.669059999999995,-73.99047,Entire home/apt,200,2,41,3.3,1,246 +32408,13251813,Manhattan,West Village,40.735209999999995,-73.99944,Entire home/apt,120,4,6,0.49,1,1 +32409,30224403,Brooklyn,Boerum Hill,40.68773,-73.98778,Entire home/apt,175,5,9,0.68,1,6 +32410,89106916,Brooklyn,Red Hook,40.67737,-74.00733000000001,Entire home/apt,170,2,8,0.62,1,288 +32411,1475015,Manhattan,Midtown,40.75215,-73.97152,Entire home/apt,83,30,0,,52,309 +32412,190981544,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92975,Private room,90,1,5,1.61,6,256 +32413,191577969,Queens,Ditmars Steinway,40.78331,-73.91615,Private room,110,2,5,0.48,1,90 +32414,10407935,Manhattan,Nolita,40.72218,-73.99539,Entire home/apt,89,1,62,4.64,8,3 +32415,6895016,Queens,Astoria,40.758309999999994,-73.92658,Entire home/apt,96,3,10,0.78,1,0 +32416,139871943,Manhattan,Little Italy,40.7197,-73.99746999999999,Private room,70,28,26,1.99,3,147 +32417,141122152,Queens,East Elmhurst,40.76218,-73.88589,Private room,80,1,86,6.35,1,147 +32418,182976972,Brooklyn,East Flatbush,40.64946,-73.92839000000001,Private room,65,2,24,1.79,2,361 +32419,187453004,Brooklyn,Park Slope,40.673840000000006,-73.97743,Private room,150,2,36,2.71,1,293 +32420,191621249,Manhattan,Chelsea,40.741040000000005,-73.99712,Private room,100,1,33,3.87,2,12 +32421,191621249,Manhattan,Chelsea,40.74284,-73.99842,Private room,99,1,95,7.2,2,0 +32422,48499240,Manhattan,Harlem,40.81215,-73.95129,Private room,150,2,15,1.25,1,57 +32423,2147561,Brooklyn,Williamsburg,40.70578,-73.94324,Private room,69,2,36,2.85,1,49 +32424,7076239,Brooklyn,Fort Greene,40.68677,-73.97298,Entire home/apt,375,2,13,0.96,2,158 +32425,23178319,Brooklyn,Williamsburg,40.71305,-73.93955,Private room,55,5,24,1.84,1,313 +32426,17788946,Manhattan,West Village,40.73655,-74.00225999999999,Entire home/apt,175,2,19,1.45,1,3 +32427,30978136,Queens,Ridgewood,40.70022,-73.91011999999999,Private room,90,1,57,4.31,1,284 +32428,17507617,Brooklyn,Bedford-Stuyvesant,40.68866,-73.92238,Private room,60,2,21,1.71,1,75 +32429,878445,Manhattan,Harlem,40.82999,-73.94174,Private room,100,2,2,0.15,1,341 +32430,912921,Manhattan,Washington Heights,40.84362,-73.94253,Private room,47,3,13,0.99,1,174 +32431,48097665,Manhattan,West Village,40.73735,-74.0004,Entire home/apt,160,30,8,0.71,1,156 +32432,34313176,Queens,Rego Park,40.71691,-73.86147,Entire home/apt,80,2,42,3.16,4,307 +32433,76477003,Manhattan,Hell's Kitchen,40.75933,-73.99512,Private room,125,2,24,1.9,1,0 +32434,191765199,Manhattan,Washington Heights,40.833870000000005,-73.94163,Private room,81,1,18,1.34,6,38 +32435,13523227,Brooklyn,DUMBO,40.70268,-73.98603,Entire home/apt,350,2,0,,1,0 +32436,144892527,Brooklyn,Crown Heights,40.670759999999994,-73.94876,Entire home/apt,183,1,58,4.36,1,15 +32437,191804394,Bronx,Longwood,40.8156,-73.90075,Entire home/apt,60,1,9,0.76,2,257 +32438,798380,Manhattan,Inwood,40.86029,-73.92984,Entire home/apt,120,7,1,0.09,1,172 +32439,26490270,Brooklyn,Prospect-Lefferts Gardens,40.65925,-73.94861999999999,Entire home/apt,1000,1,1,0.12,1,365 +32440,21552055,Brooklyn,Greenpoint,40.72678,-73.95087,Private room,156,1,29,2.33,2,4 +32441,9912305,Brooklyn,Brooklyn Heights,40.692479999999996,-73.9958,Entire home/apt,300,4,4,0.33,1,185 +32442,140997060,Manhattan,Upper West Side,40.77898,-73.98532,Private room,179,3,0,,2,0 +32443,191901037,Brooklyn,Sheepshead Bay,40.58484,-73.94022,Private room,70,10,1,0.08,2,331 +32444,4274857,Manhattan,Lower East Side,40.72013,-73.98841999999999,Private room,80,3,30,2.31,3,76 +32445,16285179,Brooklyn,Bedford-Stuyvesant,40.68695,-73.91937,Entire home/apt,120,3,2,0.19,2,0 +32446,191892665,Brooklyn,Williamsburg,40.71413,-73.94467,Private room,73,21,0,,1,0 +32447,191913119,Manhattan,Civic Center,40.71313,-74.00541,Entire home/apt,236,2,0,,1,0 +32448,43785574,Brooklyn,Greenpoint,40.72163,-73.9478,Private room,110,7,5,0.39,1,49 +32449,2695451,Manhattan,SoHo,40.72425,-74.00331,Private room,55,2,3,0.25,2,0 +32450,5522547,Brooklyn,Crown Heights,40.672290000000004,-73.92729,Private room,100,1,1,0.1,1,89 +32451,190921808,Manhattan,Hell's Kitchen,40.7551,-73.99651,Private room,55,7,9,0.91,47,324 +32452,17581024,Brooklyn,Park Slope,40.67731,-73.98138,Private room,75,1,41,3.05,2,54 +32453,24043300,Brooklyn,Boerum Hill,40.68444,-73.98094,Entire home/apt,160,7,1,0.08,1,261 +32454,3623796,Manhattan,West Village,40.73788,-74.00183,Entire home/apt,170,3,2,0.16,1,0 +32455,12243051,Manhattan,Financial District,40.705870000000004,-74.00685,Entire home/apt,167,29,0,,96,332 +32456,191765199,Manhattan,Washington Heights,40.83265,-73.94012,Entire home/apt,120,1,57,4.25,6,154 +32457,147229558,Brooklyn,Williamsburg,40.70883,-73.93859,Private room,230,1,21,1.72,1,24 +32458,191063355,Brooklyn,Crown Heights,40.671929999999996,-73.93003,Entire home/apt,125,1,59,4.38,1,98 +32459,1802807,Brooklyn,Williamsburg,40.71438,-73.95955,Private room,100,6,6,0.45,2,3 +32460,64660747,Manhattan,Tribeca,40.71725,-74.00524,Entire home/apt,300,3,2,0.17,1,108 +32461,4493803,Manhattan,Upper West Side,40.78105,-73.98151,Entire home/apt,125,30,2,0.18,1,67 +32462,85541181,Manhattan,Midtown,40.75115,-73.98607,Private room,300,30,0,,1,81 +32463,1844352,Brooklyn,Williamsburg,40.7117,-73.94388000000001,Private room,100,3,25,1.9,2,76 +32464,12243051,Manhattan,Chelsea,40.74222,-73.99444,Entire home/apt,250,29,1,0.09,96,220 +32465,192085113,Queens,Ditmars Steinway,40.77922,-73.90861,Private room,50,3,49,3.68,1,11 +32466,192085313,Queens,Rego Park,40.73123,-73.86655999999999,Private room,70,2,26,1.96,1,180 +32467,192089216,Queens,Long Island City,40.73731,-73.9345,Private room,43,1,33,2.5,1,282 +32468,895135,Brooklyn,Williamsburg,40.7066,-73.94595,Private room,95,3,14,1.07,3,180 +32469,12243051,Manhattan,Financial District,40.70561,-74.00669,Entire home/apt,164,29,0,,96,347 +32470,3912358,Brooklyn,Sunset Park,40.66298,-73.99864000000001,Private room,40,7,0,,1,0 +32471,38380313,Brooklyn,Greenpoint,40.72459,-73.9462,Entire home/apt,95,1,13,1.04,1,0 +32472,12243051,Manhattan,Financial District,40.70335,-74.0086,Entire home/apt,229,29,0,,96,220 +32473,3142924,Manhattan,East Village,40.727140000000006,-73.98215,Entire home/apt,190,2,32,2.74,1,17 +32474,1581733,Brooklyn,Williamsburg,40.71071,-73.95957,Private room,120,2,0,,2,86 +32475,12243051,Manhattan,Murray Hill,40.74454,-73.97339000000001,Entire home/apt,207,29,1,0.08,96,365 +32476,5572415,Brooklyn,Williamsburg,40.70795,-73.94740999999999,Entire home/apt,100,5,1,0.08,1,11 +32477,12243051,Manhattan,Murray Hill,40.74386,-73.97327,Entire home/apt,180,29,1,0.09,96,342 +32478,57516611,Manhattan,Upper West Side,40.80109,-73.96523,Private room,99,2,14,1.06,1,8 +32479,21653460,Brooklyn,Bedford-Stuyvesant,40.69399,-73.95269,Entire home/apt,125,5,2,0.18,2,0 +32480,185914925,Queens,Hollis,40.7152,-73.76171,Private room,50,2,40,2.96,2,84 +32481,10317649,Brooklyn,Williamsburg,40.71465,-73.96172,Entire home/apt,190,4,4,0.32,1,17 +32482,191229616,Manhattan,Washington Heights,40.834579999999995,-73.94227,Private room,55,7,1,0.16,2,125 +32483,9582456,Brooklyn,Greenpoint,40.722640000000006,-73.94272,Entire home/apt,150,1,14,1.17,1,0 +32484,2776408,Brooklyn,Crown Heights,40.670629999999996,-73.9337,Entire home/apt,75,2,61,5.23,1,2 +32485,154629753,Manhattan,Hell's Kitchen,40.76746,-73.98942,Entire home/apt,500,10,41,3.17,1,126 +32486,187975743,Manhattan,Hell's Kitchen,40.76464,-73.99006,Shared room,69,1,52,3.86,8,205 +32487,187975743,Manhattan,Hell's Kitchen,40.764179999999996,-73.98822,Shared room,99,1,42,3.12,8,181 +32488,187975743,Manhattan,Hell's Kitchen,40.76488,-73.98832,Shared room,65,1,44,3.27,8,199 +32489,187975743,Manhattan,Hell's Kitchen,40.76364,-73.98859,Shared room,65,1,63,4.68,8,196 +32490,9864136,Brooklyn,Bushwick,40.68674,-73.9151,Private room,36,2,5,0.38,26,309 +32491,6436957,Brooklyn,Clinton Hill,40.69127,-73.96873000000001,Entire home/apt,125,4,1,0.09,1,0 +32492,40209604,Brooklyn,Crown Heights,40.67459,-73.95742,Private room,50,2,60,4.52,1,7 +32493,34669755,Brooklyn,Williamsburg,40.71198,-73.96036,Entire home/apt,250,7,3,0.24,1,5 +32494,40711894,Queens,Elmhurst,40.739309999999996,-73.88823000000001,Private room,54,1,2,0.17,4,0 +32495,37151670,Queens,Long Island City,40.7639,-73.93199,Private room,55,14,6,0.45,1,61 +32496,6104449,Brooklyn,Clinton Hill,40.68553,-73.95965,Entire home/apt,95,3,8,0.63,1,12 +32497,192276715,Manhattan,East Harlem,40.78703,-73.94740999999999,Entire home/apt,115,4,44,3.41,1,38 +32498,191804394,Bronx,Longwood,40.81668,-73.89988000000001,Private room,35,1,38,2.82,2,75 +32499,78289814,Bronx,North Riverdale,40.903290000000005,-73.89990999999999,Entire home/apt,105,2,27,2.13,1,328 +32500,38675275,Queens,Belle Harbor,40.57592,-73.84823,Private room,200,2,4,1.28,2,332 +32501,192290899,Manhattan,Upper West Side,40.774029999999996,-73.98803000000001,Private room,123,3,55,4.09,1,53 +32502,182084079,Brooklyn,Clinton Hill,40.68615,-73.96018000000001,Entire home/apt,95,29,0,,1,9 +32503,27871113,Manhattan,Greenwich Village,40.72926,-73.99968,Entire home/apt,300,3,14,1.07,1,0 +32504,95777134,Manhattan,Upper West Side,40.77263,-73.98997,Private room,120,3,57,4.23,1,48 +32505,102501688,Bronx,Highbridge,40.83464,-73.92505,Private room,70,2,2,0.17,1,348 +32506,146905275,Manhattan,Upper West Side,40.77471,-73.98955,Private room,140,1,50,3.71,1,69 +32507,113146341,Manhattan,Upper West Side,40.76983,-73.98734,Private room,114,1,1,0.08,1,0 +32508,16121141,Brooklyn,Williamsburg,40.71074,-73.9443,Private room,80,2,3,0.22,1,0 +32509,8063576,Brooklyn,Greenpoint,40.72724,-73.94843,Entire home/apt,85,7,2,0.17,1,0 +32510,192335868,Bronx,Edenwald,40.8901,-73.84031,Private room,125,1,11,0.88,1,189 +32511,8050394,Manhattan,West Village,40.73308,-74.00456,Entire home/apt,157,2,4,0.3,1,0 +32512,61391963,Manhattan,Kips Bay,40.74483,-73.97955999999999,Entire home/apt,125,30,2,0.44,91,346 +32513,64040975,Manhattan,Upper East Side,40.76525,-73.95557,Private room,90,3,1,1.0,1,16 +32514,38021737,Manhattan,Upper East Side,40.76897,-73.95375,Private room,54,4,0,,1,0 +32515,54228655,Manhattan,Upper West Side,40.79444,-73.96613,Entire home/apt,195,6,11,1.05,1,200 +32516,38765891,Brooklyn,Bedford-Stuyvesant,40.683440000000004,-73.92373,Private room,230,3,19,1.66,1,90 +32517,80926401,Manhattan,Washington Heights,40.845009999999995,-73.93861,Private room,40,2,6,0.47,1,0 +32518,192189607,Brooklyn,Bushwick,40.70382,-73.92683000000001,Private room,65,2,7,0.53,2,0 +32519,4129805,Manhattan,West Village,40.73281,-74.00205,Entire home/apt,325,2,1,0.42,5,56 +32520,188023318,Brooklyn,Greenpoint,40.72609,-73.95681,Entire home/apt,460,1,30,2.49,4,63 +32521,6778614,Brooklyn,Bushwick,40.70878,-73.92215,Shared room,30,3,8,0.61,2,0 +32522,3962396,Manhattan,Upper West Side,40.78585,-73.97069,Entire home/apt,132,30,1,0.12,1,236 +32523,144193172,Brooklyn,Crown Heights,40.671240000000004,-73.93401,Private room,40,15,0,,1,0 +32524,8067740,Manhattan,Harlem,40.80462,-73.95622,Entire home/apt,180,2,32,3.69,1,90 +32525,166368558,Manhattan,Upper West Side,40.78575,-73.97429,Entire home/apt,149,1,15,4.74,1,265 +32526,192406990,Brooklyn,Flatbush,40.65385,-73.96202,Entire home/apt,90,1,48,4.19,1,21 +32527,192407842,Manhattan,Upper West Side,40.78488,-73.9763,Entire home/apt,149,1,62,4.77,1,224 +32528,39528519,Manhattan,Lower East Side,40.71252,-73.98765,Private room,94,15,0,,28,185 +32529,39528519,Manhattan,Lower East Side,40.7107,-73.98759,Private room,91,15,0,,28,184 +32530,192449075,Staten Island,Graniteville,40.624390000000005,-74.16634,Entire home/apt,115,1,36,2.67,1,263 +32531,57783233,Queens,East Elmhurst,40.757670000000005,-73.89299,Entire home/apt,50,1,2,0.16,1,0 +32532,3090750,Manhattan,Upper East Side,40.76931,-73.94841,Private room,55,2,2,0.16,2,0 +32533,192464234,Brooklyn,Canarsie,40.64516,-73.89684,Entire home/apt,100,1,95,7.77,1,124 +32534,60346942,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94463,Private room,90,1,39,2.98,4,0 +32535,192469172,Manhattan,Midtown,40.74342,-73.98207,Entire home/apt,160,1,68,5.11,1,33 +32536,137836678,Queens,Sunnyside,40.74196,-73.92135999999999,Entire home/apt,100,3,4,0.34,1,326 +32537,37322613,Queens,Woodside,40.74422,-73.90285,Private room,60,3,3,0.23,1,0 +32538,27922303,Brooklyn,Sunset Park,40.65676,-74.00224,Private room,75,2,8,0.63,2,90 +32539,190828985,Brooklyn,Williamsburg,40.70337,-73.94081,Entire home/apt,130,1,0,,2,0 +32540,20480059,Brooklyn,Fort Greene,40.69328,-73.97001,Private room,120,3,1,0.09,3,0 +32541,3094754,Brooklyn,Sunset Park,40.65399,-74.00363,Private room,149,1,1,0.08,2,357 +32542,38863621,Manhattan,Harlem,40.80025,-73.95268,Private room,85,2,3,0.23,1,0 +32543,101438864,Manhattan,Upper West Side,40.79558,-73.96242,Private room,182,1,38,2.95,2,131 +32544,75110137,Brooklyn,Gowanus,40.684940000000005,-73.9885,Private room,1333,50,0,,1,365 +32545,2441040,Brooklyn,Greenpoint,40.735459999999996,-73.9581,Entire home/apt,160,15,6,0.49,1,17 +32546,184130293,Manhattan,Inwood,40.86439,-73.92302,Private room,50,4,2,0.16,2,0 +32547,4821730,Manhattan,West Village,40.73265,-74.00251999999999,Entire home/apt,175,3,4,0.38,1,0 +32548,8304377,Manhattan,Upper West Side,40.78239,-73.98156,Entire home/apt,155,7,0,,1,0 +32549,32703801,Manhattan,Chelsea,40.74326,-74.00278,Entire home/apt,179,3,27,2.06,1,54 +32550,50249843,Manhattan,SoHo,40.7228,-74.00644,Entire home/apt,350,2,11,0.87,1,0 +32551,5342802,Brooklyn,Bedford-Stuyvesant,40.68616,-73.91866,Private room,45,3,2,0.15,2,0 +32552,1034976,Brooklyn,Williamsburg,40.71777,-73.95824,Private room,100,1,18,1.36,2,33 +32553,133130315,Manhattan,Hell's Kitchen,40.76463,-73.98562,Private room,136,3,2,0.78,6,130 +32554,90981550,Bronx,Morris Park,40.85548,-73.85585,Entire home/apt,125,1,76,6.02,1,72 +32555,8997485,Brooklyn,Midwood,40.62415,-73.96029,Entire home/apt,60,2,2,0.85,2,224 +32556,123664664,Manhattan,West Village,40.73291,-74.00916,Entire home/apt,200,4,2,0.15,1,66 +32557,31410956,Brooklyn,Williamsburg,40.71837,-73.94336,Entire home/apt,80,2,9,0.68,1,0 +32558,21364540,Brooklyn,Williamsburg,40.70312,-73.93808,Private room,60,4,0,,2,0 +32559,66711742,Manhattan,Harlem,40.809779999999996,-73.94408,Shared room,235,14,8,0.7,1,21 +32560,91392933,Manhattan,Midtown,40.75405,-73.97291,Private room,249,3,29,2.2,1,41 +32561,72470941,Manhattan,Hell's Kitchen,40.76747,-73.9862,Private room,125,3,6,0.47,1,2 +32562,192583202,Brooklyn,Brownsville,40.65832,-73.90486,Private room,65,1,1,0.1,1,0 +32563,60826656,Brooklyn,South Slope,40.66171,-73.9826,Private room,500,1,0,,1,365 +32564,56631570,Brooklyn,Bushwick,40.702940000000005,-73.93313,Private room,45,2,16,1.22,1,0 +32565,192594401,Queens,Arverne,40.58821,-73.79755,Entire home/apt,325,3,21,1.59,1,299 +32566,17581024,Brooklyn,Gowanus,40.67814,-73.98264,Entire home/apt,150,4,9,0.74,2,6 +32567,110115422,Manhattan,Midtown,40.76538,-73.98293000000001,Private room,150,2,79,7.69,1,120 +32568,7710878,Manhattan,Harlem,40.80805,-73.9456,Entire home/apt,163,3,0,,1,0 +32569,56283770,Manhattan,Upper East Side,40.76375,-73.96667,Entire home/apt,165,30,1,1.0,6,337 +32570,156557516,Queens,Long Island City,40.760940000000005,-73.92949,Entire home/apt,189,1,47,3.52,2,324 +32571,175327947,Manhattan,East Harlem,40.78845,-73.95484,Private room,1100,1,1,0.09,1,0 +32572,44832896,Brooklyn,Bedford-Stuyvesant,40.67845,-73.90852,Private room,50,7,6,1.41,1,0 +32573,1418307,Brooklyn,Park Slope,40.67133,-73.98714,Entire home/apt,200,1,1,0.08,1,0 +32574,159610596,Manhattan,Financial District,40.70583,-74.00545,Entire home/apt,225,1,22,7.59,6,323 +32575,192713943,Brooklyn,Clinton Hill,40.681090000000005,-73.96193000000001,Entire home/apt,350,2,0,,1,18 +32576,3046221,Manhattan,East Harlem,40.789359999999995,-73.94918,Private room,46,30,0,,1,92 +32577,192723267,Brooklyn,Williamsburg,40.70753,-73.93623000000001,Entire home/apt,350,2,1,1.0,1,171 +32578,133596333,Manhattan,Kips Bay,40.743829999999996,-73.97798,Entire home/apt,499,3,11,0.82,1,55 +32579,192712383,Manhattan,Washington Heights,40.85573,-73.93181,Entire home/apt,115,2,16,1.26,1,81 +32580,189421403,Queens,Ridgewood,40.7054,-73.90233,Private room,100,1,9,0.68,3,90 +32581,192716996,Manhattan,Lower East Side,40.72077,-73.98427,Private room,95,1,9,0.68,1,0 +32582,163813488,Manhattan,Washington Heights,40.84287,-73.94093000000001,Private room,43,1,10,0.82,1,116 +32583,191765199,Manhattan,Washington Heights,40.83354,-73.94203,Entire home/apt,120,1,72,5.37,6,53 +32584,31077393,Queens,Ridgewood,40.70004,-73.89864,Private room,88,5,0,,1,0 +32585,192741854,Brooklyn,Bedford-Stuyvesant,40.68408,-73.93383,Entire home/apt,215,2,49,3.95,2,218 +32586,29506,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95902,Entire home/apt,200,5,4,0.33,1,1 +32587,69578078,Manhattan,Hell's Kitchen,40.76243,-73.99805,Entire home/apt,299,1,31,2.74,1,84 +32588,36579046,Manhattan,SoHo,40.72092,-74.00018,Private room,115,1,75,5.8,1,11 +32589,3828080,Manhattan,Greenwich Village,40.73062,-73.99981,Private room,199,5,0,,1,0 +32590,17714108,Brooklyn,Park Slope,40.67787,-73.98169,Entire home/apt,129,5,8,0.61,1,0 +32591,889683,Brooklyn,Williamsburg,40.71273,-73.94841,Private room,84,1,95,7.13,2,51 +32592,184009385,Brooklyn,Williamsburg,40.7129,-73.94251,Entire home/apt,170,2,47,3.7,2,57 +32593,192793716,Manhattan,Upper East Side,40.77637,-73.95151,Entire home/apt,149,30,25,2.01,1,0 +32594,192861009,Brooklyn,Crown Heights,40.67046,-73.91785,Private room,47,1,37,2.82,2,89 +32595,192874460,Brooklyn,Flatlands,40.62915,-73.9198,Entire home/apt,125,2,64,4.92,1,194 +32596,12243051,Manhattan,Murray Hill,40.74472,-73.97205,Entire home/apt,177,29,1,0.3,96,58 +32597,192915666,Brooklyn,Williamsburg,40.715790000000005,-73.93892,Entire home/apt,500,3,16,1.26,1,160 +32598,20867842,Brooklyn,Sunset Park,40.658770000000004,-73.98974,Private room,60,3,3,0.23,1,0 +32599,4463195,Manhattan,Washington Heights,40.8522,-73.93456,Entire home/apt,100,1,1,0.07,1,0 +32600,14073337,Manhattan,Upper East Side,40.77773,-73.95383000000001,Entire home/apt,180,4,9,0.71,1,4 +32601,69862540,Manhattan,Washington Heights,40.8395,-73.94156,Private room,65,2,38,2.97,3,21 +32602,159114297,Manhattan,Chinatown,40.71714,-73.99229,Entire home/apt,200,1,23,3.77,1,23 +32603,46979077,Queens,Woodside,40.74286,-73.89163,Private room,50,1,57,4.37,2,295 +32604,794878,Brooklyn,Bushwick,40.70783,-73.92143,Private room,150,3,5,0.49,1,39 +32605,158399244,Brooklyn,Crown Heights,40.6708,-73.94011,Entire home/apt,159,1,52,4.07,4,110 +32606,75569180,Brooklyn,Bedford-Stuyvesant,40.68473,-73.92725,Entire home/apt,130,4,2,0.15,1,0 +32607,673215,Manhattan,Harlem,40.82441,-73.95326999999999,Private room,100,3,1,0.1,2,263 +32608,192895513,Queens,Flushing,40.755520000000004,-73.83012,Private room,65,2,7,0.53,3,341 +32609,35342651,Manhattan,Hell's Kitchen,40.766329999999996,-73.98325,Private room,100,14,1,0.08,1,0 +32610,192997396,Manhattan,Kips Bay,40.74029,-73.98337,Entire home/apt,185,1,23,1.87,1,133 +32611,142178595,Manhattan,Upper West Side,40.7982,-73.97063,Entire home/apt,150,30,0,,1,310 +32612,16978300,Manhattan,Upper West Side,40.772259999999996,-73.98876,Entire home/apt,225,2,0,,1,0 +32613,190482413,Manhattan,East Village,40.72873,-73.98759,Entire home/apt,398,2,32,3.06,1,139 +32614,190921808,Manhattan,Hell's Kitchen,40.7551,-73.99674,Private room,62,7,3,0.52,47,324 +32615,193031210,Brooklyn,Greenpoint,40.72983,-73.95808000000001,Entire home/apt,180,10,16,1.27,1,61 +32616,77108752,Manhattan,Morningside Heights,40.80227,-73.95985,Entire home/apt,250,3,0,,1,0 +32617,125396920,Brooklyn,Flatbush,40.64314,-73.95705,Entire home/apt,75,3,10,0.84,1,0 +32618,193054505,Bronx,Morrisania,40.82936,-73.90867,Entire home/apt,150,1,26,3.15,1,175 +32619,21850707,Bronx,Norwood,40.87077,-73.8817,Shared room,33,2,8,0.71,1,6 +32620,249006,Brooklyn,Williamsburg,40.7213,-73.96042,Entire home/apt,200,5,11,0.92,1,0 +32621,31829334,Brooklyn,Clinton Hill,40.68339,-73.9645,Entire home/apt,99,30,3,0.25,2,40 +32622,3436710,Manhattan,East Village,40.7252,-73.97598,Private room,100,1,13,0.99,2,335 +32623,180154611,Brooklyn,Canarsie,40.63808,-73.9001,Private room,49,2,10,0.78,3,354 +32624,62533391,Brooklyn,Borough Park,40.633959999999995,-74.00729,Private room,50,1,6,0.46,7,365 +32625,4384604,Manhattan,East Harlem,40.80983,-73.9384,Private room,83,2,6,0.46,1,77 +32626,21061846,Queens,Ridgewood,40.69943,-73.90711999999999,Private room,40,2,13,0.99,1,0 +32627,147972663,Brooklyn,East Flatbush,40.64987,-73.93855,Private room,45,3,33,2.61,3,320 +32628,182272609,Staten Island,Tompkinsville,40.63369,-74.09489,Entire home/apt,161,1,24,1.82,2,87 +32629,102649225,Manhattan,Murray Hill,40.746520000000004,-73.97636999999999,Private room,125,1,21,1.63,1,0 +32630,193126561,Queens,Astoria,40.758590000000005,-73.91334,Entire home/apt,90,3,37,3.22,1,127 +32631,193127179,Manhattan,Upper West Side,40.7764,-73.98236,Private room,85,4,18,1.38,1,133 +32632,187975743,Manhattan,Hell's Kitchen,40.76361,-73.98992,Shared room,69,1,81,6.09,8,192 +32633,106018910,Queens,Elmhurst,40.73641,-73.87863,Private room,85,1,2,0.16,1,0 +32634,187975743,Manhattan,Hell's Kitchen,40.76276,-73.98931999999999,Shared room,65,1,55,4.19,8,204 +32635,137191484,Manhattan,Hell's Kitchen,40.76362,-73.98546,Private room,99,1,40,3.05,5,346 +32636,151421618,Queens,Ozone Park,40.6831,-73.84438,Entire home/apt,110,4,6,0.88,2,140 +32637,190921808,Manhattan,Hell's Kitchen,40.75374,-73.99517,Private room,70,7,8,0.73,47,310 +32638,190921808,Manhattan,Hell's Kitchen,40.75407,-73.99528000000001,Private room,100,7,8,0.64,47,271 +32639,121851703,Queens,Queens Village,40.72105,-73.73444,Entire home/apt,25,1,45,3.37,2,292 +32640,59980195,Manhattan,Gramercy,40.73467,-73.98501,Entire home/apt,225,3,0,,1,0 +32641,193278931,Manhattan,Gramercy,40.73579,-73.98635999999999,Entire home/apt,110,3,33,2.64,1,15 +32642,28753907,Queens,Astoria,40.76,-73.90684,Private room,60,2,35,2.67,1,204 +32643,10373779,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9484,Private room,55,3,4,0.35,2,0 +32644,193282294,Manhattan,Upper West Side,40.79468,-73.9647,Private room,98,2,48,3.95,4,238 +32645,9038810,Brooklyn,Williamsburg,40.71577,-73.9553,Entire home/apt,295,3,11,0.87,1,1 +32646,53440969,Queens,Queens Village,40.71288,-73.74334,Entire home/apt,80,2,43,3.27,1,189 +32647,9726872,Manhattan,Upper East Side,40.7677,-73.95476,Shared room,70,1,7,0.55,1,66 +32648,193296202,Queens,Long Island City,40.74646,-73.95324000000001,Entire home/apt,400,3,3,0.36,2,334 +32649,6787261,Brooklyn,Williamsburg,40.71021,-73.95563,Private room,66,2,6,0.46,2,0 +32650,193282294,Manhattan,Upper West Side,40.79453,-73.96472,Private room,98,2,51,4.23,4,219 +32651,660723,Manhattan,West Village,40.734159999999996,-74.00424,Entire home/apt,186,10,7,0.54,1,79 +32652,16507770,Queens,Briarwood,40.71052,-73.80906,Private room,60,1,46,3.68,3,108 +32653,193282294,Manhattan,Upper West Side,40.79613,-73.96468,Private room,97,2,55,4.52,4,246 +32654,16507770,Queens,Briarwood,40.710159999999995,-73.81118000000001,Private room,60,2,9,0.74,3,171 +32655,193282294,Manhattan,Upper West Side,40.79598,-73.96255,Private room,98,2,52,4.25,4,242 +32656,10671580,Brooklyn,Williamsburg,40.7157,-73.95353,Entire home/apt,200,30,4,0.35,1,101 +32657,190921808,Manhattan,Hell's Kitchen,40.75391,-73.99709,Private room,62,7,9,0.75,47,337 +32658,190921808,Manhattan,Hell's Kitchen,40.7558,-73.99677,Private room,62,7,6,0.66,47,328 +32659,63266842,Manhattan,Upper East Side,40.76996,-73.9576,Entire home/apt,138,2,57,4.44,1,1 +32660,805344,Manhattan,Harlem,40.82414,-73.95139,Private room,65,2,3,3.0,2,68 +32661,2533676,Brooklyn,Fort Greene,40.68543,-73.97622,Private room,90,4,2,0.16,1,88 +32662,185956783,Queens,Rockaway Beach,40.584990000000005,-73.81599,Entire home/apt,99,4,21,1.66,1,133 +32663,193335348,Manhattan,East Village,40.727,-73.98406,Entire home/apt,350,2,69,5.27,1,291 +32664,1557774,Brooklyn,Bedford-Stuyvesant,40.68425,-73.9567,Entire home/apt,140,5,27,2.12,1,0 +32665,127345864,Brooklyn,East Flatbush,40.64172,-73.93073000000001,Entire home/apt,85,2,33,2.74,4,34 +32666,3970656,Manhattan,Financial District,40.70819,-74.00662,Entire home/apt,200,3,37,2.85,1,2 +32667,16877292,Manhattan,East Harlem,40.79461,-73.94111,Private room,90,1,8,0.63,2,208 +32668,45859780,Brooklyn,Bushwick,40.68785,-73.91360999999999,Private room,60,1,5,0.39,1,0 +32669,2736762,Manhattan,Chelsea,40.7406,-74.00433000000001,Entire home/apt,225,3,3,0.24,1,0 +32670,40119874,Brooklyn,Prospect-Lefferts Gardens,40.662420000000004,-73.94417,Private room,48,1,131,9.97,2,0 +32671,102799406,Queens,Maspeth,40.71301,-73.90716,Entire home/apt,149,3,8,0.61,2,350 +32672,1741498,Manhattan,Gramercy,40.73748,-73.98354,Entire home/apt,200,2,3,0.24,1,0 +32673,2856748,Manhattan,Murray Hill,40.74758,-73.97329,Entire home/apt,225,30,0,,49,364 +32674,16507770,Queens,Briarwood,40.71017,-73.80965,Private room,50,2,30,2.41,3,92 +32675,183240218,Queens,Jamaica,40.67051,-73.77693000000001,Private room,65,1,74,6.05,1,211 +32676,26922164,Manhattan,Harlem,40.81371,-73.95241999999999,Private room,80,2,11,0.85,1,0 +32677,21020951,Brooklyn,Bedford-Stuyvesant,40.69449,-73.93726,Private room,87,2,4,0.32,5,330 +32678,21020951,Brooklyn,Bedford-Stuyvesant,40.693290000000005,-73.93906,Private room,87,2,4,0.45,5,337 +32679,158399244,Brooklyn,Crown Heights,40.67221,-73.93937,Entire home/apt,149,1,39,3.01,4,150 +32680,21216045,Brooklyn,Williamsburg,40.71233,-73.96208,Entire home/apt,169,4,12,0.95,1,60 +32681,166269959,Brooklyn,Crown Heights,40.67031,-73.9354,Private room,95,4,0,,1,0 +32682,34758216,Brooklyn,Park Slope,40.67796,-73.97616,Entire home/apt,305,2,67,5.19,1,101 +32683,25268332,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95615,Entire home/apt,525,2,5,0.49,1,21 +32684,182363374,Brooklyn,Greenpoint,40.725359999999995,-73.95581,Private room,102,1,40,3.12,7,59 +32685,193521500,Manhattan,Upper West Side,40.79874,-73.96649000000001,Entire home/apt,220,7,19,1.45,1,23 +32686,73456844,Manhattan,Financial District,40.706590000000006,-74.01002,Entire home/apt,179,3,8,0.64,1,102 +32687,18139709,Brooklyn,East Flatbush,40.652390000000004,-73.94824,Entire home/apt,190,3,1,0.08,1,0 +32688,12834599,Brooklyn,Borough Park,40.63244,-73.99338,Private room,50,3,1,0.08,4,89 +32689,193151416,Brooklyn,East Flatbush,40.64707,-73.95074,Entire home/apt,140,2,64,4.96,1,220 +32690,17254282,Manhattan,Upper East Side,40.78133,-73.95198,Entire home/apt,220,2,3,0.23,1,0 +32691,193558362,Manhattan,East Village,40.72421,-73.97963,Private room,124,2,11,0.94,1,3 +32692,2483350,Brooklyn,Greenpoint,40.73503,-73.9547,Entire home/apt,114,10,1,0.2,1,0 +32693,37239193,Manhattan,Chelsea,40.740159999999996,-73.99902,Entire home/apt,199,2,1,0.1,1,0 +32694,193583966,Brooklyn,Williamsburg,40.716809999999995,-73.95729,Entire home/apt,135,5,14,1.12,1,44 +32695,33680599,Manhattan,Harlem,40.82913,-73.94718,Private room,55,2,17,1.35,1,125 +32696,186481199,Brooklyn,East Flatbush,40.654959999999996,-73.94405,Private room,125,1,0,,1,311 +32697,177174475,Manhattan,Midtown,40.74815,-73.98832,Entire home/apt,131,1,10,0.84,17,224 +32698,1290870,Brooklyn,Bushwick,40.698479999999996,-73.91179,Entire home/apt,100,2,60,4.74,1,39 +32699,21507811,Manhattan,East Village,40.7293,-73.98325,Private room,95,2,4,0.31,2,0 +32700,2152359,Brooklyn,Bushwick,40.69905,-73.92466,Entire home/apt,220,4,0,,1,0 +32701,11309938,Brooklyn,Williamsburg,40.7128,-73.96244,Entire home/apt,135,60,0,,1,263 +32702,50749495,Manhattan,NoHo,40.72842,-73.99289,Private room,80,7,10,0.93,1,317 +32703,1317353,Brooklyn,Bedford-Stuyvesant,40.681740000000005,-73.94436999999999,Private room,89,3,2,0.16,1,176 +32704,32113962,Staten Island,St. George,40.64497,-74.08267,Entire home/apt,97,4,19,1.54,1,131 +32705,12243051,Manhattan,Financial District,40.70626,-74.00565,Entire home/apt,167,29,0,,96,322 +32706,8124038,Manhattan,Harlem,40.82823,-73.93925,Private room,45,5,17,1.36,1,119 +32707,105828086,Brooklyn,Flatbush,40.643240000000006,-73.96332,Private room,45,2,26,2.02,4,2 +32708,71987360,Brooklyn,Clinton Hill,40.6943,-73.96916999999999,Shared room,45,2,4,0.31,1,0 +32709,3687035,Brooklyn,Fort Greene,40.68464,-73.97094,Private room,75,3,9,0.75,1,7 +32710,61017447,Brooklyn,Carroll Gardens,40.6755,-73.99806,Private room,100,2,35,2.75,1,0 +32711,61981690,Manhattan,Upper East Side,40.7752,-73.95572,Entire home/apt,189,5,18,1.4,1,21 +32712,18886157,Manhattan,Harlem,40.80018,-73.95379,Private room,70,6,2,0.32,1,0 +32713,22463377,Manhattan,Murray Hill,40.74907,-73.97818000000001,Private room,120,1,52,4.26,3,40 +32714,12243051,Manhattan,Financial District,40.707240000000006,-74.0051,Entire home/apt,164,29,0,,96,326 +32715,193717499,Brooklyn,Windsor Terrace,40.649190000000004,-73.9731,Entire home/apt,375,7,1,0.08,1,8 +32716,12219437,Brooklyn,Canarsie,40.64795,-73.89336999999999,Private room,25,2,36,2.76,1,144 +32717,1395940,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92151,Entire home/apt,165,1,42,3.16,1,133 +32718,137358866,Manhattan,Harlem,40.81118,-73.94230999999999,Private room,56,30,4,0.37,103,244 +32719,137358866,Manhattan,Harlem,40.81207,-73.94359,Private room,52,30,2,0.18,103,184 +32720,15372962,Manhattan,Kips Bay,40.74493,-73.97743,Entire home/apt,275,3,1,0.09,1,0 +32721,2572082,Manhattan,West Village,40.73492,-74.00418,Entire home/apt,250,2,5,0.57,1,48 +32722,58234433,Queens,Sunnyside,40.73575,-73.9206,Private room,89,1,12,0.93,8,282 +32723,58234433,Queens,Sunnyside,40.73692,-73.91967,Private room,89,1,18,1.38,8,297 +32724,32708211,Brooklyn,Bedford-Stuyvesant,40.68096,-73.93706999999999,Private room,49,1,42,3.37,1,221 +32725,7185380,Brooklyn,Bedford-Stuyvesant,40.68332,-73.93627,Private room,60,3,7,0.54,1,0 +32726,21507811,Manhattan,East Village,40.727270000000004,-73.98272,Entire home/apt,159,2,6,0.51,2,0 +32727,193744745,Manhattan,Hell's Kitchen,40.76148,-73.99279,Private room,120,7,1,0.08,1,0 +32728,889683,Brooklyn,Williamsburg,40.71264,-73.94889,Private room,88,1,71,5.37,2,51 +32729,193791518,Manhattan,Midtown,40.75565,-73.96722,Entire home/apt,186,3,45,3.8,1,219 +32730,183033408,Manhattan,Harlem,40.8129,-73.94084000000001,Entire home/apt,99,5,7,0.63,1,0 +32731,43809903,Manhattan,Upper West Side,40.802459999999996,-73.96631,Private room,90,1,51,3.88,4,39 +32732,28778026,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9559,Private room,70,1,3,0.26,2,86 +32733,190981544,Brooklyn,Bedford-Stuyvesant,40.6861,-73.92859,Private room,40,1,125,9.47,6,325 +32734,195803,Manhattan,NoHo,40.72555,-73.99283,Entire home/apt,649,1,5,0.4,1,75 +32735,6726656,Brooklyn,Bushwick,40.70117,-73.92545,Private room,50,2,32,2.78,3,114 +32736,850526,Brooklyn,Bushwick,40.69133,-73.90538000000001,Private room,45,4,6,0.47,1,0 +32737,11767749,Brooklyn,Williamsburg,40.7137,-73.96674,Private room,95,2,15,1.16,1,3 +32738,13089912,Manhattan,East Village,40.72331,-73.98424,Private room,149,1,14,1.08,2,264 +32739,193877830,Brooklyn,Midwood,40.61722,-73.96696,Entire home/apt,50,3,14,1.06,1,0 +32740,17075886,Brooklyn,Sunset Park,40.66132,-73.99192,Entire home/apt,280,3,2,0.79,1,0 +32741,3543204,Brooklyn,Bushwick,40.704,-73.91492,Private room,75,2,19,1.47,1,198 +32742,172541609,Queens,Sunnyside,40.74625,-73.91388,Private room,65,2,10,0.78,1,44 +32743,5772223,Brooklyn,Borough Park,40.64512,-73.99839,Entire home/apt,100,14,8,0.63,1,69 +32744,69563112,Manhattan,Harlem,40.81279,-73.95208000000001,Private room,80,3,1,0.08,1,0 +32745,97042500,Manhattan,Harlem,40.80364,-73.95025,Private room,80,2,21,1.66,4,136 +32746,119669058,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95506,Private room,60,2,18,1.63,34,0 +32747,6328069,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95071999999999,Entire home/apt,100,2,5,0.43,1,0 +32748,106783508,Brooklyn,Flatbush,40.65374,-73.96104,Private room,35,60,0,,1,0 +32749,193910244,Brooklyn,Crown Heights,40.67747,-73.95085999999999,Entire home/apt,250,2,20,1.58,1,0 +32750,11280566,Brooklyn,Brooklyn Heights,40.69872,-73.99338,Private room,75,2,53,4.12,1,0 +32751,51535263,Brooklyn,Bushwick,40.699659999999994,-73.93883000000001,Entire home/apt,60,1,8,0.73,1,0 +32752,37684272,Brooklyn,Borough Park,40.6467,-73.99679,Private room,49,2,77,5.83,1,0 +32753,32252422,Brooklyn,East Flatbush,40.63961,-73.93281,Entire home/apt,125,2,56,4.22,2,332 +32754,132497591,Brooklyn,Flatbush,40.64924,-73.95291999999999,Private room,50,4,2,0.27,1,27 +32755,31237776,Manhattan,East Harlem,40.79059,-73.94332,Private room,50,14,1,0.08,1,0 +32756,22208953,Brooklyn,Prospect-Lefferts Gardens,40.65548,-73.95707,Entire home/apt,100,7,5,0.39,1,1 +32757,63417081,Manhattan,Harlem,40.82375,-73.94426,Private room,43,30,1,0.58,8,310 +32758,28484697,Brooklyn,Red Hook,40.67304,-74.01231,Entire home/apt,200,2,10,0.87,1,345 +32759,190921808,Manhattan,Hell's Kitchen,40.75393,-73.99558,Private room,55,7,12,1.09,47,354 +32760,190921808,Manhattan,Hell's Kitchen,40.75554,-73.99701999999999,Private room,54,7,6,0.58,47,359 +32761,43279803,Manhattan,Financial District,40.709340000000005,-74.01001,Private room,80,3,34,2.58,1,83 +32762,134613498,Manhattan,East Village,40.726259999999996,-73.98824,Private room,140,1,7,0.73,7,1 +32763,74374901,Manhattan,Hell's Kitchen,40.75652,-73.99069,Entire home/apt,250,3,44,3.53,1,48 +32764,193947911,Queens,Astoria,40.76356,-73.92102,Entire home/apt,250,4,5,0.44,1,1 +32765,183803880,Manhattan,Hell's Kitchen,40.76578,-73.98383000000001,Entire home/apt,499,3,26,2.5,1,0 +32766,33290222,Brooklyn,Bedford-Stuyvesant,40.682790000000004,-73.91946999999999,Entire home/apt,140,2,42,3.19,1,26 +32767,3245072,Brooklyn,Bedford-Stuyvesant,40.68905,-73.95241999999999,Entire home/apt,175,2,5,0.45,1,0 +32768,1292274,Manhattan,Upper East Side,40.78175,-73.94797,Private room,111,1,10,0.76,2,62 +32769,186084,Manhattan,Chinatown,40.71676,-73.99348,Entire home/apt,160,2,5,0.48,2,46 +32770,190921808,Manhattan,Hell's Kitchen,40.75437,-73.9964,Private room,150,7,8,0.77,47,354 +32771,1538023,Manhattan,Upper West Side,40.78099,-73.97933,Shared room,60,1,13,1.06,1,331 +32772,96737879,Brooklyn,Williamsburg,40.70412,-73.93426,Private room,70,3,19,1.79,3,53 +32773,177314795,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.9457,Private room,70,1,90,6.94,3,352 +32774,2423377,Brooklyn,Williamsburg,40.715309999999995,-73.96548,Private room,425,5,6,0.66,1,156 +32775,3713535,Manhattan,Lower East Side,40.71826,-73.99079,Entire home/apt,230,5,6,0.47,1,0 +32776,131777975,Brooklyn,Brownsville,40.665279999999996,-73.91829,Private room,50,4,6,0.62,3,330 +32777,28255971,Manhattan,East Village,40.7326,-73.98680999999999,Entire home/apt,200,3,3,3.0,1,10 +32778,193983914,Manhattan,Upper West Side,40.791,-73.97545,Entire home/apt,125,2,49,3.79,1,2 +32779,190921808,Manhattan,Hell's Kitchen,40.75396,-73.99684,Private room,60,7,5,0.49,47,326 +32780,44123062,Brooklyn,Bushwick,40.68853,-73.90613,Private room,40,3,53,4.14,4,8 +32781,179677211,Bronx,Van Nest,40.84787,-73.86176999999999,Entire home/apt,107,1,47,3.63,3,8 +32782,190921808,Manhattan,Hell's Kitchen,40.7557,-73.99563,Private room,62,7,10,0.87,47,358 +32783,157241,Manhattan,West Village,40.73612,-74.00591,Entire home/apt,195,5,7,0.57,1,6 +32784,179677211,Bronx,Van Nest,40.84778,-73.86146,Entire home/apt,150,1,29,2.23,3,24 +32785,12834599,Brooklyn,Borough Park,40.632940000000005,-73.99316999999999,Private room,50,3,3,0.29,4,179 +32786,194004304,Manhattan,Washington Heights,40.84782,-73.93954000000001,Private room,85,1,9,0.79,1,80 +32787,194014767,Brooklyn,East Flatbush,40.6464,-73.95106,Entire home/apt,110,2,44,3.4,2,288 +32788,107434423,Manhattan,Upper East Side,40.77669,-73.95673000000001,Entire home/apt,211,30,1,0.23,232,201 +32789,190921808,Manhattan,Hell's Kitchen,40.75396,-73.99571,Private room,100,7,2,0.29,47,238 +32790,123073403,Manhattan,Morningside Heights,40.80551,-73.96618000000001,Entire home/apt,125,3,1,0.17,1,0 +32791,194012738,Brooklyn,Flatbush,40.65248,-73.95278,Private room,45,3,42,4.24,1,81 +32792,117543014,Queens,Rego Park,40.72691,-73.85478,Private room,38,2,43,3.32,1,0 +32793,193485559,Queens,Sunnyside,40.74432,-73.91741,Private room,50,2,0,,1,66 +32794,52525653,Manhattan,Harlem,40.80549,-73.95129,Private room,83,1,3,0.28,2,0 +32795,2412677,Manhattan,Chinatown,40.71463,-73.99216,Private room,100,2,1,0.08,1,0 +32796,1524825,Manhattan,Tribeca,40.72273,-74.01049,Entire home/apt,1000,7,0,,1,178 +32797,194102474,Bronx,Claremont Village,40.84346,-73.91150999999999,Private room,35,1,49,3.84,1,168 +32798,194104396,Brooklyn,Flatlands,40.62635,-73.93565,Private room,75,3,0,,1,90 +32799,194108889,Queens,Maspeth,40.72605,-73.90711,Private room,26,3,2,0.16,1,118 +32800,190921808,Manhattan,Hell's Kitchen,40.75571,-73.99647,Private room,62,2,19,1.8,47,331 +32801,1034976,Brooklyn,Williamsburg,40.71767,-73.95902,Entire home/apt,170,2,12,0.93,2,308 +32802,190921808,Manhattan,Hell's Kitchen,40.75545,-73.99556,Private room,62,7,8,0.77,47,355 +32803,156547988,Queens,Ozone Park,40.67651,-73.84815,Entire home/apt,60,1,32,2.64,4,155 +32804,194130534,Queens,Astoria,40.772040000000004,-73.9223,Private room,51,1,23,1.78,1,3 +32805,17005572,Brooklyn,Bushwick,40.68566,-73.90909,Private room,70,5,25,1.96,1,64 +32806,17330141,Manhattan,Harlem,40.82952,-73.94764,Entire home/apt,105,2,33,2.91,1,45 +32807,156547988,Queens,Woodhaven,40.68853,-73.85474,Private room,60,1,14,1.13,4,335 +32808,33867639,Manhattan,Chinatown,40.71471,-73.99514,Private room,100,1,51,3.86,3,92 +32809,33867639,Manhattan,Chinatown,40.71457,-73.9958,Private room,122,1,71,5.5,3,91 +32810,167570251,Brooklyn,Sunset Park,40.662420000000004,-73.99464,Entire home/apt,10,1,14,1.06,1,4 +32811,119958898,Manhattan,Chelsea,40.742670000000004,-73.99971,Entire home/apt,299,3,76,5.82,1,91 +32812,6754369,Queens,Jamaica,40.69252,-73.80272,Private room,85,1,23,1.75,4,114 +32813,33867639,Manhattan,Chinatown,40.714,-73.99571,Private room,90,1,82,6.24,3,77 +32814,159204067,Brooklyn,Greenpoint,40.72488,-73.94932,Entire home/apt,124,1,6,0.5,1,6 +32815,48183551,Queens,Elmhurst,40.7448,-73.88176999999999,Private room,42,6,26,2.09,5,299 +32816,35967771,Brooklyn,Williamsburg,40.720209999999994,-73.95949,Entire home/apt,180,2,3,0.29,1,0 +32817,6754369,Queens,Jamaica,40.69352,-73.80301,Private room,80,1,47,3.56,4,125 +32818,194180091,Manhattan,Upper West Side,40.791140000000006,-73.97787,Entire home/apt,175,6,3,0.23,1,0 +32819,6754369,Queens,Jamaica,40.69238,-73.80247,Private room,85,1,37,2.8,4,297 +32820,7266843,Manhattan,SoHo,40.7258,-74.0015,Private room,45,6,2,0.17,1,0 +32821,56040696,Manhattan,East Village,40.72748,-73.9795,Entire home/apt,160,5,25,1.94,1,0 +32822,91099303,Brooklyn,Flatbush,40.644870000000004,-73.96233000000001,Entire home/apt,59,5,3,0.4,1,0 +32823,46782979,Brooklyn,Bushwick,40.69907,-73.92348,Private room,150,30,0,,1,0 +32824,194031970,Manhattan,Hell's Kitchen,40.763529999999996,-73.98839,Shared room,69,1,24,1.84,3,208 +32825,194031970,Manhattan,Hell's Kitchen,40.765190000000004,-73.98939,Shared room,69,1,17,1.3,3,212 +32826,155911578,Manhattan,Harlem,40.81889,-73.94224,Entire home/apt,180,2,20,1.52,2,89 +32827,7810310,Brooklyn,Cobble Hill,40.685,-73.99965999999999,Entire home/apt,100,2,11,0.91,1,0 +32828,13307646,Brooklyn,Bedford-Stuyvesant,40.695370000000004,-73.95642,Entire home/apt,125,18,4,0.32,1,24 +32829,30940393,Brooklyn,Bushwick,40.68869,-73.90581999999999,Private room,50,3,22,1.76,2,0 +32830,75671801,Brooklyn,Brighton Beach,40.579409999999996,-73.975,Private room,75,1,12,1.03,1,90 +32831,23827868,Manhattan,Upper East Side,40.77655,-73.94651,Private room,55,21,2,0.25,1,131 +32832,24222,Manhattan,East Village,40.72585,-73.97967,Private room,65,5,2,0.16,2,2 +32833,37412692,Manhattan,Midtown,40.766659999999995,-73.98156,Entire home/apt,200,30,0,,4,362 +32834,226563,Brooklyn,Williamsburg,40.71479,-73.94915999999999,Entire home/apt,120,14,0,,1,0 +32835,1190628,Manhattan,East Harlem,40.79788,-73.93265,Entire home/apt,160,7,0,,1,278 +32836,194349000,Brooklyn,Boerum Hill,40.68716,-73.98801,Entire home/apt,200,2,0,,1,23 +32837,137358866,Manhattan,East Harlem,40.79322,-73.94038,Private room,34,30,3,0.26,103,207 +32838,136264512,Manhattan,Hell's Kitchen,40.76582,-73.98409000000001,Entire home/apt,195,3,38,3.33,1,9 +32839,31975791,Manhattan,East Harlem,40.79822,-73.93468,Private room,70,2,25,2.67,1,101 +32840,93339410,Queens,Bayswater,40.60628,-73.76019000000001,Entire home/apt,105,4,8,0.7,1,222 +32841,5368201,Brooklyn,Bedford-Stuyvesant,40.68565,-73.92599,Entire home/apt,195,7,0,,1,20 +32842,194372264,Manhattan,East Village,40.72433,-73.9789,Private room,60,2,50,3.86,1,288 +32843,48414103,Manhattan,Upper East Side,40.7814,-73.95541,Entire home/apt,120,2,2,0.64,1,0 +32844,17170106,Manhattan,Greenwich Village,40.734159999999996,-73.99446,Entire home/apt,250,2,3,0.24,1,0 +32845,78016461,Brooklyn,Bushwick,40.69872,-73.9301,Private room,89,2,0,,1,175 +32846,137358866,Manhattan,Harlem,40.81205,-73.94309,Private room,32,30,0,,103,236 +32847,6754369,Queens,Jamaica,40.69267,-73.80159,Entire home/apt,340,1,10,0.78,4,82 +32848,176772783,Manhattan,Upper West Side,40.79889,-73.97182,Entire home/apt,550,2,3,0.25,1,0 +32849,191765199,Manhattan,Washington Heights,40.833729999999996,-73.94181999999999,Private room,88,1,18,1.38,6,90 +32850,160248396,Queens,Ditmars Steinway,40.77816,-73.91001999999999,Private room,70,2,41,3.18,1,15 +32851,25480676,Manhattan,Harlem,40.82132,-73.9538,Private room,65,1,10,4.17,1,5 +32852,89886720,Manhattan,Upper East Side,40.78029,-73.95251999999999,Entire home/apt,125,10,4,0.34,1,9 +32853,193497177,Bronx,Throgs Neck,40.82257,-73.83773000000001,Entire home/apt,100,2,23,1.84,1,89 +32854,3391251,Manhattan,East Harlem,40.7942,-73.94532,Entire home/apt,110,4,4,0.37,1,0 +32855,194520886,Queens,Jamaica Estates,40.71434,-73.78805,Entire home/apt,125,1,18,1.78,2,166 +32856,44123062,Brooklyn,Bushwick,40.68912,-73.90848000000001,Private room,40,3,50,3.96,4,9 +32857,25099638,Manhattan,Civic Center,40.71306,-74.00569,Entire home/apt,150,1,0,,1,90 +32858,1226850,Manhattan,Morningside Heights,40.81338,-73.96042,Private room,70,3,0,,1,0 +32859,28996758,Manhattan,Upper West Side,40.79811,-73.97185999999999,Private room,72,1,5,0.38,1,0 +32860,392929,Brooklyn,Park Slope,40.66775,-73.97738000000001,Entire home/apt,195,4,5,0.4,1,0 +32861,3294438,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95736,Shared room,45,2,14,1.18,3,306 +32862,20065291,Brooklyn,Bedford-Stuyvesant,40.68983,-73.95626,Private room,45,2,1,0.12,1,0 +32863,24000784,Brooklyn,Sunset Park,40.64524,-74.01273,Entire home/apt,90,2,31,2.49,4,126 +32864,22819324,Brooklyn,Bushwick,40.69585,-73.90966999999999,Private room,60,2,12,1.01,2,0 +32865,194141910,Manhattan,Hell's Kitchen,40.75574,-73.99723,Private room,134,2,16,1.26,1,12 +32866,178807971,Manhattan,Midtown,40.75155,-73.97021,Entire home/apt,250,2,2,0.21,1,11 +32867,106304833,Queens,Jamaica,40.68257,-73.77949,Entire home/apt,75,2,25,2.06,1,62 +32868,194590736,Brooklyn,Fort Greene,40.69493,-73.97984,Private room,80,5,48,3.7,1,86 +32869,4580765,Brooklyn,Crown Heights,40.67367,-73.9223,Entire home/apt,300,3,33,2.56,1,292 +32870,17221402,Manhattan,Morningside Heights,40.81313,-73.96148000000001,Private room,75,2,22,1.88,1,0 +32871,18567068,Manhattan,Hell's Kitchen,40.76201,-73.99876,Private room,150,3,4,0.31,1,0 +32872,137358866,Manhattan,Harlem,40.81098,-73.94278,Private room,52,30,1,0.09,103,237 +32873,181863187,Brooklyn,Clinton Hill,40.69462,-73.96996,Entire home/apt,550,12,0,,1,2 +32874,67191518,Brooklyn,Williamsburg,40.71777,-73.96173,Entire home/apt,250,4,8,0.7,1,156 +32875,155911578,Manhattan,Harlem,40.8186,-73.94348000000001,Private room,110,1,1,0.45,2,0 +32876,175408,Brooklyn,Bedford-Stuyvesant,40.68242,-73.92788,Entire home/apt,250,10,1,0.08,1,0 +32877,148546760,Queens,Forest Hills,40.71952,-73.85523,Entire home/apt,325,4,6,0.51,1,3 +32878,144119993,Bronx,Fordham,40.85801,-73.88247,Private room,21,1,9,0.7,2,0 +32879,32605338,Manhattan,Upper East Side,40.76917,-73.9516,Entire home/apt,150,4,11,1.13,1,3 +32880,144002200,Brooklyn,Gowanus,40.67087,-73.99305,Entire home/apt,75,2,7,0.74,1,7 +32881,193716904,Manhattan,Midtown,40.75704,-73.96531,Private room,100,3,4,0.31,1,0 +32882,37939474,Queens,Jamaica,40.70713,-73.78341999999999,Private room,37,2,34,2.63,1,331 +32883,194554070,Queens,Ridgewood,40.7087,-73.91452,Private room,50,2,1,0.08,1,0 +32884,6255854,Manhattan,Tribeca,40.71785,-74.00549000000001,Entire home/apt,275,2,20,1.56,1,10 +32885,94363111,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95943,Entire home/apt,110,3,51,4.16,1,46 +32886,7558748,Bronx,Mott Haven,40.8084,-73.92036999999999,Entire home/apt,115,2,36,3.12,1,114 +32887,26876408,Brooklyn,Columbia St,40.68051,-74.00357,Entire home/apt,160,30,1,0.09,1,95 +32888,117287163,Brooklyn,Williamsburg,40.71971,-73.95879000000001,Private room,65,14,0,,1,0 +32889,12243051,Manhattan,Murray Hill,40.74388,-73.97193,Entire home/apt,184,29,1,0.26,96,347 +32890,12243051,Manhattan,Murray Hill,40.744679999999995,-73.97335,Entire home/apt,189,29,1,0.09,96,338 +32891,12243051,Manhattan,Financial District,40.70447,-74.00846999999999,Entire home/apt,169,29,0,,96,170 +32892,192951036,Manhattan,SoHo,40.72788,-74.00301,Private room,129,1,38,2.98,10,151 +32893,192951036,Manhattan,SoHo,40.7258,-73.99969,Private room,119,1,35,2.75,10,156 +32894,192951036,Manhattan,SoHo,40.72513,-74.00329,Private room,119,1,42,3.32,10,120 +32895,33210753,Brooklyn,Clinton Hill,40.69631,-73.96288,Private room,65,3,11,0.85,1,356 +32896,194927217,Manhattan,Washington Heights,40.84002,-73.94384000000001,Shared room,40,1,1,1.0,1,30 +32897,132908616,Brooklyn,Bushwick,40.70227,-73.92264,Private room,45,3,25,2.07,2,44 +32898,4132784,Manhattan,Lower East Side,40.718959999999996,-73.986,Entire home/apt,375,2,3,0.31,1,8 +32899,168465501,Manhattan,Murray Hill,40.75058,-73.97746,Entire home/apt,200,30,0,,4,364 +32900,55737033,Manhattan,Harlem,40.82967,-73.94851,Private room,65,4,29,2.29,1,98 +32901,37280441,Manhattan,Morningside Heights,40.810390000000005,-73.95948,Private room,70,1,67,5.19,2,0 +32902,194958383,Manhattan,East Harlem,40.79019,-73.94839,Private room,190,3,19,1.53,1,14 +32903,25210511,Brooklyn,Clinton Hill,40.69485,-73.96566999999999,Private room,85,1,16,1.24,1,0 +32904,6654682,Manhattan,Harlem,40.806090000000005,-73.95258000000001,Entire home/apt,800,4,2,0.19,1,197 +32905,38003941,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93054000000001,Private room,80,2,9,0.71,1,0 +32906,25237492,Manhattan,Washington Heights,40.84089,-73.94109,Private room,65,30,1,0.14,34,311 +32907,58234433,Queens,Sunnyside,40.73657,-73.91975,Private room,129,1,10,1.02,8,275 +32908,10304316,Queens,Astoria,40.76549,-73.9149,Private room,60,50,0,,1,21 +32909,195021790,Manhattan,West Village,40.73338,-74.00314,Entire home/apt,180,2,4,0.31,1,0 +32910,42998647,Manhattan,Hell's Kitchen,40.75854,-73.98988,Private room,35,3,101,7.77,3,68 +32911,62533391,Brooklyn,Borough Park,40.635909999999996,-74.00717,Private room,60,1,10,0.82,7,312 +32912,62533391,Brooklyn,Borough Park,40.63573,-74.00551999999999,Private room,60,1,1,0.26,7,350 +32913,42998647,Manhattan,Hell's Kitchen,40.758590000000005,-73.99195,Private room,39,3,84,6.46,3,17 +32914,2974873,Brooklyn,Bushwick,40.693290000000005,-73.91579,Private room,70,14,2,0.2,2,311 +32915,195040579,Brooklyn,Midwood,40.6294,-73.97004,Entire home/apt,115,354,0,,1,179 +32916,3163428,Brooklyn,Sheepshead Bay,40.59919,-73.94189,Private room,60,6,0,,1,12 +32917,131236711,Manhattan,Lower East Side,40.71026,-73.98738,Private room,80,1,11,0.85,1,0 +32918,195048996,Manhattan,Harlem,40.82571,-73.95016,Private room,68,3,0,,1,0 +32919,46976642,Brooklyn,Midwood,40.61605,-73.94549,Entire home/apt,155,4,1,0.08,1,7 +32920,183188884,Brooklyn,Clinton Hill,40.68403,-73.9625,Entire home/apt,780,3,0,,1,0 +32921,195057742,Manhattan,Upper East Side,40.77772,-73.94821999999999,Entire home/apt,135,2,6,0.5,1,0 +32922,2732777,Manhattan,Upper West Side,40.8018,-73.96264000000001,Private room,115,3,19,1.5,1,189 +32923,20912691,Queens,Jamaica,40.711059999999996,-73.78393,Private room,59,2,10,0.79,7,0 +32924,16962957,Manhattan,East Village,40.72891,-73.97977,Entire home/apt,169,1,5,0.39,4,59 +32925,697560,Brooklyn,East Flatbush,40.65014,-73.94451,Entire home/apt,100,2,0,,1,5 +32926,35577118,Manhattan,Upper East Side,40.76182,-73.9619,Entire home/apt,195,1,48,3.71,1,0 +32927,97042500,Manhattan,Harlem,40.80387,-73.95164,Private room,85,3,30,2.48,4,145 +32928,52403444,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94586,Entire home/apt,109,1,75,5.77,3,20 +32929,97042500,Manhattan,Harlem,40.80352,-73.95212,Private room,109,3,35,2.82,4,0 +32930,3107231,Brooklyn,Greenpoint,40.72617,-73.95956,Entire home/apt,85,15,0,,1,191 +32931,4712374,Brooklyn,Greenpoint,40.73325,-73.95541999999999,Private room,85,1,12,0.97,1,0 +32932,62557719,Manhattan,Harlem,40.829609999999995,-73.94525,Private room,45,7,11,0.85,3,88 +32933,152442590,Manhattan,Washington Heights,40.851079999999996,-73.93911999999999,Private room,60,1,8,0.62,1,0 +32934,7186760,Manhattan,Upper East Side,40.77727,-73.94588,Entire home/apt,115,35,1,0.09,2,21 +32935,47426611,Manhattan,Washington Heights,40.84963,-73.9372,Entire home/apt,100,2,15,1.39,1,48 +32936,161649470,Brooklyn,Bedford-Stuyvesant,40.68315,-73.92913,Private room,50,1,1,0.14,1,0 +32937,9293730,Manhattan,Upper East Side,40.77045,-73.9568,Entire home/apt,125,30,6,0.59,16,339 +32938,1001819,Manhattan,Greenwich Village,40.72818,-73.99993,Entire home/apt,850,5,11,0.88,1,45 +32939,54369863,Manhattan,Harlem,40.82567,-73.95260999999999,Private room,70,1,1,0.08,1,0 +32940,17494958,Manhattan,SoHo,40.72352,-74.00365,Private room,100,5,2,0.17,3,0 +32941,90689056,Manhattan,Washington Heights,40.84813,-73.94349,Private room,55,5,1,0.08,1,0 +32942,195219725,Queens,Kew Gardens Hills,40.72437,-73.81523,Entire home/apt,95,1,51,3.94,1,136 +32943,20176273,Brooklyn,Williamsburg,40.710679999999996,-73.96304,Entire home/apt,347,4,22,2.19,1,70 +32944,44123062,Brooklyn,Bushwick,40.68714,-73.90657,Private room,50,3,45,3.61,4,6 +32945,195238640,Brooklyn,Crown Heights,40.67411,-73.93023000000001,Entire home/apt,190,3,26,2.07,1,251 +32946,30801953,Manhattan,Upper West Side,40.779990000000005,-73.97997,Entire home/apt,169,2,10,0.78,1,0 +32947,139191647,Manhattan,Washington Heights,40.856120000000004,-73.92888,Private room,215,1,0,,1,179 +32948,39915290,Manhattan,Harlem,40.81187,-73.95393,Entire home/apt,299,2,8,0.97,2,314 +32949,8881505,Manhattan,SoHo,40.72786,-74.005,Entire home/apt,175,5,20,2.01,1,36 +32950,195274541,Manhattan,Greenwich Village,40.72935,-74.00156,Entire home/apt,220,3,3,0.24,1,0 +32951,195279731,Manhattan,Upper East Side,40.77097,-73.95594,Entire home/apt,120,2,28,2.22,1,0 +32952,191087534,Manhattan,Little Italy,40.71852,-73.99803,Entire home/apt,200,3,0,,1,0 +32953,121392618,Brooklyn,Williamsburg,40.71882,-73.94159,Entire home/apt,190,1,95,7.38,1,0 +32954,177314795,Brooklyn,Prospect-Lefferts Gardens,40.66342,-73.94519,Private room,90,1,100,7.71,3,316 +32955,18197276,Bronx,Kingsbridge,40.88058,-73.90552,Entire home/apt,85,2,13,1.05,1,0 +32956,155627,Manhattan,Greenwich Village,40.731770000000004,-73.99936,Entire home/apt,90,42,2,0.41,1,91 +32957,57257950,Brooklyn,Greenpoint,40.7334,-73.95849,Entire home/apt,399,1,0,,4,248 +32958,57257950,Brooklyn,Greenpoint,40.73409,-73.95752,Entire home/apt,349,1,0,,4,214 +32959,57257950,Brooklyn,Greenpoint,40.73198,-73.95862,Entire home/apt,379,1,0,,4,227 +32960,57257950,Brooklyn,Greenpoint,40.73218,-73.95855,Private room,399,1,1,0.1,4,249 +32961,5597411,Brooklyn,Kensington,40.6357,-73.97208,Entire home/apt,150,14,0,,2,112 +32962,193364875,Manhattan,Hell's Kitchen,40.76311,-73.98704000000001,Private room,98,2,64,5.65,1,54 +32963,7772526,Brooklyn,Bushwick,40.68658,-73.91418,Entire home/apt,140,3,15,2.76,2,240 +32964,195419830,Manhattan,Washington Heights,40.837990000000005,-73.94036,Private room,50,2,43,3.42,1,134 +32965,192951036,Manhattan,SoHo,40.72712,-74.00065,Entire home/apt,393,1,11,0.91,10,300 +32966,2739367,Brooklyn,Williamsburg,40.708259999999996,-73.94421,Private room,62,29,70,5.38,2,64 +32967,4232532,Brooklyn,South Slope,40.6611,-73.98109000000001,Private room,112,1,5,0.39,2,0 +32968,67923313,Manhattan,Washington Heights,40.858109999999996,-73.92921,Entire home/apt,90,5,5,0.44,1,18 +32969,83786650,Manhattan,Upper East Side,40.76018,-73.9608,Entire home/apt,117,30,0,,8,339 +32970,15570509,Brooklyn,Williamsburg,40.70779,-73.95467,Entire home/apt,350,2,8,1.06,1,129 +32971,2739367,Brooklyn,Williamsburg,40.709309999999995,-73.94253,Private room,62,1,71,5.52,2,73 +32972,136208791,Bronx,Wakefield,40.887229999999995,-73.86350999999999,Private room,45,1,4,0.31,1,365 +32973,134613498,Manhattan,East Village,40.72811,-73.98824,Private room,285,1,0,,7,0 +32974,395627,Manhattan,Upper East Side,40.76279,-73.96266,Private room,125,1,16,1.26,1,80 +32975,36214976,Manhattan,Harlem,40.81968,-73.94384000000001,Private room,75,2,12,0.96,1,0 +32976,4876826,Manhattan,Midtown,40.76591,-73.97886,Entire home/apt,333,12,1,0.1,1,110 +32977,181711840,Bronx,University Heights,40.862590000000004,-73.90359000000001,Private room,65,1,2,0.19,2,0 +32978,134613498,Manhattan,East Village,40.72814,-73.98665,Private room,250,1,1,0.08,7,365 +32979,22098752,Brooklyn,Bushwick,40.682320000000004,-73.9058,Entire home/apt,100,1,1,0.12,1,85 +32980,39535251,Brooklyn,Boerum Hill,40.68696,-73.98174,Entire home/apt,103,2,5,0.4,1,0 +32981,195497710,Manhattan,Inwood,40.86903,-73.91825,Entire home/apt,95,3,22,2.06,1,251 +32982,8473523,Manhattan,Lower East Side,40.71857,-73.98867,Private room,75,1,7,0.55,1,0 +32983,195516359,Manhattan,Lower East Side,40.71359,-73.98931999999999,Entire home/apt,220,3,12,0.98,1,43 +32984,195520304,Brooklyn,Canarsie,40.64175,-73.89228,Entire home/apt,100,2,56,4.47,1,133 +32985,43463232,Brooklyn,Bushwick,40.69208,-73.91775,Entire home/apt,110,30,0,,2,221 +32986,5445262,Manhattan,Upper East Side,40.77844,-73.94728,Entire home/apt,125,3,8,0.63,1,0 +32987,144345250,Brooklyn,Williamsburg,40.71552,-73.94263000000001,Private room,110,2,0,,1,0 +32988,159608581,Brooklyn,Bushwick,40.6879,-73.91183000000001,Private room,39,2,1,0.09,1,0 +32989,4392159,Manhattan,Upper West Side,40.80135,-73.96643,Entire home/apt,179,30,0,,1,0 +32990,15984278,Brooklyn,Bushwick,40.701640000000005,-73.9223,Private room,90,2,18,1.39,1,344 +32991,195517789,Brooklyn,Sunset Park,40.650040000000004,-74.00511999999999,Private room,55,3,31,2.75,2,345 +32992,87979621,Manhattan,Hell's Kitchen,40.76907,-73.98814,Private room,99,2,52,4.08,1,192 +32993,7193111,Brooklyn,Crown Heights,40.676390000000005,-73.94714,Entire home/apt,200,1,15,1.42,1,2 +32994,14860389,Brooklyn,Greenpoint,40.7374,-73.95666,Private room,120,3,1,0.28,1,87 +32995,24402648,Brooklyn,Bushwick,40.693740000000005,-73.92645,Private room,149,2,8,0.65,1,83 +32996,23024846,Manhattan,East Village,40.72455,-73.98418000000001,Entire home/apt,200,1,12,1.0,1,0 +32997,94509134,Brooklyn,Crown Heights,40.67961,-73.96325,Entire home/apt,190,1,12,0.93,1,9 +32998,16638733,Brooklyn,Williamsburg,40.719879999999996,-73.94239,Entire home/apt,149,4,0,,1,0 +32999,6295182,Manhattan,West Village,40.73434,-73.99963000000001,Entire home/apt,230,2,11,0.95,1,59 +33000,64790109,Brooklyn,Clinton Hill,40.693690000000004,-73.9629,Private room,50,20,1,0.41,1,72 +33001,68327820,Manhattan,Harlem,40.82314,-73.94245,Private room,97,2,13,1.08,1,23 +33002,195667782,Brooklyn,Williamsburg,40.70898,-73.94813,Private room,76,1,59,4.57,1,44 +33003,177314795,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.94509000000001,Private room,60,1,59,4.65,3,342 +33004,40653297,Manhattan,Upper West Side,40.787209999999995,-73.97015,Entire home/apt,350,2,19,1.5,1,163 +33005,195678889,Manhattan,Harlem,40.82461,-73.95269,Private room,60,2,0,,1,363 +33006,4122424,Brooklyn,Williamsburg,40.70621,-73.95026,Private room,60,1,36,2.79,1,0 +33007,192951036,Manhattan,West Village,40.72918,-74.00482,Private room,209,1,40,3.09,10,247 +33008,195683584,Manhattan,Harlem,40.80579,-73.94915999999999,Entire home/apt,125,2,22,1.84,1,291 +33009,195691349,Brooklyn,Bedford-Stuyvesant,40.68037,-73.94775,Entire home/apt,150,1,95,7.94,3,243 +33010,195693063,Manhattan,Harlem,40.822520000000004,-73.94858,Private room,125,1,63,5.34,2,293 +33011,6918093,Manhattan,Upper West Side,40.78883,-73.98068,Private room,90,3,8,0.62,1,0 +33012,195689083,Manhattan,West Village,40.740120000000005,-74.00537,Private room,50,2,56,4.35,1,21 +33013,186517433,Manhattan,East Harlem,40.796079999999996,-73.93335,Entire home/apt,350,1,0,,1,90 +33014,134613498,Manhattan,East Village,40.72718,-73.98798000000001,Private room,60,1,11,0.86,7,23 +33015,195712950,Manhattan,West Village,40.73867,-74.00383000000001,Entire home/apt,300,3,2,0.2,1,0 +33016,195691349,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.94699,Entire home/apt,150,1,109,8.93,3,241 +33017,33996519,Manhattan,Harlem,40.82291,-73.95612,Private room,50,13,0,,1,5 +33018,156585195,Brooklyn,East Flatbush,40.65287,-73.94861,Entire home/apt,200,2,27,2.3,2,217 +33019,4167027,Brooklyn,Kensington,40.64595,-73.97578,Private room,60,5,3,0.45,1,344 +33020,31410976,Brooklyn,Bedford-Stuyvesant,40.686809999999994,-73.93344,Entire home/apt,183,3,24,1.89,1,115 +33021,769759,Brooklyn,Bushwick,40.69502,-73.93106999999999,Private room,70,3,11,0.94,2,0 +33022,769759,Brooklyn,Bushwick,40.69615,-73.93302,Private room,60,2,17,1.31,2,2 +33023,17452999,Brooklyn,Greenpoint,40.73616,-73.95510999999999,Private room,95,3,0,,1,0 +33024,17672941,Manhattan,Greenwich Village,40.72844,-74.00025,Private room,100,3,6,0.48,1,9 +33025,18824752,Brooklyn,Williamsburg,40.70858,-73.95378000000001,Private room,70,3,42,3.41,1,20 +33026,26034076,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93693,Private room,55,30,0,,1,0 +33027,40044041,Manhattan,Washington Heights,40.84367,-73.93566,Private room,59,2,5,0.43,1,0 +33028,6879271,Queens,Glendale,40.70267,-73.88663000000001,Private room,83,2,4,0.32,1,364 +33029,46201715,Brooklyn,Crown Heights,40.66697,-73.93225,Private room,67,1,73,5.67,1,251 +33030,22541573,Manhattan,Chelsea,40.75233,-73.9941,Entire home/apt,259,30,0,,87,357 +33031,36440514,Brooklyn,Clinton Hill,40.68553,-73.96314,Entire home/apt,150,3,5,0.39,1,0 +33032,87767243,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9149,Private room,41,21,1,0.11,2,155 +33033,389684,Manhattan,SoHo,40.72292,-73.99951,Entire home/apt,550,3,9,3.18,1,61 +33034,758520,Brooklyn,Crown Heights,40.67621,-73.95052,Entire home/apt,99,3,3,0.26,1,0 +33035,19407197,Brooklyn,Bushwick,40.68642,-73.90734,Private room,70,3,21,1.78,1,33 +33036,195831428,Manhattan,Chelsea,40.744409999999995,-74.00385,Entire home/apt,350,7,4,0.43,1,207 +33037,662432,Brooklyn,Williamsburg,40.716570000000004,-73.9595,Entire home/apt,350,5,1,0.09,1,117 +33038,17867234,Queens,Ridgewood,40.70793,-73.89528,Private room,37,4,8,0.64,1,157 +33039,384654,Queens,Long Island City,40.74623,-73.94051,Entire home/apt,140,2,7,2.23,1,122 +33040,28811203,Manhattan,Flatiron District,40.73986,-73.9863,Entire home/apt,349,7,3,0.26,1,188 +33041,126034120,Manhattan,East Village,40.726079999999996,-73.97797,Private room,105,3,1,0.09,3,14 +33042,64777265,Queens,Rockaway Beach,40.585359999999994,-73.81726,Entire home/apt,75,30,1,0.11,1,363 +33043,193500709,Brooklyn,Bedford-Stuyvesant,40.67771,-73.90969,Private room,55,1,25,1.97,3,74 +33044,195867496,Manhattan,Kips Bay,40.740359999999995,-73.97929,Entire home/apt,85,28,0,,1,0 +33045,1409262,Brooklyn,Flatbush,40.6424,-73.95365,Entire home/apt,165,2,49,4.04,6,191 +33046,8161684,Brooklyn,Vinegar Hill,40.70139,-73.98351,Entire home/apt,250,4,5,0.49,1,0 +33047,193500709,Brooklyn,Bedford-Stuyvesant,40.67736,-73.90995,Private room,55,1,24,1.96,3,64 +33048,193500709,Brooklyn,Bedford-Stuyvesant,40.67758,-73.90841,Private room,59,1,24,1.86,3,32 +33049,192951036,Manhattan,Greenwich Village,40.7278,-73.99976,Private room,129,1,29,2.28,10,245 +33050,94669,Brooklyn,Bedford-Stuyvesant,40.68354,-73.94003000000001,Private room,55,3,43,3.57,2,0 +33051,4993126,Manhattan,Upper West Side,40.78052,-73.97567,Private room,109,3,14,1.14,1,0 +33052,4520673,Brooklyn,Williamsburg,40.714240000000004,-73.96181999999999,Private room,75,20,4,0.52,2,95 +33053,137358866,Manhattan,Harlem,40.81217,-73.94406,Private room,52,30,2,0.19,103,214 +33054,13811457,Brooklyn,Bedford-Stuyvesant,40.68662,-73.95466,Entire home/apt,115,2,6,0.56,1,6 +33055,155807678,Manhattan,Morningside Heights,40.80395,-73.96311,Entire home/apt,113,45,0,,1,87 +33056,35516941,Brooklyn,South Slope,40.66336,-73.9789,Private room,50,60,0,,1,362 +33057,173290675,Queens,Woodhaven,40.69791,-73.85158,Private room,40,2,16,1.24,3,330 +33058,143400845,Bronx,University Heights,40.861129999999996,-73.91511,Entire home/apt,100,5,1,0.08,1,11 +33059,104913801,Queens,Long Island City,40.75654,-73.94232,Private room,45,2,42,3.59,2,54 +33060,65775049,Brooklyn,Clinton Hill,40.688340000000004,-73.96269000000001,Entire home/apt,150,3,1,0.09,2,255 +33061,20912691,Queens,Jamaica,40.70908,-73.78237,Private room,66,2,17,1.34,7,0 +33062,196017028,Manhattan,Greenwich Village,40.72848,-74.0012,Entire home/apt,200,4,18,1.42,1,5 +33063,196017211,Brooklyn,Bay Ridge,40.63554,-74.02421,Private room,35,28,7,0.55,1,264 +33064,12810839,Manhattan,West Village,40.73157,-74.00480999999999,Private room,90,2,1,0.08,2,0 +33065,5748117,Brooklyn,Bedford-Stuyvesant,40.678000000000004,-73.93974,Private room,75,1,25,1.93,1,170 +33066,12672756,Manhattan,Chinatown,40.7165,-73.99107,Private room,90,2,42,3.26,1,99 +33067,23718772,Brooklyn,Crown Heights,40.67415,-73.96291,Entire home/apt,139,2,2,0.7,1,12 +33068,54970203,Manhattan,Harlem,40.80372,-73.95266,Private room,82,2,33,2.75,1,2 +33069,50814751,Manhattan,Inwood,40.86833,-73.92291,Entire home/apt,85,18,2,0.21,1,16 +33070,27530449,Brooklyn,Greenpoint,40.72173,-73.9482,Private room,106,4,21,1.73,2,58 +33071,196059058,Brooklyn,Williamsburg,40.70984,-73.95979,Entire home/apt,100,7,3,0.3,1,44 +33072,182272609,Staten Island,Tompkinsville,40.63277,-74.09562,Entire home/apt,106,3,10,0.86,2,87 +33073,37001535,Brooklyn,Fort Greene,40.69223,-73.98165,Entire home/apt,130,3,1,0.18,1,0 +33074,152708570,Queens,College Point,40.78141,-73.84506,Entire home/apt,60,3,30,2.49,1,55 +33075,64626614,Brooklyn,Crown Heights,40.66757,-73.92981,Entire home/apt,200,2,36,2.8,1,321 +33076,2797280,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95345,Entire home/apt,200,1,26,2.39,1,69 +33077,60908748,Brooklyn,Bushwick,40.7007,-73.921,Private room,100,1,5,1.0,2,145 +33078,93752700,Brooklyn,Flatbush,40.63573,-73.96433,Entire home/apt,745,4,1,0.16,1,28 +33079,99349134,Manhattan,Upper East Side,40.77816,-73.9541,Private room,95,1,44,3.45,2,98 +33080,3185760,Manhattan,East Village,40.72906,-73.9845,Entire home/apt,85,14,14,1.32,1,16 +33081,41099363,Brooklyn,Fort Greene,40.68792,-73.97671,Private room,230,4,2,0.24,3,114 +33082,1855509,Brooklyn,Park Slope,40.675470000000004,-73.97361,Entire home/apt,89,5,92,7.26,1,193 +33083,15106211,Brooklyn,Gowanus,40.67965,-73.98899,Entire home/apt,150,5,2,0.17,1,16 +33084,6568666,Brooklyn,Clinton Hill,40.69003,-73.96865,Entire home/apt,274,2,0,,1,24 +33085,196171209,Brooklyn,Crown Heights,40.673159999999996,-73.95397,Entire home/apt,85,2,57,4.62,1,110 +33086,27966935,Brooklyn,Williamsburg,40.71033,-73.9647,Private room,100,28,20,1.62,1,309 +33087,196178201,Brooklyn,Carroll Gardens,40.67895,-73.99529,Entire home/apt,225,6,1,0.09,1,0 +33088,56198002,Brooklyn,Flatbush,40.652390000000004,-73.96417,Private room,75,2,14,1.12,1,17 +33089,99268393,Queens,Long Island City,40.74436,-73.95205,Entire home/apt,175,2,42,3.77,1,238 +33090,11121151,Manhattan,Upper West Side,40.7958,-73.97163,Private room,69,2,0,,1,0 +33091,190921808,Manhattan,Hell's Kitchen,40.75587,-73.99724,Private room,65,7,5,0.53,47,356 +33092,4426065,Manhattan,Harlem,40.807990000000004,-73.94158,Entire home/apt,100,7,1,0.09,1,26 +33093,196274503,Queens,Bayswater,40.60606,-73.75492,Entire home/apt,120,1,23,1.81,1,189 +33094,175019394,Queens,Jamaica,40.67057,-73.77869,Private room,60,1,22,1.73,6,81 +33095,102410496,Queens,Richmond Hill,40.69608,-73.8286,Entire home/apt,249,2,15,1.28,2,360 +33096,196333700,Bronx,City Island,40.851040000000005,-73.78573,Entire home/apt,110,2,25,2.18,1,171 +33097,33592161,Brooklyn,Bushwick,40.69777,-73.92251999999999,Entire home/apt,95,3,5,0.39,1,0 +33098,195831980,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94791,Entire home/apt,170,1,27,2.13,1,137 +33099,171171143,Queens,East Elmhurst,40.7642,-73.86932,Entire home/apt,100,4,15,1.34,1,203 +33100,24545739,Brooklyn,Bedford-Stuyvesant,40.68824,-73.92376999999999,Private room,65,4,5,0.39,1,0 +33101,195656040,Manhattan,Midtown,40.749140000000004,-73.98779,Entire home/apt,350,7,0,,1,0 +33102,501343,Manhattan,Hell's Kitchen,40.76361,-73.98846999999999,Private room,155,2,3,0.24,2,0 +33103,4227314,Manhattan,East Village,40.72204,-73.98151,Private room,90,3,28,2.26,1,6 +33104,196373534,Brooklyn,Greenpoint,40.729209999999995,-73.95016,Private room,50,2,1,0.08,1,0 +33105,502897,Brooklyn,Greenpoint,40.727909999999994,-73.95689,Entire home/apt,150,5,1,0.08,1,0 +33106,673215,Manhattan,Harlem,40.822990000000004,-73.95461,Entire home/apt,200,5,0,,2,39 +33107,17444700,Manhattan,Morningside Heights,40.80724,-73.96677,Entire home/apt,250,7,4,0.37,1,4 +33108,4965751,Manhattan,Upper East Side,40.7713,-73.95568,Entire home/apt,189,4,8,0.65,1,7 +33109,840092,Brooklyn,Bedford-Stuyvesant,40.6834,-73.93648,Entire home/apt,119,2,46,3.85,1,81 +33110,179436298,Brooklyn,Crown Heights,40.663909999999994,-73.95618,Entire home/apt,112,2,3,0.29,2,364 +33111,6724903,Queens,Middle Village,40.71293,-73.88401999999999,Private room,70,2,20,1.82,1,224 +33112,107712560,Brooklyn,Bedford-Stuyvesant,40.67982,-73.945,Private room,41,1,15,1.17,1,0 +33113,196421197,Queens,East Elmhurst,40.75902,-73.87698,Private room,45,3,15,1.18,1,365 +33114,40323007,Manhattan,East Village,40.72852,-73.97986999999999,Entire home/apt,280,2,40,3.18,1,119 +33115,61391963,Manhattan,Murray Hill,40.74969,-73.9774,Entire home/apt,200,30,0,,91,311 +33116,61391963,Manhattan,Murray Hill,40.7512,-73.97738000000001,Entire home/apt,175,30,2,0.38,91,241 +33117,61391963,Manhattan,Hell's Kitchen,40.76234,-73.98947,Entire home/apt,199,30,1,0.1,91,0 +33118,190921808,Manhattan,Hell's Kitchen,40.75544,-73.99721,Private room,64,30,5,0.55,47,365 +33119,156948703,Queens,East Elmhurst,40.76956,-73.87347,Entire home/apt,99,1,94,7.32,6,333 +33120,20659309,Brooklyn,Williamsburg,40.70901,-73.95470999999999,Entire home/apt,168,2,5,0.39,1,0 +33121,195638506,Manhattan,East Village,40.72213,-73.98236,Entire home/apt,150,3,27,2.11,1,19 +33122,96664487,Brooklyn,Bushwick,40.68725,-73.91623,Entire home/apt,163,3,20,1.59,3,309 +33123,76237449,Queens,Jamaica,40.70647,-73.79794,Entire home/apt,52,30,0,,1,365 +33124,6171984,Queens,Woodside,40.747890000000005,-73.89752,Entire home/apt,156,1,2,0.16,1,0 +33125,196468460,Bronx,Unionport,40.82848,-73.85466,Entire home/apt,85,2,68,5.37,1,247 +33126,196476281,Bronx,Concourse,40.83193,-73.92223,Private room,40,1,29,2.47,2,360 +33127,1004883,Brooklyn,Bushwick,40.69107,-73.90604,Private room,60,4,5,0.45,2,364 +33128,196462256,Bronx,Wakefield,40.89374,-73.85579,Private room,60,2,10,0.85,1,365 +33129,20630497,Manhattan,Hell's Kitchen,40.764179999999996,-73.99448000000001,Private room,70,2,2,0.17,1,0 +33130,896708,Brooklyn,Carroll Gardens,40.68288,-73.99799,Private room,130,3,7,0.57,2,48 +33131,196088317,Manhattan,Upper East Side,40.76473,-73.95623,Private room,80,2,45,3.56,2,26 +33132,6213880,Manhattan,Lower East Side,40.72202,-73.98921999999999,Entire home/apt,145,2,16,1.55,1,2 +33133,18260424,Queens,Sunnyside,40.74304,-73.91699,Private room,73,1,1,0.09,1,0 +33134,43148410,Brooklyn,East New York,40.667609999999996,-73.88693,Private room,38,30,2,0.19,3,342 +33135,9787070,Brooklyn,Bedford-Stuyvesant,40.69462,-73.93249,Private room,60,4,0,,1,0 +33136,15838559,Queens,Forest Hills,40.713570000000004,-73.85138,Private room,59,60,4,0.33,4,0 +33137,18497228,Manhattan,Morningside Heights,40.80485,-73.96534,Private room,1200,60,0,,1,365 +33138,9864136,Brooklyn,Bushwick,40.686440000000005,-73.91554000000001,Private room,36,2,1,0.09,26,302 +33139,158215530,Bronx,Concourse,40.827529999999996,-73.92463000000001,Private room,200,1,0,,2,365 +33140,48618049,Brooklyn,Kensington,40.63278,-73.96891,Entire home/apt,90,4,0,,1,5 +33141,158215530,Bronx,Concourse,40.82714,-73.92528,Private room,200,1,0,,2,179 +33142,196549213,Manhattan,Hell's Kitchen,40.767179999999996,-73.98574,Private room,102,14,3,0.34,1,65 +33143,196557649,Queens,Bayswater,40.59762,-73.76719,Entire home/apt,230,1,3,0.33,2,310 +33144,14170288,Manhattan,Little Italy,40.71829,-73.9978,Entire home/apt,174,30,0,,1,89 +33145,7235975,Manhattan,West Village,40.730259999999994,-74.00392,Entire home/apt,200,2,2,0.16,1,2 +33146,196580929,Queens,Jackson Heights,40.75228,-73.88699,Private room,42,1,3,0.25,1,0 +33147,5213686,Brooklyn,Greenpoint,40.73442,-73.95854,Private room,70,5,2,0.16,1,0 +33148,166366283,Manhattan,Midtown,40.7511,-73.97103,Entire home/apt,170,7,2,0.2,1,64 +33149,102263916,Staten Island,Tompkinsville,40.63111,-74.09000999999999,Entire home/apt,99,1,37,4.25,2,172 +33150,26556695,Manhattan,Midtown,40.76031,-73.9739,Entire home/apt,750,1,9,0.71,6,365 +33151,2697373,Manhattan,Greenwich Village,40.7298,-73.99838000000001,Entire home/apt,289,3,6,0.52,1,0 +33152,4196156,Manhattan,Financial District,40.70512,-74.01097,Entire home/apt,200,1,1,1.0,1,16 +33153,10995888,Brooklyn,Brooklyn Heights,40.6901,-73.99247,Entire home/apt,208,5,5,0.51,1,9 +33154,8871034,Brooklyn,Williamsburg,40.71002,-73.96333,Entire home/apt,175,5,21,1.72,1,0 +33155,4410830,Brooklyn,Williamsburg,40.71162,-73.96431,Entire home/apt,225,4,4,0.38,1,50 +33156,17510243,Brooklyn,Crown Heights,40.66741,-73.92974,Entire home/apt,300,2,27,2.13,1,347 +33157,45062059,Brooklyn,Park Slope,40.67259,-73.98324000000001,Entire home/apt,130,2,15,2.02,1,174 +33158,196660011,Manhattan,Harlem,40.81863,-73.95770999999999,Entire home/apt,170,1,28,2.2,1,0 +33159,193889243,Queens,Far Rockaway,40.59458,-73.75839,Entire home/apt,275,3,0,,1,89 +33160,396599,Brooklyn,Bushwick,40.699659999999994,-73.92295,Private room,40,1,65,5.27,2,52 +33161,12501133,Manhattan,East Village,40.72814,-73.98295999999999,Entire home/apt,131,3,35,2.82,1,0 +33162,10448798,Brooklyn,Red Hook,40.67498,-74.01214,Private room,75,2,6,0.5,1,0 +33163,5161217,Manhattan,SoHo,40.723620000000004,-74.0053,Entire home/apt,425,4,2,0.2,1,1 +33164,31230100,Brooklyn,Crown Heights,40.67304,-73.95615,Private room,100,7,3,0.29,3,161 +33165,42110861,Manhattan,East Village,40.7299,-73.98824,Entire home/apt,250,2,72,5.82,1,96 +33166,190981544,Brooklyn,Bedford-Stuyvesant,40.68643,-73.93007,Private room,40,1,148,11.68,6,174 +33167,89769986,Brooklyn,Bedford-Stuyvesant,40.69144,-73.93493000000001,Private room,120,30,0,,4,0 +33168,196088317,Manhattan,Upper East Side,40.76505,-73.95824,Private room,85,10,54,4.34,2,2 +33169,21146326,Manhattan,Chinatown,40.71826,-73.99671,Entire home/apt,156,2,9,0.74,2,1 +33170,7918430,Manhattan,Harlem,40.80715,-73.95300999999999,Private room,112,2,31,2.59,2,340 +33171,99658452,Manhattan,Midtown,40.76039,-73.96504,Entire home/apt,139,30,1,0.09,1,0 +33172,52526057,Manhattan,East Harlem,40.7898,-73.94853,Entire home/apt,169,5,45,3.56,1,150 +33173,20480059,Brooklyn,Fort Greene,40.69358,-73.97065,Private room,75,3,4,0.32,3,0 +33174,196701166,Queens,Rosedale,40.65376,-73.74056999999999,Private room,70,7,1,0.08,1,0 +33175,45251482,Brooklyn,Bedford-Stuyvesant,40.69222,-73.93171,Entire home/apt,300,5,5,0.39,1,280 +33176,82359141,Brooklyn,Park Slope,40.66747,-73.97473000000001,Private room,75,5,1,0.08,1,189 +33177,385367,Brooklyn,Williamsburg,40.71758,-73.95153,Entire home/apt,595,3,5,0.43,1,13 +33178,27474188,Manhattan,Upper West Side,40.79827,-73.97231,Private room,90,2,6,0.48,3,0 +33179,168244985,Queens,Astoria,40.76879,-73.92666,Entire home/apt,99,3,1,0.08,1,0 +33180,145238884,Brooklyn,Crown Heights,40.67387,-73.91306,Entire home/apt,120,2,13,1.23,1,52 +33181,13414796,Brooklyn,Williamsburg,40.71578,-73.95389,Entire home/apt,185,3,10,1.12,1,0 +33182,196838948,Queens,Kew Gardens Hills,40.72079,-73.82263,Entire home/apt,160,3,0,,1,0 +33183,144119993,Bronx,Belmont,40.85609,-73.88391,Private room,30,1,9,0.71,2,0 +33184,27474188,Manhattan,Upper West Side,40.7975,-73.97099,Private room,74,2,2,0.16,3,0 +33185,27474188,Manhattan,Upper West Side,40.79838,-73.97076,Private room,240,5,0,,3,0 +33186,149328348,Manhattan,Financial District,40.70563,-74.01106,Entire home/apt,131,30,2,0.23,1,0 +33187,19665329,Brooklyn,Williamsburg,40.71045,-73.9441,Private room,40,5,3,0.27,1,0 +33188,70011812,Manhattan,East Village,40.725640000000006,-73.98616,Entire home/apt,125,2,41,3.32,2,48 +33189,108286255,Manhattan,Harlem,40.81264,-73.94230999999999,Private room,60,1,3,0.46,1,0 +33190,66196101,Brooklyn,Bay Ridge,40.629909999999995,-74.02458,Entire home/apt,95,2,6,0.48,1,0 +33191,2258341,Manhattan,Hell's Kitchen,40.76113,-73.99185,Private room,155,10,9,0.8,1,103 +33192,59982224,Brooklyn,East New York,40.67503,-73.87357,Private room,120,2,22,1.77,4,40 +33193,64825520,Brooklyn,Fort Hamilton,40.617979999999996,-74.03619,Entire home/apt,200,2,8,0.63,1,177 +33194,2155917,Brooklyn,Bedford-Stuyvesant,40.68716,-73.94601,Entire home/apt,250,30,0,,3,196 +33195,2773082,Brooklyn,Williamsburg,40.71595,-73.96001,Private room,95,3,7,1.11,1,6 +33196,196872053,Brooklyn,Brighton Beach,40.57573,-73.96051,Private room,38,3,16,1.38,2,175 +33197,12243051,Manhattan,Murray Hill,40.74419,-73.97185999999999,Entire home/apt,187,29,1,0.79,96,335 +33198,196900738,Manhattan,Upper West Side,40.79801,-73.97403,Entire home/apt,400,1,0,,1,0 +33199,196903663,Queens,Arverne,40.59633,-73.80083,Entire home/apt,50,2,58,4.59,1,349 +33200,16480700,Manhattan,Upper East Side,40.764509999999994,-73.96744,Entire home/apt,249,1,37,3.04,7,352 +33201,5726293,Queens,Woodside,40.74382,-73.90879,Private room,60,1,19,1.52,2,34 +33202,102410496,Queens,Richmond Hill,40.6964,-73.82836999999999,Entire home/apt,215,2,2,0.16,2,360 +33203,97262966,Queens,Forest Hills,40.71325,-73.85415,Entire home/apt,89,3,5,0.45,2,1 +33204,63600861,Manhattan,Harlem,40.80036,-73.95433,Private room,90,3,50,4.07,1,7 +33205,1260391,Brooklyn,Brownsville,40.66837,-73.92454000000001,Entire home/apt,165,4,9,1.17,1,21 +33206,183603765,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94964,Entire home/apt,108,2,26,2.26,1,315 +33207,104124704,Brooklyn,Crown Heights,40.66733,-73.9535,Private room,55,1,11,0.92,1,0 +33208,196961556,Manhattan,Gramercy,40.73338,-73.98315,Entire home/apt,499,4,41,3.31,1,10 +33209,178543960,Brooklyn,Greenpoint,40.71997,-73.94021,Shared room,35,30,0,,10,343 +33210,178543960,Brooklyn,Greenpoint,40.72157,-73.94001999999999,Shared room,35,30,1,0.09,10,364 +33211,39805148,Queens,Jamaica,40.68727,-73.77858,Private room,75,1,5,0.47,2,281 +33212,2747221,Manhattan,Upper East Side,40.76321,-73.9583,Entire home/apt,99,3,10,0.86,1,7 +33213,62701284,Queens,Long Island City,40.7452,-73.9535,Entire home/apt,155,2,43,3.6,1,239 +33214,153018041,Queens,Flushing,40.75651,-73.80455,Private room,50,1,17,1.34,2,0 +33215,191901037,Brooklyn,Sheepshead Bay,40.58338,-73.93961,Private room,75,10,2,0.2,2,146 +33216,55978113,Staten Island,Stapleton,40.63701,-74.07624,Private room,50,1,21,1.81,2,363 +33217,53621,Brooklyn,Bedford-Stuyvesant,40.69231,-73.93781,Entire home/apt,220,2,23,2.19,2,270 +33218,156255637,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94726999999999,Private room,90,1,32,3.06,1,36 +33219,26596078,Brooklyn,Bay Ridge,40.628040000000006,-74.02603,Entire home/apt,75,7,11,0.91,1,3 +33220,80292073,Brooklyn,South Slope,40.66323,-73.98138,Private room,60,5,7,0.59,2,56 +33221,150482926,Manhattan,Harlem,40.80898,-73.94591,Entire home/apt,295,5,3,0.27,1,0 +33222,28071093,Manhattan,Upper West Side,40.79973,-73.9656,Private room,60,2,5,0.45,1,0 +33223,46592613,Queens,Astoria,40.76945,-73.92485,Entire home/apt,100,5,5,0.57,1,0 +33224,10371008,Manhattan,Upper East Side,40.764359999999996,-73.95671999999999,Shared room,75,4,10,1.15,2,329 +33225,197169969,Queens,Jamaica,40.68939,-73.79885999999999,Entire home/apt,10,2,22,1.76,1,332 +33226,1692538,Manhattan,Washington Heights,40.85392,-73.93139000000001,Private room,58,1,20,2.01,5,315 +33227,6141162,Queens,Woodside,40.742,-73.89505,Entire home/apt,60,14,3,0.3,1,4 +33228,38969811,Manhattan,Upper East Side,40.78135,-73.95194000000001,Private room,100,6,0,,1,0 +33229,22129776,Manhattan,Hell's Kitchen,40.76502,-73.98839,Entire home/apt,369,1,2,0.22,3,365 +33230,190921808,Manhattan,Hell's Kitchen,40.75418,-73.99644,Private room,150,7,12,0.95,47,354 +33231,22577148,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9343,Private room,63,3,27,2.26,7,225 +33232,197053492,Manhattan,Financial District,40.70722,-74.00873,Entire home/apt,219,1,36,2.83,8,321 +33233,102228163,Brooklyn,Carroll Gardens,40.676829999999995,-74.00056,Entire home/apt,90,7,3,0.25,3,0 +33234,9962257,Brooklyn,Greenpoint,40.7287,-73.95607,Entire home/apt,171,2,19,1.51,1,81 +33235,48260592,Brooklyn,Bushwick,40.699220000000004,-73.93762,Private room,40,4,0,,1,0 +33236,71742050,Brooklyn,Bushwick,40.70057,-73.91414,Private room,35,3,0,,1,3 +33237,197053492,Manhattan,Financial District,40.70747,-74.00663,Entire home/apt,309,1,15,1.18,8,143 +33238,17673366,Brooklyn,Bedford-Stuyvesant,40.69397,-73.93124,Private room,60,1,1,0.11,1,0 +33239,28171999,Manhattan,Chelsea,40.74561,-74.00205,Entire home/apt,250,3,0,,1,10 +33240,197053492,Manhattan,Financial District,40.7057,-74.00819,Entire home/apt,650,1,7,0.76,8,315 +33241,197190247,Manhattan,Hell's Kitchen,40.76389,-73.9871,Shared room,80,1,60,4.76,7,225 +33242,157295347,Queens,Woodside,40.74474,-73.90531,Private room,50,1,10,1.09,3,328 +33243,140599227,Queens,Forest Hills,40.731559999999995,-73.8523,Private room,30,1,1,0.11,2,363 +33244,506007,Brooklyn,Kensington,40.64692,-73.97706,Entire home/apt,90,3,6,0.5,1,30 +33245,145072632,Manhattan,Hell's Kitchen,40.75973,-73.98815,Shared room,65,2,13,1.34,2,5 +33246,187872824,Manhattan,Upper West Side,40.7989,-73.96042,Private room,150,1,0,,2,365 +33247,7132948,Queens,Astoria,40.76433,-73.92192,Entire home/apt,110,2,2,0.16,1,6 +33248,2989773,Brooklyn,Bedford-Stuyvesant,40.68697,-73.95141,Private room,95,3,2,0.17,1,38 +33249,157295347,Queens,Woodside,40.74445,-73.90581,Private room,32,2,16,1.28,3,365 +33250,191338162,Bronx,Allerton,40.8616,-73.86227,Entire home/apt,142,2,31,2.5,5,312 +33251,64097192,Manhattan,Upper East Side,40.77055,-73.95509,Entire home/apt,150,2,28,2.25,1,0 +33252,9478555,Brooklyn,Crown Heights,40.679109999999994,-73.96011999999999,Private room,35,2,2,0.16,1,0 +33253,192750134,Queens,Long Island City,40.75233,-73.9394,Private room,55,1,23,1.85,1,263 +33254,197355864,Brooklyn,Park Slope,40.6735,-73.97606,Private room,50,31,0,,1,340 +33255,124693842,Brooklyn,Bushwick,40.69788,-73.922,Entire home/apt,140,5,3,0.25,1,0 +33256,42993277,Manhattan,Midtown,40.75016,-73.96925,Entire home/apt,175,3,5,0.51,1,230 +33257,171092619,Brooklyn,Williamsburg,40.7079,-73.94896,Private room,59,13,0,,1,0 +33258,186110692,Brooklyn,Bushwick,40.69014,-73.91908000000001,Private room,39,1,20,1.63,1,14 +33259,87757867,Brooklyn,Cobble Hill,40.68581,-73.99586,Private room,80,7,57,4.49,2,285 +33260,22090713,Manhattan,Washington Heights,40.85068,-73.9372,Entire home/apt,65,2,4,0.98,1,0 +33261,6402171,Staten Island,Rossville,40.5479,-74.21016999999999,Entire home/apt,75,3,21,1.69,1,59 +33262,5314938,Brooklyn,Williamsburg,40.70937,-73.94113,Private room,94,2,18,1.48,1,0 +33263,191276498,Manhattan,Little Italy,40.71778,-73.99801,Private room,91,3,35,2.84,1,0 +33264,154258141,Brooklyn,Bushwick,40.68885,-73.91487,Private room,60,2,8,0.74,10,356 +33265,28186801,Brooklyn,Williamsburg,40.71882,-73.94943,Entire home/apt,260,2,1,0.08,1,0 +33266,119156699,Queens,Briarwood,40.71309,-73.8155,Shared room,73,1,2,0.21,1,90 +33267,197487133,Brooklyn,Windsor Terrace,40.650529999999996,-73.97438000000001,Entire home/apt,225,7,1,0.11,1,168 +33268,137358866,Queens,Sunnyside,40.735,-73.92038000000001,Private room,34,30,2,0.18,103,251 +33269,197354631,Brooklyn,Williamsburg,40.71471,-73.94173,Private room,67,30,3,0.28,3,19 +33270,197294267,Manhattan,Upper East Side,40.760709999999996,-73.96061999999999,Entire home/apt,170,3,2,0.17,1,0 +33271,19562,Brooklyn,Crown Heights,40.68054,-73.96278000000001,Entire home/apt,190,2,1,0.09,1,0 +33272,118763899,Manhattan,Harlem,40.81889,-73.94269,Private room,40,21,0,,1,67 +33273,161617875,Manhattan,Washington Heights,40.85221,-73.93916,Private room,97,2,0,,2,0 +33274,197516314,Staten Island,Port Richmond,40.63428,-74.13339,Private room,50,1,16,1.53,3,365 +33275,145536848,Staten Island,Concord,40.60307,-74.08440999999999,Entire home/apt,100,1,25,5.64,1,72 +33276,22737802,Queens,Rego Park,40.731429999999996,-73.85674,Shared room,65,3,8,0.71,1,161 +33277,143719035,Manhattan,Upper East Side,40.767759999999996,-73.95214,Entire home/apt,220,3,3,0.26,1,0 +33278,187960424,Manhattan,Upper West Side,40.78968,-73.97169,Entire home/apt,250,3,1,0.09,1,0 +33279,17084566,Brooklyn,Flatbush,40.6303,-73.96179000000001,Entire home/apt,120,60,13,1.11,1,0 +33280,42624482,Manhattan,Midtown,40.74897,-73.98642,Private room,120,3,2,0.32,1,0 +33281,39872420,Manhattan,Inwood,40.86347,-73.92286999999999,Private room,50,1,1,0.08,1,0 +33282,22463377,Manhattan,Murray Hill,40.74953,-73.9801,Private room,120,1,16,1.29,3,9 +33283,30613046,Brooklyn,Park Slope,40.68176,-73.97891,Private room,66,3,2,1.03,2,87 +33284,197579052,Manhattan,East Harlem,40.797779999999996,-73.93921,Private room,80,1,60,4.76,2,0 +33285,55978113,Staten Island,Stapleton,40.63705,-74.07722,Private room,80,1,4,0.34,2,29 +33286,197579052,Manhattan,East Harlem,40.79657,-73.93913,Private room,80,1,49,3.89,2,110 +33287,197584424,Brooklyn,Bushwick,40.698209999999996,-73.91559000000001,Private room,45,5,1,0.08,1,0 +33288,131392140,Queens,Long Island City,40.75694,-73.9308,Entire home/apt,129,2,21,1.73,5,90 +33289,197675041,Manhattan,Midtown,40.7424,-73.9837,Entire home/apt,220,3,0,,1,28 +33290,43297299,Manhattan,West Village,40.738859999999995,-74.00413,Entire home/apt,200,3,6,0.94,1,0 +33291,22899202,Brooklyn,Bedford-Stuyvesant,40.68808,-73.92264,Private room,55,1,31,2.82,2,225 +33292,195041901,Brooklyn,Bedford-Stuyvesant,40.68546,-73.94574,Private room,40,14,3,0.26,3,256 +33293,197516314,Staten Island,Port Richmond,40.63408,-74.13224,Private room,55,1,40,3.21,3,363 +33294,96712147,Manhattan,Financial District,40.70494,-74.00806,Private room,150,3,3,0.24,2,0 +33295,57456594,Brooklyn,Crown Heights,40.67713,-73.95219,Private room,75,2,18,1.44,1,242 +33296,1409262,Brooklyn,Flatbush,40.64245,-73.95215999999999,Entire home/apt,75,2,42,3.73,6,87 +33297,158338077,Brooklyn,Kensington,40.63743,-73.97229,Private room,67,1,10,0.83,2,365 +33298,197740847,Brooklyn,Crown Heights,40.67989,-73.96212,Entire home/apt,250,3,30,2.56,1,114 +33299,197736479,Brooklyn,Cypress Hills,40.67877,-73.89228,Entire home/apt,125,2,22,1.88,1,282 +33300,39305771,Manhattan,Washington Heights,40.849109999999996,-73.93097,Private room,59,2,5,0.44,1,216 +33301,32543699,Brooklyn,Williamsburg,40.71563,-73.95666999999999,Entire home/apt,165,4,3,0.24,2,0 +33302,20126746,Brooklyn,Greenpoint,40.72724,-73.95401,Entire home/apt,195,3,11,0.95,1,0 +33303,7217937,Manhattan,Inwood,40.86764,-73.9259,Private room,50,2,17,1.54,2,243 +33304,197794017,Bronx,Bronxdale,40.85456,-73.86921,Entire home/apt,79,2,36,3.33,1,10 +33305,32543699,Brooklyn,Williamsburg,40.713390000000004,-73.95566,Private room,98,2,2,0.17,2,0 +33306,178543960,Brooklyn,Greenpoint,40.72166,-73.9399,Shared room,36,30,0,,10,311 +33307,178543960,Brooklyn,Greenpoint,40.72177,-73.94166,Shared room,37,30,3,0.26,10,312 +33308,24013611,Manhattan,Upper West Side,40.77511,-73.99005,Entire home/apt,295,2,26,2.17,1,2 +33309,195965905,Brooklyn,Bushwick,40.70009,-73.94015,Private room,75,6,2,0.22,1,36 +33310,3274004,Manhattan,Upper West Side,40.783429999999996,-73.9823,Entire home/apt,265,2,5,0.49,1,5 +33311,69977115,Brooklyn,Bensonhurst,40.615590000000005,-73.99027,Private room,79,2,0,,4,89 +33312,118619861,Brooklyn,Prospect Heights,40.67953,-73.97303000000001,Entire home/apt,449,3,33,2.82,1,329 +33313,159498011,Manhattan,Midtown,40.7657,-73.98075,Entire home/apt,400,2,5,0.43,1,0 +33314,27600568,Brooklyn,Cobble Hill,40.68537,-73.99861,Entire home/apt,195,2,55,5.32,1,30 +33315,197957799,Brooklyn,East Flatbush,40.65035,-73.94895,Private room,59,2,22,3.59,1,107 +33316,167568754,Queens,Middle Village,40.710640000000005,-73.87463000000001,Entire home/apt,100,1,4,0.34,1,0 +33317,47718147,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94327,Entire home/apt,100,1,30,2.5,1,176 +33318,128731102,Manhattan,East Harlem,40.79486,-73.94038,Private room,80,5,15,1.23,1,0 +33319,162138028,Manhattan,Hell's Kitchen,40.759159999999994,-73.99148000000001,Shared room,96,10,1,0.11,1,179 +33320,155152907,Queens,St. Albans,40.70479,-73.76357,Private room,45,2,31,2.8,2,266 +33321,1290628,Bronx,City Island,40.84879,-73.78987,Entire home/apt,125,2,23,1.89,1,155 +33322,25107874,Manhattan,Financial District,40.70989,-74.00813000000001,Private room,85,3,4,0.33,1,72 +33323,198018391,Manhattan,Harlem,40.82235,-73.94846,Entire home/apt,250,2,27,2.26,2,180 +33324,32060911,Staten Island,West Brighton,40.63402,-74.11375,Private room,40,33,1,1.0,2,337 +33325,195041901,Brooklyn,Bedford-Stuyvesant,40.6858,-73.94654,Private room,43,30,0,,3,312 +33326,198030672,Brooklyn,Bay Ridge,40.63562,-74.0318,Private room,55,1,4,0.35,1,156 +33327,198033559,Brooklyn,Clinton Hill,40.6902,-73.9669,Private room,150,2,5,1.4,1,174 +33328,4694251,Brooklyn,Park Slope,40.674690000000005,-73.98368,Entire home/apt,229,2,55,4.41,1,215 +33329,197334240,Manhattan,Harlem,40.8131,-73.94459,Private room,67,1,73,5.82,2,193 +33330,197334240,Manhattan,Harlem,40.81493,-73.94403,Private room,69,1,67,5.39,2,170 +33331,36012265,Brooklyn,Williamsburg,40.70456,-73.9314,Private room,51,1,12,1.14,7,352 +33332,65884218,Brooklyn,Sunset Park,40.66264,-73.99174000000001,Entire home/apt,275,4,5,0.46,1,12 +33333,11080981,Brooklyn,Williamsburg,40.71682,-73.95107,Private room,200,1,0,,1,0 +33334,36644104,Manhattan,Midtown,40.75786,-73.96679,Entire home/apt,200,7,8,0.76,1,0 +33335,16485294,Manhattan,Upper East Side,40.78351,-73.94709,Private room,75,1,6,0.66,1,0 +33336,6032380,Brooklyn,East Flatbush,40.633140000000004,-73.94537,Entire home/apt,80,2,22,1.77,1,0 +33337,198082137,Manhattan,Midtown,40.74431,-73.98196,Entire home/apt,350,5,36,2.87,1,124 +33338,140039953,Brooklyn,Bergen Beach,40.62402,-73.91681,Entire home/apt,85,3,31,2.95,1,122 +33339,23272375,Brooklyn,Bushwick,40.69825,-73.93725,Private room,46,7,3,0.25,1,0 +33340,198018391,Manhattan,Harlem,40.82154,-73.94925,Entire home/apt,135,2,23,1.92,2,328 +33341,2594243,Brooklyn,Fort Greene,40.686640000000004,-73.97683,Entire home/apt,200,5,2,0.19,2,0 +33342,20884180,Brooklyn,Bedford-Stuyvesant,40.69474,-73.95498,Entire home/apt,125,10,2,0.18,1,24 +33343,89766221,Queens,Flushing,40.75548,-73.83041999999999,Private room,190,2,0,,2,362 +33344,129168532,Manhattan,Harlem,40.820809999999994,-73.95474,Private room,58,1,5,0.4,1,0 +33345,39456887,Brooklyn,Williamsburg,40.71239,-73.96775,Entire home/apt,150,10,1,0.09,1,0 +33346,4292600,Brooklyn,Fort Greene,40.68803,-73.9733,Entire home/apt,120,3,9,0.75,1,0 +33347,139879568,Queens,Long Island City,40.76648,-73.94098000000001,Private room,90,1,30,2.58,6,365 +33348,115424426,Queens,Elmhurst,40.73885,-73.87676,Private room,74,1,11,0.93,1,0 +33349,27355064,Brooklyn,Crown Heights,40.67508,-73.91788000000001,Private room,99,1,19,1.61,1,153 +33350,81127692,Brooklyn,Flatbush,40.64613,-73.95354,Private room,53,2,45,3.69,2,294 +33351,190921808,Manhattan,Hell's Kitchen,40.75505,-73.99531,Private room,120,7,6,0.5,47,332 +33352,198193838,Brooklyn,Greenpoint,40.724779999999996,-73.9383,Entire home/apt,250,2,6,0.53,1,49 +33353,198195140,Queens,Long Island City,40.74753,-73.93918000000001,Shared room,30,1,15,4.74,2,5 +33354,46370836,Brooklyn,Williamsburg,40.7197,-73.95745,Entire home/apt,209,3,3,0.24,1,0 +33355,1828429,Brooklyn,Greenpoint,40.72756,-73.95628,Entire home/apt,140,3,1,0.67,1,36 +33356,190921808,Manhattan,Hell's Kitchen,40.7551,-73.99556,Private room,99,7,8,0.73,47,362 +33357,45094825,Brooklyn,Prospect-Lefferts Gardens,40.662420000000004,-73.95607,Private room,50,1,0,,1,0 +33358,120762452,Manhattan,Murray Hill,40.7503,-73.97605,Entire home/apt,200,30,0,,50,365 +33359,44927221,Manhattan,Upper East Side,40.7861,-73.95434,Private room,80,1,57,4.63,1,0 +33360,120762452,Manhattan,Murray Hill,40.748909999999995,-73.97719000000001,Entire home/apt,200,30,1,0.64,50,352 +33361,117086989,Manhattan,SoHo,40.72292,-74.00456,Entire home/apt,300,1,0,,1,0 +33362,198084744,Queens,Ditmars Steinway,40.77685,-73.90824,Private room,50,2,58,4.69,1,13 +33363,19961365,Manhattan,East Harlem,40.78875,-73.9476,Private room,85,1,39,3.28,1,78 +33364,9630989,Brooklyn,Bushwick,40.69934,-73.92265,Private room,50,3,20,1.63,2,0 +33365,10763733,Brooklyn,Crown Heights,40.67499,-73.95729,Entire home/apt,84,2,16,1.33,1,0 +33366,190854592,Queens,Ditmars Steinway,40.771879999999996,-73.91157,Private room,79,6,6,0.65,1,365 +33367,3282282,Manhattan,Lower East Side,40.72119,-73.98339,Entire home/apt,79,2,32,2.67,1,3 +33368,21184527,Brooklyn,Prospect-Lefferts Gardens,40.65529,-73.95971,Entire home/apt,130,1,16,1.32,1,0 +33369,844253,Manhattan,Upper West Side,40.7786,-73.97578,Entire home/apt,350,7,1,0.09,1,292 +33370,123648417,Brooklyn,Flatbush,40.65401,-73.96212,Entire home/apt,125,1,22,1.8,1,93 +33371,174197082,Queens,Rosedale,40.65695,-73.73617,Entire home/apt,80,1,106,8.69,2,300 +33372,8686752,Manhattan,Harlem,40.81857,-73.9402,Entire home/apt,100,2,18,1.45,1,0 +33373,18197365,Brooklyn,Williamsburg,40.71111,-73.94736,Private room,70,3,11,0.88,1,9 +33374,37072476,Brooklyn,Bushwick,40.69952,-73.92623,Private room,60,7,0,,1,0 +33375,109040481,Manhattan,Hell's Kitchen,40.75825,-73.98982,Private room,125,1,54,4.34,1,341 +33376,91498269,Brooklyn,Williamsburg,40.7155,-73.95724,Shared room,100,1,31,2.81,1,82 +33377,4806931,Manhattan,SoHo,40.72182,-74.00255,Entire home/apt,450,2,1,0.86,1,360 +33378,52529356,Manhattan,Midtown,40.74843,-73.98259,Entire home/apt,150,2,2,0.17,1,0 +33379,74145986,Brooklyn,Brooklyn Heights,40.69177,-73.99388,Private room,89,1,44,5.28,1,73 +33380,198340695,Manhattan,East Harlem,40.78978,-73.94138000000001,Entire home/apt,90,5,0,,1,0 +33381,53179388,Manhattan,Upper East Side,40.75954,-73.96021999999999,Entire home/apt,250,30,0,,10,89 +33382,19393471,Brooklyn,Sunset Park,40.66073,-73.98983,Entire home/apt,265,3,23,1.95,1,365 +33383,18252465,Manhattan,Lower East Side,40.71452,-73.98201,Entire home/apt,225,4,2,0.29,1,0 +33384,6088893,Manhattan,Harlem,40.819320000000005,-73.95765,Private room,55,3,4,0.36,1,21 +33385,190921808,Manhattan,Hell's Kitchen,40.75577,-73.99687,Private room,120,30,3,0.26,47,288 +33386,6308220,Brooklyn,South Slope,40.66154,-73.98283,Entire home/apt,210,2,35,3.11,1,190 +33387,58071546,Manhattan,Midtown,40.761509999999994,-73.97894000000001,Entire home/apt,599,2,3,0.24,1,0 +33388,72299995,Brooklyn,Flatbush,40.65195,-73.95645,Private room,65,1,7,0.59,1,0 +33389,129559316,Brooklyn,Greenpoint,40.72225,-73.94328,Private room,115,1,6,0.49,1,0 +33390,86892036,Brooklyn,Bushwick,40.701029999999996,-73.91901,Private room,50,2,5,0.41,2,0 +33391,151291713,Manhattan,Washington Heights,40.84918,-73.93775,Private room,70,1,31,2.53,2,4 +33392,24378438,Manhattan,Harlem,40.807179999999995,-73.94906999999999,Entire home/apt,80,2,3,0.38,1,1 +33393,37274021,Brooklyn,Bedford-Stuyvesant,40.68497,-73.9543,Private room,110,3,38,3.25,1,101 +33394,12302238,Brooklyn,Bedford-Stuyvesant,40.68812,-73.92353,Private room,115,3,2,0.17,1,0 +33395,424656,Brooklyn,Williamsburg,40.7164,-73.95438,Entire home/apt,259,7,0,,1,0 +33396,119669058,Brooklyn,Bedford-Stuyvesant,40.69405,-73.95591999999999,Shared room,38,1,12,1.0,34,360 +33397,7090327,Brooklyn,DUMBO,40.70328,-73.9899,Private room,150,1,1,0.08,1,0 +33398,75479380,Queens,Long Island City,40.75192,-73.94074,Entire home/apt,125,2,6,0.7,1,0 +33399,68074387,Manhattan,Harlem,40.811859999999996,-73.93921999999999,Private room,125,3,6,0.52,1,0 +33400,47475970,Manhattan,Midtown,40.75468,-73.96563,Entire home/apt,180,4,11,0.93,1,1 +33401,2180581,Brooklyn,South Slope,40.6652,-73.98191,Private room,99,5,4,0.35,2,0 +33402,135585700,Brooklyn,Bedford-Stuyvesant,40.690690000000004,-73.92651,Entire home/apt,125,2,13,1.26,1,1 +33403,198478845,Brooklyn,Clinton Hill,40.68697,-73.96063000000001,Private room,59,3,10,0.87,2,150 +33404,198482796,Manhattan,Upper East Side,40.780229999999996,-73.95069000000001,Shared room,110,7,15,3.46,1,4 +33405,6323006,Brooklyn,East Flatbush,40.63863,-73.93826,Entire home/apt,300,5,2,0.81,1,174 +33406,20237617,Brooklyn,Williamsburg,40.714459999999995,-73.95992,Private room,50,1,4,0.33,1,0 +33407,45448756,Manhattan,East Village,40.72777,-73.98568,Private room,99,6,5,0.43,1,11 +33408,4492236,Brooklyn,Bushwick,40.69585,-73.93094,Private room,70,7,0,,2,0 +33409,20912691,Queens,Hollis,40.711040000000004,-73.78175,Entire home/apt,150,2,17,1.5,7,10 +33410,100565897,Brooklyn,Sheepshead Bay,40.60369,-73.94511,Private room,36,7,8,0.71,2,81 +33411,10747093,Manhattan,Harlem,40.8072,-73.94313000000001,Private room,149,2,13,1.42,1,185 +33412,36012265,Brooklyn,Williamsburg,40.705220000000004,-73.93075,Private room,51,1,10,0.84,7,310 +33413,16118005,Brooklyn,Williamsburg,40.70831,-73.96191999999999,Private room,70,1,11,0.89,1,0 +33414,36012265,Brooklyn,Williamsburg,40.7052,-73.93016999999999,Private room,49,1,6,0.53,7,343 +33415,209300,Brooklyn,Fort Greene,40.68731,-73.9751,Private room,85,1,8,0.66,2,0 +33416,190921808,Manhattan,Hell's Kitchen,40.75561,-73.99543,Private room,55,30,3,0.92,47,345 +33417,190921808,Manhattan,Hell's Kitchen,40.75564,-73.99564000000001,Private room,65,7,9,1.15,47,326 +33418,152032831,Brooklyn,Bushwick,40.6897,-73.921,Private room,99,1,4,0.32,1,0 +33419,119669058,Brooklyn,Bedford-Stuyvesant,40.69303,-73.95636,Shared room,38,1,17,1.39,34,365 +33420,145721354,Brooklyn,Prospect-Lefferts Gardens,40.65912,-73.94735,Entire home/apt,44,1,9,0.77,1,89 +33421,6722833,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92295,Entire home/apt,345,2,25,2.17,1,321 +33422,119669058,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95674,Shared room,38,3,14,1.14,34,365 +33423,66757117,Manhattan,Gramercy,40.73557,-73.98038000000001,Entire home/apt,150,3,1,0.08,1,0 +33424,119669058,Brooklyn,Bedford-Stuyvesant,40.69299,-73.95675,Shared room,38,1,21,1.77,34,365 +33425,22309598,Manhattan,Upper West Side,40.79392,-73.97288,Entire home/apt,119,2,12,1.13,1,5 +33426,198666761,Queens,Long Island City,40.75286,-73.93539,Entire home/apt,71,3,32,2.73,1,77 +33427,198674086,Manhattan,Upper West Side,40.7956,-73.96701999999999,Entire home/apt,200,15,1,0.14,1,365 +33428,34991003,Brooklyn,East Flatbush,40.64617,-73.92397,Private room,35,3,7,0.57,3,319 +33429,12243051,Manhattan,Murray Hill,40.744440000000004,-73.97355,Entire home/apt,185,29,0,,96,332 +33430,198691406,Manhattan,Flatiron District,40.740429999999996,-73.99277,Entire home/apt,1500,3,5,0.43,1,362 +33431,164345159,Manhattan,Upper East Side,40.76258,-73.96252,Private room,150,1,82,7.01,1,51 +33432,198478845,Brooklyn,Clinton Hill,40.6867,-73.9612,Private room,59,4,6,0.87,2,156 +33433,38714592,Queens,Ridgewood,40.70254,-73.90679,Private room,34,2,2,0.17,1,0 +33434,50361964,Brooklyn,Williamsburg,40.7108,-73.9618,Entire home/apt,225,1,3,0.33,1,0 +33435,59982224,Brooklyn,East New York,40.67502,-73.87276999999999,Private room,80,2,8,1.76,4,41 +33436,140096210,Manhattan,East Harlem,40.78866,-73.9507,Entire home/apt,250,1,0,,1,0 +33437,59982224,Brooklyn,East New York,40.67519,-73.87371999999999,Private room,50,2,6,0.68,4,1 +33438,104927746,Staten Island,Concord,40.59691,-74.087,Private room,30,4,26,2.14,7,359 +33439,137999892,Staten Island,Concord,40.605309999999996,-74.08893,Private room,30,4,16,1.3,7,334 +33440,19259107,Brooklyn,Windsor Terrace,40.64792,-73.97646999999999,Entire home/apt,110,5,0,,1,87 +33441,137999892,Staten Island,Concord,40.606970000000004,-74.08765,Private room,30,4,11,0.99,7,337 +33442,172369331,Brooklyn,Sheepshead Bay,40.5972,-73.95777,Shared room,40,5,12,1.07,10,301 +33443,16753104,Brooklyn,Downtown Brooklyn,40.69206,-73.98445,Entire home/apt,160,4,5,0.44,1,0 +33444,17224262,Brooklyn,Bedford-Stuyvesant,40.695570000000004,-73.94033,Entire home/apt,100,3,5,0.42,1,3 +33445,53046634,Manhattan,Hell's Kitchen,40.763220000000004,-73.99253,Entire home/apt,285,3,6,0.51,2,76 +33446,16865342,Brooklyn,Bushwick,40.705529999999996,-73.91938,Private room,53,2,29,2.46,2,143 +33447,190921808,Manhattan,Hell's Kitchen,40.753859999999996,-73.99562,Private room,55,7,6,0.73,47,357 +33448,182488531,Queens,Elmhurst,40.73753,-73.87054,Shared room,15,1,19,1.71,2,271 +33449,198835140,Manhattan,Hell's Kitchen,40.76129,-73.98859,Private room,90,2,55,4.61,1,49 +33450,6293227,Brooklyn,Bushwick,40.70148,-73.91834,Entire home/apt,90,3,9,0.74,1,0 +33451,198853982,Brooklyn,Cypress Hills,40.688159999999996,-73.87193,Entire home/apt,90,2,34,2.8,2,120 +33452,319488,Manhattan,Inwood,40.86755,-73.9287,Private room,125,2,21,1.82,1,141 +33453,244444,Brooklyn,Vinegar Hill,40.7023,-73.98394,Entire home/apt,159,14,0,,1,0 +33454,19813391,Queens,Long Island City,40.7456,-73.94366,Entire home/apt,180,1,7,0.61,2,0 +33455,198884450,Manhattan,East Village,40.72521,-73.98316,Entire home/apt,120,5,2,0.22,1,0 +33456,25545946,Queens,Ridgewood,40.70772,-73.9118,Private room,80,2,0,,1,88 +33457,97378432,Queens,Jamaica,40.6837,-73.79343,Private room,75,2,1,0.58,1,180 +33458,188393472,Brooklyn,Crown Heights,40.67664,-73.95172,Entire home/apt,210,1,0,,1,0 +33459,198890291,Queens,Woodside,40.74225,-73.90553,Entire home/apt,145,3,55,4.5,1,133 +33460,12243051,Manhattan,Murray Hill,40.744170000000004,-73.97206,Entire home/apt,189,29,0,,96,316 +33461,12243051,Manhattan,Financial District,40.70362,-74.00804000000001,Entire home/apt,190,29,0,,96,333 +33462,12243051,Manhattan,Financial District,40.705690000000004,-74.00929000000001,Entire home/apt,190,29,0,,96,284 +33463,12243051,Manhattan,Financial District,40.703759999999996,-74.00833,Entire home/apt,187,29,2,0.24,96,323 +33464,12243051,Manhattan,Financial District,40.705059999999996,-74.0079,Entire home/apt,185,29,1,0.11,96,220 +33465,12243051,Manhattan,Chelsea,40.74154,-73.99526999999999,Entire home/apt,250,29,0,,96,311 +33466,12243051,Manhattan,Murray Hill,40.7445,-73.97222,Entire home/apt,170,29,0,,96,324 +33467,198451327,Queens,Sunnyside,40.746109999999994,-73.91548,Entire home/apt,72,2,14,1.12,1,0 +33468,137358866,Queens,Jackson Heights,40.7488,-73.88045,Private room,39,30,1,0.3,103,186 +33469,198476726,Queens,Far Rockaway,40.60395,-73.74904000000001,Private room,55,1,27,2.21,1,177 +33470,158922261,Queens,Astoria,40.75523,-73.91297,Private room,59,2,30,2.54,3,132 +33471,137358866,Queens,Woodside,40.74033,-73.89341999999999,Private room,33,30,1,0.18,103,269 +33472,7970340,Manhattan,Stuyvesant Town,40.733909999999995,-73.97856999999999,Private room,55,4,1,0.08,1,0 +33473,21682640,Brooklyn,Flatbush,40.64258,-73.95952,Private room,65,30,0,,2,365 +33474,199014573,Manhattan,Midtown,40.75486,-73.97251999999999,Private room,125,3,8,0.65,1,0 +33475,24496471,Brooklyn,Williamsburg,40.715740000000004,-73.9665,Entire home/apt,200,3,11,0.94,1,0 +33476,22583075,Manhattan,Little Italy,40.71737,-73.99861,Entire home/apt,400,2,2,0.18,1,0 +33477,71404080,Manhattan,Hell's Kitchen,40.76117,-73.99169,Private room,80,22,1,0.09,1,187 +33478,55240477,Manhattan,Greenwich Village,40.73036,-73.99358000000001,Entire home/apt,220,4,1,0.08,1,16 +33479,4291088,Brooklyn,Clinton Hill,40.6955,-73.96446,Entire home/apt,130,1,35,2.87,1,0 +33480,274910,Manhattan,Morningside Heights,40.809979999999996,-73.95756,Entire home/apt,90,1,25,2.07,1,0 +33481,198328249,Brooklyn,Bushwick,40.69164,-73.91513,Shared room,47,1,9,1.03,2,365 +33482,73425483,Brooklyn,Bedford-Stuyvesant,40.69101,-73.93773,Private room,118,1,29,2.46,6,288 +33483,749126,Brooklyn,South Slope,40.665009999999995,-73.98111999999999,Entire home/apt,145,2,8,0.66,1,0 +33484,9638257,Manhattan,Theater District,40.75934,-73.98755,Private room,85,4,14,1.98,1,33 +33485,1004883,Brooklyn,Bushwick,40.6914,-73.90675,Private room,75,4,4,0.36,2,364 +33486,199070207,Bronx,University Heights,40.86255,-73.90669,Private room,80,3,52,4.79,2,0 +33487,136846568,Brooklyn,Bedford-Stuyvesant,40.68932,-73.95886999999999,Private room,40,2,2,0.19,1,0 +33488,73570025,Brooklyn,Williamsburg,40.71648,-73.94452,Entire home/apt,110,1,52,4.36,1,44 +33489,196904829,Brooklyn,Bushwick,40.69972,-73.92362,Private room,80,3,0,,1,0 +33490,157506473,Queens,Flushing,40.75819,-73.81976999999999,Private room,60,1,6,0.5,1,0 +33491,199118646,Brooklyn,East Flatbush,40.648340000000005,-73.95161,Private room,50,1,37,3.68,1,84 +33492,33233142,Brooklyn,Bushwick,40.69298,-73.90685,Private room,58,5,1,0.09,1,17 +33493,56666937,Brooklyn,Clinton Hill,40.68962,-73.96061999999999,Entire home/apt,150,6,16,1.58,1,168 +33494,65093286,Manhattan,Harlem,40.81488,-73.94415,Private room,49,1,12,0.97,1,0 +33495,519554,Manhattan,Lower East Side,40.72051,-73.98777,Private room,69,3,1,0.6,5,270 +33496,197400421,Manhattan,Chinatown,40.71515,-73.99826999999999,Private room,99,3,30,2.51,2,147 +33497,76225580,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95231,Entire home/apt,200,2,6,2.28,2,267 +33498,10535719,Manhattan,East Harlem,40.798,-73.93944,Private room,150,7,0,,3,358 +33499,10577999,Manhattan,Lower East Side,40.72135,-73.98391,Entire home/apt,200,4,3,0.25,1,0 +33500,1473755,Brooklyn,Williamsburg,40.71906,-73.94039000000001,Entire home/apt,125,4,2,0.16,1,0 +33501,35746135,Brooklyn,Kensington,40.62896,-73.97494,Private room,70,1,34,2.74,2,1 +33502,40905101,Brooklyn,Crown Heights,40.67478,-73.94418,Private room,45,2,25,2.05,1,0 +33503,24079691,Brooklyn,Crown Heights,40.67863,-73.95859,Private room,70,1,2,0.17,1,0 +33504,38920716,Queens,Queens Village,40.70789,-73.74073,Entire home/apt,75,3,134,10.86,1,63 +33505,110049861,Brooklyn,Williamsburg,40.709590000000006,-73.95693,Private room,10,1,0,,1,83 +33506,40594187,Manhattan,East Village,40.722559999999994,-73.9848,Entire home/apt,150,3,6,0.48,1,4 +33507,24712915,Brooklyn,Sunset Park,40.66236,-73.99037,Private room,55,2,41,3.35,1,340 +33508,127595553,Manhattan,Morningside Heights,40.80624,-73.9634,Private room,90,1,7,0.57,1,0 +33509,13533446,Manhattan,East Village,40.72634,-73.97625,Private room,139,2,31,2.88,1,81 +33510,36383204,Manhattan,Kips Bay,40.74174,-73.98161999999999,Entire home/apt,120,25,7,0.58,1,0 +33511,199315923,Queens,Glendale,40.702709999999996,-73.87716999999999,Entire home/apt,65,3,49,4.06,1,293 +33512,199213364,Brooklyn,Sheepshead Bay,40.59689,-73.93353,Entire home/apt,83,1,35,2.91,2,97 +33513,180781689,Queens,Rockaway Beach,40.587559999999996,-73.81371,Entire home/apt,149,1,41,3.34,2,140 +33514,8456000,Brooklyn,Navy Yard,40.69793,-73.96989,Private room,175,1,11,1.1,2,90 +33515,295128,Bronx,Clason Point,40.81309,-73.85367,Private room,70,1,3,0.47,7,360 +33516,199299171,Queens,Rockaway Beach,40.58743,-73.81411,Private room,49,1,10,0.87,1,356 +33517,2188481,Brooklyn,Gowanus,40.68234,-73.98223,Entire home/apt,150,4,2,0.17,1,55 +33518,49909186,Manhattan,Lower East Side,40.72003,-73.98928000000001,Entire home/apt,180,4,23,1.99,2,233 +33519,295128,Bronx,Clason Point,40.81225,-73.85502,Private room,80,1,4,1.48,7,365 +33520,6072790,Manhattan,East Village,40.72607,-73.97851,Entire home/apt,220,3,3,0.28,1,25 +33521,14907512,Brooklyn,Bushwick,40.69505,-73.92968,Private room,30,10,4,0.35,1,13 +33522,53276746,Manhattan,Harlem,40.81581,-73.94142,Entire home/apt,150,3,22,1.9,1,261 +33523,187139932,Manhattan,Greenwich Village,40.735240000000005,-73.99259,Entire home/apt,225,3,2,1.3,1,1 +33524,11541034,Manhattan,Midtown,40.7523,-73.99024,Entire home/apt,210,5,7,0.63,1,0 +33525,199466039,Manhattan,Upper East Side,40.77669,-73.95283,Private room,299,1,4,0.35,3,365 +33526,74911937,Brooklyn,Flatbush,40.633379999999995,-73.95074,Entire home/apt,110,4,18,1.6,1,46 +33527,41099363,Brooklyn,Fort Greene,40.68992,-73.97528,Private room,120,4,4,0.45,3,291 +33528,198900829,Brooklyn,Williamsburg,40.711420000000004,-73.96141,Private room,80,5,1,0.09,1,0 +33529,199147185,Brooklyn,Sunset Park,40.66291,-73.995,Entire home/apt,330,1,34,2.83,5,147 +33530,47151333,Brooklyn,Brooklyn Heights,40.69174,-73.99283,Entire home/apt,150,2,4,0.36,2,11 +33531,28325192,Manhattan,Roosevelt Island,40.764,-73.94740999999999,Private room,150,3,2,0.17,1,0 +33532,56060495,Manhattan,Hell's Kitchen,40.75524,-73.99361999999999,Entire home/apt,99,1,34,2.9,1,1 +33533,41655831,Manhattan,Roosevelt Island,40.76506,-73.94662,Private room,99,1,2,0.16,1,0 +33534,26584499,Manhattan,Upper West Side,40.78246,-73.98314,Entire home/apt,115,30,0,,8,89 +33535,85712984,Brooklyn,Williamsburg,40.70277,-73.93568,Entire home/apt,90,1,1,0.08,1,76 +33536,26584499,Manhattan,Upper West Side,40.7828,-73.98348,Entire home/apt,118,30,0,,8,157 +33537,199524563,Queens,Rego Park,40.726079999999996,-73.86233,Private room,65,2,28,2.36,3,38 +33538,199524563,Queens,Rego Park,40.72738,-73.86273,Private room,65,2,21,1.76,3,0 +33539,11459431,Manhattan,Hell's Kitchen,40.76213,-73.99938,Entire home/apt,300,5,1,0.1,1,11 +33540,28727058,Brooklyn,Fort Greene,40.693090000000005,-73.97238,Private room,70,2,47,4.15,1,0 +33541,4823737,Manhattan,Hell's Kitchen,40.75945,-73.99344,Private room,250,4,0,,1,0 +33542,108454497,Queens,Maspeth,40.72959,-73.89381,Private room,35,30,0,,1,179 +33543,1495694,Manhattan,Washington Heights,40.8436,-73.9412,Entire home/apt,125,11,1,0.09,1,342 +33544,5225042,Manhattan,West Village,40.73429,-74.00487,Entire home/apt,150,3,6,0.52,1,0 +33545,20912691,Queens,Jamaica,40.70985,-73.78429,Private room,50,2,4,0.34,7,0 +33546,51783601,Manhattan,Upper East Side,40.77537,-73.95555999999999,Entire home/apt,120,5,1,0.08,1,0 +33547,77303930,Manhattan,Lower East Side,40.72235,-73.98765999999999,Entire home/apt,125,3,1,0.09,1,0 +33548,4066678,Brooklyn,Williamsburg,40.716570000000004,-73.96512,Entire home/apt,200,15,0,,1,0 +33549,179483216,Manhattan,Washington Heights,40.85515,-73.93297,Entire home/apt,250,4,20,1.94,1,228 +33550,191338162,Bronx,Allerton,40.85978,-73.8619,Private room,142,1,29,2.47,5,48 +33551,12243051,Manhattan,Chelsea,40.74259,-73.99589,Entire home/apt,249,29,0,,96,230 +33552,104157084,Brooklyn,Bedford-Stuyvesant,40.678540000000005,-73.94883,Shared room,60,1,2,0.17,1,342 +33553,191338162,Bronx,Allerton,40.860170000000004,-73.86198,Private room,142,1,36,3.5,5,57 +33554,17400431,Manhattan,East Village,40.731770000000004,-73.98691,Entire home/apt,179,5,32,2.92,1,12 +33555,10457300,Queens,Arverne,40.59427,-73.79729,Entire home/apt,140,1,36,2.96,1,70 +33556,20444038,Manhattan,Midtown,40.74624,-73.98255,Entire home/apt,465,2,31,2.66,1,142 +33557,7169873,Brooklyn,Midwood,40.61716,-73.96271,Entire home/apt,80,5,24,2.02,1,0 +33558,552288,Brooklyn,Bushwick,40.699490000000004,-73.92383000000001,Entire home/apt,65,2,6,0.54,1,0 +33559,172190160,Manhattan,Midtown,40.7521,-73.97334000000001,Private room,300,2,2,0.25,1,0 +33560,152047633,Brooklyn,Williamsburg,40.71415,-73.96225,Private room,90,1,0,,1,0 +33561,1840698,Brooklyn,Greenpoint,40.72446,-73.9516,Entire home/apt,180,3,13,1.13,1,0 +33562,199702366,Brooklyn,South Slope,40.66625,-73.9826,Private room,56,2,15,2.33,1,57 +33563,143979755,Bronx,Pelham Gardens,40.862390000000005,-73.84362,Entire home/apt,99,1,67,6.07,1,337 +33564,18210699,Brooklyn,Williamsburg,40.711059999999996,-73.95945,Private room,70,4,1,0.09,1,220 +33565,155924492,Queens,Long Island City,40.75311,-73.93628000000001,Entire home/apt,285,2,30,2.54,1,172 +33566,72746827,Queens,Bayswater,40.61036,-73.7687,Private room,82,1,8,8.0,1,172 +33567,191338162,Bronx,Allerton,40.86014,-73.86301,Private room,142,1,30,2.56,5,48 +33568,16782911,Brooklyn,Prospect-Lefferts Gardens,40.66352,-73.94157,Entire home/apt,100,5,8,0.69,1,57 +33569,191338162,Bronx,Allerton,40.86013,-73.86339,Private room,142,1,30,2.56,5,57 +33570,23342828,Brooklyn,Williamsburg,40.70807,-73.95565,Entire home/apt,125,3,6,0.54,1,0 +33571,173259171,Manhattan,Lower East Side,40.71946,-73.98935,Entire home/apt,900,1,2,0.18,1,0 +33572,199745521,Queens,Corona,40.75046,-73.85443000000001,Private room,40,2,19,1.6,1,24 +33573,68287582,Manhattan,Harlem,40.80455,-73.95429,Entire home/apt,120,2,16,1.32,1,0 +33574,390844,Manhattan,East Village,40.72436,-73.98235,Entire home/apt,199,2,9,0.8,1,0 +33575,199740814,Brooklyn,Bedford-Stuyvesant,40.68125,-73.92326,Private room,60,1,7,0.59,1,129 +33576,186452920,Manhattan,Greenwich Village,40.73093,-74.00125,Entire home/apt,200,2,42,3.62,1,129 +33577,59262205,Brooklyn,Bedford-Stuyvesant,40.679629999999996,-73.90816,Private room,55,1,16,2.34,3,0 +33578,176955227,Brooklyn,Bushwick,40.69257,-73.92331999999999,Entire home/apt,150,1,7,0.62,1,88 +33579,7943066,Brooklyn,Williamsburg,40.71787,-73.94171,Private room,110,2,4,1.5,2,66 +33580,199793200,Manhattan,Inwood,40.86735,-73.91762,Private room,53,3,3,0.26,1,0 +33581,15175378,Brooklyn,Crown Heights,40.67512,-73.94703,Entire home/apt,150,5,28,2.54,2,62 +33582,167621521,Manhattan,Inwood,40.86411,-73.92241,Private room,35,3,1,0.09,1,0 +33583,151714821,Bronx,Morris Heights,40.84835,-73.9141,Entire home/apt,149,1,1,0.09,1,0 +33584,199808815,Manhattan,Hell's Kitchen,40.761379999999996,-73.99945,Entire home/apt,190,2,3,0.25,1,0 +33585,109196702,Manhattan,Upper East Side,40.77673,-73.95525,Private room,143,2,4,0.34,2,0 +33586,15147054,Brooklyn,Bushwick,40.69675,-73.93374,Private room,57,2,42,3.43,2,348 +33587,199828653,Manhattan,East Harlem,40.79872,-73.93954000000001,Private room,59,1,66,5.38,1,126 +33588,1510920,Manhattan,East Village,40.723659999999995,-73.9903,Entire home/apt,299,2,11,0.99,1,0 +33589,199833548,Queens,Sunnyside,40.741659999999996,-73.92658,Private room,70,1,50,4.25,9,339 +33590,174492861,Queens,Jackson Heights,40.74942,-73.88248,Private room,49,2,6,0.5,2,89 +33591,199887038,Queens,Ditmars Steinway,40.770309999999995,-73.90793000000001,Private room,68,2,10,0.89,2,53 +33592,6947681,Brooklyn,Park Slope,40.66986,-73.98668,Entire home/apt,120,2,23,1.86,1,4 +33593,52538564,Brooklyn,Columbia St,40.68988,-73.99906999999999,Entire home/apt,135,4,1,0.45,1,13 +33594,9678132,Manhattan,East Village,40.72639,-73.97848,Private room,80,8,2,0.19,1,0 +33595,27497250,Brooklyn,Greenpoint,40.72694,-73.94868000000001,Private room,80,3,5,0.41,1,55 +33596,2487882,Brooklyn,Windsor Terrace,40.65163,-73.97910999999999,Entire home/apt,150,5,0,,2,0 +33597,33055418,Manhattan,Midtown,40.74573,-73.98323,Private room,90,3,6,0.55,1,70 +33598,197516742,Manhattan,Kips Bay,40.74348,-73.97962,Entire home/apt,150,14,1,0.08,1,0 +33599,17407870,Queens,Long Island City,40.75087,-73.94202,Entire home/apt,197,2,24,2.11,1,232 +33600,46555645,Manhattan,Midtown,40.75357,-73.97313,Private room,181,3,1,0.12,1,0 +33601,9685952,Brooklyn,Williamsburg,40.71414,-73.96334,Entire home/apt,180,2,3,0.25,1,0 +33602,55785340,Queens,Long Island City,40.747479999999996,-73.93985,Private room,178,1,0,,1,0 +33603,199946021,Manhattan,Upper West Side,40.8006,-73.96406999999999,Private room,76,1,80,6.59,3,19 +33604,199956234,Manhattan,Harlem,40.80448,-73.95567,Entire home/apt,139,1,58,4.89,1,96 +33605,158922261,Queens,Astoria,40.757090000000005,-73.9145,Private room,51,2,21,1.86,3,151 +33606,139899546,Brooklyn,Prospect-Lefferts Gardens,40.65829,-73.95170999999999,Private room,50,20,3,0.25,1,0 +33607,168815258,Brooklyn,Clinton Hill,40.693220000000004,-73.96655,Private room,55,3,2,0.16,1,0 +33608,56338076,Manhattan,Harlem,40.81657,-73.93849,Entire home/apt,250,1,19,1.62,3,0 +33609,3188892,Brooklyn,Williamsburg,40.71018,-73.94057,Private room,55,3,2,0.17,1,36 +33610,199985122,Brooklyn,Park Slope,40.671929999999996,-73.98151999999999,Private room,80,2,24,2.09,1,294 +33611,158922261,Queens,Astoria,40.75697,-73.91314,Private room,51,2,34,2.97,3,167 +33612,1514109,Manhattan,Harlem,40.79976,-73.95119,Private room,69,3,28,2.36,1,4 +33613,200007278,Manhattan,Chelsea,40.75274,-73.99647,Entire home/apt,255,3,4,0.33,1,0 +33614,56338076,Manhattan,Harlem,40.81694,-73.93909000000001,Private room,150,2,3,0.26,3,364 +33615,158972140,Manhattan,Harlem,40.81678,-73.94246,Private room,85,1,7,0.62,2,180 +33616,17344881,Manhattan,Harlem,40.802690000000005,-73.94686999999999,Entire home/apt,300,2,0,,3,353 +33617,199946021,Manhattan,Upper West Side,40.79978,-73.96295,Private room,52,1,64,5.42,3,11 +33618,40398107,Brooklyn,Midwood,40.61615,-73.95997,Entire home/apt,70,1,1,0.08,1,0 +33619,199946021,Manhattan,Upper West Side,40.79972,-73.96281,Private room,76,1,76,6.28,3,16 +33620,200018869,Bronx,Claremont Village,40.84171,-73.91159,Private room,150,1,0,,1,363 +33621,7718759,Manhattan,Harlem,40.82763,-73.94404,Private room,63,1,19,7.92,2,16 +33622,50756378,Staten Island,Clifton,40.615429999999996,-74.08513,Entire home/apt,100,2,5,0.43,7,312 +33623,73269245,Manhattan,Chinatown,40.71443,-73.99348,Private room,55,7,1,0.09,1,0 +33624,17344881,Manhattan,Harlem,40.803670000000004,-73.94803,Private room,90,3,6,0.6,3,353 +33625,200049516,Manhattan,Washington Heights,40.83958,-73.94596,Entire home/apt,110,3,4,0.33,1,0 +33626,137358866,Queens,Woodside,40.744609999999994,-73.90648,Private room,48,30,0,,103,238 +33627,173227728,Manhattan,Midtown,40.75157,-73.97134,Private room,250,3,0,,1,5 +33628,199584723,Manhattan,Upper West Side,40.795770000000005,-73.97403,Private room,66,6,6,0.49,1,0 +33629,176189568,Queens,Elmhurst,40.74295,-73.87812,Private room,130,2,0,,1,358 +33630,17768644,Brooklyn,Flatbush,40.6533,-73.95534,Entire home/apt,65,2,1,0.08,1,0 +33631,952381,Brooklyn,Fort Greene,40.68705,-73.97336,Entire home/apt,133,28,6,0.52,1,307 +33632,199954647,Queens,Richmond Hill,40.696659999999994,-73.83415,Entire home/apt,100,3,15,1.33,1,0 +33633,200166257,Manhattan,Washington Heights,40.854659999999996,-73.92771,Private room,30,2,1,0.09,1,0 +33634,128883588,Brooklyn,Bedford-Stuyvesant,40.69185,-73.95896,Private room,75,10,0,,1,17 +33635,85852354,Brooklyn,Downtown Brooklyn,40.69032,-73.9871,Private room,85,2,26,2.39,1,0 +33636,47924569,Brooklyn,East Flatbush,40.64629,-73.932,Entire home/apt,125,3,18,1.53,1,48 +33637,7117901,Brooklyn,Greenpoint,40.72878,-73.95823,Entire home/apt,137,3,0,,1,0 +33638,57322447,Manhattan,Inwood,40.86159,-73.92616,Entire home/apt,100,4,3,0.26,1,0 +33639,2208401,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.96276999999999,Entire home/apt,125,2,11,0.94,1,0 +33640,46970670,Manhattan,Battery Park City,40.711059999999996,-74.0157,Entire home/apt,91,28,5,0.41,1,47 +33641,141615596,Bronx,Parkchester,40.83791,-73.85845,Private room,26,1,14,1.24,2,311 +33642,147059964,Brooklyn,Bedford-Stuyvesant,40.694179999999996,-73.96069,Private room,66,1,3,0.36,3,0 +33643,27964506,Bronx,Throgs Neck,40.816390000000006,-73.81954,Private room,60,1,13,1.09,1,35 +33644,19433714,Manhattan,Greenwich Village,40.727,-73.99767,Private room,150,3,30,2.64,3,20 +33645,7612089,Manhattan,Lower East Side,40.717690000000005,-73.99148000000001,Entire home/apt,222,1,3,0.26,1,0 +33646,182152235,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95884000000001,Entire home/apt,148,2,38,3.28,2,102 +33647,502829,Manhattan,Upper West Side,40.79083,-73.97531,Entire home/apt,225,3,3,0.42,1,330 +33648,14927030,Brooklyn,Williamsburg,40.713640000000005,-73.95125999999999,Entire home/apt,200,5,0,,1,103 +33649,88576580,Queens,Flushing,40.75607,-73.82212,Private room,60,1,3,0.28,2,0 +33650,44123062,Brooklyn,Bushwick,40.68796,-73.90781,Private room,45,4,47,4.37,4,20 +33651,24195130,Bronx,Pelham Gardens,40.86153,-73.83655999999999,Entire home/apt,102,1,50,4.19,1,349 +33652,190921808,Manhattan,Chelsea,40.75369,-73.99719,Private room,50,7,11,0.99,47,358 +33653,197400421,Manhattan,Chinatown,40.715090000000004,-73.99986,Private room,100,25,0,,2,333 +33654,19739033,Manhattan,Harlem,40.81265,-73.95260999999999,Entire home/apt,250,2,3,0.31,2,0 +33655,19704368,Brooklyn,Bushwick,40.69227,-73.92520999999999,Private room,44,5,3,0.25,1,4 +33656,104117770,Manhattan,Hell's Kitchen,40.7686,-73.98951,Entire home/apt,130,4,7,0.59,1,0 +33657,107579819,Brooklyn,Bushwick,40.69417,-73.92589,Private room,55,5,6,0.51,2,0 +33658,1116256,Brooklyn,Bushwick,40.706179999999996,-73.91689000000001,Entire home/apt,78,30,1,0.09,1,6 +33659,200439496,Queens,Elmhurst,40.73744,-73.87246999999999,Entire home/apt,165,30,14,1.15,1,242 +33660,51913826,Manhattan,Nolita,40.72242,-73.99463,Private room,84,1,0,,8,0 +33661,17926275,Manhattan,Washington Heights,40.85116,-73.93457,Entire home/apt,90,3,7,0.64,1,6 +33662,8060373,Brooklyn,Fort Greene,40.6896,-73.97238,Private room,150,14,0,,1,0 +33663,158687034,Manhattan,Midtown,40.74493,-73.9824,Entire home/apt,500,5,39,3.24,1,114 +33664,7054114,Brooklyn,Bushwick,40.692859999999996,-73.92675,Private room,75,1,22,9.17,1,70 +33665,200453889,Queens,Jamaica,40.69066,-73.78759000000001,Private room,44,5,8,0.68,1,314 +33666,9034275,Brooklyn,Williamsburg,40.71674,-73.95825,Private room,75,3,2,0.19,1,0 +33667,200465032,Manhattan,Upper East Side,40.78369,-73.95154000000001,Private room,120,2,58,4.96,3,354 +33668,200465032,Manhattan,Upper East Side,40.78352,-73.95275,Private room,120,2,57,4.76,3,351 +33669,200465032,Manhattan,Upper East Side,40.78394,-73.95137,Private room,110,2,49,4.06,3,358 +33670,6354758,Brooklyn,Red Hook,40.67966,-74.00641,Private room,125,7,1,0.1,1,45 +33671,200479961,Brooklyn,East New York,40.6757,-73.87657,Shared room,25,2,26,2.25,1,50 +33672,200483536,Manhattan,East Village,40.72307,-73.98437,Private room,89,1,12,1.07,1,160 +33673,161057073,Manhattan,Lower East Side,40.7216,-73.98791,Private room,81,2,26,2.29,4,61 +33674,88576580,Queens,Flushing,40.75432,-73.82273,Private room,60,1,1,0.09,2,0 +33675,4231845,Manhattan,Morningside Heights,40.80494,-73.96426,Entire home/apt,95,2,2,0.18,1,0 +33676,190921808,Manhattan,Hell's Kitchen,40.75544,-73.99511,Private room,75,7,3,0.29,47,348 +33677,190921808,Manhattan,Hell's Kitchen,40.75492,-73.99563,Private room,80,7,7,0.66,47,329 +33678,161899037,Queens,Flushing,40.756370000000004,-73.83208,Entire home/apt,159,2,22,1.83,7,58 +33679,200600695,Queens,Sunnyside,40.74122,-73.92223,Private room,80,1,11,0.93,1,346 +33680,13093738,Brooklyn,Boerum Hill,40.685629999999996,-73.98796,Entire home/apt,165,4,2,0.19,1,0 +33681,7620548,Queens,Ridgewood,40.69212,-73.90188,Entire home/apt,170,7,0,,1,10 +33682,200621725,Brooklyn,Williamsburg,40.71215,-73.94082,Private room,69,2,70,5.79,2,30 +33683,2326551,Manhattan,East Village,40.7277,-73.98362,Entire home/apt,140,1,38,3.27,2,101 +33684,137358866,Queens,Woodside,40.74465,-73.90795,Private room,39,30,0,,103,0 +33685,153900772,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92116,Private room,50,2,4,0.35,1,0 +33686,2622041,Brooklyn,Bushwick,40.702040000000004,-73.91684000000001,Entire home/apt,135,2,10,0.97,1,15 +33687,28713609,Manhattan,East Harlem,40.8018,-73.9413,Entire home/apt,120,2,25,2.06,1,6 +33688,137358866,Queens,Sunnyside,40.7351,-73.92039,Private room,39,30,1,0.23,103,0 +33689,3329478,Queens,Ridgewood,40.70527,-73.90083,Private room,69,2,22,1.92,1,16 +33690,183321912,Brooklyn,Bedford-Stuyvesant,40.687459999999994,-73.95379,Private room,65,30,30,2.71,2,361 +33691,56616801,Brooklyn,Greenpoint,40.724140000000006,-73.93966999999999,Private room,25,1,4,0.34,1,0 +33692,3664407,Brooklyn,Prospect Heights,40.67367,-73.96507,Entire home/apt,120,3,13,1.09,1,9 +33693,200683024,Manhattan,Financial District,40.70496,-74.00639,Entire home/apt,128,5,36,3.06,1,136 +33694,6788748,Manhattan,Upper East Side,40.77668,-73.94587,Entire home/apt,125,30,9,0.82,1,4 +33695,200697707,Brooklyn,Bushwick,40.68764,-73.91445,Private room,65,1,57,4.76,1,48 +33696,199147185,Brooklyn,Sunset Park,40.66214,-73.99511,Entire home/apt,172,1,34,3.07,5,133 +33697,160683712,Brooklyn,Bedford-Stuyvesant,40.68291,-73.91975,Entire home/apt,150,2,8,0.68,1,84 +33698,200754542,Queens,Breezy Point,40.56605,-73.86994,Private room,195,1,4,0.35,2,160 +33699,106609860,Brooklyn,Gowanus,40.67779,-73.98342,Private room,60,2,37,3.27,1,54 +33700,199147185,Brooklyn,Sunset Park,40.66362,-73.99616,Entire home/apt,330,1,1,0.12,5,174 +33701,145237476,Manhattan,Upper West Side,40.79782,-73.97179,Entire home/apt,195,2,1,0.16,1,3 +33702,200826881,Queens,Elmhurst,40.74579,-73.88904000000001,Entire home/apt,60,3,16,1.42,1,40 +33703,22800762,Manhattan,Hell's Kitchen,40.76484,-73.98969,Entire home/apt,220,4,0,,1,0 +33704,197547562,Manhattan,East Village,40.72382,-73.97683,Private room,110,2,7,0.79,1,89 +33705,10457196,Manhattan,Chinatown,40.71765,-73.99457,Entire home/apt,154,30,3,0.3,11,113 +33706,131522515,Brooklyn,Gravesend,40.59166,-73.96672,Entire home/apt,76,2,26,2.22,1,323 +33707,116308258,Manhattan,Washington Heights,40.83298,-73.93938,Private room,70,7,2,0.18,1,0 +33708,83076690,Brooklyn,Prospect Heights,40.682190000000006,-73.97259,Entire home/apt,220,3,6,0.52,1,0 +33709,65671256,Queens,Jackson Heights,40.75782,-73.85973,Private room,55,1,55,4.98,3,136 +33710,51278311,Brooklyn,Gowanus,40.66873,-73.99263,Entire home/apt,55,9,0,,1,0 +33711,102763548,Manhattan,Chelsea,40.7433,-74.00119000000001,Entire home/apt,270,5,0,,1,46 +33712,477865,Manhattan,Upper East Side,40.76663,-73.96171,Entire home/apt,99,4,4,0.35,1,2 +33713,51412807,Brooklyn,Bushwick,40.69826,-73.91944000000001,Entire home/apt,95,2,40,3.32,1,0 +33714,73425483,Brooklyn,Bedford-Stuyvesant,40.690740000000005,-73.93858,Private room,118,1,20,1.9,6,285 +33715,200840286,Manhattan,Harlem,40.80705,-73.95581999999999,Private room,80,2,42,4.92,1,13 +33716,180775831,Queens,Flushing,40.75396,-73.83361,Entire home/apt,60,1,40,3.46,1,15 +33717,44630233,Brooklyn,Williamsburg,40.7073,-73.92775999999999,Private room,20,1,8,0.73,1,1 +33718,26437452,Brooklyn,Gowanus,40.67118,-73.99061,Private room,70,4,14,1.16,1,0 +33719,201015598,Brooklyn,Bedford-Stuyvesant,40.69103,-73.93933,Shared room,33,1,33,2.78,17,85 +33720,201015598,Brooklyn,Bedford-Stuyvesant,40.69099,-73.94094,Shared room,30,2,32,2.66,17,85 +33721,18747710,Brooklyn,Carroll Gardens,40.678340000000006,-73.99761,Private room,98,2,21,2.1,2,73 +33722,201024308,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95492,Private room,70,2,28,2.3,1,334 +33723,34313176,Queens,Rego Park,40.71734,-73.86,Entire home/apt,110,2,12,1.02,4,332 +33724,15500498,Brooklyn,Sunset Park,40.65828,-73.98983,Private room,55,2,7,0.58,1,0 +33725,119669058,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.9556,Shared room,40,3,10,0.93,34,332 +33726,50770601,Manhattan,Gramercy,40.737140000000004,-73.97962,Entire home/apt,189,1,11,1.51,5,312 +33727,119669058,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95696,Shared room,36,1,18,1.53,34,365 +33728,199786012,Brooklyn,Bedford-Stuyvesant,40.69373,-73.95040999999999,Private room,65,30,35,3.04,3,348 +33729,200193940,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93441,Private room,49,2,44,4.43,1,73 +33730,62587696,Brooklyn,Gowanus,40.670770000000005,-73.98969,Private room,52,2,53,5.26,2,13 +33731,3073952,Brooklyn,Bedford-Stuyvesant,40.680690000000006,-73.91045,Entire home/apt,97,1,27,5.66,2,62 +33732,201079770,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93247,Private room,80,20,9,0.78,4,154 +33733,50770601,Manhattan,Upper East Side,40.773590000000006,-73.94865,Entire home/apt,189,1,1,0.25,5,365 +33734,119669058,Brooklyn,Bedford-Stuyvesant,40.69396,-73.95578,Shared room,35,1,16,1.34,34,346 +33735,119669058,Brooklyn,Bedford-Stuyvesant,40.694390000000006,-73.95518,Shared room,36,3,14,1.24,34,361 +33736,201083646,Brooklyn,Flatbush,40.6417,-73.96554,Entire home/apt,150,4,18,1.57,1,52 +33737,16713332,Brooklyn,Bushwick,40.69701,-73.93002,Entire home/apt,100,12,1,0.16,2,0 +33738,2822805,Brooklyn,Bedford-Stuyvesant,40.685790000000004,-73.95038000000001,Private room,60,30,1,0.27,8,217 +33739,164291123,Manhattan,Flatiron District,40.74107,-73.98693,Private room,179,1,35,3.11,3,331 +33740,200933726,Bronx,Allerton,40.86659,-73.866,Private room,34,2,0,,1,0 +33741,8305252,Manhattan,West Village,40.73611,-74.00922,Entire home/apt,200,3,26,2.14,1,67 +33742,73425483,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93943,Private room,123,2,32,2.72,6,251 +33743,201116493,Brooklyn,Clinton Hill,40.68305,-73.96316,Entire home/apt,80,14,2,0.19,1,0 +33744,3830753,Brooklyn,Red Hook,40.675,-74.01127,Entire home/apt,90,4,32,2.75,1,107 +33745,194377255,Queens,East Elmhurst,40.760709999999996,-73.88405999999999,Private room,40,1,104,8.64,4,351 +33746,24187602,Manhattan,West Village,40.73865,-74.00662,Entire home/apt,490,2,15,1.48,1,179 +33747,183563796,Brooklyn,Borough Park,40.64282,-73.98779,Entire home/apt,70,2,2,0.19,1,0 +33748,18747710,Brooklyn,Carroll Gardens,40.67995,-73.99665,Entire home/apt,188,2,7,0.59,2,19 +33749,200621725,Brooklyn,Williamsburg,40.7132,-73.94164,Private room,69,2,75,6.2,2,15 +33750,8654731,Brooklyn,Williamsburg,40.70945,-73.95843,Entire home/apt,289,30,32,3.06,1,60 +33751,201142263,Brooklyn,Williamsburg,40.707609999999995,-73.95336999999999,Private room,130,2,8,0.68,1,86 +33752,4537638,Brooklyn,Prospect Heights,40.677620000000005,-73.96539,Private room,75,2,4,0.37,1,0 +33753,40643524,Queens,Sunnyside,40.73758,-73.92820999999999,Shared room,79,2,1,0.09,1,0 +33754,45093051,Manhattan,Harlem,40.80045,-73.95166,Private room,100,1,13,1.13,2,351 +33755,201138200,Manhattan,Financial District,40.70413,-74.0134,Private room,995,1,0,,1,365 +33756,201153591,Queens,Astoria,40.76538,-73.92726,Entire home/apt,150,2,46,3.84,2,121 +33757,201015598,Brooklyn,Bedford-Stuyvesant,40.69124,-73.93911,Shared room,21,1,35,2.92,17,78 +33758,32936693,Brooklyn,Brighton Beach,40.57951,-73.95663,Entire home/apt,68,25,4,0.37,1,0 +33759,75590434,Brooklyn,Williamsburg,40.712559999999996,-73.95121,Private room,135,4,11,0.99,1,5 +33760,126962637,Manhattan,Murray Hill,40.748490000000004,-73.97873,Entire home/apt,145,3,28,2.43,1,43 +33761,173290675,Queens,Woodhaven,40.69883,-73.85141999999999,Private room,45,2,8,0.81,3,50 +33762,72157489,Brooklyn,Bushwick,40.69327,-73.91599000000001,Private room,50,1,3,0.25,2,250 +33763,180991373,Queens,Flushing,40.742979999999996,-73.82306,Private room,60,1,26,2.34,5,46 +33764,180991373,Queens,Flushing,40.742940000000004,-73.82318000000001,Private room,49,1,25,2.12,5,46 +33765,180991373,Queens,Flushing,40.742470000000004,-73.82439000000001,Private room,40,1,52,4.32,5,15 +33766,201203968,Brooklyn,Williamsburg,40.7127,-73.94034,Private room,62,2,64,5.35,2,26 +33767,77106920,Manhattan,Harlem,40.806259999999995,-73.95268,Entire home/apt,345,3,12,1.01,1,37 +33768,199833548,Queens,Sunnyside,40.74136,-73.92475999999999,Private room,80,1,27,2.4,9,309 +33769,9541963,Brooklyn,Crown Heights,40.6746,-73.9474,Entire home/apt,90,1,51,4.47,1,2 +33770,199833548,Queens,Sunnyside,40.74046,-73.9251,Private room,60,1,25,2.23,9,336 +33771,198257022,Bronx,University Heights,40.8612,-73.91065,Entire home/apt,150,1,6,0.53,1,191 +33772,50601648,Brooklyn,Bushwick,40.689040000000006,-73.92036999999999,Private room,68,3,16,1.4,1,139 +33773,647918,Manhattan,Upper West Side,40.77782,-73.98761999999999,Private room,150,1,4,0.38,1,0 +33774,1465316,Brooklyn,Williamsburg,40.71433,-73.95679,Entire home/apt,120,7,3,0.43,1,230 +33775,46844755,Manhattan,Midtown,40.76448,-73.97907,Private room,70,1,1,0.09,1,90 +33776,144674348,Manhattan,West Village,40.731320000000004,-74.00429,Entire home/apt,200,15,0,,1,0 +33777,51913826,Manhattan,Nolita,40.72271,-73.99412,Private room,109,1,2,0.17,8,0 +33778,90439931,Queens,Ditmars Steinway,40.77329,-73.91183000000001,Entire home/apt,74,3,3,0.25,1,41 +33779,201315040,Manhattan,East Village,40.72493,-73.97570999999999,Private room,125,2,26,2.23,1,118 +33780,51913826,Manhattan,Nolita,40.72315,-73.99454,Private room,109,1,1,0.2,8,0 +33781,27742407,Brooklyn,Clinton Hill,40.68453,-73.96773,Entire home/apt,120,5,2,0.19,1,13 +33782,199786012,Brooklyn,Bedford-Stuyvesant,40.69526,-73.95119,Private room,65,30,15,1.42,3,328 +33783,10457486,Brooklyn,Bushwick,40.69808,-73.92416999999999,Private room,47,1,17,1.63,1,106 +33784,1462999,Manhattan,Nolita,40.72341,-73.99426,Private room,120,4,37,3.22,1,78 +33785,137274917,Manhattan,Hell's Kitchen,40.75998,-73.98952,Private room,110,1,73,6.48,12,187 +33786,137274917,Manhattan,Hell's Kitchen,40.76187,-73.98984,Private room,110,1,54,4.84,12,251 +33787,137274917,Manhattan,Hell's Kitchen,40.7601,-73.99166,Private room,115,1,59,5.25,12,194 +33788,137274917,Manhattan,Hell's Kitchen,40.75955,-73.99022,Private room,105,1,67,5.98,12,241 +33789,201350300,Manhattan,Upper West Side,40.7862,-73.98089,Entire home/apt,119,3,6,0.57,1,0 +33790,120035273,Bronx,Edenwald,40.89245,-73.83721,Entire home/apt,42,1,32,2.74,1,32 +33791,2478942,Brooklyn,Williamsburg,40.71085,-73.96136,Private room,65,4,10,0.87,1,5 +33792,2886359,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91618000000001,Private room,54,1,15,1.81,2,13 +33793,201369441,Manhattan,West Village,40.7383,-74.00131,Entire home/apt,325,2,9,0.76,1,0 +33794,119673533,Brooklyn,Sunset Park,40.66236,-73.99109,Entire home/apt,265,2,4,0.42,1,0 +33795,58857346,Brooklyn,Kensington,40.6451,-73.97064,Private room,95,3,19,1.61,1,85 +33796,27960761,Manhattan,Greenwich Village,40.72704,-73.99672,Entire home/apt,199,2,9,0.82,3,0 +33797,2127180,Brooklyn,Williamsburg,40.71308,-73.94458,Entire home/apt,125,9,5,0.42,1,59 +33798,16149213,Manhattan,East Village,40.72541,-73.98398,Entire home/apt,174,2,6,2.12,1,5 +33799,27558716,Queens,Queens Village,40.70946,-73.74837,Private room,50,1,47,3.96,1,348 +33800,3955425,Brooklyn,Crown Heights,40.67435,-73.95087,Entire home/apt,140,2,7,0.59,1,7 +33801,201079770,Brooklyn,Bedford-Stuyvesant,40.695170000000005,-73.93248,Private room,95,20,11,0.92,4,244 +33802,129403630,Brooklyn,Bushwick,40.70145,-73.92,Entire home/apt,120,2,10,0.83,1,3 +33803,201403610,Brooklyn,Sunset Park,40.64165,-74.00922,Private room,39,2,6,0.53,5,224 +33804,37834029,Brooklyn,Bedford-Stuyvesant,40.68393,-73.9553,Private room,75,3,49,4.18,1,71 +33805,201403610,Brooklyn,Sunset Park,40.63985,-74.01094,Private room,65,2,10,0.85,5,186 +33806,201403610,Brooklyn,Sunset Park,40.63986,-74.01064000000001,Private room,58,2,10,0.92,5,232 +33807,135739716,Brooklyn,Red Hook,40.67856,-74.01584,Entire home/apt,100,3,17,1.42,1,6 +33808,44492422,Brooklyn,Williamsburg,40.709179999999996,-73.96135,Private room,73,5,1,0.12,1,249 +33809,201403610,Brooklyn,Sunset Park,40.641,-74.00925,Private room,65,2,12,1.02,5,262 +33810,201403610,Brooklyn,Sunset Park,40.641009999999994,-74.01049,Private room,57,2,16,1.35,5,222 +33811,1809268,Brooklyn,Bushwick,40.69433,-73.90649,Private room,60,3,5,0.43,1,0 +33812,183321912,Brooklyn,Bedford-Stuyvesant,40.687490000000004,-73.95467,Private room,65,30,29,2.51,2,362 +33813,22577148,Brooklyn,Bedford-Stuyvesant,40.69471,-73.933,Private room,100,3,4,0.33,7,109 +33814,201419214,Brooklyn,Clinton Hill,40.683890000000005,-73.96200999999999,Private room,185,30,0,,3,347 +33815,201419214,Brooklyn,Clinton Hill,40.6853,-73.96385,Private room,65,30,31,2.7,3,365 +33816,201419214,Brooklyn,Clinton Hill,40.68387,-73.96392,Private room,70,30,27,2.38,3,347 +33817,201447930,Manhattan,East Village,40.72785,-73.98684,Private room,130,2,19,1.58,2,32 +33818,201079770,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.93292,Private room,60,20,9,0.75,4,318 +33819,42537893,Manhattan,Harlem,40.8274,-73.95215,Entire home/apt,102,2,14,1.21,1,293 +33820,37678920,Queens,Jamaica,40.67784,-73.77299000000001,Entire home/apt,100,1,7,0.6,1,0 +33821,201079770,Brooklyn,Bedford-Stuyvesant,40.695159999999994,-73.93213,Private room,170,5,3,0.44,4,167 +33822,201416245,Brooklyn,Bedford-Stuyvesant,40.68845,-73.95659,Private room,65,30,32,2.86,3,365 +33823,201480794,Brooklyn,Cypress Hills,40.68401,-73.89461999999999,Private room,30,4,5,1.5,1,0 +33824,201416245,Brooklyn,Bedford-Stuyvesant,40.686440000000005,-73.95711999999999,Private room,60,30,25,2.08,3,0 +33825,201416245,Brooklyn,Bedford-Stuyvesant,40.68862,-73.95572,Private room,65,30,35,3.06,3,365 +33826,35728189,Brooklyn,Bedford-Stuyvesant,40.69526,-73.95155,Private room,90,30,28,2.37,3,320 +33827,35728189,Brooklyn,Bedford-Stuyvesant,40.69453,-73.95173,Private room,65,30,18,1.54,3,354 +33828,190921808,Manhattan,Hell's Kitchen,40.7557,-73.99668,Private room,50,3,15,1.3,47,238 +33829,190085120,Bronx,Morrisania,40.82823,-73.90114,Private room,150,2,0,,1,0 +33830,801975,Brooklyn,Crown Heights,40.67726,-73.94618,Entire home/apt,142,7,11,1.04,2,219 +33831,2052361,Brooklyn,Prospect-Lefferts Gardens,40.65501,-73.95948,Entire home/apt,80,3,2,0.32,3,0 +33832,40404374,Manhattan,Chelsea,40.74137,-73.9994,Private room,92,3,8,0.69,1,125 +33833,6726656,Brooklyn,Bushwick,40.70136,-73.9269,Private room,70,6,6,0.5,3,11 +33834,126819583,Brooklyn,Williamsburg,40.71107,-73.94665,Entire home/apt,275,2,20,1.83,1,0 +33835,52666941,Manhattan,Midtown,40.749520000000004,-73.9713,Entire home/apt,157,5,11,0.91,1,0 +33836,147710243,Queens,Bayswater,40.60644,-73.76089,Private room,120,2,0,,1,169 +33837,76123508,Brooklyn,Brighton Beach,40.57636,-73.95964000000001,Shared room,100,3,9,0.78,1,85 +33838,51913826,Manhattan,Nolita,40.72311,-73.99345,Private room,94,1,1,0.28,8,0 +33839,2419727,Manhattan,East Village,40.72573,-73.98376999999999,Private room,88,7,17,1.63,1,227 +33840,10603974,Manhattan,East Village,40.7272,-73.98186,Private room,56,9,4,0.65,1,0 +33841,54640485,Queens,Long Island City,40.75463,-73.93448000000001,Private room,55,3,44,3.75,1,37 +33842,12243051,Manhattan,Financial District,40.70633,-74.00623,Entire home/apt,165,29,0,,96,332 +33843,51913826,Manhattan,Nolita,40.722590000000004,-73.99399,Private room,84,1,0,,8,0 +33844,19955930,Manhattan,Kips Bay,40.74068,-73.98227,Entire home/apt,150,1,5,0.46,1,23 +33845,201611274,Manhattan,Hell's Kitchen,40.76475,-73.9932,Private room,244,1,39,3.35,1,5 +33846,53883793,Manhattan,Midtown,40.76085,-73.96627,Entire home/apt,180,2,2,0.17,1,4 +33847,48978249,Queens,Flushing,40.75479,-73.81916,Shared room,200,1,0,,2,89 +33848,2822805,Brooklyn,Bedford-Stuyvesant,40.68537,-73.94974,Private room,60,30,0,,8,237 +33849,16997863,Bronx,Castle Hill,40.81518,-73.84758000000001,Entire home/apt,62,3,32,2.79,1,42 +33850,77559258,Manhattan,Upper West Side,40.77237,-73.98063,Private room,245,2,0,,1,89 +33851,9296262,Brooklyn,Windsor Terrace,40.65251,-73.97598,Entire home/apt,145,3,3,0.26,1,69 +33852,12243051,Manhattan,Chelsea,40.74281,-73.99595,Entire home/apt,250,29,0,,96,312 +33853,47596725,Manhattan,Flatiron District,40.73945,-73.98543000000001,Entire home/apt,225,2,12,1.07,1,5 +33854,6720254,Manhattan,Chelsea,40.74285,-73.99395,Entire home/apt,69,2,22,1.94,1,0 +33855,191765199,Manhattan,Washington Heights,40.83235,-73.94117,Entire home/apt,96,1,52,4.37,6,40 +33856,11982558,Brooklyn,Bushwick,40.70313,-73.91450999999999,Private room,37,21,1,0.44,1,36 +33857,19303369,Queens,Woodside,40.74323,-73.90471,Private room,33,37,1,0.15,37,39 +33858,48146336,Manhattan,Hell's Kitchen,40.761179999999996,-73.99342,Entire home/apt,120,30,3,0.33,20,346 +33859,4622765,Brooklyn,Sunset Park,40.645379999999996,-74.01624,Entire home/apt,180,7,2,0.71,1,0 +33860,156200633,Manhattan,Harlem,40.81747,-73.95249,Private room,52,3,10,0.85,1,0 +33861,201647469,Queens,Long Island City,40.74565,-73.94699,Private room,108,2,13,1.74,1,333 +33862,382836,Manhattan,Hell's Kitchen,40.75718,-73.99245,Private room,140,2,4,0.42,4,365 +33863,201654234,Queens,Rockaway Beach,40.58739,-73.81746,Entire home/apt,75,2,35,2.97,1,125 +33864,191571338,Queens,Flushing,40.74544,-73.82244,Private room,48,1,74,6.2,4,56 +33865,42730216,Manhattan,Upper East Side,40.76639,-73.95817,Shared room,150,3,2,2.0,2,142 +33866,201667999,Queens,Elmhurst,40.73965,-73.86796,Entire home/apt,60,1,23,2.0,2,144 +33867,12129877,Brooklyn,Crown Heights,40.67252,-73.93918000000001,Entire home/apt,110,2,26,2.21,2,267 +33868,9857739,Brooklyn,Sheepshead Bay,40.588840000000005,-73.95136,Entire home/apt,70,2,59,5.65,1,13 +33869,201696839,Brooklyn,Downtown Brooklyn,40.69608,-73.98384,Private room,100,1,26,2.27,1,131 +33870,748365,Brooklyn,Crown Heights,40.68055,-73.96425,Entire home/apt,200,30,4,0.43,1,4 +33871,201757076,Queens,Briarwood,40.712140000000005,-73.81661,Entire home/apt,93,3,0,,3,15 +33872,149868,Manhattan,Harlem,40.81381,-73.94549,Entire home/apt,125,1,59,5.55,1,262 +33873,177478860,Manhattan,Upper East Side,40.770959999999995,-73.95671999999999,Entire home/apt,140,5,2,0.19,1,0 +33874,2690202,Manhattan,Theater District,40.75987,-73.986,Entire home/apt,375,5,0,,1,0 +33875,16098958,Manhattan,Midtown,40.75047,-73.96935,Entire home/apt,140,30,2,0.26,96,311 +33876,22919533,Brooklyn,Williamsburg,40.711929999999995,-73.95956,Entire home/apt,200,3,32,3.58,2,141 +33877,133425456,Brooklyn,Bedford-Stuyvesant,40.69056,-73.9598,Private room,40,5,1,0.09,1,0 +33878,79657553,Brooklyn,Clinton Hill,40.69042,-73.96046,Private room,44,6,6,0.52,1,1 +33879,8325079,Brooklyn,Williamsburg,40.716120000000004,-73.94468,Entire home/apt,115,6,1,0.09,1,0 +33880,201822098,Brooklyn,Cypress Hills,40.67859,-73.89936,Entire home/apt,120,2,31,2.59,1,99 +33881,199147185,Brooklyn,Sunset Park,40.66359,-73.99486999999999,Entire home/apt,460,1,33,2.75,5,113 +33882,156958091,Brooklyn,Bushwick,40.69319,-73.90692,Private room,40,1,35,2.92,3,0 +33883,6105036,Manhattan,Harlem,40.80527,-73.95106,Private room,90,4,20,1.82,3,283 +33884,201829594,Brooklyn,Bushwick,40.70237,-73.92002,Entire home/apt,150,20,3,0.28,1,127 +33885,201841679,Manhattan,East Village,40.72838,-73.97926,Entire home/apt,260,2,52,4.62,1,141 +33886,5668544,Manhattan,Upper East Side,40.775940000000006,-73.94818000000001,Entire home/apt,200,3,0,,1,132 +33887,2264902,Manhattan,West Village,40.73746,-74.00456,Entire home/apt,350,10,2,0.17,2,0 +33888,201824419,Brooklyn,Bedford-Stuyvesant,40.68828,-73.95201,Private room,65,30,22,1.89,3,365 +33889,21924395,Brooklyn,Bushwick,40.68657,-73.91354,Entire home/apt,63,2,10,0.86,1,0 +33890,201868461,Manhattan,West Village,40.73384,-74.00819,Entire home/apt,129,2,55,4.78,1,12 +33891,58477936,Brooklyn,Brighton Beach,40.580220000000004,-73.9558,Entire home/apt,75,2,48,4.02,1,169 +33892,86414330,Queens,Astoria,40.75717,-73.92831,Entire home/apt,100,4,19,3.0,1,31 +33893,33214549,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94977,Entire home/apt,129,1,0,,5,0 +33894,201885926,Manhattan,East Village,40.732690000000005,-73.98833,Private room,111,2,48,4.17,1,0 +33895,201884425,Brooklyn,Cypress Hills,40.68253,-73.87456999999999,Entire home/apt,80,5,25,2.14,3,43 +33896,47015275,Queens,Elmhurst,40.74503,-73.88761,Private room,80,1,3,0.29,2,317 +33897,191571338,Queens,Flushing,40.74686,-73.82191999999999,Private room,59,1,49,4.31,4,72 +33898,78643953,Brooklyn,Bushwick,40.68875,-73.916,Entire home/apt,159,3,20,3.14,2,258 +33899,191571338,Queens,Flushing,40.74293,-73.81868,Private room,55,1,43,3.58,4,81 +33900,156958091,Brooklyn,Bushwick,40.69307,-73.90541,Private room,65,1,37,3.1,3,0 +33901,201824419,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95130999999999,Private room,65,30,21,2.05,3,365 +33902,69527,Brooklyn,Bushwick,40.69037,-73.90679,Private room,85,14,11,2.2,1,55 +33903,201909387,Brooklyn,Downtown Brooklyn,40.6973,-73.98359,Private room,70,30,1,0.1,1,0 +33904,48498020,Brooklyn,Crown Heights,40.67434,-73.95549,Private room,40,7,3,0.25,1,0 +33905,12223329,Brooklyn,Cobble Hill,40.68542,-73.99673,Entire home/apt,300,2,18,1.56,1,61 +33906,23188519,Brooklyn,Bedford-Stuyvesant,40.695609999999995,-73.94972,Private room,75,30,22,1.83,6,318 +33907,23188519,Brooklyn,Bedford-Stuyvesant,40.69323,-73.94993000000001,Private room,68,30,14,1.26,6,365 +33908,50951460,Manhattan,Harlem,40.8275,-73.94323,Private room,60,1,14,1.35,1,310 +33909,199315366,Manhattan,Upper West Side,40.78803,-73.97431999999999,Private room,90,3,1,0.09,1,0 +33910,46182994,Brooklyn,Flatlands,40.63183,-73.92229,Entire home/apt,110,2,30,2.51,1,327 +33911,18523979,Queens,Sunnyside,40.74521,-73.91353000000001,Private room,80,1,4,1.74,1,330 +33912,26030112,Brooklyn,Williamsburg,40.71714,-73.95783,Private room,190,2,3,0.36,1,0 +33913,7342104,Brooklyn,Gowanus,40.68071,-73.98201,Private room,66,3,3,0.33,1,0 +33914,3395693,Queens,Long Island City,40.755959999999995,-73.92144,Private room,60,15,3,0.29,1,148 +33915,55997024,Brooklyn,Crown Heights,40.67228,-73.91841,Entire home/apt,125,2,24,2.17,1,55 +33916,27951037,Queens,Ditmars Steinway,40.77592,-73.90754,Entire home/apt,65,6,19,1.88,2,7 +33917,201824419,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95145,Private room,55,30,22,2.03,3,365 +33918,201893473,Bronx,Concourse,40.832240000000006,-73.92068,Private room,38,5,6,0.52,1,188 +33919,201884425,Brooklyn,Cypress Hills,40.68237,-73.87291,Entire home/apt,80,5,22,1.93,3,60 +33920,11460365,Brooklyn,Bedford-Stuyvesant,40.67844,-73.93831,Private room,200,1,14,1.24,1,22 +33921,3710483,Manhattan,Hell's Kitchen,40.75566,-73.99916999999999,Entire home/apt,200,2,3,0.26,1,0 +33922,202070950,Manhattan,Washington Heights,40.85333,-73.9305,Private room,100,7,0,,1,365 +33923,202074215,Brooklyn,Bedford-Stuyvesant,40.685629999999996,-73.91988,Entire home/apt,89,2,52,4.38,2,18 +33924,143330625,Manhattan,Upper East Side,40.76943,-73.95971,Private room,82,2,8,0.68,1,0 +33925,156484505,Brooklyn,Williamsburg,40.71216,-73.95683000000001,Private room,115,2,50,4.21,2,322 +33926,156484505,Brooklyn,Williamsburg,40.7116,-73.95606,Private room,100,2,43,3.65,2,363 +33927,41769353,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94581,Private room,45,5,0,,1,0 +33928,202096567,Brooklyn,Windsor Terrace,40.65667,-73.97908000000001,Entire home/apt,390,5,0,,1,15 +33929,481630,Brooklyn,Bedford-Stuyvesant,40.687059999999995,-73.94368,Entire home/apt,100,9,5,0.52,2,55 +33930,2304932,Manhattan,Chelsea,40.74443,-74.0029,Entire home/apt,300,5,10,0.87,1,4 +33931,142590597,Brooklyn,East New York,40.6743,-73.87368000000001,Private room,119,1,6,2.22,6,180 +33932,440022,Manhattan,West Village,40.73001,-74.00562,Entire home/apt,150,60,1,0.2,1,0 +33933,191571338,Queens,Flushing,40.74674,-73.82298,Private room,55,1,61,5.2,4,88 +33934,202110598,Manhattan,Upper West Side,40.799690000000005,-73.9635,Entire home/apt,150,3,4,0.37,1,0 +33935,37221425,Manhattan,Theater District,40.75942,-73.98664000000001,Private room,149,4,22,2.03,1,65 +33936,2280048,Brooklyn,East Flatbush,40.66097,-73.9319,Entire home/apt,79,4,15,1.27,1,174 +33937,1339545,Brooklyn,Park Slope,40.6703,-73.98003,Entire home/apt,150,3,28,2.58,2,57 +33938,202131439,Queens,Rockaway Beach,40.58937,-73.81326999999999,Private room,49,1,15,1.33,1,345 +33939,75657939,Brooklyn,Bedford-Stuyvesant,40.69315,-73.93911999999999,Entire home/apt,175,1,53,4.91,1,84 +33940,129596284,Brooklyn,Bushwick,40.70105,-73.92183,Private room,40,4,5,0.42,1,0 +33941,47424665,Queens,Ridgewood,40.706759999999996,-73.91107,Entire home/apt,280,2,40,3.53,2,104 +33942,137358866,Manhattan,Harlem,40.81657,-73.94261999999999,Private room,33,30,3,0.46,103,189 +33943,172864847,Manhattan,Theater District,40.759640000000005,-73.98731,Private room,100,1,137,12.05,1,36 +33944,64540550,Brooklyn,Bushwick,40.68974,-73.91449,Private room,31,4,10,0.85,1,0 +33945,197190247,Manhattan,Hell's Kitchen,40.76587,-73.98878,Shared room,75,1,33,2.79,7,225 +33946,141204556,Brooklyn,Williamsburg,40.7109,-73.96478,Private room,109,30,43,3.72,2,365 +33947,141204556,Brooklyn,Williamsburg,40.71013,-73.9637,Private room,109,30,37,3.14,2,361 +33948,141204841,Brooklyn,Williamsburg,40.70978,-73.96424,Private room,95,30,33,3.15,2,365 +33949,141204841,Brooklyn,Williamsburg,40.70915,-73.96479000000001,Private room,95,30,35,2.97,2,365 +33950,5073548,Manhattan,East Village,40.72696,-73.9811,Entire home/apt,300,3,6,0.94,1,0 +33951,8534610,Manhattan,Harlem,40.811890000000005,-73.94136999999999,Private room,90,2,23,2.09,1,104 +33952,199535935,Staten Island,St. George,40.646409999999996,-74.08502,Entire home/apt,130,2,52,4.6,1,96 +33953,202268676,Brooklyn,Fort Greene,40.6873,-73.97906,Entire home/apt,125,7,3,0.28,1,33 +33954,125059640,Brooklyn,Bedford-Stuyvesant,40.695159999999994,-73.93462,Entire home/apt,125,3,2,0.17,1,0 +33955,199887038,Queens,Ditmars Steinway,40.76961,-73.90805,Private room,60,2,0,,2,0 +33956,3552356,Brooklyn,Bushwick,40.69995,-73.91802,Private room,35,5,2,0.18,1,0 +33957,187008191,Bronx,Concourse,40.83285,-73.92158,Private room,45,1,43,3.66,1,205 +33958,202303852,Brooklyn,Williamsburg,40.70528,-73.934,Entire home/apt,250,3,7,0.71,1,17 +33959,4219564,Manhattan,West Village,40.73162,-74.00228,Entire home/apt,300,2,22,3.11,1,168 +33960,5778935,Brooklyn,Clinton Hill,40.69239,-73.96538000000001,Entire home/apt,135,2,4,0.36,1,0 +33961,202307843,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95096,Entire home/apt,108,2,19,1.67,1,0 +33962,190921808,Manhattan,Hell's Kitchen,40.755179999999996,-73.99706,Private room,45,30,2,0.32,47,347 +33963,19899115,Brooklyn,Crown Heights,40.6776,-73.95094,Private room,50,2,12,1.01,2,0 +33964,202318295,Manhattan,East Harlem,40.79424,-73.9429,Private room,50,5,4,0.39,1,32 +33965,202319331,Manhattan,Lower East Side,40.711940000000006,-73.97792,Private room,80,4,6,1.7,1,0 +33966,190921808,Manhattan,Hell's Kitchen,40.75496,-73.99715,Private room,45,7,4,0.49,47,336 +33967,202324391,Manhattan,Hell's Kitchen,40.76339,-73.98866,Private room,150,1,30,2.59,1,66 +33968,2685092,Brooklyn,Prospect Heights,40.67262,-73.96285999999999,Entire home/apt,115,5,2,0.19,1,19 +33969,20909506,Queens,Astoria,40.7648,-73.91174000000001,Private room,40,3,7,0.61,2,0 +33970,185914925,Queens,Hollis,40.714459999999995,-73.75968,Private room,75,2,21,1.77,2,65 +33971,135093573,Queens,Long Island City,40.756479999999996,-73.93389,Entire home/apt,80,3,48,4.15,1,209 +33972,126967409,Brooklyn,Bedford-Stuyvesant,40.6903,-73.96008,Entire home/apt,82,2,0,,1,13 +33973,111816745,Manhattan,Upper East Side,40.770759999999996,-73.94757,Entire home/apt,125,2,8,1.02,1,1 +33974,19303369,Queens,Woodside,40.74296,-73.90328000000001,Private room,39,30,3,0.29,37,32 +33975,200239515,Queens,Woodside,40.74102,-73.89358,Private room,40,30,3,0.29,15,0 +33976,109507109,Queens,Flushing,40.76005,-73.83447,Private room,60,2,21,2.04,1,51 +33977,202449469,Queens,Rosedale,40.65197,-73.7461,Entire home/apt,100,1,33,2.86,1,171 +33978,16253164,Manhattan,Lower East Side,40.71536,-73.98951,Entire home/apt,110,5,3,0.28,1,1 +33979,62792657,Brooklyn,Boerum Hill,40.68647,-73.98196999999999,Entire home/apt,350,2,6,0.53,1,0 +33980,50116095,Manhattan,Harlem,40.83136,-73.94299000000001,Private room,65,4,4,0.38,1,188 +33981,193502084,Brooklyn,Borough Park,40.63886,-74.00391,Private room,40,1,26,2.29,8,0 +33982,126119576,Brooklyn,Williamsburg,40.71027,-73.9468,Private room,74,3,29,2.6,2,44 +33983,202350344,Queens,East Elmhurst,40.76109,-73.88898,Private room,40,2,32,2.86,2,236 +33984,5848252,Brooklyn,Flatbush,40.65323,-73.96372,Entire home/apt,70,2,11,0.93,1,0 +33985,80533986,Manhattan,East Harlem,40.7904,-73.94785,Private room,113,2,13,5.13,1,1 +33986,37370465,Manhattan,Lower East Side,40.71857,-73.98973000000001,Private room,74,3,15,1.34,1,280 +33987,202587266,Manhattan,Gramercy,40.73502,-73.986,Entire home/apt,125,2,34,3.11,1,12 +33988,149296850,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93862,Private room,75,2,2,0.19,4,337 +33989,71725161,Brooklyn,Sunset Park,40.641490000000005,-74.02325,Entire home/apt,99,4,20,2.49,2,146 +33990,149296850,Brooklyn,Bedford-Stuyvesant,40.69335,-73.9369,Private room,79,2,2,0.19,4,338 +33991,71978141,Manhattan,Lower East Side,40.71958,-73.98284,Entire home/apt,190,3,8,0.79,1,79 +33992,202384697,Manhattan,Upper West Side,40.789809999999996,-73.9697,Entire home/apt,275,14,0,,1,15 +33993,200261161,Manhattan,Upper West Side,40.796820000000004,-73.96282,Private room,67,1,26,6.19,3,37 +33994,38593087,Brooklyn,Williamsburg,40.70685,-73.96663000000001,Private room,82,1,25,2.17,2,64 +33995,23542079,Brooklyn,East Flatbush,40.6442,-73.93266,Private room,45,3,35,3.01,2,30 +33996,202636642,Manhattan,Upper West Side,40.79485,-73.9755,Entire home/apt,146,3,28,3.31,1,158 +33997,178543960,Brooklyn,Greenpoint,40.721,-73.94143000000001,Shared room,41,30,0,,10,365 +33998,178543960,Brooklyn,Greenpoint,40.72133,-73.93995,Shared room,38,30,1,0.11,10,365 +33999,12750945,Manhattan,Chelsea,40.73968,-73.99746,Private room,150,2,41,3.54,4,316 +34000,198933477,Queens,St. Albans,40.68988,-73.76308,Private room,208,1,0,,1,364 +34001,35606248,Brooklyn,Bushwick,40.70458,-73.92753,Private room,95,2,23,2.08,5,361 +34002,35606248,Brooklyn,Bushwick,40.702740000000006,-73.9263,Private room,82,2,24,2.14,5,365 +34003,141362117,Brooklyn,Williamsburg,40.7076,-73.93426,Private room,67,2,32,2.8,2,348 +34004,141362117,Brooklyn,Williamsburg,40.70521,-73.93554,Private room,67,2,33,2.88,2,359 +34005,1902114,Manhattan,Midtown,40.75707,-73.96417,Entire home/apt,250,2,12,1.01,1,14 +34006,104286680,Manhattan,Chelsea,40.750029999999995,-73.99589,Entire home/apt,250,14,1,0.09,1,88 +34007,201757076,Queens,Briarwood,40.712509999999995,-73.81674,Private room,70,1,22,1.89,3,0 +34008,187153824,Brooklyn,East New York,40.663000000000004,-73.86723,Entire home/apt,85,3,28,2.41,1,19 +34009,8266306,Manhattan,East Village,40.72847,-73.98807,Entire home/apt,150,2,14,1.36,1,0 +34010,200380610,Manhattan,Hell's Kitchen,40.76717,-73.98614,Entire home/apt,185,30,0,,65,342 +34011,101388075,Manhattan,Harlem,40.82237,-73.94001,Entire home/apt,104,1,18,1.53,1,34 +34012,21146326,Manhattan,Chinatown,40.717940000000006,-73.99686,Private room,75,3,4,0.4,2,0 +34013,32165430,Brooklyn,Williamsburg,40.7045,-73.937,Private room,60,3,1,0.09,1,0 +34014,202741872,Manhattan,Hell's Kitchen,40.76782,-73.98351,Entire home/apt,250,1,34,3.01,1,20 +34015,200380610,Manhattan,Murray Hill,40.74389,-73.97149,Entire home/apt,340,30,0,,65,364 +34016,21150974,Brooklyn,Sunset Park,40.66361,-73.99246,Private room,50,2,14,1.22,1,0 +34017,202757964,Brooklyn,Williamsburg,40.71771,-73.96431,Entire home/apt,185,30,2,0.32,6,304 +34018,200380610,Manhattan,Chelsea,40.74037,-74.00015,Entire home/apt,210,30,0,,65,364 +34019,105485520,Queens,Fresh Meadows,40.73751,-73.7839,Entire home/apt,285,2,9,0.78,1,0 +34020,34263302,Manhattan,Harlem,40.80681,-73.95119,Private room,125,1,55,4.81,1,79 +34021,190921808,Manhattan,Hell's Kitchen,40.75503,-73.99724,Private room,53,30,0,,47,316 +34022,91578701,Brooklyn,Flatbush,40.64127,-73.95525,Private room,45,1,9,1.13,2,0 +34023,17477908,Manhattan,Upper West Side,40.79514,-73.96687,Entire home/apt,250,30,1,0.1,10,205 +34024,202766548,Manhattan,Chelsea,40.748290000000004,-74.00461999999999,Entire home/apt,425,2,5,0.44,1,13 +34025,202766239,Queens,Ridgewood,40.70225,-73.90177,Private room,50,1,5,0.43,1,0 +34026,35487412,Queens,Jackson Heights,40.7523,-73.87204,Private room,46,3,12,1.02,1,5 +34027,176971425,Manhattan,Little Italy,40.71765,-73.99798,Private room,140,31,0,,1,83 +34028,202788450,Manhattan,East Village,40.7246,-73.97686999999999,Private room,58,4,20,1.69,1,10 +34029,2014051,Brooklyn,Fort Greene,40.6881,-73.97641999999999,Private room,86,2,7,1.02,1,75 +34030,3935522,Brooklyn,South Slope,40.66636,-73.99051999999999,Entire home/apt,111,2,6,0.58,1,12 +34031,11453805,Manhattan,Lower East Side,40.72078,-73.98761999999999,Entire home/apt,207,2,3,0.26,1,0 +34032,85350993,Brooklyn,Williamsburg,40.70626,-73.92921,Private room,47,13,3,0.26,1,88 +34033,6738579,Bronx,Morrisania,40.83201,-73.89996,Entire home/apt,140,2,3,0.27,1,27 +34034,202849060,Brooklyn,Williamsburg,40.712579999999996,-73.95764,Private room,90,21,6,0.51,1,38 +34035,202833337,Queens,Cambria Heights,40.696979999999996,-73.72962,Private room,40,1,15,1.34,1,361 +34036,202873307,Brooklyn,Sunset Park,40.64992,-74.01169,Entire home/apt,750,1,12,1.2,1,364 +34037,29101658,Brooklyn,Boerum Hill,40.686840000000004,-73.98167,Private room,80,2,6,0.53,1,0 +34038,104311294,Queens,Corona,40.739329999999995,-73.84851,Entire home/apt,100,2,2,0.18,1,0 +34039,202979735,Manhattan,Hell's Kitchen,40.76092,-73.9922,Private room,180,2,5,0.48,1,16 +34040,197190247,Manhattan,Hell's Kitchen,40.76405,-73.98695,Shared room,75,1,50,4.21,7,225 +34041,12960612,Brooklyn,Bushwick,40.6984,-73.92766999999999,Entire home/apt,275,2,0,,1,0 +34042,202979435,Brooklyn,Gowanus,40.68293,-73.98979,Private room,95,30,1,0.09,2,311 +34043,202986805,Brooklyn,Crown Heights,40.67175,-73.92116999999999,Private room,46,3,12,1.01,1,19 +34044,202979435,Brooklyn,Gowanus,40.68188,-73.98978000000001,Private room,96,30,1,0.1,2,333 +34045,184669674,Queens,Middle Village,40.71128,-73.89338000000001,Private room,44,3,17,1.73,1,126 +34046,8654456,Brooklyn,Sunset Park,40.64985,-74.00835,Entire home/apt,100,2,37,3.22,1,0 +34047,22780462,Queens,Kew Gardens Hills,40.72048,-73.81458,Entire home/apt,139,4,6,0.58,2,282 +34048,107434423,Manhattan,Theater District,40.761959999999995,-73.98536,Entire home/apt,280,30,2,0.36,232,218 +34049,12512629,Queens,Long Island City,40.74427,-73.95477,Entire home/apt,125,5,1,0.09,1,0 +34050,141362503,Brooklyn,Williamsburg,40.70596,-73.93847,Private room,80,2,31,2.71,2,365 +34051,12243051,Manhattan,Chelsea,40.74158,-73.99585,Entire home/apt,245,29,0,,96,342 +34052,141362503,Brooklyn,Williamsburg,40.707190000000004,-73.94021,Private room,70,2,37,3.14,2,362 +34053,121771546,Brooklyn,Williamsburg,40.71185,-73.96292,Private room,95,2,41,3.5,2,365 +34054,1836803,Brooklyn,Bedford-Stuyvesant,40.68872,-73.93183,Entire home/apt,130,3,1,0.09,1,17 +34055,121771546,Brooklyn,Williamsburg,40.711529999999996,-73.96453000000001,Private room,110,2,49,4.14,2,335 +34056,20134899,Manhattan,Harlem,40.82607,-73.95124,Private room,54,23,8,0.7,2,35 +34057,1110208,Brooklyn,Bushwick,40.705059999999996,-73.91731,Entire home/apt,100,2,9,0.77,1,0 +34058,24000784,Brooklyn,Sunset Park,40.64456,-74.01135,Private room,45,1,6,0.61,4,32 +34059,4231312,Queens,Ridgewood,40.70458,-73.90269,Entire home/apt,99,3,8,0.69,1,16 +34060,1459377,Brooklyn,Williamsburg,40.71998,-73.94216,Entire home/apt,145,3,3,0.26,1,0 +34061,2822805,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94919,Private room,60,30,3,0.45,8,221 +34062,14463049,Queens,Ridgewood,40.69997,-73.90720999999999,Entire home/apt,275,2,0,,1,0 +34063,24822059,Brooklyn,Clinton Hill,40.682140000000004,-73.96536,Entire home/apt,119,6,2,0.18,1,0 +34064,155668897,Queens,Jamaica,40.66726,-73.78666,Private room,70,5,43,3.61,2,365 +34065,132883657,Brooklyn,Gowanus,40.670759999999994,-73.98903,Entire home/apt,350,2,9,0.81,1,0 +34066,56740664,Brooklyn,Williamsburg,40.71784,-73.95611,Private room,225,4,1,0.16,1,5 +34067,184090548,Brooklyn,Williamsburg,40.71294,-73.95866,Private room,95,2,25,2.19,3,342 +34068,184090548,Brooklyn,Williamsburg,40.71269,-73.95815,Private room,95,2,15,1.28,3,335 +34069,201015598,Brooklyn,Bedford-Stuyvesant,40.69052,-73.94149,Shared room,30,1,32,2.74,17,83 +34070,201015598,Brooklyn,Bedford-Stuyvesant,40.69206,-73.94072,Shared room,30,1,45,3.99,17,84 +34071,69439684,Queens,Elmhurst,40.7396,-73.88119,Entire home/apt,165,1,38,3.31,2,122 +34072,216227,Manhattan,Harlem,40.82226,-73.95569,Private room,62,1,68,5.86,3,310 +34073,203123198,Brooklyn,East Flatbush,40.66091,-73.93244,Entire home/apt,149,2,24,2.11,1,145 +34074,203123161,Bronx,Concourse,40.8212,-73.92859,Entire home/apt,80,3,40,3.79,2,280 +34075,167459000,Brooklyn,Bushwick,40.69482,-73.91096,Private room,60,1,0,,1,5 +34076,2163625,Brooklyn,Windsor Terrace,40.653,-73.97717,Entire home/apt,120,7,0,,2,0 +34077,149296850,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93735,Shared room,79,2,2,0.19,4,90 +34078,149296850,Brooklyn,Bedford-Stuyvesant,40.69359,-73.93911,Private room,80,2,3,0.26,4,82 +34079,194843581,Manhattan,Upper West Side,40.80127,-73.96166,Private room,72,2,14,1.19,4,0 +34080,197190247,Manhattan,Hell's Kitchen,40.764559999999996,-73.98818,Shared room,75,1,38,3.26,7,225 +34081,197190247,Manhattan,Hell's Kitchen,40.76462,-73.9886,Shared room,75,1,29,2.47,7,225 +34082,197190247,Manhattan,Hell's Kitchen,40.76441,-73.98692,Shared room,75,1,39,3.32,7,221 +34083,183707967,Manhattan,Washington Heights,40.85419,-73.93013,Entire home/apt,140,2,38,3.3,4,176 +34084,2954574,Brooklyn,Bedford-Stuyvesant,40.691829999999996,-73.94185,Private room,65,7,0,,1,105 +34085,39528519,Manhattan,Lower East Side,40.7111,-73.98689,Shared room,35,14,1,0.15,28,322 +34086,203235966,Manhattan,Inwood,40.86203,-73.93037,Entire home/apt,71,1,7,0.67,1,1 +34087,34883773,Brooklyn,Bedford-Stuyvesant,40.689440000000005,-73.95089,Private room,50,7,1,0.12,1,0 +34088,176950173,Manhattan,Midtown,40.764759999999995,-73.97511,Entire home/apt,395,1,0,,2,328 +34089,176950173,Manhattan,Midtown,40.764590000000005,-73.97529,Entire home/apt,395,1,0,,2,328 +34090,16779679,Brooklyn,Williamsburg,40.71171,-73.96300000000001,Entire home/apt,200,4,3,0.31,1,0 +34091,203268839,Manhattan,Civic Center,40.71389,-74.00484,Entire home/apt,199,3,35,2.96,1,255 +34092,203266238,Bronx,Morris Park,40.85322,-73.85144,Private room,75,5,6,0.55,5,29 +34093,203277214,Manhattan,Harlem,40.81033,-73.94286,Entire home/apt,150,3,30,2.59,1,159 +34094,32866463,Brooklyn,Bay Ridge,40.63328,-74.01978000000001,Entire home/apt,145,1,41,3.63,2,139 +34095,176950781,Manhattan,Theater District,40.75762,-73.98486,Entire home/apt,325,1,0,,1,360 +34096,50169207,Manhattan,East Harlem,40.79371,-73.93995,Entire home/apt,100,2,3,0.28,2,67 +34097,7853731,Brooklyn,Crown Heights,40.67458,-73.96079,Private room,55,14,0,,2,61 +34098,3399151,Manhattan,Nolita,40.72235,-73.99454,Entire home/apt,140,1,9,0.97,1,11 +34099,203307016,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91689000000001,Private room,65,1,44,3.73,2,75 +34100,197354631,Brooklyn,Williamsburg,40.71407,-73.93936,Private room,67,30,2,1.33,3,24 +34101,197354631,Brooklyn,Williamsburg,40.715379999999996,-73.94148,Private room,67,30,3,0.43,3,23 +34102,203339760,Brooklyn,Sunset Park,40.66153,-73.99297,Private room,65,1,6,0.65,1,0 +34103,1524602,Brooklyn,Williamsburg,40.71653,-73.94131,Private room,48,90,0,,1,358 +34104,203357182,Manhattan,East Village,40.72769,-73.98498000000001,Private room,150,1,3,2.09,1,27 +34105,4296422,Manhattan,Upper West Side,40.78246,-73.97654,Entire home/apt,155,7,0,,1,0 +34106,194843581,Manhattan,Upper West Side,40.79908,-73.96215,Private room,87,1,14,1.19,4,0 +34107,19433714,Manhattan,Greenwich Village,40.72674,-73.99673,Entire home/apt,200,3,6,0.55,3,21 +34108,1892281,Brooklyn,East Flatbush,40.65887,-73.9198,Entire home/apt,250,3,15,1.3,1,266 +34109,194843581,Manhattan,Upper West Side,40.79936,-73.96243,Private room,79,1,49,4.16,4,1 +34110,54658419,Brooklyn,Williamsburg,40.7117,-73.9608,Private room,100,3,8,0.69,2,0 +34111,1494238,Brooklyn,Crown Heights,40.6726,-73.93992,Entire home/apt,135,3,24,2.44,1,246 +34112,203397896,Brooklyn,Brownsville,40.66648,-73.91375,Entire home/apt,98,2,40,4.15,1,223 +34113,186642041,Brooklyn,Bergen Beach,40.62697,-73.91356999999999,Entire home/apt,121,30,0,,1,88 +34114,17477908,Manhattan,Upper West Side,40.79473,-73.96744,Entire home/apt,350,30,2,0.19,10,365 +34115,202993649,Manhattan,East Harlem,40.813790000000004,-73.93536,Private room,90,1,9,0.81,1,0 +34116,138635224,Manhattan,Washington Heights,40.85671,-73.93011,Shared room,40,1,19,1.82,2,341 +34117,203504228,Manhattan,SoHo,40.72367,-73.99868000000001,Entire home/apt,1250,4,21,2.26,1,125 +34118,319077,Brooklyn,Clinton Hill,40.6855,-73.96112,Entire home/apt,999,1,2,0.22,4,365 +34119,21881605,Brooklyn,Crown Heights,40.67788,-73.94525,Private room,100,2,0,,2,364 +34120,6786361,Brooklyn,Bushwick,40.6964,-73.92675,Private room,65,3,13,1.21,2,302 +34121,162171692,Manhattan,Upper East Side,40.77997,-73.95214,Entire home/apt,99,7,25,2.28,1,95 +34122,194409758,Manhattan,Upper East Side,40.77681,-73.95472,Entire home/apt,150,2,6,0.54,1,0 +34123,33526253,Brooklyn,Windsor Terrace,40.65639,-73.98241999999999,Entire home/apt,250,1,2,0.18,1,0 +34124,33074595,Brooklyn,Bedford-Stuyvesant,40.68528,-73.958,Entire home/apt,179,4,28,2.99,1,130 +34125,12275644,Brooklyn,Gowanus,40.66774,-73.99292,Private room,70,2,0,,1,0 +34126,40238727,Manhattan,Upper East Side,40.77977,-73.95756999999999,Shared room,115,2,43,3.72,1,72 +34127,160343057,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91954,Entire home/apt,158,2,8,0.69,1,0 +34128,13412408,Manhattan,Greenwich Village,40.72848,-74.00116,Private room,200,1,5,0.47,1,0 +34129,40119874,Brooklyn,Prospect-Lefferts Gardens,40.66171,-73.94417,Private room,49,1,85,8.64,2,0 +34130,7825844,Brooklyn,Williamsburg,40.716029999999996,-73.9409,Entire home/apt,128,5,0,,1,35 +34131,17322419,Manhattan,Kips Bay,40.740790000000004,-73.98303,Entire home/apt,750,31,0,,1,365 +34132,203585325,Brooklyn,Prospect-Lefferts Gardens,40.6597,-73.94863000000001,Entire home/apt,200,2,4,0.34,1,11 +34133,19303369,Queens,Woodside,40.74353,-73.90443,Private room,35,29,0,,37,30 +34134,97168718,Manhattan,Upper West Side,40.78802,-73.97253,Entire home/apt,250,2,0,,2,38 +34135,10120673,Queens,Jackson Heights,40.750170000000004,-73.89219,Entire home/apt,180,5,2,0.21,2,363 +34136,63260355,Brooklyn,Williamsburg,40.70975,-73.95651,Private room,80,1,2,0.19,1,0 +34137,4915341,Manhattan,West Village,40.73666,-73.99851,Private room,59,7,5,0.43,3,3 +34138,203624751,Brooklyn,Carroll Gardens,40.67738,-73.99723,Entire home/apt,180,3,17,1.45,1,106 +34139,48539240,Manhattan,Gramercy,40.7348,-73.98312,Private room,189,1,1,0.09,2,0 +34140,12460642,Brooklyn,Bedford-Stuyvesant,40.68345,-73.93874,Entire home/apt,95,3,6,0.54,1,0 +34141,48539240,Manhattan,Gramercy,40.73411,-73.98289,Private room,199,1,1,0.09,2,0 +34142,7615002,Manhattan,East Village,40.72527,-73.98338000000001,Private room,100,1,33,2.8,2,1 +34143,1330116,Manhattan,Greenwich Village,40.73237,-73.99344,Private room,200,30,1,0.09,1,90 +34144,83856521,Manhattan,West Village,40.73264,-74.0062,Entire home/apt,275,1,3,0.26,1,0 +34145,2688409,Brooklyn,Borough Park,40.64436,-73.99866,Private room,55,3,0,,1,363 +34146,203750889,Brooklyn,Bedford-Stuyvesant,40.684259999999995,-73.9451,Private room,62,2,18,1.8,3,356 +34147,28576665,Manhattan,Chinatown,40.71694,-73.99032,Private room,93,1,12,1.08,2,11 +34148,203750889,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9442,Private room,62,2,29,3.13,3,324 +34149,88900561,Manhattan,East Harlem,40.80203,-73.93885,Shared room,60,1,17,1.48,1,0 +34150,203750889,Brooklyn,Bedford-Stuyvesant,40.68374,-73.94368,Private room,55,2,20,1.7,3,353 +34151,15820210,Brooklyn,Williamsburg,40.70917,-73.93513,Private room,50,2,25,2.26,2,21 +34152,203793342,Brooklyn,Bedford-Stuyvesant,40.698170000000005,-73.93776,Private room,35,2,21,1.88,1,1 +34153,158178970,Staten Island,Randall Manor,40.62972,-74.12539,Private room,22,1,21,1.77,3,261 +34154,43809903,Manhattan,Upper West Side,40.80209,-73.96741999999999,Private room,70,2,11,1.07,4,4 +34155,43809903,Manhattan,Upper West Side,40.80233,-73.96741999999999,Entire home/apt,350,1,8,0.88,4,135 +34156,42400797,Manhattan,Chelsea,40.74217,-73.99649000000001,Entire home/apt,98,12,0,,1,0 +34157,349596,Brooklyn,Clinton Hill,40.68477,-73.96799,Entire home/apt,189,10,3,0.32,1,14 +34158,185908506,Bronx,Edenwald,40.8859,-73.83516999999999,Entire home/apt,95,3,5,0.66,3,311 +34159,203572377,Staten Island,Prince's Bay,40.527,-74.20940999999999,Private room,118,1,0,,1,353 +34160,579017,Brooklyn,Greenpoint,40.73438,-73.95863,Entire home/apt,230,10,1,0.3,1,0 +34161,115827173,Staten Island,Willowbrook,40.598859999999995,-74.13217,Entire home/apt,249,4,9,0.8,2,351 +34162,114574,Manhattan,Harlem,40.81523,-73.9463,Private room,75,2,6,0.55,2,68 +34163,3191371,Manhattan,East Harlem,40.807140000000004,-73.93746999999999,Private room,80,1,29,3.04,3,193 +34164,2102205,Manhattan,West Village,40.73894,-74.00108,Entire home/apt,250,2,15,1.33,1,0 +34165,75405696,Manhattan,Midtown,40.75316,-73.97241,Entire home/apt,450,6,2,0.31,1,48 +34166,57336940,Manhattan,Harlem,40.81561,-73.93692,Entire home/apt,130,3,9,0.78,1,0 +34167,27333268,Manhattan,Upper West Side,40.77159,-73.98215,Entire home/apt,151,5,8,0.73,1,27 +34168,154037433,Queens,Jamaica,40.67022,-73.77296,Private room,90,1,12,1.11,3,86 +34169,203650630,Brooklyn,Coney Island,40.5721,-73.99712,Private room,290,1,1,0.75,1,364 +34170,62533391,Brooklyn,Borough Park,40.63528,-74.00734,Private room,60,1,4,0.84,7,152 +34171,203346157,Manhattan,Chelsea,40.74309,-73.99535,Private room,115,55,11,1.31,1,204 +34172,2849280,Manhattan,Financial District,40.70617,-74.00948000000001,Entire home/apt,200,7,5,0.46,1,0 +34173,18416371,Manhattan,West Village,40.73144,-74.00523000000001,Entire home/apt,250,3,4,0.39,1,0 +34174,203307016,Brooklyn,Bedford-Stuyvesant,40.68031,-73.9186,Private room,44,2,31,2.7,2,77 +34175,203855380,Manhattan,East Village,40.72327,-73.98105,Private room,160,2,17,1.48,1,0 +34176,25720293,Manhattan,Chelsea,40.746759999999995,-74.00308000000001,Entire home/apt,329,4,17,1.53,3,252 +34177,204018218,Manhattan,Hell's Kitchen,40.76668,-73.99656,Entire home/apt,135,2,21,2.78,1,5 +34178,10260340,Brooklyn,Bedford-Stuyvesant,40.69088,-73.94499,Private room,70,1,4,0.4,1,0 +34179,96347734,Manhattan,East Village,40.72617,-73.97934000000001,Entire home/apt,275,2,47,4.05,1,275 +34180,75385686,Manhattan,Washington Heights,40.83668,-73.94476,Private room,37,13,2,0.17,1,0 +34181,8731758,Brooklyn,Williamsburg,40.71326,-73.9644,Entire home/apt,175,5,5,0.46,1,198 +34182,1462483,Manhattan,Midtown,40.74585,-73.98236999999999,Private room,100,4,32,2.87,2,174 +34183,68454791,Brooklyn,Bedford-Stuyvesant,40.688629999999996,-73.93902,Private room,55,2,6,0.53,1,79 +34184,2234119,Manhattan,Upper East Side,40.77093,-73.95485,Entire home/apt,86,3,12,1.08,1,0 +34185,6791240,Manhattan,Midtown,40.75546,-73.98085999999999,Entire home/apt,200,4,12,1.24,1,0 +34186,185679950,Queens,Elmhurst,40.74103,-73.88253,Private room,59,2,8,0.76,1,331 +34187,10476100,Manhattan,Chelsea,40.73916,-73.99471,Entire home/apt,85,14,1,0.15,1,16 +34188,109196702,Manhattan,Upper East Side,40.77648,-73.95428000000001,Entire home/apt,215,2,0,,2,0 +34189,19303369,Queens,Woodside,40.74446,-73.90465999999999,Private room,45,30,5,0.51,37,1 +34190,5179523,Brooklyn,Williamsburg,40.71145,-73.95302,Entire home/apt,315,1,44,3.84,3,113 +34191,8052047,Brooklyn,Prospect-Lefferts Gardens,40.65421,-73.96155,Shared room,47,2,10,0.93,1,0 +34192,121772455,Brooklyn,Downtown Brooklyn,40.69122,-73.9907,Entire home/apt,149,6,2,0.18,1,11 +34193,7615002,Manhattan,East Village,40.72338,-73.98346,Entire home/apt,100,2,14,1.39,2,5 +34194,199214751,Queens,Fresh Meadows,40.7392,-73.79181,Entire home/apt,250,1,1,0.09,1,363 +34195,99296570,Brooklyn,Brighton Beach,40.57987,-73.95889,Private room,65,1,43,3.82,5,283 +34196,114375702,Manhattan,Upper West Side,40.784929999999996,-73.97683,Private room,50,4,4,0.42,1,0 +34197,1409262,Brooklyn,Flatbush,40.64188,-73.95317,Private room,65,2,2,0.19,6,287 +34198,49786789,Manhattan,Inwood,40.86945,-73.92123000000001,Entire home/apt,106,30,1,0.25,1,8 +34199,183127881,Brooklyn,Canarsie,40.64651,-73.90043,Private room,59,2,28,3.19,4,178 +34200,114216175,Manhattan,Upper West Side,40.78986,-73.96688,Entire home/apt,195,2,21,1.83,1,2 +34201,204248415,Brooklyn,Bedford-Stuyvesant,40.68007,-73.92963,Entire home/apt,150,5,36,3.62,1,145 +34202,23074465,Brooklyn,Bushwick,40.701809999999995,-73.91566,Private room,65,1,44,5.34,3,27 +34203,198645701,Manhattan,Hell's Kitchen,40.761759999999995,-73.98980999999999,Entire home/apt,700,4,19,1.63,1,134 +34204,166809666,Manhattan,East Harlem,40.80603,-73.94114,Entire home/apt,275,2,27,2.87,1,29 +34205,42991956,Manhattan,Lower East Side,40.719359999999995,-73.99229,Entire home/apt,137,5,22,2.19,1,40 +34206,1409262,Brooklyn,Flatbush,40.6417,-73.95251,Private room,55,2,2,0.19,6,287 +34207,36444228,Brooklyn,Williamsburg,40.71671,-73.94094,Private room,70,6,1,0.1,1,287 +34208,31619241,Brooklyn,Fort Greene,40.68925,-73.97108,Entire home/apt,165,2,16,3.72,1,29 +34209,158972140,Bronx,Concourse Village,40.82855,-73.91856,Private room,47,1,9,0.82,2,332 +34210,19923039,Brooklyn,Bushwick,40.701440000000005,-73.92094,Private room,35,5,3,0.27,1,0 +34211,19536409,Queens,East Elmhurst,40.75817,-73.89893000000001,Entire home/apt,85,1,43,3.72,1,0 +34212,9736367,Brooklyn,Bedford-Stuyvesant,40.68652,-73.94848,Private room,46,3,5,0.47,1,0 +34213,32717107,Brooklyn,Boerum Hill,40.690329999999996,-73.98994,Entire home/apt,130,3,6,0.51,1,194 +34214,10113487,Manhattan,Kips Bay,40.739329999999995,-73.9797,Entire home/apt,185,7,13,1.26,1,292 +34215,3388510,Brooklyn,Flatbush,40.645990000000005,-73.96079,Entire home/apt,100,2,5,0.46,1,0 +34216,79913651,Manhattan,Harlem,40.8183,-73.93828,Private room,52,1,13,1.34,4,167 +34217,95901692,Brooklyn,Bedford-Stuyvesant,40.6875,-73.9588,Private room,150,1,36,3.23,1,29 +34218,40230580,Brooklyn,Clinton Hill,40.684540000000005,-73.96425,Entire home/apt,88,3,8,0.81,1,0 +34219,204335117,Manhattan,Hell's Kitchen,40.763909999999996,-73.99325,Shared room,39,1,44,4.0,1,31 +34220,199833548,Queens,Sunnyside,40.741609999999994,-73.92505,Shared room,40,1,20,1.88,9,343 +34221,107245546,Manhattan,Chelsea,40.74708,-73.99131,Entire home/apt,155,3,11,4.78,3,84 +34222,64453547,Queens,Ditmars Steinway,40.77405,-73.90328000000001,Private room,55,20,0,,3,31 +34223,2163625,Brooklyn,Windsor Terrace,40.650859999999994,-73.97757,Private room,65,2,0,,2,0 +34224,204336983,Manhattan,East Harlem,40.806,-73.94082,Private room,90,2,2,0.18,1,11 +34225,1409262,Brooklyn,Flatbush,40.64118,-73.95245,Private room,54,2,3,0.28,6,286 +34226,1409262,Brooklyn,Flatbush,40.64228,-73.95204,Private room,40,2,4,0.37,6,260 +34227,204346423,Brooklyn,Mill Basin,40.61768,-73.91669,Entire home/apt,85,2,36,3.26,1,322 +34228,19303369,Queens,Elmhurst,40.74022,-73.87614,Private room,34,30,0,,37,0 +34229,624101,Brooklyn,Brooklyn Heights,40.691759999999995,-73.99336,Entire home/apt,132,3,6,0.55,1,0 +34230,13031306,Manhattan,Harlem,40.82372,-73.95121999999999,Private room,80,2,19,1.71,1,0 +34231,200380610,Manhattan,Midtown,40.75019,-73.97045,Entire home/apt,225,30,0,,65,310 +34232,200380610,Manhattan,Upper East Side,40.77093,-73.95873,Entire home/apt,285,30,0,,65,365 +34233,200380610,Manhattan,Midtown,40.75237,-73.9704,Entire home/apt,190,30,0,,65,364 +34234,1418015,Brooklyn,Crown Heights,40.6756,-73.95232,Private room,140,2,41,3.69,4,334 +34235,1441920,Brooklyn,Bedford-Stuyvesant,40.681670000000004,-73.93608,Entire home/apt,87,2,0,,1,0 +34236,64453547,Queens,Ditmars Steinway,40.77377,-73.9048,Private room,50,15,0,,3,0 +34237,22264156,Brooklyn,Clinton Hill,40.694559999999996,-73.96439000000001,Private room,120,1,3,0.63,1,0 +34238,30595682,Manhattan,Hell's Kitchen,40.76795,-73.98432,Entire home/apt,165,2,11,1.04,1,2 +34239,53365451,Brooklyn,Bedford-Stuyvesant,40.6939,-73.93239,Private room,50,6,2,0.18,1,0 +34240,204244117,Manhattan,Harlem,40.82423,-73.95056,Private room,49,1,27,2.41,2,180 +34241,107245546,Manhattan,Chelsea,40.74756,-73.99072,Private room,165,2,5,3.0,3,93 +34242,12337810,Brooklyn,Bedford-Stuyvesant,40.68625,-73.94045,Entire home/apt,192,1,2,0.17,1,0 +34243,204495302,Brooklyn,Bedford-Stuyvesant,40.68049,-73.91918000000001,Entire home/apt,150,2,17,2.34,1,0 +34244,2381030,Brooklyn,Fort Greene,40.688759999999995,-73.97048000000001,Entire home/apt,1200,3,1,0.09,1,0 +34245,134613498,Manhattan,East Village,40.726729999999996,-73.98765999999999,Private room,415,1,2,0.23,7,0 +34246,35983559,Brooklyn,East Flatbush,40.639559999999996,-73.95033000000001,Private room,75,3,10,0.91,3,123 +34247,103681571,Brooklyn,Bedford-Stuyvesant,40.69149,-73.96043,Private room,60,2,5,0.48,1,2 +34248,204527519,Manhattan,Harlem,40.801359999999995,-73.95158,Entire home/apt,100,3,16,1.42,1,0 +34249,46325694,Brooklyn,Williamsburg,40.71219,-73.96301,Entire home/apt,329,4,1,0.16,1,0 +34250,2478675,Brooklyn,Prospect-Lefferts Gardens,40.65614,-73.9584,Private room,39,1,11,2.29,5,309 +34251,10407935,Manhattan,West Village,40.733990000000006,-74.00357,Entire home/apt,89,1,54,4.82,8,2 +34252,48201791,Brooklyn,Flatbush,40.6395,-73.96507,Entire home/apt,150,4,27,2.39,2,29 +34253,94832914,Manhattan,Financial District,40.705709999999996,-74.00675,Entire home/apt,139,3,1,0.27,1,0 +34254,23335317,Manhattan,Chelsea,40.74462,-74.0013,Entire home/apt,230,2,1,1.0,1,77 +34255,54541149,Brooklyn,Williamsburg,40.7159,-73.95905,Private room,75,2,1,0.09,1,0 +34256,204577752,Brooklyn,Williamsburg,40.7154,-73.93926,Entire home/apt,135,2,44,4.11,1,7 +34257,204581148,Manhattan,East Harlem,40.797290000000004,-73.93092,Entire home/apt,185,1,24,2.06,1,314 +34258,25700836,Manhattan,Upper East Side,40.779790000000006,-73.95297,Entire home/apt,128,1,11,0.96,1,30 +34259,23371413,Brooklyn,Crown Heights,40.66483,-73.95883,Entire home/apt,110,4,2,0.2,1,32 +34260,74529394,Manhattan,Midtown,40.74832,-73.98423000000001,Private room,80,5,2,0.17,1,0 +34261,2596736,Manhattan,Chelsea,40.74017,-73.99485,Entire home/apt,175,3,6,0.57,1,5 +34262,9598256,Brooklyn,Prospect Heights,40.67329,-73.96627,Entire home/apt,160,5,6,0.55,1,28 +34263,192554415,Manhattan,East Village,40.7297,-73.98552,Entire home/apt,250,7,16,1.72,1,135 +34264,2264902,Manhattan,West Village,40.73692,-74.00531,Entire home/apt,225,2,17,1.54,2,0 +34265,204733512,Queens,East Elmhurst,40.760870000000004,-73.88375,Private room,45,3,19,1.67,2,0 +34266,178224519,Manhattan,Upper East Side,40.78306,-73.94524,Entire home/apt,150,30,0,,8,364 +34267,204752727,Staten Island,St. George,40.64275,-74.08001,Private room,120,2,1,0.31,1,350 +34268,64680664,Brooklyn,Bushwick,40.68991,-73.91179,Private room,50,2,26,2.5,3,80 +34269,14459075,Manhattan,Morningside Heights,40.80279,-73.96325,Private room,60,2,58,5.67,1,110 +34270,35606248,Brooklyn,Bushwick,40.70265,-73.92605999999999,Private room,70,2,28,2.43,5,359 +34271,35606248,Brooklyn,Bushwick,40.70442,-73.92752,Private room,80,2,30,2.71,5,361 +34272,92772140,Manhattan,Hell's Kitchen,40.76035,-73.99524,Entire home/apt,200,2,22,2.06,1,155 +34273,204773816,Queens,Flushing,40.75785,-73.81948,Entire home/apt,120,3,21,2.09,1,152 +34274,204786430,Queens,Ridgewood,40.70775,-73.90853,Private room,53,7,0,,2,0 +34275,204774833,Queens,Sunnyside,40.745059999999995,-73.92444,Entire home/apt,200,1,1,0.09,1,0 +34276,8749245,Manhattan,Upper West Side,40.78461,-73.98078000000001,Entire home/apt,175,30,2,0.27,1,215 +34277,163482759,Manhattan,SoHo,40.72586,-74.00079000000001,Private room,75,1,14,1.25,1,0 +34278,52602302,Manhattan,Chelsea,40.743120000000005,-73.99573000000001,Entire home/apt,149,5,5,0.45,1,0 +34279,416361,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94587,Private room,150,3,1,0.09,1,179 +34280,1837068,Brooklyn,Bushwick,40.69279,-73.91423,Entire home/apt,110,2,21,2.96,1,13 +34281,200391647,Brooklyn,Park Slope,40.67947,-73.97618,Entire home/apt,150,7,1,0.11,1,0 +34282,104835154,Manhattan,Upper East Side,40.77847,-73.94962,Entire home/apt,147,7,10,0.86,2,11 +34283,257904,Brooklyn,Bedford-Stuyvesant,40.685179999999995,-73.93517,Entire home/apt,150,5,5,0.48,1,0 +34284,26877037,Brooklyn,Sheepshead Bay,40.59887,-73.9579,Private room,138,1,1,0.14,2,269 +34285,73425483,Brooklyn,Bedford-Stuyvesant,40.691759999999995,-73.9383,Private room,135,2,10,1.21,6,249 +34286,204852524,Brooklyn,Gravesend,40.59982,-73.98679,Shared room,100,1,1,0.09,1,363 +34287,29510402,Bronx,Longwood,40.82445,-73.90341,Private room,90,2,1,0.09,3,0 +34288,204852306,Brooklyn,Bedford-Stuyvesant,40.677859999999995,-73.93254,Entire home/apt,500,1,1,0.13,14,53 +34289,204810113,Staten Island,New Brighton,40.63813,-74.0929,Private room,115,3,42,3.8,1,115 +34290,204852306,Brooklyn,Bedford-Stuyvesant,40.678509999999996,-73.93070999999999,Entire home/apt,300,1,1,0.12,14,53 +34291,30532557,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92815999999999,Private room,43,30,1,0.43,5,140 +34292,4356698,Manhattan,Washington Heights,40.85045,-73.93493000000001,Private room,75,2,20,1.74,1,357 +34293,928165,Brooklyn,Bushwick,40.6969,-73.9114,Private room,52,2,12,1.19,1,0 +34294,47504485,Brooklyn,Bensonhurst,40.61183,-73.98219,Private room,85,5,29,2.58,2,58 +34295,204915695,Brooklyn,Sunset Park,40.63729,-74.01046,Private room,50,3,25,2.26,2,108 +34296,200380610,Manhattan,West Village,40.73495,-74.00033,Entire home/apt,483,30,0,,65,364 +34297,200380610,Manhattan,Midtown,40.75524,-73.96382,Entire home/apt,290,30,0,,65,365 +34298,200380610,Manhattan,Midtown,40.76701,-73.98174,Entire home/apt,225,30,0,,65,249 +34299,200380610,Manhattan,Hell's Kitchen,40.76182,-73.99771,Entire home/apt,550,30,0,,65,360 +34300,200380610,Manhattan,Hell's Kitchen,40.76194,-73.99824,Entire home/apt,450,30,0,,65,365 +34301,200380610,Manhattan,Upper East Side,40.78009,-73.95929,Entire home/apt,200,30,0,,65,364 +34302,5809327,Brooklyn,Williamsburg,40.70747,-73.95304,Private room,80,3,6,0.61,1,282 +34303,200380610,Manhattan,Midtown,40.75457,-73.96248,Entire home/apt,360,30,0,,65,364 +34304,200380610,Manhattan,Upper East Side,40.77834,-73.95193,Entire home/apt,210,30,0,,65,364 +34305,200380610,Manhattan,Kips Bay,40.73863,-73.98002,Entire home/apt,210,30,0,,65,364 +34306,200380610,Manhattan,Theater District,40.75994,-73.98673000000001,Entire home/apt,225,30,0,,65,250 +34307,204971560,Brooklyn,Crown Heights,40.66957,-73.95764,Private room,75,1,27,2.47,1,146 +34308,190921808,Manhattan,Hell's Kitchen,40.75516,-73.99547,Private room,120,7,1,0.41,47,338 +34309,189625025,Brooklyn,Williamsburg,40.70844,-73.94415,Private room,70,2,20,1.9,2,345 +34310,126897791,Manhattan,Financial District,40.70662,-74.00562,Private room,1700,120,0,,1,0 +34311,195693063,Manhattan,Harlem,40.82244,-73.94994,Entire home/apt,195,2,42,4.08,2,257 +34312,59591371,Manhattan,East Harlem,40.79889,-73.94489,Entire home/apt,89,6,48,4.21,1,15 +34313,205032591,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94762,Private room,65,2,21,2.04,4,334 +34314,23619449,Manhattan,Morningside Heights,40.81308,-73.95993,Private room,45,31,1,0.1,1,1 +34315,187870198,Queens,Rockaway Beach,40.58511,-73.81756999999999,Private room,53,2,7,0.61,1,252 +34316,179745489,Queens,Elmhurst,40.73088,-73.87488,Entire home/apt,125,2,47,4.18,1,315 +34317,10573806,Manhattan,Upper East Side,40.771679999999996,-73.95393,Entire home/apt,140,2,5,0.55,1,0 +34318,2457645,Manhattan,Gramercy,40.73615,-73.98165999999999,Entire home/apt,130,15,0,,1,0 +34319,205032591,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94785999999999,Private room,65,2,25,2.52,4,347 +34320,122044895,Bronx,Wakefield,40.89382,-73.84844,Entire home/apt,75,30,7,0.69,2,188 +34321,28449397,Manhattan,Harlem,40.82958,-73.94184,Private room,80,1,1,0.11,2,364 +34322,205032591,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94813,Private room,65,2,17,1.65,4,350 +34323,205032591,Brooklyn,Bedford-Stuyvesant,40.68635,-73.94821,Private room,55,2,18,1.6,4,359 +34324,31687877,Manhattan,Kips Bay,40.742979999999996,-73.97448,Entire home/apt,110,1,42,3.73,1,8 +34325,835534,Manhattan,Upper East Side,40.783190000000005,-73.9544,Entire home/apt,120,1,16,1.41,1,2 +34326,31882405,Brooklyn,Williamsburg,40.7082,-73.96719,Private room,130,2,12,1.07,1,26 +34327,69885871,Manhattan,Upper East Side,40.7729,-73.95761,Private room,120,1,2,0.31,1,171 +34328,793717,Brooklyn,Williamsburg,40.709340000000005,-73.95593000000001,Entire home/apt,162,3,38,3.34,1,314 +34329,28449397,Manhattan,Harlem,40.82962,-73.94211999999999,Private room,80,1,12,1.04,2,357 +34330,205132904,Staten Island,Tompkinsville,40.63513,-74.07929,Private room,135,2,65,6.13,2,293 +34331,205144781,Brooklyn,Crown Heights,40.675,-73.92358,Entire home/apt,85,1,53,4.68,1,306 +34332,205031545,Manhattan,Midtown,40.752990000000004,-73.96659,Entire home/apt,699,3,8,1.21,49,204 +34333,205031545,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,699,3,3,0.5,49,204 +34334,205031545,Manhattan,Midtown,40.752390000000005,-73.96684,Entire home/apt,699,3,1,0.3,49,204 +34335,205031545,Manhattan,Midtown,40.75425,-73.96648,Entire home/apt,699,3,4,0.82,49,204 +34336,205031545,Manhattan,Midtown,40.75397,-73.96696999999999,Entire home/apt,699,3,5,0.48,49,204 +34337,205031545,Manhattan,Midtown,40.75434,-73.96569000000001,Entire home/apt,699,3,3,0.46,49,164 +34338,205031545,Manhattan,Midtown,40.75442,-73.96696,Entire home/apt,699,3,8,1.18,49,204 +34339,205031545,Manhattan,Midtown,40.754020000000004,-73.9651,Entire home/apt,699,3,19,2.45,49,204 +34340,205031545,Manhattan,Midtown,40.75243,-73.9654,Entire home/apt,699,3,5,0.74,49,206 +34341,205031545,Manhattan,Midtown,40.75444,-73.96497,Entire home/apt,737,3,2,0.42,49,216 +34342,205031545,Manhattan,Midtown,40.75224,-73.96651999999999,Entire home/apt,737,3,1,0.21,49,200 +34343,205031545,Manhattan,Midtown,40.75417,-73.96557,Entire home/apt,737,3,8,1.02,49,188 +34344,205031545,Manhattan,Midtown,40.754020000000004,-73.96566999999999,Entire home/apt,737,3,1,0.21,49,222 +34345,205031545,Manhattan,Midtown,40.754509999999996,-73.96708000000001,Entire home/apt,737,3,0,,49,206 +34346,205031545,Manhattan,Midtown,40.75425,-73.96556,Entire home/apt,737,3,4,0.36,49,249 +34347,205031545,Manhattan,Midtown,40.75294,-73.96731,Entire home/apt,737,3,2,0.4,49,235 +34348,205031545,Manhattan,Midtown,40.75269,-73.96678,Entire home/apt,737,3,5,1.17,49,230 +34349,205031545,Manhattan,Midtown,40.75308,-73.96732,Entire home/apt,699,3,9,1.09,49,190 +34350,205031545,Manhattan,Midtown,40.752309999999994,-73.96706999999999,Entire home/apt,699,3,7,1.27,49,176 +34351,205031545,Manhattan,Midtown,40.752829999999996,-73.96675,Entire home/apt,699,3,3,0.33,49,196 +34352,205031545,Manhattan,Midtown,40.75459,-73.96706999999999,Entire home/apt,737,3,3,0.44,49,153 +34353,205031545,Manhattan,Midtown,40.75238,-73.96653,Entire home/apt,737,3,2,0.71,49,224 +34354,10229087,Queens,Ditmars Steinway,40.77214,-73.89169,Private room,52,1,39,3.38,4,353 +34355,202329412,Brooklyn,Crown Heights,40.66516,-73.94097,Private room,46,1,13,1.13,1,301 +34356,189625025,Brooklyn,Williamsburg,40.70756,-73.94269,Private room,76,2,29,2.54,2,330 +34357,189646908,Brooklyn,Williamsburg,40.70936,-73.94426999999999,Private room,86,2,28,2.61,3,365 +34358,10229087,Queens,Ditmars Steinway,40.77309,-73.89256,Private room,85,1,41,3.66,4,349 +34359,205227236,Manhattan,West Village,40.733940000000004,-74.00175,Entire home/apt,200,2,3,0.27,1,0 +34360,205234874,Brooklyn,Bedford-Stuyvesant,40.69128,-73.94311,Private room,60,2,24,2.22,2,360 +34361,134521683,Manhattan,East Village,40.72401,-73.98154,Private room,50,30,3,0.3,2,34 +34362,10229087,Queens,Ditmars Steinway,40.77248,-73.89263000000001,Private room,52,1,32,2.83,4,355 +34363,205243076,Queens,Cambria Heights,40.691590000000005,-73.73658,Private room,65,2,27,2.34,2,79 +34364,303926,Brooklyn,Cypress Hills,40.68351,-73.88448000000001,Entire home/apt,89,2,14,1.48,2,180 +34365,200380610,Manhattan,Midtown,40.75424,-73.96311999999999,Entire home/apt,200,30,0,,65,364 +34366,200380610,Manhattan,Midtown,40.75909,-73.96398,Entire home/apt,154,30,0,,65,364 +34367,200380610,Manhattan,Murray Hill,40.74422,-73.97124000000001,Entire home/apt,350,60,0,,65,327 +34368,1110299,Queens,Ridgewood,40.70108,-73.90222,Entire home/apt,120,2,3,0.27,1,40 +34369,14317115,Manhattan,Kips Bay,40.74075,-73.97674,Entire home/apt,86,1,0,,1,0 +34370,130006475,Brooklyn,Midwood,40.62771,-73.96381,Private room,40,1,22,1.9,1,0 +34371,190921808,Manhattan,Hell's Kitchen,40.75562,-73.99539,Private room,55,30,8,0.71,47,351 +34372,84825183,Manhattan,Hell's Kitchen,40.76243,-73.99078,Private room,95,3,3,0.26,1,5 +34373,14487073,Brooklyn,Bushwick,40.70382,-73.91456,Entire home/apt,250,2,25,2.37,2,260 +34374,427019,Brooklyn,Williamsburg,40.70713,-73.92918,Private room,55,2,18,1.61,2,5 +34375,189646908,Brooklyn,Williamsburg,40.707570000000004,-73.94466,Private room,86,2,23,2.18,3,365 +34376,189646908,Brooklyn,Williamsburg,40.7089,-73.94447,Private room,86,2,17,1.53,3,342 +34377,4089207,Brooklyn,Bedford-Stuyvesant,40.68571,-73.93868,Entire home/apt,250,3,22,1.94,2,314 +34378,49435345,Manhattan,Inwood,40.86813,-73.92393,Private room,50,30,9,0.81,1,57 +34379,114887819,Brooklyn,Bushwick,40.697520000000004,-73.93496999999999,Entire home/apt,245,2,5,0.79,1,128 +34380,204348856,Manhattan,Midtown,40.7562,-73.96795999999999,Entire home/apt,125,1,35,3.37,1,35 +34381,119826595,Bronx,Mott Haven,40.81192,-73.91781,Entire home/apt,132,1,44,3.91,1,103 +34382,205358796,Manhattan,Harlem,40.80765,-73.95484,Entire home/apt,112,3,4,0.37,1,24 +34383,26302195,Brooklyn,Williamsburg,40.70562,-73.92734,Private room,65,1,2,0.44,1,0 +34384,204786430,Queens,Ridgewood,40.70665,-73.90969,Private room,53,7,4,0.36,2,0 +34385,158181451,Queens,Flushing,40.74702,-73.82618000000001,Private room,38,28,0,,1,123 +34386,200380610,Manhattan,Midtown,40.755790000000005,-73.9652,Entire home/apt,234,30,0,,65,364 +34387,930201,Manhattan,East Village,40.72817,-73.9773,Private room,81,5,9,0.97,1,110 +34388,200380610,Manhattan,Midtown,40.75375,-73.96361999999999,Entire home/apt,350,30,0,,65,364 +34389,28943965,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94628,Private room,55,2,3,0.29,1,0 +34390,200380610,Manhattan,Midtown,40.74573,-73.99049000000001,Entire home/apt,550,30,0,,65,339 +34391,3662122,Brooklyn,Bushwick,40.70743,-73.92294,Entire home/apt,175,4,7,0.63,3,54 +34392,137274917,Manhattan,Hell's Kitchen,40.75974,-73.99016,Private room,110,1,69,6.22,12,232 +34393,137274917,Manhattan,Hell's Kitchen,40.76037,-73.9917,Private room,110,1,63,5.71,12,267 +34394,137274917,Manhattan,Hell's Kitchen,40.75983,-73.99119,Private room,115,1,82,7.34,12,230 +34395,200380610,Manhattan,Hell's Kitchen,40.766290000000005,-73.986,Entire home/apt,236,30,0,,65,364 +34396,137274917,Manhattan,Hell's Kitchen,40.759809999999995,-73.99011,Private room,105,1,79,6.99,12,241 +34397,12243051,Manhattan,Kips Bay,40.74324,-73.97224,Entire home/apt,184,29,0,,96,7 +34398,52140932,Brooklyn,Bedford-Stuyvesant,40.6838,-73.95161,Private room,60,2,25,2.29,7,349 +34399,204527108,Brooklyn,Williamsburg,40.71796,-73.957,Private room,87,30,2,2.0,3,310 +34400,204527108,Brooklyn,Williamsburg,40.71918,-73.95735,Private room,87,30,0,,3,310 +34401,204527108,Brooklyn,Williamsburg,40.71763,-73.95594,Private room,87,30,0,,3,310 +34402,52140932,Brooklyn,Bedford-Stuyvesant,40.685109999999995,-73.94948000000001,Private room,65,2,21,1.95,7,362 +34403,193289800,Manhattan,West Village,40.73214,-74.00531,Entire home/apt,120,2,14,1.24,1,0 +34404,205530337,Queens,Ridgewood,40.701609999999995,-73.90556,Private room,45,30,0,,8,312 +34405,205530337,Queens,Ridgewood,40.70296,-73.9056,Private room,45,30,1,0.14,8,314 +34406,205530337,Queens,Ridgewood,40.70176,-73.90435,Private room,45,30,1,0.71,8,347 +34407,205530337,Queens,Ridgewood,40.70378,-73.90581999999999,Private room,45,30,1,0.14,8,163 +34408,205530337,Queens,Ridgewood,40.701,-73.90607,Private room,45,30,1,0.54,8,321 +34409,205530337,Queens,Ridgewood,40.70285,-73.90411,Private room,45,30,1,0.77,8,331 +34410,205530337,Queens,Ridgewood,40.70175,-73.90552,Private room,45,30,0,,8,340 +34411,205543083,Queens,Woodhaven,40.6905,-73.86117,Private room,80,3,4,0.36,1,342 +34412,35645017,Manhattan,East Harlem,40.7962,-73.94894000000001,Private room,85,1,6,0.53,1,0 +34413,606154,Manhattan,Gramercy,40.735079999999996,-73.98477,Entire home/apt,118,3,21,1.86,2,10 +34414,205564408,Manhattan,East Village,40.72701,-73.97909,Private room,50,1,5,0.46,1,0 +34415,180212824,Manhattan,Upper East Side,40.76618,-73.9562,Private room,99,1,18,1.66,5,0 +34416,194684765,Brooklyn,Bedford-Stuyvesant,40.68855,-73.9443,Entire home/apt,204,5,28,2.96,1,225 +34417,205606415,Manhattan,Nolita,40.72159,-73.9962,Entire home/apt,220,1,28,2.52,1,45 +34418,57724903,Manhattan,Theater District,40.76193,-73.98236,Entire home/apt,325,7,0,,1,0 +34419,8593113,Brooklyn,Red Hook,40.67349,-74.00589000000001,Private room,81,1,7,0.66,2,48 +34420,99137905,Bronx,Wakefield,40.88878,-73.86349,Private room,60,1,1,0.17,1,269 +34421,8593113,Brooklyn,Red Hook,40.673809999999996,-74.00761999999999,Private room,50,1,25,2.17,2,351 +34422,203982404,Manhattan,East Harlem,40.8087,-73.93897,Private room,90,2,38,3.36,6,0 +34423,24000784,Brooklyn,Sunset Park,40.64431,-74.01261,Private room,45,1,7,0.75,4,32 +34424,200380610,Manhattan,Murray Hill,40.74688,-73.97341999999999,Entire home/apt,180,30,0,,65,364 +34425,200380610,Manhattan,Chelsea,40.74631,-73.99121,Entire home/apt,320,30,0,,65,364 +34426,200380610,Manhattan,Upper East Side,40.7732,-73.95029,Entire home/apt,340,30,0,,65,364 +34427,200380610,Manhattan,Upper East Side,40.76852,-73.96245,Entire home/apt,395,30,0,,65,346 +34428,200380610,Manhattan,Upper East Side,40.77964,-73.95865,Entire home/apt,187,30,0,,65,315 +34429,200754542,Queens,Breezy Point,40.56568,-73.87009,Private room,195,1,1,0.09,2,59 +34430,205684793,Queens,Woodhaven,40.69062,-73.84747,Entire home/apt,170,5,1,0.09,2,0 +34431,10457196,Manhattan,Little Italy,40.71927,-73.99450999999999,Entire home/apt,140,30,3,0.31,11,104 +34432,14381199,Brooklyn,Bedford-Stuyvesant,40.6855,-73.95676999999999,Entire home/apt,125,3,20,1.94,1,0 +34433,205697848,Manhattan,Hell's Kitchen,40.76435,-73.99298,Private room,85,1,8,0.7,1,30 +34434,190324721,Queens,Flushing,40.76003,-73.83306999999999,Private room,73,1,25,2.43,4,317 +34435,66495651,Manhattan,Harlem,40.82209,-73.95423000000001,Private room,100,1,0,,1,302 +34436,42637974,Brooklyn,Crown Heights,40.677820000000004,-73.9474,Entire home/apt,90,7,0,,1,0 +34437,14297465,Brooklyn,Crown Heights,40.671890000000005,-73.95624000000001,Entire home/apt,135,3,42,3.82,1,100 +34438,3819001,Brooklyn,South Slope,40.664770000000004,-73.97999,Private room,60,1,18,1.65,2,308 +34439,205777414,Manhattan,West Village,40.73858,-74.00619,Entire home/apt,199,4,1,0.1,1,232 +34440,205745676,Queens,Flushing,40.757490000000004,-73.81983000000001,Private room,80,1,33,2.87,9,365 +34441,89589630,Brooklyn,Bushwick,40.696290000000005,-73.91351,Private room,50,1,86,7.7,1,198 +34442,36494687,Manhattan,East Village,40.72071,-73.97822,Private room,55,5,2,0.18,1,0 +34443,94214493,Brooklyn,East Flatbush,40.65473,-73.91846,Private room,80,7,1,0.16,9,365 +34444,205745676,Queens,Flushing,40.75897,-73.82011,Private room,95,1,30,2.66,9,353 +34445,205813359,Manhattan,Harlem,40.824690000000004,-73.94176,Entire home/apt,120,2,25,2.43,1,180 +34446,205820814,Bronx,Highbridge,40.834540000000004,-73.92751,Private room,10,1,0,,1,180 +34447,23773099,Brooklyn,Fort Greene,40.68462,-73.96908,Entire home/apt,110,225,0,,1,365 +34448,25459,Manhattan,Harlem,40.82698,-73.93871,Private room,40,1,22,2.33,2,105 +34449,17866326,Brooklyn,Bushwick,40.68636,-73.90731,Private room,50,4,2,0.18,2,0 +34450,137358866,Queens,Woodside,40.74411,-73.91077,Private room,40,30,2,0.45,103,216 +34451,205930301,Brooklyn,Bushwick,40.693000000000005,-73.91078,Entire home/apt,99,1,79,7.18,1,173 +34452,205952285,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95036,Private room,65,2,32,2.89,1,37 +34453,80381355,Manhattan,Inwood,40.86912,-73.92183,Entire home/apt,195,2,6,0.53,1,0 +34454,18884557,Manhattan,West Village,40.73494,-74.00463,Entire home/apt,150,30,1,1.0,1,86 +34455,205969507,Manhattan,Chelsea,40.75313,-74.00235,Private room,120,1,4,0.56,1,5 +34456,205684793,Queens,Woodhaven,40.69109,-73.84846,Entire home/apt,170,5,4,0.44,2,0 +34457,177825782,Queens,Jackson Heights,40.75212,-73.88248,Private room,80,4,3,0.3,2,175 +34458,30585124,Bronx,Longwood,40.818220000000004,-73.90812,Private room,35,5,8,0.77,2,179 +34459,74678395,Brooklyn,Bushwick,40.70624,-73.9177,Entire home/apt,130,5,14,1.24,1,305 +34460,205999048,Queens,Flushing,40.73717,-73.80847,Private room,30,1,16,1.46,1,153 +34461,205998016,Brooklyn,Bedford-Stuyvesant,40.6889,-73.93733,Private room,53,2,40,3.79,1,13 +34462,203169632,Manhattan,Upper East Side,40.77134,-73.95498,Entire home/apt,350,2,24,2.48,1,242 +34463,205131610,Brooklyn,Canarsie,40.64228,-73.90819,Private room,50,2,5,0.5,3,180 +34464,45767988,Brooklyn,Flatbush,40.63876,-73.96025,Entire home/apt,250,1,0,,1,17 +34465,21621071,Brooklyn,Bedford-Stuyvesant,40.691559999999996,-73.94846,Private room,30,4,3,0.27,1,0 +34466,206009618,Brooklyn,Bushwick,40.70055,-73.93024,Private room,56,2,32,2.97,1,158 +34467,59880594,Manhattan,East Harlem,40.798320000000004,-73.9398,Private room,98,2,18,1.86,1,209 +34468,133298502,Brooklyn,Flatbush,40.6498,-73.95591999999999,Private room,100,1,0,,1,0 +34469,206040990,Brooklyn,Williamsburg,40.71425,-73.9623,Entire home/apt,290,5,0,,1,0 +34470,204036615,Bronx,Allerton,40.87015,-73.85582,Entire home/apt,75,4,35,3.13,1,169 +34471,10849252,Brooklyn,Park Slope,40.6726,-73.98195,Entire home/apt,130,2,24,3.27,1,2 +34472,4901731,Manhattan,East Village,40.72875,-73.98443,Private room,98,2,15,1.49,1,29 +34473,61100797,Manhattan,Upper East Side,40.768409999999996,-73.95402,Entire home/apt,180,2,23,2.04,1,2 +34474,16098958,Manhattan,Upper East Side,40.77687,-73.95173,Entire home/apt,200,30,0,,96,0 +34475,28380119,Brooklyn,Williamsburg,40.71133,-73.96806,Entire home/apt,250,4,4,0.38,1,0 +34476,41287915,Brooklyn,Bushwick,40.69743,-73.92929000000001,Private room,75,1,27,2.45,1,29 +34477,21940136,Manhattan,Nolita,40.72191,-73.99592,Entire home/apt,300,3,52,5.2,1,119 +34478,13642054,Brooklyn,Bedford-Stuyvesant,40.679359999999996,-73.91375,Entire home/apt,180,2,30,2.77,1,69 +34479,204744401,Manhattan,Kips Bay,40.73968,-73.98217,Entire home/apt,199,5,18,1.65,1,248 +34480,47782497,Brooklyn,East New York,40.66983,-73.87745,Private room,65,7,16,1.42,3,287 +34481,47782497,Brooklyn,East New York,40.670609999999996,-73.8759,Private room,45,7,24,2.11,3,313 +34482,74323368,Manhattan,Harlem,40.81968,-73.9436,Private room,90,2,39,3.42,1,29 +34483,7210713,Brooklyn,Bedford-Stuyvesant,40.695190000000004,-73.95465,Entire home/apt,150,2,12,1.09,1,0 +34484,63312104,Queens,Flushing,40.747640000000004,-73.81795,Private room,55,1,37,3.31,6,364 +34485,15145474,Queens,Ozone Park,40.68221,-73.8457,Private room,51,4,27,2.45,4,87 +34486,3508047,Brooklyn,Bushwick,40.70024,-73.92399999999999,Private room,45,3,2,0.18,3,0 +34487,14621589,Brooklyn,Bedford-Stuyvesant,40.699740000000006,-73.94658000000001,Private room,50,400,0,,1,90 +34488,13639385,Brooklyn,Crown Heights,40.67713,-73.94136999999999,Private room,60,3,0,,1,179 +34489,63312104,Queens,Flushing,40.747659999999996,-73.81942,Private room,60,1,38,3.52,6,363 +34490,26278289,Manhattan,Greenwich Village,40.72862,-74.00054,Entire home/apt,300,4,0,,1,188 +34491,1603942,Brooklyn,Fort Greene,40.68712,-73.97768,Entire home/apt,375,20,2,0.25,2,0 +34492,23341244,Brooklyn,Sheepshead Bay,40.59356,-73.95869,Entire home/apt,64,30,0,,1,0 +34493,9880191,Brooklyn,Williamsburg,40.71353,-73.94162,Private room,125,1,4,0.39,2,8 +34494,9880191,Brooklyn,Williamsburg,40.714490000000005,-73.94195,Entire home/apt,250,2,3,0.32,2,0 +34495,206217143,Manhattan,Harlem,40.81968,-73.93858,Private room,40,1,7,0.64,1,0 +34496,18404082,Staten Island,Grymes Hill,40.6157,-74.0985,Private room,89,1,1,0.12,1,65 +34497,206227910,Manhattan,East Village,40.722390000000004,-73.9821,Private room,80,3,23,2.09,1,9 +34498,118403993,Brooklyn,Williamsburg,40.719390000000004,-73.96056,Entire home/apt,600,2,23,2.2,2,328 +34499,80543188,Bronx,Fordham,40.86299,-73.89088000000001,Private room,75,2,14,1.26,1,210 +34500,59808986,Brooklyn,East Flatbush,40.64933,-73.94539,Entire home/apt,110,1,57,5.06,3,223 +34501,195704869,Brooklyn,South Slope,40.66793,-73.98934,Entire home/apt,150,3,22,2.18,1,144 +34502,6584607,Brooklyn,Williamsburg,40.71784,-73.96363000000001,Private room,90,1,18,1.62,2,9 +34503,12243051,Manhattan,Financial District,40.70852,-74.00525,Entire home/apt,125,29,0,,96,345 +34504,12243051,Manhattan,Chelsea,40.740829999999995,-73.99457,Entire home/apt,209,29,0,,96,335 +34505,12243051,Manhattan,Midtown,40.74812,-73.98602,Entire home/apt,287,29,0,,96,219 +34506,12243051,Manhattan,Chelsea,40.74272,-73.99599,Entire home/apt,202,29,0,,96,279 +34507,12243051,Manhattan,Midtown,40.74803,-73.98666,Entire home/apt,287,29,0,,96,219 +34508,12243051,Manhattan,Chelsea,40.743,-73.99521,Entire home/apt,239,29,3,0.37,96,254 +34509,12243051,Manhattan,Midtown,40.7482,-73.98776,Entire home/apt,287,29,0,,96,218 +34510,12243051,Manhattan,Chelsea,40.7429,-73.99428,Entire home/apt,232,29,2,0.29,96,311 +34511,12243051,Manhattan,Kips Bay,40.74295,-73.97176999999999,Entire home/apt,187,29,0,,96,323 +34512,45241930,Manhattan,Murray Hill,40.74416,-73.9727,Entire home/apt,175,29,5,0.74,3,49 +34513,206260220,Queens,Jackson Heights,40.75589,-73.85755,Private room,60,1,38,3.76,1,315 +34514,15334096,Brooklyn,Williamsburg,40.71448,-73.95198,Entire home/apt,310,4,0,,1,87 +34515,17506009,Manhattan,Chelsea,40.74564,-74.0006,Entire home/apt,200,1,12,1.09,1,6 +34516,196557649,Queens,Edgemere,40.59684,-73.76873,Entire home/apt,200,1,7,0.62,2,311 +34517,6776218,Brooklyn,Greenpoint,40.7308,-73.95775,Entire home/apt,650,4,1,1.0,1,168 +34518,10606156,Brooklyn,Greenpoint,40.7244,-73.95435,Entire home/apt,75,4,0,,2,177 +34519,14898658,Brooklyn,Kensington,40.64205,-73.98049,Private room,40,1,19,1.69,11,28 +34520,206313609,Brooklyn,Bensonhurst,40.60557,-73.99799,Entire home/apt,123,2,27,2.57,2,128 +34521,9738823,Manhattan,Hell's Kitchen,40.76335,-73.98737,Private room,150,2,41,4.17,1,67 +34522,8346419,Brooklyn,Bushwick,40.70296,-73.91755,Private room,47,7,2,0.18,1,0 +34523,206359223,Brooklyn,Bedford-Stuyvesant,40.68033,-73.91023,Private room,31,30,1,0.1,1,62 +34524,68170006,Queens,Astoria,40.75519,-73.91582,Private room,54,2,2,0.2,1,0 +34525,200380610,Manhattan,Midtown,40.75632,-73.96795,Entire home/apt,235,30,0,,65,249 +34526,200380610,Manhattan,Midtown,40.76634,-73.98155,Entire home/apt,320,30,0,,65,249 +34527,200380610,Manhattan,Midtown,40.765409999999996,-73.98179,Entire home/apt,495,30,0,,65,364 +34528,200380610,Manhattan,Hell's Kitchen,40.760290000000005,-73.99811,Entire home/apt,300,30,0,,65,365 +34529,200380610,Manhattan,Theater District,40.75975,-73.98698,Entire home/apt,470,30,0,,65,250 +34530,200380610,Manhattan,Hell's Kitchen,40.76191,-73.99818,Entire home/apt,350,30,0,,65,281 +34531,200380610,Manhattan,Hell's Kitchen,40.76181,-73.99855,Entire home/apt,350,30,0,,65,281 +34532,200380610,Manhattan,Midtown,40.7525,-73.96683,Entire home/apt,200,30,0,,65,339 +34533,200380610,Manhattan,Midtown,40.763659999999994,-73.98342,Entire home/apt,435,30,0,,65,329 +34534,84683441,Brooklyn,Sunset Park,40.65945,-73.99383,Entire home/apt,100,2,12,1.08,1,2 +34535,200380610,Manhattan,Upper West Side,40.779,-73.98319000000001,Entire home/apt,200,30,0,,65,342 +34536,895135,Brooklyn,Williamsburg,40.70732,-73.94536,Private room,130,3,12,1.08,3,90 +34537,200380610,Manhattan,Murray Hill,40.746320000000004,-73.97306999999999,Entire home/apt,305,30,0,,65,364 +34538,119531605,Manhattan,Upper West Side,40.7737,-73.99027,Private room,99,1,7,0.61,1,0 +34539,200380610,Manhattan,Upper West Side,40.77071,-73.98545,Entire home/apt,230,30,0,,65,348 +34540,206400943,Queens,Richmond Hill,40.69103,-73.83407,Entire home/apt,150,3,6,0.55,1,162 +34541,200380610,Manhattan,Upper West Side,40.77095,-73.98626,Entire home/apt,220,30,0,,65,364 +34542,200380610,Manhattan,Hell's Kitchen,40.767109999999995,-73.98685,Entire home/apt,250,30,0,,65,275 +34543,200380610,Manhattan,Kips Bay,40.73865,-73.9781,Entire home/apt,185,30,0,,65,364 +34544,200380610,Manhattan,East Village,40.73223,-73.98658,Entire home/apt,253,30,0,,65,332 +34545,200380610,Manhattan,Upper East Side,40.75969,-73.96070999999999,Entire home/apt,150,30,0,,65,364 +34546,200380610,Manhattan,Murray Hill,40.7444,-73.97284,Entire home/apt,350,30,0,,65,364 +34547,12243051,Manhattan,Financial District,40.70856,-74.00659,Entire home/apt,135,29,0,,96,332 +34548,4406629,Brooklyn,Bedford-Stuyvesant,40.69228,-73.94566,Private room,50,30,15,1.36,1,179 +34549,95564806,Brooklyn,Brownsville,40.6604,-73.91226999999999,Private room,59,2,32,2.85,3,0 +34550,206451695,Manhattan,Hell's Kitchen,40.7594,-73.99748000000001,Private room,180,4,10,0.91,3,365 +34551,206313609,Brooklyn,Bensonhurst,40.60569,-73.99823,Entire home/apt,113,3,24,2.22,2,96 +34552,205745676,Queens,Flushing,40.75902,-73.82099000000001,Private room,80,1,30,2.69,9,189 +34553,33905781,Queens,Astoria,40.767559999999996,-73.91798,Private room,45,2,4,0.37,1,249 +34554,206482566,Manhattan,Stuyvesant Town,40.73182,-73.98158000000001,Private room,100,30,3,0.28,2,0 +34555,159610596,Manhattan,Financial District,40.70448,-74.00615,Entire home/apt,525,1,25,2.53,6,203 +34556,2685910,Brooklyn,Bedford-Stuyvesant,40.68707,-73.95482,Private room,100,2,0,,1,0 +34557,2420988,Queens,Ridgewood,40.708040000000004,-73.89747,Entire home/apt,105,7,2,0.22,1,93 +34558,205772141,Manhattan,East Village,40.72935,-73.99054,Entire home/apt,250,2,10,0.97,1,188 +34559,206508895,Staten Island,Randall Manor,40.6406,-74.11702,Entire home/apt,67,2,39,3.45,1,45 +34560,52050220,Manhattan,Lower East Side,40.71873,-73.98553000000001,Private room,100,1,4,0.36,2,0 +34561,34755288,Bronx,Longwood,40.81872,-73.90014000000001,Entire home/apt,75,7,0,,1,0 +34562,52050220,Manhattan,Lower East Side,40.71796,-73.98445,Entire home/apt,226,1,1,0.09,2,0 +34563,206538133,Manhattan,Financial District,40.705220000000004,-74.00728000000001,Entire home/apt,175,2,1,0.09,1,0 +34564,379051,Manhattan,Hell's Kitchen,40.76463,-73.99128,Entire home/apt,550,3,1,0.09,1,353 +34565,8245652,Brooklyn,Bushwick,40.696670000000005,-73.90805999999999,Entire home/apt,120,2,6,0.77,2,0 +34566,33750239,Brooklyn,Bedford-Stuyvesant,40.68634,-73.93817,Entire home/apt,126,2,30,2.88,2,35 +34567,11409024,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94487,Private room,61,2,1,1.0,1,349 +34568,180212824,Manhattan,Upper East Side,40.76529,-73.95770999999999,Private room,99,1,18,1.59,5,0 +34569,206551997,Manhattan,Hell's Kitchen,40.75607,-73.9941,Entire home/apt,200,3,10,4.48,1,206 +34570,7638718,Brooklyn,Bushwick,40.70048,-73.9295,Private room,54,7,8,0.75,1,0 +34571,203982404,Manhattan,East Harlem,40.80874,-73.94038,Private room,90,2,38,3.4,6,178 +34572,206509509,Brooklyn,Brooklyn Heights,40.6987,-73.99275,Entire home/apt,155,1,12,1.16,1,6 +34573,203982404,Manhattan,East Harlem,40.806999999999995,-73.93975999999999,Entire home/apt,400,2,0,,6,173 +34574,200380610,Manhattan,Upper West Side,40.77725,-73.98406999999999,Entire home/apt,250,30,0,,65,334 +34575,718630,Queens,Long Island City,40.74583,-73.95363,Entire home/apt,150,3,2,0.32,1,3 +34576,34643568,Manhattan,East Harlem,40.792320000000004,-73.94156,Private room,85,3,2,0.79,6,90 +34577,119669058,Brooklyn,Bedford-Stuyvesant,40.69393,-73.957,Shared room,38,3,12,1.07,34,365 +34578,176043852,Manhattan,East Harlem,40.8093,-73.93746999999999,Shared room,220,4,2,0.2,1,41 +34579,119669058,Brooklyn,Bedford-Stuyvesant,40.69254,-73.95563,Shared room,37,2,10,0.9,34,362 +34580,2948064,Brooklyn,Williamsburg,40.71031,-73.93623000000001,Private room,58,3,46,4.19,2,126 +34581,10428298,Manhattan,Chelsea,40.73768,-73.99565,Entire home/apt,220,14,0,,1,0 +34582,147590647,Brooklyn,Dyker Heights,40.61699,-74.01042,Private room,55,1,39,3.45,1,45 +34583,14812962,Brooklyn,Crown Heights,40.67321,-73.95385999999999,Entire home/apt,93,5,3,0.28,1,0 +34584,200380610,Manhattan,Upper West Side,40.790259999999996,-73.97304,Entire home/apt,175,30,0,,65,364 +34585,2948064,Brooklyn,Williamsburg,40.70859,-73.93571999999999,Private room,58,3,47,4.26,2,188 +34586,5699385,Manhattan,Kips Bay,40.73932,-73.97764000000001,Entire home/apt,140,5,13,1.23,1,24 +34587,7183012,Manhattan,Kips Bay,40.739670000000004,-73.98170999999999,Entire home/apt,160,10,2,0.24,1,81 +34588,6456799,Brooklyn,Bedford-Stuyvesant,40.687259999999995,-73.94176,Entire home/apt,125,21,2,0.65,1,250 +34589,34313176,Queens,Rego Park,40.71662,-73.85970999999999,Entire home/apt,140,2,11,1.17,4,335 +34590,200834302,Manhattan,Harlem,40.803290000000004,-73.957,Entire home/apt,126,4,34,3.12,1,90 +34591,200239515,Queens,Woodside,40.7423,-73.89426,Private room,35,30,2,0.58,15,5 +34592,161899037,Queens,Flushing,40.75676,-73.83288,Entire home/apt,159,2,7,2.44,7,67 +34593,206714649,Queens,South Ozone Park,40.67261,-73.79675,Private room,99,1,49,5.88,3,38 +34594,5680111,Brooklyn,Bushwick,40.685959999999994,-73.914,Private room,63,5,6,0.54,7,133 +34595,205594437,Brooklyn,Williamsburg,40.70819,-73.96597,Entire home/apt,180,2,5,0.47,1,0 +34596,5680111,Brooklyn,Bushwick,40.68654,-73.91454,Private room,63,6,3,0.27,7,187 +34597,105699183,Manhattan,Harlem,40.827709999999996,-73.9499,Private room,65,4,2,0.25,2,0 +34598,1548010,Brooklyn,Flatbush,40.639520000000005,-73.9601,Private room,48,30,3,0.28,1,0 +34599,11158514,Brooklyn,Flatbush,40.64472,-73.96263,Private room,42,10,1,0.1,1,0 +34600,206758830,Queens,Middle Village,40.71775,-73.87488,Entire home/apt,85,2,36,3.4,1,290 +34601,84155085,Brooklyn,Bay Ridge,40.63145,-74.02375,Private room,50,2,1,0.09,1,0 +34602,109930093,Manhattan,East Harlem,40.79505,-73.93126,Entire home/apt,199,2,15,1.4,2,230 +34603,206774126,Manhattan,Harlem,40.82788,-73.93905,Entire home/apt,85,15,0,,1,0 +34604,1720151,Brooklyn,Greenpoint,40.72208,-73.94275,Entire home/apt,315,2,0,,2,364 +34605,204684505,Brooklyn,East Flatbush,40.63558,-73.94929,Entire home/apt,199,3,9,0.81,1,353 +34606,57002433,Manhattan,East Harlem,40.797129999999996,-73.941,Private room,80,1,25,2.25,2,0 +34607,119669058,Brooklyn,Bedford-Stuyvesant,40.693220000000004,-73.95519,Shared room,36,3,12,1.06,34,361 +34608,195041901,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95108,Private room,40,30,2,0.27,3,331 +34609,32346001,Brooklyn,Bushwick,40.69854,-73.92373,Private room,106,1,2,0.22,2,5 +34610,206195782,Manhattan,Harlem,40.808040000000005,-73.95373000000001,Entire home/apt,195,2,14,1.43,1,33 +34611,206889476,Queens,Jamaica,40.68078,-73.79491999999999,Entire home/apt,75,1,63,6.1,1,61 +34612,243321,Queens,Long Island City,40.76398,-73.92969000000001,Entire home/apt,150,3,0,,1,0 +34613,125320407,Queens,Jamaica,40.70653,-73.80561,Entire home/apt,1000,2,0,,5,365 +34614,201203968,Brooklyn,Williamsburg,40.71283,-73.94157,Entire home/apt,160,2,59,5.46,2,23 +34615,56283770,Manhattan,Upper East Side,40.76515,-73.96661999999999,Entire home/apt,185,30,0,,6,123 +34616,17477908,Manhattan,Upper West Side,40.79285,-73.9676,Entire home/apt,264,30,2,0.25,10,343 +34617,206926246,Brooklyn,Canarsie,40.62831,-73.89876,Private room,40,3,23,2.31,1,357 +34618,894516,Queens,Astoria,40.77198,-73.92206,Entire home/apt,120,3,23,2.1,1,16 +34619,23074465,Brooklyn,Bushwick,40.70192,-73.9168,Private room,65,1,31,3.75,3,134 +34620,3125234,Manhattan,Chinatown,40.71882,-73.99651999999999,Entire home/apt,350,2,8,0.73,1,52 +34621,184398500,Manhattan,East Harlem,40.800259999999994,-73.94398000000001,Private room,75,1,2,0.19,1,0 +34622,21888830,Manhattan,West Village,40.73495,-74.00402,Entire home/apt,190,30,5,0.6,1,130 +34623,97170205,Manhattan,Upper West Side,40.78779,-73.96880999999999,Entire home/apt,65,3,9,0.87,1,0 +34624,206974381,Manhattan,Chinatown,40.71709,-73.99746,Entire home/apt,180,2,19,2.0,1,179 +34625,105983342,Brooklyn,Bushwick,40.688629999999996,-73.90638,Entire home/apt,100,1,1,0.09,1,0 +34626,8879096,Brooklyn,Williamsburg,40.716879999999996,-73.95107,Private room,65,3,6,0.54,1,0 +34627,6485,Brooklyn,Bedford-Stuyvesant,40.6813,-73.93304,Entire home/apt,150,5,4,0.47,1,160 +34628,100704594,Manhattan,Chelsea,40.74752,-73.9976,Private room,225,3,21,2.03,1,8 +34629,207003851,Manhattan,East Harlem,40.799170000000004,-73.93715999999999,Private room,111,3,9,0.88,1,3 +34630,206778021,Manhattan,Harlem,40.82287,-73.95394,Private room,150,2,26,2.34,2,55 +34631,207010341,Manhattan,East Harlem,40.79578,-73.93398,Entire home/apt,145,5,2,0.18,2,1 +34632,35328956,Brooklyn,Bedford-Stuyvesant,40.6905,-73.95906,Private room,57,2,2,0.32,1,0 +34633,56283770,Manhattan,Upper East Side,40.76389,-73.96808,Entire home/apt,135,30,0,,6,178 +34634,202869636,Brooklyn,Williamsburg,40.71832,-73.95566,Entire home/apt,150,4,7,0.63,1,5 +34635,207038607,Queens,Rockaway Beach,40.587540000000004,-73.81296,Private room,53,1,14,1.3,1,357 +34636,104569137,Brooklyn,Crown Heights,40.678290000000004,-73.9505,Private room,60,2,0,,1,40 +34637,2885704,Brooklyn,Bushwick,40.69383,-73.92068,Private room,35,2,43,4.08,2,15 +34638,14364462,Brooklyn,Bushwick,40.7052,-73.92101,Private room,65,3,3,0.28,2,0 +34639,157337532,Queens,College Point,40.77859,-73.84323,Entire home/apt,100,1,62,6.0,2,77 +34640,132536008,Queens,Springfield Gardens,40.6609,-73.75633,Entire home/apt,100,2,4,1.82,1,178 +34641,52676179,Manhattan,Hell's Kitchen,40.76213,-74.00126,Entire home/apt,144,2,2,0.18,1,0 +34642,170384085,Brooklyn,Crown Heights,40.66933,-73.94173,Private room,49,1,13,1.15,1,0 +34643,20398684,Manhattan,Midtown,40.75135,-73.97197,Entire home/apt,120,2,6,0.62,1,0 +34644,52644225,Queens,Sunnyside,40.74245,-73.92586999999999,Entire home/apt,77,2,3,0.29,1,0 +34645,2822805,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94976,Private room,60,30,1,0.14,8,0 +34646,64971854,Manhattan,Tribeca,40.717929999999996,-74.00594,Entire home/apt,160,1,8,0.73,1,0 +34647,23120620,Queens,Flushing,40.737809999999996,-73.80845,Private room,62,1,10,0.92,5,90 +34648,1353336,Queens,Astoria,40.75759,-73.91703000000001,Private room,90,5,1,0.11,1,69 +34649,54508119,Queens,Flushing,40.7423,-73.8047,Private room,38,1,16,1.42,1,362 +34650,206778021,Manhattan,Harlem,40.82221,-73.95606,Private room,150,2,24,2.38,2,47 +34651,27336207,Manhattan,Gramercy,40.735690000000005,-73.98097,Entire home/apt,160,3,6,0.56,2,0 +34652,12841127,Manhattan,East Harlem,40.7895,-73.94827,Entire home/apt,128,90,8,0.71,1,0 +34653,120643397,Brooklyn,Midwood,40.62258,-73.97398000000001,Entire home/apt,139,2,41,3.7,1,62 +34654,207195903,Brooklyn,Bay Ridge,40.6294,-74.02258,Entire home/apt,80,3,39,4.5,1,8 +34655,48018277,Brooklyn,Bedford-Stuyvesant,40.6922,-73.9415,Private room,85,3,8,0.77,2,63 +34656,193502084,Brooklyn,Borough Park,40.640029999999996,-74.00315,Private room,45,1,8,0.76,8,0 +34657,166862866,Brooklyn,Bedford-Stuyvesant,40.67712,-73.9226,Entire home/apt,148,1,63,5.61,1,82 +34658,206949054,Brooklyn,East Flatbush,40.6648,-73.92671999999999,Entire home/apt,115,1,15,1.42,1,48 +34659,207205519,Staten Island,Shore Acres,40.6075,-74.06679,Private room,100,3,0,,1,90 +34660,207117606,Brooklyn,Windsor Terrace,40.65668,-73.97827,Private room,75,4,1,0.13,1,82 +34661,207216690,Brooklyn,Bushwick,40.70098,-73.92135,Private room,75,1,37,3.34,1,294 +34662,54438083,Queens,Maspeth,40.723729999999996,-73.90881,Entire home/apt,196,2,21,1.87,3,202 +34663,22896813,Manhattan,Morningside Heights,40.81382,-73.95939,Private room,100,3,1,0.09,1,0 +34664,194047658,Manhattan,Harlem,40.80734,-73.94201,Entire home/apt,290,3,11,1.02,1,85 +34665,185889529,Queens,St. Albans,40.70531,-73.75835,Private room,46,2,71,6.51,3,340 +34666,89842859,Manhattan,Harlem,40.80138,-73.95107,Private room,68,10,1,0.1,1,0 +34667,557166,Manhattan,Upper West Side,40.79287,-73.97333,Entire home/apt,150,5,2,0.18,1,0 +34668,25357997,Manhattan,East Village,40.72691,-73.98423000000001,Entire home/apt,149,2,1,0.09,1,0 +34669,63199008,Queens,Elmhurst,40.74586,-73.89048000000001,Private room,39,3,1,0.09,1,0 +34670,33467956,Brooklyn,Williamsburg,40.717859999999995,-73.95434,Entire home/apt,175,1,15,1.33,1,8 +34671,31378,Brooklyn,Crown Heights,40.67194,-73.96208,Private room,100,1,12,1.24,3,2 +34672,140312311,Manhattan,Hell's Kitchen,40.75478,-73.99604000000001,Private room,100,2,0,,1,0 +34673,38635971,Brooklyn,Bedford-Stuyvesant,40.682990000000004,-73.92713,Private room,60,1,4,0.36,1,0 +34674,41950627,Manhattan,Harlem,40.821670000000005,-73.94726,Entire home/apt,175,5,0,,1,0 +34675,52190465,Brooklyn,Bushwick,40.70474,-73.9162,Entire home/apt,100,2,1,0.09,1,0 +34676,158088272,Manhattan,Harlem,40.81589,-73.93686,Entire home/apt,76,3,1,0.13,1,0 +34677,1639484,Brooklyn,Prospect Heights,40.6814,-73.96584,Entire home/apt,91,5,2,0.21,1,0 +34678,6786361,Brooklyn,Bushwick,40.696329999999996,-73.92699999999999,Private room,65,5,13,1.2,2,310 +34679,6344971,Manhattan,Chelsea,40.7444,-73.99604000000001,Entire home/apt,240,2,8,0.71,1,0 +34680,207396117,Queens,Sunnyside,40.742329999999995,-73.9125,Shared room,30,1,30,2.78,1,157 +34681,85281944,Brooklyn,Bushwick,40.698570000000004,-73.9142,Entire home/apt,110,1,0,,1,0 +34682,2093069,Manhattan,East Harlem,40.79228,-73.94013000000001,Entire home/apt,106,2,8,1.53,1,0 +34683,11381575,Brooklyn,Bushwick,40.70548,-73.92671,Private room,59,2,8,0.73,1,0 +34684,207418547,Brooklyn,Brownsville,40.65934,-73.90245,Private room,45,7,5,0.53,1,168 +34685,6146050,Brooklyn,Williamsburg,40.7135,-73.9583,Private room,98,1,0,,2,0 +34686,113295877,Staten Island,Tompkinsville,40.634609999999995,-74.08937,Private room,55,3,6,0.55,3,154 +34687,106233552,Queens,East Elmhurst,40.7653,-73.86729,Private room,89,3,0,,2,23 +34688,3116204,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93916,Entire home/apt,165,5,25,2.42,1,127 +34689,207523208,Manhattan,East Village,40.73052,-73.98277,Entire home/apt,450,3,34,3.37,1,80 +34690,50909051,Queens,Bayside,40.767309999999995,-73.76288000000001,Entire home/apt,115,1,6,0.53,1,179 +34691,82891189,Brooklyn,Bushwick,40.69449,-73.91986999999999,Private room,50,2,2,0.18,1,0 +34692,55149412,Manhattan,Chinatown,40.715790000000005,-73.99285,Private room,130,3,0,,4,222 +34693,131493626,Manhattan,Murray Hill,40.74828,-73.97917,Entire home/apt,799,5,5,0.55,1,340 +34694,22550591,Brooklyn,Bushwick,40.70844,-73.92274,Private room,100,2,5,0.52,1,0 +34695,40511430,Queens,Woodhaven,40.697829999999996,-73.85221,Private room,70,2,53,5.28,1,108 +34696,34992043,Queens,Flushing,40.73662,-73.82764,Private room,50,1,20,1.81,2,188 +34697,207582987,Brooklyn,Bushwick,40.68397,-73.9074,Entire home/apt,138,2,62,5.67,1,151 +34698,14278851,Queens,Ridgewood,40.7043,-73.91136999999999,Private room,50,5,2,0.22,1,15 +34699,17826780,Manhattan,Upper East Side,40.77454,-73.95454000000001,Entire home/apt,250,30,1,0.11,1,60 +34700,21858263,Manhattan,East Village,40.730470000000004,-73.98048,Private room,83,2,0,,1,0 +34701,130074377,Queens,Ridgewood,40.70134,-73.90899999999999,Private room,89,1,28,2.6,2,212 +34702,7098693,Brooklyn,Bedford-Stuyvesant,40.69073,-73.95965,Private room,75,3,0,,1,0 +34703,207573589,Queens,Astoria,40.77032,-73.92621,Entire home/apt,125,1,18,1.74,1,0 +34704,137358866,Manhattan,East Harlem,40.79461,-73.94199,Private room,36,30,1,0.11,103,199 +34705,12243051,Manhattan,Financial District,40.70514,-74.00914,Entire home/apt,159,29,0,,96,325 +34706,20909506,Queens,Astoria,40.765190000000004,-73.91067,Private room,55,3,2,0.18,2,0 +34707,92611851,Manhattan,Upper East Side,40.78051,-73.94809000000001,Entire home/apt,160,1,17,1.62,1,5 +34708,148705627,Queens,Ridgewood,40.70147,-73.9047,Entire home/apt,170,14,1,1.0,2,106 +34709,310670,Bronx,Eastchester,40.88017,-73.83574,Entire home/apt,475,2,0,,13,359 +34710,12243051,Manhattan,Financial District,40.707879999999996,-74.00484,Entire home/apt,217,29,0,,96,9 +34711,1911615,Manhattan,Chelsea,40.74755,-74.00317,Private room,77,1,4,0.36,2,0 +34712,55184486,Brooklyn,Bushwick,40.68842,-73.91465,Entire home/apt,175,1,54,5.26,2,137 +34713,101144679,Brooklyn,Bushwick,40.6944,-73.9242,Entire home/apt,90,3,26,2.43,1,3 +34714,200829464,Manhattan,Upper West Side,40.77425,-73.98122,Entire home/apt,299,3,33,2.97,1,96 +34715,17518954,Brooklyn,Bedford-Stuyvesant,40.69038,-73.93101,Private room,79,3,44,4.06,1,91 +34716,7985095,Manhattan,Hell's Kitchen,40.7645,-73.98788,Entire home/apt,285,2,44,4.05,3,70 +34717,193502084,Brooklyn,Borough Park,40.640390000000004,-74.00251999999999,Private room,45,1,8,0.81,8,0 +34718,193502084,Brooklyn,Borough Park,40.63925,-74.00329,Private room,40,1,12,1.16,8,0 +34719,193502084,Brooklyn,Borough Park,40.63844,-74.00232,Private room,40,1,9,0.82,8,0 +34720,193502084,Brooklyn,Borough Park,40.63889,-74.00244,Private room,40,1,11,1.09,8,0 +34721,33389621,Manhattan,Little Italy,40.71843,-73.99817,Entire home/apt,124,2,5,0.46,1,0 +34722,207651513,Manhattan,Harlem,40.80907,-73.94444,Private room,60,1,49,4.85,3,0 +34723,205745676,Queens,Flushing,40.75889,-73.82104,Private room,89,1,39,3.49,9,342 +34724,7129207,Manhattan,Hell's Kitchen,40.76337,-73.9873,Entire home/apt,159,2,58,5.21,1,124 +34725,16676759,Manhattan,Financial District,40.70668,-74.00726999999999,Private room,180,3,10,0.99,1,48 +34726,190324721,Queens,Flushing,40.76084,-73.83233,Private room,63,1,22,1.99,4,347 +34727,147638312,Brooklyn,Park Slope,40.67246,-73.97707,Private room,125,5,7,0.84,1,180 +34728,192587955,Brooklyn,Bushwick,40.70276,-73.92899,Private room,70,1,1,1.0,1,39 +34729,91646104,Queens,Woodside,40.74344,-73.91076,Private room,51,3,38,3.65,3,146 +34730,7136700,Brooklyn,Crown Heights,40.671659999999996,-73.94674,Entire home/apt,115,3,34,4.43,4,249 +34731,84459821,Bronx,Parkchester,40.83658,-73.86180999999999,Private room,55,1,32,2.96,1,333 +34732,206972453,Manhattan,Nolita,40.72205,-73.99699,Entire home/apt,250,4,16,1.68,1,0 +34733,200380610,Manhattan,West Village,40.73485,-74.00313,Entire home/apt,188,30,0,,65,326 +34734,35660592,Queens,Elmhurst,40.7335,-73.87571,Private room,149,2,5,0.46,6,340 +34735,207777872,Brooklyn,East Flatbush,40.65074,-73.91633,Entire home/apt,55,1,38,3.43,3,311 +34736,162282607,Manhattan,Battery Park City,40.71728,-74.01510999999999,Private room,100,1,5,0.45,1,0 +34737,5108882,Brooklyn,Fort Greene,40.68905,-73.97991,Entire home/apt,170,2,18,1.64,1,0 +34738,104064206,Manhattan,East Harlem,40.79574,-73.94684000000001,Private room,85,1,6,0.55,1,0 +34739,111587063,Manhattan,Upper West Side,40.79291,-73.97599,Entire home/apt,295,2,24,2.28,1,70 +34740,58680528,Manhattan,Chinatown,40.71591,-73.99721,Entire home/apt,125,30,39,3.77,1,32 +34741,8039125,Brooklyn,Fort Greene,40.688109999999995,-73.97539,Private room,52,4,4,0.36,1,329 +34742,207795404,Manhattan,Hell's Kitchen,40.75953,-73.98938000000001,Entire home/apt,151,6,22,2.1,2,56 +34743,22318190,Manhattan,East Harlem,40.79657,-73.94932,Private room,90,4,9,0.82,1,13 +34744,190921808,Manhattan,Hell's Kitchen,40.75526,-73.99719,Private room,55,7,5,0.46,47,342 +34745,190921808,Manhattan,Hell's Kitchen,40.75412,-73.99651,Private room,55,7,1,0.65,47,360 +34746,142289373,Queens,Flushing,40.753609999999995,-73.82014000000001,Entire home/apt,450,3,0,,1,0 +34747,207661442,Bronx,Kingsbridge,40.88445,-73.89663,Private room,50,1,1,0.21,1,61 +34748,177825782,Queens,Jackson Heights,40.75047,-73.88216,Private room,89,4,2,0.33,2,175 +34749,29650513,Brooklyn,Clinton Hill,40.69473,-73.96165,Private room,90,30,1,0.23,6,281 +34750,38675275,Queens,Belle Harbor,40.574909999999996,-73.84962,Entire home/apt,200,1,32,3.02,2,324 +34751,14727039,Brooklyn,Williamsburg,40.716840000000005,-73.94565,Private room,165,3,0,,1,89 +34752,34161028,Brooklyn,Vinegar Hill,40.699490000000004,-73.98319000000001,Private room,116,3,2,0.32,3,16 +34753,2058584,Manhattan,Chelsea,40.745540000000005,-74.00595,Entire home/apt,150,2,7,0.82,1,3 +34754,87757867,Brooklyn,Cobble Hill,40.68517,-73.99545,Private room,80,7,54,4.98,2,311 +34755,7186760,Manhattan,Upper East Side,40.77742,-73.94686999999999,Private room,70,7,1,0.11,2,33 +34756,39285391,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92331,Private room,65,1,56,5.27,2,49 +34757,14049772,Brooklyn,Dyker Heights,40.619679999999995,-74.00656,Entire home/apt,170,4,12,1.17,1,308 +34758,5589082,Brooklyn,Crown Heights,40.675779999999996,-73.94159,Entire home/apt,689,2,18,1.61,1,340 +34759,25899890,Brooklyn,Brighton Beach,40.57762,-73.96051,Entire home/apt,99,2,2,0.19,1,0 +34760,30680112,Manhattan,East Village,40.72951,-73.98576,Entire home/apt,120,2,0,,1,39 +34761,9060287,Manhattan,Greenwich Village,40.73021,-74.00091,Private room,111,3,7,0.63,1,0 +34762,14377035,Brooklyn,Bedford-Stuyvesant,40.68529,-73.95438,Private room,43,4,10,1.02,1,0 +34763,21963202,Queens,Jamaica Estates,40.71927,-73.7868,Entire home/apt,275,1,0,,2,329 +34764,23635330,Brooklyn,Williamsburg,40.71547,-73.94686,Private room,125,2,3,0.27,1,54 +34765,63338955,Brooklyn,Brooklyn Heights,40.6932,-73.9945,Entire home/apt,200,3,4,0.37,1,0 +34766,3662122,Brooklyn,Bushwick,40.70881,-73.92084,Private room,100,3,29,3.19,3,31 +34767,3662122,Brooklyn,Bushwick,40.70751,-73.92143,Private room,63,3,5,0.56,3,0 +34768,21003949,Manhattan,East Harlem,40.788990000000005,-73.95204,Private room,150,1,5,0.48,1,83 +34769,2802223,Manhattan,Harlem,40.827890000000004,-73.93812,Private room,60,30,5,0.47,2,0 +34770,4232014,Brooklyn,Bay Ridge,40.63348,-74.03088000000001,Entire home/apt,100,2,8,0.76,1,46 +34771,16303550,Brooklyn,Bushwick,40.68643,-73.91552,Private room,39,31,1,0.11,1,35 +34772,146660704,Manhattan,Washington Heights,40.85199,-73.93701,Private room,90,2,24,2.39,1,119 +34773,1898675,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.95598000000001,Entire home/apt,195,3,33,3.2,1,241 +34774,61391963,Manhattan,Kips Bay,40.74211,-73.97887,Entire home/apt,142,30,1,0.11,91,364 +34775,10016960,Brooklyn,Bedford-Stuyvesant,40.67772,-73.9233,Private room,55,2,18,1.73,1,310 +34776,61391963,Manhattan,Upper West Side,40.78488,-73.97325,Entire home/apt,142,30,3,0.32,91,213 +34777,24862289,Brooklyn,Williamsburg,40.70865,-73.94631,Entire home/apt,150,4,9,0.89,1,0 +34778,120749029,Brooklyn,Williamsburg,40.70722,-73.94121,Private room,65,27,4,0.44,2,154 +34779,167775339,Queens,Woodside,40.7488,-73.90361999999999,Private room,86,1,12,1.28,1,0 +34780,1180925,Brooklyn,Fort Greene,40.69488,-73.97222,Entire home/apt,200,7,1,0.1,3,163 +34781,44514753,Brooklyn,Williamsburg,40.71239,-73.95271,Private room,65,4,2,0.19,1,0 +34782,49283943,Manhattan,West Village,40.73762,-74.002,Entire home/apt,400,5,1,0.12,1,0 +34783,119669058,Brooklyn,Bedford-Stuyvesant,40.694590000000005,-73.95561,Private room,55,2,13,1.19,34,330 +34784,15272878,Manhattan,Kips Bay,40.741040000000005,-73.98134,Entire home/apt,150,2,0,,1,0 +34785,8663057,Manhattan,East Harlem,40.80226,-73.93583000000001,Entire home/apt,175,3,27,2.53,2,128 +34786,506194,Manhattan,Kips Bay,40.73995,-73.98401,Entire home/apt,150,15,1,0.1,1,5 +34787,16725437,Brooklyn,Bushwick,40.70432,-73.91897,Private room,59,5,8,0.74,1,177 +34788,100238132,Manhattan,Midtown,40.753609999999995,-73.97202,Entire home/apt,339,3,7,0.74,12,0 +34789,169567256,Staten Island,Tompkinsville,40.63183,-74.09268,Private room,100,2,1,0.12,1,0 +34790,100238132,Manhattan,Midtown,40.752159999999996,-73.97351,Entire home/apt,339,3,4,0.41,12,0 +34791,161279657,Manhattan,Chelsea,40.75255,-74.00118,Entire home/apt,350,3,0,,1,0 +34792,208099979,Manhattan,Upper East Side,40.78117,-73.95688,Private room,105,1,3,0.28,1,90 +34793,207833780,Manhattan,Hell's Kitchen,40.76228,-73.99025999999999,Entire home/apt,195,2,53,4.86,1,150 +34794,208106618,Manhattan,Harlem,40.8031,-73.95654,Private room,79,1,8,0.75,1,0 +34795,23884430,Brooklyn,Bushwick,40.69673,-73.92338000000001,Private room,55,1,64,5.87,3,149 +34796,16931119,Brooklyn,Williamsburg,40.717220000000005,-73.95361,Entire home/apt,200,2,1,0.16,1,27 +34797,71299428,Manhattan,Hell's Kitchen,40.75906,-73.99320999999999,Entire home/apt,159,2,3,0.31,1,0 +34798,69997531,Brooklyn,Crown Heights,40.67512,-73.94192,Private room,82,2,21,1.94,1,175 +34799,69366752,Queens,Forest Hills,40.73469,-73.85426,Entire home/apt,65,2,59,5.5,2,127 +34800,204704622,Queens,Elmhurst,40.73874,-73.87615,Private room,59,29,0,,7,41 +34801,207777872,Brooklyn,East Flatbush,40.65068,-73.91811,Private room,75,1,2,0.21,3,125 +34802,33767755,Brooklyn,Greenpoint,40.73357,-73.95908,Entire home/apt,136,2,13,1.32,1,3 +34803,207777872,Brooklyn,East Flatbush,40.65181,-73.91672,Private room,65,1,4,0.39,3,125 +34804,61042,Manhattan,East Harlem,40.798359999999995,-73.94272,Private room,49,5,14,1.37,6,12 +34805,10366675,Manhattan,Greenwich Village,40.73578,-73.99682,Entire home/apt,300,4,5,0.48,1,0 +34806,6067124,Brooklyn,Carroll Gardens,40.68307,-73.99226,Entire home/apt,160,4,2,0.23,1,4 +34807,208206416,Manhattan,Lower East Side,40.71815,-73.98858,Entire home/apt,150,7,8,0.79,1,290 +34808,124399442,Brooklyn,Midwood,40.61241,-73.95939,Shared room,32,7,0,,4,21 +34809,119669058,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95541999999999,Shared room,36,1,9,0.82,34,365 +34810,19000768,Queens,Sunnyside,40.74194,-73.92353,Entire home/apt,79,2,6,0.54,2,0 +34811,164291123,Manhattan,Gramercy,40.73928,-73.98638000000001,Private room,129,1,35,3.3,3,365 +34812,87786261,Brooklyn,South Slope,40.66055,-73.98597,Entire home/apt,159,1,11,1.05,5,262 +34813,101170153,Manhattan,Harlem,40.81709,-73.94216999999999,Entire home/apt,100,5,10,0.92,1,177 +34814,7245581,Manhattan,Chelsea,40.74912,-73.99739,Entire home/apt,93,105,1,0.14,19,332 +34815,63903815,Manhattan,Upper West Side,40.796659999999996,-73.97334000000001,Entire home/apt,220,6,0,,1,0 +34816,6663544,Manhattan,Harlem,40.81756,-73.94099,Entire home/apt,86,4,3,0.28,1,0 +34817,15322945,Manhattan,Inwood,40.86139,-73.92744,Private room,60,1,26,2.36,1,365 +34818,24909331,Brooklyn,Greenpoint,40.733540000000005,-73.95576,Private room,105,4,0,,1,8 +34819,181651082,Queens,Rosedale,40.66049,-73.73496,Private room,60,1,6,0.58,3,167 +34820,52262348,Manhattan,Lower East Side,40.7188,-73.98554,Entire home/apt,185,3,10,0.97,1,0 +34821,156586664,Queens,Flushing,40.753890000000006,-73.83192,Private room,75,1,65,6.11,1,139 +34822,5466113,Manhattan,Washington Heights,40.85268,-73.92716,Entire home/apt,95,1,42,4.0,1,2 +34823,22011768,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9486,Private room,42,2,34,3.29,1,9 +34824,16356851,Brooklyn,Greenpoint,40.734390000000005,-73.95839000000001,Private room,120,5,8,0.79,2,179 +34825,6388234,Queens,Forest Hills,40.71852,-73.84577,Private room,120,2,0,,1,35 +34826,207213839,Brooklyn,Sunset Park,40.64136,-74.01898,Entire home/apt,120,3,0,,1,0 +34827,30532557,Brooklyn,Bedford-Stuyvesant,40.68977,-73.92723000000001,Private room,37,30,0,,5,214 +34828,125857611,Manhattan,Harlem,40.81162,-73.95199000000001,Entire home/apt,350,3,2,0.19,1,0 +34829,59765638,Queens,Douglaston,40.765609999999995,-73.7464,Entire home/apt,125,3,16,1.51,1,123 +34830,208346552,Brooklyn,Windsor Terrace,40.65818,-73.98031,Entire home/apt,165,3,55,5.11,1,37 +34831,17278356,Manhattan,Upper West Side,40.79099,-73.97293,Private room,230,3,14,1.28,1,0 +34832,24363273,Manhattan,East Harlem,40.78549,-73.94895,Entire home/apt,200,20,1,0.09,1,341 +34833,89767580,Manhattan,Midtown,40.74673,-73.98499,Entire home/apt,250,5,59,5.82,1,58 +34834,10511660,Brooklyn,Williamsburg,40.70666,-73.96629,Entire home/apt,290,4,12,1.25,1,117 +34835,205745676,Queens,Flushing,40.7594,-73.81971,Private room,80,1,21,1.9,9,362 +34836,208367810,Brooklyn,Borough Park,40.64047,-73.99687,Shared room,25,3,8,0.77,4,88 +34837,208367810,Brooklyn,Gravesend,40.600590000000004,-73.98818,Shared room,35,3,2,0.32,4,50 +34838,194520886,Queens,Jamaica Estates,40.7143,-73.78985,Entire home/apt,150,1,20,1.92,2,147 +34839,402569,Brooklyn,Williamsburg,40.71295,-73.94459,Entire home/apt,180,3,22,1.98,1,98 +34840,17898332,Manhattan,Upper East Side,40.78497,-73.95201,Entire home/apt,150,4,7,0.69,1,0 +34841,95642648,Manhattan,Upper East Side,40.77713,-73.95309,Entire home/apt,95,4,3,0.27,2,0 +34842,26185286,Manhattan,Harlem,40.829229999999995,-73.93764,Private room,120,3,22,2.1,1,10 +34843,46935284,Manhattan,Gramercy,40.738009999999996,-73.98815,Entire home/apt,400,4,2,0.25,1,0 +34844,3250725,Manhattan,SoHo,40.7206,-74.0033,Entire home/apt,1100,3,5,0.52,1,180 +34845,208485817,Brooklyn,Bushwick,40.69616,-73.92905,Entire home/apt,160,5,0,,1,0 +34846,144699715,Brooklyn,Bedford-Stuyvesant,40.69442,-73.95144,Entire home/apt,60,4,1,0.13,1,0 +34847,83203036,Queens,Arverne,40.58845,-73.80015,Entire home/apt,130,2,0,,1,215 +34848,208488535,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94389,Entire home/apt,150,4,7,0.65,1,0 +34849,208136645,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.94351999999999,Private room,49,2,9,0.83,4,132 +34850,68907781,Queens,Astoria,40.76892,-73.92919,Entire home/apt,120,1,5,0.52,3,0 +34851,45863742,Manhattan,Battery Park City,40.713640000000005,-74.01758000000001,Entire home/apt,3750,1,0,,1,365 +34852,2886359,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91546,Entire home/apt,100,1,5,0.63,2,0 +34853,67987135,Brooklyn,Bedford-Stuyvesant,40.691,-73.93836999999999,Entire home/apt,139,1,10,0.94,9,20 +34854,44034761,Manhattan,Upper West Side,40.779790000000006,-73.98513,Entire home/apt,135,1,0,,2,93 +34855,70997341,Brooklyn,Bushwick,40.69768,-73.93511,Private room,59,2,26,2.39,1,0 +34856,181885938,Queens,Elmhurst,40.733940000000004,-73.87207,Private room,60,2,11,1.05,2,318 +34857,12970838,Manhattan,Lower East Side,40.72159,-73.98959,Entire home/apt,197,5,1,0.14,1,12 +34858,208531763,Manhattan,Harlem,40.81915,-73.9425,Entire home/apt,112,4,9,1.04,1,89 +34859,26825592,Manhattan,East Village,40.73028,-73.98165,Entire home/apt,140,2,19,1.76,1,18 +34860,20267436,Queens,Ditmars Steinway,40.77516,-73.90558,Private room,125,1,0,,1,363 +34861,5790236,Manhattan,Upper West Side,40.78837,-73.96821,Entire home/apt,245,2,33,3.14,2,262 +34862,13462855,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93966,Entire home/apt,175,4,6,0.58,2,1 +34863,55170899,Brooklyn,Greenpoint,40.72586,-73.94547,Entire home/apt,199,2,14,1.28,1,250 +34864,64450303,Brooklyn,Flatlands,40.627759999999995,-73.94136999999999,Entire home/apt,65,2,97,8.87,2,7 +34865,23299832,Queens,Arverne,40.59787,-73.79759,Entire home/apt,250,1,0,,1,90 +34866,208574990,Bronx,Unionport,40.82972,-73.84957,Private room,60,1,0,,1,268 +34867,208580991,Queens,Elmhurst,40.732240000000004,-73.87534000000001,Entire home/apt,229,2,37,3.58,1,0 +34868,45835291,Manhattan,Harlem,40.82424,-73.9554,Private room,70,7,49,4.55,6,22 +34869,93153006,Brooklyn,Bushwick,40.69399,-73.92472,Private room,88,7,21,1.91,1,54 +34870,208634617,Brooklyn,Bedford-Stuyvesant,40.69339,-73.93970999999999,Private room,55,2,41,3.73,3,358 +34871,208634617,Brooklyn,Bedford-Stuyvesant,40.69197,-73.94051999999999,Private room,55,2,27,2.47,3,346 +34872,208634617,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93871999999999,Private room,55,2,27,2.46,3,351 +34873,7780845,Brooklyn,Bushwick,40.70133,-73.91726,Private room,65,2,3,0.28,3,28 +34874,103865219,Brooklyn,Bedford-Stuyvesant,40.67973,-73.92591999999999,Entire home/apt,350,1,2,1.58,1,127 +34875,38123545,Brooklyn,Bedford-Stuyvesant,40.6912,-73.9394,Private room,52,2,25,2.31,2,328 +34876,38123545,Brooklyn,Bedford-Stuyvesant,40.69015,-73.94075,Private room,55,2,24,2.32,2,347 +34877,46176891,Brooklyn,Williamsburg,40.70601,-73.92825,Entire home/apt,160,2,0,,1,0 +34878,89031106,Brooklyn,Greenpoint,40.724090000000004,-73.95039,Entire home/apt,125,5,5,1.17,4,68 +34879,113697596,Manhattan,Chelsea,40.73639,-73.99318000000001,Private room,200,4,13,1.23,1,172 +34880,45675260,Brooklyn,Bushwick,40.69632,-73.9193,Private room,65,3,5,0.46,2,0 +34881,126119576,Brooklyn,Williamsburg,40.71015,-73.94654,Private room,85,4,1,0.1,2,0 +34882,208699273,Manhattan,Hell's Kitchen,40.76384,-73.98822,Entire home/apt,379,2,31,3.24,1,238 +34883,194843581,Manhattan,Upper West Side,40.801159999999996,-73.96088,Private room,69,2,10,0.91,4,0 +34884,45675260,Brooklyn,Bushwick,40.69792,-73.91886,Private room,65,3,5,0.48,2,6 +34885,21785798,Manhattan,Harlem,40.81493,-73.93953,Entire home/apt,175,5,1,0.11,1,89 +34886,126024716,Brooklyn,Bushwick,40.7044,-73.92111,Entire home/apt,100,3,6,0.55,1,0 +34887,195517789,Brooklyn,Sunset Park,40.65092,-74.00489,Private room,50,3,39,3.79,2,300 +34888,12243051,Manhattan,Financial District,40.707609999999995,-74.00513000000001,Entire home/apt,294,29,0,,96,38 +34889,21923346,Manhattan,East Village,40.73215,-73.9866,Entire home/apt,225,2,6,0.57,1,87 +34890,45336046,Manhattan,Harlem,40.8154,-73.94677,Entire home/apt,175,2,1,0.09,1,14 +34891,199070207,Bronx,Kingsbridge,40.863,-73.90661,Private room,80,3,24,2.91,2,72 +34892,67987135,Brooklyn,Bedford-Stuyvesant,40.69236,-73.93759,Entire home/apt,155,1,17,1.65,9,118 +34893,205745676,Queens,Flushing,40.75732,-73.82075,Private room,75,1,25,2.31,9,360 +34894,23884430,Brooklyn,Bushwick,40.69372,-73.92801,Private room,55,1,47,4.31,3,0 +34895,77829151,Manhattan,Hell's Kitchen,40.76164,-73.99804,Entire home/apt,239,4,2,0.21,1,0 +34896,112545065,Brooklyn,Bushwick,40.69898,-73.92266,Private room,50,7,1,0.65,2,55 +34897,75587530,Manhattan,Upper East Side,40.77943,-73.95456,Shared room,90,26,0,,2,90 +34898,208856601,Brooklyn,Bay Ridge,40.63368,-74.01956,Entire home/apt,300,3,8,0.83,1,125 +34899,22622958,Brooklyn,Park Slope,40.67889,-73.97813000000001,Entire home/apt,285,2,25,2.35,2,36 +34900,124743046,Brooklyn,Bedford-Stuyvesant,40.69155,-73.95714,Entire home/apt,250,4,36,3.34,3,202 +34901,208882093,Brooklyn,Crown Heights,40.67522,-73.91938,Private room,85,1,1,0.15,1,65 +34902,18763685,Manhattan,East Village,40.7309,-73.98671,Entire home/apt,330,2,8,0.74,1,5 +34903,205745676,Queens,Flushing,40.75828,-73.82145,Private room,85,1,31,2.81,9,337 +34904,3598079,Manhattan,Midtown,40.754529999999995,-73.96840999999999,Private room,120,1,12,1.11,1,0 +34905,208906697,Bronx,Longwood,40.82248,-73.89915,Private room,50,1,13,1.26,1,280 +34906,115154494,Brooklyn,Williamsburg,40.71727,-73.94821,Entire home/apt,150,3,6,0.61,1,0 +34907,56546581,Brooklyn,Williamsburg,40.71877,-73.96093,Private room,63,10,2,0.52,1,0 +34908,94390487,Brooklyn,Bedford-Stuyvesant,40.68592,-73.93117,Private room,85,3,11,1.04,1,170 +34909,208911587,Queens,Springfield Gardens,40.66448,-73.76479,Entire home/apt,85,3,33,3.07,1,44 +34910,105828180,Brooklyn,Crown Heights,40.66872,-73.95343000000001,Private room,43,2,57,5.52,3,81 +34911,183330366,Manhattan,Little Italy,40.71714,-73.99815,Private room,80,2,65,6.35,1,12 +34912,118226205,Brooklyn,Williamsburg,40.71582,-73.94191,Entire home/apt,172,3,32,3.12,3,78 +34913,38956453,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9358,Entire home/apt,125,2,51,5.03,1,89 +34914,208260240,Brooklyn,Brighton Beach,40.580870000000004,-73.95974,Private room,45,1,1,1.0,1,39 +34915,208946050,Queens,Jamaica,40.69576,-73.78867,Entire home/apt,54,2,45,4.18,1,12 +34916,128610997,Manhattan,Harlem,40.82663,-73.94108,Entire home/apt,170,3,3,0.28,2,180 +34917,3800338,Brooklyn,Flatbush,40.645990000000005,-73.95985999999999,Private room,50,2,2,2.0,1,77 +34918,208955733,Brooklyn,East Flatbush,40.65625,-73.9218,Private room,80,1,77,7.0,4,345 +34919,85113502,Queens,St. Albans,40.70245,-73.76925,Private room,55,1,0,,1,8 +34920,137358866,Queens,Woodside,40.74146,-73.89341,Private room,33,30,1,0.21,103,246 +34921,4415812,Brooklyn,Flatbush,40.64011,-73.95773,Private room,45,4,24,2.44,1,4 +34922,52363997,Manhattan,Upper East Side,40.760659999999994,-73.96396999999999,Entire home/apt,150,1,2,2.0,1,0 +34923,44469259,Brooklyn,Bedford-Stuyvesant,40.693090000000005,-73.93051,Private room,37,2,44,4.04,2,1 +34924,1423082,Manhattan,Nolita,40.72265,-73.99458,Entire home/apt,150,2,26,2.41,1,0 +34925,175182004,Queens,Ditmars Steinway,40.77668,-73.90668000000001,Private room,60,1,3,0.45,1,40 +34926,38272413,Brooklyn,Midwood,40.61358,-73.95484,Entire home/apt,71,2,3,0.28,2,0 +34927,15537429,Manhattan,East Village,40.72658,-73.97753,Entire home/apt,158,2,21,3.07,3,18 +34928,102332204,Manhattan,Harlem,40.81658,-73.93994,Entire home/apt,150,2,11,2.92,1,38 +34929,158407820,Queens,Woodside,40.75398,-73.90084,Private room,58,2,32,2.96,5,88 +34930,158407820,Queens,Woodside,40.75375,-73.90037,Private room,57,2,21,1.94,5,125 +34931,53127489,Queens,Ridgewood,40.70609,-73.90592,Private room,65,2,0,,2,0 +34932,98260543,Manhattan,Upper East Side,40.76988,-73.95352,Private room,155,1,13,1.25,3,312 +34933,875439,Queens,Jackson Heights,40.749970000000005,-73.87850999999999,Entire home/apt,185,3,25,3.21,1,55 +34934,21020951,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93686,Private room,86,2,2,0.97,5,342 +34935,8855004,Brooklyn,Bedford-Stuyvesant,40.68891,-73.95164,Private room,65,1,1,0.09,1,0 +34936,2362991,Brooklyn,Bedford-Stuyvesant,40.68398,-73.93464,Entire home/apt,139,2,6,2.02,1,0 +34937,89332421,Manhattan,Kips Bay,40.74462,-73.97838,Entire home/apt,187,3,4,0.53,1,0 +34938,145245549,Staten Island,New Dorp Beach,40.56629,-74.10331,Private room,36,2,18,1.67,1,178 +34939,50183471,Manhattan,Hell's Kitchen,40.75597,-73.9955,Entire home/apt,120,14,15,1.8,1,0 +34940,209121939,Manhattan,Harlem,40.82005,-73.93949,Private room,65,1,21,1.94,2,58 +34941,157209452,Manhattan,Nolita,40.721940000000004,-73.99557,Private room,120,1,9,0.85,1,179 +34942,15486514,Bronx,Parkchester,40.8358,-73.85833000000001,Shared room,65,2,4,0.39,2,0 +34943,1008066,Manhattan,Chelsea,40.74557,-73.99871,Entire home/apt,250,2,14,1.51,1,28 +34944,27610676,Queens,Bayside,40.76189,-73.77349,Entire home/apt,120,2,7,0.9,1,41 +34945,32126880,Queens,Laurelton,40.67563,-73.74713,Entire home/apt,175,2,6,0.97,2,317 +34946,32126880,Queens,Laurelton,40.67525,-73.74625,Entire home/apt,200,2,6,0.92,2,321 +34947,92509169,Manhattan,Upper West Side,40.78348,-73.98383000000001,Entire home/apt,148,2,18,1.74,1,1 +34948,209147067,Brooklyn,Borough Park,40.6448,-73.99524,Entire home/apt,120,2,5,0.52,1,3 +34949,1213248,Manhattan,Harlem,40.80722,-73.9491,Entire home/apt,159,3,31,3.07,1,358 +34950,9793059,Manhattan,Lower East Side,40.71586,-73.98908,Entire home/apt,200,4,16,1.46,1,56 +34951,12104046,Manhattan,Harlem,40.82862,-73.93831999999999,Entire home/apt,85,2,23,2.24,2,16 +34952,47023469,Manhattan,Upper West Side,40.7956,-73.97219,Private room,90,1,31,3.0,3,112 +34953,3550181,Brooklyn,Williamsburg,40.71094,-73.95026,Entire home/apt,104,2,20,2.0,1,0 +34954,208775804,Bronx,Kingsbridge,40.88354,-73.89061,Private room,85,3,0,,1,89 +34955,207381668,Brooklyn,East New York,40.67661,-73.87488,Entire home/apt,125,2,43,4.13,1,95 +34956,12672916,Manhattan,East Harlem,40.80147,-73.94431999999999,Entire home/apt,275,3,2,0.19,1,0 +34957,61688262,Queens,Springfield Gardens,40.66333,-73.7661,Private room,60,14,12,1.14,1,341 +34958,152484079,Staten Island,Port Richmond,40.63577,-74.13113,Private room,46,1,17,1.55,1,0 +34959,209202426,Brooklyn,Bushwick,40.7015,-73.93566,Entire home/apt,80,7,5,0.53,1,0 +34960,69476664,Brooklyn,Bay Ridge,40.63895,-74.02599000000001,Entire home/apt,136,2,24,2.26,1,130 +34961,5354200,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93478,Entire home/apt,125,1,68,6.26,1,261 +34962,15413542,Brooklyn,Bushwick,40.690979999999996,-73.92128000000001,Private room,85,1,14,1.38,1,81 +34963,4367464,Brooklyn,Fort Greene,40.69028,-73.97484,Entire home/apt,175,3,16,1.63,1,0 +34964,209291543,Manhattan,Midtown,40.75355,-73.97352,Private room,400,7,3,1.23,1,184 +34965,24762401,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95079,Private room,60,30,27,2.7,4,319 +34966,24762401,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95042,Private room,60,30,11,1.02,4,361 +34967,9503685,Brooklyn,Bedford-Stuyvesant,40.691990000000004,-73.9435,Private room,95,2,2,0.19,2,0 +34968,24762401,Brooklyn,Bedford-Stuyvesant,40.69088,-73.95018,Private room,65,30,30,2.84,4,365 +34969,209306758,Bronx,Baychester,40.878859999999996,-73.84300999999999,Private room,69,3,9,0.87,2,311 +34970,67801150,Queens,Elmhurst,40.73543,-73.87522,Private room,89,1,2,0.18,1,33 +34971,14760734,Manhattan,East Harlem,40.78954,-73.95076,Private room,110,1,35,3.9,1,90 +34972,158969505,Manhattan,Lower East Side,40.722640000000006,-73.9912,Entire home/apt,150,30,2,0.77,9,302 +34973,106647991,Brooklyn,Bushwick,40.70398,-73.92168000000001,Private room,52,7,3,0.29,1,0 +34974,209332627,Manhattan,Washington Heights,40.85711,-73.93004,Private room,75,2,4,1.67,2,58 +34975,9761047,Brooklyn,Williamsburg,40.71532,-73.96209,Private room,60,3,29,3.19,3,61 +34976,97012192,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96065,Entire home/apt,100,2,6,0.58,1,0 +34977,209350565,Brooklyn,Crown Heights,40.67754,-73.94824,Private room,90,1,52,4.92,1,0 +34978,187731563,Queens,Astoria,40.769690000000004,-73.92197,Entire home/apt,170,2,11,1.07,1,0 +34979,32215382,Brooklyn,Sheepshead Bay,40.59446,-73.94289,Entire home/apt,105,2,1,0.59,1,36 +34980,7087709,Brooklyn,Boerum Hill,40.68783,-73.98695,Entire home/apt,295,2,31,2.99,1,25 +34981,6584607,Brooklyn,Williamsburg,40.71739,-73.96244,Private room,98,1,33,3.24,2,11 +34982,126501524,Brooklyn,Bedford-Stuyvesant,40.68387,-73.94162,Entire home/apt,150,3,44,4.14,3,252 +34983,4354856,Brooklyn,Williamsburg,40.71095,-73.95170999999999,Private room,100,60,0,,2,157 +34984,209374833,Brooklyn,Crown Heights,40.666779999999996,-73.96148000000001,Private room,99,3,19,4.96,2,41 +34985,125177157,Manhattan,West Village,40.73397,-74.00168000000001,Entire home/apt,190,2,0,,1,0 +34986,133473678,Queens,Long Island City,40.75118,-73.93646,Private room,89,1,0,,1,0 +34987,158407820,Queens,Woodside,40.75391,-73.90256,Private room,53,2,23,2.15,5,156 +34988,209386156,Manhattan,East Harlem,40.798840000000006,-73.9424,Shared room,49,2,25,2.31,9,12 +34989,6591232,Brooklyn,Bushwick,40.69194,-73.92352,Private room,40,3,1,0.1,1,0 +34990,3048319,Manhattan,Hell's Kitchen,40.76209,-73.99875,Entire home/apt,300,2,12,1.14,2,2 +34991,209386156,Manhattan,East Harlem,40.800329999999995,-73.94201,Shared room,49,2,60,5.54,9,109 +34992,78485066,Brooklyn,East New York,40.665259999999996,-73.8937,Entire home/apt,124,2,34,3.59,2,273 +34993,209386156,Manhattan,East Harlem,40.800329999999995,-73.941,Shared room,60,2,28,2.58,9,120 +34994,209405908,Manhattan,Hell's Kitchen,40.75658,-73.99568000000001,Private room,100,1,41,3.8,3,64 +34995,84063956,Brooklyn,Williamsburg,40.70908,-73.95006,Private room,78,1,32,3.19,1,30 +34996,209406241,Queens,Forest Hills,40.71799,-73.85695,Entire home/apt,300,1,0,,1,0 +34997,209405908,Manhattan,Hell's Kitchen,40.75655,-73.99535,Private room,90,1,44,4.07,3,36 +34998,209405908,Manhattan,Hell's Kitchen,40.75611,-73.9937,Entire home/apt,180,1,41,4.73,3,30 +34999,98260543,Manhattan,Upper East Side,40.76938,-73.95212,Entire home/apt,300,2,8,1.06,3,62 +35000,27780735,Brooklyn,Bushwick,40.69815,-73.92841,Entire home/apt,110,1,2,0.19,1,0 +35001,45578040,Manhattan,Hell's Kitchen,40.76457,-73.98765999999999,Entire home/apt,269,1,18,1.67,2,55 +35002,4233057,Manhattan,East Harlem,40.797090000000004,-73.93585999999999,Private room,61,3,8,0.85,3,95 +35003,180212824,Manhattan,Upper East Side,40.76517,-73.95669000000001,Private room,99,1,7,0.74,5,0 +35004,74569188,Brooklyn,Flatbush,40.64815,-73.96862,Private room,60,2,3,0.32,1,0 +35005,205706382,Queens,Maspeth,40.72514,-73.89845,Shared room,11,1,0,,1,245 +35006,22072708,Manhattan,Midtown,40.74264,-73.98361,Entire home/apt,199,3,14,1.33,1,3 +35007,11365400,Queens,Long Island City,40.736740000000005,-73.92973,Private room,75,1,91,8.56,2,0 +35008,12926593,Manhattan,West Village,40.73202,-74.00348000000001,Private room,150,2,2,0.21,3,56 +35009,209549523,Manhattan,Midtown,40.74863,-73.98291,Private room,150,1,59,6.04,3,0 +35010,30532557,Brooklyn,Bedford-Stuyvesant,40.68925,-73.92805,Private room,42,30,3,0.36,5,216 +35011,209306758,Bronx,Baychester,40.8773,-73.84329,Private room,53,3,12,1.2,2,356 +35012,52889401,Manhattan,West Village,40.73223,-74.00499,Entire home/apt,290,2,9,0.87,1,41 +35013,209549523,Manhattan,Midtown,40.74906,-73.98454,Private room,135,1,70,7.24,3,0 +35014,209549523,Manhattan,Midtown,40.74858,-73.98340999999999,Shared room,62,1,112,10.77,3,0 +35015,30775274,Manhattan,Midtown,40.746159999999996,-73.98640999999999,Entire home/apt,800,1,1,0.31,1,270 +35016,23463422,Manhattan,West Village,40.73384,-74.00010999999999,Entire home/apt,175,3,7,0.7,1,0 +35017,209372017,Bronx,Bronxdale,40.8546,-73.86785,Private room,50,1,24,2.24,1,163 +35018,199524563,Queens,Rego Park,40.72678,-73.86218000000001,Private room,55,2,25,2.37,3,38 +35019,205390315,Manhattan,Upper West Side,40.796890000000005,-73.96289,Entire home/apt,149,3,32,3.07,1,96 +35020,15485954,Manhattan,Hell's Kitchen,40.76315,-73.99235,Entire home/apt,200,1,29,2.79,1,0 +35021,209642447,Manhattan,SoHo,40.72725,-74.00128000000001,Entire home/apt,350,2,38,4.49,1,267 +35022,3566012,Brooklyn,Bushwick,40.69546,-73.91476999999999,Private room,38,7,0,,1,40 +35023,129263359,Manhattan,Hell's Kitchen,40.76398,-73.99087,Entire home/apt,250,2,1,0.38,1,9 +35024,24399066,Brooklyn,Williamsburg,40.72018,-73.9573,Entire home/apt,185,1,20,1.89,1,44 +35025,60928518,Brooklyn,Carroll Gardens,40.67982,-74.00038,Entire home/apt,185,2,25,2.42,1,17 +35026,209719391,Manhattan,Midtown,40.74752,-73.98679,Entire home/apt,140,3,28,2.71,1,333 +35027,209121939,Manhattan,Harlem,40.81942,-73.94068,Private room,45,1,14,1.34,2,128 +35028,43044876,Queens,Sunnyside,40.739979999999996,-73.92619,Private room,40,29,1,0.11,5,0 +35029,5744362,Brooklyn,Park Slope,40.6779,-73.97991,Private room,150,1,1,0.1,1,276 +35030,209758777,Manhattan,Midtown,40.74631,-73.98501999999999,Private room,145,1,53,7.61,2,5 +35031,4668357,Queens,Jamaica,40.68479,-73.77606,Entire home/apt,125,1,2,0.22,1,0 +35032,134170699,Queens,Elmhurst,40.73603,-73.87845,Private room,70,2,25,2.31,2,177 +35033,12243051,Manhattan,Financial District,40.70628,-74.00654,Entire home/apt,245,29,0,,96,304 +35034,15486514,Bronx,Parkchester,40.835809999999995,-73.85864000000001,Private room,65,2,3,0.29,2,0 +35035,20951849,Brooklyn,Bedford-Stuyvesant,40.69138,-73.93217,Entire home/apt,350,1,5,0.49,2,5 +35036,20448671,Brooklyn,Williamsburg,40.7098,-73.9418,Private room,66,2,6,0.66,3,173 +35037,20448671,Brooklyn,Williamsburg,40.70755,-73.94377,Private room,65,2,22,2.25,3,173 +35038,201015598,Brooklyn,Bedford-Stuyvesant,40.69089,-73.93911999999999,Shared room,31,1,33,3.08,17,85 +35039,12243051,Manhattan,Midtown,40.7469,-73.98438,Entire home/apt,239,29,0,,96,305 +35040,173362161,Brooklyn,Flatbush,40.644079999999995,-73.96979,Private room,55,2,28,2.64,6,68 +35041,20448671,Brooklyn,Williamsburg,40.70936,-73.9437,Private room,75,2,16,1.55,3,215 +35042,33655,Brooklyn,Columbia St,40.68388,-74.00484,Entire home/apt,210,2,11,1.24,2,120 +35043,8197910,Brooklyn,Williamsburg,40.71652,-73.94809000000001,Private room,120,1,16,1.55,1,85 +35044,12243051,Manhattan,Midtown,40.746809999999996,-73.98488,Entire home/apt,239,29,0,,96,327 +35045,12243051,Manhattan,Midtown,40.74576,-73.98339,Entire home/apt,239,29,0,,96,326 +35046,3635302,Brooklyn,Bushwick,40.70563,-73.91853,Private room,90,2,6,0.58,3,89 +35047,3635302,Brooklyn,Bushwick,40.7052,-73.91888,Private room,90,2,14,1.32,3,87 +35048,170026468,Brooklyn,Flatbush,40.65258,-73.96343,Entire home/apt,115,3,11,1.23,1,165 +35049,44469259,Brooklyn,Bedford-Stuyvesant,40.69331,-73.93030999999999,Private room,45,1,1,0.14,2,0 +35050,7692306,Manhattan,Harlem,40.80597,-73.95348,Entire home/apt,200,3,2,0.24,1,16 +35051,54217990,Brooklyn,Williamsburg,40.71315,-73.94993000000001,Private room,105,3,12,1.34,1,0 +35052,209386156,Manhattan,East Harlem,40.798320000000004,-73.94214000000001,Shared room,49,2,35,3.23,9,9 +35053,209386156,Manhattan,East Harlem,40.79873,-73.94051999999999,Shared room,49,2,51,4.71,9,5 +35054,209386156,Manhattan,East Harlem,40.799,-73.94107,Shared room,49,2,23,2.12,9,10 +35055,209386156,Manhattan,East Harlem,40.79861,-73.94116,Shared room,49,2,62,5.81,9,3 +35056,130971031,Brooklyn,Bushwick,40.70397,-73.91801,Private room,73,3,8,0.76,4,104 +35057,11376647,Manhattan,Upper East Side,40.76856,-73.95366999999999,Entire home/apt,150,10,3,0.29,1,17 +35058,48677236,Manhattan,West Village,40.73271,-74.00206999999999,Entire home/apt,220,2,10,0.92,1,48 +35059,194377255,Queens,East Elmhurst,40.76019,-73.88405,Private room,35,1,92,8.87,4,344 +35060,24589216,Brooklyn,Williamsburg,40.70878,-73.96061,Entire home/apt,125,1,13,1.22,2,0 +35061,12750945,Manhattan,Chelsea,40.741859999999996,-73.99769,Shared room,85,2,22,2.19,4,365 +35062,156259857,Brooklyn,Bushwick,40.68164,-73.9039,Entire home/apt,350,6,0,,3,156 +35063,12243051,Manhattan,Midtown,40.74705,-73.98268,Entire home/apt,239,29,0,,96,328 +35064,50912,Brooklyn,Crown Heights,40.67268,-73.96108000000001,Entire home/apt,190,1,9,0.99,1,364 +35065,7169451,Manhattan,Upper East Side,40.765370000000004,-73.9638,Entire home/apt,300,3,2,0.21,1,343 +35066,12243051,Manhattan,Midtown,40.74658,-73.98298,Entire home/apt,279,29,0,,96,325 +35067,190921808,Manhattan,Hell's Kitchen,40.75393,-73.99633,Private room,65,1,2,0.23,47,361 +35068,23776693,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92936,Private room,48,3,22,3.13,3,94 +35069,12243051,Manhattan,Midtown,40.75452,-73.96256,Entire home/apt,239,29,0,,96,206 +35070,814747,Brooklyn,Fort Greene,40.68634,-73.97091,Entire home/apt,250,2,4,0.39,2,12 +35071,20469514,Queens,Arverne,40.59391,-73.78824,Entire home/apt,150,2,22,2.04,1,118 +35072,50169207,Manhattan,East Harlem,40.794090000000004,-73.94006999999999,Private room,150,2,2,0.24,2,67 +35073,209979150,Brooklyn,Crown Heights,40.67082,-73.92175,Entire home/apt,80,2,64,6.0,1,209 +35074,118419433,Queens,Jackson Heights,40.75395,-73.87396,Private room,80,1,5,0.47,1,180 +35075,152246149,Bronx,Throgs Neck,40.83148,-73.82930999999999,Private room,65,1,23,2.18,5,365 +35076,61391963,Manhattan,Midtown,40.75734,-73.96727,Entire home/apt,150,30,1,0.45,91,311 +35077,37820632,Brooklyn,Fort Greene,40.68912,-73.97514,Entire home/apt,275,2,2,0.19,1,0 +35078,191765199,Manhattan,Washington Heights,40.83341,-73.94154,Entire home/apt,250,3,6,0.95,6,46 +35079,210019212,Brooklyn,Bushwick,40.70767,-73.92307,Private room,49,7,28,2.78,3,28 +35080,210014579,Queens,Ridgewood,40.701859999999996,-73.90467,Private room,61,1,48,4.5,1,171 +35081,153781232,Brooklyn,Prospect Heights,40.67313,-73.96536,Private room,90,1,8,0.75,1,129 +35082,67913256,Brooklyn,Williamsburg,40.71475,-73.94913000000001,Private room,75,1,5,0.59,1,55 +35083,31659721,Manhattan,Harlem,40.80624,-73.95622,Private room,110,1,1,0.1,1,0 +35084,210054677,Queens,Woodside,40.74822,-73.90590999999999,Entire home/apt,125,1,33,3.2,1,95 +35085,152246149,Bronx,Throgs Neck,40.82952,-73.82818,Private room,140,1,31,3.01,5,365 +35086,10017420,Brooklyn,Cobble Hill,40.68574,-73.99958000000001,Entire home/apt,250,3,31,2.98,1,101 +35087,73820234,Manhattan,West Village,40.73213,-74.00865,Private room,100,3,35,3.3,1,112 +35088,53481649,Brooklyn,Williamsburg,40.714929999999995,-73.96089,Private room,90,2,2,0.19,1,0 +35089,141400974,Manhattan,Harlem,40.809129999999996,-73.94614,Private room,45,14,5,0.47,1,0 +35090,158314625,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92588,Private room,65,1,27,2.52,2,0 +35091,62187386,Brooklyn,Bushwick,40.70117,-73.91481,Private room,45,3,9,0.87,1,10 +35092,12243051,Manhattan,Midtown,40.754979999999996,-73.96426,Entire home/apt,212,29,0,,96,203 +35093,110674731,Brooklyn,Williamsburg,40.71247,-73.94548,Private room,70,1,2,0.18,1,0 +35094,12243051,Manhattan,Midtown,40.75497,-73.96289,Entire home/apt,204,29,0,,96,243 +35095,210170222,Manhattan,Lower East Side,40.71815,-73.98213,Private room,400,3,6,0.87,1,67 +35096,12243051,Manhattan,Financial District,40.707879999999996,-74.00459000000001,Entire home/apt,184,29,0,,96,267 +35097,104607422,Manhattan,Harlem,40.83005,-73.93992,Entire home/apt,119,1,29,3.02,1,103 +35098,3699846,Manhattan,Tribeca,40.7181,-74.00999,Private room,197,5,3,0.3,1,95 +35099,210175250,Brooklyn,Bushwick,40.6888,-73.92015,Private room,30,1,18,3.6,1,93 +35100,12243051,Manhattan,Financial District,40.70797,-74.0055,Entire home/apt,245,29,1,0.26,96,311 +35101,13775855,Manhattan,East Village,40.72772,-73.98046,Entire home/apt,149,3,25,2.4,1,1 +35102,68284975,Brooklyn,Bushwick,40.69355,-73.92684,Private room,66,2,39,3.75,2,158 +35103,124901163,Manhattan,Harlem,40.8228,-73.94442,Private room,76,5,2,0.32,1,66 +35104,143952234,Brooklyn,Crown Heights,40.671820000000004,-73.94445999999999,Entire home/apt,100,3,5,0.52,1,0 +35105,13098292,Brooklyn,Bushwick,40.69961,-73.93138,Private room,55,3,4,0.39,2,0 +35106,13098292,Brooklyn,Bushwick,40.699940000000005,-73.93299,Private room,55,2,0,,2,0 +35107,45155504,Queens,St. Albans,40.70046,-73.74834,Entire home/apt,130,2,17,1.69,1,352 +35108,104885443,Queens,Astoria,40.769420000000004,-73.92772,Entire home/apt,130,2,3,0.47,2,0 +35109,210218941,Queens,Woodhaven,40.6959,-73.84868,Entire home/apt,51,7,3,1.0,1,2 +35110,210250232,Brooklyn,East New York,40.67154,-73.87913,Private room,65,3,2,0.19,1,179 +35111,41610771,Brooklyn,Bedford-Stuyvesant,40.68056,-73.95371999999999,Entire home/apt,100,3,5,0.66,1,4 +35112,207622517,Queens,Woodhaven,40.69508,-73.86032,Entire home/apt,170,3,24,2.55,1,308 +35113,266921,Brooklyn,Williamsburg,40.71399,-73.9454,Entire home/apt,144,6,1,0.16,1,71 +35114,3598494,Manhattan,West Village,40.73641,-73.99929,Entire home/apt,250,2,3,0.34,1,0 +35115,209556739,Manhattan,Midtown,40.74478,-73.98442,Entire home/apt,349,4,32,3.04,1,255 +35116,32866463,Brooklyn,Bay Ridge,40.633340000000004,-74.01784,Private room,65,1,40,3.79,2,169 +35117,34988761,Brooklyn,Williamsburg,40.71289,-73.9637,Private room,65,1,0,,1,0 +35118,207381757,Bronx,Norwood,40.876329999999996,-73.88328,Private room,45,1,18,1.93,1,153 +35119,206884583,Bronx,Pelham Bay,40.84633,-73.83029,Private room,80,2,28,2.69,1,78 +35120,104812805,Staten Island,Arrochar,40.59623,-74.0839,Private room,34,4,8,0.85,8,290 +35121,117030530,Brooklyn,Greenpoint,40.733470000000004,-73.95164,Private room,80,3,2,0.2,1,0 +35122,137358866,Queens,Maspeth,40.73786,-73.90616,Private room,36,30,1,0.77,103,235 +35123,5064974,Manhattan,Chelsea,40.73918,-73.99753,Entire home/apt,180,6,5,0.56,1,0 +35124,12243051,Manhattan,Financial District,40.70776,-74.00477,Entire home/apt,174,29,0,,96,313 +35125,127056976,Brooklyn,Williamsburg,40.71407,-73.93856,Private room,66,5,3,0.31,1,0 +35126,35959456,Brooklyn,Williamsburg,40.71893,-73.95866,Private room,95,1,47,4.35,1,28 +35127,32935611,Brooklyn,Sunset Park,40.647040000000004,-74.00819,Entire home/apt,119,4,23,2.61,1,31 +35128,3809729,Manhattan,East Village,40.72307,-73.98369,Entire home/apt,199,3,7,0.69,1,0 +35129,19664260,Manhattan,Midtown,40.752159999999996,-73.97171999999999,Entire home/apt,300,1,2,0.2,1,0 +35130,65692858,Manhattan,Lower East Side,40.720929999999996,-73.98595999999999,Private room,150,3,17,1.65,1,188 +35131,106651452,Manhattan,Civic Center,40.7131,-74.00527,Entire home/apt,70,15,0,,1,0 +35132,101498908,Brooklyn,East Flatbush,40.6504,-73.95011,Private room,39,3,2,0.19,2,0 +35133,23115464,Brooklyn,Brooklyn Heights,40.695029999999996,-73.99475,Entire home/apt,125,8,1,0.1,1,207 +35134,210505783,Manhattan,Chelsea,40.748129999999996,-74.00478000000001,Private room,300,2,4,0.45,1,0 +35135,7324189,Manhattan,Midtown,40.76043,-73.97075,Private room,150,3,3,0.31,2,127 +35136,25549229,Brooklyn,Williamsburg,40.7073,-73.96607,Private room,60,4,17,1.59,2,131 +35137,106063627,Brooklyn,Park Slope,40.681779999999996,-73.97957,Entire home/apt,130,120,0,,1,0 +35138,135018,Brooklyn,Williamsburg,40.71113,-73.96181,Entire home/apt,180,3,1,0.11,1,9 +35139,40830538,Brooklyn,Prospect-Lefferts Gardens,40.65815,-73.95546,Private room,40,31,3,0.45,2,84 +35140,12703112,Brooklyn,Kensington,40.63472,-73.97268000000001,Private room,65,3,2,0.19,1,281 +35141,42273,Brooklyn,South Slope,40.66875,-73.98779,Entire home/apt,150,31,1,0.64,2,281 +35142,3968209,Manhattan,SoHo,40.72099,-73.99920999999999,Private room,100,3,8,0.81,2,361 +35143,210578372,Brooklyn,Carroll Gardens,40.68112,-73.99296,Entire home/apt,150,4,9,0.87,1,0 +35144,4359156,Brooklyn,Williamsburg,40.70856,-73.96632,Private room,90,2,2,2.0,1,10 +35145,110930,Queens,Astoria,40.76305,-73.91874,Private room,40,5,1,0.1,1,0 +35146,75287595,Brooklyn,Park Slope,40.6783,-73.97559,Private room,69,1,13,1.22,1,1 +35147,26405093,Staten Island,Stapleton,40.63782,-74.07732,Private room,85,1,2,0.19,2,353 +35148,4336107,Brooklyn,Crown Heights,40.67436,-73.9551,Entire home/apt,200,4,6,0.61,1,4 +35149,210019212,Brooklyn,Bushwick,40.707770000000004,-73.92115,Private room,59,1,33,3.14,3,28 +35150,43888084,Manhattan,Upper East Side,40.780570000000004,-73.95186,Entire home/apt,248,4,3,0.31,1,100 +35151,8619668,Brooklyn,Crown Heights,40.66663,-73.93455,Private room,60,3,2,0.21,1,50 +35152,121657084,Manhattan,Midtown,40.7571,-73.98014,Private room,95,3,28,2.71,1,0 +35153,35660592,Queens,Elmhurst,40.73366,-73.87651,Private room,77,2,10,0.98,6,354 +35154,4908332,Brooklyn,Bushwick,40.70325,-73.91349,Private room,70,1,8,0.81,1,0 +35155,174504698,Queens,Elmhurst,40.73853,-73.88646999999999,Shared room,100,1,0,,1,179 +35156,51954926,Brooklyn,Bedford-Stuyvesant,40.69652,-73.94821,Private room,45,2,46,4.68,4,36 +35157,210687004,Queens,Woodside,40.75537,-73.90741,Private room,83,2,0,,1,126 +35158,51954926,Brooklyn,Bedford-Stuyvesant,40.69676,-73.94794,Private room,45,2,41,4.07,4,39 +35159,205188960,Brooklyn,East Flatbush,40.6491,-73.92532,Entire home/apt,75,3,12,1.21,1,167 +35160,31967085,Queens,Long Island City,40.75428,-73.93323000000001,Private room,64,4,23,2.21,1,8 +35161,6842719,Brooklyn,Williamsburg,40.71615,-73.94171,Entire home/apt,150,2,3,0.48,2,330 +35162,129864476,Brooklyn,Williamsburg,40.7191,-73.95988,Private room,80,1,13,1.32,1,65 +35163,4324281,Brooklyn,Bedford-Stuyvesant,40.68231,-73.95201999999999,Entire home/apt,75,2,17,2.17,1,77 +35164,23120620,Queens,Flushing,40.738209999999995,-73.81006,Private room,64,1,7,0.73,5,90 +35165,3870708,Brooklyn,Windsor Terrace,40.660470000000004,-73.98244,Entire home/apt,154,2,12,1.16,1,19 +35166,78379915,Brooklyn,Bedford-Stuyvesant,40.68392,-73.95265,Private room,40,30,1,0.65,1,282 +35167,29600909,Brooklyn,Greenpoint,40.72927,-73.9477,Entire home/apt,160,2,14,6.18,1,45 +35168,61009334,Manhattan,Midtown,40.75142,-73.97049,Entire home/apt,210,2,7,0.68,1,0 +35169,210779293,Brooklyn,Borough Park,40.63516,-74.00078,Private room,54,1,55,5.16,2,59 +35170,7580102,Manhattan,Midtown,40.76399,-73.98076999999999,Private room,139,3,3,0.31,2,0 +35171,16594445,Queens,Flushing,40.76106,-73.8305,Private room,39,1,22,2.14,1,82 +35172,210783572,Manhattan,Chelsea,40.741859999999996,-74.00372,Entire home/apt,180,4,3,0.31,1,0 +35173,9021276,Manhattan,Gramercy,40.739470000000004,-73.9847,Entire home/apt,400,4,7,0.68,1,64 +35174,1142553,Manhattan,Stuyvesant Town,40.72957,-73.97715,Entire home/apt,189,2,5,0.48,1,0 +35175,210800401,Manhattan,Washington Heights,40.8466,-73.93432,Private room,60,3,28,2.64,2,0 +35176,8441265,Queens,Ridgewood,40.70576,-73.91129000000001,Private room,55,3,3,0.32,2,0 +35177,27071572,Manhattan,Upper West Side,40.79372,-73.97431,Entire home/apt,140,5,3,0.29,1,89 +35178,41942577,Brooklyn,Bushwick,40.69247,-73.91196,Private room,46,5,1,0.11,1,0 +35179,66744930,Brooklyn,Williamsburg,40.712070000000004,-73.95784,Entire home/apt,122,3,18,1.87,1,61 +35180,1358304,Manhattan,Hell's Kitchen,40.76292,-73.99219000000001,Entire home/apt,350,60,0,,1,177 +35181,39285391,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92349,Private room,65,1,42,3.99,2,67 +35182,210831649,Brooklyn,Brownsville,40.66176,-73.92,Entire home/apt,176,3,0,,1,54 +35183,174663454,Manhattan,Harlem,40.80672,-73.94993000000001,Private room,70,1,47,4.45,1,10 +35184,137358866,Queens,Woodside,40.74272,-73.91075,Private room,38,30,0,,103,0 +35185,99683151,Manhattan,West Village,40.7334,-74.00323,Entire home/apt,180,3,21,2.09,3,162 +35186,210843289,Staten Island,Mariners Harbor,40.63068,-74.15521,Private room,40,2,86,10.12,1,56 +35187,23370431,Queens,Queens Village,40.71711,-73.75608000000001,Private room,55,2,7,0.76,2,155 +35188,26822598,Brooklyn,Williamsburg,40.713879999999996,-73.94999,Private room,80,5,3,0.29,1,0 +35189,45050275,Manhattan,Upper West Side,40.800979999999996,-73.96025,Private room,99,1,45,4.44,1,0 +35190,219313,Manhattan,Harlem,40.8101,-73.94453,Entire home/apt,225,4,0,,1,364 +35191,12358203,Manhattan,Harlem,40.82996,-73.94714,Private room,90,1,20,2.05,2,6 +35192,32604201,Queens,Long Island City,40.75094,-73.93806,Entire home/apt,107,3,4,0.38,1,0 +35193,210916369,Bronx,Wakefield,40.88563,-73.85975,Private room,50,2,40,3.77,1,0 +35194,5182228,Brooklyn,Flatbush,40.64063,-73.95666999999999,Entire home/apt,300,2,6,0.58,1,0 +35195,117964194,Brooklyn,Park Slope,40.67009,-73.98491999999999,Entire home/apt,123,13,23,2.35,1,0 +35196,137358866,Manhattan,Harlem,40.81094,-73.94273000000001,Private room,36,30,2,0.22,103,215 +35197,20912691,Queens,Jamaica,40.71075,-73.7823,Entire home/apt,399,2,17,2.3,7,324 +35198,11305944,Bronx,Williamsbridge,40.87135,-73.85736,Entire home/apt,145,2,5,0.48,5,0 +35199,31296185,Brooklyn,Williamsburg,40.71286,-73.9599,Entire home/apt,140,2,4,1.04,1,213 +35200,194535003,Manhattan,Hell's Kitchen,40.75537,-73.995,Private room,54,30,2,0.23,1,352 +35201,5649853,Brooklyn,Greenpoint,40.73473,-73.95776,Entire home/apt,177,2,23,2.28,1,214 +35202,149639152,Manhattan,Harlem,40.81758,-73.94188,Private room,65,2,22,2.06,1,275 +35203,8171440,Brooklyn,Williamsburg,40.71286,-73.95898000000001,Entire home/apt,150,2,17,1.68,1,0 +35204,2702372,Brooklyn,Sunset Park,40.64614,-74.0064,Private room,50,2,12,1.16,1,41 +35205,183400278,Brooklyn,Williamsburg,40.711529999999996,-73.94556999999999,Entire home/apt,104,2,5,0.54,1,179 +35206,210779293,Brooklyn,Borough Park,40.63592,-74.00064,Private room,54,1,46,4.31,2,36 +35207,161184313,Brooklyn,Greenpoint,40.730290000000004,-73.9515,Private room,74,5,1,0.13,2,95 +35208,112545065,Brooklyn,Bushwick,40.69852,-73.92428000000001,Private room,75,2,4,1.43,2,64 +35209,3554039,Manhattan,Upper East Side,40.77041,-73.96109,Entire home/apt,300,2,11,1.07,1,8 +35210,138923178,Manhattan,Hell's Kitchen,40.76383,-73.98921999999999,Entire home/apt,280,2,28,2.83,1,147 +35211,102108786,Brooklyn,East New York,40.671859999999995,-73.88815,Private room,150,2,1,0.1,2,362 +35212,20071733,Manhattan,East Harlem,40.79329,-73.94725,Private room,73,5,5,0.47,1,0 +35213,34817471,Queens,Long Island City,40.7583,-73.93294,Private room,70,4,3,0.29,1,0 +35214,210992029,Brooklyn,Flatbush,40.63847,-73.95693,Entire home/apt,195,2,0,,1,30 +35215,138086216,Brooklyn,Bergen Beach,40.62299,-73.90501,Entire home/apt,97,2,25,2.68,1,148 +35216,35335572,Brooklyn,Williamsburg,40.71645,-73.95721,Entire home/apt,130,3,1,0.16,1,2 +35217,192365952,Brooklyn,Williamsburg,40.71733,-73.95810999999999,Private room,95,1,62,5.83,1,65 +35218,204704622,Queens,Woodside,40.74131,-73.89774,Private room,40,28,2,0.24,7,0 +35219,154981576,Queens,Ridgewood,40.70117,-73.91083,Private room,38,30,3,0.36,9,7 +35220,8252974,Brooklyn,Williamsburg,40.71229,-73.95591999999999,Private room,70,25,3,0.33,1,0 +35221,154981576,Brooklyn,Bushwick,40.69985,-73.91195,Private room,38,30,0,,9,43 +35222,211024051,Brooklyn,Crown Heights,40.67243,-73.94977,Entire home/apt,600,3,24,2.27,1,139 +35223,2510754,Brooklyn,Crown Heights,40.67508,-73.94242,Private room,44,5,2,0.2,1,0 +35224,115993835,Brooklyn,Sunset Park,40.640209999999996,-74.00867,Private room,29,1,18,1.73,5,0 +35225,211034625,Manhattan,Chinatown,40.71409,-73.99575,Entire home/apt,135,3,9,0.87,1,68 +35226,52593429,Brooklyn,Bushwick,40.704879999999996,-73.92520999999999,Private room,58,2,13,1.25,2,3 +35227,52125790,Manhattan,East Harlem,40.793,-73.94125,Private room,120,3,5,0.47,1,0 +35228,1472433,Brooklyn,Williamsburg,40.70698,-73.94295,Private room,110,1,3,0.28,2,173 +35229,3571431,Manhattan,West Village,40.73086,-74.00498,Private room,130,5,4,0.41,2,117 +35230,50756378,Staten Island,Clifton,40.617059999999995,-74.08567,Private room,50,2,8,0.77,7,37 +35231,50756378,Staten Island,Clifton,40.61683,-74.08551999999999,Private room,40,2,4,0.39,7,37 +35232,50756378,Staten Island,Clifton,40.61542,-74.08496,Shared room,95,3,0,,7,37 +35233,211069875,Brooklyn,Borough Park,40.6428,-73.99297,Private room,70,1,0,,1,0 +35234,211106440,Brooklyn,Crown Heights,40.677820000000004,-73.94373,Entire home/apt,495,4,46,4.55,1,194 +35235,211115242,Queens,Ridgewood,40.7018,-73.89643000000001,Private room,80,1,16,1.54,1,0 +35236,50288091,Manhattan,Tribeca,40.71392,-74.00754,Private room,200,2,3,0.84,1,0 +35237,52310314,Manhattan,Murray Hill,40.74775,-73.98226,Private room,89,1,13,1.27,1,2 +35238,209237058,Brooklyn,Bedford-Stuyvesant,40.683679999999995,-73.92028,Private room,40,3,7,0.69,1,13 +35239,168569105,Brooklyn,Bedford-Stuyvesant,40.69037,-73.92694,Private room,60,9,1,0.33,1,83 +35240,119669058,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95668,Shared room,36,1,15,1.45,34,365 +35241,211136294,Bronx,Schuylerville,40.83729,-73.83323,Private room,69,1,2,0.19,5,330 +35242,13208084,Brooklyn,Crown Heights,40.67818,-73.94709,Private room,45,7,1,0.1,3,143 +35243,4441146,Brooklyn,Carroll Gardens,40.677240000000005,-73.99797,Private room,75,1,25,2.36,1,65 +35244,200380610,Manhattan,Upper East Side,40.75991,-73.96105,Entire home/apt,160,30,0,,65,364 +35245,15102235,Brooklyn,Cobble Hill,40.68643,-73.9976,Entire home/apt,125,4,38,3.75,2,33 +35246,211146044,Brooklyn,Bedford-Stuyvesant,40.691590000000005,-73.9388,Private room,55,2,30,2.98,3,314 +35247,203286339,Manhattan,East Harlem,40.7887,-73.9414,Private room,90,1,50,4.84,1,0 +35248,152129733,Manhattan,Hell's Kitchen,40.762609999999995,-73.99143000000001,Entire home/apt,300,3,1,1.0,1,90 +35249,63480384,Brooklyn,Flatbush,40.6531,-73.96184000000001,Private room,88,2,5,0.53,2,86 +35250,119669058,Brooklyn,Bedford-Stuyvesant,40.6925,-73.95551,Shared room,36,1,16,1.51,34,365 +35251,58905707,Manhattan,Hell's Kitchen,40.76168,-74.00079000000001,Entire home/apt,225,2,14,1.35,1,0 +35252,11002711,Brooklyn,Midwood,40.613490000000006,-73.94896,Private room,79,1,6,0.67,1,180 +35253,71149842,Manhattan,East Village,40.72882,-73.97807,Private room,80,1,6,0.58,2,0 +35254,55858529,Brooklyn,Bedford-Stuyvesant,40.68465,-73.93847,Private room,39,2,62,6.08,3,4 +35255,119669058,Brooklyn,Bedford-Stuyvesant,40.69448,-73.95696,Private room,43,2,20,1.96,34,344 +35256,25710035,Brooklyn,Bushwick,40.69695,-73.92268,Private room,37,28,1,0.12,1,0 +35257,208770380,Manhattan,Hell's Kitchen,40.76511,-73.98714,Entire home/apt,394,2,19,2.19,1,68 +35258,162397867,Manhattan,Kips Bay,40.74487,-73.97608000000001,Entire home/apt,799,5,1,0.1,1,364 +35259,208918394,Manhattan,Hell's Kitchen,40.76543,-73.98871,Entire home/apt,499,2,28,2.95,1,233 +35260,79489045,Brooklyn,Borough Park,40.64423,-73.99686,Private room,60,3,1,0.81,1,53 +35261,167636238,Brooklyn,Cypress Hills,40.680640000000004,-73.88285,Private room,68,2,5,0.49,3,365 +35262,86892036,Brooklyn,Bushwick,40.70706,-73.9201,Private room,70,3,7,0.68,2,11 +35263,828519,Manhattan,Hell's Kitchen,40.7603,-73.98822,Private room,149,5,13,1.26,1,123 +35264,211205182,Queens,Flushing,40.737359999999995,-73.80071,Entire home/apt,69,1,86,8.06,1,121 +35265,50756378,Staten Island,Clifton,40.61672,-74.0855,Shared room,75,2,1,0.1,7,37 +35266,189404055,Queens,Long Island City,40.7544,-73.93314000000001,Private room,95,3,25,2.44,2,245 +35267,72420514,Manhattan,West Village,40.73723,-74.00845,Entire home/apt,214,1,8,0.75,3,296 +35268,50756378,Staten Island,Clifton,40.61575,-74.08658,Shared room,75,2,0,,7,37 +35269,211220478,Manhattan,Hell's Kitchen,40.75885,-73.98996,Entire home/apt,269,1,63,6.18,1,216 +35270,16533479,Brooklyn,Bedford-Stuyvesant,40.69164,-73.93431,Entire home/apt,80,3,3,0.29,1,105 +35271,154678310,Queens,Elmhurst,40.74038,-73.87380999999999,Private room,30,1,24,2.32,1,0 +35272,211022699,Brooklyn,Carroll Gardens,40.6798,-73.99271999999999,Entire home/apt,200,2,7,0.9,1,45 +35273,137358866,Queens,Sunnyside,40.737590000000004,-73.92126999999999,Private room,39,30,3,0.31,103,251 +35274,137358866,Queens,Sunnyside,40.73919,-73.92004,Private room,38,30,2,0.21,103,233 +35275,13974626,Staten Island,Tompkinsville,40.63482,-74.095,Entire home/apt,65,2,13,2.89,1,247 +35276,23884430,Brooklyn,Bushwick,40.694309999999994,-73.92246999999999,Private room,70,1,68,6.54,3,168 +35277,8814258,Queens,South Ozone Park,40.67172,-73.79669,Shared room,30,4,4,0.41,7,365 +35278,8814258,Queens,South Ozone Park,40.6726,-73.79566,Shared room,31,5,1,0.11,7,365 +35279,120237085,Brooklyn,Bedford-Stuyvesant,40.692170000000004,-73.95837,Entire home/apt,170,4,3,0.37,1,0 +35280,4290578,Manhattan,Inwood,40.86524,-73.92195,Private room,45,1,12,1.37,1,0 +35281,28190490,Manhattan,Hell's Kitchen,40.75435,-73.99744,Entire home/apt,90,4,6,0.56,1,3 +35282,70007560,Manhattan,East Harlem,40.792359999999995,-73.94689,Entire home/apt,400,1,1,0.16,2,7 +35283,57484031,Brooklyn,Crown Heights,40.66472,-73.92871,Private room,250,1,0,,1,0 +35284,128447,Manhattan,Kips Bay,40.74371,-73.97946,Entire home/apt,200,3,3,0.28,2,13 +35285,6116657,Manhattan,Hell's Kitchen,40.76228,-73.99027,Entire home/apt,199,3,25,2.48,1,30 +35286,155297713,Brooklyn,Bushwick,40.70466,-73.92553000000001,Private room,35,30,1,0.12,3,4 +35287,182989977,Brooklyn,East Flatbush,40.65562,-73.93952,Private room,60,3,3,0.29,5,90 +35288,137522531,Queens,Flushing,40.757,-73.80927,Entire home/apt,499,6,0,,7,363 +35289,5340329,Queens,Sunnyside,40.74375,-73.91563000000001,Entire home/apt,118,2,0,,2,0 +35290,138203985,Queens,Ridgewood,40.707240000000006,-73.91268000000001,Entire home/apt,195,1,94,8.84,1,0 +35291,3330784,Manhattan,West Village,40.732409999999994,-74.00721999999999,Entire home/apt,180,6,2,0.2,1,0 +35292,211393353,Brooklyn,Prospect Heights,40.677690000000005,-73.96548,Entire home/apt,150,15,2,0.24,1,57 +35293,3221735,Queens,Astoria,40.768359999999994,-73.91405,Entire home/apt,115,5,28,2.75,1,38 +35294,38886949,Brooklyn,Prospect Heights,40.67893,-73.97113,Private room,250,16,0,,2,89 +35295,12358203,Manhattan,Harlem,40.82867,-73.94561,Private room,80,1,28,2.78,2,5 +35296,23388169,Brooklyn,Prospect Heights,40.67752,-73.96977,Private room,200,2,16,1.62,2,357 +35297,16223929,Manhattan,Hell's Kitchen,40.75525,-73.99597,Entire home/apt,639,3,4,0.38,1,108 +35298,1100212,Brooklyn,Bushwick,40.68636,-73.91331,Private room,150,3,1,0.1,1,26 +35299,50407407,Brooklyn,Park Slope,40.6715,-73.98451,Private room,70,1,1,0.1,1,0 +35300,131379802,Queens,Sunnyside,40.7441,-73.92153,Entire home/apt,115,2,31,3.31,1,169 +35301,8056254,Manhattan,East Village,40.72795,-73.97768,Entire home/apt,225,2,2,0.22,1,0 +35302,46160710,Manhattan,West Village,40.73765,-74.00157,Entire home/apt,140,30,11,1.24,1,6 +35303,8792814,Brooklyn,Prospect-Lefferts Gardens,40.66318,-73.95371999999999,Entire home/apt,200,1,2,0.21,10,220 +35304,57287101,Manhattan,East Village,40.7249,-73.98026,Entire home/apt,250,2,5,0.48,1,0 +35305,27261471,Brooklyn,Canarsie,40.64693,-73.89537,Entire home/apt,119,5,0,,2,220 +35306,18090278,Brooklyn,Midwood,40.615590000000005,-73.9496,Entire home/apt,125,2,1,0.16,1,55 +35307,211535073,Manhattan,Kips Bay,40.743359999999996,-73.97628,Private room,150,20,1,0.11,1,0 +35308,76862848,Manhattan,Hell's Kitchen,40.76708,-73.98295,Private room,270,6,4,0.45,1,365 +35309,51992385,Manhattan,Washington Heights,40.84536,-73.93564,Private room,72,6,5,0.53,1,361 +35310,46842591,Manhattan,Midtown,40.744040000000005,-73.98263,Entire home/apt,250,5,5,0.51,2,179 +35311,2878510,Manhattan,Upper East Side,40.77353,-73.95357,Private room,100,3,10,0.99,1,14 +35312,29582232,Brooklyn,Flatbush,40.64184,-73.9642,Private room,68,2,42,3.96,5,47 +35313,5640444,Brooklyn,Williamsburg,40.71012,-73.9595,Entire home/apt,200,5,5,0.49,1,35 +35314,70774951,Queens,East Elmhurst,40.76708,-73.8795,Entire home/apt,129,1,52,4.92,3,296 +35315,178499417,Brooklyn,East Flatbush,40.64557,-73.94684000000001,Entire home/apt,80,1,14,1.49,1,0 +35316,211385563,Manhattan,Upper East Side,40.77936,-73.9518,Entire home/apt,175,2,41,4.16,1,247 +35317,1636092,Queens,Astoria,40.76255,-73.91934,Entire home/apt,160,6,2,0.19,1,19 +35318,33245632,Manhattan,Murray Hill,40.74628,-73.97899,Entire home/apt,460,2,11,1.07,1,27 +35319,9130040,Brooklyn,East Flatbush,40.661840000000005,-73.93436,Private room,89,1,2,0.22,6,365 +35320,37697640,Brooklyn,Crown Heights,40.67672,-73.94934,Entire home/apt,99,2,3,0.3,1,0 +35321,111284635,Brooklyn,Bedford-Stuyvesant,40.67856,-73.94483000000001,Private room,55,2,11,1.15,1,4 +35322,137358866,Queens,Sunnyside,40.73703,-73.92179,Private room,38,30,0,,103,245 +35323,137358866,Manhattan,East Harlem,40.79422,-73.94421,Entire home/apt,76,30,3,0.36,103,219 +35324,131777975,Brooklyn,Brownsville,40.66339,-73.91671,Private room,50,4,5,0.52,3,365 +35325,4740447,Brooklyn,Prospect-Lefferts Gardens,40.66178,-73.9505,Entire home/apt,175,1,76,8.29,1,321 +35326,16714191,Manhattan,Gramercy,40.7358,-73.9806,Entire home/apt,160,3,6,0.69,1,351 +35327,211212649,Queens,St. Albans,40.695479999999996,-73.77436,Private room,65,2,1,0.16,1,0 +35328,826553,Manhattan,Washington Heights,40.85461,-73.92668,Entire home/apt,80,4,6,0.59,1,56 +35329,211678783,Manhattan,East Harlem,40.788070000000005,-73.93988,Private room,99,1,20,2.03,1,0 +35330,188023318,Brooklyn,Greenpoint,40.72625,-73.95578,Entire home/apt,480,1,11,1.3,4,63 +35331,64680664,Brooklyn,Bushwick,40.68993,-73.91139,Private room,60,2,32,3.1,3,78 +35332,92237522,Brooklyn,Flatbush,40.63621,-73.95251999999999,Private room,35,3,17,1.62,2,59 +35333,151520943,Queens,East Elmhurst,40.76248,-73.86986,Private room,110,1,52,4.92,1,365 +35334,8539550,Brooklyn,Kensington,40.64349,-73.9738,Private room,60,3,20,1.91,1,62 +35335,196770644,Staten Island,Stapleton,40.63556,-74.07623000000001,Entire home/apt,150,2,27,2.74,1,259 +35336,197368927,Brooklyn,Sheepshead Bay,40.607659999999996,-73.95384,Entire home/apt,350,1,23,2.88,8,334 +35337,156958091,Brooklyn,Bushwick,40.6932,-73.90639,Private room,65,1,26,2.52,3,0 +35338,2478763,Brooklyn,Williamsburg,40.71594,-73.94113,Entire home/apt,298,2,2,0.2,1,74 +35339,32092125,Queens,Springfield Gardens,40.66207,-73.74986,Entire home/apt,101,1,32,4.4,1,135 +35340,5340329,Queens,Sunnyside,40.74342,-73.91538,Shared room,72,2,0,,2,0 +35341,199203455,Queens,Ridgewood,40.70476,-73.91111,Private room,75,1,3,0.29,1,0 +35342,211124733,Queens,Jamaica,40.67091,-73.78204000000001,Entire home/apt,165,3,24,2.32,1,51 +35343,5687436,Manhattan,Financial District,40.70535,-74.01276999999999,Entire home/apt,200,1,0,,1,0 +35344,206714649,Queens,South Ozone Park,40.672959999999996,-73.79658,Private room,80,1,75,9.34,3,57 +35345,206714649,Queens,South Ozone Park,40.6718,-73.79719,Private room,80,1,66,7.56,3,48 +35346,198610122,Manhattan,West Village,40.730109999999996,-74.00198,Entire home/apt,170,2,6,0.59,1,0 +35347,210970608,Brooklyn,Crown Heights,40.669959999999996,-73.94836,Entire home/apt,530,3,8,0.9,5,249 +35348,8814258,Queens,South Ozone Park,40.67324,-73.7957,Shared room,34,5,2,0.23,7,365 +35349,88827816,Manhattan,Upper East Side,40.76325,-73.95893000000001,Private room,99,11,0,,1,365 +35350,8814258,Queens,South Ozone Park,40.67286,-73.79666,Shared room,29,5,1,0.1,7,365 +35351,211836350,Manhattan,East Village,40.72744,-73.9831,Entire home/apt,209,3,4,0.58,1,83 +35352,133792790,Manhattan,Upper West Side,40.77727,-73.9795,Entire home/apt,300,1,76,8.29,1,239 +35353,9594567,Brooklyn,Bushwick,40.70463,-73.92026,Private room,50,5,1,0.1,1,0 +35354,37243605,Brooklyn,Williamsburg,40.71311,-73.94036,Private room,65,2,1,1.0,1,303 +35355,193502084,Brooklyn,Borough Park,40.63989,-74.00321,Private room,45,1,7,0.68,8,0 +35356,211321817,Bronx,Eastchester,40.882709999999996,-73.83216999999999,Private room,50,1,0,,1,88 +35357,211860521,Queens,Bellerose,40.729079999999996,-73.72778000000001,Private room,105,3,7,0.76,2,343 +35358,70260514,Queens,Woodside,40.74588,-73.89721,Private room,45,4,4,0.43,1,0 +35359,16204937,Manhattan,West Village,40.738609999999994,-74.00466999999999,Entire home/apt,215,3,7,0.68,1,0 +35360,10229087,Queens,Ditmars Steinway,40.772240000000004,-73.89295,Private room,220,1,5,0.61,4,346 +35361,176290998,Manhattan,Hell's Kitchen,40.75622,-73.99405,Private room,100,1,12,1.19,1,89 +35362,144687306,Brooklyn,Prospect-Lefferts Gardens,40.6556,-73.95286,Entire home/apt,120,2,51,4.94,2,232 +35363,8179150,Brooklyn,Williamsburg,40.71119,-73.94349,Private room,90,31,0,,1,0 +35364,211893857,Brooklyn,East Flatbush,40.65943,-73.91939,Entire home/apt,110,2,45,5.27,1,2 +35365,211895243,Brooklyn,Midwood,40.62588,-73.96396,Entire home/apt,97,2,26,2.57,2,81 +35366,45000778,Brooklyn,Williamsburg,40.70612,-73.92725,Private room,75,2,6,0.61,1,0 +35367,29964121,Manhattan,Financial District,40.70402,-74.00964,Private room,150,1,17,1.63,1,362 +35368,176591085,Manhattan,Washington Heights,40.84519,-73.941,Private room,50,1,3,1.36,4,270 +35369,176591085,Manhattan,Washington Heights,40.845209999999994,-73.9416,Private room,47,1,3,1.67,4,90 +35370,76350146,Manhattan,Kips Bay,40.74123,-73.97559,Private room,150,2,17,1.95,1,0 +35371,150578564,Brooklyn,Bushwick,40.69938,-73.93342,Private room,75,1,75,7.28,1,64 +35372,211682646,Queens,Astoria,40.77194,-73.92985,Private room,58,1,41,3.97,1,156 +35373,10043726,Manhattan,Lower East Side,40.71823,-73.98536999999999,Entire home/apt,150,5,20,2.01,1,26 +35374,126155532,Manhattan,Washington Heights,40.85053,-73.93027,Private room,70,2,28,2.8,1,123 +35375,18753186,Brooklyn,Gowanus,40.68255,-73.98911,Entire home/apt,150,5,25,2.43,2,54 +35376,42623736,Brooklyn,Bedford-Stuyvesant,40.68476,-73.9548,Entire home/apt,130,3,2,0.28,1,0 +35377,29953329,Brooklyn,Bedford-Stuyvesant,40.693709999999996,-73.94449,Private room,53,4,52,6.5,2,1 +35378,52675311,Brooklyn,Crown Heights,40.66818,-73.95529,Entire home/apt,200,2,13,1.26,1,89 +35379,24614094,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94391,Private room,35,1,27,2.58,2,338 +35380,128447,Manhattan,Kips Bay,40.74365,-73.97928,Entire home/apt,220,3,0,,2,24 +35381,210970608,Brooklyn,Crown Heights,40.6697,-73.94919,Entire home/apt,285,3,13,1.26,5,275 +35382,210970608,Brooklyn,Crown Heights,40.66977,-73.9489,Entire home/apt,245,3,5,0.48,5,278 +35383,129222253,Bronx,Williamsbridge,40.87675,-73.86372,Entire home/apt,280,2,32,3.09,3,344 +35384,190096034,Queens,Corona,40.74454,-73.8592,Private room,60,1,74,7.21,3,66 +35385,9609022,Brooklyn,Greenpoint,40.72113,-73.95279000000001,Entire home/apt,98,8,1,0.1,1,0 +35386,47516406,Queens,Woodhaven,40.691390000000006,-73.86086,Private room,10,7,4,0.41,2,180 +35387,211549023,Manhattan,Midtown,40.747690000000006,-73.9885,Entire home/apt,200,2,13,1.38,13,358 +35388,51022084,Brooklyn,Williamsburg,40.71216,-73.95968,Private room,75,4,3,0.3,1,29 +35389,71177383,Brooklyn,Bushwick,40.70028,-73.93928000000001,Private room,78,2,18,1.8,2,266 +35390,12243051,Manhattan,Midtown,40.75522,-73.96444,Entire home/apt,239,29,0,,96,189 +35391,117354500,Manhattan,Flatiron District,40.73928,-73.98583,Private room,590,2,6,0.6,1,125 +35392,87767243,Brooklyn,Bedford-Stuyvesant,40.682520000000004,-73.91467,Private room,41,4,0,,2,0 +35393,1494472,Brooklyn,Fort Greene,40.696940000000005,-73.97493,Entire home/apt,145,30,1,0.11,2,177 +35394,200730049,Manhattan,Midtown,40.74517,-73.98924,Private room,65,30,0,,1,363 +35395,122849679,Brooklyn,Sheepshead Bay,40.59085,-73.95405,Private room,70,1,2,0.2,1,0 +35396,212112060,Manhattan,Upper West Side,40.78089,-73.98406,Private room,135,1,8,0.93,1,197 +35397,202837291,Brooklyn,Flatbush,40.646679999999996,-73.9642,Private room,65,1,20,2.09,2,164 +35398,210179412,Queens,Springfield Gardens,40.66684,-73.76645,Shared room,120,1,16,1.62,1,14 +35399,7341856,Manhattan,Upper West Side,40.781620000000004,-73.9753,Entire home/apt,175,1,1,0.1,1,195 +35400,205745676,Queens,Flushing,40.75806,-73.82005,Private room,85,1,24,2.31,9,341 +35401,48898267,Manhattan,Harlem,40.81695,-73.94335,Private room,79,2,3,0.29,1,0 +35402,135412962,Bronx,Mott Haven,40.80769,-73.91617,Entire home/apt,130,1,38,3.68,1,349 +35403,202837291,Brooklyn,Flatbush,40.64543,-73.96457,Private room,80,1,18,1.83,2,78 +35404,210297251,Brooklyn,Crown Heights,40.67718,-73.95852,Private room,70,2,1,0.1,1,0 +35405,205745676,Queens,Flushing,40.757459999999995,-73.82013,Private room,89,1,28,2.78,9,346 +35406,212157854,Bronx,Concourse,40.83703,-73.91643,Private room,40,2,32,3.08,2,132 +35407,50250626,Manhattan,Lower East Side,40.71882,-73.98554,Entire home/apt,185,1,52,5.2,1,162 +35408,45404805,Queens,Astoria,40.769,-73.93284,Private room,120,5,2,0.21,2,90 +35409,23156390,Brooklyn,Williamsburg,40.712270000000004,-73.957,Entire home/apt,122,30,5,0.76,1,152 +35410,189404055,Queens,Long Island City,40.754870000000004,-73.93105,Private room,55,1,11,2.16,2,281 +35411,107434423,Manhattan,Financial District,40.70427,-74.00964,Entire home/apt,285,30,1,0.12,232,324 +35412,212232139,Brooklyn,Bedford-Stuyvesant,40.67812,-73.9168,Private room,30,3,7,0.68,1,2 +35413,84366617,Brooklyn,Gravesend,40.587709999999994,-73.96600000000001,Entire home/apt,80,2,1,1.0,2,229 +35414,212262028,Brooklyn,Fort Greene,40.69032,-73.97678,Entire home/apt,335,3,16,1.67,2,81 +35415,212263525,Manhattan,Harlem,40.81047,-73.94041999999999,Private room,848,1,19,1.89,3,355 +35416,82490186,Brooklyn,Bushwick,40.70156,-73.91329,Private room,75,1,14,1.44,1,48 +35417,203986261,Queens,Flushing,40.758309999999994,-73.82776,Private room,55,1,37,3.58,1,142 +35418,44174247,Brooklyn,Clinton Hill,40.69343,-73.96387,Entire home/apt,119,1,3,0.3,1,0 +35419,74305569,Brooklyn,Bushwick,40.69552,-73.92341,Entire home/apt,143,2,3,0.29,2,0 +35420,81711191,Manhattan,Upper West Side,40.803129999999996,-73.96745,Private room,80,3,1,0.16,1,3 +35421,213020,Manhattan,Upper West Side,40.787859999999995,-73.96837,Entire home/apt,175,2,39,4.08,3,142 +35422,212274985,Brooklyn,Bedford-Stuyvesant,40.67765,-73.92345,Entire home/apt,150,2,17,1.73,1,11 +35423,67048974,Bronx,Clason Point,40.80644,-73.8518,Private room,48,2,33,3.21,1,47 +35424,12243051,Manhattan,Midtown,40.7468,-73.98329,Entire home/apt,239,29,0,,96,333 +35425,51289216,Manhattan,Chelsea,40.743629999999996,-74.0022,Entire home/apt,167,2,60,5.75,1,164 +35426,12243051,Manhattan,Financial District,40.70619,-74.0064,Entire home/apt,169,29,1,0.58,96,214 +35427,48167507,Queens,Jackson Heights,40.74691,-73.89193,Private room,86,2,3,0.29,1,88 +35428,212306955,Manhattan,Washington Heights,40.85508,-73.92779,Entire home/apt,110,2,9,0.96,1,157 +35429,36966743,Queens,Jackson Heights,40.750609999999995,-73.89364,Private room,55,1,50,4.81,1,1 +35430,4536328,Manhattan,Upper West Side,40.79918,-73.9622,Private room,85,1,25,2.6,1,0 +35431,28135147,Manhattan,Harlem,40.80375,-73.95501,Entire home/apt,200,2,20,2.02,1,11 +35432,2153064,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.95982,Entire home/apt,100,3,18,1.74,1,0 +35433,103411445,Brooklyn,Crown Heights,40.67613,-73.94578,Private room,59,2,25,3.07,1,60 +35434,20359104,Bronx,Mott Haven,40.8106,-73.91667,Private room,68,1,16,1.55,1,347 +35435,156547988,Queens,Ozone Park,40.67807,-73.8486,Private room,65,1,6,0.61,4,335 +35436,212417594,Brooklyn,Williamsburg,40.70952,-73.96266999999999,Entire home/apt,380,7,1,0.11,1,0 +35437,1680013,Manhattan,Hell's Kitchen,40.76596,-73.98846,Entire home/apt,165,7,5,0.53,1,0 +35438,13562603,Brooklyn,Flatbush,40.648309999999995,-73.95788,Entire home/apt,80,90,0,,1,95 +35439,42998647,Manhattan,Hell's Kitchen,40.75759,-73.99006,Private room,45,3,72,6.99,3,86 +35440,191106696,Manhattan,Upper West Side,40.79103,-73.97632,Private room,79,1,59,5.75,1,61 +35441,12243051,Manhattan,Chelsea,40.741,-73.99455999999999,Entire home/apt,244,29,1,0.3,96,240 +35442,12243051,Manhattan,Financial District,40.706109999999995,-74.00626,Entire home/apt,299,29,0,,96,311 +35443,119669058,Brooklyn,Bedford-Stuyvesant,40.69406,-73.95665,Private room,65,2,22,2.16,34,288 +35444,12243051,Manhattan,Financial District,40.70798,-74.00591,Entire home/apt,299,29,0,,96,189 +35445,3191371,Manhattan,East Harlem,40.80656,-73.93709,Private room,80,2,1,1.0,3,181 +35446,83342221,Queens,Astoria,40.76317,-73.91124,Entire home/apt,200,5,1,0.11,1,0 +35447,200380610,Manhattan,Theater District,40.76106,-73.98574,Entire home/apt,410,30,0,,65,365 +35448,4463170,Brooklyn,Bushwick,40.69748,-73.92319,Private room,37,2,2,0.19,1,0 +35449,212071658,Brooklyn,Bushwick,40.6914,-73.90388,Private room,40,2,21,2.08,5,343 +35450,14012333,Manhattan,Murray Hill,40.74657,-73.97539,Entire home/apt,280,2,10,1.06,1,70 +35451,212473045,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.9504,Private room,99,1,31,3.06,1,0 +35452,303926,Brooklyn,Cypress Hills,40.68287,-73.88578000000001,Entire home/apt,160,2,3,0.29,2,167 +35453,212472679,Brooklyn,Williamsburg,40.71201,-73.94474,Entire home/apt,275,3,1,0.11,1,0 +35454,10009047,Queens,Astoria,40.76605,-73.908,Private room,65,3,15,1.51,1,0 +35455,6109032,Brooklyn,Prospect-Lefferts Gardens,40.661590000000004,-73.95921,Entire home/apt,104,3,11,1.05,1,0 +35456,86622957,Queens,Fresh Meadows,40.72717,-73.79055,Entire home/apt,60,1,45,4.98,1,42 +35457,80788474,Brooklyn,Bedford-Stuyvesant,40.68195,-73.95328,Entire home/apt,165,3,0,,2,83 +35458,66744439,Manhattan,Chelsea,40.73642,-73.9924,Entire home/apt,200,1,0,,1,0 +35459,118908092,Manhattan,Gramercy,40.73449,-73.98473,Entire home/apt,250,1,28,2.75,1,25 +35460,120974332,Manhattan,East Harlem,40.797259999999994,-73.93164,Private room,66,2,23,2.23,2,5 +35461,137562994,Brooklyn,Bedford-Stuyvesant,40.6814,-73.94975,Private room,85,2,15,1.45,1,257 +35462,101491116,Brooklyn,Cypress Hills,40.682759999999995,-73.8708,Shared room,25,4,19,1.91,6,16 +35463,22508819,Manhattan,West Village,40.73039,-74.00208,Private room,140,5,4,0.39,1,0 +35464,101491116,Brooklyn,Cypress Hills,40.68385,-73.87088,Shared room,25,1,26,2.57,6,23 +35465,9813962,Queens,Ditmars Steinway,40.7787,-73.9093,Entire home/apt,100,4,2,0.19,1,26 +35466,212526912,Queens,East Elmhurst,40.75727,-73.88346,Private room,75,2,1,0.1,2,363 +35467,101491116,Brooklyn,Cypress Hills,40.68217,-73.8723,Shared room,25,1,25,2.52,6,2 +35468,17101801,Manhattan,Hell's Kitchen,40.75819,-73.99347,Entire home/apt,150,29,3,0.37,1,287 +35469,108576923,Manhattan,Upper East Side,40.77006,-73.95589,Private room,150,1,0,,1,177 +35470,127571361,Brooklyn,Bay Ridge,40.63939,-74.03028,Entire home/apt,134,2,35,3.4,1,34 +35471,157393936,Queens,Springfield Gardens,40.66959,-73.75246,Private room,100,5,1,0.1,2,365 +35472,43930499,Queens,Elmhurst,40.743559999999995,-73.88813,Private room,140,1,4,0.45,2,79 +35473,157393936,Queens,Springfield Gardens,40.66932,-73.7514,Private room,95,5,1,0.11,2,90 +35474,42085952,Brooklyn,Flatbush,40.63088,-73.96113000000001,Entire home/apt,102,2,0,,1,36 +35475,210408018,Manhattan,East Harlem,40.7961,-73.94366,Private room,100,2,16,1.55,1,0 +35476,18159034,Queens,Bayside,40.76039,-73.77419,Entire home/apt,190,3,1,0.16,1,0 +35477,105831144,Brooklyn,Bushwick,40.70642,-73.92165,Entire home/apt,240,2,1,0.1,1,0 +35478,90096680,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.9482,Entire home/apt,102,1,2,2.0,1,0 +35479,24614094,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94591,Private room,40,1,16,1.84,2,310 +35480,69878814,Manhattan,East Village,40.72244,-73.98194000000001,Entire home/apt,120,4,5,0.49,1,1 +35481,19303369,Queens,Woodside,40.74408,-73.90498000000001,Private room,43,30,2,0.28,37,0 +35482,3571431,Manhattan,West Village,40.73281,-74.00688000000001,Entire home/apt,375,4,5,0.55,2,289 +35483,10109608,Queens,Long Island City,40.74726,-73.94074,Entire home/apt,156,2,9,0.88,2,0 +35484,212660460,Brooklyn,Bedford-Stuyvesant,40.679990000000004,-73.94618,Entire home/apt,100,21,2,0.24,1,33 +35485,212661859,Manhattan,Upper West Side,40.78333,-73.98089,Entire home/apt,199,4,6,0.58,1,0 +35486,208079253,Brooklyn,Crown Heights,40.67737,-73.94034,Entire home/apt,115,3,32,3.49,1,168 +35487,68927337,Brooklyn,East Flatbush,40.653290000000005,-73.92756,Shared room,50,7,1,0.11,1,179 +35488,212689019,Brooklyn,Bedford-Stuyvesant,40.68723,-73.92003000000001,Private room,109,1,16,1.58,2,179 +35489,212689019,Brooklyn,Bedford-Stuyvesant,40.685629999999996,-73.92193,Private room,99,1,24,2.36,2,179 +35490,38194603,Brooklyn,Williamsburg,40.71884,-73.95825,Private room,76,1,46,5.04,2,52 +35491,205594323,Queens,Springfield Gardens,40.6675,-73.75245,Entire home/apt,185,2,30,2.9,1,146 +35492,28408861,Manhattan,East Harlem,40.79009,-73.94740999999999,Private room,97,2,0,,1,0 +35493,45241930,Manhattan,Murray Hill,40.74433,-73.97416,Entire home/apt,150,7,6,0.6,3,43 +35494,4562182,Manhattan,Harlem,40.81084,-73.94481999999999,Entire home/apt,225,30,9,0.95,4,326 +35495,47050813,Brooklyn,Flatbush,40.651309999999995,-73.96307,Private room,70,1,31,3.0,2,51 +35496,13415893,Brooklyn,Crown Heights,40.67,-73.95091,Entire home/apt,89,2,0,,1,6 +35497,212157854,Bronx,Concourse,40.83659,-73.91776999999999,Private room,40,1,1,0.11,2,8 +35498,4982459,Brooklyn,Flatbush,40.65193,-73.96401,Private room,85,5,1,0.1,3,0 +35499,200380610,Manhattan,East Village,40.73087,-73.98631,Entire home/apt,255,30,0,,65,364 +35500,212834813,Queens,Arverne,40.59194,-73.8,Private room,50,1,44,4.57,1,155 +35501,190130382,Manhattan,Upper West Side,40.78517,-73.97672,Entire home/apt,150,5,4,0.41,1,53 +35502,15529083,Brooklyn,Crown Heights,40.66891,-73.93495,Entire home/apt,200,3,2,0.24,1,362 +35503,11099966,Manhattan,Harlem,40.82175,-73.95109000000001,Private room,57,2,57,5.9,2,13 +35504,39523758,Brooklyn,Navy Yard,40.70375,-73.97979000000001,Entire home/apt,150,3,0,,1,0 +35505,11099966,Manhattan,Harlem,40.82162,-73.94901999999999,Shared room,45,2,54,5.61,2,22 +35506,57024509,Brooklyn,Bushwick,40.694520000000004,-73.9082,Entire home/apt,90,5,8,0.81,1,0 +35507,212857568,Queens,Ozone Park,40.676159999999996,-73.86016,Entire home/apt,90,4,12,1.38,1,193 +35508,99149791,Manhattan,Harlem,40.80281,-73.94748,Entire home/apt,160,1,2,0.22,1,10 +35509,8814258,Queens,South Ozone Park,40.67181,-73.79621999999999,Shared room,30,4,0,,7,365 +35510,212160752,Queens,Astoria,40.76768,-73.92000999999999,Private room,63,4,10,1.18,1,74 +35511,32992928,Brooklyn,Bushwick,40.700759999999995,-73.92381999999999,Entire home/apt,180,3,2,0.21,1,15 +35512,212871974,Brooklyn,Prospect-Lefferts Gardens,40.65849,-73.94791,Private room,100,3,2,0.2,1,89 +35513,26942041,Brooklyn,Williamsburg,40.707440000000005,-73.95136,Private room,50,7,0,,1,0 +35514,39537244,Queens,Ditmars Steinway,40.78569,-73.91521999999999,Private room,42,3,11,1.14,1,244 +35515,97395286,Manhattan,East Village,40.72899,-73.98334,Entire home/apt,160,4,6,0.65,1,6 +35516,35649879,Manhattan,Upper East Side,40.76249,-73.96428,Entire home/apt,430,2,10,1.06,1,365 +35517,212899703,Queens,Jamaica,40.679559999999995,-73.76621,Entire home/apt,83,3,29,2.82,3,48 +35518,28840396,Manhattan,East Harlem,40.798629999999996,-73.93460999999999,Private room,95,5,14,1.39,1,137 +35519,2568528,Brooklyn,Flatbush,40.65152,-73.96429,Entire home/apt,75,5,14,1.48,1,19 +35520,176591085,Manhattan,Washington Heights,40.84554,-73.94282,Private room,48,1,7,1.09,4,176 +35521,80478684,Queens,Maspeth,40.72538,-73.89284,Entire home/apt,150,2,27,2.69,2,317 +35522,212898110,Brooklyn,Gowanus,40.667120000000004,-73.99215,Entire home/apt,200,2,17,1.72,1,0 +35523,1512565,Manhattan,East Harlem,40.789320000000004,-73.95343000000001,Private room,150,2,18,1.8,3,112 +35524,34590955,Manhattan,Washington Heights,40.85295,-73.93595,Entire home/apt,250,2,0,,1,67 +35525,211549023,Manhattan,Midtown,40.74747,-73.98668,Entire home/apt,260,2,7,0.84,13,276 +35526,136590050,Brooklyn,Crown Heights,40.66568,-73.95385999999999,Private room,34,1,70,6.84,1,1 +35527,156505456,Brooklyn,East New York,40.66265,-73.88735,Private room,85,3,10,1.04,13,90 +35528,213014559,Queens,East Elmhurst,40.76828,-73.87751999999999,Entire home/apt,179,1,57,5.74,2,0 +35529,118410907,Brooklyn,Bensonhurst,40.60644,-73.99135,Entire home/apt,88,1,39,3.77,1,362 +35530,85495151,Brooklyn,Fort Hamilton,40.62274,-74.03277,Private room,60,3,6,0.61,1,38 +35531,203266238,Bronx,Morris Park,40.85409,-73.85032,Private room,50,5,8,0.87,5,22 +35532,203266238,Bronx,Morris Park,40.853609999999996,-73.85018000000001,Private room,85,5,5,0.49,5,365 +35533,213049308,Queens,Flushing,40.755390000000006,-73.83570999999999,Private room,56,1,19,2.0,3,45 +35534,105085784,Brooklyn,Crown Heights,40.664,-73.93328000000001,Entire home/apt,75,1,54,9.36,1,20 +35535,72318418,Brooklyn,Crown Heights,40.66957,-73.92179,Private room,69,2,15,1.48,3,359 +35536,211860521,Queens,Bellerose,40.73258,-73.726,Private room,95,1,3,0.47,2,0 +35537,213049308,Queens,Flushing,40.75501,-73.83315,Private room,120,1,37,3.85,3,0 +35538,213049308,Queens,Flushing,40.75522,-73.83451,Private room,55,1,19,1.84,3,0 +35539,58234433,Queens,Sunnyside,40.73707,-73.91866999999999,Entire home/apt,261,1,14,1.47,8,240 +35540,211638781,Bronx,Belmont,40.85287,-73.88535999999999,Private room,100,3,36,3.69,2,49 +35541,213065914,Manhattan,Hell's Kitchen,40.765570000000004,-73.99174000000001,Private room,120,1,56,5.81,1,4 +35542,1337630,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9248,Private room,100,3,1,0.1,1,0 +35543,213111794,Queens,Cambria Heights,40.6844,-73.74601,Private room,250,1,2,0.2,4,365 +35544,92185816,Manhattan,Harlem,40.80823,-73.94963,Private room,62,14,1,0.45,3,265 +35545,11543355,Manhattan,Hell's Kitchen,40.76202,-73.99679,Entire home/apt,250,4,0,,1,0 +35546,9130040,Brooklyn,East Flatbush,40.6624,-73.9329,Private room,89,1,3,1.73,6,365 +35547,7592992,Brooklyn,Prospect Heights,40.67785,-73.96987,Private room,90,1,0,,1,0 +35548,213138857,Manhattan,Upper West Side,40.78195,-73.9767,Entire home/apt,225,3,33,3.46,1,128 +35549,213141901,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94476999999999,Private room,75,6,1,0.11,1,88 +35550,6928558,Brooklyn,Bedford-Stuyvesant,40.69084,-73.95368,Entire home/apt,140,2,51,5.02,1,125 +35551,35387196,Brooklyn,Prospect-Lefferts Gardens,40.662490000000005,-73.95311,Entire home/apt,85,7,6,0.62,4,0 +35552,19418027,Brooklyn,Crown Heights,40.67726,-73.94179,Private room,58,3,24,2.62,1,6 +35553,302885,Manhattan,SoHo,40.72249,-74.00385,Private room,195,3,14,1.37,3,0 +35554,107156,Brooklyn,Bushwick,40.70285,-73.91934,Private room,89,1,10,0.99,1,247 +35555,183604908,Brooklyn,Crown Heights,40.66858,-73.92661,Private room,50,2,25,2.49,1,179 +35556,23491471,Queens,Laurelton,40.682629999999996,-73.7393,Entire home/apt,75,1,31,3.01,1,361 +35557,160611440,Manhattan,Upper West Side,40.79912,-73.97064,Private room,95,1,11,1.11,1,0 +35558,213172811,Manhattan,Harlem,40.82266,-73.95481,Private room,70,1,0,,1,56 +35559,190921808,Manhattan,Hell's Kitchen,40.755340000000004,-73.99668,Private room,75,7,5,0.51,47,352 +35560,15717497,Manhattan,Upper West Side,40.77078,-73.98344,Entire home/apt,179,1,0,,1,0 +35561,212526912,Queens,East Elmhurst,40.75598,-73.8837,Private room,60,2,4,0.4,2,325 +35562,55397210,Brooklyn,Bedford-Stuyvesant,40.697140000000005,-73.94896999999999,Entire home/apt,119,3,7,0.71,1,9 +35563,213208277,Brooklyn,Borough Park,40.641890000000004,-73.99356999999999,Private room,60,5,5,0.53,8,364 +35564,75937385,Brooklyn,Bedford-Stuyvesant,40.68183,-73.95045999999999,Entire home/apt,99,2,3,0.32,1,3 +35565,33522184,Brooklyn,Fort Greene,40.68629,-73.97589,Private room,75,5,6,0.63,1,167 +35566,115545139,Brooklyn,East New York,40.65925,-73.89395999999999,Private room,32,2,56,5.62,2,27 +35567,7835900,Manhattan,Upper West Side,40.7838,-73.97858000000001,Entire home/apt,250,3,1,0.12,1,0 +35568,94214493,Brooklyn,East Flatbush,40.65612,-73.91788000000001,Private room,65,7,4,0.49,9,365 +35569,85186349,Queens,Astoria,40.76826,-73.92772,Shared room,40,1,18,1.76,1,165 +35570,6542295,Manhattan,SoHo,40.72668,-74.00251999999999,Private room,100,3,6,0.63,2,3 +35571,20568490,Manhattan,Tribeca,40.72343,-74.00791,Private room,149,1,16,1.62,1,337 +35572,10720383,Manhattan,Upper East Side,40.78315,-73.94693000000001,Entire home/apt,199,2,49,5.18,1,62 +35573,30431292,Manhattan,Hell's Kitchen,40.762170000000005,-73.99911,Entire home/apt,500,2,1,0.13,1,179 +35574,615025,Manhattan,SoHo,40.72387,-74.00423,Entire home/apt,249,3,1,0.12,1,363 +35575,3299094,Manhattan,Harlem,40.82161,-73.94644,Entire home/apt,140,1,4,0.64,1,8 +35576,17893196,Manhattan,Harlem,40.8238,-73.94794,Entire home/apt,145,2,5,0.57,1,5 +35577,77570619,Manhattan,Harlem,40.82232,-73.93908,Entire home/apt,95,2,16,1.62,1,140 +35578,3942655,Brooklyn,Williamsburg,40.7159,-73.94397,Private room,90,5,1,0.42,2,73 +35579,3768359,Manhattan,Lower East Side,40.72177,-73.98898,Entire home/apt,300,3,7,0.71,1,12 +35580,70640922,Manhattan,Gramercy,40.73314,-73.9838,Private room,115,3,6,0.59,1,0 +35581,14214034,Bronx,Concourse,40.82145,-73.92856,Entire home/apt,102,2,24,2.76,2,288 +35582,136121042,Manhattan,Inwood,40.86319,-73.92671999999999,Private room,60,2,4,0.39,1,359 +35583,73640551,Brooklyn,Prospect Heights,40.67852,-73.97308000000001,Private room,75,2,11,1.24,2,1 +35584,211973888,Manhattan,Harlem,40.81773,-73.94357,Entire home/apt,75,4,8,0.88,1,69 +35585,6048765,Manhattan,Harlem,40.81835,-73.93925,Private room,86,2,7,0.69,2,87 +35586,129124146,Queens,Elmhurst,40.733340000000005,-73.87198000000001,Shared room,65,1,4,0.42,3,179 +35587,296491,Brooklyn,Midwood,40.61565,-73.96602,Entire home/apt,149,2,22,2.22,2,83 +35588,4601788,Brooklyn,Flatbush,40.644020000000005,-73.96489,Private room,50,1,5,0.53,1,0 +35589,14933692,Queens,Astoria,40.76616,-73.91332,Entire home/apt,90,2,8,0.82,1,0 +35590,6944101,Queens,Ditmars Steinway,40.77033,-73.91008000000001,Private room,50,2,5,0.53,1,0 +35591,9050139,Brooklyn,Crown Heights,40.67604,-73.95775,Entire home/apt,215,2,14,1.45,1,13 +35592,25082393,Manhattan,East Harlem,40.797059999999995,-73.93473,Entire home/apt,250,1,8,0.8,1,37 +35593,78817833,Brooklyn,Downtown Brooklyn,40.68978,-73.98598,Private room,110,21,0,,1,0 +35594,213426241,Brooklyn,Bedford-Stuyvesant,40.6902,-73.95277,Entire home/apt,350,2,15,1.53,1,319 +35595,19528144,Queens,Long Island City,40.76245,-73.93285999999999,Private room,66,3,9,0.94,1,0 +35596,106667717,Manhattan,Harlem,40.82761,-73.94192,Private room,85,1,9,0.9,1,364 +35597,143979484,Manhattan,Washington Heights,40.8453,-73.93795,Private room,52,5,11,1.1,2,310 +35598,103049729,Queens,Sunnyside,40.743140000000004,-73.92389,Entire home/apt,78,2,4,0.44,1,0 +35599,44545038,Brooklyn,Bushwick,40.6951,-73.92981,Private room,48,3,5,0.49,1,0 +35600,67376966,Queens,Rego Park,40.73095,-73.85706,Entire home/apt,268,2,2,0.76,3,5 +35601,647528,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95164,Entire home/apt,10,3,5,0.51,1,0 +35602,67376966,Queens,Rego Park,40.73005,-73.8576,Entire home/apt,268,3,1,1.0,3,173 +35603,8554637,Manhattan,East Village,40.72445,-73.97683,Private room,149,3,36,3.94,1,109 +35604,17464499,Manhattan,Chinatown,40.717890000000004,-73.99580999999999,Private room,75,2,3,0.3,1,0 +35605,26784906,Brooklyn,Bedford-Stuyvesant,40.67987,-73.91931,Entire home/apt,250,2,2,0.2,1,0 +35606,17877401,Queens,Ridgewood,40.701229999999995,-73.90685,Private room,75,2,2,0.2,1,341 +35607,53192488,Brooklyn,Williamsburg,40.71709,-73.95631999999999,Private room,56,21,1,0.11,1,0 +35608,96328752,Brooklyn,Bedford-Stuyvesant,40.6823,-73.94958000000001,Entire home/apt,125,2,4,0.48,1,70 +35609,184122908,Bronx,Mott Haven,40.811609999999995,-73.90513,Private room,35,1,24,2.38,1,150 +35610,9420910,Manhattan,Kips Bay,40.73865,-73.9788,Private room,130,1,11,1.13,2,147 +35611,26045887,Manhattan,Murray Hill,40.7483,-73.9736,Private room,105,1,43,4.24,2,176 +35612,213568384,Brooklyn,Canarsie,40.63814,-73.90002,Entire home/apt,75,1,68,7.58,1,258 +35613,138770550,Brooklyn,Crown Heights,40.67222,-73.93486999999999,Entire home/apt,325,3,15,1.56,3,124 +35614,49218771,Brooklyn,Bushwick,40.68992,-73.90435,Private room,70,3,8,0.82,1,0 +35615,10828579,Manhattan,East Harlem,40.79916,-73.93959,Entire home/apt,125,7,5,0.52,2,0 +35616,213604115,Brooklyn,East New York,40.666309999999996,-73.86278,Private room,40,2,17,1.68,1,334 +35617,210970608,Brooklyn,Crown Heights,40.670609999999996,-73.95023,Entire home/apt,245,3,11,1.11,5,280 +35618,213604995,Brooklyn,Bushwick,40.68705,-73.91456,Private room,75,2,85,8.31,2,309 +35619,32872039,Brooklyn,Williamsburg,40.71281,-73.95226,Private room,48,3,17,2.8,1,0 +35620,213605347,Queens,Laurelton,40.68104,-73.74821,Entire home/apt,50,1,14,1.53,1,356 +35621,14504701,Manhattan,Harlem,40.80579,-73.95606,Entire home/apt,115,6,5,0.53,1,192 +35622,213615269,Brooklyn,Bedford-Stuyvesant,40.68871,-73.92732,Entire home/apt,197,2,48,4.86,1,104 +35623,46374641,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94575999999999,Private room,150,2,0,,1,88 +35624,137191484,Manhattan,Hell's Kitchen,40.765609999999995,-73.98387,Private room,99,1,62,6.55,5,351 +35625,15439251,Manhattan,Harlem,40.82302,-73.94259,Entire home/apt,220,3,12,1.29,4,230 +35626,36800887,Manhattan,Hell's Kitchen,40.766709999999996,-73.98413000000001,Private room,106,4,27,2.83,1,0 +35627,20177770,Manhattan,Civic Center,40.71167,-74.00749,Entire home/apt,140,13,4,0.44,1,0 +35628,92769975,Manhattan,Upper West Side,40.78883,-73.96848,Entire home/apt,199,8,2,0.22,1,8 +35629,213438424,Manhattan,East Village,40.72936,-73.98093,Entire home/apt,345,2,35,3.44,1,262 +35630,193296202,Queens,Long Island City,40.74613,-73.95343000000001,Entire home/apt,600,2,2,0.25,2,272 +35631,213635139,Manhattan,East Harlem,40.79824,-73.94014,Entire home/apt,300,2,53,5.96,1,14 +35632,213647282,Brooklyn,Fort Greene,40.68528,-73.97126999999999,Entire home/apt,200,2,13,1.3,1,0 +35633,187908645,Queens,Flushing,40.75778,-73.83353000000001,Private room,70,1,7,0.7,4,347 +35634,213650814,Manhattan,Harlem,40.8072,-73.94383,Entire home/apt,149,5,17,1.95,1,3 +35635,174785358,Bronx,Port Morris,40.8102,-73.93146999999999,Shared room,28,1,18,1.93,7,60 +35636,213660495,Queens,Long Island City,40.75472,-73.91891,Entire home/apt,125,2,27,2.74,1,0 +35637,212071658,Brooklyn,Bushwick,40.69297,-73.90427,Private room,65,2,23,2.35,5,339 +35638,14430349,Brooklyn,Bushwick,40.69469,-73.90786,Private room,75,2,10,1.05,1,0 +35639,73270488,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93661,Private room,50,1,39,3.98,1,15 +35640,82083094,Brooklyn,Canarsie,40.63933,-73.88221,Entire home/apt,250,3,0,,2,270 +35641,2237736,Brooklyn,Crown Heights,40.67085,-73.93866,Private room,60,20,3,0.39,1,0 +35642,74305569,Brooklyn,Bushwick,40.69549,-73.925,Private room,48,2,1,0.1,2,0 +35643,1561585,Brooklyn,East Flatbush,40.65059,-73.94506,Private room,90,3,1,0.11,1,179 +35644,17450152,Manhattan,Hell's Kitchen,40.764379999999996,-73.98955,Private room,85,2,29,2.87,5,0 +35645,3068075,Queens,Middle Village,40.71246,-73.88784,Private room,70,2,6,0.62,1,156 +35646,129038733,Queens,Ditmars Steinway,40.776579999999996,-73.90344,Entire home/apt,100,3,12,1.21,1,0 +35647,2389808,Brooklyn,Prospect Heights,40.67881,-73.97166,Entire home/apt,135,5,15,1.75,1,0 +35648,213773496,Brooklyn,Greenpoint,40.73449,-73.95716,Private room,97,3,2,0.21,1,0 +35649,213774428,Manhattan,Civic Center,40.71317,-74.00654,Entire home/apt,590,2,42,4.33,1,42 +35650,1211082,Brooklyn,Williamsburg,40.71525,-73.96486999999999,Entire home/apt,320,5,1,0.16,1,78 +35651,45519906,Brooklyn,Williamsburg,40.70904,-73.95198,Private room,200,3,5,0.53,1,85 +35652,213781715,Brooklyn,Greenpoint,40.732859999999995,-73.95085999999999,Private room,99,1,5,0.51,33,365 +35653,22125997,Bronx,Westchester Square,40.841840000000005,-73.84966999999999,Private room,28,1,26,2.65,2,123 +35654,79499558,Queens,Jackson Heights,40.75176,-73.88374,Private room,55,4,23,2.28,4,112 +35655,212649635,Manhattan,Hell's Kitchen,40.76125,-73.99389000000001,Entire home/apt,350,3,41,4.29,1,74 +35656,34607882,Manhattan,East Harlem,40.7984,-73.9427,Entire home/apt,115,14,1,0.12,1,0 +35657,213803787,Brooklyn,Crown Heights,40.666270000000004,-73.94164,Entire home/apt,180,1,12,1.31,1,109 +35658,99296570,Brooklyn,Brighton Beach,40.57973,-73.95799,Private room,65,1,23,2.34,5,204 +35659,2328540,Manhattan,Lower East Side,40.71768,-73.99068,Entire home/apt,200,2,15,1.51,1,129 +35660,131993336,Queens,Forest Hills,40.71962,-73.85,Private room,49,1,47,4.64,2,196 +35661,7825587,Brooklyn,Sunset Park,40.65064,-74.00595,Entire home/apt,100,5,12,1.2,1,106 +35662,46594996,Brooklyn,East Flatbush,40.6332,-73.94266999999999,Entire home/apt,115,2,8,0.82,1,0 +35663,15439251,Manhattan,Harlem,40.82293,-73.94249,Private room,80,2,13,1.29,4,238 +35664,91545870,Manhattan,Upper East Side,40.78132,-73.95148,Entire home/apt,59,1,4,0.44,2,24 +35665,15439251,Manhattan,Harlem,40.8224,-73.94136,Private room,70,3,17,1.71,4,230 +35666,71177383,Brooklyn,Bushwick,40.6999,-73.93947,Private room,100,1,5,0.52,2,88 +35667,15439251,Manhattan,Harlem,40.8224,-73.94241,Private room,70,2,14,1.4,4,238 +35668,66711185,Brooklyn,Williamsburg,40.71151,-73.94396,Private room,63,3,1,0.14,1,0 +35669,190921808,Manhattan,Hell's Kitchen,40.75545,-73.99651999999999,Private room,120,30,2,0.21,47,351 +35670,30145223,Manhattan,Hell's Kitchen,40.766459999999995,-73.99132,Entire home/apt,269,4,26,2.6,1,49 +35671,79499558,Queens,Jackson Heights,40.75164,-73.88506,Private room,55,2,29,2.96,4,149 +35672,3604985,Brooklyn,Greenpoint,40.73482,-73.95399,Private room,70,1,4,0.45,1,97 +35673,213618380,Manhattan,Lower East Side,40.71935,-73.98361,Entire home/apt,600,2,33,3.46,1,280 +35674,44924379,Queens,Jamaica,40.69742,-73.78541,Private room,60,1,22,2.16,3,363 +35675,213824132,Manhattan,Washington Heights,40.85035,-73.9325,Entire home/apt,80,2,28,2.98,1,41 +35676,15146990,Brooklyn,Fort Greene,40.68616,-73.97206,Entire home/apt,115,2,4,0.44,1,95 +35677,213795822,Brooklyn,Bushwick,40.682359999999996,-73.90765,Private room,45,1,30,3.63,2,327 +35678,80509710,Brooklyn,Williamsburg,40.70874,-73.95237,Private room,63,5,24,2.48,1,7 +35679,213795822,Brooklyn,Bushwick,40.68235,-73.90602,Private room,47,2,30,3.63,2,303 +35680,12926593,Manhattan,West Village,40.73142,-74.00275,Entire home/apt,300,2,2,0.31,3,14 +35681,875830,Manhattan,Midtown,40.75278,-73.97107,Entire home/apt,169,30,5,0.7,1,280 +35682,213910720,Queens,Far Rockaway,40.59752,-73.76337,Private room,50,1,18,1.79,1,71 +35683,106950680,Brooklyn,Williamsburg,40.71392,-73.94034,Private room,274,3,3,0.31,1,0 +35684,128041266,Brooklyn,Bedford-Stuyvesant,40.68786,-73.93252,Entire home/apt,110,1,20,2.22,1,19 +35685,107434423,Manhattan,Battery Park City,40.70438,-74.01708,Entire home/apt,263,30,1,0.12,232,327 +35686,4410716,Manhattan,Harlem,40.799929999999996,-73.95485,Private room,75,14,4,0.4,1,66 +35687,2244813,Manhattan,East Village,40.727779999999996,-73.98747,Entire home/apt,250,31,1,0.11,1,156 +35688,212899703,Queens,Jamaica,40.67783,-73.76637,Private room,83,2,2,0.26,3,26 +35689,43252905,Manhattan,Chelsea,40.74299,-73.99776999999999,Entire home/apt,225,2,11,1.2,1,0 +35690,199245226,Brooklyn,Crown Heights,40.67597,-73.94856999999999,Private room,175,4,3,0.3,1,0 +35691,29514176,Queens,Astoria,40.766420000000004,-73.91637,Entire home/apt,125,3,4,0.42,1,0 +35692,6770631,Brooklyn,Boerum Hill,40.68701,-73.98495,Private room,70,1,38,3.83,3,47 +35693,11050667,Manhattan,Chelsea,40.73917,-73.99412,Entire home/apt,154,4,7,0.77,1,0 +35694,174785358,Bronx,Port Morris,40.80952,-73.93005,Shared room,28,1,17,1.79,7,83 +35695,126830432,Manhattan,West Village,40.73151,-74.00528,Entire home/apt,1500,4,17,1.86,1,32 +35696,10810969,Brooklyn,Williamsburg,40.715509999999995,-73.96056999999999,Private room,95,1,9,0.91,1,0 +35697,174785358,Bronx,Port Morris,40.809940000000005,-73.93061,Shared room,28,1,29,3.09,7,89 +35698,17260320,Brooklyn,Bedford-Stuyvesant,40.6866,-73.9532,Private room,75,3,7,0.72,1,0 +35699,174785358,Bronx,Port Morris,40.80977,-73.93038,Shared room,28,1,16,1.7,7,0 +35700,25300542,Brooklyn,Williamsburg,40.710190000000004,-73.95684,Entire home/apt,125,5,2,0.21,1,0 +35701,213111794,Queens,Springfield Gardens,40.66509,-73.75863000000001,Private room,180,1,0,,4,179 +35702,213111794,Queens,Laurelton,40.68013,-73.74734000000001,Private room,180,1,3,0.33,4,180 +35703,213111794,Queens,Springfield Gardens,40.66556,-73.75735,Private room,200,1,2,0.22,4,179 +35704,696141,Manhattan,Financial District,40.705999999999996,-74.0077,Private room,115,4,6,0.61,1,0 +35705,103471052,Manhattan,SoHo,40.727740000000004,-74.00326,Private room,135,2,17,1.73,1,0 +35706,10812370,Brooklyn,Bushwick,40.699870000000004,-73.91821,Private room,69,1,28,2.75,1,36 +35707,5669527,Queens,Jamaica,40.67695,-73.79045,Entire home/apt,99,1,96,9.63,1,31 +35708,120730056,Queens,Ridgewood,40.70602,-73.90485,Entire home/apt,80,5,2,0.21,1,0 +35709,4492236,Brooklyn,Williamsburg,40.70685,-73.94796,Entire home/apt,150,10,1,0.11,2,0 +35710,15736460,Manhattan,Midtown,40.76054,-73.96425,Private room,75,5,0,,1,72 +35711,214024476,Queens,St. Albans,40.69153,-73.77667,Entire home/apt,150,2,23,2.34,1,175 +35712,131392140,Queens,Long Island City,40.75655,-73.93001,Entire home/apt,134,2,9,0.93,5,163 +35713,131392140,Queens,Long Island City,40.7563,-73.92971,Entire home/apt,134,2,8,1.1,5,144 +35714,57827692,Brooklyn,Bedford-Stuyvesant,40.68757,-73.92923,Entire home/apt,145,3,14,1.45,1,0 +35715,2308139,Manhattan,Washington Heights,40.83385,-73.94013000000001,Entire home/apt,189,3,45,4.49,1,180 +35716,214029598,Manhattan,Stuyvesant Town,40.73389,-73.98016,Private room,120,3,3,0.33,1,0 +35717,213587085,Queens,Ditmars Steinway,40.777390000000004,-73.90805,Private room,65,4,16,1.67,1,23 +35718,147298964,Queens,Ditmars Steinway,40.7699,-73.91156,Entire home/apt,280,1,33,3.34,1,294 +35719,86274028,Manhattan,East Village,40.72803,-73.97961,Private room,100,1,1,0.1,1,0 +35720,43044876,Queens,Elmhurst,40.743159999999996,-73.87285,Private room,40,29,2,0.29,5,1 +35721,214037223,Manhattan,Kips Bay,40.74389,-73.98033000000001,Private room,120,2,32,3.74,3,264 +35722,214037223,Manhattan,Kips Bay,40.743809999999996,-73.97909,Private room,130,2,45,4.87,3,277 +35723,212310107,Manhattan,Upper West Side,40.800940000000004,-73.96163,Entire home/apt,180,1,43,4.69,1,24 +35724,143052745,Bronx,Mott Haven,40.81072,-73.92031,Private room,55,1,32,3.31,4,76 +35725,214044763,Brooklyn,Greenpoint,40.73403,-73.95746,Entire home/apt,175,4,35,3.51,1,69 +35726,34607061,Manhattan,Washington Heights,40.84067,-73.93602,Private room,36,28,4,0.47,1,284 +35727,37252076,Queens,Jackson Heights,40.75436,-73.88534,Private room,50,3,1,1.0,2,155 +35728,6744445,Manhattan,Kips Bay,40.7436,-73.98122,Entire home/apt,165,1,4,0.42,1,0 +35729,18270302,Manhattan,Upper East Side,40.77619,-73.95325,Private room,90,3,5,0.52,2,56 +35730,214095681,Queens,Sunnyside,40.74403,-73.92147,Private room,65,2,64,6.34,2,6 +35731,11026665,Brooklyn,Williamsburg,40.71544,-73.96073,Entire home/apt,175,3,12,1.23,1,54 +35732,31770868,Manhattan,Theater District,40.75928,-73.98634,Private room,110,2,46,4.66,2,38 +35733,131454177,Manhattan,East Village,40.72907,-73.98388,Entire home/apt,195,7,0,,1,295 +35734,214121850,Manhattan,Upper East Side,40.76615,-73.95662,Entire home/apt,300,5,8,0.94,1,82 +35735,200380610,Manhattan,Chelsea,40.74138,-73.99729,Entire home/apt,175,30,1,1.0,65,342 +35736,207808113,Queens,East Elmhurst,40.76115,-73.88239,Entire home/apt,150,1,73,7.55,1,78 +35737,2298141,Queens,Jamaica,40.68033,-73.77753,Entire home/apt,100,1,45,5.31,1,76 +35738,10164435,Manhattan,Nolita,40.72124,-73.99425,Private room,68,1,28,2.84,3,21 +35739,14035840,Manhattan,Hell's Kitchen,40.769420000000004,-73.99163,Private room,120,1,38,4.37,1,16 +35740,6484652,Brooklyn,South Slope,40.664390000000004,-73.98904,Entire home/apt,99,3,3,0.46,2,1 +35741,144587441,Queens,Ozone Park,40.68892,-73.83834,Private room,110,1,0,,1,363 +35742,206459807,Brooklyn,Cypress Hills,40.683820000000004,-73.8796,Entire home/apt,110,2,29,3.04,1,63 +35743,53906227,Manhattan,Theater District,40.75952,-73.98368,Entire home/apt,84,1,25,2.53,1,257 +35744,170810121,Queens,Jamaica,40.67887,-73.79243000000001,Private room,60,2,11,1.09,1,157 +35745,49487260,Queens,Astoria,40.77089,-73.93036,Private room,100,1,3,0.3,1,0 +35746,212071658,Brooklyn,Bushwick,40.69238,-73.90361,Private room,65,2,24,2.59,5,351 +35747,12243051,Manhattan,Murray Hill,40.7442,-73.97355,Entire home/apt,174,29,0,,96,311 +35748,212071658,Brooklyn,Bushwick,40.690979999999996,-73.90509,Private room,65,2,22,2.46,5,348 +35749,212071658,Brooklyn,Bushwick,40.691590000000005,-73.90399000000001,Private room,65,2,30,2.96,5,359 +35750,214171931,Queens,St. Albans,40.695440000000005,-73.77663000000001,Private room,50,1,81,8.02,1,232 +35751,92185816,Manhattan,Harlem,40.80737,-73.95055,Private room,70,30,4,0.59,3,340 +35752,214175454,Manhattan,Harlem,40.82332,-73.93979,Private room,120,1,7,0.73,1,89 +35753,9641129,Brooklyn,Williamsburg,40.71447,-73.95195,Private room,70,14,2,0.2,1,18 +35754,125320407,Queens,Jamaica,40.70507,-73.80424000000001,Private room,225,1,1,0.11,5,364 +35755,6770631,Brooklyn,Boerum Hill,40.685190000000006,-73.98653,Private room,70,1,51,5.03,3,55 +35756,37252076,Queens,Jackson Heights,40.75378,-73.8862,Private room,45,3,3,0.35,2,132 +35757,4128972,Manhattan,East Harlem,40.79388,-73.94594000000001,Private room,105,1,33,3.41,1,26 +35758,2771943,Brooklyn,Clinton Hill,40.68227,-73.96486,Private room,175,2,9,0.89,1,17 +35759,6770631,Brooklyn,Boerum Hill,40.68528,-73.98634,Private room,98,1,9,0.89,3,25 +35760,19303369,Queens,Elmhurst,40.745129999999996,-73.87236999999999,Private room,33,30,0,,37,0 +35761,214190693,Bronx,Fordham,40.85536,-73.90241999999999,Shared room,55,1,3,0.31,1,83 +35762,214207874,Manhattan,Chelsea,40.73941,-73.99776999999999,Entire home/apt,110,7,4,0.4,1,0 +35763,30735525,Brooklyn,Bushwick,40.684670000000004,-73.91341,Private room,55,2,7,0.96,1,36 +35764,93294060,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94872,Entire home/apt,95,2,39,4.18,1,26 +35765,2666466,Manhattan,Morningside Heights,40.804390000000005,-73.96393,Private room,130,4,37,4.16,1,38 +35766,49804236,Queens,Sunnyside,40.74707,-73.9235,Entire home/apt,80,30,3,0.44,1,109 +35767,214298769,Brooklyn,Cypress Hills,40.67865,-73.89241,Private room,100,1,9,0.92,1,330 +35768,6892946,Brooklyn,Williamsburg,40.70568,-73.94282,Private room,70,10,2,0.21,1,0 +35769,214304954,Queens,Glendale,40.6934,-73.8951,Entire home/apt,160,2,12,1.31,1,361 +35770,30185638,Brooklyn,Fort Greene,40.696329999999996,-73.97215,Private room,85,5,29,2.91,1,240 +35771,22685487,Queens,Elmhurst,40.729459999999996,-73.88054,Private room,45,2,4,0.4,2,324 +35772,19484041,Brooklyn,Williamsburg,40.712720000000004,-73.94104,Private room,71,1,8,0.81,1,0 +35773,203564743,Queens,Long Island City,40.75651,-73.93441,Entire home/apt,170,3,31,3.32,1,238 +35774,23120620,Queens,Flushing,40.738620000000004,-73.80808,Private room,65,1,2,0.52,5,90 +35775,188498431,Queens,Sunnyside,40.73825,-73.92387,Private room,65,2,19,1.95,6,356 +35776,214332639,Queens,Ditmars Steinway,40.78105,-73.91435,Entire home/apt,100,1,27,2.92,1,36 +35777,2907609,Brooklyn,Williamsburg,40.71451,-73.95068,Private room,70,5,0,,1,0 +35778,49568280,Queens,Ditmars Steinway,40.776990000000005,-73.91354,Private room,95,1,0,,3,177 +35779,214347105,Manhattan,Midtown,40.75224,-73.96526,Entire home/apt,449,3,23,2.36,8,326 +35780,185889529,Queens,St. Albans,40.69898,-73.75518000000001,Private room,50,1,51,5.1,3,358 +35781,80478684,Queens,Maspeth,40.72664,-73.89294,Entire home/apt,150,2,19,2.91,2,309 +35782,73445711,Brooklyn,Bedford-Stuyvesant,40.68104,-73.93776,Entire home/apt,101,2,37,4.19,1,170 +35783,214329835,Queens,Ditmars Steinway,40.77882,-73.90935,Private room,69,2,2,0.23,2,74 +35784,196036532,Queens,Jamaica Estates,40.719590000000004,-73.78849,Private room,57,1,6,0.66,1,65 +35785,2236212,Brooklyn,Bedford-Stuyvesant,40.67895,-73.93641,Entire home/apt,190,3,11,1.2,2,179 +35786,7963207,Manhattan,West Village,40.73659,-74.00495,Entire home/apt,325,3,8,0.83,1,83 +35787,214464499,Manhattan,Financial District,40.70498,-74.00992,Entire home/apt,200,1,8,0.81,1,0 +35788,5176117,Manhattan,East Village,40.72749,-73.98994,Entire home/apt,250,1,2,0.52,1,63 +35789,162848296,Staten Island,Graniteville,40.62301,-74.16558,Entire home/apt,71,4,7,1.01,1,0 +35790,17760140,Brooklyn,Williamsburg,40.71801,-73.95573,Entire home/apt,190,4,2,0.21,1,4 +35791,214480354,Manhattan,Upper West Side,40.798759999999994,-73.96053,Private room,109,3,2,0.21,1,0 +35792,97658205,Brooklyn,Bushwick,40.70023,-73.92487,Private room,35,1,5,0.53,1,0 +35793,214483712,Staten Island,Bull's Head,40.59448,-74.16388,Private room,40,10,0,,3,89 +35794,88982022,Manhattan,Upper East Side,40.77878,-73.95694,Private room,130,1,15,1.56,1,0 +35795,109378554,Manhattan,Upper East Side,40.77016,-73.95631999999999,Private room,149,2,32,3.21,1,75 +35796,108902280,Brooklyn,Sunset Park,40.659290000000006,-73.99441,Entire home/apt,59,2,26,2.63,1,173 +35797,22685487,Queens,Elmhurst,40.729620000000004,-73.88053000000001,Private room,45,2,3,0.31,2,324 +35798,14234166,Queens,Ridgewood,40.70552,-73.91476,Private room,70,1,39,3.95,2,74 +35799,214483779,Queens,Astoria,40.76296,-73.92571,Private room,75,2,4,0.42,1,164 +35800,20161085,Queens,Jamaica,40.68588,-73.76315,Private room,120,2,31,3.21,1,57 +35801,12926593,Manhattan,West Village,40.73117,-74.00232,Private room,126,2,1,1.0,3,15 +35802,7799229,Brooklyn,Williamsburg,40.71567,-73.95831,Entire home/apt,207,2,28,3.08,2,271 +35803,44090067,Brooklyn,Williamsburg,40.716229999999996,-73.94328,Private room,70,1,30,4.33,1,8 +35804,58234433,Queens,Sunnyside,40.73587,-73.92027,Private room,90,1,11,1.1,8,319 +35805,214424497,Queens,St. Albans,40.70454,-73.7656,Entire home/apt,64,1,32,3.47,1,259 +35806,11728318,Brooklyn,Greenpoint,40.726240000000004,-73.94285,Private room,40,2,24,2.69,1,95 +35807,214311765,Queens,Elmhurst,40.73655,-73.87892,Entire home/apt,300,2,29,3.83,1,298 +35808,214586580,Queens,Astoria,40.7708,-73.92685999999999,Private room,55,30,19,1.92,1,184 +35809,214416012,Manhattan,SoHo,40.72345,-73.99943,Entire home/apt,800,2,36,3.88,1,90 +35810,214141672,Queens,Astoria,40.76466,-73.92730999999999,Private room,120,1,1,0.1,1,362 +35811,214611101,Brooklyn,Kensington,40.63662,-73.97612,Private room,66,30,1,1.0,4,74 +35812,16624745,Manhattan,Murray Hill,40.747209999999995,-73.97398000000001,Private room,100,1,12,1.7,3,58 +35813,137358866,Queens,Elmhurst,40.74345,-73.87901,Private room,38,30,2,0.39,103,247 +35814,214620702,Brooklyn,Red Hook,40.67864,-74.00546,Entire home/apt,750,1,6,0.64,1,179 +35815,19414064,Manhattan,East Village,40.72617,-73.98869,Entire home/apt,225,3,0,,1,0 +35816,76232256,Brooklyn,Williamsburg,40.71736,-73.95361,Private room,99,3,13,1.32,1,221 +35817,66837596,Brooklyn,Williamsburg,40.72015,-73.96403000000001,Private room,110,3,18,1.96,2,234 +35818,157703622,Manhattan,Lower East Side,40.71821,-73.98914,Entire home/apt,225,30,2,0.23,2,188 +35819,55004447,Staten Island,Arden Heights,40.54312,-74.17388000000001,Private room,41,2,7,0.71,1,0 +35820,2770596,Brooklyn,Flatbush,40.63813,-73.96592,Entire home/apt,120,5,3,0.31,2,231 +35821,147762665,Bronx,Wakefield,40.88688,-73.85848,Private room,37,1,14,1.42,3,332 +35822,5144567,Manhattan,Financial District,40.709990000000005,-74.01100000000001,Private room,179,7,9,0.97,13,349 +35823,188498431,Queens,Sunnyside,40.73773,-73.92227,Private room,75,2,15,1.84,6,342 +35824,48084892,Brooklyn,Williamsburg,40.70859,-73.94296999999999,Private room,63,3,8,0.85,1,0 +35825,188498431,Queens,Sunnyside,40.73939,-73.92308,Private room,65,2,13,1.49,6,341 +35826,214678935,Brooklyn,Sunset Park,40.64689,-74.01401,Private room,55,1,31,3.1,3,361 +35827,131705586,Brooklyn,Fort Greene,40.69379,-73.97111,Private room,67,1,36,3.59,2,329 +35828,3964276,Manhattan,East Village,40.724470000000004,-73.98821,Entire home/apt,255,3,6,0.65,1,0 +35829,188498431,Queens,Sunnyside,40.73894,-73.92288,Private room,65,2,26,2.8,6,355 +35830,214683117,Manhattan,Harlem,40.812490000000004,-73.94957,Entire home/apt,325,2,2,0.2,1,0 +35831,214347105,Manhattan,Midtown,40.75282,-73.96688,Entire home/apt,389,3,8,0.83,8,339 +35832,18007776,Brooklyn,Prospect-Lefferts Gardens,40.65518,-73.95664000000001,Private room,40,20,7,0.84,4,34 +35833,10164435,Queens,Astoria,40.757259999999995,-73.92811999999999,Private room,44,1,49,5.38,3,52 +35834,18007776,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95728000000001,Private room,40,1,2,0.27,4,37 +35835,210970608,Brooklyn,Crown Heights,40.6692,-73.95054,Entire home/apt,785,3,0,,5,226 +35836,2740709,Manhattan,SoHo,40.72615,-74.00325,Entire home/apt,285,4,1,0.1,1,7 +35837,20480351,Manhattan,Chelsea,40.7404,-73.99485,Entire home/apt,200,3,21,2.4,1,42 +35838,60787,Brooklyn,Bedford-Stuyvesant,40.6816,-73.93281999999999,Entire home/apt,75,5,4,0.44,1,0 +35839,2757243,Manhattan,Hell's Kitchen,40.7557,-73.99337,Entire home/apt,230,2,6,0.64,1,4 +35840,1820586,Brooklyn,Bedford-Stuyvesant,40.682790000000004,-73.94805,Entire home/apt,80,7,4,0.44,1,14 +35841,190921808,Manhattan,Hell's Kitchen,40.75417,-73.99578000000001,Private room,99,7,5,0.59,47,352 +35842,213208277,Brooklyn,Borough Park,40.64314,-73.99221,Shared room,30,5,7,1.0,8,365 +35843,29452152,Brooklyn,Williamsburg,40.70807,-73.95681,Entire home/apt,145,4,5,0.53,1,1 +35844,3334537,Brooklyn,Bedford-Stuyvesant,40.684709999999995,-73.93763,Entire home/apt,150,4,9,0.93,1,132 +35845,213816392,Queens,Queens Village,40.70762,-73.74365999999999,Private room,41,1,38,3.99,3,163 +35846,156547988,Queens,Ozone Park,40.67743,-73.84940999999999,Private room,65,1,5,0.5,4,334 +35847,3740621,Manhattan,Harlem,40.81465,-73.94265,Private room,150,1,40,4.26,2,66 +35848,139135,Manhattan,Kips Bay,40.74197,-73.98012,Entire home/apt,145,7,2,0.29,1,0 +35849,3771945,Brooklyn,Bedford-Stuyvesant,40.69585,-73.93335,Private room,50,2,3,0.32,1,0 +35850,15631610,Brooklyn,Red Hook,40.67918,-74.00568,Entire home/apt,185,3,16,1.67,1,0 +35851,65827591,Queens,Maspeth,40.73591,-73.90013,Private room,65,2,4,0.43,3,254 +35852,82736848,Manhattan,Morningside Heights,40.81214,-73.96488000000001,Entire home/apt,150,2,2,0.21,1,0 +35853,58234433,Queens,Sunnyside,40.7359,-73.9187,Entire home/apt,260,1,15,1.71,8,267 +35854,63659318,Manhattan,Upper East Side,40.76976,-73.94955999999999,Entire home/apt,125,2,17,1.76,1,70 +35855,169773010,Manhattan,Upper West Side,40.78471,-73.9716,Entire home/apt,199,1,86,8.72,1,22 +35856,214859918,Bronx,Concourse,40.82228,-73.92783,Private room,45,1,28,3.07,1,161 +35857,214863971,Brooklyn,Flatlands,40.6211,-73.92651,Private room,37,2,28,2.84,2,38 +35858,182425491,Manhattan,Chelsea,40.751509999999996,-73.99725,Entire home/apt,500,3,9,0.93,1,357 +35859,31770868,Manhattan,Theater District,40.76102,-73.98676999999999,Private room,100,1,51,5.15,2,169 +35860,11320557,Manhattan,Chinatown,40.71624,-73.99995,Private room,100,2,35,4.32,1,6 +35861,44260966,Bronx,Soundview,40.83088,-73.86492,Private room,42,2,23,2.54,3,109 +35862,25237492,Manhattan,Washington Heights,40.84241,-73.94086999999999,Entire home/apt,65,30,0,,34,295 +35863,24833181,Brooklyn,Bedford-Stuyvesant,40.69488,-73.94983,Entire home/apt,85,1,44,4.51,2,208 +35864,214888995,Bronx,Belmont,40.85267,-73.88627,Private room,50,2,51,5.17,1,325 +35865,27661888,Manhattan,Murray Hill,40.74734,-73.98049,Entire home/apt,575,2,40,4.43,1,46 +35866,123567556,Brooklyn,Crown Heights,40.675959999999996,-73.93200999999999,Private room,85,1,9,5.4,2,173 +35867,179773675,Brooklyn,Bedford-Stuyvesant,40.68517,-73.91736,Private room,60,4,0,,1,0 +35868,82975282,Queens,Bayswater,40.60484,-73.76871,Private room,52,30,0,,2,312 +35869,137358866,Queens,Woodside,40.74301,-73.89458,Private room,50,30,2,0.5,103,269 +35870,200380610,Manhattan,Midtown,40.7551,-73.96507,Entire home/apt,385,30,0,,65,364 +35871,178011115,Queens,Maspeth,40.74113,-73.90118000000001,Entire home/apt,166,4,31,3.52,1,280 +35872,188498431,Queens,Sunnyside,40.73892,-73.92397,Shared room,39,2,18,1.96,6,344 +35873,13538150,Manhattan,Hell's Kitchen,40.770540000000004,-73.99305,Entire home/apt,97,2,1,1.0,1,8 +35874,1327520,Brooklyn,Bedford-Stuyvesant,40.69357,-73.94971,Entire home/apt,200,1,3,0.3,1,0 +35875,73538984,Brooklyn,Bedford-Stuyvesant,40.68618,-73.94367,Entire home/apt,155,2,12,1.25,1,0 +35876,47239386,Brooklyn,Williamsburg,40.71671,-73.95064,Entire home/apt,220,4,3,0.32,1,16 +35877,50921439,Brooklyn,Williamsburg,40.70985,-73.96435,Private room,75,4,3,0.32,1,0 +35878,44755507,Brooklyn,Bushwick,40.69482,-73.92493,Entire home/apt,140,30,0,,2,330 +35879,20104851,Brooklyn,South Slope,40.66595,-73.97973,Entire home/apt,195,4,22,3.01,1,67 +35880,39477098,Brooklyn,Crown Heights,40.67205,-73.94853,Entire home/apt,125,3,25,4.55,1,139 +35881,114249746,Queens,Woodside,40.75249,-73.90041,Private room,45,1,53,5.39,1,45 +35882,215073823,Manhattan,Midtown,40.76534,-73.98096,Private room,425,1,4,0.53,1,0 +35883,117027456,Brooklyn,East New York,40.67001,-73.88339,Entire home/apt,90,1,34,4.1,1,122 +35884,61330869,Brooklyn,Williamsburg,40.70803,-73.96141999999999,Private room,95,1,6,0.62,1,0 +35885,5970733,Manhattan,Upper West Side,40.77953,-73.98421,Entire home/apt,100,2,17,2.12,1,18 +35886,215034605,Queens,Ditmars Steinway,40.76932,-73.90113000000001,Private room,100,3,14,1.42,1,0 +35887,3158797,Brooklyn,Windsor Terrace,40.65209,-73.97376,Private room,50,14,0,,1,174 +35888,9130040,Brooklyn,East Flatbush,40.66148,-73.93408000000001,Private room,89,1,1,0.59,6,365 +35889,215127571,Brooklyn,Williamsburg,40.71859,-73.95201999999999,Entire home/apt,400,3,25,2.62,1,30 +35890,302885,Manhattan,SoHo,40.72381,-74.00183,Entire home/apt,403,4,4,0.45,3,0 +35891,215161436,Manhattan,Upper West Side,40.80014,-73.96039,Entire home/apt,325,4,17,3.67,1,319 +35892,8834412,Bronx,Longwood,40.81232,-73.90299,Private room,100,3,0,,2,364 +35893,1604815,Manhattan,Upper West Side,40.77902,-73.98709000000001,Entire home/apt,135,10,13,1.38,1,7 +35894,215183568,Bronx,Claremont Village,40.83739,-73.91118,Private room,26,1,20,2.07,1,3 +35895,57812046,Brooklyn,Flatbush,40.63848,-73.96571999999999,Entire home/apt,330,3,2,1.05,2,18 +35896,215189782,Manhattan,Hell's Kitchen,40.76825,-73.98743,Private room,200,3,8,0.83,1,332 +35897,67987135,Brooklyn,Bedford-Stuyvesant,40.69105,-73.93723,Entire home/apt,139,1,8,0.86,9,118 +35898,67391192,Brooklyn,Williamsburg,40.70898,-73.94116,Private room,50,2,9,0.91,1,4 +35899,1381000,Brooklyn,Gowanus,40.68077,-73.98983,Entire home/apt,125,2,2,0.23,1,0 +35900,215209489,Manhattan,Hell's Kitchen,40.76088,-73.98971,Entire home/apt,350,30,1,0.26,1,331 +35901,108249932,Brooklyn,East New York,40.6757,-73.88925,Entire home/apt,175,3,22,2.89,2,285 +35902,37412692,Manhattan,Midtown,40.765390000000004,-73.98329,Entire home/apt,169,30,0,,4,362 +35903,12715154,Brooklyn,Williamsburg,40.72032,-73.94561,Private room,130,7,2,0.32,2,212 +35904,124155350,Manhattan,Harlem,40.82778,-73.94995,Entire home/apt,150,2,7,0.76,1,0 +35905,71219887,Brooklyn,Bushwick,40.69062,-73.92265,Entire home/apt,120,2,10,1.18,1,4 +35906,215239210,Brooklyn,Williamsburg,40.71528,-73.94331,Entire home/apt,150,2,14,1.45,1,2 +35907,127250744,Brooklyn,Carroll Gardens,40.68036,-73.99247,Entire home/apt,180,3,4,0.53,1,5 +35908,215257373,Brooklyn,Williamsburg,40.71601,-73.93961999999999,Private room,105,1,71,7.34,1,55 +35909,214184351,Brooklyn,Bushwick,40.69855,-73.91394,Private room,63,3,2,0.31,1,365 +35910,215259606,Manhattan,Hell's Kitchen,40.76542,-73.98754,Entire home/apt,300,1,61,6.31,1,154 +35911,1755123,Brooklyn,Williamsburg,40.71543,-73.95421,Entire home/apt,70,2,4,0.5,1,0 +35912,120378725,Manhattan,Kips Bay,40.73826,-73.98028000000001,Entire home/apt,250,2,2,0.21,1,0 +35913,215277711,Bronx,Van Nest,40.83988,-73.86978,Entire home/apt,300,1,0,,1,365 +35914,202823080,Brooklyn,Bushwick,40.69939,-73.9158,Private room,43,3,5,0.68,1,179 +35915,28740462,Brooklyn,Borough Park,40.64465,-73.99078,Private room,40,1,36,3.74,1,63 +35916,6393008,Manhattan,Hell's Kitchen,40.76485,-73.98525,Entire home/apt,471,3,1,0.42,1,188 +35917,156505456,Brooklyn,East New York,40.66676,-73.87420999999999,Private room,40,3,9,0.95,13,180 +35918,2891643,Manhattan,Harlem,40.821459999999995,-73.94598,Private room,50,1,0,,1,0 +35919,19303369,Queens,Woodside,40.74474,-73.90314000000001,Private room,47,30,0,,37,1 +35920,189336520,Manhattan,Upper East Side,40.771409999999996,-73.95658,Entire home/apt,1000,4,16,1.97,1,66 +35921,3690070,Brooklyn,Prospect Heights,40.67881,-73.96888,Entire home/apt,94,2,8,0.83,1,0 +35922,215378301,Brooklyn,Cypress Hills,40.68269,-73.89223,Entire home/apt,750,1,6,0.67,1,365 +35923,156064588,Brooklyn,Crown Heights,40.67623,-73.91144,Private room,69,1,11,1.11,1,0 +35924,904138,Queens,Astoria,40.76214,-73.92148,Entire home/apt,150,6,1,0.32,1,0 +35925,215387072,Brooklyn,Bedford-Stuyvesant,40.680620000000005,-73.91251,Private room,80,5,12,1.28,3,354 +35926,214347105,Manhattan,Midtown,40.75306,-73.96661999999999,Entire home/apt,399,3,13,1.48,8,229 +35927,7147060,Manhattan,Harlem,40.80212,-73.95732,Private room,95,2,5,1.9,2,90 +35928,187487947,Brooklyn,Greenpoint,40.731759999999994,-73.95525,Entire home/apt,52,1,32,3.47,6,0 +35929,215403497,Manhattan,Little Italy,40.71908,-73.99766,Entire home/apt,150,4,3,0.32,1,179 +35930,215392967,Queens,Bellerose,40.72415,-73.72800000000001,Private room,65,3,10,1.06,1,89 +35931,2268393,Brooklyn,Williamsburg,40.70665,-73.94554000000001,Private room,60,7,5,0.52,2,0 +35932,215407308,Queens,Sunnyside,40.7372,-73.92586,Private room,55,2,19,2.04,3,138 +35933,215407308,Queens,Sunnyside,40.73829,-73.9274,Private room,49,3,14,1.44,3,106 +35934,12243051,Manhattan,Chelsea,40.74299,-73.99436,Entire home/apt,377,29,0,,96,302 +35935,12243051,Manhattan,Chelsea,40.7425,-73.99427,Entire home/apt,249,29,1,0.1,96,220 +35936,7147060,Manhattan,Harlem,40.80256,-73.95581,Private room,100,2,11,1.18,2,90 +35937,921829,Brooklyn,Bedford-Stuyvesant,40.6909,-73.93737,Private room,60,3,17,1.75,1,340 +35938,214678935,Brooklyn,Sunset Park,40.64667,-74.01416,Private room,59,1,36,3.79,3,352 +35939,23120620,Queens,Flushing,40.73819,-73.81007,Private room,65,1,2,0.22,5,90 +35940,96735874,Brooklyn,Williamsburg,40.71969,-73.96427,Private room,120,1,23,2.46,1,37 +35941,179413160,Brooklyn,Cypress Hills,40.67974,-73.88374,Private room,45,1,8,0.85,1,57 +35942,7720459,Manhattan,Harlem,40.804590000000005,-73.9558,Private room,150,5,33,3.69,1,58 +35943,175180318,Manhattan,Hell's Kitchen,40.76538,-73.98779,Shared room,90,1,11,1.11,6,169 +35944,21124300,Brooklyn,Fort Greene,40.68803,-73.973,Entire home/apt,140,2,8,0.83,1,14 +35945,44753370,Brooklyn,Bushwick,40.70543,-73.91935,Private room,50,6,1,0.1,1,0 +35946,67395042,Manhattan,Harlem,40.82306,-73.94046,Private room,70,1,46,5.54,1,66 +35947,14383179,Brooklyn,Bushwick,40.70037,-73.92408,Entire home/apt,90,5,4,0.44,1,0 +35948,6066958,Manhattan,Hell's Kitchen,40.763090000000005,-73.99154,Private room,125,1,10,1.01,1,0 +35949,92523072,Queens,Rockaway Beach,40.58862,-73.81276,Entire home/apt,150,2,14,7.24,1,97 +35950,83343316,Manhattan,Kips Bay,40.739540000000005,-73.98185,Private room,150,2,2,0.26,1,45 +35951,2570601,Manhattan,Upper West Side,40.7855,-73.97584,Private room,98,2,7,0.8,1,0 +35952,26045887,Manhattan,Murray Hill,40.74844,-73.97344,Private room,120,1,36,3.79,2,180 +35953,1119058,Brooklyn,Bushwick,40.70473,-73.92662,Entire home/apt,100,4,17,1.76,1,0 +35954,14904449,Brooklyn,Crown Heights,40.67347,-73.95833,Entire home/apt,110,2,9,0.93,1,15 +35955,45466335,Manhattan,Harlem,40.82195,-73.9368,Entire home/apt,250,1,36,4.62,2,301 +35956,215577249,Brooklyn,Bushwick,40.69316,-73.90445,Private room,65,2,29,2.93,8,348 +35957,215577249,Brooklyn,Bushwick,40.69198,-73.9038,Private room,65,2,26,2.82,8,349 +35958,215577249,Brooklyn,Bushwick,40.693259999999995,-73.90431,Private room,50,2,22,2.48,8,362 +35959,215577249,Brooklyn,Bushwick,40.69256,-73.90456999999999,Private room,65,2,26,2.8,8,362 +35960,48303314,Queens,Woodside,40.74909,-73.90915,Private room,35,2,21,2.23,1,16 +35961,215591956,Brooklyn,East New York,40.67111,-73.87083,Entire home/apt,160,2,22,2.38,1,48 +35962,203266238,Bronx,Morris Park,40.85362,-73.85011,Private room,65,5,0,,5,365 +35963,39174150,Manhattan,Harlem,40.82445,-73.95218,Private room,200,2,21,2.35,3,38 +35964,15617507,Bronx,Morris Park,40.85105,-73.86049,Entire home/apt,60,2,20,2.29,3,208 +35965,1521811,Brooklyn,Greenpoint,40.72749,-73.95217,Private room,53,5,1,0.11,1,11 +35966,137358866,Queens,Sunnyside,40.739979999999996,-73.92143,Private room,38,30,2,0.3,103,201 +35967,141734227,Brooklyn,Greenpoint,40.73128,-73.95358,Private room,99,1,11,1.2,1,0 +35968,62659791,Brooklyn,Crown Heights,40.67814,-73.95291999999999,Shared room,149,1,0,,2,363 +35969,10301127,Manhattan,Upper West Side,40.773990000000005,-73.97861,Private room,140,30,0,,1,0 +35970,63056614,Queens,Jamaica,40.671890000000005,-73.77769,Entire home/apt,65,2,40,4.44,1,123 +35971,137817563,Brooklyn,Bedford-Stuyvesant,40.683,-73.93669,Entire home/apt,110,28,1,0.51,4,156 +35972,2646237,Brooklyn,Bedford-Stuyvesant,40.6909,-73.92662,Entire home/apt,140,3,18,2.33,1,134 +35973,215727176,Queens,Bayside,40.74933,-73.76821,Entire home/apt,175,3,1,0.11,1,112 +35974,137817563,Brooklyn,Bedford-Stuyvesant,40.683009999999996,-73.93656999999999,Entire home/apt,115,28,2,0.32,4,212 +35975,50462097,Manhattan,Hell's Kitchen,40.76435,-73.9875,Entire home/apt,199,2,35,4.29,1,200 +35976,42601145,Manhattan,Upper East Side,40.774809999999995,-73.95558,Private room,60,1,48,4.97,1,8 +35977,92733485,Brooklyn,Downtown Brooklyn,40.69164,-73.99055,Private room,50,1,5,0.54,1,0 +35978,23354644,Manhattan,East Village,40.72977,-73.98529,Private room,78,2,1,1.0,3,38 +35979,172741,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.9625,Private room,70,1,5,1.06,1,37 +35980,102180676,Brooklyn,Greenpoint,40.72493,-73.93975999999999,Private room,120,4,0,,1,49 +35981,26585911,Brooklyn,East New York,40.66018,-73.86607,Private room,125,1,3,0.31,1,281 +35982,215759678,Queens,Jamaica Estates,40.71987,-73.79816,Private room,35,2,30,3.35,1,233 +35983,80933709,Queens,East Elmhurst,40.76533,-73.87873,Private room,54,3,27,2.83,2,35 +35984,18022132,Queens,Long Island City,40.74523,-73.94973,Private room,175,4,1,0.16,1,39 +35985,215765235,Manhattan,NoHo,40.72503,-73.99252,Entire home/apt,500,5,1,0.7,1,362 +35986,215778245,Queens,Corona,40.740559999999995,-73.86446,Shared room,25,2,15,1.77,6,330 +35987,215778245,Queens,Corona,40.73888,-73.86618,Shared room,26,2,21,2.58,6,352 +35988,36383387,Queens,Far Rockaway,40.60106,-73.75154,Entire home/apt,63,1,11,4.52,1,129 +35989,4166822,Manhattan,Upper West Side,40.79012,-73.96896,Entire home/apt,127,3,14,1.78,1,0 +35990,215869827,Manhattan,East Village,40.73245,-73.98535,Entire home/apt,300,30,0,,1,180 +35991,12243051,Manhattan,Midtown,40.74716,-73.98454,Entire home/apt,225,29,1,0.79,96,332 +35992,12243051,Manhattan,Midtown,40.74653,-73.98481,Entire home/apt,209,29,0,,96,250 +35993,215884830,Brooklyn,Sunset Park,40.65012,-74.00603000000001,Private room,60,1,20,2.07,4,162 +35994,110213244,Brooklyn,South Slope,40.66209,-73.98671,Private room,47,1,4,0.42,1,362 +35995,22154340,Brooklyn,Fort Greene,40.68892,-73.97329,Entire home/apt,195,3,1,0.19,1,0 +35996,215897007,Manhattan,Murray Hill,40.74536,-73.97506,Private room,355,2,13,1.49,1,308 +35997,9731301,Queens,Jackson Heights,40.75011,-73.89113,Shared room,70,1,2,0.32,1,365 +35998,119669058,Brooklyn,Bedford-Stuyvesant,40.69313,-73.95533,Shared room,39,1,13,1.33,34,365 +35999,19303369,Queens,Jackson Heights,40.74951,-73.89378,Private room,35,30,2,0.56,37,32 +36000,119669058,Brooklyn,Bedford-Stuyvesant,40.69238,-73.95724,Shared room,39,2,6,0.62,34,343 +36001,12243051,Manhattan,Midtown,40.74584,-73.98474,Entire home/apt,237,29,0,,96,365 +36002,214871546,Bronx,Longwood,40.82718,-73.90241,Entire home/apt,90,2,58,6.8,1,301 +36003,12243051,Manhattan,Midtown,40.74712,-73.98461,Entire home/apt,254,29,0,,96,291 +36004,119669058,Brooklyn,Bedford-Stuyvesant,40.69232,-73.95654,Shared room,39,3,13,1.36,34,359 +36005,119669058,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95657,Shared room,39,1,13,1.36,34,365 +36006,141300,Manhattan,Upper West Side,40.78581,-73.97179,Entire home/apt,165,1,8,0.88,1,87 +36007,205530337,Queens,Ridgewood,40.70279,-73.90601,Private room,45,30,4,0.48,8,248 +36008,215922295,Staten Island,Rosebank,40.61088,-74.07327,Entire home/apt,200,5,8,1.0,1,244 +36009,135150441,Brooklyn,Bedford-Stuyvesant,40.68987,-73.94484,Private room,80,4,1,0.15,1,325 +36010,215387072,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91181,Private room,65,3,17,2.26,3,365 +36011,150439529,Queens,Astoria,40.76677,-73.91315,Private room,70,4,6,0.68,1,63 +36012,45835291,Manhattan,Harlem,40.82253,-73.95525,Private room,53,8,37,3.88,6,299 +36013,215951448,Bronx,Soundview,40.8289,-73.86219,Entire home/apt,87,1,54,5.61,1,326 +36014,215884830,Brooklyn,Sunset Park,40.65167,-74.00624,Private room,50,1,22,2.28,4,169 +36015,215884830,Brooklyn,Sunset Park,40.65135,-74.00487,Private room,55,1,18,1.87,4,161 +36016,20745804,Manhattan,East Village,40.72707,-73.9853,Entire home/apt,240,3,2,0.24,1,0 +36017,9299046,Manhattan,Civic Center,40.71638,-74.00419000000001,Private room,120,5,5,0.6,1,25 +36018,215967566,Queens,Jackson Heights,40.75091,-73.87818,Entire home/apt,225,2,38,4.01,1,49 +36019,89728139,Manhattan,Harlem,40.82714,-73.93888000000001,Private room,89,3,15,1.56,1,179 +36020,214694658,Brooklyn,Fort Greene,40.694390000000006,-73.97319,Private room,65,1,90,9.41,1,254 +36021,97546900,Brooklyn,Brownsville,40.6676,-73.90954,Private room,75,2,33,3.45,1,20 +36022,14515065,Brooklyn,Bushwick,40.69845,-73.93609000000001,Entire home/apt,108,1,79,8.4,2,46 +36023,202818204,Queens,Long Island City,40.74942,-73.93658,Private room,75,1,8,0.82,1,3 +36024,216032427,Manhattan,Hell's Kitchen,40.76357,-73.98906,Private room,150,2,31,3.46,1,124 +36025,137358866,Queens,Astoria,40.76708,-73.92451,Private room,60,30,0,,103,215 +36026,56750914,Manhattan,East Village,40.72296,-73.98184,Private room,150,2,28,2.97,1,0 +36027,202074215,Brooklyn,Bedford-Stuyvesant,40.6843,-73.91985,Entire home/apt,89,3,47,4.88,2,23 +36028,216061803,Brooklyn,Williamsburg,40.71672,-73.95484,Entire home/apt,180,2,3,0.98,1,0 +36029,16624745,Manhattan,Murray Hill,40.747040000000005,-73.97355999999999,Entire home/apt,250,30,0,,3,92 +36030,137358866,Queens,Astoria,40.76655,-73.92463000000001,Private room,51,30,0,,103,216 +36031,67987135,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93681,Entire home/apt,139,1,10,1.05,9,7 +36032,25617559,Brooklyn,Bushwick,40.7042,-73.9259,Entire home/apt,89,4,6,0.73,1,0 +36033,88111418,Queens,St. Albans,40.69113,-73.75524,Entire home/apt,70,3,12,1.31,1,323 +36034,216086952,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9273,Entire home/apt,99,1,21,2.23,1,87 +36035,216090534,Manhattan,Hell's Kitchen,40.765390000000004,-73.99145,Private room,150,2,38,4.15,2,243 +36036,6332730,Manhattan,Greenwich Village,40.7348,-73.99785,Entire home/apt,400,90,0,,1,365 +36037,697469,Brooklyn,Clinton Hill,40.69288,-73.96101,Private room,69,3,6,0.62,1,174 +36038,216090534,Manhattan,Hell's Kitchen,40.76282,-73.98846999999999,Private room,145,2,38,4.25,2,256 +36039,102466916,Manhattan,Harlem,40.80731,-73.94516,Private room,53,30,0,,6,198 +36040,2605122,Manhattan,Harlem,40.8072,-73.94513,Private room,55,28,3,0.33,1,0 +36041,7505271,Brooklyn,Greenpoint,40.72586,-73.94466,Private room,99,1,8,0.92,1,0 +36042,56656728,Manhattan,Financial District,40.7112,-74.0094,Entire home/apt,209,1,51,5.82,5,1 +36043,95415432,Brooklyn,Williamsburg,40.71621,-73.96406999999999,Entire home/apt,280,4,0,,1,43 +36044,214923987,Queens,Ditmars Steinway,40.77643,-73.91156,Private room,55,4,19,2.13,1,89 +36045,63953718,Queens,Elmhurst,40.73137,-73.87193,Private room,69,2,3,0.33,1,0 +36046,216136826,Bronx,Wakefield,40.8878,-73.85372,Private room,47,2,13,1.62,1,347 +36047,12672019,Manhattan,Washington Heights,40.83766,-73.94045,Private room,65,5,23,2.47,1,255 +36048,2871975,Brooklyn,Williamsburg,40.70973,-73.96405,Private room,65,5,3,0.74,1,31 +36049,9698896,Manhattan,Midtown,40.74971,-73.98682,Entire home/apt,108,2,6,0.62,1,0 +36050,17486626,Brooklyn,Williamsburg,40.71953,-73.96401,Private room,70,2,14,1.52,2,3 +36051,162974717,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95926999999999,Private room,60,1,15,1.62,1,0 +36052,137358866,Queens,Astoria,40.768,-73.92388000000001,Private room,45,30,0,,103,246 +36053,26377263,Brooklyn,East Flatbush,40.65246,-73.93791,Private room,57,30,0,,43,138 +36054,15105613,Manhattan,Upper East Side,40.77713,-73.95096,Private room,70,30,1,0.14,1,236 +36055,191849342,Brooklyn,Crown Heights,40.67177,-73.95334,Entire home/apt,500,4,9,1.32,1,247 +36056,20990306,Brooklyn,Williamsburg,40.71257,-73.94946,Private room,95,2,32,3.38,2,1 +36057,213816392,Queens,Queens Village,40.70649,-73.74517,Private room,41,1,24,2.47,3,351 +36058,3606458,Manhattan,Upper West Side,40.79517,-73.97391999999999,Entire home/apt,300,1,0,,2,358 +36059,137817563,Brooklyn,Bedford-Stuyvesant,40.68161,-73.93811,Entire home/apt,140,28,0,,4,173 +36060,196211856,Manhattan,Upper West Side,40.77771,-73.98023,Entire home/apt,145,5,4,0.53,1,0 +36061,216235179,Brooklyn,Bushwick,40.69952,-73.91868000000001,Private room,55,30,1,0.45,17,342 +36062,23871497,Queens,Jackson Heights,40.751540000000006,-73.8907,Entire home/apt,95,3,12,1.31,1,31 +36063,216235179,Brooklyn,Bushwick,40.699329999999996,-73.92079,Private room,50,30,0,,17,327 +36064,216235179,Brooklyn,Bushwick,40.69988,-73.92071999999999,Private room,55,30,4,0.58,17,358 +36065,216235179,Brooklyn,Bushwick,40.700109999999995,-73.92043000000001,Private room,55,30,0,,17,336 +36066,216235179,Brooklyn,Bushwick,40.701609999999995,-73.91922,Private room,50,30,1,1.0,17,184 +36067,216235179,Brooklyn,Bushwick,40.69938,-73.91953000000001,Private room,55,30,1,0.15,17,339 +36068,205234874,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94341,Private room,60,2,19,2.14,2,251 +36069,216235179,Brooklyn,Bushwick,40.70026,-73.92026,Private room,50,30,0,,17,315 +36070,216235179,Brooklyn,Bushwick,40.70126,-73.92076999999999,Private room,55,35,2,0.3,17,365 +36071,216235179,Brooklyn,Bushwick,40.70082,-73.91859000000001,Private room,50,30,2,0.47,17,319 +36072,216235179,Brooklyn,Bushwick,40.701240000000006,-73.92013,Private room,50,30,0,,17,131 +36073,51413809,Manhattan,East Harlem,40.79933,-73.94283,Private room,59,1,29,2.99,1,247 +36074,216091157,Brooklyn,Greenpoint,40.72108,-73.95215,Entire home/apt,200,5,5,0.52,1,0 +36075,216287451,Brooklyn,Bushwick,40.69038,-73.91909,Private room,85,1,1,0.12,1,177 +36076,190921808,Manhattan,Hell's Kitchen,40.75584,-73.99559,Private room,120,7,4,0.44,47,365 +36077,115545139,Brooklyn,East New York,40.65894,-73.89343000000001,Private room,39,2,54,5.63,2,60 +36078,4440548,Brooklyn,Williamsburg,40.71526,-73.9469,Private room,65,3,6,0.65,2,88 +36079,216299753,Brooklyn,Canarsie,40.63284,-73.91149,Private room,80,2,11,1.15,1,5 +36080,216304678,Brooklyn,East Flatbush,40.654090000000004,-73.94214000000001,Private room,46,3,13,1.41,5,341 +36081,330123,Brooklyn,Flatbush,40.654579999999996,-73.95676999999999,Entire home/apt,80,5,3,0.33,1,0 +36082,214037223,Manhattan,Kips Bay,40.74256,-73.97912,Private room,135,2,35,3.79,3,267 +36083,26377263,Brooklyn,East Flatbush,40.65351,-73.93768,Private room,57,30,0,,43,311 +36084,115993835,Brooklyn,Sunset Park,40.64036,-74.00822,Private room,26,1,13,1.36,5,141 +36085,26769462,Manhattan,Midtown,40.748940000000005,-73.98673000000001,Entire home/apt,170,5,28,3.13,1,0 +36086,26377263,Brooklyn,East Flatbush,40.65245,-73.93751999999999,Private room,53,30,0,,43,346 +36087,205132904,Staten Island,Tompkinsville,40.633109999999995,-74.07936,Private room,55,2,48,4.97,2,302 +36088,96076215,Brooklyn,Bushwick,40.69986,-73.92095,Entire home/apt,105,1,58,6.02,1,0 +36089,169396379,Brooklyn,Flatbush,40.65417,-73.95524,Private room,95,1,12,1.3,1,179 +36090,216375039,Manhattan,East Harlem,40.79368,-73.93491999999999,Private room,95,1,43,4.46,1,0 +36091,208610094,Brooklyn,Flatlands,40.62908,-73.92265,Private room,40,1,38,3.93,1,365 +36092,8859112,Brooklyn,Bedford-Stuyvesant,40.693940000000005,-73.95183,Entire home/apt,100,2,27,2.79,2,255 +36093,216392786,Brooklyn,Bushwick,40.6982,-73.93034,Private room,60,2,21,2.31,1,57 +36094,107434423,Manhattan,Tribeca,40.71618,-74.00608000000001,Entire home/apt,282,30,0,,232,244 +36095,11160056,Manhattan,Two Bridges,40.71079,-73.99304000000001,Entire home/apt,135,2,4,0.41,1,0 +36096,133762456,Manhattan,Upper West Side,40.78588,-73.97117,Private room,200,4,0,,1,365 +36097,9808087,Queens,Ditmars Steinway,40.773790000000005,-73.91875,Entire home/apt,95,3,13,1.39,1,0 +36098,216437098,Brooklyn,Bedford-Stuyvesant,40.68392,-73.92123000000001,Entire home/apt,110,2,9,0.96,2,41 +36099,214135354,Manhattan,Upper East Side,40.77601,-73.95114000000001,Private room,90,1,75,7.76,2,283 +36100,120767920,Queens,Flushing,40.75548,-73.81371999999999,Private room,53,2,24,2.61,10,359 +36101,75030544,Brooklyn,Bedford-Stuyvesant,40.68166,-73.91625,Private room,85,12,4,0.42,4,365 +36102,195262476,Queens,Ditmars Steinway,40.776709999999994,-73.90543000000001,Entire home/apt,100,1,9,1.03,1,2 +36103,216456504,Bronx,Wakefield,40.89399,-73.84279000000001,Private room,65,1,52,5.4,3,363 +36104,23370431,Queens,Hollis,40.71694,-73.75656,Private room,55,2,16,1.71,2,178 +36105,12166742,Brooklyn,Flatlands,40.62515,-73.94409,Entire home/apt,85,1,21,2.26,1,82 +36106,64673584,Manhattan,Upper West Side,40.78285,-73.97487,Entire home/apt,200,7,5,0.53,1,1 +36107,4654272,Brooklyn,Greenpoint,40.72891,-73.95345,Entire home/apt,225,2,37,3.84,1,229 +36108,215535399,Queens,Long Island City,40.75188,-73.94548,Private room,95,3,1,0.11,1,24 +36109,48483287,Manhattan,East Harlem,40.80655,-73.93871999999999,Entire home/apt,175,1,7,0.76,1,0 +36110,216492330,Manhattan,Washington Heights,40.854279999999996,-73.93204,Entire home/apt,189,3,8,0.88,1,358 +36111,26377263,Brooklyn,East Flatbush,40.654379999999996,-73.93675999999999,Private room,53,30,1,1.0,43,304 +36112,26377263,Brooklyn,East Flatbush,40.65279,-73.93817,Private room,57,30,0,,43,283 +36113,26377263,Brooklyn,East Flatbush,40.65429,-73.93601,Private room,57,30,0,,43,306 +36114,44338944,Brooklyn,Sunset Park,40.64349,-74.02346999999999,Entire home/apt,80,14,2,0.24,1,184 +36115,216519008,Manhattan,Hell's Kitchen,40.76382,-73.98902,Private room,97,3,8,0.86,2,10 +36116,216519008,Manhattan,West Village,40.7404,-74.00497,Private room,79,3,2,0.23,2,0 +36117,22992959,Brooklyn,Bushwick,40.70012,-73.92777,Private room,80,2,3,0.33,1,0 +36118,57430885,Manhattan,Harlem,40.815740000000005,-73.94211999999999,Private room,39,10,1,0.16,1,0 +36119,865148,Manhattan,East Village,40.72939,-73.98007,Private room,85,2,26,3.07,1,165 +36120,216586341,Brooklyn,Crown Heights,40.67172,-73.95031,Entire home/apt,50,3,3,0.33,1,0 +36121,173685298,Manhattan,Midtown,40.75499,-73.97121,Private room,330,1,4,0.48,11,176 +36122,137358866,Queens,Elmhurst,40.74432,-73.87123000000001,Private room,37,30,1,0.25,103,252 +36123,122323589,Manhattan,Tribeca,40.71979,-74.00407,Entire home/apt,799,3,6,0.66,1,325 +36124,38579823,Manhattan,Chelsea,40.750640000000004,-73.99535999999999,Entire home/apt,150,1,12,1.29,1,0 +36125,202950759,Brooklyn,Crown Heights,40.6716,-73.9564,Entire home/apt,195,2,37,4.04,1,199 +36126,216611306,Queens,Briarwood,40.71378,-73.80796,Private room,50,1,13,1.46,1,0 +36127,16064187,Brooklyn,Crown Heights,40.67326,-73.95503000000001,Private room,100,2,18,2.07,1,61 +36128,9155419,Manhattan,East Village,40.72615,-73.98905,Private room,140,2,5,0.55,1,149 +36129,214610799,Manhattan,East Harlem,40.79695,-73.9356,Entire home/apt,275,2,2,0.21,1,7 +36130,96978924,Brooklyn,East Flatbush,40.63575,-73.94235,Entire home/apt,85,1,5,0.55,1,124 +36131,213208277,Brooklyn,Borough Park,40.642140000000005,-73.99237,Shared room,31,5,7,0.78,8,365 +36132,174261493,Brooklyn,Sheepshead Bay,40.61051,-73.95508000000001,Private room,99,2,10,1.05,2,0 +36133,156505456,Brooklyn,East New York,40.66704,-73.87525,Private room,117,3,4,0.43,13,85 +36134,3017533,Brooklyn,Sunset Park,40.6642,-73.99338,Entire home/apt,160,2,51,5.39,1,15 +36135,209386156,Manhattan,East Harlem,40.79912,-73.94202,Shared room,65,2,33,3.44,9,10 +36136,13092234,Manhattan,West Village,40.73113,-74.00831,Private room,295,6,0,,1,0 +36137,25326,Brooklyn,Windsor Terrace,40.65777,-73.97487,Entire home/apt,105,1,15,1.56,2,269 +36138,171433016,Brooklyn,Clinton Hill,40.68633,-73.96539,Entire home/apt,225,2,29,3.14,1,36 +36139,188212054,Brooklyn,Bay Ridge,40.62165,-74.02336,Entire home/apt,245,3,18,1.94,2,255 +36140,2260289,Brooklyn,Flatbush,40.63882,-73.96563,Entire home/apt,185,5,2,0.26,1,33 +36141,3612407,Manhattan,Tribeca,40.7172,-74.00675,Entire home/apt,295,3,3,0.33,1,17 +36142,214119114,Manhattan,East Harlem,40.78781,-73.94549,Private room,75,3,0,,1,0 +36143,188023318,Brooklyn,Greenpoint,40.7256,-73.95698,Entire home/apt,480,1,8,3.24,4,63 +36144,216738447,Brooklyn,Bedford-Stuyvesant,40.68528,-73.95217,Entire home/apt,190,2,3,0.33,1,88 +36145,545355,Manhattan,Chelsea,40.74497,-74.00571,Entire home/apt,225,3,2,0.26,1,0 +36146,1104166,Brooklyn,Williamsburg,40.71223,-73.9524,Entire home/apt,325,5,0,,4,0 +36147,6520550,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93841,Private room,59,2,8,0.84,1,45 +36148,57294304,Manhattan,Hell's Kitchen,40.76464,-73.98737,Entire home/apt,250,1,0,,1,0 +36149,2207585,Manhattan,Financial District,40.70565,-74.00666,Entire home/apt,139,20,0,,1,0 +36150,43431867,Manhattan,Washington Heights,40.83256,-73.9444,Entire home/apt,96,4,0,,1,17 +36151,1104166,Brooklyn,Williamsburg,40.71304,-73.95235,Private room,60,2,23,2.46,4,60 +36152,3251620,Manhattan,Harlem,40.811479999999996,-73.9514,Entire home/apt,300,1,1,0.11,1,0 +36153,4443863,Manhattan,Hell's Kitchen,40.76419,-73.98949,Entire home/apt,325,1,59,6.48,1,180 +36154,216764638,Manhattan,East Harlem,40.79145,-73.93961999999999,Private room,100,3,22,3.42,1,23 +36155,333712,Manhattan,SoHo,40.72205,-74.00121,Entire home/apt,355,4,5,0.64,1,31 +36156,216772639,Brooklyn,Borough Park,40.63378,-74.00599,Private room,60,1,7,0.76,7,179 +36157,209386156,Manhattan,East Harlem,40.79983,-73.94116,Shared room,65,2,27,2.8,9,11 +36158,195887266,Queens,Arverne,40.59843,-73.79844,Entire home/apt,100,1,12,2.29,1,65 +36159,2225836,Manhattan,Harlem,40.82608,-73.94230999999999,Entire home/apt,99,2,12,1.38,1,6 +36160,216772639,Brooklyn,Borough Park,40.635490000000004,-74.00553000000001,Private room,65,1,16,1.73,7,180 +36161,216772639,Brooklyn,Borough Park,40.634240000000005,-74.00556,Private room,58,1,12,1.3,7,364 +36162,69494967,Manhattan,Midtown,40.757290000000005,-73.96807,Shared room,75,1,18,1.97,1,52 +36163,109004750,Brooklyn,Bushwick,40.69582,-73.9095,Private room,40,1,0,,1,364 +36164,211353692,Brooklyn,Sunset Park,40.64634,-74.01419,Private room,50,2,8,0.86,2,0 +36165,36391065,Queens,Astoria,40.75975,-73.91991999999999,Entire home/apt,50,2,4,0.46,1,20 +36166,84720132,Manhattan,Hell's Kitchen,40.76591,-73.99493000000001,Entire home/apt,300,4,4,0.44,1,5 +36167,211353692,Brooklyn,Sunset Park,40.64682,-74.01515,Private room,80,2,1,0.16,2,65 +36168,9165739,Manhattan,Chelsea,40.74184,-74.00108,Private room,91,1,10,1.09,1,0 +36169,216891728,Manhattan,Chelsea,40.7458,-73.9957,Entire home/apt,140,32,29,3.94,1,2 +36170,37708037,Manhattan,Financial District,40.70815,-74.00438,Entire home/apt,199,3,5,0.66,1,37 +36171,27186438,Brooklyn,East Flatbush,40.65345,-73.94881,Private room,43,6,2,0.22,1,311 +36172,216917414,Manhattan,Washington Heights,40.851040000000005,-73.93979,Private room,60,2,12,1.34,2,0 +36173,64898741,Queens,Long Island City,40.757709999999996,-73.93143,Private room,200,2,6,0.69,2,90 +36174,123145309,Manhattan,Morningside Heights,40.81623,-73.96103000000001,Private room,50,1,2,0.22,1,0 +36175,196536266,Manhattan,East Harlem,40.80141,-73.93814,Entire home/apt,75,7,3,0.32,1,161 +36176,38042569,Manhattan,SoHo,40.723009999999995,-74.0049,Entire home/apt,150,7,1,0.12,1,0 +36177,7365834,Brooklyn,Sheepshead Bay,40.58296,-73.95879000000001,Entire home/apt,99,30,1,0.11,5,365 +36178,3094662,Brooklyn,Fort Hamilton,40.62288,-74.03081999999999,Private room,90,3,12,1.3,1,63 +36179,92185816,Manhattan,Harlem,40.80774,-73.94939000000001,Private room,62,10,4,0.48,3,345 +36180,65827591,Queens,Maspeth,40.73616,-73.89926,Shared room,55,1,0,,3,47 +36181,202976102,Bronx,Concourse Village,40.83413,-73.91669,Private room,35,1,15,3.88,1,70 +36182,2300366,Brooklyn,Williamsburg,40.707609999999995,-73.9424,Entire home/apt,105,2,1,0.11,2,3 +36183,27815282,Manhattan,Theater District,40.76226,-73.98536999999999,Entire home/apt,175,3,5,0.58,1,83 +36184,154981576,Brooklyn,Bushwick,40.7001,-73.91219,Private room,38,30,0,,9,7 +36185,69720852,Manhattan,SoHo,40.720040000000004,-73.99861999999999,Private room,100,5,7,0.77,3,16 +36186,40892524,Brooklyn,Crown Heights,40.676,-73.92283,Entire home/apt,76,1,25,3.1,1,287 +36187,97417890,Manhattan,Midtown,40.74223,-73.98286,Entire home/apt,299,1,32,4.4,2,264 +36188,3180546,Brooklyn,Bushwick,40.69943,-73.93292,Entire home/apt,150,3,3,0.39,1,0 +36189,9599815,Queens,Long Island City,40.74511,-73.95293000000001,Entire home/apt,80,4,11,1.25,1,24 +36190,99133678,Queens,Ridgewood,40.7092,-73.91246,Private room,25,1,0,,1,0 +36191,47180541,Brooklyn,Crown Heights,40.6752,-73.94829,Private room,80,1,25,2.73,1,11 +36192,148152874,Manhattan,East Harlem,40.80046,-73.93677,Entire home/apt,59,4,9,1.02,1,0 +36193,32631901,Brooklyn,Williamsburg,40.71255,-73.9405,Entire home/apt,250,2,7,0.76,1,2 +36194,13642781,Brooklyn,Williamsburg,40.712590000000006,-73.94163,Private room,100,1,1,0.1,1,0 +36195,866089,Manhattan,Little Italy,40.71862,-73.99677,Private room,115,5,3,0.32,3,67 +36196,128300825,Brooklyn,Bedford-Stuyvesant,40.69276,-73.92966,Private room,70,2,53,5.6,2,32 +36197,211549023,Manhattan,Midtown,40.74823,-73.98697,Entire home/apt,500,2,14,2.07,13,272 +36198,216304678,Brooklyn,East Flatbush,40.65267,-73.94293,Private room,46,3,10,1.05,5,311 +36199,1976287,Brooklyn,Fort Greene,40.69178,-73.97345,Entire home/apt,145,3,5,0.55,1,0 +36200,5166260,Brooklyn,East Flatbush,40.652409999999996,-73.95088,Private room,80,2,51,5.5,1,34 +36201,5188470,Brooklyn,Flatbush,40.6437,-73.95973000000001,Entire home/apt,65,4,11,1.46,1,19 +36202,216411482,Queens,East Elmhurst,40.763490000000004,-73.88662,Private room,40,2,21,2.27,1,30 +36203,65671256,Queens,Jackson Heights,40.75703,-73.85826999999999,Entire home/apt,72,1,70,7.42,3,98 +36204,216304678,Brooklyn,East Flatbush,40.65293,-73.9435,Private room,100,3,1,0.14,5,305 +36205,140983856,Manhattan,Financial District,40.710640000000005,-74.00754,Entire home/apt,185,15,11,1.23,2,331 +36206,214347105,Manhattan,Midtown,40.752829999999996,-73.96736,Entire home/apt,370,3,9,0.96,8,316 +36207,216304678,Brooklyn,East Flatbush,40.65285,-73.943,Private room,60,3,11,1.17,5,347 +36208,216304678,Brooklyn,East Flatbush,40.65256,-73.94185,Private room,70,3,2,0.24,5,267 +36209,144204336,Brooklyn,Bedford-Stuyvesant,40.69336,-73.93857,Private room,53,2,18,2.49,2,333 +36210,10838658,Brooklyn,Bedford-Stuyvesant,40.67644,-73.91078,Entire home/apt,110,2,7,0.82,1,7 +36211,144204336,Brooklyn,Bedford-Stuyvesant,40.69272,-73.93807,Private room,53,2,24,2.93,2,337 +36212,17814794,Manhattan,East Village,40.72615,-73.98477,Entire home/apt,59,2,17,5.05,1,79 +36213,217154594,Manhattan,East Village,40.73046,-73.98589,Private room,79,5,8,0.85,1,51 +36214,114022893,Brooklyn,Sunset Park,40.64907,-74.00579,Entire home/apt,150,4,22,2.44,1,123 +36215,116538157,Brooklyn,Crown Heights,40.67132,-73.95235,Entire home/apt,200,2,22,3.44,1,20 +36216,1015883,Manhattan,West Village,40.73106,-74.00301,Private room,125,1,7,0.83,1,156 +36217,1171704,Brooklyn,Williamsburg,40.70475,-73.93522,Entire home/apt,200,2,16,1.99,1,136 +36218,217221109,Manhattan,Harlem,40.80839,-73.94375,Entire home/apt,200,1,40,4.88,1,274 +36219,62776991,Brooklyn,Sunset Park,40.66323,-73.99573000000001,Private room,60,5,3,0.47,1,0 +36220,198861577,Manhattan,Hell's Kitchen,40.76021,-73.99197,Private room,69,30,0,,5,0 +36221,217251565,Manhattan,East Village,40.7237,-73.98514,Private room,125,1,25,2.68,1,68 +36222,217251106,Brooklyn,Williamsburg,40.71242,-73.95919,Private room,70,4,1,0.21,1,156 +36223,217268929,Manhattan,SoHo,40.724579999999996,-74.00312,Private room,100,3,3,0.33,1,363 +36224,204622039,Manhattan,East Village,40.72443,-73.98406,Entire home/apt,359,2,19,2.06,1,252 +36225,217290804,Bronx,Morris Park,40.856609999999996,-73.85280999999999,Shared room,40,1,2,0.23,1,88 +36226,217293060,Manhattan,Greenwich Village,40.73278,-73.99712,Entire home/apt,175,90,0,,4,311 +36227,42561290,Brooklyn,East New York,40.661970000000004,-73.86794,Private room,30,2,3,0.46,4,158 +36228,4915341,Manhattan,Greenwich Village,40.73596,-73.99614,Private room,120,30,3,0.37,3,119 +36229,21376165,Brooklyn,Flatbush,40.63867,-73.96571,Entire home/apt,95,6,1,0.12,1,0 +36230,18602194,Manhattan,East Village,40.72984,-73.98588000000001,Entire home/apt,125,3,2,0.27,1,45 +36231,217321404,Manhattan,West Village,40.73953,-74.0049,Entire home/apt,225,3,15,1.72,1,6 +36232,1029021,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93236,Private room,57,1,13,2.22,3,16 +36233,217332035,Brooklyn,Sheepshead Bay,40.59063,-73.94588,Private room,37,1,1,0.11,2,364 +36234,76610380,Manhattan,East Village,40.72925,-73.98459,Entire home/apt,150,3,12,1.26,1,0 +36235,205268444,Brooklyn,Bedford-Stuyvesant,40.69334,-73.93849,Private room,36,2,1,0.13,1,0 +36236,107516522,Queens,Woodside,40.74451,-73.91105999999999,Entire home/apt,115,2,34,3.72,1,81 +36237,130562125,Manhattan,SoHo,40.726079999999996,-74.00336,Entire home/apt,350,2,32,3.42,1,284 +36238,217379941,Queens,Springfield Gardens,40.66457,-73.76918,Entire home/apt,75,1,132,15.78,1,28 +36239,174263749,Manhattan,Washington Heights,40.843579999999996,-73.94051,Private room,155,4,0,,3,90 +36240,46641887,Manhattan,Upper East Side,40.76831,-73.95629,Private room,149,10,2,0.23,1,40 +36241,15148834,Manhattan,Chelsea,40.74413,-74.00004,Private room,90,3,4,0.43,1,0 +36242,115993835,Brooklyn,Sunset Park,40.63867,-74.00681,Private room,29,1,12,1.37,5,66 +36243,131976173,Brooklyn,Bedford-Stuyvesant,40.69012,-73.95433,Private room,200,1,73,7.99,3,65 +36244,40394752,Manhattan,SoHo,40.722770000000004,-74.00464000000001,Entire home/apt,275,5,6,0.71,2,9 +36245,217432173,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94354,Entire home/apt,130,2,48,5.12,1,267 +36246,217439132,Bronx,Edenwald,40.88805,-73.83248,Entire home/apt,90,15,0,,1,89 +36247,94395484,Manhattan,Morningside Heights,40.81511,-73.95998,Entire home/apt,140,2,6,0.66,1,0 +36248,50855262,Queens,Elmhurst,40.74688,-73.8817,Private room,45,7,4,0.46,3,21 +36249,174197082,Queens,Rosedale,40.65644,-73.72816999999999,Entire home/apt,80,1,9,1.79,2,116 +36250,153269305,Manhattan,Harlem,40.8087,-73.94335,Private room,110,30,3,0.33,1,90 +36251,73638523,Queens,Queens Village,40.72085,-73.7496,Entire home/apt,68,2,33,3.6,1,282 +36252,290055,Brooklyn,Bedford-Stuyvesant,40.68523,-73.93833000000001,Entire home/apt,275,3,43,4.54,1,123 +36253,65826607,Brooklyn,Downtown Brooklyn,40.69632,-73.98454,Entire home/apt,90,2,2,0.32,1,0 +36254,1228328,Brooklyn,Downtown Brooklyn,40.69769,-73.98385999999999,Entire home/apt,250,2,8,0.85,1,29 +36255,10321540,Queens,Bayswater,40.60845,-73.75861,Private room,60,1,9,1.13,1,84 +36256,217468746,Staten Island,Stapleton,40.62448,-74.08317,Entire home/apt,89,1,23,2.43,1,0 +36257,217111553,Manhattan,Chelsea,40.7467,-73.99335,Entire home/apt,288,3,44,4.78,1,48 +36258,21058022,Brooklyn,Williamsburg,40.70779,-73.94714,Private room,70,3,4,0.63,3,3 +36259,215683904,Manhattan,Hell's Kitchen,40.75768,-73.99417,Entire home/apt,159,30,0,,1,333 +36260,217484828,Bronx,East Morrisania,40.83285,-73.8879,Entire home/apt,60,1,22,2.4,1,279 +36261,93560404,Manhattan,Financial District,40.70417,-74.00928,Private room,100,1,31,3.35,1,195 +36262,216917414,Manhattan,Washington Heights,40.85157,-73.93936,Private room,60,2,16,1.75,2,0 +36263,23542079,Brooklyn,East Flatbush,40.64565,-73.93164,Entire home/apt,99,5,1,0.13,2,0 +36264,183127881,Brooklyn,Canarsie,40.646,-73.90189000000001,Private room,59,2,35,3.85,4,176 +36265,72513663,Queens,Sunnyside,40.74693,-73.92188,Private room,119,1,27,2.88,1,27 +36266,40529301,Brooklyn,Fort Greene,40.69617,-73.97456,Private room,89,1,24,3.09,2,72 +36267,107434423,Manhattan,East Village,40.72272,-73.98379,Entire home/apt,314,30,0,,232,330 +36268,47485031,Brooklyn,South Slope,40.66189,-73.97946,Private room,60,2,1,0.12,1,36 +36269,27108723,Manhattan,Washington Heights,40.84578,-73.93902,Entire home/apt,66,1,12,1.83,1,5 +36270,4722955,Manhattan,Financial District,40.70665,-74.01503000000001,Entire home/apt,175,30,1,0.16,1,54 +36271,140173,Brooklyn,Greenpoint,40.73498,-73.95805,Entire home/apt,150,3,7,0.8,1,0 +36272,93705483,Manhattan,West Village,40.731609999999996,-74.00171999999999,Entire home/apt,310,2,4,0.48,2,8 +36273,217591735,Brooklyn,Williamsburg,40.70664,-73.93978,Private room,70,2,4,0.45,1,0 +36274,8857758,Queens,Maspeth,40.72972,-73.89916,Entire home/apt,109,5,1,1.0,2,160 +36275,5330754,Manhattan,Financial District,40.70734,-74.00837,Entire home/apt,300,30,0,,1,310 +36276,217595343,Manhattan,East Harlem,40.80046,-73.94239,Shared room,65,1,2,2.0,2,64 +36277,138957777,Manhattan,East Harlem,40.80226,-73.93734,Private room,83,2,25,2.69,1,161 +36278,75972444,Manhattan,Harlem,40.80659,-73.95266,Private room,200,1,2,2.0,1,32 +36279,90294445,Brooklyn,Williamsburg,40.706720000000004,-73.94491,Private room,90,4,26,2.88,2,0 +36280,214347105,Manhattan,Midtown,40.75396,-73.96559,Entire home/apt,380,3,10,1.12,8,225 +36281,40394752,Manhattan,SoHo,40.72396,-74.00393000000001,Private room,175,5,1,0.11,2,0 +36282,217621677,Queens,Jamaica,40.68671,-73.7759,Entire home/apt,46,1,18,1.96,4,135 +36283,26880156,Brooklyn,Bushwick,40.70452,-73.92917,Private room,50,2,3,0.35,1,32 +36284,217642569,Brooklyn,Bedford-Stuyvesant,40.68456,-73.94962,Private room,200,2,5,0.57,3,64 +36285,65827591,Queens,Maspeth,40.73661,-73.90021,Private room,31,2,6,0.65,3,259 +36286,53357457,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.94800000000001,Private room,59,3,6,0.66,1,0 +36287,216734225,Manhattan,Harlem,40.81453,-73.94719,Entire home/apt,180,5,27,2.95,1,88 +36288,217648807,Bronx,Morris Heights,40.85324,-73.92143,Private room,240,1,0,,1,363 +36289,47564333,Queens,Flushing,40.75414,-73.81536,Private room,75,1,0,,1,365 +36290,19874189,Brooklyn,Williamsburg,40.71598,-73.943,Entire home/apt,160,4,6,0.69,1,10 +36291,75285802,Manhattan,East Harlem,40.78689,-73.945,Private room,72,5,21,2.23,2,165 +36292,10320429,Brooklyn,Bedford-Stuyvesant,40.69058,-73.94863000000001,Private room,72,2,37,3.94,1,18 +36293,202757964,Brooklyn,Williamsburg,40.71875,-73.96376,Entire home/apt,210,30,2,0.32,6,335 +36294,32164030,Bronx,Hunts Point,40.81377,-73.88933,Private room,40,30,3,0.36,6,321 +36295,3464645,Manhattan,Chelsea,40.747679999999995,-73.99965,Private room,175,2,0,,3,70 +36296,58131408,Brooklyn,Greenpoint,40.73372,-73.94227,Private room,180,4,0,,1,170 +36297,70922580,Manhattan,Harlem,40.81759,-73.93724,Private room,70,4,0,,1,0 +36298,184090548,Brooklyn,Williamsburg,40.7107,-73.95785,Private room,105,2,13,1.79,3,335 +36299,139879568,Queens,Long Island City,40.76463,-73.93878000000001,Private room,95,1,18,1.91,6,347 +36300,43825799,Manhattan,Midtown,40.758959999999995,-73.96251,Entire home/apt,235,2,37,4.19,1,135 +36301,181356989,Brooklyn,Brighton Beach,40.57646,-73.96641,Private room,69,2,8,0.9,2,4 +36302,217784241,Brooklyn,Williamsburg,40.7087,-73.95940999999999,Private room,70,1,67,7.18,4,5 +36303,55335435,Manhattan,Harlem,40.828340000000004,-73.94298,Entire home/apt,75,5,2,0.27,1,0 +36304,181810800,Manhattan,East Village,40.72699,-73.98548000000001,Private room,139,2,11,1.19,1,0 +36305,192270861,Manhattan,Harlem,40.81993,-73.94768,Private room,75,5,1,0.19,1,0 +36306,19303369,Queens,Jackson Heights,40.74909,-73.89538,Private room,41,29,1,0.15,37,1 +36307,217793924,Brooklyn,Crown Heights,40.672940000000004,-73.93655,Entire home/apt,120,3,33,3.61,1,73 +36308,19303369,Queens,Woodside,40.74258,-73.9031,Private room,55,30,2,0.32,37,1 +36309,196058543,Queens,Forest Hills,40.72081,-73.83821,Private room,88,2,37,4.04,5,210 +36310,196058543,Queens,Forest Hills,40.719840000000005,-73.83969,Private room,78,2,28,3.05,5,205 +36311,196058543,Queens,Forest Hills,40.72133,-73.83928,Private room,58,2,35,3.85,5,235 +36312,23354644,Manhattan,East Village,40.72957,-73.98723000000001,Private room,85,2,21,2.27,3,41 +36313,190921808,Manhattan,Hell's Kitchen,40.7543,-73.99696999999999,Private room,150,7,9,0.99,47,358 +36314,23188519,Brooklyn,Bedford-Stuyvesant,40.695240000000005,-73.95322,Private room,67,30,31,3.41,6,333 +36315,217621677,Queens,Jamaica,40.68627,-73.77633,Shared room,51,1,17,1.84,4,141 +36316,96379938,Brooklyn,East Flatbush,40.65358,-73.94965,Private room,99,4,13,1.41,2,48 +36317,51025844,Manhattan,Inwood,40.86697,-73.92534,Private room,99,1,3,0.4,3,365 +36318,204704622,Queens,Elmhurst,40.739020000000004,-73.87702,Private room,32,29,1,0.21,7,35 +36319,217621677,Queens,St. Albans,40.68806,-73.77573000000001,Private room,35,1,30,3.25,4,143 +36320,2065453,Brooklyn,Crown Heights,40.67618,-73.95607,Private room,75,2,6,0.69,3,12 +36321,171212377,Brooklyn,Fort Greene,40.688320000000004,-73.97731,Entire home/apt,175,3,38,4.15,1,122 +36322,209768607,Brooklyn,Bensonhurst,40.61135,-74.00827,Entire home/apt,62,23,0,,1,0 +36323,204704622,Queens,Elmhurst,40.74035,-73.87617,Private room,29,29,1,1.0,7,6 +36324,217909276,Brooklyn,Fort Greene,40.68631,-73.97497,Entire home/apt,150,8,4,0.5,1,0 +36325,10218689,Brooklyn,Crown Heights,40.67088,-73.95128000000001,Entire home/apt,90,4,26,2.85,1,0 +36326,205131610,Brooklyn,Canarsie,40.639790000000005,-73.90378,Private room,55,1,9,0.95,3,365 +36327,50756378,Staten Island,Clifton,40.61595,-74.08535,Shared room,150,2,2,0.22,7,312 +36328,217844544,Brooklyn,Bushwick,40.69454,-73.92612,Private room,90,2,54,5.79,2,118 +36329,153154549,Manhattan,Nolita,40.72135,-73.99426,Private room,140,3,2,0.22,1,0 +36330,52044518,Queens,East Elmhurst,40.76173,-73.87416999999999,Private room,65,1,58,6.19,1,47 +36331,70230403,Brooklyn,Bushwick,40.69677,-73.92688000000001,Private room,57,1,1,0.12,1,0 +36332,217621677,Queens,St. Albans,40.687540000000006,-73.77488000000001,Private room,50,1,16,1.78,4,137 +36333,191085997,Bronx,Pelham Bay,40.8546,-73.83026,Entire home/apt,299,2,1,0.58,3,1 +36334,191085997,Bronx,Pelham Bay,40.85413,-73.83065,Entire home/apt,125,2,7,0.99,3,301 +36335,40245658,Manhattan,Hell's Kitchen,40.7617,-73.98881999999999,Private room,85,2,34,4.47,3,103 +36336,41062475,Manhattan,Upper East Side,40.76035,-73.96045,Private room,80,4,11,1.3,1,156 +36337,10448306,Brooklyn,Williamsburg,40.718140000000005,-73.95517,Entire home/apt,180,2,4,0.43,1,0 +36338,27922078,Brooklyn,Crown Heights,40.675,-73.9422,Entire home/apt,65,3,7,0.77,1,0 +36339,96986507,Manhattan,Harlem,40.80702,-73.95334,Entire home/apt,270,2,12,1.34,1,365 +36340,49128620,Manhattan,Midtown,40.75359,-73.97305,Private room,175,2,2,0.22,1,1 +36341,40681070,Manhattan,Midtown,40.749520000000004,-73.97089,Entire home/apt,359,5,9,0.99,1,23 +36342,1158429,Brooklyn,Windsor Terrace,40.64968,-73.97325,Entire home/apt,100,29,2,0.22,1,59 +36343,217948247,Manhattan,Upper East Side,40.77707,-73.95154000000001,Entire home/apt,275,2,8,0.91,1,0 +36344,217836856,Manhattan,Chinatown,40.71795,-73.99708000000001,Private room,185,1,36,3.9,2,233 +36345,217965968,Manhattan,Financial District,40.70545,-74.0084,Private room,119,1,27,2.99,1,5 +36346,99956350,Bronx,Fordham,40.86777,-73.88396999999999,Private room,90,1,2,0.22,1,362 +36347,67552519,Manhattan,Little Italy,40.71894,-73.99759,Entire home/apt,160,2,44,5.64,2,275 +36348,35927005,Brooklyn,Borough Park,40.63535,-74.00589000000001,Private room,60,1,0,,10,0 +36349,4765119,Brooklyn,Bushwick,40.68782,-73.91071,Entire home/apt,149,20,4,0.55,1,165 +36350,35927005,Brooklyn,Borough Park,40.63445,-74.00524,Private room,57,1,1,0.27,10,365 +36351,217332035,Brooklyn,Sheepshead Bay,40.59055,-73.9464,Private room,39,1,1,0.12,2,360 +36352,35927005,Brooklyn,Borough Park,40.634479999999996,-74.00563000000001,Private room,50,1,2,0.24,10,365 +36353,35927005,Brooklyn,Borough Park,40.63586,-74.00596999999999,Private room,55,1,1,0.11,10,298 +36354,35927005,Brooklyn,Borough Park,40.63525,-74.00724,Private room,48,1,0,,10,365 +36355,215588687,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.9455,Shared room,30,2,5,0.55,6,365 +36356,35927005,Brooklyn,Borough Park,40.634159999999994,-74.00721999999999,Private room,50,2,0,,10,365 +36357,35927005,Brooklyn,Borough Park,40.635490000000004,-74.00699,Private room,45,2,3,0.37,10,365 +36358,35927005,Brooklyn,Borough Park,40.635220000000004,-74.00596,Shared room,35,1,0,,10,352 +36359,215588687,Brooklyn,Prospect-Lefferts Gardens,40.660759999999996,-73.94547,Shared room,30,2,5,0.55,6,352 +36360,145331404,Manhattan,Chelsea,40.74542,-74.00133000000001,Entire home/apt,195,5,21,2.42,1,17 +36361,215588687,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.94712,Private room,40,2,2,0.74,6,364 +36362,216772639,Brooklyn,Borough Park,40.63371,-74.00717,Private room,60,1,9,0.98,7,180 +36363,216772639,Brooklyn,Borough Park,40.633759999999995,-74.00698,Private room,60,1,9,1.0,7,177 +36364,215588687,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.94660999999999,Private room,35,2,1,0.11,6,364 +36365,217996544,Manhattan,Midtown,40.74407,-73.98385999999999,Entire home/apt,249,3,0,,2,179 +36366,218001383,Queens,Long Island City,40.75554,-73.92126999999999,Entire home/apt,120,2,36,4.14,1,48 +36367,43392243,Staten Island,Concord,40.59972,-74.07701,Private room,35,1,2,2.0,4,360 +36368,43392243,Staten Island,Concord,40.599340000000005,-74.07836,Private room,35,1,45,4.89,4,177 +36369,13027278,Manhattan,Hell's Kitchen,40.75927,-73.9939,Entire home/apt,151,7,3,0.33,1,0 +36370,60246968,Manhattan,East Village,40.722590000000004,-73.98472,Entire home/apt,478,1,6,0.71,1,5 +36371,56550302,Manhattan,Chinatown,40.7175,-73.99962,Private room,110,3,2,0.23,1,66 +36372,1810885,Manhattan,East Village,40.72522,-73.97785999999999,Private room,85,4,7,0.79,3,54 +36373,218090309,Manhattan,Upper East Side,40.76872,-73.95513000000001,Private room,250,3,22,2.55,1,0 +36374,198749990,Manhattan,Midtown,40.75378,-73.97156,Private room,350,2,0,,1,0 +36375,1429693,Brooklyn,Bushwick,40.708459999999995,-73.92088000000001,Private room,200,2,10,1.09,1,79 +36376,526744,Manhattan,Chinatown,40.71614,-73.99085,Entire home/apt,250,2,3,0.35,1,0 +36377,6531164,Brooklyn,Downtown Brooklyn,40.69712,-73.98401,Entire home/apt,285,1,1,0.16,1,6 +36378,218080780,Manhattan,Upper East Side,40.78478,-73.94967,Private room,200,1,20,2.25,1,313 +36379,720510,Brooklyn,Bushwick,40.702740000000006,-73.92598000000001,Entire home/apt,100,2,16,1.89,1,55 +36380,37957096,Manhattan,Harlem,40.82365,-73.93786,Entire home/apt,80,10,17,1.9,1,95 +36381,200239515,Queens,Woodside,40.74516,-73.89278,Private room,35,30,2,0.25,15,0 +36382,70636634,Brooklyn,Sunset Park,40.664609999999996,-73.99506,Entire home/apt,220,15,1,0.11,1,0 +36383,43027007,Manhattan,East Harlem,40.7949,-73.93627,Private room,57,1,26,2.82,1,344 +36384,217844544,Brooklyn,Bushwick,40.69404,-73.92432,Private room,70,3,45,4.93,2,146 +36385,211391055,Manhattan,Chelsea,40.74552,-74.00021,Entire home/apt,299,2,35,3.75,1,277 +36386,218140824,Manhattan,Harlem,40.807559999999995,-73.94855,Entire home/apt,145,60,1,0.16,1,227 +36387,2780938,Bronx,City Island,40.84802,-73.78963,Entire home/apt,84,2,31,3.38,1,166 +36388,40742174,Brooklyn,Williamsburg,40.70948,-73.95945999999999,Private room,70,5,1,0.14,1,0 +36389,130972997,Brooklyn,Crown Heights,40.67387,-73.93944,Private room,55,4,1,0.33,2,311 +36390,146339341,Brooklyn,Williamsburg,40.71172,-73.94556,Private room,99,1,3,0.33,1,0 +36391,8518665,Brooklyn,Bedford-Stuyvesant,40.69246,-73.95863,Private room,48,2,47,5.02,3,10 +36392,42226482,Bronx,Williamsbridge,40.87704,-73.86276,Entire home/apt,80,30,0,,1,0 +36393,8518665,Brooklyn,Bedford-Stuyvesant,40.69362,-73.95906,Private room,45,2,43,4.69,3,25 +36394,149292557,Queens,Jackson Heights,40.75137,-73.86081,Entire home/apt,69,2,52,5.63,2,137 +36395,8518665,Brooklyn,Bedford-Stuyvesant,40.69339,-73.95881,Private room,50,2,42,5.02,3,17 +36396,118442680,Brooklyn,Dyker Heights,40.6185,-74.00679000000001,Private room,150,7,5,0.79,1,149 +36397,130971031,Brooklyn,Bushwick,40.70355,-73.91803,Private room,73,3,1,0.11,4,0 +36398,43044876,Queens,Elmhurst,40.73655,-73.87762,Private room,40,29,2,0.55,5,32 +36399,218222410,Queens,Ozone Park,40.686890000000005,-73.84586999999999,Private room,60,1,0,,1,0 +36400,19899115,Brooklyn,Crown Heights,40.67759,-73.9523,Private room,50,2,6,0.69,2,0 +36401,91757655,Manhattan,Midtown,40.7656,-73.98,Private room,450,3,0,,1,339 +36402,195251910,Queens,Long Island City,40.762159999999994,-73.94109,Private room,100,1,2,0.32,1,1 +36403,57403189,Brooklyn,Crown Heights,40.67635,-73.94378,Entire home/apt,100,2,13,3.2,2,20 +36404,218219395,Brooklyn,Bushwick,40.70081,-73.91805,Entire home/apt,160,2,20,2.28,1,364 +36405,1633246,Brooklyn,Bedford-Stuyvesant,40.685629999999996,-73.92331,Entire home/apt,110,4,1,0.12,4,129 +36406,23397935,Manhattan,SoHo,40.72039,-73.99851,Private room,249,5,3,0.33,1,5 +36407,51947144,Manhattan,Lower East Side,40.71895,-73.98921999999999,Entire home/apt,150,3,8,0.92,1,0 +36408,9187405,Manhattan,Midtown,40.76488,-73.9806,Private room,150,2,5,0.57,1,0 +36409,93315723,Brooklyn,Brighton Beach,40.57795,-73.9616,Private room,50,2,27,3.18,1,71 +36410,176231758,Manhattan,Little Italy,40.71717,-73.99815,Entire home/apt,240,2,26,2.8,1,267 +36411,5085951,Brooklyn,Park Slope,40.67702,-73.97907,Private room,100,2,22,2.59,1,292 +36412,213781715,Queens,Long Island City,40.74029,-73.95926999999999,Private room,119,1,2,0.26,33,365 +36413,16851857,Bronx,Wakefield,40.89502,-73.85070999999999,Entire home/apt,75,7,3,0.63,4,242 +36414,218289083,Queens,Ozone Park,40.68334,-73.85837,Entire home/apt,90,7,2,0.22,1,90 +36415,218282660,Manhattan,Nolita,40.72162,-73.99549,Entire home/apt,399,5,29,3.16,1,76 +36416,218292717,Queens,Astoria,40.76267,-73.90555,Entire home/apt,149,2,35,3.89,1,362 +36417,70800114,Queens,Ditmars Steinway,40.7698,-73.91157,Private room,64,1,10,1.12,1,0 +36418,23188519,Brooklyn,Bedford-Stuyvesant,40.69634,-73.95375,Private room,68,30,17,1.93,6,242 +36419,51385941,Manhattan,Midtown,40.75417,-73.96437,Entire home/apt,250,3,21,2.32,1,80 +36420,23188519,Brooklyn,Bedford-Stuyvesant,40.69464,-73.95259,Private room,63,30,16,1.8,6,365 +36421,79913651,Manhattan,East Harlem,40.80608,-73.93718,Private room,56,1,20,2.19,4,129 +36422,218300937,Brooklyn,Clinton Hill,40.68313,-73.96741999999999,Entire home/apt,200,5,3,0.33,2,89 +36423,218301609,Queens,Hollis,40.70864,-73.76683,Private room,65,5,8,0.99,1,170 +36424,89742769,Manhattan,Lower East Side,40.72071,-73.98764,Entire home/apt,300,1,54,5.87,1,48 +36425,218311373,Bronx,Port Morris,40.808609999999994,-73.93015,Entire home/apt,100,1,25,2.81,1,39 +36426,22301628,Brooklyn,East New York,40.67454,-73.89652,Entire home/apt,120,2,15,1.66,1,0 +36427,47595754,Manhattan,Washington Heights,40.84577,-73.93731,Private room,70,7,11,1.3,1,356 +36428,216586866,Manhattan,Chelsea,40.74377,-73.99905,Entire home/apt,137,4,1,0.16,2,0 +36429,218319766,Brooklyn,Williamsburg,40.71741,-73.95656,Entire home/apt,275,2,45,5.04,1,249 +36430,216586866,Manhattan,Chelsea,40.744,-73.99721,Private room,65,3,12,1.43,2,30 +36431,1093167,Brooklyn,Crown Heights,40.68076,-73.96415,Entire home/apt,150,1,3,0.33,1,95 +36432,154737520,Brooklyn,Bedford-Stuyvesant,40.67937,-73.94493,Private room,40,27,0,,1,89 +36433,96479013,Brooklyn,Bedford-Stuyvesant,40.694759999999995,-73.94821,Private room,82,6,8,0.88,3,48 +36434,26633737,Brooklyn,Bushwick,40.69571,-73.91637,Private room,65,3,0,,1,3 +36435,142059543,Brooklyn,Williamsburg,40.71849,-73.94165,Private room,80,3,6,0.8,1,6 +36436,153809989,Bronx,Mount Eden,40.84084,-73.92178,Private room,48,2,0,,1,0 +36437,34125495,Brooklyn,Bushwick,40.68893,-73.90984,Private room,39,1,5,0.6,1,158 +36438,5144567,Manhattan,Civic Center,40.711929999999995,-74.00694,Private room,169,7,4,1.35,13,351 +36439,217642569,Brooklyn,Bedford-Stuyvesant,40.68591,-73.95044,Private room,150,2,6,0.75,3,33 +36440,2802223,Manhattan,Harlem,40.829209999999996,-73.93802,Entire home/apt,125,60,2,0.23,2,3 +36441,209298687,Brooklyn,Bedford-Stuyvesant,40.689370000000004,-73.94991999999999,Private room,65,30,13,1.45,4,357 +36442,218406956,Manhattan,Upper East Side,40.76892,-73.96321,Entire home/apt,160,2,14,1.79,1,170 +36443,113055692,Brooklyn,Clinton Hill,40.68349,-73.96153000000001,Entire home/apt,175,2,5,0.63,1,158 +36444,137194766,Queens,Ditmars Steinway,40.77145,-73.9125,Entire home/apt,150,3,37,4.1,2,7 +36445,218417996,Brooklyn,Fort Greene,40.689040000000006,-73.97269,Entire home/apt,210,4,20,2.32,1,268 +36446,43531190,Manhattan,East Harlem,40.79701,-73.93709,Private room,45,240,0,,1,280 +36447,34394667,Brooklyn,Bedford-Stuyvesant,40.677820000000004,-73.92326,Entire home/apt,125,3,15,4.33,1,175 +36448,211549023,Manhattan,Midtown,40.74822,-73.9873,Entire home/apt,240,2,14,1.95,13,279 +36449,54689007,Manhattan,Financial District,40.707,-74.00641999999999,Entire home/apt,185,2,0,,3,89 +36450,218428676,Manhattan,Washington Heights,40.83912,-73.94327,Private room,140,1,0,,1,363 +36451,20311036,Brooklyn,Bedford-Stuyvesant,40.68193,-73.93569000000001,Entire home/apt,150,3,11,1.25,1,105 +36452,7021189,Manhattan,Chelsea,40.74463,-73.9923,Entire home/apt,200,100,1,0.11,1,0 +36453,218450889,Brooklyn,Flatbush,40.63994,-73.9516,Private room,80,1,4,0.48,1,179 +36454,164719010,Queens,Whitestone,40.78073,-73.8193,Private room,39,1,44,4.93,3,89 +36455,218457745,Brooklyn,East Flatbush,40.650729999999996,-73.92738,Entire home/apt,135,4,9,1.07,1,365 +36456,218460622,Brooklyn,Williamsburg,40.70813,-73.94707,Private room,55,10,1,0.14,1,48 +36457,124743046,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9559,Entire home/apt,230,4,29,3.36,3,205 +36458,389924,Bronx,Morris Park,40.84605,-73.8493,Entire home/apt,39,5,0,,2,0 +36459,218474205,Manhattan,Nolita,40.721740000000004,-73.99559,Entire home/apt,175,2,22,2.52,1,24 +36460,140671636,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94896999999999,Private room,50,2,5,0.56,1,0 +36461,67987135,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93875,Entire home/apt,139,1,4,0.5,9,7 +36462,96864161,Brooklyn,Bushwick,40.68365,-73.90517,Entire home/apt,129,2,38,4.73,1,192 +36463,71314515,Brooklyn,Bedford-Stuyvesant,40.69303,-73.94183000000001,Private room,80,1,15,1.82,1,64 +36464,137358866,Queens,Astoria,40.766490000000005,-73.92266,Private room,46,30,0,,103,237 +36465,136010789,Brooklyn,Bushwick,40.694559999999996,-73.91965,Private room,44,30,1,0.13,2,9 +36466,218458746,Queens,Woodside,40.74592,-73.90889,Private room,100,1,4,0.43,1,0 +36467,3740621,Manhattan,Harlem,40.81664,-73.94266999999999,Private room,150,1,11,1.26,2,177 +36468,71157443,Brooklyn,Bushwick,40.6911,-73.90942,Private room,90,1,2,0.25,1,29 +36469,59982224,Brooklyn,East New York,40.67474,-73.87187,Entire home/apt,200,3,1,0.16,4,4 +36470,211638781,Bronx,Belmont,40.853359999999995,-73.88549,Private room,65,3,26,2.83,2,46 +36471,218505786,Manhattan,East Village,40.72352,-73.98277,Private room,100,2,11,1.21,1,0 +36472,10457196,Manhattan,Little Italy,40.71938,-73.99448000000001,Entire home/apt,130,30,1,0.19,11,332 +36473,218511630,Brooklyn,Williamsburg,40.71485,-73.95324000000001,Private room,75,1,13,1.41,3,0 +36474,162968562,Brooklyn,Gravesend,40.59147,-73.97565999999999,Private room,70,1,1,0.23,1,0 +36475,218511630,Brooklyn,Williamsburg,40.716409999999996,-73.95477,Private room,55,1,4,0.45,3,0 +36476,80093359,Brooklyn,Bushwick,40.68589,-73.91422,Private room,55,2,15,1.72,2,0 +36477,93948524,Manhattan,Hell's Kitchen,40.756029999999996,-73.99214,Entire home/apt,125,30,3,0.34,1,226 +36478,218526982,Manhattan,Lower East Side,40.72165,-73.98695,Entire home/apt,175,2,11,1.2,2,6 +36479,18264569,Manhattan,Chinatown,40.71447,-73.99736999999999,Private room,125,2,35,3.82,1,315 +36480,92706260,Queens,Flushing,40.76126,-73.81549,Private room,48,1,35,3.79,5,79 +36481,92706260,Queens,Flushing,40.762370000000004,-73.8157,Private room,48,1,39,4.21,5,84 +36482,172369331,Brooklyn,Sheepshead Bay,40.596579999999996,-73.95944,Shared room,50,7,6,0.7,10,311 +36483,67915061,Manhattan,Washington Heights,40.836929999999995,-73.93643,Entire home/apt,80,1,20,2.59,1,28 +36484,194107668,Queens,Glendale,40.70002,-73.89364,Private room,35,7,1,0.11,1,365 +36485,136025561,Manhattan,Little Italy,40.71824,-73.99795999999999,Private room,95,2,2,2.0,2,23 +36486,20328673,Manhattan,East Village,40.73199,-73.98857,Private room,90,3,1,0.16,1,5 +36487,14453908,Brooklyn,Williamsburg,40.70946,-73.94966,Entire home/apt,85,7,4,0.59,1,357 +36488,2180581,Brooklyn,South Slope,40.66656,-73.98204,Private room,85,2,18,1.99,2,0 +36489,82460872,Manhattan,Midtown,40.76412,-73.98017,Private room,425,4,0,,1,0 +36490,15528170,Brooklyn,Prospect Heights,40.67737,-73.97159,Private room,90,8,1,0.15,1,156 +36491,20990306,Brooklyn,Williamsburg,40.71345,-73.95,Entire home/apt,175,2,17,1.83,2,0 +36492,43194941,Queens,Astoria,40.763220000000004,-73.91131999999999,Private room,80,1,7,0.76,1,85 +36493,35594087,Brooklyn,Fort Greene,40.68515,-73.97381,Entire home/apt,134,2,15,1.91,1,41 +36494,177177772,Manhattan,Upper West Side,40.79639,-73.96889,Entire home/apt,150,2,8,0.9,1,0 +36495,24283455,Brooklyn,Gravesend,40.59075,-73.98359,Private room,40,2,10,1.11,2,0 +36496,8925493,Brooklyn,Bedford-Stuyvesant,40.682520000000004,-73.91165,Private room,55,3,1,0.16,2,89 +36497,1936796,Brooklyn,Williamsburg,40.71179,-73.9387,Private room,60,1,41,4.42,2,5 +36498,124069492,Brooklyn,Bushwick,40.702490000000004,-73.92557,Private room,74,1,26,2.9,2,34 +36499,393107,Brooklyn,Carroll Gardens,40.68035,-73.99611,Private room,69,5,4,0.45,1,0 +36500,218689235,Brooklyn,Williamsburg,40.71441,-73.95229,Entire home/apt,160,2,21,3.28,1,335 +36501,187975743,Manhattan,Hell's Kitchen,40.76249,-73.98807,Shared room,65,1,17,4.77,8,198 +36502,216641760,Queens,Jackson Heights,40.75281,-73.87654,Entire home/apt,128,3,33,4.01,1,325 +36503,218680572,Manhattan,Harlem,40.80879,-73.94813,Entire home/apt,250,28,7,1.02,1,183 +36504,155152907,Queens,St. Albans,40.70459,-73.76271,Private room,45,2,15,1.67,2,262 +36505,57699301,Brooklyn,Sunset Park,40.63902,-74.01836999999999,Entire home/apt,100,28,4,0.59,1,219 +36506,200461550,Brooklyn,Williamsburg,40.705740000000006,-73.92809,Private room,65,2,7,0.77,1,255 +36507,38153613,Queens,Briarwood,40.71047,-73.81562,Private room,350,4,1,0.11,1,90 +36508,218762580,Manhattan,Harlem,40.8258,-73.95392,Private room,120,3,3,0.36,1,295 +36509,218770781,Manhattan,Morningside Heights,40.81088,-73.95676999999999,Entire home/apt,135,2,4,0.53,1,22 +36510,42093468,Bronx,Mott Haven,40.81322,-73.91696,Private room,42,5,7,1.08,4,321 +36511,218793561,Manhattan,East Harlem,40.80771,-73.93853,Private room,66,1,21,2.63,1,64 +36512,6564232,Manhattan,Harlem,40.81723,-73.93616,Private room,80,2,3,0.34,1,0 +36513,203231204,Queens,Astoria,40.76538,-73.91168,Private room,105,1,2,0.23,1,359 +36514,9808458,Bronx,Kingsbridge,40.87072,-73.89974000000001,Private room,65,2,0,,4,364 +36515,145002203,Brooklyn,Brighton Beach,40.580009999999994,-73.96266,Entire home/apt,80,1,51,5.71,1,303 +36516,125576446,Brooklyn,Prospect Heights,40.67861,-73.96999,Entire home/apt,400,32,1,0.16,1,0 +36517,218825786,Brooklyn,Clinton Hill,40.688829999999996,-73.96141,Private room,55,3,2,0.31,1,0 +36518,215778245,Queens,Corona,40.73894,-73.86477,Shared room,40,2,10,1.19,6,356 +36519,147269347,Queens,Long Island City,40.75507,-73.91821999999999,Private room,70,1,2,2.0,1,342 +36520,96479013,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94679000000001,Private room,72,6,6,0.76,3,66 +36521,44260966,Bronx,Soundview,40.83144,-73.86639,Private room,38,2,11,1.29,3,188 +36522,216772639,Brooklyn,Borough Park,40.633759999999995,-74.00541,Private room,45,1,3,0.42,7,357 +36523,10732658,Queens,Ditmars Steinway,40.76976,-73.90314000000001,Private room,500,1,0,,1,89 +36524,218840878,Bronx,Mott Haven,40.81017,-73.92266,Private room,79,2,2,0.23,1,88 +36525,212697613,Manhattan,Upper West Side,40.78857,-73.97072,Entire home/apt,295,3,19,2.16,1,77 +36526,182306283,Brooklyn,Williamsburg,40.711929999999995,-73.95121999999999,Entire home/apt,120,2,40,4.88,1,13 +36527,6586697,Queens,Astoria,40.76696,-73.91108,Private room,55,1,4,0.45,3,0 +36528,32987584,Manhattan,Upper West Side,40.79574,-73.96191999999999,Private room,70,6,22,2.42,1,0 +36529,143052745,Bronx,Mott Haven,40.80958,-73.91895,Private room,120,1,29,3.15,4,312 +36530,27084741,Queens,Woodside,40.74459,-73.91167,Private room,90,1,2,0.77,2,173 +36531,218883687,Brooklyn,East Flatbush,40.639309999999995,-73.94451,Private room,125,1,7,0.76,2,364 +36532,10989161,Manhattan,Upper East Side,40.77513,-73.94977,Entire home/apt,135,1,20,2.74,1,1 +36533,335046,Manhattan,Lower East Side,40.71241,-73.98913,Private room,120,3,5,0.55,3,361 +36534,213781715,Brooklyn,Greenpoint,40.73079,-73.95193,Entire home/apt,350,1,1,0.12,33,0 +36535,63952962,Bronx,Mott Haven,40.81102,-73.92778,Entire home/apt,81,4,5,0.62,1,0 +36536,145981682,Manhattan,Theater District,40.75866,-73.98535,Entire home/apt,850,1,24,3.51,3,269 +36537,79499558,Queens,Jackson Heights,40.75346,-73.88396999999999,Private room,68,4,22,2.45,4,100 +36538,30895980,Brooklyn,Brighton Beach,40.57504,-73.95551,Entire home/apt,105,2,6,0.85,2,332 +36539,188741104,Manhattan,Harlem,40.80872,-73.94274,Entire home/apt,200,31,25,2.81,4,91 +36540,171214206,Manhattan,Morningside Heights,40.80445,-73.96373,Private room,75,1,29,3.33,3,8 +36541,155297713,Brooklyn,Bushwick,40.705290000000005,-73.92535,Private room,40,30,1,0.13,3,54 +36542,169467786,Brooklyn,Williamsburg,40.71001,-73.96101,Entire home/apt,215,1,5,2.21,1,165 +36543,8185593,Brooklyn,Williamsburg,40.709509999999995,-73.95443,Private room,80,3,1,0.12,1,8 +36544,1609077,Queens,Forest Hills,40.7111,-73.84099,Private room,150,2,1,0.16,3,365 +36545,447895,Manhattan,East Village,40.723,-73.97753,Entire home/apt,112,2,4,0.5,1,0 +36546,142833006,Brooklyn,Bushwick,40.706309999999995,-73.92064,Private room,42,2,2,0.26,1,0 +36547,218978124,Manhattan,Upper West Side,40.78127,-73.98366,Entire home/apt,80,3,10,1.51,1,0 +36548,10407935,Manhattan,SoHo,40.72725,-74.00245,Entire home/apt,89,1,45,4.93,8,34 +36549,215588687,Brooklyn,Prospect-Lefferts Gardens,40.66017,-73.9475,Shared room,25,2,4,0.53,6,365 +36550,177396569,Manhattan,Hell's Kitchen,40.76247,-73.99254,Entire home/apt,120,5,0,,3,40 +36551,183707967,Manhattan,Washington Heights,40.85277,-73.92916,Entire home/apt,120,2,16,1.8,4,365 +36552,28422641,Manhattan,Gramercy,40.73551,-73.98546,Entire home/apt,350,2,29,3.27,1,65 +36553,201813482,Brooklyn,Bushwick,40.706520000000005,-73.91784,Shared room,25,4,14,1.56,5,62 +36554,121836170,Brooklyn,Bushwick,40.702290000000005,-73.92223,Private room,85,1,40,4.62,1,354 +36555,201813482,Brooklyn,Bushwick,40.70431,-73.91584,Shared room,25,4,17,1.88,5,80 +36556,40544318,Manhattan,Battery Park City,40.71138,-74.01575,Entire home/apt,200,1,9,1.01,1,0 +36557,76114530,Manhattan,Hell's Kitchen,40.76177,-73.99426,Entire home/apt,575,6,0,,1,83 +36558,22123619,Brooklyn,Crown Heights,40.675,-73.91903,Private room,48,30,2,0.23,2,89 +36559,30782359,Manhattan,Greenwich Village,40.73069,-73.9932,Entire home/apt,350,2,5,0.59,1,0 +36560,219012245,Brooklyn,Canarsie,40.63655,-73.91065,Entire home/apt,78,1,10,2.17,1,3 +36561,219016824,Manhattan,Chelsea,40.75049,-73.99809,Entire home/apt,69,1,2,0.24,1,1 +36562,179387087,Brooklyn,Bedford-Stuyvesant,40.67941,-73.90849,Private room,55,4,11,1.2,3,0 +36563,31218019,Manhattan,Financial District,40.70538,-74.00742,Shared room,150,2,11,1.33,1,270 +36564,116381793,Manhattan,SoHo,40.72182,-73.99963000000001,Private room,134,1,3,0.36,1,70 +36565,164538104,Queens,Maspeth,40.740790000000004,-73.90057,Private room,42,1,1,0.11,1,178 +36566,219080539,Manhattan,Hell's Kitchen,40.76108,-73.99358000000001,Private room,100,1,15,1.74,1,27 +36567,49745989,Brooklyn,Crown Heights,40.67175,-73.9436,Entire home/apt,80,4,12,1.86,1,29 +36568,58658843,Brooklyn,Williamsburg,40.71168,-73.95626,Private room,67,1,15,1.65,3,0 +36569,58658843,Brooklyn,Williamsburg,40.70987,-73.95818,Private room,66,1,45,4.91,3,75 +36570,1104166,Brooklyn,Williamsburg,40.71164,-73.95173,Private room,95,2,7,0.77,4,3 +36571,1163709,Manhattan,Murray Hill,40.74836,-73.9807,Shared room,800,2,12,1.4,1,220 +36572,44129118,Manhattan,Financial District,40.7105,-74.00845,Entire home/apt,249,20,0,,2,0 +36573,48806776,Brooklyn,Carroll Gardens,40.68132,-73.99169,Entire home/apt,175,2,14,2.05,1,119 +36574,8597272,Manhattan,Hell's Kitchen,40.764790000000005,-73.98831,Entire home/apt,200,5,2,0.23,1,15 +36575,210755291,Queens,Astoria,40.761720000000004,-73.92098,Private room,100,3,2,0.94,1,364 +36576,94214493,Brooklyn,East Flatbush,40.65554,-73.9184,Private room,70,7,0,,9,365 +36577,190324721,Queens,Flushing,40.75914,-73.83352,Private room,70,1,5,0.82,4,5 +36578,48954003,Bronx,Olinville,40.88453,-73.86273,Private room,80,2,20,2.2,1,188 +36579,216065402,Queens,College Point,40.79439,-73.84675,Private room,60,2,19,2.11,1,331 +36580,24103915,Brooklyn,Flatbush,40.63517,-73.96221,Entire home/apt,89,1,22,2.48,1,35 +36581,94214493,Brooklyn,East Flatbush,40.654540000000004,-73.91885,Private room,90,7,1,0.79,9,365 +36582,158407820,Queens,Woodside,40.753679999999996,-73.90216,Private room,53,2,33,3.67,5,157 +36583,153500245,Brooklyn,Bedford-Stuyvesant,40.67872,-73.90966999999999,Private room,90,1,51,5.56,2,224 +36584,219167320,Queens,Queens Village,40.71059,-73.74515,Entire home/apt,60,3,25,3.16,1,143 +36585,8119708,Brooklyn,Midwood,40.62795,-73.96281,Entire home/apt,125,3,6,0.71,3,173 +36586,104351616,Brooklyn,Bushwick,40.70166,-73.93061999999999,Private room,50,5,0,,1,0 +36587,26860800,Manhattan,SoHo,40.72614,-74.00076,Private room,115,1,31,3.39,1,1 +36588,21339635,Manhattan,Upper West Side,40.77708,-73.98791,Entire home/apt,138,3,24,2.69,1,1 +36589,41939513,Manhattan,Harlem,40.79913,-73.95357,Private room,120,5,3,0.38,1,0 +36590,219262205,Queens,Jamaica,40.70094,-73.81446,Private room,60,1,37,4.17,1,0 +36591,10220753,Brooklyn,Sunset Park,40.65209,-74.01136,Private room,112,1,10,1.15,2,0 +36592,24738407,Brooklyn,East Flatbush,40.638529999999996,-73.94869,Entire home/apt,140,3,33,4.01,2,116 +36593,24230637,Manhattan,Upper East Side,40.77003,-73.95018,Entire home/apt,199,20,0,,1,337 +36594,56177749,Queens,Woodside,40.74218,-73.90403,Private room,31,1,1,0.11,1,0 +36595,5953382,Brooklyn,Bedford-Stuyvesant,40.691959999999995,-73.95969000000001,Entire home/apt,100,3,5,0.57,1,0 +36596,202587815,Manhattan,East Harlem,40.79006,-73.94969,Private room,120,2,27,3.29,2,188 +36597,213781715,Manhattan,NoHo,40.729040000000005,-73.99344,Entire home/apt,225,1,2,0.24,33,179 +36598,11854642,Manhattan,West Village,40.73255,-74.00173000000001,Entire home/apt,157,5,1,0.13,1,0 +36599,157397904,Brooklyn,Williamsburg,40.71705,-73.96545,Entire home/apt,275,30,2,0.68,1,77 +36600,219305025,Brooklyn,Cypress Hills,40.67855,-73.86961,Private room,80,1,3,0.42,1,1 +36601,22175061,Queens,Forest Hills,40.72096,-73.8539,Entire home/apt,99,2,44,4.94,2,35 +36602,161873557,Brooklyn,Bedford-Stuyvesant,40.69898,-73.94705,Entire home/apt,85,3,34,4.36,1,42 +36603,219330285,Bronx,Wakefield,40.89385,-73.8448,Entire home/apt,80,3,6,0.71,1,0 +36604,219333557,Queens,East Elmhurst,40.76274,-73.86865999999999,Private room,79,1,8,1.26,7,96 +36605,14953075,Manhattan,Harlem,40.81562,-73.94712,Entire home/apt,150,5,3,0.38,1,0 +36606,218300830,Manhattan,Upper East Side,40.77345,-73.95385999999999,Private room,100,1,76,9.58,2,281 +36607,59204717,Brooklyn,Bedford-Stuyvesant,40.691559999999996,-73.95307,Private room,87,2,3,0.35,1,0 +36608,219347424,Brooklyn,East New York,40.66737,-73.87550999999999,Private room,150,2,1,0.14,2,354 +36609,218300830,Manhattan,Upper East Side,40.77375,-73.9541,Private room,100,1,59,7.31,2,257 +36610,16965783,Manhattan,Harlem,40.82452,-73.94426999999999,Private room,56,3,17,2.63,1,228 +36611,90996947,Brooklyn,Prospect-Lefferts Gardens,40.662259999999996,-73.94855,Private room,70,2,4,0.46,1,321 +36612,24738407,Brooklyn,East Flatbush,40.63905,-73.95045999999999,Entire home/apt,120,3,23,2.79,2,121 +36613,19739986,Manhattan,Upper East Side,40.767309999999995,-73.95843,Entire home/apt,155,1,50,5.75,1,8 +36614,115734913,Bronx,Fordham,40.85791,-73.89528,Private room,39,2,24,2.73,1,211 +36615,46337258,Brooklyn,Clinton Hill,40.69416,-73.96866,Entire home/apt,200,3,2,0.22,1,16 +36616,67186748,Manhattan,Hell's Kitchen,40.76129,-73.9943,Private room,250,1,4,0.44,1,365 +36617,219383069,Manhattan,Financial District,40.70494,-74.00964,Entire home/apt,220,1,8,0.89,1,0 +36618,24405003,Manhattan,Chinatown,40.7147,-73.99279,Private room,106,2,9,1.12,3,117 +36619,15872352,Queens,Rego Park,40.73095,-73.86411,Shared room,40,1,25,2.9,2,78 +36620,165607672,Bronx,Fordham,40.85765,-73.90351,Private room,48,2,18,2.0,2,34 +36621,56648414,Manhattan,East Village,40.72759,-73.98786,Entire home/apt,125,1,11,1.26,1,0 +36622,2604247,Brooklyn,Bushwick,40.70426,-73.91308000000001,Entire home/apt,150,5,1,0.13,1,0 +36623,113411637,Brooklyn,Williamsburg,40.71954,-73.94329,Private room,68,2,5,0.61,1,4 +36624,219465297,Queens,Jackson Heights,40.754909999999995,-73.88313000000001,Private room,49,2,10,1.15,1,5 +36625,12171344,Brooklyn,Crown Heights,40.66506,-73.95177,Entire home/apt,185,2,6,0.79,2,2 +36626,20825054,Manhattan,Inwood,40.86565,-73.92348,Private room,50,2,44,4.85,1,271 +36627,52083976,Manhattan,Murray Hill,40.744659999999996,-73.9737,Entire home/apt,140,1,0,,1,0 +36628,199786012,Brooklyn,Bedford-Stuyvesant,40.69558,-73.94697,Private room,65,30,21,2.31,3,365 +36629,5759665,Brooklyn,Bushwick,40.70752,-73.92217,Entire home/apt,120,2,9,1.03,1,0 +36630,218936218,Manhattan,Financial District,40.71148,-74.01283000000001,Entire home/apt,230,3,8,0.95,1,23 +36631,219499219,Brooklyn,Bedford-Stuyvesant,40.69167,-73.94800000000001,Private room,60,1,7,0.78,2,28 +36632,219499104,Brooklyn,Flatbush,40.6355,-73.95205,Private room,60,1,12,1.34,1,90 +36633,96737879,Brooklyn,Williamsburg,40.702659999999995,-73.93413000000001,Private room,60,3,12,2.55,3,73 +36634,217784241,Brooklyn,Williamsburg,40.70964,-73.95969000000001,Private room,60,1,81,8.97,4,0 +36635,28531618,Manhattan,Upper West Side,40.77169,-73.99117,Shared room,79,3,4,0.5,1,76 +36636,66361,Manhattan,Upper West Side,40.79566,-73.96954000000001,Entire home/apt,275,2,8,0.99,1,24 +36637,960248,Manhattan,East Harlem,40.79511,-73.9373,Entire home/apt,220,3,21,4.04,1,24 +36638,161057073,Manhattan,Kips Bay,40.73945,-73.98168000000001,Entire home/apt,95,2,39,4.33,4,74 +36639,22474793,Brooklyn,Kensington,40.64046,-73.97233,Entire home/apt,130,1,2,1.28,1,95 +36640,216944902,Manhattan,East Harlem,40.79055,-73.94866999999999,Private room,85,1,6,0.67,1,0 +36641,183748836,Manhattan,Midtown,40.75829,-73.97259,Private room,120,1,44,4.91,1,4 +36642,895135,Brooklyn,Williamsburg,40.70717,-73.94622,Entire home/apt,95,3,7,0.93,3,363 +36643,163046191,Brooklyn,Fort Greene,40.68257,-73.97139,Private room,45,30,1,0.61,2,77 +36644,219333557,Queens,East Elmhurst,40.76294,-73.86883,Private room,49,1,17,1.9,7,0 +36645,83907534,Manhattan,Kips Bay,40.74228,-73.97601,Entire home/apt,175,7,5,0.66,1,32 +36646,121130063,Brooklyn,Bushwick,40.70428,-73.92702,Private room,70,2,2,2.0,3,358 +36647,72006801,Queens,Ridgewood,40.70208,-73.91125,Entire home/apt,120,2,2,0.24,1,5 +36648,219544415,Brooklyn,Bedford-Stuyvesant,40.69232,-73.94966,Private room,70,2,14,1.65,3,365 +36649,219333557,Queens,East Elmhurst,40.76251,-73.86765,Private room,59,1,17,1.9,7,0 +36650,219548329,Queens,East Elmhurst,40.769709999999996,-73.87273,Entire home/apt,99,1,34,3.76,1,166 +36651,219548549,Brooklyn,Bushwick,40.69272,-73.92067,Private room,155,1,1,0.11,2,365 +36652,217075214,Brooklyn,Canarsie,40.64116,-73.88346,Entire home/apt,125,3,3,0.43,1,85 +36653,32830245,Brooklyn,Prospect Heights,40.68063,-73.97334000000001,Entire home/apt,180,2,9,1.01,1,0 +36654,219099148,Queens,Ridgewood,40.70605,-73.90374,Private room,50,1,14,1.7,1,272 +36655,219558480,Manhattan,East Village,40.72876,-73.98655,Entire home/apt,187,7,4,0.47,1,56 +36656,87786261,Brooklyn,South Slope,40.66238,-73.98742,Entire home/apt,179,2,9,1.03,5,152 +36657,200380610,Manhattan,Battery Park City,40.705870000000004,-74.01773,Entire home/apt,433,180,0,,65,364 +36658,214270886,Manhattan,Midtown,40.75138,-73.98143,Entire home/apt,300,1,10,1.15,1,0 +36659,28260018,Queens,Ditmars Steinway,40.77612,-73.90456,Private room,96,1,63,7.08,1,80 +36660,73425483,Brooklyn,Bedford-Stuyvesant,40.69263,-73.93992,Private room,75,2,22,2.45,6,308 +36661,3959013,Brooklyn,Brooklyn Heights,40.69228,-73.99768,Entire home/apt,151,5,4,0.63,1,27 +36662,61391963,Manhattan,Little Italy,40.71881,-73.99675,Entire home/apt,165,30,2,0.33,91,347 +36663,61391963,Manhattan,Kips Bay,40.74472,-73.97932,Entire home/apt,125,30,1,1.0,91,352 +36664,200380610,Manhattan,Gramercy,40.73261,-73.98398,Entire home/apt,180,30,0,,65,364 +36665,21030441,Queens,Astoria,40.768359999999994,-73.91506,Private room,87,2,20,3.24,1,282 +36666,7795299,Manhattan,Gramercy,40.73254,-73.98207,Private room,100,3,8,1.0,1,13 +36667,7912469,Brooklyn,Williamsburg,40.70695,-73.94913000000001,Private room,50,2,3,0.34,1,0 +36668,200380610,Manhattan,Upper West Side,40.7854,-73.97532,Entire home/apt,215,30,0,,65,365 +36669,219666829,Queens,Bay Terrace,40.779709999999994,-73.77857,Shared room,32,2,6,0.95,1,169 +36670,219669515,Brooklyn,Bushwick,40.70328,-73.92005999999999,Private room,50,2,6,5.62,1,10 +36671,219347424,Brooklyn,East New York,40.66788,-73.87339,Entire home/apt,150,2,6,0.69,2,171 +36672,201813482,Brooklyn,Bushwick,40.70442,-73.91707,Shared room,25,4,27,3.01,5,49 +36673,9770822,Brooklyn,Williamsburg,40.71233,-73.93781,Private room,55,3,13,1.55,1,36 +36674,219678120,Brooklyn,Crown Heights,40.67419,-73.92173000000001,Entire home/apt,200,3,21,2.79,1,327 +36675,17604711,Brooklyn,Downtown Brooklyn,40.6904,-73.98501999999999,Entire home/apt,135,9,5,0.62,1,12 +36676,11823440,Brooklyn,Bedford-Stuyvesant,40.683640000000004,-73.92305999999999,Entire home/apt,129,3,42,4.81,1,233 +36677,219462780,Manhattan,Harlem,40.827459999999995,-73.94718,Private room,60,2,1,0.14,1,83 +36678,95921282,Queens,Richmond Hill,40.68308,-73.81649,Entire home/apt,165,2,29,3.23,1,362 +36679,181885938,Queens,Elmhurst,40.73288,-73.87177,Private room,55,2,8,0.9,2,315 +36680,219717193,Manhattan,Gramercy,40.73288,-73.98250999999999,Private room,59,5,18,2.01,2,5 +36681,92706260,Queens,Flushing,40.76126,-73.81443,Private room,45,1,58,6.42,5,75 +36682,219725282,Brooklyn,Sunset Park,40.660509999999995,-73.99081,Entire home/apt,400,2,3,0.4,1,0 +36683,219727469,Brooklyn,Bedford-Stuyvesant,40.67737,-73.90935,Private room,75,1,43,4.8,4,52 +36684,41209536,Brooklyn,Bedford-Stuyvesant,40.69732,-73.93684,Entire home/apt,125,3,19,2.27,1,225 +36685,155297713,Brooklyn,Bushwick,40.70531,-73.92591999999999,Private room,39,30,1,0.77,3,38 +36686,219738858,Manhattan,Lower East Side,40.72074,-73.98487,Entire home/apt,195,30,21,2.43,5,117 +36687,112794720,Brooklyn,Carroll Gardens,40.683859999999996,-73.99807,Entire home/apt,125,1,1,0.65,1,34 +36688,219746152,Manhattan,Washington Heights,40.83788,-73.9402,Private room,60,3,8,1.15,1,2 +36689,51699123,Brooklyn,Bushwick,40.69854,-73.91086,Private room,70,2,29,4.73,2,121 +36690,219333557,Queens,East Elmhurst,40.76236,-73.86861999999999,Entire home/apt,149,1,40,5.0,7,0 +36691,52484523,Brooklyn,Bushwick,40.70247,-73.91409,Private room,100,3,4,0.59,1,0 +36692,217792112,Manhattan,Chelsea,40.74889,-74.00131999999999,Entire home/apt,320,3,40,4.53,1,95 +36693,219782181,Manhattan,Lower East Side,40.715,-73.98595999999999,Private room,80,1,22,2.54,3,123 +36694,219785279,Brooklyn,Bedford-Stuyvesant,40.681309999999996,-73.95254,Private room,79,2,18,2.1,1,74 +36695,203123161,Bronx,Concourse,40.82132,-73.92884000000001,Entire home/apt,100,3,24,3.44,2,187 +36696,26377263,Brooklyn,East Flatbush,40.65385,-73.93656999999999,Private room,53,19,0,,43,347 +36697,26377263,Brooklyn,East Flatbush,40.65405,-73.93656999999999,Private room,53,30,0,,43,311 +36698,137358866,Brooklyn,Bushwick,40.692479999999996,-73.91189,Private room,43,30,0,,103,157 +36699,103368847,Manhattan,Upper West Side,40.785790000000006,-73.97148,Entire home/apt,150,2,25,4.36,1,129 +36700,62167677,Manhattan,East Village,40.72784,-73.98473,Private room,60,8,1,0.29,2,0 +36701,122551862,Brooklyn,Bedford-Stuyvesant,40.68605,-73.94528000000001,Private room,41,2,18,2.23,2,18 +36702,159435936,Manhattan,Upper West Side,40.78833,-73.97182,Entire home/apt,85,30,2,0.44,3,118 +36703,219848970,Manhattan,Hell's Kitchen,40.762190000000004,-73.99493000000001,Shared room,69,1,30,3.4,2,335 +36704,31760835,Brooklyn,Bay Ridge,40.6339,-74.03049,Private room,65,1,10,1.13,4,4 +36705,31760835,Brooklyn,Bay Ridge,40.635040000000004,-74.0289,Private room,65,1,7,0.78,4,189 +36706,31760835,Brooklyn,Bay Ridge,40.63409,-74.02887,Private room,65,1,8,0.92,4,98 +36707,211146044,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9404,Private room,60,2,29,3.95,3,292 +36708,211146044,Brooklyn,Bedford-Stuyvesant,40.69342,-73.93884,Private room,58,2,0,,3,317 +36709,219879114,Manhattan,Harlem,40.811820000000004,-73.94331,Entire home/apt,159,2,26,3.05,1,343 +36710,41541593,Manhattan,Upper West Side,40.80324,-73.96555,Private room,70,10,4,0.49,1,19 +36711,37736307,Manhattan,East Harlem,40.78731,-73.94889,Private room,110,2,8,0.95,2,14 +36712,145981682,Manhattan,Theater District,40.75982,-73.98418000000001,Private room,999,1,12,1.4,3,213 +36713,186349150,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95405,Private room,75,1,3,0.34,1,0 +36714,35957140,Manhattan,East Village,40.729409999999994,-73.98094,Entire home/apt,150,4,9,1.12,1,0 +36715,46589590,Manhattan,East Village,40.72449,-73.98384,Entire home/apt,114,14,0,,1,19 +36716,119669058,Brooklyn,Bedford-Stuyvesant,40.6929,-73.95513000000001,Private room,49,2,15,1.7,34,306 +36717,54677106,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94084000000001,Private room,41,1,6,0.66,2,0 +36718,54677106,Brooklyn,Bedford-Stuyvesant,40.67825,-73.94068,Entire home/apt,175,2,1,0.12,2,0 +36719,119669058,Brooklyn,Bedford-Stuyvesant,40.69228,-73.95676999999999,Private room,49,2,12,1.35,34,305 +36720,116976293,Manhattan,Little Italy,40.71865,-73.99847,Entire home/apt,225,3,0,,2,0 +36721,119669058,Brooklyn,Bedford-Stuyvesant,40.694359999999996,-73.95526,Private room,65,2,11,1.31,34,282 +36722,119669058,Brooklyn,Bedford-Stuyvesant,40.692609999999995,-73.95706,Private room,49,2,10,1.14,34,313 +36723,119669058,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95528,Private room,49,2,9,1.02,34,312 +36724,119669058,Brooklyn,Bedford-Stuyvesant,40.693659999999994,-73.95563,Private room,65,2,7,0.8,34,285 +36725,119669058,Brooklyn,Bedford-Stuyvesant,40.69263,-73.95583,Private room,49,2,9,1.02,34,308 +36726,492457,Queens,Woodside,40.74364,-73.90222,Private room,50,2,14,1.57,1,308 +36727,89680730,Brooklyn,Brownsville,40.663990000000005,-73.91913000000001,Private room,45,1,16,6.86,1,139 +36728,17892150,Manhattan,Harlem,40.81295,-73.95304,Private room,60,3,35,4.1,1,5 +36729,25767215,Brooklyn,Crown Heights,40.67792,-73.9484,Private room,99,1,9,1.18,1,249 +36730,213781715,Manhattan,NoHo,40.728390000000005,-73.99225,Entire home/apt,225,1,8,1.62,33,179 +36731,8053333,Manhattan,Chinatown,40.717220000000005,-73.99242,Entire home/apt,105,2,15,1.67,1,160 +36732,219924114,Brooklyn,Bushwick,40.6954,-73.92723000000001,Entire home/apt,115,3,38,4.4,1,131 +36733,105506002,Brooklyn,Williamsburg,40.7126,-73.93982,Private room,44,30,1,1.0,1,84 +36734,172986033,Brooklyn,Bensonhurst,40.61023,-73.99627,Private room,39,1,0,,1,0 +36735,29104701,Manhattan,Harlem,40.80055,-73.95501,Entire home/apt,150,3,16,2.22,1,50 +36736,219981147,Manhattan,Upper East Side,40.76869,-73.95007,Private room,150,2,8,0.92,1,0 +36737,42735733,Brooklyn,Crown Heights,40.663920000000005,-73.95994,Entire home/apt,110,1,52,5.98,1,81 +36738,8917825,Brooklyn,Greenpoint,40.720040000000004,-73.95424,Entire home/apt,199,2,11,1.49,1,0 +36739,3849025,Brooklyn,Bedford-Stuyvesant,40.693909999999995,-73.94351999999999,Entire home/apt,180,5,18,2.18,1,106 +36740,217970334,Bronx,Norwood,40.87448,-73.87411999999999,Entire home/apt,200,1,13,6.61,1,0 +36741,220055820,Manhattan,Harlem,40.824940000000005,-73.9428,Private room,80,2,15,1.73,1,143 +36742,219782181,Manhattan,Lower East Side,40.71451,-73.98789000000001,Private room,78,1,22,2.53,3,91 +36743,732460,Brooklyn,Williamsburg,40.70876,-73.96592,Entire home/apt,120,29,0,,7,0 +36744,220060177,Brooklyn,Bushwick,40.69471,-73.90687,Private room,75,3,6,0.74,2,365 +36745,214611101,Brooklyn,Kensington,40.638000000000005,-73.97652,Private room,50,30,1,0.14,4,130 +36746,200182757,Brooklyn,Bushwick,40.706959999999995,-73.9199,Private room,50,2,31,3.86,2,273 +36747,1613244,Manhattan,Lower East Side,40.72143,-73.9931,Entire home/apt,170,30,0,,9,336 +36748,214611101,Brooklyn,Kensington,40.63765,-73.97711,Private room,45,30,2,0.26,4,42 +36749,28823649,Manhattan,SoHo,40.72405,-74.00073,Entire home/apt,194,1,0,,3,89 +36750,164719010,Queens,Whitestone,40.78029,-73.8184,Private room,49,1,50,5.58,3,87 +36751,214611101,Brooklyn,Kensington,40.63678,-73.97625,Private room,40,30,1,1.0,4,120 +36752,164719010,Queens,Whitestone,40.77945,-73.82029,Private room,35,1,35,3.87,3,86 +36753,7956889,Brooklyn,Bushwick,40.68864,-73.91295,Entire home/apt,86,28,3,0.43,1,66 +36754,7638924,Brooklyn,Bushwick,40.70466,-73.9177,Entire home/apt,130,4,0,,1,0 +36755,220121415,Brooklyn,Williamsburg,40.7075,-73.96576,Entire home/apt,96,3,22,2.59,1,58 +36756,217996544,Manhattan,Kips Bay,40.74139,-73.98132,Entire home/apt,199,30,0,,2,365 +36757,219502160,Queens,Ozone Park,40.68005,-73.85552,Entire home/apt,150,5,3,0.35,1,317 +36758,1303899,Brooklyn,Clinton Hill,40.68933,-73.96082,Private room,45,3,1,0.11,1,189 +36759,66473223,Brooklyn,Greenpoint,40.73324,-73.95331999999999,Entire home/apt,110,3,1,0.79,1,0 +36760,23703328,Queens,Kew Gardens,40.71163,-73.82751999999999,Private room,59,1,24,2.76,1,32 +36761,220129825,Queens,Jamaica,40.673790000000004,-73.78187,Entire home/apt,150,1,75,9.3,2,69 +36762,29285454,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94318,Private room,55,5,2,0.3,1,297 +36763,30811338,Brooklyn,Bedford-Stuyvesant,40.6919,-73.93866,Entire home/apt,89,2,18,2.1,1,209 +36764,49421712,Brooklyn,Prospect-Lefferts Gardens,40.65945,-73.96145,Private room,55,1,32,3.81,1,0 +36765,220149091,Brooklyn,Bedford-Stuyvesant,40.69441,-73.94848,Private room,65,2,14,1.85,4,365 +36766,171214206,Manhattan,Morningside Heights,40.80303,-73.96336,Private room,80,1,48,5.54,3,7 +36767,171214206,Manhattan,Morningside Heights,40.80423,-73.96334,Private room,75,1,23,2.74,3,8 +36768,213251818,Brooklyn,Brownsville,40.66835,-73.92335,Entire home/apt,90,3,26,3.17,1,138 +36769,68284975,Brooklyn,Bushwick,40.69375,-73.92496,Private room,66,2,8,0.97,2,90 +36770,107434423,Manhattan,Hell's Kitchen,40.76125,-73.99546,Entire home/apt,264,30,1,0.17,232,187 +36771,107434423,Manhattan,Upper West Side,40.788920000000005,-73.97402,Entire home/apt,244,30,1,0.19,232,218 +36772,213781715,Brooklyn,Greenpoint,40.733000000000004,-73.95309,Private room,119,1,0,,33,180 +36773,213781715,Manhattan,NoHo,40.728390000000005,-73.99133,Entire home/apt,225,1,3,0.35,33,179 +36774,220197047,Manhattan,East Harlem,40.80173,-73.94516999999999,Entire home/apt,280,30,32,3.69,1,112 +36775,213781715,Manhattan,NoHo,40.7287,-73.99184,Entire home/apt,225,1,0,,33,364 +36776,219738858,Manhattan,Stuyvesant Town,40.730920000000005,-73.98146,Entire home/apt,200,30,16,2.47,5,164 +36777,335046,Manhattan,Lower East Side,40.712709999999994,-73.99084,Private room,150,3,9,1.11,3,219 +36778,42153340,Brooklyn,Greenpoint,40.72291,-73.9487,Entire home/apt,122,2,38,4.44,2,211 +36779,7556128,Manhattan,East Village,40.72762,-73.98118000000001,Private room,150,7,2,0.23,2,45 +36780,194031970,Manhattan,Hell's Kitchen,40.76437,-73.98775,Shared room,100,1,1,0.21,3,212 +36781,167636238,Brooklyn,Cypress Hills,40.68205,-73.8822,Private room,62,2,1,0.15,3,179 +36782,7556128,Manhattan,East Village,40.72789,-73.98236,Entire home/apt,240,2,12,1.51,2,0 +36783,3659719,Brooklyn,Bushwick,40.70644,-73.9193,Private room,46,2,28,3.22,1,23 +36784,146449899,Queens,Flushing,40.74538,-73.83489,Private room,49,1,57,6.71,2,143 +36785,41083526,Queens,Sunnyside,40.745290000000004,-73.92175999999999,Shared room,50,1,9,1.03,2,0 +36786,220232423,Brooklyn,Bay Ridge,40.63432,-74.02663000000001,Entire home/apt,119,1,32,3.6,1,276 +36787,1713685,Brooklyn,Williamsburg,40.71295,-73.9628,Entire home/apt,125,1,11,1.3,1,39 +36788,220242803,Brooklyn,Park Slope,40.680859999999996,-73.98002,Entire home/apt,140,3,23,3.15,1,285 +36789,213781715,Manhattan,NoHo,40.72858,-73.99141,Entire home/apt,179,1,4,0.47,33,179 +36790,8354383,Manhattan,West Village,40.737559999999995,-74.00755,Entire home/apt,600,5,7,0.84,1,210 +36791,24074596,Manhattan,East Village,40.730309999999996,-73.98018,Entire home/apt,145,3,7,0.91,1,4 +36792,24000784,Brooklyn,Sunset Park,40.64513,-74.01279,Private room,45,1,5,0.57,4,32 +36793,219930693,Queens,Woodhaven,40.69034,-73.86268000000001,Private room,90,2,9,1.03,2,180 +36794,171630463,Brooklyn,Greenpoint,40.73812,-73.95649,Entire home/apt,150,3,4,0.47,1,0 +36795,146224146,Manhattan,Upper East Side,40.760059999999996,-73.96136,Entire home/apt,135,3,8,0.89,1,0 +36796,6701152,Brooklyn,Bedford-Stuyvesant,40.689820000000005,-73.95818,Entire home/apt,135,3,18,2.19,1,307 +36797,135247339,Manhattan,Financial District,40.70604,-74.00869,Private room,370,4,0,,1,89 +36798,220307306,Manhattan,Washington Heights,40.85712,-73.9277,Private room,90,1,4,0.46,1,0 +36799,41945759,Manhattan,Washington Heights,40.85671,-73.92735,Private room,165,1,3,0.35,1,0 +36800,16955151,Manhattan,West Village,40.73079,-74.00268,Entire home/apt,195,2,10,1.16,1,3 +36801,93732420,Queens,Astoria,40.76412,-73.92185,Private room,65,2,27,3.24,2,59 +36802,7138174,Manhattan,Upper East Side,40.78537,-73.95036999999999,Entire home/apt,500,4,3,0.48,1,11 +36803,220322871,Manhattan,Upper East Side,40.77156,-73.95716,Shared room,75,1,1,0.12,1,365 +36804,7305006,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95878,Private room,60,6,8,1.1,2,144 +36805,7305006,Brooklyn,Bedford-Stuyvesant,40.69137,-73.95878,Private room,59,6,12,1.53,2,54 +36806,220378888,Brooklyn,Bay Ridge,40.63093,-74.02363000000001,Entire home/apt,175,1,27,3.07,1,276 +36807,219930693,Queens,Woodhaven,40.69102,-73.86089,Private room,90,2,11,1.24,2,89 +36808,12982906,Brooklyn,Fort Greene,40.69146,-73.97378,Private room,110,2,0,,3,66 +36809,59627203,Brooklyn,Windsor Terrace,40.65116,-73.97881,Entire home/apt,125,5,2,0.27,1,0 +36810,12982906,Brooklyn,Fort Greene,40.693670000000004,-73.97383,Private room,120,2,0,,3,280 +36811,8730700,Brooklyn,Brooklyn Heights,40.69863,-73.9937,Entire home/apt,88,20,3,1.14,1,23 +36812,2715012,Brooklyn,Crown Heights,40.67415,-73.94006999999999,Entire home/apt,175,2,4,0.64,3,325 +36813,141853769,Brooklyn,Borough Park,40.64459,-73.99951,Entire home/apt,100,2,10,4.41,1,24 +36814,220419710,Brooklyn,Flatlands,40.62453,-73.92479,Private room,175,2,3,1.73,1,275 +36815,177110165,Brooklyn,Gowanus,40.66811,-73.99450999999999,Entire home/apt,121,5,1,0.31,1,45 +36816,85221704,Manhattan,Harlem,40.83096,-73.95016,Private room,89,25,1,0.13,1,18 +36817,13744738,Brooklyn,South Slope,40.661770000000004,-73.98198000000001,Entire home/apt,200,3,0,,1,1 +36818,168619140,Brooklyn,Canarsie,40.637640000000005,-73.91556,Private room,58,2,1,0.25,2,0 +36819,193473122,Manhattan,Little Italy,40.71962,-73.99682,Entire home/apt,150,3,10,1.15,1,9 +36820,220297196,Brooklyn,Bushwick,40.69905,-73.91874,Private room,35,1,5,0.57,1,1 +36821,18917915,Brooklyn,Williamsburg,40.70296,-73.94086,Entire home/apt,90,3,7,0.95,1,3 +36822,3292437,Manhattan,Midtown,40.75228,-73.9695,Entire home/apt,250,2,20,2.3,1,0 +36823,187908347,Brooklyn,Crown Heights,40.67311,-73.94679000000001,Entire home/apt,90,4,24,2.89,2,82 +36824,140640991,Manhattan,Inwood,40.86261,-73.92295,Private room,100,3,8,0.95,1,165 +36825,37154382,Queens,Forest Hills,40.71018,-73.85229,Entire home/apt,100,2,22,2.83,1,103 +36826,220468724,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92281,Entire home/apt,149,2,73,8.62,1,93 +36827,36693787,Manhattan,Stuyvesant Town,40.73341,-73.98,Entire home/apt,188,10,1,0.68,1,21 +36828,158406020,Brooklyn,East Flatbush,40.65105,-73.93034,Private room,47,1,9,1.05,2,14 +36829,44745096,Brooklyn,Bushwick,40.6934,-73.92371999999999,Private room,110,3,8,1.08,1,8 +36830,204268180,Brooklyn,Bushwick,40.70254,-73.92471,Private room,33,1,8,0.96,1,64 +36831,5123160,Manhattan,Two Bridges,40.71145,-73.99606999999999,Private room,130,1,7,0.99,1,0 +36832,220568909,Manhattan,Little Italy,40.71751,-73.99849,Entire home/apt,230,2,9,1.04,1,360 +36833,33510623,Manhattan,Murray Hill,40.74629,-73.97703,Entire home/apt,899,4,5,0.71,1,340 +36834,16063645,Manhattan,East Village,40.7293,-73.9834,Entire home/apt,130,1,26,3.01,1,243 +36835,220576785,Brooklyn,Midwood,40.61703,-73.97055,Private room,100,1,0,,1,365 +36836,2093557,Brooklyn,Bushwick,40.69975,-73.92602,Entire home/apt,100,1,3,1.34,2,4 +36837,34075689,Queens,Maspeth,40.722359999999995,-73.90195,Entire home/apt,150,7,15,1.73,3,69 +36838,220601248,Manhattan,Lower East Side,40.718270000000004,-73.98836,Private room,66,2,23,3.14,2,6 +36839,38503320,Brooklyn,Greenpoint,40.72637,-73.95248000000001,Private room,95,5,36,4.15,1,101 +36840,53621734,Manhattan,Hell's Kitchen,40.75985,-73.99799,Entire home/apt,170,12,1,0.11,1,365 +36841,210961816,Manhattan,Midtown,40.74584,-73.98894,Private room,125,3,13,1.51,1,14 +36842,4874700,Brooklyn,Greenpoint,40.72549,-73.94595,Entire home/apt,975,2,0,,1,149 +36843,220605010,Manhattan,Washington Heights,40.83773,-73.94415,Private room,125,3,0,,1,178 +36844,96222132,Brooklyn,Sunset Park,40.65595,-74.00274,Shared room,45,1,8,0.93,4,332 +36845,80026984,Manhattan,Harlem,40.801320000000004,-73.95496,Entire home/apt,195,3,3,0.4,1,239 +36846,606154,Manhattan,Gramercy,40.73386,-73.98307,Private room,118,6,0,,2,0 +36847,172859639,Brooklyn,Williamsburg,40.7041,-73.93415,Entire home/apt,250,1,2,0.23,1,4 +36848,151229011,Manhattan,Upper East Side,40.77557,-73.94381,Private room,93,3,32,3.87,1,28 +36849,630534,Brooklyn,Flatbush,40.650259999999996,-73.96316,Private room,196,3,5,0.65,1,35 +36850,134904068,Queens,Jackson Heights,40.750240000000005,-73.88409,Entire home/apt,200,5,1,1.0,1,38 +36851,73453515,Bronx,Hunts Point,40.81819,-73.88653000000001,Entire home/apt,150,2,5,0.57,1,0 +36852,213586067,Manhattan,Upper East Side,40.781079999999996,-73.95439,Entire home/apt,215,3,0,,1,0 +36853,6562449,Manhattan,Upper West Side,40.79325,-73.97237,Entire home/apt,325,1,16,1.95,1,7 +36854,3053587,Manhattan,Midtown,40.76531,-73.9789,Private room,350,3,1,0.36,1,169 +36855,120431726,Brooklyn,Greenpoint,40.72097,-73.94051999999999,Private room,99,1,14,1.6,2,0 +36856,13646328,Manhattan,Upper West Side,40.79954,-73.96263,Entire home/apt,99,5,10,1.55,1,29 +36857,23196609,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94176999999999,Private room,40,2,8,1.76,2,14 +36858,15586309,Brooklyn,Sunset Park,40.66486,-73.99535,Entire home/apt,90,1,6,0.73,1,0 +36859,105572926,Brooklyn,Crown Heights,40.676359999999995,-73.91932,Private room,85,2,2,0.24,1,0 +36860,93732420,Queens,Astoria,40.76363,-73.92178,Entire home/apt,90,5,0,,2,0 +36861,838325,Brooklyn,Bedford-Stuyvesant,40.69368,-73.93403,Private room,98,1,6,0.69,1,135 +36862,101410003,Manhattan,Midtown,40.76525,-73.98058,Private room,279,5,2,0.32,1,26 +36863,10951481,Brooklyn,Williamsburg,40.71416,-73.96191,Entire home/apt,249,2,38,4.38,5,46 +36864,1216891,Manhattan,Harlem,40.81954,-73.94713,Private room,85,1,22,2.53,1,232 +36865,101499766,Queens,Springfield Gardens,40.6831,-73.75525999999999,Private room,50,1,29,4.53,2,347 +36866,220763958,Queens,Arverne,40.58848,-73.795,Entire home/apt,199,1,11,3.79,1,113 +36867,1463509,Brooklyn,Cypress Hills,40.68809,-73.87004,Entire home/apt,70,3,21,2.97,1,2 +36868,51699123,Brooklyn,Bushwick,40.69917,-73.9123,Private room,65,2,31,5.08,2,125 +36869,108746563,Brooklyn,Crown Heights,40.6703,-73.93597,Entire home/apt,149,3,22,3.11,1,13 +36870,20976078,Brooklyn,Crown Heights,40.67516,-73.95416,Private room,90,1,10,1.26,1,0 +36871,173685298,Manhattan,Midtown,40.75484,-73.97235,Private room,375,1,0,,11,179 +36872,220786352,Manhattan,Harlem,40.824259999999995,-73.95231,Entire home/apt,125,3,8,1.17,1,119 +36873,220762164,Queens,St. Albans,40.69272,-73.76264,Entire home/apt,105,2,2,0.24,4,89 +36874,219499219,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94691999999999,Private room,75,1,1,0.12,2,0 +36875,220709091,Brooklyn,Bay Ridge,40.63859,-74.02497,Entire home/apt,82,1,56,6.41,1,288 +36876,220806520,Brooklyn,Bedford-Stuyvesant,40.69279,-73.94654,Private room,50,10,0,,1,359 +36877,215884830,Brooklyn,Sunset Park,40.65047,-74.00403,Private room,50,1,23,2.63,4,327 +36878,15644345,Manhattan,Lower East Side,40.71477,-73.98575,Entire home/apt,250,5,1,0.14,1,0 +36879,166794407,Queens,Astoria,40.76681,-73.91308000000001,Private room,44,5,1,0.16,3,188 +36880,4555996,Manhattan,Harlem,40.8229,-73.94287,Entire home/apt,150,10,0,,2,4 +36881,1601321,Queens,Astoria,40.75736,-73.92161999999999,Private room,130,2,5,2.34,1,6 +36882,38216858,Manhattan,Financial District,40.7086,-74.01266,Private room,270,5,2,0.32,4,364 +36883,216738370,Manhattan,Upper East Side,40.76481,-73.96001,Private room,175,1,9,1.09,1,365 +36884,65407018,Brooklyn,Greenpoint,40.72334,-73.93745,Private room,45,1,13,1.63,5,160 +36885,219784095,Brooklyn,Bedford-Stuyvesant,40.68405,-73.95267,Private room,79,2,14,1.63,1,79 +36886,89339003,Brooklyn,Bushwick,40.7027,-73.91429000000001,Private room,70,5,1,0.21,1,53 +36887,107434423,Manhattan,Chelsea,40.73769,-73.99734000000001,Entire home/apt,374,30,0,,232,263 +36888,4205284,Manhattan,East Village,40.73122,-73.98652,Entire home/apt,240,2,2,0.28,1,53 +36889,220149091,Brooklyn,Bedford-Stuyvesant,40.69397,-73.94921,Private room,70,2,26,3.06,4,339 +36890,80242144,Manhattan,Upper West Side,40.78461,-73.97801,Entire home/apt,199,1,6,0.68,1,62 +36891,43349835,Manhattan,Gramercy,40.73395,-73.9821,Entire home/apt,135,14,2,0.27,1,240 +36892,107434423,Manhattan,Upper West Side,40.77691,-73.98263,Entire home/apt,259,30,0,,232,170 +36893,178826661,Brooklyn,Williamsburg,40.70635,-73.94655999999999,Entire home/apt,200,4,0,,1,0 +36894,69545272,Manhattan,Financial District,40.71161,-74.00665,Private room,57,9,3,0.36,2,365 +36895,2301120,Manhattan,West Village,40.733270000000005,-74.00157,Entire home/apt,300,2,8,0.94,1,0 +36896,439827,Brooklyn,Greenpoint,40.73038,-73.95221,Entire home/apt,250,29,0,,1,0 +36897,220969093,Brooklyn,Greenpoint,40.71958,-73.95246999999999,Entire home/apt,99,2,26,3.21,1,145 +36898,28214995,Manhattan,Hell's Kitchen,40.75947,-73.99335,Entire home/apt,350,2,10,1.19,1,179 +36899,7389707,Manhattan,Washington Heights,40.84539,-73.93968000000001,Shared room,40,2,14,2.82,2,0 +36900,331328,Manhattan,East Harlem,40.807590000000005,-73.94103,Entire home/apt,99,5,13,2.48,3,8 +36901,44851966,Bronx,Belmont,40.854490000000006,-73.88436999999999,Private room,100,1,3,1.84,1,319 +36902,24595747,Manhattan,Upper West Side,40.779720000000005,-73.97870999999999,Private room,97,3,7,0.83,2,0 +36903,173685298,Manhattan,Midtown,40.75613,-73.97055999999999,Private room,425,1,3,0.36,11,177 +36904,15872365,Queens,Astoria,40.76553,-73.91625,Entire home/apt,89,4,15,1.73,1,12 +36905,217568399,Brooklyn,Bath Beach,40.603190000000005,-73.99591,Entire home/apt,150,1,13,1.54,1,0 +36906,8814258,Queens,South Ozone Park,40.67293,-73.79554,Shared room,30,4,1,0.45,7,365 +36907,220688207,Brooklyn,Williamsburg,40.709590000000006,-73.96110999999999,Entire home/apt,150,1,77,8.95,1,77 +36908,132866292,Manhattan,Chelsea,40.74165,-73.99968,Entire home/apt,225,2,47,5.38,1,101 +36909,221022609,Brooklyn,Flatlands,40.63204,-73.93383,Private room,45,7,0,,1,83 +36910,102542851,Manhattan,SoHo,40.727059999999994,-74.00572,Private room,129,4,0,,1,0 +36911,4666670,Queens,Astoria,40.769020000000005,-73.91856,Private room,49,5,9,1.05,4,318 +36912,205243076,Queens,Cambria Heights,40.69238,-73.73646,Private room,65,2,13,1.49,2,77 +36913,9399583,Brooklyn,Williamsburg,40.71047,-73.96795999999999,Entire home/apt,160,10,0,,1,34 +36914,119305261,Queens,Flushing,40.763729999999995,-73.82904,Entire home/apt,188,2,15,1.97,1,59 +36915,117380551,Brooklyn,Crown Heights,40.67115,-73.94932,Entire home/apt,110,2,0,,1,107 +36916,114386000,Queens,Sunnyside,40.74299,-73.92441,Entire home/apt,155,2,2,0.32,1,358 +36917,221036535,Brooklyn,East New York,40.66957,-73.86585,Entire home/apt,300,1,12,1.49,1,175 +36918,221043708,Queens,East Elmhurst,40.7698,-73.87183,Entire home/apt,150,1,29,3.32,1,360 +36919,178337703,Bronx,Clason Point,40.805040000000005,-73.85327,Private room,300,1,1,0.11,1,364 +36920,28960938,Bronx,Unionport,40.82598,-73.85203,Private room,90,7,0,,1,180 +36921,218272490,Manhattan,Upper West Side,40.78177,-73.97878,Private room,85,2,23,2.64,1,79 +36922,15331078,Brooklyn,Crown Heights,40.67768,-73.94244,Private room,35,5,1,0.16,1,69 +36923,35807458,Brooklyn,Crown Heights,40.66587,-73.92966,Private room,120,1,0,,1,88 +36924,221071115,Manhattan,Greenwich Village,40.728359999999995,-73.99925,Entire home/apt,300,7,0,,1,80 +36925,16628063,Manhattan,Two Bridges,40.7125,-73.99661,Private room,90,1,26,3.42,1,297 +36926,1810885,Manhattan,East Village,40.726279999999996,-73.97981,Entire home/apt,199,4,4,0.77,3,204 +36927,74468846,Brooklyn,Williamsburg,40.71353,-73.94339000000001,Private room,75,2,11,1.56,2,0 +36928,134170699,Queens,Elmhurst,40.737559999999995,-73.87787,Private room,65,2,2,1.43,2,364 +36929,215022472,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95283,Private room,51,4,19,2.16,1,189 +36930,52161562,Manhattan,Kips Bay,40.7444,-73.97946,Entire home/apt,125,2,14,1.65,1,0 +36931,217159080,Queens,Elmhurst,40.74133,-73.88345,Private room,41,2,44,5.24,1,123 +36932,9806886,Brooklyn,Carroll Gardens,40.67742,-74.00146,Entire home/apt,200,7,1,0.16,1,0 +36933,9319215,Manhattan,SoHo,40.727509999999995,-74.0018,Private room,250,7,3,0.44,1,0 +36934,130054323,Manhattan,Harlem,40.823609999999995,-73.93926,Entire home/apt,102,1,17,2.14,1,75 +36935,110042455,Manhattan,Upper East Side,40.771229999999996,-73.9549,Entire home/apt,175,2,3,1.23,1,6 +36936,48049796,Manhattan,East Village,40.72935,-73.98441,Private room,100,1,10,1.15,2,90 +36937,221201866,Brooklyn,Gowanus,40.682159999999996,-73.98199,Entire home/apt,115,1,9,1.03,1,0 +36938,193353343,Brooklyn,Bushwick,40.68677,-73.91571,Private room,84,1,8,0.94,1,31 +36939,5120616,Brooklyn,Clinton Hill,40.68634,-73.96117,Entire home/apt,150,3,0,,1,0 +36940,220479551,Queens,Astoria,40.756840000000004,-73.91705,Private room,65,1,4,0.64,1,88 +36941,196058543,Queens,Forest Hills,40.721920000000004,-73.83931,Shared room,40,2,20,2.4,5,230 +36942,219494713,Manhattan,Chelsea,40.74327,-73.99663000000001,Entire home/apt,599,2,25,2.92,1,244 +36943,221252894,Brooklyn,Crown Heights,40.67253,-73.9223,Entire home/apt,225,1,27,3.36,1,339 +36944,17272284,Manhattan,Upper East Side,40.7652,-73.95834,Private room,109,1,9,2.87,2,0 +36945,220962399,Manhattan,Upper East Side,40.76408,-73.95685999999999,Entire home/apt,250,1,12,1.41,1,323 +36946,221275418,Brooklyn,Crown Heights,40.67685,-73.93653,Private room,55,2,18,2.18,3,251 +36947,39301747,Manhattan,Harlem,40.81801,-73.93855,Entire home/apt,78,1,27,3.86,1,33 +36948,179355129,Staten Island,Dongan Hills,40.58303,-74.09271,Entire home/apt,85,2,12,1.91,1,229 +36949,221343982,Manhattan,Chelsea,40.75358,-73.99707,Private room,165,45,0,,1,83 +36950,25059454,Queens,Rockaway Beach,40.58409,-73.81665,Entire home/apt,65,2,13,1.54,1,73 +36951,201015598,Brooklyn,Bedford-Stuyvesant,40.679559999999995,-73.91135,Shared room,35,1,13,1.52,17,89 +36952,221355351,Manhattan,Morningside Heights,40.81548,-73.95931,Private room,80,1,38,4.4,4,57 +36953,221355351,Manhattan,Morningside Heights,40.813759999999995,-73.95954,Private room,85,1,66,7.59,4,71 +36954,221355351,Manhattan,Morningside Heights,40.81454,-73.96086,Private room,98,1,51,5.86,4,56 +36955,221355351,Manhattan,Morningside Heights,40.81386,-73.95936,Private room,90,1,55,6.4,4,87 +36956,213781715,Manhattan,NoHo,40.72872,-73.99199,Entire home/apt,179,1,1,0.68,33,187 +36957,213781715,Brooklyn,Greenpoint,40.73543,-73.95454000000001,Private room,119,1,0,,33,179 +36958,16098958,Manhattan,Midtown,40.748290000000004,-73.98653,Entire home/apt,180,30,0,,96,342 +36959,73377711,Brooklyn,Bedford-Stuyvesant,40.685390000000005,-73.94903000000001,Private room,60,4,1,0.12,1,0 +36960,221366300,Manhattan,Chelsea,40.74303,-73.99727,Entire home/apt,200,1,34,4.66,1,0 +36961,221371129,Brooklyn,Carroll Gardens,40.67787,-73.99973,Entire home/apt,130,4,9,1.09,1,70 +36962,68128762,Brooklyn,Greenpoint,40.719609999999996,-73.95405,Private room,170,1,0,,1,220 +36963,8094710,Queens,Ditmars Steinway,40.776709999999994,-73.91283,Private room,75,7,12,1.6,1,40 +36964,221392587,Manhattan,Midtown,40.7599,-73.96685,Entire home/apt,244,4,9,1.21,1,56 +36965,36995455,Brooklyn,Crown Heights,40.67283,-73.9447,Private room,80,1,48,5.52,1,214 +36966,208901618,Manhattan,Upper West Side,40.787929999999996,-73.97261,Entire home/apt,180,2,10,1.22,1,0 +36967,221405192,Brooklyn,Bensonhurst,40.61667,-73.99932,Entire home/apt,100,1,3,0.41,1,61 +36968,1411399,Queens,Astoria,40.76894,-73.91193,Entire home/apt,76,1,7,0.83,5,326 +36969,62330502,Bronx,Woodlawn,40.897529999999996,-73.87359000000001,Private room,50,1,6,0.71,1,0 +36970,4180621,Brooklyn,Carroll Gardens,40.67692,-73.99986,Entire home/apt,78,1,28,3.64,2,223 +36971,221420411,Queens,Briarwood,40.71347,-73.80873000000001,Private room,200,2,0,,1,90 +36972,50822673,Manhattan,Midtown,40.76597,-73.98177,Entire home/apt,180,3,2,1.36,1,1 +36973,131305000,Brooklyn,Bushwick,40.69552,-73.91165,Private room,65,3,16,1.82,1,74 +36974,4666670,Queens,Astoria,40.77029,-73.91881,Entire home/apt,110,5,1,0.16,4,173 +36975,220414847,Manhattan,Upper West Side,40.78818,-73.96795999999999,Entire home/apt,190,3,37,4.64,1,120 +36976,91101209,Brooklyn,Greenpoint,40.7348,-73.95543,Entire home/apt,150,6,1,0.13,1,154 +36977,220574429,Manhattan,Midtown,40.745490000000004,-73.99065999999999,Entire home/apt,670,25,0,,3,305 +36978,13859261,Brooklyn,Greenpoint,40.731590000000004,-73.95713,Entire home/apt,181,1,35,4.12,1,37 +36979,221434490,Queens,Jackson Heights,40.75586,-73.87014,Private room,49,2,23,2.86,2,358 +36980,204823078,Staten Island,South Beach,40.58639,-74.08943000000001,Private room,100,2,6,0.73,2,86 +36981,69439684,Queens,Elmhurst,40.74111,-73.88184,Entire home/apt,179,2,31,3.65,2,239 +36982,17218010,Manhattan,Chelsea,40.740109999999994,-73.99745,Entire home/apt,175,2,17,2.08,1,0 +36983,7591218,Bronx,Concourse,40.83007,-73.92251,Private room,45,3,19,2.27,1,67 +36984,22050715,Queens,Astoria,40.75718,-73.92763000000001,Private room,90,2,5,0.61,1,354 +36985,11433245,Manhattan,East Village,40.72653,-73.98501,Entire home/apt,168,7,6,0.78,1,130 +36986,73222575,Queens,Ditmars Steinway,40.77888,-73.90827,Private room,95,2,6,1.41,1,12 +36987,199539833,Staten Island,Rosebank,40.60816,-74.07634,Entire home/apt,90,3,19,2.68,1,247 +36988,163251048,Manhattan,Hell's Kitchen,40.760940000000005,-73.99778,Entire home/apt,499,30,0,,8,185 +36989,173685298,Manhattan,Midtown,40.75674,-73.97201,Private room,329,1,1,0.12,11,178 +36990,221548872,Manhattan,Hell's Kitchen,40.75504,-73.99521,Entire home/apt,390,2,3,0.36,1,0 +36991,134167192,Manhattan,Harlem,40.815020000000004,-73.94183000000001,Private room,90,2,3,0.36,1,0 +36992,5123477,Brooklyn,Brooklyn Heights,40.69719,-73.99229,Entire home/apt,120,3,2,0.82,1,1 +36993,221434490,Queens,Jackson Heights,40.75473,-73.8715,Private room,45,2,22,2.58,2,138 +36994,3928437,Brooklyn,Clinton Hill,40.68303,-73.95988,Private room,139,1,1,0.14,1,83 +36995,1949282,Brooklyn,Bushwick,40.693870000000004,-73.9102,Private room,45,2,3,0.34,5,318 +36996,1949282,Brooklyn,Bushwick,40.694179999999996,-73.9114,Private room,36,3,13,1.51,5,329 +36997,221574115,Brooklyn,Bensonhurst,40.61208,-74.00180999999999,Shared room,15,10,0,,2,0 +36998,3585637,Brooklyn,Bedford-Stuyvesant,40.68071,-73.95761,Entire home/apt,160,30,0,,1,281 +36999,157093664,Queens,St. Albans,40.6978,-73.76775,Entire home/apt,299,2,9,1.05,2,52 +37000,65671256,Queens,Jackson Heights,40.757490000000004,-73.85811,Private room,65,1,43,4.94,3,48 +37001,49664763,Brooklyn,East Flatbush,40.66098,-73.92381999999999,Private room,77,1,1,0.12,1,0 +37002,32896046,Manhattan,Midtown,40.762890000000006,-73.98003,Private room,115,3,2,0.25,1,0 +37003,221595358,Manhattan,Tribeca,40.71904,-74.00856999999999,Private room,149,1,32,3.86,2,317 +37004,219544415,Brooklyn,Bedford-Stuyvesant,40.69223,-73.95141,Private room,75,2,13,1.53,3,365 +37005,219544415,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94998000000001,Private room,70,2,14,1.61,3,365 +37006,179336958,Manhattan,Midtown,40.74757,-73.98671,Shared room,65,3,20,2.51,6,169 +37007,57675402,Manhattan,Morningside Heights,40.814240000000005,-73.96051,Entire home/apt,100,4,2,0.3,1,0 +37008,25352847,Brooklyn,Williamsburg,40.714209999999994,-73.95421,Private room,130,1,13,1.63,2,64 +37009,221612013,Manhattan,Upper East Side,40.76105,-73.96294,Private room,80,1,27,3.45,1,0 +37010,71164216,Manhattan,Harlem,40.8063,-73.94484,Private room,70,2,13,1.49,1,361 +37011,62533391,Brooklyn,Borough Park,40.63543,-74.00701,Shared room,38,1,7,0.8,7,365 +37012,221635816,Queens,Sunnyside,40.73986,-73.91996,Entire home/apt,185,2,55,6.45,1,99 +37013,60105727,Manhattan,West Village,40.73531,-74.00303000000001,Entire home/apt,182,30,31,3.88,2,12 +37014,30616847,Manhattan,Midtown,40.75322,-73.97353000000001,Private room,500,3,0,,1,365 +37015,207651513,Manhattan,Harlem,40.80903,-73.94306999999999,Private room,97,1,47,5.71,3,75 +37016,24954668,Manhattan,Upper East Side,40.76877,-73.95479,Private room,110,7,1,0.14,1,365 +37017,146363617,Staten Island,Todt Hill,40.58392,-74.1078,Entire home/apt,62,14,4,0.56,1,268 +37018,47125955,Manhattan,East Village,40.72849,-73.98002,Entire home/apt,150,2,8,0.97,1,132 +37019,76323622,Manhattan,Nolita,40.723420000000004,-73.99408000000001,Entire home/apt,250,2,2,0.28,1,0 +37020,1343352,Manhattan,Upper West Side,40.7764,-73.98144,Entire home/apt,220,2,1,0.13,1,0 +37021,43957041,Manhattan,East Village,40.72726,-73.97934000000001,Entire home/apt,300,4,3,0.47,1,0 +37022,220945034,Brooklyn,Flatbush,40.63462,-73.95572,Entire home/apt,150,2,13,1.53,1,160 +37023,7040483,Queens,Astoria,40.761070000000004,-73.91364,Private room,69,5,20,2.43,1,37 +37024,39481825,Manhattan,Morningside Heights,40.80559,-73.96606,Private room,70,1,15,1.77,1,16 +37025,3583973,Brooklyn,Williamsburg,40.71247,-73.96295,Entire home/apt,190,2,17,1.99,1,0 +37026,87786261,Brooklyn,South Slope,40.66129,-73.98734,Entire home/apt,169,3,4,0.48,5,41 +37027,221760432,Staten Island,Concord,40.60367,-74.0695,Entire home/apt,200,4,4,0.53,1,320 +37028,89120831,Manhattan,Chelsea,40.7487,-73.99678,Private room,100,1,42,5.06,1,23 +37029,23930728,Manhattan,Harlem,40.81861,-73.94565,Entire home/apt,280,8,1,0.16,1,166 +37030,207651513,Manhattan,Harlem,40.80935,-73.9442,Private room,63,1,61,7.5,3,31 +37031,8699249,Brooklyn,Park Slope,40.67811,-73.97974,Entire home/apt,200,3,3,0.4,1,0 +37032,63300613,Manhattan,Washington Heights,40.84534,-73.93479,Shared room,125,2,13,1.72,1,126 +37033,65411833,Brooklyn,Bushwick,40.69016,-73.91075,Private room,50,30,0,,1,0 +37034,977716,Brooklyn,Carroll Gardens,40.67861,-73.99469,Entire home/apt,125,2,2,0.24,1,0 +37035,22251283,Manhattan,Hell's Kitchen,40.76388,-73.99306999999999,Entire home/apt,125,30,0,,4,0 +37036,179336958,Manhattan,Midtown,40.74684,-73.98698,Private room,75,4,7,0.82,6,357 +37037,219782181,Manhattan,Lower East Side,40.714890000000004,-73.98510999999999,Entire home/apt,165,2,6,0.92,3,83 +37038,221850456,Manhattan,East Harlem,40.78819,-73.94234,Private room,90,2,3,0.38,1,89 +37039,221853540,Manhattan,East Village,40.728770000000004,-73.98938000000001,Entire home/apt,140,31,0,,1,0 +37040,221851804,Brooklyn,Crown Heights,40.66935,-73.94133000000001,Entire home/apt,105,2,17,2.01,1,245 +37041,33142561,Manhattan,Upper East Side,40.77697,-73.96063000000001,Entire home/apt,110,30,2,0.25,1,0 +37042,4540122,Queens,Astoria,40.76204,-73.92267,Entire home/apt,74,5,3,0.53,1,52 +37043,92657816,Manhattan,Morningside Heights,40.80413,-73.96415999999999,Entire home/apt,239,2,9,1.04,2,154 +37044,171446547,Staten Island,Bull's Head,40.617,-74.16485,Private room,80,1,29,3.4,1,362 +37045,221871654,Manhattan,East Village,40.72185,-73.98451,Entire home/apt,255,2,1,0.57,1,0 +37046,92657816,Manhattan,Morningside Heights,40.804629999999996,-73.96373,Private room,99,3,3,0.38,2,0 +37047,213781715,Brooklyn,Greenpoint,40.73297,-73.95385,Private room,119,1,0,,33,365 +37048,213781715,Brooklyn,Greenpoint,40.730990000000006,-73.956,Private room,119,1,0,,33,365 +37049,106692652,Queens,Rego Park,40.729859999999995,-73.85929,Private room,47,1,7,0.82,1,0 +37050,6573459,Manhattan,Financial District,40.71086,-74.00721,Entire home/apt,525,2,3,0.36,1,158 +37051,1710940,Manhattan,Hell's Kitchen,40.761990000000004,-73.99253,Private room,62,1,59,7.41,1,194 +37052,105386434,Brooklyn,Bedford-Stuyvesant,40.69388,-73.94501,Private room,70,3,19,2.24,3,361 +37053,53223410,Brooklyn,Williamsburg,40.71047,-73.95529,Entire home/apt,200,5,2,0.26,1,0 +37054,914386,Queens,Ozone Park,40.681290000000004,-73.84235,Private room,75,1,1,0.12,2,173 +37055,179336958,Manhattan,Midtown,40.74626,-73.98682,Private room,75,2,14,1.76,6,305 +37056,22336312,Manhattan,Washington Heights,40.832840000000004,-73.94461,Private room,75,2,17,1.99,2,27 +37057,1453898,Brooklyn,Williamsburg,40.711940000000006,-73.9668,Private room,60,2,30,3.53,3,43 +37058,105828180,Brooklyn,Crown Heights,40.66847,-73.95225,Private room,85,4,0,,3,0 +37059,105386434,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94384000000001,Private room,68,2,15,1.76,3,365 +37060,105386434,Brooklyn,Bedford-Stuyvesant,40.69304,-73.94349,Private room,72,2,15,1.77,3,365 +37061,210634970,Manhattan,Washington Heights,40.83513,-73.94738000000001,Private room,99,2,16,1.89,1,283 +37062,97425,Brooklyn,Bushwick,40.701370000000004,-73.92442,Private room,70,2,10,2.36,1,14 +37063,17813973,Queens,Astoria,40.76276,-73.92508000000001,Entire home/apt,86,1,6,0.79,1,1 +37064,57765860,Manhattan,Upper West Side,40.76964,-73.98615,Entire home/apt,250,7,0,,1,34 +37065,221929447,Manhattan,Harlem,40.812259999999995,-73.94136999999999,Private room,45,5,5,0.6,1,184 +37066,221934669,Manhattan,Midtown,40.74945,-73.98761999999999,Private room,119,1,58,6.72,2,0 +37067,104675082,Manhattan,East Village,40.729079999999996,-73.98912,Entire home/apt,300,6,1,0.16,1,25 +37068,2047776,Manhattan,Nolita,40.7223,-73.99606999999999,Entire home/apt,180,30,0,,2,249 +37069,167620568,Brooklyn,Brighton Beach,40.58056,-73.96313,Shared room,100,1,4,0.56,2,365 +37070,586840,Brooklyn,Bedford-Stuyvesant,40.69105,-73.95881999999999,Entire home/apt,130,4,3,0.4,1,5 +37071,137358866,Queens,Sunnyside,40.7366,-73.92358,Private room,39,30,1,0.19,103,252 +37072,6255971,Brooklyn,Williamsburg,40.71145,-73.95534,Private room,85,2,7,0.83,1,326 +37073,344035,Brooklyn,Prospect Heights,40.67929,-73.97097,Private room,55,1,39,4.55,13,315 +37074,200380610,Manhattan,Upper East Side,40.77114,-73.95913,Entire home/apt,255,30,0,,65,365 +37075,10659007,Brooklyn,Williamsburg,40.70969,-73.94355999999999,Private room,110,2,0,,1,0 +37076,20310357,Queens,Ditmars Steinway,40.77489,-73.9161,Private room,170,1,0,,1,157 +37077,173685298,Manhattan,Midtown,40.75524,-73.97269,Private room,299,1,8,0.94,11,177 +37078,173685298,Manhattan,Midtown,40.75611,-73.97209000000001,Private room,329,1,1,0.38,11,178 +37079,222057751,Manhattan,Upper East Side,40.759679999999996,-73.95963,Entire home/apt,299,7,0,,1,15 +37080,4952877,Manhattan,West Village,40.7374,-74.00409,Entire home/apt,255,2,3,0.39,1,0 +37081,222064628,Manhattan,Washington Heights,40.84832,-73.93583000000001,Private room,42,1,59,7.14,1,77 +37082,9503685,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94334,Entire home/apt,150,2,3,0.38,2,0 +37083,5118419,Manhattan,Chinatown,40.717220000000005,-74.00293,Entire home/apt,1500,1,0,,1,365 +37084,52370129,Brooklyn,Bay Ridge,40.62444,-74.02916,Private room,63,2,5,0.59,2,12 +37085,62925063,Brooklyn,Bushwick,40.70167,-73.93308,Private room,50,1,3,0.36,2,342 +37086,222081034,Brooklyn,Bedford-Stuyvesant,40.68457,-73.93456,Entire home/apt,150,2,40,4.86,1,31 +37087,732460,Brooklyn,Williamsburg,40.70878,-73.96621999999999,Entire home/apt,120,30,1,0.15,7,108 +37088,46296435,Brooklyn,Bushwick,40.701370000000004,-73.93276999999999,Entire home/apt,225,2,0,,1,85 +37089,215273760,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92838,Private room,65,3,21,2.55,2,148 +37090,215273760,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.9288,Private room,65,5,30,3.66,2,178 +37091,61391963,Manhattan,Hell's Kitchen,40.76382,-73.98815,Entire home/apt,117,30,1,0.14,91,345 +37092,10555698,Brooklyn,Park Slope,40.67137,-73.98064000000001,Entire home/apt,200,2,9,1.09,1,23 +37093,222098649,Queens,Jamaica,40.68547,-73.79063000000001,Entire home/apt,20,1,111,13.11,1,41 +37094,40529301,Brooklyn,Fort Greene,40.69686,-73.97315,Private room,60,2,11,2.39,2,113 +37095,85942706,Brooklyn,Williamsburg,40.71351,-73.96066,Private room,72,2,48,5.83,1,95 +37096,910677,Brooklyn,Prospect Heights,40.68014,-73.96539,Entire home/apt,150,8,12,1.54,1,34 +37097,2831146,Brooklyn,Flatbush,40.63513,-73.9672,Entire home/apt,185,2,2,0.27,1,0 +37098,31994,Manhattan,Upper West Side,40.78587,-73.97589,Entire home/apt,140,2,18,2.09,1,0 +37099,22463377,Manhattan,Murray Hill,40.749359999999996,-73.97836,Private room,153,1,25,3.3,3,32 +37100,110366443,Manhattan,Harlem,40.81296,-73.94216999999999,Private room,36,7,2,0.27,1,16 +37101,818753,Manhattan,NoHo,40.725840000000005,-73.99306,Private room,295,2,0,,1,5 +37102,220060177,Brooklyn,Bushwick,40.69327,-73.90773,Private room,70,3,8,0.95,2,362 +37103,7985095,Manhattan,Hell's Kitchen,40.7639,-73.99083,Entire home/apt,345,2,29,3.4,3,100 +37104,33869262,Manhattan,Harlem,40.823640000000005,-73.94471999999999,Entire home/apt,125,2,19,2.35,1,37 +37105,77813945,Manhattan,East Village,40.72145,-73.97881,Private room,75,4,5,1.9,1,33 +37106,7339399,Manhattan,Hell's Kitchen,40.76614,-73.98484,Entire home/apt,180,4,13,1.81,1,55 +37107,29100568,Manhattan,Theater District,40.76189,-73.98338000000001,Entire home/apt,155,20,1,0.18,4,0 +37108,222190882,Manhattan,Murray Hill,40.74485,-73.97072,Entire home/apt,625,4,26,3.06,1,321 +37109,183707967,Manhattan,Washington Heights,40.85416,-73.9292,Entire home/apt,120,2,14,2.12,4,365 +37110,55966543,Manhattan,Upper East Side,40.78411,-73.95097,Entire home/apt,200,2,7,0.88,1,0 +37111,9212560,Manhattan,Harlem,40.821529999999996,-73.94612,Entire home/apt,140,1,5,0.66,1,3 +37112,30346705,Brooklyn,Bedford-Stuyvesant,40.69206,-73.95997,Private room,55,1,40,5.31,2,99 +37113,221591579,Manhattan,Financial District,40.70626,-74.00480999999999,Private room,147,1,13,1.62,1,177 +37114,211549023,Manhattan,Midtown,40.74759,-73.98889,Entire home/apt,220,2,9,1.54,13,283 +37115,18897333,Brooklyn,Carroll Gardens,40.68572,-73.99234,Entire home/apt,115,2,9,1.11,1,32 +37116,153141476,Queens,Briarwood,40.70626,-73.81463000000001,Entire home/apt,44,1,17,2.23,3,44 +37117,198730633,Manhattan,Harlem,40.81223,-73.95284000000001,Entire home/apt,298,1,16,2.0,2,300 +37118,48762596,Manhattan,Gramercy,40.7367,-73.98985,Entire home/apt,499,5,28,3.36,1,145 +37119,26600082,Queens,Ridgewood,40.699729999999995,-73.90835,Entire home/apt,150,1,14,2.8,1,2 +37120,222249366,Manhattan,Harlem,40.82267,-73.95044,Entire home/apt,80,3,1,0.12,1,0 +37121,222249602,Manhattan,East Harlem,40.78552,-73.94153,Entire home/apt,145,1,30,3.61,1,144 +37122,222252623,Brooklyn,Bedford-Stuyvesant,40.69416,-73.94528000000001,Private room,68,3,13,1.54,3,365 +37123,781180,Brooklyn,Brooklyn Heights,40.690329999999996,-73.9931,Entire home/apt,150,5,1,0.16,1,35 +37124,222252623,Brooklyn,Bedford-Stuyvesant,40.69288,-73.946,Private room,70,2,21,2.51,3,344 +37125,222261103,Manhattan,East Harlem,40.786609999999996,-73.94349,Entire home/apt,240,2,44,5.22,1,93 +37126,2670024,Brooklyn,Sunset Park,40.662659999999995,-73.99064,Entire home/apt,120,7,1,0.16,1,128 +37127,156195302,Brooklyn,Williamsburg,40.720620000000004,-73.9555,Entire home/apt,200,2,7,0.93,1,17 +37128,210339363,Queens,Woodhaven,40.6854,-73.8623,Private room,50,3,10,1.36,2,44 +37129,222077787,Manhattan,Upper East Side,40.76464,-73.95831,Private room,99,6,18,2.32,2,14 +37130,7268300,Brooklyn,Williamsburg,40.71204,-73.96540999999999,Private room,80,4,3,0.48,1,7 +37131,37510066,Brooklyn,Fort Greene,40.68723,-73.97369,Entire home/apt,128,1,31,4.23,1,13 +37132,222272674,Brooklyn,Bay Ridge,40.620490000000004,-74.02304000000001,Private room,49,1,26,4.08,1,174 +37133,39174150,Manhattan,Harlem,40.8252,-73.95189,Private room,100,1,13,1.58,3,71 +37134,62015880,Brooklyn,Crown Heights,40.66734,-73.95636999999999,Entire home/apt,119,2,4,0.47,1,0 +37135,222281704,Brooklyn,Flatbush,40.6458,-73.95392,Private room,60,1,54,6.78,1,317 +37136,222086035,Manhattan,Lower East Side,40.71856,-73.98485,Entire home/apt,700,1,29,3.57,1,256 +37137,222281153,Brooklyn,Bedford-Stuyvesant,40.69853,-73.94736,Private room,65,2,24,3.83,3,310 +37138,72001588,Staten Island,West Brighton,40.62625,-74.11109,Private room,80,1,29,3.49,1,80 +37139,222281153,Brooklyn,Bedford-Stuyvesant,40.69712,-73.94731999999999,Private room,52,2,13,1.72,3,320 +37140,222281153,Brooklyn,Bedford-Stuyvesant,40.696509999999996,-73.94763,Private room,62,2,18,2.7,3,338 +37141,13102999,Manhattan,Harlem,40.82827,-73.94256999999999,Entire home/apt,108,3,15,1.99,1,0 +37142,222285897,Manhattan,Morningside Heights,40.80392,-73.96556,Private room,120,1,52,6.14,4,31 +37143,222288328,Brooklyn,Bedford-Stuyvesant,40.696999999999996,-73.94543,Private room,60,2,10,1.44,2,311 +37144,222288328,Brooklyn,Bedford-Stuyvesant,40.69871,-73.94686,Private room,72,1,30,3.85,2,344 +37145,40298873,Queens,Forest Hills,40.71588,-73.83266,Entire home/apt,90,1,6,0.79,1,83 +37146,14061862,Brooklyn,Bedford-Stuyvesant,40.698159999999994,-73.94703,Private room,55,2,20,2.64,3,332 +37147,14061862,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94552,Private room,55,2,23,2.96,3,322 +37148,14061862,Brooklyn,Bedford-Stuyvesant,40.69746,-73.9454,Private room,55,2,19,2.95,3,359 +37149,60525649,Manhattan,Hell's Kitchen,40.75464,-73.99542,Entire home/apt,120,2,9,1.08,1,2 +37150,11923041,Brooklyn,Williamsburg,40.7158,-73.95863,Entire home/apt,300,10,0,,1,0 +37151,644904,Manhattan,Financial District,40.70496,-74.00964,Entire home/apt,170,12,2,0.27,1,14 +37152,78339088,Queens,Corona,40.75047,-73.85374,Private room,75,1,26,3.45,1,115 +37153,14719992,Brooklyn,Cypress Hills,40.679590000000005,-73.89209,Private room,31,1,14,1.72,3,210 +37154,221374905,Brooklyn,Bushwick,40.69155,-73.90595,Private room,200,1,0,,1,365 +37155,9601006,Brooklyn,Fort Greene,40.695190000000004,-73.97202,Private room,60,1,23,2.7,1,0 +37156,150316502,Brooklyn,Greenpoint,40.72674,-73.95495,Private room,250,5,0,,1,154 +37157,209298687,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95153,Private room,65,30,10,1.18,4,328 +37158,209298687,Brooklyn,Bedford-Stuyvesant,40.69072,-73.95026,Private room,65,30,13,1.65,4,336 +37159,222385509,Brooklyn,Bushwick,40.69807,-73.91494,Private room,35,7,1,0.13,1,89 +37160,39801631,Brooklyn,Gowanus,40.67662,-73.98642,Entire home/apt,300,2,6,0.8,1,3 +37161,213781715,Brooklyn,Greenpoint,40.731359999999995,-73.95447,Shared room,119,1,0,,33,180 +37162,213781715,Brooklyn,Greenpoint,40.73274,-73.95575,Shared room,119,1,0,,33,365 +37163,91605357,Brooklyn,Williamsburg,40.7073,-73.95739,Private room,85,1,56,7.0,2,51 +37164,100106209,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.96153000000001,Entire home/apt,115,2,1,0.16,2,219 +37165,619942,Brooklyn,Cypress Hills,40.68775,-73.87044,Entire home/apt,75,30,4,0.55,6,170 +37166,501343,Manhattan,Hell's Kitchen,40.76328,-73.98942,Private room,225,3,2,0.73,2,30 +37167,22336312,Manhattan,Washington Heights,40.83469,-73.94604,Entire home/apt,129,2,13,1.63,2,0 +37168,216235179,Brooklyn,Bushwick,40.70114,-73.91879,Private room,50,30,1,0.45,17,365 +37169,216235179,Brooklyn,Bushwick,40.69992,-73.92013,Private room,50,30,1,0.38,17,326 +37170,216235179,Brooklyn,Bushwick,40.70156,-73.91913000000001,Private room,50,30,0,,17,268 +37171,216235179,Brooklyn,Bushwick,40.70091,-73.92003000000001,Private room,50,30,2,0.52,17,333 +37172,216235179,Brooklyn,Bushwick,40.70154,-73.91873000000001,Private room,50,30,0,,17,325 +37173,22541573,Manhattan,Upper East Side,40.773270000000004,-73.94939000000001,Entire home/apt,165,30,0,,87,355 +37174,47022650,Manhattan,East Harlem,40.79524,-73.93429,Entire home/apt,150,1,11,1.34,3,356 +37175,201015598,Brooklyn,Bedford-Stuyvesant,40.67745,-73.90958,Shared room,24,1,14,1.65,17,89 +37176,201015598,Brooklyn,Bedford-Stuyvesant,40.67937,-73.91108,Shared room,32,1,17,2.13,17,87 +37177,206370255,Manhattan,East Harlem,40.79468,-73.94194,Entire home/apt,200,2,8,1.13,1,162 +37178,196669206,Manhattan,Harlem,40.82359,-73.95508000000001,Entire home/apt,119,2,24,3.43,1,120 +37179,29387678,Manhattan,East Village,40.72208,-73.98472,Private room,1700,23,0,,1,365 +37180,36149596,Brooklyn,Williamsburg,40.715070000000004,-73.95461999999999,Entire home/apt,305,1,15,1.89,1,43 +37181,154981576,Brooklyn,Bushwick,40.69976,-73.91202,Private room,35,30,0,,9,43 +37182,621652,Manhattan,Upper West Side,40.78014,-73.97974,Entire home/apt,200,5,1,0.38,1,4 +37183,288972,Manhattan,Hell's Kitchen,40.75651,-73.99807,Entire home/apt,206,5,10,1.55,1,199 +37184,222456125,Manhattan,Midtown,40.76474,-73.98187,Private room,160,3,5,0.62,1,0 +37185,11598586,Queens,Long Island City,40.74705,-73.94594000000001,Private room,159,1,0,,1,0 +37186,222460280,Queens,Sunnyside,40.74185,-73.92701,Entire home/apt,99,3,0,,1,0 +37187,222461823,Queens,Astoria,40.75862,-73.91096999999999,Entire home/apt,349,2,27,3.29,1,303 +37188,166794407,Queens,Astoria,40.7673,-73.91194,Private room,70,1,3,0.39,3,188 +37189,7450345,Brooklyn,Bedford-Stuyvesant,40.69032,-73.9544,Entire home/apt,107,3,1,0.12,1,0 +37190,222424429,Manhattan,Washington Heights,40.84701,-73.93949,Private room,38,2,17,2.33,2,73 +37191,35944,Brooklyn,Brighton Beach,40.57755,-73.96667,Entire home/apt,210,3,0,,1,161 +37192,67987135,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93481,Entire home/apt,139,1,12,1.67,9,134 +37193,222476614,Manhattan,Kips Bay,40.74579,-73.97887,Shared room,39,2,6,0.74,3,352 +37194,35303743,Manhattan,Upper West Side,40.76835,-73.98366999999999,Private room,6500,30,0,,1,97 +37195,129559712,Queens,Queens Village,40.71024,-73.72928,Entire home/apt,100,2,42,5.08,1,123 +37196,222480912,Brooklyn,Bushwick,40.70288,-73.9195,Private room,62,2,7,0.87,2,125 +37197,126034120,Manhattan,East Village,40.72576,-73.97685,Private room,125,1,19,2.68,3,230 +37198,222430446,Manhattan,East Village,40.72322,-73.98689,Private room,89,1,48,5.83,2,7 +37199,222430446,Manhattan,East Village,40.7229,-73.98698,Private room,89,1,44,5.59,2,4 +37200,8435480,Brooklyn,Greenpoint,40.72198,-73.94991999999999,Entire home/apt,180,2,41,5.44,2,76 +37201,93031650,Manhattan,Midtown,40.764340000000004,-73.98199,Entire home/apt,300,4,0,,1,0 +37202,1418004,Bronx,Highbridge,40.83217,-73.93148000000001,Private room,45,5,15,2.1,1,123 +37203,165776960,Manhattan,Midtown,40.75935,-73.96422,Entire home/apt,135,30,0,,2,341 +37204,24050629,Brooklyn,Bushwick,40.70125,-73.91982,Entire home/apt,350,2,1,0.16,1,0 +37205,222559543,Brooklyn,East New York,40.6626,-73.87731,Private room,29,1,59,7.25,2,54 +37206,1903737,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.93231,Private room,99,2,0,,3,0 +37207,23983203,Manhattan,Chinatown,40.714909999999996,-73.99878000000001,Entire home/apt,200,2,1,0.12,1,5 +37208,19011946,Brooklyn,Bay Ridge,40.63766,-74.02626,Private room,99,3,1,0.12,2,362 +37209,7878911,Brooklyn,Flatbush,40.63635,-73.95501999999999,Private room,90,3,5,0.59,1,0 +37210,124069492,Brooklyn,Bushwick,40.70264,-73.92514,Private room,65,1,47,5.53,2,29 +37211,217293060,Manhattan,Greenwich Village,40.73429,-73.99675,Entire home/apt,200,5,1,0.12,4,89 +37212,213302863,Manhattan,East Village,40.72348,-73.98321999999999,Entire home/apt,175,3,3,0.36,1,0 +37213,217293060,Manhattan,Greenwich Village,40.734320000000004,-73.99686,Entire home/apt,600,31,0,,4,328 +37214,9229108,Brooklyn,Greenpoint,40.7218,-73.94085,Entire home/apt,250,7,1,0.16,2,35 +37215,2897622,Brooklyn,Bushwick,40.69786,-73.93125,Entire home/apt,200,6,1,0.14,1,26 +37216,41083526,Queens,Sunnyside,40.74322,-73.91989000000001,Entire home/apt,130,4,0,,2,0 +37217,3472283,Brooklyn,Gowanus,40.67022,-73.9914,Entire home/apt,125,3,13,1.65,1,0 +37218,3719653,Brooklyn,Williamsburg,40.71653,-73.94618,Entire home/apt,250,3,0,,1,249 +37219,119134476,Manhattan,Financial District,40.70486,-74.01546,Private room,60,2,1,0.14,1,18 +37220,222626145,Queens,Kew Gardens Hills,40.72292,-73.81635,Entire home/apt,90,1,19,2.42,1,26 +37221,24124835,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95411999999999,Private room,60,25,0,,2,100 +37222,15989323,Brooklyn,Williamsburg,40.7068,-73.94439,Private room,50,4,2,0.31,1,0 +37223,141027957,Brooklyn,Cypress Hills,40.68911,-73.86922,Entire home/apt,60,2,25,3.18,2,289 +37224,41704832,Brooklyn,Bushwick,40.69663,-73.91226,Private room,85,1,29,5.65,1,82 +37225,222659001,Brooklyn,Bedford-Stuyvesant,40.6781,-73.91163,Private room,55,2,26,3.59,4,192 +37226,222691577,Brooklyn,Fort Greene,40.68638,-73.97378,Entire home/apt,250,2,3,0.4,1,28 +37227,20283518,Brooklyn,Williamsburg,40.70516,-73.94423,Private room,85,2,34,4.0,1,74 +37228,222700281,Manhattan,Kips Bay,40.74257,-73.97948000000001,Private room,355,2,5,0.66,1,230 +37229,41233448,Manhattan,Upper East Side,40.76975,-73.9524,Entire home/apt,260,6,2,0.25,1,0 +37230,53413881,Brooklyn,Williamsburg,40.70803,-73.95475,Private room,55,2,4,1.3,1,0 +37231,217642569,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94921,Private room,150,2,5,0.7,3,37 +37232,132383053,Brooklyn,Bedford-Stuyvesant,40.6928,-73.94525,Private room,55,1,45,5.31,1,0 +37233,131476075,Brooklyn,Bushwick,40.68581,-73.91176,Private room,58,1,18,2.14,8,179 +37234,4458360,Brooklyn,Bedford-Stuyvesant,40.68804,-73.92279,Private room,110,2,0,,1,280 +37235,162504107,Brooklyn,Williamsburg,40.71526,-73.94986999999999,Private room,90,2,2,0.33,1,193 +37236,178653055,Manhattan,Upper West Side,40.7826,-73.98006,Entire home/apt,90,5,18,2.18,1,13 +37237,173685298,Manhattan,Midtown,40.75503,-73.97131,Private room,399,1,9,1.23,11,176 +37238,222659001,Brooklyn,Bedford-Stuyvesant,40.677170000000004,-73.91161,Private room,55,2,28,3.43,4,167 +37239,222659001,Brooklyn,Bedford-Stuyvesant,40.67805,-73.91071,Private room,55,2,35,4.25,4,209 +37240,222659001,Brooklyn,Bedford-Stuyvesant,40.67783,-73.91109,Private room,72,1,54,6.43,4,239 +37241,32606852,Manhattan,Upper East Side,40.77063,-73.95819,Entire home/apt,123,4,13,1.94,1,1 +37242,164178160,Brooklyn,Bedford-Stuyvesant,40.69031,-73.95855,Private room,59,3,2,0.24,1,0 +37243,222749009,Manhattan,Washington Heights,40.84427,-73.94216,Private room,45,1,1,0.16,3,66 +37244,41728993,Brooklyn,Williamsburg,40.71518,-73.93982,Private room,95,1,1,0.45,1,0 +37245,25073781,Manhattan,Harlem,40.8084,-73.94439,Private room,65,2,18,2.34,2,188 +37246,211549023,Manhattan,Midtown,40.74749,-73.98816,Entire home/apt,260,2,20,3.23,13,242 +37247,16398038,Manhattan,Upper West Side,40.79306,-73.9676,Entire home/apt,260,5,2,0.24,1,145 +37248,89351775,Queens,Ditmars Steinway,40.77362,-73.91946999999999,Entire home/apt,73,1,69,8.35,1,233 +37249,19184440,Brooklyn,Williamsburg,40.71808,-73.95859,Private room,60,5,1,0.71,1,187 +37250,215588687,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.94668,Shared room,25,2,1,0.13,6,365 +37251,222782619,Brooklyn,Williamsburg,40.7156,-73.95233,Private room,150,2,7,0.86,1,0 +37252,5497326,Manhattan,Upper West Side,40.778729999999996,-73.97845,Entire home/apt,285,7,0,,2,79 +37253,222843411,Brooklyn,Brooklyn Heights,40.69615,-73.99682,Entire home/apt,1000,3,0,,1,363 +37254,2681144,Brooklyn,Flatbush,40.6512,-73.95908,Entire home/apt,81,5,13,1.89,1,8 +37255,137358866,Queens,Woodside,40.74361,-73.90758000000001,Private room,38,30,0,,103,249 +37256,22307859,Brooklyn,Canarsie,40.63677,-73.89416,Private room,70,3,2,0.25,5,86 +37257,99108929,Queens,Sunnyside,40.73753,-73.92233,Shared room,29,5,2,0.27,2,23 +37258,13758411,Manhattan,Upper East Side,40.77807,-73.95003,Entire home/apt,160,1,1,0.15,1,71 +37259,22307859,Brooklyn,Canarsie,40.637840000000004,-73.89406,Private room,98,3,0,,5,361 +37260,22307859,Brooklyn,Flatbush,40.6363,-73.95168000000001,Private room,98,3,0,,5,0 +37261,22307859,Brooklyn,Flatbush,40.6345,-73.9519,Private room,98,3,0,,5,0 +37262,212147885,Brooklyn,Cypress Hills,40.67791,-73.90661999999999,Entire home/apt,150,3,14,1.85,2,153 +37263,204852306,Brooklyn,Bedford-Stuyvesant,40.67954,-73.93276,Private room,35,15,0,,14,0 +37264,204852306,Brooklyn,Bedford-Stuyvesant,40.678540000000005,-73.93204,Private room,50,15,2,0.24,14,0 +37265,948095,Manhattan,East Village,40.72455,-73.9783,Entire home/apt,265,14,2,0.29,1,0 +37266,204852306,Brooklyn,Bedford-Stuyvesant,40.67992,-73.93244,Entire home/apt,211,1,1,0.13,14,38 +37267,40997229,Manhattan,Upper West Side,40.79487,-73.96304,Private room,160,3,3,0.38,1,5 +37268,190921808,Manhattan,Hell's Kitchen,40.753890000000006,-73.99518,Private room,99,7,5,0.69,47,332 +37269,1940275,Manhattan,SoHo,40.72498,-74.00262,Entire home/apt,170,2,19,2.64,1,184 +37270,287348,Manhattan,Chelsea,40.749190000000006,-74.00376999999999,Entire home/apt,299,2,7,0.9,1,0 +37271,19920574,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.9515,Entire home/apt,150,4,2,0.26,1,0 +37272,1286471,Brooklyn,Bedford-Stuyvesant,40.69487,-73.95583,Entire home/apt,200,2,1,0.68,1,6 +37273,6814283,Brooklyn,Bushwick,40.70218,-73.93034,Entire home/apt,140,3,3,0.48,1,0 +37274,12837247,Brooklyn,Williamsburg,40.7188,-73.94417,Entire home/apt,220,2,0,,1,0 +37275,221284411,Brooklyn,East Flatbush,40.65234,-73.95145,Private room,35,28,7,1.09,1,55 +37276,222901071,Manhattan,Battery Park City,40.7118,-74.01678000000001,Entire home/apt,125,4,2,0.26,1,0 +37277,222909571,Brooklyn,Bedford-Stuyvesant,40.67921,-73.93975,Private room,90,2,3,0.37,1,329 +37278,9489892,Manhattan,Hell's Kitchen,40.76186,-73.98850999999999,Private room,99,1,15,1.81,1,0 +37279,129222253,Bronx,Williamsbridge,40.87831,-73.86511,Entire home/apt,350,2,3,0.41,3,323 +37280,45599567,Queens,Long Island City,40.74881,-73.93885,Private room,70,14,1,0.16,1,0 +37281,222285897,Manhattan,Morningside Heights,40.80431,-73.96512,Private room,98,1,23,3.22,4,64 +37282,137358866,Manhattan,Harlem,40.81798,-73.94157,Private room,40,30,2,0.38,103,246 +37283,29746291,Brooklyn,Prospect-Lefferts Gardens,40.65931,-73.95371,Entire home/apt,150,5,5,0.68,1,3 +37284,34911780,Manhattan,Inwood,40.859609999999996,-73.92911,Private room,66,3,1,0.12,2,107 +37285,217101766,Manhattan,Upper East Side,40.77664,-73.95749,Private room,200,2,0,,1,0 +37286,222990788,Brooklyn,Williamsburg,40.71018,-73.94671,Private room,100,1,4,0.52,1,0 +37287,223000151,Brooklyn,Bedford-Stuyvesant,40.68636,-73.91711,Private room,75,4,17,4.02,1,9 +37288,80102605,Manhattan,East Village,40.72766,-73.97715,Entire home/apt,150,1,4,0.53,1,5 +37289,67516962,Brooklyn,Park Slope,40.66827,-73.98205,Entire home/apt,125,5,2,0.76,1,9 +37290,222285897,Manhattan,Morningside Heights,40.80441,-73.96351999999999,Private room,85,1,46,5.59,4,20 +37291,223007347,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95204,Entire home/apt,175,2,21,2.86,1,164 +37292,222285897,Manhattan,Morningside Heights,40.8042,-73.96491,Private room,90,1,42,5.04,4,61 +37293,65498336,Manhattan,East Harlem,40.78918,-73.94787,Entire home/apt,199,1,41,5.37,1,228 +37294,21703883,Manhattan,Hell's Kitchen,40.762890000000006,-73.99486999999999,Entire home/apt,250,2,6,0.75,1,0 +37295,155027850,Brooklyn,Bergen Beach,40.61954,-73.91133,Entire home/apt,85,5,17,2.24,1,305 +37296,223027077,Manhattan,Upper East Side,40.7631,-73.95866,Entire home/apt,150,1,2,0.25,1,0 +37297,22178020,Manhattan,Chinatown,40.71787,-73.99461,Entire home/apt,100,3,3,3.0,1,301 +37298,68014876,Manhattan,Midtown,40.76279,-73.97494,Entire home/apt,399,1,36,4.29,1,201 +37299,33213436,Brooklyn,Gowanus,40.67955,-73.98435,Private room,149,1,7,0.95,8,365 +37300,160050819,Manhattan,East Village,40.72683,-73.97993000000001,Entire home/apt,250,4,1,0.3,1,0 +37301,33213436,Brooklyn,Gowanus,40.679829999999995,-73.98408,Private room,139,1,16,2.04,8,363 +37302,39483399,Brooklyn,Fort Greene,40.69319,-73.98226,Entire home/apt,100,5,0,,1,0 +37303,37040186,Brooklyn,Williamsburg,40.70308,-73.94893,Entire home/apt,250,1,1,0.16,1,178 +37304,223032162,Brooklyn,Boerum Hill,40.68612,-73.98988,Entire home/apt,174,2,9,1.13,2,3 +37305,223032610,Brooklyn,Clinton Hill,40.69194,-73.96426,Entire home/apt,150,3,15,1.88,1,19 +37306,4341365,Manhattan,SoHo,40.722429999999996,-74.00027,Private room,80,5,1,0.24,1,0 +37307,215387072,Brooklyn,Bedford-Stuyvesant,40.68193,-73.91252,Private room,100,3,6,0.95,3,348 +37308,222178766,Brooklyn,Flatbush,40.64767,-73.96236,Private room,75,1,7,0.85,1,133 +37309,57773455,Brooklyn,Cobble Hill,40.68691,-73.99818,Entire home/apt,109,3,3,0.37,1,0 +37310,223032162,Brooklyn,Boerum Hill,40.68602,-73.99023000000001,Private room,65,2,15,1.8,2,0 +37311,89000911,Queens,Middle Village,40.7258,-73.87071,Private room,65,1,0,,2,0 +37312,79576043,Brooklyn,Williamsburg,40.71521,-73.94473,Private room,40,28,0,,1,0 +37313,23954256,Manhattan,Chelsea,40.750240000000005,-73.99686,Entire home/apt,189,1,7,0.86,1,2 +37314,222136360,Brooklyn,Borough Park,40.647490000000005,-73.99646,Private room,45,1,8,0.96,1,6 +37315,219720888,Queens,Long Island City,40.75918,-73.93299,Entire home/apt,120,1,30,3.66,1,6 +37316,32295097,Manhattan,Lower East Side,40.71454,-73.98782,Private room,125,2,33,4.06,2,191 +37317,23788168,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93711,Private room,45,10,8,0.96,1,61 +37318,24799369,Manhattan,Hell's Kitchen,40.76381,-73.9919,Private room,120,5,1,0.16,1,0 +37319,153754513,Brooklyn,Williamsburg,40.712579999999996,-73.94306999999999,Entire home/apt,82,1,15,2.02,1,16 +37320,4138139,Brooklyn,Crown Heights,40.67306,-73.95509,Private room,72,4,3,1.73,1,16 +37321,9358058,Brooklyn,Williamsburg,40.71131,-73.95669000000001,Entire home/apt,200,3,3,0.38,1,35 +37322,17031708,Brooklyn,Williamsburg,40.71301,-73.94846,Private room,500,3,1,0.14,1,180 +37323,59808986,Brooklyn,East Flatbush,40.64841,-73.94516,Entire home/apt,110,1,20,2.41,3,290 +37324,14906911,Brooklyn,Williamsburg,40.71867,-73.95161999999999,Private room,75,1,3,0.37,1,0 +37325,8814258,Queens,South Ozone Park,40.673,-73.79552,Private room,64,3,1,1.0,7,195 +37326,35728189,Brooklyn,Bedford-Stuyvesant,40.69383,-73.95268,Private room,100,30,13,1.55,3,336 +37327,34075689,Queens,Maspeth,40.7221,-73.90223,Entire home/apt,100,7,23,2.86,3,88 +37328,63227531,Staten Island,Randall Manor,40.62743,-74.12261,Entire home/apt,140,2,12,1.57,2,340 +37329,5855485,Manhattan,Lower East Side,40.71924,-73.98507,Private room,83,2,3,3.0,1,6 +37330,218048903,Manhattan,Hell's Kitchen,40.75983,-73.99064,Entire home/apt,200,2,17,2.13,1,254 +37331,41323748,Manhattan,Washington Heights,40.834140000000005,-73.94565,Entire home/apt,125,5,18,2.19,1,1 +37332,26219578,Brooklyn,Bedford-Stuyvesant,40.690709999999996,-73.94478000000001,Private room,32,3,0,,1,48 +37333,210339363,Queens,Woodhaven,40.68639,-73.86088000000001,Private room,60,5,11,1.44,2,17 +37334,32418402,Brooklyn,Crown Heights,40.67223,-73.93027,Private room,89,2,4,4.0,2,88 +37335,7832790,Queens,Astoria,40.76416,-73.91320999999999,Private room,90,1,7,1.0,2,49 +37336,57294763,Queens,Rego Park,40.73355,-73.85856,Entire home/apt,155,30,0,,1,125 +37337,222270217,Brooklyn,Greenpoint,40.73291,-73.95989,Entire home/apt,139,3,36,4.48,1,58 +37338,108426646,Brooklyn,Williamsburg,40.71205,-73.95838,Private room,70,3,4,0.48,1,0 +37339,14898658,Brooklyn,Kensington,40.64243,-73.98049,Private room,42,1,4,0.59,11,88 +37340,17076157,Manhattan,Chinatown,40.71859,-73.9958,Private room,85,4,5,1.35,1,0 +37341,68198631,Brooklyn,Prospect-Lefferts Gardens,40.663540000000005,-73.95506999999999,Entire home/apt,860,2,4,0.49,1,23 +37342,223180509,Manhattan,East Village,40.72399,-73.98261,Entire home/apt,195,1,54,6.45,1,181 +37343,204852306,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93256,Private room,75,15,0,,14,0 +37344,126510786,Manhattan,SoHo,40.72306,-74.00005999999999,Private room,120,1,1,0.13,1,0 +37345,204852306,Brooklyn,Bedford-Stuyvesant,40.67974,-73.93134,Private room,65,15,0,,14,0 +37346,204852306,Brooklyn,Bedford-Stuyvesant,40.67937,-73.93262,Private room,45,15,0,,14,0 +37347,204852306,Brooklyn,Bedford-Stuyvesant,40.67817,-73.93198000000001,Shared room,35,15,0,,14,0 +37348,204852306,Brooklyn,Bedford-Stuyvesant,40.67784,-73.93236,Shared room,30,15,0,,14,0 +37349,204852306,Brooklyn,Bedford-Stuyvesant,40.67775,-73.93200999999999,Shared room,30,15,0,,14,0 +37350,204852306,Brooklyn,Bedford-Stuyvesant,40.67801,-73.93141999999999,Shared room,35,15,0,,14,0 +37351,137358866,Queens,Jackson Heights,40.75023,-73.87895999999999,Private room,31,30,2,0.62,103,269 +37352,127828600,Bronx,Concourse,40.827729999999995,-73.92308,Private room,100,1,2,0.26,1,177 +37353,137358866,Queens,Elmhurst,40.74293,-73.87908,Private room,42,30,0,,103,0 +37354,204852306,Brooklyn,Bedford-Stuyvesant,40.67931,-73.93212,Private room,75,15,0,,14,0 +37355,223198021,Brooklyn,Prospect-Lefferts Gardens,40.66235,-73.94619,Entire home/apt,165,2,19,2.3,1,102 +37356,223198779,Manhattan,East Harlem,40.79112,-73.93606,Entire home/apt,95,5,20,2.43,1,56 +37357,204852306,Brooklyn,Bedford-Stuyvesant,40.67862,-73.93226999999999,Private room,41,15,0,,14,0 +37358,7863991,Brooklyn,Williamsburg,40.71922,-73.94258,Entire home/apt,250,2,23,3.17,1,311 +37359,58377909,Queens,Ridgewood,40.69956,-73.90751999999999,Private room,30,6,2,0.26,1,0 +37360,304262,Manhattan,Lower East Side,40.71555,-73.98949,Entire home/apt,165,30,0,,1,353 +37361,223208290,Manhattan,Midtown,40.76562,-73.98233,Private room,250,4,1,0.14,1,3 +37362,4452717,Brooklyn,Williamsburg,40.71797,-73.95441,Entire home/apt,200,3,0,,1,5 +37363,2967914,Brooklyn,Williamsburg,40.71435,-73.96292,Private room,102,1,56,6.8,2,14 +37364,223191465,Brooklyn,Williamsburg,40.71131,-73.94156,Entire home/apt,200,3,29,3.57,2,144 +37365,223219744,Queens,Jamaica,40.69441,-73.78954,Private room,60,2,2,0.32,1,180 +37366,2967914,Brooklyn,Williamsburg,40.71304,-73.96238000000001,Private room,102,1,48,5.81,2,20 +37367,16502641,Brooklyn,South Slope,40.66036,-73.98494000000001,Entire home/apt,93,5,10,1.6,1,2 +37368,222755851,Manhattan,Upper West Side,40.79896,-73.96183,Private room,110,3,5,0.62,2,176 +37369,223238601,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93364,Private room,70,5,8,2.82,1,307 +37370,152395213,Queens,Astoria,40.76332,-73.92478,Private room,80,5,16,2.0,1,29 +37371,221751961,Staten Island,Oakwood,40.56028,-74.10678,Private room,46,1,4,0.51,1,0 +37372,2930482,Queens,Ridgewood,40.70177,-73.89797,Private room,75,1,1,0.13,1,0 +37373,32295097,Manhattan,Lower East Side,40.71434,-73.98640999999999,Private room,125,2,28,3.39,2,255 +37374,20087466,Manhattan,East Village,40.724340000000005,-73.98018,Entire home/apt,110,3,15,1.89,1,0 +37375,222755851,Manhattan,Upper West Side,40.79896,-73.96027,Private room,145,1,2,0.24,2,0 +37376,162938514,Brooklyn,Williamsburg,40.711209999999994,-73.95028,Entire home/apt,250,2,24,3.01,1,282 +37377,10552196,Manhattan,Hell's Kitchen,40.76158,-73.99175,Shared room,100,1,2,0.24,1,363 +37378,302885,Manhattan,SoHo,40.72197,-74.00401,Private room,200,3,0,,3,0 +37379,1887283,Manhattan,Chinatown,40.71415,-73.99255,Entire home/apt,121,2,8,1.07,1,0 +37380,2856748,Manhattan,Midtown,40.75565,-73.9634,Entire home/apt,330,30,0,,49,365 +37381,21610233,Manhattan,Battery Park City,40.71756,-74.01659000000001,Entire home/apt,650,7,0,,1,12 +37382,777522,Brooklyn,Clinton Hill,40.68424,-73.96661,Entire home/apt,105,1,3,0.4,1,0 +37383,35033777,Brooklyn,Williamsburg,40.70572,-73.93387,Entire home/apt,110,30,0,,1,262 +37384,179336958,Manhattan,Midtown,40.74595,-73.98509,Private room,65,3,3,1.53,6,359 +37385,57400178,Bronx,Allerton,40.86923,-73.86275,Entire home/apt,90,5,1,0.16,1,157 +37386,223340140,Manhattan,East Harlem,40.79793,-73.94334,Entire home/apt,109,1,3,0.45,1,0 +37387,198395530,Brooklyn,Williamsburg,40.71217,-73.95888000000001,Private room,68,5,1,0.12,1,0 +37388,223345099,Manhattan,Chinatown,40.71431,-73.99275,Entire home/apt,170,3,22,2.84,1,128 +37389,223248121,Manhattan,Kips Bay,40.743190000000006,-73.98074,Shared room,39,2,1,0.16,1,365 +37390,62234273,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92012,Entire home/apt,100,3,35,4.25,1,283 +37391,220762164,Queens,St. Albans,40.69161,-73.76326,Entire home/apt,298,2,12,1.51,4,365 +37392,183417610,Queens,Elmhurst,40.7409,-73.87738,Private room,180,1,3,0.39,3,88 +37393,84077949,Manhattan,Roosevelt Island,40.7662,-73.94676,Entire home/apt,250,3,2,0.31,1,1 +37394,55693494,Brooklyn,Williamsburg,40.71309,-73.96330999999999,Private room,120,2,13,1.73,1,108 +37395,183417610,Queens,Elmhurst,40.738409999999995,-73.87751,Private room,180,1,0,,3,0 +37396,144167745,Brooklyn,Sunset Park,40.64335,-74.02255,Private room,50,2,39,6.19,1,31 +37397,8587936,Brooklyn,Williamsburg,40.71823,-73.96141,Entire home/apt,180,3,0,,1,0 +37398,137380710,Manhattan,Harlem,40.82723,-73.94216999999999,Private room,40,5,1,0.21,1,0 +37399,223374565,Manhattan,Midtown,40.743759999999995,-73.98355,Entire home/apt,189,4,16,2.11,1,323 +37400,15197115,Manhattan,West Village,40.73513,-74.0063,Entire home/apt,500,2,3,1.55,1,5 +37401,1472433,Brooklyn,Williamsburg,40.70758,-73.94134,Private room,56,5,1,0.13,2,10 +37402,183417610,Queens,Elmhurst,40.74085,-73.87682,Private room,180,1,0,,3,0 +37403,215540583,Manhattan,East Harlem,40.79018,-73.94014,Private room,78,10,13,1.83,1,68 +37404,223393782,Brooklyn,Cypress Hills,40.68983,-73.86905,Private room,45,3,6,0.78,1,6 +37405,18283992,Brooklyn,Williamsburg,40.719,-73.96419,Entire home/apt,250,2,2,0.33,1,0 +37406,223401516,Brooklyn,Bedford-Stuyvesant,40.68424,-73.92828,Private room,65,2,34,4.2,1,175 +37407,861848,Brooklyn,Bedford-Stuyvesant,40.69093,-73.92754000000001,Private room,68,2,0,,2,0 +37408,31039254,Brooklyn,East Flatbush,40.64843,-73.93549,Private room,45,1,8,5.0,1,334 +37409,77304447,Manhattan,Harlem,40.81834,-73.95583,Private room,42,5,34,4.23,3,40 +37410,38299001,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93387,Private room,55,1,0,,1,0 +37411,142641298,Brooklyn,Bedford-Stuyvesant,40.69251,-73.94549,Private room,100,1,1,0.13,1,0 +37412,13392472,Manhattan,Lower East Side,40.72085,-73.98945,Private room,103,3,38,4.58,1,99 +37413,223422291,Queens,Ridgewood,40.702420000000004,-73.90403,Entire home/apt,115,3,15,1.88,1,10 +37414,223418394,Manhattan,Washington Heights,40.84726,-73.93866,Entire home/apt,90,1,15,1.87,1,170 +37415,617537,Brooklyn,Bushwick,40.6952,-73.91535,Private room,85,3,35,4.34,1,127 +37416,223426581,Manhattan,East Village,40.72535,-73.98794000000001,Entire home/apt,229,2,21,2.58,1,70 +37417,104246751,Brooklyn,Bedford-Stuyvesant,40.692370000000004,-73.94314,Private room,95,1,36,4.34,1,79 +37418,223431967,Queens,Flushing,40.72915,-73.79448000000001,Private room,70,2,0,,1,95 +37419,223431101,Manhattan,Morningside Heights,40.80434,-73.9649,Private room,80,1,28,3.53,3,8 +37420,19289434,Manhattan,Upper East Side,40.761179999999996,-73.96036,Entire home/apt,140,3,1,0.22,1,0 +37421,57128179,Queens,Rego Park,40.71605,-73.85854,Private room,66,1,24,2.99,2,327 +37422,198021963,Brooklyn,Borough Park,40.61979,-73.98886,Private room,20,1,12,1.66,1,14 +37423,3644693,Queens,Jackson Heights,40.75166,-73.88088,Private room,68,28,5,0.61,2,0 +37424,324657,Brooklyn,Park Slope,40.67918,-73.97408,Entire home/apt,108,3,15,1.87,1,8 +37425,5226176,Brooklyn,Williamsburg,40.71093,-73.96406999999999,Entire home/apt,143,5,2,0.24,1,9 +37426,24561601,Manhattan,Hell's Kitchen,40.766290000000005,-73.98816,Entire home/apt,132,2,10,1.25,1,3 +37427,223504937,Staten Island,Randall Manor,40.62692,-74.1299,Entire home/apt,109,3,21,4.44,1,121 +37428,30627525,Manhattan,Chelsea,40.73798,-73.99253,Entire home/apt,200,3,10,1.35,1,263 +37429,5224789,Manhattan,Hell's Kitchen,40.76072,-73.98993,Entire home/apt,150,4,3,0.44,1,3 +37430,5735865,Manhattan,Upper West Side,40.80254,-73.96723,Private room,70,3,23,2.9,1,87 +37431,8533032,Brooklyn,Carroll Gardens,40.67414,-73.99961,Entire home/apt,130,4,5,0.63,1,10 +37432,1575480,Manhattan,Upper East Side,40.77081,-73.94944,Entire home/apt,195,30,1,0.16,1,143 +37433,48194192,Brooklyn,Clinton Hill,40.69509,-73.96462,Entire home/apt,191,1,42,5.94,4,28 +37434,61684829,Manhattan,Harlem,40.806020000000004,-73.95626999999999,Entire home/apt,250,3,2,0.27,1,0 +37435,54377368,Manhattan,Lower East Side,40.721,-73.99218,Entire home/apt,350,2,5,0.74,1,326 +37436,95642648,Manhattan,Lower East Side,40.72036,-73.98883000000001,Shared room,147,3,9,1.32,2,0 +37437,63966927,Brooklyn,Bedford-Stuyvesant,40.6956,-73.93739000000001,Private room,50,1,5,0.65,1,188 +37438,82286,Brooklyn,Bedford-Stuyvesant,40.68615,-73.9356,Entire home/apt,79,3,2,0.25,1,157 +37439,153503882,Brooklyn,Greenpoint,40.72795,-73.95481,Entire home/apt,150,2,8,1.03,1,0 +37440,22200018,Brooklyn,Bedford-Stuyvesant,40.68405,-73.93401,Private room,70,2,11,1.45,2,71 +37441,36288249,Queens,Long Island City,40.7478,-73.94113,Private room,200,29,14,1.7,1,364 +37442,57128179,Queens,Rego Park,40.716390000000004,-73.85799,Private room,60,2,12,1.45,2,19 +37443,259123,Manhattan,Greenwich Village,40.73492,-73.99604000000001,Entire home/apt,300,2,2,0.26,1,11 +37444,187496935,Brooklyn,Williamsburg,40.71024,-73.95834,Entire home/apt,200,2,8,1.0,1,5 +37445,223548766,Manhattan,Upper West Side,40.77221,-73.9875,Private room,100,2,15,1.81,1,58 +37446,223553290,Brooklyn,Cypress Hills,40.67948,-73.89313,Entire home/apt,200,1,5,1.21,1,360 +37447,205131610,Brooklyn,Canarsie,40.64376,-73.90833,Private room,68,2,3,0.47,3,365 +37448,222483970,Manhattan,East Village,40.72316,-73.98703,Private room,55,1,35,4.39,1,0 +37449,223574944,Manhattan,Kips Bay,40.74355,-73.97936,Shared room,39,2,2,0.52,2,326 +37450,203302656,Brooklyn,Prospect-Lefferts Gardens,40.662490000000005,-73.95075,Entire home/apt,2545,90,0,,1,180 +37451,104814095,Queens,East Elmhurst,40.75967,-73.88335,Private room,50,1,10,1.37,3,85 +37452,223578316,Manhattan,Financial District,40.7041,-74.0155,Entire home/apt,160,1,27,3.28,1,302 +37453,185908506,Bronx,Edenwald,40.885,-73.83518000000001,Private room,75,3,1,0.13,3,311 +37454,219490225,Manhattan,West Village,40.73881,-74.00398,Entire home/apt,399,2,29,3.83,1,234 +37455,222179066,Brooklyn,Bedford-Stuyvesant,40.68775,-73.92581,Entire home/apt,115,1,89,11.03,1,278 +37456,14631757,Manhattan,Harlem,40.83039,-73.94721,Entire home/apt,150,1,5,0.67,1,319 +37457,213208277,Queens,South Ozone Park,40.67098,-73.79656999999999,Shared room,34,4,0,,8,365 +37458,213208277,Queens,South Ozone Park,40.6728,-73.79495,Private room,59,4,2,0.33,8,365 +37459,44358422,Brooklyn,Flatbush,40.63919,-73.95219,Private room,38,1,2,0.27,1,238 +37460,9632197,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94712,Private room,45,2,23,3.61,1,50 +37461,2299134,Brooklyn,Williamsburg,40.72034,-73.95626,Entire home/apt,100,3,2,0.4,1,2 +37462,223667060,Brooklyn,Bushwick,40.69293,-73.90536999999999,Entire home/apt,100,1,4,0.48,1,35 +37463,140930693,Bronx,Mott Haven,40.81177,-73.92726,Private room,60,1,29,3.54,2,304 +37464,13466647,Brooklyn,Carroll Gardens,40.68333,-73.99831,Entire home/apt,155,3,8,1.06,1,0 +37465,30177875,Brooklyn,Crown Heights,40.67452,-73.95906,Entire home/apt,120,4,3,0.47,1,7 +37466,35244416,Manhattan,Upper East Side,40.77828,-73.95492,Private room,275,1,0,,1,0 +37467,220229838,Manhattan,Midtown,40.7637,-73.97421999999999,Private room,191,2,5,3.0,11,217 +37468,113834719,Manhattan,Chelsea,40.75169,-74.00381999999999,Entire home/apt,350,3,0,,1,0 +37469,732460,Brooklyn,Williamsburg,40.71067,-73.96629,Entire home/apt,120,29,1,0.14,7,0 +37470,212698653,Manhattan,Upper East Side,40.76725,-73.95971,Entire home/apt,500,5,0,,1,84 +37471,732460,Brooklyn,Williamsburg,40.70898,-73.96596,Entire home/apt,120,29,2,0.38,7,0 +37472,217652530,Queens,Jamaica,40.67352,-73.77956999999999,Entire home/apt,485,1,24,2.99,4,347 +37473,217652530,Queens,Jamaica,40.67385,-73.77874,Private room,125,1,1,1.0,4,253 +37474,58077160,Manhattan,Hell's Kitchen,40.76579,-73.98557,Private room,140,6,1,0.13,1,0 +37475,217652530,Queens,Jamaica,40.67233,-73.77750999999999,Private room,125,1,2,0.32,4,253 +37476,72957132,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95499000000001,Private room,63,2,13,1.72,3,321 +37477,72957132,Brooklyn,Bedford-Stuyvesant,40.6847,-73.95532,Private room,70,2,23,2.95,3,293 +37478,217652530,Queens,Jamaica,40.67205,-73.77721,Private room,180,1,0,,4,253 +37479,223723845,Brooklyn,Bushwick,40.70717,-73.92126,Private room,50,4,3,0.42,1,40 +37480,4317615,Manhattan,Harlem,40.82188,-73.95391,Private room,70,30,0,,2,249 +37481,30240946,Manhattan,Washington Heights,40.85155,-73.92967,Private room,42,7,0,,1,0 +37482,45618730,Brooklyn,Bedford-Stuyvesant,40.69405,-73.94411,Private room,60,2,11,1.38,1,0 +37483,223741555,Queens,Long Island City,40.748129999999996,-73.93852,Private room,69,5,4,0.53,1,0 +37484,20579643,Manhattan,Washington Heights,40.83627,-73.94329,Private room,40,2,1,0.83,1,51 +37485,223817242,Brooklyn,Bedford-Stuyvesant,40.687740000000005,-73.93699000000001,Entire home/apt,120,1,36,4.62,1,334 +37486,11880311,Brooklyn,Carroll Gardens,40.68261,-73.99096999999999,Private room,50,2,6,1.1,2,0 +37487,223346842,Manhattan,Harlem,40.80551,-73.95136,Private room,92,2,44,5.57,3,51 +37488,223846870,Queens,Springfield Gardens,40.66102,-73.77035,Private room,50,1,57,7.28,3,342 +37489,76327788,Manhattan,Murray Hill,40.74633,-73.97586,Entire home/apt,155,5,14,1.74,1,29 +37490,223855863,Brooklyn,Williamsburg,40.71841,-73.95224,Entire home/apt,200,3,0,,1,111 +37491,215041024,Queens,Edgemere,40.5939,-73.77360999999999,Entire home/apt,80,7,1,0.94,1,87 +37492,11880311,Brooklyn,Carroll Gardens,40.68345,-73.99094000000001,Entire home/apt,138,7,3,0.37,2,0 +37493,223869982,Brooklyn,Bedford-Stuyvesant,40.69495,-73.93509,Private room,100,7,0,,1,0 +37494,71560458,Queens,Bayswater,40.605129999999996,-73.77024,Entire home/apt,151,2,33,4.21,1,309 +37495,42979789,Brooklyn,Williamsburg,40.70845,-73.9402,Private room,85,3,7,1.0,1,42 +37496,223886475,Brooklyn,Carroll Gardens,40.68564,-73.99201,Entire home/apt,170,2,8,2.79,1,0 +37497,861848,Brooklyn,Bedford-Stuyvesant,40.69299,-73.92934,Entire home/apt,81,3,6,0.73,2,0 +37498,24046264,Brooklyn,Williamsburg,40.71845,-73.96240999999999,Entire home/apt,150,3,4,0.5,1,69 +37499,209163615,Brooklyn,Bedford-Stuyvesant,40.68377,-73.94489,Private room,85,1,1,0.16,1,12 +37500,214173940,Manhattan,Theater District,40.759409999999995,-73.98794000000001,Private room,62,1,7,0.87,1,9 +37501,223431101,Manhattan,Morningside Heights,40.8043,-73.96342,Private room,75,1,37,4.72,3,10 +37502,193502084,Brooklyn,Borough Park,40.64049,-74.00255,Private room,40,1,5,0.61,8,0 +37503,169647759,Manhattan,East Harlem,40.79078,-73.94547,Entire home/apt,100,1,11,1.34,1,0 +37504,223807986,Brooklyn,Vinegar Hill,40.700790000000005,-73.98512,Entire home/apt,275,1,1,0.13,1,0 +37505,33041007,Manhattan,Midtown,40.74559,-73.98550999999999,Private room,139,4,14,1.75,1,28 +37506,215229943,Manhattan,Hell's Kitchen,40.76458,-73.98686,Private room,98,5,8,0.98,1,179 +37507,223913025,Queens,Cambria Heights,40.69597,-73.74306999999999,Private room,100,7,1,0.12,1,0 +37508,1240933,Brooklyn,Greenpoint,40.72725,-73.95617,Private room,100,7,10,1.38,1,353 +37509,151280982,Manhattan,Midtown,40.765229999999995,-73.98054,Private room,100,2,0,,1,0 +37510,4858280,Brooklyn,Williamsburg,40.70343,-73.94894000000001,Entire home/apt,149,6,7,0.96,1,4 +37511,78080379,Brooklyn,Bushwick,40.689440000000005,-73.907,Private room,75,5,0,,1,250 +37512,131647128,Manhattan,Upper West Side,40.77384,-73.98917,Entire home/apt,260,30,6,1.58,25,257 +37513,52370129,Brooklyn,Bay Ridge,40.62461,-74.0297,Private room,60,2,9,1.16,2,31 +37514,17910174,Manhattan,West Village,40.73207,-74.00322,Entire home/apt,160,30,0,,1,0 +37515,149929,Brooklyn,Fort Greene,40.69083,-73.97301,Entire home/apt,135,5,21,2.7,5,206 +37516,41389252,Brooklyn,Bedford-Stuyvesant,40.67893,-73.94318,Private room,60,3,7,1.59,1,58 +37517,39607226,Brooklyn,Bushwick,40.688559999999995,-73.91903,Entire home/apt,119,3,6,0.79,1,4 +37518,51338091,Manhattan,Harlem,40.82816,-73.93826999999999,Entire home/apt,130,7,1,0.16,1,280 +37519,223346842,Manhattan,Harlem,40.80679,-73.95105,Private room,75,2,12,1.55,3,0 +37520,22345627,Manhattan,East Harlem,40.80556,-73.94071,Entire home/apt,150,7,1,0.13,1,66 +37521,864766,Brooklyn,Park Slope,40.66912,-73.97493,Entire home/apt,150,5,6,0.74,1,0 +37522,224029433,Brooklyn,Clinton Hill,40.68215,-73.96526,Entire home/apt,250,3,15,1.99,1,43 +37523,44457589,Manhattan,SoHo,40.72611,-74.00251999999999,Entire home/apt,200,11,3,0.41,2,17 +37524,223346842,Manhattan,Harlem,40.80475,-73.95081,Private room,79,2,43,5.47,3,43 +37525,3783926,Manhattan,East Village,40.7281,-73.98293000000001,Private room,250,1,2,0.24,1,180 +37526,52033043,Manhattan,Harlem,40.79927,-73.95384,Private room,89,2,22,2.84,1,0 +37527,28418563,Manhattan,East Village,40.72546,-73.98396,Entire home/apt,179,1,20,2.65,1,268 +37528,224042160,Brooklyn,East Flatbush,40.650459999999995,-73.95067,Private room,38,2,11,1.51,3,365 +37529,58266933,Queens,Astoria,40.75805,-73.90926999999999,Private room,25,7,2,0.29,1,66 +37530,4317615,Manhattan,Harlem,40.820640000000004,-73.9537,Private room,150,1,11,1.43,2,0 +37531,18272280,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94179,Private room,43,1,10,1.33,2,2 +37532,194954408,Manhattan,Midtown,40.75175,-73.98499,Entire home/apt,295,28,4,0.51,1,147 +37533,5845384,Brooklyn,Carroll Gardens,40.683009999999996,-73.99677,Entire home/apt,215,5,0,,1,33 +37534,224056583,Brooklyn,Sheepshead Bay,40.6058,-73.95336999999999,Private room,75,7,4,0.51,1,311 +37535,224062220,Brooklyn,East Flatbush,40.65155,-73.92907,Private room,80,1,22,2.76,1,162 +37536,6458347,Manhattan,Chelsea,40.74499,-73.99845,Private room,180,1,2,0.31,1,158 +37537,3335791,Manhattan,Kips Bay,40.74406,-73.98003,Private room,99,3,7,0.93,1,0 +37538,22464812,Brooklyn,Kensington,40.64261,-73.9835,Entire home/apt,200,1,24,3.27,1,290 +37539,59459840,Manhattan,East Harlem,40.79831,-73.94201,Entire home/apt,95,3,4,4.0,1,88 +37540,20037314,Queens,Astoria,40.76339,-73.92249,Private room,97,2,0,,1,249 +37541,107161778,Brooklyn,Crown Heights,40.66531,-73.93267,Private room,100,4,0,,1,0 +37542,110058188,Queens,Flushing,40.76016,-73.82672,Private room,57,1,13,3.28,1,347 +37543,94546995,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94554000000001,Entire home/apt,75,3,15,2.47,1,4 +37544,1172202,Queens,Ditmars Steinway,40.76984,-73.90779,Private room,45,1,7,2.5,5,29 +37545,10928484,Brooklyn,Williamsburg,40.71843,-73.94199,Private room,299,4,0,,1,35 +37546,224141746,Manhattan,West Village,40.731759999999994,-74.00428000000001,Entire home/apt,179,7,3,0.49,1,10 +37547,32346001,Brooklyn,Bushwick,40.6989,-73.9246,Entire home/apt,160,2,19,2.38,2,0 +37548,103216104,Brooklyn,Bedford-Stuyvesant,40.684090000000005,-73.94965,Private room,60,7,1,0.12,1,0 +37549,120245209,Brooklyn,Canarsie,40.63535,-73.89493,Private room,55,1,7,1.08,2,126 +37550,20241112,Brooklyn,Prospect-Lefferts Gardens,40.655809999999995,-73.95732,Entire home/apt,85,3,12,1.6,1,263 +37551,8344401,Brooklyn,Bedford-Stuyvesant,40.69331,-73.94918,Entire home/apt,185,1,4,4.0,1,3 +37552,224176858,Queens,Maspeth,40.73183,-73.89787,Private room,50,1,4,0.56,1,137 +37553,213183791,Queens,Corona,40.74419,-73.85861,Private room,110,1,1,0.16,1,357 +37554,48823279,Manhattan,East Harlem,40.79875,-73.93643,Private room,125,3,2,0.32,1,238 +37555,120939023,Brooklyn,Williamsburg,40.71818,-73.95945,Entire home/apt,300,2,15,2.06,2,273 +37556,220129825,Queens,Jamaica,40.67367,-73.78157,Entire home/apt,160,1,3,0.41,2,359 +37557,224190427,Manhattan,Upper West Side,40.801829999999995,-73.96542,Private room,68,1,14,2.02,1,12 +37558,57146691,Manhattan,Midtown,40.755140000000004,-73.96746,Entire home/apt,250,3,0,,1,0 +37559,53103368,Brooklyn,Williamsburg,40.70701,-73.94445999999999,Private room,65,2,0,,1,6 +37560,63875726,Manhattan,Murray Hill,40.744409999999995,-73.97328,Entire home/apt,215,5,0,,1,51 +37561,49701856,Brooklyn,Bushwick,40.69222,-73.90695,Entire home/apt,150,3,22,2.89,1,50 +37562,224204301,Bronx,Mott Haven,40.8114,-73.92747,Private room,60,1,48,6.96,2,296 +37563,13460069,Queens,Flushing,40.73333,-73.79514,Entire home/apt,500,1,0,,1,365 +37564,224206042,Bronx,Allerton,40.86116,-73.86248,Entire home/apt,55,3,26,3.36,1,349 +37565,157703622,Manhattan,Lower East Side,40.71707,-73.98931,Entire home/apt,200,30,0,,2,97 +37566,194377255,Queens,East Elmhurst,40.76299,-73.86976,Private room,65,1,22,4.26,4,349 +37567,152202371,Bronx,Mott Haven,40.81,-73.92654,Private room,65,1,35,4.32,1,295 +37568,224048389,Brooklyn,Sunset Park,40.64198,-74.01809,Private room,48,3,2,0.25,1,0 +37569,194377255,Queens,East Elmhurst,40.761990000000004,-73.88331,Private room,38,1,42,5.12,4,207 +37570,41802394,Manhattan,West Village,40.733779999999996,-74.00272,Entire home/apt,1115,3,2,0.38,1,0 +37571,42676520,Manhattan,Harlem,40.80728,-73.94619,Private room,80,1,54,7.83,2,8 +37572,26330233,Manhattan,East Village,40.72977,-73.97895,Entire home/apt,175,6,23,3.15,1,232 +37573,12235509,Brooklyn,Sunset Park,40.65085,-74.0037,Entire home/apt,175,4,12,1.65,1,142 +37574,192773562,Queens,Woodside,40.7415,-73.89249000000001,Private room,60,1,0,,1,87 +37575,224238226,Manhattan,Upper East Side,40.76263,-73.96880999999999,Entire home/apt,265,6,33,4.16,1,95 +37576,47721954,Manhattan,Upper East Side,40.77695,-73.95519,Shared room,75,1,0,,1,90 +37577,221836975,Queens,Jackson Heights,40.75125,-73.89346,Shared room,58,2,4,0.64,3,267 +37578,224245939,Manhattan,Upper West Side,40.79439,-73.96315,Entire home/apt,310,7,0,,1,0 +37579,15058648,Brooklyn,Bushwick,40.69798,-73.92968,Entire home/apt,135,3,5,0.71,3,17 +37580,4180621,Brooklyn,Carroll Gardens,40.67739,-74.00004,Entire home/apt,74,1,4,0.57,2,0 +37581,187908347,Brooklyn,Crown Heights,40.67265,-73.94728,Entire home/apt,81,4,19,2.44,2,94 +37582,196058543,Queens,Forest Hills,40.719879999999996,-73.83922,Shared room,35,3,24,3.13,5,236 +37583,224314859,Manhattan,Washington Heights,40.85358,-73.93526,Private room,90,3,3,0.41,1,82 +37584,224317523,Brooklyn,South Slope,40.66402,-73.98281999999999,Entire home/apt,285,5,29,3.57,1,74 +37585,52767716,Queens,Long Island City,40.74836,-73.93833000000001,Private room,95,2,3,0.44,1,0 +37586,2967674,Brooklyn,Williamsburg,40.70686,-73.95538,Private room,48,2,6,0.87,2,0 +37587,2465013,Manhattan,West Village,40.72994,-74.00456,Entire home/apt,275,3,2,0.29,1,0 +37588,34986045,Manhattan,East Village,40.732279999999996,-73.98669,Entire home/apt,650,3,1,0.16,1,0 +37589,29279378,Manhattan,Harlem,40.82812,-73.94219,Entire home/apt,200,30,0,,1,180 +37590,224340103,Brooklyn,Williamsburg,40.70933,-73.94651,Private room,80,2,3,0.4,2,0 +37591,25970711,Brooklyn,Bedford-Stuyvesant,40.68457,-73.92914,Entire home/apt,100,2,8,1.09,1,75 +37592,7443296,Brooklyn,Cypress Hills,40.68072,-73.88786999999999,Private room,120,2,26,3.24,1,63 +37593,224019631,Manhattan,Hell's Kitchen,40.75971,-73.99076,Entire home/apt,150,2,7,0.91,1,14 +37594,57973441,Brooklyn,Williamsburg,40.70932,-73.94792,Private room,90,1,1,0.13,1,32 +37595,224350246,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91792,Entire home/apt,175,2,4,0.54,1,326 +37596,13619313,Manhattan,Little Italy,40.71731,-73.99861999999999,Entire home/apt,175,4,0,,1,179 +37597,732460,Brooklyn,Williamsburg,40.710809999999995,-73.96695,Entire home/apt,120,29,5,0.75,7,0 +37598,30985759,Manhattan,Hell's Kitchen,40.759879999999995,-73.99123,Private room,135,1,50,6.2,6,316 +37599,6856247,Brooklyn,Park Slope,40.67262,-73.97372,Entire home/apt,160,2,5,0.66,1,2 +37600,26000391,Manhattan,East Harlem,40.7906,-73.94594000000001,Private room,40,7,2,0.27,1,188 +37601,17822256,Manhattan,Harlem,40.80075,-73.95676,Private room,95,2,40,5.0,4,141 +37602,4233057,Manhattan,East Harlem,40.79829,-73.93601,Private room,68,3,4,0.64,3,95 +37603,224365956,Brooklyn,Bergen Beach,40.622209999999995,-73.90975,Entire home/apt,49,3,20,2.64,1,164 +37604,1475015,Manhattan,Upper East Side,40.770720000000004,-73.95538,Entire home/apt,105,30,0,,52,358 +37605,216634331,Manhattan,Harlem,40.82431,-73.94291,Entire home/apt,202,3,8,1.1,1,88 +37606,1475015,Manhattan,Kips Bay,40.74446,-73.98091,Entire home/apt,120,30,0,,52,353 +37607,224370048,Staten Island,Tompkinsville,40.63304,-74.09244,Private room,90,1,6,0.95,1,262 +37608,62014501,Queens,Long Island City,40.74781,-73.93890999999999,Entire home/apt,133,20,9,1.27,1,21 +37609,48967970,Manhattan,Morningside Heights,40.805279999999996,-73.95928,Entire home/apt,150,20,0,,1,33 +37610,7653811,Queens,Astoria,40.773590000000006,-73.9251,Private room,60,1,2,0.32,1,249 +37611,20827165,Brooklyn,Williamsburg,40.71545,-73.94383,Entire home/apt,99,2,1,0.13,2,0 +37612,179668570,Brooklyn,Williamsburg,40.71359,-73.9404,Entire home/apt,165,3,37,5.19,1,34 +37613,17822256,Manhattan,Harlem,40.802459999999996,-73.95737,Private room,95,2,31,4.15,4,172 +37614,218984753,Manhattan,Lower East Side,40.71918,-73.98525,Entire home/apt,59,1,25,3.25,1,143 +37615,30985759,Manhattan,Hell's Kitchen,40.75938,-73.98986,Private room,145,1,61,7.5,6,283 +37616,17822256,Manhattan,Harlem,40.80076,-73.95742,Private room,95,2,32,4.0,4,163 +37617,224384517,Brooklyn,Canarsie,40.64403,-73.88908,Private room,60,1,64,8.97,1,142 +37618,1512565,Manhattan,East Harlem,40.7879,-73.95418000000001,Private room,90,2,9,1.78,3,112 +37619,156948111,Brooklyn,Bedford-Stuyvesant,40.693509999999996,-73.95161,Private room,60,10,1,0.14,1,365 +37620,223431101,Manhattan,Morningside Heights,40.80307,-73.96386,Private room,80,1,37,4.78,3,9 +37621,224401490,Brooklyn,Williamsburg,40.71009,-73.95151,Private room,60,3,2,0.25,1,0 +37622,26310763,Manhattan,Greenwich Village,40.73328,-73.99431,Private room,150,7,0,,1,2 +37623,30346705,Brooklyn,Bedford-Stuyvesant,40.69086,-73.95955,Private room,50,1,42,5.38,2,57 +37624,56156848,Brooklyn,Bedford-Stuyvesant,40.69551,-73.94565,Private room,93,3,21,2.7,1,73 +37625,158781381,Brooklyn,East New York,40.66128,-73.89105,Entire home/apt,75,2,15,1.87,2,179 +37626,224413673,Manhattan,Harlem,40.80536,-73.95434,Entire home/apt,150,1,4,0.53,1,0 +37627,224414117,Manhattan,Hell's Kitchen,40.75546,-73.99792,Private room,107,1,22,2.81,30,141 +37628,16398154,Brooklyn,Prospect Heights,40.68162,-73.96818,Entire home/apt,149,2,8,1.0,1,0 +37629,8573489,Manhattan,East Village,40.73022,-73.97998,Entire home/apt,220,4,1,1.0,1,14 +37630,24762401,Brooklyn,Bedford-Stuyvesant,40.689209999999996,-73.95035,Private room,65,30,26,3.25,4,361 +37631,209298687,Brooklyn,Bedford-Stuyvesant,40.68907,-73.95217,Private room,65,30,13,1.77,4,333 +37632,224461227,Manhattan,Chelsea,40.74442,-73.99908,Entire home/apt,220,2,2,0.32,1,0 +37633,49946447,Queens,Jamaica,40.68842,-73.77677,Private room,50,2,1,0.27,1,311 +37634,5847816,Brooklyn,Park Slope,40.66724,-73.98039,Entire home/apt,700,4,2,0.32,1,174 +37635,159598333,Manhattan,Upper East Side,40.78179,-73.94693000000001,Entire home/apt,99,30,1,0.28,5,332 +37636,5537011,Brooklyn,Williamsburg,40.71474,-73.94440999999999,Entire home/apt,175,2,6,2.37,1,176 +37637,187360554,Manhattan,Financial District,40.70731,-74.00871,Entire home/apt,155,3,0,,1,107 +37638,22582243,Manhattan,Hell's Kitchen,40.7597,-73.99726,Entire home/apt,219,3,6,0.8,1,6 +37639,224498087,Manhattan,Nolita,40.72361,-73.99301,Entire home/apt,130,7,0,,1,0 +37640,1550888,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95025,Entire home/apt,70,30,3,0.42,3,281 +37641,117932348,Manhattan,Gramercy,40.73492,-73.98079,Entire home/apt,650,30,0,,2,88 +37642,20491372,Queens,Forest Hills,40.72784,-73.85109,Private room,69,2,1,0.13,1,35 +37643,224513581,Brooklyn,Bedford-Stuyvesant,40.67759,-73.9106,Private room,30,7,2,0.26,2,250 +37644,60258049,Brooklyn,Bushwick,40.69061,-73.90815,Shared room,42,2,5,0.67,1,0 +37645,73655921,Manhattan,Morningside Heights,40.8088,-73.95949,Private room,55,8,0,,1,177 +37646,137194766,Queens,Astoria,40.754909999999995,-73.91445,Entire home/apt,98,3,32,4.02,2,131 +37647,16495440,Manhattan,Harlem,40.80312,-73.95378000000001,Private room,85,2,0,,1,10 +37648,32423541,Queens,Long Island City,40.74635,-73.94035,Entire home/apt,120,2,2,0.32,1,4 +37649,2730280,Manhattan,Greenwich Village,40.73002,-74.00107,Entire home/apt,225,2,8,1.26,1,207 +37650,4316287,Manhattan,East Village,40.72896,-73.98111,Entire home/apt,158,3,10,1.58,1,323 +37651,7229055,Manhattan,Harlem,40.82173,-73.94830999999999,Entire home/apt,130,2,7,1.08,1,0 +37652,7849770,Queens,East Elmhurst,40.763729999999995,-73.86508,Entire home/apt,70,1,83,10.29,1,0 +37653,39972598,Brooklyn,Bushwick,40.68847,-73.91989000000001,Private room,70,4,1,0.13,1,342 +37654,221836975,Queens,Jackson Heights,40.74945,-73.89299,Private room,50,2,9,1.38,3,365 +37655,215944788,Manhattan,Upper East Side,40.77143,-73.94893,Private room,90,2,23,3.0,3,17 +37656,61649970,Manhattan,Lower East Side,40.71965,-73.98448,Entire home/apt,250,1,24,3.17,2,280 +37657,149849302,Manhattan,Harlem,40.81004,-73.95271,Entire home/apt,200,1,3,0.45,1,0 +37658,216456504,Bronx,Wakefield,40.894290000000005,-73.84392,Private room,49,1,26,3.21,3,363 +37659,78482422,Manhattan,East Harlem,40.79,-73.94728,Entire home/apt,160,2,11,1.49,1,0 +37660,612551,Brooklyn,Bedford-Stuyvesant,40.6858,-73.95375,Entire home/apt,150,7,2,1.36,1,0 +37661,216456504,Bronx,Wakefield,40.894,-73.84362,Entire home/apt,130,1,11,1.45,3,363 +37662,7147987,Manhattan,Hell's Kitchen,40.76061,-73.99038,Private room,170,8,1,0.16,1,19 +37663,2931626,Manhattan,Upper East Side,40.76747,-73.95451,Entire home/apt,120,2,2,0.27,1,0 +37664,224575394,Brooklyn,Williamsburg,40.70774,-73.9445,Private room,100,2,21,2.75,1,6 +37665,1512819,Brooklyn,East Flatbush,40.65323,-73.95255999999999,Private room,45,5,5,1.06,5,69 +37666,3073250,Manhattan,Upper West Side,40.79202,-73.96887,Entire home/apt,175,3,10,1.29,1,13 +37667,215956658,Queens,Woodside,40.75542,-73.9021,Private room,70,4,34,4.25,1,34 +37668,224614531,Brooklyn,Bedford-Stuyvesant,40.69318,-73.94739,Entire home/apt,200,2,3,0.41,2,95 +37669,215778245,Queens,Corona,40.73887,-73.86561999999999,Shared room,30,2,6,0.76,6,365 +37670,214290528,Manhattan,Financial District,40.707240000000006,-74.01438,Entire home/apt,195,2,4,0.56,1,0 +37671,40883581,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95428000000001,Private room,55,1,4,0.53,1,0 +37672,73881521,Manhattan,Washington Heights,40.84616,-73.93855,Private room,60,10,0,,1,310 +37673,119990626,Brooklyn,Bushwick,40.69862,-73.92849,Private room,60,7,1,0.13,1,173 +37674,217482038,Manhattan,Upper East Side,40.76328,-73.96598,Entire home/apt,129,2,8,1.18,3,15 +37675,223620306,Brooklyn,Bushwick,40.69725,-73.91181,Shared room,95,1,0,,1,0 +37676,74982218,Manhattan,Harlem,40.81278,-73.95156,Private room,55,3,3,0.39,2,0 +37677,9071235,Manhattan,East Village,40.72753,-73.98285,Entire home/apt,399,4,3,0.47,1,75 +37678,224661472,Manhattan,Hell's Kitchen,40.76117,-73.99099,Entire home/apt,700,4,46,5.7,1,126 +37679,32162351,Manhattan,East Village,40.73018,-73.98229,Entire home/apt,199,2,0,,2,0 +37680,5326571,Queens,Ditmars Steinway,40.77718,-73.91029,Entire home/apt,180,7,1,0.67,2,122 +37681,124867390,Bronx,Spuyten Duyvil,40.88071,-73.92074000000001,Private room,60,3,8,1.11,1,326 +37682,224675361,Brooklyn,Bushwick,40.69143,-73.90993,Entire home/apt,110,2,20,2.56,1,284 +37683,113274391,Manhattan,Murray Hill,40.74991,-73.97261999999999,Entire home/apt,200,21,0,,1,0 +37684,162280872,Manhattan,Upper East Side,40.76197,-73.96139000000001,Entire home/apt,195,30,1,0.56,13,138 +37685,75435800,Queens,Long Island City,40.75262,-73.93656,Entire home/apt,165,2,0,,2,0 +37686,2494204,Brooklyn,Bedford-Stuyvesant,40.68143,-73.94765,Entire home/apt,150,2,7,0.9,1,11 +37687,24449433,Manhattan,East Village,40.72575,-73.98236,Entire home/apt,190,3,10,1.6,1,61 +37688,14349735,Brooklyn,Clinton Hill,40.68683,-73.96571999999999,Private room,64,6,2,0.25,1,250 +37689,224696045,Brooklyn,Sheepshead Bay,40.59362,-73.95659,Entire home/apt,110,2,16,2.45,1,276 +37690,5817533,Queens,Astoria,40.76477,-73.92900999999999,Private room,75,5,0,,1,0 +37691,211895243,Brooklyn,Midwood,40.625409999999995,-73.96293,Entire home/apt,105,3,1,0.12,2,46 +37692,145981682,Manhattan,Theater District,40.76,-73.98376999999999,Entire home/apt,212,1,5,0.69,3,272 +37693,224706357,Brooklyn,Sunset Park,40.66056,-74.00017,Entire home/apt,110,2,42,5.21,1,90 +37694,12131971,Manhattan,Midtown,40.75855,-73.96961,Entire home/apt,140,1,3,0.37,1,0 +37695,224711473,Manhattan,Midtown,40.76556,-73.97726,Private room,375,1,0,,1,0 +37696,210112096,Manhattan,East Harlem,40.7901,-73.94111,Private room,74,2,32,3.98,1,195 +37697,223715716,Manhattan,Harlem,40.82424,-73.93753000000001,Private room,35,7,1,1.0,1,0 +37698,106335321,Brooklyn,Crown Heights,40.671170000000004,-73.95653,Entire home/apt,110,2,29,7.7,1,19 +37699,152457143,Brooklyn,Williamsburg,40.709559999999996,-73.95305,Private room,65,2,9,1.15,1,0 +37700,11907194,Manhattan,Midtown,40.74992,-73.98772,Private room,110,2,8,1.06,1,0 +37701,224731704,Manhattan,Hell's Kitchen,40.76505,-73.98919000000001,Private room,129,1,11,1.37,3,177 +37702,223846870,Queens,Springfield Gardens,40.66199,-73.77199999999999,Private room,59,1,73,9.09,3,340 +37703,109583232,Queens,Long Island City,40.75074,-73.94206,Entire home/apt,150,13,4,0.64,1,121 +37704,224731704,Manhattan,Hell's Kitchen,40.765159999999995,-73.9888,Private room,129,1,11,1.58,3,177 +37705,149306690,Bronx,Belmont,40.85504,-73.88394,Private room,24,1,4,0.52,1,0 +37706,224735872,Queens,Long Island City,40.754059999999996,-73.92095,Shared room,40,3,1,0.13,1,178 +37707,3393434,Brooklyn,Crown Heights,40.67133,-73.94631,Private room,349,3,4,0.56,2,89 +37708,224241313,Brooklyn,Bedford-Stuyvesant,40.68336,-73.92144,Entire home/apt,250,2,6,0.85,1,179 +37709,42210223,Brooklyn,Flatbush,40.63616,-73.95594,Private room,120,2,0,,1,83 +37710,17822256,Manhattan,Harlem,40.801140000000004,-73.95696,Private room,90,2,32,4.02,4,147 +37711,20321004,Brooklyn,Clinton Hill,40.68272,-73.96675,Private room,125,1,33,4.34,1,0 +37712,16152090,Manhattan,Roosevelt Island,40.764140000000005,-73.949,Private room,175,4,3,0.43,2,362 +37713,20453005,Manhattan,Gramercy,40.73687,-73.98668,Entire home/apt,165,7,9,1.27,1,0 +37714,174797199,Manhattan,Lower East Side,40.72207,-73.98725999999999,Entire home/apt,99,1,11,1.46,1,0 +37715,22388757,Manhattan,Washington Heights,40.85114,-73.93754,Private room,55,2,6,2.07,2,169 +37716,107090465,Brooklyn,East Flatbush,40.63835,-73.94621,Entire home/apt,125,3,2,0.61,1,170 +37717,224808776,Manhattan,Greenwich Village,40.72841,-74.00045,Entire home/apt,300,4,28,3.82,1,217 +37718,218959287,Brooklyn,Crown Heights,40.67355,-73.94566999999999,Entire home/apt,100,2,0,,1,0 +37719,7271048,Manhattan,Greenwich Village,40.72953,-73.99978,Entire home/apt,225,3,8,1.11,1,357 +37720,224815152,Manhattan,Hell's Kitchen,40.755,-73.99784,Private room,249,1,6,1.06,8,87 +37721,155200301,Brooklyn,Bedford-Stuyvesant,40.685359999999996,-73.92222,Private room,37,18,2,0.33,2,341 +37722,224806557,Brooklyn,Williamsburg,40.72084,-73.9554,Entire home/apt,295,2,4,0.58,1,0 +37723,9488139,Brooklyn,Carroll Gardens,40.68425,-73.99464,Entire home/apt,200,1,0,,1,250 +37724,162283008,Brooklyn,Bedford-Stuyvesant,40.6837,-73.94199,Private room,43,3,5,0.79,1,0 +37725,224825910,Manhattan,Kips Bay,40.74273,-73.97998,Entire home/apt,100,1,5,0.64,1,0 +37726,224827088,Manhattan,Financial District,40.704209999999996,-74.00962,Entire home/apt,520,4,8,1.19,1,38 +37727,213781715,Brooklyn,Greenpoint,40.73147,-73.95209,Private room,119,1,1,0.16,33,365 +37728,99511145,Manhattan,Harlem,40.806459999999994,-73.94829,Private room,45,4,19,2.54,2,10 +37729,213781715,Brooklyn,Greenpoint,40.73214,-73.95510999999999,Private room,119,1,0,,33,365 +37730,190921808,Manhattan,Hell's Kitchen,40.755109999999995,-73.99531999999999,Private room,75,7,4,0.59,47,365 +37731,213781715,Brooklyn,Greenpoint,40.733940000000004,-73.95154000000001,Private room,119,1,2,0.32,33,1 +37732,65747874,Brooklyn,Crown Heights,40.674240000000005,-73.94098000000001,Entire home/apt,137,2,21,2.78,2,63 +37733,212328883,Brooklyn,Williamsburg,40.71719,-73.95756999999999,Entire home/apt,148,2,39,5.0,1,34 +37734,51746762,Manhattan,Harlem,40.82315,-73.94094,Entire home/apt,75,2,0,,1,2 +37735,8830191,Brooklyn,Flatbush,40.641690000000004,-73.95398,Entire home/apt,40,2,2,2.0,1,57 +37736,224850313,Brooklyn,Sheepshead Bay,40.58723,-73.94305,Private room,59,6,15,1.86,2,147 +37737,96647029,Manhattan,Upper West Side,40.79481,-73.96437,Private room,84,6,3,0.37,1,6 +37738,222581357,Brooklyn,Bushwick,40.69243,-73.91528000000001,Private room,50,30,51,6.32,3,227 +37739,222581357,Brooklyn,Bushwick,40.69202,-73.91487,Private room,46,30,29,3.6,3,246 +37740,222581357,Brooklyn,Bushwick,40.69276,-73.91465,Private room,35,30,31,3.94,3,316 +37741,16677326,Manhattan,Chelsea,40.74942,-73.99593,Private room,85,1,23,3.18,12,362 +37742,224859583,Bronx,Morrisania,40.83213,-73.90736,Private room,50,6,0,,1,179 +37743,201940587,Brooklyn,Columbia St,40.68786,-74.00066,Entire home/apt,130,2,17,4.55,1,9 +37744,224867226,Brooklyn,Coney Island,40.577290000000005,-73.98728,Entire home/apt,101,5,2,0.26,1,323 +37745,4283610,Queens,Glendale,40.702020000000005,-73.89044,Entire home/apt,114,3,9,1.53,1,3 +37746,224874182,Bronx,Parkchester,40.83872,-73.87149000000001,Shared room,45,7,0,,1,280 +37747,53443367,Manhattan,Chelsea,40.74333,-74.00106,Entire home/apt,175,1,8,1.22,1,0 +37748,67480949,Queens,Jackson Heights,40.75478,-73.88786,Entire home/apt,105,1,28,3.85,1,113 +37749,224877731,Queens,Elmhurst,40.742779999999996,-73.88069,Private room,63,2,2,1.15,1,365 +37750,174976495,Queens,College Point,40.78497,-73.85754,Private room,45,1,7,0.88,1,0 +37751,108618132,Brooklyn,Bensonhurst,40.615190000000005,-74.00398,Private room,39,2,13,1.64,4,236 +37752,72420514,Manhattan,West Village,40.73646,-74.00761,Entire home/apt,165,1,6,0.76,3,215 +37753,224885898,Brooklyn,Bedford-Stuyvesant,40.68135,-73.92121999999999,Entire home/apt,125,3,10,1.6,1,361 +37754,212899703,Queens,Jamaica,40.67903,-73.76535,Private room,83,2,2,0.27,3,322 +37755,224892300,Brooklyn,East Flatbush,40.6614,-73.93867,Private room,110,2,3,0.38,1,176 +37756,851736,Manhattan,Chelsea,40.747409999999995,-74.00213000000001,Entire home/apt,250,7,4,0.62,1,8 +37757,224900182,Queens,Flushing,40.7559,-73.80426999999999,Private room,55,1,29,3.87,1,362 +37758,189734742,Manhattan,Midtown,40.75284,-73.9717,Private room,314,2,0,,2,266 +37759,38092082,Brooklyn,Bushwick,40.68844,-73.91486,Private room,60,1,0,,1,71 +37760,9059810,Brooklyn,Midwood,40.614290000000004,-73.94779,Entire home/apt,88,2,0,,3,89 +37761,223893932,Manhattan,SoHo,40.725570000000005,-74.0019,Entire home/apt,399,1,18,3.91,1,248 +37762,222421079,Queens,Long Island City,40.7615,-73.94323,Entire home/apt,455,2,0,,1,83 +37763,182313432,Queens,Astoria,40.76635,-73.90812,Entire home/apt,100,5,2,0.32,1,40 +37764,224974185,Manhattan,East Village,40.72867,-73.98593000000001,Entire home/apt,175,3,8,1.21,1,66 +37765,42295490,Manhattan,Chinatown,40.71655,-73.99537,Private room,68,30,4,0.64,2,0 +37766,224972774,Brooklyn,Williamsburg,40.71518,-73.95777,Entire home/apt,300,3,6,0.85,1,128 +37767,39243102,Brooklyn,Columbia St,40.68784,-74.00242,Private room,200,1,0,,1,89 +37768,64802660,Manhattan,Midtown,40.76599,-73.9826,Entire home/apt,175,184,0,,2,0 +37769,1611747,Manhattan,Lower East Side,40.713409999999996,-73.98980999999999,Entire home/apt,250,1,1,0.13,1,0 +37770,64802660,Manhattan,Midtown,40.76495,-73.98313,Entire home/apt,175,153,0,,2,295 +37771,43044876,Queens,Woodside,40.74824,-73.89961,Private room,30,29,1,0.3,5,1 +37772,220229838,Manhattan,Midtown,40.76402,-73.97453,Private room,233,2,0,,11,207 +37773,220229838,Manhattan,Midtown,40.76232,-73.97511999999999,Private room,233,2,0,,11,213 +37774,220229838,Manhattan,Midtown,40.76344,-73.97447,Private room,590,2,0,,11,162 +37775,220229838,Manhattan,Midtown,40.762190000000004,-73.97646,Private room,913,2,0,,11,143 +37776,220229838,Manhattan,Midtown,40.76197,-73.97561999999999,Entire home/apt,276,2,0,,11,173 +37777,224987632,Manhattan,Lower East Side,40.71992,-73.98472,Entire home/apt,550,3,50,6.67,1,199 +37778,220229838,Manhattan,Midtown,40.76194,-73.97459,Entire home/apt,276,2,0,,11,206 +37779,220229838,Manhattan,Midtown,40.76239,-73.97444,Entire home/apt,276,2,1,1.0,11,192 +37780,220229838,Manhattan,Midtown,40.76201,-73.97635,Entire home/apt,505,2,0,,11,152 +37781,30909338,Brooklyn,Williamsburg,40.71934,-73.96136,Entire home/apt,162,5,3,0.51,1,5 +37782,220229838,Manhattan,Midtown,40.76324,-73.97515,Private room,233,2,0,,11,163 +37783,220229838,Manhattan,Midtown,40.76184,-73.97605,Entire home/apt,718,2,0,,11,199 +37784,186701037,Brooklyn,Dyker Heights,40.62827,-74.01078000000001,Shared room,39,5,1,0.77,2,89 +37785,94646666,Brooklyn,Prospect-Lefferts Gardens,40.658970000000004,-73.94163,Entire home/apt,70,1,7,0.93,1,0 +37786,224994472,Manhattan,East Harlem,40.79074,-73.94275999999999,Entire home/apt,140,2,31,4.13,1,272 +37787,1475015,Manhattan,Kips Bay,40.74306,-73.97843,Entire home/apt,87,30,0,,52,365 +37788,158970615,Manhattan,Upper East Side,40.76464,-73.9593,Private room,115,1,54,7.47,1,0 +37789,89902143,Queens,Jackson Heights,40.75398,-73.86161,Private room,100,7,0,,2,0 +37790,2594243,Brooklyn,Prospect Heights,40.67817,-73.97152,Entire home/apt,200,3,1,0.14,2,188 +37791,158461160,Brooklyn,Bedford-Stuyvesant,40.680620000000005,-73.94418,Entire home/apt,62,30,1,0.75,6,284 +37792,16152090,Queens,Astoria,40.76147,-73.92549,Entire home/apt,250,3,0,,2,0 +37793,225025900,Queens,Ditmars Steinway,40.77689,-73.9073,Private room,60,1,3,2.43,2,363 +37794,206229239,Queens,Jamaica,40.677479999999996,-73.76375999999999,Entire home/apt,100,1,12,1.69,1,161 +37795,30985759,Manhattan,Hell's Kitchen,40.759640000000005,-73.99002,Shared room,70,1,59,7.47,6,314 +37796,225033890,Brooklyn,East New York,40.66577,-73.887,Entire home/apt,140,2,27,3.68,1,201 +37797,91040009,Brooklyn,Bushwick,40.69368,-73.92539000000001,Private room,44,1,31,4.25,1,172 +37798,137358866,Queens,Woodside,40.74484,-73.90959000000001,Private room,40,30,0,,103,93 +37799,224414117,Manhattan,Hell's Kitchen,40.75671,-73.99694000000001,Private room,199,1,20,2.49,30,359 +37800,1902578,Brooklyn,Greenpoint,40.728640000000006,-73.95640999999999,Entire home/apt,475,4,3,0.47,1,354 +37801,1103289,Brooklyn,Williamsburg,40.71201,-73.94967,Entire home/apt,94,6,4,0.57,1,11 +37802,140930693,Bronx,Mott Haven,40.81167,-73.92729,Private room,55,1,38,4.75,2,301 +37803,120245209,Brooklyn,Canarsie,40.63642,-73.89532,Private room,50,1,6,0.77,2,281 +37804,1476599,Brooklyn,Williamsburg,40.71545,-73.96344,Entire home/apt,300,4,2,0.32,1,28 +37805,39174150,Manhattan,Harlem,40.82528,-73.95313,Private room,215,2,3,0.42,3,91 +37806,179570454,Manhattan,Greenwich Village,40.72878,-74.0016,Entire home/apt,165,7,2,0.28,1,1 +37807,87568094,Brooklyn,Bedford-Stuyvesant,40.69342,-73.9324,Private room,75,7,0,,1,87 +37808,42213050,Queens,Long Island City,40.76243,-73.93044,Entire home/apt,113,25,0,,1,177 +37809,109854433,Brooklyn,Bedford-Stuyvesant,40.68777,-73.95378000000001,Entire home/apt,99,30,2,0.94,2,253 +37810,1678050,Manhattan,Murray Hill,40.74938,-73.9802,Entire home/apt,200,60,2,0.29,2,0 +37811,3229770,Queens,Sunnyside,40.73695,-73.92376,Private room,69,5,4,0.53,4,280 +37812,3218399,Brooklyn,Park Slope,40.675340000000006,-73.97332,Entire home/apt,150,10,1,0.21,1,264 +37813,224715959,Queens,Jackson Heights,40.75355,-73.89220999999999,Entire home/apt,170,2,10,1.55,1,346 +37814,3429147,Brooklyn,Flatbush,40.65092,-73.9632,Entire home/apt,120,3,2,0.61,1,31 +37815,215786346,Manhattan,Upper East Side,40.765440000000005,-73.9585,Entire home/apt,380,3,4,0.51,1,156 +37816,81325020,Brooklyn,Bedford-Stuyvesant,40.67961,-73.92461,Entire home/apt,120,3,11,1.47,3,71 +37817,221940893,Brooklyn,Kensington,40.6359,-73.97105,Private room,34,2,24,3.16,3,204 +37818,200239515,Queens,Woodside,40.74287,-73.89439,Private room,32,28,3,0.47,15,0 +37819,61297139,Brooklyn,Williamsburg,40.70469,-73.93878000000001,Private room,135,1,14,1.98,1,355 +37820,17871320,Brooklyn,Fort Greene,40.68701,-73.97457,Entire home/apt,150,3,16,2.26,1,66 +37821,23400523,Queens,Ridgewood,40.711940000000006,-73.91414,Entire home/apt,200,3,9,1.19,1,273 +37822,168184878,Manhattan,Hell's Kitchen,40.76423,-73.98891,Private room,145,2,12,1.59,1,37 +37823,60152095,Manhattan,Harlem,40.81022,-73.94547,Entire home/apt,132,2,18,2.32,1,123 +37824,225139503,Manhattan,East Harlem,40.8055,-73.93653,Entire home/apt,250,1,7,0.9,1,78 +37825,29277084,Manhattan,Washington Heights,40.84353,-73.94072,Private room,50,180,0,,1,90 +37826,224489730,Manhattan,Chelsea,40.74419,-74.00067,Entire home/apt,125,30,2,0.32,2,67 +37827,2315692,Queens,Ridgewood,40.703559999999996,-73.90241,Private room,75,2,2,0.32,1,52 +37828,69695606,Manhattan,Lower East Side,40.7184,-73.98719,Entire home/apt,692,1,33,4.36,1,256 +37829,3229770,Queens,Long Island City,40.73511,-73.92488,Private room,79,5,1,0.16,4,315 +37830,9804005,Brooklyn,Bedford-Stuyvesant,40.68931,-73.94041,Entire home/apt,95,2,1,0.15,1,8 +37831,225150700,Manhattan,Midtown,40.74563,-73.98342,Entire home/apt,300,1,14,1.92,1,5 +37832,89902143,Queens,Jackson Heights,40.75457,-73.86162,Private room,100,7,0,,2,179 +37833,3662048,Brooklyn,Carroll Gardens,40.67948,-73.99531,Entire home/apt,147,6,14,1.84,1,14 +37834,48196322,Manhattan,Washington Heights,40.853590000000004,-73.92981999999999,Private room,35,1,34,4.25,1,4 +37835,4170464,Brooklyn,Bedford-Stuyvesant,40.689009999999996,-73.92826,Private room,125,7,0,,1,363 +37836,29010692,Manhattan,East Harlem,40.79768,-73.93455,Private room,40,2,2,0.26,1,0 +37837,105248014,Brooklyn,East Flatbush,40.64608,-73.94738000000001,Private room,80,1,71,8.99,2,35 +37838,77103886,Manhattan,Hell's Kitchen,40.75922,-73.9969,Private room,105,1,10,1.28,1,191 +37839,8618782,Manhattan,Harlem,40.8063,-73.9558,Entire home/apt,350,3,1,0.16,1,5 +37840,128162460,Brooklyn,East New York,40.67037,-73.85899,Private room,90,3,0,,1,180 +37841,4538731,Brooklyn,Greenpoint,40.73039,-73.95434,Entire home/apt,270,7,2,0.32,1,20 +37842,46393811,Brooklyn,Greenpoint,40.73123,-73.95664000000001,Private room,80,5,1,0.16,1,22 +37843,34514781,Brooklyn,Crown Heights,40.67442,-73.95165,Private room,50,7,1,0.15,1,0 +37844,14517154,Brooklyn,Boerum Hill,40.68589,-73.98543000000001,Entire home/apt,300,2,1,0.16,1,0 +37845,28071452,Brooklyn,Greenpoint,40.72744,-73.94673,Entire home/apt,195,3,12,1.71,1,112 +37846,74595855,Manhattan,Upper West Side,40.779509999999995,-73.97765,Entire home/apt,200,5,3,0.49,1,0 +37847,12784820,Manhattan,West Village,40.73649,-73.99927,Entire home/apt,400,3,3,0.49,1,3 +37848,225249198,Manhattan,Harlem,40.81927,-73.93885999999999,Private room,200,1,8,1.13,1,0 +37849,224619132,Queens,Woodside,40.75507,-73.90741,Entire home/apt,80,3,4,0.61,1,0 +37850,225252724,Manhattan,East Harlem,40.797579999999996,-73.93808,Entire home/apt,98,1,0,,1,25 +37851,151901555,Brooklyn,Williamsburg,40.71365,-73.93838000000001,Entire home/apt,150,4,2,0.25,1,1 +37852,7230698,Manhattan,Harlem,40.82687,-73.94364,Entire home/apt,90,6,3,0.46,2,108 +37853,225261197,Manhattan,Upper West Side,40.78413,-73.97451,Private room,100,1,75,9.62,2,248 +37854,2653479,Manhattan,Upper West Side,40.80004,-73.96088,Private room,50,2,30,4.81,4,6 +37855,2653479,Manhattan,Upper West Side,40.80043,-73.95859,Private room,50,2,31,4.84,4,112 +37856,225277393,Bronx,Kingsbridge,40.87,-73.90129,Private room,39,4,33,4.36,1,86 +37857,3230788,Manhattan,Inwood,40.86268,-73.9238,Entire home/apt,200,2,22,2.83,1,283 +37858,38774068,Manhattan,Upper West Side,40.79655,-73.96285,Entire home/apt,98,30,0,,1,359 +37859,52357574,Brooklyn,Bushwick,40.6988,-73.91388,Private room,85,1,2,0.27,1,0 +37860,225283096,Queens,Rosedale,40.65567,-73.73076,Private room,65,1,45,6.75,1,277 +37861,145252418,Manhattan,East Harlem,40.80612,-73.93627,Private room,120,1,20,6.0,3,357 +37862,70431576,Brooklyn,Bedford-Stuyvesant,40.68515,-73.93255,Entire home/apt,64,2,7,0.92,1,6 +37863,128230715,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94795,Entire home/apt,200,3,1,0.68,1,11 +37864,2039658,Manhattan,Upper East Side,40.765190000000004,-73.96874,Entire home/apt,3600,31,0,,1,358 +37865,1093220,Brooklyn,Bushwick,40.70328,-73.92474,Entire home/apt,100,5,1,0.16,3,0 +37866,4980714,Brooklyn,Sunset Park,40.660059999999994,-73.99161,Entire home/apt,100,4,1,0.16,1,0 +37867,225291555,Brooklyn,Williamsburg,40.711009999999995,-73.93613,Private room,105,2,2,0.28,2,148 +37868,22175061,Queens,Forest Hills,40.72104,-73.85391,Private room,89,2,13,1.73,2,24 +37869,7898626,Manhattan,Midtown,40.75652,-73.96859,Private room,100,2,8,1.09,1,6 +37870,20287320,Brooklyn,Fort Greene,40.693059999999996,-73.97084,Private room,80,2,14,1.86,1,189 +37871,116995217,Queens,Howard Beach,40.656279999999995,-73.83171999999999,Entire home/apt,220,2,58,7.53,1,144 +37872,67987135,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93835,Entire home/apt,139,1,23,2.97,9,238 +37873,76519640,Manhattan,Harlem,40.79965,-73.95076,Private room,75,2,29,3.73,1,2 +37874,54689007,Manhattan,Financial District,40.70903,-74.00596,Entire home/apt,165,20,0,,3,53 +37875,225261197,Manhattan,Upper West Side,40.7857,-73.97459,Private room,90,1,35,7.24,2,261 +37876,62836981,Queens,Astoria,40.774029999999996,-73.92213000000001,Entire home/apt,299,2,9,1.6,1,354 +37877,221442773,Bronx,Pelham Bay,40.84391,-73.83171,Entire home/apt,99,2,8,1.05,1,360 +37878,225307360,Queens,Woodhaven,40.687059999999995,-73.8645,Private room,45,2,3,1.5,1,47 +37879,5523186,Manhattan,East Village,40.73042,-73.98491,Entire home/apt,750,3,0,,2,179 +37880,225309985,Bronx,Fordham,40.8689,-73.88552,Entire home/apt,98,2,30,4.46,1,327 +37881,225313172,Manhattan,Washington Heights,40.83175,-73.94051999999999,Private room,50,2,9,1.45,1,170 +37882,83650675,Manhattan,Harlem,40.81662,-73.93687,Entire home/apt,75,1,10,1.42,1,361 +37883,202183338,Manhattan,Greenwich Village,40.72871,-74.00009,Entire home/apt,250,2,4,0.55,1,0 +37884,1126015,Brooklyn,DUMBO,40.70321,-73.98488,Entire home/apt,150,3,3,0.4,1,7 +37885,102287310,Manhattan,Midtown,40.76477,-73.97592,Entire home/apt,199,3,7,1.59,3,358 +37886,78110875,Queens,Forest Hills,40.73134,-73.8521,Entire home/apt,175,2,6,0.93,1,168 +37887,115193518,Brooklyn,Bushwick,40.70557,-73.92445,Private room,42,1,2,0.32,3,0 +37888,186812508,Manhattan,Midtown,40.76651,-73.98289,Entire home/apt,201,2,33,4.21,1,227 +37889,20857455,Brooklyn,East Flatbush,40.65477,-73.95159,Entire home/apt,150,3,1,0.16,1,0 +37890,35468424,Manhattan,Greenwich Village,40.72893,-73.99512,Entire home/apt,89,2,22,2.83,1,11 +37891,43434770,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94027,Private room,50,7,1,0.37,1,0 +37892,12211018,Brooklyn,Clinton Hill,40.691159999999996,-73.96538000000001,Entire home/apt,170,2,3,0.39,1,0 +37893,225390764,Brooklyn,Williamsburg,40.7213,-73.95676999999999,Entire home/apt,210,4,3,0.44,1,4 +37894,35632450,Queens,Woodside,40.74951,-73.90786999999999,Entire home/apt,110,2,27,4.38,1,137 +37895,139145066,Brooklyn,East New York,40.67419,-73.88123,Entire home/apt,200,2,30,3.85,2,76 +37896,83787104,Brooklyn,Williamsburg,40.70136,-73.94423,Private room,65,2,3,0.59,1,89 +37897,213781715,Manhattan,NoHo,40.72831,-73.99327,Entire home/apt,179,1,1,0.57,33,348 +37898,38392972,Brooklyn,Bushwick,40.69869,-73.9124,Entire home/apt,82,3,3,0.42,1,26 +37899,224954032,Manhattan,East Harlem,40.8074,-73.93711,Entire home/apt,180,1,17,2.38,1,334 +37900,8246221,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.94959,Entire home/apt,105,4,1,0.16,1,0 +37901,197286,Brooklyn,Williamsburg,40.71841,-73.94343,Entire home/apt,174,2,27,3.6,1,126 +37902,213781715,Brooklyn,Greenpoint,40.733059999999995,-73.95353,Private room,119,1,0,,33,365 +37903,32785325,Brooklyn,Bedford-Stuyvesant,40.680640000000004,-73.94856,Entire home/apt,125,3,16,2.21,1,4 +37904,129875945,Queens,Forest Hills,40.71694,-73.83442,Private room,100,2,3,0.42,1,161 +37905,35699609,Manhattan,Flatiron District,40.74283,-73.99273000000001,Private room,80,1,0,,1,0 +37906,49745850,Manhattan,Hell's Kitchen,40.76192,-73.99698000000001,Entire home/apt,400,3,14,1.92,1,0 +37907,155923396,Brooklyn,Bushwick,40.70113,-73.92893000000001,Private room,45,3,4,0.56,3,276 +37908,3422235,Brooklyn,Fort Greene,40.68946,-73.97279,Entire home/apt,270,3,1,0.14,1,125 +37909,190324721,Queens,Flushing,40.759479999999996,-73.8341,Private room,75,1,3,0.39,4,75 +37910,1428501,Manhattan,Hell's Kitchen,40.76356,-73.98772,Entire home/apt,241,3,8,1.06,2,23 +37911,213781715,Brooklyn,Greenpoint,40.73259,-73.94977,Shared room,119,1,0,,33,180 +37912,15238188,Manhattan,Harlem,40.82437,-73.95177,Entire home/apt,95,1,51,6.95,1,1 +37913,11729215,Manhattan,Lower East Side,40.71391,-73.97747,Entire home/apt,225,2,1,0.16,1,0 +37914,2653479,Manhattan,Upper West Side,40.79821,-73.96058000000001,Private room,70,2,33,4.88,4,114 +37915,3874544,Manhattan,Harlem,40.82484,-73.95271,Entire home/apt,115,4,8,1.06,1,0 +37916,96430287,Manhattan,West Village,40.736779999999996,-74.00469,Entire home/apt,200,1,0,,1,87 +37917,224074972,Brooklyn,Bedford-Stuyvesant,40.69287,-73.9432,Private room,80,2,23,2.94,4,257 +37918,225454310,Queens,Far Rockaway,40.59894,-73.75629,Private room,85,1,2,0.38,4,362 +37919,225456817,Manhattan,Lower East Side,40.71864,-73.9847,Entire home/apt,160,5,20,2.7,1,0 +37920,9864136,Brooklyn,Bushwick,40.68633,-73.91413,Entire home/apt,85,30,3,0.44,26,313 +37921,58069820,Brooklyn,Crown Heights,40.67244,-73.95992,Private room,75,2,45,5.74,1,9 +37922,179416315,Bronx,Norwood,40.87064,-73.8797,Private room,60,1,9,1.19,2,310 +37923,4024013,Brooklyn,Bushwick,40.69696,-73.93024,Private room,50,14,4,1.21,1,129 +37924,23952383,Brooklyn,Park Slope,40.671170000000004,-73.97836,Entire home/apt,75,29,1,1.0,1,200 +37925,4666670,Queens,Astoria,40.76934,-73.91895,Private room,70,5,3,0.38,4,90 +37926,41895575,Manhattan,Upper West Side,40.78196,-73.98283,Entire home/apt,400,2,2,0.31,1,89 +37927,34614008,Manhattan,Harlem,40.82765,-73.94625,Private room,99,1,0,,1,89 +37928,225489491,Brooklyn,Bedford-Stuyvesant,40.67773,-73.90865,Private room,40,2,4,1.67,1,363 +37929,5794062,Brooklyn,Park Slope,40.67331,-73.97471,Entire home/apt,93,3,2,0.46,1,5 +37930,115741895,Queens,St. Albans,40.70275,-73.75043000000001,Private room,70,2,3,0.4,2,105 +37931,4934489,Manhattan,Hell's Kitchen,40.759890000000006,-73.99226999999999,Private room,85,2,1,0.14,3,0 +37932,173990320,Queens,Hollis,40.71523,-73.76992,Entire home/apt,100,2,44,5.55,1,310 +37933,8245652,Brooklyn,Bushwick,40.69658,-73.90968000000001,Private room,60,1,6,0.79,2,0 +37934,2458913,Brooklyn,Bushwick,40.70183,-73.92028,Private room,50,1,1,0.13,1,66 +37935,224414117,Manhattan,Hell's Kitchen,40.75625,-73.99678,Private room,107,1,19,2.5,30,156 +37936,64583317,Manhattan,Greenwich Village,40.728629999999995,-74.00125,Private room,43,5,3,0.39,1,5 +37937,225513415,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93892,Private room,75,2,26,3.66,2,21 +37938,225513415,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93753000000001,Private room,65,2,17,2.48,2,21 +37939,201015598,Brooklyn,Bedford-Stuyvesant,40.679159999999996,-73.9114,Shared room,24,1,11,1.49,17,85 +37940,113805886,Manhattan,Upper East Side,40.77768,-73.95064,Entire home/apt,150,31,1,0.27,33,338 +37941,107434423,Manhattan,Financial District,40.70425,-74.00856,Entire home/apt,325,30,0,,232,304 +37942,225558132,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95483,Entire home/apt,135,2,5,0.68,1,45 +37943,107434423,Manhattan,Financial District,40.70497,-74.00746,Entire home/apt,267,30,1,0.27,232,189 +37944,19909719,Brooklyn,Greenpoint,40.72203,-73.94709,Entire home/apt,249,7,0,,2,0 +37945,157410883,Brooklyn,Bushwick,40.69372,-73.92283,Entire home/apt,120,1,39,5.27,1,196 +37946,4932419,Manhattan,West Village,40.73836,-74.00128000000001,Entire home/apt,130,8,6,1.13,1,1 +37947,225564897,Manhattan,Harlem,40.82358,-73.95178,Entire home/apt,300,2,0,,1,32 +37948,225566189,Manhattan,Harlem,40.81804,-73.94375,Entire home/apt,100,2,2,0.27,1,0 +37949,16098958,Manhattan,Midtown,40.75125,-73.97105,Entire home/apt,145,30,0,,96,0 +37950,225571766,Queens,Jackson Heights,40.750679999999996,-73.87739,Private room,80,2,5,2.5,1,57 +37951,19874155,Brooklyn,Williamsburg,40.70245,-73.93603,Private room,75,1,4,0.53,1,35 +37952,188949327,Brooklyn,Bedford-Stuyvesant,40.689859999999996,-73.9249,Private room,50,1,6,1.0,1,0 +37953,15823232,Brooklyn,Crown Heights,40.67812,-73.94618,Entire home/apt,129,3,30,3.96,3,81 +37954,113805886,Manhattan,Upper East Side,40.77919,-73.95182,Entire home/apt,150,31,7,0.96,33,338 +37955,16098958,Manhattan,Hell's Kitchen,40.76735,-73.98524,Entire home/apt,275,30,0,,96,325 +37956,67958710,Brooklyn,Greenpoint,40.72424,-73.94984000000001,Entire home/apt,100,6,0,,1,0 +37957,113805886,Manhattan,Upper East Side,40.77751,-73.95174,Entire home/apt,150,31,1,0.67,33,338 +37958,222236294,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95455,Entire home/apt,160,2,33,4.65,1,246 +37959,30466297,Brooklyn,Clinton Hill,40.68632,-73.96292,Entire home/apt,450,2,5,0.66,1,11 +37960,87167456,Brooklyn,Greenpoint,40.71942,-73.95011,Private room,75,4,2,0.26,1,0 +37961,225593905,Brooklyn,Bushwick,40.69285,-73.92085,Private room,79,3,0,,1,24 +37962,19797950,Brooklyn,Gowanus,40.667359999999995,-73.99467,Private room,53,1,0,,3,317 +37963,224711439,Manhattan,Inwood,40.86414,-73.92537,Private room,50,3,1,0.16,1,0 +37964,394891,Brooklyn,Crown Heights,40.678259999999995,-73.96379,Entire home/apt,200,4,2,0.25,1,8 +37965,35422741,Manhattan,East Village,40.73015,-73.98447,Entire home/apt,350,3,3,0.48,1,5 +37966,4817341,Manhattan,East Village,40.7288,-73.98058,Entire home/apt,200,2,6,0.95,1,7 +37967,139879568,Queens,Long Island City,40.76538,-73.93881999999999,Private room,85,1,18,2.5,6,363 +37968,53444504,Brooklyn,Williamsburg,40.71633,-73.94138000000001,Entire home/apt,200,1,5,0.66,1,0 +37969,220601248,Manhattan,Lower East Side,40.71752,-73.98886999999999,Private room,75,2,24,3.14,2,7 +37970,43043667,Manhattan,Upper West Side,40.78105,-73.97633,Entire home/apt,249,2,13,1.82,1,0 +37971,225618164,Brooklyn,Gowanus,40.681979999999996,-73.98962,Private room,77,30,0,,3,365 +37972,224637257,Brooklyn,Flatbush,40.644909999999996,-73.9573,Private room,55,2,17,2.31,2,142 +37973,162496355,Queens,Flushing,40.76531,-73.8138,Private room,43,2,6,0.8,1,0 +37974,2653479,Manhattan,Upper West Side,40.79505,-73.96382,Private room,90,2,2,0.59,4,43 +37975,173287467,Queens,College Point,40.79469,-73.84544,Private room,50,5,0,,1,0 +37976,72015600,Brooklyn,Flatbush,40.646640000000005,-73.95486,Private room,60,1,3,0.48,1,0 +37977,14482375,Brooklyn,Greenpoint,40.72074,-73.94371,Entire home/apt,95,3,0,,3,0 +37978,219848970,Manhattan,Hell's Kitchen,40.762029999999996,-73.99353,Entire home/apt,600,3,0,,2,17 +37979,17022165,Manhattan,Lower East Side,40.720420000000004,-73.98414,Private room,159,2,29,4.39,1,209 +37980,38216858,Manhattan,Financial District,40.70772,-74.01489000000001,Private room,220,1,1,0.6,4,365 +37981,225646557,Manhattan,Washington Heights,40.839009999999995,-73.93802,Entire home/apt,199,2,18,2.56,1,171 +37982,3393434,Brooklyn,Crown Heights,40.67152,-73.94712,Private room,600,3,0,,2,89 +37983,36560763,Manhattan,Lower East Side,40.717620000000004,-73.98606,Entire home/apt,450,2,0,,1,0 +37984,183924446,Manhattan,Upper East Side,40.77064,-73.95124,Entire home/apt,150,3,11,1.56,1,49 +37985,92963604,Manhattan,Midtown,40.75638,-73.9675,Private room,100,3,6,0.85,1,45 +37986,88161763,Manhattan,Upper West Side,40.79672,-73.96169,Entire home/apt,150,2,29,3.97,1,11 +37987,225655167,Brooklyn,Bedford-Stuyvesant,40.6887,-73.92742,Entire home/apt,150,5,3,0.46,1,24 +37988,153817,Bronx,Pelham Gardens,40.862790000000004,-73.83946999999999,Entire home/apt,87,2,26,3.42,1,7 +37989,29217011,Manhattan,Lower East Side,40.72122,-73.98652,Private room,85,4,2,0.28,1,0 +37990,91851098,Brooklyn,Prospect Heights,40.677859999999995,-73.97029,Entire home/apt,110,2,5,0.89,1,0 +37991,115741895,Queens,St. Albans,40.7008,-73.75121,Private room,70,2,3,0.4,2,186 +37992,8556404,Manhattan,Washington Heights,40.85229,-73.9394,Private room,97,2,0,,1,365 +37993,107434423,Manhattan,West Village,40.72943,-74.00243,Entire home/apt,269,30,1,0.16,232,234 +37994,107434423,Manhattan,Upper East Side,40.77196,-73.95175,Entire home/apt,255,30,0,,232,157 +37995,225618164,Brooklyn,Gowanus,40.68155,-73.98947,Private room,79,30,0,,3,365 +37996,107434423,Manhattan,Financial District,40.70462,-74.00912,Entire home/apt,248,30,0,,232,338 +37997,225724159,Manhattan,Harlem,40.81857,-73.9557,Private room,59,1,2,0.36,1,0 +37998,211549023,Manhattan,Midtown,40.74687,-73.98836,Entire home/apt,220,2,8,1.48,13,315 +37999,225730907,Brooklyn,Bushwick,40.69936,-73.9242,Entire home/apt,170,2,36,5.24,1,191 +38000,172611460,Manhattan,Harlem,40.825109999999995,-73.94960999999999,Entire home/apt,5000,1,2,0.38,2,150 +38001,160493366,Queens,Ditmars Steinway,40.76992,-73.89719000000001,Entire home/apt,62,5,3,0.76,1,6 +38002,120939023,Brooklyn,Williamsburg,40.71837,-73.95881999999999,Private room,99,2,9,1.16,2,46 +38003,225620845,Brooklyn,Sheepshead Bay,40.58403,-73.95692,Entire home/apt,180,3,4,0.63,3,156 +38004,225748084,Brooklyn,Crown Heights,40.67726,-73.95573,Entire home/apt,140,7,0,,1,0 +38005,3297399,Brooklyn,East Flatbush,40.64391,-73.94833,Entire home/apt,57,1,6,0.8,1,0 +38006,225620845,Brooklyn,Sheepshead Bay,40.584959999999995,-73.95739,Entire home/apt,250,3,4,0.62,3,360 +38007,23020619,Manhattan,West Village,40.73444,-74.00562,Private room,190,2,4,0.53,2,0 +38008,183625602,Staten Island,Tompkinsville,40.62917,-74.08619,Entire home/apt,120,3,15,1.92,1,166 +38009,39770685,Manhattan,Hell's Kitchen,40.75551,-73.99235999999999,Entire home/apt,300,4,8,1.06,1,7 +38010,213781715,Manhattan,NoHo,40.72865,-73.99148000000001,Entire home/apt,179,1,0,,33,179 +38011,225706084,Brooklyn,Prospect-Lefferts Gardens,40.65786,-73.95813000000001,Entire home/apt,135,2,29,4.01,1,80 +38012,6480134,Manhattan,Harlem,40.82414,-73.93911999999999,Private room,60,4,11,1.53,2,161 +38013,22749087,Manhattan,East Village,40.72514,-73.98504,Entire home/apt,175,3,7,0.9,1,110 +38014,15605409,Manhattan,Upper East Side,40.77064,-73.96197,Entire home/apt,345,7,15,1.92,1,21 +38015,213781715,Brooklyn,Greenpoint,40.73278,-73.95368,Private room,119,1,0,,33,180 +38016,75224005,Brooklyn,Windsor Terrace,40.65696,-73.97941999999999,Entire home/apt,130,7,1,1.0,1,11 +38017,2021640,Manhattan,Upper East Side,40.77717,-73.95404,Entire home/apt,182,2,28,3.85,1,64 +38018,48860816,Manhattan,Upper East Side,40.77487,-73.95654,Entire home/apt,123,1,0,,1,0 +38019,19531024,Manhattan,Harlem,40.80877,-73.94122,Private room,100,2,0,,2,0 +38020,224315550,Brooklyn,Williamsburg,40.709559999999996,-73.96552,Private room,90,2,39,5.37,2,78 +38021,19531024,Manhattan,Harlem,40.80945,-73.94183000000001,Entire home/apt,175,3,1,0.16,2,46 +38022,225790094,Brooklyn,East Flatbush,40.65129,-73.92696,Private room,35,1,10,1.32,3,83 +38023,22826759,Brooklyn,Greenpoint,40.72051,-73.95464,Entire home/apt,103,3,3,0.46,1,11 +38024,225454310,Queens,Far Rockaway,40.59802,-73.75497,Private room,70,1,12,1.69,4,361 +38025,2559403,Manhattan,Midtown,40.75959,-73.97084,Private room,100,3,1,0.16,1,0 +38026,225454310,Queens,Far Rockaway,40.59836,-73.75555,Private room,50,1,12,1.55,4,363 +38027,133723890,Brooklyn,Bedford-Stuyvesant,40.6871,-73.92449,Entire home/apt,125,3,20,2.58,1,339 +38028,33235360,Brooklyn,Williamsburg,40.70903,-73.94416,Private room,60,2,14,1.89,2,14 +38029,67658340,Manhattan,Harlem,40.81691,-73.94124000000001,Private room,70,2,17,2.44,1,27 +38030,224655849,Manhattan,East Harlem,40.78918,-73.94834,Entire home/apt,110,30,1,0.2,2,0 +38031,59011845,Manhattan,Harlem,40.7997,-73.9534,Entire home/apt,600,3,0,,1,83 +38032,224655849,Manhattan,East Harlem,40.79052,-73.94838,Entire home/apt,120,29,1,0.77,2,0 +38033,11718279,Manhattan,Financial District,40.70815,-74.00513000000001,Private room,115,2,4,0.55,1,177 +38034,26603179,Brooklyn,DUMBO,40.7034,-73.98544,Entire home/apt,219,3,16,2.5,1,332 +38035,3896863,Manhattan,Chelsea,40.741640000000004,-73.99656,Entire home/apt,250,3,18,3.44,1,51 +38036,225813251,Queens,St. Albans,40.6968,-73.76592,Entire home/apt,135,1,69,10.67,1,158 +38037,22588056,Brooklyn,Williamsburg,40.713229999999996,-73.96319,Entire home/apt,90,7,1,0.16,1,0 +38038,204906313,Brooklyn,Sheepshead Bay,40.59021,-73.94800000000001,Private room,55,1,45,5.74,3,83 +38039,59240650,Manhattan,Inwood,40.8597,-73.92748,Private room,75,2,5,0.66,1,0 +38040,78251,Brooklyn,Brooklyn Heights,40.700990000000004,-73.99531999999999,Entire home/apt,100,31,0,,2,310 +38041,44682387,Queens,Jamaica,40.67196,-73.77821,Entire home/apt,155,1,59,7.6,2,287 +38042,225749624,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94366,Private room,70,1,1,0.14,1,0 +38043,5326571,Queens,Ditmars Steinway,40.77751,-73.90956,Private room,85,2,2,0.29,2,278 +38044,140830391,Manhattan,Inwood,40.86159,-73.92685999999999,Private room,60,1,15,2.01,9,89 +38045,221645033,Brooklyn,Bushwick,40.70094,-73.91991999999999,Private room,59,1,1,0.75,5,148 +38046,14022130,Brooklyn,Prospect-Lefferts Gardens,40.656459999999996,-73.95229,Entire home/apt,115,2,1,0.15,1,0 +38047,225889604,Queens,Flushing,40.76345,-73.828,Private room,73,1,5,1.17,5,87 +38048,225891200,Queens,Ridgewood,40.70947,-73.90039,Private room,75,2,0,,1,0 +38049,41194120,Manhattan,Greenwich Village,40.72978,-73.99982,Entire home/apt,275,1,4,0.61,1,0 +38050,46093850,Brooklyn,Bedford-Stuyvesant,40.68137,-73.95714,Private room,100,1,2,0.26,1,311 +38051,157093664,Queens,St. Albans,40.69866,-73.76759,Private room,59,1,0,,2,365 +38052,129902279,Brooklyn,Sunset Park,40.65977,-73.99087,Private room,40,8,7,0.96,1,66 +38053,29765186,Brooklyn,Bedford-Stuyvesant,40.6972,-73.93613,Private room,75,2,6,0.86,1,84 +38054,160940380,Queens,St. Albans,40.69869,-73.749,Entire home/apt,250,3,4,0.63,3,348 +38055,225913497,Brooklyn,Bedford-Stuyvesant,40.67966,-73.90755,Private room,28,3,1,0.16,1,0 +38056,49290775,Brooklyn,Greenpoint,40.73561,-73.95873,Entire home/apt,150,3,3,0.48,1,42 +38057,172369331,Brooklyn,Sheepshead Bay,40.59823,-73.95909,Shared room,30,2,5,0.66,10,0 +38058,225913271,Manhattan,Chelsea,40.7507,-74.00261,Entire home/apt,170,3,6,0.84,1,170 +38059,169472089,Queens,Flushing,40.76079,-73.83386999999999,Private room,90,3,1,0.16,2,90 +38060,188575380,Queens,Flushing,40.76068,-73.82233000000001,Private room,66,2,19,2.73,1,312 +38061,14859699,Manhattan,Washington Heights,40.836490000000005,-73.94383,Private room,29,134,0,,1,0 +38062,16072607,Brooklyn,Williamsburg,40.70901,-73.9676,Entire home/apt,300,4,2,0.32,1,161 +38063,225926055,Manhattan,Harlem,40.82199,-73.95631999999999,Entire home/apt,120,5,1,0.16,1,0 +38064,148298029,Queens,Astoria,40.76529,-73.91136999999999,Entire home/apt,103,5,1,0.16,1,0 +38065,12625398,Queens,Ridgewood,40.70581,-73.90978,Private room,43,2,4,0.55,1,0 +38066,225930875,Brooklyn,Bay Ridge,40.629509999999996,-74.02319,Entire home/apt,165,7,0,,1,126 +38067,225933854,Queens,Briarwood,40.70742,-73.81345,Entire home/apt,55,1,11,1.42,1,40 +38068,16403250,Manhattan,West Village,40.733340000000005,-74.00098,Entire home/apt,240,4,18,4.19,1,24 +38069,49546136,Brooklyn,Williamsburg,40.71235,-73.95764,Private room,79,4,0,,1,0 +38070,737641,Brooklyn,Bushwick,40.69874,-73.93589,Private room,50,2,30,3.98,1,0 +38071,4460107,Brooklyn,Greenpoint,40.72745,-73.9483,Entire home/apt,85,3,4,0.53,1,0 +38072,225942423,Manhattan,Harlem,40.80652,-73.94937,Private room,68,1,33,4.25,1,19 +38073,10273945,Manhattan,Morningside Heights,40.80741,-73.96658000000001,Entire home/apt,150,13,1,0.13,1,0 +38074,212147885,Brooklyn,Cypress Hills,40.6765,-73.9063,Entire home/apt,150,3,9,1.27,2,179 +38075,151300770,Manhattan,Upper East Side,40.778290000000005,-73.95093,Private room,150,5,5,0.66,4,272 +38076,222054756,Queens,Rego Park,40.72637,-73.86829,Private room,60,3,1,0.16,1,89 +38077,224884160,Manhattan,Hell's Kitchen,40.76193,-73.99146999999999,Entire home/apt,499,2,14,1.98,1,236 +38078,7569336,Brooklyn,Crown Heights,40.66988,-73.94682,Private room,60,20,1,0.14,1,64 +38079,45835291,Manhattan,Harlem,40.82411,-73.95441,Private room,47,8,31,4.04,6,270 +38080,151300770,Manhattan,Upper East Side,40.779540000000004,-73.95127,Private room,150,5,5,0.79,4,267 +38081,151300770,Manhattan,Upper East Side,40.78006,-73.95045999999999,Private room,150,5,7,0.96,4,293 +38082,224414117,Manhattan,Hell's Kitchen,40.75659,-73.99988,Private room,179,1,27,3.45,30,327 +38083,224414117,Manhattan,Hell's Kitchen,40.757529999999996,-73.99701,Private room,199,1,25,3.21,30,324 +38084,225963659,Brooklyn,Bushwick,40.69538,-73.92501,Private room,59,20,0,,1,0 +38085,101367917,Queens,Astoria,40.76589,-73.92259,Private room,150,2,4,0.55,1,0 +38086,4968673,Manhattan,Upper East Side,40.76831,-73.95929,Entire home/apt,200,5,2,0.68,1,71 +38087,224513581,Brooklyn,Bedford-Stuyvesant,40.67752,-73.90886,Private room,26,30,0,,2,250 +38088,38250051,Brooklyn,Sunset Park,40.65978,-73.99406,Private room,50,3,3,0.43,1,0 +38089,24864537,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.94985,Entire home/apt,100,3,10,1.32,1,25 +38090,22723123,Brooklyn,Downtown Brooklyn,40.69115,-73.98465999999999,Entire home/apt,99,3,1,0.41,1,31 +38091,78325795,Manhattan,Harlem,40.80616,-73.95007,Entire home/apt,269,1,29,3.88,3,1 +38092,192181166,Brooklyn,Williamsburg,40.70685,-73.94230999999999,Private room,60,150,2,0.32,2,0 +38093,221764359,Queens,Springfield Gardens,40.66635,-73.76621999999999,Entire home/apt,300,1,5,0.66,1,154 +38094,226035811,Brooklyn,Greenpoint,40.727779999999996,-73.94781,Private room,200,7,0,,1,0 +38095,3421779,Manhattan,Washington Heights,40.83856,-73.94185999999999,Private room,109,1,2,0.29,1,270 +38096,226048286,Brooklyn,Clinton Hill,40.69415,-73.96581,Entire home/apt,250,2,30,5.29,1,274 +38097,73183897,Staten Island,Dongan Hills,40.58415,-74.10503,Entire home/apt,70,3,14,1.81,1,51 +38098,44642799,Manhattan,East Village,40.72818,-73.98075,Entire home/apt,225,3,2,0.31,1,0 +38099,12171344,Brooklyn,Crown Heights,40.66655,-73.95005,Private room,85,2,7,0.99,2,27 +38100,37401126,Brooklyn,East Flatbush,40.642509999999994,-73.93926,Private room,50,2,32,4.47,4,358 +38101,198707356,Manhattan,Harlem,40.81756,-73.9452,Private room,99,14,2,0.32,1,36 +38102,225889604,Queens,Flushing,40.76506,-73.82757,Private room,65,1,3,0.42,5,85 +38103,114043000,Brooklyn,Park Slope,40.67989,-73.97922,Private room,120,2,12,1.57,1,89 +38104,75479604,Brooklyn,Fort Greene,40.69473,-73.97225,Entire home/apt,175,1,1,0.16,2,0 +38105,5179523,Brooklyn,Williamsburg,40.71027,-73.95293000000001,Private room,75,1,0,,3,43 +38106,3147746,Manhattan,Washington Heights,40.8444,-73.93654000000001,Private room,27,29,1,0.13,1,124 +38107,187567357,Manhattan,East Harlem,40.7947,-73.94115,Entire home/apt,160,1,0,,1,0 +38108,224637257,Brooklyn,Flatbush,40.64544,-73.95730999999999,Private room,95,2,3,0.4,2,180 +38109,14379366,Manhattan,West Village,40.7363,-74.00494,Entire home/apt,340,30,2,0.46,1,100 +38110,35319788,Manhattan,Upper West Side,40.80052,-73.9706,Private room,100,2,8,1.06,1,0 +38111,218511630,Brooklyn,Williamsburg,40.71465,-73.95499000000001,Private room,75,2,11,1.9,3,0 +38112,2723489,Manhattan,Upper West Side,40.80055,-73.96876,Private room,80,2,3,0.42,1,0 +38113,75404627,Manhattan,Lower East Side,40.71022,-73.99163,Entire home/apt,195,3,14,1.93,1,158 +38114,10842596,Manhattan,Morningside Heights,40.80218,-73.95904,Entire home/apt,100,1,24,3.09,1,1 +38115,226088610,Manhattan,Upper East Side,40.76812,-73.95093,Entire home/apt,150,7,0,,1,365 +38116,225616368,Queens,Woodside,40.74217,-73.90218,Entire home/apt,136,2,17,2.25,1,348 +38117,156481014,Brooklyn,Clinton Hill,40.6819,-73.96007,Entire home/apt,250,2,16,2.18,1,78 +38118,113569564,Bronx,Riverdale,40.88511,-73.90831,Entire home/apt,175,3,5,0.77,1,0 +38119,14413778,Manhattan,Nolita,40.721920000000004,-73.99418,Private room,307,3,1,0.13,2,363 +38120,50046186,Manhattan,Midtown,40.74933,-73.98467,Entire home/apt,600,2,1,0.15,1,0 +38121,17617821,Brooklyn,Crown Heights,40.67775,-73.94913000000001,Entire home/apt,99,4,5,0.77,1,23 +38122,102655617,Manhattan,Tribeca,40.71546,-74.00856,Entire home/apt,2000,1,1,0.16,1,0 +38123,225889604,Queens,Flushing,40.76339,-73.82831,Private room,55,1,7,0.95,5,85 +38124,16768238,Manhattan,Hell's Kitchen,40.75975,-73.9944,Private room,215,2,0,,1,0 +38125,122053964,Manhattan,SoHo,40.72355,-74.0032,Entire home/apt,200,2,0,,1,0 +38126,224414117,Manhattan,Hell's Kitchen,40.75665,-73.99838000000001,Private room,129,1,18,2.4,30,140 +38127,15823232,Brooklyn,Crown Heights,40.67698,-73.94414,Private room,99,2,2,0.29,3,78 +38128,225889604,Queens,Flushing,40.76548,-73.82764,Private room,82,1,2,0.31,5,85 +38129,2286764,Queens,Woodside,40.75542,-73.90716,Entire home/apt,125,3,14,2.05,1,42 +38130,41326201,Queens,Ridgewood,40.69845,-73.90838000000001,Private room,150,1,14,1.89,1,89 +38131,225943653,Brooklyn,Bedford-Stuyvesant,40.68515,-73.94743000000001,Entire home/apt,151,1,1,0.13,1,179 +38132,15823232,Brooklyn,Crown Heights,40.6773,-73.94465,Private room,99,2,1,0.6,3,84 +38133,188896,Brooklyn,Clinton Hill,40.6887,-73.96668000000001,Entire home/apt,98,1,32,4.1,2,257 +38134,4750332,Manhattan,Hell's Kitchen,40.75884,-73.99208,Entire home/apt,800,180,0,,1,358 +38135,57755572,Brooklyn,Greenpoint,40.73008,-73.96061999999999,Private room,70,2,2,0.27,1,0 +38136,5743700,Brooklyn,Greenpoint,40.72918,-73.95538,Entire home/apt,200,4,1,0.15,1,0 +38137,15967997,Brooklyn,Williamsburg,40.71861,-73.95448,Entire home/apt,380,3,3,0.48,1,14 +38138,2969845,Manhattan,SoHo,40.72418,-73.99978,Entire home/apt,500,5,3,0.46,1,63 +38139,9834068,Brooklyn,Bushwick,40.69726,-73.91587,Private room,50,2,19,2.52,1,5 +38140,43089807,Brooklyn,Williamsburg,40.71318,-73.95876,Entire home/apt,149,2,20,2.8,1,263 +38141,226201658,Brooklyn,Williamsburg,40.70689,-73.94996,Entire home/apt,73,30,1,0.23,3,345 +38142,226204224,Brooklyn,Bushwick,40.6991,-73.92338000000001,Private room,50,1,7,0.93,1,0 +38143,126449349,Manhattan,Lower East Side,40.71436,-73.98855999999999,Private room,80,1,6,0.77,2,151 +38144,24524608,Manhattan,West Village,40.72975,-74.0042,Entire home/apt,170,2,9,1.37,1,19 +38145,951571,Manhattan,East Village,40.72815,-73.98455,Entire home/apt,120,1,5,0.65,1,191 +38146,4361061,Queens,Astoria,40.77298,-73.92461,Entire home/apt,70,1,1,0.16,2,2 +38147,407922,Manhattan,Tribeca,40.72018,-74.00451,Private room,70,30,2,0.26,1,0 +38148,141713210,Manhattan,Theater District,40.75716,-73.98796,Entire home/apt,400,4,2,0.31,1,0 +38149,224815152,Manhattan,Hell's Kitchen,40.75438,-73.99759,Private room,209,2,11,1.63,8,73 +38150,225889604,Queens,Flushing,40.764179999999996,-73.8293,Private room,72,1,8,1.12,5,74 +38151,226205088,Manhattan,Harlem,40.80324,-73.94887,Entire home/apt,125,2,12,3.05,1,7 +38152,7285648,Manhattan,Chelsea,40.746559999999995,-74.00441,Private room,114,1,1,0.16,3,0 +38153,226230372,Brooklyn,East Flatbush,40.648790000000005,-73.95079,Entire home/apt,88,2,44,5.92,1,7 +38154,36021544,Manhattan,Hell's Kitchen,40.76375,-73.99201,Entire home/apt,250,6,0,,1,87 +38155,5144567,Manhattan,Financial District,40.70845,-74.01037,Private room,209,7,1,0.16,13,358 +38156,9156492,Manhattan,Financial District,40.70701,-74.0151,Entire home/apt,114,1,6,0.79,1,11 +38157,4445708,Brooklyn,Bedford-Stuyvesant,40.69137,-73.96,Entire home/apt,118,2,6,0.89,1,67 +38158,1385157,Manhattan,Upper West Side,40.78318,-73.97372,Entire home/apt,130,30,1,0.34,5,261 +38159,95958773,Brooklyn,Brighton Beach,40.578109999999995,-73.96004,Shared room,50,1,0,,3,365 +38160,22694324,Bronx,Allerton,40.86975,-73.84669,Entire home/apt,75,1,7,0.93,1,1 +38161,226250191,Brooklyn,Brownsville,40.652390000000004,-73.91029,Entire home/apt,130,2,20,2.63,1,139 +38162,101215475,Brooklyn,Williamsburg,40.70762,-73.96503,Private room,90,3,10,4.55,1,77 +38163,224074972,Brooklyn,Bedford-Stuyvesant,40.69356,-73.94537,Private room,80,2,16,2.17,4,3 +38164,225108575,Manhattan,Midtown,40.75693,-73.96583000000001,Entire home/apt,206,30,3,0.41,1,161 +38165,225971717,Manhattan,Harlem,40.8242,-73.9537,Entire home/apt,120,2,4,0.53,1,0 +38166,213781715,Brooklyn,Greenpoint,40.730309999999996,-73.95742,Entire home/apt,306,1,0,,33,364 +38167,10809204,Brooklyn,Crown Heights,40.668440000000004,-73.95857,Shared room,46,2,0,,1,0 +38168,5918341,Brooklyn,Bedford-Stuyvesant,40.684459999999994,-73.95182,Entire home/apt,149,3,14,1.88,2,0 +38169,163737392,Bronx,Fieldston,40.894659999999995,-73.89735,Shared room,50,1,8,1.26,2,241 +38170,50319699,Queens,Astoria,40.77036,-73.92191,Entire home/apt,165,3,2,0.27,1,0 +38171,38140449,Manhattan,Upper West Side,40.77355,-73.99084,Entire home/apt,375,4,1,0.16,1,0 +38172,41217631,Manhattan,Chinatown,40.71508,-73.9975,Private room,75,1,33,4.52,2,0 +38173,48958233,Manhattan,Gramercy,40.73619,-73.98307,Entire home/apt,259,1,14,1.92,2,0 +38174,11869986,Brooklyn,Crown Heights,40.672990000000006,-73.95804,Entire home/apt,210,4,1,0.16,1,0 +38175,226335012,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95596,Private room,55,2,23,3.59,1,323 +38176,4077993,Brooklyn,Crown Heights,40.67536,-73.94237,Entire home/apt,460,2,2,0.27,2,0 +38177,65407018,Brooklyn,Greenpoint,40.7227,-73.93691,Private room,85,1,14,1.92,5,137 +38178,120762452,Manhattan,Murray Hill,40.74957,-73.97683,Entire home/apt,111,30,1,1.0,50,332 +38179,114673570,Manhattan,East Harlem,40.809090000000005,-73.93726,Private room,200,30,0,,1,358 +38180,120762452,Manhattan,Murray Hill,40.74839,-73.97556,Entire home/apt,111,30,0,,50,365 +38181,178473107,Manhattan,Harlem,40.82982,-73.94660999999999,Private room,109,1,1,0.16,6,41 +38182,216903925,Manhattan,Washington Heights,40.8375,-73.94181999999999,Entire home/apt,99,1,2,0.31,1,0 +38183,3562922,Manhattan,Nolita,40.721540000000005,-73.99727,Entire home/apt,300,4,3,0.48,1,97 +38184,27668092,Brooklyn,Bushwick,40.69412,-73.9062,Private room,70,3,8,1.06,3,67 +38185,226391260,Manhattan,Chelsea,40.740790000000004,-74.00383000000001,Entire home/apt,250,3,4,0.63,1,49 +38186,9962746,Brooklyn,Fort Greene,40.688,-73.97185,Entire home/apt,80,3,2,0.32,1,107 +38187,24131677,Manhattan,Financial District,40.70636,-74.0096,Entire home/apt,240,7,14,1.98,2,305 +38188,221844597,Queens,St. Albans,40.68739,-73.76598,Entire home/apt,35,1,63,8.44,1,8 +38189,45319780,Brooklyn,Williamsburg,40.70795,-73.94306999999999,Entire home/apt,200,3,0,,1,0 +38190,195452338,Manhattan,Harlem,40.81112,-73.94289,Private room,100,3,2,0.32,1,0 +38191,226381548,Manhattan,Nolita,40.72249,-73.99406,Entire home/apt,160,3,14,1.98,1,0 +38192,226402773,Queens,Douglaston,40.75466,-73.72924,Entire home/apt,178,5,14,1.94,1,143 +38193,215531390,Manhattan,Hell's Kitchen,40.76481,-73.9922,Entire home/apt,269,4,6,0.92,1,43 +38194,2557167,Bronx,Claremont Village,40.834990000000005,-73.91003,Private room,75,3,19,2.59,1,109 +38195,226406882,Brooklyn,East Flatbush,40.65867,-73.92953,Entire home/apt,200,1,0,,3,87 +38196,226410657,Brooklyn,Bedford-Stuyvesant,40.6877,-73.93146,Private room,42,30,2,0.47,27,353 +38197,226410935,Manhattan,Washington Heights,40.83815,-73.94385,Private room,40,3,23,3.0,1,129 +38198,226410657,Brooklyn,Bedford-Stuyvesant,40.68765,-73.93208,Private room,42,30,1,1.0,27,339 +38199,53241793,Manhattan,Hell's Kitchen,40.76207,-73.98935,Entire home/apt,160,1,51,7.5,1,25 +38200,226414315,Manhattan,Hell's Kitchen,40.76802,-73.9906,Private room,130,2,5,0.71,1,78 +38201,226414996,Queens,Ditmars Steinway,40.772690000000004,-73.90626,Entire home/apt,90,14,1,0.16,2,19 +38202,79194704,Manhattan,East Harlem,40.787209999999995,-73.94131,Private room,99,1,1,0.13,1,0 +38203,105248014,Brooklyn,East Flatbush,40.64574,-73.94675,Private room,50,1,46,6.03,2,34 +38204,182990602,Brooklyn,Clinton Hill,40.69205,-73.96646,Entire home/apt,150,2,41,5.42,1,60 +38205,42870202,Queens,Astoria,40.75978,-73.91748,Private room,80,7,1,0.15,1,8 +38206,2446722,Brooklyn,Bedford-Stuyvesant,40.691759999999995,-73.95396,Entire home/apt,120,3,22,3.07,1,16 +38207,1813055,Manhattan,Midtown,40.758759999999995,-73.96153000000001,Entire home/apt,162,1,0,,1,51 +38208,204906313,Brooklyn,Sheepshead Bay,40.590990000000005,-73.94856,Private room,60,1,56,7.24,3,48 +38209,33529908,Manhattan,Chelsea,40.74172,-73.99937,Private room,66,5,0,,1,5 +38210,3202935,Manhattan,Midtown,40.75199,-73.9725,Entire home/apt,350,3,17,2.49,1,33 +38211,83699356,Manhattan,NoHo,40.72746,-73.99288,Entire home/apt,150,6,0,,1,0 +38212,38334307,Manhattan,Upper West Side,40.77848,-73.97995999999999,Entire home/apt,150,1,7,0.95,1,0 +38213,215944788,Manhattan,Chelsea,40.74337,-73.99423,Private room,85,3,15,2.13,3,1 +38214,126653377,Manhattan,Harlem,40.80348,-73.95775,Private room,50,30,1,0.17,6,304 +38215,61116037,Manhattan,Financial District,40.70428,-74.00707,Entire home/apt,550,2,30,3.96,1,72 +38216,46068130,Manhattan,Flatiron District,40.7443,-73.99056,Entire home/apt,225,5,4,0.54,2,1 +38217,6480134,Manhattan,Harlem,40.82293,-73.93958,Private room,70,4,8,1.26,2,102 +38218,44434863,Brooklyn,Sunset Park,40.64564,-74.01867,Private room,75,1,1,0.15,1,365 +38219,51364990,Brooklyn,Williamsburg,40.713609999999996,-73.95703,Entire home/apt,195,2,5,1.61,1,7 +38220,113675409,Manhattan,East Village,40.72724,-73.97601,Private room,1880,180,0,,1,358 +38221,126653377,Manhattan,Harlem,40.802890000000005,-73.95813000000001,Private room,63,30,2,0.32,6,335 +38222,156237907,Brooklyn,Bushwick,40.694990000000004,-73.90994,Private room,40,5,1,0.13,1,250 +38223,101080203,Manhattan,Gramercy,40.73652,-73.98618,Entire home/apt,3000,1,1,0.15,1,365 +38224,126653377,Manhattan,Harlem,40.805209999999995,-73.95591999999999,Private room,63,30,1,0.37,6,1 +38225,34277028,Brooklyn,Bedford-Stuyvesant,40.68633,-73.92728000000001,Entire home/apt,150,3,15,2.13,1,77 +38226,126653377,Manhattan,Harlem,40.80447,-73.95589,Private room,63,30,0,,6,364 +38227,2743475,Manhattan,Nolita,40.72224,-73.99675,Entire home/apt,165,3,5,0.74,1,0 +38228,226517382,Brooklyn,Navy Yard,40.70159,-73.9801,Private room,50,6,1,0.15,1,0 +38229,198445878,Brooklyn,Bushwick,40.70131,-73.93039,Private room,50,1,0,,1,0 +38230,30381245,Brooklyn,Bushwick,40.69968,-73.93588000000001,Private room,85,1,4,0.61,1,1 +38231,204541838,Brooklyn,Flatbush,40.64308,-73.96508,Private room,150,3,2,0.27,2,364 +38232,226531905,Manhattan,Two Bridges,40.71261,-73.99475,Private room,62,1,7,0.93,1,58 +38233,55468128,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95597,Private room,50,1,13,1.74,7,264 +38234,54606969,Brooklyn,Fort Greene,40.68412,-73.96951,Private room,60,7,3,0.42,1,250 +38235,217293060,Manhattan,Greenwich Village,40.733129999999996,-73.99691999999999,Entire home/apt,299,6,0,,4,0 +38236,28695751,Brooklyn,Park Slope,40.67958,-73.97816,Entire home/apt,345,3,10,1.38,2,0 +38237,855079,Manhattan,East Village,40.72829,-73.98451999999999,Entire home/apt,92,1,2,0.29,3,0 +38238,88777320,Brooklyn,Clinton Hill,40.68658,-73.96752,Private room,241,1,2,0.47,1,139 +38239,43981373,Bronx,Concourse,40.83488,-73.91988,Private room,45,2,3,0.57,1,0 +38240,14987061,Brooklyn,Flatbush,40.6478,-73.96091,Entire home/apt,125,2,3,0.4,1,1 +38241,163152195,Bronx,Port Morris,40.80747,-73.92766,Private room,145,1,7,1.12,1,360 +38242,55299396,Manhattan,Chinatown,40.71629,-73.98975,Private room,275,2,6,2.28,1,85 +38243,19168930,Manhattan,East Village,40.73298,-73.98768000000001,Entire home/apt,495,2,6,0.82,1,230 +38244,222749009,Manhattan,Washington Heights,40.84216,-73.94227,Private room,50,1,4,1.02,3,71 +38245,34508000,Queens,Rego Park,40.72276,-73.85683,Private room,40,1,6,0.79,1,0 +38246,208235184,Brooklyn,Greenpoint,40.72305,-73.94575999999999,Entire home/apt,195,1,0,,1,12 +38247,222749009,Manhattan,Washington Heights,40.84241,-73.94264,Private room,50,1,3,0.39,3,180 +38248,226562416,Brooklyn,East Flatbush,40.66093,-73.93893,Private room,69,1,18,2.48,1,175 +38249,53887230,Manhattan,Washington Heights,40.85042,-73.93649,Entire home/apt,120,5,1,0.16,1,231 +38250,27636707,Manhattan,West Village,40.731809999999996,-74.00605999999999,Entire home/apt,300,3,21,5.25,5,308 +38251,27636707,Manhattan,West Village,40.73389,-74.00646,Entire home/apt,285,3,12,1.76,5,313 +38252,157687888,Brooklyn,Bensonhurst,40.61072,-73.98533,Entire home/apt,90,2,53,7.07,1,36 +38253,226572566,Manhattan,Upper East Side,40.77066,-73.94993000000001,Entire home/apt,140,5,24,3.35,1,48 +38254,226574177,Manhattan,Harlem,40.82894,-73.94568000000001,Private room,46,1,1,0.13,1,179 +38255,8189649,Brooklyn,Williamsburg,40.718759999999996,-73.94436,Private room,96,3,0,,1,0 +38256,4085985,Brooklyn,Williamsburg,40.71134,-73.96059,Entire home/apt,200,3,0,,1,28 +38257,50755816,Brooklyn,Bushwick,40.69631,-73.92944,Private room,37,1,2,0.34,1,0 +38258,146638424,Manhattan,East Village,40.72141,-73.98111,Entire home/apt,134,1,2,0.27,1,0 +38259,95114505,Brooklyn,East Flatbush,40.648740000000004,-73.94467,Entire home/apt,150,3,3,3.0,1,0 +38260,226587084,Manhattan,Financial District,40.70816,-74.0084,Entire home/apt,195,30,13,4.29,1,305 +38261,57328653,Manhattan,Midtown,40.75886,-73.96374,Private room,90,60,0,,2,64 +38262,6524294,Manhattan,Upper East Side,40.7843,-73.95745,Entire home/apt,450,5,5,0.71,2,345 +38263,214137767,Manhattan,East Harlem,40.78572,-73.94468,Private room,100,1,13,1.78,1,270 +38264,92706260,Queens,Flushing,40.73941,-73.82099000000001,Private room,49,1,19,2.5,5,48 +38265,51366012,Manhattan,Upper East Side,40.76044,-73.96096999999999,Entire home/apt,189,2,3,2.43,1,29 +38266,224414117,Manhattan,Hell's Kitchen,40.75606,-73.99662,Private room,199,1,21,2.96,30,133 +38267,53518745,Queens,Astoria,40.76171,-73.91725,Private room,300,3,2,0.32,1,54 +38268,224414117,Manhattan,Hell's Kitchen,40.754909999999995,-73.99644,Private room,199,1,24,3.27,30,155 +38269,224414117,Manhattan,Hell's Kitchen,40.7552,-73.99672,Private room,179,1,10,1.36,30,175 +38270,224414117,Manhattan,Hell's Kitchen,40.75652,-73.99826,Private room,179,1,24,3.23,30,165 +38271,137358866,Queens,Woodside,40.74041,-73.89029000000001,Private room,49,30,3,0.5,103,195 +38272,41091852,Brooklyn,Bedford-Stuyvesant,40.69338,-73.94328,Private room,75,1,29,4.6,1,84 +38273,1384016,Manhattan,Lower East Side,40.71501,-73.98478,Private room,95,2,5,0.71,1,165 +38274,66740918,Brooklyn,Gowanus,40.66838,-73.99325,Entire home/apt,125,12,0,,1,83 +38275,226664611,Queens,South Ozone Park,40.680479999999996,-73.8125,Entire home/apt,72,2,26,3.8,2,317 +38276,226503876,Manhattan,Lower East Side,40.71284,-73.98861,Private room,75,5,14,2.09,2,217 +38277,204541838,Brooklyn,Flatbush,40.644890000000004,-73.96363000000001,Private room,65,3,15,2.05,2,208 +38278,49589973,Brooklyn,Fort Greene,40.68665,-73.97183000000001,Private room,112,5,2,0.37,1,12 +38279,226684665,Queens,Ridgewood,40.70673,-73.90071,Private room,40,1,0,,1,0 +38280,226688121,Brooklyn,Bedford-Stuyvesant,40.68504,-73.91699,Entire home/apt,175,1,16,3.97,1,9 +38281,100935364,Brooklyn,Gowanus,40.68234,-73.98129,Private room,44,2,3,0.47,2,0 +38282,9864136,Brooklyn,Bushwick,40.68513,-73.91385,Private room,50,30,0,,26,365 +38283,6701890,Brooklyn,Greenpoint,40.73128,-73.95439,Private room,95,7,1,0.34,2,0 +38284,154340775,Manhattan,Midtown,40.75172,-73.97191,Entire home/apt,500,4,0,,1,0 +38285,21651849,Manhattan,Upper West Side,40.7723,-73.99363000000001,Entire home/apt,188,2,12,1.93,1,0 +38286,186701037,Brooklyn,Dyker Heights,40.62877,-74.00918,Entire home/apt,75,1,0,,2,0 +38287,107562106,Manhattan,Lower East Side,40.71983,-73.98686,Entire home/apt,295,5,0,,1,0 +38288,222302376,Manhattan,Upper West Side,40.79396,-73.96311,Entire home/apt,400,4,39,5.18,1,265 +38289,226715173,Manhattan,East Village,40.72828,-73.98823,Entire home/apt,125,2,1,0.75,2,365 +38290,226715173,Manhattan,East Village,40.730309999999996,-73.98666,Entire home/apt,139,2,2,0.32,2,365 +38291,75349777,Manhattan,Harlem,40.815329999999996,-73.95733,Private room,70,3,3,0.42,1,0 +38292,108890111,Manhattan,West Village,40.73045,-74.00265999999999,Private room,90,2,1,0.16,1,0 +38293,219517861,Manhattan,Financial District,40.70637,-74.00645,Entire home/apt,302,29,0,,327,309 +38294,219517861,Manhattan,Financial District,40.70771,-74.00641,Entire home/apt,229,29,1,0.73,327,219 +38295,12827163,Manhattan,Chelsea,40.74057,-73.99908,Entire home/apt,200,5,0,,1,0 +38296,61391963,Manhattan,Upper East Side,40.7719,-73.95521,Entire home/apt,133,30,3,0.69,91,341 +38297,39329047,Manhattan,Hell's Kitchen,40.76186,-73.99736999999999,Entire home/apt,150,10,4,0.58,1,0 +38298,11547083,Manhattan,Upper West Side,40.79757,-73.96065,Entire home/apt,135,2,2,0.32,1,1 +38299,19591194,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94236,Entire home/apt,175,5,1,0.16,1,84 +38300,188477517,Brooklyn,Williamsburg,40.7107,-73.95846,Private room,100,1,1,0.14,1,0 +38301,21226117,Manhattan,Upper East Side,40.775529999999996,-73.95506999999999,Entire home/apt,345,7,0,,1,0 +38302,145248567,Brooklyn,Crown Heights,40.664359999999995,-73.95275,Entire home/apt,120,3,43,5.94,1,56 +38303,2823246,Brooklyn,Bedford-Stuyvesant,40.68377,-73.95804,Entire home/apt,70,4,1,0.13,1,0 +38304,13608859,Brooklyn,Williamsburg,40.70316,-73.94914,Private room,110,1,13,1.85,1,6 +38305,52599987,Queens,Ditmars Steinway,40.77568,-73.90303,Private room,100,1,2,0.27,1,0 +38306,226772729,Manhattan,Upper West Side,40.79535,-73.9641,Private room,120,5,1,0.18,1,0 +38307,117831982,Manhattan,Little Italy,40.71781,-73.99783000000001,Private room,130,3,17,2.34,1,84 +38308,221836975,Queens,Jackson Heights,40.74848,-73.89149,Shared room,35,2,1,0.16,3,310 +38309,132878036,Manhattan,Hell's Kitchen,40.76383,-73.98979,Entire home/apt,185,4,23,3.05,1,230 +38310,205031545,Manhattan,Midtown,40.752520000000004,-73.96667,Entire home/apt,714,28,1,0.19,49,257 +38311,205031545,Manhattan,Midtown,40.75436,-73.9671,Entire home/apt,675,28,1,0.81,49,253 +38312,205031545,Manhattan,Midtown,40.75363,-73.96648,Entire home/apt,675,28,2,0.32,49,243 +38313,205031545,Manhattan,Midtown,40.754,-73.96531,Entire home/apt,675,28,6,0.95,49,253 +38314,205031545,Manhattan,Midtown,40.753809999999994,-73.96724,Entire home/apt,675,28,2,0.31,49,224 +38315,205031545,Manhattan,Midtown,40.75404,-73.9671,Entire home/apt,675,28,0,,49,241 +38316,205031545,Manhattan,Midtown,40.75385,-73.96536,Entire home/apt,956,4,2,0.29,49,80 +38317,205031545,Manhattan,Midtown,40.752759999999995,-73.96582,Entire home/apt,675,28,1,0.23,49,251 +38318,205031545,Manhattan,Midtown,40.75408,-73.96568,Entire home/apt,675,28,0,,49,254 +38319,205031545,Manhattan,Midtown,40.75439,-73.96647,Entire home/apt,675,28,4,0.63,49,253 +38320,205031545,Manhattan,Midtown,40.752320000000005,-73.96696,Entire home/apt,675,28,1,0.6,49,234 +38321,205031545,Manhattan,Midtown,40.75371,-73.96515,Entire home/apt,675,28,0,,49,251 +38322,205031545,Manhattan,Midtown,40.75271,-73.96575,Entire home/apt,714,28,1,0.19,49,257 +38323,205031545,Manhattan,Midtown,40.75376,-73.96644,Entire home/apt,714,28,1,0.16,49,257 +38324,205031545,Manhattan,Midtown,40.75447,-73.96573000000001,Entire home/apt,714,28,0,,49,257 +38325,205031545,Manhattan,Midtown,40.75439,-73.96648,Entire home/apt,956,4,0,,49,121 +38326,205031545,Manhattan,Midtown,40.75373,-73.96536,Entire home/apt,714,28,0,,49,257 +38327,205031545,Manhattan,Midtown,40.75443,-73.96594,Entire home/apt,714,28,0,,49,257 +38328,205031545,Manhattan,Midtown,40.754020000000004,-73.96724,Entire home/apt,714,28,0,,49,252 +38329,205031545,Manhattan,Midtown,40.75385,-73.96573000000001,Entire home/apt,675,28,1,0.6,49,234 +38330,205031545,Manhattan,Midtown,40.75428,-73.96566,Entire home/apt,675,28,1,0.16,49,225 +38331,205031545,Manhattan,Midtown,40.7538,-73.96564000000001,Entire home/apt,714,28,0,,49,257 +38332,205031545,Manhattan,Midtown,40.75271,-73.96638,Entire home/apt,714,28,0,,49,257 +38333,205031545,Manhattan,Midtown,40.75264,-73.96543,Entire home/apt,714,28,0,,49,257 +38334,205031545,Manhattan,Midtown,40.75459,-73.96566,Entire home/apt,714,28,0,,49,257 +38335,205031545,Manhattan,Midtown,40.75403,-73.96714,Entire home/apt,714,28,0,,49,250 +38336,178733071,Queens,Ditmars Steinway,40.7747,-73.90115,Private room,50,2,0,,1,171 +38337,15640230,Brooklyn,Crown Heights,40.66433,-73.93383,Private room,40,30,0,,4,354 +38338,226769067,Queens,Flushing,40.75982,-73.80629,Entire home/apt,59,1,32,4.62,1,24 +38339,226832980,Manhattan,Lower East Side,40.71744,-73.98957,Private room,115,3,19,2.81,1,0 +38340,212033848,Manhattan,Chelsea,40.74453,-73.99195999999999,Private room,150,1,4,0.55,1,1 +38341,226839517,Manhattan,Midtown,40.75714,-73.96748000000001,Private room,90,1,42,5.68,1,45 +38342,226839928,Manhattan,East Harlem,40.79844,-73.94048000000001,Entire home/apt,220,5,0,,1,205 +38343,36728751,Brooklyn,South Slope,40.661809999999996,-73.98218,Entire home/apt,130,4,2,0.28,1,179 +38344,11068937,Brooklyn,Clinton Hill,40.68325,-73.96486999999999,Entire home/apt,110,4,4,0.65,2,0 +38345,39890192,Manhattan,Morningside Heights,40.80402,-73.96345,Entire home/apt,266,14,2,0.78,12,86 +38346,226838925,Queens,Glendale,40.6953,-73.898,Private room,100,1,5,0.68,1,0 +38347,78971832,Manhattan,Upper East Side,40.76804,-73.95951,Private room,73,3,0,,1,0 +38348,25769417,Manhattan,Harlem,40.82022,-73.95309,Private room,150,100,0,,1,88 +38349,949070,Brooklyn,Bushwick,40.708870000000005,-73.92154000000001,Entire home/apt,200,3,1,0.16,1,5 +38350,226846427,Brooklyn,Bay Ridge,40.63921,-74.02474000000001,Entire home/apt,90,3,19,2.75,1,52 +38351,107434423,Manhattan,Tribeca,40.71532,-74.00645,Entire home/apt,303,30,1,0.2,232,331 +38352,226565802,Queens,Rego Park,40.72664,-73.85884,Entire home/apt,250,2,1,0.18,1,365 +38353,17011664,Staten Island,St. George,40.64682,-74.08575,Entire home/apt,86,5,1,0.16,1,43 +38354,221595358,Manhattan,Tribeca,40.719409999999996,-74.00856,Private room,80,1,38,5.04,2,329 +38355,72326431,Manhattan,East Village,40.72573,-73.98841,Entire home/apt,100,2,11,1.47,1,102 +38356,17966682,Brooklyn,Bushwick,40.69498,-73.90698,Entire home/apt,179,1,5,0.7,1,365 +38357,16081505,Brooklyn,Williamsburg,40.71853,-73.96415,Entire home/apt,220,2,6,0.84,1,16 +38358,51340124,Manhattan,Chelsea,40.73851,-73.99213,Entire home/apt,3000,2,0,,2,0 +38359,219718268,Manhattan,Upper East Side,40.76917,-73.95366999999999,Entire home/apt,230,2,13,1.78,1,0 +38360,169490939,Queens,Astoria,40.76635,-73.9205,Private room,89,3,2,0.71,2,208 +38361,117648324,Brooklyn,Gravesend,40.60626,-73.9754,Private room,40,1,1,0.14,1,335 +38362,73128753,Manhattan,Financial District,40.705420000000004,-74.00678,Private room,105,2,3,0.47,1,8 +38363,38649650,Manhattan,Hell's Kitchen,40.76826,-73.98719,Entire home/apt,175,7,2,0.79,1,188 +38364,27716292,Brooklyn,Williamsburg,40.71225,-73.94960999999999,Private room,50,2,2,0.92,1,0 +38365,226906712,Manhattan,Harlem,40.8077,-73.94953000000001,Private room,127,1,0,,1,89 +38366,224414117,Manhattan,Hell's Kitchen,40.75523,-73.99826999999999,Private room,107,1,25,3.52,30,169 +38367,224414117,Manhattan,Hell's Kitchen,40.75506,-73.99803,Private room,199,1,7,0.95,30,166 +38368,37621814,Brooklyn,South Slope,40.66493,-73.98136,Entire home/apt,125,1,27,3.82,1,18 +38369,19303369,Queens,Jackson Heights,40.75074,-73.89339,Private room,43,30,1,0.43,37,1 +38370,204704622,Queens,Elmhurst,40.73925,-73.87745,Private room,35,29,2,0.38,7,1 +38371,204704622,Queens,Elmhurst,40.73885,-73.87553,Private room,33,29,2,0.71,7,1 +38372,27245607,Manhattan,West Village,40.733309999999996,-74.00502,Entire home/apt,165,1,2,0.32,1,0 +38373,13133052,Manhattan,Midtown,40.74749,-73.9869,Entire home/apt,182,3,16,2.31,1,301 +38374,226958612,Manhattan,Midtown,40.747409999999995,-73.98732,Entire home/apt,227,3,16,2.44,1,321 +38375,137358866,Queens,Elmhurst,40.734770000000005,-73.87858,Private room,41,30,2,0.76,103,268 +38376,2271676,Manhattan,East Village,40.72566,-73.985,Entire home/apt,292,2,0,,1,0 +38377,41827902,Manhattan,East Village,40.72853,-73.98761999999999,Private room,115,2,6,0.87,1,23 +38378,180311428,Bronx,Allerton,40.86757,-73.8649,Private room,60,2,1,0.16,1,363 +38379,226979522,Manhattan,Midtown,40.74779,-73.98859,Entire home/apt,135,4,9,1.46,1,314 +38380,86973566,Bronx,City Island,40.850559999999994,-73.78829,Private room,65,3,2,0.27,1,89 +38381,226927431,Manhattan,Upper East Side,40.767340000000004,-73.95233,Private room,100,4,28,3.8,2,40 +38382,206648175,Manhattan,East Harlem,40.78535,-73.94268000000001,Private room,99,2,12,1.64,1,176 +38383,50240612,Manhattan,Midtown,40.74903,-73.98528,Entire home/apt,375,1,7,1.1,1,0 +38384,227007194,Manhattan,Midtown,40.75339,-73.96765,Entire home/apt,250,1,1,0.13,1,64 +38385,8073725,Manhattan,Chelsea,40.74875,-73.99696999999999,Entire home/apt,175,1,24,3.17,1,365 +38386,2156741,Queens,Forest Hills,40.73622,-73.8466,Entire home/apt,90,2,37,5.05,1,21 +38387,227020247,Manhattan,Upper East Side,40.77112,-73.95652,Shared room,49,2,17,2.31,1,39 +38388,226338109,Brooklyn,Bedford-Stuyvesant,40.688109999999995,-73.95626999999999,Private room,65,2,18,2.48,4,343 +38389,227021565,Manhattan,Harlem,40.82669,-73.93831999999999,Private room,44,1,15,2.38,1,45 +38390,226338109,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95614,Private room,65,2,9,1.29,4,311 +38391,226338109,Brooklyn,Bedford-Stuyvesant,40.68976,-73.95639,Private room,65,2,13,2.15,4,321 +38392,73839962,Manhattan,Midtown,40.75421,-73.96834,Entire home/apt,246,3,1,0.16,1,365 +38393,48692009,Brooklyn,Flatbush,40.64627,-73.95396,Private room,50,1,0,,1,0 +38394,86171061,Manhattan,Hell's Kitchen,40.758109999999995,-73.99526999999999,Entire home/apt,300,2,5,0.8,1,0 +38395,4982459,Brooklyn,Flatbush,40.65333,-73.96552,Entire home/apt,350,3,0,,3,0 +38396,227037845,Queens,Maspeth,40.7385,-73.9065,Entire home/apt,99,1,43,5.73,1,231 +38397,72614493,Manhattan,Lower East Side,40.71246,-73.99069,Private room,355,2,10,2.34,1,75 +38398,215919088,Brooklyn,Williamsburg,40.711999999999996,-73.95397,Entire home/apt,120,3,2,0.32,1,0 +38399,2647893,Manhattan,Greenwich Village,40.73138,-73.99976,Private room,125,10,0,,1,347 +38400,107915864,Queens,Howard Beach,40.66682,-73.85161,Entire home/apt,130,1,0,,4,285 +38401,154843406,Manhattan,Harlem,40.830009999999994,-73.94925,Private room,69,3,11,1.45,2,167 +38402,6004082,Brooklyn,Bushwick,40.69344,-73.92245,Entire home/apt,175,5,20,2.84,1,12 +38403,45835291,Manhattan,Harlem,40.82206,-73.95573,Private room,50,7,35,4.73,6,11 +38404,224042160,Brooklyn,East Flatbush,40.652359999999994,-73.94965,Private room,38,2,9,1.58,3,357 +38405,227063506,Brooklyn,Sunset Park,40.6475,-74.00786,Entire home/apt,64,5,8,1.22,1,0 +38406,226339724,Brooklyn,Bedford-Stuyvesant,40.68176,-73.91435,Private room,40,2,6,1.67,10,363 +38407,226339724,Brooklyn,Bedford-Stuyvesant,40.68197,-73.91235,Private room,40,2,11,3.17,10,317 +38408,226339724,Brooklyn,Bedford-Stuyvesant,40.6818,-73.9139,Private room,55,2,5,1.7,10,326 +38409,226339724,Brooklyn,Bedford-Stuyvesant,40.68105,-73.91256,Private room,40,2,7,2.69,10,353 +38410,226339724,Brooklyn,Bedford-Stuyvesant,40.68052,-73.91216,Private room,45,2,5,1.36,10,362 +38411,226339724,Brooklyn,Bedford-Stuyvesant,40.68249,-73.91275999999999,Private room,50,3,3,0.73,10,333 +38412,8998154,Brooklyn,Bushwick,40.69347,-73.92448,Entire home/apt,99,2,12,1.71,2,46 +38413,133687324,Brooklyn,Bedford-Stuyvesant,40.6932,-73.94896999999999,Entire home/apt,250,5,4,0.55,1,0 +38414,225429345,Manhattan,Midtown,40.75248,-73.97017,Entire home/apt,200,4,8,1.1,1,363 +38415,227134858,Brooklyn,Prospect-Lefferts Gardens,40.66166,-73.94084000000001,Private room,70,1,19,2.57,5,199 +38416,215944788,Manhattan,Hell's Kitchen,40.75844,-73.98965,Private room,200,2,13,1.82,3,224 +38417,227134858,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.94126,Private room,74,1,20,2.83,5,125 +38418,1850477,Brooklyn,Crown Heights,40.677279999999996,-73.94536,Entire home/apt,120,3,0,,2,0 +38419,326465,Brooklyn,Greenpoint,40.7247,-73.95378000000001,Private room,88,7,1,0.15,1,0 +38420,154981576,Brooklyn,Bushwick,40.70115,-73.91105999999999,Private room,37,30,0,,9,29 +38421,227134858,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.94135,Private room,70,1,12,1.86,5,119 +38422,227134858,Brooklyn,Prospect-Lefferts Gardens,40.66191,-73.94136999999999,Private room,70,1,7,0.96,5,158 +38423,227152926,Manhattan,Upper East Side,40.76732,-73.95179,Entire home/apt,150,1,4,0.59,1,49 +38424,27126531,Manhattan,Upper West Side,40.77642,-73.97986999999999,Entire home/apt,150,3,3,0.42,1,0 +38425,149301266,Brooklyn,Bushwick,40.70897,-73.92198,Private room,60,1,1,0.14,1,0 +38426,225160295,Staten Island,Rosebank,40.61438,-74.0664,Entire home/apt,138,1,51,7.18,1,291 +38427,3356798,Manhattan,Upper East Side,40.78139,-73.94678,Entire home/apt,150,30,1,0.14,1,146 +38428,29688249,Manhattan,Harlem,40.82582,-73.94275999999999,Private room,82,1,6,1.94,1,180 +38429,227179489,Manhattan,Roosevelt Island,40.76127,-73.95034,Private room,90,1,46,6.3,1,27 +38430,227165163,Brooklyn,Kensington,40.64249,-73.97559,Private room,56,3,1,0.15,1,47 +38431,23501405,Brooklyn,Downtown Brooklyn,40.690509999999996,-73.98398,Private room,249,1,20,2.82,1,39 +38432,9370327,Manhattan,Lower East Side,40.72097,-73.99274,Private room,120,3,6,0.85,1,0 +38433,140862407,Bronx,Westchester Square,40.843779999999995,-73.84469,Entire home/apt,670,1,2,0.34,1,178 +38434,58658843,Brooklyn,Williamsburg,40.711459999999995,-73.95631999999999,Private room,55,1,27,3.65,3,0 +38435,3624487,Brooklyn,Crown Heights,40.673390000000005,-73.91415,Entire home/apt,149,3,31,4.63,1,224 +38436,4363775,Brooklyn,Greenpoint,40.7319,-73.95739,Entire home/apt,114,31,0,,3,219 +38437,63959641,Queens,Jackson Heights,40.751490000000004,-73.87872,Private room,100,2,16,2.55,1,134 +38438,177058197,Manhattan,Flatiron District,40.73949,-73.98552,Entire home/apt,210,2,6,1.58,1,9 +38439,2186425,Brooklyn,Greenpoint,40.72457,-73.95435,Entire home/apt,100,60,1,0.77,1,220 +38440,24878388,Brooklyn,Park Slope,40.67947,-73.97806,Private room,45,10,1,0.16,2,250 +38441,7340654,Brooklyn,Williamsburg,40.71174,-73.94767,Private room,45,1,7,0.97,1,0 +38442,129162333,Queens,Howard Beach,40.66146,-73.85638,Entire home/apt,207,1,13,1.84,1,346 +38443,227219174,Queens,East Elmhurst,40.766890000000004,-73.87661,Entire home/apt,99,1,14,7.12,1,138 +38444,92706260,Queens,Flushing,40.73888,-73.8206,Private room,45,1,33,4.48,5,80 +38445,3642820,Brooklyn,Crown Heights,40.67672,-73.95839000000001,Private room,80,2,11,2.5,1,28 +38446,115193518,Brooklyn,Bushwick,40.70508,-73.92419,Private room,42,7,0,,3,0 +38447,227165735,Manhattan,Upper West Side,40.77883,-73.9825,Shared room,139,3,0,,2,88 +38448,201015598,Brooklyn,Bedford-Stuyvesant,40.67797,-73.90924,Shared room,35,1,11,1.51,17,89 +38449,105878573,Brooklyn,East New York,40.66522,-73.88686,Private room,50,1,20,2.82,5,62 +38450,105878573,Brooklyn,East New York,40.66547,-73.8891,Private room,40,1,9,2.11,5,64 +38451,226070943,Manhattan,Chelsea,40.74277,-74.00204000000001,Entire home/apt,315,2,15,2.09,1,365 +38452,2346935,Brooklyn,Crown Heights,40.67549,-73.94391999999999,Private room,90,7,0,,1,0 +38453,3445172,Brooklyn,Prospect-Lefferts Gardens,40.66383,-73.94906999999999,Private room,50,12,2,0.32,1,0 +38454,53502678,Queens,Sunnyside,40.7393,-73.9256,Private room,85,7,0,,1,179 +38455,42474896,Brooklyn,Bedford-Stuyvesant,40.68245,-73.95223,Private room,89,1,3,0.45,1,48 +38456,227310832,Queens,Astoria,40.76789,-73.93512,Entire home/apt,1500,7,0,,1,365 +38457,196705969,Manhattan,Greenwich Village,40.72866,-74.0013,Entire home/apt,258,2,4,0.61,1,10 +38458,18576070,Brooklyn,Bushwick,40.69576,-73.93254,Private room,150,30,2,0.27,1,143 +38459,217275948,Queens,Long Island City,40.75926,-73.94006,Entire home/apt,120,1,1,0.16,1,0 +38460,227309215,Manhattan,Lower East Side,40.72129,-73.99271,Entire home/apt,250,5,1,0.4,1,87 +38461,197013608,Manhattan,East Harlem,40.79853,-73.93327,Entire home/apt,75,30,1,0.59,1,0 +38462,87897420,Manhattan,Inwood,40.861709999999995,-73.92945,Private room,65,4,1,0.16,1,13 +38463,48666840,Manhattan,East Village,40.72809,-73.98028000000001,Entire home/apt,93,7,0,,1,0 +38464,227344500,Brooklyn,Bushwick,40.70268,-73.93185,Private room,40,1,24,3.46,1,20 +38465,126176275,Brooklyn,East Flatbush,40.63685,-73.93094,Private room,50,4,12,1.78,4,62 +38466,126691775,Manhattan,Chelsea,40.74941,-73.99589,Entire home/apt,139,1,20,2.74,1,355 +38467,16099130,Manhattan,East Harlem,40.80855,-73.93841,Entire home/apt,232,23,1,0.16,1,0 +38468,204906313,Brooklyn,Sheepshead Bay,40.58889,-73.94797,Private room,32,1,50,6.67,3,83 +38469,31760835,Brooklyn,Bay Ridge,40.635740000000006,-74.03102,Private room,85,365,1,0.14,4,189 +38470,128293264,Manhattan,Washington Heights,40.83956,-73.94102,Entire home/apt,135,1,13,2.0,1,0 +38471,157141199,Manhattan,Inwood,40.86184,-73.92756999999999,Private room,65,5,2,0.32,2,365 +38472,227385012,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95047,Private room,34,1,3,0.43,1,0 +38473,225367154,Brooklyn,East Flatbush,40.65265,-73.91233000000001,Entire home/apt,91,2,13,2.52,1,305 +38474,13291840,Brooklyn,Carroll Gardens,40.67992,-73.99282,Entire home/apt,100,4,2,0.31,1,35 +38475,2449193,Manhattan,Hell's Kitchen,40.76052,-73.99240999999999,Private room,109,2,7,0.94,1,10 +38476,103615271,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93536,Private room,50,21,1,0.86,1,10 +38477,128721938,Manhattan,Kips Bay,40.7425,-73.97704,Entire home/apt,250,3,1,0.16,1,0 +38478,214135354,Manhattan,Upper East Side,40.77754,-73.95114000000001,Shared room,55,1,66,9.12,2,309 +38479,31374,Manhattan,Inwood,40.863279999999996,-73.92184,Private room,50,3,0,,3,96 +38480,82208124,Manhattan,Upper West Side,40.77497,-73.98788,Entire home/apt,137,3,8,1.21,2,0 +38481,5937189,Queens,Ridgewood,40.70247,-73.90474,Private room,45,2,8,1.08,1,2 +38482,36535955,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95697,Entire home/apt,139,2,2,0.31,1,0 +38483,401517,Manhattan,Washington Heights,40.85079,-73.94108,Entire home/apt,279,5,0,,1,55 +38484,19312868,Manhattan,Washington Heights,40.83324,-73.94072,Private room,70,1,0,,1,0 +38485,65653322,Manhattan,Harlem,40.82521,-73.94037,Entire home/apt,97,2,2,0.27,1,0 +38486,1705112,Manhattan,Harlem,40.814859999999996,-73.93941,Entire home/apt,70,1,1,1.0,1,6 +38487,52424735,Manhattan,West Village,40.73807,-74.00468000000001,Private room,80,4,10,1.43,1,26 +38488,212263525,Manhattan,Harlem,40.81051,-73.94014,Private room,100,1,8,1.26,3,253 +38489,24717090,Manhattan,Upper East Side,40.77262,-73.9501,Entire home/apt,220,4,2,0.28,1,0 +38490,227498924,Manhattan,SoHo,40.72607,-74.00166,Entire home/apt,299,4,2,0.32,1,156 +38491,2334794,Manhattan,East Village,40.728609999999996,-73.97734,Entire home/apt,160,1,4,0.55,1,41 +38492,207856540,Staten Island,New Springville,40.58952,-74.15587,Entire home/apt,119,2,17,3.13,1,175 +38493,8120005,Brooklyn,Greenpoint,40.724470000000004,-73.94458,Entire home/apt,70,30,2,0.33,1,0 +38494,119051571,Brooklyn,Clinton Hill,40.69319,-73.96093,Private room,41,1,1,0.45,2,52 +38495,227520154,Brooklyn,Williamsburg,40.70916,-73.96252,Private room,70,4,13,1.85,2,280 +38496,19536596,Brooklyn,Cypress Hills,40.67727,-73.90663,Private room,48,1,63,8.51,5,231 +38497,19536596,Brooklyn,Cypress Hills,40.67627,-73.90795,Private room,48,1,57,7.57,5,199 +38498,36332698,Manhattan,Upper West Side,40.79009,-73.97544,Entire home/apt,2999,1,0,,1,0 +38499,2079332,Manhattan,Upper West Side,40.79855,-73.9717,Entire home/apt,75,1,16,2.13,1,5 +38500,19536596,Brooklyn,Crown Heights,40.676120000000004,-73.90813,Private room,48,1,21,3.04,5,252 +38501,1296938,Brooklyn,Williamsburg,40.71069,-73.94106,Private room,100,5,8,1.21,1,0 +38502,109357781,Manhattan,East Village,40.73237,-73.98495,Entire home/apt,225,7,1,0.16,1,153 +38503,53215338,Brooklyn,Bushwick,40.6985,-73.93578000000001,Private room,80,1,1,0.16,1,0 +38504,23959538,Queens,Ridgewood,40.70268,-73.90824,Private room,36,1,0,,1,0 +38505,31358380,Manhattan,Chinatown,40.717,-73.99717,Private room,100,3,1,0.13,1,88 +38506,51340124,Manhattan,Chelsea,40.73785,-73.99214,Private room,350,2,0,,2,0 +38507,66462141,Manhattan,Harlem,40.80446,-73.95567,Private room,47,5,3,0.42,1,0 +38508,3567433,Brooklyn,Bushwick,40.691179999999996,-73.9083,Private room,35,2,34,4.95,2,112 +38509,1005966,Brooklyn,Williamsburg,40.7198,-73.95813000000001,Entire home/apt,300,3,7,1.11,1,168 +38510,227548199,Brooklyn,Midwood,40.62375,-73.96285999999999,Shared room,50,1,0,,1,85 +38511,73524680,Brooklyn,Crown Heights,40.6772,-73.94442,Private room,60,2,18,3.38,1,0 +38512,10576896,Manhattan,Harlem,40.79939,-73.95218,Private room,85,3,0,,1,6 +38513,1883287,Brooklyn,Clinton Hill,40.6848,-73.96614,Entire home/apt,125,3,2,0.27,1,0 +38514,227569206,Manhattan,Tribeca,40.71478,-74.01161,Entire home/apt,280,3,4,0.55,1,328 +38515,137358866,Queens,Woodside,40.74458,-73.90751999999999,Private room,50,30,0,,103,235 +38516,178666589,Manhattan,East Village,40.72445,-73.98921999999999,Private room,195,1,12,1.61,1,85 +38517,125508339,Manhattan,Upper West Side,40.80177,-73.9693,Entire home/apt,225,3,15,2.39,1,25 +38518,66294381,Manhattan,Morningside Heights,40.80385,-73.96305,Private room,45,10,0,,1,0 +38519,114462596,Manhattan,Harlem,40.82251,-73.9512,Private room,112,1,5,0.67,1,0 +38520,144714634,Queens,Flushing,40.73872,-73.82863,Private room,29,1,49,7.14,1,168 +38521,55817559,Manhattan,East Harlem,40.78748,-73.94779,Private room,399,6,15,2.14,1,47 +38522,782801,Brooklyn,Bedford-Stuyvesant,40.68677,-73.95522,Entire home/apt,125,1,9,1.36,1,192 +38523,220734035,Brooklyn,Williamsburg,40.702090000000005,-73.94223000000001,Private room,60,3,0,,1,0 +38524,57964033,Manhattan,Harlem,40.814029999999995,-73.94957,Entire home/apt,200,1,7,0.99,1,158 +38525,128549927,Manhattan,Hell's Kitchen,40.75907,-73.99558,Entire home/apt,265,1,18,2.55,1,46 +38526,227648437,Manhattan,Washington Heights,40.84556,-73.94025,Entire home/apt,150,6,1,0.16,1,258 +38527,6002231,Manhattan,Harlem,40.81875,-73.93691,Private room,59,90,0,,1,89 +38528,3390942,Queens,Ditmars Steinway,40.77556,-73.90866,Private room,60,3,6,0.84,1,43 +38529,163251048,Manhattan,Hell's Kitchen,40.76189,-73.99955,Entire home/apt,499,30,0,,8,365 +38530,163251048,Manhattan,Hell's Kitchen,40.76211,-73.99791,Entire home/apt,499,30,0,,8,185 +38531,11815674,Brooklyn,Crown Heights,40.66661,-73.95300999999999,Entire home/apt,125,3,4,0.63,1,0 +38532,173282483,Brooklyn,Williamsburg,40.71679,-73.95644,Private room,150,1,4,1.18,1,89 +38533,163251048,Manhattan,Hell's Kitchen,40.76093,-73.99924,Entire home/apt,499,30,0,,8,333 +38534,163251048,Manhattan,Hell's Kitchen,40.76214,-73.99899,Entire home/apt,399,30,0,,8,129 +38535,163251048,Manhattan,Hell's Kitchen,40.76171,-73.99793000000001,Entire home/apt,399,30,0,,8,129 +38536,129158371,Brooklyn,Midwood,40.6188,-73.95416999999999,Private room,54,2,3,0.48,1,64 +38537,224699779,Brooklyn,Bushwick,40.69097,-73.92166,Private room,120,7,0,,1,365 +38538,22641060,Bronx,Williamsbridge,40.878209999999996,-73.86354,Entire home/apt,85,30,0,,1,365 +38539,163251048,Manhattan,Hell's Kitchen,40.76086,-73.99964,Entire home/apt,399,30,0,,8,186 +38540,5412248,Brooklyn,Prospect Heights,40.6753,-73.96768,Entire home/apt,95,30,1,0.14,1,219 +38541,42661839,Brooklyn,Greenpoint,40.73468,-73.95418000000001,Entire home/apt,149,5,2,0.32,1,0 +38542,1364105,Brooklyn,Fort Greene,40.690909999999995,-73.97202,Private room,119,2,28,3.94,1,3 +38543,227671939,Manhattan,Hell's Kitchen,40.761359999999996,-73.99205,Private room,90,4,26,4.29,1,278 +38544,171452798,Manhattan,Upper East Side,40.77655,-73.94787,Entire home/apt,264,1,49,6.87,1,296 +38545,47227131,Brooklyn,Sunset Park,40.64456,-74.00839,Private room,28,10,1,0.16,1,0 +38546,115051556,Brooklyn,Williamsburg,40.71217,-73.94396,Private room,80,1,33,4.97,1,151 +38547,209758777,Manhattan,Midtown,40.74475,-73.98337,Private room,145,1,51,7.39,2,29 +38548,227647873,Queens,Astoria,40.76194,-73.91255,Private room,89,2,15,2.07,3,13 +38549,732460,Brooklyn,Williamsburg,40.70855,-73.96781999999999,Entire home/apt,120,29,1,0.77,7,0 +38550,8441265,Queens,Ridgewood,40.70463,-73.91183000000001,Entire home/apt,190,3,1,0.16,2,0 +38551,227705254,Manhattan,Upper East Side,40.76935,-73.9534,Entire home/apt,275,4,5,0.7,1,77 +38552,137665954,Manhattan,West Village,40.73751,-74.00231,Entire home/apt,168,3,3,0.44,1,0 +38553,50014274,Manhattan,West Village,40.73598,-73.99903,Entire home/apt,200,2,2,0.27,1,0 +38554,90401194,Manhattan,Hell's Kitchen,40.76168,-73.98969,Entire home/apt,180,3,20,2.87,1,79 +38555,91427536,Brooklyn,Bushwick,40.69684,-73.92241,Entire home/apt,100,2,1,0.16,2,5 +38556,28613272,Manhattan,East Harlem,40.799490000000006,-73.93531,Entire home/apt,149,7,1,0.16,1,3 +38557,226406882,Brooklyn,East Flatbush,40.65882,-73.92947,Private room,200,31,0,,3,365 +38558,92546730,Brooklyn,Williamsburg,40.70787,-73.94974,Entire home/apt,55,3,13,1.83,1,0 +38559,8630543,Manhattan,Harlem,40.80453,-73.95015,Entire home/apt,115,3,18,2.6,2,255 +38560,26671786,Manhattan,East Village,40.7233,-73.97882,Private room,79,1,4,0.61,1,0 +38561,10860700,Brooklyn,Williamsburg,40.71293,-73.94283,Private room,120,2,11,1.76,2,117 +38562,21495656,Queens,Little Neck,40.76212,-73.71928,Shared room,32,3,1,0.14,1,88 +38563,198442706,Bronx,Edenwald,40.882290000000005,-73.84295,Private room,80,1,0,,1,365 +38564,1370324,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95631999999999,Entire home/apt,100,3,2,0.32,1,324 +38565,224001464,Manhattan,Chelsea,40.73734,-73.99327,Entire home/apt,333,4,4,1.41,1,80 +38566,159142440,Manhattan,Upper West Side,40.80401,-73.96635,Private room,70,1,7,1.02,1,0 +38567,126653377,Manhattan,Harlem,40.80373,-73.95805,Private room,63,30,0,,6,364 +38568,126653377,Manhattan,Harlem,40.80384,-73.95754000000001,Private room,63,30,1,0.3,6,364 +38569,227801173,Brooklyn,Brooklyn Heights,40.693459999999995,-73.99814,Entire home/apt,125,2,7,1.09,1,47 +38570,226833844,Brooklyn,Bedford-Stuyvesant,40.678779999999996,-73.94094,Entire home/apt,225,2,4,0.62,1,0 +38571,198861577,Brooklyn,Williamsburg,40.721759999999996,-73.95616,Private room,200,7,0,,5,364 +38572,196479236,Manhattan,Flatiron District,40.74154,-73.99283,Entire home/apt,210,1,2,0.28,1,359 +38573,196598648,Queens,Long Island City,40.75853,-73.93226999999999,Private room,50,3,5,0.7,1,0 +38574,45835291,Manhattan,Harlem,40.823879999999996,-73.95527,Private room,40,8,29,4.05,6,54 +38575,224703803,Manhattan,East Village,40.725770000000004,-73.98535,Entire home/apt,399,1,9,1.49,1,319 +38576,227818501,Bronx,Williamsbridge,40.87684,-73.86389,Entire home/apt,120,2,13,1.83,2,97 +38577,225616673,Manhattan,Nolita,40.72113,-73.99595,Entire home/apt,418,1,16,2.81,1,328 +38578,24407449,Manhattan,Upper West Side,40.79181,-73.96746999999999,Entire home/apt,350,2,2,0.76,1,60 +38579,1460313,Queens,Ridgewood,40.69598,-73.89972,Private room,56,5,14,2.2,2,35 +38580,5777779,Manhattan,Upper East Side,40.77538,-73.94856999999999,Entire home/apt,150,30,0,,1,158 +38581,137274917,Manhattan,Hell's Kitchen,40.75993,-73.99089000000001,Private room,110,1,21,3.18,12,256 +38582,18609785,Brooklyn,South Slope,40.66557,-73.98044,Entire home/apt,155,3,9,1.38,1,5 +38583,223191465,Queens,Ridgewood,40.70844,-73.90905,Entire home/apt,120,3,16,2.32,2,60 +38584,227691333,Manhattan,Lower East Side,40.71826,-73.99338,Entire home/apt,125,3,18,2.77,1,20 +38585,17825521,Brooklyn,South Slope,40.66533,-73.98212,Entire home/apt,134,5,5,1.13,1,13 +38586,208938947,Brooklyn,Sunset Park,40.66388,-73.99475,Private room,50,31,0,,1,0 +38587,147186603,Manhattan,Greenwich Village,40.73004,-74.00128000000001,Entire home/apt,350,3,1,0.26,1,7 +38588,219517861,Manhattan,Financial District,40.70743,-74.00443,Entire home/apt,232,29,1,0.6,327,159 +38589,40004714,Brooklyn,Bushwick,40.695040000000006,-73.93061,Private room,50,2,13,1.83,2,11 +38590,6180828,Manhattan,Upper East Side,40.77409,-73.9519,Private room,95,5,10,1.63,1,5 +38591,198861577,Brooklyn,Williamsburg,40.721940000000004,-73.95510999999999,Private room,1600,1,0,,5,0 +38592,227872371,Queens,Springfield Gardens,40.66272,-73.76849,Entire home/apt,89,1,88,12.05,2,253 +38593,20444114,Bronx,Allerton,40.86698,-73.85178,Private room,35,2,21,3.35,1,252 +38594,142456326,Manhattan,Kips Bay,40.73857,-73.97972,Entire home/apt,180,1,5,0.73,1,90 +38595,40004714,Brooklyn,Bushwick,40.69657,-73.93274,Entire home/apt,190,2,0,,2,11 +38596,2964135,Manhattan,Harlem,40.80623,-73.95343000000001,Entire home/apt,200,3,3,0.98,1,0 +38597,4431107,Manhattan,Upper West Side,40.7886,-73.96862,Entire home/apt,200,2,19,2.66,3,0 +38598,4431107,Manhattan,West Village,40.730340000000005,-74.01021999999999,Entire home/apt,200,1,0,,3,158 +38599,10759819,Brooklyn,Crown Heights,40.6716,-73.95846999999999,Entire home/apt,300,2,1,0.16,1,364 +38600,144687306,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.9516,Entire home/apt,150,3,26,3.53,2,241 +38601,108457539,Brooklyn,Greenpoint,40.72268,-73.94349,Private room,55,1,2,0.27,1,0 +38602,213020,Manhattan,Upper West Side,40.793820000000004,-73.96984,Private room,88,1,4,0.78,3,7 +38603,1675112,Brooklyn,Prospect-Lefferts Gardens,40.66106,-73.96189,Entire home/apt,79,5,2,1.28,1,8 +38604,44074020,Manhattan,Harlem,40.81443,-73.95688,Private room,70,6,1,0.16,1,13 +38605,51964207,Brooklyn,Williamsburg,40.70946,-73.96566999999999,Entire home/apt,140,3,7,1.42,1,3 +38606,45773187,Brooklyn,Williamsburg,40.71038,-73.94779,Private room,49,7,0,,1,0 +38607,64934891,Manhattan,East Village,40.7219,-73.97819,Private room,70,3,0,,1,0 +38608,218336964,Queens,Elmhurst,40.72977,-73.87171,Private room,40,2,12,2.83,4,5 +38609,227905146,Queens,East Elmhurst,40.76185,-73.87392,Shared room,16,1,10,1.36,1,0 +38610,137358866,Queens,Elmhurst,40.74439,-73.87988,Private room,34,30,1,1.0,103,273 +38611,24593962,Manhattan,Upper East Side,40.78353,-73.94592,Private room,90,2,1,0.14,1,0 +38612,3285978,Brooklyn,Bedford-Stuyvesant,40.69998,-73.94369,Private room,50,1,5,0.71,2,0 +38613,39528519,Manhattan,Lower East Side,40.71147,-73.98714,Shared room,35,14,1,0.16,28,320 +38614,39528519,Manhattan,Lower East Side,40.71046,-73.98839,Shared room,32,14,1,0.18,28,341 +38615,39528519,Manhattan,Lower East Side,40.71025,-73.98703,Shared room,35,14,0,,28,322 +38616,137358866,Manhattan,East Harlem,40.79422,-73.94383,Entire home/apt,70,30,2,0.36,103,219 +38617,39528519,Manhattan,Lower East Side,40.70981,-73.98702,Shared room,35,14,8,1.31,28,322 +38618,208136645,Brooklyn,East Flatbush,40.65267,-73.94256999999999,Private room,45,2,1,0.15,4,296 +38619,137358866,Queens,Jackson Heights,40.748870000000004,-73.87949,Private room,33,30,0,,103,0 +38620,137358866,Queens,Sunnyside,40.74907,-73.91185,Private room,37,30,1,0.43,103,0 +38621,137358866,Queens,Woodside,40.74958,-73.90011,Private room,42,30,1,0.79,103,235 +38622,40480205,Brooklyn,Park Slope,40.6828,-73.97738000000001,Entire home/apt,110,60,2,0.81,1,83 +38623,12838954,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94382,Entire home/apt,375,7,0,,1,0 +38624,183967887,Brooklyn,Williamsburg,40.71326,-73.93766,Private room,65,4,5,0.74,1,0 +38625,228000501,Brooklyn,Williamsburg,40.709959999999995,-73.96495,Private room,50,3,6,0.82,1,38 +38626,26312879,Brooklyn,Brooklyn Heights,40.69458,-73.99771,Entire home/apt,125,5,3,0.48,1,0 +38627,5559293,Manhattan,Gramercy,40.73212,-73.98246999999999,Private room,150,2,10,1.41,1,36 +38628,3262412,Brooklyn,Williamsburg,40.7076,-73.94718,Entire home/apt,225,2,0,,1,45 +38629,107434423,Manhattan,Chelsea,40.73878,-73.99604000000001,Entire home/apt,303,30,0,,232,185 +38630,228011801,Brooklyn,Williamsburg,40.70955,-73.96311,Private room,69,7,1,1.0,1,0 +38631,93717558,Manhattan,Upper West Side,40.78687,-73.97189,Entire home/apt,175,2,17,2.64,1,27 +38632,206960083,Manhattan,Upper West Side,40.783840000000005,-73.97695999999999,Private room,95,7,1,0.16,1,0 +38633,107434423,Manhattan,Theater District,40.76135,-73.98668,Entire home/apt,316,30,0,,232,35 +38634,213781715,Brooklyn,Downtown Brooklyn,40.69839,-73.98758000000001,Private room,119,1,1,0.68,33,365 +38635,213781715,Brooklyn,Greenpoint,40.73291,-73.95281999999999,Private room,119,1,0,,33,365 +38636,131647128,Manhattan,Upper West Side,40.773959999999995,-73.98925,Entire home/apt,260,30,3,0.45,25,274 +38637,172895347,Queens,Jackson Heights,40.75275,-73.88186,Private room,59,30,2,0.38,2,0 +38638,198861577,Brooklyn,Williamsburg,40.72205,-73.956,Private room,350,2,0,,5,0 +38639,225620034,Manhattan,East Village,40.730109999999996,-73.98405,Entire home/apt,189,1,13,3.07,1,338 +38640,213781715,Brooklyn,Greenpoint,40.7318,-73.95307,Entire home/apt,399,1,0,,33,364 +38641,10934627,Brooklyn,Williamsburg,40.7112,-73.96566,Entire home/apt,105,7,3,0.56,1,16 +38642,218336964,Queens,Rego Park,40.72994,-73.86986999999999,Private room,45,2,11,1.73,4,6 +38643,11370189,Brooklyn,Prospect Heights,40.6779,-73.96393,Entire home/apt,140,5,2,0.31,2,25 +38644,3729486,Manhattan,Hell's Kitchen,40.76593,-73.99186,Private room,180,4,12,1.68,1,172 +38645,24762196,Manhattan,Washington Heights,40.8471,-73.93996,Private room,80,3,3,0.42,1,0 +38646,1723475,Manhattan,Lower East Side,40.71813,-73.98633000000001,Entire home/apt,214,3,20,3.3,1,279 +38647,52140932,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95096,Private room,65,2,24,3.48,7,330 +38648,19868844,Brooklyn,Williamsburg,40.71115,-73.95825,Private room,60,2,14,1.99,1,0 +38649,228104837,Brooklyn,Williamsburg,40.7092,-73.9631,Entire home/apt,195,2,14,2.04,1,28 +38650,221940893,Brooklyn,Kensington,40.6377,-73.97062,Private room,36,2,18,2.51,3,189 +38651,151429490,Brooklyn,Crown Heights,40.664559999999994,-73.95215999999999,Private room,80,1,0,,1,359 +38652,226410657,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9324,Private room,42,30,1,0.58,27,346 +38653,225750872,Queens,Far Rockaway,40.59349,-73.76377,Private room,60,1,1,0.16,1,90 +38654,228117451,Manhattan,East Village,40.72269,-73.98306,Entire home/apt,75,8,6,0.94,1,232 +38655,143084679,Queens,Flushing,40.74625,-73.83433000000001,Private room,40,1,7,2.96,1,0 +38656,81970141,Manhattan,Harlem,40.82932,-73.94696,Entire home/apt,119,2,15,2.38,1,12 +38657,11773839,Manhattan,Chinatown,40.714459999999995,-73.99112,Private room,95,2,5,0.8,1,2 +38658,226410657,Brooklyn,Bedford-Stuyvesant,40.68632,-73.93251,Private room,42,30,0,,27,346 +38659,172369331,Brooklyn,Sheepshead Bay,40.5981,-73.9584,Shared room,25,7,2,1.15,10,290 +38660,226410657,Brooklyn,Bedford-Stuyvesant,40.68553,-73.93215,Private room,42,30,1,0.65,27,346 +38661,2011313,Brooklyn,Greenpoint,40.724709999999995,-73.939,Entire home/apt,100,7,3,0.78,1,6 +38662,226410657,Brooklyn,Bedford-Stuyvesant,40.68595,-73.93109,Private room,42,30,2,0.33,27,345 +38663,226410657,Brooklyn,Bedford-Stuyvesant,40.68555,-73.93106999999999,Private room,42,30,1,0.24,27,332 +38664,200401254,Manhattan,Greenwich Village,40.730940000000004,-73.999,Shared room,110,999,0,,1,365 +38665,31408845,Queens,Astoria,40.76605,-73.92425,Entire home/apt,250,14,2,0.32,1,341 +38666,128766,Manhattan,Harlem,40.81916,-73.95312,Entire home/apt,150,2,15,2.12,1,9 +38667,226410657,Brooklyn,Bedford-Stuyvesant,40.68768,-73.93075999999999,Private room,42,30,2,0.86,27,311 +38668,3042136,Brooklyn,Carroll Gardens,40.68241,-73.99157,Entire home/apt,250,2,26,3.94,3,266 +38669,4275601,Queens,Long Island City,40.7351,-73.92526,Private room,100,1,1,0.16,1,364 +38670,148725429,Brooklyn,Bushwick,40.69231,-73.92567,Entire home/apt,90,3,58,7.91,2,2 +38671,20318052,Brooklyn,Bedford-Stuyvesant,40.69518,-73.94676,Entire home/apt,140,2,0,,2,112 +38672,107434423,Manhattan,West Village,40.72976,-74.00386999999999,Entire home/apt,350,30,0,,232,341 +38673,107434423,Manhattan,Tribeca,40.71663,-74.00546,Entire home/apt,276,30,0,,232,284 +38674,107434423,Manhattan,Upper West Side,40.77833,-73.98469,Entire home/apt,452,30,1,0.17,232,337 +38675,107434423,Manhattan,Theater District,40.76017,-73.98509,Entire home/apt,325,30,0,,232,362 +38676,107434423,Manhattan,Upper East Side,40.76368,-73.95993,Entire home/apt,312,30,0,,232,293 +38677,107434423,Manhattan,Tribeca,40.71284,-74.00844000000001,Entire home/apt,285,30,0,,232,185 +38678,107434423,Manhattan,Tribeca,40.716840000000005,-74.00544000000001,Entire home/apt,350,30,0,,232,342 +38679,107434423,Manhattan,West Village,40.7287,-74.00327,Entire home/apt,397,30,0,,232,53 +38680,107434423,Manhattan,Upper West Side,40.778040000000004,-73.98409000000001,Entire home/apt,283,30,0,,232,1 +38681,107434423,Manhattan,Financial District,40.70492,-74.00678,Entire home/apt,289,30,0,,232,341 +38682,107434423,Manhattan,Chelsea,40.74143,-73.99469,Entire home/apt,343,30,1,0.17,232,323 +38683,107434423,Manhattan,Chelsea,40.738459999999996,-73.99769,Entire home/apt,334,30,1,0.35,232,310 +38684,107434423,Manhattan,Hell's Kitchen,40.76258,-73.98768000000001,Entire home/apt,302,30,0,,232,330 +38685,107434423,Manhattan,Financial District,40.70617,-74.00842,Entire home/apt,320,30,0,,232,310 +38686,107434423,Manhattan,Upper West Side,40.77722,-73.98262,Entire home/apt,316,30,0,,232,18 +38687,107434423,Manhattan,Kips Bay,40.74499,-73.97936999999999,Entire home/apt,287,30,0,,232,268 +38688,107434423,Manhattan,Theater District,40.76143,-73.98533,Entire home/apt,334,30,0,,232,296 +38689,107434423,Manhattan,Midtown,40.752309999999994,-73.98924,Entire home/apt,238,30,1,0.16,232,322 +38690,107434423,Manhattan,Tribeca,40.71479,-74.00671,Entire home/apt,291,30,0,,232,295 +38691,107434423,Manhattan,Theater District,40.761390000000006,-73.98521,Entire home/apt,276,30,0,,232,206 +38692,107434423,Manhattan,Chelsea,40.73918,-73.99616,Entire home/apt,303,30,1,0.19,232,280 +38693,107434423,Manhattan,West Village,40.72988,-74.00341,Entire home/apt,392,30,0,,232,328 +38694,107434423,Manhattan,West Village,40.72945,-74.00321,Entire home/apt,356,30,0,,232,162 +38695,107434423,Manhattan,Theater District,40.761590000000005,-73.98544,Entire home/apt,297,30,0,,232,68 +38696,107434423,Manhattan,Tribeca,40.71674,-74.0069,Entire home/apt,265,30,0,,232,208 +38697,107434423,Manhattan,Chelsea,40.73899,-73.99749,Entire home/apt,291,30,0,,232,320 +38698,107434423,Manhattan,Theater District,40.76034,-73.98656,Entire home/apt,358,30,0,,232,196 +38699,107434423,Manhattan,Theater District,40.759879999999995,-73.98568,Entire home/apt,312,30,0,,232,341 +38700,107434423,Manhattan,East Village,40.723,-73.98415,Entire home/apt,312,30,1,0.23,232,359 +38701,107434423,Manhattan,Upper West Side,40.7904,-73.97555,Entire home/apt,320,30,0,,232,293 +38702,107434423,Manhattan,Chelsea,40.73767,-73.99739,Entire home/apt,321,30,1,0.39,232,310 +38703,107434423,Manhattan,Tribeca,40.716570000000004,-74.00551,Entire home/apt,309,30,0,,232,312 +38704,107434423,Manhattan,East Village,40.72232,-73.98543000000001,Entire home/apt,312,30,0,,232,219 +38705,107434423,Manhattan,Lower East Side,40.71856,-73.99061,Entire home/apt,314,90,0,,232,208 +38706,107434423,Manhattan,Kips Bay,40.74528,-73.97948000000001,Entire home/apt,352,30,0,,232,268 +38707,107434423,Manhattan,Upper West Side,40.79094,-73.97235,Entire home/apt,238,30,0,,232,279 +38708,107434423,Manhattan,Upper East Side,40.77518,-73.9491,Entire home/apt,289,30,1,0.3,232,235 +38709,107434423,Manhattan,Hell's Kitchen,40.75973,-73.99574,Entire home/apt,291,30,0,,232,189 +38710,107434423,Manhattan,Upper West Side,40.76923,-73.98626999999999,Entire home/apt,263,30,0,,232,280 +38711,107434423,Manhattan,Chelsea,40.73806,-73.99744,Entire home/apt,365,30,0,,232,261 +38712,107434423,Manhattan,Kips Bay,40.741640000000004,-73.97859,Entire home/apt,253,30,0,,232,203 +38713,107434423,Manhattan,Tribeca,40.7132,-74.00941999999999,Entire home/apt,246,30,0,,232,332 +38714,107434423,Manhattan,Hell's Kitchen,40.76393,-73.98721,Entire home/apt,211,30,0,,232,227 +38715,107434423,Manhattan,Upper West Side,40.77779,-73.98459,Entire home/apt,306,30,0,,232,336 +38716,107434423,Manhattan,Midtown,40.75861,-73.96359,Entire home/apt,241,30,0,,232,149 +38717,107434423,Manhattan,Tribeca,40.71519,-74.00654,Entire home/apt,312,30,0,,232,38 +38718,107434423,Manhattan,Financial District,40.706720000000004,-74.00661,Entire home/apt,259,120,0,,232,286 +38719,107434423,Manhattan,Midtown,40.75335,-73.99029,Entire home/apt,267,30,0,,232,274 +38720,107434423,Manhattan,Chelsea,40.739290000000004,-73.99776999999999,Entire home/apt,312,30,0,,232,157 +38721,107434423,Manhattan,Theater District,40.75971,-73.98550999999999,Entire home/apt,347,30,0,,232,266 +38722,107434423,Manhattan,Theater District,40.75995,-73.98728,Entire home/apt,278,30,0,,232,147 +38723,107434423,Manhattan,Chelsea,40.73774,-73.99723,Entire home/apt,242,30,0,,232,188 +38724,107434423,Manhattan,Murray Hill,40.74805,-73.97351,Entire home/apt,242,30,0,,232,237 +38725,107434423,Manhattan,Chelsea,40.73786,-73.9977,Entire home/apt,358,30,0,,232,322 +38726,107434423,Manhattan,East Village,40.73021,-73.98765,Entire home/apt,377,90,0,,232,174 +38727,107434423,Manhattan,Chelsea,40.73897,-73.99637,Entire home/apt,280,30,0,,232,1 +38728,107434423,Manhattan,Financial District,40.70619,-74.00895,Entire home/apt,232,30,0,,232,61 +38729,107434423,Manhattan,Hell's Kitchen,40.760870000000004,-73.99563,Entire home/apt,365,30,0,,232,326 +38730,137358866,Queens,Woodside,40.74635,-73.90774,Private room,62,30,2,0.32,103,269 +38731,107434423,Manhattan,Kips Bay,40.74053,-73.97874,Entire home/apt,273,30,0,,232,157 +38732,107434423,Manhattan,Financial District,40.70511,-74.00721999999999,Entire home/apt,285,30,0,,232,339 +38733,107434423,Manhattan,Kips Bay,40.74072,-73.97794,Entire home/apt,307,30,0,,232,333 +38734,107434423,Manhattan,East Village,40.73186,-73.98761,Entire home/apt,281,90,0,,232,322 +38735,107434423,Manhattan,Tribeca,40.71609,-74.00501,Entire home/apt,275,30,0,,232,342 +38736,107434423,Manhattan,West Village,40.73003,-74.00215,Entire home/apt,396,30,0,,232,163 +38737,107434423,Manhattan,Chelsea,40.739470000000004,-73.99776999999999,Entire home/apt,283,30,0,,232,334 +38738,107434423,Manhattan,Tribeca,40.71626,-74.00694,Entire home/apt,358,30,0,,232,217 +38739,107434423,Manhattan,Hell's Kitchen,40.76035,-73.99679,Entire home/apt,285,30,0,,232,330 +38740,107434423,Manhattan,East Village,40.73169,-73.98931999999999,Entire home/apt,420,30,0,,232,157 +38741,12704088,Brooklyn,Williamsburg,40.7189,-73.96415999999999,Private room,88,2,7,1.35,1,0 +38742,228207777,Queens,Springfield Gardens,40.667840000000005,-73.75357,Entire home/apt,150,1,4,0.7,1,162 +38743,228213504,Queens,Jamaica,40.69607,-73.79842,Private room,45,3,0,,1,0 +38744,107434423,Manhattan,Chelsea,40.73774,-73.99725,Entire home/apt,283,30,0,,232,337 +38745,107434423,Manhattan,Theater District,40.76177,-73.98504,Entire home/apt,316,30,0,,232,311 +38746,107434423,Manhattan,Chelsea,40.74094,-73.99464,Entire home/apt,255,30,1,0.19,232,330 +38747,107434423,Manhattan,Murray Hill,40.74943,-73.98055,Entire home/apt,282,30,1,0.23,232,323 +38748,107434423,Manhattan,Kips Bay,40.74005,-73.97884,Entire home/apt,290,30,0,,232,312 +38749,107434423,Manhattan,Theater District,40.75965,-73.98581999999999,Entire home/apt,317,30,0,,232,251 +38750,107434423,Manhattan,Chelsea,40.741479999999996,-73.99955,Entire home/apt,303,30,0,,232,332 +38751,107434423,Manhattan,Midtown,40.751490000000004,-73.9908,Entire home/apt,206,30,0,,232,203 +38752,107434423,Manhattan,Tribeca,40.71295,-74.00905999999999,Entire home/apt,278,30,0,,232,330 +38753,107434423,Manhattan,West Village,40.73021,-74.00379000000001,Entire home/apt,305,30,0,,232,1 +38754,107434423,Manhattan,Theater District,40.75963,-73.98595,Entire home/apt,316,30,0,,232,262 +38755,107434423,Manhattan,Murray Hill,40.748000000000005,-73.97943000000001,Entire home/apt,252,30,0,,232,315 +38756,107434423,Manhattan,Tribeca,40.71488,-74.00686999999999,Entire home/apt,332,30,1,0.19,232,1 +38757,107434423,Manhattan,Chelsea,40.7388,-73.997,Entire home/apt,361,30,0,,232,157 +38758,107434423,Manhattan,Tribeca,40.71479,-74.00621,Entire home/apt,269,30,0,,232,310 +38759,107434423,Manhattan,Kips Bay,40.74108,-73.97788,Entire home/apt,245,30,0,,232,280 +38760,107434423,Manhattan,Tribeca,40.71607,-74.00564,Entire home/apt,305,30,1,0.26,232,274 +38761,107434423,Manhattan,Financial District,40.708870000000005,-74.01446,Entire home/apt,233,30,0,,232,365 +38762,107434423,Manhattan,West Village,40.72873,-74.0034,Entire home/apt,459,30,0,,232,293 +38763,107434423,Manhattan,Upper West Side,40.7764,-73.98387,Entire home/apt,271,30,0,,232,186 +38764,107434423,Manhattan,Chelsea,40.7387,-73.99699,Entire home/apt,314,30,1,0.19,232,345 +38765,107434423,Manhattan,Hell's Kitchen,40.760459999999995,-73.99685,Entire home/apt,416,30,0,,232,335 +38766,107434423,Manhattan,Financial District,40.70601,-74.0096,Entire home/apt,316,30,0,,232,287 +38767,107434423,Manhattan,Battery Park City,40.704440000000005,-74.01711999999999,Entire home/apt,232,120,0,,232,163 +38768,107434423,Manhattan,Murray Hill,40.747370000000004,-73.97626,Entire home/apt,262,60,0,,232,188 +38769,107434423,Manhattan,Theater District,40.76178,-73.98546999999999,Entire home/apt,330,30,0,,232,306 +38770,107434423,Manhattan,Upper East Side,40.775059999999996,-73.95678000000001,Entire home/apt,271,30,0,,232,240 +38771,228223819,Queens,Ridgewood,40.70967,-73.90961999999999,Private room,45,3,3,0.41,1,179 +38772,221901576,Manhattan,West Village,40.73944,-74.00563000000001,Entire home/apt,453,1,16,3.72,2,113 +38773,107434423,Manhattan,Financial District,40.70455,-74.01008,Entire home/apt,236,30,0,,232,185 +38774,107434423,Manhattan,Upper West Side,40.77639,-73.98269,Entire home/apt,294,30,0,,232,219 +38775,107434423,Manhattan,East Village,40.72303,-73.98545,Entire home/apt,329,30,0,,232,249 +38776,107434423,Manhattan,Upper West Side,40.77771,-73.98244,Entire home/apt,481,30,0,,232,156 +38777,107434423,Manhattan,Chelsea,40.73939,-73.99613000000001,Entire home/apt,343,30,0,,232,356 +38778,107434423,Manhattan,Financial District,40.70864,-74.0051,Entire home/apt,224,30,0,,232,338 +38779,107434423,Manhattan,Theater District,40.7601,-73.98504,Entire home/apt,278,30,0,,232,304 +38780,107434423,Manhattan,East Village,40.722770000000004,-73.98419,Entire home/apt,312,30,0,,232,358 +38781,107434423,Manhattan,East Village,40.722559999999994,-73.98544,Entire home/apt,302,30,0,,232,265 +38782,107434423,Manhattan,West Village,40.73035,-74.00324,Entire home/apt,334,30,0,,232,280 +38783,107434423,Manhattan,Murray Hill,40.74478,-73.9727,Entire home/apt,258,30,0,,232,235 +38784,16051761,Brooklyn,Downtown Brooklyn,40.697390000000006,-73.98444,Entire home/apt,150,7,0,,1,0 +38785,107434423,Manhattan,Chelsea,40.74261,-73.99457,Entire home/apt,356,30,0,,232,323 +38786,107434423,Manhattan,Chelsea,40.739340000000006,-73.99736999999999,Entire home/apt,278,30,1,0.22,232,235 +38787,49282603,Brooklyn,Bedford-Stuyvesant,40.690540000000006,-73.92801,Entire home/apt,75,7,4,0.64,1,10 +38788,107434423,Manhattan,Financial District,40.70485,-74.00934000000001,Entire home/apt,184,30,0,,232,180 +38789,107434423,Manhattan,Tribeca,40.71508,-74.00628,Entire home/apt,274,30,0,,232,194 +38790,107434423,Manhattan,Chelsea,40.73854,-73.99695,Entire home/apt,347,30,0,,232,7 +38791,107434423,Manhattan,Upper West Side,40.7767,-73.98291,Entire home/apt,466,30,0,,232,280 +38792,107434423,Manhattan,Theater District,40.7619,-73.9853,Entire home/apt,316,30,0,,232,332 +38793,107434423,Manhattan,Theater District,40.76058,-73.9855,Entire home/apt,285,30,0,,232,220 +38794,107434423,Manhattan,Financial District,40.70513,-74.009,Entire home/apt,271,30,0,,232,234 +38795,107434423,Manhattan,Theater District,40.76061,-73.98675,Entire home/apt,317,30,0,,232,155 +38796,107434423,Manhattan,Tribeca,40.716590000000004,-74.00653,Entire home/apt,388,30,0,,232,1 +38797,107434423,Manhattan,West Village,40.7296,-74.00246,Entire home/apt,341,30,0,,232,285 +38798,107434423,Manhattan,Kips Bay,40.745,-73.97941999999999,Entire home/apt,237,30,1,0.34,232,283 +38799,107434423,Manhattan,Chelsea,40.7407,-73.99478,Entire home/apt,248,30,0,,232,346 +38800,107434423,Manhattan,West Village,40.73005,-74.00208,Entire home/apt,379,30,0,,232,340 +38801,107434423,Manhattan,Chelsea,40.7392,-73.99578000000001,Entire home/apt,314,30,0,,232,359 +38802,107434423,Manhattan,Financial District,40.70593,-74.0091,Entire home/apt,251,30,0,,232,16 +38803,107434423,Manhattan,West Village,40.729459999999996,-74.00318,Entire home/apt,423,30,0,,232,229 +38804,107434423,Manhattan,Kips Bay,40.7396,-73.97938,Entire home/apt,240,30,0,,232,249 +38805,107434423,Manhattan,Tribeca,40.71409,-74.00976999999999,Entire home/apt,245,30,0,,232,310 +38806,107434423,Manhattan,Theater District,40.76103,-73.98666,Entire home/apt,329,30,0,,232,98 +38807,107434423,Manhattan,Financial District,40.706309999999995,-74.00886,Entire home/apt,265,30,0,,232,45 +38808,107434423,Manhattan,Chelsea,40.73785,-73.99736,Entire home/apt,300,30,0,,232,356 +38809,107434423,Manhattan,Chelsea,40.73935,-73.99691,Entire home/apt,267,30,0,,232,340 +38810,107434423,Manhattan,Chelsea,40.73939,-73.99746999999999,Entire home/apt,374,30,0,,232,312 +38811,107434423,Manhattan,Chelsea,40.73795,-73.99753,Entire home/apt,316,30,0,,232,339 +38812,107434423,Manhattan,Financial District,40.705709999999996,-74.01509,Entire home/apt,189,30,1,0.21,232,142 +38813,107434423,Manhattan,Chelsea,40.74423,-74.0026,Entire home/apt,298,30,0,,232,285 +38814,107434423,Manhattan,Chelsea,40.73924,-73.99586,Entire home/apt,362,30,0,,232,211 +38815,136900522,Queens,Astoria,40.76403,-73.92195,Entire home/apt,150,2,1,0.14,1,0 +38816,61105987,Brooklyn,Flatbush,40.635740000000006,-73.95129,Entire home/apt,90,3,7,2.26,1,5 +38817,27698539,Manhattan,Midtown,40.74985,-73.98151999999999,Private room,90,2,13,1.88,1,24 +38818,226406882,Brooklyn,East Flatbush,40.660509999999995,-73.92964,Private room,75,1,0,,3,364 +38819,216235179,Brooklyn,Bushwick,40.69997,-73.92054,Private room,47,30,0,,17,323 +38820,216235179,Brooklyn,Bushwick,40.69972,-73.91874,Private room,47,30,2,0.59,17,347 +38821,34866807,Brooklyn,Sunset Park,40.66278,-73.99206,Entire home/apt,250,2,29,4.08,1,121 +38822,228250502,Manhattan,Gramercy,40.73567,-73.98403,Shared room,69,2,9,1.44,1,62 +38823,228253636,Brooklyn,Williamsburg,40.71434,-73.9398,Private room,90,1,0,,1,364 +38824,132801944,Queens,Astoria,40.7686,-73.91354,Private room,120,2,4,0.62,2,0 +38825,228257645,Manhattan,Midtown,40.76334,-73.97809000000001,Entire home/apt,200,3,3,0.97,1,85 +38826,14501006,Manhattan,Hell's Kitchen,40.76007,-73.98965,Entire home/apt,430,2,0,,1,0 +38827,211549023,Manhattan,Midtown,40.746970000000005,-73.98693,Entire home/apt,240,2,11,1.89,13,258 +38828,228263278,Manhattan,Harlem,40.82391,-73.94699,Private room,160,2,2,0.32,4,180 +38829,110278081,Manhattan,Upper East Side,40.77225,-73.95326,Entire home/apt,70,2,16,2.24,1,4 +38830,224368116,Manhattan,Lower East Side,40.72235,-73.98911,Entire home/apt,313,1,22,4.52,1,28 +38831,228268284,Manhattan,Upper West Side,40.778529999999996,-73.97609,Entire home/apt,750,7,1,0.14,1,0 +38832,129312581,Brooklyn,Greenpoint,40.729440000000004,-73.95395,Entire home/apt,167,2,0,,1,0 +38833,228268188,Brooklyn,Borough Park,40.628009999999996,-74.00328,Private room,65,1,7,1.0,1,351 +38834,224480214,Manhattan,East Village,40.72493,-73.99061,Entire home/apt,308,1,39,6.46,1,269 +38835,48138946,Brooklyn,Columbia St,40.684909999999995,-74.00183,Entire home/apt,100,1,11,1.55,1,81 +38836,226338109,Brooklyn,Bedford-Stuyvesant,40.6887,-73.95572,Private room,60,2,13,1.83,4,311 +38837,137358866,Queens,Woodside,40.74405,-73.89994,Private room,42,30,0,,103,219 +38838,36747057,Manhattan,Harlem,40.80666,-73.95691,Private room,90,6,4,1.02,1,0 +38839,62869020,Brooklyn,Red Hook,40.67846,-74.0141,Entire home/apt,120,4,2,0.39,1,0 +38840,58344344,Brooklyn,Bushwick,40.70089,-73.93903,Private room,51,1,33,5.24,1,19 +38841,171673961,Brooklyn,Bedford-Stuyvesant,40.67896,-73.90892,Private room,25,2,2,0.3,1,0 +38842,5439134,Manhattan,Hell's Kitchen,40.76331,-73.99128,Entire home/apt,150,1,1,1.0,1,5 +38843,95570854,Queens,Ditmars Steinway,40.767109999999995,-73.89367,Entire home/apt,250,7,0,,2,365 +38844,226339724,Brooklyn,Bedford-Stuyvesant,40.68059,-73.91372,Private room,55,5,4,0.72,10,360 +38845,6899080,Brooklyn,Bedford-Stuyvesant,40.68181,-73.91811,Entire home/apt,115,3,22,3.49,1,44 +38846,72512761,Brooklyn,Greenpoint,40.72325,-73.94911,Private room,44,1,29,4.07,3,0 +38847,51937277,Manhattan,Hell's Kitchen,40.75399,-73.99764,Entire home/apt,243,2,14,1.89,1,93 +38848,73262360,Manhattan,Midtown,40.75893,-73.96751,Entire home/apt,290,4,1,0.83,1,52 +38849,40305031,Brooklyn,Bushwick,40.684259999999995,-73.90793000000001,Private room,65,1,5,0.68,2,363 +38850,40305031,Brooklyn,Bushwick,40.685829999999996,-73.90985,Private room,55,1,10,1.36,2,365 +38851,228321090,Manhattan,East Village,40.72658,-73.98803000000001,Private room,115,1,20,2.83,1,67 +38852,109843377,Brooklyn,Bedford-Stuyvesant,40.67992,-73.90943,Private room,60,14,0,,2,156 +38853,228332039,Manhattan,Harlem,40.82631,-73.95201,Private room,30,1,3,1.41,1,8 +38854,33320745,Queens,Long Island City,40.752559999999995,-73.93670999999999,Entire home/apt,250,6,4,1.56,1,105 +38855,15377463,Brooklyn,Bedford-Stuyvesant,40.68525,-73.93159,Private room,65,2,0,,1,0 +38856,129732248,Brooklyn,Flatbush,40.65332,-73.95778,Entire home/apt,120,4,19,2.98,1,8 +38857,71276635,Manhattan,Washington Heights,40.83547,-73.94207,Entire home/apt,140,1,22,3.1,5,334 +38858,25077909,Brooklyn,Bedford-Stuyvesant,40.69044,-73.92636,Private room,50,3,10,1.59,2,235 +38859,24346280,Manhattan,Midtown,40.75294,-73.97105,Private room,70,5,1,0.22,1,0 +38860,59917137,Manhattan,Harlem,40.8206,-73.93779,Private room,65,5,1,0.16,1,0 +38861,221645033,Brooklyn,Bushwick,40.69947,-73.92005999999999,Private room,50,1,1,1.0,5,333 +38862,35746135,Brooklyn,Borough Park,40.6289,-73.97683,Private room,35,1,9,1.23,2,0 +38863,226350275,Brooklyn,Greenpoint,40.7242,-73.94235,Private room,60,1,1,0.16,1,0 +38864,107434423,Manhattan,Upper East Side,40.77135,-73.95035,Entire home/apt,245,30,1,0.17,232,326 +38865,65797727,Manhattan,Tribeca,40.7208,-74.01097,Entire home/apt,300,4,0,,1,0 +38866,224315550,Brooklyn,Williamsburg,40.71043,-73.96505,Private room,90,2,27,3.84,2,56 +38867,506779,Manhattan,Lower East Side,40.72065,-73.99282,Private room,295,3,0,,2,338 +38868,8661991,Manhattan,Harlem,40.81223,-73.94156,Entire home/apt,200,2,1,0.16,1,0 +38869,158970159,Brooklyn,Williamsburg,40.70236,-73.94663,Entire home/apt,95,14,1,0.17,1,0 +38870,228415932,Queens,Rosedale,40.65417,-73.74158,Private room,45,1,37,20.94,1,134 +38871,210427776,Brooklyn,Crown Heights,40.67708,-73.92944,Private room,25,2,4,0.59,1,0 +38872,228420131,Brooklyn,Bushwick,40.694559999999996,-73.90714,Private room,35,2,7,1.07,1,35 +38873,383623,Brooklyn,Williamsburg,40.71239,-73.95419,Private room,50,5,4,0.56,1,12 +38874,34292000,Manhattan,Hell's Kitchen,40.766020000000005,-73.98765999999999,Entire home/apt,150,2,4,0.59,1,1 +38875,224074972,Brooklyn,Bedford-Stuyvesant,40.69218,-73.9439,Shared room,30,2,14,1.92,4,224 +38876,128580688,Queens,Queens Village,40.70524,-73.73349,Entire home/apt,150,1,51,7.43,1,248 +38877,228437214,Manhattan,Harlem,40.803059999999995,-73.95508000000001,Private room,65,1,48,6.7,1,4 +38878,7544635,Manhattan,East Village,40.72579,-73.98301,Private room,130,2,0,,2,177 +38879,166794407,Queens,Astoria,40.76677,-73.91169000000001,Shared room,55,5,0,,3,83 +38880,214979297,Manhattan,Greenwich Village,40.727920000000005,-73.99877,Entire home/apt,110,5,3,0.41,1,4 +38881,78104160,Brooklyn,Bay Ridge,40.63234,-74.0231,Private room,40,14,3,0.46,1,0 +38882,29411875,Manhattan,Upper East Side,40.76782,-73.95918,Entire home/apt,175,3,3,0.46,1,0 +38883,228130265,Brooklyn,East Flatbush,40.66257,-73.92355,Entire home/apt,125,2,22,3.25,1,82 +38884,17618432,Manhattan,West Village,40.73563,-74.00659,Entire home/apt,215,1,3,0.42,1,0 +38885,17040751,Manhattan,Civic Center,40.71224,-74.00684,Entire home/apt,150,90,0,,1,0 +38886,224414117,Manhattan,Hell's Kitchen,40.75472,-73.99713,Private room,199,1,17,2.37,30,334 +38887,82683774,Brooklyn,Crown Heights,40.6761,-73.93502,Private room,45,2,17,2.52,1,14 +38888,20277431,Manhattan,Nolita,40.72316,-73.99329,Private room,220,7,0,,1,89 +38889,224414117,Manhattan,Hell's Kitchen,40.75508,-73.99696,Private room,199,1,10,1.36,30,356 +38890,148049072,Brooklyn,Fort Hamilton,40.619640000000004,-74.02518,Private room,90,2,1,0.16,1,79 +38891,224414117,Manhattan,Hell's Kitchen,40.75541,-73.99634,Private room,199,1,17,2.34,30,354 +38892,224414117,Manhattan,Hell's Kitchen,40.75523,-73.99709,Private room,199,1,17,2.32,30,347 +38893,224414117,Manhattan,Hell's Kitchen,40.75659,-73.99866999999999,Private room,179,1,20,2.76,30,364 +38894,96089493,Brooklyn,Williamsburg,40.71282,-73.95742,Private room,60,1,1,0.14,1,0 +38895,224414117,Manhattan,Hell's Kitchen,40.75655,-73.9969,Private room,179,1,18,2.49,30,364 +38896,224414117,Manhattan,Hell's Kitchen,40.75505,-73.99811,Private room,179,1,16,2.22,30,363 +38897,224414117,Manhattan,Hell's Kitchen,40.7561,-73.99855,Private room,179,1,13,1.82,30,361 +38898,284199,Brooklyn,Bushwick,40.69277,-73.92133000000001,Private room,70,15,0,,2,0 +38899,1395530,Brooklyn,Williamsburg,40.71285,-73.96124,Private room,27,20,2,0.42,1,333 +38900,137358866,Queens,Maspeth,40.74027,-73.90146,Private room,49,30,0,,103,251 +38901,113417140,Manhattan,Kips Bay,40.74022,-73.98003,Entire home/apt,200,2,2,1.4,1,0 +38902,222049462,Queens,Rosedale,40.659009999999995,-73.7356,Private room,55,1,42,5.78,2,87 +38903,228524640,Manhattan,Roosevelt Island,40.7616,-73.95052,Private room,55,21,1,0.24,1,342 +38904,1627760,Brooklyn,Clinton Hill,40.68911,-73.96297,Entire home/apt,190,3,1,0.16,1,0 +38905,48572835,Manhattan,Hell's Kitchen,40.76552,-73.98498000000001,Entire home/apt,300,6,2,1.33,1,270 +38906,105367031,Brooklyn,Bushwick,40.68238,-73.90641,Entire home/apt,125,2,3,1.11,5,342 +38907,52575295,Brooklyn,Williamsburg,40.71972,-73.95705,Entire home/apt,295,5,3,0.49,1,46 +38908,105367031,Brooklyn,Bushwick,40.68325,-73.90637,Entire home/apt,125,2,2,0.3,5,347 +38909,228536894,Manhattan,Greenwich Village,40.732929999999996,-73.9946,Private room,47,1,2,0.31,1,0 +38910,31610838,Manhattan,Upper West Side,40.79895,-73.96128,Private room,95,12,1,0.17,1,0 +38911,137358866,Queens,Maspeth,40.739979999999996,-73.90113000000001,Private room,63,30,1,0.43,103,251 +38912,105367031,Brooklyn,Bushwick,40.6821,-73.90694,Entire home/apt,125,2,1,0.37,5,347 +38913,5732940,Queens,Long Island City,40.7409,-73.95506,Entire home/apt,225,3,1,1.0,1,314 +38914,3548411,Brooklyn,Park Slope,40.67559,-73.97633,Entire home/apt,300,3,14,2.22,1,311 +38915,47152279,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94288,Private room,40,3,3,0.43,1,0 +38916,209964870,Manhattan,Hell's Kitchen,40.76726,-73.9901,Entire home/apt,149,4,1,0.16,1,0 +38917,138573840,Brooklyn,Bushwick,40.69453,-73.90666999999999,Private room,90,1,2,0.31,1,0 +38918,135060128,Brooklyn,Williamsburg,40.708090000000006,-73.94913000000001,Entire home/apt,160,1,35,4.79,2,269 +38919,217642173,Manhattan,Hell's Kitchen,40.76243,-73.99901,Private room,207,1,3,0.74,2,82 +38920,228552300,Manhattan,East Village,40.72124,-73.9801,Entire home/apt,805,4,19,2.63,1,168 +38921,226410657,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93085,Private room,42,30,1,0.18,27,311 +38922,6284535,Brooklyn,Williamsburg,40.70827,-73.9425,Private room,63,4,0,,1,187 +38923,226410657,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93053,Private room,42,30,0,,27,332 +38924,226410657,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93285999999999,Private room,42,30,1,0.6,27,282 +38925,7384820,Manhattan,Hell's Kitchen,40.76547,-73.98521,Private room,115,1,22,3.22,1,33 +38926,200239515,Queens,Woodside,40.746520000000004,-73.89154,Private room,28,28,0,,15,0 +38927,157287318,Manhattan,Kips Bay,40.7413,-73.98145,Entire home/apt,275,30,35,5.0,1,253 +38928,28060043,Brooklyn,Bedford-Stuyvesant,40.68757,-73.94428,Entire home/apt,195,2,2,0.32,1,1 +38929,200055931,Brooklyn,Red Hook,40.674409999999995,-74.01278,Private room,280,1,0,,1,90 +38930,184670155,Manhattan,Upper East Side,40.775659999999995,-73.94747,Private room,100,1,6,1.02,2,0 +38931,226410657,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93289,Private room,35,30,1,0.73,27,312 +38932,40204585,Brooklyn,Bushwick,40.70026,-73.93581999999999,Entire home/apt,180,1,3,0.47,1,0 +38933,226410657,Brooklyn,Bedford-Stuyvesant,40.68744,-73.93088,Private room,42,30,1,0.48,27,346 +38934,228567385,Queens,College Point,40.79118,-73.84766,Entire home/apt,150,2,6,0.95,1,336 +38935,226410657,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93123,Private room,42,30,0,,27,358 +38936,226410657,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93056999999999,Private room,42,30,0,,27,358 +38937,53186123,Brooklyn,Williamsburg,40.71423,-73.96234,Private room,65,1,19,3.28,1,0 +38938,226410657,Brooklyn,Bedford-Stuyvesant,40.68616,-73.93136,Private room,42,30,0,,27,358 +38939,220095360,Queens,Astoria,40.76341,-73.92535,Private room,27,7,0,,1,0 +38940,226410657,Brooklyn,Bedford-Stuyvesant,40.68692,-73.9307,Private room,42,30,0,,27,326 +38941,226410657,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93069,Private room,42,30,1,0.33,27,342 +38942,226410657,Brooklyn,Bedford-Stuyvesant,40.687259999999995,-73.93289,Private room,42,30,0,,27,312 +38943,10458297,Brooklyn,Williamsburg,40.71079,-73.95192,Private room,230,4,0,,1,35 +38944,226410657,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93132,Private room,42,30,0,,27,343 +38945,226410657,Brooklyn,Bedford-Stuyvesant,40.68607,-73.93235,Private room,42,30,0,,27,331 +38946,226503876,Manhattan,Lower East Side,40.71383,-73.98867,Private room,60,5,13,1.9,2,253 +38947,193986289,Manhattan,Theater District,40.760059999999996,-73.98589,Entire home/apt,3000,1,0,,1,311 +38948,8144643,Queens,Long Island City,40.74588,-73.95376999999999,Entire home/apt,90,5,0,,1,0 +38949,193963715,Brooklyn,East Flatbush,40.65074,-73.92945,Entire home/apt,75,6,2,0.3,1,24 +38950,209943977,Manhattan,Upper West Side,40.80155,-73.96498000000001,Entire home/apt,120,2,4,0.61,1,0 +38951,1157099,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94837,Entire home/apt,75,2,11,1.73,1,0 +38952,172586583,Manhattan,Chelsea,40.74772,-73.99146,Private room,110,3,6,0.84,1,12 +38953,37254146,Manhattan,East Village,40.728770000000004,-73.98249,Entire home/apt,189,19,1,0.16,1,200 +38954,51842673,Brooklyn,Bedford-Stuyvesant,40.6843,-73.93836,Shared room,725,1,0,,1,0 +38955,225291555,Brooklyn,Williamsburg,40.71218,-73.9363,Private room,55,2,5,0.79,2,160 +38956,35352941,Manhattan,NoHo,40.726620000000004,-73.99423,Entire home/apt,350,7,0,,1,219 +38957,171198420,Brooklyn,East Flatbush,40.65343,-73.94914,Private room,35,3,39,6.43,2,8 +38958,3229770,Queens,Sunnyside,40.73697,-73.92478,Entire home/apt,149,3,6,0.91,4,305 +38959,68039772,Brooklyn,Crown Heights,40.67249,-73.95564,Private room,55,4,1,0.14,1,15 +38960,27421445,Manhattan,Lower East Side,40.713570000000004,-73.98553000000001,Private room,50,6,1,0.16,1,0 +38961,224074972,Brooklyn,Bedford-Stuyvesant,40.694,-73.94355,Shared room,30,2,18,2.57,4,192 +38962,228608906,Staten Island,Arrochar,40.59107,-74.07061,Private room,65,1,1,0.16,2,362 +38963,227856882,Bronx,Concourse,40.83513,-73.91797,Private room,99,1,2,0.32,1,90 +38964,228622994,Queens,Jamaica,40.69409,-73.79363000000001,Private room,29,1,26,3.84,1,0 +38965,27664722,Brooklyn,Bushwick,40.69539,-73.92267,Private room,30,3,2,0.3,1,0 +38966,20790185,Manhattan,Midtown,40.74815,-73.98374,Shared room,90,2,8,1.11,1,5 +38967,69189948,Manhattan,Washington Heights,40.84878,-73.93449,Private room,50,1,12,1.69,3,0 +38968,15397994,Manhattan,East Village,40.72715,-73.9848,Entire home/apt,175,2,7,1.1,1,38 +38969,125961131,Manhattan,Two Bridges,40.71107,-73.99509,Private room,79,1,44,6.38,3,3 +38970,84147508,Queens,Ridgewood,40.70028,-73.90785,Entire home/apt,190,3,1,0.16,1,0 +38971,6407054,Manhattan,Harlem,40.82071,-73.95359,Shared room,34,1,17,2.33,3,4 +38972,224678494,Manhattan,East Village,40.72336,-73.98465,Entire home/apt,443,1,28,4.75,1,293 +38973,67727548,Brooklyn,Williamsburg,40.7066,-73.94625,Entire home/apt,150,2,9,1.27,1,1 +38974,157219382,Queens,Elmhurst,40.747170000000004,-73.87645,Entire home/apt,75,6,1,0.18,1,0 +38975,216428022,Manhattan,Chelsea,40.74877,-73.99754,Entire home/apt,299,2,10,1.46,1,271 +38976,228707670,Manhattan,Harlem,40.80466,-73.95635,Entire home/apt,112,3,14,3.31,1,16 +38977,212456912,Brooklyn,Bushwick,40.69058,-73.91402,Entire home/apt,125,2,22,3.22,1,122 +38978,24552104,Manhattan,Midtown,40.76424,-73.98143,Private room,350,3,0,,1,3 +38979,224684025,Brooklyn,Williamsburg,40.70629,-73.95636,Entire home/apt,392,1,19,3.73,1,337 +38980,218543704,Brooklyn,East Flatbush,40.64718,-73.94778000000001,Entire home/apt,150,1,18,2.54,1,175 +38981,14413778,Manhattan,Nolita,40.7233,-73.99463,Entire home/apt,800,3,0,,2,0 +38982,46745791,Manhattan,Hell's Kitchen,40.762890000000006,-73.98808000000001,Entire home/apt,145,2,3,0.46,1,0 +38983,27668092,Brooklyn,Bushwick,40.69362,-73.90727,Private room,55,3,7,1.74,3,79 +38984,140348326,Queens,Astoria,40.758070000000004,-73.91582,Entire home/apt,80,4,0,,2,0 +38985,566838,Manhattan,Harlem,40.82008,-73.94057,Private room,50,1,30,6.25,2,149 +38986,45731391,Manhattan,Lower East Side,40.72068,-73.99019,Entire home/apt,195,2,1,0.16,3,0 +38987,38407262,Manhattan,Upper West Side,40.80017,-73.96882,Entire home/apt,115,3,9,1.34,1,315 +38988,1936796,Brooklyn,Williamsburg,40.71228,-73.93782,Private room,72,2,3,3.0,2,0 +38989,20631010,Brooklyn,Williamsburg,40.70601,-73.95424,Entire home/apt,180,3,0,,1,0 +38990,40245658,Manhattan,Hell's Kitchen,40.763259999999995,-73.99018000000001,Entire home/apt,264,2,8,1.28,3,2 +38991,4765019,Brooklyn,Williamsburg,40.7198,-73.95741,Entire home/apt,150,3,9,1.44,1,0 +38992,228750026,Brooklyn,Flatbush,40.65152,-73.95271,Private room,55,7,0,,1,69 +38993,6407054,Manhattan,Harlem,40.82012,-73.9515,Entire home/apt,101,2,8,1.24,3,0 +38994,11769840,Brooklyn,Bedford-Stuyvesant,40.68611,-73.92428000000001,Private room,70,2,8,1.22,2,5 +38995,39523280,Brooklyn,Prospect-Lefferts Gardens,40.661840000000005,-73.9495,Entire home/apt,185,2,30,4.59,1,281 +38996,88036082,Brooklyn,East Flatbush,40.63912,-73.92827,Entire home/apt,125,2,17,2.48,2,0 +38997,6394831,Manhattan,Washington Heights,40.85245,-73.93273,Private room,100,3,0,,1,0 +38998,227836627,Manhattan,Midtown,40.76287,-73.98073000000001,Private room,699,2,0,,1,365 +38999,154981576,Brooklyn,Bushwick,40.70029,-73.91188000000001,Private room,35,30,0,,9,45 +39000,21552055,Brooklyn,Greenpoint,40.72594,-73.94852,Entire home/apt,150,1,4,0.59,2,0 +39001,162166015,Queens,Ridgewood,40.6963,-73.89965,Private room,50,1,3,0.45,1,189 +39002,37860219,Brooklyn,Bushwick,40.70073,-73.94037,Entire home/apt,250,1,7,1.06,2,5 +39003,227345813,Manhattan,Chelsea,40.742940000000004,-73.99795,Entire home/apt,261,2,18,2.57,1,143 +39004,74215453,Queens,Astoria,40.766259999999996,-73.91422,Private room,100,5,0,,1,41 +39005,25043292,Manhattan,Nolita,40.7203,-73.99548,Private room,98,7,0,,2,0 +39006,228771058,Manhattan,Harlem,40.82625,-73.94859,Private room,52,4,7,1.83,1,54 +39007,67054959,Manhattan,Harlem,40.82375,-73.94381,Private room,100,1,4,0.99,1,56 +39008,37860219,Brooklyn,Bushwick,40.70086,-73.9403,Private room,50,2,4,0.71,2,7 +39009,1229653,Brooklyn,Flatbush,40.64823,-73.9625,Entire home/apt,90,3,2,0.33,1,0 +39010,3229770,Queens,Sunnyside,40.73662,-73.92371999999999,Entire home/apt,129,3,7,1.11,4,280 +39011,35983559,Brooklyn,East Flatbush,40.63832,-73.94908000000001,Private room,75,3,1,1.0,3,170 +39012,1609077,Queens,Forest Hills,40.71163,-73.84319,Entire home/apt,99,3,0,,3,0 +39013,160495098,Brooklyn,Flatbush,40.63296,-73.94894000000001,Private room,72,2,0,,5,0 +39014,227647873,Queens,Astoria,40.76184,-73.91443000000001,Private room,109,2,50,6.88,3,0 +39015,51610412,Brooklyn,Bushwick,40.704240000000006,-73.92681999999999,Private room,45,4,2,0.28,1,0 +39016,21102511,Manhattan,Roosevelt Island,40.76708,-73.94606999999999,Private room,100,2,2,0.32,1,43 +39017,2327106,Manhattan,Harlem,40.80242,-73.95371999999999,Entire home/apt,275,2,6,0.95,1,252 +39018,198328249,Brooklyn,Bushwick,40.69088,-73.91556,Private room,43,20,0,,2,365 +39019,104814095,Queens,East Elmhurst,40.75938,-73.88158,Private room,29,1,5,0.86,3,35 +39020,129525574,Brooklyn,Crown Heights,40.66571,-73.95191,Entire home/apt,125,2,13,3.61,1,360 +39021,221285123,Manhattan,Hell's Kitchen,40.7589,-73.99165,Private room,69,10,0,,1,0 +39022,82189264,Manhattan,East Harlem,40.78695,-73.94218000000001,Entire home/apt,215,60,0,,1,365 +39023,4297835,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92749,Private room,75,2,0,,1,0 +39024,137358866,Queens,Sunnyside,40.73983,-73.92175,Private room,42,30,0,,103,63 +39025,137358866,Brooklyn,Bushwick,40.69076,-73.91296,Private room,43,30,0,,103,236 +39026,59026607,Brooklyn,Williamsburg,40.703920000000004,-73.94885,Entire home/apt,72,3,7,1.26,1,0 +39027,111542307,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92639,Shared room,19,30,1,0.17,2,339 +39028,115355850,Brooklyn,Boerum Hill,40.68417,-73.98498000000001,Entire home/apt,125,2,23,4.51,1,60 +39029,33988719,Brooklyn,Bushwick,40.69056,-73.91596,Private room,90,3,0,,1,176 +39030,228872661,Brooklyn,Williamsburg,40.711909999999996,-73.95568,Entire home/apt,243,1,23,4.63,1,107 +39031,228864897,Queens,Long Island City,40.747690000000006,-73.93938,Entire home/apt,180,1,0,,1,0 +39032,226471554,Brooklyn,Clinton Hill,40.68535,-73.96736,Private room,65,3,4,0.62,1,0 +39033,104835154,Manhattan,Murray Hill,40.74436,-73.97321,Entire home/apt,175,30,0,,2,274 +39034,17486626,Brooklyn,Williamsburg,40.7177,-73.96346,Private room,70,9,1,0.19,2,15 +39035,228878380,Manhattan,Upper West Side,40.78549,-73.97535,Entire home/apt,200,5,1,0.16,1,0 +39036,185725011,Brooklyn,Bedford-Stuyvesant,40.68139,-73.92156999999999,Entire home/apt,65,3,1,0.15,1,281 +39037,178224519,Manhattan,Kips Bay,40.73932,-73.97997,Entire home/apt,155,30,0,,8,363 +39038,195422078,Manhattan,Midtown,40.75054,-73.98385999999999,Entire home/apt,365,30,0,,1,145 +39039,10358835,Brooklyn,Flatbush,40.63895,-73.96619,Private room,49,7,0,,1,362 +39040,1286331,Manhattan,East Village,40.72579,-73.98344,Entire home/apt,100,3,12,1.9,1,80 +39041,36642844,Manhattan,Tribeca,40.71802,-74.01038,Private room,97,1,4,0.63,1,0 +39042,228895684,Queens,Ridgewood,40.70711,-73.90713000000001,Private room,35,5,0,,1,321 +39043,3104928,Manhattan,Upper East Side,40.781909999999996,-73.95291999999999,Entire home/apt,275,3,11,1.78,1,36 +39044,1513294,Brooklyn,Bushwick,40.69811,-73.91176,Entire home/apt,95,222,1,0.16,2,85 +39045,57302064,Manhattan,Midtown,40.751979999999996,-73.9707,Entire home/apt,595,2,3,0.47,1,55 +39046,228900197,Brooklyn,Williamsburg,40.70922,-73.94255,Private room,55,2,2,0.32,1,0 +39047,5048861,Manhattan,East Village,40.72333,-73.97934000000001,Entire home/apt,101,2,3,0.45,1,0 +39048,11710440,Manhattan,Upper West Side,40.79283,-73.975,Entire home/apt,180,3,6,1.28,1,0 +39049,139195158,Queens,Woodside,40.75166,-73.90108000000001,Private room,99,2,10,1.59,1,5 +39050,11332183,Manhattan,Harlem,40.81281,-73.94475,Private room,65,3,3,0.45,1,0 +39051,16098958,Manhattan,Midtown,40.765159999999995,-73.9819,Entire home/apt,265,30,0,,96,330 +39052,199716727,Queens,Astoria,40.77008,-73.92,Private room,120,2,0,,1,66 +39053,208955733,Brooklyn,East Flatbush,40.65441,-73.91995,Private room,95,1,6,0.87,4,350 +39054,16098958,Manhattan,Hell's Kitchen,40.765570000000004,-73.98384,Entire home/apt,215,30,0,,96,327 +39055,143031643,Manhattan,East Harlem,40.81275,-73.93460999999999,Entire home/apt,300,2,1,0.16,1,0 +39056,34222449,Manhattan,East Village,40.72531,-73.97973,Private room,105,2,0,,1,8 +39057,228898361,Brooklyn,Williamsburg,40.71723,-73.94965,Entire home/apt,200,2,7,1.01,1,0 +39058,141359886,Brooklyn,Bedford-Stuyvesant,40.68763,-73.95683000000001,Entire home/apt,100,2,22,3.32,1,286 +39059,228937001,Brooklyn,Williamsburg,40.7161,-73.95427,Entire home/apt,165,1,24,3.77,1,213 +39060,73624239,Brooklyn,East New York,40.67396,-73.87905,Entire home/apt,120,2,11,1.68,1,62 +39061,24419496,Manhattan,Upper East Side,40.77604,-73.94524,Entire home/apt,125,3,1,0.16,1,0 +39062,208537842,Brooklyn,Williamsburg,40.71269,-73.9495,Entire home/apt,200,1,3,0.41,1,0 +39063,228945290,Manhattan,Washington Heights,40.84215,-73.94266,Private room,45,1,4,0.57,1,90 +39064,201447930,Manhattan,East Village,40.726459999999996,-73.98686,Entire home/apt,260,2,2,0.32,2,28 +39065,228709796,Queens,Howard Beach,40.66894,-73.85369,Private room,40,1,3,0.47,1,20 +39066,474940,Brooklyn,Bushwick,40.70077,-73.91724,Entire home/apt,120,30,0,,1,0 +39067,158314625,Brooklyn,Bedford-Stuyvesant,40.68992,-73.92594,Private room,70,1,1,0.14,2,0 +39068,57195863,Manhattan,Hell's Kitchen,40.75806,-73.98934,Entire home/apt,295,2,7,1.12,1,129 +39069,200239515,Queens,Woodside,40.7434,-73.89908,Private room,32,30,2,0.32,15,38 +39070,5977578,Brooklyn,Crown Heights,40.67902,-73.96042,Private room,45,2,0,,2,100 +39071,10184093,Brooklyn,Fort Greene,40.69027,-73.97173000000001,Entire home/apt,119,5,3,0.47,1,0 +39072,34621599,Brooklyn,Crown Heights,40.6782,-73.945,Private room,55,2,6,0.86,1,89 +39073,228286488,Manhattan,Washington Heights,40.83644,-73.94230999999999,Private room,40,3,1,0.15,1,245 +39074,58929651,Manhattan,Theater District,40.760020000000004,-73.98708,Entire home/apt,800,5,0,,1,0 +39075,132784640,Brooklyn,Sunset Park,40.638659999999994,-74.01746,Private room,40,2,20,2.83,1,349 +39076,137358866,Queens,Astoria,40.76677,-73.92408,Private room,57,30,0,,103,238 +39077,13888249,Brooklyn,Williamsburg,40.70662,-73.95289,Entire home/apt,180,3,3,0.48,2,0 +39078,90034872,Queens,Astoria,40.76721,-73.92633000000001,Private room,75,2,4,0.63,1,36 +39079,2086035,Manhattan,Hell's Kitchen,40.75611,-73.99386,Entire home/apt,130,4,2,0.52,2,0 +39080,21296382,Manhattan,Upper East Side,40.76703,-73.95957,Entire home/apt,200,3,3,0.46,1,188 +39081,228980689,Manhattan,Washington Heights,40.85502,-73.92763000000001,Entire home/apt,150,5,9,1.27,1,286 +39082,38249006,Brooklyn,Bedford-Stuyvesant,40.68462,-73.94055999999999,Entire home/apt,70,4,14,2.07,1,17 +39083,83462709,Manhattan,Tribeca,40.71459,-74.00933,Entire home/apt,359,1,36,5.09,1,175 +39084,11377906,Manhattan,Upper East Side,40.767559999999996,-73.96856,Entire home/apt,100,2,0,,1,3 +39085,142642693,Manhattan,Harlem,40.808609999999994,-73.95451,Entire home/apt,95,2,24,3.79,1,0 +39086,160778490,Manhattan,Inwood,40.86565,-73.92486,Private room,40,2,3,0.42,1,19 +39087,137358866,Brooklyn,Bushwick,40.6907,-73.91157,Private room,40,30,0,,103,269 +39088,51985960,Brooklyn,Williamsburg,40.70552,-73.92947,Private room,38,6,2,0.32,2,95 +39089,222805048,Manhattan,Washington Heights,40.85025,-73.94105,Private room,40,1,27,4.01,1,49 +39090,228998411,Manhattan,East Village,40.728629999999995,-73.97994,Entire home/apt,170,1,0,,1,0 +39091,115193518,Brooklyn,Bushwick,40.704679999999996,-73.92443,Private room,45,5,0,,3,0 +39092,137358866,Queens,Elmhurst,40.73578,-73.88049000000001,Private room,51,30,3,0.54,103,246 +39093,228691487,Brooklyn,East Flatbush,40.63835,-73.94402,Entire home/apt,90,1,39,5.44,1,141 +39094,22051363,Manhattan,Harlem,40.820890000000006,-73.94791,Private room,50,1,0,,1,0 +39095,228961973,Bronx,Concourse Village,40.82674,-73.91935,Private room,85,3,1,0.38,1,341 +39096,18403410,Brooklyn,Crown Heights,40.67817,-73.94691,Private room,150,1,3,0.43,1,0 +39097,25947734,Manhattan,Upper East Side,40.77203,-73.95988,Entire home/apt,284,4,7,1.11,1,328 +39098,228212001,Manhattan,East Village,40.72664,-73.98661,Entire home/apt,185,2,7,1.0,1,14 +39099,1157541,Brooklyn,Prospect Heights,40.67625,-73.97038,Entire home/apt,166,30,1,0.24,1,365 +39100,56778641,Manhattan,Washington Heights,40.85127,-73.92985,Private room,31,1,28,4.57,1,111 +39101,384595,Manhattan,Lower East Side,40.714220000000005,-73.98808000000001,Entire home/apt,150,3,8,1.18,1,163 +39102,227814642,Manhattan,Chinatown,40.71787,-73.9964,Entire home/apt,398,1,10,2.5,1,328 +39103,10674184,Brooklyn,Fort Greene,40.685,-73.97275,Entire home/apt,185,4,8,1.33,1,0 +39104,229072295,Brooklyn,Carroll Gardens,40.68486,-73.99358000000001,Entire home/apt,200,3,1,0.16,1,0 +39105,12802075,Manhattan,Harlem,40.81981,-73.94326,Entire home/apt,300,4,4,0.63,1,0 +39106,181974787,Manhattan,Hell's Kitchen,40.764109999999995,-73.99019,Entire home/apt,189,1,4,0.61,1,74 +39107,228773060,Bronx,Bronxdale,40.85398,-73.86451,Private room,25,2,1,0.14,1,0 +39108,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66147,-73.9415,Private room,55,1,32,4.66,7,7 +39109,52671461,Manhattan,Kips Bay,40.73963,-73.98002,Entire home/apt,200,2,5,0.72,2,338 +39110,192861009,Brooklyn,Crown Heights,40.671279999999996,-73.91604,Entire home/apt,52,1,13,1.8,2,88 +39111,95575605,Manhattan,Chelsea,40.74726,-73.99029,Entire home/apt,250,7,0,,1,0 +39112,225620845,Brooklyn,Sheepshead Bay,40.58527,-73.95741,Entire home/apt,400,3,2,0.32,3,363 +39113,18294695,Manhattan,Upper East Side,40.77469,-73.95067,Entire home/apt,102,30,2,0.31,1,0 +39114,229087097,Queens,Ditmars Steinway,40.769490000000005,-73.89222,Private room,80,1,0,,1,179 +39115,1725141,Manhattan,NoHo,40.72696,-73.99501,Entire home/apt,390,15,1,0.91,1,15 +39116,228411197,Brooklyn,Bedford-Stuyvesant,40.69468,-73.93304,Entire home/apt,450,1,10,1.84,1,352 +39117,213781715,Brooklyn,Greenpoint,40.733779999999996,-73.95569,Private room,199,1,0,,33,180 +39118,218526982,Manhattan,Lower East Side,40.72165,-73.98693,Private room,110,1,0,,2,0 +39119,226201658,Brooklyn,Williamsburg,40.70755,-73.94892,Entire home/apt,90,30,2,0.45,3,314 +39120,8187816,Brooklyn,Williamsburg,40.71025,-73.96921,Entire home/apt,550,7,0,,1,20 +39121,6349101,Brooklyn,Williamsburg,40.71058,-73.93911999999999,Entire home/apt,111,5,1,0.14,1,0 +39122,227682707,Queens,Ridgewood,40.703829999999996,-73.91171,Private room,60,2,2,0.29,1,0 +39123,198861577,Brooklyn,Williamsburg,40.72132,-73.95463000000001,Private room,295,1,2,0.6,5,90 +39124,229104353,Queens,Astoria,40.77606,-73.92804,Private room,91,2,0,,2,341 +39125,55970820,Manhattan,Harlem,40.81785,-73.93989,Entire home/apt,54,30,0,,1,0 +39126,140497439,Manhattan,Washington Heights,40.83658,-73.94088,Entire home/apt,55,7,2,0.33,1,0 +39127,9930986,Manhattan,Upper West Side,40.801520000000004,-73.96673,Private room,110,1,0,,1,0 +39128,14254368,Manhattan,Murray Hill,40.7503,-73.97747,Private room,75,4,0,,1,87 +39129,105367031,Brooklyn,Bushwick,40.68162,-73.90593,Entire home/apt,325,2,8,2.38,5,342 +39130,98260543,Manhattan,Upper East Side,40.76981,-73.95365,Private room,135,1,11,1.75,3,330 +39131,229124258,Brooklyn,Carroll Gardens,40.67775,-74.00131,Entire home/apt,79,10,0,,1,19 +39132,224414117,Manhattan,Hell's Kitchen,40.75622,-73.99683,Private room,179,1,12,1.69,30,175 +39133,1418015,Brooklyn,Crown Heights,40.674409999999995,-73.95235,Private room,80,2,10,1.57,4,2 +39134,228879817,Queens,Flushing,40.74449,-73.83476,Private room,80,1,10,1.41,6,169 +39135,3137237,Manhattan,Morningside Heights,40.81068,-73.9582,Entire home/apt,175,1,1,0.16,1,0 +39136,21527486,Brooklyn,Park Slope,40.673,-73.97721,Entire home/apt,211,3,8,1.2,1,90 +39137,81009456,Manhattan,Upper West Side,40.80368,-73.96661999999999,Entire home/apt,133,1,2,0.28,1,0 +39138,10748308,Queens,Kew Gardens,40.7048,-73.83384000000001,Entire home/apt,200,3,0,,1,0 +39139,854567,Brooklyn,Bedford-Stuyvesant,40.69202,-73.95456,Private room,1350,21,0,,2,365 +39140,227915163,Brooklyn,Gowanus,40.66871,-73.99038,Entire home/apt,70,6,1,0.14,1,0 +39141,229149810,Queens,East Elmhurst,40.76887,-73.8741,Private room,75,1,33,4.63,3,81 +39142,49223549,Manhattan,Little Italy,40.72007,-73.99695,Entire home/apt,250,1,0,,1,0 +39143,229149668,Brooklyn,Bedford-Stuyvesant,40.68294,-73.95451,Entire home/apt,150,3,26,3.79,1,93 +39144,4169001,Brooklyn,Williamsburg,40.72006,-73.94593,Entire home/apt,175,5,0,,1,0 +39145,55403309,Manhattan,East Village,40.7249,-73.98174,Entire home/apt,240,3,1,0.16,2,0 +39146,60939718,Manhattan,Harlem,40.825759999999995,-73.94454,Private room,43,5,1,0.15,1,0 +39147,56665831,Brooklyn,Bedford-Stuyvesant,40.68947,-73.95269,Private room,99,5,1,0.16,1,0 +39148,21132706,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94958000000001,Private room,50,3,0,,1,25 +39149,212466724,Brooklyn,Bushwick,40.68667,-73.9154,Private room,37,5,0,,1,0 +39150,137358866,Brooklyn,Bushwick,40.69177,-73.9135,Private room,41,30,2,0.41,103,186 +39151,31792728,Brooklyn,Clinton Hill,40.68414,-73.95976,Entire home/apt,125,2,30,4.59,1,243 +39152,172369331,Brooklyn,Coney Island,40.57863,-73.98455,Shared room,29,18,1,0.21,10,221 +39153,2324779,Brooklyn,Williamsburg,40.70898,-73.95391,Entire home/apt,250,6,1,0.16,1,0 +39154,229229020,Brooklyn,Greenpoint,40.721090000000004,-73.95403,Entire home/apt,115,7,3,0.48,1,11 +39155,85385725,Manhattan,Midtown,40.76399,-73.97718,Private room,550,2,0,,2,145 +39156,227987738,Brooklyn,Williamsburg,40.70807,-73.95604,Entire home/apt,392,1,18,3.12,1,318 +39157,24916650,Manhattan,East Village,40.723009999999995,-73.98347,Private room,125,4,21,3.56,1,52 +39158,4075403,Manhattan,SoHo,40.720459999999996,-74.00151,Entire home/apt,950,4,1,0.37,1,90 +39159,227990647,Brooklyn,Bedford-Stuyvesant,40.694,-73.93354000000001,Entire home/apt,360,2,26,3.94,1,21 +39160,229115651,Brooklyn,Bushwick,40.69632,-73.92908,Private room,50,5,0,,1,0 +39161,9994745,Manhattan,East Village,40.72367,-73.98244,Entire home/apt,175,2,2,0.32,1,2 +39162,229147376,Brooklyn,Bedford-Stuyvesant,40.68548,-73.95679,Private room,45,30,0,,11,354 +39163,70065270,Manhattan,East Harlem,40.789,-73.94798,Entire home/apt,90,3,1,0.16,1,0 +39164,24594462,Manhattan,East Harlem,40.796170000000004,-73.946,Private room,95,2,27,3.91,2,33 +39165,229147376,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95806,Private room,50,15,2,0.85,11,189 +39166,229255407,Manhattan,Midtown,40.745509999999996,-73.98744,Entire home/apt,150,1,4,0.57,1,5 +39167,12715154,Brooklyn,Williamsburg,40.71954,-73.9461,Private room,100,5,1,0.16,2,0 +39168,229147376,Brooklyn,Bedford-Stuyvesant,40.68736,-73.95777,Private room,59,15,5,0.94,11,343 +39169,229147376,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95781,Private room,60,15,8,1.12,11,330 +39170,229147376,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9573,Private room,48,15,2,0.31,11,189 +39171,9047774,Manhattan,East Village,40.730090000000004,-73.98884,Entire home/apt,150,4,0,,1,0 +39172,107434423,Manhattan,Chelsea,40.73888,-73.99781999999999,Entire home/apt,287,30,0,,232,218 +39173,229147376,Brooklyn,Bedford-Stuyvesant,40.68737,-73.95798,Private room,48,15,5,0.7,11,364 +39174,4599529,Brooklyn,Williamsburg,40.71673,-73.94948000000001,Private room,65,2,1,0.15,1,95 +39175,148508902,Brooklyn,Sheepshead Bay,40.5864,-73.9432,Entire home/apt,69,1,42,6.09,1,57 +39176,22591930,Brooklyn,Williamsburg,40.71901,-73.96303,Private room,70,2,1,0.16,1,0 +39177,229269352,Brooklyn,Bedford-Stuyvesant,40.688790000000004,-73.9534,Private room,120,2,2,0.3,1,89 +39178,1313385,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93145,Private room,90,3,2,2.0,1,1 +39179,229147376,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95752,Private room,40,15,3,0.47,11,354 +39180,229272976,Queens,St. Albans,40.69064,-73.76009,Private room,60,2,15,2.27,1,356 +39181,229278227,Brooklyn,Bensonhurst,40.620709999999995,-73.99911999999999,Private room,45,1,13,2.07,1,324 +39182,195024580,Brooklyn,Williamsburg,40.720659999999995,-73.95725999999999,Entire home/apt,150,7,2,0.32,1,8 +39183,2522815,Brooklyn,Sunset Park,40.66356,-73.99368,Entire home/apt,150,2,0,,2,29 +39184,229147376,Brooklyn,Bedford-Stuyvesant,40.68723,-73.95742,Private room,48,15,4,0.56,11,341 +39185,169898690,Brooklyn,Williamsburg,40.72161,-73.96327,Entire home/apt,125,90,0,,1,129 +39186,35256210,Queens,Long Island City,40.75038,-73.94069,Entire home/apt,200,4,0,,1,0 +39187,35435470,Manhattan,Lower East Side,40.72149,-73.98918,Entire home/apt,99,1,3,0.49,1,0 +39188,21496186,Manhattan,Midtown,40.75051,-73.98625,Private room,94,1,27,4.58,2,76 +39189,229293180,Queens,Woodside,40.7419,-73.90236,Private room,55,3,20,3.39,1,44 +39190,12076120,Manhattan,West Village,40.74005,-74.00525,Entire home/apt,205,2,0,,1,157 +39191,5524422,Brooklyn,Williamsburg,40.71362,-73.95714,Entire home/apt,520,3,1,0.16,1,24 +39192,51596064,Brooklyn,East Flatbush,40.644870000000004,-73.94711,Entire home/apt,70,1,23,3.27,1,0 +39193,229288524,Manhattan,Hell's Kitchen,40.75569,-73.99110999999999,Entire home/apt,128,5,0,,2,142 +39194,9328763,Manhattan,Chelsea,40.74511,-73.99468,Private room,138,25,0,,2,0 +39195,61560050,Brooklyn,Bushwick,40.70279,-73.91346999999999,Private room,55,2,2,0.32,1,0 +39196,229309933,Queens,Flushing,40.76389,-73.82349,Shared room,49,1,3,0.94,2,90 +39197,181651082,Queens,Rosedale,40.658609999999996,-73.73671999999999,Entire home/apt,135,1,5,0.76,3,36 +39198,3933608,Brooklyn,Williamsburg,40.71713,-73.9622,Entire home/apt,280,3,0,,1,0 +39199,33531612,Manhattan,East Village,40.72365,-73.98643,Entire home/apt,110,2,1,0.7,1,280 +39200,229147376,Brooklyn,Bedford-Stuyvesant,40.6871,-73.95735,Private room,40,15,4,0.56,11,325 +39201,107053688,Manhattan,Upper West Side,40.77394,-73.98955,Entire home/apt,500,5,5,0.71,1,0 +39202,61107296,Queens,Ridgewood,40.70732,-73.91490999999999,Private room,65,1,3,0.47,1,0 +39203,11127879,Brooklyn,Crown Heights,40.67315,-73.9288,Private room,79,3,0,,2,359 +39204,9334241,Brooklyn,Bedford-Stuyvesant,40.68079,-73.94719,Entire home/apt,150,2,2,0.64,1,177 +39205,229309933,Queens,Flushing,40.76226,-73.82459,Private room,60,1,6,0.87,2,365 +39206,171382321,Brooklyn,Williamsburg,40.713809999999995,-73.96016,Entire home/apt,400,7,1,0.14,1,219 +39207,229325672,Manhattan,Upper West Side,40.77648,-73.97895,Entire home/apt,195,3,11,1.71,1,13 +39208,229147376,Brooklyn,Bedford-Stuyvesant,40.687090000000005,-73.95801,Private room,45,15,3,0.47,11,199 +39209,13400096,Brooklyn,Crown Heights,40.67646,-73.94333,Private room,40,25,0,,3,0 +39210,229147376,Brooklyn,Bedford-Stuyvesant,40.68598,-73.95735,Private room,45,15,3,0.42,11,331 +39211,227340438,Manhattan,Hell's Kitchen,40.75833,-73.9919,Entire home/apt,240,2,14,1.98,1,156 +39212,33064599,Manhattan,Upper West Side,40.80002,-73.9671,Entire home/apt,199,1,4,0.68,6,320 +39213,137358866,Brooklyn,Bushwick,40.69262,-73.91198,Private room,35,30,4,0.66,103,269 +39214,156505456,Brooklyn,East New York,40.66682,-73.87351,Private room,57,3,1,0.44,13,90 +39215,137358866,Manhattan,Harlem,40.812540000000006,-73.94199,Private room,31,30,1,1.0,103,0 +39216,229386490,Brooklyn,Bedford-Stuyvesant,40.68422,-73.92314,Private room,65,2,16,2.5,3,222 +39217,15929157,Brooklyn,East New York,40.67199,-73.88253,Private room,36,15,1,0.23,3,213 +39218,9572607,Manhattan,Lower East Side,40.721759999999996,-73.98825,Private room,150,1,8,2.07,3,0 +39219,2948760,Brooklyn,Clinton Hill,40.68554,-73.96651,Entire home/apt,120,3,3,0.47,1,0 +39220,152386567,Manhattan,Lower East Side,40.72189,-73.99133,Private room,150,1,16,2.25,2,20 +39221,62398329,Manhattan,SoHo,40.72183,-73.99903,Private room,90,1,0,,1,0 +39222,38256284,Manhattan,Chelsea,40.74322,-73.99547,Entire home/apt,250,1,1,0.16,1,0 +39223,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66015,-73.94251,Private room,55,1,24,3.38,7,45 +39224,104813064,Brooklyn,Kensington,40.646370000000005,-73.97593,Private room,56,1,6,0.88,1,0 +39225,105367031,Brooklyn,Bushwick,40.68346,-73.90568,Entire home/apt,250,2,0,,5,342 +39226,229421782,Brooklyn,East Flatbush,40.64743,-73.94355999999999,Private room,43,3,3,0.43,2,58 +39227,5221013,Brooklyn,Greenpoint,40.7205,-73.94717,Entire home/apt,80,3,2,0.47,1,3 +39228,145041366,Manhattan,Kips Bay,40.74374,-73.97998,Entire home/apt,200,7,0,,1,90 +39229,5214227,Brooklyn,Greenpoint,40.723859999999995,-73.9506,Private room,90,2,1,0.59,1,63 +39230,229431423,Brooklyn,Crown Heights,40.6737,-73.91608000000001,Private room,100,1,1,0.16,1,89 +39231,105622510,Manhattan,East Harlem,40.79179,-73.93524000000001,Private room,52,2,10,1.6,1,5 +39232,107374902,Manhattan,Midtown,40.754259999999995,-73.96524000000001,Entire home/apt,182,3,5,0.8,1,41 +39233,114003480,Brooklyn,Bedford-Stuyvesant,40.693529999999996,-73.94375,Private room,50,2,0,,1,220 +39234,224042160,Brooklyn,East Flatbush,40.65051,-73.94969,Private room,35,1,3,0.44,3,69 +39235,44886301,Manhattan,Upper East Side,40.769909999999996,-73.95326999999999,Private room,175,3,0,,2,0 +39236,229443636,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95279000000001,Entire home/apt,349,2,15,2.11,1,349 +39237,221204634,Queens,Laurelton,40.67156,-73.74383,Entire home/apt,125,2,26,3.79,1,21 +39238,34464182,Manhattan,Harlem,40.827690000000004,-73.94758,Private room,100,5,4,1.04,1,89 +39239,227993479,Brooklyn,Bushwick,40.70165,-73.92056,Entire home/apt,231,1,23,3.71,1,335 +39240,75509095,Manhattan,East Village,40.7286,-73.97952,Private room,69,1,35,4.93,2,98 +39241,92612757,Brooklyn,Williamsburg,40.71716,-73.95183,Entire home/apt,200,2,1,0.16,1,219 +39242,24594462,Manhattan,East Harlem,40.795190000000005,-73.94543,Entire home/apt,135,2,2,1.67,2,2 +39243,229458601,Manhattan,Harlem,40.81315,-73.9511,Entire home/apt,3200,90,0,,1,365 +39244,20902952,Brooklyn,Red Hook,40.67204,-74.00792,Entire home/apt,120,2,1,0.45,1,157 +39245,18494627,Brooklyn,Williamsburg,40.70929,-73.94719,Private room,40,58,1,0.16,1,15 +39246,229181517,Brooklyn,Crown Heights,40.67179,-73.95363,Entire home/apt,125,3,18,2.61,1,96 +39247,60081723,Manhattan,Hell's Kitchen,40.76239,-73.99119,Entire home/apt,199,3,21,3.0,2,228 +39248,154981576,Brooklyn,Bushwick,40.70048,-73.91201,Private room,37,30,1,0.75,9,45 +39249,228879817,Queens,Flushing,40.7439,-73.83261,Private room,80,1,14,1.97,6,138 +39250,16608415,Brooklyn,East New York,40.66745,-73.89217,Private room,25,1,25,3.61,3,211 +39251,229469300,Brooklyn,Williamsburg,40.70855,-73.95071999999999,Private room,55,2,2,0.75,2,4 +39252,24131677,Manhattan,Midtown,40.74315,-73.98222,Entire home/apt,250,20,14,2.04,2,315 +39253,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.9413,Private room,55,1,25,3.52,7,42 +39254,228263278,Manhattan,Harlem,40.82428,-73.94854000000001,Private room,160,2,0,,4,180 +39255,228263278,Manhattan,Harlem,40.82565,-73.94815,Private room,95,2,5,0.79,4,178 +39256,229480146,Bronx,Tremont,40.842890000000004,-73.88773,Entire home/apt,40,2,17,2.7,1,107 +39257,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66065,-73.94116,Private room,55,1,20,2.82,7,53 +39258,22374232,Brooklyn,Williamsburg,40.71051,-73.96564000000001,Entire home/apt,145,2,0,,1,4 +39259,1443812,Brooklyn,Williamsburg,40.711009999999995,-73.96439000000001,Entire home/apt,190,4,2,0.32,2,128 +39260,228879817,Queens,Flushing,40.74548,-73.8341,Private room,80,1,10,1.59,6,163 +39261,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66055,-73.94242,Private room,55,1,19,2.7,7,53 +39262,228879817,Queens,Flushing,40.744440000000004,-73.83281,Private room,80,1,15,2.28,6,137 +39263,75998293,Manhattan,Hell's Kitchen,40.76475,-73.98662,Private room,160,8,1,0.48,1,64 +39264,125961131,Manhattan,Two Bridges,40.71217,-73.99483000000001,Private room,75,1,41,5.97,3,2 +39265,180212824,Manhattan,Upper East Side,40.767179999999996,-73.95715,Private room,80,1,3,0.42,5,0 +39266,229503748,Manhattan,Hell's Kitchen,40.76323,-73.98893000000001,Entire home/apt,250,2,26,3.8,1,60 +39267,229509602,Manhattan,Lower East Side,40.71997,-73.98491,Private room,85,2,23,3.35,1,344 +39268,104167105,Manhattan,Upper West Side,40.78484,-73.97861999999999,Private room,120,2,8,1.15,1,0 +39269,5300413,Manhattan,Midtown,40.76698,-73.97988000000001,Private room,60,30,0,,1,125 +39270,222760631,Bronx,Throgs Neck,40.825070000000004,-73.8204,Private room,45,3,0,,1,36 +39271,137358866,Queens,Elmhurst,40.735009999999996,-73.87989,Private room,36,30,1,0.23,103,234 +39272,225454310,Queens,Far Rockaway,40.5998,-73.75586,Entire home/apt,145,1,3,0.45,4,311 +39273,9501531,Manhattan,Harlem,40.82314,-73.94505,Private room,55,1,14,1.98,3,359 +39274,16098958,Manhattan,Midtown,40.75554,-73.96533000000001,Entire home/apt,220,30,0,,96,332 +39275,107434423,Brooklyn,DUMBO,40.703720000000004,-73.98545,Entire home/apt,312,30,0,,232,349 +39276,178224519,Manhattan,Kips Bay,40.73945,-73.97934000000001,Entire home/apt,118,30,0,,8,326 +39277,16098958,Manhattan,Midtown,40.75501,-73.96594,Entire home/apt,220,30,0,,96,342 +39278,229554591,Queens,Sunnyside,40.73571,-73.91837,Private room,49,1,1,0.18,2,0 +39279,16098958,Manhattan,Midtown,40.75609,-73.96684,Entire home/apt,220,30,0,,96,336 +39280,44152990,Brooklyn,Williamsburg,40.71894,-73.96186999999999,Private room,90,3,4,0.6,1,11 +39281,94113622,Brooklyn,Bushwick,40.70138,-73.92365,Private room,50,7,1,0.68,2,48 +39282,57094235,Manhattan,Financial District,40.7086,-74.01375999999999,Private room,100,8,1,0.16,1,0 +39283,16098958,Manhattan,Upper East Side,40.759159999999994,-73.96023000000001,Entire home/apt,293,30,0,,96,292 +39284,16098958,Manhattan,Upper East Side,40.76021,-73.96075,Entire home/apt,293,30,0,,96,280 +39285,48146336,Manhattan,Hell's Kitchen,40.76157,-73.99358000000001,Entire home/apt,190,30,1,0.2,20,331 +39286,193709,Brooklyn,Greenpoint,40.73506,-73.954,Entire home/apt,150,11,2,0.32,1,15 +39287,85315237,Brooklyn,Williamsburg,40.70971,-73.94804,Private room,50,4,1,0.15,1,0 +39288,912324,Manhattan,West Village,40.73704,-74.00501,Entire home/apt,500,3,5,0.8,1,18 +39289,34957489,Manhattan,Harlem,40.83175,-73.94691999999999,Private room,45,4,0,,1,7 +39290,2199778,Brooklyn,Williamsburg,40.70839,-73.9547,Entire home/apt,150,3,6,0.95,1,4 +39291,45534171,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92214,Entire home/apt,200,7,2,0.32,1,31 +39292,189876110,Brooklyn,Crown Heights,40.676159999999996,-73.9404,Private room,59,1,2,0.29,1,0 +39293,225122879,Brooklyn,Park Slope,40.671929999999996,-73.97334000000001,Entire home/apt,100,3,26,3.79,1,219 +39294,229578317,Manhattan,Hell's Kitchen,40.76348,-73.99391,Private room,125,1,5,0.73,1,38 +39295,229577914,Brooklyn,Greenpoint,40.72681,-73.95359,Entire home/apt,150,5,1,0.16,1,48 +39296,227679456,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.9412,Private room,55,1,12,1.76,7,58 +39297,193420283,Manhattan,East Village,40.73079,-73.98116999999999,Entire home/apt,240,2,7,1.01,1,0 +39298,5494184,Brooklyn,Brooklyn Heights,40.69423,-73.99728,Entire home/apt,140,7,1,0.16,1,5 +39299,22916874,Manhattan,Nolita,40.72182,-73.99566999999999,Entire home/apt,250,2,28,3.98,1,0 +39300,213781715,Brooklyn,Greenpoint,40.732890000000005,-73.955,Entire home/apt,199,1,1,0.79,33,365 +39301,14559352,Brooklyn,Williamsburg,40.710640000000005,-73.9614,Entire home/apt,150,3,4,0.63,2,0 +39302,229588502,Brooklyn,Williamsburg,40.712509999999995,-73.96061999999999,Private room,80,3,0,,1,0 +39303,154981576,Brooklyn,Bushwick,40.70127,-73.91235,Private room,35,30,0,,9,43 +39304,64825610,Manhattan,Hell's Kitchen,40.76011,-73.99087,Entire home/apt,299,3,23,3.5,2,207 +39305,51908924,Brooklyn,Crown Heights,40.67471,-73.9616,Entire home/apt,85,3,2,0.32,1,19 +39306,229284767,Manhattan,Midtown,40.752340000000004,-73.98591,Entire home/apt,152,30,2,0.38,1,0 +39307,224815152,Manhattan,Hell's Kitchen,40.756409999999995,-73.9971,Private room,209,1,25,3.49,8,84 +39308,72944476,Brooklyn,Crown Heights,40.67013,-73.95375,Entire home/apt,100,1,15,2.17,1,0 +39309,229450070,Manhattan,Harlem,40.82398,-73.93815,Shared room,45,2,15,2.28,1,96 +39310,19759400,Manhattan,Upper East Side,40.76117,-73.96019,Private room,96,2,28,6.83,1,31 +39311,141735689,Brooklyn,Bushwick,40.69227,-73.91724,Entire home/apt,100,3,3,0.42,1,0 +39312,229149810,Queens,East Elmhurst,40.77082,-73.87469,Private room,51,1,65,9.15,3,83 +39313,24865062,Manhattan,Chelsea,40.7416,-73.99781999999999,Entire home/apt,300,4,2,0.3,1,17 +39314,12920745,Manhattan,Hell's Kitchen,40.75608,-73.99606,Entire home/apt,120,10,2,0.91,1,0 +39315,21376704,Queens,Flushing,40.728590000000004,-73.80899000000001,Private room,85,2,18,2.62,1,60 +39316,157337532,Queens,College Point,40.77857,-73.84408,Entire home/apt,65,1,50,7.69,2,78 +39317,2239610,Manhattan,Hell's Kitchen,40.756,-73.99804,Entire home/apt,165,5,10,1.47,1,31 +39318,2019933,Brooklyn,Greenpoint,40.73578,-73.95369000000001,Entire home/apt,200,4,3,0.43,1,321 +39319,221940893,Brooklyn,Kensington,40.63628,-73.9697,Private room,60,2,12,3.67,3,220 +39320,210301854,Manhattan,Midtown,40.76435,-73.98196999999999,Entire home/apt,345,7,0,,1,227 +39321,229695499,Manhattan,Lower East Side,40.7189,-73.98263,Private room,175,1,11,2.84,1,250 +39322,15872352,Queens,Rego Park,40.729420000000005,-73.86551,Shared room,34,1,12,1.86,2,51 +39323,12101562,Manhattan,Two Bridges,40.71114,-73.99977,Entire home/apt,175,2,0,,1,0 +39324,224311652,Manhattan,East Harlem,40.79852,-73.93769,Private room,79,1,31,4.63,1,0 +39325,162167111,Queens,Elmhurst,40.74055,-73.88076,Entire home/apt,95,3,20,4.11,1,101 +39326,16358757,Brooklyn,Crown Heights,40.67685,-73.94405,Entire home/apt,80,5,5,0.81,1,8 +39327,879277,Brooklyn,Williamsburg,40.70874,-73.95873,Shared room,70,2,4,0.59,1,135 +39328,192951036,Manhattan,SoHo,40.726079999999996,-74.00022,Entire home/apt,240,1,9,1.73,10,338 +39329,13108315,Brooklyn,Park Slope,40.67409,-73.97546,Entire home/apt,100,8,3,0.48,1,7 +39330,22205488,Brooklyn,Crown Heights,40.6751,-73.91035,Entire home/apt,100,2,7,1.03,1,0 +39331,43053304,Manhattan,Upper East Side,40.77778,-73.94893,Entire home/apt,120,5,1,0.22,1,0 +39332,219449657,Brooklyn,Bushwick,40.68225,-73.90720999999999,Entire home/apt,200,1,28,4.22,1,30 +39333,229732503,Manhattan,SoHo,40.72446,-73.99965999999999,Private room,165,7,0,,1,88 +39334,1319214,Manhattan,Hell's Kitchen,40.763329999999996,-73.98917,Entire home/apt,172,4,3,0.42,1,0 +39335,100554481,Queens,Long Island City,40.749,-73.94161,Private room,68,30,6,1.04,1,0 +39336,294581,Brooklyn,Williamsburg,40.702020000000005,-73.94351999999999,Private room,75,3,4,4.0,1,101 +39337,84011138,Queens,Ridgewood,40.70792,-73.89546,Private room,55,3,7,1.08,1,188 +39338,51431600,Brooklyn,Bushwick,40.70134,-73.92111,Private room,50,5,1,0.16,1,0 +39339,229737810,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94711,Entire home/apt,125,3,1,0.16,1,95 +39340,541486,Brooklyn,Bedford-Stuyvesant,40.68736,-73.9564,Entire home/apt,160,1,9,1.39,2,6 +39341,202144863,Queens,Woodhaven,40.68845,-73.85423,Private room,60,1,10,1.49,1,0 +39342,188050970,Manhattan,Inwood,40.85962,-73.92971,Private room,65,1,25,3.89,1,86 +39343,17665952,Brooklyn,Williamsburg,40.70973,-73.95810999999999,Private room,75,7,2,0.28,1,0 +39344,137358866,Queens,Woodside,40.74188,-73.90146,Private room,61,30,2,0.75,103,230 +39345,56286886,Brooklyn,Williamsburg,40.71673,-73.96428,Entire home/apt,150,2,4,0.59,1,12 +39346,2939479,Manhattan,Upper East Side,40.7751,-73.95294,Private room,125,3,2,0.32,1,23 +39347,120912613,Queens,Glendale,40.6998,-73.89350999999999,Entire home/apt,99,2,28,5.12,1,289 +39348,229769527,Brooklyn,East Flatbush,40.65679,-73.91631,Private room,200,5,0,,1,365 +39349,72512761,Brooklyn,Greenpoint,40.72402,-73.94949,Private room,75,3,2,2.0,3,0 +39350,229774456,Queens,Ditmars Steinway,40.77383,-73.90558,Private room,70,2,4,0.64,1,89 +39351,125961131,Manhattan,Two Bridges,40.7126,-73.99376,Private room,55,1,53,7.64,3,2 +39352,81347848,Brooklyn,Williamsburg,40.714859999999994,-73.96125,Private room,49,28,0,,1,90 +39353,203982404,Manhattan,East Harlem,40.80822,-73.94051,Private room,90,2,20,3.09,6,0 +39354,20177190,Brooklyn,Gowanus,40.66902,-73.99188000000001,Private room,65,1,20,3.13,1,146 +39355,203982404,Manhattan,East Harlem,40.80847,-73.94044,Private room,90,2,25,3.66,6,173 +39356,203982404,Manhattan,East Harlem,40.80701,-73.94041,Entire home/apt,500,2,0,,6,173 +39357,228581927,Brooklyn,Crown Heights,40.6775,-73.9634,Entire home/apt,180,3,1,0.14,1,90 +39358,92674591,Brooklyn,Clinton Hill,40.68878,-73.96495,Entire home/apt,99,2,18,5.0,1,50 +39359,172379806,Queens,Ditmars Steinway,40.77108,-73.91378,Entire home/apt,100,2,25,3.55,1,294 +39360,229836139,Brooklyn,Bedford-Stuyvesant,40.6881,-73.95356,Entire home/apt,140,2,19,3.33,1,35 +39361,21010752,Manhattan,East Village,40.72185,-73.98236999999999,Private room,49,4,2,0.35,2,0 +39362,35179914,Manhattan,Harlem,40.82495,-73.94023,Entire home/apt,150,5,1,0.17,1,0 +39363,229709908,Manhattan,East Village,40.724340000000005,-73.98208000000001,Entire home/apt,285,3,16,3.48,1,241 +39364,10045509,Queens,Ditmars Steinway,40.77315,-73.9075,Entire home/apt,150,5,2,0.32,1,0 +39365,229844097,Manhattan,East Harlem,40.798190000000005,-73.94294000000001,Private room,89,1,23,3.37,1,285 +39366,6769030,Manhattan,Washington Heights,40.83477,-73.94293,Private room,75,2,5,1.76,1,0 +39367,13223221,Brooklyn,Midwood,40.61843,-73.95626,Entire home/apt,75,3,1,0.25,1,0 +39368,13977477,Brooklyn,Williamsburg,40.716429999999995,-73.96443000000001,Entire home/apt,99,5,5,0.81,1,0 +39369,2838058,Manhattan,Harlem,40.81216,-73.94411,Entire home/apt,165,5,0,,2,163 +39370,2838058,Manhattan,Harlem,40.81234,-73.94511999999999,Private room,65,3,3,0.48,2,363 +39371,164051353,Manhattan,Chelsea,40.74836,-73.98921,Private room,133,1,17,4.32,3,87 +39372,164051353,Manhattan,Chelsea,40.74832,-73.98915,Private room,130,1,19,2.88,3,81 +39373,173417532,Manhattan,Midtown,40.751059999999995,-73.97485,Private room,172,1,18,4.74,3,85 +39374,229872308,Brooklyn,Bedford-Stuyvesant,40.6844,-73.91878,Private room,40,2,50,7.11,1,18 +39375,79563670,Manhattan,Upper West Side,40.77888,-73.97967,Entire home/apt,100,3,7,1.04,1,52 +39376,49800768,Brooklyn,Williamsburg,40.705090000000006,-73.92988000000001,Private room,80,7,1,0.16,1,219 +39377,229872448,Manhattan,Upper West Side,40.78791,-73.97404,Entire home/apt,180,5,1,0.15,1,0 +39378,6451056,Brooklyn,Bushwick,40.69793,-73.93141,Entire home/apt,93,3,5,0.78,1,0 +39379,192137090,Brooklyn,Gowanus,40.68269,-73.98585,Entire home/apt,100,3,13,1.9,1,0 +39380,9096745,Queens,Elmhurst,40.73383,-73.87346,Entire home/apt,299,2,10,1.47,1,78 +39381,229885031,Bronx,Mount Hope,40.85055,-73.90189000000001,Entire home/apt,69,2,25,3.66,1,92 +39382,2370813,Brooklyn,Sheepshead Bay,40.5987,-73.96030999999999,Entire home/apt,110,2,38,5.43,2,294 +39383,1632633,Brooklyn,Williamsburg,40.70977,-73.94193,Entire home/apt,120,2,27,4.2,1,8 +39384,10089405,Brooklyn,Fort Greene,40.68643,-73.97873,Entire home/apt,120,1,1,0.16,1,1 +39385,7957807,Manhattan,East Village,40.7256,-73.98478,Entire home/apt,250,2,14,2.19,1,364 +39386,133972014,Brooklyn,Bushwick,40.69979,-73.93158000000001,Entire home/apt,130,3,4,0.63,1,6 +39387,229893262,Manhattan,Roosevelt Island,40.765640000000005,-73.94528000000001,Private room,43,2,1,0.16,1,50 +39388,227647873,Queens,Astoria,40.76167,-73.91346,Entire home/apt,179,2,29,5.15,3,116 +39389,5170481,Brooklyn,Clinton Hill,40.68521,-73.96715999999999,Entire home/apt,90,3,5,2.59,1,50 +39390,4509281,Brooklyn,Crown Heights,40.67548,-73.93992,Private room,500,3,32,4.62,1,0 +39391,191324,Queens,Sunnyside,40.74942,-73.91490999999999,Private room,60,2,4,2.55,2,2 +39392,57046582,Queens,Astoria,40.769079999999995,-73.90873,Entire home/apt,95,3,0,,1,0 +39393,141218191,Brooklyn,Bushwick,40.701609999999995,-73.93326,Entire home/apt,110,70,4,0.65,1,90 +39394,5953913,Manhattan,Battery Park City,40.70418,-74.01695,Entire home/apt,220,2,0,,1,0 +39395,5954813,Brooklyn,Clinton Hill,40.68983,-73.96553,Private room,120,15,0,,1,179 +39396,137358866,Queens,Sunnyside,40.73668,-73.92426999999999,Private room,33,30,0,,103,244 +39397,39890192,Manhattan,Upper West Side,40.80003,-73.96123,Private room,70,14,2,0.61,12,146 +39398,67552519,Manhattan,Nolita,40.72246,-73.99549,Entire home/apt,228,2,29,4.42,2,78 +39399,52671461,Manhattan,Kips Bay,40.73989,-73.97984,Entire home/apt,150,7,1,0.28,2,71 +39400,9266337,Manhattan,West Village,40.73153,-74.00469,Entire home/apt,154,2,4,0.59,1,12 +39401,63260432,Brooklyn,Greenpoint,40.7198,-73.95489,Entire home/apt,179,1,15,2.54,1,0 +39402,33945670,Queens,Long Island City,40.74863,-73.9488,Entire home/apt,283,2,11,1.75,2,303 +39403,17598541,Brooklyn,Crown Heights,40.66708,-73.92968,Private room,45,1,12,1.89,1,150 +39404,183790715,Manhattan,Hell's Kitchen,40.76191,-73.99771,Entire home/apt,575,2,0,,1,364 +39405,141931484,Brooklyn,Flatlands,40.62815,-73.92898000000001,Private room,69,2,15,2.2,3,329 +39406,23419046,Manhattan,West Village,40.73433,-74.00301,Private room,200,1,0,,1,0 +39407,137358866,Queens,Sunnyside,40.737559999999995,-73.92329000000001,Private room,29,30,0,,103,241 +39408,137358866,Queens,Astoria,40.766709999999996,-73.92278,Private room,39,30,1,1.0,103,0 +39409,137358866,Queens,Astoria,40.76654,-73.92381999999999,Private room,54,30,0,,103,0 +39410,178224519,Manhattan,Kips Bay,40.74002,-73.97914,Entire home/apt,155,30,0,,8,365 +39411,137358866,Queens,Sunnyside,40.74925,-73.91332,Private room,41,30,0,,103,124 +39412,178224519,Manhattan,Kips Bay,40.740559999999995,-73.9791,Entire home/apt,150,30,1,0.61,8,332 +39413,178224519,Manhattan,Kips Bay,40.74134,-73.98101,Entire home/apt,150,30,0,,8,364 +39414,4679911,Brooklyn,Greenpoint,40.73473,-73.95229,Private room,54,21,1,0.15,1,0 +39415,30377766,Queens,Jackson Heights,40.753820000000005,-73.87508000000001,Private room,62,1,2,0.32,2,365 +39416,9412549,Manhattan,Financial District,40.708220000000004,-74.00885,Private room,180,1,1,0.17,1,0 +39417,5358010,Brooklyn,South Slope,40.663579999999996,-73.98997,Entire home/apt,145,4,1,1.0,1,12 +39418,4731785,Manhattan,Upper East Side,40.77995,-73.96056,Entire home/apt,200,21,1,0.16,1,88 +39419,230013366,Brooklyn,Borough Park,40.63442,-74.00433000000001,Entire home/apt,110,2,17,2.51,1,243 +39420,196613633,Brooklyn,Bedford-Stuyvesant,40.683609999999994,-73.91372,Private room,45,30,0,,2,220 +39421,1995636,Manhattan,Midtown,40.75634,-73.96519,Entire home/apt,225,30,1,0.37,1,108 +39422,5469063,Manhattan,Upper East Side,40.76719,-73.95253000000001,Entire home/apt,200,5,1,0.2,1,24 +39423,2824437,Brooklyn,Crown Heights,40.675059999999995,-73.94648000000001,Private room,70,3,6,0.85,1,41 +39424,29245582,Manhattan,Harlem,40.8114,-73.9431,Entire home/apt,150,5,16,3.22,1,3 +39425,228263278,Manhattan,Harlem,40.8241,-73.94682,Private room,95,2,4,0.93,4,180 +39426,19052001,Manhattan,Lower East Side,40.7124,-73.99054,Private room,80,2,3,0.6,1,0 +39427,230028797,Queens,Astoria,40.76808,-73.93359,Shared room,100,1,0,,1,89 +39428,225618164,Brooklyn,Gowanus,40.6832,-73.9891,Private room,70,30,0,,3,365 +39429,501456,Brooklyn,Greenpoint,40.73448,-73.95716,Private room,70,3,0,,4,4 +39430,14244557,Brooklyn,Park Slope,40.66519,-73.97793,Entire home/apt,250,9,1,0.16,1,251 +39431,230037325,Brooklyn,Bedford-Stuyvesant,40.67935,-73.90838000000001,Private room,55,1,9,1.38,6,173 +39432,186334891,Brooklyn,Sunset Park,40.66207,-73.99146999999999,Entire home/apt,150,2,17,2.67,2,244 +39433,229693987,Manhattan,Lower East Side,40.71456,-73.98716999999999,Entire home/apt,600,1,0,,1,365 +39434,230037325,Brooklyn,Bedford-Stuyvesant,40.679990000000004,-73.90701,Private room,55,1,3,1.5,6,163 +39435,230037325,Brooklyn,Bedford-Stuyvesant,40.68045,-73.9064,Private room,55,1,8,1.13,6,173 +39436,107434423,Manhattan,Financial District,40.70563,-74.00835,Entire home/apt,232,30,0,,232,350 +39437,229421782,Brooklyn,East Flatbush,40.6472,-73.94348000000001,Private room,35,4,5,0.79,2,89 +39438,197082458,Manhattan,Upper West Side,40.7773,-73.97736,Entire home/apt,350,2,9,1.32,1,286 +39439,198406576,Manhattan,Harlem,40.81612,-73.94216,Entire home/apt,195,30,5,2.08,1,239 +39440,4281300,Brooklyn,Williamsburg,40.71715,-73.94152,Private room,89,1,2,0.43,3,16 +39441,230049837,Manhattan,Murray Hill,40.74929,-73.9812,Private room,59,5,5,1.43,2,0 +39442,835112,Brooklyn,South Slope,40.668690000000005,-73.98665,Private room,42,90,0,,2,0 +39443,1466422,Brooklyn,Crown Heights,40.675509999999996,-73.94046999999999,Entire home/apt,60,133,0,,2,0 +39444,14841940,Brooklyn,Bushwick,40.697520000000004,-73.92069000000001,Private room,48,3,13,2.05,1,34 +39445,181370114,Manhattan,Upper West Side,40.79167,-73.97864,Entire home/apt,500,1,0,,1,87 +39446,103922915,Manhattan,Midtown,40.75816,-73.97004,Entire home/apt,149,2,3,0.46,1,0 +39447,52140932,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95161,Private room,49,2,13,2.22,7,294 +39448,131705586,Brooklyn,Fort Greene,40.695640000000004,-73.97287,Private room,77,1,7,1.84,2,364 +39449,118839768,Queens,Jackson Heights,40.747659999999996,-73.88598,Shared room,35,62,0,,1,0 +39450,123099811,Queens,Sunnyside,40.742090000000005,-73.92591999999999,Private room,40,2,0,,1,1 +39451,416238,Brooklyn,Williamsburg,40.71513,-73.94444,Entire home/apt,225,6,1,0.16,1,88 +39452,52140932,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95014,Private room,49,2,19,3.22,7,360 +39453,51151126,Manhattan,Midtown,40.7654,-73.98201999999999,Private room,600,2,0,,2,2 +39454,35162102,Queens,Queens Village,40.72348,-73.75269,Entire home/apt,120,2,41,6.51,1,66 +39455,51151126,Manhattan,Midtown,40.76579,-73.98049,Private room,600,2,0,,2,2 +39456,3016566,Brooklyn,Park Slope,40.67371,-73.9769,Private room,200,1,1,0.37,1,351 +39457,163905917,Manhattan,Hell's Kitchen,40.75584,-73.99574,Private room,115,4,1,0.52,3,0 +39458,31917161,Manhattan,East Village,40.72583,-73.97528,Private room,70,30,0,,1,0 +39459,230046770,Brooklyn,Coney Island,40.57115,-73.99408000000001,Entire home/apt,190,1,1,0.15,1,2 +39460,97681343,Brooklyn,Flatbush,40.64499,-73.97043000000001,Entire home/apt,62,2,0,,1,54 +39461,48827403,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94933,Private room,160,2,0,,1,363 +39462,76192815,Manhattan,Chinatown,40.71387,-73.99414,Entire home/apt,175,1,1,0.25,5,364 +39463,28821748,Brooklyn,Sunset Park,40.64098,-74.01061,Private room,30,10,1,0.16,1,0 +39464,20043437,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95189,Private room,35,10,3,0.48,1,5 +39465,2581995,Brooklyn,Bedford-Stuyvesant,40.680609999999994,-73.91693000000001,Private room,37,1,29,4.58,2,10 +39466,7883985,Manhattan,Upper East Side,40.77221,-73.95528,Private room,79,1,23,3.59,1,7 +39467,230108889,Queens,Kew Gardens Hills,40.71997,-73.81222,Private room,40,5,2,0.32,2,0 +39468,8214691,Manhattan,Two Bridges,40.7114,-73.99354,Private room,159,3,0,,1,0 +39469,230113240,Brooklyn,Bushwick,40.69251,-73.91246,Private room,100,1,23,3.69,1,240 +39470,9976776,Manhattan,Roosevelt Island,40.76209,-73.94854000000001,Private room,199,3,1,0.16,1,0 +39471,163035332,Manhattan,SoHo,40.721990000000005,-74.00444,Entire home/apt,550,2,12,1.72,3,126 +39472,144124452,Queens,Rosedale,40.65291,-73.73458000000001,Private room,55,1,9,1.34,3,30 +39473,137358866,Queens,Woodside,40.74491,-73.90824,Private room,40,30,1,0.28,103,247 +39474,230165497,Manhattan,West Village,40.73103,-74.00197,Entire home/apt,155,30,0,,4,0 +39475,7389707,Manhattan,Washington Heights,40.846579999999996,-73.93979,Entire home/apt,200,2,0,,2,0 +39476,149312705,Manhattan,Midtown,40.75994,-73.96473,Private room,150,2,25,3.87,1,19 +39477,16098958,Manhattan,Midtown,40.75585,-73.96502,Entire home/apt,190,30,0,,96,158 +39478,50686800,Brooklyn,Bedford-Stuyvesant,40.6907,-73.95004,Private room,46,1,0,,1,28 +39479,16098958,Manhattan,Midtown,40.763940000000005,-73.98154,Entire home/apt,215,30,0,,96,271 +39480,6051149,Brooklyn,Bedford-Stuyvesant,40.683409999999995,-73.94608000000001,Entire home/apt,140,3,12,2.25,1,66 +39481,200239515,Queens,Woodside,40.743359999999996,-73.89438,Private room,35,30,2,0.9,15,7 +39482,173912778,Brooklyn,Flatlands,40.621829999999996,-73.92111,Entire home/apt,89,2,12,1.86,1,132 +39483,230192510,Brooklyn,Fort Greene,40.69638,-73.97507,Private room,48,30,1,1.0,25,342 +39484,228220221,Manhattan,East Village,40.72217,-73.98139,Entire home/apt,239,1,13,2.1,1,345 +39485,230192818,Manhattan,East Village,40.721379999999996,-73.98084,Entire home/apt,90,1,22,3.4,2,17 +39486,363717,Manhattan,East Village,40.72213,-73.98122,Entire home/apt,350,4,2,1.15,1,127 +39487,230192510,Brooklyn,Fort Greene,40.69716,-73.97384,Private room,48,30,1,1.0,25,322 +39488,159598333,Manhattan,Upper East Side,40.78305,-73.94532,Entire home/apt,99,30,0,,5,324 +39489,230196849,Manhattan,East Harlem,40.78909,-73.94153,Entire home/apt,350,2,4,0.63,1,81 +39490,227679456,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.94298,Entire home/apt,599,2,1,0.35,7,110 +39491,226201658,Brooklyn,Williamsburg,40.70819,-73.94945,Entire home/apt,89,30,2,0.39,3,295 +39492,16098958,Manhattan,Midtown,40.74986,-73.98709000000001,Entire home/apt,180,30,0,,96,311 +39493,213781715,Brooklyn,Greenpoint,40.732890000000005,-73.95203000000001,Entire home/apt,189,1,0,,33,364 +39494,230049837,Manhattan,Murray Hill,40.7493,-73.98119,Entire home/apt,129,3,6,0.93,2,22 +39495,230192510,Brooklyn,Fort Greene,40.696909999999995,-73.97376,Private room,48,30,1,0.21,25,220 +39496,230192510,Brooklyn,Fort Greene,40.6969,-73.97565999999999,Private room,48,30,0,,25,340 +39497,218336964,Queens,Rego Park,40.730579999999996,-73.86963,Private room,40,3,14,2.07,4,8 +39498,230192510,Brooklyn,Fort Greene,40.696290000000005,-73.97447,Private room,48,30,0,,25,341 +39499,211549023,Manhattan,Midtown,40.74841,-73.98768000000001,Entire home/apt,220,2,15,2.47,13,286 +39500,6297882,Brooklyn,Bushwick,40.69879,-73.92936,Entire home/apt,120,3,2,0.35,1,0 +39501,230192510,Brooklyn,Fort Greene,40.69758,-73.97431999999999,Private room,48,30,1,0.22,25,311 +39502,10415675,Manhattan,Harlem,40.82224,-73.95402,Entire home/apt,150,4,3,0.47,7,281 +39503,34689714,Manhattan,Hell's Kitchen,40.76448,-73.98631999999999,Private room,99,1,3,0.44,5,358 +39504,192181166,Brooklyn,Williamsburg,40.708909999999996,-73.94268000000001,Private room,72,3,0,,2,0 +39505,95915902,Brooklyn,Bedford-Stuyvesant,40.688829999999996,-73.9525,Entire home/apt,100,2,5,0.75,1,0 +39506,121434641,Brooklyn,Williamsburg,40.708909999999996,-73.94046999999999,Entire home/apt,100,1,23,3.3,1,173 +39507,155261188,Queens,Kew Gardens,40.70555,-73.82138,Private room,200,1,0,,1,365 +39508,230230484,Queens,Astoria,40.76501,-73.92501999999999,Private room,80,3,3,0.48,2,365 +39509,4797532,Brooklyn,Crown Heights,40.672670000000004,-73.95786,Entire home/apt,135,28,0,,2,189 +39510,214130808,Brooklyn,Bay Ridge,40.6224,-74.02428,Private room,50,1,17,2.71,1,311 +39511,2547347,Brooklyn,Brooklyn Heights,40.69214,-73.99444,Entire home/apt,100,2,7,1.12,1,326 +39512,9328763,Manhattan,Chelsea,40.74566,-73.99673,Private room,138,25,0,,2,0 +39513,195691349,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94837,Entire home/apt,150,2,18,3.94,3,299 +39514,222779801,Manhattan,East Village,40.72963,-73.98662,Private room,75,1,17,2.49,2,120 +39515,230235805,Manhattan,Financial District,40.70427,-74.01533,Entire home/apt,116,3,17,2.5,1,0 +39516,9288052,Brooklyn,Clinton Hill,40.68527,-73.9657,Private room,60,7,2,0.34,2,0 +39517,599076,Brooklyn,Bushwick,40.70035,-73.92323,Private room,70,1,5,0.78,1,81 +39518,208477013,Manhattan,Harlem,40.80442,-73.94756,Entire home/apt,125,2,7,1.12,1,24 +39519,178473107,Manhattan,Harlem,40.83024,-73.94715,Private room,90,1,1,0.25,6,40 +39520,137358866,Queens,Elmhurst,40.73489,-73.88048,Private room,28,30,0,,103,63 +39521,28230496,Manhattan,Lower East Side,40.72168,-73.98686,Entire home/apt,200,5,2,0.32,1,78 +39522,72887012,Manhattan,East Village,40.722970000000004,-73.9852,Private room,90,6,2,0.31,1,23 +39523,191469946,Manhattan,East Harlem,40.7942,-73.94091,Entire home/apt,350,1,27,4.09,1,95 +39524,20279355,Brooklyn,Bedford-Stuyvesant,40.679390000000005,-73.91825,Shared room,75,1,15,3.72,1,123 +39525,20587499,Manhattan,Washington Heights,40.83701,-73.94577,Private room,65,1,13,1.99,1,0 +39526,49292750,Brooklyn,Williamsburg,40.70766,-73.94789,Private room,72,3,2,0.31,1,0 +39527,18091877,Manhattan,Upper East Side,40.78176,-73.945,Private room,120,4,20,3.17,1,31 +39528,1574687,Manhattan,Financial District,40.7058,-74.01559,Entire home/apt,180,2,3,1.14,1,5 +39529,60370951,Queens,Astoria,40.77677,-73.93521,Private room,100,3,0,,2,343 +39530,27863129,Manhattan,West Village,40.7385,-74.00014,Entire home/apt,250,2,39,6.32,1,0 +39531,105154396,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95138,Entire home/apt,160,3,22,3.28,1,110 +39532,690079,Brooklyn,East Flatbush,40.64915,-73.95147,Private room,40,25,0,,1,305 +39533,64450303,Brooklyn,Flatlands,40.62941,-73.9425,Entire home/apt,300,1,9,1.44,2,7 +39534,26028092,Queens,Richmond Hill,40.681459999999994,-73.82285999999999,Private room,66,1,30,4.52,1,131 +39535,129174905,Manhattan,Upper East Side,40.76174,-73.96066,Private room,65,15,1,0.15,1,0 +39536,37883321,Manhattan,Chelsea,40.74435,-73.99535,Entire home/apt,160,7,8,3.04,1,80 +39537,230025652,Queens,Queens Village,40.703590000000005,-73.74859000000001,Private room,38,2,14,2.71,4,6 +39538,93822547,Manhattan,Upper East Side,40.77515,-73.95173,Entire home/apt,185,2,3,1.11,1,0 +39539,230367259,Manhattan,Upper East Side,40.77861,-73.94628,Entire home/apt,200,7,0,,1,235 +39540,129328105,Manhattan,Upper East Side,40.774229999999996,-73.96561,Entire home/apt,199,2,1,0.42,1,50 +39541,4510691,Brooklyn,Williamsburg,40.70923,-73.9448,Entire home/apt,175,2,4,0.62,1,34 +39542,36732553,Queens,Astoria,40.756159999999994,-73.91657,Private room,60,15,3,0.48,3,331 +39543,192754619,Manhattan,Hell's Kitchen,40.75568,-73.99661,Private room,159,1,1,0.16,1,189 +39544,230375654,Manhattan,Upper West Side,40.78168,-73.98099,Entire home/apt,250,2,0,,1,0 +39545,230165497,Manhattan,SoHo,40.72129,-74.0019,Entire home/apt,250,30,0,,4,364 +39546,230371691,Manhattan,Lower East Side,40.719809999999995,-73.98895,Entire home/apt,432,1,20,3.35,1,325 +39547,230378560,Queens,Briarwood,40.71398,-73.81834,Entire home/apt,66,2,9,1.36,1,186 +39548,22863358,Manhattan,Washington Heights,40.84245,-73.93885999999999,Private room,80,2,1,0.71,1,29 +39549,223258125,Brooklyn,Bedford-Stuyvesant,40.67907,-73.9498,Entire home/apt,150,2,8,1.27,1,6 +39550,166084232,Brooklyn,Crown Heights,40.67606,-73.9155,Entire home/apt,185,1,17,2.48,1,48 +39551,230396622,Brooklyn,Brownsville,40.65872,-73.90951,Private room,29,4,6,0.94,1,66 +39552,72082556,Queens,Long Island City,40.73637,-73.9371,Entire home/apt,75,1,0,,1,42 +39553,228571016,Manhattan,Harlem,40.82591,-73.95144,Private room,190,2,1,0.16,2,89 +39554,106667600,Queens,East Elmhurst,40.75782,-73.8844,Private room,42,10,3,0.5,1,326 +39555,48367358,Brooklyn,Downtown Brooklyn,40.6923,-73.98298,Private room,65,30,0,,1,17 +39556,37891510,Queens,Woodhaven,40.68577,-73.85984,Private room,45,3,10,2.14,2,54 +39557,230407184,Manhattan,Hell's Kitchen,40.767070000000004,-73.98591,Private room,131,2,2,0.32,1,0 +39558,137358866,Queens,Jackson Heights,40.74878,-73.8799,Private room,24,30,0,,103,244 +39559,230418398,Manhattan,Hell's Kitchen,40.75651,-73.9976,Private room,89,2,1,0.16,1,0 +39560,52053537,Queens,Long Island City,40.753170000000004,-73.94015,Entire home/apt,200,3,0,,1,0 +39561,16305093,Brooklyn,Windsor Terrace,40.65716,-73.9755,Entire home/apt,450,4,0,,2,87 +39562,78378674,Queens,Elmhurst,40.744609999999994,-73.87334,Shared room,40,1,1,0.16,1,0 +39563,161769990,Brooklyn,Bedford-Stuyvesant,40.689640000000004,-73.9508,Private room,45,7,8,1.16,2,0 +39564,160923266,Brooklyn,Greenpoint,40.73324,-73.95101,Private room,70,5,0,,1,0 +39565,2729738,Manhattan,East Village,40.72728,-73.98255999999999,Entire home/apt,225,4,0,,1,0 +39566,3929012,Manhattan,Upper West Side,40.778240000000004,-73.98255,Private room,129,1,30,4.69,4,49 +39567,137358866,Queens,Woodside,40.74031,-73.89213000000001,Private room,33,30,3,0.7,103,236 +39568,14818535,Queens,Maspeth,40.738890000000005,-73.89706,Entire home/apt,122,2,17,2.71,1,73 +39569,3929012,Manhattan,Upper West Side,40.780120000000004,-73.98279000000001,Private room,129,1,37,5.39,4,59 +39570,36732553,Queens,Astoria,40.754909999999995,-73.9152,Private room,50,15,1,0.45,3,341 +39571,180380802,Manhattan,Midtown,40.75169,-73.97162,Entire home/apt,140,2,1,0.59,4,354 +39572,10214546,Manhattan,Harlem,40.806290000000004,-73.95478,Private room,250,1,0,,1,179 +39573,180380802,Manhattan,Midtown,40.75158,-73.97151,Entire home/apt,130,2,2,0.29,4,365 +39574,204160428,Manhattan,Hell's Kitchen,40.76036,-73.99676,Private room,180,3,29,4.58,3,126 +39575,204160428,Manhattan,Hell's Kitchen,40.75934,-73.99563,Private room,160,3,30,4.71,3,73 +39576,204160428,Manhattan,Hell's Kitchen,40.75874,-73.99605,Private room,130,3,27,4.35,3,114 +39577,2423570,Manhattan,East Harlem,40.81568,-73.93441999999999,Entire home/apt,150,30,4,1.13,1,345 +39578,54368503,Queens,Ridgewood,40.703509999999994,-73.90212,Private room,120,3,0,,1,0 +39579,230498530,Manhattan,Harlem,40.826209999999996,-73.94125,Entire home/apt,90,30,1,0.67,1,209 +39580,103726845,Manhattan,Upper West Side,40.802690000000005,-73.96459,Private room,85,1,0,,2,0 +39581,224414117,Manhattan,Hell's Kitchen,40.754670000000004,-73.99656999999999,Private room,199,1,4,0.61,30,363 +39582,159026666,Queens,Long Island City,40.74774,-73.939,Entire home/apt,199,7,0,,1,0 +39583,103726845,Manhattan,Upper West Side,40.80236,-73.96604,Private room,90,1,2,0.32,2,0 +39584,228228269,Brooklyn,Williamsburg,40.7173,-73.96159,Entire home/apt,444,1,15,2.49,1,326 +39585,163251048,Manhattan,Hell's Kitchen,40.760490000000004,-73.99781999999999,Entire home/apt,399,30,0,,8,294 +39586,228225649,Manhattan,East Village,40.725,-73.98236,Entire home/apt,349,1,8,1.88,1,352 +39587,3636827,Brooklyn,Clinton Hill,40.68246,-73.9643,Entire home/apt,195,2,2,0.31,1,44 +39588,230516915,Manhattan,Upper East Side,40.78013,-73.96030999999999,Entire home/apt,590,14,0,,1,358 +39589,921897,Manhattan,Murray Hill,40.74692,-73.97548,Private room,70,30,1,0.16,1,172 +39590,2582762,Brooklyn,Fort Greene,40.69301,-73.97128000000001,Entire home/apt,220,14,0,,1,31 +39591,3312111,Brooklyn,South Slope,40.66146,-73.98371,Entire home/apt,150,2,3,0.47,1,34 +39592,52950465,Manhattan,Midtown,40.7541,-73.97055999999999,Entire home/apt,169,30,0,,12,365 +39593,224414117,Manhattan,Hell's Kitchen,40.75506,-73.99715,Private room,199,1,1,0.15,30,365 +39594,1992020,Brooklyn,Fort Greene,40.6874,-73.97973,Entire home/apt,199,5,2,0.32,1,0 +39595,192740917,Brooklyn,Williamsburg,40.7054,-73.94239,Entire home/apt,120,7,1,0.16,1,189 +39596,230528448,Queens,Ditmars Steinway,40.776509999999995,-73.91281,Private room,40,1,3,0.48,1,0 +39597,135060128,Brooklyn,Williamsburg,40.70841,-73.95048,Private room,120,1,3,0.47,2,269 +39598,230531384,Manhattan,Hell's Kitchen,40.76291,-73.99179000000001,Entire home/apt,350,2,32,5.25,1,198 +39599,190298308,Queens,Forest Hills,40.733059999999995,-73.84904,Entire home/apt,94,3,9,1.32,1,329 +39600,18653145,Manhattan,Harlem,40.83109,-73.94714,Entire home/apt,185,7,3,0.99,1,128 +39601,41955015,Manhattan,Murray Hill,40.74719,-73.97478000000001,Entire home/apt,150,1,2,0.32,1,0 +39602,53046634,Manhattan,Hell's Kitchen,40.761559999999996,-73.99006,Entire home/apt,225,3,20,3.17,2,68 +39603,63419128,Manhattan,Stuyvesant Town,40.73284,-73.97635,Private room,120,3,2,0.32,1,0 +39604,7798275,Brooklyn,Prospect-Lefferts Gardens,40.660270000000004,-73.95376,Entire home/apt,100,25,1,0.27,1,5 +39605,4408261,Brooklyn,Bedford-Stuyvesant,40.681909999999995,-73.95812,Entire home/apt,130,3,1,0.16,1,0 +39606,4691878,Queens,East Elmhurst,40.75647,-73.89964,Private room,100,2,0,,1,363 +39607,2793924,Manhattan,Upper East Side,40.769090000000006,-73.95479,Entire home/apt,140,4,4,0.65,1,5 +39608,13126043,Manhattan,Midtown,40.743120000000005,-73.98447,Private room,89,3,1,0.16,2,26 +39609,1218437,Queens,Ditmars Steinway,40.776109999999996,-73.90818,Private room,40,20,1,1.0,1,156 +39610,88814777,Manhattan,Hell's Kitchen,40.76225,-73.99106,Entire home/apt,145,6,10,2.63,1,163 +39611,193490396,Manhattan,Roosevelt Island,40.7579,-73.95255999999999,Entire home/apt,185,2,23,3.37,1,295 +39612,11061595,Brooklyn,Williamsburg,40.70709,-73.9506,Entire home/apt,250,3,2,0.31,1,10 +39613,147256857,Brooklyn,Greenpoint,40.7258,-73.94426,Private room,120,4,0,,1,0 +39614,83490060,Bronx,Throgs Neck,40.81518,-73.82708000000001,Private room,99,1,1,0.16,1,318 +39615,137191484,Manhattan,Hell's Kitchen,40.764359999999996,-73.98779,Private room,120,1,31,4.67,5,321 +39616,230574578,Manhattan,Chelsea,40.74946,-73.99614,Private room,75,2,17,2.8,1,11 +39617,6097531,Brooklyn,Bedford-Stuyvesant,40.68462,-73.95429,Entire home/apt,180,3,1,0.24,1,158 +39618,5503926,Brooklyn,Williamsburg,40.71158,-73.96162,Entire home/apt,250,3,16,2.35,1,271 +39619,221623897,Brooklyn,Crown Heights,40.676829999999995,-73.94702,Private room,30,5,2,0.32,1,220 +39620,20780113,Brooklyn,Canarsie,40.631679999999996,-73.90895,Entire home/apt,114,2,21,4.38,1,68 +39621,204006071,Queens,Long Island City,40.74751,-73.93744000000001,Private room,45,3,4,0.68,1,0 +39622,30377766,Queens,Jackson Heights,40.75549,-73.87731,Private room,100,1,1,0.46,2,179 +39623,107434423,Manhattan,Murray Hill,40.74488,-73.97389,Entire home/apt,271,30,0,,232,60 +39624,230646296,Bronx,Concourse Village,40.83311,-73.9116,Private room,34,2,2,0.29,1,0 +39625,86078173,Brooklyn,Williamsburg,40.7077,-73.93855,Private room,85,5,2,0.32,1,25 +39626,230653775,Manhattan,Morningside Heights,40.80672,-73.96547,Entire home/apt,150,4,2,0.55,1,0 +39627,27264437,Brooklyn,Bedford-Stuyvesant,40.69534,-73.93338,Private room,50,6,1,0.18,2,0 +39628,227872371,Queens,Springfield Gardens,40.66292,-73.76711,Entire home/apt,75,1,40,6.19,2,300 +39629,111911758,Queens,Astoria,40.75796,-73.91346999999999,Private room,70,5,3,2.43,1,69 +39630,15788530,Brooklyn,Williamsburg,40.71847,-73.94509000000001,Private room,60,4,1,0.16,2,0 +39631,206025860,Queens,Forest Hills,40.722229999999996,-73.84647,Private room,37,1,1,0.16,1,249 +39632,133594005,Staten Island,St. George,40.64762,-74.08681999999999,Entire home/apt,135,3,3,1.76,1,232 +39633,12249166,Queens,Long Island City,40.74906,-73.9385,Private room,340,1,0,,1,90 +39634,23746969,Manhattan,Kips Bay,40.74175,-73.98135,Entire home/apt,300,2,5,0.78,1,193 +39635,21934258,Manhattan,Harlem,40.82263,-73.9547,Private room,65,4,8,1.7,1,0 +39636,14276413,Brooklyn,Bedford-Stuyvesant,40.69066,-73.95922,Entire home/apt,300,2,2,0.3,1,0 +39637,230683611,Manhattan,Hell's Kitchen,40.76238,-73.99259,Entire home/apt,180,2,2,0.32,1,0 +39638,69226908,Brooklyn,East Flatbush,40.636590000000005,-73.94734,Private room,40,1,15,2.37,1,90 +39639,137447960,Queens,Astoria,40.76495,-73.92529,Entire home/apt,70,18,0,,1,178 +39640,226764496,Manhattan,Upper East Side,40.765879999999996,-73.95834,Private room,80,1,32,5.33,4,27 +39641,102763353,Manhattan,Midtown,40.74248,-73.98434,Entire home/apt,160,30,1,0.16,2,0 +39642,230698955,Brooklyn,Crown Heights,40.67119,-73.93468,Private room,45,1,0,,2,0 +39643,13501779,Brooklyn,Crown Heights,40.67188,-73.95049,Entire home/apt,85,3,0,,2,0 +39644,226764496,Manhattan,Upper East Side,40.764990000000004,-73.95831,Private room,80,1,29,4.26,4,18 +39645,22920335,Brooklyn,Bedford-Stuyvesant,40.681490000000004,-73.91459,Entire home/apt,110,7,1,0.16,1,189 +39646,7985095,Manhattan,Hell's Kitchen,40.76547,-73.99032,Entire home/apt,285,2,5,1.4,3,44 +39647,230108889,Queens,Kew Gardens Hills,40.71843,-73.81266,Private room,49,4,6,0.95,2,111 +39648,93520536,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9086,Private room,60,3,9,1.43,1,20 +39649,39548500,Manhattan,Upper East Side,40.779,-73.95298000000001,Entire home/apt,300,3,4,0.65,1,0 +39650,230712429,Brooklyn,Bay Ridge,40.62611,-74.02213,Entire home/apt,90,1,0,,1,0 +39651,214678935,Brooklyn,Sunset Park,40.6465,-74.01454,Private room,55,1,14,2.2,3,174 +39652,46389451,Manhattan,West Village,40.73245,-74.00328,Entire home/apt,190,3,13,2.36,3,115 +39653,230720666,Manhattan,Financial District,40.70612,-74.01585,Private room,80,3,0,,1,133 +39654,22983583,Queens,Woodhaven,40.69545,-73.86084,Private room,30,2,8,1.76,1,0 +39655,230670970,Manhattan,Harlem,40.81573,-73.94036,Entire home/apt,195,30,2,0.62,1,239 +39656,31307082,Staten Island,Arrochar,40.58957,-74.07666,Entire home/apt,100,2,18,2.81,1,296 +39657,66913051,Brooklyn,Williamsburg,40.71792,-73.94171999999999,Entire home/apt,160,1,4,0.59,1,49 +39658,159336961,Brooklyn,Greenpoint,40.7242,-73.95125999999999,Private room,100,1,18,2.81,1,325 +39659,25573498,Manhattan,Morningside Heights,40.80511,-73.96571999999999,Entire home/apt,60,5,4,0.59,1,0 +39660,38320446,Brooklyn,Bedford-Stuyvesant,40.68295,-73.93942,Entire home/apt,150,4,0,,1,18 +39661,73618889,Brooklyn,Bushwick,40.70069,-73.9384,Private room,65,1,14,6.67,1,44 +39662,3285978,Brooklyn,Bedford-Stuyvesant,40.6999,-73.94406,Private room,50,1,3,0.46,2,0 +39663,141720257,Manhattan,Financial District,40.71074,-74.00627,Entire home/apt,150,30,0,,1,0 +39664,230807441,Manhattan,Hell's Kitchen,40.75805,-73.99292,Entire home/apt,450,4,2,0.32,1,158 +39665,37147077,Brooklyn,Greenpoint,40.73787,-73.95281,Entire home/apt,115,3,2,0.32,1,0 +39666,230192510,Brooklyn,Fort Greene,40.697379999999995,-73.97395999999999,Private room,48,30,1,1.0,25,59 +39667,227494795,Manhattan,Lower East Side,40.71955,-73.9861,Entire home/apt,499,2,15,2.27,1,297 +39668,3757699,Manhattan,Upper West Side,40.79272,-73.97069,Entire home/apt,515,20,0,,2,0 +39669,211549023,Manhattan,Midtown,40.74657,-73.98685,Entire home/apt,240,2,12,2.0,13,304 +39670,47739675,Brooklyn,Williamsburg,40.71792,-73.95312,Private room,500,28,1,0.16,1,89 +39671,230192510,Brooklyn,Fort Greene,40.696290000000005,-73.97397,Private room,48,30,1,0.48,25,58 +39672,130476089,Manhattan,Chelsea,40.74293,-73.99922,Private room,80,1,2,0.48,2,0 +39673,79946214,Brooklyn,Downtown Brooklyn,40.68887,-73.9829,Private room,109,1,16,2.53,1,66 +39674,43960739,Manhattan,Washington Heights,40.8455,-73.93987,Private room,52,1,1,0.79,2,0 +39675,67987135,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93685,Entire home/apt,139,1,8,1.36,9,134 +39676,47779382,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93854,Private room,30,16,0,,1,40 +39677,67987135,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93842,Entire home/apt,145,1,11,2.13,9,118 +39678,230801598,Brooklyn,Cypress Hills,40.684259999999995,-73.87461,Private room,80,1,10,1.51,1,32 +39679,146607158,Manhattan,Kips Bay,40.73879,-73.98135,Entire home/apt,220,2,1,0.15,1,0 +39680,4491717,Manhattan,Hell's Kitchen,40.76132,-73.99443000000001,Private room,180,3,1,0.16,1,341 +39681,88036082,Brooklyn,East Flatbush,40.64115,-73.92837,Private room,70,1,0,,2,0 +39682,230584533,Queens,Corona,40.745,-73.85927,Entire home/apt,99,1,64,9.5,1,329 +39683,4631381,Brooklyn,Park Slope,40.67801,-73.97951,Entire home/apt,220,20,0,,1,24 +39684,230868224,Queens,Richmond Hill,40.70279,-73.82576,Entire home/apt,61,2,32,4.71,1,75 +39685,11510329,Manhattan,Kips Bay,40.74103,-73.97451,Entire home/apt,180,4,2,0.56,1,4 +39686,223846870,Queens,Springfield Gardens,40.66284,-73.76961999999999,Private room,45,1,17,2.6,3,0 +39687,44628416,Manhattan,Washington Heights,40.85573,-73.93987,Entire home/apt,140,2,12,1.89,1,122 +39688,3307004,Manhattan,Harlem,40.823840000000004,-73.94776,Private room,99,4,2,0.32,1,24 +39689,229306781,Brooklyn,Crown Heights,40.674279999999996,-73.91986,Private room,70,1,2,0.3,1,73 +39690,33839663,Brooklyn,Greenpoint,40.72574,-73.93785,Private room,60,5,5,1.16,2,133 +39691,42322216,Manhattan,Financial District,40.70947,-74.01329,Entire home/apt,250,5,0,,1,0 +39692,230941034,Manhattan,Lower East Side,40.71898,-73.98347,Private room,85,2,14,2.27,1,357 +39693,104364388,Manhattan,Chelsea,40.7413,-74.00429,Entire home/apt,350,30,11,1.91,1,275 +39694,164692370,Brooklyn,Crown Heights,40.67405,-73.95264,Private room,31,14,2,0.34,1,0 +39695,196915362,Queens,Astoria,40.76804,-73.92161,Entire home/apt,190,5,1,0.16,2,55 +39696,221418152,Manhattan,Harlem,40.806020000000004,-73.95508000000001,Entire home/apt,180,1,24,3.79,1,85 +39697,230961710,Brooklyn,Williamsburg,40.714079999999996,-73.95501,Entire home/apt,60,1,37,5.66,1,234 +39698,44354001,Brooklyn,Bedford-Stuyvesant,40.69018,-73.93118,Private room,38,1,1,0.16,1,0 +39699,10672594,Queens,Long Island City,40.74827,-73.94556999999999,Entire home/apt,210,3,1,0.16,1,0 +39700,40317143,Queens,Maspeth,40.722229999999996,-73.90264,Private room,68,1,0,,2,133 +39701,11449978,Manhattan,Harlem,40.821659999999994,-73.94635,Entire home/apt,350,4,17,2.59,1,23 +39702,215116298,Manhattan,Morningside Heights,40.80449,-73.96426,Entire home/apt,80,14,0,,1,0 +39703,105221828,Brooklyn,Bedford-Stuyvesant,40.68124,-73.90796999999999,Private room,60,2,1,0.38,1,0 +39704,32874565,Brooklyn,Williamsburg,40.71763,-73.95334,Entire home/apt,125,15,1,0.16,1,285 +39705,225659661,Brooklyn,Williamsburg,40.71528,-73.95033000000001,Private room,120,2,0,,1,89 +39706,230481249,Manhattan,East Harlem,40.80239,-73.9425,Entire home/apt,155,2,18,2.73,1,123 +39707,25812202,Brooklyn,Greenpoint,40.72554,-73.94781,Private room,45,14,2,0.32,1,21 +39708,192189607,Brooklyn,Bushwick,40.7037,-73.92659,Private room,60,4,0,,2,22 +39709,7544635,Manhattan,East Village,40.727470000000004,-73.98409000000001,Private room,175,3,0,,2,0 +39710,16089151,Queens,Queens Village,40.722190000000005,-73.73605,Entire home/apt,85,2,17,2.63,1,14 +39711,24755227,Manhattan,SoHo,40.7271,-74.00286,Entire home/apt,109,6,5,0.84,1,9 +39712,79355506,Brooklyn,Fort Hamilton,40.62113,-74.03036999999999,Entire home/apt,98,5,1,0.16,1,23 +39713,22323,Manhattan,East Village,40.723240000000004,-73.9769,Entire home/apt,400,1,2,0.3,1,0 +39714,231003106,Manhattan,Hell's Kitchen,40.76428,-73.98988,Entire home/apt,125,2,22,3.55,1,230 +39715,59051417,Manhattan,East Harlem,40.79611,-73.94906,Entire home/apt,750,3,5,0.78,6,249 +39716,231007291,Manhattan,Upper East Side,40.77382,-73.9535,Entire home/apt,160,2,6,0.95,1,11 +39717,19478720,Brooklyn,Williamsburg,40.71942,-73.95993,Entire home/apt,125,21,2,0.5,1,81 +39718,222946997,Queens,Springfield Gardens,40.68789,-73.75117,Entire home/apt,93,1,24,3.64,1,19 +39719,231015527,Brooklyn,Prospect Heights,40.68056,-73.97251,Entire home/apt,275,2,5,0.85,1,0 +39720,17139611,Manhattan,Hell's Kitchen,40.75718,-73.99807,Entire home/apt,375,3,1,0.16,1,0 +39721,50760546,Brooklyn,Williamsburg,40.70885,-73.96767,Entire home/apt,250,180,0,,31,173 +39722,231017568,Manhattan,Upper East Side,40.78415,-73.95248000000001,Entire home/apt,100,30,0,,1,99 +39723,33771081,Brooklyn,Williamsburg,40.709590000000006,-73.94651999999999,Private room,80,3,2,0.31,1,0 +39724,150424721,Manhattan,Chelsea,40.745309999999996,-73.99098000000001,Entire home/apt,299,3,1,1.0,1,155 +39725,33238800,Manhattan,Hell's Kitchen,40.765679999999996,-73.9876,Private room,100,1,35,5.59,1,82 +39726,87505316,Manhattan,Upper West Side,40.76927,-73.98477,Private room,90,3,5,0.77,1,1 +39727,16333280,Brooklyn,Prospect Heights,40.67452,-73.96618000000001,Private room,55,2,4,0.65,1,0 +39728,54501105,Manhattan,West Village,40.7328,-74.00468000000001,Entire home/apt,180,3,15,2.68,2,166 +39729,51913277,Brooklyn,Sunset Park,40.66182,-73.99805,Private room,45,2,13,4.59,1,37 +39730,226764496,Manhattan,Upper East Side,40.76574,-73.9583,Private room,80,1,5,0.74,4,2 +39731,226124574,Manhattan,Upper East Side,40.77199,-73.94929,Entire home/apt,153,2,3,0.81,1,274 +39732,169472089,Queens,Flushing,40.75974,-73.83399,Private room,80,5,0,,2,89 +39733,221934669,Manhattan,Midtown,40.74981,-73.98585,Private room,350,1,7,1.07,2,0 +39734,30214050,Brooklyn,Williamsburg,40.7131,-73.95044,Entire home/apt,125,5,1,0.16,1,0 +39735,231091048,Brooklyn,Bedford-Stuyvesant,40.689840000000004,-73.95864,Entire home/apt,600,3,1,0.16,1,66 +39736,89407287,Manhattan,Midtown,40.76421,-73.97977,Entire home/apt,1000,1,0,,1,0 +39737,173685298,Manhattan,Midtown,40.7564,-73.97242,Private room,425,1,1,0.16,11,180 +39738,41191579,Brooklyn,Crown Heights,40.66856,-73.93937,Entire home/apt,88,30,1,0.3,3,34 +39739,184641438,Queens,Sunnyside,40.74194,-73.91787,Private room,65,1,4,0.59,2,341 +39740,230257556,Manhattan,Financial District,40.70559,-74.00669,Entire home/apt,420,2,20,3.02,1,76 +39741,66807700,Manhattan,East Harlem,40.79469,-73.94351,Entire home/apt,220,2,3,0.45,3,9 +39742,138349238,Manhattan,Upper West Side,40.80146,-73.96076,Private room,1350,1,0,,1,365 +39743,213781715,Manhattan,NoHo,40.72886,-73.99139,Entire home/apt,179,1,0,,33,364 +39744,213781715,Brooklyn,Greenpoint,40.731320000000004,-73.95036,Private room,119,1,0,,33,180 +39745,213781715,Brooklyn,Greenpoint,40.73095,-73.95130999999999,Private room,89,1,0,,33,180 +39746,231123296,Brooklyn,Bedford-Stuyvesant,40.6952,-73.94412,Entire home/apt,175,2,1,0.16,1,0 +39747,53058139,Brooklyn,Crown Heights,40.6685,-73.95364000000001,Private room,100,5,0,,1,69 +39748,230503468,Manhattan,SoHo,40.726279999999996,-74.00236,Entire home/apt,380,2,12,1.89,1,0 +39749,145662625,Queens,Long Island City,40.76381,-73.93477,Private room,45,3,2,0.38,1,5 +39750,56394959,Queens,Arverne,40.58847,-73.79101999999999,Private room,300,2,3,0.47,1,133 +39751,227995389,Manhattan,East Village,40.72375,-73.98188,Entire home/apt,443,1,30,4.92,1,165 +39752,231133484,Manhattan,Harlem,40.81963,-73.93879,Private room,50,1,3,0.47,1,0 +39753,170223089,Manhattan,Midtown,40.76011,-73.97051,Entire home/apt,116,2,28,4.57,1,99 +39754,222900797,Manhattan,Upper East Side,40.762840000000004,-73.96507,Private room,119,3,32,5.22,1,239 +39755,14210435,Manhattan,Midtown,40.74733,-73.98447,Private room,180,3,0,,1,179 +39756,11286990,Manhattan,SoHo,40.72725,-74.00288,Entire home/apt,225,2,9,2.08,1,11 +39757,29854797,Bronx,Claremont Village,40.84145,-73.91027,Entire home/apt,150,3,29,4.7,1,109 +39758,231144414,Manhattan,Hell's Kitchen,40.763259999999995,-73.98581999999999,Entire home/apt,179,2,17,4.77,1,229 +39759,230517521,Queens,Ridgewood,40.69913,-73.90831,Entire home/apt,200,2,1,1.0,1,0 +39760,17259675,Brooklyn,Bushwick,40.700179999999996,-73.91573000000001,Private room,60,1,3,0.48,1,0 +39761,230009785,Manhattan,Chinatown,40.71581,-73.99056,Entire home/apt,280,2,0,,1,1 +39762,726197,Manhattan,East Village,40.7243,-73.98255,Entire home/apt,129,15,0,,1,332 +39763,231157284,Brooklyn,Windsor Terrace,40.65463,-73.97536,Entire home/apt,300,2,0,,1,35 +39764,231161473,Manhattan,Hell's Kitchen,40.76194,-73.99122,Private room,83,2,1,0.15,1,0 +39765,6151483,Manhattan,West Village,40.73693,-74.0023,Entire home/apt,300,4,8,1.28,1,21 +39766,231163395,Manhattan,Harlem,40.82206,-73.93799,Private room,1000,30,0,,1,90 +39767,17875227,Manhattan,Upper West Side,40.79977,-73.96198000000001,Private room,55,5,4,0.59,1,3 +39768,34119511,Brooklyn,Bedford-Stuyvesant,40.69406,-73.93321,Private room,30,2,1,0.15,1,0 +39769,219517861,Manhattan,Murray Hill,40.74792,-73.97614,Entire home/apt,262,2,8,1.86,327,91 +39770,219517861,Manhattan,Murray Hill,40.74771,-73.97528,Entire home/apt,255,2,14,2.59,327,81 +39771,219517861,Manhattan,Murray Hill,40.74845,-73.97446,Entire home/apt,245,2,4,0.94,327,137 +39772,219517861,Manhattan,Hell's Kitchen,40.76188,-73.99616,Entire home/apt,185,29,1,1.0,327,281 +39773,219517861,Manhattan,Hell's Kitchen,40.76037,-73.99744,Entire home/apt,185,29,1,1.0,327,332 +39774,219517861,Manhattan,Murray Hill,40.74884,-73.97589,Entire home/apt,252,2,7,1.19,327,117 +39775,219517861,Manhattan,Hell's Kitchen,40.76079,-73.99807,Entire home/apt,189,29,1,0.94,327,325 +39776,219517861,Manhattan,Murray Hill,40.74896,-73.97471999999999,Entire home/apt,228,2,5,0.91,327,111 +39777,219517861,Manhattan,Murray Hill,40.747370000000004,-73.9742,Entire home/apt,240,2,4,1.06,327,99 +39778,219517861,Manhattan,Murray Hill,40.748459999999994,-73.97448,Entire home/apt,241,2,4,1.3,327,130 +39779,219517861,Manhattan,Murray Hill,40.748709999999996,-73.97446,Entire home/apt,265,2,5,1.21,327,83 +39780,219517861,Manhattan,Murray Hill,40.748459999999994,-73.97610999999999,Entire home/apt,263,2,5,0.99,327,62 +39781,219517861,Manhattan,Murray Hill,40.74909,-73.97585,Entire home/apt,243,2,6,1.09,327,153 +39782,219517861,Manhattan,Murray Hill,40.74845,-73.97458,Entire home/apt,254,2,1,0.34,327,159 +39783,222654299,Queens,Elmhurst,40.74096,-73.87937,Private room,35,3,4,0.76,1,310 +39784,6857284,Brooklyn,Prospect Heights,40.6805,-73.97376,Private room,45,2,3,0.49,1,0 +39785,2242911,Brooklyn,Prospect-Lefferts Gardens,40.659279999999995,-73.95430999999999,Entire home/apt,200,30,0,,1,0 +39786,231186389,Brooklyn,Flatbush,40.633790000000005,-73.96246,Private room,40,53,0,,1,90 +39787,38013805,Manhattan,Upper West Side,40.79737,-73.96217,Entire home/apt,180,3,0,,1,4 +39788,70143818,Brooklyn,Williamsburg,40.7194,-73.96374,Private room,80,3,4,0.63,1,280 +39789,88774551,Manhattan,Morningside Heights,40.81325,-73.96122,Entire home/apt,80,3,1,0.15,1,0 +39790,6586697,Queens,Astoria,40.76702,-73.90945,Private room,60,2,1,0.16,3,51 +39791,129324501,Brooklyn,Fort Greene,40.68908,-73.97309,Entire home/apt,115,2,1,1.0,1,16 +39792,71867363,Manhattan,Upper East Side,40.77349,-73.95658,Entire home/apt,235,3,7,1.14,1,0 +39793,866089,Manhattan,Little Italy,40.719429999999996,-73.99712,Private room,150,5,1,0.16,3,0 +39794,65775049,Brooklyn,Clinton Hill,40.68873,-73.96133,Private room,100,5,1,0.15,2,6 +39795,732460,Brooklyn,Williamsburg,40.71004,-73.96781,Entire home/apt,120,29,0,,7,0 +39796,231141701,Manhattan,Midtown,40.7506,-73.98881999999999,Entire home/apt,199,1,5,1.43,1,0 +39797,6983558,Manhattan,Roosevelt Island,40.76358,-73.94761,Private room,150,2,14,2.25,1,7 +39798,77825548,Brooklyn,Williamsburg,40.703790000000005,-73.94329,Private room,100,1,1,0.16,1,0 +39799,221591996,Manhattan,Hell's Kitchen,40.76732,-73.98482,Private room,89,5,2,0.32,1,0 +39800,69713712,Bronx,Hunts Point,40.81389,-73.88914,Private room,70,2,1,0.16,1,342 +39801,231212364,Brooklyn,Bensonhurst,40.6065,-73.99916999999999,Entire home/apt,113,3,13,2.07,2,118 +39802,76388052,Manhattan,Harlem,40.822109999999995,-73.93887,Entire home/apt,85,4,0,,1,3 +39803,231216524,Manhattan,Hell's Kitchen,40.7656,-73.98822,Shared room,80,1,18,2.67,5,48 +39804,19902999,Manhattan,Midtown,40.75914,-73.9798,Entire home/apt,150,1,1,0.16,1,0 +39805,1532337,Bronx,Van Nest,40.84047,-73.87127,Shared room,20,14,1,0.48,4,139 +39806,208367810,Brooklyn,Borough Park,40.63987,-73.99578000000001,Shared room,40,3,2,0.55,4,50 +39807,1121064,Manhattan,Lower East Side,40.71909,-73.99343,Entire home/apt,499,1,18,2.83,1,356 +39808,193626078,Bronx,Williamsbridge,40.87701,-73.86282,Entire home/apt,200,1,34,5.13,3,347 +39809,4333342,Manhattan,East Village,40.72712,-73.97803,Private room,75,1,15,2.88,2,0 +39810,193626078,Bronx,Belmont,40.85222,-73.89277,Entire home/apt,299,1,10,1.52,3,322 +39811,133802988,Queens,Ridgewood,40.70482,-73.90342,Shared room,40,30,0,,6,365 +39812,133802988,Queens,Ridgewood,40.70487,-73.90354,Private room,57,30,0,,6,365 +39813,195418702,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93566,Entire home/apt,450,3,0,,1,357 +39814,26556695,Manhattan,Midtown,40.76042,-73.97504,Entire home/apt,1075,1,4,0.61,6,365 +39815,231272145,Brooklyn,Bedford-Stuyvesant,40.682140000000004,-73.92159000000001,Private room,55,1,1,0.16,2,0 +39816,17706542,Brooklyn,Bushwick,40.6919,-73.90626,Shared room,32,30,0,,6,342 +39817,16105313,Manhattan,Midtown,40.74484,-73.98355,Entire home/apt,150,20,0,,2,157 +39818,85165113,Brooklyn,Bedford-Stuyvesant,40.68358,-73.91775,Entire home/apt,50,3,11,1.69,2,26 +39819,17706542,Brooklyn,Bushwick,40.69101,-73.9066,Shared room,32,30,0,,6,330 +39820,37728210,Brooklyn,Bedford-Stuyvesant,40.68805,-73.92599,Private room,175,2,0,,1,83 +39821,17706542,Brooklyn,Bushwick,40.69102,-73.90525,Shared room,40,30,0,,6,365 +39822,17706542,Brooklyn,Bushwick,40.69028,-73.90563,Shared room,40,30,0,,6,365 +39823,17706542,Brooklyn,Bushwick,40.69096,-73.90528,Private room,55,30,0,,6,365 +39824,2139368,Manhattan,East Village,40.7289,-73.98091,Entire home/apt,175,5,1,0.16,1,0 +39825,231298987,Manhattan,Lower East Side,40.7189,-73.98599,Entire home/apt,200,4,1,0.26,1,0 +39826,90230216,Manhattan,Lower East Side,40.71966,-73.98184,Entire home/apt,102,2,2,0.3,1,0 +39827,197190247,Manhattan,Hell's Kitchen,40.76389,-73.98671,Shared room,99,1,7,1.04,7,33 +39828,231303544,Queens,Astoria,40.76551,-73.92904,Entire home/apt,200,2,23,3.5,1,265 +39829,134741341,Queens,Astoria,40.775220000000004,-73.93014000000001,Private room,55,7,2,0.33,2,0 +39830,12012671,Brooklyn,Bedford-Stuyvesant,40.69266,-73.96046,Private room,65,5,1,0.15,1,0 +39831,116742660,Queens,Astoria,40.768370000000004,-73.92007,Entire home/apt,140,4,3,0.48,1,101 +39832,87859431,Brooklyn,Park Slope,40.68087,-73.97870999999999,Entire home/apt,100,2,2,0.31,1,1 +39833,96049478,Manhattan,NoHo,40.726040000000005,-73.99342,Entire home/apt,550,7,4,1.38,1,14 +39834,231322933,Manhattan,Hell's Kitchen,40.75605,-73.99710999999999,Entire home/apt,134,1,33,5.08,1,20 +39835,231267860,Manhattan,Harlem,40.80798,-73.95544,Private room,150,2,12,4.04,1,184 +39836,25612580,Brooklyn,Williamsburg,40.707209999999996,-73.93843000000001,Entire home/apt,105,2,14,3.96,1,144 +39837,14819229,Brooklyn,Williamsburg,40.71332,-73.95591,Private room,75,4,1,0.53,1,47 +39838,231327254,Manhattan,Greenwich Village,40.72699,-73.99933,Entire home/apt,250,3,22,3.53,1,244 +39839,17413870,Manhattan,East Village,40.72103,-73.9804,Entire home/apt,295,3,5,0.8,1,140 +39840,32581689,Brooklyn,Sunset Park,40.63818,-74.01918,Private room,32,3,1,0.16,1,0 +39841,53911974,Brooklyn,Bushwick,40.69951,-73.91351999999999,Private room,35,30,1,0.77,1,0 +39842,21154516,Manhattan,Upper East Side,40.77608,-73.94665,Entire home/apt,180,2,15,3.06,1,57 +39843,36213174,Brooklyn,Williamsburg,40.70786,-73.95022,Private room,70,5,1,0.16,1,0 +39844,86534046,Manhattan,Upper East Side,40.78228,-73.94715,Entire home/apt,130,1,4,0.63,1,0 +39845,3737055,Manhattan,Washington Heights,40.844570000000004,-73.94065,Private room,60,1,34,5.34,1,66 +39846,30223355,Manhattan,Financial District,40.70706,-74.00990999999999,Private room,3000,3,0,,1,23 +39847,231352789,Staten Island,Stapleton,40.634479999999996,-74.07836999999999,Private room,85,2,26,3.92,3,305 +39848,231216524,Manhattan,Hell's Kitchen,40.76481,-73.98724,Shared room,80,1,19,2.82,5,52 +39849,231216524,Manhattan,Hell's Kitchen,40.763329999999996,-73.98806,Shared room,80,1,39,5.82,5,22 +39850,79472397,Manhattan,Hell's Kitchen,40.75878,-73.99011,Entire home/apt,220,5,7,1.53,1,22 +39851,231216524,Manhattan,Hell's Kitchen,40.76546,-73.98711999999999,Shared room,80,1,24,3.58,5,46 +39852,16026189,Manhattan,Upper East Side,40.77581,-73.95071999999999,Private room,120,2,7,1.11,2,66 +39853,14100888,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95442,Entire home/apt,200,2,15,2.3,1,0 +39854,231370569,Brooklyn,Bedford-Stuyvesant,40.69007,-73.94326,Private room,40,7,13,2.39,1,93 +39855,213069141,Brooklyn,Williamsburg,40.7033,-73.93583000000001,Private room,60,2,1,1.0,1,210 +39856,23828476,Bronx,Allerton,40.86437,-73.86046999999999,Private room,80,3,4,0.6,1,155 +39857,164886138,Manhattan,Harlem,40.813990000000004,-73.95229,Private room,69,2,0,,11,365 +39858,30770117,Brooklyn,Flatbush,40.651140000000005,-73.96333,Entire home/apt,160,3,0,,1,0 +39859,6575362,Manhattan,East Village,40.72918,-73.98154,Entire home/apt,180,1,0,,1,188 +39860,10994664,Brooklyn,Bushwick,40.69078,-73.90504,Shared room,32,30,0,,8,365 +39861,205031545,Manhattan,Midtown,40.75393,-73.96646,Entire home/apt,956,4,0,,49,124 +39862,10994664,Brooklyn,Bushwick,40.6915,-73.90623000000001,Shared room,32,30,0,,8,355 +39863,10994664,Brooklyn,Bushwick,40.692409999999995,-73.90692,Shared room,40,30,0,,8,276 +39864,10994664,Brooklyn,Bushwick,40.69213,-73.90548000000001,Shared room,40,30,0,,8,365 +39865,17450152,Manhattan,Hell's Kitchen,40.76356,-73.98956,Entire home/apt,230,1,17,4.21,5,282 +39866,10994664,Brooklyn,Bushwick,40.6905,-73.90621999999999,Private room,55,30,0,,8,340 +39867,2279677,Manhattan,Harlem,40.80709,-73.95363,Private room,99,2,17,2.54,1,43 +39868,22010249,Brooklyn,Bushwick,40.691140000000004,-73.91158,Private room,70,3,15,2.32,2,137 +39869,231456842,Manhattan,Hell's Kitchen,40.761109999999995,-73.99461,Entire home/apt,139,2,5,0.79,1,10 +39870,106396058,Manhattan,Upper East Side,40.76607,-73.96165,Entire home/apt,135,25,1,0.15,1,0 +39871,900055,Brooklyn,Williamsburg,40.70917,-73.9658,Entire home/apt,125,3,0,,1,0 +39872,28720717,Manhattan,East Village,40.722879999999996,-73.98344,Entire home/apt,350,3,2,0.38,2,342 +39873,41511227,Brooklyn,Gowanus,40.66744,-73.99254,Entire home/apt,99,2,1,0.18,1,0 +39874,17981316,Manhattan,Civic Center,40.71324,-73.99880999999999,Entire home/apt,410,3,0,,1,18 +39875,231474021,Manhattan,East Harlem,40.787240000000004,-73.9494,Private room,65,365,1,0.57,1,0 +39876,207078295,Queens,Ozone Park,40.667359999999995,-73.83457,Private room,60,1,0,,1,364 +39877,228231975,Brooklyn,Williamsburg,40.71733,-73.96145,Entire home/apt,450,1,12,2.79,1,334 +39878,29301222,Brooklyn,Crown Heights,40.67005,-73.93276,Private room,33,29,0,,1,0 +39879,35253342,Brooklyn,Bay Ridge,40.63284,-74.02271999999999,Entire home/apt,120,9,1,0.6,3,3 +39880,111091786,Brooklyn,East Flatbush,40.6499,-73.91499,Private room,60,3,2,0.31,1,189 +39881,38609581,Brooklyn,Prospect Heights,40.67888,-73.97077,Private room,130,3,1,0.16,2,0 +39882,187487947,Brooklyn,Greenpoint,40.73344,-73.95653,Entire home/apt,100,1,26,4.67,6,0 +39883,43930499,Queens,Elmhurst,40.7455,-73.89103,Private room,75,1,14,5.38,2,256 +39884,231503052,Brooklyn,Sheepshead Bay,40.6001,-73.94974,Entire home/apt,199,3,16,2.57,1,129 +39885,231515893,Manhattan,SoHo,40.7274,-74.0026,Entire home/apt,183,2,35,5.36,1,294 +39886,231192888,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94498,Private room,35,2,21,3.33,1,100 +39887,96379433,Brooklyn,Sunset Park,40.659240000000004,-73.99685,Shared room,22,1,5,0.81,2,0 +39888,274296,Brooklyn,Windsor Terrace,40.65554,-73.97932,Entire home/apt,104,3,30,4.95,1,43 +39889,16145840,Manhattan,East Harlem,40.79745,-73.93834,Entire home/apt,100,2,1,0.18,2,0 +39890,200239515,Queens,Woodside,40.74288,-73.89488,Private room,40,30,0,,15,22 +39891,129124146,Queens,Elmhurst,40.733990000000006,-73.87351,Entire home/apt,150,3,2,0.78,3,107 +39892,26556695,Manhattan,Midtown,40.7608,-73.97391,Entire home/apt,820,1,1,1.0,6,365 +39893,42676520,Manhattan,Harlem,40.8072,-73.94747,Private room,69,1,61,9.29,2,8 +39894,231459188,Bronx,Fieldston,40.88796,-73.90473,Private room,49,1,3,0.45,1,0 +39895,139479838,Manhattan,Chelsea,40.7505,-73.99608,Entire home/apt,205,4,17,3.4,1,44 +39896,1602948,Manhattan,Chinatown,40.71513,-73.99791,Entire home/apt,91,5,2,0.33,1,1 +39897,188230441,Queens,Flushing,40.75342,-73.83164000000001,Private room,90,1,27,4.09,1,29 +39898,107434423,Manhattan,Chelsea,40.74228,-73.99488000000001,Entire home/apt,306,30,0,,232,343 +39899,97843035,Brooklyn,Bedford-Stuyvesant,40.69209,-73.95868,Entire home/apt,300,3,0,,1,364 +39900,53243644,Brooklyn,Bedford-Stuyvesant,40.69255,-73.93915,Private room,45,1,6,0.97,2,3 +39901,8525142,Manhattan,East Village,40.72391,-73.97698000000001,Entire home/apt,520,3,7,1.14,1,80 +39902,231628393,Queens,Flushing,40.73129,-73.80416,Entire home/apt,58,2,19,2.95,1,57 +39903,19948445,Brooklyn,Williamsburg,40.711729999999996,-73.96486999999999,Entire home/apt,220,5,0,,1,89 +39904,231648163,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91775,Private room,80,2,0,,1,365 +39905,9891348,Manhattan,Kips Bay,40.74098,-73.98331,Entire home/apt,130,2,11,1.76,1,4 +39906,227353438,Queens,Astoria,40.76412,-73.92055,Private room,70,2,1,0.27,1,0 +39907,88221919,Brooklyn,Williamsburg,40.70326,-73.9336,Private room,40,2,5,1.3,1,0 +39908,231663345,Manhattan,Nolita,40.72316,-73.99577,Private room,399,3,7,1.57,1,246 +39909,41059169,Brooklyn,Williamsburg,40.71159,-73.96318000000001,Private room,118,2,4,0.67,3,112 +39910,231667071,Manhattan,Harlem,40.81734,-73.95428000000001,Private room,100,7,0,,1,365 +39911,28875304,Brooklyn,Bushwick,40.68991,-73.91349,Private room,37,2,8,1.25,2,1 +39912,26556695,Manhattan,Midtown,40.76024,-73.97483000000001,Entire home/apt,1999,1,0,,6,365 +39913,231675945,Manhattan,West Village,40.73236,-74.00213000000001,Entire home/apt,370,3,20,3.02,1,155 +39914,231681941,Bronx,West Farms,40.839420000000004,-73.87518,Entire home/apt,165,2,4,0.63,1,310 +39915,152386567,Manhattan,Lower East Side,40.72173,-73.9918,Private room,125,1,4,0.79,2,165 +39916,231272145,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92229,Private room,105,1,0,,2,0 +39917,90818631,Manhattan,Hell's Kitchen,40.75943,-74.00018,Private room,99,3,6,1.02,1,5 +39918,222886357,Queens,Sunnyside,40.737109999999994,-73.91955,Private room,35,1,37,5.84,2,0 +39919,98522037,Brooklyn,Sunset Park,40.64929,-74.00421999999999,Entire home/apt,100,2,5,0.82,1,0 +39920,49909186,Manhattan,Chinatown,40.71687,-73.99074,Private room,150,4,12,1.89,2,72 +39921,108810117,Brooklyn,Fort Greene,40.689409999999995,-73.98098,Entire home/apt,175,3,4,0.63,1,9 +39922,231719679,Brooklyn,East Flatbush,40.638459999999995,-73.92891999999999,Entire home/apt,75,1,27,4.26,1,185 +39923,87833104,Queens,Sunnyside,40.7426,-73.92318,Entire home/apt,85,4,3,0.56,1,12 +39924,184670155,Manhattan,Upper East Side,40.77564,-73.94551,Private room,100,1,10,1.69,2,0 +39925,5715157,Brooklyn,Clinton Hill,40.69303,-73.96195999999999,Entire home/apt,200,1,19,2.94,1,285 +39926,1532337,Bronx,Van Nest,40.841190000000005,-73.87049,Shared room,20,10,2,0.32,4,114 +39927,48325116,Brooklyn,Bushwick,40.69157,-73.91288,Entire home/apt,155,2,1,1.0,1,10 +39928,20862635,Manhattan,Hell's Kitchen,40.7685,-73.99128,Entire home/apt,400,4,17,2.73,1,0 +39929,94380772,Queens,East Elmhurst,40.76592,-73.87388,Entire home/apt,60,1,3,3.0,1,50 +39930,37986167,Manhattan,Hell's Kitchen,40.76558,-73.98787,Entire home/apt,135,3,28,4.24,2,141 +39931,3369352,Queens,Ditmars Steinway,40.775940000000006,-73.90799,Private room,55,2,0,,1,35 +39932,107434423,Manhattan,Midtown,40.751459999999994,-73.99,Entire home/apt,215,30,0,,232,2 +39933,107434423,Manhattan,Midtown,40.75313,-73.98863,Entire home/apt,227,30,0,,232,329 +39934,231831493,Queens,Elmhurst,40.73162,-73.87584,Entire home/apt,200,1,1,0.15,1,0 +39935,230527676,Brooklyn,Bushwick,40.69142,-73.92472,Private room,140,1,4,0.63,2,365 +39936,5962328,Queens,Flushing,40.75985,-73.82393,Entire home/apt,120,30,1,0.43,15,303 +39937,9770967,Manhattan,Chelsea,40.74382,-74.00463,Entire home/apt,250,30,2,0.34,1,233 +39938,15942513,Brooklyn,South Slope,40.66617,-73.98862,Private room,90,2,15,2.34,1,91 +39939,231846634,Manhattan,East Harlem,40.79022,-73.9471,Private room,100,30,0,,1,262 +39940,229142922,Brooklyn,Bedford-Stuyvesant,40.678779999999996,-73.94445999999999,Entire home/apt,205,2,0,,2,89 +39941,5909599,Queens,Ditmars Steinway,40.77776,-73.91455,Entire home/apt,200,3,1,0.5,2,11 +39942,74841734,Manhattan,Hell's Kitchen,40.76676,-73.98953,Entire home/apt,200,6,2,1.43,1,11 +39943,10415675,Manhattan,Harlem,40.82179,-73.95283,Private room,55,3,11,1.76,7,1 +39944,184641438,Queens,Sunnyside,40.74132,-73.91931,Private room,65,2,0,,2,341 +39945,10415675,Manhattan,Harlem,40.821709999999996,-73.95345999999999,Private room,55,5,7,1.09,7,154 +39946,231863607,Manhattan,East Harlem,40.807190000000006,-73.94088,Entire home/apt,250,2,10,1.54,1,0 +39947,10415675,Manhattan,Harlem,40.82343,-73.95469,Private room,50,5,4,1.11,7,237 +39948,10415675,Manhattan,Harlem,40.8222,-73.95416,Private room,58,5,2,0.33,7,314 +39949,190124793,Queens,Long Island City,40.747820000000004,-73.93836999999999,Private room,56,13,1,0.15,1,12 +39950,10415675,Manhattan,Harlem,40.82177,-73.95472,Private room,55,4,13,2.29,7,299 +39951,81534306,Manhattan,Washington Heights,40.85257,-73.94161,Entire home/apt,160,2,1,0.16,2,0 +39952,30600933,Manhattan,Harlem,40.79931,-73.95238,Entire home/apt,149,1,15,2.43,1,35 +39953,230025652,Queens,St. Albans,40.705220000000004,-73.75063,Private room,35,2,11,1.72,4,3 +39954,8822878,Brooklyn,Windsor Terrace,40.653290000000005,-73.97986999999999,Entire home/apt,250,2,1,1.0,1,84 +39955,229142922,Brooklyn,Bedford-Stuyvesant,40.68046,-73.94277,Private room,175,2,1,0.2,2,89 +39956,190389545,Queens,Long Island City,40.75376,-73.94100999999999,Private room,55,3,16,2.42,2,3 +39957,231929970,Brooklyn,Bedford-Stuyvesant,40.680040000000005,-73.94083,Private room,55,1,1,0.16,1,0 +39958,82735692,Brooklyn,Bedford-Stuyvesant,40.68858,-73.94534,Entire home/apt,100,2,20,3.16,1,273 +39959,3363749,Brooklyn,Williamsburg,40.70877,-73.94171,Private room,89,6,8,1.98,3,260 +39960,8033432,Manhattan,Hell's Kitchen,40.76769,-73.98649,Private room,140,2,1,0.33,4,39 +39961,163035332,Manhattan,SoHo,40.72267,-74.00334000000001,Entire home/apt,649,2,17,2.59,3,281 +39962,1532337,Bronx,Van Nest,40.84087,-73.8699,Shared room,20,10,3,0.68,4,25 +39963,3363749,Brooklyn,Williamsburg,40.70646,-73.94169000000001,Entire home/apt,189,6,2,0.45,3,242 +39964,231959634,Brooklyn,Bushwick,40.69488,-73.93115,Private room,55,1,23,3.77,2,28 +39965,34124858,Brooklyn,Bushwick,40.69975,-73.93865,Private room,60,5,0,,1,0 +39966,93317715,Queens,Ridgewood,40.7067,-73.91458,Private room,65,4,1,0.41,1,0 +39967,28142165,Manhattan,Harlem,40.82331,-73.95454000000001,Private room,89,2,6,0.95,2,170 +39968,231971512,Manhattan,Chelsea,40.7463,-73.9911,Private room,68,1,0,,1,0 +39969,28142165,Manhattan,Harlem,40.82219,-73.95381,Private room,89,2,10,2.01,2,127 +39970,61586251,Manhattan,Nolita,40.721990000000005,-73.99534,Entire home/apt,165,1,3,0.46,1,12 +39971,2623620,Manhattan,Greenwich Village,40.72956,-73.9986,Entire home/apt,142,3,3,0.45,1,0 +39972,69446035,Manhattan,Midtown,40.75094,-73.98100000000001,Entire home/apt,100,1,0,,1,365 +39973,2084313,Queens,Corona,40.73729,-73.85595,Private room,46,2,4,0.63,1,0 +39974,31247820,Manhattan,Washington Heights,40.83845,-73.9412,Private room,75,1,1,0.16,1,0 +39975,60127679,Brooklyn,Bedford-Stuyvesant,40.683679999999995,-73.92623,Private room,63,1,63,9.64,2,47 +39976,6675227,Brooklyn,Sunset Park,40.65035,-74.00974000000001,Private room,75,2,2,0.32,1,16 +39977,1407079,Brooklyn,Bushwick,40.69936,-73.91729000000001,Entire home/apt,120,30,0,,1,0 +39978,224815152,Manhattan,Hell's Kitchen,40.75589,-73.99642,Private room,249,1,13,2.13,8,81 +39979,13143585,Brooklyn,Bushwick,40.69577,-73.92612,Entire home/apt,250,2,1,0.16,2,0 +39980,57090879,Brooklyn,Crown Heights,40.66527,-73.95729,Private room,60,1,1,0.16,1,0 +39981,20287808,Brooklyn,Bedford-Stuyvesant,40.69497,-73.94978,Entire home/apt,69,30,0,,1,0 +39982,208367810,Brooklyn,Borough Park,40.63892,-73.9974,Shared room,35,2,1,0.16,4,87 +39983,23662073,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.95135,Entire home/apt,70,7,0,,1,14 +39984,26992810,Brooklyn,Bushwick,40.69832,-73.93544,Entire home/apt,100,3,12,1.93,1,12 +39985,118029044,Brooklyn,Borough Park,40.61019,-73.97343000000001,Entire home/apt,200,3,0,,2,325 +39986,227919091,Queens,Jamaica,40.67546,-73.7974,Entire home/apt,65,2,27,4.4,1,182 +39987,231468237,Manhattan,Hell's Kitchen,40.76102,-73.98874,Entire home/apt,399,5,21,3.44,1,118 +39988,201718939,Brooklyn,Greenpoint,40.732009999999995,-73.95699,Private room,120,5,0,,1,77 +39989,103630226,Brooklyn,Sunset Park,40.64663,-73.9987,Private room,120,7,0,,1,362 +39990,90687626,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92145,Entire home/apt,120,7,1,1.0,1,68 +39991,6367348,Manhattan,Harlem,40.80242,-73.94561999999999,Shared room,60,1,0,,1,7 +39992,31044879,Queens,Sunnyside,40.73718,-73.9209,Private room,60,3,8,1.27,2,0 +39993,230527676,Brooklyn,Bushwick,40.69233,-73.92636,Private room,100,7,1,0.16,2,365 +39994,60658041,Manhattan,Upper East Side,40.770179999999996,-73.95501999999999,Private room,125,3,2,0.3,1,0 +39995,10803693,Manhattan,Greenwich Village,40.728359999999995,-73.99953000000001,Private room,90,7,3,0.94,1,88 +39996,146675319,Bronx,Fordham,40.852140000000006,-73.90294,Entire home/apt,100,2,12,2.98,3,20 +39997,155691570,Queens,East Elmhurst,40.76406,-73.87312,Private room,35,1,65,10.05,5,85 +39998,5576749,Brooklyn,Greenpoint,40.73752,-73.9535,Private room,75,2,9,1.42,1,0 +39999,110179329,Brooklyn,Bay Ridge,40.6334,-74.0212,Private room,70,1,0,,1,342 +40000,17494958,Manhattan,Upper West Side,40.77391,-73.98874,Entire home/apt,200,3,0,,3,0 +40001,232112395,Brooklyn,Crown Heights,40.67686,-73.93159,Private room,45,14,0,,1,30 +40002,191442758,Manhattan,Harlem,40.81425,-73.94549,Private room,28,4,6,1.05,1,0 +40003,16285179,Manhattan,Two Bridges,40.71302,-73.99405,Private room,85,1,6,1.67,2,42 +40004,150723893,Manhattan,Midtown,40.75318,-73.98649,Entire home/apt,300,3,0,,1,0 +40005,227413647,Queens,Jackson Heights,40.74888,-73.87708,Private room,50,2,29,4.73,1,16 +40006,232152341,Queens,St. Albans,40.69278,-73.76191999999999,Entire home/apt,80,2,11,2.31,1,313 +40007,113805886,Manhattan,Upper East Side,40.778929999999995,-73.95221,Entire home/apt,350,31,1,0.34,33,342 +40008,228571016,Manhattan,Harlem,40.82584,-73.95024000000001,Private room,295,1,2,0.76,2,89 +40009,50364039,Brooklyn,Williamsburg,40.71477,-73.96122,Entire home/apt,130,2,25,3.99,3,261 +40010,3722715,Brooklyn,Bedford-Stuyvesant,40.69162,-73.95435,Private room,80,2,9,1.48,2,0 +40011,232169947,Queens,Long Island City,40.74779,-73.9382,Private room,60,2,0,,1,0 +40012,163603458,Queens,Queens Village,40.72218,-73.73396,Entire home/apt,79,1,59,9.03,2,36 +40013,19630705,Queens,Long Island City,40.755759999999995,-73.93070999999999,Entire home/apt,70,3,2,0.32,1,4 +40014,1488170,Manhattan,East Village,40.72435,-73.98715,Entire home/apt,225,5,2,0.37,1,90 +40015,231465803,Manhattan,Chelsea,40.74244,-74.00274,Entire home/apt,300,2,13,2.57,1,16 +40016,105310740,Brooklyn,Bedford-Stuyvesant,40.6828,-73.95303,Entire home/apt,83,30,1,0.81,3,349 +40017,107434423,Manhattan,Tribeca,40.71696,-74.00689,Entire home/apt,373,30,0,,232,259 +40018,232241894,Manhattan,East Village,40.73033,-73.98518,Entire home/apt,100,30,0,,1,246 +40019,4399103,Manhattan,Greenwich Village,40.72785,-73.99933,Entire home/apt,310,31,18,2.87,2,7 +40020,224815152,Manhattan,Hell's Kitchen,40.756,-73.99783000000001,Private room,209,1,20,3.28,8,53 +40021,185265758,Manhattan,Harlem,40.82269,-73.94969,Entire home/apt,247,2,24,4.26,2,263 +40022,123519201,Manhattan,Inwood,40.868559999999995,-73.92623,Entire home/apt,300,1,12,2.98,2,357 +40023,231150375,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93115,Private room,80,3,11,1.95,4,160 +40024,47746841,Manhattan,Upper East Side,40.765209999999996,-73.96337,Private room,99,3,14,3.09,1,44 +40025,232251881,Queens,Springfield Gardens,40.6667,-73.78469,Private room,100,1,86,13.3,8,335 +40026,85664849,Brooklyn,Crown Heights,40.67637,-73.91351999999999,Private room,60,1,6,1.5,1,327 +40027,197767541,Queens,Bayswater,40.611270000000005,-73.76451,Private room,105,5,0,,1,180 +40028,172369331,Brooklyn,Sheepshead Bay,40.59726,-73.95951,Shared room,40,3,1,0.26,10,281 +40029,169959693,Manhattan,Chinatown,40.71744,-73.99559,Entire home/apt,189,2,10,1.59,1,35 +40030,382836,Manhattan,Hell's Kitchen,40.76186,-73.99608,Entire home/apt,300,2,5,1.06,4,173 +40031,227165735,Manhattan,Upper West Side,40.77783,-73.98433,Shared room,199,3,0,,2,95 +40032,28191131,Manhattan,Upper East Side,40.764509999999994,-73.96249,Entire home/apt,890,3,0,,1,0 +40033,12625165,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95961,Private room,42,1,0,,1,0 +40034,232283561,Bronx,East Morrisania,40.830259999999996,-73.89102,Entire home/apt,200,1,26,4.06,3,80 +40035,56403037,Queens,Ozone Park,40.68757,-73.85084,Private room,44,1,3,1.55,3,119 +40036,232251881,Queens,Jamaica,40.668,-73.78477,Private room,30,1,98,15.23,8,189 +40037,171812142,Manhattan,Midtown,40.74366,-73.98343,Entire home/apt,145,30,0,,1,151 +40038,23074465,Brooklyn,Bushwick,40.70304,-73.91694,Private room,60,1,21,3.35,3,78 +40039,216772639,Brooklyn,Borough Park,40.635290000000005,-74.00618,Private room,48,1,2,0.91,7,169 +40040,232191978,Brooklyn,Crown Heights,40.6776,-73.95447,Entire home/apt,350,3,8,2.0,1,283 +40041,2359328,Brooklyn,Bedford-Stuyvesant,40.690329999999996,-73.94848,Entire home/apt,90,5,1,0.18,1,1 +40042,144124452,Queens,Rosedale,40.65433,-73.73638000000001,Private room,35,1,3,0.47,3,46 +40043,115064362,Brooklyn,Williamsburg,40.70627,-73.95484,Entire home/apt,85,2,11,1.76,1,237 +40044,232364825,Manhattan,Chelsea,40.75286,-73.99693,Entire home/apt,250,1,1,0.16,1,0 +40045,232374986,Manhattan,East Harlem,40.78591,-73.94234,Private room,70,1,6,0.95,1,0 +40046,155691570,Queens,East Elmhurst,40.76577,-73.87131,Private room,35,1,56,9.08,5,89 +40047,202478509,Manhattan,Hell's Kitchen,40.76101,-73.99431,Entire home/apt,160,4,2,0.39,1,0 +40048,137302318,Queens,Long Island City,40.75606,-73.93234,Entire home/apt,93,1,16,2.45,2,181 +40049,155691570,Queens,East Elmhurst,40.76533,-73.87159,Private room,45,1,74,11.38,5,89 +40050,95205457,Brooklyn,Bushwick,40.694720000000004,-73.92574,Entire home/apt,249,2,6,0.98,1,0 +40051,9420910,Manhattan,Kips Bay,40.73885,-73.97938,Private room,150,1,1,0.67,2,157 +40052,229554591,Queens,Sunnyside,40.737159999999996,-73.91848,Private room,49,1,1,0.16,2,0 +40053,190389545,Queens,Long Island City,40.75408,-73.94098000000001,Private room,48,2,21,3.25,2,0 +40054,723184,Manhattan,East Village,40.7279,-73.97797,Shared room,65,2,0,,1,0 +40055,201015598,Brooklyn,Bedford-Stuyvesant,40.67862,-73.91233000000001,Shared room,27,1,4,0.63,17,89 +40056,229109330,Brooklyn,Bedford-Stuyvesant,40.68441,-73.94632,Private room,100,2,0,,1,31 +40057,201015598,Brooklyn,Bedford-Stuyvesant,40.67877,-73.91226999999999,Shared room,35,1,9,1.97,17,88 +40058,38609581,Brooklyn,Prospect Heights,40.677820000000004,-73.97076,Private room,120,2,0,,2,0 +40059,8960308,Brooklyn,East Flatbush,40.64168,-73.95026,Private room,59,2,16,4.49,1,13 +40060,232419771,Brooklyn,Midwood,40.61708,-73.95559,Entire home/apt,120,1,2,0.35,1,126 +40061,231830871,Manhattan,Harlem,40.81818,-73.95506,Shared room,50,1,27,5.51,1,98 +40062,228608906,Staten Island,Arrochar,40.587959999999995,-74.07205,Private room,65,1,8,1.37,2,362 +40063,26999875,Manhattan,West Village,40.72998,-74.00774,Entire home/apt,500,2,0,,1,0 +40064,155691570,Queens,East Elmhurst,40.75812,-73.87195,Entire home/apt,80,1,36,5.71,5,150 +40065,231150375,Brooklyn,Bedford-Stuyvesant,40.689659999999996,-73.92945999999999,Private room,65,3,5,0.95,4,161 +40066,107362574,Manhattan,Washington Heights,40.8331,-73.94006999999999,Private room,110,3,0,,1,89 +40067,93412728,Brooklyn,Williamsburg,40.716590000000004,-73.95071999999999,Private room,100,14,0,,1,0 +40068,196915362,Queens,Ditmars Steinway,40.776379999999996,-73.91308000000001,Entire home/apt,85,40,2,0.42,2,85 +40069,6096884,Manhattan,SoHo,40.71973,-74.00232,Entire home/apt,288,3,4,0.7,1,87 +40070,232509057,Staten Island,South Beach,40.591640000000005,-74.08197,Private room,55,1,10,7.14,1,363 +40071,11082255,Queens,Flushing,40.756440000000005,-73.82875,Entire home/apt,200,2,1,0.16,1,0 +40072,29102073,Brooklyn,Flatbush,40.65327,-73.96573000000001,Private room,60,5,2,0.32,1,0 +40073,91015018,Brooklyn,Bedford-Stuyvesant,40.69038,-73.95953,Private room,112,1,29,5.09,1,84 +40074,165827975,Brooklyn,Bedford-Stuyvesant,40.69032,-73.92437,Private room,59,2,0,,1,10 +40075,17968226,Brooklyn,Williamsburg,40.71881,-73.95369000000001,Entire home/apt,175,2,0,,1,24 +40076,72184742,Brooklyn,Flatbush,40.65051,-73.95586,Private room,35,4,7,1.17,1,20 +40077,212729984,Brooklyn,East New York,40.65905,-73.8976,Entire home/apt,150,1,13,7.36,1,89 +40078,632548,Brooklyn,Bushwick,40.697379999999995,-73.92432,Private room,61,2,1,0.16,1,307 +40079,229104353,Queens,Astoria,40.776070000000004,-73.92876,Private room,70,2,0,,2,310 +40080,75509095,Manhattan,East Village,40.7297,-73.97995,Private room,169,3,0,,2,14 +40081,222779801,Manhattan,East Village,40.73017,-73.98668,Entire home/apt,130,1,4,1.46,2,120 +40082,33839663,Brooklyn,Greenpoint,40.72663,-73.93819,Private room,70,7,2,0.32,2,63 +40083,2557889,Brooklyn,Bushwick,40.70267,-73.92751,Private room,55,2,16,2.57,1,2 +40084,228900167,Queens,Long Island City,40.7505,-73.94381,Entire home/apt,200,1,29,4.86,1,148 +40085,15687009,Manhattan,East Village,40.723729999999996,-73.97534,Private room,100,1,17,3.21,1,73 +40086,9786357,Brooklyn,Prospect Heights,40.68187,-73.97075,Entire home/apt,1750,2,5,1.65,1,358 +40087,232578558,Brooklyn,East Flatbush,40.64245,-73.94603000000001,Private room,48,1,1,0.38,5,0 +40088,126625033,Manhattan,Morningside Heights,40.80556,-73.96503,Private room,50,5,0,,1,0 +40089,95475481,Brooklyn,Greenpoint,40.727059999999994,-73.95439,Private room,55,7,2,0.38,1,0 +40090,35855601,Brooklyn,Kensington,40.64029,-73.97265,Private room,35,1,37,5.75,1,97 +40091,37401126,Brooklyn,East Flatbush,40.64206,-73.94059,Private room,50,2,17,3.57,4,318 +40092,8630543,Manhattan,Harlem,40.804559999999995,-73.95033000000001,Entire home/apt,115,3,15,3.21,2,116 +40093,214869202,Manhattan,Lower East Side,40.72181,-73.98946,Entire home/apt,250,1,36,6.17,1,10 +40094,9316328,Brooklyn,Bedford-Stuyvesant,40.68587,-73.95221,Private room,60,3,14,2.46,1,9 +40095,307241,Manhattan,Gramercy,40.73583,-73.98037,Entire home/apt,155,3,18,3.1,1,70 +40096,90169214,Queens,Ozone Park,40.68695,-73.84101,Entire home/apt,188,2,5,0.99,1,344 +40097,9730304,Manhattan,Hell's Kitchen,40.75982,-73.99065999999999,Entire home/apt,205,4,1,0.16,1,1 +40098,39761389,Brooklyn,Bushwick,40.699329999999996,-73.92886,Private room,185,1,14,2.22,1,37 +40099,232599387,Manhattan,Chelsea,40.7411,-73.99669,Private room,200,4,2,0.76,1,365 +40100,22997536,Manhattan,Chelsea,40.737320000000004,-73.99033,Private room,200,1,2,0.32,1,0 +40101,755603,Brooklyn,Williamsburg,40.70904,-73.94574,Entire home/apt,150,2,4,0.63,1,0 +40102,16431082,Brooklyn,Fort Greene,40.68674,-73.97618,Entire home/apt,144,3,0,,1,92 +40103,65294078,Manhattan,Hell's Kitchen,40.767920000000004,-73.98453,Entire home/apt,279,1,12,3.27,1,0 +40104,232251881,Queens,Jamaica,40.66823,-73.78374000000001,Shared room,40,1,65,10.0,8,346 +40105,21152553,Brooklyn,Bedford-Stuyvesant,40.68655,-73.92112,Entire home/apt,125,2,32,5.16,1,57 +40106,2373009,Manhattan,Hell's Kitchen,40.76416,-73.98685,Private room,100,1,1,0.22,1,0 +40107,232618610,Brooklyn,Cypress Hills,40.68392,-73.8693,Entire home/apt,195,4,7,2.47,1,136 +40108,89509928,Manhattan,Midtown,40.74329,-73.98340999999999,Private room,120,3,9,1.43,1,0 +40109,231150375,Brooklyn,Bedford-Stuyvesant,40.69088,-73.92983000000001,Private room,65,3,11,2.73,4,164 +40110,232283561,Bronx,East Morrisania,40.8296,-73.88971,Private room,125,1,9,1.46,3,80 +40111,176899233,Brooklyn,Kensington,40.63981,-73.97165,Shared room,45,1,2,0.6,2,22 +40112,99511145,Manhattan,Harlem,40.80696,-73.94931,Private room,89,6,9,1.42,2,0 +40113,32540806,Queens,Kew Gardens Hills,40.72927,-73.82469,Entire home/apt,45,3,8,1.33,1,0 +40114,172391931,Brooklyn,Bedford-Stuyvesant,40.69232,-73.9534,Entire home/apt,250,5,1,0.4,1,0 +40115,231150375,Brooklyn,Bedford-Stuyvesant,40.68931,-73.93131,Private room,65,3,9,1.79,4,126 +40116,232648305,Manhattan,Kips Bay,40.74061,-73.98063,Entire home/apt,450,1,2,0.32,1,89 +40117,182679740,Manhattan,East Village,40.72685,-73.9837,Entire home/apt,299,3,13,2.32,1,212 +40118,1390454,Brooklyn,Williamsburg,40.7208,-73.96021999999999,Entire home/apt,150,7,0,,1,249 +40119,855089,Manhattan,Lower East Side,40.71327,-73.99019,Private room,60,30,0,,1,0 +40120,1499484,Brooklyn,Red Hook,40.677459999999996,-74.01392,Entire home/apt,99,1,29,4.97,2,273 +40121,230025652,Queens,St. Albans,40.70541,-73.75036999999999,Private room,30,2,7,1.1,4,6 +40122,230025652,Queens,Queens Village,40.70533,-73.7485,Private room,38,2,13,2.06,4,6 +40123,22560728,Manhattan,Hell's Kitchen,40.761559999999996,-73.99342,Entire home/apt,150,45,1,0.48,1,56 +40124,44477551,Brooklyn,Midwood,40.62532,-73.96285999999999,Entire home/apt,250,3,0,,1,101 +40125,65747874,Brooklyn,Crown Heights,40.67317,-73.94104,Private room,80,2,14,2.68,2,78 +40126,3744921,Queens,Forest Hills,40.72186,-73.85601,Private room,70,1,4,0.65,1,134 +40127,232749708,Brooklyn,East Flatbush,40.65546,-73.92031,Entire home/apt,300,2,12,1.95,1,352 +40128,36425865,Brooklyn,Bushwick,40.69388,-73.92974,Private room,39,1,13,2.15,1,89 +40129,232767784,Manhattan,Washington Heights,40.834140000000005,-73.9438,Private room,70,3,10,3.0,1,39 +40130,232463854,Manhattan,Battery Park City,40.7077,-74.01555,Entire home/apt,300,1,3,0.76,1,363 +40131,4783028,Manhattan,Midtown,40.75334,-73.98719,Entire home/apt,250,2,4,1.12,1,0 +40132,9152003,Manhattan,Lower East Side,40.721759999999996,-73.99218,Entire home/apt,199,2,18,2.92,1,16 +40133,232778333,Brooklyn,Bensonhurst,40.61355,-73.99648,Private room,25,5,7,1.23,2,175 +40134,232784693,Manhattan,Midtown,40.75376,-73.96669,Entire home/apt,350,3,10,1.86,1,207 +40135,224204301,Bronx,Mott Haven,40.813309999999994,-73.92765,Private room,60,1,30,6.38,2,333 +40136,66084717,Brooklyn,East Flatbush,40.65079,-73.92527,Entire home/apt,125,3,15,4.25,2,227 +40137,72602373,Brooklyn,Brownsville,40.663129999999995,-73.91653000000001,Private room,81,1,4,0.97,2,36 +40138,23155661,Manhattan,Upper East Side,40.77711,-73.95059,Entire home/apt,219,6,1,0.16,1,39 +40139,39528519,Manhattan,Lower East Side,40.70991,-73.98835,Shared room,35,14,1,0.21,28,320 +40140,39528519,Manhattan,Lower East Side,40.71112,-73.98691,Shared room,32,14,0,,28,342 +40141,39528519,Manhattan,Lower East Side,40.71113,-73.98666999999999,Shared room,35,14,0,,28,321 +40142,39528519,Manhattan,Lower East Side,40.711240000000004,-73.98687,Shared room,35,14,0,,28,322 +40143,6586697,Queens,Astoria,40.769040000000004,-73.91001999999999,Private room,75,1,1,0.33,3,0 +40144,9664155,Brooklyn,Windsor Terrace,40.6518,-73.97575,Entire home/apt,52,30,1,0.3,1,0 +40145,144124452,Queens,Rosedale,40.6528,-73.73626999999999,Private room,40,1,6,0.93,3,56 +40146,81013659,Manhattan,Upper East Side,40.767559999999996,-73.95643000000001,Entire home/apt,215,2,1,0.26,2,265 +40147,23901417,Brooklyn,Carroll Gardens,40.6805,-74.00091,Entire home/apt,100,7,0,,1,0 +40148,34271675,Manhattan,Financial District,40.70763,-74.00671,Entire home/apt,110,15,2,0.8,1,0 +40149,36205885,Queens,Ridgewood,40.70632,-73.91181999999999,Entire home/apt,75,1,9,1.4,3,132 +40150,24117374,Manhattan,Morningside Heights,40.80206,-73.95949,Private room,150,3,0,,1,364 +40151,167620568,Brooklyn,Brighton Beach,40.5776,-73.96231,Shared room,30,1,1,1.0,2,364 +40152,273174,Manhattan,Tribeca,40.719429999999996,-74.00435,Entire home/apt,1000,1,2,0.4,3,38 +40153,24202039,Brooklyn,Williamsburg,40.711420000000004,-73.94819,Private room,125,1,1,0.16,1,0 +40154,60281397,Manhattan,Upper West Side,40.79721,-73.96875,Private room,99,2,6,0.93,3,49 +40155,2928701,Manhattan,East Village,40.72722,-73.98383000000001,Entire home/apt,210,7,0,,2,235 +40156,4770121,Manhattan,Harlem,40.825109999999995,-73.94031,Entire home/apt,100,7,0,,4,0 +40157,16354583,Brooklyn,Crown Heights,40.67325,-73.94666,Private room,30,5,2,0.33,1,0 +40158,43770857,Manhattan,Chelsea,40.74393,-74.00444,Entire home/apt,190,3,2,0.32,1,0 +40159,232860638,Manhattan,Morningside Heights,40.809979999999996,-73.959,Private room,110,1,1,0.19,1,0 +40160,50241946,Manhattan,Midtown,40.750170000000004,-73.97241,Private room,250,2,20,3.17,1,1 +40161,218300937,Brooklyn,Clinton Hill,40.68457,-73.96605,Private room,59,3,0,,2,179 +40162,232578558,Brooklyn,East Flatbush,40.64227,-73.94702,Private room,48,1,2,0.36,5,0 +40163,137358866,Queens,Woodside,40.74524,-73.90637,Private room,70,30,0,,103,269 +40164,29523138,Brooklyn,Williamsburg,40.70792,-73.94086999999999,Private room,48,1,23,3.71,2,0 +40165,146169974,Brooklyn,Bushwick,40.70258,-73.92614,Private room,90,3,2,0.46,1,0 +40166,44409079,Brooklyn,Williamsburg,40.71198,-73.94807,Private room,125,30,0,,1,340 +40167,67376966,Queens,Rego Park,40.73097,-73.85736,Private room,88,1,0,,3,188 +40168,232959891,Brooklyn,Bushwick,40.69547,-73.91941,Private room,60,1,4,0.63,1,220 +40169,81662935,Brooklyn,Bedford-Stuyvesant,40.683820000000004,-73.91467,Entire home/apt,97,2,19,3.0,2,340 +40170,190921808,Manhattan,Hell's Kitchen,40.755179999999996,-73.99568000000001,Private room,99,7,6,1.7,47,321 +40171,232578558,Brooklyn,East Flatbush,40.64311,-73.9472,Private room,48,1,3,0.49,5,0 +40172,232578558,Brooklyn,East Flatbush,40.64376,-73.94615999999999,Private room,48,1,5,0.8,5,0 +40173,170263842,Manhattan,Lower East Side,40.71013,-73.98822,Shared room,35,14,0,,4,334 +40174,232578558,Brooklyn,East Flatbush,40.6434,-73.94738000000001,Entire home/apt,156,2,30,4.69,5,21 +40175,175714102,Bronx,Mott Haven,40.81185,-73.91625,Entire home/apt,100,1,0,,1,173 +40176,37087545,Queens,Astoria,40.77029,-73.9197,Private room,98,30,1,0.21,1,0 +40177,232985707,Brooklyn,Windsor Terrace,40.6579,-73.98101,Entire home/apt,99,2,18,5.0,1,32 +40178,125586920,Bronx,City Island,40.857459999999996,-73.79056,Entire home/apt,175,2,14,2.66,1,79 +40179,20120009,Brooklyn,Bushwick,40.68895,-73.9062,Private room,38,1,3,0.95,6,6 +40180,45317760,Manhattan,Upper East Side,40.76939,-73.95436,Shared room,35,1,14,2.37,3,22 +40181,224126362,Brooklyn,Bedford-Stuyvesant,40.680659999999996,-73.93281,Entire home/apt,200,2,0,,1,22 +40182,4318363,Brooklyn,Williamsburg,40.714620000000004,-73.95278,Entire home/apt,180,3,2,0.41,2,24 +40183,233021124,Manhattan,Hell's Kitchen,40.76878,-73.98737,Entire home/apt,200,4,10,1.8,1,80 +40184,233025597,Brooklyn,Bedford-Stuyvesant,40.68092,-73.92045,Entire home/apt,195,2,4,1.28,1,301 +40185,226764496,Manhattan,Upper East Side,40.7658,-73.95812,Private room,50,1,37,6.42,4,22 +40186,137358866,Queens,Woodside,40.74451,-73.90782,Private room,60,30,1,0.27,103,209 +40187,233035096,Queens,Rego Park,40.7211,-73.85968000000001,Private room,45,1,4,0.96,1,97 +40188,233038917,Queens,Rego Park,40.71952,-73.85839,Private room,55,1,14,2.22,1,286 +40189,29129194,Brooklyn,Bedford-Stuyvesant,40.68483,-73.94745,Entire home/apt,90,3,17,4.15,1,91 +40190,137358866,Manhattan,Harlem,40.81221,-73.94225,Private room,47,30,1,0.41,103,228 +40191,129124146,Queens,Elmhurst,40.73457,-73.87210999999999,Shared room,65,2,1,0.16,3,365 +40192,9201921,Manhattan,East Village,40.72467,-73.98878,Entire home/apt,250,1,3,1.7,1,0 +40193,44886301,Manhattan,Upper East Side,40.77016,-73.95293000000001,Private room,120,3,0,,2,0 +40194,146275359,Queens,Springfield Gardens,40.689409999999995,-73.75116,Private room,42,2,12,2.4,3,365 +40195,233066892,Brooklyn,Sunset Park,40.659909999999996,-73.99701999999999,Private room,36,2,3,0.51,1,0 +40196,146275359,Queens,St. Albans,40.68985,-73.75265,Private room,42,4,10,1.56,3,189 +40197,107578852,Manhattan,Washington Heights,40.84258,-73.93789,Private room,100,30,9,1.42,2,365 +40198,59156312,Queens,Woodhaven,40.687709999999996,-73.86456,Private room,89,3,6,0.96,9,358 +40199,233080667,Queens,Rego Park,40.72045,-73.85781999999999,Private room,45,1,2,0.32,1,217 +40200,129022496,Brooklyn,Bedford-Stuyvesant,40.68093,-73.94922,Private room,20,10,3,0.57,2,17 +40201,1276028,Manhattan,Harlem,40.82865,-73.95069000000001,Private room,70,3,1,0.29,2,347 +40202,100698803,Manhattan,East Village,40.730709999999995,-73.98858,Entire home/apt,478,3,25,3.97,1,148 +40203,233165925,Brooklyn,East Flatbush,40.633829999999996,-73.94175,Private room,150,1,0,,1,90 +40204,224533200,Queens,Elmhurst,40.73429,-73.87236999999999,Entire home/apt,400,2,15,2.65,1,34 +40205,224815152,Manhattan,Hell's Kitchen,40.75495,-73.99825,Private room,209,1,6,1.01,8,88 +40206,45317760,Manhattan,Upper East Side,40.770959999999995,-73.95512,Shared room,30,1,23,3.67,3,13 +40207,108207108,Queens,Elmhurst,40.74272,-73.89013,Private room,200,1,0,,1,177 +40208,40231738,Brooklyn,Park Slope,40.67071,-73.9792,Entire home/apt,205,2,4,1.3,1,203 +40209,233189145,Brooklyn,Windsor Terrace,40.65224,-73.9762,Private room,85,1,18,3.16,1,168 +40210,231707114,Manhattan,Hell's Kitchen,40.76807,-73.98508000000001,Entire home/apt,365,2,19,3.37,1,28 +40211,4318363,Brooklyn,Williamsburg,40.71315,-73.95411,Private room,65,2,17,3.11,2,26 +40212,31764367,Brooklyn,Bedford-Stuyvesant,40.69019,-73.9248,Private room,60,2,2,2.0,1,151 +40213,4564774,Brooklyn,Prospect-Lefferts Gardens,40.66069,-73.94731999999999,Entire home/apt,120,2,15,2.53,1,20 +40214,1276028,Manhattan,Harlem,40.82765,-73.95012,Private room,80,3,6,1.89,2,70 +40215,231352789,Staten Island,Tompkinsville,40.634890000000006,-74.07967,Private room,69,2,25,3.95,3,280 +40216,129022496,Brooklyn,Bedford-Stuyvesant,40.67872,-73.94805,Private room,20,10,8,1.4,2,38 +40217,91845557,Brooklyn,Bedford-Stuyvesant,40.68788,-73.91935,Private room,75,1,0,,1,0 +40218,1699871,Brooklyn,Bushwick,40.68475,-73.90918,Entire home/apt,60,2,3,0.47,3,153 +40219,105355373,Manhattan,East Village,40.72293,-73.98777,Entire home/apt,143,30,0,,1,57 +40220,350088,Brooklyn,Williamsburg,40.72023,-73.9585,Private room,200,2,1,0.18,1,0 +40221,233315617,Manhattan,East Village,40.72722,-73.97698000000001,Private room,115,2,12,2.07,1,33 +40222,91578701,Brooklyn,Flatbush,40.64148,-73.95501999999999,Private room,45,1,4,0.63,2,0 +40223,217950098,Bronx,Melrose,40.81712,-73.9209,Private room,100,1,3,1.05,1,150 +40224,226664611,Queens,South Ozone Park,40.67993,-73.81249,Entire home/apt,72,3,29,4.55,2,293 +40225,50211500,Brooklyn,Flatbush,40.65075,-73.96266999999999,Entire home/apt,75,3,4,0.69,1,115 +40226,233333162,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.9514,Private room,40,2,12,2.11,1,79 +40227,1498228,Brooklyn,Bushwick,40.68759,-73.90727,Private room,79,3,7,1.11,1,69 +40228,66813379,Brooklyn,Crown Heights,40.66644,-73.94665,Entire home/apt,130,2,10,1.95,2,96 +40229,6403404,Brooklyn,Bushwick,40.69984,-73.92163000000001,Private room,40,2,14,2.28,1,54 +40230,52593429,Brooklyn,Bushwick,40.70293,-73.9265,Private room,45,2,14,2.55,2,40 +40231,44217272,Bronx,Morris Heights,40.84613,-73.91668,Entire home/apt,42,2,18,3.02,1,6 +40232,233364799,Manhattan,Roosevelt Island,40.76314,-73.94864,Entire home/apt,100,1,21,3.41,1,0 +40233,10198498,Brooklyn,Bay Ridge,40.639359999999996,-74.03164,Entire home/apt,99,5,2,2.0,1,4 +40234,222886357,Queens,Sunnyside,40.737559999999995,-73.91802,Private room,33,1,7,1.11,2,0 +40235,7535013,Brooklyn,Bushwick,40.70406,-73.92578,Private room,90,2,12,2.67,1,3 +40236,201015598,Brooklyn,Bedford-Stuyvesant,40.678470000000004,-73.91244,Shared room,35,1,12,1.89,17,86 +40237,233382915,Brooklyn,Bedford-Stuyvesant,40.69567,-73.95133,Entire home/apt,150,2,3,0.69,1,34 +40238,52964447,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96129,Entire home/apt,70,2,7,1.28,1,29 +40239,131782045,Queens,Long Island City,40.74946,-73.93854,Private room,60,5,0,,1,0 +40240,141524395,Staten Island,Mariners Harbor,40.63531,-74.15789000000001,Entire home/apt,130,2,8,1.41,1,174 +40241,201752118,Brooklyn,Bedford-Stuyvesant,40.69719,-73.94315,Private room,50,7,0,,1,0 +40242,233423542,Queens,Astoria,40.76681,-73.9285,Private room,75,3,0,,2,0 +40243,231959634,Brooklyn,Bushwick,40.69463,-73.92942,Private room,45,1,33,5.35,2,25 +40244,233417287,Queens,Long Island City,40.74248,-73.95674,Entire home/apt,150,2,3,0.48,1,0 +40245,233434401,Bronx,Longwood,40.82306,-73.90821,Entire home/apt,75,1,50,8.11,1,359 +40246,233436938,Queens,Rosedale,40.65267,-73.7317,Entire home/apt,70,2,14,4.72,1,105 +40247,201112506,Manhattan,Hell's Kitchen,40.76662,-73.98864,Entire home/apt,200,35,0,,1,58 +40248,81764323,Manhattan,Kips Bay,40.743840000000006,-73.97851999999999,Private room,110,2,7,1.28,1,175 +40249,15010630,Manhattan,Chelsea,40.74714,-74.00142,Entire home/apt,216,30,1,1.0,1,89 +40250,20771576,Manhattan,East Harlem,40.791579999999996,-73.95168000000001,Entire home/apt,100,4,0,,2,0 +40251,233485864,Staten Island,New Dorp Beach,40.56662,-74.10444,Private room,40,1,56,9.33,2,307 +40252,6631815,Brooklyn,Crown Heights,40.67105,-73.95451,Private room,60,2,1,0.22,1,189 +40253,2685943,Manhattan,Harlem,40.8249,-73.94585,Private room,60,1,30,5.56,1,67 +40254,106825862,Manhattan,Hell's Kitchen,40.75953,-73.99019,Private room,308,3,0,,1,37 +40255,1720151,Queens,Woodhaven,40.68923,-73.85304000000001,Entire home/apt,75,1,8,2.14,2,325 +40256,646563,Brooklyn,Clinton Hill,40.68182,-73.96013,Entire home/apt,187,1,8,1.3,2,0 +40257,47931146,Queens,Ridgewood,40.70393,-73.90850999999999,Private room,39,6,2,0.55,1,0 +40258,26216172,Manhattan,Harlem,40.81577,-73.94711,Private room,60,2,1,0.16,1,0 +40259,105584927,Brooklyn,Greenpoint,40.72173,-73.94664,Entire home/apt,75,2,8,1.3,1,0 +40260,33189255,Manhattan,East Harlem,40.80467,-73.9405,Private room,45,2,0,,1,341 +40261,67345821,Brooklyn,East Flatbush,40.64445,-73.94943,Entire home/apt,33,1,29,4.75,1,19 +40262,646563,Brooklyn,Clinton Hill,40.68162,-73.96083,Private room,75,1,3,1.7,2,0 +40263,232622663,Brooklyn,Bedford-Stuyvesant,40.684290000000004,-73.94841,Private room,39,2,9,1.45,2,0 +40264,1717520,Manhattan,East Village,40.72405,-73.9845,Entire home/apt,187,3,1,0.17,2,0 +40265,5666720,Brooklyn,Crown Heights,40.67185,-73.94524,Private room,100,3,0,,1,220 +40266,202587815,Manhattan,East Harlem,40.79132,-73.95083000000001,Private room,85,2,15,2.42,2,224 +40267,4281300,Brooklyn,Williamsburg,40.71602,-73.94189,Private room,119,1,0,,3,0 +40268,310670,Bronx,Eastchester,40.88179,-73.83455,Private room,75,2,1,0.37,13,365 +40269,107930075,Queens,Ozone Park,40.68436,-73.84213000000001,Private room,50,1,1,0.58,2,89 +40270,233559664,Manhattan,Harlem,40.82294,-73.94453,Entire home/apt,150,3,15,2.9,1,7 +40271,46412380,Manhattan,Chinatown,40.71685,-73.99074,Private room,72,1,43,7.13,1,15 +40272,137017288,Queens,Jamaica,40.68574,-73.79008,Private room,50,1,1,0.2,2,36 +40273,137017288,Queens,Jamaica,40.68551,-73.79128,Private room,59,1,3,0.57,2,37 +40274,178213591,Manhattan,Financial District,40.707770000000004,-74.00676,Entire home/apt,125,10,8,1.3,1,270 +40275,203981093,Brooklyn,Bushwick,40.68712,-73.91535999999999,Entire home/apt,100,2,12,2.55,1,17 +40276,76901881,Manhattan,Upper West Side,40.78501,-73.97579,Entire home/apt,100,1,32,5.16,1,0 +40277,40822420,Manhattan,East Harlem,40.789809999999996,-73.942,Entire home/apt,160,5,14,3.04,1,205 +40278,107930075,Queens,Woodhaven,40.69034,-73.84611,Private room,50,3,0,,2,178 +40279,9270510,Brooklyn,Flatbush,40.64689,-73.95862,Private room,45,1,7,1.46,1,34 +40280,127965755,Manhattan,West Village,40.73251,-74.00191,Private room,90,6,7,1.41,1,76 +40281,232622663,Brooklyn,Bedford-Stuyvesant,40.68412,-73.9501,Private room,39,2,3,0.48,2,0 +40282,233660209,Brooklyn,Midwood,40.625679999999996,-73.94708,Private room,60,2,0,,1,0 +40283,228224011,Brooklyn,Williamsburg,40.71359,-73.95574,Entire home/apt,251,1,17,2.91,1,340 +40284,233665357,Bronx,Pelham Gardens,40.86723,-73.84285,Entire home/apt,67,7,2,0.38,1,172 +40285,233422217,Manhattan,Harlem,40.82575,-73.95177,Private room,92,2,0,,2,346 +40286,115136074,Queens,Springfield Gardens,40.68996,-73.74882,Private room,147,2,6,1.01,3,85 +40287,23069554,Manhattan,Upper East Side,40.76765,-73.95891999999999,Entire home/apt,115,3,9,1.6,1,19 +40288,230465121,Brooklyn,East Flatbush,40.65615,-73.91619,Entire home/apt,130,1,9,1.65,1,189 +40289,2235105,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93456,Entire home/apt,209,3,0,,1,0 +40290,22507236,Brooklyn,Bushwick,40.698809999999995,-73.93129,Private room,55,10,0,,1,0 +40291,1459187,Brooklyn,Clinton Hill,40.689609999999995,-73.96839,Entire home/apt,125,14,0,,1,0 +40292,5592622,Queens,Astoria,40.75731,-73.91489,Private room,65,1,22,4.93,5,119 +40293,5592622,Queens,Astoria,40.756,-73.91386,Private room,55,1,23,4.63,5,100 +40294,164228532,Manhattan,East Village,40.731359999999995,-73.98659,Private room,68,4,0,,2,2 +40295,34556469,Brooklyn,Gravesend,40.606629999999996,-73.97638,Private room,50,1,0,,2,0 +40296,53298603,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94755,Private room,55,30,2,0.48,1,0 +40297,232251881,Queens,Jamaica,40.66793,-73.78452,Private room,67,1,95,15.32,8,145 +40298,233834659,Queens,Astoria,40.76976,-73.92627,Private room,50,2,18,5.14,1,24 +40299,303939,Staten Island,Tompkinsville,40.63584,-74.08542,Private room,35,2,12,2.02,6,299 +40300,77657991,Manhattan,Hell's Kitchen,40.761379999999996,-73.99825,Entire home/apt,104,28,1,0.42,1,0 +40301,14948568,Brooklyn,Midwood,40.61842,-73.97111,Entire home/apt,80,35,0,,1,0 +40302,9293730,Manhattan,Upper West Side,40.796409999999995,-73.96191,Entire home/apt,99,30,2,0.52,16,201 +40303,806774,Brooklyn,Williamsburg,40.70823,-73.96685,Shared room,125,1,5,2.31,2,156 +40304,44755507,Brooklyn,Bushwick,40.694959999999995,-73.9243,Entire home/apt,155,30,0,,2,365 +40305,2965005,Brooklyn,Williamsburg,40.71399,-73.93798000000001,Private room,110,3,20,3.26,1,98 +40306,232996930,Brooklyn,Park Slope,40.66975,-73.98475,Private room,30,2,1,0.17,1,0 +40307,233521077,Manhattan,East Village,40.72657,-73.98135,Private room,89,2,11,3.03,1,1 +40308,233315839,Brooklyn,Williamsburg,40.72085,-73.96115999999999,Private room,105,1,1,0.18,1,0 +40309,233423542,Queens,Astoria,40.766220000000004,-73.92896999999999,Private room,60,4,0,,2,0 +40310,233924381,Queens,Ridgewood,40.70698,-73.91599000000001,Entire home/apt,175,6,2,0.4,1,365 +40311,107589614,Brooklyn,Williamsburg,40.7131,-73.96004,Private room,70,3,0,,2,188 +40312,115506821,Manhattan,Chinatown,40.71367,-73.99313000000001,Entire home/apt,175,2,4,0.71,1,0 +40313,229494802,Manhattan,Chelsea,40.748909999999995,-73.99573000000001,Entire home/apt,299,2,8,1.59,1,274 +40314,11365400,Queens,Sunnyside,40.73888,-73.92827,Private room,65,28,22,4.82,2,4 +40315,174785358,Bronx,Port Morris,40.8094,-73.93173,Shared room,28,1,17,2.77,7,319 +40316,232251881,Queens,Jamaica,40.66684,-73.78289000000001,Shared room,39,1,56,9.13,8,34 +40317,57357614,Manhattan,Upper West Side,40.77447,-73.98853000000001,Entire home/apt,300,2,5,5.0,1,0 +40318,233755743,Queens,Elmhurst,40.735040000000005,-73.87406999999999,Private room,80,2,8,1.54,2,125 +40319,68740200,Brooklyn,Cypress Hills,40.67646,-73.90579,Private room,34,4,8,1.33,1,58 +40320,219104513,Brooklyn,East Flatbush,40.65854,-73.93913,Private room,53,2,5,0.91,2,191 +40321,81146418,Queens,Jamaica,40.686840000000004,-73.79921,Entire home/apt,80,2,13,2.36,1,87 +40322,137358866,Queens,Woodside,40.74181,-73.90279,Private room,61,30,0,,103,123 +40323,47023469,Manhattan,Upper West Side,40.79595,-73.97251,Private room,110,1,2,0.6,3,6 +40324,5691195,Queens,Flushing,40.72744,-73.81005,Private room,75,2,0,,1,0 +40325,234006406,Manhattan,Hell's Kitchen,40.75975,-73.99533000000001,Private room,150,1,7,1.29,1,88 +40326,20120009,Brooklyn,Bushwick,40.68929,-73.90605,Private room,38,1,5,0.82,6,7 +40327,6965682,Brooklyn,Bushwick,40.70162,-73.93607,Entire home/apt,180,5,1,0.26,1,0 +40328,29582232,Brooklyn,Flatbush,40.640609999999995,-73.96486999999999,Entire home/apt,125,4,10,2.78,5,84 +40329,61295963,Manhattan,Upper West Side,40.78331,-73.97686999999999,Entire home/apt,300,2,1,0.22,1,188 +40330,23308549,Brooklyn,Williamsburg,40.713879999999996,-73.95744,Private room,75,2,1,0.2,1,0 +40331,231824284,Manhattan,East Harlem,40.79618,-73.94142,Entire home/apt,450,1,9,2.21,1,312 +40332,39179346,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,110,1,8,4.0,1,238 +40333,80054574,Manhattan,Washington Heights,40.855470000000004,-73.92912,Private room,33,3,1,0.17,1,0 +40334,230061564,Manhattan,East Village,40.72846,-73.98456999999999,Entire home/apt,399,1,10,1.67,1,332 +40335,234111066,Manhattan,Lower East Side,40.72296,-73.99259,Private room,90,1,1,0.16,2,0 +40336,1694324,Brooklyn,Greenpoint,40.72392,-73.94800000000001,Entire home/apt,175,4,3,0.58,1,0 +40337,216437098,Brooklyn,Bedford-Stuyvesant,40.683409999999995,-73.92154000000001,Entire home/apt,140,2,7,1.23,2,281 +40338,17126336,Brooklyn,Williamsburg,40.71998,-73.96283000000001,Entire home/apt,190,6,4,0.88,1,59 +40339,129034868,Manhattan,East Village,40.72943,-73.98443,Entire home/apt,111,4,3,0.8,1,37 +40340,3147732,Brooklyn,Williamsburg,40.72011,-73.94487,Private room,45,1,2,0.4,1,0 +40341,10770318,Manhattan,Upper East Side,40.77959,-73.94685,Private room,65,1,17,4.18,1,19 +40342,88484548,Queens,Queens Village,40.70685,-73.73583,Private room,70,2,1,0.18,1,0 +40343,234143954,Manhattan,Harlem,40.82915,-73.94453,Private room,50,1,0,,1,29 +40344,234147066,Queens,College Point,40.77981,-73.84241999999999,Entire home/apt,69,1,19,3.93,1,212 +40345,17262002,Brooklyn,Greenpoint,40.73536,-73.9581,Private room,70,1,1,0.17,1,0 +40346,59051417,Manhattan,East Harlem,40.79465,-73.94935,Private room,399,6,1,0.2,6,230 +40347,67123961,Manhattan,Harlem,40.820570000000004,-73.95510999999999,Private room,55,2,0,,2,0 +40348,213379221,Manhattan,East Harlem,40.796279999999996,-73.94126,Private room,90,2,2,0.53,1,168 +40349,231691559,Brooklyn,Williamsburg,40.71335,-73.93545999999999,Entire home/apt,500,1,5,0.88,1,365 +40350,234178917,Queens,Sunnyside,40.746,-73.91393000000001,Entire home/apt,160,2,1,0.43,1,310 +40351,52728780,Manhattan,Midtown,40.753409999999995,-73.97116,Entire home/apt,200,7,0,,1,0 +40352,224815152,Manhattan,Hell's Kitchen,40.756190000000004,-73.99797,Private room,209,1,19,3.13,8,81 +40353,4657612,Manhattan,Lower East Side,40.71727,-73.98634,Entire home/apt,120,1,4,0.67,1,36 +40354,12965214,Manhattan,East Village,40.7297,-73.97959,Private room,99,2,1,0.19,1,0 +40355,22552061,Brooklyn,Bushwick,40.6942,-73.92598000000001,Private room,80,1,1,0.21,1,168 +40356,224815152,Manhattan,Hell's Kitchen,40.75634,-73.99641,Private room,249,1,6,1.06,8,89 +40357,3951033,Manhattan,Harlem,40.83032,-73.9421,Entire home/apt,120,5,7,1.69,1,84 +40358,234211879,Brooklyn,Bedford-Stuyvesant,40.683040000000005,-73.92175,Entire home/apt,140,2,12,2.02,1,284 +40359,51812548,Manhattan,Upper East Side,40.78047,-73.95152,Entire home/apt,110,1,3,0.51,1,5 +40360,1180631,Brooklyn,Bushwick,40.70426,-73.92111,Entire home/apt,200,4,0,,1,66 +40361,234214434,Brooklyn,Bushwick,40.70146,-73.92841,Entire home/apt,145,30,7,1.46,4,218 +40362,232283561,Bronx,East Morrisania,40.83025,-73.89134,Private room,70,1,1,0.19,3,81 +40363,234230740,Manhattan,Theater District,40.75638,-73.98834000000001,Entire home/apt,260,5,0,,1,0 +40364,535343,Manhattan,Harlem,40.8014,-73.9578,Private room,60,2,12,2.35,1,1 +40365,166634,Queens,Astoria,40.755179999999996,-73.9143,Entire home/apt,150,5,0,,5,0 +40366,99683151,Manhattan,Chelsea,40.74285,-74.00196,Entire home/apt,190,3,15,2.54,3,293 +40367,12618858,Brooklyn,Bedford-Stuyvesant,40.68313,-73.92833,Private room,70,1,5,0.85,2,111 +40368,222476614,Manhattan,Kips Bay,40.74535,-73.97898,Shared room,39,2,0,,3,348 +40369,20517979,Manhattan,Upper East Side,40.76643,-73.96181,Entire home/apt,115,1,3,1.55,1,5 +40370,234297980,Manhattan,Upper East Side,40.774409999999996,-73.95571,Entire home/apt,200,2,0,,1,0 +40371,22541573,Manhattan,Tribeca,40.715090000000004,-74.00565999999999,Entire home/apt,210,30,0,,87,262 +40372,2108671,Brooklyn,Bedford-Stuyvesant,40.689040000000006,-73.93643,Entire home/apt,70,4,0,,1,0 +40373,59470806,Brooklyn,Bushwick,40.69451,-73.92213000000001,Entire home/apt,135,4,10,1.8,1,26 +40374,234115186,Manhattan,Chelsea,40.74412,-73.99684,Entire home/apt,275,2,0,,1,0 +40375,224414117,Manhattan,Hell's Kitchen,40.756809999999994,-73.99865,Private room,199,1,1,0.36,30,362 +40376,9783911,Brooklyn,Bedford-Stuyvesant,40.686609999999995,-73.91982,Private room,200,2,0,,1,0 +40377,234338317,Brooklyn,Williamsburg,40.71105,-73.94563000000001,Private room,80,1,1,1.0,1,86 +40378,234338206,Manhattan,Hell's Kitchen,40.764990000000004,-73.99266999999999,Private room,140,1,9,1.7,2,0 +40379,33655,Brooklyn,Columbia St,40.68343,-74.00371,Entire home/apt,1080,1,0,,2,167 +40380,234357462,Manhattan,West Village,40.73245,-74.00355,Entire home/apt,225,2,11,2.21,1,280 +40381,10196479,Brooklyn,Williamsburg,40.71285,-73.95558,Private room,45,3,1,0.18,1,0 +40382,198214941,Brooklyn,Bushwick,40.69085,-73.90937,Private room,150,1,0,,1,269 +40383,7797973,Queens,Springfield Gardens,40.660140000000006,-73.7582,Entire home/apt,175,2,19,4.45,1,147 +40384,37280441,Manhattan,Morningside Heights,40.81053,-73.96123,Private room,53,1,1,0.17,2,0 +40385,11223389,Queens,Astoria,40.75802,-73.92851,Private room,44,2,14,2.98,1,47 +40386,49101398,Brooklyn,Gravesend,40.597409999999996,-73.9752,Private room,59,2,18,3.16,3,118 +40387,22100836,Manhattan,Gramercy,40.73772,-73.98758000000001,Private room,65,1,11,1.79,3,0 +40388,121926104,Brooklyn,Williamsburg,40.71606,-73.9593,Private room,65,2,0,,1,0 +40389,6391001,Manhattan,Upper West Side,40.8024,-73.96495999999999,Private room,59,1,39,6.5,1,106 +40390,115832915,Bronx,Mount Hope,40.8476,-73.90594,Private room,50,1,0,,1,0 +40391,5800174,Brooklyn,Prospect Heights,40.676320000000004,-73.96616999999999,Private room,70,2,17,2.82,1,26 +40392,84796432,Brooklyn,Sunset Park,40.66005,-73.99316,Private room,59,1,17,4.4,1,109 +40393,227854504,Manhattan,Gramercy,40.73268,-73.98399,Entire home/apt,199,1,26,4.48,1,72 +40394,42037177,Manhattan,Midtown,40.754940000000005,-73.96437,Private room,300,3,2,0.33,1,365 +40395,10746800,Manhattan,Upper West Side,40.794709999999995,-73.96918000000001,Private room,61,4,2,0.37,1,0 +40396,17328806,Manhattan,Lower East Side,40.7179,-73.98192,Private room,90,2,8,2.55,1,324 +40397,195650850,Brooklyn,Williamsburg,40.71218,-73.94615999999999,Private room,60,3,1,0.3,1,0 +40398,230077977,Manhattan,Hell's Kitchen,40.76509,-73.99508,Entire home/apt,179,6,1,0.18,1,3 +40399,40245658,Manhattan,Hell's Kitchen,40.76325,-73.99011999999999,Entire home/apt,199,2,12,2.83,3,110 +40400,234417391,Manhattan,Upper West Side,40.79249,-73.96627,Private room,150,2,5,1.9,1,20 +40401,220149091,Brooklyn,Bedford-Stuyvesant,40.69392,-73.94904,Private room,85,2,11,2.39,4,314 +40402,234423593,Bronx,Melrose,40.824329999999996,-73.91619,Entire home/apt,80,5,12,2.26,1,91 +40403,234172613,Manhattan,Midtown,40.76425,-73.9802,Private room,300,3,0,,1,0 +40404,3807069,Brooklyn,Williamsburg,40.71125,-73.95935,Private room,100,2,4,1.05,1,0 +40405,137358866,Queens,Elmhurst,40.74325,-73.87832,Private room,35,30,1,0.58,103,252 +40406,234376122,Bronx,Highbridge,40.83651,-73.92269,Entire home/apt,74,2,19,3.85,1,183 +40407,234440538,Manhattan,Upper East Side,40.77905,-73.9535,Entire home/apt,150,1,0,,1,0 +40408,34915339,Manhattan,Upper East Side,40.779509999999995,-73.95075,Private room,100,1,32,5.45,4,184 +40409,2930761,Queens,Fresh Meadows,40.75085,-73.7854,Entire home/apt,114,2,7,3.23,1,359 +40410,234338206,Manhattan,Hell's Kitchen,40.76358,-73.99361,Private room,140,1,4,0.74,2,0 +40411,234483148,Manhattan,Harlem,40.803340000000006,-73.94681,Private room,77,2,31,5.14,2,106 +40412,163035332,Manhattan,SoHo,40.72273,-74.00479,Entire home/apt,1299,2,15,2.62,3,273 +40413,12865261,Brooklyn,Fort Greene,40.68994,-73.96951999999999,Entire home/apt,170,3,5,2.54,1,304 +40414,1512565,Manhattan,East Harlem,40.788000000000004,-73.953,Private room,175,2,3,0.81,3,105 +40415,234381268,Manhattan,Hell's Kitchen,40.75483,-73.99405,Entire home/apt,156,1,21,3.71,1,46 +40416,234543110,Brooklyn,Bedford-Stuyvesant,40.684329999999996,-73.94391999999999,Entire home/apt,110,3,0,,1,63 +40417,225302090,Manhattan,Washington Heights,40.83307,-73.93515,Private room,100,80,0,,1,179 +40418,175103962,Brooklyn,Bedford-Stuyvesant,40.680620000000005,-73.90716,Private room,45,1,13,2.31,6,170 +40419,221574115,Brooklyn,Bensonhurst,40.61203,-74.00180999999999,Private room,40,10,0,,2,0 +40420,14855509,Manhattan,Harlem,40.81438,-73.94782,Entire home/apt,110,4,13,2.6,2,197 +40421,59051417,Manhattan,East Harlem,40.79554,-73.94835,Private room,114,3,13,2.23,6,50 +40422,229332180,Manhattan,Hell's Kitchen,40.75483,-73.99689000000001,Entire home/apt,135,4,0,,1,0 +40423,213816392,Queens,Queens Village,40.70755,-73.74421,Private room,35,1,17,2.79,3,354 +40424,232251881,Queens,Jamaica,40.66715,-73.78345999999999,Shared room,39,1,65,10.6,8,320 +40425,204731291,Brooklyn,East Flatbush,40.64844,-73.95031999999999,Private room,65,2,4,1.5,1,178 +40426,234596452,Brooklyn,Bushwick,40.70195,-73.92257,Private room,85,1,0,,1,0 +40427,59051417,Manhattan,East Harlem,40.7943,-73.95003,Private room,116,3,17,2.9,6,42 +40428,59051417,Manhattan,East Harlem,40.79575,-73.9496,Private room,101,3,10,1.89,6,62 +40429,131808888,Queens,Flushing,40.74633,-73.82975,Entire home/apt,200,1,12,4.5,1,139 +40430,11519866,Manhattan,East Village,40.72262,-73.98515,Private room,85,1,7,1.48,1,0 +40431,123672154,Brooklyn,Greenpoint,40.73386,-73.95294,Private room,70,1,3,0.5,2,0 +40432,155109689,Brooklyn,Greenpoint,40.73369,-73.95196999999999,Entire home/apt,172,2,9,1.61,2,281 +40433,4382127,Manhattan,Lower East Side,40.7198,-73.98566,Entire home/apt,9999,30,0,,1,365 +40434,34685168,Queens,Astoria,40.76724,-73.9232,Entire home/apt,120,3,0,,1,0 +40435,207173529,Manhattan,Inwood,40.86772,-73.92057,Private room,65,1,2,0.64,1,0 +40436,22251283,Manhattan,Hell's Kitchen,40.7558,-73.99376,Entire home/apt,115,30,1,0.21,4,50 +40437,5838825,Manhattan,Hell's Kitchen,40.755990000000004,-73.99185,Private room,200,3,0,,1,0 +40438,234214434,Brooklyn,Bushwick,40.70006,-73.92902,Private room,60,30,0,,4,191 +40439,137501374,Queens,Elmhurst,40.74057,-73.86975,Private room,25,1,17,2.79,3,231 +40440,234214434,Brooklyn,Bushwick,40.70061,-73.92869,Private room,68,30,0,,4,191 +40441,137501374,Queens,Elmhurst,40.74038,-73.86964,Shared room,19,1,15,2.78,3,236 +40442,14671652,Brooklyn,Bedford-Stuyvesant,40.69126,-73.95285,Entire home/apt,250,14,0,,1,364 +40443,108029974,Manhattan,NoHo,40.72833,-73.99331,Entire home/apt,495,6,1,0.33,4,52 +40444,108029974,Manhattan,NoHo,40.72811,-73.99381,Entire home/apt,525,6,5,1.76,4,63 +40445,21412569,Manhattan,Murray Hill,40.745329999999996,-73.97685,Entire home/apt,395,5,1,0.37,1,363 +40446,110902412,Brooklyn,Prospect-Lefferts Gardens,40.658409999999996,-73.96121,Entire home/apt,82,3,14,3.21,1,75 +40447,1973165,Brooklyn,Greenpoint,40.73344,-73.95851,Private room,100,2,3,0.53,1,100 +40448,63411066,Manhattan,Washington Heights,40.8334,-73.94327,Entire home/apt,70,2,11,1.84,1,0 +40449,234776583,Brooklyn,Bushwick,40.70138,-73.91556,Entire home/apt,100,2,8,1.43,1,342 +40450,218336964,Queens,Rego Park,40.731759999999994,-73.8702,Private room,35,4,10,1.99,4,11 +40451,28428851,Brooklyn,East Flatbush,40.65144,-73.94659,Private room,80,2,0,,2,27 +40452,4233057,Manhattan,East Harlem,40.79737,-73.93499,Private room,100,2,0,,3,365 +40453,2678122,Brooklyn,Williamsburg,40.717079999999996,-73.94852,Entire home/apt,120,3,0,,3,0 +40454,15817323,Brooklyn,Greenpoint,40.7282,-73.9506,Entire home/apt,175,2,8,1.45,1,0 +40455,25134822,Queens,Astoria,40.7702,-73.9261,Entire home/apt,130,1,9,4.22,2,162 +40456,73640551,Brooklyn,Prospect Heights,40.6771,-73.97174,Private room,55,2,21,3.6,2,0 +40457,16713332,Brooklyn,Bushwick,40.69853,-73.93098,Private room,65,10,0,,2,0 +40458,234823585,Brooklyn,Kensington,40.64481,-73.97318,Entire home/apt,100,2,15,2.46,1,66 +40459,234831342,Manhattan,Hell's Kitchen,40.7566,-73.99725,Entire home/apt,139,10,0,,1,0 +40460,234836860,Manhattan,East Village,40.72482,-73.98241999999999,Entire home/apt,105,4,6,1.14,1,83 +40461,767346,Brooklyn,Fort Hamilton,40.616929999999996,-74.03135999999999,Private room,90,2,6,2.77,1,0 +40462,22651136,Brooklyn,Bushwick,40.69327,-73.92456,Private room,60,1,18,3.46,1,29 +40463,118971,Brooklyn,South Slope,40.667429999999996,-73.98963,Entire home/apt,300,2,16,3.75,3,92 +40464,18683197,Brooklyn,Sheepshead Bay,40.58449,-73.94131999999999,Entire home/apt,179,7,0,,1,342 +40465,24920992,Manhattan,East Harlem,40.79241,-73.94131999999999,Private room,70,2,3,0.54,1,0 +40466,101890546,Manhattan,Little Italy,40.719159999999995,-73.99754,Entire home/apt,229,1,3,0.53,1,362 +40467,233541916,Staten Island,St. George,40.64118,-74.08400999999999,Private room,100,1,0,,1,0 +40468,19019393,Brooklyn,Greenpoint,40.72615,-73.94592,Private room,49,3,0,,1,0 +40469,226036723,Brooklyn,Cypress Hills,40.68537,-73.87442,Private room,250,3,0,,3,364 +40470,234930202,Brooklyn,Canarsie,40.633140000000004,-73.89739,Private room,60,1,3,0.49,1,86 +40471,226036723,Brooklyn,Cypress Hills,40.68522,-73.873,Private room,125,3,2,0.42,3,180 +40472,226036723,Brooklyn,Cypress Hills,40.684870000000004,-73.87254,Private room,125,3,0,,3,364 +40473,234986384,Manhattan,Hell's Kitchen,40.76318,-73.9942,Private room,109,5,17,3.89,1,35 +40474,7029525,Manhattan,Tribeca,40.715090000000004,-74.00779,Entire home/apt,400,3,1,0.21,1,0 +40475,16622969,Brooklyn,Williamsburg,40.70259,-73.93535,Private room,45,2,8,1.35,1,0 +40476,219517861,Manhattan,Financial District,40.707679999999996,-74.00603000000001,Entire home/apt,197,29,2,0.51,327,334 +40477,10032762,Brooklyn,Crown Heights,40.676120000000004,-73.95855999999999,Entire home/apt,85,2,2,0.85,1,6 +40478,24269944,Brooklyn,Williamsburg,40.71355,-73.95895,Entire home/apt,120,14,4,0.66,1,0 +40479,235008186,Queens,Astoria,40.7548,-73.91364,Entire home/apt,170,4,10,2.07,1,97 +40480,131569457,Brooklyn,Bushwick,40.68755,-73.90887,Shared room,40,4,0,,1,0 +40481,104913801,Queens,Long Island City,40.757329999999996,-73.94176,Private room,55,2,12,2.05,2,81 +40482,47409152,Queens,St. Albans,40.68623,-73.76209,Entire home/apt,125,1,9,1.65,1,344 +40483,59808986,Queens,Ridgewood,40.69766,-73.90354,Entire home/apt,100,1,42,7.12,3,121 +40484,226960918,Manhattan,Chelsea,40.739340000000006,-74.00146,Entire home/apt,180,3,2,2.0,1,173 +40485,166432964,Brooklyn,Bedford-Stuyvesant,40.69216,-73.95714,Private room,40,14,0,,1,0 +40486,36012265,Brooklyn,Williamsburg,40.70471,-73.92957,Entire home/apt,156,30,0,,7,126 +40487,136807581,Queens,Ditmars Steinway,40.77749,-73.91651999999999,Entire home/apt,99,2,20,3.75,1,0 +40488,235073206,Manhattan,Harlem,40.8197,-73.94575999999999,Entire home/apt,145,1,28,5.28,4,169 +40489,193626078,Bronx,Belmont,40.85387,-73.89384,Entire home/apt,247,2,15,3.17,3,322 +40490,234961480,Brooklyn,Williamsburg,40.70474,-73.94423,Private room,120,1,8,2.79,1,80 +40491,154335207,Manhattan,East Harlem,40.801390000000005,-73.94041999999999,Private room,70,5,1,1.0,1,65 +40492,234869359,Brooklyn,Bushwick,40.68815,-73.91289,Entire home/apt,80,2,21,3.71,1,154 +40493,22322931,Manhattan,SoHo,40.72672,-74.00066,Entire home/apt,200,2,1,0.18,1,0 +40494,151300770,Manhattan,Upper East Side,40.77811,-73.95186,Private room,150,5,6,1.73,4,280 +40495,170372974,Manhattan,Murray Hill,40.74579,-73.9726,Entire home/apt,599,4,11,2.23,1,140 +40496,235102134,Manhattan,Harlem,40.80652,-73.94899000000001,Entire home/apt,188,3,4,1.18,1,253 +40497,15074983,Manhattan,West Village,40.73169,-74.00214,Private room,110,7,13,2.23,1,13 +40498,9453700,Brooklyn,Boerum Hill,40.68612,-73.98013,Private room,99,1,15,2.63,1,149 +40499,7285648,Manhattan,Chelsea,40.746179999999995,-74.00569,Private room,100,1,0,,3,0 +40500,235115405,Brooklyn,Williamsburg,40.70967,-73.95249,Private room,70,2,8,1.57,2,8 +40501,163510250,Manhattan,East Harlem,40.78754,-73.94185999999999,Private room,75,1,6,2.95,1,0 +40502,234905483,Bronx,Mount Hope,40.8461,-73.90883000000001,Private room,30,2,14,3.28,1,176 +40503,54689007,Manhattan,Financial District,40.708890000000004,-74.00701,Entire home/apt,180,10,0,,3,54 +40504,22412963,Manhattan,Lower East Side,40.71805,-73.98675,Entire home/apt,225,25,22,3.63,3,268 +40505,234111066,Manhattan,Lower East Side,40.72166,-73.98841999999999,Private room,125,5,0,,2,0 +40506,87348589,Manhattan,Upper East Side,40.77769,-73.94836,Entire home/apt,130,3,3,0.64,1,0 +40507,16683574,Manhattan,Harlem,40.82823,-73.94971,Entire home/apt,145,30,0,,2,357 +40508,137501374,Queens,Elmhurst,40.739979999999996,-73.86802,Private room,28,1,12,3.03,3,236 +40509,1495021,Queens,Sunnyside,40.73618,-73.92016,Private room,49,31,0,,2,281 +40510,215778245,Queens,Corona,40.74071,-73.86686999999999,Private room,40,2,5,1.15,6,306 +40511,107434423,Manhattan,Financial District,40.70491,-74.00978,Entire home/apt,271,30,0,,232,331 +40512,158596887,Brooklyn,Bushwick,40.70192,-73.91556,Entire home/apt,100,5,0,,2,0 +40513,23862648,Manhattan,East Village,40.73065,-73.98523,Entire home/apt,88,2,18,3.88,1,5 +40514,233422217,Manhattan,Harlem,40.82645,-73.95235,Private room,86,3,1,0.42,2,310 +40515,198195140,Queens,Long Island City,40.74755,-73.93878000000001,Private room,55,1,11,2.92,2,7 +40516,207618240,Manhattan,Midtown,40.75225,-73.97131999999999,Private room,300,3,0,,1,338 +40517,56061729,Brooklyn,Greenpoint,40.73421,-73.95318,Entire home/apt,125,2,8,1.37,1,188 +40518,20233597,Brooklyn,Williamsburg,40.70952,-73.9435,Entire home/apt,200,6,2,2.0,1,49 +40519,70184008,Manhattan,Harlem,40.829640000000005,-73.94270999999999,Entire home/apt,80,2,2,0.37,1,189 +40520,7730748,Brooklyn,Crown Heights,40.67431,-73.95846999999999,Private room,45,5,0,,1,0 +40521,34399492,Manhattan,Harlem,40.8166,-73.9407,Private room,80,3,13,3.45,1,6 +40522,4208096,Manhattan,East Harlem,40.7857,-73.94578,Entire home/apt,99,1,20,4.23,1,81 +40523,552627,Manhattan,Harlem,40.82503,-73.93767,Private room,70,2,0,,2,0 +40524,57148387,Manhattan,Gramercy,40.73423,-73.98210999999999,Private room,100,1,4,0.75,1,254 +40525,33614329,Brooklyn,Bushwick,40.69684,-73.9307,Entire home/apt,85,1,36,6.1,4,210 +40526,235302401,Brooklyn,Sunset Park,40.64373,-74.01351,Private room,49,1,9,1.59,3,177 +40527,235305665,Manhattan,East Harlem,40.7902,-73.9463,Private room,69,1,4,0.78,2,60 +40528,235311151,Brooklyn,Williamsburg,40.7025,-73.93561,Private room,40,2,1,0.28,1,0 +40529,188741104,Manhattan,Harlem,40.81027,-73.94306,Entire home/apt,175,31,3,0.63,4,274 +40530,235305665,Manhattan,East Harlem,40.78953,-73.9432,Private room,65,1,4,0.7,2,69 +40531,231352789,Staten Island,Tompkinsville,40.63515,-74.07929,Private room,85,2,29,5.0,3,296 +40532,5637331,Manhattan,Upper East Side,40.7627,-73.96422,Entire home/apt,140,6,1,0.35,2,0 +40533,235344330,Brooklyn,Williamsburg,40.71598,-73.9451,Private room,75,2,23,4.86,1,113 +40534,37986167,Manhattan,Hell's Kitchen,40.76458,-73.98753,Entire home/apt,350,1,25,4.26,2,0 +40535,4305407,Manhattan,West Village,40.73318,-74.00473000000001,Entire home/apt,150,2,9,1.57,1,0 +40536,83415090,Manhattan,Washington Heights,40.85085,-73.94134,Private room,50,1,35,5.93,1,36 +40537,42761,Bronx,Claremont Village,40.84487,-73.90811,Private room,80,2,1,0.18,1,156 +40538,230909887,Brooklyn,Crown Heights,40.67674,-73.93083,Entire home/apt,133,2,7,1.24,1,41 +40539,9637585,Manhattan,Harlem,40.81049,-73.95311,Private room,80,2,0,,1,36 +40540,79520100,Manhattan,East Harlem,40.7868,-73.95228,Private room,50,2,29,5.0,1,0 +40541,197053492,Manhattan,Financial District,40.707440000000005,-74.00819,Entire home/apt,219,1,20,3.85,8,322 +40542,58956219,Manhattan,Harlem,40.81859,-73.93997,Private room,60,2,8,1.41,1,80 +40543,107434423,Manhattan,Upper East Side,40.77463,-73.94972,Entire home/apt,307,30,0,,232,249 +40544,107434423,Manhattan,Upper East Side,40.77572,-73.95671999999999,Entire home/apt,233,30,0,,232,249 +40545,235468713,Manhattan,East Village,40.72466,-73.98373000000001,Entire home/apt,235,2,28,4.75,1,8 +40546,47515751,Manhattan,Inwood,40.86772,-73.92563,Private room,40,4,1,0.24,2,81 +40547,113393845,Brooklyn,Kensington,40.64557,-73.98097,Entire home/apt,100,1,2,0.43,1,268 +40548,1698607,Brooklyn,Greenpoint,40.73336,-73.95394,Entire home/apt,92,4,3,0.66,1,95 +40549,85108863,Manhattan,Washington Heights,40.85065,-73.93188,Private room,45,2,12,2.32,1,78 +40550,1290193,Brooklyn,Bedford-Stuyvesant,40.686170000000004,-73.95926999999999,Private room,50,4,3,1.76,1,365 +40551,61886746,Brooklyn,Williamsburg,40.71072,-73.96289,Entire home/apt,200,2,0,,1,0 +40552,95635119,Manhattan,Upper East Side,40.7848,-73.95687,Private room,42,3,7,1.39,1,131 +40553,20445702,Manhattan,Lower East Side,40.70983,-73.98562,Shared room,249,60,0,,1,0 +40554,136081476,Manhattan,Harlem,40.8087,-73.94157,Entire home/apt,150,2,17,3.31,1,19 +40555,704963,Brooklyn,Bushwick,40.70165,-73.92262,Private room,35,4,1,0.43,1,7 +40556,8620509,Brooklyn,Williamsburg,40.70508,-73.93763,Entire home/apt,165,5,0,,1,20 +40557,8523790,Manhattan,Hell's Kitchen,40.76682,-73.98878,Entire home/apt,170,3,0,,1,188 +40558,3459240,Manhattan,East Village,40.72377,-73.97963,Private room,289,2,17,3.42,1,72 +40559,48392689,Brooklyn,Williamsburg,40.71324,-73.95099,Entire home/apt,400,2,0,,1,329 +40560,235548617,Queens,Long Island City,40.7576,-73.93222,Private room,55,1,25,5.03,2,34 +40561,133234099,Manhattan,Harlem,40.80761,-73.94366,Entire home/apt,250,3,11,1.94,2,110 +40562,86322604,Queens,Woodside,40.75396,-73.90111,Private room,56,2,9,2.84,1,4 +40563,4688531,Brooklyn,East Flatbush,40.65344,-73.94547,Entire home/apt,120,1,13,3.0,1,0 +40564,60835915,Queens,Long Island City,40.76061,-73.92811999999999,Entire home/apt,149,3,14,3.0,1,30 +40565,13773574,Manhattan,Hell's Kitchen,40.766659999999995,-73.98358,Entire home/apt,225,30,0,,12,343 +40566,13773574,Manhattan,Midtown,40.76616,-73.98228,Entire home/apt,225,30,0,,12,365 +40567,5945241,Brooklyn,Bedford-Stuyvesant,40.6789,-73.91014,Entire home/apt,80,2,8,2.12,1,0 +40568,72602373,Brooklyn,Brownsville,40.662620000000004,-73.91575,Private room,59,1,2,0.42,2,53 +40569,194014767,Brooklyn,East Flatbush,40.64656,-73.95016,Entire home/apt,65,2,20,3.57,2,293 +40570,219104513,Brooklyn,East Flatbush,40.65808,-73.93903,Private room,39,2,3,0.73,2,67 +40571,235655558,Manhattan,Kips Bay,40.74343,-73.98147,Entire home/apt,140,1,3,0.63,1,0 +40572,129643632,Brooklyn,Sunset Park,40.66426,-73.99375,Entire home/apt,165,30,0,,1,337 +40573,71012165,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93592,Private room,100,4,0,,1,0 +40574,37891510,Queens,Woodhaven,40.687090000000005,-73.85982,Private room,55,4,10,1.81,2,360 +40575,14201257,Brooklyn,Flatbush,40.65218,-73.96551,Private room,40,7,4,0.92,1,1 +40576,21229164,Manhattan,Battery Park City,40.70417,-74.01709,Entire home/apt,115,1,12,2.02,1,0 +40577,117143694,Manhattan,Harlem,40.80454,-73.94635,Entire home/apt,400,5,15,2.88,1,148 +40578,233732841,Manhattan,Washington Heights,40.83397,-73.94541,Private room,35,1,25,4.36,2,80 +40579,132908616,Brooklyn,Bushwick,40.70218,-73.92045999999999,Private room,40,3,13,2.95,2,51 +40580,14855509,Manhattan,Harlem,40.81272,-73.9471,Entire home/apt,110,4,20,4.69,2,227 +40581,62857588,Brooklyn,Cypress Hills,40.680009999999996,-73.90547,Private room,35,7,1,0.22,1,0 +40582,13773574,Manhattan,Midtown,40.76473,-73.98131,Entire home/apt,225,30,0,,12,343 +40583,235734225,Brooklyn,Bushwick,40.69812,-73.92134,Private room,130,2,6,1.18,1,356 +40584,120242215,Manhattan,Midtown,40.76263,-73.97664,Entire home/apt,299,3,3,0.56,1,38 +40585,191786703,Manhattan,Upper East Side,40.76137,-73.95992,Entire home/apt,400,1,0,,1,179 +40586,71241932,Manhattan,East Village,40.72544,-73.97818000000001,Private room,2500,60,0,,1,90 +40587,207010341,Manhattan,East Harlem,40.7966,-73.93345,Private room,60,4,0,,2,51 +40588,13773574,Manhattan,Midtown,40.765390000000004,-73.98336,Entire home/apt,225,30,0,,12,343 +40589,10416602,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93906,Entire home/apt,130,3,6,2.09,1,292 +40590,229149810,Queens,East Elmhurst,40.77008,-73.87442,Entire home/apt,128,1,4,0.83,3,80 +40591,20647101,Brooklyn,Bushwick,40.683640000000004,-73.90748,Private room,45,1,2,0.39,1,0 +40592,2790890,Brooklyn,Bedford-Stuyvesant,40.69226,-73.94788,Entire home/apt,89,3,18,3.03,3,237 +40593,9475918,Brooklyn,Bedford-Stuyvesant,40.693059999999996,-73.94565,Private room,39,1,1,0.22,1,0 +40594,126052775,Brooklyn,Bushwick,40.704440000000005,-73.92181,Private room,47,2,0,,1,0 +40595,235302401,Brooklyn,Sunset Park,40.64359,-74.01358,Private room,49,1,8,1.67,3,164 +40596,235302401,Brooklyn,Sunset Park,40.643029999999996,-74.014,Private room,49,1,3,1.48,3,155 +40597,235810002,Manhattan,Upper West Side,40.7874,-73.97051,Entire home/apt,1150,1,0,,1,2 +40598,9014833,Brooklyn,Williamsburg,40.71159,-73.96581,Entire home/apt,61,2,15,2.76,1,0 +40599,566838,Manhattan,Harlem,40.81944,-73.93974,Private room,70,1,23,6.05,2,97 +40600,5369840,Queens,Belle Harbor,40.57743,-73.84519,Entire home/apt,105,2,0,,1,22 +40601,23969698,Queens,Kew Gardens,40.70817,-73.83595,Private room,40,1,13,2.41,2,17 +40602,38757148,Brooklyn,Bedford-Stuyvesant,40.689370000000004,-73.94291,Private room,50,2,14,2.46,1,5 +40603,1788443,Brooklyn,Bushwick,40.695679999999996,-73.93203000000001,Entire home/apt,175,2,23,4.06,1,227 +40604,33120658,Brooklyn,Williamsburg,40.70505,-73.934,Private room,50,4,2,0.42,1,12 +40605,25502424,Manhattan,Chelsea,40.74859,-73.99685,Private room,92,2,0,,1,0 +40606,31883163,Brooklyn,Greenpoint,40.73203,-73.95125999999999,Entire home/apt,95,1,22,3.71,1,22 +40607,11612872,Brooklyn,Greenpoint,40.73757,-73.95509,Entire home/apt,80,2,22,3.84,3,5 +40608,12394498,Queens,Maspeth,40.7282,-73.89135,Entire home/apt,90,3,9,6.75,1,121 +40609,235939247,Manhattan,Two Bridges,40.71261,-73.99506,Entire home/apt,250,3,21,3.64,1,148 +40610,18007776,Brooklyn,Prospect-Lefferts Gardens,40.656209999999994,-73.9562,Private room,40,3,5,1.03,4,0 +40611,33464426,Manhattan,Hell's Kitchen,40.76453,-73.98527,Private room,80,3,8,1.4,1,0 +40612,149221924,Brooklyn,Brighton Beach,40.57504,-73.96673,Entire home/apt,80,1,1,0.17,1,0 +40613,120749029,Brooklyn,Williamsburg,40.70643,-73.94198,Private room,63,21,0,,2,135 +40614,17726859,Brooklyn,Prospect Heights,40.681,-73.96826999999999,Private room,150,1,1,0.18,1,0 +40615,218352095,Manhattan,Upper East Side,40.78132,-73.94723,Private room,75,4,15,2.66,1,21 +40616,170263842,Manhattan,Lower East Side,40.7096,-73.98703,Private room,71,15,0,,4,185 +40617,34915339,Manhattan,Upper East Side,40.78062,-73.95173,Private room,89,1,39,6.65,4,221 +40618,234396332,Queens,East Elmhurst,40.75675,-73.88599,Entire home/apt,99,1,18,3.16,2,141 +40619,34915339,Manhattan,Upper East Side,40.78001,-73.9518,Private room,99,1,38,6.44,4,142 +40620,236014031,Bronx,Longwood,40.81624,-73.9011,Private room,50,2,0,,1,0 +40621,46389451,Manhattan,West Village,40.73411,-74.00508,Entire home/apt,170,3,9,1.71,3,169 +40622,34915339,Manhattan,Upper East Side,40.7814,-73.95206,Shared room,50,1,38,6.48,4,238 +40623,235073206,Manhattan,Harlem,40.8181,-73.94440999999999,Private room,82,1,22,3.84,4,96 +40624,16480700,Manhattan,Upper East Side,40.76495,-73.96679,Entire home/apt,299,1,8,1.36,7,342 +40625,236018119,Queens,Queens Village,40.70472,-73.74865,Entire home/apt,121,1,13,2.28,3,90 +40626,235073206,Manhattan,Harlem,40.82049,-73.94505,Private room,75,1,21,4.09,4,351 +40627,231295106,Manhattan,Gramercy,40.736670000000004,-73.98592,Entire home/apt,199,3,20,3.7,1,123 +40628,15185649,Brooklyn,Bedford-Stuyvesant,40.683,-73.92345999999999,Entire home/apt,149,7,0,,2,5 +40629,234650220,Brooklyn,Brooklyn Heights,40.69657,-73.99604000000001,Entire home/apt,79,3,1,0.77,1,94 +40630,44037475,Brooklyn,Bedford-Stuyvesant,40.690459999999995,-73.9586,Private room,60,30,1,0.45,4,153 +40631,144006321,Manhattan,Washington Heights,40.84282,-73.94133000000001,Private room,45,1,13,2.45,1,87 +40632,167383560,Brooklyn,Bedford-Stuyvesant,40.680690000000006,-73.94264,Private room,125,1,2,1.02,1,199 +40633,236107297,Manhattan,Nolita,40.72189,-73.9941,Entire home/apt,199,7,1,0.38,1,124 +40634,135722057,Brooklyn,Bushwick,40.6847,-73.90883000000001,Private room,48,1,2,2.0,1,53 +40635,117675375,Manhattan,East Harlem,40.798759999999994,-73.93763,Private room,40,7,9,1.97,2,8 +40636,203266238,Bronx,Morris Park,40.85589,-73.85825,Private room,85,5,5,0.85,5,343 +40637,228053166,Brooklyn,Sheepshead Bay,40.586240000000004,-73.94558,Private room,45,1,21,6.3,1,160 +40638,78140736,Manhattan,West Village,40.738820000000004,-74.00706,Entire home/apt,1050,1,0,,1,48 +40639,23188519,Brooklyn,Bedford-Stuyvesant,40.695809999999994,-73.95379,Private room,68,30,1,1.0,6,311 +40640,137358866,Queens,Sunnyside,40.73812,-73.92024,Private room,41,30,1,0.25,103,186 +40641,7777033,Brooklyn,Crown Heights,40.66915,-73.95321,Private room,80,2,0,,1,342 +40642,16480700,Manhattan,Harlem,40.81878,-73.95302,Private room,77,1,15,3.36,7,351 +40643,220125576,Queens,Ozone Park,40.67883,-73.85627,Entire home/apt,72,2,7,1.2,3,52 +40644,16480700,Manhattan,Harlem,40.81981,-73.95353,Private room,79,1,1,0.26,7,60 +40645,180126576,Manhattan,East Village,40.72475,-73.98345,Private room,120,3,1,0.52,3,0 +40646,180126576,Manhattan,East Village,40.724709999999995,-73.98366999999999,Private room,100,3,1,0.34,3,0 +40647,158739,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.94233,Entire home/apt,106,2,3,0.74,2,0 +40648,5916186,Manhattan,Hell's Kitchen,40.76462,-73.98734,Private room,110,3,7,1.71,1,3 +40649,26018582,Manhattan,Washington Heights,40.83419,-73.94638,Entire home/apt,135,3,1,0.2,1,214 +40650,171367408,Manhattan,Upper West Side,40.79003,-73.97693000000001,Entire home/apt,90,2,8,1.98,1,0 +40651,133234099,Manhattan,Harlem,40.8095,-73.94296999999999,Entire home/apt,750,3,0,,2,97 +40652,21250331,Queens,Bayside,40.754090000000005,-73.76935,Private room,47,1,19,3.63,3,350 +40653,37136163,Manhattan,Midtown,40.75164,-73.98042,Entire home/apt,600,7,0,,1,281 +40654,20863433,Brooklyn,Bedford-Stuyvesant,40.685,-73.94711,Entire home/apt,130,1,7,1.98,1,16 +40655,82400601,Brooklyn,South Slope,40.667159999999996,-73.98335,Entire home/apt,100,1,9,1.74,1,0 +40656,236349458,Manhattan,Upper West Side,40.77714,-73.9881,Private room,180,3,13,2.6,1,0 +40657,52531721,Brooklyn,Williamsburg,40.711259999999996,-73.94917,Private room,55,2,26,5.1,1,156 +40658,235763046,Queens,Rosedale,40.66818,-73.73399,Entire home/apt,60,1,30,5.45,1,282 +40659,7225691,Manhattan,Lower East Side,40.72278,-73.98902,Entire home/apt,350,1,46,7.89,2,342 +40660,28035940,Manhattan,Upper West Side,40.79933,-73.96794,Entire home/apt,130,210,1,0.29,1,2 +40661,115252929,Brooklyn,Fort Greene,40.684309999999996,-73.97209000000001,Private room,65,1,9,2.87,1,157 +40662,62954830,Brooklyn,Clinton Hill,40.69571,-73.96944,Private room,90,1,9,2.84,1,144 +40663,64091336,Brooklyn,Bedford-Stuyvesant,40.693000000000005,-73.934,Entire home/apt,120,3,12,2.13,1,0 +40664,112290211,Manhattan,Washington Heights,40.84623,-73.93578000000001,Private room,70,2,10,2.13,1,152 +40665,236422290,Manhattan,Harlem,40.8089,-73.94349,Entire home/apt,135,30,2,0.88,1,7 +40666,26295375,Bronx,Port Morris,40.807970000000005,-73.92865,Private room,95,3,5,0.96,1,49 +40667,7285648,Manhattan,Chelsea,40.74562,-74.00538,Private room,86,1,0,,3,0 +40668,107434423,Manhattan,Upper East Side,40.77478,-73.95486,Entire home/apt,236,30,0,,232,127 +40669,236432765,Brooklyn,Williamsburg,40.71736,-73.95394,Private room,50,2,3,0.78,2,330 +40670,41090359,Queens,Little Neck,40.77122,-73.738,Private room,100,1,0,,1,88 +40671,15058648,Brooklyn,Bushwick,40.69866,-73.92929000000001,Private room,70,3,4,0.73,3,21 +40672,236511564,Manhattan,Harlem,40.8041,-73.956,Private room,60,21,2,0.43,1,35 +40673,137358866,Queens,Woodside,40.744240000000005,-73.90146,Private room,49,30,0,,103,247 +40674,8288491,Queens,Ridgewood,40.70667,-73.9147,Private room,70,2,0,,2,92 +40675,40025069,Queens,Belle Harbor,40.575179999999996,-73.84558,Entire home/apt,97,2,2,2.0,1,52 +40676,398617,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95476,Entire home/apt,155,2,10,2.11,1,42 +40677,227134858,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.94289,Private room,58,1,8,1.56,5,158 +40678,21129281,Manhattan,Washington Heights,40.83899,-73.93979,Entire home/apt,70,5,10,1.78,1,191 +40679,236556387,Staten Island,Stapleton,40.63474,-74.07758000000001,Private room,57,1,7,3.56,1,365 +40680,5178818,Brooklyn,Williamsburg,40.711859999999994,-73.95736,Entire home/apt,129,1,28,5.22,1,93 +40681,59051417,Manhattan,East Harlem,40.7961,-73.94791,Private room,109,1,2,0.44,6,0 +40682,229288524,Manhattan,Theater District,40.757490000000004,-73.98921,Entire home/apt,128,30,6,1.88,2,233 +40683,236565167,Brooklyn,East Flatbush,40.6386,-73.93654000000001,Private room,80,1,10,1.95,1,4 +40684,27479250,Brooklyn,Bensonhurst,40.603640000000006,-73.99524,Entire home/apt,125,2,0,,1,0 +40685,49503035,Manhattan,West Village,40.73041,-74.00251,Entire home/apt,85,3,5,1.08,1,16 +40686,235548617,Queens,Long Island City,40.75683,-73.93184000000001,Private room,55,1,29,5.37,2,1 +40687,236596347,Brooklyn,Bedford-Stuyvesant,40.68226,-73.94493,Private room,69,2,1,0.29,1,95 +40688,15989140,Brooklyn,Greenpoint,40.73636,-73.95538,Entire home/apt,115,30,0,,1,3 +40689,27446767,Brooklyn,Williamsburg,40.712720000000004,-73.95599,Private room,59,4,0,,1,0 +40690,154390742,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95862,Entire home/apt,120,2,8,1.41,1,0 +40691,236607981,Brooklyn,Bushwick,40.69494,-73.92724,Private room,80,1,0,,1,0 +40692,174559516,Brooklyn,Williamsburg,40.70214,-73.94511999999999,Entire home/apt,120,5,1,0.23,1,0 +40693,16334409,Manhattan,East Harlem,40.79445,-73.93183,Entire home/apt,57,24,0,,2,181 +40694,236631469,Bronx,Williamsbridge,40.88449,-73.86227,Private room,25,30,0,,1,85 +40695,39192815,Queens,Astoria,40.76533,-73.92171,Entire home/apt,95,2,0,,1,0 +40696,115136074,Queens,Springfield Gardens,40.68955,-73.74866999999999,Private room,65,2,10,2.38,3,68 +40697,81636631,Brooklyn,Bedford-Stuyvesant,40.67893,-73.91014,Entire home/apt,100,3,0,,1,89 +40698,236659049,Brooklyn,Bushwick,40.69157,-73.90435,Entire home/apt,140,2,12,2.07,4,48 +40699,6486059,Manhattan,Washington Heights,40.854420000000005,-73.93266,Entire home/apt,85,4,4,0.72,1,8 +40700,274333,Manhattan,Harlem,40.8013,-73.95474,Entire home/apt,87,3,2,0.95,3,49 +40701,114548258,Manhattan,SoHo,40.72749,-74.0018,Entire home/apt,205,1,2,2.0,2,124 +40702,234214434,Brooklyn,Bushwick,40.70016,-73.93042,Entire home/apt,145,30,6,1.64,4,224 +40703,107434423,Manhattan,West Village,40.73588,-74.00474,Entire home/apt,236,30,0,,232,273 +40704,7831209,Manhattan,East Harlem,40.80745,-73.93955,Private room,72,1,2,0.45,10,365 +40705,2903063,Brooklyn,Bedford-Stuyvesant,40.68878,-73.94103,Entire home/apt,149,2,24,4.8,1,194 +40706,236745428,Brooklyn,Flatbush,40.640029999999996,-73.955,Entire home/apt,95,2,9,1.79,1,0 +40707,107434423,Manhattan,Chelsea,40.752179999999996,-73.99540999999999,Entire home/apt,213,30,0,,232,303 +40708,17790600,Brooklyn,Prospect-Lefferts Gardens,40.65801,-73.95732,Entire home/apt,150,4,0,,1,127 +40709,214623686,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95184,Entire home/apt,80,2,19,4.67,1,81 +40710,236445157,Manhattan,Greenwich Village,40.7315,-73.99961,Private room,80,180,5,0.9,3,331 +40711,217836856,Manhattan,Chinatown,40.71865,-73.99587,Entire home/apt,190,1,46,8.47,2,232 +40712,14278450,Manhattan,Lower East Side,40.719229999999996,-73.98935,Entire home/apt,200,1,7,1.86,1,0 +40713,19418202,Bronx,Van Nest,40.84555,-73.86787,Private room,50,1,19,4.35,1,32 +40714,137567864,Bronx,Melrose,40.82421,-73.917,Entire home/apt,99,2,11,1.94,1,107 +40715,224414117,Manhattan,Hell's Kitchen,40.75636,-73.99675,Private room,199,1,5,0.99,30,362 +40716,15147054,Brooklyn,Bushwick,40.696329999999996,-73.93369,Entire home/apt,95,3,0,,2,0 +40717,224414117,Manhattan,Hell's Kitchen,40.756409999999995,-73.99706,Private room,129,1,2,0.41,30,363 +40718,47038126,Manhattan,Upper West Side,40.7859,-73.9723,Entire home/apt,300,3,2,0.45,2,40 +40719,224414117,Manhattan,Hell's Kitchen,40.75504,-73.99716,Private room,199,1,3,0.89,30,360 +40720,47038126,Manhattan,Upper West Side,40.78541,-73.97343000000001,Private room,110,1,2,1.4,2,72 +40721,20056779,Queens,Forest Hills,40.72282,-73.85479000000001,Entire home/apt,175,2,11,1.96,1,172 +40722,236852677,Bronx,Fordham,40.86906,-73.88753,Entire home/apt,200,2,1,1.0,1,32 +40723,236406472,Queens,Astoria,40.75667,-73.92726,Private room,60,5,4,1.29,1,150 +40724,3246916,Brooklyn,Williamsburg,40.7049,-73.93301,Entire home/apt,250,3,2,0.37,1,0 +40725,192895513,Queens,Flushing,40.75528,-73.83072,Private room,99,3,2,0.78,3,336 +40726,12618858,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92974,Entire home/apt,130,2,5,1.39,2,64 +40727,16949541,Brooklyn,Williamsburg,40.7133,-73.96341,Entire home/apt,120,5,12,3.5,2,107 +40728,217910985,Queens,Flushing,40.74295,-73.82544,Private room,55,5,0,,1,132 +40729,148787736,Brooklyn,Gowanus,40.667629999999996,-73.9919,Entire home/apt,115,1,2,2.0,2,93 +40730,57135136,Queens,Far Rockaway,40.59794,-73.74688,Entire home/apt,250,10,0,,1,179 +40731,236914360,Brooklyn,Crown Heights,40.67427,-73.94826,Private room,80,1,1,0.3,1,89 +40732,236445157,Manhattan,Greenwich Village,40.72939,-74.00064,Private room,80,180,1,0.55,3,219 +40733,92588965,Brooklyn,East Flatbush,40.64842,-73.92753,Entire home/apt,45,2,17,2.98,1,248 +40734,96086378,Manhattan,Midtown,40.75359,-73.97325,Entire home/apt,1295,1,1,0.48,2,289 +40735,237012945,Queens,Astoria,40.76923,-73.91855,Entire home/apt,79,4,0,,1,0 +40736,232778333,Brooklyn,Bensonhurst,40.61245,-73.99684,Private room,29,15,2,1.2,2,244 +40737,237049868,Brooklyn,Williamsburg,40.713640000000005,-73.9383,Entire home/apt,95,1,2,0.56,1,0 +40738,23969698,Queens,Kew Gardens,40.7078,-73.83634,Private room,40,1,9,1.61,2,0 +40739,235073206,Manhattan,Harlem,40.81893,-73.94511999999999,Private room,75,1,20,3.8,4,192 +40740,236896088,Manhattan,Chelsea,40.74125,-73.99876,Entire home/apt,200,2,4,0.85,1,6 +40741,4852748,Manhattan,Harlem,40.8063,-73.9454,Private room,105,4,2,1.15,6,119 +40742,26738513,Brooklyn,Bushwick,40.69187,-73.91464,Entire home/apt,135,7,0,,3,204 +40743,154302755,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92766,Entire home/apt,130,3,8,1.47,5,110 +40744,154302755,Brooklyn,Bedford-Stuyvesant,40.68796,-73.9259,Private room,60,3,5,0.89,5,110 +40745,154302755,Brooklyn,Bedford-Stuyvesant,40.68803,-73.92600999999999,Private room,50,2,6,1.15,5,125 +40746,10371008,Manhattan,Upper East Side,40.76455,-73.95645999999999,Entire home/apt,135,4,1,1.0,2,217 +40747,513839,Brooklyn,Greenpoint,40.73444,-73.95658,Entire home/apt,120,30,3,0.53,1,209 +40748,237107169,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92443,Entire home/apt,136,2,18,3.46,1,74 +40749,50339845,Manhattan,Upper West Side,40.7733,-73.98913,Private room,50,1,3,0.53,1,0 +40750,137358866,Queens,Woodside,40.74373,-73.90804,Private room,41,30,0,,103,215 +40751,237201559,Manhattan,Upper East Side,40.77112,-73.95405,Entire home/apt,175,2,16,3.72,1,233 +40752,37277862,Manhattan,Harlem,40.808640000000004,-73.94453,Entire home/apt,85,2,7,1.24,1,0 +40753,510931,Manhattan,Battery Park City,40.70438,-74.01657,Private room,71,14,0,,2,63 +40754,155668897,Queens,Jamaica,40.666779999999996,-73.78361,Private room,80,14,6,1.05,2,365 +40755,184600679,Brooklyn,Williamsburg,40.71013,-73.95206,Private room,85,6,1,0.43,1,0 +40756,91571876,Manhattan,Lower East Side,40.71889,-73.99231,Entire home/apt,255,2,13,2.32,1,239 +40757,237204047,Manhattan,West Village,40.72963,-74.0033,Entire home/apt,250,2,11,2.34,1,0 +40758,237280886,Manhattan,Harlem,40.82636,-73.94985,Entire home/apt,95,2,0,,1,0 +40759,237283897,Manhattan,Theater District,40.75412,-73.98601,Entire home/apt,119,1,18,3.18,1,302 +40760,111586798,Bronx,Soundview,40.82121,-73.87764,Private room,65,7,0,,1,90 +40761,1306854,Manhattan,Lower East Side,40.71991,-73.98505,Entire home/apt,110,30,0,,1,172 +40762,10318796,Manhattan,Midtown,40.75403,-73.9715,Private room,160,2,0,,1,0 +40763,181382109,Brooklyn,Crown Heights,40.669109999999996,-73.95982,Private room,68,1,1,0.52,1,59 +40764,5095364,Manhattan,Nolita,40.72095,-73.99756,Entire home/apt,1200,1,1,0.19,1,27 +40765,237320600,Manhattan,Midtown,40.7532,-73.97140999999999,Private room,119,2,1,0.21,1,0 +40766,113805886,Manhattan,Upper East Side,40.77694,-73.94994,Entire home/apt,250,31,1,0.25,33,365 +40767,208136645,Brooklyn,Flatlands,40.62655,-73.9407,Private room,49,2,1,0.31,4,96 +40768,237336458,Manhattan,Chelsea,40.737829999999995,-73.99775,Private room,99,12,12,2.11,4,21 +40769,79697038,Manhattan,Kips Bay,40.741440000000004,-73.98079,Entire home/apt,200,30,4,0.85,1,88 +40770,111542307,Brooklyn,Bedford-Stuyvesant,40.68694,-73.92732,Shared room,20,30,0,,2,342 +40771,237406328,Brooklyn,Williamsburg,40.71447,-73.95108,Entire home/apt,140,2,30,5.56,1,135 +40772,27473538,Brooklyn,Greenpoint,40.72712,-73.95674,Entire home/apt,250,5,0,,1,43 +40773,204811322,Manhattan,Chelsea,40.748259999999995,-73.98886999999999,Private room,220,3,5,2.73,2,21 +40774,130023,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93104,Entire home/apt,145,5,5,1.43,2,244 +40775,236432765,Brooklyn,Williamsburg,40.71524,-73.9553,Entire home/apt,200,2,14,3.93,2,330 +40776,230930866,Brooklyn,Williamsburg,40.71788,-73.96398,Entire home/apt,175,3,2,0.53,1,5 +40777,7571700,Brooklyn,Williamsburg,40.70404,-73.93348,Private room,45,3,3,0.76,1,0 +40778,225612108,Manhattan,Upper West Side,40.79385,-73.96351,Entire home/apt,120,7,1,0.28,1,0 +40779,46324691,Queens,Astoria,40.77026,-73.92574,Entire home/apt,125,7,2,0.58,1,0 +40780,108150300,Brooklyn,Greenpoint,40.727129999999995,-73.95509,Entire home/apt,150,1,1,0.21,2,2 +40781,310670,Bronx,Eastchester,40.88009,-73.83456,Private room,68,2,0,,13,364 +40782,237464350,Manhattan,East Village,40.73315,-73.98688,Entire home/apt,167,5,13,2.75,1,91 +40783,50612451,Brooklyn,Crown Heights,40.67577,-73.92393,Entire home/apt,220,3,4,4.0,1,76 +40784,237283862,Manhattan,Financial District,40.705040000000004,-74.00787,Entire home/apt,250,2,6,1.26,1,0 +40785,73676875,Bronx,Claremont Village,40.84381,-73.90827,Entire home/apt,80,2,0,,1,321 +40786,4005376,Manhattan,Upper West Side,40.78966,-73.9776,Entire home/apt,107,25,1,0.47,1,170 +40787,137734836,Queens,Astoria,40.7576,-73.91735,Private room,54,2,1,1.0,1,56 +40788,16098958,Manhattan,Midtown,40.750029999999995,-73.97059,Entire home/apt,135,30,0,,96,156 +40789,138456145,Brooklyn,Bushwick,40.69294,-73.90744000000001,Private room,35,7,1,0.41,1,36 +40790,237474824,Brooklyn,South Slope,40.66052,-73.9843,Entire home/apt,45,5,1,0.23,1,28 +40791,237482248,Queens,Sunnyside,40.74372,-73.92416,Entire home/apt,200,1,1,1.0,1,179 +40792,121842697,Brooklyn,Crown Heights,40.67648,-73.93814,Entire home/apt,200,5,14,3.59,1,96 +40793,206288086,Brooklyn,Fort Greene,40.6927,-73.97265,Entire home/apt,165,2,13,3.05,2,273 +40794,41108789,Manhattan,Chinatown,40.71444,-73.99344,Private room,85,2,25,5.0,1,24 +40795,220071184,Brooklyn,Williamsburg,40.70824,-73.94423,Private room,57,2,1,1.0,1,3 +40796,13773574,Manhattan,Midtown,40.76497,-73.98191,Entire home/apt,225,30,0,,12,328 +40797,28334703,Manhattan,Upper West Side,40.779740000000004,-73.97973,Entire home/apt,150,4,2,0.71,1,7 +40798,86604612,Brooklyn,Williamsburg,40.70624,-73.9508,Private room,75,2,3,0.74,1,0 +40799,237569289,Manhattan,Gramercy,40.73792,-73.98306,Entire home/apt,220,90,6,1.21,1,0 +40800,8810794,Queens,Long Island City,40.74776,-73.92875,Private room,50,1,10,2.13,1,125 +40801,49539959,Brooklyn,Crown Heights,40.67375,-73.91242,Private room,50,30,5,0.93,2,0 +40802,48911266,Manhattan,Chinatown,40.71382,-73.99609,Entire home/apt,175,2,4,0.85,2,18 +40803,11914604,Queens,Long Island City,40.74649,-73.9525,Private room,70,15,3,1.32,1,135 +40804,32552738,Brooklyn,Kensington,40.64159,-73.9796,Entire home/apt,90,2,9,1.75,1,0 +40805,24618314,Brooklyn,Bedford-Stuyvesant,40.68638,-73.95442,Entire home/apt,56,3,2,0.36,1,0 +40806,71635863,Brooklyn,Bushwick,40.69034,-73.91976,Private room,65,1,25,4.78,1,7 +40807,14892784,Manhattan,Midtown,40.75979,-73.96463,Private room,100,1,20,4.29,1,7 +40808,51596474,Brooklyn,Gravesend,40.58453,-73.97171999999999,Shared room,20,5,5,1.01,12,0 +40809,13743148,Manhattan,Washington Heights,40.8429,-73.93858,Private room,65,1,0,,1,310 +40810,237668552,Brooklyn,Cobble Hill,40.68525,-73.99837,Entire home/apt,200,2,4,1.38,2,22 +40811,169148493,Queens,Ditmars Steinway,40.77363,-73.91188000000001,Private room,90,4,0,,1,0 +40812,13419129,Manhattan,East Harlem,40.799659999999996,-73.9417,Entire home/apt,97,1,16,3.38,1,11 +40813,151557263,Queens,Astoria,40.763329999999996,-73.91187,Private room,45,2,13,2.57,1,53 +40814,237715800,Brooklyn,East New York,40.669959999999996,-73.87637,Entire home/apt,85,1,43,7.87,1,161 +40815,111142003,Queens,Flushing,40.751870000000004,-73.81691,Private room,40,1,10,2.52,1,205 +40816,153793156,Manhattan,Morningside Heights,40.81633,-73.96069,Private room,50,2,15,3.6,1,2 +40817,3072696,Manhattan,Harlem,40.81369,-73.94996,Private room,100,1,6,1.58,1,125 +40818,220480440,Queens,Glendale,40.70534,-73.87995,Private room,50,2,18,3.78,2,63 +40819,237804845,Manhattan,West Village,40.73409,-74.00464000000001,Entire home/apt,299,1,13,3.22,1,61 +40820,237817180,Brooklyn,Park Slope,40.67378,-73.98299,Entire home/apt,285,5,9,1.86,1,2 +40821,80561485,Queens,Astoria,40.7744,-73.93344,Entire home/apt,170,1,3,0.58,2,41 +40822,47664369,Brooklyn,Sunset Park,40.661229999999996,-73.9971,Entire home/apt,100,1,9,2.03,1,35 +40823,170256169,Brooklyn,Canarsie,40.6354,-73.90039,Entire home/apt,60,2,45,9.64,1,30 +40824,15058648,Brooklyn,Bushwick,40.69814,-73.92805,Private room,70,3,3,1.13,3,21 +40825,44093954,Queens,Whitestone,40.78236,-73.82092,Entire home/apt,140,1,9,1.64,1,204 +40826,223075114,Manhattan,West Village,40.73386,-74.00038,Entire home/apt,215,2,2,1.03,1,5 +40827,11082069,Queens,Ridgewood,40.702709999999996,-73.90517,Entire home/apt,52,7,1,0.19,1,0 +40828,237880163,Queens,Sunnyside,40.7379,-73.92911,Private room,85,1,21,4.92,1,80 +40829,9582338,Manhattan,NoHo,40.726259999999996,-73.99316,Entire home/apt,250,3,9,2.7,1,112 +40830,213014559,Queens,East Elmhurst,40.76893,-73.87711999999999,Entire home/apt,135,1,17,3.57,2,0 +40831,204811322,Manhattan,Midtown,40.74827,-73.98865,Entire home/apt,230,3,2,0.51,2,29 +40832,222424429,Manhattan,Washington Heights,40.845620000000004,-73.94031,Private room,54,3,17,3.31,2,38 +40833,47114213,Queens,Long Island City,40.76117,-73.93127,Entire home/apt,70,2,11,2.29,1,3 +40834,234174616,Brooklyn,East New York,40.67349,-73.88705,Entire home/apt,100,5,0,,1,180 +40835,237913872,Staten Island,Concord,40.60228,-74.08324,Private room,75,2,8,1.78,1,90 +40836,3767367,Manhattan,Upper West Side,40.79397,-73.972,Private room,80,3,7,2.47,3,334 +40837,208930169,Brooklyn,Canarsie,40.63028,-73.90120999999999,Entire home/apt,110,2,0,,1,353 +40838,16480700,Manhattan,Harlem,40.81953,-73.95476,Entire home/apt,250,1,0,,7,249 +40839,107434423,Manhattan,Tribeca,40.714940000000006,-74.00676,Entire home/apt,349,30,0,,232,310 +40840,172895347,Queens,Jackson Heights,40.75168,-73.88315,Private room,59,2,1,0.19,2,0 +40841,91390716,Manhattan,Harlem,40.81207,-73.94335,Entire home/apt,80,2,3,0.63,1,0 +40842,237921255,Manhattan,Hell's Kitchen,40.76246,-73.9953,Entire home/apt,325,1,33,6.11,1,217 +40843,2278050,Manhattan,Upper West Side,40.80272,-73.96916,Private room,80,5,3,0.65,1,188 +40844,234191916,Queens,Queens Village,40.71131,-73.74623000000001,Entire home/apt,69,1,34,6.46,1,170 +40845,23670318,Brooklyn,Williamsburg,40.7135,-73.94644,Private room,48,28,0,,1,0 +40846,42153340,Brooklyn,Greenpoint,40.723279999999995,-73.94969,Entire home/apt,120,2,2,0.42,2,0 +40847,49736436,Manhattan,Washington Heights,40.83583,-73.93847,Entire home/apt,120,3,2,2.0,2,116 +40848,50497157,Brooklyn,Williamsburg,40.71248,-73.94859,Private room,45,3,1,0.22,1,0 +40849,170638981,Brooklyn,Prospect-Lefferts Gardens,40.6598,-73.95879000000001,Entire home/apt,85,2,25,4.78,1,28 +40850,234592314,Brooklyn,Midwood,40.61459,-73.96041,Entire home/apt,59,2,4,0.73,1,87 +40851,19043103,Manhattan,Chelsea,40.75124,-73.99523,Entire home/apt,100,5,6,1.1,1,8 +40852,200927536,Brooklyn,Bushwick,40.70535,-73.91816999999999,Private room,65,7,0,,3,329 +40853,3042136,Brooklyn,Carroll Gardens,40.6827,-73.99141999999999,Entire home/apt,375,6,1,0.41,3,7 +40854,238111285,Brooklyn,Bushwick,40.68542,-73.90952,Private room,45,2,1,0.19,1,0 +40855,2690800,Manhattan,East Village,40.7221,-73.98304,Entire home/apt,117,5,6,1.22,1,0 +40856,238119405,Brooklyn,Bushwick,40.682190000000006,-73.90737,Private room,48,1,18,3.72,5,189 +40857,238119405,Brooklyn,Bushwick,40.68209,-73.90671999999999,Private room,48,1,11,1.98,5,166 +40858,238119405,Brooklyn,Bushwick,40.68161,-73.90618,Private room,53,2,10,2.61,5,158 +40859,63966717,Bronx,Belmont,40.85929,-73.89165,Private room,99,2,1,0.25,2,0 +40860,238119405,Brooklyn,Bushwick,40.682159999999996,-73.90642,Private room,48,1,4,0.73,5,166 +40861,160739637,Manhattan,Upper West Side,40.80153,-73.9655,Entire home/apt,150,5,0,,1,74 +40862,67746251,Queens,Ozone Park,40.680690000000006,-73.8494,Private room,44,1,42,8.03,4,32 +40863,124028462,Manhattan,Harlem,40.80384,-73.95765,Private room,55,30,1,0.23,3,353 +40864,219505617,Manhattan,Harlem,40.803509999999996,-73.95822,Private room,85,1,18,3.62,1,92 +40865,238118741,Bronx,Mott Haven,40.81132,-73.92036999999999,Entire home/apt,115,3,19,3.41,1,228 +40866,238145460,Brooklyn,Flatbush,40.63037,-73.95671,Private room,45,1,9,1.72,1,129 +40867,123060492,Queens,Astoria,40.7679,-73.91764,Entire home/apt,75,5,2,0.41,1,0 +40868,52577963,Queens,Woodhaven,40.690540000000006,-73.84812,Entire home/apt,99,5,7,1.62,6,319 +40869,78326799,Brooklyn,Gowanus,40.68289,-73.9878,Private room,80,1,2,0.63,1,0 +40870,56656728,Manhattan,Financial District,40.71115,-74.00834,Entire home/apt,209,3,12,2.2,5,107 +40871,215577249,Brooklyn,Bushwick,40.69254,-73.90445,Entire home/apt,185,2,0,,8,320 +40872,215577249,Brooklyn,Bushwick,40.69213,-73.90248000000001,Private room,65,2,15,2.81,8,344 +40873,215577249,Brooklyn,Bushwick,40.6918,-73.90414,Private room,65,2,21,3.84,8,321 +40874,137358866,Queens,Woodside,40.744659999999996,-73.90899999999999,Private room,38,30,0,,103,244 +40875,236445157,Manhattan,SoHo,40.7276,-74.00275,Private room,80,180,1,0.25,3,342 +40876,159811367,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94043,Private room,75,30,0,,10,364 +40877,127583166,Manhattan,Washington Heights,40.83919,-73.94585,Private room,75,3,2,0.41,2,0 +40878,107434423,Manhattan,Chelsea,40.751940000000005,-73.99501,Entire home/apt,243,30,0,,232,1 +40879,1533007,Manhattan,Chinatown,40.71683,-73.99172,Entire home/apt,130,3,15,3.04,1,15 +40880,10512556,Brooklyn,Bushwick,40.70108,-73.92401,Private room,55,2,0,,1,0 +40881,3659285,Brooklyn,Williamsburg,40.70787,-73.95501,Entire home/apt,160,1,22,4.49,1,237 +40882,89896526,Manhattan,Financial District,40.710809999999995,-74.00846,Entire home/apt,115,30,1,0.24,1,4 +40883,231212364,Brooklyn,Bensonhurst,40.60556,-73.99898,Entire home/apt,123,3,3,1.06,2,147 +40884,37412692,Manhattan,Midtown,40.76697,-73.98176,Entire home/apt,105,30,0,,4,339 +40885,217784241,Brooklyn,Williamsburg,40.71011,-73.96086,Entire home/apt,280,1,12,3.21,4,250 +40886,185049106,Manhattan,West Village,40.73271,-74.00324,Entire home/apt,700,4,10,2.56,1,127 +40887,217784241,Brooklyn,Williamsburg,40.709990000000005,-73.96096999999999,Private room,70,1,33,6.92,4,0 +40888,238323020,Manhattan,Upper East Side,40.76672,-73.96110999999999,Entire home/apt,129,1,23,4.16,1,109 +40889,238321827,Brooklyn,East Flatbush,40.65057,-73.92383000000001,Private room,37,1,51,9.56,1,341 +40890,238324936,Manhattan,Hell's Kitchen,40.76315,-73.98711,Private room,150,1,4,0.75,3,149 +40891,238324936,Manhattan,Hell's Kitchen,40.76463,-73.98772,Private room,150,1,3,0.56,3,152 +40892,8895249,Manhattan,Harlem,40.82297,-73.93948,Private room,54,2,12,2.83,1,129 +40893,19755137,Manhattan,Upper West Side,40.77809,-73.97962,Entire home/apt,185,7,0,,1,55 +40894,30077950,Manhattan,East Village,40.732009999999995,-73.98768000000001,Entire home/apt,250,2,0,,1,0 +40895,80093359,Brooklyn,Bushwick,40.6856,-73.91413,Entire home/apt,79,2,4,0.86,2,0 +40896,147351617,Manhattan,Battery Park City,40.71085,-74.01801,Entire home/apt,200,2,17,3.05,1,79 +40897,238342493,Brooklyn,Cobble Hill,40.68846,-73.99557,Entire home/apt,250,2,19,3.63,1,295 +40898,109276977,Brooklyn,Williamsburg,40.71033,-73.95868,Private room,59,1,1,0.21,1,0 +40899,35486274,Manhattan,SoHo,40.724509999999995,-74.00385,Entire home/apt,132,2,3,0.73,1,0 +40900,154981576,Brooklyn,Bushwick,40.70048,-73.91229,Private room,34,30,0,,9,196 +40901,191084919,Brooklyn,Bedford-Stuyvesant,40.68434,-73.93712,Private room,70,1,5,1.97,1,0 +40902,93690639,Brooklyn,Bensonhurst,40.611090000000004,-74.00239,Private room,90,1,0,,1,0 +40903,238374006,Queens,Flushing,40.76398,-73.82426,Private room,40,2,1,0.32,1,153 +40904,25169596,Manhattan,West Village,40.73304,-74.00059,Entire home/apt,250,1,21,4.34,2,271 +40905,11672284,Brooklyn,Bushwick,40.70471,-73.92477,Private room,89,2,0,,2,0 +40906,51596474,Brooklyn,Gravesend,40.58421,-73.97104,Private room,35,5,1,0.21,12,0 +40907,124028462,Manhattan,Harlem,40.80515,-73.95651,Private room,59,30,1,0.26,3,332 +40908,44801404,Brooklyn,Crown Heights,40.66897,-73.92848000000001,Private room,130,14,0,,1,365 +40909,124028462,Manhattan,Harlem,40.80492,-73.95817,Private room,59,30,2,0.5,3,333 +40910,4375988,Brooklyn,Prospect-Lefferts Gardens,40.65952,-73.95526,Private room,50,1,0,,3,305 +40911,39528519,Manhattan,Lower East Side,40.70988,-73.98686,Private room,73,15,0,,28,185 +40912,73425483,Brooklyn,Bedford-Stuyvesant,40.69254,-73.93823,Entire home/apt,400,2,0,,6,0 +40913,39528519,Manhattan,Lower East Side,40.70961,-73.98679,Private room,73,15,0,,28,185 +40914,552627,Manhattan,Harlem,40.82458,-73.93883000000001,Private room,39,2,0,,2,315 +40915,3443943,Brooklyn,Carroll Gardens,40.6766,-73.99855,Private room,225,3,1,0.48,1,178 +40916,34097291,Brooklyn,South Slope,40.66626,-73.98127,Entire home/apt,275,1,0,,1,0 +40917,43976480,Brooklyn,Greenpoint,40.721740000000004,-73.94802,Private room,65,1,32,8.5,1,22 +40918,198674748,Brooklyn,Prospect-Lefferts Gardens,40.6615,-73.95307,Entire home/apt,126,3,23,4.51,1,6 +40919,193725343,Brooklyn,Bedford-Stuyvesant,40.68809,-73.95855,Private room,63,1,3,0.74,1,44 +40920,238496151,Brooklyn,Bedford-Stuyvesant,40.69569,-73.94792,Entire home/apt,165,5,8,2.67,1,81 +40921,123672154,Brooklyn,Greenpoint,40.73392,-73.95203000000001,Private room,65,1,3,0.55,2,0 +40922,61278632,Manhattan,Harlem,40.82049,-73.95268,Private room,50,3,3,0.74,1,7 +40923,8849869,Manhattan,Upper West Side,40.79118,-73.97091,Entire home/apt,110,30,1,0.59,1,3 +40924,200239515,Queens,Woodside,40.745779999999996,-73.89328,Private room,40,30,1,0.26,15,1 +40925,235559424,Manhattan,Upper East Side,40.77567,-73.95961,Entire home/apt,495,2,15,3.31,1,156 +40926,236148005,Manhattan,Flatiron District,40.74158,-73.98593000000001,Entire home/apt,200,2,8,1.95,1,34 +40927,231510804,Brooklyn,Canarsie,40.635020000000004,-73.88834,Entire home/apt,130,1,57,10.36,1,337 +40928,200239515,Queens,Woodside,40.74438,-73.89161,Private room,40,30,1,0.23,15,44 +40929,18957069,Queens,Woodside,40.74734,-73.89735,Entire home/apt,95,2,0,,1,17 +40930,22100836,Manhattan,Gramercy,40.73782,-73.98546999999999,Entire home/apt,218,1,6,1.49,3,0 +40931,22100836,Manhattan,Flatiron District,40.73943,-73.98532,Private room,65,1,14,2.98,3,0 +40932,152895936,Queens,Elmhurst,40.73538,-73.87892,Private room,34,28,0,,1,0 +40933,26317294,Manhattan,Upper West Side,40.77796,-73.98213,Private room,95,275,0,,1,365 +40934,19303369,Queens,Elmhurst,40.74001,-73.87629,Private room,32,29,1,0.3,37,31 +40935,6030450,Brooklyn,Bedford-Stuyvesant,40.68442,-73.92441,Private room,80,3,6,1.41,1,179 +40936,11672284,Brooklyn,Bushwick,40.705259999999996,-73.92446,Private room,250,2,0,,2,97 +40937,46072382,Brooklyn,Bushwick,40.69863,-73.934,Entire home/apt,107,4,1,0.23,1,0 +40938,14743889,Brooklyn,Bedford-Stuyvesant,40.68427,-73.9546,Private room,46,1,18,3.33,1,16 +40939,179679,Brooklyn,Williamsburg,40.71144,-73.95576,Entire home/apt,175,2,4,0.99,3,14 +40940,40160805,Queens,Flushing,40.754059999999996,-73.80156,Entire home/apt,159,3,1,1.0,1,78 +40941,27974952,Brooklyn,East Flatbush,40.64434,-73.9504,Shared room,31,30,0,,7,365 +40942,238685151,Queens,Astoria,40.76595,-73.90829000000001,Entire home/apt,115,1,30,5.81,1,85 +40943,94049573,Manhattan,East Harlem,40.813390000000005,-73.93616999999999,Private room,75,1,16,4.8,1,199 +40944,120974332,Manhattan,East Harlem,40.79568,-73.93368000000001,Private room,50,2,6,1.1,2,5 +40945,49725053,Manhattan,Tribeca,40.721540000000005,-74.00664,Private room,149,1,6,1.7,1,336 +40946,15402077,Manhattan,East Village,40.72043,-73.97923,Private room,84,2,0,,1,0 +40947,12470243,Brooklyn,Bushwick,40.69713,-73.93035,Private room,50,15,0,,1,0 +40948,238733096,Queens,Richmond Hill,40.68378,-73.83136,Entire home/apt,175,2,7,2.88,2,345 +40949,61875246,Queens,Whitestone,40.7866,-73.82207,Private room,65,1,14,4.77,2,5 +40950,238748653,Manhattan,Murray Hill,40.74661,-73.97195,Private room,90,7,5,1.06,1,8 +40951,7700456,Manhattan,Washington Heights,40.85548,-73.93741,Entire home/apt,89,7,0,,1,1 +40952,238750007,Manhattan,Harlem,40.82335,-73.94939000000001,Entire home/apt,145,4,20,3.66,3,310 +40953,2582224,Manhattan,East Village,40.72749,-73.98674,Entire home/apt,150,5,1,0.43,1,249 +40954,220480440,Queens,Glendale,40.694720000000004,-73.89663,Private room,50,2,18,3.6,2,127 +40955,68717996,Manhattan,Upper East Side,40.78136,-73.94709,Private room,87,4,11,2.02,1,46 +40956,5704932,Bronx,Fordham,40.86643,-73.88895,Private room,65,2,7,1.28,3,110 +40957,7261749,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95421,Private room,30,4,2,0.81,1,6 +40958,238750007,Manhattan,Harlem,40.82163,-73.94757,Entire home/apt,145,4,17,3.09,3,265 +40959,155691688,Manhattan,Hell's Kitchen,40.76655,-73.9891,Entire home/apt,225,1,19,5.64,1,50 +40960,209940785,Manhattan,Harlem,40.823370000000004,-73.95127,Shared room,100,1,1,0.21,1,90 +40961,56403037,Queens,Woodhaven,40.68793,-73.84975,Private room,42,1,16,3.36,3,121 +40962,236671534,Brooklyn,Brooklyn Heights,40.696529999999996,-73.99540999999999,Entire home/apt,75,3,1,0.21,1,94 +40963,169318289,Manhattan,Gramercy,40.73572,-73.98017,Entire home/apt,90,1,11,2.31,1,89 +40964,107434423,Manhattan,Midtown,40.76175,-73.97592,Entire home/apt,267,30,0,,232,188 +40965,162280872,Manhattan,Upper East Side,40.77598,-73.94904,Entire home/apt,140,30,1,0.37,13,276 +40966,238321374,Manhattan,Upper West Side,40.798840000000006,-73.95983000000001,Private room,60,30,2,1.46,32,337 +40967,238321374,Manhattan,Upper West Side,40.799659999999996,-73.96059,Private room,60,30,1,1.0,32,333 +40968,238779678,Manhattan,East Village,40.72631,-73.98876,Private room,73,30,1,0.43,9,332 +40969,238321374,Manhattan,Upper West Side,40.80014,-73.96132,Private room,60,30,0,,32,347 +40970,238321374,Manhattan,Upper West Side,40.7988,-73.96096,Private room,60,30,0,,32,342 +40971,238321374,Manhattan,Upper West Side,40.79821,-73.9609,Private room,60,30,0,,32,356 +40972,157896836,Brooklyn,Greenpoint,40.72115,-73.94841,Private room,48,1,1,0.2,1,0 +40973,238321374,Manhattan,Upper West Side,40.79971,-73.96075,Private room,60,30,0,,32,364 +40974,2559194,Brooklyn,Greenpoint,40.727309999999996,-73.95482,Private room,100,14,0,,1,188 +40975,238321374,Manhattan,Upper West Side,40.79887,-73.95968,Private room,60,30,1,1.0,32,342 +40976,238321374,Manhattan,Upper West Side,40.79959,-73.95924000000001,Private room,60,30,1,1.0,32,346 +40977,238321374,Manhattan,Upper West Side,40.79891,-73.96115999999999,Private room,60,30,1,0.83,32,325 +40978,238321374,Manhattan,Upper West Side,40.80044,-73.95953,Private room,60,30,0,,32,317 +40979,2970272,Brooklyn,Crown Heights,40.674279999999996,-73.9481,Private room,80,2,0,,1,0 +40980,238321374,Manhattan,Upper West Side,40.79823,-73.96064,Private room,60,30,1,1.0,32,341 +40981,238321374,Manhattan,Upper West Side,40.80008,-73.95926,Private room,60,30,1,1.0,32,365 +40982,238321374,Manhattan,Upper West Side,40.798809999999996,-73.9596,Private room,60,30,0,,32,329 +40983,238321374,Manhattan,Upper West Side,40.79852,-73.96091,Private room,60,30,0,,32,317 +40984,238321374,Manhattan,Upper West Side,40.79896,-73.95995,Private room,60,30,0,,32,317 +40985,30214212,Brooklyn,Williamsburg,40.715090000000004,-73.958,Entire home/apt,100,28,3,0.9,1,258 +40986,238321374,Manhattan,Upper West Side,40.798390000000005,-73.96126,Private room,60,30,0,,32,317 +40987,105344359,Manhattan,Midtown,40.75408,-73.96831,Entire home/apt,120,2,4,0.77,1,0 +40988,80500739,Brooklyn,Greenpoint,40.7372,-73.95299,Private room,115,1,19,5.33,1,345 +40989,238894847,Brooklyn,Bedford-Stuyvesant,40.68636,-73.95577,Entire home/apt,200,2,11,3.33,1,269 +40990,238953933,Brooklyn,South Slope,40.663709999999995,-73.9876,Entire home/apt,110,1,48,9.93,1,250 +40991,5704932,Bronx,Fordham,40.86566,-73.88748000000001,Private room,65,2,6,1.18,3,77 +40992,238957303,Brooklyn,Bedford-Stuyvesant,40.68439,-73.93753000000001,Private room,57,2,17,3.31,3,146 +40993,799317,Brooklyn,Williamsburg,40.715709999999994,-73.94722,Entire home/apt,175,3,1,0.2,1,0 +40994,238957303,Brooklyn,Bedford-Stuyvesant,40.68502,-73.93893,Private room,44,2,26,4.94,3,118 +40995,29394295,Manhattan,East Harlem,40.7882,-73.9405,Private room,80,3,0,,1,0 +40996,238957303,Brooklyn,Bedford-Stuyvesant,40.68354,-73.9378,Private room,44,2,13,2.58,3,162 +40997,24294060,Queens,Elmhurst,40.7337,-73.88363000000001,Private room,80,3,0,,1,364 +40998,6833598,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91899000000001,Entire home/apt,99,2,13,3.98,1,182 +40999,238975559,Queens,Woodside,40.754129999999996,-73.90204,Entire home/apt,250,2,12,2.81,1,137 +41000,237336458,Manhattan,Chelsea,40.73697,-73.99563,Private room,99,12,3,0.6,4,19 +41001,237336458,Manhattan,Chelsea,40.73894,-73.9952,Private room,99,10,1,0.21,4,31 +41002,140338526,Brooklyn,Park Slope,40.67042,-73.98508000000001,Private room,50,5,0,,1,0 +41003,139838320,Brooklyn,Bedford-Stuyvesant,40.67991,-73.95168000000001,Entire home/apt,86,2,19,3.54,2,284 +41004,235774051,Manhattan,Theater District,40.759170000000005,-73.98246,Entire home/apt,519,2,10,1.86,1,165 +41005,49289095,Queens,Woodside,40.74395,-73.89984,Private room,75,1,0,,1,138 +41006,96810536,Brooklyn,Gowanus,40.667809999999996,-73.99345,Private room,65,2,22,4.23,3,156 +41007,200239515,Queens,Sunnyside,40.73858,-73.92555,Private room,37,30,1,0.6,15,0 +41008,8754633,Manhattan,East Harlem,40.79865,-73.93638,Private room,65,2,8,2.79,1,8 +41009,14501609,Queens,Richmond Hill,40.70203,-73.82840999999999,Private room,40,2,18,3.44,1,30 +41010,1340740,Brooklyn,South Slope,40.66881,-73.98737,Private room,65,7,0,,1,19 +41011,105762561,Queens,Jamaica,40.69102,-73.78438,Private room,65,2,2,0.75,3,319 +41012,239004977,Queens,Queens Village,40.72684,-73.74896,Private room,80,1,0,,1,0 +41013,238955568,Brooklyn,Kensington,40.63581,-73.96977,Private room,40,2,20,3.8,1,6 +41014,215577249,Brooklyn,Bushwick,40.692170000000004,-73.90396,Private room,65,2,11,2.24,8,345 +41015,22188,Manhattan,Upper West Side,40.78085,-73.98664000000001,Private room,130,2,0,,2,154 +41016,239035419,Queens,Woodside,40.74362,-73.89158,Private room,70,1,0,,1,5 +41017,192741854,Brooklyn,Bedford-Stuyvesant,40.68436,-73.93564,Entire home/apt,120,2,17,3.75,2,214 +41018,27547703,Brooklyn,Brooklyn Heights,40.69712,-73.99306999999999,Entire home/apt,110,2,2,0.53,1,0 +41019,320428,Manhattan,Upper West Side,40.79095,-73.97291,Entire home/apt,142,7,5,1.17,1,214 +41020,15437944,Brooklyn,Williamsburg,40.707029999999996,-73.95396,Private room,100,2,0,,1,0 +41021,33614329,Brooklyn,Bushwick,40.69549,-73.93006,Entire home/apt,159,1,12,3.03,4,259 +41022,239088720,Bronx,Throgs Neck,40.826879999999996,-73.81899,Private room,40,3,11,2.06,1,0 +41023,238750007,Manhattan,Harlem,40.82292,-73.94802,Entire home/apt,199,2,0,,3,0 +41024,80111968,Brooklyn,Downtown Brooklyn,40.69447,-73.98252,Private room,49,3,1,0.21,1,0 +41025,3734323,Brooklyn,Bushwick,40.68629,-73.91245,Private room,49,2,15,2.8,3,0 +41026,181346298,Manhattan,Lower East Side,40.719229999999996,-73.97972,Private room,75,1,3,2.81,1,364 +41027,239116505,Brooklyn,Bushwick,40.69945,-73.93543000000001,Private room,38,3,1,0.2,1,0 +41028,98214533,Staten Island,Huguenot,40.53982,-74.1728,Entire home/apt,75,2,20,4.38,2,229 +41029,98214533,Staten Island,Huguenot,40.53987,-74.17258000000001,Entire home/apt,100,2,11,2.09,2,259 +41030,207913076,Brooklyn,Brownsville,40.667790000000004,-73.91676,Private room,70,2,3,0.64,1,325 +41031,8803552,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94458,Private room,95,3,0,,1,179 +41032,161769990,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95233,Private room,50,5,2,0.54,2,0 +41033,49988341,Bronx,Wakefield,40.89682,-73.84318,Private room,41,1,0,,1,163 +41034,598896,Brooklyn,Williamsburg,40.71798,-73.95983000000001,Private room,90,2,0,,2,184 +41035,10914119,Brooklyn,Williamsburg,40.71747,-73.96141999999999,Entire home/apt,190,4,4,1.05,1,187 +41036,239168415,Manhattan,Financial District,40.70493,-74.0102,Private room,119,3,4,1.15,1,26 +41037,213760419,Brooklyn,Greenpoint,40.73104,-73.95097,Private room,110,2,5,1.61,1,82 +41038,179136567,Manhattan,East Harlem,40.79423,-73.94740999999999,Entire home/apt,185,1,0,,1,0 +41039,187487947,Brooklyn,Greenpoint,40.73202,-73.95595,Entire home/apt,68,1,20,3.82,6,0 +41040,2707591,Brooklyn,Williamsburg,40.70754,-73.94228000000001,Private room,95,1,6,1.28,1,200 +41041,9736997,Manhattan,East Village,40.72845,-73.98158000000001,Entire home/apt,113,1,20,3.85,1,96 +41042,51186155,Queens,Flushing,40.73182,-73.79505,Entire home/apt,45,1,51,9.39,1,49 +41043,96086378,Manhattan,Midtown,40.75342,-73.97135,Entire home/apt,699,1,1,0.39,2,333 +41044,21019302,Brooklyn,Bedford-Stuyvesant,40.68489,-73.92087,Entire home/apt,200,2,15,3.69,1,300 +41045,129079212,Manhattan,Midtown,40.748290000000004,-73.98326,Entire home/apt,799,5,3,1.73,1,346 +41046,239276795,Manhattan,Washington Heights,40.83794,-73.94256,Private room,42,3,9,2.0,1,1 +41047,53300414,Brooklyn,Gowanus,40.66938,-73.99164,Private room,95,1,4,0.93,2,59 +41048,215385823,Queens,Jamaica Hills,40.71378,-73.80292,Entire home/apt,275,1,11,7.5,2,280 +41049,29301386,Brooklyn,Williamsburg,40.70333,-73.94913000000001,Private room,85,2,16,3.27,1,11 +41050,9472223,Manhattan,Morningside Heights,40.80636,-73.9578,Entire home/apt,79,3,0,,3,0 +41051,15977,Manhattan,Harlem,40.80385,-73.95294,Private room,60,7,6,1.32,1,254 +41052,237718748,Manhattan,East Village,40.72742,-73.98235,Private room,90,5,1,0.28,1,0 +41053,225011474,Manhattan,Midtown,40.74595,-73.98439,Entire home/apt,250,1,41,7.64,1,125 +41054,239351588,Brooklyn,Crown Heights,40.66835,-73.93111999999999,Private room,75,1,12,2.54,1,0 +41055,1746041,Brooklyn,Greenpoint,40.72242,-73.95076,Entire home/apt,450,3,5,1.06,1,43 +41056,115075522,Manhattan,Harlem,40.82656,-73.94648000000001,Entire home/apt,225,1,13,3.22,1,83 +41057,239375612,Brooklyn,Bushwick,40.70455,-73.92565,Private room,30,1,3,0.62,1,0 +41058,384430,Brooklyn,Midwood,40.62583,-73.96236999999999,Private room,120,30,0,,1,252 +41059,239383641,Manhattan,Hell's Kitchen,40.76474,-73.98924,Private room,80,1,30,5.73,1,183 +41060,137725101,Brooklyn,Crown Heights,40.66997,-73.93221,Entire home/apt,100,2,0,,1,12 +41061,131647128,Manhattan,Upper West Side,40.77388,-73.98798000000001,Entire home/apt,275,30,0,,25,329 +41062,183886601,Manhattan,Inwood,40.86763,-73.92259,Entire home/apt,175,30,1,0.27,2,8 +41063,131647128,Manhattan,Upper West Side,40.77537,-73.98938000000001,Entire home/apt,300,30,0,,25,288 +41064,131647128,Manhattan,Upper West Side,40.77438,-73.98716999999999,Entire home/apt,300,30,0,,25,341 +41065,7958766,Brooklyn,Bath Beach,40.59988,-74.00415,Entire home/apt,99,2,17,3.78,1,20 +41066,51596474,Brooklyn,Gravesend,40.58737,-73.96882,Shared room,20,7,2,0.56,12,0 +41067,815436,Brooklyn,Park Slope,40.67364,-73.97954,Entire home/apt,135,2,33,6.31,1,9 +41068,19408182,Manhattan,Little Italy,40.71947,-73.99723,Private room,120,3,3,0.7,1,10 +41069,57885474,Bronx,Wakefield,40.89702,-73.85723,Entire home/apt,289,2,14,2.96,2,356 +41070,20181084,Manhattan,Harlem,40.82441,-73.95323,Private room,60,3,7,2.16,1,199 +41071,239427202,Brooklyn,Bedford-Stuyvesant,40.679320000000004,-73.94740999999999,Entire home/apt,160,2,22,4.71,1,289 +41072,78643953,Brooklyn,Bushwick,40.690290000000005,-73.91533000000001,Entire home/apt,149,3,19,4.52,2,231 +41073,234396332,Queens,East Elmhurst,40.75712,-73.8874,Entire home/apt,99,1,19,4.01,2,143 +41074,1919392,Manhattan,East Village,40.72998,-73.98071,Entire home/apt,100,1,11,2.13,1,0 +41075,219727469,Brooklyn,Bedford-Stuyvesant,40.67895,-73.91077,Private room,75,1,15,3.06,4,52 +41076,86078176,Manhattan,Hell's Kitchen,40.76243,-73.98621,Private room,120,2,0,,1,0 +41077,239517667,Brooklyn,Williamsburg,40.71007,-73.95136,Entire home/apt,199,2,20,3.73,1,61 +41078,239519185,Manhattan,Hell's Kitchen,40.76295,-73.98866,Private room,70,1,30,6.08,2,193 +41079,224414117,Manhattan,Hell's Kitchen,40.7549,-73.99679,Private room,299,1,0,,30,363 +41080,224414117,Manhattan,Hell's Kitchen,40.75628,-73.99643,Private room,299,1,0,,30,365 +41081,4094038,Brooklyn,Williamsburg,40.71197,-73.94223000000001,Private room,75,2,16,4.29,4,25 +41082,12166574,Brooklyn,Bushwick,40.701440000000005,-73.92662,Entire home/apt,120,2,4,0.85,1,14 +41083,6902218,Brooklyn,Red Hook,40.676970000000004,-74.00993000000001,Entire home/apt,250,3,0,,1,1 +41084,195654382,Brooklyn,Sheepshead Bay,40.58508,-73.93800999999999,Private room,60,1,4,0.9,1,77 +41085,67384934,Brooklyn,Flatbush,40.65246,-73.96046,Private room,75,2,4,1.4,1,5 +41086,237250378,Manhattan,Kips Bay,40.7436,-73.98165,Entire home/apt,276,3,12,2.42,1,277 +41087,22337277,Manhattan,Little Italy,40.71839,-73.99729,Entire home/apt,130,13,3,1.32,1,20 +41088,89181972,Bronx,Bronxdale,40.85646,-73.86813000000001,Private room,50,1,14,2.96,1,206 +41089,239571340,Manhattan,Hell's Kitchen,40.765159999999995,-73.99205,Private room,180,1,0,,1,83 +41090,37412692,Manhattan,Midtown,40.76467,-73.98277,Entire home/apt,115,30,0,,4,362 +41091,17062221,Manhattan,Kips Bay,40.73935,-73.98025,Entire home/apt,260,3,6,1.31,2,173 +41092,24425582,Brooklyn,Williamsburg,40.71301,-73.95845,Entire home/apt,128,2,13,2.5,1,27 +41093,22023754,Manhattan,Harlem,40.80725,-73.95470999999999,Private room,75,2,1,1.0,1,22 +41094,158054102,Manhattan,Harlem,40.830259999999996,-73.94455,Private room,60,2,1,1.0,3,71 +41095,135858587,Brooklyn,Crown Heights,40.673,-73.95043000000001,Private room,70,1,8,2.53,1,75 +41096,239605688,Manhattan,Upper East Side,40.76882,-73.96862,Entire home/apt,150,1,0,,1,0 +41097,236334741,Staten Island,Rosebank,40.61588,-74.06711,Entire home/apt,100,1,47,9.1,1,151 +41098,26923225,Brooklyn,Clinton Hill,40.69462,-73.97006,Private room,36,28,2,0.46,1,0 +41099,209374833,Queens,Edgemere,40.59555,-73.76942,Entire home/apt,99,3,5,3.41,2,246 +41100,239644931,Manhattan,Kips Bay,40.73972,-73.98411999999999,Private room,355,2,6,1.13,1,312 +41101,239142480,Manhattan,Chinatown,40.71416,-73.99161,Private room,75,1,0,,1,0 +41102,104859044,Brooklyn,Crown Heights,40.665659999999995,-73.93698,Private room,35,2,7,1.4,1,0 +41103,15652930,Manhattan,Harlem,40.81252,-73.95096,Entire home/apt,211,3,21,4.47,1,30 +41104,12872707,Brooklyn,Bedford-Stuyvesant,40.678979999999996,-73.93982,Private room,40,4,0,,1,0 +41105,10257350,Manhattan,Washington Heights,40.83488,-73.94452,Private room,55,2,8,2.29,2,44 +41106,27867038,Brooklyn,East New York,40.67695,-73.87402,Entire home/apt,62,1,11,3.11,1,351 +41107,161657326,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94103,Private room,37,3,1,0.21,1,0 +41108,196935380,Brooklyn,Flatbush,40.63886,-73.95228,Private room,80,2,0,,1,88 +41109,157310194,Brooklyn,Williamsburg,40.70597,-73.94245,Private room,60,2,16,3.78,1,116 +41110,65631015,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95586999999999,Private room,75,2,2,0.42,1,33 +41111,186251769,Brooklyn,Bedford-Stuyvesant,40.68875,-73.9516,Entire home/apt,110,1,19,5.04,1,34 +41112,11630930,Manhattan,Upper West Side,40.80135,-73.96193000000001,Shared room,60,1,17,3.59,1,39 +41113,51414586,Brooklyn,Fort Greene,40.689040000000006,-73.9759,Entire home/apt,225,3,4,2.14,1,78 +41114,1185024,Brooklyn,Park Slope,40.67821,-73.9787,Entire home/apt,100,1,3,0.61,1,0 +41115,4955499,Queens,Rockaway Beach,40.58344,-73.81456,Entire home/apt,200,1,4,1.12,1,124 +41116,50862159,Manhattan,Harlem,40.80393,-73.9574,Private room,60,2,3,0.67,1,188 +41117,230165497,Manhattan,Nolita,40.72157,-73.99432,Entire home/apt,199,30,0,,4,365 +41118,179661186,Brooklyn,Sheepshead Bay,40.59876,-73.95296,Private room,61,2,3,1.48,2,0 +41119,59073470,Manhattan,Upper West Side,40.79144,-73.97909,Entire home/apt,375,2,4,1.24,1,208 +41120,16639428,Brooklyn,Gowanus,40.67941,-73.99118,Entire home/apt,200,2,10,4.23,1,218 +41121,720974,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95886,Entire home/apt,120,4,13,3.28,1,13 +41122,237015178,Queens,Astoria,40.771609999999995,-73.92063,Entire home/apt,144,2,19,5.33,1,18 +41123,4499538,Manhattan,Harlem,40.809020000000004,-73.94185999999999,Entire home/apt,175,4,6,1.33,1,0 +41124,11914004,Brooklyn,Williamsburg,40.71275,-73.96049000000001,Private room,50,2,5,1.06,1,0 +41125,95444031,Brooklyn,Flatbush,40.644729999999996,-73.96849,Private room,60,7,0,,1,0 +41126,104513848,Manhattan,Chelsea,40.74415,-73.99483000000001,Entire home/apt,250,3,1,1.0,1,60 +41127,21976589,Manhattan,Lower East Side,40.719570000000004,-73.98538,Entire home/apt,180,18,3,0.57,1,22 +41128,16945810,Manhattan,SoHo,40.72609,-74.00035,Entire home/apt,250,3,1,0.36,1,0 +41129,238321374,Manhattan,Upper West Side,40.80037,-73.95995,Private room,60,30,0,,32,317 +41130,238321374,Manhattan,Upper West Side,40.80042,-73.96146999999999,Private room,60,30,1,1.0,32,317 +41131,238321374,Manhattan,Upper West Side,40.799009999999996,-73.96135,Private room,58,30,0,,32,317 +41132,197053492,Manhattan,Financial District,40.7076,-74.0074,Entire home/apt,309,1,1,0.59,8,314 +41133,4383563,Manhattan,East Village,40.72744,-73.98336,Entire home/apt,190,2,0,,1,0 +41134,237421509,Brooklyn,Bedford-Stuyvesant,40.67818,-73.92284000000001,Private room,55,1,3,0.58,2,0 +41135,237421509,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92345999999999,Private room,45,1,2,0.39,2,0 +41136,52720583,Queens,Jackson Heights,40.74774,-73.88653000000001,Entire home/apt,115,2,3,0.84,1,6 +41137,239851275,Brooklyn,Sheepshead Bay,40.60263,-73.94355,Private room,200,1,0,,1,363 +41138,232725253,Manhattan,Hell's Kitchen,40.76246,-73.99032,Entire home/apt,199,2,3,1.13,1,179 +41139,51551032,Queens,Astoria,40.76424,-73.91516,Entire home/apt,50,4,1,0.19,1,0 +41140,99695025,Brooklyn,Williamsburg,40.71094,-73.94906999999999,Entire home/apt,121,2,1,0.2,1,0 +41141,22926868,Brooklyn,Sunset Park,40.6463,-73.99953000000001,Private room,45,13,3,0.91,3,34 +41142,10174909,Brooklyn,Crown Heights,40.66415,-73.95169,Private room,50,7,0,,1,0 +41143,137358866,Queens,Long Island City,40.74821,-73.92087,Private room,44,30,0,,103,247 +41144,239887273,Brooklyn,Williamsburg,40.71815,-73.95834,Private room,75,1,24,4.62,1,201 +41145,193954973,Brooklyn,Williamsburg,40.71506,-73.95192,Entire home/apt,150,3,7,2.26,3,86 +41146,239906704,Queens,Woodside,40.74286,-73.91076,Private room,120,2,0,,1,365 +41147,222386455,Brooklyn,Cypress Hills,40.68099,-73.89264,Entire home/apt,165,2,18,3.78,1,61 +41148,118502740,Queens,Jamaica,40.692890000000006,-73.81079,Private room,120,2,0,,1,0 +41149,57761801,Manhattan,Chelsea,40.7454,-74.00426999999999,Entire home/apt,450,90,0,,1,365 +41150,5339839,Brooklyn,Bedford-Stuyvesant,40.68357,-73.95449,Entire home/apt,295,7,0,,1,0 +41151,16782573,Queens,Middle Village,40.71515,-73.88391999999999,Entire home/apt,115,4,2,0.44,4,314 +41152,59616570,Brooklyn,Bushwick,40.703520000000005,-73.92163000000001,Private room,55,4,0,,1,189 +41153,14656629,Brooklyn,Bushwick,40.70002,-73.91909,Private room,35,3,0,,1,0 +41154,50760546,Manhattan,Murray Hill,40.74657,-73.97685,Entire home/apt,139,29,0,,31,130 +41155,239978864,Queens,Jackson Heights,40.7489,-73.87549,Private room,50,2,20,4.69,1,167 +41156,1767221,Manhattan,Inwood,40.86622,-73.92233,Private room,48,160,0,,2,179 +41157,229110237,Brooklyn,East New York,40.66287,-73.88553,Private room,80,2,3,1.14,1,363 +41158,240033083,Manhattan,Harlem,40.822720000000004,-73.95478,Private room,70,2,0,,1,0 +41159,7964926,Brooklyn,Bushwick,40.70118,-73.92175999999999,Entire home/apt,90,2,19,3.88,1,53 +41160,204926318,Brooklyn,East Flatbush,40.65351,-73.94999,Private room,40,30,0,,1,300 +41161,240055586,Queens,Fresh Meadows,40.7386,-73.79248,Private room,80,1,38,7.6,5,29 +41162,34556469,Brooklyn,Gravesend,40.60653,-73.97725,Private room,50,1,0,,2,0 +41163,240055586,Queens,Fresh Meadows,40.7385,-73.79145,Private room,55,1,32,7.5,5,28 +41164,117930151,Queens,Long Island City,40.74458,-73.94102,Private room,100,1,5,1.06,2,351 +41165,238136541,Manhattan,Murray Hill,40.74797,-73.98271,Entire home/apt,345,30,6,1.13,1,154 +41166,14249909,Manhattan,Chinatown,40.71825,-73.99651,Private room,169,3,3,0.67,1,0 +41167,21836588,Manhattan,Inwood,40.864540000000005,-73.9246,Entire home/apt,35,1,33,6.56,1,5 +41168,5592622,Queens,Astoria,40.75734,-73.91365,Private room,65,1,12,2.55,5,149 +41169,225025900,Queens,Ditmars Steinway,40.77783,-73.90661999999999,Private room,80,1,5,1.29,2,358 +41170,866089,Manhattan,Little Italy,40.7191,-73.99513,Entire home/apt,250,3,0,,3,0 +41171,56656728,Manhattan,Harlem,40.8165,-73.94438000000001,Private room,60,5,1,0.21,5,0 +41172,96710414,Manhattan,Midtown,40.75741,-73.96372,Entire home/apt,120,2,8,1.89,1,328 +41173,70058270,Brooklyn,Crown Heights,40.665209999999995,-73.93153000000001,Entire home/apt,575,3,0,,4,105 +41174,37450458,Brooklyn,Bedford-Stuyvesant,40.67904,-73.91084000000001,Entire home/apt,100,2,5,2.59,2,149 +41175,230062403,Manhattan,East Harlem,40.7984,-73.94014,Entire home/apt,450,1,12,2.67,1,325 +41176,158126190,Queens,Sunnyside,40.741409999999995,-73.92688000000001,Private room,33,7,2,0.4,1,0 +41177,36323224,Manhattan,Washington Heights,40.84669,-73.94028,Private room,55,1,17,3.31,1,30 +41178,165863135,Manhattan,Lower East Side,40.720259999999996,-73.98787,Private room,80,20,2,0.48,1,3 +41179,240194042,Manhattan,Harlem,40.8235,-73.95391,Private room,30,21,0,,1,0 +41180,212262028,Brooklyn,Fort Greene,40.6882,-73.97651,Entire home/apt,160,3,13,3.1,2,252 +41181,8503180,Manhattan,East Village,40.72997,-73.9884,Entire home/apt,1500,30,0,,2,178 +41182,240203470,Queens,Jamaica,40.67804,-73.80122,Private room,25,1,44,9.23,1,41 +41183,240207968,Manhattan,Upper West Side,40.79967,-73.96109,Private room,128,30,0,,2,364 +41184,238133848,Manhattan,Midtown,40.757020000000004,-73.96503,Entire home/apt,450,30,3,0.58,1,154 +41185,7352103,Brooklyn,Bedford-Stuyvesant,40.691590000000005,-73.95765,Entire home/apt,80,5,2,0.42,1,0 +41186,240207968,Manhattan,Upper West Side,40.79907,-73.96098,Private room,128,30,0,,2,1 +41187,9124906,Brooklyn,Flatbush,40.64004,-73.9664,Private room,40,1,1,0.2,1,0 +41188,236659049,Brooklyn,Bushwick,40.690059999999995,-73.90605,Private room,40,1,3,0.64,4,0 +41189,48857380,Manhattan,East Village,40.72267,-73.9852,Private room,150,2,4,1.05,1,0 +41190,62589092,Manhattan,Harlem,40.80996,-73.94191,Private room,53,1,26,5.03,1,1 +41191,65786143,Brooklyn,Williamsburg,40.70572,-73.94501,Private room,90,2,11,2.92,1,83 +41192,240239465,Queens,St. Albans,40.70132,-73.75463,Entire home/apt,30,2,11,2.32,2,230 +41193,187419882,Manhattan,Harlem,40.82885,-73.9412,Private room,62,1,1,0.47,3,72 +41194,67746251,Queens,Ozone Park,40.68237,-73.84874,Private room,45,1,40,7.79,4,30 +41195,240248599,Manhattan,Little Italy,40.71918,-73.99535999999999,Private room,125,3,1,0.42,1,1 +41196,138150256,Brooklyn,Greenpoint,40.73324,-73.95304,Entire home/apt,110,7,1,0.68,2,23 +41197,187419882,Manhattan,Harlem,40.82711,-73.94143000000001,Private room,99,2,18,3.8,3,72 +41198,64213111,Brooklyn,Prospect-Lefferts Gardens,40.66088,-73.94363,Private room,50,2,0,,1,0 +41199,47732926,Queens,Rego Park,40.728190000000005,-73.86032,Entire home/apt,90,1,7,1.84,1,64 +41200,67746251,Queens,Ozone Park,40.6824,-73.84997,Private room,42,1,33,6.39,4,31 +41201,158725307,Manhattan,NoHo,40.72813,-73.99258,Entire home/apt,400,2,0,,2,38 +41202,9898029,Brooklyn,East Flatbush,40.64998,-73.92358,Private room,67,3,0,,5,357 +41203,65800377,Brooklyn,Bushwick,40.70053,-73.92314,Private room,150,3,0,,3,28 +41204,60403058,Brooklyn,Bedford-Stuyvesant,40.68735,-73.93118,Private room,60,2,2,0.49,1,0 +41205,240289379,Manhattan,Hell's Kitchen,40.76364,-73.99506,Entire home/apt,90,3,4,0.9,1,0 +41206,89985620,Brooklyn,Flatlands,40.62297,-73.92971,Private room,42,2,13,3.33,3,280 +41207,42121413,Brooklyn,East Flatbush,40.64222,-73.95067,Entire home/apt,190,4,13,3.17,1,241 +41208,58220119,Manhattan,Harlem,40.8167,-73.94421,Private room,300,2,1,0.7,1,76 +41209,6073347,Manhattan,NoHo,40.72703,-73.99264000000001,Entire home/apt,189,5,2,0.46,1,0 +41210,239519185,Manhattan,Hell's Kitchen,40.76124,-73.9894,Private room,120,1,29,5.8,2,198 +41211,21416718,Brooklyn,Williamsburg,40.71606,-73.96268,Entire home/apt,150,3,15,3.75,1,35 +41212,240311383,Manhattan,Washington Heights,40.84725,-73.94274,Private room,85,2,11,2.21,1,227 +41213,77304447,Manhattan,Harlem,40.82065,-73.95483,Private room,35,5,19,4.45,3,8 +41214,156158778,Manhattan,Tribeca,40.71782,-74.01047,Entire home/apt,1978,1,0,,12,0 +41215,156158778,Brooklyn,Prospect Heights,40.6776,-73.96961,Entire home/apt,1494,1,0,,12,0 +41216,156158778,Manhattan,Upper West Side,40.787420000000004,-73.97010999999999,Entire home/apt,3512,1,0,,12,124 +41217,200380610,Manhattan,Midtown,40.75569,-73.98154,Entire home/apt,600,30,0,,65,110 +41218,33646389,Brooklyn,Crown Heights,40.671279999999996,-73.95895,Entire home/apt,85,5,1,0.58,2,51 +41219,2231216,Manhattan,Hell's Kitchen,40.75947,-73.99195999999999,Private room,150,2,17,3.59,1,16 +41220,152246149,Bronx,Throgs Neck,40.83108,-73.82951,Private room,50,1,11,2.41,5,365 +41221,91393358,Queens,Flushing,40.75584,-73.80618,Entire home/apt,115,2,15,3.91,1,44 +41222,51709634,Brooklyn,East Flatbush,40.65441,-73.95024000000001,Private room,31,1,25,5.0,1,5 +41223,6407054,Manhattan,Harlem,40.82051,-73.95291,Private room,53,1,4,0.85,3,0 +41224,240460735,Manhattan,Theater District,40.76015,-73.98496999999999,Entire home/apt,890,1,2,0.41,1,301 +41225,33386742,Brooklyn,Williamsburg,40.70298,-73.93834,Private room,80,1,0,,1,5 +41226,10257350,Manhattan,Washington Heights,40.83325,-73.94444,Private room,50,2,8,2.76,2,52 +41227,27107891,Brooklyn,Williamsburg,40.71396,-73.93986,Entire home/apt,179,4,8,2.11,1,104 +41228,48146336,Manhattan,Hell's Kitchen,40.76318,-73.99335,Entire home/apt,130,30,2,0.5,20,263 +41229,41869388,Manhattan,Nolita,40.72233,-73.99334,Private room,85,2,20,4.29,1,5 +41230,29278028,Manhattan,Upper East Side,40.77698,-73.95711999999999,Entire home/apt,800,5,3,0.86,4,280 +41231,75035789,Queens,Maspeth,40.7321,-73.89712,Private room,40,1,0,,1,156 +41232,240594389,Queens,Glendale,40.69271,-73.89519,Entire home/apt,135,3,7,2.0,1,120 +41233,18193304,Brooklyn,Williamsburg,40.71268,-73.9472,Private room,80,1,10,3.03,1,102 +41234,8962177,Manhattan,West Village,40.73231,-74.00376999999999,Private room,90,1,4,1.26,1,330 +41235,24975940,Manhattan,Greenwich Village,40.73365,-73.99727,Entire home/apt,159,90,0,,2,90 +41236,164242874,Manhattan,Upper West Side,40.79481,-73.97431999999999,Entire home/apt,150,1,20,4.05,1,272 +41237,3158364,Queens,Sunnyside,40.73641,-73.92415,Private room,40,5,5,1.26,4,297 +41238,14234166,Queens,Ridgewood,40.704840000000004,-73.91393000000001,Private room,59,1,15,2.98,2,67 +41239,25115746,Manhattan,Upper West Side,40.78757,-73.97624,Shared room,500,1,0,,1,89 +41240,48112774,Brooklyn,Bedford-Stuyvesant,40.67767,-73.91784,Private room,100,1,7,1.83,1,365 +41241,23502183,Manhattan,Midtown,40.75445,-73.96471,Entire home/apt,159,30,0,,2,249 +41242,49138015,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92555,Entire home/apt,119,3,11,2.43,1,24 +41243,228879817,Queens,Flushing,40.74523,-73.83321,Private room,42,1,20,4.26,6,157 +41244,228879817,Queens,Flushing,40.74588,-73.83284,Private room,49,1,14,2.76,6,121 +41245,110539055,Bronx,Williamsbridge,40.87905,-73.85243,Entire home/apt,76,2,14,2.98,2,300 +41246,240134265,Manhattan,Two Bridges,40.712140000000005,-73.99643,Private room,97,1,30,5.84,3,174 +41247,240134265,Manhattan,Two Bridges,40.71247,-73.99619,Private room,300,1,19,3.93,3,166 +41248,240134265,Manhattan,Two Bridges,40.71208,-73.9941,Private room,93,1,28,5.53,3,359 +41249,211549023,Manhattan,Midtown,40.7467,-73.98706,Entire home/apt,220,2,4,1.09,13,283 +41250,12236516,Brooklyn,Prospect Heights,40.67743,-73.97202,Entire home/apt,175,30,0,,1,300 +41251,194953121,Manhattan,Midtown,40.75204,-73.97278,Entire home/apt,699,2,0,,1,132 +41252,1507408,Manhattan,East Harlem,40.80245,-73.94426,Private room,96,3,1,0.56,1,365 +41253,39444059,Manhattan,Inwood,40.86886,-73.92407,Entire home/apt,100,1,0,,1,13 +41254,240858689,Queens,Long Island City,40.74794,-73.94901,Private room,100,14,0,,1,0 +41255,94087109,Manhattan,Greenwich Village,40.730270000000004,-74.00076999999999,Entire home/apt,299,3,9,1.8,1,19 +41256,16543733,Brooklyn,Crown Heights,40.6757,-73.95121,Entire home/apt,160,3,9,2.35,1,109 +41257,7980041,Brooklyn,Flatbush,40.64504,-73.9608,Entire home/apt,110,2,6,1.5,1,17 +41258,50544293,Manhattan,Greenwich Village,40.73028,-74.00015,Entire home/apt,220,1,4,0.85,2,29 +41259,48146336,Manhattan,Hell's Kitchen,40.76165,-73.99351,Entire home/apt,130,30,2,0.53,20,332 +41260,239360406,Brooklyn,Bensonhurst,40.61487,-74.00666,Private room,70,1,15,3.02,1,0 +41261,137463409,Queens,Maspeth,40.72595,-73.90299,Entire home/apt,150,1,24,5.26,1,236 +41262,240913613,Manhattan,Chelsea,40.74928,-73.99633,Entire home/apt,180,3,26,5.45,1,53 +41263,231819451,Manhattan,Lower East Side,40.719840000000005,-73.98625,Private room,100,3,19,4.01,1,48 +41264,235530740,Brooklyn,Bedford-Stuyvesant,40.683209999999995,-73.93803,Entire home/apt,250,5,13,2.79,3,194 +41265,235530740,Brooklyn,Bedford-Stuyvesant,40.684290000000004,-73.93623000000001,Entire home/apt,250,5,7,1.84,3,215 +41266,240934322,Manhattan,Hell's Kitchen,40.76412,-73.98770999999999,Private room,125,3,0,,1,173 +41267,42519995,Brooklyn,Bushwick,40.70709,-73.92071,Private room,70,1,3,0.58,1,319 +41268,143509629,Bronx,University Heights,40.85538,-73.91081,Shared room,40,1,0,,1,0 +41269,32999831,Manhattan,Theater District,40.75943,-73.98756,Entire home/apt,200,2,3,0.84,1,85 +41270,102466916,Manhattan,Harlem,40.80618,-73.94288,Private room,53,30,0,,6,241 +41271,102466916,Manhattan,Harlem,40.80577,-73.9448,Private room,55,60,0,,6,210 +41272,65929049,Manhattan,Midtown,40.74838,-73.98444,Entire home/apt,799,5,2,0.39,1,343 +41273,215407308,Queens,Sunnyside,40.73708,-73.92634,Private room,48,2,1,0.48,3,132 +41274,238779678,Manhattan,East Village,40.72764,-73.9906,Private room,60,30,0,,9,343 +41275,238779678,Manhattan,East Village,40.726890000000004,-73.98906,Private room,69,30,0,,9,310 +41276,62436749,Manhattan,Midtown,40.75483,-73.96991,Entire home/apt,295,4,0,,1,270 +41277,241035874,Brooklyn,Williamsburg,40.71045,-73.93826,Private room,60,2,16,4.14,1,355 +41278,11757212,Brooklyn,Bushwick,40.69665,-73.92714000000001,Private room,65,1,22,4.49,4,89 +41279,25116715,Manhattan,Kips Bay,40.73957,-73.98006,Private room,115,4,0,,1,22 +41280,171646902,Queens,Elmhurst,40.73102,-73.87383,Entire home/apt,300,2,20,6.32,1,298 +41281,228141767,Bronx,Kingsbridge,40.88344,-73.90301,Private room,45,1,14,2.86,1,347 +41282,3435092,Manhattan,Upper East Side,40.780809999999995,-73.94866,Entire home/apt,175,4,12,3.91,3,231 +41283,10476957,Manhattan,Greenwich Village,40.7312,-74.00025,Entire home/apt,1000,2,8,1.59,1,273 +41284,11263163,Manhattan,Little Italy,40.719390000000004,-73.99662,Entire home/apt,150,1,18,3.83,1,0 +41285,118769947,Manhattan,Upper East Side,40.7629,-73.96157,Entire home/apt,200,1,30,6.0,1,2 +41286,16954523,Brooklyn,Bushwick,40.687540000000006,-73.91230999999999,Private room,55,7,4,0.92,1,95 +41287,171331943,Manhattan,East Village,40.72882,-73.98103,Entire home/apt,160,3,6,6.0,1,63 +41288,17849213,Brooklyn,Williamsburg,40.71695,-73.93847,Entire home/apt,110,1,7,2.56,2,1 +41289,238391711,Manhattan,Harlem,40.81303,-73.95285,Private room,180,1,13,3.05,1,296 +41290,20811907,Queens,Astoria,40.767340000000004,-73.93267,Entire home/apt,90,3,14,2.96,1,251 +41291,220139308,Manhattan,Financial District,40.70713,-74.01043,Private room,125,1,13,4.15,1,132 +41292,140348326,Manhattan,Upper East Side,40.7814,-73.94771,Private room,68,4,2,0.59,2,0 +41293,31691527,Brooklyn,Williamsburg,40.71698,-73.95879000000001,Private room,365,2,4,1.52,1,79 +41294,124506693,Brooklyn,Crown Heights,40.6751,-73.953,Private room,71,2,9,3.38,1,223 +41295,162280872,Manhattan,Hell's Kitchen,40.76163,-73.99602,Entire home/apt,150,30,0,,13,332 +41296,162280872,Manhattan,Hell's Kitchen,40.76273,-73.9942,Entire home/apt,185,30,0,,13,298 +41297,162280872,Manhattan,Hell's Kitchen,40.76164,-73.9944,Entire home/apt,145,30,0,,13,300 +41298,131995652,Bronx,Mount Hope,40.849940000000004,-73.9066,Entire home/apt,148,3,7,1.74,1,358 +41299,175103962,Brooklyn,Bedford-Stuyvesant,40.680609999999994,-73.907,Private room,46,1,12,2.38,6,155 +41300,4619315,Manhattan,Harlem,40.8199,-73.95248000000001,Entire home/apt,165,3,9,2.01,1,2 +41301,241277495,Queens,Astoria,40.75864,-73.92782,Entire home/apt,225,5,1,1.0,1,30 +41302,18466353,Manhattan,Chelsea,40.740840000000006,-74.00425,Entire home/apt,180,5,0,,1,214 +41303,3280640,Manhattan,Midtown,40.74437,-73.98848000000001,Entire home/apt,250,3,18,3.83,1,26 +41304,133130315,Manhattan,Hell's Kitchen,40.76379,-73.9872,Entire home/apt,170,1,4,1.05,6,123 +41305,16384390,Manhattan,Chelsea,40.74324,-73.99705,Entire home/apt,175,2,9,2.37,1,50 +41306,1570799,Brooklyn,Williamsburg,40.70771,-73.94627,Private room,100,10,2,0.9,1,3 +41307,801538,Manhattan,East Village,40.7233,-73.98062,Entire home/apt,150,90,0,,1,341 +41308,68959402,Queens,Elmhurst,40.74685,-73.88626,Entire home/apt,70,1,8,1.73,1,141 +41309,21536937,Brooklyn,Bushwick,40.70431,-73.92655,Private room,100,2,1,0.56,1,89 +41310,187849608,Manhattan,Upper West Side,40.79097,-73.97412,Private room,180,1,3,0.63,1,151 +41311,6883576,Brooklyn,Williamsburg,40.71516,-73.94934,Private room,98,1,9,2.37,1,53 +41312,1458110,Manhattan,Greenwich Village,40.72722,-73.99914,Private room,96,3,2,0.41,2,5 +41313,206288086,Brooklyn,Fort Greene,40.694340000000004,-73.97099,Entire home/apt,167,2,20,4.96,2,284 +41314,241341898,Manhattan,Harlem,40.82796,-73.94088,Private room,85,1,27,5.7,1,0 +41315,116089235,Manhattan,Chelsea,40.75117,-73.99735,Entire home/apt,500,3,1,0.63,1,77 +41316,158407820,Queens,Woodside,40.75403,-73.90075999999999,Entire home/apt,98,2,15,4.13,5,337 +41317,48675725,Brooklyn,East New York,40.67212,-73.86991,Entire home/apt,125,2,18,4.43,1,28 +41318,241366980,Manhattan,Washington Heights,40.83685,-73.94176,Private room,75,2,20,4.88,1,223 +41319,241359293,Manhattan,Hell's Kitchen,40.764829999999996,-73.99248,Entire home/apt,280,2,0,,1,0 +41320,237336458,Manhattan,Chelsea,40.73778,-73.99616,Private room,99,12,4,0.79,4,29 +41321,9260643,Brooklyn,Williamsburg,40.71615,-73.95877,Entire home/apt,400,2,3,1.18,1,20 +41322,131647128,Manhattan,Upper West Side,40.770540000000004,-73.98344,Entire home/apt,290,30,2,0.52,25,313 +41323,137358866,Queens,Astoria,40.76399,-73.92581,Private room,37,30,1,0.77,103,238 +41324,198730633,Manhattan,Harlem,40.81105,-73.95241,Private room,80,1,3,0.71,2,0 +41325,210141310,Manhattan,Hell's Kitchen,40.759609999999995,-73.98844,Entire home/apt,295,3,22,4.49,1,228 +41326,27891261,Manhattan,Financial District,40.709,-74.01221,Entire home/apt,160,30,2,0.86,1,126 +41327,200380610,Manhattan,Chelsea,40.744679999999995,-74.00157,Entire home/apt,382,90,0,,65,364 +41328,240237028,Queens,Ridgewood,40.69924,-73.90191,Private room,45,2,14,2.96,1,168 +41329,66993395,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92859,Entire home/apt,245,4,13,2.79,3,272 +41330,33992697,Brooklyn,Bushwick,40.70458,-73.92888,Private room,80,2,3,0.63,1,14 +41331,545623,Brooklyn,Clinton Hill,40.684470000000005,-73.96714,Private room,75,1,11,2.64,1,5 +41332,241361740,Manhattan,Hell's Kitchen,40.75951,-73.99455,Entire home/apt,230,2,0,,1,0 +41333,241366983,Manhattan,Hell's Kitchen,40.7647,-73.99516,Entire home/apt,250,2,0,,1,0 +41334,61316506,Queens,Sunnyside,40.74603,-73.91458,Entire home/apt,145,1,14,2.9,2,331 +41335,25043035,Manhattan,Midtown,40.76638,-73.98311,Private room,100,1,4,0.85,1,0 +41336,7627510,Queens,Jackson Heights,40.75318,-73.88404,Private room,80,2,5,1.06,1,157 +41337,32136241,Manhattan,Chelsea,40.75173,-73.99869,Entire home/apt,100,3,11,2.77,1,24 +41338,77021411,Manhattan,Midtown,40.752309999999994,-73.97331,Private room,300,4,0,,1,0 +41339,53300414,Brooklyn,Gowanus,40.67024,-73.99349000000001,Private room,55,1,0,,2,20 +41340,55289,Manhattan,Hell's Kitchen,40.76522,-73.98779,Entire home/apt,250,4,17,3.98,1,200 +41341,241513556,Manhattan,Theater District,40.76106,-73.98694,Entire home/apt,170,2,0,,1,0 +41342,92510990,Queens,Long Island City,40.76235,-73.92651,Private room,100,3,5,1.4,1,42 +41343,241541553,Brooklyn,Williamsburg,40.712109999999996,-73.96276,Entire home/apt,418,2,20,3.97,1,153 +41344,39712384,Brooklyn,Crown Heights,40.6732,-73.92146,Private room,110,3,7,2.44,1,152 +41345,241583701,Queens,Long Island City,40.75331,-73.92454000000001,Entire home/apt,140,7,4,0.85,1,35 +41346,217807652,Manhattan,Harlem,40.80625,-73.94646999999999,Private room,75,5,0,,1,0 +41347,26817172,Manhattan,Midtown,40.75828,-73.96829,Entire home/apt,250,1,11,3.59,1,336 +41348,241458287,Bronx,Mott Haven,40.81098,-73.91814000000001,Entire home/apt,65,2,15,3.26,1,51 +41349,241675405,Bronx,Throgs Neck,40.8154,-73.81551,Entire home/apt,75,3,0,,1,90 +41350,241676154,Staten Island,Grant City,40.57974,-74.10989000000001,Private room,30,7,1,1.0,2,188 +41351,57049951,Manhattan,Harlem,40.813320000000004,-73.95309,Private room,69,1,1,0.33,9,365 +41352,36732553,Queens,Astoria,40.756040000000006,-73.91488000000001,Private room,60,7,0,,3,338 +41353,57049951,Manhattan,Harlem,40.814009999999996,-73.95393,Private room,69,2,1,1.0,9,365 +41354,57049951,Manhattan,Harlem,40.81384,-73.95315,Shared room,69,2,1,0.39,9,365 +41355,241694782,Brooklyn,Bedford-Stuyvesant,40.68683,-73.93825,Entire home/apt,140,1,1,0.47,2,68 +41356,241059711,Brooklyn,Crown Heights,40.6786,-73.96308,Entire home/apt,450,1,2,0.52,1,204 +41357,241732167,Manhattan,Murray Hill,40.74915,-73.9761,Entire home/apt,220,30,1,0.33,1,310 +41358,117717201,Manhattan,Midtown,40.74338,-73.98557,Entire home/apt,210,4,3,1.29,1,156 +41359,98868828,Bronx,Edenwald,40.89156,-73.84196999999999,Private room,65,1,0,,1,89 +41360,234270791,Brooklyn,Bushwick,40.69615,-73.92995,Private room,58,3,6,2.02,3,94 +41361,17473098,Staten Island,Castleton Corners,40.62373,-74.11773000000001,Private room,150,1,0,,1,0 +41362,219517861,Manhattan,Financial District,40.70584,-74.0106,Entire home/apt,245,2,6,1.65,327,272 +41363,219517861,Manhattan,Financial District,40.70608,-74.012,Entire home/apt,245,2,2,2.0,327,299 +41364,219517861,Manhattan,Financial District,40.706579999999995,-74.01035999999999,Private room,200,2,13,2.81,327,352 +41365,219517861,Manhattan,Financial District,40.70623,-74.01198000000001,Entire home/apt,229,2,6,3.0,327,355 +41366,219517861,Manhattan,Financial District,40.70564,-74.01162,Private room,204,2,4,0.96,327,327 +41367,107504230,Brooklyn,Williamsburg,40.711890000000004,-73.9649,Entire home/apt,100,3,2,0.43,1,0 +41368,241764251,Manhattan,East Harlem,40.79973,-73.94566999999999,Entire home/apt,156,3,8,2.22,1,51 +41369,32625342,Bronx,Kingsbridge,40.88316,-73.90586,Private room,30,4,8,1.76,2,0 +41370,241765415,Brooklyn,Vinegar Hill,40.70046,-73.98389,Entire home/apt,240,1,1,0.25,1,89 +41371,9163877,Brooklyn,Bedford-Stuyvesant,40.691159999999996,-73.95444,Entire home/apt,132,3,4,1.03,1,205 +41372,73670512,Brooklyn,Gravesend,40.59284,-73.97681999999999,Entire home/apt,130,3,15,3.31,2,119 +41373,219517861,Manhattan,Financial District,40.7058,-74.0121,Entire home/apt,404,2,10,2.26,327,330 +41374,219517861,Manhattan,Financial District,40.70641,-74.01047,Entire home/apt,234,2,2,1.46,327,332 +41375,219517861,Manhattan,Financial District,40.70621,-74.01238000000001,Entire home/apt,425,2,8,2.11,327,339 +41376,219517861,Manhattan,Financial District,40.70752,-74.01046,Entire home/apt,235,2,7,1.52,327,306 +41377,219517861,Manhattan,Financial District,40.70645,-74.01203000000001,Entire home/apt,503,2,5,1.34,327,315 +41378,64663067,Manhattan,Hell's Kitchen,40.75977,-73.99061999999999,Entire home/apt,250,2,17,3.86,1,71 +41379,241770178,Queens,East Elmhurst,40.76587,-73.87968000000001,Private room,40,2,8,1.88,1,10 +41380,219517861,Manhattan,Financial District,40.707209999999996,-74.01226,Private room,258,2,6,1.27,327,332 +41381,219517861,Manhattan,Financial District,40.70714,-74.01233,Entire home/apt,392,2,2,0.63,327,286 +41382,219517861,Manhattan,Financial District,40.705729999999996,-74.01077,Private room,375,2,5,1.24,327,280 +41383,219517861,Manhattan,Financial District,40.70644,-74.01214,Entire home/apt,231,2,7,1.69,327,347 +41384,219517861,Manhattan,Financial District,40.70624,-74.01076,Entire home/apt,194,2,8,1.85,327,341 +41385,219517861,Manhattan,Financial District,40.70732,-74.01029,Entire home/apt,240,2,8,1.98,327,357 +41386,219517861,Manhattan,Financial District,40.7075,-74.01023,Entire home/apt,229,2,7,1.75,327,346 +41387,219517861,Manhattan,Financial District,40.707370000000004,-74.01103,Entire home/apt,230,2,5,1.49,327,346 +41388,219517861,Manhattan,Financial District,40.705870000000004,-74.01092,Entire home/apt,472,2,12,2.67,327,234 +41389,219517861,Manhattan,Financial District,40.70727,-74.01071999999999,Private room,256,2,16,3.75,327,329 +41390,232475160,Manhattan,Hell's Kitchen,40.76242,-73.9925,Entire home/apt,149,2,7,1.47,1,155 +41391,1495355,Queens,Forest Hills,40.72345,-73.84365,Private room,40,2,4,1.88,2,188 +41392,45238340,Manhattan,East Harlem,40.791959999999996,-73.95048,Private room,95,1,8,2.55,1,131 +41393,29775337,Brooklyn,Williamsburg,40.7185,-73.95600999999999,Private room,150,2,7,1.48,1,20 +41394,137358866,Queens,Woodside,40.74259,-73.91193,Private room,51,30,1,0.58,103,239 +41395,34468788,Manhattan,West Village,40.73847,-74.0062,Entire home/apt,175,2,7,2.92,1,3 +41396,241870258,Brooklyn,Williamsburg,40.71363,-73.93615,Shared room,75,1,2,0.63,2,1 +41397,24973324,Manhattan,Washington Heights,40.85355,-73.93231999999999,Entire home/apt,125,2,1,0.21,1,72 +41398,107434423,Manhattan,Tribeca,40.71543,-74.00647,Entire home/apt,282,30,0,,232,302 +41399,241883660,Bronx,Port Morris,40.80707,-73.92974,Entire home/apt,200,5,1,0.67,1,0 +41400,241889662,Manhattan,West Village,40.73742,-74.00484,Private room,999,1,1,0.39,5,310 +41401,219517861,Manhattan,Financial District,40.70775,-74.01047,Entire home/apt,454,2,11,3.33,327,297 +41402,219517861,Manhattan,Financial District,40.70615,-74.01243000000001,Private room,262,2,6,1.59,327,328 +41403,219517861,Manhattan,Financial District,40.70734,-74.01064000000001,Entire home/apt,472,2,6,1.41,327,316 +41404,219517861,Manhattan,Financial District,40.70714,-74.01225,Entire home/apt,203,2,7,1.88,327,338 +41405,219517861,Manhattan,Financial District,40.70795,-74.01046,Entire home/apt,247,2,9,2.13,327,263 +41406,219517861,Manhattan,Financial District,40.70649,-74.01227,Entire home/apt,377,2,15,3.52,327,273 +41407,219517861,Manhattan,Financial District,40.705859999999994,-74.01078000000001,Entire home/apt,229,2,14,3.65,327,323 +41408,219517861,Manhattan,Financial District,40.70789,-74.01229000000001,Entire home/apt,234,2,12,3.05,327,340 +41409,219517861,Manhattan,Financial District,40.706309999999995,-74.01098,Entire home/apt,503,2,7,2.1,327,294 +41410,219517861,Manhattan,Financial District,40.7074,-74.01175,Entire home/apt,228,2,2,0.73,327,350 +41411,219517861,Manhattan,Financial District,40.7065,-74.01171,Entire home/apt,404,2,15,3.19,327,310 +41412,219517861,Manhattan,Financial District,40.707209999999996,-74.01044,Entire home/apt,252,2,12,3.03,327,302 +41413,219517861,Manhattan,Financial District,40.70648,-74.01241,Entire home/apt,229,2,7,1.69,327,337 +41414,219517861,Manhattan,Financial District,40.70642,-74.01045,Entire home/apt,431,2,10,2.11,327,323 +41415,219517861,Manhattan,Financial District,40.70734,-74.01056,Entire home/apt,412,2,13,3.07,327,341 +41416,219517861,Manhattan,Financial District,40.70767,-74.01061,Entire home/apt,403,2,8,1.9,327,273 +41417,219517861,Manhattan,Financial District,40.7065,-74.01019000000001,Entire home/apt,229,2,10,2.34,327,349 +41418,219517861,Manhattan,Financial District,40.706559999999996,-74.01092,Entire home/apt,227,2,8,1.88,327,356 +41419,219517861,Manhattan,Financial District,40.70797,-74.01227,Entire home/apt,205,2,10,2.54,327,338 +41420,59411033,Manhattan,Harlem,40.813590000000005,-73.95246,Private room,85,1,2,0.82,1,7 +41421,219517861,Manhattan,Financial District,40.7072,-74.01214,Entire home/apt,194,2,8,2.26,327,318 +41422,219517861,Manhattan,Financial District,40.70731,-74.01056,Entire home/apt,214,2,11,3.2,327,312 +41423,219517861,Manhattan,Financial District,40.70782,-74.01066,Entire home/apt,229,2,9,2.11,327,346 +41424,219517861,Manhattan,Financial District,40.70584,-74.01045,Entire home/apt,185,2,6,1.58,327,295 +41425,219517861,Manhattan,Financial District,40.705690000000004,-74.01183,Entire home/apt,234,2,8,2.31,327,333 +41426,219517861,Manhattan,Financial District,40.705740000000006,-74.01023,Entire home/apt,201,2,20,4.11,327,333 +41427,219517861,Manhattan,Financial District,40.70621,-74.01054,Entire home/apt,229,2,5,1.25,327,335 +41428,219517861,Manhattan,Financial District,40.70766,-74.01114,Entire home/apt,244,2,1,0.7,327,258 +41429,219517861,Manhattan,Financial District,40.705690000000004,-74.01077,Entire home/apt,227,2,8,3.64,327,349 +41430,219517861,Manhattan,Financial District,40.70748,-74.01042,Entire home/apt,451,2,15,4.37,327,254 +41431,219517861,Manhattan,Financial District,40.70581,-74.01226,Entire home/apt,241,2,5,1.35,327,284 +41432,219517861,Manhattan,Financial District,40.707640000000005,-74.01077,Entire home/apt,252,2,15,3.19,327,260 +41433,219517861,Manhattan,Financial District,40.70644,-74.01188,Entire home/apt,250,2,10,2.59,327,292 +41434,214347105,Manhattan,Midtown,40.75431,-73.96518,Entire home/apt,419,3,6,1.57,8,326 +41435,219517861,Manhattan,Financial District,40.70785,-74.01239,Entire home/apt,505,2,7,1.79,327,275 +41436,219517861,Manhattan,Financial District,40.70599,-74.01201,Entire home/apt,228,2,8,2.02,327,348 +41437,219517861,Manhattan,Financial District,40.70731,-74.01021,Entire home/apt,242,2,15,3.75,327,261 +41438,18874653,Brooklyn,Clinton Hill,40.69344,-73.9652,Entire home/apt,175,4,5,1.19,1,40 +41439,219517861,Manhattan,Financial District,40.70583,-74.01089,Entire home/apt,221,2,4,1.97,327,333 +41440,219517861,Manhattan,Financial District,40.706509999999994,-74.01252,Entire home/apt,203,2,9,2.16,327,336 +41441,219517861,Manhattan,Financial District,40.70599,-74.01064000000001,Entire home/apt,228,2,11,2.73,327,355 +41442,219517861,Manhattan,Financial District,40.70775,-74.0105,Entire home/apt,215,2,9,2.31,327,313 +41443,241924064,Staten Island,Shore Acres,40.60525,-74.06745,Entire home/apt,300,1,0,,1,87 +41444,219517861,Manhattan,Financial District,40.70706,-74.01035999999999,Entire home/apt,198,2,7,1.65,327,346 +41445,219517861,Manhattan,Financial District,40.70632,-74.0116,Entire home/apt,468,2,11,3.0,327,267 +41446,219517861,Manhattan,Financial District,40.70563,-74.01097,Entire home/apt,227,2,3,0.81,327,350 +41447,219517861,Manhattan,Financial District,40.70702,-74.01087,Entire home/apt,236,2,9,2.52,327,347 +41448,219517861,Manhattan,Financial District,40.70595,-74.0118,Entire home/apt,244,2,2,1.82,327,317 +41449,177449995,Queens,Woodside,40.745540000000005,-73.89831,Private room,120,2,0,,1,363 +41450,219517861,Manhattan,Financial District,40.70637,-74.01199,Entire home/apt,248,2,17,4.08,327,271 +41451,219517861,Manhattan,Financial District,40.70609,-74.01219,Entire home/apt,241,2,7,2.08,327,331 +41452,219517861,Manhattan,Financial District,40.70581,-74.01101,Entire home/apt,390,2,9,2.43,327,268 +41453,219517861,Manhattan,Financial District,40.7074,-74.01218,Entire home/apt,230,2,12,2.57,327,357 +41454,219517861,Manhattan,Financial District,40.70722,-74.01023,Entire home/apt,230,2,9,2.11,327,323 +41455,219517861,Manhattan,Financial District,40.7074,-74.01043,Entire home/apt,227,2,6,2.5,327,328 +41456,219517861,Manhattan,Financial District,40.706540000000004,-74.01091,Entire home/apt,214,2,11,2.97,327,304 +41457,219517861,Manhattan,Financial District,40.707570000000004,-74.01111,Entire home/apt,188,2,4,1.08,327,298 +41458,219517861,Manhattan,Financial District,40.70765,-74.01100000000001,Entire home/apt,247,2,4,0.97,327,314 +41459,219517861,Manhattan,Financial District,40.70748,-74.01080999999999,Entire home/apt,220,2,4,1.15,327,331 +41460,219517861,Manhattan,Financial District,40.70734,-74.01097,Entire home/apt,196,2,6,1.48,327,325 +41461,219517861,Manhattan,Financial District,40.706379999999996,-74.01086,Entire home/apt,218,2,4,1.04,327,279 +41462,241940624,Brooklyn,Bedford-Stuyvesant,40.68529,-73.94028,Entire home/apt,130,2,9,2.93,1,301 +41463,219517861,Manhattan,Financial District,40.70782,-74.01227,Entire home/apt,396,2,8,2.12,327,289 +41464,219517861,Manhattan,Financial District,40.70619,-74.01065,Entire home/apt,214,2,5,1.43,327,268 +41465,1646988,Brooklyn,Windsor Terrace,40.65302,-73.97357,Private room,50,2,1,1.0,1,0 +41466,219517861,Manhattan,Financial District,40.70796,-74.01205999999999,Entire home/apt,196,2,9,2.48,327,318 +41467,219517861,Manhattan,Financial District,40.70751,-74.01066,Entire home/apt,380,2,12,3.5,327,302 +41468,219517861,Manhattan,Financial District,40.70726,-74.0106,Entire home/apt,229,2,2,0.77,327,351 +41469,219517861,Manhattan,Financial District,40.7062,-74.01191999999999,Entire home/apt,498,2,8,2.5,327,255 +41470,219517861,Manhattan,Financial District,40.70584,-74.01039,Entire home/apt,215,2,3,0.77,327,317 +41471,219517861,Manhattan,Financial District,40.70751,-74.01184,Entire home/apt,231,2,13,3.42,327,331 +41472,219517861,Manhattan,Financial District,40.7058,-74.01106999999999,Entire home/apt,234,2,5,1.36,327,343 +41473,219517861,Manhattan,Financial District,40.70628,-74.01213,Entire home/apt,212,2,3,0.74,327,293 +41474,219517861,Manhattan,Financial District,40.706559999999996,-74.01094,Entire home/apt,228,2,8,2.12,327,343 +41475,219517861,Manhattan,Financial District,40.707809999999995,-74.01165,Entire home/apt,214,2,6,1.57,327,343 +41476,219517861,Manhattan,Financial District,40.70766,-74.01074,Entire home/apt,214,2,3,1.23,327,333 +41477,219517861,Manhattan,Financial District,40.70649,-74.01208000000001,Entire home/apt,201,2,9,2.62,327,271 +41478,219517861,Manhattan,Financial District,40.7075,-74.01199,Entire home/apt,214,2,2,0.59,327,331 +41479,219517861,Manhattan,Financial District,40.70727,-74.01026,Entire home/apt,235,2,3,1.58,327,341 +41480,241945355,Brooklyn,Flatlands,40.63129,-73.92748,Entire home/apt,165,2,5,1.58,2,365 +41481,219517861,Manhattan,Financial District,40.70645,-74.01175,Entire home/apt,256,2,9,2.6,327,277 +41482,219517861,Manhattan,Financial District,40.70582,-74.01111,Entire home/apt,248,2,9,2.48,327,284 +41483,219517861,Manhattan,Financial District,40.70782,-74.0107,Entire home/apt,216,2,9,2.23,327,332 +41484,219517861,Manhattan,Financial District,40.70762,-74.01105,Entire home/apt,223,2,3,0.74,327,310 +41485,219517861,Manhattan,Financial District,40.7062,-74.01092,Entire home/apt,229,2,11,2.37,327,329 +41486,20375986,Brooklyn,Park Slope,40.67655,-73.97697,Entire home/apt,200,3,17,3.98,1,142 +41487,52005895,Brooklyn,Bedford-Stuyvesant,40.684290000000004,-73.92515,Private room,110,1,5,1.1,1,86 +41488,93411405,Manhattan,Midtown,40.7597,-73.97916,Private room,150,2,0,,2,0 +41489,240055586,Queens,Fresh Meadows,40.73834,-73.79209,Private room,55,1,24,4.97,5,32 +41490,64318524,Brooklyn,Bushwick,40.697540000000004,-73.91465,Private room,65,4,1,0.38,1,0 +41491,241985900,Manhattan,Hell's Kitchen,40.7588,-73.9922,Entire home/apt,150,1,23,4.66,1,106 +41492,53931758,Brooklyn,Flatbush,40.64464,-73.96453000000001,Entire home/apt,100,3,3,0.97,1,73 +41493,160356,Manhattan,East Village,40.72576,-73.98309,Private room,68,1,18,4.15,4,90 +41494,1859754,Brooklyn,Williamsburg,40.71989,-73.9581,Entire home/apt,100,4,2,0.48,1,7 +41495,5167068,Brooklyn,Bedford-Stuyvesant,40.6923,-73.9328,Entire home/apt,215,3,12,2.88,1,6 +41496,242063700,Queens,Flushing,40.73907,-73.82943,Private room,65,1,2,0.41,1,0 +41497,7973451,Queens,Ditmars Steinway,40.77315,-73.89908,Entire home/apt,85,5,1,0.3,1,84 +41498,240055586,Queens,Fresh Meadows,40.737840000000006,-73.79101,Private room,50,1,20,4.2,5,38 +41499,240055586,Queens,Fresh Meadows,40.73704,-73.79151,Entire home/apt,255,1,13,2.87,5,114 +41500,13954138,Brooklyn,Bushwick,40.69534,-73.91776999999999,Private room,37,7,0,,2,16 +41501,242094791,Queens,Elmhurst,40.743109999999994,-73.88098000000001,Private room,300,1,1,0.21,1,89 +41502,80354349,Brooklyn,Williamsburg,40.7079,-73.94608000000001,Private room,75,2,2,0.85,1,188 +41503,207640201,Bronx,Tremont,40.8474,-73.89612,Shared room,50,1,7,1.54,1,158 +41504,8212204,Brooklyn,Crown Heights,40.665,-73.95362,Entire home/apt,64,30,1,0.25,1,0 +41505,4471865,Manhattan,Tribeca,40.71683,-74.00574,Private room,225,1,1,0.27,1,66 +41506,242115790,Brooklyn,Greenpoint,40.733940000000004,-73.95174,Private room,50,2,11,3.33,1,49 +41507,235146087,Bronx,Parkchester,40.83099,-73.86950999999999,Private room,35,2,10,2.1,1,6 +41508,90860,Brooklyn,Bedford-Stuyvesant,40.68272,-73.9303,Entire home/apt,170,2,0,,4,89 +41509,217521776,Manhattan,East Village,40.72716,-73.9783,Entire home/apt,211,30,17,4.18,1,74 +41510,9427289,Queens,Sunnyside,40.749,-73.91858,Entire home/apt,95,3,15,4.5,2,23 +41511,61042,Manhattan,Harlem,40.821529999999996,-73.95458,Private room,52,5,7,1.68,6,11 +41512,25365575,Brooklyn,Williamsburg,40.70525,-73.93363000000001,Private room,64,1,29,6.13,1,13 +41513,152034487,Manhattan,Roosevelt Island,40.76218,-73.94896999999999,Private room,85,1,20,8.45,1,104 +41514,128810972,Brooklyn,Williamsburg,40.71356,-73.96751,Entire home/apt,200,2,5,1.05,2,26 +41515,137358866,Queens,Woodside,40.74609,-73.90632,Private room,41,30,0,,103,230 +41516,212151296,Queens,Rego Park,40.72871,-73.86014,Private room,54,2,10,2.34,1,319 +41517,55452987,Manhattan,East Harlem,40.79616,-73.93343,Private room,55,5,0,,1,179 +41518,42483386,Brooklyn,Prospect Heights,40.679590000000005,-73.96736,Entire home/apt,195,1,3,1.1,1,20 +41519,242296495,Brooklyn,East Flatbush,40.649409999999996,-73.93451,Private room,33,1,14,3.09,3,37 +41520,164144705,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95213000000001,Private room,220,1,0,,1,178 +41521,6960621,Brooklyn,Williamsburg,40.71294,-73.96141999999999,Entire home/apt,210,2,27,5.91,1,188 +41522,2201403,Brooklyn,Williamsburg,40.71297,-73.95139,Private room,50,30,0,,1,340 +41523,11520555,Manhattan,East Harlem,40.80129,-73.94466,Entire home/apt,612,1,15,3.52,1,91 +41524,242322561,Queens,East Elmhurst,40.76599,-73.8693,Private room,45,1,51,11.59,1,66 +41525,207182952,Brooklyn,Downtown Brooklyn,40.69429,-73.98415,Entire home/apt,650,1,1,0.29,1,365 +41526,242330603,Queens,Richmond Hill,40.67863,-73.82648,Entire home/apt,129,180,0,,1,365 +41527,203254069,Manhattan,Upper East Side,40.76324,-73.96382,Entire home/apt,175,3,1,1.0,1,3 +41528,242344309,Brooklyn,Williamsburg,40.70684,-73.94932,Private room,65,1,20,4.23,4,107 +41529,34599913,Brooklyn,Bushwick,40.68723,-73.91450999999999,Entire home/apt,70,6,15,3.19,1,63 +41530,242348374,Brooklyn,Clinton Hill,40.68846,-73.96139000000001,Entire home/apt,195,3,12,3.71,1,38 +41531,96589640,Manhattan,East Harlem,40.79658,-73.93284,Entire home/apt,128,7,0,,1,178 +41532,110204617,Manhattan,Upper East Side,40.77405,-73.9623,Entire home/apt,150,15,0,,1,162 +41533,171364485,Brooklyn,Gowanus,40.681940000000004,-73.98033000000001,Private room,80,3,9,2.23,1,89 +41534,12404709,Manhattan,East Village,40.72694,-73.98501,Entire home/apt,300,2,2,0.58,2,0 +41535,21127860,Manhattan,Chelsea,40.741009999999996,-73.99471,Entire home/apt,215,2,12,2.55,1,128 +41536,194839310,Brooklyn,Bushwick,40.689809999999994,-73.91299000000001,Private room,40,3,8,1.9,1,0 +41537,36211911,Brooklyn,Williamsburg,40.71751,-73.94474,Private room,80,1,0,,1,0 +41538,65183994,Manhattan,East Harlem,40.79795,-73.93448000000001,Private room,77,2,20,4.38,1,52 +41539,541486,Brooklyn,Bedford-Stuyvesant,40.68594,-73.95658,Private room,95,1,0,,2,146 +41540,230230484,Queens,Astoria,40.76352,-73.92489,Private room,100,3,0,,2,0 +41541,219333557,Queens,East Elmhurst,40.76276,-73.86889000000001,Private room,49,1,6,1.25,7,55 +41542,18338590,Manhattan,Harlem,40.82869,-73.94468,Entire home/apt,120,30,0,,1,147 +41543,42427156,Queens,Astoria,40.76624,-73.91475,Entire home/apt,89,3,18,4.29,1,0 +41544,137358866,Queens,Elmhurst,40.74467,-73.8726,Private room,26,30,0,,103,233 +41545,242438900,Manhattan,Hell's Kitchen,40.76299,-73.98994,Entire home/apt,170,1,39,8.48,1,64 +41546,1283375,Brooklyn,Prospect Heights,40.67414,-73.9662,Private room,65,2,7,1.5,1,63 +41547,2943364,Brooklyn,Williamsburg,40.71177,-73.96464,Entire home/apt,120,3,4,0.88,1,8 +41548,73234851,Brooklyn,Bedford-Stuyvesant,40.681290000000004,-73.94251,Entire home/apt,150,3,10,2.78,2,5 +41549,242344309,Brooklyn,Williamsburg,40.70847,-73.9491,Private room,57,1,31,6.46,4,116 +41550,3308518,Brooklyn,Bedford-Stuyvesant,40.685140000000004,-73.92392,Entire home/apt,108,5,9,2.6,1,99 +41551,242344309,Brooklyn,Williamsburg,40.70766,-73.94974,Private room,70,1,34,7.03,4,132 +41552,152114575,Brooklyn,Carroll Gardens,40.680820000000004,-73.99481999999999,Private room,89,4,5,1.4,1,0 +41553,12741400,Brooklyn,Williamsburg,40.71208,-73.95125999999999,Private room,99,3,9,2.03,1,19 +41554,64434732,Brooklyn,Williamsburg,40.7084,-73.94488,Private room,115,1,2,0.61,1,89 +41555,8112941,Brooklyn,Bedford-Stuyvesant,40.69389,-73.94317,Private room,90,3,0,,3,280 +41556,16098958,Manhattan,Midtown,40.75629,-73.96548,Entire home/apt,135,30,0,,96,332 +41557,6771515,Brooklyn,Fort Greene,40.69722,-73.97204,Entire home/apt,119,3,2,0.44,1,5 +41558,48339350,Manhattan,Upper East Side,40.76218,-73.96633,Entire home/apt,136,1,26,5.91,1,47 +41559,241963980,Queens,Jamaica Hills,40.71686,-73.79741999999999,Private room,67,2,25,6.88,2,318 +41560,107434423,Manhattan,Midtown,40.759009999999996,-73.96198000000001,Entire home/apt,365,30,0,,232,341 +41561,28046939,Brooklyn,Kensington,40.6376,-73.97386,Private room,97,1,0,,1,0 +41562,241523602,Brooklyn,Crown Heights,40.66854,-73.95857,Entire home/apt,100,2,9,4.5,1,0 +41563,99763169,Manhattan,Upper West Side,40.77995,-73.98464,Entire home/apt,220,2,3,0.62,1,36 +41564,237118012,Manhattan,Upper East Side,40.76335,-73.96831,Private room,200,1,0,,1,179 +41565,68907781,Queens,Astoria,40.768370000000004,-73.92712,Private room,45,2,4,1.15,3,31 +41566,6105036,Manhattan,Harlem,40.805209999999995,-73.95137,Private room,145,1,14,2.98,3,113 +41567,123357281,Manhattan,West Village,40.73957,-74.00241,Entire home/apt,195,2,4,0.99,1,0 +41568,9816503,Manhattan,Nolita,40.72214,-73.99675,Private room,75,3,9,2.73,1,67 +41569,242491187,Brooklyn,Kensington,40.64265,-73.98355,Entire home/apt,160,3,2,0.79,1,177 +41570,40146897,Brooklyn,Crown Heights,40.67302,-73.92134,Shared room,25,2,1,0.21,5,29 +41571,44262594,Brooklyn,Fort Greene,40.68495,-73.97438000000001,Private room,85,4,0,,1,365 +41572,169587048,Brooklyn,Cypress Hills,40.684459999999994,-73.87801,Private room,38,4,10,2.44,2,307 +41573,33568073,Brooklyn,South Slope,40.667359999999995,-73.98508000000001,Entire home/apt,150,5,0,,1,8 +41574,27923277,Manhattan,Lower East Side,40.7127,-73.98854,Private room,75,4,9,1.96,1,34 +41575,26362511,Brooklyn,Bushwick,40.69266,-73.92058,Private room,60,1,0,,1,16 +41576,3703456,Brooklyn,Bedford-Stuyvesant,40.69619,-73.94242,Private room,55,1,6,1.29,2,22 +41577,73066515,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94483000000001,Entire home/apt,100,3,4,1.04,3,6 +41578,187877117,Brooklyn,Crown Heights,40.67111,-73.92237,Entire home/apt,125,2,11,2.6,1,128 +41579,24697585,Manhattan,Kips Bay,40.739509999999996,-73.98216,Entire home/apt,140,30,0,,1,36 +41580,53170355,Manhattan,Gramercy,40.73833,-73.98943,Entire home/apt,1200,2,2,0.7,1,166 +41581,242622786,Manhattan,Hell's Kitchen,40.76262,-73.98865,Entire home/apt,177,1,7,1.74,1,8 +41582,242622555,Queens,Maspeth,40.73218,-73.89633,Private room,50,1,0,,1,0 +41583,241889662,Manhattan,West Village,40.73672,-74.00539,Private room,999,1,3,2.43,5,329 +41584,241889662,Manhattan,West Village,40.73697,-74.00343000000001,Private room,999,1,2,0.59,5,334 +41585,241889662,Manhattan,West Village,40.73897,-74.00346,Private room,999,1,3,0.7,5,341 +41586,91605357,Brooklyn,Williamsburg,40.70738,-73.95569,Private room,60,2,26,6.5,2,21 +41587,148102066,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9432,Private room,60,1,22,4.49,4,282 +41588,158200817,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.9588,Private room,158,2,3,3.0,2,179 +41589,197676391,Manhattan,Lower East Side,40.717009999999995,-73.98874,Entire home/apt,140,1,14,4.2,1,9 +41590,242758145,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.9616,Private room,60,2,6,1.26,1,144 +41591,148102066,Brooklyn,Bedford-Stuyvesant,40.69315,-73.94191,Private room,60,1,39,7.96,4,301 +41592,22720650,Manhattan,West Village,40.736740000000005,-74.00556,Entire home/apt,130,30,0,,2,309 +41593,194981782,Manhattan,Harlem,40.82666,-73.95175,Private room,140,3,1,0.38,1,120 +41594,13543967,Brooklyn,Greenpoint,40.72912,-73.95203000000001,Private room,100,3,4,1.36,1,53 +41595,6635392,Brooklyn,Bedford-Stuyvesant,40.685970000000005,-73.93873,Entire home/apt,125,5,4,1.2,1,0 +41596,17174170,Manhattan,Washington Heights,40.85197,-73.92853000000001,Entire home/apt,74,1,4,0.95,1,0 +41597,135280693,Queens,Ridgewood,40.70833,-73.91039,Private room,65,3,3,1.29,2,342 +41598,190921808,Manhattan,Hell's Kitchen,40.75393,-73.99667,Entire home/apt,500,3,2,0.81,47,352 +41599,242831353,Queens,Long Island City,40.75204,-73.9226,Private room,30,3,14,3.41,1,77 +41600,190921808,Manhattan,Hell's Kitchen,40.755720000000004,-73.99509,Entire home/apt,650,3,1,0.25,47,297 +41601,178631153,Manhattan,Nolita,40.71996,-73.99548,Entire home/apt,125,2,5,1.1,1,0 +41602,109189054,Bronx,Wakefield,40.88805,-73.86451,Private room,65,1,0,,1,0 +41603,241870258,Brooklyn,Williamsburg,40.71536,-73.93661999999999,Private room,80,1,10,2.11,2,0 +41604,229478744,Manhattan,Hell's Kitchen,40.76332,-73.9915,Entire home/apt,379,2,11,3.3,1,252 +41605,107434423,Manhattan,Upper West Side,40.7813,-73.97927,Entire home/apt,189,30,0,,232,189 +41606,107434423,Manhattan,Murray Hill,40.7493,-73.97376,Entire home/apt,321,30,0,,232,83 +41607,107434423,Manhattan,Chelsea,40.74112,-73.99483000000001,Entire home/apt,285,30,0,,232,283 +41608,78258843,Brooklyn,Bay Ridge,40.62955,-74.02429000000001,Private room,40,6,3,0.82,1,62 +41609,137358866,Queens,Sunnyside,40.74658,-73.92007,Private room,42,30,1,0.38,103,0 +41610,242924411,Brooklyn,Bedford-Stuyvesant,40.68396,-73.95267,Entire home/apt,90,1,14,3.09,5,85 +41611,56470374,Brooklyn,Greenpoint,40.7293,-73.95075,Private room,145,21,1,1.0,1,343 +41612,230191262,Manhattan,West Village,40.73938,-74.00176,Entire home/apt,400,6,4,0.83,1,0 +41613,242933360,Manhattan,Upper East Side,40.77202,-73.95821,Private room,150,1,11,2.92,1,81 +41614,2487323,Brooklyn,Greenpoint,40.73446,-73.9523,Private room,61,14,0,,1,157 +41615,22749766,Brooklyn,Williamsburg,40.7085,-73.94966,Private room,50,1,1,0.25,1,0 +41616,221177870,Brooklyn,Williamsburg,40.71415,-73.93857,Entire home/apt,95,1,5,1.2,1,0 +41617,162280872,Manhattan,Hell's Kitchen,40.76099,-73.99554,Entire home/apt,160,30,0,,13,310 +41618,236659049,Brooklyn,Bushwick,40.69169,-73.90429,Private room,40,1,3,0.69,4,0 +41619,236659049,Brooklyn,Bushwick,40.68991,-73.90495,Private room,40,1,8,1.67,4,0 +41620,19303369,Queens,Elmhurst,40.74503,-73.87099,Private room,28,30,0,,37,1 +41621,242962235,Queens,Ridgewood,40.70896,-73.8956,Private room,42,30,2,0.6,23,204 +41622,242962235,Queens,Ridgewood,40.70892,-73.89502,Private room,42,30,0,,23,220 +41623,242962235,Queens,Ridgewood,40.70813,-73.89664,Private room,42,30,2,1.62,23,208 +41624,242962235,Queens,Ridgewood,40.70727,-73.89627,Private room,42,30,0,,23,332 +41625,242962235,Queens,Ridgewood,40.70906,-73.89511,Private room,37,30,1,0.29,23,318 +41626,5592622,Queens,Astoria,40.75605,-73.91341,Entire home/apt,225,1,4,1.12,5,89 +41627,2210374,Brooklyn,Bushwick,40.701879999999996,-73.9258,Private room,43,1,2,0.61,1,0 +41628,56025976,Manhattan,Midtown,40.753370000000004,-73.97334000000001,Entire home/apt,160,2,7,1.78,1,12 +41629,97131241,Manhattan,Theater District,40.76282,-73.98236,Private room,115,1,27,5.79,1,94 +41630,19303369,Bronx,Kingsbridge,40.88474,-73.90321,Private room,27,30,0,,37,0 +41631,24879404,Brooklyn,Flatbush,40.64612,-73.9608,Private room,40,1,7,1.86,1,61 +41632,242571852,Bronx,Longwood,40.82671,-73.90643,Entire home/apt,159,2,7,2.26,1,118 +41633,86005213,Brooklyn,Crown Heights,40.67066,-73.94801,Entire home/apt,150,3,2,2.0,1,70 +41634,132163538,Brooklyn,Bay Ridge,40.6348,-74.03788,Entire home/apt,155,28,0,,1,339 +41635,113856483,Manhattan,Financial District,40.703990000000005,-74.00662,Entire home/apt,249,2,13,3.12,1,227 +41636,243026919,Manhattan,East Harlem,40.808009999999996,-73.94011,Private room,85,1,14,6.27,2,0 +41637,237508892,Brooklyn,Crown Heights,40.669779999999996,-73.95009,Entire home/apt,188,1,10,2.4,1,199 +41638,243037591,Manhattan,Flatiron District,40.741890000000005,-73.99019,Entire home/apt,488,3,14,3.65,1,76 +41639,61042,Manhattan,East Harlem,40.7996,-73.94216,Private room,55,5,2,2.0,6,6 +41640,200380610,Manhattan,Chelsea,40.74119,-73.99535999999999,Entire home/apt,425,30,0,,65,327 +41641,227836692,Brooklyn,East Flatbush,40.651340000000005,-73.94309,Private room,133,1,0,,1,89 +41642,241708736,Manhattan,Morningside Heights,40.80511,-73.95824,Private room,300,3,0,,1,364 +41643,38483415,Manhattan,East Harlem,40.80108,-73.94601999999999,Private room,79,1,9,2.23,4,365 +41644,44948759,Brooklyn,Brooklyn Heights,40.69757,-73.99335,Entire home/apt,100,1,1,0.25,1,0 +41645,243129380,Brooklyn,Bushwick,40.68587,-73.9082,Private room,57,2,23,5.11,4,114 +41646,44123891,Manhattan,Upper East Side,40.77189,-73.94694,Entire home/apt,260,7,2,0.75,1,76 +41647,243132541,Manhattan,Upper East Side,40.76262,-73.96443000000001,Entire home/apt,1497,1,10,2.36,1,363 +41648,243129380,Brooklyn,Bushwick,40.6872,-73.90895,Private room,55,2,18,4.0,4,188 +41649,243129380,Brooklyn,Bushwick,40.68772,-73.90808,Private room,51,2,15,3.33,4,111 +41650,243131091,Manhattan,Upper West Side,40.77422,-73.97778000000001,Private room,95,2,13,3.61,1,6 +41651,51509098,Brooklyn,Bushwick,40.70218,-73.93581999999999,Entire home/apt,125,5,1,0.24,1,11 +41652,243147506,Staten Island,Stapleton,40.6279,-74.08202,Entire home/apt,275,2,11,3.51,1,182 +41653,225790094,Brooklyn,East Flatbush,40.64929,-73.92685,Private room,35,1,7,1.47,3,365 +41654,225790094,Brooklyn,East Flatbush,40.65015,-73.92803,Private room,35,1,7,1.84,3,351 +41655,107180958,Brooklyn,Crown Heights,40.676520000000004,-73.94015999999999,Shared room,26,15,2,0.59,2,23 +41656,107180958,Brooklyn,Crown Heights,40.67692,-73.94038,Shared room,26,20,2,0.75,2,49 +41657,243181741,Manhattan,Two Bridges,40.71257,-73.995,Entire home/apt,175,2,15,3.44,1,90 +41658,141508996,Manhattan,East Village,40.72498,-73.97604,Private room,95,1,6,1.49,1,160 +41659,4427256,Brooklyn,Williamsburg,40.71581,-73.95546,Entire home/apt,215,90,0,,1,328 +41660,331328,Manhattan,East Harlem,40.80526,-73.93818,Entire home/apt,95,14,2,0.6,3,3 +41661,201791531,Brooklyn,Williamsburg,40.71682,-73.95446,Private room,66,182,0,,1,157 +41662,30283594,Manhattan,Kips Bay,40.74378,-73.97355999999999,Entire home/apt,239,29,0,,121,364 +41663,30283594,Manhattan,Kips Bay,40.74361,-73.97523000000001,Entire home/apt,239,29,0,,121,364 +41664,30283594,Manhattan,Kips Bay,40.742709999999995,-73.97533,Entire home/apt,209,29,0,,121,184 +41665,107434423,Manhattan,Financial District,40.703990000000005,-74.00908000000001,Entire home/apt,306,90,0,,232,281 +41666,243297214,Brooklyn,Williamsburg,40.710840000000005,-73.95875,Private room,60,4,3,0.76,1,0 +41667,110062861,Manhattan,Harlem,40.814609999999995,-73.94635,Entire home/apt,110,4,5,1.23,2,214 +41668,25318403,Brooklyn,Williamsburg,40.71244,-73.9581,Entire home/apt,750,3,0,,3,7 +41669,238766198,Brooklyn,Williamsburg,40.71235,-73.93963000000001,Private room,67,2,9,1.99,1,345 +41670,155993704,Brooklyn,Bushwick,40.68385,-73.90653,Private room,75,1,3,0.93,1,364 +41671,5611846,Manhattan,Greenwich Village,40.72847,-74.00094,Entire home/apt,200,3,0,,1,0 +41672,210218219,Bronx,Longwood,40.81694,-73.89627,Private room,60,1,8,1.97,1,308 +41673,153565366,Brooklyn,Carroll Gardens,40.68391,-73.99226,Entire home/apt,190,4,12,3.33,3,207 +41674,237668552,Brooklyn,Cobble Hill,40.68557,-73.99829,Private room,85,2,11,2.56,2,111 +41675,79729447,Bronx,Throgs Neck,40.8149,-73.81545,Entire home/apt,125,3,1,1.0,1,365 +41676,22819324,Brooklyn,Bushwick,40.69678,-73.90828,Private room,50,2,1,1.0,2,0 +41677,243333842,Manhattan,Nolita,40.72186,-73.99696,Entire home/apt,172,2,8,1.98,1,42 +41678,212776359,Queens,Astoria,40.758359999999996,-73.9175,Private room,80,2,14,3.26,1,51 +41679,18562674,Manhattan,Harlem,40.8276,-73.94457,Private room,58,1,4,0.85,2,365 +41680,102692931,Brooklyn,Cypress Hills,40.68632,-73.87791999999999,Entire home/apt,179,4,10,3.37,1,17 +41681,192383231,Bronx,Melrose,40.818940000000005,-73.91418,Private room,49,2,2,2.0,1,0 +41682,131476075,Brooklyn,Bushwick,40.68757,-73.91183000000001,Entire home/apt,166,1,11,2.56,8,177 +41683,122559140,Brooklyn,Fort Greene,40.68912,-73.97903000000001,Entire home/apt,133,25,1,1.0,1,0 +41684,243367528,Queens,Astoria,40.76636,-73.91366,Entire home/apt,220,1,12,2.81,7,308 +41685,243367528,Queens,Astoria,40.76514,-73.91212,Private room,62,1,16,3.38,7,308 +41686,23260853,Queens,Astoria,40.76889,-73.92957,Entire home/apt,125,2,4,0.92,1,14 +41687,243367528,Queens,Astoria,40.76575,-73.91366,Private room,80,1,21,4.53,7,313 +41688,243367528,Queens,Astoria,40.764720000000004,-73.91358000000001,Private room,70,1,14,3.26,7,313 +41689,243367528,Queens,Astoria,40.76466,-73.91274,Shared room,40,1,17,3.59,7,313 +41690,3048319,Manhattan,Hell's Kitchen,40.76188,-73.99925,Entire home/apt,250,30,0,,2,342 +41691,238959309,Bronx,Longwood,40.82095,-73.89522,Private room,100,2,0,,1,179 +41692,1543357,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95203000000001,Entire home/apt,179,1,18,4.66,1,323 +41693,5945833,Manhattan,East Village,40.72888,-73.98109000000001,Entire home/apt,240,3,7,1.79,1,99 +41694,243466968,Queens,Jamaica,40.67355,-73.7834,Private room,55,2,19,4.22,1,0 +41695,231704,Manhattan,Upper West Side,40.7897,-73.97909,Entire home/apt,317,30,0,,3,358 +41696,243487765,Manhattan,Murray Hill,40.75097,-73.97895,Entire home/apt,515,2,31,6.84,1,163 +41697,15336905,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9356,Private room,57,2,0,,1,61 +41698,189114879,Brooklyn,Greenpoint,40.727509999999995,-73.95693,Entire home/apt,175,2,2,0.56,1,103 +41699,133030103,Bronx,Wakefield,40.89308,-73.85076,Private room,41,7,2,0.58,1,357 +41700,157430725,Brooklyn,Gowanus,40.66757,-73.99486999999999,Entire home/apt,180,2,5,1.72,3,0 +41701,200239515,Queens,Woodside,40.744820000000004,-73.89256,Private room,35,30,0,,15,61 +41702,243526828,Brooklyn,Canarsie,40.639790000000005,-73.89647,Entire home/apt,200,3,3,1.13,1,357 +41703,242544120,Brooklyn,Bedford-Stuyvesant,40.68226,-73.92643000000001,Private room,60,3,1,0.25,1,0 +41704,9289171,Brooklyn,Crown Heights,40.66916,-73.93182,Entire home/apt,125,2,20,9.68,1,87 +41705,206758177,Manhattan,Upper West Side,40.800470000000004,-73.96064,Entire home/apt,200,1,22,4.89,3,0 +41706,40846857,Brooklyn,Crown Heights,40.67241,-73.95040999999999,Private room,70,2,0,,2,66 +41707,10120673,Manhattan,Hell's Kitchen,40.76121,-73.98813,Entire home/apt,220,5,5,1.95,2,1 +41708,226314382,Brooklyn,Flatbush,40.65292,-73.95676999999999,Shared room,25,1,8,1.73,1,0 +41709,243556325,Brooklyn,Bensonhurst,40.61268,-73.98857,Entire home/apt,100,30,0,,1,312 +41710,112430492,Manhattan,Washington Heights,40.83591,-73.94033,Private room,75,1,5,1.19,1,0 +41711,39427266,Queens,Rego Park,40.73288,-73.86438000000001,Entire home/apt,108,210,0,,1,270 +41712,243627109,Manhattan,Midtown,40.75169,-73.97301999999999,Private room,250,4,2,1.15,1,76 +41713,49625765,Queens,Briarwood,40.709,-73.81430999999999,Private room,62,2,9,2.33,1,13 +41714,158739,Brooklyn,Prospect-Lefferts Gardens,40.663109999999996,-73.94355999999999,Private room,65,2,2,1.15,2,81 +41715,243655782,Manhattan,Upper East Side,40.77534,-73.95286999999999,Private room,1250,5,0,,1,116 +41716,10434070,Manhattan,Morningside Heights,40.804190000000006,-73.96603,Entire home/apt,180,5,4,0.85,1,4 +41717,79499558,Queens,Jackson Heights,40.75135,-73.88378,Private room,85,4,14,3.72,4,50 +41718,1403333,Manhattan,NoHo,40.72612,-73.99494,Entire home/apt,325,2,5,1.24,1,31 +41719,243687825,Brooklyn,Crown Heights,40.675270000000005,-73.90862,Entire home/apt,104,1,28,6.13,1,174 +41720,17578498,Manhattan,East Harlem,40.798759999999994,-73.93802,Private room,77,2,9,2.5,1,0 +41721,10557160,Brooklyn,Crown Heights,40.675,-73.9631,Private room,50,3,10,2.19,1,0 +41722,243716532,Brooklyn,Bedford-Stuyvesant,40.690670000000004,-73.95823,Entire home/apt,120,5,12,3.87,1,137 +41723,24979823,Brooklyn,Prospect-Lefferts Gardens,40.65504,-73.96113000000001,Private room,70,3,0,,1,50 +41724,28556029,Manhattan,East Harlem,40.812129999999996,-73.93751999999999,Entire home/apt,95,3,16,4.07,1,0 +41725,233732841,Manhattan,Washington Heights,40.83495,-73.94682,Entire home/apt,150,1,0,,2,79 +41726,243741999,Queens,Jackson Heights,40.74796,-73.88399,Private room,42,2,20,4.48,1,80 +41727,241545382,Manhattan,Hell's Kitchen,40.76142,-73.98987,Entire home/apt,180,3,17,3.75,1,281 +41728,50544293,Manhattan,Greenwich Village,40.73238,-73.99954,Private room,110,1,13,3.0,2,0 +41729,243766178,Bronx,Westchester Square,40.83619,-73.84916,Private room,52,4,1,0.22,1,0 +41730,12198291,Manhattan,Chelsea,40.74458,-74.00644,Shared room,180,1,0,,1,0 +41731,1197307,Manhattan,Washington Heights,40.85326,-73.93813,Entire home/apt,80,3,0,,1,12 +41732,243787623,Brooklyn,Bushwick,40.6994,-73.92186,Entire home/apt,90,7,10,2.26,1,66 +41733,243026919,Manhattan,East Harlem,40.80584,-73.94066,Private room,79,1,16,7.38,2,93 +41734,55202404,Manhattan,Upper East Side,40.779140000000005,-73.95049,Entire home/apt,100,30,1,0.44,1,50 +41735,123745971,Manhattan,Upper East Side,40.78385,-73.94828000000001,Private room,420,2,0,,6,351 +41736,123745971,Manhattan,Upper East Side,40.78213,-73.94839,Private room,500,2,0,,6,351 +41737,1575044,Brooklyn,Bushwick,40.70176,-73.92684,Entire home/apt,135,3,7,1.96,1,117 +41738,238119405,Brooklyn,Bushwick,40.6835,-73.9074,Private room,51,1,11,2.41,5,166 +41739,163737392,Bronx,Fieldston,40.896,-73.89964,Private room,64,1,11,3.47,2,358 +41740,243875619,Brooklyn,Bedford-Stuyvesant,40.688340000000004,-73.9444,Private room,48,1,22,5.37,2,257 +41741,58483,Manhattan,West Village,40.73988,-74.00356,Entire home/apt,500,2,0,,1,0 +41742,238779678,Manhattan,East Village,40.72704,-73.98916,Private room,55,30,0,,9,365 +41743,238779678,Manhattan,East Village,40.72586,-73.98874,Private room,55,30,0,,9,332 +41744,238779678,Manhattan,East Village,40.72625,-73.98884,Private room,55,30,0,,9,340 +41745,219517861,Manhattan,Murray Hill,40.746970000000005,-73.97537,Entire home/apt,282,2,7,1.93,327,125 +41746,219517861,Manhattan,Murray Hill,40.7472,-73.97418,Entire home/apt,192,29,0,,327,363 +41747,219517861,Manhattan,Murray Hill,40.748979999999996,-73.97534,Entire home/apt,202,29,0,,327,365 +41748,219517861,Manhattan,Murray Hill,40.74927,-73.9739,Entire home/apt,169,29,2,0.6,327,332 +41749,219517861,Manhattan,Murray Hill,40.74706,-73.97594000000001,Entire home/apt,200,29,0,,327,311 +41750,219517861,Manhattan,Murray Hill,40.74864,-73.97407,Entire home/apt,169,29,1,0.48,327,220 +41751,219517861,Manhattan,Murray Hill,40.74915,-73.97556999999999,Entire home/apt,172,29,2,0.75,327,338 +41752,182709,Manhattan,East Village,40.73147,-73.98825,Entire home/apt,199,1,8,6.49,1,65 +41753,219517861,Manhattan,Murray Hill,40.74781,-73.97601,Entire home/apt,202,29,1,0.47,327,338 +41754,64106093,Brooklyn,Cypress Hills,40.67715,-73.86672,Entire home/apt,150,2,11,3.93,1,217 +41755,219517861,Manhattan,Murray Hill,40.74725,-73.97404,Entire home/apt,160,29,0,,327,318 +41756,219517861,Manhattan,Murray Hill,40.749179999999996,-73.97379000000001,Entire home/apt,204,29,0,,327,158 +41757,216419980,Manhattan,Harlem,40.8242,-73.95106,Entire home/apt,112,30,0,,1,365 +41758,33783958,Brooklyn,Prospect Heights,40.681059999999995,-73.97304,Entire home/apt,150,4,1,0.41,1,63 +41759,243931948,Brooklyn,Williamsburg,40.71765,-73.96254,Entire home/apt,179,2,2,0.47,1,2 +41760,39079982,Manhattan,East Harlem,40.7908,-73.94491,Private room,99,1,6,1.49,1,0 +41761,243944082,Brooklyn,Flatbush,40.65215,-73.9647,Entire home/apt,110,13,0,,1,8 +41762,19303369,Manhattan,Inwood,40.8647,-73.92353,Private room,29,30,0,,37,1 +41763,130827164,Manhattan,Upper East Side,40.7718,-73.95555999999999,Private room,150,2,5,1.4,2,345 +41764,209376540,Queens,College Point,40.76813,-73.84541999999999,Entire home/apt,60,30,0,,1,121 +41765,109516888,Manhattan,Morningside Heights,40.810520000000004,-73.95973000000001,Private room,175,6,1,0.25,1,252 +41766,1458110,Manhattan,Greenwich Village,40.72835,-74.00053,Private room,78,4,0,,2,13 +41767,35004442,Brooklyn,Bedford-Stuyvesant,40.696999999999996,-73.93788,Private room,96,2,2,1.82,1,103 +41768,12593328,Brooklyn,East Flatbush,40.64577,-73.93118,Entire home/apt,74,3,11,2.84,3,86 +41769,230205171,Bronx,Schuylerville,40.84321,-73.83129,Entire home/apt,100,2,22,4.93,1,3 +41770,244008821,Manhattan,West Village,40.7354,-74.00208,Private room,2850,100,0,,1,270 +41771,25214775,Manhattan,East Village,40.727740000000004,-73.98857,Entire home/apt,240,2,0,,1,9 +41772,38786890,Brooklyn,Clinton Hill,40.69151,-73.96059,Entire home/apt,120,3,2,0.82,1,113 +41773,126176275,Brooklyn,East Flatbush,40.63707,-73.93148000000001,Private room,35,4,10,2.59,4,42 +41774,244008816,Manhattan,Upper West Side,40.80134,-73.96897,Entire home/apt,120,1,19,4.45,1,65 +41775,200380610,Manhattan,Hell's Kitchen,40.76259,-73.98666999999999,Entire home/apt,190,30,0,,65,365 +41776,180008916,Brooklyn,Bedford-Stuyvesant,40.68116,-73.94738000000001,Entire home/apt,400,1,5,1.23,2,5 +41777,200380610,Manhattan,Upper East Side,40.77903,-73.95071,Entire home/apt,210,30,0,,65,364 +41778,200380610,Manhattan,Theater District,40.76193,-73.98573,Entire home/apt,310,30,0,,65,338 +41779,9979861,Brooklyn,Bedford-Stuyvesant,40.69617,-73.93763,Private room,66,1,0,,1,0 +41780,244082709,Queens,Springfield Gardens,40.65795,-73.76996,Entire home/apt,175,1,15,3.31,7,68 +41781,6663384,Brooklyn,Columbia St,40.68502,-74.0051,Entire home/apt,100,2,4,0.93,1,0 +41782,151460365,Manhattan,East Harlem,40.7984,-73.94266999999999,Entire home/apt,100,2,16,3.58,1,8 +41783,244082709,Queens,Springfield Gardens,40.66019,-73.77157,Private room,75,1,29,6.35,7,163 +41784,244082709,Queens,Springfield Gardens,40.65933,-73.77125,Entire home/apt,175,1,17,3.75,7,160 +41785,244082709,Queens,Springfield Gardens,40.659729999999996,-73.77125,Private room,55,1,17,3.92,7,161 +41786,244082709,Queens,Springfield Gardens,40.65953,-73.76923000000001,Private room,75,1,8,1.86,7,179 +41787,136943521,Brooklyn,Bushwick,40.695009999999996,-73.91125,Shared room,30,1,11,2.34,1,157 +41788,244135864,Brooklyn,Bushwick,40.70305,-73.93127,Entire home/apt,69,2,4,0.86,1,0 +41789,244082709,Queens,Springfield Gardens,40.6597,-73.76993,Private room,65,1,14,3.23,7,177 +41790,244082709,Queens,Springfield Gardens,40.65994,-73.77069,Private room,85,1,14,3.89,7,163 +41791,12674973,Brooklyn,Clinton Hill,40.687709999999996,-73.96304,Entire home/apt,143,2,22,5.0,1,81 +41792,113805886,Manhattan,Upper East Side,40.77883,-73.9505,Entire home/apt,206,30,0,,33,217 +41793,235115405,Brooklyn,Williamsburg,40.7077,-73.95331999999999,Private room,65,2,13,3.33,2,9 +41794,33299125,Brooklyn,Bedford-Stuyvesant,40.68199,-73.95130999999999,Entire home/apt,150,15,1,1.0,1,146 +41795,62305875,Brooklyn,Williamsburg,40.71304,-73.96729,Entire home/apt,107,30,1,0.55,1,53 +41796,154465734,Manhattan,Lower East Side,40.719359999999995,-73.98402,Entire home/apt,500,30,0,,1,81 +41797,28917776,Manhattan,Upper East Side,40.78139,-73.95379,Private room,87,2,2,2.0,1,76 +41798,67274316,Brooklyn,Columbia St,40.68418,-74.00313,Entire home/apt,175,2,30,7.14,1,73 +41799,34943243,Queens,Astoria,40.76273,-73.90869,Private room,48,2,1,0.22,1,0 +41800,48328095,Brooklyn,Prospect Heights,40.67651,-73.96681,Entire home/apt,82,6,5,1.25,1,42 +41801,14804867,Manhattan,Upper East Side,40.76965,-73.95326,Private room,78,3,11,2.6,1,116 +41802,63116168,Brooklyn,Flatbush,40.65027,-73.9608,Entire home/apt,105,3,1,0.29,1,38 +41803,71276635,Manhattan,Washington Heights,40.83528,-73.94179,Entire home/apt,285,1,17,4.08,5,261 +41804,191011879,Manhattan,Midtown,40.754490000000004,-73.9677,Private room,250,1,0,,2,268 +41805,244217480,Staten Island,Arden Heights,40.54857,-74.17628,Entire home/apt,83,30,3,0.9,1,316 +41806,3104336,Brooklyn,Bushwick,40.70094,-73.93013,Private room,35,90,0,,1,326 +41807,244182582,Manhattan,Lower East Side,40.72088,-73.99311999999999,Private room,86,30,0,,4,310 +41808,244182582,Manhattan,Lower East Side,40.71933,-73.99431,Private room,76,30,0,,4,339 +41809,145518739,Manhattan,Gramercy,40.73572,-73.98736,Private room,150,2,10,2.54,3,334 +41810,244231812,Brooklyn,Bushwick,40.70084,-73.93033,Private room,80,1,0,,1,341 +41811,243614369,Manhattan,Midtown,40.74757,-73.98564,Entire home/apt,145,3,7,2.88,1,36 +41812,850498,Manhattan,Upper East Side,40.78028,-73.95528,Entire home/apt,149,30,0,,1,62 +41813,165725362,Manhattan,Chinatown,40.71358,-73.99091,Entire home/apt,150,30,7,1.84,2,88 +41814,4107600,Brooklyn,Bushwick,40.7041,-73.91688,Private room,55,2,5,4.69,3,317 +41815,204704622,Queens,Elmhurst,40.740629999999996,-73.87732,Private room,33,29,1,1.0,7,34 +41816,244197139,Manhattan,Nolita,40.720040000000004,-73.99486,Private room,62,30,0,,5,249 +41817,7441368,Manhattan,Hell's Kitchen,40.7548,-73.9948,Entire home/apt,175,1,27,6.59,2,133 +41818,165860505,Manhattan,Upper East Side,40.77705,-73.96038,Private room,90,1,4,0.88,1,0 +41819,1938828,Brooklyn,East Flatbush,40.64882,-73.94537,Entire home/apt,85,6,12,3.33,3,215 +41820,244171850,Queens,Ridgewood,40.700829999999996,-73.90802,Private room,47,35,0,,10,331 +41821,244197139,Manhattan,Nolita,40.721579999999996,-73.9941,Private room,62,30,0,,5,188 +41822,244171850,Queens,Ridgewood,40.70296,-73.90602,Private room,47,35,0,,10,365 +41823,244171850,Queens,Ridgewood,40.70075,-73.90741,Private room,47,45,0,,10,330 +41824,26178450,Manhattan,Hell's Kitchen,40.7548,-73.99818,Private room,90,2,10,2.34,1,14 +41825,33159631,Brooklyn,Carroll Gardens,40.67797,-73.99969,Entire home/apt,199,2,17,5.05,1,31 +41826,214863971,Brooklyn,Flatlands,40.62063,-73.9244,Private room,40,2,10,2.34,2,43 +41827,118566355,Brooklyn,Fort Greene,40.68875,-73.9761,Private room,90,2,1,1.0,1,83 +41828,51810229,Queens,Ridgewood,40.69903,-73.90961,Entire home/apt,150,28,0,,1,197 +41829,173009,Staten Island,Stapleton,40.63285,-74.0778,Entire home/apt,125,2,10,3.19,1,252 +41830,235252386,Queens,Ditmars Steinway,40.77097,-73.91107,Entire home/apt,350,3,3,0.99,1,97 +41831,139033454,Manhattan,Hell's Kitchen,40.7645,-73.98862,Private room,70,2,1,1.0,1,3 +41832,88367005,Brooklyn,Bushwick,40.68949,-73.90588000000001,Private room,36,1,1,0.24,1,0 +41833,178793639,Manhattan,Greenwich Village,40.72835,-74.00159000000001,Entire home/apt,175,3,0,,1,157 +41834,224340103,Brooklyn,Williamsburg,40.709270000000004,-73.94684000000001,Private room,75,1,2,0.44,2,151 +41835,138492193,Manhattan,Little Italy,40.71907,-73.99685,Entire home/apt,160,1,25,5.47,1,29 +41836,17535511,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95076,Entire home/apt,150,2,0,,1,0 +41837,3910399,Manhattan,Hell's Kitchen,40.76211,-73.99873000000001,Entire home/apt,295,3,2,1.0,2,39 +41838,3910399,Manhattan,Hell's Kitchen,40.76063,-73.99863,Entire home/apt,295,3,2,0.52,2,2 +41839,244438661,Manhattan,Upper West Side,40.7966,-73.97428000000001,Private room,125,3,1,0.35,2,0 +41840,76484622,Manhattan,Greenwich Village,40.72824,-74.00259,Entire home/apt,215,4,2,0.53,1,148 +41841,244453286,Queens,Sunnyside,40.73643,-73.91886,Entire home/apt,115,2,16,4.36,2,34 +41842,41658748,Queens,Ditmars Steinway,40.77129,-73.91226,Entire home/apt,175,2,16,4.03,3,331 +41843,43811211,Manhattan,Chinatown,40.716120000000004,-73.99273000000001,Entire home/apt,299,2,5,2.05,1,324 +41844,45499169,Manhattan,Greenwich Village,40.72927,-74.00003000000001,Entire home/apt,146,30,1,0.23,1,89 +41845,168814318,Queens,Jamaica Estates,40.71894,-73.78188,Entire home/apt,250,2,15,4.46,1,94 +41846,219738858,Manhattan,East Village,40.72956,-73.98113000000001,Entire home/apt,161,30,18,4.22,5,204 +41847,230165497,Manhattan,Midtown,40.76607,-73.9826,Entire home/apt,140,30,1,0.35,4,327 +41848,148102066,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94372,Private room,55,1,33,7.17,4,298 +41849,200380610,Manhattan,Gramercy,40.73512,-73.98614,Entire home/apt,235,30,0,,65,242 +41850,97172649,Manhattan,Murray Hill,40.74974,-73.98094,Private room,200,5,0,,1,263 +41851,168495229,Brooklyn,Crown Heights,40.66661,-73.95366999999999,Private room,48,5,2,0.48,1,15 +41852,244197139,Manhattan,Nolita,40.72033,-73.99526999999999,Private room,66,30,1,0.36,5,125 +41853,244171850,Queens,Ridgewood,40.702459999999995,-73.90604,Private room,47,30,0,,10,340 +41854,238779678,Manhattan,East Village,40.726209999999995,-73.99028,Private room,59,30,0,,9,310 +41855,244197139,Manhattan,Nolita,40.72013,-73.99524,Private room,59,30,0,,5,125 +41856,489448,Brooklyn,Bushwick,40.6994,-73.92607,Private room,70,5,6,1.57,2,99 +41857,244171850,Queens,Ridgewood,40.70285,-73.90798000000001,Private room,47,30,0,,10,290 +41858,244171850,Queens,Ridgewood,40.701240000000006,-73.90774,Private room,47,30,0,,10,323 +41859,9864136,Brooklyn,Bushwick,40.684909999999995,-73.91324,Entire home/apt,85,30,1,0.25,26,312 +41860,244557149,Manhattan,Upper East Side,40.76226,-73.95808000000001,Entire home/apt,300,1,8,1.88,1,168 +41861,129581090,Brooklyn,Fort Greene,40.68842,-73.97349,Entire home/apt,160,2,12,3.13,1,71 +41862,244544373,Staten Island,St. George,40.63763,-74.08268000000001,Private room,100,1,0,,2,365 +41863,159587137,Brooklyn,Clinton Hill,40.68995,-73.9675,Entire home/apt,220,3,0,,2,159 +41864,220149091,Brooklyn,Bedford-Stuyvesant,40.69299,-73.94837,Private room,58,2,11,2.7,4,365 +41865,244573712,Manhattan,Chinatown,40.71411,-73.99375,Entire home/apt,145,2,3,0.79,1,0 +41866,244197139,Manhattan,Nolita,40.721059999999994,-73.99501,Private room,67,30,0,,5,137 +41867,99791908,Queens,Astoria,40.75756,-73.91931,Private room,70,5,1,0.29,2,0 +41868,56403037,Queens,Woodhaven,40.688990000000004,-73.85001,Shared room,35,1,11,4.52,3,53 +41869,244581878,Manhattan,Washington Heights,40.850190000000005,-73.93004,Entire home/apt,50,2,16,4.25,1,51 +41870,13196439,Manhattan,Financial District,40.70436,-74.00927,Entire home/apt,500,5,16,3.78,1,298 +41871,244596528,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93425,Entire home/apt,126,1,11,5.16,1,52 +41872,239139334,Queens,Bayside,40.76898,-73.78855,Private room,48,1,7,3.18,3,244 +41873,10414780,Manhattan,Chelsea,40.74149,-73.99701,Entire home/apt,139,3,4,1.17,1,58 +41874,244602318,Manhattan,Chelsea,40.75114,-73.99831,Entire home/apt,123,30,0,,1,341 +41875,51268465,Manhattan,Upper West Side,40.79467,-73.96923000000001,Entire home/apt,135,1,1,0.3,1,0 +41876,244182582,Manhattan,Lower East Side,40.72064,-73.99305,Private room,73,30,0,,4,364 +41877,33214549,Manhattan,East Village,40.727340000000005,-73.98389,Entire home/apt,369,1,10,3.75,5,97 +41878,47518086,Manhattan,East Harlem,40.81393,-73.93632,Private room,35,1,4,1.11,1,2 +41879,244635438,Brooklyn,Bushwick,40.7042,-73.91693000000001,Private room,39,1,15,3.36,1,13 +41880,9630772,Manhattan,Gramercy,40.73621,-73.98729,Private room,120,4,0,,2,12 +41881,119692067,Brooklyn,Sunset Park,40.64333,-74.00227,Private room,50,1,10,3.16,3,71 +41882,112439306,Manhattan,Stuyvesant Town,40.7318,-73.97999,Private room,125,4,1,0.24,1,0 +41883,119692067,Brooklyn,Sunset Park,40.644859999999994,-74.00255,Private room,60,1,7,3.13,3,84 +41884,53750726,Manhattan,Hell's Kitchen,40.767109999999995,-73.98732,Entire home/apt,200,3,5,1.21,1,13 +41885,9212686,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93695,Private room,55,2,1,0.27,1,0 +41886,244671957,Manhattan,Greenwich Village,40.73251,-73.99602,Entire home/apt,130,80,0,,1,214 +41887,244473721,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94615999999999,Entire home/apt,200,2,4,1.38,1,344 +41888,127667513,Manhattan,Greenwich Village,40.72781,-74.00039,Entire home/apt,185,30,0,,1,342 +41889,123745971,Manhattan,Upper East Side,40.78187,-73.94699,Private room,500,2,0,,6,351 +41890,123745971,Manhattan,Upper East Side,40.78216,-73.94841,Private room,540,2,0,,6,351 +41891,65284316,Queens,Long Island City,40.75541,-73.93647,Entire home/apt,120,1,3,0.72,1,0 +41892,123745971,Manhattan,Upper East Side,40.78266,-73.94673,Private room,700,2,0,,6,341 +41893,123745971,Manhattan,Upper East Side,40.78399,-73.94725,Private room,990,2,1,1.0,6,343 +41894,224666178,Brooklyn,Williamsburg,40.71263,-73.9581,Entire home/apt,150,2,6,1.5,1,2 +41895,16098958,Manhattan,Upper East Side,40.776709999999994,-73.95515999999999,Entire home/apt,280,30,0,,96,332 +41896,16098958,Manhattan,Midtown,40.756190000000004,-73.9654,Entire home/apt,135,30,0,,96,306 +41897,244733416,Brooklyn,Canarsie,40.63626,-73.90696,Entire home/apt,69,1,31,7.5,1,282 +41898,39329872,Brooklyn,Williamsburg,40.70857,-73.95258000000001,Entire home/apt,110,6,3,0.98,1,25 +41899,57746555,Brooklyn,Williamsburg,40.71015,-73.96019,Entire home/apt,180,1,0,,1,0 +41900,219517861,Manhattan,Murray Hill,40.74868,-73.97563000000001,Entire home/apt,257,2,8,2.03,327,108 +41901,219517861,Manhattan,Murray Hill,40.74862,-73.97531,Entire home/apt,243,2,4,1.35,327,140 +41902,239139334,Queens,Bayside,40.768679999999996,-73.78871,Private room,39,1,16,3.61,3,142 +41903,196613633,Brooklyn,Fort Greene,40.693540000000006,-73.97171999999999,Private room,95,5,0,,2,0 +41904,5409243,Manhattan,Harlem,40.82931,-73.94183000000001,Private room,65,2,6,1.59,2,1 +41905,66813379,Brooklyn,Crown Heights,40.66878,-73.93938,Entire home/apt,165,2,11,2.75,2,269 +41906,13733669,Manhattan,Harlem,40.81134,-73.94097,Private room,59,4,7,1.59,1,0 +41907,201015598,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91274,Shared room,35,1,2,0.75,17,49 +41908,137274917,Manhattan,Hell's Kitchen,40.75978,-73.99183000000001,Private room,115,1,16,3.75,12,217 +41909,6701890,Brooklyn,Greenpoint,40.73297,-73.95466,Entire home/apt,350,2,0,,2,76 +41910,137274917,Manhattan,Hell's Kitchen,40.7616,-73.99042,Private room,105,1,14,3.62,12,241 +41911,73049484,Brooklyn,Crown Heights,40.667790000000004,-73.92875,Entire home/apt,100,44,0,,2,53 +41912,2115395,Queens,Long Island City,40.74479,-73.94997,Entire home/apt,107,31,2,0.9,1,133 +41913,219517861,Manhattan,Murray Hill,40.74921,-73.97395,Entire home/apt,308,2,6,1.55,327,81 +41914,244804004,Brooklyn,Greenpoint,40.73738,-73.95679,Entire home/apt,99,4,10,2.36,2,19 +41915,244808289,Queens,Jamaica,40.67931,-73.80149,Private room,50,3,0,,1,74 +41916,81534306,Manhattan,Washington Heights,40.8524,-73.94214000000001,Private room,70,1,0,,2,0 +41917,137358866,Queens,Woodside,40.74228,-73.90049,Private room,43,30,0,,103,215 +41918,244817841,Brooklyn,East New York,40.669540000000005,-73.89539,Private room,35,7,4,1.19,13,260 +41919,168704622,Queens,Rosedale,40.66294,-73.73292,Entire home/apt,300,2,4,0.97,1,364 +41920,48194192,Brooklyn,Clinton Hill,40.693020000000004,-73.96475,Entire home/apt,395,4,2,0.64,4,0 +41921,65407018,Brooklyn,Greenpoint,40.72312,-73.93608,Private room,105,1,3,2.43,5,349 +41922,131298733,Manhattan,Upper East Side,40.78417,-73.94901999999999,Private room,80,2,1,0.3,1,0 +41923,244906527,Brooklyn,Williamsburg,40.71586,-73.9391,Entire home/apt,120,2,15,3.52,1,292 +41924,46081317,Queens,Astoria,40.75547,-73.91539,Private room,48,20,2,0.91,3,0 +41925,50321289,Brooklyn,Bedford-Stuyvesant,40.6837,-73.95655,Private room,51,3,5,1.52,3,0 +41926,244920495,Manhattan,Little Italy,40.719190000000005,-73.99654,Entire home/apt,120,60,1,0.39,1,37 +41927,211549023,Manhattan,Midtown,40.747659999999996,-73.9868,Entire home/apt,260,2,2,1.13,13,259 +41928,187419882,Manhattan,Harlem,40.828990000000005,-73.94185,Private room,82,2,4,0.94,3,90 +41929,27295569,Brooklyn,Brighton Beach,40.5767,-73.96,Private room,45,1,5,1.18,2,351 +41930,215778245,Queens,Corona,40.74147,-73.86753,Shared room,23,1,8,2.12,6,308 +41931,235990293,Manhattan,Washington Heights,40.84377,-73.94094,Private room,37,4,4,1.05,1,88 +41932,47518701,Brooklyn,Gowanus,40.67858,-73.98232,Entire home/apt,115,3,1,0.26,1,0 +41933,219517861,Manhattan,Murray Hill,40.74892,-73.97570999999999,Entire home/apt,300,2,5,1.17,327,58 +41934,219517861,Manhattan,Murray Hill,40.74763,-73.97524,Entire home/apt,316,2,5,1.17,327,76 +41935,219517861,Manhattan,Murray Hill,40.74734,-73.97438000000001,Entire home/apt,228,2,4,1.12,327,133 +41936,19303369,Queens,Elmhurst,40.73878,-73.87711,Private room,32,30,0,,37,0 +41937,32788431,Manhattan,East Harlem,40.80193,-73.93866,Private room,79,2,14,3.56,1,97 +41938,242816206,Bronx,Longwood,40.822359999999996,-73.90227,Private room,75,2,0,,1,361 +41939,19638146,Manhattan,SoHo,40.726079999999996,-74.00031,Private room,95,1,17,5.37,3,74 +41940,244973445,Brooklyn,Bushwick,40.69466,-73.9106,Private room,100,1,0,,1,35 +41941,244977552,Manhattan,Upper East Side,40.78609,-73.95340999999999,Entire home/apt,225,3,0,,1,166 +41942,19807856,Brooklyn,Clinton Hill,40.68575,-73.96311,Entire home/apt,200,2,6,2.5,1,76 +41943,13615300,Manhattan,Harlem,40.829159999999995,-73.9498,Entire home/apt,160,2,4,0.94,1,0 +41944,245002893,Queens,Rosedale,40.6684,-73.73563,Private room,42,5,2,0.9,2,178 +41945,245003299,Bronx,Clason Point,40.80924,-73.85106999999999,Entire home/apt,95,2,27,8.62,1,153 +41946,156381151,Manhattan,East Village,40.72467,-73.98836,Private room,90,2,6,1.7,2,0 +41947,244804004,Brooklyn,Greenpoint,40.73635,-73.95705,Private room,89,2,3,0.9,2,5 +41948,244817841,Brooklyn,East New York,40.669540000000005,-73.89575,Private room,35,180,0,,13,189 +41949,11785148,Brooklyn,Flatbush,40.654379999999996,-73.95624000000001,Entire home/apt,83,14,1,0.3,1,163 +41950,97417890,Manhattan,Kips Bay,40.74493,-73.9786,Entire home/apt,349,1,1,0.23,2,355 +41951,8714863,Brooklyn,Crown Heights,40.669470000000004,-73.95593000000001,Entire home/apt,90,3,20,4.96,1,2 +41952,7831200,Queens,Maspeth,40.73173,-73.899,Entire home/apt,100,1,13,3.28,1,183 +41953,12132369,Manhattan,Kips Bay,40.73767,-73.97384,Entire home/apt,150,7,0,,1,9 +41954,27287203,Manhattan,Upper West Side,40.79887,-73.96343,Private room,80,1,42,13.13,1,16 +41955,218407281,Manhattan,East Harlem,40.80551,-73.93654000000001,Private room,75,2,3,1.17,1,332 +41956,15034908,Manhattan,Harlem,40.80782,-73.94131999999999,Entire home/apt,278,3,4,0.99,2,133 +41957,17558599,Brooklyn,Prospect Heights,40.679109999999994,-73.9725,Entire home/apt,150,2,4,0.98,1,5 +41958,245160359,Bronx,Belmont,40.85505,-73.89238,Private room,40,2,28,6.72,1,84 +41959,489448,Brooklyn,Bushwick,40.699220000000004,-73.92636999999999,Private room,65,5,8,2.09,2,100 +41960,82326716,Brooklyn,Bedford-Stuyvesant,40.6953,-73.94391999999999,Entire home/apt,90,1,5,1.53,1,6 +41961,61524764,Manhattan,Upper East Side,40.76746,-73.95861,Entire home/apt,199,1,20,5.17,1,49 +41962,139145066,Brooklyn,East New York,40.67561,-73.88072,Entire home/apt,106,1,33,7.56,2,15 +41963,59089761,Brooklyn,Williamsburg,40.71107,-73.96449,Private room,55,30,0,,1,87 +41964,51596474,Brooklyn,Gravesend,40.585390000000004,-73.96984,Shared room,28,9,2,0.55,12,0 +41965,245206417,Manhattan,Hell's Kitchen,40.756159999999994,-73.99408000000001,Entire home/apt,132,10,9,2.45,1,174 +41966,244817841,Brooklyn,East New York,40.66888,-73.89372,Private room,35,7,12,3.1,13,247 +41967,6895494,Brooklyn,Bedford-Stuyvesant,40.679809999999996,-73.90606,Private room,29,3,5,1.74,1,18 +41968,244817841,Brooklyn,East New York,40.669340000000005,-73.89402,Private room,35,7,7,1.75,13,252 +41969,15764988,Brooklyn,Bushwick,40.69835,-73.9361,Entire home/apt,100,3,5,1.17,1,326 +41970,244817841,Brooklyn,East New York,40.66962,-73.89404,Private room,42,7,1,0.64,13,98 +41971,215891351,Brooklyn,Bushwick,40.69935,-73.92407,Private room,43,2,17,4.05,2,68 +41972,72234136,Queens,Astoria,40.77655,-73.93587,Private room,100,1,11,2.89,1,124 +41973,244817841,Brooklyn,East New York,40.66946,-73.89404,Private room,35,7,5,1.33,13,116 +41974,244817841,Brooklyn,East New York,40.66977,-73.89356,Private room,40,7,8,2.05,13,198 +41975,244817841,Brooklyn,East New York,40.669740000000004,-73.89569,Private room,38,7,6,1.64,13,301 +41976,244817841,Brooklyn,East New York,40.6697,-73.8954,Private room,40,7,5,1.95,13,247 +41977,43044876,Queens,Elmhurst,40.73534,-73.87767,Private room,35,29,3,0.87,5,2 +41978,79567015,Bronx,Mott Haven,40.81496,-73.92088000000001,Private room,60,1,1,0.33,1,90 +41979,27736765,Brooklyn,Bedford-Stuyvesant,40.67899,-73.93548,Entire home/apt,160,100,0,,1,0 +41980,244964029,Queens,Far Rockaway,40.59639,-73.7486,Entire home/apt,147,4,20,4.92,1,107 +41981,200261161,Manhattan,Upper West Side,40.798770000000005,-73.96313,Private room,80,1,16,3.64,3,0 +41982,5409243,Manhattan,Harlem,40.82928,-73.94054,Entire home/apt,135,3,1,0.41,2,3 +41983,219517861,Manhattan,Financial District,40.706590000000006,-74.0102,Entire home/apt,484,2,8,2.0,327,247 +41984,219517861,Manhattan,Financial District,40.70598,-74.01193,Entire home/apt,211,2,15,4.21,327,325 +41985,219517861,Manhattan,Financial District,40.70795,-74.01096,Entire home/apt,388,2,9,2.35,327,262 +41986,219517861,Manhattan,Financial District,40.70575,-74.01231,Entire home/apt,407,2,9,2.18,327,294 +41987,219517861,Manhattan,Financial District,40.70759,-74.01241999999999,Entire home/apt,425,2,5,1.18,327,311 +41988,219517861,Manhattan,Financial District,40.70728,-74.01073000000001,Entire home/apt,432,2,3,1.11,327,323 +41989,219517861,Manhattan,Financial District,40.70778,-74.01074,Entire home/apt,205,2,8,2.64,327,327 +41990,219517861,Manhattan,Financial District,40.70604,-74.01216,Entire home/apt,248,2,7,2.59,327,294 +41991,219517861,Manhattan,Financial District,40.706520000000005,-74.01048,Entire home/apt,396,2,6,1.8,327,323 +41992,219517861,Manhattan,Financial District,40.70624,-74.01227,Entire home/apt,376,2,10,2.46,327,276 +41993,6790993,Brooklyn,Bedford-Stuyvesant,40.68908,-73.9522,Private room,93,1,0,,1,77 +41994,3002665,Brooklyn,Williamsburg,40.7146,-73.94167,Shared room,125,1,1,0.54,2,365 +41995,219517861,Manhattan,Financial District,40.7057,-74.01221,Entire home/apt,230,2,6,1.98,327,297 +41996,219517861,Manhattan,Financial District,40.70608,-74.01111999999999,Entire home/apt,416,2,7,1.72,327,338 +41997,236908324,Manhattan,Washington Heights,40.85117,-73.94065,Private room,50,1,22,5.41,1,24 +41998,3901955,Manhattan,Harlem,40.80556,-73.95496999999999,Entire home/apt,134,7,0,,1,9 +41999,160618190,Queens,Jamaica,40.70225,-73.81546,Entire home/apt,129,30,0,,1,348 +42000,245369413,Bronx,Parkchester,40.83485,-73.85954,Entire home/apt,93,5,1,0.23,1,306 +42001,2603586,Manhattan,Harlem,40.80761,-73.94305,Private room,150,2,0,,1,6 +42002,16866694,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93856,Entire home/apt,100,1,13,3.86,1,13 +42003,225087238,Brooklyn,Williamsburg,40.70881,-73.96688,Entire home/apt,235,5,13,2.98,1,153 +42004,72166833,Manhattan,Washington Heights,40.84389,-73.93688,Private room,51,3,0,,1,13 +42005,161985273,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.9499,Private room,45,3,7,3.13,1,43 +42006,245399415,Queens,Astoria,40.756640000000004,-73.92806,Entire home/apt,180,1,12,2.98,1,82 +42007,16098958,Manhattan,Hell's Kitchen,40.76651,-73.98751999999999,Entire home/apt,202,30,1,0.77,96,327 +42008,123810965,Manhattan,Harlem,40.81072,-73.94236,Private room,50,1,13,3.22,2,168 +42009,48146336,Manhattan,Hell's Kitchen,40.762370000000004,-73.99202,Entire home/apt,160,30,1,0.58,20,332 +42010,227520154,Brooklyn,Williamsburg,40.70897,-73.96392,Private room,65,4,0,,2,280 +42011,242594287,Manhattan,Hell's Kitchen,40.76852,-73.98895,Private room,90,3,2,0.48,1,66 +42012,195509478,Queens,Maspeth,40.74165,-73.90603,Private room,50,1,0,,2,62 +42013,54645176,Manhattan,East Village,40.72712,-73.97763,Private room,220,3,1,0.23,1,0 +42014,200261161,Manhattan,Upper West Side,40.79872,-73.96069,Private room,67,1,22,5.64,3,38 +42015,10113653,Brooklyn,Bushwick,40.695040000000006,-73.9264,Private room,45,2,5,1.55,1,9 +42016,160356,Manhattan,East Village,40.7253,-73.98401,Entire home/apt,250,1,5,1.47,4,233 +42017,7335887,Queens,Glendale,40.699909999999996,-73.89488,Entire home/apt,190,4,7,2.28,2,70 +42018,229637274,Queens,Elmhurst,40.74792,-73.88115,Private room,42,1,6,3.05,2,0 +42019,6410979,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94556,Entire home/apt,109,2,5,1.24,2,0 +42020,137358866,Queens,Woodside,40.746829999999996,-73.90654,Private room,50,30,0,,103,94 +42021,102221050,Manhattan,Hell's Kitchen,40.76086,-73.98926999999999,Private room,150,1,16,4.17,2,255 +42022,148960265,Manhattan,Marble Hill,40.87618,-73.91268000000001,Private room,40,3,0,,3,308 +42023,12247755,Manhattan,Upper West Side,40.77961,-73.98474,Entire home/apt,150,14,3,0.98,1,0 +42024,1284729,Manhattan,Upper East Side,40.77756,-73.95408,Entire home/apt,137,7,1,0.33,1,12 +42025,231870747,Manhattan,Harlem,40.82455,-73.94585,Private room,44,14,2,1.71,1,0 +42026,245474906,Manhattan,East Harlem,40.795190000000005,-73.94115,Entire home/apt,350,3,8,2.18,1,318 +42027,2521127,Manhattan,Upper West Side,40.76829,-73.98298,Private room,275,2,13,3.15,1,233 +42028,139306955,Queens,Forest Hills,40.7164,-73.83501,Entire home/apt,150,5,3,0.99,1,75 +42029,52835849,Brooklyn,Bushwick,40.70153,-73.92996,Private room,60,7,0,,2,332 +42030,75011143,Manhattan,Hell's Kitchen,40.76125,-73.98849,Entire home/apt,125,3,9,2.13,1,191 +42031,219517861,Manhattan,Murray Hill,40.74422,-73.97309,Entire home/apt,174,29,0,,327,312 +42032,64433748,Manhattan,Chelsea,40.74855,-74.00074000000001,Shared room,65,1,19,4.45,1,208 +42033,219517861,Manhattan,Murray Hill,40.74436,-73.97223000000001,Entire home/apt,192,29,0,,327,329 +42034,319842,Manhattan,East Village,40.72681,-73.97955,Private room,185,2,0,,1,26 +42035,25575398,Brooklyn,Crown Heights,40.668279999999996,-73.95340999999999,Private room,70,5,3,0.9,1,9 +42036,112173787,Manhattan,East Harlem,40.791909999999994,-73.93982,Entire home/apt,166,2,2,0.65,1,0 +42037,57007752,Queens,Long Island City,40.76321,-73.93472,Private room,55,2,15,3.88,2,114 +42038,194804585,Queens,Jackson Heights,40.75245,-73.88586,Private room,55,3,4,4.0,2,61 +42039,245013643,Manhattan,Gramercy,40.73379,-73.98605,Entire home/apt,130,30,0,,2,342 +42040,8498596,Brooklyn,Williamsburg,40.715579999999996,-73.94877,Private room,95,2,14,3.44,1,32 +42041,776290,Manhattan,East Village,40.72844,-73.98295999999999,Entire home/apt,115,3,1,0.25,1,5 +42042,241280089,Manhattan,Washington Heights,40.85156,-73.93035,Private room,37,15,0,,1,350 +42043,23388169,Brooklyn,Prospect Heights,40.676159999999996,-73.97009,Entire home/apt,350,4,3,1.11,2,82 +42044,229566046,Brooklyn,Williamsburg,40.70678,-73.95478,Entire home/apt,506,1,8,2.18,1,134 +42045,219517861,Manhattan,Murray Hill,40.747690000000006,-73.97592,Entire home/apt,165,29,1,0.59,327,342 +42046,219517861,Manhattan,Murray Hill,40.74467,-73.97188,Entire home/apt,160,29,1,0.63,327,345 +42047,521964,Brooklyn,Bedford-Stuyvesant,40.68472,-73.9418,Entire home/apt,650,1,22,5.41,1,307 +42048,88437224,Brooklyn,Sunset Park,40.63916,-74.02175,Private room,40,2,0,,1,0 +42049,11821104,Manhattan,Chelsea,40.74214,-73.99911999999999,Entire home/apt,200,5,0,,1,9 +42050,8960858,Brooklyn,Crown Heights,40.676390000000005,-73.94785,Entire home/apt,102,3,7,1.72,1,4 +42051,102325214,Manhattan,Theater District,40.7606,-73.98408,Entire home/apt,359,5,10,2.42,1,2 +42052,225322104,Brooklyn,Bedford-Stuyvesant,40.691,-73.94696,Entire home/apt,190,1,5,1.47,1,351 +42053,174804937,Manhattan,Upper West Side,40.80081,-73.96414,Entire home/apt,150,1,0,,1,0 +42054,186252061,Brooklyn,Bedford-Stuyvesant,40.67779,-73.92483,Entire home/apt,150,2,0,,1,32 +42055,245655016,Brooklyn,Canarsie,40.63355,-73.90465999999999,Entire home/apt,168,1,10,2.46,1,83 +42056,105956343,Brooklyn,Sheepshead Bay,40.58594,-73.93182,Entire home/apt,125,2,13,3.98,1,0 +42057,44513798,Brooklyn,Bedford-Stuyvesant,40.68122,-73.91018000000001,Private room,40,2,0,,1,0 +42058,10219283,Manhattan,Hell's Kitchen,40.7718,-73.99421,Entire home/apt,170,1,4,1.01,1,3 +42059,245564705,Brooklyn,Brighton Beach,40.579209999999996,-73.96419,Private room,85,1,18,4.43,1,222 +42060,2238256,Manhattan,Chinatown,40.71463,-73.99054,Private room,128,13,0,,1,91 +42061,139591030,Manhattan,Morningside Heights,40.807140000000004,-73.96515,Entire home/apt,150,5,1,0.28,1,0 +42062,48438698,Manhattan,Upper East Side,40.76916,-73.95365,Entire home/apt,125,3,6,1.51,1,42 +42063,83717038,Brooklyn,Greenpoint,40.73738,-73.95281999999999,Entire home/apt,95,2,7,1.89,3,14 +42064,244559229,Manhattan,Chelsea,40.74921,-73.99273000000001,Private room,100,1,9,3.42,9,275 +42065,244559229,Manhattan,Chelsea,40.74913,-73.99128,Private room,100,1,4,1.85,9,323 +42066,214738765,Queens,Richmond Hill,40.69433,-73.83114,Private room,58,1,16,4.44,3,129 +42067,244559229,Manhattan,Chelsea,40.74845,-73.99257,Private room,100,1,22,7.67,9,315 +42068,244559229,Manhattan,Chelsea,40.7492,-73.99073,Private room,100,1,22,9.85,9,319 +42069,244559229,Manhattan,Chelsea,40.74819,-73.99224,Private room,100,1,0,,9,245 +42070,244559229,Manhattan,Chelsea,40.749629999999996,-73.99141,Private room,100,1,3,1.8,9,269 +42071,244559229,Manhattan,Chelsea,40.748509999999996,-73.99061999999999,Private room,100,1,4,1.69,9,317 +42072,244559229,Manhattan,Chelsea,40.74927,-73.99226999999999,Private room,100,1,1,0.68,9,324 +42073,244559229,Manhattan,Chelsea,40.74902,-73.99211,Private room,100,1,17,7.08,9,324 +42074,244361589,Manhattan,Theater District,40.75781,-73.98903,Private room,499,1,0,,9,293 +42075,244361589,Manhattan,Theater District,40.75918,-73.98801,Private room,100,1,156,58.5,9,299 +42076,244361589,Manhattan,Theater District,40.75828,-73.98876,Private room,199,1,82,27.95,9,299 +42077,244361589,Manhattan,Theater District,40.75783,-73.98908,Private room,100,1,38,14.62,9,295 +42078,244361589,Manhattan,Theater District,40.75803,-73.98886999999999,Private room,100,1,6,2.61,9,289 +42079,244361589,Manhattan,Theater District,40.75792,-73.98899999999999,Private room,249,1,0,,9,278 +42080,244361589,Manhattan,Theater District,40.75976,-73.98761,Private room,249,1,22,7.59,9,283 +42081,244361589,Manhattan,Theater District,40.75925,-73.98767,Private room,100,1,1,0.45,9,299 +42082,244361589,Manhattan,Theater District,40.75821,-73.9882,Private room,249,1,0,,9,298 +42083,245314318,Manhattan,Upper West Side,40.78111,-73.97923,Private room,209,1,6,2.81,10,288 +42084,245314318,Manhattan,Upper West Side,40.781620000000004,-73.97941,Private room,250,1,1,0.45,10,281 +42085,245314318,Manhattan,Upper West Side,40.78133,-73.98132,Private room,305,1,0,,10,271 +42086,245314318,Manhattan,Upper West Side,40.781890000000004,-73.98138,Private room,230,1,1,0.88,10,288 +42087,245314318,Manhattan,Upper West Side,40.78281,-73.98124,Private room,325,1,0,,10,259 +42088,245314318,Manhattan,Upper West Side,40.7813,-73.97922,Private room,280,1,0,,10,275 +42089,245314318,Manhattan,Upper West Side,40.781279999999995,-73.9796,Private room,275,1,0,,10,281 +42090,245314318,Manhattan,Upper West Side,40.78241,-73.98076999999999,Private room,220,1,0,,10,284 +42091,245314318,Manhattan,Upper West Side,40.78313,-73.97953000000001,Private room,230,1,2,0.74,10,252 +42092,245314318,Manhattan,Upper West Side,40.78136,-73.97988000000001,Private room,350,1,0,,10,282 +42093,244370442,Manhattan,Theater District,40.760329999999996,-73.98635999999999,Private room,324,1,5,1.85,7,363 +42094,244370442,Manhattan,Theater District,40.75861,-73.98683,Private room,379,1,10,4.55,7,353 +42095,244370442,Manhattan,Theater District,40.75976,-73.98727,Private room,299,1,20,7.69,7,362 +42096,244370442,Manhattan,Theater District,40.760259999999995,-73.98747,Private room,359,1,4,1.54,7,358 +42097,244370442,Manhattan,Theater District,40.75987,-73.98758000000001,Private room,304,1,6,2.54,7,351 +42098,67449621,Brooklyn,Crown Heights,40.67729,-73.95697,Entire home/apt,146,28,2,0.77,1,24 +42099,245324803,Manhattan,Chelsea,40.751059999999995,-73.99792,Entire home/apt,149,2,9,2.31,1,129 +42100,1623509,Manhattan,Harlem,40.818909999999995,-73.93786,Entire home/apt,73,7,1,0.61,1,43 +42101,242962235,Queens,Ridgewood,40.70881,-73.89689,Private room,42,30,1,0.79,23,37 +42102,242962235,Queens,Ridgewood,40.70899,-73.89494,Private room,42,30,2,0.86,23,225 +42103,144653854,Staten Island,Arrochar,40.59809,-74.0656,Entire home/apt,150,2,12,3.79,1,85 +42104,244746656,Manhattan,Midtown,40.76447,-73.9816,Entire home/apt,840,1,0,,4,4 +42105,244746656,Manhattan,Midtown,40.75169,-73.97335,Entire home/apt,315,1,0,,4,3 +42106,244746656,Manhattan,Midtown,40.75215,-73.97269,Entire home/apt,315,1,0,,4,3 +42107,244746656,Manhattan,Midtown,40.75166,-73.97323,Entire home/apt,315,1,0,,4,3 +42108,228235742,Manhattan,East Village,40.72412,-73.98891,Private room,100,1,0,,1,0 +42109,244182582,Manhattan,Lower East Side,40.719229999999996,-73.99336,Private room,74,30,0,,4,332 +42110,228184534,Brooklyn,Williamsburg,40.71965,-73.94234,Private room,45,15,1,0.3,1,37 +42111,158891219,Brooklyn,Bushwick,40.68638,-73.90863,Entire home/apt,300,2,10,2.83,1,112 +42112,69784014,Manhattan,Upper East Side,40.77817,-73.94743000000001,Entire home/apt,105,3,10,2.56,1,0 +42113,199075581,Queens,Jamaica,40.671929999999996,-73.77986,Entire home/apt,135,1,23,8.52,1,121 +42114,244438661,Manhattan,Upper West Side,40.79553,-73.97388000000001,Entire home/apt,200,3,3,0.79,2,0 +42115,241236910,Bronx,Wakefield,40.889990000000004,-73.86008000000001,Private room,75,2,11,3.17,1,54 +42116,74116175,Queens,Long Island City,40.745470000000005,-73.95198,Entire home/apt,300,2,7,2.26,1,40 +42117,180523383,Manhattan,East Harlem,40.80305,-73.94163,Entire home/apt,185,1,5,1.2,1,338 +42118,144224025,Brooklyn,Bushwick,40.69762,-73.91999,Private room,45,1,14,3.23,1,189 +42119,245324678,Manhattan,Midtown,40.757,-73.96906,Entire home/apt,199,2,10,2.97,1,103 +42120,130185535,Manhattan,East Village,40.73018,-73.97981,Private room,60,60,0,,1,147 +42121,244453286,Queens,Sunnyside,40.73802,-73.91901999999999,Entire home/apt,180,3,10,2.48,2,123 +42122,18170444,Brooklyn,Carroll Gardens,40.682990000000004,-73.99928,Private room,80,2,13,3.42,2,160 +42123,163749958,Manhattan,Kips Bay,40.74433,-73.97868000000001,Shared room,39,2,1,0.5,3,365 +42124,110001729,Manhattan,Harlem,40.80226,-73.95211,Entire home/apt,113,2,3,0.84,1,35 +42125,206758177,Manhattan,Upper West Side,40.80007,-73.95981,Entire home/apt,234,1,27,6.69,3,51 +42126,21056486,Manhattan,Midtown,40.74389,-73.98536999999999,Entire home/apt,150,10,0,,1,111 +42127,22125997,Bronx,Westchester Square,40.84077,-73.8487,Private room,50,3,6,1.62,2,27 +42128,30283594,Manhattan,Hell's Kitchen,40.76077,-74.0002,Entire home/apt,302,30,0,,121,364 +42129,30283594,Manhattan,Hell's Kitchen,40.76168,-73.9996,Entire home/apt,350,30,0,,121,364 +42130,30283594,Manhattan,Hell's Kitchen,40.76212,-73.9981,Entire home/apt,350,30,0,,121,364 +42131,29525065,Manhattan,Upper West Side,40.78334,-73.97927,Entire home/apt,120,30,1,0.75,1,311 +42132,195509478,Queens,Maspeth,40.7412,-73.90552,Private room,55,1,2,1.82,2,152 +42133,125981804,Brooklyn,Brooklyn Heights,40.6929,-73.99110999999999,Entire home/apt,110,7,0,,1,151 +42134,205764159,Manhattan,Lower East Side,40.72202,-73.98858,Entire home/apt,170,2,1,0.7,1,8 +42135,245878254,Brooklyn,Greenpoint,40.73142,-73.96023000000001,Entire home/apt,189,2,9,3.51,1,60 +42136,242962235,Queens,Ridgewood,40.70912,-73.89685,Private room,42,30,3,0.86,23,311 +42137,242962235,Queens,Ridgewood,40.70725,-73.89473000000001,Private room,45,30,1,1.0,23,309 +42138,43494916,Brooklyn,Crown Heights,40.67637,-73.95527,Entire home/apt,132,3,0,,2,0 +42139,15538629,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94253,Entire home/apt,175,3,12,4.0,1,301 +42140,24809291,Brooklyn,Williamsburg,40.71438,-73.94359,Entire home/apt,130,5,1,0.48,1,121 +42141,25059364,Manhattan,Kips Bay,40.74123,-73.98058,Private room,94,1,23,5.9,3,55 +42142,34313176,Queens,Rego Park,40.71702,-73.86183,Entire home/apt,239,2,0,,4,299 +42143,245805416,Brooklyn,DUMBO,40.70284,-73.99083,Entire home/apt,375,3,2,2.0,1,242 +42144,64222121,Manhattan,Midtown,40.75333,-73.97266,Private room,450,3,0,,1,160 +42145,90463984,Queens,Richmond Hill,40.70047,-73.84085999999999,Entire home/apt,120,7,0,,3,52 +42146,19303369,Manhattan,Inwood,40.86428,-73.92199000000001,Private room,27,29,1,0.77,37,32 +42147,212338108,Manhattan,Harlem,40.82335,-73.94901999999999,Private room,125,1,2,2.0,1,139 +42148,6753972,Brooklyn,Bedford-Stuyvesant,40.68362,-73.95692,Private room,60,1,1,0.67,1,95 +42149,111466,Brooklyn,Williamsburg,40.71797,-73.95738,Entire home/apt,250,4,1,1.0,1,122 +42150,4726371,Brooklyn,Gowanus,40.67886,-73.98702,Entire home/apt,175,2,4,1.2,2,0 +42151,42164373,Brooklyn,Bushwick,40.70725,-73.91966,Entire home/apt,50,3,1,0.28,1,0 +42152,58994794,Brooklyn,Bedford-Stuyvesant,40.689,-73.94445,Private room,72,1,3,1.11,1,311 +42153,241694782,Brooklyn,Bedford-Stuyvesant,40.6867,-73.93835,Entire home/apt,160,1,6,1.49,2,68 +42154,762610,Queens,Arverne,40.599000000000004,-73.79603,Private room,35,3,11,2.73,2,54 +42155,4113106,Manhattan,Harlem,40.80252,-73.9547,Private room,80,1,17,4.21,2,177 +42156,246096171,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91413,Private room,55,1,22,6.11,1,12 +42157,219727469,Brooklyn,Bedford-Stuyvesant,40.67803,-73.9102,Private room,75,1,17,4.51,4,227 +42158,50333451,Manhattan,Chinatown,40.71432,-73.99866,Entire home/apt,151,12,0,,1,0 +42159,49758877,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94757,Shared room,30,18,8,1.89,1,27 +42160,106067584,Brooklyn,Bedford-Stuyvesant,40.69025,-73.92491,Private room,225,1,0,,1,179 +42161,103240731,Manhattan,East Village,40.72675,-73.98651,Entire home/apt,150,3,0,,1,0 +42162,241390361,Brooklyn,Bedford-Stuyvesant,40.69424,-73.93415999999999,Private room,55,2,22,5.2,1,45 +42163,24386929,Brooklyn,Bushwick,40.69493,-73.9273,Private room,40,10,1,0.3,1,0 +42164,246173897,Manhattan,Lower East Side,40.71867,-73.99082,Entire home/apt,150,2,8,2.24,1,33 +42165,22544960,Brooklyn,Williamsburg,40.7027,-73.93571,Private room,85,3,0,,1,0 +42166,50741398,Manhattan,Upper West Side,40.80102,-73.96528,Private room,80,1,10,2.38,4,0 +42167,94038074,Manhattan,Upper East Side,40.77313,-73.94824,Entire home/apt,111,2,5,1.39,1,0 +42168,245637171,Manhattan,East Village,40.72789,-73.98557,Private room,82,30,1,0.51,8,364 +42169,219517861,Manhattan,Murray Hill,40.74928,-73.97453,Entire home/apt,262,2,9,2.35,327,113 +42170,219517861,Manhattan,Murray Hill,40.74835,-73.97612,Entire home/apt,244,2,9,2.31,327,133 +42171,219517861,Manhattan,Murray Hill,40.7488,-73.97522,Entire home/apt,240,2,8,1.95,327,105 +42172,181889371,Brooklyn,Sea Gate,40.579190000000004,-74.00635,Entire home/apt,1315,10,0,,1,0 +42173,52970439,Queens,Astoria,40.766040000000004,-73.93108000000001,Entire home/apt,110,2,6,1.54,1,309 +42174,18318834,Brooklyn,Clinton Hill,40.69465,-73.96427,Private room,50,2,12,2.98,1,0 +42175,161514941,Brooklyn,Cypress Hills,40.681259999999995,-73.89457,Private room,38,1,10,2.46,1,365 +42176,246194760,Queens,East Elmhurst,40.759840000000004,-73.88228000000001,Private room,33,1,17,6.46,4,208 +42177,221901576,Manhattan,West Village,40.7406,-74.0062,Entire home/apt,217,105,0,,2,85 +42178,246222122,Manhattan,East Village,40.73219,-73.98503000000001,Entire home/apt,220,4,9,2.23,2,233 +42179,2839817,Brooklyn,Bedford-Stuyvesant,40.68659,-73.91883,Private room,150,4,0,,1,179 +42180,246232599,Manhattan,Upper West Side,40.791059999999995,-73.96785,Entire home/apt,123,7,2,0.65,1,0 +42181,118385679,Brooklyn,Williamsburg,40.71315,-73.95695,Private room,50,1,12,3.13,1,13 +42182,163749958,Manhattan,Kips Bay,40.7423,-73.98016,Shared room,39,2,1,1.0,3,345 +42183,246239362,Queens,Belle Harbor,40.57553,-73.85299,Entire home/apt,85,1,0,,1,33 +42184,242631139,Brooklyn,East Flatbush,40.6472,-73.92951,Private room,100,2,4,1.85,4,360 +42185,242631139,Brooklyn,East Flatbush,40.64659,-73.93058,Private room,110,2,6,2.54,4,354 +42186,5560274,Brooklyn,Crown Heights,40.6773,-73.9528,Entire home/apt,250,5,3,1.15,1,179 +42187,203890641,Queens,Ditmars Steinway,40.77482,-73.90852,Private room,85,3,13,3.71,2,208 +42188,246272839,Queens,Flushing,40.76663,-73.81921,Entire home/apt,85,1,5,1.69,4,145 +42189,230745945,Manhattan,Chelsea,40.742779999999996,-73.99765,Private room,80,1,3,2.5,1,0 +42190,51596474,Brooklyn,Bay Ridge,40.624390000000005,-74.02024,Shared room,30,12,2,0.86,12,0 +42191,246290852,Brooklyn,Bedford-Stuyvesant,40.69239,-73.94884,Entire home/apt,120,28,0,,2,264 +42192,53725579,Manhattan,Washington Heights,40.84493,-73.93843000000001,Private room,45,1,25,5.95,3,205 +42193,33287445,Queens,Elmhurst,40.74033,-73.88561,Private room,70,1,6,1.61,1,89 +42194,62803,Brooklyn,Brownsville,40.66863,-73.92169,Private room,44,9,4,1.29,2,12 +42195,245394439,Manhattan,Harlem,40.80299,-73.95443,Entire home/apt,181,2,15,4.21,1,22 +42196,144008701,Manhattan,Harlem,40.82391,-73.9471,Private room,37,15,0,,2,32 +42197,160187991,Manhattan,East Harlem,40.79359,-73.9407,Private room,65,2,2,2.0,1,125 +42198,115136074,Queens,Springfield Gardens,40.69034,-73.74895,Private room,70,2,12,2.95,3,89 +42199,245333087,Manhattan,Murray Hill,40.74545,-73.97188,Entire home/apt,650,5,2,0.6,1,339 +42200,140433148,Brooklyn,Bushwick,40.69319,-73.90547,Private room,53,30,0,,3,142 +42201,18272280,Brooklyn,Bedford-Stuyvesant,40.684020000000004,-73.9424,Private room,51,1,1,0.25,2,0 +42202,31518987,Manhattan,Chelsea,40.73948,-73.99555,Private room,150,1,0,,1,90 +42203,5313154,Manhattan,Washington Heights,40.835879999999996,-73.94095,Entire home/apt,199,30,0,,1,98 +42204,1844921,Manhattan,Chelsea,40.739259999999994,-73.9946,Private room,140,2,7,2.73,1,11 +42205,44169567,Queens,Astoria,40.7561,-73.92578,Entire home/apt,170,1,1,0.52,1,60 +42206,2915668,Brooklyn,Williamsburg,40.71373,-73.94034,Private room,65,3,0,,1,0 +42207,16509151,Queens,Forest Hills,40.71627,-73.83768,Private room,79,2,2,0.55,1,85 +42208,243367528,Queens,Astoria,40.76663,-73.91436,Shared room,36,1,10,2.36,7,313 +42209,246432505,Manhattan,Midtown,40.74968,-73.98722,Entire home/apt,145,1,7,1.74,1,0 +42210,137358866,Queens,Sunnyside,40.748740000000005,-73.91315,Private room,35,30,0,,103,191 +42211,192187594,Queens,Maspeth,40.72504,-73.88976,Private room,55,2,9,2.35,1,180 +42212,246456163,Manhattan,Chelsea,40.749959999999994,-73.99488000000001,Entire home/apt,149,2,9,3.03,1,151 +42213,16479647,Brooklyn,Bedford-Stuyvesant,40.68376,-73.93336,Entire home/apt,99,2,8,2.03,1,0 +42214,53725579,Manhattan,Washington Heights,40.84332,-73.93829000000001,Private room,45,1,20,4.88,3,227 +42215,201015598,Brooklyn,Bedford-Stuyvesant,40.67668,-73.91243,Shared room,28,1,5,1.5,17,89 +42216,1135032,Brooklyn,Red Hook,40.680620000000005,-74.00721999999999,Private room,55,2,1,0.43,1,5 +42217,145573505,Manhattan,Hell's Kitchen,40.7616,-73.99368,Entire home/apt,400,2,19,6.2,1,95 +42218,5592622,Queens,Astoria,40.75676,-73.91334,Private room,115,1,4,1.05,5,90 +42219,140125433,Bronx,Williamsbridge,40.87498,-73.85644,Private room,39,3,6,1.57,1,49 +42220,246589575,Brooklyn,Brighton Beach,40.5765,-73.9685,Entire home/apt,84,30,0,,1,0 +42221,25312503,Manhattan,East Village,40.72412,-73.98283,Entire home/apt,158,1,16,5.05,1,70 +42222,12680161,Brooklyn,Boerum Hill,40.684059999999995,-73.98481,Entire home/apt,175,1,12,3.13,2,40 +42223,246331794,Manhattan,Murray Hill,40.74929,-73.9779,Entire home/apt,300,1,29,7.13,2,247 +42224,10994728,Brooklyn,Williamsburg,40.71665,-73.9515,Entire home/apt,150,3,2,0.77,1,159 +42225,20433973,Bronx,City Island,40.83988,-73.78286999999999,Private room,95,1,6,1.65,2,359 +42226,3040104,Brooklyn,Park Slope,40.67687,-73.98170999999999,Entire home/apt,140,4,9,2.33,1,227 +42227,10783378,Brooklyn,Prospect-Lefferts Gardens,40.65974,-73.96134,Entire home/apt,108,29,0,,1,0 +42228,234393604,Queens,Middle Village,40.71474,-73.89931,Private room,28,1,21,6.49,1,14 +42229,82940021,Manhattan,Hell's Kitchen,40.76341,-73.99306,Entire home/apt,145,3,9,3.55,1,6 +42230,246622509,Brooklyn,Sheepshead Bay,40.59642,-73.95878,Private room,60,3,2,0.51,1,158 +42231,1786901,Manhattan,Upper East Side,40.78365,-73.94723,Private room,80,3,8,2.4,9,50 +42232,9773038,Brooklyn,Bedford-Stuyvesant,40.6941,-73.93947,Private room,52,5,4,2.0,3,23 +42233,53149725,Manhattan,Upper East Side,40.77032,-73.95498,Entire home/apt,145,7,13,3.17,1,34 +42234,9773038,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93866,Private room,48,5,6,1.91,3,28 +42235,193111692,Queens,Astoria,40.76317,-73.92208000000001,Private room,75,21,0,,1,0 +42236,481630,Brooklyn,Bedford-Stuyvesant,40.68743,-73.94451,Private room,50,7,2,1.33,2,4 +42237,246653349,Bronx,Baychester,40.8694,-73.84170999999999,Entire home/apt,101,2,11,3.4,1,46 +42238,4361061,Queens,Astoria,40.77122,-73.92326,Private room,62,1,7,2.1,2,25 +42239,246664340,Manhattan,West Village,40.7319,-74.00489,Entire home/apt,175,1,4,1.4,1,5 +42240,246666261,Bronx,Claremont Village,40.84355,-73.91103000000001,Private room,55,1,8,2.67,1,358 +42241,246665018,Queens,Long Island City,40.76266,-73.93929,Private room,60,7,1,1.0,1,115 +42242,63966717,Bronx,Fordham,40.859120000000004,-73.89254,Private room,59,3,0,,2,0 +42243,246681878,Brooklyn,Fort Greene,40.694309999999994,-73.97289,Entire home/apt,145,1,19,5.18,1,30 +42244,5861806,Manhattan,Upper East Side,40.775259999999996,-73.95333000000001,Entire home/apt,140,2,4,1.4,1,0 +42245,19303369,Manhattan,Inwood,40.86411,-73.92353,Private room,33,30,0,,37,0 +42246,19303369,Manhattan,Inwood,40.86423,-73.92348,Private room,33,29,1,0.79,37,32 +42247,16664377,Manhattan,Lower East Side,40.718990000000005,-73.98968,Private room,75,1,6,2.02,3,155 +42248,246717334,Staten Island,Mariners Harbor,40.6396,-74.1661,Private room,63,1,10,2.65,1,179 +42249,211136294,Bronx,Schuylerville,40.83757,-73.8353,Private room,62,1,14,6.36,5,229 +42250,211136294,Bronx,Schuylerville,40.83647,-73.83491,Private room,65,2,5,1.9,5,183 +42251,209587921,Manhattan,Kips Bay,40.74072,-73.97764000000001,Entire home/apt,199,2,6,1.91,1,237 +42252,211136294,Bronx,Schuylerville,40.8356,-73.83369,Private room,150,1,24,8.37,5,247 +42253,29602688,Manhattan,East Harlem,40.7889,-73.94925,Entire home/apt,130,2,6,1.82,1,2 +42254,207000645,Manhattan,East Village,40.724000000000004,-73.98933000000001,Entire home/apt,190,1,1,0.63,1,365 +42255,244819285,Manhattan,Greenwich Village,40.73535,-73.99525,Private room,100,3,6,1.88,1,175 +42256,105448689,Manhattan,Chelsea,40.74655,-74.00134,Entire home/apt,139,5,0,,1,29 +42257,154843406,Manhattan,Harlem,40.82786,-73.94845,Private room,50,2,11,4.18,2,64 +42258,244370442,Manhattan,Theater District,40.76057,-73.98583,Private room,339,1,18,6.59,7,364 +42259,9089718,Brooklyn,Williamsburg,40.71813,-73.95964000000001,Entire home/apt,129,5,1,0.24,1,14 +42260,246791914,Brooklyn,Williamsburg,40.71078,-73.96905,Entire home/apt,200,2,8,2.67,1,2 +42261,174668332,Brooklyn,Bedford-Stuyvesant,40.69141,-73.93021999999999,Private room,76,1,7,1.72,1,0 +42262,4606577,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93200999999999,Entire home/apt,125,4,0,,1,0 +42263,219517861,Manhattan,Murray Hill,40.7475,-73.97569,Entire home/apt,231,2,5,1.32,327,82 +42264,27559933,Manhattan,West Village,40.73283,-74.00734,Entire home/apt,300,2,7,2.44,1,104 +42265,246806787,Bronx,Williamsbridge,40.88542,-73.86169,Private room,140,2,3,0.97,1,365 +42266,219517861,Manhattan,Murray Hill,40.748509999999996,-73.97431,Entire home/apt,165,29,0,,327,341 +42267,45364547,Queens,Arverne,40.59384,-73.79392,Entire home/apt,300,2,1,1.0,1,2 +42268,246797434,Manhattan,Harlem,40.82908,-73.94096,Private room,63,3,1,1.0,1,188 +42269,29959226,Queens,Kew Gardens Hills,40.72876,-73.81967,Entire home/apt,65,13,1,0.67,1,0 +42270,246827568,Manhattan,Chelsea,40.74596,-73.99234,Entire home/apt,290,2,14,3.96,1,149 +42271,5718871,Brooklyn,Greenpoint,40.724340000000005,-73.93970999999999,Private room,59,7,1,0.28,1,64 +42272,245637171,Manhattan,East Village,40.72981,-73.98638000000001,Private room,55,30,0,,8,310 +42273,246849103,Brooklyn,Sunset Park,40.66061,-73.99765,Private room,40,1,5,1.35,1,89 +42274,8589557,Bronx,Woodlawn,40.899809999999995,-73.86684,Private room,80,2,7,1.84,1,70 +42275,246851284,Queens,Flushing,40.75747,-73.80868000000001,Entire home/apt,450,4,0,,1,365 +42276,1888085,Queens,Astoria,40.764520000000005,-73.92536,Shared room,35,1,11,2.66,1,11 +42277,9700935,Queens,Astoria,40.75705,-73.90697,Entire home/apt,69,4,0,,1,2 +42278,49856034,Brooklyn,Bushwick,40.69583,-73.93051,Private room,80,4,0,,1,263 +42279,69426967,Manhattan,Hell's Kitchen,40.76017,-73.99638,Entire home/apt,250,3,1,0.24,1,0 +42280,65098342,Manhattan,Upper East Side,40.76494,-73.95808000000001,Entire home/apt,225,2,4,1.24,1,1 +42281,120616904,Brooklyn,Cypress Hills,40.67915,-73.89986,Entire home/apt,135,2,20,5.56,1,297 +42282,50449750,Manhattan,West Village,40.73598,-74.0048,Entire home/apt,168,30,4,1.85,1,47 +42283,246886799,Manhattan,East Village,40.73226,-73.98983,Entire home/apt,250,2,12,3.16,1,32 +42284,146132198,Bronx,Wakefield,40.89393,-73.8581,Private room,50,2,14,3.59,2,132 +42285,31147415,Manhattan,Lower East Side,40.71952,-73.99167,Private room,125,3,14,3.96,1,36 +42286,146132198,Bronx,Wakefield,40.89604,-73.85876999999999,Private room,50,2,20,4.96,2,117 +42287,29411897,Brooklyn,Bedford-Stuyvesant,40.68873,-73.95472,Private room,70,1,18,4.7,1,142 +42288,246290852,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94734,Entire home/apt,110,7,8,2.16,2,243 +42289,96311058,Brooklyn,Bedford-Stuyvesant,40.68343,-73.92746,Entire home/apt,180,2,11,3.37,1,280 +42290,96773131,Manhattan,Greenwich Village,40.72848,-74.00269,Entire home/apt,300,1,8,2.96,1,192 +42291,229496718,Manhattan,Hell's Kitchen,40.766490000000005,-73.98727,Entire home/apt,489,3,10,2.68,1,81 +42292,246422621,Manhattan,Battery Park City,40.70966,-74.01644,Private room,69,2,3,0.93,1,2 +42293,222476614,Manhattan,Kips Bay,40.74434,-73.97758,Shared room,53,2,2,0.59,3,297 +42294,34780853,Manhattan,Flatiron District,40.73885,-73.98786,Private room,99,1,2,1.13,1,13 +42295,25059364,Manhattan,Kips Bay,40.74138,-73.98168000000001,Private room,115,1,19,6.63,3,37 +42296,246960941,Manhattan,Hell's Kitchen,40.77041,-73.99242,Private room,150,2,0,,1,88 +42297,25059364,Manhattan,Kips Bay,40.740559999999995,-73.98076999999999,Private room,69,1,24,6.43,3,35 +42298,190921808,Manhattan,Hell's Kitchen,40.75378,-73.9955,Private room,99,7,4,1.69,47,318 +42299,6447195,Brooklyn,Williamsburg,40.70754,-73.94151,Private room,42,3,3,1.3,2,5 +42300,2279174,Manhattan,Murray Hill,40.7494,-73.9784,Entire home/apt,220,30,6,1.94,1,135 +42301,4094038,Brooklyn,Williamsburg,40.710359999999994,-73.94053000000001,Private room,65,2,13,3.25,4,25 +42302,247013511,Queens,Jackson Heights,40.75298,-73.87675,Private room,40,2,8,2.42,6,75 +42303,10337544,Brooklyn,Fort Greene,40.69258,-73.97285,Private room,105,1,12,3.87,1,0 +42304,100112994,Queens,Long Island City,40.75074,-73.93648,Private room,79,2,15,3.95,2,37 +42305,43207895,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95174,Private room,60,3,3,0.82,2,197 +42306,246225955,Manhattan,Midtown,40.7515,-73.97206,Entire home/apt,488,2,0,,1,65 +42307,3003330,Brooklyn,Bedford-Stuyvesant,40.689890000000005,-73.94469000000001,Entire home/apt,95,2,5,2.5,3,0 +42308,202350344,Queens,East Elmhurst,40.760909999999996,-73.88686,Private room,45,2,11,3.67,2,294 +42309,2370813,Brooklyn,Gowanus,40.67757,-73.98845,Entire home/apt,139,2,19,4.96,2,209 +42310,29927802,Brooklyn,Kensington,40.64217,-73.9714,Private room,56,1,7,1.86,1,0 +42311,64783050,Manhattan,Stuyvesant Town,40.73379,-73.97754,Private room,55,1,4,0.97,1,1 +42312,55025690,Brooklyn,Williamsburg,40.71468,-73.95825,Private room,68,1,7,2.23,1,0 +42313,219517861,Manhattan,Financial District,40.705999999999996,-74.01068000000001,Entire home/apt,221,2,10,2.78,327,354 +42314,7598620,Brooklyn,Bushwick,40.69826,-73.93474,Private room,58,1,26,7.03,1,70 +42315,233227636,Brooklyn,Flatlands,40.6246,-73.92709,Private room,40,1,1,0.83,2,37 +42316,247064022,Queens,Flushing,40.745509999999996,-73.82661999999999,Entire home/apt,189,3,10,2.68,1,51 +42317,233227636,Brooklyn,Flatlands,40.626459999999994,-73.92754000000001,Private room,40,1,16,5.05,2,151 +42318,247072396,Manhattan,Upper East Side,40.77085,-73.94933,Entire home/apt,250,2,1,0.38,1,0 +42319,105225699,Queens,Flushing,40.76177,-73.79415,Entire home/apt,135,3,12,3.13,2,178 +42320,80933709,Queens,East Elmhurst,40.76292,-73.87906,Private room,55,3,2,2.0,2,37 +42321,4087531,Manhattan,Hell's Kitchen,40.764140000000005,-73.98652,Entire home/apt,169,3,0,,1,0 +42322,46231814,Manhattan,East Village,40.72423,-73.98816,Private room,100,3,26,7.88,3,220 +42323,244370442,Manhattan,Theater District,40.76035,-73.98586999999999,Private room,324,1,13,5.42,7,331 +42324,244217586,Queens,Jamaica,40.70949,-73.79304,Entire home/apt,90,1,0,,1,0 +42325,139238261,Queens,Fresh Meadows,40.735659999999996,-73.79059000000001,Entire home/apt,95,3,17,4.51,1,329 +42326,74205904,Manhattan,East Harlem,40.79368,-73.94294000000001,Private room,75,2,3,0.89,1,0 +42327,111723,Queens,Ditmars Steinway,40.77248,-73.91665,Entire home/apt,140,2,1,0.47,1,3 +42328,242924411,Brooklyn,Bedford-Stuyvesant,40.68573,-73.9527,Entire home/apt,90,1,14,3.59,5,63 +42329,242924411,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95415,Entire home/apt,90,1,14,3.39,5,55 +42330,1019963,Brooklyn,Williamsburg,40.71565,-73.95837,Entire home/apt,223,2,17,4.47,1,310 +42331,247104282,Brooklyn,Bedford-Stuyvesant,40.68391,-73.91721,Private room,150,1,4,1.26,2,267 +42332,145878384,Brooklyn,Crown Heights,40.67248,-73.92962,Private room,70,5,2,1.54,7,308 +42333,37703550,Manhattan,Washington Heights,40.84751,-73.93864,Private room,45,2,1,0.34,1,35 +42334,247118366,Manhattan,Hell's Kitchen,40.76195,-73.98770999999999,Entire home/apt,260,2,14,4.24,1,212 +42335,246910562,Brooklyn,Bay Ridge,40.63238,-74.02382,Private room,53,1,22,5.32,1,83 +42336,39890192,Manhattan,Upper West Side,40.8022,-73.96483,Private room,97,15,0,,12,179 +42337,22171095,Queens,Astoria,40.76235,-73.92138,Entire home/apt,140,2,16,4.21,2,79 +42338,107434423,Manhattan,West Village,40.7304,-74.00301,Entire home/apt,321,30,0,,232,310 +42339,247189581,Brooklyn,Fort Greene,40.686370000000004,-73.97431,Shared room,25,2,8,1.95,5,32 +42340,242924411,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95278,Entire home/apt,104,1,15,3.66,5,48 +42341,129047499,Manhattan,Hell's Kitchen,40.769259999999996,-73.98746,Private room,95,1,14,3.5,1,7 +42342,242924411,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95265,Entire home/apt,90,1,10,2.42,5,50 +42343,8454981,Manhattan,Hell's Kitchen,40.75658,-73.99734000000001,Entire home/apt,150,3,7,1.98,1,0 +42344,171636572,Brooklyn,Bushwick,40.68881,-73.91991999999999,Private room,50,5,18,7.01,1,12 +42345,10283936,Brooklyn,Bedford-Stuyvesant,40.69148,-73.94994,Entire home/apt,300,5,1,0.42,1,4 +42346,247212166,Bronx,Mott Haven,40.81058,-73.9069,Private room,80,5,0,,1,179 +42347,173685298,Manhattan,Midtown,40.75628,-73.97072,Private room,375,1,2,1.13,11,179 +42348,17842449,Manhattan,Kips Bay,40.74068,-73.97848,Private room,40,30,0,,1,83 +42349,235905088,Manhattan,Upper West Side,40.8022,-73.9666,Entire home/apt,325,7,8,2.53,1,176 +42350,157422070,Manhattan,Upper West Side,40.784929999999996,-73.97294000000001,Entire home/apt,175,5,7,2.44,1,19 +42351,141645843,Queens,Jamaica,40.681,-73.79592,Private room,33,1,3,0.74,2,189 +42352,3179866,Queens,Jamaica,40.688159999999996,-73.78974000000001,Entire home/apt,170,3,8,2.79,2,336 +42353,11175,Brooklyn,Prospect-Lefferts Gardens,40.6622,-73.96208,Entire home/apt,130,30,0,,1,129 +42354,1159268,Manhattan,Chinatown,40.71614,-73.99047,Entire home/apt,200,2,0,,1,0 +42355,219517861,Manhattan,Murray Hill,40.74896,-73.97521,Entire home/apt,212,29,0,,327,330 +42356,247189581,Brooklyn,Fort Greene,40.6865,-73.9729,Shared room,38,2,3,0.81,5,31 +42357,33607268,Manhattan,Hell's Kitchen,40.76575,-73.98938000000001,Private room,110,1,14,3.65,1,0 +42358,9773038,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93799,Private room,42,5,3,0.76,3,23 +42359,60668386,Manhattan,West Village,40.73341,-74.00444,Entire home/apt,197,2,3,3.0,1,2 +42360,246865215,Brooklyn,Williamsburg,40.72136,-73.95532,Entire home/apt,160,2,1,0.41,1,350 +42361,18170444,Brooklyn,Carroll Gardens,40.681329999999996,-73.99944,Private room,80,2,20,5.5,2,154 +42362,243875619,Brooklyn,Bedford-Stuyvesant,40.68725,-73.94625,Private room,48,1,20,5.04,2,242 +42363,145984241,Queens,Astoria,40.75492,-73.91548,Private room,100,4,0,,1,114 +42364,211280779,Brooklyn,Bedford-Stuyvesant,40.68779,-73.92130999999999,Entire home/apt,125,1,0,,1,116 +42365,55586606,Manhattan,Hell's Kitchen,40.75493,-73.99676,Private room,200,2,8,2.4,1,0 +42366,247335568,Queens,Long Island City,40.74881,-73.94315999999999,Entire home/apt,130,3,1,0.5,7,24 +42367,118403993,Brooklyn,Williamsburg,40.72124,-73.95984,Entire home/apt,400,2,10,2.63,2,351 +42368,59583716,Manhattan,Upper East Side,40.76174,-73.96625,Private room,90,3,1,0.25,1,8 +42369,71968525,Brooklyn,Borough Park,40.62688,-73.99795,Shared room,50,3,1,0.25,1,177 +42370,238544255,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91272,Private room,45,1,5,1.28,1,37 +42371,158872351,Brooklyn,Bedford-Stuyvesant,40.68845,-73.9439,Private room,55,1,7,2.56,1,0 +42372,2938649,Manhattan,Chelsea,40.74184,-73.9981,Entire home/apt,180,7,3,2.31,1,0 +42373,247411073,Brooklyn,Crown Heights,40.67041,-73.9463,Private room,239,1,1,0.58,1,364 +42374,169587048,Brooklyn,Cypress Hills,40.68258,-73.87731,Private room,50,7,1,0.52,2,365 +42375,203890641,Queens,Ditmars Steinway,40.77558,-73.90941,Private room,50,3,13,3.71,2,220 +42376,82190014,Brooklyn,East Flatbush,40.66346,-73.93571999999999,Entire home/apt,149,3,1,1.0,1,170 +42377,175413,Brooklyn,Bushwick,40.69835,-73.93258,Private room,33,2,3,0.75,1,188 +42378,244544373,Staten Island,St. George,40.638940000000005,-74.08069,Private room,100,1,1,1.0,2,365 +42379,219517861,Manhattan,Midtown,40.75544,-73.9829,Entire home/apt,177,29,0,,327,354 +42380,247446830,Manhattan,Harlem,40.82757,-73.94915,Private room,64,2,15,3.78,2,48 +42381,17827404,Queens,Astoria,40.76449,-73.91996,Shared room,30,1,7,4.12,1,320 +42382,242296495,Brooklyn,East Flatbush,40.64922,-73.93301,Private room,35,1,31,8.02,3,66 +42383,160356,Manhattan,East Village,40.72504,-73.98326999999999,Private room,68,1,31,7.69,4,94 +42384,247453895,Manhattan,Kips Bay,40.74367,-73.97551,Shared room,44,2,3,0.79,3,324 +42385,43207895,Brooklyn,Bedford-Stuyvesant,40.6901,-73.95139,Private room,60,2,1,0.54,2,189 +42386,219517861,Manhattan,Theater District,40.75731,-73.98326,Entire home/apt,177,29,1,1.0,327,343 +42387,187487947,Brooklyn,Greenpoint,40.73304,-73.95491,Entire home/apt,50,1,8,2.47,6,0 +42388,244330525,Brooklyn,Williamsburg,40.72055,-73.95825,Entire home/apt,300,2,0,,1,95 +42389,75064270,Manhattan,Financial District,40.70937,-74.00531,Private room,300,3,0,,2,365 +42390,244096292,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95788,Private room,400,1,0,,1,0 +42391,144839232,Bronx,Mott Haven,40.80981,-73.92031,Private room,39,1,9,3.38,1,176 +42392,9581668,Manhattan,Kips Bay,40.738820000000004,-73.98291,Entire home/apt,219,1,18,4.46,1,292 +42393,9864136,Brooklyn,Bushwick,40.686240000000005,-73.9144,Entire home/apt,80,30,2,0.5,26,317 +42394,206695257,Queens,Queens Village,40.71324,-73.73318,Private room,70,1,4,1.6,1,88 +42395,184750740,Bronx,Morrisania,40.82398,-73.90894,Shared room,77,1,0,,4,90 +42396,184750740,Bronx,Morrisania,40.82575,-73.90993,Private room,80,1,0,,4,365 +42397,5365438,Brooklyn,Bushwick,40.70235,-73.92891999999999,Private room,50,3,1,0.88,1,0 +42398,20012998,Brooklyn,Bedford-Stuyvesant,40.68224,-73.92097,Private room,60,3,4,2.22,2,316 +42399,49164956,Brooklyn,Bedford-Stuyvesant,40.677209999999995,-73.91404,Private room,47,30,0,,5,317 +42400,232665281,Bronx,Concourse,40.82913,-73.92236,Private room,50,1,7,1.84,1,265 +42401,21967943,Brooklyn,Bushwick,40.7006,-73.93018000000001,Private room,95,1,6,1.58,1,0 +42402,247538066,Queens,Jackson Heights,40.75196,-73.86893,Entire home/apt,260,2,14,5.0,1,32 +42403,33514370,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94458,Entire home/apt,159,3,16,5.78,1,10 +42404,113295877,Staten Island,Tompkinsville,40.63476,-74.0894,Private room,55,3,3,1.11,3,61 +42405,247628698,Manhattan,Hell's Kitchen,40.760940000000005,-73.99129,Private room,120,4,8,3.0,2,275 +42406,246459949,Brooklyn,Bay Ridge,40.631890000000006,-74.02322,Entire home/apt,135,1,14,3.59,1,271 +42407,4534893,Manhattan,Theater District,40.762190000000004,-73.98564,Entire home/apt,325,2,16,4.57,4,304 +42408,247644516,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93167,Entire home/apt,190,2,5,2.94,1,86 +42409,1190978,Manhattan,Harlem,40.82195,-73.95572,Private room,52,30,1,1.0,2,365 +42410,76394560,Brooklyn,Bushwick,40.703109999999995,-73.92514,Private room,60,1,12,3.64,1,9 +42411,247649713,Manhattan,Upper East Side,40.76142,-73.96493000000001,Entire home/apt,199,1,1,0.26,1,5 +42412,129412544,Brooklyn,Williamsburg,40.711,-73.96218,Entire home/apt,200,180,0,,1,365 +42413,247013511,Queens,Jackson Heights,40.75093,-73.87507,Private room,45,2,7,1.74,6,64 +42414,247662050,Brooklyn,Cypress Hills,40.68355,-73.8765,Private room,60,1,1,0.57,1,89 +42415,197516314,Staten Island,Port Richmond,40.63517,-74.13351999999999,Private room,52,1,3,0.93,3,365 +42416,247013511,Queens,Jackson Heights,40.75157,-73.87639,Private room,45,2,6,1.54,6,66 +42417,245258532,Queens,Kew Gardens,40.713,-73.83100999999999,Private room,45,2,16,4.1,2,6 +42418,247673988,Brooklyn,Bushwick,40.69872,-73.93460999999999,Private room,49,1,18,4.74,2,158 +42419,247673988,Brooklyn,Bushwick,40.699290000000005,-73.93602,Private room,55,1,16,4.36,2,169 +42420,245258532,Queens,Kew Gardens,40.71222,-73.83296999999999,Shared room,35,2,2,2.0,2,34 +42421,85488730,Brooklyn,Bushwick,40.69825,-73.93029,Private room,60,2,4,1.0,1,61 +42422,3228429,Manhattan,Harlem,40.827909999999996,-73.94752,Private room,65,2,6,2.07,1,72 +42423,136010789,Brooklyn,Bushwick,40.693870000000004,-73.91826,Private room,33,30,0,,2,54 +42424,168891738,Bronx,Unionport,40.826609999999995,-73.8571,Entire home/apt,100,2,16,4.32,2,161 +42425,53725579,Manhattan,Washington Heights,40.84505,-73.93779,Private room,45,1,23,5.95,3,217 +42426,7752638,Brooklyn,Sunset Park,40.6417,-74.01892,Private room,95,2,0,,1,137 +42427,11018124,Manhattan,Upper West Side,40.78812,-73.97091,Private room,175,2,0,,1,66 +42428,107434423,Manhattan,Hell's Kitchen,40.76186,-73.99714,Entire home/apt,446,30,0,,232,325 +42429,17577495,Manhattan,Hell's Kitchen,40.76135,-73.98698,Private room,140,3,3,1.67,3,45 +42430,16237721,Bronx,Port Morris,40.80643,-73.92783,Entire home/apt,110,14,0,,1,88 +42431,46789694,Queens,Springfield Gardens,40.66648,-73.7526,Private room,65,1,28,7.85,2,340 +42432,15672224,Brooklyn,Sheepshead Bay,40.58546,-73.9457,Entire home/apt,150,21,0,,1,81 +42433,159598333,Manhattan,Upper East Side,40.78331,-73.94646,Entire home/apt,99,30,0,,5,332 +42434,90043913,Queens,Ditmars Steinway,40.77205,-73.91759,Private room,55,2,8,2.26,2,110 +42435,38352826,Manhattan,East Village,40.7269,-73.98368,Entire home/apt,128,4,2,2.0,1,16 +42436,51596474,Brooklyn,Gravesend,40.58527,-73.96871,Shared room,28,10,0,,12,0 +42437,239658197,Manhattan,East Harlem,40.79153,-73.94138000000001,Entire home/apt,180,1,4,1.54,1,32 +42438,211303730,Queens,South Ozone Park,40.67425,-73.82231,Entire home/apt,115,1,23,5.95,1,66 +42439,2196224,Manhattan,East Village,40.7295,-73.98326999999999,Entire home/apt,133,30,0,,4,151 +42440,13412901,Brooklyn,Bushwick,40.70158,-73.92257,Private room,65,2,1,0.28,1,88 +42441,1580711,Brooklyn,Clinton Hill,40.69444,-73.9669,Entire home/apt,115,2,4,1.29,1,46 +42442,166673485,Brooklyn,Bushwick,40.68227,-73.90703,Entire home/apt,150,2,7,3.62,1,342 +42443,168891738,Bronx,Unionport,40.8267,-73.85704,Entire home/apt,100,2,18,4.78,2,145 +42444,33832598,Queens,Jamaica,40.69911,-73.78196,Entire home/apt,122,2,3,3.0,1,81 +42445,97853468,Bronx,Hunts Point,40.81731,-73.89052,Private room,35,21,0,,4,341 +42446,247013511,Queens,Jackson Heights,40.75091,-73.87612,Private room,39,2,22,5.64,6,58 +42447,102242694,Brooklyn,Bushwick,40.699870000000004,-73.92638000000001,Private room,35,20,1,1.0,1,24 +42448,102114290,Brooklyn,Williamsburg,40.71563,-73.94085,Private room,59,4,5,1.24,1,0 +42449,229637274,Queens,Elmhurst,40.74642,-73.88044000000001,Private room,30,1,15,4.84,2,135 +42450,51596474,Brooklyn,Gravesend,40.58462,-73.97155,Shared room,25,10,0,,12,0 +42451,205151601,Brooklyn,Crown Heights,40.6745,-73.92612,Private room,60,30,0,,1,126 +42452,247900765,Manhattan,Lower East Side,40.72085,-73.98253000000001,Entire home/apt,175,1,22,5.5,1,64 +42453,247900596,Manhattan,Harlem,40.80598,-73.94792,Entire home/apt,325,1,16,4.21,1,346 +42454,217484432,Queens,Ditmars Steinway,40.77726,-73.90689,Private room,115,1,7,2.26,2,304 +42455,30168484,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93885999999999,Entire home/apt,120,4,8,2.29,1,126 +42456,168729352,Manhattan,Kips Bay,40.73867,-73.98039,Entire home/apt,55,4,0,,1,8 +42457,31757676,Staten Island,Stapleton,40.62493,-74.08318,Entire home/apt,100,7,0,,1,16 +42458,248021206,Queens,Glendale,40.7071,-73.86482,Private room,50,1,0,,1,177 +42459,150273801,Queens,Glendale,40.705040000000004,-73.86933,Entire home/apt,131,3,11,2.87,1,319 +42460,56265076,Queens,Kew Gardens Hills,40.7201,-73.81043000000001,Private room,50,7,0,,2,0 +42461,248041579,Manhattan,Upper West Side,40.79361,-73.97046999999999,Private room,100,2,4,1.29,1,0 +42462,2361627,Queens,Rockaway Beach,40.58532,-73.81687,Entire home/apt,66,7,2,0.85,1,0 +42463,248050046,Manhattan,Gramercy,40.73488,-73.98585,Entire home/apt,190,7,10,2.7,1,24 +42464,245631422,Manhattan,Upper West Side,40.77348,-73.97994,Entire home/apt,370,30,0,,1,352 +42465,12748942,Manhattan,Upper West Side,40.77912,-73.98029,Entire home/apt,220,30,1,0.75,1,189 +42466,248064547,Manhattan,Upper East Side,40.7776,-73.94634,Entire home/apt,165,1,12,3.03,1,75 +42467,136621673,Brooklyn,Crown Heights,40.67453,-73.94164,Private room,99,1,10,2.75,1,47 +42468,1022166,Manhattan,East Village,40.73216,-73.98937,Shared room,65,4,6,2.07,1,35 +42469,187487947,Brooklyn,Greenpoint,40.73232,-73.95664000000001,Entire home/apt,70,1,15,4.09,6,0 +42470,19980949,Brooklyn,Greenpoint,40.7262,-73.95076999999999,Entire home/apt,120,5,0,,1,160 +42471,67132329,Manhattan,Two Bridges,40.71253,-73.99599,Private room,145,3,19,5.43,1,42 +42472,38043348,Manhattan,Harlem,40.80838,-73.94093000000001,Private room,90,1,23,6.0,2,254 +42473,7728754,Brooklyn,Crown Heights,40.6758,-73.94145999999999,Entire home/apt,100,3,6,2.17,4,246 +42474,38043348,Manhattan,East Harlem,40.80808,-73.9405,Private room,90,1,18,5.74,2,238 +42475,187975743,Manhattan,Hell's Kitchen,40.763059999999996,-73.98867,Shared room,65,1,14,3.68,8,206 +42476,152394865,Brooklyn,East Flatbush,40.63213,-73.94559,Private room,175,2,6,2.14,3,61 +42477,2206966,Manhattan,West Village,40.73478,-74.00015,Entire home/apt,170,2,6,1.94,1,3 +42478,248161322,Brooklyn,Bushwick,40.69977,-73.93966,Shared room,35,30,0,,14,341 +42479,248161322,Brooklyn,Bushwick,40.7008,-73.9394,Shared room,45,30,0,,14,364 +42480,248161322,Brooklyn,Bushwick,40.70001,-73.93914000000001,Private room,64,30,0,,14,338 +42481,248161322,Brooklyn,Bushwick,40.70106,-73.93895,Private room,80,30,0,,14,342 +42482,12593328,Brooklyn,East Flatbush,40.64779,-73.93163,Private room,90,3,3,2.05,3,0 +42483,19638146,Manhattan,SoHo,40.72527,-74.00043000000001,Private room,105,1,18,5.57,3,91 +42484,19638146,Manhattan,SoHo,40.72542,-74.00156,Private room,230,1,2,0.67,3,53 +42485,33897850,Manhattan,Washington Heights,40.83713,-73.94827,Private room,65,3,0,,1,87 +42486,97853468,Bronx,Hunts Point,40.817240000000005,-73.88878000000001,Private room,60,3,2,0.68,4,335 +42487,7365223,Brooklyn,Greenpoint,40.73281,-73.95208000000001,Entire home/apt,170,3,4,1.3,1,157 +42488,49251674,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94578,Private room,65,3,1,0.63,1,119 +42489,248202552,Brooklyn,Brighton Beach,40.57974,-73.95891999999999,Private room,55,1,5,1.29,1,0 +42490,5338560,Brooklyn,Bedford-Stuyvesant,40.67812,-73.91465,Entire home/apt,95,2,14,4.2,1,275 +42491,63640163,Bronx,Fordham,40.8637,-73.89236,Entire home/apt,107,1,22,6.8,1,339 +42492,219517861,Manhattan,Chelsea,40.74286,-73.99436,Entire home/apt,209,29,0,,327,326 +42493,592967,Brooklyn,Bedford-Stuyvesant,40.67883,-73.94438000000001,Shared room,35,7,1,0.37,1,344 +42494,241567925,Manhattan,Chinatown,40.71358,-73.99061999999999,Entire home/apt,199,3,7,1.88,1,49 +42495,239707721,Manhattan,Upper West Side,40.77872,-73.98435,Entire home/apt,112,30,0,,1,52 +42496,243501721,Manhattan,Chinatown,40.716609999999996,-73.99784,Entire home/apt,200,5,4,1.09,1,72 +42497,141547523,Manhattan,Harlem,40.82943,-73.9469,Private room,50,2,13,3.42,1,65 +42498,91018434,Brooklyn,Sheepshead Bay,40.5987,-73.9593,Shared room,25,1,0,,1,0 +42499,8033432,Manhattan,Hell's Kitchen,40.766940000000005,-73.98773,Entire home/apt,299,1,13,5.91,4,0 +42500,13697041,Manhattan,Nolita,40.720420000000004,-73.99622,Private room,100,1,14,5.25,1,30 +42501,1786901,Manhattan,Upper East Side,40.78317,-73.94559,Entire home/apt,185,3,1,0.59,9,92 +42502,248272030,Queens,Woodside,40.74299,-73.90295,Private room,50,7,4,2.07,1,225 +42503,60275401,Queens,Long Island City,40.75038,-73.93904,Private room,89,1,12,7.2,1,288 +42504,248286585,Bronx,Kingsbridge,40.882979999999996,-73.8987,Entire home/apt,90,3,5,1.38,1,321 +42505,48958358,Manhattan,Lower East Side,40.72141,-73.98866,Entire home/apt,200,3,8,2.03,1,319 +42506,30698503,Queens,Ditmars Steinway,40.772529999999996,-73.91476,Private room,80,7,3,1.55,1,352 +42507,10888067,Manhattan,SoHo,40.72697,-74.00409,Entire home/apt,150,3,13,3.86,1,9 +42508,161135042,Queens,Long Island City,40.745290000000004,-73.95753,Private room,200,1,1,0.28,1,0 +42509,92333417,Brooklyn,Bedford-Stuyvesant,40.681509999999996,-73.94781,Entire home/apt,117,3,10,3.9,2,308 +42510,4158712,Brooklyn,Greenpoint,40.732820000000004,-73.95208000000001,Entire home/apt,117,2,3,1.29,1,15 +42511,72660976,Brooklyn,Williamsburg,40.71177,-73.95629,Entire home/apt,180,3,6,1.51,1,38 +42512,28480501,Manhattan,Nolita,40.72222,-73.99691999999999,Private room,150,14,3,2.57,1,36 +42513,1489654,Brooklyn,Williamsburg,40.71247,-73.94915,Private room,93,1,25,7.01,1,234 +42514,248314431,Manhattan,Upper West Side,40.79931,-73.96072,Private room,75,1,19,5.28,2,58 +42515,6085353,Brooklyn,Williamsburg,40.71502,-73.95633000000001,Private room,60,5,3,0.99,1,179 +42516,3777082,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94585,Private room,81,1,3,1.32,1,175 +42517,96737879,Brooklyn,Williamsburg,40.70263,-73.93488,Private room,70,5,1,0.37,3,4 +42518,50741398,Manhattan,Upper West Side,40.801,-73.96696,Private room,79,1,10,3.23,4,0 +42519,248385708,Brooklyn,Sheepshead Bay,40.60331,-73.95082,Private room,21,1,2,1.02,1,90 +42520,248404100,Bronx,Morris Heights,40.84615,-73.91546,Private room,35,1,25,7.08,1,241 +42521,190981544,Brooklyn,Bedford-Stuyvesant,40.686820000000004,-73.92837,Private room,40,1,32,8.57,6,323 +42522,248421148,Manhattan,Roosevelt Island,40.76092,-73.95154000000001,Private room,80,6,1,0.77,2,312 +42523,7407743,Manhattan,Battery Park City,40.71162,-74.01693,Entire home/apt,7500,1,0,,1,364 +42524,140630987,Queens,Flushing,40.75977,-73.81289,Private room,75,1,10,2.94,6,126 +42525,4688336,Manhattan,Midtown,40.760490000000004,-73.97066,Entire home/apt,225,6,1,0.48,1,0 +42526,248444631,Queens,Ridgewood,40.699059999999996,-73.89871,Private room,70,1,0,,1,127 +42527,29523138,Brooklyn,Williamsburg,40.70957,-73.94088,Entire home/apt,168,3,7,3.44,2,190 +42528,139705987,Queens,East Elmhurst,40.76247,-73.86092,Private room,55,2,16,4.36,1,158 +42529,196273418,Brooklyn,Williamsburg,40.7194,-73.95899,Private room,89,2,0,,1,305 +42530,245637171,Manhattan,East Village,40.72997,-73.98553000000001,Private room,62,30,0,,8,341 +42531,245637171,Manhattan,East Village,40.72841,-73.98615,Private room,62,30,1,0.77,8,325 +42532,245637171,Manhattan,East Village,40.72932,-73.98474,Private room,68,30,0,,8,336 +42533,53632978,Brooklyn,Williamsburg,40.70856,-73.94776999999999,Entire home/apt,200,1,8,3.0,1,0 +42534,245637171,Manhattan,East Village,40.728429999999996,-73.98581,Private room,62,30,1,0.71,8,310 +42535,245637171,Manhattan,East Village,40.72821,-73.98633000000001,Private room,62,30,0,,8,310 +42536,145975067,Manhattan,Harlem,40.82008,-73.93863,Private room,75,2,28,7.3,3,13 +42537,248513181,Brooklyn,Bedford-Stuyvesant,40.6847,-73.9435,Entire home/apt,200,2,3,1.06,1,157 +42538,45927588,Manhattan,Upper West Side,40.77278,-73.98068,Entire home/apt,250,3,3,1.11,1,2 +42539,28375704,Brooklyn,Bushwick,40.69679,-73.93405,Private room,80,10,0,,1,180 +42540,248555214,Queens,Astoria,40.765159999999995,-73.92758,Private room,85,2,13,3.79,2,13 +42541,248035116,Manhattan,Financial District,40.70754,-74.00683000000001,Entire home/apt,195,30,13,4.59,1,174 +42542,156158778,Manhattan,Upper West Side,40.78545,-73.97123,Entire home/apt,3613,1,1,1.0,12,158 +42543,6051414,Manhattan,Battery Park City,40.71092,-74.0177,Entire home/apt,225,4,2,1.03,1,138 +42544,248068752,Manhattan,Hell's Kitchen,40.76448,-73.98895,Shared room,75,1,20,5.17,5,365 +42545,2300366,Brooklyn,Williamsburg,40.70835,-73.94163,Private room,90,2,1,0.63,2,9 +42546,248068752,Manhattan,Hell's Kitchen,40.7647,-73.98853000000001,Shared room,75,1,8,2.16,5,361 +42547,248068752,Manhattan,Hell's Kitchen,40.76441,-73.98838,Shared room,75,1,6,1.7,5,361 +42548,27512264,Brooklyn,Carroll Gardens,40.682520000000004,-73.99089000000001,Entire home/apt,143,30,0,,1,181 +42549,248068752,Manhattan,Hell's Kitchen,40.76592,-73.98769,Shared room,75,1,5,1.38,5,365 +42550,248068752,Manhattan,Hell's Kitchen,40.76404,-73.98873,Shared room,75,1,9,2.33,5,363 +42551,130279,Brooklyn,Bushwick,40.69943,-73.92858000000001,Private room,75,1,3,2.43,1,0 +42552,4342052,Manhattan,Theater District,40.76089,-73.98709000000001,Private room,299,1,22,5.69,1,303 +42553,43063099,Queens,Astoria,40.7637,-73.9238,Private room,42,7,0,,1,0 +42554,248654228,Queens,East Elmhurst,40.76362,-73.88163,Private room,35,1,3,0.78,4,150 +42555,32418402,Brooklyn,Crown Heights,40.67165,-73.93143,Private room,82,2,2,1.02,2,156 +42556,216310452,Queens,Ridgewood,40.70078,-73.9072,Private room,60,35,1,0.3,1,64 +42557,40069144,Brooklyn,Bedford-Stuyvesant,40.688309999999994,-73.94066,Private room,46,14,0,,1,37 +42558,107434423,Manhattan,Theater District,40.76057,-73.98455,Entire home/apt,343,30,0,,232,311 +42559,18869247,Queens,Ridgewood,40.701029999999996,-73.91018000000001,Private room,80,2,9,3.1,1,53 +42560,24520756,Brooklyn,Williamsburg,40.71131,-73.95869,Entire home/apt,150,7,0,,1,129 +42561,248671285,Manhattan,Harlem,40.823640000000005,-73.95433,Private room,75,4,5,2.31,1,80 +42562,35927005,Manhattan,Lower East Side,40.715,-73.98633000000001,Private room,86,1,7,2.84,10,115 +42563,73369106,Brooklyn,Williamsburg,40.71864,-73.96106999999999,Entire home/apt,319,2,5,1.9,1,47 +42564,190981544,Brooklyn,Bedford-Stuyvesant,40.68613,-73.9295,Private room,100,1,1,0.39,6,356 +42565,16637631,Brooklyn,Williamsburg,40.70984,-73.96366,Entire home/apt,260,1,24,6.43,1,45 +42566,41348157,Manhattan,East Harlem,40.793420000000005,-73.93889,Private room,70,2,3,0.84,3,10 +42567,70506007,Manhattan,Morningside Heights,40.80392,-73.95829,Private room,100,2,16,4.57,1,38 +42568,248161322,Brooklyn,Bushwick,40.69995,-73.93933,Private room,64,30,0,,14,364 +42569,154234826,Manhattan,Harlem,40.82039,-73.94402,Private room,50,3,4,1.97,1,9 +42570,52140932,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95155,Private room,65,2,7,2.02,7,272 +42571,52140932,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95008,Private room,65,2,4,1.32,7,347 +42572,61391963,Manhattan,Upper East Side,40.77991,-73.95267,Entire home/apt,117,30,0,,91,311 +42573,154525001,Queens,Woodside,40.74443,-73.90885,Entire home/apt,125,1,14,3.68,1,288 +42574,218481230,Manhattan,East Village,40.72213,-73.97791,Private room,249,3,10,3.45,1,91 +42575,248723983,Manhattan,Hell's Kitchen,40.76279,-73.99473,Private room,93,1,1,0.75,1,0 +42576,65613634,Brooklyn,Bedford-Stuyvesant,40.68736,-73.93826999999999,Entire home/apt,400,2,13,5.34,1,278 +42577,22217533,Brooklyn,Park Slope,40.67301,-73.97154,Entire home/apt,135,5,5,1.81,1,318 +42578,11391775,Manhattan,Kips Bay,40.74284,-73.97967,Entire home/apt,150,1,22,7.02,1,29 +42579,231103652,Manhattan,Harlem,40.824,-73.95229,Private room,50,4,15,4.55,1,4 +42580,3141293,Queens,Sunnyside,40.747370000000004,-73.9143,Entire home/apt,100,6,0,,1,10 +42581,30445677,Manhattan,Upper West Side,40.778240000000004,-73.97964,Entire home/apt,250,2,6,1.59,1,21 +42582,7728754,Brooklyn,Crown Heights,40.67387,-73.9424,Entire home/apt,100,3,5,2.03,4,250 +42583,245681626,Manhattan,East Village,40.72583,-73.97945,Entire home/apt,168,3,20,5.22,1,30 +42584,77698412,Brooklyn,Bedford-Stuyvesant,40.691590000000005,-73.93339,Private room,40,2,1,1.0,1,0 +42585,29461390,Manhattan,Upper West Side,40.79288,-73.9723,Private room,82,1,7,2.44,1,178 +42586,240717293,Brooklyn,Vinegar Hill,40.70195,-73.98309,Private room,85,2,10,4.05,1,1 +42587,248788151,Manhattan,Hell's Kitchen,40.761559999999996,-73.98749000000001,Entire home/apt,160,3,8,2.58,1,1 +42588,1648510,Manhattan,Roosevelt Island,40.76213,-73.94893,Entire home/apt,160,4,9,3.38,1,33 +42589,247937619,Manhattan,Lower East Side,40.71525,-73.98735,Private room,72,5,17,5.0,1,49 +42590,7289570,Brooklyn,Bedford-Stuyvesant,40.683820000000004,-73.9204,Entire home/apt,150,3,15,4.89,1,75 +42591,248421148,Manhattan,Roosevelt Island,40.76038,-73.95085,Private room,80,6,3,1.25,2,260 +42592,140630987,Queens,Flushing,40.77078,-73.82615,Private room,60,1,13,4.94,6,125 +42593,248818787,Brooklyn,Bedford-Stuyvesant,40.68704,-73.9304,Private room,80,2,3,3.0,1,83 +42594,11305100,Manhattan,Harlem,40.79943,-73.95376,Entire home/apt,150,3,6,1.59,1,10 +42595,118375653,Manhattan,Two Bridges,40.7119,-73.99364,Entire home/apt,250,3,0,,3,0 +42596,2392755,Brooklyn,Flatbush,40.642990000000005,-73.95954,Private room,45,2,8,3.0,1,109 +42597,248161322,Brooklyn,Bushwick,40.70002,-73.94054,Shared room,35,30,1,0.26,14,341 +42598,248856446,Queens,Rockaway Beach,40.58891,-73.80181,Private room,50,1,1,0.67,1,179 +42599,25370675,Queens,Elmhurst,40.73247,-73.8768,Private room,443,1,0,,1,365 +42600,248036814,Manhattan,Financial District,40.7069,-74.00605999999999,Entire home/apt,195,30,17,5.1,1,203 +42601,130476089,Manhattan,Chelsea,40.74216,-73.99962,Private room,83,1,1,0.33,2,0 +42602,10478551,Brooklyn,Clinton Hill,40.68419,-73.96428,Private room,50,10,0,,1,0 +42603,248714625,Queens,East Elmhurst,40.75985,-73.88233000000001,Shared room,70,1,1,0.41,1,89 +42604,16098958,Manhattan,Midtown,40.74885,-73.98698,Entire home/apt,260,30,1,0.46,96,343 +42605,16098958,Manhattan,Midtown,40.75032,-73.97143,Entire home/apt,175,30,0,,96,342 +42606,195657353,Brooklyn,Bushwick,40.70005,-73.91295,Private room,42,2,0,,2,311 +42607,219517861,Manhattan,Financial District,40.70645,-74.01186,Entire home/apt,520,2,6,2.43,327,262 +42608,240480084,Brooklyn,Williamsburg,40.71719,-73.94795,Entire home/apt,300,3,2,0.98,1,59 +42609,16098958,Manhattan,Hell's Kitchen,40.76291,-73.9875,Entire home/apt,250,30,0,,96,303 +42610,248901969,Manhattan,Murray Hill,40.74613,-73.97528,Entire home/apt,175,3,4,1.52,1,270 +42611,16098958,Manhattan,Midtown,40.74909,-73.98657,Entire home/apt,170,30,1,0.51,96,345 +42612,195657353,Brooklyn,Bushwick,40.700829999999996,-73.9122,Private room,42,2,0,,2,125 +42613,247446830,Manhattan,Harlem,40.825759999999995,-73.94861,Private room,73,2,14,3.72,2,35 +42614,4221836,Manhattan,Lower East Side,40.71887,-73.99256,Private room,95,5,7,2.28,1,118 +42615,4037192,Queens,Middle Village,40.72355,-73.87456,Entire home/apt,100,30,1,0.77,1,323 +42616,248944703,Manhattan,Murray Hill,40.7462,-73.97296,Entire home/apt,160,2,11,4.34,1,90 +42617,248956396,Brooklyn,Bushwick,40.691790000000005,-73.91404,Private room,45,1,24,6.61,1,167 +42618,2931897,Brooklyn,Crown Heights,40.66568,-73.94176,Entire home/apt,250,3,0,,1,365 +42619,248971429,Brooklyn,Bedford-Stuyvesant,40.689659999999996,-73.95353,Private room,60,4,0,,1,0 +42620,223574944,Manhattan,Kips Bay,40.74392,-73.98071999999999,Shared room,35,2,2,0.57,2,353 +42621,88497114,Brooklyn,Bedford-Stuyvesant,40.68857,-73.9384,Entire home/apt,160,2,15,6.72,1,71 +42622,65887955,Queens,Astoria,40.76475,-73.90918,Private room,69,3,0,,1,73 +42623,248161322,Brooklyn,Bushwick,40.70107,-73.93934,Shared room,35,30,1,0.35,14,341 +42624,28408288,Brooklyn,Bushwick,40.69339,-73.90460999999999,Private room,49,2,6,1.62,1,0 +42625,249030378,Brooklyn,Bedford-Stuyvesant,40.68965,-73.92908,Entire home/apt,110,4,13,3.71,1,161 +42626,713776,Brooklyn,Williamsburg,40.71417,-73.94123,Entire home/apt,94,3,4,1.32,1,31 +42627,245637171,Manhattan,East Village,40.72849,-73.98576,Private room,82,30,0,,8,365 +42628,248161322,Brooklyn,Bushwick,40.700070000000004,-73.93899,Shared room,35,30,0,,14,341 +42629,230917343,Manhattan,Midtown,40.74758,-73.98276,Entire home/apt,299,3,8,2.89,1,306 +42630,249069377,Manhattan,Greenwich Village,40.73424,-73.99355,Private room,120,1,7,1.96,1,13 +42631,247796242,Manhattan,Midtown,40.75492,-73.98026999999999,Private room,382,3,0,,1,201 +42632,28770493,Manhattan,West Village,40.735079999999996,-74.00004,Entire home/apt,204,4,3,1.36,1,6 +42633,29349060,Queens,St. Albans,40.6853,-73.76814,Private room,55,1,12,3.13,3,180 +42634,8661986,Manhattan,Stuyvesant Town,40.73223,-73.98134,Entire home/apt,279,2,26,7.22,1,229 +42635,182434290,Queens,Ditmars Steinway,40.77134,-73.91328,Private room,52,1,5,1.6,2,188 +42636,249104360,Staten Island,Grymes Hill,40.61572,-74.08901,Entire home/apt,300,5,1,0.58,1,174 +42637,248554249,Manhattan,Midtown,40.74362,-73.98207,Entire home/apt,388,3,13,3.61,1,246 +42638,4401527,Brooklyn,Clinton Hill,40.68464,-73.96151,Private room,40,6,1,0.31,1,17 +42639,248975053,Manhattan,Financial District,40.7068,-74.00632,Entire home/apt,195,2,12,3.87,1,24 +42640,249146659,Brooklyn,Bushwick,40.702040000000004,-73.93027,Private room,40,5,1,0.36,1,364 +42641,147827717,Manhattan,Upper East Side,40.763290000000005,-73.96119,Private room,109,4,0,,1,101 +42642,4129805,Manhattan,West Village,40.73242,-74.00404,Entire home/apt,400,2,1,0.65,5,102 +42643,141645843,Queens,Jamaica,40.68093,-73.79713000000001,Private room,45,1,9,2.67,2,113 +42644,248161322,Brooklyn,Bushwick,40.70028,-73.93952,Shared room,35,30,0,,14,333 +42645,39890192,Manhattan,Upper West Side,40.80319,-73.96676,Private room,70,15,0,,12,153 +42646,39890192,Manhattan,Upper West Side,40.800309999999996,-73.96775,Private room,70,21,1,0.86,12,119 +42647,244371444,Queens,Sunnyside,40.743829999999996,-73.92331999999999,Entire home/apt,130,13,0,,1,0 +42648,211906172,Queens,Rego Park,40.724070000000005,-73.86585,Private room,70,4,0,,1,365 +42649,11776513,Manhattan,Upper East Side,40.78475,-73.95339,Entire home/apt,99,10,2,0.59,1,188 +42650,153356660,Brooklyn,Bushwick,40.69594,-73.90685,Private room,75,1,0,,1,83 +42651,249243301,Bronx,Mount Hope,40.8477,-73.90988,Private room,24,2,2,0.68,1,0 +42652,39653778,Manhattan,East Village,40.731609999999996,-73.98438,Entire home/apt,220,4,1,0.26,1,1 +42653,27785287,Brooklyn,Flatbush,40.65345,-73.95476,Private room,50,2,6,1.78,1,2 +42654,140630987,Queens,Flushing,40.76897,-73.82728,Private room,39,1,27,8.62,6,133 +42655,2919299,Manhattan,Chelsea,40.750240000000005,-74.00213000000001,Entire home/apt,175,4,3,1.11,1,15 +42656,140830391,Manhattan,Harlem,40.8159,-73.9396,Private room,70,1,4,1.14,9,260 +42657,4276261,Manhattan,East Village,40.72625,-73.99014,Entire home/apt,350,3,1,0.7,1,66 +42658,10530947,Manhattan,East Village,40.72047,-73.97998,Entire home/apt,120,4,1,0.26,1,0 +42659,249279890,Manhattan,Lower East Side,40.71852,-73.99067,Private room,129,3,12,3.53,1,85 +42660,38604449,Queens,Woodside,40.75563,-73.90493000000001,Private room,50,2,1,0.51,2,262 +42661,249297875,Bronx,Woodlawn,40.89768,-73.87363,Entire home/apt,35,2,18,5.35,1,51 +42662,249291429,Brooklyn,Clinton Hill,40.693059999999996,-73.96132,Private room,45,1,4,1.88,2,135 +42663,15807180,Manhattan,Upper West Side,40.78536,-73.97116,Private room,82,2,26,7.29,3,288 +42664,26754841,Manhattan,West Village,40.736740000000005,-74.00411,Private room,180,3,1,0.51,2,123 +42665,42540127,Queens,Bayside,40.77067,-73.78278,Entire home/apt,55,2,37,10.37,1,6 +42666,86190506,Queens,Astoria,40.75698,-73.91362,Private room,65,3,8,3.48,1,71 +42667,56349939,Manhattan,Lower East Side,40.71728,-73.99085,Private room,84,2,18,5.35,1,21 +42668,249309586,Manhattan,Chinatown,40.71502,-73.99065999999999,Entire home/apt,150,4,8,2.38,1,255 +42669,29349060,Queens,St. Albans,40.68481,-73.76952,Private room,55,1,16,4.21,3,269 +42670,245002893,Queens,Rosedale,40.66875,-73.73626999999999,Private room,70,1,3,1.11,2,180 +42671,2537981,Brooklyn,Bushwick,40.6951,-73.92898000000001,Private room,78,3,0,,1,105 +42672,249042333,Manhattan,Harlem,40.82808,-73.94563000000001,Entire home/apt,148,2,8,2.82,1,334 +42673,41941061,Manhattan,Hell's Kitchen,40.76655,-73.99216,Private room,350,1,0,,1,89 +42674,4094038,Brooklyn,Williamsburg,40.71198,-73.94191,Entire home/apt,285,3,3,3.0,4,16 +42675,249404981,Manhattan,Inwood,40.869479999999996,-73.92121999999999,Entire home/apt,129,2,0,,1,65 +42676,65574027,Manhattan,Upper East Side,40.7739,-73.94937,Entire home/apt,370,5,0,,1,15 +42677,52584817,Manhattan,East Village,40.72353,-73.97646,Entire home/apt,150,2,5,1.33,1,4 +42678,249286477,Manhattan,Harlem,40.82734,-73.94718,Entire home/apt,85,4,3,1.13,1,6 +42679,109448921,Brooklyn,Prospect-Lefferts Gardens,40.663790000000006,-73.95239000000001,Entire home/apt,75,2,12,3.56,1,8 +42680,74373729,Queens,Bayside,40.77811,-73.77069,Entire home/apt,2600,6,3,1.73,1,362 +42681,120296922,Brooklyn,Carroll Gardens,40.67716,-74.00074000000001,Entire home/apt,110,3,7,2.08,1,0 +42682,50741398,Manhattan,Upper West Side,40.800709999999995,-73.96616,Private room,80,1,14,3.89,4,0 +42683,81867025,Brooklyn,Bedford-Stuyvesant,40.68484,-73.9552,Entire home/apt,100,14,0,,1,0 +42684,6520032,Manhattan,West Village,40.73551,-74.00138000000001,Entire home/apt,250,2,6,2.12,1,19 +42685,549971,Manhattan,Chinatown,40.7142,-73.99254,Entire home/apt,150,30,3,1.25,1,33 +42686,130981288,Brooklyn,Flatbush,40.64938,-73.96682,Entire home/apt,110,2,1,0.28,1,260 +42687,116826665,Brooklyn,Red Hook,40.67962,-74.01294,Entire home/apt,122,13,1,0.77,1,12 +42688,247120058,Manhattan,Murray Hill,40.746990000000004,-73.97301,Entire home/apt,375,2,10,3.75,1,26 +42689,36793116,Manhattan,Midtown,40.76582,-73.97958,Entire home/apt,399,30,3,1.32,1,303 +42690,249495371,Brooklyn,Bushwick,40.69269,-73.92178,Entire home/apt,201,1,24,7.58,1,296 +42691,209557185,Manhattan,Financial District,40.705220000000004,-74.00925,Private room,150,7,6,1.65,1,351 +42692,39362079,Brooklyn,Crown Heights,40.6704,-73.95038000000001,Entire home/apt,95,2,7,2.5,1,0 +42693,42732656,Brooklyn,Greenpoint,40.72769,-73.94309,Private room,69,3,4,1.14,1,0 +42694,249500632,Manhattan,Harlem,40.81476,-73.94723,Entire home/apt,75,30,1,0.77,1,13 +42695,249500015,Bronx,Soundview,40.8265,-73.87045,Entire home/apt,103,2,19,5.7,1,75 +42696,5944855,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93649,Entire home/apt,150,2,2,0.78,1,92 +42697,128369561,Brooklyn,Bushwick,40.695440000000005,-73.91011999999999,Private room,46,1,7,2.04,1,130 +42698,3988394,Brooklyn,South Slope,40.66829,-73.98871,Private room,95,1,16,5.11,1,80 +42699,19303369,Manhattan,Inwood,40.86507,-73.92348,Private room,35,29,0,,37,31 +42700,248747777,Manhattan,Chelsea,40.7394,-73.99868000000001,Entire home/apt,199,2,8,2.89,1,125 +42701,196872053,Brooklyn,Brighton Beach,40.577529999999996,-73.95900999999999,Private room,80,3,0,,2,350 +42702,1852219,Queens,Astoria,40.7718,-73.91942,Private room,62,2,16,4.53,1,313 +42703,104796372,Queens,Astoria,40.77151,-73.93066,Private room,65,1,2,2.0,1,7 +42704,82524498,Brooklyn,Crown Heights,40.66697,-73.93508,Entire home/apt,85,5,9,2.65,1,7 +42705,90131587,Queens,Elmhurst,40.737159999999996,-73.87957,Entire home/apt,109,2,3,1.15,1,0 +42706,190643075,Brooklyn,Bay Ridge,40.63015,-74.02305,Entire home/apt,90,6,1,0.94,1,0 +42707,34014150,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94001999999999,Entire home/apt,175,4,4,1.64,1,196 +42708,13564519,Manhattan,Midtown,40.763090000000005,-73.98063,Entire home/apt,190,3,1,0.88,1,84 +42709,3401286,Brooklyn,Williamsburg,40.71848,-73.94393000000001,Entire home/apt,170,2,4,1.22,1,1 +42710,249637449,Manhattan,Harlem,40.82311,-73.94749,Entire home/apt,130,2,12,3.4,1,14 +42711,36477189,Brooklyn,Brooklyn Heights,40.69944,-73.99596,Entire home/apt,600,3,8,2.96,1,44 +42712,8902538,Brooklyn,Bedford-Stuyvesant,40.692640000000004,-73.94551,Entire home/apt,100,2,5,1.61,1,0 +42713,2928681,Brooklyn,Bushwick,40.70487,-73.92533,Entire home/apt,150,3,1,0.46,1,6 +42714,95604631,Brooklyn,Williamsburg,40.715790000000005,-73.95092,Private room,79,4,0,,1,110 +42715,61256671,Manhattan,Tribeca,40.71989,-74.00668,Entire home/apt,290,2,4,2.26,1,75 +42716,92190906,Brooklyn,Flatlands,40.62636,-73.91824,Entire home/apt,110,3,6,2.28,1,339 +42717,138994918,Manhattan,East Harlem,40.801429999999996,-73.93803,Private room,50,3,0,,1,41 +42718,249649095,Queens,East Elmhurst,40.76132,-73.88192,Private room,53,2,16,4.49,1,79 +42719,28460706,Brooklyn,Bedford-Stuyvesant,40.67657,-73.91145999999999,Entire home/apt,80,30,0,,1,312 +42720,249661823,Manhattan,Lower East Side,40.71829,-73.98899999999999,Entire home/apt,200,2,4,1.54,1,3 +42721,231138233,Manhattan,East Harlem,40.7891,-73.94906,Entire home/apt,180,1,17,4.77,5,40 +42722,249676515,Queens,Rosedale,40.65233,-73.72655999999999,Entire home/apt,80,2,1,1.0,1,176 +42723,131647128,Manhattan,Upper West Side,40.77424,-73.98827,Entire home/apt,260,30,7,2.73,25,274 +42724,9293730,Manhattan,Upper West Side,40.80044,-73.96176,Entire home/apt,190,30,1,0.45,16,310 +42725,249291429,Brooklyn,Bedford-Stuyvesant,40.692840000000004,-73.95954,Private room,45,3,0,,2,135 +42726,3502098,Brooklyn,Williamsburg,40.71646,-73.95996,Private room,75,2,10,2.83,1,177 +42727,249708372,Queens,Long Island City,40.75817,-73.92949,Entire home/apt,100,3,11,3.3,1,296 +42728,21524809,Brooklyn,Williamsburg,40.70312,-73.94464,Private room,75,4,6,1.98,1,55 +42729,77393311,Queens,Woodhaven,40.69567,-73.84949,Private room,50,2,7,2.0,1,174 +42730,168565806,Manhattan,Lower East Side,40.71171,-73.99077,Entire home/apt,125,30,1,0.68,2,46 +42731,219333557,Queens,East Elmhurst,40.76258,-73.86855,Entire home/apt,95,1,16,4.4,7,81 +42732,389297,Brooklyn,Boerum Hill,40.68872,-73.98938000000001,Entire home/apt,126,5,0,,1,0 +42733,1602809,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.96059,Entire home/apt,150,30,0,,1,278 +42734,233917490,Manhattan,Upper West Side,40.802209999999995,-73.96677,Private room,40,1,0,,1,1 +42735,165054817,Bronx,Pelham Bay,40.84342,-73.83929,Entire home/apt,125,1,15,5.77,1,336 +42736,177396569,Manhattan,Hell's Kitchen,40.76043,-73.99132,Entire home/apt,4100,30,0,,3,180 +42737,231138233,Manhattan,East Harlem,40.78909,-73.94955999999999,Entire home/apt,180,1,21,6.0,5,87 +42738,231138233,Manhattan,East Harlem,40.788779999999996,-73.94838,Entire home/apt,165,1,23,6.83,5,102 +42739,114736959,Brooklyn,Gravesend,40.58822,-73.97294000000001,Entire home/apt,85,30,1,0.31,6,347 +42740,1940153,Brooklyn,Bedford-Stuyvesant,40.68164,-73.9262,Entire home/apt,199,2,3,3.0,1,67 +42741,23276234,Brooklyn,Williamsburg,40.70905,-73.95315,Private room,90,3,2,0.71,1,0 +42742,107434423,Manhattan,Kips Bay,40.740790000000004,-73.9775,Entire home/apt,263,30,0,,232,332 +42743,249846765,Manhattan,East Village,40.72853,-73.98173,Entire home/apt,89,30,0,,1,0 +42744,89035025,Brooklyn,Williamsburg,40.71492,-73.94332,Private room,65,3,4,1.29,1,3 +42745,41089134,Brooklyn,Red Hook,40.67897,-74.00587,Private room,45,2,17,5.05,1,87 +42746,145975067,Manhattan,Harlem,40.818259999999995,-73.93881999999999,Private room,70,1,25,6.76,3,9 +42747,64689615,Manhattan,Upper West Side,40.77362,-73.99133,Entire home/apt,250,8,0,,1,4 +42748,72031522,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93436,Private room,60,2,9,2.76,1,22 +42749,249870831,Brooklyn,Williamsburg,40.71395,-73.94022,Private room,65,1,2,1.15,1,124 +42750,165776960,Manhattan,Midtown,40.76054,-73.96449,Entire home/apt,130,30,1,1.0,2,148 +42751,249881559,Brooklyn,Williamsburg,40.71594,-73.9402,Entire home/apt,135,2,9,3.86,1,162 +42752,46311875,Manhattan,Chelsea,40.75183,-73.99633,Entire home/apt,140,30,0,,1,167 +42753,173685298,Manhattan,Midtown,40.75475,-73.97243,Private room,399,1,1,0.81,11,364 +42754,7117263,Brooklyn,Brooklyn Heights,40.69153,-73.9951,Private room,75,1,23,8.02,1,166 +42755,21218657,Brooklyn,Bedford-Stuyvesant,40.69462,-73.94499,Entire home/apt,89,3,7,3.28,1,0 +42756,27564513,Brooklyn,Williamsburg,40.703959999999995,-73.93441999999999,Entire home/apt,250,2,7,2.44,1,183 +42757,40949032,Queens,Sunnyside,40.74149,-73.92327,Entire home/apt,131,30,0,,1,182 +42758,16722828,Manhattan,Upper East Side,40.77385,-73.94733000000001,Private room,58,28,3,1.03,1,0 +42759,249929999,Manhattan,Gramercy,40.73683,-73.98816,Entire home/apt,700,5,11,3.93,1,282 +42760,239155432,Bronx,Wakefield,40.90484,-73.84489,Private room,120,1,1,0.32,1,268 +42761,140830391,Manhattan,Harlem,40.8088,-73.94527,Private room,100,1,4,1.6,9,275 +42762,140830391,Manhattan,Harlem,40.81072,-73.94235,Private room,85,1,8,2.61,9,150 +42763,48958233,Manhattan,Gramercy,40.73644,-73.98097,Entire home/apt,215,1,1,0.3,2,188 +42764,130827164,Manhattan,Upper East Side,40.77195,-73.9537,Entire home/apt,199,2,0,,2,364 +42765,19729266,Brooklyn,Bushwick,40.69328,-73.9225,Entire home/apt,150,7,1,0.39,1,88 +42766,21816318,Manhattan,Harlem,40.800979999999996,-73.95424,Private room,85,3,5,1.76,1,0 +42767,249588074,Brooklyn,Williamsburg,40.71206,-73.94006,Private room,85,1,0,,2,124 +42768,878938,Manhattan,Upper East Side,40.779270000000004,-73.95165,Private room,98,1,10,4.35,1,327 +42769,250005351,Manhattan,Financial District,40.705290000000005,-74.00653,Private room,293,1,7,3.18,1,75 +42770,8253008,Manhattan,East Village,40.7275,-73.98838,Entire home/apt,125,30,0,,1,97 +42771,72744910,Brooklyn,Greenpoint,40.71971,-73.94377,Private room,65,2,6,1.94,1,20 +42772,250065719,Staten Island,Randall Manor,40.63211,-74.12557,Entire home/apt,85,1,6,2.2,1,316 +42773,116446134,Brooklyn,East New York,40.675540000000005,-73.8942,Private room,120,1,2,0.59,1,89 +42774,249588074,Brooklyn,Williamsburg,40.71389,-73.93859,Private room,69,2,1,0.28,2,345 +42775,11379822,Bronx,Mount Hope,40.84672,-73.90411,Private room,63,1,3,0.94,1,167 +42776,24831061,Manhattan,Midtown,40.76453,-73.98035,Private room,250,1,0,,8,0 +42777,70393914,Brooklyn,East Flatbush,40.64627,-73.92014,Private room,58,2,2,2.0,1,126 +42778,24831061,Manhattan,Midtown,40.76428,-73.98083000000001,Entire home/apt,310,1,0,,8,0 +42779,201407513,Brooklyn,Bedford-Stuyvesant,40.67922,-73.90953,Private room,41,1,6,1.86,2,79 +42780,24831061,Manhattan,Midtown,40.76543,-73.98078000000001,Entire home/apt,261,1,0,,8,0 +42781,177673174,Queens,Astoria,40.76553,-73.91353000000001,Private room,80,2,0,,1,0 +42782,240913980,Bronx,Wakefield,40.896370000000005,-73.8555,Private room,39,1,10,2.73,1,15 +42783,162280872,Manhattan,Upper East Side,40.77039,-73.95812,Entire home/apt,180,30,1,0.47,13,325 +42784,40275796,Bronx,Kingsbridge,40.8704,-73.90559,Private room,100,5,0,,1,40 +42785,219517861,Manhattan,Theater District,40.75966,-73.9862,Entire home/apt,175,29,0,,327,335 +42786,250115747,Brooklyn,Bushwick,40.69927,-73.9107,Private room,44,2,6,2.37,4,163 +42787,219517861,Manhattan,Theater District,40.76147,-73.98589,Entire home/apt,177,29,2,0.85,327,354 +42788,250115747,Queens,Ridgewood,40.700559999999996,-73.9106,Private room,49,2,14,4.08,4,165 +42789,250115747,Queens,Ridgewood,40.69935,-73.91043,Private room,44,2,10,3.13,4,128 +42790,250115747,Queens,Ridgewood,40.70125,-73.91051,Private room,44,2,9,3.18,4,154 +42791,231216524,Manhattan,Hell's Kitchen,40.76565,-73.98872,Private room,149,1,14,3.78,5,0 +42792,250149612,Queens,Jamaica,40.669709999999995,-73.78583,Entire home/apt,300,1,11,3.27,1,319 +42793,13783103,Queens,Ridgewood,40.70848,-73.9148,Entire home/apt,140,3,13,4.29,1,192 +42794,162093521,Brooklyn,Bedford-Stuyvesant,40.68196,-73.92416,Private room,35,2,1,0.47,1,4 +42795,106857875,Manhattan,Chelsea,40.754259999999995,-73.99848,Entire home/apt,140,120,0,,1,255 +42796,15191122,Brooklyn,Bedford-Stuyvesant,40.68802,-73.94291,Entire home/apt,75,2,2,1.33,1,24 +42797,39823351,Manhattan,East Harlem,40.79415,-73.94156,Private room,90,4,10,3.53,1,24 +42798,237077566,Brooklyn,Gowanus,40.67731,-73.98539,Private room,74,1,1,0.28,1,72 +42799,95892016,Manhattan,East Village,40.72687,-73.98416,Entire home/apt,396,1,15,4.84,5,317 +42800,45470760,Brooklyn,Williamsburg,40.70406,-73.95763000000001,Private room,70,2,5,1.63,1,2 +42801,140830391,Manhattan,Inwood,40.86208,-73.9269,Private room,100,1,2,0.78,9,324 +42802,140830391,Manhattan,Inwood,40.863240000000005,-73.92681999999999,Private room,100,1,4,1.58,9,315 +42803,140830391,Manhattan,Inwood,40.86182,-73.92667,Private room,100,1,7,2.33,9,324 +42804,140830391,Manhattan,Inwood,40.86387,-73.92711,Private room,180,5,6,1.94,9,323 +42805,250252296,Manhattan,Midtown,40.747890000000005,-73.98702,Entire home/apt,220,4,10,3.03,1,297 +42806,6312248,Brooklyn,Bedford-Stuyvesant,40.68609,-73.92931999999999,Entire home/apt,195,2,5,2.42,2,20 +42807,234588422,Queens,Sunnyside,40.74512,-73.91758,Entire home/apt,75,6,3,1.22,1,43 +42808,24831061,Manhattan,Midtown,40.7643,-73.98199,Entire home/apt,310,1,2,0.7,8,0 +42809,249983430,Brooklyn,Greenpoint,40.73644,-73.95425,Entire home/apt,300,2,22,6.23,1,341 +42810,248961864,Manhattan,Chinatown,40.71301,-73.99609,Private room,85,1,12,3.36,3,339 +42811,248961864,Manhattan,Two Bridges,40.71241,-73.99458,Private room,85,1,15,4.17,3,356 +42812,1104166,Brooklyn,Williamsburg,40.71362,-73.95343000000001,Private room,65,2,9,3.42,4,43 +42813,24831061,Manhattan,Midtown,40.76425,-73.9809,Entire home/apt,310,1,0,,8,0 +42814,67373452,Queens,Ridgewood,40.69894,-73.90064,Private room,50,7,6,1.84,1,128 +42815,161357125,Staten Island,Emerson Hill,40.61035,-74.11711,Entire home/apt,78,2,11,3.88,3,38 +42816,24831061,Manhattan,Midtown,40.76403,-73.98191,Entire home/apt,275,1,0,,8,0 +42817,24831061,Manhattan,Midtown,40.763909999999996,-73.98071,Private room,250,1,0,,8,0 +42818,161357125,Staten Island,Todt Hill,40.60991,-74.11577,Private room,50,2,6,2.02,3,52 +42819,24831061,Manhattan,Midtown,40.76559,-73.98026,Entire home/apt,275,1,0,,8,0 +42820,248961864,Manhattan,Chinatown,40.71309,-73.99625999999999,Private room,85,1,14,3.93,3,332 +42821,201407513,Brooklyn,Bedford-Stuyvesant,40.67876,-73.91096,Private room,41,2,5,2.08,2,74 +42822,409766,Manhattan,Upper West Side,40.79702,-73.96256,Entire home/apt,144,3,2,2.0,1,0 +42823,214329835,Queens,Ditmars Steinway,40.777609999999996,-73.90919,Private room,69,2,1,1.0,2,349 +42824,143563277,Manhattan,Greenwich Village,40.73592,-73.99601,Entire home/apt,230,1,2,0.57,1,83 +42825,3151,Brooklyn,Clinton Hill,40.69316,-73.96773,Private room,69,1,1,0.67,1,179 +42826,13480762,Brooklyn,Williamsburg,40.71768,-73.94027,Private room,40,1,9,2.84,2,22 +42827,6048212,Manhattan,East Village,40.72958,-73.98569,Entire home/apt,151,3,10,3.0,1,7 +42828,178833771,Manhattan,Harlem,40.82312,-73.93885,Entire home/apt,275,2,1,0.46,3,351 +42829,593135,Manhattan,Greenwich Village,40.72894,-74.00102,Entire home/apt,180,3,8,2.79,1,188 +42830,178833771,Manhattan,Harlem,40.82172,-73.94019,Private room,55,3,2,0.67,3,353 +42831,250374011,Manhattan,West Village,40.73261,-74.01043,Private room,120,2,12,3.91,1,35 +42832,2811538,Manhattan,Little Italy,40.71948,-73.99603,Entire home/apt,350,3,0,,1,90 +42833,83114146,Manhattan,Washington Heights,40.84232,-73.93772,Private room,60,2,8,2.53,1,26 +42834,140630987,Queens,Flushing,40.7603,-73.81428000000001,Private room,75,1,9,2.52,6,204 +42835,250413062,Queens,Long Island City,40.74827,-73.94006,Private room,110,2,14,4.57,1,112 +42836,217482038,Manhattan,Upper East Side,40.76258,-73.96809,Private room,129,3,4,3.08,3,15 +42837,217482038,Manhattan,Upper East Side,40.76178,-73.96653,Private room,129,3,1,1.0,3,0 +42838,204221927,Brooklyn,Bedford-Stuyvesant,40.68716,-73.94241,Private room,55,2,6,3.53,1,89 +42839,21686560,Manhattan,Upper East Side,40.773990000000005,-73.9461,Private room,217,1,6,1.94,1,242 +42840,137358866,Manhattan,Harlem,40.81212,-73.94341,Private room,37,30,0,,103,223 +42841,181092484,Manhattan,Lower East Side,40.72082,-73.9879,Entire home/apt,299,1,1,0.54,3,217 +42842,1760549,Brooklyn,Canarsie,40.635670000000005,-73.91296,Entire home/apt,120,2,11,4.12,1,52 +42843,28940517,Manhattan,East Village,40.73284,-73.9865,Private room,65,30,0,,1,38 +42844,5325489,Brooklyn,Sunset Park,40.64997,-74.00626,Entire home/apt,135,2,9,5.19,1,266 +42845,18883243,Brooklyn,Williamsburg,40.71937,-73.9549,Private room,75,14,1,0.67,1,0 +42846,15101609,Brooklyn,Park Slope,40.675909999999995,-73.97689,Entire home/apt,700,3,0,,1,239 +42847,250512369,Manhattan,Upper West Side,40.774770000000004,-73.97958,Private room,159,1,7,2.56,1,302 +42848,250514925,Brooklyn,Red Hook,40.67635,-74.01133,Entire home/apt,100,1,2,1.67,1,13 +42849,105763296,Manhattan,Upper East Side,40.78423,-73.94785999999999,Entire home/apt,100,5,8,3.24,1,270 +42850,247815136,Manhattan,Financial District,40.7071,-74.01556,Entire home/apt,300,2,0,,1,365 +42851,105762561,Queens,Jamaica,40.69008,-73.78667,Private room,85,2,12,3.56,3,330 +42852,248472625,Brooklyn,Bushwick,40.68929,-73.9216,Private room,45,14,1,0.73,1,67 +42853,96240355,Brooklyn,Bedford-Stuyvesant,40.67969,-73.90923000000001,Private room,75,2,9,2.62,1,0 +42854,44731956,Manhattan,Chelsea,40.74147,-73.99908,Private room,100,4,0,,1,0 +42855,2517810,Brooklyn,Bedford-Stuyvesant,40.686890000000005,-73.93344,Private room,45,2,7,2.41,1,82 +42856,2522815,Brooklyn,Sunset Park,40.664,-73.99233000000001,Entire home/apt,135,2,4,4.0,2,296 +42857,6307153,Queens,Sunnyside,40.746359999999996,-73.91748,Entire home/apt,71,2,5,3.19,1,0 +42858,239660813,Manhattan,Hell's Kitchen,40.75833,-73.99516,Private room,210,1,0,,10,333 +42859,24204269,Brooklyn,Prospect Heights,40.67953,-73.97334000000001,Private room,70,20,1,0.49,1,0 +42860,555245,Manhattan,East Village,40.72808,-73.98273,Entire home/apt,165,1,4,2.61,1,97 +42861,227195925,Queens,Howard Beach,40.65278,-73.84289,Entire home/apt,165,1,0,,1,323 +42862,250580779,Staten Island,"Bay Terrace, Staten Island",40.55105,-74.1366,Entire home/apt,55,30,2,0.82,1,0 +42863,239660813,Manhattan,Hell's Kitchen,40.76027,-73.99682,Private room,209,1,0,,10,333 +42864,233881237,Brooklyn,Fort Greene,40.68562,-73.96977,Entire home/apt,125,3,4,1.67,1,48 +42865,239660813,Manhattan,Hell's Kitchen,40.75955,-73.99667,Private room,794,1,0,,10,200 +42866,239660813,Manhattan,Hell's Kitchen,40.76019,-73.99524,Private room,146,1,0,,10,314 +42867,239660813,Manhattan,Hell's Kitchen,40.75842,-73.99609,Private room,197,1,1,0.57,10,342 +42868,239660813,Manhattan,Hell's Kitchen,40.75893,-73.99485,Private room,297,1,0,,10,311 +42869,239660813,Manhattan,Hell's Kitchen,40.75796,-73.99625,Private room,166,1,1,0.43,10,345 +42870,239660813,Manhattan,Hell's Kitchen,40.75796,-73.99521999999999,Private room,166,1,0,,10,343 +42871,239660813,Manhattan,Hell's Kitchen,40.75885,-73.99595,Private room,135,1,0,,10,275 +42872,239660813,Manhattan,Hell's Kitchen,40.76034,-73.99638,Private room,500,1,1,1.0,10,305 +42873,1307197,Brooklyn,East Flatbush,40.66039,-73.93034,Private room,90,1,2,0.97,1,0 +42874,17247001,Brooklyn,Crown Heights,40.677040000000005,-73.95957,Entire home/apt,140,1,3,1.58,1,13 +42875,1825325,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94494,Entire home/apt,80,90,0,,1,41 +42876,90294445,Brooklyn,Williamsburg,40.70865,-73.94507,Entire home/apt,200,4,0,,2,4 +42877,18254321,Manhattan,Hell's Kitchen,40.756170000000004,-73.99824,Private room,200,4,1,0.41,1,22 +42878,6082769,Brooklyn,Greenpoint,40.7359,-73.95909,Entire home/apt,250,14,0,,1,83 +42879,209569701,Queens,Long Island City,40.75464,-73.94107,Entire home/apt,190,4,7,2.56,1,255 +42880,113251277,Manhattan,Kips Bay,40.74225,-73.97943000000001,Shared room,35,2,2,0.59,2,353 +42881,45467925,Brooklyn,Gowanus,40.66791,-73.99354,Entire home/apt,125,5,7,2.23,1,70 +42882,250739581,Manhattan,East Village,40.72345,-73.98151999999999,Entire home/apt,280,1,8,2.4,1,325 +42883,141124307,Brooklyn,Bedford-Stuyvesant,40.685790000000004,-73.9358,Entire home/apt,249,3,12,4.19,1,38 +42884,250759662,Manhattan,Greenwich Village,40.72779,-73.99882,Entire home/apt,200,4,14,3.96,1,323 +42885,169619135,Manhattan,Chelsea,40.74825,-73.99542,Private room,75,4,0,,1,0 +42886,159676587,Manhattan,East Harlem,40.79668,-73.93434,Private room,124,1,7,2.28,2,155 +42887,5258749,Manhattan,Chelsea,40.74197,-73.99703000000001,Entire home/apt,120,5,13,5.0,2,14 +42888,159676587,Manhattan,East Harlem,40.79781,-73.93599,Private room,125,1,8,2.7,2,117 +42889,250771864,Manhattan,Upper West Side,40.80131,-73.96596,Private room,37,50,0,,1,1 +42890,250841016,Bronx,Norwood,40.87275,-73.87978000000001,Private room,58,5,0,,1,180 +42891,747681,Manhattan,Midtown,40.76446,-73.98123000000001,Private room,95,3,1,1.0,1,5 +42892,2236212,Brooklyn,Bedford-Stuyvesant,40.678670000000004,-73.93723,Private room,100,2,0,,2,89 +42893,50741398,Manhattan,Upper West Side,40.8003,-73.96436,Private room,105,1,8,2.4,4,0 +42894,2196083,Brooklyn,Williamsburg,40.71699,-73.96167,Entire home/apt,214,3,6,1.94,1,32 +42895,215556105,Queens,Flushing,40.76695,-73.81638000000001,Entire home/apt,250,7,0,,3,174 +42896,250896604,Manhattan,Washington Heights,40.85487,-73.92759000000001,Private room,32,2,26,8.48,1,280 +42897,250911060,Manhattan,East Harlem,40.79583,-73.93328000000001,Entire home/apt,160,1,11,5.59,1,21 +42898,193954973,Brooklyn,Williamsburg,40.71547,-73.95147,Entire home/apt,165,3,5,1.97,3,272 +42899,10533936,Manhattan,Chelsea,40.743,-74.00135999999999,Entire home/apt,300,2,2,1.22,1,363 +42900,151780315,Queens,Ditmars Steinway,40.78096,-73.91282,Private room,70,2,0,,1,0 +42901,25476420,Brooklyn,Fort Greene,40.694379999999995,-73.9712,Private room,51,12,0,,1,44 +42902,24979023,Bronx,Concourse Village,40.83251,-73.91216999999999,Private room,85,1,0,,1,365 +42903,52818583,Brooklyn,Bedford-Stuyvesant,40.68797,-73.95439,Private room,75,1,21,7.5,1,114 +42904,15807180,Manhattan,Upper West Side,40.7852,-73.9714,Private room,111,2,8,2.58,3,344 +42905,131057988,Brooklyn,Williamsburg,40.71419,-73.94138000000001,Private room,150,2,7,2.66,1,48 +42906,217803139,Manhattan,Upper West Side,40.78687,-73.97428000000001,Entire home/apt,175,2,1,0.68,1,2 +42907,250968889,Manhattan,Upper West Side,40.77884,-73.98591,Entire home/apt,180,5,7,2.5,1,10 +42908,250969026,Manhattan,Harlem,40.81323,-73.9422,Entire home/apt,165,1,8,2.58,1,53 +42909,15822432,Manhattan,Hell's Kitchen,40.75908,-73.9938,Entire home/apt,395,5,4,2.73,1,167 +42910,106159574,Brooklyn,Williamsburg,40.70694,-73.94176,Private room,90,2,3,0.9,1,0 +42911,922056,Brooklyn,Bedford-Stuyvesant,40.68073,-73.95749,Private room,52,180,0,,1,85 +42912,156158778,Manhattan,East Village,40.72905,-73.97797,Entire home/apt,1145,1,0,,12,0 +42913,1036179,Brooklyn,Crown Heights,40.67318,-73.95566,Entire home/apt,225,4,4,1.29,1,11 +42914,13506708,Manhattan,East Harlem,40.7854,-73.94981,Entire home/apt,250,2,3,0.97,1,188 +42915,156158778,Manhattan,SoHo,40.72525,-74.00142,Entire home/apt,1306,1,0,,12,23 +42916,85518733,Queens,Long Island City,40.746970000000005,-73.94131,Entire home/apt,135,4,0,,1,0 +42917,98056984,Brooklyn,Williamsburg,40.708040000000004,-73.94868000000001,Entire home/apt,150,5,2,0.67,1,0 +42918,248161322,Brooklyn,Bushwick,40.700309999999995,-73.94077,Shared room,35,30,0,,14,311 +42919,13480762,Brooklyn,Williamsburg,40.7185,-73.93964,Private room,40,1,14,4.57,2,26 +42920,3165356,Brooklyn,Greenpoint,40.72023,-73.94355,Entire home/apt,336,2,9,5.87,1,97 +42921,246331794,Manhattan,Murray Hill,40.7476,-73.97632,Entire home/apt,320,1,5,1.72,2,236 +42922,68930822,Manhattan,Upper East Side,40.76218,-73.95858,Entire home/apt,150,3,13,4.24,1,61 +42923,89068125,Manhattan,East Harlem,40.79755,-73.94413,Entire home/apt,250,1,1,0.43,1,0 +42924,97328229,Bronx,Clason Point,40.80771,-73.85204,Private room,46,2,3,1.13,1,179 +42925,16098958,Manhattan,Midtown,40.751909999999995,-73.9698,Entire home/apt,140,30,0,,96,311 +42926,63160119,Manhattan,Harlem,40.81749,-73.93875,Private room,75,1,13,5.27,1,74 +42927,215556105,Queens,Flushing,40.767340000000004,-73.81789,Private room,60,1,3,0.96,3,84 +42928,23913300,Brooklyn,Williamsburg,40.71158,-73.96696999999999,Entire home/apt,400,1,1,0.46,2,89 +42929,27624437,Manhattan,Hell's Kitchen,40.765809999999995,-73.98745,Entire home/apt,208,10,1,0.61,1,170 +42930,224850313,Brooklyn,Sheepshead Bay,40.58692,-73.94235,Private room,79,30,0,,2,216 +42931,16083192,Manhattan,Upper West Side,40.779070000000004,-73.98684,Entire home/apt,208,3,0,,1,150 +42932,8993896,Brooklyn,Fort Greene,40.68887,-73.97021,Private room,72,1,8,3.93,2,0 +42933,5288991,Manhattan,Upper East Side,40.778859999999995,-73.95139,Private room,90,7,1,0.67,6,0 +42934,33151563,Queens,Flushing,40.763529999999996,-73.82381,Entire home/apt,70,2,1,0.38,2,0 +42935,147983579,Brooklyn,Bedford-Stuyvesant,40.689009999999996,-73.94031,Entire home/apt,220,4,6,2.9,2,230 +42936,177396569,Manhattan,Hell's Kitchen,40.76207,-73.99098000000001,Entire home/apt,200,4,3,1.15,3,127 +42937,24761711,Brooklyn,Kensington,40.64714,-73.98106999999999,Entire home/apt,525,5,0,,2,42 +42938,50321289,Brooklyn,Bedford-Stuyvesant,40.681999999999995,-73.95681,Entire home/apt,140,2,4,1.58,3,4 +42939,75760509,Brooklyn,Gravesend,40.60245,-73.9814,Entire home/apt,80,2,3,1.03,1,16 +42940,5708402,Brooklyn,East New York,40.66706,-73.86780999999999,Entire home/apt,95,2,0,,1,149 +42941,209553776,Brooklyn,Crown Heights,40.67023,-73.9567,Entire home/apt,65,2,6,1.94,1,4 +42942,214738765,Queens,Richmond Hill,40.69668,-73.83138000000001,Private room,75,1,31,9.21,3,89 +42943,117792931,Manhattan,Upper East Side,40.78075,-73.95108,Entire home/apt,125,4,12,3.96,1,0 +42944,215556105,Queens,Flushing,40.76699,-73.81636,Private room,75,1,10,3.13,3,89 +42945,251296793,Brooklyn,Bushwick,40.70087,-73.93904,Shared room,35,30,0,,4,0 +42946,251296793,Brooklyn,Bushwick,40.70115,-73.93930999999999,Shared room,35,30,0,,4,0 +42947,14810989,Queens,Woodside,40.74402,-73.89698,Private room,55,5,8,2.86,1,162 +42948,251296793,Brooklyn,Bushwick,40.69995,-73.93884,Private room,64,30,0,,4,0 +42949,251166866,Queens,Astoria,40.76027,-73.90768,Private room,60,1,6,1.91,1,323 +42950,221213143,Manhattan,SoHo,40.71953,-74.00064,Entire home/apt,450,2,3,1.13,9,361 +42951,244171850,Queens,Ridgewood,40.70154,-73.90751999999999,Private room,47,30,0,,10,365 +42952,239650062,Brooklyn,Williamsburg,40.71178,-73.94256999999999,Entire home/apt,163,7,2,0.79,1,263 +42953,244171850,Queens,Ridgewood,40.70302,-73.9063,Private room,47,30,0,,10,365 +42954,4094038,Brooklyn,Williamsburg,40.71157,-73.94055,Private room,75,2,4,2.11,4,0 +42955,1692538,Manhattan,Washington Heights,40.85476,-73.93094,Private room,196,1,6,3.53,5,336 +42956,1692538,Manhattan,Washington Heights,40.854820000000004,-73.93137,Entire home/apt,174,1,6,1.88,5,324 +42957,251318098,Brooklyn,Navy Yard,40.70234,-73.97954,Entire home/apt,295,2,1,0.32,1,0 +42958,242175033,Bronx,Allerton,40.86003,-73.86584,Entire home/apt,60,1,28,8.32,1,74 +42959,7230979,Brooklyn,Williamsburg,40.71867,-73.96163,Private room,100,2,1,0.59,1,44 +42960,251331500,Brooklyn,Bushwick,40.70632,-73.91875999999999,Entire home/apt,199,1,5,1.46,1,178 +42961,244171850,Queens,Ridgewood,40.701029999999996,-73.90613,Private room,47,30,0,,10,365 +42962,55782090,Manhattan,Upper East Side,40.78378,-73.95606,Entire home/apt,105,31,0,,2,249 +42963,12593328,Brooklyn,East Flatbush,40.64627,-73.93164,Private room,50,3,3,1.05,3,0 +42964,250928371,Brooklyn,Bedford-Stuyvesant,40.69644,-73.94113,Private room,100,1,0,,1,359 +42965,251350235,Manhattan,West Village,40.73753,-74.00882,Entire home/apt,595,2,7,2.28,1,80 +42966,1842737,Manhattan,Chelsea,40.74477,-74.00622,Entire home/apt,185,2,5,1.69,1,137 +42967,43330303,Bronx,Fordham,40.85394,-73.89641,Private room,35,5,3,1.2,2,62 +42968,114461769,Brooklyn,Bedford-Stuyvesant,40.69647,-73.94248,Private room,70,5,0,,1,37 +42969,27445710,Brooklyn,Flatbush,40.64582,-73.96479000000001,Entire home/apt,80,1,1,0.29,1,0 +42970,706037,Brooklyn,Greenpoint,40.72988,-73.95789,Entire home/apt,210,10,0,,1,83 +42971,219891232,Queens,Elmhurst,40.74326,-73.88911999999999,Private room,45,2,16,5.05,1,32 +42972,251368944,Brooklyn,Williamsburg,40.71938,-73.95736,Entire home/apt,110,3,8,2.79,1,0 +42973,24201188,Queens,Astoria,40.75967,-73.91601999999999,Entire home/apt,109,14,1,1.0,2,52 +42974,16155254,Manhattan,East Village,40.73063,-73.98321999999999,Entire home/apt,180,1,5,1.47,4,20 +42975,30532557,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92843,Private room,39,30,0,,5,145 +42976,1499286,Manhattan,Hell's Kitchen,40.76303,-73.99225,Entire home/apt,245,5,8,3.24,2,13 +42977,15488551,Brooklyn,Williamsburg,40.7045,-73.94357,Entire home/apt,150,6,5,2.17,1,40 +42978,251413755,Queens,Flushing,40.7384,-73.83051999999999,Entire home/apt,132,30,0,,1,342 +42979,69095594,Manhattan,East Harlem,40.78593,-73.94292,Entire home/apt,139,2,3,0.89,1,74 +42980,251418685,Manhattan,Midtown,40.7531,-73.96986,Entire home/apt,130,4,2,0.75,1,63 +42981,12220,Manhattan,Upper West Side,40.77859,-73.98481,Private room,228,1,3,0.96,3,341 +42982,12220,Manhattan,Upper West Side,40.777570000000004,-73.98579000000001,Entire home/apt,236,1,4,1.46,3,341 +42983,203569485,Brooklyn,Flatbush,40.634809999999995,-73.95926999999999,Private room,70,1,0,,1,311 +42984,251430918,Manhattan,Hell's Kitchen,40.76616,-73.98611,Private room,97,2,10,3.85,2,77 +42985,187822288,Queens,East Elmhurst,40.77069,-73.87286,Private room,55,1,27,8.44,5,171 +42986,98862249,Brooklyn,Williamsburg,40.70429,-73.94894000000001,Private room,150,1,0,,1,89 +42987,6206040,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93038,Private room,49,2,6,2.17,8,226 +42988,6206040,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93068000000001,Private room,49,2,8,2.93,8,250 +42989,819759,Brooklyn,Bushwick,40.68628,-73.90895,Private room,65,5,5,1.97,1,64 +42990,104960784,Brooklyn,Bushwick,40.689890000000005,-73.90446999999999,Private room,50,3,1,0.33,1,0 +42991,251468079,Brooklyn,Williamsburg,40.71573,-73.93887,Entire home/apt,110,4,5,2.63,1,1 +42992,208136645,Brooklyn,East Flatbush,40.65587,-73.94187,Private room,45,3,0,,4,332 +42993,6206040,Brooklyn,Bedford-Stuyvesant,40.6914,-73.93046,Private room,49,2,11,4.23,8,254 +42994,251530232,Bronx,Pelham Gardens,40.863040000000005,-73.84559,Entire home/apt,150,1,4,2.07,1,78 +42995,187822288,Queens,East Elmhurst,40.769459999999995,-73.87138,Private room,55,1,24,7.13,5,168 +42996,251378476,Manhattan,East Harlem,40.80622,-73.94171,Entire home/apt,195,2,10,3.75,1,0 +42997,248314431,Manhattan,Upper West Side,40.79658,-73.96118,Private room,75,1,8,2.64,2,75 +42998,187822288,Queens,East Elmhurst,40.770509999999994,-73.87344,Private room,55,1,22,6.47,5,162 +42999,251510391,Manhattan,Hell's Kitchen,40.764590000000005,-73.9888,Shared room,59,1,10,2.91,3,358 +43000,251510391,Manhattan,Hell's Kitchen,40.76251,-73.98871,Shared room,59,1,7,2.04,3,362 +43001,187822288,Queens,East Elmhurst,40.77102,-73.87286999999999,Private room,55,1,42,12.12,5,153 +43002,251545269,Manhattan,Financial District,40.70613,-74.01583000000001,Entire home/apt,135,35,0,,1,105 +43003,14563618,Manhattan,West Village,40.7366,-74.00619,Entire home/apt,248,7,0,,1,0 +43004,111807108,Manhattan,Midtown,40.745259999999995,-73.98163000000001,Private room,48,30,1,0.75,1,0 +43005,9028198,Manhattan,Upper West Side,40.80273,-73.96386,Entire home/apt,300,1,4,1.4,1,4 +43006,251578356,Brooklyn,Sheepshead Bay,40.60165,-73.96299,Private room,55,1,3,1.15,1,0 +43007,71276635,Manhattan,Washington Heights,40.8357,-73.94234,Entire home/apt,560,1,1,0.31,5,335 +43008,6206040,Brooklyn,Bedford-Stuyvesant,40.69182,-73.92859,Private room,52,2,9,3.42,8,268 +43009,16105313,Manhattan,Midtown,40.744820000000004,-73.98366999999999,Entire home/apt,5100,30,1,1.0,2,343 +43010,25073781,Manhattan,East Harlem,40.805640000000004,-73.94198,Private room,65,2,15,5.29,2,292 +43011,30751157,Queens,Ridgewood,40.69945,-73.90771,Private room,89,3,4,1.88,1,68 +43012,145727343,Queens,Jamaica,40.683240000000005,-73.79169,Private room,39,1,4,1.45,3,157 +43013,61391963,Manhattan,Upper West Side,40.78536,-73.97543,Entire home/apt,133,30,0,,91,312 +43014,50375092,Staten Island,Dongan Hills,40.57857,-74.09151999999999,Private room,65,1,9,2.62,3,35 +43015,139712252,Brooklyn,Crown Heights,40.66652,-73.93167,Entire home/apt,150,3,6,2.17,1,313 +43016,5144567,Manhattan,Financial District,40.705690000000004,-74.00403,Private room,169,7,1,0.53,13,365 +43017,5144567,Manhattan,Financial District,40.7065,-74.00503,Private room,169,7,1,0.65,13,365 +43018,35881969,Brooklyn,Williamsburg,40.70426,-73.94542,Private room,70,1,13,5.13,2,76 +43019,5144567,Manhattan,Financial District,40.70832,-74.00755,Private room,169,7,1,0.57,13,358 +43020,251625546,Brooklyn,Brownsville,40.66815,-73.92169,Private room,65,1,9,2.93,2,320 +43021,5144567,Manhattan,Financial District,40.70969,-74.00575,Private room,169,7,0,,13,365 +43022,3400827,Manhattan,Upper West Side,40.79595,-73.97485,Entire home/apt,380,3,2,0.74,1,0 +43023,29420917,Manhattan,Greenwich Village,40.72882,-74.00089,Entire home/apt,300,2,6,3.16,1,16 +43024,251638751,Brooklyn,Park Slope,40.67946,-73.97497,Entire home/apt,120,1,5,2.42,1,8 +43025,251640733,Queens,Glendale,40.70467,-73.86108,Entire home/apt,200,10,3,0.93,1,178 +43026,251564307,Manhattan,Hell's Kitchen,40.76325,-73.98592,Entire home/apt,285,3,3,1.8,1,215 +43027,2019135,Brooklyn,Bedford-Stuyvesant,40.68114,-73.92065,Entire home/apt,175,3,4,1.36,1,26 +43028,5144567,Manhattan,Financial District,40.711,-74.00883,Private room,169,7,4,1.97,13,323 +43029,236355800,Queens,Forest Hills,40.72755,-73.85028,Private room,60,2,2,0.77,1,0 +43030,220125576,Queens,Ozone Park,40.68042,-73.85515,Entire home/apt,70,3,1,0.3,3,53 +43031,5144567,Manhattan,Financial District,40.71086,-74.00746,Private room,169,7,2,0.95,13,358 +43032,5144567,Manhattan,Financial District,40.70712,-74.00609,Private room,169,7,2,0.81,13,344 +43033,5144567,Manhattan,Financial District,40.708420000000004,-74.00519,Private room,169,7,1,1.0,13,358 +43034,25604908,Brooklyn,Williamsburg,40.71606,-73.94093000000001,Private room,70,7,0,,1,13 +43035,5144567,Manhattan,Financial District,40.70922,-74.00571,Private room,169,7,0,,13,365 +43036,5144567,Manhattan,Financial District,40.70599,-74.00503,Private room,169,7,1,1.0,13,365 +43037,224317184,Manhattan,Inwood,40.862590000000004,-73.92728000000001,Private room,90,3,2,0.97,8,282 +43038,224317184,Manhattan,Inwood,40.862140000000004,-73.92708,Private room,90,3,1,0.86,8,252 +43039,224317184,Manhattan,Inwood,40.862559999999995,-73.92886999999999,Private room,90,3,1,0.6,8,258 +43040,224317184,Manhattan,Inwood,40.863640000000004,-73.92835,Private room,90,3,4,1.85,8,237 +43041,251704655,Bronx,Port Morris,40.8027,-73.91563000000001,Entire home/apt,109,2,9,3.42,3,50 +43042,105632711,Manhattan,Hell's Kitchen,40.76088,-73.99081,Entire home/apt,144,1,25,7.98,1,12 +43043,61391963,Manhattan,Midtown,40.75577,-73.96727,Entire home/apt,142,30,0,,91,310 +43044,21894419,Manhattan,Financial District,40.709559999999996,-74.00713,Private room,250,1,0,,2,292 +43045,251296793,Brooklyn,Bushwick,40.701029999999996,-73.93979,Private room,80,30,1,0.46,4,364 +43046,6206040,Brooklyn,Bedford-Stuyvesant,40.6918,-73.93028000000001,Private room,58,2,14,5.19,8,261 +43047,4669488,Brooklyn,Bedford-Stuyvesant,40.69103,-73.92719,Private room,50,3,1,0.36,2,127 +43048,240217000,Brooklyn,Bedford-Stuyvesant,40.68523,-73.9384,Entire home/apt,89,1,2,0.92,1,194 +43049,136028350,Manhattan,Harlem,40.82868,-73.94678,Entire home/apt,159,1,5,1.72,2,44 +43050,10149317,Queens,Kew Gardens,40.71134,-73.8279,Private room,60,3,11,4.34,5,318 +43051,9625116,Manhattan,East Harlem,40.79889,-73.9393,Entire home/apt,160,90,0,,1,140 +43052,8877881,Brooklyn,Williamsburg,40.71105,-73.96748000000001,Entire home/apt,499,4,0,,1,0 +43053,251781156,Bronx,Tremont,40.84581,-73.8889,Shared room,25,2,5,1.6,1,146 +43054,51419167,Manhattan,Murray Hill,40.746359999999996,-73.97561,Private room,120,1,5,3.33,1,55 +43055,117536647,Manhattan,East Harlem,40.80022,-73.94185,Entire home/apt,124,1,13,5.06,1,86 +43056,10149317,Queens,Kew Gardens,40.71042,-73.82911999999999,Private room,70,5,6,2.54,5,308 +43057,1192659,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92898000000001,Private room,70,4,0,,3,12 +43058,136028350,Manhattan,Harlem,40.82775,-73.94667,Entire home/apt,127,1,8,2.79,2,13 +43059,251817531,Brooklyn,Bedford-Stuyvesant,40.689209999999996,-73.95424,Private room,69,2,6,4.62,4,279 +43060,178676648,Brooklyn,Bushwick,40.68355,-73.90701,Private room,150,1,1,0.38,1,88 +43061,194856554,Brooklyn,Williamsburg,40.720690000000005,-73.95829,Entire home/apt,295,2,9,2.9,1,3 +43062,148108,Manhattan,Lower East Side,40.72121,-73.9909,Entire home/apt,800,1,1,0.59,2,364 +43063,251817021,Manhattan,Hell's Kitchen,40.76632,-73.98597,Shared room,95,1,8,2.38,5,23 +43064,247189581,Brooklyn,Fort Greene,40.68528,-73.97285,Shared room,32,2,6,1.78,5,31 +43065,23020619,Manhattan,West Village,40.73587,-74.0043,Private room,70,2,3,1.22,2,128 +43066,219738858,Manhattan,Lower East Side,40.7204,-73.98371,Entire home/apt,180,30,5,1.76,5,193 +43067,6080376,Brooklyn,Williamsburg,40.71322,-73.94655,Private room,74,1,18,5.4,1,49 +43068,17555570,Brooklyn,Crown Heights,40.668890000000005,-73.92376,Private room,49,1,23,7.04,12,48 +43069,22222260,Manhattan,Harlem,40.81824,-73.93831999999999,Private room,81,4,4,1.3,2,291 +43070,230831241,Manhattan,Hell's Kitchen,40.76395,-73.99075,Entire home/apt,898,2,5,3.13,1,294 +43071,172369331,Brooklyn,Coney Island,40.57776,-73.98313,Shared room,25,3,2,1.05,10,0 +43072,251839479,Bronx,Longwood,40.8279,-73.90516,Private room,100,2,2,2.0,2,345 +43073,160754766,Manhattan,SoHo,40.72506,-74.00876,Entire home/apt,230,3,2,0.82,1,0 +43074,59156312,Queens,Woodhaven,40.68727,-73.86413,Private room,59,3,4,1.88,9,361 +43075,66959637,Queens,Ridgewood,40.70557,-73.90713000000001,Private room,55,7,0,,2,290 +43076,21749637,Brooklyn,Bedford-Stuyvesant,40.685990000000004,-73.93005,Entire home/apt,100,1,5,1.58,1,0 +43077,251852817,Manhattan,East Harlem,40.80093,-73.94322,Shared room,45,1,19,5.64,7,90 +43078,17450152,Manhattan,Hell's Kitchen,40.76389,-73.98872,Private room,138,1,8,2.79,5,95 +43079,215891351,Brooklyn,Bushwick,40.70065,-73.92378000000001,Private room,60,2,13,3.94,2,48 +43080,251859047,Brooklyn,Crown Heights,40.67588,-73.92405,Private room,85,1,9,3.1,3,125 +43081,251852817,Manhattan,East Harlem,40.79922,-73.94187,Shared room,49,1,22,6.53,7,83 +43082,25282730,Manhattan,Harlem,40.80653,-73.94941999999999,Entire home/apt,160,1,15,5.23,1,9 +43083,251852817,Manhattan,East Harlem,40.80073,-73.94328,Shared room,45,1,17,5.1,7,72 +43084,251852817,Manhattan,East Harlem,40.799490000000006,-73.94265,Shared room,60,1,8,2.4,7,90 +43085,251852817,Manhattan,East Harlem,40.799659999999996,-73.94191,Shared room,55,1,13,3.86,7,89 +43086,251852817,Manhattan,East Harlem,40.79885,-73.94304,Shared room,45,1,14,4.16,7,83 +43087,52577963,Queens,Woodhaven,40.694590000000005,-73.85081,Entire home/apt,150,5,0,,6,121 +43088,149080740,Brooklyn,Bedford-Stuyvesant,40.69911,-73.94162,Private room,69,10,1,0.29,1,59 +43089,22028840,Manhattan,Washington Heights,40.860690000000005,-73.92513000000001,Private room,59,4,2,0.67,2,103 +43090,251865256,Manhattan,Morningside Heights,40.80485,-73.96319,Private room,87,1,8,2.5,1,365 +43091,251625546,Brooklyn,Crown Heights,40.66949,-73.92172,Private room,65,1,6,1.91,2,323 +43092,251932107,Brooklyn,Williamsburg,40.716229999999996,-73.9601,Private room,85,2,5,2.38,1,86 +43093,12913455,Manhattan,East Village,40.72656,-73.98758000000001,Entire home/apt,300,2,16,5.78,1,52 +43094,56060787,Brooklyn,Williamsburg,40.70908,-73.95663,Private room,55,1,14,4.47,1,295 +43095,173386569,Manhattan,Gramercy,40.73392,-73.98085,Shared room,70,3,3,1.38,2,0 +43096,251817021,Manhattan,Hell's Kitchen,40.766909999999996,-73.98725999999999,Shared room,95,1,3,1.96,5,23 +43097,251966476,Manhattan,Nolita,40.72394,-73.99583,Entire home/apt,240,1,19,6.13,1,121 +43098,251826717,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9432,Private room,50,3,6,2.77,1,0 +43099,251968645,Brooklyn,Greenpoint,40.733540000000005,-73.95719,Private room,65,1,1,0.35,1,0 +43100,203932958,Manhattan,Lower East Side,40.72044,-73.98335,Entire home/apt,240,3,10,3.23,2,8 +43101,251969263,Queens,Ridgewood,40.70008,-73.89596,Private room,47,1,4,1.38,2,28 +43102,203932958,Manhattan,Lower East Side,40.71922,-73.98514,Private room,120,1,3,0.89,2,11 +43103,251985344,Brooklyn,Bushwick,40.70041,-73.92483,Private room,54,3,0,,1,99 +43104,251986333,Manhattan,Civic Center,40.71626,-74.00256999999999,Private room,200,4,5,1.97,1,327 +43105,214347105,Manhattan,Midtown,40.75277,-73.96594,Entire home/apt,419,4,1,0.58,8,218 +43106,251817021,Manhattan,Hell's Kitchen,40.7667,-73.98692,Shared room,95,1,2,1.3,5,23 +43107,118375653,Manhattan,Two Bridges,40.71099,-73.99441999999999,Private room,150,3,3,2.43,3,4 +43108,84562269,Queens,Queens Village,40.71933,-73.7536,Private room,55,1,1,0.34,2,0 +43109,118375653,Manhattan,Two Bridges,40.71239,-73.99461,Private room,200,3,0,,3,0 +43110,238989521,Queens,Sunnyside,40.73872,-73.92678000000001,Private room,35,30,0,,1,1 +43111,68296703,Brooklyn,Crown Heights,40.67257,-73.94011,Entire home/apt,78,3,3,1.18,1,17 +43112,132099860,Manhattan,East Village,40.72283,-73.98382,Entire home/apt,450,5,0,,1,310 +43113,3073952,Brooklyn,Bedford-Stuyvesant,40.68035,-73.91035,Entire home/apt,167,1,8,4.62,2,80 +43114,149312408,Queens,Astoria,40.76896,-73.92404,Private room,65,1,23,7.26,2,334 +43115,99895085,Brooklyn,Carroll Gardens,40.68374,-73.99368,Private room,88,1,11,3.47,1,85 +43116,50737287,Brooklyn,Bushwick,40.69814,-73.9219,Private room,40,2,1,0.43,1,0 +43117,92411,Manhattan,Harlem,40.82857,-73.95161,Entire home/apt,175,30,0,,1,5 +43118,20182359,Manhattan,Harlem,40.811409999999995,-73.94051,Private room,135,3,7,4.04,1,365 +43119,71878492,Brooklyn,Williamsburg,40.71437,-73.94133000000001,Private room,70,5,3,1.58,1,66 +43120,6410979,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94535,Private room,109,2,1,0.35,2,0 +43121,251817021,Manhattan,Hell's Kitchen,40.76838,-73.98723000000001,Shared room,95,1,4,1.2,5,21 +43122,251817021,Manhattan,Hell's Kitchen,40.76769,-73.98680999999999,Shared room,95,1,4,2.22,5,19 +43123,8112314,Manhattan,Upper West Side,40.78399,-73.9733,Private room,65,1,4,2.03,2,364 +43124,35528708,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94787,Private room,50,1,1,0.81,2,0 +43125,35528708,Brooklyn,Bedford-Stuyvesant,40.69615,-73.9474,Private room,56,1,4,1.2,2,0 +43126,32942122,Brooklyn,Williamsburg,40.70921,-73.9426,Entire home/apt,125,2,1,1.0,1,22 +43127,252118553,Manhattan,East Village,40.72191,-73.97869,Entire home/apt,160,2,4,1.54,1,33 +43128,148725429,Brooklyn,Bushwick,40.68942,-73.91714,Entire home/apt,99,2,17,6.07,2,300 +43129,172422032,Brooklyn,Williamsburg,40.7136,-73.96221,Private room,120,7,0,,1,235 +43130,683230,Manhattan,Upper East Side,40.76725,-73.95864,Private room,950,3,11,4.23,3,251 +43131,5421086,Manhattan,Harlem,40.822540000000004,-73.9501,Entire home/apt,110,30,0,,1,102 +43132,75999185,Brooklyn,Bushwick,40.6916,-73.90713000000001,Private room,45,1,6,5.0,1,337 +43133,252163238,Brooklyn,Williamsburg,40.719120000000004,-73.94296,Entire home/apt,327,2,7,3.0,1,49 +43134,252168489,Queens,Jamaica Hills,40.71022,-73.79665,Entire home/apt,110,2,8,3.16,1,81 +43135,252171508,Queens,Jamaica,40.67282,-73.77793,Entire home/apt,190,1,16,10.0,1,132 +43136,36800675,Queens,Jamaica,40.68462,-73.77582,Entire home/apt,120,3,9,3.14,1,44 +43137,19931875,Manhattan,Inwood,40.867740000000005,-73.92401,Entire home/apt,99,5,3,1.3,3,271 +43138,252181650,Manhattan,Chinatown,40.71543,-73.99323000000001,Entire home/apt,350,1,18,5.74,1,82 +43139,252191305,Queens,Cambria Heights,40.6909,-73.73193,Private room,50,1,34,11.21,1,61 +43140,44969970,Manhattan,Chinatown,40.714040000000004,-73.99085,Private room,80,1,2,1.3,1,172 +43141,19931875,Manhattan,Inwood,40.86804,-73.92429,Private room,57,7,1,1.0,3,225 +43142,57158173,Brooklyn,Midwood,40.61186,-73.96955,Private room,38,3,1,1.0,1,0 +43143,10421091,Manhattan,Upper West Side,40.78232,-73.97575,Entire home/apt,140,30,1,0.42,1,74 +43144,231138233,Manhattan,East Harlem,40.78974,-73.94933,Entire home/apt,165,1,17,5.93,5,83 +43145,33388853,Manhattan,Harlem,40.8309,-73.94308000000001,Entire home/apt,200,60,0,,1,219 +43146,1413658,Brooklyn,Fort Greene,40.68991,-73.97352,Entire home/apt,750,4,13,4.06,1,179 +43147,44129118,Manhattan,Financial District,40.70997,-74.00816,Private room,150,4,0,,2,0 +43148,231138233,Manhattan,East Harlem,40.79,-73.94964,Entire home/apt,165,1,16,6.0,5,56 +43149,13206448,Manhattan,Upper West Side,40.79908,-73.96465,Private room,50,7,2,0.6,1,283 +43150,175152790,Manhattan,Midtown,40.745670000000004,-73.98478,Private room,65,1,14,4.72,1,0 +43151,95892016,Manhattan,East Village,40.72503,-73.98465999999999,Private room,125,1,3,0.95,5,318 +43152,252019224,Queens,Jamaica Estates,40.71668,-73.80588,Entire home/apt,250,1,13,4.15,1,359 +43153,247171817,Queens,Sunnyside,40.74685,-73.91586,Private room,50,1,1,0.32,1,66 +43154,72855892,Brooklyn,Bedford-Stuyvesant,40.681709999999995,-73.92858000000001,Entire home/apt,115,1,19,6.55,1,74 +43155,7050972,Brooklyn,Williamsburg,40.706579999999995,-73.9463,Private room,70,2,0,,1,0 +43156,17407539,Brooklyn,Bedford-Stuyvesant,40.68782,-73.94327,Private room,40,14,1,0.32,1,35 +43157,95892016,Manhattan,East Village,40.727129999999995,-73.98402,Private room,80,1,4,1.26,5,318 +43158,26989131,Brooklyn,Gowanus,40.66949,-73.99112,Entire home/apt,85,30,2,1.07,1,100 +43159,21877010,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.95926,Entire home/apt,120,4,3,1.15,1,0 +43160,4977373,Manhattan,Tribeca,40.72078,-74.00726,Entire home/apt,300,4,5,2.88,1,20 +43161,95892016,Manhattan,East Village,40.7272,-73.98288000000001,Private room,260,1,0,,5,317 +43162,2093557,Brooklyn,Bushwick,40.70149,-73.92752,Private room,80,1,4,1.79,2,22 +43163,252356839,Manhattan,Harlem,40.82802,-73.94481,Entire home/apt,74,3,1,0.32,2,0 +43164,186621582,Manhattan,Washington Heights,40.855129999999996,-73.93305,Private room,60,3,5,1.95,1,20 +43165,234270791,Brooklyn,Bushwick,40.69627,-73.93075999999999,Private room,100,5,2,0.7,3,94 +43166,27947449,Bronx,Parkchester,40.837579999999996,-73.85804,Private room,47,1,4,1.9,2,167 +43167,3208908,Brooklyn,Park Slope,40.680679999999995,-73.97938,Entire home/apt,245,3,3,1.29,1,35 +43168,249412015,Bronx,Bronxdale,40.85464,-73.8672,Entire home/apt,75,1,0,,1,0 +43169,252372862,Brooklyn,Park Slope,40.66867,-73.98017,Entire home/apt,135,3,0,,1,23 +43170,175370972,Queens,Flushing,40.7577,-73.83519,Private room,65,1,13,4.06,1,36 +43171,37273247,Queens,Maspeth,40.7289,-73.89803,Entire home/apt,130,2,4,1.88,1,338 +43172,13442714,Manhattan,SoHo,40.72207,-73.99750999999999,Entire home/apt,173,5,2,0.76,2,3 +43173,19392723,Manhattan,East Harlem,40.79463,-73.94604,Entire home/apt,100,2,2,0.7,1,8 +43174,5708673,Brooklyn,Bushwick,40.69934,-73.92947,Entire home/apt,120,4,1,0.41,1,15 +43175,252386106,Manhattan,Upper East Side,40.78045,-73.94688000000001,Private room,105,1,19,6.71,1,9 +43176,251817531,Brooklyn,Bedford-Stuyvesant,40.68913,-73.95639,Private room,72,2,6,4.74,4,316 +43177,251817531,Brooklyn,Bedford-Stuyvesant,40.68868,-73.95623,Private room,79,2,5,4.17,4,351 +43178,19300279,Manhattan,Harlem,40.801190000000005,-73.95749,Entire home/apt,140,11,0,,1,0 +43179,246194760,Queens,East Elmhurst,40.760090000000005,-73.88271,Private room,49,1,15,5.62,4,1 +43180,121431667,Manhattan,Financial District,40.704640000000005,-74.0164,Entire home/apt,134,15,1,1.0,1,2 +43181,107484794,Manhattan,Hell's Kitchen,40.76468,-73.98785,Private room,160,1,22,6.8,1,77 +43182,2363889,Manhattan,Lower East Side,40.71508,-73.97895,Entire home/apt,140,2,7,2.88,1,27 +43183,11740339,Brooklyn,Williamsburg,40.7184,-73.94434,Entire home/apt,120,2,0,,1,0 +43184,247940983,Brooklyn,Flatbush,40.65421,-73.95751,Private room,50,1,3,0.94,1,358 +43185,61940591,Manhattan,Upper East Side,40.772890000000004,-73.94689,Private room,120,1,14,4.88,1,147 +43186,6206040,Brooklyn,Bedford-Stuyvesant,40.69081,-73.93025,Entire home/apt,155,2,10,4.92,8,270 +43187,252432969,Manhattan,Midtown,40.7545,-73.97067,Entire home/apt,260,1,14,4.47,1,139 +43188,252437123,Brooklyn,Sunset Park,40.64849,-74.00277,Entire home/apt,130,2,8,2.55,1,19 +43189,252442970,Brooklyn,Bushwick,40.70151,-73.92293000000001,Private room,70,5,0,,1,0 +43190,251430918,Manhattan,Hell's Kitchen,40.76808,-73.98625,Private room,89,2,11,3.51,2,54 +43191,146275359,Queens,Springfield Gardens,40.688309999999994,-73.75140999999999,Private room,42,3,10,3.09,3,352 +43192,252460693,Manhattan,East Harlem,40.78499,-73.94588,Entire home/apt,159,1,15,5.11,1,152 +43193,163619844,Manhattan,Harlem,40.820040000000006,-73.94622,Private room,70,2,5,1.65,1,1 +43194,24660289,Bronx,Port Morris,40.800740000000005,-73.91574,Private room,50,3,2,0.81,1,350 +43195,160956,Staten Island,St. George,40.64015,-74.08126999999999,Entire home/apt,99,3,4,2.31,1,326 +43196,239952407,Queens,Long Island City,40.759609999999995,-73.93366,Private room,50,5,0,,1,0 +43197,5592151,Manhattan,Stuyvesant Town,40.733509999999995,-73.97798,Entire home/apt,130,60,0,,1,243 +43198,252535164,Queens,Woodside,40.74239,-73.9018,Entire home/apt,99,3,9,2.93,1,236 +43199,73227284,Queens,Astoria,40.7577,-73.91728,Private room,60,2,6,1.94,1,333 +43200,20555097,Brooklyn,Bedford-Stuyvesant,40.682109999999994,-73.92695,Private room,90,5,2,0.76,2,71 +43201,252545388,Manhattan,Upper West Side,40.77112,-73.98964000000001,Entire home/apt,1000,31,0,,1,103 +43202,251762237,Manhattan,NoHo,40.72493,-73.99318000000001,Entire home/apt,106,7,2,0.94,1,3 +43203,3259045,Queens,Astoria,40.75744,-73.91839,Entire home/apt,115,30,1,0.77,1,311 +43204,30870512,Queens,Elmhurst,40.72688,-73.87861,Private room,38,1,6,2.34,1,36 +43205,58762277,Manhattan,Hell's Kitchen,40.76695,-73.99103000000001,Private room,69,4,0,,1,57 +43206,29470566,Queens,Astoria,40.767990000000005,-73.90995,Private room,65,1,6,1.96,1,31 +43207,855437,Brooklyn,Prospect-Lefferts Gardens,40.66277,-73.9574,Private room,75,2,7,3.23,1,111 +43208,7130003,Manhattan,East Village,40.723440000000004,-73.98479,Entire home/apt,250,30,0,,2,221 +43209,23022462,Manhattan,East Village,40.7299,-73.98979,Entire home/apt,275,3,2,0.7,1,123 +43210,252590512,Staten Island,New Brighton,40.64098,-74.0935,Entire home/apt,249,2,8,2.58,1,241 +43211,229489983,Manhattan,Hell's Kitchen,40.76485,-73.99229,Entire home/apt,799,2,5,2.38,1,247 +43212,47343944,Brooklyn,Bushwick,40.7042,-73.92719,Entire home/apt,147,2,0,,1,0 +43213,42946242,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95054,Entire home/apt,110,14,0,,1,0 +43214,190094547,Brooklyn,Crown Heights,40.671440000000004,-73.92496,Entire home/apt,90,3,3,1.18,1,7 +43215,238779678,Manhattan,East Village,40.72735,-73.98917,Private room,62,30,0,,9,325 +43216,160940380,Queens,St. Albans,40.699670000000005,-73.75026,Entire home/apt,600,2,2,1.58,3,332 +43217,29952888,Manhattan,SoHo,40.720290000000006,-74.00033,Private room,67,30,0,,1,50 +43218,251311623,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91256,Private room,58,2,6,2.47,5,213 +43219,21210898,Brooklyn,Bushwick,40.707229999999996,-73.92066,Private room,120,2,0,,2,0 +43220,246194760,Queens,East Elmhurst,40.75985,-73.88294,Private room,39,1,8,2.58,4,210 +43221,38174433,Manhattan,SoHo,40.72347,-74.00463,Entire home/apt,235,1,3,1.25,1,34 +43222,89349779,Manhattan,Harlem,40.8026,-73.95829,Entire home/apt,182,2,5,5.0,1,19 +43223,252607014,Manhattan,Harlem,40.81325,-73.9398,Entire home/apt,150,3,6,2.31,1,25 +43224,20229932,Manhattan,Murray Hill,40.74535,-73.9764,Entire home/apt,120,2,6,1.94,1,0 +43225,252628456,Brooklyn,East New York,40.66155,-73.88916,Entire home/apt,100,2,4,4.0,1,96 +43226,239770902,Manhattan,Midtown,40.75383,-73.97207,Private room,350,5,0,,1,353 +43227,110308993,Queens,Jamaica,40.67138,-73.77238,Entire home/apt,90,1,7,2.66,1,0 +43228,219517861,Manhattan,Financial District,40.70604,-74.01021,Entire home/apt,194,2,3,1.27,327,303 +43229,86325,Brooklyn,Prospect Heights,40.67323,-73.96863,Entire home/apt,145,3,1,0.86,1,45 +43230,219517861,Manhattan,Financial District,40.70763,-74.0105,Entire home/apt,470,2,5,1.88,327,272 +43231,219517861,Manhattan,Financial District,40.70747,-74.01226,Entire home/apt,247,2,9,3.42,327,272 +43232,38194603,Queens,Ridgewood,40.70622,-73.90641,Private room,50,1,13,4.53,2,5 +43233,219517861,Manhattan,Chelsea,40.7425,-73.99443000000001,Entire home/apt,260,29,0,,327,365 +43234,19643468,Brooklyn,Williamsburg,40.706520000000005,-73.94541,Private room,80,1,2,0.65,1,0 +43235,243489234,Brooklyn,Williamsburg,40.70855,-73.94991999999999,Entire home/apt,210,2,0,,1,3 +43236,7594732,Manhattan,East Harlem,40.79433,-73.94414,Private room,70,2,0,,1,103 +43237,252641467,Bronx,Wakefield,40.88491,-73.85484,Private room,33,1,0,,1,116 +43238,95892016,Manhattan,East Village,40.72705,-73.9846,Private room,80,1,1,0.31,5,15 +43239,123810965,Manhattan,Harlem,40.81089,-73.94309,Private room,62,1,7,2.21,2,172 +43240,94531229,Brooklyn,Williamsburg,40.7198,-73.94125,Entire home/apt,171,2,6,3.0,1,48 +43241,105270072,Brooklyn,Sheepshead Bay,40.59516,-73.96208,Entire home/apt,125,1,0,,1,0 +43242,23532686,Manhattan,West Village,40.73103,-74.00778000000001,Entire home/apt,350,3,0,,1,16 +43243,51667335,Manhattan,Hell's Kitchen,40.760220000000004,-73.99253,Entire home/apt,395,2,11,3.63,1,247 +43244,41859649,Brooklyn,Bushwick,40.700390000000006,-73.92352,Private room,72,2,2,0.7,1,364 +43245,104814095,Queens,East Elmhurst,40.76078,-73.88221999999999,Private room,70,1,1,1.0,3,76 +43246,252678417,Brooklyn,Bedford-Stuyvesant,40.69655,-73.93458000000001,Private room,55,1,18,6.0,1,0 +43247,44205809,Brooklyn,Crown Heights,40.674009999999996,-73.92371,Entire home/apt,225,1,8,2.61,1,178 +43248,245710234,Queens,Elmhurst,40.73018,-73.87172,Private room,57,1,20,6.32,4,156 +43249,243489304,Manhattan,Lower East Side,40.71629,-73.98862,Private room,99,4,15,4.74,2,191 +43250,167949895,Bronx,Kingsbridge,40.86313,-73.90183,Shared room,35,1,3,0.94,1,0 +43251,243489304,Manhattan,Chinatown,40.71515,-73.99099,Private room,89,4,16,5.0,2,166 +43252,228151544,Manhattan,Hell's Kitchen,40.7637,-73.99037,Private room,135,1,12,5.9,1,278 +43253,246272839,Queens,Flushing,40.766709999999996,-73.81935,Entire home/apt,85,1,8,2.82,4,150 +43254,246272839,Queens,Flushing,40.7651,-73.81749,Entire home/apt,85,1,5,2.08,4,156 +43255,135280693,Queens,Ridgewood,40.70811,-73.91054,Private room,60,3,3,1.15,2,264 +43256,252765359,Brooklyn,Bedford-Stuyvesant,40.67837,-73.91871,Entire home/apt,60,2,5,1.53,1,0 +43257,250269817,Manhattan,Upper East Side,40.782340000000005,-73.9476,Entire home/apt,219,2,20,6.52,1,133 +43258,224813944,Manhattan,Lower East Side,40.71917,-73.98343,Entire home/apt,442,1,12,4.5,1,253 +43259,252642141,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93834,Entire home/apt,250,2,3,1.5,1,117 +43260,252782565,Queens,Astoria,40.76625,-73.91946,Entire home/apt,160,2,1,0.38,1,7 +43261,252790183,Brooklyn,Greenpoint,40.73279,-73.954,Entire home/apt,240,2,1,0.42,1,7 +43262,6946537,Brooklyn,Flatbush,40.6307,-73.95815,Private room,80,2,0,,1,90 +43263,128914189,Brooklyn,Williamsburg,40.71285,-73.96535,Entire home/apt,190,30,0,,2,188 +43264,1155020,Brooklyn,Williamsburg,40.72037,-73.95857,Entire home/apt,199,3,0,,1,99 +43265,4345155,Brooklyn,Greenpoint,40.732929999999996,-73.95889,Entire home/apt,250,5,0,,1,174 +43266,230119671,Manhattan,Chelsea,40.745670000000004,-73.99254,Entire home/apt,949,2,6,2.02,1,270 +43267,84084279,Brooklyn,Crown Heights,40.67692,-73.92241,Private room,60,1,26,7.88,1,330 +43268,248282016,Manhattan,Upper East Side,40.78513,-73.95588000000001,Entire home/apt,180,5,1,0.41,1,77 +43269,22388020,Brooklyn,Bushwick,40.7023,-73.91911,Private room,59,1,8,2.73,1,56 +43270,252824941,Manhattan,Hell's Kitchen,40.76273,-73.99061,Entire home/apt,300,1,14,4.52,1,306 +43271,76451668,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92695,Entire home/apt,120,31,1,0.51,2,155 +43272,47504485,Brooklyn,Bensonhurst,40.61225,-73.9815,Private room,39,7,12,4.5,2,58 +43273,199833548,Queens,Jamaica,40.70585,-73.80866999999999,Private room,50,1,13,4.53,9,358 +43274,12655794,Manhattan,Financial District,40.70598,-74.00804000000001,Private room,150,4,2,0.62,1,90 +43275,245710234,Queens,Elmhurst,40.73101,-73.87139,Private room,51,1,12,3.96,4,180 +43276,79134040,Manhattan,Washington Heights,40.84316,-73.94062,Private room,100,2,11,4.29,1,55 +43277,76849762,Brooklyn,Williamsburg,40.71492,-73.94397,Private room,60,3,1,0.81,1,0 +43278,252856825,Brooklyn,Bedford-Stuyvesant,40.69446,-73.9543,Entire home/apt,250,1,4,1.85,1,10 +43279,157708630,Brooklyn,Bushwick,40.70044,-73.92503,Private room,68,2,5,1.76,1,15 +43280,4770121,Manhattan,Harlem,40.82457,-73.94008000000001,Entire home/apt,100,7,1,0.41,4,33 +43281,28831479,Brooklyn,Williamsburg,40.70796,-73.94826,Private room,189,3,0,,2,78 +43282,252865772,Queens,Astoria,40.75909,-73.92005,Entire home/apt,98,2,1,0.31,1,292 +43283,247185393,Manhattan,East Harlem,40.794909999999994,-73.94162,Entire home/apt,400,3,7,2.33,1,307 +43284,10506005,Brooklyn,Flatbush,40.6491,-73.96321999999999,Entire home/apt,110,3,2,2.0,1,108 +43285,183211776,Queens,Astoria,40.765229999999995,-73.9118,Private room,49,1,8,3.04,4,192 +43286,9488131,Manhattan,Washington Heights,40.851290000000006,-73.92954,Entire home/apt,300,3,12,3.91,1,313 +43287,15178683,Brooklyn,Flatbush,40.633759999999995,-73.95148,Private room,30,3,0,,1,0 +43288,193488,Manhattan,East Village,40.73361,-73.98995,Private room,135,1,0,,2,177 +43289,99494083,Brooklyn,Bedford-Stuyvesant,40.68395,-73.92998,Entire home/apt,113,5,8,2.55,2,101 +43290,26535250,Brooklyn,Windsor Terrace,40.65596,-73.97951,Entire home/apt,55,1,5,2.21,3,232 +43291,54023713,Manhattan,Kips Bay,40.74385,-73.97669,Entire home/apt,100,4,25,8.24,1,4 +43292,177742211,Manhattan,SoHo,40.72745,-74.0025,Entire home/apt,285,5,3,0.98,1,365 +43293,119294198,Brooklyn,Bay Ridge,40.632090000000005,-74.018,Private room,45,1,1,0.32,1,95 +43294,223375402,Brooklyn,East New York,40.66115,-73.89352,Entire home/apt,195,2,5,2.83,4,347 +43295,110448579,Brooklyn,Flatbush,40.638659999999994,-73.96735,Entire home/apt,78,30,1,1.0,1,279 +43296,252855885,Bronx,Fordham,40.86255,-73.90059000000001,Private room,42,1,2,1.82,1,332 +43297,215744706,Manhattan,Harlem,40.82011,-73.9404,Entire home/apt,110,1,0,,1,180 +43298,35657710,Manhattan,Washington Heights,40.8312,-73.9399,Private room,99,7,2,0.77,1,90 +43299,42881572,Brooklyn,Williamsburg,40.71379,-73.94104,Private room,47,27,1,0.45,1,323 +43300,245710234,Queens,Elmhurst,40.72997,-73.87183,Private room,51,1,20,6.38,4,365 +43301,151048265,Manhattan,Chelsea,40.74038,-74.00139,Entire home/apt,170,3,2,1.09,1,39 +43302,122363368,Bronx,Allerton,40.872679999999995,-73.85424,Entire home/apt,100,2,0,,1,180 +43303,107393843,Manhattan,Financial District,40.70824,-74.01403,Private room,125,4,1,0.67,1,0 +43304,246224359,Staten Island,Grymes Hill,40.6105,-74.09132,Entire home/apt,115,1,1,1.0,1,339 +43305,248654228,Queens,East Elmhurst,40.76255,-73.88019,Shared room,43,1,0,,4,153 +43306,107434423,Manhattan,Flatiron District,40.74394,-73.99094000000001,Entire home/apt,439,30,0,,232,278 +43307,107434423,Manhattan,Gramercy,40.73823,-73.98343,Entire home/apt,348,30,0,,232,331 +43308,132644544,Manhattan,West Village,40.73532,-73.99874,Entire home/apt,150,2,0,,1,2 +43309,1192659,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9277,Private room,50,4,1,1.0,3,23 +43310,1192659,Brooklyn,Bedford-Stuyvesant,40.688990000000004,-73.9289,Private room,57,3,8,3.81,3,9 +43311,248654228,Queens,East Elmhurst,40.76275,-73.88198,Shared room,43,1,1,0.33,4,91 +43312,251510391,Manhattan,Hell's Kitchen,40.76461,-73.98745,Shared room,65,1,0,,3,365 +43313,154673872,Manhattan,Midtown,40.75325,-73.97176,Private room,250,5,0,,1,0 +43314,198666639,Brooklyn,Cypress Hills,40.67875,-73.90704000000001,Entire home/apt,160,2,2,2.0,1,162 +43315,64898741,Queens,Long Island City,40.75912,-73.92903000000001,Entire home/apt,130,3,2,1.43,2,0 +43316,219517861,Manhattan,Financial District,40.7075,-74.01179,Entire home/apt,505,2,8,3.58,327,263 +43317,248122395,Manhattan,Greenwich Village,40.73571,-73.99694000000001,Private room,425,1,0,,2,353 +43318,248122395,Manhattan,Greenwich Village,40.73679,-73.99592,Private room,425,1,4,1.52,2,359 +43319,148317706,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.94363,Entire home/apt,150,2,8,7.27,1,30 +43320,253047601,Brooklyn,Bushwick,40.70092,-73.93732,Private room,50,1,26,9.07,1,9 +43321,4765305,Manhattan,East Village,40.7234,-73.98267,Private room,62,2,15,4.84,4,284 +43322,30137775,Manhattan,Upper West Side,40.793209999999995,-73.96823,Private room,380,3,1,0.38,1,24 +43323,120763629,Brooklyn,Bath Beach,40.60615,-74.00315,Private room,49,2,3,1.05,2,347 +43324,113805886,Manhattan,Upper East Side,40.7786,-73.95208000000001,Entire home/apt,206,30,1,1.0,33,311 +43325,3817581,Manhattan,Lower East Side,40.720279999999995,-73.98794000000001,Entire home/apt,123,30,1,0.77,1,96 +43326,253073362,Manhattan,Nolita,40.72175,-73.99544,Entire home/apt,145,5,3,2.5,1,7 +43327,113805886,Manhattan,Upper East Side,40.77721,-73.95222,Entire home/apt,206,30,0,,33,189 +43328,208955733,Brooklyn,East Flatbush,40.65477,-73.92206999999999,Private room,75,1,10,3.19,4,365 +43329,4678376,Brooklyn,Crown Heights,40.66806,-73.95295,Entire home/apt,350,2,7,2.63,1,82 +43330,33235360,Brooklyn,Williamsburg,40.70845,-73.94266,Private room,76,2,6,1.89,2,5 +43331,253083248,Queens,Flushing,40.74006,-73.82894,Entire home/apt,200,1,12,6.0,1,145 +43332,253104269,Bronx,Wakefield,40.89613,-73.85503,Private room,35,1,9,3.18,1,0 +43333,50375092,Staten Island,Dongan Hills,40.57882,-74.09196999999999,Private room,49,1,8,2.53,3,342 +43334,109567034,Queens,Fresh Meadows,40.743759999999995,-73.7942,Entire home/apt,150,2,15,6.92,1,69 +43335,253110236,Queens,Springfield Gardens,40.66465,-73.74906999999999,Entire home/apt,150,3,6,2.28,1,176 +43336,127562833,Manhattan,Hell's Kitchen,40.76386,-73.98901,Entire home/apt,195,5,11,5.08,1,14 +43337,19407341,Manhattan,Upper East Side,40.76928,-73.94855,Entire home/apt,140,2,11,3.93,1,3 +43338,51596474,Brooklyn,Bensonhurst,40.6062,-73.98995,Private room,35,1,7,2.44,12,0 +43339,197368927,Brooklyn,Sheepshead Bay,40.608979999999995,-73.95340999999999,Private room,65,1,5,1.83,8,348 +43340,197368927,Brooklyn,Sheepshead Bay,40.60765,-73.95392,Private room,65,1,4,2.26,8,359 +43341,197368927,Brooklyn,Sheepshead Bay,40.60755,-73.95303,Private room,65,1,5,2.63,8,352 +43342,46789694,Queens,Springfield Gardens,40.668209999999995,-73.75263000000001,Entire home/apt,50,1,16,6.0,2,304 +43343,197368927,Brooklyn,Sheepshead Bay,40.6093,-73.95211,Shared room,40,2,8,2.55,8,358 +43344,197368927,Brooklyn,Sheepshead Bay,40.60852,-73.95368,Shared room,40,2,3,1.14,8,343 +43345,63541445,Brooklyn,Bushwick,40.69477,-73.93011,Entire home/apt,180,3,6,2.86,1,119 +43346,236668588,Manhattan,Chelsea,40.746790000000004,-74.00263000000001,Private room,115,1,3,1.11,2,113 +43347,130667866,Manhattan,Washington Heights,40.85549,-73.92789,Private room,69,2,7,2.19,1,14 +43348,4621134,Bronx,Clason Point,40.806259999999995,-73.85122,Private room,40,7,2,1.76,1,59 +43349,59156312,Queens,Woodhaven,40.6875,-73.8664,Private room,39,3,8,3.04,9,358 +43350,44350279,Manhattan,Gramercy,40.73446,-73.9867,Private room,99,2,8,3.53,4,13 +43351,107434423,Manhattan,Midtown,40.74875,-73.98675,Entire home/apt,334,30,0,,232,311 +43352,253246141,Manhattan,East Harlem,40.78722,-73.94481999999999,Shared room,40,22,1,1.0,1,12 +43353,245710234,Queens,Elmhurst,40.73125,-73.87250999999999,Private room,38,1,28,8.94,4,365 +43354,107434423,Manhattan,Financial District,40.70429,-74.00714,Entire home/apt,332,90,0,,232,115 +43355,69720852,Manhattan,SoHo,40.7204,-74.00027,Private room,64,3,1,0.34,3,86 +43356,84732743,Brooklyn,Williamsburg,40.71255,-73.93921999999999,Entire home/apt,100,3,3,1.23,1,3 +43357,236668588,Manhattan,Chelsea,40.7461,-74.00329,Private room,110,1,10,3.49,2,108 +43358,193954973,Brooklyn,Williamsburg,40.713809999999995,-73.95187,Entire home/apt,245,3,1,0.47,3,257 +43359,11870917,Manhattan,East Village,40.72392,-73.98915,Entire home/apt,135,7,3,1.05,1,15 +43360,139724098,Manhattan,Hell's Kitchen,40.760909999999996,-73.99126,Entire home/apt,299,4,16,5.45,1,59 +43361,162280872,Manhattan,Kips Bay,40.73948,-73.97973,Entire home/apt,150,30,0,,13,327 +43362,64453547,Queens,Ditmars Steinway,40.77832,-73.90604,Private room,53,20,0,,3,0 +43363,219517861,Manhattan,Theater District,40.76142,-73.98629,Entire home/apt,212,29,0,,327,349 +43364,147051233,Manhattan,Tribeca,40.71859,-74.00459000000001,Entire home/apt,299,31,3,1.06,1,165 +43365,253304582,Queens,Corona,40.73747,-73.86404,Entire home/apt,110,7,3,1.23,2,54 +43366,5704932,Bronx,Fordham,40.86615,-73.88828000000001,Private room,60,2,6,1.96,3,34 +43367,39837217,Brooklyn,Bushwick,40.70069,-73.93675999999999,Private room,70,3,0,,2,15 +43368,58027700,Brooklyn,Bedford-Stuyvesant,40.67758,-73.92751,Private room,65,1,12,4.29,1,179 +43369,208955733,Brooklyn,East Flatbush,40.65401,-73.92013,Private room,90,1,10,3.75,4,365 +43370,140272,Manhattan,East Harlem,40.79013,-73.94958000000001,Entire home/apt,174,3,9,3.55,1,85 +43371,39943241,Manhattan,Little Italy,40.72002,-73.99704,Entire home/apt,260,3,2,1.43,1,33 +43372,39828340,Brooklyn,Crown Heights,40.66431,-73.95083000000001,Private room,200,1,0,,1,0 +43373,23991239,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94139,Private room,50,10,1,0.77,1,246 +43374,51596474,Brooklyn,Gravesend,40.586490000000005,-73.97339000000001,Shared room,24,11,2,0.74,12,0 +43375,231131023,Brooklyn,Crown Heights,40.665440000000004,-73.9577,Private room,35,2,0,,1,224 +43376,250477669,Queens,Jackson Heights,40.75278,-73.89114000000001,Private room,70,3,1,0.49,1,59 +43377,42222090,Manhattan,Upper West Side,40.77029,-73.98761,Private room,110,3,5,2.08,2,158 +43378,2099273,Brooklyn,Cypress Hills,40.68176,-73.89402,Private room,85,30,0,,1,98 +43379,17726658,Brooklyn,East Flatbush,40.64673,-73.94686,Entire home/apt,95,1,28,10.77,1,292 +43380,253354074,Brooklyn,East Flatbush,40.66247,-73.93784000000001,Entire home/apt,425,2,2,2.0,2,59 +43381,253354074,Brooklyn,Crown Heights,40.66387,-73.9384,Entire home/apt,150,1,6,2.5,2,148 +43382,192951036,Manhattan,SoHo,40.72589,-74.00015,Private room,119,1,7,2.44,10,23 +43383,1512819,Brooklyn,East Flatbush,40.65292,-73.95229,Private room,45,5,2,1.07,5,159 +43384,257565053,Manhattan,Lower East Side,40.7211,-73.9893,Private room,135,1,0,,2,162 +43385,257567667,Manhattan,Lower East Side,40.72335,-73.99138,Private room,100,1,0,,1,358 +43386,257569145,Manhattan,Lower East Side,40.72018,-73.98813,Private room,219,1,0,,1,362 +43387,257565053,Manhattan,Lower East Side,40.719429999999996,-73.98753,Private room,159,1,0,,2,161 +43388,192956786,Manhattan,East Village,40.72585,-73.98831,Private room,50,4,9,3.14,1,48 +43389,247104282,Brooklyn,Bedford-Stuyvesant,40.68375,-73.91503,Private room,150,1,0,,2,177 +43390,248654228,Queens,East Elmhurst,40.76303,-73.88039,Shared room,34,1,2,0.7,4,123 +43391,152394865,Brooklyn,East Flatbush,40.63196,-73.94572,Private room,175,2,4,1.52,3,43 +43392,8569221,Brooklyn,Williamsburg,40.71829,-73.95819,Private room,109,3,3,1.07,2,97 +43393,184472924,Brooklyn,East New York,40.6633,-73.89733000000001,Entire home/apt,140,2,7,2.63,1,157 +43394,224150,Brooklyn,Midwood,40.61489,-73.94541,Shared room,26,2,5,1.83,1,0 +43395,152394865,Brooklyn,Flatlands,40.6313,-73.94534,Private room,175,2,4,2.18,3,43 +43396,253111673,Manhattan,Hell's Kitchen,40.76248,-73.98937,Entire home/apt,299,4,8,2.89,1,61 +43397,219517861,Manhattan,Financial District,40.70748,-74.0108,Entire home/apt,234,2,7,2.66,327,309 +43398,219517861,Manhattan,Financial District,40.7071,-74.01194,Entire home/apt,230,2,6,2.28,327,327 +43399,219517861,Manhattan,Financial District,40.70642,-74.01255,Entire home/apt,230,2,2,1.5,327,319 +43400,23777742,Manhattan,Harlem,40.82479,-73.94218000000001,Entire home/apt,125,30,0,,1,242 +43401,219517861,Manhattan,Theater District,40.76112,-73.98663,Entire home/apt,217,29,1,0.75,327,337 +43402,219517861,Manhattan,Theater District,40.76122,-73.98583,Entire home/apt,182,29,0,,327,333 +43403,219517861,Manhattan,Theater District,40.759479999999996,-73.98615,Entire home/apt,152,29,1,0.6,327,193 +43404,236018119,Queens,Queens Village,40.70303,-73.74906,Entire home/apt,125,1,38,12.0,3,362 +43405,219517861,Manhattan,Theater District,40.76149,-73.98633000000001,Entire home/apt,219,29,0,,327,346 +43406,219517861,Manhattan,Theater District,40.75923,-73.9865,Entire home/apt,207,29,0,,327,331 +43407,192951036,Manhattan,Greenwich Village,40.72667,-73.99878000000001,Entire home/apt,289,1,3,1.5,10,133 +43408,247067478,Manhattan,Upper West Side,40.7977,-73.96115,Entire home/apt,330,4,9,3.65,1,132 +43409,104927746,Staten Island,Concord,40.597,-74.08778000000001,Shared room,29,1,0,,7,2 +43410,253504649,Manhattan,Upper East Side,40.78134,-73.95212,Entire home/apt,289,5,15,4.89,1,146 +43411,253513520,Brooklyn,Bedford-Stuyvesant,40.688309999999994,-73.9393,Entire home/apt,150,1,10,3.57,1,206 +43412,191021802,Manhattan,Midtown,40.75967,-73.96786,Entire home/apt,120,30,0,,1,159 +43413,199833548,Queens,Jamaica,40.70532,-73.80965,Private room,40,1,6,2.12,9,360 +43414,219517861,Manhattan,Financial District,40.70799,-74.01113000000001,Entire home/apt,228,2,9,3.33,327,317 +43415,219517861,Manhattan,Financial District,40.70579,-74.01245,Entire home/apt,203,2,1,0.67,327,322 +43416,232251881,Queens,Springfield Gardens,40.66663,-73.7836,Private room,49,1,2,0.8,8,0 +43417,10951481,Brooklyn,Williamsburg,40.71095,-73.96717,Entire home/apt,183,30,0,,5,249 +43418,253528452,Manhattan,Murray Hill,40.74779,-73.98100000000001,Entire home/apt,800,3,9,3.46,1,276 +43419,67781861,Manhattan,East Harlem,40.79738,-73.93196,Private room,50,2,4,1.56,1,35 +43420,91783661,Manhattan,East Village,40.726729999999996,-73.98646,Entire home/apt,149,3,12,4.29,1,151 +43421,149312408,Queens,Astoria,40.76769,-73.92564,Private room,55,1,11,3.75,2,319 +43422,253552326,Manhattan,Chinatown,40.71313,-73.99615,Private room,108,1,11,3.71,4,175 +43423,76628403,Manhattan,Upper West Side,40.77961,-73.97821,Private room,160,2,3,1.13,1,61 +43424,119692067,Brooklyn,Sunset Park,40.64403,-74.00086999999999,Private room,60,1,0,,3,89 +43425,112531390,Manhattan,Washington Heights,40.84427,-73.93741999999999,Private room,52,1,1,0.4,1,0 +43426,247453895,Manhattan,Kips Bay,40.7432,-73.97605,Shared room,39,2,0,,3,324 +43427,253552326,Manhattan,Two Bridges,40.712140000000005,-73.99568000000001,Private room,89,1,13,5.2,4,153 +43428,230037325,Brooklyn,Cypress Hills,40.679159999999996,-73.90628000000001,Private room,57,1,9,3.18,6,170 +43429,230037325,Brooklyn,Bedford-Stuyvesant,40.679190000000006,-73.90684,Private room,57,1,6,2.47,6,164 +43430,138768335,Brooklyn,East Flatbush,40.65565,-73.92705,Private room,40,30,1,0.45,2,344 +43431,230037325,Brooklyn,Bedford-Stuyvesant,40.68092,-73.90777,Private room,55,1,8,2.76,6,138 +43432,162280872,Manhattan,Upper East Side,40.771390000000004,-73.95651,Entire home/apt,290,30,1,0.57,13,283 +43433,27947449,Bronx,Parkchester,40.83938,-73.85708000000001,Private room,45,1,10,4.92,2,352 +43434,12351745,Brooklyn,Bushwick,40.700140000000005,-73.93664,Entire home/apt,150,1,10,3.49,1,292 +43435,253624959,Brooklyn,East Flatbush,40.66008,-73.92121999999999,Private room,50,2,5,2.5,1,304 +43436,3129709,Manhattan,Upper West Side,40.7867,-73.96951,Entire home/apt,165,2,0,,1,5 +43437,190246158,Staten Island,St. George,40.64448,-74.08485,Entire home/apt,68,2,4,1.97,1,65 +43438,143598647,Manhattan,Hell's Kitchen,40.75913,-73.99185,Entire home/apt,195,6,6,2.9,1,12 +43439,47516406,Queens,Woodhaven,40.6898,-73.86077,Private room,45,7,3,1.2,2,360 +43440,253640919,Manhattan,Upper West Side,40.80038,-73.95994,Private room,66,1,1,0.34,1,17 +43441,158785491,Queens,Astoria,40.76019,-73.90934,Private room,40,30,0,,1,170 +43442,107434423,Manhattan,Theater District,40.75942,-73.98602,Entire home/apt,309,30,0,,232,214 +43443,107434423,Manhattan,Theater District,40.761179999999996,-73.98625,Entire home/apt,240,30,0,,232,239 +43444,107434423,Manhattan,Theater District,40.7609,-73.98594,Entire home/apt,240,30,0,,232,189 +43445,107434423,Manhattan,Theater District,40.75938,-73.98749000000001,Entire home/apt,219,30,0,,232,14 +43446,1364340,Brooklyn,Fort Greene,40.689659999999996,-73.97310999999999,Private room,125,2,7,4.38,1,0 +43447,3002017,Brooklyn,Bedford-Stuyvesant,40.68466,-73.91716,Entire home/apt,130,2,10,5.36,1,262 +43448,199833548,Queens,Briarwood,40.707409999999996,-73.80838,Private room,50,1,11,3.79,9,342 +43449,229929832,Bronx,Norwood,40.874140000000004,-73.88342,Private room,51,1,10,4.76,1,271 +43450,67610438,Brooklyn,East Flatbush,40.6386,-73.94584,Entire home/apt,82,1,5,2.27,1,19 +43451,32059780,Manhattan,SoHo,40.72681,-74.00455,Entire home/apt,200,2,0,,1,47 +43452,73785055,Brooklyn,Prospect Heights,40.67382,-73.96642,Entire home/apt,150,4,0,,1,28 +43453,61084210,Queens,Astoria,40.76222,-73.91861,Entire home/apt,360,3,10,3.85,1,206 +43454,253693119,Brooklyn,Williamsburg,40.71993,-73.96395,Entire home/apt,400,180,0,,1,310 +43455,234090781,Queens,Bayswater,40.6083,-73.75787,Private room,45,1,4,2.26,2,54 +43456,253552326,Manhattan,Chinatown,40.71304,-73.99484,Private room,89,1,13,4.43,4,164 +43457,9034883,Brooklyn,Sunset Park,40.66172,-73.99387,Private room,75,2,0,,1,88 +43458,253698437,Bronx,Williamsbridge,40.88171,-73.85384,Entire home/apt,75,2,2,0.82,1,360 +43459,70406797,Brooklyn,Sunset Park,40.646440000000005,-74.01057,Private room,47,1,0,,1,31 +43460,73212148,Manhattan,Harlem,40.80704,-73.95134,Private room,105,3,11,3.79,1,20 +43461,182434290,Queens,Ditmars Steinway,40.77005,-73.91098000000001,Private room,90,1,6,2.47,2,0 +43462,18109057,Manhattan,Washington Heights,40.85176,-73.93009,Private room,75,2,1,0.39,1,53 +43463,199833548,Queens,Briarwood,40.70579,-73.81000999999999,Shared room,30,1,10,4.05,9,361 +43464,87766324,Brooklyn,Bedford-Stuyvesant,40.68638,-73.93496999999999,Entire home/apt,499,2,0,,2,30 +43465,157301360,Queens,Kew Gardens Hills,40.72947,-73.82075999999999,Entire home/apt,250,3,5,2.88,1,152 +43466,51596474,Brooklyn,Bay Ridge,40.623290000000004,-74.02136,Shared room,24,10,1,1.0,12,0 +43467,69977115,Brooklyn,Bensonhurst,40.61472,-73.99143000000001,Private room,79,2,1,1.0,4,364 +43468,197792014,Manhattan,Washington Heights,40.84467,-73.93549,Entire home/apt,280,2,23,8.31,1,215 +43469,88171838,Brooklyn,Bay Ridge,40.63555,-74.02962,Private room,75,1,14,4.83,4,154 +43470,252819295,Queens,Richmond Hill,40.694390000000006,-73.83243,Shared room,58,1,12,4.14,1,180 +43471,253748268,Queens,Elmhurst,40.74623,-73.88974,Private room,55,1,4,1.94,1,83 +43472,223375402,Brooklyn,East New York,40.66067,-73.8931,Private room,65,2,1,0.53,4,354 +43473,223375402,Brooklyn,East New York,40.66089,-73.89376,Private room,65,2,1,1.0,4,349 +43474,33151563,Queens,Flushing,40.76308,-73.82215,Private room,63,2,1,1.0,2,0 +43475,11670365,Manhattan,Chinatown,40.71565,-73.99211,Entire home/apt,250,4,2,0.74,1,8 +43476,9850389,Brooklyn,Bushwick,40.706720000000004,-73.92295,Entire home/apt,200,2,1,0.7,1,0 +43477,4128255,Brooklyn,Fort Greene,40.68694,-73.97435,Entire home/apt,104,2,7,3.33,1,2 +43478,253842399,Queens,Corona,40.74266,-73.86525999999999,Entire home/apt,65,1,1,0.44,1,280 +43479,220634514,Queens,Astoria,40.75869,-73.91439,Shared room,45,10,0,,1,341 +43480,245174862,Manhattan,Upper East Side,40.78091,-73.95384,Entire home/apt,175,2,0,,1,38 +43481,17524733,Brooklyn,Bushwick,40.68383,-73.90857,Entire home/apt,65,6,2,0.8,1,19 +43482,39395975,Manhattan,Inwood,40.86725,-73.92726,Entire home/apt,150,1,0,,1,16 +43483,224317184,Manhattan,Harlem,40.81708,-73.95059,Private room,215,5,3,1.84,8,345 +43484,214347105,Manhattan,Midtown,40.75088,-73.96958000000001,Entire home/apt,419,3,1,0.79,8,343 +43485,224317184,Manhattan,Harlem,40.816520000000004,-73.94914,Private room,215,5,7,2.73,8,335 +43486,1328716,Manhattan,Midtown,40.75544,-73.96452,Entire home/apt,195,2,1,0.7,1,117 +43487,11967268,Brooklyn,Williamsburg,40.70762,-73.95,Entire home/apt,225,3,1,1.0,1,0 +43488,24064771,Brooklyn,Williamsburg,40.7077,-73.9435,Private room,65,7,0,,1,0 +43489,253888808,Manhattan,Midtown,40.74472,-73.98526,Entire home/apt,306,30,2,1.3,1,320 +43490,17879327,Brooklyn,Williamsburg,40.70783,-73.95430999999999,Private room,90,3,3,1.17,1,47 +43491,253892856,Manhattan,Murray Hill,40.748979999999996,-73.98029,Entire home/apt,700,3,11,4.18,1,249 +43492,253898121,Brooklyn,Williamsburg,40.721779999999995,-73.95653,Entire home/apt,200,5,1,0.59,1,13 +43493,35842670,Manhattan,West Village,40.73792,-74.00063,Entire home/apt,230,14,2,0.65,1,87 +43494,82742663,Brooklyn,Williamsburg,40.71948,-73.96376,Entire home/apt,150,30,1,0.42,1,160 +43495,211941129,Brooklyn,Greenpoint,40.72633,-73.95859,Private room,55,1,21,7.33,2,47 +43496,253925102,Manhattan,Midtown,40.75166,-73.97154,Private room,600,3,0,,1,96 +43497,253836845,Brooklyn,Crown Heights,40.667840000000005,-73.95798,Private room,68,30,1,0.43,7,251 +43498,30590073,Brooklyn,Williamsburg,40.718779999999995,-73.9604,Private room,70,1,7,3.28,2,98 +43499,253944108,Brooklyn,Bedford-Stuyvesant,40.69539,-73.94399,Private room,79,2,3,2.43,1,96 +43500,229288218,Brooklyn,Bushwick,40.69833,-73.93463,Entire home/apt,175,1,5,1.9,1,264 +43501,2350326,Queens,Ditmars Steinway,40.7786,-73.91031,Entire home/apt,140,15,0,,2,0 +43502,253940417,Manhattan,Washington Heights,40.83591,-73.94586,Entire home/apt,180,5,0,,1,83 +43503,50375092,Staten Island,Dongan Hills,40.5788,-74.09155,Private room,37,1,7,2.66,3,310 +43504,149415862,Brooklyn,Park Slope,40.66815,-73.97766999999999,Entire home/apt,395,5,0,,1,22 +43505,44929652,Brooklyn,East Flatbush,40.64578,-73.94756,Private room,75,2,7,4.12,4,361 +43506,44929652,Brooklyn,East Flatbush,40.64423,-73.94683,Private room,50,2,2,2.0,4,356 +43507,6565512,Manhattan,Harlem,40.82437,-73.95026999999999,Private room,85,1,0,,1,83 +43508,17844480,Manhattan,Upper West Side,40.800090000000004,-73.96218,Entire home/apt,130,14,0,,1,2 +43509,137950324,Manhattan,Hell's Kitchen,40.75923,-73.99233000000001,Entire home/apt,225,4,2,0.77,1,44 +43510,251839479,Bronx,Longwood,40.82639,-73.90517,Entire home/apt,150,2,0,,2,0 +43511,15729463,Brooklyn,Boerum Hill,40.68619,-73.98719,Private room,105,4,2,0.76,1,0 +43512,253745747,Queens,Astoria,40.75737,-73.91669,Entire home/apt,85,14,1,1.0,1,77 +43513,253906467,Manhattan,Hell's Kitchen,40.76473,-73.99003,Shared room,69,1,8,2.7,9,347 +43514,253906467,Manhattan,Hell's Kitchen,40.76449,-73.99107,Shared room,60,1,14,4.62,9,349 +43515,253906467,Manhattan,Hell's Kitchen,40.76623,-73.99075,Shared room,85,1,18,6.21,9,337 +43516,253906467,Manhattan,Hell's Kitchen,40.764359999999996,-73.99153000000001,Shared room,60,1,20,6.82,9,348 +43517,247189581,Brooklyn,Fort Greene,40.68667,-73.9738,Shared room,41,2,4,1.64,5,0 +43518,9919024,Brooklyn,Crown Heights,40.67807,-73.95532,Entire home/apt,130,4,7,2.5,1,28 +43519,253128090,Manhattan,Midtown,40.76167,-73.96944,Entire home/apt,149,2,7,2.63,1,163 +43520,50484250,Manhattan,Hell's Kitchen,40.75813,-73.99818,Private room,100,90,0,,1,160 +43521,24599796,Manhattan,Harlem,40.80879,-73.94174,Entire home/apt,600,7,0,,1,14 +43522,219517861,Manhattan,Theater District,40.76008,-73.98721,Entire home/apt,227,29,0,,327,365 +43523,219517861,Manhattan,Theater District,40.76072,-73.98581999999999,Entire home/apt,244,29,1,0.88,327,363 +43524,1693671,Manhattan,Chelsea,40.752559999999995,-73.99653,Private room,150,4,0,,1,91 +43525,219517861,Manhattan,Financial District,40.70599,-74.01236,Entire home/apt,472,2,8,3.43,327,262 +43526,219517861,Manhattan,Financial District,40.70729,-74.01095,Entire home/apt,474,2,9,4.22,327,263 +43527,219517861,Manhattan,Financial District,40.70751,-74.01059000000001,Entire home/apt,214,2,1,1.0,327,319 +43528,219517861,Manhattan,Financial District,40.707609999999995,-74.01226,Entire home/apt,235,2,5,1.76,327,333 +43529,219517861,Manhattan,Financial District,40.70602,-74.0123,Entire home/apt,244,2,2,0.98,327,315 +43530,219517861,Manhattan,Financial District,40.70715,-74.0103,Entire home/apt,495,2,7,2.5,327,265 +43531,10696263,Brooklyn,Bushwick,40.69058,-73.91303,Private room,60,7,0,,1,0 +43532,219517861,Manhattan,Financial District,40.70653,-74.01088,Entire home/apt,398,2,0,,327,279 +43533,254107226,Manhattan,West Village,40.735929999999996,-74.00438,Entire home/apt,260,3,2,1.03,1,10 +43534,217498918,Brooklyn,Williamsburg,40.71072,-73.94207,Entire home/apt,230,2,10,3.57,1,169 +43535,102588471,Queens,Arverne,40.59356,-73.79436,Entire home/apt,95,1,6,2.2,1,35 +43536,219517861,Manhattan,Financial District,40.70632,-74.01188,Entire home/apt,229,2,2,1.5,327,338 +43537,10606171,Queens,Astoria,40.762570000000004,-73.92161999999999,Private room,90,1,12,4.04,1,104 +43538,219517861,Manhattan,Financial District,40.70645,-74.0118,Entire home/apt,240,2,3,1.7,327,323 +43539,41949280,Brooklyn,Fort Greene,40.6871,-73.97575,Private room,90,5,0,,1,85 +43540,219517861,Manhattan,Financial District,40.7075,-74.01079,Entire home/apt,236,2,10,3.7,327,319 +43541,219517861,Manhattan,Financial District,40.70793,-74.01043,Entire home/apt,229,2,11,4.52,327,341 +43542,41848631,Brooklyn,Boerum Hill,40.68727,-73.98956,Entire home/apt,160,2,1,1.0,1,5 +43543,219517861,Manhattan,Financial District,40.707840000000004,-74.0107,Entire home/apt,229,2,7,2.8,327,327 +43544,40832103,Manhattan,Chelsea,40.74005,-74.00071,Entire home/apt,154,3,0,,1,18 +43545,19171259,Manhattan,Murray Hill,40.74805,-73.97855,Entire home/apt,200,3,6,2.28,1,1 +43546,2793778,Queens,Forest Hills,40.71597,-73.83543,Shared room,35,4,1,1.0,5,332 +43547,19645976,Brooklyn,Williamsburg,40.708909999999996,-73.96342,Private room,169,3,7,3.56,1,72 +43548,88171838,Brooklyn,Bay Ridge,40.636109999999995,-74.03178,Private room,75,1,16,5.27,4,134 +43549,120431726,Brooklyn,Williamsburg,40.71994,-73.94085,Entire home/apt,240,2,2,1.18,2,0 +43550,88171838,Brooklyn,Bay Ridge,40.63521,-74.03197,Private room,75,1,7,2.88,4,361 +43551,253118370,Queens,Corona,40.74666,-73.85781,Private room,50,1,6,2.43,2,164 +43552,46714344,Manhattan,Gramercy,40.73568,-73.98188,Private room,95,2,4,1.43,1,0 +43553,171008642,Brooklyn,Williamsburg,40.72005,-73.95704,Private room,120,2,14,4.83,1,18 +43554,254150644,Manhattan,Washington Heights,40.84661,-73.93444000000001,Private room,60,2,16,5.78,1,216 +43555,219517861,Manhattan,Financial District,40.707229999999996,-74.01086,Entire home/apt,229,2,3,1.55,327,340 +43556,254157091,Manhattan,Upper East Side,40.771159999999995,-73.95776,Entire home/apt,130,3,7,2.84,1,5 +43557,254159261,Brooklyn,Bedford-Stuyvesant,40.68481,-73.9296,Entire home/apt,100,2,15,6.52,1,37 +43558,219517861,Manhattan,Upper East Side,40.7644,-73.9633,Entire home/apt,164,29,0,,327,221 +43559,254164653,Manhattan,Hell's Kitchen,40.758959999999995,-73.9956,Entire home/apt,150,7,4,2.67,1,213 +43560,254165437,Manhattan,Tribeca,40.71492,-74.01154,Entire home/apt,355,4,3,1.11,1,365 +43561,219517861,Manhattan,Upper East Side,40.76291,-73.96448000000001,Entire home/apt,150,29,2,1.02,327,220 +43562,161061302,Manhattan,Upper West Side,40.80004,-73.96838000000001,Private room,89,1,9,3.42,2,52 +43563,253192168,Manhattan,West Village,40.73037,-74.00497,Entire home/apt,1799,2,0,,1,270 +43564,249479517,Bronx,Soundview,40.82864,-73.87609,Private room,45,2,6,2.28,2,24 +43565,253507120,Manhattan,Upper East Side,40.7649,-73.96795,Entire home/apt,395,7,4,2.35,1,279 +43566,254172441,Manhattan,Upper East Side,40.78034,-73.94861,Private room,70,1,4,2.0,1,0 +43567,2727975,Brooklyn,Bedford-Stuyvesant,40.68393,-73.91528000000001,Entire home/apt,134,3,4,4.0,1,245 +43568,254189342,Manhattan,Chelsea,40.75104,-73.99544,Entire home/apt,200,4,1,1.0,1,228 +43569,5333953,Brooklyn,Bedford-Stuyvesant,40.692479999999996,-73.93162,Entire home/apt,215,2,5,1.9,1,18 +43570,3773866,Manhattan,Harlem,40.81824,-73.93919,Private room,85,2,1,0.42,2,77 +43571,9494211,Brooklyn,Columbia St,40.682959999999994,-74.00378,Entire home/apt,350,6,0,,1,61 +43572,137358866,Brooklyn,Bushwick,40.69198,-73.91168,Private room,48,30,0,,103,267 +43573,60127679,Brooklyn,Bedford-Stuyvesant,40.68553,-73.92569,Private room,65,1,20,6.59,2,23 +43574,107434423,Manhattan,Theater District,40.75943,-73.98675,Entire home/apt,271,30,0,,232,316 +43575,608700,Brooklyn,Bedford-Stuyvesant,40.691559999999996,-73.93496999999999,Entire home/apt,125,3,9,3.18,1,24 +43576,41844032,Manhattan,Washington Heights,40.85768,-73.92855,Private room,70,2,2,2.0,1,163 +43577,27636707,Manhattan,West Village,40.733259999999994,-74.00511,Entire home/apt,250,3,5,2.24,5,255 +43578,22736811,Brooklyn,Bushwick,40.68808,-73.90985,Entire home/apt,159,2,16,5.39,1,127 +43579,1192716,Manhattan,West Village,40.73272,-74.00797,Entire home/apt,155,2,7,2.44,1,6 +43580,61391963,Manhattan,Midtown,40.762229999999995,-73.97588,Entire home/apt,159,60,0,,91,353 +43581,229600367,Manhattan,Lower East Side,40.719809999999995,-73.9856,Entire home/apt,699,2,0,,1,290 +43582,254320440,Manhattan,Hell's Kitchen,40.75823,-73.99065999999999,Entire home/apt,300,3,8,3.33,1,54 +43583,52826,Manhattan,East Village,40.72235,-73.97771999999999,Entire home/apt,165,30,0,,2,56 +43584,52826,Manhattan,East Village,40.722359999999995,-73.97689,Entire home/apt,140,26,0,,2,46 +43585,22620829,Brooklyn,Williamsburg,40.71102,-73.95829,Private room,75,2,6,2.34,1,0 +43586,144863350,Manhattan,Harlem,40.814820000000005,-73.95192,Private room,51,1,12,4.34,1,0 +43587,216274333,Queens,Fresh Meadows,40.72894,-73.78003000000001,Private room,80,1,2,1.22,1,0 +43588,58024325,Queens,Astoria,40.76001,-73.92313,Private room,700,1,1,0.47,1,125 +43589,1648806,Brooklyn,Williamsburg,40.71439,-73.9409,Private room,90,2,2,1.18,2,174 +43590,5477538,Brooklyn,Clinton Hill,40.69235,-73.96101999999999,Private room,64,5,1,0.68,1,90 +43591,619942,Brooklyn,Cypress Hills,40.68935,-73.87254,Entire home/apt,150,30,0,,6,17 +43592,254358202,Manhattan,Midtown,40.765229999999995,-73.98156999999999,Entire home/apt,549,5,7,2.66,1,207 +43593,18569998,Brooklyn,Bushwick,40.7077,-73.9225,Entire home/apt,100,4,4,1.52,1,11 +43594,67746251,Queens,Ozone Park,40.68268,-73.84976999999999,Entire home/apt,149,1,0,,4,113 +43595,99884541,Brooklyn,South Slope,40.66052,-73.9811,Private room,50,30,0,,1,0 +43596,186678447,Brooklyn,Brooklyn Heights,40.6981,-73.9958,Entire home/apt,550,3,4,4.0,1,215 +43597,140630987,Queens,Flushing,40.75966,-73.81469,Private room,65,1,11,3.79,6,126 +43598,252604696,Manhattan,Chelsea,40.74922,-73.9968,Private room,99,1,4,1.5,20,168 +43599,252604696,Manhattan,Chelsea,40.75094,-73.99662,Private room,199,1,1,0.58,20,160 +43600,222480912,Brooklyn,Bushwick,40.70167,-73.91913000000001,Private room,60,3,0,,2,0 +43601,880797,Manhattan,West Village,40.73131,-74.00619,Entire home/apt,154,3,3,1.14,1,19 +43602,13342325,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92843,Entire home/apt,120,10,0,,1,156 +43603,199833548,Queens,Briarwood,40.70655,-73.80842,Private room,50,1,10,3.37,9,357 +43604,51614766,Bronx,Fordham,40.8667,-73.89115,Private room,70,1,5,1.76,1,364 +43605,254382567,Manhattan,Washington Heights,40.84377,-73.93666,Private room,60,1,18,6.07,1,305 +43606,252636577,Queens,Flushing,40.76,-73.82466,Shared room,26,2,5,1.65,2,90 +43607,223375402,Brooklyn,East New York,40.66195,-73.8936,Private room,65,2,1,0.52,4,352 +43608,254372359,Manhattan,Midtown,40.75452,-73.97091999999999,Entire home/apt,250,5,7,2.44,1,161 +43609,154080858,Brooklyn,Williamsburg,40.70621,-73.93663000000001,Private room,70,2,18,6.67,1,205 +43610,57457584,Brooklyn,Bushwick,40.68523,-73.90665,Entire home/apt,65,10,2,0.95,1,42 +43611,223087887,Queens,Corona,40.74116,-73.86705,Shared room,25,2,10,3.45,8,344 +43612,169490939,Queens,Astoria,40.7684,-73.92066,Entire home/apt,115,3,1,0.42,2,188 +43613,254429373,Manhattan,Financial District,40.70563,-74.00919,Entire home/apt,325,5,7,2.84,1,131 +43614,3286195,Brooklyn,Williamsburg,40.71839,-73.94621,Private room,75,1,8,3.53,1,109 +43615,48684597,Queens,Maspeth,40.73612,-73.89519,Private room,50,1,19,8.03,4,165 +43616,7875127,Brooklyn,Crown Heights,40.67468,-73.96149,Private room,65,2,1,0.36,1,0 +43617,211400652,Staten Island,Arden Heights,40.55762,-74.19626,Entire home/apt,70,5,1,1.0,1,55 +43618,253753123,Brooklyn,Borough Park,40.63112,-73.99531999999999,Private room,39,1,9,3.7,1,11 +43619,253690060,Bronx,Pelham Gardens,40.86674,-73.8428,Private room,75,5,0,,1,188 +43620,5549854,Manhattan,West Village,40.73684,-74.00844000000001,Entire home/apt,170,4,2,1.36,1,5 +43621,236430571,Brooklyn,Flatlands,40.6316,-73.94559,Entire home/apt,80,1,2,1.02,1,132 +43622,9693094,Brooklyn,Williamsburg,40.70734,-73.96417,Private room,71,2,5,2.88,1,182 +43623,2793778,Queens,Forest Hills,40.71692,-73.83439,Shared room,33,4,0,,5,334 +43624,87156911,Queens,Ozone Park,40.6752,-73.8552,Entire home/apt,100,1,15,5.84,1,326 +43625,254567452,Manhattan,Inwood,40.87079,-73.91960999999999,Private room,70,1,7,2.59,1,73 +43626,53481729,Manhattan,Midtown,40.75104,-73.9852,Entire home/apt,275,1,0,,1,0 +43627,253429887,Manhattan,Upper West Side,40.7762,-73.98028000000001,Entire home/apt,274,4,9,3.55,1,34 +43628,401659,Brooklyn,Boerum Hill,40.68581,-73.9833,Entire home/apt,140,4,2,0.97,1,77 +43629,11902072,Manhattan,East Village,40.73036,-73.98701,Entire home/apt,130,2,6,2.81,1,27 +43630,254592145,Queens,Queens Village,40.70657,-73.72932,Private room,49,1,1,0.37,1,0 +43631,146484191,Queens,Springfield Gardens,40.66377,-73.76785,Entire home/apt,100,2,10,4.23,1,353 +43632,253906467,Manhattan,Hell's Kitchen,40.764829999999996,-73.98975,Shared room,85,1,12,4.09,9,349 +43633,13500337,Brooklyn,East New York,40.66641,-73.89133000000001,Private room,65,3,2,0.8,2,364 +43634,253978780,Manhattan,Midtown,40.7528,-73.97091999999999,Entire home/apt,150,12,4,1.38,1,118 +43635,254607256,Brooklyn,DUMBO,40.704159999999995,-73.98999,Entire home/apt,250,30,0,,2,365 +43636,254607256,Brooklyn,DUMBO,40.70238,-73.99181,Entire home/apt,250,30,0,,2,0 +43637,254518753,Manhattan,Little Italy,40.7203,-73.99663000000001,Entire home/apt,139,31,4,1.52,1,139 +43638,51434683,Manhattan,Harlem,40.80717,-73.94386,Entire home/apt,110,2,6,2.31,1,0 +43639,42615337,Manhattan,East Village,40.722409999999996,-73.98554,Entire home/apt,180,5,1,1.0,1,32 +43640,85385725,Manhattan,Midtown,40.76494,-73.97822,Private room,300,1,1,0.35,2,364 +43641,251508221,Manhattan,East Harlem,40.79834,-73.94337,Entire home/apt,300,2,1,0.55,1,180 +43642,2312420,Queens,Astoria,40.75845,-73.9111,Entire home/apt,200,5,4,2.35,2,95 +43643,102221050,Manhattan,Hell's Kitchen,40.76051,-73.98791999999999,Entire home/apt,220,1,0,,2,277 +43644,4204942,Brooklyn,Williamsburg,40.704029999999996,-73.9428,Private room,69,2,1,1.0,1,36 +43645,204733512,Queens,East Elmhurst,40.761109999999995,-73.88408000000001,Private room,45,3,13,5.42,2,80 +43646,28580275,Manhattan,Midtown,40.75625,-73.96415999999999,Private room,119,2,6,2.69,4,297 +43647,155902664,Queens,Astoria,40.76829,-73.92625,Entire home/apt,125,1,14,4.72,1,328 +43648,55782090,Manhattan,Upper East Side,40.78582,-73.95546,Entire home/apt,145,31,1,0.77,2,304 +43649,120763629,Brooklyn,Bath Beach,40.60471,-74.00243,Private room,59,2,0,,2,361 +43650,60754157,Queens,Astoria,40.766490000000005,-73.92356,Entire home/apt,225,2,3,1.23,1,23 +43651,194716858,Brooklyn,Sea Gate,40.574529999999996,-74.00828,Entire home/apt,125,10,1,1.0,1,180 +43652,26071530,Brooklyn,Crown Heights,40.675329999999995,-73.94889,Entire home/apt,100,2,6,2.54,2,0 +43653,253474169,Manhattan,Midtown,40.74615,-73.98872,Entire home/apt,800,3,13,4.59,1,84 +43654,18885469,Manhattan,Chinatown,40.71483,-73.99801,Shared room,53,1,7,2.92,1,58 +43655,242631139,Brooklyn,East Flatbush,40.64695,-73.93121,Private room,100,2,3,1.14,4,365 +43656,110907551,Manhattan,Midtown,40.74501,-73.98319000000001,Private room,150,10,0,,2,89 +43657,20235361,Manhattan,Upper West Side,40.771229999999996,-73.98782,Entire home/apt,140,7,0,,1,24 +43658,253118370,Queens,Flushing,40.76409,-73.82928000000001,Private room,53,1,23,8.73,2,161 +43659,371936,Brooklyn,Williamsburg,40.717040000000004,-73.95799,Private room,89,1,1,1.0,1,44 +43660,253571094,Queens,Astoria,40.758390000000006,-73.91190999999999,Private room,90,1,9,3.14,2,341 +43661,254771644,Brooklyn,Bushwick,40.69682,-73.93066999999999,Private room,66,2,8,3.08,1,159 +43662,251704655,Bronx,Port Morris,40.801429999999996,-73.91353000000001,Entire home/apt,115,2,11,4.46,3,6 +43663,131544841,Manhattan,Kips Bay,40.744690000000006,-73.98037,Entire home/apt,120,2,5,2.05,1,10 +43664,222763653,Manhattan,Morningside Heights,40.81342,-73.9565,Entire home/apt,165,1,15,5.11,1,27 +43665,107434423,Manhattan,Theater District,40.76061,-73.98589,Entire home/apt,353,30,0,,232,337 +43666,251704655,Bronx,Port Morris,40.80273,-73.91519,Entire home/apt,115,4,9,3.97,3,124 +43667,61278683,Queens,Astoria,40.76429,-73.90966999999999,Private room,120,2,6,4.62,1,16 +43668,93763302,Queens,Arverne,40.59908,-73.79133,Entire home/apt,137,1,4,2.18,1,273 +43669,104368542,Queens,Long Island City,40.74613,-73.94141,Entire home/apt,150,2,5,3.33,1,103 +43670,8748976,Brooklyn,Bedford-Stuyvesant,40.68807,-73.95425999999999,Private room,4200,114,0,,1,347 +43671,38503810,Brooklyn,Williamsburg,40.715540000000004,-73.96225,Entire home/apt,129,2,0,,1,25 +43672,73049484,Brooklyn,Crown Heights,40.66623,-73.92874,Entire home/apt,100,50,0,,2,225 +43673,35224817,Manhattan,Upper East Side,40.7613,-73.96152,Entire home/apt,220,1,0,,1,32 +43674,137358866,Queens,Woodside,40.74496,-73.90779,Private room,59,30,0,,103,252 +43675,186325219,Manhattan,Washington Heights,40.84008,-73.93684,Private room,100,5,0,,1,365 +43676,255173566,Manhattan,Hell's Kitchen,40.76124,-74.00059,Entire home/apt,199,15,1,0.38,1,179 +43677,28580275,Manhattan,Midtown,40.756609999999995,-73.96396,Private room,100,2,4,1.82,4,314 +43678,96219565,Queens,Flushing,40.75908,-73.80845,Entire home/apt,115,3,2,2.0,1,360 +43679,253873710,Manhattan,Upper West Side,40.7867,-73.97594000000001,Entire home/apt,349,5,5,1.95,1,220 +43680,137274917,Manhattan,Hell's Kitchen,40.76037,-73.99171,Private room,110,1,10,3.53,12,270 +43681,25308624,Brooklyn,Bedford-Stuyvesant,40.681290000000004,-73.93437,Private room,75,5,4,2.03,1,313 +43682,46430057,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94431,Entire home/apt,60,1,7,7.0,1,17 +43683,69831679,Manhattan,Lower East Side,40.72059,-73.98514,Entire home/apt,170,3,6,2.57,1,235 +43684,73676969,Bronx,Williamsbridge,40.87724,-73.85047,Private room,56,2,4,3.24,3,70 +43685,255216752,Bronx,Throgs Neck,40.828070000000004,-73.82418,Entire home/apt,80,1,0,,1,1 +43686,1200192,Brooklyn,Bushwick,40.69767,-73.93096,Private room,99,2,0,,1,1 +43687,163169045,Staten Island,Prince's Bay,40.52293,-74.21238000000001,Entire home/apt,85,2,8,3.33,1,66 +43688,136122177,Manhattan,Kips Bay,40.74263,-73.97639000000001,Private room,100,6,3,1.3,1,0 +43689,7216350,Manhattan,Lower East Side,40.72152,-73.98625,Shared room,117,1,5,2.03,1,139 +43690,10951481,Brooklyn,Williamsburg,40.71092,-73.96717,Entire home/apt,249,30,0,,5,222 +43691,226699782,Manhattan,Lower East Side,40.7215,-73.99171,Entire home/apt,120,2,10,5.88,1,87 +43692,161324994,Brooklyn,Bedford-Stuyvesant,40.690540000000006,-73.92793,Private room,36,30,0,,6,58 +43693,255258800,Brooklyn,Midwood,40.61326,-73.94742,Private room,100,1,8,3.0,1,179 +43694,247189581,Brooklyn,Fort Greene,40.68557,-73.97288,Shared room,31,1,2,1.62,5,73 +43695,225055374,Manhattan,Upper East Side,40.77203,-73.95344,Shared room,75,30,0,,3,365 +43696,225055374,Manhattan,Upper East Side,40.771809999999995,-73.953,Shared room,78,30,1,0.63,3,365 +43697,225055374,Manhattan,Upper East Side,40.77019,-73.95449,Shared room,75,30,0,,3,331 +43698,253906467,Manhattan,Hell's Kitchen,40.76661,-73.99082,Shared room,85,1,12,4.44,9,161 +43699,28175069,Manhattan,Financial District,40.71138,-74.00834,Entire home/apt,160,4,3,1.38,1,0 +43700,34312950,Manhattan,East Village,40.72919,-73.98151,Entire home/apt,290,2,10,4.29,1,254 +43701,10149317,Queens,Kew Gardens,40.709270000000004,-73.82948,Private room,50,2,5,1.88,5,319 +43702,201015598,Brooklyn,Bedford-Stuyvesant,40.6783,-73.91055,Shared room,35,1,3,1.11,17,77 +43703,29349060,Queens,St. Albans,40.68687,-73.76809,Private room,67,1,12,4.74,3,365 +43704,141885946,Brooklyn,Williamsburg,40.70961,-73.95598000000001,Entire home/apt,265,1,9,3.8,1,86 +43705,57920236,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95434,Entire home/apt,180,3,1,0.83,1,98 +43706,255178006,Brooklyn,Williamsburg,40.70783,-73.94346,Entire home/apt,180,2,1,0.38,1,10 +43707,128572217,Brooklyn,Bedford-Stuyvesant,40.69117,-73.92805,Private room,36,11,0,,1,48 +43708,49523787,Manhattan,Harlem,40.8273,-73.94951999999999,Private room,55,2,4,1.94,2,76 +43709,238321374,Manhattan,Upper West Side,40.799609999999994,-73.95961,Private room,60,30,0,,32,362 +43710,255408641,Manhattan,Upper East Side,40.76996,-73.95770999999999,Entire home/apt,250,5,7,2.76,1,155 +43711,238321374,Manhattan,Upper West Side,40.7999,-73.95962,Private room,60,30,1,1.0,32,314 +43712,238321374,Manhattan,Upper West Side,40.79848,-73.95983000000001,Private room,60,30,0,,32,328 +43713,254422886,Manhattan,West Village,40.7334,-74.00075,Entire home/apt,250,1,0,,1,76 +43714,92897185,Brooklyn,Borough Park,40.63402,-74.0025,Private room,65,1,9,3.38,2,46 +43715,238321374,Manhattan,Upper West Side,40.79834,-73.96117,Private room,60,30,1,0.79,32,335 +43716,238321374,Manhattan,Upper West Side,40.80004,-73.96066,Private room,60,30,0,,32,334 +43717,255414914,Manhattan,Theater District,40.757459999999995,-73.98795,Entire home/apt,420,5,14,5.06,1,137 +43718,10149317,Queens,Kew Gardens,40.70657,-73.82903,Private room,60,2,7,2.63,5,305 +43719,255420742,Brooklyn,Windsor Terrace,40.6602,-73.98052,Entire home/apt,155,1,7,2.47,1,71 +43720,238321374,Manhattan,Upper West Side,40.79972,-73.96106999999999,Private room,60,30,0,,32,342 +43721,238321374,Manhattan,Upper West Side,40.798120000000004,-73.96082,Private room,60,30,0,,32,341 +43722,46231814,Manhattan,East Village,40.72554,-73.98875,Private room,100,3,4,2.0,3,0 +43723,238321374,Manhattan,Upper West Side,40.80037,-73.9594,Private room,60,30,0,,32,311 +43724,238321374,Manhattan,Upper West Side,40.798629999999996,-73.96103000000001,Private room,60,30,0,,32,348 +43725,238321374,Manhattan,Upper West Side,40.80035,-73.96106,Private room,60,30,0,,32,250 +43726,238321374,Manhattan,Upper West Side,40.79995,-73.96139000000001,Private room,60,30,0,,32,83 +43727,219517861,Manhattan,Financial District,40.70713,-74.01205,Entire home/apt,255,2,4,1.62,327,215 +43728,219517861,Manhattan,Financial District,40.70621,-74.01199,Entire home/apt,229,2,5,1.92,327,350 +43729,219517861,Manhattan,Financial District,40.707609999999995,-74.01078000000001,Entire home/apt,235,2,3,1.11,327,340 +43730,8860345,Brooklyn,Williamsburg,40.713390000000004,-73.96112,Entire home/apt,175,2,3,1.14,1,4 +43731,238321374,Manhattan,Upper West Side,40.800059999999995,-73.96095,Private room,60,30,0,,32,37 +43732,238321374,Manhattan,Upper West Side,40.80036,-73.96075,Private room,60,30,0,,32,51 +43733,255431206,Brooklyn,East Flatbush,40.652390000000004,-73.94454,Private room,40,7,1,0.81,9,346 +43734,42422120,Queens,Forest Hills,40.7201,-73.83723,Shared room,60,2,2,1.11,1,0 +43735,11123552,Brooklyn,Bushwick,40.7011,-73.92194,Private room,50,1,26,9.4,2,74 +43736,255448841,Brooklyn,Bedford-Stuyvesant,40.67994,-73.9135,Private room,60,1,14,5.25,3,20 +43737,219517861,Manhattan,Financial District,40.70779,-74.01249,Entire home/apt,390,2,8,3.04,327,243 +43738,40629507,Manhattan,Upper West Side,40.80238,-73.96736999999999,Entire home/apt,140,1,8,4.36,1,0 +43739,219517861,Manhattan,Financial District,40.70709,-74.01037,Entire home/apt,475,2,7,3.23,327,253 +43740,158694,Manhattan,SoHo,40.72825,-74.0033,Private room,150,5,1,0.43,1,97 +43741,219517861,Manhattan,Financial District,40.70701,-74.01116999999999,Entire home/apt,228,2,1,0.68,327,357 +43742,22553147,Brooklyn,Williamsburg,40.71216,-73.94246,Private room,70,3,12,6.67,3,142 +43743,210019212,Brooklyn,Bushwick,40.70697,-73.92401,Private room,54,5,9,3.75,3,0 +43744,67738361,Manhattan,Hell's Kitchen,40.75966,-73.99277,Entire home/apt,350,1,0,,2,83 +43745,255448841,Brooklyn,Bedford-Stuyvesant,40.67965,-73.91168,Private room,55,1,15,5.92,3,15 +43746,119798153,Manhattan,Upper East Side,40.76853,-73.96406999999999,Private room,79,1,8,4.53,1,31 +43747,359537,Manhattan,West Village,40.73393,-74.00551999999999,Entire home/apt,250,5,0,,1,365 +43748,253836845,Brooklyn,Crown Heights,40.66945,-73.95716999999999,Private room,64,30,1,1.0,7,94 +43749,253836845,Brooklyn,Crown Heights,40.669990000000006,-73.95959,Private room,65,30,1,0.45,7,237 +43750,242631139,Brooklyn,East Flatbush,40.64683,-73.93003,Private room,90,2,6,2.25,4,360 +43751,22784412,Queens,East Elmhurst,40.76402,-73.89098,Private room,44,1,0,,2,0 +43752,10873558,Brooklyn,Park Slope,40.67093,-73.97555,Entire home/apt,101,60,0,,2,32 +43753,19303369,Queens,Elmhurst,40.7387,-73.8771,Private room,33,30,0,,37,31 +43754,253637076,Manhattan,Chelsea,40.74034,-74.00084,Entire home/apt,162,2,6,2.2,1,66 +43755,45578040,Manhattan,Hell's Kitchen,40.76921,-73.99239,Private room,105,1,1,0.37,2,0 +43756,255440488,Manhattan,Hell's Kitchen,40.76347,-73.98776,Entire home/apt,420,5,10,4.48,1,130 +43757,13672021,Brooklyn,Boerum Hill,40.68325,-73.98125999999999,Private room,46,1,0,,1,0 +43758,161324994,Brooklyn,Bedford-Stuyvesant,40.69077,-73.92667,Private room,36,30,0,,6,38 +43759,37917699,Manhattan,Inwood,40.86202,-73.92771,Private room,45,2,2,2.0,1,180 +43760,37792599,Manhattan,East Village,40.72485,-73.98422,Private room,119,2,3,1.32,1,2 +43761,254112876,Manhattan,East Harlem,40.7958,-73.93766,Private room,90,2,8,3.08,2,174 +43762,112909067,Brooklyn,Prospect-Lefferts Gardens,40.6605,-73.94767,Entire home/apt,120,2,9,3.38,1,10 +43763,73397630,Brooklyn,Brighton Beach,40.578590000000005,-73.95962,Entire home/apt,160,2,1,0.42,1,102 +43764,78185278,Bronx,Woodlawn,40.90406,-73.86286,Entire home/apt,65,1,1,1.0,1,29 +43765,62289627,Manhattan,Hell's Kitchen,40.75939,-73.99501,Private room,100,1,1,0.39,1,23 +43766,45776423,Manhattan,Washington Heights,40.85719,-73.93048,Private room,35,3,3,3.0,1,5 +43767,255448841,Brooklyn,Bedford-Stuyvesant,40.68078,-73.91283,Private room,55,1,15,5.49,3,20 +43768,16851857,Bronx,Parkchester,40.835159999999995,-73.86024,Entire home/apt,85,2,1,1.0,4,349 +43769,107950422,Brooklyn,Bushwick,40.68773,-73.91039,Private room,88,28,5,2.73,1,24 +43770,117999420,Manhattan,Upper East Side,40.76236,-73.96481999999999,Private room,160,3,7,2.47,1,81 +43771,64680664,Brooklyn,Bushwick,40.6897,-73.91145999999999,Private room,70,2,8,3.08,3,61 +43772,229386490,Brooklyn,Bedford-Stuyvesant,40.68305,-73.92322,Entire home/apt,76,3,7,4.29,3,285 +43773,2373120,Brooklyn,Bushwick,40.70041,-73.92884000000001,Private room,90,5,2,0.94,2,323 +43774,14909731,Manhattan,Nolita,40.72202,-73.99491,Entire home/apt,200,2,7,3.56,1,252 +43775,25272468,Manhattan,Harlem,40.82032,-73.94464,Private room,59,1,6,4.62,1,74 +43776,137358866,Queens,Sunnyside,40.73614,-73.92068,Private room,35,30,0,,103,245 +43777,15347665,Manhattan,Harlem,40.819,-73.94568000000001,Entire home/apt,160,29,0,,1,0 +43778,255675063,Brooklyn,Williamsburg,40.716640000000005,-73.94534,Entire home/apt,300,15,0,,1,35 +43779,253619642,Manhattan,Hell's Kitchen,40.76412,-73.99173,Entire home/apt,269,5,0,,1,19 +43780,231755465,Manhattan,Chelsea,40.74945,-73.99511,Entire home/apt,99,31,4,1.45,1,165 +43781,9718310,Manhattan,Hell's Kitchen,40.76335,-73.99051,Private room,65,2,3,1.25,1,0 +43782,163365183,Manhattan,Morningside Heights,40.81153,-73.96112,Shared room,34,5,0,,1,14 +43783,2405781,Brooklyn,Williamsburg,40.71139,-73.9598,Entire home/apt,150,2,4,1.71,1,1 +43784,38257294,Brooklyn,Greenpoint,40.72599,-73.95498,Private room,185,1,8,5.45,1,123 +43785,48419016,Manhattan,Financial District,40.70388,-74.0082,Entire home/apt,165,2,6,2.5,1,1 +43786,255787023,Brooklyn,East Flatbush,40.64418,-73.92556,Private room,125,1,11,4.58,1,29 +43787,210193549,Manhattan,Chelsea,40.75114,-73.99843,Entire home/apt,150,8,3,1.05,1,39 +43788,16439835,Manhattan,Harlem,40.81003,-73.94535,Entire home/apt,100,6,0,,1,332 +43789,255811821,Queens,Jamaica,40.687870000000004,-73.77727,Private room,88,2,2,1.5,1,180 +43790,2640420,Brooklyn,Gowanus,40.67435,-73.9891,Private room,99,1,20,10.17,1,1 +43791,147675745,Manhattan,Upper East Side,40.77867,-73.95143,Entire home/apt,151,1,30,11.25,1,42 +43792,57403189,Brooklyn,Crown Heights,40.67637,-73.94309,Entire home/apt,105,2,6,2.25,2,286 +43793,26248578,Manhattan,Civic Center,40.71715,-74.00368,Entire home/apt,345,2,1,0.36,1,179 +43794,255845450,Manhattan,East Harlem,40.7866,-73.94225,Entire home/apt,150,2,2,0.87,1,102 +43795,18007143,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95136,Private room,57,2,12,4.93,1,51 +43796,3128437,Queens,Astoria,40.75792,-73.92249,Private room,120,1,0,,2,89 +43797,114389578,Brooklyn,Bedford-Stuyvesant,40.6794,-73.94996,Private room,34,30,0,,1,40 +43798,6410618,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95004,Private room,65,4,1,0.67,1,17 +43799,255853430,Manhattan,Midtown,40.75886,-73.96596,Entire home/apt,200,5,12,5.63,1,127 +43800,5986790,Manhattan,Washington Heights,40.83532,-73.94428,Private room,47,5,4,1.58,6,272 +43801,255856907,Brooklyn,Crown Heights,40.6756,-73.9251,Private room,100,3,2,1.33,1,163 +43802,254522143,Manhattan,Greenwich Village,40.7277,-74.00104,Entire home/apt,129,31,7,2.8,1,167 +43803,255882354,Brooklyn,Bedford-Stuyvesant,40.67917,-73.94624,Entire home/apt,150,2,3,3.0,1,251 +43804,137581011,Manhattan,Hell's Kitchen,40.76491,-73.98659,Entire home/apt,165,5,0,,1,67 +43805,255890676,Brooklyn,Bushwick,40.69612,-73.92918,Private room,66,2,11,4.23,1,147 +43806,54136018,Bronx,Kingsbridge,40.86925,-73.89974000000001,Private room,35,1,8,8.0,1,48 +43807,255899465,Brooklyn,Bushwick,40.69814,-73.9286,Private room,63,2,10,3.85,1,127 +43808,64675514,Brooklyn,Williamsburg,40.70867,-73.93890999999999,Private room,65,15,1,0.94,1,0 +43809,133130315,Manhattan,Hell's Kitchen,40.76582,-73.98571,Private room,100,3,0,,6,351 +43810,1409287,Manhattan,East Village,40.72777,-73.97951,Private room,180,3,0,,1,91 +43811,107434423,Manhattan,Upper West Side,40.78548,-73.97078,Entire home/apt,352,30,0,,232,202 +43812,255946767,Brooklyn,Greenpoint,40.73292,-73.95395,Entire home/apt,150,2,2,2.0,1,241 +43813,138798990,Manhattan,Tribeca,40.7243,-74.0111,Entire home/apt,225,3,0,,1,42 +43814,255433680,Manhattan,Hell's Kitchen,40.77127,-73.99237,Entire home/apt,360,2,13,4.94,1,251 +43815,27260699,Brooklyn,Bushwick,40.695409999999995,-73.90785,Shared room,28,1,8,3.2,4,41 +43816,255980743,Brooklyn,Cobble Hill,40.688340000000004,-73.9989,Entire home/apt,170,2,5,2.31,1,43 +43817,8518291,Manhattan,East Village,40.7284,-73.99053,Private room,61,30,3,1.76,1,84 +43818,188015014,Brooklyn,Bedford-Stuyvesant,40.69804,-73.94546,Private room,79,2,9,3.33,6,136 +43819,174760879,Manhattan,Lower East Side,40.71697,-73.98605,Entire home/apt,325,4,4,2.03,1,65 +43820,27260699,Brooklyn,Bushwick,40.696059999999996,-73.9095,Shared room,28,1,4,1.71,4,53 +43821,253071059,Manhattan,East Harlem,40.78995,-73.94603000000001,Private room,100,1,7,2.56,1,0 +43822,101790764,Queens,Long Island City,40.74895,-73.9474,Entire home/apt,199,2,6,2.81,2,175 +43823,81712936,Manhattan,Upper East Side,40.78202,-73.94826,Entire home/apt,200,3,3,1.76,2,0 +43824,131171018,Manhattan,Upper West Side,40.773179999999996,-73.98836,Entire home/apt,300,3,2,1.33,1,13 +43825,192752,Brooklyn,Park Slope,40.675990000000006,-73.97664,Entire home/apt,145,5,0,,1,38 +43826,188015014,Brooklyn,Bedford-Stuyvesant,40.69765,-73.94715,Private room,81,2,10,4.17,6,121 +43827,188015014,Brooklyn,Bedford-Stuyvesant,40.69952,-73.9451,Private room,81,2,13,4.87,6,164 +43828,188015014,Brooklyn,Bedford-Stuyvesant,40.69806,-73.94544,Private room,81,1,9,3.8,6,105 +43829,188015014,Brooklyn,Bedford-Stuyvesant,40.69741,-73.94555,Private room,81,2,9,3.91,6,128 +43830,198853982,Brooklyn,Cypress Hills,40.68892,-73.87167,Entire home/apt,100,2,6,2.34,2,150 +43831,188015014,Brooklyn,Bedford-Stuyvesant,40.69915,-73.94709,Private room,81,2,0,,6,150 +43832,147983579,Brooklyn,Bedford-Stuyvesant,40.68946,-73.94181,Entire home/apt,165,4,9,4.03,2,201 +43833,114589786,Brooklyn,Greenpoint,40.72215,-73.94317,Private room,75,5,2,1.2,1,0 +43834,10374669,Manhattan,Hell's Kitchen,40.765370000000004,-73.98767,Private room,92,5,2,0.71,1,187 +43835,256032762,Queens,Elmhurst,40.731359999999995,-73.87402,Private room,70,2,3,1.67,1,0 +43836,242962235,Queens,Ridgewood,40.70913,-73.89486,Private room,34,30,0,,23,324 +43837,251156430,Queens,Woodside,40.74508,-73.90290999999999,Shared room,65,2,8,3.04,1,89 +43838,242962235,Queens,Ridgewood,40.7081,-73.89506999999999,Private room,34,30,0,,23,278 +43839,211136294,Bronx,Schuylerville,40.83715,-73.83489,Private room,60,1,20,7.59,5,343 +43840,242962235,Queens,Ridgewood,40.70722,-73.89614,Private room,34,30,1,0.68,23,281 +43841,90052526,Manhattan,Upper East Side,40.77414,-73.95300999999999,Entire home/apt,140,3,5,2.46,1,18 +43842,53621,Brooklyn,Bedford-Stuyvesant,40.69258,-73.93638,Entire home/apt,95,5,3,2.09,2,120 +43843,242962235,Queens,Ridgewood,40.70775,-73.89471999999999,Private room,34,30,0,,23,201 +43844,42483494,Brooklyn,Windsor Terrace,40.648070000000004,-73.9789,Private room,40,7,0,,1,102 +43845,212629546,Brooklyn,Fort Hamilton,40.61523,-74.02917,Private room,60,4,0,,1,155 +43846,254795926,Brooklyn,Crown Heights,40.671440000000004,-73.94613000000001,Entire home/apt,120,2,14,5.6,1,298 +43847,6790229,Brooklyn,Bedford-Stuyvesant,40.686820000000004,-73.93493000000001,Entire home/apt,130,29,1,1.0,2,283 +43848,133555768,Brooklyn,Bedford-Stuyvesant,40.691159999999996,-73.92658,Private room,35,30,1,0.52,3,53 +43849,8859112,Brooklyn,Bedford-Stuyvesant,40.69214,-73.95217,Entire home/apt,189,3,10,3.66,2,349 +43850,241565326,Queens,Woodside,40.74351,-73.90405,Private room,44,1,11,7.67,2,331 +43851,6790229,Brooklyn,Bedford-Stuyvesant,40.68492,-73.9334,Entire home/apt,135,20,2,1.5,2,285 +43852,173673660,Manhattan,Washington Heights,40.8415,-73.9375,Private room,55,2,6,2.54,1,0 +43853,1709718,Manhattan,Midtown,40.7651,-73.97808,Private room,199,1,1,0.42,2,350 +43854,19057986,Brooklyn,Crown Heights,40.67794,-73.96023000000001,Entire home/apt,400,1,2,0.82,1,362 +43855,251229393,Queens,Long Island City,40.74657,-73.93289,Entire home/apt,129,1,3,1.7,2,95 +43856,256071378,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93231999999999,Entire home/apt,225,2,10,4.17,1,38 +43857,209332627,Manhattan,Washington Heights,40.855309999999996,-73.9283,Private room,75,2,1,0.42,2,58 +43858,133555768,Brooklyn,Bedford-Stuyvesant,40.6908,-73.92784,Private room,35,30,1,1.0,3,53 +43859,133555768,Brooklyn,Bedford-Stuyvesant,40.68938,-73.9263,Private room,35,30,0,,3,54 +43860,255674126,Manhattan,Upper East Side,40.76458,-73.96759,Entire home/apt,159,31,9,3.42,1,157 +43861,66132548,Brooklyn,Cypress Hills,40.68567,-73.87985,Private room,36,1,8,3.69,1,192 +43862,176119156,Brooklyn,Williamsburg,40.70628,-73.9379,Entire home/apt,190,1,13,5.91,1,171 +43863,18765976,Brooklyn,Bushwick,40.69903,-73.9149,Private room,70,1,14,5.32,4,78 +43864,15676792,Brooklyn,Park Slope,40.6763,-73.97287,Entire home/apt,186,5,0,,1,107 +43865,50981314,Brooklyn,Bushwick,40.70205,-73.91338,Entire home/apt,150,2,4,1.64,1,89 +43866,27277379,Manhattan,Harlem,40.814820000000005,-73.94476999999999,Private room,75,2,9,3.75,1,227 +43867,27936743,Brooklyn,Bedford-Stuyvesant,40.68466,-73.94349,Entire home/apt,75,2,4,1.85,1,103 +43868,77515,Manhattan,Washington Heights,40.83266,-73.9414,Private room,45,3,6,2.31,1,4 +43869,18765976,Brooklyn,Bushwick,40.69916,-73.91572,Private room,68,1,9,3.42,4,55 +43870,161357125,Staten Island,Todt Hill,40.610409999999995,-74.11593,Entire home/apt,135,3,2,0.86,3,36 +43871,18416970,Manhattan,Harlem,40.80712,-73.95685999999999,Private room,103,2,14,5.83,1,19 +43872,253906467,Manhattan,Hell's Kitchen,40.7665,-73.98943,Shared room,85,1,9,3.25,9,365 +43873,101965358,Manhattan,East Harlem,40.79551,-73.94813,Entire home/apt,200,7,2,0.95,1,173 +43874,234483148,Manhattan,Harlem,40.80332,-73.94853,Private room,95,1,11,4.58,2,256 +43875,137358866,Queens,Woodside,40.745059999999995,-73.90602,Private room,56,30,0,,103,242 +43876,254542999,Queens,Sunnyside,40.73591,-73.92415,Private room,90,2,12,5.14,1,57 +43877,92897185,Brooklyn,Borough Park,40.6348,-74.00304,Private room,60,1,6,2.25,2,46 +43878,223087887,Queens,Corona,40.74116,-73.86667,Shared room,24,1,4,1.52,8,346 +43879,83615522,Brooklyn,Crown Heights,40.66681,-73.9549,Private room,45,2,4,2.26,1,10 +43880,114502772,Manhattan,Upper West Side,40.80144,-73.96409,Private room,44,2,1,0.55,1,0 +43881,2282687,Brooklyn,Flatbush,40.65164,-73.95533,Entire home/apt,120,4,1,0.48,1,0 +43882,158709729,Manhattan,West Village,40.73264,-74.00421999999999,Entire home/apt,450,2,4,2.55,1,43 +43883,223087887,Queens,Corona,40.74086,-73.86618,Shared room,24,1,3,1.11,8,332 +43884,242962235,Queens,Ridgewood,40.7093,-73.8954,Private room,34,30,0,,23,252 +43885,242962235,Queens,Ridgewood,40.70893,-73.89636,Private room,34,30,0,,23,243 +43886,20851517,Manhattan,Hell's Kitchen,40.76597,-73.9893,Private room,98,6,2,0.97,3,4 +43887,242962235,Queens,Ridgewood,40.70897,-73.89663,Private room,34,30,0,,23,335 +43888,49796888,Manhattan,East Harlem,40.798190000000005,-73.93953,Entire home/apt,500,2,0,,1,55 +43889,242962235,Queens,Ridgewood,40.70762,-73.89526,Private room,34,30,0,,23,317 +43890,242962235,Queens,Ridgewood,40.70862,-73.89536,Private room,34,30,0,,23,314 +43891,229141974,Brooklyn,Williamsburg,40.70409,-73.94078,Entire home/apt,195,2,1,0.47,1,0 +43892,242962235,Queens,Ridgewood,40.70876,-73.89704,Private room,34,30,0,,23,322 +43893,55143966,Brooklyn,Bushwick,40.69764,-73.91585,Private room,62,17,2,0.78,1,21 +43894,274333,Manhattan,Harlem,40.80298,-73.95375,Shared room,20,1,0,,3,2 +43895,242962235,Queens,Ridgewood,40.70769,-73.89641,Private room,34,30,1,1.0,23,325 +43896,242962235,Queens,Ridgewood,40.70885,-73.89634000000001,Private room,34,30,0,,23,136 +43897,242962235,Queens,Ridgewood,40.70937,-73.89702,Private room,34,30,0,,23,192 +43898,61950433,Brooklyn,Clinton Hill,40.69593,-73.97003000000001,Private room,75,1,0,,1,0 +43899,38377515,Bronx,Clason Point,40.81338,-73.85821,Entire home/apt,75,2,5,5.0,1,86 +43900,1786901,Manhattan,Upper East Side,40.78222,-73.9456,Private room,95,3,3,1.1,9,8 +43901,242962235,Queens,Ridgewood,40.70807,-73.89483,Private room,34,30,0,,23,322 +43902,256235740,Brooklyn,Crown Heights,40.66738,-73.93669,Shared room,25,2,1,0.71,3,167 +43903,107245546,Manhattan,Chelsea,40.745779999999996,-73.99091,Private room,130,2,3,3.0,3,132 +43904,43676525,Brooklyn,Bushwick,40.69174,-73.90811,Private room,40,30,0,,1,365 +43905,256235740,Brooklyn,Crown Heights,40.667790000000004,-73.93729,Shared room,45,2,0,,3,179 +43906,35955942,Manhattan,Nolita,40.72365,-73.99377,Private room,150,4,2,1.82,1,6 +43907,255990804,Brooklyn,Crown Heights,40.665490000000005,-73.94615999999999,Entire home/apt,220,2,4,2.03,1,251 +43908,36242952,Queens,Long Island City,40.75009,-73.94864,Private room,85,1,15,6.0,1,67 +43909,71400423,Manhattan,Lower East Side,40.71983,-73.98980999999999,Private room,135,1,10,4.05,3,93 +43910,255431206,Brooklyn,East Flatbush,40.65295,-73.9463,Private room,42,7,4,2.55,9,120 +43911,256299491,Brooklyn,Williamsburg,40.70445,-73.94491,Private room,75,4,5,2.27,1,6 +43912,82380968,Manhattan,Harlem,40.80437,-73.94595,Private room,85,1,3,1.14,1,193 +43913,9380030,Manhattan,East Village,40.72359,-73.98519,Entire home/apt,140,3,1,1.0,1,56 +43914,345087,Manhattan,Harlem,40.82185,-73.9413,Private room,99,2,1,0.42,1,359 +43915,236796242,Brooklyn,Bedford-Stuyvesant,40.68737,-73.94346,Entire home/apt,140,1,3,1.8,1,316 +43916,55203569,Queens,Astoria,40.767520000000005,-73.91433,Entire home/apt,250,3,13,5.49,1,76 +43917,156381151,Manhattan,East Village,40.72607,-73.98625,Entire home/apt,190,2,2,1.4,2,0 +43918,1786901,Manhattan,Upper East Side,40.783640000000005,-73.94586,Entire home/apt,175,3,1,0.45,9,103 +43919,18765976,Brooklyn,Bushwick,40.69899,-73.91667,Private room,65,1,9,3.38,4,66 +43920,18765976,Brooklyn,Bushwick,40.69932,-73.91575999999999,Private room,65,1,7,2.63,4,61 +43921,255190901,Manhattan,Midtown,40.74602,-73.98486,Entire home/apt,339,3,20,7.89,1,86 +43922,248831780,Queens,Astoria,40.76939,-73.92139,Entire home/apt,175,1,0,,1,185 +43923,243226371,Manhattan,East Village,40.72391,-73.98409000000001,Entire home/apt,700,2,8,3.08,1,263 +43924,234956201,Manhattan,Washington Heights,40.835879999999996,-73.93978,Private room,65,2,7,3.75,1,180 +43925,43332874,Bronx,City Island,40.83959,-73.78586999999999,Private room,100,7,0,,1,180 +43926,256341094,Brooklyn,Bushwick,40.6991,-73.92917,Entire home/apt,249,6,4,1.97,2,177 +43927,117476022,Brooklyn,Williamsburg,40.71213,-73.95100000000001,Private room,84,5,0,,1,60 +43928,26910600,Manhattan,Upper West Side,40.79179,-73.96623000000001,Private room,500,1,1,0.49,1,90 +43929,254472726,Manhattan,West Village,40.73198,-74.00525999999999,Entire home/apt,149,31,5,1.92,1,219 +43930,256379094,Brooklyn,Kensington,40.64582,-73.97898,Private room,85,10,0,,1,52 +43931,29953329,Brooklyn,Bedford-Stuyvesant,40.69267,-73.94395,Private room,79,2,2,1.02,2,5 +43932,23066402,Manhattan,Chelsea,40.74371,-73.99622,Entire home/apt,225,3,2,0.83,1,33 +43933,4189194,Manhattan,West Village,40.732859999999995,-74.00463,Entire home/apt,160,3,3,1.88,1,2 +43934,256403429,Brooklyn,East Flatbush,40.654379999999996,-73.95181,Private room,54,1,14,5.32,5,81 +43935,256403429,Brooklyn,East Flatbush,40.65214,-73.95159,Private room,53,1,15,5.56,5,77 +43936,252575404,Brooklyn,Williamsburg,40.71009,-73.95841999999999,Private room,90,3,4,3.53,1,63 +43937,241963980,Queens,Jamaica Hills,40.71757,-73.7961,Private room,65,1,1,1.0,2,139 +43938,10860700,Brooklyn,Williamsburg,40.7121,-73.94346999999999,Entire home/apt,130,10,0,,2,34 +43939,8990490,Manhattan,Washington Heights,40.845420000000004,-73.93945,Private room,55,1,1,0.37,1,157 +43940,44918139,Brooklyn,Williamsburg,40.71093,-73.95815,Entire home/apt,250,31,1,1.0,1,90 +43941,56338076,Manhattan,Harlem,40.81431,-73.93994,Entire home/apt,130,1,6,2.25,3,0 +43942,15617182,Manhattan,Greenwich Village,40.72811,-73.99893,Private room,90,2,4,1.54,1,146 +43943,2513294,Brooklyn,Bushwick,40.70333,-73.92557,Entire home/apt,80,1,0,,1,213 +43944,255431206,Brooklyn,East Flatbush,40.65116,-73.94525,Private room,40,7,1,1.0,9,172 +43945,255431206,Brooklyn,East Flatbush,40.65286,-73.94532,Private room,40,7,2,0.81,9,151 +43946,91183632,Brooklyn,Williamsburg,40.71331,-73.9627,Private room,75,1,0,,1,43 +43947,16881166,Manhattan,Midtown,40.75563,-73.9691,Entire home/apt,200,28,0,,1,82 +43948,255431206,Brooklyn,East Flatbush,40.6529,-73.94493,Private room,40,7,2,0.91,9,114 +43949,127831150,Brooklyn,Crown Heights,40.67633,-73.94403,Entire home/apt,80,5,9,3.8,2,225 +43950,233986410,Bronx,Parkchester,40.837540000000004,-73.85764,Private room,150,1,0,,1,267 +43951,15853933,Queens,Astoria,40.76623,-73.91243,Private room,69,1,9,3.42,1,35 +43952,58521727,Manhattan,Morningside Heights,40.80958,-73.95743,Entire home/apt,130,8,0,,1,17 +43953,10714783,Manhattan,Financial District,40.70824,-74.00476,Entire home/apt,200,2,4,2.45,1,38 +43954,79246014,Brooklyn,Williamsburg,40.71975,-73.94613000000001,Entire home/apt,110,2,3,2.57,1,26 +43955,256403429,Brooklyn,Flatbush,40.65228,-73.95286,Private room,54,1,11,4.12,5,62 +43956,256403429,Brooklyn,Flatbush,40.65235,-73.95347,Private room,54,1,10,4.35,5,70 +43957,138962369,Bronx,Edenwald,40.890390000000004,-73.83185999999999,Entire home/apt,50,3,8,3.04,1,34 +43958,256479489,Brooklyn,Bath Beach,40.60456,-74.00117,Private room,49,2,1,0.42,2,316 +43959,8485868,Brooklyn,Bushwick,40.70044,-73.93472,Entire home/apt,150,3,0,,1,17 +43960,10188543,Queens,Richmond Hill,40.69318,-73.83418,Private room,60,1,17,6.71,1,1 +43961,119774078,Queens,Ridgewood,40.70728,-73.90572,Private room,60,4,2,0.73,1,51 +43962,121193088,Brooklyn,DUMBO,40.70315,-73.99424,Entire home/apt,100,2,2,0.79,1,0 +43963,256502464,Manhattan,Harlem,40.82715,-73.94667,Private room,55,1,20,7.41,3,175 +43964,256504089,Manhattan,Upper West Side,40.80337,-73.96511,Private room,69,20,0,,1,0 +43965,256012654,Manhattan,Upper West Side,40.80169,-73.96339,Private room,40,15,0,,1,17 +43966,256510832,Brooklyn,Brownsville,40.671440000000004,-73.91457,Entire home/apt,180,2,7,2.63,1,352 +43967,256462453,Queens,Jamaica,40.69115,-73.80617,Entire home/apt,350,1,9,3.42,1,358 +43968,70026919,Brooklyn,Williamsburg,40.71709,-73.96035,Private room,66,7,1,0.37,1,281 +43969,45834595,Brooklyn,Bushwick,40.705040000000004,-73.91868000000001,Entire home/apt,120,3,3,1.13,1,3 +43970,253906467,Manhattan,Hell's Kitchen,40.76447,-73.99103000000001,Shared room,69,1,4,1.48,9,364 +43971,253467179,Queens,Forest Hills,40.73105,-73.85318000000001,Private room,70,2,6,2.86,1,288 +43972,49623247,Manhattan,Washington Heights,40.85167,-73.92868,Entire home/apt,350,3,8,3.29,1,243 +43973,157699374,Manhattan,East Village,40.722,-73.98255999999999,Entire home/apt,179,1,4,1.52,1,0 +43974,206482566,Manhattan,Stuyvesant Town,40.73193,-73.97971,Private room,115,1,0,,2,0 +43975,41348157,Manhattan,East Harlem,40.7929,-73.9391,Private room,90,2,2,2.0,3,0 +43976,32167398,Queens,Astoria,40.75736,-73.92815,Private room,65,1,11,4.58,5,300 +43977,32167398,Queens,Astoria,40.757709999999996,-73.92724,Private room,50,1,3,1.34,5,318 +43978,32167398,Queens,Astoria,40.75925,-73.92506,Private room,45,1,6,2.31,5,342 +43979,156850005,Queens,Jackson Heights,40.75606,-73.87787,Private room,100,1,3,1.73,2,350 +43980,39077228,Manhattan,East Village,40.72827,-73.98040999999999,Private room,83,2,2,0.73,1,15 +43981,256581747,Brooklyn,Williamsburg,40.706309999999995,-73.94467,Private room,72,30,0,,3,333 +43982,62066342,Manhattan,Harlem,40.806909999999995,-73.94626,Private room,98,7,2,1.22,2,321 +43983,12321281,Manhattan,Chelsea,40.74483,-73.99649000000001,Private room,110,30,0,,1,145 +43984,27636707,Manhattan,West Village,40.733670000000004,-74.00497,Entire home/apt,250,3,2,0.88,5,265 +43985,256581747,Brooklyn,Williamsburg,40.7062,-73.94237,Private room,72,30,0,,3,318 +43986,256581747,Brooklyn,Williamsburg,40.70709,-73.9426,Private room,73,30,0,,3,364 +43987,200282080,Manhattan,Chelsea,40.751290000000004,-73.99538000000001,Entire home/apt,250,2,1,1.0,1,0 +43988,251768799,Queens,Richmond Hill,40.69927,-73.82643,Private room,150,1,1,0.4,1,0 +43989,184750740,Bronx,Morrisania,40.82565,-73.91095,Shared room,77,1,0,,4,179 +43990,10415675,Manhattan,Harlem,40.82289,-73.954,Private room,120,3,1,0.39,7,339 +43991,73233066,Brooklyn,Williamsburg,40.711940000000006,-73.95428000000001,Private room,165,1,0,,1,0 +43992,102287310,Manhattan,Hell's Kitchen,40.76704,-73.98646,Entire home/apt,199,3,0,,3,358 +43993,22388757,Manhattan,Washington Heights,40.85075,-73.93982,Entire home/apt,120,3,3,1.7,2,0 +43994,204244117,Manhattan,Harlem,40.82609,-73.94948000000001,Private room,49,1,11,5.5,2,180 +43995,256634850,Brooklyn,Bushwick,40.68773,-73.90589,Entire home/apt,149,2,1,1.0,1,0 +43996,253836845,Brooklyn,Crown Heights,40.66981,-73.95734,Private room,68,30,2,0.92,7,226 +43997,7943066,Brooklyn,Williamsburg,40.71963,-73.94149,Private room,75,2,10,3.85,2,62 +43998,897871,Brooklyn,Bedford-Stuyvesant,40.681709999999995,-73.93346,Private room,90,4,1,0.75,1,0 +43999,235329443,Brooklyn,Boerum Hill,40.68438,-73.98436,Entire home/apt,150,3,12,6.55,1,173 +44000,152503673,Brooklyn,East New York,40.67562,-73.87763000000001,Entire home/apt,89,3,11,4.58,1,13 +44001,219517861,Manhattan,Financial District,40.70613,-74.01066999999999,Entire home/apt,228,2,5,1.9,327,347 +44002,219517861,Manhattan,Financial District,40.70714,-74.01208000000001,Entire home/apt,256,2,4,2.79,327,292 +44003,219517861,Manhattan,Financial District,40.7075,-74.01096,Entire home/apt,188,2,6,2.65,327,329 +44004,219517861,Manhattan,Financial District,40.70754,-74.01205999999999,Entire home/apt,240,2,6,2.69,327,340 +44005,219517861,Manhattan,Financial District,40.70701,-74.01176,Entire home/apt,255,2,6,2.57,327,237 +44006,2992287,Brooklyn,Prospect Heights,40.67405,-73.96788000000001,Entire home/apt,199,3,4,2.4,1,21 +44007,219517861,Manhattan,Financial District,40.706309999999995,-74.01225,Entire home/apt,228,2,5,3.0,327,349 +44008,24525241,Manhattan,Upper West Side,40.77341,-73.9812,Entire home/apt,166,17,0,,1,102 +44009,33214549,Manhattan,East Village,40.72613,-73.98447,Private room,99,1,9,3.42,5,30 +44010,156286838,Queens,Astoria,40.77698,-73.93389,Entire home/apt,150,7,0,,1,342 +44011,33214549,Manhattan,East Village,40.7267,-73.98316,Private room,99,1,5,1.9,5,0 +44012,189165590,Brooklyn,Bedford-Stuyvesant,40.69037,-73.94542,Entire home/apt,150,3,2,0.92,1,0 +44013,106418986,Brooklyn,Greenpoint,40.73473,-73.95206999999999,Entire home/apt,250,3,0,,1,62 +44014,221213143,Manhattan,Kips Bay,40.7431,-73.98137,Entire home/apt,790,1,4,1.82,9,298 +44015,15757322,Manhattan,Washington Heights,40.83611,-73.94162,Entire home/apt,161,2,13,4.87,2,294 +44016,71400423,Manhattan,Lower East Side,40.71958,-73.9905,Private room,123,1,7,4.47,3,146 +44017,256680416,Manhattan,Murray Hill,40.74818,-73.98246999999999,Entire home/apt,299,2,7,3.18,1,16 +44018,256683560,Bronx,Belmont,40.85398,-73.88736999999999,Shared room,49,1,2,0.94,2,358 +44019,3940207,Brooklyn,Williamsburg,40.721140000000005,-73.96307,Entire home/apt,125,20,1,1.0,1,122 +44020,71400423,Manhattan,Lower East Side,40.72139,-73.9896,Private room,123,1,10,4.35,3,0 +44021,67651553,Manhattan,Upper West Side,40.80237,-73.96695,Entire home/apt,120,20,0,,2,95 +44022,5547103,Bronx,Parkchester,40.8353,-73.85750999999999,Private room,75,3,0,,1,81 +44023,230192818,Manhattan,East Village,40.72222,-73.98221,Entire home/apt,190,2,7,3.28,2,78 +44024,60737457,Queens,Ditmars Steinway,40.7733,-73.90569,Entire home/apt,225,1,23,9.58,1,109 +44025,11297371,Brooklyn,Bushwick,40.69923,-73.93089,Private room,50,2,8,3.38,2,292 +44026,43502871,Manhattan,Inwood,40.86517,-73.92995,Private room,95,3,0,,1,216 +44027,219717193,Manhattan,Gramercy,40.73431,-73.98167,Private room,59,5,4,1.74,2,10 +44028,256697785,Manhattan,Chelsea,40.75034,-73.99059,Entire home/apt,250,3,4,2.35,1,144 +44029,679431,Queens,Woodhaven,40.69345,-73.86674000000001,Private room,65,2,4,1.69,1,180 +44030,219517861,Manhattan,Financial District,40.70597,-74.01248000000001,Private room,616,2,5,2.46,327,255 +44031,219517861,Manhattan,Financial District,40.707,-74.01208000000001,Entire home/apt,408,2,2,0.95,327,273 +44032,256710914,Manhattan,Chelsea,40.74694,-74.0013,Entire home/apt,100,2,3,3.0,1,2 +44033,219517861,Manhattan,Financial District,40.70756,-74.01106999999999,Private room,264,2,2,0.83,327,348 +44034,3750764,Manhattan,Chelsea,40.7506,-74.00388000000001,Entire home/apt,6800,1,0,,6,364 +44035,256718904,Brooklyn,Gowanus,40.6771,-73.98414,Private room,75,1,1,0.37,1,82 +44036,32167398,Queens,Astoria,40.75759,-73.92676999999999,Private room,50,1,7,2.88,5,336 +44037,32167398,Queens,Long Island City,40.75894,-73.92864,Private room,60,1,4,1.52,5,355 +44038,8756834,Brooklyn,Midwood,40.62635,-73.9725,Entire home/apt,80,2,1,0.48,1,33 +44039,256743247,Queens,Bayside,40.77125,-73.7809,Private room,49,1,14,6.36,2,72 +44040,107434423,Manhattan,Midtown,40.745459999999994,-73.98679,Entire home/apt,377,30,0,,232,341 +44041,107434423,Manhattan,Midtown,40.74403,-73.98701,Entire home/apt,274,30,0,,232,353 +44042,107434423,Manhattan,Kips Bay,40.7385,-73.982,Entire home/apt,314,30,0,,232,337 +44043,107434423,Manhattan,Kips Bay,40.73905,-73.98225,Entire home/apt,314,30,0,,232,338 +44044,22543458,Queens,Ozone Park,40.67775,-73.8601,Entire home/apt,199,1,14,6.36,4,249 +44045,4982496,Brooklyn,Bushwick,40.70373,-73.92723000000001,Private room,85,4,0,,1,0 +44046,256521664,Manhattan,Chinatown,40.71692,-73.9947,Entire home/apt,239,31,3,1.76,1,176 +44047,25346924,Brooklyn,Greenpoint,40.72602,-73.95848000000001,Entire home/apt,118,4,1,0.7,1,30 +44048,256817214,Manhattan,Harlem,40.81597,-73.94114,Private room,90,5,1,0.83,1,354 +44049,15734998,Brooklyn,Crown Heights,40.669129999999996,-73.94028,Entire home/apt,91,2,2,2.0,1,9 +44050,23003756,Brooklyn,Williamsburg,40.71777,-73.94874,Private room,90,2,2,1.18,1,0 +44051,125755479,Queens,Astoria,40.76398,-73.91409,Private room,100,1,0,,1,0 +44052,256505094,Queens,Cambria Heights,40.69955,-73.72247,Entire home/apt,180,1,0,,1,83 +44053,82746113,Manhattan,Upper West Side,40.786840000000005,-73.96911999999999,Entire home/apt,250,1,0,,2,88 +44054,38217925,Brooklyn,Greenpoint,40.7342,-73.95707,Entire home/apt,205,5,0,,2,64 +44055,155961583,Brooklyn,Bushwick,40.7007,-73.93401,Private room,69,2,8,3.75,1,131 +44056,256836581,Bronx,Fordham,40.8716,-73.89177,Entire home/apt,92,2,9,4.82,1,48 +44057,109402182,Manhattan,Harlem,40.823609999999995,-73.94599000000001,Private room,59,25,3,1.17,1,24 +44058,255539744,Manhattan,Hell's Kitchen,40.753640000000004,-73.99291,Entire home/apt,149,31,4,1.85,1,135 +44059,219517861,Manhattan,Financial District,40.70776,-74.01169,Entire home/apt,396,2,6,3.0,327,328 +44060,219517861,Manhattan,Financial District,40.70735,-74.01221,Entire home/apt,215,2,1,1.0,327,346 +44061,6752504,Brooklyn,Gravesend,40.596090000000004,-73.97485999999999,Entire home/apt,120,5,0,,3,23 +44062,150879430,Manhattan,Midtown,40.74944,-73.98338000000001,Private room,99,14,0,,1,25 +44063,49101398,Brooklyn,Gravesend,40.59725,-73.97684,Entire home/apt,99,2,3,3.0,3,97 +44064,256857295,Brooklyn,Williamsburg,40.7128,-73.9396,Private room,100,2,4,1.85,1,169 +44065,234227365,Manhattan,Chelsea,40.74073,-73.99884,Entire home/apt,180,5,1,0.42,1,83 +44066,253836845,Brooklyn,Crown Heights,40.66977,-73.95725,Private room,68,30,2,2.0,7,246 +44067,70011812,Manhattan,East Village,40.72625,-73.98625,Entire home/apt,169,1,16,7.27,2,50 +44068,253836845,Brooklyn,Crown Heights,40.67155,-73.95854,Private room,66,30,2,1.0,7,223 +44069,14950774,Brooklyn,Brooklyn Heights,40.690940000000005,-73.99293,Entire home/apt,160,7,0,,1,98 +44070,1146958,Manhattan,Kips Bay,40.73859,-73.98218,Entire home/apt,89,360,0,,4,364 +44071,253836845,Brooklyn,Crown Heights,40.67058,-73.9573,Private room,68,30,1,0.6,7,226 +44072,98978751,Brooklyn,Crown Heights,40.67052,-73.95612,Private room,70,1,4,2.67,1,153 +44073,256487516,Brooklyn,East New York,40.660379999999996,-73.88761,Entire home/apt,40,14,1,0.54,1,178 +44074,4613096,Manhattan,Lower East Side,40.7208,-73.98959,Private room,90,3,2,2.0,1,34 +44075,26973868,Manhattan,Washington Heights,40.842209999999994,-73.93705,Entire home/apt,90,4,4,1.88,1,51 +44076,181092484,Manhattan,Lower East Side,40.71833,-73.98935999999999,Private room,99,1,7,2.92,3,356 +44077,218883687,Brooklyn,East Flatbush,40.63964,-73.94362,Shared room,50,1,8,3.0,2,365 +44078,256899020,Brooklyn,Brownsville,40.657990000000005,-73.91595,Private room,57,4,7,2.84,1,35 +44079,6752504,Brooklyn,Gravesend,40.601209999999995,-73.97515,Entire home/apt,200,4,1,0.37,3,173 +44080,88602231,Brooklyn,Kensington,40.647220000000004,-73.9736,Entire home/apt,111,14,0,,1,21 +44081,84118689,Manhattan,Upper East Side,40.77362,-73.94886,Entire home/apt,130,1,11,4.34,1,26 +44082,181092484,Manhattan,Lower East Side,40.719229999999996,-73.98581999999999,Private room,119,1,7,2.88,3,360 +44083,28823649,Manhattan,SoHo,40.72611,-74.00336999999999,Entire home/apt,194,1,0,,3,89 +44084,256496159,Manhattan,Hell's Kitchen,40.75662,-73.99333,Private room,500,31,1,0.5,3,0 +44085,256496159,Manhattan,Hell's Kitchen,40.7574,-73.99395,Private room,500,31,2,0.82,3,0 +44086,347045,Queens,Astoria,40.758070000000004,-73.92631999999999,Private room,125,2,5,2.34,1,90 +44087,152850919,Brooklyn,Williamsburg,40.714459999999995,-73.96229,Entire home/apt,200,3,0,,1,179 +44088,156505456,Brooklyn,East New York,40.667390000000005,-73.87379,Private room,65,3,2,0.95,13,365 +44089,256981777,Manhattan,East Village,40.72388,-73.97901999999999,Entire home/apt,245,30,0,,1,16 +44090,256987188,Manhattan,Upper East Side,40.77507,-73.94785,Entire home/apt,150,1,1,0.47,1,33 +44091,177031514,Brooklyn,Sheepshead Bay,40.584379999999996,-73.95564,Private room,60,1,4,1.85,1,341 +44092,457147,Brooklyn,Williamsburg,40.711909999999996,-73.95598000000001,Private room,75,7,2,1.58,1,324 +44093,128605205,Queens,Ridgewood,40.7066,-73.91391999999999,Private room,100,2,0,,1,3 +44094,224879685,Manhattan,Chelsea,40.753209999999996,-74.00238,Entire home/apt,590,10,0,,1,84 +44095,43885531,Manhattan,East Village,40.72935,-73.9826,Entire home/apt,130,30,1,1.0,1,115 +44096,256998898,Manhattan,Harlem,40.804829999999995,-73.95553000000001,Entire home/apt,550,1,0,,3,365 +44097,46595898,Brooklyn,Gowanus,40.67709,-73.98494000000001,Private room,100,2,1,1.0,1,61 +44098,11418912,Brooklyn,Williamsburg,40.71239,-73.95036999999999,Entire home/apt,100,3,7,3.0,1,66 +44099,159281143,Manhattan,Hell's Kitchen,40.76255,-73.99025999999999,Entire home/apt,200,7,4,2.07,1,216 +44100,257019090,Manhattan,Upper West Side,40.78046,-73.9784,Entire home/apt,150,4,0,,1,0 +44101,1241543,Manhattan,Upper East Side,40.78145,-73.9496,Private room,130,5,3,1.73,1,180 +44102,236779549,Manhattan,Morningside Heights,40.80665,-73.96061999999999,Entire home/apt,115,31,0,,1,57 +44103,30995747,Brooklyn,Crown Heights,40.67723,-73.95133,Entire home/apt,95,4,3,1.88,1,4 +44104,201757076,Queens,Briarwood,40.71167,-73.81812,Entire home/apt,111,1,9,3.7,3,223 +44105,257034143,Brooklyn,Bay Ridge,40.62961,-74.02616,Entire home/apt,200,2,5,2.42,2,161 +44106,154895657,Manhattan,Hell's Kitchen,40.76245,-73.99831,Entire home/apt,198,30,0,,1,28 +44107,7218138,Manhattan,Kips Bay,40.741,-73.98056,Entire home/apt,149,5,1,0.59,1,0 +44108,256998898,Manhattan,Harlem,40.80514,-73.95561,Private room,140,1,4,1.88,3,350 +44109,256998898,Manhattan,Harlem,40.80536,-73.95469,Private room,140,1,3,2.0,3,336 +44110,257043301,Queens,Kew Gardens,40.70609,-73.83014,Private room,55,1,0,,1,179 +44111,257053267,Queens,Richmond Hill,40.696220000000004,-73.84634,Private room,60,1,3,1.76,1,364 +44112,133561420,Manhattan,Washington Heights,40.84405,-73.93714,Private room,49,3,1,0.45,1,2 +44113,11951664,Manhattan,Chelsea,40.749990000000004,-74.00205,Entire home/apt,195,2,8,4.36,1,41 +44114,153205975,Manhattan,Harlem,40.80279,-73.94736,Private room,78,5,1,0.46,1,89 +44115,48201791,Brooklyn,Flatbush,40.63927,-73.9636,Entire home/apt,140,4,9,3.97,2,328 +44116,29178119,Manhattan,Washington Heights,40.83489,-73.94587,Private room,85,4,0,,1,55 +44117,12463953,Bronx,Mott Haven,40.81865,-73.93014000000001,Entire home/apt,107,2,0,,1,81 +44118,225834252,Brooklyn,Prospect Heights,40.676559999999995,-73.9706,Entire home/apt,140,2,4,2.22,1,130 +44119,107272884,Queens,Richmond Hill,40.69441,-73.84659,Private room,45,1,3,1.43,4,360 +44120,250515297,Brooklyn,Bedford-Stuyvesant,40.68501,-73.91884,Entire home/apt,75,2,0,,1,7 +44121,6752504,Brooklyn,Gravesend,40.5974,-73.97448,Entire home/apt,180,3,0,,3,173 +44122,47625541,Brooklyn,Greenpoint,40.726459999999996,-73.95639,Private room,70,5,1,1.0,2,78 +44123,14680337,Manhattan,East Harlem,40.79034,-73.94503,Private room,169,1,0,,1,84 +44124,7603795,Brooklyn,Bushwick,40.69149,-73.92536,Entire home/apt,350,7,0,,1,124 +44125,254112876,Manhattan,East Harlem,40.79787,-73.93568,Private room,90,2,3,2.43,2,175 +44126,91854658,Manhattan,Midtown,40.75196,-73.97269,Entire home/apt,500,4,0,,1,5 +44127,257167592,Queens,Arverne,40.59344,-73.78905999999999,Private room,54,3,0,,1,363 +44128,22166460,Brooklyn,Williamsburg,40.71902,-73.96414,Entire home/apt,170,4,4,2.55,1,188 +44129,11256721,Brooklyn,East Flatbush,40.649390000000004,-73.94864,Entire home/apt,92,4,0,,1,27 +44130,290845,Manhattan,Washington Heights,40.84387,-73.93969,Private room,59,1,3,1.64,1,293 +44131,15145088,Manhattan,Upper West Side,40.78537,-73.97456,Entire home/apt,190,30,0,,8,157 +44132,13486673,Brooklyn,Prospect Heights,40.67868,-73.97157,Entire home/apt,70,2,0,,3,84 +44133,864737,Manhattan,Financial District,40.70816,-74.0019,Entire home/apt,365,2,2,1.02,1,127 +44134,18811278,Queens,Ridgewood,40.707409999999996,-73.91534,Entire home/apt,150,7,0,,1,0 +44135,73670220,Manhattan,Financial District,40.70673,-74.01518,Entire home/apt,208,5,4,2.11,1,9 +44136,7228431,Bronx,Parkchester,40.839079999999996,-73.86041999999999,Entire home/apt,70,93,0,,1,134 +44137,255219640,Brooklyn,Brighton Beach,40.57865,-73.96983,Private room,75,2,1,1.0,1,100 +44138,257204612,Manhattan,Hell's Kitchen,40.76461,-73.98997,Entire home/apt,150,3,1,1.0,1,138 +44139,256921050,Manhattan,Chinatown,40.71588,-73.99099,Entire home/apt,135,6,3,2.37,2,1 +44140,75267282,Manhattan,East Village,40.72067,-73.97999,Entire home/apt,210,7,1,0.49,1,284 +44141,27744706,Queens,Ridgewood,40.70746,-73.91118,Private room,44,5,1,1.0,1,192 +44142,218134921,Queens,Woodside,40.74904,-73.90188,Private room,85,1,0,,1,3 +44143,130675,Brooklyn,Williamsburg,40.71074,-73.94284,Private room,79,3,4,2.93,1,9 +44144,257221104,Manhattan,Washington Heights,40.83466,-73.94029,Private room,60,3,5,2.42,1,93 +44145,28336,Brooklyn,Bushwick,40.69982,-73.92491,Private room,75,2,8,3.75,1,317 +44146,78078053,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95016,Private room,75,1,2,1.0,1,138 +44147,215532980,Queens,Ridgewood,40.70515,-73.9136,Private room,75,1,11,4.52,3,88 +44148,9623313,Brooklyn,Cobble Hill,40.685179999999995,-73.99709,Entire home/apt,195,7,0,,1,13 +44149,215532980,Queens,Ridgewood,40.70384,-73.91136999999999,Private room,75,1,11,4.65,3,68 +44150,215532980,Queens,Ridgewood,40.70391,-73.91153,Private room,75,1,14,5.83,3,88 +44151,5452701,Brooklyn,Williamsburg,40.71921,-73.95628,Entire home/apt,100,3,0,,1,6 +44152,32736976,Brooklyn,Sunset Park,40.642959999999995,-74.0056,Private room,24,60,0,,1,71 +44153,244443448,Brooklyn,Bay Ridge,40.632329999999996,-74.01796,Private room,60,31,0,,1,90 +44154,229469300,Brooklyn,Williamsburg,40.70785,-73.94898,Private room,60,2,3,1.25,2,5 +44155,85539820,Manhattan,East Village,40.72783,-73.98015,Entire home/apt,250,5,3,1.73,1,263 +44156,253789998,Manhattan,Hell's Kitchen,40.76303,-73.98894,Entire home/apt,149,30,2,0.9,1,148 +44157,73324719,Queens,Rockaway Beach,40.590090000000004,-73.81042,Entire home/apt,126,7,0,,1,58 +44158,29044900,Brooklyn,Williamsburg,40.716159999999995,-73.95551999999999,Private room,130,2,10,3.95,1,159 +44159,2161203,Manhattan,Hell's Kitchen,40.766009999999994,-73.98414,Entire home/apt,190,2,5,2.08,1,10 +44160,141146473,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95407,Entire home/apt,90,2,4,2.11,1,27 +44161,11674837,Queens,Ridgewood,40.70477,-73.90943,Private room,69,1,6,3.1,3,179 +44162,257365536,Manhattan,Hell's Kitchen,40.75634,-73.99445,Entire home/apt,945,2,2,0.94,1,292 +44163,11306615,Manhattan,Chinatown,40.71727,-74.0004,Private room,155,2,3,1.23,2,50 +44164,5325719,Manhattan,Upper West Side,40.801809999999996,-73.96683,Entire home/apt,450,5,8,4.29,1,123 +44165,228946399,Manhattan,Kips Bay,40.73863,-73.97989,Entire home/apt,178,1,7,3.23,1,0 +44166,255431206,Brooklyn,East Flatbush,40.65132,-73.9452,Private room,40,7,1,0.58,9,106 +44167,221213143,Manhattan,Kips Bay,40.74142,-73.98219,Entire home/apt,690,1,2,1.87,9,287 +44168,255431206,Brooklyn,East Flatbush,40.65144,-73.94489,Private room,32,7,0,,9,126 +44169,7910657,Brooklyn,Park Slope,40.67245,-73.97365,Entire home/apt,250,2,3,1.34,1,175 +44170,255431206,Brooklyn,East Flatbush,40.65226,-73.94521,Private room,35,7,2,0.98,9,131 +44171,255431206,Brooklyn,East Flatbush,40.65279,-73.946,Private room,35,7,4,2.11,9,152 +44172,44919396,Manhattan,Harlem,40.81808,-73.93670999999999,Private room,45,1,5,2.38,1,0 +44173,257171785,Brooklyn,Williamsburg,40.71233,-73.95318,Entire home/apt,295,2,1,0.81,1,0 +44174,219517861,Manhattan,Financial District,40.70649,-74.01217,Entire home/apt,244,2,2,0.83,327,260 +44175,219517861,Manhattan,Financial District,40.707240000000006,-74.01085,Entire home/apt,409,2,3,1.29,327,325 +44176,219517861,Manhattan,Financial District,40.70712,-74.01201,Entire home/apt,185,2,2,1.28,327,291 +44177,245960335,Queens,Jamaica,40.68055,-73.78263000000001,Private room,95,1,0,,1,180 +44178,219517861,Manhattan,Financial District,40.70588,-74.01214,Entire home/apt,230,2,6,2.5,327,285 +44179,219517861,Manhattan,Financial District,40.70803,-74.00639,Entire home/apt,100,29,0,,327,325 +44180,219517861,Manhattan,Financial District,40.70722,-74.00499,Entire home/apt,164,29,0,,327,328 +44181,179951095,Queens,Richmond Hill,40.69035,-73.82238000000001,Private room,78,1,14,5.83,1,356 +44182,44914887,Brooklyn,Flatbush,40.64692,-73.96696,Entire home/apt,105,3,5,5.0,1,51 +44183,214148143,Manhattan,Stuyvesant Town,40.7311,-73.9775,Private room,165,3,9,3.7,1,90 +44184,451777,Brooklyn,Fort Greene,40.68557,-73.97199,Entire home/apt,250,6,0,,1,12 +44185,242296495,Brooklyn,East Flatbush,40.64979,-73.93299,Private room,28,1,13,5.49,3,49 +44186,22123114,Manhattan,Midtown,40.75797,-73.96356,Entire home/apt,225,14,1,1.0,1,240 +44187,6206040,Brooklyn,Bedford-Stuyvesant,40.69023,-73.93063000000001,Private room,54,1,5,2.46,8,27 +44188,34689714,Manhattan,Hell's Kitchen,40.76512,-73.98674,Entire home/apt,240,1,0,,5,365 +44189,181356989,Brooklyn,Brighton Beach,40.57647,-73.96696,Entire home/apt,275,2,1,1.0,2,56 +44190,20087667,Queens,Astoria,40.76962,-73.93146,Private room,55,1,15,6.0,1,17 +44191,253448038,Manhattan,Hell's Kitchen,40.75618,-73.99320999999999,Entire home/apt,250,3,8,4.07,2,61 +44192,245014802,Manhattan,Morningside Heights,40.80495,-73.96439000000001,Private room,50,60,0,,1,72 +44193,179875332,Queens,Long Island City,40.74745,-73.93656,Private room,135,3,1,0.63,1,0 +44194,257005399,Manhattan,Hell's Kitchen,40.75566,-73.99486,Private room,370,1,3,1.55,5,290 +44195,257005399,Manhattan,Hell's Kitchen,40.756029999999996,-73.99511,Private room,430,1,4,1.97,5,287 +44196,257005399,Manhattan,Hell's Kitchen,40.75663,-73.99563,Private room,159,1,1,1.0,5,292 +44197,257005399,Manhattan,Hell's Kitchen,40.7572,-73.99481999999999,Private room,390,1,21,10.86,5,299 +44198,257005399,Manhattan,Hell's Kitchen,40.757020000000004,-73.99382,Private room,410,1,1,0.5,5,294 +44199,77080918,Manhattan,Chelsea,40.74942,-73.99468,Entire home/apt,265,3,5,2.42,1,164 +44200,22553662,Brooklyn,Clinton Hill,40.69338,-73.96751,Entire home/apt,150,7,3,2.14,1,0 +44201,137358866,Manhattan,Harlem,40.81622,-73.94275999999999,Private room,38,30,0,,103,247 +44202,12162311,Brooklyn,Bedford-Stuyvesant,40.693020000000004,-73.93285,Entire home/apt,101,1,1,0.57,1,167 +44203,218940337,Brooklyn,Flatbush,40.63981,-73.96534,Entire home/apt,120,90,0,,1,49 +44204,12222242,Brooklyn,Prospect-Lefferts Gardens,40.66072,-73.95772,Entire home/apt,150,2,2,0.92,1,0 +44205,156853666,Manhattan,Hell's Kitchen,40.7689,-73.98993,Entire home/apt,225,3,8,4.29,1,49 +44206,257555082,Queens,Jackson Heights,40.75308,-73.89419000000001,Shared room,55,2,0,,1,270 +44207,101790764,Queens,Long Island City,40.747640000000004,-73.9482,Entire home/apt,199,2,7,3.28,2,170 +44208,183573239,Manhattan,Chinatown,40.71655,-73.99224,Entire home/apt,200,1,5,2.31,1,11 +44209,90332306,Manhattan,Upper West Side,40.80383,-73.96724,Private room,59,3,4,2.61,1,5 +44210,29740456,Manhattan,Washington Heights,40.83298,-73.93874,Private room,75,2,4,1.9,1,0 +44211,21216008,Queens,Jackson Heights,40.75078,-73.87949,Shared room,28,1,4,2.11,4,354 +44212,238779678,Manhattan,East Village,40.7272,-73.98993,Private room,73,30,0,,9,364 +44213,219517861,Manhattan,Financial District,40.70756,-74.01229000000001,Entire home/apt,210,2,3,3.0,327,302 +44214,217642173,Manhattan,Hell's Kitchen,40.76229,-73.99994000000001,Private room,199,30,0,,2,140 +44215,42144338,Manhattan,Upper East Side,40.7786,-73.95028,Entire home/apt,120,6,2,1.36,1,9 +44216,219517861,Manhattan,Financial District,40.70845,-74.00471999999999,Entire home/apt,164,29,0,,327,327 +44217,257602124,Brooklyn,Sunset Park,40.64383,-74.02051,Private room,45,4,0,,1,179 +44218,6645096,Brooklyn,Williamsburg,40.71996,-73.9414,Private room,78,2,2,2.0,1,5 +44219,161324994,Manhattan,Upper East Side,40.76654,-73.95825,Private room,38,30,0,,6,39 +44220,161324994,Manhattan,East Harlem,40.791,-73.94807,Private room,38,30,1,0.77,6,44 +44221,219517861,Manhattan,Financial District,40.7056,-74.0119,Entire home/apt,256,2,4,2.67,327,293 +44222,219517861,Manhattan,Financial District,40.706590000000006,-74.01105,Entire home/apt,468,2,0,,327,255 +44223,219517861,Manhattan,Financial District,40.70632,-74.01073000000001,Entire home/apt,229,2,3,2.09,327,348 +44224,5173736,Manhattan,Gramercy,40.73499,-73.98875,Entire home/apt,1000,3,7,3.09,1,286 +44225,29094579,Brooklyn,Fort Hamilton,40.61642,-74.02396999999999,Entire home/apt,89,3,4,1.56,1,21 +44226,253227041,Brooklyn,Crown Heights,40.6725,-73.93079,Entire home/apt,150,3,11,5.16,1,142 +44227,128905420,Manhattan,West Village,40.73195,-74.00626,Entire home/apt,500,2,3,2.31,1,82 +44228,36205885,Queens,Ridgewood,40.707370000000004,-73.91138000000001,Entire home/apt,74,1,16,7.16,3,351 +44229,219517861,Manhattan,Financial District,40.707359999999994,-74.0125,Entire home/apt,217,2,4,1.79,327,272 +44230,219517861,Manhattan,Financial District,40.70755,-74.01116,Entire home/apt,203,2,7,3.13,327,328 +44231,257576232,Brooklyn,Williamsburg,40.709920000000004,-73.94969,Entire home/apt,305,2,14,6.46,1,296 +44232,3842238,Brooklyn,Bushwick,40.690129999999996,-73.91176999999999,Private room,65,1,1,1.0,1,88 +44233,110319331,Manhattan,Upper East Side,40.77132,-73.94829,Entire home/apt,127,5,4,1.74,1,192 +44234,17361902,Brooklyn,Crown Heights,40.67114,-73.94921,Entire home/apt,99,3,1,0.57,1,1 +44235,161324994,Manhattan,Upper East Side,40.77348,-73.94601,Private room,37,30,1,1.0,6,76 +44236,123506305,Queens,Springfield Gardens,40.66714,-73.77664,Private room,50,1,5,2.34,3,364 +44237,257629980,Brooklyn,Gowanus,40.66907,-73.99221,Entire home/apt,195,2,6,3.46,1,330 +44238,257656654,Brooklyn,Prospect-Lefferts Gardens,40.656290000000006,-73.95177,Private room,36,120,0,,1,365 +44239,257599351,Manhattan,Chinatown,40.71703,-73.99538000000001,Private room,120,2,8,3.69,1,34 +44240,257585150,Manhattan,Upper East Side,40.77167,-73.95529,Private room,120,1,2,2.0,1,311 +44241,5556564,Manhattan,Hell's Kitchen,40.76676,-73.99146,Entire home/apt,499,3,3,2.09,1,1 +44242,38483415,Manhattan,East Harlem,40.80084,-73.94514000000001,Shared room,35,1,9,3.86,4,358 +44243,137358866,Queens,Woodside,40.74152,-73.90314000000001,Private room,67,30,1,0.57,103,1 +44244,10962595,Brooklyn,Fort Hamilton,40.618590000000005,-74.03644,Private room,60,28,0,,1,263 +44245,6665872,Manhattan,Hell's Kitchen,40.7631,-73.98963,Private room,75,2,15,6.34,1,33 +44246,257668187,Manhattan,East Village,40.727540000000005,-73.99025,Private room,63,30,1,0.55,1,18 +44247,257188989,Manhattan,Midtown,40.76413,-73.97691,Entire home/apt,189,2,10,5.56,1,36 +44248,97322120,Brooklyn,Bushwick,40.690259999999995,-73.90689,Private room,80,4,0,,1,158 +44249,137358866,Queens,Woodside,40.74123,-73.90151999999999,Private room,59,30,0,,103,247 +44250,160118608,Brooklyn,Williamsburg,40.7071,-73.94634,Private room,65,5,1,0.39,1,35 +44251,137358866,Queens,Woodside,40.74165,-73.90155,Private room,59,30,1,1.0,103,260 +44252,161061302,Manhattan,Upper West Side,40.802440000000004,-73.96592,Shared room,50,1,1,0.48,2,363 +44253,257683179,Queens,Flushing,40.75139,-73.81328,Private room,55,1,3,2.81,6,75 +44254,257685807,Brooklyn,Williamsburg,40.709270000000004,-73.96149,Entire home/apt,650,2,0,,1,157 +44255,107434423,Manhattan,Tribeca,40.71691,-74.00511,Entire home/apt,267,30,0,,232,283 +44256,107434423,Manhattan,Chelsea,40.74269,-73.99911,Entire home/apt,316,30,0,,232,323 +44257,107434423,Manhattan,Financial District,40.7066,-74.00872,Entire home/apt,229,30,0,,232,333 +44258,107434423,Manhattan,Financial District,40.705859999999994,-74.00904,Entire home/apt,262,30,0,,232,325 +44259,5680111,Brooklyn,Bushwick,40.68603,-73.91399,Private room,63,12,2,1.0,7,130 +44260,48711094,Manhattan,Midtown,40.74607,-73.98371999999999,Private room,95,2,10,4.55,1,0 +44261,196476281,Bronx,Concourse,40.83197,-73.9212,Private room,45,1,4,1.71,2,318 +44262,257773717,Brooklyn,Williamsburg,40.710409999999996,-73.96327,Private room,58,30,0,,5,341 +44263,257773717,Brooklyn,Williamsburg,40.710370000000005,-73.96316999999999,Private room,58,30,0,,5,338 +44264,257773717,Brooklyn,Williamsburg,40.70944,-73.96472,Private room,58,30,0,,5,342 +44265,42767903,Manhattan,Washington Heights,40.83248,-73.94176999999999,Private room,50,3,1,1.0,1,14 +44266,257773717,Brooklyn,Williamsburg,40.708870000000005,-73.96249,Private room,58,30,0,,5,333 +44267,257773717,Brooklyn,Williamsburg,40.709540000000004,-73.96284,Private room,58,30,0,,5,308 +44268,93090420,Brooklyn,Williamsburg,40.71327,-73.96155,Private room,100,1,0,,1,66 +44269,157207818,Brooklyn,Bushwick,40.70044,-73.9243,Private room,63,1,7,3.28,1,22 +44270,153371127,Queens,Jackson Heights,40.75023,-73.87772,Shared room,27,1,4,2.73,2,355 +44271,2119428,Brooklyn,Brooklyn Heights,40.69699,-73.9936,Private room,125,3,9,4.58,1,252 +44272,219517861,Manhattan,Financial District,40.70776,-74.01239,Entire home/apt,470,2,3,1.55,327,237 +44273,18149022,Manhattan,Flatiron District,40.739959999999996,-73.98971999999999,Entire home/apt,225,4,0,,1,365 +44274,219517861,Manhattan,Financial District,40.707440000000005,-74.01048,Entire home/apt,229,2,2,0.82,327,331 +44275,219517861,Manhattan,Financial District,40.70711,-74.01044,Entire home/apt,470,2,4,2.5,327,242 +44276,219517861,Manhattan,Financial District,40.70713,-74.01248000000001,Entire home/apt,228,2,1,0.46,327,353 +44277,14552154,Manhattan,Midtown,40.74411,-73.98209,Entire home/apt,239,3,5,2.5,4,319 +44278,190688437,Brooklyn,Bushwick,40.69072,-73.91891,Private room,40,30,0,,1,189 +44279,236839319,Manhattan,Little Italy,40.71803,-73.99835,Private room,59,30,0,,3,35 +44280,40875021,Manhattan,East Harlem,40.79325,-73.93386,Entire home/apt,150,1,2,1.22,3,178 +44281,257832461,Brooklyn,Bushwick,40.70247,-73.92671,Entire home/apt,99,1,32,13.33,1,77 +44282,34689714,Manhattan,Hell's Kitchen,40.7667,-73.98829,Private room,99,1,0,,5,365 +44283,174313318,Manhattan,Chelsea,40.74781,-73.99436,Entire home/apt,380,3,1,0.71,1,296 +44284,257836545,Brooklyn,Canarsie,40.631170000000004,-73.88688,Entire home/apt,125,1,0,,1,360 +44285,25086874,Brooklyn,Bedford-Stuyvesant,40.69215,-73.94051,Private room,50,1,1,1.0,1,51 +44286,257838704,Manhattan,Washington Heights,40.84237,-73.93914000000001,Entire home/apt,300,5,6,2.5,1,252 +44287,257810280,Brooklyn,Bedford-Stuyvesant,40.67935,-73.93715,Entire home/apt,100,1,5,5.0,1,0 +44288,257842396,Brooklyn,Greenpoint,40.72468,-73.94041999999999,Entire home/apt,200,2,1,1.0,1,0 +44289,29092144,Manhattan,Chelsea,40.7465,-73.9981,Entire home/apt,320,15,2,0.97,1,299 +44290,34269923,Brooklyn,Bushwick,40.697179999999996,-73.91165,Private room,52,1,7,4.77,1,0 +44291,252211149,Manhattan,Kips Bay,40.7443,-73.97519,Entire home/apt,304,1,9,4.66,1,127 +44292,229603136,Manhattan,Hell's Kitchen,40.76368,-73.98881,Entire home/apt,239,2,6,3.46,1,335 +44293,2008510,Brooklyn,Bushwick,40.70395,-73.92585,Private room,65,4,3,1.43,1,75 +44294,61086446,Manhattan,East Village,40.72555,-73.98499,Entire home/apt,300,4,1,0.59,1,0 +44295,257866899,Manhattan,Harlem,40.81864,-73.94108,Private room,60,4,6,2.81,1,212 +44296,6004860,Queens,Woodside,40.74807,-73.9028,Entire home/apt,79,30,0,,1,333 +44297,204823078,Staten Island,South Beach,40.58802,-74.08855,Private room,50,2,4,1.85,2,80 +44298,14929050,Manhattan,Upper West Side,40.78893,-73.97591,Entire home/apt,350,20,0,,1,33 +44299,257677041,Manhattan,Kips Bay,40.7421,-73.97404,Entire home/apt,539,1,13,7.36,1,233 +44300,257671905,Manhattan,Chelsea,40.74301,-73.9937,Entire home/apt,249,1,8,4.8,1,131 +44301,257888723,Manhattan,Upper East Side,40.78563,-73.95396,Entire home/apt,250,4,2,2.0,1,297 +44302,257891606,Manhattan,Upper West Side,40.78198,-73.97570999999999,Entire home/apt,249,1,13,7.22,1,29 +44303,246194760,Queens,East Elmhurst,40.76021,-73.88301,Private room,49,1,3,2.14,4,207 +44304,253328272,Manhattan,Murray Hill,40.74511,-73.97407,Entire home/apt,499,1,1,1.0,1,216 +44305,110539055,Bronx,Williamsbridge,40.87699,-73.85365999999999,Entire home/apt,87,2,5,5.0,2,298 +44306,20377891,Manhattan,Chinatown,40.715379999999996,-73.99004000000001,Entire home/apt,250,1,1,1.0,2,92 +44307,20377891,Manhattan,Lower East Side,40.71456,-73.98986,Entire home/apt,250,1,1,1.0,2,58 +44308,137358866,Queens,Woodside,40.74654,-73.90776,Private room,60,30,0,,103,215 +44309,28096614,Queens,Woodside,40.742979999999996,-73.90581999999999,Private room,50,2,4,1.88,2,266 +44310,257974128,Manhattan,Upper East Side,40.784729999999996,-73.94884,Entire home/apt,350,4,2,1.87,1,191 +44311,107434423,Manhattan,Tribeca,40.71633,-74.00520999999999,Entire home/apt,426,30,0,,232,321 +44312,28096614,Queens,Woodside,40.742490000000004,-73.90603,Private room,50,2,10,4.76,2,257 +44313,86196529,Brooklyn,Williamsburg,40.70313,-73.93836999999999,Entire home/apt,101,2,4,1.88,1,75 +44314,257993786,Manhattan,Inwood,40.86473,-73.92641,Private room,60,1,9,6.28,1,352 +44315,238733096,Queens,Richmond Hill,40.68201,-73.83023,Private room,100,2,0,,2,160 +44316,16862745,Manhattan,Greenwich Village,40.72786,-74.00158,Entire home/apt,250,2,8,3.69,1,310 +44317,161472665,Manhattan,East Village,40.72729,-73.97618,Private room,250,1,2,1.18,1,178 +44318,78261482,Manhattan,Hell's Kitchen,40.76085,-73.99221999999999,Entire home/apt,168,3,2,1.13,2,4 +44319,245886857,Manhattan,Harlem,40.812490000000004,-73.94175,Private room,90,4,0,,2,365 +44320,61391963,Manhattan,Little Italy,40.7191,-73.99671,Entire home/apt,150,30,0,,91,312 +44321,245886857,Manhattan,Harlem,40.81312,-73.94215,Private room,70,5,0,,2,364 +44322,219517861,Manhattan,Theater District,40.75923,-73.98669,Entire home/apt,222,29,0,,327,221 +44323,743732,Brooklyn,Bushwick,40.70043,-73.92266,Entire home/apt,70,30,0,,1,0 +44324,34782150,Manhattan,Hell's Kitchen,40.766909999999996,-73.98719,Private room,200,2,0,,1,0 +44325,258035043,Brooklyn,Bedford-Stuyvesant,40.678779999999996,-73.9172,Private room,48,1,22,9.85,2,236 +44326,219517861,Manhattan,Theater District,40.761179999999996,-73.98635,Entire home/apt,699,29,0,,327,365 +44327,82537581,Manhattan,Hell's Kitchen,40.76802,-73.99298,Entire home/apt,249,5,2,2.0,1,364 +44328,63393553,Manhattan,West Village,40.73855,-74.00125,Entire home/apt,577,2,2,1.3,1,273 +44329,204806146,Manhattan,Inwood,40.86594,-73.92487,Private room,46,1,7,3.28,1,143 +44330,141510360,Brooklyn,Park Slope,40.67018,-73.98751999999999,Private room,50,2,2,1.22,1,102 +44331,258058607,Queens,Woodside,40.744440000000004,-73.896,Private room,125,1,0,,1,90 +44332,232251881,Queens,Jamaica,40.66794,-73.78483,Private room,39,1,15,6.25,8,0 +44333,181233778,Bronx,Belmont,40.85595,-73.88519000000001,Private room,27,30,0,,1,68 +44334,257282534,Manhattan,Chelsea,40.746179999999995,-73.9963,Entire home/apt,380,25,0,,1,353 +44335,44260443,Brooklyn,Bedford-Stuyvesant,40.68268,-73.93055,Private room,75,1,12,5.37,1,60 +44336,258057633,Manhattan,Kips Bay,40.74375,-73.97372,Entire home/apt,499,1,10,6.38,1,194 +44337,53720018,Manhattan,Midtown,40.74798,-73.987,Entire home/apt,299,2,0,,1,0 +44338,251859047,Brooklyn,Crown Heights,40.67558,-73.9231,Private room,65,2,3,2.09,3,126 +44339,57247607,Brooklyn,Williamsburg,40.71808,-73.95839000000001,Private room,200,2,0,,1,69 +44340,219517861,Manhattan,Theater District,40.761520000000004,-73.98586999999999,Entire home/apt,157,29,0,,327,340 +44341,221839786,Manhattan,Hell's Kitchen,40.76417,-73.99334,Private room,145,1,6,4.09,1,287 +44342,18327084,Manhattan,East Village,40.72495,-73.97679000000001,Entire home/apt,240,4,0,,1,83 +44343,257982308,Manhattan,Upper West Side,40.78422,-73.97754,Entire home/apt,299,1,5,3.13,1,61 +44344,4592344,Manhattan,Harlem,40.82261,-73.95544,Private room,53,3,1,0.86,1,74 +44345,219517861,Manhattan,Theater District,40.75942,-73.98727,Entire home/apt,699,29,0,,327,332 +44346,219517861,Manhattan,Financial District,40.7063,-74.01254,Entire home/apt,247,2,4,2.35,327,232 +44347,258097158,Manhattan,Kips Bay,40.7436,-73.9768,Entire home/apt,311,1,12,6.21,1,220 +44348,110375726,Queens,Woodside,40.74625,-73.90311,Entire home/apt,99,30,1,0.77,1,333 +44349,45317760,Manhattan,Upper East Side,40.76915,-73.95515,Private room,60,14,3,2.25,3,29 +44350,258057196,Manhattan,Murray Hill,40.74624,-73.9725,Entire home/apt,299,1,8,4.44,1,93 +44351,10415735,Queens,Howard Beach,40.66144,-73.85762,Entire home/apt,250,1,1,1.0,2,346 +44352,150878611,Manhattan,Nolita,40.72169,-73.99642,Entire home/apt,150,30,11,4.65,1,40 +44353,141194319,Manhattan,Chelsea,40.75338,-73.99821999999999,Entire home/apt,370,12,0,,1,320 +44354,2086035,Manhattan,Hell's Kitchen,40.75526,-73.9945,Entire home/apt,195,1,9,6.14,2,267 +44355,95381568,Brooklyn,Williamsburg,40.7134,-73.96306,Private room,85,4,3,2.2,1,6 +44356,20810101,Brooklyn,Bedford-Stuyvesant,40.68111,-73.94683,Private room,93,1,2,1.4,2,23 +44357,252604696,Manhattan,Chelsea,40.74948,-73.99506,Private room,199,1,0,,20,189 +44358,232641412,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94308000000001,Private room,45,2,0,,1,3 +44359,229249302,Brooklyn,Bushwick,40.69751,-73.93581999999999,Private room,120,1,16,6.96,1,57 +44360,258186526,Queens,Woodside,40.74823,-73.90352,Entire home/apt,189,2,10,4.23,1,62 +44361,252604696,Manhattan,Chelsea,40.75029,-73.99492,Private room,129,1,3,1.48,20,358 +44362,130155462,Manhattan,Financial District,40.70578,-74.00769,Entire home/apt,280,2,11,5.89,1,182 +44363,161324994,Manhattan,Upper East Side,40.76514,-73.96176,Private room,38,30,1,0.79,6,43 +44364,9583320,Brooklyn,Greenpoint,40.72336,-73.94651999999999,Entire home/apt,150,7,1,1.0,1,0 +44365,258202599,Manhattan,East Harlem,40.78967,-73.94199,Entire home/apt,145,2,7,3.62,1,0 +44366,161496464,Brooklyn,Flatbush,40.65188,-73.95649,Entire home/apt,95,1,2,0.91,1,362 +44367,155299207,Brooklyn,Crown Heights,40.67648,-73.93881,Private room,33,30,0,,1,45 +44368,6206040,Brooklyn,Bedford-Stuyvesant,40.6914,-73.9294,Private room,65,1,4,2.35,8,12 +44369,31628364,Brooklyn,Williamsburg,40.716029999999996,-73.96417,Entire home/apt,220,3,4,1.97,1,44 +44370,97044757,Manhattan,Upper West Side,40.77435,-73.98761,Entire home/apt,139,20,0,,2,18 +44371,135061108,Brooklyn,East Flatbush,40.64902,-73.94795,Entire home/apt,125,1,0,,2,33 +44372,652539,Manhattan,Upper West Side,40.79097,-73.96885,Entire home/apt,500,4,2,1.36,1,256 +44373,219517861,Manhattan,Chelsea,40.74285,-73.99595,Entire home/apt,277,29,0,,327,365 +44374,444275,Manhattan,Hell's Kitchen,40.765209999999996,-73.98986,Entire home/apt,180,3,1,0.61,1,17 +44375,219517861,Manhattan,Theater District,40.7601,-73.98675,Entire home/apt,699,29,0,,327,333 +44376,219517861,Manhattan,Murray Hill,40.74455,-73.97162,Entire home/apt,162,29,0,,327,341 +44377,225651433,Manhattan,Financial District,40.708,-74.01485,Private room,52,25,0,,1,99 +44378,258230385,Manhattan,Chinatown,40.716609999999996,-73.99275,Entire home/apt,176,30,1,1.0,1,339 +44379,257679591,Manhattan,Murray Hill,40.74485,-73.97388000000001,Entire home/apt,500,1,5,2.94,1,62 +44380,20702874,Brooklyn,Park Slope,40.68092,-73.97823000000001,Private room,68,14,0,,1,4 +44381,219517861,Manhattan,Hell's Kitchen,40.76166,-73.99691,Entire home/apt,182,29,0,,327,302 +44382,85773188,Brooklyn,Brighton Beach,40.57589,-73.96636,Entire home/apt,86,1,10,9.09,1,20 +44383,913940,Queens,Ridgewood,40.70666,-73.90779,Private room,30,21,0,,1,73 +44384,219517861,Manhattan,Upper East Side,40.7639,-73.96432,Entire home/apt,150,29,0,,327,220 +44385,219517861,Manhattan,Hell's Kitchen,40.76061,-73.9967,Entire home/apt,189,29,0,,327,334 +44386,258243498,Brooklyn,Williamsburg,40.70998,-73.94694,Private room,155,3,1,0.7,3,365 +44387,252604696,Manhattan,Chelsea,40.74889,-73.99656,Private room,199,1,2,1.15,20,352 +44388,219517861,Manhattan,Murray Hill,40.7484,-73.97544,Entire home/apt,200,29,0,,327,342 +44389,227163,Brooklyn,Williamsburg,40.70847,-73.96837,Entire home/apt,270,3,1,1.0,1,0 +44390,252604696,Manhattan,Chelsea,40.75022,-73.99632,Private room,199,1,0,,20,365 +44391,252604696,Manhattan,Chelsea,40.749520000000004,-73.99671,Private room,199,1,0,,20,365 +44392,252604696,Manhattan,Chelsea,40.75059,-73.9967,Private room,199,1,2,0.81,20,365 +44393,252604696,Manhattan,Chelsea,40.749140000000004,-73.99471,Private room,199,1,0,,20,365 +44394,252604696,Manhattan,Chelsea,40.75093,-73.99523,Private room,199,1,1,0.57,20,363 +44395,252604696,Manhattan,Chelsea,40.74975,-73.9961,Private room,129,1,0,,20,359 +44396,252604696,Manhattan,Chelsea,40.75074,-73.9967,Private room,149,1,0,,20,359 +44397,252604696,Manhattan,Chelsea,40.7494,-73.99519000000001,Private room,149,1,0,,20,359 +44398,219517861,Manhattan,Financial District,40.70709,-74.01241,Entire home/apt,257,2,0,,327,355 +44399,219517861,Manhattan,Hell's Kitchen,40.7618,-73.9979,Entire home/apt,185,29,0,,327,332 +44400,252604696,Manhattan,Chelsea,40.75055,-73.99481999999999,Private room,149,1,0,,20,351 +44401,252604696,Manhattan,Chelsea,40.74942,-73.99535999999999,Private room,149,1,0,,20,359 +44402,252604696,Manhattan,Chelsea,40.74899,-73.99605,Private room,159,1,0,,20,359 +44403,252604696,Manhattan,Chelsea,40.74882,-73.99663000000001,Private room,159,1,0,,20,359 +44404,252604696,Manhattan,Chelsea,40.750640000000004,-73.99625999999999,Private room,219,1,4,1.82,20,356 +44405,252604696,Manhattan,Chelsea,40.74913,-73.99513,Private room,159,1,0,,20,360 +44406,252604696,Manhattan,Chelsea,40.75095,-73.99628,Private room,219,1,0,,20,365 +44407,646729,Brooklyn,Flatbush,40.637809999999995,-73.96531,Entire home/apt,275,2,10,5.17,1,298 +44408,258265562,Queens,Long Island City,40.75575,-73.93037,Entire home/apt,113,2,4,1.85,1,0 +44409,1346437,Queens,Sunnyside,40.74628,-73.9243,Private room,50,7,0,,2,35 +44410,98039499,Manhattan,Upper East Side,40.77052,-73.96683,Entire home/apt,249,5,6,3.27,1,116 +44411,219517861,Manhattan,Hell's Kitchen,40.762409999999996,-73.99606,Entire home/apt,182,29,0,,327,319 +44412,219517861,Manhattan,Murray Hill,40.744609999999994,-73.97349,Entire home/apt,190,29,0,,327,261 +44413,258269673,Brooklyn,Williamsburg,40.71547,-73.94074,Entire home/apt,595,2,4,2.79,1,322 +44414,98297464,Brooklyn,Fort Hamilton,40.62065,-74.02929,Private room,68,5,2,1.71,2,55 +44415,48684597,Queens,Maspeth,40.737629999999996,-73.89533,Private room,50,1,10,4.48,4,218 +44416,258247777,Manhattan,Harlem,40.816720000000004,-73.94745999999999,Private room,135,3,5,2.5,3,224 +44417,257973120,Manhattan,Lower East Side,40.721379999999996,-73.98543000000001,Entire home/apt,120,7,3,1.76,1,284 +44418,63834320,Brooklyn,Bushwick,40.70058,-73.91123,Private room,65,2,8,3.93,1,19 +44419,219517861,Manhattan,Hell's Kitchen,40.76218,-73.99646,Entire home/apt,189,29,0,,327,333 +44420,258286476,Brooklyn,Bushwick,40.698609999999995,-73.91999,Entire home/apt,90,4,2,0.94,1,34 +44421,219517861,Manhattan,Hell's Kitchen,40.76182,-73.99600000000001,Entire home/apt,187,29,0,,327,331 +44422,219517861,Manhattan,Murray Hill,40.74787,-73.97457,Entire home/apt,202,29,0,,327,355 +44423,137358866,Queens,Sunnyside,40.74627,-73.92027,Private room,43,30,0,,103,216 +44424,219517861,Manhattan,Murray Hill,40.74883,-73.9752,Entire home/apt,200,29,0,,327,365 +44425,219517861,Manhattan,Murray Hill,40.744209999999995,-73.97221,Entire home/apt,190,29,0,,327,345 +44426,219517861,Manhattan,Hell's Kitchen,40.76198,-73.99644,Entire home/apt,184,29,0,,327,334 +44427,219517861,Manhattan,Hell's Kitchen,40.76229,-73.99628,Entire home/apt,187,29,0,,327,335 +44428,257999795,Brooklyn,Bushwick,40.681779999999996,-73.90313,Private room,60,1,6,5.14,1,52 +44429,9295237,Queens,Astoria,40.75593,-73.91275999999999,Private room,2000,365,0,,2,0 +44430,219517861,Manhattan,Theater District,40.76089,-73.9862,Entire home/apt,215,29,0,,327,342 +44431,219517861,Manhattan,Murray Hill,40.74695,-73.97615,Entire home/apt,200,29,0,,327,339 +44432,122551862,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94465,Private room,50,2,2,0.9,2,8 +44433,831185,Brooklyn,Crown Heights,40.67978,-73.96231,Entire home/apt,335,2,1,1.0,3,365 +44434,41976386,Queens,Ridgewood,40.706109999999995,-73.91521,Private room,50,30,0,,1,36 +44435,254104585,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92996,Private room,89,1,25,10.56,3,160 +44436,140630987,Queens,Flushing,40.76089,-73.8142,Private room,70,1,7,3.18,6,326 +44437,179336958,Manhattan,Midtown,40.74605,-73.98634,Shared room,65,3,1,1.0,6,353 +44438,258413226,Manhattan,Hell's Kitchen,40.75548,-73.99513,Entire home/apt,225,3,11,5.08,1,152 +44439,51596474,Brooklyn,Bay Ridge,40.62638,-74.01836999999999,Shared room,18,9,1,1.0,12,0 +44440,51596474,Brooklyn,Bay Ridge,40.62703,-74.01952,Shared room,22,5,0,,12,0 +44441,247092108,Queens,Astoria,40.76683,-73.91435,Entire home/apt,199,1,12,7.06,3,283 +44442,27537930,Bronx,Pelham Gardens,40.86209,-73.84666999999999,Shared room,20,1,0,,1,5 +44443,219517861,Manhattan,Murray Hill,40.74693,-73.97582,Entire home/apt,204,29,0,,327,326 +44444,258217172,Brooklyn,Bushwick,40.68757,-73.90961,Private room,70,1,9,4.22,1,262 +44445,113927793,Manhattan,Upper East Side,40.777120000000004,-73.95164,Entire home/apt,155,2,8,3.38,1,0 +44446,59642348,Brooklyn,Sunset Park,40.6455,-74.01262,Entire home/apt,95,1,9,9.0,1,106 +44447,2961266,Queens,Sunnyside,40.73857,-73.92563,Private room,72,1,4,4.0,2,25 +44448,9975046,Bronx,Longwood,40.81835,-73.91465,Private room,65,3,0,,1,0 +44449,145878384,Brooklyn,East Flatbush,40.650929999999995,-73.93269000000001,Private room,75,3,2,1.54,7,245 +44450,258013305,Brooklyn,East Flatbush,40.64298,-73.93945,Private room,40,2,7,4.29,1,0 +44451,258389576,Manhattan,Upper East Side,40.78161,-73.94852,Entire home/apt,450,1,5,2.24,1,164 +44452,258460961,Manhattan,Upper East Side,40.77932,-73.94547,Entire home/apt,150,3,4,1.9,1,315 +44453,258461766,Queens,Flushing,40.75073,-73.82052,Private room,75,1,0,,1,365 +44454,44803585,Manhattan,Midtown,40.74673,-73.98191,Entire home/apt,300,1,4,1.85,1,235 +44455,258247777,Manhattan,Harlem,40.81548,-73.94556,Private room,135,3,6,2.86,3,247 +44456,258247777,Manhattan,Harlem,40.81693,-73.94561999999999,Private room,135,5,1,0.64,3,320 +44457,24890474,Manhattan,Chinatown,40.71333,-73.99419,Entire home/apt,300,2,5,2.42,1,231 +44458,16072483,Queens,Ditmars Steinway,40.774190000000004,-73.91113,Private room,30,2,5,2.31,1,11 +44459,258536261,Brooklyn,Cypress Hills,40.679590000000005,-73.88302,Entire home/apt,100,2,11,5.69,1,179 +44460,185974751,Manhattan,Upper West Side,40.79527,-73.96666,Private room,48,5,1,0.5,1,0 +44461,258551028,Brooklyn,Bensonhurst,40.61985,-74.00205,Private room,40,5,4,1.74,1,0 +44462,106627,Manhattan,Tribeca,40.71734,-74.00858000000001,Entire home/apt,750,7,0,,1,22 +44463,11522108,Brooklyn,Park Slope,40.674279999999996,-73.97559,Entire home/apt,150,3,4,2.73,1,130 +44464,7817764,Brooklyn,Williamsburg,40.70197,-73.94131,Shared room,50,3,0,,1,16 +44465,5317044,Brooklyn,Williamsburg,40.7153,-73.95333000000001,Entire home/apt,109,45,0,,1,62 +44466,258589420,Queens,Richmond Hill,40.68908,-73.83326,Private room,56,1,12,5.37,7,179 +44467,258596027,Queens,Long Island City,40.74973,-73.94015,Entire home/apt,199,2,6,3.46,1,316 +44468,59782332,Manhattan,East Village,40.72325,-73.98776,Entire home/apt,120,3,4,1.82,1,0 +44469,258518165,Queens,Bayside,40.74966,-73.75328,Private room,80,1,0,,1,289 +44470,258118351,Brooklyn,Borough Park,40.64032,-73.99493000000001,Entire home/apt,95,18,2,1.62,2,38 +44471,250207981,Manhattan,Upper West Side,40.803779999999996,-73.96619,Private room,50,14,1,0.42,1,15 +44472,4711282,Manhattan,Washington Heights,40.85015,-73.93863,Private room,70,1,11,4.93,1,97 +44473,32615118,Manhattan,Hell's Kitchen,40.7676,-73.98609,Private room,110,5,3,1.76,1,331 +44474,258273798,Manhattan,West Village,40.74021,-74.00414,Entire home/apt,259,1,10,5.45,1,32 +44475,258599553,Manhattan,Kips Bay,40.7432,-73.97703,Entire home/apt,190,1,4,2.14,1,144 +44476,125320407,Queens,Far Rockaway,40.60412,-73.75163,Private room,875,2,0,,5,365 +44477,258243498,Brooklyn,Williamsburg,40.709920000000004,-73.94698000000001,Private room,100,1,4,2.03,3,365 +44478,254637078,Brooklyn,Greenpoint,40.73339,-73.95271,Entire home/apt,200,1,2,2.0,1,229 +44479,17842194,Brooklyn,Crown Heights,40.67882,-73.96266999999999,Private room,100,2,0,,2,21 +44480,78113383,Brooklyn,Crown Heights,40.67266,-73.92423000000001,Entire home/apt,80,10,0,,3,258 +44481,258139060,Manhattan,Hell's Kitchen,40.76273,-73.99192,Entire home/apt,249,1,9,5.29,1,88 +44482,258412458,Brooklyn,Williamsburg,40.71289,-73.96603,Entire home/apt,300,2,3,1.84,1,25 +44483,258635350,Staten Island,New Springville,40.581109999999995,-74.15933000000001,Entire home/apt,150,2,0,,1,0 +44484,779474,Manhattan,Washington Heights,40.83515,-73.94178000000001,Entire home/apt,128,3,9,4.66,1,236 +44485,243639488,Brooklyn,East Flatbush,40.64359,-73.94821,Private room,120,2,3,2.0,1,180 +44486,141713689,Manhattan,Chelsea,40.74475,-74.00108,Entire home/apt,134,7,3,2.65,1,13 +44487,41124793,Manhattan,Hell's Kitchen,40.76515,-73.98586,Entire home/apt,389,1,1,1.0,1,0 +44488,258647286,Brooklyn,Brownsville,40.662420000000004,-73.90128,Private room,38,2,0,,1,176 +44489,69339916,Manhattan,Harlem,40.8125,-73.95305,Private room,70,1,3,2.57,1,71 +44490,161047916,Manhattan,Chelsea,40.74895,-73.99651999999999,Entire home/apt,380,14,3,1.8,1,321 +44491,155299284,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95482,Private room,75,1,14,7.12,1,0 +44492,49216953,Staten Island,Midland Beach,40.57568,-74.09522,Entire home/apt,115,2,2,2.0,1,231 +44493,258133009,Manhattan,Murray Hill,40.74553,-73.97699,Entire home/apt,239,1,8,4.53,1,140 +44494,258661548,Brooklyn,Williamsburg,40.71456,-73.94326,Entire home/apt,140,1,9,3.86,1,200 +44495,20944981,Manhattan,West Village,40.735209999999995,-74.00528,Entire home/apt,180,2,4,2.4,1,22 +44496,195863013,Manhattan,Upper West Side,40.80249,-73.96729,Private room,45,3,3,2.05,1,2 +44497,241676154,Staten Island,Grant City,40.57801,-74.10869,Private room,29,21,0,,2,281 +44498,258671946,Bronx,Longwood,40.82654,-73.90516,Private room,27,2,7,3.5,1,60 +44499,17770682,Bronx,Highbridge,40.83149,-73.92766,Entire home/apt,70,40,0,,1,0 +44500,258682005,Queens,Ridgewood,40.69526,-73.90263,Entire home/apt,210,7,2,1.13,1,142 +44501,257889696,Manhattan,SoHo,40.72249,-73.99758,Entire home/apt,499,4,5,2.73,1,194 +44502,6466170,Manhattan,Midtown,40.755140000000004,-73.96773,Private room,109,60,0,,1,327 +44503,257997585,Manhattan,Midtown,40.75843,-73.97053000000001,Private room,129,7,9,4.03,1,128 +44504,251852817,Manhattan,East Harlem,40.800779999999996,-73.94335,Shared room,60,1,5,2.31,7,90 +44505,257892281,Manhattan,Upper East Side,40.771159999999995,-73.94774,Entire home/apt,299,4,9,5.0,1,170 +44506,29032861,Brooklyn,Bedford-Stuyvesant,40.67797,-73.91818,Entire home/apt,150,3,2,1.2,1,14 +44507,4521174,Brooklyn,Crown Heights,40.67167,-73.94015,Entire home/apt,140,30,0,,3,73 +44508,133465194,Brooklyn,Williamsburg,40.71925,-73.94293,Entire home/apt,94,7,1,0.57,1,0 +44509,125398274,Brooklyn,Williamsburg,40.711859999999994,-73.96575,Entire home/apt,300,3,4,2.07,2,0 +44510,258769304,Manhattan,SoHo,40.723009999999995,-74.00229,Entire home/apt,160,4,4,2.45,1,21 +44511,110146823,Manhattan,Chinatown,40.713,-73.99645,Entire home/apt,200,2,5,2.94,1,298 +44512,247584029,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95343000000001,Entire home/apt,132,30,1,0.94,1,191 +44513,34648989,Brooklyn,Crown Heights,40.67058,-73.95347,Entire home/apt,97,6,0,,1,101 +44514,250825715,Manhattan,Chinatown,40.71672,-73.99553,Private room,67,1,0,,3,39 +44515,24413996,Manhattan,Midtown,40.764590000000005,-73.98167,Private room,395,2,0,,1,0 +44516,3577413,Manhattan,Financial District,40.70599,-74.00515,Entire home/apt,139,7,2,0.92,1,1 +44517,258795923,Brooklyn,Gravesend,40.59145,-73.98546,Entire home/apt,129,3,4,3.0,1,167 +44518,47572575,Brooklyn,Crown Heights,40.67259,-73.9525,Entire home/apt,100,2,9,4.09,1,5 +44519,19344148,Brooklyn,Greenpoint,40.725629999999995,-73.95656,Private room,65,2,15,6.92,1,65 +44520,9070754,Manhattan,Harlem,40.82672,-73.94948000000001,Private room,50,10,0,,1,55 +44521,236839319,Manhattan,Little Italy,40.71815,-73.99756,Private room,51,30,0,,3,35 +44522,219517861,Manhattan,Financial District,40.708079999999995,-74.00561,Entire home/apt,130,29,0,,327,338 +44523,236839319,Manhattan,Little Italy,40.717859999999995,-73.9979,Private room,59,30,0,,3,35 +44524,241565326,Queens,Woodside,40.7432,-73.90304,Private room,50,1,16,7.06,2,81 +44525,258818973,Brooklyn,Brighton Beach,40.57541,-73.96028000000001,Private room,55,2,6,6.0,1,50 +44526,17017530,Brooklyn,Williamsburg,40.714659999999995,-73.9378,Private room,89,1,1,1.0,1,188 +44527,258824466,Queens,Sunnyside,40.73898,-73.9212,Private room,60,2,6,2.81,1,180 +44528,258826234,Brooklyn,Crown Heights,40.67708,-73.95489,Entire home/apt,175,7,1,0.63,1,35 +44529,6655776,Manhattan,Morningside Heights,40.804359999999996,-73.96512,Private room,85,2,11,5.79,1,9 +44530,258831812,Queens,Ridgewood,40.70805,-73.91535,Entire home/apt,170,7,0,,1,126 +44531,257390100,Manhattan,Upper West Side,40.80168,-73.96143000000001,Private room,60,1,9,4.58,1,0 +44532,180991373,Queens,Flushing,40.74265,-73.8231,Private room,50,1,0,,5,23 +44533,219517861,Manhattan,Financial District,40.70685,-74.00698,Entire home/apt,130,29,0,,327,246 +44534,219517861,Manhattan,Financial District,40.70825,-74.00482,Entire home/apt,100,29,1,0.88,327,358 +44535,19903807,Bronx,Mott Haven,40.81305,-73.91655,Entire home/apt,120,3,5,2.5,3,45 +44536,790288,Manhattan,Morningside Heights,40.808,-73.96643,Entire home/apt,200,1,0,,1,11 +44537,19109608,Queens,Astoria,40.76149,-73.9203,Private room,95,7,0,,3,356 +44538,6302448,Brooklyn,Bedford-Stuyvesant,40.67882,-73.94941,Entire home/apt,120,2,0,,1,40 +44539,258844868,Manhattan,Chelsea,40.74577,-74.0022,Entire home/apt,129,1,19,8.38,1,5 +44540,258248138,Brooklyn,Bushwick,40.687540000000006,-73.90975,Private room,70,1,5,2.54,2,179 +44541,258848718,Manhattan,Upper West Side,40.77796,-73.98191,Entire home/apt,230,30,0,,1,36 +44542,23831365,Manhattan,NoHo,40.724920000000004,-73.99495999999999,Entire home/apt,250,10,1,0.79,1,18 +44543,218417875,Queens,Ridgewood,40.70173,-73.9073,Private room,60,1,10,4.41,1,365 +44544,258248138,Brooklyn,Bushwick,40.68678,-73.90769,Private room,50,1,4,1.88,2,160 +44545,219517861,Manhattan,Upper East Side,40.76447,-73.96509,Entire home/apt,150,29,0,,327,221 +44546,10714931,Brooklyn,Crown Heights,40.67326,-73.95366999999999,Shared room,24,5,7,3.33,4,14 +44547,132065326,Brooklyn,Bedford-Stuyvesant,40.680659999999996,-73.9457,Private room,79,3,1,1.0,1,83 +44548,101856518,Manhattan,Upper West Side,40.77904,-73.98786,Entire home/apt,180,3,0,,1,0 +44549,64487276,Manhattan,East Harlem,40.79619,-73.93653,Entire home/apt,359,5,4,3.33,1,193 +44550,219517861,Manhattan,Financial District,40.70767,-74.00495,Entire home/apt,179,29,0,,327,340 +44551,256921050,Manhattan,Chinatown,40.71508,-73.99112,Entire home/apt,135,6,3,2.2,2,333 +44552,219517861,Manhattan,Hell's Kitchen,40.7607,-73.9961,Entire home/apt,189,29,0,,327,324 +44553,258892159,Manhattan,Kips Bay,40.74357,-73.97646999999999,Entire home/apt,299,1,0,,1,20 +44554,219517861,Manhattan,Financial District,40.70838,-74.00694,Entire home/apt,100,29,0,,327,351 +44555,254104585,Brooklyn,Bedford-Stuyvesant,40.68316,-73.9287,Private room,70,2,12,5.54,3,349 +44556,257813708,Manhattan,East Village,40.728590000000004,-73.97977,Entire home/apt,250,3,6,3.27,1,162 +44557,257897148,Manhattan,Chelsea,40.74287,-73.99785,Entire home/apt,499,5,6,3.46,1,132 +44558,258753303,Manhattan,Financial District,40.704409999999996,-74.00636999999999,Entire home/apt,300,3,7,3.89,1,231 +44559,133588507,Queens,Jamaica,40.7084,-73.78882,Entire home/apt,64,3,6,3.05,1,37 +44560,17831516,Manhattan,East Harlem,40.787279999999996,-73.9471,Entire home/apt,35,30,0,,1,235 +44561,254104585,Brooklyn,Bedford-Stuyvesant,40.684490000000004,-73.92881,Private room,59,1,22,10.31,3,347 +44562,116674915,Brooklyn,Williamsburg,40.71417,-73.95867,Private room,69,6,2,1.46,1,4 +44563,258978893,Brooklyn,Crown Heights,40.6707,-73.93944,Entire home/apt,120,4,4,2.5,1,64 +44564,257674218,Manhattan,Chelsea,40.74334,-74.0025,Entire home/apt,349,6,5,5.0,1,41 +44565,17655984,Manhattan,Financial District,40.70965,-74.01388,Entire home/apt,168,4,0,,1,29 +44566,258249038,Manhattan,Upper West Side,40.796409999999995,-73.96253,Entire home/apt,589,5,4,4.0,1,109 +44567,258001528,Manhattan,Midtown,40.75607,-73.96768,Entire home/apt,325,4,4,2.79,1,157 +44568,92204575,Brooklyn,Bedford-Stuyvesant,40.69862,-73.94046,Private room,63,1,1,0.7,1,0 +44569,131647128,Manhattan,Hell's Kitchen,40.76775,-73.98869,Entire home/apt,265,30,0,,25,290 +44570,33036193,Manhattan,East Village,40.726929999999996,-73.98374,Private room,100,3,0,,2,52 +44571,107434423,Manhattan,East Village,40.73059,-73.98510999999999,Entire home/apt,271,30,0,,232,323 +44572,258251034,Brooklyn,South Slope,40.666779999999996,-73.98822,Entire home/apt,175,2,2,1.15,1,14 +44573,107434423,Manhattan,East Village,40.72995,-73.98453,Entire home/apt,271,30,0,,232,334 +44574,107434423,Manhattan,East Village,40.73137,-73.98504,Entire home/apt,285,30,0,,232,43 +44575,20500770,Manhattan,East Village,40.72712,-73.98402,Entire home/apt,200,3,4,1.97,1,4 +44576,94111558,Manhattan,Hell's Kitchen,40.76324,-73.98985,Entire home/apt,449,5,5,3.26,1,222 +44577,258800798,Manhattan,Hell's Kitchen,40.75533,-73.99781,Entire home/apt,200,1,9,4.58,1,190 +44578,31367619,Brooklyn,Bedford-Stuyvesant,40.6921,-73.9391,Private room,100,3,0,,1,89 +44579,107434423,Manhattan,East Village,40.73002,-73.98356,Entire home/apt,298,30,0,,232,301 +44580,206094855,Brooklyn,Bushwick,40.68538,-73.90878000000001,Private room,75,10,0,,1,69 +44581,222049462,Queens,Rosedale,40.65919,-73.73411999999999,Private room,60,1,14,6.46,2,88 +44582,219517861,Manhattan,Theater District,40.76106,-73.98647,Entire home/apt,699,29,0,,327,333 +44583,95570540,Staten Island,Oakwood,40.56033,-74.11953000000001,Private room,65,1,1,1.0,3,179 +44584,22070428,Queens,Elmhurst,40.7442,-73.87698,Private room,55,1,1,0.5,1,35 +44585,219517861,Manhattan,Theater District,40.75969,-73.98732,Entire home/apt,699,29,0,,327,220 +44586,544721,Brooklyn,Williamsburg,40.71312,-73.9453,Entire home/apt,192,1,0,,1,8 +44587,219517861,Manhattan,Financial District,40.707240000000006,-74.00614,Entire home/apt,699,29,0,,327,337 +44588,29659188,Brooklyn,Prospect Heights,40.6774,-73.96864000000001,Entire home/apt,279,2,11,5.69,1,112 +44589,19903807,Bronx,Mott Haven,40.81245,-73.91648,Entire home/apt,120,3,1,1.0,3,45 +44590,219517861,Manhattan,Financial District,40.70844,-74.00615,Entire home/apt,699,29,0,,327,333 +44591,70155821,Manhattan,West Village,40.73551,-74.00166999999999,Entire home/apt,350,3,1,0.81,1,12 +44592,219517861,Manhattan,Midtown,40.755720000000004,-73.98331,Entire home/apt,217,29,0,,327,343 +44593,50597569,Manhattan,Hell's Kitchen,40.76215,-73.99589,Private room,112,2,7,3.39,1,1 +44594,259063599,Brooklyn,Borough Park,40.63302,-73.9837,Entire home/apt,120,1,3,1.29,1,177 +44595,259066380,Manhattan,East Village,40.72715,-73.97757,Entire home/apt,173,12,0,,1,0 +44596,256235740,Brooklyn,Crown Heights,40.66878,-73.93888000000001,Shared room,45,2,0,,3,365 +44597,145878384,Brooklyn,East Flatbush,40.65607,-73.92942,Private room,110,3,0,,7,320 +44598,109843377,Brooklyn,Bedford-Stuyvesant,40.679809999999996,-73.91022,Shared room,25,7,0,,2,88 +44599,258159396,Manhattan,Upper West Side,40.8,-73.96025999999999,Entire home/apt,438,5,6,3.1,1,136 +44600,259076960,Brooklyn,Williamsburg,40.712959999999995,-73.93688,Private room,49,2,2,1.4,1,16 +44601,219548549,Brooklyn,Crown Heights,40.669959999999996,-73.92264,Private room,99,1,3,1.34,2,365 +44602,259078758,Queens,Hollis,40.71573,-73.76897,Private room,175,1,0,,3,89 +44603,219517861,Manhattan,Theater District,40.761179999999996,-73.98628000000001,Entire home/apt,154,29,0,,327,343 +44604,259087876,Manhattan,Theater District,40.75747,-73.98226,Entire home/apt,650,1,3,1.58,7,126 +44605,120804342,Brooklyn,Bedford-Stuyvesant,40.695029999999996,-73.9449,Entire home/apt,247,2,6,3.53,2,346 +44606,21010752,Manhattan,East Village,40.72132,-73.9804,Private room,140,4,0,,2,8 +44607,114828297,Brooklyn,Bedford-Stuyvesant,40.67944,-73.91635,Private room,125,1,1,0.45,1,5 +44608,46081317,Queens,Astoria,40.75663,-73.9143,Private room,55,25,0,,3,199 +44609,224317184,Manhattan,Inwood,40.86234,-73.92705,Private room,90,3,0,,8,255 +44610,234274506,Brooklyn,Cypress Hills,40.68138,-73.87736,Private room,35,1,7,3.62,1,158 +44611,257869899,Manhattan,Upper East Side,40.775659999999995,-73.9484,Entire home/apt,380,6,3,2.05,1,123 +44612,257876445,Manhattan,East Village,40.73077,-73.98321999999999,Entire home/apt,299,6,0,,1,140 +44613,3270796,Brooklyn,Williamsburg,40.71038,-73.96094000000001,Private room,70,2,7,3.62,2,55 +44614,3270796,Brooklyn,Williamsburg,40.711079999999995,-73.95988,Entire home/apt,180,2,0,,2,10 +44615,219517861,Manhattan,Chelsea,40.742290000000004,-73.9959,Entire home/apt,209,29,0,,327,365 +44616,219517861,Manhattan,Theater District,40.75963,-73.98764,Entire home/apt,159,29,0,,327,220 +44617,219517861,Manhattan,Financial District,40.70597,-74.01258,Entire home/apt,463,2,0,,327,289 +44618,219517861,Manhattan,Theater District,40.759879999999995,-73.98666999999999,Entire home/apt,220,29,0,,327,333 +44619,219517861,Manhattan,Hell's Kitchen,40.76169,-73.99625999999999,Entire home/apt,187,29,0,,327,331 +44620,219517861,Manhattan,Theater District,40.75965,-73.98652,Entire home/apt,215,29,0,,327,338 +44621,219517861,Manhattan,Theater District,40.75975,-73.98586,Entire home/apt,159,29,0,,327,221 +44622,219517861,Manhattan,Financial District,40.70641,-74.00674000000001,Entire home/apt,130,29,0,,327,337 +44623,137358866,Manhattan,East Harlem,40.79395,-73.94153,Private room,38,30,0,,103,0 +44624,3635302,Brooklyn,Bushwick,40.70434,-73.9177,Private room,90,3,1,0.6,3,1 +44625,9811865,Brooklyn,Greenpoint,40.73033,-73.95799,Entire home/apt,200,2,1,1.0,1,0 +44626,218511760,Brooklyn,Gravesend,40.59662,-73.99113,Entire home/apt,140,1,0,,1,0 +44627,240239465,Queens,St. Albans,40.700990000000004,-73.75497,Private room,40,2,0,,2,84 +44628,258250399,Manhattan,Upper East Side,40.78402,-73.95201,Entire home/apt,399,5,3,3.0,1,135 +44629,252440873,Queens,Bayside,40.761759999999995,-73.76510999999999,Private room,40,31,0,,1,69 +44630,2463994,Manhattan,Nolita,40.722229999999996,-73.99544,Entire home/apt,200,1,1,0.54,1,0 +44631,1478269,Brooklyn,Bedford-Stuyvesant,40.6888,-73.95665,Entire home/apt,90,6,1,1.0,2,0 +44632,19903807,Bronx,Mott Haven,40.81132,-73.91715,Entire home/apt,145,3,1,0.64,3,48 +44633,236425271,Manhattan,Hell's Kitchen,40.76343,-73.99134000000001,Entire home/apt,190,1,6,2.95,1,299 +44634,258589420,Queens,Richmond Hill,40.68797,-73.83351,Private room,58,1,12,5.45,7,179 +44635,221634296,Manhattan,East Village,40.7265,-73.9822,Entire home/apt,341,2,4,2.31,1,274 +44636,236018119,Queens,Queens Village,40.708420000000004,-73.73843000000001,Entire home/apt,175,1,0,,3,0 +44637,51027036,Manhattan,Upper East Side,40.780159999999995,-73.95029,Entire home/apt,280,3,0,,1,45 +44638,258589420,Queens,Richmond Hill,40.689809999999994,-73.83198,Private room,58,1,6,2.73,7,176 +44639,259207391,Queens,Jamaica,40.67626,-73.79809,Private room,150,1,4,2.26,3,356 +44640,8500390,Brooklyn,Bushwick,40.68927,-73.92062,Private room,90,2,3,1.8,1,0 +44641,258589420,Queens,Richmond Hill,40.68782,-73.83348000000001,Private room,53,1,12,5.37,7,180 +44642,78312516,Manhattan,Harlem,40.80036,-73.95598000000001,Entire home/apt,299,4,2,0.91,1,4 +44643,258589420,Queens,Richmond Hill,40.689209999999996,-73.83159,Private room,53,1,11,4.93,7,176 +44644,131647128,Manhattan,Upper West Side,40.77567,-73.988,Entire home/apt,190,30,2,1.36,25,322 +44645,259229690,Queens,Woodside,40.74553,-73.89211999999999,Entire home/apt,179,1,5,2.59,4,23 +44646,131647128,Manhattan,Upper West Side,40.770759999999996,-73.98671,Entire home/apt,190,30,0,,25,181 +44647,62014210,Brooklyn,Greenpoint,40.72155,-73.94671,Entire home/apt,700,15,0,,1,24 +44648,34209884,Brooklyn,Bushwick,40.687459999999994,-73.91254,Private room,49,3,1,0.75,1,158 +44649,29582232,Brooklyn,Flatbush,40.64051,-73.96427,Entire home/apt,85,3,5,5.0,5,113 +44650,131647128,Manhattan,Upper West Side,40.77033,-73.98521,Entire home/apt,190,30,1,0.53,25,189 +44651,157068054,Manhattan,East Harlem,40.79252,-73.94055,Private room,49,3,8,4.07,1,16 +44652,70528858,Brooklyn,Sheepshead Bay,40.60111,-73.95702,Private room,50,2,7,3.82,1,124 +44653,7505535,Queens,Ridgewood,40.70513,-73.90100000000001,Private room,149,1,0,,1,180 +44654,258589420,Queens,Richmond Hill,40.68929,-73.83221,Private room,80,1,11,5.0,7,179 +44655,233270180,Manhattan,Chelsea,40.74386,-73.99344,Private room,85,30,1,0.48,1,69 +44656,18270302,Manhattan,Upper East Side,40.77633,-73.95266,Private room,94,4,2,1.3,2,77 +44657,250689404,Manhattan,Hell's Kitchen,40.761829999999996,-73.99280999999999,Private room,95,3,9,4.58,1,94 +44658,246887851,Queens,Elmhurst,40.74184,-73.88393,Private room,42,2,6,2.77,1,292 +44659,41213523,Manhattan,East Village,40.72925,-73.98005,Entire home/apt,250,2,4,1.88,1,0 +44660,4852748,Manhattan,Harlem,40.804970000000004,-73.94592,Private room,145,3,1,0.63,6,365 +44661,247092108,Queens,Astoria,40.76701,-73.91208,Private room,79,1,2,1.05,3,281 +44662,257406510,Manhattan,Flatiron District,40.74054,-73.98680999999999,Entire home/apt,389,4,4,2.26,1,65 +44663,259078758,Queens,Hollis,40.71702,-73.76760999999999,Private room,50,1,5,3.0,3,89 +44664,259261655,Queens,Astoria,40.77098,-73.91951999999999,Entire home/apt,150,1,7,3.18,1,25 +44665,247092108,Queens,Astoria,40.76807,-73.91341,Private room,110,1,0,,3,0 +44666,259078758,Queens,Hollis,40.71606,-73.76777,Private room,50,1,4,1.76,3,89 +44667,5588820,Manhattan,Chelsea,40.74392,-74.00301,Entire home/apt,159,3,4,2.93,1,1 +44668,219517861,Manhattan,Financial District,40.70673,-74.0051,Entire home/apt,130,29,0,,327,361 +44669,23436595,Brooklyn,Greenpoint,40.73002,-73.95636,Private room,61,1,5,3.06,2,138 +44670,219517861,Manhattan,Financial District,40.707809999999995,-74.00525,Entire home/apt,179,29,1,1.0,327,339 +44671,259282634,Bronx,Morris Heights,40.84752,-73.92293000000001,Private room,130,1,0,,1,180 +44672,34689714,Manhattan,Hell's Kitchen,40.76595,-73.98643,Private room,120,1,10,4.76,5,357 +44673,5007316,Manhattan,Chelsea,40.74781,-74.00084,Entire home/apt,195,1,6,2.77,1,2 +44674,7931702,Brooklyn,Williamsburg,40.712379999999996,-73.94848,Private room,70,1,2,1.2,1,0 +44675,164907052,Manhattan,East Harlem,40.785990000000005,-73.94256,Private room,45,14,0,,1,2 +44676,251859047,Brooklyn,Crown Heights,40.67592,-73.92341,Private room,75,2,2,2.0,3,158 +44677,6556741,Brooklyn,Bedford-Stuyvesant,40.67957,-73.95548000000001,Private room,75,2,3,1.84,4,22 +44678,259307063,Brooklyn,Bushwick,40.69745,-73.92886999999999,Private room,76,2,11,6.23,1,102 +44679,134762059,Brooklyn,Canarsie,40.63149,-73.90796999999999,Private room,50,1,2,0.88,2,365 +44680,175166282,Manhattan,Financial District,40.70896,-74.00695,Entire home/apt,220,30,0,,1,49 +44681,3203693,Brooklyn,Williamsburg,40.709959999999995,-73.95121,Entire home/apt,100,6,1,1.0,1,7 +44682,207795404,Manhattan,Hell's Kitchen,40.75966,-73.98928000000001,Entire home/apt,141,30,0,,2,115 +44683,259357065,Manhattan,Midtown,40.76381,-73.97314,Private room,175,3,0,,1,0 +44684,255697979,Brooklyn,DUMBO,40.70412,-73.99194,Entire home/apt,200,30,0,,2,365 +44685,255697979,Brooklyn,DUMBO,40.70254,-73.99189,Entire home/apt,200,30,0,,2,334 +44686,30686388,Manhattan,Midtown,40.75568,-73.96675,Entire home/apt,240,4,1,1.0,1,19 +44687,259380331,Manhattan,Harlem,40.83052,-73.95014,Private room,100,3,8,3.87,1,359 +44688,1413085,Manhattan,Gramercy,40.73525,-73.98074,Entire home/apt,150,14,0,,1,0 +44689,6600505,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95473,Private room,60,6,0,,2,67 +44690,259393574,Brooklyn,Boerum Hill,40.68656,-73.98841999999999,Entire home/apt,182,4,0,,1,70 +44691,19201987,Manhattan,Washington Heights,40.83416,-73.94327,Private room,55,2,2,2.0,1,86 +44692,65770853,Brooklyn,Clinton Hill,40.68822,-73.96018000000001,Private room,55,2,1,0.51,1,11 +44693,259229690,Queens,Woodside,40.74494,-73.89255,Entire home/apt,150,1,4,2.07,4,56 +44694,234623462,Queens,Flushing,40.75565,-73.83361,Entire home/apt,688,3,0,,1,365 +44695,34741551,Queens,Long Island City,40.74702,-73.95676,Entire home/apt,123,30,0,,1,0 +44696,10166570,Manhattan,East Village,40.72246,-73.98455,Entire home/apt,230,1,1,0.5,1,0 +44697,259229690,Queens,Woodside,40.74479,-73.89199,Entire home/apt,179,1,5,2.54,4,76 +44698,2123674,Brooklyn,Sheepshead Bay,40.609390000000005,-73.95475,Private room,70,3,0,,1,83 +44699,68869481,Brooklyn,Gowanus,40.67152,-73.98991,Entire home/apt,180,10,3,2.09,1,5 +44700,259229690,Queens,Woodside,40.746320000000004,-73.89381999999999,Entire home/apt,179,1,4,2.22,4,75 +44701,87573942,Manhattan,Upper East Side,40.7636,-73.96200999999999,Entire home/apt,150,7,1,1.0,1,93 +44702,259459612,Brooklyn,Williamsburg,40.708090000000006,-73.9661,Entire home/apt,240,2,2,1.4,1,0 +44703,95570540,Staten Island,Oakwood,40.56054,-74.12004,Entire home/apt,130,1,1,1.0,3,363 +44704,259468466,Manhattan,Lower East Side,40.71329,-73.98787,Private room,89,4,12,6.67,2,168 +44705,259087876,Manhattan,Midtown,40.75721,-73.98013,Private room,150,1,8,4.21,7,50 +44706,42916011,Queens,Sunnyside,40.74368,-73.92421,Private room,88,8,0,,2,363 +44707,20906077,Manhattan,Harlem,40.81155,-73.94339000000001,Entire home/apt,165,4,3,1.55,1,0 +44708,205386178,Manhattan,Theater District,40.75977,-73.98245,Entire home/apt,160,2,1,1.0,1,4 +44709,61924400,Manhattan,East Harlem,40.79805,-73.93399000000001,Entire home/apt,379,4,5,3.06,1,219 +44710,178924110,Bronx,Hunts Point,40.81415,-73.88671,Private room,36,1,9,4.09,2,97 +44711,256743247,Queens,Bayside,40.7712,-73.78189,Private room,32,2,7,5.68,2,302 +44712,259087876,Manhattan,Theater District,40.75861,-73.98231,Private room,200,1,5,2.42,7,51 +44713,62066342,Manhattan,Harlem,40.80885,-73.95022,Private room,98,1,2,0.94,2,1 +44714,89599593,Staten Island,South Beach,40.59318,-74.08594000000001,Private room,99,1,2,2.0,1,176 +44715,6556741,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95666999999999,Private room,65,3,1,0.5,4,31 +44716,4852748,Manhattan,Harlem,40.80625,-73.94694,Private room,115,3,0,,6,365 +44717,38216858,Manhattan,Financial District,40.70877,-74.01465999999999,Private room,270,1,0,,4,362 +44718,137358866,Queens,Woodside,40.74341,-73.91064,Private room,54,30,0,,103,10 +44719,85165113,Brooklyn,Bedford-Stuyvesant,40.6818,-73.91813,Entire home/apt,100,3,3,1.73,2,120 +44720,259491984,Brooklyn,Brighton Beach,40.57543,-73.97565,Private room,100,1,0,,1,362 +44721,231727934,Manhattan,Financial District,40.70708,-74.00992,Entire home/apt,230,5,1,0.65,1,43 +44722,38216858,Manhattan,Financial District,40.70796,-74.00288,Private room,270,1,0,,4,365 +44723,6080024,Brooklyn,Flatbush,40.65365,-73.95591999999999,Private room,75,1,3,1.64,1,0 +44724,259505436,Brooklyn,Williamsburg,40.70153,-73.94709,Private room,85,2,3,1.53,1,83 +44725,40038018,Manhattan,Midtown,40.761520000000004,-73.97176,Entire home/apt,449,5,2,1.0,1,132 +44726,258580215,Manhattan,Upper East Side,40.76956,-73.95631999999999,Entire home/apt,399,6,3,2.5,1,93 +44727,34643568,Manhattan,East Harlem,40.79072,-73.93972,Private room,85,3,4,3.0,6,90 +44728,87020760,Brooklyn,Bushwick,40.68291,-73.90756,Entire home/apt,100,3,4,2.22,1,26 +44729,179857032,Brooklyn,Sunset Park,40.6394,-74.01655,Entire home/apt,82,3,2,1.11,1,0 +44730,259544961,Manhattan,Harlem,40.81791,-73.94246,Private room,65,3,3,1.8,1,56 +44731,76679800,Manhattan,Kips Bay,40.741409999999995,-73.97684,Private room,100,28,1,0.46,2,51 +44732,53254710,Manhattan,Chelsea,40.73957,-74.00081999999999,Private room,85,2,4,1.9,1,76 +44733,877452,Brooklyn,Park Slope,40.68182,-73.97954,Private room,95,5,0,,1,0 +44734,259262728,Manhattan,Hell's Kitchen,40.76059,-73.9965,Entire home/apt,290,3,4,2.45,1,23 +44735,48859528,Brooklyn,Bedford-Stuyvesant,40.68189,-73.93799,Entire home/apt,190,3,2,1.43,1,0 +44736,219738858,Manhattan,East Village,40.7307,-73.98299,Entire home/apt,120,365,4,1.9,5,305 +44737,104084124,Manhattan,Upper East Side,40.761540000000004,-73.95796999999999,Entire home/apt,161,2,9,4.15,1,317 +44738,107434423,Manhattan,Tribeca,40.71634,-74.00694,Entire home/apt,305,30,0,,232,309 +44739,107434423,Manhattan,Tribeca,40.71663,-74.00647,Entire home/apt,269,30,0,,232,235 +44740,57412032,Manhattan,Upper East Side,40.77984,-73.95231,Entire home/apt,113,30,0,,1,192 +44741,91263364,Manhattan,Harlem,40.81662,-73.94209000000001,Private room,135,4,0,,1,66 +44742,27973267,Manhattan,Washington Heights,40.84956,-73.93271,Entire home/apt,595,2,4,2.35,5,39 +44743,244229787,Manhattan,West Village,40.73916,-74.00511,Entire home/apt,250,2,1,0.88,1,61 +44744,257867265,Manhattan,Upper East Side,40.76173,-73.96216,Entire home/apt,299,5,3,1.91,1,119 +44745,35645401,Brooklyn,Williamsburg,40.71926,-73.95485,Private room,69,3,1,0.52,1,0 +44746,191407795,Queens,Maspeth,40.72807,-73.89826,Entire home/apt,149,2,0,,1,327 +44747,257999371,Manhattan,Upper East Side,40.76193,-73.95895,Entire home/apt,199,5,9,4.66,1,164 +44748,259474660,Manhattan,Gramercy,40.73745,-73.98168000000001,Entire home/apt,399,5,6,3.27,1,182 +44749,221645033,Brooklyn,Bushwick,40.700559999999996,-73.9184,Private room,50,1,1,0.45,5,328 +44750,258035043,Brooklyn,Bedford-Stuyvesant,40.68079,-73.91893,Private room,48,1,14,6.36,2,249 +44751,258577680,Manhattan,Upper East Side,40.77146,-73.95482,Entire home/apt,365,6,2,1.33,1,101 +44752,27973267,Manhattan,Washington Heights,40.8509,-73.93345,Private room,75,1,9,5.19,5,84 +44753,27973267,Manhattan,Washington Heights,40.85115,-73.93223,Private room,150,1,4,2.31,5,160 +44754,185401573,Staten Island,Stapleton,40.63443,-74.07573000000001,Private room,50,1,10,5.0,1,179 +44755,27973267,Manhattan,Washington Heights,40.85078,-73.93195,Private room,150,1,7,5.12,5,185 +44756,259623238,Manhattan,Upper East Side,40.7765,-73.95458,Entire home/apt,200,3,0,,1,0 +44757,258221896,Manhattan,Upper East Side,40.76256,-73.96389,Entire home/apt,250,6,7,3.56,1,100 +44758,27973267,Manhattan,Washington Heights,40.84942,-73.93223,Private room,150,1,9,5.19,5,188 +44759,259623647,Manhattan,Harlem,40.8036,-73.95308,Private room,150,4,0,,1,88 +44760,23458616,Manhattan,Upper East Side,40.767109999999995,-73.95916,Private room,350,4,4,2.67,1,143 +44761,257837216,Manhattan,Upper West Side,40.80249,-73.96588,Entire home/apt,335,5,5,3.19,1,221 +44762,178924110,Bronx,Hunts Point,40.81258,-73.88566,Private room,40,1,11,5.08,2,121 +44763,166700941,Manhattan,Midtown,40.75785,-73.96905,Entire home/apt,399,5,8,3.81,1,145 +44764,259630588,Brooklyn,Williamsburg,40.71863,-73.9498,Private room,100,1,28,14.0,2,20 +44765,258754678,Manhattan,Financial District,40.70581,-74.00784,Entire home/apt,320,2,7,4.2,1,189 +44766,259447786,Manhattan,Morningside Heights,40.80735,-73.95938000000001,Entire home/apt,150,2,4,2.55,1,101 +44767,48146336,Manhattan,Hell's Kitchen,40.76121,-73.99333,Entire home/apt,120,30,1,1.0,20,340 +44768,247013511,Queens,Jackson Heights,40.752309999999994,-73.8756,Entire home/apt,69,2,3,1.5,6,36 +44769,95688223,Brooklyn,Prospect Heights,40.67436,-73.96704,Entire home/apt,250,4,6,5.29,1,92 +44770,234270791,Brooklyn,Bushwick,40.6961,-73.9307,Private room,64,3,1,0.63,3,178 +44771,258783968,Manhattan,Financial District,40.70532,-74.00681,Entire home/apt,340,2,1,1.0,1,302 +44772,233831164,Brooklyn,Prospect-Lefferts Gardens,40.66005,-73.94216,Private room,40,3,0,,1,11 +44773,137358866,Queens,Woodside,40.743,-73.89444,Private room,47,30,0,,103,246 +44774,259483928,Queens,Glendale,40.705020000000005,-73.89546999999999,Private room,49,1,1,0.79,1,70 +44775,3414140,Brooklyn,South Slope,40.66329,-73.98527,Entire home/apt,119,3,6,4.86,1,45 +44776,137358866,Queens,Astoria,40.76571,-73.92758,Private room,48,30,0,,103,242 +44777,95570540,Staten Island,Oakwood,40.55908,-74.11992,Private room,65,1,1,1.0,3,364 +44778,37149108,Manhattan,Midtown,40.74534,-73.98108,Entire home/apt,250,3,0,,1,364 +44779,259087876,Manhattan,Midtown,40.75845,-73.98026,Private room,325,1,6,3.21,7,67 +44780,15546865,Manhattan,Hell's Kitchen,40.7622,-73.99119,Entire home/apt,485,5,2,1.46,1,240 +44781,257035928,Brooklyn,Bedford-Stuyvesant,40.684259999999995,-73.91937,Entire home/apt,110,3,4,4.0,1,252 +44782,69720852,Manhattan,SoHo,40.72159,-74.00022,Private room,115,7,1,1.0,3,59 +44783,221275418,Brooklyn,Bedford-Stuyvesant,40.67918,-73.93727,Private room,55,2,7,3.44,3,360 +44784,259683532,Queens,Ridgewood,40.70576,-73.89808000000001,Entire home/apt,99,3,10,5.26,1,152 +44785,6279234,Manhattan,Harlem,40.80948,-73.95514,Entire home/apt,148,4,1,1.0,1,8 +44786,21040187,Manhattan,Washington Heights,40.84367,-73.93728,Entire home/apt,95,7,1,0.77,1,25 +44787,241322481,Manhattan,Chelsea,40.74566,-73.99579,Entire home/apt,300,3,6,3.4,1,180 +44788,259690766,Bronx,Belmont,40.85648,-73.88501,Private room,95,2,4,2.35,1,325 +44789,259694336,Queens,Springfield Gardens,40.66899,-73.76163000000001,Private room,70,4,3,1.76,1,69 +44790,226339724,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91375,Private room,50,2,1,0.45,10,361 +44791,226339724,Brooklyn,Bedford-Stuyvesant,40.68022,-73.91423,Private room,40,2,4,1.82,10,350 +44792,34075689,Queens,Maspeth,40.72167,-73.90095,Entire home/apt,145,7,2,1.22,3,38 +44793,1237632,Brooklyn,Bedford-Stuyvesant,40.68965,-73.9288,Private room,65,7,0,,1,0 +44794,256569979,Manhattan,Upper East Side,40.76163,-73.96523,Entire home/apt,149,30,1,0.71,1,0 +44795,50052968,Brooklyn,Bedford-Stuyvesant,40.684470000000005,-73.9396,Private room,42,2,9,4.91,3,64 +44796,256573368,Manhattan,Midtown,40.75436,-73.97254000000001,Entire home/apt,89,3,1,0.57,1,186 +44797,253448038,Manhattan,Hell's Kitchen,40.7561,-73.99096999999999,Entire home/apt,300,3,12,6.92,2,61 +44798,259427246,Brooklyn,Bedford-Stuyvesant,40.6788,-73.92721999999999,Private room,43,1,4,2.0,3,343 +44799,17622034,Queens,Astoria,40.7708,-73.93084,Private room,78,3,0,,1,5 +44800,223087887,Queens,Corona,40.74262,-73.86674000000001,Shared room,25,1,12,6.0,8,351 +44801,172369331,Brooklyn,Coney Island,40.57607,-73.9833,Shared room,25,5,1,0.75,10,129 +44802,117364815,Queens,Astoria,40.75978,-73.90850999999999,Private room,103,30,0,,1,359 +44803,258254263,Manhattan,Upper East Side,40.783229999999996,-73.95094,Entire home/apt,349,5,4,2.67,1,93 +44804,86181642,Queens,Astoria,40.77352,-73.92836,Entire home/apt,150,1,5,2.38,1,24 +44805,816014,Manhattan,Upper West Side,40.78032,-73.97811999999999,Private room,55,90,0,,1,193 +44806,4617977,Brooklyn,Carroll Gardens,40.67967,-73.99665,Entire home/apt,157,20,0,,1,12 +44807,2126138,Manhattan,Financial District,40.70471,-74.0087,Entire home/apt,160,2,3,2.0,1,8 +44808,258003068,Manhattan,Upper West Side,40.79939,-73.96229,Entire home/apt,479,5,5,2.68,1,159 +44809,17477908,Manhattan,Chelsea,40.74557,-74.00825,Entire home/apt,280,30,0,,10,365 +44810,22553147,Brooklyn,Williamsburg,40.71143,-73.94189,Private room,69,1,9,8.18,3,318 +44811,259796664,Queens,Long Island City,40.75297,-73.93698,Entire home/apt,499,1,0,,10,341 +44812,241454071,Bronx,Hunts Point,40.81892,-73.8859,Private room,35,2,4,4.0,2,27 +44813,212171922,Brooklyn,Bedford-Stuyvesant,40.68623,-73.92231,Private room,60,1,9,4.35,1,147 +44814,251311623,Brooklyn,Bedford-Stuyvesant,40.6776,-73.91404,Private room,58,2,4,2.35,5,168 +44815,33229910,Queens,Jackson Heights,40.75312,-73.8812,Entire home/apt,120,7,0,,1,58 +44816,251311623,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91261999999999,Private room,58,2,3,1.48,5,167 +44817,259796664,Queens,Long Island City,40.75509,-73.93703000000001,Entire home/apt,299,1,2,1.62,10,341 +44818,259796664,Queens,Long Island City,40.75334,-73.93630999999999,Entire home/apt,299,1,3,2.05,10,357 +44819,251311623,Brooklyn,Bedford-Stuyvesant,40.6792,-73.91411,Private room,58,2,4,2.14,5,164 +44820,251311623,Brooklyn,Bedford-Stuyvesant,40.67757,-73.91314,Private room,58,2,8,6.67,5,171 +44821,259796664,Queens,Long Island City,40.7546,-73.93506,Private room,99,1,9,4.15,10,360 +44822,93598122,Brooklyn,Brighton Beach,40.580020000000005,-73.96596,Private room,100,2,7,3.44,1,31 +44823,259796664,Queens,Long Island City,40.753859999999996,-73.93677,Private room,79,1,15,7.26,10,348 +44824,258629654,Manhattan,Kips Bay,40.7447,-73.97959,Entire home/apt,299,6,8,4.36,1,158 +44825,6710372,Manhattan,Hell's Kitchen,40.7633,-73.9878,Entire home/apt,200,2,2,1.36,1,5 +44826,259816232,Manhattan,Lower East Side,40.719770000000004,-73.98423000000001,Private room,128,1,0,,2,365 +44827,251229393,Queens,Sunnyside,40.745459999999994,-73.93341,Entire home/apt,149,4,2,1.11,2,298 +44828,243129380,Brooklyn,Bushwick,40.68581,-73.90838000000001,Private room,58,2,6,3.05,4,122 +44829,259796664,Queens,Long Island City,40.75314,-73.93644,Private room,89,1,9,4.5,10,357 +44830,259796664,Queens,Long Island City,40.753170000000004,-73.93502,Private room,99,1,7,3.44,10,352 +44831,259796664,Queens,Long Island City,40.75502,-73.9349,Private room,79,1,8,4.14,10,360 +44832,259796664,Queens,Long Island City,40.75411,-73.93634,Private room,89,1,9,6.28,10,358 +44833,189421403,Queens,Ridgewood,40.70539,-73.90857,Entire home/apt,155,2,2,1.0,3,59 +44834,259826953,Brooklyn,Williamsburg,40.71741,-73.95691,Private room,99,3,4,2.26,2,180 +44835,34356520,Queens,Ridgewood,40.711040000000004,-73.90303,Private room,65,2,7,4.04,1,104 +44836,259796664,Queens,Long Island City,40.75358,-73.93703000000001,Private room,79,1,15,7.14,10,350 +44837,258073534,Manhattan,Hell's Kitchen,40.765570000000004,-73.98399,Entire home/apt,399,6,5,2.59,1,105 +44838,211941129,Brooklyn,Greenpoint,40.7261,-73.95841999999999,Private room,70,1,0,,2,0 +44839,163012750,Brooklyn,Park Slope,40.68234,-73.97677,Private room,80,6,0,,1,44 +44840,19509387,Manhattan,East Village,40.72592,-73.98701,Entire home/apt,600,2,1,0.68,1,0 +44841,246680134,Brooklyn,Williamsburg,40.718790000000006,-73.95993,Private room,90,1,11,5.59,2,58 +44842,259838485,Bronx,Parkchester,40.837920000000004,-73.85526,Entire home/apt,100,1,8,4.71,1,51 +44843,178689185,Brooklyn,Prospect-Lefferts Gardens,40.663709999999995,-73.94351,Entire home/apt,125,4,3,1.64,1,145 +44844,219727469,Brooklyn,Bedford-Stuyvesant,40.67903,-73.91037,Private room,60,1,2,1.05,4,9 +44845,840868,Manhattan,Washington Heights,40.85112,-73.93851,Entire home/apt,91,4,0,,2,67 +44846,259846443,Manhattan,Theater District,40.76127,-73.98579000000001,Private room,130,2,10,5.0,1,24 +44847,259816232,Manhattan,Lower East Side,40.71911,-73.98414,Entire home/apt,250,1,0,,2,179 +44848,7633037,Manhattan,West Village,40.73731,-74.00929000000001,Entire home/apt,140,25,0,,2,73 +44849,234422924,Bronx,City Island,40.8439,-73.78792,Private room,29,1,2,1.43,1,18 +44850,187611907,Manhattan,Kips Bay,40.740790000000004,-73.97965,Entire home/apt,134,30,0,,1,90 +44851,140830391,Manhattan,Inwood,40.861909999999995,-73.92726,Private room,125,2,1,1.0,9,335 +44852,259880452,Queens,Flushing,40.75502,-73.81582,Entire home/apt,119,2,4,2.35,2,311 +44853,48978249,Queens,Flushing,40.75549,-73.82243000000001,Shared room,200,1,0,,2,72 +44854,257802323,Manhattan,Financial District,40.70485,-74.00752,Entire home/apt,360,3,3,2.05,1,243 +44855,247453895,Manhattan,Murray Hill,40.74532,-73.97534,Shared room,43,2,2,1.43,3,358 +44856,259376960,Manhattan,East Harlem,40.80068,-73.94072,Entire home/apt,280,2,6,3.53,1,192 +44857,20012998,Brooklyn,Bedford-Stuyvesant,40.68087,-73.92061,Private room,60,3,3,2.31,2,322 +44858,193835968,Bronx,Wakefield,40.89338,-73.84785,Entire home/apt,309,2,10,5.56,1,173 +44859,259945322,Manhattan,Chelsea,40.74493,-74.00195,Entire home/apt,215,3,2,0.97,1,45 +44860,186302609,Manhattan,Hell's Kitchen,40.771570000000004,-73.99309000000001,Private room,150,9,0,,1,141 +44861,10568305,Brooklyn,Crown Heights,40.66975,-73.92878,Private room,49,1,2,2.0,1,325 +44862,145319773,Manhattan,Harlem,40.8212,-73.95479,Entire home/apt,115,6,3,3.0,1,279 +44863,20025889,Brooklyn,Gravesend,40.598459999999996,-73.99175,Entire home/apt,85,60,0,,2,87 +44864,4056392,Manhattan,West Village,40.73563,-73.99846,Entire home/apt,500,4,1,0.7,1,0 +44865,20025889,Brooklyn,Gravesend,40.59935,-73.99053,Entire home/apt,85,60,0,,2,87 +44866,73195328,Manhattan,Harlem,40.8299,-73.94360999999999,Private room,69,7,2,1.71,1,30 +44867,259968030,Brooklyn,Flatbush,40.64568,-73.96256,Private room,70,3,1,0.53,1,105 +44868,210800523,Brooklyn,Bedford-Stuyvesant,40.681020000000004,-73.91039,Private room,40,4,0,,1,0 +44869,237729032,Brooklyn,Cypress Hills,40.68603,-73.8782,Private room,40,1,1,1.0,2,340 +44870,35819327,Staten Island,Rosebank,40.614709999999995,-74.06679,Entire home/apt,135,2,1,1.0,1,0 +44871,260009677,Queens,Jamaica,40.69242,-73.79673000000001,Entire home/apt,90,2,14,7.92,1,354 +44872,174785358,Bronx,Port Morris,40.80816,-73.93176,Shared room,28,1,4,2.07,7,64 +44873,147762665,Bronx,Wakefield,40.88649,-73.85889,Private room,37,1,12,6.21,3,315 +44874,260021770,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92335,Entire home/apt,150,2,7,4.12,1,4 +44875,4365051,Manhattan,Hell's Kitchen,40.77024,-73.99213,Entire home/apt,170,2,1,1.0,1,0 +44876,140823633,Manhattan,Midtown,40.76208,-73.97171999999999,Entire home/apt,750,2,4,2.22,1,263 +44877,77220567,Manhattan,Upper West Side,40.797270000000005,-73.96865,Private room,85,3,1,1.0,1,67 +44878,260038086,Queens,Laurelton,40.6688,-73.74384,Entire home/apt,254,3,2,1.46,1,24 +44879,117187237,Brooklyn,Bushwick,40.70371,-73.92877,Private room,50,14,6,5.0,1,0 +44880,174785358,Bronx,Port Morris,40.80856,-73.93055,Shared room,28,1,4,2.03,7,71 +44881,164051353,Manhattan,Chelsea,40.74443,-73.99166,Private room,140,1,7,3.75,3,87 +44882,50868008,Manhattan,Hell's Kitchen,40.76486,-73.99316,Entire home/apt,367,2,1,1.0,1,229 +44883,16212805,Manhattan,Lower East Side,40.71967,-73.9853,Entire home/apt,130,5,0,,1,0 +44884,260046126,Manhattan,Upper West Side,40.78958,-73.9794,Entire home/apt,165,1,2,1.33,1,346 +44885,116874533,Manhattan,Harlem,40.81454,-73.94424000000001,Private room,55,2,8,4.44,2,330 +44886,260062581,Brooklyn,Bushwick,40.69619,-73.92973,Private room,45,5,3,2.73,1,0 +44887,133398247,Queens,Jackson Heights,40.747009999999996,-73.89395,Entire home/apt,96,1,8,4.44,1,157 +44888,6556741,Brooklyn,Bedford-Stuyvesant,40.67972,-73.9567,Private room,70,3,6,2.9,4,20 +44889,20810804,Queens,Ditmars Steinway,40.77922,-73.90751999999999,Private room,35,85,0,,1,228 +44890,120875818,Brooklyn,Bushwick,40.69155,-73.92518000000001,Private room,60,1,6,3.91,2,167 +44891,54678020,Manhattan,East Village,40.727909999999994,-73.98485,Entire home/apt,150,2,8,4.36,1,67 +44892,258431072,Manhattan,Hell's Kitchen,40.763259999999995,-73.98612,Entire home/apt,345,3,2,1.67,1,212 +44893,260191397,Manhattan,Theater District,40.75745,-73.98595999999999,Private room,100,1,7,4.04,7,296 +44894,260191397,Manhattan,Theater District,40.75588,-73.987,Private room,100,1,0,,7,293 +44895,260191397,Manhattan,Theater District,40.75575,-73.98736,Private room,100,1,0,,7,294 +44896,260191397,Manhattan,Theater District,40.7575,-73.98728,Private room,100,1,0,,7,300 +44897,260191397,Manhattan,Theater District,40.75679,-73.98725999999999,Private room,100,1,2,2.0,7,300 +44898,260191397,Manhattan,Theater District,40.7559,-73.98562,Private room,100,1,2,1.36,7,298 +44899,260191397,Manhattan,Theater District,40.75612,-73.98621999999999,Private room,100,1,0,,7,256 +44900,53105192,Brooklyn,Bushwick,40.69628,-73.92627,Private room,65,1,8,3.87,1,3 +44901,176899233,Brooklyn,Kensington,40.64196,-73.97088000000001,Shared room,65,1,0,,2,27 +44902,260159741,Brooklyn,Williamsburg,40.71083,-73.96736,Entire home/apt,259,1,9,6.0,1,202 +44903,8033432,Manhattan,Hell's Kitchen,40.75865,-73.99,Private room,100,1,6,3.4,4,116 +44904,6167891,Brooklyn,Williamsburg,40.70171,-73.94547,Entire home/apt,78,4,2,2.0,1,14 +44905,22146650,Manhattan,Harlem,40.81257,-73.94444,Entire home/apt,178,2,2,1.36,1,52 +44906,20537772,Brooklyn,Cypress Hills,40.6819,-73.89097,Entire home/apt,135,2,3,3.0,1,43 +44907,1752807,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94386999999999,Private room,45,1,3,1.58,2,0 +44908,27493716,Brooklyn,Sunset Park,40.64836,-74.00076,Private room,70,1,2,1.3,2,361 +44909,257654201,Manhattan,Hell's Kitchen,40.76313,-73.99081,Entire home/apt,265,6,4,2.26,1,45 +44910,259776956,Brooklyn,Canarsie,40.630309999999994,-73.89618,Entire home/apt,140,1,5,4.41,5,365 +44911,190869074,Brooklyn,Sunset Park,40.6475,-74.01428,Entire home/apt,130,10,1,0.65,1,90 +44912,75566080,Brooklyn,Williamsburg,40.71645,-73.95194000000001,Entire home/apt,175,4,2,2.0,1,71 +44913,255234351,Manhattan,Chelsea,40.74129,-74.00457,Private room,109,1,0,,4,326 +44914,255234351,Manhattan,Chelsea,40.740520000000004,-74.0031,Private room,199,1,0,,4,355 +44915,255234351,Manhattan,West Village,40.73968,-74.00455,Private room,299,1,0,,4,269 +44916,255234351,Manhattan,Chelsea,40.74006,-74.00248,Private room,159,1,0,,4,362 +44917,159014432,Manhattan,Lower East Side,40.714220000000005,-73.9896,Entire home/apt,341,2,2,1.76,1,245 +44918,260209224,Queens,Jackson Heights,40.75015,-73.86899,Entire home/apt,153,4,0,,3,135 +44919,258741560,Manhattan,Financial District,40.70562,-74.00712,Entire home/apt,320,3,5,3.26,1,212 +44920,231548638,Manhattan,East Village,40.73081,-73.98876,Entire home/apt,549,5,8,4.29,1,155 +44921,229060975,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92339,Entire home/apt,60,14,0,,1,329 +44922,79461666,Manhattan,Hell's Kitchen,40.76421,-73.99132,Entire home/apt,290,3,2,1.13,3,8 +44923,256533375,Manhattan,Hell's Kitchen,40.75634,-73.99332,Entire home/apt,149,31,1,0.77,1,182 +44924,220847379,Brooklyn,Crown Heights,40.678979999999996,-73.95725,Entire home/apt,150,3,3,2.43,1,345 +44925,332521,Brooklyn,Prospect Heights,40.68305,-73.97503,Entire home/apt,150,4,0,,1,5 +44926,6913402,Brooklyn,Bedford-Stuyvesant,40.68435,-73.92027,Private room,59,1,0,,1,55 +44927,81133553,Brooklyn,Williamsburg,40.70612,-73.9264,Private room,90,3,0,,1,156 +44928,50364039,Brooklyn,Williamsburg,40.71815,-73.96412,Entire home/apt,165,2,0,,3,314 +44929,22577148,Brooklyn,Bedford-Stuyvesant,40.69621,-73.93467,Private room,130,1,3,1.53,7,136 +44930,244817841,Brooklyn,East New York,40.66814,-73.8953,Private room,38,7,2,1.2,13,258 +44931,109847539,Manhattan,Roosevelt Island,40.75732,-73.95314,Entire home/apt,255,7,0,,2,73 +44932,26483902,Manhattan,East Village,40.72923,-73.98735,Entire home/apt,175,2,0,,1,157 +44933,3250169,Brooklyn,Carroll Gardens,40.68184,-73.99359,Private room,95,3,3,1.76,1,66 +44934,260209224,Queens,Flushing,40.75098,-73.84695,Entire home/apt,110,3,0,,3,153 +44935,257642062,Manhattan,Midtown,40.760940000000005,-73.97318,Entire home/apt,599,5,4,4.0,1,135 +44936,52796837,Manhattan,Harlem,40.813959999999994,-73.94488,Entire home/apt,160,6,8,5.22,1,43 +44937,244817841,Brooklyn,East New York,40.66983,-73.89411,Private room,38,7,3,1.7,13,296 +44938,69516382,Brooklyn,Williamsburg,40.71032,-73.9614,Entire home/apt,200,1,4,2.45,1,50 +44939,89309763,Manhattan,Greenwich Village,40.730979999999995,-73.99361,Entire home/apt,175,20,0,,1,79 +44940,244817841,Brooklyn,East New York,40.669290000000004,-73.89421,Private room,38,7,4,2.35,13,282 +44941,244817841,Brooklyn,East New York,40.66816,-73.89577,Private room,38,7,3,1.61,13,239 +44942,144522384,Brooklyn,Carroll Gardens,40.68574,-73.99421,Entire home/apt,250,2,0,,1,0 +44943,260186993,Manhattan,Lower East Side,40.71955,-73.99115,Entire home/apt,243,2,1,1.0,1,97 +44944,260299060,Queens,Rego Park,40.72654,-73.86077,Entire home/apt,100,1,7,4.04,1,2 +44945,260425153,Manhattan,Midtown,40.7647,-73.97452,Private room,100,1,0,,14,365 +44946,260425153,Manhattan,Midtown,40.76393,-73.97594000000001,Private room,400,1,0,,14,245 +44947,260425153,Manhattan,Midtown,40.76443,-73.97588,Private room,350,1,2,2.0,14,365 +44948,260425153,Manhattan,Midtown,40.76425,-73.97641999999999,Private room,475,1,0,,14,343 +44949,260425153,Manhattan,Midtown,40.76471,-73.97454,Private room,475,1,0,,14,361 +44950,260425153,Manhattan,Midtown,40.76535,-73.97556,Private room,425,1,0,,14,351 +44951,260425153,Manhattan,Midtown,40.76395,-73.97622,Private room,450,1,3,2.43,14,365 +44952,260425153,Manhattan,Midtown,40.76427,-73.97618,Private room,375,1,1,1.0,14,349 +44953,260425153,Manhattan,Midtown,40.7649,-73.97601999999999,Private room,450,1,0,,14,350 +44954,260425153,Manhattan,Midtown,40.764759999999995,-73.9762,Private room,500,1,0,,14,362 +44955,260425153,Manhattan,Midtown,40.764590000000005,-73.97416,Private room,425,1,1,1.0,14,357 +44956,260425153,Manhattan,Midtown,40.76393,-73.9758,Private room,450,1,0,,14,355 +44957,260425153,Manhattan,Midtown,40.76443,-73.97478000000001,Private room,450,1,0,,14,336 +44958,260425153,Manhattan,Midtown,40.76559,-73.97632,Private room,425,1,1,1.0,14,340 +44959,260861596,Manhattan,SoHo,40.722429999999996,-74.0043,Private room,100,1,0,,7,276 +44960,260861596,Manhattan,SoHo,40.72372,-74.00408,Private room,100,1,1,1.0,7,328 +44961,260861596,Manhattan,SoHo,40.72172,-74.00435999999999,Private room,100,1,1,1.0,7,270 +44962,260861596,Manhattan,SoHo,40.721740000000004,-74.00354,Private room,100,1,0,,7,266 +44963,260861596,Manhattan,SoHo,40.723240000000004,-74.00401,Private room,100,1,1,1.0,7,292 +44964,260861596,Manhattan,SoHo,40.7239,-74.00379000000001,Private room,100,1,0,,7,325 +44965,260861596,Manhattan,SoHo,40.72353,-74.00409,Private room,100,1,0,,7,331 +44966,261761719,Manhattan,Midtown,40.764759999999995,-73.98246,Private room,100,1,0,,6,297 +44967,261761719,Manhattan,Hell's Kitchen,40.76555,-73.98478,Private room,100,1,0,,6,299 +44968,261761719,Manhattan,Midtown,40.76413,-73.98431,Private room,100,1,0,,6,290 +44969,261761719,Manhattan,Midtown,40.76352,-73.9828,Private room,100,1,0,,6,294 +44970,261761719,Manhattan,Midtown,40.764790000000005,-73.98307,Private room,100,1,0,,6,299 +44971,261761719,Manhattan,Midtown,40.76413,-73.98435,Private room,100,1,0,,6,271 +44972,261632622,Manhattan,Theater District,40.75625,-73.98434,Private room,100,1,0,,9,307 +44973,261632622,Manhattan,Theater District,40.75466,-73.98487,Private room,100,1,0,,9,283 +44974,261632622,Manhattan,Theater District,40.75481,-73.9856,Private room,100,1,0,,9,317 +44975,261632622,Manhattan,Theater District,40.75597,-73.98395,Private room,100,1,0,,9,301 +44976,261632622,Manhattan,Theater District,40.75645,-73.985,Private room,100,1,1,0.94,9,317 +44977,261632622,Manhattan,Theater District,40.75628,-73.98356,Private room,100,1,4,3.0,9,309 +44978,261632622,Manhattan,Theater District,40.754909999999995,-73.98507,Private room,100,1,3,3.0,9,318 +44979,261632622,Manhattan,Theater District,40.75631,-73.98383000000001,Private room,100,1,1,1.0,9,317 +44980,261632622,Manhattan,Theater District,40.75623,-73.98356,Private room,100,1,0,,9,311 +44981,261761196,Manhattan,Midtown,40.765809999999995,-73.9835,Private room,100,1,0,,8,309 +44982,261761196,Manhattan,Midtown,40.76555,-73.98272,Private room,100,1,0,,8,321 +44983,261761196,Manhattan,Midtown,40.76574,-73.98201,Private room,100,1,0,,8,318 +44984,261761196,Manhattan,Midtown,40.76547,-73.98252,Private room,100,1,0,,8,319 +44985,261761196,Manhattan,Midtown,40.76368,-73.98225,Private room,100,1,0,,8,311 +44986,260639745,Manhattan,Theater District,40.761559999999996,-73.98470999999999,Private room,100,1,2,2.0,15,349 +44987,260251845,Manhattan,Upper East Side,40.77424,-73.95322,Entire home/apt,211,3,4,2.5,1,63 +44988,260639745,Manhattan,Theater District,40.76251,-73.98455,Private room,300,1,5,5.0,15,304 +44989,260639745,Manhattan,Theater District,40.76248,-73.98584,Private room,100,1,0,,15,358 +44990,260639745,Manhattan,Theater District,40.762370000000004,-73.98442,Private room,100,1,0,,15,359 +44991,260639745,Manhattan,Theater District,40.76246,-73.98396,Private room,100,1,0,,15,336 +44992,260639745,Manhattan,Theater District,40.761790000000005,-73.98589,Private room,100,1,0,,15,296 +44993,260639745,Manhattan,Theater District,40.761790000000005,-73.98399,Private room,100,1,1,1.0,15,351 +44994,260639745,Manhattan,Theater District,40.76187,-73.98413000000001,Private room,100,1,0,,15,349 +44995,260639745,Manhattan,Theater District,40.761340000000004,-73.98456,Private room,100,1,0,,15,232 +44996,260618374,Manhattan,Theater District,40.75608,-73.98915,Private room,100,1,0,,13,356 +44997,260618374,Manhattan,Theater District,40.75633,-73.98921999999999,Private room,100,1,0,,13,335 +44998,260618374,Manhattan,Theater District,40.75612,-73.98864,Private room,100,1,0,,13,351 +44999,260618374,Manhattan,Theater District,40.75513,-73.98772,Private room,100,1,0,,13,341 +45000,260618374,Manhattan,Theater District,40.75615,-73.98803000000001,Private room,100,1,0,,13,353 +45001,260618374,Manhattan,Theater District,40.75609,-73.98724,Private room,100,1,0,,13,343 +45002,260618374,Manhattan,Midtown,40.754490000000004,-73.98737,Private room,100,1,0,,13,312 +45003,260618374,Manhattan,Theater District,40.75657,-73.9881,Private room,100,1,0,,13,351 +45004,260618374,Manhattan,Midtown,40.754709999999996,-73.98781,Private room,100,1,0,,13,352 +45005,260618374,Manhattan,Theater District,40.75513,-73.98784,Private room,100,1,0,,13,344 +45006,260618374,Manhattan,Theater District,40.756609999999995,-73.98756999999999,Private room,100,1,0,,13,358 +45007,260618374,Manhattan,Midtown,40.75507,-73.98883000000001,Private room,100,1,0,,13,364 +45008,260618374,Manhattan,Theater District,40.75569,-73.98933000000001,Private room,100,1,0,,13,362 +45009,260639745,Manhattan,Theater District,40.76275,-73.98429,Private room,100,1,0,,15,201 +45010,260639745,Manhattan,Theater District,40.76175,-73.9857,Private room,300,1,0,,15,359 +45011,260639745,Manhattan,Theater District,40.76267,-73.9839,Private room,100,1,0,,15,328 +45012,260639745,Manhattan,Theater District,40.76267,-73.98557,Private room,100,1,2,2.0,15,359 +45013,260639745,Manhattan,Theater District,40.7627,-73.98437,Private room,100,1,4,4.0,15,359 +45014,260639745,Manhattan,Theater District,40.76251,-73.98392,Private room,100,1,0,,15,292 +45015,261750091,Manhattan,Theater District,40.76097,-73.98181,Private room,100,1,2,2.0,7,0 +45016,261750091,Manhattan,Theater District,40.76112,-73.98376999999999,Private room,100,1,1,1.0,7,320 +45017,261750091,Manhattan,Theater District,40.76245,-73.98339,Private room,100,1,0,,7,320 +45018,261750091,Manhattan,Theater District,40.76262,-73.98305,Private room,100,1,0,,7,319 +45019,261750091,Manhattan,Theater District,40.762029999999996,-73.98191,Private room,100,1,0,,7,230 +45020,261750091,Manhattan,Theater District,40.76113,-73.9818,Private room,100,1,0,,7,315 +45021,261750091,Manhattan,Theater District,40.76055,-73.98362,Private room,100,1,0,,7,262 +45022,259391287,Manhattan,East Harlem,40.79957,-73.94211999999999,Entire home/apt,290,2,11,6.11,1,268 +45023,260352154,Queens,South Ozone Park,40.67072,-73.79534,Entire home/apt,400,1,1,0.86,1,281 +45024,257396181,Manhattan,Midtown,40.76547,-73.97952,Entire home/apt,250,30,1,1.0,1,342 +45025,28371926,Brooklyn,Williamsburg,40.70973,-73.94521,Private room,60,2,9,4.82,1,87 +45026,66266373,Manhattan,East Village,40.727090000000004,-73.98581999999999,Entire home/apt,150,1,8,4.9,1,15 +45027,160349432,Manhattan,Washington Heights,40.85747,-73.93439000000001,Entire home/apt,100,30,0,,1,8 +45028,260379800,Brooklyn,Bushwick,40.68792,-73.90993,Entire home/apt,425,3,0,,1,112 +45029,26413356,Manhattan,Hell's Kitchen,40.75562,-73.99459,Entire home/apt,175,36,0,,1,0 +45030,6397405,Manhattan,Chelsea,40.74484,-73.99688,Entire home/apt,275,2,2,1.76,1,15 +45031,260383024,Manhattan,Midtown,40.75546,-73.99095,Entire home/apt,945,2,11,7.02,1,264 +45032,7087084,Bronx,Fordham,40.86003,-73.89314,Private room,47,1,2,1.36,1,236 +45033,247013511,Queens,Jackson Heights,40.75246,-73.87505,Entire home/apt,79,2,8,4.36,6,336 +45034,253727905,Manhattan,Hell's Kitchen,40.76297,-73.98951,Entire home/apt,179,4,4,2.26,1,260 +45035,14758945,Manhattan,East Village,40.728590000000004,-73.98008,Entire home/apt,150,4,2,1.36,1,3 +45036,1486824,Brooklyn,Bushwick,40.69402,-73.92378000000001,Entire home/apt,154,2,2,1.4,1,0 +45037,74514078,Manhattan,Washington Heights,40.8362,-73.94063,Private room,65,3,5,3.0,1,33 +45038,11389064,Brooklyn,Williamsburg,40.71369,-73.96625999999999,Entire home/apt,109,3,2,0.98,1,5 +45039,16903474,Manhattan,Chelsea,40.748940000000005,-73.99466,Entire home/apt,280,21,0,,1,219 +45040,40707667,Brooklyn,Bushwick,40.70191,-73.91951999999999,Private room,60,1,12,5.9,1,27 +45041,18263672,Brooklyn,Bushwick,40.69243,-73.90741,Entire home/apt,100,2,3,1.73,1,35 +45042,260411862,Brooklyn,Cypress Hills,40.67815,-73.86584,Entire home/apt,500,1,2,2.0,1,363 +45043,260413032,Brooklyn,Bedford-Stuyvesant,40.692409999999995,-73.95793,Entire home/apt,149,2,3,3.0,1,268 +45044,260420558,Manhattan,SoHo,40.719879999999996,-74.00062,Entire home/apt,620,2,4,2.22,1,169 +45045,260045150,Manhattan,Financial District,40.70472,-74.00763,Private room,210,2,5,2.83,1,0 +45046,9910595,Manhattan,Upper East Side,40.76703,-73.95555999999999,Entire home/apt,155,2,0,,1,113 +45047,109389069,Brooklyn,Bushwick,40.694140000000004,-73.92477,Entire home/apt,98,2,7,3.33,1,4 +45048,252646618,Queens,Astoria,40.7644,-73.91208,Private room,65,1,2,2.0,2,0 +45049,225659989,Manhattan,Upper East Side,40.766220000000004,-73.95295,Entire home/apt,200,1,10,5.08,1,280 +45050,63554174,Brooklyn,Bedford-Stuyvesant,40.690909999999995,-73.94514000000001,Entire home/apt,115,30,4,2.35,1,133 +45051,214187963,Manhattan,West Village,40.730109999999996,-74.00401,Entire home/apt,285,30,1,1.0,2,179 +45052,14171579,Queens,Astoria,40.76335,-73.92769,Entire home/apt,140,3,5,5.0,1,254 +45053,260452146,Brooklyn,Williamsburg,40.714620000000004,-73.95883,Private room,72,1,0,,1,0 +45054,5889721,Brooklyn,Bay Ridge,40.6347,-74.02268000000001,Private room,54,1,8,4.21,2,339 +45055,7832790,Queens,Astoria,40.76269,-73.91232,Private room,90,1,2,1.25,2,90 +45056,614026,Brooklyn,Brooklyn Heights,40.69043,-73.99365,Entire home/apt,500,8,0,,1,72 +45057,121861644,Manhattan,Financial District,40.707190000000004,-74.00664,Entire home/apt,215,3,2,0.98,1,14 +45058,121378704,Queens,Jackson Heights,40.75353,-73.87688,Entire home/apt,86,1,1,1.0,1,125 +45059,831185,Brooklyn,Crown Heights,40.67958,-73.96226999999999,Entire home/apt,305,2,1,1.0,3,179 +45060,914386,Queens,Ditmars Steinway,40.77046,-73.9137,Entire home/apt,99,2,2,1.18,2,139 +45061,236572440,Manhattan,Midtown,40.75535,-73.96469,Entire home/apt,340,30,0,,2,297 +45062,236572440,Manhattan,Midtown,40.75697,-73.96311999999999,Entire home/apt,340,30,0,,2,365 +45063,65388010,Manhattan,Midtown,40.762609999999995,-73.9768,Entire home/apt,560,30,0,,1,337 +45064,260475429,Brooklyn,Kensington,40.64221,-73.98125999999999,Entire home/apt,125,2,1,1.0,1,74 +45065,129468527,Brooklyn,Gravesend,40.59997,-73.97804000000001,Entire home/apt,90,30,0,,1,80 +45066,221645033,Brooklyn,Bushwick,40.69958,-73.91979,Private room,50,1,3,1.8,5,62 +45067,218116366,Bronx,Longwood,40.82756,-73.8871,Private room,70,1,6,2.95,2,89 +45068,260496218,Queens,Bellerose,40.73138,-73.74122,Private room,100,1,1,0.79,2,342 +45069,221718743,Manhattan,Midtown,40.746109999999994,-73.98228,Entire home/apt,350,2,4,2.79,1,86 +45070,141426597,Manhattan,Washington Heights,40.857620000000004,-73.93175,Private room,115,3,3,2.05,3,179 +45071,260609528,Manhattan,Battery Park City,40.70669,-74.0165,Private room,100,1,0,,7,348 +45072,141426597,Manhattan,Washington Heights,40.85768,-73.93247,Private room,105,3,4,2.4,3,180 +45073,260609528,Manhattan,Battery Park City,40.70497,-74.01720999999999,Private room,100,1,0,,7,348 +45074,260609528,Manhattan,Battery Park City,40.70622,-74.01651,Private room,100,1,0,,7,359 +45075,260609528,Manhattan,Battery Park City,40.70486,-74.01799,Private room,100,1,0,,7,360 +45076,260609528,Manhattan,Battery Park City,40.70515,-74.01850999999999,Private room,100,1,0,,7,361 +45077,260609528,Manhattan,Battery Park City,40.7068,-74.01775,Private room,100,1,1,1.0,7,339 +45078,260609528,Manhattan,Battery Park City,40.70494,-74.01692,Private room,100,1,0,,7,360 +45079,141426597,Manhattan,Washington Heights,40.85584,-73.93364,Private room,105,3,3,1.61,3,180 +45080,50052968,Brooklyn,Bedford-Stuyvesant,40.68473,-73.93975999999999,Private room,100,2,4,2.67,3,63 +45081,260577152,Manhattan,Midtown,40.74365,-73.98716999999999,Private room,350,1,0,,10,363 +45082,21306,Brooklyn,Williamsburg,40.70966,-73.95129,Private room,73,21,2,1.18,1,36 +45083,260577152,Manhattan,Midtown,40.74478,-73.98618,Private room,300,1,0,,10,360 +45084,260577152,Manhattan,Midtown,40.74366,-73.98607,Private room,250,1,0,,10,361 +45085,260577152,Manhattan,Midtown,40.74343,-73.9857,Private room,500,1,0,,10,363 +45086,260577152,Manhattan,Midtown,40.74433,-73.98555,Private room,250,1,0,,10,10 +45087,260577152,Manhattan,Midtown,40.74476,-73.98550999999999,Private room,350,1,0,,10,327 +45088,260577152,Manhattan,Midtown,40.743109999999994,-73.98675,Private room,300,1,0,,10,362 +45089,260577152,Manhattan,Midtown,40.74501,-73.98668,Private room,350,1,0,,10,361 +45090,260577152,Manhattan,Midtown,40.742909999999995,-73.9868,Private room,400,1,0,,10,330 +45091,260577152,Manhattan,Midtown,40.743120000000005,-73.98589,Private room,350,1,0,,10,345 +45092,247335568,Queens,Long Island City,40.74885,-73.9526,Entire home/apt,150,3,1,0.81,7,23 +45093,14911623,Manhattan,Harlem,40.81816,-73.93932,Private room,150,1,0,,2,88 +45094,260578637,Manhattan,East Village,40.72381,-73.9905,Entire home/apt,325,30,0,,1,79 +45095,7259859,Brooklyn,Bedford-Stuyvesant,40.6851,-73.93092,Entire home/apt,100,3,0,,1,0 +45096,103485354,Queens,Long Island City,40.745509999999996,-73.94131,Entire home/apt,185,2,2,1.36,1,41 +45097,260589412,Bronx,Parkchester,40.835879999999996,-73.85819000000001,Entire home/apt,69,5,0,,1,55 +45098,79461666,Manhattan,Hell's Kitchen,40.76412,-73.99141,Private room,140,3,2,1.25,3,85 +45099,213604995,Brooklyn,Bedford-Stuyvesant,40.682959999999994,-73.93165,Private room,85,2,9,4.58,2,319 +45100,244171850,Queens,Ridgewood,40.70078,-73.9075,Entire home/apt,140,30,0,,10,365 +45101,120875818,Brooklyn,Bushwick,40.69299,-73.92524,Private room,60,1,9,4.66,2,174 +45102,259776956,Brooklyn,Canarsie,40.6307,-73.89567,Private room,120,1,3,1.76,5,365 +45103,4202557,Queens,Glendale,40.69437,-73.89883,Entire home/apt,150,2,3,3.0,1,146 +45104,1355112,Brooklyn,Clinton Hill,40.6903,-73.96764,Entire home/apt,150,3,5,3.57,2,159 +45105,83786650,Manhattan,Upper East Side,40.75972,-73.96146999999999,Entire home/apt,110,30,0,,8,331 +45106,21334989,Manhattan,East Harlem,40.81142,-73.93748000000001,Entire home/apt,120,5,0,,1,0 +45107,112338663,Manhattan,Upper West Side,40.80058,-73.96287,Entire home/apt,400,5,11,6.23,1,125 +45108,128601689,Brooklyn,Bushwick,40.700359999999996,-73.92846999999999,Private room,50,3,2,1.71,1,39 +45109,259776956,Brooklyn,Canarsie,40.63106,-73.89759000000001,Private room,100,1,1,1.0,5,365 +45110,260649642,Manhattan,Murray Hill,40.752359999999996,-73.9793,Entire home/apt,250,2,0,,1,1 +45111,258243498,Brooklyn,Williamsburg,40.70517,-73.94288,Private room,125,1,2,1.0,3,89 +45112,259776956,Brooklyn,Canarsie,40.63043,-73.89553000000001,Private room,130,1,0,,5,365 +45113,232596712,Manhattan,Upper West Side,40.77728,-73.98062,Entire home/apt,299,30,0,,6,365 +45114,232596712,Manhattan,Upper West Side,40.778079999999996,-73.9806,Entire home/apt,950,30,0,,6,339 +45115,232596712,Manhattan,Upper West Side,40.77667,-73.97945,Entire home/apt,580,30,0,,6,337 +45116,232596712,Manhattan,Upper West Side,40.77731,-73.97954,Entire home/apt,583,30,1,1.0,6,334 +45117,232596712,Manhattan,Upper West Side,40.77791,-73.98043,Entire home/apt,275,30,0,,6,301 +45118,197053492,Manhattan,Financial District,40.705709999999996,-74.00784,Entire home/apt,299,1,8,8.0,8,312 +45119,197053492,Manhattan,Financial District,40.707190000000004,-74.00698,Entire home/apt,650,1,0,,8,323 +45120,197053492,Manhattan,Financial District,40.70512,-74.00719000000001,Entire home/apt,309,1,0,,8,325 +45121,23878336,Bronx,Fordham,40.86952,-73.89447,Entire home/apt,223,3,0,,10,315 +45122,9263105,Staten Island,New Brighton,40.64535,-74.09255,Private room,55,3,1,1.0,2,10 +45123,27381412,Brooklyn,Williamsburg,40.71595,-73.96467,Entire home/apt,200,1,4,3.08,1,72 +45124,256448235,Brooklyn,Bedford-Stuyvesant,40.68558,-73.93746,Entire home/apt,140,2,1,0.52,1,81 +45125,260668537,Manhattan,Harlem,40.81507,-73.94419,Private room,65,3,0,,1,362 +45126,260693405,Manhattan,Lower East Side,40.71952,-73.98546,Entire home/apt,250,7,3,1.76,1,254 +45127,34643568,Manhattan,East Harlem,40.79155,-73.94141,Private room,85,3,3,3.0,6,90 +45128,20952448,Brooklyn,Greenpoint,40.73219,-73.95563,Entire home/apt,275,2,4,2.67,1,27 +45129,115817634,Manhattan,Washington Heights,40.833259999999996,-73.94314,Private room,55,2,1,0.59,1,10 +45130,1542506,Manhattan,Harlem,40.817209999999996,-73.94593,Private room,49,1,0,,1,2 +45131,68422715,Brooklyn,Bedford-Stuyvesant,40.68826,-73.93714,Entire home/apt,94,3,5,3.13,1,1 +45132,68467026,Brooklyn,Crown Heights,40.67058,-73.93526,Private room,70,5,1,1.0,1,282 +45133,157666408,Brooklyn,East Flatbush,40.64268,-73.95132,Private room,70,4,0,,1,16 +45134,120746245,Queens,Elmhurst,40.73209,-73.88141999999999,Private room,34,1,0,,1,0 +45135,249479517,Bronx,Soundview,40.82776,-73.87643,Private room,45,1,7,3.5,2,365 +45136,123068098,Manhattan,SoHo,40.724059999999994,-73.9965,Entire home/apt,390,2,9,5.0,1,79 +45137,172168328,Queens,Jackson Heights,40.75557,-73.87958,Entire home/apt,129,4,1,0.53,1,361 +45138,157208948,Manhattan,Hell's Kitchen,40.76761,-73.99208,Entire home/apt,310,2,5,3.13,1,101 +45139,76679800,Manhattan,Kips Bay,40.74286,-73.9768,Private room,78,12,3,1.73,2,41 +45140,128810972,Brooklyn,Williamsburg,40.716390000000004,-73.96696,Private room,200,1,8,4.21,2,0 +45141,2068673,Bronx,Highbridge,40.831759999999996,-73.9298,Entire home/apt,115,14,0,,1,0 +45142,12276549,Brooklyn,Crown Heights,40.671820000000004,-73.95985,Entire home/apt,275,3,0,,2,0 +45143,50442154,Manhattan,Greenwich Village,40.73512,-73.99445,Entire home/apt,170,3,2,1.62,1,9 +45144,257895306,Manhattan,Upper East Side,40.77707,-73.95405,Entire home/apt,349,5,4,4.0,1,52 +45145,5889721,Brooklyn,Bay Ridge,40.63459,-74.02257,Private room,48,1,4,2.22,2,96 +45146,21930989,Manhattan,Upper West Side,40.78996,-73.97561,Private room,97,1,5,4.17,2,117 +45147,56889786,Manhattan,East Harlem,40.79238,-73.94402,Entire home/apt,120,2,0,,1,34 +45148,219517861,Manhattan,Financial District,40.70598,-74.01069,Entire home/apt,222,2,1,0.73,327,315 +45149,260821048,Queens,Ridgewood,40.70922,-73.91017,Private room,48,1,12,6.1,2,264 +45150,259427246,Brooklyn,Bedford-Stuyvesant,40.67853,-73.92697,Private room,43,2,1,0.79,3,341 +45151,7679270,Manhattan,Hell's Kitchen,40.76739,-73.98504,Entire home/apt,150,2,2,2.0,1,146 +45152,646592,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9195,Entire home/apt,94,4,3,1.8,1,9 +45153,136840462,Bronx,Longwood,40.81963,-73.90956,Private room,55,1,10,5.26,1,310 +45154,260821048,Queens,Ridgewood,40.70732,-73.90896,Private room,48,1,20,10.17,2,258 +45155,26935678,Manhattan,Upper West Side,40.80032,-73.95998,Entire home/apt,285,1,9,5.09,1,229 +45156,260842282,Queens,Arverne,40.592690000000005,-73.79635,Entire home/apt,95,2,6,3.46,1,348 +45157,219517861,Manhattan,Financial District,40.70671,-74.00471,Entire home/apt,179,29,0,,327,333 +45158,219517861,Manhattan,Financial District,40.70714,-74.00525,Entire home/apt,100,29,0,,327,342 +45159,219517861,Manhattan,Theater District,40.75933,-73.98751,Entire home/apt,164,29,0,,327,336 +45160,219517861,Manhattan,Murray Hill,40.748709999999996,-73.97413,Entire home/apt,302,29,0,,327,325 +45161,260844992,Brooklyn,Bensonhurst,40.60783,-73.98445,Private room,75,3,0,,1,89 +45162,219517861,Manhattan,Financial District,40.706579999999995,-74.00684,Entire home/apt,100,29,0,,327,342 +45163,260846055,Manhattan,Gramercy,40.733579999999996,-73.98443,Entire home/apt,325,2,0,,1,194 +45164,219517861,Manhattan,Financial District,40.70713,-74.00483,Entire home/apt,100,29,0,,327,342 +45165,219517861,Manhattan,Financial District,40.7078,-74.00675,Entire home/apt,130,29,0,,327,349 +45166,219517861,Manhattan,Financial District,40.70798,-74.00498,Entire home/apt,130,29,1,1.0,327,361 +45167,219517861,Manhattan,Chelsea,40.74305,-73.99415,Entire home/apt,254,29,0,,327,365 +45168,219517861,Manhattan,Financial District,40.70643,-74.00519,Entire home/apt,100,29,0,,327,345 +45169,36712407,Manhattan,Upper West Side,40.77702,-73.98052,Entire home/apt,224,2,2,2.0,1,16 +45170,224414117,Manhattan,Hell's Kitchen,40.756879999999995,-73.99861999999999,Private room,999,1,5,4.17,30,348 +45171,252636577,Queens,Flushing,40.75862,-73.82606,Shared room,35,2,1,0.57,2,90 +45172,260879160,Manhattan,Lower East Side,40.7202,-73.9891,Entire home/apt,160,14,3,2.14,1,288 +45173,57007752,Queens,Long Island City,40.75742,-73.9447,Entire home/apt,69,2,0,,2,5 +45174,10469103,Queens,Long Island City,40.74664,-73.95522,Entire home/apt,220,10,3,1.55,1,45 +45175,163565274,Queens,Flushing,40.72453,-73.79847,Entire home/apt,189,2,6,5.0,1,8 +45176,260891097,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95331999999999,Private room,120,2,2,1.58,2,88 +45177,5962328,Queens,Flushing,40.760670000000005,-73.82389,Entire home/apt,140,30,0,,15,323 +45178,257474717,Queens,Flushing,40.754979999999996,-73.83423,Entire home/apt,15,2,0,,1,361 +45179,158123420,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.95679,Private room,250,5,0,,1,23 +45180,256341094,Brooklyn,Bushwick,40.6996,-73.9289,Entire home/apt,249,6,2,1.3,2,161 +45181,212874794,Brooklyn,Park Slope,40.68018,-73.98052,Private room,49,31,0,,1,42 +45182,224317184,Manhattan,Harlem,40.81775,-73.94931,Private room,75,4,1,0.57,8,340 +45183,457838,Manhattan,Hell's Kitchen,40.76239,-73.99003,Entire home/apt,300,2,1,0.6,1,0 +45184,68275154,Queens,Astoria,40.77101,-73.92931999999999,Entire home/apt,200,3,2,1.2,1,0 +45185,19867664,Brooklyn,Crown Heights,40.67015,-73.94782,Entire home/apt,2500,1,1,0.94,2,168 +45186,107434423,Manhattan,Nolita,40.72399,-73.99426,Entire home/apt,314,30,0,,232,341 +45187,13664245,Bronx,Claremont Village,40.84353,-73.91108,Private room,43,3,0,,2,341 +45188,107434423,Manhattan,Upper West Side,40.78222,-73.97676,Entire home/apt,381,30,0,,232,334 +45189,107434423,Manhattan,Upper West Side,40.7816,-73.97548,Entire home/apt,377,30,0,,232,334 +45190,96222872,Manhattan,Gramercy,40.73388,-73.98311,Entire home/apt,299,2,11,5.79,1,194 +45191,107434423,Manhattan,NoHo,40.72517,-73.99274,Entire home/apt,306,30,0,,232,333 +45192,145333094,Queens,Jackson Heights,40.75574,-73.87867,Private room,120,7,0,,1,0 +45193,260997528,Brooklyn,Sheepshead Bay,40.58495,-73.93278000000001,Entire home/apt,150,1,10,7.89,1,354 +45194,26552242,Brooklyn,Williamsburg,40.71054,-73.95908,Private room,85,2,2,1.25,1,19 +45195,19915612,Manhattan,Upper East Side,40.767179999999996,-73.95748,Entire home/apt,180,2,1,0.59,1,0 +45196,254509494,Manhattan,Greenwich Village,40.73301,-73.99819000000001,Entire home/apt,420,3,6,3.1,1,144 +45197,2571687,Manhattan,Flatiron District,40.74191,-73.99011,Entire home/apt,299,1,7,4.12,1,347 +45198,261008318,Manhattan,Chelsea,40.74411,-74.00166,Entire home/apt,245,3,4,2.55,1,152 +45199,261012432,Brooklyn,Brighton Beach,40.57885,-73.95376,Entire home/apt,110,7,0,,1,267 +45200,4999887,Queens,Ditmars Steinway,40.78071,-73.9149,Entire home/apt,135,2,0,,1,226 +45201,74290720,Brooklyn,Carroll Gardens,40.6832,-73.99322,Private room,65,2,6,3.67,1,145 +45202,261028352,Queens,Woodside,40.74268,-73.90021999999999,Entire home/apt,146,2,7,5.0,2,89 +45203,1354539,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95298000000001,Entire home/apt,125,3,4,4.0,1,155 +45204,1015345,Manhattan,Theater District,40.76125,-73.98167,Entire home/apt,400,3,4,2.5,1,3 +45205,261036755,Brooklyn,Bedford-Stuyvesant,40.69023,-73.92746,Entire home/apt,175,3,2,2.0,1,329 +45206,256610768,Manhattan,Upper East Side,40.764140000000005,-73.96728,Entire home/apt,159,31,4,2.45,1,244 +45207,53638710,Manhattan,Harlem,40.823,-73.93966,Private room,49,2,1,0.7,1,23 +45208,172369331,Brooklyn,Sheepshead Bay,40.598420000000004,-73.95666999999999,Shared room,20,2,1,0.77,10,342 +45209,261055465,Queens,Astoria,40.76424,-73.92351,Entire home/apt,125,3,1,0.65,1,13 +45210,38431080,Brooklyn,Bedford-Stuyvesant,40.691359999999996,-73.94761,Private room,64,2,3,2.65,1,0 +45211,232863817,Manhattan,Upper East Side,40.7804,-73.94556,Private room,99,2,0,,1,146 +45212,46559599,Brooklyn,Williamsburg,40.71512,-73.95093,Private room,88,1,1,0.59,1,0 +45213,155812868,Brooklyn,Brighton Beach,40.57835,-73.96406999999999,Entire home/apt,119,1,0,,2,136 +45214,260895008,Manhattan,Kips Bay,40.74412,-73.97609,Entire home/apt,199,1,5,2.83,1,85 +45215,197178016,Queens,Astoria,40.764520000000005,-73.9251,Entire home/apt,115,2,2,1.18,1,80 +45216,194571019,Queens,Astoria,40.763709999999996,-73.91784,Private room,36,2,3,1.96,1,4 +45217,261090883,Queens,Ridgewood,40.70791,-73.8959,Entire home/apt,99,2,9,5.4,1,164 +45218,74050784,Queens,Ozone Park,40.6827,-73.84274,Entire home/apt,100,2,0,,1,149 +45219,126161542,Manhattan,Harlem,40.81942,-73.95796,Entire home/apt,99,2,5,2.88,1,0 +45220,173311396,Manhattan,East Harlem,40.800129999999996,-73.93741999999999,Entire home/apt,150,1,5,2.88,1,21 +45221,137358866,Manhattan,East Harlem,40.79466,-73.94032,Private room,34,30,0,,103,216 +45222,256726587,Manhattan,Hell's Kitchen,40.75546,-73.99416,Entire home/apt,199,30,1,0.67,1,176 +45223,48146336,Manhattan,Hell's Kitchen,40.761340000000004,-73.99299,Entire home/apt,150,30,0,,20,332 +45224,107069094,Brooklyn,Williamsburg,40.719120000000004,-73.95727,Entire home/apt,240,3,3,2.0,1,85 +45225,1336171,Manhattan,Upper West Side,40.77212,-73.98640999999999,Entire home/apt,175,2,6,4.29,1,1 +45226,107272884,Queens,Richmond Hill,40.69587,-73.84798,Private room,45,1,2,1.4,4,176 +45227,39808438,Brooklyn,Bushwick,40.688990000000004,-73.91615999999999,Entire home/apt,350,2,0,,5,358 +45228,261016031,Brooklyn,Bushwick,40.6966,-73.91934,Private room,70,3,2,1.05,1,189 +45229,261167972,Brooklyn,Bedford-Stuyvesant,40.683659999999996,-73.92011,Entire home/apt,180,2,9,5.4,1,330 +45230,10099608,Brooklyn,Greenpoint,40.72455,-73.94633,Entire home/apt,149,3,2,2.0,1,6 +45231,163603458,Queens,Queens Village,40.72052,-73.73628000000001,Entire home/apt,69,1,15,7.63,2,46 +45232,261183419,Manhattan,Washington Heights,40.85833,-73.93401999999999,Entire home/apt,70,30,0,,1,83 +45233,261187437,Brooklyn,Borough Park,40.63313,-74.00598000000001,Private room,35,1,7,4.04,6,364 +45234,261188287,Manhattan,Upper West Side,40.77221,-73.98085,Private room,92,10,0,,1,0 +45235,261187437,Brooklyn,Borough Park,40.63531,-74.00522,Private room,75,1,1,1.0,6,360 +45236,261187437,Brooklyn,Borough Park,40.6354,-74.00576,Private room,75,1,2,1.07,6,151 +45237,3899139,Brooklyn,Bushwick,40.70296,-73.92662,Entire home/apt,125,5,4,2.4,1,18 +45238,260072882,Brooklyn,Bedford-Stuyvesant,40.67771,-73.92356,Private room,60,1,6,3.53,2,77 +45239,24482415,Brooklyn,Bay Ridge,40.63275,-74.02946,Private room,35,7,2,1.4,1,1 +45240,39782325,Manhattan,SoHo,40.721759999999996,-74.00448,Entire home/apt,107,3,0,,1,6 +45241,25699447,Manhattan,Upper West Side,40.77706,-73.98383000000001,Entire home/apt,250,15,0,,1,23 +45242,38483415,Manhattan,East Harlem,40.79905,-73.94453,Shared room,75,1,1,0.58,4,365 +45243,261226696,Brooklyn,Bedford-Stuyvesant,40.679390000000005,-73.94187,Private room,62,1,5,2.73,1,66 +45244,50052968,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93805,Private room,100,2,6,3.6,3,365 +45245,247335568,Queens,Long Island City,40.74923,-73.94847,Entire home/apt,150,3,2,2.0,7,34 +45246,14564591,Queens,Arverne,40.59495,-73.78869,Entire home/apt,130,1,5,5.0,1,350 +45247,261256418,Queens,Glendale,40.70603,-73.89562,Entire home/apt,299,3,6,3.6,1,155 +45248,48146336,Manhattan,Hell's Kitchen,40.76283,-73.99168,Entire home/apt,130,30,0,,20,310 +45249,778213,Manhattan,Lower East Side,40.71761,-73.98233,Entire home/apt,250,2,0,,1,107 +45250,52347236,Bronx,Bronxdale,40.85374,-73.86416,Entire home/apt,70,1,8,4.62,1,96 +45251,261306701,Manhattan,Harlem,40.82369,-73.94018,Entire home/apt,92,31,0,,1,342 +45252,236073353,Brooklyn,Clinton Hill,40.68587,-73.96434,Private room,60,1,1,1.0,1,97 +45253,3997038,Brooklyn,Fort Greene,40.68736,-73.97639000000001,Private room,100,1,7,3.96,1,45 +45254,4297106,Brooklyn,Bushwick,40.6924,-73.91448000000001,Private room,44,31,0,,2,365 +45255,792823,Manhattan,West Village,40.73437,-74.00739,Entire home/apt,175,30,0,,1,0 +45256,8033432,Manhattan,Hell's Kitchen,40.75893,-73.99,Entire home/apt,350,3,0,,4,0 +45257,23407300,Manhattan,Harlem,40.80553,-73.94928,Entire home/apt,290,1,2,2.0,1,161 +45258,4516135,Manhattan,East Village,40.728770000000004,-73.98848000000001,Entire home/apt,200,1,13,7.96,1,69 +45259,109847539,Manhattan,Roosevelt Island,40.76215,-73.95056,Private room,94,5,1,1.0,2,61 +45260,37678939,Bronx,Claremont Village,40.83513,-73.91093000000001,Private room,50,2,11,6.73,2,88 +45261,55560532,Manhattan,Gramercy,40.73825,-73.98184,Entire home/apt,690,2,0,,1,66 +45262,152246149,Bronx,Throgs Neck,40.83123,-73.82784000000001,Private room,60,1,2,1.71,5,180 +45263,10170046,Manhattan,Gramercy,40.73676,-73.98685,Entire home/apt,250,1,2,2.0,1,171 +45264,259728610,Manhattan,Upper East Side,40.76762,-73.95693,Entire home/apt,210,3,3,1.7,1,52 +45265,261368719,Brooklyn,Bushwick,40.70065,-73.92446,Entire home/apt,400,3,2,1.71,1,308 +45266,152246149,Bronx,Throgs Neck,40.83144,-73.82791,Private room,60,1,5,3.75,5,179 +45267,261376215,Brooklyn,Bushwick,40.7007,-73.92491,Entire home/apt,300,3,3,1.88,1,355 +45268,5258749,Manhattan,Chelsea,40.749,-73.99579,Entire home/apt,300,5,5,3.33,2,59 +45269,10387090,Brooklyn,Bedford-Stuyvesant,40.682959999999994,-73.91255,Private room,36,15,1,0.52,5,343 +45270,1179779,Brooklyn,Bedford-Stuyvesant,40.690259999999995,-73.93235,Private room,119,2,0,,1,58 +45271,233879443,Brooklyn,Bushwick,40.6999,-73.92441,Entire home/apt,300,4,2,1.4,1,355 +45272,259087876,Manhattan,Theater District,40.758959999999995,-73.98216,Private room,91,1,5,3.49,7,63 +45273,6895430,Queens,Ridgewood,40.703720000000004,-73.9067,Entire home/apt,200,2,1,0.79,1,11 +45274,172369331,Brooklyn,Sheepshead Bay,40.59932,-73.95936,Shared room,20,7,0,,10,281 +45275,259087876,Manhattan,Midtown,40.7573,-73.98043,Private room,150,1,8,4.62,7,52 +45276,758655,Brooklyn,Bedford-Stuyvesant,40.67759,-73.91856,Entire home/apt,350,3,3,2.0,1,22 +45277,260874869,Queens,Ridgewood,40.70239,-73.90381,Entire home/apt,87,20,0,,1,75 +45278,20851517,Manhattan,Hell's Kitchen,40.76767,-73.98914,Private room,98,3,0,,3,7 +45279,214187963,Manhattan,West Village,40.7317,-74.00395,Entire home/apt,150,30,1,1.0,2,103 +45280,40632179,Manhattan,Harlem,40.8303,-73.9407,Private room,60,1,0,,3,278 +45281,46344957,Manhattan,Midtown,40.74798,-73.98751,Private room,86,7,0,,1,0 +45282,261412334,Brooklyn,Canarsie,40.628859999999996,-73.89225,Entire home/apt,240,1,2,2.0,1,154 +45283,261375719,Manhattan,Hell's Kitchen,40.76383,-73.98704000000001,Entire home/apt,255,3,2,1.4,1,188 +45284,1190978,Manhattan,Harlem,40.82414,-73.95393,Private room,40,30,0,,2,322 +45285,4264648,Manhattan,East Village,40.72472,-73.98250999999999,Entire home/apt,180,5,3,1.58,1,19 +45286,40632179,Manhattan,Harlem,40.8285,-73.94219,Private room,55,1,2,2.0,3,325 +45287,255618027,Brooklyn,Bushwick,40.70312,-73.92071,Private room,75,2,4,2.35,1,76 +45288,40632179,Manhattan,Harlem,40.82978,-73.94022,Private room,60,1,1,0.56,3,268 +45289,175116422,Staten Island,Grant City,40.57825,-74.10902,Entire home/apt,75,3,0,,3,318 +45290,37426897,Brooklyn,Clinton Hill,40.69474,-73.96655,Entire home/apt,100,1,6,4.19,1,80 +45291,4027507,Brooklyn,Clinton Hill,40.686609999999995,-73.96717,Private room,70,3,1,0.77,1,4 +45292,72977337,Manhattan,Gramercy,40.73624,-73.97966,Entire home/apt,250,4,0,,1,4 +45293,3042136,Brooklyn,Red Hook,40.67634,-74.01009,Private room,99,2,1,1.0,3,8 +45294,5120563,Manhattan,Upper East Side,40.764359999999996,-73.95669000000001,Entire home/apt,210,2,2,1.62,1,138 +45295,261448151,Bronx,Longwood,40.82285,-73.90198000000001,Private room,55,2,5,3.33,1,351 +45296,132786535,Queens,Middle Village,40.7125,-73.87703,Entire home/apt,169,2,4,2.79,2,155 +45297,78733280,Queens,Woodside,40.74661,-73.90301,Entire home/apt,89,30,0,,1,333 +45298,121083075,Queens,Maspeth,40.7154,-73.91148000000001,Shared room,40,1,5,2.68,1,89 +45299,96379433,Brooklyn,Sunset Park,40.66064,-73.99888,Private room,40,1,4,2.14,2,250 +45300,9914596,Manhattan,Upper West Side,40.78673,-73.97304,Entire home/apt,130,30,0,,1,280 +45301,34331,Manhattan,Upper West Side,40.79056,-73.97306,Entire home/apt,150,30,0,,1,36 +45302,204928236,Bronx,Parkchester,40.83717,-73.85738,Shared room,36,1,0,,1,71 +45303,152747338,Manhattan,Chelsea,40.74674,-74.00316,Entire home/apt,333,1,4,2.35,1,365 +45304,4259761,Queens,Flushing,40.77257,-73.80125,Private room,45,30,0,,1,326 +45305,52577963,Queens,Woodhaven,40.69101,-73.8486,Entire home/apt,199,5,2,1.2,6,338 +45306,38483415,Manhattan,East Harlem,40.79952,-73.94592,Shared room,75,1,0,,4,365 +45307,21263506,Brooklyn,Vinegar Hill,40.70358,-73.98316,Entire home/apt,200,2,0,,1,1 +45308,106538072,Manhattan,Lower East Side,40.71713,-73.98541,Entire home/apt,200,2,3,2.05,1,13 +45309,213208277,Brooklyn,Borough Park,40.6431,-73.99175,Shared room,30,5,0,,8,365 +45310,257320771,Brooklyn,Bay Ridge,40.620940000000004,-74.02422,Entire home/apt,100,1,8,4.44,1,329 +45311,259426283,Manhattan,Inwood,40.862840000000006,-73.92704,Private room,60,1,2,1.18,1,326 +45312,213208277,Queens,South Ozone Park,40.673320000000004,-73.79682,Shared room,30,5,1,1.0,8,365 +45313,8893700,Queens,Arverne,40.58817,-73.79513,Entire home/apt,275,2,0,,2,69 +45314,95015886,Brooklyn,Williamsburg,40.71373,-73.96743000000001,Entire home/apt,275,2,0,,1,16 +45315,252836607,Manhattan,Financial District,40.707570000000004,-74.00788,Entire home/apt,255,2,2,1.36,1,12 +45316,261560877,Manhattan,Theater District,40.76103,-73.97995999999999,Entire home/apt,250,25,0,,1,261 +45317,261563626,Queens,St. Albans,40.68993,-73.75695,Private room,50,1,23,12.11,1,356 +45318,253843480,Brooklyn,Williamsburg,40.71801,-73.95244,Private room,43,1,2,1.09,1,249 +45319,5441056,Brooklyn,Bedford-Stuyvesant,40.687459999999994,-73.9576,Private room,85,2,4,2.31,1,67 +45320,261559275,Manhattan,SoHo,40.726459999999996,-74.00213000000001,Entire home/apt,250,2,1,0.54,1,173 +45321,3736053,Manhattan,Chelsea,40.7545,-73.99954,Entire home/apt,100,2,2,1.67,1,32 +45322,261581535,Manhattan,Hell's Kitchen,40.76465,-73.98812,Entire home/apt,449,1,6,3.21,1,346 +45323,258006547,Brooklyn,Bedford-Stuyvesant,40.6845,-73.92454000000001,Entire home/apt,150,2,1,1.0,1,22 +45324,167043905,Brooklyn,Flatlands,40.62281,-73.93446,Private room,200,1,3,2.05,1,87 +45325,25189614,Manhattan,Lower East Side,40.72162,-73.98732,Entire home/apt,350,29,0,,1,269 +45326,261597311,Brooklyn,Williamsburg,40.71145,-73.96749,Entire home/apt,500,3,3,2.25,1,347 +45327,261589968,Manhattan,East Village,40.72757,-73.98336,Entire home/apt,150,31,0,,1,365 +45328,250825715,Manhattan,Chinatown,40.7176,-73.99728,Private room,85,1,3,2.73,3,55 +45329,261605025,Queens,Kew Gardens Hills,40.72617,-73.81178,Entire home/apt,110,2,0,,1,76 +45330,128452734,Brooklyn,Crown Heights,40.67759,-73.94991,Entire home/apt,120,2,1,1.0,1,14 +45331,258066921,Manhattan,Upper East Side,40.762,-73.9634,Entire home/apt,300,3,4,2.61,1,258 +45332,55026020,Brooklyn,Gowanus,40.666940000000004,-73.99405,Private room,50,15,0,,1,0 +45333,146001596,Manhattan,Midtown,40.757059999999996,-73.96679,Entire home/apt,585,30,1,0.54,1,139 +45334,25182524,Manhattan,Harlem,40.80672,-73.95711999999999,Private room,73,1,4,4.0,2,24 +45335,261604139,Bronx,Williamsbridge,40.87874,-73.84746,Private room,40,1,0,,1,89 +45336,45733814,Manhattan,Midtown,40.763870000000004,-73.9809,Private room,150,2,0,,1,0 +45337,220762164,Brooklyn,Bushwick,40.68952,-73.90919,Entire home/apt,349,2,1,0.58,4,365 +45338,33758870,Manhattan,Two Bridges,40.71098,-73.99426,Private room,80,1,9,5.51,1,42 +45339,261632991,Queens,Astoria,40.76832,-73.93576,Entire home/apt,84,1,0,,1,90 +45340,22336945,Manhattan,East Village,40.72545,-73.98212,Entire home/apt,200,2,1,1.0,1,0 +45341,261427783,Brooklyn,Crown Heights,40.67385,-73.94639000000001,Private room,85,1,15,11.84,1,81 +45342,219517861,Manhattan,Financial District,40.707209999999996,-74.00559,Entire home/apt,100,29,0,,327,332 +45343,16597509,Brooklyn,Greenpoint,40.72566,-73.93972,Private room,55,7,1,0.79,1,28 +45344,261647593,Queens,Arverne,40.58927,-73.79514,Private room,100,2,10,6.82,1,67 +45345,259952789,Manhattan,Harlem,40.80317,-73.95559,Entire home/apt,350,1,2,1.22,1,85 +45346,131234868,Manhattan,Washington Heights,40.85658,-73.93021,Private room,125,3,1,1.0,1,81 +45347,261654878,Brooklyn,Bensonhurst,40.61753,-74.00220999999999,Private room,35,3,4,3.16,1,18 +45348,248555214,Queens,Astoria,40.76417,-73.92898000000001,Private room,75,2,4,4.0,2,8 +45349,48684597,Queens,Maspeth,40.737590000000004,-73.89704,Private room,35,1,8,4.44,4,234 +45350,261651359,Brooklyn,Bensonhurst,40.60475,-73.99213,Private room,60,3,0,,1,178 +45351,183818356,Queens,Astoria,40.757220000000004,-73.92716,Entire home/apt,83,2,1,0.86,1,16 +45352,43359332,Manhattan,Midtown,40.74493,-73.98484,Private room,130,5,2,2.0,1,74 +45353,261669663,Brooklyn,Bushwick,40.69854,-73.92642,Entire home/apt,275,3,7,4.04,1,339 +45354,156505456,Brooklyn,East New York,40.66646,-73.8734,Private room,54,3,1,0.59,13,365 +45355,151810361,Queens,Flushing,40.76402,-73.81976,Private room,99,1,2,2.0,6,90 +45356,261675838,Brooklyn,Bushwick,40.69847,-73.92478,Entire home/apt,225,3,7,4.38,1,359 +45357,231858639,Brooklyn,Prospect-Lefferts Gardens,40.659729999999996,-73.96101999999999,Entire home/apt,120,5,0,,1,325 +45358,83680039,Queens,Long Island City,40.74771,-73.93684,Private room,86,8,0,,1,6 +45359,151810361,Queens,Flushing,40.76364,-73.82292,Private room,59,1,9,4.82,6,362 +45360,261728099,Manhattan,Harlem,40.82639,-73.93894,Entire home/apt,75,28,0,,1,41 +45361,257683179,Queens,Flushing,40.75019,-73.81435,Private room,45,1,1,1.0,6,83 +45362,253304582,Queens,Corona,40.738440000000004,-73.86301999999999,Entire home/apt,90,4,1,1.0,2,50 +45363,252646618,Queens,Astoria,40.76425,-73.90981,Private room,110,1,0,,2,310 +45364,57399783,Brooklyn,Crown Heights,40.67693,-73.9369,Entire home/apt,100,3,2,1.18,1,0 +45365,13352650,Manhattan,Greenwich Village,40.729040000000005,-74.00119000000001,Entire home/apt,250,1,0,,1,111 +45366,25182524,Manhattan,Harlem,40.80641,-73.95518,Private room,80,1,1,0.79,2,194 +45367,10032016,Manhattan,Morningside Heights,40.80977,-73.95813000000001,Entire home/apt,250,15,1,0.88,1,34 +45368,261768544,Brooklyn,Williamsburg,40.71125,-73.96115999999999,Entire home/apt,300,2,5,2.94,1,57 +45369,14253187,Manhattan,Gramercy,40.73283,-73.98228,Private room,65,1,4,2.35,1,104 +45370,261779182,Brooklyn,Red Hook,40.67522,-74.01139,Shared room,38,1,1,1.0,2,179 +45371,5665583,Brooklyn,Greenpoint,40.73308,-73.95704,Entire home/apt,150,3,0,,1,0 +45372,261779847,Manhattan,East Harlem,40.79803,-73.94185,Entire home/apt,350,3,8,5.11,1,231 +45373,2513252,Brooklyn,Williamsburg,40.7099,-73.9649,Entire home/apt,250,3,1,1.0,1,2 +45374,240099532,Manhattan,Hell's Kitchen,40.75445,-73.99707,Entire home/apt,269,2,8,5.45,1,252 +45375,8207362,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93897,Private room,85,2,1,0.57,2,54 +45376,82187372,Brooklyn,Williamsburg,40.714690000000004,-73.95401,Private room,250,10,0,,1,78 +45377,121767590,Manhattan,East Village,40.728609999999996,-73.98252,Entire home/apt,315,2,0,,1,55 +45378,260193759,Manhattan,Midtown,40.74822,-73.98555,Private room,100,1,0,,5,274 +45379,219517861,Manhattan,Financial District,40.706790000000005,-74.00689,Entire home/apt,130,29,0,,327,332 +45380,261802105,Manhattan,East Village,40.72486,-73.98121,Shared room,70,1,4,4.0,1,55 +45381,248335189,Manhattan,Little Italy,40.7203,-73.99679,Entire home/apt,139,3,2,2.0,1,10 +45382,71668793,Brooklyn,Crown Heights,40.673790000000004,-73.95725999999999,Entire home/apt,149,3,7,4.2,1,299 +45383,219517861,Manhattan,Financial District,40.708259999999996,-74.00475,Entire home/apt,110,29,0,,327,343 +45384,2468616,Brooklyn,Crown Heights,40.66873,-73.95243,Entire home/apt,120,2,0,,2,311 +45385,260193759,Manhattan,Midtown,40.74674,-73.98735,Private room,100,1,3,3.0,5,269 +45386,219517861,Manhattan,Financial District,40.70863,-74.00541,Entire home/apt,110,29,0,,327,357 +45387,57189210,Brooklyn,Crown Heights,40.674929999999996,-73.94828000000001,Private room,90,3,1,1.0,1,56 +45388,257034143,Brooklyn,Bay Ridge,40.629870000000004,-74.02655,Entire home/apt,200,2,1,1.0,2,179 +45389,30509656,Bronx,Port Morris,40.80852,-73.9306,Shared room,28,1,5,2.94,8,60 +45390,79653673,Manhattan,Upper East Side,40.7768,-73.95166,Entire home/apt,125,7,0,,1,24 +45391,261852969,Manhattan,Midtown,40.75613,-73.96904,Entire home/apt,499,5,5,3.19,1,189 +45392,246680134,Brooklyn,Williamsburg,40.718720000000005,-73.95949,Private room,92,1,6,3.4,2,16 +45393,30509656,Bronx,Port Morris,40.808690000000006,-73.9317,Shared room,28,1,1,0.67,8,73 +45394,261857310,Queens,Elmhurst,40.74545,-73.86927,Private room,59,1,1,0.68,1,24 +45395,239661123,Queens,Queens Village,40.727740000000004,-73.73461999999999,Entire home/apt,99,1,6,4.86,1,15 +45396,49164956,Brooklyn,Bedford-Stuyvesant,40.67755,-73.91598,Private room,39,30,0,,5,221 +45397,19638778,Manhattan,Inwood,40.86592,-73.9217,Private room,100,2,0,,1,89 +45398,49164956,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91474000000001,Private room,43,30,0,,5,221 +45399,30509656,Bronx,Port Morris,40.80996,-73.93172,Shared room,28,1,2,1.15,8,365 +45400,6674394,Manhattan,Upper West Side,40.79419,-73.9735,Private room,180,2,1,1.0,1,342 +45401,30509656,Bronx,Port Morris,40.80838,-73.93091,Shared room,28,1,3,1.7,8,363 +45402,221213143,Manhattan,Kips Bay,40.74125,-73.98297,Entire home/apt,460,1,2,1.33,9,287 +45403,2432475,Queens,Ridgewood,40.7063,-73.89884,Private room,50,1,2,2.0,1,35 +45404,261891944,Bronx,Fordham,40.85368,-73.90172,Private room,75,1,1,1.0,1,363 +45405,261894786,Manhattan,East Harlem,40.79247,-73.94892,Entire home/apt,109,1,8,5.11,1,233 +45406,261895213,Manhattan,Morningside Heights,40.809020000000004,-73.96715999999999,Private room,65,3,1,1.0,1,188 +45407,259468466,Manhattan,Lower East Side,40.71461,-73.98755,Private room,89,4,4,2.86,2,182 +45408,261904019,Queens,Ridgewood,40.706309999999995,-73.89698,Entire home/apt,199,3,5,3.13,1,145 +45409,255641440,Queens,Flushing,40.761340000000004,-73.80776,Private room,42,1,1,0.57,7,331 +45410,12898160,Bronx,Riverdale,40.88523,-73.91230999999999,Entire home/apt,90,30,0,,1,55 +45411,257683179,Queens,Flushing,40.76296,-73.80724000000001,Private room,42,1,7,5.0,6,207 +45412,9761047,Brooklyn,Williamsburg,40.715270000000004,-73.96037,Private room,65,3,2,1.22,3,0 +45413,151810361,Queens,Flushing,40.76187,-73.82169,Private room,69,1,9,4.91,6,365 +45414,15690228,Manhattan,Gramercy,40.73676,-73.9842,Private room,1900,7,0,,1,332 +45415,29582232,Brooklyn,Flatbush,40.64163,-73.9655,Entire home/apt,85,3,0,,5,125 +45416,4852748,Manhattan,Morningside Heights,40.81304,-73.96131,Entire home/apt,195,2,1,1.0,6,358 +45417,260639656,Queens,Long Island City,40.74775,-73.94747,Entire home/apt,320,2,5,5.0,1,54 +45418,260193759,Manhattan,Midtown,40.748290000000004,-73.98715,Private room,100,1,12,7.66,5,287 +45419,260193759,Manhattan,Midtown,40.74677,-73.9866,Private room,100,1,13,11.14,5,268 +45420,3236741,Manhattan,Hell's Kitchen,40.77111,-73.99128,Entire home/apt,172,2,5,3.19,1,4 +45421,262011998,Manhattan,West Village,40.74024,-74.00484,Entire home/apt,220,2,3,3.0,1,58 +45422,20474743,Queens,Flushing,40.76274,-73.82089,Private room,55,1,9,6.43,1,59 +45423,1709876,Brooklyn,Greenpoint,40.72128,-73.94663,Entire home/apt,185,4,0,,1,176 +45424,85521952,Manhattan,Inwood,40.86858,-73.92042,Entire home/apt,200,2,1,1.0,1,234 +45425,29582232,Brooklyn,Flatbush,40.64017,-73.96417,Entire home/apt,85,3,3,3.0,5,86 +45426,260072882,Brooklyn,Bedford-Stuyvesant,40.67792,-73.92347,Private room,50,2,6,3.91,2,83 +45427,26319385,Brooklyn,Bedford-Stuyvesant,40.67982,-73.94978,Entire home/apt,175,4,0,,1,17 +45428,5993014,Brooklyn,Crown Heights,40.67266,-73.95855999999999,Entire home/apt,75,15,0,,1,6 +45429,220762164,Brooklyn,Bushwick,40.689370000000004,-73.90903,Private room,95,2,1,0.68,4,354 +45430,260599513,Manhattan,Harlem,40.81151,-73.94159,Private room,57,2,1,1.0,1,34 +45431,90695775,Brooklyn,Prospect-Lefferts Gardens,40.655559999999994,-73.95674,Entire home/apt,120,2,6,4.09,1,152 +45432,262035496,Brooklyn,East Flatbush,40.654720000000005,-73.93683,Entire home/apt,115,2,7,5.83,1,123 +45433,9450360,Brooklyn,Crown Heights,40.67772,-73.95564,Entire home/apt,278,2,7,4.12,1,328 +45434,183817011,Brooklyn,Sunset Park,40.66138,-73.99632,Entire home/apt,190,3,3,1.8,1,365 +45435,139871943,Manhattan,Little Italy,40.71889,-73.99716,Private room,100,30,0,,3,327 +45436,52562602,Brooklyn,Flatbush,40.64176,-73.9615,Entire home/apt,190,7,0,,1,16 +45437,8305133,Brooklyn,Williamsburg,40.71642,-73.96244,Entire home/apt,150,5,0,,1,49 +45438,54736855,Brooklyn,Bushwick,40.70505,-73.91848,Entire home/apt,140,1,16,11.16,1,143 +45439,262047205,Bronx,Mott Haven,40.80689,-73.91436999999999,Entire home/apt,100,3,4,2.79,1,330 +45440,17392429,Manhattan,West Village,40.735009999999996,-74.00835,Entire home/apt,180,30,0,,1,329 +45441,60434059,Brooklyn,Bushwick,40.69055,-73.91035,Private room,80,1,1,0.79,2,314 +45442,51420334,Manhattan,Upper West Side,40.78747,-73.96844,Private room,59,1,0,,1,0 +45443,58484199,Manhattan,East Village,40.721959999999996,-73.98063,Private room,98,3,1,1.0,1,158 +45444,260193759,Manhattan,Midtown,40.74708,-73.98513,Private room,100,1,8,6.67,5,236 +45445,262079510,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92564,Private room,80,2,5,2.88,1,83 +45446,262091506,Brooklyn,Bushwick,40.68569,-73.90857,Private room,50,3,2,2.0,1,97 +45447,255641440,Queens,Flushing,40.76108,-73.80736,Private room,32,1,3,1.76,7,285 +45448,262094761,Manhattan,Hell's Kitchen,40.76494,-73.98983,Private room,110,2,6,3.46,1,83 +45449,60235514,Brooklyn,Bushwick,40.7036,-73.92496,Private room,51,1,4,2.31,1,71 +45450,218116366,Bronx,East Morrisania,40.828309999999995,-73.88746,Private room,80,1,3,3.0,2,89 +45451,135710202,Brooklyn,Bedford-Stuyvesant,40.69446,-73.94694,Entire home/apt,68,1,0,,1,255 +45452,2126399,Manhattan,Harlem,40.80508,-73.95088,Entire home/apt,150,5,0,,1,7 +45453,46588955,Manhattan,Hell's Kitchen,40.7659,-73.98764,Entire home/apt,289,2,0,,1,8 +45454,57230304,Queens,Elmhurst,40.731559999999995,-73.88551,Private room,90,7,2,1.58,3,337 +45455,262116941,Manhattan,East Harlem,40.7963,-73.93087,Private room,65,7,0,,1,151 +45456,262118049,Manhattan,Chinatown,40.713840000000005,-73.99278000000001,Entire home/apt,212,1,1,1.0,1,0 +45457,74633496,Bronx,University Heights,40.85689,-73.9091,Private room,40,5,0,,5,362 +45458,101109383,Manhattan,Midtown,40.754870000000004,-73.96898,Entire home/apt,500,3,1,1.0,1,257 +45459,252356839,Manhattan,Harlem,40.82802,-73.94481999999999,Private room,65,2,2,1.36,2,2 +45460,28295132,Brooklyn,Crown Heights,40.67369,-73.94931,Private room,60,3,1,0.61,1,0 +45461,151810361,Queens,Flushing,40.762679999999996,-73.82252,Private room,99,1,10,5.77,6,365 +45462,262196496,Manhattan,East Harlem,40.785920000000004,-73.94837,Private room,82,4,0,,1,45 +45463,30873439,Brooklyn,Crown Heights,40.66752,-73.95466,Entire home/apt,90,2,5,5.0,1,22 +45464,210799153,Brooklyn,Bedford-Stuyvesant,40.68676,-73.94593,Private room,51,1,4,2.86,3,0 +45465,210799153,Brooklyn,Bedford-Stuyvesant,40.68727,-73.94736,Private room,56,1,5,3.06,3,1 +45466,261584195,Brooklyn,Williamsburg,40.71497,-73.96433,Entire home/apt,265,2,1,1.0,1,3 +45467,210799153,Brooklyn,Bedford-Stuyvesant,40.68718,-73.94797,Private room,56,1,2,1.58,3,0 +45468,259283179,Manhattan,East Village,40.7281,-73.98354,Entire home/apt,219,2,7,4.2,1,316 +45469,73612539,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94844,Private room,68,1,8,6.32,2,36 +45470,41348157,Manhattan,East Harlem,40.7927,-73.94033,Entire home/apt,300,3,0,,3,17 +45471,15010925,Brooklyn,Williamsburg,40.71317,-73.96066,Entire home/apt,160,1,13,7.96,1,120 +45472,262244457,Manhattan,Upper East Side,40.77064,-73.95606,Entire home/apt,250,1,7,4.47,1,188 +45473,136953596,Brooklyn,Fort Greene,40.69491,-73.98244,Private room,125,5,1,0.94,1,172 +45474,44539889,Queens,Middle Village,40.71685,-73.87507,Entire home/apt,199,31,0,,1,83 +45475,222252623,Brooklyn,Bedford-Stuyvesant,40.694179999999996,-73.94409,Private room,68,2,2,1.28,3,0 +45476,31239719,Brooklyn,Bushwick,40.70433,-73.92488,Entire home/apt,120,4,0,,1,10 +45477,41926423,Bronx,Longwood,40.81795,-73.91178000000001,Shared room,85,1,0,,1,77 +45478,30509656,Bronx,Port Morris,40.808679999999995,-73.93015,Shared room,28,1,3,2.65,8,362 +45479,5264588,Manhattan,West Village,40.73526,-74.0002,Entire home/apt,175,2,7,4.88,1,341 +45480,262279497,Manhattan,East Harlem,40.79614,-73.94838,Entire home/apt,123,1,5,3.95,1,327 +45481,3138868,Manhattan,Morningside Heights,40.80535,-73.96307,Entire home/apt,140,4,1,0.68,1,9 +45482,250825715,Manhattan,Chinatown,40.71716,-73.99716,Private room,90,1,1,1.0,3,39 +45483,35253342,Brooklyn,Bay Ridge,40.63321,-74.02463,Entire home/apt,120,21,0,,3,67 +45484,262287464,Brooklyn,Boerum Hill,40.687129999999996,-73.98592,Private room,250,1,1,0.59,1,365 +45485,11211827,Manhattan,West Village,40.73682,-74.00406,Entire home/apt,250,2,2,2.0,1,98 +45486,230698955,Brooklyn,Crown Heights,40.671459999999996,-73.93483,Private room,29,5,1,0.75,2,0 +45487,74211590,Manhattan,Harlem,40.80015,-73.95387,Private room,50,14,1,0.57,1,0 +45488,229486123,Manhattan,Midtown,40.760659999999994,-73.96639,Entire home/apt,479,2,4,2.73,1,286 +45489,2327518,Brooklyn,Bedford-Stuyvesant,40.685109999999995,-73.95283,Private room,75,2,7,4.2,1,0 +45490,221739176,Queens,Kew Gardens Hills,40.72619,-73.82885999999999,Private room,50,2,2,1.62,1,89 +45491,252445373,Manhattan,Washington Heights,40.85798,-73.92855,Entire home/apt,85,7,0,,1,67 +45492,260902999,Manhattan,Harlem,40.817370000000004,-73.93781,Private room,150,5,0,,1,269 +45493,41672509,Manhattan,Washington Heights,40.84433,-73.93948,Private room,60,1,13,7.5,1,316 +45494,22700616,Manhattan,Midtown,40.74713,-73.98489000000001,Private room,110,3,2,1.36,1,12 +45495,39831146,Brooklyn,Carroll Gardens,40.68026,-74.00078,Entire home/apt,225,4,0,,1,317 +45496,1103131,Manhattan,Lower East Side,40.71482,-73.98911,Entire home/apt,175,4,2,2.0,2,0 +45497,24064346,Manhattan,West Village,40.73458,-74.00361,Entire home/apt,500,3,11,6.73,1,318 +45498,249325265,Manhattan,Upper West Side,40.79632,-73.969,Private room,79,1,7,5.0,1,42 +45499,170464089,Manhattan,Murray Hill,40.7458,-73.97744,Entire home/apt,490,2,4,3.33,1,248 +45500,4924477,Manhattan,East Village,40.726,-73.97861,Private room,94,5,5,5.0,1,47 +45501,258118351,Brooklyn,Borough Park,40.63896,-73.99689000000001,Entire home/apt,140,9,1,1.0,2,73 +45502,30509656,Bronx,Port Morris,40.80858,-73.93164,Shared room,28,1,10,6.82,8,351 +45503,60434059,Brooklyn,Bushwick,40.69056,-73.91185,Private room,80,1,1,0.68,2,74 +45504,233755743,Queens,Elmhurst,40.73291,-73.87561,Private room,40,2,2,1.82,2,346 +45505,256718270,Manhattan,Upper East Side,40.77932,-73.95343000000001,Entire home/apt,109,30,2,1.43,1,197 +45506,262360035,Manhattan,Hell's Kitchen,40.76403,-73.98913,Shared room,75,1,7,4.04,6,363 +45507,217484432,Queens,Ditmars Steinway,40.7754,-73.90786999999999,Private room,115,1,2,1.15,2,304 +45508,49130598,Brooklyn,Bushwick,40.697179999999996,-73.92843,Entire home/apt,328,2,3,2.81,1,19 +45509,23819362,Brooklyn,Canarsie,40.63993,-73.902,Entire home/apt,114,4,4,2.79,1,284 +45510,197052947,Manhattan,Roosevelt Island,40.76417,-73.94865,Shared room,55,7,0,,1,38 +45511,81351940,Manhattan,East Village,40.72387,-73.97845,Entire home/apt,166,2,4,2.79,1,75 +45512,181287271,Manhattan,Harlem,40.799659999999996,-73.9539,Entire home/apt,325,3,14,8.24,1,126 +45513,14156628,Manhattan,Lower East Side,40.71255,-73.99146999999999,Entire home/apt,200,2,4,4.0,1,233 +45514,261854722,Queens,Jamaica,40.70091,-73.81359,Private room,80,1,5,3.0,1,54 +45515,91437526,Manhattan,Hell's Kitchen,40.75435,-73.99801,Entire home/apt,499,3,6,4.86,1,176 +45516,148374046,Manhattan,Chelsea,40.74437,-74.00007,Entire home/apt,499,3,5,4.05,1,199 +45517,43226402,Manhattan,Midtown,40.74305,-73.98368,Entire home/apt,250,30,0,,1,95 +45518,7952814,Brooklyn,Bedford-Stuyvesant,40.69064,-73.95664000000001,Entire home/apt,100,1,3,2.65,1,43 +45519,2157562,Brooklyn,Greenpoint,40.72235,-73.94533,Entire home/apt,120,3,4,3.33,1,181 +45520,171495922,Brooklyn,Sunset Park,40.63649,-74.01247,Private room,58,1,0,,4,264 +45521,262436389,Queens,Maspeth,40.73453,-73.89477,Private room,50,1,4,3.64,1,219 +45522,262394284,Queens,Astoria,40.75936,-73.9258,Private room,52,2,8,5.33,1,22 +45523,19303369,Queens,Woodside,40.74637,-73.89933,Private room,33,28,0,,37,41 +45524,7313602,Manhattan,Washington Heights,40.85374,-73.93198000000001,Entire home/apt,90,3,1,0.83,1,12 +45525,262452748,Manhattan,East Village,40.72609,-73.98354,Entire home/apt,89,1,10,5.88,2,173 +45526,131103134,Manhattan,Upper East Side,40.77388,-73.9568,Entire home/apt,217,3,2,1.67,1,235 +45527,222201467,Manhattan,Upper East Side,40.77176,-73.94903000000001,Entire home/apt,150,2,3,1.96,1,66 +45528,262360035,Manhattan,Hell's Kitchen,40.765859999999996,-73.98721,Shared room,76,1,6,3.46,6,365 +45529,262461078,Manhattan,East Village,40.72504,-73.97908000000001,Private room,70,4,3,3.0,1,346 +45530,262360035,Manhattan,Hell's Kitchen,40.76579,-73.98931999999999,Shared room,75,1,8,4.62,6,365 +45531,262434396,Brooklyn,Williamsburg,40.71597,-73.96106999999999,Entire home/apt,650,3,1,1.0,1,352 +45532,262360035,Manhattan,Hell's Kitchen,40.76612,-73.98749000000001,Shared room,75,1,4,2.35,6,365 +45533,259826953,Brooklyn,Williamsburg,40.71771,-73.95831,Private room,99,3,2,1.67,2,179 +45534,480943,Manhattan,Hell's Kitchen,40.767140000000005,-73.98784,Entire home/apt,249,2,4,2.55,2,336 +45535,262360035,Manhattan,Hell's Kitchen,40.76558,-73.98785,Shared room,75,1,3,1.76,6,365 +45536,35100060,Manhattan,Harlem,40.80126,-73.95036999999999,Private room,70,5,0,,2,0 +45537,262360035,Manhattan,Hell's Kitchen,40.763909999999996,-73.98892,Shared room,75,1,3,2.2,6,365 +45538,262452748,Manhattan,East Village,40.72611,-73.98208000000001,Entire home/apt,85,1,6,3.53,2,170 +45539,258651643,Queens,Long Island City,40.75291,-73.92305,Private room,75,3,4,2.35,1,144 +45540,243189296,Manhattan,Harlem,40.80859,-73.95132,Entire home/apt,90,3,0,,1,3 +45541,819674,Manhattan,Chinatown,40.71409,-73.9918,Entire home/apt,450,3,0,,1,4 +45542,54415933,Manhattan,Washington Heights,40.83468,-73.93714,Entire home/apt,300,3,0,,1,88 +45543,206758177,Manhattan,Harlem,40.80526,-73.95522,Entire home/apt,195,1,11,7.5,3,33 +45544,94101463,Manhattan,Midtown,40.75316,-73.97099,Entire home/apt,300,3,15,8.82,1,357 +45545,22953090,Manhattan,Upper East Side,40.7724,-73.95761999999999,Entire home/apt,500,1,2,1.46,1,151 +45546,251535441,Manhattan,Hell's Kitchen,40.76047,-73.99202,Entire home/apt,199,7,6,3.46,1,102 +45547,41326856,Queens,Elmhurst,40.744640000000004,-73.8791,Entire home/apt,145,1,0,,5,110 +45548,9130040,Brooklyn,East Flatbush,40.66319,-73.93434,Private room,99,1,0,,6,365 +45549,156850005,Queens,Jackson Heights,40.756,-73.87756,Private room,77,1,1,0.73,2,355 +45550,257683179,Queens,Flushing,40.76153,-73.80726,Private room,55,1,0,,6,62 +45551,10700780,Brooklyn,Windsor Terrace,40.64932,-73.98018,Entire home/apt,90,1,11,7.17,1,3 +45552,262528929,Bronx,Throgs Neck,40.828,-73.81275,Entire home/apt,100,3,1,1.0,1,336 +45553,62745,Manhattan,Little Italy,40.7185,-73.99824,Entire home/apt,175,30,0,,1,198 +45554,262534951,Brooklyn,East Flatbush,40.659040000000005,-73.92334,Private room,60,1,2,1.58,2,179 +45555,37170601,Brooklyn,Flatlands,40.61401,-73.92112,Entire home/apt,125,3,0,,1,42 +45556,10273046,Brooklyn,Bedford-Stuyvesant,40.69021,-73.95058,Entire home/apt,120,14,0,,1,53 +45557,6503950,Brooklyn,Bushwick,40.69339,-73.90588000000001,Private room,50,1,6,4.74,2,311 +45558,48194192,Brooklyn,Clinton Hill,40.69526,-73.96321,Entire home/apt,395,4,1,1.0,4,22 +45559,9130040,Brooklyn,East Flatbush,40.66189,-73.93309,Private room,99,1,1,0.59,6,365 +45560,61396454,Manhattan,Midtown,40.755340000000004,-73.96446,Entire home/apt,200,30,0,,14,365 +45561,9943690,Brooklyn,Greenpoint,40.72618,-73.94971,Private room,55,5,0,,1,136 +45562,61396454,Manhattan,Midtown,40.754059999999996,-73.96436,Entire home/apt,225,30,0,,14,343 +45563,61396454,Manhattan,Midtown,40.7554,-73.96474,Entire home/apt,200,30,1,1.0,14,289 +45564,61396454,Manhattan,Midtown,40.75523,-73.96342,Entire home/apt,300,30,0,,14,339 +45565,61396454,Manhattan,Midtown,40.754940000000005,-73.96522,Entire home/apt,220,30,0,,14,332 +45566,61396454,Manhattan,Midtown,40.75568,-73.96474,Entire home/apt,300,30,0,,14,333 +45567,61396454,Manhattan,Midtown,40.75379,-73.96433,Entire home/apt,190,30,1,1.0,14,302 +45568,61396454,Manhattan,Midtown,40.75669,-73.96199,Entire home/apt,300,30,0,,14,329 +45569,61396454,Manhattan,Midtown,40.75643,-73.96375,Entire home/apt,300,30,1,1.0,14,333 +45570,61396454,Manhattan,Midtown,40.754509999999996,-73.96348,Entire home/apt,190,30,0,,14,365 +45571,1786901,Manhattan,Upper East Side,40.78345,-73.94751,Entire home/apt,200,3,0,,9,29 +45572,252051657,Staten Island,Prince's Bay,40.53076,-74.20295,Entire home/apt,1250,14,0,,1,23 +45573,6605565,Brooklyn,Bushwick,40.69941,-73.91186,Private room,70,3,3,3.0,1,27 +45574,9486614,Manhattan,Harlem,40.81157,-73.94654,Entire home/apt,799,3,0,,1,51 +45575,262469851,Brooklyn,Williamsburg,40.71853,-73.94808,Entire home/apt,659,4,4,3.0,1,334 +45576,262470176,Brooklyn,Williamsburg,40.7192,-73.94805,Entire home/apt,650,3,4,3.64,1,359 +45577,262634390,Brooklyn,Greenpoint,40.72235,-73.94176,Entire home/apt,650,3,2,2.0,1,346 +45578,259968021,Manhattan,Chinatown,40.71837,-73.99633,Entire home/apt,260,2,5,3.41,1,235 +45579,294307,Brooklyn,Greenpoint,40.73735,-73.95532,Entire home/apt,250,3,0,,1,114 +45580,931058,Brooklyn,Williamsburg,40.7215,-73.96,Entire home/apt,399,1,1,1.0,1,41 +45581,40085320,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94399,Private room,55,2,11,9.17,2,44 +45582,243194565,Queens,Long Island City,40.74705,-73.9472,Private room,130,5,0,,1,179 +45583,255641440,Queens,Flushing,40.75,-73.81489,Private room,43,1,0,,7,339 +45584,262657892,Brooklyn,Crown Heights,40.66473,-73.93134,Entire home/apt,475,3,2,2.0,3,219 +45585,1306620,Brooklyn,Bushwick,40.70473,-73.92867,Entire home/apt,200,3,1,1.0,1,46 +45586,40085320,Brooklyn,Prospect-Lefferts Gardens,40.66064,-73.94315,Private room,55,2,8,6.49,2,22 +45587,259880452,Queens,Flushing,40.75652,-73.81368,Entire home/apt,99,1,3,3.0,2,357 +45588,229506961,Manhattan,Midtown,40.75935,-73.96471,Entire home/apt,289,2,3,3.0,1,309 +45589,262570325,Manhattan,Hell's Kitchen,40.75967,-73.99219000000001,Entire home/apt,499,3,6,4.62,1,361 +45590,56306339,Staten Island,Midland Beach,40.57503,-74.09523,Entire home/apt,61,5,0,,1,290 +45591,25701819,Brooklyn,Bedford-Stuyvesant,40.689609999999995,-73.9232,Private room,55,16,0,,1,0 +45592,154268909,Queens,Bellerose,40.74027,-73.71829,Entire home/apt,180,2,0,,2,281 +45593,261338177,Brooklyn,Gravesend,40.58941,-73.97116,Shared room,25,7,0,,6,321 +45594,261338177,Brooklyn,Gravesend,40.59087,-73.97275,Shared room,25,7,1,0.67,6,313 +45595,261338177,Brooklyn,Gravesend,40.58972,-73.97171999999999,Shared room,25,7,0,,6,343 +45596,229450463,Bronx,Pelham Bay,40.852509999999995,-73.83254000000001,Private room,55,2,0,,1,89 +45597,184750740,Bronx,Morrisania,40.82504,-73.90918,Shared room,80,1,0,,4,365 +45598,67046604,Brooklyn,Park Slope,40.66713,-73.98196,Private room,60,15,0,,1,53 +45599,262767899,Manhattan,West Village,40.73559,-73.99959,Entire home/apt,299,2,1,1.0,1,118 +45600,20110967,Manhattan,Inwood,40.86025,-73.92647,Private room,24,10,0,,1,145 +45601,13738322,Manhattan,Lower East Side,40.72183,-73.98803000000001,Entire home/apt,125,1,4,2.55,1,0 +45602,69433846,Manhattan,Upper East Side,40.77621,-73.9616,Entire home/apt,180,2,0,,1,0 +45603,136025561,Manhattan,Little Italy,40.71758,-73.99792,Entire home/apt,95,2,2,1.33,2,0 +45604,23046080,Manhattan,Chelsea,40.75295,-73.9955,Entire home/apt,250,6,1,1.0,1,3 +45605,26023166,Brooklyn,Clinton Hill,40.68182,-73.959,Entire home/apt,200,3,1,0.73,1,50 +45606,32162495,Staten Island,Eltingville,40.539390000000004,-74.15389,Entire home/apt,299,10,0,,3,30 +45607,10513282,Queens,Ditmars Steinway,40.7753,-73.90994,Entire home/apt,93,2,1,0.81,1,361 +45608,36082598,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95222,Entire home/apt,225,2,6,3.83,2,273 +45609,45433836,Manhattan,Chelsea,40.74473,-73.99213,Entire home/apt,310,7,0,,1,81 +45610,262800168,Manhattan,Midtown,40.7431,-73.98233,Entire home/apt,1000,2,6,5.29,1,231 +45611,262803937,Brooklyn,Prospect-Lefferts Gardens,40.66288,-73.95277,Entire home/apt,90,2,4,2.73,1,73 +45612,90463984,Queens,Richmond Hill,40.69838,-73.84228,Entire home/apt,120,7,0,,3,122 +45613,73869612,Brooklyn,Crown Heights,40.67562,-73.95319,Private room,90,7,0,,1,5 +45614,209915988,Bronx,Unionport,40.82936,-73.84854,Private room,75,1,1,0.68,1,365 +45615,18682781,Manhattan,Harlem,40.82509,-73.9522,Private room,75,1,4,2.55,1,90 +45616,2201963,Brooklyn,Williamsburg,40.706309999999995,-73.93338,Private room,64,21,0,,1,5 +45617,4185618,Manhattan,Upper West Side,40.77629,-73.98017,Entire home/apt,249,3,3,2.73,1,118 +45618,25867795,Brooklyn,Sunset Park,40.63957,-74.01717,Private room,44,1,8,5.11,1,74 +45619,48684597,Queens,Maspeth,40.73829,-73.89586,Private room,50,1,12,9.47,4,233 +45620,255641440,Queens,Flushing,40.76316,-73.80869,Private room,55,1,0,,7,329 +45621,121080979,Brooklyn,DUMBO,40.70378,-73.99278000000001,Private room,400,3,0,,1,136 +45622,3415882,Brooklyn,Brooklyn Heights,40.69015,-73.99271,Entire home/apt,150,5,2,2.0,1,10 +45623,137949496,Manhattan,Lower East Side,40.72081,-73.99069,Entire home/apt,110,7,2,2.0,1,0 +45624,61882349,Manhattan,Chelsea,40.7483,-74.0008,Entire home/apt,93,5,2,2.0,1,0 +45625,262657892,Brooklyn,Crown Heights,40.66682,-73.93021999999999,Entire home/apt,370,3,3,1.8,3,220 +45626,257839699,Manhattan,Washington Heights,40.85423,-73.93215,Private room,129,1,0,,1,5 +45627,262657892,Brooklyn,Crown Heights,40.666779999999996,-73.93035,Entire home/apt,830,3,0,,3,213 +45628,115771987,Manhattan,Financial District,40.7075,-74.00853000000001,Entire home/apt,196,30,0,,6,222 +45629,116305897,Manhattan,Upper West Side,40.789320000000004,-73.97359,Entire home/apt,250,30,0,,9,312 +45630,20086738,Brooklyn,Bedford-Stuyvesant,40.68098,-73.91608000000001,Private room,90,2,2,2.0,2,1 +45631,184506477,Manhattan,Chelsea,40.74743,-73.99136,Entire home/apt,440,2,1,0.61,1,2 +45632,10430261,Brooklyn,Bushwick,40.6999,-73.92416999999999,Private room,52,14,0,,1,31 +45633,108079367,Brooklyn,Williamsburg,40.71097,-73.94164,Entire home/apt,105,14,0,,1,40 +45634,38119047,Brooklyn,Sunset Park,40.64613,-74.00735999999999,Private room,40,1,8,5.45,2,89 +45635,25157246,Manhattan,Midtown,40.752159999999996,-73.96911999999999,Entire home/apt,159,90,0,,2,330 +45636,229498124,Manhattan,Midtown,40.75978,-73.96629,Entire home/apt,489,2,2,1.67,1,320 +45637,34655986,Bronx,Port Morris,40.80464,-73.92575,Entire home/apt,125,14,0,,1,365 +45638,35098529,Manhattan,Kips Bay,40.74409,-73.97605,Entire home/apt,310,30,0,,5,214 +45639,262883761,Brooklyn,Williamsburg,40.71359,-73.94875,Entire home/apt,203,3,4,3.53,1,254 +45640,25794110,Manhattan,Civic Center,40.712920000000004,-73.99819000000001,Private room,165,2,0,,1,89 +45641,262884890,Brooklyn,Williamsburg,40.70708,-73.94168,Entire home/apt,154,3,5,4.05,1,269 +45642,107234799,Brooklyn,Sunset Park,40.649429999999995,-74.01018,Private room,27,15,1,1.0,1,0 +45643,293911,Brooklyn,East Flatbush,40.64521,-73.94452,Entire home/apt,220,5,0,,1,75 +45644,2374185,Manhattan,Upper East Side,40.773740000000004,-73.95153,Entire home/apt,300,30,0,,1,348 +45645,49906311,Brooklyn,Williamsburg,40.711459999999995,-73.94216999999999,Entire home/apt,150,4,0,,1,0 +45646,158178970,Staten Island,Randall Manor,40.63136,-74.12559,Shared room,13,1,9,5.51,3,8 +45647,261898854,Manhattan,East Village,40.72128,-73.97899,Entire home/apt,200,14,2,1.5,1,233 +45648,259087876,Manhattan,Theater District,40.7585,-73.98221,Private room,300,1,12,7.83,7,50 +45649,262804930,Brooklyn,Prospect-Lefferts Gardens,40.659859999999995,-73.94277,Private room,89,1,5,3.49,1,97 +45650,43252773,Manhattan,Harlem,40.81103,-73.94813,Entire home/apt,289,1,0,,2,301 +45651,132777237,Manhattan,West Village,40.73473,-74.00135,Entire home/apt,650,30,0,,1,277 +45652,962249,Staten Island,Tottenville,40.50943,-74.24441999999999,Entire home/apt,70,3,1,1.0,1,128 +45653,262435950,Brooklyn,Bushwick,40.69551,-73.91696999999999,Entire home/apt,399,3,7,5.25,1,358 +45654,262990767,Manhattan,Midtown,40.743809999999996,-73.98491999999999,Entire home/apt,590,1,0,,1,365 +45655,192890383,Brooklyn,Bushwick,40.6909,-73.91198,Private room,110,1,0,,1,0 +45656,42222090,Manhattan,Hell's Kitchen,40.76885,-73.98611,Entire home/apt,289,3,3,3.0,2,125 +45657,226519844,Manhattan,Gramercy,40.73684,-73.9842,Entire home/apt,117,1,3,2.43,1,233 +45658,105634248,Manhattan,Upper West Side,40.793279999999996,-73.96817,Entire home/apt,250,31,0,,3,347 +45659,263013038,Manhattan,Financial District,40.7067,-74.00546,Private room,150,3,0,,1,0 +45660,263007016,Manhattan,Upper East Side,40.77838,-73.94792,Private room,125,1,0,,1,0 +45661,221645033,Brooklyn,Bushwick,40.69867,-73.91968,Private room,50,1,0,,5,329 +45662,263013451,Brooklyn,Flatbush,40.64522,-73.95815999999999,Entire home/apt,160,3,0,,1,125 +45663,22541573,Manhattan,Hell's Kitchen,40.76957,-73.99292,Entire home/apt,229,30,0,,87,115 +45664,129589071,Manhattan,Murray Hill,40.7483,-73.97444,Entire home/apt,265,30,0,,1,351 +45665,105634248,Manhattan,Upper West Side,40.79482,-73.96639,Entire home/apt,200,31,0,,3,316 +45666,262534951,Brooklyn,East Flatbush,40.65724,-73.9245,Private room,7500,1,8,6.15,2,179 +45667,105634248,Manhattan,Upper West Side,40.79355,-73.96752,Entire home/apt,200,31,0,,3,333 +45668,261995854,Queens,Richmond Hill,40.68243,-73.82668000000001,Entire home/apt,120,2,5,5.0,1,356 +45669,105626720,Manhattan,Theater District,40.76234,-73.98605,Entire home/apt,200,31,0,,5,341 +45670,7028001,Brooklyn,Bedford-Stuyvesant,40.69474,-73.94963,Private room,50,4,0,,1,9 +45671,105626720,Manhattan,Hell's Kitchen,40.76189,-73.98765,Entire home/apt,200,31,0,,5,341 +45672,133449862,Manhattan,Upper East Side,40.76735,-73.95433,Entire home/apt,130,5,0,,1,188 +45673,73678055,Brooklyn,Williamsburg,40.719879999999996,-73.96381,Entire home/apt,188,5,5,3.33,1,101 +45674,253361623,Manhattan,Midtown,40.75671,-73.96228,Shared room,150,1,2,1.25,1,67 +45675,105626720,Manhattan,Hell's Kitchen,40.76377,-73.9873,Entire home/apt,200,31,0,,5,329 +45676,238328671,Brooklyn,Williamsburg,40.71706,-73.95988,Entire home/apt,375,1,3,3.0,1,43 +45677,263053182,Queens,Rego Park,40.7276,-73.86569,Private room,85,1,1,1.0,10,106 +45678,263054681,Manhattan,Harlem,40.81982,-73.94481,Entire home/apt,93,30,0,,1,325 +45679,68398714,Manhattan,Upper East Side,40.76233,-73.96193000000001,Entire home/apt,175,2,1,1.0,1,83 +45680,5680111,Brooklyn,Bushwick,40.68757,-73.91343,Private room,65,5,2,1.71,7,139 +45681,80573606,Manhattan,East Village,40.726490000000005,-73.98433,Entire home/apt,275,2,3,2.05,1,12 +45682,126614438,Bronx,Westchester Square,40.83616,-73.84638000000001,Entire home/apt,75,1,5,3.95,1,355 +45683,263053182,Queens,Rego Park,40.72582,-73.86572,Private room,85,1,3,3.0,10,112 +45684,4267864,Brooklyn,Fort Greene,40.69234,-73.97219,Entire home/apt,150,3,4,3.64,1,1 +45685,263053182,Queens,Rego Park,40.726620000000004,-73.86645,Private room,68,1,1,1.0,10,136 +45686,47431634,Manhattan,Chelsea,40.74156,-73.99677,Shared room,450,1,0,,1,89 +45687,47399487,Brooklyn,Flatbush,40.64208,-73.95574,Entire home/apt,150,2,2,2.0,1,113 +45688,75034279,Brooklyn,Bedford-Stuyvesant,40.695209999999996,-73.95173,Private room,63,2,0,,2,83 +45689,13874881,Brooklyn,Crown Heights,40.67672,-73.94856,Entire home/apt,90,3,4,4.0,1,18 +45690,246351353,Brooklyn,Prospect-Lefferts Gardens,40.661970000000004,-73.95952,Private room,42,2,12,9.47,1,53 +45691,263090455,Queens,Bellerose,40.7261,-73.72173000000001,Private room,75,1,0,,1,365 +45692,26597048,Manhattan,Harlem,40.804970000000004,-73.94152,Entire home/apt,106,3,7,6.0,2,5 +45693,232410,Manhattan,Washington Heights,40.83903,-73.94588,Entire home/apt,125,2,2,1.4,1,321 +45694,66959637,Queens,Ridgewood,40.70358,-73.90864,Private room,50,7,0,,2,281 +45695,263084604,Manhattan,Hell's Kitchen,40.75951,-73.98898,Entire home/apt,199,1,7,4.57,1,148 +45696,558101,Brooklyn,Williamsburg,40.7132,-73.96441,Entire home/apt,155,4,1,1.0,1,0 +45697,9880282,Brooklyn,Boerum Hill,40.68475,-73.9871,Entire home/apt,175,14,3,2.25,1,0 +45698,10174929,Queens,Long Island City,40.74836,-73.93866,Entire home/apt,199,10,0,,1,0 +45699,3383356,Brooklyn,Williamsburg,40.71703,-73.9635,Private room,120,2,0,,1,22 +45700,8092286,Brooklyn,Gowanus,40.66916,-73.9914,Entire home/apt,135,2,3,2.09,1,37 +45701,2492400,Queens,Sunnyside,40.74807,-73.91343,Entire home/apt,101,3,4,2.79,1,110 +45702,43810674,Manhattan,Greenwich Village,40.72748,-74.0008,Entire home/apt,299,3,3,2.09,2,178 +45703,43810674,Manhattan,SoHo,40.72599,-74.00249000000001,Entire home/apt,268,3,1,1.0,2,178 +45704,263113162,Manhattan,Harlem,40.8287,-73.94686999999999,Entire home/apt,120,30,0,,1,94 +45705,105626720,Manhattan,Hell's Kitchen,40.76359,-73.98608,Entire home/apt,200,31,0,,5,354 +45706,263122683,Brooklyn,Williamsburg,40.7201,-73.96373,Entire home/apt,150,3,1,0.81,1,74 +45707,141169081,Manhattan,Washington Heights,40.84721,-73.93321,Private room,55,2,5,3.19,1,53 +45708,81325020,Brooklyn,Bedford-Stuyvesant,40.679159999999996,-73.92559,Entire home/apt,85,3,3,2.05,3,43 +45709,38119047,Brooklyn,Sunset Park,40.64739,-74.00549000000001,Private room,45,1,7,4.77,2,50 +45710,256496159,Manhattan,Hell's Kitchen,40.75535,-73.99502,Entire home/apt,2500,70,0,,3,191 +45711,244030009,Manhattan,Midtown,40.74324,-73.98329,Entire home/apt,550,1,0,,1,48 +45712,130270076,Manhattan,East Harlem,40.78645,-73.94873,Entire home/apt,150,30,0,,2,311 +45713,1668747,Manhattan,Hell's Kitchen,40.760220000000004,-74.00117,Entire home/apt,194,3,2,2.0,1,44 +45714,173417532,Manhattan,Midtown,40.75175,-73.97381999999999,Private room,140,1,3,3.0,3,85 +45715,25408903,Manhattan,Chelsea,40.74125,-73.99925999999999,Private room,89,1,5,5.0,1,296 +45716,6887469,Manhattan,East Village,40.72605,-73.98269,Entire home/apt,175,30,0,,1,326 +45717,5761174,Brooklyn,Boerum Hill,40.68993,-73.99204,Entire home/apt,151,7,1,0.81,1,14 +45718,22118412,Manhattan,Harlem,40.82862,-73.94938,Private room,54,3,0,,1,19 +45719,234975196,Manhattan,Midtown,40.755829999999996,-73.96836,Entire home/apt,120,2,0,,1,0 +45720,153376583,Bronx,Belmont,40.85413,-73.88387,Private room,55,1,0,,1,236 +45721,263228548,Brooklyn,Bedford-Stuyvesant,40.68716,-73.923,Private room,50,1,3,2.73,1,0 +45722,219517861,Manhattan,Financial District,40.70641,-74.00532,Entire home/apt,137,29,0,,327,361 +45723,219517861,Manhattan,Financial District,40.70644,-74.00515,Entire home/apt,137,29,0,,327,333 +45724,263053182,Queens,Rego Park,40.7258,-73.86715,Private room,70,1,2,2.0,10,127 +45725,219517861,Manhattan,Financial District,40.70782,-74.00616,Entire home/apt,137,29,0,,327,341 +45726,263053182,Queens,Rego Park,40.72721,-73.86589000000001,Private room,65,1,2,1.87,10,134 +45727,35514248,Brooklyn,Bedford-Stuyvesant,40.68327,-73.91797,Entire home/apt,120,1,8,6.86,1,272 +45728,219517861,Manhattan,Financial District,40.70722,-74.00482,Entire home/apt,117,29,0,,327,345 +45729,1094258,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.9227,Entire home/apt,90,15,1,0.83,1,118 +45730,79461666,Manhattan,Hell's Kitchen,40.7646,-73.99045,Private room,150,2,0,,3,7 +45731,219517861,Manhattan,Financial District,40.706590000000006,-74.00632,Entire home/apt,137,29,0,,327,318 +45732,105626720,Manhattan,Hell's Kitchen,40.76233,-73.98706999999999,Entire home/apt,250,31,0,,5,322 +45733,263053182,Queens,Rego Park,40.72719,-73.86671,Private room,99,1,0,,10,131 +45734,170624318,Queens,Elmhurst,40.747690000000006,-73.87203000000001,Private room,75,1,1,0.79,1,359 +45735,263053182,Queens,Rego Park,40.725770000000004,-73.86509000000001,Private room,55,1,0,,10,106 +45736,1155164,Brooklyn,Bedford-Stuyvesant,40.68036,-73.91620999999999,Private room,40,2,4,4.0,1,2 +45737,263245967,Manhattan,Hell's Kitchen,40.76106,-73.99733,Entire home/apt,250,1,5,3.49,1,311 +45738,47187850,Manhattan,Hell's Kitchen,40.76113,-73.99504,Entire home/apt,200,3,1,1.0,1,0 +45739,2982441,Manhattan,East Village,40.7319,-73.98658,Entire home/apt,180,8,1,1.0,1,188 +45740,65814872,Manhattan,East Village,40.72916,-73.98228,Entire home/apt,250,30,0,,1,90 +45741,263230696,Brooklyn,Clinton Hill,40.690540000000006,-73.96063000000001,Entire home/apt,200,3,1,1.0,1,357 +45742,15537429,Manhattan,East Village,40.7281,-73.97807,Entire home/apt,152,2,0,,3,69 +45743,188212054,Brooklyn,Bay Ridge,40.62061,-74.02331,Entire home/apt,245,3,2,2.0,2,255 +45744,10834322,Brooklyn,Clinton Hill,40.68954,-73.96561,Private room,40,31,0,,1,54 +45745,133996326,Manhattan,Flatiron District,40.743120000000005,-73.98977,Entire home/apt,459,1,5,4.29,1,354 +45746,221213143,Manhattan,Kips Bay,40.74257,-73.98146,Entire home/apt,350,1,6,3.83,9,333 +45747,263053182,Queens,Rego Park,40.72718,-73.86541,Private room,55,1,3,2.57,10,120 +45748,263053182,Queens,Rego Park,40.7274,-73.86537,Private room,55,1,0,,10,95 +45749,221213143,Manhattan,Kips Bay,40.74155,-73.98138,Entire home/apt,650,1,0,,9,298 +45750,263053182,Queens,Rego Park,40.72655,-73.86697,Private room,70,1,0,,10,112 +45751,3068045,Brooklyn,Williamsburg,40.71743,-73.9538,Entire home/apt,350,2,2,1.36,1,26 +45752,263272705,Queens,Long Island City,40.75659,-73.93108000000001,Entire home/apt,275,2,1,1.0,1,266 +45753,126012313,Manhattan,East Village,40.72276,-73.98741,Private room,78,2,7,5.38,1,1 +45754,161057073,Manhattan,Lower East Side,40.72104,-73.98845,Private room,105,2,0,,4,56 +45755,263282580,Brooklyn,Bedford-Stuyvesant,40.69593,-73.93503,Private room,60,2,2,1.25,2,171 +45756,259630588,Brooklyn,Williamsburg,40.71867,-73.94884,Private room,149,2,1,0.68,2,0 +45757,102796618,Bronx,Wakefield,40.88798,-73.86474,Private room,35,1,5,3.13,1,62 +45758,263266237,Bronx,Allerton,40.86997,-73.84867,Private room,36,2,2,2.0,4,81 +45759,263266237,Bronx,Allerton,40.86958,-73.84872,Private room,38,2,1,1.0,4,90 +45760,263266237,Bronx,Allerton,40.8688,-73.84725999999999,Private room,120,2,0,,4,84 +45761,55040763,Manhattan,Washington Heights,40.85911,-73.93087,Private room,50,2,6,5.0,1,29 +45762,53105633,Manhattan,Washington Heights,40.85873,-73.92936999999999,Private room,32,7,0,,1,0 +45763,1786901,Manhattan,Upper East Side,40.78298,-73.94671,Private room,95,3,0,,9,29 +45764,41131304,Brooklyn,Bedford-Stuyvesant,40.683370000000004,-73.93718,Entire home/apt,150,2,4,3.16,1,66 +45765,263301212,Brooklyn,Gravesend,40.58518,-73.96846,Private room,100,2,0,,1,87 +45766,44179601,Manhattan,Gramercy,40.738170000000004,-73.98903,Entire home/apt,850,1,3,3.0,1,341 +45767,13463015,Brooklyn,Crown Heights,40.67068,-73.95464,Entire home/apt,145,1,0,,1,66 +45768,263311126,Queens,Long Island City,40.75693,-73.93044,Entire home/apt,650,2,0,,1,233 +45769,263312564,Manhattan,Midtown,40.75235,-73.97077,Private room,175,1,4,4.0,1,203 +45770,202369622,Manhattan,Hell's Kitchen,40.76814,-73.99148000000001,Entire home/apt,190,2,0,,1,8 +45771,12128527,Brooklyn,Windsor Terrace,40.65118,-73.9788,Entire home/apt,140,10,0,,2,49 +45772,263126029,Manhattan,Upper East Side,40.76383,-73.9687,Entire home/apt,169,2,3,2.65,1,7 +45773,263322673,Manhattan,SoHo,40.72627,-74.00104,Private room,85,14,3,3.0,2,126 +45774,258232863,Staten Island,New Springville,40.58647,-74.15954,Entire home/apt,68,2,8,5.33,1,4 +45775,14818218,Brooklyn,Williamsburg,40.70877,-73.95064,Private room,80,2,3,3.0,1,84 +45776,263331130,Brooklyn,Bushwick,40.699690000000004,-73.9199,Private room,65,1,7,4.77,1,79 +45777,250583732,Manhattan,Upper East Side,40.77581,-73.96285,Entire home/apt,210,1,0,,1,135 +45778,195303599,Manhattan,Upper West Side,40.77652,-73.98151,Entire home/apt,699,4,4,4.0,1,301 +45779,951909,Brooklyn,Kensington,40.64501,-73.97859,Private room,79,7,1,0.77,1,22 +45780,259013161,Queens,Woodside,40.74465,-73.90335999999999,Private room,89,1,0,,2,70 +45781,194673800,Queens,East Elmhurst,40.7655,-73.88217,Entire home/apt,80,1,8,5.45,1,49 +45782,103628289,Manhattan,East Village,40.7283,-73.98589,Entire home/apt,130,3,1,1.0,1,4 +45783,30590073,Brooklyn,Williamsburg,40.71839,-73.95876,Private room,70,2,0,,2,98 +45784,171495922,Brooklyn,Sunset Park,40.637209999999996,-74.01229000000001,Private room,60,1,0,,4,353 +45785,171495922,Brooklyn,Sunset Park,40.63814,-74.01288000000001,Private room,58,1,1,0.68,4,360 +45786,263351102,Manhattan,Murray Hill,40.74561,-73.97784,Entire home/apt,135,14,1,1.0,1,2 +45787,259013161,Queens,Woodside,40.74302,-73.90287,Entire home/apt,150,1,3,1.91,2,155 +45788,171495922,Brooklyn,Sunset Park,40.63698,-74.01139,Private room,58,1,0,,4,360 +45789,263352389,Brooklyn,Flatbush,40.648559999999996,-73.96358000000001,Private room,40,7,1,1.0,1,11 +45790,15820708,Brooklyn,Williamsburg,40.70939,-73.94055,Entire home/apt,300,3,1,1.0,2,113 +45791,30485701,Manhattan,Midtown,40.7584,-73.97075,Entire home/apt,245,2,7,4.57,1,257 +45792,263365570,Brooklyn,Bedford-Stuyvesant,40.691520000000004,-73.96037,Private room,35,3,2,2.0,1,20 +45793,256877591,Manhattan,Harlem,40.813759999999995,-73.9525,Private room,59,25,0,,1,1 +45794,263301624,Manhattan,Lower East Side,40.718720000000005,-73.98174,Entire home/apt,600,3,6,4.5,1,343 +45795,71630660,Manhattan,Upper East Side,40.77086,-73.95130999999999,Entire home/apt,150,3,0,,1,273 +45796,263383528,Manhattan,Gramercy,40.737120000000004,-73.98844,Private room,245,1,2,2.0,1,179 +45797,149564593,Manhattan,Upper East Side,40.769890000000004,-73.94960999999999,Entire home/apt,145,2,1,1.0,1,100 +45798,48965038,Manhattan,Upper East Side,40.77697,-73.95272,Entire home/apt,145,3,2,2.0,1,70 +45799,49292376,Manhattan,East Harlem,40.78707,-73.95121,Entire home/apt,145,2,1,1.0,1,94 +45800,48817598,Manhattan,Upper East Side,40.77045,-73.94959,Entire home/apt,145,2,2,2.0,1,37 +45801,263408737,Manhattan,Upper West Side,40.79582,-73.96710999999999,Entire home/apt,158,2,1,0.7,1,8 +45802,184407284,Manhattan,Upper East Side,40.770309999999995,-73.95007,Entire home/apt,145,1,1,1.0,1,110 +45803,1692055,Manhattan,East Harlem,40.795120000000004,-73.94454,Shared room,50,1,1,1.0,1,81 +45804,262281120,Brooklyn,Williamsburg,40.71765,-73.95914,Entire home/apt,165,30,0,,1,59 +45805,3954840,Queens,Ditmars Steinway,40.77558,-73.90505999999999,Entire home/apt,174,2,1,1.0,1,5 +45806,183571032,Manhattan,Upper East Side,40.76805,-73.94929,Entire home/apt,150,1,2,2.0,1,83 +45807,4385683,Manhattan,Hell's Kitchen,40.76615,-73.98881999999999,Entire home/apt,239,2,7,7.0,1,22 +45808,48950686,Manhattan,Upper East Side,40.778209999999994,-73.95504,Entire home/apt,150,2,3,3.0,1,164 +45809,54618020,Brooklyn,Bushwick,40.70267,-73.92271,Private room,80,2,1,0.7,1,62 +45810,8616787,Queens,Long Island City,40.75181,-73.93701999999999,Entire home/apt,200,2,1,1.0,1,9 +45811,132202485,Manhattan,Nolita,40.72222,-73.99443000000001,Private room,100,3,2,1.62,1,55 +45812,30613046,Brooklyn,Park Slope,40.67957,-73.97928,Private room,69,3,0,,2,65 +45813,32162806,Manhattan,Midtown,40.7604,-73.96451,Entire home/apt,150,2,3,2.81,1,78 +45814,259422076,Queens,Jackson Heights,40.75277,-73.88356,Private room,60,20,0,,1,175 +45815,8014888,Manhattan,Chinatown,40.71801,-73.9943,Entire home/apt,499,4,6,4.62,1,299 +45816,1849974,Manhattan,Harlem,40.81872,-73.94363,Entire home/apt,300,7,1,0.65,2,150 +45817,256485515,Brooklyn,Fort Hamilton,40.61822,-74.03538,Private room,55,1,1,1.0,1,322 +45818,263427276,Manhattan,East Village,40.725640000000006,-73.9803,Entire home/apt,300,4,0,,1,297 +45819,1849974,Manhattan,Harlem,40.81981,-73.94523000000001,Entire home/apt,200,7,0,,2,153 +45820,70773274,Brooklyn,Bedford-Stuyvesant,40.68414,-73.93538000000001,Entire home/apt,140,6,0,,1,252 +45821,199147185,Brooklyn,Sunset Park,40.66468,-73.99785,Entire home/apt,399,1,0,,5,359 +45822,35098529,Manhattan,Murray Hill,40.74577,-73.97587,Entire home/apt,310,30,0,,5,311 +45823,374557,Manhattan,East Village,40.72376,-73.98623,Entire home/apt,250,4,0,,1,141 +45824,1241548,Brooklyn,Bedford-Stuyvesant,40.68991,-73.95345,Entire home/apt,110,3,0,,1,18 +45825,113723310,Manhattan,Murray Hill,40.74751,-73.98051,Entire home/apt,300,30,0,,8,355 +45826,35098529,Manhattan,Kips Bay,40.74536,-73.97799,Entire home/apt,180,30,0,,5,327 +45827,263488433,Manhattan,Lower East Side,40.713229999999996,-73.99063000000001,Entire home/apt,250,1,13,8.48,1,213 +45828,242344309,Brooklyn,Williamsburg,40.70671,-73.94774,Private room,79,1,6,6.0,4,0 +45829,263490281,Manhattan,Chinatown,40.71693,-73.99075,Entire home/apt,200,1,3,2.43,1,157 +45830,113723310,Manhattan,Murray Hill,40.74876,-73.98143,Entire home/apt,300,30,0,,8,347 +45831,13077418,Queens,Sunnyside,40.7475,-73.9161,Entire home/apt,200,2,4,4.0,1,57 +45832,35098529,Manhattan,Kips Bay,40.74385,-73.97789,Entire home/apt,190,30,0,,5,365 +45833,12642973,Manhattan,Lower East Side,40.720490000000005,-73.98816,Entire home/apt,120,2,2,1.36,1,67 +45834,113723310,Manhattan,Murray Hill,40.74882,-73.98040999999999,Entire home/apt,150,30,0,,8,342 +45835,263502980,Brooklyn,Mill Basin,40.61058,-73.90971,Entire home/apt,299,3,3,2.25,1,339 +45836,263504959,Queens,Woodhaven,40.691140000000004,-73.86459,Entire home/apt,48,1,8,6.32,8,305 +45837,113723310,Manhattan,Murray Hill,40.74812,-73.98046,Entire home/apt,300,30,0,,8,342 +45838,263505830,Manhattan,Upper West Side,40.779270000000004,-73.97649,Private room,100,28,0,,1,166 +45839,4361579,Brooklyn,Bedford-Stuyvesant,40.691179999999996,-73.93476,Private room,68,1,5,3.13,3,16 +45840,49225732,Manhattan,Hell's Kitchen,40.765370000000004,-73.98487,Entire home/apt,173,1,4,4.0,1,120 +45841,263506027,Manhattan,Midtown,40.743990000000004,-73.98398,Entire home/apt,850,1,0,,1,0 +45842,263509965,Brooklyn,Bushwick,40.697070000000004,-73.93200999999999,Private room,50,1,9,6.43,1,60 +45843,261028352,Queens,Woodside,40.74305,-73.9007,Entire home/apt,169,2,0,,2,91 +45844,263448448,Manhattan,Upper East Side,40.76129,-73.96178,Private room,85,1,9,7.3,1,29 +45845,3472623,Brooklyn,Prospect Heights,40.678340000000006,-73.96598,Entire home/apt,175,2,8,5.45,1,3 +45846,116305897,Manhattan,Upper West Side,40.79058,-73.97246,Entire home/apt,150,30,0,,9,266 +45847,2896601,Manhattan,Harlem,40.81582,-73.94266999999999,Entire home/apt,118,2,3,2.0,1,17 +45848,263506630,Brooklyn,Williamsburg,40.71736,-73.95845,Entire home/apt,399,2,5,4.55,1,131 +45849,254119216,Queens,Woodside,40.74479,-73.91193,Entire home/apt,108,2,2,2.0,1,5 +45850,115167208,Manhattan,Gramercy,40.738659999999996,-73.98321999999999,Entire home/apt,160,3,0,,1,5 +45851,245457246,Queens,South Ozone Park,40.671009999999995,-73.78943000000001,Entire home/apt,248,2,2,1.3,1,354 +45852,119273,Brooklyn,Williamsburg,40.7194,-73.96346,Entire home/apt,160,31,0,,1,54 +45853,49646933,Manhattan,Midtown,40.75375,-73.97416,Entire home/apt,190,3,1,1.0,1,165 +45854,263527800,Manhattan,Upper East Side,40.761390000000006,-73.96048,Entire home/apt,130,1,0,,1,28 +45855,164701861,Brooklyn,East New York,40.67337,-73.88846,Entire home/apt,225,3,3,3.0,2,136 +45856,263533090,Manhattan,East Village,40.7266,-73.9875,Entire home/apt,175,20,2,1.3,1,27 +45857,84642468,Brooklyn,Gowanus,40.66714,-73.99279,Private room,80,14,0,,1,192 +45858,165883882,Brooklyn,Greenpoint,40.734559999999995,-73.95328,Private room,130,2,2,2.0,1,47 +45859,199578818,Queens,Ozone Park,40.67565,-73.84676999999999,Entire home/apt,60,3,4,3.43,1,170 +45860,187981396,Manhattan,Midtown,40.74329,-73.98253000000001,Private room,102,1,1,1.0,1,353 +45861,76192815,Manhattan,Little Italy,40.71805,-73.99714,Entire home/apt,129,33,0,,5,333 +45862,82182158,Manhattan,East Village,40.72657,-73.98796,Entire home/apt,131,7,1,0.64,1,1 +45863,10787323,Brooklyn,Bushwick,40.70113,-73.92175,Private room,80,3,3,2.14,1,0 +45864,263563066,Manhattan,Lower East Side,40.720490000000005,-73.99348,Private room,100,3,0,,1,23 +45865,10415735,Queens,Howard Beach,40.66162,-73.85598,Entire home/apt,200,1,2,2.0,2,365 +45866,263564835,Manhattan,Midtown,40.743829999999996,-73.98286,Private room,975,30,0,,1,363 +45867,263564234,Brooklyn,Bay Ridge,40.63087,-74.02006,Entire home/apt,4200,60,0,,1,90 +45868,263566379,Brooklyn,Bedford-Stuyvesant,40.68096,-73.92511999999999,Entire home/apt,80,1,6,6.0,1,12 +45869,238800808,Brooklyn,Williamsburg,40.70893,-73.9572,Entire home/apt,895,2,1,1.0,1,28 +45870,150285098,Queens,Howard Beach,40.66238,-73.83628,Private room,150,1,0,,1,89 +45871,116305897,Manhattan,Upper West Side,40.78948,-73.97228,Entire home/apt,290,30,0,,9,338 +45872,116305897,Manhattan,Upper West Side,40.79058,-73.97435,Entire home/apt,170,30,0,,9,353 +45873,116305897,Manhattan,Upper West Side,40.7894,-73.97381,Entire home/apt,170,30,0,,9,342 +45874,263439936,Brooklyn,Williamsburg,40.71114,-73.96153000000001,Private room,70,14,0,,1,139 +45875,91268177,Manhattan,Chelsea,40.74344,-74.00747,Entire home/apt,499,3,2,1.5,4,177 +45876,18260299,Brooklyn,Bushwick,40.69457,-73.90753000000001,Private room,37,4,0,,6,36 +45877,91268177,Manhattan,Chelsea,40.74436,-74.00729,Entire home/apt,447,3,3,2.05,4,157 +45878,262312329,Brooklyn,Fort Hamilton,40.61637,-74.02943,Private room,35,10,0,,1,329 +45879,91268177,Manhattan,Chelsea,40.74372,-74.00601,Entire home/apt,447,3,3,2.2,4,179 +45880,263635162,Manhattan,Lower East Side,40.71736,-73.9827,Entire home/apt,600,4,3,2.25,1,315 +45881,18260299,Brooklyn,Bushwick,40.69316,-73.90741,Private room,37,4,0,,6,29 +45882,9525999,Manhattan,Little Italy,40.71978,-73.99681,Entire home/apt,255,3,1,1.0,1,233 +45883,263545490,Manhattan,East Village,40.725,-73.97903000000001,Entire home/apt,320,3,3,3.0,1,0 +45884,99410435,Brooklyn,Williamsburg,40.71399,-73.94683,Entire home/apt,795,2,1,1.0,3,298 +45885,116272237,Manhattan,Harlem,40.80676,-73.94884,Private room,65,11,0,,1,48 +45886,16625273,Brooklyn,Williamsburg,40.71398,-73.94605,Entire home/apt,995,2,0,,3,272 +45887,88113848,Brooklyn,Borough Park,40.64172,-73.99265,Private room,56,1,4,2.55,2,282 +45888,16625273,Brooklyn,Williamsburg,40.71495,-73.94726,Entire home/apt,695,2,1,1.0,3,282 +45889,221200420,Manhattan,Murray Hill,40.74334,-73.97213,Entire home/apt,300,30,0,,23,249 +45890,113723310,Manhattan,Murray Hill,40.749,-73.98052,Entire home/apt,150,30,0,,8,267 +45891,263670476,Brooklyn,Bay Ridge,40.6336,-74.02884,Entire home/apt,1800,30,0,,1,335 +45892,16625273,Brooklyn,Williamsburg,40.7149,-73.94585,Entire home/apt,295,2,2,2.0,3,298 +45893,88113848,Brooklyn,Borough Park,40.640609999999995,-73.99216,Private room,56,2,8,5.45,2,365 +45894,99410435,Brooklyn,Williamsburg,40.7155,-73.94655999999999,Entire home/apt,595,2,0,,3,313 +45895,221200420,Manhattan,Murray Hill,40.7444,-73.97296999999999,Entire home/apt,300,30,0,,23,319 +45896,263676349,Manhattan,Murray Hill,40.746159999999996,-73.97522,Private room,119,3,1,1.0,2,10 +45897,221200420,Manhattan,Murray Hill,40.744,-73.97359,Entire home/apt,300,30,0,,23,327 +45898,113723310,Manhattan,Murray Hill,40.74757,-73.98187,Entire home/apt,150,30,0,,8,342 +45899,255222056,Manhattan,Midtown,40.75869,-73.96725,Entire home/apt,195,5,12,7.83,1,6 +45900,221200420,Manhattan,Murray Hill,40.7443,-73.97277,Entire home/apt,300,30,0,,23,358 +45901,67249971,Manhattan,Chelsea,40.750640000000004,-73.99566,Entire home/apt,900,1,0,,1,355 +45902,221200420,Manhattan,Murray Hill,40.74457,-73.97168,Entire home/apt,210,30,0,,23,343 +45903,99410435,Brooklyn,Williamsburg,40.713440000000006,-73.94612,Entire home/apt,295,2,1,1.0,3,321 +45904,221200420,Manhattan,Murray Hill,40.74442,-73.9717,Entire home/apt,225,30,0,,23,343 +45905,220400948,Manhattan,Harlem,40.81508,-73.93741999999999,Entire home/apt,120,30,0,,1,0 +45906,221200420,Manhattan,Murray Hill,40.74463,-73.97306999999999,Entire home/apt,250,30,0,,23,311 +45907,263684024,Manhattan,Murray Hill,40.74459,-73.97436,Entire home/apt,600,4,5,4.69,1,167 +45908,221200420,Manhattan,Murray Hill,40.74425,-73.97137,Entire home/apt,220,30,0,,23,325 +45909,2133558,Manhattan,Upper West Side,40.7983,-73.96115,Entire home/apt,450,4,4,3.08,1,345 +45910,113723310,Manhattan,Murray Hill,40.74886,-73.98184,Entire home/apt,150,30,0,,8,281 +45911,221200420,Manhattan,Murray Hill,40.7442,-73.97176,Entire home/apt,200,30,0,,23,330 +45912,259645972,Manhattan,Midtown,40.756609999999995,-73.97185999999999,Entire home/apt,399,6,1,1.0,1,149 +45913,221200420,Manhattan,Kips Bay,40.74322,-73.9722,Entire home/apt,200,30,0,,23,353 +45914,102866746,Manhattan,Harlem,40.80529,-73.94718,Entire home/apt,300,2,1,1.0,1,179 +45915,263690856,Queens,Long Island City,40.7473,-73.93914000000001,Private room,389,1,0,,1,296 +45916,219908197,Brooklyn,Williamsburg,40.71779,-73.94232,Entire home/apt,495,2,1,1.0,3,341 +45917,221200420,Manhattan,Murray Hill,40.74458,-73.97146,Entire home/apt,200,30,0,,23,339 +45918,223087887,Queens,Corona,40.742059999999995,-73.86628,Shared room,28,1,0,,8,357 +45919,221200420,Manhattan,Kips Bay,40.7431,-73.9719,Entire home/apt,200,30,0,,23,342 +45920,77477955,Manhattan,Stuyvesant Town,40.731590000000004,-73.97471999999999,Private room,72,14,0,,1,128 +45921,221200420,Manhattan,Murray Hill,40.74455,-73.97296,Entire home/apt,200,30,0,,23,342 +45922,4361579,Brooklyn,Bedford-Stuyvesant,40.692370000000004,-73.93446,Private room,75,1,2,2.0,3,0 +45923,36564046,Brooklyn,Bushwick,40.6884,-73.91373,Entire home/apt,160,3,2,2.0,1,23 +45924,15285681,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92836,Private room,85,5,1,1.0,1,35 +45925,109671307,Bronx,Norwood,40.8718,-73.87699,Private room,73,1,0,,1,180 +45926,17621913,Manhattan,Harlem,40.82578,-73.95397,Entire home/apt,100,70,0,,1,239 +45927,3371859,Brooklyn,Crown Heights,40.67307,-73.93916999999999,Entire home/apt,88,2,4,3.53,2,31 +45928,263712096,Manhattan,Murray Hill,40.748329999999996,-73.98161999999999,Private room,150,1,2,2.0,3,73 +45929,262114182,Manhattan,Lower East Side,40.71549,-73.97951,Private room,125,2,0,,1,296 +45930,197368927,Brooklyn,Sheepshead Bay,40.60753,-73.95389,Shared room,30,2,2,1.43,8,28 +45931,236530772,Queens,Jamaica Estates,40.72101,-73.79395,Entire home/apt,75,7,1,0.91,2,14 +45932,219517861,Manhattan,Financial District,40.70799,-74.00627,Entire home/apt,100,29,0,,327,326 +45933,219517861,Manhattan,Financial District,40.70673,-74.00565,Entire home/apt,100,29,0,,327,347 +45934,219517861,Manhattan,Financial District,40.70811,-74.00616,Entire home/apt,100,29,0,,327,333 +45935,219517861,Manhattan,Financial District,40.70575,-74.00621,Entire home/apt,302,29,0,,327,190 +45936,159336075,Manhattan,Upper West Side,40.79837,-73.96061,Entire home/apt,400,4,3,2.37,1,275 +45937,219517861,Manhattan,Hell's Kitchen,40.760670000000005,-73.99771,Entire home/apt,180,29,0,,327,302 +45938,219517861,Manhattan,Hell's Kitchen,40.7622,-73.99673,Entire home/apt,189,29,0,,327,332 +45939,219517861,Manhattan,Financial District,40.70745,-74.00613,Entire home/apt,175,29,0,,327,37 +45940,263721494,Queens,Woodside,40.74357,-73.90894,Entire home/apt,189,1,2,2.0,1,212 +45941,263712096,Manhattan,Midtown,40.74808,-73.9834,Private room,145,1,0,,3,68 +45942,113723310,Manhattan,Murray Hill,40.74892,-73.98155,Entire home/apt,350,30,0,,8,312 +45943,4361579,Brooklyn,Bedford-Stuyvesant,40.6904,-73.93463,Entire home/apt,92,1,9,6.59,3,21 +45944,229604812,Brooklyn,Windsor Terrace,40.65863,-73.98495,Entire home/apt,300,3,0,,1,335 +45945,263712096,Manhattan,Midtown,40.74673,-73.98305,Shared room,60,1,0,,3,43 +45946,219517861,Manhattan,Theater District,40.75708,-73.98283,Entire home/apt,177,29,0,,327,343 +45947,219517861,Manhattan,Midtown,40.756,-73.98195,Entire home/apt,230,29,0,,327,354 +45948,219517861,Manhattan,Midtown,40.75547,-73.98245,Entire home/apt,177,29,0,,327,336 +45949,219517861,Manhattan,Upper East Side,40.76277,-73.96316999999999,Entire home/apt,160,29,0,,327,311 +45950,219517861,Manhattan,Upper East Side,40.76307,-73.96295,Entire home/apt,184,29,0,,327,335 +45951,219517861,Manhattan,Murray Hill,40.7473,-73.97603000000001,Entire home/apt,194,29,0,,327,329 +45952,48605276,Brooklyn,Greenpoint,40.72006,-73.9462,Entire home/apt,400,4,0,,1,355 +45953,219517861,Manhattan,Murray Hill,40.74899,-73.97541,Entire home/apt,200,29,0,,327,360 +45954,198836713,Manhattan,Upper West Side,40.80154,-73.96106,Entire home/apt,550,3,5,3.85,1,320 +45955,219517861,Manhattan,Murray Hill,40.74725,-73.97606999999999,Entire home/apt,202,29,0,,327,365 +45956,219517861,Manhattan,Chelsea,40.74288,-73.99438,Entire home/apt,275,29,0,,327,365 +45957,219517861,Manhattan,Chelsea,40.74295,-73.99521,Entire home/apt,277,29,0,,327,311 +45958,219517861,Manhattan,Murray Hill,40.74451,-73.9727,Entire home/apt,162,29,0,,327,341 +45959,219517861,Manhattan,Theater District,40.75954,-73.98604,Entire home/apt,217,29,0,,327,357 +45960,90206857,Manhattan,Upper West Side,40.78263,-73.97623,Entire home/apt,180,2,6,5.0,1,7 +45961,155313109,Manhattan,Midtown,40.76383,-73.98368,Entire home/apt,149,1,15,9.78,1,121 +45962,263732662,Queens,Sunnyside,40.73935,-73.92096,Private room,50,2,4,2.73,1,180 +45963,3005203,Brooklyn,Williamsburg,40.71697,-73.94227,Entire home/apt,295,2,1,1.0,3,318 +45964,48771484,Brooklyn,East New York,40.67109,-73.86841,Private room,70,1,1,1.0,1,75 +45965,3005203,Brooklyn,Williamsburg,40.717009999999995,-73.94082,Entire home/apt,295,2,1,1.0,3,337 +45966,3005203,Brooklyn,Williamsburg,40.715740000000004,-73.9414,Entire home/apt,495,2,0,,3,282 +45967,254624988,Manhattan,Greenwich Village,40.73655,-73.99618000000001,Entire home/apt,1099,31,3,2.31,1,193 +45968,259669775,Brooklyn,Sheepshead Bay,40.608579999999996,-73.9516,Entire home/apt,129,2,6,6.0,2,86 +45969,263744711,Manhattan,Hell's Kitchen,40.76299,-73.99478,Entire home/apt,400,3,1,1.0,1,278 +45970,206451695,Manhattan,Hell's Kitchen,40.75949,-73.99566999999999,Private room,181,2,0,,3,362 +45971,263744321,Manhattan,Hell's Kitchen,40.76275,-73.99271,Entire home/apt,428,3,1,1.0,1,244 +45972,31607477,Brooklyn,Williamsburg,40.70838,-73.95366,Entire home/apt,123,2,2,2.0,1,1 +45973,192895513,Queens,Flushing,40.7562,-73.83071,Private room,88,3,1,1.0,3,336 +45974,197368927,Brooklyn,Sheepshead Bay,40.60911,-73.95257,Shared room,20,2,0,,8,32 +45975,263760960,Brooklyn,Bushwick,40.69605,-73.92423000000001,Entire home/apt,89,1,8,5.58,1,305 +45976,263760411,Bronx,Concourse,40.83207,-73.92068,Private room,42,2,0,,1,326 +45977,263740985,Queens,Flushing,40.75291,-73.83135,Private room,80,1,2,1.76,3,359 +45978,2449047,Brooklyn,Williamsburg,40.70625,-73.92815,Private room,150,2,0,,1,176 +45979,80593865,Manhattan,Upper East Side,40.780120000000004,-73.95079,Entire home/apt,111,2,4,3.33,1,12 +45980,228473476,Brooklyn,Bushwick,40.69469,-73.92475,Private room,90,5,7,5.12,1,133 +45981,263777041,Manhattan,Two Bridges,40.71089,-73.99671,Entire home/apt,109,1,9,6.0,1,6 +45982,137890627,Queens,Rosedale,40.65535,-73.74449,Entire home/apt,68,2,5,3.95,1,95 +45983,236853675,Brooklyn,Crown Heights,40.67145,-73.93355,Private room,38,1,1,0.7,1,88 +45984,1786901,Manhattan,Upper East Side,40.78307,-73.94578,Private room,69,4,0,,9,17 +45985,180384868,Manhattan,Upper West Side,40.77081,-73.99036,Entire home/apt,360,2,2,2.0,1,89 +45986,263843788,Queens,Sunnyside,40.74143,-73.9229,Entire home/apt,145,2,7,5.68,1,14 +45987,263843486,Queens,Richmond Hill,40.70053,-73.82372,Entire home/apt,120,2,2,2.0,1,336 +45988,146005201,Manhattan,Midtown,40.75821,-73.96313,Entire home/apt,650,30,0,,1,310 +45989,312722,Brooklyn,Greenpoint,40.72572,-73.95664000000001,Private room,250,29,0,,4,157 +45990,226119185,Manhattan,Hell's Kitchen,40.767959999999995,-73.98891,Entire home/apt,599,3,6,4.74,1,199 +45991,17984804,Manhattan,Hell's Kitchen,40.76089,-74.0003,Entire home/apt,200,7,0,,1,308 +45992,116305897,Manhattan,Upper West Side,40.78873,-73.97381,Entire home/apt,150,30,0,,9,200 +45993,121909760,Manhattan,East Village,40.72657,-73.98756999999999,Private room,100,2,3,3.0,1,0 +45994,263853262,Manhattan,Upper West Side,40.7997,-73.95945999999999,Entire home/apt,330,4,5,3.85,1,325 +45995,116305897,Manhattan,Upper West Side,40.78908,-73.97231,Entire home/apt,150,30,0,,9,311 +45996,78290016,Manhattan,Midtown,40.7601,-73.97041999999999,Entire home/apt,179,2,3,3.0,1,128 +45997,98673234,Manhattan,Upper East Side,40.76365,-73.96186999999999,Entire home/apt,185,2,7,6.56,1,107 +45998,263641050,Manhattan,East Harlem,40.7988,-73.94339000000001,Entire home/apt,200,4,5,3.95,1,303 +45999,20352964,Manhattan,Washington Heights,40.84732,-73.93746999999999,Private room,50,15,0,,1,8 +46000,156295223,Manhattan,Midtown,40.75939,-73.96177,Entire home/apt,650,30,0,,1,303 +46001,76971491,Manhattan,Midtown,40.7482,-73.98599,Entire home/apt,180,1,3,3.0,1,259 +46002,263880607,Manhattan,Hell's Kitchen,40.76514,-73.98775,Shared room,75,1,2,1.82,7,362 +46003,29001886,Manhattan,East Village,40.73256,-73.99101999999999,Entire home/apt,700,6,0,,1,9 +46004,61396454,Manhattan,Midtown,40.75547,-73.96248,Entire home/apt,300,30,0,,14,0 +46005,263883589,Brooklyn,Boerum Hill,40.68873,-73.98929,Entire home/apt,220,30,2,2.0,2,82 +46006,76981930,Manhattan,Midtown,40.74848,-73.98631,Entire home/apt,180,1,4,4.0,1,262 +46007,10975951,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94499,Private room,60,2,2,1.67,1,1 +46008,49292377,Queens,Ditmars Steinway,40.77132,-73.90474,Private room,75,1,5,4.17,1,167 +46009,216939636,Manhattan,Hell's Kitchen,40.76392,-73.98805,Entire home/apt,155,1,11,7.33,1,163 +46010,65801035,Manhattan,Midtown,40.74646,-73.9863,Entire home/apt,180,1,2,2.0,1,254 +46011,150319226,Manhattan,Midtown,40.74669,-73.98749000000001,Entire home/apt,180,1,7,7.0,1,249 +46012,123936733,Manhattan,Midtown,40.748470000000005,-73.98629,Entire home/apt,180,1,5,3.41,1,260 +46013,263886728,Manhattan,Lower East Side,40.71949,-73.98607,Entire home/apt,400,4,5,3.75,1,327 +46014,263896559,Manhattan,Harlem,40.82204,-73.95566,Private room,60,1,4,3.24,3,211 +46015,263901573,Manhattan,Midtown,40.75476,-73.97118,Private room,135,1,4,4.0,3,29 +46016,263880607,Manhattan,Hell's Kitchen,40.76501,-73.98892,Shared room,79,1,2,1.58,7,365 +46017,1274264,Brooklyn,Sunset Park,40.64918,-74.00756,Entire home/apt,100,7,0,,1,66 +46018,263880607,Manhattan,Hell's Kitchen,40.76356,-73.98814,Shared room,77,1,2,1.62,7,362 +46019,18506733,Bronx,Melrose,40.82374,-73.91555,Entire home/apt,59,2,2,2.0,1,0 +46020,263880607,Manhattan,Hell's Kitchen,40.76509,-73.98795,Shared room,77,1,3,2.0,7,365 +46021,219517861,Manhattan,Financial District,40.70861,-74.00479,Entire home/apt,137,29,0,,327,347 +46022,144582127,Manhattan,East Village,40.72764,-73.98711999999999,Private room,100,3,1,1.0,1,67 +46023,263880607,Manhattan,Hell's Kitchen,40.76424,-73.98916,Shared room,69,1,8,6.32,7,357 +46024,263880607,Manhattan,Hell's Kitchen,40.76404,-73.98973000000001,Private room,120,1,5,3.33,7,352 +46025,256683560,Bronx,Belmont,40.85539,-73.88769,Private room,69,1,3,3.0,2,359 +46026,263880607,Manhattan,Hell's Kitchen,40.76487,-73.98912,Private room,120,1,1,1.0,7,198 +46027,42174219,Manhattan,Theater District,40.76113,-73.98557,Private room,180,2,1,0.77,1,31 +46028,263896559,Manhattan,Harlem,40.82172,-73.95618,Private room,60,1,4,4.0,3,209 +46029,220152135,Brooklyn,Bedford-Stuyvesant,40.68957,-73.92659,Private room,200,2,2,1.4,1,334 +46030,120111937,Brooklyn,Williamsburg,40.70865,-73.96673,Entire home/apt,549,30,5,3.33,1,333 +46031,36712060,Brooklyn,Bedford-Stuyvesant,40.69634,-73.93445,Private room,50,2,4,4.0,1,0 +46032,72686340,Manhattan,Gramercy,40.73891,-73.98657,Entire home/apt,136,4,0,,1,148 +46033,50400614,Manhattan,Washington Heights,40.84176,-73.93738,Private room,65,3,0,,1,0 +46034,263901573,Manhattan,Midtown,40.75455,-73.9695,Private room,125,1,8,8.0,3,123 +46035,71082276,Queens,Long Island City,40.75823,-73.93114,Entire home/apt,295,3,4,4.0,1,302 +46036,263901827,Manhattan,Murray Hill,40.74525,-73.97225,Entire home/apt,385,3,3,3.0,1,311 +46037,99246264,Manhattan,Midtown,40.75911,-73.97010999999999,Entire home/apt,479,2,3,3.0,1,120 +46038,263901573,Manhattan,Midtown,40.756240000000005,-73.97171,Shared room,99,1,9,7.5,3,15 +46039,211549023,Manhattan,Midtown,40.74781,-73.98769,Entire home/apt,260,2,2,2.0,13,292 +46040,263945896,Queens,Elmhurst,40.746959999999994,-73.87912,Private room,45,2,3,2.14,1,64 +46041,76168072,Manhattan,Midtown,40.75974,-73.97067,Entire home/apt,235,2,4,4.0,1,129 +46042,263955551,Queens,College Point,40.78714,-73.84378000000001,Entire home/apt,87,2,0,,1,358 +46043,263957584,Brooklyn,Bushwick,40.699709999999996,-73.93068000000001,Entire home/apt,198,9,4,3.33,2,159 +46044,258639206,Manhattan,Hell's Kitchen,40.75484,-73.9939,Entire home/apt,275,1,13,8.86,1,189 +46045,62560525,Manhattan,East Harlem,40.787659999999995,-73.9423,Entire home/apt,134,3,2,2.0,1,26 +46046,57291971,Manhattan,Midtown,40.76044,-73.97012,Entire home/apt,199,2,3,3.0,1,67 +46047,263494912,Queens,Long Island City,40.76263,-73.93547,Private room,59,1,2,1.54,1,349 +46048,263957584,Brooklyn,Bushwick,40.698240000000006,-73.92888,Entire home/apt,198,30,3,2.65,2,114 +46049,19342,Manhattan,Upper West Side,40.799,-73.96315,Entire home/apt,11,7,0,,1,273 +46050,218955580,Staten Island,Mariners Harbor,40.6357,-74.15478,Entire home/apt,80,1,4,4.0,1,140 +46051,263742622,Queens,Flushing,40.76377,-73.82692,Private room,50,1,6,5.45,1,74 +46052,263984220,Queens,Springfield Gardens,40.66316,-73.74804,Entire home/apt,150,3,1,1.0,1,365 +46053,263994272,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94637,Private room,140,1,0,,3,364 +46054,263999712,Manhattan,Kips Bay,40.74392,-73.97740999999999,Entire home/apt,181,1,2,2.0,1,167 +46055,260154981,Manhattan,Financial District,40.71055,-74.00623,Entire home/apt,395,3,5,4.55,1,65 +46056,229386490,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92503,Private room,45,2,5,4.29,3,257 +46057,256290334,Queens,Richmond Hill,40.70254,-73.8322,Private room,65,1,17,13.42,1,157 +46058,263896559,Manhattan,Harlem,40.82132,-73.95441,Private room,57,1,3,3.0,3,249 +46059,85946234,Brooklyn,Flatbush,40.64669,-73.95921,Private room,65,1,1,0.79,1,80 +46060,178164173,Manhattan,Hell's Kitchen,40.763940000000005,-73.99466,Shared room,400,1,0,,1,44 +46061,215385823,Queens,Jamaica Hills,40.71209,-73.80151,Entire home/apt,325,2,4,4.0,2,124 +46062,264088176,Bronx,Throgs Neck,40.818690000000004,-73.82233000000001,Entire home/apt,99,2,3,3.0,1,120 +46063,264092618,Queens,East Elmhurst,40.76444,-73.87238,Private room,90,1,7,5.38,5,73 +46064,10689761,Manhattan,Upper West Side,40.79599,-73.96659,Entire home/apt,600,30,0,,1,319 +46065,264092618,Queens,East Elmhurst,40.764109999999995,-73.87373000000001,Private room,70,1,13,9.07,5,88 +46066,264092618,Queens,East Elmhurst,40.76481,-73.87241999999999,Private room,60,1,15,10.23,5,89 +46067,263969450,Brooklyn,Canarsie,40.64127,-73.89119000000001,Entire home/apt,100,2,11,7.5,1,167 +46068,132709847,Brooklyn,Bushwick,40.69214,-73.92379,Entire home/apt,89,1,0,,1,0 +46069,264101088,Manhattan,East Village,40.726040000000005,-73.98843000000001,Entire home/apt,255,5,2,2.0,1,11 +46070,14703729,Brooklyn,Crown Heights,40.67623,-73.93642,Entire home/apt,350,3,2,2.0,1,46 +46071,945144,Brooklyn,Crown Heights,40.66701,-73.93861,Entire home/apt,88,10,0,,1,6 +46072,264113441,Brooklyn,Crown Heights,40.67463,-73.9606,Private room,65,31,0,,1,328 +46073,30267389,Bronx,Wakefield,40.893229999999996,-73.85215,Private room,160,2,0,,1,364 +46074,263711950,Manhattan,East Harlem,40.800979999999996,-73.94261,Entire home/apt,180,3,3,2.37,1,308 +46075,180141907,Manhattan,Financial District,40.706590000000006,-74.00501,Entire home/apt,299,4,0,,1,83 +46076,16259898,Manhattan,Upper East Side,40.763290000000005,-73.96235,Entire home/apt,250,7,0,,1,11 +46077,61990664,Manhattan,Little Italy,40.71837,-73.99768,Entire home/apt,190,5,2,1.67,1,300 +46078,10400953,Brooklyn,Williamsburg,40.71544,-73.96003,Private room,100,5,0,,1,12 +46079,264128458,Brooklyn,Fort Greene,40.690259999999995,-73.97074,Private room,50,1,4,3.08,1,336 +46080,212263525,Manhattan,Harlem,40.81149,-73.94024,Entire home/apt,150,1,6,4.09,3,352 +46081,228715959,Manhattan,Hell's Kitchen,40.762840000000004,-73.99003,Entire home/apt,160,1,2,2.0,1,55 +46082,35276933,Manhattan,Washington Heights,40.85638,-73.92921,Entire home/apt,80,70,0,,1,37 +46083,10445838,Manhattan,West Village,40.73435,-74.00392,Private room,150,3,2,2.0,1,34 +46084,3398621,Brooklyn,Brooklyn Heights,40.69664,-73.99467,Entire home/apt,140,2,1,1.0,1,0 +46085,214738765,Queens,Richmond Hill,40.6944,-73.83192,Private room,75,1,5,4.05,3,365 +46086,90112329,Brooklyn,Downtown Brooklyn,40.69791,-73.98380999999999,Entire home/apt,279,4,1,1.0,1,23 +46087,47532,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92617,Entire home/apt,169,4,0,,1,6 +46088,263694567,Queens,Astoria,40.76238,-73.91721,Private room,395,1,1,1.0,1,333 +46089,264156969,Queens,Arverne,40.59279,-73.79993,Private room,80,1,1,1.0,1,90 +46090,264157833,Brooklyn,Bedford-Stuyvesant,40.684059999999995,-73.93966999999999,Entire home/apt,300,2,0,,1,87 +46091,245013643,Manhattan,Hell's Kitchen,40.76506,-73.98507,Entire home/apt,285,30,0,,2,336 +46092,137999892,Staten Island,Concord,40.60625,-74.089,Shared room,30,4,1,0.77,7,68 +46093,264182618,Bronx,Fordham,40.85743,-73.90233,Shared room,22,1,1,0.83,1,11 +46094,263896143,Manhattan,Hell's Kitchen,40.76256,-73.9904,Entire home/apt,390,3,3,2.57,1,43 +46095,264144069,Manhattan,Hell's Kitchen,40.76512,-73.98725999999999,Entire home/apt,500,1,11,7.86,1,180 +46096,264143491,Manhattan,Greenwich Village,40.73108,-74.00114,Entire home/apt,500,1,7,5.12,1,185 +46097,52319188,Manhattan,Murray Hill,40.7472,-73.97278,Private room,500,2,0,,1,43 +46098,6788279,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91553,Entire home/apt,97,1,2,2.0,1,92 +46099,1722490,Brooklyn,Williamsburg,40.72096,-73.95528,Entire home/apt,150,5,0,,1,0 +46100,9524788,Manhattan,East Harlem,40.80619,-73.94174,Entire home/apt,125,2,1,1.0,1,1 +46101,117317499,Manhattan,Lower East Side,40.71345,-73.98678000000001,Entire home/apt,200,5,0,,1,32 +46102,263206972,Manhattan,Kips Bay,40.74125,-73.98125,Entire home/apt,294,3,5,4.41,1,64 +46103,196890,Manhattan,West Village,40.72905,-74.00294,Entire home/apt,165,2,2,1.62,1,21 +46104,263504959,Queens,Woodhaven,40.6929,-73.86378,Private room,50,1,10,10.0,8,273 +46105,253308587,Manhattan,Chinatown,40.71752,-73.99387,Entire home/apt,295,4,3,2.73,1,169 +46106,264267484,Brooklyn,East New York,40.6613,-73.88756,Private room,100,2,1,1.0,1,270 +46107,248056954,Brooklyn,Williamsburg,40.71018,-73.95376999999999,Entire home/apt,180,4,0,,1,23 +46108,10407935,Manhattan,SoHo,40.72765,-74.00213000000001,Entire home/apt,89,1,6,4.74,8,70 +46109,191976506,Manhattan,Hell's Kitchen,40.76831,-73.98515,Entire home/apt,199,3,0,,2,361 +46110,191976506,Manhattan,Hell's Kitchen,40.76795,-73.98380999999999,Entire home/apt,199,3,0,,2,365 +46111,189994854,Brooklyn,Gowanus,40.67753,-73.99084,Entire home/apt,110,30,1,1.0,1,1 +46112,1040374,Brooklyn,Williamsburg,40.71909,-73.95408,Entire home/apt,250,3,4,4.0,1,0 +46113,201987117,Queens,Ridgewood,40.70629,-73.91281,Private room,70,1,1,0.68,1,0 +46114,264149311,Queens,St. Albans,40.69362,-73.76953,Entire home/apt,99,2,9,7.94,1,167 +46115,264294681,Brooklyn,Williamsburg,40.72035,-73.94117,Entire home/apt,125,6,0,,1,0 +46116,264296595,Queens,Flushing,40.75837,-73.82529,Entire home/apt,90,1,3,3.0,3,104 +46117,99642772,Brooklyn,Downtown Brooklyn,40.695609999999995,-73.9878,Entire home/apt,210,5,0,,1,0 +46118,218259081,Manhattan,Harlem,40.82622,-73.93489,Private room,50,1,0,,1,365 +46119,37037135,Manhattan,Upper East Side,40.77166,-73.94665,Entire home/apt,150,2,2,2.0,1,4 +46120,221275418,Brooklyn,Crown Heights,40.67653,-73.93556,Private room,55,2,3,3.0,3,174 +46121,12313907,Brooklyn,Williamsburg,40.72027,-73.9588,Entire home/apt,200,3,5,3.57,1,163 +46122,78109201,Brooklyn,Fort Hamilton,40.61735,-74.03,Entire home/apt,150,5,0,,1,162 +46123,264327510,Queens,Sunnyside,40.74351,-73.92281,Private room,50,3,4,4.0,1,0 +46124,264092618,Queens,East Elmhurst,40.76625,-73.87347,Private room,60,1,12,8.18,5,87 +46125,264092618,Queens,East Elmhurst,40.76566,-73.87215,Private room,70,1,11,7.5,5,78 +46126,232652308,Bronx,Claremont Village,40.83894,-73.91158,Private room,34,2,0,,1,9 +46127,264150720,Queens,Flushing,40.7482,-73.83113,Private room,50,1,4,3.16,1,333 +46128,263753140,Manhattan,Hell's Kitchen,40.76194,-73.99074,Entire home/apt,350,1,2,2.0,1,304 +46129,68561893,Manhattan,Hell's Kitchen,40.765679999999996,-73.98635999999999,Entire home/apt,225,3,0,,1,151 +46130,264360482,Brooklyn,Crown Heights,40.67165,-73.95644,Entire home/apt,130,3,3,2.43,1,74 +46131,264109370,Manhattan,East Harlem,40.788909999999994,-73.94399,Entire home/apt,151,3,2,2.0,1,11 +46132,257623201,Brooklyn,Flatlands,40.6261,-73.94578,Entire home/apt,75,1,8,5.58,1,149 +46133,252641757,Brooklyn,Bedford-Stuyvesant,40.68526,-73.92693,Private room,65,1,6,5.45,1,180 +46134,5273020,Brooklyn,Bushwick,40.69388,-73.92564,Private room,100,3,1,1.0,1,40 +46135,2883347,Queens,Glendale,40.705059999999996,-73.87073000000001,Entire home/apt,150,2,2,2.0,1,45 +46136,12259864,Manhattan,Stuyvesant Town,40.73232,-73.97784,Private room,68,3,1,1.0,1,22 +46137,28464830,Manhattan,Murray Hill,40.74653,-73.97891,Entire home/apt,650,3,2,1.71,1,84 +46138,260157173,Manhattan,Hell's Kitchen,40.76077,-73.99427,Entire home/apt,425,3,3,3.0,1,54 +46139,180960990,Manhattan,Hell's Kitchen,40.75971,-73.99256,Entire home/apt,445,2,1,1.0,1,60 +46140,88988332,Brooklyn,Cobble Hill,40.68929,-73.99656,Private room,1750,30,0,,1,179 +46141,264447713,Manhattan,Financial District,40.70624,-74.01006,Entire home/apt,225,3,3,2.5,1,68 +46142,1788010,Manhattan,Upper West Side,40.77198,-73.98931,Entire home/apt,220,30,0,,1,31 +46143,224489730,Manhattan,Chelsea,40.745059999999995,-73.99935,Entire home/apt,154,30,0,,2,0 +46144,32207206,Brooklyn,Bushwick,40.700340000000004,-73.92869,Private room,98,2,2,2.0,1,55 +46145,264495166,Manhattan,Morningside Heights,40.8019,-73.95924000000001,Private room,210,1,1,1.0,3,86 +46146,2429094,Manhattan,Upper East Side,40.76063,-73.95938000000001,Entire home/apt,140,3,1,1.0,1,0 +46147,84260385,Queens,Corona,40.73505,-73.86144,Private room,70,1,0,,1,179 +46148,79723533,Brooklyn,Williamsburg,40.70552,-73.94223000000001,Private room,52,3,3,3.0,1,68 +46149,260383802,Manhattan,Hell's Kitchen,40.75526,-73.99876,Entire home/apt,295,3,5,4.29,1,204 +46150,264516826,Manhattan,Upper West Side,40.78373,-73.97182,Entire home/apt,339,3,4,4.0,1,304 +46151,16424639,Manhattan,Inwood,40.86353,-73.92349,Entire home/apt,87,4,1,1.0,1,13 +46152,120169401,Queens,Holliswood,40.72343,-73.77435,Private room,100,1,0,,1,0 +46153,31121418,Brooklyn,Bedford-Stuyvesant,40.69636,-73.94638,Entire home/apt,160,7,0,,1,56 +46154,264527995,Queens,Long Island City,40.7609,-73.93203000000001,Entire home/apt,250,3,1,1.0,1,164 +46155,20539689,Manhattan,Washington Heights,40.84709,-73.93525,Private room,65,10,0,,1,229 +46156,35491006,Manhattan,Harlem,40.8305,-73.94824,Entire home/apt,135,4,1,1.0,1,0 +46157,997334,Brooklyn,Williamsburg,40.71516,-73.94754,Entire home/apt,300,2,2,2.0,1,77 +46158,13583451,Brooklyn,Prospect-Lefferts Gardens,40.6573,-73.96134,Entire home/apt,94,4,1,0.88,1,7 +46159,187544628,Manhattan,Hell's Kitchen,40.76142,-73.99431,Entire home/apt,390,3,1,1.0,1,5 +46160,124902025,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.95777,Private room,50,3,0,,1,92 +46161,260383546,Manhattan,Hell's Kitchen,40.76024,-74.00046,Entire home/apt,450,3,6,6.0,1,226 +46162,256437293,Manhattan,Chelsea,40.750479999999996,-74.00281,Entire home/apt,289,3,2,2.0,1,129 +46163,118715803,Manhattan,Lower East Side,40.72059,-73.985,Entire home/apt,175,6,0,,1,0 +46164,223833249,Manhattan,Hell's Kitchen,40.76277,-73.99594,Entire home/apt,300,3,3,3.0,1,325 +46165,264568970,Manhattan,Midtown,40.76449,-73.98445,Entire home/apt,400,2,0,,1,47 +46166,264569855,Brooklyn,Sunset Park,40.648990000000005,-74.0125,Shared room,30,1,4,4.0,1,342 +46167,14518163,Brooklyn,South Slope,40.66154,-73.98685,Private room,49,3,2,1.62,1,30 +46168,255432077,Manhattan,Upper East Side,40.76102,-73.96431,Entire home/apt,210,5,3,3.0,1,136 +46169,2582255,Brooklyn,Fort Greene,40.68855,-73.97282,Entire home/apt,150,3,4,4.0,1,15 +46170,34880938,Queens,Jamaica,40.70642,-73.78298000000001,Private room,40,2,4,3.64,1,55 +46171,70715527,Manhattan,Upper West Side,40.77367,-73.98879000000001,Entire home/apt,191,1,2,2.0,1,10 +46172,11742777,Brooklyn,Fort Greene,40.68647,-73.96959,Entire home/apt,550,2,1,1.0,1,43 +46173,86210707,Brooklyn,Greenpoint,40.728590000000004,-73.95905,Entire home/apt,110,2,2,2.0,1,0 +46174,30532557,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92694,Private room,39,30,0,,5,247 +46175,61162003,Brooklyn,Columbia St,40.684459999999994,-74.00142,Entire home/apt,250,3,1,1.0,1,13 +46176,263539175,Brooklyn,Greenpoint,40.734790000000004,-73.95224,Entire home/apt,225,1,6,4.86,1,177 +46177,91646104,Queens,Woodside,40.74237,-73.91112,Private room,65,3,0,,3,65 +46178,64024615,Manhattan,Midtown,40.75871,-73.96948,Entire home/apt,235,2,4,4.0,1,171 +46179,264618293,Bronx,Fieldston,40.897009999999995,-73.89778000000001,Entire home/apt,109,2,1,1.0,1,192 +46180,185396542,Manhattan,Midtown,40.7534,-73.97283,Private room,300,5,0,,1,6 +46181,60136891,Manhattan,Upper West Side,40.785779999999995,-73.97678,Entire home/apt,590,7,0,,1,38 +46182,264458360,Manhattan,Hell's Kitchen,40.76127,-73.99234,Entire home/apt,171,3,6,5.29,1,0 +46183,52071286,Manhattan,Chelsea,40.73847,-73.99835,Entire home/apt,249,2,6,6.0,1,225 +46184,107915864,Queens,Howard Beach,40.66799,-73.85135,Private room,65,1,16,11.71,4,295 +46185,107915864,Queens,Howard Beach,40.66635,-73.85258,Private room,49,1,3,2.14,4,329 +46186,129936757,Queens,Ditmars Steinway,40.77377,-73.89837,Private room,100,1,0,,1,343 +46187,2065662,Queens,Arverne,40.5875,-73.79427,Entire home/apt,96,2,4,4.0,1,9 +46188,27831147,Manhattan,Lower East Side,40.7154,-73.98301,Entire home/apt,585,2,1,1.0,1,97 +46189,210191736,Brooklyn,Bushwick,40.695209999999996,-73.92011,Private room,40,1,3,2.31,1,0 +46190,223087887,Queens,Corona,40.74132,-73.86683000000001,Shared room,25,2,1,1.0,8,346 +46191,223087887,Queens,Corona,40.74255,-73.86659,Shared room,29,1,1,1.0,8,343 +46192,264706625,Manhattan,Harlem,40.82693,-73.95142,Entire home/apt,80,60,0,,1,311 +46193,115771987,Manhattan,Financial District,40.70751,-74.01025,Entire home/apt,200,30,0,,6,292 +46194,264689880,Brooklyn,Vinegar Hill,40.70344,-73.9839,Entire home/apt,350,3,0,,1,51 +46195,223087887,Queens,Corona,40.74119,-73.86748,Shared room,25,1,2,2.0,8,351 +46196,34667377,Brooklyn,Williamsburg,40.711240000000004,-73.96069,Private room,75,2,5,4.69,1,72 +46197,264728394,Manhattan,SoHo,40.72363,-73.99831999999999,Entire home/apt,350,4,4,3.64,1,135 +46198,264744190,Manhattan,Upper East Side,40.77585,-73.95881,Entire home/apt,179,3,4,4.0,1,138 +46199,200182757,Brooklyn,Bushwick,40.70685,-73.92149,Private room,50,4,3,2.5,2,5 +46200,264746707,Queens,Cambria Heights,40.68959,-73.73733,Entire home/apt,160,2,5,4.17,1,151 +46201,36938850,Manhattan,Hell's Kitchen,40.76591,-73.99155,Entire home/apt,150,30,1,1.0,1,15 +46202,53298578,Manhattan,East Harlem,40.788340000000005,-73.94781,Entire home/apt,99,30,0,,1,265 +46203,263740985,Queens,Flushing,40.75419,-73.83081999999999,Private room,80,1,0,,3,363 +46204,46231814,Manhattan,East Village,40.72612,-73.98946,Private room,110,3,0,,3,12 +46205,231281049,Manhattan,Midtown,40.76593,-73.98087,Private room,399,1,3,3.0,4,0 +46206,258742885,Manhattan,Hell's Kitchen,40.7622,-73.99625,Entire home/apt,425,3,5,5.0,1,0 +46207,147810492,Manhattan,Hell's Kitchen,40.761829999999996,-73.9916,Entire home/apt,250,2,3,3.0,1,212 +46208,231281049,Manhattan,Midtown,40.76386,-73.98222,Private room,399,1,2,2.0,4,356 +46209,231281049,Manhattan,Midtown,40.7655,-73.98236999999999,Private room,399,1,1,1.0,4,346 +46210,231281049,Manhattan,Midtown,40.7642,-73.98035,Private room,399,1,6,6.0,4,346 +46211,264758587,Brooklyn,Williamsburg,40.71986,-73.95891,Entire home/apt,500,3,3,2.37,1,353 +46212,264761028,Manhattan,West Village,40.73128,-74.00475,Entire home/apt,179,3,5,5.0,1,164 +46213,46389451,Manhattan,Chelsea,40.745459999999994,-73.99099,Entire home/apt,299,3,0,,3,140 +46214,219517861,Manhattan,Financial District,40.7079,-74.00491,Entire home/apt,124,29,0,,327,344 +46215,219517861,Manhattan,Financial District,40.70797,-74.00534,Entire home/apt,124,29,0,,327,354 +46216,158501551,Manhattan,Hell's Kitchen,40.7632,-73.98711999999999,Entire home/apt,420,3,2,2.0,1,270 +46217,225608965,Manhattan,Lower East Side,40.7172,-73.9889,Entire home/apt,109,4,0,,1,2 +46218,226410657,Brooklyn,Bedford-Stuyvesant,40.68734,-73.93255,Private room,42,30,0,,27,248 +46219,264769862,Manhattan,Upper East Side,40.772420000000004,-73.95452,Entire home/apt,279,3,5,5.0,1,138 +46220,226410657,Brooklyn,Bedford-Stuyvesant,40.68739,-73.93208,Private room,42,30,0,,27,0 +46221,264774047,Brooklyn,Fort Greene,40.68495,-73.97039000000001,Private room,125,2,1,1.0,1,87 +46222,222549093,Manhattan,Harlem,40.81557,-73.95702,Private room,60,5,0,,3,21 +46223,226410657,Brooklyn,Bedford-Stuyvesant,40.68717,-73.93113000000001,Private room,42,30,0,,27,249 +46224,25136124,Manhattan,Upper West Side,40.78373,-73.97321,Entire home/apt,150,1,7,7.0,1,2 +46225,59188298,Brooklyn,Williamsburg,40.71118,-73.94561,Private room,75,2,0,,1,144 +46226,264786463,Manhattan,Upper East Side,40.77625,-73.9558,Entire home/apt,229,3,3,3.0,1,150 +46227,263740985,Queens,Flushing,40.757459999999995,-73.83069,Private room,110,1,0,,3,358 +46228,157011614,Brooklyn,Cypress Hills,40.68254,-73.88724,Entire home/apt,99,1,2,1.58,1,145 +46229,264797492,Brooklyn,East Flatbush,40.63344,-73.94068,Entire home/apt,86,1,2,1.58,1,360 +46230,264798401,Queens,Rego Park,40.73213,-73.85717,Private room,90,7,1,1.0,1,365 +46231,25810180,Brooklyn,Flatbush,40.651759999999996,-73.95458,Private room,46,3,0,,1,9 +46232,120464331,Manhattan,East Harlem,40.794959999999996,-73.94838,Entire home/apt,140,2,4,3.64,1,79 +46233,5597411,Brooklyn,Kensington,40.6358,-73.97126999999999,Entire home/apt,99,14,0,,2,33 +46234,264776021,Manhattan,Chelsea,40.73863,-73.99965,Entire home/apt,499,2,1,1.0,1,115 +46235,4765305,Manhattan,East Village,40.72291,-73.98447,Private room,125,2,1,1.0,4,338 +46236,264811416,Queens,St. Albans,40.69464,-73.75184,Entire home/apt,47,3,0,,1,3 +46237,30054890,Brooklyn,Williamsburg,40.70706,-73.95048,Private room,60,3,2,2.0,2,0 +46238,264814648,Brooklyn,Bedford-Stuyvesant,40.68005,-73.94660999999999,Entire home/apt,110,3,3,2.65,1,227 +46239,55601522,Brooklyn,Bedford-Stuyvesant,40.67948,-73.94388000000001,Private room,50,2,0,,1,31 +46240,124040560,Brooklyn,Windsor Terrace,40.65039,-73.97254000000001,Private room,66,1,1,1.0,1,0 +46241,16590533,Queens,Ditmars Steinway,40.77122,-73.90944,Entire home/apt,130,2,2,2.0,1,26 +46242,16830841,Manhattan,Midtown,40.76401,-73.98051,Private room,365,1,1,1.0,5,342 +46243,264773781,Manhattan,East Village,40.7228,-73.98035,Entire home/apt,319,2,1,1.0,1,163 +46244,264824216,Manhattan,Harlem,40.821870000000004,-73.95562,Private room,57,1,2,1.71,3,54 +46245,42261215,Manhattan,SoHo,40.7245,-74.00444,Private room,150,4,0,,1,42 +46246,76583399,Staten Island,Arrochar,40.59125,-74.08046999999999,Entire home/apt,195,3,1,1.0,1,119 +46247,92899052,Manhattan,East Village,40.72725,-73.98549,Entire home/apt,120,17,0,,1,21 +46248,27562515,Manhattan,Harlem,40.81024,-73.94362,Entire home/apt,99,2,0,,1,18 +46249,264837278,Manhattan,Chelsea,40.75055,-73.99237,Entire home/apt,500,3,4,4.0,1,313 +46250,264840662,Bronx,Morrisania,40.82888,-73.9045,Private room,70,2,1,1.0,1,90 +46251,264823783,Manhattan,Harlem,40.819790000000005,-73.95297,Private room,55,7,3,2.81,2,182 +46252,158059664,Manhattan,Tribeca,40.71306,-74.00836,Entire home/apt,600,1,2,2.0,1,80 +46253,157331617,Queens,Howard Beach,40.66299,-73.85491,Entire home/apt,150,3,1,1.0,1,78 +46254,83040886,Brooklyn,Williamsburg,40.70483,-73.93426,Private room,100,5,0,,1,43 +46255,220574429,Manhattan,Chelsea,40.74566,-73.99091999999999,Private room,120,21,2,1.54,3,332 +46256,229492192,Manhattan,Midtown,40.760220000000004,-73.96607,Entire home/apt,229,1,2,1.62,1,356 +46257,24952041,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95235,Private room,67,30,0,,1,43 +46258,220574429,Manhattan,Flatiron District,40.744209999999995,-73.99093,Private room,125,21,1,0.79,3,70 +46259,44785902,Manhattan,East Harlem,40.80173,-73.93347,Private room,100,5,0,,1,0 +46260,264854526,Queens,East Elmhurst,40.75829,-73.88013000000001,Private room,55,1,12,9.73,1,0 +46261,158635893,Manhattan,Hell's Kitchen,40.763659999999994,-73.9888,Entire home/apt,209,1,4,3.43,1,177 +46262,53044777,Queens,Long Island City,40.742979999999996,-73.95804,Entire home/apt,290,5,0,,1,270 +46263,264862581,Queens,Rosedale,40.68205,-73.72581,Private room,75,1,2,2.0,3,90 +46264,24674100,Manhattan,Kips Bay,40.74221,-73.97997,Entire home/apt,100,25,0,,1,54 +46265,30509656,Bronx,Port Morris,40.808279999999996,-73.9319,Shared room,28,1,2,2.0,8,88 +46266,195028276,Bronx,Claremont Village,40.83466,-73.90278,Private room,100,3,0,,1,365 +46267,264873774,Brooklyn,Greenpoint,40.727920000000005,-73.9591,Entire home/apt,250,10,0,,1,155 +46268,30509656,Bronx,Port Morris,40.808440000000004,-73.9316,Shared room,60,1,0,,8,89 +46269,182989977,Brooklyn,East Flatbush,40.65406,-73.94011,Private room,89,3,0,,5,365 +46270,182989977,Brooklyn,East Flatbush,40.6541,-73.93834,Private room,69,3,0,,5,365 +46271,182989977,Brooklyn,East Flatbush,40.65551,-73.93942,Private room,79,3,0,,5,365 +46272,260496218,Queens,Bellerose,40.731759999999994,-73.73872,Private room,60,1,0,,2,157 +46273,264693056,Manhattan,Hell's Kitchen,40.755179999999996,-73.99904000000001,Entire home/apt,210,3,2,1.58,1,73 +46274,10593026,Manhattan,Upper East Side,40.77134,-73.94832,Entire home/apt,170,2,1,1.0,1,88 +46275,115771987,Manhattan,Financial District,40.7069,-74.0092,Entire home/apt,227,30,0,,6,332 +46276,264934283,Brooklyn,Windsor Terrace,40.65957,-73.98376,Entire home/apt,450,3,3,3.0,2,302 +46277,246623234,Brooklyn,Prospect-Lefferts Gardens,40.66232,-73.95251,Private room,51,2,1,1.0,1,0 +46278,127805063,Manhattan,Midtown,40.75778,-73.96186,Entire home/apt,500,4,0,,2,302 +46279,65610,Brooklyn,Williamsburg,40.71611,-73.95616,Entire home/apt,175,30,0,,1,320 +46280,8187861,Bronx,Concourse,40.82788,-73.92604,Entire home/apt,88,3,3,3.0,1,241 +46281,5453550,Brooklyn,Bedford-Stuyvesant,40.693940000000005,-73.95693,Entire home/apt,500,30,0,,3,141 +46282,264934283,Brooklyn,South Slope,40.6611,-73.98446,Entire home/apt,165,3,2,2.0,2,346 +46283,63866600,Brooklyn,Bay Ridge,40.62937,-74.03001,Private room,100,1,6,6.0,3,365 +46284,49132405,Manhattan,East Harlem,40.79908,-73.93290999999999,Private room,140,2,1,1.0,1,21 +46285,73124477,Brooklyn,Crown Heights,40.674929999999996,-73.94081,Entire home/apt,80,5,0,,2,0 +46286,264963423,Brooklyn,South Slope,40.66956,-73.98921999999999,Entire home/apt,195,2,4,4.0,1,345 +46287,205909,Manhattan,Chelsea,40.74042,-73.99883,Entire home/apt,225,1,0,,1,228 +46288,227818501,Bronx,Williamsbridge,40.87846,-73.86310999999999,Entire home/apt,140,2,4,4.0,2,358 +46289,264965107,Manhattan,Kips Bay,40.742,-73.98154,Entire home/apt,131,2,2,2.0,1,11 +46290,80003178,Manhattan,Hell's Kitchen,40.76433,-73.98931999999999,Entire home/apt,163,1,3,3.0,1,155 +46291,151937146,Manhattan,West Village,40.73705,-74.00966,Entire home/apt,995,1,3,3.0,1,344 +46292,264975454,Brooklyn,Bushwick,40.698570000000004,-73.9261,Entire home/apt,275,3,3,3.0,1,351 +46293,128300825,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92915,Private room,70,3,0,,2,43 +46294,258213198,Brooklyn,Bushwick,40.686820000000004,-73.90831,Private room,70,1,3,3.0,1,163 +46295,264708433,Manhattan,East Village,40.726079999999996,-73.98161,Entire home/apt,348,3,5,4.41,1,26 +46296,220845471,Brooklyn,Bushwick,40.70117,-73.91755,Private room,60,1,2,1.67,1,0 +46297,262033253,Brooklyn,Bushwick,40.68675,-73.90899999999999,Private room,60,1,3,3.0,2,178 +46298,26620387,Brooklyn,Park Slope,40.66737,-73.9747,Entire home/apt,945,4,0,,1,19 +46299,262033253,Brooklyn,Bushwick,40.687470000000005,-73.90977,Private room,70,1,2,2.0,2,172 +46300,264983168,Brooklyn,Bedford-Stuyvesant,40.683659999999996,-73.9192,Entire home/apt,159,2,1,1.0,1,341 +46301,22630533,Manhattan,Harlem,40.81675,-73.93696,Private room,159,3,0,,1,87 +46302,56341179,Manhattan,Upper East Side,40.767379999999996,-73.95555999999999,Entire home/apt,125,31,0,,1,280 +46303,132699715,Manhattan,Hell's Kitchen,40.76645,-73.99101,Entire home/apt,200,1,2,2.0,1,81 +46304,226410657,Brooklyn,Bedford-Stuyvesant,40.68777,-73.93066999999999,Private room,42,30,0,,27,250 +46305,264990100,Brooklyn,Crown Heights,40.665659999999995,-73.93281999999999,Entire home/apt,395,3,1,1.0,1,301 +46306,226410657,Brooklyn,Bedford-Stuyvesant,40.68778,-73.9319,Private room,42,30,0,,27,240 +46307,5708821,Manhattan,Hell's Kitchen,40.76157,-73.99278000000001,Entire home/apt,150,1,4,4.0,1,16 +46308,226410657,Brooklyn,Bedford-Stuyvesant,40.687529999999995,-73.93072,Entire home/apt,208,30,0,,27,239 +46309,253969143,Queens,Elmhurst,40.74283,-73.88899,Private room,110,2,0,,1,179 +46310,61391963,Manhattan,Upper East Side,40.77957,-73.95475,Entire home/apt,142,30,0,,91,245 +46311,241258373,Manhattan,Harlem,40.80346,-73.95702,Entire home/apt,198,2,2,1.58,2,154 +46312,201074848,Manhattan,East Village,40.72702,-73.9798,Entire home/apt,165,4,2,2.0,1,0 +46313,220447646,Manhattan,Hell's Kitchen,40.76235,-73.99485,Entire home/apt,500,3,3,3.0,1,328 +46314,264514482,Brooklyn,Bushwick,40.7005,-73.92412,Entire home/apt,100,4,0,,1,5 +46315,248731701,Queens,Bayside,40.75982,-73.78312,Private room,130,5,0,,1,177 +46316,1461161,Manhattan,Murray Hill,40.744240000000005,-73.9733,Entire home/apt,500,4,6,5.62,1,138 +46317,17151691,Brooklyn,Clinton Hill,40.69143,-73.968,Entire home/apt,110,4,0,,1,0 +46318,126415353,Manhattan,Harlem,40.81393,-73.94365,Private room,35,2,0,,1,124 +46319,265029608,Manhattan,East Harlem,40.799009999999996,-73.94334,Entire home/apt,319,2,2,1.87,1,138 +46320,265034334,Manhattan,Hell's Kitchen,40.7555,-73.99399,Entire home/apt,150,7,2,2.0,1,61 +46321,244131674,Manhattan,Chelsea,40.749,-74.00244,Entire home/apt,300,2,3,3.0,1,365 +46322,187671321,Manhattan,Harlem,40.81868,-73.94417,Entire home/apt,295,2,1,1.0,1,123 +46323,118013873,Manhattan,Upper West Side,40.80103,-73.9706,Entire home/apt,150,6,2,2.0,1,69 +46324,265020897,Brooklyn,Bushwick,40.7004,-73.92766,Entire home/apt,369,6,1,1.0,2,29 +46325,264824216,Manhattan,Harlem,40.821999999999996,-73.95581999999999,Private room,59,1,1,1.0,3,61 +46326,40436170,Queens,Astoria,40.76728,-73.90781,Entire home/apt,95,1,5,5.0,1,65 +46327,228132014,Manhattan,Lower East Side,40.718140000000005,-73.98357,Private room,74,2,0,,1,0 +46328,241258373,Manhattan,Harlem,40.801759999999994,-73.95663,Private room,100,1,0,,2,39 +46329,263883589,Brooklyn,Boerum Hill,40.68906,-73.98983,Entire home/apt,329,30,1,1.0,2,63 +46330,265043054,Queens,Jamaica,40.67289,-73.76699,Entire home/apt,100,1,4,4.0,1,78 +46331,257586719,Brooklyn,Bath Beach,40.605509999999995,-74.00129,Private room,100,1,2,2.0,1,90 +46332,195389383,Manhattan,Chelsea,40.743179999999995,-73.99987,Entire home/apt,444,1,2,2.0,1,325 +46333,131083549,Manhattan,Greenwich Village,40.73359,-73.99772,Entire home/apt,250,3,2,2.0,1,32 +46334,121851703,Queens,Queens Village,40.72048,-73.73478,Entire home/apt,150,2,4,4.0,2,19 +46335,201813482,Brooklyn,Bushwick,40.70513,-73.91575999999999,Shared room,25,4,0,,5,340 +46336,24643940,Brooklyn,Williamsburg,40.70726,-73.96656999999999,Entire home/apt,550,2,2,2.0,1,81 +46337,125320407,Queens,Far Rockaway,40.59636,-73.7413,Entire home/apt,900,2,0,,5,365 +46338,63790926,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93494,Private room,50,1,4,3.75,1,349 +46339,201813482,Brooklyn,Bushwick,40.70508,-73.91577,Shared room,25,4,0,,5,346 +46340,7305915,Brooklyn,Fort Greene,40.69447,-73.97296,Entire home/apt,220,6,0,,1,43 +46341,247795760,Manhattan,Hell's Kitchen,40.76312,-73.99394000000001,Entire home/apt,200,2,6,5.45,1,151 +46342,78201197,Manhattan,East Harlem,40.7923,-73.94613000000001,Entire home/apt,250,2,4,3.75,1,44 +46343,127805063,Manhattan,Midtown,40.75803,-73.96224000000001,Entire home/apt,350,30,0,,2,283 +46344,204537864,Manhattan,Hell's Kitchen,40.76097,-73.99973,Entire home/apt,375,2,1,1.0,1,45 +46345,202805108,Manhattan,Hell's Kitchen,40.76028,-73.99665,Entire home/apt,395,3,3,3.0,1,102 +46346,263707859,Manhattan,East Village,40.72404,-73.98219,Entire home/apt,150,2,0,,1,0 +46347,260156883,Manhattan,Financial District,40.71083,-74.00803,Entire home/apt,280,3,3,3.0,1,199 +46348,258441018,Bronx,Claremont Village,40.84268,-73.91006999999999,Private room,40,1,0,,1,188 +46349,265171569,Brooklyn,Bedford-Stuyvesant,40.68882,-73.94784,Entire home/apt,300,3,1,1.0,1,282 +46350,50591290,Manhattan,East Village,40.72842,-73.98097,Entire home/apt,225,1,2,2.0,1,344 +46351,41471153,Queens,Long Island City,40.7646,-73.93085,Private room,58,2,0,,1,133 +46352,264824216,Manhattan,Harlem,40.82136,-73.95606,Private room,59,1,2,2.0,3,41 +46353,13715158,Brooklyn,Crown Heights,40.67542,-73.9495,Private room,45,4,2,2.0,1,3 +46354,246272839,Queens,Flushing,40.765,-73.81875,Entire home/apt,96,1,12,10.91,4,159 +46355,265188674,Brooklyn,Crown Heights,40.66819,-73.93783,Entire home/apt,275,2,2,2.0,1,356 +46356,265192385,Manhattan,Hell's Kitchen,40.759170000000005,-73.99785,Entire home/apt,305,2,4,4.0,1,44 +46357,17950129,Brooklyn,Williamsburg,40.7192,-73.94354,Private room,71,6,1,1.0,1,20 +46358,5752329,Manhattan,Midtown,40.75258,-73.99311,Private room,90,1,9,7.11,1,0 +46359,161906388,Queens,Woodhaven,40.687940000000005,-73.85566,Private room,45,1,4,4.0,1,3 +46360,203946076,Brooklyn,Williamsburg,40.71651,-73.94213,Entire home/apt,50,3,2,2.0,1,152 +46361,98841235,Manhattan,Harlem,40.82128,-73.93909000000001,Entire home/apt,114,1,2,2.0,1,104 +46362,265200119,Queens,Maspeth,40.73802,-73.9009,Entire home/apt,100,31,0,,1,322 +46363,7780845,Brooklyn,Bushwick,40.70098,-73.9193,Entire home/apt,120,3,0,,3,77 +46364,67665882,Brooklyn,Bedford-Stuyvesant,40.67903,-73.94183000000001,Private room,130,10,0,,1,0 +46365,259776956,Brooklyn,Canarsie,40.62903,-73.89761999999999,Private room,110,1,4,4.0,5,365 +46366,23090343,Manhattan,East Village,40.72375,-73.98949,Entire home/apt,175,5,1,1.0,1,8 +46367,265204049,Brooklyn,Crown Heights,40.66765,-73.93928000000001,Entire home/apt,260,2,1,1.0,1,343 +46368,265213112,Brooklyn,Fort Greene,40.68934,-73.96959,Entire home/apt,209,2,3,2.37,1,79 +46369,43099837,Staten Island,Grymes Hill,40.61569,-74.08957,Entire home/apt,125,2,1,1.0,1,44 +46370,94092661,Manhattan,Theater District,40.76187,-73.98599,Entire home/apt,249,1,3,3.0,1,127 +46371,163421878,Queens,Sunnyside,40.7439,-73.91409,Private room,55,1,1,0.81,3,302 +46372,38005727,Manhattan,Lower East Side,40.71929,-73.98826,Private room,130,1,0,,1,0 +46373,6465781,Brooklyn,Williamsburg,40.71151,-73.95936999999999,Entire home/apt,490,1,1,1.0,2,1 +46374,43283271,Brooklyn,Bushwick,40.701370000000004,-73.92028,Private room,45,2,1,1.0,1,1 +46375,120297125,Queens,Rosedale,40.65101,-73.73721,Private room,60,1,0,,1,180 +46376,11065010,Manhattan,Chelsea,40.741170000000004,-73.99951,Entire home/apt,300,4,0,,1,16 +46377,23753533,Manhattan,Upper West Side,40.78192,-73.97959,Entire home/apt,900,3,1,1.0,1,57 +46378,15313500,Brooklyn,Williamsburg,40.715340000000005,-73.95692,Entire home/apt,225,1,2,2.0,1,71 +46379,98442821,Manhattan,East Village,40.7267,-73.97965,Entire home/apt,205,1,1,0.81,1,349 +46380,153458126,Manhattan,Murray Hill,40.74791,-73.97957,Entire home/apt,400,1,0,,2,365 +46381,191119982,Manhattan,Upper West Side,40.77101,-73.98940999999999,Entire home/apt,360,2,5,4.29,1,94 +46382,153458126,Manhattan,Murray Hill,40.74682,-73.97983,Entire home/apt,307,1,0,,2,364 +46383,215430503,Manhattan,Chelsea,40.75393,-73.99991999999999,Entire home/apt,199,1,0,,1,362 +46384,228545931,Manhattan,Upper East Side,40.76768,-73.95455,Entire home/apt,320,2,1,1.0,1,57 +46385,253906467,Manhattan,Hell's Kitchen,40.76578,-73.99101,Shared room,85,1,6,5.62,9,175 +46386,41484943,Brooklyn,Kensington,40.635059999999996,-73.9744,Private room,55,1,2,2.0,2,18 +46387,264970269,Manhattan,Hell's Kitchen,40.76272,-73.99054,Entire home/apt,189,1,4,4.0,1,156 +46388,135223584,Manhattan,Hell's Kitchen,40.75654,-73.99425,Entire home/apt,920,1,0,,1,180 +46389,109533480,Manhattan,East Village,40.72803,-73.98111999999999,Entire home/apt,500,1,1,1.0,1,365 +46390,60113180,Manhattan,Kips Bay,40.74442,-73.98047,Entire home/apt,225,1,1,1.0,1,221 +46391,224867349,Manhattan,Kips Bay,40.74094,-73.9799,Entire home/apt,400,3,3,2.81,1,261 +46392,70490424,Manhattan,Chelsea,40.753479999999996,-73.9986,Entire home/apt,900,1,2,2.0,1,360 +46393,135596644,Manhattan,East Village,40.73258,-73.98648,Entire home/apt,225,2,0,,1,310 +46394,14332697,Brooklyn,Bushwick,40.70078,-73.92803,Private room,89,6,1,1.0,1,27 +46395,218612882,Manhattan,Hell's Kitchen,40.76169,-73.9907,Entire home/apt,170,1,5,5.0,1,26 +46396,15574,Queens,Long Island City,40.75367,-73.9289,Private room,65,5,1,1.0,1,49 +46397,153568512,Manhattan,Hell's Kitchen,40.75748,-73.99476999999999,Entire home/apt,800,1,0,,1,360 +46398,28357796,Manhattan,Chelsea,40.75347,-73.99883,Entire home/apt,210,1,0,,1,337 +46399,265273671,Bronx,Parkchester,40.83898,-73.86492,Shared room,55,1,0,,1,364 +46400,89161588,Manhattan,East Village,40.72697,-73.9805,Private room,390,1,0,,1,365 +46401,264142178,Queens,Long Island City,40.76383,-73.9297,Entire home/apt,275,1,3,3.0,1,339 +46402,164704496,Manhattan,West Village,40.73591,-74.0101,Entire home/apt,750,1,0,,1,365 +46403,159357000,Manhattan,Murray Hill,40.74814,-73.97955,Entire home/apt,450,1,0,,1,215 +46404,265273935,Brooklyn,Crown Heights,40.67385,-73.92071,Entire home/apt,295,3,3,3.0,1,356 +46405,265277264,Queens,Astoria,40.75813,-73.92152,Private room,50,1,2,2.0,1,341 +46406,211018651,Manhattan,Hell's Kitchen,40.75501,-73.99376,Entire home/apt,930,1,0,,1,360 +46407,265280713,Brooklyn,Williamsburg,40.706959999999995,-73.94377,Private room,75,1,3,2.65,1,0 +46408,219333557,Queens,East Elmhurst,40.76251,-73.86721999999999,Private room,49,1,3,3.0,7,0 +46409,138782186,Queens,Rosedale,40.65902,-73.73783,Private room,70,1,0,,2,365 +46410,72112652,Manhattan,Financial District,40.70473,-74.01581999999999,Private room,90,2,1,1.0,2,5 +46411,264950723,Manhattan,Midtown,40.75287,-73.98631,Entire home/apt,350,4,1,1.0,1,2 +46412,146858939,Brooklyn,Cobble Hill,40.69041,-73.99776999999999,Entire home/apt,599,1,2,2.0,1,39 +46413,265288059,Queens,Corona,40.73611,-73.86401,Private room,36,1,2,1.76,2,62 +46414,96659533,Brooklyn,Bushwick,40.69447,-73.91364,Private room,70,2,5,4.17,2,301 +46415,265288059,Queens,Corona,40.7363,-73.86316,Private room,36,1,5,3.85,2,337 +46416,263721921,Queens,Flushing,40.75728,-73.80072,Private room,70,2,2,1.58,1,315 +46417,265289882,Manhattan,Chelsea,40.746140000000004,-74.00168000000001,Private room,150,5,0,,1,79 +46418,200239515,Queens,Woodside,40.74239,-73.89454,Private room,35,29,0,,15,5 +46419,200239515,Queens,Woodside,40.74258,-73.89315,Private room,40,30,0,,15,40 +46420,7982677,Brooklyn,Williamsburg,40.71419,-73.95966999999999,Entire home/apt,230,2,1,1.0,1,15 +46421,263266237,Bronx,Allerton,40.86871,-73.8474,Private room,40,2,0,,4,90 +46422,264489766,Manhattan,Midtown,40.75392,-73.96862,Entire home/apt,459,2,0,,1,136 +46423,59268420,Manhattan,Morningside Heights,40.8127,-73.96163,Private room,100,1,1,0.81,1,365 +46424,76273640,Brooklyn,Williamsburg,40.70478,-73.93851,Private room,95,7,1,1.0,1,97 +46425,265322739,Bronx,Wakefield,40.89147,-73.84747,Entire home/apt,196,2,0,,1,173 +46426,9224491,Manhattan,East Village,40.72685,-73.98349,Entire home/apt,110,30,0,,1,0 +46427,265169106,Manhattan,Harlem,40.80618,-73.94618,Entire home/apt,179,2,3,3.0,1,187 +46428,265271198,Manhattan,Hell's Kitchen,40.76495,-73.98784,Entire home/apt,330,1,13,10.54,1,164 +46429,48770990,Manhattan,East Village,40.729929999999996,-73.98319000000001,Private room,78,15,0,,1,22 +46430,265248832,Manhattan,Greenwich Village,40.72757,-74.00059,Entire home/apt,349,2,2,2.0,1,186 +46431,264809787,Bronx,Concourse Village,40.82778,-73.91516,Entire home/apt,75,3,2,2.0,1,253 +46432,182410092,Manhattan,Hell's Kitchen,40.76605,-73.99193000000001,Entire home/apt,700,2,0,,1,304 +46433,10284594,Brooklyn,Bedford-Stuyvesant,40.685590000000005,-73.95478,Private room,38,30,0,,1,1 +46434,265020897,Brooklyn,Bushwick,40.70149,-73.92768000000001,Entire home/apt,177,7,0,,2,55 +46435,126538085,Queens,Astoria,40.76542,-73.92607,Entire home/apt,140,7,1,1.0,1,82 +46436,25161307,Manhattan,East Harlem,40.79523,-73.94955999999999,Private room,50,14,0,,1,0 +46437,248880851,Queens,Rockaway Beach,40.58485,-73.81482,Entire home/apt,200,2,2,2.0,1,152 +46438,135838665,Manhattan,Flatiron District,40.73927,-73.98774,Entire home/apt,950,1,0,,1,365 +46439,184520918,Manhattan,Chelsea,40.74575,-74.01052,Entire home/apt,332,1,0,,1,361 +46440,210956993,Manhattan,Murray Hill,40.74832,-73.98125999999999,Entire home/apt,416,1,0,,1,365 +46441,24027781,Queens,Long Island City,40.748540000000006,-73.94908000000001,Private room,75,20,0,,2,66 +46442,264043510,Queens,Springfield Gardens,40.6624,-73.76348,Private room,60,1,2,2.0,6,179 +46443,256403429,Queens,Glendale,40.70012,-73.89451,Entire home/apt,126,1,0,,5,21 +46444,3199313,Brooklyn,Prospect-Lefferts Gardens,40.664590000000004,-73.96629,Private room,86,2,0,,1,179 +46445,265424495,Manhattan,Harlem,40.80486,-73.94754,Private room,50,1,7,5.83,2,267 +46446,967133,Brooklyn,Bedford-Stuyvesant,40.68213,-73.9538,Private room,75,4,0,,1,38 +46447,264962468,Manhattan,Hell's Kitchen,40.76273,-73.99028,Entire home/apt,255,2,2,2.0,1,55 +46448,39541218,Manhattan,West Village,40.73129,-74.00661,Private room,100,14,3,2.43,1,31 +46449,256544529,Brooklyn,Bedford-Stuyvesant,40.68543,-73.92068,Entire home/apt,170,1,5,5.0,3,237 +46450,236530772,Queens,Jamaica Estates,40.72085,-73.79179,Entire home/apt,65,2,0,,2,19 +46451,76186812,Brooklyn,Bedford-Stuyvesant,40.68027,-73.94358000000001,Private room,59,4,1,1.0,2,15 +46452,262078431,Manhattan,Upper West Side,40.79164,-73.97361,Entire home/apt,169,1,0,,1,22 +46453,24237725,Manhattan,Hell's Kitchen,40.764759999999995,-73.98871,Entire home/apt,145,7,0,,1,5 +46454,264742656,Manhattan,Financial District,40.70912,-74.00671,Entire home/apt,249,3,4,4.0,1,86 +46455,36960740,Manhattan,Nolita,40.72435,-73.99419,Entire home/apt,500,1,0,,1,9 +46456,110001541,Queens,Long Island City,40.748329999999996,-73.93682,Entire home/apt,80,3,1,1.0,1,0 +46457,265466931,Manhattan,Upper East Side,40.766709999999996,-73.95286,Private room,99,10,1,1.0,1,34 +46458,265463203,Brooklyn,Crown Heights,40.67038,-73.92962,Entire home/apt,245,2,1,1.0,3,326 +46459,137872939,Staten Island,Emerson Hill,40.60585,-74.13331,Private room,49,2,0,,1,144 +46460,94422691,Brooklyn,Bushwick,40.696940000000005,-73.90765999999999,Entire home/apt,67,2,1,1.0,1,0 +46461,446512,Manhattan,Washington Heights,40.85457,-73.92778,Private room,66,1,5,4.69,1,130 +46462,265463203,Brooklyn,Crown Heights,40.67132,-73.93003,Entire home/apt,250,2,5,5.0,3,309 +46463,265463203,Brooklyn,Crown Heights,40.671440000000004,-73.93182,Entire home/apt,475,2,0,,3,308 +46464,21153954,Brooklyn,Bedford-Stuyvesant,40.691340000000004,-73.92768000000001,Private room,42,30,0,,1,334 +46465,157834976,Manhattan,Midtown,40.75152,-73.97313,Private room,750,4,0,,1,193 +46466,90817506,Bronx,Mott Haven,40.81203,-73.90779,Private room,50,2,3,3.0,1,8 +46467,28836096,Manhattan,Morningside Heights,40.81494,-73.96041,Private room,109,1,5,4.29,2,148 +46468,48194192,Brooklyn,Clinton Hill,40.693670000000004,-73.96424,Entire home/apt,350,28,0,,4,138 +46469,28836096,Manhattan,Morningside Heights,40.814890000000005,-73.95841999999999,Private room,109,1,10,10.0,2,143 +46470,265499023,Bronx,Mount Hope,40.846070000000005,-73.9071,Private room,55,91,0,,1,364 +46471,265506523,Queens,Astoria,40.756,-73.91589,Private room,80,2,1,1.0,1,87 +46472,81093086,Manhattan,Harlem,40.82155,-73.93927,Private room,50,2,4,3.33,1,0 +46473,265452743,Brooklyn,Cobble Hill,40.688959999999994,-73.99734000000001,Entire home/apt,289,1,5,5.0,1,77 +46474,43902262,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93876999999999,Private room,65,3,0,,1,68 +46475,42316597,Manhattan,Upper East Side,40.761790000000005,-73.96427,Entire home/apt,210,1,1,1.0,1,331 +46476,264296595,Queens,Flushing,40.75926,-73.82641,Shared room,75,1,1,1.0,3,349 +46477,127831150,Brooklyn,Crown Heights,40.67768,-73.94332,Entire home/apt,125,5,1,1.0,2,321 +46478,200239515,Queens,Sunnyside,40.73872,-73.92696,Private room,37,30,0,,15,38 +46479,265065371,Queens,Jamaica,40.67621,-73.78279,Entire home/apt,160,3,0,,1,77 +46480,265420923,Queens,East Elmhurst,40.76774,-73.87358,Private room,70,2,2,1.87,1,266 +46481,265527861,Manhattan,Upper East Side,40.78481,-73.95303,Private room,78,3,0,,1,322 +46482,19303369,Queens,Jackson Heights,40.75049,-73.89368,Private room,50,30,0,,37,0 +46483,19303369,Queens,Woodside,40.74434,-73.90347,Private room,41,30,0,,37,0 +46484,19303369,Queens,Woodside,40.74283,-73.90303,Private room,43,30,0,,37,0 +46485,19303369,Queens,Woodside,40.74615,-73.89953,Private room,33,30,0,,37,0 +46486,19303369,Queens,Elmhurst,40.74171,-73.87645,Private room,33,30,0,,37,0 +46487,19303369,Queens,Elmhurst,40.74066,-73.87755,Private room,32,30,0,,37,0 +46488,265534664,Queens,Long Island City,40.75365,-73.92246999999999,Private room,48,6,0,,1,313 +46489,19303369,Queens,Elmhurst,40.74,-73.87734,Private room,34,30,0,,37,0 +46490,19303369,Queens,Elmhurst,40.74045,-73.87776,Private room,30,30,0,,37,0 +46491,19303369,Queens,Elmhurst,40.73847,-73.8775,Private room,32,30,0,,37,0 +46492,44321906,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93094,Entire home/apt,120,4,1,1.0,1,10 +46493,19303369,Brooklyn,Bedford-Stuyvesant,40.68833,-73.95055,Private room,28,30,0,,37,54 +46494,19303369,Brooklyn,Bedford-Stuyvesant,40.687870000000004,-73.94973,Private room,33,29,0,,37,0 +46495,24027781,Queens,Long Island City,40.74774,-73.94757,Private room,80,2,0,,2,4 +46496,51179270,Brooklyn,Clinton Hill,40.69704,-73.96704,Entire home/apt,78,7,0,,1,17 +46497,265576141,Queens,Rockaway Beach,40.58825,-73.81208000000001,Private room,75,1,2,2.0,1,5 +46498,6057887,Manhattan,Washington Heights,40.84853,-73.93805,Private room,79,4,2,1.87,5,16 +46499,3644678,Brooklyn,Borough Park,40.64184,-73.99101999999999,Private room,30,30,0,,1,251 +46500,196681978,Manhattan,Financial District,40.707359999999994,-74.00965,Entire home/apt,130,30,0,,1,146 +46501,141425524,Manhattan,Greenwich Village,40.73081,-74.00089,Private room,200,7,0,,1,15 +46502,106436589,Brooklyn,Brooklyn Heights,40.69852,-73.99606,Entire home/apt,399,14,0,,2,67 +46503,81295676,Queens,Astoria,40.764109999999995,-73.92076,Private room,55,3,0,,1,43 +46504,10746551,Manhattan,Upper West Side,40.78085,-73.97508,Entire home/apt,153,30,0,,1,38 +46505,264043510,Queens,Springfield Gardens,40.66277,-73.76335999999999,Private room,50,1,2,2.0,6,365 +46506,180368029,Manhattan,Financial District,40.70694,-74.007,Entire home/apt,250,3,10,8.33,1,335 +46507,5153401,Brooklyn,Fort Greene,40.68739,-73.97211999999999,Entire home/apt,160,30,1,1.0,1,86 +46508,24047681,Manhattan,Harlem,40.82512,-73.93817,Private room,80,1,2,2.0,1,356 +46509,228634418,Queens,East Elmhurst,40.75946,-73.89019,Entire home/apt,235,2,10,8.33,1,321 +46510,54481883,Manhattan,Chelsea,40.744690000000006,-74.00535,Entire home/apt,250,4,0,,2,0 +46511,6465781,Brooklyn,Williamsburg,40.71346,-73.95884000000001,Private room,190,2,0,,2,64 +46512,265644639,Brooklyn,Flatbush,40.64224,-73.95824,Private room,52,1,0,,1,70 +46513,220159422,Queens,Ridgewood,40.701609999999995,-73.90484000000001,Private room,42,2,3,2.65,1,0 +46514,265647188,Queens,Long Island City,40.75837,-73.93429,Entire home/apt,250,3,1,1.0,1,353 +46515,265648986,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95893000000001,Entire home/apt,115,4,0,,1,36 +46516,187264773,Queens,East Elmhurst,40.76011,-73.88833000000001,Entire home/apt,149,2,7,5.83,1,341 +46517,118375910,Brooklyn,Bedford-Stuyvesant,40.6821,-73.95279000000001,Private room,80,7,0,,1,0 +46518,265662009,Manhattan,Upper East Side,40.76928,-73.96675,Entire home/apt,250,14,0,,3,344 +46519,265662009,Manhattan,Upper East Side,40.76918,-73.9667,Entire home/apt,225,14,0,,3,340 +46520,258589420,Queens,Richmond Hill,40.68936,-73.83357,Shared room,60,1,4,4.0,7,365 +46521,222077787,Manhattan,Upper East Side,40.76615,-73.95639,Private room,85,1,0,,2,7 +46522,264462124,Brooklyn,Downtown Brooklyn,40.69722,-73.98467,Private room,39,1,0,,1,16 +46523,44021873,Brooklyn,Bedford-Stuyvesant,40.6946,-73.93448000000001,Private room,95,4,2,2.0,1,28 +46524,135563904,Queens,Ridgewood,40.70528,-73.90896,Entire home/apt,350,1,7,7.0,3,64 +46525,119846581,Queens,Sunnyside,40.74338,-73.92191,Entire home/apt,78,2,7,6.56,1,129 +46526,129041590,Manhattan,East Harlem,40.802240000000005,-73.94230999999999,Entire home/apt,382,3,0,,1,22 +46527,132786535,Queens,Middle Village,40.713570000000004,-73.8794,Entire home/apt,124,2,1,1.0,2,161 +46528,265703830,Brooklyn,Bedford-Stuyvesant,40.69423,-73.94627,Private room,150,1,0,,1,365 +46529,166463538,Manhattan,Financial District,40.70785,-74.00645,Shared room,150,1,1,1.0,1,179 +46530,11160340,Manhattan,Harlem,40.802240000000005,-73.95168000000001,Entire home/apt,90,7,0,,2,9 +46531,29731292,Queens,Elmhurst,40.74329,-73.8787,Private room,60,2,2,2.0,1,0 +46532,137191484,Manhattan,Hell's Kitchen,40.764790000000005,-73.98666999999999,Private room,86,1,1,0.88,5,0 +46533,256649546,Manhattan,Chelsea,40.73999,-73.99806,Entire home/apt,2995,30,1,1.0,1,214 +46534,158200817,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.96044,Private room,69,2,1,0.91,2,89 +46535,159593024,Manhattan,Hell's Kitchen,40.7665,-73.98673000000001,Entire home/apt,145,2,1,1.0,1,35 +46536,14034161,Manhattan,Chelsea,40.7455,-73.99714,Entire home/apt,249,4,0,,1,45 +46537,59392167,Queens,Sunnyside,40.74793,-73.92034,Private room,55,4,0,,1,69 +46538,195650078,Manhattan,Hell's Kitchen,40.75949,-73.98825,Entire home/apt,125,3,2,2.0,1,219 +46539,5569222,Manhattan,NoHo,40.72896,-73.99201,Entire home/apt,199,2,3,3.0,1,36 +46540,199466039,Manhattan,Upper East Side,40.77574,-73.95331,Entire home/apt,229,1,1,1.0,3,266 +46541,265812351,Queens,Kew Gardens Hills,40.726079999999996,-73.82038,Entire home/apt,199,1,0,,1,364 +46542,264593697,Manhattan,East Harlem,40.797979999999995,-73.93972,Entire home/apt,50,1,0,,1,16 +46543,4374467,Manhattan,Chelsea,40.74505,-74.00298000000001,Entire home/apt,225,2,0,,1,9 +46544,1678322,Brooklyn,Williamsburg,40.71004,-73.95577,Entire home/apt,180,2,2,1.87,1,23 +46545,114372992,Queens,Long Island City,40.76228,-73.94272,Private room,62,5,2,2.0,1,43 +46546,265621853,Manhattan,Theater District,40.75606,-73.98871,Entire home/apt,480,3,3,3.0,1,265 +46547,471024,Staten Island,St. George,40.639109999999995,-74.08376,Entire home/apt,48,2,0,,1,25 +46548,243540233,Queens,Astoria,40.77545,-73.92704,Entire home/apt,250,5,0,,1,22 +46549,179336958,Manhattan,Midtown,40.74667,-73.98513,Private room,120,3,1,1.0,6,364 +46550,24162718,Queens,Long Island City,40.76043,-73.93104,Entire home/apt,125,3,0,,1,36 +46551,265866685,Brooklyn,Bushwick,40.698879999999996,-73.93075,Entire home/apt,249,7,2,2.0,2,179 +46552,265871484,Manhattan,Hell's Kitchen,40.76457,-73.98796,Entire home/apt,300,1,7,7.0,1,346 +46553,26961393,Brooklyn,Williamsburg,40.715990000000005,-73.96159,Entire home/apt,198,4,3,3.0,1,11 +46554,166208155,Manhattan,Hell's Kitchen,40.76828,-73.98755,Entire home/apt,250,3,3,3.0,1,42 +46555,161829611,Manhattan,Washington Heights,40.8564,-73.92703,Private room,66,1,2,2.0,1,60 +46556,264620263,Manhattan,Hell's Kitchen,40.76235,-73.98995,Entire home/apt,335,3,3,3.0,1,144 +46557,264043510,Queens,Springfield Gardens,40.66199,-73.76345,Private room,95,1,2,2.0,6,365 +46558,263440435,Queens,Astoria,40.7592,-73.92155,Entire home/apt,300,3,3,3.0,1,320 +46559,250765233,Manhattan,Chelsea,40.74972,-73.99655,Entire home/apt,330,3,2,2.0,1,281 +46560,19689128,Brooklyn,Williamsburg,40.71413,-73.93701,Entire home/apt,131,3,2,2.0,1,137 +46561,220865756,Brooklyn,Bay Ridge,40.633309999999994,-74.01975,Private room,99,5,0,,2,37 +46562,265888743,Bronx,Norwood,40.87066,-73.88226999999999,Private room,56,2,0,,1,53 +46563,250767748,Manhattan,Chelsea,40.74625,-74.0,Entire home/apt,305,3,2,2.0,1,242 +46564,150199731,Manhattan,Chelsea,40.74006,-74.00071,Entire home/apt,195,3,0,,1,252 +46565,8197805,Manhattan,Gramercy,40.73735,-73.98425,Entire home/apt,250,2,1,1.0,1,10 +46566,224614531,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94703,Entire home/apt,200,2,1,1.0,2,5 +46567,247335568,Queens,Long Island City,40.74922,-73.94048000000001,Entire home/apt,150,3,0,,7,19 +46568,213208277,Brooklyn,Borough Park,40.64212,-73.99361,Shared room,30,5,2,2.0,8,333 +46569,258467515,Manhattan,Harlem,40.81051,-73.94800000000001,Entire home/apt,250,2,1,1.0,1,70 +46570,242262000,Brooklyn,Williamsburg,40.7204,-73.94115,Entire home/apt,500,1,0,,1,365 +46571,265917688,Manhattan,Upper West Side,40.77618,-73.98395,Entire home/apt,165,8,1,1.0,1,62 +46572,7933261,Manhattan,Upper East Side,40.76786,-73.95639,Entire home/apt,260,7,1,1.0,1,43 +46573,265068881,Manhattan,Hell's Kitchen,40.7635,-73.9878,Entire home/apt,145,4,2,2.0,1,92 +46574,226927431,Manhattan,Upper East Side,40.76665,-73.95398,Private room,140,4,2,2.0,2,42 +46575,48189481,Brooklyn,Prospect-Lefferts Gardens,40.658770000000004,-73.9447,Entire home/apt,150,2,1,1.0,1,25 +46576,8835932,Brooklyn,Red Hook,40.6774,-74.00304,Entire home/apt,199,2,0,,1,11 +46577,264043510,Queens,Springfield Gardens,40.66292,-73.76241999999999,Private room,70,1,5,4.29,6,365 +46578,264043510,Queens,Springfield Gardens,40.66222,-73.76324,Private room,41,2,1,1.0,6,365 +46579,182121197,Bronx,Kingsbridge,40.86493,-73.90315,Private room,69,2,2,2.0,1,86 +46580,49058105,Brooklyn,Bushwick,40.68936,-73.92071,Entire home/apt,119,7,2,2.0,1,15 +46581,220865756,Brooklyn,Bay Ridge,40.634859999999996,-74.02122,Private room,75,5,0,,2,15 +46582,45378115,Manhattan,Lower East Side,40.72247,-73.98838,Entire home/apt,185,3,1,1.0,1,1 +46583,46724430,Brooklyn,Bedford-Stuyvesant,40.683640000000004,-73.92307,Entire home/apt,125,3,1,1.0,1,0 +46584,23853826,Manhattan,Midtown,40.75144,-73.9709,Entire home/apt,220,3,1,1.0,1,334 +46585,170150338,Manhattan,Hell's Kitchen,40.76088,-73.9923,Entire home/apt,550,3,2,2.0,1,147 +46586,6832892,Brooklyn,Bedford-Stuyvesant,40.6818,-73.93879,Entire home/apt,100,2,1,1.0,1,11 +46587,6470112,Brooklyn,Fort Greene,40.69343,-73.98170999999999,Entire home/apt,150,15,0,,1,283 +46588,266025070,Brooklyn,Bushwick,40.705740000000006,-73.91736999999999,Entire home/apt,225,1,8,7.27,1,141 +46589,24802029,Manhattan,Harlem,40.822379999999995,-73.95476,Private room,86,2,1,1.0,1,90 +46590,6645403,Manhattan,West Village,40.73207,-74.01087,Entire home/apt,270,4,1,1.0,1,50 +46591,266035174,Brooklyn,Flatbush,40.65377,-73.95926999999999,Private room,69,2,3,3.0,1,2 +46592,264043510,Queens,Springfield Gardens,40.6626,-73.76349,Private room,90,1,1,1.0,6,365 +46593,253943547,Brooklyn,Bedford-Stuyvesant,40.6966,-73.94339000000001,Private room,63,1,4,4.0,1,20 +46594,20179690,Manhattan,East Harlem,40.80211,-73.94365,Entire home/apt,350,1,1,1.0,1,17 +46595,18826598,Brooklyn,Williamsburg,40.71413,-73.96075,Entire home/apt,121,3,7,6.0,1,6 +46596,241889662,Manhattan,West Village,40.73766,-74.00448,Private room,999,1,2,2.0,5,321 +46597,260688089,Brooklyn,Bedford-Stuyvesant,40.67815,-73.92534,Private room,60,1,1,1.0,2,147 +46598,260688089,Brooklyn,Bedford-Stuyvesant,40.67864,-73.92362,Private room,60,1,4,4.0,2,166 +46599,129739088,Manhattan,Midtown,40.755959999999995,-73.96581,Entire home/apt,180,30,0,,1,176 +46600,63866600,Brooklyn,Bay Ridge,40.6297,-74.0302,Private room,80,1,2,2.0,3,344 +46601,63866600,Brooklyn,Bay Ridge,40.63066,-74.03135999999999,Private room,80,1,5,4.69,3,361 +46602,265025516,Manhattan,Midtown,40.75088,-73.971,Entire home/apt,500,4,0,,1,100 +46603,264732469,Brooklyn,Bedford-Stuyvesant,40.67816,-73.92368,Private room,60,1,4,4.0,2,173 +46604,22412963,Manhattan,Chelsea,40.74216,-73.99363000000001,Entire home/apt,180,1,1,1.0,3,210 +46605,226060825,Manhattan,Hell's Kitchen,40.76243,-73.98978000000001,Private room,90,1,1,1.0,1,138 +46606,221213143,Manhattan,Midtown,40.74217,-73.98398,Entire home/apt,299,1,0,,9,339 +46607,42063010,Manhattan,East Village,40.728320000000004,-73.98984,Private room,180,1,0,,1,177 +46608,133005440,Brooklyn,Clinton Hill,40.68253,-73.96599,Entire home/apt,125,2,6,6.0,2,241 +46609,107211000,Queens,East Elmhurst,40.76001,-73.88865,Entire home/apt,225,2,5,4.29,1,337 +46610,264732469,Brooklyn,Bedford-Stuyvesant,40.67838,-73.92349,Private room,60,1,3,3.0,2,176 +46611,266090689,Queens,Astoria,40.770179999999996,-73.92108,Entire home/apt,125,2,2,2.0,1,22 +46612,266092932,Manhattan,Hell's Kitchen,40.75606,-73.99374,Entire home/apt,279,2,3,3.0,2,221 +46613,266062621,Manhattan,West Village,40.730059999999995,-74.00713,Entire home/apt,250,1,1,1.0,1,27 +46614,956324,Brooklyn,Williamsburg,40.71705,-73.9647,Entire home/apt,4500,30,0,,1,365 +46615,211595859,Manhattan,Midtown,40.74488,-73.98245,Entire home/apt,300,30,5,4.55,1,90 +46616,135563904,Queens,Ridgewood,40.70527,-73.91075,Private room,180,1,0,,3,76 +46617,130617332,Manhattan,Harlem,40.811440000000005,-73.94386,Private room,85,3,0,,3,244 +46618,16562278,Queens,Astoria,40.75998,-73.926,Entire home/apt,150,1,1,1.0,1,5 +46619,3241323,Brooklyn,East Flatbush,40.655390000000004,-73.94960999999999,Private room,175,1,3,3.0,1,87 +46620,38499797,Manhattan,East Harlem,40.80474,-73.94118,Entire home/apt,110,3,3,3.0,1,3 +46621,62664257,Manhattan,East Village,40.72671,-73.97986,Entire home/apt,450,1,0,,1,365 +46622,259669775,Brooklyn,Sheepshead Bay,40.60795,-73.95218,Entire home/apt,120,2,3,3.0,2,103 +46623,16830841,Manhattan,Midtown,40.76372,-73.98182,Private room,358,1,2,2.0,5,322 +46624,39147579,Manhattan,Chelsea,40.75217,-73.99828000000001,Entire home/apt,235,3,1,1.0,1,196 +46625,25127792,Brooklyn,Bedford-Stuyvesant,40.690059999999995,-73.95127,Entire home/apt,200,2,1,1.0,1,21 +46626,96664487,Brooklyn,Bushwick,40.68864,-73.91614,Entire home/apt,175,3,1,1.0,3,358 +46627,265585349,Brooklyn,Williamsburg,40.711,-73.96146999999999,Entire home/apt,139,2,3,3.0,1,184 +46628,266128085,Manhattan,Midtown,40.748000000000005,-73.98831,Private room,55,30,0,,1,41 +46629,5976443,Brooklyn,Williamsburg,40.71071,-73.96049000000001,Entire home/apt,150,2,6,6.0,1,137 +46630,16107580,Manhattan,Hell's Kitchen,40.7616,-73.98935999999999,Entire home/apt,700,4,2,2.0,1,130 +46631,206451695,Manhattan,Hell's Kitchen,40.76124,-73.99611,Entire home/apt,450,2,0,,3,365 +46632,10664416,Brooklyn,Bedford-Stuyvesant,40.68598,-73.91996999999999,Entire home/apt,200,3,0,,2,41 +46633,69700229,Queens,Jamaica,40.68158,-73.7755,Private room,75,1,0,,3,364 +46634,69700229,Queens,Jamaica,40.68144,-73.77739,Entire home/apt,250,1,0,,3,22 +46635,256321373,Manhattan,Harlem,40.82168,-73.93855,Private room,50,1,1,1.0,1,116 +46636,43706661,Brooklyn,Williamsburg,40.7103,-73.96631,Entire home/apt,230,3,1,1.0,1,16 +46637,3084472,Queens,Ridgewood,40.70196,-73.90578000000001,Entire home/apt,71,2,0,,1,41 +46638,1324150,Brooklyn,Clinton Hill,40.6853,-73.96692,Entire home/apt,140,7,2,2.0,1,29 +46639,78432713,Brooklyn,Bedford-Stuyvesant,40.69004,-73.95224,Private room,42,7,1,0.83,1,21 +46640,192784843,Manhattan,Greenwich Village,40.73125,-73.99933,Entire home/apt,300,5,0,,1,9 +46641,17689167,Manhattan,Midtown,40.75124,-73.98451,Entire home/apt,342,3,2,2.0,1,40 +46642,50484258,Manhattan,Upper East Side,40.76299,-73.961,Entire home/apt,290,1,0,,1,0 +46643,265057419,Brooklyn,East New York,40.67201,-73.86944,Private room,70,3,0,,2,363 +46644,264842412,Manhattan,Financial District,40.707570000000004,-74.01386,Entire home/apt,321,3,4,4.0,1,65 +46645,153434419,Manhattan,Harlem,40.81433,-73.94255,Private room,75,5,1,1.0,3,246 +46646,153434419,Manhattan,Harlem,40.81369,-73.94239,Private room,95,5,0,,3,265 +46647,153434419,Manhattan,Harlem,40.81389,-73.94239,Private room,100,5,1,1.0,3,260 +46648,266212681,Manhattan,Harlem,40.80778,-73.94561,Entire home/apt,200,1,4,4.0,1,139 +46649,265362077,Manhattan,Civic Center,40.71262,-74.00698,Entire home/apt,175,30,0,,1,346 +46650,266246187,Brooklyn,Flatbush,40.63053,-73.96226999999999,Shared room,150,15,0,,1,180 +46651,3871108,Queens,Astoria,40.755959999999995,-73.91637,Entire home/apt,75,20,0,,1,344 +46652,266158631,Manhattan,Hell's Kitchen,40.76194,-73.99006,Entire home/apt,189,1,4,4.0,1,180 +46653,266261548,Queens,Astoria,40.75875,-73.92048,Entire home/apt,275,2,2,2.0,1,279 +46654,64969440,Bronx,Pelham Gardens,40.860929999999996,-73.85185,Entire home/apt,75,2,2,2.0,1,160 +46655,113464126,Manhattan,Hell's Kitchen,40.76285,-73.98609,Entire home/apt,189,1,3,3.0,1,122 +46656,144866025,Queens,Ditmars Steinway,40.77746,-73.9184,Private room,50,14,0,,1,68 +46657,141778215,Manhattan,Chelsea,40.74814,-73.99416,Entire home/apt,269,1,2,2.0,1,238 +46658,96019,Manhattan,Midtown,40.76527,-73.98139,Private room,299,3,0,,1,3 +46659,12833650,Manhattan,Murray Hill,40.7485,-73.97419000000001,Private room,150,4,0,,1,46 +46660,180160926,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95085999999999,Entire home/apt,190,4,1,1.0,1,303 +46661,75017049,Brooklyn,South Slope,40.66509,-73.98325,Private room,100,31,0,,2,119 +46662,91176276,Brooklyn,Boerum Hill,40.6889,-73.9871,Entire home/apt,250,2,3,2.73,1,10 +46663,266299609,Queens,Astoria,40.758829999999996,-73.9216,Entire home/apt,250,2,0,,1,282 +46664,264851724,Manhattan,Midtown,40.75508,-73.96706999999999,Entire home/apt,347,3,4,4.0,1,157 +46665,9843389,Brooklyn,Williamsburg,40.70929,-73.95523,Private room,75,1,2,1.82,2,260 +46666,266310389,Manhattan,East Village,40.72837,-73.98170999999999,Private room,50,30,0,,1,97 +46667,25352847,Brooklyn,Williamsburg,40.71452,-73.9534,Entire home/apt,250,1,1,1.0,2,64 +46668,266315426,Brooklyn,Williamsburg,40.707409999999996,-73.94233,Entire home/apt,120,2,0,,1,27 +46669,201884425,Brooklyn,Cypress Hills,40.68207,-73.87358,Entire home/apt,82,5,1,1.0,3,29 +46670,23217966,Queens,Briarwood,40.705870000000004,-73.81342,Private room,45,2,4,4.0,2,76 +46671,234383668,Brooklyn,Williamsburg,40.715090000000004,-73.9565,Entire home/apt,140,15,1,0.86,1,29 +46672,266316634,Queens,Jackson Heights,40.75755,-73.86199,Entire home/apt,250,2,2,2.0,1,338 +46673,145067304,Manhattan,Harlem,40.80438,-73.95284000000001,Entire home/apt,220,2,1,1.0,1,214 +46674,266322736,Brooklyn,Canarsie,40.647459999999995,-73.90848000000001,Entire home/apt,110,2,2,2.0,1,87 +46675,265372312,Manhattan,Hell's Kitchen,40.76015,-73.99341,Entire home/apt,275,1,5,5.0,1,124 +46676,266333619,Manhattan,Washington Heights,40.85609,-73.93166,Entire home/apt,160,1,3,3.0,1,75 +46677,266335518,Queens,Astoria,40.76444,-73.9157,Entire home/apt,225,2,1,1.0,1,270 +46678,266291058,Manhattan,Kips Bay,40.74344,-73.97821,Entire home/apt,500,2,0,,1,264 +46679,265178222,Manhattan,West Village,40.73168,-74.00195,Entire home/apt,295,3,2,2.0,1,195 +46680,266339498,Brooklyn,Bay Ridge,40.63919,-74.02526,Entire home/apt,190,2,0,,1,119 +46681,266340106,Queens,Astoria,40.77069,-73.91977,Entire home/apt,125,2,5,5.0,1,24 +46682,266341812,Manhattan,Upper West Side,40.791470000000004,-73.96644,Private room,99,14,0,,1,87 +46683,7728754,Brooklyn,Crown Heights,40.67575,-73.94299000000001,Entire home/apt,100,3,0,,4,278 +46684,413316,Brooklyn,Bedford-Stuyvesant,40.67866,-73.94759,Entire home/apt,225,4,0,,1,9 +46685,266346965,Manhattan,Hell's Kitchen,40.75842,-73.99280999999999,Entire home/apt,350,4,4,3.64,1,107 +46686,36793330,Manhattan,Harlem,40.81852,-73.9381,Private room,120,1,0,,1,89 +46687,7728754,Brooklyn,Crown Heights,40.67125,-73.94006,Entire home/apt,90,3,0,,4,256 +46688,29387731,Brooklyn,Williamsburg,40.71203,-73.95241,Private room,65,4,1,1.0,1,5 +46689,266371525,Brooklyn,Bushwick,40.70695,-73.92295,Private room,67,15,0,,1,176 +46690,235054437,Manhattan,Hell's Kitchen,40.75994,-73.99591,Entire home/apt,295,4,0,,1,10 +46691,266360944,Queens,Springfield Gardens,40.66104,-73.76250999999999,Private room,70,1,1,1.0,1,89 +46692,266157648,Manhattan,Kips Bay,40.743629999999996,-73.9773,Entire home/apt,299,1,4,4.0,1,348 +46693,246434428,Queens,Glendale,40.69488,-73.89649,Private room,40,2,1,1.0,1,90 +46694,219303510,Manhattan,Hell's Kitchen,40.76212,-73.99265,Entire home/apt,190,1,4,4.0,1,36 +46695,266380288,Manhattan,Chelsea,40.74114,-74.00358,Entire home/apt,198,30,0,,1,125 +46696,23878336,Bronx,Fordham,40.8703,-73.89313,Entire home/apt,168,3,0,,10,337 +46697,11866880,Queens,Astoria,40.76358,-73.92399,Entire home/apt,289,3,0,,1,253 +46698,266384408,Queens,Astoria,40.764379999999996,-73.91419,Entire home/apt,225,2,1,1.0,1,279 +46699,739539,Manhattan,SoHo,40.72317,-74.00245,Entire home/apt,171,2,5,5.0,1,8 +46700,263778743,Brooklyn,Flatbush,40.646209999999996,-73.96208,Private room,60,14,0,,1,76 +46701,9208470,Brooklyn,Williamsburg,40.71257,-73.96325999999999,Private room,66,1,4,4.0,1,36 +46702,5971983,Manhattan,Two Bridges,40.71192,-73.99539,Private room,77,1,2,2.0,1,161 +46703,4464764,Manhattan,East Village,40.72952,-73.98229,Entire home/apt,125,3,2,2.0,1,18 +46704,261462340,Queens,Fresh Meadows,40.73979,-73.77752,Entire home/apt,50,1,1,1.0,1,178 +46705,16950644,Queens,Jackson Heights,40.75103,-73.8913,Private room,85,1,2,2.0,1,42 +46706,266398080,Manhattan,Kips Bay,40.74535,-73.97753,Entire home/apt,349,1,4,4.0,1,265 +46707,212910330,Manhattan,SoHo,40.72273,-74.00352,Private room,400,4,2,2.0,1,60 +46708,258374626,Brooklyn,Crown Heights,40.66397,-73.93353,Entire home/apt,140,2,1,1.0,1,87 +46709,1903663,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95954,Private room,125,3,1,1.0,2,365 +46710,266417731,Manhattan,Upper West Side,40.78021,-73.98115,Entire home/apt,1200,3,0,,1,51 +46711,109231531,Manhattan,Washington Heights,40.84274,-73.94219,Private room,90,1,0,,2,179 +46712,109231531,Manhattan,Washington Heights,40.84414,-73.94099,Private room,90,1,0,,2,179 +46713,266413128,Manhattan,West Village,40.73194,-74.00369,Entire home/apt,220,2,3,3.0,1,176 +46714,251918661,Manhattan,Chinatown,40.71678,-73.99492,Entire home/apt,400,4,3,2.73,1,57 +46715,115771987,Manhattan,Financial District,40.707229999999996,-74.01045,Entire home/apt,215,30,0,,6,299 +46716,12276549,Brooklyn,Crown Heights,40.673759999999994,-73.95815999999999,Entire home/apt,250,3,0,,2,8 +46717,115771987,Manhattan,Financial District,40.70678,-74.0091,Entire home/apt,170,30,0,,6,221 +46718,28808740,Manhattan,Hell's Kitchen,40.76426,-73.98945,Private room,94,3,1,1.0,2,20 +46719,5541374,Brooklyn,Bushwick,40.68635,-73.91481999999999,Private room,195,4,0,,5,274 +46720,115771987,Manhattan,Financial District,40.705690000000004,-74.00974000000001,Entire home/apt,175,30,0,,6,317 +46721,106168229,Brooklyn,Crown Heights,40.67585,-73.91808,Private room,30,1,1,0.88,1,34 +46722,266502082,Manhattan,Harlem,40.82521,-73.93811,Private room,40,30,0,,1,6 +46723,256544529,Brooklyn,Bedford-Stuyvesant,40.686240000000005,-73.92109,Entire home/apt,400,2,0,,3,226 +46724,68832366,Manhattan,Midtown,40.763290000000005,-73.97543,Private room,100,6,4,4.0,1,191 +46725,107724585,Manhattan,Civic Center,40.71232,-74.00689,Entire home/apt,185,30,0,,2,58 +46726,266505967,Bronx,Fordham,40.860659999999996,-73.89883,Private room,149,1,0,,1,363 +46727,266507520,Manhattan,East Village,40.72699,-73.98576,Entire home/apt,226,2,3,3.0,1,163 +46728,256544529,Brooklyn,Bedford-Stuyvesant,40.68722,-73.91962,Entire home/apt,150,1,3,3.0,3,312 +46729,265005813,Manhattan,Kips Bay,40.74122,-73.98274,Entire home/apt,214,2,1,1.0,1,185 +46730,1922762,Brooklyn,Bedford-Stuyvesant,40.68197,-73.93618000000001,Private room,45,2,1,1.0,1,154 +46731,266519114,Brooklyn,Bushwick,40.70241,-73.92744,Entire home/apt,177,30,2,2.0,1,32 +46732,265183076,Manhattan,East Village,40.72697,-73.98373000000001,Entire home/apt,250,2,4,4.0,1,183 +46733,260267559,Manhattan,Midtown,40.754259999999995,-73.98968,Entire home/apt,489,3,1,1.0,1,259 +46734,265487571,Manhattan,Hell's Kitchen,40.75949,-73.99367,Entire home/apt,250,2,3,3.0,1,190 +46735,265439369,Manhattan,Hell's Kitchen,40.7592,-73.98894,Entire home/apt,650,3,3,3.0,1,232 +46736,265598777,Manhattan,Lower East Side,40.72016,-73.98968,Entire home/apt,250,2,5,5.0,1,188 +46737,1453801,Manhattan,Hell's Kitchen,40.7682,-73.98598,Entire home/apt,150,30,0,,1,66 +46738,21216008,Queens,Jackson Heights,40.75009,-73.87799,Shared room,30,1,3,3.0,4,350 +46739,265413630,Manhattan,Gramercy,40.73265,-73.98435,Entire home/apt,250,2,4,4.0,1,160 +46740,176463632,Brooklyn,Greenpoint,40.72025,-73.94658000000001,Entire home/apt,400,4,0,,1,348 +46741,217803692,Brooklyn,Greenpoint,40.721940000000004,-73.94332,Entire home/apt,400,3,0,,1,358 +46742,218260240,Brooklyn,Williamsburg,40.72047,-73.94504,Entire home/apt,350,3,2,2.0,1,363 +46743,217807790,Brooklyn,Williamsburg,40.71647,-73.94657,Entire home/apt,500,3,0,,1,354 +46744,252886317,Manhattan,Theater District,40.75962,-73.98512,Entire home/apt,489,3,4,4.0,1,167 +46745,189382679,Manhattan,Harlem,40.81658,-73.938,Entire home/apt,78,2,1,1.0,1,208 +46746,38363932,Queens,Briarwood,40.7143,-73.81834,Shared room,99,2,0,,1,365 +46747,102854098,Manhattan,Kips Bay,40.740520000000004,-73.98188,Entire home/apt,450,3,1,1.0,1,263 +46748,229726240,Brooklyn,Williamsburg,40.71518,-73.94145999999999,Entire home/apt,300,3,0,,1,359 +46749,249973556,Brooklyn,Williamsburg,40.715109999999996,-73.96236,Entire home/apt,500,3,2,2.0,1,332 +46750,11437322,Brooklyn,Boerum Hill,40.68752,-73.98549,Entire home/apt,200,4,0,,1,45 +46751,253493647,Brooklyn,Williamsburg,40.71962,-73.9605,Entire home/apt,500,3,1,1.0,1,357 +46752,266561095,Queens,Astoria,40.75566,-73.91741999999999,Entire home/apt,85,1,1,1.0,1,27 +46753,539364,Brooklyn,Bushwick,40.68743,-73.91048,Entire home/apt,129,3,0,,1,51 +46754,225731818,Manhattan,Theater District,40.75672,-73.98653,Entire home/apt,385,2,1,1.0,1,28 +46755,263676349,Manhattan,Hell's Kitchen,40.75711,-73.99674,Private room,119,3,1,1.0,2,30 +46756,17215584,Manhattan,Financial District,40.708859999999994,-74.00885,Entire home/apt,189,3,2,2.0,1,339 +46757,17349726,Brooklyn,Bushwick,40.69424,-73.92652,Entire home/apt,89,1,8,7.5,1,88 +46758,152518136,Queens,Ridgewood,40.70633,-73.91344000000001,Private room,100,1,2,2.0,1,63 +46759,178272943,Queens,Jamaica,40.671620000000004,-73.77919,Private room,65,1,0,,4,74 +46760,5241234,Brooklyn,Crown Heights,40.67432,-73.94255,Entire home/apt,100,3,0,,1,247 +46761,266590338,Manhattan,Upper East Side,40.77401,-73.94993000000001,Entire home/apt,220,5,0,,1,77 +46762,2534058,Manhattan,Hell's Kitchen,40.76269,-73.98928000000001,Entire home/apt,190,2,4,4.0,1,29 +46763,266600351,Manhattan,East Harlem,40.78658,-73.94989,Entire home/apt,200,4,0,,1,121 +46764,35244614,Brooklyn,Bushwick,40.70155,-73.92628,Entire home/apt,125,2,2,2.0,1,7 +46765,23455550,Manhattan,Inwood,40.86542,-73.92092,Entire home/apt,100,1,0,,1,0 +46766,9883499,Manhattan,SoHo,40.72358,-74.00397,Entire home/apt,230,1,1,0.91,1,6 +46767,65960619,Manhattan,Gramercy,40.73523,-73.98142,Entire home/apt,160,1,0,,1,14 +46768,266601642,Manhattan,Hell's Kitchen,40.75431,-73.99459,Entire home/apt,185,3,1,1.0,1,267 +46769,107724585,Manhattan,Financial District,40.71035,-74.00734,Entire home/apt,185,30,0,,2,346 +46770,18549793,Brooklyn,Williamsburg,40.70985,-73.94462,Private room,80,2,1,1.0,1,10 +46771,231484830,Manhattan,Theater District,40.76308,-73.98482,Entire home/apt,450,3,0,,1,161 +46772,266609191,Brooklyn,Bedford-Stuyvesant,40.684509999999996,-73.92753,Private room,70,1,2,2.0,1,161 +46773,266595097,Manhattan,East Village,40.724340000000005,-73.98047,Entire home/apt,340,2,0,,1,180 +46774,27181542,Manhattan,Upper East Side,40.77474,-73.94943,Entire home/apt,249,30,0,,1,325 +46775,266477120,Manhattan,Hell's Kitchen,40.76125,-73.98848000000001,Entire home/apt,120,3,2,2.0,1,203 +46776,23217966,Queens,Jamaica,40.70415,-73.81558000000001,Private room,35,2,6,6.0,2,38 +46777,59392910,Manhattan,Upper East Side,40.76462,-73.95841999999999,Private room,108,1,4,4.0,1,113 +46778,266627618,Bronx,Wakefield,40.9026,-73.84806,Entire home/apt,288,2,0,,1,346 +46779,44452858,Manhattan,Inwood,40.86639,-73.92369000000001,Entire home/apt,150,7,0,,1,8 +46780,6457972,Manhattan,Kips Bay,40.7409,-73.98085,Entire home/apt,199,2,0,,1,49 +46781,266641882,Manhattan,Upper West Side,40.798359999999995,-73.96784,Entire home/apt,135,1,7,7.0,1,94 +46782,266645207,Queens,Springfield Gardens,40.66206,-73.74962,Private room,75,1,0,,2,180 +46783,264817559,Manhattan,Hell's Kitchen,40.762879999999996,-73.9915,Entire home/apt,223,3,3,3.0,1,25 +46784,266651586,Manhattan,Greenwich Village,40.728120000000004,-73.99963000000001,Entire home/apt,150,30,0,,1,180 +46785,31043699,Manhattan,Upper East Side,40.78037,-73.94657,Entire home/apt,120,5,1,1.0,1,23 +46786,63941116,Manhattan,Financial District,40.70606,-74.00899,Entire home/apt,199,1,3,3.0,1,324 +46787,266699294,Manhattan,East Harlem,40.79136,-73.93979,Entire home/apt,300,2,1,1.0,1,365 +46788,8119817,Brooklyn,Williamsburg,40.71601,-73.9413,Private room,80,1,1,1.0,2,23 +46789,134378909,Brooklyn,Bedford-Stuyvesant,40.67846,-73.90803000000001,Private room,60,3,0,,1,9 +46790,266725339,Manhattan,Hell's Kitchen,40.76276,-73.9895,Entire home/apt,450,4,8,8.0,1,66 +46791,266726110,Manhattan,Harlem,40.804629999999996,-73.95655,Private room,88,30,0,,7,360 +46792,266726110,Manhattan,Harlem,40.80348,-73.95671,Private room,89,30,0,,7,360 +46793,207897448,Manhattan,Midtown,40.7575,-73.9643,Entire home/apt,185,2,3,3.0,1,43 +46794,102292061,Brooklyn,Sheepshead Bay,40.58625,-73.94591,Private room,50,1,8,7.27,3,75 +46795,266726110,Manhattan,Harlem,40.80485,-73.9581,Private room,88,30,0,,7,364 +46796,266726110,Manhattan,Harlem,40.80494,-73.95588000000001,Private room,89,30,2,2.0,7,361 +46797,5236664,Manhattan,Lower East Side,40.718709999999994,-73.99058000000001,Entire home/apt,300,2,1,1.0,1,284 +46798,242405832,Manhattan,Harlem,40.82318,-73.94424000000001,Entire home/apt,575,2,0,,1,287 +46799,260447969,Brooklyn,Greenpoint,40.72019,-73.94648000000001,Entire home/apt,600,3,1,1.0,1,351 +46800,266726110,Manhattan,Harlem,40.80315,-73.95616,Private room,88,30,0,,7,364 +46801,266726110,Manhattan,Harlem,40.80445,-73.9567,Private room,88,30,0,,7,360 +46802,266754587,Queens,Long Island City,40.75734,-73.9324,Entire home/apt,225,2,1,1.0,1,261 +46803,177188159,Manhattan,Upper East Side,40.76254,-73.96223,Entire home/apt,800,3,0,,1,277 +46804,17224232,Brooklyn,Flatbush,40.64635,-73.95474,Shared room,30,3,3,3.0,1,46 +46805,23878336,Bronx,Fordham,40.86963,-73.89465,Private room,79,3,0,,10,69 +46806,39275815,Queens,Long Island City,40.76435,-73.93536999999999,Entire home/apt,220,5,1,1.0,1,63 +46807,266762890,Manhattan,Civic Center,40.71301,-74.00480999999999,Entire home/apt,172,30,0,,1,331 +46808,63227531,Staten Island,Randall Manor,40.62845,-74.12294,Entire home/apt,99,2,1,1.0,2,342 +46809,23878336,Bronx,Fordham,40.87085,-73.89318,Private room,58,3,0,,10,75 +46810,266726110,Manhattan,Harlem,40.80322,-73.95673000000001,Private room,89,30,0,,7,305 +46811,266762041,Manhattan,Hell's Kitchen,40.752590000000005,-73.9942,Entire home/apt,220,1,3,3.0,1,52 +46812,266749340,Brooklyn,Bedford-Stuyvesant,40.68919,-73.92553000000001,Entire home/apt,190,1,3,3.0,2,269 +46813,23878336,Bronx,Fordham,40.86947,-73.89389,Private room,55,3,0,,10,86 +46814,23878336,Bronx,Fordham,40.87066,-73.89317,Private room,55,3,0,,10,89 +46815,259207391,Queens,Jamaica,40.67634,-73.79687,Private room,65,1,3,3.0,3,357 +46816,266769677,Manhattan,Chinatown,40.71654,-73.99485,Entire home/apt,202,3,2,2.0,1,215 +46817,257879526,Brooklyn,East Flatbush,40.659259999999996,-73.93468,Private room,60,2,1,1.0,2,343 +46818,266773830,Manhattan,Kips Bay,40.74402,-73.97476999999999,Entire home/apt,475,4,2,2.0,1,157 +46819,266780775,Manhattan,Hell's Kitchen,40.76021,-73.99976,Entire home/apt,305,1,2,2.0,1,133 +46820,13954138,Brooklyn,Bushwick,40.6949,-73.91636,Private room,60,7,0,,2,15 +46821,266774171,Brooklyn,Williamsburg,40.71334,-73.96717,Entire home/apt,262,2,5,5.0,1,118 +46822,46672441,Queens,Flushing,40.7488,-73.82191,Private room,70,3,0,,1,90 +46823,1355112,Brooklyn,Clinton Hill,40.68875,-73.96725,Entire home/apt,300,5,0,,2,209 +46824,6291714,Manhattan,Little Italy,40.71703,-73.998,Private room,74,4,0,,1,44 +46825,230192510,Brooklyn,Fort Greene,40.69757,-73.97556999999999,Private room,48,30,0,,25,347 +46826,230192510,Brooklyn,Fort Greene,40.69611,-73.97542,Private room,48,30,0,,25,333 +46827,69683180,Manhattan,Hell's Kitchen,40.76198,-74.00033,Entire home/apt,200,1,0,,1,3 +46828,230192510,Brooklyn,Fort Greene,40.69747,-73.97506,Private room,48,30,0,,25,310 +46829,230192510,Brooklyn,Fort Greene,40.69632,-73.97395999999999,Private room,48,30,0,,25,68 +46830,230192510,Brooklyn,Fort Greene,40.69696,-73.97496,Private room,48,30,0,,25,219 +46831,230192510,Brooklyn,Fort Greene,40.696979999999996,-73.97412,Private room,48,30,0,,25,340 +46832,230192510,Brooklyn,Fort Greene,40.69617,-73.97532,Private room,48,30,0,,25,341 +46833,230192510,Brooklyn,Fort Greene,40.69749,-73.97551,Private room,48,30,0,,25,257 +46834,230192510,Brooklyn,Fort Greene,40.69634,-73.97393000000001,Private room,48,30,0,,25,342 +46835,230192510,Brooklyn,Fort Greene,40.6971,-73.97523000000001,Private room,48,30,0,,25,305 +46836,230192510,Brooklyn,Fort Greene,40.69774,-73.97502,Private room,48,30,0,,25,341 +46837,2428014,Brooklyn,Williamsburg,40.7128,-73.94341999999999,Entire home/apt,199,7,0,,1,33 +46838,230192510,Brooklyn,Fort Greene,40.69706,-73.97399999999999,Private room,48,30,0,,25,67 +46839,230192510,Brooklyn,Fort Greene,40.69768,-73.97564,Private room,48,30,0,,25,337 +46840,230192510,Brooklyn,Fort Greene,40.696329999999996,-73.97361,Private room,48,30,0,,25,334 +46841,230192510,Brooklyn,Fort Greene,40.69693,-73.97395999999999,Private room,48,30,0,,25,66 +46842,230192510,Brooklyn,Fort Greene,40.69632,-73.97553,Private room,48,30,0,,25,342 +46843,230192510,Brooklyn,Fort Greene,40.69706,-73.97498,Private room,48,30,0,,25,189 +46844,17346516,Brooklyn,Williamsburg,40.71926,-73.96035,Entire home/apt,200,2,0,,1,10 +46845,266800773,Manhattan,Greenwich Village,40.729729999999996,-74.00166,Entire home/apt,249,2,2,2.0,1,177 +46846,22541573,Manhattan,West Village,40.74,-74.00399999999999,Entire home/apt,209,30,0,,87,364 +46847,57201275,Queens,Astoria,40.75942,-73.92600999999999,Shared room,45,2,1,1.0,1,84 +46848,253482129,Manhattan,Hell's Kitchen,40.76437,-73.99184,Entire home/apt,210,2,1,1.0,1,32 +46849,19639667,Manhattan,Upper West Side,40.80092,-73.96195,Private room,100,1,0,,1,293 +46850,38458421,Manhattan,Kips Bay,40.74501,-73.97774,Entire home/apt,900,2,0,,1,245 +46851,14717052,Brooklyn,Greenpoint,40.723290000000006,-73.93758000000001,Entire home/apt,180,1,2,2.0,1,365 +46852,227805996,Manhattan,Hell's Kitchen,40.75332,-73.99539,Entire home/apt,300,3,1,1.0,1,53 +46853,266818709,Manhattan,East Village,40.72175,-73.98259,Entire home/apt,400,3,3,3.0,1,128 +46854,259427246,Brooklyn,Bedford-Stuyvesant,40.678129999999996,-73.92904,Private room,38,5,1,1.0,3,356 +46855,29929166,Brooklyn,Flatbush,40.62958,-73.96137,Entire home/apt,150,20,0,,1,35 +46856,25012594,Manhattan,Upper East Side,40.76801,-73.96896,Entire home/apt,140,2,2,2.0,1,105 +46857,107987935,Manhattan,Financial District,40.70701,-74.01007,Entire home/apt,175,30,0,,1,311 +46858,266823254,Queens,Bayswater,40.60825,-73.75695,Private room,60,1,0,,1,342 +46859,266823933,Bronx,Van Nest,40.8455,-73.86216999999999,Private room,35,3,1,1.0,1,342 +46860,265666981,Manhattan,Hell's Kitchen,40.76397,-73.99078,Entire home/apt,219,1,5,5.0,1,173 +46861,19593305,Manhattan,Chelsea,40.74942,-74.00335,Private room,350,8,0,,1,78 +46862,266826469,Brooklyn,Bedford-Stuyvesant,40.6815,-73.93408000000001,Entire home/apt,85,28,0,,1,74 +46863,239758048,Manhattan,Flatiron District,40.74055,-73.98522,Entire home/apt,450,3,3,3.0,1,101 +46864,194804585,Queens,Jackson Heights,40.75268,-73.88595,Private room,55,1,4,4.0,2,308 +46865,6227706,Queens,Arverne,40.58817,-73.79914000000001,Private room,99,3,1,1.0,1,95 +46866,266829739,Manhattan,SoHo,40.72208,-74.00389,Private room,70,30,0,,1,96 +46867,266834909,Brooklyn,South Slope,40.66512,-73.99084,Private room,60,14,1,1.0,1,26 +46868,105190318,Bronx,Riverdale,40.88452,-73.91065,Entire home/apt,99,3,2,2.0,1,52 +46869,265617965,Manhattan,Flatiron District,40.740320000000004,-73.98801,Entire home/apt,300,3,4,4.0,1,161 +46870,199466039,Manhattan,Upper East Side,40.77664,-73.95481,Entire home/apt,349,1,0,,3,346 +46871,50996583,Brooklyn,Williamsburg,40.71216,-73.9623,Entire home/apt,264,2,5,5.0,1,327 +46872,59553953,Queens,Long Island City,40.76117,-73.93038,Entire home/apt,149,4,0,,1,39 +46873,205510323,Manhattan,Hell's Kitchen,40.77044,-73.99126,Entire home/apt,220,3,0,,1,29 +46874,14763957,Brooklyn,Bushwick,40.70364,-73.92679,Private room,58,2,0,,1,57 +46875,241985816,Queens,Astoria,40.76842,-73.90633000000001,Private room,100,1,2,2.0,3,179 +46876,260445684,Brooklyn,Williamsburg,40.70599,-73.94816999999999,Entire home/apt,299,3,3,3.0,1,195 +46877,266826700,Manhattan,Kips Bay,40.743990000000004,-73.97753,Entire home/apt,299,3,2,2.0,1,350 +46878,4107600,Brooklyn,Bushwick,40.70385,-73.91694,Private room,55,2,0,,3,314 +46879,7599704,Queens,Forest Hills,40.72085,-73.84088,Entire home/apt,75,1,0,,1,7 +46880,266364277,Manhattan,Kips Bay,40.74337,-73.97726,Entire home/apt,850,3,0,,1,19 +46881,266860944,Queens,Rosedale,40.657920000000004,-73.73945,Private room,44,7,1,1.0,1,227 +46882,266860871,Manhattan,Upper West Side,40.787,-73.97237,Entire home/apt,200,2,1,1.0,1,265 +46883,259289556,Queens,East Elmhurst,40.76227,-73.86451,Private room,49,1,1,1.0,1,48 +46884,27668092,Brooklyn,Bushwick,40.69339,-73.90647,Private room,60,3,1,1.0,3,72 +46885,52137386,Manhattan,Nolita,40.72087,-73.99647,Entire home/apt,203,2,0,,1,88 +46886,264805208,Manhattan,Hell's Kitchen,40.75765,-73.99247,Entire home/apt,211,3,4,4.0,1,56 +46887,147228245,Brooklyn,Sunset Park,40.64658,-74.00986,Private room,38,10,0,,1,67 +46888,266828407,Manhattan,Hell's Kitchen,40.761829999999996,-73.98948,Entire home/apt,350,1,10,10.0,1,163 +46889,33861246,Brooklyn,Bedford-Stuyvesant,40.68209,-73.91323,Entire home/apt,100,2,4,4.0,1,64 +46890,602359,Brooklyn,Fort Greene,40.6938,-73.97404,Entire home/apt,150,3,1,1.0,2,107 +46891,266828681,Manhattan,Hell's Kitchen,40.75493,-73.99458,Entire home/apt,320,1,12,12.0,1,189 +46892,153371127,Queens,Jackson Heights,40.74908,-73.87961,Shared room,28,1,0,,2,341 +46893,179478172,Brooklyn,Flatbush,40.65175,-73.96208,Shared room,25,10,1,1.0,3,299 +46894,179478172,Brooklyn,Flatbush,40.650220000000004,-73.96281,Shared room,25,4,1,1.0,3,334 +46895,232557023,Manhattan,Flatiron District,40.73942,-73.98648,Entire home/apt,1750,7,0,,1,178 +46896,179478172,Brooklyn,Flatbush,40.64946,-73.96041,Shared room,25,10,0,,3,341 +46897,266797970,Manhattan,Greenwich Village,40.72938,-73.99955,Entire home/apt,249,2,1,1.0,1,146 +46898,55450195,Brooklyn,Cypress Hills,40.68224,-73.86806,Entire home/apt,60,3,6,6.0,1,21 +46899,117484717,Manhattan,Chelsea,40.74637,-74.0002,Entire home/apt,240,3,2,2.0,1,35 +46900,74250362,Manhattan,Chelsea,40.745090000000005,-73.99135,Entire home/apt,325,2,4,4.0,1,197 +46901,254622508,Bronx,Kingsbridge,40.87256,-73.89978,Entire home/apt,95,1,4,4.0,1,84 +46902,191009021,Manhattan,Upper West Side,40.771190000000004,-73.98769,Entire home/apt,250,3,1,1.0,1,14 +46903,133802988,Queens,Ridgewood,40.7046,-73.90215,Shared room,38,30,0,,6,358 +46904,248161322,Brooklyn,Bushwick,40.7003,-73.9406,Shared room,35,30,0,,14,320 +46905,243367528,Queens,Astoria,40.76599,-73.91225,Private room,100,1,9,9.0,7,253 +46906,266966503,Manhattan,Financial District,40.70629,-74.01535,Entire home/apt,200,1,1,1.0,1,326 +46907,237729032,Brooklyn,East New York,40.67807,-73.8794,Private room,60,3,0,,2,365 +46908,264296595,Queens,Flushing,40.758109999999995,-73.82504,Shared room,69,1,2,2.0,3,355 +46909,266800860,Manhattan,Murray Hill,40.74612,-73.97417,Entire home/apt,159,1,0,,1,201 +46910,248161322,Brooklyn,Bushwick,40.69935,-73.93889,Private room,63,30,0,,14,311 +46911,248161322,Brooklyn,Bushwick,40.70024,-73.9392,Private room,64,30,0,,14,343 +46912,208230311,Manhattan,Washington Heights,40.83833,-73.94539,Private room,34,1,2,2.0,1,278 +46913,248161322,Brooklyn,Bushwick,40.70109,-73.93952,Private room,79,30,0,,14,365 +46914,266983536,Bronx,Longwood,40.827940000000005,-73.90411999999999,Private room,45,2,1,1.0,1,364 +46915,15163034,Manhattan,Upper East Side,40.77005,-73.95926,Entire home/apt,119,3,3,3.0,1,174 +46916,1616218,Manhattan,Lower East Side,40.7132,-73.99103000000001,Entire home/apt,165,3,0,,1,71 +46917,242361272,Brooklyn,East New York,40.66192,-73.88213,Entire home/apt,80,1,0,,1,297 +46918,157430725,Manhattan,Hell's Kitchen,40.765809999999995,-73.98867,Entire home/apt,150,1,6,6.0,3,222 +46919,236186921,Staten Island,Tottenville,40.506409999999995,-74.23059,Entire home/apt,75,1,1,1.0,1,299 +46920,266998393,Brooklyn,Bushwick,40.69424,-73.91847,Private room,35,3,0,,3,275 +46921,180966626,Brooklyn,Williamsburg,40.713359999999994,-73.95914,Entire home/apt,259,2,4,4.0,1,345 +46922,2954749,Brooklyn,Fort Greene,40.69216,-73.97455,Private room,100,30,0,,1,64 +46923,206222230,Manhattan,Theater District,40.7572,-73.98628000000001,Entire home/apt,180,10,1,1.0,1,17 +46924,27636707,Manhattan,West Village,40.73325,-74.00583,Entire home/apt,200,3,0,,5,294 +46925,267009547,Manhattan,Hell's Kitchen,40.7643,-73.9876,Entire home/apt,395,3,2,2.0,1,152 +46926,266522456,Manhattan,Upper West Side,40.80155,-73.96732,Private room,150,1,7,7.0,3,135 +46927,267015745,Brooklyn,East New York,40.67228,-73.89194,Entire home/apt,97,2,0,,1,324 +46928,266531875,Brooklyn,Bushwick,40.69403,-73.91991,Entire home/apt,475,2,3,3.0,3,343 +46929,71577601,Manhattan,Financial District,40.70595,-74.00974000000001,Entire home/apt,250,2,2,2.0,1,335 +46930,266531875,Brooklyn,Bushwick,40.69222,-73.91971,Entire home/apt,200,2,2,2.0,3,351 +46931,266531875,Brooklyn,Bushwick,40.69383,-73.91878,Entire home/apt,650,2,1,1.0,3,338 +46932,259662705,Brooklyn,Williamsburg,40.71324,-73.94270999999999,Entire home/apt,184,3,1,1.0,1,217 +46933,16334409,Manhattan,East Harlem,40.79495,-73.93335,Entire home/apt,89,24,0,,2,36 +46934,10811427,Manhattan,Murray Hill,40.74536,-73.97222,Entire home/apt,189,2,1,1.0,1,69 +46935,11814933,Brooklyn,Fort Greene,40.69171,-73.98145,Entire home/apt,198,2,2,2.0,1,11 +46936,42761912,Manhattan,Hell's Kitchen,40.763329999999996,-73.99141,Private room,125,1,0,,1,207 +46937,266992480,Manhattan,Hell's Kitchen,40.76573,-73.98897,Entire home/apt,500,3,14,14.0,2,45 +46938,267046022,Manhattan,Hell's Kitchen,40.763690000000004,-73.991,Entire home/apt,275,4,0,,1,59 +46939,266522456,Manhattan,Upper West Side,40.8014,-73.96563,Private room,130,1,9,9.0,3,79 +46940,224558991,Brooklyn,East New York,40.65681,-73.87854,Private room,31,1,0,,1,105 +46941,127836236,Bronx,Williamsbridge,40.88125,-73.84921999999999,Entire home/apt,85,1,6,6.0,1,362 +46942,24587566,Manhattan,Washington Heights,40.856809999999996,-73.92655,Private room,50,1,0,,1,87 +46943,267068278,Manhattan,Chelsea,40.747040000000005,-74.00239,Private room,105,1,1,1.0,1,21 +46944,170071460,Bronx,Kingsbridge,40.88531,-73.90008,Private room,100,3,0,,1,88 +46945,267113508,Manhattan,Upper West Side,40.80069,-73.96431,Shared room,300,7,0,,1,39 +46946,15131634,Brooklyn,South Slope,40.66731,-73.98546999999999,Entire home/apt,275,5,0,,1,9 +46947,229706010,Manhattan,Chelsea,40.7428,-73.9956,Entire home/apt,290,2,1,1.0,1,25 +46948,80164857,Manhattan,Upper East Side,40.76453,-73.95867,Entire home/apt,160,4,1,1.0,1,243 +46949,1237426,Manhattan,Hell's Kitchen,40.7665,-73.98578,Entire home/apt,178,3,2,2.0,1,22 +46950,267033835,Brooklyn,East New York,40.66302,-73.86081999999999,Entire home/apt,60,3,1,1.0,1,94 +46951,155137506,Queens,Laurelton,40.681290000000004,-73.74745,Entire home/apt,85,1,8,8.0,1,166 +46952,3830566,Brooklyn,Greenpoint,40.72105,-73.93933,Entire home/apt,200,1,2,2.0,1,316 +46953,602359,Brooklyn,Fort Greene,40.69235,-73.97369,Private room,95,2,2,2.0,2,164 +46954,192505058,Manhattan,Chelsea,40.75117,-73.99783000000001,Entire home/apt,220,3,2,2.0,1,54 +46955,267144101,Manhattan,Financial District,40.70612,-74.00464000000001,Private room,145,1,0,,2,83 +46956,256502464,Manhattan,Harlem,40.82817,-73.94598,Private room,55,1,1,1.0,3,35 +46957,151810361,Queens,Flushing,40.76316,-73.82337,Private room,99,1,4,4.0,6,364 +46958,54332560,Brooklyn,Park Slope,40.66993,-73.97709,Entire home/apt,97,11,0,,1,25 +46959,742949,Brooklyn,Prospect Heights,40.67977,-73.96882,Entire home/apt,249,3,1,1.0,1,89 +46960,13678557,Manhattan,East Harlem,40.80857,-73.93951,Private room,90,1,0,,1,102 +46961,256502464,Manhattan,Harlem,40.82784,-73.94559,Private room,55,1,0,,3,21 +46962,204915695,Brooklyn,Sunset Park,40.63851,-74.00843,Private room,50,3,0,,2,158 +46963,62001,Manhattan,SoHo,40.72438,-74.00114,Entire home/apt,249,3,0,,1,176 +46964,267193767,Queens,East Elmhurst,40.75558,-73.89316,Entire home/apt,200,2,4,4.0,1,365 +46965,2116342,Manhattan,Civic Center,40.71625,-74.00316,Entire home/apt,950,3,0,,1,69 +46966,31859704,Queens,Little Neck,40.774440000000006,-73.73373000000001,Entire home/apt,149,3,0,,1,3 +46967,19407918,Manhattan,SoHo,40.72367,-74.00229,Entire home/apt,180,4,0,,1,5 +46968,153561136,Staten Island,New Dorp Beach,40.56153,-74.10047,Entire home/apt,109,5,0,,1,46 +46969,81127692,Brooklyn,Flatbush,40.64434,-73.95288000000001,Private room,50,3,0,,2,311 +46970,102292061,Brooklyn,Sheepshead Bay,40.58567,-73.94501,Private room,50,1,6,6.0,3,83 +46971,26071530,Brooklyn,Crown Heights,40.67711,-73.95,Private room,100,2,0,,2,20 +46972,241985816,Queens,Astoria,40.76822,-73.90783,Private room,85,1,1,1.0,3,60 +46973,11134859,Manhattan,Nolita,40.72037,-73.99454,Entire home/apt,179,2,0,,1,311 +46974,267223765,Brooklyn,Flatbush,40.64685,-73.96101999999999,Private room,50,1,3,3.0,3,348 +46975,266749340,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92527,Entire home/apt,190,1,1,1.0,2,311 +46976,16608415,Brooklyn,East New York,40.665240000000004,-73.89052,Private room,120,1,0,,3,103 +46977,266779292,Queens,Kew Gardens Hills,40.71913,-73.816,Private room,90,1,2,2.0,1,90 +46978,217625111,Manhattan,Harlem,40.80621,-73.94877,Entire home/apt,750,3,0,,1,13 +46979,260895286,Manhattan,Upper West Side,40.78642,-73.97723,Private room,90,3,0,,2,112 +46980,26543881,Queens,Rockaway Beach,40.58447,-73.81704,Entire home/apt,200,3,2,2.0,1,261 +46981,254015746,Manhattan,Midtown,40.7459,-73.98663,Private room,280,2,1,1.0,1,363 +46982,10160373,Brooklyn,Williamsburg,40.71144,-73.96488000000001,Entire home/apt,200,2,0,,1,4 +46983,180754298,Brooklyn,Williamsburg,40.71431,-73.9532,Entire home/apt,130,2,1,1.0,1,13 +46984,185199487,Brooklyn,Clinton Hill,40.68965,-73.96741999999999,Private room,65,6,1,1.0,1,19 +46985,13483820,Manhattan,Chinatown,40.71496,-73.99063000000001,Entire home/apt,120,1,0,,1,160 +46986,18550483,Manhattan,Murray Hill,40.744,-73.97364,Entire home/apt,197,30,0,,1,158 +46987,267272502,Bronx,Claremont Village,40.84308,-73.90652,Private room,67,3,0,,2,113 +46988,129443696,Manhattan,Upper East Side,40.7739,-73.94803,Entire home/apt,250,7,0,,1,44 +46989,7167290,Brooklyn,Midwood,40.62382,-73.94683,Private room,35,30,0,,1,44 +46990,264478123,Manhattan,SoHo,40.7207,-74.00034000000001,Private room,100,1,0,,4,353 +46991,264478123,Manhattan,SoHo,40.721090000000004,-73.99972,Private room,100,1,0,,4,350 +46992,264478123,Manhattan,SoHo,40.72085,-73.99965999999999,Private room,100,1,0,,4,352 +46993,264478123,Manhattan,SoHo,40.72254,-73.99985,Private room,100,1,0,,4,293 +46994,264752722,Manhattan,Lower East Side,40.72232,-73.99256,Entire home/apt,350,4,3,3.0,1,129 +46995,107085019,Brooklyn,Bedford-Stuyvesant,40.68557,-73.93023000000001,Private room,65,3,1,1.0,1,348 +46996,107716952,Queens,Jamaica,40.69128,-73.80864,Entire home/apt,50,1,4,4.0,2,119 +46997,40275,Brooklyn,Bedford-Stuyvesant,40.69312,-73.96051,Entire home/apt,250,2,1,1.0,1,66 +46998,266117120,Brooklyn,Brownsville,40.659440000000004,-73.91489,Private room,55,1,0,,1,86 +46999,262501312,Manhattan,Chelsea,40.744409999999995,-74.00765,Entire home/apt,299,2,0,,1,74 +47000,263504959,Queens,Woodhaven,40.69158,-73.86578,Private room,50,1,6,6.0,8,273 +47001,182505049,Manhattan,Upper West Side,40.77122,-73.99110999999999,Entire home/apt,499,3,0,,1,34 +47002,119908176,Brooklyn,Bedford-Stuyvesant,40.68603,-73.92005999999999,Entire home/apt,120,3,1,1.0,1,9 +47003,175771113,Brooklyn,East Flatbush,40.64575,-73.94654,Private room,36,15,1,1.0,1,46 +47004,239139334,Queens,Bayside,40.76883,-73.78707,Private room,49,1,4,4.0,3,345 +47005,65346107,Manhattan,Lower East Side,40.72076,-73.9885,Entire home/apt,170,5,1,1.0,1,4 +47006,267396936,Brooklyn,Williamsburg,40.71418,-73.93836999999999,Entire home/apt,465,3,3,3.0,1,250 +47007,24423571,Queens,Flushing,40.752829999999996,-73.82561,Private room,46,1,1,1.0,1,365 +47008,1646818,Brooklyn,Williamsburg,40.71884,-73.9502,Entire home/apt,120,30,1,1.0,1,286 +47009,4602926,Brooklyn,Clinton Hill,40.69325,-73.96732,Entire home/apt,175,2,0,,1,6 +47010,35299064,Brooklyn,Park Slope,40.67606,-73.98250999999999,Entire home/apt,150,3,0,,1,232 +47011,267414692,Queens,Flushing,40.75932,-73.79859,Private room,70,1,2,2.0,1,365 +47012,13500337,Brooklyn,East New York,40.6666,-73.89112,Private room,55,2,0,,2,179 +47013,85400172,Brooklyn,Crown Heights,40.6752,-73.94851,Private room,95,3,1,1.0,2,360 +47014,253571094,Queens,Astoria,40.75809,-73.91271,Private room,50,2,3,3.0,2,330 +47015,7271522,Manhattan,Morningside Heights,40.80695,-73.9654,Entire home/apt,250,7,0,,1,10 +47016,52062343,Bronx,Bronxdale,40.856,-73.86705,Shared room,57,1,4,4.0,1,340 +47017,103336088,Queens,Jamaica,40.6748,-73.79241999999999,Entire home/apt,85,1,5,5.0,1,62 +47018,7309232,Manhattan,East Harlem,40.803909999999995,-73.9361,Entire home/apt,300,3,1,1.0,3,302 +47019,173794097,Queens,Jackson Heights,40.753040000000006,-73.87661,Private room,40,2,2,2.0,1,3 +47020,257683179,Queens,Flushing,40.76135,-73.80724000000001,Private room,35,1,0,,6,7 +47021,11397354,Brooklyn,Flatbush,40.64225,-73.96425,Entire home/apt,89,2,1,1.0,1,4 +47022,210800401,Manhattan,Washington Heights,40.84655,-73.93332,Private room,60,3,0,,2,81 +47023,119155499,Brooklyn,Bushwick,40.69405,-73.92642,Private room,49,5,0,,4,134 +47024,267476000,Manhattan,Hell's Kitchen,40.763690000000004,-73.98891,Private room,100,1,0,,1,167 +47025,151810361,Queens,Flushing,40.76313,-73.8234,Private room,99,1,4,4.0,6,365 +47026,6048765,Manhattan,Harlem,40.81868,-73.93937,Private room,67,3,0,,2,88 +47027,46094733,Manhattan,Flatiron District,40.73975,-73.98510999999999,Entire home/apt,100,2,3,3.0,1,6 +47028,267223765,Brooklyn,Flatbush,40.649359999999994,-73.96061,Private room,50,1,2,2.0,3,342 +47029,4344188,Brooklyn,Bushwick,40.70013,-73.93502,Entire home/apt,159,4,2,2.0,1,28 +47030,257647514,Brooklyn,Bushwick,40.69175,-73.90932,Entire home/apt,250,2,1,1.0,2,9 +47031,72674364,Manhattan,West Village,40.73234,-74.00543,Entire home/apt,240,1,1,1.0,1,75 +47032,5665090,Manhattan,Upper East Side,40.778420000000004,-73.95026,Entire home/apt,135,3,1,1.0,1,15 +47033,185355022,Bronx,Concourse,40.8315,-73.92277,Entire home/apt,60,3,1,1.0,1,20 +47034,18042477,Manhattan,Washington Heights,40.833290000000005,-73.94055999999999,Entire home/apt,160,14,0,,1,59 +47035,60117043,Manhattan,Upper East Side,40.76209,-73.96181,Entire home/apt,125,5,0,,1,58 +47036,13064420,Brooklyn,Bushwick,40.69014,-73.91530999999999,Private room,50,7,0,,1,6 +47037,247094998,Manhattan,Upper West Side,40.777190000000004,-73.98312,Entire home/apt,800,2,0,,1,225 +47038,265057419,Brooklyn,East New York,40.67072,-73.86946999999999,Private room,68,3,0,,2,363 +47039,265156761,Manhattan,Harlem,40.80434,-73.95515,Entire home/apt,165,3,2,2.0,1,207 +47040,267621090,Brooklyn,Brooklyn Heights,40.69934,-73.99635,Entire home/apt,600,3,4,4.0,1,323 +47041,163029687,Manhattan,SoHo,40.724340000000005,-73.99945,Entire home/apt,900,3,1,1.0,1,292 +47042,245166170,Brooklyn,Flatbush,40.641999999999996,-73.95979,Entire home/apt,80,1,0,,1,12 +47043,166984137,Manhattan,Harlem,40.8129,-73.94391,Private room,90,5,0,,1,193 +47044,267627839,Manhattan,Midtown,40.75563,-73.96621,Entire home/apt,175,28,0,,1,340 +47045,265662009,Manhattan,Upper East Side,40.77065,-73.96675,Entire home/apt,180,7,0,,3,270 +47046,49658508,Manhattan,Kips Bay,40.74244,-73.97872,Entire home/apt,600,2,1,1.0,1,226 +47047,231378604,Manhattan,East Harlem,40.78986,-73.94783000000001,Private room,65,14,0,,1,319 +47048,16963619,Brooklyn,Williamsburg,40.71139,-73.96208,Entire home/apt,139,2,0,,1,134 +47049,267405973,Queens,Ridgewood,40.70126,-73.90292,Entire home/apt,110,20,0,,2,161 +47050,159811367,Brooklyn,Bedford-Stuyvesant,40.694829999999996,-73.94059,Shared room,32,30,0,,10,324 +47051,267144101,Manhattan,Financial District,40.707370000000004,-74.00622,Private room,145,1,0,,2,35 +47052,16354887,Brooklyn,Sunset Park,40.66154,-73.99158,Entire home/apt,109,9,0,,1,16 +47053,257348210,Manhattan,Midtown,40.75372,-73.97232,Entire home/apt,350,3,0,,1,51 +47054,266522456,Manhattan,Upper West Side,40.80102,-73.96669,Private room,60,1,3,3.0,3,130 +47055,60541281,Brooklyn,Crown Heights,40.67037,-73.92764,Entire home/apt,95,4,2,2.0,1,84 +47056,159112181,Manhattan,SoHo,40.72683,-74.00222,Entire home/apt,275,1,1,1.0,1,308 +47057,267632589,Brooklyn,Greenpoint,40.72775,-73.94944,Entire home/apt,187,3,1,1.0,1,256 +47058,35965489,Manhattan,East Harlem,40.79755,-73.94797,Private room,100,2,0,,1,7 +47059,74819532,Manhattan,Lower East Side,40.71982,-73.98849,Entire home/apt,250,2,0,,1,170 +47060,265422938,Queens,Long Island City,40.748870000000004,-73.93829000000001,Private room,149,2,0,,2,53 +47061,50278442,Manhattan,Morningside Heights,40.80478,-73.96665,Private room,70,30,0,,3,225 +47062,155529225,Queens,Corona,40.74415,-73.86545,Private room,80,1,0,,1,365 +47063,83819376,Manhattan,Hell's Kitchen,40.75438,-73.99378,Entire home/apt,843,1,4,4.0,1,358 +47064,21400616,Brooklyn,Crown Heights,40.67718,-73.93524000000001,Entire home/apt,67,1,0,,2,300 +47065,265153176,Bronx,Morris Heights,40.846309999999995,-73.91641,Entire home/apt,150,1,3,3.0,1,65 +47066,83132880,Queens,Maspeth,40.73877,-73.8946,Private room,129,2,0,,4,316 +47067,50278442,Manhattan,Morningside Heights,40.80482,-73.96493000000001,Private room,70,30,0,,3,339 +47068,2196491,Manhattan,Theater District,40.75692,-73.98373000000001,Entire home/apt,140,30,0,,3,116 +47069,73066515,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94546,Private room,46,3,1,1.0,3,81 +47070,146603340,Manhattan,Chelsea,40.74783,-73.99978,Entire home/apt,213,1,1,1.0,1,336 +47071,1394543,Brooklyn,Flatbush,40.6524,-73.96314,Private room,59,1,1,1.0,2,24 +47072,258880426,Brooklyn,Bay Ridge,40.63646,-74.02396,Private room,65,3,0,,1,327 +47073,893308,Brooklyn,Williamsburg,40.70545,-73.93273,Private room,75,3,3,3.0,3,13 +47074,267678892,Manhattan,Financial District,40.7061,-74.00936,Entire home/apt,225,1,1,1.0,1,82 +47075,26364534,Manhattan,Upper East Side,40.764179999999996,-73.9555,Shared room,66,1,1,1.0,1,70 +47076,194369832,Manhattan,East Village,40.72347,-73.97792,Entire home/apt,200,2,1,1.0,1,43 +47077,267698769,Manhattan,Midtown,40.74512,-73.98212,Entire home/apt,395,1,4,4.0,1,296 +47078,245518352,Manhattan,Hell's Kitchen,40.76135,-73.99343,Entire home/apt,400,3,0,,1,161 +47079,267702003,Manhattan,Financial District,40.70517,-74.00907,Entire home/apt,215,1,4,4.0,1,246 +47080,3562596,Brooklyn,Boerum Hill,40.68615,-73.98056,Entire home/apt,500,3,0,,1,28 +47081,893308,Brooklyn,Williamsburg,40.70519,-73.93418,Private room,75,3,1,1.0,3,13 +47082,893308,Brooklyn,Williamsburg,40.7055,-73.93437,Entire home/apt,145,5,1,1.0,3,17 +47083,163625145,Brooklyn,Borough Park,40.64265,-73.99138,Private room,46,2,1,1.0,3,163 +47084,267728008,Manhattan,East Village,40.7316,-73.98576,Entire home/apt,179,5,3,3.0,1,76 +47085,267253127,Manhattan,Kips Bay,40.74496,-73.97678,Entire home/apt,132,1,2,2.0,1,46 +47086,28891151,Brooklyn,East New York,40.67054,-73.89001999999999,Private room,79,2,1,1.0,4,90 +47087,265424495,Manhattan,Harlem,40.80369,-73.94764,Entire home/apt,150,1,0,,2,14 +47088,167025338,Manhattan,Upper East Side,40.773,-73.94759,Private room,90,8,0,,2,77 +47089,255626808,Manhattan,Greenwich Village,40.733129999999996,-73.9971,Entire home/apt,450,1,1,1.0,1,156 +47090,267739313,Manhattan,Lower East Side,40.72056,-73.98894,Entire home/apt,210,7,1,1.0,1,306 +47091,267744284,Bronx,Melrose,40.822309999999995,-73.91696,Entire home/apt,69,7,0,,1,254 +47092,208570396,Manhattan,East Harlem,40.808370000000004,-73.93937,Entire home/apt,120,5,4,4.0,1,285 +47093,264833923,Manhattan,Hell's Kitchen,40.75612,-73.99263,Entire home/apt,209,3,1,1.0,1,68 +47094,266569093,Manhattan,Midtown,40.75519,-73.97010999999999,Entire home/apt,800,30,0,,1,266 +47095,11583998,Brooklyn,Bushwick,40.70816,-73.9222,Entire home/apt,128,5,0,,1,152 +47096,29622548,Brooklyn,Coney Island,40.58101,-73.98514,Entire home/apt,149,6,0,,1,297 +47097,216786331,Manhattan,SoHo,40.71891,-74.00024,Entire home/apt,429,5,2,2.0,1,152 +47098,255259069,Manhattan,Harlem,40.826229999999995,-73.95271,Entire home/apt,135,31,2,2.0,2,184 +47099,196255493,Bronx,Kingsbridge,40.87277,-73.90268,Entire home/apt,95,2,0,,1,47 +47100,247335568,Queens,Long Island City,40.74762,-73.94278,Entire home/apt,160,3,0,,7,23 +47101,255259069,Manhattan,Harlem,40.82586,-73.95296,Entire home/apt,130,31,0,,2,333 +47102,267678006,Manhattan,Midtown,40.765370000000004,-73.98375,Entire home/apt,320,1,7,7.0,1,121 +47103,180793066,Brooklyn,East New York,40.66537,-73.88569,Entire home/apt,87,2,1,1.0,1,90 +47104,267818706,Manhattan,Financial District,40.706109999999995,-74.00773000000001,Entire home/apt,205,1,3,3.0,1,45 +47105,201914956,Manhattan,Upper West Side,40.800990000000006,-73.96514,Entire home/apt,305,30,3,3.0,1,311 +47106,243660343,Manhattan,Harlem,40.82593,-73.95075,Entire home/apt,144,30,1,1.0,2,223 +47107,267015438,Queens,Ozone Park,40.672990000000006,-73.845,Entire home/apt,167,5,1,1.0,1,94 +47108,3078929,Brooklyn,Williamsburg,40.70919,-73.95755,Entire home/apt,100,30,0,,1,235 +47109,206722794,Brooklyn,Williamsburg,40.70823,-73.95702,Entire home/apt,168,2,4,4.0,1,154 +47110,265157006,Manhattan,Hell's Kitchen,40.761990000000004,-73.99884,Entire home/apt,425,3,0,,1,135 +47111,243660343,Manhattan,Harlem,40.82549,-73.95133,Entire home/apt,115,30,0,,2,211 +47112,163625145,Brooklyn,Borough Park,40.64468,-73.99025999999999,Private room,46,2,2,2.0,3,180 +47113,163625145,Brooklyn,Borough Park,40.64405,-73.99125,Private room,38,2,0,,3,171 +47114,5971264,Bronx,Kingsbridge,40.864290000000004,-73.90204,Private room,60,1,0,,1,83 +47115,61396454,Manhattan,Midtown,40.75424,-73.96415999999999,Entire home/apt,300,30,0,,14,338 +47116,136438670,Manhattan,East Village,40.723040000000005,-73.98371999999999,Entire home/apt,159,1,5,5.0,1,170 +47117,267849738,Manhattan,Kips Bay,40.74293,-73.97923,Entire home/apt,600,2,0,,1,267 +47118,267849472,Brooklyn,Williamsburg,40.71269,-73.95902,Entire home/apt,185,1,2,2.0,1,130 +47119,159598333,Manhattan,Upper East Side,40.781659999999995,-73.94593,Entire home/apt,99,30,0,,5,344 +47120,2548258,Bronx,Port Morris,40.80807,-73.92811,Entire home/apt,140,4,0,,1,103 +47121,263049454,Manhattan,East Village,40.7294,-73.98664000000001,Entire home/apt,290,1,0,,1,355 +47122,230403448,Brooklyn,Williamsburg,40.71006,-73.95716,Entire home/apt,180,2,0,,1,260 +47123,267651337,Manhattan,Midtown,40.7569,-73.96623000000001,Entire home/apt,170,30,0,,1,332 +47124,241551759,Manhattan,Financial District,40.70417,-74.01510999999999,Entire home/apt,200,9,0,,1,15 +47125,267860635,Manhattan,Midtown,40.74307,-73.98385999999999,Entire home/apt,170,1,3,3.0,1,270 +47126,221200420,Manhattan,Murray Hill,40.74385,-73.97219,Entire home/apt,400,30,0,,23,211 +47127,267864516,Brooklyn,East New York,40.65905,-73.88273000000001,Entire home/apt,99,2,1,1.0,1,144 +47128,267191710,Manhattan,Upper East Side,40.76769,-73.96692,Entire home/apt,425,2,0,,1,162 +47129,51020118,Manhattan,Hell's Kitchen,40.75351,-73.99523,Entire home/apt,175,4,0,,1,89 +47130,267872829,Brooklyn,Fort Hamilton,40.618190000000006,-74.03296,Shared room,20,1,1,1.0,1,353 +47131,221200420,Manhattan,Murray Hill,40.74422,-73.97261,Entire home/apt,350,30,0,,23,331 +47132,267875219,Queens,Ridgewood,40.70762,-73.89784,Entire home/apt,149,3,0,,1,169 +47133,221200420,Manhattan,Murray Hill,40.743359999999996,-73.97143,Entire home/apt,350,30,0,,23,327 +47134,130030703,Brooklyn,Williamsburg,40.714209999999994,-73.96259,Entire home/apt,220,2,0,,1,244 +47135,221200420,Manhattan,Murray Hill,40.743990000000004,-73.97204,Entire home/apt,200,30,0,,23,365 +47136,6768659,Brooklyn,Park Slope,40.666779999999996,-73.97709,Entire home/apt,170,4,0,,1,199 +47137,221200420,Manhattan,Murray Hill,40.74405,-73.97349,Entire home/apt,200,30,0,,23,365 +47138,221200420,Manhattan,Murray Hill,40.74419,-73.97195,Entire home/apt,175,30,0,,23,353 +47139,223917190,Brooklyn,Williamsburg,40.70779,-73.96254,Entire home/apt,161,2,2,2.0,1,288 +47140,1348312,Queens,Astoria,40.761509999999994,-73.90964,Entire home/apt,300,4,0,,1,26 +47141,265901814,Manhattan,West Village,40.736129999999996,-73.9987,Private room,125,1,0,,2,75 +47142,267886811,Manhattan,Washington Heights,40.8462,-73.93498000000001,Private room,80,3,1,1.0,1,112 +47143,75395247,Brooklyn,Williamsburg,40.71243,-73.9604,Entire home/apt,160,2,3,3.0,1,309 +47144,221200420,Manhattan,Murray Hill,40.744240000000005,-73.97272,Entire home/apt,190,30,0,,23,343 +47145,182954454,Queens,Jamaica,40.66969,-73.77464,Private room,75,2,0,,2,90 +47146,267590902,Manhattan,Financial District,40.704229999999995,-74.00909,Entire home/apt,365,2,0,,1,18 +47147,25970549,Brooklyn,Williamsburg,40.70769,-73.96257,Entire home/apt,150,2,0,,1,235 +47148,154077074,Queens,Flushing,40.74511,-73.82909000000001,Private room,55,1,0,,1,59 +47149,267175603,Manhattan,Midtown,40.76551,-73.98217,Entire home/apt,190,3,2,2.0,1,23 +47150,53432601,Manhattan,East Harlem,40.7885,-73.95093,Private room,80,2,2,2.0,1,11 +47151,267624351,Queens,Astoria,40.76332,-73.91166,Entire home/apt,75,2,0,,1,14 +47152,267902045,Queens,Elmhurst,40.746959999999994,-73.87104000000001,Entire home/apt,130,1,2,2.0,1,148 +47153,21649183,Brooklyn,Bushwick,40.69644,-73.91995,Private room,78,2,0,,1,28 +47154,260895286,Manhattan,Upper West Side,40.7846,-73.97636,Private room,90,3,0,,2,24 +47155,82406306,Manhattan,East Harlem,40.798790000000004,-73.94202,Private room,85,2,1,1.0,2,36 +47156,267912902,Brooklyn,Borough Park,40.62317,-73.98873,Private room,39,3,0,,2,179 +47157,264862581,Queens,Rosedale,40.68036,-73.72716,Private room,75,1,3,3.0,3,90 +47158,213432040,Brooklyn,Brooklyn Heights,40.69924,-73.99296,Entire home/apt,150,2,0,,1,74 +47159,21261408,Brooklyn,Clinton Hill,40.689809999999994,-73.9604,Shared room,37,1,4,4.0,6,344 +47160,108512889,Queens,Sunnyside,40.739540000000005,-73.92095,Shared room,12,1,0,,1,359 +47161,267680159,Manhattan,Lower East Side,40.71261,-73.98857,Entire home/apt,300,1,8,8.0,1,213 +47162,11971910,Brooklyn,Greenpoint,40.72685,-73.94433000000001,Entire home/apt,110,30,0,,1,104 +47163,251969263,Queens,Ridgewood,40.70022,-73.89596999999999,Private room,54,1,0,,2,29 +47164,6885157,Brooklyn,Bedford-Stuyvesant,40.683820000000004,-73.95022,Private room,45,1,3,3.0,15,188 +47165,267928032,Queens,Flushing,40.72899,-73.79578000000001,Entire home/apt,119,1,0,,1,179 +47166,241454071,Bronx,Hunts Point,40.81879,-73.88646,Private room,35,2,1,1.0,2,59 +47167,193961455,Brooklyn,Williamsburg,40.7191,-73.94494,Entire home/apt,190,1,7,7.0,1,210 +47168,62271274,Manhattan,Financial District,40.70537,-74.00784,Entire home/apt,220,2,1,1.0,1,10 +47169,71653051,Manhattan,West Village,40.73894,-74.00086999999999,Private room,99,2,2,2.0,1,63 +47170,267936314,Manhattan,Upper West Side,40.79976,-73.96549,Entire home/apt,200,1,2,2.0,1,37 +47171,267938006,Bronx,Concourse Village,40.82759,-73.92081,Private room,65,1,2,2.0,1,364 +47172,103716352,Brooklyn,Sunset Park,40.64699,-74.0156,Private room,50,1,0,,1,28 +47173,267940629,Brooklyn,Flatlands,40.61994,-73.93966999999999,Private room,60,1,0,,1,365 +47174,19017210,Brooklyn,Bedford-Stuyvesant,40.67897,-73.94192,Private room,41,3,1,1.0,1,57 +47175,145082728,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95006,Entire home/apt,350,2,1,1.0,2,0 +47176,11378117,Brooklyn,Coney Island,40.575340000000004,-73.98664000000001,Entire home/apt,70,21,0,,1,195 +47177,257879526,Brooklyn,East Flatbush,40.65982,-73.93468,Private room,54,2,0,,2,336 +47178,152132335,Queens,Woodside,40.741640000000004,-73.90289,Private room,100,5,0,,1,197 +47179,267933377,Manhattan,Upper East Side,40.78015,-73.94570999999999,Private room,100,2,0,,1,89 +47180,121705027,Brooklyn,Bedford-Stuyvesant,40.69229,-73.94116,Private room,90,2,1,1.0,1,5 +47181,267953852,Manhattan,Greenwich Village,40.72815,-73.99693,Entire home/apt,196,2,1,1.0,1,149 +47182,153141476,Queens,Briarwood,40.70762,-73.81453,Entire home/apt,78,1,5,5.0,3,326 +47183,6997690,Brooklyn,Greenpoint,40.73259,-73.95611,Private room,100,3,1,1.0,1,65 +47184,266925045,Manhattan,Hell's Kitchen,40.7607,-73.99033,Entire home/apt,320,3,3,3.0,1,160 +47185,267937666,Manhattan,Hell's Kitchen,40.762859999999996,-73.99113,Entire home/apt,129,1,4,4.0,1,186 +47186,130617332,Manhattan,Harlem,40.81173,-73.94213,Private room,80,3,0,,3,170 +47187,125170095,Queens,Astoria,40.76408,-73.91979,Private room,85,3,1,1.0,1,341 +47188,161346189,Queens,Ridgewood,40.70771,-73.90486,Private room,40,14,0,,1,342 +47189,4481028,Manhattan,Midtown,40.75249,-73.9689,Entire home/apt,140,3,1,1.0,1,5 +47190,175276860,Queens,Jamaica Hills,40.71512,-73.79391,Private room,100,3,0,,1,179 +47191,83132880,Queens,Maspeth,40.73953,-73.89499,Private room,56,1,0,,4,304 +47192,256966373,Staten Island,St. George,40.64332,-74.07812,Entire home/apt,100,3,1,1.0,1,201 +47193,32159799,Manhattan,East Harlem,40.80144,-73.94463,Private room,180,2,3,3.0,1,327 +47194,267980502,Manhattan,Upper West Side,40.78544,-73.97062,Entire home/apt,150,4,0,,1,317 +47195,92936093,Brooklyn,Flatbush,40.64898,-73.95501999999999,Private room,65,1,4,4.0,1,109 +47196,267951770,Queens,Ozone Park,40.68761,-73.84241,Entire home/apt,100,1,0,,1,189 +47197,28891151,Brooklyn,East New York,40.66772,-73.88813,Private room,75,2,2,2.0,4,349 +47198,6428897,Brooklyn,Williamsburg,40.70677,-73.94196,Entire home/apt,95,3,1,1.0,1,5 +47199,258053084,Manhattan,Harlem,40.80386,-73.95065,Private room,65,2,3,3.0,1,76 +47200,83132880,Queens,Maspeth,40.73859,-73.89534,Private room,49,2,0,,4,307 +47201,70082582,Manhattan,Chinatown,40.7189,-73.99627,Entire home/apt,120,5,0,,1,27 +47202,51985960,Brooklyn,Williamsburg,40.70748,-73.92835,Private room,40,3,0,,2,34 +47203,266792224,Queens,Woodside,40.748329999999996,-73.90827,Private room,90,2,1,1.0,1,365 +47204,102373033,Manhattan,Midtown,40.76355,-73.98102,Entire home/apt,249,3,1,1.0,1,149 +47205,263550606,Manhattan,Kips Bay,40.745090000000005,-73.97894000000001,Entire home/apt,300,4,0,,1,77 +47206,267989178,Manhattan,Kips Bay,40.743179999999995,-73.97916,Entire home/apt,800,2,0,,1,254 +47207,263229425,Manhattan,Hell's Kitchen,40.76617,-73.99169,Shared room,400,2,0,,1,26 +47208,154268909,Queens,Bellerose,40.74006,-73.7169,Entire home/apt,240,2,0,,2,159 +47209,260807399,Manhattan,Hell's Kitchen,40.76536,-73.98866,Shared room,400,2,0,,1,23 +47210,268110281,Brooklyn,Bushwick,40.691720000000004,-73.9113,Shared room,49,30,0,,3,365 +47211,267989700,Queens,Sunnyside,40.74174,-73.90817,Entire home/apt,179,1,1,1.0,1,321 +47212,268122129,Brooklyn,Williamsburg,40.70087,-73.94075,Shared room,35,30,0,,5,341 +47213,260805765,Manhattan,Hell's Kitchen,40.75882,-73.9903,Shared room,400,2,0,,1,166 +47214,146623639,Manhattan,East Village,40.724779999999996,-73.98297,Entire home/apt,250,4,0,,1,4 +47215,8093028,Brooklyn,Carroll Gardens,40.678670000000004,-73.9969,Entire home/apt,129,3,1,1.0,1,21 +47216,268135013,Brooklyn,Bushwick,40.69463,-73.92707,Entire home/apt,475,1,1,1.0,6,9 +47217,268137256,Manhattan,Washington Heights,40.8433,-73.93616,Private room,35,2,1,1.0,1,359 +47218,268138154,Brooklyn,Bushwick,40.6964,-73.91898,Private room,10,1,2,2.0,1,0 +47219,21918321,Brooklyn,Flatbush,40.64151,-73.96104,Entire home/apt,90,2,0,,1,10 +47220,181673933,Manhattan,Harlem,40.800329999999995,-73.95382,Private room,100,1,0,,1,341 +47221,268150010,Brooklyn,Williamsburg,40.71918,-73.95591,Entire home/apt,200,2,0,,1,14 +47222,268149303,Manhattan,Harlem,40.81858,-73.94524,Private room,125,2,0,,1,125 +47223,11182145,Brooklyn,Fort Greene,40.69334,-73.98179,Shared room,50,1,0,,1,347 +47224,13175303,Manhattan,Morningside Heights,40.80491,-73.96339,Entire home/apt,135,1,1,1.0,1,3 +47225,100981446,Brooklyn,Crown Heights,40.67437,-73.96177,Entire home/apt,199,6,1,1.0,1,156 +47226,268162851,Manhattan,East Village,40.73035,-73.9845,Entire home/apt,295,5,0,,1,268 +47227,247628698,Manhattan,Hell's Kitchen,40.76073,-73.99032,Private room,140,4,1,1.0,2,34 +47228,16830841,Manhattan,Midtown,40.763909999999996,-73.98028000000001,Private room,358,1,0,,5,349 +47229,268165286,Manhattan,Upper West Side,40.79213,-73.9704,Entire home/apt,89,10,0,,1,53 +47230,16830841,Manhattan,Midtown,40.76553,-73.98148,Private room,358,1,0,,5,353 +47231,117365574,Manhattan,Chelsea,40.74946,-73.99627,Private room,85,1,1,1.0,5,261 +47232,34450489,Brooklyn,Downtown Brooklyn,40.696909999999995,-73.98236999999999,Private room,111,2,2,2.0,1,6 +47233,268173853,Brooklyn,Clinton Hill,40.6853,-73.96661999999999,Entire home/apt,100,5,1,1.0,1,243 +47234,267818779,Manhattan,Financial District,40.70567,-74.00565999999999,Entire home/apt,265,1,2,2.0,1,246 +47235,268177002,Manhattan,East Village,40.72716,-73.98436,Entire home/apt,295,5,1,1.0,1,141 +47236,11066012,Manhattan,Hell's Kitchen,40.76164,-73.99218,Entire home/apt,417,3,1,1.0,1,219 +47237,244116720,Bronx,Throgs Neck,40.82754,-73.82124,Private room,65,1,1,1.0,1,365 +47238,78896912,Manhattan,Hell's Kitchen,40.7637,-73.99184,Entire home/apt,150,1,0,,1,2 +47239,8518298,Brooklyn,Williamsburg,40.70924,-73.95208000000001,Private room,57,2,3,3.0,1,29 +47240,40971988,Manhattan,Upper East Side,40.76954,-73.94959,Private room,75,1,4,4.0,1,9 +47241,15200548,Brooklyn,Sunset Park,40.66008,-73.99684,Entire home/apt,180,4,0,,1,12 +47242,72015429,Manhattan,Inwood,40.86114,-73.92716999999999,Private room,59,1,0,,1,357 +47243,13830544,Brooklyn,Bedford-Stuyvesant,40.695240000000005,-73.93234,Private room,54,4,2,2.0,3,330 +47244,266998393,Brooklyn,Bushwick,40.69423,-73.91945,Private room,40,3,1,1.0,3,96 +47245,93533725,Manhattan,Midtown,40.76465,-73.98155,Private room,350,2,0,,1,38 +47246,20514946,Brooklyn,Bushwick,40.700559999999996,-73.92161999999999,Entire home/apt,230,2,2,2.0,1,274 +47247,268230638,Manhattan,Kips Bay,40.73775,-73.97368,Private room,95,15,0,,1,89 +47248,258376648,Manhattan,Murray Hill,40.74673,-73.9792,Entire home/apt,299,6,0,,1,57 +47249,267272502,Bronx,Claremont Village,40.84346,-73.90554,Private room,55,3,0,,2,140 +47250,2883788,Manhattan,Murray Hill,40.74825,-73.98101,Entire home/apt,239,3,3,3.0,1,158 +47251,268240039,Manhattan,Washington Heights,40.83747,-73.94123,Private room,51,1,1,1.0,1,84 +47252,80443454,Queens,Kew Gardens Hills,40.717079999999996,-73.82411,Private room,74,1,10,10.0,1,160 +47253,128681436,Queens,Flushing,40.75938,-73.80124,Private room,40,1,1,1.0,1,66 +47254,133130957,Queens,Elmhurst,40.745090000000005,-73.88492,Entire home/apt,120,1,1,1.0,1,331 +47255,86724810,Brooklyn,Bedford-Stuyvesant,40.69252,-73.93786999999999,Entire home/apt,200,1,1,1.0,1,344 +47256,135127305,Manhattan,Chinatown,40.71821,-73.99506,Entire home/apt,200,1,0,,1,312 +47257,7768807,Manhattan,Lower East Side,40.7195,-73.98558,Entire home/apt,200,1,1,1.0,1,270 +47258,11608565,Manhattan,Lower East Side,40.71694,-73.98218,Entire home/apt,200,3,0,,1,270 +47259,268266826,Manhattan,Hell's Kitchen,40.76413,-73.99466,Entire home/apt,450,1,1,1.0,1,337 +47260,268110281,Brooklyn,Bushwick,40.69258,-73.91168,Shared room,32,30,0,,3,330 +47261,268110281,Brooklyn,Bushwick,40.69208,-73.91296,Private room,58,30,0,,3,340 +47262,79269209,Manhattan,Hell's Kitchen,40.75625,-73.99356999999999,Private room,63,31,0,,1,250 +47263,268122129,Brooklyn,Bushwick,40.6997,-73.93944,Shared room,45,30,0,,5,302 +47264,13813923,Queens,Long Island City,40.743829999999996,-73.95100000000001,Private room,55,1,2,2.0,2,293 +47265,268118262,Manhattan,East Harlem,40.80775,-73.93767,Private room,210,1,3,3.0,1,7 +47266,222549093,Manhattan,Harlem,40.81668,-73.9569,Private room,65,1,1,1.0,3,17 +47267,101970559,Brooklyn,Bushwick,40.6922,-73.90563,Shared room,31,30,0,,6,333 +47268,268122129,Brooklyn,Bushwick,40.69965,-73.93909000000001,Shared room,35,30,0,,5,357 +47269,268122129,Brooklyn,Bushwick,40.70125,-73.93915,Private room,72,30,0,,5,341 +47270,159811367,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94005,Shared room,34,30,0,,10,341 +47271,130906690,Manhattan,Nolita,40.72098,-73.9972,Entire home/apt,225,4,1,1.0,1,225 +47272,268119713,Manhattan,Midtown,40.75855,-73.96661,Entire home/apt,300,30,0,,1,155 +47273,18392694,Brooklyn,Crown Heights,40.679759999999995,-73.9633,Entire home/apt,100,7,0,,1,146 +47274,268122129,Brooklyn,Bushwick,40.70105,-73.93954000000001,Private room,80,30,0,,5,343 +47275,42730216,Manhattan,Upper East Side,40.76569,-73.95829,Entire home/apt,130,3,0,,2,42 +47276,263994272,Brooklyn,Bedford-Stuyvesant,40.6871,-73.94651,Private room,100,1,0,,3,178 +47277,261295185,Queens,Jamaica Estates,40.71213,-73.78778,Entire home/apt,219,2,0,,1,359 +47278,289271,Bronx,Highbridge,40.83351,-73.93033,Private room,65,2,0,,1,296 +47279,38580398,Queens,South Ozone Park,40.6765,-73.81947,Entire home/apt,150,3,3,3.0,1,327 +47280,2010787,Manhattan,Lower East Side,40.7144,-73.98201,Entire home/apt,297,20,0,,1,276 +47281,241985816,Queens,Astoria,40.76847,-73.90852,Private room,100,1,1,1.0,3,89 +47282,268352337,Manhattan,Hell's Kitchen,40.763740000000006,-73.98844,Entire home/apt,450,1,1,1.0,2,360 +47283,213719157,Manhattan,East Harlem,40.79833,-73.93781,Shared room,60,1,5,5.0,1,1 +47284,268358454,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92345999999999,Private room,60,1,0,,1,171 +47285,71276635,Manhattan,Washington Heights,40.841429999999995,-73.94569,Entire home/apt,235,1,0,,5,338 +47286,177507494,Brooklyn,Kensington,40.64264,-73.97855,Private room,67,1,0,,1,31 +47287,2860131,Manhattan,East Village,40.72488,-73.98317,Entire home/apt,120,2,1,1.0,1,6 +47288,268377412,Brooklyn,Williamsburg,40.705220000000004,-73.94243,Entire home/apt,226,2,0,,1,328 +47289,264362310,Brooklyn,Sheepshead Bay,40.607240000000004,-73.95219,Private room,25,1,0,,1,178 +47290,11908795,Manhattan,Hell's Kitchen,40.7615,-73.99546,Entire home/apt,350,5,0,,1,87 +47291,222069293,Brooklyn,Williamsburg,40.715559999999996,-73.94245,Entire home/apt,275,3,0,,1,362 +47292,4077292,Brooklyn,Bushwick,40.696979999999996,-73.90774,Private room,65,3,0,,2,364 +47293,35783912,Bronx,Fordham,40.86269,-73.89073,Private room,39,3,0,,8,170 +47294,88171838,Brooklyn,Bay Ridge,40.6346,-74.03022,Private room,99,2,1,1.0,4,169 +47295,268396733,Brooklyn,Kensington,40.64353,-73.9845,Entire home/apt,100,1,1,1.0,1,96 +47296,1764739,Manhattan,East Village,40.72352,-73.97493,Private room,85,1,0,,1,23 +47297,63356650,Brooklyn,Crown Heights,40.6771,-73.96007,Private room,60,20,0,,1,38 +47298,33555400,Queens,Briarwood,40.71288,-73.81368,Entire home/apt,300,2,0,,1,12 +47299,268394581,Brooklyn,Bedford-Stuyvesant,40.691340000000004,-73.93288000000001,Private room,75,1,2,2.0,3,139 +47300,268405137,Brooklyn,Bushwick,40.692840000000004,-73.91248,Entire home/apt,140,2,4,4.0,1,359 +47301,7073540,Brooklyn,Red Hook,40.68002,-74.0055,Entire home/apt,130,2,0,,1,79 +47302,263322673,Manhattan,SoHo,40.72546,-74.0008,Private room,75,14,0,,2,133 +47303,268392801,Manhattan,Hell's Kitchen,40.75597,-73.99457,Entire home/apt,251,3,3,3.0,1,258 +47304,4363908,Brooklyn,Bedford-Stuyvesant,40.68479,-73.94416,Private room,75,2,0,,1,14 +47305,9843389,Brooklyn,Williamsburg,40.70816,-73.95591,Private room,100,1,1,1.0,2,27 +47306,69356879,Brooklyn,Williamsburg,40.71668,-73.94252,Entire home/apt,295,2,0,,1,300 +47307,12166612,Brooklyn,Fort Greene,40.68884,-73.9733,Entire home/apt,310,3,1,1.0,1,5 +47308,268135013,Brooklyn,Bushwick,40.6944,-73.92531,Private room,69,1,1,1.0,6,170 +47309,127821506,Manhattan,Upper East Side,40.76814,-73.96088,Private room,125,1,0,,1,20 +47310,35620036,Manhattan,Harlem,40.82178,-73.93946,Private room,51,1,1,1.0,1,45 +47311,267912902,Brooklyn,Borough Park,40.624340000000004,-73.98821,Private room,80,3,1,1.0,2,179 +47312,10353677,Brooklyn,Williamsburg,40.71283,-73.94278,Entire home/apt,395,2,0,,1,351 +47313,219459418,Brooklyn,Williamsburg,40.70905,-73.95484,Entire home/apt,450,2,0,,1,345 +47314,218666938,Brooklyn,Williamsburg,40.71011,-73.95782,Entire home/apt,500,3,0,,1,362 +47315,3590361,Brooklyn,Boerum Hill,40.68612,-73.99024,Private room,99,1,1,1.0,1,264 +47316,268430876,Staten Island,St. George,40.63772,-74.08315,Private room,42,1,0,,1,87 +47317,1100494,Manhattan,Harlem,40.82292,-73.95598000000001,Private room,50,30,0,,3,338 +47318,268438637,Manhattan,Upper East Side,40.76938,-73.95143,Entire home/apt,249,1,1,1.0,1,359 +47319,83132880,Queens,Maspeth,40.73888,-73.89486,Private room,49,1,0,,4,321 +47320,78424147,Manhattan,Washington Heights,40.84344,-73.93966999999999,Entire home/apt,210,5,2,2.0,1,354 +47321,254422852,Manhattan,East Harlem,40.79522,-73.93918000000001,Entire home/apt,225,4,2,2.0,1,289 +47322,175730239,Queens,Sunnyside,40.739020000000004,-73.92685999999999,Private room,59,3,2,2.0,12,353 +47323,268149976,Queens,Elmhurst,40.7315,-73.87931,Private room,35,1,2,2.0,1,23 +47324,96608840,Brooklyn,Bushwick,40.68434,-73.9064,Entire home/apt,90,3,1,1.0,1,329 +47325,141211593,Queens,Forest Hills,40.71655,-73.85219000000001,Entire home/apt,250,5,0,,1,53 +47326,50506922,Brooklyn,Clinton Hill,40.68927,-73.96542,Entire home/apt,125,3,0,,1,31 +47327,1172202,Queens,Ditmars Steinway,40.77012,-73.90919,Private room,80,1,0,,5,19 +47328,268465931,Brooklyn,Williamsburg,40.7043,-73.94285,Entire home/apt,200,2,1,1.0,1,338 +47329,268468020,Brooklyn,East Flatbush,40.641,-73.93467,Entire home/apt,98,1,0,,2,88 +47330,20086738,Brooklyn,Bedford-Stuyvesant,40.680279999999996,-73.91829,Private room,105,2,0,,2,17 +47331,268491219,Manhattan,Two Bridges,40.71143,-73.99557,Entire home/apt,285,2,0,,1,338 +47332,5028297,Brooklyn,Fort Greene,40.69416,-73.9809,Private room,159,2,1,1.0,1,327 +47333,268207118,Manhattan,Midtown,40.75959,-73.96473,Entire home/apt,279,3,2,2.0,1,244 +47334,38209756,Brooklyn,Clinton Hill,40.69382,-73.96644,Private room,60,1,0,,1,9 +47335,57627694,Manhattan,Harlem,40.82339,-73.95106,Entire home/apt,91,1,0,,1,50 +47336,268537798,Queens,Jackson Heights,40.7486,-73.88469,Private room,99,2,0,,1,90 +47337,67433858,Manhattan,East Harlem,40.78991,-73.94816,Entire home/apt,130,3,0,,1,38 +47338,96659533,Brooklyn,Bushwick,40.69429,-73.91385,Private room,70,2,2,2.0,2,331 +47339,13830544,Brooklyn,Bedford-Stuyvesant,40.69386,-73.93256,Private room,52,4,1,1.0,3,325 +47340,22382915,Brooklyn,Bedford-Stuyvesant,40.69207,-73.93833000000001,Private room,69,2,0,,1,0 +47341,6712411,Brooklyn,Bedford-Stuyvesant,40.68273,-73.9193,Entire home/apt,118,2,3,3.0,1,101 +47342,175730239,Queens,Sunnyside,40.740829999999995,-73.92820999999999,Shared room,30,3,0,,12,360 +47343,17426621,Brooklyn,South Slope,40.66438,-73.97931,Entire home/apt,195,4,0,,1,39 +47344,4205261,Brooklyn,Clinton Hill,40.687290000000004,-73.96766,Entire home/apt,125,2,0,,2,37 +47345,268572259,Brooklyn,Bushwick,40.70322,-73.92718,Private room,79,30,1,1.0,3,297 +47346,238324936,Manhattan,Hell's Kitchen,40.765,-73.98737,Entire home/apt,300,1,0,,3,334 +47347,175730239,Queens,Sunnyside,40.739959999999996,-73.92829,Shared room,30,3,2,2.0,12,354 +47348,268572259,Brooklyn,Bushwick,40.70483,-73.92565,Private room,79,30,1,1.0,3,365 +47349,268135013,Brooklyn,Bushwick,40.69624,-73.92554,Private room,59,1,4,4.0,6,160 +47350,35741633,Queens,Long Island City,40.74869,-73.94294000000001,Entire home/apt,2000,1,0,,1,365 +47351,175730239,Queens,Sunnyside,40.74064,-73.92871,Shared room,30,3,0,,12,351 +47352,16342788,Brooklyn,Williamsburg,40.7069,-73.94521,Private room,79,1,0,,2,342 +47353,268585880,Brooklyn,Williamsburg,40.71564,-73.94497,Entire home/apt,80,1,0,,2,2 +47354,89862690,Manhattan,Harlem,40.81395,-73.94199,Private room,75,1,1,1.0,1,65 +47355,22071068,Brooklyn,Williamsburg,40.70929,-73.96889,Private room,115,1,0,,1,90 +47356,175730239,Queens,Sunnyside,40.74088,-73.92726,Shared room,30,3,1,1.0,12,358 +47357,266833571,Manhattan,Chelsea,40.7503,-73.99746,Entire home/apt,175,3,3,3.0,1,49 +47358,175730239,Queens,Sunnyside,40.7389,-73.92792,Private room,89,1,0,,12,365 +47359,36649618,Manhattan,Lower East Side,40.717220000000005,-73.98388,Private room,150,1,2,2.0,1,58 +47360,175730239,Queens,Sunnyside,40.739000000000004,-73.92796,Shared room,30,3,0,,12,360 +47361,141059668,Manhattan,Midtown,40.75237,-73.97091999999999,Entire home/apt,150,1,0,,1,223 +47362,268585880,Brooklyn,Williamsburg,40.716590000000004,-73.94397,Entire home/apt,80,1,0,,2,1 +47363,104151293,Manhattan,East Harlem,40.80921,-73.94019,Entire home/apt,160,1,1,1.0,1,26 +47364,6270968,Brooklyn,Bedford-Stuyvesant,40.683640000000004,-73.94067,Private room,43,3,0,,2,320 +47365,12549759,Brooklyn,Bedford-Stuyvesant,40.68575,-73.92045999999999,Entire home/apt,260,2,1,1.0,2,36 +47366,224731704,Manhattan,Hell's Kitchen,40.7655,-73.98871,Entire home/apt,300,1,0,,3,350 +47367,41833764,Manhattan,Midtown,40.751740000000005,-73.9706,Entire home/apt,145,1,1,1.0,1,277 +47368,253334687,Manhattan,Nolita,40.72226,-73.99351,Entire home/apt,400,3,3,3.0,1,312 +47369,175730239,Queens,Sunnyside,40.73883,-73.92698,Shared room,30,3,2,2.0,12,327 +47370,218335154,Manhattan,Midtown,40.743390000000005,-73.98205,Entire home/apt,250,1,0,,2,360 +47371,218335154,Manhattan,Midtown,40.74335,-73.98286999999999,Entire home/apt,250,1,3,3.0,2,360 +47372,24294179,Queens,Ridgewood,40.70084,-73.90843000000001,Private room,48,1,2,2.0,1,17 +47373,229725669,Brooklyn,Williamsburg,40.7113,-73.9576,Entire home/apt,400,3,0,,1,359 +47374,63272360,Queens,Woodhaven,40.6935,-73.86837,Entire home/apt,145,3,0,,6,8 +47375,136408243,Brooklyn,Midwood,40.61354,-73.96316,Private room,140,1,0,,1,364 +47376,63272360,Queens,Woodhaven,40.69343,-73.86745,Private room,60,3,0,,6,50 +47377,143959643,Manhattan,Midtown,40.75284,-73.97088000000001,Entire home/apt,145,1,0,,1,310 +47378,268614079,Manhattan,East Village,40.72513,-73.9839,Entire home/apt,315,5,2,2.0,1,160 +47379,112799848,Manhattan,Hell's Kitchen,40.76433,-73.993,Entire home/apt,300,1,0,,3,342 +47380,10061222,Queens,Astoria,40.75909,-73.92227,Private room,95,1,0,,1,355 +47381,4210130,Manhattan,East Village,40.72438,-73.98901,Entire home/apt,199,3,6,6.0,1,98 +47382,12061757,Brooklyn,Brownsville,40.67511,-73.90836,Entire home/apt,100,2,0,,1,53 +47383,63272360,Queens,Woodhaven,40.69482,-73.86747,Private room,60,3,0,,6,41 +47384,268352337,Manhattan,Hell's Kitchen,40.76494,-73.98874,Entire home/apt,250,1,0,,2,360 +47385,268276813,Manhattan,Hell's Kitchen,40.76565,-73.99391999999999,Private room,150,1,0,,3,365 +47386,12549759,Brooklyn,Bedford-Stuyvesant,40.68656,-73.91920999999999,Entire home/apt,160,4,2,2.0,2,34 +47387,259207391,Queens,Jamaica,40.676320000000004,-73.79856,Private room,70,1,3,3.0,3,174 +47388,268276813,Manhattan,Hell's Kitchen,40.7639,-73.99542,Private room,150,1,0,,3,362 +47389,268627924,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95348,Shared room,90,3,0,,1,38 +47390,268276813,Manhattan,Hell's Kitchen,40.7645,-73.99434000000001,Entire home/apt,300,1,0,,3,362 +47391,11503187,Brooklyn,Prospect-Lefferts Gardens,40.66085,-73.95586,Entire home/apt,1400,10,1,1.0,1,17 +47392,268631641,Manhattan,East Village,40.72198,-73.97678,Private room,97,1,1,1.0,1,1 +47393,75285802,Manhattan,East Harlem,40.78861,-73.94523000000001,Entire home/apt,150,4,0,,2,35 +47394,261761196,Manhattan,Midtown,40.76542,-73.98192,Private room,300,1,0,,8,321 +47395,261761196,Manhattan,Midtown,40.765229999999995,-73.98049,Private room,250,1,0,,8,306 +47396,261761196,Manhattan,Midtown,40.76546,-73.9806,Private room,300,1,0,,8,317 +47397,268634598,Manhattan,East Village,40.72632,-73.9846,Entire home/apt,325,5,1,1.0,1,163 +47398,46662635,Queens,Jamaica,40.70477,-73.80335,Entire home/apt,44,1,3,3.0,1,330 +47399,175730239,Queens,Sunnyside,40.738640000000004,-73.92728000000001,Shared room,30,3,2,2.0,12,361 +47400,71276635,Manhattan,Washington Heights,40.83571,-73.94179,Entire home/apt,750,1,1,1.0,5,364 +47401,208559533,Brooklyn,Bedford-Stuyvesant,40.69528,-73.95603,Shared room,115,1,0,,1,89 +47402,101771985,Manhattan,Harlem,40.8076,-73.94886,Private room,80,1,0,,3,127 +47403,7169907,Manhattan,Financial District,40.704240000000006,-74.00789,Entire home/apt,135,2,2,2.0,1,2 +47404,233050530,Queens,Woodside,40.74568,-73.90844,Private room,49,2,0,,1,177 +47405,268657406,Manhattan,East Harlem,40.80935,-73.93812,Private room,270,1,3,3.0,1,30 +47406,17601262,Brooklyn,East Flatbush,40.6509,-73.95108,Entire home/apt,200,3,0,,2,324 +47407,10086230,Brooklyn,Williamsburg,40.7113,-73.95395,Entire home/apt,200,10,0,,1,27 +47408,63513465,Manhattan,East Harlem,40.803470000000004,-73.93522,Private room,70,1,0,,1,314 +47409,175730239,Queens,Sunnyside,40.739129999999996,-73.92692,Shared room,30,3,0,,12,359 +47410,264676469,Bronx,Highbridge,40.83163,-73.93077,Private room,80,1,1,1.0,1,2 +47411,5678260,Manhattan,Nolita,40.72165,-73.99584,Entire home/apt,249,3,0,,1,85 +47412,257033785,Manhattan,Upper West Side,40.77219,-73.98991,Entire home/apt,400,2,0,,1,15 +47413,268271871,Manhattan,Chelsea,40.74499,-74.00704,Entire home/apt,399,3,1,1.0,1,179 +47414,175730239,Queens,Sunnyside,40.73997,-73.92655,Shared room,30,3,1,1.0,12,345 +47415,175730239,Queens,Sunnyside,40.74033,-73.92645999999999,Shared room,30,3,2,2.0,12,350 +47416,128843123,Brooklyn,East New York,40.667840000000005,-73.88575,Private room,45,1,0,,2,365 +47417,76407060,Manhattan,East Village,40.72503,-73.98546,Entire home/apt,295,1,1,1.0,1,11 +47418,267483864,Manhattan,Murray Hill,40.74457,-73.97493,Entire home/apt,449,1,1,1.0,1,216 +47419,14563616,Manhattan,Chelsea,40.73724,-73.99429,Entire home/apt,249,1,5,5.0,2,125 +47420,128843123,Brooklyn,East New York,40.66588,-73.891,Private room,48,1,1,1.0,2,334 +47421,1221359,Manhattan,Lower East Side,40.72076,-73.98843000000001,Entire home/apt,400,5,0,,1,173 +47422,265422938,Queens,Long Island City,40.746390000000005,-73.9435,Private room,149,2,0,,2,23 +47423,222287033,Brooklyn,Williamsburg,40.71151,-73.96515,Entire home/apt,350,3,2,2.0,5,347 +47424,21942647,Queens,Long Island City,40.75777,-73.93509,Private room,125,1,0,,1,358 +47425,26935419,Brooklyn,Brighton Beach,40.5771,-73.96499,Private room,120,1,0,,1,252 +47426,11490581,Manhattan,Hell's Kitchen,40.75292,-73.99486999999999,Entire home/apt,249,2,1,1.0,1,7 +47427,268294305,Manhattan,Hell's Kitchen,40.75499,-73.99436999999999,Entire home/apt,299,3,0,,1,237 +47428,122178596,Brooklyn,Flatlands,40.62948,-73.94088,Entire home/apt,195,2,0,,3,80 +47429,268468020,Brooklyn,East Flatbush,40.64262,-73.93621,Private room,101,1,0,,2,116 +47430,268757078,Brooklyn,East Flatbush,40.6456,-73.95065,Private room,40,1,1,1.0,2,151 +47431,101771985,Manhattan,Harlem,40.806090000000005,-73.9484,Private room,90,1,0,,3,121 +47432,268757078,Brooklyn,East Flatbush,40.64457,-73.94915,Private room,35,1,3,3.0,2,171 +47433,102263916,Staten Island,Tompkinsville,40.63281,-74.09132,Private room,50,1,4,4.0,2,84 +47434,268784513,Queens,East Elmhurst,40.75938,-73.88219000000001,Private room,70,1,8,8.0,3,342 +47435,83934468,Manhattan,Upper East Side,40.781490000000005,-73.95168000000001,Entire home/apt,400,14,0,,1,25 +47436,268796947,Queens,Long Island City,40.75267,-73.93111,Private room,59,1,0,,5,351 +47437,28580275,Manhattan,Midtown,40.75823,-73.96509,Entire home/apt,290,1,0,,4,286 +47438,268198789,Brooklyn,Cypress Hills,40.67804,-73.86761,Private room,48,2,1,1.0,2,348 +47439,220125576,Queens,Ozone Park,40.6726,-73.84567,Entire home/apt,85,3,1,1.0,3,52 +47440,110644265,Queens,Rego Park,40.72733,-73.86046999999999,Entire home/apt,75,1,2,2.0,1,1 +47441,10690947,Brooklyn,Bushwick,40.687870000000004,-73.90601,Private room,60,2,0,,1,20 +47442,245781620,Bronx,Kingsbridge,40.885870000000004,-73.89865,Private room,80,4,0,,1,87 +47443,26781753,Manhattan,Nolita,40.72247,-73.99473,Private room,95,7,0,,1,125 +47444,9510645,Brooklyn,Bushwick,40.70205,-73.92798,Entire home/apt,225,2,0,,2,161 +47445,3741794,Queens,Sunnyside,40.74709,-73.9138,Entire home/apt,150,5,0,,1,359 +47446,268832581,Brooklyn,Downtown Brooklyn,40.69733,-73.98427,Private room,90,1,0,,1,189 +47447,140665873,Queens,Jamaica Estates,40.71797,-73.78478,Private room,50,1,3,3.0,1,179 +47448,4129805,Manhattan,West Village,40.732859999999995,-74.00244,Entire home/apt,175,2,2,2.0,5,79 +47449,4955986,Manhattan,Midtown,40.76364,-73.97589,Entire home/apt,249,2,0,,1,253 +47450,268838097,Manhattan,Murray Hill,40.74889,-73.9747,Entire home/apt,399,5,0,,1,208 +47451,6524762,Manhattan,Midtown,40.76303,-73.97896,Entire home/apt,380,1,0,,3,364 +47452,268847927,Manhattan,Hell's Kitchen,40.762,-73.99158,Entire home/apt,399,3,0,,1,218 +47453,145406361,Queens,Jamaica,40.684740000000005,-73.79196999999999,Entire home/apt,79,1,0,,1,167 +47454,122178596,Brooklyn,Flatlands,40.62806,-73.94136999999999,Entire home/apt,649,1,0,,3,64 +47455,268852377,Brooklyn,Bedford-Stuyvesant,40.698190000000004,-73.94719,Entire home/apt,160,2,1,1.0,1,347 +47456,6524762,Manhattan,Midtown,40.76218,-73.98002,Entire home/apt,380,2,0,,3,2 +47457,181773256,Manhattan,Midtown,40.7509,-73.98557,Entire home/apt,450,1,0,,1,65 +47458,265866685,Brooklyn,Bushwick,40.697959999999995,-73.92915,Entire home/apt,198,30,0,,2,179 +47459,268868462,Brooklyn,Greenpoint,40.7309,-73.95969000000001,Private room,200,4,0,,1,365 +47460,267405973,Queens,Ridgewood,40.701409999999996,-73.90415,Entire home/apt,195,18,0,,2,347 +47461,73670512,Brooklyn,Gravesend,40.59301,-73.975,Entire home/apt,140,3,3,3.0,2,222 +47462,261187437,Brooklyn,Borough Park,40.63524,-74.0039,Private room,55,1,1,1.0,6,358 +47463,258885293,Brooklyn,East Flatbush,40.65937,-73.9348,Private room,59,1,3,3.0,1,343 +47464,245830692,Queens,Long Island City,40.74776,-73.93869000000001,Private room,65,2,3,3.0,1,26 +47465,265901814,Manhattan,West Village,40.73638,-74.00057,Private room,125,2,0,,2,180 +47466,129797713,Queens,Astoria,40.76375,-73.91060999999999,Private room,70,7,0,,1,222 +47467,22134437,Brooklyn,Greenpoint,40.722559999999994,-73.94889,Private room,85,2,2,2.0,1,103 +47468,15020878,Manhattan,East Harlem,40.80622,-73.93875,Entire home/apt,115,2,0,,1,3 +47469,127927020,Brooklyn,Crown Heights,40.67442,-73.92949,Private room,50,1,4,4.0,3,364 +47470,127927020,Brooklyn,Crown Heights,40.67615,-73.93046,Private room,50,1,5,5.0,3,361 +47471,127927020,Brooklyn,Crown Heights,40.67631,-73.92912,Private room,58,1,2,2.0,3,363 +47472,180237401,Manhattan,Chelsea,40.74443,-73.9967,Entire home/apt,200,4,0,,1,31 +47473,2351947,Manhattan,Lower East Side,40.72065,-73.98733,Entire home/apt,280,2,0,,1,17 +47474,18288234,Manhattan,Hell's Kitchen,40.76035,-73.99039,Entire home/apt,379,3,0,,1,333 +47475,181143,Manhattan,Financial District,40.71013,-74.00511,Entire home/apt,200,4,1,1.0,1,108 +47476,21299191,Brooklyn,Bedford-Stuyvesant,40.687940000000005,-73.93626,Private room,175,2,3,3.0,1,358 +47477,261451511,Manhattan,Upper West Side,40.785270000000004,-73.97623,Private room,150,2,3,3.0,1,21 +47478,50278442,Manhattan,Morningside Heights,40.805279999999996,-73.96547,Private room,70,30,0,,3,328 +47479,122178596,Brooklyn,Flatlands,40.629870000000004,-73.94266999999999,Entire home/apt,80,2,0,,3,65 +47480,188498431,Queens,Sunnyside,40.7388,-73.92282,Private room,65,2,3,3.0,6,347 +47481,44138549,Manhattan,Chelsea,40.74357,-73.99750999999999,Entire home/apt,260,5,0,,1,17 +47482,266770733,Manhattan,Inwood,40.85988,-73.92703,Private room,50,2,1,1.0,1,11 +47483,269055881,Manhattan,West Village,40.73243,-74.00333,Private room,160,3,1,1.0,1,52 +47484,433917,Brooklyn,Bedford-Stuyvesant,40.67913,-73.94872,Entire home/apt,100,3,0,,1,28 +47485,94214493,Brooklyn,East Flatbush,40.65643,-73.91875,Private room,80,7,0,,9,365 +47486,148004680,Brooklyn,Midwood,40.62245,-73.9696,Private room,35,1,1,1.0,1,50 +47487,7761295,Manhattan,Gramercy,40.73808,-73.98325,Private room,85,2,0,,1,12 +47488,269070501,Brooklyn,Red Hook,40.67887,-74.00582,Entire home/apt,100,1,0,,1,43 +47489,260891097,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95333000000001,Private room,75,2,0,,2,88 +47490,2448443,Manhattan,Murray Hill,40.748490000000004,-73.97708,Entire home/apt,140,3,1,1.0,1,3 +47491,268205314,Manhattan,Chinatown,40.71598,-73.99549,Entire home/apt,299,1,2,2.0,1,334 +47492,269078087,Manhattan,East Harlem,40.79846,-73.93359,Private room,62,1,4,4.0,1,7 +47493,268896283,Manhattan,Harlem,40.81566,-73.94174,Private room,45,1,1,1.0,2,73 +47494,238908845,Brooklyn,Bushwick,40.69328,-73.92085,Private room,55,2,0,,1,5 +47495,41829977,Queens,Elmhurst,40.74638,-73.87353,Private room,99,1,0,,2,161 +47496,21261408,Brooklyn,Clinton Hill,40.68991,-73.96132,Private room,130,1,2,2.0,6,345 +47497,251817531,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95456999999999,Entire home/apt,300,2,0,,4,275 +47498,269095308,Manhattan,East Harlem,40.79234,-73.94592,Private room,75,4,1,1.0,1,24 +47499,18142449,Brooklyn,Bedford-Stuyvesant,40.68743,-73.95257,Entire home/apt,350,5,0,,1,22 +47500,37888781,Brooklyn,Bedford-Stuyvesant,40.67884,-73.92611,Entire home/apt,195,2,1,1.0,1,71 +47501,178036911,Brooklyn,Bedford-Stuyvesant,40.68298,-73.9298,Private room,60,1,4,4.0,2,354 +47502,269105402,Queens,Long Island City,40.760490000000004,-73.9288,Entire home/apt,110,2,2,2.0,1,21 +47503,121917249,Brooklyn,Clinton Hill,40.6941,-73.96295,Private room,70,3,0,,2,25 +47504,178036911,Brooklyn,Bedford-Stuyvesant,40.68293,-73.92924000000001,Private room,50,1,5,5.0,2,359 +47505,121917249,Brooklyn,Clinton Hill,40.693329999999996,-73.965,Private room,80,7,0,,2,37 +47506,146776990,Brooklyn,East Flatbush,40.65465,-73.93383,Shared room,33,31,0,,4,41 +47507,264272029,Brooklyn,East Flatbush,40.63673,-73.94988000000001,Entire home/apt,399,2,2,2.0,1,161 +47508,20049684,Manhattan,Chelsea,40.748870000000004,-74.00498,Entire home/apt,350,3,0,,1,328 +47509,269121359,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95832,Private room,100,10,0,,1,59 +47510,25490213,Brooklyn,Greenpoint,40.72549,-73.94912,Private room,95,2,1,1.0,1,67 +47511,221012726,Queens,Long Island City,40.747859999999996,-73.93889,Private room,46,1,0,,1,6 +47512,117987098,Brooklyn,Kensington,40.63293,-73.97117,Private room,86,2,0,,1,365 +47513,98662265,Manhattan,Midtown,40.750609999999995,-73.97233,Private room,85,1,1,1.0,1,43 +47514,37140959,Manhattan,East Village,40.722809999999996,-73.98099,Private room,66,3,0,,1,9 +47515,269193265,Manhattan,Murray Hill,40.746109999999994,-73.97399999999999,Private room,105,1,1,1.0,1,38 +47516,20024538,Staten Island,Arrochar,40.5949,-74.07084,Entire home/apt,199,1,1,1.0,1,81 +47517,269075374,Manhattan,East Harlem,40.80911,-73.93698,Private room,150,1,0,,1,7 +47518,163360671,Queens,Astoria,40.75732,-73.91557,Entire home/apt,135,3,0,,1,227 +47519,258094448,Queens,Astoria,40.759159999999994,-73.92541,Entire home/apt,120,3,0,,1,105 +47520,59521234,Brooklyn,Crown Heights,40.66986,-73.95598000000001,Entire home/apt,120,1,0,,1,14 +47521,89629761,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,89,2,0,,1,37 +47522,258089128,Queens,Astoria,40.76019,-73.92489,Entire home/apt,135,3,0,,1,109 +47523,29340158,Manhattan,Upper West Side,40.79618,-73.96311999999999,Private room,43,10,0,,1,128 +47524,1238383,Manhattan,Greenwich Village,40.72935,-73.99934,Entire home/apt,500,4,0,,1,74 +47525,198020385,Brooklyn,Flatbush,40.63704,-73.96693,Entire home/apt,130,3,2,2.0,1,33 +47526,257680857,Queens,Long Island City,40.7537,-73.93505,Entire home/apt,139,3,0,,1,105 +47527,28103718,Manhattan,East Village,40.7319,-73.98980999999999,Private room,150,3,1,1.0,1,209 +47528,219517861,Manhattan,Financial District,40.70831,-74.00641999999999,Entire home/apt,180,29,0,,327,342 +47529,219517861,Manhattan,Financial District,40.70833,-74.00497,Entire home/apt,270,29,0,,327,350 +47530,189808492,Brooklyn,Flatbush,40.63771,-73.9672,Private room,70,3,0,,1,38 +47531,106798652,Brooklyn,Bushwick,40.69554,-73.92511,Private room,130,1,0,,2,365 +47532,23715245,Manhattan,Lower East Side,40.71976,-73.98397,Entire home/apt,275,2,1,1.0,1,12 +47533,221213143,Manhattan,Kips Bay,40.74297,-73.98195,Entire home/apt,650,1,0,,9,302 +47534,33213436,Brooklyn,Gowanus,40.68019,-73.98408,Private room,160,1,1,1.0,8,364 +47535,81957771,Brooklyn,Bushwick,40.703179999999996,-73.92636,Entire home/apt,120,3,0,,1,177 +47536,61396454,Manhattan,Midtown,40.75508,-73.96379,Entire home/apt,220,30,0,,14,343 +47537,61396454,Manhattan,Midtown,40.755179999999996,-73.96306,Entire home/apt,190,30,0,,14,365 +47538,149334307,Manhattan,Washington Heights,40.839009999999995,-73.93943,Private room,61,1,1,1.0,1,268 +47539,33144953,Manhattan,Nolita,40.72206,-73.99695,Entire home/apt,189,4,0,,1,317 +47540,2113042,Brooklyn,Bedford-Stuyvesant,40.694140000000004,-73.94073,Private room,70,3,1,1.0,1,65 +47541,269264973,Manhattan,Midtown,40.759029999999996,-73.96669,Entire home/apt,199,7,0,,1,134 +47542,216289751,Manhattan,Midtown,40.7518,-73.97158,Entire home/apt,145,3,0,,1,62 +47543,37424221,Brooklyn,Downtown Brooklyn,40.69677,-73.98155,Private room,100,2,0,,1,365 +47544,51589519,Manhattan,Midtown,40.757259999999995,-73.96670999999999,Entire home/apt,180,28,0,,1,338 +47545,243288727,Manhattan,Hell's Kitchen,40.76965,-73.99001,Entire home/apt,190,30,0,,7,353 +47546,243288727,Manhattan,Hell's Kitchen,40.76783,-73.98846999999999,Entire home/apt,190,30,0,,7,267 +47547,57888148,Brooklyn,East Flatbush,40.662420000000004,-73.92833,Private room,70,1,0,,1,325 +47548,268680530,Manhattan,Upper East Side,40.77587,-73.95308,Entire home/apt,1100,4,0,,1,270 +47549,243288727,Manhattan,Hell's Kitchen,40.76896,-73.98908,Entire home/apt,190,30,0,,7,348 +47550,26802715,Queens,Flushing,40.7664,-73.8227,Private room,49,4,0,,2,63 +47551,243288727,Manhattan,Hell's Kitchen,40.76793,-73.9882,Entire home/apt,190,30,0,,7,354 +47552,73676969,Bronx,Williamsbridge,40.87852,-73.85003,Private room,36,2,2,2.0,3,47 +47553,269312373,Manhattan,Upper East Side,40.760740000000006,-73.96015,Entire home/apt,340,30,0,,2,332 +47554,243288727,Manhattan,Hell's Kitchen,40.76285,-73.98653,Entire home/apt,300,30,0,,7,310 +47555,243288727,Manhattan,Hell's Kitchen,40.76364,-73.98694,Entire home/apt,300,30,0,,7,310 +47556,256911412,Brooklyn,Williamsburg,40.70469,-73.9369,Entire home/apt,101,4,0,,1,27 +47557,243288727,Manhattan,Hell's Kitchen,40.76192,-73.98696,Entire home/apt,190,30,0,,7,311 +47558,138150256,Brooklyn,Greenpoint,40.73171,-73.95374,Private room,50,3,0,,2,0 +47559,119110280,Queens,Sunnyside,40.74175,-73.91409,Private room,50,1,4,4.0,1,82 +47560,77196523,Manhattan,Harlem,40.82936,-73.9493,Private room,80,2,0,,1,15 +47561,133005440,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95823,Entire home/apt,125,2,1,1.0,2,342 +47562,178272943,Queens,Jamaica,40.67207,-73.78094,Private room,60,1,2,2.0,4,79 +47563,269312373,Manhattan,Upper East Side,40.761390000000006,-73.9625,Entire home/apt,200,30,0,,2,365 +47564,35616021,Brooklyn,Bedford-Stuyvesant,40.68477,-73.9509,Private room,40,2,1,1.0,1,1 +47565,73676969,Bronx,Williamsbridge,40.87877,-73.85044,Private room,55,2,0,,3,35 +47566,5825467,Queens,Astoria,40.76215,-73.91973,Shared room,110,1,1,1.0,1,21 +47567,269345151,Brooklyn,Crown Heights,40.67221,-73.94847,Entire home/apt,100,2,0,,1,87 +47568,269345069,Brooklyn,Vinegar Hill,40.70112,-73.98402,Entire home/apt,225,2,1,1.0,1,303 +47569,44245355,Brooklyn,Bushwick,40.68898,-73.91358000000001,Private room,60,7,0,,1,24 +47570,10745276,Manhattan,Hell's Kitchen,40.75993,-73.99074,Entire home/apt,225,2,0,,1,270 +47571,269297229,Brooklyn,Williamsburg,40.71394,-73.96301,Entire home/apt,199,5,0,,1,213 +47572,23196609,Brooklyn,Bedford-Stuyvesant,40.69386,-73.94192,Entire home/apt,100,4,0,,2,0 +47573,244536777,Manhattan,Harlem,40.81745,-73.94440999999999,Entire home/apt,225,3,0,,2,235 +47574,2367604,Queens,Ridgewood,40.70694,-73.91552,Private room,50,1,0,,1,67 +47575,25544585,Queens,Rockaway Beach,40.5847,-73.81387,Entire home/apt,250,2,0,,1,52 +47576,269372955,Manhattan,Upper West Side,40.7875,-73.97511,Entire home/apt,350,4,0,,1,324 +47577,76572037,Manhattan,Battery Park City,40.70964,-74.01798000000001,Entire home/apt,199,1,0,,1,43 +47578,269377869,Manhattan,Upper East Side,40.77223,-73.95082,Entire home/apt,350,4,0,,1,337 +47579,269375490,Brooklyn,Canarsie,40.64567,-73.89090999999999,Private room,45,1,7,7.0,1,68 +47580,24342773,Brooklyn,Bushwick,40.70534,-73.92357,Private room,65,1,1,1.0,1,188 +47581,242152267,Brooklyn,Greenpoint,40.7199,-73.95085,Entire home/apt,199,14,0,,1,21 +47582,269220629,Brooklyn,Crown Heights,40.67671,-73.93991,Entire home/apt,169,4,0,,1,324 +47583,102292061,Brooklyn,Sheepshead Bay,40.586240000000004,-73.9448,Private room,50,1,5,5.0,3,85 +47584,185968630,Brooklyn,Williamsburg,40.71115,-73.94371,Entire home/apt,210,3,1,1.0,1,254 +47585,269401661,Manhattan,Murray Hill,40.74942,-73.9817,Entire home/apt,95,1,7,7.0,1,54 +47586,211196034,Manhattan,Hell's Kitchen,40.75895,-73.99509,Private room,189,4,1,1.0,1,8 +47587,226970380,Manhattan,East Village,40.72555,-73.98198000000001,Entire home/apt,145,1,3,3.0,1,84 +47588,104905299,Brooklyn,Williamsburg,40.7069,-73.9436,Entire home/apt,159,14,0,,1,345 +47589,255306962,Manhattan,Midtown,40.7624,-73.9693,Entire home/apt,299,30,2,2.0,1,248 +47590,262583834,Brooklyn,Bedford-Stuyvesant,40.690690000000004,-73.9298,Entire home/apt,399,3,3,3.0,1,235 +47591,3599030,Brooklyn,Crown Heights,40.67555,-73.95298000000001,Private room,85,2,0,,1,363 +47592,269470349,Brooklyn,Bushwick,40.70146,-73.91932,Entire home/apt,75,2,3,3.0,1,163 +47593,240141402,Manhattan,East Village,40.72607,-73.97622,Entire home/apt,145,4,0,,1,26 +47594,269308830,Manhattan,Hell's Kitchen,40.75395,-73.99593,Entire home/apt,168,5,0,,1,50 +47595,257647514,Brooklyn,Bushwick,40.69185,-73.91073,Entire home/apt,150,3,1,1.0,2,21 +47596,138729500,Queens,Astoria,40.760670000000005,-73.9198,Entire home/apt,225,2,2,2.0,1,277 +47597,213156539,Manhattan,Hell's Kitchen,40.76171,-73.98728,Entire home/apt,177,2,1,1.0,1,125 +47598,217852396,Manhattan,West Village,40.73895,-74.00268,Entire home/apt,199,5,0,,1,122 +47599,269499114,Brooklyn,Sheepshead Bay,40.60467,-73.94243,Entire home/apt,139,1,5,5.0,1,162 +47600,64185868,Brooklyn,Bedford-Stuyvesant,40.67822,-73.90938,Private room,50,5,1,1.0,1,32 +47601,221200420,Manhattan,Murray Hill,40.745540000000005,-73.97368,Entire home/apt,300,30,0,,23,349 +47602,221200420,Manhattan,Murray Hill,40.748329999999996,-73.97253,Entire home/apt,280,30,0,,23,336 +47603,219908197,Brooklyn,Williamsburg,40.71693,-73.94266999999999,Entire home/apt,295,2,1,1.0,3,354 +47604,221200420,Manhattan,Murray Hill,40.74964,-73.97203,Entire home/apt,280,30,0,,23,336 +47605,393473,Brooklyn,Bedford-Stuyvesant,40.692209999999996,-73.95168000000001,Entire home/apt,116,2,4,4.0,2,156 +47606,263205756,Manhattan,Midtown,40.75229,-73.96953,Entire home/apt,155,1,2,2.0,1,300 +47607,20053314,Manhattan,Midtown,40.75161,-73.97025,Entire home/apt,175,1,0,,1,250 +47608,6346488,Brooklyn,Bedford-Stuyvesant,40.682179999999995,-73.92129,Private room,120,2,1,1.0,1,97 +47609,256479489,Brooklyn,Bath Beach,40.60544,-74.00137,Private room,59,1,0,,2,364 +47610,79008205,Manhattan,Midtown,40.751090000000005,-73.97086,Entire home/apt,155,1,0,,2,244 +47611,79008205,Manhattan,Midtown,40.75225,-73.97107,Entire home/apt,165,1,0,,2,330 +47612,116535992,Brooklyn,Park Slope,40.67853,-73.97749,Entire home/apt,250,5,0,,1,14 +47613,142408357,Manhattan,Midtown,40.75209,-73.96944,Entire home/apt,165,1,0,,1,341 +47614,95000637,Manhattan,Gramercy,40.73592,-73.98993,Entire home/apt,295,2,1,1.0,1,0 +47615,20788222,Manhattan,Harlem,40.81216,-73.95036,Private room,150,1,1,1.0,1,59 +47616,268445572,Manhattan,Financial District,40.70662,-74.00258000000001,Entire home/apt,750,3,0,,1,352 +47617,5900670,Brooklyn,Williamsburg,40.714009999999995,-73.96571999999999,Entire home/apt,140,4,0,,1,24 +47618,359692,Brooklyn,Clinton Hill,40.69229,-73.96774,Entire home/apt,115,2,1,1.0,1,26 +47619,35733814,Manhattan,West Village,40.73559,-73.99985,Entire home/apt,199,30,0,,1,340 +47620,82674375,Brooklyn,Williamsburg,40.70898,-73.94885,Entire home/apt,140,500,0,,1,331 +47621,47131399,Brooklyn,Bedford-Stuyvesant,40.67925,-73.94286,Private room,80,1,1,1.0,1,22 +47622,22550881,Manhattan,West Village,40.73895,-74.00393000000001,Entire home/apt,151,1,1,1.0,1,8 +47623,24933402,Brooklyn,Williamsburg,40.71582,-73.9573,Private room,75,9,0,,1,310 +47624,269242923,Manhattan,Kips Bay,40.7449,-73.97888,Entire home/apt,288,5,2,2.0,1,74 +47625,269114687,Brooklyn,Williamsburg,40.71799,-73.95826,Entire home/apt,188,5,1,1.0,1,51 +47626,73612539,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94969,Entire home/apt,195,2,0,,2,7 +47627,8066407,Manhattan,Harlem,40.79981,-73.95436,Entire home/apt,250,4,0,,1,13 +47628,23831257,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92931,Private room,50,7,0,,2,214 +47629,106823925,Brooklyn,Downtown Brooklyn,40.68886,-73.98303,Entire home/apt,100,2,0,,1,69 +47630,269585762,Manhattan,Midtown,40.748940000000005,-73.98788,Entire home/apt,99,1,2,2.0,1,264 +47631,27007200,Brooklyn,Williamsburg,40.7193,-73.93993,Entire home/apt,125,7,0,,1,29 +47632,6237789,Brooklyn,Bushwick,40.69209,-73.91882,Private room,50,7,1,1.0,1,18 +47633,269592097,Staten Island,St. George,40.64244,-74.08494,Entire home/apt,78,2,0,,1,342 +47634,201153591,Queens,Astoria,40.76595,-73.92656,Entire home/apt,215,2,2,2.0,2,153 +47635,13059803,Queens,Jackson Heights,40.7574,-73.85825,Private room,60,2,2,2.0,1,326 +47636,153313824,Manhattan,Inwood,40.864709999999995,-73.92474,Private room,100,1,0,,1,365 +47637,103125301,Brooklyn,Williamsburg,40.71043,-73.95963,Entire home/apt,175,30,0,,1,154 +47638,110026,Brooklyn,Bedford-Stuyvesant,40.68034,-73.93991,Entire home/apt,87,1,0,,1,9 +47639,269606659,Brooklyn,Bushwick,40.69874,-73.92969000000001,Entire home/apt,150,2,0,,1,365 +47640,188338351,Manhattan,Hell's Kitchen,40.75654,-74.00012,Entire home/apt,177,1,5,5.0,1,86 +47641,26802715,Queens,Flushing,40.767309999999995,-73.8222,Private room,54,4,0,,2,68 +47642,2880794,Brooklyn,Park Slope,40.67757,-73.98037,Entire home/apt,115,3,1,1.0,1,29 +47643,200782217,Manhattan,Chelsea,40.74325,-73.99528000000001,Entire home/apt,223,3,0,,1,169 +47644,5339419,Manhattan,Financial District,40.71133,-74.00676,Entire home/apt,220,4,0,,1,6 +47645,5334994,Queens,Arverne,40.589209999999994,-73.79966999999999,Private room,75,2,3,3.0,1,79 +47646,13107477,Manhattan,Harlem,40.820240000000005,-73.94362,Entire home/apt,125,2,1,1.0,1,266 +47647,233756380,Manhattan,Upper East Side,40.77098,-73.9524,Entire home/apt,115,2,1,1.0,1,234 +47648,67302443,Brooklyn,Crown Heights,40.66603,-73.92925,Shared room,50,1,0,,1,314 +47649,493545,Brooklyn,Crown Heights,40.67398,-73.94669,Entire home/apt,250,1,0,,2,22 +47650,269635110,Queens,Long Island City,40.75527,-73.93125,Entire home/apt,125,2,1,1.0,1,346 +47651,161467377,Brooklyn,Bushwick,40.69689,-73.92566,Entire home/apt,189,2,1,1.0,1,24 +47652,4239407,Manhattan,Chinatown,40.71658,-73.99065,Private room,89,2,0,,2,10 +47653,266992480,Manhattan,Hell's Kitchen,40.76558,-73.98855,Entire home/apt,500,1,4,4.0,2,2 +47654,39259484,Brooklyn,Sunset Park,40.64458,-74.02001,Private room,50,2,0,,1,20 +47655,269656657,Bronx,Port Morris,40.80855,-73.92948,Entire home/apt,220,30,0,,1,180 +47656,269664482,Queens,Ridgewood,40.70774,-73.90929,Private room,60,3,0,,1,365 +47657,2196491,Manhattan,Theater District,40.75696,-73.98323,Private room,65,14,0,,3,85 +47658,2196491,Manhattan,Theater District,40.75675,-73.98514,Private room,70,14,0,,3,35 +47659,268807394,Manhattan,East Harlem,40.801429999999996,-73.93916,Private room,80,3,0,,3,205 +47660,130617332,Manhattan,Harlem,40.812259999999995,-73.94349,Private room,80,3,0,,3,187 +47661,269707834,Bronx,Wakefield,40.89198,-73.84779,Entire home/apt,309,2,0,,1,168 +47662,268572259,Brooklyn,Bushwick,40.70489,-73.92558000000001,Private room,78,30,0,,3,325 +47663,269718824,Manhattan,Harlem,40.81436,-73.95399,Private room,119,3,0,,1,5 +47664,268612146,Manhattan,Financial District,40.70762,-74.00233,Entire home/apt,600,3,0,,1,355 +47665,4107600,Brooklyn,Bushwick,40.703790000000005,-73.91708,Private room,50,2,0,,3,77 +47666,37678089,Brooklyn,Crown Heights,40.67459,-73.9576,Private room,65,1,0,,1,342 +47667,269076400,Manhattan,Greenwich Village,40.730540000000005,-74.00061,Entire home/apt,323,1,5,5.0,1,185 +47668,53648985,Brooklyn,Crown Heights,40.676120000000004,-73.93722,Entire home/apt,300,2,1,1.0,1,58 +47669,269652307,Brooklyn,Williamsburg,40.71325,-73.95874,Entire home/apt,170,1,1,1.0,1,77 +47670,23533897,Brooklyn,Crown Heights,40.6758,-73.95091,Entire home/apt,1500,2,0,,7,267 +47671,2542371,Manhattan,Upper West Side,40.79829,-73.97266,Entire home/apt,174,30,0,,1,1 +47672,15678733,Queens,Ditmars Steinway,40.773790000000005,-73.91291,Private room,56,4,0,,1,350 +47673,91926697,Queens,Long Island City,40.75943,-73.92900999999999,Entire home/apt,350,2,2,2.0,1,330 +47674,268066785,Manhattan,Midtown,40.75549,-73.96938,Entire home/apt,350,3,0,,1,280 +47675,269763887,Queens,Jamaica,40.68636,-73.78866,Entire home/apt,129,2,3,3.0,1,348 +47676,81957246,Queens,Long Island City,40.750409999999995,-73.93760999999999,Entire home/apt,175,7,1,1.0,1,17 +47677,267593494,Brooklyn,Crown Heights,40.67532,-73.90890999999999,Entire home/apt,150,3,0,,1,73 +47678,269334919,Brooklyn,Borough Park,40.639790000000005,-73.98633000000001,Entire home/apt,150,1,2,2.0,1,44 +47679,269775225,Bronx,Port Morris,40.80146,-73.91673,Private room,125,3,0,,2,365 +47680,130270076,Manhattan,East Harlem,40.78672,-73.9488,Entire home/apt,180,30,0,,2,341 +47681,269579151,Manhattan,Midtown,40.74801,-73.98592,Entire home/apt,229,3,0,,1,65 +47682,158458681,Brooklyn,Bushwick,40.69406,-73.9255,Entire home/apt,99,1,5,5.0,1,57 +47683,258654859,Brooklyn,Williamsburg,40.71735,-73.96441,Private room,80,8,1,1.0,1,157 +47684,35098529,Manhattan,Kips Bay,40.7441,-73.97683,Entire home/apt,170,30,0,,5,213 +47685,35606248,Brooklyn,Bushwick,40.70301,-73.92551999999999,Private room,63,2,0,,5,358 +47686,219517861,Manhattan,Financial District,40.70852,-74.0051,Entire home/apt,198,29,0,,327,345 +47687,219517861,Manhattan,Financial District,40.70802,-74.00641999999999,Entire home/apt,180,29,0,,327,338 +47688,269799543,Manhattan,West Village,40.73558,-74.00492,Entire home/apt,550,3,0,,1,353 +47689,226414996,Queens,Ditmars Steinway,40.7717,-73.90799,Entire home/apt,90,3,0,,2,21 +47690,5564361,Brooklyn,Greenpoint,40.73109,-73.95267,Entire home/apt,130,3,1,1.0,1,43 +47691,219517861,Manhattan,Financial District,40.70818,-74.00631,Entire home/apt,135,29,0,,327,339 +47692,219517861,Manhattan,Financial District,40.70691,-74.00681999999999,Entire home/apt,165,29,0,,327,342 +47693,219517861,Manhattan,Financial District,40.70772,-74.00673,Entire home/apt,165,29,0,,327,347 +47694,268623761,Manhattan,Upper East Side,40.76891,-73.95289,Entire home/apt,600,3,0,,1,357 +47695,72957132,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95514,Private room,70,2,0,,3,291 +47696,4521174,Brooklyn,Crown Heights,40.670320000000004,-73.93956999999999,Private room,65,7,0,,3,63 +47697,269818817,Queens,Ridgewood,40.70305,-73.89614,Entire home/apt,230,4,0,,2,142 +47698,269818165,Brooklyn,Williamsburg,40.71171,-73.9454,Private room,60,3,0,,1,0 +47699,269822898,Manhattan,Hell's Kitchen,40.76097,-74.00026,Entire home/apt,135,1,1,1.0,1,9 +47700,41434577,Manhattan,Morningside Heights,40.80413,-73.96556,Private room,49,30,0,,1,32 +47701,55190776,Manhattan,Upper East Side,40.78539,-73.95062,Entire home/apt,156,1,0,,1,7 +47702,146636596,Brooklyn,Greenpoint,40.72845,-73.95791,Entire home/apt,300,2,1,1.0,1,24 +47703,141760353,Manhattan,Chelsea,40.745259999999995,-74.00605,Entire home/apt,269,1,4,4.0,1,122 +47704,105444832,Queens,Woodhaven,40.68931,-73.85485,Private room,35,9,0,,1,246 +47705,261779182,Brooklyn,Red Hook,40.67568,-74.00997,Entire home/apt,125,2,1,1.0,2,325 +47706,269836191,Queens,Forest Hills,40.73352,-73.84721,Entire home/apt,250,2,0,,1,160 +47707,269838822,Manhattan,Harlem,40.80549,-73.95136,Private room,80,2,0,,1,352 +47708,263504959,Queens,Woodhaven,40.69298,-73.86395999999999,Private room,50,1,6,6.0,8,288 +47709,269840768,Brooklyn,Flatlands,40.62585,-73.9392,Entire home/apt,300,4,0,,1,163 +47710,269342470,Brooklyn,Borough Park,40.64116,-73.98589,Entire home/apt,67,1,1,1.0,2,48 +47711,269233466,Manhattan,East Village,40.72936,-73.98298,Entire home/apt,400,3,2,2.0,1,336 +47712,76360760,Queens,Woodside,40.744,-73.90185,Entire home/apt,169,1,0,,1,60 +47713,21364757,Brooklyn,Williamsburg,40.71775,-73.96211,Entire home/apt,75,2,0,,1,174 +47714,269840781,Queens,Maspeth,40.71673,-73.90009,Private room,140,1,0,,1,88 +47715,269266449,Brooklyn,Bushwick,40.702659999999995,-73.91723,Private room,50,7,1,1.0,1,310 +47716,35783912,Bronx,Fordham,40.86249,-73.89234,Private room,39,3,1,1.0,8,180 +47717,35783912,Bronx,Fordham,40.86427,-73.89215,Private room,39,2,1,1.0,8,175 +47718,269757415,Manhattan,Hell's Kitchen,40.765159999999995,-73.98817,Entire home/apt,350,1,4,4.0,1,164 +47719,35783912,Bronx,Fordham,40.86294,-73.89242,Entire home/apt,99,2,0,,8,343 +47720,269860794,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93748000000001,Entire home/apt,275,2,0,,1,365 +47721,110721237,Queens,Arverne,40.595490000000005,-73.78856999999999,Entire home/apt,120,1,0,,1,81 +47722,21261408,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95936,Entire home/apt,282,1,1,1.0,6,342 +47723,269867427,Brooklyn,Park Slope,40.675670000000004,-73.97683,Entire home/apt,185,1,0,,1,43 +47724,269865501,Brooklyn,Bushwick,40.69297,-73.92111,Entire home/apt,275,2,0,,3,360 +47725,6908132,Manhattan,Harlem,40.80245,-73.9583,Private room,110,1,1,1.0,1,157 +47726,10920759,Brooklyn,Bushwick,40.69397,-73.91139,Entire home/apt,90,5,0,,1,12 +47727,179237742,Brooklyn,Williamsburg,40.71698,-73.95003,Entire home/apt,299,2,2,2.0,1,298 +47728,36426894,Brooklyn,Williamsburg,40.7142,-73.96161,Private room,75,2,0,,1,282 +47729,5910667,Manhattan,Upper West Side,40.78549,-73.97188,Entire home/apt,168,2,0,,1,46 +47730,78113383,Brooklyn,Crown Heights,40.67244,-73.92267,Private room,30,7,0,,3,44 +47731,269885851,Manhattan,Lower East Side,40.72057,-73.99343,Entire home/apt,495,3,1,1.0,1,264 +47732,74031703,Manhattan,Upper East Side,40.768679999999996,-73.95166,Entire home/apt,100,1,1,1.0,1,134 +47733,78113383,Brooklyn,Crown Heights,40.67305,-73.92279,Private room,30,7,0,,3,44 +47734,45232769,Queens,Astoria,40.7668,-73.91917,Private room,79,4,0,,3,2 +47735,263317402,Bronx,Concourse Village,40.829640000000005,-73.91833000000001,Private room,53,3,0,,1,162 +47736,269893009,Brooklyn,Bay Ridge,40.632940000000005,-74.0273,Entire home/apt,595,1,4,4.0,1,57 +47737,20536889,Brooklyn,Williamsburg,40.71131,-73.96562,Entire home/apt,500,4,0,,1,358 +47738,28580275,Manhattan,Midtown,40.75795,-73.96566999999999,Entire home/apt,189,1,0,,4,351 +47739,269215864,Manhattan,Hell's Kitchen,40.76405,-73.99004000000001,Entire home/apt,299,4,0,,1,95 +47740,89919417,Brooklyn,Williamsburg,40.710190000000004,-73.95739,Private room,70,1,1,1.0,1,46 +47741,128175450,Manhattan,Hell's Kitchen,40.77122,-73.99356,Entire home/apt,350,2,0,,1,179 +47742,193256713,Manhattan,Kips Bay,40.737629999999996,-73.97368,Entire home/apt,80,1,0,,1,1 +47743,269901856,Queens,Ozone Park,40.67405,-73.85401999999999,Private room,80,15,0,,1,61 +47744,269775225,Bronx,Port Morris,40.80087,-73.91635,Private room,100,3,0,,2,365 +47745,269970642,Manhattan,Harlem,40.80778,-73.94762,Entire home/apt,200,120,0,,1,365 +47746,170566147,Manhattan,East Village,40.72573,-73.98414,Entire home/apt,180,3,2,2.0,1,291 +47747,1576926,Brooklyn,Bedford-Stuyvesant,40.6906,-73.94986,Private room,45,3,1,1.0,1,116 +47748,133372725,Manhattan,West Village,40.73421,-74.00321,Entire home/apt,750,1,0,,1,5 +47749,263504959,Queens,Woodhaven,40.69311,-73.86525999999999,Private room,50,1,4,4.0,8,283 +47750,40299079,Brooklyn,Flatbush,40.6392,-73.96499,Entire home/apt,75,2,1,1.0,2,32 +47751,259226302,Brooklyn,Flatbush,40.63378,-73.95867,Private room,135,3,0,,1,248 +47752,132342992,Brooklyn,Williamsburg,40.71245,-73.94064,Entire home/apt,150,3,0,,1,12 +47753,13221575,Bronx,Longwood,40.82519,-73.90101,Entire home/apt,150,1,0,,1,88 +47754,268452805,Manhattan,Kips Bay,40.73985,-73.98074,Entire home/apt,600,3,0,,1,355 +47755,270029540,Manhattan,Harlem,40.81561,-73.94823000000001,Private room,99,1,1,1.0,1,256 +47756,270030033,Brooklyn,East Flatbush,40.63971,-73.94377,Private room,85,1,1,1.0,1,167 +47757,92493393,Staten Island,West Brighton,40.63207,-74.11406,Entire home/apt,190,1,0,,5,342 +47758,7273116,Manhattan,Lower East Side,40.721309999999995,-73.98902,Entire home/apt,129,2,0,,1,15 +47759,29569974,Brooklyn,Williamsburg,40.70558,-73.9418,Entire home/apt,89,2,1,1.0,1,266 +47760,141716782,Queens,Long Island City,40.752829999999996,-73.92504,Private room,375,2,0,,1,356 +47761,7074749,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94776,Entire home/apt,90,14,0,,1,85 +47762,268856904,Manhattan,East Village,40.72123,-73.97884,Entire home/apt,450,3,0,,1,361 +47763,202757964,Brooklyn,Williamsburg,40.717490000000005,-73.96361999999999,Entire home/apt,220,30,0,,6,211 +47764,129301317,Manhattan,Washington Heights,40.84191,-73.93705,Private room,50,2,1,1.0,1,26 +47765,202757964,Brooklyn,Williamsburg,40.71863,-73.96358000000001,Entire home/apt,220,30,0,,6,205 +47766,1272625,Queens,Astoria,40.76598,-73.9162,Private room,60,30,0,,1,43 +47767,270057532,Manhattan,East Village,40.73303,-73.98955,Entire home/apt,225,3,0,,1,7 +47768,261007573,Queens,Bayside,40.761790000000005,-73.76013,Private room,100,1,0,,2,358 +47769,270072182,Brooklyn,Crown Heights,40.66711,-73.9375,Entire home/apt,100,7,0,,1,44 +47770,265498730,Manhattan,Hell's Kitchen,40.76212,-73.99771,Entire home/apt,280,3,2,2.0,1,341 +47771,142871086,Queens,East Elmhurst,40.756370000000004,-73.89729,Private room,65,1,0,,1,36 +47772,21261408,Brooklyn,Clinton Hill,40.68853,-73.96089,Shared room,45,1,0,,6,345 +47773,191800,Brooklyn,Crown Heights,40.67069,-73.94343,Private room,62,3,0,,1,22 +47774,269825284,Manhattan,East Village,40.73085,-73.9837,Entire home/apt,315,5,2,2.0,1,249 +47775,141742656,Queens,Astoria,40.76614,-73.91371,Entire home/apt,500,2,0,,1,157 +47776,269845683,Manhattan,Midtown,40.753040000000006,-73.96658000000001,Entire home/apt,399,3,0,,1,148 +47777,28500137,Brooklyn,Greenpoint,40.71895,-73.95331999999999,Entire home/apt,164,4,0,,1,7 +47778,1648806,Brooklyn,Williamsburg,40.71358,-73.94091999999999,Private room,60,1,0,,2,173 +47779,18464253,Manhattan,NoHo,40.727270000000004,-73.99322,Entire home/apt,180,5,0,,1,317 +47780,270054787,Manhattan,Midtown,40.74904,-73.98312,Entire home/apt,499,3,0,,1,144 +47781,270119171,Brooklyn,Sheepshead Bay,40.5908,-73.94693000000001,Private room,35,2,2,2.0,1,250 +47782,270074042,Manhattan,Hell's Kitchen,40.76123,-73.99084,Entire home/apt,229,3,1,1.0,1,150 +47783,270132300,Queens,Flushing,40.74793,-73.81782,Private room,50,7,0,,1,89 +47784,4915341,Manhattan,West Village,40.736909999999995,-73.99715,Private room,79,28,0,,3,70 +47785,270139900,Manhattan,Upper West Side,40.78439,-73.97746,Entire home/apt,307,4,0,,1,344 +47786,269987340,Manhattan,Chelsea,40.74315,-73.99591,Entire home/apt,225,3,0,,1,87 +47787,270144441,Brooklyn,Park Slope,40.67817,-73.97603000000001,Entire home/apt,145,6,0,,1,14 +47788,167819022,Queens,Briarwood,40.713159999999995,-73.81953,Entire home/apt,85,5,1,1.0,1,54 +47789,11403548,Brooklyn,Williamsburg,40.714220000000005,-73.95697,Entire home/apt,110,2,0,,1,30 +47790,230720704,Bronx,North Riverdale,40.91234,-73.89416999999999,Private room,40,1,1,1.0,3,179 +47791,135563904,Queens,Ridgewood,40.7055,-73.9096,Private room,180,1,2,2.0,3,78 +47792,115180259,Manhattan,Murray Hill,40.74865,-73.98158000000001,Entire home/apt,299,3,1,1.0,1,187 +47793,15624547,Brooklyn,Bushwick,40.6929,-73.92643000000001,Private room,60,1,0,,1,97 +47794,118373535,Manhattan,Murray Hill,40.74839,-73.98087,Entire home/apt,199,3,0,,1,208 +47795,144813834,Manhattan,Upper East Side,40.7609,-73.96146999999999,Entire home/apt,299,3,0,,1,177 +47796,268807394,Manhattan,East Harlem,40.80321,-73.93781,Private room,80,3,1,1.0,3,213 +47797,268807394,Manhattan,East Harlem,40.803000000000004,-73.93913,Private room,80,3,2,2.0,3,242 +47798,268834081,Manhattan,East Harlem,40.786609999999996,-73.94273000000001,Entire home/apt,450,3,0,,1,358 +47799,35082637,Brooklyn,Williamsburg,40.71655,-73.96415999999999,Shared room,115,3,1,1.0,2,66 +47800,230230732,Brooklyn,Bedford-Stuyvesant,40.693870000000004,-73.93885,Private room,100,1,0,,1,87 +47801,73964015,Manhattan,Harlem,40.80494,-73.95463000000001,Private room,150,1,0,,1,8 +47802,270277478,Queens,Long Island City,40.7564,-73.92101,Private room,85,3,0,,1,250 +47803,268630107,Manhattan,East Village,40.7206,-73.97913,Entire home/apt,375,3,0,,1,357 +47804,270280544,Queens,Briarwood,40.70577,-73.81539000000001,Entire home/apt,105,1,4,4.0,1,208 +47805,8285778,Manhattan,Hell's Kitchen,40.7687,-73.98926999999999,Entire home/apt,179,2,0,,1,12 +47806,507966,Brooklyn,Williamsburg,40.71606,-73.94367,Entire home/apt,250,5,0,,1,318 +47807,202757964,Brooklyn,Williamsburg,40.71792,-73.96266,Entire home/apt,195,30,0,,6,200 +47808,269164383,Manhattan,Hell's Kitchen,40.76274,-73.99118,Entire home/apt,189,31,0,,1,237 +47809,202757964,Brooklyn,Williamsburg,40.719359999999995,-73.96436,Entire home/apt,195,30,0,,6,239 +47810,270284621,Manhattan,Upper West Side,40.77485,-73.97827,Entire home/apt,150,4,0,,1,63 +47811,261007573,Queens,Bayside,40.76321,-73.7608,Private room,100,1,0,,2,351 +47812,436365,Manhattan,Upper East Side,40.76924,-73.95323,Private room,100,3,0,,3,37 +47813,270293762,Brooklyn,Bedford-Stuyvesant,40.68789,-73.95596,Private room,55,1,0,,1,312 +47814,219517861,Manhattan,Financial District,40.7084,-74.00518000000001,Entire home/apt,699,29,0,,327,327 +47815,224900105,Manhattan,Harlem,40.81908,-73.95718000000001,Shared room,30,7,0,,1,83 +47816,9618786,Brooklyn,Williamsburg,40.72003,-73.96242,Entire home/apt,350,4,0,,1,9 +47817,270301946,Manhattan,Upper East Side,40.77961,-73.95181,Entire home/apt,230,3,0,,1,324 +47818,270306505,Manhattan,Little Italy,40.71717,-73.99817,Entire home/apt,350,4,0,,1,334 +47819,7109410,Manhattan,East Village,40.72653,-73.97949,Private room,100,1,0,,1,188 +47820,268135013,Brooklyn,Bushwick,40.69627,-73.92705,Private room,49,1,1,1.0,6,7 +47821,219517861,Manhattan,Financial District,40.70707,-74.00556999999999,Entire home/apt,699,29,0,,327,341 +47822,270314733,Brooklyn,Crown Heights,40.67268,-73.94895,Entire home/apt,190,2,0,,1,128 +47823,270314994,Brooklyn,Canarsie,40.64078,-73.90575,Entire home/apt,110,2,1,1.0,1,360 +47824,266998393,Brooklyn,Bushwick,40.69427,-73.91995,Private room,30,3,0,,3,100 +47825,270077888,Brooklyn,Bushwick,40.69266,-73.92684,Private room,99,3,3,3.0,2,17 +47826,270327975,Manhattan,Morningside Heights,40.80701,-73.96619,Private room,63,10,0,,2,83 +47827,104423008,Brooklyn,Bedford-Stuyvesant,40.68715,-73.94232,Private room,45,2,1,1.0,1,6 +47828,65591,Brooklyn,Williamsburg,40.71199,-73.96479000000001,Entire home/apt,220,4,1,1.0,1,25 +47829,269762668,Manhattan,Kips Bay,40.73853,-73.97981999999999,Entire home/apt,179,5,0,,1,236 +47830,269837702,Manhattan,Theater District,40.760999999999996,-73.98217,Entire home/apt,249,5,0,,1,117 +47831,270340525,Brooklyn,East New York,40.66548,-73.86935,Private room,60,1,1,1.0,1,361 +47832,270327975,Manhattan,Morningside Heights,40.80498,-73.9664,Private room,250,1,0,,2,17 +47833,120551798,Brooklyn,Bedford-Stuyvesant,40.68975,-73.92598000000001,Entire home/apt,200,2,0,,1,71 +47834,269822492,Manhattan,Midtown,40.74497,-73.9844,Entire home/apt,290,7,0,,1,199 +47835,201667999,Queens,Elmhurst,40.7391,-73.86944,Entire home/apt,88,1,0,,2,50 +47836,270358676,Manhattan,Upper East Side,40.7789,-73.95554,Entire home/apt,199,4,1,1.0,1,314 +47837,23495753,Manhattan,Little Italy,40.718070000000004,-73.99843,Entire home/apt,125,3,0,,1,11 +47838,267710728,Bronx,Pelham Gardens,40.86143,-73.84555999999999,Entire home/apt,79,2,2,2.0,2,169 +47839,269865501,Brooklyn,Bushwick,40.69445,-73.92235,Entire home/apt,550,2,0,,3,354 +47840,270288786,Manhattan,Harlem,40.79965,-73.95156999999999,Entire home/apt,300,3,2,2.0,1,349 +47841,244536777,Manhattan,Harlem,40.81615,-73.94359,Entire home/apt,225,3,0,,2,170 +47842,113583961,Brooklyn,Greenpoint,40.71982,-73.94742,Entire home/apt,260,2,1,1.0,1,245 +47843,270372514,Brooklyn,Park Slope,40.674409999999995,-73.98258,Entire home/apt,185,3,1,1.0,1,117 +47844,269865501,Brooklyn,Bushwick,40.69457,-73.92109,Entire home/apt,280,2,0,,3,356 +47845,13750109,Brooklyn,Bushwick,40.70281,-73.93188,Entire home/apt,249,2,1,1.0,1,17 +47846,270374596,Queens,Astoria,40.76591,-73.90934,Private room,90,3,0,,1,78 +47847,268896283,Manhattan,Harlem,40.81524,-73.94168,Private room,47,1,0,,2,115 +47848,269113892,Queens,Jamaica,40.68248,-73.79417,Entire home/apt,128,1,5,5.0,1,176 +47849,269818817,Queens,Ridgewood,40.7032,-73.89571,Entire home/apt,220,4,2,2.0,2,146 +47850,98455047,Queens,Bay Terrace,40.77415,-73.79218,Entire home/apt,258,1,0,,1,362 +47851,19407201,Queens,East Elmhurst,40.75971,-73.86607,Entire home/apt,90,2,2,2.0,1,135 +47852,270096906,Manhattan,Kips Bay,40.743159999999996,-73.98038000000001,Private room,400,2,0,,1,365 +47853,264862581,Queens,Rosedale,40.682629999999996,-73.72596999999999,Private room,79,1,3,3.0,3,89 +47854,270382544,Manhattan,Upper West Side,40.80158,-73.96181999999999,Private room,100,1,1,1.0,1,1 +47855,118405437,Queens,Woodhaven,40.69405,-73.86693000000001,Private room,66,2,2,2.0,2,364 +47856,128898379,Manhattan,Midtown,40.75736,-73.96665,Entire home/apt,425,5,0,,1,40 +47857,135718152,Manhattan,Midtown,40.75827,-73.97091999999999,Entire home/apt,425,3,0,,1,24 +47858,269165235,Manhattan,East Village,40.72546,-73.98703,Entire home/apt,235,3,1,1.0,1,326 +47859,270414511,Manhattan,Washington Heights,40.83325,-73.94034,Private room,84,1,0,,1,39 +47860,270414459,Manhattan,Midtown,40.758359999999996,-73.96289,Entire home/apt,135,30,0,,1,99 +47861,164692592,Manhattan,Midtown,40.75205,-73.97076,Private room,100,1,1,1.0,1,1 +47862,166195455,Manhattan,Murray Hill,40.74864,-73.971,Entire home/apt,346,1,0,,1,364 +47863,270456105,Brooklyn,Williamsburg,40.71711,-73.94804,Private room,80,3,0,,1,351 +47864,270119750,Manhattan,Midtown,40.75655,-73.96552,Entire home/apt,200,30,0,,1,155 +47865,56731026,Manhattan,Harlem,40.81709,-73.93866,Entire home/apt,125,1,0,,1,69 +47866,247335568,Queens,Long Island City,40.74753,-73.94054,Entire home/apt,170,3,0,,7,16 +47867,7487973,Brooklyn,South Slope,40.660759999999996,-73.98475,Entire home/apt,125,2,2,2.0,1,9 +47868,81763793,Manhattan,East Harlem,40.79752,-73.93287,Private room,65,3,0,,1,173 +47869,270294045,Manhattan,Midtown,40.7542,-73.96815,Entire home/apt,1600,3,0,,1,365 +47870,5099333,Brooklyn,Fort Greene,40.68893,-73.97015999999999,Entire home/apt,800,3,0,,1,37 +47871,26127333,Manhattan,Hell's Kitchen,40.76125,-73.99506,Entire home/apt,200,3,1,1.0,1,39 +47872,33814070,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95449,Entire home/apt,100,11,0,,1,25 +47873,269599664,Queens,Astoria,40.75741,-73.91665,Entire home/apt,250,2,0,,1,354 +47874,263994272,Brooklyn,Bedford-Stuyvesant,40.68708,-73.94657,Entire home/apt,44,1,0,,3,179 +47875,30671432,Brooklyn,Williamsburg,40.70986,-73.95125,Entire home/apt,112,31,0,,1,195 +47876,24232061,Manhattan,Upper East Side,40.77297,-73.9553,Private room,122,10,0,,3,306 +47877,87007791,Manhattan,Tribeca,40.718779999999995,-74.00491,Entire home/apt,380,5,0,,1,73 +47878,103503018,Manhattan,Harlem,40.830290000000005,-73.94191,Private room,60,1,3,3.0,2,49 +47879,80901802,Brooklyn,Williamsburg,40.71335,-73.94453,Private room,90,1,0,,1,179 +47880,40299079,Brooklyn,Flatbush,40.63926,-73.96415999999999,Entire home/apt,100,2,0,,2,71 +47881,19445589,Manhattan,Hell's Kitchen,40.75707,-73.99764,Private room,225,2,0,,1,20 +47882,9872248,Brooklyn,Flatbush,40.63415,-73.95208000000001,Entire home/apt,120,4,0,,1,65 +47883,22658749,Manhattan,East Harlem,40.80505,-73.93964,Private room,95,1,1,1.0,1,8 +47884,16486125,Manhattan,Upper West Side,40.79906,-73.96517,Private room,60,1,0,,1,7 +47885,3360618,Brooklyn,Williamsburg,40.711859999999994,-73.9399,Private room,59,2,2,2.0,3,74 +47886,19433714,Manhattan,Greenwich Village,40.72782,-73.99759,Entire home/apt,420,4,0,,3,22 +47887,103503018,Manhattan,Harlem,40.828559999999996,-73.94021,Private room,60,1,2,2.0,2,33 +47888,7660014,Brooklyn,Bedford-Stuyvesant,40.6825,-73.91596,Entire home/apt,150,1,3,3.0,1,228 +47889,2795371,Manhattan,East Village,40.72715,-73.98326999999999,Entire home/apt,140,10,0,,2,264 +47890,11612418,Brooklyn,Williamsburg,40.71812,-73.96404,Entire home/apt,285,7,0,,1,6 +47891,4336488,Brooklyn,Prospect-Lefferts Gardens,40.66365,-73.94611,Entire home/apt,135,3,0,,1,9 +47892,145210031,Brooklyn,Bushwick,40.69965,-73.92837,Entire home/apt,199,6,0,,1,85 +47893,261187437,Brooklyn,Borough Park,40.633140000000004,-74.006,Private room,69,1,0,,6,365 +47894,76783729,Brooklyn,Cobble Hill,40.68732,-73.99096,Entire home/apt,289,30,0,,1,105 +47895,40846857,Brooklyn,Crown Heights,40.67327,-73.94951,Private room,70,4,0,,2,17 +47896,261627898,Manhattan,Chelsea,40.74755,-74.00394,Private room,105,1,1,1.0,2,31 +47897,2795371,Manhattan,East Village,40.72878,-73.98478,Entire home/apt,129,20,0,,2,180 +47898,261627898,Manhattan,Chelsea,40.74672,-74.00431,Private room,105,1,2,2.0,2,31 +47899,50724816,Manhattan,Greenwich Village,40.72902,-74.00152,Private room,116,1,0,,1,105 +47900,270592883,Brooklyn,Fort Greene,40.688,-73.97008000000001,Entire home/apt,199,2,1,1.0,1,68 +47901,3068092,Brooklyn,Williamsburg,40.714490000000005,-73.9569,Entire home/apt,196,1,0,,1,95 +47902,269112262,Brooklyn,Williamsburg,40.71443,-73.9527,Entire home/apt,175,2,0,,1,81 +47903,16056444,Brooklyn,Greenpoint,40.72229,-73.94846,Entire home/apt,128,30,0,,1,312 +47904,269854098,Manhattan,Hell's Kitchen,40.76246,-73.99193000000001,Entire home/apt,250,2,0,,1,32 +47905,268815831,Brooklyn,Williamsburg,40.711090000000006,-73.96191,Entire home/apt,100,2,1,1.0,1,296 +47906,73986440,Manhattan,Financial District,40.71047,-74.00761,Entire home/apt,150,30,1,1.0,1,53 +47907,133138724,Brooklyn,Bushwick,40.687259999999995,-73.91421,Private room,60,1,0,,1,179 +47908,217463199,Queens,Flushing,40.74345,-73.82721,Private room,80,3,0,,4,358 +47909,31044879,Queens,Sunnyside,40.73681,-73.92024,Private room,80,2,2,2.0,2,188 +47910,3360618,Brooklyn,Williamsburg,40.71246,-73.94014,Private room,57,2,1,1.0,3,16 +47911,3360618,Brooklyn,Williamsburg,40.71329,-73.93993,Private room,59,2,2,2.0,3,15 +47912,270631254,Manhattan,Upper West Side,40.799,-73.97012,Private room,130,2,0,,1,71 +47913,270651073,Queens,Edgemere,40.5954,-73.7764,Private room,50,3,0,,1,363 +47914,30873670,Bronx,Longwood,40.82101,-73.90919,Entire home/apt,75,3,0,,1,0 +47915,229739739,Brooklyn,Flatbush,40.647259999999996,-73.95455,Private room,85,14,0,,2,176 +47916,70538107,Brooklyn,Bushwick,40.688340000000004,-73.90714,Private room,45,1,0,,1,16 +47917,11306615,Manhattan,Chinatown,40.71767,-73.9997,Entire home/apt,350,2,0,,2,12 +47918,164648188,Brooklyn,East New York,40.67595,-73.87964000000001,Private room,50,3,0,,2,23 +47919,6230673,Manhattan,East Village,40.723040000000005,-73.9791,Entire home/apt,119,12,0,,1,247 +47920,200927536,Brooklyn,Bushwick,40.70517,-73.91703000000001,Entire home/apt,120,2,0,,3,155 +47921,189081814,Manhattan,Kips Bay,40.74476,-73.97622,Private room,200,1,0,,1,89 +47922,253839975,Queens,Ditmars Steinway,40.776740000000004,-73.91031,Entire home/apt,190,4,0,,1,152 +47923,1386697,Manhattan,Midtown,40.75913,-73.96486999999999,Entire home/apt,133,30,0,,1,246 +47924,89264510,Brooklyn,Bushwick,40.69399,-73.92609,Private room,50,1,1,1.0,1,365 +47925,266981597,Brooklyn,Flatbush,40.65087,-73.95566,Entire home/apt,123,1,0,,1,365 +47926,270578453,Manhattan,Washington Heights,40.84154,-73.93766,Entire home/apt,260,5,0,,1,260 +47927,270590027,Brooklyn,Williamsburg,40.709070000000004,-73.95054,Entire home/apt,599,2,1,1.0,1,346 +47928,1325958,Brooklyn,Williamsburg,40.72013,-73.96299,Entire home/apt,300,14,0,,1,38 +47929,145140746,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9277,Private room,250,2,0,,1,350 +47930,218986739,Queens,Long Island City,40.74586,-73.94553,Private room,79,2,0,,2,279 +47931,59181407,Manhattan,Washington Heights,40.83573,-73.94895,Entire home/apt,129,31,0,,1,306 +47932,9790846,Manhattan,Murray Hill,40.74686,-73.97361,Private room,185,1,0,,1,310 +47933,270790446,Manhattan,East Harlem,40.795840000000005,-73.94747,Private room,75,5,1,1.0,1,291 +47934,4128829,Queens,Ditmars Steinway,40.77292,-73.90101,Private room,62,9,0,,2,365 +47935,164648188,Brooklyn,East New York,40.67407,-73.88179000000001,Private room,49,3,0,,2,23 +47936,33205064,Manhattan,Financial District,40.703720000000004,-74.01002,Shared room,65,1,0,,1,357 +47937,270796745,Bronx,Allerton,40.86886,-73.84915,Entire home/apt,140,2,1,1.0,1,175 +47938,1857457,Brooklyn,Williamsburg,40.7137,-73.94331,Entire home/apt,180,2,0,,1,6 +47939,70682660,Manhattan,Lower East Side,40.72037,-73.9872,Entire home/apt,143,4,0,,1,343 +47940,269078124,Manhattan,Washington Heights,40.84251,-73.94105,Private room,52,1,0,,3,33 +47941,269078124,Manhattan,Washington Heights,40.84288,-73.94201,Private room,54,1,0,,3,6 +47942,269078124,Manhattan,Washington Heights,40.84365,-73.94069,Private room,60,20,0,,3,180 +47943,9484127,Brooklyn,Sheepshead Bay,40.583870000000005,-73.93956999999999,Entire home/apt,300,3,0,,1,364 +47944,270823235,Brooklyn,Flatbush,40.65168,-73.96269000000001,Private room,50,2,3,3.0,1,3 +47945,60441049,Manhattan,Chinatown,40.71409,-73.99427,Private room,71,1,0,,1,259 +47946,270829995,Manhattan,Murray Hill,40.74811,-73.97718,Entire home/apt,168,3,0,,1,341 +47947,270829432,Manhattan,East Village,40.72309,-73.98519,Entire home/apt,195,1,0,,1,25 +47948,259683021,Queens,Astoria,40.774409999999996,-73.93641,Private room,50,2,1,1.0,1,1 +47949,38576999,Manhattan,Harlem,40.82806,-73.94537,Private room,50,20,0,,1,42 +47950,268449136,Manhattan,Chelsea,40.74263,-74.00234,Entire home/apt,800,3,1,1.0,1,345 +47951,185212,Brooklyn,Park Slope,40.67091,-73.97479,Entire home/apt,168,5,0,,1,23 +47952,50224626,Queens,Ridgewood,40.70491,-73.91024,Private room,45,2,1,1.0,1,133 +47953,21261408,Brooklyn,Clinton Hill,40.68783,-73.96061,Shared room,40,1,3,3.0,6,350 +47954,270845109,Brooklyn,Williamsburg,40.713359999999994,-73.95865,Entire home/apt,150,5,1,1.0,1,327 +47955,270852954,Bronx,Westchester Square,40.83671,-73.84676999999999,Private room,75,1,0,,1,363 +47956,197551920,Manhattan,Theater District,40.76122,-73.98655,Private room,70,1,2,2.0,1,39 +47957,89394733,Manhattan,Chelsea,40.750029999999995,-74.01455,Entire home/apt,250,90,0,,1,244 +47958,55711801,Manhattan,Harlem,40.82297,-73.94882,Entire home/apt,139,1,0,,1,29 +47959,24266846,Brooklyn,Williamsburg,40.71329,-73.9653,Entire home/apt,345,6,0,,1,22 +47960,185352365,Brooklyn,Greenpoint,40.72214,-73.94566,Entire home/apt,220,2,0,,1,12 +47961,258091747,Manhattan,Upper West Side,40.795770000000005,-73.97377,Entire home/apt,399,4,0,,1,248 +47962,91111113,Manhattan,SoHo,40.722359999999995,-74.00255,Entire home/apt,125,3,1,1.0,1,77 +47963,161196794,Brooklyn,Kensington,40.641259999999996,-73.97797,Entire home/apt,169,1,2,2.0,1,53 +47964,43726295,Manhattan,Financial District,40.70815,-74.00619,Shared room,105,6,0,,1,87 +47965,270874051,Queens,Long Island City,40.75436,-73.93483,Private room,99,1,0,,8,319 +47966,270878146,Queens,Maspeth,40.72205,-73.91024,Entire home/apt,70,24,0,,1,52 +47967,30461045,Manhattan,Midtown,40.76384,-73.98248000000001,Private room,125,1,6,6.0,1,142 +47968,270871567,Brooklyn,East Flatbush,40.65855,-73.93794,Entire home/apt,150,5,0,,1,365 +47969,85518583,Brooklyn,Williamsburg,40.7191,-73.95685,Entire home/apt,151,14,0,,1,25 +47970,22883314,Brooklyn,Williamsburg,40.71073,-73.96208,Private room,80,2,2,2.0,1,42 +47971,1639684,Brooklyn,Williamsburg,40.707570000000004,-73.94247,Private room,49,5,0,,1,4 +47972,270906714,Manhattan,Hell's Kitchen,40.75654,-73.99173,Entire home/apt,320,3,0,,1,341 +47973,82650642,Queens,Long Island City,40.74818,-73.94123,Entire home/apt,116,90,0,,1,131 +47974,39021367,Manhattan,Upper East Side,40.77097,-73.95245,Entire home/apt,149,6,0,,1,82 +47975,22534862,Queens,Rego Park,40.72364,-73.85605,Private room,100,1,0,,1,341 +47976,119051571,Brooklyn,Bedford-Stuyvesant,40.693459999999995,-73.96064,Private room,90,1,1,1.0,2,321 +47977,175103962,Brooklyn,Bedford-Stuyvesant,40.68058,-73.90701999999999,Private room,60,1,0,,6,152 +47978,181075211,Brooklyn,Bedford-Stuyvesant,40.69107,-73.92638000000001,Private room,56,2,1,1.0,1,179 +47979,2967377,Manhattan,Hell's Kitchen,40.76279,-73.99463,Entire home/apt,15,2,0,,1,139 +47980,40188920,Queens,Maspeth,40.72201,-73.90822,Private room,40,1,0,,1,82 +47981,44355774,Brooklyn,Prospect-Lefferts Gardens,40.661159999999995,-73.96155999999999,Entire home/apt,82,14,0,,1,30 +47982,221213143,Manhattan,Kips Bay,40.741640000000004,-73.982,Entire home/apt,350,1,0,,9,337 +47983,221201482,Manhattan,Harlem,40.80927,-73.9472,Entire home/apt,99,2,0,,1,189 +47984,3103656,Brooklyn,Bushwick,40.69184,-73.90924,Private room,99,3,0,,2,150 +47985,271029539,Manhattan,Harlem,40.82165,-73.95423000000001,Private room,48,1,1,1.0,4,128 +47986,23384343,Brooklyn,Park Slope,40.68258,-73.97771,Entire home/apt,100,5,0,,1,8 +47987,271030049,Manhattan,Chinatown,40.715540000000004,-73.9982,Entire home/apt,146,4,0,,1,36 +47988,270881069,Brooklyn,Williamsburg,40.71797,-73.94948000000001,Private room,150,3,0,,1,344 +47989,6150742,Manhattan,Harlem,40.817609999999995,-73.94434,Private room,80,1,1,1.0,1,86 +47990,270309212,Brooklyn,Borough Park,40.64137,-73.98654,Entire home/apt,67,1,1,1.0,1,49 +47991,10117927,Manhattan,Gramercy,40.73708,-73.98826,Entire home/apt,180,3,0,,1,4 +47992,268332955,Manhattan,Hell's Kitchen,40.76577,-73.98482,Entire home/apt,269,3,0,,1,329 +47993,1967818,Manhattan,Hell's Kitchen,40.76769,-73.99129,Private room,110,30,0,,1,105 +47994,218969291,Manhattan,Upper West Side,40.78635,-73.97636,Entire home/apt,279,5,2,2.0,1,346 +47995,270620369,Manhattan,Midtown,40.74188,-73.98419,Entire home/apt,650,3,0,,1,337 +47996,237189890,Manhattan,SoHo,40.72088,-74.00318,Entire home/apt,150,30,0,,1,32 +47997,153713033,Brooklyn,Williamsburg,40.71432,-73.94805,Private room,48,7,1,1.0,1,13 +47998,271069449,Queens,Arverne,40.59125,-73.79683,Entire home/apt,129,2,1,1.0,1,362 +47999,271070664,Brooklyn,East Flatbush,40.653940000000006,-73.92777,Entire home/apt,150,6,0,,1,62 +48000,52950465,Manhattan,Midtown,40.75258,-73.97111,Private room,134,30,0,,12,365 +48001,89830146,Brooklyn,Crown Heights,40.668009999999995,-73.94863000000001,Private room,50,2,0,,1,29 +48002,267458545,Manhattan,Nolita,40.7223,-73.99508,Entire home/apt,225,7,1,1.0,1,76 +48003,743321,Manhattan,Midtown,40.75747,-73.96892,Entire home/apt,125,7,0,,1,34 +48004,2355573,Brooklyn,Williamsburg,40.71808,-73.94261,Private room,44,5,1,1.0,2,40 +48005,27922303,Brooklyn,Sunset Park,40.65625,-74.0038,Private room,75,2,1,1.0,2,311 +48006,32990881,Manhattan,Financial District,40.70328,-74.01099,Entire home/apt,180,2,2,2.0,1,295 +48007,263336381,Manhattan,Upper West Side,40.7836,-73.97511,Entire home/apt,135,30,0,,1,44 +48008,23436595,Brooklyn,Greenpoint,40.72803,-73.95557,Entire home/apt,180,3,0,,2,262 +48009,117953124,Manhattan,Financial District,40.70534,-74.00631,Entire home/apt,180,30,0,,1,333 +48010,1316936,Manhattan,Chinatown,40.716879999999996,-73.9904,Private room,125,31,0,,1,179 +48011,60404912,Brooklyn,Flatbush,40.64235,-73.95227,Private room,50,2,1,1.0,1,7 +48012,271114286,Manhattan,Chelsea,40.741690000000006,-73.99723,Entire home/apt,240,2,0,,1,6 +48013,113058525,Brooklyn,Vinegar Hill,40.70089,-73.98253000000001,Private room,75,1,0,,1,7 +48014,56602710,Bronx,Melrose,40.82093,-73.91279,Entire home/apt,125,2,0,,1,207 +48015,270309706,Manhattan,Hell's Kitchen,40.764959999999995,-73.98928000000001,Entire home/apt,244,3,0,,1,167 +48016,222287033,Brooklyn,Williamsburg,40.71096,-73.96575,Private room,95,2,0,,5,211 +48017,222287033,Brooklyn,Williamsburg,40.712590000000006,-73.96669,Private room,95,2,0,,5,193 +48018,222287033,Brooklyn,Williamsburg,40.711290000000005,-73.96555,Private room,90,2,0,,5,211 +48019,4239407,Manhattan,Lower East Side,40.71467,-73.98985,Entire home/apt,209,3,0,,2,5 +48020,222287033,Brooklyn,Williamsburg,40.7122,-73.96667,Private room,90,2,0,,5,211 +48021,270874051,Queens,Long Island City,40.75255,-73.93324,Private room,149,1,0,,8,316 +48022,234010972,Queens,East Elmhurst,40.75888,-73.87889,Entire home/apt,120,1,0,,1,264 +48023,204301604,Manhattan,Midtown,40.75669,-73.96848,Private room,100,2,0,,1,89 +48024,167769983,Manhattan,Stuyvesant Town,40.732209999999995,-73.97941,Private room,77,21,2,2.0,1,321 +48025,215128544,Queens,Flushing,40.769870000000004,-73.80451,Private room,48,1,3,3.0,2,166 +48026,270874051,Queens,Long Island City,40.753,-73.93485,Private room,99,1,0,,8,319 +48027,227206998,Brooklyn,Bushwick,40.69975,-73.91202,Entire home/apt,150,1,0,,1,41 +48028,215128544,Queens,Flushing,40.769859999999994,-73.80515,Private room,49,1,2,2.0,2,168 +48029,230720704,Bronx,North Riverdale,40.913059999999994,-73.89389,Private room,40,1,1,1.0,3,175 +48030,271146927,Queens,Jamaica Estates,40.72124,-73.80072,Entire home/apt,68,2,2,2.0,1,43 +48031,225118276,Brooklyn,Bedford-Stuyvesant,40.6838,-73.92854,Private room,75,1,7,7.0,1,326 +48032,271151866,Manhattan,Chelsea,40.74438,-73.997,Entire home/apt,250,5,0,,1,60 +48033,230720704,Bronx,North Riverdale,40.91167,-73.89565999999999,Private room,40,1,1,1.0,3,174 +48034,268784513,Queens,East Elmhurst,40.75755,-73.88199,Private room,50,1,3,3.0,3,359 +48035,270874051,Queens,Long Island City,40.753679999999996,-73.93298,Private room,159,1,0,,8,318 +48036,271162941,Brooklyn,Midwood,40.623509999999996,-73.95509,Private room,120,1,2,2.0,3,330 +48037,32768394,Manhattan,East Village,40.72338,-73.9851,Entire home/apt,180,3,0,,1,17 +48038,249235228,Brooklyn,Bedford-Stuyvesant,40.68996,-73.92669000000001,Private room,55,3,0,,1,84 +48039,36380968,Brooklyn,Brighton Beach,40.57759,-73.96218,Private room,75,1,2,2.0,2,353 +48040,1786901,Manhattan,Upper East Side,40.781890000000004,-73.9455,Private room,69,3,0,,9,30 +48041,271170087,Manhattan,Hell's Kitchen,40.765570000000004,-73.9909,Private room,185,4,1,1.0,1,50 +48042,3773866,Manhattan,Harlem,40.81842,-73.9391,Private room,42,2,0,,2,14 +48043,271248669,Manhattan,Tribeca,40.71206,-74.00999,Entire home/apt,6500,180,0,,1,365 +48044,52587835,Brooklyn,Sunset Park,40.659890000000004,-73.99336,Private room,42,3,0,,1,24 +48045,271094569,Manhattan,Lower East Side,40.71895,-73.98813,Entire home/apt,99,2,1,1.0,1,333 +48046,271264403,Manhattan,Murray Hill,40.7472,-73.97336999999999,Entire home/apt,229,1,0,,1,176 +48047,269609725,Manhattan,Lower East Side,40.712759999999996,-73.98488,Entire home/apt,200,2,0,,1,361 +48048,271275048,Manhattan,Chelsea,40.74638,-73.99094000000001,Entire home/apt,125,30,0,,2,245 +48049,271275248,Brooklyn,Bushwick,40.69057,-73.90671,Private room,50,2,1,1.0,1,15 +48050,63492343,Manhattan,Chelsea,40.739709999999995,-73.99611,Entire home/apt,1050,2,0,,1,365 +48051,6960348,Brooklyn,Williamsburg,40.71537,-73.94601,Entire home/apt,385,2,0,,1,80 +48052,271282883,Brooklyn,Greenpoint,40.72779,-73.94081,Private room,99,6,0,,2,54 +48053,11123552,Brooklyn,Bushwick,40.70187,-73.92389,Private room,50,1,1,1.0,2,11 +48054,14844084,Manhattan,Harlem,40.82625,-73.94791,Private room,75,4,0,,1,113 +48055,269568546,Brooklyn,Williamsburg,40.7144,-73.95756999999999,Entire home/apt,155,1,2,2.0,1,88 +48056,9037589,Queens,Woodside,40.74367,-73.91247,Private room,90,1,0,,1,179 +48057,9483525,Manhattan,West Village,40.73669,-74.001,Entire home/apt,300,2,1,1.0,1,28 +48058,39724060,Brooklyn,Bedford-Stuyvesant,40.68932,-73.93494,Entire home/apt,115,7,0,,1,79 +48059,4073971,Brooklyn,Bedford-Stuyvesant,40.688990000000004,-73.94988000000001,Entire home/apt,210,5,0,,1,80 +48060,161031033,Queens,Ditmars Steinway,40.783159999999995,-73.91804,Private room,70,5,0,,1,30 +48061,271300364,Brooklyn,Bushwick,40.69599,-73.93154,Entire home/apt,172,1,0,,1,88 +48062,271035656,Brooklyn,Williamsburg,40.70835,-73.95368,Entire home/apt,270,2,1,1.0,1,308 +48063,105579614,Queens,Ridgewood,40.708690000000004,-73.90835,Private room,80,1,0,,1,72 +48064,218986739,Queens,Long Island City,40.74575,-73.9449,Private room,79,1,0,,2,346 +48065,28891151,Brooklyn,East New York,40.66802,-73.88724,Private room,75,2,0,,4,90 +48066,5178414,Brooklyn,Bushwick,40.69859,-73.91398000000001,Entire home/apt,250,7,0,,1,32 +48067,271321622,Manhattan,Lower East Side,40.71968,-73.98453,Private room,120,1,0,,1,352 +48068,252897042,Bronx,Bronxdale,40.852470000000004,-73.86418,Entire home/apt,60,4,2,2.0,1,194 +48069,95886123,Queens,Astoria,40.76621,-73.92274,Private room,100,2,0,,2,357 +48070,17869274,Manhattan,Little Italy,40.718779999999995,-73.99808,Entire home/apt,202,1,0,,1,23 +48071,264495166,Manhattan,Harlem,40.80199,-73.95779,Private room,90,2,1,1.0,3,46 +48072,30797242,Manhattan,Lower East Side,40.72285,-73.98895,Private room,75,3,0,,1,21 +48073,2206491,Brooklyn,Williamsburg,40.71483,-73.95243,Entire home/apt,110,5,0,,1,303 +48074,121127613,Brooklyn,Flatbush,40.65205,-73.96311,Private room,50,1,0,,1,265 +48075,267710728,Bronx,Pelham Gardens,40.86143,-73.84573,Entire home/apt,79,2,1,1.0,2,354 +48076,271350187,Brooklyn,Williamsburg,40.718140000000005,-73.95040999999999,Private room,109,1,0,,3,304 +48077,271354975,Brooklyn,Bedford-Stuyvesant,40.68323,-73.94694,Private room,170,2,0,,1,164 +48078,23773167,Manhattan,Harlem,40.82682,-73.95156999999999,Private room,70,2,0,,2,312 +48079,268198789,Brooklyn,Cypress Hills,40.67877,-73.86721999999999,Private room,68,2,0,,2,315 +48080,203565865,Manhattan,SoHo,40.7206,-74.00023,Entire home/apt,1308,2,0,,1,179 +48081,15057355,Manhattan,Two Bridges,40.71155,-73.99712,Private room,70,3,0,,1,62 +48082,23773167,Manhattan,Harlem,40.8233,-73.95121999999999,Entire home/apt,125,3,0,,2,326 +48083,217595343,Manhattan,East Harlem,40.7982,-73.94422,Shared room,65,1,2,2.0,2,170 +48084,271379777,Manhattan,Financial District,40.70411,-74.00909,Entire home/apt,255,1,0,,1,9 +48085,271384163,Manhattan,Harlem,40.80446,-73.9455,Entire home/apt,320,1,0,,1,322 +48086,34023353,Queens,Woodhaven,40.69855,-73.85279,Private room,130,1,0,,1,89 +48087,270874051,Queens,Long Island City,40.75258,-73.93475,Private room,119,1,0,,8,333 +48088,25667666,Brooklyn,Borough Park,40.64018,-73.99157,Private room,50,2,1,1.0,1,25 +48089,271391063,Manhattan,Upper East Side,40.76943,-73.95608,Entire home/apt,165,1,1,1.0,1,5 +48090,94510125,Brooklyn,Greenpoint,40.72923,-73.95693,Private room,75,2,0,,1,73 +48091,271391825,Manhattan,Washington Heights,40.846379999999996,-73.93845999999999,Private room,46,2,0,,1,121 +48092,271393608,Manhattan,Hell's Kitchen,40.76725,-73.98669,Shared room,70,1,3,3.0,6,24 +48093,17330506,Queens,Astoria,40.77472,-73.92825,Private room,75,3,0,,1,43 +48094,10287553,Manhattan,Hell's Kitchen,40.76843,-73.9894,Private room,147,2,1,1.0,1,27 +48095,271401156,Manhattan,Upper East Side,40.77324,-73.95969000000001,Shared room,69,1,0,,1,164 +48096,266752544,Brooklyn,Williamsburg,40.715270000000004,-73.93852,Entire home/apt,299,3,2,2.0,1,178 +48097,40058915,Manhattan,Lower East Side,40.71755,-73.98966999999999,Entire home/apt,164,1,1,1.0,1,163 +48098,3567433,Brooklyn,Bushwick,40.690690000000004,-73.90836,Private room,55,3,0,,2,23 +48099,1422618,Brooklyn,Greenpoint,40.73395,-73.9538,Private room,85,1,0,,1,341 +48100,235745868,Brooklyn,Bushwick,40.69324,-73.9094,Private room,37,29,0,,1,340 +48101,34774173,Brooklyn,Bedford-Stuyvesant,40.69198,-73.96008,Entire home/apt,95,2,0,,1,5 +48102,188453457,Bronx,Claremont Village,40.84218,-73.90969,Entire home/apt,390,2,0,,2,348 +48103,164701861,Brooklyn,East New York,40.67451,-73.88806,Entire home/apt,100,3,0,,2,112 +48104,93551842,Manhattan,Murray Hill,40.74605,-73.9773,Private room,80,1,1,1.0,1,2 +48105,150518920,Manhattan,Murray Hill,40.74666,-73.97358,Entire home/apt,185,1,0,,1,192 +48106,14515065,Brooklyn,Bushwick,40.69845,-73.93590999999999,Entire home/apt,148,1,0,,2,349 +48107,113344533,Manhattan,East Harlem,40.79446,-73.94455,Entire home/apt,170,1,1,1.0,1,20 +48108,42687204,Manhattan,East Village,40.730340000000005,-73.98725,Entire home/apt,197,1,0,,1,33 +48109,57023844,Queens,Jamaica,40.68588,-73.77823000000001,Private room,69,3,0,,2,365 +48110,3358348,Brooklyn,Crown Heights,40.67497,-73.94973,Entire home/apt,97,1,0,,1,63 +48111,188453457,Bronx,Claremont Village,40.84037,-73.8998,Private room,122,1,0,,2,166 +48112,269235140,Manhattan,Hell's Kitchen,40.76437,-73.99044,Entire home/apt,560,1,0,,1,32 +48113,269235465,Manhattan,Harlem,40.80618,-73.94587,Entire home/apt,315,1,0,,1,5 +48114,269236041,Manhattan,Harlem,40.806290000000004,-73.95000999999999,Entire home/apt,222,6,0,,1,18 +48115,25279755,Manhattan,Kips Bay,40.74413,-73.97993000000001,Private room,90,2,0,,1,17 +48116,115939890,Manhattan,Stuyvesant Town,40.731429999999996,-73.97549000000001,Shared room,56,1,0,,1,3 +48117,271528362,Staten Island,Grymes Hill,40.61674,-74.10169,Entire home/apt,175,1,0,,1,350 +48118,270292053,Manhattan,Chelsea,40.7469,-73.99038,Entire home/apt,350,3,3,3.0,1,345 +48119,232596712,Manhattan,Upper West Side,40.77574,-73.98917,Entire home/apt,583,30,0,,6,343 +48120,256090291,Manhattan,Greenwich Village,40.728970000000004,-74.00166999999999,Entire home/apt,200,30,0,,1,363 +48121,271432195,Manhattan,East Harlem,40.80605,-73.94208,Entire home/apt,175,1,1,1.0,1,307 +48122,268135013,Brooklyn,Bushwick,40.69485,-73.92759000000001,Private room,69,1,1,1.0,6,103 +48123,52115380,Queens,Glendale,40.69784,-73.89426999999999,Entire home/apt,125,7,0,,1,39 +48124,2390913,Brooklyn,Crown Heights,40.6756,-73.95644,Entire home/apt,85,4,0,,1,50 +48125,8094859,Brooklyn,Boerum Hill,40.686,-73.98794000000001,Entire home/apt,190,1,0,,1,148 +48126,30839692,Queens,Flushing,40.754059999999996,-73.80613000000001,Shared room,25,1,1,1.0,3,86 +48127,83974928,Queens,Laurelton,40.66992,-73.74518,Private room,34,1,3,3.0,1,70 +48128,271568898,Brooklyn,Cypress Hills,40.67814,-73.89286,Entire home/apt,150,1,0,,1,9 +48129,255641440,Queens,Flushing,40.75181,-73.81356,Private room,55,1,0,,7,79 +48130,255641440,Queens,Flushing,40.76393,-73.80895,Private room,42,1,0,,7,4 +48131,134749416,Manhattan,Upper East Side,40.76059,-73.9616,Shared room,209,3,0,,1,30 +48132,271581236,Manhattan,Midtown,40.7572,-73.96464,Entire home/apt,179,30,0,,1,242 +48133,269556381,Manhattan,Greenwich Village,40.72785,-74.00145,Entire home/apt,300,4,0,,1,336 +48134,271591823,Manhattan,Kips Bay,40.73835,-73.98121,Private room,150,2,0,,1,31 +48135,13231566,Manhattan,East Harlem,40.8019,-73.93829000000001,Entire home/apt,100,14,0,,1,52 +48136,114413305,Brooklyn,Bushwick,40.6949,-73.90954,Private room,45,1,1,1.0,1,30 +48137,270041172,Manhattan,Greenwich Village,40.73486,-73.99843,Entire home/apt,350,1,0,,1,363 +48138,102848162,Manhattan,Upper West Side,40.78627,-73.97995,Entire home/apt,149,1,1,1.0,1,189 +48139,192951036,Manhattan,Greenwich Village,40.728,-74.00032,Private room,99,1,0,,10,226 +48140,128629269,Queens,Astoria,40.76686,-73.9239,Private room,100,30,0,,1,328 +48141,268135013,Brooklyn,Bushwick,40.69617,-73.92588,Shared room,39,1,0,,6,28 +48142,57919043,Brooklyn,Park Slope,40.67918,-73.97659,Private room,49,24,0,,1,44 +48143,245843084,Manhattan,Hell's Kitchen,40.759570000000004,-73.99535,Private room,129,3,0,,1,5 +48144,116305897,Manhattan,Upper West Side,40.78935,-73.97389,Entire home/apt,180,30,0,,9,311 +48145,212865,Brooklyn,Williamsburg,40.72045,-73.96313,Entire home/apt,150,90,0,,1,91 +48146,271616449,Bronx,Parkchester,40.8349,-73.85259,Private room,40,3,1,1.0,1,68 +48147,10407935,Manhattan,SoHo,40.724270000000004,-73.99849,Entire home/apt,89,1,0,,8,71 +48148,9093418,Manhattan,Chelsea,40.75073,-73.99549,Private room,300,1,0,,1,365 +48149,23835825,Queens,Sunnyside,40.74608,-73.92179,Private room,59,7,0,,1,0 +48150,10407935,Manhattan,West Village,40.73635,-74.00223000000001,Entire home/apt,89,1,0,,8,72 +48151,10407935,Manhattan,West Village,40.73295,-74.00365,Entire home/apt,89,1,0,,8,72 +48152,93723961,Queens,Astoria,40.76769,-73.91994,Entire home/apt,99,2,0,,1,94 +48153,55363509,Brooklyn,Gravesend,40.608290000000004,-73.97009,Entire home/apt,150,3,0,,1,172 +48154,118853924,Bronx,North Riverdale,40.90527,-73.89707,Entire home/apt,150,30,0,,1,89 +48155,116305897,Manhattan,Upper West Side,40.79098,-73.97384,Entire home/apt,150,30,0,,9,343 +48156,101618737,Brooklyn,Bushwick,40.69191,-73.90807,Private room,80,3,0,,2,13 +48157,61784887,Brooklyn,Fort Greene,40.69101,-73.97197,Entire home/apt,250,2,0,,1,46 +48158,44183725,Manhattan,Chelsea,40.75095,-73.99542,Entire home/apt,185,3,1,1.0,1,7 +48159,250126499,Manhattan,Hell's Kitchen,40.75871,-73.99659,Entire home/apt,250,1,0,,1,8 +48160,713116,Brooklyn,Prospect-Lefferts Gardens,40.65633,-73.95721999999999,Entire home/apt,145,4,0,,1,41 +48161,35652410,Manhattan,Upper West Side,40.77568,-73.98019000000001,Entire home/apt,170,4,0,,1,30 +48162,18594883,Brooklyn,Bedford-Stuyvesant,40.6924,-73.95926999999999,Private room,51,1,2,2.0,1,23 +48163,28752285,Brooklyn,Williamsburg,40.71268,-73.95855,Private room,90,2,0,,1,347 +48164,22528598,Manhattan,Washington Heights,40.85269,-73.93616,Private room,80,1,1,1.0,1,68 +48165,271162941,Brooklyn,Midwood,40.62486,-73.95458,Private room,80,1,0,,3,330 +48166,101771985,Manhattan,Harlem,40.80624,-73.9502,Private room,90,1,1,1.0,3,179 +48167,197119374,Brooklyn,Williamsburg,40.70982,-73.95831,Private room,55,1,0,,1,2 +48168,264495166,Manhattan,Harlem,40.80079,-73.95783,Private room,85,2,0,,3,11 +48169,47334774,Manhattan,Chelsea,40.75223,-74.00816,Entire home/apt,300,2,0,,1,168 +48170,3868762,Manhattan,Chelsea,40.752179999999996,-74.00241,Entire home/apt,550,4,0,,1,34 +48171,271667012,Bronx,Pelham Bay,40.852340000000005,-73.82969,Entire home/apt,55,7,0,,1,179 +48172,271663737,Brooklyn,Williamsburg,40.70612,-73.95549,Entire home/apt,99,1,0,,1,297 +48173,24633205,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93982,Private room,50,1,1,1.0,1,27 +48174,95007110,Manhattan,Washington Heights,40.84773,-73.94015,Private room,60,2,0,,1,343 +48175,118892550,Manhattan,Upper East Side,40.78269,-73.95452,Private room,85,2,0,,1,30 +48176,271681014,Brooklyn,Borough Park,40.645309999999995,-73.99757,Private room,45,2,0,,3,139 +48177,217692384,Manhattan,SoHo,40.72552,-74.00101,Entire home/apt,240,2,0,,1,90 +48178,129654782,Queens,Richmond Hill,40.68978,-73.81468000000001,Entire home/apt,150,3,0,,1,179 +48179,1196848,Manhattan,West Village,40.735640000000004,-74.00997,Entire home/apt,229,2,0,,1,10 +48180,7464960,Manhattan,Upper East Side,40.77247,-73.95792,Entire home/apt,200,2,0,,1,47 +48181,271350187,Brooklyn,Williamsburg,40.71731,-73.94906999999999,Private room,135,1,2,2.0,3,353 +48182,178720348,Manhattan,Harlem,40.818509999999996,-73.9567,Shared room,75,1,0,,2,34 +48183,41829977,Queens,Elmhurst,40.7479,-73.87496,Private room,115,1,0,,2,170 +48184,219908197,Brooklyn,Williamsburg,40.71632,-73.94295,Entire home/apt,595,2,0,,3,340 +48185,261953214,Queens,Jamaica Estates,40.715720000000005,-73.78204000000001,Entire home/apt,280,1,0,,1,330 +48186,1312063,Manhattan,SoHo,40.72548,-74.0021,Private room,200,1,1,1.0,1,203 +48187,271749110,Brooklyn,Crown Heights,40.67333,-73.91614,Private room,150,1,0,,1,177 +48188,6322527,Brooklyn,Crown Heights,40.67122,-73.94093000000001,Private room,75,2,2,2.0,1,89 +48189,7441368,Manhattan,Hell's Kitchen,40.75584,-73.99304000000001,Entire home/apt,175,1,0,,2,270 +48190,268119922,Brooklyn,Sunset Park,40.645340000000004,-74.01992,Entire home/apt,200,2,0,,1,322 +48191,53620244,Queens,Long Island City,40.74812,-73.93875,Entire home/apt,180,1,1,1.0,1,334 +48192,229381517,Brooklyn,Prospect Heights,40.68077,-73.97489,Entire home/apt,250,1,0,,2,175 +48193,153616576,Brooklyn,Bushwick,40.70795,-73.92039,Entire home/apt,250,1,0,,1,188 +48194,8415945,Manhattan,Greenwich Village,40.72968,-74.00195,Entire home/apt,157,3,1,1.0,1,169 +48195,55814811,Manhattan,Lower East Side,40.71989,-73.98459,Entire home/apt,198,3,0,,1,5 +48196,271784048,Manhattan,Harlem,40.82601,-73.93795,Private room,60,3,0,,1,229 +48197,216297714,Queens,Elmhurst,40.746,-73.87505999999999,Private room,78,14,0,,1,0 +48198,270307751,Manhattan,Lower East Side,40.71877,-73.99055,Entire home/apt,320,4,0,,1,160 +48199,258762273,Queens,Richmond Hill,40.6984,-73.84921,Private room,50,1,0,,1,308 +48200,271015294,Manhattan,Hell's Kitchen,40.76116,-73.99031,Entire home/apt,250,3,0,,1,259 +48201,14499116,Manhattan,Stuyvesant Town,40.735490000000006,-73.97707,Entire home/apt,250,20,0,,1,30 +48202,206115,Brooklyn,Bedford-Stuyvesant,40.68605,-73.92436,Entire home/apt,110,2,0,,1,182 +48203,30933227,Manhattan,Kips Bay,40.74133,-73.97706,Entire home/apt,130,30,1,1.0,1,54 +48204,114394986,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95546999999999,Private room,35,30,0,,1,43 +48205,31846499,Manhattan,East Harlem,40.78774,-73.94627,Private room,73,180,0,,1,0 +48206,271393608,Manhattan,Hell's Kitchen,40.76658,-73.98566,Shared room,69,1,0,,6,23 +48207,260209224,Queens,Jackson Heights,40.75077,-73.8702,Entire home/apt,67,2,0,,3,134 +48208,34274867,Manhattan,Washington Heights,40.85453,-73.93562,Entire home/apt,300,4,0,,1,319 +48209,271393608,Manhattan,Hell's Kitchen,40.76802,-73.98721,Shared room,69,1,1,1.0,6,24 +48210,61993016,Manhattan,Hell's Kitchen,40.76054,-73.99936,Private room,150,2,0,,1,11 +48211,271393608,Manhattan,Hell's Kitchen,40.7664,-73.98586,Shared room,69,1,1,1.0,6,24 +48212,229739739,Brooklyn,Flatbush,40.646,-73.95455,Private room,85,7,0,,2,176 +48213,271393608,Manhattan,Hell's Kitchen,40.768240000000006,-73.98538,Shared room,69,1,0,,6,19 +48214,271393608,Manhattan,Hell's Kitchen,40.767590000000006,-73.98697,Shared room,69,1,1,1.0,6,24 +48215,13605253,Queens,Springfield Gardens,40.67136,-73.76248000000001,Entire home/apt,95,2,0,,1,81 +48216,41484943,Brooklyn,Kensington,40.636759999999995,-73.97448,Private room,54,7,0,,2,225 +48217,47785320,Manhattan,Upper East Side,40.77352,-73.94693000000001,Entire home/apt,150,30,0,,1,66 +48218,226718475,Brooklyn,Bushwick,40.6938,-73.9091,Private room,39,15,0,,1,354 +48219,26794324,Brooklyn,Bushwick,40.702690000000004,-73.92833,Private room,45,7,0,,1,10 +48220,62154352,Manhattan,Harlem,40.81427,-73.95141,Entire home/apt,150,2,0,,1,40 +48221,6900478,Brooklyn,Greenpoint,40.732009999999995,-73.95299,Private room,85,1,0,,2,83 +48222,226520484,Brooklyn,Williamsburg,40.7154,-73.95438,Private room,70,5,1,1.0,1,7 +48223,271844440,Queens,Rockaway Beach,40.59087,-73.81143,Entire home/apt,139,1,0,,3,166 +48224,14098199,Brooklyn,Williamsburg,40.71413,-73.95685,Entire home/apt,250,5,0,,1,209 +48225,240367821,Manhattan,Harlem,40.811209999999996,-73.94124000000001,Entire home/apt,132,2,0,,1,199 +48226,270583057,Manhattan,Washington Heights,40.84366,-73.94018,Entire home/apt,195,5,0,,1,270 +48227,271863165,Manhattan,Tribeca,40.71888,-74.00431,Private room,500,5,0,,1,252 +48228,63389796,Queens,Rockaway Beach,40.58947,-73.81435,Entire home/apt,150,1,5,5.0,1,79 +48229,24304607,Bronx,Kingsbridge,40.87997,-73.90135,Private room,100,1,0,,1,115 +48230,271867677,Queens,Woodhaven,40.69658,-73.85615,Private room,50,1,2,2.0,1,359 +48231,40984551,Brooklyn,Bushwick,40.70567,-73.92359,Private room,70,2,0,,1,5 +48232,266037277,Manhattan,Hell's Kitchen,40.766870000000004,-73.98644,Private room,561,1,0,,1,364 +48233,44032493,Queens,Ditmars Steinway,40.77333,-73.9071,Entire home/apt,200,4,0,,1,117 +48234,18924861,Queens,Sunnyside,40.73769,-73.92441,Private room,60,28,0,,1,330 +48235,21515253,Manhattan,Hell's Kitchen,40.76141,-73.99213,Entire home/apt,209,1,1,1.0,2,32 +48236,201361410,Queens,Ridgewood,40.70657,-73.90448,Entire home/apt,55,20,0,,1,28 +48237,271885652,Queens,Rockaway Beach,40.58681,-73.8128,Entire home/apt,159,1,0,,4,166 +48238,60811527,Manhattan,East Village,40.72595,-73.98971,Entire home/apt,220,15,0,,1,61 +48239,91813899,Brooklyn,Crown Heights,40.67331,-73.93212,Private room,115,1,0,,1,58 +48240,8084384,Brooklyn,Fort Greene,40.6853,-73.9722,Entire home/apt,220,2,0,,1,3 +48241,267016512,Queens,Hollis,40.71309,-73.77171,Entire home/apt,99,1,0,,1,139 +48242,271896011,Brooklyn,Bushwick,40.68936,-73.90879,Private room,75,1,0,,1,175 +48243,1387341,Manhattan,SoHo,40.72403,-73.997,Entire home/apt,250,2,0,,1,247 +48244,271901058,Brooklyn,Bedford-Stuyvesant,40.68795,-73.9374,Private room,65,1,1,1.0,1,335 +48245,87827436,Manhattan,Financial District,40.704,-74.00646,Private room,90,24,0,,1,362 +48246,271349926,Manhattan,East Village,40.72833,-73.98482,Entire home/apt,250,3,0,,1,220 +48247,229381517,Brooklyn,Prospect Heights,40.680170000000004,-73.97352,Entire home/apt,250,1,0,,2,158 +48248,209921907,Brooklyn,Crown Heights,40.66997,-73.92696,Private room,38,2,0,,1,179 +48249,271916367,Queens,East Elmhurst,40.758990000000004,-73.85605,Private room,65,2,0,,1,176 +48250,21515253,Manhattan,Hell's Kitchen,40.76062,-73.99349000000001,Entire home/apt,209,1,0,,2,112 +48251,44929652,Brooklyn,East Flatbush,40.64431,-73.94866999999999,Entire home/apt,200,3,1,1.0,4,357 +48252,271928929,Manhattan,Hell's Kitchen,40.754020000000004,-73.99318000000001,Entire home/apt,75,1,4,4.0,1,98 +48253,271925782,Queens,Ridgewood,40.70062,-73.90796,Shared room,35,1,0,,1,72 +48254,214483712,Staten Island,Bull's Head,40.594359999999995,-74.16345,Private room,50,30,0,,3,179 +48255,214483712,Staten Island,Bull's Head,40.59475,-74.1637,Private room,50,30,0,,3,364 +48256,242376689,Queens,Long Island City,40.74693,-73.94175,Entire home/apt,150,5,0,,1,15 +48257,139897963,Brooklyn,Prospect-Lefferts Gardens,40.656940000000006,-73.95374,Private room,33,7,0,,1,159 +48258,3833262,Brooklyn,Crown Heights,40.669290000000004,-73.96222,Private room,46,2,0,,1,136 +48259,29535980,Brooklyn,Williamsburg,40.70671,-73.95076,Private room,65,7,0,,1,210 +48260,21802668,Manhattan,East Harlem,40.80208,-73.94415,Entire home/apt,250,17,0,,1,46 +48261,4169722,Manhattan,Harlem,40.80637,-73.94282,Entire home/apt,100,2,0,,1,11 +48262,270613726,Manhattan,East Village,40.72567,-73.98635,Entire home/apt,225,3,0,,1,231 +48263,272022688,Brooklyn,Sheepshead Bay,40.58713,-73.95349,Private room,89,2,0,,1,59 +48264,78501032,Manhattan,Hell's Kitchen,40.760659999999994,-73.99011,Entire home/apt,134,1,0,,1,0 +48265,264823783,Manhattan,Harlem,40.81922,-73.95286999999999,Private room,50,7,0,,2,53 +48266,272034378,Manhattan,Harlem,40.82808,-73.94126,Private room,45,3,0,,1,10 +48267,268784513,Queens,East Elmhurst,40.75815,-73.88323000000001,Private room,55,1,2,2.0,3,358 +48268,270629822,Manhattan,East Harlem,40.78586,-73.94475,Entire home/apt,199,3,3,3.0,1,349 +48269,272049968,Queens,Arverne,40.59389,-73.7906,Entire home/apt,90,1,0,,1,39 +48270,253552326,Manhattan,Chinatown,40.71368,-73.99635,Private room,98,1,0,,4,87 +48271,219573002,Manhattan,Washington Heights,40.85488,-73.93194,Entire home/apt,125,2,0,,1,2 +48272,44995980,Manhattan,Lower East Side,40.72007,-73.98873,Entire home/apt,179,10,0,,1,313 +48273,2344295,Manhattan,Lower East Side,40.71752,-73.99146999999999,Private room,260,2,0,,1,23 +48274,48164151,Brooklyn,Sunset Park,40.66294,-73.99146,Entire home/apt,250,3,0,,1,85 +48275,139995595,Manhattan,Upper West Side,40.78331,-73.9747,Entire home/apt,115,30,0,,1,103 +48276,271844440,Queens,Rockaway Beach,40.58967,-73.81351,Entire home/apt,129,1,0,,3,172 +48277,52997121,Queens,Jamaica,40.67606,-73.78288,Entire home/apt,250,1,0,,4,90 +48278,272080566,Queens,Elmhurst,40.7348,-73.86906,Entire home/apt,199,2,0,,1,157 +48279,272081051,Manhattan,Washington Heights,40.85342,-73.93714,Entire home/apt,99,3,0,,1,34 +48280,183950711,Manhattan,Gramercy,40.73275,-73.98241999999999,Entire home/apt,125,30,0,,1,119 +48281,271885652,Queens,Rockaway Beach,40.58818,-73.81302,Entire home/apt,139,1,1,1.0,4,171 +48282,23732730,Bronx,City Island,40.844429999999996,-73.78497,Entire home/apt,1000,1,0,,4,90 +48283,58629935,Brooklyn,Bushwick,40.6986,-73.91914,Private room,95,2,1,1.0,2,65 +48284,13422723,Brooklyn,Flatbush,40.65296,-73.95724,Entire home/apt,90,4,1,1.0,1,14 +48285,1134155,Manhattan,Morningside Heights,40.807390000000005,-73.96068000000001,Entire home/apt,150,2,0,,1,33 +48286,222487531,Manhattan,East Village,40.73061,-73.98409000000001,Entire home/apt,215,2,0,,1,109 +48287,84749340,Manhattan,Upper West Side,40.768359999999994,-73.98419,Entire home/apt,245,1,0,,1,287 +48288,33362434,Manhattan,Harlem,40.81795,-73.94099,Private room,100,2,0,,1,15 +48289,272118165,Manhattan,Chinatown,40.71387,-73.99427,Entire home/apt,155,5,0,,1,165 +48290,30730392,Brooklyn,Clinton Hill,40.6898,-73.96731,Entire home/apt,122,4,1,1.0,1,31 +48291,67567916,Brooklyn,Borough Park,40.64493,-73.99597,Shared room,35,1,0,,4,362 +48292,272127488,Brooklyn,Bushwick,40.69206,-73.92282,Entire home/apt,80,1,0,,2,13 +48293,234781729,Queens,Edgemere,40.593090000000004,-73.77958000000001,Private room,65,1,2,2.0,1,363 +48294,271681014,Brooklyn,Borough Park,40.6466,-73.99750999999999,Private room,45,1,0,,3,151 +48295,271681014,Brooklyn,Borough Park,40.64452,-73.99699,Private room,45,1,0,,3,179 +48296,266092932,Manhattan,Hell's Kitchen,40.75732,-73.99311999999999,Entire home/apt,229,2,0,,2,335 +48297,247335568,Queens,Long Island City,40.747170000000004,-73.94254000000001,Entire home/apt,200,1,0,,7,5 +48298,82406306,Manhattan,East Harlem,40.80128,-73.93991,Private room,78,1,0,,2,13 +48299,193345547,Brooklyn,Bushwick,40.699529999999996,-73.92154000000001,Entire home/apt,110,1,1,1.0,2,353 +48300,193345547,Brooklyn,Bushwick,40.699870000000004,-73.92203,Entire home/apt,135,1,0,,2,331 +48301,268920555,Manhattan,Chelsea,40.745309999999996,-73.99454,Private room,999,30,0,,1,270 +48302,129250918,Brooklyn,Fort Greene,40.68781,-73.98012,Shared room,200,1,0,,1,9 +48303,47604405,Brooklyn,Williamsburg,40.70957,-73.94995,Entire home/apt,50,28,0,,1,274 +48304,270214015,Manhattan,Hell's Kitchen,40.75533,-73.99866,Entire home/apt,2999,30,0,,1,222 +48305,272166348,Manhattan,Upper East Side,40.78132,-73.95262,Entire home/apt,1999,30,0,,1,270 +48306,73056987,Manhattan,Upper West Side,40.7988,-73.97277,Private room,200,3,0,,1,114 +48307,2793778,Queens,Forest Hills,40.71716,-73.83452,Private room,50,4,0,,5,55 +48308,42104268,Manhattan,Upper West Side,40.77649,-73.988,Private room,195,1,1,1.0,1,36 +48309,272241217,Manhattan,Lower East Side,40.71197,-73.99019,Private room,70,1,1,1.0,1,50 +48310,23732730,Bronx,City Island,40.84295,-73.78433000000001,Entire home/apt,600,1,0,,4,44 +48311,167024334,Brooklyn,Bushwick,40.701,-73.9243,Entire home/apt,150,2,0,,2,331 +48312,272247972,Bronx,Olinville,40.881159999999994,-73.86547,Shared room,25,90,0,,1,190 +48313,272243990,Manhattan,Midtown,40.76358,-73.97825,Entire home/apt,180,1,0,,1,57 +48314,18911497,Brooklyn,Boerum Hill,40.68784,-73.98579000000001,Private room,80,20,0,,1,40 +48315,11386608,Brooklyn,Bedford-Stuyvesant,40.69265,-73.93200999999999,Private room,35,9,0,,1,179 +48316,272127488,Brooklyn,Bushwick,40.69048,-73.92258000000001,Private room,55,1,0,,2,276 +48317,84163854,Manhattan,Upper West Side,40.77883,-73.98146,Entire home/apt,162,2,0,,1,12 +48318,48018277,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94089,Private room,95,2,0,,2,47 +48319,26325723,Manhattan,Upper East Side,40.77365,-73.94960999999999,Private room,80,1,0,,1,56 +48320,272267421,Queens,Maspeth,40.73455,-73.88899,Private room,50,1,0,,3,73 +48321,43392243,Staten Island,Concord,40.6011,-74.0783,Shared room,30,2,0,,4,82 +48322,144606000,Manhattan,Upper West Side,40.80064,-73.96778,Entire home/apt,250,14,0,,1,34 +48323,29590865,Brooklyn,Bay Ridge,40.6327,-74.03145,Entire home/apt,125,5,0,,1,15 +48324,3061951,Manhattan,Midtown,40.74422,-73.98172,Entire home/apt,190,5,0,,1,10 +48325,95054582,Brooklyn,Cobble Hill,40.68719,-73.99515,Private room,70,60,0,,1,156 +48326,272265146,Brooklyn,Bushwick,40.68822,-73.90979,Private room,50,1,0,,1,19 +48327,167024334,Brooklyn,Bushwick,40.70286,-73.92697,Entire home/apt,120,1,0,,2,339 +48328,263282580,Brooklyn,Bedford-Stuyvesant,40.69567,-73.93431,Private room,45,1,1,1.0,2,362 +48329,10004428,Brooklyn,Bushwick,40.69128,-73.92078000000001,Private room,75,4,0,,1,6 +48330,60456157,Brooklyn,Gravesend,40.596709999999995,-73.98741,Private room,85,7,0,,1,365 +48331,328898,Manhattan,East Harlem,40.80041,-73.94615,Private room,59,1,1,1.0,1,42 +48332,261187437,Brooklyn,Borough Park,40.63392,-74.00505,Private room,69,1,0,,6,180 +48333,140997060,Manhattan,Upper West Side,40.778240000000004,-73.98325,Entire home/apt,275,3,0,,2,24 +48334,2485019,Brooklyn,Bedford-Stuyvesant,40.683009999999996,-73.9138,Entire home/apt,95,4,0,,1,14 +48335,6754647,Manhattan,Upper East Side,40.76163,-73.96319,Entire home/apt,161,1,0,,1,22 +48336,67567916,Brooklyn,Borough Park,40.64283,-73.99416,Shared room,30,1,0,,4,365 +48337,141718825,Brooklyn,Bushwick,40.69341,-73.9215,Private room,125,1,0,,1,351 +48338,2981481,Brooklyn,Sunset Park,40.661,-73.99618000000001,Private room,80,2,0,,1,61 +48339,177067211,Brooklyn,Crown Heights,40.67556,-73.94418,Entire home/apt,99,15,0,,1,34 +48340,272308792,Bronx,Longwood,40.81629,-73.90945,Entire home/apt,85,1,1,1.0,1,14 +48341,67567916,Brooklyn,Borough Park,40.644259999999996,-73.99385,Shared room,35,1,0,,4,365 +48342,67567916,Brooklyn,Borough Park,40.64335,-73.9956,Shared room,35,1,0,,4,174 +48343,5723770,Manhattan,Chelsea,40.74921,-73.99776999999999,Entire home/apt,750,1,0,,1,89 +48344,272314085,Brooklyn,Bushwick,40.697179999999996,-73.92328,Private room,44,1,2,2.0,1,55 +48345,43388555,Manhattan,Washington Heights,40.85139,-73.92952,Entire home/apt,120,2,0,,1,37 +48346,192572987,Manhattan,Upper West Side,40.796170000000004,-73.96228,Entire home/apt,125,2,0,,1,0 +48347,157053317,Queens,East Elmhurst,40.76263,-73.88999,Private room,40,1,0,,1,318 +48348,266149167,Manhattan,Chelsea,40.74995,-73.99710999999999,Entire home/apt,234,2,0,,1,19 +48349,272324119,Queens,Jamaica,40.70642,-73.78365,Private room,39,2,0,,1,54 +48350,160895899,Brooklyn,Crown Heights,40.67644,-73.94005,Entire home/apt,167,3,0,,1,166 +48351,272327753,Brooklyn,Bay Ridge,40.62373,-74.02676,Entire home/apt,200,1,2,2.0,1,356 +48352,268248281,Manhattan,Chelsea,40.75264,-73.99785,Entire home/apt,225,3,0,,1,80 +48353,270849897,Manhattan,Washington Heights,40.83958,-73.94323,Private room,70,1,0,,2,90 +48354,270849897,Manhattan,Washington Heights,40.83967,-73.94189,Private room,70,1,0,,2,165 +48355,272342845,Brooklyn,Bushwick,40.701809999999995,-73.92541,Entire home/apt,120,30,0,,2,338 +48356,60983246,Brooklyn,Borough Park,40.630320000000005,-73.9936,Entire home/apt,103,6,0,,1,18 +48357,139171543,Brooklyn,Bedford-Stuyvesant,40.68294,-73.9258,Private room,66,3,0,,1,174 +48358,272365275,Queens,Bayswater,40.599470000000004,-73.76468,Private room,55,1,0,,1,170 +48359,270874051,Queens,Long Island City,40.75237,-73.93342,Private room,89,1,0,,8,298 +48360,9676462,Brooklyn,Williamsburg,40.71127,-73.96465,Entire home/apt,200,30,0,,1,62 +48361,270874051,Queens,Long Island City,40.75428,-73.93460999999999,Private room,89,1,0,,8,321 +48362,5288346,Manhattan,Upper East Side,40.7603,-73.96225,Entire home/apt,120,1,1,1.0,1,1 +48363,126974091,Manhattan,East Village,40.728229999999996,-73.97967,Private room,100,5,0,,1,11 +48364,272342845,Brooklyn,Bushwick,40.701570000000004,-73.92541999999999,Entire home/apt,160,2,0,,2,359 +48365,1409706,Brooklyn,Fort Greene,40.68739,-73.97792,Private room,135,6,0,,2,26 +48366,167228202,Manhattan,Chelsea,40.74991,-73.98854,Private room,150,3,0,,1,9 +48367,158718264,Manhattan,Hell's Kitchen,40.76399,-73.98639,Entire home/apt,199,1,0,,1,36 +48368,735287,Manhattan,Harlem,40.81458,-73.93696,Private room,150,60,0,,1,215 +48369,204048342,Brooklyn,Bushwick,40.70428,-73.92439,Private room,70,1,0,,1,1 +48370,46232598,Manhattan,Upper East Side,40.77001,-73.94915,Entire home/apt,150,1,1,1.0,1,130 +48371,127388906,Queens,Astoria,40.759,-73.9159,Entire home/apt,120,3,0,,1,32 +48372,90929344,Queens,Astoria,40.758309999999994,-73.9263,Entire home/apt,200,1,0,,1,2 +48373,271844440,Queens,Rockaway Beach,40.59029,-73.81277,Entire home/apt,99,1,1,1.0,3,176 +48374,272477673,Manhattan,Chelsea,40.74714,-73.99117,Shared room,67,1,0,,3,323 +48375,3678447,Brooklyn,Prospect-Lefferts Gardens,40.65494,-73.9603,Private room,150,2,0,,1,27 +48376,12776694,Manhattan,Upper East Side,40.76135,-73.96139000000001,Entire home/apt,250,8,0,,1,39 +48377,211353297,Manhattan,East Harlem,40.80396,-73.94038,Entire home/apt,125,3,0,,1,25 +48378,272485928,Manhattan,SoHo,40.72336,-74.00465,Entire home/apt,600,3,0,,1,179 +48379,272485617,Bronx,Port Morris,40.806259999999995,-73.92815,Entire home/apt,117,4,0,,1,290 +48380,271885652,Queens,Rockaway Beach,40.5879,-73.81269,Entire home/apt,99,1,1,1.0,4,162 +48381,53243644,Brooklyn,Bedford-Stuyvesant,40.69242,-73.94133000000001,Private room,60,1,0,,2,20 +48382,234224181,Queens,Rosedale,40.65933,-73.73993,Private room,34,1,0,,1,89 +48383,43461100,Manhattan,Upper West Side,40.77735,-73.98071999999999,Entire home/apt,240,7,0,,1,35 +48384,1409706,Brooklyn,Fort Greene,40.68889,-73.97632,Private room,130,6,1,1.0,2,29 +48385,242573197,Brooklyn,Flatbush,40.64428,-73.96988,Private room,50,3,0,,1,11 +48386,67670026,Brooklyn,Bedford-Stuyvesant,40.692859999999996,-73.94195,Entire home/apt,85,2,0,,1,17 +48387,258998574,Brooklyn,Bushwick,40.70384,-73.92232,Private room,40,2,1,1.0,1,16 +48388,121399223,Staten Island,Tompkinsville,40.6283,-74.08645,Private room,60,1,0,,1,88 +48389,173417532,Manhattan,Murray Hill,40.74943,-73.97173000000001,Private room,150,1,0,,3,82 +48390,8986298,Brooklyn,Bedford-Stuyvesant,40.68463,-73.95161,Entire home/apt,150,5,0,,1,43 +48391,208514239,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,1,1.0,3,340 +48392,3850264,Manhattan,Harlem,40.80658,-73.95736,Private room,138,3,1,1.0,2,65 +48393,62241191,Manhattan,Hell's Kitchen,40.75512,-73.99436999999999,Private room,85,1,0,,1,6 +48394,256197494,Brooklyn,Cypress Hills,40.68042,-73.88978,Private room,75,1,1,1.0,1,82 +48395,255641440,Queens,Flushing,40.75138,-73.81515,Private room,35,1,0,,7,358 +48396,271162941,Brooklyn,Midwood,40.62477,-73.95517,Private room,100,1,0,,3,330 +48397,178272943,Queens,Jamaica,40.671890000000005,-73.78008,Private room,50,1,0,,4,70 +48398,104028121,Manhattan,Washington Heights,40.85044,-73.93042,Private room,41,1,0,,1,38 +48399,268598775,Manhattan,Lower East Side,40.719840000000005,-73.9865,Entire home/apt,249,3,0,,1,91 +48400,272557714,Manhattan,Upper West Side,40.799929999999996,-73.96475,Private room,137,3,0,,1,44 +48401,272557707,Staten Island,Rosebank,40.6075,-74.07979,Private room,65,1,1,1.0,1,179 +48402,49346143,Manhattan,Nolita,40.72309,-73.99412,Entire home/apt,270,3,0,,1,152 +48403,1687367,Manhattan,Harlem,40.82913,-73.94484,Entire home/apt,199,2,0,,1,71 +48404,22157126,Brooklyn,Williamsburg,40.717729999999996,-73.94159,Private room,91,2,1,1.0,1,344 +48405,272571748,Brooklyn,Canarsie,40.63836,-73.89386999999999,Entire home/apt,160,2,0,,1,349 +48406,15550310,Brooklyn,Greenpoint,40.72931,-73.95515,Entire home/apt,115,3,0,,1,8 +48407,177402508,Manhattan,West Village,40.73495,-74.00583,Private room,200,2,0,,1,32 +48408,49164956,Brooklyn,Bedford-Stuyvesant,40.677620000000005,-73.91565,Private room,46,30,0,,5,246 +48409,267943725,Brooklyn,Midwood,40.62555,-73.95724,Private room,50,1,1,1.0,1,86 +48410,12091973,Brooklyn,Williamsburg,40.70518,-73.93794,Private room,100,1,1,1.0,1,1 +48411,272596313,Manhattan,Gramercy,40.7358,-73.99074,Entire home/apt,150,7,0,,1,29 +48412,63272360,Queens,Woodhaven,40.69342,-73.8684,Private room,55,4,0,,6,150 +48413,12579773,Manhattan,Upper East Side,40.76996,-73.95116999999999,Private room,220,4,1,1.0,1,15 +48414,35783912,Bronx,Fordham,40.86355,-73.89234,Private room,39,2,0,,8,58 +48415,35783912,Bronx,Fordham,40.86265,-73.89263000000001,Entire home/apt,178,2,0,,8,89 +48416,35783912,Bronx,Fordham,40.86264,-73.89139,Private room,29,2,0,,8,81 +48417,35783912,Bronx,Fordham,40.862629999999996,-73.89088000000001,Private room,33,2,0,,8,84 +48418,217463199,Queens,Flushing,40.74344,-73.82642,Private room,45,3,0,,4,365 +48419,217463199,Queens,Flushing,40.74407,-73.82645,Private room,75,3,0,,4,362 +48420,272609175,Brooklyn,Flatlands,40.61813,-73.94253,Private room,70,2,0,,1,365 +48421,43282809,Queens,Rockaway Beach,40.58954,-73.81361,Entire home/apt,125,1,0,,1,67 +48422,105620188,Queens,Belle Harbor,40.57762,-73.84461999999999,Entire home/apt,350,3,0,,1,41 +48423,66486652,Manhattan,Upper East Side,40.774390000000004,-73.95047,Entire home/apt,242,3,0,,1,17 +48424,59513442,Manhattan,Gramercy,40.73619,-73.98021999999999,Private room,88,18,0,,1,33 +48425,85261578,Brooklyn,Flatbush,40.64105,-73.9595,Entire home/apt,195,5,0,,1,6 +48426,24856484,Manhattan,Murray Hill,40.745059999999995,-73.97362,Entire home/apt,400,2,0,,1,66 +48427,242573463,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94314,Private room,77,2,0,,7,153 +48428,6186588,Manhattan,Morningside Heights,40.815459999999995,-73.95823,Entire home/apt,150,2,0,,1,10 +48429,23780133,Manhattan,Nolita,40.723490000000005,-73.99322,Entire home/apt,180,3,0,,1,14 +48430,272747534,Manhattan,Hell's Kitchen,40.75987,-73.99615,Private room,125,2,0,,1,41 +48431,272748063,Queens,Woodside,40.75496,-73.90685,Private room,50,7,0,,1,0 +48432,272747109,Manhattan,Kips Bay,40.74612,-73.9796,Entire home/apt,220,4,0,,1,78 +48433,23905369,Brooklyn,Prospect-Lefferts Gardens,40.66148,-73.96248,Entire home/apt,100,3,0,,1,165 +48434,242573463,Brooklyn,Bedford-Stuyvesant,40.69563,-73.94197,Private room,77,2,0,,7,165 +48435,242573463,Brooklyn,Bedford-Stuyvesant,40.69549,-73.9416,Private room,77,2,0,,7,150 +48436,116027328,Queens,East Elmhurst,40.76565,-73.88278000000001,Private room,45,1,0,,1,45 +48437,242573463,Brooklyn,Bedford-Stuyvesant,40.69685,-73.94372,Private room,77,2,0,,7,169 +48438,19797950,Brooklyn,Gowanus,40.66662,-73.9936,Private room,51,1,0,,3,333 +48439,10002937,Manhattan,Washington Heights,40.84267,-73.93816,Entire home/apt,85,1,0,,1,1 +48440,242573463,Brooklyn,Bedford-Stuyvesant,40.6963,-73.94365,Private room,77,2,0,,7,170 +48441,233485864,Staten Island,New Dorp Beach,40.565059999999995,-74.1024,Private room,40,1,0,,2,341 +48442,242573463,Brooklyn,Bedford-Stuyvesant,40.69684,-73.94256999999999,Private room,77,2,0,,7,168 +48443,95143048,Manhattan,East Village,40.72384,-73.98791,Entire home/apt,200,2,0,,2,314 +48444,242573463,Brooklyn,Bedford-Stuyvesant,40.696529999999996,-73.94213,Private room,77,2,0,,7,147 +48445,19797950,Brooklyn,Gowanus,40.66684,-73.99333,Private room,51,1,0,,3,333 +48446,444904,Staten Island,St. George,40.64005,-74.07987,Entire home/apt,100,365,0,,1,342 +48447,272787571,Manhattan,Harlem,40.81374,-73.9439,Entire home/apt,125,4,0,,1,158 +48448,70343342,Manhattan,Stuyvesant Town,40.73258,-73.98039,Private room,99,5,0,,1,12 +48449,159239228,Manhattan,Hell's Kitchen,40.76595,-73.98661,Entire home/apt,190,4,0,,1,158 +48450,6077516,Brooklyn,Downtown Brooklyn,40.69751,-73.98536,Entire home/apt,200,3,0,,1,0 +48451,272796645,Brooklyn,Prospect-Lefferts Gardens,40.65567,-73.96125,Entire home/apt,199,2,0,,1,141 +48452,194377959,Manhattan,Tribeca,40.72262,-74.00861,Entire home/apt,250,21,0,,1,66 +48453,19962052,Manhattan,Kips Bay,40.739290000000004,-73.98183,Private room,135,2,1,1.0,3,41 +48454,267839371,Manhattan,Upper East Side,40.77551,-73.95404,Private room,120,1,1,1.0,2,358 +48455,267839371,Manhattan,Upper East Side,40.77574,-73.95324000000001,Shared room,100,1,0,,2,360 +48456,272815283,Queens,Long Island City,40.74893,-73.93755,Entire home/apt,180,1,0,,1,60 +48457,272816114,Manhattan,Financial District,40.70583,-74.01038,Entire home/apt,170,1,1,1.0,1,323 +48458,179256587,Queens,Sunnyside,40.74907,-73.91892,Entire home/apt,95,5,0,,1,42 +48459,159382205,Queens,Arverne,40.592909999999996,-73.78708,Shared room,39,1,0,,2,43 +48460,137094460,Queens,Springfield Gardens,40.66015,-73.7528,Entire home/apt,100,2,0,,1,13 +48461,271624892,Manhattan,Hell's Kitchen,40.76356,-73.98823,Entire home/apt,330,1,0,,1,180 +48462,271282883,Brooklyn,Greenpoint,40.72613,-73.9426,Private room,109,6,0,,2,54 +48463,272829356,Manhattan,Upper East Side,40.77469,-73.95181,Entire home/apt,230,3,0,,1,350 +48464,144107218,Brooklyn,East Flatbush,40.658229999999996,-73.93459,Private room,55,1,0,,1,316 +48465,199696316,Brooklyn,Crown Heights,40.66709,-73.96095,Entire home/apt,150,2,0,,1,6 +48466,494507,Brooklyn,Gowanus,40.67587,-73.98418000000001,Private room,100,5,0,,1,91 +48467,6432439,Manhattan,West Village,40.734770000000005,-74.00246,Entire home/apt,299,3,0,,1,107 +48468,24187843,Queens,Astoria,40.76462,-73.91039,Entire home/apt,180,2,0,,1,365 +48469,179384567,Brooklyn,East Flatbush,40.64165,-73.9282,Entire home/apt,159,7,0,,1,343 +48470,272838881,Brooklyn,Bushwick,40.69027,-73.91376,Private room,60,2,0,,1,74 +48471,272842040,Manhattan,Upper East Side,40.76703,-73.96979,Entire home/apt,225,2,0,,1,39 +48472,7460932,Brooklyn,Columbia St,40.681740000000005,-74.00483,Entire home/apt,94,5,0,,1,5 +48473,261612429,Manhattan,East Village,40.72627,-73.98543000000001,Entire home/apt,207,30,0,,1,55 +48474,272317337,Manhattan,Hell's Kitchen,40.76294,-73.99167,Entire home/apt,170,3,0,,1,188 +48475,52371107,Brooklyn,Bushwick,40.69212,-73.92520999999999,Private room,40,1,0,,1,33 +48476,17728651,Manhattan,Financial District,40.70847,-74.00498,Private room,57,1,0,,1,7 +48477,272856249,Manhattan,Gramercy,40.73258,-73.9819,Entire home/apt,300,10,0,,1,33 +48478,29570399,Manhattan,Upper East Side,40.774879999999996,-73.94934,Entire home/apt,210,2,0,,1,106 +48479,38858002,Manhattan,Washington Heights,40.84467,-73.94289,Private room,90,1,0,,1,12 +48480,272602584,Manhattan,Kips Bay,40.7401,-73.98255999999999,Private room,70,20,0,,1,314 +48481,264621546,Manhattan,East Village,40.73123,-73.98895999999999,Entire home/apt,400,2,0,,1,90 +48482,172693570,Brooklyn,Bushwick,40.691959999999995,-73.91143000000001,Private room,45,1,0,,1,8 +48483,220991097,Brooklyn,East New York,40.67303,-73.88620999999999,Private room,50,1,0,,1,166 +48484,272865451,Brooklyn,Williamsburg,40.712990000000005,-73.96559,Entire home/apt,280,2,0,,1,318 +48485,49037454,Manhattan,Chelsea,40.74218,-73.99813,Entire home/apt,150,5,0,,1,4 +48486,272872092,Queens,Forest Hills,40.73657,-73.85088,Entire home/apt,16,9,1,1.0,1,322 +48487,99927578,Manhattan,Hell's Kitchen,40.75906,-73.99049000000001,Entire home/apt,300,5,0,,1,83 +48488,122963021,Brooklyn,Sunset Park,40.65012,-74.00867,Private room,30,7,0,,1,190 +48489,15439713,Manhattan,Chelsea,40.73916,-74.0006,Entire home/apt,181,1,0,,1,4 +48490,6556741,Brooklyn,Bedford-Stuyvesant,40.680409999999995,-73.95579000000001,Private room,58,4,0,,4,29 +48491,45909314,Brooklyn,Bushwick,40.69807,-73.93466,Private room,55,1,0,,1,14 +48492,213428885,Manhattan,Harlem,40.80707,-73.95241999999999,Private room,40,20,0,,1,273 +48493,45623497,Manhattan,Battery Park City,40.709740000000004,-74.01774,Entire home/apt,105,30,0,,1,31 +48494,17211451,Brooklyn,Clinton Hill,40.68316,-73.96289,Entire home/apt,84,30,0,,1,39 +48495,270554496,Brooklyn,Bedford-Stuyvesant,40.69246,-73.93427,Private room,450,1,0,,1,179 +48496,174496733,Bronx,Clason Point,40.80655,-73.85093,Entire home/apt,379,3,0,,1,167 +48497,6057887,Manhattan,Washington Heights,40.84905,-73.93951,Private room,79,3,0,,5,18 +48498,6057887,Manhattan,Washington Heights,40.84817,-73.93848,Private room,95,3,0,,5,18 +48499,6057887,Manhattan,Washington Heights,40.84762,-73.93898,Private room,45,4,0,,5,7 +48500,174811960,Queens,Ridgewood,40.70864,-73.90034,Private room,55,1,0,,1,165 +48501,235530740,Brooklyn,Bedford-Stuyvesant,40.68196,-73.94463,Entire home/apt,165,3,0,,3,152 +48502,45919617,Queens,Maspeth,40.73792,-73.89201,Private room,65,1,0,,1,177 +48503,5680111,Brooklyn,Bushwick,40.6878,-73.91506,Private room,65,4,0,,7,149 +48504,272994721,Brooklyn,Williamsburg,40.70497,-73.9375,Private room,60,5,0,,1,15 +48505,66404497,Manhattan,Gramercy,40.737759999999994,-73.98418000000001,Entire home/apt,250,7,0,,1,12 +48506,200927536,Brooklyn,Bushwick,40.70598,-73.91618000000001,Entire home/apt,129,5,0,,3,351 +48507,271275048,Manhattan,Chelsea,40.74767,-73.99256,Entire home/apt,109,30,0,,2,363 +48508,55108207,Brooklyn,Prospect Heights,40.67928,-73.97069,Entire home/apt,450,3,0,,1,31 +48509,217362657,Manhattan,Upper West Side,40.79469,-73.96687,Entire home/apt,520,30,0,,1,310 +48510,273024325,Manhattan,Nolita,40.723490000000005,-73.99457,Entire home/apt,316,30,0,,1,310 +48511,143725634,Queens,Long Island City,40.76001,-73.93030999999999,Entire home/apt,450,2,0,,1,321 +48512,214095681,Queens,Sunnyside,40.74583,-73.92268,Entire home/apt,74,15,0,,2,22 +48513,22200018,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93508,Private room,75,2,0,,2,115 +48514,159382205,Queens,Arverne,40.59173,-73.78668,Shared room,37,1,0,,2,148 +48515,273038911,Manhattan,Inwood,40.8683,-73.92161,Entire home/apt,349,2,0,,1,365 +48516,219987377,Brooklyn,Brighton Beach,40.57936,-73.95388,Entire home/apt,150,7,0,,1,7 +48517,23191854,Brooklyn,Midwood,40.61231,-73.95448,Private room,44,2,0,,1,7 +48518,41698272,Manhattan,East Village,40.72797,-73.98155,Private room,72,3,0,,1,170 +48519,111768943,Manhattan,Tribeca,40.71918,-74.00786,Entire home/apt,169,6,0,,1,55 +48520,139296591,Manhattan,Washington Heights,40.83851,-73.94579,Private room,120,3,0,,1,344 +48521,272267421,Queens,Maspeth,40.73452,-73.88795,Private room,70,1,0,,3,75 +48522,273059367,Queens,Long Island City,40.743559999999995,-73.95314,Entire home/apt,250,2,0,,1,76 +48523,217732163,Brooklyn,Bedford-Stuyvesant,40.687670000000004,-73.95805,Entire home/apt,1369,1,0,,1,349 +48524,74773867,Brooklyn,Park Slope,40.67455,-73.98477,Entire home/apt,150,1,1,1.0,1,8 +48525,268394581,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93345,Private room,75,1,0,,3,137 +48526,234090781,Queens,Bayswater,40.60804,-73.75829,Private room,45,3,1,1.0,2,90 +48527,273057459,Manhattan,Chelsea,40.7404,-73.99853,Entire home/apt,299,2,0,,1,157 +48528,143730512,Queens,Long Island City,40.75419,-73.93445,Entire home/apt,350,2,0,,1,312 +48529,30283594,Manhattan,Upper East Side,40.762879999999996,-73.95828,Entire home/apt,269,30,0,,121,333 +48530,30283594,Manhattan,Upper East Side,40.763020000000004,-73.95769,Entire home/apt,269,30,0,,121,318 +48531,25498509,Brooklyn,Clinton Hill,40.68183,-73.96464,Entire home/apt,100,1,0,,1,6 +48532,171482981,Queens,Maspeth,40.71327,-73.90982,Private room,65,2,1,1.0,1,21 +48533,28586423,Staten Island,Stapleton,40.62878,-74.07301,Entire home/apt,450,5,0,,1,88 +48534,268394581,Brooklyn,Bedford-Stuyvesant,40.68969,-73.93285,Private room,68,1,1,1.0,3,127 +48535,245712163,Brooklyn,Bedford-Stuyvesant,40.68245,-73.93417,Entire home/apt,1749,1,0,,1,303 +48536,97633452,Brooklyn,Williamsburg,40.71437,-73.9437,Private room,150,10,0,,1,91 +48537,25585857,Manhattan,Upper East Side,40.78324,-73.94734,Entire home/apt,275,6,0,,1,73 +48538,180397183,Manhattan,Hell's Kitchen,40.76806,-73.99254,Entire home/apt,320,1,0,,1,90 +48539,272267421,Queens,Maspeth,40.73283,-73.8892,Private room,60,1,0,,3,90 +48540,256634262,Brooklyn,Bay Ridge,40.63107,-74.0255,Private room,46,1,0,,1,131 +48541,273086651,Queens,Richmond Hill,40.692029999999995,-73.83012,Entire home/apt,185,3,0,,1,32 +48542,264971021,Manhattan,Midtown,40.751670000000004,-73.98585,Entire home/apt,325,2,0,,1,324 +48543,84333525,Manhattan,Harlem,40.81758,-73.94008000000001,Private room,75,2,0,,1,49 +48544,269342470,Brooklyn,Windsor Terrace,40.64921,-73.97971,Entire home/apt,100,1,0,,2,11 +48545,272870209,Manhattan,East Village,40.72413,-73.97277,Private room,75,2,0,,1,365 +48546,45631198,Brooklyn,East Flatbush,40.63845,-73.94365,Entire home/apt,63,1,0,,1,19 +48547,5958193,Queens,Ridgewood,40.693259999999995,-73.90316,Entire home/apt,140,2,0,,1,62 +48548,2019485,Manhattan,Morningside Heights,40.8075,-73.96679,Entire home/apt,103,3,0,,1,40 +48549,86813128,Manhattan,East Harlem,40.81488,-73.93458000000001,Private room,65,4,0,,1,10 +48550,16883913,Queens,Ridgewood,40.69919,-73.89902,Private room,45,1,0,,1,0 +48551,19510896,Manhattan,Harlem,40.825390000000006,-73.9488,Private room,70,1,0,,1,5 +48552,17522037,Brooklyn,Greenpoint,40.726729999999996,-73.95223,Private room,75,3,0,,1,23 +48553,273101976,Queens,Astoria,40.75825,-73.90959000000001,Entire home/apt,169,3,0,,1,151 +48554,115168723,Brooklyn,Bushwick,40.70469,-73.92458,Private room,43,7,0,,1,12 +48555,178272943,Queens,Jamaica,40.671,-73.77911,Entire home/apt,250,1,0,,4,69 +48556,138379336,Manhattan,SoHo,40.72654,-74.00201,Entire home/apt,285,5,0,,1,365 +48557,28966357,Manhattan,Upper West Side,40.79485,-73.96243,Private room,100,28,0,,3,337 +48558,273108831,Brooklyn,Bedford-Stuyvesant,40.6915,-73.9359,Entire home/apt,275,3,0,,1,365 +48559,107434423,Manhattan,Flatiron District,40.74395,-73.99109,Entire home/apt,321,30,0,,232,330 +48560,107434423,Manhattan,Theater District,40.761109999999995,-73.98510999999999,Entire home/apt,303,30,0,,232,318 +48561,107434423,Manhattan,SoHo,40.72229,-73.99888,Entire home/apt,466,30,0,,232,354 +48562,107434423,Manhattan,Midtown,40.7453,-73.99063000000001,Entire home/apt,338,30,0,,232,325 +48563,107434423,Manhattan,Midtown,40.744440000000004,-73.99015,Entire home/apt,343,30,0,,232,324 +48564,107434423,Manhattan,Tribeca,40.713,-74.00990999999999,Entire home/apt,269,30,0,,232,193 +48565,107434423,Manhattan,Chelsea,40.74451,-73.99939,Entire home/apt,421,30,0,,232,292 +48566,107434423,Manhattan,Tribeca,40.71495,-74.00701,Entire home/apt,314,30,0,,232,299 +48567,269146714,Manhattan,West Village,40.7367,-74.00105,Entire home/apt,333,2,0,,1,336 +48568,35343897,Brooklyn,Sheepshead Bay,40.60853,-73.96044,Private room,38,12,0,,1,156 +48569,31422161,Brooklyn,Bedford-Stuyvesant,40.68983,-73.92775,Private room,75,1,0,,1,76 +48570,62659791,Brooklyn,Crown Heights,40.678329999999995,-73.95349,Shared room,80,1,0,,2,365 +48571,167089974,Manhattan,Harlem,40.81893,-73.95416999999999,Entire home/apt,202,3,0,,1,205 +48572,21261408,Brooklyn,Clinton Hill,40.68971,-73.96073,Shared room,35,1,0,,6,345 +48573,130159651,Manhattan,East Village,40.72327,-73.98026999999999,Shared room,40,7,0,,1,42 +48574,86365675,Queens,Astoria,40.764829999999996,-73.91897,Entire home/apt,150,5,0,,1,348 +48575,273139430,Brooklyn,Crown Heights,40.67322,-73.95581,Private room,39,1,0,,1,14 +48576,52917571,Manhattan,Midtown,40.75286,-73.99297,Private room,120,2,1,1.0,1,7 +48577,50213173,Brooklyn,Crown Heights,40.67733,-73.94878,Private room,45,30,0,,1,31 +48578,273142559,Queens,Glendale,40.70428,-73.85726,Private room,40,1,0,,1,149 +48579,21357175,Manhattan,Washington Heights,40.8415,-73.93661,Entire home/apt,107,4,0,,1,9 +48580,14598000,Brooklyn,Williamsburg,40.70928,-73.94066,Private room,59,4,0,,2,297 +48581,22566268,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95675,Private room,110,1,0,,1,45 +48582,221179834,Brooklyn,Sheepshead Bay,40.601459999999996,-73.94673,Private room,40,2,0,,1,89 +48583,167092099,Manhattan,Upper East Side,40.76887,-73.95894,Entire home/apt,188,1,0,,1,179 +48584,3247267,Brooklyn,Greenpoint,40.73625,-73.95444,Private room,70,1,0,,1,70 +48585,177402890,Queens,Cambria Heights,40.690529999999995,-73.73203000000001,Private room,60,1,0,,1,83 +48586,272477673,Manhattan,Chelsea,40.74753,-73.9908,Shared room,75,2,0,,3,336 +48587,100427647,Brooklyn,Greenpoint,40.73261,-73.95156999999999,Private room,195,1,0,,1,160 +48588,140433148,Brooklyn,Bushwick,40.69283,-73.90481,Private room,55,29,0,,3,66 +48589,259645305,Brooklyn,Crown Heights,40.66531,-73.93887,Private room,35,1,0,,1,56 +48590,273078104,Manhattan,Upper East Side,40.769659999999995,-73.96688,Entire home/apt,239,1,0,,1,15 +48591,273170125,Brooklyn,Williamsburg,40.7128,-73.93984,Private room,99,1,0,,1,90 +48592,54634154,Manhattan,Harlem,40.8026,-73.95373000000001,Private room,75,3,0,,1,29 +48593,182954454,Queens,Jamaica,40.67105,-73.77308000000001,Private room,75,2,0,,2,88 +48594,273177557,Queens,Jamaica,40.66806,-73.77658000000001,Private room,200,1,0,,1,168 +48595,6524294,Manhattan,Upper East Side,40.78439,-73.95761999999999,Entire home/apt,400,5,0,,2,363 +48596,97640457,Manhattan,East Harlem,40.79913,-73.94226,Private room,90,2,0,,1,171 +48597,271627222,Manhattan,East Harlem,40.80995,-73.93800999999999,Private room,215,1,0,,1,30 +48598,262999899,Manhattan,Hell's Kitchen,40.759409999999995,-73.99179000000001,Entire home/apt,239,7,0,,1,77 +48599,17379828,Brooklyn,Williamsburg,40.70906,-73.95544,Private room,75,3,0,,1,7 +48600,235465195,Queens,Flushing,40.747609999999995,-73.8138,Private room,100,1,0,,1,177 +48601,269870940,Manhattan,Financial District,40.70603,-74.01084,Entire home/apt,75,1,1,1.0,1,181 +48602,236187116,Brooklyn,Bushwick,40.69757,-73.92611,Private room,65,1,0,,2,19 +48603,10184022,Brooklyn,Williamsburg,40.72078,-73.95891999999999,Private room,115,2,0,,1,54 +48604,234635363,Brooklyn,Bushwick,40.699220000000004,-73.9313,Private room,50,1,0,,1,12 +48605,222549093,Manhattan,Morningside Heights,40.814859999999996,-73.95795,Private room,59,3,0,,3,5 +48606,236187116,Brooklyn,Bushwick,40.6978,-73.92589,Private room,75,1,0,,2,18 +48607,5498979,Queens,Ditmars Steinway,40.7772,-73.90258,Private room,79,2,0,,1,8 +48608,226339724,Brooklyn,Bedford-Stuyvesant,40.68111,-73.91294,Private room,40,5,0,,10,356 +48609,273288629,Queens,Astoria,40.767990000000005,-73.91559000000001,Entire home/apt,150,2,0,,1,359 +48610,59333822,Brooklyn,Bedford-Stuyvesant,40.684709999999995,-73.92627,Private room,75,2,0,,1,356 +48611,17682620,Manhattan,Hell's Kitchen,40.758959999999995,-73.99153000000001,Entire home/apt,300,5,0,,1,34 +48612,27560165,Brooklyn,Crown Heights,40.677640000000004,-73.94991,Private room,45,1,0,,1,176 +48613,271799,Brooklyn,Bedford-Stuyvesant,40.69378,-73.93932,Entire home/apt,200,3,0,,2,316 +48614,264810896,Manhattan,Upper West Side,40.7715,-73.9877,Entire home/apt,240,3,0,,1,58 +48615,3867848,Queens,Astoria,40.76887,-73.91128,Private room,150,1,1,1.0,1,165 +48616,119005168,Manhattan,Theater District,40.75982,-73.98662,Entire home/apt,400,2,0,,1,3 +48617,273316025,Queens,Rego Park,40.72614,-73.8594,Private room,80,1,0,,1,123 +48618,58956100,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93044,Private room,80,7,0,,1,61 +48619,111020505,Manhattan,Kips Bay,40.74049,-73.98184,Private room,57,30,0,,1,253 +48620,91268177,Manhattan,Chelsea,40.7448,-74.00761,Entire home/apt,299,3,0,,4,220 +48621,27589350,Queens,Astoria,40.76575,-73.92307,Private room,55,1,0,,1,13 +48622,273101668,Manhattan,Harlem,40.83225,-73.94496,Private room,60,2,0,,1,72 +48623,23254491,Manhattan,East Harlem,40.80109,-73.94364,Private room,150,1,0,,2,26 +48624,14598000,Brooklyn,Williamsburg,40.70802,-73.94053000000001,Entire home/apt,200,4,0,,2,315 +48625,273344288,Brooklyn,Midwood,40.616929999999996,-73.95354,Entire home/apt,180,1,0,,1,57 +48626,273347409,Manhattan,Financial District,40.70485,-74.00822,Entire home/apt,430,3,0,,1,42 +48627,273354185,Bronx,Castle Hill,40.81576,-73.84653,Entire home/apt,98,3,0,,7,169 +48628,273354185,Bronx,Castle Hill,40.81733,-73.84806999999999,Entire home/apt,128,2,0,,7,167 +48629,273354185,Bronx,Castle Hill,40.8154,-73.84657,Private room,38,3,0,,7,177 +48630,273354185,Bronx,Castle Hill,40.81727,-73.84588000000001,Private room,38,2,0,,7,177 +48631,273354185,Bronx,Castle Hill,40.81572,-73.84591999999999,Private room,39,2,0,,7,177 +48632,273354185,Bronx,Castle Hill,40.81539,-73.84669,Private room,39,2,0,,7,177 +48633,273354185,Bronx,Castle Hill,40.81709,-73.84810999999999,Private room,39,2,0,,7,177 +48634,273361532,Manhattan,Upper West Side,40.80281,-73.9655,Entire home/apt,110,3,2,2.0,1,15 +48635,12268556,Manhattan,Tribeca,40.71877,-74.0026,Entire home/apt,349,3,0,,1,11 +48636,52984497,Brooklyn,Bedford-Stuyvesant,40.68914,-73.92408,Private room,33,30,2,2.0,1,87 +48637,28983064,Manhattan,Financial District,40.70664,-74.01258,Private room,57,30,0,,1,66 +48638,36205885,Queens,Ridgewood,40.70688,-73.90981,Entire home/apt,80,1,0,,3,163 +48639,55038786,Brooklyn,Bensonhurst,40.62056,-74.00225,Private room,50,30,0,,1,98 +48640,270077888,Brooklyn,Bushwick,40.69266,-73.92589,Private room,47,30,0,,2,162 +48641,54706499,Manhattan,Upper East Side,40.77792,-73.94476,Entire home/apt,250,2,0,,1,16 +48642,15870918,Manhattan,West Village,40.72964,-74.0031,Entire home/apt,200,2,0,,1,6 +48643,44024684,Manhattan,East Village,40.725970000000004,-73.97645,Private room,85,1,0,,1,15 +48644,270874051,Queens,Long Island City,40.75285,-73.93428,Private room,139,1,0,,8,359 +48645,81345246,Brooklyn,Bedford-Stuyvesant,40.690529999999995,-73.92635,Private room,85,4,0,,1,89 +48646,270278177,Brooklyn,Flatlands,40.63236,-73.93214,Entire home/apt,78,1,0,,1,86 +48647,273393150,Queens,Richmond Hill,40.68639,-73.81846999999999,Private room,28,2,0,,1,24 +48648,273392981,Queens,Long Island City,40.75716,-73.94221999999999,Private room,101,1,0,,3,365 +48649,201187671,Staten Island,Shore Acres,40.612829999999995,-74.06625,Private room,54,4,0,,1,89 +48650,118767681,Manhattan,Upper West Side,40.80243,-73.96637,Private room,49,1,0,,1,14 +48651,222559543,Brooklyn,East New York,40.6618,-73.87908,Private room,48,2,0,,2,329 +48652,108355692,Queens,Flushing,40.75825,-73.83369,Private room,57,30,0,,1,87 +48653,251802585,Brooklyn,Greenpoint,40.73192,-73.95839000000001,Private room,115,5,0,,1,10 +48654,268242223,Manhattan,Harlem,40.81954,-73.94277,Private room,40,2,0,,1,363 +48655,273424772,Brooklyn,Prospect-Lefferts Gardens,40.65784,-73.94484,Entire home/apt,200,5,0,,1,156 +48656,160175680,Queens,Ridgewood,40.70617,-73.90503000000001,Entire home/apt,75,15,0,,1,22 +48657,135363269,Brooklyn,Sunset Park,40.64372,-74.00656,Entire home/apt,120,3,0,,1,320 +48658,111001956,Brooklyn,East New York,40.65698,-73.89211999999999,Private room,45,1,0,,1,363 +48659,253681134,Manhattan,Washington Heights,40.83423,-73.94723,Private room,74,3,0,,1,3 +48660,3850264,Manhattan,Harlem,40.80656,-73.95593000000001,Private room,60,3,0,,2,86 +48661,258391290,Brooklyn,Bushwick,40.69342,-73.92679,Private room,45,7,0,,1,14 +48662,118405437,Queens,Woodhaven,40.694109999999995,-73.86877,Private room,66,1,0,,2,365 +48663,32303395,Brooklyn,Bedford-Stuyvesant,40.6858,-73.92899,Private room,120,2,0,,1,6 +48664,35141789,Manhattan,Upper East Side,40.78332,-73.95155,Entire home/apt,100,10,0,,1,21 +48665,37872024,Brooklyn,Crown Heights,40.67011,-73.9243,Private room,30,10,0,,1,32 +48666,271336460,Brooklyn,East New York,40.6625,-73.88081,Shared room,200,7,0,,1,365 +48667,273524881,Manhattan,Financial District,40.70787,-74.0078,Entire home/apt,158,7,0,,1,70 +48668,3449848,Manhattan,Chelsea,40.73896,-73.99935,Entire home/apt,350,3,0,,1,8 +48669,273546395,Brooklyn,Bushwick,40.6998,-73.91913000000001,Entire home/apt,165,3,0,,1,364 +48670,273519401,Manhattan,Gramercy,40.73684,-73.98796999999999,Entire home/apt,299,1,0,,1,168 +48671,273544738,Manhattan,Nolita,40.72132,-73.99586,Entire home/apt,176,2,0,,1,324 +48672,273551058,Queens,Ozone Park,40.68432,-73.85862,Private room,55,1,0,,1,129 +48673,48434623,Queens,Long Island City,40.75267,-73.93028000000001,Entire home/apt,85,20,0,,1,51 +48674,44378432,Bronx,Pelham Bay,40.84735,-73.83095,Shared room,50,1,0,,1,88 +48675,90870599,Manhattan,Financial District,40.708220000000004,-74.01418000000001,Entire home/apt,225,4,0,,1,79 +48676,271590063,Manhattan,Stuyvesant Town,40.7338,-73.97972,Private room,70,1,0,,1,270 +48677,266211707,Brooklyn,Sunset Park,40.64454,-74.0201,Private room,185,1,0,,2,175 +48678,289823,Brooklyn,Brooklyn Heights,40.69383,-73.99328,Entire home/apt,115,14,0,,1,17 +48679,273560024,Manhattan,Hell's Kitchen,40.76443,-73.98516,Private room,88,3,0,,1,7 +48680,1256264,Manhattan,Chelsea,40.751129999999996,-74.00231,Entire home/apt,450,5,0,,1,167 +48681,273568164,Manhattan,Lower East Side,40.71958,-73.98741,Entire home/apt,198,30,0,,1,152 +48682,273570019,Queens,Astoria,40.763490000000004,-73.92577,Private room,75,1,0,,1,359 +48683,6948761,Brooklyn,Clinton Hill,40.68807,-73.96571999999999,Entire home/apt,400,5,0,,1,13 +48684,266211707,Brooklyn,Sunset Park,40.64439,-74.01816,Private room,185,1,0,,2,177 +48685,14258377,Queens,Astoria,40.76389,-73.91963,Private room,50,4,0,,1,38 +48686,185936267,Manhattan,Lower East Side,40.72129,-73.98585,Entire home/apt,200,3,0,,1,89 +48687,273392981,Queens,Long Island City,40.75615,-73.94121,Private room,101,1,0,,3,365 +48688,108640056,Manhattan,Lower East Side,40.714209999999994,-73.97853,Entire home/apt,350,1,0,,1,131 +48689,14563616,Manhattan,Chelsea,40.742709999999995,-73.99554,Entire home/apt,215,1,0,,2,127 +48690,2628658,Brooklyn,Bedford-Stuyvesant,40.681940000000004,-73.93567,Entire home/apt,120,30,0,,2,45 +48691,273547720,Brooklyn,Bushwick,40.69982,-73.92321,Entire home/apt,170,30,0,,1,360 +48692,273596828,Brooklyn,Bedford-Stuyvesant,40.679590000000005,-73.94986999999999,Entire home/apt,180,3,0,,1,133 +48693,24726785,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9471,Private room,80,1,0,,1,30 +48694,6570630,Brooklyn,Bushwick,40.7018,-73.93281999999999,Private room,60,4,0,,2,47 +48695,273613106,Manhattan,East Harlem,40.79031,-73.94269,Entire home/apt,139,1,0,,1,354 +48696,273392981,Queens,Long Island City,40.755590000000005,-73.94106,Private room,101,1,0,,3,361 +48697,273619215,Manhattan,Upper West Side,40.77665,-73.98867,Entire home/apt,750,4,0,,1,174 +48698,217557021,Manhattan,Hell's Kitchen,40.7617,-73.99815,Private room,180,3,0,,1,365 +48699,273619304,Brooklyn,Sea Gate,40.575309999999995,-74.00518000000001,Entire home/apt,99,4,0,,1,19 +48700,224309949,Manhattan,Midtown,40.759879999999995,-73.96591,Entire home/apt,325,5,0,,1,298 +48701,267932490,Brooklyn,Bedford-Stuyvesant,40.69551,-73.93951,Private room,45,1,2,2.0,1,14 +48702,273632292,Queens,Ridgewood,40.70268,-73.90353,Entire home/apt,110,24,0,,1,183 +48703,68862521,Queens,Rockaway Beach,40.58837,-73.81654,Entire home/apt,150,1,0,,1,88 +48704,273025497,Brooklyn,Fort Greene,40.68868,-73.97671,Entire home/apt,107,1,0,,1,49 +48705,70653354,Manhattan,Lower East Side,40.72013,-73.98769,Entire home/apt,235,1,0,,1,349 +48706,273644177,Manhattan,Harlem,40.800779999999996,-73.95079,Entire home/apt,137,1,0,,1,35 +48707,156114168,Brooklyn,Prospect-Lefferts Gardens,40.662890000000004,-73.96165,Private room,70,1,0,,6,189 +48708,178720348,Manhattan,Harlem,40.81991,-73.9575,Shared room,60,1,0,,2,86 +48709,156114168,Brooklyn,Prospect-Lefferts Gardens,40.66067,-73.96094000000001,Shared room,39,1,0,,6,207 +48710,239638986,Brooklyn,Bushwick,40.69287,-73.92289,Private room,125,1,0,,1,175 +48711,156114168,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96162,Shared room,40,1,0,,6,211 +48712,268796947,Queens,Long Island City,40.75415,-73.93144000000001,Private room,89,1,0,,5,358 +48713,156114168,Brooklyn,Prospect-Lefferts Gardens,40.660790000000006,-73.96181,Shared room,40,1,0,,6,224 +48714,268796947,Queens,Long Island City,40.75388,-73.92957,Entire home/apt,396,3,0,,5,351 +48715,268796947,Queens,Long Island City,40.753659999999996,-73.9311,Private room,89,1,0,,5,359 +48716,156114168,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96064,Shared room,40,1,0,,6,245 +48717,237217643,Manhattan,Hell's Kitchen,40.76142,-73.99865,Entire home/apt,220,28,0,,1,167 +48718,268796947,Queens,Long Island City,40.75255,-73.93128,Private room,89,1,0,,5,359 +48719,156114168,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96155,Private room,62,1,0,,6,229 +48720,32392762,Queens,Long Island City,40.74723,-73.94098000000001,Shared room,45,1,0,,1,15 +48721,1568269,Brooklyn,Greenpoint,40.73149,-73.95040999999999,Entire home/apt,85,8,0,,1,10 +48722,107434423,Manhattan,Upper East Side,40.777390000000004,-73.94915999999999,Entire home/apt,393,30,0,,232,307 +48723,107434423,Manhattan,Nolita,40.72283,-73.99472,Entire home/apt,316,30,0,,232,325 +48724,107434423,Manhattan,Hell's Kitchen,40.76082,-73.99709,Entire home/apt,385,30,0,,232,338 +48725,107434423,Manhattan,Hell's Kitchen,40.76083,-73.99727,Entire home/apt,267,30,0,,232,228 +48726,107434423,Brooklyn,Williamsburg,40.714929999999995,-73.96365,Entire home/apt,278,30,0,,232,188 +48727,107434423,Manhattan,East Village,40.73206,-73.98776,Entire home/apt,365,30,0,,232,295 +48728,273741577,Manhattan,East Village,40.72388,-73.98354,Entire home/apt,178,1,0,,1,35 +48729,272477673,Manhattan,Chelsea,40.74643,-73.99105,Shared room,75,1,0,,3,352 +48730,273536212,Queens,Cambria Heights,40.699729999999995,-73.74592,Private room,50,1,0,,1,339 +48731,121384174,Brooklyn,Park Slope,40.667159999999996,-73.98101,Entire home/apt,111,8,0,,1,0 +48732,33917435,Manhattan,Lower East Side,40.71825,-73.99019,Entire home/apt,150,4,1,1.0,1,13 +48733,2716800,Queens,Forest Hills,40.71935,-73.84362,Private room,50,2,0,,1,13 +48734,62763569,Brooklyn,Williamsburg,40.702659999999995,-73.94284,Entire home/apt,99,3,0,,1,14 +48735,147515897,Brooklyn,Bushwick,40.70366,-73.92728000000001,Private room,84,3,0,,1,28 +48736,3427758,Manhattan,Harlem,40.812740000000005,-73.94357,Private room,110,3,0,,1,199 +48737,273772372,Manhattan,West Village,40.73713,-73.9987,Entire home/apt,144,1,0,,1,110 +48738,255476470,Manhattan,Washington Heights,40.83331,-73.94547,Private room,50,5,0,,1,51 +48739,48685332,Manhattan,East Village,40.72146,-73.98279000000001,Private room,100,1,0,,1,1 +48740,6608220,Brooklyn,Brooklyn Heights,40.69827,-73.99649000000001,Entire home/apt,550,3,1,1.0,1,230 +48741,2449230,Brooklyn,Williamsburg,40.71812,-73.95495,Private room,80,5,0,,1,38 +48742,23899462,Manhattan,Harlem,40.80505,-73.94894000000001,Entire home/apt,90,7,0,,1,23 +48743,45397566,Brooklyn,Bedford-Stuyvesant,40.69012,-73.93630999999999,Private room,60,1,0,,1,29 +48744,223715460,Brooklyn,Williamsburg,40.71091,-73.9656,Entire home/apt,499,30,0,,1,365 +48745,246222122,Manhattan,East Village,40.72874,-73.98344,Entire home/apt,198,2,0,,2,344 +48746,266294029,Manhattan,Midtown,40.75354,-73.98376999999999,Entire home/apt,245,2,0,,1,79 +48747,53602261,Queens,Long Island City,40.75432,-73.93521,Entire home/apt,375,2,0,,1,364 +48748,133288905,Manhattan,Midtown,40.751740000000005,-73.97343000000001,Entire home/apt,369,4,0,,3,4 +48749,49796302,Manhattan,East Harlem,40.79339,-73.93784000000001,Private room,150,1,0,,1,265 +48750,11270687,Manhattan,Upper West Side,40.79873,-73.96938,Entire home/apt,150,2,0,,1,74 +48751,273672846,Queens,Breezy Point,40.565459999999995,-73.86968,Private room,250,1,0,,1,82 +48752,272504878,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95014,Private room,45,32,0,,1,85 +48753,154980356,Brooklyn,Bedford-Stuyvesant,40.686,-73.93,Private room,32,30,0,,1,10 +48754,27089410,Brooklyn,Williamsburg,40.71775,-73.95767,Private room,60,1,0,,1,54 +48755,273812306,Manhattan,Midtown,40.75288,-73.97269,Private room,380,3,0,,1,3 +48756,273824202,Manhattan,Murray Hill,40.744040000000005,-73.97239,Entire home/apt,129,2,0,,1,0 +48757,11454384,Manhattan,Tribeca,40.71815,-74.01145,Entire home/apt,700,3,0,,1,37 +48758,73211393,Queens,Long Island City,40.75508,-73.93258,Entire home/apt,350,2,0,,1,364 +48759,273656890,Manhattan,East Harlem,40.79266,-73.9474,Private room,50,1,0,,1,81 +48760,19990280,Queens,Sunnyside,40.74719,-73.91919,Private room,46,1,0,,1,0 +48761,271885652,Queens,Rockaway Beach,40.58893,-73.81347,Entire home/apt,89,1,0,,4,175 +48762,203866020,Queens,Sunnyside,40.73799,-73.92749,Private room,60,1,0,,1,34 +48763,3827238,Brooklyn,Carroll Gardens,40.67666,-73.99981,Entire home/apt,170,30,0,,1,64 +48764,211500809,Queens,Jackson Heights,40.74765,-73.89445,Private room,110,2,0,,1,85 +48765,273843157,Brooklyn,Greenpoint,40.731640000000006,-73.95187,Private room,105,1,0,,1,199 +48766,255815505,Brooklyn,Williamsburg,40.70626,-73.94699,Entire home/apt,245,4,0,,1,156 +48767,273849259,Brooklyn,Bushwick,40.69958,-73.92772,Entire home/apt,120,1,0,,1,363 +48768,43297161,Brooklyn,Williamsburg,40.70538,-73.94314,Private room,65,2,0,,1,6 +48769,130906452,Brooklyn,Williamsburg,40.71175,-73.96197,Private room,70,6,0,,1,18 +48770,1338608,Manhattan,Murray Hill,40.74604,-73.97228,Entire home/apt,250,5,0,,1,233 +48771,271350187,Brooklyn,Greenpoint,40.71918,-73.94853,Private room,130,1,0,,3,360 +48772,107407045,Brooklyn,Bedford-Stuyvesant,40.692170000000004,-73.93191,Private room,35,30,0,,1,44 +48773,52565041,Brooklyn,Sheepshead Bay,40.59174,-73.95815999999999,Private room,46,4,0,,1,60 +48774,155298656,Queens,Ridgewood,40.70585,-73.91298,Private room,35,30,0,,1,44 +48775,157728550,Manhattan,East Harlem,40.80268,-73.94244,Private room,100,1,0,,2,343 +48776,8411075,Brooklyn,Bushwick,40.69608,-73.9121,Entire home/apt,119,2,0,,1,5 +48777,115415245,Brooklyn,Bushwick,40.697990000000004,-73.92833,Private room,60,2,0,,1,67 +48778,107263278,Manhattan,East Harlem,40.79268,-73.94577,Private room,40,30,0,,1,46 +48779,13384464,Brooklyn,Bedford-Stuyvesant,40.69617,-73.94198,Private room,50,3,0,,1,0 +48780,273870123,Brooklyn,East Flatbush,40.65229,-73.95139,Private room,55,1,0,,1,178 +48781,2182412,Brooklyn,Bushwick,40.68932,-73.91374,Private room,80,1,0,,1,17 +48782,83554966,Manhattan,Upper East Side,40.78099,-73.95366,Private room,129,1,1,1.0,1,147 +48783,273877318,Bronx,Claremont Village,40.839259999999996,-73.91173,Private room,140,1,0,,1,90 +48784,46876102,Manhattan,Upper East Side,40.7784,-73.9567,Entire home/apt,250,45,0,,1,83 +48785,67738361,Manhattan,Hell's Kitchen,40.755790000000005,-73.99094000000001,Shared room,260,1,0,,2,168 +48786,266645207,Queens,Laurelton,40.67025,-73.74548,Private room,75,1,0,,2,180 +48787,82576590,Brooklyn,Crown Heights,40.67285,-73.95133,Private room,41,1,0,,1,66 +48788,105447387,Manhattan,Lower East Side,40.714659999999995,-73.98676,Private room,80,1,0,,1,323 +48789,71473447,Manhattan,Chelsea,40.74954,-74.00466,Entire home/apt,225,7,0,,1,20 +48790,257683179,Queens,Flushing,40.75104,-73.81459,Private room,45,1,1,1.0,6,339 +48791,238163900,Queens,Cambria Heights,40.68557,-73.72731,Private room,50,3,0,,1,176 +48792,141511069,Bronx,Morrisania,40.83146,-73.89666,Entire home/apt,80,7,0,,1,71 +48793,128305726,Brooklyn,Flatbush,40.645379999999996,-73.96239,Private room,43,2,0,,1,21 +48794,148289089,Brooklyn,Boerum Hill,40.6878,-73.98145,Entire home/apt,235,10,0,,1,64 +48795,58222366,Bronx,Claremont Village,40.83502,-73.91058000000001,Private room,125,2,0,,1,364 +48796,37678939,Bronx,Concourse Village,40.83372,-73.91187,Private room,70,2,0,,2,81 +48797,122204600,Queens,Astoria,40.764309999999995,-73.90992,Private room,49,15,0,,1,341 +48798,96079975,Manhattan,Upper East Side,40.78411,-73.9487,Entire home/apt,140,7,0,,1,158 +48799,211644523,Staten Island,Great Kills,40.54179,-74.14275,Private room,235,1,1,1.0,1,87 +48800,180336853,Brooklyn,Bushwick,40.7047,-73.9225,Private room,70,2,0,,1,255 +48801,112300256,Manhattan,Chelsea,40.75343,-74.00208,Entire home/apt,155,30,0,,1,171 +48802,3054124,Brooklyn,Williamsburg,40.70997,-73.96289,Entire home/apt,150,7,0,,1,11 +48803,24680496,Manhattan,Hell's Kitchen,40.76911,-73.99248,Entire home/apt,145,1,0,,1,10 +48804,112024431,Manhattan,Financial District,40.70597,-74.01562,Private room,99,4,0,,1,22 +48805,273841667,Bronx,Mott Haven,40.80787,-73.92399999999999,Entire home/apt,100,1,2,2.0,1,40 +48806,199213364,Brooklyn,Sheepshead Bay,40.59731,-73.93381,Entire home/apt,140,7,0,,2,171 +48807,19580888,Manhattan,Harlem,40.81589,-73.95345999999999,Entire home/apt,100,4,0,,1,20 +48808,140961117,Manhattan,Harlem,40.81697,-73.94225,Private room,39,30,0,,1,44 +48809,32987938,Manhattan,Upper West Side,40.778890000000004,-73.97668,Entire home/apt,143,3,0,,1,10 +48810,274014453,Manhattan,Upper West Side,40.79952,-73.96003,Private room,75,30,0,,1,90 +48811,274012871,Queens,Long Island City,40.76807,-73.93799,Private room,95,2,0,,2,168 +48812,62784258,Manhattan,Harlem,40.81951,-73.94161,Private room,50,1,0,,1,21 +48813,115751294,Queens,Bayswater,40.611129999999996,-73.76546,Entire home/apt,80,2,0,,1,87 +48814,867516,Manhattan,Murray Hill,40.74757,-73.98118000000001,Private room,200,1,0,,1,34 +48815,274025920,Brooklyn,Crown Heights,40.66921,-73.93521,Private room,59,2,0,,1,16 +48816,71142174,Brooklyn,Sunset Park,40.662659999999995,-73.98908,Entire home/apt,100,4,0,,1,6 +48817,24680832,Queens,Long Island City,40.74754,-73.94194,Entire home/apt,180,3,0,,1,13 +48818,274035866,Manhattan,East Harlem,40.8078,-73.93836999999999,Entire home/apt,110,2,0,,1,25 +48819,274040642,Queens,Cambria Heights,40.69,-73.73098,Private room,50,1,0,,1,175 +48820,16030422,Manhattan,East Village,40.726259999999996,-73.98729,Private room,80,3,0,,1,18 +48821,272265577,Brooklyn,Bedford-Stuyvesant,40.68676,-73.93788,Private room,50,1,0,,2,144 +48822,183211776,Queens,Astoria,40.76491,-73.90959000000001,Entire home/apt,169,1,0,,4,28 +48823,173021064,Brooklyn,Williamsburg,40.71052,-73.95149,Private room,60,2,0,,2,134 +48824,115528632,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95418000000001,Private room,80,1,0,,1,43 +48825,272265577,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93665,Private room,50,1,0,,2,134 +48826,66084717,Brooklyn,East Flatbush,40.6517,-73.9258,Entire home/apt,200,3,0,,2,206 +48827,271029539,Manhattan,Harlem,40.82179,-73.95522,Entire home/apt,170,1,0,,4,78 +48828,161456818,Brooklyn,Bushwick,40.68884,-73.91969,Private room,50,1,0,,1,165 +48829,53360631,Manhattan,Washington Heights,40.837340000000005,-73.94326,Entire home/apt,90,4,0,,1,83 +48830,151831356,Manhattan,Midtown,40.74607,-73.98599,Entire home/apt,199,1,0,,1,14 +48831,29393413,Brooklyn,Williamsburg,40.71391,-73.94431,Entire home/apt,225,1,0,,1,84 +48832,267223765,Brooklyn,Flatbush,40.64922,-73.96078,Shared room,20,1,0,,3,363 +48833,29741813,Manhattan,Financial District,40.70605,-74.01042,Entire home/apt,475,2,0,,1,64 +48834,211831610,Queens,Elmhurst,40.7371,-73.88086,Private room,50,1,0,,1,239 +48835,271029539,Manhattan,Harlem,40.82258,-73.95464,Private room,60,1,0,,4,80 +48836,154095549,Brooklyn,Bedford-Stuyvesant,40.69195,-73.94225,Private room,47,2,0,,2,48 +48837,31244206,Manhattan,Harlem,40.82385,-73.93947,Private room,80,3,0,,1,70 +48838,271029539,Manhattan,Harlem,40.821259999999995,-73.95458,Private room,70,1,0,,4,90 +48839,274079964,Brooklyn,Sheepshead Bay,40.598659999999995,-73.95661,Private room,800,1,0,,1,23 +48840,63272360,Queens,Woodhaven,40.69389,-73.86823000000001,Entire home/apt,140,3,0,,6,232 +48841,8655014,Queens,Astoria,40.76267,-73.9261,Entire home/apt,210,7,0,,1,12 +48842,224171371,Manhattan,Chelsea,40.75204,-74.00291999999999,Entire home/apt,350,1,0,,1,9 +48843,53966115,Brooklyn,Bedford-Stuyvesant,40.69635,-73.93743,Private room,45,29,0,,2,341 +48844,115491896,Manhattan,West Village,40.7362,-74.00827,Entire home/apt,205,1,0,,1,365 +48845,261338177,Brooklyn,Gravesend,40.59131,-73.97114,Private room,33,2,0,,6,318 +48846,263504959,Queens,Woodhaven,40.69185,-73.86431,Private room,37,1,0,,8,352 +48847,263504959,Queens,Woodhaven,40.691829999999996,-73.86523000000001,Private room,34,1,0,,8,320 +48848,184501278,Brooklyn,Crown Heights,40.67198,-73.95329,Entire home/apt,180,1,0,,1,165 +48849,257261595,Manhattan,Harlem,40.809509999999996,-73.95347,Entire home/apt,65,1,0,,1,32 +48850,50812891,Manhattan,East Village,40.73231,-73.98689,Entire home/apt,159,1,0,,1,166 +48851,263504959,Queens,Woodhaven,40.69137,-73.86591,Private room,35,1,0,,8,341 +48852,74162901,Brooklyn,Bushwick,40.69805,-73.92801,Private room,30,1,1,1.0,1,1 +48853,274103383,Manhattan,West Village,40.73444,-74.00335,Private room,202,2,0,,1,84 +48854,13108199,Brooklyn,Greenpoint,40.72781,-73.94946999999999,Private room,150,4,0,,1,267 +48855,6677425,Manhattan,Upper West Side,40.79753,-73.96155,Shared room,55,2,0,,2,49 +48856,66993395,Brooklyn,Bedford-Stuyvesant,40.68886,-73.92879,Entire home/apt,345,4,0,,3,354 +48857,63272360,Queens,Woodhaven,40.69482,-73.86618,Entire home/apt,85,3,0,,6,300 +48858,217463199,Queens,Flushing,40.74387,-73.82556,Private room,68,3,0,,4,362 +48859,274188386,Manhattan,East Village,40.731970000000004,-73.98674,Private room,93,7,0,,1,173 +48860,228268650,Manhattan,Roosevelt Island,40.76688,-73.94688000000001,Entire home/apt,145,1,0,,1,30 +48861,57502664,Manhattan,Upper East Side,40.76628,-73.95795,Entire home/apt,120,1,0,,1,1 +48862,274195458,Brooklyn,Bushwick,40.69308,-73.91025,Private room,130,1,0,,1,83 +48863,274012871,Queens,Long Island City,40.76726,-73.93936,Private room,93,2,0,,2,14 +48864,23548340,Manhattan,Upper East Side,40.77192,-73.95369000000001,Private room,95,1,0,,1,2 +48865,99144947,Manhattan,Inwood,40.86845,-73.92449,Private room,80,1,0,,1,79 +48866,274225617,Queens,Briarwood,40.70786,-73.81448,Entire home/apt,58,1,0,,1,159 +48867,261338177,Brooklyn,Gravesend,40.5908,-73.97116,Shared room,25,1,0,,6,338 +48868,261338177,Brooklyn,Gravesend,40.59118,-73.97119,Shared room,25,7,0,,6,365 +48869,1550580,Brooklyn,Bedford-Stuyvesant,40.68759,-73.95705,Private room,45,4,0,,1,7 +48870,1273444,Brooklyn,Williamsburg,40.71197,-73.94946,Entire home/apt,99,4,0,,1,22 +48871,144008701,Manhattan,Harlem,40.82233,-73.94686999999999,Private room,35,29,0,,2,31 +48872,8636072,Manhattan,Hell's Kitchen,40.76236,-73.99255,Entire home/apt,260,3,0,,1,9 +48873,241945355,Brooklyn,Flatlands,40.631159999999994,-73.92616,Entire home/apt,170,1,0,,2,363 +48874,214535893,Manhattan,East Harlem,40.7976,-73.93947,Private room,50,7,0,,1,22 +48875,274273284,Manhattan,East Harlem,40.787490000000005,-73.94749,Private room,140,1,0,,1,180 +48876,177932088,Manhattan,Harlem,40.80953,-73.9541,Private room,60,1,0,,1,26 +48877,65767720,Brooklyn,Bushwick,40.70418,-73.91471,Private room,42,7,0,,1,16 +48878,41326856,Queens,Elmhurst,40.74477,-73.87727,Private room,45,1,0,,5,172 +48879,540335,Brooklyn,Williamsburg,40.71728,-73.94394,Entire home/apt,120,20,0,,1,22 +48880,208514239,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,120,1,0,,3,365 +48881,274298453,Brooklyn,Greenpoint,40.72585,-73.94001,Private room,54,6,0,,1,15 +48882,66058896,Brooklyn,Bushwick,40.69652,-73.91079,Private room,40,20,0,,1,31 +48883,131529729,Manhattan,East Harlem,40.79755,-73.93614000000001,Private room,75,2,0,,2,364 +48884,274307600,Brooklyn,Williamsburg,40.7179,-73.96238000000001,Private room,190,7,0,,1,341 +48885,131529729,Manhattan,East Harlem,40.79633,-73.93605,Private room,75,2,0,,2,353 +48886,274311461,Manhattan,Midtown,40.75561,-73.96723,Entire home/apt,200,6,0,,1,176 +48887,208514239,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,0,,3,365 +48888,274321313,Manhattan,Hell's Kitchen,40.76392,-73.99183000000001,Private room,125,4,0,,1,31 +48889,107716952,Queens,Jamaica,40.69137,-73.80844,Private room,65,1,0,,2,163 +48890,8232441,Brooklyn,Bedford-Stuyvesant,40.67853,-73.94995,Private room,70,2,0,,2,9 +48891,6570630,Brooklyn,Bushwick,40.701840000000004,-73.93316999999999,Private room,40,4,0,,2,36 +48892,23492952,Manhattan,Harlem,40.81475,-73.94866999999999,Entire home/apt,115,10,0,,1,27 +48893,30985759,Manhattan,Hell's Kitchen,40.757509999999996,-73.99112,Shared room,55,1,0,,6,2 +48894,68119814,Manhattan,Hell's Kitchen,40.76404,-73.98933000000001,Private room,90,7,0,,1,23 diff --git a/data/nyc_hot_spot.csv b/data/nyc_hot_spot.csv new file mode 100644 index 00000000..b43b3bac --- /dev/null +++ b/data/nyc_hot_spot.csv @@ -0,0 +1,3322 @@ +BORO,the_geom,OBJECTID,TYPE,PROVIDER,NAME,LOCATION,LAT,LON,X,Y,LOCATION_T,REMARKS,CITY,SSID,SOURCEID,ACTIVATED,BOROCODE,BORONAME,NTACODE,NTANAME,COUNDIST,POSTCODE,BOROCD,CT2010,BOROCT2010,BIN,BBL,DOITT_ID +BK,POINT (-73.87053740957452 40.68406083967918),10321,Free,LinkNYC - Citybridge,bk-05-145941,3386 FULTON STREET,40.6840608397,-73.8705374096,1020156.06367,188524.768013,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021921,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3327234,3041480040,4726 +BK,POINT (-73.86897452703059 40.68462509021575),10322,Free,LinkNYC - Citybridge,bk-05-145940,3435 FULTON STREET,40.6846250902,-73.868974527,1020589.21668,188730.985121,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021922,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3092471,3041340160,4727 +BK,POINT (-73.86830878947508 40.68470155389536),10323,Free,LinkNYC - Citybridge,bk-05-145939,3450 FULTON STREET,40.6847015539,-73.8683087895,1020773.81342,188759.119907,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021923,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3093023,3041510030,4728 +BK,POINT (-73.86677732990765 40.68513094043811),10324,Free,LinkNYC - Citybridge,bk-05-145938,3480 FULTON STREET,40.6851309404,-73.8667773299,1021198.31684,188916.199973,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021925,12/20/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3093078,3041520030,4729 +BK,POINT (-73.89716745051707 40.67647466963193),10325,Free,LinkNYC - Citybridge,bk-05-145932,62 PENNSYLVANIA AVENUE,40.6764746696,-73.8971674505,1012773.54957,185751.116409,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021926,02/06/2018 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,198,3119800,3083275,3036690030,4730 +BK,POINT (-73.89746353028785 40.67722165017),10326,Free,LinkNYC - Citybridge,bk-05-145931,2631 FULTON STREET,40.6772216502,-73.8974635303,1012691.10485,186023.166389,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021927,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,198,3119800,3000000,3036590000,4731 +BK,POINT (-73.89835841996319 40.6769941203488),10327,Free,LinkNYC - Citybridge,bk-05-145937,2598 FULTON STREET,40.6769941203,-73.89835842,1012442.98068,185939.981516,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021928,01/22/2018 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,198,3119800,3000000,3036680010,4732 +BK,POINT (-73.89921207971834 40.67704253017512),10328,Free,LinkNYC - Citybridge,bk-05-145936,22 GEORGIA AVENUE,40.6770425302,-73.8992120797,1012206.17537,185957.344999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021929,01/16/2018 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,198,3119800,0,3036670020,4733 +BK,POINT (-73.90195136968715 40.67754000038865),10329,Free,LinkNYC - Citybridge,bk-05-145945,2493 FULTON STREET,40.6775400004,-73.9019513697,1011446.15885,186137.725215,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021930,01/08/2018 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11207,305,367,3036700,3339272,3015470030,4734 +BK,POINT (-73.90299004974949 40.67789497959188),10330,Free,LinkNYC - Citybridge,bk-05-145944,2460 FULTON STREET,40.6778949796,-73.9029900497,1011157.91271,186266.733488,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021931,01/16/2018 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11207,305,367,3036700,3042317,3015550000,4735 +BK,POINT (-73.90430067054687 40.677861549605524),10331,Free,LinkNYC - Citybridge,bk-16-145963,2440 FULTON STREET,40.6778615496,-73.9043006705,1010794.39572,186254.154116,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021932,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,367,3036700,3042309,3015540020,4736 +BK,POINT (-73.90590131055853 40.677845470040765),10332,Free,LinkNYC - Citybridge,bk-16-145930,41 Sackman Street,40.67784547,-73.9059013106,1010350.4281,186247.81489,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021933,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,367,3036700,3042307,3015540000,4737 +BK,POINT (-73.94206207998579 40.651229970383596),10333,Free,LinkNYC - Citybridge,bk-17-146003,3723 CHURCH AVENUE,40.6512299704,-73.94206208,1000326.82545,176542.336926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022136,07/27/2018 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,41,11203,317,816,3081600,3108817,3048740030,4738 +BK,POINT (-73.94554462954876 40.65094749026737),10334,Free,LinkNYC - Citybridge,bk-17-145928,3402 CHURCH AVENUE,40.6509474903,-73.9455446295,999360.538993,176438.8017,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022137,10/30/2017 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,45,11203,317,856,3085600,3109421,3048880000,4739 +BK,POINT (-73.94783400039658 40.65096199977271),10335,Free,LinkNYC - Citybridge,bk-17-145927,3121 CHURCH AVENUE,40.6509619998,-73.9478340004,998725.27025,176443.701296,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022138,10/30/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,317,818,3081800,3327743,3048690050,4740 +BK,POINT (-73.95241399961961 40.64873300023374),10336,Free,LinkNYC - Citybridge,bk-17-145979,2606 Snyder Avenue,40.6487330002,-73.9524139996,997454.831518,175630.891898,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022140,02/28/2018 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,317,794,3079400,3117383,3051100040,4741 +BK,POINT (-73.95596196983311 40.64868919042042),10337,Free,LinkNYC - Citybridge,bk-14-145929,43 SNYDER AVENUE,40.6486891904,-73.9559619698,996470.299038,175614.415881,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022141,10/12/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,794,3079400,3117230,3051030080,4742 +BK,POINT (-73.95781959032738 40.6486071201368),10338,Free,LinkNYC - Citybridge,bk-14-145949,9 SNYDER AVENUE,40.6486071201,-73.9578195903,995954.834518,175584.261742,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022142,03/01/2019 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,794,3079400,3117218,3051030000,4743 +BK,POINT (-73.95968841025577 40.71818700012556),10339,Free,LinkNYC - Citybridge,bk-01-146013,115 NORTH 6 STREET,40.7181870001,-73.9596884103,995424.581313,200933.983024,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-022296,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,555,3055500,3062058,3023260030,4744 +MN,POINT (-73.94044300020686 40.81410500000007),10406,Free,Harlem,,Harlem Hospital South,40.814105,-73.9404430002,1000735.74818,235883.119819,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,1017330001,262 +BX,POINT (-73.90854944033225 40.82392554993948),10340,Free,LinkNYC - Citybridge,bx-03-146064,574 EAST 163 STREET,40.8239255499,-73.9085494403,1009560.34602,239468.70812,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-023349,05/31/2018 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,17,10456,203,141,2014100,2004376,2026200030,4745 +MN,POINT (-74.01619999999974 40.69275000032279),10341,Free,Fiberless,Governors Island,Building 110 Rooftop,40.6927500003,-74.0162,979757.562123,191664.365081,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086432,1000010010,4934 +MN,POINT (-74.01578000015225 40.69271999955638),10342,Free,Fiberless,Governors Island,Building 140 Soisson Landing,40.6927199996,-74.0157800002,979874.030722,191653.413659,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086432,1000010010,4935 +MN,POINT (-74.01733000042785 40.6887299998893),10343,Free,Fiberless,Governors Island,Liggett L Clayton,40.6887299999,-74.0173300004,979443.910847,190199.821094,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086431,1000010010,4936 +MN,POINT (-74.01454000007159 40.69252999978141),10344,Free,Fiberless,Governors Island,Building 108 Carder Road,40.6925299998,-74.0145400001,980217.885021,191584.131645,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086416,1000010010,4937 +MN,POINT (-74.01464999951322 40.690229999771816),10345,Free,Fiberless,Governors Island,Nolan Building 20B Front,40.6902299998,-74.0146499995,980187.240725,190746.179253,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086377,1000010010,4938 +MN,POINT (-74.01443999985752 40.6901699999037),10346,Free,Fiberless,Governors Island,Nolan Building 20A Back,40.6901699999,-74.0144399999,980245.474533,190724.309874,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086377,1000010010,4939 +MN,POINT (-74.01339999969527 40.689589999755945),10347,Free,Fiberless,Governors Island,Nolan Building 6 Front,40.6895899998,-74.0133999997,980533.85683,190512.953013,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086384,1000010010,4940 +MN,POINT (-74.01466999943547 40.689340000153805),10348,Free,Fiberless,Governors Island,Nolan Building 17 Rooftop,40.6893400002,-74.0146699994,980181.640015,190421.927277,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086374,1000010010,4941 +MN,POINT (-74.01470000043466 40.68856999977174),10349,Free,Fiberless,Governors Island,Nolan Building 14 Back,40.6885699998,-74.0147000004,980173.272905,190141.39503,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086371,1000010010,4942 +MN,POINT (-74.01477000031106 40.692739999827836),10350,Free,Fiberless,Governors Island,Building 140 Engineering,40.6927399998,-74.0147700003,980154.11612,191660.651505,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086419,1000010010,4943 +MN,POINT (-74.0145499996239 40.6885999996277),10351,Free,Fiberless,Governors Island,Nolan Building 14 Front,40.6885999996,-74.0145499996,980214.8742,190152.317908,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086371,1000010010,4944 +MN,POINT (-74.01474999973036 40.692310000253144),10352,Free,Fiberless,Governors Island,Building 108 Welcome Center,40.6923100003,-74.0147499997,980159.636122,191503.989089,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086416,1000010010,4945 +MN,POINT (-74.01313999598482 40.690320019090834),10353,Free,Fiberless,Governors Island,Nolan Building 1 Inside,40.6903200191,-74.013139996,980606.002027,190778.909503,Indoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086389,1000010010,4946 +MN,POINT (-74.0176699998533 40.69040999981738),10354,Free,Fiberless,Governors Island,Building 407A Back,40.6904099998,-74.0176699999,979349.743056,190811.913045,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086363,1000010010,4947 +MN,POINT (-74.01696000014353 40.68919999961825),10355,Free,Fiberless,Governors Island,Building 403A Back,40.6891999996,-74.0169600001,979546.555327,190371.035646,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086358,1000010010,4948 +MN,POINT (-74.01330999955269 40.69031999955408),10356,Free,Fiberless,Governors Island,Nolan Building 1 Front,40.6903199996,-74.0133099996,980558.856452,190778.909503,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086389,1000010010,4949 +MN,POINT (-74.02098000037502 40.68655000013656),10357,Free,Fiberless,Governors Island,NYC Grow,40.6865500001,-74.0209800004,978431.474552,189405.804965,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,0,1000010010,4928 +MN,POINT (-74.02255000051383 40.68846000037678),10358,Free,Fiberless,Governors Island,Ball Field Backstop,40.6884600004,-74.0225500005,977996.234937,190101.78192,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,0,1000010010,4929 +MN,POINT (-74.02184999960235 40.68922999961863),10359,Free,Fiberless,Governors Island,Camping,40.6892299996,-74.0218499996,978190.435336,190382.265939,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,0,1000010010,4930 +MN,POINT (-74.02250999999715 40.687260000130294),10360,Free,Fiberless,Governors Island,Gresham Road Ball Field,40.6872600001,-74.02251,978007.215886,189664.583975,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,0,1000010010,4931 +MN,POINT (-74.02401999979648 40.68630000037246),10361,Free,Fiberless,Governors Island,Motor Pool Building 925 Garage,40.6863000004,-74.0240199998,977588.345989,189314.939333,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086268,1000010010,4932 +BK,POINT (-73.88758299943925 40.65838500004903),10362,Limited Free,ALTICEUSA,Linden Park,IN PARK PLAYGROUND AREA,40.658385,-73.8875829994,1015440.52783,179163.810029,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11207,305,1104,3110400,0,3043490001,217 +BX,POINT (-73.9273109997514 40.825695999721944),10363,Limited Free,ALTICEUSA,Macombs Dam Park,PARKING STRUCTURE 3FLR NORTH FACING ON OUTSIDE ( FIRST RADIO IN FROM RIVER ST),40.8256959997,-73.9273109998,1004367.26258,240108.882365,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,0,0,218 +BX,POINT (-73.92773099953872 40.82581500036196),10364,Limited Free,ALTICEUSA,Macombs Dam Park,PARKING STRUCTURE 3FLR NORTH FACING ON OUTSIDE ( SECOND RADIO IN FROM RIVER ST),40.8258150004,-73.9277309995,1004250.98853,240152.142449,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2003018,2024900001,219 +BX,POINT (-73.9281340003807 40.82594700013839),10365,Limited Free,ALTICEUSA,Macombs Dam Park,PARKING STRUCTURE 3FLR NORTH FACING ON OUTSIDE ( THIRD RADIO IN FROM RIVER ST),40.8259470001,-73.9281340004,1004139.41559,240200.143009,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2003018,2024900001,220 +BX,POINT (-73.9285369995678 40.826103000312415),10366,Limited Free,ALTICEUSA,Macombs Dam Park,PARKING STRUCTURE 3FLR NORTH FACING ON OUTSIDE ( FOURTH RADIO IN FROM RIVER ST),40.8261030003,-73.9285369996,1004027.83642,240256.888302,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2003018,2024900001,221 +BX,POINT (-73.92924900000459 40.8263779995579),10367,Limited Free,ALTICEUSA,Macombs Dam Park,PARKING STRUCTURE 3FLR NORTH FACING ON OUTSIDE ( FIFTH RADIO IN FROM RIVER ST),40.8263779996,-73.929249,1003830.70492,240356.920583,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,0,2024900001,222 +BX,POINT (-73.92676200056437 40.826566999866415),10368,Limited Free,ALTICEUSA,Macombs Dam Park,DOT POLE ON RIVER AVE C/O 158 ST ( WEST SIDE OF STREET),40.8265669999,-73.9267620006,1004518.93714,240426.345969,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10451,204,63,2006300,0,0,223 +BX,POINT (-73.92646099969258 40.82706999982097),10369,Limited Free,ALTICEUSA,Macombs Dam Park,DOT POLE 2 POLES NORTH OF 158 ST ( WEST SIDE OF STREET),40.8270699998,-73.9264609997,1004602.08658,240609.676967,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10451,204,63,2006300,0,0,224 +BX,POINT (-73.92690300057406 40.827868000040304),10370,Limited Free,ALTICEUSA,Macombs Dam Park,DOT POLE 161 ST I/P/W/O RIVER AVE,40.827868,-73.9269030006,1004479.51924,240900.315165,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10451,204,63,2006300,0,0,225 +BX,POINT (-73.9274570001649 40.828149000053266),10371,Limited Free,ALTICEUSA,Macombs Dam Park,DOT POLE ACROSS YANKEE STADIUM ON 161 ST,40.8281490001,-73.9274570002,1004326.11568,241002.566273,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10451,204,63,2006300,0,0,226 +BX,POINT (-73.92835600010895 40.827901999685245),10372,Limited Free,ALTICEUSA,Macombs Dam Park,SPEAKER POLE EAST OF TRACK AND FIELD ( NORTH ),40.8279019997,-73.9283560001,1004077.39308,240912.370259,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,0,2024990001,227 +BX,POINT (-73.92856500023169 40.827799000105806),10373,Limited Free,ALTICEUSA,Macombs Dam Park,SPEAKER POLE EAST OF TRACK AND FIELD( MIDDLE ),40.8277990001,-73.9285650002,1004019.58315,240874.796515,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,0,2024990001,228 +BK,POINT (-73.94556000033484 40.57775999986561),10374,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O GIRARD ST,40.5777599999,-73.9455600003,999372.84507,149774.686393,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,230 +BK,POINT (-73.94355000014735 40.577979999577096),10375,Limited Free,ALTICEUSA,Manhattan Beach Park,C/O ORIENTAL BL /IRWIN ST,40.5779799996,-73.9435500001,999931.149728,149855.191153,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,231 +BK,POINT (-73.9435899994325 40.576959999765606),10376,Limited Free,ALTICEUSA,Manhattan Beach Park,ROOF OF BEACH HOUSE EAST SIDE,40.5769599998,-73.9435899994,999920.277703,149483.572802,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,3347138,3087600485,232 +BK,POINT (-73.94459000056328 40.57686999993789),10377,Limited Free,ALTICEUSA,Manhattan Beach Park,ROOF OF BEACH HOUSE WEST SIDE,40.5768699999,-73.9445900006,999642.50562,149450.606333,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,3347138,3087600485,233 +BK,POINT (-73.941819999466 40.5781699999323),10378,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O KENSINGTON ST,40.5781699999,-73.9418199995,1000411.67764,149924.727432,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,234 +BK,POINT (-73.94090999970612 40.57829000043087),10379,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O LANGHAMST,40.5782900004,-73.9409099997,1000664.43468,149968.615795,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,235 +BK,POINT (-73.93906999993342 40.578430000193435),10380,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O NORFOLK ST,40.5784300002,-73.9390699999,1001175.52716,150019.971336,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,0,0,236 +BK,POINT (-73.9399199995496 40.57837999957369),10381,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O MCKENZIE ST,40.5783799996,-73.9399199995,1000939.42133,150001.591779,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,237 +BK,POINT (-73.94273000001178 40.578109999565825),10382,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O JAFFRAY AV,40.5781099996,-73.94273,1000158.90518,149902.701229,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,238 +BK,POINT (-73.94460000003617 40.57787000016056),10383,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/W/O HASTINGS ST,40.5778700002,-73.9446,999639.497424,149814.929423,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,620,3062000,0,0,239 +BK,POINT (-73.94551999999152 40.57622000042565),10384,Limited Free,ALTICEUSA,Manhattan Beach Park,ORIENTAL BL 1/P/E/O OCEAN AV,40.5762200004,-73.94552,999384.305677,149213.633381,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,0,3087600485,240 +BK,POINT (-73.94697999949526 40.57609999972932),10385,Limited Free,ALTICEUSA,Manhattan Beach Park,OCEAN AV 4/P/S/O ORIENTAL BL,40.5760999997,-73.9469799995,998978.750714,149169.665293,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,0,0,241 +BK,POINT (-73.9435899994325 40.576959999765606),10386,Limited Free,ALTICEUSA,Manhattan Beach Park,ROOF OF BEACH HOUSE EAST SIDE,40.5769599998,-73.9435899994,999920.277703,149483.572802,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,3347138,3087600485,242 +MN,POINT (-74.02526000015163 40.68516999984441),10387,Free,Fiberless,Governors Island,Motor Pool Building 925 Rooftop,40.6851699998,-74.0252600002,977244.328304,188903.344028,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086271,1000010010,4933 +BK,POINT (-73.9435899994325 40.576959999765606),10388,Limited Free,ALTICEUSA,Manhattan Beach Park,ROOF OF BEACH HOUSE EAST SIDE,40.5769599998,-73.9435899994,999920.277703,149483.572802,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,3347138,3087600485,243 +BK,POINT (-73.94459000056328 40.57686999993789),10389,Limited Free,ALTICEUSA,Manhattan Beach Park,ROOF OF BEACH HOUSE WEST SIDE,40.5768699999,-73.9445900006,999642.50562,149450.606333,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,616,3061600,3347138,3087600485,244 +BK,POINT (-73.92381599971151 40.70253999984221),10390,Limited Free,ALTICEUSA,MARIA HERNANDEZ,IN PARK BELOW PLAYGROUND AREA SOUTH SIDE,40.7025399998,-73.9238159997,1005373.55518,195239.922234,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11237,304,429,3042900,0,3032030001,245 +BK,POINT (-73.92362800055918 40.70304100033552),10391,Limited Free,ALTICEUSA,MARIA HERNANDEZ,IN PARK BTWEEN HANDBALL COURTS SOUTH SIDE,40.7030410003,-73.9236280006,1005425.5226,195422.497,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11237,304,429,3042900,0,3032030001,246 +MN,POINT (-74.00471091311319 40.74158328910442),10392,Free,Chelsea,,9th and 15th,40.7415832891,-74.0047109131,982944.568872,209455.444656,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,248 +MN,POINT (-74.00180339804282 40.74104678437843),10393,Free,Chelsea,,8th and 16th,40.7410467844,-74.001803398,983750.260174,209259.948984,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1013043,1007390001,249 +MN,POINT (-74.00591790659993 40.743631720051276),10394,Free,Chelsea,,17th Caledonia,40.7436317201,-74.0059179066,982610.15189,210201.773544,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,250 +MN,POINT (-74.00421107525179 40.742102144585935),10395,Free,Chelsea,,9th and 16th,40.7421021446,-74.0042110753,983083.086968,209644.473149,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,1007390001,251 +MN,POINT (-73.93755299981477 40.810014000433185),10396,Free,Harlem,,2102 Madison Ave,40.8100140004,-73.9375529998,1001536.7807,234393.180213,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,111,206,1020600,0,0,252 +MN,POINT (-73.9474260005539 40.79598800002795),10397,Free,Harlem,,1641 Madison Ave_NYCHA,40.795988,-73.9474260006,998806.772056,229281.221933,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,17401,1017401,1078867,1016150023,253 +MN,POINT (-73.95279300029871 40.80754299994356),10399,Free,Harlem,,Pole 45 - 8avES1N121,40.8075429999,-73.9527930003,997318.480085,233490.266665,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,0,0,255 +MN,POINT (-73.94140400015863 40.81104199974638),10400,Free,Harlem,,Pole 67n - 131NS2ELe,40.8110419997,-73.9414040002,1000470.48395,234766.980319,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,208,1020800,0,0,256 +MN,POINT (-73.95239600037051 40.798958999982354),10401,Free,Harlem,,Pole 14 - 111 and St nick,40.798959,-73.9523960004,997430.082552,230362.873642,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,0,0,257 +MN,POINT (-73.93901200024932 40.80988800036925),10404,Free,Harlem,,Pole 70 - 5avWS1N130,40.8098880004,-73.9390120002,1001132.92751,234346.989361,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,111,206,1020600,0,1017550001,260 +MN,POINT (-73.948988999968 40.80833799982669),10405,Free,Harlem,,pole 41: 7avNWC124,40.8083379998,-73.948989,998371.386115,233780.503617,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,0,0,261 +MN,POINT (-73.93968499969768 40.81513200039313),10407,Free,Harlem,,Harlem Hospital North,40.8151320004,-73.9396849997,1000945.30977,236257.436327,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,1082168,1017340001,263 +MN,POINT (-73.94002999992382 40.81456300037193),10408,Free,Harlem,,Harlem Hospital Center,40.8145630004,-73.9400299999,1000849.95498,236050.063711,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,1082168,1017340001,264 +MN,POINT (-73.95071699988328 40.79746699955114),10409,Free,Harlem,Central Park North - West 110 Street,9 WEST 110 Street 5 AVENUE and LENOX AVENUE,40.7974669996,-73.9507169999,997895.251897,229819.543035,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10029,164,143,1014300,0,1011110001,265 +MN,POINT (-73.95099400058676 40.7997030002966),10410,Free,Harlem,,50 Lenox Ave_NYCHA,40.7997030003,-73.9509940006,997818.101461,230634.152955,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,1083312,1015960001,266 +MN,POINT (-73.95099399999273 40.799434999978104),10411,Free,Harlem,,50 Lenox Ave. 112th St. Side_NYCHA,40.799435,-73.950994,997818.156251,230536.51109,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,1083312,1015960001,267 +MN,POINT (-73.94615899953219 40.803785999786164),10412,Free,Harlem,,42 West 120th Street_THAL (new),40.8037859998,-73.9461589995,999155.835006,232122.518416,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,1053274,1017187501,268 +BK,POINT (-73.98872099996113 40.69186000030128),10413,Free,Downtown Brooklyn,,1 Boerum Place,40.6918600003,-73.988721,987377.832315,191339.897882,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000417,3001530003,269 +BK,POINT (-73.98884100004078 40.691676999835074),10414,Free,Downtown Brooklyn,,1 Boerum Place,40.6916769998,-73.988841,987344.563025,191273.221178,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000417,3001530003,270 +BK,POINT (-73.98871100021418 40.691569000332635),10415,Free,Downtown Brooklyn,,1 Boerum Place,40.6915690003,-73.9887110002,987380.619055,191233.878409,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000417,3001530003,271 +BK,POINT (-73.98322599959735 40.690137000143054),10416,Free,Downtown Brooklyn,,1 Dekalb Ave.,40.6901370001,-73.9832259996,988901.796787,190712.402418,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3396776,3001497501,272 +BK,POINT (-73.98232480034983 40.69007230025837),10417,Free,Downtown Brooklyn,,1 Dekalb Ave.,40.6900723003,-73.9823248003,989151.72378,190688.879499,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3396776,3001497501,273 +BK,POINT (-73.98132799982561 40.69023299971955),10418,Free,Downtown Brooklyn,,1 University Plaza (LIU),40.6902329997,-73.9813279998,989428.146128,190747.484369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,3338885,3020850001,278 +BK,POINT (-73.98121399979928 40.68996700017369),10419,Free,Downtown Brooklyn,,1 University Plaza (LIU),40.6899670002,-73.9812139998,989459.781563,190650.579707,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,3338885,3020850001,279 +BK,POINT (-73.98092799979491 40.68998900039667),10420,Free,Downtown Brooklyn,,1 University Plaza (LIU),40.6899890004,-73.9809279998,989539.094069,190658.612171,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,3338885,3020850001,280 +BK,POINT (-73.9814140003985 40.690622000223286),10421,Free,Downtown Brooklyn,,1 University Plaza (LIU),40.6906220002,-73.9814140004,989404.266254,190889.203573,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,3338885,3020850001,281 +BK,POINT (-73.98963499951783 40.69088299984325),10422,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,282 +BK,POINT (-73.98963499951783 40.69088299984325),10423,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,283 +BK,POINT (-73.98963499951783 40.69088299984325),10424,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,284 +BK,POINT (-73.98963499951783 40.69088299984325),10425,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,285 +BK,POINT (-73.98963499951783 40.69088299984325),10426,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,286 +MN,POINT (-73.94997499978936 40.79880600014383),10427,Free,Harlem,,pole 08: 112NS3ELe,40.7988060001,-73.9499749998,998100.414873,230307.504002,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,0,0,802 +MN,POINT (-73.94346199952541 40.8018320000388),10429,Free,Harlem,,pole 06: MavSEC119th,40.801832,-73.9434619995,999902.956543,231411.078238,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,0,0,804 +MN,POINT (-73.94379599943501 40.801111999988144),10430,Free,Harlem,,pole 05: MavSWC118,40.801112,-73.9437959994,999810.654562,231148.697529,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,1086215,1016230020,805 +MN,POINT (-73.94493200045513 40.799721000424285),10432,Free,Harlem,,pole 03: MavES1S116,40.7997210004,-73.9449320005,999496.459653,230641.708058,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,184,1018400,0,0,807 +BK,POINT (-74.00872299961986 40.67719299965375),10434,Limited Free,SPECTRUM,Coffey Park,Open Seating,40.6771929997,-74.0087229996,981830.452006,185996.202861,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,85,3008500,3008423,3005320001,810 +BK,POINT (-74.00872299961986 40.67719299965375),10435,Limited Free,SPECTRUM,Coffey Park,Playground Area,40.6771929997,-74.0087229996,981830.452006,185996.202861,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,85,3008500,3008423,3005320001,811 +BK,POINT (-74.00872299961986 40.67719299965375),10436,Limited Free,SPECTRUM,Coffey Park,Baseball Field,40.6771929997,-74.0087229996,981830.452006,185996.202861,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,85,3008500,3008423,3005320001,812 +QU,POINT (-73.7740839998717 40.73120999995152),10437,Limited Free,SPECTRUM,Cunningham Park,Parking lot on Union Turn Pike at 196th Place,40.73121,-73.7740839999,1046862.7806,205756.833615,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN41,Fresh Meadows-Utopia,23,11366,408,1333,4133300,0,0,813 +QU,POINT (-73.77671799976044 40.73054399990526),10438,Limited Free,SPECTRUM,Cunningham Park,Ball field 3 on Union Turn Pike at 194th St,40.7305439999,-73.7767179998,1046133.38574,205512.318028,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN41,Fresh Meadows-Utopia,23,11366,408,1333,4133300,0,0,814 +QU,POINT (-73.77385699966416 40.730123999571084),10439,Limited Free,SPECTRUM,Cunningham Park,Parking lot and Tennis Courts,40.7301239996,-73.7738569997,1046926.71519,205361.333422,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,23,11423,408,1283,4128300,0,4072900001,815 +QU,POINT (-73.77385699966416 40.730123999571084),10440,Limited Free,SPECTRUM,Cunningham Park,Parking lot and Tennis Courts,40.7301239996,-73.7738569997,1046926.71519,205361.333422,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,23,11423,408,1283,4128300,0,4072900001,816 +QU,POINT (-73.77586100044746 40.72681100026809),10441,Limited Free,SPECTRUM,Cunningham Park,Playground off 193rd and Aberdeen,40.7268110003,-73.7758610004,1046374.38558,204152.881114,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,23,11423,408,1283,4128300,0,0,817 +QU,POINT (-73.77384100013718 40.72986900002423),10442,Limited Free,SPECTRUM,Cunningham Park,Parking lot and Tennis Courts,40.729869,-73.7738410001,1046931.38939,205268.440891,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,23,11423,408,1283,4128300,0,4072900001,818 +MN,POINT (-73.98238400055946 40.77200500026858),10443,Limited Free,SPECTRUM,Dante Park,Park Area at W63rd & Columbus,40.7720050003,-73.9823840006,989129.303222,220539.520585,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,0,0,820 +BK,POINT (-74.01292399965406 40.61299000038563),10444,Limited Free,SPECTRUM,Dyker Beach Park,Playground,40.6129900004,-74.0129239997,980661.745682,162605.437962,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,43,11228,310,154,3015400,0,3064180001,821 +QU,POINT (-73.88447899991834 40.73082200012169),10445,Limited Free,SPECTRUM,Elmhurst Park,Park Area,40.7308220001,-73.8844789999,1016266.94022,205555.844516,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,499,4049900,0,4028060029,822 +QU,POINT (-73.88420000050817 40.73048899974756),10446,Limited Free,SPECTRUM,Elmhurst Park,Park Area,40.7304889997,-73.8842000005,1016344.42596,205434.624286,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,499,4049900,0,0,823 +QU,POINT (-73.88375099956312 40.72883800018265),10447,Limited Free,SPECTRUM,Elmhurst Park,Park Area,40.7288380002,-73.8837509996,1016469.66652,204833.279032,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,499,4049900,0,0,824 +MN,POINT (-73.9881089995676 40.77144200036198),10448,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,East and South Park Area,40.7714420004,-73.9881089996,987543.613152,220334.133857,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,825 +MN,POINT (-73.9881089995676 40.77144200036198),10449,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,"1st Floor, North Multi-purpose Rm",40.7714420004,-73.9881089996,987543.613152,220334.133857,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,826 +MN,POINT (-73.9881089995676 40.77144200036198),10450,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,"1st Floor, South Multi-purpose Rm",40.7714420004,-73.9881089996,987543.613152,220334.133857,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,827 +MN,POINT (-73.9881089995676 40.77144200036198),10451,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,"1st Floor, North Lobby",40.7714420004,-73.9881089996,987543.613152,220334.133857,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,828 +MN,POINT (-73.9881089995676 40.77144200036198),10452,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,"2nd Floor, South Lobby",40.7714420004,-73.9881089996,987543.613152,220334.133857,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,829 +MN,POINT (-73.9881089995676 40.77144200036198),10453,Limited Free,SPECTRUM,Gertrude Ederle Recreation Center,"2nd Floor, South Fitness Center",40.7714420004,-73.9881089996,987543.613152,220334.133857,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,147,1014700,0,0,830 +SI,POINT (-74.13908699980927 40.59204999992469),10454,Limited Free,SPECTRUM,Greenbelt Recreation Center,Parking area and ballfield,40.5920499999,-74.1390869998,945621.410907,155006.859984,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI05,New Springville-Bloomfield-Travis,50,10314,502,27302,5027302,0,5019550001,831 +BX,POINT (-73.8754800000687 40.878444999742825),10483,Limited Free,ALTICEUSA,Williamsbridge Oval,RESERVOIR OVAL E 2/P/S/O RESERVOIR PL,40.8784449997,-73.8754800001,1018684.57974,259343.482675,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,0,861 +SI,POINT (-74.13857300023184 40.59190400028927),10455,Limited Free,SPECTRUM,Greenbelt Recreation Center,Parking area and ballfield,40.5919040003,-74.1385730002,945764.079585,154953.44244,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI05,New Springville-Bloomfield-Travis,50,10314,502,27302,5027302,0,5019550001,832 +SI,POINT (-74.13805599978508 40.592023000087124),10456,Limited Free,SPECTRUM,Greenbelt Recreation Center,Parking area and ballfield,40.5920230001,-74.1380559998,945907.734481,154996.570306,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI05,New Springville-Bloomfield-Travis,50,10314,502,27302,5027302,0,5019550001,833 +SI,POINT (-74.13915300041297 40.59184700041827),10457,Limited Free,SPECTRUM,Greenbelt Recreation Center,1st Floor,40.5918470004,-74.1391530004,945602.963109,154932.931326,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI05,New Springville-Bloomfield-Travis,50,10314,502,27302,5027302,5107273,5019550001,834 +SI,POINT (-74.13811999965004 40.59203000039672),10458,Limited Free,SPECTRUM,Greenbelt Recreation Center,2nd Floor,40.5920300004,-74.1381199997,945889.963847,154999.148713,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI05,New Springville-Bloomfield-Travis,50,10314,502,27302,5027302,0,5019550001,835 +MN,POINT (-73.98147800020345 40.71996000010701),10459,Limited Free,SPECTRUM,Hamilton Fish Recreation Center,Lobby,40.7199600001,-73.9814780002,989384.257764,201577.912839,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,2,10002,103,2201,1002201,1081934,1003400001,836 +MN,POINT (-73.98129899966226 40.720101999566694),10460,Limited Free,SPECTRUM,Hamilton Fish Recreation Center,North East area,40.7201019996,-73.9812989997,989433.865277,201629.658142,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,2,10002,103,2201,1002201,0,1003400001,837 +BK,POINT (-73.98716199990565 40.689319000315805),10461,Free,Downtown Brooklyn,,160 Schermerhorn St.,40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3394335,3001700015,838 +BK,POINT (-73.98716199990565 40.689319000315805),10462,Free,Downtown Brooklyn,,160 Schermerhorn St.,40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3394335,3001700015,839 +BK,POINT (-73.98716199990565 40.689319000315805),10463,Free,Downtown Brooklyn,,160 Schermerhorn St.,40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3394335,3001700015,840 +BK,POINT (-73.92473700033696 40.7029779997881),10464,Limited Free,ALTICEUSA,MARIA HERNANDEZ,IN PARK ABOVE PLAYGROUND NORTH SIDE,40.7029779998,-73.9247370003,1005118.05208,195399.277886,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11237,304,429,3042900,0,3032030001,841 +BK,POINT (-73.92408699980867 40.70330799962252),10465,Limited Free,ALTICEUSA,MARIA HERNANDEZ,IN PARK LEFT SIDE OF BASKETBNALL COURTS NORTH SIDE,40.7033079996,-73.9240869998,1005298.17246,195519.66216,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11237,304,429,3042900,0,3032030001,842 +BK,POINT (-73.93067099973058 40.60399300017778),10466,Limited Free,ALTICEUSA,MARINE PARK,BACK WALL OF NATURE CENTER,40.6039930002,-73.9306709997,1003501.28399,159334.951065,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,46,11234,318,666,3066600,3242368,3085900600,843 +BK,POINT (-73.9307599999631 40.60406799979022),10467,Limited Free,ALTICEUSA,MARINE PARK,EXHIBIT HALL OF NATURE CENTER,40.6040679998,-73.93076,1003476.54881,159362.255801,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,46,11234,318,666,3066600,0,3085900600,845 +BK,POINT (-73.93002700000454 40.605007999961046),10468,Limited Free,ALTICEUSA,MARINE PARK,AVE U 1/P/W/O E 33RD ST,40.605008,-73.930027,1003679.81447,159704.883724,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,46,11229,318,666,3066600,0,0,846 +BK,POINT (-73.92846600039084 40.60602900007944),10469,Limited Free,ALTICEUSA,MARINE PARK,C/O AVE U/ E 35TH ST,40.6060290001,-73.9284660004,1004112.96256,160077.210407,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK45,Georgetown-Marine Park-Bergen Beach-Mill Basin,46,11234,318,658,3065800,0,0,847 +BK,POINT (-73.93106299966999 40.60438299998303),10470,Limited Free,ALTICEUSA,MARINE PARK,AVE U 4/P/W/O E. 33RD ST,40.604383,-73.9310629997,1003392.32161,159476.952093,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,46,11229,318,666,3066600,0,0,848 +BX,POINT (-73.8426680001526 40.840657000199364),10471,Limited Free,ALTICEUSA,Owen F. Dolen Park,BA ON WEST SIDE OF BLDG,40.8406570002,-73.8426680002,1027783.08156,245590.475404,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10461,210,200,2020000,0,2039840100,849 +BX,POINT (-73.8426680001526 40.840657000199364),10472,Limited Free,ALTICEUSA,Owen F. Dolen Park,BA ON EAST SIDE OF BLDG,40.8406570002,-73.8426680002,1027783.08156,245590.475404,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10461,210,200,2020000,0,2039840100,850 +BX,POINT (-73.84260199948149 40.84067199974087),10473,Limited Free,ALTICEUSA,Owen F. Dolen Park,LOBBY REC ROOM CEILING MOUNT,40.8406719997,-73.8426019995,1027801.33382,245595.973097,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10461,210,200,2020000,2041875,2039840100,851 +BX,POINT (-73.8249499994146 40.846051999865004),10474,Limited Free,ALTICEUSA,Pelham Bay Park,C/O MIDDLETOWN RD /MCDONOUGH PL,40.8460519999,-73.8249499994,1032681.64131,247565.373685,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,852 +BX,POINT (-73.89628800032277 40.89424599955046),10475,Limited Free,ALTICEUSA,Van Cortlandt Park,Parade grounds-N/O /Tortoise & Hare statue,40.8942459996,-73.8962880003,1012923.55255,265092.924588,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,11,10471,226,435,2043500,0,2059000150,853 +BX,POINT (-73.89622000032388 40.89373900041353),10476,Limited Free,ALTICEUSA,Van Cortlandt Park,Parade grounds-S/O /Tortoise & Hare statue,40.8937390004,-73.8962200003,1012942.57154,264908.226467,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,11,10471,226,435,2043500,0,2059000150,854 +BX,POINT (-73.88169000004653 40.844468000017685),10477,Limited Free,ALTICEUSA,Vidalia Park,C/O E 180TH /DALY AV,40.844468,-73.88169,1016983.99587,246961.976598,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,363,2036300,0,0,855 +BX,POINT (-73.88196799998077 40.84414099959673),10478,Limited Free,ALTICEUSA,Vidalia Park,DALY AV 1 P/S/O E 180TH ST,40.8441409996,-73.881968,1016907.23946,246842.734383,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,363,2036300,0,0,856 +BX,POINT (-73.87844999982711 40.87654099965022),10479,Limited Free,ALTICEUSA,Williamsbridge Oval,1ST FL RECEPTION,40.8765409997,-73.8784499998,1017864.22344,258648.626781,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,2018251,2033430400,857 +BX,POINT (-73.87872499949465 40.87682700038184),10480,Limited Free,ALTICEUSA,Williamsbridge Oval,1ST FL SENIOR GAME ROOM,40.8768270004,-73.8787249995,1017788.02904,258752.722702,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,2018251,2033430400,858 +BX,POINT (-73.87887399978104 40.87685499995897),10481,Limited Free,ALTICEUSA,Williamsbridge Oval,1ST FL SENIOR LOUNGE,40.876855,-73.8788739998,1017746.80963,258762.867038,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,2033430400,859 +BK,POINT (-73.97629200021512 40.663018999785),10563,Limited Free,SPECTRUM,Prospect Park Band Shell,Park Bandshell Area,40.6630189998,-73.9762920002,990827.420232,180832.981888,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,1367 +BK,POINT (-73.95020000020925 40.72009999978811),10564,Free,AT&T,Mccarren Park,Field House area,40.7200999998,-73.9502000002,998054.421198,201632.300197,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,1368 +BK,POINT (-73.96829999969884 40.65090000019171),10565,Free,AT&T,Prospect Park,Near the Picnic House,40.6509000002,-73.9682999997,993046.275703,176418.394588,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,40,11226,314,177,3017700,0,3050510001,1369 +MN,POINT (-73.97400000048039 40.77290000019577),10566,Free,AT&T,Central Park,South side near Sheep Meadow/ Mineral Spring,40.7729000002,-73.9740000005,991451.418,220866.177084,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10019,164,143,1014300,0,1011110001,1370 +MN,POINT (-73.97089999954224 40.770999999765564),10567,Free,AT&T,Central Park,South side near Rumsey Playfield,40.7709999998,-73.9708999995,992310.278815,220174.213573,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10065,164,143,1014300,0,1011110001,1371 +MN,POINT (-73.95460936034608 40.769505659555),10568,Free,LinkNYC - Citybridge,mn-08-107971,1410 1 AVENUE,40.7695056596,-73.9546093603,996822.831798,219631.694317,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014205,02/08/2019 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,132,1013200,1045891,1014697500,4793 +MN,POINT (-73.95336988980846 40.817157049654476),10569,Free,LinkNYC - Citybridge,mn-09-146114,1467 AMSTERDAM AVENUE,40.8171570497,-73.9533698898,997156.913151,236992.922061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018187,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,9,10027,109,21303,1021303,1059636,1019700070,4794 +MN,POINT (-73.93177296947488 40.851831069817315),10570,Free,LinkNYC - Citybridge,mn-12-120667,1500 ST. NICHOLAS AVENUE,40.8518310698,-73.9317729695,1003124.9606,249629.866932,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012042,06/28/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063778,1021570030,4795 +SI,POINT (-74.10092194996882 40.59045311034561),10571,Free,LinkNYC - Citybridge,si-02-146100,1617 RICHMOND ROAD,40.5904531103,-74.10092195,956220.302439,154410.552121,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018415,07/19/2018 12:00:00 AM +0000,5,Staten Island,SI24,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill,50,10304,502,181,5018100,5022895,5008830010,4796 +SI,POINT (-74.10127071051419 40.58948831015347),10572,Free,LinkNYC - Citybridge,si-02-146098,1660 RICHMOND ROAD,40.5894883102,-74.1012707105,956123.03262,154059.16306,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018411,07/19/2018 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10304,502,11401,5011401,5050551,5035300000,4797 +MN,POINT (-73.97882096007537 40.74509981020874),10573,Free,LinkNYC - Citybridge,mn-06-134852,170 EAST 33 STREET,40.7450998102,-73.9788209601,990118.56896,210737.299704,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014623,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018483,1008880040,4798 +BX,POINT (-73.91213693006883 40.847799560012085),10574,Free,LinkNYC - Citybridge,bx-05-146095,1750 JEROME AVENUE,40.84779956,-73.9121369301,1008558.72893,248165.875437,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-019313,07/13/2018 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,22701,2022701,2008207,2028500000,4799 +BK,POINT (-73.96244000045725 40.70990000019252),10575,Free,LinkNYC - Citybridge,bk-01-146091,178 BROADWAY,40.7099000002,-73.9624400005,994663.120894,197914.43821,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021157,01/29/2019 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,549,3054900,3335296,3021320020,4800 +MN,POINT (-74.00540707030915 40.72728364981783),10576,Free,LinkNYC - Citybridge,mn-02-123589,180 VARICK STREET,40.7272836498,-74.0054070703,982751.336647,204245.647989,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010733,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10014,102,37,1003700,1008117,1005190070,4801 +BX,POINT (-73.9141379998959 40.81154399995916),10577,Limited Free,ALTICEUSA,St. Mary's Park,MULTIPURPOSE RM DROP CEILING-2ND FL,40.811544,-73.9141379999,1008018.04858,234956.100347,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1381 +BX,POINT (-73.9141379998959 40.81154399995916),10578,Limited Free,ALTICEUSA,St. Mary's Park,HALL CEILING-2ND FL,40.811544,-73.9141379999,1008018.04858,234956.100347,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1382 +BX,POINT (-73.9141379998959 40.81154399995916),10579,Limited Free,ALTICEUSA,St. Mary's Park,FAN ROOM -3RD FLOOR,40.811544,-73.9141379999,1008018.04858,234956.100347,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1383 +BX,POINT (-73.9141379998959 40.81154399995916),10580,Limited Free,ALTICEUSA,St. Mary's Park,FAN ROOM -3RD FLOOR,40.811544,-73.9141379999,1008018.04858,234956.100347,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1384 +BX,POINT (-73.9141379998959 40.81154399995916),10581,Limited Free,ALTICEUSA,St. Mary's Park,ROOF OF RESTROOM BLDG RIGHT,40.811544,-73.9141379999,1008018.04858,234956.100347,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1385 +BX,POINT (-73.9141379998959 40.81154399995916),10582,Limited Free,ALTICEUSA,St. Mary's Park,ROOF OF RESTROOM BLDG LEFT,40.811544,-73.9141379999,1008018.04858,234956.100347,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,1386 +BK,POINT (-73.98473399946903 40.57611099958907),10583,Limited Free,ALTICEUSA,Steeplechase Park,W 17TH ST 1 P/N/O SURF AV,40.5761109996,-73.9847339995,988490.835338,149169.584913,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,326,3032600,0,0,1387 +BK,POINT (-73.98349999974545 40.57585000021615),10584,Limited Free,ALTICEUSA,Steeplechase Park,W 16TH ST 1 P/N/O SURF AV,40.5758500002,-73.9834999997,988833.65355,149074.558528,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,348,3034800,0,0,1388 +BK,POINT (-73.985670000326 40.57564000004477),10585,Limited Free,ALTICEUSA,Steeplechase Park,W 19TH ST 1 P/N/O SURF AV,40.57564,-73.9856700003,988230.846029,148997.94418,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,326,3032600,0,0,1389 +BX,POINT (-73.88110000007913 40.81769999974468),10586,Free,AT&T,Hunts Point Riverside Park,Near Performance Stage,40.8176999997,-73.8811000001,1017160.47452,237209.638491,Outdoor,,Bronx,attwifi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX27,Hunts Point,17,10474,202,117,2011700,0,2027700001,1390 +QU,POINT (-73.78347699973195 40.67833400013876),10587,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6783340001,-73.7834769997,1044307.12692,186486.006343,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,4265833,4122510066,1391 +QU,POINT (-73.78941999999537 40.667599999979494),10588,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6676,-73.78942,1042668.1174,182571.296653,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11436,412,788,4078800,0,0,1392 +QU,POINT (-73.7882500005832 40.681610000158834),10589,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6816100002,-73.7882500006,1042980.35398,187676.307768,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1393 +QU,POINT (-73.78747000005639 40.68053000044152),10590,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6805300004,-73.7874700001,1043197.64686,187283.357767,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1394 +QU,POINT (-73.78745000007814 40.67963000033262),10591,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6796300003,-73.7874500001,1043203.98969,186955.476205,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1395 +QU,POINT (-73.78481999948661 40.683010000139014),10592,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6830100001,-73.7848199995,1043930.4341,188188.685024,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1396 +BX,POINT (-73.90650000053957 40.863100000124255),10593,Free,AT&T,Devoe Park,Near Tennis Courts,40.8631000001,-73.9065000005,1010112.32523,253742.023734,Outdoor,,Bronx,attwifi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,263,2026300,0,2032190001,1397 +BX,POINT (-73.92269999945766 40.828499999622004),10594,Free,AT&T,Joyce Kilmer Park,North Playground,40.8284999996,-73.9226999995,1005642.49198,241131.574217,Outdoor,,Bronx,attwifi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1398 +QU,POINT (-73.7858900004855 40.6846199999828),10595,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.68462,-73.7858900005,1043632.2349,188774.525716,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1399 +QU,POINT (-73.78721999990837 40.68495000015954),10596,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6849500002,-73.7872199999,1043263.07553,188893.855202,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,274,4027400,0,0,1400 +QU,POINT (-73.78710999940922 40.67814000018264),10597,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6781400002,-73.7871099994,1043299.61319,186412.856883,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1401 +QU,POINT (-73.78695000036943 40.67662000005286),10598,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6766200001,-73.7869500004,1043345.33915,185859.18673,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1402 +QU,POINT (-73.78443999966726 40.679340000257476),10599,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6793400003,-73.7844399997,1044039.11761,186851.861254,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1403 +QU,POINT (-73.78467999957623 40.68079000022888),10600,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6807900002,-73.7846799996,1043971.25128,187379.972731,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,4122290001,1404 +QU,POINT (-73.78678000025909 40.67267999990968),10601,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6726799999,-73.7867800003,1043395.98734,184423.851018,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN02,Springfield Gardens North,28,11434,412,294,4029400,0,0,1405 +QU,POINT (-73.78517000051704 40.67317999988555),10602,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6731799999,-73.7851700005,1043842.14426,184607.105901,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN02,Springfield Gardens North,28,11434,412,294,4029400,0,0,1406 +QU,POINT (-73.78253999979735 40.676089999592264),10603,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6760899996,-73.7825399998,1044569.05225,185669.098856,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN02,Springfield Gardens North,28,11434,412,294,4029400,0,0,1407 +QU,POINT (-73.78412000047007 40.674859999865),10604,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6748599999,-73.7841200005,1044131.89696,185219.892077,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN02,Springfield Gardens North,28,11434,412,294,4029400,0,0,1408 +BK,POINT (-73.99430000055534 40.7014999998047),10605,Free,AT&T,Hillside Park,Near Vine St and Columbia Heights,40.7014999998,-73.9943000006,985830.465003,194851.884952,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,1,3000100,0,3002050001,1409 +QU,POINT (-73.78743999957887 40.675059999825635),10606,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6750599998,-73.7874399996,1043210.80365,185290.505453,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11434,412,288,4028800,0,0,1410 +QU,POINT (-73.78954999979172 40.674539999909896),10607,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6745399999,-73.7895499998,1042625.97904,185099.64199,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11436,412,18401,4018401,0,0,1411 +QU,POINT (-73.78860999990955 40.67140000028407),10608,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6714000003,-73.7886099999,1042889.48245,183956.281744,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11436,412,788,4078800,0,0,1412 +QU,POINT (-73.78896000023516 40.66977999955353),10609,Limited Free,SPECTRUM,Baisley Pond Park,Park Perimeter,40.6697799996,-73.7889600002,1042793.81466,183365.837058,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11436,412,788,4078800,0,0,1413 +MN,POINT (-74.00718505979917 40.71572690034403),10610,Free,LinkNYC - Citybridge,mn-01-108151,183 CHURCH STREET,40.7157269003,-74.0071850598,982258.190652,200035.203982,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000570,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,33,1003300,1001642,1001500020,4802 +BX,POINT (-73.88597435947021 40.841833540109924),10611,Free,LinkNYC - Citybridge,bx-06-101312,1917 SOUTHERN BOULEVARD,40.8418335401,-73.8859743595,1015799.84995,246000.572681,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010198,07/12/2018 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,36502,2036502,2010153,2029600040,4803 +BX,POINT (-73.89339766966069 40.84652244992242),10612,Free,LinkNYC - Citybridge,bx-06-144410,1961 ARTHUR AVENUE,40.8465224499,-73.8933976697,1013743.81009,247706.331081,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011621,08/24/2018 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10457,206,37504,2037504,2011973,2030680050,4804 +BX,POINT (-73.89219432956415 40.84618976019235),10613,Free,LinkNYC - Citybridge,bx-06-119558,1965 HUGHES AVENUE,40.8461897602,-73.8921943296,1014076.88883,247585.527188,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011542,07/13/2018 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10457,206,373,2037300,2011992,2030680100,4805 +BX,POINT (-73.91295800043977 40.84643400016937),10614,Free,LinkNYC - Citybridge,bx-05-146094,2 CLIFFORD PLACE,40.8464340002,-73.9129580004,1008332.06108,247668.123808,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-019312,07/13/2018 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,22701,2022701,2008155,2028480020,4806 +MN,POINT (-74.00350217960535 40.72711526982593),10615,Free,LinkNYC - Citybridge,mn-02-123559,201 6 AVENUE,40.7271152698,-74.0035021796,983279.307704,204184.27508,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010720,06/18/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10014,102,37,1003700,1000000,1005190050,4807 +MN,POINT (-73.9966308704265 40.719039750012854),10616,Free,LinkNYC - Citybridge,mn-02-122344,203 GRAND STREET,40.71903975,-73.9966308704,985183.928238,201242.112657,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010726,02/13/2019 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,41,1004100,1003091,1002370020,4808 +MN,POINT (-73.98037404957071 40.74507060003786),10617,Free,LinkNYC - Citybridge,mn-06-134810,205 LEXINGTON AVENUE,40.7450706,-73.9803740496,989688.220739,210726.557271,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000649,02/01/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018475,1008880020,4809 +QU,POINT (-73.92577771958464 40.772033139618024),10618,Free,LinkNYC - Citybridge,qu-01-146087,21-04 NEWTON AVENUE,40.7720331396,-73.9257777196,1004808.17606,220557.991677,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020949,06/28/2018 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,71,4007100,4458141,4005430020,4810 +MN,POINT (-73.97999739944736 40.7455912099529),10619,Free,LinkNYC - Citybridge,mn-06-133659,215 LEXINGTON AVENUE,40.74559121,-73.9799973994,989792.544677,210916.255711,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000650,02/01/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018474,1008887500,4811 +MN,POINT (-73.94568300022323 40.79040100034059),10620,Free,LinkNYC - Citybridge,mn-11-120226,1882 3 AVENUE,40.7904010003,-73.9456830002,999290.63887,227245.979613,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000897,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,166,1016600,1051965,1016320030,3378 +MN,POINT (-73.94534800034296 40.79086200007416),10621,Free,LinkNYC - Citybridge,mn-11-120225,1896 3 AVENUE,40.7908620001,-73.9453480003,999383.297149,227413.995353,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000898,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,166,1016600,1051969,1016320040,3379 +MN,POINT (-73.94489481972688 40.79148063981983),10622,Free,LinkNYC - Citybridge,mn-11-120224,1918 3 AVENUE,40.7914806398,-73.9448948197,999508.642371,227639.465703,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000899,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052005,1016330040,3380 +MN,POINT (-73.94421804954874 40.79128240044815),10623,Free,LinkNYC - Citybridge,mn-11-132877,1915 3 AVENUE,40.7912824004,-73.9442180495,999696.086222,227567.358891,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000900,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,170,1017000,1052429,1016550050,3381 +MN,POINT (-73.94423011045087 40.79239362030541),10624,Free,LinkNYC - Citybridge,mn-11-143074,1950 3 AVENUE,40.7923936203,-73.9442301105,999692.488788,227972.212412,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000901,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052080,1016350030,3382 +MN,POINT (-73.94398813001413 40.792296700068626),10625,Free,LinkNYC - Citybridge,mn-11-120222,1945 3 AVENUE,40.7922967001,-73.94398813,999759.514901,227936.943782,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000902,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,170,1017000,1080688,1016560000,3383 +MN,POINT (-73.94378352943846 40.793008799914865),10626,Free,LinkNYC - Citybridge,mn-11-120221,1966 3 AVENUE,40.7930087999,-73.9437835294,999816.001664,228196.422594,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000903,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052113,1016360030,3384 +MN,POINT (-73.94285893992893 40.794273120376374),10627,Free,LinkNYC - Citybridge,mn-11-120232,2004 3 AVENUE,40.7942731204,-73.9428589399,1000071.71441,228657.223838,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000904,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1082321,1016380030,3385 +MN,POINT (-73.94239654022637 40.79491137992468),10628,Free,LinkNYC - Citybridge,mn-11-107915,2022 3 AVENUE,40.7949113799,-73.9423965402,1000199.59473,228889.847716,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000905,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052207,1016390030,3386 +MN,POINT (-73.94033699948231 40.797303000185345),10629,Free,LinkNYC - Citybridge,mn-11-120229,2105 3 AVENUE,40.7973030002,-73.9403369995,1000769.25927,229761.579569,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000906,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,188,1018800,1052515,1016650000,3387 +MN,POINT (-73.94025620968493 40.79783525002822),10630,Free,LinkNYC - Citybridge,mn-11-107218,2120 3 AVENUE,40.79783525,-73.9402562097,1000791.49578,229955.511923,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000907,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,182,1018200,1084329,1016430040,3388 +MN,POINT (-73.94003499969534 40.79770900036906),10631,Free,LinkNYC - Citybridge,mn-11-116230,2119 3 AVENUE,40.7977090004,-73.9400349997,1000852.77453,229909.556635,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000908,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,188,1018800,1076374,1016650050,3389 +MN,POINT (-73.94003626021912 40.79813945967899),10632,Free,LinkNYC - Citybridge,mn-11-120240,2126 3 AVENUE,40.7981394597,-73.9400362602,1000852.31816,230066.387686,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000909,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,1052300,1016440030,3390 +MN,POINT (-73.9372489994576 40.80154018259323),10633,Free,LinkNYC - Citybridge,mn-11-137841,2239 3 AVENUE,40.8015401826,-73.9372489995,1001623.14667,231305.930154,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000911,03/31/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,194,1019400,1054622,1017860050,3391 +MN,POINT (-73.93728906984869 40.801898610264566),10634,Free,LinkNYC - Citybridge,mn-11-120235,2246 3 AVENUE,40.8018986103,-73.9372890698,1001611.95936,231436.509946,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000912,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1054415,1017710030,3392 +MN,POINT (-73.93672101991655 40.80266344039473),10635,Free,LinkNYC - Citybridge,mn-11-142952,2266 3 AVENUE,40.8026634404,-73.9367210199,1001769.02663,231715.277433,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000913,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1054456,1017720130,3393 +MN,POINT (-73.9362700001787 40.80286999963458),10636,Free,LinkNYC - Citybridge,mn-11-143437,2277 3 AVENUE,40.8028699996,-73.9362700002,1001893.83839,231790.624723,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000914,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,194,1019400,1087594,1017887500,3394 +MN,POINT (-73.93610685021419 40.80351566972458),10637,Free,LinkNYC - Citybridge,mn-11-143675,2292 3 AVENUE,40.8035156697,-73.9361068502,1001938.83535,232025.897875,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000915,03/22/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1087605,1017730020,3395 +MN,POINT (-73.93613900042621 40.80373100042477),10638,Free,LinkNYC - Citybridge,mn-11-144673,192 EAST 125 STREET,40.8037310004,-73.9361390004,1001929.87736,232104.343912,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000916,03/28/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1087605,1017730020,3396 +MN,POINT (-73.9635832397178 40.76587982980208),10639,Free,LinkNYC - Citybridge,mn-08-120980,1126 3 AVENUE,40.7658798298,-73.9635832397,994337.690771,218309.523733,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000918,04/22/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,1042435,1014000040,3397 +MN,POINT (-73.98184115133428 40.76956574177474),10640,Free,LinkNYC - Citybridge,mn-07-122843,1858 BROADWAY,40.7695657418,-73.9818411513,989279.846556,219650.84815,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000919,09/30/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,3,10023,107,145,1014500,1027191,1011137500,3398 +BX,POINT (-73.87854199956787 40.87664300026768),10482,Limited Free,ALTICEUSA,Williamsbridge Oval,2ND FL COMMUNITY ROOM,40.8766430003,-73.8785419996,1017838.72973,258685.754332,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,2018251,2033430400,860 +BX,POINT (-73.87627299985519 40.87678799991144),10484,Limited Free,ALTICEUSA,Williamsbridge Oval,RESERVOIR OVAL E 1/p/n/o holt pl,40.8767879999,-73.8762729999,1018466.13759,258739.461573,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,0,862 +BX,POINT (-73.87932200048367 40.877000999894776),10485,Limited Free,ALTICEUSA,Williamsbridge Oval,RESERVOIR OVAL E 1/p/E O BAINBRIDGE AV,40.8770009999,-73.8793220005,1017622.844,258815.88957,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,2033430400,863 +BX,POINT (-73.87738400009098 40.87609900008607),10486,Limited Free,ALTICEUSA,Williamsbridge Oval,RESERVOIR OVAL E 3/p/S/o holt pl,40.8760990001,-73.8773840001,1018159.24713,258487.999806,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,0,864 +BX,POINT (-73.87874899940843 40.87620000029338),10487,Limited Free,ALTICEUSA,Williamsbridge Oval,RESERVOIR OVAL E 8/p/S/o holt pl,40.8762000003,-73.8787489994,1017781.70819,258524.272699,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,0,0,865 +BK,POINT (-73.94405999987589 40.65831000005428),10488,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/W/BROOKLYN AV,40.6583100001,-73.9440599999,999770.788172,179121.42724,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,0,3048110001,866 +MN,POINT (-74.00319669979253 40.70660019991959),10489,Free,Manhattan Down Alliance,4,"11 Fulton Street, New York, NY 10038, USA",40.7066001999,-74.0031966998,983363.704189,196710.005252,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,1001318,1000960001,57 +MN,POINT (-74.00260159943913 40.70510100029551),10490,Free,Manhattan Down Alliance,5,"16 Bond Street, New York, NY 10038, USA",40.7051010003,-74.0026015994,983528.681549,196163.796371,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10012,102,5502,1005502,0,1000730008,58 +MN,POINT (-74.00229639989777 40.70479970013999),10491,Free,Manhattan Down Alliance,6,"East River Ferry, John Street, New York, NY 10006, USA",40.7047997001,-74.0022963999,983613.298178,196054.021328,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,0,1000730008,59 +MN,POINT (-74.00499730055982 40.7070998997862),10492,Free,Manhattan Down Alliance,7,"135 John Street, New York, NY 10038, USA",40.7070998998,-74.0049973006,982864.491932,196892.084284,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,1001164,1000750008,60 +MN,POINT (-74.00450129984175 40.70650100009403),10493,Free,Manhattan Down Alliance,8,"182-188 Front Street, New York, NY 10038, USA",40.7065010001,-74.0045012998,983001.997563,196673.879668,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,0,1000740040,61 +MN,POINT (-74.00610350009855 40.70629880021527),10494,Free,Manhattan Down Alliance,9,"125-133 Maiden Lane, New York, NY 10038, USA",40.7062988002,-74.0061035001,982557.776338,196600.239067,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,1087484,1000707501,62 +MN,POINT (-74.0093001995361 40.70489879982568),10495,Free,Manhattan Down Alliance,10,"5 Hanover Square, New York, NY 10004, USA",40.7048987998,-74.0093001995,981671.422468,196090.254851,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,7,1000700,1000832,1000280005,63 +MN,POINT (-74.00890350004991 40.70470049983272),10496,Free,Manhattan Down Alliance,11,"110 Pearl Street, New York, NY 10005, USA",40.7047004998,-74.0089035,981781.404204,196017.996793,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000859,1000310001,64 +MN,POINT (-74.0083008002753 40.704700499848556),10497,Free,Manhattan Down Alliance,12,"90 Water Street, New York, NY 10005, USA",40.7047004998,-74.0083008003,981948.509512,196017.980389,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000862,1000310034,65 +MN,POINT (-74.00738775755607 40.74319277585219),10498,Free,Chelsea,,10th between 15th and 16th,40.7431927759,-74.0073877576,982202.843649,210041.883116,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,67 +MN,POINT (-74.00506496395414 40.742591254768115),10499,Free,Chelsea,,16th near 9th r,40.7425912548,-74.005064964,982846.479829,209822.684079,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,68 +MN,POINT (-74.00325715522922 40.74183934633829),10500,Free,Chelsea,,16th between 8th and 9th,40.7418393463,-74.0032571552,983347.4201,209548.716123,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,69 +MN,POINT (-74.00767207152307 40.742753828602325),10501,Free,Chelsea,,10th and 15th,40.7427538286,-74.0076720715,982124.045907,209881.967425,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,70 +MN,POINT (-74.00626659410985 40.73948602018954),10502,Free,Chelsea,,9th Ave and 12th St,40.7394860202,-74.0062665941,982513.422753,208691.370069,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,79,1007900,0,0,71 +MN,POINT (-74.00663673910496 40.744407993323065),10503,Free,Chelsea,,"10th between, 17th and 18th",40.7444079933,-74.0066367391,982410.985293,210484.608936,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,0,0,72 +MN,POINT (-74.00426030129223 40.742607512677914),10504,Free,Chelsea,,9th between 16th and 17th,40.7426075127,-74.0042603013,983069.455105,209828.595484,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,73 +MN,POINT (-74.00296211239403 40.742477453545334),10505,Free,Chelsea,,17th near 9th,40.7424774535,-74.0029621124,983429.186341,209781.195973,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,75 +MN,POINT (-74.00070905716153 40.742298620859636),10506,Free,Chelsea,,8th and 18th,40.7422986209,-74.0007090572,984053.516785,209716.028452,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,0,0,76 +MN,POINT (-74.00701761203075 40.743696748726734),10507,Free,Chelsea,,10th between 16th and 17th,40.7436967487,-74.007017612,982305.426121,210225.488063,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,77 +MN,POINT (-74.00111138786106 40.741554838518894),10508,Free,Chelsea,,8th and 17th,40.7415548385,-74.0011113879,983942.025538,209445.046055,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,0,0,78 +MN,POINT (-74.00185704273564 40.74190031203243),10509,Free,Chelsea,,17th near 8th,40.741900312,-74.0018570427,983735.40128,209570.916538,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,79 +MN,POINT (-74.0034127240207 40.74398937584305),10510,Free,Chelsea,,9th and 19th SW,40.7439893758,-74.003412724,983304.341446,210332.041984,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1078444,1007160017,80 +MN,POINT (-74.00545120193614 40.740998011487434),10511,Free,Chelsea,,14thst and 9thav r,40.7409980115,-74.0054512019,982739.415739,209242.221329,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,81 +MN,POINT (-74.00600373800025 40.74025827860488),10512,Free,Chelsea,,9th av and 13th st,40.7402582786,-74.006003738,982586.283827,208972.72318,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,79,1007900,0,0,83 +MN,POINT (-74.00521516856635 40.74340615184816),10513,Free,Chelsea,,17th between 10th and 9th,40.7434061518,-74.0052151686,982804.875254,210119.579483,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,84 +MN,POINT (-74.00171756733121 40.74277008594405),10514,Free,Chelsea,,18th between 8th and 9th,40.7427700859,-74.0017175673,983774.057042,209887.802059,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,0,1007420022,85 +MN,POINT (-74.00340199449536 40.74094923773884),10515,Free,Chelsea,,15th between 8th and 9th,40.7409492377,-74.0034019945,983307.271559,209224.422808,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,86 +MN,POINT (-74.00680303551856 40.74324154730512),10516,Free,Chelsea,,16th east of 10th Av,40.7432415473,-74.0068030355,982364.872197,210059.638986,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,87 +MN,POINT (-74.00364875809377 40.74343663394672),10517,Free,Chelsea,,9th and 18th,40.7434366339,-74.0036487581,983238.928519,210130.663122,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,88 +MN,POINT (-74.00197505912313 40.74027453633681),10518,Free,Chelsea,,8th and 15 th SE pole,40.7402745363,-74.0019750591,983702.68481,208978.595544,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,0,0,89 +SI,POINT (-74.10818500026514 40.617749999840505),10519,Limited Free,SPECTRUM,Clove Lakes Park - Lake Club Restaurant,Lake Club Restaurant Back Patio Dining,40.6177499998,-74.1081850003,954215.372393,164357.912476,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,5112425,5003190001,90 +SI,POINT (-74.10818500026514 40.617749999840505),10520,Limited Free,SPECTRUM,Clove Lakes Park - Lake Club Restaurant,Lake Club Restaurant Indoor Dining Area,40.6177499998,-74.1081850003,954215.372393,164357.912476,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,5112425,5003190001,91 +MN,POINT (-74.00404463575583 40.74184639575824),10521,Free,Chelsea,,loading dock,40.7418463958,-74.0040446358,983129.204001,209551.293546,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1013043,1007390001,92 +MN,POINT (-74.00802612328148 40.74330657610989),10522,Free,Chelsea,,85 10th lobby unit,40.7433065761,-74.0080261233,982025.955552,210083.359739,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,1012277,1006870029,93 +BK,POINT (-73.94951099979386 40.72007899968208),10523,Limited Free,SPECTRUM,McCarren Park,Track & Field,40.7200789997,-73.9495109998,998245.414583,201624.758546,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,94 +BK,POINT (-73.94951099979386 40.72007899968208),10524,Limited Free,SPECTRUM,McCarren Park,Track & Field,40.7200789997,-73.9495109998,998245.414583,201624.758546,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,95 +BK,POINT (-73.94951099979386 40.72007899968208),10525,Limited Free,SPECTRUM,McCarren Park,Track & Field,40.7200789997,-73.9495109998,998245.414583,201624.758546,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,96 +BK,POINT (-74.01787500038014 40.6250039996116),10526,Limited Free,SPECTRUM,McKinley Park,Fort Hamilton PKWY Between 76th & 77th St,40.6250039996,-74.0178750004,979288.029597,166982.695612,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,132,3013200,0,0,97 +BK,POINT (-74.01734399962055 40.62531299982296),10527,Limited Free,SPECTRUM,McKinley Park,Tennis Courts at 76th St. & Hamilton,40.6253129998,-74.0173439996,979435.453843,167095.242959,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,132,3013200,0,0,98 +BK,POINT (-74.01650900025747 40.62588000006137),10528,Limited Free,SPECTRUM,McKinley Park,Basketball Courts at Bay Ridge Pkwy,40.6258800001,-74.0165090003,979667.281463,167301.771418,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,132,3013200,0,0,99 +BK,POINT (-74.01579000042337 40.62638000036061),10529,Limited Free,SPECTRUM,McKinley Park,Entrance off 73rd St,40.6263800004,-74.0157900004,979866.900815,167483.898022,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,132,3013200,0,0,100 +BK,POINT (-74.01678699942268 40.626553000261005),10530,Limited Free,SPECTRUM,McKinley Park,Comfort station & Playground area,40.6265530003,-74.0167869994,979590.158914,167546.977948,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,132,3013200,3399352,3059330001,101 +BK,POINT (-73.96050200005017 40.715087999711116),10531,Limited Free,SPECTRUM,Metropolitan Recreation Center - Pool,2nd Fl Aerobics Rm,40.7150879997,-73.9605020001,995199.559126,199804.819928,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,553,3055300,3062457,3023660004,102 +BK,POINT (-73.96050200005017 40.715087999711116),10532,Limited Free,SPECTRUM,Metropolitan Recreation Center - Pool,Lobby area,40.7150879997,-73.9605020001,995199.559126,199804.819928,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,553,3055300,3062457,3023660004,103 +SI,POINT (-74.09064199959067 40.56836600028222),10533,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5683660003,-74.0906419996,959067.091036,146360.550177,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10305,595,11202,5011202,0,5038930001,104 +SI,POINT (-74.08948999981259 40.56936499991595),10534,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5693649999,-74.0894899998,959387.520842,146724.181011,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10305,595,11202,5011202,0,5038790001,105 +SI,POINT (-74.08854699960811 40.57019500009984),10535,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5701950001,-74.0885469996,959649.814609,147026.304095,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10305,595,11202,5011202,0,5038790001,106 +SI,POINT (-74.0872929996577 40.5712679999889),10536,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.571268,-74.0872929997,959998.591142,147416.874508,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10305,595,11202,5011202,0,5038790001,107 +SI,POINT (-74.08601300021665 40.572313000097246),10537,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5723130001,-74.0860130002,960354.569433,147797.241857,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038680001,108 +SI,POINT (-74.08440600053596 40.57333799985298),10538,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5733379999,-74.0844060005,960801.372673,148170.240127,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038680060,109 +BX,POINT (-73.9102817296526 40.85017300040638),10539,Free,LinkNYC - Citybridge,bx-05-146097,1 EAST 177 STREET,40.8501730004,-73.9102817297,1009071.11406,249031.129612,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-019315,07/13/2018 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,23301,2023301,2008247,2028530000,4784 +QU,POINT (-73.86643425959005 40.75744562024284),10540,Free,LinkNYC - Citybridge,qu-03-125402,102-02 NORTHERN BOULEVARD,40.7574456202,-73.8664342596,1021253.29245,215262.778186,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011428,06/29/2018 12:00:00 AM +0000,4,Queens,QN26,North Corona,21,11368,403,379,4037900,4042582,4017170000,4785 +MN,POINT (-73.96583969991913 40.75877707010767),10541,Free,LinkNYC - Citybridge,mn-06-121770,1063 2 AVENUE,40.7587770701,-73.9658396999,993713.645103,215721.503318,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012859,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1090233,1013307500,4786 +MN,POINT (-74.00579535947433 40.724924889940446),10542,Free,LinkNYC - Citybridge,mn-02-123586,118 VARICK STREET,40.7249248899,-74.0057953595,982643.658713,203386.285534,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014004,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10013,102,37,1003700,1000000,1004910000,4787 +MN,POINT (-73.95806216990799 40.76519296959296),10543,Free,LinkNYC - Citybridge,mn-08-120952,1259 1 AVENUE,40.7651929696,-73.9580621699,995867.184431,218059.961896,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013673,12/20/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,118,1011800,1086891,1014420020,4788 +MN,POINT (-73.95751700050276 40.81184500034177),10544,Free,LinkNYC - Citybridge,mn-09-118158,1290 AMSTERDAM AVENUE,40.8118450003,-73.9575170005,996009.958424,235056.968584,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004820,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,211,1021100,1084108,1019780000,4789 +SI,POINT (-74.08620984955822 40.5954560397303),10545,Free,LinkNYC - Citybridge,si-02-125479,1351 HYLAN BOULEVARD,40.5954560397,-74.0862098496,960308.180418,156228.880834,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001756,07/19/2018 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,502,9601,5009601,5048984,5033230000,4790 +MN,POINT (-73.95586491995252 40.814102829933),10546,Free,LinkNYC - Citybridge,mn-09-146082,1356 AMSTERDAM AVENUE,40.8141028299,-73.95586492,996466.865646,235879.802568,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-022396,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,219,1021900,1059701,1019820030,4791 +MN,POINT (-73.93451006016785 40.848082550228185),10547,Free,LinkNYC - Citybridge,mn-12-120768,1380 ST. NICHOLAS AVENUE,40.8480825502,-73.9345100602,1002368.76756,248263.561265,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013398,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1079911,1021530030,4792 +QU,POINT (-73.80285999986761 40.74726000013819),10548,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7472600001,-73.8028599999,1038874.34612,211585.083441,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN52,East Flushing,20,11365,407,1207,4120700,0,0,1352 +QU,POINT (-73.80270000000348 40.7491399995935),10549,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7491399996,-73.8027,1038917.13672,212270.125706,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN52,East Flushing,20,11358,407,1207,4120700,0,0,1353 +QU,POINT (-73.80506000028463 40.749999999652026),10550,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7499999997,-73.8050600003,1038262.54058,212581.986631,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN52,East Flushing,20,11358,407,1207,4120700,0,0,1354 +QU,POINT (-73.80718999994238 40.75016999961269),10551,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7501699996,-73.8071899999,1037672.24058,212642.616759,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN52,East Flushing,20,11358,407,1207,4120700,0,0,1355 +QU,POINT (-73.81170000048465 40.74761000019273),10552,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7476100002,-73.8117000005,1036424.65286,211707.210494,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,20,11365,407,1211,4121100,0,0,1356 +BK,POINT (-73.97550000033866 40.691500000175495),10553,Free,AT&T,Fort Greene Park,Entire Park,40.6915000002,-73.9755000003,991044.246242,191209.488038,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,0,3020880001,1357 +BK,POINT (-73.94620000050578 40.68979999960806),10554,Free,AT&T,Herbert Von King Park,Amphitheater,40.6897999996,-73.9462000005,999169.989833,190593.75961,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,263,3026300,0,3017900001,1358 +QU,POINT (-73.81814999967564 40.747559999582336),10555,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7475599996,-73.8181499997,1034637.51076,211685.217755,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11355,407,845,4084500,0,0,1359 +MN,POINT (-73.98869199941672 40.74237799960659),10556,Limited Free,SPECTRUM,Madison Square Park,NW area by dog run off 5th Ave,40.7423779996,-73.9886919994,987383.498642,209745.150113,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,1008520001,1360 +MN,POINT (-73.98830000006224 40.743100000396424),10557,Limited Free,SPECTRUM,Madison Square Park,NW area near E. 26th St off 5th Ave,40.7431000004,-73.9883000001,987492.08832,210008.212251,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,1008520001,1361 +MN,POINT (-73.98791399986746 40.74110000025352),10558,Limited Free,SPECTRUM,Madison Square Park,NE area by Shake Shack off Madison Ave,40.7411000003,-73.9879139999,987599.150114,209279.563118,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,0,1362 +MN,POINT (-73.98736399962114 40.74187499955013),10559,Limited Free,SPECTRUM,Madison Square Park,NE area off Madison Ave between 25th St and 24th St,40.7418749996,-73.9873639996,987751.519888,209561.94149,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,0,1363 +MN,POINT (-73.9869060005903 40.74249200008544),10560,Limited Free,SPECTRUM,Madison Square Park,NW area by dog run off 5th Ave,40.7424920001,-73.9869060006,987878.400868,209786.753048,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,0,1364 +MN,POINT (-73.98893999946081 40.741480000279175),10561,Limited Free,SPECTRUM,Madison Square Park,NE area off Madison Ave near E. 26th St,40.7414800003,-73.9889399995,987314.818005,209417.971634,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,1008520001,1365 +BK,POINT (-73.97616400028261 40.66325600000126),10562,Limited Free,SPECTRUM,Prospect Park Band Shell,Park Bandshell Area,40.663256,-73.9761640003,990862.90835,180919.337358,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,1366 +QU,POINT (-73.94458300007643 40.755726999970044),9601,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-25 41 AVENUE,40.755727,-73.9445830001,999603.226171,214613.274563,Indoor AP - Community Center - Computer Rm,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4746 +QU,POINT (-73.94413100020707 40.755332999617764),9602,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-43 41 AVENUE,40.7553329996,-73.9441310002,999728.543834,214469.807003,Indoor AP - Queens Public Library,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4747 +QU,POINT (-73.94516599972107 40.75575100007361),9603,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-05 41 AVENUE,40.7557510001,-73.9451659997,999441.701232,214621.916935,Indoor AP - North Management Office,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4748 +QU,POINT (-73.94516599972107 40.75575100007361),9604,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-05 41 AVENUE,40.7557510001,-73.9451659997,999441.701232,214621.916935,Indoor AP - North Management Office,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4749 +QU,POINT (-73.94516599972107 40.75575100007361),9605,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-05 41 AVENUE,40.7557510001,-73.9451659997,999441.701232,214621.916935,Indoor AP - North Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4750 +QU,POINT (-73.94516599972107 40.75575100007361),9606,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-05 41 AVENUE,40.7557510001,-73.9451659997,999441.701232,214621.916935,Indoor AP - North Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4751 +QU,POINT (-73.94516599972107 40.75575100007361),9607,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-05 41 AVENUE,40.7557510001,-73.9451659997,999441.701232,214621.916935,Indoor AP - North Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4752 +QU,POINT (-73.94563299985178 40.755289999656554),9608,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-06 41 AVENUE,40.7552899997,-73.9456329999,999312.423603,214453.878885,Indoor AP - South Management Office,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4753 +QU,POINT (-73.94563299985178 40.755289999656554),9609,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-06 41 AVENUE,40.7552899997,-73.9456329999,999312.423603,214453.878885,Indoor AP - South Management Office,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,4754 +QU,POINT (-73.94765700031446 40.75563599999595),9610,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,41-15 VERNON BLVD,40.755636,-73.9476570003,998751.597297,214579.596481,Indoor AP - South Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433410,4004650000,4755 +QU,POINT (-73.94765700031446 40.75563599999595),9611,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,41-15 VERNON BLVD,40.755636,-73.9476570003,998751.597297,214579.596481,Indoor AP - South Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433410,4004650000,4756 +QU,POINT (-73.94765700031446 40.75563599999595),9612,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,41-15 VERNON BLVD,40.755636,-73.9476570003,998751.597297,214579.596481,Indoor AP - South Maintenance Area,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,05/01/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433410,4004650000,4757 +MN,POINT (-73.98096598983595 40.7809421798304),9613,Free,LinkNYC - Citybridge,mn-07-121224,215 WEST 75 STREET,40.7809421798,-73.9809659898,989521.358212,223795.717813,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012535,12/21/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030839,1011677500,4812 +SI,POINT (-74.10267054028579 40.577390830011986),9614,Free,LinkNYC - Citybridge,si-02-146099,2154 HYLAN BOULEVARD,40.57739083,-74.1026705403,955729.077699,149652.203698,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-005418,07/19/2018 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,11202,5011202,5053558,5036910010,4813 +BX,POINT (-73.92333228032903 40.80829272983949),9615,Free,LinkNYC - Citybridge,bx-01-146086,216 WILLIS AVENUE,40.8082927298,-73.9233322803,1005473.95426,233769.186383,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020541,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,25,2002500,2118034,2022810010,4814 +MN,POINT (-73.93892310008033 40.79965855014915),9616,Free,LinkNYC - Citybridge,mn-11-106683,2172 3 AVENUE,40.7996585501,-73.9389231001,1001160.13579,230620.058167,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006028,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,1081471,1017670030,4815 +MN,POINT (-73.93860514009967 40.80009573038571),9617,Free,LinkNYC - Citybridge,mn-11-146076,2182 3 AVENUE,40.8000957304,-73.9386051401,1001248.05654,230779.399711,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018377,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1054369,1017680030,4816 +MN,POINT (-74.00797200020884 40.72406499957339),9618,Free,LinkNYC - Citybridge,mn-02-122289,221 HUDSON STREET,40.7240649996,-74.0079720002,982040.315103,203073.0483,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008199,01/25/2019 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10013,102,37,1003700,1010318,1005940110,4817 +SI,POINT (-74.10347900045457 40.57654099976831),9619,Free,LinkNYC - Citybridge,si-02-125465,2212 HYLAN BOULEVARD,40.5765409998,-74.1034790005,955504.12933,149342.853923,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001749,07/19/2018 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,11202,5011202,5136036,5036920010,4818 +MN,POINT (-73.98023329994584 40.7458632901035),9620,Free,LinkNYC - Citybridge,mn-05-121484,222 LEXINGTON AVENUE,40.7458632901,-73.9802332999,989727.156357,211015.368373,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000653,06/12/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018492,1008890020,4819 +MN,POINT (-73.98047639985059 40.78228509005275),9621,Free,LinkNYC - Citybridge,mn-07-137179,222 WEST 77 STREET,40.7822850901,-73.9804763999,989656.838256,224285.01539,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000962,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030865,1011680040,4820 +MN,POINT (-73.93646797946244 40.80263696972306),9622,Free,LinkNYC - Citybridge,mn-11-120248,2265 3 AVENUE,40.8026369697,-73.9364679795,1001839.08883,231705.683948,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005933,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,194,1019400,1054630,1017880000,4821 +MN,POINT (-74.00622249013573 40.71693936996162),9623,Free,LinkNYC - Citybridge,mn-01-122911,227 CHURCH STREET,40.71693937,-74.0062224901,982525.061181,200476.923243,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013928,05/02/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,33,1003300,1085517,1001520010,4822 +MN,POINT (-73.96997866956252 40.76621551040254),9624,Free,LinkNYC - Citybridge,mn-08-121861,24 EAST 63 STREET,40.7662155104,-73.9699786696,992566.071282,218431.151442,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012376,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,11401,1011401,1040908,1013770060,4823 +BX,POINT (-73.90196471988378 40.86176218020185),9625,Free,LinkNYC - Citybridge,bx-07-117868,2415 JEROME AVENUE,40.8617621802,-73.9019647199,1011367.33978,253255.975821,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011033,06/26/2018 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,253,2025300,2014338,2031990110,4824 +BX,POINT (-73.89455300002395 40.86443700022745),9685,Limited Free,ALTICEUSA,Poe Park,right side of bandshell,40.8644370002,-73.894553,1013416.30648,254232.897096,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,39901,2039901,0,2031550001,882 +MN,POINT (-73.94791957956184 40.81444735970185),9626,Free,LinkNYC - Citybridge,mn-10-119884,2454 FREDERICK DOUGLASS BOULEVARD,40.8144473597,-73.9479195796,998666.110592,236006.534926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011544,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,1058687,1019370000,4825 +BX,POINT (-73.91396042039646 40.83573444013358),9627,Free,LinkNYC - Citybridge,bx-04-146078,247 EAST 169 STREET,40.8357344401,-73.9139604204,1008058.54883,243769.601421,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020557,08/02/2018 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,16,10456,204,17902,2017902,2000000,2028300070,4826 +MN,POINT (-73.97340899986726 40.79213199991484),9628,Free,LinkNYC - Citybridge,mn-07-133634,2482 BROADWAY,40.7921319999,-73.9734089999,991612.984934,227873.096797,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-015044,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033612,1012400020,4827 +MN,POINT (-74.00560968952848 40.71772575023568),9629,Free,LinkNYC - Citybridge,mn-01-109587,249 CHURCH STREET,40.7177257502,-74.0056096895,982694.954214,200763.41414,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012192,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1001891,1001740010,4828 +QU,POINT (-73.92149601003057 40.77105460012054),9630,Free,LinkNYC - Citybridge,qu-01-146088,25-35 ASTORIA BOULEVARD,40.7710546001,-73.92149601,1005994.4483,220202.511088,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021014,06/28/2018 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,69,4006900,4018497,4008610000,4829 +MN,POINT (-74.00581491014701 40.71780496962395),9631,Free,LinkNYC - Citybridge,mn-01-122275,250 CHURCH STREET,40.7178049696,-74.0058149101,982638.067516,200792.279896,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013841,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1001971,1001770000,4830 +MN,POINT (-73.96825999998735 40.80068099960135),9632,Free,LinkNYC - Citybridge,mn-07-120277,251 WEST 105 STREET,40.8006809996,-73.96826,993037.602164,230988.269044,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001596,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,1056607,1018770000,4831 +MN,POINT (-73.98369799988994 40.74714399975226),9633,Free,LinkNYC - Citybridge,mn-05-121651,26 EAST 33 STREET,40.7471439998,-73.9836979999,988767.035573,211481.774265,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013753,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1017014,1008627500,4832 +MN,POINT (-73.95995409995707 40.77956091034291),9634,Free,LinkNYC - Citybridge,mn-08-121048,26 EAST 84 STREET,40.7795609103,-73.9599541,995340.70845,223294.436991,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010697,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,142,1014200,1046790,1014950060,4833 +MN,POINT (-74.00627425969306 40.72566600002057),9635,Free,LinkNYC - Citybridge,mn-02-138004,260 SPRING STREET,40.725666,-74.0062742597,982510.937849,203656.304023,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012250,01/16/2019 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10013,102,37,1003700,1009740,1005790030,4834 +BX,POINT (-73.91825808971791 40.82560474023869),9636,Free,LinkNYC - Citybridge,bx-04-119077,271 EAST 161 STREET,40.8256047402,-73.9182580897,1006872.75822,240077.841744,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013218,06/11/2018 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,17,10451,204,173,2017300,2001921,2024210000,4835 +MN,POINT (-73.9870521701141 40.73946432973188),9637,Free,LinkNYC - Citybridge,mn-05-134089,278 PARK AVENUE SOUTH,40.7394643297,-73.9870521701,987838.059741,208683.670609,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012809,09/21/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,1068310,1008507500,4836 +QU,POINT (-73.9203542704959 40.77074707982594),9638,Free,LinkNYC - Citybridge,qu-01-146090,28-11 ASTORIA BOULEVARD,40.7707470798,-73.9203542705,1006310.79511,220090.756719,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021013,06/28/2018 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,69,4006900,4431076,4008390010,4837 +MN,POINT (-73.93727923040417 40.829002480331695),9639,Free,LinkNYC - Citybridge,mn-10-145541,2926 FREDERICK DOUGLASS BOULEVARD,40.8290024803,-73.9372792304,1001607.61291,241311.421626,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011040,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,236,1023600,1000000,1020400060,4838 +BX,POINT (-73.92192322964277 40.810255199808964),9640,Free,LinkNYC - Citybridge,bx-01-146083,296 WILLIS AVENUE,40.8102551998,-73.9219232296,1005863.38491,234484.528128,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020563,06/11/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2127513,2022840010,4839 +MN,POINT (-74.00655620014196 40.720567749759375),9641,Free,LinkNYC - Citybridge,mn-01-122285,30 VARICK STREET,40.7205677498,-74.0065562001,982432.652245,201798.859904,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010808,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1002732,1002127500,4840 +QU,POINT (-73.91889467971633 40.770359889665094),9642,Free,LinkNYC - Citybridge,qu-01-146089,30-01 ASTORIA BOULEVARD,40.7703598897,-73.9188946797,1006715.2126,219950.061462,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021089,06/28/2018 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,69,4006900,4017392,4008380010,4841 +MN,POINT (-74.00381100031824 40.7530670003179),9643,Free,LinkNYC - Citybridge,mn-04-138822,314 11 AVENUE,40.7530670003,-74.0038110003,983194.123819,213639.316866,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010614,01/25/2019 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1088120,1007010060,4842 +MN,POINT (-74.0051260004987 40.7157119998334),9644,Free,LinkNYC - Citybridge,mn-01-123044,317 BROADWAY,40.7157119998,-74.0051260005,982828.993316,200029.735161,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003263,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,33,1003300,1001656,1001510030,4843 +QU,POINT (-73.86858880998534 40.757484629918046),9645,Free,LinkNYC - Citybridge,qu-03-125430,32-52 100 STREET,40.7574846299,-73.86858881,1020656.37107,215276.08787,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014430,02/28/2019 12:00:00 AM +0000,4,Queens,QN27,East Elmhurst,21,11369,403,363,4036300,4035112,4014290030,4844 +BK,POINT (-73.96652496994137 40.7147073402561),9646,Free,LinkNYC - Citybridge,bk-01-146085,33 SOUTH 2 STREET,40.7147073403,-73.9665249699,993529.936153,199665.438645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021303,07/27/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,551,3055100,3062886,3024030000,4845 +MN,POINT (-73.95894777950845 40.76411658006836),9647,Free,LinkNYC - Citybridge,mn-08-135072,343 EAST 66 STREET,40.7641165801,-73.9589477795,995622.045814,217667.681512,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012804,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,118,1011800,1044741,1014410020,4846 +MN,POINT (-73.96139742963994 40.760946340232245),9648,Free,LinkNYC - Citybridge,mn-08-138568,344 EAST 61 STREET,40.7609463402,-73.9613974296,994943.967117,216512.35049,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012297,06/15/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,110,1011000,1044211,1014350030,4847 +MN,POINT (-74.00119407011984 40.73188717027815),9649,Free,LinkNYC - Citybridge,mn-02-122259,347 6 AVENUE,40.7318871703,-74.0011940701,983919.065611,205922.809989,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010721,07/25/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,71,1007100,1076818,1005920030,4848 +BK,POINT (-73.95531648978266 40.707581000343396),9650,Free,LinkNYC - Citybridge,bk-01-146092,361 BROADWAY,40.7075810003,-73.9553164898,996638.471274,197070.483862,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021241,01/22/2019 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,527,3052700,3331238,3024630040,4849 +QU,POINT (-73.9128369996002 40.7690955201086),9651,Free,LinkNYC - Citybridge,qu-01-125165,37-02 ASTORIA BOULEVARD SOUTH,40.7690955201,-73.9128369996,1008393.57604,219491.02137,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013526,01/15/2019 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,6502,4006502,4010183,4006530040,4850 +MN,POINT (-73.98133261981364 40.7415361403426),9652,Free,LinkNYC - Citybridge,mn-06-134559,378 3 AVENUE,40.7415361403,-73.9813326198,989422.881703,209438.782944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000277,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,106,68,1006800,1018177,1008830040,4851 +BK,POINT (-73.96853380970082 40.71098810993278),9653,Free,LinkNYC - Citybridge,bk-01-146093,394 KENT AVENUE,40.7109881099,-73.9685338097,992973.533066,198310.203823,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021289,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,549,3054900,3063635,3024670000,4852 +MN,POINT (-73.96397800957429 40.756298359912236),9654,Free,LinkNYC - Citybridge,mn-06-138509,397 EAST 54 STREET,40.7562983599,-73.9639780096,994229.772351,214818.635045,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010650,01/23/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,10601,1010601,1085122,1013660000,4853 +MN,POINT (-74.0020223399512 40.72433792027737),9655,Free,LinkNYC - Citybridge,mn-02-133259,399 WEST BROADWAY,40.7243379203,-74.00202234,983689.448616,203172.387668,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014293,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10012,102,47,1004700,1079941,1004870020,4854 +MN,POINT (-73.96597024957073 40.75375106042678),9656,Free,LinkNYC - Citybridge,mn-06-137127,400 EAST 50 STREET,40.7537510604,-73.9659702496,993678.189465,213890.350484,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012790,01/25/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,8603,1008603,1040090,1013610050,4855 +MN,POINT (-73.96565022949105 40.75437122012931),9657,Free,LinkNYC - Citybridge,mn-06-121680,400 EAST 51 STREET,40.7543712201,-73.9656502295,993766.764747,214116.329363,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013759,06/07/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,8603,1008603,1040116,1013627500,4856 +BX,POINT (-73.92220947004084 40.80890966006834),9658,Free,LinkNYC - Citybridge,bx-01-102011,417 EAST 138 STREET,40.8089096601,-73.92220947,1005784.58258,233994.229896,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010208,07/16/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2092092,2022830000,4857 +BX,POINT (-73.89639316041404 40.846476759773665),9659,Free,LinkNYC - Citybridge,bx-06-146096,4201 3 AVENUE,40.8464767598,-73.8963931604,1012915.06372,247688.69004,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020581,07/26/2018 12:00:00 AM +0000,2,Bronx,BX01,Claremont-Bathgate,15,10457,206,395,2039500,2009606,2029240020,4858 +BK,POINT (-74.00828533995833 40.6503901702933),9660,Free,LinkNYC - Citybridge,bk-07-125840,4201 4 AVENUE,40.6503901703,-74.00828534,981950.924534,176231.166616,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011802,06/25/2018 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,82,3008200,3010833,3007240000,4859 +MN,POINT (-74.0067706497036 40.723013379786146),9661,Free,LinkNYC - Citybridge,mn-02-133383,431 CANAL STREET,40.7230133798,-74.0067706497,982373.276707,202689.882728,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012242,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,37,1003700,1002934,1002260000,4860 +MN,POINT (-73.98014812039374 40.73913723955012),9662,Free,LinkNYC - Citybridge,mn-06-121446,435 2 AVENUE,40.7391372396,-73.9801481204,989751.314117,208564.859495,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013712,01/16/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019793,1009050030,4861 +MN,POINT (-73.97976183038868 40.73925317027131),9663,Free,LinkNYC - Citybridge,mn-06-121445,442 2 AVENUE,40.7392531703,-73.9797618304,989858.352288,208607.121221,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010761,01/16/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1078833,1009310000,4862 +MN,POINT (-73.97946571998617 40.73964666027421),9664,Free,LinkNYC - Citybridge,mn-06-134831,444 2 AVENUE,40.7396466603,-73.97946572,989940.376075,208750.501184,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011075,01/25/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1078833,1009310000,4863 +MN,POINT (-73.98900800002335 40.73057799978977),9665,Free,LinkNYC - Citybridge,mn-03-133491,45 3 AVENUE,40.7305779998,-73.989008,987296.472898,205446.02715,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008223,02/04/2019 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006764,1004650000,4864 +MN,POINT (-73.9905922004057 40.75122432017403),9666,Free,LinkNYC - Citybridge,mn-05-135179,450 7 AVENUE,40.7512243202,-73.9905922004,986856.598121,212968.085925,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013275,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,1014408,1007840040,4865 +MN,POINT (-73.98272282970396 40.744983610068154),9667,Free,LinkNYC - Citybridge,mn-05-135659,455 PARK AVENUE SOUTH,40.7449836101,-73.9827228297,989037.395597,210694.726954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012677,02/04/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018348,1008860090,4866 +MN,POINT (-73.97969299989722 40.73976237974286),9668,Free,LinkNYC - Citybridge,mn-06-121447,459 2 AVENUE,40.7397623797,-73.9796929999,989877.383418,208792.646769,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013713,01/16/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019834,1009060030,4867 +QU,POINT (-73.952966259931 40.74549641037196),9669,Free,LinkNYC - Citybridge,qu-02-125015,46-45 VERNON BOULEVARD,40.7454964104,-73.9529662599,997282.653713,210884.583202,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011778,06/28/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4311868,4000470000,4868 +MN,POINT (-73.97932655044535 40.73985154040969),9670,Free,LinkNYC - Citybridge,mn-06-121448,470 2 AVENUE,40.7398515404,-73.9793265504,989978.924554,208825.154578,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013714,01/16/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1082730,1009340000,4869 +MN,POINT (-73.97907885025839 40.740611559811605),9671,Free,LinkNYC - Citybridge,mn-06-134611,481 2 AVENUE,40.7406115598,-73.9790788503,990047.499876,209102.070035,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012575,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019879,1009080030,4870 +BK,POINT (-73.94405999987589 40.65831000005428),9672,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/W/BROOKLYN AV,40.6583100001,-73.9440599999,999770.788172,179121.42724,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,0,3048110001,867 +BK,POINT (-73.94723000040361 40.65800000025769),9673,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/N/O/BROOKLYN AV,40.6580000003,-73.9472300004,998891.326348,179007.939934,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,0,0,868 +BK,POINT (-73.94723000040361 40.65800000025769),9674,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/N/O/BROOKLYN AV,40.6580000003,-73.9472300004,998891.326348,179007.939934,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,0,0,869 +BK,POINT (-73.9471600002058 40.65743000036481),9675,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/S/O BROOKLYN AV,40.6574300004,-73.9471600002,998910.873553,178800.284838,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,3107446,3048200001,870 +BK,POINT (-73.9471600002058 40.65743000036481),9676,Limited Free,ALTICEUSA,Wingate Park,HAWTHRONE ST 1 P/S/O/BROOKLYN AV,40.6574300004,-73.9471600002,998910.873553,178800.284838,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11203,309,810,3081000,3107446,3048200001,871 +BX,POINT (-73.82447200011882 40.846313999851525),9677,Limited Free,ALTICEUSA,Pelham Bay Park,MIDDLETOWN RD 1/P/W/O DWIGHT PL,40.8463139999,-73.8244720001,1032813.69945,247661.094622,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,872 +BX,POINT (-73.82222999996205 40.84759600008267),9678,Limited Free,ALTICEUSA,Pelham Bay Park,MIDDLETOWN RD 1/P/W/O KENNELLWORTH PL,40.8475960001,-73.82223,1033433.04959,248129.425707,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,13,10465,228,276,2027600,0,0,875 +BX,POINT (-73.82107100039131 40.84815899973128),9679,Limited Free,ALTICEUSA,Pelham Bay Park,C/O MIDDLETOWN RD /OHM AV,40.8481589997,-73.8210710004,1033753.28681,248335.20023,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,876 +BX,POINT (-73.82074999971974 40.84832200044426),9680,Limited Free,ALTICEUSA,Pelham Bay Park,MIDDLETOWN RD 1/P/W/O STADIUM AV,40.8483220004,-73.8207499997,1033841.97462,248394.769008,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,877 +BX,POINT (-73.82104999950434 40.84923299957082),9681,Limited Free,ALTICEUSA,Pelham Bay Park,IN PARK POLE 4/P/N/O STADIUM AV,40.8492329996,-73.8210499995,1033758.29762,248726.510143,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,13,10465,228,276,2027600,0,2043350001,878 +BX,POINT (-73.8210550002585 40.84919599973941),9682,Limited Free,ALTICEUSA,Pelham Bay Park,IN PARK POLE 4/P/N/O STADIUM AV,40.8491959997,-73.8210550003,1033756.94166,248713.026902,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,13,10465,228,276,2027600,0,2043350001,879 +BX,POINT (-73.82175199977367 40.85020799994793),9683,Limited Free,ALTICEUSA,Pelham Bay Park,IN PARK POLE 6/P/N/O STADIUM AV,40.8502079999,-73.8217519998,1033563.35969,249081.343094,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,13,10465,228,276,2027600,0,2043350001,880 +BX,POINT (-73.8217770004645 40.850231999806745),9684,Limited Free,ALTICEUSA,Pelham Bay Park,IN PARK POLE 6/P/N/O STADIUM AV,40.8502319998,-73.8217770005,1033556.42533,249090.073064,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,13,10465,228,276,2027600,0,2043350001,881 +BX,POINT (-73.89511499956797 40.86445800040418),9686,Limited Free,ALTICEUSA,Poe Park,left side of bandshell,40.8644580004,-73.8951149996,1013260.8501,254240.361648,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,39901,2039901,0,2031550001,883 +BX,POINT (-73.89462600057563 40.86478100007293),9687,Limited Free,ALTICEUSA,Poe Park,Playground area,40.8647810001,-73.8946260006,1013395.96401,254358.205244,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,39901,2039901,0,2031550001,884 +BX,POINT (-73.89422700053463 40.86516700012434),9688,Limited Free,ALTICEUSA,Poe Park,North area facing Poe cottage,40.8651670001,-73.8942270005,1013506.15571,254498.973007,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,39901,2039901,0,2031550001,885 +BK,POINT (-73.96848899950047 40.65072100043444),9689,Limited Free,ALTICEUSA,Prospect Park,SNACK BAR NORTH WEST CORNER,40.6507210004,-73.9684889995,992993.854548,176353.161123,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,40,11226,314,177,3017700,3411682,3050510001,886 +BK,POINT (-73.96845999945837 40.650680000027855),9690,Limited Free,ALTICEUSA,Prospect Park,SNACK BAR SOUTH WEST CORNER,40.65068,-73.9684599995,993001.907025,176338.226442,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,40,11226,314,177,3017700,3411682,3050510001,887 +BK,POINT (-73.96842900055866 40.65073800015899),9691,Limited Free,ALTICEUSA,Prospect Park,SNACK BAR NORTH EASTCORNER,40.6507380002,-73.9684290006,993010.501168,176359.360586,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,40,11226,314,177,3017700,3411682,3050510001,888 +BK,POINT (-73.96584300008548 40.650699999608484),9692,Limited Free,ALTICEUSA,Prospect Park,SNACK BAR SOUTH EASTCORNER,40.6506999996,-73.9658430001,993728.084706,176345.785154,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,40,11226,314,177,3017700,0,3050510001,889 +BK,POINT (-73.96516799993113 40.66046900019194),9693,Limited Free,ALTICEUSA,Prospect Park,BEHIND BOAT HOUSE BTWN M-118 & M-119,40.6604690002,-73.9651679999,993913.972458,179904.976854,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,890 +BK,POINT (-73.96512099974856 40.66084199969202),9694,Limited Free,ALTICEUSA,Prospect Park,BEHIND BOAT HOUSE BTWN M-205 & M-206,40.6608419997,-73.9651209997,993926.958324,180040.876189,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,891 +BK,POINT (-73.96525200030682 40.66119700041175),9695,Limited Free,ALTICEUSA,Prospect Park,"NORTH BOAT HOUSE, ON THE LAWN ACROSS FROM M-200",40.6611970004,-73.9652520003,993890.561744,180170.198437,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,892 +BK,POINT (-73.96399099973121 40.6574519996605),9696,Limited Free,ALTICEUSA,Prospect Park,Skate Rental Area,40.6574519997,-73.9639909997,994240.977381,178805.93148,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,893 +BK,POINT (-73.96399099973121 40.6574519996605),9697,Limited Free,ALTICEUSA,Prospect Park,Skate Rental Area,40.6574519997,-73.9639909997,994240.977381,178805.93148,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,894 +BK,POINT (-73.96399099973121 40.6574519996605),9698,Limited Free,ALTICEUSA,Prospect Park,Skate Rental Area,40.6574519997,-73.9639909997,994240.977381,178805.93148,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,895 +BK,POINT (-73.96369700007209 40.657001000446336),9699,Limited Free,ALTICEUSA,Prospect Park,SKATEING RINK PARTY ROOM,40.6570010004,-73.9636970001,994322.617966,178641.653593,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,896 +BK,POINT (-73.96369700007209 40.657001000446336),9700,Limited Free,ALTICEUSA,Prospect Park,SKATEING RINK PARTY ROOM,40.6570010004,-73.9636970001,994322.617966,178641.653593,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,897 +BK,POINT (-73.96369700007209 40.657001000446336),9701,Limited Free,ALTICEUSA,Prospect Park,SKATEING RINK PARTY ROOM,40.6570010004,-73.9636970001,994322.617966,178641.653593,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,898 +BK,POINT (-73.96369700007209 40.657001000446336),9702,Limited Free,ALTICEUSA,Prospect Park,SKATING RINK CAFÉ,40.6570010004,-73.9636970001,994322.617966,178641.653593,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,3391508,3011170001,899 +BX,POINT (-73.85979999998351 40.84459000042316),9703,Limited Free,ALTICEUSA,Ranaqua Park,BIRCHAll AV INDOOR LOBBY,40.8445900004,-73.8598,1023040.44242,247015.362646,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10462,211,238,2023800,0,2040420350,900 +BX,POINT (-73.85979999998351 40.84459000042316),9704,Limited Free,ALTICEUSA,Ranaqua Park,BIRCHAll AV 6/P/E/O SAGAMORE ST,40.8445900004,-73.8598,1023040.44242,247015.362646,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10462,211,238,2023800,0,2040420350,901 +BK,POINT (-73.91893299965967 40.685042999881595),9705,Limited Free,ALTICEUSA,SARATOGA PARK,ON ROOF OF PARKS BLDG RIGHT SIDE,40.6850429999,-73.9189329997,1006733.3648,188866.467789,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,41,11233,303,377,3037700,0,3014940001,902 +BK,POINT (-73.91907000002335 40.68503200018041),9706,Limited Free,ALTICEUSA,SARATOGA PARK,ON ROOF OF PARKS BLDG LEFT SIDE,40.6850320002,-73.91907,1006695.37242,188862.425147,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,41,11233,303,377,3037700,3040059,3014940001,903 +BX,POINT (-73.83595100023456 40.887637000177655),9707,Limited Free,ALTICEUSA,Seton Falls Park,SETON AV 5/P/S/O E 233RD ST,40.8876370002,-73.8359510002,1029609.58873,262710.496938,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10466,212,484,2048400,0,0,904 +BX,POINT (-73.84013299984507 40.88878299990308),9708,Limited Free,ALTICEUSA,Seton Falls Park,C/O E 233RD ST & WILDER AV,40.8887829999,-73.8401329998,1028452.5041,263125.892433,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX62,Woodlawn-Wakefield,12,10466,212,426,2042600,0,0,905 +BX,POINT (-73.83852100036339 40.88528400026051),9709,Limited Free,ALTICEUSA,Seton Falls Park,C/O EDEN TERR/CRAWFORD AV,40.8852840003,-73.8385210004,1028900.56423,261851.885138,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10466,212,484,2048400,0,0,906 +BX,POINT (-73.8349700005795 40.886621999776175),9710,Limited Free,ALTICEUSA,Seton Falls Park,PRATT AV 2/P/S/O SETON AV,40.8866219998,-73.8349700006,1029881.53176,262341.201417,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10466,212,484,2048400,0,0,907 +BX,POINT (-73.89903700003245 40.86472999974724),9711,Limited Free,ALTICEUSA,St. James Park,ON MAST ON ROOF,40.8647299997,-73.899037,1012175.92379,254338.186911,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,0,2031760001,908 +BX,POINT (-73.89903700003245 40.86472999974724),9712,Limited Free,ALTICEUSA,St. James Park,W WING CORRIDOR DROP CEILING,40.8647299997,-73.899037,1012175.92379,254338.186911,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,0,2031760001,910 +BK,POINT (-73.93469799983944 40.67401299956333),9713,Limited Free,ALTICEUSA,St. John's Recreation Center,ROOF MOUNTED BACK LEFT SIDE,40.6740129996,-73.9346979998,1002364.04906,184844.269141,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,0,3013530001,911 +BK,POINT (-73.93505300025878 40.67403999984268),9714,Limited Free,ALTICEUSA,St. John's Recreation Center,ROOF MOUNTED BACK RIGHT SIDE,40.6740399998,-73.9350530003,1002265.56862,184854.032901,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,0,3013530001,912 +BK,POINT (-73.93516600015272 40.673801000189606),9715,Limited Free,ALTICEUSA,St. John's Recreation Center,ROOF MOUNTED RIGHT SIDE,40.6738010002,-73.9351660002,1002234.28817,184766.935306,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,0,3013530001,913 +BK,POINT (-73.93462999979924 40.67342999977493),9716,Limited Free,ALTICEUSA,St. John's Recreation Center,ROOF MOUNTED LEFT SIDE FRONT,40.6734299998,-73.9346299998,1002383.07002,184631.879802,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,0,0,914 +BK,POINT (-73.93471700040924 40.67386600033056),9717,Limited Free,ALTICEUSA,St. John's Recreation Center,ROOF MOUNTED LEFT SIDE,40.6738660003,-73.9347170004,1002358.81843,184790.709209,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,915 +BK,POINT (-73.9347849997822 40.67380500016918),9718,Limited Free,ALTICEUSA,St. John's Recreation Center,GYM WALL,40.6738050002,-73.9347849998,1002339.97267,184768.471064,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,916 +BK,POINT (-73.93510900030525 40.673781000029386),9719,Limited Free,ALTICEUSA,St. John's Recreation Center,ACTIVITY ROOM,40.673781,-73.9351090003,1002250.10474,184759.660386,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,917 +BK,POINT (-73.93501399979775 40.67375499986188),9720,Limited Free,ALTICEUSA,St. John's Recreation Center,MUSIC ROOM,40.6737549999,-73.9350139998,1002276.46394,184750.207321,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,918 +BK,POINT (-73.93486700048453 40.67372699986256),9721,Limited Free,ALTICEUSA,St. John's Recreation Center,POOL AREA SIDE WALL,40.6737269999,-73.9348670005,1002317.24765,184740.03641,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,920 +BK,POINT (-73.93493499967282 40.673694999805605),9722,Limited Free,ALTICEUSA,St. John's Recreation Center,LOBBY,40.6736949998,-73.9349349997,1002298.39401,184728.363861,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,0,3013530001,921 +BX,POINT (-73.9141379998959 40.81154399995916),9723,Limited Free,ALTICEUSA,St. Mary's Park,Lobby Drop ceiling,40.811544,-73.9141379999,1008018.04858,234956.100347,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,37,2003700,2003692,2025570001,922 +MN,POINT (-73.98146600018569 40.71978900037835),9724,Limited Free,SPECTRUM,Hamilton Fish Recreation Center,South East area,40.7197890004,-73.9814660002,989387.597324,201515.613095,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,2,10002,103,2201,1002201,0,1003400001,923 +MN,POINT (-73.98143799953462 40.72000500024134),9725,Limited Free,SPECTRUM,Hamilton Fish Recreation Center,CRC Center,40.7200050002,-73.9814379995,989395.342388,201594.310116,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,2,10002,103,2201,1002201,1081934,1003400001,924 +MN,POINT (-73.93935699958523 40.812680999589254),9726,Limited Free,SPECTRUM,Hansborough Recreation Center,3rd Floor Computer Resource Center,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,925 +MN,POINT (-73.93935699958523 40.812680999589254),9727,Limited Free,SPECTRUM,Hansborough Recreation Center,3rd Floor Basketball Court,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,926 +MN,POINT (-73.93935699958523 40.812680999589254),9728,Limited Free,SPECTRUM,Hansborough Recreation Center,5th Floor Roof Top,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,928 +BK,POINT (-73.97319309983241 40.69344179970251),9753,Free,NYCHA,0,331 Myrtle Ave,40.6934417997,-73.9731930998,991683.770554,191917.129995,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335255,3020410001,665 +MN,POINT (-73.93935699958523 40.812680999589254),9729,Limited Free,SPECTRUM,Hansborough Recreation Center,4th Floor Fitness,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,929 +MN,POINT (-73.93935699958523 40.812680999589254),9730,Limited Free,SPECTRUM,Hansborough Recreation Center,2nd Floor Dance Rm,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,930 +MN,POINT (-73.93935699958523 40.812680999589254),9731,Limited Free,SPECTRUM,Hansborough Recreation Center,2nd Floor Game Rm,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,931 +MN,POINT (-73.93935699958523 40.812680999589254),9732,Limited Free,SPECTRUM,Hansborough Recreation Center,Lobby,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,932 +QU,POINT (-73.87098100013841 40.733142000064255),9733,Limited Free,SPECTRUM,Hoffman Park,Park Area,40.7331420001,-73.8709810001,1020006.69783,206406.313943,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,0,0,933 +QU,POINT (-73.87112799945818 40.73318599964854),9734,Limited Free,SPECTRUM,Hoffman Park,Park Area,40.7331859996,-73.8711279995,1019965.93446,206422.284384,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,0,0,934 +QU,POINT (-73.96126499943932 40.74209400039924),9735,Limited Free,SPECTRUM,Hunter's Point South Park,Outdoor - Café and Pier,40.7420940004,-73.9612649994,994983.691119,209643.851103,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,1,4000100,0,4000060001,935 +QU,POINT (-73.9612560002637 40.74199399966357),9736,Limited Free,SPECTRUM,Hunter's Point South Park,Outdoor - Café and Park,40.7419939997,-73.9612560003,994986.200957,209607.418761,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,1,4000100,0,4000060001,936 +BK,POINT (-73.9795471995316 40.695008999706076),9737,Free,NYCHA,0,64 St Edwards St,40.6950089997,-73.9795471995,989921.59396,192487.631807,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335233,3020340001,649 +BK,POINT (-73.97990920046949 40.694623000165095),9738,Free,NYCHA,0,78 Monument Walk,40.6946230002,-73.9799092005,989821.242783,192346.977561,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335229,3020340001,650 +BK,POINT (-73.97981320007278 40.694137000046034),9739,Free,NYCHA,0,80 Monument Walk,40.694137,-73.9798132001,989847.904803,192169.919516,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11205,302,2901,3002901,3335229,3020340001,651 +BK,POINT (-73.97941620047362 40.694540000137735),9740,Free,NYCHA,0,82 St Edwards St,40.6945400001,-73.9794162005,989957.960357,192316.769944,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3345036,3020340001,652 +BK,POINT (-73.97518020035544 40.694626000103135),9741,Free,NYCHA,0,120 N Portland Ave,40.6946260001,-73.9751802004,991132.609254,192348.406692,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,0,3020390101,653 +BK,POINT (-73.9754162000816 40.69489200007969),9742,Free,NYCHA,0,102 Cumberland Walk,40.6948920001,-73.9754162001,991067.138585,192445.299871,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335262,3020410001,654 +BK,POINT (-73.97502420032028 40.69486799986128),9743,Free,NYCHA,0,102 Cumberland Walk,40.6948679999,-73.9750242003,991175.84342,192436.586633,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335262,3020410001,655 +BK,POINT (-73.97505419953654 40.69439399987538),9744,Free,NYCHA,0,138 Cumberland Walk,40.6943939999,-73.9750541995,991167.573751,192263.892097,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335253,3020410001,656 +BK,POINT (-73.97533620033336 40.694557000333475),9745,Free,NYCHA,0,120 N Portland Ave,40.6945570003,-73.9753362003,991089.357044,192323.255823,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,0,3020390101,657 +BK,POINT (-73.97392319996086 40.69339199978978),9746,Free,NYCHA,0,132 Carlton Ave,40.6933919998,-73.9739232,991481.313281,191898.925307,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335252,3020410001,658 +BK,POINT (-73.97461420039302 40.694381999784),9747,Free,NYCHA,0,138 Cumberland Walk,40.6943819998,-73.9746142004,991289.588599,192259.555163,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,18501,3018501,3335253,3020410001,659 +BK,POINT (-73.97735119984121 40.69372399983692),9748,Free,NYCHA,0,277 Myrtle Ave,40.6937239998,-73.9773511998,990530.669185,192019.618307,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,0,3020400001,660 +BK,POINT (-73.97779619951913 40.69374000041455),9749,Free,NYCHA,0,152 N Elliott Walk,40.6937400004,-73.9777961995,990407.266217,192025.416196,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335247,3020400001,661 +BK,POINT (-73.97724600010535 40.69367999983971),9750,Free,NYCHA,0,160 N Elliott Walk,40.6936799998,-73.9772460001,990559.845964,192003.595373,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3345021,3020400001,662 +BK,POINT (-73.97698119986295 40.69350900012468),9751,Free,NYCHA,0,293 Myrtle Ave,40.6935090001,-73.9769811999,990633.293324,191941.31433,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335246,3020400001,663 +BK,POINT (-73.97663520029398 40.69349300032728),9752,Free,NYCHA,0,297 Myrtle Ave,40.6934930003,-73.9766352003,990729.243263,191935.510536,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335246,3020400001,664 +MN,POINT (-73.97893461957867 40.7412250301351),9758,Free,LinkNYC - Citybridge,mn-06-136617,501 2 AVENUE,40.7412250301,-73.9789346196,990087.414166,209325.58632,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012676,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019898,1009090030,4875 +MN,POINT (-73.98538074049341 40.742322060209865),9759,Free,LinkNYC - Citybridge,mn-05-138316,51 EAST 26 STREET,40.7423220602,-73.9853807405,988301.067017,209724.905403,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010812,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,1016880,1008560020,4876 +QU,POINT (-73.90745354009285 40.75313916986003),9760,Free,LinkNYC - Citybridge,qu-02-125075,51-30 NORTHERN BOULEVARD,40.7531391699,-73.9074535401,1009890.90015,213679.132403,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011268,06/20/2018 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,255,4025500,4437089,4011920040,4877 +MN,POINT (-73.97327606968643 40.75508839967295),9761,Free,LinkNYC - Citybridge,mn-06-136697,511 LEXINGTON AVENUE,40.7550883997,-73.9732760697,991653.910377,214376.884616,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000679,01/31/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036219,1013020050,4878 +MN,POINT (-73.97769449042471 40.74206862037709),9762,Free,LinkNYC - Citybridge,mn-06-134834,540 2 AVENUE,40.7420686204,-73.9776944904,990430.987298,209633.01812,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012622,06/13/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1020632,1009350060,4879 +MN,POINT (-73.9966041003614 40.737886450432406),9763,Free,LinkNYC - Citybridge,mn-04-122426,545 6 AVENUE,40.7378864504,-73.9966041004,985191.082752,208108.552337,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013880,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014529,1007900040,4880 +BX,POINT (-73.91765739994663 40.80681954043488),9764,Free,LinkNYC - Citybridge,bx-01-119011,548 EAST 138 STREET,40.8068195404,-73.9176573999,1007045.43766,233233.877414,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013019,07/26/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,25,2002500,2000047,2022650050,4881 +MN,POINT (-74.00523225950741 40.72780340996207),9765,Free,LinkNYC - Citybridge,mn-02-123590,56 KING STREET,40.72780341,-74.0052322595,982799.799805,204435.009815,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010722,02/13/2019 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10014,102,37,1003700,1008117,1005190070,4882 +MN,POINT (-73.99820282977602 40.76065999015572),9766,Free,LinkNYC - Citybridge,mn-04-122406,560 WEST 42 STREET,40.7606599902,-73.9982028298,984747.867431,216405.672553,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010846,01/18/2019 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10036,104,117,1011700,1026906,1010700000,4883 +MN,POINT (-73.97862940051556 40.777241209876166),9767,Free,LinkNYC - Citybridge,mn-07-144086,58 WEST 72 STREET,40.7772412099,-73.9786294005,990168.791956,222447.478711,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012369,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1028626,1011240060,4884 +MN,POINT (-73.9293895998245 40.85487571003737),9768,Free,LinkNYC - Citybridge,mn-12-131047,599 WEST 190 STREET,40.85487571,-73.9293895998,1003783.42385,250739.667862,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014398,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,277,1027700,1063863,1021610000,4885 +MN,POINT (-73.96678806033114 40.8051138099117),9769,Free,LinkNYC - Citybridge,mn-09-134916,601 WEST 111 STREET,40.8051138099,-73.9667880603,993444.514079,232603.448557,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001608,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1057327,1018940050,4886 +BX,POINT (-73.90991661025416 40.816188210225704),9770,Free,LinkNYC - Citybridge,bx-01-142736,613 WESTCHESTER AVENUE,40.8161882102,-73.9099166103,1009184.8599,236649.324979,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014393,06/26/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,75,2007500,2115751,2026240090,4887 +QU,POINT (-73.90009406027114 40.7539103901619),9771,Free,LinkNYC - Citybridge,qu-02-138662,62-10 NORTHERN BOULEVARD,40.7539103902,-73.9000940603,1011929.59456,213962.352637,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001359,07/27/2018 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,293,4029300,4027108,4011850000,4888 +MN,POINT (-74.00567121018591 40.738277779949826),9772,Free,LinkNYC - Citybridge,mn-02-123585,623 HUDSON STREET,40.7382777799,-74.0056712102,982678.385021,208251.158679,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010844,01/17/2019 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,79,1007900,1011645,1006260010,4889 +MN,POINT (-73.97002379050367 40.78962177955462),9773,Free,LinkNYC - Citybridge,mn-07-133679,638 COLUMBUS AVENUE,40.7896217796,-73.9700237905,992550.654319,226958.839767,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012545,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,177,1017700,1083226,1012210030,4890 +MN,POINT (-73.99336768987737 40.76233628962946),9774,Free,LinkNYC - Citybridge,mn-04-135797,656 10 AVENUE,40.7623362896,-73.9933676899,986087.292901,217016.46792,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012685,01/25/2019 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,127,1012700,1081664,1010560000,4891 +MN,POINT (-73.99359260052545 40.74150204991872),9775,Free,LinkNYC - Citybridge,mn-05-108001,66 WEST 21 STREET,40.7415020499,-73.9935926005,986025.543025,209425.876474,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014212,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,54,1005400,1015514,1008220080,4892 +BX,POINT (-73.90824221004159 40.81599770978823),9776,Free,LinkNYC - Citybridge,bx-01-123210,660 WESTCHESTER AVENUE,40.8159977098,-73.90824221,1009648.40228,236580.39992,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013042,06/26/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,8,10455,201,73,2007300,2004431,2026230200,4893 +MN,POINT (-73.96915524957807 40.790444480090095),9777,Free,LinkNYC - Citybridge,mn-07-135057,661 COLUMBUS AVENUE,40.7904444801,-73.9691552496,992791.054756,227258.661346,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012769,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,177,1017700,1031627,1012060000,4894 +MN,POINT (-74.00677203975891 40.715027419801174),9778,Free,LinkNYC - Citybridge,mn-01-109612,67 READE STREET,40.7150274198,-74.0067720398,982372.666472,199780.352786,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010606,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,1001627,1001490010,4895 +MN,POINT (-73.9866335805469 40.75663815041846),9779,Free,LinkNYC - Citybridge,mn-05-122095,699 7 AVENUE,40.7566381504,-73.9866335805,987953.103146,214940.66236,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007084,12/30/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024686,1010140030,4896 +MN,POINT (-74.00651169989682 40.71420865026953),9780,Free,LinkNYC - Citybridge,mn-01-123041,70 CHAMBERS STREET,40.7142086503,-74.0065116999,982444.815278,199482.044655,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003268,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,1079153,1001357500,4897 +BX,POINT (-73.91293262997092 40.80470552037752),9781,Free,LinkNYC - Citybridge,bx-01-119017,710 EAST 138 STREET,40.8047055204,-73.91293263,1008354.19161,232464.930461,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013018,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,2702,2002702,2003792,2025660020,4898 +MN,POINT (-73.9681766196515 40.79179421013735),9782,Free,LinkNYC - Citybridge,mn-07-134709,715 COLUMBUS AVENUE,40.7917942101,-73.9681766197,993061.86327,227750.511412,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011183,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,181,1018100,1079519,1012080000,4899 +BX,POINT (-73.90899140943529 40.81312831976454),9783,Free,LinkNYC - Citybridge,bx-01-119027,718 EAST 149 STREET,40.8131283198,-73.9089914094,1009442.11135,235534.762576,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011500,06/25/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10455,201,35,2003500,2003924,2025790020,4900 +BK,POINT (-73.95682638020659 40.67403886974735),9784,Free,LinkNYC - Citybridge,bk-08-146084,720 FRANKLIN AVENUE,40.6740388697,-73.9568263802,996225.878267,184849.893802,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018095,06/18/2018 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11238,308,217,3021700,3029279,3011680050,4901 +QU,POINT (-73.8936389999604 40.75450699983554),9785,Free,LinkNYC - Citybridge,qu-03-134030,73-02 NORTHERN BOULEVARD,40.7545069998,-73.893639,1013717.7465,214181.822342,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001362,06/20/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,289,4028900,4028633,4012460000,4902 +MN,POINT (-73.9993813799013 40.73915580008587),9786,Free,LinkNYC - Citybridge,mn-04-134450,74 7 AVENUE,40.7391558001,-73.9993813799,984421.430748,208570.998918,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011006,02/14/2019 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1013735,1007640040,4903 +MN,POINT (-73.96700524005898 40.79340208961025),9787,Free,LinkNYC - Citybridge,mn-07-120527,741 COLUMBUS AVENUE,40.7934020896,-73.9670052401,993385.99648,228336.437406,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010786,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,181,1018100,1055254,1018327500,4904 +MN,POINT (-73.96964431020976 40.78954119978284),9788,Free,LinkNYC - Citybridge,mn-07-121120,82 WEST 91 STREET,40.7895411998,-73.9696443102,992655.745644,226929.517975,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010682,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,177,1017700,1031595,1012040000,4905 +BK,POINT (-73.93893234974331 40.698955759830866),9789,Free,LinkNYC - Citybridge,bk-03-108944,846 BROADWAY,40.6989557598,-73.9389323497,1001183.15247,193930.793619,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000010,09/06/2018 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,36,11206,303,28501,3028501,3251257,3015790030,4906 +BK,POINT (-73.93844701004721 40.69887623008584),9790,Free,LinkNYC - Citybridge,bk-04-103731,849 BROADWAY,40.6988762301,-73.93844701,1001317.7503,193901.912771,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000008,07/27/2018 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,34,11206,304,389,3038900,3071735,3031340000,4907 +QU,POINT (-73.8817780000437 40.75583499980066),9791,Free,LinkNYC - Citybridge,qu-03-125399,85-10 NORTHERN BOULEVARD,40.7558349998,-73.881778,1017003.22976,214669.867954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001473,06/28/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,281,4028100,4035201,4014330000,4908 +MN,POINT (-73.97046999999834 40.75657699982609),9792,Free,LinkNYC - Citybridge,mn-06-139576,850 3 AVENUE,40.7565769998,-73.97047,992431.153901,214919.47966,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000341,02/04/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036462,1013060030,4909 +MN,POINT (-74.00436341981914 40.74212484970089),9793,Free,LinkNYC - Citybridge,mn-04-123521,86 9 AVENUE,40.7421248497,-74.0043634198,983040.871829,209652.747411,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008214,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1013043,1007390000,4910 +BX,POINT (-73.91402994052774 40.82364628988357),9794,Free,LinkNYC - Citybridge,bx-03-118929,860 MELROSE AVENUE,40.8236462899,-73.9140299405,1008043.63383,239365.427487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011397,07/11/2018 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,17,10451,203,141,2014100,2001490,2023820000,4911 +MN,POINT (-73.97011600014051 40.75247599959473),9795,Free,LinkNYC - Citybridge,mn-06-121540,866 2 AVENUE,40.7524759996,-73.9701160001,992529.737694,213425.385535,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013727,02/01/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1038895,1013390000,4912 +QU,POINT (-73.82471899977413 40.70103999988126),9796,Free,LinkNYC - Citybridge,qu-09-138287,87-06 126 STREET,40.7010399999,-73.8247189998,1032851.27024,194732.867146,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001117,06/29/2018 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,14201,4014201,4196127,4093340010,4913 +MN,POINT (-73.94133300019986 40.846889000383634),9797,Limited Free,SPECTRUM,J. Hood Wright Park,NW Field by Rec Center,40.8468890004,-73.9413330002,1000481.39108,247827.36824,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,0,1021390404,937 +MN,POINT (-73.9417219999174 40.84647200033983),9798,Limited Free,SPECTRUM,J. Hood Wright Park,SW Field by Rec Center,40.8464720003,-73.9417219999,1000373.86767,247675.36756,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,0,1021390404,938 +MN,POINT (-73.94134700048326 40.846200000231015),9799,Limited Free,SPECTRUM,J. Hood Wright Park,East Entrance and Playgrround,40.8462000002,-73.9413470005,1000477.68571,247576.336918,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,0,1021390404,939 +MN,POINT (-73.93998099954662 40.84644400010106),9800,Limited Free,SPECTRUM,J. Hood Wright Park,BB Court and East Entrance,40.8464440001,-73.9399809995,1000855.55995,247665.491267,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,0,0,940 +MN,POINT (-73.94088300047385 40.84668599956985),9801,Limited Free,SPECTRUM,J. Hood Wright Recreation Center,Recreation Rm,40.8466859996,-73.9408830005,1000605.94234,247753.491091,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,1063445,1021390404,941 +MN,POINT (-73.93540000026977 40.79309999957824),9802,Free,AT&T,Thomas Jefferson Park,Entire Park,40.7930999996,-73.9354000003,1002137.32543,228231.250608,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,0,1017050001,942 +QU,POINT (-73.92520000026094 40.777000000256685),9803,Free,AT&T,Astoria Park,"Track, Ballfields",40.7770000003,-73.9252000003,1004966.64819,222367.720997,Outdoor,,Queens,attwifi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,22,11105,401,99,4009900,0,4008980001,943 +QU,POINT (-73.84660000005084 40.72209999974646),9804,Free,AT&T,Macdonald Park,Entire Park,40.7220999997,-73.8466000001,1026770.75714,202394.268818,Outdoor,,Queens,attwifi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,711,4071100,0,0,944 +SI,POINT (-74.10629999967809 40.61730000014331),9805,Free,AT&T,Clove Lakes Park,Area near Ballfields,40.6173000001,-74.1062999997,954738.49241,164193.325207,Outdoor,,Staten Island,attwifi,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,0,5003190001,945 +MN,POINT (-73.94086000015012 40.84656199988076),9806,Limited Free,SPECTRUM,J. Hood Wright Recreation Center,Gym and Multipurpose Rm,40.8465619999,-73.9408600002,1000612.33636,247708.317625,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,1063445,1021390404,946 +MN,POINT (-73.94070600021365 40.84638300018159),9807,Limited Free,SPECTRUM,J. Hood Wright Recreation Center,Computer Resource Rm,40.8463830002,-73.9407060002,1000654.98785,247643.130091,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,255,1025500,1063445,1021390404,947 +MN,POINT (-73.94217800004371 40.824777999827745),9808,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Park and stadium area,40.8247779998,-73.942178,1000252.92271,239771.356465,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,0,1020520001,948 +MN,POINT (-73.94246400056154 40.824130999785694),9809,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Library,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,949 +MN,POINT (-73.94246400056154 40.824130999785694),9810,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Dugout,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,950 +MN,POINT (-73.94246400056154 40.824130999785694),9811,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Computer Lab,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,951 +MN,POINT (-73.94246400056154 40.824130999785694),9812,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Gymnasium,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,952 +SI,POINT (-74.06669999990856 40.58899999974855),9813,Free,AT&T,Ocean Breeze Park,Restaurant area,40.5889999997,-74.0666999999,965724.577721,153872.053526,Outdoor,,Staten Island,attwifi,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,70,5007000,5162377,5035250200,953 +MN,POINT (-74.00280000017284 40.71479999985457),9814,Free,AT&T,Thomas Paine Park,Entire Park,40.7147999999,-74.0028000002,983473.785989,199697.436613,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,31,1003100,0,1001680001,954 +MN,POINT (-73.98170000001531 40.72650000005117),9815,Free,AT&T,Tompkins Square Park,Around the Field House,40.7265000001,-73.9817,989322.222127,203960.623625,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,0,1004030001,955 +QU,POINT (-73.84430000020389 40.74319999972558),9816,Limited Free,AT&T,Flushing Meadows Corona Park,Queens Zoo in Flushing Meadows Corona Park,40.7431999997,-73.8443000002,1027394.62663,210082.77247,Outdoor,,Queens,attwifi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,21,11368,481,38302,4038302,4464054,4020180001,956 +MN,POINT (-74.00444413017011 40.742418549660954),9817,Free,LinkNYC - Citybridge,mn-04-135171,89 9 AVENUE,40.7424185497,-74.0044441302,983018.511966,209759.752774,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011082,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1078408,1007140030,4914 +MN,POINT (-73.96311538968575 40.79871674990858),9818,Free,LinkNYC - Citybridge,mn-07-136701,921 COLUMBUS AVENUE,40.7987167499,-73.9631153897,994462.250889,230273.18222,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012788,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,189,1018900,1055593,1018410000,4915 +QU,POINT (-73.85056916049513 40.69414033979717),9819,Free,LinkNYC - Citybridge,qu-09-145884,94-20 JAMAICA AVENUE,40.6941403398,-73.8505691605,1025687.9286,192205.835454,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021387,08/09/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,20,4002000,4184333,4089350010,4916 +MN,POINT (-73.96827641040753 40.7550150197243),9820,Free,LinkNYC - Citybridge,mn-06-121795,944 2 AVENUE,40.7550150197,-73.9682764104,993039.084116,214350.612031,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-020492,02/01/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1085119,1013437500,4917 +MN,POINT (-73.96459518958152 40.75581173991401),9821,Free,LinkNYC - Citybridge,mn-06-121688,966 1 AVENUE,40.7558117399,-73.9645951896,994058.856355,214641.273851,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012359,01/23/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,8603,1008603,1040162,1013657500,4918 +MN,POINT (-73.96418188055159 40.75626360004533),9822,Free,LinkNYC - Citybridge,mn-06-121684,976 1 AVENUE,40.7562636,-73.9641818806,994173.295758,214805.947734,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010703,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,8603,1008603,1076281,1013657500,4919 +MN,POINT (-74.0199599995151 40.69038999963116),9823,Free,Fiberless,Governors Island,Liggett B Food Court,40.6903899996,-74.0199599995,978714.677069,190804.762797,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4920 +MN,POINT (-74.0193399995618 40.69013000035712),9824,Free,Fiberless,Governors Island,Liggett F Food Court,40.6901300004,-74.0193399996,978886.595033,190709.998879,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4921 +MN,POINT (-74.01957000048299 40.69071000003801),9825,Free,Fiberless,Governors Island,Liggett C Clayton,40.69071,-74.0195700005,978822.857955,190921.323916,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4922 +MN,POINT (-74.01915000018063 40.69025999960298),9826,Free,Fiberless,Governors Island,Liggett F Clayton,40.6902599996,-74.0191500002,978939.296371,190757.349834,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4923 +MN,POINT (-74.01826000010965 40.689190000397865),9827,Free,Fiberless,Governors Island,Liggett I Food Court,40.6891900004,-74.0182600001,979186.031113,190367.465115,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4924 +MN,POINT (-74.01805000020039 40.68933000031468),9828,Free,Fiberless,Governors Island,Liggett I Clayton,40.6893300003,-74.0180500002,979244.280013,190418.459108,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4925 +MN,POINT (-74.01811999973191 40.68854999975643),9829,Free,Fiberless,Governors Island,Blazing Saddles,40.6885499998,-74.0181199997,979224.808595,190134.28612,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4926 +MN,POINT (-73.97340729029595 40.784612050206064),9754,Free,LinkNYC - Citybridge,mn-07-133371,481 COLUMBUS AVENUE,40.7846120502,-73.9734072903,991614.29005,225133.321437,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010633,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1031213,1011970000,4871 +MN,POINT (-73.97856099958894 40.74089399960329),9755,Free,LinkNYC - Citybridge,mn-06-121437,490 2 AVENUE,40.7408939996,-73.9785609996,990190.977279,209205.006509,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012458,01/23/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1082733,1009340000,4872 +MN,POINT (-74.0038769902369 40.73290856035639),9756,Free,LinkNYC - Citybridge,mn-02-123678,50 GROVE STREET,40.7329085604,-74.0038769902,983175.515589,206294.955898,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011377,02/13/2019 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,73,1007300,1010182,1005910010,4873 +MN,POINT (-74.00648828052351 40.72098349008639),9757,Free,LinkNYC - Citybridge,mn-01-133384,50 VARICK STREET,40.7209834901,-74.0064882805,982451.490462,201950.32548,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013290,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1002734,1002127500,4874 +MN,POINT (-74.01804000057443 40.68815999995804),9830,Free,Fiberless,Governors Island,Liggett N King,40.68816,-74.0180400006,979246.965375,189992.193228,Outdoor,Free - up to 5 mbs,New York,Governors Island,Governors Island Trust,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,Governors Island,1,10004,101,5,1000500,1086341,1000010010,4927 +BX,POINT (-73.9170781326221 40.81737982775733),9831,Free,LinkNYC - Citybridge,bx-01-146066,610 MELROSE AVE,40.8173798278,-73.9170781326,1007202.15782,237081.516372,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020595,04/30/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,65,2006500,2097082,2023740010,4608 +BX,POINT (-73.91679095987875 40.81801654960544),9832,Free,LinkNYC - Citybridge,bx-01-146062,624 MELROSE AVE,40.8180165496,-73.9167909599,1007281.42473,237313.572339,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020596,04/25/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2001345,2023740030,4609 +BX,POINT (-73.91069012538199 40.82251879130515),9833,Free,LinkNYC - Citybridge,bx-03-146043,871 BROOK AVENUE,40.8225187913,-73.9106901254,1008968.40134,238955.563805,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020598,04/24/2018 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,17,10451,203,141,2014100,2001203,2023650030,4610 +BX,POINT (-73.90942748040239 40.822337919701965),9834,Free,LinkNYC - Citybridge,bx-01-146065,844 ST ANNS AVENUE,40.8223379197,-73.9094274804,1009317.93312,238890.024566,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020599,04/19/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10456,201,71,2007100,2004358,2026190010,4611 +BX,POINT (-73.92658962083047 40.81207893716906),9835,Free,LinkNYC - Citybridge,bx-01-146049,289 MORRIS AVENUE,40.8120789372,-73.9265896208,1004571.06761,235147.863415,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020603,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,2000953,2023330030,4612 +BX,POINT (-73.92624362438258 40.812557477654344),9836,Free,LinkNYC - Citybridge,bx-01-146046,301 MORRIS AVENUE,40.8125574777,-73.9262436244,1004666.69767,235322.293185,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020604,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,2000956,2023330050,4613 +BK,POINT (-73.98872869978437 40.68940821979265),9837,Free,LinkNYC - Citybridge,bk-02-145910,66 SMITH STREET,40.6894082198,-73.9887286998,987375.811978,190446.642122,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020653,10/06/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3348905,3002587500,4614 +BK,POINT (-73.99101400049736 40.68617700035036),9838,Free,LinkNYC - Citybridge,bk-02-145904,71 WYCKOFF STREET,40.6861770004,-73.9910140005,986742.161999,189269.341327,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020655,09/18/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,69,3006900,3005750,3003840050,4615 +BK,POINT (-73.99158104024347 40.68479895013941),9839,Free,LinkNYC - Citybridge,bk-06-145906,333 BALTIC STREET,40.6847989501,-73.9915810402,986584.948402,188767.261951,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020657,09/18/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,306,69,3006900,3006352,3003970000,4616 +BK,POINT (-73.9921844994779 40.68430373981232),9840,Free,LinkNYC - Citybridge,bk-06-145905,220 SMITH STREET,40.6843037398,-73.9921844995,986417.598671,188586.826944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020658,09/18/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,306,69,3006900,3336068,3004020050,4617 +BK,POINT (-73.99277253987536 40.68343607005456),9841,Free,LinkNYC - Citybridge,bk-06-145876,244 SMITH STREET,40.6834360701,-73.9927725399,986254.534037,188270.695687,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020659,10/23/2017 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,33,11231,306,75,3007500,3336097,3004140040,4618 +MN,POINT (-73.94246400056154 40.824130999785694),9842,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Admin Office,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,982 +MN,POINT (-73.94246400056154 40.824130999785694),9843,Limited Free,SPECTRUM,Jackie Robinson Recreation Center,Maintenance,40.8241309998,-73.9424640006,1000173.92352,239535.578721,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10039,110,231,1023100,1084164,1020520001,983 +QU,POINT (-73.88535999960501 40.7188120001528),9844,Limited Free,SPECTRUM,Juniper Valley Park,Juniper Blvd South East,40.7188120002,-73.8853599996,1016028.49549,201179.912979,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,66501,4066501,0,0,984 +QU,POINT (-73.87780599989382 40.72023099956539),9845,Limited Free,SPECTRUM,Juniper Valley Park,Playground,40.7202309996,-73.8778059999,1018121.76066,201699.728212,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,4029600002,985 +QU,POINT (-73.87733699953908 40.720598000101425),9846,Limited Free,SPECTRUM,Juniper Valley Park,Comfort Station,40.7205980001,-73.8773369995,1018251.57864,201833.619348,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,4029600002,986 +QU,POINT (-73.87793500008131 40.721025999930504),9847,Limited Free,SPECTRUM,Juniper Valley Park,Sitting Area,40.7210259999,-73.8779350001,1018085.59866,201989.321137,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,4029600002,987 +QU,POINT (-73.88533499998283 40.71921000004665),9848,Limited Free,SPECTRUM,Juniper Valley Park,Juniper Blvd South West,40.71921,-73.885335,1016035.23563,201324.925484,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,0,988 +BK,POINT (-73.98716199990565 40.689319000315805),9849,Free,Downtown Brooklyn,,160 Schermerhorn St.,40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3394335,3001700015,989 +BK,POINT (-73.9838490002554 40.694692999598466),9850,Free,Downtown Brooklyn,,162 Flatbush Ave. Extension (Pole),40.6946929996,-73.9838490003,988728.719049,192372.254413,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,990 +BK,POINT (-73.9838490002554 40.694692999598466),9851,Free,Downtown Brooklyn,,162 Flatbush Ave. Extension (Pole),40.6946929996,-73.9838490003,988728.719049,192372.254413,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,991 +BK,POINT (-73.98332799970161 40.693721000073964),9852,Free,Downtown Brooklyn,,196 Flatbush Ave. Extension (Pole),40.6937210001,-73.9833279997,988873.261411,192018.153415,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,992 +BK,POINT (-73.98332799970161 40.693721000073964),9853,Free,Downtown Brooklyn,,196 Flatbush Ave. Extension (Pole),40.6937210001,-73.9833279997,988873.261411,192018.153415,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,993 +BK,POINT (-73.98578799978623 40.69335000007956),9854,Free,Downtown Brooklyn,,2 Metrotech Center,40.6933500001,-73.9857879998,988191.108248,191882.86694,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3255603,3001480007,994 +BK,POINT (-73.98578799978623 40.69335000007956),9855,Free,Downtown Brooklyn,,2 Metrotech Center,40.6933500001,-73.9857879998,988191.108248,191882.86694,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3255603,3001480007,995 +BK,POINT (-73.97854099965835 40.68637099955817),9856,Free,Downtown Brooklyn,,20 Lafayette Ave.,40.6863709996,-73.9785409997,990201.385723,189340.622025,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3424445,3021100003,997 +BK,POINT (-73.97854099965835 40.68637099955817),9857,Free,Downtown Brooklyn,,20 Lafayette Ave.,40.6863709996,-73.9785409997,990201.385723,189340.622025,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3424445,3021100003,998 +BK,POINT (-73.98302500021536 40.69272300020403),9858,Free,Downtown Brooklyn,,254 Flatbush Ave. Extension (pole),40.6927230002,-73.9830250002,988957.355731,191654.56884,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,3020600008,1000 +BK,POINT (-73.98393100047043 40.690406000292626),9859,Free,Downtown Brooklyn,,255 Duffield St.,40.6904060003,-73.9839310005,988706.266666,190810.370398,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3000323,3001460053,1001 +BK,POINT (-73.98393100047043 40.690406000292626),9860,Free,Downtown Brooklyn,,255 Duffield St.,40.6904060003,-73.9839310005,988706.266666,190810.370398,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3000323,3001460053,1002 +BK,POINT (-73.98258700032645 40.692086999708074),9861,Free,Downtown Brooklyn,,280 Flatbush Ave. Extension (Pole),40.6920869997,-73.9825870003,989078.864018,191422.879015,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3058246,3020600001,1003 +BK,POINT (-73.98258700032645 40.692086999708074),9862,Free,Downtown Brooklyn,,280 Flatbush Ave. Extension (Pole),40.6920869997,-73.9825870003,989078.864018,191422.879015,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3058246,3020600001,1004 +BK,POINT (-73.98248800017888 40.691890000164314),9863,Free,Downtown Brooklyn,,286 Flatbush Ave. Extension (Pole),40.6918900002,-73.9824880002,989106.332467,191351.11177,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,1005 +BK,POINT (-73.98851899995303 40.693625000067016),9864,Free,Downtown Brooklyn,,333 Adams St.,40.6936250001,-73.988519,987433.765602,191982.946465,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1007 +BK,POINT (-73.98834699960128 40.69363599965358),9865,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1008 +BK,POINT (-73.98834699960128 40.69363599965358),9866,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1009 +BK,POINT (-73.98834699960128 40.69363599965358),9867,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1010 +BK,POINT (-73.98834699960128 40.69363599965358),9868,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1011 +BK,POINT (-73.98834699960128 40.69363599965358),9869,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1012 +BK,POINT (-73.98834699960128 40.69363599965358),9870,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1014 +BK,POINT (-73.98670650054014 40.69401050001699),9871,Free,Downtown Brooklyn,,333 Jay St.,40.6940105,-73.9867065005,987936.363678,192123.466525,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000265,3001420001,1015 +BK,POINT (-73.98670650054014 40.69401050001699),9872,Free,Downtown Brooklyn,,333 Jay St.,40.6940105,-73.9867065005,987936.363678,192123.466525,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000265,3001420001,1016 +BK,POINT (-73.98670650054014 40.69401050001699),9873,Free,Downtown Brooklyn,,333 Jay St.,40.6940105,-73.9867065005,987936.363678,192123.466525,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000265,3001420001,1017 +BK,POINT (-73.98670650054014 40.69401050001699),9874,Free,Downtown Brooklyn,,333 Jay St.,40.6940105,-73.9867065005,987936.363678,192123.466525,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000265,3001420001,1018 +BK,POINT (-73.98670650054014 40.69401050001699),9875,Free,Downtown Brooklyn,,333 Jay St.,40.6940105,-73.9867065005,987936.363678,192123.466525,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000265,3001420001,1019 +BK,POINT (-73.98215800045745 40.68994199996895),9876,Free,Downtown Brooklyn,,34 Dekalb Ave. (Pole),40.689942,-73.9821580005,989197.990748,190641.416667,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,33,3003300,0,0,1020 +BK,POINT (-73.98215800045745 40.68994199996895),9877,Free,Downtown Brooklyn,,34 Dekalb Ave. (Pole),40.689942,-73.9821580005,989197.990748,190641.416667,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,33,3003300,0,0,1021 +BK,POINT (-73.98813099983225 40.69173799979331),9878,Free,Downtown Brooklyn,,356 Fulton St.,40.6917379998,-73.9881309998,987541.454035,191295.471133,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000421,3001540005,1022 +BK,POINT (-73.98813099983225 40.69173799979331),9879,Free,Downtown Brooklyn,,356 Fulton St.,40.6917379998,-73.9881309998,987541.454035,191295.471133,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000421,3001540005,1023 +BK,POINT (-73.98741900005633 40.693347999888125),9880,Free,Downtown Brooklyn,,370 Jay St. (Pole),40.6933479999,-73.9874190001,987738.818142,191882.069042,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000262,3001400111,1024 +BK,POINT (-73.98711699995904 40.69241700002129),9881,Free,Downtown Brooklyn,,375 Jay St.,40.692417,-73.987117,987822.615218,191542.890586,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3335897,3001470001,1025 +BK,POINT (-73.98711699995904 40.69241700002129),9882,Free,Downtown Brooklyn,,375 Jay St.,40.692417,-73.987117,987822.615218,191542.890586,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3335897,3001470001,1026 +BK,POINT (-73.98711699995904 40.69241700002129),9883,Free,Downtown Brooklyn,,375 Jay St.,40.692417,-73.987117,987822.615218,191542.890586,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3335897,3001470001,1027 +BK,POINT (-73.98830399990341 40.692178000059506),9884,Free,Downtown Brooklyn,,409 Fulton St.,40.6921780001,-73.9883039999,987493.457084,191455.769697,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000281,3001440001,1028 +BK,POINT (-73.98843300004131 40.69202299969066),9885,Free,Downtown Brooklyn,,409 Fulton St.,40.6920229997,-73.988433,987457.691079,191399.29376,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000281,3001440001,1029 +BK,POINT (-73.98831100009645 40.691976000396),9886,Free,Downtown Brooklyn,,409 Fulton St.,40.6919760004,-73.9883110001,987491.525657,191382.175028,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000281,3001440001,1030 +BK,POINT (-73.98866900025862 40.6921739995761),9887,Free,Downtown Brooklyn,,409 Fulton St.,40.6921739996,-73.9886690003,987392.237798,191454.2989,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000281,3001440001,1031 +BK,POINT (-73.98830399990341 40.692178000059506),9888,Free,Downtown Brooklyn,,409 Fulton St.,40.6921780001,-73.9883039999,987493.457084,191455.769697,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000281,3001440001,1032 +BK,POINT (-73.98443499994326 40.690364000288696),9889,Free,Downtown Brooklyn,,442 Fulton St. (Pole),40.6903640003,-73.9844349999,988566.499885,190795.043329,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3329437,3001560024,1033 +BK,POINT (-73.98443499994326 40.690364000288696),9890,Free,Downtown Brooklyn,,442 Fulton St. (Pole),40.6903640003,-73.9844349999,988566.499885,190795.043329,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3329437,3001560024,1034 +BK,POINT (-73.98963499951783 40.69088299984325),9891,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,296 +BK,POINT (-73.98963499951783 40.69088299984325),9892,Free,Downtown Brooklyn,,110 Livingston St.,40.6908829998,-73.9896349995,987124.408937,190983.916638,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3002642,3002697501,297 +BK,POINT (-73.99199500041172 40.689985000145086),9893,Free,Downtown Brooklyn,,125 Court St.,40.6899850001,-73.9919950004,986469.966349,190656.680416,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3388736,3002777501,298 +BK,POINT (-73.99194399967728 40.68990599996291),9894,Free,Downtown Brooklyn,,125 Court St.,40.689906,-73.9919439997,986484.112646,190627.899634,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3388736,3002777501,299 +BK,POINT (-73.99346712971139 40.68240986959762),9895,Free,LinkNYC - Citybridge,bk-06-145875,280 SMITH STREET,40.6824098696,-73.9934671297,986061.917624,187896.806015,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020661,09/18/2017 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,75,3007500,3006845,3004210040,4619 +BK,POINT (-73.95545318957232 40.73691348972201),9896,Free,LinkNYC - Citybridge,bk-01-145864,1133 MANHATTAN AVENUE,40.7369134897,-73.9554531896,996595.136715,207757.192803,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020756,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,563,3056300,3063701,3024820030,4620 +BK,POINT (-73.95509600003861 40.73468399962983),9897,Free,LinkNYC - Citybridge,bk-01-145861,1049 MANHATTAN AVENUE,40.7346839996,-73.955096,996694.54006,206944.970018,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020757,08/23/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,563,3056300,3063924,3025040040,4621 +BK,POINT (-73.95458099984256 40.73273499985487),9898,Free,LinkNYC - Citybridge,bk-01-145863,984 MANHATTAN AVENUE,40.7327349999,-73.9545809998,996837.633605,206234.961924,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020759,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,575,3057500,3064316,3025330010,4622 +BK,POINT (-73.9919999996782 40.68999699983156),9899,Free,Downtown Brooklyn,,125 Court St.,40.6899969998,-73.9919999997,986468.57954,190661.052127,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3388736,3002777501,305 +BK,POINT (-73.99189700005583 40.69002199987764),9900,Free,Downtown Brooklyn,,125 Court St.,40.6900219999,-73.9918970001,986497.142804,190670.163001,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3388736,3002777501,306 +BK,POINT (-73.98396999957485 40.69557799983411),9901,Free,Downtown Brooklyn,,125 Flatbush Ave. Extension,40.6955779998,-73.9839699996,988695.106583,192694.679949,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3000249,3001330013,307 +BK,POINT (-73.98811699969228 40.68992400017328),9902,Free,Downtown Brooklyn,,160 Livingston St. (Pole #1),40.6899240002,-73.9881169997,987545.42614,190634.578426,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3255604,3001640001,308 +BK,POINT (-73.98811699969228 40.68992400017328),9903,Free,Downtown Brooklyn,,160 Livingston St. (Pole #1),40.6899240002,-73.9881169997,987545.42614,190634.578426,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3255604,3001640001,309 +BK,POINT (-73.98716199990565 40.689319000315805),9904,Free,Downtown Brooklyn,,160 Livingston St. (Pole #2),40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3255604,3001640001,310 +BK,POINT (-73.98784599961805 40.6902959999986),9905,Free,Downtown Brooklyn,,160 Livingston St. (Pole #2),40.690296,-73.9878459996,987620.561817,190770.119166,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3255604,3001640001,311 +BK,POINT (-73.98716199990565 40.689319000315805),9906,Free,Downtown Brooklyn,,160 Schermerhorn St.,40.6893190003,-73.9871619999,987810.301595,190414.196649,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3394335,3001700015,312 +BK,POINT (-73.94967100007815 40.72232800001702),9907,Free,LinkNYC - Citybridge,bk-01-145860,308 Driggs Avenue,40.722328,-73.9496710001,998200.592166,202444.112878,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020764,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,3066749,3026800030,4623 +BK,POINT (-73.94762700026997 40.720110999671306),9908,Free,LinkNYC - Citybridge,bk-01-145859,475 MANHATTAN AVENUE,40.7201109997,-73.9476270003,998767.647134,201636.723745,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020767,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,499,3049900,3067788,3027120000,4624 +BK,POINT (-73.94685299994953 40.71951099993563),9909,Free,LinkNYC - Citybridge,bk-01-145858,434 MANHATTAN AVENUE,40.7195109999,-73.9468529999,998982.330432,201418.254694,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020768,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,499,3049900,3067915,3027240010,4625 +BK,POINT (-73.94373206957916 40.71107890009057),9910,Free,LinkNYC - Citybridge,bk-01-145857,256 GRAHAM AVENUE,40.7110789001,-73.9437320696,999849.424498,198346.724747,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020772,08/10/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,495,3049500,3069606,3027890000,4626 +MN,POINT (-73.96784851662767 40.79591999080587),9911,Free,NYPL,Bloomingdale,150 WEST 100 STREET,40.7959199908,-73.9678485166,993152.162958,229253.709193,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,185,1018500,1055906,1018520049,321 +BX,POINT (-73.78636658900808 40.8476919036199),9912,Free,NYPL,City Island,320 CITY ISLAND AVENUE,40.8476919036,-73.786366589,1043355.15999,248186.534188,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10464,210,516,2051600,2122890,2056440010,322 +BK,POINT (-73.89952442124468 40.64220845315574),9913,Free,BPL,Canarsie - Brooklyn Public Library,1580 ROCKAWAY PARKWAY,40.6422084532,-73.8995244212,1012134.09612,173266.226024,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK50,Canarsie,46,11236,318,966,3096600,3230120,3082040068,323 +BK,POINT (-73.95542835746417 40.586999956065405),9914,Free,BPL,Sheepshead Bay - Brooklyn Public Library,2636 EAST 14 STREET,40.5869999561,-73.9554283575,996629.809218,153139.483797,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11235,315,606,3060600,3204896,3074580020,324 +BX,POINT (-73.86794200000536 40.90043990975718),9915,Free,NYPL,Woodlawn Heights,4355 KATONAH AVENUE,40.9004399098,-73.867942,1020757.04476,267360.164804,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX62,Woodlawn-Wakefield,11,10470,212,44902,2044902,2019288,2033800054,325 +BK,POINT (-74.01035129162706 40.67525519105157),9916,Free,BPL,Red Hook - Brooklyn Public Library,7 WOLCOTT STREET,40.6752551911,-74.0103512916,981378.71997,185290.252829,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008650,3005770029,326 +BK,POINT (-73.94856613670774 40.675370851852314),9917,Free,BPL,Brower Park - Brooklyn Public Library,725 ST MARKS AVENUE,40.6753708519,-73.9485661367,998516.892058,185336.410217,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3030731,3012200063,327 +QU,POINT (-73.71483775719267 40.745150518217976),9918,Free,QPL,Glen Oaks,256-04 UNION TURNPIKE,40.7451505182,-73.7148377572,1063266.3331,210883.679004,Library,,Glen Oaks,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN44,Glen Oaks-Floral Park-New Hyde Park,23,11004,413,157902,4157902,4177530,4086930010,329 +BX,POINT (-73.87838435032448 40.87437981398938),9919,Free,NYPL,Mosholu,285 EAST 205 STREET,40.874379814,-73.8783843503,1017883.47176,257861.247122,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,2018123,2033410076,330 +QU,POINT (-73.78404002857111 40.59314678303443),9920,Free,QPL,Arverne,312 BEACH 54 STREET,40.593146783,-73.7840400286,1044227.47485,155449.712116,Library,,Arverne,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,31,11692,414,97204,4097204,4301922,4158900018,331 +MN,POINT (-73.93967458287253 40.83451520902762),9921,Free,NYPL,Washington Heights,1000 ST NICHOLAS AVENUE,40.834515209,-73.9396745829,1000943.32979,243319.445825,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,24301,1024301,1062551,1021090055,332 +BK,POINT (-73.92396467003557 40.59135705443834),9922,Free,BPL,Gerritsen Beach - Brooklyn Public Library,2808 GERRITSEN AVENUE,40.5913570544,-73.92396467,1005367.49384,154732.90023,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,46,11229,315,628,3062800,3343823,3089230920,333 +BK,POINT (-73.95069029354266 40.726050662258416),9923,Free,BPL,Greenpoint - Brooklyn Public Library,107 NORMAN AVENUE,40.7260506623,-73.9506902935,997917.292863,203800.232869,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,573,3057300,3065691,3026210032,334 +BX,POINT (-73.88304469041749 40.84467409066747),9924,Free,NYPL,West Farms,2085 HONEYWELL AVENUE,40.8446740907,-73.8830446904,1016609.08028,247036.559782,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,363,2036300,2013151,2031230061,336 +BX,POINT (-73.92436634017321 40.81159621285248),9925,Free,NYPL,Mott Haven,321 EAST 140 STREET,40.8115962129,-73.9243663402,1005186.65595,234972.513372,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2000744,2023150018,337 +QU,POINT (-73.75379667121211 40.70701055560287),9926,Free,QPL,South Hollis,204-01 HOLLIS AVENUE,40.7070105556,-73.7537966712,1052510.19418,196955.4211,Library,,South Hollis,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN07,Hollis,27,11412,412,508,4050800,4442263,4109070030,338 +MN,POINT (-73.95134169404905 40.770652543462646),9927,Free,NYPL,Webster,1465 YORK AVENUE,40.7706525435,-73.951341694,997727.716143,220050.028126,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10075,108,132,1013200,1045991,1014720028,339 +QU,POINT (-73.86144645936642 40.694546578477556),9928,Free,QPL,Woodhaven,85-41 FOREST PARKWAY,40.6945465785,-73.8614464594,1022671.36704,192348.881756,Library,,Woodhaven,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,12,4001200,4181578,4088560085,340 +MN,POINT (-73.9693817046576 40.7621860177235),9929,Free,NYPL,58th Street,127 EAST 58 STREET,40.7621860177,-73.9693817047,992731.946935,216963.13174,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,11203,1011203,1037165,1013130005,341 +MN,POINT (-73.98040766732734 40.7273073124591),9930,Free,NYPL,Tompkins Square,331 EAST 10 STREET,40.7273073125,-73.9804076673,989680.352973,204254.830057,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1005147,1004040039,342 +QU,POINT (-73.92871881263974 40.772382889875445),9931,Free,QPL,Astoria,14-01 ASTORIA BOULEVARD,40.7723828899,-73.9287188126,1003993.44508,220684.740767,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,83,4008300,4006113,4005400030,344 +BK,POINT (-73.91513241598248 40.68481004767251),9932,Free,BPL,Saratoga - Brooklyn Public Library,8 THOMAS S BOYLAND STREET,40.6848100477,-73.915132416,1007787.51197,188782.594926,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,41,11233,316,373,3037300,3040218,3014980035,345 +BX,POINT (-73.82865793112157 40.87050192463956),9933,Free,NYPL,Baychester,2049 ASCH LOOP NORTH,40.8705019246,-73.8286579311,1031638.33303,256471.377855,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX13,Co-op City,12,10475,210,46201,2046201,2097466,2051410100,346 +SI,POINT (-74.24410670826178 40.509531123859375),9934,Free,NYPL,Tottenville,7430 AMBOY ROAD,40.5095311239,-74.2441067083,916370.601298,125007.163094,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI11,Charleston-Richmond Valley-Tottenville,51,10307,503,24401,5024401,5088113,5078990009,347 +MN,POINT (-73.94803241890192 40.82567237379984),9935,Free,NYPL,Hamilton Grange,503 WEST 145 STREET,40.8256723738,-73.9480324189,998632.449898,240096.19407,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061938,1020770026,348 +BX,POINT (-73.90798337153501 40.88032227734139),9936,Free,NYPL,Kingsbridge,280 WEST 231 STREET,40.8803222773,-73.9079833715,1009695.43007,260016.339925,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX29,Spuyten Duyvil-Kingsbridge,11,10463,208,289,2028900,2083199,2057110030,349 +QU,POINT (-73.7390438188533 40.71988555432156),9937,Free,QPL,Queens Village,94-11 217 STREET,40.7198855543,-73.7390438189,1056586.45604,201657.994044,Library,,Queens Village,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN34,Queens Village,23,11428,413,566,4056600,4226761,4106210012,350 +MN,POINT (-73.95353074430393 40.80297988196676),9938,Free,NYPL,115th Street,203 WEST 115 STREET,40.802979882,-73.9535307443,997115.12977,231827.652864,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,1055236,1018310026,351 +BX,POINT (-73.85835521765662 40.8337362973582),9939,Free,NYPL,Parkchester,1985 WESTCHESTER AVENUE,40.8337362974,-73.8583552177,1023446.57776,243061.601853,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX46,Parkchester,18,10462,209,222,2022200,2028890,2039300059,352 +QU,POINT (-73.82071906957181 40.72591848562192),9940,Free,QPL,Kew Gardens Hills,72-33 VLEIGH PLACE,40.7259184856,-73.8207190696,1033941.80382,203799.080969,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN37,Kew Gardens Hills,24,11367,408,77907,4077907,4144059,4066610005,354 +MN,POINT (-73.9518056716208 40.785959798621555),9941,Free,NYPL,96th Street,112 EAST 96 STREET,40.7859597986,-73.9518056716,997596.132088,225626.905751,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10128,108,15801,1015801,1048501,1015240064,355 +MN,POINT (-73.99122081783712 40.764934618394804),9942,Free,NYPL,Columbus,742 10 AVENUE,40.7649346184,-73.9912208178,986681.927867,217963.176984,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026706,1010600063,356 +SI,POINT (-74.07784609031587 40.62623760989214),9943,Free,NYPL,Stapleton,132 CANAL STREET,40.6262376099,-74.0778460903,962640.892288,167441.22816,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI37,Stapleton-Rosebank,49,10304,501,27,5002700,5013792,5005260063,357 +QU,POINT (-73.73822944076473 40.768225432005),9944,Free,QPL,Douglaston/Little Neck,249-01 NORTHERN BOULEVARD,40.768225432,-73.7382294408,1056759.56921,219270.349239,Library,,Little Neck,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN45,Douglas Manor-Douglaston-Little Neck,19,11362,411,1479,4147900,4169275,4081260087,359 +MN,POINT (-73.98169851078917 40.75189156171031),9945,Free,NYPL,Mid Manhattan,455 5 AVENUE,40.7518915617,-73.9816985108,989320.702117,213211.573299,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,105,82,1008200,1017602,1008690074,360 +SI,POINT (-74.13110461508398 40.63758561600359),9946,Free,NYPL,Port Richmond,75 BENNETT STREET,40.637585616,-74.1311046151,947863.183982,171593.238884,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI28,Port Richmond,49,10302,501,207,5020700,5023763,5010070026,361 +BK,POINT (-73.8740334897792 40.6727060872469),9947,Free,BPL,Cypress Hills - Brooklyn Public Library,1197 SUTTER AVENUE,40.6727060872,-73.8740334898,1019192.38581,184386.495778,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11208,305,1196,3119600,3252993,3042470033,362 +QU,POINT (-73.94422389465159 40.755200199366335),9948,Free,QPL,"Queensbridge, Now a Family Literacy Center",10-43 41 AVENUE,40.7552001994,-73.9442238947,999702.838177,214421.407165,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4595582,4004700100,363 +BK,POINT (-73.91221061753605 40.697482248881926),9949,Free,BPL,Washington Irving - Brooklyn Public Library,360 IRVING AVENUE,40.6974822489,-73.9122106175,1008593.22788,193400.245795,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,37,11237,304,435,3043500,3076852,3033620032,364 +SI,POINT (-74.06298046524466 40.59581814680265),9950,Free,NYPL,South Beach,21-25 ROBIN ROAD,40.5958181468,-74.0629804652,966759.436216,156355.312011,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI14,Grasmere-Arrochar-Ft. Wadsworth,50,10305,502,74,5007400,5129317,5031210001,365 +BK,POINT (-73.96059936964683 40.5952368631223),9951,Free,BPL,Homecrest - Brooklyn Public Library,2525 CONEY ISLAND AVENUE,40.5952368631,-73.9605993696,995192.206778,156139.708768,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK25,Homecrest,48,11223,315,584,3058400,3200560,3073710080,366 +BK,POINT (-74.01186966819488 40.62921209767786),9952,Free,BPL,Mckinley Park - Brooklyn Public Library,6802 FT HAMILTON PARKWAY,40.6292120977,-74.0118696682,980955.273966,168515.534738,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11219,310,12801,3012801,3143032,3057710012,367 +QU,POINT (-73.94424367792132 40.74706242084491),9953,Free,QPL,Court Square,25-01 JACKSON AVENUE,40.7470624208,-73.9442436779,999699.244352,211456.548921,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4539937,4000790030,368 +BK,POINT (-73.94762002850315 40.63574128464023),9954,Free,BPL,Clarendon - Brooklyn Public Library,2035 NOSTRAND AVENUE,40.6357412846,-73.9476200285,998787.960085,170898.416127,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,45,11210,317,786,3078600,3327822,3050050033,369 +QU,POINT (-73.84601327844253 40.786249136011506),9955,Free,QPL,Poppenhusen,121-23 14 AVENUE,40.786249136,-73.8460132784,1026892.3048,225766.13021,Library,,College Point,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN23,College Point,19,11356,407,929,4092900,4097863,4040420113,370 +QU,POINT (-73.84301499681045 40.722146953166686),9956,Free,QPL,Forest Hills,108-19 71 AVENUE,40.7221469532,-73.8430149968,1027764.44806,202413.135906,Library,,Forest Hills,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,739,4073900,4052345,4022230054,371 +SI,POINT (-74.07664576517264 40.641785367880324),9957,Free,NYPL,St. George Library Center,5 CENTRAL AVENUE,40.6417853679,-74.0766457652,962979.043842,173105.39859,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10301,501,3,5000300,5000030,5000050074,372 +BX,POINT (-73.82788990730538 40.844292672679344),9958,Free,NYPL,Pelham Bay,3060 MIDDLETOWN ROAD,40.8442926727,-73.8278899073,1031869.5081,246922.773921,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10461,210,264,2026400,2074963,2054040002,374 +BX,POINT (-73.89392241146652 40.88275975620516),9959,Free,NYPL,Van Cortlandt,3874 SEDGWICK AVENUE,40.8827597562,-73.8939224115,1013582.64113,260908.806972,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX28,Van Cortlandt Village,11,10463,208,409,2040900,2015233,2032460074,375 +BX,POINT (-73.9175826513459 40.826591926808554),9960,Free,NYPL,Melrose,910 MORRIS AVENUE,40.8265919268,-73.9175826513,1007059.35299,240437.684857,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,17,10451,204,173,2017300,2001950,2024220001,376 +QU,POINT (-73.8098334843409 40.76375031625646),9961,Free,QPL,Mcgoldrick,155-06 ROOSEVELT AVENUE,40.7637503163,-73.8098334843,1036929.06523,217588.755817,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,20,11354,407,1171,4117100,4119345,4052750120,377 +BK,POINT (-73.92839866742115 40.694816700021924),9962,Free,BPL,Dekalb - Brooklyn Public Library,790 BUSHWICK AVENUE,40.6948167,-73.9283986674,1004105.21815,192425.023992,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,34,11221,304,393,3039300,3073751,3032410018,378 +BK,POINT (-73.94112492296973 40.594861515121615),9963,Free,BPL,Kings Bay - Brooklyn Public Library,3650 NOSTRAND AVENUE,40.5948615151,-73.941124923,1000600.67398,156005.993812,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK17,Sheepshead Bay-Gerritsen Beach-Manhattan Beach,48,11229,315,59402,3059402,3202630,3074050920,380 +QU,POINT (-73.73991101315558 40.659963623126),9964,Free,QPL,Rosedale,144-20 243 STREET,40.6599636231,-73.7399110132,1056410.89274,179826.060673,Library,,Rosedale,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN05,Rosedale,31,11422,413,654,4065400,4287999,4135490007,381 +BK,POINT (-73.88607053682676 40.665159369730134),9965,Free,BPL,New Lots - Brooklyn Public Library,665 NEW LOTS AVENUE,40.6651593697,-73.8860705368,1015856.95613,181632.442887,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11207,305,1124,3112400,3090726,3040900001,382 +BX,POINT (-73.90178897654918 40.8312637226237),9966,Free,NYPL,Morrisania,610 EAST 169 STREET,40.8312637226,-73.9017889765,1011428.40987,242144.296929,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,16,10456,203,149,2014900,2004303,2026150023,383 +QU,POINT (-73.86165592933878 40.737434137948505),9967,Free,QPL,Lefrak City,98-30 57 AVENUE,40.7374341379,-73.8616559293,1022588.6031,207974.016845,Library,,Corona,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN25,Corona,21,11368,404,455,4045500,4047321,4019180070,384 +BK,POINT (-74.00337654508532 40.608009349952326),9968,Free,BPL,New Utrecht - Brooklyn Public Library,1743 86 STREET,40.60800935,-74.0033765451,983312.456916,160790.610883,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,178,3017800,3165745,3063430064,385 +BX,POINT (-73.86288995608042 40.818709352248625),9969,Free,NYPL,Soundview,660 SOUNDVIEW AVENUE,40.8187093522,-73.8628899561,1022200.27514,237584.746993,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX09,Soundview-Castle Hill-Clason Point-Harding Park,18,10473,209,20,2002000,2021838,2035580014,386 +BX,POINT (-73.86414358014247 40.85487778478771),9970,Free,NYPL,Van Nest,2147 BARNES AVENUE,40.8548777848,-73.8641435801,1021832.85133,250761.695049,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX49,Pelham Parkway,13,10462,211,228,2022800,2049427,2043210070,387 +BK,POINT (-73.93037391972932 40.6486367051866),9971,Free,BPL,Rugby - Brooklyn Public Library,1000 UTICA AVENUE,40.6486367052,-73.9303739197,1003570.84914,175599.900819,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,45,11203,317,860,3086000,3103730,3047210028,388 +QU,POINT (-73.88506932468307 40.75019608559315),9972,Free,QPL,Jackson Heights,35-51 81 STREET,40.7501960856,-73.8850693247,1016094.06917,212614.21721,Library,,Jackson Heights,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,283,4028300,4029693,4012810048,389 +MN,POINT (-73.99595971605662 40.744510048327115),9973,Free,NYPL,Muhlenberg,209 WEST 23 STREET,40.7445100483,-73.9959597161,985369.545321,210521.746985,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014150,1007730038,390 +QU,POINT (-73.86450282598912 40.72731656026829),9974,Free,QPL,Rego Park,91-41 63 DRIVE,40.7273165603,-73.864502826,1021805.35926,204286.637736,Library,,Rego Park,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,695,4069500,4072812,4031030043,391 +BK,POINT (-74.0119885202191 40.616308136970446),9975,Free,BPL,Dyker - Brooklyn Public Library,8202 13 AVENUE,40.616308137,-74.0119885202,980921.640175,163814.284954,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK30,Dyker Heights,43,11228,310,148,3014800,3164019,3063020036,392 +BK,POINT (-73.99801906031493 40.683213515337584),9976,Free,BPL,Carroll Gardens - Brooklyn Public Library,396 CLINTON STREET,40.6832135153,-73.9980190603,984799.4149,188189.536072,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,67,3006700,3004336,3003380033,393 +QU,POINT (-73.79634318601099 40.77375210876365),9977,Free,QPL,Auburndale,25-55 FRANCIS LEWIS BOULEVARD,40.7737521088,-73.796343186,1040657.60797,221241.131714,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN47,Ft. Totten-Bay Terrace-Clearview,19,11358,407,1017,4101700,4129461,4057690010,394 +QU,POINT (-73.86820029574558 40.757711898818776),9978,Free,QPL,Langston Hughes,100-01 NORTHERN BOULEVARD,40.7577118988,-73.8682002957,1020763.88103,215359.050959,Library,,Corona,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN27,East Elmhurst,21,11368,403,363,4036300,4437193,4016950039,395 +QU,POINT (-73.8107165591317 40.78853144432245),9979,Free,QPL,Whitestone,151-10 14 ROAD,40.7885314443,-73.8107165591,1036664.93092,226616.80305,Library,,Whitestone,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN49,Whitestone,19,11357,407,987,4098700,4107201,4047170025,396 +BK,POINT (-73.8859090476107 40.653264072717874),9980,Free,BPL,Spring Creek - Brooklyn Public Library,12143 FLATLANDS AVENUE,40.6532640727,-73.8859090476,1015907.4019,177298.715991,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11207,305,1104,3110400,3098071,3044130025,397 +QU,POINT (-73.81945312008847 40.71003455781208),9981,Free,QPL,Briarwood,85-12 MAIN STREET,40.7100345578,-73.8194531201,1034304.61773,198012.813014,Library,,Briarwood,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN35,Briarwood-Jamaica Hills,24,11435,408,22001,4022001,4206518,4096510025,398 +BX,POINT (-73.89834025561022 40.84604232493563),9982,Free,NYPL,Tremont,1866 WASHINGTON AVENUE,40.8460423249,-73.8983402556,1012376.54183,247529.777956,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX01,Claremont-Bathgate,15,10457,206,395,2039500,2009573,2029180001,399 +MN,POINT (-73.98778373393841 40.72892090288762),9983,Free,NYPL,Ottendorfer,135 SECOND AVENUE,40.7289209029,-73.9877837339,987635.866904,204842.340037,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1079841,1004640039,400 +MN,POINT (-73.93386591312449 40.847870041168214),9984,Free,NYPL,Fort Washington,535 WEST 179 STREET,40.8478700412,-73.9338659131,1002547.03885,248186.270081,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1063632,1021530053,401 +BK,POINT (-73.97675727769622 40.64871697111443),9985,Free,BPL,Windsor Terrace - Brooklyn Public Library,160 EAST 5 STREET,40.6487169711,-73.9767572777,990699.718716,175622.321049,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK40,Windsor Terrace,39,11218,307,500,3050000,3124000,3053180010,402 +BK,POINT (-73.97773263286963 40.69448969834957),9986,Free,BPL,Walt Whitman - Brooklyn Public Library,93 ST EDWARDS STREET,40.6944896983,-73.9777326329,990424.824253,192298.55771,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3058036,3020390001,403 +BK,POINT (-73.96031449280875 40.62589330718781),9987,Free,BPL,Midwood - Brooklyn Public Library,975 EAST 16 STREET,40.6258933072,-73.9603144928,995266.261748,167308.683149,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK43,Midwood,44,11230,314,532,3053200,3179706,3067090054,404 +MN,POINT (-73.98454684522841 40.7735069911927),9988,Free,NYPL,Library For Performing Arts,40 LINCOLN CENTER PLAZA,40.7735069912,-73.9845468452,988530.139066,221086.633008,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,1028832,1011340025,405 +BK,POINT (-73.88723950895272 40.68068710695389),9989,Free,BPL,Arlington - Brooklyn Public Library,203 ARLINGTON AVENUE,40.680687107,-73.887239509,1015525.37116,187289.216023,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11207,305,117201,3117201,3087001,3039230052,406 +QU,POINT (-73.73964256906288 40.69477729160134),9990,Free,QPL,Cambria Heights,220-20 LINDEN BOULEVARD,40.6947772916,-73.7396425691,1056447.67318,192509.845017,Library,,Cambria Heights,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN33,Cambria Heights,27,11411,413,608,4060800,4274388,4127370061,407 +BK,POINT (-73.9718084463328 40.590544390004084),9991,Free,BPL,Gravesend - Brooklyn Public Library,303 AVENUE X,40.59054439,-73.9718084463,992079.8111,154428.920851,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK26,Gravesend,47,11223,315,386,3038600,3194486,3071740096,408 +QU,POINT (-73.82691580962688 40.771125524733456),9992,Free,QPL,Mitchell-Linden,29-42 UNION STREET,40.7711255247,-73.8269158096,1032191.69413,220265.971919,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11354,407,88901,4088901,4445300,4043430110,409 +QU,POINT (-73.82888468513289 40.75777406826378),9993,Free,QPL,Flushing,41-17 MAIN STREET,40.7577740683,-73.8288846851,1031655.84842,215400.533816,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11355,407,853,4085300,4114282,4050430011,410 +QU,POINT (-73.75568167109337 40.73448626374406),9994,Free,QPL,Windsor Park,79-50 BELL BOULEVARD,40.7344862637,-73.7556816711,1051959.65722,206964.163877,Library,,Bayside,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN42,Oakland Gardens,23,11364,411,129103,4129103,4164306,4077720001,411 +MN,POINT (-73.97263247173767 40.756857177635375),9995,Free,NYPL,Terrence Cardinal Cooke-Cathedral,560 LEXINGTON AVENUE,40.7568571776,-73.9726324717,991832.018945,215021.362986,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,100,1010000,1036451,1013050013,412 +QU,POINT (-73.80987988426155 40.733034241642116),9996,Free,QPL,Pomonok,158-21 JEWEL AVENUE,40.7330342416,-73.8098798843,1036940.50025,206397.90123,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN38,Pomonok-Flushing Heights-Hillcrest,24,11365,408,122701,4122701,4438294,4067900022,413 +BX,POINT (-73.91467001459131 40.886273377349106),9997,Free,NYPL,Spuyten Duyvil,650 WEST 235 STREET,40.8862733773,-73.9146700146,1007844.25595,262182.691892,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX22,North Riverdale-Fieldston-Riverdale,11,10463,208,309,2030900,2085867,2059150070,414 +QU,POINT (-73.74567356126445 40.67695272804687),9998,Free,QPL,Laurelton,134-26 225 STREET,40.676952728,-73.7456735613,1054794.1253,186010.952175,Library,,Laurelton,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN66,Laurelton,31,11413,413,630,4063000,4281443,4131050007,415 +BX,POINT (-73.84662165506408 40.841105087695),10009,Free,NYPL,Westchester Square,2521 GLEBE AVENUE,40.8411050877,-73.8466216551,1026688.83768,245751.790042,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10461,210,200,2020000,2041911,2039860034,426 +MN,POINT (-73.92585330956238 40.86572954134633),10010,Free,NYPL,Inwood,4790 BROADWAY,40.8657295413,-73.9258533096,1004758.34381,254694.945056,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN01,Marble Hill-Inwood,10,10034,112,291,1029100,1064894,1022330013,427 +BK,POINT (-73.98900778378011 40.638885166836765),10011,Free,BPL,Borough Park - Brooklyn Public Library,1265 43 STREET,40.6388851668,-73.9890077838,987300.724858,172039.662204,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,39,11219,312,224,3022400,3135907,3055980048,428 +QU,POINT (-73.92166916032153 40.740808781730195),10012,Free,QPL,Sunnyside,43-06 GREENPOINT AVENUE,40.7408087817,-73.9216691603,1005956.34207,209182.936999,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,18502,4018502,4002111,4001730016,429 +QU,POINT (-73.89310456490118 40.72699537010918),10013,Free,QPL,Maspeth,69-70 GRAND AVENUE,40.7269953701,-73.8931045649,1013878.04539,204158.650131,Library,,Maspeth,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN30,Maspeth,30,11378,405,49302,4049302,4308052,4027960008,430 +MN,POINT (-73.95706390519638 40.81377343142184),10014,Free,NYPL,George Bruce,518 WEST 125 STREET,40.8137734314,-73.9570639052,996135.037898,235759.625971,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,211,1021100,1059688,1019800022,431 +MN,POINT (-73.98445465008835 40.7742029053818),10015,Free,NYPL,Riverside,127 AMSTERDAM AVENUE,40.7742029054,-73.9844546501,988555.629828,221340.182369,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,1077844,1011377501,432 +MN,POINT (-73.94119767303536 40.81482040920949),10016,Free,NYPL,Countee Cullen,104 WEST 136 STREET,40.8148204092,-73.941197673,1000526.67511,236143.627828,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,1058275,1019200026,433 +QU,POINT (-73.87386662995279 40.76242212968529),10017,Free,QPL,East Elmhurst,95-06 ASTORIA BOULEVARD,40.7624221297,-73.87386663,1019191.60596,217072.829356,Library,,East Elmhurst,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN27,East Elmhurst,21,11369,403,353,4035300,4437122,4013750001,434 +QU,POINT (-73.71709897074058 40.73515699027038),10018,Free,QPL,Bellerose,250-06 HILLSIDE AVENUE,40.7351569903,-73.7170989707,1062651.52855,207240.707288,Library,,Bellerose,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,157101,4157101,4175514,4086040085,435 +BK,POINT (-73.90860343294449 40.671526655858436),10019,Free,BPL,Brownsville - Brooklyn Public Library,61 GLENMORE AVENUE,40.6715266559,-73.9086034329,1009603.33478,183944.897908,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,41,11212,316,906,3090600,3080669,3034890150,436 +BK,POINT (-73.9481022990789 40.661189307734446),10020,Free,BPL,Crown Heights - Brooklyn Public Library,560 NEW YORK AVENUE,40.6611893077,-73.9481022991,998648.613907,180169.748962,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,804,3080400,3106505,3047910046,437 +BK,POINT (-73.93365084956477 40.66848651013449),10021,Free,BPL,Eastern Parkway - Brooklyn Public Library,1044 EASTERN PARKWAY,40.6684865101,-73.9336508496,1002656.04192,182831.030713,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11213,309,351,3035100,3037543,3013960006,438 +QU,POINT (-73.7770088139747 40.78253120387376),10022,Free,QPL,Bay Terrace,18-36 BELL BOULEVARD,40.7825312039,-73.777008814,1046004.56972,224452.683034,Library,,Bayside,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN47,Ft. Totten-Bay Terrace-Clearview,19,11360,407,99704,4099704,4131148,4058650082,439 +MN,POINT (-73.95954994584243 40.764915006253425),10023,Free,NYPL,67th Street,328 EAST 67 STREET,40.7649150063,-73.9595499458,995455.102906,217958.496876,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,118,1011800,1044749,1014410038,441 +MN,POINT (-73.9564040689291 40.77360582062097),10024,Free,NYPL,Yorkville,222 EAST 79 STREET,40.7736058206,-73.9564040689,996324.968948,221125.267117,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10075,108,134,1013400,1044180,1014330037,442 +QU,POINT (-73.81606162011519 40.5858394078497),10025,Free,QPL,Peninsula,92-25 ROCKAWAY BEACH BOULEVARD,40.5858394078,-73.8160616201,1035339.88403,152767.157114,Library,,Rockaway Beach,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,4303629,4161350013,443 +SI,POINT (-74.19323685600897 40.53405829989932),10026,Free,NYPL,Huguenot Park,830 HUGUENOT AVENUE,40.5340582999,-74.193236856,930535.801971,133907.647917,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI32,Rossville-Woodrow,51,10312,503,20804,5020804,5083401,5068170001,444 +BK,POINT (-73.98868209572987 40.59265312974389),10027,Free,BPL,Ulmer Park - Brooklyn Public Library,2602 BATH AVENUE,40.5926531297,-73.9886820957,987393.290946,155196.131259,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK29,Bensonhurst East,47,11214,313,304,3030400,3186777,3068970035,445 +QU,POINT (-73.76230411230962 40.720168429639706),10028,Free,QPL,Hollis,202-05 HILLSIDE AVENUE,40.7201684296,-73.7623041123,1050138.49288,201742.701879,Library,,Hollis,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN06,Jamaica Estates-Holliswood,23,11423,408,478,4047800,4224387,4105320120,446 +BK,POINT (-73.93321325624171 40.61976819625962),10029,Free,BPL,Flatlands - Brooklyn Public Library,2065 FLATBUSH AVENUE,40.6197681963,-73.9332132562,1002790.96816,165081.715818,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK58,Flatlands,45,11234,318,650,3065000,3219626,3078680039,447 +BK,POINT (-73.97459470881002 40.63569422245231),10030,Free,BPL,Kensington - Brooklyn Public Library,410 DITMAS AVENUE,40.6356942225,-73.9745947088,991301.194875,170877.946024,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK41,Kensington-Ocean Parkway,39,11218,312,484,3048400,3127139,3053980004,448 +SI,POINT (-74.14850245031431 40.60957749941231),10031,Free,NYPL,Todt Hill-Westerleigh,2550 VICTORY BOULEVARD,40.6095774994,-74.1485024503,943017.288819,161396.860983,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,50,10314,501,18901,5018901,5035398,5020990005,449 +QU,POINT (-73.73182668157682 40.759245134770175),10032,Free,QPL,North Hills,57-04 MARATHON PARKWAY,40.7592451348,-73.7318266816,1058543.12306,216003.911218,Library,,Little Neck,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN45,Douglas Manor-Douglaston-Little Neck,23,11362,411,152901,4152901,4171760,4082760657,450 +QU,POINT (-73.79167861112357 40.68031131164878),10033,Free,QPL,Baisley Park,117-11 SUTPHIN BOULEVARD,40.6803113116,-73.7916786111,1042030.53174,187200.879257,Library,Temporary Closing reopen in Summer 2019,Jamaica,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN76,Baisley Park,28,11436,412,288,4028800,4264849,4122040099,451 +QU,POINT (-73.87579710893358 40.702576664826395),10034,Free,QPL,Glendale,78-60 73 PLACE,40.7025766648,-73.8757971089,1018687.73787,195268.509119,Library,,Glendale,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN19,Glendale,30,11385,405,623,4062300,4090100,4036960047,452 +BK,POINT (-73.9575546134494 40.70693042467486),10035,Free,BPL,Williamsburgh - Brooklyn Public Library,240 DIVISION AVENUE,40.7069304247,-73.9575546134,996018.067987,196833.151003,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK72,Williamsburg,33,11211,301,529,3052900,3060090,3021890001,454 +BK,POINT (-73.95310584865699 40.610256667276076),10036,Free,BPL,Kings Highway - Brooklyn Public Library,2115 OCEAN AVENUE,40.6102566673,-73.9531058487,997270.3519,161612.833977,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK44,Madison,48,11229,315,550,3055000,3182576,3067830068,455 +QU,POINT (-73.82482969850855 40.68690728824833),10037,Free,QPL,Lefferts,103-34 LEFFERTS BOULEVARD,40.6869072882,-73.8248296985,1032830.87264,189583.852838,Library,,Richmond Hill,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN55,South Ozone Park,28,11419,410,106,4010600,4203685,4095560020,458 +BK,POINT (-73.98342743289784 40.668216693255424),10038,Free,BPL,Park Slope - Brooklyn Public Library,431 6 AVENUE,40.6682166933,-73.9834274329,988847.445846,182726.192996,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,153,3015300,3022144,3010060001,459 +BX,POINT (-73.87502060024048 40.82999287527917),10039,Free,NYPL,Clason's Point,1215 MORRISON AVENUE,40.8299928753,-73.8750206002,1018836.80778,241690.718112,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX08,West Farms-Bronx River,18,10472,209,62,2006200,2025381,2037770062,460 +QU,POINT (-73.93647198749625 40.760643117562694),10040,Free,QPL,"Ravenswood, Now a Family Literacy Center",35-32 21 STREET,40.7606431176,-73.9364719875,1001849.07503,216405.901884,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11106,401,43,4004300,4430693,4003320002,461 +QU,POINT (-73.9097937387323 40.745341712986715),10041,Free,QPL,Woodside,54-22 SKILLMAN AVENUE,40.745341713,-73.9097937387,1009245.45098,210837.593138,Library,,Woodside,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,251,4025100,4030847,4013170085,462 +QU,POINT (-73.78190891663384 40.729252946349156),10042,Free,QPL,Hillcrest,187-05 UNION TURNPIKE,40.7292529463,-73.7819089166,1044695.8791,205038.323897,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN41,Fresh Meadows-Utopia,24,11366,408,1333,4133300,4155032,4072040040,463 +BK,POINT (-73.93961842135727 40.704559063938675),10043,Free,BPL,Bushwick - Brooklyn Public Library,340 BUSHWICK AVENUE,40.7045590639,-73.9396184214,1000991.50784,195972.112043,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,34,11206,301,489,3048900,3071470,3030980019,464 +BX,POINT (-73.90462886007782 40.820641564719494),10044,Free,NYPL,Woodstock,761 EAST 160 STREET,40.8206415647,-73.9046288601,1010646.72902,238273.390957,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10456,201,77,2007700,2004700,2026570030,465 +BK,POINT (-73.95128349802154 40.69162308733465),9999,Free,BPL,Marcy - Brooklyn Public Library,617 DEKALB AVENUE,40.6916230873,-73.951283498,997759.848625,191257.138861,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,253,3025300,3049472,3017740081,416 +QU,POINT (-73.78227404721558 40.74154357463139),10000,Free,QPL,Fresh Meadows,193-20 HORACE HARDING EXPRESSWAY,40.7415435746,-73.7822740472,1044583.55025,209515.920913,Library,,Fresh Meadows,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN41,Fresh Meadows-Utopia,23,11365,408,1347,4134700,4444054,4071170200,417 +BK,POINT (-73.9667748761715 40.57610774698186),10001,Free,BPL,Brighton Beach - Brooklyn Public Library,16 BRIGHTON 1 ROAD,40.576107747,-73.9667748762,993479.809941,149169.780779,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK19,Brighton Beach,48,11235,313,36001,3036001,3245028,3086800032,418 +QU,POINT (-73.78430296366649 40.757545679612846),10002,Free,QPL,East Flushing,196-36 NORTHERN BOULEVARD,40.7575456796,-73.7843029637,1044006.96709,215344.594295,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN48,Auburndale,19,11358,411,145101,4145101,4124564,4055200018,419 +BX,POINT (-73.84083712785493 40.88889489584642),10003,Free,NYPL,Edenwald,1255 EAST 233 STREET,40.8888948958,-73.8408371279,1028257.74202,263166.306066,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX62,Woodlawn-Wakefield,12,10466,212,426,2042600,2066596,2049560001,420 +BK,POINT (-74.02953835191357 40.633625713382486),10004,Free,BPL,Bay Ridge - Brooklyn Public Library,7223 RIDGE BOULEVARD,40.6336257134,-74.0295383519,976051.427146,170124.692281,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11209,310,66,3006600,3147279,3059070001,421 +BK,POINT (-73.99134798814833 40.69568255523745),10005,Free,BPL,Brooklyn Heights - Brooklyn Public Library,280 CADMAN PLAZA WEST,40.6956825552,-73.9913479881,986649.192368,192732.484336,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,502,3000502,3001939,3002390016,422 +MN,POINT (-73.97745211592564 40.784834636708375),10006,Free,NYPL,St. Agnes,444 AMSTERDAM AVENUE,40.7848346367,-73.9774521159,990494.140059,225214.103099,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032683,1012290031,423 +QU,POINT (-73.90941701784229 40.776817012248046),10007,Free,QPL,Steinway,21-45 31 STREET,40.7768170122,-73.9094170178,1009337.97901,222305.178799,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN72,Steinway,22,11105,401,113,4011300,4016923,4008310015,424 +QU,POINT (-73.86197684397808 40.7508940803989),10008,Free,QPL,Corona,38-23 104 STREET,40.7508940804,-73.861976844,1022491.94286,212877.757037,Library,,Corona,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN26,North Corona,21,11368,403,403,4040300,4044596,4017750077,425 +QU,POINT (-73.84179686376497 40.6638044606062),10045,Free,QPL,Howard Beach,92-06 156 AVENUE,40.6638044606,-73.8417968638,1028140.48898,181157.891015,Library,,Howard Beach,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN57,Lindenwood-Howard Beach,32,11414,410,892,4089200,4292455,4139570001,466 +MN,POINT (-73.98306309992394 40.74812469636721),10046,Free,NYPL,Science Industry And Business,188 MADISON AVENUE,40.7481246964,-73.9830630999,988942.887584,211839.106883,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1087934,1008647502,467 +MN,POINT (-73.95016588975744 40.7612533724379),10047,Free,NYPL,Roosevelt Island,524 MAIN STREET,40.7612533724,-73.9501658898,998055.346721,216625.783006,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10044,108,23801,1023801,1084695,1013730030,468 +BX,POINT (-73.85018145790006 40.82660922540281),10048,Free,NYPL,Castle Hill,947 CASTLE HILL AVENUE,40.8266092254,-73.8501814579,1025712.89606,240468.714322,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX59,Westchester-Unionport,18,10473,209,98,2009800,2022944,2036880042,469 +BX,POINT (-73.81909363645815 40.82290357142661),10049,Free,NYPL,Throg's Neck,3025 CROSS BRONX EXPRESSWAY,40.8229035714,-73.8190936365,1034319.35523,239134.854129,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,158,2015800,2077131,2054390001,471 +QU,POINT (-73.7705902160538 40.67287520439724),10050,Free,QPL,Rochdale Village,169-09 137 AVENUE,40.6728752044,-73.7705902161,1047886.74312,184506.315749,Library,,Jamaica,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN02,Springfield Gardens North,28,11434,412,33402,4033402,4270057,4124950175,472 +QU,POINT (-73.90257237496407 40.705172312942366),10051,Free,QPL,Ridgewood,20-12 MADISON STREET,40.7051723129,-73.902572375,1011262.71105,196204.789071,Library,,Ridgewood,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN20,Ridgewood,30,11385,405,589,4058900,4083512,4034910001,473 +QU,POINT (-73.7520918927301 40.60477211298186),10052,Free,QPL,Far Rockaway,1637 CENTRAL AVENUE,40.604772113,-73.7520918927,1053088.26093,159708.593034,Library,,Far Rockaway,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,103202,4103202,4298240,4155590025,474 +BK,POINT (-73.94793571283621 40.71364488802169),10053,Free,BPL,Leonard - Brooklyn Public Library,81 DEVOE STREET,40.713644888,-73.9479357128,998683.47309,199280.871173,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,503,3050300,3068818,3027620021,475 +QU,POINT (-73.79022739174682 40.69554014655025),10054,Free,QPL,South Jamaica,108-41 GUY R BREWER BOULEVARD,40.6955401466,-73.7902273917,1042419.75799,192750.132922,Library,,Jamaica,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,258,4025800,4539786,4101710008,476 +BK,POINT (-73.97604048939435 40.61591607849325),10055,Free,BPL,Ryder - Brooklyn Public Library,5902 23 AVENUE,40.6159160785,-73.9760404894,990901.891868,163672.129727,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,446,3044600,3172049,3065480037,477 +BK,POINT (-74.0313694054087 40.61637311059178),10056,Free,BPL,Fort Hamilton - Brooklyn Public Library,9424 FOURTH AVENUE,40.6163731106,-74.0313694054,975540.954742,163839.288185,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11209,310,54,3005400,3155499,3061140037,478 +QU,POINT (-73.82005265821793 40.600732105185145),10057,Free,QPL,Broad Channel,16-26 CROSS BAY BOULEVARD,40.6007321052,-73.8200526582,1034220.20713,158190.630847,Library,,Broad Channel,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,107201,4107201,4297581,4154810530,480 +SI,POINT (-74.13853387646311 40.566530146210184),10058,Free,NYPL,Richmondtown,200 CLARKE AVENUE,40.5665301462,-74.1385338765,945760.325655,145709.109879,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI54,Great Kills,51,10306,503,14606,5014606,5060744,5044700001,481 +MN,POINT (-73.98215810414632 40.75318404583828),10059,Free,NYPL,Stephen A. Schwarzman Building,5 AVENUE & 42 STREET,40.7531840458,-73.9821581041,989193.268973,213682.440795,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,1034194,1012570001,482 +MN,POINT (-74.00533101445356 40.72998291458653),10060,Free,NYPL,Hudson Park,66 LEROY STREET,40.7299829146,-74.0053310145,982772.476696,205229.072859,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1009760,1005820018,483 +QU,POINT (-73.80926181741813 40.674776926080064),10061,Free,QPL,South Ozone Park,128-16 ROCKAWAY BOULEVARD,40.6747769261,-73.8092618174,1037158.009,185173.439742,Library,,South Ozone Park,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN55,South Ozone Park,28,11420,410,818,4081800,4254814,4117500057,484 +QU,POINT (-73.85367277849076 40.71118562911129),10062,Free,QPL,North Forest Park,98-27 METROPOLITAN AVENUE,40.7111856291,-73.8536727785,1024816.90672,198414.48183,Library,,Forest Hills,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,729,4072900,4076687,4032070022,485 +MN,POINT (-73.9991692843131 40.73460552554825),10063,Free,NYPL,Jefferson Market,425 AVENUE OF AMERICAS,40.7346055255,-73.9991692843,984480.221969,206913.190882,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,71,1007100,1082668,1006060001,486 +QU,POINT (-73.84648872837485 40.68086184815843),10064,Free,QPL,Ozone Park,92-24 ROCKAWAY BOULEVARD,40.6808618482,-73.8464887284,1026827.92992,187370.057724,Library,,Ozone Park,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN56,Ozone Park,32,11417,410,54,4005400,4189526,4091130030,488 +BK,POINT (-73.90522231153629 40.664453792980446),10065,Free,BPL,Stone Avenue - Brooklyn Public Library,581 MOTHER GASTON BOULEVARD,40.664453793,-73.9052223115,1010544.04287,181369.05201,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,41,11212,316,910,3091000,3084596,3037940018,489 +BK,POINT (-73.96596507806375 40.640803547205046),10066,Free,BPL,Cortelyou - Brooklyn Public Library,1305 CORTELYOU ROAD,40.6408035472,-73.9659650781,993695.61069,172740.223795,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,1522,3152200,3118362,3051440080,490 +QU,POINT (-73.8316254169407 40.700765267977815),10067,Free,QPL,Richmond Hill,118-14 HILLSIDE AVENUE,40.700765268,-73.8316254169,1030936.47912,194629.017944,Library,,Richmond Hill,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,132,4013200,4193458,4092640056,491 +MN,POINT (-73.98204888964264 40.738087120390595),10068,Free,NYPL,Epiphany,228 EAST 23 STREET,40.7380871204,-73.9820488896,989224.655065,208182.154224,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1019661,1009030046,492 +MN,POINT (-73.98853727049418 40.714456459735864),10069,Free,NYPL,Seward Park,192 EAST BROADWAY,40.7144564597,-73.9885372705,987427.705903,199572.469999,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,1,10002,103,1401,1001401,1004053,1003110031,493 +BK,POINT (-73.93480547027619 40.68300490204431),10070,Free,BPL,Macon - Brooklyn Public Library,361 LEWIS AVENUE,40.683004902,-73.9348054703,1002331.79978,188120.254715,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,36,11233,303,295,3029500,3046408,3016650001,494 +MN,POINT (-73.94095298905107 40.814688627862886),10071,Free,NYPL,Schomburg Center For Research In Black Culture,515 MALCOLM X BOULEVARD,40.8146886279,-73.9409529891,1000594.43679,236095.660732,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,228,1022800,1058276,1019200029,495 +BX,POINT (-73.91008714449384 40.844001911750446),10072,Free,NYPL,Grand Concourse,155 EAST 173 STREET,40.8440019118,-73.9100871445,1009127.25502,246782.825054,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,204,22703,2022703,2007870,2028240034,496 +BK,POINT (-73.91998488083019 40.63263699303789),10073,Free,BPL,Paerdegat - Brooklyn Public Library,850 EAST 59 STREET,40.632636993,-73.9199848808,1006459.07335,169773.235963,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK58,Flatlands,46,11234,318,722,3072200,3214944,3077620053,497 +BX,POINT (-73.84506427532864 40.87013970297055),10074,Free,NYPL,Eastchester,1385 EAST GUNHILL ROAD,40.870139703,-73.8450642753,1027101.04421,256330.955892,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,2061767,2047620022,498 +SI,POINT (-74.11195814748115 40.57193184836513),10075,Free,NYPL,New Dorp,309 NEW DORP LANE,40.5719318484,-74.1119581475,953146.526106,147666.523943,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052750,5036430005,499 +BX,POINT (-73.85958124409599 40.891085065406706),10076,Free,NYPL,Wakefield,4100 LOWERRE PLACE,40.8910850654,-73.8595812441,1023073.81276,263955.410459,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX44,Williamsbridge-Olinville,12,10466,212,420,2042000,2063175,2048320020,500 +BK,POINT (-73.91702120710569 40.61986842104019),10077,Free,BPL,Mill Basin - Brooklyn Public Library,2385 RALPH AVENUE,40.619868421,-73.9170212071,1007286.0799,165122.073021,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK45,Georgetown-Marine Park-Bergen Beach-Mill Basin,46,11234,318,69602,3069602,3235910,3083630009,501 +SI,POINT (-74.11482187344863 40.63450894226954),10078,Free,NYPL,West New Brighton,976 CASTLETON AVENUE,40.6345089423,-74.1148218734,952380.829147,170465.980968,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI35,New Brighton-Silver Lake,49,10310,501,105,5010500,5004936,5001780115,502 +MN,POINT (-73.97990765435947 40.74382262984723),10079,Free,NYPL,Kips Bay,446 THIRD AVENUE,40.7438226298,-73.9799076544,989817.560047,210271.911199,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018325,1008860051,503 +MN,POINT (-73.99335691118674 40.74046545561088),10080,Free,NYPL,Andrew Heiskell Braille & Talking Book Library,40 WEST 20 STREET,40.7404654556,-73.9933569112,986090.883117,209048.217124,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1076145,1008217501,504 +BX,POINT (-73.90119379160791 40.8690393928626),10081,Free,NYPL,Jerome Park,118 EAMES PLACE,40.8690393929,-73.9011937916,1011577.59395,255907.586003,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX28,Van Cortlandt Village,14,10468,208,26701,2026701,2015263,2032480070,505 +QU,POINT (-73.91862332039818 40.75852926696433),10082,Free,QPL,Broadway,40-20 BROADWAY,40.758529267,-73.9186233204,1006794.3801,215639.846985,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,157,4015700,4011018,4006760050,506 +QU,POINT (-73.79440753070666 40.705962093755474),10083,Free,QPL,Central Adult Learning Center,91-14 MERRICK BOULEVARD,40.7059620938,-73.7944075307,1041251.69963,196544.39994,Library,,Jamaica,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,460,4046000,4209597,4097950001,508 +SI,POINT (-74.15111164313684 40.55242326280796),10084,Free,NYPL,Great Kills,56 GIFFORDS LANE,40.5524232628,-74.1511116431,942256.908778,140575.415093,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI54,Great Kills,51,10308,503,14604,5014604,5070285,5054360019,509 +MN,POINT (-74.00786167235626 40.713606515321636),10085,Free,NYPL,New Amsterdam,9 MURRAY STREET,40.7136065153,-74.0078616724,982070.553888,199262.699293,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,1001446,1001347503,510 +MN,POINT (-73.97960559590102 40.71939728377857),10086,Free,NYPL,Hamilton Fish Park,415 EAST HOUSTON STREET,40.7193972838,-73.9796055959,989903.331857,201373.013314,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,2,10002,103,2201,1002201,1004070,1003350001,511 +MN,POINT (-74.00749969955856 40.703601800097175),10099,Free,Manhattan Down Alliance,14,"42 South Street, New York, NY 10005, USA",40.7036018001,-74.0074996996,982170.589449,195617.67115,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000867,1000350001,525 +MN,POINT (-74.00840000045271 40.703399700015325),10100,Free,Manhattan Down Alliance,15,"29-43 Old Slip, New York, NY 10004, USA",40.7033997,-74.0084000005,981920.959699,195544.062702,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1083346,1000327501,526 +MN,POINT (-74.00920099964776 40.70410160021552),10101,Free,Manhattan Down Alliance,16,"13 Hanover Square, New York, NY 10004, USA",40.7041016002,-74.0092009996,981698.896166,195799.808253,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1000855,1000300019,527 +MN,POINT (-74.00930020019983 40.703300499770705),10102,Free,Manhattan Down Alliance,17,"55 Water Street, New York, NY 10041, USA",40.7033004998,-74.0093002002,981671.36046,195507.946304,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10041,101,9,1000900,1083346,1000327501,528 +MN,POINT (-74.00959780018096 40.70289989980615),10103,Free,Manhattan Down Alliance,18,"55 Water Street, New York, NY 10041, USA",40.7028998998,-74.0095978002,981588.829786,195362.004667,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10041,101,9,1000900,1083346,1000327501,529 +MN,POINT (-74.00949859978107 40.70280080041241),10104,Free,Manhattan Down Alliance,19,"55 Water Street, New York, NY 10041, USA",40.7028008004,-74.0094985998,981616.331043,195325.8968,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10041,101,9,1000900,1083346,1000327501,530 +MN,POINT (-74.01069639958031 40.70309830005908),10105,Free,Manhattan Down Alliance,20,"23-39 Water Street, New York, NY 10004, USA",40.7030983001,-74.0106963996,981284.231313,195434.323092,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1000007,1000050010,531 +MN,POINT (-74.01260380012555 40.70230100008717),10106,Free,Manhattan Down Alliance,21,"77 Whitehall Street, New York, NY 10004, USA",40.7023010001,-74.0126038001,980755.3285,195143.91324,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,0,1000040001,532 +MN,POINT (-74.01249690054836 40.701900500092115),10107,Free,Manhattan Down Alliance,22,"83-85 Whitehall Street, New York, NY 10004, USA",40.7019005001,-74.0124969005,980784.947863,194997.994896,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,0,1000040001,533 +MN,POINT (-74.00930019949645 40.70159909977817),10108,Free,Manhattan Down Alliance,23,"Downtown Manhattan Heliport, 6 East River Piers, New York, USA",40.7015990998,-74.0093001995,981671.294844,194888.075497,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1075697,1000020023,534 +MN,POINT (-74.01399989972454 40.70510099958673),10109,Free,Manhattan Down Alliance,24,"11-27 Canyon of Heroes, New York, NY 10004, USA",40.7051009996,-74.0139998997,980368.39325,196164.095583,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,13,1001300,1000044,1000130005,535 +MN,POINT (-74.01390080010047 40.70510099989052),10110,Free,Manhattan Down Alliance,25,"10-30 Broadway, New York, NY 10004, USA",40.7051009999,-74.0139008001,980395.869573,196164.091317,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1000811,1000220013,536 +MN,POINT (-74.01059719973493 40.70410159990894),10111,Free,Manhattan Down Alliance,26,"2-8 Coenties Alley, New York, NY 10004, USA",40.7041015999,-74.0105971997,981311.780471,195799.851888,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,0,1000290019,537 +MN,POINT (-74.0103988997371 40.70389940000423),10112,Free,Manhattan Down Alliance,27,"79 Pearl Street, New York, NY 10004, USA",40.7038994,-74.0103988997,981366.75313,195726.177823,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1000837,1000290023,538 +MN,POINT (-74.01010129974124 40.70439909968633),10113,Free,Manhattan Down Alliance,28,"95 Pearl Street, New York, NY 10004, USA",40.7043990997,-74.0101012997,981449.28807,195908.223719,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1000841,1000297502,539 +MN,POINT (-74.01020050028845 40.70429989958672),10114,Free,Manhattan Down Alliance,29,"54 Stone Street, New York, NY 10004, USA",40.7042998996,-74.0102005003,981421.779267,195872.08534,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1088620,1000297504,540 +MN,POINT (-74.01219939941016 40.707900999600604),10115,Free,Manhattan Down Alliance,30,"74 Broadway, New York, NY 10006, USA",40.7079009996,-74.0121993994,980867.741333,197184.145052,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,7,1000700,1000815,1000230007,541 +MN,POINT (-74.0130997003025 40.708698299667965),10116,Free,Manhattan Down Alliance,31,"111 Greenwich Street, New York, NY 10006, USA",40.7086982997,-74.0130997003,980618.178184,197474.661531,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10006,101,13,1001300,1001033,1000510013,542 +MN,POINT (-74.01180270041108 40.713001300400755),10117,Free,Manhattan Down Alliance,32,"250 Greenwich Street, New York, NY 10007, USA",40.7130013004,-74.0118027004,980977.975692,199042.32375,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,1086510,1000840036,543 +MN,POINT (-74.01180269983502 40.71329880027056),10118,Free,Manhattan Down Alliance,33,"250 Greenwich Street, New York, NY 10007, USA",40.7132988003,-74.0118026998,980977.990456,199150.711985,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,1086510,1000840036,544 +MN,POINT (-74.01210020052359 40.708198500234666),10119,Free,Manhattan Down Alliance,34,"75 Broadway, New York, NY 10006, USA",40.7081985002,-74.0121002005,980895.258994,197292.529677,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10006,101,13,1001300,1001028,1000490001,545 +MN,POINT (-74.0119018998201 40.708099399846105),10120,Free,Manhattan Down Alliance,35,"75 Broadway, New York, NY 10006, USA",40.7080993998,-74.0119018998,980950.232309,197256.416889,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10006,101,13,1001300,1001028,1000490001,546 +MN,POINT (-74.01180270007264 40.708000199845614),10121,Free,Manhattan Down Alliance,36,"74 Broadway, New York, NY 10006, USA",40.7080001998,-74.0118027001,980977.730286,197220.27162,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,7,1000700,1000815,1000230007,547 +SI,POINT (-74.10721300040866 40.6182370001918),10122,Limited Free,SPECTRUM,Clove Lakes Park - Stonehenge,Stonehenge building main lobby,40.6182370002,-74.1072130004,954485.438782,164535.007594,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,5141707,5003190001,548 +SI,POINT (-74.10721300040866 40.6182370001918),10123,Limited Free,SPECTRUM,Clove Lakes Park - Stonehenge,North Hallway Outside the Office,40.6182370002,-74.1072130004,954485.438782,164535.007594,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,5141707,5003190001,549 +SI,POINT (-74.10721300040866 40.6182370001918),10124,Limited Free,SPECTRUM,Clove Lakes Park - Stonehenge,South Hallway Outside the Office,40.6182370002,-74.1072130004,954485.438782,164535.007594,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,5141707,5003190001,550 +BK,POINT (-74.00872299961986 40.67719299965375),10125,Limited Free,SPECTRUM,Coffey Park,Open Seating,40.6771929997,-74.0087229996,981830.452006,185996.202861,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,85,3008500,3008423,3005320001,551 +MN,POINT (-73.94513700012985 40.80184599990367),10126,Free,Harlem,,3e 118th st_HCZ,40.8018459999,-73.9451370001,999439.217313,231415.884003,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,0,0,552 +MN,POINT (-73.94124400052675 40.80597400032325),10127,Free,Harlem,,35E125 unit 2,40.8059740003,-73.9412440005,1000516.01339,232920.558487,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,198,1019800,0,0,553 +MN,POINT (-73.94056599987053 40.80597099990387),10128,Free,Harlem,,35E125 unit 1,40.8059709999,-73.9405659999,1000703.71183,232919.591953,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,198,1019800,0,0,554 +BX,POINT (-73.894135643271 40.81868740333879),10087,Free,NYPL,Hunt's Point,877 SOUTHERN BOULEVARD,40.8186874033,-73.8941356433,1013551.8902,237564.755891,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX27,Hunts Point,17,10459,202,89,2008900,2005755,2027220063,512 +BX,POINT (-73.86322248483968 40.866804429026935),10088,Free,NYPL,Allerton,2740 BARNES AVENUE,40.866804429,-73.8632224848,1022080.87479,255107.424218,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX07,Bronxdale,13,10467,211,340,2034000,2053752,2045130016,513 +QU,POINT (-73.76836198066813 40.76012558120687),10089,Free,QPL,Bayside,214-20 NORTHERN BOULEVARD,40.7601255812,-73.7683619807,1048420.78077,216295.809912,Library,,Bayside,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN46,Bayside-Bayside Hills,19,11361,411,1471,4147100,4157389,4073330215,515 +QU,POINT (-73.8377356028173 40.57939087215374),10090,Free,QPL,Seaside,116-15 ROCKAWAY BEACH BOULEVARD,40.5793908722,-73.8377356028,1029324.1769,150405.901994,Library,,Rockaway Park,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,93402,4093402,4304786,4162260001,516 +MN,POINT (-73.94757600009885 40.815346999672784),10129,Free,Harlem,,2491 Frederick Douglas Blvd._HCZ,40.8153469997,-73.9475760001,998761.018866,236334.362683,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,215,1021500,1059446,1019590001,555 +MN,POINT (-73.94653699946018 40.81156800043304),10130,Free,Harlem,,245W129th,40.8115680004,-73.9465369995,999049.455625,234957.712221,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,556 +MN,POINT (-73.94391199958163 40.806296999910465),10131,Free,Harlem,,23 West 124th Street_HCZ,40.8062969999,-73.9439119996,999777.32917,233037.754447,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,1053457,1017220025,558 +MN,POINT (-73.95004200048066 40.81168399962114),10132,Free,Harlem,,2374 Frederick Douglas blvd,40.8116839996,-73.9500420005,998079.188537,234999.402098,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,1081504,1019330001,559 +MN,POINT (-73.94297100032956 40.815936000154316),10133,Free,Harlem,,2321ACP,40.8159360002,-73.9429710003,1000035.54781,236549.753,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,560 +MN,POINT (-73.93783399978895 40.81218100031431),10134,Free,Harlem,,2201 5th Ave_NYCHA,40.8121810003,-73.9378339998,1001458.43309,235182.639921,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10037,111,210,1021000,1081111,1017570001,561 +MN,POINT (-73.95609399970964 40.803489999954664),10135,Free,Harlem,,2117 Frederick Douglas Blvd._TALH,40.80349,-73.9560939997,996405.393,232013.140682,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,20102,1020102,1055836,1018480015,562 +MN,POINT (-73.94795499965329 40.81218599980754),10136,Free,Harlem,,211 129Th Street_HCZ,40.8121859998,-73.9479549997,998656.79565,235182.634999,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,563 +MN,POINT (-73.94629600050627 40.81259800003397),10137,Free,Harlem,,210 west 131st (new),40.812598,-73.9462960005,999115.938104,235333.018557,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,1081515,1019330050,564 +BK,POINT (-73.9860619926265 40.57663777607667),10091,Free,BPL,Coney Island - Brooklyn Public Library,1901 MERMAID AVENUE,40.5766377761,-73.9860619926,988121.893491,149361.441157,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,326,3032600,3189001,3070190043,517 +MN,POINT (-73.93593958842905 40.82656708013679),10092,Free,NYPL,Macomb's Bridge,2650 ADAM CLAYTON POWELL JR BOULEVARD,40.8265670801,-73.9359395884,1001978.99996,240424.384686,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,236,1023600,1084156,1020370011,518 +QU,POINT (-73.93930930198185 40.75780342796006),10093,Free,QPL,Long Island City,37-44 21 STREET,40.757803428,-73.939309302,1001063.77476,215370.753035,Library,,Long Island City,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,43,4004300,4463561,4003630001,519 +BX,POINT (-73.89450288645044 40.86298060519321),10094,Free,NYPL,Bronx Library Center,310 East Kingsbridge Road,40.8629806052,-73.8945028865,1013430.80678,253702.292842,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,39901,2039901,2116006,2031540083,520 +BX,POINT (-73.85695785375374 40.84802911005552),10095,Free,NYPL,Morris Park,985 MORRIS PARK AVENUE,40.8480291101,-73.8569578538,1023824.75876,248269.629823,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX37,Van Nest-Morris Park-Westchester Square,13,10462,211,252,2025200,2045398,2041260040,521 +MN,POINT (-73.99569899297096 40.72409636094782),10096,Free,NYPL,Mulberry Street,10 Jersey Street,40.7240963609,-73.995698993,985442.15574,203084.402936,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10012,102,43,1004300,1007931,1005107501,522 +MN,POINT (-73.97356771683344 40.754067875550625),10097,Free,NYPL,Grand Central,135 EAST 46 STREET,40.7540678756,-73.9735677168,991573.221234,214005.050058,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036206,1013010023,523 +MN,POINT (-74.00769809997276 40.70410159977697),10098,Free,Manhattan Down Alliance,13,"1-17 Gouverneur Lane, New York, NY 10005, USA",40.7041015998,-74.0076981,982115.595792,195799.767899,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000867,1000350001,524 +MN,POINT (-73.95253299979082 40.80427899964148),10140,Free,Harlem,,203 West 117 St. St. Nicholas Side _NYCHA,40.8042789996,-73.9525329998,997391.101331,232301.115172,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,1084042,1019230029,567 +MN,POINT (-73.9497260003647 40.8068579999527),10141,Free,Harlem,,2037 7Th Avenue_HCZ,40.806858,-73.9497260004,998167.671628,233241.169394,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1057699,1019060062,569 +MN,POINT (-73.95377799957153 40.801137000317276),10142,Free,Harlem,,1851 Adam Clayton Powell Jr Blvd_THAL,40.8011370003,-73.9537779996,997047.030824,231156.190296,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,1055002,1018227502,570 +MN,POINT (-73.95240000029278 40.80601600021756),10143,Free,Harlem,,182 St. Nicholas Street_NYCHA,40.8060160002,-73.9524000003,997427.577964,232933.985625,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,1058446,1019250015,571 +MN,POINT (-73.942537000136 40.805429000389),10144,Free,Harlem,,17 East 124th Street_NYCHA R,40.8054290004,-73.9425370001,1000158.18963,232721.758359,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,198,1019800,1054003,1017490010,572 +MN,POINT (-73.94469599979014 40.80047899981535),10145,Free,Harlem,,1780 Madison Ave_NYCHA,40.8004789998,-73.9446959998,999561.625861,230917.914854,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,1080650,1016220017,573 +MN,POINT (-73.94559799993849 40.79872800003588),10146,Free,Harlem,,1735 Madison Ave_NYCHA,40.798728,-73.9455979999,999312.291714,230279.808191,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,184,1018400,1080642,1016200023,574 +MN,POINT (-73.94878599976008 40.797893000007626),10147,Free,Harlem,,1330 5th Avenue_TAHL,40.797893,-73.9487859998,998429.807586,229975.056504,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,1084511,1015950031,575 +MN,POINT (-73.95282200052449 40.80152700009427),10148,Free,Harlem,,124w114,40.8015270001,-73.9528220005,997311.632329,231298.421967,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,1055032,1018230058,576 +MN,POINT (-73.95366100046522 40.80539299984032),10149,Free,Harlem,,pole 29 - 113SS2EACB,40.8053929998,-73.9536610005,997078.60294,232706.817444,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,0,0,577 +MN,POINT (-73.95049500026197 40.80884300010846),10152,Free,Harlem,,pole 47 - 124SS2E8,40.8088430001,-73.9504950003,997954.375795,233964.253906,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1079509,1019290057,581 +MN,POINT (-73.95053600014305 40.80558400010259),10154,Free,Harlem,,pole 26: 120NEC7av,40.8055840001,-73.9505360001,997943.696354,232776.878656,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,0,0,584 +MN,POINT (-73.95392200012988 40.80622999980563),10156,Free,Harlem,,pole 30: 8avSEC119,40.8062299998,-73.9539220001,997006.186746,233011.727924,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,0,0,586 +MN,POINT (-73.94235600052392 40.803087000039255),10160,Free,Harlem,,pole 35n MadSWC121,40.803087,-73.9423560005,1000208.85947,231868.518268,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,198,1019800,0,0,590 +MN,POINT (-73.94177999954863 40.80424200015452),10161,Free,Harlem,,pole 36 - MavSWC123,40.8042420002,-73.9417799995,1000368.04682,232289.430812,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,198,1019800,0,0,591 +MN,POINT (-73.94137400030125 40.80495799973863),10162,Free,Harlem,,pole 37 - 124SWCMad,40.8049579997,-73.9413740003,1000480.27199,232550.369595,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,0,0,592 +MN,POINT (-73.9428120001031 40.805623999623215),10163,Free,Harlem,,pole 38 - 124SEC5,40.8056239996,-73.9428120001,1000082.01163,232792.753624,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,0,1017190001,593 +MN,POINT (-73.94497699951847 40.806568999905735),10164,Free,Harlem,,pole 39: 124SS2E5av,40.8065689999,-73.9449769995,999482.433762,233136.66665,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,0,1017210061,594 +MN,POINT (-74.0019611005046 40.755838900410424),10165,Free,Transit Wireless,34 St - Hudson Yards (7),34 St - Hudson Yards (7),40.7558389004,-74.0019611005,983706.679881,214649.193127,Subway Station,SN 471,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,0,0,595 +MN,POINT (-73.95175299953408 40.77792500032023),10166,Free,Transit Wireless,86 St (Q),86 St (Q),40.7779250003,-73.9517529995,997612.330547,222699.564493,Subway Station,SN 476,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,14602,1014602,0,0,596 +MN,POINT (-73.95838599973804 40.7687750004074),10167,Free,Transit Wireless,72 St (Q),72 St (Q),40.7687750004,-73.9583859997,995776.860465,219364.971425,Subway Station,SN 477,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,126,1012600,0,0,597 +QU,POINT (-73.81151000032013 40.74243000034304),10880,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7424300003,-73.8115100003,1036481.35944,209820.088612,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,1215,4121500,0,0,1347 +MN,POINT (-73.95325999968578 40.75914500007295),10168,Free,Transit Wireless,Roosevelt Island (F),Roosevelt Island (F),40.7591450001,-73.9532599997,997198.607621,215857.161511,Subway Station,SN 222,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10044,108,23801,1023801,1089270,1013730001,598 +MN,POINT (-73.96611500006398 40.764630000244956),10169,Free,Transit Wireless,Lexington Av-63 St (F),Lexington Av-63 St (F),40.7646300002,-73.9661150001,993636.552081,217853.888161,Subway Station,SN 223,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,0,0,599 +MN,POINT (-73.9471140000512 40.78426700019652),10170,Free,Transit Wireless,96 St (Q),96 St (Q),40.7842670002,-73.9471140001,998895.737429,225010.911248,Subway Station,SN 475,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,5,10029,111,15602,1015602,0,0,600 +BK,POINT (-73.94339899994276 40.70737900006756),10171,Free,LinkNYC - Citybridge,bk-01-145892,145 MONTROSE AVENUE,40.7073790001,-73.9433989999,999942.633957,196998.799294,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020774,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,505,3050500,3071122,3030520030,4627 +BK,POINT (-73.99476547030949 40.68455251984148),10175,Free,LinkNYC - Citybridge,bk-06-145918,281 COURT STREET,40.6845525198,-73.9947654703,985701.771035,188677.411409,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020783,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11231,306,69,3006900,3006482,3004080000,4631 +BK,POINT (-73.99541762041412 40.6831796304481),10176,Free,LinkNYC - Citybridge,bk-06-145870,321 COURT STREET,40.6831796304,-73.9954176204,985520.92658,188177.217856,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020785,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,75,3007500,3006813,3004210000,4632 +QU,POINT (-73.93221564011701 40.753718220281506),10177,Free,LinkNYC - Citybridge,qu-01-145923,38-02 31 St,40.7537182203,-73.9322156401,1003030.15698,213883.820642,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020833,02/12/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,31,4003100,4004609,4003830010,4633 +BK,POINT (-73.98845600025118 40.696026999695306),10178,Free,City Tech,0,300 Jay Street,40.6960269997,-73.9884560003,987451.120554,192858.068074,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,617 +BK,POINT (-73.98811849951794 40.69592060040669),10179,Free,City Tech,0,300 Jay Street,40.6959206004,-73.9881184995,987544.713871,192819.316183,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,618 +BK,POINT (-73.98739410035041 40.69590219971288),10180,Free,City Tech,0,300 Jay Street,40.6959021997,-73.9873941004,987745.589126,192812.640343,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,619 +BK,POINT (-73.98848210031622 40.69511010037817),10181,Free,City Tech,0,300 Jay Street,40.6951101004,-73.9884821003,987443.926999,192524.013624,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,620 +BK,POINT (-73.98848210031622 40.69511010037817),10182,Free,City Tech,0,300 Jay Street,40.6951101004,-73.9884821003,987443.926999,192524.013624,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,621 +BK,POINT (-73.98739410035041 40.69590219971288),10183,Free,City Tech,0,300 Jay Street,40.6959021997,-73.9873941004,987745.589126,192812.640343,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,622 +BK,POINT (-73.98845600025118 40.696026999695306),10184,Free,City Tech,0,300 Jay Street,40.6960269997,-73.9884560003,987451.120554,192858.068074,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,623 +BK,POINT (-73.9873314005849 40.695037899730565),10185,Free,City Tech,0,300 Jay Street,40.6950378997,-73.9873314006,987763.021177,192497.75285,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,624 +QU,POINT (-73.91851800021892 40.76207300031748),10186,Free,LinkNYC - Citybridge,qu-01-146037,37-01 31 AVENUE,40.7620730003,-73.9185180002,1006822.35675,216930.9717,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020907,02/08/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4010553,4006590010,4634 +QU,POINT (-73.9145011394083 40.75352149984098),10187,Free,LinkNYC - Citybridge,qu-01-145956,48-18 NORTHERN BOULEVARD,40.7535214998,-73.9145011394,1007938.15865,213816.443152,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020914,11/07/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4000822,4001200010,4635 +QU,POINT (-73.9177027995097 40.75374562994489),10188,Free,LinkNYC - Citybridge,qu-01-145957,43-60 NORTHERN BOULEVARD,40.7537456299,-73.9177027995,1007051.03608,213897.251389,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020922,11/07/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4441943,4001430500,4636 +QU,POINT (-73.9265998292942 40.7523481746163),10189,Free,LinkNYC - Citybridge,"qu-01-146067 +qu-01-146067 +qu-01-146067",37-1 37 STREET,40.7523481746,-73.9265998293,1004586.4767,213385.922687,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020927,04/23/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,55,4005500,4004571,4003780001,4637 +QU,POINT (-73.92718300046863 40.75272399989677),10190,Free,LinkNYC - Citybridge,qu-01-146068,36-02 37 AVENUE,40.7527239999,-73.9271830005,1004424.78772,213522.713096,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020928,04/24/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,55,4005500,4004571,4003780001,4638 +QU,POINT (-73.82121000009099 40.748490000097334),10881,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7484900001,-73.8212100001,1033788.94684,212022.300743,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,837,4083700,0,0,1348 +QU,POINT (-73.91840165944299 40.75364064005968),10191,Free,LinkNYC - Citybridge,qu-01-145954,43-40 NORTHERN BOULEVARD,40.7536406401,-73.9184016594,1006857.44756,213858.819051,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020932,11/07/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4441943,4001430500,4639 +QU,POINT (-73.92521461055381 40.75652086016229),10192,Free,LinkNYC - Citybridge,qu-01-145921,35-12 35 AVENUE,40.7565208602,-73.9252146106,1004968.97167,214906.491497,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020933,10/09/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11106,401,57,4005700,4009594,4006390020,4640 +QU,POINT (-73.92247800033242 40.76393100040584),10193,Free,LinkNYC - Citybridge,qu-01-146040,32-01 31 AVENUE,40.7639310004,-73.9224780003,1005724.74838,217606.906371,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020959,05/31/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11102,401,63,4006300,4008587,4006160080,4641 +QU,POINT (-73.92126700013365 40.76320700018275),10194,Free,LinkNYC - Citybridge,qu-01-GF44202,33-20 31 AVENUE,40.7632070002,-73.9212670001,1006060.45046,217343.428552,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020960,09/09/9999 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4008904,4006230040,4642 +QU,POINT (-73.91900559987941 40.741303480065085),10195,Free,LinkNYC - Citybridge,qu-02-145985,45-59 46 STREET,40.7413034801,-73.9190055999,1006694.27728,209363.842477,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020965,05/23/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11377,402,235,4023500,4001553,4001530010,4643 +BK,POINT (-73.98810499946882 40.6951070002777),10196,Free,City Tech,0,300 Jay Street,40.6951070003,-73.9881049995,987548.497656,192522.898141,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,635 +BK,POINT (-73.98767100014612 40.69508799971249),10197,Free,City Tech,0,300 Jay Street,40.6950879997,-73.9876710001,987668.847153,192515.992314,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,636 +BK,POINT (-73.98219520055923 40.69370100020286),10198,Free,NYCHA,0,177 Myrtle Ave,40.6937010002,-73.9821952006,989187.395953,192010.928692,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257034,3020500001,638 +BK,POINT (-73.98290619949447 40.69386199992726),10199,Free,NYCHA,0,177 Myrtle Ave,40.6938619999,-73.9829061995,988990.21951,192069.546357,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257034,3020500001,639 +BK,POINT (-73.98290920015107 40.69372699999432),10200,Free,NYCHA,0,177 Myrtle Ave,40.693727,-73.9829092002,988989.397005,192020.361744,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257034,3020500001,640 +BK,POINT (-73.9824761997189 40.69385899958439),10201,Free,NYCHA,0,177 Myrtle Ave,40.6938589996,-73.9824761997,989109.461398,192068.476805,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257034,3020500001,641 +BK,POINT (-73.9821922004426 40.69383299960927),10202,Free,NYCHA,0,177 Myrtle Ave,40.6938329996,-73.9821922004,989188.21813,192059.020131,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257034,3020500001,642 +BK,POINT (-73.98118029955657 40.69489269977186),10203,Free,NYCHA,0,31 Fleet Walk,40.6948926998,-73.9811802996,989468.741847,192445.158795,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257043,3020500001,643 +BK,POINT (-73.98167919953572 40.694554999755674),10204,Free,NYCHA,0,62 Fleet Walk,40.6945549998,-73.9816791995,989330.421586,192322.095393,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,0,3020500001,644 +BK,POINT (-73.98115520028672 40.6953170001246),10205,Free,NYCHA,0,95 Navy Walk,40.6953170001,-73.9811552003,989475.668671,192599.745428,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3340606,3020500001,645 +BK,POINT (-73.98164820049885 40.69554399997073),10206,Free,NYCHA,0,5 Fleet Walk,40.695544,-73.9816482005,989338.942238,192682.419147,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,35,11201,302,15,3001500,3257046,3020500001,646 +BK,POINT (-73.97975220055783 40.69566999962934),10207,Free,NYCHA,0,9 Monument Walk,40.6956699996,-73.9797522006,989864.691187,192728.44038,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335232,3020340001,647 +BK,POINT (-73.98010319984303 40.69529500003753),10208,Free,NYCHA,0,50 Monument Walk,40.695295,-73.9801031998,989767.390528,192591.794656,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11205,302,2901,3002901,3335230,3020340001,648 +BK,POINT (-74.0055440003178 40.672582999901884),10209,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6725829999,-74.0055440003,982712.122815,184316.576299,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1084 +BK,POINT (-74.0082350005399 40.673348999716694),10210,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6733489997,-74.0082350005,981965.679426,184595.710583,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1085 +BK,POINT (-74.00484999959775 40.67303099970546),10211,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6730309997,-74.0048499996,982904.644083,184479.783977,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1086 +BK,POINT (-74.00691499992293 40.67296899991803),10212,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6729689999,-74.0069149999,982331.825675,184457.234154,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1087 +BK,POINT (-74.00414500010145 40.672213999777696),10213,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6722139998,-74.0041450001,983100.19192,184182.117578,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1088 +BK,POINT (-74.00368800039132 40.6711669997644),10214,Limited Free,SPECTRUM,Red Hook Park,Park Perimeter,40.6711669998,-74.0036880004,983226.945932,183800.660008,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,0,0,1089 +BK,POINT (-74.00404600053585 40.672356000138095),10215,Limited Free,SPECTRUM,Red Hook Recreation Center,Lobby,40.6723560001,-74.0040460005,983127.656432,184233.85107,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008670,3005820001,1090 +BK,POINT (-74.00430300001089 40.672412999727044),10216,Limited Free,SPECTRUM,Red Hook Recreation Center,Game Room,40.6724129997,-74.004303,983056.366877,184254.621042,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008670,3005820001,1091 +BK,POINT (-74.00374399942129 40.672289000326316),10217,Limited Free,SPECTRUM,Red Hook Recreation Center,Basketball Court,40.6722890003,-74.0037439994,983211.429231,184209.437405,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008670,3005820001,1092 +BK,POINT (-74.00464800041975 40.67251500026616),10218,Limited Free,SPECTRUM,Red Hook Recreation Center,Weight Room,40.6725150003,-74.0046480004,982960.667265,184291.787634,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008670,3005820001,1093 +BK,POINT (-74.00430300001089 40.672412999727044),10219,Limited Free,SPECTRUM,Red Hook Recreation Center,Computer Room,40.6724129997,-74.004303,983056.366877,184254.621042,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,38,11231,306,53,3005300,3008670,3005820001,1094 +MN,POINT (-73.98177400028261 40.773542000033096),10220,Limited Free,SPECTRUM,Richard Tucker Square,W 66th Street,40.773542,-73.9817740003,989298.145404,221099.535541,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,0,0,1095 +QU,POINT (-73.79989399946277 40.586555999969),10221,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 73 - Comfort Station and Beach,40.586556,-73.7998939995,1039829.92459,153038.072911,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,31,11692,414,954,4095400,0,4160930001,1096 +QU,POINT (-73.79997300000618 40.58654099968803),10222,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 73 - Comfort Station and Beach,40.5865409997,-73.799973,1039807.99451,153032.55783,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,31,11692,414,954,4095400,0,4160930001,1097 +QU,POINT (-73.81105100024656 40.58466900031557),10223,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 86 - NW Concession Area,40.5846690003,-73.8110510002,1036732.52855,152343.711439,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,0,4161500100,1098 +QU,POINT (-73.81100300045455 40.58455100023151),10224,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 86 - SW Concession Area and Beach,40.5845510002,-73.8110030005,1036745.95372,152300.74991,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,0,4161500100,1099 +QU,POINT (-73.81069400035676 40.584614000207104),10225,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 86 - SE Concession Shade Structure and Beach,40.5846140002,-73.8106940004,1036831.73209,152323.887659,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,4303674,4161500100,1100 +QU,POINT (-73.81068299984199 40.584726999857736),10226,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 86- SE Concession Shade Structure and Picnic Area,40.5847269999,-73.8106829998,1036834.69862,152365.062774,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,0,4161500100,1101 +QU,POINT (-73.81768600048643 40.583050000137455),10227,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 97 - NW Rear of Concession,40.5830500001,-73.8176860005,1034890.81931,151749.964923,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,94201,4094201,4549352,0,1103 +QU,POINT (-73.81787700027458 40.58291400039087),10228,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 97 - SW Concession and Beach,40.5829140004,-73.8178770003,1034837.86896,151700.306558,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,94201,4094201,0,4161890050,1104 +QU,POINT (-73.8175779994837 40.582824000281356),10229,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 97 - SW Concession and Beach,40.5828240003,-73.8175779995,1034920.98985,151667.690153,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,94201,4094201,0,4161890050,1105 +QU,POINT (-73.81718499973182 40.58295700013182),10230,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 97 - SE Concessiont and Beach,40.5829570001,-73.8171849997,1035030.05131,151716.372798,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,94201,4094201,0,4161890050,1106 +QU,POINT (-73.81668900003451 40.583098999901544),10231,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 97 - Comfort Station and Beach,40.5830989999,-73.816689,1035167.71541,151768.394676,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11693,414,94201,4094201,0,4161890050,1107 +QU,POINT (-73.82629599974491 40.5805589997895),10232,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 108 -NW Rear of Caracus Bar,40.5805589998,-73.8262959997,1032501.04817,150837.573047,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,4549357,4161890050,1108 +QU,POINT (-73.826272000456 40.580467000015496),10233,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 108 -SW Caracus Bar and Beach,40.580467,-73.8262720005,1032507.7811,150804.068521,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,4161890050,1109 +QU,POINT (-73.82595799972293 40.58055499962727),10234,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 108 -SE Caracus Bar and Beach,40.5805549996,-73.8259579997,1032594.93972,150836.302052,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,4549357,4161890050,1110 +QU,POINT (-73.82596899966403 40.58070400016349),10235,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 108 -NE Caracus Bar and Beach,40.5807040002,-73.8259689997,1032591.77634,150890.580487,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1111 +QU,POINT (-73.82662100030042 40.580351999675315),10236,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 108 - Comfort Station and Beach,40.5803519997,-73.8266210003,1032410.91974,150761.979038,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,4161890050,1112 +BK,POINT (-73.97509800003623 40.68082900042827),10237,Free,Transit Wireless,"Bergen St (2,3)","Bergen St (2,3)",40.6808290004,-73.975098,991156.832631,187321.763858,Subway Station,SN 339,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,35,11217,308,12902,3012902,0,0,1772 +MN,POINT (-73.98995100000275 40.7346730000957),10238,Free,Transit Wireless,"14 St-Union Square (L,N,Q,R,4,5,6)","14 St-Union Square (L,N,Q,R,4,5,6)",40.7346730001,-73.989951,987034.945862,206937.932631,Subway Station,SN 406,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,0,0,1773 +QU,POINT (-73.91957899984607 40.76256400043897),10239,Free,LinkNYC - Citybridge,qu-01-146038,35-19 31 AVENUE,40.7625640004,-73.9195789998,1006528.2717,217109.587484,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020984,03/08/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4009891,4006500000,4644 +QU,POINT (-73.95348371015089 40.744320490264364),10240,Free,LinkNYC - Citybridge,qu-02-146059,47-43 VERNON BOULEVARD,40.7443204903,-73.9534837102,997139.500128,210456.081434,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-020994,04/24/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000266,4000450000,4645 +QU,POINT (-73.91556999974964 40.76068600007456),10241,Free,LinkNYC - Citybridge,qu-01-146036,41-19 31 AVENUE,40.7606860001,-73.9155699997,1007639.50636,216426.415622,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021018,02/26/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,149,4014900,4011285,4006820000,4646 +QU,POINT (-73.9198187071978 40.75413551757354),10242,Free,LinkNYC - Citybridge,qu-01-145950,42-27 35 AVENUE,40.7541355176,-73.9198187072,1006464.67866,214038.756355,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021020,10/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11101,401,159,4015900,4307241,4006750060,4647 +QU,POINT (-73.95008600046086 40.7477930000105),10243,Free,LinkNYC - Citybridge,qu-02-146051,10-58 45 AVENUE,40.747793,-73.9500860005,998080.272524,211721.745898,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021068,07/11/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000419,4000500030,4648 +QU,POINT (-73.94985500042891 40.74849700018925),10244,Free,LinkNYC - Citybridge,qu-02-146061,10-50 44 DRIVE,40.7484970002,-73.9498550004,998144.131649,211978.272287,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021069,05/31/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000429,4000510020,4649 +QU,POINT (-73.92244781978523 40.75521990468029),10245,Free,LinkNYC - Citybridge,qu-01-145986,38-02 35 AVENUE,40.7552199047,-73.9224478198,1005735.91863,214433.177811,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021097,02/28/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11101,401,157,4015700,4010866,4006680010,4650 +BK,POINT (-73.9513107194256 40.7108698299119),10246,Free,LinkNYC - Citybridge,bk-01-145997,500 GRAND STREET,40.7108698299,-73.9513107194,997748.402125,198269.29544,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021107,04/10/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,513,3051300,3062881,3024000010,4651 +BK,POINT (-73.95953975999383 40.71385108996261),10247,Free,LinkNYC - Citybridge,bk-01-146015,219 GRAND STREET,40.71385109,-73.95953976,995466.517581,199354.297864,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021118,02/02/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,519,3051900,3342373,3023827500,4652 +BK,POINT (-73.94302999947352 40.705768000153505),10172,Free,LinkNYC - Citybridge,bk-01-145856,119 GRAHAM AVENUE,40.7057680002,-73.9430299995,1000045.32109,196411.930061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020775,08/10/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,505,3050500,3071340,3030790020,4628 +BK,POINT (-73.94298900019935 40.7044959999025),10173,Free,LinkNYC - Citybridge,bk-01-145855,103 SEIGEL STREET,40.7044959999,-73.9429890002,1000056.99003,195948.509728,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020776,04/26/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071403,3030880020,4629 +BK,POINT (-73.99378508518366 40.686571347201316),10174,Free,LinkNYC - Citybridge,bk-02-145877,219 COURT STREET,40.6865713472,-73.9937850852,985973.623837,189412.946683,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-020781,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,69,3006900,3006027,3003900000,4630 +BK,POINT (-73.96274066977371 40.71522663036393),10248,Free,LinkNYC - Citybridge,bk-01-146012,230 BERRY STREET,40.7152266304,-73.9627406698,994578.937992,199855.055392,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021119,03/29/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11249,301,555,3055500,3398694,3023790020,4653 +QU,POINT (-73.80419000021382 40.743810000027906),10882,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.74381,-73.8041900002,1038508.63458,210327.314631,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,20,11365,407,1211,4121100,0,0,1349 +BK,POINT (-73.97437495977447 40.6806498896746),10249,Free,LinkNYC - Citybridge,bk-08-145919,488 Bergen Street,40.6806498897,-73.9743749598,991357.394566,187256.566482,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021194,01/08/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11217,308,161,3016100,3028037,3011430010,4654 +BK,POINT (-73.95861248056396 40.71924621964141),10250,Free,LinkNYC - Citybridge,bk-01-146014,126 NORTH 8 STREET,40.7192462196,-73.9586124806,995722.65224,201320.028184,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021122,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,557,3055700,3324819,3023180020,4655 +BK,POINT (-73.95155240994606 40.714190879567425),10251,Free,LinkNYC - Citybridge,bk-01-146081,458 UNION AVENUE,40.7141908796,-73.9515524099,997680.72772,199479.217233,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021123,06/13/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,501,3050100,3068630,3027560000,4656 +BK,POINT (-73.95128474137769 40.71307987959567),10252,Free,LinkNYC - Citybridge,bk-01-146022,2 DEVOE STREET,40.7130798796,-73.9512847414,997755.156377,199074.4874,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021136,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,513,3051300,3068930,3027670010,4657 +BK,POINT (-73.95102614777018 40.71166635968024),10253,Free,LinkNYC - Citybridge,bk-01-146050,2 POWERS STREET,40.7116663597,-73.9510261478,997827.133267,198559.539282,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021137,03/30/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,513,3051300,3323015,3027790000,4658 +BK,POINT (-73.95070637001636 40.70957163013878),10254,Free,LinkNYC - Citybridge,bk-01-146047,1 TEN EYCK STREET,40.7095716301,-73.95070637,997916.215438,197796.415809,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021138,03/29/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11206,301,513,3051300,3069651,3027910000,4659 +BK,POINT (-73.9532335504349 40.7230135004019),10255,Free,LinkNYC - Citybridge,bk-01-145999,31 NASSAU AVENUE,40.7230135004,-73.9532335504,997212.962907,202693.314479,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021150,04/10/2018 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,3065960,3026430030,4660 +BK,POINT (-73.95468869047335 40.72253263025133),10256,Free,LinkNYC - Citybridge,bk-01-145998,7 NASSAU AVENUE,40.7225326303,-73.9546886905,996809.710433,202517.906694,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021156,01/31/2018 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,3337774,3026390010,4661 +BK,POINT (-73.961286529847 40.716430569587025),10257,Free,LinkNYC - Citybridge,bk-01-146002,203 BERRY STREET,40.7164305696,-73.9612865298,994981.857133,200293.861929,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021162,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11249,301,553,3055300,3398167,3023517500,4662 +BK,POINT (-73.96030115616232 40.71765822821787),10258,Free,LinkNYC - Citybridge,bk-01-146000,101 NORTH 5 STREET,40.7176582282,-73.9603011562,995254.812296,200741.257688,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021163,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,555,3055500,3062172,3023347500,4663 +BK,POINT (-73.96799938020992 40.68042562029666),10259,Free,LinkNYC - Citybridge,bk-08-145903,550 Vanderbilt Ave,40.6804256203,-73.9679993802,993125.763405,187175.440332,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021224,01/08/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,163,3016300,3418187,3011297500,4664 +BK,POINT (-73.96276535029229 40.71906736274798),10260,Free,LinkNYC - Citybridge,bk-01-146016,28 NORTH 5 STREET,40.7190673627,-73.9627653503,994571.501327,201254.348525,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021227,04/12/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,555,3055500,3062291,3023410000,4665 +BK,POINT (-73.96424309024886 40.71573175010499),10261,Free,LinkNYC - Citybridge,bk-01-145996,79 GRAND STREET,40.7157317501,-73.9642430902,994162.365662,200038.912308,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021228,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11249,301,555,3055500,3424060,3023797500,4666 +BK,POINT (-73.95561039011785 40.71226765987436),10262,Free,LinkNYC - Citybridge,bk-01-146007,364 GRAND STREET,40.7122676599,-73.9556103901,996556.122357,198777.933859,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021229,04/10/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,523,3052300,3062845,3023960020,4667 +BK,POINT (-73.95028298996012 40.71412964033557),10263,Free,LinkNYC - Citybridge,bk-01-145988,561-571 METROPOLITAN AVENUE,40.7141296403,-73.95028299,998032.651229,199457.103104,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021230,06/13/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,501,3050100,3068656,3027560040,4668 +BK,POINT (-73.96109549887399 40.71449771009818),10264,Free,LinkNYC - Citybridge,bk-01-146006,175 GRAND STREET,40.7144977101,-73.9610954989,995035.126056,199589.685844,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021233,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,553,3055300,3062647,3023810040,4669 +BK,POINT (-73.95723130940948 40.718513490387615),10265,Free,LinkNYC - Citybridge,bk-01-146073,153 NORTH 8 STREET,40.7185134904,-73.9572313094,996105.644256,201053.256408,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021234,08/02/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,517,3051700,3061793,3023110030,4670 +BK,POINT (-73.96693041960908 40.71391386007415),10266,Free,LinkNYC - Citybridge,bk-01-145995,29 SOUTH 3 STREET,40.7139138601,-73.9669304196,993417.646679,199376.307006,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021248,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,551,3055100,3395339,3024157500,4671 +BK,POINT (-73.95920220042177 40.72250424013036),10267,Free,LinkNYC - Citybridge,bk-01-146018,43 NORTH 11 STREET,40.7225042401,-73.9592022004,995558.628618,202506.948382,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021262,02/02/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,557,3055700,3329916,3022880000,4672 +BK,POINT (-73.96047431385063 40.71940433164056),10268,Free,LinkNYC - Citybridge,bk-01-146010,145 WYTHE AVENUE,40.7194043316,-73.9604743139,995206.524663,201377.394867,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021263,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,555,3055500,3062048,3023260010,4673 +BK,POINT (-73.96084076359472 40.71684974500976),10269,Free,LinkNYC - Citybridge,bk-01-146001,185 BERRY STREET,40.716849745,-73.9608407636,995105.360823,200446.635246,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021265,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11249,301,553,3055300,3062367,3023510010,4674 +BK,POINT (-73.96035234987177 40.72138255026797),10270,Free,LinkNYC - Citybridge,bk-01-146017,45 NORTH 9 STREET,40.7213825503,-73.9603523499,995240.006879,202098.13588,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021279,02/02/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,557,3055700,3061644,3023020000,4675 +BK,POINT (-73.9597748399675 40.72194341966762),10271,Free,LinkNYC - Citybridge,bk-01-146041,43 NORTH 10 STREET,40.7219434197,-73.95977484,995399.994092,202302.550825,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021280,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,557,3055700,3061586,3022950000,4676 +BK,POINT (-73.95260308969061 40.72329008982379),10272,Free,LinkNYC - Citybridge,bk-01-146011,63 GUERNSEY STREET,40.7232900898,-73.9526030897,997387.662689,202794.178451,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021284,04/10/2018 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,3065960,3026430030,4677 +QU,POINT (-73.91917299692307 40.765785254018404),10273,Free,LinkNYC - Citybridge,qu-01-145934,33-20 30 AVENUE,40.765785254,-73.9191729969,1006639.65993,218283.299376,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021329,10/09/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4009036,4006250050,4678 +QU,POINT (-73.91836040982797 40.765401649772755),10274,Free,LinkNYC - Citybridge,qu-01-145947,34-24 30 AVENUE,40.7654016498,-73.9183604098,1006864.88258,218143.748474,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021330,10/25/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4009091,4006260050,4679 +QU,POINT (-73.91171708019034 40.762277619777244),10275,Free,LinkNYC - Citybridge,qu-01-145948,44-02 30 AVENUE,40.7622776198,-73.9117170802,1008706.28966,217007.346875,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021332,10/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,151,4015100,4012635,4007130080,4680 +QU,POINT (-73.86501478007546 40.69173378991032),10276,Free,LinkNYC - Citybridge,qu-09-145885,76-23 JAMAICA AVENUE,40.6917337899,-73.8650147801,1021683.43956,191322.556381,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021381,09/25/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,30,11421,409,2,4000200,4181011,4088400150,4681 +QU,POINT (-73.85367800009723 40.693165999681504),10277,Free,LinkNYC - Citybridge,qu-09-145984,91-03 JAMAICA AVENUE,40.6931659997,-73.8536780001,1024826.4254,191849.399816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021385,03/29/2018 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,14,4001400,4585192,4088700070,4682 +QU,POINT (-73.85255706936088 40.693739784142046),10278,Free,LinkNYC - Citybridge,qu-09-145989,86-56 WOODHAVEN BOULEVARD,40.6937397841,-73.8525570694,1025136.91756,192058.96731,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021386,02/26/2018 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,14,4001400,4182096,4088700050,4683 +QU,POINT (-73.84858743049779 40.69467594996449),10279,Free,LinkNYC - Citybridge,qu-09-145883,96-01 JAMAICA AVENUE,40.69467595,-73.8485874305,1026237.13452,192401.917411,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021389,08/09/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,22,4002200,4182667,4088920070,4684 +QU,POINT (-73.84665594949021 40.69504844955165),10280,Free,LinkNYC - Citybridge,qu-09-145882,98-31 JAMAICA AVENUE,40.6950484496,-73.8466559495,1026772.50156,192538.561495,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021390,08/09/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,24,4002400,4438536,4091770060,4685 +QU,POINT (-73.84118745957541 40.695221380278234),10281,Free,LinkNYC - Citybridge,qu-09-145881,105-24 JAMAICA AVENUE,40.6952213803,-73.8411874596,1028288.80495,192604.267072,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021393,08/10/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,126,4012602,4194296,4092890030,4686 +QU,POINT (-73.84055055952659 40.695419810438786),10282,Free,LinkNYC - Citybridge,qu-09-145880,106-15 JAMAICA AVENUE,40.6954198104,-73.8405505595,1028465.2859,192676.881756,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021394,08/09/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,26,4002600,4192081,4092020040,4687 +QU,POINT (-73.83880988053781 40.695912519839894),10283,Free,LinkNYC - Citybridge,qu-09-145879,108-25 JAMAICA AVENUE,40.6959125198,-73.8388098805,1028947.64484,192857.273456,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021395,08/14/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,128,4012800,4192172,4092040040,4688 +QU,POINT (-73.83784204579732 40.696331271691434),10284,Free,LinkNYC - Citybridge,qu-09-145888,110-02 JAMAICA AVENUE,40.6963312717,-73.8378420458,1029215.74044,193010.332205,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021396,08/09/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11418,409,126,4012601,4194813,4093000080,4689 +QU,POINT (-73.83729299941031 40.69704699978442),10285,Free,LinkNYC - Citybridge,qu-09-145878,86-56 111 STREET,40.6970469998,-73.8372929994,1029367.50424,193271.37499,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021397,08/23/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,128,4012800,4192617,4092240030,4690 +QU,POINT (-73.8356570900411 40.69790215025034),10286,Free,LinkNYC - Citybridge,qu-09-145889,112-25 JAMAICA AVENUE,40.6979021503,-73.83565709,1029820.54533,193583.777909,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021398,08/09/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,130,4013000,4192701,4092260090,4691 +QU,POINT (-73.80816000004955 40.74191000001122),10883,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.74191,-73.80816,1037410.07182,209632.651651,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11365,407,1215,4121500,0,0,1350 +QU,POINT (-73.8348467494599 40.698095420265936),10287,Free,LinkNYC - Citybridge,qu-09-145890,87-02 114 STREET,40.6980954203,-73.8348467495,1030045.11115,193654.614381,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021399,09/01/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,124,4012400,4194946,4093030010,4692 +QU,POINT (-73.82709686965207 40.700634829908985),10288,Free,LinkNYC - Citybridge,qu-09-145912,123-08 JAMAICA AVENUE,40.7006348299,-73.8270968697,1032192.23547,194583.941591,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021403,09/25/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,142,4014201,4196009,4093320010,4693 +QU,POINT (-73.85645380012066 40.69260723962398),10289,Free,LinkNYC - Citybridge,qu-09-145911,87-26 JAMAICA AVENUE,40.6926072396,-73.8564538001,1024057.00502,191644.553769,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021406,10/04/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,16,4001600,4184004,4089250010,4694 +BK,POINT (-73.97703800030057 40.68159599999127),10290,Free,LinkNYC - Citybridge,bk-06-145891,50 5 AVENUE,40.681596,-73.9770380003,990618.679836,187601.056934,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021504,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,129,3012901,3018442,3009300050,4695 +BK,POINT (-73.97803400041683 40.68032299964481),10291,Free,LinkNYC - Citybridge,bk-06-145896,667 WARREN STREET,40.6803229996,-73.9780340004,990342.54817,187137.195329,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021505,09/05/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,129,3012901,3018671,3009340050,4696 +BK,POINT (-73.97846491960277 40.67950100963064),10292,Free,LinkNYC - Citybridge,bk-06-145872,110 5 AVENUE,40.6795010096,-73.9784649196,990223.100903,186837.691007,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021506,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,129,3012901,3018991,3009430240,4697 +BK,POINT (-73.98146899950606 40.67525399957318),10293,Free,LinkNYC - Citybridge,bk-06-145895,615 CARROLL STREET,40.6752539996,-73.9814689995,989390.198369,185290.19279,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021509,09/11/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,133,3013300,3259252,3009590080,4698 +BK,POINT (-73.98316142045947 40.6726791001424),10294,Free,LinkNYC - Citybridge,bk-06-145893,372 3 AVENUE,40.6726791001,-73.9831614205,988920.928638,184351.988629,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021511,09/11/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,135,3013500,3021066,3009820010,4699 +BK,POINT (-73.98362685011203 40.67224180961111),10295,Free,LinkNYC - Citybridge,bk-06-145894,337 5 AVENUE,40.6722418096,-73.9836268501,988791.850813,184192.646756,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021512,10/27/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,135,3013500,3021058,3009820000,4700 +BK,POINT (-73.98750899950238 40.667873000229186),10296,Free,LinkNYC - Citybridge,bk-06-145873,482 5 AVENUE,40.6678730002,-73.9875089995,987715.184003,182600.788064,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021516,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,139,3013900,3022889,3010220050,4701 +BK,POINT (-73.9883783201853 40.66653858014481),10297,Free,LinkNYC - Citybridge,bk-06-145874,515 5 AVENUE,40.6665385801,-73.9883783202,987474.086388,182114.58792,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021517,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,141,3014100,3392322,3010357500,4702 +BK,POINT (-73.98905661947666 40.66622971030849),10298,Free,LinkNYC - Citybridge,bk-06-145902,258 14th STREET,40.6662297103,-73.9890566195,987285.926659,182002.033684,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021518,08/31/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,141,3014100,3023670,3010410040,4703 +BK,POINT (-73.9917889996312 40.666903999975354),10299,Free,LinkNYC - Citybridge,bk-06-145909,548 4th AVENUE,40.666904,-73.9917889996,986527.883228,182247.613573,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021519,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,117,3011700,3398113,3010400050,4704 +BK,POINT (-73.99371499965935 40.66440600017883),10300,Free,LinkNYC - Citybridge,bk-07-145887,615 4 AVENUE,40.6644060002,-73.9937149997,985993.64053,181337.477598,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021520,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,38,11215,307,143,3014300,3008966,3006310000,4705 +BK,POINT (-73.99601700026057 40.662188999754925),10301,Free,LinkNYC - Citybridge,bk-07-145867,691 4 AVENUE,40.6621889998,-73.9960170003,985355.035836,180529.72462,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021522,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,145,3014500,3000000,3006430000,4706 +BK,POINT (-73.99953200039356 40.65880799955552),10302,Free,LinkNYC - Citybridge,bk-07-145886,799 4 AVENUE,40.6588079996,-73.9995320004,984379.847497,179297.906874,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021524,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3009753,3006610000,4707 +BK,POINT (-74.0006889996858 40.65770400012664),10303,Free,LinkNYC - Citybridge,bk-07-145866,825 4 AVENUE,40.6577040001,-74.0006889997,984058.832391,178895.689503,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021525,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3009847,3006690000,4708 +BK,POINT (-74.00205300051344 40.656384000045115),10304,Free,LinkNYC - Citybridge,bk-07-145901,875 4 AVENUE,40.656384,-74.0020530005,983680.369894,178414.782656,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021526,09/05/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3010094,3006810000,4709 +BK,POINT (-74.00305031971038 40.655437600381454),10305,Free,LinkNYC - Citybridge,bk-07-145862,899 4 AVENUE,40.6554376004,-74.0030503197,983403.639476,178069.991023,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021527,08/22/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,84,3008400,3010172,3006850000,4710 +BK,POINT (-74.00440375951557 40.65413322964745),10306,Free,LinkNYC - Citybridge,bk-07-145865,941 4 AVENUE,40.6541332296,-74.0044037595,983028.081828,177594.788561,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021528,08/23/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,84,3008400,3010335,3006970010,4711 +QU,POINT (-73.83136081986811 40.7075305502818),10307,Free,LinkNYC - Citybridge,qu-09-145987,82-02 LEFFERTS BOULEVARD,40.7075305503,-73.8313608199,1031005.1007,197093.949366,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021535,01/15/2019 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,409,775,4077500,4079530,4033300030,4712 +QU,POINT (-73.83157896979729 40.70615073000959),10308,Free,LinkNYC - Citybridge,qu-09-145982,119-01 METROPOLITAN AVENUE,40.70615073,-73.8315789698,1030945.5854,196591.123928,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021536,02/21/2018 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,409,136,4013600,4192739,4092300020,4713 +QU,POINT (-73.91168659984858 40.75448754991836),10309,Free,LinkNYC - Citybridge,qu-01-146035,32-50 50 STREET,40.7544875499,-73.9116865998,1008717.59475,214169.179979,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021538,02/28/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,163,4016300,4013650,4007350000,4714 +QU,POINT (-73.92206966056753 40.73968025008068),10310,Free,LinkNYC - Citybridge,qu-02-145981,43-01 48 AVENUE,40.7396802501,-73.9220696606,1005845.72484,208771.678307,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021680,03/15/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11377,402,185,4018502,4002100,4001730000,4715 +BK,POINT (-73.97573017012301 40.681038720296634),10311,Free,LinkNYC - Citybridge,bk-06-145871,459 BERGEN STREET,40.6810387203,-73.9757301701,990981.472418,187398.121645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021683,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,129,3012902,3018494,3009310030,4716 +BK,POINT (-73.96775318014485 40.68226753005514),10312,Free,LinkNYC - Citybridge,bk-02-145868,470 VANDERBILT AVENUE,40.6822675301,-73.9677531801,993193.802967,187846.52626,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021686,06/12/2018 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,199,3019900,3335094,3020090000,4717 +BK,POINT (-73.96466834962082 40.68088788016011),10313,Free,LinkNYC - Citybridge,bk-08-145935,2 UNDERHILL AVENUE,40.6808878802,-73.9646683496,994049.597515,187344.210007,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021687,04/10/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,203,3020300,3027474,3011220030,4718 +BK,POINT (-73.96451071975063 40.68023805020971),10314,Free,LinkNYC - Citybridge,bk-08-145908,888 Pacific Street,40.6802380502,-73.9645107198,994093.4137,187107.475901,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021688,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,203,3020300,3027680,3011310010,4719 +BK,POINT (-73.96373000052323 40.67854000016253),10315,Free,LinkNYC - Citybridge,bk-08-145920,751 Bergen Street,40.6785400002,-73.9637300005,994310.212479,186488.916114,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021689,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,203,3020300,3027979,3011400060,4720 +QU,POINT (-73.8735504299556 40.748797950406015),10316,Free,LinkNYC - Citybridge,qu-03-146005,93-01 ROOSEVELT AVENUE,40.7487979504,-73.87355043,1019286.36528,212109.229375,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-021803,02/08/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,273,4027300,4036514,4014810050,4721 +MN,POINT (-73.9613808596385 40.76842288996354),10317,Free,LinkNYC - Citybridge,mn-08-120982,201 EAST 70 STREET,40.76842289,-73.9613808596,994947.356546,219236.306,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-021901,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,126,1012600,1043920,1014250000,4722 +BK,POINT (-73.8680948595758 40.69102143022389),10318,Free,LinkNYC - Citybridge,bk-05-126737,2 Eldert Ln,40.6910214302,-73.8680948596,1020829.67847,191061.721929,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021914,03/28/2018 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,182,3118202,3091371,3041120060,4723 +BK,POINT (-73.87207899987321 40.68350599964398),10319,Free,LinkNYC - Citybridge,bk-05-145943,241 CRESCENT STREET,40.6835059996,-73.8720789999,1019728.8037,188321.995781,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021919,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3092798,3041470030,4724 +BK,POINT (-73.87137973014165 40.68382059037136),10320,Free,LinkNYC - Citybridge,bk-05-145942,3368 FULTON STREET,40.6838205904,-73.8713797301,1019922.57726,188436.894173,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-021920,12/07/2017 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3092807,3041470040,4725 +QU,POINT (-73.82283999968163 40.75013999971893),10874,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7501399997,-73.8228399997,1033336.09309,212622.529857,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,837,4083700,0,0,1340 +QU,POINT (-73.8173199994737 40.743700000087465),10875,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7437000001,-73.8173199995,1034870.42204,210279.378047,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,837,4083700,0,0,1341 +QU,POINT (-73.81396000056297 40.74365999981397),10876,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7436599998,-73.8139600006,1035801.50351,210266.764228,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,20,11365,407,1211,4121100,0,0,1342 +MN,POINT (-73.98330000006423 40.75379999983937),10877,Partner Site,Partner,Bryant Park,Entire park,40.7537999998,-73.9833000001,988876.852939,213906.790412,Outdoor,,New York,BryantPark.org,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,1012570002,1344 +BK,POINT (-74.00190000057839 40.69299999959326),10878,Free,AT&T,Brooklyn Bridge Park,Near Atlantic Ave and Brooklyn Queens Expressway,40.6929999996,-74.0019000006,983723.11095,191755.037472,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,1,11201,302,5,1000500,0,3002450029,1345 +QU,POINT (-73.81356999972286 40.74548999981918),10879,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7454899998,-73.8135699997,1035908.15323,210933.719915,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,20,11365,407,1211,4121100,0,0,1346 +QU,POINT (-73.80341999963558 40.74589000034578),10884,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7458900003,-73.8034199996,1038720.29951,211085.601173,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,20,11365,407,1211,4121100,0,0,1351 +MN,POINT (-73.9840119596612 40.76023531989322),10885,Free,LinkNYC - Citybridge,mn-05-134211,736 7 AVENUE,40.7602353199,-73.9840119597,988679.171576,216251.350355,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010160,06/12/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1024777,1010200040,3843 +MN,POINT (-73.98463666008918 40.75937884032278),10886,Free,LinkNYC - Citybridge,mn-05-122658,704 7 AVENUE,40.7593788403,-73.9846366601,988506.16536,215939.275848,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010161,03/08/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,125,1012500,1024757,1010197500,3844 +MN,POINT (-73.97699036966583 40.7592052003258),10887,Free,LinkNYC - Citybridge,mn-05-122867,4 WEST 51 STREET,40.7592052003,-73.9769903697,990624.463289,215876.477089,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010171,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10111,105,104,1010400,1083860,1012660000,3845 +MN,POINT (-73.9747322798014 40.76246754976373),10888,Free,LinkNYC - Citybridge,mn-05-122853,1 WEST 56 STREET,40.7624675498,-73.9747322798,991249.689401,217065.230289,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010173,03/28/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,112,1011201,1035051,1012720030,3846 +MN,POINT (-73.97119784031715 40.76425414027373),10889,Free,LinkNYC - Citybridge,mn-08-137205,16 EAST 60 STREET,40.7642541403,-73.9711978403,992228.589346,217716.446179,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010174,05/08/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10022,108,114,1011401,1040753,1013740010,3847 +MN,POINT (-73.96558890961639 40.75868870996741),10890,Free,LinkNYC - Citybridge,mn-06-121769,1066 2 AVENUE,40.75868871,-73.9655889096,993783.135777,215689.338028,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010177,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039976,1013490000,3848 +MN,POINT (-73.94648352044027 40.800446000084875),10891,Free,LinkNYC - Citybridge,mn-11-100223,1413 5 AVENUE,40.8004460001,-73.9464835204,999066.735118,230905.584498,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010191,01/25/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10029,111,184,1018400,1051661,1016210070,3849 +MN,POINT (-73.95278867940766 40.80732567013133),10892,Free,LinkNYC - Citybridge,mn-10-102771,218 ST NICHOLAS AVENUE,40.8073256701,-73.9527886794,997319.718927,233411.086377,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010216,11/07/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1058485,1019260060,3850 +BX,POINT (-73.90095411017668 40.850548410437845),10893,Free,LinkNYC - Citybridge,bx-05-111503,305 EAST BURNSIDE AVENUE,40.8505484104,-73.9009541102,1011651.50194,249170.686091,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010251,06/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,205,381,2038100,2013524,2031490070,3851 +MN,POINT (-73.93780684042301 40.843567130401645),10894,Free,LinkNYC - Citybridge,mn-12-111621,1238 ST NICHOLAS AVENUE,40.8435671304,-73.9378068404,1001457.83237,246617.759111,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010257,03/29/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,253,1025300,1063086,1021290000,3852 +MN,POINT (-73.9334733102951 40.84985449013582),10895,Free,LinkNYC - Citybridge,mn-12-111623,1439 ST. NICHOLAS AVE,40.8498544901,-73.9334733103,1002655.1095,248909.362139,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010258,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,271,1027100,1063943,1021650010,3853 +MN,POINT (-73.93100715027485 40.8528573647752),10896,Free,LinkNYC - Citybridge,mn-12-111656,1536 ST NICHOLAS AVE,40.8528573648,-73.9310071503,1003336.5294,250003.951157,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010259,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063791,1021570080,3854 +MN,POINT (-73.93334198010986 40.850037509550624),10897,Free,LinkNYC - Citybridge,mn-12-111670,1441 ST. NICHOLAS AVE,40.8500375096,-73.9333419801,1002691.39224,248976.070667,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010260,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,271,1027100,1063950,1021650040,3855 +MN,POINT (-73.94948943988611 40.812655659571675),10898,Free,LinkNYC - Citybridge,mn-10-111709,2407 FREDERICK DOUGLASS BOULEVARD,40.8126556596,-73.9494894399,998231.942169,235353.500143,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010262,11/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,215,1021500,1059403,1019550020,3856 +MN,POINT (-73.93332247015731 40.84969773995782),10899,Free,LinkNYC - Citybridge,mn-12-111720,1430 ST. NICHOLAS AVE,40.84969774,-73.9333224702,1002696.88403,248852.283841,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010265,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063642,1021540010,3857 +MN,POINT (-73.92940254041096 40.85541608019022),10900,Free,LinkNYC - Citybridge,mn-12-111857,1617 ST. NICHOLAS AVE,40.8554160802,-73.9294025404,1003779.68534,250936.542468,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010271,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,279,1027900,1084422,1021690050,3858 +MN,POINT (-73.9289967004742 40.855615370055325),10901,Free,LinkNYC - Citybridge,mn-12-111868,1622 ST NICHOLAS AVE,40.8556153701,-73.9289967005,1003891.89574,251009.242126,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010274,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,277,1027700,1063865,1021610010,3859 +BX,POINT (-73.91021788973795 40.854346219634856),10902,Free,LinkNYC - Citybridge,bx-05-113539,70 WEST BURNSIDE AVENUE,40.8543462196,-73.9102178897,1009087.21737,250551.609839,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010287,01/17/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,243,2024300,2008556,2028680140,3860 +MN,POINT (-73.9965490004096 40.74267426012938),10903,Free,LinkNYC - Citybridge,mn-04-115165,183 7 AVENUE,40.7426742601,-73.9965490004,985206.283509,209852.903835,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010297,05/11/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1014761,1007960070,3861 +BX,POINT (-73.90789899946009 40.85376399968942),10904,Free,LinkNYC - Citybridge,bx-05-111414,8 WEST BURNSIDE AVENUE,40.8537639997,-73.9078989995,1009728.93525,250340.150944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010317,01/17/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,243,2024300,2008401,2028630030,3862 +MN,POINT (-73.9880986694759 40.76956733969505),10905,Free,LinkNYC - Citybridge,mn-04-136065,886 10 AVENUE,40.7695673397,-73.9880986695,987546.567214,219651.132926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010320,02/08/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1026899,1010670060,3863 +BK,POINT (-73.95091961977256 40.66416647979236),10906,Free,LinkNYC - Citybridge,bk-09-130021,991 NOSTRAND AVENUE,40.6641664798,-73.9509196198,997866.362519,181253.965626,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010328,04/13/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,319,3031900,3324553,3013090000,3864 +BX,POINT (-73.91917137024882 40.813997520050854),10907,Free,LinkNYC - Citybridge,bx-01-116238,460 WILLIS AVENUE,40.8139975201,-73.9191713702,1006623.90242,235848.679271,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010332,04/13/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10455,201,43,2004300,2115556,2022900010,3865 +QU,POINT (-73.92201907993326 40.76047266969344),10908,Free,LinkNYC - Citybridge,qu-01-142852,35-01 BROADWAY,40.7604726697,-73.9220190799,1005852.99779,216347.036188,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010336,05/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4009768,4006480010,3866 +MN,POINT (-73.95168900059045 40.80957599960332),10909,Free,Harlem,,pole 40: 8avNWC124,40.8095759996,-73.9516890006,997623.695682,234231.12706,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,257,1025700,0,0,742 +MN,POINT (-73.9466369999531 40.80726300007634),10910,Free,Harlem,,Pole 42: 115w124,40.8072630001,-73.946637,999022.729301,233389.231106,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1057792,1019080038,743 +MN,POINT (-73.95057700035846 40.810600999909724),10912,Free,Harlem,,Pole 48: 8avSEC126,40.8106009999,-73.9505770004,997931.314489,234604.742782,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1088140,1019310061,745 +MN,POINT (-73.94892400031706 40.81017800000007),10913,Free,Harlem,,Pole 49: 126NS2E8av,40.810178,-73.9489240003,998388.989099,234450.891384,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,746 +MN,POINT (-73.95012599967852 40.81126599976423),10914,Free,Harlem,,Pole 50: 8avSEC127,40.8112659998,-73.9501259997,998056.022901,234847.096628,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,1058677,1019320061,747 +MN,POINT (-73.93951000032462 40.81025999998633),10915,Free,Harlem,,pole 51n - 131NWC5th,40.81026,-73.9395100003,1000994.97568,234482.426426,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,208,1020800,0,0,748 +MN,POINT (-73.94014900036908 40.80641300006039),10916,Free,Harlem,,pole 52n madnwc126,40.8064130001,-73.9401490004,1000819.04395,233080.706789,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10035,111,206,1020600,0,0,749 +MN,POINT (-73.93971400036261 40.807092000440605),10917,Free,Harlem,,pole 53 new 127NWCMad,40.8070920004,-73.9397140004,1000939.2983,233328.173157,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10035,111,206,1020600,0,0,750 +MN,POINT (-73.93906500000686 40.807594000420075),10918,Free,Harlem,,pole 54: MavSEC128,40.8075940004,-73.939065,1001118.83731,233511.193788,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10035,111,206,1020600,0,0,751 +MN,POINT (-73.9411119999753 40.81511399961073),10919,Free,Harlem,,pole 55n - 136NS2EACP,40.8151139996,-73.941112,1000550.31778,236250.609241,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,752 +MN,POINT (-73.9388899994554 40.808296999705476),10920,Free,Harlem,,pole 56: MavNWC129,40.8082969997,-73.9388899995,1001167.10461,233767.355022,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10035,111,206,1020600,0,0,753 +MN,POINT (-73.94077799960286 40.808224000090185),10921,Free,Harlem,,pole 57: 5avSEC128,40.8082240001,-73.9407779996,1000644.46687,233740.399695,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10035,111,206,1020600,0,0,754 +MN,POINT (-73.94386600003844 40.81119799960518),10923,Free,Harlem,,Pole 61 - 130NS3E7,40.8111979996,-73.943866,999788.91937,234823.370298,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,757 +MN,POINT (-73.94623100002948 40.81203700028484),10924,Free,Harlem,,Pole 62 - 7avNWC130,40.8120370003,-73.946231,999134.056506,235128.637404,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,758 +MN,POINT (-73.94884300004902 40.81336600030344),10925,Free,Harlem,,Pole 63 - 8avSEC130,40.8133660003,-73.948843,998410.733478,235612.40645,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,215,1021500,0,0,759 +MN,POINT (-73.94544400033851 40.81262799991913),10926,Free,Harlem,,pole 64: 7avSEC131,40.8126279999,-73.9454440003,999351.775559,235344.094322,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,760 +MN,POINT (-73.94468900050325 40.81241799986009),10927,Free,Harlem,,pole 65: 131NS1E7av,40.8124179999,-73.9446890005,999560.817135,235267.714882,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,761 +MN,POINT (-73.94272499979525 40.81184099980792),10928,Free,Harlem,,Pole 66 - LeWS1N131,40.8118409998,-73.9427249998,1000104.61592,235057.842598,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,762 +MN,POINT (-73.9469930002772 40.814124999761056),10930,Free,Harlem,,pole 69: 132NS2E8av,40.8141249998,-73.9469930003,998922.663228,235889.241526,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,764 +MN,POINT (-73.94437599995277 40.81312199959929),10931,Free,Harlem,,pole 72: 132NS1E7av,40.8131219996,-73.944376,999647.296949,235524.261941,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,765 +MN,POINT (-73.94134999975122 40.81183500010301),10932,Free,Harlem,,Pole 73 - 132NS2ELe,40.8118350001,-73.9413499998,1000485.23884,235055.908547,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,766 +MN,POINT (-73.93892500012313 40.810794999724955),10933,Free,Harlem,,Pole 74 - 5avSWC132,40.8107949997,-73.9389250001,1001156.78081,234677.458188,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,111,206,1020600,0,0,767 +MN,POINT (-73.94668800048046 40.81608900008813),10934,Free,Harlem,,Pole 75 - 133NS2E8,40.8160890001,-73.9466880005,999006.653546,236604.848362,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,768 +MN,POINT (-73.94495499949976 40.81393000022515),10935,Free,Harlem,,pole 76 - 7ASEC133,40.8139300002,-73.9449549995,999486.838937,235818.544161,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,769 +MN,POINT (-73.94341699962737 40.809559000091646),10937,Free,Harlem,,pole 78 - 133NS3E7av,40.8095590001,-73.9434169996,999913.596614,234226.304563,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,208,1020800,1053680,1017260006,771 +MN,POINT (-73.93845299997369 40.81157500032061),10938,Free,Harlem,,pole 79 - 5avWS3N132,40.8115750003,-73.938453,1001287.24019,234961.73157,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10037,111,210,1021000,0,0,772 +MN,POINT (-73.93894100040009 40.814952000121174),10943,Free,Harlem,,pole 84 - 137ss1eLen,40.8149520001,-73.9389410004,1001151.29591,236191.998466,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,777 +MN,POINT (-73.94081200027559 40.81580300005185),10944,Free,Harlem,,Pole 85 - 137NS3EACP,40.8158030001,-73.9408120003,1000633.18868,236501.692729,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,778 +MN,POINT (-73.94126200011742 40.81371299961207),10946,Free,Harlem,,Pole 87 - LenWS1N134,40.8137129996,-73.9412620001,1000509.13971,235740.147008,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,780 +MN,POINT (-73.94446099963244 40.80935700016589),10947,Free,Harlem,,Pole 90 - LenWS1N127,40.8093570002,-73.9444609996,999624.637874,234152.523871,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,781 +MN,POINT (-73.94005299964454 40.813645999878375),10948,Free,Harlem,,Pole 89 - 135SS1ELen,40.8136459999,-73.9400529996,1000843.81719,235715.963329,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,782 +MN,POINT (-73.9391120000354 40.81343399974024),10949,Free,Harlem,,Pole 88 - 135NECLenTer,40.8134339997,-73.939112,1001104.34718,235638.903772,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,783 +MN,POINT (-73.94284600021257 40.81113799988021),10950,Free,Harlem,,Pole 92 - LenES1N130,40.8111379999,-73.9428460002,1000071.28823,234801.692848,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,208,1020800,0,0,784 +MN,POINT (-73.94400399959945 40.80967200022256),10951,Free,Harlem,,Pole 91 - LenWS1N128,40.8096720002,-73.9440039996,999751.073973,234267.370098,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,208,1020800,0,0,785 +MN,POINT (-73.94224799980606 40.81249100036967),10952,Free,Harlem,,Pole 93 - LenWS1N132,40.8124910004,-73.9422479998,1000236.50082,235294.747636,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,0,0,786 +MN,POINT (-73.94169299963892 40.8129439999643),10953,Free,Harlem,,Pole 94 - LenWS1N133,40.812944,-73.9416929996,1000390.02217,235459.893303,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,787 +MN,POINT (-73.93951899951736 40.815704999723195),10954,Free,Harlem,,Pole 95 - LenES1N137,40.8157049997,-73.9395189995,1000991.1148,236466.23217,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,788 +MN,POINT (-73.95355399945701 40.80195100016231),10955,Free,Harlem,,Pole 22 - 114swc7,40.8019510002,-73.9535539995,997108.890281,231452.791737,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,0,0,789 +MN,POINT (-73.95461600052607 40.80065200026313),10956,Free,Harlem,,pole 21: 112C7av,40.8006520003,-73.9546160005,996815.113309,230979.366503,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,0,0,790 +MN,POINT (-73.9524049994678 40.80229799983068),10957,Free,Harlem,,pole 20 - 115NECStNk,40.8022979998,-73.9524049995,997426.929999,231579.386628,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,0,0,791 +BK,POINT (-73.99575348228808 40.68248291652864),12086,Free,LinkNYC - Citybridge,bk-06-126394,343 COURT STREET,40.6824829165,-73.9957534823,985427.787331,187923.380109,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000052,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,75,3007500,3007004,3004280000,3041 +MN,POINT (-73.94515800045284 40.80268399987376),10967,Free,Harlem,,pole 09: 119C5av,40.8026839999,-73.9451580005,999433.212076,231721.193103,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,200,1020000,0,0,801 +BK,POINT (-73.99002261959932 40.68749659971525),12087,Free,LinkNYC - Citybridge,bk-02-127278,126 SMITH STREET,40.6874965997,-73.9900226196,987017.05515,189750.139578,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000054,09/18/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3001047,3001870030,3042 +BK,POINT (-73.98042355038456 40.687648980292145),12088,Free,LinkNYC - Citybridge,bk-02-126506,339 LIVINGSTON STREET,40.6876489803,-73.9804235504,989679.179747,189806.105346,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000056,07/26/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,37,3003700,3000483,3001620000,3043 +BX,POINT (-73.90457507953093 40.86311405041548),12089,Free,LinkNYC - Citybridge,bx-07-111540,2408 UNIVERSITY AVENUE,40.8631140504,-73.9045750795,1010644.75724,253747.716964,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000064,03/30/2017 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,263,2026300,2014623,2032130000,3044 +BX,POINT (-73.89305943956843 40.86021466964704),12090,Free,LinkNYC - Citybridge,bx-05-116218,2461 WEBSTER AVENUE,40.8602146696,-73.8930594396,1013831.29844,252695.040263,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000067,05/25/2016 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,399,2039902,2011078,2030260060,3045 +BX,POINT (-73.90324403985053 40.8626436496639),12091,Free,LinkNYC - Citybridge,bx-07-119564,48 WEST FORDHAM ROAD,40.8626436497,-73.9032440399,1011013.1151,253576.735678,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000070,09/15/2016 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,253,2025300,2014307,2031990020,3046 +BX,POINT (-73.89802299961018 40.86134900001797),12092,Free,LinkNYC - Citybridge,bx-05-119575,2437 GRAND CONCOURSE,40.861349,-73.8980229996,1012457.82579,253106.683141,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000072,07/19/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,237,2023703,2013798,2031650030,3047 +BX,POINT (-73.89858090989193 40.86165512003697),12093,Free,LinkNYC - Citybridge,bx-05-119587,150 EAST 188 STREET,40.86165512,-73.8985809099,1012303.37334,253218.03528,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000074,05/25/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,237,2023703,2013796,2031650030,3048 +BX,POINT (-73.89855258956557 40.85915372035124),12094,Free,LinkNYC - Citybridge,bx-05-119628,2366-2370 Grand Concourse,40.8591537204,-73.8985525896,1012312.26243,252306.68835,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000076,07/15/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,15,10458,205,383,2038301,2013738,2031590040,3049 +BX,POINT (-73.90454700988666 40.86285548026496),12095,Free,LinkNYC - Citybridge,bx-07-119787,95 WEST FORDHAM ROAD,40.8628554803,-73.9045470099,1010652.62402,253653.518333,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000077,03/30/2017 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,263,2026300,2014623,2032130000,3050 +BX,POINT (-73.89952057055557 40.86208576965072),12096,Free,LinkNYC - Citybridge,bx-05-119570,100 E Fordham Rd,40.8620857697,-73.8995205706,1012043.27544,253374.637985,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000087,07/20/2017 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,237,2023703,2013908,2031730030,3051 +BX,POINT (-73.89182996012161 40.861993319795964),12097,Free,LinkNYC - Citybridge,bx-07-119793,385 EAST FORDHAM ROAD,40.8619933198,-73.8918299601,1014170.58975,253343.488441,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-000090,06/21/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,399,2039901,2016327,2032750070,3052 +MN,POINT (-73.9833678703945 40.76582961962458),12098,Free,LinkNYC - Citybridge,mn-05-122622,944 8 AVENUE,40.7658296196,-73.9833678704,988857.216824,218289.571017,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000092,08/03/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1024888,1010270060,3053 +MN,POINT (-73.98185929034861 40.767007811088824),12099,Free,LinkNYC - Citybridge,mn-05-122514,3 Columbus Circle,40.7670078111,-73.9818592903,989275.015201,218718.908084,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000108,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1024900,1010297500,3054 +MN,POINT (-73.98198780945361 40.76617478959079),12100,Free,LinkNYC - Citybridge,mn-05-122522,250 West 57St,40.7661747896,-73.9819878095,989239.477542,218415.403442,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000111,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1024899,1010280060,3055 +MN,POINT (-73.98920581979874 40.74320284028758),12101,Free,LinkNYC - Citybridge,mn-05-123647,1123 BROADWAY,40.7432028403,-73.9892058198,987241.079636,210045.647872,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000114,12/05/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1015618,1008270030,3056 +MN,POINT (-73.98901591959185 40.7442430499443),12102,Free,LinkNYC - Citybridge,mn-05-108039,1149 BROADWAY,40.7442430499,-73.9890159196,987293.653678,210424.635959,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000116,11/08/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,105,58,1005800,1015655,1008280050,3057 +MN,POINT (-73.98867088945302 40.745127050211735),12103,Free,LinkNYC - Citybridge,mn-05-139806,1170 BROADWAY,40.7451270502,-73.9886708895,987389.218775,210746.717664,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000120,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10001,105,58,1005800,1080710,1008290050,3058 +MN,POINT (-73.98839899960473 40.746623999947914),12104,Free,LinkNYC - Citybridge,mn-05-122180,1216 BROADWAY,40.7466239999,-73.9883989996,987464.485357,211292.114211,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000130,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,76,1007600,1080723,1008310060,3059 +MN,POINT (-73.98810090029481 40.748138939934805),12105,Free,LinkNYC - Citybridge,mn-05-122053,1256 BROADWAY,40.7481389399,-73.9881009003,987547.009798,211844.066519,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000134,04/10/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,76,1007600,1015805,1008330010,3060 +MN,POINT (-73.98808378456194 40.74972091038529),12106,Free,LinkNYC - Citybridge,mn-05-122369,1293 BROADWAY,40.7497209104,-73.9880837846,987551.673831,212420.429868,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000141,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1015199,1008090050,3061 +MN,POINT (-73.98757374007972 40.7523392204093),12107,Free,LinkNYC - Citybridge,mn-05-122057,1375 BROADWAY,40.7523392204,-73.9875737401,987692.858588,213374.384325,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000146,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,109,1010900,1015254,1008130020,3062 +MN,POINT (-73.9873860302339 40.753059080414),12108,Free,LinkNYC - Citybridge,mn-05-122175,1407 BROADWAY,40.7530590804,-73.9873860302,987744.8283,213636.660047,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000151,10/27/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,1015265,1008140020,3063 +MN,POINT (-73.9869351503572 40.75449298969283),12109,Free,LinkNYC - Citybridge,mn-05-122169,1431 BROADWAY,40.7544929897,-73.9869351504,987869.671226,214159.097978,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000155,08/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,1022561,1009930010,3064 +MN,POINT (-73.98635944013043 40.75485087024168),12110,Free,LinkNYC - Citybridge,mn-05-122171,1450 Broadway,40.7548508702,-73.9863594401,988029.153847,214289.509791,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000158,08/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,113,1011300,1022568,1009930050,3065 +MN,POINT (-73.98454079962323 40.760412940068946),12111,Free,LinkNYC - Citybridge,mn-05-133361,1600 BROADWAY,40.7604129401,-73.9845407996,988532.655465,216316.036906,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000162,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1087187,1010207500,3066 +MN,POINT (-73.98485669974454 40.76026604038283),12112,Free,LinkNYC - Citybridge,mn-05-134185,1595 BROADWAY,40.7602660404,-73.9848566997,988445.151047,216262.501252,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000163,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,125,1012500,1076195,1010200050,3067 +MN,POINT (-73.98441999963693 40.760645999601444),12113,Free,LinkNYC - Citybridge,mn-05-122088,1604 BROADWAY,40.7606459996,-73.9844199996,988566.105529,216400.954059,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000164,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1024779,1010200040,3068 +MN,POINT (-73.9842828912446 40.760632174440964),12114,Free,LinkNYC - Citybridge,mn-05-133511,1606 Broadway,40.7606321744,-73.9842828912,988604.089377,216395.923885,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000165,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1024779,1010200040,3069 +MN,POINT (-73.984633629782 40.76071760039906),12115,Free,LinkNYC - Citybridge,mn-05-134155,1609 BROADWAY,40.7607176004,-73.9846336298,988506.919296,216427.030122,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000166,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,125,1012500,1076195,1010200050,3070 +MN,POINT (-73.98427739026059 40.760882769705795),12116,Free,LinkNYC - Citybridge,mn-05-133508,1626 BROADWAY,40.7608827697,-73.9842773903,988605.59692,216487.224228,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000168,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1024795,1010210030,3071 +MN,POINT (-73.98307690020869 40.76259329961947),12117,Free,LinkNYC - Citybridge,mn-05-133505,1668 Broadway,40.7625932996,-73.9830769002,988938.045402,217110.488401,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000173,10/28/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1024818,1010230030,3072 +MN,POINT (-73.98262882960573 40.763978079685025),12118,Free,LinkNYC - Citybridge,mn-05-122541,1701 BROADWAY,40.7639780797,-73.9826288296,989062.070088,217615.033652,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000177,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024839,1010250040,3073 +MN,POINT (-73.98230855991379 40.76412672039278),12119,Free,LinkNYC - Citybridge,mn-05-122529,1710 BROADWAY,40.7641267204,-73.9823085599,989150.778572,217669.206116,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000178,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1024850,1010260020,3074 +MN,POINT (-73.98236264008422 40.76467195960161),12120,Free,LinkNYC - Citybridge,mn-05-122532,1725 BROADWAY,40.7646719596,-73.9823626401,989135.757605,217867.851716,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000180,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1078860,1010267500,3075 +MN,POINT (-73.98212946023901 40.765341219676586),12121,Free,LinkNYC - Citybridge,mn-05-118228,1745 Broadway,40.7653412197,-73.9821294602,989200.301439,218111.698341,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000182,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1086135,1010277500,3076 +MN,POINT (-73.98821845990075 40.74853940982371),12122,Free,LinkNYC - Citybridge,mn-05-122056,Greenly Sq. W 32St,40.7485394098,-73.9882184599,987514.416688,211989.966162,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000184,06/19/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,76,1007600,1015199,1008090050,3077 +MN,POINT (-73.98779172934339 40.75009208007572),12123,Free,LinkNYC - Citybridge,mn-05-122775,1313 BROADWAY,40.7500920801,-73.9877917293,987632.5759,212555.670083,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000185,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,109,1010900,1015220,1008100040,3078 +MN,POINT (-73.98873983042944 40.734147649661395),12124,Free,LinkNYC - Citybridge,mn-05-134620,117 East 14Th St,40.7341476497,-73.9887398304,987370.629902,206746.571793,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000186,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,105,50,1005000,1083247,1008707500,3079 +MN,POINT (-73.98941209040382 40.73414055979803),12125,Free,LinkNYC - Citybridge,mn-03-123149,145 4Th Ave,40.7341405598,-73.9894120904,987184.320891,206743.965499,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000189,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,42,1004200,1077569,1005590010,3080 +MN,POINT (-73.99342438014827 40.736110519837794),12126,Free,LinkNYC - Citybridge,mn-05-134468,69 5 AVENUE,40.7361105198,-73.9934243801,986072.305727,207461.574956,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000190,11/01/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,1016061,1008427500,3081 +MN,POINT (-73.99684066050824 40.73756051035874),12127,Free,LinkNYC - Citybridge,mn-04-111683,101 West 14Th St,40.7375605104,-73.9968406605,985125.530717,207989.799621,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000191,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014526,1007900030,3082 +MN,POINT (-73.9936010196927 40.73620057966115),12128,Free,LinkNYC - Citybridge,mn-05-136396,82 5 AVENUE,40.7362005797,-73.9936010197,986023.3511,207494.382961,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000193,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1009717,1005770040,3083 +MN,POINT (-73.9897779802114 40.73412707983505),12129,Free,LinkNYC - Citybridge,mn-03-133442,145 4 AVENUE,40.7341270798,-73.9897779802,987082.919191,206739.04228,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000194,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,42,1004200,1077569,1005590010,3084 +MN,POINT (-73.99831928053212 40.73807416030332),12130,Free,LinkNYC - Citybridge,mn-04-123535,133 WEST 14 STREET,40.7380741603,-73.9983192805,984715.765133,208176.9272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000198,11/11/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014523,1007907500,3085 +MN,POINT (-74.00094609986208 40.738996609771654),12131,Free,LinkNYC - Citybridge,mn-02-123538,220 WEST 14 STREET,40.7389966098,-74.0009460999,983987.818098,208513.001659,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000199,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,77,1007700,1011104,1006180020,3086 +MN,POINT (-73.97785338003885 40.77888904011655),12132,Free,LinkNYC - Citybridge,mn-07-121157,300 COLUMBUS AVENUE,40.7788890401,-73.97785338,990383.566461,223047.892209,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012452,02/07/2019 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,161,1016100,1030070,1011460030,4147 +MN,POINT (-73.97231140052767 40.78665383985866),12133,Free,LinkNYC - Citybridge,mn-07-121257,101 WEST 86 STREET,40.7866538399,-73.9723114005,991917.538459,225877.309122,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012454,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,173,1017300,1032201,1012170040,4148 +MN,POINT (-73.9688649996277 40.76736400015343),12134,Free,LinkNYC - Citybridge,mn-08-121137,22 EAST 65 STREET,40.7673640002,-73.9688649996,992874.415154,218849.691944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012457,04/17/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,122,1012200,1041093,1013790060,4149 +MN,POINT (-73.9756836470715 40.76111775062782),12135,Free,LinkNYC - Citybridge,mn-05-122860,2 WEST 54 STREET,40.7611177506,-73.9756836471,990986.277198,216573.379567,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012462,01/08/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,104,1010400,1034532,1012690040,4150 +MN,POINT (-73.98965897992487 40.767789990018635),12136,Free,LinkNYC - Citybridge,mn-04-122470,829 10 AVENUE,40.76778999,-73.9896589799,987114.450952,219003.530547,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012472,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,6,10019,104,135,1013500,1081749,1010830040,4151 +MN,POINT (-73.96346015008693 40.77428147039725),12137,Free,LinkNYC - Citybridge,mn-08-121036,30 EAST 76 STREET,40.7742814704,-73.9634601501,994370.510587,221370.534999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012482,04/06/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,130,1013000,1041721,1013907500,4152 +MN,POINT (-73.96011566514771 40.77879464622918),12138,Free,LinkNYC - Citybridge,mn-08-121051,40 EAST 83 STREET,40.7787946462,-73.9601156651,995296.090101,223015.240699,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012484,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,142,1014200,1046768,1014940050,4153 +MN,POINT (-73.96390550995767 40.75717376962044),12139,Free,LinkNYC - Citybridge,mn-06-121695,1011 1 AVENUE,40.7571737696,-73.96390551,994249.726708,215137.583554,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012486,05/02/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039972,1013480020,4154 +MN,POINT (-73.96891544055933 40.79078578011279),12140,Free,LinkNYC - Citybridge,mn-07-120599,677 COLUMBUS AVENUE,40.7907857801,-73.9689154406,992857.41486,227383.03216,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012502,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,177,1017700,1079516,1012060000,4155 +MN,POINT (-73.96418067026359 40.76104904036874),12141,Free,LinkNYC - Citybridge,mn-08-121764,1131 2 AVENUE,40.7610490404,-73.9641806703,994172.918134,216549.439982,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012503,02/22/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10022,108,110,1011000,0,1014147500,4156 +MN,POINT (-73.98107921388556 40.77496988192508),12142,Free,LinkNYC - Citybridge,mn-07-137400,130 WEST 68 STREET,40.7749698819,-73.9810792139,989490.471463,221619.801561,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012510,11/23/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1084564,1011397500,4157 +MN,POINT (-73.96836400050071 40.76809299971573),12143,Free,LinkNYC - Citybridge,mn-08-120942,21 EAST 66 STREET,40.7680929997,-73.9683640005,993013.096307,219115.340362,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012513,04/17/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,122,1012200,1041167,1013817500,4158 +MN,POINT (-73.98236686967641 40.7754432795939),12144,Free,LinkNYC - Citybridge,mn-07-121323,1995 BROADWAY,40.7754432796,-73.9823668697,989133.795995,221792.201807,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012517,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1070358,1011397500,4159 +MN,POINT (-73.98276469945988 40.73152105020122),12145,Free,LinkNYC - Citybridge,mn-06-123285,353 EAST 14 STREET,40.7315210502,-73.9827646995,989026.758807,205789.888667,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012528,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1082155,1009210030,4160 +MN,POINT (-73.93976733952573 40.82596686993836),12146,Free,LinkNYC - Citybridge,mn-10-119900,2817 FREDERICK DOUGLASS BLVD,40.8259668699,-73.9397673395,1000919.80359,240204.954679,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012532,05/24/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,259,1025900,1060846,1020450100,4161 +MN,POINT (-73.9454496102683 40.834189249819104),12147,Free,LinkNYC - Citybridge,mn-12-120348,3779 BROADWAY,40.8341892498,-73.9454496103,999345.33069,243199.638978,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012539,03/27/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1063255,1021340090,4162 +MN,POINT (-73.94577542968024 40.82792507019758),12148,Free,LinkNYC - Citybridge,mn-09-135244,1800 AMSTERDAM AVENUE,40.8279250702,-73.9457754297,999256.581852,240917.312178,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012540,01/12/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062098,1020810030,4163 +MN,POINT (-73.94622593050171 40.82730493985028),12149,Free,LinkNYC - Citybridge,mn-09-136457,1780 AMSTERDAM AVENUE,40.8273049399,-73.9462259305,999132.045027,240691.299179,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012542,04/26/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062033,1020800030,4164 +MN,POINT (-73.94420041967052 40.82973305965221),12150,Free,LinkNYC - Citybridge,mn-09-134427,1865 AMSTERDAM AVENUE,40.8297330597,-73.9442004197,999692.044235,241576.302658,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012543,06/18/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,235,1023501,1061607,1020670000,4165 +MN,POINT (-73.94929876043318 40.828319589735244),12151,Free,LinkNYC - Citybridge,mn-09-134795,3599 BROADWAY,40.8283195897,-73.9492987604,998281.4214,241060.466091,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012544,03/13/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1083034,1020940040,4166 +MN,POINT (-73.95903881027563 40.76343296044103),12152,Free,LinkNYC - Citybridge,mn-08-135869,1208 1 AVENUE,40.7634329604,-73.9590388103,995596.94547,217418.604583,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012553,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1045391,1014600000,4167 +MN,POINT (-74.00808438984787 40.72340370995821),12153,Free,LinkNYC - Citybridge,mn-01-138618,201 HUDSON STREET,40.72340371,-74.0080843898,982009.140625,202832.122929,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012560,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,39,1003900,1002933,1002250010,4168 +MN,POINT (-73.98503715957484 40.747627259921),12154,Free,LinkNYC - Citybridge,mn-05-133690,333 5 AVENUE,40.7476272599,-73.9850371596,988395.94478,211657.775225,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012563,10/20/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1017033,1008620070,4169 +MN,POINT (-73.99679983961416 40.74269966977165),12155,Free,LinkNYC - Citybridge,mn-04-134553,180 7 AVENUE,40.7426996698,-73.9967998396,985136.774789,209862.158738,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012570,02/28/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1014037,1007700040,4170 +MN,POINT (-73.97684323012761 40.74365853955732),12156,Free,LinkNYC - Citybridge,mn-06-136296,585 2 AVENUE,40.7436585396,-73.9768432301,990666.723375,210212.337499,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012572,01/18/2019 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1020092,1009130030,4171 +MN,POINT (-73.97904815971116 40.74023290985777),12157,Free,LinkNYC - Citybridge,mn-06-134832,476 2 AVENUE,40.7402329099,-73.9790481597,990056.037589,208964.117883,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012573,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1082730,1009340000,4172 +MN,POINT (-73.95242700039044 40.80054599967562),10958,Free,Harlem,,Pole 19 - 113CStNk,40.8005459997,-73.9524270004,997421.185588,230941.068351,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,0,0,792 +MN,POINT (-73.95294199985489 40.80351099957891),10959,Free,Harlem,,pole 23: 116CStNk-7av,40.8035109996,-73.9529419999,997278.021176,232021.244669,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,0,0,793 +MN,POINT (-73.95034899999813 40.798102000029864),10960,Free,Harlem,,pole 18: 111NS2ELe,40.798102,-73.950349,997997.01088,230050.953334,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,0,0,794 +MN,POINT (-73.95454900048051 40.79992800038794),10961,Free,Harlem,,pole 17: 111C7av,40.7999280004,-73.9545490005,996833.799952,230715.597674,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,0,0,795 +MN,POINT (-73.94849200046502 40.79652799959512),10963,Free,Harlem,,pole 13: 110SS3E5av,40.7965279996,-73.9484920005,998511.500665,229477.787157,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,9,10029,111,17401,1017401,0,0,797 +MN,POINT (-73.94668499967308 40.80059200044177),10965,Free,Harlem,,pole 11: 116C5av,40.8005920004,-73.9466849997,999010.920597,230958.743513,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,190,1019000,0,0,799 +MN,POINT (-73.94575600045778 40.80134999986888),10966,Free,Harlem,,pole 10: 117C5av,40.8013499999,-73.9457560005,999267.954532,231235.067107,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,0,1016230001,800 +MN,POINT (-73.97710000040435 40.77210000005057),10968,Free,AT&T,Central Park,South side near Tavern on the Green,40.7721000001,-73.9771000004,990592.863615,220574.470646,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10023,164,143,1014300,0,1011110001,1 +MN,POINT (-73.97119999984264 40.76800000019082),10969,Free,AT&T,Central Park,South side near Central Park Zoo,40.7680000002,-73.9711999998,992227.542432,219081.186559,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10065,164,143,1014300,0,1011110001,2 +BK,POINT (-73.9762919995751 40.6630940001771),10970,Limited Free,SPECTRUM,Prospect Park Band Shell,Park Bandshell Area,40.6630940002,-73.9762919996,990827.413014,180860.306636,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,3 +BK,POINT (-73.97608299942421 40.66338100004786),10971,Limited Free,SPECTRUM,Prospect Park Band Shell,Park Bandshell Area,40.663381,-73.9760829994,990885.368279,180964.884511,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11215,355,177,3017700,0,3011170001,4 +QU,POINT (-73.76536399997734 40.675978999570475),10972,Limited Free,SPECTRUM,Railroad Park,SE area off Garrett St,40.6759789996,-73.765364,1049333.42822,185640.952915,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,33401,4033401,0,0,5 +QU,POINT (-73.77069300030614 40.679471999693554),10973,Limited Free,SPECTRUM,Railroad Park,NW area off 129th Ave,40.6794719997,-73.7706930003,1047851.94004,186909.634433,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,33401,4033401,0,0,6 +QU,POINT (-73.76775200031132 40.679963000228476),10974,Limited Free,SPECTRUM,Railroad Park,NE area off 129th Ave,40.6799630002,-73.7677520003,1048667.19694,187090.668519,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,33401,4033401,0,0,7 +MN,POINT (-73.9850750004847 40.78595799962192),10975,Limited Free,SPECTRUM,West 79th Street Boat Basin,Outdoor - Boat Basin Café,40.7859579996,-73.9850750005,988383.080305,225622.931022,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1089425,1011870003,8 +MN,POINT (-73.99797999992514 40.710249999883835),10976,Limited Free,SPECTRUM,Alfred E. Smith Playground,Basketball Court,40.7102499999,-73.9979799999,984810.021178,198039.727658,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,9 +MN,POINT (-73.93610000013308 40.82920000041291),10977,Free,AT&T,Holcombe Rucker Park,Entire Park,40.8292000004,-73.9361000001,1001933.90557,241383.621285,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,24302,1024302,0,1021050001,10 +MN,POINT (-73.94430000001691 40.80480000022999),10978,Free,AT&T,Marcus Garvey Park,Amphitheater,40.8048000002,-73.9443,999670.262455,232492.276207,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,0,1017190001,11 +MN,POINT (-73.99797999992514 40.710249999883835),10979,Limited Free,SPECTRUM,Alfred E. Smith Playground,Lobby,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,12 +MN,POINT (-73.99797999992514 40.710249999883835),10980,Limited Free,SPECTRUM,Alfred E. Smith Playground,Multipurpose Room,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,14 +MN,POINT (-73.99797999992514 40.710249999883835),10981,Limited Free,SPECTRUM,Alfred E. Smith Playground,Basketball Court 1,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,15 +MN,POINT (-73.99797999992514 40.710249999883835),10982,Limited Free,SPECTRUM,Alfred E. Smith Playground,Basketball Court 2,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,16 +QU,POINT (-73.73682499974599 40.73935300012815),10983,Limited Free,SPECTRUM,Alley Pond Park,Tennis Courts and Ball Field,40.7393530001,-73.7368249997,1057180.19698,208752.399474,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,18 +QU,POINT (-73.73592000049717 40.73954700042905),10984,Limited Free,SPECTRUM,Alley Pond Park,Tennis Courts and Ball Field,40.7395470004,-73.7359200005,1057430.77357,208823.834371,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,19 +QU,POINT (-73.73504099941144 40.73973900027515),10985,Limited Free,SPECTRUM,Alley Pond Park,Tennis Courts and Ball Field,40.7397390003,-73.7350409994,1057674.14645,208894.521237,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,20 +QU,POINT (-73.73458000035771 40.739908999893494),10986,Limited Free,SPECTRUM,Alley Pond Park,Comfort Station and Ball Field,40.7399089999,-73.7345800004,1057801.7082,208956.843947,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,21 +MN,POINT (-74.01489999985749 40.701599999635505),10987,Free,AT&T,The Battery,Bosque Area,40.7015999996,-74.0148999999,980118.614878,194888.617819,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,1,10004,101,319,1031900,0,1000030001,22 +MN,POINT (-74.01679999960706 40.702999999678916),10988,Free,AT&T,The Battery,Ferry Landing,40.7029999997,-74.0167999996,979591.89185,195398.774935,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,1,10004,101,319,1031900,0,1000030001,23 +QU,POINT (-73.73431100023792 40.74021399967946),10989,Limited Free,SPECTRUM,Alley Pond Park,Comfort Station and Ball Field,40.7402139997,-73.7343110002,1057875.91474,209068.190509,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,24 +QU,POINT (-73.82524100006403 40.75797000023106),10990,Limited Free,SPECTRUM,Bowne Playground,Playground Area,40.7579700002,-73.8252410001,1032665.1525,215473.910965,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11355,407,855,4085500,0,0,25 +QU,POINT (-73.82507800041479 40.75858000010584),10991,Limited Free,SPECTRUM,Bowne Playground,Playground Area,40.7585800001,-73.8250780004,1032709.86599,215696.243526,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11355,407,855,4085500,0,0,26 +BK,POINT (-73.99765600000337 40.69667499985726),10992,Limited Free,SPECTRUM,Brooklyn Heights Promenade,Along Promenade,40.6966749999,-73.997656,984899.978675,193093.95146,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002080025,27 +BK,POINT (-73.99748600033418 40.69698899955794),10993,Limited Free,SPECTRUM,Brooklyn Heights Promenade,Along Promenade,40.6969889996,-73.9974860003,984947.115392,193208.35215,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002080025,28 +BK,POINT (-73.99733299956107 40.697343999719415),10994,Limited Free,SPECTRUM,Brooklyn Heights Promenade,Along Promenade,40.6973439997,-73.9973329996,984989.537551,193337.690474,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002080025,29 +BK,POINT (-73.99718300014358 40.69766900006647),10995,Limited Free,SPECTRUM,Brooklyn Heights Promenade,Along Promenade,40.6976690001,-73.9971830001,985031.127363,193456.09903,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002080025,30 +BK,POINT (-73.99694400011036 40.69810300038853),10996,Limited Free,SPECTRUM,Brooklyn Heights Promenade,Along Promenade,40.6981030004,-73.9969440001,985097.394291,193614.220433,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002080025,31 +BK,POINT (-73.9903489997162 40.69673199973893),10997,Limited Free,SPECTRUM,Cadman Plaza Park,Comfort Station,40.6967319997,-73.9903489997,986926.16852,193114.85693,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,0,3000580050,32 +MN,POINT (-74.00089000044927 40.74990800011612),10998,Limited Free,SPECTRUM,Chelsea Park,Front of Comfort Station and Playground,40.7499080001,-74.0008900004,984003.404681,212488.369364,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,97,1009700,0,1007240100,33 +MN,POINT (-74.01621383586667 40.715488154439505),10999,Free,NYPL,Battery Park City Library,175 NORTH END AVENUE,40.7154881544,-74.0162138359,979755.25865,199948.555861,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10282,101,31703,1031703,1087518,1000167516,34 +BK,POINT (-73.98623162551405 40.60569034303953),11000,Free,BPL,Highlawn - Brooklyn Public Library,1664 WEST 13 STREET,40.605690343,-73.9862316255,988073.106843,159946.019069,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK29,Bensonhurst East,44,11223,311,404,3040400,3175253,3066180034,35 +BK,POINT (-73.98944676719246 40.62306453442267),11001,Free,BPL,Mapleton - Brooklyn Public Library,1702 60 STREET,40.6230645344,-73.9894467672,987179.585992,166275.767236,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,244,3024400,3132091,3055180004,36 +MN,POINT (-74.0007109994139 40.749783000323056),11002,Limited Free,SPECTRUM,Chelsea Park,Track and Soccer Field,40.7497830003,-74.0007109994,984053.00071,212442.827461,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,97,1009700,0,1007240100,37 +MN,POINT (-74.00206799969585 40.74827000044159),11003,Limited Free,SPECTRUM,Chelsea Recreation Center,2nd Floor Lobby,40.7482700004,-74.0020679997,983676.998509,211891.598904,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,93,1009300,1012811,1007220057,38 +MN,POINT (-74.00206799969585 40.74827000044159),11004,Limited Free,SPECTRUM,Chelsea Recreation Center,3rd Floor Basketball Court,40.7482700004,-74.0020679997,983676.998509,211891.598904,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,93,1009300,1012811,1007220057,39 +MN,POINT (-74.00206799969585 40.74827000044159),11005,Limited Free,SPECTRUM,Chelsea Recreation Center,3rd Floor Basketball Court,40.7482700004,-74.0020679997,983676.998509,211891.598904,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,93,1009300,1012811,1007220057,40 +MN,POINT (-74.00206799969585 40.74827000044159),11006,Limited Free,SPECTRUM,Chelsea Recreation Center,3rd Floor Cardio Rm,40.7482700004,-74.0020679997,983676.998509,211891.598904,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,93,1009300,1012811,1007220057,41 +MN,POINT (-74.00206799969585 40.74827000044159),11007,Limited Free,SPECTRUM,Chelsea Recreation Center,4th Floor Weight Rm,40.7482700004,-74.0020679997,983676.998509,211891.598904,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,93,1009300,1012811,1007220057,42 +MN,POINT (-74.00696100058614 40.712306999677466),11008,Limited Free,SPECTRUM,City Hall Park,North Pathway and Foutain Area,40.7123069997,-74.0069610006,982320.204307,198789.225175,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,31,1003100,0,1001220001,43 +MN,POINT (-74.00990300027735 40.709350000120274),11009,Limited Free,SPECTRUM,City Hall Park,South Pathway and Foutain Area,40.7093500001,-74.0099030003,981504.472999,197711.979298,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,1079040,1000640015,44 +SI,POINT (-74.10818599961105 40.61806399988341),11010,Limited Free,SPECTRUM,Clove Lakes Park - Lake Club Restaurant,"Front area of the Lake Club Restaurant, Bridge and Parking Lot",40.6180639999,-74.1081859996,954215.236239,164472.311197,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI07,Westerleigh,49,10301,501,147,5014700,0,5003190001,45 +QU,POINT (-73.7946780399278 40.70787313178586),11011,Free,QPL,Queens Central Library,89-11 MERRICK BOULEVARD,40.7078731318,-73.7946780399,1041175.06757,197240.470726,Library,,Jamaica,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,460,4046000,4209635,4097980006,46 +QU,POINT (-73.88086427337359 40.71294357077788),11012,Free,QPL,Middle Village,72-31 METROPOLITAN AVENUE,40.7129435708,-73.8808642734,1017277.62914,199043.530112,Library,,Middle Village,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,65702,4065702,4312065,4030577501,47 +QU,POINT (-73.82516996389201 40.74293094649011),11013,Free,QPL,Queensboro Hill,60-05 MAIN STREET,40.7429309465,-73.8251699639,1032695.76793,209994.749024,Library,,Flushing,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,80301,4080301,4140176,4064050050,48 +MN,POINT (-73.9348475633247 40.80301816141575),11014,Free,NYPL,125th Street,224 EAST 125 STREET,40.8030181614,-73.9348475633,1002287.604,231844.894956,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,242,1024200,1054674,1017890037,49 +BK,POINT (-73.9682243828713 40.672343526336505),11015,Free,BPL,Brooklyn Central Library,GRAND ARMY PLAZA,40.6723435263,-73.9682243829,993064.424288,184230.879292,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,39,11238,355,159,3015900,3029665,3011830002,50 +BK,POINT (-74.013630001215 40.64591212398883),11016,Free,BPL,Sunset Park - Brooklyn Public Library,5108 4 AVENUE,40.645912124,-74.0136300012,980467.595808,174599.8769,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11220,307,78,3007800,3013507,3007980034,51 +MN,POINT (-73.94345107960214 40.794215612904715),11017,Free,NYPL,Aguilar,174 EAST 110 STREET,40.7942156129,-73.9434510796,999907.771166,228636.165481,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052167,1016370141,52 +BK,POINT (-73.96603066603613 40.68737909411427),11018,Free,BPL,Clinton Hill - Brooklyn Public Library,380 WASHINGTON AVENUE,40.6873790941,-73.966030666,993670.827931,189708.997928,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,197,3019700,3055495,3019450036,53 +MN,POINT (-74.00370029961638 40.707199099577984),11019,Free,Manhattan Down Alliance,1,"23 Fulton Street, New York, NY 10038, USA",40.7071990996,-74.0037002996,983224.088654,196928.207899,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,1082006,1000960005,54 +MN,POINT (-74.00360110039786 40.70709989970284),11020,Free,Manhattan Down Alliance,2,"19 Fulton Street, New York, NY 10038, USA",40.7070998997,-74.0036011004,983251.59024,196892.065255,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,1001320,1000960012,55 +MN,POINT (-74.0035019002912 40.707000699740995),11021,Free,Manhattan Down Alliance,3,"201 Front Street, New York, NY 10038, USA",40.7070006997,-74.0035019003,983279.092153,196855.922611,Outdoor,,New York,#DwtwnAllianceFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,1001320,1000960012,56 +MN,POINT (-73.9703352001189 40.78883163020613),11022,Free,LinkNYC - Citybridge,mn-07-135898,609 COLUMBUS AVE,40.7888316302,-73.9703352001,992464.519976,226670.931878,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012782,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,173,1017300,1031543,1012030000,4219 +QU,POINT (-73.8757747496437 40.74855095019411),11023,Free,LinkNYC - Citybridge,qu-03-136305,90-13 ROOSEVELT AVENUE,40.7485509502,-73.8757747496,1018670.18377,212018.357509,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012786,09/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,275,4027500,4036371,4014780040,4220 +QU,POINT (-73.87938648008667 40.74804918028121),11024,Free,LinkNYC - Citybridge,qu-04-136367,86-18 ROOSEVELT AVENUE,40.7480491803,-73.8793864801,1017669.70218,211834.148232,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012787,10/04/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,269,4026901,4037049,4015010050,4221 +MN,POINT (-73.97452006035476 40.746867540152024),11025,Free,LinkNYC - Citybridge,mn-06-137452,685 2 AVENUE,40.7468675402,-73.9745200604,991310.131865,211381.657667,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012792,03/23/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020339,1009180030,4222 +MN,POINT (-73.99050598957787 40.746250899661526),11026,Free,LinkNYC - Citybridge,mn-05-136868,819 6 AVENUE,40.7462508997,-73.9905059896,986880.68075,211156.11153,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012796,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015118,1008040040,4223 +MN,POINT (-73.99683036015675 40.74230080998198),11027,Free,LinkNYC - Citybridge,mn-04-135811,175 7 AVENUE,40.74230081,-73.9968303602,985128.322707,209716.841115,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012802,05/08/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1014742,1007960000,4224 +MN,POINT (-73.96208669049304 40.763890919634136),11028,Free,LinkNYC - Citybridge,mn-08-135066,1223 2 AVENUE,40.7638909196,-73.9620866905,994752.558707,217585.074066,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012805,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1043870,1014197500,4225 +MN,POINT (-73.97007534945837 40.789182470170964),11029,Free,LinkNYC - Citybridge,mn-07-145539,625 COLUMBUS AVE,40.7891824702,-73.9700753495,992536.431906,226798.779392,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012814,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,177,1017700,1031595,1012040000,4226 +MN,POINT (-73.99820410026184 40.740772460306836),11030,Free,LinkNYC - Citybridge,mn-04-138190,120 7 AVENUE,40.7407724603,-73.9982041003,984747.664019,209160.003974,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012818,03/20/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1086067,1007677500,4227 +QU,POINT (-73.87181740820135 40.74908966946364),11031,Free,LinkNYC - Citybridge,qu-03-139617,37-65 95 STREET,40.7490896695,-73.8718174082,1019766.39123,212216.209804,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012822,02/21/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,273,4027300,4036632,4014830060,4228 +BK,POINT (-73.94987000056229 40.65277100023146),11032,Free,LinkNYC - Citybridge,bk-17-127012,1380 NOSTRAND AVENUE,40.6527710002,-73.9498700006,998159.93411,177102.440136,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012825,06/09/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11226,317,820,3082000,3116689,3050850070,4229 +MN,POINT (-73.98733636960846 40.7246139996242),11033,Free,LinkNYC - Citybridge,mn-03-123295,56 1 AVENUE,40.7246139996,-73.9873363696,987760.085488,203273.21916,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012850,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,1005759,1004310000,4230 +MN,POINT (-73.98382369006613 40.729435929729746),11034,Free,LinkNYC - Citybridge,mn-03-123791,182 1 AVE,40.7294359297,-73.9838236901,988733.400142,205030.158231,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012853,05/31/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1077654,1004390000,4231 +MN,POINT (-73.98449219431976 40.74598597801506),11035,Free,LinkNYC - Citybridge,mn-05-121632,21 EAST 31 STREET,40.745985978,-73.9844921943,988547.051105,211059.829899,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012858,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1080785,1008610020,4232 +MN,POINT (-73.93352882006775 40.849422749730905),11036,Free,LinkNYC - Citybridge,mn-12-120650,1422 ST. NICHOLAS AVE,40.8494227497,-73.9335288201,1002639.87167,248752.051102,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012863,03/12/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063640,1021540000,4233 +MN,POINT (-73.9655037894132 40.75923366015062),11037,Free,LinkNYC - Citybridge,mn-06-121773,1077 2 AVENUE,40.7592336602,-73.9655037894,993806.639011,215887.890452,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012865,06/12/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1090233,1013307500,4234 +BX,POINT (-73.90866199940737 40.85388100023551),11038,Free,LinkNYC - Citybridge,bx-05-123185,23 WEST BURNSIDE AVENUE,40.8538810002,-73.9086619994,1009517.81363,250382.557683,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012881,01/12/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,251,2025100,2014160,2031930030,4235 +QU,POINT (-73.92851391034296 40.763552880040834),11039,Free,LinkNYC - Citybridge,qu-01-125092,23-55 BROADWAY,40.76355288,-73.9285139103,1004052.82423,217467.722595,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012887,05/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,75,4007500,4006566,4005670000,4236 +MN,POINT (-73.97925179982843 40.740368560412755),12158,Free,LinkNYC - Citybridge,mn-06-134374,479 2 AVENUE,40.7403685604,-73.9792517998,989999.59446,209013.526248,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012574,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019855,1009070030,4173 +MN,POINT (-73.99024140963381 40.746619290038424),12159,Free,LinkNYC - Citybridge,mn-05-134444,831 6 AVENUE,40.74661929,-73.9902414096,986953.977848,211290.335999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012579,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015123,1008040040,4174 +QU,POINT (-73.92362683946702 40.75577655019248),12160,Free,LinkNYC - Citybridge,qu-01-137830,37-08 35 AVENUE,40.7557765502,-73.9236268395,1005409.09317,214635.694794,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012586,10/09/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11101,401,57,4005700,4009607,4006410010,4175 +MN,POINT (-73.97028390016182 40.78926318018141),12161,Free,LinkNYC - Citybridge,mn-07-136376,620 COLUMBUS AVE,40.7892631802,-73.9702839002,992478.672179,226828.16516,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012591,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,177,1017700,1032490,1012210030,4176 +MN,POINT (-73.9899330701148 40.7670473599023),12162,Free,LinkNYC - Citybridge,mn-04-137461,800 10 AVENUE,40.7670473599,-73.9899330701,987038.559372,218732.956941,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012596,02/08/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1088574,1010637500,4177 +MN,POINT (-73.98754894017735 40.74417468010923),12163,Free,LinkNYC - Citybridge,mn-05-133695,233 5 AVENUE,40.7441746801,-73.9875489402,987700.152537,210399.781022,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012609,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10016,105,56,1005600,1016882,1008570000,4178 +QU,POINT (-73.88792591947207 40.74715289003378),12164,Free,LinkNYC - Citybridge,qu-04-136653,77-14 ROOSEVELT AVENUE,40.74715289,-73.8879259195,1015304.00579,211504.458603,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012611,08/25/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4036780,4014880010,4179 +MN,POINT (-73.98813678041894 40.75459324960695),12165,Free,LinkNYC - Citybridge,mn-05-135169,552 7 AVENUE,40.7545932496,-73.9881367804,987536.749648,214195.578548,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012614,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,1014502,1007890040,4180 +MN,POINT (-73.96062003969288 40.761267350148934),12166,Free,LinkNYC - Citybridge,mn-08-135076,1126 1 AVENUE,40.7612673501,-73.9606200397,995159.272789,216629.40078,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012618,06/07/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,106,1010602,1045288,1014560050,4181 +MN,POINT (-73.99188286577336 40.74397069528846),12167,Free,LinkNYC - Citybridge,mn-05-134490,750 6 AVENUE,40.7439706953,-73.9918828658,986499.241225,210325.321853,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012620,04/05/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1085951,1008260000,4182 +MN,POINT (-73.96829519979781 40.800093040062464),12168,Free,LinkNYC - Citybridge,mn-07-134372,2721 BROADWAY,40.8000930401,-73.9682951998,993027.934204,230774.051297,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012621,09/19/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,1056583,1018760010,4183 +MN,POINT (-73.97059943056523 40.795995860309205),12169,Free,LinkNYC - Citybridge,mn-07-133639,2600 BROADWAY,40.7959958603,-73.9705994306,992390.475505,229281.083482,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012623,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1082691,1018707500,4184 +BK,POINT (-73.95610851440682 40.68181019742043),11301,Free,BPL,Bedford - Brooklyn Public Library,496 FRANKLIN AVENUE,40.6818101974,-73.9561085144,996423.587518,187681.310383,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,303,227,3022700,3057384,3019970032,470 +MN,POINT (-73.98313230656268 40.74440677737846),12170,Free,LinkNYC - Citybridge,mn-05-135635,439 PARK AVENUE SOUTH,40.7444067774,-73.9831323066,988923.972596,210484.546272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012631,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1082103,1008850090,4185 +MN,POINT (-74.00358788028348 40.743599740153385),12171,Free,LinkNYC - Citybridge,mn-04-135516,129 9 AVENUE,40.7435997402,-74.0035878803,983255.800205,210190.087216,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012636,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1078443,1007160020,4186 +MN,POINT (-73.97998542988205 40.739341230339804),12172,Free,LinkNYC - Citybridge,mn-06-135591,441 2 AVENUE,40.7393412303,-73.9799854299,989796.381612,208639.190055,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012639,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019831,1009060020,4187 +MN,POINT (-73.98387849978582 40.74339468041982),12173,Free,LinkNYC - Citybridge,mn-05-134631,407 PARK AVENUE SOUTH,40.7433946804,-73.9838784998,988717.273206,210115.768138,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012640,06/19/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018204,1008840000,4188 +MN,POINT (-73.99181959008158 40.764455889680434),12174,Free,LinkNYC - Citybridge,mn-04-139998,728 10 AVENUE,40.7644558897,-73.9918195901,986516.077805,217788.744262,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012642,04/30/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,127,1012700,1026665,1010590160,4189 +MN,POINT (-73.98904337050209 40.76826157998628),12175,Free,LinkNYC - Citybridge,mn-04-135877,850 10 AVENUE,40.76826158,-73.9890433705,987284.95258,219175.367145,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012645,01/05/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1026841,1010650000,4190 +MN,POINT (-73.99131194005378 40.765159210098645),12176,Free,LinkNYC - Citybridge,mn-04-140000,748 10 AVENUE,40.7651592101,-73.9913119401,986656.677918,218045.00064,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012646,01/08/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026704,1010600060,4191 +MN,POINT (-73.99196653010569 40.76462447978385),12177,Free,LinkNYC - Citybridge,mn-04-136045,735 10 AVENUE,40.7646244798,-73.9919665301,986475.367913,217850.163431,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012647,04/30/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,129,1012900,1083799,1010780020,4192 +MN,POINT (-73.98160829007271 40.73674720003243),12178,Free,LinkNYC - Citybridge,mn-06-134533,364 2 AVENUE,40.7367472,-73.9816082901,989346.857577,207694.004281,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012649,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1020543,1009270000,4193 +MN,POINT (-73.99077540978841 40.745494070152134),12179,Free,LinkNYC - Citybridge,mn-05-133688,800 6 AVENUE,40.7454940702,-73.9907754098,986806.056556,210880.366347,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012661,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,105,58,1005800,1088723,1008290000,4194 +MN,POINT (-73.99629565032 40.73830239974023),12180,Free,LinkNYC - Citybridge,mn-04-134597,555 6 AVENUE,40.7383023997,-73.9962956503,985276.555022,208260.099278,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012665,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014560,1007910040,4195 +MN,POINT (-73.95025608975219 40.80662994006333),12181,Free,LinkNYC - Citybridge,mn-10-134604,2022 ADAM CLAYTON POWELL JR BOULEVARD,40.8066299401,-73.9502560898,998020.970806,233157.995348,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012666,09/12/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1058513,1019270030,4196 +MN,POINT (-73.9596485300044 40.76259531033316),12182,Free,LinkNYC - Citybridge,mn-08-135119,1166 1 AVENUE,40.7625953103,-73.95964853,995428.18334,217113.342726,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012671,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,106,1010602,1045387,1014580050,4197 +MN,POINT (-73.9353630896871 40.84751331961483),12183,Free,LinkNYC - Citybridge,mn-12-139589,601 WEST 178 STREET,40.8475133196,-73.9353630897,1002132.91731,248055.993767,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012673,03/09/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,1079920,1021620000,4198 +MN,POINT (-73.9710607599892 40.75118753961033),12184,Free,LinkNYC - Citybridge,mn-06-136682,828 2 AVENUE,40.7511875396,-73.97106076,992268.135199,212955.87007,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012679,04/18/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1076275,1013370000,4199 +MN,POINT (-73.9911985495404 40.73916604008274),12185,Free,LinkNYC - Citybridge,mn-05-135652,119 5 AVENUE,40.7391660401,-73.9911985495,986689.039729,208574.851601,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012682,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,1016155,1008480000,4200 +MN,POINT (-73.99085200960329 40.76578850968596),12186,Free,LinkNYC - Citybridge,mn-04-135163,764 10 AVENUE,40.7657885097,-73.9908520096,986784.059224,218274.288239,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012689,11/08/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026733,1010610060,4201 +MN,POINT (-73.99105737988373 40.76587530016564),12187,Free,LinkNYC - Citybridge,mn-04-134867,769 10 AVENUE,40.7658753002,-73.9910573799,986727.16695,218305.903005,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012691,02/23/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,135,1013500,1088274,1010800030,4202 +MN,POINT (-73.99456316973153 40.74526757989035),12188,Free,LinkNYC - Citybridge,mn-04-134558,170 WEST 25 STREET,40.7452675799,-73.9945631697,985756.505177,210797.760869,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012694,10/25/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,91,1009100,1014997,1008000080,4203 +MN,POINT (-73.98538547051362 40.74132322021651),12189,Free,LinkNYC - Citybridge,mn-05-133657,341 PARK AVENUE SOUTH,40.7413232202,-73.9853854705,988299.81702,209360.996026,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012695,06/07/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,105,68,1006800,1080811,1008800090,4204 +MN,POINT (-73.99282601999946 40.73727987976912),12190,Free,LinkNYC - Citybridge,mn-05-136386,108 5 AVENUE,40.7372798798,-73.99282602,986238.094765,207887.62266,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012709,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015318,1008177500,4205 +MN,POINT (-73.98039602947036 40.738383759916665),12191,Free,LinkNYC - Citybridge,mn-06-138795,416 2 AVENUE,40.7383837599,-73.9803960295,989682.675474,208290.327564,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012714,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1084709,1009290000,4206 +MN,POINT (-73.96540561036878 40.754695280259625),12192,Free,LinkNYC - Citybridge,mn-06-137023,936 1 AVENUE,40.7546952803,-73.9654056104,993834.49099,214234.421647,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012715,05/02/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,86,1008603,1040132,1013630000,4207 +MN,POINT (-73.98469437049374 40.73251878973946),12193,Free,LinkNYC - Citybridge,mn-06-134583,230 2 AVENUE,40.7325187897,-73.9846943705,988491.887502,206153.297061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012722,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1020387,1009210000,4208 +MN,POINT (-73.9901121598857 40.751521639587494),12194,Free,LinkNYC - Citybridge,mn-05-135518,461 7 AVENUE,40.7515216396,-73.9901121599,986989.589653,213076.423634,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012727,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,1015221,1008100080,4209 +MN,POINT (-73.9892467895095 40.73067159957004),12195,Free,LinkNYC - Citybridge,mn-03-136018,46 3 AVENUE,40.7306715996,-73.9892467895,987230.287335,205480.120258,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012730,03/29/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,42,1004200,1008962,1005550030,4210 +MN,POINT (-73.98276824991791 40.745339950038364),12196,Free,LinkNYC - Citybridge,mn-05-135639,462 PARK AVENUE SOUTH,40.74533995,-73.9827682499,989024.784402,210824.550514,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012735,10/12/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,1080789,1008610040,4211 +MN,POINT (-73.970482430131 40.78898615972315),12197,Free,LinkNYC - Citybridge,mn-07-134642,618 COLUMBUS AVE,40.7889861597,-73.9704824301,992423.731344,226727.218511,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012758,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,173,1017300,1032439,1012200030,4212 +MN,POINT (-73.9383645498707 40.822902250223095),12198,Free,LinkNYC - Citybridge,mn-10-134720,2534 ADAM CLAYTON POWELL JR BOULEVARD,40.8229022502,-73.9383645499,1001308.82086,239088.672463,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012761,09/21/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,234,1023400,1084143,1020320030,4213 +MN,POINT (-73.97715883965994 40.74685005022939),12199,Free,LinkNYC - Citybridge,mn-06-134845,541 3 AVENUE,40.7468500502,-73.9771588397,990578.96502,211375.083861,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012766,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020201,1009160060,4214 +MN,POINT (-73.9342409997877 40.84844385023135),12200,Free,LinkNYC - Citybridge,mn-12-135041,1398 ST NICHOLAS AVENUE,40.8484438502,-73.9342409998,1002443.10829,248395.252275,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012768,03/01/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1063625,1021530040,4215 +MN,POINT (-73.95740873225824 40.76566545218412),12201,Free,LinkNYC - Citybridge,mn-08-135088,1284 1 AVENUE,40.7656654522,-73.9574087323,996048.109266,218232.190226,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012770,05/11/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1045578,1014630050,4216 +MN,POINT (-73.98061044983393 40.73850250021047),12202,Free,LinkNYC - Citybridge,mn-06-135228,415 2 AVENUE,40.7385025002,-73.9806104498,989623.245475,208333.575181,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012772,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1078779,1009040030,4217 +MN,POINT (-73.97954419033398 40.73996263973591),12203,Free,LinkNYC - Citybridge,mn-06-135647,465 2 AVENUE,40.7399626397,-73.9795441903,989918.603808,208865.617424,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012780,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019855,1009070030,4218 +MN,POINT (-73.99993240990835 40.73857046021783),12204,Free,LinkNYC - Citybridge,mn-02-123539,200 WEST 14 STREET,40.7385704602,-73.9999324099,984268.730594,208357.740487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000202,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,77,1007700,1011111,1006180030,3087 +MN,POINT (-73.9981060004016 40.73780499980218),12205,Free,LinkNYC - Citybridge,mn-02-123547,120 WEST 14 STREET,40.7378049998,-73.9981060004,984774.87197,208078.864732,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000203,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,71,1007100,1010639,1006090020,3088 +MN,POINT (-73.9994757403593 40.738667259990024),12206,Free,LinkNYC - Citybridge,mn-04-123537,61 7 AVENUE,40.73866726,-73.9994757404,984395.282834,208393.008133,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000205,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014515,1007900000,3089 +MN,POINT (-73.99792058024558 40.7379058300321),12207,Free,LinkNYC - Citybridge,mn-04-122427,125 WEST 14 STREET,40.73790583,-73.9979205802,984826.255397,208115.601535,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000206,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1086581,1007907500,3090 +MN,POINT (-74.00400453967461 40.74302673032443),12208,Free,LinkNYC - Citybridge,mn-04-136743,119 9Th Ave,40.7430267303,-74.0040045397,983140.334557,209981.326478,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000213,03/13/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1078418,1007150010,3091 +MN,POINT (-73.99237669959602 40.73803969016325),12209,Free,LinkNYC - Citybridge,mn-05-123023,122 5Th Ave,40.7380396902,-73.9923766996,986362.588939,208164.456096,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000214,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015419,1008190040,3092 +MN,POINT (-74.00416970996487 40.742803140312056),12210,Free,LinkNYC - Citybridge,mn-04-123524,400 WEST,40.7428031403,-74.00416971,983094.561682,209899.867652,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000218,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1078409,1007140030,3093 +MN,POINT (-73.99526424042003 40.73933557981812),12211,Free,LinkNYC - Citybridge,mn-05-123137,592 6 AVENUE,40.7393355798,-73.9952642404,985562.360552,208636.533236,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000220,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015407,1008197500,3094 +MN,POINT (-73.9954750903657 40.73943218031321),12212,Free,LinkNYC - Citybridge,mn-04-123136,595 6Th AVENUE,40.7394321803,-73.9954750904,985503.928583,208671.724767,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000221,04/05/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014657,1007930030,3095 +MN,POINT (-73.98716200055753 40.73310699974088),12213,Free,LinkNYC - Citybridge,mn-03-123265,123 3 AVENUE,40.7331069997,-73.9871620006,987807.963345,206367.49053,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000223,01/27/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1088500,1004697510,3096 +MN,POINT (-73.98704350954382 40.73369378995604),12214,Free,LinkNYC - Citybridge,mn-06-136486,130 3 AVENUE,40.73369379,-73.9870435095,987840.770694,206581.281441,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000224,02/01/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1084936,1008700020,3097 +MN,POINT (-73.98738400056723 40.73347000017999),12215,Free,LinkNYC - Citybridge,mn-06-123261,133 EAST 14 STREET,40.7334700002,-73.9873840006,987746.41852,206499.734032,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000225,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1084936,1008700020,3098 +MN,POINT (-73.98688143054162 40.733918849987106),12216,Free,LinkNYC - Citybridge,mn-06-135857,140 3 AVENUE,40.73391885,-73.9868814305,987885.6771,206663.284558,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000226,05/31/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1084936,1008700020,3099 +MN,POINT (-73.98663439026177 40.733840750235174),12217,Free,LinkNYC - Citybridge,mn-06-133896,141 3 AVENUE,40.7338407502,-73.9866343903,987954.146123,206634.840717,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000227,01/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019522,1008960050,3100 +MN,POINT (-73.98665824951425 40.73422211003794),12218,Free,LinkNYC - Citybridge,mn-06-135588,147 3 AVENUE,40.73422211,-73.9866582495,987947.512606,206773.781056,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000228,05/22/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1017803,1008710040,3101 +MN,POINT (-73.98616158036755 40.73449153023417),12219,Free,LinkNYC - Citybridge,mn-06-133339,165 3 AVENUE,40.7344915302,-73.9861615804,988085.143236,206871.96065,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000230,01/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019531,1008970040,3102 +MN,POINT (-73.98062799948742 40.74262499989405),12220,Free,LinkNYC - Citybridge,mn-06-121495,154 EAST 29 STREET,40.7426249999,-73.9806279995,989618.049948,209835.531494,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000231,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018223,1008840050,3103 +MN,POINT (-73.97634429949134 40.74838328956993),12221,Free,LinkNYC - Citybridge,mn-06-121521,155 East 38Th Street,40.7483832896,-73.9763442995,990804.511813,211933.752035,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000232,03/10/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019272,1008947500,3104 +MN,POINT (-73.97653467955739 40.74828704368633),12222,Free,LinkNYC - Citybridge,mn-06-136202,160 East 38Th Street,40.7482870437,-73.9765346796,990751.770777,211898.672381,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000233,03/18/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019099,1008930040,3105 +MN,POINT (-73.96912971957879 40.75827504961722),12223,Free,LinkNYC - Citybridge,mn-06-134118,160 East 54Th,40.7582750496,-73.9691297196,992802.254537,215538.262543,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000235,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036474,1013087500,3106 +MN,POINT (-73.9864879998492 40.73403099968948),12224,Free,LinkNYC - Citybridge,mn-06-133338,147 3rd Ave,40.7340309997,-73.9864879998,987994.706081,206704.160788,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000238,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019523,1008970000,3107 +MN,POINT (-73.98288900012591 40.73953100029637),12225,Free,LinkNYC - Citybridge,mn-06-121489,172 EAST 24 STREET,40.7395310003,-73.9828890001,988991.738864,208708.158749,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000240,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,68,1006800,1018053,1008790040,3108 +MN,POINT (-73.9862593499364 40.73476962959708),12226,Free,LinkNYC - Citybridge,mn-06-133531,180 3 AVENUE,40.7347696296,-73.9862593499,988058.031742,206973.27672,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000241,01/27/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1017822,1008720040,3109 +MN,POINT (-73.98584566993925 40.73534819002531),12227,Free,LinkNYC - Citybridge,mn-06-133521,188 3 AVENUE,40.73534819,-73.9858456699,988172.64339,207184.082729,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000242,01/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1017853,1008730030,3110 +MN,POINT (-73.98532200023593 40.73562599957279),12228,Free,LinkNYC - Citybridge,mn-06-123634,203 3 AVENUE,40.7356259996,-73.9853220002,988317.753007,207285.321372,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000243,01/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019551,1008980000,3111 +MN,POINT (-73.98388999992272 40.73759699966694),12229,Free,LinkNYC - Citybridge,mn-06-134536,201 3 AVENUE,40.7375969997,-73.9838899999,988714.474983,208003.48857,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000246,05/22/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1019633,1009020000,3112 +MN,POINT (-73.97408802995994 40.75071654029355),12230,Free,LinkNYC - Citybridge,mn-06-137072,201 EAST 42 STREET,40.7507165403,-73.97408803,991429.426574,212784.007225,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000251,03/09/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037549,1013160000,3113 +QU,POINT (-73.923869999601 40.761341000263755),11041,Free,LinkNYC - Citybridge,qu-01-125086,32-21 BROADWAY,40.7613410003,-73.9238699996,1005339.96404,216662.946317,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012889,06/14/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4008399,4006140000,4238 +QU,POINT (-73.88409785964348 40.74754336969042),11042,Free,LinkNYC - Citybridge,qu-04-125340,81-18 ROOSEVELT AVENUE,40.7475433697,-73.8840978596,1016364.51351,211648.103,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012917,09/07/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,269,4026901,4036867,4014920010,4239 +BX,POINT (-73.91671906943779 40.81669229968042),11043,Free,LinkNYC - Citybridge,bx-01-123208,2883 3 AVENUE,40.8166922997,-73.9167190694,1007301.78197,236831.119563,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012921,10/26/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,65,2006500,2001336,2023740000,4240 +MN,POINT (-73.95569057047881 40.76777013005834),11044,Free,LinkNYC - Citybridge,mn-08-120843,399 EAST 72 STREET,40.7677701301,-73.9556905705,996523.665401,218999.23003,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012923,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,124,1012400,1045843,1014670000,4241 +QU,POINT (-73.9189950494312 40.74221126966042),11045,Free,LinkNYC - Citybridge,qu-02-124987,45-23 GREENPOINT AVENUE,40.7422112697,-73.9189950494,1006696.89505,209694.581645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012925,03/09/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,183,4018300,4001953,4001640000,4242 +BK,POINT (-73.94338964988704 40.708922019820605),11046,Free,LinkNYC - Citybridge,bk-01-126673,202 AVENUE OF PUERTO RICO,40.7089220198,-73.9433896499,999944.862955,197560.969429,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012938,05/23/2017 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,34,11206,301,493,3049300,3344974,3030260000,4243 +QU,POINT (-73.91873252010167 40.74218025043994),11047,Free,LinkNYC - Citybridge,qu-02-124996,46-02 GREENPOINT AVENUE,40.7421802504,-73.9187325201,1006769.65377,209683.347743,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012975,03/09/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11377,402,235,4023500,4001557,4001530010,4244 +BK,POINT (-73.98706811351065 40.687593607909484),11048,Free,LinkNYC - Citybridge,bk-02-126016,348 ATLANTIC AVENUE,40.6875936079,-73.9870681135,987836.431464,189785.589639,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012986,05/02/2018 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,41,3004100,3000872,3001830010,4245 +MN,POINT (-73.98441867044082 40.72862184031111),11049,Free,LinkNYC - Citybridge,mn-03-123792,162 1 AVENUE,40.7286218403,-73.9844186704,988568.549094,204733.530215,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013068,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1005898,1004370010,4246 +BX,POINT (-73.90076644013034 40.84757370032881),11050,Free,LinkNYC - Citybridge,bx-06-119378,400 EAST TREMONT AVENUE,40.8475737003,-73.9007664401,1011704.64948,248086.945805,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013014,06/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,206,231,2023100,2009453,2029000060,4247 +BK,POINT (-73.95077465057146 40.6638268899187),11051,Free,LinkNYC - Citybridge,bk-09-126475,340 EMPIRE BOULEVARD,40.6638268899,-73.9507746506,997906.650824,181130.26607,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013023,04/13/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,329,3032900,3034835,3013160010,4248 +MN,POINT (-73.9432849800793 40.82079611040908),11052,Free,LinkNYC - Citybridge,mn-10-119886,2660 8 AVENUE,40.8207961104,-73.9432849801,999947.492215,238320.409564,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013063,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1086080,1020270000,4249 +QU,POINT (-73.91325900057538 40.76299999989546),11053,Free,LinkNYC - Citybridge,qu-01-125116,42-02 30 AVENUE,40.7629999999,-73.9132590006,1008278.88369,217270.106848,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013082,07/10/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,149,4014900,4011927,4006960040,4250 +BK,POINT (-73.9912456205645 40.66355007022909),11054,Free,LinkNYC - Citybridge,bk-07-125917,620 5 AVENUE,40.6635500702,-73.9912456206,986678.74874,181025.697054,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013089,01/16/2018 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,38,11215,307,143,3014300,3009000,3006310050,4251 +BK,POINT (-73.96283584958736 40.64185834993121),11055,Free,LinkNYC - Citybridge,bk-14-126362,1626 CORTELYOU ROAD,40.6418583499,-73.9628358496,994563.893074,173124.870008,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013093,04/23/2018 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,514,3051400,3118755,3051590010,4252 +BK,POINT (-73.95023399972413 40.67426599961932),11056,Free,LinkNYC - Citybridge,bk-08-127037,794 PROSPECT PLACE,40.6742659996,-73.9502339997,998054.483534,184933.613778,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013095,03/03/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,317,3031701,3031210,3012330040,4253 +MN,POINT (-73.9392859997162 40.82182799965218),11057,Free,LinkNYC - Citybridge,mn-10-120062,201 WEST 145 STREET,40.8218279997,-73.9392859997,1001054.06284,238697.105989,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013104,09/12/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,232,1023200,1060482,1020310030,4254 +MN,POINT (-73.94525300037006 40.80777900031137),11058,Free,LinkNYC - Citybridge,mn-10-123361,83 WEST 125 STREET,40.8077790003,-73.9452530004,999405.750845,233577.464653,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013111,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,1053494,1017230000,4255 +BK,POINT (-73.98028999997968 40.6764090002603),11059,Free,LinkNYC - Citybridge,bk-06-127417,739 UNION STREET,40.6764090003,-73.98029,989717.138988,185711.063995,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013117,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,131,3013100,3019760,3009530000,4256 +MN,POINT (-73.94269929996273 40.82159551016376),11060,Free,LinkNYC - Citybridge,mn-10-119898,2690 FREDERICK DOUGLASS BLVD,40.8215955102,-73.9426993,1000109.40528,238611.76528,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013122,02/22/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,232,1023200,1060431,1020290000,4257 +MN,POINT (-73.94287599948863 40.83724100022177),11061,Free,LinkNYC - Citybridge,mn-12-120334,600 WEST 162 STREET,40.8372410002,-73.9428759995,1000056.78202,244311.958604,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013129,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1063354,1021370030,4258 +MN,POINT (-73.94925909978656 40.80194887990687),11062,Free,LinkNYC - Citybridge,mn-10-138528,99 WEST 116 STREET,40.8019488799,-73.9492590998,998297.962706,231452.678877,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013157,02/06/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,190,1019000,1085936,1016007500,4259 +MN,POINT (-73.95698008994937 40.80234988015052),11063,Free,LinkNYC - Citybridge,mn-10-136677,2079 FREDERICK DOUGLASS BOULEVARD,40.8023498802,-73.9569800899,996160.282598,231597.633311,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013160,10/31/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,197,1019702,1075301,1018470020,4260 +MN,POINT (-73.94115200048489 40.81850499970116),11064,Free,LinkNYC - Citybridge,mn-10-137385,2401 ADAM CLAYTON POWELL JR BOULEVARD,40.8185049997,-73.9411520005,1000538.41557,237486.064776,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013161,09/12/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060058,1020090000,4261 +MN,POINT (-73.94264858036041 40.81644556025787),11065,Free,LinkNYC - Citybridge,mn-10-137182,2321 ADAM CLAYTON POWELL JR BOULEVARD,40.8164455603,-73.9426485804,1000124.67165,236735.462274,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013162,01/11/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,1058309,1019210000,4262 +MN,POINT (-73.96144841034712 40.801001050254214),11066,Free,LinkNYC - Citybridge,mn-07-136685,995 COLUMBUS AVE,40.8010010503,-73.9614484103,994923.421555,231105.631342,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013167,02/28/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055735,1018440000,4263 +MN,POINT (-73.94377621980338 40.82012170000211),11067,Free,LinkNYC - Citybridge,mn-10-137208,2640 FREDERICK DOUGLASS BOULEVARD,40.8201217,-73.9437762198,999811.6854,238074.609858,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013169,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060395,1020260000,4264 +MN,POINT (-73.9475033596052 40.81537576992194),11068,Free,LinkNYC - Citybridge,mn-10-138120,2491 FREDERICK DOUGLASS BOULEVARD,40.8153757699,-73.9475033596,998781.119548,236344.856756,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013170,11/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,215,1021500,1059446,1019590000,4265 +MN,POINT (-73.95065799972339 40.81069000018211),11069,Free,LinkNYC - Citybridge,mn-10-137181,2346 FREDERICK DOUGLASS BOULEVARD,40.8106900002,-73.9506579997,997908.873917,234637.156103,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013171,10/14/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1088140,1019310060,4266 +MN,POINT (-73.95055699949609 40.80561499976694),11070,Free,LinkNYC - Citybridge,mn-10-137852,1995 ADAM CLAYTON POWELL JR BOULEVARD,40.8056149998,-73.9505569995,997937.876484,232788.169644,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013172,01/20/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,1057585,1019040060,4267 +MN,POINT (-73.98918300014316 40.7361409996168),11071,Free,LinkNYC - Citybridge,mn-05-123155,38 UNION SQUARE EAST,40.7361409996,-73.9891830001,987247.720699,207472.79639,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013185,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,105,50,1005000,1017819,1008720000,4268 +BX,POINT (-73.89607854221272 40.862050980327155),11072,Free,LinkNYC - Citybridge,bx-05-119638,2493 VALENTINE AVENUE,40.8620509803,-73.8960785422,1012995.37786,253363.073704,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013196,06/25/2018 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,237,2023702,2013601,2031530020,4269 +QU,POINT (-73.92045929000625 40.76638612008236),11073,Free,LinkNYC - Citybridge,qu-01-125132,32-04 30 AVENUE,40.7663861201,-73.92045929,1006283.14884,218501.888505,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013203,07/10/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11102,401,63,4006300,4008549,4006160030,4270 +BK,POINT (-73.95007800034789 40.673526999917726),11074,Free,LinkNYC - Citybridge,bk-08-127039,695 NOSTRAND AVENUE,40.6735269999,-73.9500780003,998097.9093,184664.39975,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013212,03/08/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,317,3031701,3341625,3012340080,4271 +MN,POINT (-73.94859133006922 40.809186430039965),11075,Free,LinkNYC - Citybridge,mn-10-119952,201 WEST 125 STREET,40.80918643,-73.9485913301,998481.291735,234089.681149,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013228,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1058660,1019310030,4272 +MN,POINT (-73.94812464052463 40.80879308966709),11076,Free,LinkNYC - Citybridge,mn-10-120049,166 WEST 125 STREET,40.8087930897,-73.9481246405,998610.568708,233946.44948,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013234,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1057837,1019090060,4273 +BX,POINT (-73.9114390000122 40.85476400005577),11077,Free,LinkNYC - Citybridge,bx-05-119566,1999 UNIVERSITY AVENUE,40.8547640001,-73.911439,1008749.25709,250703.479286,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013237,01/17/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,245,2024502,2014698,2032160060,4274 +BX,POINT (-73.91963700034745 40.81669200024554),11078,Free,LinkNYC - Citybridge,bx-01-123228,349 EAST 149 STREET,40.8166920002,-73.9196370003,1006494.11232,236830.256048,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013242,03/30/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,65,2006500,2000933,2023317500,4275 +QU,POINT (-73.86199361004645 40.69210611001711),11079,Free,LinkNYC - Citybridge,qu-09-126733,80-10 JAMAICA AVENUE,40.69210611,-73.86199361,1022521.04123,191459.508863,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013299,08/07/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,10,4001000,4183699,4089190000,4276 +BX,POINT (-73.9162084398845 40.817141200346846),11080,Free,LinkNYC - Citybridge,bx-01-118955,2901 3 AVENUE,40.8171412003,-73.9162084399,1007442.96541,236994.804931,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013313,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,65,2006500,2001339,2023740020,4277 +BX,POINT (-73.89839588004689 40.86215226027452),11081,Free,LinkNYC - Citybridge,bx-05-119569,2454 CRESTON AVENUE,40.8621522603,-73.89839588,1012354.34404,253399.221926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-013324,10/26/2017 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,237,2023703,2013807,2031660070,4278 +MN,POINT (-73.94601240987004 40.81705699008074),11082,Free,LinkNYC - Citybridge,mn-10-119879,270 WEST 136 STREET,40.8170569901,-73.9460124099,999193.438277,236957.636371,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013345,03/13/2018 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,1058920,1019410060,4279 +MN,POINT (-73.94654809048092 40.81668892022363),11083,Free,LinkNYC - Citybridge,mn-10-119880,2527 FREDERICK DOUGLASS BLVD,40.8166889202,-73.9465480905,999045.246972,236823.444382,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013346,10/31/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,221,1022102,1059461,1019600010,4280 +MN,POINT (-73.94655805029133 40.81629802001994),11084,Free,LinkNYC - Citybridge,mn-10-119881,2534 FREDERICK DOUGLASS BLVD,40.81629802,-73.9465580503,999042.57703,236681.023735,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013347,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,1084056,1019400060,4281 +MN,POINT (-73.94172299983217 40.822924000061235),11085,Free,LinkNYC - Citybridge,mn-10-119893,2730 FREDERICK DOUGLASS BOULEVARD,40.8229240001,-73.9417229998,1000379.29877,239095.960506,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013348,10/19/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,232,1023200,1088715,1020310000,4282 +MN,POINT (-73.94868889944199 40.80902186967467),11086,Free,LinkNYC - Citybridge,mn-10-119951,200 DR MARTIN LUTHER KING BLVD,40.8090218697,-73.9486888994,998454.317052,234029.71014,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013349,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1058640,1019300030,4283 +MN,POINT (-73.95426273651036 40.805792474348465),11087,Free,LinkNYC - Citybridge,mn-10-119988,2190 FREDERICK DOUGLASS BOULEVARD,40.8057924743,-73.9542627365,996911.940872,232852.272534,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013350,08/18/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,1058408,1019240000,4284 +MN,POINT (-73.95209308945603 40.80873329041045),11088,Free,LinkNYC - Citybridge,mn-10-119996,2288 FREDERICK DOUGLASS BLVD,40.8087332904,-73.9520930895,997512.001679,233924.036795,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013353,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1058592,1019280060,4285 +MN,POINT (-73.95015967009643 40.811362260416935),11089,Free,LinkNYC - Citybridge,mn-10-120001,2366 FREDERICK DOUGLASS BOULEVARD,40.8113622604,-73.9501596701,998046.682368,234882.162503,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013356,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,1058677,1019320060,4286 +MN,POINT (-73.95071064952757 40.8109888096551),11090,Free,LinkNYC - Citybridge,mn-10-120002,2353 FREDERICK DOUGLASS BLVD,40.8109888097,-73.9507106495,997894.23812,234746.01481,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013357,03/13/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,215,1021500,1059340,1019530030,4287 +MN,POINT (-73.94583035024756 40.80781771981006),11091,Free,LinkNYC - Citybridge,mn-10-120024,100 WEST 125 STREET,40.8078177198,-73.9458303502,999245.91291,233591.472171,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013359,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1000000,1019090030,4288 +MN,POINT (-73.9480109997498 40.80893900020484),11092,Free,LinkNYC - Citybridge,mn-10-120039,163 WEST 125 STREET,40.8089390002,-73.9480109997,998641.996138,233999.628507,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013360,12/20/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1081602,1019100000,4289 +BX,POINT (-73.930217000572 40.81431000042216),11093,Free,LinkNYC - Citybridge,bx-01-145842,261 WALTON AVENUE,40.8143100004,-73.9302170006,1003566.30847,235959.898537,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018223,06/28/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,201,63,2006300,2001024,2023440060,4536 +BX,POINT (-73.93040028055464 40.813594739839644),11094,Free,LinkNYC - Citybridge,bx-01-145821,250 WALTON AVENUE,40.8135947398,-73.9304002806,1003515.78265,235699.263231,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018224,05/16/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,201,63,2006300,2001020,2023440000,4537 +BX,POINT (-73.92925029027961 40.812440910429224),11095,Free,LinkNYC - Citybridge,bx-01-145917,200 EAST 138 STREET,40.8124409104,-73.9292502903,1003834.44901,235279.137103,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018225,10/19/2017 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,2094027,2023220030,4538 +BX,POINT (-73.92866452988793 40.81225338014753),11096,Free,LinkNYC - Citybridge,bx-01-145854,217 EAST 138 STREET,40.8122533801,-73.9286645299,1003996.65078,235210.944654,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018226,10/19/2017 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,2000969,2023400000,4539 +BX,POINT (-73.92907378040469 40.80854426002055),11097,Free,LinkNYC - Citybridge,bx-01-145852,141 LINCOLN AVENUE,40.80854426,-73.9290737804,1003884.45875,233859.488696,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018228,10/26/2017 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,19,2001900,2091107,2023170040,4540 +MN,POINT (-73.93976523990524 40.79878582035249),11098,Free,LinkNYC - Citybridge,mn-11-146004,189 EAST 117 STREET,40.7987858204,-73.9397652399,1000927.19432,230301.93085,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018373,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,1089804,1016450030,4541 +MN,POINT (-73.94459619976583 40.79189834961487),11099,Free,LinkNYC - Citybridge,mn-11-146077,1928 3 AVENUE,40.7918983496,-73.9445961998,999591.234069,227791.703915,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018375,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,1052036,1016340040,4542 +SI,POINT (-74.1089594205597 40.57143701955103),11100,Free,LinkNYC - Citybridge,si-02-145822,2455 HYLAN BOULEVARD,40.5714370196,-74.1089594206,953979.387957,147485.195237,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018381,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052857,5036480060,4543 +SI,POINT (-74.10861366995644 40.57178151966629),11101,Free,LinkNYC - Citybridge,si-02-145730,2435 HYLAN BOULEVARD,40.5717815197,-74.10861367,954075.598395,147610.585734,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018382,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052814,5036470000,4544 +SI,POINT (-74.10753882947657 40.572850470138206),11102,Free,LinkNYC - Citybridge,si-02-145734,2381 HYLAN BOULEVARD,40.5728504701,-74.1075388295,954374.682114,147999.662056,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018383,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052790,5036450000,4545 +SI,POINT (-74.10691684958354 40.57346598965508),11103,Free,LinkNYC - Citybridge,si-02-145737,2361 HYLAN BOULEVARD,40.5734659897,-74.1069168496,954547.747713,148223.699338,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018384,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052769,5036440000,4546 +SI,POINT (-74.10481650035086 40.57555318021918),11104,Free,LinkNYC - Citybridge,si-02-145823,2271 HYLAN BOULEVARD,40.5755531802,-74.1048165004,955132.149103,148983.408776,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018385,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5107538,5036150010,4547 +SI,POINT (-74.1035653801363 40.576810820044805),11105,Free,LinkNYC - Citybridge,si-02-145731,2205 HYLAN BOULEVARD,40.57681082,-74.1035653801,955480.249785,149441.184435,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018386,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,114,5011402,5051757,5035910080,4548 +SI,POINT (-74.10065157994185 40.57963411981794),11106,Free,LinkNYC - Citybridge,si-02-145736,2083 HYLAN BOULEVARD,40.5796341198,-74.1006515799,956290.864962,150468.838548,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018388,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,114,5011402,5051478,5035740070,4549 +SI,POINT (-74.10001240319976 40.57983878821315),11107,Free,LinkNYC - Citybridge,si-02-145807,2066 HYLAN BOULEVARD,40.5798387882,-74.1000124032,956468.501417,150543.200932,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018389,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10306,502,112,5011201,5158060,5036720000,4550 +BX,POINT (-73.9129295500003 40.8438812101603),11108,Free,LinkNYC - Citybridge,bx-04-145838,1605 WALTON AVENUE,40.8438812102,-73.91292955,1008340.85699,246738.054474,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018390,07/05/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10452,204,227,2022702,2008153,2028470070,4551 +BX,POINT (-73.91979703011044 40.835132980398555),11109,Free,LinkNYC - Citybridge,bx-04-145851,84 EAST 167 STREET,40.8351329804,-73.9197970301,1006443.66525,243548.934868,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018391,07/20/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10452,204,197,2019700,2117447,2024790020,4552 +BX,POINT (-73.90990000052994 40.8483300003456),11110,Free,LinkNYC - Citybridge,bx-05-145839,69 EAST 176 STREET,40.8483300003,-73.9099000005,1009177.4124,248359.763501,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018394,06/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,233,2023301,2008227,2028510040,4553 +QU,POINT (-73.92626200021462 40.76246399969233),11040,Free,LinkNYC - Citybridge,qu-01-125084,29-19 BROADWAY,40.7624639997,-73.9262620002,1004676.97423,217071.524896,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-012888,05/17/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,75,4007500,4445864,4005880000,4237 +MN,POINT (-73.96544300038096 40.76289600040635),12824,Free,LinkNYC - Citybridge,mn-08-134750,1031 3 AVENUE,40.7628960004,-73.9654430004,993822.953283,217222.207666,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000825,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043779,1014160000,3328 +MN,POINT (-73.96565300013656 40.76303700023907),12825,Free,LinkNYC - Citybridge,mn-08-136989,1030 3 AVENUE,40.7630370002,-73.9656530001,993764.759174,217273.55566,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000826,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,114,1011402,1041986,1013960030,3329 +MN,POINT (-73.96409700014902 40.76465300026541),12826,Free,LinkNYC - Citybridge,mn-08-121750,201 EAST 64 STREET,40.7646530003,-73.9640970001,994195.558837,217862.490506,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000827,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1076307,1014197500,3330 +MN,POINT (-73.96409943958997 40.7647591200323),12827,Free,LinkNYC - Citybridge,mn-08-136012,1091 3 AVENUE,40.76475912,-73.9640994396,994194.867237,217901.153158,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000828,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1076307,1014197500,3331 +MN,POINT (-73.96318025053671 40.765901649701775),12828,Free,LinkNYC - Citybridge,mn-08-120979,1131 3 AVENUE,40.7659016497,-73.9631802505,994449.318172,218317.520108,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000830,06/05/2017 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1043872,1014210000,3332 +MN,POINT (-73.96355400045894 40.76605999968956),12829,Free,LinkNYC - Citybridge,mn-08-138320,1132 3 AVENUE,40.7660599997,-73.9635540005,994345.762933,218375.168942,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000832,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,1042464,1014010030,3333 +MN,POINT (-73.96313599024866 40.76658802034187),12830,Free,LinkNYC - Citybridge,mn-08-120978,166 EAST 67 STREET,40.7665880203,-73.9631359902,994461.473332,218567.59277,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000833,07/12/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,1042464,1014010030,3334 +MN,POINT (-73.96252999976952 40.767308999642076),12831,Free,LinkNYC - Citybridge,mn-08-120986,1172 3 AVENUE,40.7673089996,-73.9625299998,994629.222668,218830.340604,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000834,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,1042479,1014030030,3335 +MN,POINT (-73.96228981961457 40.76723405969999),12832,Free,LinkNYC - Citybridge,mn-08-120988,1175 3 AVENUE,40.7672340597,-73.9622898196,994695.76453,218803.066053,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000835,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1043902,1014237500,3336 +MN,POINT (-73.96197099983301 40.76765499984738),12833,Free,LinkNYC - Citybridge,mn-08-120983,1175 3 AVENUE,40.7676549998,-73.9619709998,994784.0114,218956.466664,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000836,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,118,1011800,1043902,1014237500,3337 +MN,POINT (-73.96225464014341 40.767854889679086),12834,Free,LinkNYC - Citybridge,mn-08-120985,1180 3 AVENUE,40.7678548897,-73.9622546401,994705.41182,219029.25917,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000837,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,1042479,1014030030,3338 +MN,POINT (-73.9613243600968 40.769101620184266),12835,Free,LinkNYC - Citybridge,mn-08-120994,176 E 71 ST,40.7691016202,-73.9613243601,994962.897526,219483.596844,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000838,11/08/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,1042740,1014050040,3339 +MN,POINT (-73.9609519001801 40.7689431401074),12836,Free,LinkNYC - Citybridge,mn-08-120995,200 EAST 71 STREET,40.7689431401,-73.9609519002,995066.092201,219425.903061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000839,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,126,1012600,1043920,1014250000,3340 +MN,POINT (-73.96025399968346 40.770544999774984),12837,Free,LinkNYC - Citybridge,mn-08-120990,1270 3 AVENUE,40.7705449998,-73.9602539997,995259.141684,220009.600713,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000842,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,1043046,1014080030,3341 +MN,POINT (-73.95992800054734 40.77045599997309),12838,Free,LinkNYC - Citybridge,mn-08-120991,1271 E 75ST,40.770456,-73.9599280005,995349.454167,219977.216263,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000843,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,126,1012600,1043984,1014280000,3342 +MN,POINT (-73.95949600040579 40.77094600008622),12839,Free,LinkNYC - Citybridge,mn-08-121002,200 EAST 74 STREET,40.7709460001,-73.9594960004,995469.030372,220155.794646,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000845,11/07/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,126,1012600,1044011,1014280050,3343 +MN,POINT (-73.95869700016644 40.77214399986702),12840,Free,LinkNYC - Citybridge,mn-08-128748,1325 3 AVENUE,40.7721439999,-73.9586970002,995690.136229,220592.369232,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000849,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,134,1013400,1044062,1014300050,3344 +MN,POINT (-73.95854021949182 40.77235776982879),12841,Free,LinkNYC - Citybridge,mn-08-120998,1329 3 AVENUE,40.7723577698,-73.9585402195,995733.524593,220670.273276,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000850,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,134,1013400,1081424,1014310000,3345 +MN,POINT (-73.95894683006028 40.772366629586735),12842,Free,LinkNYC - Citybridge,mn-08-120999,1328 3 AVENUE,40.7723666296,-73.9589468301,995620.900147,220673.448139,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000851,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,1043151,1014100040,3346 +MN,POINT (-73.95876684043974 40.77247710027203),12843,Free,LinkNYC - Citybridge,mn-08-134742,1330 3 AVENUE,40.7724771003,-73.9587668404,995670.734693,220713.719712,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000852,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,1043176,1014110030,3347 +MN,POINT (-73.95847400026676 40.773002999654906),12844,Free,LinkNYC - Citybridge,mn-08-120997,176 EAST 77 STREET,40.7730029997,-73.9584740003,995751.754544,220905.360732,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000853,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,1043178,1014110040,3348 +MN,POINT (-73.95822042990093 40.77281462001001),12845,Free,LinkNYC - Citybridge,mn-08-134739,1345 E 78ST,40.77281462,-73.9582204299,995822.020479,220836.761132,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000854,05/16/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10021,108,134,1013400,1044091,1014310050,3349 +MN,POINT (-73.95796499942033 40.773726999585456),12846,Free,LinkNYC - Citybridge,mn-08-121004,1374 3 AVENUE,40.7737269996,-73.9579649994,995892.609577,221169.205349,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000857,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10075,108,140,1014000,1043248,1014130030,3350 +MN,POINT (-73.95749899988006 40.77420700020247),12847,Free,LinkNYC - Citybridge,mn-08-121016,1388 3 AVENUE,40.7742070002,-73.9574989999,996021.594555,221344.147913,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000858,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10075,108,140,1014000,1043252,1014130040,3351 +MN,POINT (-73.9570900001808 40.77434999975673),12848,Free,LinkNYC - Citybridge,mn-08-121005,201 E 79ST,40.7743499998,-73.9570900002,996134.850562,221396.302664,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000860,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10075,108,138,1013800,1048509,1015250000,3352 +MN,POINT (-73.9566650004716 40.77485500027221),12849,Free,LinkNYC - Citybridge,mn-08-121015,200 EAST 80 STREET,40.7748550003,-73.9566650005,996252.472374,221580.349212,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000862,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10075,108,138,1013800,1048509,1015250000,3353 +MN,POINT (-73.95593073985685 40.7763660498515),12850,Free,LinkNYC - Citybridge,mn-08-121010,1450 3 AVENUE,40.7763660499,-73.9559307399,996455.563175,222130.97672,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000864,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,140,1014000,1047619,1015110030,3354 +MN,POINT (-73.95558600053668 40.77683300006014),12851,Free,LinkNYC - Citybridge,mn-08-121023,1460 3 AVENUE,40.7768330001,-73.9555860005,996550.957013,222301.150592,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000865,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,140,1014000,1047619,1015110030,3355 +MN,POINT (-73.95513907976017 40.7770200297),12852,Free,LinkNYC - Citybridge,mn-08-134740,1475 3 AVENUE,40.7770200297,-73.9551390798,996674.701845,222369.354852,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000867,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,138,1013800,1048692,1015290000,3356 +MN,POINT (-73.95475199949747 40.77756100018879),12853,Free,LinkNYC - Citybridge,mn-08-121021,1495 3 AVENUE,40.7775610002,-73.9547519995,996781.805961,222566.503736,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000868,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1048724,1015300000,3357 +MN,POINT (-73.95515300006203 40.777527999550905),12854,Free,LinkNYC - Citybridge,mn-08-121020,164 EAST 84 STREET,40.7775279996,-73.9551530001,996670.751721,222554.423379,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000869,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,140,1014000,1047654,1015120040,3358 +MN,POINT (-73.95454099971676 40.77827199974394),12855,Free,LinkNYC - Citybridge,mn-08-121017,1518 3 AVENUE,40.7782719997,-73.9545409997,996840.10965,222825.575068,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000870,06/09/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,148,1014801,1047938,1015140040,3359 +MN,POINT (-73.95442800046547 40.77800300027457),12856,Free,LinkNYC - Citybridge,mn-08-121019,1505 3 AVENUE,40.7780030003,-73.9544280005,996871.456372,222727.585763,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000871,03/28/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1048756,1015300050,3360 +MN,POINT (-73.95399000036174 40.77859999974382),12857,Free,LinkNYC - Citybridge,mn-08-107963,1525 3 AVENUE,40.7785999997,-73.9539900004,996992.649043,222945.156194,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000877,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1087920,1015317500,3361 +MN,POINT (-73.95371544955476 40.778605139724306),12858,Free,LinkNYC - Citybridge,mn-08-134748,206 EAST 86 STREET,40.7786051397,-73.9537154496,997068.685965,222947.068919,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000878,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1087920,1015317500,3362 +MN,POINT (-73.95366299987528 40.778791999882316),12859,Free,LinkNYC - Citybridge,mn-08-133368,1529 3 AVENUE,40.7787919999,-73.9536629999,997083.176093,223015.156054,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000879,05/05/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014602,1048787,1015320000,3363 +MN,POINT (-73.95398000040761 40.779038000047194),12860,Free,LinkNYC - Citybridge,mn-08-119826,179 E 86ST,40.779038,-73.9539800004,996995.334734,223104.735927,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000880,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,148,1014802,1047962,1015150030,3364 +MN,POINT (-73.97425394961891 40.76298744999696),12861,Free,LinkNYC - Citybridge,mn-05-122858,2 WEST 57 STREET,40.76298745,-73.9742539496,991382.141236,217254.685619,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000872,07/12/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,112,1011201,1035053,1012727500,3365 +MN,POINT (-73.95371499986283 40.77953499993853),12862,Free,LinkNYC - Citybridge,mn-08-119825,170 E 87ST,40.7795349999,-73.9537149999,997068.631503,223285.848426,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000882,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10028,108,148,1014802,1047961,1015157500,3366 +BK,POINT (-73.91493838564195 40.65571020139571),11302,Free,BPL,East Flatbush - Brooklyn Public Library,9612 CHURCH AVENUE,40.6557102014,-73.9149383856,1007851.62011,178180.751628,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK96,Rugby-Remsen Village,42,11212,317,890,3089000,3103597,3047170038,487 +MN,POINT (-73.95332699958146 40.77936699974435),12863,Free,LinkNYC - Citybridge,mn-08-136620,200 E 87ST,40.7793669997,-73.9533269996,997176.120789,223224.697301,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000883,03/12/2018 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014602,1077854,1015320000,3367 +MN,POINT (-73.9535369998074 40.77963500021028),12864,Free,LinkNYC - Citybridge,mn-08-138052,1550 3 AVENUE,40.7796350002,-73.9535369998,997117.909292,223322.307998,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000885,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,148,1014802,1048053,1015160030,3368 +MN,POINT (-73.9524000004816 40.780782000030534),12865,Free,LinkNYC - Citybridge,mn-08-119822,1585 3 AVENUE,40.780782,-73.9524000005,997432.573689,223740.367858,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000886,03/28/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10128,108,154,1015400,1048874,1015350000,3369 +MN,POINT (-73.9522789998637 40.7815029999038),12866,Free,LinkNYC - Citybridge,mn-08-119821,181 EAST 90 STREET,40.7815029999,-73.9522789999,997465.941076,224003.070744,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000887,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,148,1014802,1048263,1015197500,3370 +MN,POINT (-73.95169899996914 40.782158999890434),12867,Free,LinkNYC - Citybridge,mn-08-119833,1622 3 AVENUE,40.7821589999,-73.951699,997626.435506,224242.161802,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000888,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,158,1015801,1078518,1015200030,3371 +MN,POINT (-73.95125728980092 40.78276561972722),12868,Free,LinkNYC - Citybridge,mn-08-119832,1644 3 AVENUE,40.7827656197,-73.9512572898,997748.639329,224463.24174,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000889,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,158,1015801,1048352,1015210030,3372 +MN,POINT (-73.95056180005089 40.78328876979007),12869,Free,LinkNYC - Citybridge,mn-08-119830,1675 3 AVENUE,40.7832887698,-73.9505618001,997941.138288,224653.951004,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000890,07/15/2016 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10128,108,154,1015400,1048916,1015397500,3373 +MN,POINT (-73.94987391994982 40.78466253987834),12870,Free,LinkNYC - Citybridge,mn-08-119829,1700 3 AVENUE,40.7846625399,-73.9498739199,998131.349522,225154.57041,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000891,04/01/2016 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,158,1015801,1048492,1015240020,3374 +MN,POINT (-73.94903126972909 40.78581769007524),12871,Free,LinkNYC - Citybridge,mn-11-120218,175 E 96 ST,40.7858176901,-73.9490312697,998364.458636,225575.565631,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000892,03/23/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,5,10029,111,158,1015802,1082901,1016240030,3375 +MN,POINT (-73.94794399976311 40.78730899962826),12872,Free,LinkNYC - Citybridge,mn-11-107836,1786 3 AVENUE,40.7873089996,-73.9479439998,998665.226735,226119.077667,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000893,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,5,10029,111,166,1016600,1051769,1016270030,3376 +MN,POINT (-73.94626200011794 40.789607999934),12873,Free,LinkNYC - Citybridge,mn-11-120214,1888 3 AVENUE,40.7896079999,-73.9462620001,999130.488272,226956.963459,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000896,03/28/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,166,1016600,1080656,1016300040,3377 +SI,POINT (-74.1160749996234 40.56384299965316),12874,Free,LinkNYC - Citybridge,si-02-145728,2820 HYLAN BOULEVARD,40.5638429997,-74.1160749996,951998.905042,144721.049191,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-005407,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI25,Oakwood-Oakwood Beach,50,10306,502,128,5012806,5105551,5039830000,3728 +SI,POINT (-74.10166900041969 40.57880200009186),12875,Free,LinkNYC - Citybridge,si-02-145809,2115 HYLAN BLVD,40.5788020001,-74.1016690004,956007.892759,150166.003196,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-005414,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,114,5011402,5051504,5035750070,3729 +BX,POINT (-73.92921293967355 40.81888598990274),12876,Free,LinkNYC - Citybridge,bx-01-145688,518 GERARD AVE,40.8188859899,-73.9292129397,1003842.89059,237627.31843,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005422,11/08/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,17,10451,201,63,2006300,2001091,2023500040,3730 +BX,POINT (-73.92590251949247 40.82755199002982),12877,Free,LinkNYC - Citybridge,bx-04-119160,52 EAST 161 STREET,40.82755199,-73.9259025195,1004756.49867,240785.41382,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005426,09/13/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2002981,2024830040,3731 +BX,POINT (-73.9252225201742 40.827355930166185),12878,Free,LinkNYC - Citybridge,bx-04-119159,72 EAST 161 STREET,40.8273559302,-73.9252225202,1004944.74961,240714.141981,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005427,07/19/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2002983,2024830050,3732 +BX,POINT (-73.92483280046059 40.82782470975979),12879,Free,LinkNYC - Citybridge,bx-04-113552,875 GERARD AVENUE,40.8278247098,-73.9248328005,1005052.45838,240885.027794,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005430,07/15/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10452,204,195,2019500,2002991,2024840040,3733 +BX,POINT (-73.92264498961636 40.8315430004332),12880,Free,LinkNYC - Citybridge,bx-04-145687,1049 GERARD AVENUE,40.8315430004,-73.9226449896,1005656.7367,242240.264257,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005435,01/17/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10452,204,195,2019500,2002938,2024770020,3734 +BX,POINT (-73.9007058795014 40.86810028959625),12881,Free,LinkNYC - Citybridge,bx-07-145924,82 WEST KINGSBRIDGE ROAD,40.8681002896,-73.9007058795,1011712.92735,255565.586687,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005578,01/22/2018 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,265,2026500,2014676,2032150020,3735 +MN,POINT (-73.94934599950975 40.81287100013806),11303,Free,Harlem,,2411FDB,40.8128710001,-73.9493459995,998271.60285,235431.979317,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,215,1021500,0,0,557 +BX,POINT (-73.89653699957336 40.86703799979017),12882,Free,LinkNYC - Citybridge,bx-07-145690,30 EAST KINGSBRIDGE ROAD,40.8670379998,-73.8965369996,1012866.41946,255179.887656,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005579,11/08/2016 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,2014144,2031910040,3736 +BX,POINT (-73.89565371992643 40.86658826981298),12883,Free,LinkNYC - Citybridge,bx-07-145689,60 EAST KINGSBRIDGE ROAD,40.8665882698,-73.8956537199,1013110.91733,255016.32335,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-005582,11/11/2016 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,2094669,2031770030,3737 +BK,POINT (-73.97306180025402 40.67758877973819),12884,Free,LinkNYC - Citybridge,bk-06-145848,162 PARK PLACE,40.6775887797,-73.9730618003,991721.957157,186141.425339,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-005725,04/24/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,39,11217,306,161,3016100,3024351,3010570010,3738 +BK,POINT (-73.97183554008858 40.67613405035137),12885,Free,LinkNYC - Citybridge,bk-06-145994,342 FLATBUSH AVENUE,40.6761340504,-73.9718355401,992062.260282,185611.532698,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-005775,02/21/2018 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,159,3015900,3024375,3010580030,3739 +BK,POINT (-73.96269399953705 40.67274800014152),12886,Free,LinkNYC - Citybridge,bk-08-146009,795 WASHINGTON AVE,40.6727480001,-73.9626939995,994598.466824,184378.845531,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-005779,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,215,3021500,3029546,3011770000,3740 +BK,POINT (-73.96355299990464 40.67565900037306),12887,Free,LinkNYC - Citybridge,bk-08-146008,437 PARK PLACE,40.6756590004,-73.9635529999,994359.743876,185439.30568,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-005782,02/12/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,205,3020500,3028883,3011600050,3741 +MN,POINT (-73.95213399991975 40.82457800022923),12888,Free,LinkNYC - Citybridge,mn-09-120359,600 WEST 142 STREET,40.8245780002,-73.9521339999,997497.522049,239696.827086,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005877,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062331,1020880100,3742 +MN,POINT (-73.95349828979512 40.82270396025739),12889,Free,LinkNYC - Citybridge,mn-09-120370,600 WEST 139 STREET,40.8227039603,-73.9534982898,997120.300035,239013.842888,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005878,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062302,1020870040,3743 +MN,POINT (-73.95331000012612 40.82191799966909),12890,Free,LinkNYC - Citybridge,mn-09-120422,551 WEST 138 STREET,40.8219179997,-73.9533100001,997172.565678,238727.516689,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005879,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1061709,1020700000,3744 +MN,POINT (-73.95937000040475 40.81450453977018),12891,Free,LinkNYC - Citybridge,mn-09-136680,3153 BROADWAY,40.8145045398,-73.9593700004,995496.569687,236025.6904,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005882,08/05/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,211,1021100,1059854,1019930080,3745 +MN,POINT (-73.96605183054052 40.80551622993343),12892,Free,LinkNYC - Citybridge,mn-09-120269,602 WEST 112 STREET,40.8055162299,-73.9660518305,993648.277779,232750.142489,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005931,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1057331,1018940060,3746 +MN,POINT (-73.93623969960296 40.80377326975114),12893,Free,LinkNYC - Citybridge,mn-11-144674,186 EAST 125 STREET,40.8037732698,-73.9362396996,1001901.98765,232119.723802,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005932,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1087605,1017730020,3747 +MN,POINT (-73.93903549972613 40.799504650359474),12894,Free,LinkNYC - Citybridge,mn-11-107943,2166 3 AVENUE,40.7995046504,-73.9390354997,1001129.05514,230563.965431,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006026,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,1081471,1017670030,3748 +MN,POINT (-73.94478351004082 40.79120303966519),12895,Free,LinkNYC - Citybridge,mn-11-132876,1915 3RD AVENUE,40.7912030397,-73.94478351,999539.527808,227538.345826,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006027,06/15/2016 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,170,1017000,1052429,1016550050,3749 +BX,POINT (-73.89739999947346 40.861150000304285),11111,Free,LinkNYC - Citybridge,bx-05-145959,2458 Grand Concourse,40.8611500003,-73.8973999995,1012630.2385,253034.38112,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018397,01/12/2018 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,237,2023702,2013592,2031520070,4554 +BX,POINT (-73.89279999941866 40.86487000009998),11112,Free,LinkNYC - Citybridge,bx-07-145853,2620 BRIGGS AVENUE,40.8648700001,-73.8927999994,1013900.9876,254391.24422,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018398,10/26/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,399,2039901,2000000,2032930050,4555 +BX,POINT (-73.90051186968333 40.863665459969994),11113,Free,LinkNYC - Citybridge,bx-07-145840,2495 JEROME AVENUE,40.86366546,-73.9005118697,1011768.42199,253949.86715,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018400,06/13/2017 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,265,2026500,2014360,2032000020,4556 +BX,POINT (-73.90210089940908 40.86869848978379),11114,Free,LinkNYC - Citybridge,bx-08-145850,119 WEST KINGSBRIDGE ROAD,40.8686984898,-73.9021008994,1011326.84708,255783.100032,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018402,08/01/2017 12:00:00 AM +0000,2,Bronx,BX28,Van Cortlandt Village,14,10468,208,267,2026701,2015261,2032480060,4557 +BX,POINT (-73.89780277956248 40.86676518985735),11115,Free,LinkNYC - Citybridge,bx-07-145933,2616 JEROME AVENUE,40.8667651899,-73.8978027796,1012516.43853,255080.081425,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018403,11/03/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,2014132,2031910020,4558 +SI,POINT (-74.08382834642556 40.59771507868448),11116,Free,LinkNYC - Citybridge,si-02-145732,1232 HYLAN BOULEVARD,40.5977150787,-74.0838283464,960970.348385,157051.264031,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018405,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI14,Grasmere-Arrochar-Ft. Wadsworth,50,10305,502,64,5006400,5047236,5032200010,4559 +SI,POINT (-74.08305038555918 40.598001994498404),11117,Free,LinkNYC - Citybridge,si-02-145735,1220 HYLAN BOULEVARD,40.5980019945,-74.0830503856,961186.491981,157155.588954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018406,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI14,Grasmere-Arrochar-Ft. Wadsworth,50,10305,502,64,5006400,5047505,5032350000,4560 +SI,POINT (-74.11201028042794 40.58130399971984),11118,Free,LinkNYC - Citybridge,si-02-145733,2110 RICHMOND ROAD,40.5813039997,-74.1120102804,953136.409,151081.046969,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018407,03/02/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,114,5011402,5095447,5035780010,4561 +SI,POINT (-74.11135038953313 40.5816768495925),11119,Free,LinkNYC - Citybridge,si-02-145824,2100 RICHMOND ROAD,40.5816768496,-74.1113503895,953319.882387,151216.651685,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018408,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,114,5011402,5051531,5035780010,4562 +SI,POINT (-74.10370821951194 40.58738522996518),11120,Free,LinkNYC - Citybridge,si-02-145825,1755 RICHMOND ROAD,40.58738523,-74.1037082195,955445.131089,153293.750549,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018409,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI24,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill,50,10304,502,181,5018100,5022931,5008870030,4563 +SI,POINT (-74.10168399989485 40.5890320000509),11121,Free,LinkNYC - Citybridge,si-02-145826,1678 RICHMOND ROAD,40.5890320001,-74.1016839999,956008.052535,153893.05086,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018410,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10304,502,114,5011401,5050604,5035310010,4564 +SI,POINT (-74.10090435998876 40.58990771009319),11122,Free,LinkNYC - Citybridge,si-02-145835,1630 RICHMOND ROAD,40.5899077101,-74.10090436,956224.958925,154211.843529,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018414,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10304,502,114,5011401,5050552,5035300020,4565 +SI,POINT (-74.10086157988817 40.59143557972939),11123,Free,LinkNYC - Citybridge,si-02-145829,1570 RICHMOND ROAD,40.5914355797,-74.1008615799,956237.481538,154768.471025,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-018416,05/25/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10304,502,96,5009602,5048650,5033050010,4566 +BK,POINT (-73.94952249959609 40.67948543023743),11124,Free,LinkNYC - Citybridge,bk-03-145830,517 NOSTRAND AVENUE,40.6794854302,-73.9495224996,998250.749218,186835.314699,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019363,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,303,247,3024700,3000000,3018670020,4567 +BK,POINT (-73.94957900048084 40.67881799990441),11125,Free,LinkNYC - Citybridge,bk-03-145843,545 NOSTRAND AVENUE,40.6788179999,-73.9495790005,998235.217753,186592.141629,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019365,05/31/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,303,247,3024700,3329718,3018670010,4568 +BK,POINT (-73.94969703020513 40.67750399981572),11126,Free,LinkNYC - Citybridge,bk-08-145831,575 NOSTRAND AVENUE,40.6775039998,-73.9496970302,998202.754891,186113.394883,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019366,05/08/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3030039,3012070010,4569 +BK,POINT (-73.95021389978328 40.67211448984123),11127,Free,LinkNYC - Citybridge,bk-08-145832,737 NOSTRAND AVENUE,40.6721144898,-73.9502138998,998060.504519,184149.760687,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019368,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11216,308,317,3031702,3031977,3012480110,4570 +BK,POINT (-73.95050229980338 40.66916741974973),11128,Free,LinkNYC - Citybridge,bk-09-145833,803 NOSTRAND AVENUE,40.6691674197,-73.9505022998,997981.109993,183076.014147,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019369,05/19/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,319,3031900,3032926,3012690000,4571 +BK,POINT (-73.95060500032251 40.66243800043251),11129,Free,LinkNYC - Citybridge,bk-09-145844,1053 Nostrand Ave,40.6624380004,-73.9506050003,997954.002436,180624.28119,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-019371,06/14/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,329,3032900,3035092,3013210000,4572 +SI,POINT (-74.11531800000421 40.564789000202765),11130,Free,LinkNYC - Citybridge,si-02-145738,2754 HYLAN BOULEVARD,40.5647890002,-74.115318,952209.688741,145065.42219,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-019377,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI25,Oakwood-Oakwood Beach,50,10306,502,128,5012806,5107591,5039830130,4573 +BX,POINT (-73.9160324198143 40.842202630244174),11131,Free,LinkNYC - Citybridge,bx-04-146072,2 East 172 Street,40.8422026302,-73.9160324198,1007482.93417,246125.646906,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-019378,04/30/2018 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,14,10452,204,223,2022300,2008109,2028440010,4574 +BX,POINT (-73.91496082990243 40.84425806998104),11132,Free,LinkNYC - Citybridge,bx-04-145925,1579 Jerome Avenue,40.84425807,-73.9149608299,1007778.70457,246874.806497,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-019379,01/12/2018 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,14,10452,204,209,2020900,2008329,2028590040,4575 +QU,POINT (-73.84588684996383 40.720734739982106),11133,Free,LinkNYC - Citybridge,qu-06-145961,107-09 70 ROAD,40.72073474,-73.84588685,1026969.30923,201897.210429,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019724,10/27/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,711,4071100,4314647,4032380020,4576 +QU,POINT (-73.84560657034126 40.721176839555774),11134,Free,LinkNYC - Citybridge,qu-06-145955,107-15 70 ROAD,40.7211768396,-73.8456065703,1027046.71722,202058.417455,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019773,01/16/2018 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,711,4071100,4077480,4032380010,4577 +QU,POINT (-73.93995197771946 40.74810389544209),11135,Free,LinkNYC - Citybridge,qu-02-145926,27-35 JACKSON AVENUE,40.7481038954,-73.9399519777,1000888.15011,211836.777492,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019776,10/18/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4005127,4004320010,4578 +QU,POINT (-73.93494274031842 40.75114906004153),11136,Free,LinkNYC - Citybridge,qu-01-145958,29-37 40 Road,40.75114906,-73.9349427403,1002275.28907,212947.219825,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019781,01/10/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,31,4003100,4000000,4004020010,4579 +QU,POINT (-73.9341573898784 40.7514981299136),11137,Free,LinkNYC - Citybridge,qu-01-145946,30-25 Northern Blvd,40.7514981299,-73.9341573899,1002492.78896,213074.559793,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019782,01/09/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,31,4003100,4000000,4004020000,4580 +QU,POINT (-73.93337963195484 40.751950441820576),11138,Free,LinkNYC - Citybridge,qu-01-145980,140 31 Street,40.7519504418,-73.933379632,1002708.15434,213239.514516,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019783,01/09/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,31,4003100,4000000,4004010000,4581 +MN,POINT (-73.94418299999701 40.819548999982246),11139,Free,LinkNYC - Citybridge,mn-10-146057,2620 FREDERICK DOUGLAS BOULEVARD,40.819549,-73.944183,999699.22926,237865.882586,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-019837,05/02/2018 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060388,1020250060,4582 +QU,POINT (-73.92334100036675 40.76108899979138),11140,Free,LinkNYC - Citybridge,qu-01-145922,33-09 BROADWAY,40.7610889998,-73.9233410004,1005486.59072,216571.262117,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019889,10/13/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4008873,4006230010,4583 +QU,POINT (-73.92076317051827 40.75972324000932),11141,Free,LinkNYC - Citybridge,qu-01-145952,36-20 Broadway,40.75972324,-73.9207631705,1006201.16836,216074.306746,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019890,01/12/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,59,4005900,4009741,4006470040,4584 +QU,POINT (-73.91722999993885 40.758221000285424),11142,Free,LinkNYC - Citybridge,qu-01-145951,42-01 Broadway,40.7582210003,-73.9172299999,1007180.48792,215527.897078,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019891,01/09/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,155,4015500,4436925,4006920010,4585 +QU,POINT (-73.91438310003056 40.756724310242674),11143,Free,LinkNYC - Citybridge,qu-01-145953,45-18 Broadway,40.7567243102,-73.9143831,1007969.72191,214983.362406,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019892,01/10/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,161,4016100,4012439,4007080040,4586 +QU,POINT (-73.87812992982457 40.73933160995564),11144,Free,LinkNYC - Citybridge,qu-04-145898,84-43 CORONA AVENUE,40.73933161,-73.8781299298,1018022.28677,208658.544347,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019897,09/07/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,485,4048500,4038727,4015460040,4587 +QU,POINT (-73.87936018048059 40.740737139566995),11145,Free,LinkNYC - Citybridge,qu-04-145913,83-23 BROADWAY,40.7407371396,-73.8793601805,1017680.65819,209170.150935,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019899,09/07/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,471,4047100,4314501,4015800110,4588 +QU,POINT (-73.87992484847554 40.74093674554466),11146,Free,LinkNYC - Citybridge,qu-04-145914,83-02 BROADWAY,40.7409367455,-73.8799248485,1017524.08272,209242.658664,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019900,09/07/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,485,4048500,4430211,4015440030,4589 +QU,POINT (-73.88292329951233 40.7430237599391),11147,Free,LinkNYC - Citybridge,qu-04-145897,81-37 BROADWAY,40.7430237599,-73.8829232995,1016692.16476,210001.898944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019901,08/24/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,269,4026902,4307385,4015097500,4590 +QU,POINT (-73.8837887905939 40.743563222893336),11148,Free,LinkNYC - Citybridge,qu-04-145899,81-02 PETTIT AVENUE,40.7435632229,-73.8837887906,1016452.07502,210198.122961,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019902,08/31/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,269,4026902,4037311,4015090040,4591 +QU,POINT (-73.8894507502573 40.745760919811445),11149,Free,LinkNYC - Citybridge,qu-04-145900,75-32 BROADWAY,40.7457609198,-73.8894507503,1014882.13885,210996.782781,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019903,10/04/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4311943,4014860050,4592 +QU,POINT (-73.89012128977417 40.746045579627804),11150,Free,LinkNYC - Citybridge,qu-04-145915,75-10 BROADWAY,40.7460455796,-73.8901212898,1014696.20878,211100.259608,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-019904,09/05/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4036729,4014860010,4593 +MN,POINT (-73.97161400056089 40.75694468989834),11151,Free,LinkNYC - Citybridge,mn-06-120627,132 EAST 51 STREET,40.7569446899,-73.9716140006,992114.170283,215053.336347,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-020239,10/20/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036458,1013057500,4594 +MN,POINT (-73.97313741057381 40.78535009973349),11152,Free,LinkNYC - Citybridge,mn-07-121264,500 COLUMBUS AVENUE,40.7853500997,-73.9731374106,991688.945084,225402.240846,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-020490,05/01/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1032129,1012150030,4595 +BX,POINT (-73.92262283485934 40.809668192830955),11153,Free,LinkNYC - Citybridge,bx-01-146024,249 WILLIS AVENUE,40.8096681928,-73.9226228349,1005669.90761,234270.488858,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020495,04/19/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2000591,2023010020,4596 +MN,POINT (-73.95213300023583 40.80416900041954),11304,Free,Harlem,,203 West 117 St. Adam Clayton Side _NYCHA,40.8041690004,-73.9521330002,997501.861936,232261.098848,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,1084042,1019230029,568 +BX,POINT (-73.91900611021532 40.80775593011657),11154,Free,LinkNYC - Citybridge,bx-01-146075,250 BROOK AVENUE,40.8077559301,-73.9190061102,1006671.75009,233574.689068,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020496,05/21/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2000054,2022660000,4597 +BX,POINT (-73.91624535002524 40.80638485208228),11155,Free,LinkNYC - Citybridge,bx-01-146054,601 EAST 138 STREET,40.8063848521,-73.91624535,1007436.49594,233075.875761,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020497,07/11/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,27,2002702,2003635,2025510070,4598 +BX,POINT (-73.91295433226175 40.81447081507898),11156,Free,LinkNYC - Citybridge,bx-01-146045,563 ST ANNS AVENUE,40.8144708151,-73.9129543323,1008344.64799,236022.766521,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020504,06/25/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2000000,2022760000,4599 +BX,POINT (-73.91795518323185 40.80628664225493),11157,Free,LinkNYC - Citybridge,bx-01-146053,211 ST ANN'S AVENUE,40.8062866423,-73.9179551832,1006963.18225,233039.646503,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020509,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,25,2002500,2000051,2022650050,4600 +BX,POINT (-73.91518064941165 40.81439417972751),11158,Free,LinkNYC - Citybridge,bx-01-146056,520 BROOK AVENUE,40.8143941797,-73.9151806494,1007728.42022,235994.240988,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020513,05/31/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10455,201,43,2004300,2000118,2022750000,4601 +BX,POINT (-73.9160743496204 40.81284090983851),11159,Free,LinkNYC - Citybridge,bx-01-146055,468 BROOK AVENUE,40.8128409098,-73.9160743496,1007481.58181,235428.091201,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020515,05/31/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10455,201,43,2004300,2090711,2022720010,4602 +BX,POINT (-73.91834301054966 40.8071077797121),11160,Free,LinkNYC - Citybridge,bx-01-146060,530 EAST 138 STREET,40.8071077797,-73.9183430105,1006855.53778,233338.715459,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020548,07/11/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,25,2002500,2000040,2022650040,4603 +BX,POINT (-73.92055249995718 40.812126590351916),11161,Free,LinkNYC - Citybridge,bx-01-146023,374 WILLIS AVENUE,40.8121265904,-73.9205525,1006242.21486,235166.68326,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020565,04/19/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,41,2004100,2103815,2022870010,4604 +BX,POINT (-73.91616313001722 40.81939415037427),11162,Free,LinkNYC - Citybridge,bx-01-146074,680 MELROSE AVENUE,40.8193941504,-73.91616313,1007454.7213,237815.64745,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020569,05/02/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2001366,2023750010,4605 +BX,POINT (-73.9148490774749 40.8221119820016),11163,Free,LinkNYC - Citybridge,bx-01-146063,776 MELROSE AVE,40.822111982,-73.9148490775,1007817.46762,238806.202227,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020572,04/25/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,69,2006900,2114613,2023790010,4606 +BX,POINT (-73.91195254391404 40.822022194684195),11164,Free,LinkNYC - Citybridge,bx-01-146044,3125 3 AVENUE,40.8220221947,-73.9119525439,1008619.18222,238774.282016,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-020576,04/19/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,69,2006900,2000000,2023800050,4607 +MN,POINT (-73.94223468048622 40.822214860228655),11165,Free,LinkNYC - Citybridge,mn-10-119897,2710 FREDERICK DOUGLASS BLVD,40.8222148602,-73.9422346805,1000237.85154,238837.501377,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013361,10/19/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,232,1023200,1060439,1020300000,4290 +MN,POINT (-73.94030397013351 40.82040617023545),11166,Free,LinkNYC - Citybridge,mn-10-120058,200 WEST 143 STREET,40.8204061702,-73.9403039701,1000772.66806,238178.888521,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013362,10/03/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,232,1023200,1060430,1020280020,4291 +MN,POINT (-73.94306400041137 40.79356999961998),11167,Free,LinkNYC - Citybridge,mn-11-120233,1987 3 AVE,40.7935699996,-73.9430640004,1000015.10199,228401.015689,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013368,02/22/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,180,1018000,1052435,1016590000,4292 +MN,POINT (-73.94154199982697 40.7984879997877),11168,Free,LinkNYC - Citybridge,mn-11-120249,150 EAST 116 STREET,40.7984879998,-73.9415419998,1000435.3354,230193.091173,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013369,11/03/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,182,1018200,1052262,1016430050,4293 +MN,POINT (-73.94142152946101 40.79864626986658),11169,Free,LinkNYC - Citybridge,mn-11-120250,145 EAST 116 STREET,40.7986462699,-73.9414215295,1000468.65161,230250.776753,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013370,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,1052323,1016440120,4294 +MN,POINT (-73.95205300016917 40.811325000216925),11170,Free,LinkNYC - Citybridge,mn-10-120621,320 ST NICHOLAS AVENUE,40.8113250002,-73.9520530002,997522.582695,234868.294749,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013381,12/20/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,257,1025700,1059317,1019520040,4295 +MN,POINT (-73.93218651961024 40.85162017987412),11171,Free,LinkNYC - Citybridge,mn-12-120655,1495 ST. NICHOLAS AVE,40.8516201799,-73.9321865196,1003010.61175,249552.942873,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013384,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,271,1027100,1063962,1021660020,4296 +BK,POINT (-73.95072663957262 40.660731799929955),11172,Free,LinkNYC - Citybridge,bk-09-127021,1106 NOSTRAND AVENUE,40.6607317999,-73.9507266396,997920.604865,180002.645622,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013458,03/07/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,800,3080000,3115014,3050330040,4297 +BK,POINT (-73.95040697016677 40.65773964985093),11173,Free,LinkNYC - Citybridge,bk-09-127022,1208 NOSTRAND AVENUE,40.6577396499,-73.9504069702,998009.912429,178912.572015,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013459,03/07/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,802,3080200,3115751,3050470040,4298 +BK,POINT (-73.98171939969642 40.68721033987804),11174,Free,LinkNYC - Citybridge,bk-02-127256,320 SCHERMERHORN STREET,40.6872103399,-73.9817193997,989319.832368,189646.218198,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013464,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,39,3003900,3000573,3001730000,4299 +BK,POINT (-73.95918256973589 40.708779850436706),11175,Free,LinkNYC - Citybridge,bk-01-126207,268 BROADWAY,40.7087798504,-73.9591825697,995566.399927,197506.73791,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013485,01/31/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11211,301,525,3052500,3334852,3021410000,4300 +BK,POINT (-73.94979844942426 40.67826808042345),11176,Free,LinkNYC - Citybridge,bk-08-127044,590 NOSTRAND AVENUE,40.6782680804,-73.9497984494,998174.464265,186391.755219,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013489,03/01/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3029761,3012000040,4301 +BK,POINT (-73.94996600056031 40.655320000243094),11177,Free,LinkNYC - Citybridge,bk-17-127011,1295 NOSTRAND AVENUE,40.6553200002,-73.9499660006,998132.765858,178031.096087,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-013497,03/30/2018 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,317,818,3081800,3107759,3048370020,4302 +QU,POINT (-73.91595810022486 40.76427257012508),11178,Free,LinkNYC - Citybridge,qu-01-125113,37-20 30 AVENUE,40.7642725701,-73.9159581002,1007530.73788,217733.017012,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013508,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4010592,4006590050,4303 +QU,POINT (-73.88415452988714 40.74982932030491),11179,Free,LinkNYC - Citybridge,qu-03-125359,82-01 37 AVENUE,40.7498293203,-73.8841545299,1016347.70974,212480.926794,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013510,11/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,283,4028300,4035816,4014560040,4304 +QU,POINT (-73.84464429952939 40.720245159636065),11180,Free,LinkNYC - Citybridge,qu-06-124227,107-02 71 AVENUE,40.7202451596,-73.8446442995,1027314.0533,201719.449957,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013521,03/09/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,737,4073700,4078001,4032560040,4305 +QU,POINT (-73.84478699991698 40.720016999592666),11181,Free,LinkNYC - Citybridge,qu-06-124230,106-20 71 AVENUE,40.7200169996,-73.8447869999,1027274.64458,201636.254258,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013522,03/09/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,737,4073700,4077914,4032550010,4306 +QU,POINT (-73.9166731598418 40.76970698003971),11182,Free,LinkNYC - Citybridge,qu-01-125163,33-10 Astoria Blvd South,40.76970698,-73.9166731598,1007330.77338,219712.762396,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013525,06/12/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,65,4006501,4009294,4006310030,4307 +MN,POINT (-73.95902951041711 40.809412220085036),12896,Free,LinkNYC - Citybridge,mn-09-120546,1221 AMSTERDAM AVE,40.8094122201,-73.9590295104,995591.686622,234170.420816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006029,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,207,1020701,1059515,1019630000,3750 +MN,POINT (-73.9530070004547 40.81765599995546),12897,Free,LinkNYC - Citybridge,mn-09-120563,1481 AMSTERDAM AVENUE,40.817656,-73.9530070005,997257.261047,237174.761264,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006031,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,9,10031,109,213,1021303,1059645,1019710000,3751 +MN,POINT (-73.94644065048391 40.82719623022215),12898,Free,LinkNYC - Citybridge,mn-09-100231,500 WEST 148 STREET,40.8271962302,-73.9464406505,999072.645212,240651.655885,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006032,08/22/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1061989,1020790040,3752 +MN,POINT (-73.94604300038924 40.82719500027603),12899,Free,LinkNYC - Citybridge,mn-09-120573,1781 AMSTERDAM AVE,40.8271950003,-73.9460430004,999182.695844,240651.275309,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006033,08/10/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,231,1023100,1061484,1020630000,3753 +MN,POINT (-73.94375597304514 40.83033563505956),12900,Free,LinkNYC - Citybridge,mn-09-131062,1881 AMSTERDAM AVE,40.8303356351,-73.943755973,999814.899961,241795.921642,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006035,08/08/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10032,109,235,1023501,1061650,1020680000,3754 +MN,POINT (-73.9423269995896 40.83228300020937),12901,Free,LinkNYC - Citybridge,mn-12-120463,1941 AMSTERDAM AVENUE,40.8322830002,-73.9423269996,1000209.88506,242505.675471,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006037,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,239,1023900,1062490,1021070060,3755 +MN,POINT (-73.94226576024182 40.83273107007508),12902,Free,LinkNYC - Citybridge,mn-12-111956,1952 AMSTERDAM AVE,40.8327310701,-73.9422657602,1000226.72427,242668.934987,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006038,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1062714,1021150040,3756 +MN,POINT (-73.94173999957613 40.83344699956029),12903,Free,LinkNYC - Citybridge,mn-12-120460,1976 AMSTERDAM AVE,40.8334469996,-73.9417399996,1000372.04386,242929.870817,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006039,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1076742,1021160030,3757 +MN,POINT (-73.94144660962603 40.83386083977297),12904,Free,LinkNYC - Citybridge,mn-12-100263,1988 AMSTERDAM AVE,40.8338608398,-73.9414466096,1000453.13162,243080.702208,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006040,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062765,1021170040,3758 +MN,POINT (-73.94115905021705 40.83424538010213),12905,Free,LinkNYC - Citybridge,mn-12-111803,2002 AMSTERDAM AVE,40.8342453801,-73.9411590502,1000532.61211,243220.857768,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006041,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062798,1021180040,3759 +MN,POINT (-73.94091900012688 40.83407799956503),12906,Free,LinkNYC - Citybridge,mn-12-120458,481 WEST 159 STREET,40.8340779996,-73.9409190001,1000599.08048,243159.91957,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006042,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,245,1024500,1062530,1021090000,3760 +MN,POINT (-73.94047730993206 40.83481514040099),12907,Free,LinkNYC - Citybridge,mn-12-120457,2017 AMSTERDAM AVE,40.8348151404,-73.9404773099,1000721.12387,243428.569951,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006043,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,245,1024500,1062550,1021090050,3761 +BK,POINT (-73.95745773994393 40.67230200032099),12908,Free,LinkNYC - Citybridge,bk-08-126609,764 FRANKLIN AVE,40.6723020003,-73.9574577399,996051.053486,184217.017115,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-006138,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11238,308,217,3021700,3029594,3011780040,3762 +BK,POINT (-73.96361018011089 40.67640751020946),12909,Free,LinkNYC - Citybridge,bk-08-125707,718 WASHINGTON AVE,40.6764075102,-73.9636101801,994343.769827,185712.002642,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-006140,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,205,3020500,3028877,3011600040,3763 +BK,POINT (-73.981920179582 40.6874572698999),12910,Free,LinkNYC - Citybridge,bk-02-108350,36 NEVINS STREET,40.6874572699,-73.9819201796,989264.130708,189736.170446,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-006141,03/29/2018 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,37,3003700,3000000,3001660040,3764 +BK,POINT (-73.98799840012691 40.69059443975925),12911,Free,LinkNYC - Citybridge,bk-02-126847,141 LIVINGSTON STREET,40.6905944398,-73.9879984001,987578.28303,190878.843686,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-006143,05/03/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000428,3001540030,3765 +MN,POINT (-73.9692788597997 40.79853800001258),12912,Free,LinkNYC - Citybridge,mn-07-120273,240 WEST 102 STREET,40.798538,-73.9692788598,992755.79236,230207.398887,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-006150,08/04/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056518,1018730050,3766 +BK,POINT (-73.9254739997054 40.67914300015913),12913,Free,LinkNYC - Citybridge,bk-03-127093,1805 FULTON STREET,40.6791430002,-73.9254739997,1004921.09349,186715.316908,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-006197,01/17/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11233,303,381,3038100,3047942,3016970000,3767 +QU,POINT (-73.95447974047188 40.741882439615935),12914,Free,LinkNYC - Citybridge,qu-02-125016,51-04 VERNON BLVD,40.7418824396,-73.9544797405,996863.965246,209567.677043,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006860,03/22/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000201,4000340050,3768 +QU,POINT (-73.83818400057228 40.71860199962003),12915,Free,LinkNYC - Citybridge,qu-06-124181,110-88 QUEENS BOULEVARD,40.7186019996,-73.8381840006,1029105.9293,201124.039403,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006861,07/29/2016 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4078802,4032930040,3769 +QU,POINT (-73.88571746961782 40.738108570176365),12916,Free,LinkNYC - Citybridge,qu-04-124926,77-20 QUEENS BOULEVARD,40.7381085702,-73.8857174696,1015920.23192,208210.118406,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006867,01/12/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,479,4047900,4056457,4024520010,3770 +QU,POINT (-73.84284540740974 40.720671378620644),12917,Free,LinkNYC - Citybridge,qu-06-145845,108-36 QUEENS BLVD,40.7206713786,-73.8428454074,1027812.42074,201875.623858,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006873,07/18/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,737,4073700,4078003,4032570000,3771 +QU,POINT (-73.83897600022505 40.71895300015918),12918,Free,LinkNYC - Citybridge,qu-06-145762,110-72 QUEENS BLVD,40.7189530002,-73.8389760002,1028886.14956,201251.51487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006876,03/28/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4078799,4032927500,3772 +QU,POINT (-73.8368052730689 40.71796031217321),12919,Free,LinkNYC - Citybridge,qu-06-145786,112-04 QUEENS BLVD,40.7179603122,-73.8368052731,1029488.55223,200890.962441,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006880,04/18/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4079775,4033397500,3773 +QU,POINT (-73.83549621979152 40.717212350071705),12920,Free,LinkNYC - Citybridge,qu-06-145790,113-14 QUEENS BLVD,40.7172123501,-73.8354962198,1029851.94094,200619.136213,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006882,03/28/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4079813,4033400020,3774 +QU,POINT (-73.83234099988688 40.71486099966835),12921,Free,LinkNYC - Citybridge,qu-06-145763,118-10 QUEENS BLVD,40.7148609997,-73.8323409999,1030728.23512,199764.127424,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006885,04/18/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076902,4079993,4033470020,3775 +QU,POINT (-73.82816000013352 40.71107199962447),12922,Free,LinkNYC - Citybridge,qu-09-145794,82-37 KEW GARDENS ROAD,40.7110719996,-73.8281600001,1031889.99362,198385.928409,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-006987,04/05/2017 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,409,216,4021600,4080168,4033600000,3776 +MN,POINT (-73.98570282979283 40.75786906956709),12923,Free,LinkNYC - Citybridge,mn-05-122096,1515 BROADWAY,40.7578690696,-73.9857028298,988210.890032,215389.16704,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007082,04/16/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024714,1010160040,3777 +MN,POINT (-73.98587841945721 40.757665579804524),12924,Free,LinkNYC - Citybridge,mn-05-133354,1515 BROADWAY,40.7576655798,-73.9858784195,988162.256599,215315.021191,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007083,03/05/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024714,1010160040,3778 +MN,POINT (-73.98094970943343 40.774266279798255),12925,Free,LinkNYC - Citybridge,mn-07-120936,157 COLUMBUS AVE,40.7742662798,-73.9809497094,989526.395931,221363.463491,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007085,10/07/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028260,1011207500,3779 +MN,POINT (-73.98140400002389 40.773656999965375),12926,Free,LinkNYC - Citybridge,mn-07-120927,147 COLUMBUS AVENUE,40.773657,-73.981404,989400.617312,221141.455405,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007086,01/11/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1075637,1011190000,3780 +QU,POINT (-73.95212665954445 40.74291933975485),12927,Free,LinkNYC - Citybridge,qu-02-125014,10-63 JACKSON AVE,40.7429193398,-73.9521266595,997515.813023,209945.800303,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-007136,03/24/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000240,4000427500,3781 +MN,POINT (-73.98277699959638 40.777227000219895),12928,Free,LinkNYC - Citybridge,mn-07-121203,222 AMSTERDAM AVE,40.7772270002,-73.9827769996,989020.07575,222442.048604,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007143,08/03/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,155,1015500,1030348,1011580030,3782 +MN,POINT (-73.98301514945506 40.77653006020876),12929,Free,LinkNYC - Citybridge,mn-07-121191,197 AMSTERDAM AVE,40.7765300602,-73.9830151495,988954.167089,222188.117025,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007144,10/07/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028950,1011407500,3783 +MN,POINT (-73.98324700046639 40.77599900029049),12930,Free,LinkNYC - Citybridge,mn-07-138046,155 WEST 68 STREET,40.7759990003,-73.9832470005,988889.990052,221994.621677,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007145,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028950,1011407500,3784 +MN,POINT (-73.98363296038494 40.776068519622285),12931,Free,LinkNYC - Citybridge,mn-07-121193,174 AMSTERDAM AVE,40.7760685196,-73.9836329604,988783.088035,222019.929698,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007147,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,155,1015500,1030346,1011580010,3785 +MN,POINT (-73.9793497005094 40.76664932039857),12932,Free,LinkNYC - Citybridge,mn-05-122633,936 7 AVENUE,40.7666493204,-73.9793497005,989970.207708,218588.45198,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007148,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1024918,1010300030,3786 +MN,POINT (-73.98471930982711 40.76399634998395),12933,Free,LinkNYC - Citybridge,mn-05-122608,888 8 AVENUE,40.76399635,-73.9847193098,988482.975118,217621.582195,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007149,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024825,1010240000,3787 +MN,POINT (-73.98498723009939 40.76361577001061),12934,Free,LinkNYC - Citybridge,mn-05-122609,870 8TH AVENUE,40.76361577,-73.9849872301,988408.781041,217482.911541,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007150,11/16/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024825,1010240000,3788 +MN,POINT (-73.98658100021387 40.754144000430784),12935,Free,LinkNYC - Citybridge,mn-05-122166,132 WEST 40 STREET,40.7541440004,-73.9865810002,987967.809482,214031.964702,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007244,07/21/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,113,1011300,1015281,1008150050,3789 +MN,POINT (-73.97481819950352 40.74930073038801),12936,Free,LinkNYC - Citybridge,mn-06-138062,201 EAST 40 STREET,40.7493007304,-73.9748181995,991227.266873,212268.123086,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007299,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037174,1013147500,3790 +MN,POINT (-73.97332637956043 40.748672730093716),12937,Free,LinkNYC - Citybridge,mn-06-138570,245 EAST 40 STREET,40.7486727301,-73.9733263796,991640.683698,212039.444737,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007300,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037175,1013140020,3791 +MN,POINT (-73.97331900039765 40.74851300019855),12938,Free,LinkNYC - Citybridge,mn-06-121416,743 2 AVENUE,40.7485130002,-73.9733190004,991642.746029,211981.250628,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007302,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1076162,1009207500,3792 +MN,POINT (-73.97296141051449 40.74857853039359),12939,Free,LinkNYC - Citybridge,mn-06-121429,748 2 AVENUE,40.7485785304,-73.9729614105,991741.819322,212005.155764,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007322,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1038645,1013330000,3793 +MN,POINT (-73.97250700023224 40.749203000387375),12940,Free,LinkNYC - Citybridge,mn-06-121369,770 2 AVENUE,40.7492030004,-73.9725070002,991867.655356,212232.709443,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007628,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1038650,1013340000,3794 +MN,POINT (-73.97275057044514 40.74929182025409),12941,Free,LinkNYC - Citybridge,mn-06-121418,767 2 AVENUE,40.7492918203,-73.9727505704,991800.157788,212265.048289,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007629,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037546,1013157500,3795 +MN,POINT (-73.97065717020627 40.75163236032986),12942,Free,LinkNYC - Citybridge,mn-06-121538,300 EAST 45 STREET,40.7516323603,-73.9706571702,992379.902692,213117.969811,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007631,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1038762,1013370050,3796 +MN,POINT (-73.97052358031193 40.75234297024852),12943,Free,LinkNYC - Citybridge,mn-06-121413,857 2 AVENUE,40.7523429702,-73.9705235803,992416.828799,213376.880383,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007632,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1037591,1013190030,3797 +MN,POINT (-73.96926100022003 40.75349599976322),12944,Free,LinkNYC - Citybridge,mn-06-121790,300 EAST 48 STREET,40.7534959998,-73.9692610002,992766.49575,213797.086563,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007634,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1038905,1013400000,3798 +MN,POINT (-73.96883599953178 40.75413800003897),12945,Free,LinkNYC - Citybridge,mn-06-121792,300 EAST 49 STREET,40.754138,-73.9688359995,992884.16251,214031.029665,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007635,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1076278,1013410050,3799 +MN,POINT (-73.96655556276434 40.80469714326139),12946,Free,LinkNYC - Citybridge,mn-09-134414,2853 BROADWAY,40.8046971433,-73.9665555628,993508.937507,232451.666708,Outdoor,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001607,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,9,10025,109,199,1019900,1075440,1018940017,4950 +QU,POINT (-73.93142777002065 40.765160190168075),11183,Free,LinkNYC - Citybridge,qu-01-125170,21-01 BROADWAY,40.7651601902,-73.93142777,1003245.17886,218052.673196,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013527,05/17/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,77,4007700,4006385,4005540020,4308 +QU,POINT (-73.86085810997835 40.69245105975361),11184,Free,LinkNYC - Citybridge,qu-09-124798,86-33 FOREST PARKWAY,40.6924510598,-73.86085811,1022835.73089,191585.682167,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013542,07/13/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,12,4001200,4181531,4088530130,4309 +QU,POINT (-73.88106476969521 40.74199055007206),11185,Free,LinkNYC - Citybridge,qu-04-124856,82-61 BROADWAY,40.7419905501,-73.8810647697,1017207.67751,209626.161834,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013543,08/24/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,271,4027100,4037524,4015180090,4310 +QU,POINT (-73.91992600042128 40.75949000035392),11186,Free,LinkNYC - Citybridge,qu-01-125077,37-17 BROADWAY,40.7594900004,-73.9199260004,1006433.1692,215989.54084,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013545,05/17/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,61,4006100,4010434,4006570000,4311 +QU,POINT (-73.9228789999594 40.76071299989904),11187,Free,LinkNYC - Citybridge,qu-01-125088,34-02 BROADWAY,40.7607129999,-73.922879,1005614.69774,216434.385422,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013546,06/08/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,59,4005900,4008830,4006220040,4312 +QU,POINT (-73.91505123951777 40.76368606017499),11188,Free,LinkNYC - Citybridge,qu-01-125148,30-01 STEINWAY STREET,40.7636860602,-73.9150512395,1007782.15765,217519.574525,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013594,06/29/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,149,4014900,4011253,4006800050,4313 +QU,POINT (-73.87652268336832 40.74834975177807),11189,Free,LinkNYC - Citybridge,qu-04-125322,90-02 ROOSEVELT AVENUE,40.7483497518,-73.8765226834,1018463.05066,211944.761528,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013596,09/08/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,271,4027100,4038784,4015510000,4314 +QU,POINT (-73.88366475046371 40.74772877970025),11190,Free,LinkNYC - Citybridge,qu-03-125337,82-03 ROOSEVELT AVENUE,40.7477287797,-73.8836647505,1016484.43093,211715.812839,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013597,09/07/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,283,4028300,4036213,4014700050,4315 +QU,POINT (-73.85077696049716 40.722499169900765),11191,Free,LinkNYC - Citybridge,qu-06-124234,70-25 YELLOWSTONE BOULEVARD,40.7224991699,-73.8507769605,1025612.70401,202537.698649,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013607,03/09/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,711,4071100,4433878,4032360040,4316 +QU,POINT (-73.84311000019525 40.69524799964875),11192,Free,LinkNYC - Citybridge,qu-09-124793,102-61 JAMAICA AVENUE,40.6952479996,-73.8431100002,1027755.66659,192613.004588,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013612,07/07/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,26,4002600,4191664,4091870030,4317 +QU,POINT (-73.91968964042547 40.74184570976452),11193,Free,LinkNYC - Citybridge,qu-02-124993,45-06 GREENPOINT AVENUE,40.7418457098,-73.9196896404,1006504.54242,209561.219379,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013616,03/09/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,183,4018300,4001962,4001650010,4318 +QU,POINT (-73.88002681966015 40.74798095034624),11194,Free,LinkNYC - Citybridge,qu-04-125330,86-10 ROOSEVELT AVENUE,40.7479809503,-73.8800268197,1017492.31047,211809.046248,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013622,09/07/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,269,4026901,4037053,4015020010,4319 +QU,POINT (-73.92505030573535 40.76189687865815),11195,Free,LinkNYC - Citybridge,qu-01-125085,31-01 BROADWAY,40.7618968787,-73.9250503057,1005012.81575,216865.189023,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013628,05/17/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4008367,4006130010,4320 +QU,POINT (-73.91894986941435 40.759168999947306),11196,Free,LinkNYC - Citybridge,qu-01-125145,31-90 STEINWAY STREET,40.7591689999,-73.9189498694,1006703.69819,215872.838645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-013629,05/18/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,155,4015500,4010496,4006580000,4321 +MN,POINT (-73.9801608505406 40.77535675000003),11197,Free,LinkNYC - Citybridge,mn-07-120926,197 COLUMBUS AVENUE,40.77535675,-73.9801608505,989744.797726,221760.806856,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013670,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028483,1011210060,4322 +MN,POINT (-73.95860146010469 40.763864269934),11198,Free,LinkNYC - Citybridge,mn-08-120956,401 EAST 66 STREET,40.7638642699,-73.9586014601,995718.024624,217575.801775,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013674,05/10/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1081232,1014610000,4323 +MN,POINT (-73.9575779895556 40.76599548991076),11199,Free,LinkNYC - Citybridge,mn-08-120963,363 EAST 69 STREET,40.7659954899,-73.9575779896,996001.165462,218352.411114,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013676,01/08/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,126,1012600,1044821,1014440020,4324 +MN,POINT (-73.95872117495043 40.7807159310825),11200,Free,LinkNYC - Citybridge,mn-08-121058,50 EAST 86 STREET,40.7807159311,-73.958721175,995681.968594,223715.40859,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013681,05/11/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,150,1015001,1046840,1014970050,4325 +MN,POINT (-73.96622435042232 40.77045871020816),11201,Free,LinkNYC - Citybridge,mn-08-121152,29 EAST 70 STREET,40.7704587102,-73.9662243504,993605.441907,219977.468559,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013686,04/06/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,130,1013000,1041328,1013857500,4326 +MN,POINT (-73.97693216011942 40.780147609991175),11202,Free,LinkNYC - Citybridge,mn-07-121161,338 COLUMBUS AVENUE,40.78014761,-73.9769321601,990638.580059,223506.497591,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013690,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,161,1016100,1030178,1011480010,4327 +MN,POINT (-73.97518778006184 40.751181639786076),11203,Free,LinkNYC - Citybridge,mn-06-121368,163 EAST 42 STREET,40.7511816398,-73.9751877801,991124.67095,212953.369747,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013700,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036161,1012970030,4328 +MN,POINT (-73.97424148999401 40.747251059690534),11204,Free,LinkNYC - Citybridge,mn-06-121426,705 2 AVENUE,40.7472510597,-73.97424149,991387.278693,211521.4087,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013709,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020340,1009180040,4329 +MN,POINT (-73.97340529999444 40.7479662300689),11205,Free,LinkNYC - Citybridge,mn-06-121427,728 2 AVENUE,40.7479662301,-73.9734053,991618.894699,211782.037444,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013710,04/05/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1022051,1009457500,4330 +MN,POINT (-73.9783630102379 40.74159316042628),11206,Free,LinkNYC - Citybridge,mn-06-121439,519 2 AVENUE,40.7415931604,-73.9783630102,990245.779335,209459.746485,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013711,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019902,1009090030,4331 +MN,POINT (-73.9810551705499 40.73805172975176),11207,Free,LinkNYC - Citybridge,mn-06-121457,245 EAST 23 STREET,40.7380517298,-73.9810551705,989500.039685,208169.318291,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013718,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1087220,1009049020,4332 +MN,POINT (-73.98482252945884 40.732205999864426),11208,Free,LinkNYC - Citybridge,mn-03-121470,224 2 AVENUE,40.7322059999,-73.9848225295,988456.388557,206039.331738,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013720,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006511,1004550010,4333 +MN,POINT (-73.97553379945987 40.7496049296818),11209,Free,LinkNYC - Citybridge,mn-06-121529,155 EAST 40 STREET,40.7496049297,-73.9755337995,991028.960512,212378.896486,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013724,12/05/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,106,80,1008000,1036148,1012950030,4334 +MN,POINT (-73.9825063298208 40.745142340307304),11210,Free,LinkNYC - Citybridge,mn-05-121567,101 EAST 31 STREET,40.7451423403,-73.9825063298,989097.374808,210752.569358,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013736,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018457,1008870000,4335 +MN,POINT (-73.98337004029044 40.74389120970928),11211,Free,LinkNYC - Citybridge,mn-05-121570,101 EAST 29 STREET,40.7438912097,-73.9833700403,988858.13316,210296.695926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013738,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018238,1008850000,4336 +MN,POINT (-73.98198710992851 40.74573984994369),11212,Free,LinkNYC - Citybridge,mn-05-121579,101 EAST 32 STREET,40.7457398499,-73.9819871099,989241.202276,210970.29038,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013740,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018472,1008880000,4337 +MN,POINT (-73.9854284900582 40.74396179019641),11213,Free,LinkNYC - Citybridge,mn-05-121636,23 EAST 28 STREET,40.7439617902,-73.9854284901,988287.736007,210322.309064,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013747,10/25/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,1016900,1008580020,4338 +MN,POINT (-73.98409910951858 40.746511299701126),11214,Free,LinkNYC - Citybridge,mn-05-121640,24 EAST 32 STREET,40.7465112997,-73.9840991095,988655.936058,211251.240933,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013750,02/06/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1017000,1008610060,4339 +MN,POINT (-73.98371405001802 40.746464779766214),11215,Free,LinkNYC - Citybridge,mn-05-121641,27 EAST 32 STREET,40.7464647798,-73.98371405,988762.634336,211234.311833,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013751,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,1017015,1008620020,4340 +MN,POINT (-73.98664796030512 40.74257286029585),11216,Free,LinkNYC - Citybridge,mn-05-121631,41 MADISON AVENUE,40.7425728603,-73.9866479603,987949.900397,209816.22379,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013755,05/10/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,1016749,1008550040,4341 +MN,POINT (-73.96665144020957 40.753413889741616),11217,Free,LinkNYC - Citybridge,mn-06-121669,877 1 AVENUE,40.7534138897,-73.9666514402,993489.507428,213767.435704,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013757,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1039468,1013420020,4342 +MN,POINT (-73.9599982200711 40.7619932397414),11218,Free,LinkNYC - Citybridge,mn-08-121697,400 EAST 63 STREET,40.7619932397,-73.9599982201,995331.412208,216893.944215,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013760,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,106,1010602,1045317,1014570050,4343 +MN,POINT (-73.96279335031842 40.758154540346546),11219,Free,LinkNYC - Citybridge,mn-06-121703,400 EAST 57 STREET,40.7581545403,-73.9627933503,994557.690987,215495.039204,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013763,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,106,1010601,1040466,1013680000,4344 +MN,POINT (-73.96268513970344 40.76307964359621),11220,Free,LinkNYC - Citybridge,mn-08-121758,1191 2 AVENUE,40.7630796436,-73.9626851397,994586.905167,217289.428332,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013769,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043845,1014170030,4345 +MN,POINT (-73.96331112987559 40.76174824985115),11221,Free,LinkNYC - Citybridge,mn-08-121767,300 EAST 61 STREET,40.7617482499,-73.9633111299,994413.697508,216804.284617,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013776,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,110,1011000,1044218,1014350050,4346 +MN,POINT (-73.96516241712058 40.75914914950209),11222,Free,LinkNYC - Citybridge,mn-06-121772,300 EAST 57 STREET,40.7591491495,-73.9651624171,993901.22314,215857.137889,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013777,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039992,1013490050,4347 +MN,POINT (-73.96918419991404 40.75439184985271),11223,Free,LinkNYC - Citybridge,mn-06-121794,251 EAST 49 STREET,40.7543918499,-73.9691841999,992787.659094,214123.481252,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013778,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038247,1013230120,4348 +MN,POINT (-73.96315851057707 40.762416869836635),11224,Free,LinkNYC - Citybridge,mn-08-121756,1175 2 AVENUE,40.7624168698,-73.9631585106,994455.874261,217047.902568,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013780,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043798,1014160030,4349 +MN,POINT (-73.97543365958413 40.75773384018991),11225,Free,LinkNYC - Citybridge,mn-05-121950,32 EAST 50 STREET,40.7577338402,-73.9754336596,991055.87614,215340.529671,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013801,05/09/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035455,1012850020,4350 +MN,POINT (-73.98833004047724 40.754311449880255),11226,Free,LinkNYC - Citybridge,mn-05-121991,550 7 AVENUE,40.7543114499,-73.9883300405,987483.2199,214092.902573,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013805,01/18/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,1014501,1007890040,4351 +MN,POINT (-73.9883216296687 40.75397800987447),11227,Free,LinkNYC - Citybridge,mn-05-121993,535 7 AVENUE,40.7539780099,-73.9883216297,987485.566352,213971.419876,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013806,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,1015265,1008140020,4352 +MN,POINT (-73.99106942048064 40.75127385986707),11228,Free,LinkNYC - Citybridge,mn-05-121998,207 WEST 34 STREET,40.7512738599,-73.9910694205,986724.373976,212986.120994,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013808,03/27/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,1014408,1007840040,4353 +MN,POINT (-73.98076799981973 40.7304959996091),11229,Free,LinkNYC - Citybridge,mn-03-122031,440 EAST 14 STREET,40.7304959996,-73.9807679998,989580.225548,205416.54591,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013817,07/21/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1006019,1004410030,4354 +MN,POINT (-73.98019324979069 40.75495251017879),11230,Free,LinkNYC - Citybridge,mn-05-122204,3 WEST 44 STREET,40.7549525102,-73.9801932498,989737.505089,214326.866672,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013832,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,96,1009600,1034227,1012607500,4355 +MN,POINT (-73.99028957022553 40.746004859649),11231,Free,LinkNYC - Citybridge,mn-05-122211,59 WEST 28 STREET,40.7460048596,-73.9902895702,986940.657993,211066.477851,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013834,02/23/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,76,1007600,1015709,1008300000,4356 +MN,POINT (-73.99615312978891 40.73810851040576),11232,Free,LinkNYC - Citybridge,mn-05-122272,552 6 AVENUE,40.7381085104,-73.9961531298,985316.05363,208189.460967,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013840,06/07/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015306,1008170000,4357 +MN,POINT (-73.9906943197909 40.746000469773776),11233,Free,LinkNYC - Citybridge,mn-05-122221,811 6 AVENUE,40.7460004698,-73.9906943198,986828.506314,211064.866306,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013842,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015082,1008030040,4358 +MN,POINT (-73.99605667020808 40.73863994972057),11234,Free,LinkNYC - Citybridge,mn-04-122265,571 6 AVENUE,40.7386399497,-73.9960566702,985342.776018,208383.082299,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013843,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014560,1007910040,4359 +MN,POINT (-73.99279950012532 40.742722740233226),11235,Free,LinkNYC - Citybridge,mn-05-122269,712 6 AVENUE,40.7427227402,-73.9927995001,986245.281103,209870.629849,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013844,07/09/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1086050,1008240010,4360 +MN,POINT (-73.99058102020571 40.71709475015596),11236,Free,LinkNYC - Citybridge,mn-03-122371,323 GRAND STREET,40.7170947502,-73.9905810202,986861.032824,200533.612106,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013858,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,16,1001600,1004005,1003090010,4361 +QU,POINT (-73.92121600025091 40.76009499990373),11237,Free,LinkNYC - Citybridge,qu-01-142874,36-01 BROADWAY,40.7600949999,-73.9212160003,1006075.59807,216209.63784,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010337,08/02/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4009836,4006490010,3867 +QU,POINT (-73.91801561012726 40.758591250094135),11238,Free,LinkNYC - Citybridge,qu-01-143435,41-01 BROADWAY,40.7585912501,-73.9180156101,1006962.71736,215662.586441,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010338,07/10/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,155,4015500,4011161,4006790010,3868 +QU,POINT (-73.8850720401969 40.74960629960232),11239,Free,LinkNYC - Citybridge,qu-03-143455,81-02 37 AVENUE,40.7496062996,-73.8850720402,1016093.5987,212399.338374,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010339,11/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,283,4028300,4030009,4012920000,3869 +QU,POINT (-73.91730275980208 40.76490228978663),11240,Free,LinkNYC - Citybridge,qu-01-142873,36-02 30 AVENUE,40.7649022898,-73.9173027598,1007158.03258,217962.090044,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010340,04/06/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4010009,4006510040,3870 +MN,POINT (-73.95184031981066 40.80943715030173),11241,Free,LinkNYC - Citybridge,mn-10-142812,2307 FREDERICK DOUGLASS BOULEVARD,40.8094371503,-73.9518403198,997581.834545,234180.516269,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010341,10/14/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,257,1025700,1059275,1019500030,3871 +MN,POINT (-73.95040700057075 40.80582700002876),11242,Free,LinkNYC - Citybridge,mn-10-142515,2001 ADAM CLAYTON POWELL JR BOULEVARD,40.805827,-73.9504070006,997979.358684,232865.432285,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010345,09/12/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1057606,1019050000,3872 +MN,POINT (-73.95170768056909 40.80926810016783),11243,Free,LinkNYC - Citybridge,mn-10-142813,2306 FREDERICK DOUGLASS BOULEVARD,40.8092681002,-73.9517076806,997618.58644,234118.945526,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010346,10/14/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,222,1022200,1087917,1019297500,3873 +MN,POINT (-73.94591692038718 40.811973430433575),11244,Free,LinkNYC - Citybridge,mn-10-142513,2197 ADAM CLAYTON POWELL JR BOULEVARD,40.8119734304,-73.9459169204,999221.012697,235105.530167,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010349,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,1058008,1019140060,3874 +MN,POINT (-73.95706699953105 40.80193800001102),11245,Free,LinkNYC - Citybridge,mn-10-142858,2070 FREDERICK DOUGLASS BOULEVARD,40.801938,-73.9570669995,996136.294785,231447.559136,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010350,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,1055106,1018280000,3875 +MN,POINT (-73.94787669955818 40.81486348979759),11246,Free,LinkNYC - Citybridge,mn-10-142855,2480 FREDERICK DOUGLASS BOULEVARD,40.8148634898,-73.9478766996,998677.889767,236158.153061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010356,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,215,1021500,1084049,1019380000,3876 +MN,POINT (-73.95214914033792 40.80899648963832),11247,Free,LinkNYC - Citybridge,mn-10-142814,2293 FREDERICK DOUGLASS BOULEVARD,40.8089964896,-73.9521491403,997496.432813,234019.921117,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010357,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,257,1025700,1059275,1019500030,3877 +BK,POINT (-73.9514960001013 40.72545600026033),11248,Free,LinkNYC - Citybridge,bk-01-143275,88 NORMAN AVENUE,40.7254560003,-73.9514960001,997694.093179,203583.454431,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010360,06/09/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,3066070,3026470000,3878 +MN,POINT (-73.9528208930685 40.77823255701791),11249,Free,LinkNYC - Citybridge,mn-08-128743,228 EAST 86 STREET,40.778232557,-73.9528208931,997316.509944,222811.456658,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010367,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1048779,1015310040,3879 +BX,POINT (-73.9164498501636 40.818768679804386),11250,Free,LinkNYC - Citybridge,bx-01-111740,652A MELROSE AVENUE,40.8187686798,-73.9164498502,1007375.57906,237587.690229,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010368,04/20/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2001356,2023740070,3880 +MN,POINT (-73.96015290021451 40.76191027043324),11251,Free,LinkNYC - Citybridge,mn-08-115163,1142 1 AVENUE,40.7619102704,-73.9601529002,995288.576008,216863.696244,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010402,03/16/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,106,1010602,1045318,1014570050,3881 +MN,POINT (-73.9375077505801 40.82408110019506),11252,Free,LinkNYC - Citybridge,mn-10-142554,2570 ADAM CLAYTON POWELL JR BOULEVARD,40.8240811002,-73.9375077506,1001545.65044,239518.33827,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010405,09/15/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,234,1023400,1060566,1020340030,3882 +MN,POINT (-73.95141340999186 40.81002334029038),11253,Free,LinkNYC - Citybridge,mn-10-142632,2327 FREDERICK DOUGLASS BLVD,40.8100233403,-73.95141341,997699.89566,234394.15134,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010406,10/14/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,257,1025700,1059298,1019510020,3883 +QU,POINT (-73.88549761017501 40.74753882005996),11254,Free,LinkNYC - Citybridge,qu-03-100928,80-05 ROOSEVELT AVENUE,40.7475388201,-73.8854976102,1015976.66882,211645.935354,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010430,09/25/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,283,4028300,4030000,4012910050,3884 +MN,POINT (-73.98474973007214 40.73642647030526),12235,Free,LinkNYC - Citybridge,mn-06-133440,233 3 AVENUE,40.7364264703,-73.9847497301,988476.296982,207576.985158,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000257,02/01/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,64,1006400,1019602,1009000000,3118 +MN,POINT (-73.98448600040774 40.73678900018527),12236,Free,LinkNYC - Citybridge,mn-06-123822,243 3 AVENUE,40.7367890002,-73.9844860004,988549.360812,207709.079054,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000258,03/16/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,64,1006400,1084938,1009000060,3119 +MN,POINT (-73.9824889997292 40.739528000014616),12237,Free,LinkNYC - Citybridge,mn-06-121488,323 3 AVENUE,40.739528,-73.9824889997,989102.585755,208707.087557,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000264,12/05/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1082137,1009050000,3120 +MN,POINT (-73.98242355948976 40.74004081003748),12238,Free,LinkNYC - Citybridge,mn-06-121501,336 3 AVENUE,40.74004081,-73.9824235595,989120.682832,208893.924125,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000266,02/01/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,68,1006800,1018080,1008800050,3121 +MN,POINT (-73.98203484037599 40.73997520033161),12239,Free,LinkNYC - Citybridge,mn-06-103457,200 EAST 25 STREET,40.7399752003,-73.9820348404,989228.407354,208870.042283,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000267,07/13/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019808,1009050060,3122 +MN,POINT (-73.98238299951029 40.74024599972478),12240,Free,LinkNYC - Citybridge,mn-06-138462,340 3Rd Ave,40.7402459997,-73.9823829995,989131.907547,208968.68349,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000269,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,68,1006800,1018109,1008810040,3123 +MN,POINT (-73.98198847959033 40.74021823009224),12241,Free,LinkNYC - Citybridge,mn-06-134921,341 3Rd AVENUE,40.7402182301,-73.9819884796,989241.236397,208958.588366,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000270,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019821,1009060000,3124 +MN,POINT (-73.98172899958504 40.74057299986767),12242,Free,LinkNYC - Citybridge,mn-06-121539,355 3 AVENUE,40.7405729999,-73.9817289996,989313.114862,209087.857137,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000272,01/26/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10010,106,66,1006600,1019844,1009060060,3125 +MN,POINT (-73.98157600033176 40.74077499977664),12243,Free,LinkNYC - Citybridge,mn-06-121499,359 3 AVENUE,40.7407749998,-73.9815760003,989355.497323,209161.460992,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000273,01/26/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019845,1009070000,3126 +MN,POINT (-73.98173227980061 40.740989269731315),12244,Free,LinkNYC - Citybridge,mn-06-136668,362 3 AVENUE,40.7409892697,-73.9817322798,989312.174247,209239.517266,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000274,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,106,68,1006800,1018143,1008820050,3127 +MN,POINT (-73.9815117598262 40.741290790063246),12245,Free,LinkNYC - Citybridge,mn-06-134618,370 3 AVENUE,40.7412907901,-73.9815117598,989373.259427,209349.383516,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000275,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,106,68,1006800,1018147,1008820050,3128 +MN,POINT (-73.98129694022626 40.741168979801124),12246,Free,LinkNYC - Citybridge,mn-06-121498,373 3 AVENUE,40.7411689798,-73.9812969402,989432.797365,209305.016807,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000276,02/01/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019864,1009070060,3129 +MN,POINT (-73.98068000004682 40.74200699969767),12247,Free,LinkNYC - Citybridge,mn-06-121496,395 3 AVENUE,40.7420069997,-73.98068,989603.690068,209610.371183,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000278,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019888,1009090000,3130 +MN,POINT (-73.98037099994639 40.742432999816195),12248,Free,LinkNYC - Citybridge,mn-06-134922,411 3 AVENUE,40.7424329998,-73.9803709999,989689.281104,209765.59561,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000280,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,66,1006600,1019911,1009090050,3131 +MN,POINT (-73.96717705035562 40.76020693012285),12231,Free,LinkNYC - Citybridge,mn-06-134218,201 EAST 57 STREET,40.7602069301,-73.9671770504,993342.955227,216242.30641,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000252,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1089950,1013310000,3114 +MN,POINT (-73.98045937024355 40.74273600030919),12249,Free,LinkNYC - Citybridge,mn-06-134654,412 3 AVENUE,40.7427360003,-73.9804593702,989664.768686,209875.982857,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000281,06/07/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018223,1008840050,3132 +MN,POINT (-73.98024172951237 40.74303519982023),12250,Free,LinkNYC - Citybridge,mn-06-134561,416 3 AVENUE,40.7430351998,-73.9802417295,989725.053014,209985.004292,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000283,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018263,1008850040,3133 +MN,POINT (-73.97981299954225 40.743093000148654),12251,Free,LinkNYC - Citybridge,mn-06-121506,200 EAST 30 STREET,40.7430930001,-73.9798129995,989843.850021,210006.08988,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000284,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1019945,1009100060,3134 +MN,POINT (-73.97990736049753 40.74349361972919),12252,Free,LinkNYC - Citybridge,mn-06-134920,438 3 AVENUE,40.7434936197,-73.9799073605,989817.668971,210152.042344,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000285,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018323,1008860050,3135 +MN,POINT (-73.97965465006904 40.74395034032846),12253,Free,LinkNYC - Citybridge,mn-06-121505,450 3Rd Ave,40.7439503403,-73.9796546501,989887.656364,210318.456381,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000286,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1078756,1008870030,3136 +MN,POINT (-73.95305399969264 40.80530200020698),11305,Free,Harlem,,pole 24: 118CStNk,40.8053020002,-73.9530539997,997246.664283,232673.75255,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,220,1022000,1058418,1019240014,582 +MN,POINT (-73.9793160001712 40.7438759999062),12254,Free,LinkNYC - Citybridge,mn-06-133465,451 3 AVENUE,40.7438759999,-73.9793160002,989981.501977,210291.393771,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000287,01/27/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1020028,1009120000,3137 +MN,POINT (-73.9784159994277 40.74511599998157),12255,Free,LinkNYC - Citybridge,mn-06-121502,489 3 AVENUE,40.745116,-73.9784159994,990230.779365,210743.225545,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000292,02/19/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1020103,1009140000,3138 +MN,POINT (-73.97761399949528 40.746216999816305),12256,Free,LinkNYC - Citybridge,mn-06-133470,521 3 AVENUE,40.7462169998,-73.9776139995,990452.905561,211144.410766,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000296,05/05/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,78,1007800,1020174,1009150060,3139 +MN,POINT (-73.98489999986697 40.736214000001056),12232,Free,LinkNYC - Citybridge,mn-06-133527,205 3 AVENUE,40.736214,-73.9848999999,988434.666159,207499.568318,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000253,07/14/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019580,1008990000,3115 +MN,POINT (-73.97744399970104 40.74644900015157),12257,Free,LinkNYC - Citybridge,mn-06-121513,525 3 AVENUE,40.7464490002,-73.9774439997,990499.9888,211228.947999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000297,02/19/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020178,1009160000,3140 +MN,POINT (-73.98517100018978 40.73583899984924),12233,Free,LinkNYC - Citybridge,mn-06-133890,205 3 AVENUE,40.7358389998,-73.9851710002,988359.586913,207362.931124,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000254,02/28/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019580,1008990000,3116 +MN,POINT (-73.98512348041882 40.736331690327596),12234,Free,LinkNYC - Citybridge,mn-06-133525,220 3 AVENUE,40.7363316903,-73.9851234804,988372.725667,207542.436015,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000256,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,50,1005000,1088759,1008747500,3117 +MN,POINT (-73.97768758027675 40.746538880317964),12258,Free,LinkNYC - Citybridge,mn-06-121512,528 3 AVENUE,40.7465388803,-73.9776875803,990432.487295,211261.676936,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000298,01/27/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1018910,1008910040,3141 +MN,POINT (-73.97700500057951 40.7470499995756),12259,Free,LinkNYC - Citybridge,mn-06-121511,543 3 AVENUE,40.7470499996,-73.9770050006,990621.572547,211447.942968,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000301,03/23/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020214,1009177500,3142 +MN,POINT (-73.9769650001658 40.74767200012702),12260,Free,LinkNYC - Citybridge,mn-06-138165,164 EAST 37 STREET,40.7476720001,-73.9769650002,990632.596475,211674.560625,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000302,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1018969,1008920050,3143 +MN,POINT (-73.97677658000616 40.74778786015185),12261,Free,LinkNYC - Citybridge,mn-06-121522,560 3 AVENUE,40.7477878602,-73.97677658,990684.793221,211716.785934,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000303,03/21/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019099,1008930040,3144 +MN,POINT (-73.9761049995465 40.74828900039807),12262,Free,LinkNYC - Citybridge,mn-06-121352,581B 3 AVENUE,40.7482890004,-73.9761049995,990870.826313,211899.417458,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000304,02/19/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020348,1009190000,3145 +MN,POINT (-73.97602629054326 40.74881879955961),12263,Free,LinkNYC - Citybridge,mn-06-121519,596 3 AVENUE,40.7488187996,-73.9760262905,990892.582175,212092.446272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000306,04/25/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019148,1008940050,3146 +MN,POINT (-73.97536339402282 40.748732796416384),12264,Free,LinkNYC - Citybridge,mn-06-138030,203 EAST 39 STREET,40.7487327964,-73.975363394,991076.264879,212061.163526,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000308,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1082153,1009200010,3147 +MN,POINT (-73.9751864194609 40.74934111965521),12265,Free,LinkNYC - Citybridge,mn-06-121360,605 3Rd Ave,40.7493411197,-73.9751864195,991125.237878,212282.80908,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000309,10/26/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1082153,1009200010,3148 +MN,POINT (-73.97564800013637 40.748914000056274),12266,Free,LinkNYC - Citybridge,mn-06-121364,605 3 AVENUE,40.7489140001,-73.9756480001,990997.388396,212127.159785,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000310,03/07/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1082153,1009200010,3149 +MN,POINT (-73.97510441997974 40.74965754969914),12267,Free,LinkNYC - Citybridge,mn-06-135586,633 3Rd Ave,40.7496575497,-73.97510442,991147.925169,212398.101172,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000312,01/05/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037174,1013147500,3150 +MN,POINT (-73.97474100038146 40.75015599971313),12268,Free,LinkNYC - Citybridge,mn-06-121527,639 3 AVENUE,40.7501559997,-73.9747410004,991248.567028,212579.731386,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000313,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037545,1013150000,3151 +MN,POINT (-73.97488776974228 40.750377969605694),12269,Free,LinkNYC - Citybridge,mn-06-137977,650 3 AVENUE,40.7503779696,-73.9748877697,991207.878133,212660.590477,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000315,02/29/2016 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,106,80,1008000,1036153,1012967500,3152 +MN,POINT (-74.00458853683615 40.74457030860675),11306,Free,Chelsea,,19th between 9th and 10th r,40.7445703086,-74.0045885368,982978.537308,210543.709212,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,0,0,66 +MN,POINT (-73.97446736001795 40.75095973007691),12270,Free,LinkNYC - Citybridge,mn-06-121362,660 3 AVENUE,40.7509597301,-73.97446736,991324.299816,212872.578242,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000316,02/29/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036161,1012970030,3153 +MN,POINT (-73.97414246984798 40.75140577990868),12271,Free,LinkNYC - Citybridge,mn-06-121536,666 3Rd Ave,40.7514057799,-73.9741424698,991414.268796,213035.11499,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000317,02/28/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036161,1012970030,3154 +MN,POINT (-73.97376499962027 40.75149700044155),12272,Free,LinkNYC - Citybridge,mn-06-121535,685 3 AVENUE,40.7514970004,-73.9737649996,991518.84339,213068.380672,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000320,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037555,1013170000,3155 +MN,POINT (-73.97325384942627 40.75262285005428),12273,Free,LinkNYC - Citybridge,mn-06-121531,716 3 AVENUE,40.7526228501,-73.9732538494,991660.34081,213478.606885,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000326,06/07/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036180,1012990040,3156 +MN,POINT (-73.97284287015444 40.75266482011618),12274,Free,LinkNYC - Citybridge,mn-06-121358,721 3Rd Ave E45St,40.7526648201,-73.9728428702,991774.202787,213493.93297,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000327,01/27/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1037598,1013190100,3157 +MN,POINT (-73.97244500025184 40.753195999636034),12275,Free,LinkNYC - Citybridge,mn-06-121370,733 3Rd Ave,40.7531959996,-73.9724450003,991884.376452,213687.493278,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000328,02/19/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1037596,1013190050,3158 +MN,POINT (-73.972867999598 40.75314900000163),12276,Free,LinkNYC - Citybridge,mn-06-139745,734 3Rd Ave,40.753149,-73.9728679996,991767.185741,213670.333208,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000330,12/14/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036195,1013000030,3159 +BK,POINT (-73.9973869996317 40.66087100011073),12277,Free,LinkNYC - Citybridge,bk-07-108701,731 4 AVENUE,40.6608710001,-73.9973869996,984974.960152,180049.526106,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001043,04/26/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3009586,3006520010,3460 +BK,POINT (-73.99882199981946 40.65990199962027),12278,Free,LinkNYC - Citybridge,bk-07-141621,784 4 AVENUE,40.6599019996,-73.9988219998,984576.833324,179696.483505,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001045,04/13/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3009658,3006570040,3461 +BK,POINT (-73.9989856396858 40.65974544008141),12279,Free,LinkNYC - Citybridge,bk-07-141113,776 4 AVENUE,40.6597454401,-73.9989856397,984531.432496,179639.443921,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001046,04/13/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3009654,3006570040,3462 +BK,POINT (-74.00244600021713 40.656011000066755),12280,Free,LinkNYC - Citybridge,bk-07-125841,875 4 AVENUE,40.6560110001,-74.0024460002,983571.323524,178278.891196,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001048,04/13/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,3010083,3006800050,3463 +BK,POINT (-74.00525819000443 40.653711109678554),12281,Free,LinkNYC - Citybridge,bk-07-125846,968 4 AVENUE,40.6537111097,-74.00525819,982790.992407,177441.011638,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001049,06/09/2017 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,84,3008400,3010388,3007000030,3464 +BK,POINT (-73.99225899978869 40.66258799989292),12282,Free,LinkNYC - Citybridge,bk-07-125904,650 5TH AVE,40.6625879999,-73.9922589998,986397.635457,180675.161337,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001059,02/06/2018 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,38,11215,307,143,3014300,3345653,3006340050,3465 +BK,POINT (-73.96286902947668 40.67369200017009),12283,Free,LinkNYC - Citybridge,bk-08-132895,773 WASHINGTON AVE,40.6736920002,-73.9628690295,994549.768759,184722.751011,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001076,03/08/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11238,308,215,3021500,3029426,3011740000,3466 +BK,POINT (-73.96058099967874 40.6608519997626),12284,Free,LinkNYC - Citybridge,bk-09-126569,535 FLATBUSH AVE,40.6608519998,-73.9605809997,995186.55095,180045.053674,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001078,03/07/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,798,3079801,3114678,3050280010,3467 +BK,POINT (-73.96042600025804 40.65891100009428),12285,Free,LinkNYC - Citybridge,bk-09-126559,597 FLATBUSH AVE,40.6589110001,-73.9604260003,995229.874026,179337.9127,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001080,05/11/2018 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,798,3079801,3115044,3050340000,3468 +BK,POINT (-73.9465128704241 40.65102675973051),12286,Free,LinkNYC - Citybridge,bk-17-126297,3301 CHURCH AVE,40.6510267597,-73.9465128704,999091.849241,176467.516209,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001087,10/30/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11203,317,818,3081800,3108643,3048700040,3469 +BK,POINT (-73.94396930036744 40.65104681982667),12287,Free,LinkNYC - Citybridge,bk-17-126233,3524 CHURCH AVENUE,40.6510468198,-73.9439693004,999797.64573,176475.265866,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001089,10/30/2017 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,45,11203,317,856,3085600,3109473,3048890010,3470 +BK,POINT (-73.94016599955042 40.65134099967282),12288,Free,LinkNYC - Citybridge,bk-17-126292,3923 CHURCH AVE,40.6513409997,-73.9401659996,1000852.92905,176583.141634,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001091,07/24/2018 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,41,11203,317,814,3081400,3108908,3048760030,3471 +QU,POINT (-73.83628040097025 40.697562874862825),12289,Free,LinkNYC - Citybridge,qu-09-124784,112-01 JAMAICA AVENUE,40.6975628749,-73.836280401,1029647.93905,193459.846398,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001108,07/31/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,130,4013000,4192681,4092260030,3472 +QU,POINT (-73.83383438994467 40.69889972044048),12290,Free,LinkNYC - Citybridge,qu-09-128721,115-09 JAMAICA AVE,40.6988997204,-73.8338343899,1030325.2707,193948.175146,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001109,06/26/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,132,4013200,4192728,4092290030,3473 +QU,POINT (-73.83160898983768 40.69975447042603),12291,Free,LinkNYC - Citybridge,qu-09-135034,118-04 JAMAICA AVE,40.6997544704,-73.8316089898,1030941.74191,194260.763759,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001111,09/25/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,122,4012200,4195911,4093280000,3474 +QU,POINT (-73.83109766979497 40.6998949496857),12292,Free,LinkNYC - Citybridge,qu-09-127841,118-18 JAMAICA AVE,40.6998949497,-73.8310976698,1031083.42273,194312.217397,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001112,06/26/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,122,4012200,4195916,4093280010,3475 +QU,POINT (-73.83093613032938 40.699841120240215),12293,Free,LinkNYC - Citybridge,qu-09-124790,87-10 LEFFERTS BOULEVARD,40.6998411202,-73.8309361303,1031128.25236,194292.692173,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001113,06/06/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,122,4012200,4195916,4093280010,3476 +QU,POINT (-73.8309137005354 40.700158649867845),12294,Free,LinkNYC - Citybridge,qu-09-124777,86-43 LEFFERTS BOULEVARD,40.7001586499,-73.8309137005,1031134.24841,194408.389448,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001114,06/06/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,144,4014400,4193694,4092730080,3477 +QU,POINT (-73.8265510207616 40.70086444739923),12295,Free,LinkNYC - Citybridge,qu-09-115253,123-23 JAMAICA AVE,40.7008644474,-73.8265510208,1032343.42152,194667.897131,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001115,06/06/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,142,4014201,4193811,4092770080,3478 +QU,POINT (-73.82620488023721 40.700926429918816),12296,Free,LinkNYC - Citybridge,qu-09-108790,124-05 JAMAICA AVENUE,40.7009264299,-73.8262048802,1032439.35341,194690.669396,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001116,06/06/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,29,11418,409,142,4014201,4193857,4092780080,3479 +QU,POINT (-73.82980897027763 40.71316696989566),12297,Free,LinkNYC - Citybridge,qu-09-128371,80-55 KEW GARDENS ROAD,40.7131669699,-73.8298089703,1031431.35969,199148.295651,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001122,07/29/2016 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,409,216,4021600,4080149,4033580000,3480 +QU,POINT (-73.83626199974883 40.717664000111654),12298,Free,LinkNYC - Citybridge,qu-06-124182,112-28 QUEENS BOULEVARD,40.7176640001,-73.8362619997,1029639.35245,200783.288116,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001123,07/29/2016 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4449594,4033397500,3481 +QU,POINT (-73.83974099974645 40.71929300021992),12299,Free,LinkNYC - Citybridge,qu-06-124180,110-44 QUEENS BOULEVARD,40.7192930002,-73.8397409997,1028673.8639,201374.998218,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001125,07/29/2016 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076901,4078798,4032920020,3482 +QU,POINT (-73.84488370976291 40.72152582000919),12300,Free,LinkNYC - Citybridge,qu-06-124194,107-40 QUEENS BOULEVARD,40.72152582,-73.8448837098,1027246.86347,202185.91556,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001129,07/10/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,711,4071100,4312083,4032397500,3483 +QU,POINT (-73.8521969999552 40.7260820003848),12301,Free,LinkNYC - Citybridge,qu-06-128370,101-20 QUEENS BOULEVARD,40.7260820004,-73.852197,1025216.88525,203842.365331,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001130,08/16/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,713,4071305,4075147,4031710030,3484 +QU,POINT (-73.85251864083057 40.726241268220726),12302,Free,LinkNYC - Citybridge,qu-06-124204,101-10 QUEENS BLVD,40.7262412682,-73.8525186408,1025127.63772,203900.241199,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001131,08/09/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,713,4071305,4075147,4031710030,3485 +QU,POINT (-73.85807600056808 40.72829899994464),12303,Free,LinkNYC - Citybridge,qu-06-124200,98-04 QUEENS BOULEVARD,40.7282989999,-73.8580760006,1023586.08241,204647.39128,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001134,11/30/2016 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11374,406,713,4071306,4072158,4030860010,3486 +BK,POINT (-73.95052895349043 40.706822167041224),11255,Free,LinkNYC - Citybridge,bk-01-108703,213 UNION AVENUE,40.706822167,-73.9505289535,997965.968291,196794.73146,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010434,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,527,3052700,3063527,3024520020,3885 +QU,POINT (-73.84522599943166 40.69522500017714),11256,Free,LinkNYC - Citybridge,qu-09-108791,102-01 JAMAICA AVENUE,40.6952250002,-73.8452259994,1027168.91448,192603.581378,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010440,07/07/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,26,4002600,4457303,4091870000,3886 +BK,POINT (-73.94290799999709 40.70141899962734),11257,Free,LinkNYC - Citybridge,bk-01-108949,709 BROADWAY,40.7014189996,-73.942908,1000080.17896,194827.481458,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010447,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3331361,3031260010,3887 +BK,POINT (-73.94996349009598 40.705370959930896),11258,Free,LinkNYC - Citybridge,bk-01-108952,511 BROADWAY,40.7053709599,-73.9499634901,998123.046389,196266.102268,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010448,02/27/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,511,3051100,3325852,3030580100,3888 +BK,POINT (-73.95419488042666 40.70720786035977),11259,Free,LinkNYC - Citybridge,bk-01-109252,395 BROADWAY,40.7072078604,-73.9541948804,996949.507726,196934.698372,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010455,02/27/2018 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,527,3052700,3335978,3024630030,3889 +BX,POINT (-73.91526202014569 40.81792618965018),11260,Free,LinkNYC - Citybridge,bx-01-109413,2939 3 AVENUE,40.8179261897,-73.9152620201,1007704.65157,237281.056656,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010460,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2001360,2023740090,3890 +QU,POINT (-73.93059917962454 40.76453793002009),11261,Free,LinkNYC - Citybridge,qu-01-142694,21-34 BROADWAY,40.76453793,-73.9305991796,1003474.88608,217826.144122,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010501,05/18/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,45,4004500,4006399,4005550030,3891 +QU,POINT (-73.92485554981363 40.761645780213286),11262,Free,LinkNYC - Citybridge,qu-01-130522,31-14 BROADWAY,40.7616457802,-73.9248555498,1005066.84615,216773.75187,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010558,08/09/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,59,4005900,4008290,4006110140,3892 +BK,POINT (-73.95080928042809 40.667346130427035),11263,Free,LinkNYC - Citybridge,bk-09-127716,900 NOSTRAND AVENUE,40.6673461304,-73.9508092804,997896.323417,182412.419018,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010567,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,321,3032100,3348092,3012890030,3893 +MN,POINT (-73.97246279253326 40.785773875787264),11264,Free,LinkNYC - Citybridge,mn-07-134114,521 COLUMBUS AVENUE,40.7857738758,-73.9724627925,991875.715708,225556.694934,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010610,04/30/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1031349,1011990000,3894 +MN,POINT (-74.00431271045252 40.752804219598396),11265,Free,LinkNYC - Citybridge,mn-04-140358,311 11 AVENUE,40.7528042196,-74.0043127105,983055.115239,213543.583789,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010615,09/21/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1012273,1006750040,3895 +MN,POINT (-74.00475580985515 40.752198230295996),11266,Free,LinkNYC - Citybridge,mn-04-140298,281 11 AVENUE,40.7521982303,-74.0047558099,982932.337597,213322.80864,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010616,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1080275,1006740000,3896 +MN,POINT (-74.00491216982613 40.75196912968135),11267,Free,LinkNYC - Citybridge,mn-04-140359,279 11 AVENUE,40.7519691297,-74.0049121698,982889.01124,213239.342272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010617,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1079184,1006730000,3897 +MN,POINT (-74.00514590013532 40.751233919557876),11268,Free,LinkNYC - Citybridge,mn-04-143655,260 11 AVENUE,40.7512339196,-74.0051459001,982824.237092,212971.485196,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010618,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1012389,1006980000,3898 +MN,POINT (-73.97641054003611 40.788705099665734),11269,Free,LinkNYC - Citybridge,mn-07-134318,2373 BROADWAY,40.7887050997,-73.97641054,990782.201819,226624.321079,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010634,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1076251,1012347500,3899 +MN,POINT (-73.97518370976917 40.78253997011095),11270,Free,LinkNYC - Citybridge,mn-07-134281,410 COLUMBUS AVENUE,40.7825399701,-73.9751837098,991122.56203,224378.247816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010636,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,165,1016500,1031764,1012107500,3900 +MN,POINT (-73.97381614045517 40.78442334019998),11271,Free,LinkNYC - Citybridge,mn-07-134272,472 COLUMBUS AVENUE,40.7844233402,-73.9738161405,991501.088176,225064.533845,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010637,04/30/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1032072,1012130030,3901 +MN,POINT (-74.00581554988888 40.75074558029807),11272,Free,LinkNYC - Citybridge,mn-04-140360,241 11 AVENUE,40.7507455803,-74.0058155499,982638.686938,212793.579056,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010646,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,99,1009900,1075683,1006700070,3902 +MN,POINT (-73.97544550947347 40.745595960352276),11273,Free,LinkNYC - Citybridge,mn-06-138318,643 2 AVE,40.7455959604,-73.9754455095,991053.832837,210918.307216,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010664,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020188,1009160030,3903 +MN,POINT (-73.98324817965671 40.744259220150774),11274,Free,LinkNYC - Citybridge,mn-05-136186,435 PARK AVENUE SOUTH,40.7442592202,-73.9832481797,988891.874891,210430.780304,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010673,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018294,1008850090,3904 +MN,POINT (-73.97298134949952 40.79030079042132),11275,Free,LinkNYC - Citybridge,mn-07-121103,621 AMSTERDAM AVENUE,40.7903007904,-73.9729813495,991731.606088,227205.960336,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010675,05/31/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,177,1017700,1032489,1012210000,3905 +MN,POINT (-73.96770405049121 40.79280441032972),11276,Free,LinkNYC - Citybridge,mn-07-120603,730 COLUMBUS AVE,40.7928044103,-73.9677040505,993192.581512,228118.610085,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010681,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,181,1018100,1082743,1012260030,3906 +MN,POINT (-73.97262870952585 40.78568184986845),11277,Free,LinkNYC - Citybridge,mn-07-121267,517 COLUMBUS AVENUE,40.7856818499,-73.9726287095,991829.779776,225523.15235,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010683,06/15/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1031339,1011987500,3907 +MN,POINT (-73.98581619003521 40.7464256102358),11278,Free,LinkNYC - Citybridge,mn-05-121624,2 EAST 31 STREET,40.7464256102,-73.98581619,988180.159779,211219.939815,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010684,06/05/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1016951,1008600000,3908 +MN,POINT (-73.97899987015083 40.78240982007845),11279,Free,LinkNYC - Citybridge,mn-07-121208,376 AMSTERDAM AVE,40.7824098201,-73.9789998702,990065.735404,224330.553357,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010696,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,163,1016300,1030888,1011697500,3909 +MN,POINT (-74.00004799968534 40.718197760419415),11280,Free,LinkNYC - Citybridge,mn-02-122330,241 CANAL STREET,40.7181977604,-74.0000479997,984236.69424,200935.332103,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010708,05/19/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,45,1004500,1002675,1002080020,3910 +MN,POINT (-73.99248961031192 40.714508059585626),11281,Free,LinkNYC - Citybridge,mn-03-122246,2 ALLEN STREET,40.7145080596,-73.9924896103,986332.033882,199591.150736,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010713,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,16,1001600,1088837,1002947500,3911 +MN,POINT (-73.96223546985252 40.763690600001304),11282,Free,LinkNYC - Citybridge,mn-08-121759,1221 2 AVENUE,40.7636906,-73.9622354699,994711.376047,217512.073228,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010715,03/20/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043864,1014180020,3912 +MN,POINT (-74.00023841040449 40.73288432966472),11283,Free,LinkNYC - Citybridge,mn-02-122264,375 6 AVENUE,40.7328843297,-74.0002384104,984183.925973,206286.10421,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010737,05/16/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,71,1007100,1010249,1005920070,3913 +MN,POINT (-73.97424890008597 40.78382537958707),11284,Free,LinkNYC - Citybridge,mn-07-121275,454 COLUMBUS AVENUE,40.7838253796,-73.9742489001,991381.308232,224846.640908,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010741,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,165,1016500,1032052,1012127500,3914 +MN,POINT (-73.95536174953659 40.768373930443595),11285,Free,LinkNYC - Citybridge,mn-08-120842,400 EAST 73 STREET,40.7683739304,-73.9553617495,996614.636348,219219.260758,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010745,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,124,1012400,1045862,1014677500,3915 +MN,POINT (-74.0066285504429 40.73025768959829),11286,Free,LinkNYC - Citybridge,mn-02-123600,1 ST LUKES PLACE,40.7302576896,-74.0066285504,982412.864227,205329.206517,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010750,01/26/2017 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1009773,1005830000,3916 +MN,POINT (-73.96782908021702 40.756174150356536),11287,Free,LinkNYC - Citybridge,mn-06-121789,252 EAST 52 STREET,40.7561741504,-73.9678290802,993162.86274,214772.966173,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010754,02/04/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038476,1013250030,3917 +MN,POINT (-73.97789516002966 40.7422341101186),11288,Free,LinkNYC - Citybridge,mn-06-121442,539 2 AVENUE,40.7422341101,-73.97789516,990375.365362,209693.297199,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010755,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1019928,1009107500,3918 +QU,POINT (-73.77712899974424 40.730423000159455),11290,Limited Free,SPECTRUM,Cunningham Park,Ball field on Union Turn Pike between 193rd and 194th St,40.7304230002,-73.7771289997,1046019.58806,205467.944101,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN41,Fresh Meadows-Utopia,23,11366,408,1333,4133300,0,0,819 +BX,POINT (-73.89903700003245 40.86472999974724),11291,Limited Free,ALTICEUSA,St. James Park,E WING CORRIDOR DROP CEILING,40.8647299997,-73.899037,1012175.92379,254338.186911,Indoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,0,2031760001,909 +BK,POINT (-73.98578799978623 40.69335000007956),11292,Free,Downtown Brooklyn,,2 Metrotech Center,40.6933500001,-73.9857879998,988191.108248,191882.86694,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3255603,3001480007,996 +BK,POINT (-73.98248800017888 40.691890000164314),11293,Free,Downtown Brooklyn,,286 Flatbush Ave. Extension (Pole),40.6918900002,-73.9824880002,989106.332467,191351.11177,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,0,1006 +BK,POINT (-73.98834699960128 40.69363599965358),11294,Free,Downtown Brooklyn,,333 Adams St.,40.6936359997,-73.9883469996,987481.462029,191986.960236,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3391417,3001400160,1013 +BK,POINT (-73.97854147545209 40.68345883249322),11295,Free,BPL,Pacific - Brooklyn Public Library,25 4 AVENUE,40.6834588325,-73.9785414755,990201.513676,188279.634974,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,12901,3012901,3018376,3009280006,328 +MN,POINT (-73.96476206030589 40.80609081563951),11296,Free,NYPL,Morningside Heights,2900 BROADWAY,40.8060908156,-73.9647620603,994005.256068,232959.625338,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1057018,1018857501,343 +SI,POINT (-74.1011372893581 40.59039133599787),11297,Free,NYPL,Dongan Hills,1617 RICHMOND ROAD,40.590391336,-74.1011372894,956160.468897,154388.115158,Library,,Staten Island,NYPL,,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI24,Todt Hill-Emerson Hill-Heartland Village-Lighthouse Hill,50,10304,502,181,5018100,5022895,5008830008,358 +BK,POINT (-73.95824218248399 40.651925081044595),11298,Free,BPL,Flatbush - Brooklyn Public Library,22 LINDEN BOULEVARD,40.651925081,-73.9582421825,995836.99125,176793.029994,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11226,314,79602,3079602,3116706,3050860015,373 +QU,POINT (-73.76010878800834 40.69252805320455),11299,Free,QPL,St. Albans,191-05 LINDEN BOULEVARD,40.6925280532,-73.760108788,1050774.60578,191674.179037,Library,,Saint Albans,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11412,412,528,4052800,4238275,4110620024,440 +BX,POINT (-73.92353961288174 40.837958911670015),11300,Free,NYPL,High Bridge,78 WEST 168 STREET,40.8379589117,-73.9235396129,1005407.12401,244577.600133,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX26,Highbridge,16,10452,204,199,2019900,2003163,2025100027,457 +MN,POINT (-74.00509999997382 40.74739999995235),11307,Free,AT&T,The High Line,Near W 23rd St,40.7474,-74.0051,982836.873221,211574.664171,Outdoor,,New York,attwifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,0,1006940040,74 +MN,POINT (-74.00504350707726 40.74412756086886),11308,Free,Chelsea,,18th between 9th and 10th,40.7441275609,-74.0050435071,982852.457836,210382.409009,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,0,0,82 +BX,POINT (-73.82299200001135 40.84710000015549),11309,Limited Free,ALTICEUSA,Pelham Bay Park,C/O MIDDLETOWN RD /ROBERTSON PL,40.8471000002,-73.822992,1033222.59496,247948.287618,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,874 +BK,POINT (-73.88930464858304 40.63447460519308),11310,Free,BPL,Jamaica Bay - Brooklyn Public Library,9727 SEAVIEW AVENUE,40.6344746052,-73.8893046486,1014973.85816,170451.996744,Library,,Brooklyn,BPLUNWIRED,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK50,Canarsie,46,11236,318,1022,3102200,3234514,3083000001,353 +MN,POINT (-73.99648986636721 40.71333307050747),11311,Free,NYPL,Chatham Square,33 EAST BROADWAY,40.7133330705,-73.9964898664,985223.098108,199162.996737,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,8,1000800,1003425,1002800044,514 +MN,POINT (-73.9436709996017 40.8105319998943),11312,Free,Harlem,,pole 58: LeWS1N129,40.8105319999,-73.9436709996,999843.055088,234580.757594,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,755 +MN,POINT (-73.99797999992514 40.710249999883835),11313,Limited Free,SPECTRUM,Alfred E. Smith Playground,CRC Room,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,13 +BK,POINT (-73.98197499972373 40.68933399981078),11314,Free,Downtown Brooklyn,,573 Fulton St. (Pole),40.6893339998,-73.9819749997,989248.786578,190419.914814,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,33,3003300,3000357,3001490022,1046 +MN,POINT (-73.99799100021443 40.73025500014105),11315,Limited Free,SPECTRUM,Washington Square Park,W Area off MacDougal St,40.7302550001,-73.9979910002,984806.804321,205328.16354,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10011,102,65,1006500,0,0,1183 +BX,POINT (-73.89377000028881 40.8369719995653),11316,Limited Free,ALTICEUSA,Crotona Park,"INSIDE PARK, WEST OF CHARLOTTE ST (BESIDE FLAG POLE)",40.8369719996,-73.8937700003,1013645.01666,244226.621505,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1270 +BX,POINT (-73.89409399983678 40.842046000192916),11317,Limited Free,ALTICEUSA,Crotona Park,CROTONA PARK-CROTONA AV 1/P/S/O CROTONA PARK NORTH,40.8420460002,-73.8940939998,1013553.12741,246075.159474,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1292 +BK,POINT (-73.95020000011534 40.65665199983371),11318,Free,Transit Wireless,"Winthrop St (2,5)","Winthrop St (2,5)",40.6566519998,-73.9502000001,998067.562904,178516.343477,Subway Station,SN 355,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,804,3080400,0,0,1747 +BX,POINT (-73.92915799977763 40.82755199982687),11319,Limited Free,ALTICEUSA,Macombs Dam Park,SPEAKER POLE EAST OF TRACK AND FIELD ( SOUTH ),40.8275519998,-73.9291579998,1003855.54378,240784.672024,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,0,2024990001,229 +BX,POINT (-73.82395199987764 40.846606000353646),11320,Limited Free,ALTICEUSA,Pelham Bay Park,C/O MIDDLETOWN RD /DWIGHT PL,40.8466060004,-73.8239519999,1032957.355,247767.769934,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX10,Pelham Bay-Country Club-City Island,13,10465,210,27401,2027401,0,0,873 +MN,POINT (-73.93935699958523 40.812680999589254),11321,Limited Free,SPECTRUM,Hansborough Recreation Center,5th Floor Roof Top,40.8126809996,-73.9393569996,1001036.71904,235364.511932,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10037,110,212,1021200,0,0,927 +BX,POINT (-73.90277254280693 40.90372277707978),11322,Free,NYPL,Riverdale,5540 MOSHOLU AVENUE,40.9037227771,-73.9027725428,1011126.92097,268543.647017,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX22,North Riverdale-Fieldston-Riverdale,11,10471,208,337,2033700,2084790,2058481729,335 +BX,POINT (-73.90931635032427 40.85742189422779),11323,Free,NYPL,Francis Martin,2150 UNIVERSITY AVENUE,40.8574218942,-73.9093163503,1009335.45802,251672.452413,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,251,2025100,2014579,2032110005,379 +BX,POINT (-73.9175775272136 40.84949408063886),11324,Free,NYPL,Sedgwick,1701 MARTIN LUTHER KING JR BOULEVARD,40.8494940806,-73.9175775272,1007052.91993,248781.790216,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,21501,2021501,2100281,2028780224,453 +QU,POINT (-73.87675876636003 40.738581457427536),11325,Free,QPL,Elmhurst,86-01 BROADWAY,40.7385814574,-73.8767587664,1018402.64395,208385.771927,Library,,Elmhurst,QBPL_WIRELESS,,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,473,4047300,4590789,4018370001,507 +MN,POINT (-73.94702900013144 40.810975000358454),11326,Free,Harlem,,pole 59: 7avNWC128,40.8109750004,-73.9470290001,998913.392249,234741.578467,Outdoor,,New York,Harlem Wi-Fi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,224,1022400,0,0,579 +BK,POINT (-73.9873314005849 40.695037899730565),11327,Free,City Tech,0,300 Jay Street,40.6950378997,-73.9873314006,987763.021177,192497.75285,Outdoor,,Brooklyn,DowntownBrooklynWiFi_Fon,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3335892,3001280001,637 +QU,POINT (-73.73771800016756 40.73915399997653),11328,Limited Free,SPECTRUM,Alley Pond Park,Tennis Courts and Ball Field,40.739154,-73.7377180002,1056932.94944,208679.155526,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN43,Bellerose,23,11426,413,1567,4156700,0,4078600020,17 +QU,POINT (-73.81121699961574 40.58448500041206),11329,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 86 - Comfort Station and Beach,40.5844850004,-73.8112169996,1036686.56506,152276.576402,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN12,Hammels-Arverne-Edgemere,32,11693,414,94203,4094203,0,4161500100,1102 +BK,POINT (-73.98662000054338 40.69122400037943),11330,Free,Downtown Brooklyn,,469 Fulton St.,40.6912240004,-73.9866200005,987960.50569,191108.266455,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000376,3001510001,1037 +MN,POINT (-74.00546199984322 40.72956399998591),11331,Limited Free,SPECTRUM,Tony Dapolito Recreation Center,Lobby area,40.729564,-74.0054619998,982736.163777,205076.451445,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1088894,1005820050,1174 +BX,POINT (-73.89039499958902 40.83718400038765),11332,Limited Free,ALTICEUSA,Crotona Park,"SOUTH OF PLAYGROUND INSIDE PARK, CROTONA PK EAST",40.8371840004,-73.8903949996,1014578.81958,244305.011768,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1272 +BX,POINT (-73.83867100051853 40.87293599992657),11333,Limited Free,ALTICEUSA,Haffen Park,HAMMERSLEY AV 3/P/W/O ELY AV,40.8729359999,-73.8386710005,1028867.37335,257352.947286,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,0,0,1313 +QU,POINT (-73.87470457984527 40.73454516043997),12304,Free,LinkNYC - Citybridge,qu-04-124921,89-02 QUEENS BOULEVARD,40.7345451604,-73.8747045798,1018974.0037,206916.030772,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001140,12/29/2016 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064743,4028550010,3487 +QU,POINT (-73.87545999979885 40.734923000415634),12305,Free,LinkNYC - Citybridge,qu-04-142877,88-02 QUEENS BOULEVARD,40.7349230004,-73.8754599998,1018764.45327,207053.391061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001141,11/08/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064725,4028540010,3488 +QU,POINT (-73.88093967992651 40.737205959906326),12306,Free,LinkNYC - Citybridge,qu-04-142872,82-10 QUEENS BLVD,40.7372059599,-73.8809396799,1017244.70992,207883.032775,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001144,07/10/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,479,4047900,4437425,4024750010,3489 +QU,POINT (-73.88625300031568 40.73820799958222),12307,Free,LinkNYC - Citybridge,qu-04-132440,77-06 QUEENS BOULEVARD,40.7382079996,-73.8862530003,1015771.7775,208246.150487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001147,03/20/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,479,4047900,4056456,4024520000,3490 +QU,POINT (-73.90465599968077 40.741288000122964),12308,Free,LinkNYC - Citybridge,qu-02-124939,59-40 QUEENS BOULEVARD,40.7412880001,-73.9046559997,1010670.68534,209362.205013,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001149,01/05/2017 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,245,4024500,4432196,4023140000,3491 +QU,POINT (-73.91854000045798 40.742911999949214),12309,Free,LinkNYC - Citybridge,qu-02-124947,46-02 QUEENS BOULEVARD,40.7429119999,-73.9185400005,1006822.75406,209949.996816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001152,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11377,402,235,4023500,4533708,4001520010,3492 +QU,POINT (-73.9206815000409 40.74306270964942),12310,Free,LinkNYC - Citybridge,qu-02-128387,45-02 44 STREET,40.7430627096,-73.9206815,1006229.29002,210004.360553,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001154,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,183,4018300,4001993,4001680030,3493 +QU,POINT (-73.92125700055064 40.74322100039021),12311,Free,LinkNYC - Citybridge,qu-02-142124,43-02 QUEENS BOULEVARD,40.7432210004,-73.9212570006,1006069.76606,210061.887013,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001155,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,183,4018300,4001992,4001680030,3494 +QU,POINT (-73.92645500028844 40.74382300041834),12312,Free,LinkNYC - Citybridge,qu-02-143422,38-18 QUEENS BOULEVARD,40.7438230004,-73.9264550003,1004629.2112,210279.962692,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001159,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003170,4002230040,3495 +QU,POINT (-73.92692611043468 40.7438774099545),12313,Free,LinkNYC - Citybridge,qu-02-124955,38-02 QUEENS BLVD,40.74387741,-73.9269261104,1004498.65076,210299.676563,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001160,02/21/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003169,4002230020,3496 +QU,POINT (-73.92777199980257 40.743975999749644),12314,Free,LinkNYC - Citybridge,qu-02-142875,37-02 QUEENS BLVD,40.7439759997,-73.9277719998,1004264.22669,210335.401557,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001161,07/18/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003178,4002240020,3497 +QU,POINT (-73.92982900050154 40.74415099988465),12315,Free,LinkNYC - Citybridge,qu-02-143797,45-01 35 STREET,40.7441509999,-73.9298290005,1003694.18518,210398.696378,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001194,02/07/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4436685,4002260000,3498 +QU,POINT (-73.93039899996451 40.74427800025954),12316,Free,LinkNYC - Citybridge,qu-02-102099,34-02 QUEENS BOULEVARD,40.7442780003,-73.930399,1003536.20321,210444.840643,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001195,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003435,4002460000,3499 +QU,POINT (-73.95161720015811 40.74318379037081),12317,Free,LinkNYC - Citybridge,qu-02-141148,10-93 JACKSON AVENUE,40.7431837904,-73.9516172002,997656.932164,210042.225635,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001290,03/24/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4448532,4000440020,3500 +BX,POINT (-73.8971929303723 40.867328839963),12318,Free,LinkNYC - Citybridge,bx-07-119749,2 EAST KINGSBRIDGE ROAD,40.86732884,-73.8971929304,1012684.87389,255285.638428,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001353,02/08/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,14,10468,207,401,2040100,2014134,2031910030,3501 +BX,POINT (-73.8976448799608 40.867370549900805),12319,Free,LinkNYC - Citybridge,bx-07-119760,2663 JEROME AVENUE,40.8673705499,-73.89764488,1012559.8538,255300.688595,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001354,07/19/2016 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,265,2026500,2014396,2032020040,3502 +QU,POINT (-73.92999199941687 40.75191000002969),12320,Free,LinkNYC - Citybridge,qu-01-136650,33-28 NORTHERN BOULEVARD,40.75191,-73.9299919994,1003646.75942,213225.512247,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001355,04/23/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4461879,4002140240,3503 +QU,POINT (-73.92749299969873 40.751953000329806),12321,Free,LinkNYC - Citybridge,qu-01-136651,36-02 NORTHERN BOULEVARD,40.7519530003,-73.9274929997,1004339.1314,213241.741873,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001356,04/09/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4003101,4002140020,3504 +QU,POINT (-73.91232033000135 40.753369870441325),12322,Free,LinkNYC - Citybridge,qu-01-140214,50-01 NORTHERN BOULEVARD,40.7533698704,-73.91232033,1008542.42483,213761.796936,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001357,10/18/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,163,4016300,4014093,4007480010,3505 +BX,POINT (-73.91584800054504 40.83944500009085),12323,Free,LinkNYC - Citybridge,bx-04-119157,96 EAST 170 STREET,40.8394450001,-73.9158480005,1007534.92619,245120.988482,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001363,09/15/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10452,204,221,2022102,2008083,2028420040,3506 +BX,POINT (-73.90507599971767 40.85302799983365),12324,Free,LinkNYC - Citybridge,bx-05-111577,111 EAST BURNSIDE AVENUE,40.8530279998,-73.9050759997,1010510.18369,250072.831925,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001364,06/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,241,2024100,2013846,2031690060,3507 +BX,POINT (-73.90109099969074 40.85775599960873),12325,Free,LinkNYC - Citybridge,bx-05-102420,126 EAST 183 STREET,40.8577559996,-73.9010909997,1011610.66574,251796.642126,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001365,06/29/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10453,205,237,2023704,2013867,2031710020,3508 +MN,POINT (-73.97539100020272 40.78942400026158),12326,Free,LinkNYC - Citybridge,mn-07-133629,611 Broadway,40.7894240003,-73.9753910002,991064.450926,226886.318915,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001481,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1080398,1012350040,3509 +MN,POINT (-73.9750410102316 40.78945726964027),12327,Free,LinkNYC - Citybridge,mn-07-121243,215 WEST 88 STREET,40.7894572696,-73.9750410102,991161.362806,226898.467513,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001482,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1087732,1012367500,3510 +MN,POINT (-73.97476700050667 40.790053000117446),12328,Free,LinkNYC - Citybridge,mn-07-133391,216 WEST 89 STREET,40.7900530001,-73.9747670005,991237.175974,227115.534336,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001484,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1033301,1012360040,3511 +MN,POINT (-73.97479299994858 40.79023499967885),12329,Free,LinkNYC - Citybridge,mn-07-133633,205 West 89st,40.7902349997,-73.9747929999,991229.957485,227181.840962,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001486,10/25/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1033308,1012370020,3512 +MN,POINT (-73.97446199983119 40.79069000016935),12330,Free,LinkNYC - Citybridge,mn-07-133632,210 West 90st,40.7906900002,-73.9744619998,991321.564913,227347.639843,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001487,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1033308,1012370020,3513 +MN,POINT (-73.97430228987083 40.79090128962715),12331,Free,LinkNYC - Citybridge,mn-07-121255,2440 BROADWAY,40.7909012896,-73.9743022899,991365.766596,227424.632799,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001488,06/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,179,1017900,1033556,1012387500,3514 +MN,POINT (-73.97480999954537 40.79081800005443),12332,Free,LinkNYC - Citybridge,mn-07-121295,2431 BROADWAY,40.7908180001,-73.9748099995,991225.189122,227394.246705,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001490,06/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1033386,1012377500,3515 +MN,POINT (-73.9738220004882 40.791400999817284),12333,Free,LinkNYC - Citybridge,mn-07-121254,215 WEST 91 STREET,40.7914009998,-73.9738220005,991498.705635,227606.733813,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001492,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033584,1012390020,3516 +MN,POINT (-73.97342499975282 40.79194300029116),12334,Free,LinkNYC - Citybridge,mn-07-121253,214 WEST 92 STREET,40.7919430003,-73.9734249998,991608.575494,227804.23637,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001495,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033598,1012390040,3517 +MN,POINT (-73.97376100003298 40.79225499977986),12335,Free,LinkNYC - Citybridge,mn-07-121298,2477 BROADWAY,40.7922549998,-73.973761,991515.503502,227917.8805,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001496,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033611,1012400010,3518 +MN,POINT (-73.97312472948121 40.792534470219536),12336,Free,LinkNYC - Citybridge,mn-07-133625,2498 BROADWAY,40.7925344702,-73.9731247295,991691.65374,228019.75464,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001497,09/21/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033616,1012407500,3519 +MN,POINT (-73.97343760963219 40.79269555039458),12337,Free,LinkNYC - Citybridge,mn-07-133635,250 West 93 Street,40.7926955504,-73.9734376096,991605.000698,228078.415284,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001498,03/15/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1087656,1012400050,3520 +MN,POINT (-73.97328857045879 40.792887080265295),12338,Free,LinkNYC - Citybridge,mn-07-134701,251 WEST 93 STREET,40.7928870803,-73.9732885705,991646.247663,228148.20878,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001499,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033644,1012410010,3521 +QU,POINT (-73.94891599975514 40.74221599986265),11357,Free,Transit Wireless,HUNTERS POINT,IRT-7-HUNTERSPOINT AVE,40.7422159999,-73.9489159998,998405.643593,209690.053767,Subway Station,SN 463,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,1,4000100,4000539,4000710001,1557 +MN,POINT (-73.9730434200201 40.79342580955749),12339,Free,LinkNYC - Citybridge,mn-07-107919,250 West 94 street,40.7934258096,-73.97304342,991714.068065,228344.507271,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001500,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033653,1012410050,3522 +MN,POINT (-73.97264857971705 40.79318086964382),12340,Free,LinkNYC - Citybridge,mn-07-133624,2518 BROADWAY,40.7931808696,-73.9726485797,991823.424146,228255.301085,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001501,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033652,1012410050,3523 +MN,POINT (-73.97203479043776 40.79382165962966),12341,Free,LinkNYC - Citybridge,mn-07-107918,230 WEST 95 STREET,40.7938216596,-73.9720347904,991993.303727,228488.816694,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001502,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033686,1012420040,3524 +MN,POINT (-73.977483090032 40.78689604036509),12342,Free,LinkNYC - Citybridge,mn-07-121247,2310 BROADWAY,40.7868960404,-73.97748309,990485.369407,225965.140639,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000995,05/04/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1032790,1012310050,3452 +MN,POINT (-73.9765510305783 40.7880016795894),12343,Free,LinkNYC - Citybridge,mn-07-107814,2350 BROADWAY,40.7880016796,-73.9765510306,990743.366923,226368.030581,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000997,08/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1033133,1012330020,3453 +BX,POINT (-73.92684699962489 40.819885999607486),12344,Free,LinkNYC - Citybridge,bx-04-140582,597 GRAND CONCOURSE,40.8198859996,-73.9268469996,1004497.44604,237992.195981,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001006,07/15/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2001075,2023480040,3454 +BK,POINT (-73.9921867902198 40.699341940030045),12345,Free,LinkNYC - Citybridge,bk-02-125681,60 HENRY STREET,40.69934194,-73.9921867902,986416.474658,194065.684753,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001009,02/13/2017 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,1,3000100,3001646,3002210020,3455 +BK,POINT (-73.99302856970723 40.69758777008719),12346,Free,LinkNYC - Citybridge,bk-02-125682,73 CLARK ST,40.6975877701,-73.9930285697,986183.113904,193426.568905,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001010,02/13/2017 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,5,3000501,3335928,3002310000,3456 +BK,POINT (-73.99126379002671 40.69607044016146),12347,Free,LinkNYC - Citybridge,bk-02-126247,280 CADMAN PLAZA WEST,40.6960704402,-73.99126379,986672.526311,192873.804591,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001011,03/03/2017 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,5,3000502,3001939,3002390020,3457 +BK,POINT (-73.9863842700368 40.691233980132886),12348,Free,LinkNYC - Citybridge,bk-02-135003,156 LAWRENCE STREET,40.6912339801,-73.98638427,988025.877279,191111.912445,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001017,04/20/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000399,3001510040,3458 +BK,POINT (-73.98448100023258 40.69058800015147),12349,Free,LinkNYC - Citybridge,bk-02-134976,519 FULTON ST,40.6905880002,-73.9844810002,988553.728585,190876.650777,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-001032,03/07/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,3413889,3001457500,3459 +MN,POINT (-74.00019300045682 40.7188030001766),12350,Free,Transit Wireless,"Canal St (J,M,N,Q,R,Z,6)","Canal St (J,M,N,Q,R,Z,6)",40.7188030002,-74.0001930005,984196.499767,201155.839536,Subway Station,SN 410,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,45,1004500,0,0,1679 +BK,POINT (-73.95141800047489 40.71279200031271),12351,Free,Transit Wireless,Metropolitan Av (G)/Lorimer St (L),Metropolitan Av (G)/Lorimer St (L),40.7127920003,-73.9514180005,997718.271608,198969.583738,Subway Station,SN 285,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,513,3051300,0,0,1680 +BK,POINT (-73.95027500037848 40.714063000002824),12352,Free,Transit Wireless,Metropolitan Av (G)/Lorimer St (L),Metropolitan Av (G)/Lorimer St (L),40.714063,-73.9502750004,998034.879899,199432.825266,Subway Station,SN 121,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,34,11211,301,513,3051300,0,0,1681 +MN,POINT (-74.0133420002474 40.70721999991021),12353,Free,Transit Wireless,Rector St (R),Rector St (R),40.7072199999,-74.0133420002,980550.919788,196936.082556,Subway Station,SN 22,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10006,101,13,1001300,0,0,1682 +MN,POINT (-74.00340100051008 40.71324300021785),12354,Free,Transit Wireless,"Chambers St (J,M,Z)/Bklyn Bridge-City Hall (4,5,6)","Chambers St (J,M,Z)/Bklyn Bridge-City Hall (4,5,6)",40.7132430002,-74.0034010005,983307.155089,199130.180202,Subway Station,SN 105,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10007,101,29,1002900,1001394,1001210001,1683 +MN,POINT (-73.9946590000366 40.72591500001491),12355,Free,Transit Wireless,"Broadway-Lafayette St (B,D,F)/Bleecker St (6)","Broadway-Lafayette St (B,D,F)/Bleecker St (6)",40.725915,-73.994659,985730.381214,203747.005285,Subway Station,SN 408,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10012,102,5502,1005502,0,0,1684 +MN,POINT (-74.0118619997843 40.70755699996538),12356,Free,Transit Wireless,"Wall St (4,5)","Wall St (4,5)",40.707557,-74.0118619998,980961.26772,197058.802783,Subway Station,SN 413,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,0,0,1685 +MN,POINT (-74.01105599991739 40.70647600020548),12357,Free,Transit Wireless,"Broad St (J,Z)","Broad St (J,Z)",40.7064760002,-74.0110559999,981184.680988,196664.932835,Subway Station,SN 107,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,0,0,1686 +MN,POINT (-73.9962039999442 40.72529699963864),12358,Free,Transit Wireless,"Broadway-Lafayette St (B,D,F)/Bleecker St (6)","Broadway-Lafayette St (B,D,F)/Bleecker St (6)",40.7252969996,-73.9962039999,985302.158645,203521.826274,Subway Station,SN 230,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10012,102,5502,1005502,0,0,1687 +MN,POINT (-74.00413100058857 40.71306500033367),12359,Free,Transit Wireless,"Chambers St (J,M,Z)/Bklyn Bridge-City Hall (4,5,6)","Chambers St (J,M,Z)/Bklyn Bridge-City Hall (4,5,6)",40.7130650003,-74.0041310006,983104.777213,199065.33814,Subway Station,SN 411,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,31,1003100,0,0,1688 +BK,POINT (-73.9917769994775 40.69409999959718),12360,Free,Transit Wireless,"Court St (M,R)/Borough Hall (2,3,4,5)","Court St (M,R)/Borough Hall (2,3,4,5)",40.6940999996,-73.9917769995,986530.282173,192155.901171,Subway Station,SN 24,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,0,0,1689 +BK,POINT (-73.98594199962953 40.69217999965909),12361,Free,Transit Wireless,"Lawrence St (M,R)","Lawrence St (M,R)",40.6921799997,-73.9859419996,988148.471194,191456.594499,Subway Station,SN 25,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,0,1690 +BK,POINT (-73.98182399953619 40.69063499978004),12362,Free,Transit Wireless,"DeKalb Av (B,M,Q,R)","DeKalb Av (B,M,Q,R)",40.6906349998,-73.9818239995,989290.564382,190893.915834,Subway Station,SN 26,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,31,3003100,0,0,1691 +BK,POINT (-73.9788099994621 40.68366599956909),12363,Free,Transit Wireless,"Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)","Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)",40.6836659996,-73.9788099995,990127.020386,188355.093812,Subway Station,SN 27,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,12901,3012901,0,0,1692 +BK,POINT (-73.98311000019537 40.677315999641046),12364,Free,Transit Wireless,"Union St (M,R)","Union St (M,R)",40.6773159996,-73.9831100002,988934.866603,186041.346471,Subway Station,SN 28,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,119,3011900,0,0,1693 +BK,POINT (-73.98830199968668 40.670847000033426),12365,Free,Transit Wireless,"4 Av (F)/9 St (M,R)","4 Av (F)/9 St (M,R)",40.670847,-73.9883019997,987495.0496,183684.270149,Subway Station,SN 29,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,137,3013700,0,0,1694 +BK,POINT (-74.00354899953585 40.65514400043072),12366,Free,Transit Wireless,"36 St (D,M,N,R)","36 St (D,M,N,R)",40.6551440004,-74.0035489995,983265.268362,177963.029623,Subway Station,SN 32,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,84,3008400,0,0,1695 +BK,POINT (-74.01000599961706 40.648938999804436),12367,Free,Transit Wireless,45 St (R),45 St (R),40.6489389998,-74.0100059996,981473.403179,175702.515115,Subway Station,SN 33,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11220,307,80,3008000,0,0,1696 +BK,POINT (-73.97689000054645 40.68446000032924),12368,Free,Transit Wireless,"Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)","Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)",40.6844600003,-73.9768900005,990659.453377,188644.505963,Subway Station,SN 40,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3348849,3020010001,1697 +BK,POINT (-73.97236700009603 40.67705000002904),12369,Free,Transit Wireless,"7 Av (B,Q)","7 Av (B,Q)",40.67705,-73.9723670001,991914.738596,185945.192464,Subway Station,SN 41,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,39,11217,306,161,3016100,0,0,1698 +BK,POINT (-73.94066999944853 40.71192599966602),12370,Free,Transit Wireless,Grand St (L),Grand St (L),40.7119259997,-73.9406699994,1000698.12752,198655.90884,Subway Station,SN 123,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,495,3049500,0,0,1699 +BK,POINT (-73.93314699990795 40.70615199999639),12371,Free,Transit Wireless,Morgan Av (L),Morgan Av (L),40.706152,-73.9331469999,1002785.34284,196553.769344,Subway Station,SN 125,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11206,301,453,3045300,0,0,1700 +BK,POINT (-73.92291299964486 40.70660700007828),12372,Free,Transit Wireless,Jefferson St (L),Jefferson St (L),40.7066070001,-73.9229129996,1005622.62621,196721.870714,Subway Station,SN 126,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,34,11237,304,447,3044700,0,0,1701 +BK,POINT (-73.9184250003311 40.70381100007617),12373,Free,Transit Wireless,DeKalb Av (L),DeKalb Av (L),40.7038110001,-73.9184250003,1006867.88717,195704.33141,Subway Station,SN 127,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,37,11237,304,443,3044300,0,0,1702 +BK,POINT (-73.91158599995103 40.69981399958485),12374,Free,Transit Wireless,"Myrtle-Wyckoff Avs (L,M)","Myrtle-Wyckoff Avs (L,M)",40.6998139996,-73.911586,1008765.57136,194249.945539,Subway Station,SN 128,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,37,11385,304,439,3043900,0,0,1703 +BK,POINT (-73.90408400043852 40.69560200004994),12375,Free,Transit Wireless,Halsey St (L),Halsey St (L),40.6956020001,-73.9040840004,1010847.41694,192717.578854,Subway Station,SN 129,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN20,Ridgewood,34,11385,405,555,4055500,0,0,1704 +BK,POINT (-73.90404600020287 40.68876400000513),12376,Free,Transit Wireless,Wilson Av (L),Wilson Av (L),40.688764,-73.9040460002,1010860.68332,190226.307589,Subway Station,SN 130,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK77,Bushwick North,37,11207,304,409,3040900,0,3034480001,1705 +BK,POINT (-73.90524900058415 40.68282899973849),12377,Free,Transit Wireless,Bushwick Av-Aberdeen St (L),Bushwick Av-Aberdeen St (L),40.6828289997,-73.9052490006,1010529.39723,188063.652466,Subway Station,SN 131,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,37,11207,304,405,3040500,0,0,1706 +BK,POINT (-73.99053099947139 40.699336999778744),12378,Free,Transit Wireless,"High St (A,C)","High St (A,C)",40.6993369998,-73.9905309995,986875.598411,194063.930163,Subway Station,SN 173,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,0,3000580050,1707 +MN,POINT (-73.97214300007442 40.781432999810434),11343,Free,Transit Wireless,"81st Street - Museum of Natural History - B, C",81st Street - Museum of Natural History,40.7814329998,-73.9721430001,991964.776881,223975.19416,Subway Station,SN 159,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10024,164,143,1014300,0,0,1543 +MN,POINT (-73.97621799977837 40.78864399983867),11344,Free,Transit Wireless,86th Street - 1,86th Street - Broadway,40.7886439998,-73.9762179998,990835.524547,226602.074733,Subway Station,SN 311,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,0,0,1544 +MN,POINT (-73.96891599968156 40.785868000028124),11345,Free,Transit Wireless,"86th Street - Central Park West - B, C",86th Street - Central Park West,40.785868,-73.9689159997,992857.89583,225591.316256,Subway Station,SN 158,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10024,164,143,1014300,0,0,1545 +MN,POINT (-73.96469400004874 40.79164400013818),11346,Free,Transit Wireless,"96th Street - Central Park West - B, C",96th Street - Central Park West,40.7916440001,-73.964694,994026.219281,227696.154237,Subway Station,SN 157,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10025,164,143,1014300,0,0,1546 +MN,POINT (-73.9723230003422 40.79391900031445),11347,Free,Transit Wireless,"96th Street - Broadway - 1, 2, 3",96th Street - Broadway,40.7939190003,-73.9723230003,991913.48991,228524.255928,Subway Station,SN 310,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,0,0,1547 +MN,POINT (-73.97604099993096 40.75143100028661),11348,Free,Transit Wireless,Grand Central - 7,Lexington Avenue and East 42 Street,40.7514310003,-73.9760409999,990888.246226,213044.154014,Subway Station,SN 465,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,106,80,1008000,0,0,1548 +MN,POINT (-73.97684799984894 40.751775999601136),11349,Free,Transit Wireless,"Grand Central - 4, 5, 6",Lexington Avenue and East 42 Street,40.7517759996,-73.9768479998,990664.620033,213169.788277,Subway Station,SN 402,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,105,92,1009200,0,0,1549 +MN,POINT (-73.9862289995322 40.755982999669584),11350,Free,Transit Wireless,Grand Central Shuttle - S,Times Square - 42nd Street,40.7559829997,-73.9862289995,988065.227922,214701.986984,Subway Station,SN 468,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,119,1011900,0,0,1550 +MN,POINT (-73.98769099943603 40.75547700018164),11351,Free,Transit Wireless,Times Square - 7,Times Square - 42nd Street,40.7554770002,-73.9876909994,987660.209703,214517.574624,Subway Station,SN 467,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,113,1011300,0,0,1551 +MN,POINT (-73.98675399962474 40.75467200028086),11352,Free,Transit Wireless,"Times Square - N, Q, R",Times Square - 42nd Street,40.7546720003,-73.9867539996,987919.849932,214224.324882,Subway Station,SN 11,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,0,0,1552 +MN,POINT (-73.98749500051885 40.75528999995681),11353,Free,Transit Wireless,"Times Square - 1, 2, 3",Times Square - 42nd Street,40.75529,-73.9874950005,987714.520946,214449.452056,Subway Station,SN 317,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,113,1011300,0,0,1553 +MN,POINT (-73.97918899978691 40.75276899992924),11354,Free,Transit Wireless,Times Square Shuttle - S,Times Square Shuttle – 42nd Street,40.7527689999,-73.9791889998,990015.923824,213531.407633,Subway Station,SN 469,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10017,105,94,1009400,0,0,1554 +QU,POINT (-73.94283600049665 40.7542029997431),11355,Free,Transit Wireless,21ST - L. I.CITY - QUEENSBRIDGE,IND-F-21ST ST - QUEENSBRIDGE,40.7542029997,-73.9428360005,1000087.59298,214058.34293,Subway Station,SN 221,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,0,0,1555 +QU,POINT (-73.95358099993649 40.742625999697964),11356,Free,Transit Wireless,VERNON - JACKSON AVENUE,IRT-7-VERNON BLVD-JACKSON AVE,40.7426259997,-73.9535809999,997112.868619,209838.710294,Subway Station,SN 464,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,0,0,1556 +MN,POINT (-73.98598400026387 40.76245600016045),11334,Free,Transit Wireless,"50th St. – 8th Avenue - C, E",50th Street - 8th Avenue,40.7624560002,-73.9859840003,988132.727131,217060.323475,Subway Station,SN 162,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,0,0,1528 +BX,POINT (-73.9184379997764 40.83377300016599),11335,Free,Transit Wireless,IND - 167th Street - Grand Concourse (D),167th Street - Grand Concourse,40.8337730002,-73.9184379998,1006820.19566,243053.791173,Subway Station,SN 218,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10452,204,197,2019700,0,0,1639 +BK,POINT (-73.97537499951413 40.6871190004085),11336,Free,Transit Wireless,Fulton St (G),Fulton St (G),40.6871190004,-73.9753749995,991079.359689,189613.371479,Subway Station,SN 292,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,33,3003300,0,0,1735 +MN,POINT (-73.98220899995806 40.77343999961989),11337,Free,Transit Wireless,66th Street – (Lincoln Center) - 1,66th St. – Broadway (Lincoln Center),40.7734399996,-73.982209,989177.668939,221062.348607,Subway Station,SN 314,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,0,0,1537 +MN,POINT (-73.98197000041148 40.77845299978545),11338,Free,Transit Wireless,"72nd St. – Broadway - 1, 2, 3",72nd Street - Broadway,40.7784529998,-73.9819700004,989243.490001,222888.766543,Subway Station,SN 313,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1089283,0,1538 +MN,POINT (-73.9764099997203 40.77559400007821),11339,Free,Transit Wireless,"72nd Street - Central Park West - B, C",72nd Street - Central Park West,40.7755940001,-73.9764099997,990783.637839,221847.502549,Subway Station,SN 160,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10023,164,143,1014300,0,0,1539 +MN,POINT (-73.97991700056134 40.78393399959032),11340,Free,Transit Wireless,79th Street - 1,79th Street - Broadway,40.7839339996,-73.9799170006,989811.61977,224885.804215,Subway Station,SN 312,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,0,0,1540 +MN,POINT (-73.98163699973716 40.76286200031624),11341,Free,Transit Wireless,"7th Avenue - B, D, E",7th Avenue - 53rd Street,40.7628620003,-73.9816369997,989336.906809,217208.465239,Subway Station,SN 277,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,0,0,1541 +MN,POINT (-74.0025779998766 40.73977699956971),11342,Free,Transit Wireless,8 Avenue - L,8 Avenue and West 14th Street,40.7397769996,-74.0025779999,983535.596561,208797.331471,Subway Station,SN 115,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,0,0,1542 +QU,POINT (-73.9459999996538 40.747846000392464),11358,Free,Transit Wireless,23RD - ELY AVENUE,IND-E-V-23RD ST - ELY AV,40.7478460004,-73.9459999997,999212.417898,211741.727157,Subway Station,SN 274,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,0,0,1558 +QU,POINT (-73.9438320005166 40.74655400013303),11359,Free,Transit Wireless,COURT SQ. - LONG ISLAND CITY,IND-G-LONG ISLAND CITY/COURT SQ,40.7465540001,-73.9438320005,999813.432772,211271.387874,Subway Station,SN 281,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,0,0,1559 +QU,POINT (-73.94972399965023 40.74406499992385),11360,Free,Transit Wireless,21ST STREET - VAN ALST (21st Street & Jackson Avenue),IND-G-21ST ST,40.7440649999,-73.9497239997,998181.355984,210363.573745,Subway Station,SN 282,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,0,0,1560 +QU,POINT (-73.89845299963214 40.749669000311854),11361,Free,Transit Wireless,65TH STREET,IND-E-G-R-V-65TH ST,40.7496690003,-73.8984529996,1012386.05231,212417.601133,Subway Station,SN 268,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,261,4026100,0,0,1561 +QU,POINT (-73.8692290003282 40.733105999869764),11362,Free,Transit Wireless,WOODHAVEN BLVD - QUEENS MALL,IND-E-G-R-V-WOODHAVEN BLVD,40.7331059999,-73.8692290003,1020492.27134,206393.917971,Subway Station,SN 264,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,683,4068300,0,0,1562 +QU,POINT (-73.91333300038114 40.756312000256685),11363,Free,Transit Wireless,46TH STREET,IND-E-G-R-V-46TH ST,40.7563120003,-73.9133330004,1008260.79514,214833.430619,Subway Station,SN 270,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,153,4015300,0,0,1563 +QU,POINT (-73.90600599979797 40.752884999686586),11364,Free,Transit Wireless,NORTHERN BOULEVARD,IND-E-G-R-V-NORTHERN BLVD,40.7528849997,-73.9060059998,1010292.05453,213586.957062,Subway Station,SN 269,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,255,4025500,0,0,1564 +QU,POINT (-73.88201699944139 40.74245399967165),11365,Free,Transit Wireless,ELMHURST AVENUE,IRT-7-90TH ST - ELMHURST AV,40.7424539997,-73.8820169994,1016943.58158,209794.654279,Subway Station,SN 452,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,271,4027100,0,0,1565 +QU,POINT (-73.82057399986839 40.709178999605555),11366,Free,Transit Wireless,VAN WYCK BLVD - BRIARWOOD,IND-E-F-BRIARWOOD / VAN WYCK BLVD,40.7091789996,-73.8205739999,1033994.50516,197700.469478,Subway Station,SN 258,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11435,409,216,4021600,0,0,1566 +QU,POINT (-73.84452100053021 40.72169099957379),11367,Free,Transit Wireless,71 AV - CONTINENTAL AVE - FOREST HILLS,334A IND NR 71 AV,40.7216909996,-73.8445210005,1027347.29634,202246.273707,Subway Station,SN 261,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,739,4073900,0,0,1567 +QU,POINT (-73.81070799966658 40.70545999974481),11368,Free,Transit Wireless,SUTPHIN BOULEVARD,338B IND NR SUTPHN,40.7054599997,-73.8107079997,1036732.70309,196351.285825,Subway Station,SN 257,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11435,412,238,4023800,0,0,1568 +QU,POINT (-73.8011089995003 40.702146999967205),11369,Free,Transit Wireless,PARSONS - ARCHER (JAMAICA CENTER),IND-E-J-Z-JAMAICA CENTER - PARSONS / ARCHER,40.702147,-73.8011089995,1039396.83786,195150.160931,Subway Station,SN 278,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,246,4024600,0,0,1569 +QU,POINT (-73.78381699950042 40.712645999929734),11370,Free,Transit Wireless,179TH STREET - JAMAICA,IND-F-JAMAICA - 179TH ST,40.7126459999,-73.7838169995,1044181.97002,198986.610279,Subway Station,SN 254,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,468,4046800,0,0,1570 +QU,POINT (-73.87722299978942 40.73701500021453),11371,Free,Transit Wireless,GRAND AVENUE - NEWTOWN,IND-E-G-R-V-GRAND AVE - NEWTOWN,40.7370150002,-73.8772229998,1018274.79546,207814.881992,Subway Station,SN 265,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,473,4047300,4045397,4018420001,1571 +QU,POINT (-73.9287809998315 40.75203899985559),11372,Free,Transit Wireless,36 STREET (NORTHERN BLVD),IND-E-G-R-V-36TH ST,40.7520389999,-73.9287809998,1003982.24661,213272.781509,Subway Station,SN 272,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,0,0,1572 +QU,POINT (-73.93724300049996 40.74897299964004),11373,Free,Transit Wireless,QUEENS PLAZA (IND),IND-E-G-R-V-QUEENS PLZ,40.7489729996,-73.9372430005,1001638.52853,212153.946149,Subway Station,SN 273,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,33,4003300,0,0,1573 +QU,POINT (-73.92073999997187 40.75687899983763),11374,Free,Transit Wireless,STEINWAY STREET,IND-E-G-R-V-STEINWAY ST,40.7568789998,-73.92074,1006208.52497,215038.063412,Subway Station,SN 271,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,155,4015500,0,0,1574 +QU,POINT (-73.80332600009024 40.70756399964089),11375,Free,Transit Wireless,PARSONS BOULEVARD,STATIONLAB 339A IND NR PARSNS,40.7075639996,-73.8033260001,1038777.69638,197122.343338,Subway Station,SN 256,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN35,Briarwood-Jamaica Hills,24,11432,408,236,4023600,0,0,1575 +QU,POINT (-73.79360400041017 40.71047000027133),11376,Free,Transit Wireless,169TH STREET,340A IND NR 169 ST,40.7104700003,-73.7936040004,1041470.61291,198187.285434,Subway Station,SN 255,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,460,4046000,0,0,1576 +QU,POINT (-73.86160399966334 40.72984599988817),11377,Free,Transit Wireless,63RD DRIVE - REGO PARK,330B IND NR 63 DR,40.7298459999,-73.8616039997,1022607.36192,205209.446258,Subway Station,SN 263,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,693,4069300,0,0,1577 +QU,POINT (-73.85271899950995 40.72652299985638),11378,Free,Transit Wireless,67TH AVENUE,IND-E-G-R-V-67TH AVE,40.7265229999,-73.8527189995,1025071.93147,204002.791191,Subway Station,SN 262,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,71306,4071306,0,0,1578 +QU,POINT (-73.80796900022716 40.700486000322314),11379,Free,Transit Wireless,SUTPHIN BLVD - ARCHER - JFK AIRPORT,IND-E-J-Z-SUTPHIN BLVD - ARCHER AV,40.7004860003,-73.8079690002,1037496.08378,194540.76648,Subway Station,SN 279,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11435,412,208,4020800,0,0,1579 +QU,POINT (-73.83732400052963 40.718330999837725),11380,Free,Transit Wireless,75TH AVENUE,IND-E-F-75TH AVE,40.7183309998,-73.8373240005,1029344.50724,201025.747605,Subway Station,SN 260,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,76901,4076901,0,0,1580 +QU,POINT (-73.83100800034882 40.71444099963461),11381,Free,Transit Wireless,UNION TURNPIKE (Kew Gardens),IND-E-F-KEW GARDENS - UNION TPKE,40.7144409996,-73.8310080003,1031098.06246,199611.819002,Subway Station,SN 259,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN99,park-cemetery-etc-Queens,29,11375,406,38302,4038302,0,0,1581 +QU,POINT (-73.89133799951715 40.74664399979257),11382,Free,Transit Wireless,ROOSEVELT AVENUE (JACKSON HEIGHTS),IND-E-F-G-R-V-JACKSON HTS-ROOSEVELT AV,40.7466439998,-73.8913379995,1014358.80132,211317.862519,Subway Station,SN 267,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,0,0,1582 +MN,POINT (-73.96837899960818 40.799446000334825),11383,Free,Transit Wireless,103 St (1),103 St (1),40.7994460003,-73.9683789996,993004.818108,230538.303737,Subway Station,SN 309,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,0,0,1583 +MN,POINT (-73.94747800033737 40.79060000008398),11384,Free,Transit Wireless,103 St (6),103 St (6),40.7906000001,-73.9474780003,998793.551282,227318.178944,Subway Station,SN 395,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,166,1016600,0,0,1584 +MN,POINT (-73.96145399987131 40.79609200003294),11385,Free,Transit Wireless,"103 St (B,C)","103 St (B,C)",40.796092,-73.9614539999,994922.661057,229317.092597,Subway Station,SN 156,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10025,164,143,1014300,0,0,1585 +MN,POINT (-73.94425000042636 40.795020000114825),11386,Free,Transit Wireless,"110 St (6) (4, 6)",110 St (6),40.7950200001,-73.9442500004,999686.372331,228929.089764,Subway Station,SN 394,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN33,East Harlem South,8,10029,111,172,1017200,0,0,1586 +MN,POINT (-73.9496249997833 40.80209800003303),11387,Free,Transit Wireless,"116 St (2,3)","116 St (2,3)",40.802098,-73.9496249998,998196.629575,231506.950094,Subway Station,SN 440,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,190,1019000,0,0,1587 +MN,POINT (-73.94161699955642 40.79862900020072),11388,Free,Transit Wireless,"116 St (6) (4, 6)",116 St (6),40.7986290002,-73.9416169996,1000414.5359,230244.448682,Subway Station,SN 393,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,182,1018200,0,0,1588 +MN,POINT (-73.95488200053674 40.80508500039098),11389,Free,Transit Wireless,"116 St (A, B,C)","116 St (A, B,C)",40.8050850004,-73.9548820005,996740.636096,232594.425937,Subway Station,SN 154,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,0,0,1589 +MN,POINT (-73.96410999994822 40.80772200033112),11390,Free,Transit Wireless,116 St-Columbia University (1),116 St-Columbia University (1),40.8077220003,-73.9641099999,994185.528673,233553.996852,Subway Station,SN 307,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,205,1020500,0,0,1590 +MN,POINT (-73.99286971021118 40.76338511955059),11391,Free,LinkNYC - Citybridge,mn-04-122466,703 10 AVENUE,40.7633851196,-73.9928697102,986225.212901,217398.601998,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010764,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,129,1012900,1026998,1010760040,3919 +MN,POINT (-73.95968089065067 40.77945381200936),11392,Free,LinkNYC - Citybridge,mn-08-121049,36 EAST 84 STREET,40.779453812,-73.9596808907,995416.391697,223255.452161,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010766,03/29/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,142,1014200,1046787,1014950050,3920 +BX,POINT (-73.92613800014234 40.81047600027209),11393,Free,Transit Wireless,IRT-6-3RD AVE - 138TH STREET,3 Avenue - 138 St [6],40.8104760003,-73.9261380001,1004696.57524,234563.961696,Subway Station,SN 377,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,23,2002300,0,0,1504 +BX,POINT (-73.92984900054132 40.81322399958979),11394,Free,Transit Wireless,IRT-4-5-138TH ST - GRAND CONCOURSE,"138 St - Grand Concourse [4,5]",40.8132239996,-73.9298490005,1003668.48969,235564.311073,Subway Station,SN 391,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,0,0,1505 +BX,POINT (-73.92671799957655 40.81841000001202),11395,Free,Transit Wireless,IRT-2-5-149TH ST - GRAND CONCOURSE,149 St - Grand Concourse,40.81841,-73.9267179996,1004533.60083,237454.466086,Subway Station,SN 435,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,17,10451,201,51,2005100,0,0,1506 +BX,POINT (-73.92735100000175 40.81837500025047),11396,Free,Transit Wireless,IRT-4-149TH ST - GRAND CONCOURSE,149 St - Grand Concourse [4],40.8183750003,-73.927351,1004358.40433,237441.568474,Subway Station,SN 390,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,17,10451,201,51,2005100,0,0,1507 +MN,POINT (-74.0002009994511 40.737825999728116),11397,Free,Transit Wireless,"14th Street -7th Avenue - 1, 2, 3",14th Street - 7th Avenue,40.7378259997,-74.0002009995,984194.298328,208086.510058,Subway Station,SN 322,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,71,1007100,0,0,1508 +MN,POINT (-74.00169000055425 40.74089300019327),11398,Free,Transit Wireless,"14th Street- 8th Avenue - A, C, E, L",14th Street - 8th Avenue,40.7408930002,-74.0016900006,983781.682683,209203.919897,Subway Station,SN 166,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,0,0,1509 +MN,POINT (-73.99678599963224 40.737335000138906),11399,Free,Transit Wireless,"14th Street - 6th Avenue - F, M",Between 14th and 16th Streets on 6th Avenue,40.7373350001,-73.9967859996,985140.681606,207907.639681,Subway Station,SN 116,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,63,1006300,0,0,1510 +MN,POINT (-73.9962090003975 40.73822799969519),11400,Free,Transit Wireless,"14th Street - 6th Avenue - F, M, L",14th Street - 6th Avenue,40.7382279997,-73.9962090004,985300.568753,208232.994017,Subway Station,SN 229,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,0,0,1511 +MN,POINT (-73.99787099942013 40.741039999802084),11401,Free,Transit Wireless,18 Street - 1,18th Street - 7th Avenue,40.7410399998,-73.9978709994,984839.96764,209257.479173,Subway Station,SN 321,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,0,0,1512 +MN,POINT (-73.9956570004647 40.74408099989748),11402,Free,Transit Wireless,23 Street - 1,23rd Street - 7th Avenue,40.7440809999,-73.9956570005,985453.434261,210365.434962,Subway Station,SN 320,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,0,0,1513 +MN,POINT (-73.99804099998796 40.74590600030042),11403,Free,Transit Wireless,"23rd Street - C, E",23rd Street - 8th Avenue,40.7459060003,-73.998041,984792.819112,211030.317162,Subway Station,SN 165,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,0,0,1514 +MN,POINT (-73.98934399979193 40.74130299957701),11404,Free,Transit Wireless,"23rd Street - N, R",23rd Street – Broadway,40.7413029996,-73.9893439998,987202.874004,209353.470779,Subway Station,SN 14,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,0,1515 +MN,POINT (-73.99282099978304 40.74287799976994),11405,Free,Transit Wireless,23rd Street - F,West 23 Street and 6 Avenue,40.7428779998,-73.9928209998,986239.318844,209927.195353,Subway Station,SN 228,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,0,0,1516 +MN,POINT (-73.98659899971118 40.73986399957377),11406,Free,Transit Wireless,23rd Street - 6,East 23 Street and Park Avenue,40.7398639996,-73.9865989997,987963.618545,208829.301879,Subway Station,SN 405,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,0,0,1517 +MN,POINT (-73.99336500015906 40.74721500008266),11407,Free,Transit Wireless,28th Street - 1,28th Street - 7th Avenue,40.7472150001,-73.9933650002,986088.455301,211507.291274,Subway Station,SN 319,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,0,0,1518 +MN,POINT (-73.98869100046721 40.74549399961358),11408,Free,Transit Wireless,"28th Street - Broadway - N, R",28th Street - Broadway,40.7454939996,-73.9886910005,987383.628891,210880.408341,Subway Station,SN 13,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,76,1007600,0,0,1519 +MN,POINT (-73.98426399991983 40.743070000159356),11409,Free,Transit Wireless,28th Street - (6),28th Street - Park Avenue South,40.7430700002,-73.9842639999,988610.472238,209997.457351,Subway Station,SN 404,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10016,105,56,1005600,0,0,1520 +MN,POINT (-73.98207600030521 40.746080999991754),11410,Free,Transit Wireless,33rd Street - 6,33rd Street - Park Avenue South,40.746081,-73.9820760003,989216.546157,211094.577204,Subway Station,SN 403,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,0,0,1521 +MN,POINT (-73.98794999963842 40.74956699998792),11411,Free,Transit Wireless,"34th Street - Herald Square - N, Q, R",34th STREET - 6 Avenue and Broadway,40.749567,-73.9879499996,987588.749872,212364.360426,Subway Station,SN 12,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,101,1010100,0,0,1522 +MN,POINT (-73.98782299992962 40.749719000152844),11412,Free,Transit Wireless,"34th Street - Herald Square - B, D, F, M",34th STREET - 6 Avenue and Broadway,40.7497190002,-73.9878229999,987623.930576,212419.743845,Subway Station,SN 227,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,101,1010100,0,0,1523 +MN,POINT (-73.98456900003593 40.75422199969705),11413,Free,Transit Wireless,"42nd Street - Bryant Park - B, D, F, M",42th Street - 6 Avenue,40.7542219997,-73.984569,988525.240453,214060.47416,Subway Station,SN 226,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,113,1011300,0,0,1524 +BK,POINT (-73.987342000524 40.69233799957284),12379,Free,Transit Wireless,"Jay St-Borough Hall (A,C,F)","Jay St-Borough Hall (A,C,F)",40.6923379996,-73.9873420005,987760.223939,191514.099305,Subway Station,SN 174,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,0,1708 +BK,POINT (-73.98500100037954 40.68848399998038),12380,Free,Transit Wireless,"Hoyt-Schermerhorn Sts (A,C,G)","Hoyt-Schermerhorn Sts (A,C,G)",40.688484,-73.9850010004,988409.653414,190110.076851,Subway Station,SN 175,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,41,3004100,0,0,1709 +BK,POINT (-73.973945999677 40.68611300020595),12381,Free,Transit Wireless,Lafayette Av (C),Lafayette Av (C),40.6861130002,-73.9739459997,991475.7795,189246.970965,Subway Station,SN 176,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,181,3018100,0,0,1710 +BK,POINT (-73.9658379997552 40.68326300002734),12382,Free,Transit Wireless,Clinton-Washington Avs (C),Clinton-Washington Avs (C),40.683263,-73.9658379998,993724.84554,188209.406111,Subway Station,SN 177,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,199,3019900,0,0,1711 +BK,POINT (-73.95684799993053 40.68137999977761),12383,Free,Transit Wireless,"Franklin Av (C,S)","Franklin Av (C,S)",40.6813799998,-73.9568479999,996218.563649,187524.475067,Subway Station,SN 178,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,36,11238,303,227,3022700,0,0,1712 +BK,POINT (-73.95042599981397 40.680438000061756),12384,Free,Transit Wireless,"Nostrand Av (A,C)","Nostrand Av (A,C)",40.6804380001,-73.9504259998,997999.952475,187182.220174,Subway Station,SN 179,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,303,247,3024700,0,0,1713 +BK,POINT (-73.94085900048671 40.67992100036029),12385,Free,Transit Wireless,Kingston-Throop Avs (C),Kingston-Throop Avs (C),40.6799210004,-73.9408590005,1000653.60301,186995.508933,Subway Station,SN 180,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,269,3026900,0,0,1714 +BK,POINT (-73.93072900032217 40.679364000406686),12386,Free,Transit Wireless,"Utica Av (A,C)","Utica Av (A,C)",40.6793640004,-73.9307290003,1003463.46353,186794.637287,Subway Station,SN 181,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,303,297,3029700,0,0,1715 +BK,POINT (-73.92078600051696 40.67882199997367),12387,Free,Transit Wireless,Ralph Av (C),Ralph Av (C),40.678822,-73.9207860005,1006221.49771,186599.508413,Subway Station,SN 182,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,41,11233,303,301,3030100,0,0,1716 +BK,POINT (-73.91194599963187 40.67833999988532),12388,Free,Transit Wireless,Rockaway Av (C),Rockaway Av (C),40.6783399999,-73.9119459996,1008673.61453,186426.243011,Subway Station,SN 183,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,41,11233,316,301,3030100,0,0,1717 +BK,POINT (-73.89654799985654 40.6745419998698),12389,Free,Transit Wireless,Liberty Av (C),Liberty Av (C),40.6745419999,-73.8965479999,1012946.20342,185047.192291,Subway Station,SN 185,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,1198,3119800,0,0,1719 +BK,POINT (-73.89035800024563 40.67270999996158),12390,Free,Transit Wireless,Van Siclen Av (C),Van Siclen Av (C),40.67271,-73.8903580002,1014664.06121,184381.831417,Subway Station,SN 186,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11207,305,1152,3115200,0,0,1720 +BK,POINT (-73.88074999984144 40.67412999965731),12391,Free,Transit Wireless,Shepherd Av (C),Shepherd Av (C),40.6741299997,-73.8807499998,1017328.55949,184902.659444,Subway Station,SN 187,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,37,11208,305,1166,3116600,0,0,1721 +BK,POINT (-73.87210599981049 40.67537700003908),12392,Free,Transit Wireless,"Euclid Av (A,C)","Euclid Av (A,C)",40.675377,-73.8721059998,1019725.63934,185360.359316,Subway Station,SN 188,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11208,305,1196,3119600,0,0,1722 +BK,POINT (-73.86504999996164 40.67704399964567),12393,Free,Transit Wireless,Grant Av (A),Grant Av (A),40.6770439996,-73.86505,1021681.91758,185970.630733,Subway Station,SN 189,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,1202,3120200,0,3042230001,1723 +BK,POINT (-73.98688499987136 40.69974299998057),12394,Free,Transit Wireless,York St (F),York St (F),40.699743,-73.9868849999,987886.552098,194211.978424,Subway Station,SN 235,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,0,0,1724 +BK,POINT (-73.9908620001394 40.68614500033404),12395,Free,Transit Wireless,"Bergen St (F,G)","Bergen St (F,G)",40.6861450003,-73.9908620001,986784.318738,189257.687151,Subway Station,SN 236,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,69,3006900,0,0,1725 +BK,POINT (-73.99504800052553 40.680303000124376),12396,Free,Transit Wireless,"Carroll St (F,G)","Carroll St (F,G)",40.6803030001,-73.9950480005,985623.500194,187129.183862,Subway Station,SN 237,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,77,3007700,0,3004490015,1726 +BK,POINT (-73.97949299966244 40.66036499997097),12397,Free,Transit Wireless,15 St-Prospect Park (F),15 St-Prospect Park (F),40.660365,-73.9794929997,989939.578504,179865.831263,Subway Station,SN 241,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK40,Windsor Terrace,39,11215,307,169,3016900,3026731,3011060005,1727 +BK,POINT (-73.97577600023642 40.65078200032532),12398,Free,Transit Wireless,Fort Hamilton Pkwy (F),Fort Hamilton Pkwy (F),40.6507820003,-73.9757760002,990971.809379,176374.741789,Subway Station,SN 242,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK40,Windsor Terrace,39,11218,307,504,3050400,0,0,1728 +BK,POINT (-73.95030800056804 40.70609200019787),12399,Free,Transit Wireless,Broadway (G),Broadway (G),40.7060920002,-73.9503080006,998027.378929,196528.74446,Subway Station,SN 286,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,511,3051100,0,0,1729 +BK,POINT (-73.95023399959311 40.70037700031093),12400,Free,Transit Wireless,Flushing Av (G),Flushing Av (G),40.7003770003,-73.9502339996,998049.079017,194446.611157,Subway Station,SN 287,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,33,11206,301,507,3050700,0,0,1730 +BK,POINT (-73.94904599961026 40.69456800000274),12401,Free,Transit Wireless,Myrtle-Willoughby Avs (G),Myrtle-Willoughby Avs (G),40.694568,-73.9490459996,998379.717792,192330.410008,Subway Station,SN 288,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11206,303,25901,3025901,0,0,1731 +BK,POINT (-73.9535219994584 40.689626999782924),12402,Free,Transit Wireless,Bedford-Nostrand Avs (G),Bedford-Nostrand Avs (G),40.6896269998,-73.9535219995,997139.463054,190529.568466,Subway Station,SN 289,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11205,303,243,3024300,0,0,1732 +BK,POINT (-73.96006999965162 40.68887299981151),12403,Free,Transit Wireless,Classon Av (G),Classon Av (G),40.6888729998,-73.9600699997,995323.671082,190253.968623,Subway Station,SN 290,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,231,3023100,0,0,1733 +BK,POINT (-73.96683899986145 40.68808900030132),12404,Free,Transit Wireless,Clinton-Washington Avs (G),Clinton-Washington Avs (G),40.6880890003,-73.9668389999,993446.552133,189967.551545,Subway Station,SN 291,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11205,302,197,3019700,0,0,1734 +BK,POINT (-73.98999799960687 40.693218999611084),12405,Free,Transit Wireless,"Court St (M,R)/Borough Hall (2,3,4,5)","Court St (M,R)/Borough Hall (2,3,4,5)",40.6932189996,-73.9899979996,987023.645031,191834.978257,Subway Station,SN 335,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,3001390001,1736 +BK,POINT (-73.98506499991797 40.690544999574925),12406,Free,Transit Wireless,"Hoyt St (2,3)","Hoyt St (2,3)",40.6905449996,-73.9850649999,988391.776481,190860.956254,Subway Station,SN 336,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,0,0,1737 +BK,POINT (-73.97766599996629 40.68435899973567),12407,Free,Transit Wireless,"Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)","Atlantic Av (B,Q,2,3,4,5)/Pacific St (D,M,N,R)",40.6843589997,-73.977666,990444.242849,188607.65269,Subway Station,SN 338,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,0,0,1738 +BK,POINT (-73.97104599944291 40.67523500005725),12408,Free,Transit Wireless,"Grand Army Plaza (2,3)","Grand Army Plaza (2,3)",40.6752350001,-73.9710459994,992281.371393,185284.054351,Subway Station,SN 340,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11238,355,159,3015900,0,0,1739 +BK,POINT (-73.96437500044742 40.67198699961444),12409,Free,Transit Wireless,"Eastern Pkwy-Brooklyn Museum (2,3)","Eastern Pkwy-Brooklyn Museum (2,3)",40.6719869996,-73.9643750004,994132.279764,184101.397267,Subway Station,SN 341,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,35,11238,355,177,3017700,0,0,1740 +BK,POINT (-73.95813100038423 40.67068200042781),12410,Free,Transit Wireless,"Franklin Av (2,3,4,5)/Botanic Garden (S)","Franklin Av (2,3,4,5)/Botanic Garden (S)",40.6706820004,-73.9581310004,995864.57584,183626.715146,Subway Station,SN 342,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,213,3021300,0,0,1741 +BK,POINT (-73.95046600042079 40.66984699985518),12411,Free,Transit Wireless,Nostrand Av (3),Nostrand Av (3),40.6698469999,-73.9504660004,997991.039763,183323.610109,Subway Station,SN 343,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,319,3031900,0,0,1742 +BK,POINT (-73.94216100025689 40.669398999846216),12412,Free,Transit Wireless,Kingston Av (3),Kingston Av (3),40.6693989998,-73.9421610003,1000295.00596,183161.803018,Subway Station,SN 344,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11213,309,337,3033700,0,0,1743 +BK,POINT (-73.93294199982721 40.668897000003156),12413,Free,Transit Wireless,"Crown Heights-Utica Av (3,4)","Crown Heights-Utica Av (3,4)",40.668897,-73.9329419998,1002852.57072,182980.733498,Subway Station,SN 345,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11213,309,351,3035100,0,0,1744 +BK,POINT (-73.95068299997057 40.6678829999172),12414,Free,Transit Wireless,"President St (2,5)","President St (2,5)",40.6678829999,-73.950683,997931.245591,182608.035424,Subway Station,SN 353,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,319,3031900,0,0,1745 +BK,POINT (-73.95084999950582 40.66274199992865),12415,Free,Transit Wireless,"Sterling St (2,5)","Sterling St (2,5)",40.6627419999,-73.9508499995,997885.968451,180734.998488,Subway Station,SN 354,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11225,309,329,3032900,0,0,1746 +BK,POINT (-73.94957499981025 40.65084300021865),12416,Free,Transit Wireless,"Church Av (2,5)","Church Av (2,5)",40.6508430002,-73.9495749998,998242.194445,176400.063588,Subway Station,SN 356,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11226,317,820,3082000,0,0,1748 +BK,POINT (-73.94895899948507 40.645097999856795),12417,Free,Transit Wireless,"Beverly Rd (2,5)","Beverly Rd (2,5)",40.6450979999,-73.9489589995,998414.345019,174307.101567,Subway Station,SN 357,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,45,11226,317,826,3082600,0,0,1749 +BK,POINT (-73.94841099969165 40.6399670002534),12418,Free,Transit Wireless,"Newkirk Av (2,5)","Newkirk Av (2,5)",40.6399670003,-73.9484109997,998567.520894,172437.828075,Subway Station,SN 358,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,45,11226,317,830,3083000,0,0,1750 +BK,POINT (-73.94764200020768 40.63283599982712),12419,Free,Transit Wireless,"Brooklyn College-Flatbush Av (2,5)","Brooklyn College-Flatbush Av (2,5)",40.6328359998,-73.9476420002,998782.494545,169839.939241,Subway Station,SN 359,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,45,11210,314,786,3078600,0,0,1751 +MN,POINT (-73.9910699998034 40.73005400028987),12420,Free,Transit Wireless,Astor Place (6),Astor Place (6),40.7300540003,-73.9910699998,986725.0016,205255.052794,Subway Station,SN 407,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,57,1005700,0,0,1752 +BK,POINT (-73.99015099972233 40.692403999990916),12421,Free,Transit Wireless,"Court St (M,R)/Borough Hall (2,3,4,5)","Court St (M,R)/Borough Hall (2,3,4,5)",40.692404,-73.9901509997,986981.250103,191538.045123,Subway Station,SN 415,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,0,0,1753 +MN,POINT (-74.01406499980676 40.704817000033614),12422,Free,Transit Wireless,"Bowling Green (4,5)","Bowling Green (4,5)",40.704817,-74.0140649998,980350.327013,196060.628926,Subway Station,SN 414,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,13,1001300,0,0,1754 +BK,POINT (-73.9398500001222 40.70773899964517),12423,Free,Transit Wireless,Montrose Av (L),Montrose Av (L),40.7077389996,-73.9398500001,1000926.50436,197130.613663,Subway Station,SN 124,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,34,11206,301,493,3049300,0,0,1755 +MN,POINT (-73.99339099970587 40.75228699987541),12424,Free,Transit Wireless,"34 St-Penn Station (A,C,E)","34 St-Penn Station (A,C,E)",40.7522869999,-73.9933909997,986081.111811,213355.183576,Subway Station,SN 164,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,0,0,1756 +MN,POINT (-73.99105700032392 40.75037300003958),12425,Free,Transit Wireless,"34 St-Penn Station (1,2,3)","34 St-Penn Station (1,2,3)",40.750373,-73.9910570003,986727.848707,212657.909052,Subway Station,SN 318,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,0,0,1757 +MN,POINT (-73.9905680003578 40.73573600004866),12426,Free,Transit Wireless,"14 St-Union Square (L,N,Q,R,4,5,6)","14 St-Union Square (L,N,Q,R,4,5,6)",40.735736,-73.9905680004,986863.910771,207325.197932,Subway Station,SN 15,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,0,1008450002,1758 +MN,POINT (-74.01299400001298 40.703086999926185),12427,Free,Transit Wireless,Whitehall St (R),Whitehall St (R),40.7030869999,-74.012994,980647.179766,195430.29226,Subway Station,SN 23,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,0,0,1759 +BK,POINT (-73.99809099973344 40.660397000114294),12428,Free,Transit Wireless,"25 St (M,R)","25 St (M,R)",40.6603970001,-73.9980909997,984779.643614,179876.829601,Subway Station,SN 31,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,101,3010100,0,0,1760 +BK,POINT (-74.0178809996294 40.641362000376105),12429,Free,Transit Wireless,"59 St (N,R)","59 St (N,R)",40.6413620004,-74.0178809996,979287.580779,172942.354953,Subway Station,SN 35,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11220,307,74,3007400,0,0,1761 +BK,POINT (-74.02550999975396 40.62974200007912),12430,Free,Transit Wireless,77 St (R),77 St (R),40.6297420001,-74.0255099998,977169.111919,168709.400164,Subway Station,SN 37,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11209,310,136,3013600,0,0,1762 +BK,POINT (-74.02839800012815 40.62268700034266),12431,Free,Transit Wireless,86 St (R),86 St (R),40.6226870003,-74.0283980001,976366.647645,166139.322955,Subway Station,SN 38,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11209,310,60,3006000,0,0,1763 +BK,POINT (-74.03087599982963 40.616621999552),12432,Free,Transit Wireless,Bay Ridge-95 St (R),Bay Ridge-95 St (R),40.6166219996,-74.0308759998,975677.970216,163929.916285,Subway Station,SN 39,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11209,310,54,3005400,0,0,1764 +MN,POINT (-73.99073000010758 40.7347890004295),12433,Free,Transit Wireless,"14 St-Union Square (L,N,Q,R,4,5,6)","14 St-Union Square (L,N,Q,R,4,5,6)",40.7347890004,-73.9907300001,986819.051937,206980.171391,Subway Station,SN 117,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,61,1006100,0,0,1765 +MN,POINT (-73.93956099985425 40.84071899990795),12434,Free,Transit Wireless,"168 St-Washington Heights (A,C,1)","168 St-Washington Heights (A,C,1)",40.8407189999,-73.9395609999,1000973.20112,245579.738877,Subway Station,SN 148,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,251,1025100,0,0,1766 +BK,POINT (-73.98030500046653 40.66627099971279),12435,Free,Transit Wireless,7 Av (F),7 Av (F),40.6662709997,-73.9803050005,989713.808614,182017.501172,Subway Station,SN 240,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,151,3015100,0,0,1767 +BK,POINT (-73.97967799972864 40.64404099970337),12436,Free,Transit Wireless,Church Av (F),Church Av (F),40.6440409997,-73.9796779997,989889.630769,173918.535087,Subway Station,SN 243,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK41,Kensington-Ocean Parkway,39,11218,312,496,3049600,0,0,1768 +MN,POINT (-73.9335959996056 40.84950499974065),12437,Free,Transit Wireless,181 St (1),181 St (1),40.8495049997,-73.9335959996,1002621.26311,248782.003798,Subway Station,SN 301,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,271,1027100,0,0,1769 +MN,POINT (-73.9401330002575 40.84055600004964),12438,Free,Transit Wireless,"168 St-Washington Heights (A,C,1)","168 St-Washington Heights (A,C,1)",40.840556,-73.9401330003,1000814.97178,245520.243261,Subway Station,SN 302,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,251,1025100,0,0,1770 +BK,POINT (-73.98049200023146 40.68824599993546),12439,Free,Transit Wireless,"Nevins St (2,3,4,5)","Nevins St (2,3,4,5)",40.6882459999,-73.9804920002,989660.14796,190023.612785,Subway Station,SN 337,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,33,3003300,0,0,1771 +MN,POINT (-73.97256707992176 40.79404226958672),12440,Free,LinkNYC - Citybridge,mn-07-120596,250 WEST 95 STREET,40.7940422696,-73.9725670799,991845.892605,228569.14593,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001503,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033687,1012420060,3525 +MN,POINT (-73.97157309005945 40.79446154017121),12441,Free,LinkNYC - Citybridge,mn-07-100260,214 WEST 96 STREET,40.7944615402,-73.9715730901,992121.068564,228721.988472,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001504,11/23/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033707,1012430040,3526 +MN,POINT (-73.9718562601336 40.794895659650656),12442,Free,LinkNYC - Citybridge,mn-07-133636,2565 BROADWAY,40.7948956597,-73.9718562601,992042.611371,228880.127919,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001505,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1056068,1018687500,3527 +MN,POINT (-73.97104799948444 40.795170999832486),12443,Free,LinkNYC - Citybridge,mn-07-120513,230 WEST 97 STREET,40.7951709998,-73.9710479995,992266.374375,228980.516826,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001507,07/08/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,183,1018300,1056064,1018680040,3528 +MN,POINT (-73.9707518997549 40.79577379982776),12444,Free,LinkNYC - Citybridge,mn-07-135865,2596 BROADWAY,40.7957737998,-73.9707518998,992348.286613,229200.165009,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001539,10/10/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,183,1018300,1056383,1018690040,3529 +MN,POINT (-73.97093100002556 40.79613800004605),12445,Free,LinkNYC - Citybridge,mn-07-133638,2601 BROADWAY,40.796138,-73.970931,992298.652854,229332.839284,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001540,06/29/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056414,1018707500,3530 +MN,POINT (-73.97061900032749 40.79656599960331),12446,Free,LinkNYC - Citybridge,mn-07-120285,2617 BROADWAY,40.7965659996,-73.9706190003,992384.987327,229488.803211,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001542,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056410,1018700050,3531 +MN,POINT (-73.97065154967919 40.79676124973592),12447,Free,LinkNYC - Citybridge,mn-07-107801,243 WEST 99 STREET,40.7967612497,-73.9706515497,992375.951256,229559.936599,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001543,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056456,1018710010,3532 +MN,POINT (-73.97027900984806 40.79642524988099),12448,Free,LinkNYC - Citybridge,mn-07-133628,2618 BROADWAY,40.7964252499,-73.9702790098,992479.14101,229437.554954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001545,08/18/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056408,1018700040,3533 +MN,POINT (-73.96963000046978 40.79714800004771),12449,Free,LinkNYC - Citybridge,mn-07-120510,219 WEST 100 STREET,40.797148,-73.9696300005,992658.747278,229700.939598,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001546,09/06/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056481,1018720020,3534 +MN,POINT (-73.96968099992422 40.79724800044863),12450,Free,LinkNYC - Citybridge,mn-07-133626,2640 Broadway,40.7972480004,-73.9696809999,992644.614104,229737.368331,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001547,03/14/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056481,1018720020,3535 +MN,POINT (-73.97001099949662 40.79739400013004),12451,Free,LinkNYC - Citybridge,mn-07-133637,2641 BROADWAY,40.7973940001,-73.9700109995,992553.22682,229790.529642,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001548,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056479,1018720010,3536 +MN,POINT (-73.96924393178226 40.797701659902835),12452,Free,LinkNYC - Citybridge,mn-07-120395,210 WEST 101 STREET,40.7977016599,-73.9692439318,992765.569899,229902.694444,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001552,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056485,1018720040,3537 +MN,POINT (-73.96955699993156 40.79801800024538),12453,Free,LinkNYC - Citybridge,mn-07-133620,2661 Broadway,40.7980180002,-73.9695569999,992678.849272,230017.917967,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001553,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,187,1018700,1056504,1018730010,3538 +MN,POINT (-73.96909300002625 40.798650000371616),12454,Free,LinkNYC - Citybridge,mn-07-134106,235 West 102st,40.7986500004,-73.969093,992807.237139,230248.222624,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001554,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,1056558,1018747500,3539 +MN,POINT (-73.96880907030621 40.79904234981858),12455,Free,LinkNYC - Citybridge,mn-07-134421,2697 BROADWAY,40.7990423498,-73.9688090703,992885.798005,230391.197076,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001555,11/03/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,1056548,1018740050,3540 +MN,POINT (-73.96832599946823 40.79895399977138),12456,Free,LinkNYC - Citybridge,mn-07-120393,216 WEST 103 STREET,40.7989539998,-73.9683259995,993019.556924,230359.056064,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001556,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056545,1018740040,3541 +MN,POINT (-73.96823223980871 40.79933066995604),12457,Free,LinkNYC - Citybridge,mn-07-107810,2704 BROADWAY,40.79933067,-73.9682322398,993045.466321,230496.299556,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001557,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056563,1018757500,3542 +MN,POINT (-73.96796961984788 40.79962989983486),12458,Free,LinkNYC - Citybridge,mn-07-120392,234 WEST 104 STREET,40.7996298998,-73.9679696198,993118.137436,230605.345926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001558,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056574,1018750050,3543 +MN,POINT (-73.9897349996741 40.757308000352424),11414,Free,Transit Wireless,"42nd Street – Port Authority - A, C, E",42nd Street – Port Authority,40.7573080004,-73.9897349997,987093.841085,215184.594615,Subway Station,SN 163,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,0,0,1525 +MN,POINT (-73.98132899945088 40.7586629997068),11415,Free,Transit Wireless,"47-50th Street – Rockefeller Center - B, D, F, M",47-50th Street – Rockefeller Center,40.7586629997,-73.9813289995,989422.554932,215678.649729,Subway Station,SN 225,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,0,0,1526 +MN,POINT (-73.9841389995591 40.759900999882156),11416,Free,Transit Wireless,"49th Street – 7th Avenue - N, R",49th Street - 7th Avenue,40.7599009999,-73.9841389996,988643.99973,216129.540232,Subway Station,SN 10,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,0,0,1527 +MN,POINT (-73.98384899986625 40.76172799961419),11417,Free,Transit Wireless,50 Street - 1,50th Street - Broadway,40.7617279996,-73.9838489999,988724.216105,216795.190803,Subway Station,SN 316,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,0,0,1529 +MN,POINT (-73.97745099998448 40.76397099975788),11418,Free,Transit Wireless,57th Street - F,57th Street - 6th Avenue,40.7639709998,-73.977451,990496.405802,217612.781032,Subway Station,SN 224,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,0,0,1530 +MN,POINT (-73.98065800018264 40.7646640002275),11419,Free,Transit Wireless,"57th Street - N, Q, R",57th Street - 7th Avenue (Midtown),40.7646640002,-73.9806580002,989607.963682,217865.051524,Subway Station,SN 9,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,0,0,1531 +MN,POINT (-73.98192899995855 40.768246999736036),11420,Free,Transit Wireless,59th Street - Columbus Circle - 1,Broadway - West 59 Street- Columbus Circle,40.7682469997,-73.981929,989255.612352,219170.381591,Subway Station,SN 315,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,3,10023,104,145,1014500,0,0,1532 +MN,POINT (-73.98173600034572 40.768295999922465),11421,Free,Transit Wireless,"59th Street - Columbus Circle - A, B, C, D",Broadway - West 59 Street- Columbus Circle,40.7682959999,-73.9817360003,989309.068938,219188.245072,Subway Station,SN 161,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,3,10023,104,145,1014500,0,0,1533 +MN,POINT (-73.97522399985105 40.76016699987786),11422,Free,Transit Wireless,"5th Avenue - 53rd Street - E, M",5th Avenue - 53rd Street,40.7601669999,-73.9752239999,991113.709686,216227.025601,Subway Station,SN 276,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,0,0,1534 +MN,POINT (-73.97334700047045 40.764810999755284),11423,Free,Transit Wireless,"5th Avenue - 59th Street - N, R",5th Avenue - 59th Street,40.7648109998,-73.9733470005,991633.181088,217919.139999,Subway Station,SN 8,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN99,park-cemetery-etc-Manhattan,6,10019,164,143,1014300,0,1011110001,1535 +MN,POINT (-73.9819629997515 40.75382099974792),11424,Free,Transit Wireless,5th Avenue - 7,5th Avenue and East 42 Street,40.7538209997,-73.9819629998,989247.276739,213914.514806,Subway Station,SN 466,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,0,1536 +MN,POINT (-73.96108153055155 40.80149765036704),11425,Free,LinkNYC - Citybridge,mn-07-120641,1011 COLUMBUS AVE,40.8014976504,-73.9610815306,995024.915774,231286.605062,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010784,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055741,1018450000,3921 +MN,POINT (-73.98703947963386 40.72500355025761),11426,Free,LinkNYC - Citybridge,mn-03-123294,150 EAST 4 STREET,40.7250035503,-73.9870394796,987842.355992,203415.15654,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010785,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,1005760,1004310010,3922 +MN,POINT (-73.96166314024707 40.76035997980215),11427,Free,LinkNYC - Citybridge,mn-08-121708,351 EAST 60 STREET,40.7603599798,-73.9616631402,994870.451516,216298.687859,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010787,03/14/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,110,1011000,1044204,1014350020,3923 +MN,POINT (-73.96153956993977 40.77691823032907),11428,Free,LinkNYC - Citybridge,mn-08-121042,40 EAST 80 STREET,40.7769182303,-73.9615395699,994902.035443,222331.422841,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010788,04/06/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10075,108,142,1014200,1046451,1014910050,3924 +MN,POINT (-73.96660446005878 40.770516570284954),11429,Free,LinkNYC - Citybridge,mn-08-121140,24 EAST 70 STREET,40.7705165703,-73.9666044601,993500.148154,219998.508544,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010790,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,122,1012200,1041297,1013847500,3925 +MN,POINT (-73.9693080003598 40.766735999619236),11430,Free,LinkNYC - Citybridge,mn-08-121988,30 EAST 64 STREET,40.7667359996,-73.9693080004,992751.783838,218620.847257,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010792,04/21/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,122,1012200,1041045,1013780060,3926 +MN,POINT (-73.97188143984758 40.78707883979802),11431,Free,LinkNYC - Citybridge,mn-07-121259,100 WEST 87 STREET,40.7870788398,-73.9718814398,992036.553641,226032.189061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010795,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,173,1017300,1085083,1012170040,3927 +MN,POINT (-73.97148731035439 40.792702870156894),11432,Free,LinkNYC - Citybridge,mn-07-120611,700 AMSTERDAM AVE,40.7927028702,-73.9714873104,992145.028489,228081.251892,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010797,12/20/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033650,1012410040,3928 +MN,POINT (-73.97844367689336 40.777377089905556),11433,Free,LinkNYC - Citybridge,mn-07-119836,261 COLUMBUS AVENUE,40.7773770899,-73.9784436769,990220.217706,222496.996985,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010798,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1028631,1011250000,3929 +MN,POINT (-73.98942099942174 40.721773000406934),11434,Free,LinkNYC - Citybridge,mn-03-123464,70 STANTON STREET,40.7217730004,-73.9894209994,987182.396026,202238.078841,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010802,01/06/2017 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,36,1003601,1005537,1004170000,3930 +MN,POINT (-73.98328129632584 40.72996267767346),11435,Free,LinkNYC - Citybridge,mn-03-139623,401 EAST 12 STREET,40.7299626777,-73.9832812963,988883.692492,205222.097152,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010803,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1083482,1004400000,3931 +MN,POINT (-73.97030300025042 40.76482100015138),11436,Free,LinkNYC - Citybridge,mn-08-121980,25.5 EAST 61 STREET,40.7648210002,-73.9703030003,992476.40217,217923.054689,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010805,05/31/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,114,1011401,1040850,1013760020,3932 +MN,POINT (-73.98641998971772 40.74275953033754),11437,Free,LinkNYC - Citybridge,mn-05-121630,31 EAST 26 STREET,40.7427595303,-73.9864199897,988013.06136,209884.243339,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010807,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,1016880,1008560020,3933 +MN,POINT (-73.99326128946213 40.74208082019129),11438,Free,LinkNYC - Citybridge,mn-05-122270,688 6 AVENUE,40.7420808202,-73.9932612895,986117.33582,209636.747771,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010811,07/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1015555,1008230080,3934 +MN,POINT (-73.96672853025595 40.75254916996985),11439,Free,LinkNYC - Citybridge,mn-06-121671,401 EAST 48 STREET,40.75254917,-73.9667285303,993468.268625,213452.3822,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010823,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,86,1008603,1040072,1013607500,3935 +MN,POINT (-73.96964871033818 40.753660599723716),11440,Free,LinkNYC - Citybridge,mn-06-121791,260 E 48 ST,40.7536605997,-73.9696487103,992659.056661,213857.018202,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010826,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1037988,1013210020,3936 +MN,POINT (-73.99149318997189 40.76527686996577),11441,Free,LinkNYC - Citybridge,mn-04-122475,747 10 AVENUE,40.76527687,-73.99149319,986606.465748,218087.863087,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010831,01/08/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,135,1013500,1083800,1010799030,3937 +MN,POINT (-73.97618999966515 40.744154000274314),11442,Free,LinkNYC - Citybridge,mn-06-121433,604 2 AVENUE,40.7441540003,-73.9761899997,990847.683971,210392.898162,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010832,03/09/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1078843,1009390000,3938 +MN,POINT (-73.99036533179437 40.751539621629576),11443,Free,LinkNYC - Citybridge,mn-05-137863,458 7 AVE,40.7515396216,-73.9903653318,986919.443468,213082.967257,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010833,06/05/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,1014409,1007840050,3939 +MN,POINT (-74.0064153595695 40.732307780049744),11444,Free,LinkNYC - Citybridge,mn-02-123611,482 HUDSON STREET,40.73230778,-74.0064153596,982472.005841,206076.114144,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010843,01/18/2017 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,73,1007300,1009852,1005850010,3940 +MN,POINT (-73.96174539997754 40.80059157967559),11445,Free,LinkNYC - Citybridge,mn-07-120640,981 COLUMBUS AVE,40.8005915797,-73.9617454,994841.261942,230956.41084,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010852,03/08/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055708,1018440000,3941 +MN,POINT (-73.97913746981436 40.781861190096805),11446,Free,LinkNYC - Citybridge,mn-07-121209,355 AMSTERDAM AVENUE,40.7818611901,-73.9791374698,990027.676425,224130.659728,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010853,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,161,1016100,1030188,1011480060,3942 +MN,POINT (-73.99915159111515 40.73439250936614),11447,Free,LinkNYC - Citybridge,mn-02-120512,425 6 AVENUE,40.7343925094,-73.9991515911,984485.126158,206835.582442,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010857,04/25/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,71,1007100,1082668,1006060000,3943 +MN,POINT (-73.96381796950419 40.75687875018539),11448,Free,LinkNYC - Citybridge,mn-06-121683,1000 1 AVENUE,40.7568787502,-73.9638179695,994274.023575,215030.108375,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010860,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,106,1010601,1040355,1013660050,3944 +MN,POINT (-73.96321332017048 40.757701219618816),11449,Free,LinkNYC - Citybridge,mn-06-121692,1026 1 AVENUE,40.7577012196,-73.9632133202,994441.412348,215329.830545,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010861,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,106,1010601,1040466,1013680000,3945 +MN,POINT (-73.9635934496457 40.757604310060685),11450,Free,LinkNYC - Citybridge,mn-06-121694,1021 1 AVENUE,40.7576043101,-73.9635934496,994336.115643,215294.479238,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010862,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039972,1013480020,3946 +MN,POINT (-74.00528545980805 40.738797829635295),11451,Free,LinkNYC - Citybridge,mn-02-123497,41 HORATIO STREET,40.7387978296,-74.0052854598,982785.296225,208440.622539,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010870,11/09/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,77,1007700,1011688,1006270030,3947 +MN,POINT (-74.00640750973668 40.73159252028563),11452,Free,LinkNYC - Citybridge,mn-02-123612,87 BARROW STREET,40.7315925203,-74.0064075097,982474.162332,205815.522474,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010871,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1077816,1005847500,3948 +MN,POINT (-73.98947426961995 40.719503759694234),11453,Free,LinkNYC - Citybridge,mn-03-137963,122B ORCHARD ST,40.7195037597,-73.9894742696,987167.729389,201411.322949,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010872,12/28/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,1005303,1004100000,3949 +MN,POINT (-73.97205514962207 40.78633452965216),11454,Free,LinkNYC - Citybridge,mn-07-121256,80 WEST 86 STREET,40.7863345297,-73.9720551496,991988.536676,225760.996034,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010874,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1031388,1011990060,3950 +MN,POINT (-73.96676341974711 40.76974939007395),11455,Free,LinkNYC - Citybridge,mn-08-121142,22 EAST 69 STREET,40.7697493901,-73.9667634197,993456.224358,219718.982528,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010882,10/18/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,122,1012200,1041276,1013830050,3951 +BX,POINT (-73.92295481044175 40.81675131956584),11456,Free,LinkNYC - Citybridge,bx-01-116415,522 MORRIS AVENUE,40.8167513196,-73.9229548104,1005575.73883,236851.04308,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-010890,03/06/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,65,2006500,2091151,2023300000,3952 +MN,POINT (-73.9851189886298 40.72764986617976),11457,Free,LinkNYC - Citybridge,mn-03-123794,134 1 AVE,40.7276498662,-73.9851189886,988374.507815,204379.376068,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010896,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,1005893,1004360060,3953 +MN,POINT (-73.94624056004682 40.800781199633086),11458,Free,LinkNYC - Citybridge,mn-11-120070,1421 5 AVENUE,40.8007811996,-73.94624056,999133.926913,231027.750593,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010897,01/25/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,1051665,1016220000,3954 +MN,POINT (-73.99715554021756 40.73653987963019),11459,Free,LinkNYC - Citybridge,mn-02-122267,504 6 AVENUE,40.7365398796,-73.9971555402,985038.281876,207617.948659,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010900,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,63,1006300,1080145,1005760010,3955 +MN,POINT (-73.93145197941409 40.85225683999052),11460,Free,LinkNYC - Citybridge,mn-12-120665,1516 ST. NICHOLAS AVE,40.85225684,-73.9314519794,1003213.64087,249785.060519,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010914,03/29/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063780,1021570040,3956 +MN,POINT (-73.9353621104843 40.847270160022646),11461,Free,LinkNYC - Citybridge,mn-12-120772,1359 SAINT NICHOLAS AVENUE,40.84727016,-73.9353621105,1002133.25359,247967.401753,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010917,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,1063550,1021440040,3957 +MN,POINT (-73.96094657023949 40.77760613990816),11462,Free,LinkNYC - Citybridge,mn-08-121040,39 EAST 81 STREET,40.7776061399,-73.9609465702,995066.161427,222582.124111,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010919,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,142,1014200,1046668,1014930020,3958 +MN,POINT (-73.93725917278161 40.84468911801733),11463,Free,LinkNYC - Citybridge,mn-12-120767,1279 ST NICHOLAS AVENUE,40.844689118,-73.9372591728,1001609.07026,247026.649369,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010930,10/11/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,1063524,1021430010,3959 +MN,POINT (-73.9678553302501 40.80298422964018),11464,Free,LinkNYC - Citybridge,mn-07-120267,300 WEST 108 STREET,40.8029842296,-73.9678553303,993149.331927,231827.457327,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010933,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,6,10025,107,195,1019500,1057285,1018920050,3960 +MN,POINT (-73.9719786503252 40.79203479962814),11465,Free,LinkNYC - Citybridge,mn-07-121100,674 AMSTERDAM AVE,40.7920347996,-73.9719786503,992009.056648,227837.806841,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010934,02/07/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,179,1017900,1033614,1012400040,3961 +MN,POINT (-73.94884400042201 40.8233610002473),11466,Free,LinkNYC - Citybridge,mn-09-120570,1661 AMSTERDAM AVENUE,40.8233610002,-73.9488440004,998408.329939,239253.944442,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010942,10/31/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,227,1022700,1061246,1020580030,3962 +MN,POINT (-73.99180122962123 40.74915253029401),11467,Free,LinkNYC - Citybridge,mn-05-122445,383 7 AVENUE,40.7491525303,-73.9918012296,986521.685733,212213.232447,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013872,02/07/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1015175,1008070000,4362 +MN,POINT (-73.99274499991319 40.74790400039097),11468,Free,LinkNYC - Citybridge,mn-05-122453,341 7 AVENUE,40.7479040004,-73.9927449999,986260.226939,211758.329814,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013873,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015135,1008050000,4363 +MN,POINT (-73.99364234014507 40.76232841039175),11469,Free,LinkNYC - Citybridge,mn-04-122456,653 10 AVENUE,40.7623284104,-73.9936423401,986011.209064,217013.591613,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013881,03/19/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,129,1012900,1026966,1010750030,4364 +MN,POINT (-73.9892145197118 40.76840586040703),11470,Free,LinkNYC - Citybridge,mn-04-122482,849 10 AVENUE,40.7684058604,-73.9892145197,987237.538304,219227.927408,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013883,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,6,10019,104,135,1013500,1087635,1010840030,4365 +MN,POINT (-73.99250826016242 40.7435101302526),11471,Free,LinkNYC - Citybridge,mn-04-122766,727 6 AVENUE,40.7435101303,-73.9925082602,986325.960075,210157.507884,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013904,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014956,1007990040,4366 +MN,POINT (-73.98867302965496 40.748772220053226),11472,Free,LinkNYC - Citybridge,mn-05-122768,899 6 AVENUE,40.7487722201,-73.9886730297,987388.454013,212074.769798,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013905,11/11/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1015190,1008080040,4367 +MN,POINT (-73.98277308988943 40.771780199874314),11473,Free,LinkNYC - Citybridge,mn-07-122841,75 COLUMBUS AVE,40.7717801999,-73.9827730899,989021.548844,220457.596864,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013913,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,149,1014900,1027465,1011150060,4368 +MN,POINT (-73.97609913965198 40.76047373005743),11474,Free,LinkNYC - Citybridge,mn-05-122871,2 WEST 53 STREET,40.7604737301,-73.9760991397,990871.238714,216338.710089,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013920,10/20/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,104,1010400,1034520,1012687500,4369 +MN,POINT (-73.97792563040665 40.75795791212681),11475,Free,LinkNYC - Citybridge,mn-05-122878,2 WEST 49 STREET,40.7579579121,-73.9779256304,990365.478243,215421.982592,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013923,10/20/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10020,105,96,1009600,1034508,1012640040,4370 +MN,POINT (-73.98671200017377 40.73940899983516),11476,Free,LinkNYC - Citybridge,mn-05-123077,100 EAST 22 STREET,40.7394089998,-73.9867120002,987932.329566,208663.526292,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013954,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,105,68,1006800,1018009,1008770090,4371 +MN,POINT (-73.99138692977635 40.73239147035298),11477,Free,LinkNYC - Citybridge,mn-02-123086,799 BROADWAY,40.7323914704,-73.9913869298,986637.078875,206106.65739,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013956,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,61,1006100,1009108,1005620020,4372 +MN,POINT (-74.00238534949749 40.729557700405365),11478,Free,LinkNYC - Citybridge,mn-02-123117,10 DOWNING STREET,40.7295577004,-74.0023853495,983588.88156,205074.118117,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013962,04/26/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1008350,1005270030,4373 +MN,POINT (-73.98987100015229 40.73518700028869),11479,Free,LinkNYC - Citybridge,mn-05-123158,18 UNION SQUARE EAST,40.7351870003,-73.9898710002,987057.095096,207125.201613,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013965,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,105,50,1005000,1083247,1008707500,4374 +MN,POINT (-73.98513210000552 40.732246940433846),11480,Free,LinkNYC - Citybridge,mn-03-123282,223 2 AVENUE,40.7322469404,-73.9851321,988370.589516,206054.232954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013970,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006906,1004690030,4375 +MN,POINT (-73.98309796974203 40.73083304997334),11481,Free,LinkNYC - Citybridge,mn-03-123288,219 1 AVENUE,40.73083305,-73.9830979697,988934.441407,205539.210691,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013971,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1083488,1004550040,4376 +MN,POINT (-73.98617293964872 40.732960500427616),11482,Free,LinkNYC - Citybridge,mn-06-123287,223 EAST 14 STREET,40.7329605004,-73.9861729396,988082.083203,206314.15796,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013973,10/19/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1019504,1008960010,4377 +MN,POINT (-73.98813577993833 40.74083617022187),11483,Free,LinkNYC - Citybridge,mn-05-123292,14 EAST 23 STREET,40.7408361702,-73.9881357799,987537.705683,209183.433061,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013974,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10010,105,56,1005600,1016302,1008510060,4378 +MN,POINT (-73.99498599984462 40.74481499995087),11484,Free,LinkNYC - Citybridge,mn-04-123359,245 7 AVENUE,40.744815,-73.9949859998,985639.35154,210632.864545,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013976,07/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,91,1009100,1085464,1008007500,4379 +MN,POINT (-73.99589199986795 40.74411400038406),11485,Free,LinkNYC - Citybridge,mn-04-123494,200 WEST 23 STREET,40.7441140004,-73.9958919999,985388.315953,210377.454951,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013990,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014127,1007720050,4380 +MN,POINT (-73.99616801010961 40.74356420999877),11486,Free,LinkNYC - Citybridge,mn-04-123500,210 7 AVENUE,40.74356421,-73.9961680101,985311.843009,210177.145312,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013992,06/05/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014126,1007720040,4381 +MN,POINT (-73.96783286945913 40.80030025011368),12459,Free,LinkNYC - Citybridge,mn-07-134112,2736 BROADWAY,40.8003002501,-73.9678328695,993155.909342,230849.591828,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001594,10/03/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056600,1018760050,3544 +MN,POINT (-73.96778200018487 40.80058099983972),12460,Free,LinkNYC - Citybridge,mn-07-120391,2740 BROADWAY,40.8005809998,-73.9677820002,993169.955573,230951.883946,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001595,07/11/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056608,1018770020,3545 +MN,POINT (-73.9681863100123 40.80047593023002),12461,Free,LinkNYC - Citybridge,mn-07-134423,2737 Broadway,40.8004759302,-73.96818631,993058.031257,230913.562501,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001597,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,191,1019100,1056602,1018760060,3546 +MN,POINT (-73.96770700014476 40.801084000356006),12462,Free,LinkNYC - Citybridge,mn-07-134073,2756 BROADWAY,40.8010840004,-73.9677070001,993190.65271,231135.152281,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001599,10/27/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056626,1018770050,3547 +MN,POINT (-73.96749300041485 40.802126000348146),12463,Free,LinkNYC - Citybridge,mn-07-120402,249 WEST 107 STREET,40.8021260003,-73.9674930004,993249.759876,231514.811298,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001600,07/08/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1056647,1018790000,3548 +MN,POINT (-73.96758499958345 40.802297999934424),12464,Free,LinkNYC - Citybridge,mn-07-134388,2780 BROADWAY,40.8022979999,-73.9675849996,993224.26616,231577.467341,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001601,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1056647,1018790000,3549 +MN,POINT (-73.96814900005937 40.80245499974099),12465,Free,LinkNYC - Citybridge,mn-07-120266,2781 BROADWAY,40.8024549997,-73.9681490001,993068.098822,231634.610599,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001602,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,6,10025,107,195,1019500,1057283,1018920050,3550 +MN,POINT (-73.96746100024517 40.80273600006642),12466,Free,LinkNYC - Citybridge,mn-07-134069,2794 BROADWAY,40.8027360001,-73.9674610002,993258.536761,231737.058885,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001603,10/12/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1056672,1018790060,3551 +MN,POINT (-73.9673789999845 40.802944000223114),12467,Free,LinkNYC - Citybridge,mn-07-120401,2800 BROADWAY,40.8029440002,-73.967379,993281.2106,231812.849088,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001604,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1056673,1018800000,3552 +MN,POINT (-73.96738099998161 40.80372099973719),12468,Free,LinkNYC - Citybridge,mn-07-120268,301 WEST 109 STREET,40.8037209997,-73.967381,993280.551481,232095.937105,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001605,06/29/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1057315,1018930040,3553 +MN,POINT (-73.96670754048789 40.80386123007354),12469,Free,LinkNYC - Citybridge,mn-07-134385,2828 BROADWAY,40.8038612301,-73.9667075405,993466.978929,232147.098091,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001606,10/12/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1086018,1018810000,3554 +MN,POINT (-73.96590250035081 40.80495915010854),12470,Free,LinkNYC - Citybridge,mn-09-134377,2868 BROADWAY,40.8049591501,-73.9659025004,993689.697644,232547.194732,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001609,08/18/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1075433,1018837500,3555 +MN,POINT (-73.96566951963953 40.805279640418114),12471,Free,LinkNYC - Citybridge,mn-09-134690,2878 BROADWAY,40.8052796404,-73.9656695196,993754.151255,232663.985837,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001610,11/03/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1056988,1018830060,3556 +MN,POINT (-73.9655261001448 40.80547204044376),12472,Free,LinkNYC - Citybridge,mn-09-120409,2880 BROADWAY,40.8054720404,-73.9655261001,993793.828341,232734.099542,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001612,06/29/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1056989,1018840000,3557 +MN,POINT (-73.97414806046429 40.75096552024985),12473,Free,LinkNYC - Citybridge,mn-06-133439,675 3 AVENUE,40.7509655202,-73.9741480605,991412.767159,212874.713736,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001675,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037549,1013160000,3558 +MN,POINT (-73.96508100025474 40.805923000357744),12474,Free,LinkNYC - Citybridge,mn-09-120408,562 WEST 113 STREET,40.8059230004,-73.9650810003,993916.985247,232898.448951,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001676,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1057014,1018840060,3559 +MN,POINT (-73.95579589037156 40.818813380164826),12475,Free,LinkNYC - Citybridge,mn-09-120412,3300 BROADWAY,40.8188133802,-73.9557958904,996485.107408,237596.0347,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001677,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,219,1021900,1059728,1019870000,3560 +MN,POINT (-73.95526804010915 40.82027959001869),12476,Free,LinkNYC - Citybridge,mn-09-120374,601 WEST 135 STREET,40.82027959,-73.9552680401,996630.936512,238130.302004,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001678,07/06/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,223,1022301,1059958,1020020030,3561 +MN,POINT (-73.95480752990859 40.82076418992904),12477,Free,LinkNYC - Citybridge,mn-09-120365,3359 BROADWAY,40.8207641899,-73.9548075299,996758.30568,238306.924683,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001680,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,223,1022301,1059959,1020020030,3562 +MN,POINT (-73.9536760001204 40.82231900040551),12478,Free,LinkNYC - Citybridge,mn-09-111128,3407 BROADWAY,40.8223190004,-73.9536760001,997071.189241,238873.562001,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001682,07/14/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062299,1020870030,3563 +MN,POINT (-73.95300699949081 40.822495000002064),12479,Free,LinkNYC - Citybridge,mn-09-120419,572 WEST 139 STREET,40.822495,-73.9530069995,997256.315511,238937.783657,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001683,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1061709,1020700000,3564 +MN,POINT (-73.95304100052438 40.82332599961947),12480,Free,LinkNYC - Citybridge,mn-09-120371,600 WEST 140 STREET,40.8233259996,-73.9530410005,997246.742695,239240.54191,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001684,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062311,1020870100,3565 +MN,POINT (-73.95258141977651 40.82382134000728),12481,Free,LinkNYC - Citybridge,mn-09-141129,3457 BROADWAY,40.82382134,-73.9525814198,997373.842179,239421.080919,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001685,07/13/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062321,1020880040,3566 +MN,POINT (-73.96421034050627 40.80804124009329),12482,Free,LinkNYC - Citybridge,mn-09-120262,600 WEST 116 STREET,40.8080412401,-73.9642103405,994157.703598,233670.295832,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001688,06/29/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,205,1020500,1057380,1018960070,3567 +MN,POINT (-73.96448800052848 40.80750799964154),12483,Free,LinkNYC - Citybridge,mn-09-137848,2943 BROADWAY,40.8075079996,-73.9644880005,994080.917334,233475.986182,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001689,09/06/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,205,1020500,1057379,1018960070,3568 +MN,POINT (-73.96464555038747 40.80729580965056),12484,Free,LinkNYC - Citybridge,mn-09-120261,2939 BROADWAY,40.8072958097,-73.9646455504,994037.333432,233398.660221,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001690,03/13/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,205,1020500,1057388,1018967500,3569 +MN,POINT (-73.96510800010488 40.80676000011369),12485,Free,LinkNYC - Citybridge,mn-09-120387,600 WEST 114 STREET,40.8067600001,-73.9651080001,993909.389134,233203.394535,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001691,02/27/2017 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1057351,1018950060,3570 +MN,POINT (-73.95159699994032 40.8245589998398),12486,Free,LinkNYC - Citybridge,mn-09-111652,3480 BROADWAY,40.8245589998,-73.9515969999,997646.147408,239689.986221,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001695,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061843,1020740000,3571 +MN,POINT (-73.95165569992406 40.82508960011498),12487,Free,LinkNYC - Citybridge,mn-09-120360,3497 BROADWAY,40.8250896001,-73.9516556999,997629.794751,239883.294233,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001696,07/06/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1062347,1020890030,3572 +MN,POINT (-73.95148794954805 40.82531855001443),12488,Free,LinkNYC - Citybridge,mn-09-135619,3501 BROADWAY,40.82531855,-73.9514879495,997676.175235,239966.734683,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001697,08/18/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1062361,1020900030,3573 +MN,POINT (-73.95090699964491 40.82550799985161),12489,Free,LinkNYC - Citybridge,mn-09-111954,3514 BROADWAY,40.8255079999,-73.9509069996,997836.919993,240035.847734,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001699,07/14/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061895,1020750060,3574 +MN,POINT (-73.95048200044788 40.82609000020345),12490,Free,LinkNYC - Citybridge,mn-09-111651,3536 BROADWAY,40.8260900002,-73.9504820004,997954.422382,240247.957874,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001702,07/14/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061922,1020760060,3575 +MN,POINT (-73.95071631014763 40.82637628974439),12491,Free,LinkNYC - Citybridge,mn-09-120363,3539 BROADWAY,40.8263762897,-73.9507163101,997889.517,240352.227022,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001703,10/21/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1062370,1020910040,3576 +MN,POINT (-73.94786799984885 40.82544599964419),12492,Free,LinkNYC - Citybridge,mn-09-100210,501 WEST 145 STREET,40.8254459996,-73.9478679998,998678.003284,240013.74476,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001705,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061939,1020770030,3577 +MN,POINT (-73.94760400058173 40.82541900020004),12493,Free,LinkNYC - Citybridge,mn-09-120565,1722 AMSTERDAM AVENUE,40.8254190002,-73.9476040006,998751.073348,240003.951472,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-001706,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061940,1020770030,3578 +SI,POINT (-74.11216060955675 40.561755060236095),12494,Free,LinkNYC - Citybridge,si-03-125464,285 MILL ROAD,40.5617550602,-74.1121606096,953085.532133,143958.945728,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001710,01/25/2017 12:00:00 AM +0000,5,Staten Island,SI25,Oakwood-Oakwood Beach,50,10306,503,128,5012806,5105550,5039830000,3579 +QU,POINT (-73.83551499942519 40.71068799971883),11507,Limited Free,SPECTRUM,Overlook Park,Area outside HQ building,40.7106879997,-73.8355149994,1029851.19848,198242.11144,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,482,773,4077300,0,4033122000,211 +SI,POINT (-74.11422426023825 40.56585176001421),12495,Free,LinkNYC - Citybridge,si-02-145544,2710 HYLAN BOULEVARD,40.56585176,-74.1142242602,952514.081505,145452.213083,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001712,02/22/2017 12:00:00 AM +0000,5,Staten Island,SI25,Oakwood-Oakwood Beach,50,10306,502,128,5012806,5107584,5039830010,3580 +SI,POINT (-74.10965729006045 40.570311849577294),12496,Free,LinkNYC - Citybridge,si-02-125463,404 NEW DORP LANE,40.5703118496,-74.1096572901,953784.995958,147075.510361,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001714,02/22/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,128,5012804,5055368,5039600000,3581 +SI,POINT (-74.10991799985575 40.5706349998141),12497,Free,LinkNYC - Citybridge,si-02-125470,381 NEW DORP LANE,40.5706349998,-74.1099179999,953712.713294,147193.332632,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001715,12/09/2016 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052858,5036490000,3582 +SI,POINT (-74.11408666022346 40.57285318981084),12498,Free,LinkNYC - Citybridge,si-02-125472,201 NEW DORP LANE,40.5728531898,-74.1140866602,952555.634243,148002.954044,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001716,12/09/2016 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052593,5036370010,3583 +SI,POINT (-74.10231000023288 40.577771000218306),12499,Free,LinkNYC - Citybridge,si-02-125467,2154 HYLAN BOULEVARD,40.5777710002,-74.1023100002,955829.3941,149790.591873,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001750,02/22/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,112,5011202,5053558,5036910010,3584 +SI,POINT (-74.10073200029319 40.5909830001655),12500,Free,LinkNYC - Citybridge,si-02-125476,19 SEAVIEW AVENUE,40.5909830002,-74.1007320003,956273.280351,154603.543533,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001752,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10304,502,96,5009602,5048677,5033050090,3585 +SI,POINT (-74.08262136064263 40.59839673274482),12501,Free,LinkNYC - Citybridge,si-02-145522,1177 HYLAN BOULEVARD,40.5983967327,-74.0826213606,961305.769958,157299.289454,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-001757,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,502,96,5009601,5047160,5032080020,3586 +BX,POINT (-73.89872999954734 40.86762699962298),12502,Free,LinkNYC - Citybridge,bx-07-119873,26 WEST KINGSBRIDGE ROAD,40.8676269996,-73.8987299995,1012259.61851,255393.774367,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001773,07/15/2016 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,265,2026500,2014457,2032050030,3587 +BX,POINT (-73.89957569999959 40.86782870997125),12503,Free,LinkNYC - Citybridge,bx-07-119874,56 WEST KINGSBRIDGE ROAD,40.86782871,-73.8995757,1012025.62751,255466.996005,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001774,07/19/2016 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,265,2026500,2014680,2032150030,3588 +BX,POINT (-73.9003140396783 40.86231328962962),12504,Free,LinkNYC - Citybridge,bx-05-119573,2454 WALTON AVENUE,40.8623132896,-73.9003140397,1011823.70239,253457.281521,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001777,09/15/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,239,2023900,2014027,2031840040,3589 +BX,POINT (-73.90236899971805 40.8606299995518),12505,Free,LinkNYC - Citybridge,bx-05-119606,2374 JEROME AVENUE,40.8606299996,-73.9023689997,1011255.97255,252843.353943,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001780,07/01/2016 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,14,10468,205,239,2023900,2014093,2031880000,3590 +BX,POINT (-73.92174699978035 40.83146699978043),12506,Free,LinkNYC - Citybridge,bx-04-119048,105 EAST 165 STREET,40.8314669998,-73.9217469998,1005905.2654,242212.795152,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001785,06/15/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10452,204,195,2019500,2002953,2024780060,3591 +BX,POINT (-73.9239059905922 40.827655320270225),12507,Free,LinkNYC - Citybridge,bx-04-101603,895 WALTON AVENUE,40.8276553203,-73.9239059906,1005309.00577,240823.534479,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001786,05/11/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10452,204,195,2019500,2002919,2024760060,3592 +BX,POINT (-73.90555221981226 40.85304297955888),12508,Free,LinkNYC - Citybridge,bx-05-119590,104 EAST BURNSIDE AVENUE,40.8530429796,-73.9055522198,1010378.43428,250078.147203,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001787,07/01/2016 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,241,2024100,2007668,2028070060,3593 +MN,POINT (-73.97232599953716 40.753899000295185),12509,Free,LinkNYC - Citybridge,mn-06-121816,754 3 AVENUE,40.7538990003,-73.9723259995,991917.265822,213943.629577,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000331,02/22/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036207,1013010030,3160 +MN,POINT (-73.97218000024814 40.754092000186496),12510,Free,LinkNYC - Citybridge,mn-06-133473,760 3 AVENUE,40.7540920002,-73.9721800002,991957.693562,214013.958505,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000333,02/22/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036217,1013020030,3161 +MN,POINT (-73.97187608974889 40.75451175013583),12511,Free,LinkNYC - Citybridge,mn-06-121813,770 3 AVENUE,40.7545117501,-73.9718760897,992041.844641,214166.913908,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000334,02/28/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036217,1013020030,3162 +MN,POINT (-73.97103227964013 40.75523347979948),12512,Free,LinkNYC - Citybridge,mn-06-121824,797 3 AVENUE,40.7552334798,-73.9710322796,992275.538727,214429.939628,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000335,03/08/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038223,1013230000,3163 +MN,POINT (-73.97102967983068 40.75587720985807),12513,Free,LinkNYC - Citybridge,mn-06-121820,800 3Rd Ave,40.7558772099,-73.9710296798,992276.181442,214664.471639,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000336,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036446,1013040030,3164 +MN,POINT (-73.97125095986767 40.75535623023533),12514,Free,LinkNYC - Citybridge,mn-06-121822,798 3 AVENUE,40.7553562302,-73.9712509599,992214.938455,214474.641639,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000337,03/08/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036446,1013040030,3165 +MN,POINT (-73.97014330028298 40.756326330237165),12515,Free,LinkNYC - Citybridge,mn-06-121831,835 3Rd Ave,40.7563263302,-73.9701433003,992521.695715,214828.183254,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000338,05/20/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1081187,1013240050,3166 +MN,POINT (-73.97011147010987 40.75650489036015),12516,Free,LinkNYC - Citybridge,mn-06-133472,845 3 AVENUE,40.7565048904,-73.9701114701,992530.491957,214893.241523,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000339,03/08/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038464,1013250000,3167 +MN,POINT (-73.96981621013585 40.75691135002512),12517,Free,LinkNYC - Citybridge,mn-06-133477,845 3 AVENUE,40.75691135,-73.9698162101,992612.241466,215041.356056,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000340,03/28/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038464,1013250000,3168 +MN,POINT (-73.97008839003492 40.75711321971212),12518,Free,LinkNYC - Citybridge,mn-06-137315,850 3Rd Avenue,40.7571132197,-73.97008839,992536.810514,215114.877891,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000342,02/05/2019 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036462,1013060030,3169 +MN,POINT (-73.9696149601241 40.75772905027292),12519,Free,LinkNYC - Citybridge,mn-06-121839,866 3Rd Ave,40.7577290503,-73.9696149601,992667.893257,215339.290172,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000344,05/05/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036469,1013077500,3170 +MN,POINT (-73.96943630955867 40.75785145008174),12520,Free,LinkNYC - Citybridge,mn-06-139110,880 3 AVENUE,40.7578514501,-73.9694363096,992717.371177,215383.901631,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000346,10/25/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036473,1013080030,3171 +MN,POINT (-73.96896330057066 40.758508060079514),12521,Free,LinkNYC - Citybridge,mn-06-135879,900 3 AVENUE,40.7585080601,-73.9689633006,992848.32892,215623.17215,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000349,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1081162,1013090030,3172 +MN,POINT (-73.96872699970831 40.75899299999939),12522,Free,LinkNYC - Citybridge,mn-06-121842,906 3Rd Ave,40.758993,-73.9687269997,992913.730036,215799.87488,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000350,07/01/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036483,1013090040,3173 +MN,POINT (-73.96872336037657 40.758403019724724),12523,Free,LinkNYC - Citybridge,mn-06-121836,909 3 AVENUE,40.7584030197,-73.9687233604,992914.815008,215584.926163,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000351,03/18/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1038570,1013280000,3174 +MN,POINT (-73.96841697963825 40.7588199797665),12524,Free,LinkNYC - Citybridge,mn-06-121854,909 3 AVENUE,40.7588199798,-73.9684169796,992999.639313,215736.868773,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000352,03/15/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1038570,1013280000,3175 +MN,POINT (-73.96824200015323 40.75961000037517),12525,Free,LinkNYC - Citybridge,mn-06-121850,930 3Rd Ave,40.7596100004,-73.9682420002,993048.010607,216024.716622,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000355,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036524,1013100040,3176 +MN,POINT (-73.96804800021988 40.7597559995986),12526,Free,LinkNYC - Citybridge,mn-06-136181,936 3 AVENUE,40.7597559996,-73.9680480002,993101.735565,216077.928458,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000357,03/15/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1036879,1013110030,3177 +MN,POINT (-73.96756750951843 40.760005189877035),12527,Free,LinkNYC - Citybridge,mn-06-133436,939 3 AVENUE,40.7600051899,-73.9675675095,993234.813383,216168.765547,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000359,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1038590,1013300000,3178 +MN,POINT (-73.96782750975635 40.7596316397595),12528,Free,LinkNYC - Citybridge,mn-06-121849,949 3 AVENUE,40.7596316398,-73.9678275098,993162.835181,216032.64246,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000360,03/24/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1038590,1013300000,3179 +MN,POINT (-73.9677744002082 40.76013485037597),12529,Free,LinkNYC - Citybridge,mn-06-121733,950 3 AVENUE,40.7601348504,-73.9677744002,993177.480821,216215.983956,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000361,03/18/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1036882,1013110040,3180 +MN,POINT (-73.96730566965105 40.76034713025139),12530,Free,LinkNYC - Citybridge,mn-06-121857,953 3 AVENUE,40.7603471303,-73.9673056697,993307.304708,216293.372581,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000362,06/27/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1089950,1013310000,3181 +MN,POINT (-73.96753849952732 40.76045675959568),12531,Free,LinkNYC - Citybridge,mn-06-138438,954 3 AVENUE,40.7604567596,-73.9675384995,993242.789089,216333.290152,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000363,03/18/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1036912,1013120030,3182 +MN,POINT (-74.00690370948587 40.748757839623536),11487,Free,LinkNYC - Citybridge,mn-04-123504,568 WEST 23 STREET,40.7487578396,-74.0069037095,982337.133735,212069.403011,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-013993,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,1012340,1006940070,4382 +MN,POINT (-73.99453699991867 40.74544799964507),11488,Free,LinkNYC - Citybridge,mn-04-123661,267 7 AVENUE,40.7454479996,-73.9945369999,985763.752538,210863.494005,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014008,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,91,1009100,1015000,1008010000,4383 +MN,POINT (-73.98506899944617 40.74461400007714),11489,Free,LinkNYC - Citybridge,mn-05-123789,25 EAST 29 STREET,40.7446140001,-73.9850689994,988387.309627,210559.946712,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014013,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,1016929,1008590020,4384 +MN,POINT (-73.98324565043372 40.731538570332496),11490,Free,LinkNYC - Citybridge,mn-03-123800,344 EAST 14 STREET,40.7315385703,-73.9832456504,988893.462158,205796.245938,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014014,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006521,1004550030,4385 +MN,POINT (-73.98282700013749 40.731219039816594),11491,Free,LinkNYC - Citybridge,mn-03-123802,237 1 AVENUE,40.7312190398,-73.9828270001,989009.513763,205679.853454,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014015,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006522,1004550030,4386 +BX,POINT (-73.91468375028087 40.81846074035301),11492,Free,LinkNYC - Citybridge,bx-01-123214,2969 3 AVENUE,40.8184607404,-73.9146837503,1007864.52133,237475.968011,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014021,12/28/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2001382,2023750050,4387 +BK,POINT (-73.95035243996655 40.67064686985914),11493,Free,LinkNYC - Citybridge,bk-08-126832,777 NOSTRAND AVENUE,40.6706468699,-73.95035244,998022.376971,183615.043253,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-014052,02/23/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11216,308,317,3031702,3032653,3012620000,4388 +QU,POINT (-73.84283995008714 40.69525640040385),11494,Free,LinkNYC - Citybridge,qu-09-104094,104-13 JAMAICA AVENUE,40.6952564004,-73.8428399501,1027830.54603,192616.199463,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014063,06/26/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,26,4002600,4192008,4092000040,4389 +MN,POINT (-73.99073199986442 40.74607299960401),11495,Free,LinkNYC - Citybridge,mn-05-108540,100 WEST 28 STREET,40.7460729996,-73.9907319999,986818.062765,211091.290138,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014075,02/04/2019 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015082,1008030040,4390 +SI,POINT (-74.08168300006525 40.575082999880564),11496,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5750829999,-74.0816830001,961558.435463,148805.269369,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038510050,200 +SI,POINT (-74.08067700054436 40.57574799995191),11497,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.575748,-74.0806770005,961838.125521,149047.286273,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038330003,201 +SI,POINT (-74.07998699989754 40.576236000390956),11498,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5762360004,-74.0799869999,962029.968313,149224.901075,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038330003,202 +SI,POINT (-74.07962400048666 40.57648299991301),11499,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5764829999,-74.0796240005,962130.889699,149314.797221,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038330003,203 +SI,POINT (-74.07858099957068 40.57722199965799),11500,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5772219997,-74.0785809996,962420.871074,149583.771421,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038330100,204 +SI,POINT (-74.07799299973534 40.57777200038156),11501,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5777720004,-74.0779929997,962584.39076,149784.004288,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5038330100,205 +SI,POINT (-74.0768009998197 40.57863099964378),11502,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5786309996,-74.0768009998,962915.789704,150096.666392,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,11201,5011201,0,5035250200,206 +SI,POINT (-74.07635900032763 40.57958099990418),11503,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5795809999,-74.0763590003,963038.872463,150442.667669,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,70,5007000,0,5035250200,207 +SI,POINT (-74.07589899964992 40.57998600035398),11504,Limited Free,SPECTRUM,Midland Beach and Franklin D. Roosevelt Boardwalk,Along Boardwalk and Beach,40.5799860004,-74.0758989996,963166.780016,150590.108319,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI36,Old Town-Dongan Hills-South Beach,50,10305,595,70,5007000,0,5035250200,208 +QU,POINT (-73.83552800028745 40.71081800005757),11505,Limited Free,SPECTRUM,Overlook Park,1st Fl Conference Rm,40.7108180001,-73.8355280003,1029847.50525,198289.467644,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,482,773,4077300,4442874,4033122000,209 +QU,POINT (-73.83559900010937 40.70977300002564),11506,Limited Free,SPECTRUM,Overlook Park,Area by comfort station,40.709773,-73.8355990001,1029828.53613,197908.706267,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,482,773,4077300,0,4033122000,210 +BK,POINT (-74.03209099982574 40.63927799997904),11508,Limited Free,SPECTRUM,Owl's Head Park,Comfort station - Front Left,40.639278,-74.0320909998,975343.676593,172184.221954,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11220,310,34,3003400,0,3058320002,212 +BK,POINT (-74.03193299966816 40.639230999968674),11509,Limited Free,SPECTRUM,Owl's Head Park,Comfort station - Front right,40.639231,-74.0319329997,975387.520666,172167.082553,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11220,310,34,3003400,0,3058320002,213 +BK,POINT (-74.03189599949302 40.6392919996648),11510,Limited Free,SPECTRUM,Owl's Head Park,Comfort station - Back Right,40.6392919997,-74.0318959995,975397.797548,172189.302653,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK31,Bay Ridge,43,11220,310,34,3003400,0,3058320002,214 +BK,POINT (-73.88777000020063 40.65866199990004),11511,Limited Free,ALTICEUSA,Linden Park,IN PARK NORTH WEST SIDE,40.6586619999,-73.8877700002,1015388.51448,179264.66219,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11207,305,1104,3110400,0,3043490001,215 +BK,POINT (-73.88744000002511 40.658147999809366),11512,Limited Free,ALTICEUSA,Linden Park,IN PARK SOUTH WEST SIDE PLAYGROUND AREA,40.6581479998,-73.88744,1015480.3145,179077.515254,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11207,305,1104,3110400,0,3043490001,216 +BK,POINT (-73.98197499972373 40.68933399981078),11513,Free,Downtown Brooklyn,,466 Fulton St. (Pole),40.6893339998,-73.9819749997,989248.786578,190419.914814,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,37,3003700,3000447,3001570016,1035 +BK,POINT (-73.98197499972373 40.68933399981078),11514,Free,Downtown Brooklyn,,466 Fulton St. (Pole),40.6893339998,-73.9819749997,989248.786578,190419.914814,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,37,3003700,3000447,3001570016,1036 +BK,POINT (-73.98662000054338 40.69122400037943),11515,Free,Downtown Brooklyn,,469 Fulton St.,40.6912240004,-73.9866200005,987960.50569,191108.266455,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000376,3001510001,1038 +BK,POINT (-73.98316500026228 40.68963300008067),11516,Free,Downtown Brooklyn,,490 Fulton St.,40.6896330001,-73.9831650003,988918.748525,190528.78369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000454,3001597501,1039 +BK,POINT (-73.98316500026228 40.68963300008067),11517,Free,Downtown Brooklyn,,490 Fulton St.,40.6896330001,-73.9831650003,988918.748525,190528.78369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000454,3001597501,1040 +BK,POINT (-73.98316500026228 40.68963300008067),11518,Free,Downtown Brooklyn,,490 Fulton St.,40.6896330001,-73.9831650003,988918.748525,190528.78369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000454,3001597501,1041 +BK,POINT (-73.98316500026228 40.68963300008067),11519,Free,Downtown Brooklyn,,490 Fulton St.,40.6896330001,-73.9831650003,988918.748525,190528.78369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000454,3001597501,1042 +BK,POINT (-73.98316500026228 40.68963300008067),11520,Free,Downtown Brooklyn,,490 Fulton St.,40.6896330001,-73.9831650003,988918.748525,190528.78369,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000454,3001597501,1043 +BK,POINT (-73.986787000141 40.692144000012675),11521,Free,Downtown Brooklyn,,54 Willoughby St.,40.692144,-73.9867870001,987914.14325,191443.442294,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000391,3001510027,1044 +BK,POINT (-73.986787000141 40.692144000012675),11522,Free,Downtown Brooklyn,,54 Willoughby St.,40.692144,-73.9867870001,987914.14325,191443.442294,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,3000391,3001510027,1045 +BK,POINT (-73.98197499972373 40.68933399981078),11523,Free,Downtown Brooklyn,,573 Fulton St. (Pole),40.6893339998,-73.9819749997,989248.786578,190419.914814,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,33,11201,302,33,3003300,3000357,3001490022,1047 +BK,POINT (-73.97447199980874 40.6853080002737),11524,Free,Downtown Brooklyn,,80 Hanson Place,40.6853080003,-73.9744719998,991329.984844,188953.64314,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3057479,3020030034,1048 +BK,POINT (-73.97447199980874 40.6853080002737),11525,Free,Downtown Brooklyn,,80 Hanson Place,40.6853080003,-73.9744719998,991329.984844,188953.64314,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3057479,3020030034,1049 +BK,POINT (-73.98230199942172 40.688825000274015),11526,Free,Downtown Brooklyn,,9 Hanover Place (Gate),40.6888250003,-73.9823019994,989158.138794,190234.452914,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000464,3001610027,1050 +BK,POINT (-73.98230199942172 40.688825000274015),11527,Free,Downtown Brooklyn,,9 Hanover Place (Gate),40.6888250003,-73.9823019994,989158.138794,190234.452914,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000464,3001610027,1051 +BK,POINT (-73.99008899965621 40.69306900004875),11528,Free,Downtown Brooklyn,,Boro Hall Park 1 (Pole),40.693069,-73.9900889997,986998.416079,191780.326135,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,3001390001,1052 +BK,POINT (-73.99008899965621 40.69306900004875),11529,Free,Downtown Brooklyn,,Boro Hall Park 1 (Pole),40.693069,-73.9900889997,986998.416079,191780.326135,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,3001390001,1053 +MN,POINT (-73.94331559838257 40.80616044207548),12596,Free,NYPL,Harlem,9 WEST 124 STREET,40.8061604421,-73.9433155984,999942.468275,232988.107892,Library,,New York,NYPL,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,1053460,1017220030,456 +BK,POINT (-73.99008899965621 40.69306900004875),11530,Free,Downtown Brooklyn,,Boro Hall Park 2 (Pole),40.693069,-73.9900889997,986998.416079,191780.326135,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,3001390001,1054 +BK,POINT (-73.99008899965621 40.69306900004875),11531,Free,Downtown Brooklyn,,Boro Hall Park 2 (Pole),40.693069,-73.9900889997,986998.416079,191780.326135,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,11,3001100,0,3001390001,1055 +BK,POINT (-73.98607399979622 40.69665199978469),11532,Free,Downtown Brooklyn,,McLaughlin Park,40.6966519998,-73.9860739998,988111.606766,193085.870112,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3000207,3001190001,1056 +BK,POINT (-73.98607399979622 40.69665199978469),11533,Free,Downtown Brooklyn,,McLaughlin Park,40.6966519998,-73.9860739998,988111.606766,193085.870112,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3000207,3001190001,1057 +BK,POINT (-73.98607399979622 40.69665199978469),11534,Free,Downtown Brooklyn,,McLaughlin Park,40.6966519998,-73.9860739998,988111.606766,193085.870112,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,13,3001300,3000207,3001190001,1058 +QU,POINT (-73.88493799962329 40.72050799964973),11535,Limited Free,SPECTRUM,Juniper Valley Park,71st St Ball Field South Area,40.7205079996,-73.8849379996,1016144.66323,201797.97047,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,0,1059 +QU,POINT (-73.88252399961407 40.71822400024068),11536,Limited Free,SPECTRUM,Juniper Valley Park,71st St Ball Field Center Area,40.7182240002,-73.8825239996,1016814.92862,200966.728366,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,661,4066100,0,0,1060 +QU,POINT (-73.87711899986613 40.71970000000468),11537,Limited Free,SPECTRUM,Juniper Valley Park,71st St Ball Field North Area,40.7197,-73.8771189999,1018312.46598,201506.535357,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN21,Middle Village,30,11379,405,663,4066300,0,0,1061 +QU,POINT (-73.85288200042696 40.68561600009205),11538,Limited Free,SPECTRUM,London Planetree Playground,Playground,40.6856160001,-73.8528820004,1025051.78289,189099.087731,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11416,409,34,4003400,0,0,1062 +QU,POINT (-73.85385399948902 40.686245000242785),11539,Limited Free,SPECTRUM,London Planetree Playground,Skate Park,40.6862450002,-73.8538539995,1024781.82608,189327.799216,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11416,409,34,4003400,0,0,1063 +QU,POINT (-73.85315300034213 40.68707300023862),11540,Limited Free,SPECTRUM,London Planetree Playground,Handball Court,40.6870730002,-73.8531530003,1024975.73383,189629.788441,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,16,4001600,0,0,1064 +QU,POINT (-73.85403499969789 40.68688899994636),11541,Limited Free,SPECTRUM,London Planetree Playground,Handball Court,40.6868889999,-73.8540349997,1024731.23694,189562.343038,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,16,4001600,0,0,1065 +QU,POINT (-73.8656070002564 40.73167499982272),11542,Limited Free,SPECTRUM,Lost Battalion Hall Recreation Center,Sr. Dinning Area,40.7316749998,-73.8656070003,1021496.88252,205874.079771,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,71702,4071702,4050408,4020770050,1066 +QU,POINT (-73.86562299948606 40.73225299959045),11543,Limited Free,SPECTRUM,Lost Battalion Hall Recreation Center,Intersection of 62 Ave & 93rd St,40.7322529996,-73.8656229995,1021492.12531,206084.656122,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,71702,4071702,0,0,1067 +QU,POINT (-73.8651190000478 40.73268600015558),11544,Limited Free,SPECTRUM,Lost Battalion Hall Recreation Center,Intersection of 62 Ave & dead end,40.7326860002,-73.865119,1021631.564,206242.626278,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,71702,4071702,0,0,1068 +QU,POINT (-73.8656070002564 40.73167499982272),11545,Limited Free,SPECTRUM,Lost Battalion Hall Recreation Center,1st Fl Gymnasium,40.7316749998,-73.8656070003,1021496.88252,205874.079771,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,71702,4071702,4050408,4020770050,1069 +QU,POINT (-73.8656070002564 40.73167499982272),11546,Limited Free,SPECTRUM,Lost Battalion Hall Recreation Center,2nd Fl After School Rm,40.7316749998,-73.8656070003,1021496.88252,205874.079771,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN18,Rego Park,29,11374,406,71702,4071702,4050408,4020770050,1070 +BK,POINT (-73.94951099979386 40.72007899968208),11547,Limited Free,SPECTRUM,McCarren Park,Track & Field,40.7200789997,-73.9495109998,998245.414583,201624.758546,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,1071 +BK,POINT (-73.94951099979386 40.72007899968208),11548,Limited Free,SPECTRUM,McCarren Park,Track & Field,40.7200789997,-73.9495109998,998245.414583,201624.758546,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11222,301,515,3051500,0,3026960001,1072 +MN,POINT (-73.94490899985944 40.805012999655474),11549,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Dining Hall,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1073 +MN,POINT (-73.9448849996566 40.80501000032917),11550,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Computer Resource Rm,40.8050100003,-73.9448849997,999508.260154,232568.684191,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1074 +MN,POINT (-73.94490899985944 40.805012999655474),11551,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Library,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1075 +MN,POINT (-73.94490899985944 40.805012999655474),11552,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Backstage area,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1076 +MN,POINT (-73.94490899985944 40.805012999655474),11553,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,North Hallway,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1077 +MN,POINT (-73.94490899985944 40.805012999655474),11554,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Baseball Diamond Corner,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1078 +MN,POINT (-73.94490899985944 40.805012999655474),11555,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Amplitheater,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1079 +MN,POINT (-73.94490899985944 40.805012999655474),11556,Limited Free,SPECTRUM,Pelham Fritz Recreation Center,Park Area North,40.8050129997,-73.9449089999,999501.615154,232569.772771,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10027,111,198,1019800,1083967,1017190001,1080 +MN,POINT (-73.96508399997795 40.75741800043089),11557,Limited Free,SPECTRUM,Recreation Center 54,1st Floor Lobby,40.7574180004,-73.965084,993923.198818,215226.432458,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1078235,1013470038,1081 +MN,POINT (-73.96508399997795 40.75741800043089),11558,Limited Free,SPECTRUM,Recreation Center 54,2nd fl multi purpose room,40.7574180004,-73.965084,993923.198818,215226.432458,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1078235,1013470038,1082 +QU,POINT (-73.8298549997256 40.579985999900074),11559,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 109 - Street and Beach,40.5799859999,-73.8298549997,1031512.84509,150626.874977,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1113 +QU,POINT (-73.83576100055951 40.57784599983524),11560,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 116 - Comfort Station and Beach,40.5778459998,-73.8357610006,1029873.74109,149844.089798,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1114 +QU,POINT (-73.83578799992898 40.57787799988978),11561,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 116 - Rear of Comfort Station,40.5778779999,-73.8357879999,1029866.21912,149855.734131,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1115 +QU,POINT (-73.83560100025531 40.57789799968051),11562,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 116 - Comfort Station and Beach,40.5778979997,-73.8356010003,1029918.15176,149863.117975,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1116 +QU,POINT (-73.83566400042547 40.577871000200226),11563,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Beach 116 - Comfort Station and Beach,40.5778710002,-73.8356640004,1029900.66951,149853.248572,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN10,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel,32,11694,414,938,4093800,0,0,1117 +QU,POINT (-73.74498799969581 40.596478999841615),11564,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Playground and BB Court,40.5964789998,-73.7449879997,1055069.63558,156692.874656,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1118 +QU,POINT (-73.74538900026394 40.5963739997037),11565,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Playground and BB Court,40.5963739997,-73.7453890003,1054958.38482,156654.29665,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1119 +MN,POINT (-73.9671011702745 40.76064428989969),12532,Free,LinkNYC - Citybridge,mn-06-133481,969 3 AVENUE,40.7606442899,-73.9671011703,993363.916472,216401.658782,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000364,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1076271,1013317500,3183 +MN,POINT (-73.96677925964812 40.76148352002434),12533,Free,LinkNYC - Citybridge,mn-06-121746,974 3Rd Ave,40.76148352,-73.9667792596,993452.978957,216707.451477,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000365,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1086160,1013137500,3184 +MN,POINT (-73.96707577996965 40.76109515990146),12534,Free,LinkNYC - Citybridge,mn-06-133433,974 3 AVENUE,40.7610951599,-73.96707578,993370.88857,216565.928138,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000366,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1086160,1013137500,3185 +MN,POINT (-73.96638829980441 40.76160412015447),12535,Free,LinkNYC - Citybridge,mn-08-121734,991 3 AVENUE,40.7616041202,-73.9663882998,993561.267783,216751.431376,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000369,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10022,108,110,1011000,1043336,1014140000,3186 +MN,POINT (-73.98148038978157 40.741487090165684),12536,Free,LinkNYC - Citybridge,mn-06-136126,161 E 27Th STREET,40.7414870902,-73.9814803898,989381.937231,209420.903715,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000371,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,106,68,1006800,1018177,1008830040,3187 +MN,POINT (-73.98288599976514 40.73882700030091),12537,Free,LinkNYC - Citybridge,mn-06-121490,301 3Rd Ave,40.7388270003,-73.9828859998,988992.620424,208451.669433,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000374,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1082135,1009040000,3188 +MN,POINT (-73.97972100057736 40.76614800022246),12538,Free,LinkNYC - Citybridge,mn-05-122631,916 7 AVENUE,40.7661480002,-73.9797210006,989867.39853,218405.78043,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000375,07/12/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1024904,1010290040,3189 +MN,POINT (-73.97719468017824 40.76451316985691),12539,Free,LinkNYC - Citybridge,mn-05-122629,101 West 57Th,40.7645131699,-73.9771946802,990567.358744,217810.329849,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000398,05/08/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1023730,1010100030,3190 +MN,POINT (-73.98389867982743 40.75495097962525),12540,Free,LinkNYC - Citybridge,mn-05-122814,1100 Ave Of The Americas,40.7549509796,-73.9838986798,988710.907405,214326.098629,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000419,04/03/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,96,1009600,1034195,1012580000,3191 +MN,POINT (-74.0018069998243 40.740530999943395),12541,Free,LinkNYC - Citybridge,mn-04-135039,104 8 AVENUE,40.7405309999,-74.0018069998,983749.258207,209072.032365,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000444,07/12/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1081534,1007650000,3192 +MN,POINT (-74.00259997957458 40.73944747013754),12542,Free,LinkNYC - Citybridge,mn-02-128511,74 8 AVENUE,40.7394474701,-74.0025999796,983529.502085,208677.27364,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000447,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,77,1007700,1080215,1006180010,3193 +MN,POINT (-74.00136999969433 40.74112300026602),12543,Free,LinkNYC - Citybridge,mn-04-137007,126 8 AVENUE,40.7411230003,-74.0013699997,983870.359671,209287.714676,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000448,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1076135,1007667500,3194 +MN,POINT (-74.0015011405004 40.74137338012458),12544,Free,LinkNYC - Citybridge,mn-04-135620,127 8 AVENUE,40.7413733801,-74.0015011405,983834.020833,209378.936607,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000449,10/02/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1088116,1007407500,3195 +MN,POINT (-74.00132086037947 40.74162141979787),12545,Free,LinkNYC - Citybridge,mn-04-134551,139 8 AVENUE,40.7416214198,-74.0013208604,983883.979395,209469.304536,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000450,06/28/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1013054,1007400040,3196 +MN,POINT (-74.00108800047018 40.74150999979457),12546,Free,LinkNYC - Citybridge,mn-04-136455,142 8 AVENUE,40.7415099998,-74.0010880005,983948.506169,209428.709801,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000451,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1076135,1007667500,3197 +MN,POINT (-74.00071086002248 40.742046479797324),12547,Free,LinkNYC - Citybridge,mn-04-135231,158 8 AVENUE,40.7420464798,-74.00071086,984053.016458,209624.165447,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000452,06/28/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1068028,1007677500,3198 +MN,POINT (-74.00093999956718 40.74229700009477),12548,Free,LinkNYC - Citybridge,mn-04-108537,159 8 AVENUE,40.7422970001,-74.0009399996,983989.521506,209715.438559,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000453,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1087673,1007417500,3199 +MN,POINT (-74.00023800031504 40.742688999754414),12549,Free,LinkNYC - Citybridge,mn-04-135037,176 8 AVENUE,40.7426889998,-74.0002380003,984184.049333,209858.255202,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000457,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1013890,1007680080,3200 +MN,POINT (-73.98224699987307 40.76727099957289),12550,Free,LinkNYC - Citybridge,mn-05-122628,1775 Broadway,40.7672709996,-73.9822469999,989167.599405,218814.774362,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000458,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1024900,1010297500,3201 +MN,POINT (-73.9998942199421 40.7435786998171),12551,Free,LinkNYC - Citybridge,mn-04-123508,197 8 AVENUE,40.7435786998,-73.9998942199,984279.311609,210182.401207,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000462,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1013263,1007440040,3202 +MN,POINT (-73.99964520001191 40.74391928989014),12552,Free,LinkNYC - Citybridge,mn-04-134912,211 8 AVENUE,40.7439192899,-73.9996452,984348.314424,210306.489214,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000463,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1013268,1007440040,3203 +MN,POINT (-73.9993978694744 40.744260029801765),12553,Free,LinkNYC - Citybridge,mn-04-107977,221 8 AVENUE,40.7442600298,-73.9993978695,984416.848408,210430.63201,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000464,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1087948,1007457500,3204 +MN,POINT (-73.9989929999075 40.74440300042154),12554,Free,LinkNYC - Citybridge,mn-04-123501,232 8 AVENUE,40.7444030004,-73.9989929999,984529.035847,210482.721801,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000465,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1014099,1007710080,3205 +MN,POINT (-73.99915958007784 40.74458405042551),12555,Free,LinkNYC - Citybridge,mn-04-108002,233 8 AVENUE,40.7445840504,-73.9991595801,984482.876491,210548.683611,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000466,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,89,1008900,1013310,1007450040,3206 +MN,POINT (-73.99873600021839 40.74475000002627),12556,Free,LinkNYC - Citybridge,mn-04-108509,238 8 AVENUE,40.74475,-73.9987360002,984600.247647,210609.145761,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000468,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014103,1007720000,3207 +MN,POINT (-73.99643400039932 40.747905000342676),12557,Free,LinkNYC - Citybridge,mn-05-137326,243 West 27Th St,40.7479050003,-73.9964340004,985238.072815,211758.630994,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000469,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1014250,1007770000,3208 +MN,POINT (-73.99852934949205 40.74503872971324),12558,Free,LinkNYC - Citybridge,mn-04-133655,252 8 AVENUE,40.7450387297,-73.9985293495,984657.507703,210714.340104,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000471,06/20/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014140,1007720080,3209 +MN,POINT (-73.9850609998948 40.76342400011915),12559,Free,LinkNYC - Citybridge,mn-05-139276,260 WEST 52 STREET,40.7634240001,-73.9850609999,988388.357525,217413.039961,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000472,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1076198,1010230060,3210 +MN,POINT (-73.99861908956746 40.74544347971535),12560,Free,LinkNYC - Citybridge,mn-04-123646,261 WEST 23 STREET,40.7454434797,-73.9986190896,984632.638987,210861.803064,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000473,06/24/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,93,1009300,1078540,1007470000,3211 +MN,POINT (-73.9894090003408 40.75754400040832),12561,Free,LinkNYC - Citybridge,mn-05-107818,670 8 AVENUE,40.7575440004,-73.9894090003,987184.146351,215270.587881,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000475,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1087141,1010140060,3212 +MN,POINT (-73.98925200047682 40.75775300027654),12562,Free,LinkNYC - Citybridge,mn-05-121354,270 West 43St,40.7577530003,-73.9892520005,987227.632484,215346.738648,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000480,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1087141,1010140060,3213 +MN,POINT (-73.99775661026133 40.7459240700786),12563,Free,LinkNYC - Citybridge,mn-04-139167,282 8 Avenue,40.7459240701,-73.9977566103,984871.620464,211036.902451,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000483,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,91,1009100,1014167,1007740000,3214 +MN,POINT (-73.98309182038028 40.76663812023837),12564,Free,LinkNYC - Citybridge,mn-04-122503,300 West 57Th St,40.7666381202,-73.9830918204,988933.62776,218584.149168,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000484,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1025451,1010477500,3215 +MN,POINT (-73.98315528954775 40.76693979019579),12565,Free,LinkNYC - Citybridge,mn-04-133373,301 WEST 57 STREET,40.7669397902,-73.9831552895,988916.025433,218694.054131,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000486,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1076205,1010487500,3216 +MN,POINT (-73.98285321021616 40.766963249683194),12566,Free,LinkNYC - Citybridge,mn-04-122621,302 West 57Th St,40.7669632497,-73.9828532102,988999.700462,218702.617435,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000487,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1076205,1010487500,3217 +MN,POINT (-73.99233960999206 40.75413992034044),12567,Free,LinkNYC - Citybridge,mn-04-122567,302 WEST 37 STREET,40.7541399203,-73.99233961,986372.354339,214030.286228,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000489,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10018,104,111,1011100,1013600,1007600050,3218 +MN,POINT (-73.9858301705492 40.763051359672275),12568,Free,LinkNYC - Citybridge,mn-04-122605,308 WEST 51 STREET,40.7630513597,-73.9858301705,988175.306114,217277.23938,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000491,10/26/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1025211,1010427500,3219 +MN,POINT (-73.99712686968023 40.74737716994857),12569,Free,LinkNYC - Citybridge,mn-04-123656,327 8 AVENUE,40.7473771699,-73.9971268697,985046.097805,211566.318387,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000493,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,97,1009700,1082792,1007510000,3220 +MN,POINT (-73.99555300007853 40.74912200017118),12570,Free,LinkNYC - Citybridge,mn-05-136213,382 8 AVENUE,40.7491220002,-73.9955530001,985482.159269,212202.034307,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000496,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1014277,1007790000,3221 +MN,POINT (-73.98256353972435 40.767357589920785),12571,Free,LinkNYC - Citybridge,mn-04-144139,989 8 AVENUE,40.7673575899,-73.9825635397,989079.91126,218846.304483,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000498,08/03/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1026054,1010480030,3222 +MN,POINT (-73.99524499949706 40.74953699959121),12572,Free,LinkNYC - Citybridge,mn-05-122061,400 8 AVENUE,40.7495369996,-73.9952449995,985567.490791,212353.236433,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000499,10/14/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1014306,1007790080,3223 +MN,POINT (-73.99510999964427 40.74972800027015),12573,Free,LinkNYC - Citybridge,mn-05-133689,402 8 AVENUE,40.7497280003,-73.9951099996,985604.891963,212422.826188,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000500,06/30/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1014332,1007800000,3224 +MN,POINT (-73.99552537999023 40.74982747984405),12574,Free,LinkNYC - Citybridge,mn-04-108137,301 WEST 30 STREET,40.7498274798,-73.99552538,985489.799018,212459.063649,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000501,05/05/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,103,1010300,1082392,1007540040,3225 +MN,POINT (-73.99499300032076 40.74987999975493),12575,Free,LinkNYC - Citybridge,mn-05-136910,408 8 AVENUE,40.7498799998,-73.9949930003,985637.306269,212478.206327,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000502,06/30/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1014351,1007807500,3226 +MN,POINT (-73.99505136977089 40.75022677991934),12576,Free,LinkNYC - Citybridge,mn-04-122691,413 8 AVENUE,40.7502267799,-73.9950513698,985621.126511,212604.548594,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000503,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,103,1010300,1013536,1007540040,3227 +MN,POINT (-73.99275641978474 40.75269979042761),12577,Free,LinkNYC - Citybridge,mn-05-108471,494 8 Avenue,40.7526997904,-73.9927564198,986256.918218,213505.590427,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000505,05/17/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,109,1010900,1014419,1007840080,3228 +MN,POINT (-73.9927619996706 40.75294900030136),12578,Free,LinkNYC - Citybridge,mn-05-122305,500 8 AVENUE,40.7529490003,-73.9927619997,986255.364744,213596.385521,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000508,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,109,1010900,1014421,1007850000,3229 +MN,POINT (-73.99294716971454 40.753107319767835),12579,Free,LinkNYC - Citybridge,mn-04-136691,505 8 AVENUE,40.7531073198,-73.9929471697,986204.056776,213654.062243,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000509,06/30/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10018,104,111,1011100,1013575,1007590040,3230 +MN,POINT (-73.99271840028214 40.75342474994804),12580,Free,LinkNYC - Citybridge,mn-04-122068,519 8 AVENUE,40.7534247499,-73.9927184003,986267.430008,213769.717523,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000511,04/12/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10018,104,111,1011100,1013576,1007590050,3231 +BX,POINT (-73.90540300041171 40.85315700002623),12581,Free,LinkNYC - Citybridge,bx-05-119592,101 EAST BURNSIDE AVENUE,40.853157,-73.9054030004,1010419.67009,250119.733734,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001788,07/07/2016 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,241,2024100,2092406,2031690000,3594 +BX,POINT (-73.92816499951306 40.81867599971952),12582,Free,LinkNYC - Citybridge,bx-01-119075,134 EAST 149 STREET,40.8186759997,-73.9281649995,1004133.00878,237551.047585,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001791,07/19/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,17,10451,201,63,2006300,2001038,2023460030,3595 +BX,POINT (-73.9283700000216 40.818941999813056),12583,Free,LinkNYC - Citybridge,bx-04-119146,135 EAST 149 STREET,40.8189419998,-73.92837,1004076.18803,237647.914518,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-001792,06/15/2016 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,63,2006300,2001114,2023520050,3596 +QU,POINT (-73.79220517985954 40.70635736031313),12584,Free,LinkNYC - Citybridge,qu-12-141553,168-06 JAMAICA AVENUE,40.7063573603,-73.7922051799,1041861.97138,196689.847812,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001820,09/28/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,444,4044400,4217372,4102090000,3597 +QU,POINT (-73.79236799952119 40.70650699984446),12585,Free,LinkNYC - Citybridge,qu-12-141536,168-03 JAMAICA AVENUE,40.7065069998,-73.7923679995,1041816.69982,196744.258792,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001821,09/28/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,460,4046000,4209645,4097990020,3598 +QU,POINT (-73.8308380002378 40.713982999850806),12586,Free,LinkNYC - Citybridge,qu-09-124172,80-02 KEW GARDENS ROAD,40.7139829999,-73.8308380002,1031145.51217,199445.047026,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001824,11/30/2016 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11415,409,773,4077300,4312089,4033480040,3599 +QU,POINT (-73.83351300027698 40.71575800028908),12587,Free,LinkNYC - Citybridge,qu-06-124184,116-12 QUEENS BOULEVARD,40.7157580003,-73.8335130003,1030402.71378,200090.311811,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-001827,07/29/2016 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,769,4076902,4079980,4033460000,3600 +MN,POINT (-73.94986799951863 40.82692799980401),12588,Free,LinkNYC - Citybridge,mn-09-134826,3552 Broadway,40.8269279998,-73.9498679995,998124.176308,240553.368352,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002056,03/13/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1061956,1020770060,3601 +MN,POINT (-73.95022615029272 40.827043549822484),12589,Free,LinkNYC - Citybridge,mn-09-134828,3559 BROADWAY,40.8270435498,-73.9502261503,998025.033134,240595.410919,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002057,09/18/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,1062381,1020920040,3602 +MN,POINT (-73.95002586030161 40.82732010977188),12590,Free,LinkNYC - Citybridge,mn-09-111986,3569 BROADWAY,40.8273201098,-73.9500258603,998080.406382,240696.203369,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002058,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062398,1020930030,3603 +MN,POINT (-74.00830507310397 40.74311961831634),12591,Free,Chelsea,,85 10TH Ave,40.7431196183,-74.0083050731,981948.651901,210015.252263,Outdoor,,New York,CICFreeWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,0,0,247 +BK,POINT (-73.93043000006699 40.604137000235234),12592,Limited Free,ALTICEUSA,MARINE PARK,LIBRARY OF NATURE CENTER,40.6041370002,-73.9304300001,1003568.16312,159387.467036,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK99,park-cemetery-etc-Brooklyn,46,11234,318,666,3066600,0,3085900600,844 +BK,POINT (-73.93489199954253 40.6737519997091),12593,Limited Free,ALTICEUSA,St. John's Recreation Center,DANCE ROOM,40.6737519997,-73.9348919995,1002310.30639,184749.13941,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,308,345,3034500,3393257,3013530001,919 +BK,POINT (-73.98302500021536 40.69272300020403),12594,Free,Downtown Brooklyn,,254 Flatbush Ave. Extension (pole),40.6927230002,-73.9830250002,988957.355731,191654.56884,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,15,3001500,0,3020600008,999 +BK,POINT (-73.99208300054515 40.689966999570146),12595,Free,Downtown Brooklyn,,125 Court St.,40.6899669996,-73.9920830005,986445.562526,190650.120062,Outdoor,,Brooklyn,Downtown Brooklyn WiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,9,3000900,3388736,3002777501,304 +BX,POINT (-73.88788942886175 40.854346905437914),12597,Free,NYPL,Belmont Library-Enrico Fermi Cultural Center,610 EAST 186 STREET,40.8543469054,-73.8878894289,1015264.13317,250558.977934,Library,,Bronx,NYPL,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX06,Belmont,15,10458,206,391,2039100,2012129,2030730020,479 +MN,POINT (-73.94958100012683 40.82793199987132),12598,Free,LinkNYC - Citybridge,mn-09-111985,3581 BROADWAY,40.8279319999,-73.9495810001,998203.393669,240919.207844,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002059,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1083037,1020940030,3604 +MN,POINT (-73.94928800022616 40.82758000017947),12599,Free,LinkNYC - Citybridge,mn-09-120434,546 WEST 147 STREET,40.8275800002,-73.9492880002,998284.555252,240791.008297,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002061,08/22/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1061968,1020780060,3605 +MN,POINT (-73.9490170003983 40.82809699998214),12600,Free,LinkNYC - Citybridge,mn-09-111874,3596 BROADWAY,40.828097,-73.9490170004,998359.444866,240979.41376,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002062,08/03/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062006,1020790060,3606 +MN,POINT (-73.96508399997795 40.75741800043089),12601,Limited Free,SPECTRUM,Recreation Center 54,3rd floor cardio/basketball court,40.7574180004,-73.965084,993923.198818,215226.432458,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1078235,1013470038,1083 +BK,POINT (-73.90269999984122 40.65709999999572),12602,Limited Free,ALTICEUSA,Brownsville Recreation Center,C/O CHRISTOPHER ST & HEGEMAN AV,40.6571,-73.9026999998,1011246.77998,178690.628233,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,920,3092000,0,0,1221 +MN,POINT (-73.99039999985465 40.73599999973622),12603,Partner Site,Partner,Union Square Park,Entire park,40.7359999997,-73.9903999999,986910.458578,207421.386388,Outdoor,,New York,unionsquarewifi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,0,1008450002,1343 +MN,POINT (-73.94913226029092 40.828541849564424),12604,Free,LinkNYC - Citybridge,mn-09-120352,3601 BROADWAY,40.8285418496,-73.9491322603,998327.452804,241141.470195,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002064,08/03/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062436,1020950030,3607 +QU,POINT (-73.74579099951539 40.596321000373244),11566,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Parking Lot and BB Court,40.5963210004,-73.7457909995,1054846.80138,156634.663487,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1120 +QU,POINT (-73.74626199964938 40.59619699962295),11567,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Parking Lot and Skate Park,40.5961969996,-73.7462619996,1054716.13038,156589.107804,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1121 +QU,POINT (-73.74724700030666 40.59571400000785),11568,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Parking Lot and Skate Park,40.595714,-73.7472470003,1054443.09221,156412.348643,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1122 +QU,POINT (-73.7476120003029 40.595592000149196),11569,Limited Free,SPECTRUM,Rockaway Beach and Boardwalk,Parking Lot and Skate Park,40.5955920001,-73.7476120003,1054341.85488,156367.608903,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,0,0,1123 +QU,POINT (-73.76981399958217 40.68726200010083),11570,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Picnic Area,40.6872620001,-73.7698139996,1048088.28635,189748.386957,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,0,4124060180,1124 +QU,POINT (-73.76981499997524 40.68715999968046),11571,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Picnic Area,40.6871599997,-73.769815,1048088.10656,189711.22463,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,0,4124060180,1125 +QU,POINT (-73.76955899961533 40.6871909999958),11572,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Food pantry and Patio,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1126 +QU,POINT (-73.76955899961533 40.6871909999958),11573,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Bunker Rm 1 (AKA Rm B4),40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1127 +QU,POINT (-73.76955899961533 40.6871909999958),11574,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Bunker Rm 2 (AKA Rm B3),40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1128 +QU,POINT (-73.76955899961533 40.6871909999958),11575,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Bunker Rm 3 (AKA Rm B5),40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1129 +QU,POINT (-73.76955899961533 40.6871909999958),11576,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Classroom 1 (AKA RM B2),40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1130 +QU,POINT (-73.76955899961533 40.6871909999958),11577,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Classroom 2 (AKA Rm B1),40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1131 +QU,POINT (-73.76955899961533 40.6871909999958),11578,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Gym 1,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1132 +QU,POINT (-73.76955899961533 40.6871909999958),11579,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Workout Rm,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1133 +QU,POINT (-73.76955899961533 40.6871909999958),11580,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Family waiting area,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1134 +QU,POINT (-73.76955899961533 40.6871909999958),11581,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Maintenance office - 2nd Fl,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1135 +QU,POINT (-73.76955899961533 40.6871909999958),11582,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Rec Office #2,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1136 +QU,POINT (-73.76955899961533 40.6871909999958),11583,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Rec Office #2,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1137 +QU,POINT (-73.76955899961533 40.6871909999958),11584,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Rehearsal Rm - 2nd Fl,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1138 +QU,POINT (-73.76955899961533 40.6871909999958),11585,Limited Free,SPECTRUM,Roy Wilkins Recreation Center,Theater lounge,40.687191,-73.7695589996,1048159.07427,189722.705578,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN08,St. Albans,27,11434,412,426,4042600,4268835,4124060180,1139 +SI,POINT (-74.11456999963772 40.62538199995897),11586,Limited Free,SPECTRUM,Staten Island Zoo,Area off Broadway by Entrance,40.625382,-74.1145699996,952446.388399,167140.70317,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,125,5012500,0,0,1140 +SI,POINT (-74.11473800009333 40.62575599966801),11587,Limited Free,SPECTRUM,Staten Island Zoo,Area off Broadway and Colonial Court,40.6257559997,-74.1147380001,952399.931471,167277.022123,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,125,5012500,0,0,1141 +SI,POINT (-74.11421099983077 40.62469800011451),11588,Limited Free,SPECTRUM,Staten Island Zoo,Area off Broadway and Greenwood Pl,40.6246980001,-74.1142109998,952545.718581,166891.373944,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,125,5012500,0,0,1142 +SI,POINT (-74.10044300025052 40.644816000345095),11589,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.6448160003,-74.1004430003,956376.034411,174216.215594,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,81,5008100,0,0,1143 +SI,POINT (-74.10103800030157 40.64488500006788),11590,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.6448850001,-74.1010380003,956210.944846,174241.543955,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000750001,1144 +SI,POINT (-74.10162900056538 40.64512299967802),11591,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.6451229997,-74.1016290006,956047.037037,174328.443388,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000750001,1145 +SI,POINT (-74.10228500029132 40.645317000351305),11592,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.6453170004,-74.1022850003,955865.073818,174399.334978,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000750001,1146 +SI,POINT (-74.10287999978084 40.64543899957391),11593,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.6454389996,-74.1028799998,955700.00886,174443.975965,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000750030,1147 +SI,POINT (-74.10339799951585 40.64545300004027),11594,Limited Free,SPECTRUM,Snug Harbor Cultural Center,North area off Richmond Terr,40.645453,-74.1033979995,955556.266037,174449.245968,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,0,1148 +SI,POINT (-74.10184600044676 40.64179799958397),11595,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building P - SE towards barn/farm area,40.6417979996,-74.1018460004,955985.409208,173117.125929,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,5146252,5000760001,1149 +SI,POINT (-74.10186899941415 40.64198200025937),11596,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building P - NE towards play area,40.6419820003,-74.1018689994,955979.10443,173184.169758,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,5146252,5000760001,1150 +SI,POINT (-74.10240400019548 40.643820000060984),11597,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building G - SW towards social affair area,40.6438200001,-74.1024040002,955831.412797,173853.975833,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,5113033,5000760200,1151 +SI,POINT (-74.10200200012264 40.64179700042126),11598,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building P - SW towards meadow,40.6417970004,-74.1020020001,955942.115331,173116.812281,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,5146252,5000760001,1152 +SI,POINT (-74.10202600049962 40.641962999704326),11599,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building P - NW towards Botanical Gardens,40.6419629997,-74.1020260005,955935.525121,173177.298052,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000760001,1153 +SI,POINT (-74.10224500057898 40.643782000063844),11600,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building G - SE towards social affair area,40.6437820001,-74.1022450006,955875.521304,173840.079863,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000760200,1154 +SI,POINT (-74.10268800058668 40.642339000277694),11601,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Pathway from Building L to Building P,40.6423390003,-74.1026880006,955751.966105,173314.499878,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,0,5000760001,1155 +SI,POINT (-74.10228500048295 40.643167000209495),11602,Limited Free,SPECTRUM,Snug Harbor Cultural Center,Building L (Office),40.6431670002,-74.1022850005,955864.159122,173616.031755,Indoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI22,West New Brighton-New Brighton-St. George,49,10310,501,97,5009700,5113034,5000760200,1156 +QU,POINT (-73.75140200025373 40.60234899965361),11603,Limited Free,SPECTRUM,Sorrentino Recreation Center,Hallway between Art and Game room,40.6023489997,-73.7514020003,1053282.33272,158826.336925,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,4298254,4155600050,1157 +QU,POINT (-73.75140200025373 40.60234899965361),11604,Limited Free,SPECTRUM,Sorrentino Recreation Center,Computer resource center,40.6023489997,-73.7514020003,1053282.33272,158826.336925,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,4298254,4155600050,1158 +QU,POINT (-73.75140200025373 40.60234899965361),11605,Limited Free,SPECTRUM,Sorrentino Recreation Center,Gym wall,40.6023489997,-73.7514020003,1053282.33272,158826.336925,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,4298254,4155600050,1159 +QU,POINT (-73.75140200025373 40.60234899965361),11606,Limited Free,SPECTRUM,Sorrentino Recreation Center,Jeter reading room on 2nd floor,40.6023489997,-73.7514020003,1053282.33272,158826.336925,Indoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN15,Far Rockaway-Bayswater,31,11691,414,101001,4101001,4298254,4155600050,1160 +SI,POINT (-74.07729199954197 40.62708899961233),11607,Limited Free,SPECTRUM,Tappen Park,North side of Park off Water St,40.6270889996,-74.0772919995,962794.974657,167751.275768,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI37,Stapleton-Rosebank,49,10304,501,21,5002100,0,0,1161 +SI,POINT (-74.0758479994287 40.626859999988326),11608,Limited Free,SPECTRUM,Tappen Park,East side of Park off Bay St,40.62686,-74.0758479994,963195.733698,167667.494767,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI37,Stapleton-Rosebank,49,10304,501,21,5002100,0,0,1162 +SI,POINT (-74.07617299999649 40.62657900023303),11609,Limited Free,SPECTRUM,Tappen Park,North side of Park off Canal St,40.6265790002,-74.076173,963105.429416,167565.1974,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI37,Stapleton-Rosebank,49,10304,501,27,5002700,0,0,1163 +MN,POINT (-73.93681600050996 40.793669000223844),11610,Limited Free,SPECTRUM,Thomas Jefferson Park,Lobby,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1164 +MN,POINT (-73.93681600050996 40.793669000223844),11611,Limited Free,SPECTRUM,Thomas Jefferson Park,Multi Purpose Room,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1165 +MN,POINT (-73.93681600050996 40.793669000223844),11612,Limited Free,SPECTRUM,Thomas Jefferson Park,GED Room,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1166 +MN,POINT (-73.93681600050996 40.793669000223844),11613,Limited Free,SPECTRUM,Thomas Jefferson Park,After School Room,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1167 +MN,POINT (-73.93681600050996 40.793669000223844),11614,Limited Free,SPECTRUM,Thomas Jefferson Park,Computer Resource Room,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1168 +MN,POINT (-73.93681600050996 40.793669000223844),11615,Limited Free,SPECTRUM,Thomas Jefferson Park,Fitness Room,40.7936690002,-73.9368160005,1001745.09459,228438.271192,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1169 +MN,POINT (-73.93675900037711 40.79330500023957),11616,Limited Free,SPECTRUM,Thomas Jefferson Park,South Ball Field,40.7933050002,-73.9367590004,1001760.97317,228305.664829,Outdoor TWC Aerial,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1170 +MN,POINT (-73.93624200005314 40.7937480002034),11617,Limited Free,SPECTRUM,Thomas Jefferson Park,Noth Soccer Field,40.7937480002,-73.9362420001,1001904.0093,228467.168772,Outdoor TWC Aerial,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,178,1017800,1085632,1017050001,1171 +SI,POINT (-74.07676299975763 40.63731700037443),11618,Limited Free,SPECTRUM,Tompkinsville Park,Confort station and seating area,40.6373170004,-74.0767629998,962945.081968,171477.480258,Outdoor TWC Aerial,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI37,Stapleton-Rosebank,49,10301,501,21,5002100,0,0,1172 +MN,POINT (-74.00546199984322 40.72956399998591),11619,Limited Free,SPECTRUM,Tony Dapolito Recreation Center,Roof top covering JJ Walker Park,40.729564,-74.0054619998,982736.163777,205076.451445,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1088894,1005820050,1173 +MN,POINT (-74.00546199984322 40.72956399998591),11620,Limited Free,SPECTRUM,Tony Dapolito Recreation Center,Basketball court,40.729564,-74.0054619998,982736.163777,205076.451445,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1088894,1005820050,1175 +MN,POINT (-74.00546199984322 40.72956399998591),11621,Limited Free,SPECTRUM,Tony Dapolito Recreation Center,Afterschool Rm,40.729564,-74.0054619998,982736.163777,205076.451445,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1088894,1005820050,1176 +MN,POINT (-74.00546199984322 40.72956399998591),11622,Limited Free,SPECTRUM,Tony Dapolito Recreation Center,CRC Rm,40.729564,-74.0054619998,982736.163777,205076.451445,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,67,1006700,1088894,1005820050,1177 +MN,POINT (-73.99862900006643 40.73214200043489),11623,Limited Free,SPECTRUM,Washington Square Park,NW Area off Washington Sq N,40.7321420004,-73.9986290001,984629.968716,206015.653307,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10011,102,65,1006500,0,0,1178 +MN,POINT (-73.99777799990378 40.73186299979746),11624,Limited Free,SPECTRUM,Washington Square Park,NW Area off Washington Sq N,40.7318629998,-73.9977779999,984865.82356,205914.009482,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10011,102,63,1006300,0,0,1179 +MN,POINT (-73.99683999960747 40.731351000188006),11625,Limited Free,SPECTRUM,Washington Square Park,SE Area off Washington Sq S,40.7313510002,-73.9968399996,985125.795481,205727.479999,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10003,102,59,1005900,0,0,1180 +MN,POINT (-73.99607899980562 40.7309750001443),11626,Limited Free,SPECTRUM,Washington Square Park,S Area off Washington Sq S,40.7309750001,-73.9960789998,985336.713038,205590.499958,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10003,102,59,1005900,0,0,1181 +MN,POINT (-73.99747599947086 40.72985599990648),11627,Limited Free,SPECTRUM,Washington Square Park,SW Area off Washington Sq S,40.7298559999,-73.9974759995,984949.543537,205182.799002,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10012,102,65,1006500,0,0,1182 +MN,POINT (-73.99847599999262 40.73039400016114),11628,Limited Free,SPECTRUM,Washington Square Park,NW Area off Washington Sq N,40.7303940002,-73.998476,984672.38333,205378.802875,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10012,102,65,1006500,0,1005410018,1184 +MN,POINT (-73.99904199940899 40.73184400031681),11629,Limited Free,SPECTRUM,Washington Square Park,NE Area off Washington Sq N,40.7318440003,-73.9990419994,984515.508315,205907.081018,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10011,102,65,1006500,1008893,1005520061,1185 +MN,POINT (-73.95969000053583 40.818499000443154),11630,Limited Free,SPECTRUM,West Harlem Piers,Pier and North Seating Area,40.8184990004,-73.9596900005,995407.32249,237480.974891,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,219,1021900,0,1019970001,1186 +MN,POINT (-73.95968999988521 40.82058999994465),11631,Limited Free,SPECTRUM,West Harlem Piers,Pier and South Seating Area,40.8205899999,-73.9596899999,995406.972097,238242.801451,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,22302,1022302,0,1020050024,1187 +QU,POINT (-73.91058799979047 40.747454000283504),11632,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,Southside of Comfort Station,40.7474540003,-73.9105879998,1009024.582,211606.941009,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,251,4025100,4552493,4012360002,1188 +QU,POINT (-73.91057599986958 40.74751799988862),11633,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,North side of Comfort Station,40.7475179999,-73.9105759999,1009027.88318,211630.261501,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,251,4025100,0,4012360002,1189 +QU,POINT (-73.9094150003437 40.74623800011746),11634,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,Front of Public School 011,40.7462380001,-73.9094150003,1009350.05871,211164.247341,Outdoor,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,251,4025100,0,4012390001,1190 +QU,POINT (-73.90740800045373 40.74569100040261),11635,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,Woodside Ave & 57th St,40.7456910004,-73.9074080005,1009906.38568,210965.539405,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,251,4025100,0,0,1191 +QU,POINT (-73.90888000028362 40.74685299983211),11636,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,Woodside Ave & 55th St,40.7468529998,-73.9088800003,1009498.06793,211388.465068,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,255,4025500,0,0,1192 +QU,POINT (-73.90953199991681 40.747449999602935),11637,Limited Free,SPECTRUM,Lawrence Virgilio Playground /Windmuller Park,Woodside Ave & 54th St,40.7474499996,-73.9095319999,1009317.18345,211605.783859,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,255,4025500,0,0,1193 +SI,POINT (-74.18823099961514 40.519237000145765),11638,Limited Free,SPECTRUM,Wolfe's Pond Park,South parking lot Entrance,40.5192370001,-74.1882309996,931915.678476,128504.885757,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI01,Annadale-Huguenot-Prince's Bay-Eltingville,51,10312,503,198,5019800,0,5065960001,1194 +SI,POINT (-74.18976499972882 40.51816699970003),11639,Limited Free,SPECTRUM,Wolfe's Pond Park,Back of comfort station and picnic area,40.5181669997,-74.1897649997,931488.332874,128115.981023,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI01,Annadale-Huguenot-Prince's Bay-Eltingville,51,10309,503,198,5019800,0,5065960001,1195 +SI,POINT (-74.19099600017664 40.51728299972969),11640,Limited Free,SPECTRUM,Wolfe's Pond Park,South parking lot beach side,40.5172829997,-74.1909960002,931145.367681,127794.66408,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI01,Annadale-Huguenot-Prince's Bay-Eltingville,51,10309,503,198,5019800,0,5065960001,1196 +SI,POINT (-74.19032299982868 40.51704499970268),11641,Limited Free,SPECTRUM,Wolfe's Pond Park,South parking lot beach side,40.5170449997,-74.1903229998,931332.300378,127707.548113,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI01,Annadale-Huguenot-Prince's Bay-Eltingville,51,10309,503,198,5019800,0,5065960001,1197 +SI,POINT (-74.18982300023407 40.517148000109145),11642,Limited Free,SPECTRUM,Wolfe's Pond Park,Park entrance and parking lot,40.5171480001,-74.1898230002,931471.402133,127744.771792,Outdoor,3 free 10 min sessions,Staten Island,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,5,Staten Island,SI01,Annadale-Huguenot-Prince's Bay-Eltingville,51,10309,503,198,5019800,0,5065960001,1198 +QU,POINT (-73.82133399957779 40.69409500021224),11643,Limited Free,SPECTRUM,"Phil ""Scooter"" Rizzuto Park",South side of Park,40.6940950002,-73.8213339996,1033795.01015,192204.499499,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11419,409,148,4014800,0,0,1199 +MN,POINT (-73.93417999964244 40.85902199982534),12605,Free,Transit Wireless,190 St (A) (A-C),190 St (A),40.8590219998,-73.9341799996,1002457.0889,252249.288202,Subway Station,SN 145,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,281,1028100,0,0,1608 +BX,POINT (-73.91775700022349 40.816109000235095),12606,Free,Transit Wireless,"3 Av-149 St (2,5)",149th St - 3rd Ave,40.8161090002,-73.9177570002,1007014.68707,236618.331275,Subway Station,SN 434,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,65,2006500,0,0,1649 +BK,POINT (-73.90531600007908 40.6783340001709),12607,Free,Transit Wireless,"Broadway Junction (A,C,J,L,Z)","Broadway Junction (A,C,J,L,Z)",40.6783340002,-73.9053160001,1010512.58493,186425.975295,Subway Station,SN 184,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,367,3036700,0,3015460001,1718 +MN,POINT (-73.94886891027957 40.829037129670056),12608,Free,LinkNYC - Citybridge,mn-09-120354,600 WEST 149 STREET,40.8290371297,-73.9488689103,998400.228577,241321.961303,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002065,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062439,1020950030,3608 +MN,POINT (-73.94804599947642 40.82942399995328),12609,Free,LinkNYC - Citybridge,mn-09-136852,3632 BROADWAY,40.829424,-73.9480459995,998627.880681,241463.046323,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002066,03/13/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062124,1020810060,3609 +MN,POINT (-73.94764707348965 40.829341376524766),12610,Free,LinkNYC - Citybridge,mn-09-120442,576 WEST 150 STREET,40.8293413765,-73.9476470735,998738.298439,241433.00931,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002067,03/12/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062124,1020810060,3610 +MN,POINT (-73.94786599995896 40.82967500013567),12611,Free,LinkNYC - Citybridge,mn-09-102722,3642 BROADWAY,40.8296750001,-73.947866,998677.639768,241554.524487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002068,08/04/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062137,1020820000,3611 +MN,POINT (-73.94820100030802 40.82980899976053),12612,Free,LinkNYC - Citybridge,mn-09-134699,3647 BROADWAY,40.8298089998,-73.9482010003,998584.902421,241603.290465,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002069,04/25/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062449,1020970030,3612 +MN,POINT (-73.94791147941383 40.83020903038461),12613,Free,LinkNYC - Citybridge,mn-09-120356,3659 BROADWAY,40.8302090304,-73.9479114794,998664.938022,241749.083809,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002070,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062450,1020970030,3613 +MN,POINT (-73.94719500005651 40.83058600018728),12614,Free,LinkNYC - Citybridge,mn-09-111931,3670 BROADWAY,40.8305860002,-73.9471950001,998863.133163,241886.54646,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002072,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062208,1020830060,3614 +MN,POINT (-73.94698600027795 40.83087599960474),12615,Free,LinkNYC - Citybridge,mn-09-111936,3680 BROADWAY,40.8308759996,-73.9469860003,998920.907326,241992.238834,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002073,08/04/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062212,1020840000,3615 +MN,POINT (-73.944771519956 40.83391054017949),12616,Free,LinkNYC - Citybridge,mn-12-120450,3778 BROADWAY,40.8339105402,-73.94477152,999533.037663,243098.212344,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002074,07/06/2017 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1062700,1021150010,3616 +MN,POINT (-73.94432899983612 40.83451300033986),12617,Free,LinkNYC - Citybridge,mn-12-135063,3798 BROADWAY,40.8345130003,-73.9443289998,999655.35402,243317.788348,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002075,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1084193,1021160000,3617 +MN,POINT (-73.94417599944465 40.83472200043542),12618,Free,LinkNYC - Citybridge,mn-12-111735,3800 BROADWAY,40.8347220004,-73.9441759994,999697.643962,243393.961753,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002076,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062746,1021170000,3618 +MN,POINT (-73.94401100021798 40.83554599957902),12619,Free,LinkNYC - Citybridge,mn-12-111616,3823 BROADWAY,40.8355459996,-73.9440110002,999743.110734,243694.204262,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002078,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1063349,1021370000,3619 +MN,POINT (-73.94387299961556 40.83513500011276),12620,Free,LinkNYC - Citybridge,mn-12-111556,3816 BROADWAY,40.8351350001,-73.9438729996,999781.393794,243544.486386,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002079,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062747,1021170010,3620 +MN,POINT (-73.94318599980119 40.83608100018393),12621,Free,LinkNYC - Citybridge,mn-12-111066,3846 BROADWAY,40.8360810002,-73.9431859998,999971.27596,243889.271786,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002082,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062822,1021190000,3621 +MN,POINT (-73.94278700013322 40.83650099955717),12622,Free,LinkNYC - Citybridge,mn-12-120445,581 WEST 161 STREET,40.8365009996,-73.9427870001,1000081.58512,244042.364983,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002084,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062853,1021200000,3622 +MN,POINT (-73.94228800002557 40.837103999924544),12623,Free,LinkNYC - Citybridge,mn-12-100190,565 WEST 162 STREET,40.8371039999,-73.942288,1000219.52021,244262.150961,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002118,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062922,1021220050,3623 +BK,POINT (-73.96395900034574 40.68293200030904),12624,Free,LinkNYC - Citybridge,bk-02-132668,979 FULTON STREET,40.6829320003,-73.9639590003,994246.036426,188089.022166,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002214,01/25/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,201,3020100,3056672,3019790050,3624 +BK,POINT (-73.97820168971863 40.68788960960784),12625,Free,LinkNYC - Citybridge,bk-02-126628,691 FULTON STREET,40.6878896096,-73.9782016897,990295.351414,189893.919147,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002234,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,33,3003300,3331261,3020960070,3625 +BK,POINT (-73.95138099961143 40.68055600032773),12626,Free,LinkNYC - Citybridge,bk-03-145739,1245 FULTON STREET,40.6805560003,-73.9513809996,997735.047821,187225.062608,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002241,04/10/2017 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,245,3024500,3399847,3018420050,3626 +BK,POINT (-73.94384299997571 40.68001499987029),12627,Free,LinkNYC - Citybridge,bk-03-145808,1422 FULTON STREET,40.6800149999,-73.943843,999825.926185,187029.210965,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002337,06/12/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,303,271,3027100,3251519,3018630010,3627 +BK,POINT (-73.92442399966554 40.678959999752934),12628,Free,LinkNYC - Citybridge,bk-03-126646,1874 FULTON STREET,40.6789599998,-73.9244239997,1005212.38687,186648.894141,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002341,11/08/2016 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,41,11233,303,299,3029900,3048037,3017040000,3628 +BK,POINT (-73.92709800006602 40.67923200015604),12629,Free,LinkNYC - Citybridge,bk-03-126644,1803 FULTON STREET,40.6792320002,-73.9270980001,1004470.62162,186747.363104,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002342,11/09/2016 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11233,303,381,3038100,3047930,3016950050,3629 +BK,POINT (-73.9165069999828 40.67865400017731),12630,Free,LinkNYC - Citybridge,bk-03-126647,1961 FULTON STREET,40.6786540002,-73.916507,1007408.41725,186539.403546,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002345,02/24/2017 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,41,11233,303,379,3037900,3041785,3015360000,3630 +BK,POINT (-73.91100800021077 40.67835399983888),12631,Free,LinkNYC - Citybridge,bk-16-126635,2057 FULTON STREET,40.6783539998,-73.9110080002,1008933.78297,186431.606517,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002347,12/09/2016 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,41,11233,316,371,3037100,3041999,3015410000,3631 +BK,POINT (-73.90837399992394 40.67807899984327),12632,Free,LinkNYC - Citybridge,bk-16-126638,2208 FULTON STREET,40.6780789998,-73.9083739999,1009664.4823,186332.16938,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002348,01/17/2017 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,369,3036900,3042262,3015520040,3632 +BK,POINT (-73.86963599947799 40.68431700003156),12633,Free,LinkNYC - Citybridge,bk-05-114742,3418 FULTON STREET,40.684317,-73.8696359995,1020405.928,188618.465333,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002351,03/12/2018 12:00:00 AM +0000,3,Brooklyn,BK83,Cypress Hills-City Line,37,11208,305,184,3118400,3092916,3041490030,3633 +BK,POINT (-73.95871700057046 40.66879999960963),12634,Free,LinkNYC - Citybridge,bk-09-126619,856 FRANKLIN AVE,40.6687999996,-73.9587170006,995702.340929,182940.971766,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002455,12/05/2016 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,213,3021300,3029704,3011880040,3634 +BK,POINT (-73.95826141985049 40.66965209040412),12635,Free,LinkNYC - Citybridge,bk-09-126617,837 FRANKLIN AVE,40.6696520904,-73.9582614199,995828.575912,183251.472458,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002456,12/09/2016 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,325,3032500,3337861,3012730010,3635 +BK,POINT (-73.95817186036109 40.67031776038226),12636,Free,LinkNYC - Citybridge,bk-09-126616,806 FRANKLIN AVE,40.6703177604,-73.9581718604,995853.304537,183494.00675,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002457,02/08/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,213,3021300,3029674,3011850040,3636 +BK,POINT (-73.98371007956592 40.68867230013719),12637,Free,LinkNYC - Citybridge,bk-02-142293,36 BOND STREET,40.6886723001,-73.9837100796,988767.650074,190178.744036,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002525,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3329446,3001650030,3637 +BK,POINT (-73.98247225998199 40.68844943029868),12638,Free,LinkNYC - Citybridge,bk-02-126838,275 LIVINGSTON ST,40.6884494303,-73.98247226,989110.948271,190097.612309,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002526,01/30/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,37,3003700,3000461,3001610000,3638 +BK,POINT (-73.98128393031296 40.687813620243354),12639,Free,LinkNYC - Citybridge,bk-02-126839,340 LIVINGSTON ST,40.6878136202,-73.9812839303,989440.55588,189866.036328,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002528,01/20/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,37,3003700,3000522,3001670000,3639 +BK,POINT (-73.97637079107717 40.68696058822373),12640,Free,LinkNYC - Citybridge,bk-02-126807,56 LAFAYETTE AVENUE,40.6869605882,-73.9763707911,990803.20801,189555.581241,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002533,01/09/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,35,3003500,3059247,3021130020,3640 +BK,POINT (-73.9891589999597 40.6656179995713),12641,Free,LinkNYC - Citybridge,bk-06-125915,555 5 AVENUE,40.6656179996,-73.989159,987257.551716,181779.166675,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002667,06/12/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,141,3014100,3023689,3010420000,3641 +BK,POINT (-73.98797899941344 40.66730499959742),12642,Free,LinkNYC - Citybridge,bk-06-125912,500 5 AVENUE,40.6673049996,-73.9879789994,987584.827636,182393.831128,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002668,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,139,3013900,3023160,3010280040,3642 +BK,POINT (-73.97744609046154 40.68073179955252),12643,Free,LinkNYC - Citybridge,bk-06-125928,63 5 AVENUE,40.6807317996,-73.9774460905,990505.574091,187286.174362,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-002670,06/23/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,129,3012902,3018705,3009350010,3643 +QU,POINT (-73.9318752101693 40.74445001973257),12644,Free,LinkNYC - Citybridge,qu-02-124952,32-44 QUEENS BOULEVARD,40.7444500197,-73.9318752102,1003127.10167,210507.19124,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-002674,02/02/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003441,4002480040,3644 +MN,POINT (-74.00101555994857 40.71803310040779),12645,Free,LinkNYC - Citybridge,mn-01-122319,106 LAFAYETTE STREET,40.7180331004,-74.0010155599,983968.480866,200875.34305,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002677,09/06/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1002348,1001960020,3645 +MN,POINT (-74.0009619995748 40.71782799981644),12646,Free,LinkNYC - Citybridge,mn-01-137165,101 LAFAYETTE STREET,40.7178279998,-74.0009619996,983983.327293,200800.618462,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002678,09/06/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1002356,1001970010,3646 +MN,POINT (-74.00151938024514 40.71748210971848),12647,Free,LinkNYC - Citybridge,mn-01-137940,90 LAFAYETTE STREET,40.7174821097,-74.0015193802,983828.815463,200674.60231,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002679,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1002330,1001950020,3647 +MN,POINT (-74.00173928986848 40.7172410400688),12648,Free,LinkNYC - Citybridge,mn-01-137333,80 LAFAYETTE STREET,40.7172410401,-74.0017392899,983767.852987,200586.774401,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002680,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1001870,1001720020,3648 +MN,POINT (-74.00225300037683 40.716681999902754),12649,Free,LinkNYC - Citybridge,mn-01-138237,60 LAFAYETTE STREET,40.7166819999,-74.0022530004,983625.44251,200383.102236,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002681,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1001842,1001710030,3649 +MN,POINT (-74.00256999941392 40.71603300009317),12650,Free,LinkNYC - Citybridge,mn-01-123431,45 LAFAYETTE STREET,40.7160330001,-74.0025699994,983537.559812,200146.654218,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002682,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1001831,1001680030,3650 +MN,POINT (-74.00266672987668 40.71548409008048),12651,Free,LinkNYC - Citybridge,mn-01-137399,125 WORTH STREET,40.7154840901,-74.0026667299,983510.738671,199946.670366,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-002683,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,31,1003100,1001831,1001680030,3651 +MN,POINT (-73.99105603019882 40.73389175017406),12652,Free,LinkNYC - Citybridge,mn-02-133446,835 BROADWAY,40.7338917502,-73.9910560302,986728.730595,206653.265549,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003010,11/18/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,61,1006100,1080130,1005647500,3652 +MN,POINT (-73.9859280201474 40.73115701027332),12653,Free,LinkNYC - Citybridge,mn-03-115305,193 2 AVENUE,40.7311570103,-73.9859280201,988150.066663,205657.100875,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003015,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006882,1004687500,3653 +MN,POINT (-73.98573900038976 40.7310799998571),12654,Free,LinkNYC - Citybridge,mn-03-138575,192 2 AVENUE,40.7310799999,-73.9857390004,988202.458291,205629.052046,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003226,09/19/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1082514,1004540000,3654 +MN,POINT (-73.99256280979444 40.75364208962001),12655,Free,LinkNYC - Citybridge,mn-04-108109,523 8 AVENUE,40.7536420896,-73.9925628098,986310.530972,213848.905029,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000513,04/12/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10018,104,111,1011100,1013597,1007600040,3232 +MN,POINT (-73.99187099954614 40.7541709997863),12656,Free,LinkNYC - Citybridge,mn-05-108433,550 8 AVENUE,40.7541709998,-73.9918709995,986502.18446,214041.621179,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000516,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10018,105,109,1010900,1014453,1007870000,3233 +MN,POINT (-73.99181602007698 40.75466587043564),12657,Free,LinkNYC - Citybridge,mn-04-122565,557 8 AVENUE,40.7546658704,-73.9918160201,986517.399981,214221.920031,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000518,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10018,104,111,1011100,1013624,1007610040,3234 +MN,POINT (-73.99166162007617 40.75488083970675),12658,Free,LinkNYC - Citybridge,mn-04-136316,575 8 Avenue,40.7548808397,-73.9916616201,986560.16958,214300.24435,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000520,05/16/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10018,104,115,1011500,1013644,1007620030,3235 +MN,POINT (-73.99137085987086 40.75528083986184),12659,Free,LinkNYC - Citybridge,mn-04-122078,589 8 AVENUE,40.7552808399,-73.9913708599,986640.711086,214445.9852,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000522,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10018,104,115,1011500,1013646,1007620040,3236 +MN,POINT (-73.99142500046138 40.755499999872654),12660,Free,LinkNYC - Citybridge,mn-04-136982,601 8 Avenue,40.7554999999,-73.9914250005,986625.70357,214525.830841,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000524,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10018,104,115,1011500,1013686,1007630030,3237 +MN,POINT (-73.99093285003597 40.75587808973611),12661,Free,LinkNYC - Citybridge,mn-04-122075,615 8 AVENUE,40.7558780897,-73.99093285,986762.039583,214663.595001,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000525,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10018,104,115,1011500,1013688,1007630040,3238 +MN,POINT (-73.98890048943771 40.75866607981802),12662,Free,LinkNYC - Citybridge,mn-04-142001,701 8 AVENUE,40.7586660798,-73.9889004894,987324.973169,215679.415476,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000527,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,121,1012100,1024991,1010350030,3239 +MN,POINT (-73.98877954053444 40.75883097034728),12663,Free,LinkNYC - Citybridge,mn-04-108485,705 8 AVENUE,40.7588309703,-73.9887795405,987358.472774,215739.494752,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000528,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,121,1012100,1024992,1010350040,3240 +MN,POINT (-73.98857945959362 40.75910666004287),12664,Free,LinkNYC - Citybridge,mn-04-122583,715 8 AVENUE,40.75910666,-73.9885794596,987413.88933,215839.944682,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000529,04/11/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,121,1012100,1024992,1010350040,3241 +MN,POINT (-73.98818716981049 40.75922148977505),12665,Free,LinkNYC - Citybridge,mn-05-122092,724 8 AVENUE,40.7592214898,-73.9881871698,987522.561684,215881.79532,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000531,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024718,1010170000,3242 +MN,POINT (-74.00273530958394 40.73967747998083),12666,Free,LinkNYC - Citybridge,mn-02-123540,75 8 AVENUE,40.73967748,-74.0027353096,983492.002488,208761.074654,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000532,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,77,1007700,1080226,1006297500,3243 +MN,POINT (-73.98725149050857 40.76107343003075),12667,Free,LinkNYC - Citybridge,mn-04-108148,300 WEST 48 STREET,40.76107343,-73.9872514905,987781.678948,216556.554141,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000533,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,127,1012700,1025105,1010380040,3244 +MN,POINT (-73.98682800027184 40.761094000340414),12668,Free,LinkNYC - Citybridge,mn-05-122586,790 8 AVENUE,40.7610940003,-73.9868280003,987898.995971,216564.065937,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000535,04/12/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,125,1012500,1024771,1010207500,3245 +MN,POINT (-74.00230500023306 40.739846000423256),12669,Free,LinkNYC - Citybridge,mn-04-122299,80 8 AVENUE,40.7398460004,-74.0023050002,983611.249625,208822.46856,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000537,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1013711,1007640000,3246 +MN,POINT (-74.00221656039179 40.73971855966851),12670,Free,LinkNYC - Citybridge,mn-04-123541,80 8 Avenue,40.7397185597,-74.0022165604,983635.756466,208776.037222,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000538,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1013711,1007640000,3247 +MN,POINT (-73.98629301049958 40.76224616039071),12671,Free,LinkNYC - Citybridge,mn-04-122595,825 8 AVENUE,40.7622461604,-73.9862930105,988047.136751,216983.858405,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000539,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,127,1012700,1076203,1010400030,3248 +MN,POINT (-73.98605199946194 40.76215100037956),12672,Free,LinkNYC - Citybridge,mn-05-139462,828 8 AVENUE,40.7621510004,-73.9860519995,988113.907615,216949.199025,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000540,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,125,1012500,1085498,1010210000,3249 +MN,POINT (-73.98592299953167 40.76233100001673),12673,Free,LinkNYC - Citybridge,mn-05-122593,830 8 AVENUE,40.762331,-73.9859229995,988149.632937,217014.784524,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000541,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024808,1010220000,3250 +MN,POINT (-73.98515740988047 40.76380275023705),12674,Free,LinkNYC - Citybridge,mn-04-107675,871 8 AVENUE,40.7638027502,-73.9851574099,988361.626935,217551.026562,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000544,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1025257,1010437500,3251 +MN,POINT (-73.98476700022576 40.764338000359736),12675,Free,LinkNYC - Citybridge,mn-04-122620,891 8 AVENUE,40.7643380004,-73.9847670002,988469.742533,217746.054387,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000549,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1025400,1010447500,3252 +MN,POINT (-73.98422945056423 40.764646190388795),12676,Free,LinkNYC - Citybridge,mn-05-122615,908 8 AVENUE,40.7646461904,-73.9842294506,988618.630687,217858.36453,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000550,04/01/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024832,1010257500,3253 +MN,POINT (-73.98454459005646 40.76421224955833),12677,Free,LinkNYC - Citybridge,mn-05-139461,890 8 AVENUE,40.7642122496,-73.9845445901,988531.361176,217700.250017,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000551,05/26/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,131,1013100,1024832,1010257500,3254 +QU,POINT (-73.82236799945473 40.694165000282666),11644,Limited Free,SPECTRUM,"Phil ""Scooter"" Rizzuto Park",South West area of Park,40.6941650003,-73.8223679995,1033508.22529,192229.419397,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11419,409,148,4014800,0,0,1200 +QU,POINT (-73.82281699954277 40.69507699963191),11645,Limited Free,SPECTRUM,"Phil ""Scooter"" Rizzuto Park",North West side of Park,40.6950769996,-73.8228169995,1033383.04345,192561.434809,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11419,409,148,4014800,0,0,1201 +QU,POINT (-73.82059299944017 40.6946240002341),11646,Limited Free,SPECTRUM,"Phil ""Scooter"" Rizzuto Park",South East side of Park,40.6946240002,-73.8205929994,1034000.09832,192397.649375,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11419,409,148,4014800,0,0,1202 +QU,POINT (-73.82084100021407 40.695132000320385),11647,Limited Free,SPECTRUM,"Phil ""Scooter"" Rizzuto Park",North East side of Park,40.6951320003,-73.8208410002,1033930.94853,192582.587654,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,28,11419,409,148,4014800,0,0,1203 +MN,POINT (-73.99797999992514 40.710249999883835),11648,Limited Free,SPECTRUM,NYC - Alfred E. Smith Playground,Outdoor - Basketball Court,40.7102499999,-73.9979799999,984810.021178,198039.727658,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,1204 +MN,POINT (-73.99797999992514 40.710249999883835),11649,Limited Free,SPECTRUM,NYC - Alfred E. Smith Playground,Indoor - Lobby,40.7102499999,-73.9979799999,984810.021178,198039.727658,Indoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10038,103,25,1002500,0,1001110160,1205 +QU,POINT (-73.78570499985067 40.7038899997289),11650,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7038899997,-73.7857049999,1043666.36869,195795.25905,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1206 +QU,POINT (-73.78512199957717 40.70298200029835),11651,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7029820003,-73.7851219996,1043828.82506,195464.844684,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1207 +QU,POINT (-73.78452899942236 40.70205699985686),11652,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7020569999,-73.7845289994,1043994.07374,195128.244308,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1208 +QU,POINT (-73.7835940002179 40.7027070003351),11653,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7027070003,-73.7835940002,1044252.73727,195365.697245,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1209 +QU,POINT (-73.78392400039829 40.70337299964212),11654,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7033729996,-73.7839240004,1044160.64001,195608.114083,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1210 +QU,POINT (-73.7845620000651 40.704264999672745),11655,Limited Free,SPECTRUM,NYC - Detective Keith Williams Park,Outdoor - Park Area,40.7042649997,-73.7845620001,1043982.94515,195932.659694,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN01,South Jamaica,27,11433,412,440,4044000,0,0,1211 +BK,POINT (-74.0001399999442 40.59825700022623),11656,Limited Free,ALTICEUSA,Bensonhurst Park,CROPSEY AV E/O/21ST AV,40.5982570002,-74.0001399999,984211.121457,157237.560903,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,0,1212 +BK,POINT (-74.00027000046956 40.5976999998436),11657,Limited Free,ALTICEUSA,Bensonhurst Park,FRNT OF BASKETBALL COURTS,40.5976999998,-74.0002700005,984175.019167,157034.631519,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1213 +BK,POINT (-74.00111200052434 40.59758499986121),11658,Limited Free,ALTICEUSA,Bensonhurst Park,FRNT OF HANDBALL COURTS,40.5975849999,-74.0011120005,983941.18991,156992.735933,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1214 +BK,POINT (-74.00028200013948 40.5971760001822),11659,Limited Free,ALTICEUSA,Bensonhurst Park,IN ROUND CIRCLE S/O CROPSEY AV,40.5971760002,-74.0002820001,984171.686168,156843.725076,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1215 +BK,POINT (-73.99968500015149 40.597154000331294),11660,Limited Free,ALTICEUSA,Bensonhurst Park,FRNT OF PLAYGROUND,40.5971540003,-73.9996850002,984337.47816,156835.710001,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1216 +BK,POINT (-74.00135899941195 40.59716099969318),11661,Limited Free,ALTICEUSA,Bensonhurst Park,FRNT OF BASEBALL FIELD,40.5971609997,-74.0013589994,983872.594247,156838.262817,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1217 +BK,POINT (-74.00113500021018 40.59815000003468),11662,Limited Free,ALTICEUSA,Bensonhurst Park,WEST OF K-32 OUTSIDE HANDBALL COURT,40.59815,-74.0011350002,983934.805409,157198.58001,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK27,Bath Beach,43,11214,311,292,3029200,0,3064900024,1218 +BX,POINT (-73.87134900039872 40.87300999968185),11663,Limited Free,ALTICEUSA,Bronx Park,Near Burke Ave,40.8730099997,-73.8713490004,1019829.8678,257364.949559,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,15,10467,212,334,2033400,0,2033570300,1219 +BX,POINT (-73.87047199948047 40.853979999752795),11664,Limited Free,ALTICEUSA,Bronx Park,NYC Parks Bronx Headquarters,40.8539799998,-73.8704719995,1020082.66422,250431.946036,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,15,10462,227,334,2033400,0,2043330001,1220 +BK,POINT (-73.90315200027021 40.65702799968092),11665,Limited Free,ALTICEUSA,Brownsville Recreation Center,HEGEMAN AV 1/P/S/O CHRISTOPHER ST,40.6570279997,-73.9031520003,1011121.39736,178664.257551,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,920,3092000,3417915,3038600006,1222 +BK,POINT (-73.90180799988858 40.657212999830286),11666,Limited Free,ALTICEUSA,Brownsville Recreation Center,C/O HEGEMAN AV & SACKMAN ST,40.6572129998,-73.9018079999,1011494.22732,178732.07336,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,920,3092000,0,0,1223 +BK,POINT (-73.9028000000603 40.656699999987836),11667,Limited Free,ALTICEUSA,Brownsville Recreation Center,WEIGHT & FITNESS ROOM,40.6567,-73.9028000001,1011219.19572,178544.866385,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,3085992,3038680002,1224 +BK,POINT (-73.90270000035324 40.656399999919024),11668,Limited Free,ALTICEUSA,Brownsville Recreation Center,TEEN ROOM,40.6563999999,-73.9027000004,1011247.06312,178435.598887,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,3085992,3038680002,1225 +BK,POINT (-73.90250000032219 40.656099999676776),11669,Limited Free,ALTICEUSA,Brownsville Recreation Center,LOBBY,40.6560999997,-73.9025000003,1011302.67718,178326.362229,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,0,3038680002,1226 +BK,POINT (-73.90257000009899 40.65620000021947),11670,Limited Free,ALTICEUSA,Brownsville Recreation Center,GAME ROOM,40.6562000002,-73.9025700001,1011283.21429,178362.773574,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,3085992,3038680002,1227 +BK,POINT (-73.9027599997184 40.65610000005086),11671,Limited Free,ALTICEUSA,Brownsville Recreation Center,GYMNASIUM,40.6561000001,-73.9027599997,1011230.53691,178326.282177,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,3085992,3038680002,1228 +BK,POINT (-73.90285999950707 40.652100000438345),11672,Limited Free,ALTICEUSA,Brownsville Recreation Center,MULTI-PURPOSE L,40.6521000004,-73.9028599995,1011204.40671,176868.941588,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK82,East New York,42,11236,318,1098,3109800,3228744,3081340001,1229 +BK,POINT (-73.90285000024544 40.65590000003481),11673,Limited Free,ALTICEUSA,Brownsville Recreation Center,MULTI-PURPOSE R,40.6559,-73.9028500002,1011205.64588,178253.38895,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK81,Brownsville,42,11212,316,922,3092200,0,3038680011,1230 +BX,POINT (-73.90973400021504 40.842327000404204),11674,Limited Free,ALTICEUSA,Claremont Park,MORRIS AV 1 P/S/O MT EDEN PKWY,40.8423270004,-73.9097340002,1009225.59243,246172.692744,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,16,10457,204,225,2022500,0,0,1231 +BX,POINT (-73.9096310003202 40.84170799983531),11675,Limited Free,ALTICEUSA,Claremont Park,MORRIS AV 3 P/S/O MT EDEN PKWY,40.8417079998,-73.9096310003,1009254.324,245947.197132,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,16,10457,204,225,2022500,0,0,1232 +BX,POINT (-73.90547999951286 40.84111999962328),11676,Limited Free,ALTICEUSA,Claremont Park,FRNT OF HANDBALL/BASKET BALL COURTS END OF CLAY AV,40.8411199996,-73.9054799995,1010403.1009,245734.178857,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,16,10457,204,171,2017100,0,2027880001,1233 +BX,POINT (-73.90710000040316 40.84160000012636),11677,Limited Free,ALTICEUSA,Claremont Park,LEFT SIDE OF GAZEBO IN PARK S/O MT EDEN PKWY,40.8416000001,-73.9071000004,1009954.67135,245908.581395,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,16,10457,204,171,2017100,0,2027880001,1234 +BX,POINT (-73.90678000000483 40.84122000022982),11678,Limited Free,ALTICEUSA,Claremont Park,SOUTH OF RESTROOM LOCATED S/O/MT EDEN PKWY,40.8412200002,-73.90678,1010043.36015,245770.227341,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,16,10457,204,171,2017100,0,2027880001,1235 +BX,POINT (-73.90848000009775 40.83770000041582),11679,Limited Free,ALTICEUSA,Claremont Park,FRNT OF BASKET BALL COURT N/O E 170TH ST,40.8377000004,-73.9084800001,1009574.32139,244487.264684,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,16,10457,204,171,2017100,0,2027880001,1236 +BX,POINT (-73.90833999982783 40.83814000030164),11680,Limited Free,ALTICEUSA,Claremont Park,FRNT OF HANDBALL COURT N/O E 170TH ST,40.8381400003,-73.9083399998,1009612.89283,244647.613445,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,16,10457,204,171,2017100,0,2027880001,1237 +BK,POINT (-73.98189399960495 40.57373900021087),11681,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 15TH ST -5/P/S/O SURF AV,40.5737390002,-73.9818939996,989279.954823,148305.557113,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1238 +BK,POINT (-73.98182700026803 40.573218000167394),11682,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 15TH ST -8/P/S/O SURF AV,40.5732180002,-73.9818270003,989298.607017,148115.747782,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1239 +BK,POINT (-73.98182599998563 40.57321800000915),11683,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 15TH ST -7/P/S/O SURF AV,40.573218,-73.981826,989298.884903,148115.747782,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1240 +BK,POINT (-73.98199599966146 40.574277999961325),11684,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 15TH ST -3/P/S/O SURF AV,40.574278,-73.9819959997,989251.57824,148501.922206,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1241 +BK,POINT (-73.977901000231 40.574582000168505),11685,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 10TH ST -2/P/S/O SURF AV,40.5745820002,-73.9779010002,990389.156345,148612.937404,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1242 +BK,POINT (-73.97786700005157 40.57491500035697),11686,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 10TH ST -1/P/S/O SURF AV,40.5749150004,-73.9778670001,990398.571024,148734.259996,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1243 +BK,POINT (-73.97798200013078 40.57406199975876),11687,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,W 10TH ST -4/P/S/O SURF AV,40.5740619998,-73.9779820001,990366.701994,148423.482731,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1244 +BK,POINT (-73.97786299954774 40.57349100021798),11688,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF AQUARIUM,40.5734910002,-73.9778629995,990399.813476,148215.461821,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1245 +BK,POINT (-73.97756299951847 40.57352699991925),11689,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF AQUARIUM,40.5735269999,-73.9775629995,990483.15222,148228.598606,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245159,3086970008,1246 +BK,POINT (-73.97736599978776 40.57355099987603),11690,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF AQUARIUM,40.5735509999,-73.9773659998,990537.877832,148237.356462,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245159,3086970008,1247 +BK,POINT (-73.97736599978776 40.57355099987603),11691,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF AQUARIUM,40.5735509999,-73.9773659998,990537.877832,148237.356462,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245159,3086970008,1248 +BK,POINT (-73.97829700025899 40.573439000292815),11692,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF PAUL'S DAUGHTER,40.5734390003,-73.9782970003,990279.249741,148196.486794,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,0,0,1249 +BK,POINT (-73.97850999960221 40.573432000034884),11693,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF PAUL'S DAUGHTER,40.573432,-73.9785099996,990220.077615,148193.921838,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3412853,3086960212,1250 +BK,POINT (-73.97887199985686 40.5733810002374),11694,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF CONEY ISLAND CONES,40.5733810002,-73.9788719999,990119.515808,148175.316888,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3412854,3086960212,1251 +BK,POINT (-73.97893699971317 40.573384000114075),11695,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF CONEY ISLAND CONES,40.5733840001,-73.9789369997,990101.458101,148176.405469,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3412854,3086960212,1252 +BK,POINT (-73.97893699971317 40.573384000114075),11696,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF CONEY ISLAND CONES,40.5733840001,-73.9789369997,990101.458101,148176.405469,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3412854,3086960212,1253 +BK,POINT (-73.97985299942256 40.573428000146095),11697,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF NATHANS-REAR,40.5734280001,-73.9798529994,989846.982889,148192.375909,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245145,3086950085,1254 +BK,POINT (-73.98034399967722 40.57340999997303),11698,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF CONEY ISLAND BEACH SHOP-REAR,40.57341,-73.9803439997,989710.58093,148185.787012,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245146,3086950085,1255 +BK,POINT (-73.97985499977793 40.57327600005773),11699,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,CROOF OF NATHANS-FRONT,40.5732760001,-73.9798549998,989846.439911,148136.998395,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245145,3086950085,1256 +BK,POINT (-73.98001200000951 40.57326600014121),11700,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF GIFT SHOP,40.5732660001,-73.980012,989802.82484,148133.345188,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245145,3086950085,1257 +BK,POINT (-73.98014299963266 40.57325300037412),11701,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF RUBYS,40.5732530004,-73.9801429996,989766.433181,148128.600774,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245146,3086950085,1258 +BK,POINT (-73.98035600023302 40.57322700012814),11702,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF CONEY ISLAND BEACH SHOP-REAR,40.5732270001,-73.9803560002,989707.262039,148119.114901,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3245146,3086950085,1259 +BK,POINT (-73.98562899943204 40.57278399958462),11703,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-RIGHT SIDE MIDDLE,40.5727839996,-73.9856289994,988242.406701,147957.43445,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1260 +BK,POINT (-73.98561799978965 40.57267499961249),11704,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-RIGHT SIDE FRONT,40.5726749996,-73.9856179998,988245.469031,147917.723572,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1261 +BK,POINT (-73.98561799978965 40.57267499961249),11705,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-RIGHT SIDE FRONT,40.5726749996,-73.9856179998,988245.469031,147917.723572,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1262 +BK,POINT (-73.98574699984297 40.572669000185996),11706,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-FRONT,40.5726690002,-73.9857469998,988209.631833,147915.531975,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1263 +BK,POINT (-73.98574699984297 40.572669000185996),11707,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-FRONT,40.5726690002,-73.9857469998,988209.631833,147915.531975,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1264 +BK,POINT (-73.98603899946701 40.572664000310546),11708,Limited Free,ALTICEUSA,Coney Island Beach & Boardwalk,ROOF OF ABE STARK ICE RINK-LEFT SIDE FRONT,40.5726640003,-73.9860389995,988128.511588,147913.697333,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK21,Seagate-Coney Island,47,11224,313,352,3035200,3189656,3070730101,1265 +BX,POINT (-73.89758199956843 40.834479999929485),11709,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-CROTONA PARK SOUTH 1/P/E/O CROTONA AV,40.8344799999,-73.8975819996,1012591.2563,243317.437955,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,16,10456,203,151,2015100,0,0,1266 +BX,POINT (-73.89817100001879 40.83462300044181),11710,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-C/O CROTONA PARK SOUTH /CROTONA AV,40.8346230004,-73.898171,1012428.20675,243369.348285,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX35,Morrisania-Melrose,16,10456,203,151,2015100,0,0,1267 +BX,POINT (-73.90008899998993 40.83569100035974),11711,Limited Free,ALTICEUSA,Crotona Park,N/O CROTONA PK SOUTH NEXT TO VICTORY GARDEN INSIDE PARK,40.8356910004,-73.900089,1011897.01261,243757.84882,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10456,203,163,2016300,0,2029410101,1268 +BX,POINT (-73.89498100012676 40.83666000039696),11712,Limited Free,ALTICEUSA,Crotona Park,INSIDE PARK NE/O CLAIRMONT PKWY EXT (EAST OF POND),40.8366600004,-73.8949810001,1013310.05604,244112.544633,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1269 +BX,POINT (-73.89330999971749 40.837117000302726),11713,Limited Free,ALTICEUSA,Crotona Park,(PICNIC AREA) INSIDE PARK WEST OF PLAYGROUND,40.8371170003,-73.8933099997,1013772.2395,244279.605322,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1271 +BX,POINT (-73.89489299980816 40.83750299994321),11714,Limited Free,ALTICEUSA,Crotona Park,FRONT OF STAGE INSIDE PARK SW/O/ INDIAN LAKE,40.8375029999,-73.8948929998,1013334.03828,244419.709701,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1273 +BX,POINT (-73.89365799941935 40.8375389997574),11715,Limited Free,ALTICEUSA,Crotona Park,(PICNIC AREA) INSIDE PARK EAST SIDE OF INDIAN LAKE,40.8375389998,-73.8936579994,1013675.75774,244433.238217,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1274 +BX,POINT (-73.89037599982393 40.83770399979484),11716,Limited Free,ALTICEUSA,Crotona Park,"FRONT OF HANDBALL COURT INSIDE PARK, CROTONA PK EAST",40.8377039998,-73.8903759998,1014583.83991,244494.473331,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1275 +BX,POINT (-73.89347800040085 40.8380580000998),11717,Limited Free,ALTICEUSA,Crotona Park,SOUTH WEST CORNER OF INDIAN LAKE HOUSE ROOFTOP,40.8380580001,-73.8934780004,1013725.33507,244622.389742,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,2009887,2029420001,1276 +BX,POINT (-73.89338799963905 40.83821700004696),11718,Limited Free,ALTICEUSA,Crotona Park,NORTH WEST CORNER OF INDIAN LAKE HOUSE ROOFTOP,40.838217,-73.8933879996,1013750.16835,244680.3496,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1277 +BX,POINT (-73.88871400031283 40.83898799961705),11719,Limited Free,ALTICEUSA,Crotona Park,INSIDE PARK NEXT TO PLAYGROUND S/O CROTONA PK NORTH,40.8389879996,-73.8887140003,1015043.13394,244962.86183,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1278 +BX,POINT (-73.88871399982501 40.83898900006553),11720,Limited Free,ALTICEUSA,Crotona Park,INSIDE PARK NE/O CLAIRMONT PKWY EXT (WEST OF POND),40.8389890001,-73.8887139998,1015043.13361,244963.226331,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1279 +BX,POINT (-73.887464000438 40.8397090001363),11721,Limited Free,ALTICEUSA,Crotona Park,CROTONA PARK-TRAFALGAR PL 1/P/N/O E 175TH ST,40.8397090001,-73.8874640004,1015388.67459,245225.990897,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,367,2036700,0,0,1280 +BX,POINT (-73.8877570000818 40.83970999972915),11722,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-e 175th st 1/P/E/O CROTONA PARK NORTH,40.8397099997,-73.8877570001,1015307.60126,245226.251067,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10460,203,163,2016300,0,0,1281 +BX,POINT (-73.89537000056022 40.839891999577574),11723,Limited Free,ALTICEUSA,Crotona Park,SOUTH EAST CORNER OF TENNIS HOUSE ROOFTOP,40.8398919996,-73.8953700006,1013201.00836,245289.952711,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1282 +MN,POINT (-73.98446999958523 40.764743999795385),12678,Free,LinkNYC - Citybridge,mn-04-139460,907 8 AVENUE,40.7647439998,-73.9844699996,988551.989416,217893.987818,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000552,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1025400,1010447500,3255 +MN,POINT (-73.98409943961784 40.76482318009721),12679,Free,LinkNYC - Citybridge,mn-05-122619,910 8 Avenue,40.7648231801,-73.9840994396,988654.633567,217922.85423,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000553,03/30/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1000000,1010260060,3256 +MN,POINT (-73.98433342961007 40.76493290975315),12680,Free,LinkNYC - Citybridge,mn-04-122616,911 8 AVENUE,40.7649329098,-73.9843334296,988589.808566,217962.820686,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000554,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1025416,1010450030,3257 +MN,POINT (-73.98359299971118 40.76552200014184),12681,Free,LinkNYC - Citybridge,mn-05-122627,932 8 AVENUE,40.7655220001,-73.9835929997,988794.875413,218177.483314,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000555,04/07/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10019,105,137,1013700,1024868,1010270000,3258 +MN,POINT (-73.9838451897815 40.765600720012785),12682,Free,LinkNYC - Citybridge,mn-04-122625,933 8 AVENUE,40.76560072,-73.9838451898,988725.011379,218206.15058,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000556,04/04/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1025435,1010460030,3259 +MN,POINT (-73.98354761059068 40.766011420246876),12683,Free,LinkNYC - Citybridge,mn-04-122623,947 8 AVENUE,40.7660114202,-73.9835476106,988807.415086,218355.79759,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000558,07/07/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1080917,1010460040,3260 +MN,POINT (-73.98751477947722 40.76056304027232),12684,Free,LinkNYC - Citybridge,mn-04-139205,771 8 AVENUE,40.7605630403,-73.9875147795,987708.767349,216370.591915,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000560,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,127,1012700,1025100,1010380030,3261 +MN,POINT (-73.98811385993439 40.75974623966392),12685,Free,LinkNYC - Citybridge,mn-04-122579,300 West 46Th St,40.7597462397,-73.9881138599,987542.845108,216072.981618,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000562,04/15/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,121,1012100,1081654,1010360040,3262 +MN,POINT (-73.9861557695663 40.76243064021476),12686,Free,LinkNYC - Citybridge,mn-04-142000,831 8 AVENUE,40.7624306402,-73.9861557696,988085.144877,217051.076446,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000563,06/22/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1085727,1010410030,3263 +MN,POINT (-73.9873129997412 40.7602830000139),12687,Free,LinkNYC - Citybridge,mn-05-122591,270 WEST 47 STREET,40.760283,-73.9873129997,987764.680951,216268.572106,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000564,10/02/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,125,1012500,1024748,1010180060,3264 +MN,POINT (-73.986836000481 40.76089499965695),12688,Free,LinkNYC - Citybridge,mn-05-142002,782 8 AVENUE,40.7608949997,-73.9868360005,987896.790595,216491.56313,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000566,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,125,1012500,1024767,1010190060,3265 +MN,POINT (-73.98660599976947 40.761816000136236),12689,Free,LinkNYC - Citybridge,mn-04-122598,815 8 AVENUE,40.7618160001,-73.9866059998,987960.455822,216827.123482,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000567,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,127,1012700,1076203,1010400030,3266 +MN,POINT (-73.98797229006396 40.75993686001222),12690,Free,LinkNYC - Citybridge,mn-04-122580,739 8 AVENUE,40.75993686,-73.9879722901,987582.055004,216142.436203,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000568,07/20/2016 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10036,104,127,1012700,1089687,1010377500,3267 +MN,POINT (-73.98777155025238 40.759655969662916),12691,Free,LinkNYC - Citybridge,mn-05-107819,740 8 AVENUE,40.7596559697,-73.9877715503,987637.680549,216040.106355,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000569,04/06/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024730,1010170060,3268 +MN,POINT (-73.98427890045461 40.74030980041494),12692,Free,LinkNYC - Citybridge,mn-05-123299,50 LEXINGTON AVENUE,40.7403098004,-73.9842789005,988606.523755,208991.828129,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000600,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,105,68,1006800,1018071,1008800020,3269 +MN,POINT (-73.98392452962804 40.740092450094906),12693,Free,LinkNYC - Citybridge,mn-06-138284,137 EAST 24 STREET,40.7400924501,-73.9839245296,988704.73911,208912.65834,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000601,05/05/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,68,1006800,1086514,1008800020,3270 +MN,POINT (-73.98376710951692 40.74101169997424),12694,Free,LinkNYC - Citybridge,mn-05-121491,68 LEXINGTON AVENUE,40.7410117,-73.9837671095,988748.300375,209247.578274,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000603,05/26/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,105,68,1006800,1018103,1008810010,3271 +MN,POINT (-73.9831980001551 40.74148099957649),12695,Free,LinkNYC - Citybridge,mn-06-134680,81 LEXINGTON AVENUE,40.7414809996,-73.9831980002,988905.973616,209418.588759,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000606,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,106,68,1006800,1018134,1008820030,3272 +MN,POINT (-73.98304799987109 40.74213899969676),12696,Free,LinkNYC - Citybridge,mn-05-108040,131 EAST 27 STREET,40.7421389997,-73.9830479999,988947.493546,209658.327124,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000612,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10016,105,68,1006800,1018166,1008830020,3273 +MN,POINT (-73.97036917954843 40.759807400373425),12697,Free,LinkNYC - Citybridge,mn-05-121798,133 EAST 55 STREET,40.7598074004,-73.9703691795,992458.687639,216096.429405,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000626,03/23/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,100,1010000,1036511,1013100010,3274 +MN,POINT (-73.98179700032254 40.74322900027213),12698,Free,LinkNYC - Citybridge,mn-06-136968,137 Lexington Ave,40.7432290003,-73.9817970003,989294.069952,210055.518587,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000634,05/08/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018253,1008850030,3275 +MN,POINT (-73.96867054988267 40.76063098027804),12699,Free,LinkNYC - Citybridge,mn-06-133365,140 EAST 57 STREET,40.7606309803,-73.9686705499,992929.155202,216396.650262,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000636,02/21/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1036887,1013110050,3276 +MN,POINT (-73.97471722582708 40.75263649182008),12700,Free,LinkNYC - Citybridge,mn-06-138038,141 E 44 St,40.7526364918,-73.9747172258,991254.893459,213483.456613,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000637,07/31/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,92,1009200,1036175,1012990020,3277 +MN,POINT (-73.98203855045895 40.74338446027416),12701,Free,LinkNYC - Citybridge,mn-05-121481,142 LEXINGTON AVENUE,40.7433844603,-73.9820385505,989227.124548,210112.143802,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000638,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1018247,1008850020,3278 +MN,POINT (-73.98003507058851 40.745823810125),12702,Free,LinkNYC - Citybridge,mn-06-133664,221 LEXINGTON AVENUE,40.7458238101,-73.9800350706,989782.087021,211000.997011,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000652,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1018494,1008890020,3279 +MN,POINT (-73.9771946003824 40.749502809999896),12703,Free,LinkNYC - Citybridge,mn-06-138218,335 Lexington Ave,40.74950281,-73.9771946004,990568.804608,212341.566836,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000658,10/12/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019477,1008950030,3280 +MN,POINT (-73.97679440047864 40.750132529572475),12704,Free,LinkNYC - Citybridge,mn-06-121377,355 Lexington Ave,40.7501325296,-73.9767944005,990679.629189,212571.02307,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000660,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,106,80,1008000,1036147,1012950020,3281 +MN,POINT (-73.95234300046552 40.81110900011301),10772,Free,Transit Wireless,"125 St (A,B,C,D)","125 St (A,B,C,D)",40.8111090001,-73.9523430005,997442.348275,234789.554421,Subway Station,SN 153,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,9,10027,109,20901,1020901,0,0,1593 +MN,POINT (-73.97651850956653 40.750014500171126),12705,Free,LinkNYC - Citybridge,mn-06-137950,355 Lexington Ave,40.7500145002,-73.9765185096,990756.082448,212528.041529,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000662,07/05/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,106,80,1008000,1036147,1012950020,3282 +MN,POINT (-73.97701180044882 40.75027937004711),12706,Free,LinkNYC - Citybridge,mn-05-121596,360 LEXINGTON AVENUE,40.75027937,-73.9770118004,990619.379638,212624.505903,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000663,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,105,80,1008000,1036145,1012950020,3283 +MN,POINT (-73.97681672944039 40.750832729663784),12707,Free,LinkNYC - Citybridge,mn-05-133550,370 Lexington Ave,40.7508327297,-73.9768167294,990673.374937,212826.126891,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000666,05/19/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,105,80,1008000,1036150,1012950060,3284 +MN,POINT (-73.97126273031374 40.75679024992359),12708,Free,LinkNYC - Citybridge,mn-06-138051,150 EAST 51 STREET,40.7567902499,-73.9712627303,992211.506047,214997.100567,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000684,07/13/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,100,1010000,1036458,1013057500,3285 +MN,POINT (-73.97170312987758 40.75779319020181),12709,Free,LinkNYC - Citybridge,mn-05-138326,590 Lexington Ave,40.7577931902,-73.9717031299,992089.377682,215362.464666,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000686,04/10/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,100,1010000,1036460,1013060000,3286 +MN,POINT (-73.97007156017497 40.75980063989258),12710,Free,LinkNYC - Citybridge,mn-05-136857,660 LEXINGTON AVENUE,40.7598006399,-73.9700715602,992541.13859,216093.994371,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000692,05/08/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,100,1010000,1036511,1013100010,3287 +MN,POINT (-73.96880182056475 40.761730859757044),12711,Free,LinkNYC - Citybridge,mn-05-121900,722 LEXINGTON AVENUE,40.7617308598,-73.9688018206,992892.646745,216797.359434,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000697,06/07/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,112,1011203,1037166,1013130010,3288 +MN,POINT (-73.9683905603327 40.76155923035963),12712,Free,LinkNYC - Citybridge,mn-06-143917,725 Lexington Ave,40.7615592304,-73.9683905603,993006.598289,216734.870058,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000698,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,112,1011203,1086160,1013137500,3289 +MN,POINT (-73.98237159951084 40.74832254999001),12713,Free,LinkNYC - Citybridge,mn-06-121649,20 E 35Th St,40.74832255,-73.9823715995,989134.474471,211911.229114,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000700,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,106,74,1007400,1017114,1008647500,3290 +MN,POINT (-73.9722031699004 40.762324369731914),12714,Free,LinkNYC - Citybridge,mn-05-121973,43 EAST 57 STREET,40.7623243697,-73.9722031699,991950.322514,217013.277309,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000703,06/07/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,112,1011202,1035789,1012920050,3291 +MN,POINT (-73.98155980014904 40.74983207004283),12715,Free,LinkNYC - Citybridge,mn-05-133558,232 MADISON AVENUE,40.74983207,-73.9815598001,989359.291935,212461.242122,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000711,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,105,82,1008200,1017195,1008670020,3292 +MN,POINT (-73.98123606698881 40.749982341027994),12716,Free,LinkNYC - Citybridge,mn-06-133818,241 MADISON AVENUE,40.749982341,-73.981236067,989448.978107,212516.009729,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000712,07/12/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,82,1008200,1017220,1008670060,3293 +MN,POINT (-73.97973824055805 40.752335260337226),12717,Free,LinkNYC - Citybridge,mn-05-133538,300 MADISON AVENUE,40.7523352603,-73.9797382406,989863.786989,213373.346597,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000726,05/04/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,105,82,1008200,1085972,1012760060,3294 +MN,POINT (-73.97958520001451 40.75254481970809),12718,Free,LinkNYC - Citybridge,mn-05-135892,300 MADISON AVENUE,40.7525448197,-73.9795852,989906.17109,213449.705696,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000727,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10017,105,82,1008200,1085972,1012760060,3295 +MN,POINT (-73.97924601020127 40.75300304982437),12719,Free,LinkNYC - Citybridge,mn-05-121662,330 MADISON AVENUE,40.7530030498,-73.9792460102,990000.108239,213616.675835,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000731,05/26/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10017,105,94,1009400,1035348,1012770010,3296 +MN,POINT (-73.97652976006606 40.756742180411685),12720,Free,LinkNYC - Citybridge,mn-05-137210,410 MADISON AVENUE,40.7567421804,-73.9765297601,990752.308506,214979.152441,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000742,05/26/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10017,105,94,1009400,1035437,1012840010,3297 +MN,POINT (-73.97534074976645 40.75863294029905),12721,Free,LinkNYC - Citybridge,mn-05-121959,488 Madison Ave,40.7586329403,-73.9753407498,991081.523727,215668.108412,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000748,05/26/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035470,1012870010,3298 +MN,POINT (-73.97514297013922 40.75864931039507),12722,Free,LinkNYC - Citybridge,mn-05-134122,488 MADISON AVENUE,40.7586493104,-73.9751429701,991136.314299,215674.088059,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000749,05/05/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035470,1012870010,3299 +MN,POINT (-73.97400800011795 40.759711999575316),12723,Free,LinkNYC - Citybridge,mn-05-121967,515 Madison Ave,40.7597119996,-73.9740080001,991450.627975,216061.35172,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000752,05/11/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035728,1012890020,3300 +MN,POINT (-73.97363320037017 40.760249449974495),12724,Free,LinkNYC - Citybridge,mn-05-121966,527 Madison Ave,40.76024945,-73.9736332004,991554.400734,216257.19352,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000753,03/01/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035734,1012890050,3301 +MN,POINT (-73.97310141940822 40.76096332994878),12725,Free,LinkNYC - Citybridge,mn-05-121964,551 Madison Ave,40.7609633299,-73.9731014194,991701.640269,216517.32817,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000755,05/10/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035775,1012910050,3302 +MN,POINT (-73.97274461932047 40.76151071412763),12726,Free,LinkNYC - Citybridge,mn-05-134222,555 Madison Ave,40.7615107141,-73.9727446193,991800.421567,216716.788729,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000756,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,102,1010200,1035775,1012910050,3303 +MN,POINT (-73.97235755960719 40.76246695042087),12727,Free,LinkNYC - Citybridge,mn-05-134168,598 MADISON AVENUE,40.7624669504,-73.9723575596,991907.536838,217065.210604,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000758,06/07/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10022,105,112,1011202,1036060,1012930020,3304 +MN,POINT (-73.98638945012235 40.730537060299014),12728,Free,LinkNYC - Citybridge,mn-03-138573,175 2 AVENUE,40.7305370603,-73.9863894501,988022.215869,205431.213531,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003227,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006837,1004670040,3655 +MN,POINT (-73.98588200037571 40.730880999721656),12729,Free,LinkNYC - Citybridge,mn-03-123270,190 2 AVENUE,40.7308809997,-73.9858820004,988162.837307,205556.543661,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003228,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006476,1004530010,3656 +MN,POINT (-73.98634799944345 40.73024899984578),12730,Free,LinkNYC - Citybridge,mn-03-123269,170 2 AVENUE,40.7302489998,-73.9863479994,988033.720439,205326.265906,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003229,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006435,1004520010,3657 +MN,POINT (-73.98708099987927 40.72923599970333),12731,Free,LinkNYC - Citybridge,mn-03-123812,146 2 AVENUE,40.7292359997,-73.9870809999,987830.620123,204957.167563,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003230,11/30/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1077563,1004510000,3658 +MN,POINT (-73.98791443945 40.728755649929944),12732,Free,LinkNYC - Citybridge,mn-03-108511,37 1/2 ST MARKS PLACE,40.7287556499,-73.9879144395,987599.648801,204782.128215,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003231,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006360,1004500000,3659 +MN,POINT (-73.98787592014065 40.72848039009512),12733,Free,LinkNYC - Citybridge,mn-03-131017,131 2 AVENUE,40.7284803901,-73.9878759201,987610.33874,204681.843967,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003232,09/15/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006677,1004630030,3660 +MN,POINT (-73.98781752049172 40.728231690441255),12734,Free,LinkNYC - Citybridge,mn-03-128751,124 2 AVENUE,40.7282316904,-73.9878175205,987626.537526,204591.237193,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003234,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006310,1004490000,3661 +MN,POINT (-73.98796500019883 40.728026999602676),12735,Free,LinkNYC - Citybridge,mn-03-123814,118 2 AVENUE,40.7280269996,-73.9879650002,987585.671794,204516.656305,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003235,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006307,1004490000,3662 +MN,POINT (-73.98812503995171 40.72815774037107),12736,Free,LinkNYC - Citybridge,mn-03-107697,121 2 AVENUE,40.7281577404,-73.98812504,987541.308038,204564.283178,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003236,12/12/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006682,1004630030,3663 +MN,POINT (-73.98837166956164 40.72745986043484),12737,Free,LinkNYC - Citybridge,mn-03-123273,104 2 AVENUE,40.7274598604,-73.9883716696,987472.985012,204310.014658,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003237,09/19/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006262,1004480000,3664 +MN,POINT (-73.98924800039448 40.726262999988215),12738,Free,LinkNYC - Citybridge,mn-03-123260,72 2 AVENUE,40.726263,-73.9892480004,987230.148883,203873.930228,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003239,11/16/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006198,1004460000,3665 +MN,POINT (-73.98935061966415 40.72647126032452),12739,Free,LinkNYC - Citybridge,mn-03-108323,73 2 AVENUE,40.7264712603,-73.9893506197,987201.696513,203949.802452,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003240,10/07/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006595,1004600040,3666 +MN,POINT (-73.98940299984872 40.72604900029469),12740,Free,LinkNYC - Citybridge,mn-03-137382,68 2 AVENUE,40.7260490003,-73.9894029998,987187.19687,203795.958272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003241,09/15/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006168,1004450010,3667 +MN,POINT (-73.98969800029325 40.725641000128604),12741,Free,LinkNYC - Citybridge,mn-03-123820,54 2 AVENUE,40.7256410001,-73.9896980003,987105.448345,203647.301417,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003242,09/15/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1006162,1004450000,3668 +MN,POINT (-73.9933430003018 40.72171599995587),12742,Free,LinkNYC - Citybridge,mn-03-108238,217 BOWERY,40.721716,-73.9933430003,986095.257124,202217.204867,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003244,08/19/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,36,1003601,1005701,1004260000,3669 +MN,POINT (-73.99407509042283 40.72059635985),12743,Free,LinkNYC - Citybridge,mn-02-100727,178 BOWERY,40.7205963599,-73.9940750904,985892.356283,201809.270972,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003247,08/19/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10012,102,41,1004100,1007145,1004780030,3670 +MN,POINT (-73.99406649033318 40.719907069666405),12744,Free,LinkNYC - Citybridge,mn-03-108589,169 BOWERY,40.7199070697,-73.9940664903,985894.757197,201558.141553,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003249,08/19/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,1005660,1004240010,3671 +MN,POINT (-73.9858319995525 40.758022000270344),12745,Free,LinkNYC - Citybridge,mn-05-133536,200 WEST 45 STREET,40.7580220003,-73.9858319996,988175.095812,215444.878871,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003308,05/16/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10036,105,119,1011900,1024714,1010160040,3672 +MN,POINT (-73.98434199964098 40.75997099956788),12746,Free,LinkNYC - Citybridge,mn-05-133359,201 WEST 48 STREET,40.7599709996,-73.9843419996,988587.757717,216155.033291,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003309,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1076195,1010200050,3673 +MN,POINT (-73.98413099952928 40.75971300041381),12747,Free,LinkNYC - Citybridge,mn-05-122148,719 7 AVENUE,40.7597130004,-73.9841309995,988646.2284,216061.046274,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003311,06/30/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10036,105,125,1012500,1000000,1010000060,3674 +MN,POINT (-73.98369328960155 40.760326360370556),12748,Free,LinkNYC - Citybridge,mn-05-144692,737 7 AVENUE,40.7603263604,-73.9836932896,988767.446662,216284.535657,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003312,06/12/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1022699,1010017500,3675 +MN,POINT (-73.98353750025105 40.760526620346845),12749,Free,LinkNYC - Citybridge,mn-05-134283,745 7 AVENUE,40.7605266203,-73.9835375003,988810.591261,216357.504999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003313,05/31/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,125,1012500,1084667,1010020000,3676 +MN,POINT (-73.98309027971149 40.761141970298425),12750,Free,LinkNYC - Citybridge,mn-05-134736,777 7 AVENUE,40.7611419703,-73.9830902797,988934.441079,216581.720758,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003315,04/14/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1022710,1010037500,3677 +BX,POINT (-73.89521900023428 40.84010700039371),11724,Limited Free,ALTICEUSA,Crotona Park,NORTH EAST CORNER OF TENNIS HOUSE ROOFTOP,40.8401070004,-73.8952190002,1013242.69627,245368.335428,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029420001,1283 +BX,POINT (-73.89516799949129 40.840525999753986),11725,Limited Free,ALTICEUSA,Crotona Park,CROTONA PARK-CROTONA AV 5/P/S/O CROTONA PARK NORTH,40.8405259998,-73.8951679995,1013256.62537,245521.009336,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1284 +BX,POINT (-73.89837200024802 40.840663999878146),11726,Limited Free,ALTICEUSA,Crotona Park,CROTONA PARK C/O EAST 173RD ST AND FULTON AVE,40.8406639999,-73.8983720002,1012370.03233,245570.243161,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX01,Claremont-Bathgate,16,10457,203,167,2016700,0,0,1285 +BK,POINT (-73.94268199953417 40.70365400037386),11727,Free,LinkNYC - Citybridge,bk-01-125630,61 AVENUE OF PUERTO RICO,40.7036540004,-73.9426819995,1000142.3104,195641.799711,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-010946,06/09/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071502,3031050020,3963 +MN,POINT (-73.94188651985543 40.83274898044301),11728,Free,LinkNYC - Citybridge,mn-12-120461,470 WEST 157 STREET,40.8327489804,-73.9418865199,1000331.66664,242675.52979,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010956,05/11/2017 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,239,1023900,1062490,1021070060,3964 +QU,POINT (-73.87816547941615 40.74831103959605),11729,Free,LinkNYC - Citybridge,qu-03-136452,88-03 ROOSEVELT AVENUE,40.7483110396,-73.8781654794,1018007.88523,211930.020087,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011059,09/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,277,4027700,4307356,4014760110,3965 +MN,POINT (-73.94925939041153 40.8226634696064),11730,Free,LinkNYC - Citybridge,mn-09-120571,477 W 141 STREET,40.8226634696,-73.9492593904,998293.510615,238999.741866,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010975,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,227,1022700,1061221,1020580000,3966 +QU,POINT (-73.92421780955178 40.76150726015511),11731,Free,LinkNYC - Citybridge,qu-01-100721,32-07 BROADWAY,40.7615072602,-73.9242178096,1005243.55938,216723.436682,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010979,04/02/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,61,4006100,4008405,4006140010,3967 +QU,POINT (-73.9221114699888 40.76730677972597),11732,Free,LinkNYC - Citybridge,qu-01-133970,30-01 30 AVENUE,40.7673067797,-73.92211147,1005825.18912,218836.903911,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010981,01/10/2018 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,71,4007100,4007687,4005950010,3968 +MN,POINT (-73.96194569012415 40.80069000028916),11733,Free,LinkNYC - Citybridge,mn-07-136666,980 Columbus Avenue,40.8006900003,-73.9619456901,994785.793549,230992.244758,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010982,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1079464,1018630030,3969 +MN,POINT (-73.98452873017293 40.74575598005767),11734,Free,LinkNYC - Citybridge,mn-05-137138,130 MADISON AVENUE,40.7457559801,-73.9845287302,988536.942202,210976.032494,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010990,02/23/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1016976,1008600070,3970 +MN,POINT (-74.00813877950364 40.723117589999056),11735,Free,LinkNYC - Citybridge,mn-01-137026,195 HUDSON STREET,40.72311759,-74.0081387795,981994.055025,202727.881996,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010991,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,39,1003900,1002857,1002227500,3971 +MN,POINT (-74.00797976983255 40.722870420314834),11736,Free,LinkNYC - Citybridge,mn-01-145538,200 HUDSON STREET,40.7228704203,-74.0079797698,982038.121866,202637.826401,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010992,10/10/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1002854,1002210030,3972 +QU,POINT (-73.88970545000588 40.74696638025161),11737,Free,LinkNYC - Citybridge,qu-04-137921,75-20 ROOSEVELT AVENUE,40.7469663803,-73.88970545,1014811.01104,211435.881312,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010993,08/30/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4036735,4014860030,3973 +MN,POINT (-73.93565286997905 40.84687476959706),11738,Free,LinkNYC - Citybridge,mn-12-134789,1341 ST NICHOLAS AVENUE,40.8468747696,-73.93565287,1002052.9155,247823.286883,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-010997,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,1063551,1021440050,3974 +QU,POINT (-73.84784439978031 40.69469685971156),11739,Free,LinkNYC - Citybridge,qu-09-143998,97-20 JAMAICA AVENUE,40.6946968597,-73.8478443998,1026443.1656,192409.892461,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-010999,09/25/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,30,4003000,4184482,4089380010,3975 +MN,POINT (-73.99328246990139 40.73663894037477),11740,Free,LinkNYC - Citybridge,mn-05-137879,96 5 AVENUE,40.7366389404,-73.9932824699,986111.61864,207654.098193,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011000,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015292,1008160040,3976 +MN,POINT (-73.98513107020602 40.73192288970518),11741,Free,LinkNYC - Citybridge,mn-03-138879,218 2 AVENUE,40.7319228897,-73.9851310702,988370.894962,205936.171183,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011001,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006510,1004550000,3977 +MN,POINT (-73.99336333046848 40.74741878996869),11742,Free,LinkNYC - Citybridge,mn-05-133687,322 7 AVENUE,40.74741879,-73.9933633305,986088.912321,211581.538501,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011003,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1014262,1007780040,3978 +MN,POINT (-73.99915027022361 40.73910654986526),11743,Free,LinkNYC - Citybridge,mn-04-135855,77 7 AVENUE,40.7391065499,-73.9991502702,984485.475567,208553.056041,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011005,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014515,1007900000,3979 +MN,POINT (-73.99147237015602 40.74493317039479),11744,Free,LinkNYC - Citybridge,mn-05-136609,775 6 AVENUE,40.7449331704,-73.9914723702,986612.95458,210675.993068,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011008,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015042,1008020040,3980 +MN,POINT (-73.98229108997631 40.736164839756086),11745,Free,LinkNYC - Citybridge,mn-06-134971,247 E 20 STREET,40.7361648398,-73.98229109,989157.677509,207481.793091,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011014,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1088555,1009010030,3981 +BX,POINT (-73.91700041997566 40.807377519786264),11746,Free,LinkNYC - Citybridge,bx-01-117230,256 ST ANNS AVENUE,40.8073775198,-73.91700042,1007227.12103,233437.34059,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011029,07/02/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,27,2002702,2003623,2025510000,3982 +QU,POINT (-73.88468950014202 40.7474899403002),11747,Free,LinkNYC - Citybridge,qu-04-136456,81-02 ROOSEVELT AVENUE,40.7474899403,-73.8846895001,1016200.60571,211628.420625,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011039,10/04/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,269,4026901,4036860,4014920000,3983 +QU,POINT (-73.91849412035569 40.75881764977282),11748,Free,LinkNYC - Citybridge,qu-01-145452,40-13 BROADWAY,40.7588176498,-73.9184941204,1006830.07556,215744.947497,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011042,12/19/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,155,4015500,4436918,4006780000,3984 +MN,POINT (-73.96800952996045 40.79237863002998),11749,Free,LinkNYC - Citybridge,mn-07-134708,730 COLUMBUS AVE,40.79237863,-73.96800953,993108.052482,227963.452587,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011048,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,181,1018100,1082743,1012260030,3985 +QU,POINT (-73.94141972953456 40.74766698984237),11750,Free,LinkNYC - Citybridge,qu-02-139595,27-20 43 AVENUE,40.7476669898,-73.9414197295,1000481.57087,211677.323414,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011073,10/18/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4005138,4004330000,3986 +MN,POINT (-73.98284709021166 40.73076721992984),11751,Free,LinkNYC - Citybridge,mn-03-139034,220 1 AVENUE,40.7307672199,-73.9828470902,989003.978013,205515.240266,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011068,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1006010,1004410000,3987 +MN,POINT (-73.99300347977633 40.7428279203043),11752,Free,LinkNYC - Citybridge,mn-04-134100,711 6 AVENUE,40.7428279203,-73.9930034798,986188.754641,209908.945717,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011071,07/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014803,1007980050,3988 +MN,POINT (-73.98684236941004 40.725290990218966),11753,Free,LinkNYC - Citybridge,mn-03-138878,80 1 AVENUE,40.7252909902,-73.9868423694,987896.97465,203519.887958,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011080,10/25/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,1077561,1004320000,3989 +QU,POINT (-73.88881990032041 40.747059110448454),11754,Free,LinkNYC - Citybridge,qu-04-137796,76-22 ROOSEVELT AVENUE,40.7470591104,-73.8888199003,1015056.34093,211469.97606,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011086,08/30/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4036751,4014870010,3990 +MN,POINT (-73.96632817044467 40.80439874999265),11755,Free,LinkNYC - Citybridge,mn-09-134415,2848 BROADWAY,40.80439875,-73.9663281704,993571.931804,232342.975652,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011088,01/12/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1056917,1018820060,3991 +MN,POINT (-73.94076999988187 40.814229000338486),10773,Free,Transit Wireless,"135 St (2,3)","135 St (2,3)",40.8142290003,-73.9407699999,1000645.20211,235928.236198,Subway Station,SN 438,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,0,0,1594 +QU,POINT (-73.89214476973851 40.746711120060496),11756,Free,LinkNYC - Citybridge,qu-04-134075,73-02 ROOSEVELT AVENUE,40.7467111201,-73.8921447697,1014135.22598,211342.040292,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011092,08/24/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11377,404,265,4026500,4030453,4013057500,3992 +MN,POINT (-73.97189334044056 40.75045755975619),11757,Free,LinkNYC - Citybridge,mn-06-138188,801 2 AVENUE,40.7504575598,-73.9718933404,992037.539203,212689.839762,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011214,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,88,1008800,1037553,1013160030,3993 +MN,POINT (-73.95646461999267 40.766951730315704),11758,Free,LinkNYC - Citybridge,mn-08-135082,1320 1 AVENUE,40.7669517303,-73.95646462,996309.402707,218700.952412,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011094,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,124,1012400,1045808,1014650000,3994 +MN,POINT (-73.99281160019775 40.74309729962164),11759,Free,LinkNYC - Citybridge,mn-04-134599,717 6 AVENUE,40.7430972996,-73.9928116002,986241.916936,210007.093487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011095,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014954,1007990040,3995 +MN,POINT (-73.94192414001122 40.81802906985875),11760,Free,LinkNYC - Citybridge,mn-10-134578,2380 ADAM CLAYTON POWELL JR BOULEVARD,40.8180290699,-73.94192414,1000324.81167,237312.523784,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011098,09/15/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060371,1020250030,3996 +MN,POINT (-73.93583333016923 40.84662333016822),11761,Free,LinkNYC - Citybridge,mn-12-134849,1339 ST NICHOLAS AVENUE,40.8466233302,-73.9358333302,1002003.05471,247731.641397,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011100,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,1063552,1021440050,3997 +QU,POINT (-73.88464352038329 40.74762687038848),11762,Free,LinkNYC - Citybridge,qu-03-133667,81-03 ROOSEVELT AVENUE,40.7476268704,-73.8846435204,1016213.28022,211678.325381,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011103,02/28/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,283,4028300,4030026,4012920050,3998 +MN,POINT (-73.9943931395592 40.740512980056415),11763,Free,LinkNYC - Citybridge,mn-05-134626,636 6 AVENUE,40.7405129801,-73.9943931396,985803.730148,209065.511709,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011104,04/25/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1015460,1008217510,3999 +MN,POINT (-73.99396309995305 40.74151493007656),11764,Free,LinkNYC - Citybridge,mn-04-135464,655 6 AVENUE,40.7415149301,-73.9939631,985922.874267,209430.561832,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011105,10/18/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1087522,1007967500,4000 +MN,POINT (-73.99320916040372 40.742548419773854),11765,Free,LinkNYC - Citybridge,mn-04-134489,699 6 AVENUE,40.7425484198,-73.9932091604,986131.767878,209807.110291,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011106,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,91,1009100,1014802,1007980040,4001 +MN,POINT (-73.98397944991657 40.729219869965945),11766,Free,LinkNYC - Citybridge,mn-03-138884,180 1 AVENUE,40.72921987,-73.9839794499,988690.244388,204951.432995,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011109,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1077666,1004380010,4002 +MN,POINT (-73.988224180359 40.72380705028274),11767,Free,LinkNYC - Citybridge,mn-03-139058,29 1 AVENUE,40.7238070503,-73.9882241804,987514.043001,202979.188252,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011110,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,36,1003602,1006092,1004430030,4003 +MN,POINT (-73.97141311040399 40.78769782982209),11768,Free,LinkNYC - Citybridge,mn-07-134640,574 COLUMBUS AVE,40.7876978298,-73.9714131104,992166.169195,226257.75029,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011111,04/30/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,173,1017300,1032247,1012180040,4004 +QU,POINT (-73.8706241603279 40.74911169991871),11769,Free,LinkNYC - Citybridge,qu-03-136366,95-31 ROOSEVELT AVENUE,40.7491116999,-73.8706241603,1020097.00014,212224.722254,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011115,09/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,273,4027300,4036618,4014830040,4005 +QU,POINT (-73.87146337999401 40.748878310442635),11770,Free,LinkNYC - Citybridge,qu-04-136657,94-26 ROOSEVELT AVENUE,40.7488783104,-73.87146338,1019864.59707,212139.348737,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011116,09/08/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,465,4046500,4311592,4015890100,4006 +MN,POINT (-73.96407037958885 40.756943989740456),11771,Free,LinkNYC - Citybridge,mn-06-136356,1001 1 AVENUE,40.7569439897,-73.9640703796,994204.085067,215053.848485,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014096,03/08/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039951,1013470030,4391 +QU,POINT (-73.91297465969117 40.75607268998889),11772,Free,LinkNYC - Citybridge,qu-01-140339,47-16 BROADWAY,40.75607269,-73.9129746597,1008360.15879,214746.34057,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014133,05/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,161,4016100,4013130,4007230040,4392 +QU,POINT (-73.89344842000148 40.74670668996488),11773,Free,LinkNYC - Citybridge,qu-03-143034,72-01 ROOSEVELT AVENUE,40.74670669,-73.89344842,1013774.00426,211339.984194,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014139,08/24/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11372,403,265,4026500,4029787,4012830070,4393 +MN,POINT (-73.96318320001623 40.7994724598554),11774,Free,LinkNYC - Citybridge,mn-07-107744,105 WEST 106 STREET,40.7994724599,-73.9631832,994443.360507,230548.505816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014173,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055966,1018610030,4394 +MN,POINT (-73.98618292301856 40.74739112822315),11775,Free,LinkNYC - Citybridge,mn-05-107796,6 WEST 32 STREET,40.7473911282,-73.986182923,988078.487082,211571.69272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014179,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,76,1007600,1015824,1008330050,4395 +MN,POINT (-73.97386679949533 40.7894446500026),11776,Free,LinkNYC - Citybridge,mn-07-107815,590 AMSTERDAM AVENUE,40.78944465,-73.9738667995,991486.513402,226893.964569,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014181,05/24/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,175,1017500,1033297,1012360030,4396 +MN,POINT (-73.97404944033835 40.7840964200042),11777,Free,LinkNYC - Citybridge,mn-07-107832,462 COLUMBUS AVENUE,40.78409642,-73.9740494403,991436.515799,224945.406458,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014184,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,169,1016900,1032070,1012130030,4397 +MN,POINT (-73.97905067997696 40.77657342961743),11778,Free,LinkNYC - Citybridge,mn-07-107864,70 WEST 71 STREET,40.7765734296,-73.97905068,990052.172767,222204.155707,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014189,01/23/2019 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1028585,1011230060,4398 +MN,POINT (-73.9930677100834 40.72018834030024),11779,Free,LinkNYC - Citybridge,mn-03-107871,18 DELANCEY STREET,40.7201883403,-73.9930677101,986171.609006,201660.637411,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014190,10/28/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,1005696,1004250040,4399 +MN,POINT (-73.95873403990956 40.76384524031577),11780,Free,LinkNYC - Citybridge,mn-08-107873,1220 1 AVENUE,40.7638452403,-73.9587340399,995681.301272,217568.851329,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014191,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1089354,1014600050,4400 +MN,POINT (-74.00670429946831 40.74884200009837),11781,Free,LinkNYC - Citybridge,mn-04-107976,184 11 AVENUE,40.7488420001,-74.0067042995,982392.388218,212100.061086,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014206,05/07/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,1012341,1006950000,4401 +MN,POINT (-73.9618912709512 40.80040454928779),11782,Free,LinkNYC - Citybridge,mn-07-107980,975 Columbus Avenue,40.8004045493,-73.961891271,994800.905395,230888.251528,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014207,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055704,1018430060,4402 +MN,POINT (-73.9916770497172 40.74484704020189),11783,Free,LinkNYC - Citybridge,mn-04-108085,100 WEST 26 STREET,40.7448470402,-73.9916770497,986556.242095,210644.607632,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014220,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10001,104,91,1009100,1085978,1008010030,4403 +MN,POINT (-73.99907940961862 40.71716820996931),11784,Free,LinkNYC - Citybridge,mn-03-108162,210 CANAL STREET,40.71716821,-73.9990794096,984505.196328,200560.236725,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014226,12/15/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10013,103,29,1002900,1085449,1001997500,4404 +MN,POINT (-73.94352700002925 40.79952800009948),11785,Free,LinkNYC - Citybridge,mn-11-108257,95 EAST 116 STREET,40.7995280001,-73.943527,999885.501854,230571.638972,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014236,06/21/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,184,1018400,1051672,1016220030,4405 +MN,POINT (-73.95971502975428 40.7629208803515),11786,Free,LinkNYC - Citybridge,mn-08-108268,1187 1 AVENUE,40.7629208804,-73.9597150298,995409.706999,217231.9501,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014238,06/07/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,118,1011800,1044695,1014390020,4406 +BK,POINT (-73.99404694028289 40.68134564012984),11787,Free,LinkNYC - Citybridge,bk-06-108348,311 SMITH STREET,40.6813456401,-73.9940469403,985901.1312,187509.064992,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-014247,02/12/2018 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,75,3007500,3007265,3004360010,4407 +QU,POINT (-73.92268747930292 40.76743258178256),11788,Free,LinkNYC - Citybridge,qu-01-108362,29-24 30 AVENUE,40.7674325818,-73.9226874793,1005665.59364,218882.596405,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014248,10/09/2017 12:00:00 AM +0000,4,Queens,QN71,Old Astoria,22,11102,401,73,4007300,4007621,4005920030,4408 +QU,POINT (-73.92680800032211 40.76272000023192),11789,Free,LinkNYC - Citybridge,qu-01-108373,29-01 BROADWAY,40.7627200002,-73.9268080003,1004525.64284,217164.667426,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014249,05/23/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,75,4007500,4007473,4005880010,4409 +MN,POINT (-74.00546558994087 40.738351049775886),11790,Free,LinkNYC - Citybridge,mn-02-108535,628 HUDSON STREET,40.7383510498,-74.0054655899,982735.368503,208277.84957,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014256,10/12/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,77,1007700,1011647,1006260020,4410 +MN,POINT (-73.99119799943998 40.716355000199904),11791,Free,LinkNYC - Citybridge,mn-03-108607,45 ORCHARD STREET,40.7163550002,-73.9911979994,986690.02726,200264.080821,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014263,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,16,1001600,1003993,1003080030,4411 +MN,POINT (-73.92841498764112 40.85642084199133),11792,Free,LinkNYC - Citybridge,mn-12-113582,1614 ST. NICHOLAS AVE,40.856420842,-73.9284149876,1004052.57718,251302.837339,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014272,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,277,1027700,1063868,1021610020,4412 +QU,POINT (-73.86326154959698 40.69190229010308),11793,Free,LinkNYC - Citybridge,qu-09-114647,78-14 JAMAICA AVENUE,40.6919022901,-73.8632615496,1022169.54062,191384.699958,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014273,08/09/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,30,11421,409,4,4000400,4183391,4089140010,4413 +QU,POINT (-73.85754699994843 40.692671999591305),11794,Free,LinkNYC - Citybridge,qu-09-133287,86-15 JAMAICA AVENUE,40.6926719996,-73.8575469999,1023753.81009,191667.652804,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014303,01/16/2018 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,12,4001200,4181747,4088610080,4414 +MN,POINT (-73.9912080004547 40.7340359998468),11795,Free,LinkNYC - Citybridge,mn-02-133831,62 EAST 13 STREET,40.7340359998,-73.9912080005,986686.608304,206705.815969,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014316,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,61,1006100,1080130,1005647500,4415 +MN,POINT (-73.93082739016741 40.85291725958146),11796,Free,LinkNYC - Citybridge,mn-12-131063,590 W 187 ST,40.8529172596,-73.9308273902,1003386.2419,250025.812334,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014321,03/01/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063791,1021570080,4416 +MN,POINT (-73.98299600048242 40.761640000243396),12751,Free,LinkNYC - Citybridge,mn-05-122651,780 7 AVENUE,40.7616400002,-73.9829960005,988960.523704,216763.174463,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003316,11/11/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1024811,1010220040,3678 +MN,POINT (-73.98255200010253 40.762365999757705),12752,Free,LinkNYC - Citybridge,mn-05-122656,200 WEST 52 STREET,40.7623659998,-73.9825520001,989083.46998,217027.704118,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003352,11/10/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1024818,1010230030,3679 +MN,POINT (-73.98171100004498 40.763036000322515),12753,Free,LinkNYC - Citybridge,mn-05-122657,821 7 AVENUE,40.7630360003,-73.981711,989316.394055,217271.854876,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003354,06/29/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1023166,1010067500,3680 +MN,POINT (-73.98047754977866 40.764718099991),12754,Free,LinkNYC - Citybridge,mn-05-122647,879 7 AVENUE,40.7647181,-73.9804775498,989657.946193,217884.772942,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003357,11/18/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1076178,1010087500,3681 +MN,POINT (-73.98073089026934 40.76487454038313),12755,Free,LinkNYC - Citybridge,mn-05-122649,200 WEST 56 STREET,40.7648745404,-73.9807308903,989587.755389,217941.753799,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003358,11/11/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,137,1013700,1024878,1010277500,3682 +MN,POINT (-73.97104466056194 40.79331000041256),12756,Free,LinkNYC - Citybridge,mn-07-120610,718 AMSTERDAM AVENUE,40.7933100004,-73.9710446606,992267.522995,228302.490623,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003474,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033681,1012420040,3683 +MN,POINT (-73.97088676985543 40.793524400342115),12757,Free,LinkNYC - Citybridge,mn-07-107263,720 AMSTERDAM AVENUE,40.7935244003,-73.9708867699,992311.215821,228380.61842,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003475,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033697,1012430030,3684 +MN,POINT (-73.97037599969123 40.79386699963888),12758,Free,LinkNYC - Citybridge,mn-07-135446,733 AMSTERDAM AVE,40.7938669996,-73.9703759997,992452.601693,228505.486608,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003477,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,181,1018100,1032587,1012267500,3685 +MN,POINT (-73.97057116981408 40.79396219017057),12759,Free,LinkNYC - Citybridge,mn-07-120609,734 AMSTERDAM AVENUE,40.7939621902,-73.9705711698,992398.549308,228540.149597,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003478,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,183,1018300,1033704,1012430040,3686 +MN,POINT (-73.97005104035875 40.794672590337925),12760,Free,LinkNYC - Citybridge,mn-07-134602,748 AMSTERDAM AVE,40.7946725903,-73.9700510404,992542.479466,228799.021782,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003479,03/20/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,183,1018300,1056062,1018680030,3687 +MN,POINT (-73.96983700038035 40.79460400017262),12761,Free,LinkNYC - Citybridge,mn-07-120526,755 AMSTERDAM AVE,40.7946040002,-73.9698370004,992601.75297,228774.052344,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003480,10/07/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,181,1018100,1079453,1018510010,3688 +MN,POINT (-73.96980999954185 40.79500500014253),12762,Free,LinkNYC - Citybridge,mn-07-111894,764 AMSTERDAM AVENUE,40.7950050001,-73.9698099995,992609.178808,228920.153102,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003481,06/29/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,183,1018300,1056377,1018690030,3689 +MN,POINT (-73.96941886944005 40.7955439398705),12763,Free,LinkNYC - Citybridge,mn-07-135581,782 AMSTERDAM AVE,40.7955439399,-73.9694188694,992717.408578,229116.545097,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003482,08/07/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056400,1018700030,3690 +MN,POINT (-73.96884900025535 40.79595099959295),12764,Free,LinkNYC - Citybridge,mn-07-108008,801 AMSTERDAM AVE,40.7959509996,-73.9688490003,992875.143171,229264.906677,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003483,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,185,1018500,1088438,1018527500,3691 +MN,POINT (-73.96868199959714 40.796532999561336),12765,Free,LinkNYC - Citybridge,mn-07-133672,816 AMSTERDAM AVE,40.7965329996,-73.9686819996,992921.306792,229476.965965,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003799,07/26/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056462,1018710040,3692 +MN,POINT (-73.96864683994967 40.79673747997779),12766,Free,LinkNYC - Citybridge,mn-07-120524,201 WEST 100 STREET,40.79673748,-73.9686468399,992931.015106,229551.468768,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003835,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056483,1018720030,3693 +MN,POINT (-73.96854200029141 40.79637399982316),12767,Free,LinkNYC - Citybridge,mn-07-108104,817 AMSTERDAM AVENUE,40.7963739998,-73.9685420003,992960.090508,229419.050726,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003871,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,185,1018500,1088438,1018527500,3694 +MN,POINT (-73.96822346037504 40.79717823966556),12768,Free,LinkNYC - Citybridge,mn-07-120536,836 AMSTERDAM AVENUE,40.7971782397,-73.9682234604,993048.181539,229712.095087,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003872,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056483,1018720030,3695 +MN,POINT (-73.96807000048685 40.79739099972416),12769,Free,LinkNYC - Citybridge,mn-07-133671,842 AMSTERDAM AVE,40.7973909997,-73.9680700005,993090.64274,229789.626428,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003873,08/09/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056508,1018730030,3696 +MN,POINT (-73.96784045947942 40.79770007021112),12770,Free,LinkNYC - Citybridge,mn-07-136087,852 AMSTERDAM AVE,40.7977000702,-73.9678404595,993154.155736,229902.254812,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003874,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056511,1018730030,3697 +MN,POINT (-73.96774773027856 40.797826189880766),12771,Free,LinkNYC - Citybridge,mn-07-120535,856 AMSTERDAM AVE,40.7978261899,-73.9677477303,993179.813165,229948.214038,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003875,10/10/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,187,1018700,1056513,1018730040,3698 +MN,POINT (-73.96760332019626 40.798027329982254),12772,Free,LinkNYC - Citybridge,mn-07-133668,868 AMSTERDAM AVE,40.79802733,-73.9676033202,993219.76945,230021.511135,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003911,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1079429,1018740030,3699 +MN,POINT (-73.96726528988633 40.79847663955183),12773,Free,LinkNYC - Citybridge,mn-07-120534,876 AMSTERDAM AVE,40.7984766396,-73.9672652899,993313.299775,230185.24506,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003912,06/27/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1079429,1018740030,3700 +MN,POINT (-73.98185300041179 40.777920999818285),12774,Free,LinkNYC - Citybridge,mn-07-121346,2060 BROADWAY,40.7779209998,-73.9818530004,989275.933834,222694.947704,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003914,02/27/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1029873,1011430000,3701 +MN,POINT (-73.98166499952637 40.77838099973296),12775,Free,LinkNYC - Citybridge,mn-07-133413,2096 BROADWAY,40.7783809997,-73.9816649995,989327.966866,222862.552028,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003916,02/27/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1029904,1011430060,3702 +MN,POINT (-73.96691699964165 40.80357900024291),12776,Free,LinkNYC - Citybridge,mn-07-120400,2820 BROADWAY,40.8035790002,-73.9669169996,993409.029242,232044.249872,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003917,06/29/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,1056691,1018810000,3703 +MN,POINT (-73.96599500022344 40.80483499958415),12777,Free,LinkNYC - Citybridge,mn-09-120396,2858 BROADWAY,40.8048349996,-73.9659950002,993664.107144,232501.952369,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-003918,07/12/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,109,199,1019900,1075433,1018837500,3704 +MN,POINT (-73.9668302999506 40.79908843966447),12778,Free,LinkNYC - Citybridge,mn-07-120533,896 AMSTERDAM AVENUE,40.7990884397,-73.9668303,993433.651568,230408.19048,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004657,07/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056566,1018750040,3705 +MN,POINT (-73.94973799992847 40.827117000414866),12779,Free,LinkNYC - Citybridge,mn-09-120436,3560 BROADWAY,40.8271170004,-73.9497379999,998160.114556,240622.248792,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004661,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1081831,1020780000,3706 +MN,POINT (-73.93878767974272 40.84449293036886),12780,Free,LinkNYC - Citybridge,mn-12-120796,4100 BROADWAY,40.8444929304,-73.9387876797,1001186.21448,246954.871625,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004664,02/25/2019 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,253,1025300,1063464,1021410030,3707 +MN,POINT (-73.96610660966121 40.800504329971574),12781,Free,LinkNYC - Citybridge,mn-07-107743,200 WEST 106 STREET,40.80050433,-73.9661066097,993633.819147,230924.125472,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004809,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,191,1019100,1056619,1018770040,3708 +MN,POINT (-73.96493891042479 40.801049730017496),12782,Free,LinkNYC - Citybridge,mn-07-102695,175 WEST 107 STREET,40.80104973,-73.9649389104,993957.032083,231122.961032,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004812,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055983,1018620000,3709 +MN,POINT (-73.95888899986919 40.80996500011397),12783,Free,LinkNYC - Citybridge,mn-09-120545,1238 AMSTERDAM AVENUE,40.8099650001,-73.9588889999,995630.489038,234371.836424,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004816,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,203,1020300,1059647,1019750030,3710 +MN,POINT (-73.95874400054736 40.8101630002045),12784,Free,LinkNYC - Citybridge,mn-09-142793,1244 AMSTERDAM AVENUE,40.8101630002,-73.9587440005,995670.594273,234443.99376,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004817,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,203,1020300,1059657,1019760030,3711 +MN,POINT (-73.95832100008509 40.81037800039297),12785,Free,LinkNYC - Citybridge,mn-09-142953,1253 AMSTERDAM AVENUE,40.8103780004,-73.9583210001,995787.653094,234522.381399,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004818,09/28/2016 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10027,109,207,1020701,1087900,1019630060,3712 +MN,POINT (-73.95618996992629 40.81366898986182),12786,Free,LinkNYC - Citybridge,mn-09-136200,1340 AMSTERDAM AVENUE,40.8136689899,-73.9561899699,996376.968844,235721.693961,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004821,09/13/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,219,1021900,1059700,1019820020,3713 +MN,POINT (-73.95483699969985 40.81515000003016),12787,Free,LinkNYC - Citybridge,mn-09-120554,1403 AMSTERDAM AVENUE,40.81515,-73.9548369997,996751.20366,236261.469128,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-004822,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,213,1021303,1059604,1019690000,3714 +MN,POINT (-73.95450726046634 40.81559377042246),12788,Free,LinkNYC - Citybridge,mn-09-140440,1417 AMSTERDAM AVENUE,40.8155937704,-73.9545072605,996842.392126,236423.197807,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005208,06/14/2017 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,213,1021303,1059619,1019690080,3715 +MN,POINT (-73.95436370969577 40.81579959972779),12789,Free,LinkNYC - Citybridge,mn-09-142532,1421 AMSTERDAM AVENUE,40.8157995997,-73.9543637097,996882.087913,236498.209468,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005209,09/22/2017 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,9,10027,109,213,1021303,1059623,1019700000,3716 +MN,POINT (-73.95275499995338 40.81837100029633),12790,Free,LinkNYC - Citybridge,mn-09-111948,1500 AMSTERDAM AVENUE,40.8183710003,-73.952755,997326.872128,237435.299129,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005211,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,223,1022301,1059764,1019880030,3717 +MN,POINT (-73.95194200001936 40.81959999967069),12791,Free,LinkNYC - Citybridge,mn-09-120561,502 WEST 136 STREET,40.8195999997,-73.951942,997551.655471,237883.190294,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005212,09/30/2016 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,223,1022301,1059799,1019880110,3718 +MN,POINT (-73.95086299942524 40.8209600003911),12792,Free,LinkNYC - Citybridge,mn-09-139323,1580 AMSTERDAM AVENUE,40.8209600004,-73.9508629994,997850.026922,238378.853344,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005213,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1079852,1020700030,3719 +MN,POINT (-73.95011799970327 40.822211999626866),12793,Free,LinkNYC - Citybridge,mn-09-118226,501 WEST 140 STREET,40.8222119996,-73.9501179997,998055.966471,238835.118508,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005215,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1061767,1020727500,3720 +MN,POINT (-73.9499055997957 40.822267830156406),12794,Free,LinkNYC - Citybridge,mn-09-111918,1626 AMSTERDAM AVENUE,40.8222678302,-73.9499055998,998114.741287,238855.493139,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005216,03/08/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1061768,1020720030,3721 +MN,POINT (-73.94964028982284 40.822633450157554),12795,Free,LinkNYC - Citybridge,mn-09-134416,1626 AMSTERDAM AVE,40.8226334502,-73.9496402898,998188.095143,238988.743857,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005217,05/04/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1061769,1020720040,3722 +MN,POINT (-73.94901382052133 40.82312201000078),12796,Free,LinkNYC - Citybridge,mn-09-134420,1659 AMSTERDAM AVE,40.82312201,-73.9490138205,998361.379902,239166.844223,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005218,08/16/2017 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,227,1022700,1061221,1020580000,3723 +MN,POINT (-73.94790900009647 40.82464599981859),12797,Free,LinkNYC - Citybridge,mn-09-135240,1701 AMSTERDAM AVE,40.8246459998,-73.9479090001,998666.829422,239722.268965,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005220,05/11/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,227,1022700,1061300,1020590030,3724 +MN,POINT (-73.9469531398287 40.825947479935344),12798,Free,LinkNYC - Citybridge,mn-09-120576,1739 AMSTERDAM AVENUE,40.8259474799,-73.9469531398,998931.088408,240196.604302,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-005221,07/21/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,231,1023100,1061376,1020610000,3725 +SI,POINT (-74.11267358959252 40.572100260322905),12799,Free,LinkNYC - Citybridge,si-02-145729,291 NEW DORP LANE,40.5721002603,-74.1126735896,952947.845729,147728.135368,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-005400,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5052754,5036430020,3726 +SI,POINT (-74.11338299943418 40.572620000238544),12800,Free,LinkNYC - Citybridge,si-02-145727,265 NEW DORP LANE,40.5726200002,-74.1133829994,952751.007868,147917.743585,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Staten Island,LinkNYC Free Wi-Fi,LINK-005402,02/28/2017 12:00:00 AM +0000,5,Staten Island,SI45,New Dorp-Midland Beach,50,10306,502,122,5012200,5152363,5036437500,3727 +MN,POINT (-73.97142400009325 40.76374199971938),12801,Free,LinkNYC - Citybridge,mn-08-136969,650 MADISON AVENUE,40.7637419997,-73.9714240001,992166.000888,217529.835987,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000761,04/17/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10022,108,114,1011401,1040753,1013740010,3305 +MN,POINT (-74.00998457395242 40.70331108018433),12802,Free,LinkNYC - Citybridge,mn-01-123002,55 Water Street,40.7033110802,-74.009984574,981481.606575,195511.821953,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000763,02/27/2018 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1083346,1000327500,3306 +MN,POINT (-74.00908241026463 40.70390979975727),12803,Free,LinkNYC - Citybridge,mn-01-136177,55 WATER STREET,40.7039097998,-74.0090824103,981731.76946,195729.926175,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000771,02/23/2018 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10004,101,9,1000900,1083346,1000327500,3307 +MN,POINT (-74.0073218795407 40.705044179865276),12804,Free,LinkNYC - Citybridge,mn-01-135575,95 Wall Street,40.7050441799,-74.0073218795,982219.936791,196143.169115,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000772,04/27/2018 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000864,1000330010,3308 +MN,POINT (-74.00624350975481 40.70624184977104),12805,Free,LinkNYC - Citybridge,mn-01-123076,110 Maiden Lane,40.7062418498,-74.0062435098,982518.956534,196579.493046,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000774,02/09/2018 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,1000880,1000390010,3309 +QU,POINT (-73.95373886047729 40.74355855980305),12806,Free,LinkNYC - Citybridge,qu-02-141373,48-19 VERNON BOULEVARD,40.7435585598,-73.9537388605,997068.945479,210178.448459,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000779,03/14/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000254,4000440000,3310 +QU,POINT (-73.80766100027658 40.70182699993777),12807,Free,LinkNYC - Citybridge,qu-12-141535,147-05 JAMAICA AVENUE,40.7018269999,-73.8076610003,1037580.41268,195029.518783,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000780,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11435,412,240,4024000,4206783,4096770000,3311 +QU,POINT (-73.80647699943742 40.701852999692086),12808,Free,LinkNYC - Citybridge,qu-12-141534,148-07 JAMAICA AVENUE,40.7018529997,-73.8064769994,1037908.6827,195039.714301,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000781,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11435,412,240,4024000,4206810,4096780110,3312 +QU,POINT (-73.80035217690882 40.703452485155616),12809,Free,LinkNYC - Citybridge,qu-12-141547,90-50 Parsons Boulevard,40.7034524852,-73.8003521769,1039605.59892,195626.264309,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000783,02/03/2017 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,240,4024000,4208820,4097540030,3313 +QU,POINT (-73.79869023006772 40.704020280449846),12810,Free,LinkNYC - Citybridge,qu-12-141545,160-15 Jamaica Ave,40.7040202805,-73.7986902301,1040065.92445,195834.183185,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000784,10/20/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,446,4044601,4208855,4097570050,3314 +QU,POINT (-73.79992299949696 40.703351999907206),12811,Free,LinkNYC - Citybridge,qu-12-141549,159-02 JAMAICA AVENUE,40.7033519999,-73.7999229995,1039724.67874,195589.926127,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000785,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,446,4044601,4215612,4101000000,3315 +QU,POINT (-73.79373005026994 40.70583906019998),12812,Free,LinkNYC - Citybridge,qu-12-138109,166-08 JAMAICA AVENUE,40.7058390602,-73.7937300503,1041439.6402,196500.016827,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000789,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,444,4044400,4216243,4101560000,3316 +QU,POINT (-73.79589699994615 40.70514300031302),12813,Free,LinkNYC - Citybridge,qu-12-141540,163-33 JAMAICA AVENUE,40.7051430003,-73.7958969999,1040839.43176,196245.014712,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000791,11/30/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,446,4044601,4209572,4097930000,3317 +QU,POINT (-73.79378660008054 40.705971429903464),12814,Free,LinkNYC - Citybridge,qu-12-141550,166-01 JAMAICA AVENUE,40.7059714299,-73.7937866001,1041423.84791,196548.206035,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000793,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11432,412,460,4046000,4209622,4097960020,3318 +QU,POINT (-73.80201889049634 40.70273351017929),12815,Free,LinkNYC - Citybridge,qu-12-142734,153-02 JAMAICA AVENUE,40.7027335102,-73.8020188905,1039144.06835,195363.272053,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000794,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,240,4024000,4315254,4100970010,3319 +QU,POINT (-73.79934331965421 40.70376856008119),12816,Free,LinkNYC - Citybridge,qu-12-144028,159-29 JAMAICA AVENUE,40.7037685601,-73.7993433197,1039885.0567,195742.058697,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000797,09/28/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,446,4044601,4208839,4097560060,3320 +QU,POINT (-73.79901751007536 40.703895280202254),12817,Free,LinkNYC - Citybridge,qu-12-138097,160-05 JAMAICA AVENUE,40.7038952802,-73.7990175101,1039975.28618,195788.433604,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000798,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,446,4044601,4208857,4097570050,3321 +QU,POINT (-73.79847027957416 40.70392839973502),12818,Free,LinkNYC - Citybridge,qu-12-141542,160-12 JAMAICA AVENUE,40.7039283997,-73.7984702796,1040126.98567,195800.848606,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000799,02/03/2017 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,446,4044601,4215614,4101010000,3322 +QU,POINT (-73.79786531041267 40.70435510019592),12819,Free,LinkNYC - Citybridge,qu-12-141537,161-21 Jamaica Ave,40.7043551002,-73.7978653104,1040294.36296,195956.694423,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000801,09/30/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,24,11432,412,446,4044601,4208875,4097607500,3323 +QU,POINT (-73.79774311963887 40.70421584979478),12820,Free,LinkNYC - Citybridge,qu-12-141538,162-02 JAMAICA AVENUE,40.7042158498,-73.7977431196,1040328.35896,195906.039668,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000802,02/03/2017 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,446,4044601,4215621,4101020000,3324 +QU,POINT (-73.79680056021749 40.70460911012122),12821,Free,LinkNYC - Citybridge,qu-12-141541,163-02 JAMAICA AVENUE,40.7046091101,-73.7968005602,1040589.36303,196049.920614,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000804,09/23/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,446,4044601,4216196,4101510000,3325 +QU,POINT (-73.79662038990384 40.704686550399764),12822,Free,LinkNYC - Citybridge,qu-12-138095,163-08 JAMAICA AVENUE,40.7046865504,-73.7966203899,1040639.25171,196078.250282,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-000805,10/07/2016 12:00:00 AM +0000,4,Queens,QN61,Jamaica,27,11433,412,446,4044601,4216196,4101510000,3326 +MN,POINT (-73.96580928052339 40.76210713996652),12823,Free,LinkNYC - Citybridge,mn-08-121741,1011 3 AVENUE,40.76210714,-73.9658092805,993721.598827,216934.760078,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000824,03/29/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043547,1014157500,3327 +QU,POINT (-73.86673399998165 40.691450000154944),11797,Free,LinkNYC - Citybridge,qu-09-126735,74-39 JAMAICA AVENUE,40.6914500002,-73.866734,1021206.83159,191218.433558,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014333,07/21/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,30,11421,409,2,4000200,4180778,4088350000,4417 +BX,POINT (-73.90139163433584 40.846646411099364),11798,Free,LinkNYC - Citybridge,bx-06-118932,1848 WEBSTER AVENUE,40.8466464111,-73.9013916343,1011532.05927,247748.904158,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014335,08/01/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,206,231,2023100,2009444,2029000020,4418 +QU,POINT (-73.88498742947722 40.74745120029971),11799,Free,LinkNYC - Citybridge,qu-04-128504,80-20 ROOSEVELT AVENUE,40.7474512003,-73.8849874295,1016118.07306,211614.197884,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014352,09/07/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,269,4026901,4036845,4014910010,4419 +MN,POINT (-73.95679626029958 40.80260688042897),11800,Free,LinkNYC - Citybridge,mn-10-131051,2097 FREDERICK DOUGLASS BOULEVARD,40.8026068804,-73.9567962603,996211.130593,231691.292573,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014399,10/20/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,197,1019702,1055811,1018470050,4420 +QU,POINT (-73.89248971058933 40.74667037042477),11801,Free,LinkNYC - Citybridge,qu-04-111010,72-30 ROOSEVELT AVENUE,40.7466703704,-73.8924897106,1014039.6658,211327.076411,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014405,08/24/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11377,404,265,4026500,4030419,4013040040,4421 +QU,POINT (-73.87871568962312 40.74825267038001),11802,Free,LinkNYC - Citybridge,qu-03-111054,87-15 ROOSEVELT AVENUE,40.7482526704,-73.8787156896,1017855.46263,211908.542768,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014406,09/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,279,4027900,4036272,4014750030,4422 +QU,POINT (-73.87048870037788 40.74897101005079),11803,Free,LinkNYC - Citybridge,qu-04-111122,95-36 ROOSEVELT AVENUE,40.7489710101,-73.8704887004,1020134.60866,212173.519928,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014407,09/08/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,465,4046500,4039774,4015930010,4423 +MN,POINT (-73.98858429958608 40.73796976024669),11804,Free,LinkNYC - Citybridge,mn-05-137211,49 EAST 19 STREET,40.7379697602,-73.9885842996,987413.55206,208139.09263,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014420,02/07/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10003,105,52,1005200,1087725,1008487510,4424 +MN,POINT (-73.96483886983218 40.77237315998343),11805,Free,LinkNYC - Citybridge,mn-08-121031,34 EAST 73 STREET,40.77237316,-73.9648388698,993988.923096,220675.117427,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014433,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,130,1013000,1041472,1013870050,4425 +MN,POINT (-74.00417706043658 40.74788855006696),11806,Free,LinkNYC - Citybridge,mn-04-123657,225 10 AVENUE,40.7478885501,-74.0041770604,983092.613195,211752.645114,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014437,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,99,1009900,1012354,1006950040,4426 +MN,POINT (-73.98610740973726 40.73274736027071),11807,Free,LinkNYC - Citybridge,mn-03-123803,226 EAST 14 STREET,40.7327473603,-73.9861074097,988100.256723,206236.507196,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014438,10/28/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006902,1004690020,4427 +BK,POINT (-73.99422709948405 40.69472554025924),11808,Free,LinkNYC - Citybridge,bk-02-126904,128 MONTAGUE STREET,40.6947255403,-73.9942270995,985850.841275,192383.749797,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-014440,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,5,3000502,3002077,3002490030,4428 +MN,POINT (-73.94700173975644 40.81569588957197),11809,Free,LinkNYC - Citybridge,mn-10-119882,2504 FREDERICK DOUGLASS BLVD,40.8156958896,-73.9470017398,998919.897814,236461.571418,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014444,10/25/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,226,1022600,1058819,1019390060,4429 +BX,POINT (-73.91557399947389 40.81744599974769),11810,Free,LinkNYC - Citybridge,bx-01-118942,2922 3 AVENUE,40.8174459997,-73.9155739995,1007618.46736,237106.022885,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014483,12/28/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2001166,2023620020,4430 +BX,POINT (-73.89389439979219 40.86234730959544),11811,Free,LinkNYC - Citybridge,bx-07-119802,319 EAST KINGSBRIDGE ROAD,40.8623473096,-73.8938943998,1013599.39536,253471.762135,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014485,06/21/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,399,2039901,2016776,2032930010,4431 +BX,POINT (-73.91582925992523 40.81723499999852),11812,Free,LinkNYC - Citybridge,bx-01-118944,2914 3 AVENUE,40.817235,-73.9158292599,1007547.88712,237029.080125,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014492,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2001164,2023620010,4432 +QU,POINT (-73.92154563056644 40.7668938001518),11813,Free,LinkNYC - Citybridge,qu-01-125127,30-20 30 AVENUE,40.7668938002,-73.9215456306,1005982.06184,218686.581705,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014561,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11102,401,63,4006300,4007650,4005930030,4433 +BX,POINT (-73.91819400035607 40.8402480002343),11814,Free,LinkNYC - Citybridge,bx-04-119141,1391 JEROME AVENUE,40.8402480002,-73.9181940004,1006885.51312,245412.936389,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014595,07/13/2017 12:00:00 AM +0000,2,Bronx,BX26,Highbridge,16,10452,204,219,2021900,2008289,2028560020,4434 +QU,POINT (-73.9198816612868 40.76592996656087),11815,Free,LinkNYC - Citybridge,qu-01-133224,30-01 33 STREET,40.7659299666,-73.9198816613,1006443.30665,218335.842578,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014602,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,63,4006300,4009030,4006250040,4435 +QU,POINT (-73.8923556534612 40.746623816870866),11816,Free,LinkNYC - Citybridge,qu-04-136003,40-02 73 STREET,40.7466238169,-73.8923556535,1014076.83207,211310.161091,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-014604,08/24/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11377,404,265,4026500,4030419,4013040040,4436 +BX,POINT (-73.91093099985889 40.849486000274155),11817,Free,LinkNYC - Citybridge,bx-05-119631,1876 JEROME AVENUE,40.8494860003,-73.9109309999,1008891.74401,248780.646189,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014609,07/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,233,2023301,2008231,2028520000,4437 +MN,POINT (-73.98096799991998 40.73762700000288),11818,Free,LinkNYC - Citybridge,mn-06-138042,392 2 AVENUE,40.737627,-73.9809679999,989524.230253,208014.581068,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014610,07/19/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1088559,1009287500,4438 +MN,POINT (-73.97797282961513 40.74171074041151),11819,Free,LinkNYC - Citybridge,mn-06-133709,522 2 AVENUE,40.7417107404,-73.9779728296,990353.890667,209502.611556,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014611,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1020614,1009350000,4439 +BX,POINT (-73.91822589582905 40.83490415740663),11820,Free,LinkNYC - Citybridge,bx-04-119152,117 E 167th ST,40.8349041574,-73.9182258958,1006878.50526,243465.96817,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-014613,07/02/2018 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,16,10452,204,197,2019700,2002855,2024650050,4440 +MN,POINT (-73.97153360043237 40.751295680316595),11821,Free,LinkNYC - Citybridge,mn-06-136611,279 EAST 44 STREET,40.7512956803,-73.9715336004,992137.113479,212995.22629,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014614,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1037574,1013180020,4441 +MN,POINT (-73.95769382975037 40.76511946005139),11822,Free,LinkNYC - Citybridge,mn-08-135080,400 EAST 68 STREET,40.7651194601,-73.9576938298,995969.231143,218033.22901,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014618,06/15/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1045572,1014620000,4442 +MN,POINT (-73.97468574008802 40.74665132006728),11823,Free,LinkNYC - Citybridge,mn-06-121424,681 2 AVENUE,40.7466513201,-73.9746857401,991264.247114,211302.868455,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014625,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1020193,1009170030,4443 +MN,POINT (-73.99352182943242 40.74212564977138),11824,Free,LinkNYC - Citybridge,mn-04-134628,675 6 AVENUE,40.7421256498,-73.9935218294,986045.137474,209653.075166,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014638,07/06/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,87,1008700,1014774,1007970040,4444 +MN,POINT (-73.9692539997636 40.79539900017914),11825,Free,LinkNYC - Citybridge,mn-07-120525,765 AMSTERDAM AVENUE,40.7953990002,-73.9692539998,992763.076794,229063.754521,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014639,11/23/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,7,10025,107,185,1018500,1055899,1018520000,4445 +MN,POINT (-73.95213993057261 40.80404695960734),11826,Free,LinkNYC - Citybridge,mn-10-119959,1940 ADAM CLAYTON POWELL JR BOULEVARD,40.8040469596,-73.9521399306,997499.967583,232216.634042,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014642,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,1084042,1019230030,4446 +MN,POINT (-73.95075427941985 40.805950280359106),11827,Free,LinkNYC - Citybridge,mn-10-119961,2010 ADAM CLAYTON POWELL JR BOULEVARD,40.8059502804,-73.9507542794,997883.192538,232910.293415,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014643,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1079502,1019260030,4447 +MN,POINT (-73.94055194968327 40.81991621036946),11828,Free,LinkNYC - Citybridge,mn-10-119942,2446 ADAM CLAYTON POWELL JR BOULEVARD,40.8199162104,-73.9405519497,1000704.15343,238000.331792,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014645,09/15/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,232,1023200,1060430,1020280020,4448 +MN,POINT (-73.94101785127184 40.8192928954157),11829,Free,LinkNYC - Citybridge,mn-10-119941,2430 ADAM CLAYTON POWELL JR BOULEVARD,40.8192928954,-73.9410178513,1000575.35316,237773.148519,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014647,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1086083,1020270030,4449 +MN,POINT (-73.94205600044246 40.81726400027855),11830,Free,LinkNYC - Citybridge,mn-10-120055,2361 ADAM CLAYTON POWELL JR BOULEVARD,40.8172640003,-73.9420560004,1000288.49842,237033.757281,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014648,06/20/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060015,1020070000,4450 +MN,POINT (-73.94284248946053 40.81677994982854),11831,Free,LinkNYC - Citybridge,mn-10-119948,2340 ADAM CLAYTON POWELL JR BOULEVARD,40.8167799498,-73.9428424895,1000070.91881,236857.257306,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014649,01/09/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,228,1022800,1060220,1020230030,4451 +MN,POINT (-73.94475600050404 40.81415600011051),11832,Free,LinkNYC - Citybridge,mn-10-119944,2260 ADAM CLAYTON POWELL JR BOULEVARD,40.8141560001,-73.9447560005,999541.871307,235900.918668,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014650,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,226,1022600,1058810,1019390030,4452 +MN,POINT (-73.9454579998587 40.812610999746674),11833,Free,LinkNYC - Citybridge,mn-10-120046,2215 ADAM CLAYTON POWELL JR BOULEVARD,40.8126109997,-73.9454579999,999347.904175,235337.89814,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014651,02/23/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10027,110,226,1022600,1058070,1019150060,4453 +MN,POINT (-73.95009458977022 40.80624896034779),11834,Free,LinkNYC - Citybridge,mn-10-120042,2013 ADAM CLAYTON POWELL JR BOULEVARD,40.8062489603,-73.9500945898,998065.759102,233019.216426,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014655,01/11/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,220,1022000,1057660,1019050060,4454 +MN,POINT (-73.94244453032086 40.822307800008225),11835,Free,LinkNYC - Citybridge,mn-10-119896,2711 FREDERICK DOUGLASS BOULEVARD,40.8223078,-73.9424445303,1000179.74864,238871.324472,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014662,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,259,1025900,1060788,1020447500,4455 +MN,POINT (-73.93514790003408 40.847196900002764),11836,Free,LinkNYC - Citybridge,mn-12-121455,1358 ST NICHOLAS AVENUE,40.8471969,-73.9351479,1002192.53858,247940.754168,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-014670,04/24/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1063235,1021330070,4456 +QU,POINT (-73.8864554497605 40.74945855041041),11837,Free,LinkNYC - Citybridge,qu-03-146071,79-20 37 AVENUE,40.7494585504,-73.8864554498,1015710.36128,212345.008759,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-022685,04/12/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,285,4028500,4449493,4012900000,4457 +QU,POINT (-73.88583189636584 40.74953249420338),11838,Free,LinkNYC - Citybridge,qu-03-146069,80-12 37 AVENUE,40.7495324942,-73.8858318964,1015883.09715,212372.173403,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-022686,04/12/2018 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,283,4028300,4029986,4012910000,4458 +QU,POINT (-73.87083775049099 40.733342100089736),11839,Free,LinkNYC - Citybridge,qu-04-145788,90-20 QUEENS BOULEVARD,40.7333421001,-73.8708377505,1020046.29093,206479.275083,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018037,04/10/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4457337,4028570070,4459 +QU,POINT (-73.85313799966518 40.72649499967401),11840,Free,LinkNYC - Citybridge,qu-06-145846,100-26 QUEENS BOULEVARD,40.7264949997,-73.8531379997,1024955.81425,203992.394887,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018040,08/16/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,713,4071306,4075137,4031700030,4460 +QU,POINT (-73.85392900052088 40.72669499969208),11841,Free,LinkNYC - Citybridge,qu-06-145847,99-40 67 AVENUE,40.7266949997,-73.8539290005,1024736.45084,204064.894413,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018041,07/12/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11375,406,713,4071306,4075136,4031700030,4461 +QU,POINT (-73.85478899999406 40.72709499994752),11842,Free,LinkNYC - Citybridge,qu-06-145764,98-108 QUEENS BOULEVARD,40.7270949999,-73.854789,1024497.8437,204210.230409,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018042,04/05/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11374,406,713,4071306,4074784,4031590060,4462 +QU,POINT (-73.92071953441109 40.75312176895802),11843,Free,LinkNYC - Citybridge,qu-01-136586,42-02 NORTHERN BOULEVARD,40.753121769,-73.9207195344,1006215.43375,213669.187869,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011120,04/02/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,401,171,4017100,4002366,4001830050,4007 +MN,POINT (-73.9705930597374 40.75183415993599),11844,Free,LinkNYC - Citybridge,mn-06-137822,850 2 AVENUE,40.7518341599,-73.9705930597,992397.640845,213191.497879,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011127,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10017,106,90,1009000,1038781,1013387500,4008 +MN,POINT (-73.99158984019165 40.76478627978173),11845,Free,LinkNYC - Citybridge,mn-04-136381,734 10 AVENUE,40.7647862798,-73.9915898402,986579.709896,217909.122302,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011130,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026666,1010600000,4009 +MN,POINT (-73.99799947999941 40.74068565975122),11846,Free,LinkNYC - Citybridge,mn-04-134727,123A 7 AVENUE,40.7406856598,-73.99799948,984804.367318,209128.381006,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011133,01/08/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,81,1008100,1014648,1007930000,4010 +MN,POINT (-73.9813679000716 40.737087999935575),11847,Free,LinkNYC - Citybridge,mn-06-134535,380 2 AVENUE,40.7370879999,-73.9813679001,989413.449963,207818.182511,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011138,12/05/2017 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1020567,1009270060,4011 +MN,POINT (-73.93820200026882 40.82312446957896),11848,Free,LinkNYC - Citybridge,mn-10-133684,2538 ADAM CLAYTON POWELL JR BOULEVARD,40.8231244696,-73.9382020003,1001353.75253,239169.666723,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011149,09/22/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,234,1023400,1060534,1020330030,4012 +QU,POINT (-73.874203069233 40.748594681277645),11849,Free,LinkNYC - Citybridge,qu-04-136655,92-12 ROOSEVELT AVENUE,40.7485946813,-73.8742030692,1019105.63992,212034.91161,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011150,09/08/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,469,4046900,4038783,4015500020,4013 +MN,POINT (-73.98115858960719 40.7373730602885),11850,Free,LinkNYC - Citybridge,mn-06-135679,384 2 AVENUE,40.7373730603,-73.9811585896,989471.433115,207922.051397,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011151,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1020569,1009280000,4014 +MN,POINT (-73.98233804011416 40.77623753013913),11851,Free,LinkNYC - Citybridge,mn-07-134429,2017 BROADWAY,40.7762375301,-73.9823380401,989141.722488,222081.575572,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011156,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028950,1011407500,4015 +MN,POINT (-73.98254790984278 40.731601979550994),11852,Free,LinkNYC - Citybridge,mn-06-134843,241 1 AVENUE,40.7316019796,-73.9825479098,989086.836115,205819.385655,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011158,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1082156,1009210030,4016 +MN,POINT (-73.9560034903291 40.8033996003937),11853,Free,LinkNYC - Citybridge,mn-10-118276,2120 8 AVENUE,40.8033996004,-73.9560034903,996430.467097,231980.21752,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011159,11/01/2017 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,218,1021800,1055216,1018300060,4017 +QU,POINT (-73.88849200003581 40.747223429571285),11854,Free,LinkNYC - Citybridge,qu-03-134080,77-01 ROOSEVELT AVENUE,40.7472234296,-73.888492,1015147.12094,211529.958223,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011172,08/25/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,287,4028700,4029906,4012880050,4018 +BX,POINT (-73.82386999941066 40.81806299982062),10748,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 1/P/E/O SAMPSON AV,40.8180629998,-73.8238699994,1033000.9517,237368.568292,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1298 +QU,POINT (-73.87951058038074 40.748168250041275),11855,Free,LinkNYC - Citybridge,qu-03-134084,86-23 ROOSEVELT AVENUE,40.74816825,-73.8795105804,1017635.25671,211877.481807,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011173,10/04/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,279,4027900,4036259,4014740040,4019 +MN,POINT (-73.94666480050302 40.82670708956571),11856,Free,LinkNYC - Citybridge,mn-09-134111,1760 AMSTERDAM AVENUE,40.8267070896,-73.9466648005,999010.71981,240473.406242,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011177,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1061983,1020790030,4020 +MN,POINT (-73.98186156953243 40.73675561042241),11857,Free,LinkNYC - Citybridge,mn-06-134564,371 2 AVENUE,40.7367556104,-73.9818615695,989276.666116,207697.053816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011178,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10010,106,64,1006400,1019644,1009020030,4021 +MN,POINT (-73.97382818949582 40.74739525014976),11858,Free,LinkNYC - Citybridge,mn-06-134657,712 2 AVENUE,40.7473952501,-73.9738281895,991501.782072,211573.975852,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011179,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,78,1007800,1021921,1009440000,4022 +MN,POINT (-73.9736037099774 40.74812082959936),11859,Free,LinkNYC - Citybridge,mn-06-134661,733 2 AVENUE,40.7481208296,-73.97360371,991563.902027,211838.346386,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011180,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10016,106,88,1008800,1020379,1009200030,4023 +MN,POINT (-73.95329055010971 40.8228538899182),11860,Free,LinkNYC - Citybridge,mn-09-135705,3421 BROADWAY,40.8228538899,-73.9532905501,997177.767112,239068.498291,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011182,04/20/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,225,1022500,1062310,1020870090,4024 +MN,POINT (-73.9708938601208 40.79316136009033),11861,Free,LinkNYC - Citybridge,mn-07-135658,715 AMSTERDAM AVENUE,40.7931613601,-73.9708938601,992309.296534,228248.349655,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011189,05/31/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10025,107,181,1018100,1032551,1012250000,4025 +QU,POINT (-73.89121485511919 40.746797754095496),11862,Free,LinkNYC - Citybridge,qu-04-136360,74-04 ROOSEVELT AVENUE,40.7467977541,-73.8912148551,1014392.85342,211373.922446,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011194,08/25/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,267,4026700,4036717,4014850020,4026 +QU,POINT (-73.88227031045149 40.74774237699295),11863,Free,LinkNYC - Citybridge,qu-04-136365,83-20 ROOSEVELT AVENUE,40.747742377,-73.8822703105,1016870.79859,211721.282972,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011198,09/07/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,21,11373,404,269,4026901,4037071,4015030000,4027 +QU,POINT (-73.88138741971734 40.74797067994375),11864,Free,LinkNYC - Citybridge,qu-03-136453,84-29 ROOSEVELT AVENUE,40.7479706799,-73.8813874197,1017115.3191,211804.791007,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011200,10/04/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,281,4028100,4036234,4014720040,4028 +QU,POINT (-73.87293329591196 40.748869201953234),11865,Free,LinkNYC - Citybridge,qu-03-136656,93-19 ROOSEVELT AVENUE,40.748869202,-73.8729332959,1019457.32163,212135.436015,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011205,09/08/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,273,4027300,4431438,4014810040,4029 +QU,POINT (-73.87439289032777 40.74870841986443),11866,Free,LinkNYC - Citybridge,qu-03-136703,92-03 ROOSEVELT AVENUE,40.7487084199,-73.8743928903,1019052.98517,212076.274716,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011207,10/11/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,275,4027500,4036462,4014800040,4030 +QU,POINT (-73.92905462956628 40.752278519600004),11867,Free,LinkNYC - Citybridge,qu-01-136769,34-01 38 AVENUE,40.7522785196,-73.9290546296,1003906.36291,213359.984747,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011208,02/21/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,55,4005500,4004564,4003760000,4031 +MN,POINT (-73.94207450969323 40.81782145042431),11868,Free,LinkNYC - Citybridge,mn-10-143395,2376 ADAM CLAYTON POWELL JR BOULEVARD,40.8178214504,-73.9420745097,1000283.24089,237236.853004,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011227,02/28/2018 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060295,1020240040,4032 +MN,POINT (-73.98192926233357 40.76981618562021),10641,Free,LinkNYC - Citybridge,mn-07-133501,1860 BROADWAY,40.7698161856,-73.9819292623,989255.421736,219742.088125,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000920,09/30/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,3,10023,107,145,1014500,1087510,1011147500,3399 +MN,POINT (-73.98250198057767 40.769838680345686),10642,Free,LinkNYC - Citybridge,mn-07-133518,1855 BROADWAY,40.7698386803,-73.9825019806,989096.782617,219750.251494,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000922,09/30/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,3,10023,107,145,1014500,1027193,1011130050,3400 +MN,POINT (-73.98193000027774 40.77380599980979),10643,Free,LinkNYC - Citybridge,mn-07-134467,1972 BROADWAY,40.7738059998,-73.9819300003,989254.917472,221195.710545,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000924,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028840,1011387500,3401 +MN,POINT (-73.98200508015601 40.77472310969574),10644,Free,LinkNYC - Citybridge,mn-07-121339,1992 BROADWAY,40.7747231097,-73.9820050802,989234.053668,221529.840127,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000926,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1084564,1011397500,3402 +MN,POINT (-73.98238800027917 40.774913000230555),10645,Free,LinkNYC - Citybridge,mn-07-135046,1981 BROADWAY,40.7749130002,-73.9823880003,989127.982358,221599.002062,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000927,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028850,1011390010,3403 +MN,POINT (-73.94764900030253 40.81789400011071),10774,Free,Transit Wireless,"135 St (B,C)","135 St (A, B,C)",40.8178940001,-73.9476490003,998740.257753,237262.314239,Subway Station,SN 152,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,9,10031,109,21703,1021703,0,0,1595 +MN,POINT (-73.98257100013087 40.774894000434166),10646,Free,LinkNYC - Citybridge,mn-07-133488,1972 BROADWAY,40.7748940004,-73.9825710001,989077.298404,221592.069661,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000928,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028850,1011390010,3404 +MN,POINT (-73.98250699947936 40.7747569999626),10647,Free,LinkNYC - Citybridge,mn-07-134275,1967 BROADWAY,40.774757,-73.9825069995,989095.034589,221542.159328,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000929,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028839,1011387500,3405 +MN,POINT (-73.98239982041957 40.7746458399951),10648,Free,LinkNYC - Citybridge,mn-07-134274,1967 BROADWAY,40.77464584,-73.9823998204,989124.7281,221501.66597,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000930,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028839,1011387500,3406 +MN,POINT (-73.98182878950341 40.77539027976167),10649,Free,LinkNYC - Citybridge,mn-07-121337,2008 BROADWAY,40.7753902798,-73.9818287895,989282.830474,221772.922646,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000932,07/18/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028937,1011400030,3407 +MN,POINT (-73.98197300049026 40.77553200010043),10650,Free,LinkNYC - Citybridge,mn-07-134449,2008 BROADWAY,40.7755320001,-73.9819730005,989242.878126,221824.54787,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000933,06/05/2018 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1070362,1011407500,3408 +MN,POINT (-73.98235021043112 40.7757949602237),10651,Free,LinkNYC - Citybridge,mn-07-134469,2001 BROADWAY,40.7757949602,-73.9823502104,989138.38424,221920.3318,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000934,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028950,1011407500,3409 +MN,POINT (-73.98196293972003 40.77600984030706),10652,Free,LinkNYC - Citybridge,mn-07-108233,2018 BROADWAY,40.7760098403,-73.9819629397,989245.628776,221998.641682,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000936,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1028948,1011400050,3410 +MN,POINT (-73.98193738982434 40.77631103008182),10653,Free,LinkNYC - Citybridge,mn-07-121336,2020 BROADWAY,40.7763110301,-73.9819373898,989252.682568,222108.376699,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000937,10/28/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1029632,1011410010,3411 +MN,POINT (-73.98232079041048 40.77652299038268),10654,Free,LinkNYC - Citybridge,mn-07-140140,2029 BROADWAY,40.7765229904,-73.9823207904,989146.47904,222185.579301,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000938,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1076231,1011417500,3412 +MN,POINT (-73.9824295903197 40.776473190326975),10655,Free,LinkNYC - Citybridge,mn-07-133487,2029 BROADWAY,40.7764731903,-73.9824295903,989116.349179,222167.429403,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000939,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,153,1015300,1029632,1011410010,3413 +MN,POINT (-73.98190426973912 40.77713717013371),10656,Free,LinkNYC - Citybridge,mn-07-121335,2040 BROADWAY,40.7771371701,-73.9819042697,989261.793442,222409.369207,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000942,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,157,1015700,1029749,1011427500,3414 +MN,POINT (-73.98225463942306 40.778148040265854),10657,Free,LinkNYC - Citybridge,mn-07-133652,2061 BROADWAY,40.7781480403,-73.9822546394,989164.680447,222777.643405,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000944,08/03/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1030418,1011630030,3415 +MN,POINT (-73.98217819013591 40.77860682984082),10658,Free,LinkNYC - Citybridge,mn-07-108166,2077 BROADWAY,40.7786068298,-73.9821781901,989185.819513,222944.800223,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000945,05/24/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1081034,1011637500,3416 +MN,POINT (-73.9820543905848 40.779095939979726),10659,Free,LinkNYC - Citybridge,mn-07-133403,2085 BROADWAY,40.77909594,-73.9820543906,989220.069772,223123.00656,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000946,05/16/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1077846,1011647500,3417 +MN,POINT (-73.98198994994016 40.77933083040038),10660,Free,LinkNYC - Citybridge,mn-07-133410,2095 BROADWAY,40.7793308304,-73.9819899499,989237.899133,223208.588738,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000947,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1030519,1011640040,3418 +MN,POINT (-73.98139598958379 40.78001946971169),10661,Free,LinkNYC - Citybridge,mn-07-136130,2114 BROADWAY,40.7800194697,-73.9813959896,989402.343686,223459.517698,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000949,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN14,Lincoln Square,6,10023,107,159,1015900,1030545,1011657510,3419 +MN,POINT (-73.98131051020113 40.78032124020314),10662,Free,LinkNYC - Citybridge,mn-07-133408,2120 BROADWAY,40.7803212402,-73.9813105102,989425.993573,223569.467937,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000951,05/26/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030741,1011667500,3420 +MN,POINT (-73.98117276047891 40.78082575008983),10663,Free,LinkNYC - Citybridge,mn-07-133406,2130 BROADWAY,40.7808257501,-73.9811727605,989464.103405,223753.286139,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000952,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030727,1011660040,3421 +MN,POINT (-73.98157091002983 40.78081899044713),10664,Free,LinkNYC - Citybridge,mn-07-136462,2121 BROADWAY,40.7808189904,-73.98157091,989353.838534,223750.799923,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000954,11/01/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030724,1011660020,3422 +MN,POINT (-73.98152267011933 40.780992790388126),10665,Free,LinkNYC - Citybridge,mn-07-121315,2135 BROADWAY,40.7809927904,-73.9815226701,989367.184964,223814.123944,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000955,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030728,1011660050,3423 +MN,POINT (-73.98096099964052 40.78147400007427),10666,Free,LinkNYC - Citybridge,mn-07-109544,2150 BROADWAY,40.7814740001,-73.9809609996,989522.698104,223989.478252,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000957,05/26/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1088786,1011677500,3424 +MN,POINT (-73.9808266994558 40.781706760217155),10667,Free,LinkNYC - Citybridge,mn-07-121223,2160 BROADWAY,40.7817067602,-73.9808266995,989559.872899,224074.288778,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000958,05/26/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030860,1011680020,3425 +MN,POINT (-73.98083300058543 40.7818429999754),10668,Free,LinkNYC - Citybridge,mn-07-133404,2160 BROADWAY,40.781843,-73.9808330006,989558.116997,224123.925161,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000959,06/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10023,107,163,1016300,1030861,1011680020,3426 +MN,POINT (-73.98118400013165 40.781983999847455),10669,Free,LinkNYC - Citybridge,mn-07-136444,2163 BROADWAY,40.7819839998,-73.9811840001,989460.899999,224175.275124,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000960,10/16/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,163,1016300,1030859,1011680010,3427 +MN,POINT (-73.98058628972659 40.782528080173925),10670,Free,LinkNYC - Citybridge,mn-07-121221,2182 BROADWAY,40.7825280802,-73.9805862897,989626.385889,224373.538179,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000963,06/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,163,1016300,1088838,1011690020,3428 +MN,POINT (-73.98070877995283 40.783121360203204),10671,Free,LinkNYC - Citybridge,mn-07-138145,2199 BROADWAY,40.7831213602,-73.98070878,989592.416141,224589.68276,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000966,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,163,1016300,1030900,1011690060,3429 +MN,POINT (-73.9807560000419 40.78322600007488),10672,Free,LinkNYC - Citybridge,mn-07-121308,2199 BROADWAY,40.7832260001,-73.980756,989579.330865,224627.803747,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000967,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,163,1016300,1030900,1011690060,3430 +MN,POINT (-73.980253000443 40.78319099983622),10673,Free,LinkNYC - Citybridge,mn-07-121232,2202 BROADWAY,40.7831909998,-73.9802530004,989718.631767,224615.082972,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000968,05/12/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1079386,1011700010,3431 +MN,POINT (-73.9801230004538 40.78337300036574),10674,Free,LinkNYC - Citybridge,mn-07-133397,2206 BROADWAY,40.7833730004,-73.9801230005,989754.618244,224681.400096,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000969,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1079386,1011700010,3432 +MN,POINT (-73.97975217945377 40.78364875041703),10675,Free,LinkNYC - Citybridge,mn-07-133623,230 BROADWAY,40.7836487504,-73.9797521795,989857.287986,224781.888741,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000970,04/02/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1079387,1011700010,3433 +MN,POINT (-73.97970799976127 40.783919999803686),10676,Free,LinkNYC - Citybridge,mn-07-121229,2220 BROADWAY,40.7839199998,-73.9797079998,989869.499904,224880.716955,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000971,09/30/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032624,1012270010,3434 +MN,POINT (-73.97999600023556 40.78412800024988),10677,Free,LinkNYC - Citybridge,mn-07-107927,2227 BROADWAY,40.7841280003,-73.9799960002,989789.726113,224956.480255,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000972,01/03/2018 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032623,1012270010,3435 +MN,POINT (-73.97974500005566 40.78446299966019),10678,Free,LinkNYC - Citybridge,mn-07-137051,2239 BROADWAY,40.7844629997,-73.9797450001,989859.207602,225078.547924,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000973,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032645,1012270050,3436 +MN,POINT (-73.97976230975306 40.78459233000603),10679,Free,LinkNYC - Citybridge,mn-07-121312,2239 BROADWAY,40.78459233,-73.9797623098,989854.403149,225125.666268,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000974,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032645,1012270050,3437 +MN,POINT (-73.97956399945379 40.78471199955591),10680,Free,LinkNYC - Citybridge,mn-07-133393,2245 BROADWAY,40.7847119996,-73.9795639995,989909.310848,225169.278714,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000975,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1081047,1012280010,3438 +MN,POINT (-73.97922399955542 40.78456399989863),10681,Free,LinkNYC - Citybridge,mn-07-121228,2242 BROADWAY,40.7845639999,-73.9792239996,990003.479295,225115.379543,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000976,11/15/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032653,1012280010,3439 +MN,POINT (-73.97878100017003 40.78500500004642),10682,Free,LinkNYC - Citybridge,mn-07-121239,2252 BROADWAY,40.785005,-73.9787810002,990126.119798,225276.080337,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000978,05/19/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1070992,1012287500,3440 +MN,POINT (-73.97865815029898 40.78506645998857),10683,Free,LinkNYC - Citybridge,mn-07-138882,2260 BROADWAY,40.78506646,-73.9786581503,990160.134821,225298.480555,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000979,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032680,1012297500,3441 +MN,POINT (-73.97924562055591 40.785134529915524),10684,Free,LinkNYC - Citybridge,mn-07-121300,2255 BROADWAY,40.7851345299,-73.9792456206,989997.442561,225323.24166,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000981,11/02/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032673,1012280060,3442 +MN,POINT (-73.9787853501955 40.78575329037207),10685,Free,LinkNYC - Citybridge,mn-07-121238,2275 BROADWAY,40.7857532904,-73.9787853502,990124.849131,225548.707745,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000983,02/27/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1078223,1012290050,3443 +MN,POINT (-73.9782931195055 40.785813049622575),10686,Free,LinkNYC - Citybridge,mn-07-121302,2282 BROADWAY,40.7858130496,-73.9782931195,990261.154304,225570.513476,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000985,05/05/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1076247,1012307500,3444 +MN,POINT (-73.97843851420325 40.78561298374717),10687,Free,LinkNYC - Citybridge,mn-07-143295,2276 BROADWAY,40.7856129837,-73.9784385142,990220.908978,225497.612703,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000986,07/20/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,167,1016700,1032695,1012290050,3445 +MN,POINT (-73.977993469519 40.78622272982855),10688,Free,LinkNYC - Citybridge,mn-07-133415,2298 BROADWAY,40.7862227298,-73.9779934695,990344.097052,225719.794673,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000987,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1032769,1012300040,3446 +MN,POINT (-73.9776979995458 40.78620699980758),10689,Free,LinkNYC - Citybridge,mn-07-136212,222 BROADWAY,40.7862069998,-73.9776979995,990425.920707,225714.084383,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000989,04/27/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1032769,1012300040,3447 +MN,POINT (-73.97776528962794 40.78651948489609),10690,Free,LinkNYC - Citybridge,mn-07-121235,2300 BROADWAY,40.7865194849,-73.9777652896,990407.257687,225827.928643,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000990,08/18/2017 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1076250,1012317500,3448 +MN,POINT (-73.97830000013853 40.78640299983954),10691,Free,LinkNYC - Citybridge,mn-07-121304,2299 BROADWAY,40.7864029998,-73.9783000001,990259.195647,225785.452022,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000991,04/09/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1032755,1012300010,3449 +MN,POINT (-73.97783199970252 40.78702799988951),10692,Free,LinkNYC - Citybridge,mn-07-121306,2315 BROADWAY,40.7870279999,-73.9778319997,990388.737383,226013.193365,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000992,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1032791,1012310060,3450 +MN,POINT (-73.97764564941568 40.787246870287085),10693,Free,LinkNYC - Citybridge,mn-07-133810,2321 BROADWAY,40.7872468703,-73.9776456494,990440.320941,226092.948454,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-000994,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN12,Upper West Side,6,10024,107,171,1017100,1033104,1012327500,3451 +MN,POINT (-73.96855236998834 40.75504319025861),10694,Free,LinkNYC - Citybridge,mn-06-109579,945 2 AVENUE,40.7550431903,-73.96855237,992962.625279,214360.847903,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007636,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038439,1013240020,3800 +MN,POINT (-73.96844399968718 40.75519300021221),10695,Free,LinkNYC - Citybridge,mn-06-107988,949 2 AVENUE,40.7551930002,-73.9684439997,992992.629813,214415.439329,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007637,02/15/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1038459,1013240120,3801 +MN,POINT (-73.96804100015353 40.75533499965927),10696,Free,LinkNYC - Citybridge,mn-06-121785,962 2 AVENUE,40.7553349997,-73.9680410002,993104.262463,214467.214816,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007638,02/08/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1039628,1013430050,3802 +MN,POINT (-73.96746715960995 40.75601840989078),10697,Free,LinkNYC - Citybridge,mn-06-121787,300 EAST 52 STREET,40.7560184099,-73.9674671596,993263.152894,214716.26189,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007639,03/05/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1080463,1013440050,3803 +MN,POINT (-73.96697999992273 40.75677999962196),10698,Free,LinkNYC - Citybridge,mn-06-121778,1004 2 AVENUE,40.7567799996,-73.9669799999,993398.014829,214993.784301,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007870,02/08/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1039826,1013460000,3804 +MN,POINT (-73.96652751984003 40.75741738973043),10699,Free,LinkNYC - Citybridge,mn-06-136985,1026 2 AVENUE,40.7574173897,-73.9665275198,993523.283279,215226.05385,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007871,04/11/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,5,10022,106,108,1010800,1039939,1013470000,3805 +MN,POINT (-73.96642135973308 40.75797490022138),10700,Free,LinkNYC - Citybridge,mn-06-121780,1043 2 AVENUE,40.7579749002,-73.9664213597,993552.616225,215429.184349,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007872,12/15/2017 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,108,1010800,1038575,1013280020,3806 +MN,POINT (-73.95806900000622 40.773006000242496),10701,Free,LinkNYC - Citybridge,mn-08-120996,1349 3 AVENUE,40.7730060002,-73.958069,995863.929844,220906.507384,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-007876,07/19/2016 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10075,108,134,1013400,1044096,1014320000,3807 +MN,POINT (-74.00755376977472 40.72533497980799),10702,Free,LinkNYC - Citybridge,mn-02-123595,284 HUDSON STREET,40.7253349798,-74.0075537698,982156.280422,203535.731102,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008200,12/29/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10013,102,37,1003700,1009736,1005790000,3808 +MN,POINT (-74.0074869997302 40.72688899971822),10703,Free,LinkNYC - Citybridge,mn-02-135935,325 HUDSON STREET,40.7268889997,-74.0074869997,982174.835831,204101.907135,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008202,04/10/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10013,102,37,1003700,1010375,1005970060,3809 +MN,POINT (-74.0069865805114 40.72797797956016),10704,Free,LinkNYC - Citybridge,mn-02-123606,98 KING STREET,40.7279779796,-74.0069865805,982313.568165,204498.644858,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008203,05/10/2017 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10014,102,37,1003700,1009750,1005800040,3810 +MN,POINT (-73.99601199967746 40.74848200026102),10705,Free,LinkNYC - Citybridge,mn-05-122680,362 8 AVENUE,40.7484820003,-73.9960119997,985354.991873,211968.85564,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008211,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1087714,1007787500,3811 +MN,POINT (-74.00372465993543 40.74341382978408),10706,Free,LinkNYC - Citybridge,mn-04-123517,121 9 AVENUE,40.7434138298,-74.0037246599,983217.895753,210122.355724,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008212,05/08/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,104,83,1008300,1078418,1007150010,3812 +MN,POINT (-73.99407922005548 40.73116016006257),10707,Free,LinkNYC - Citybridge,mn-02-123843,268 GREENE STREET,40.7311601601,-73.9940792201,985890.951431,205657.990637,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008215,08/01/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,1,10003,102,59,1005900,1008837,1005480030,3813 +MN,POINT (-73.98665836994648 40.72983073021401),10708,Free,LinkNYC - Citybridge,mn-03-123268,160 2 AVENUE,40.7298307302,-73.9866583699,987947.722908,205173.86398,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008221,10/27/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006433,1004520000,3814 +MN,POINT (-73.9886849997104 40.73101499964129),10709,Free,LinkNYC - Citybridge,mn-03-138508,55 3 AVENUE,40.7310149996,-73.9886849997,987385.973047,205605.251241,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008224,10/27/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006807,1004667500,3815 +MN,POINT (-73.9885791396118 40.731570490275494),10710,Free,LinkNYC - Citybridge,mn-03-137104,66 3 AVENUE,40.7315704903,-73.9885791396,987415.28598,205807.637647,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008225,08/31/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,42,1004200,1008982,1005560070,3816 +MN,POINT (-73.98813514968838 40.73177664017235),10711,Free,LinkNYC - Citybridge,mn-03-133516,83 3 AVENUE,40.7317766402,-73.9881351497,987538.327401,205882.760856,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008226,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006826,1004670000,3817 +MN,POINT (-73.98793800028511 40.73203899988389),10712,Free,LinkNYC - Citybridge,mn-03-123816,91 3 AVENUE,40.7320389999,-73.9879380003,987592.953932,205978.354169,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008227,04/07/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006851,1004680000,3818 +MN,POINT (-73.99345399988883 40.72142500036126),10713,Free,LinkNYC - Citybridge,mn-03-100726,211 BOWERY,40.7214250004,-73.9934539999,986064.497015,202111.182442,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008229,08/19/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,1005683,1004250010,3819 +MN,POINT (-73.99026176981232 40.766436899726514),11869,Free,LinkNYC - Citybridge,mn-04-139118,498 WEST 53 STREET,40.7664368997,-73.9902617698,986947.533635,218510.535798,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011231,11/08/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026740,1010620000,4033 +QU,POINT (-73.88203370011323 40.747990929694616),11870,Free,LinkNYC - Citybridge,qu-03-139600,37-99 84 STREET,40.7479909297,-73.8820337001,1016936.23711,211811.92682,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011251,09/07/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,281,4028100,4036234,4014720040,4034 +QU,POINT (-73.88575130032689 40.747602970157),11871,Free,LinkNYC - Citybridge,qu-03-139608,37-69 80 STREET,40.7476029702,-73.8857513003,1015906.34514,211669.215491,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011252,10/13/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,283,4028300,4030002,4012910050,4035 +QU,POINT (-73.88092372980572 40.74801962043207),11872,Free,LinkNYC - Citybridge,qu-03-136451,85-05 ROOSEVELT AVENUE,40.7480196204,-73.8809237298,1017243.77455,211822.795892,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011258,10/06/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,21,11372,403,279,4027900,4036249,4014730050,4036 +QU,POINT (-73.88761508892492 40.74741227629022),11873,Free,LinkNYC - Citybridge,qu-03-139602,37-69 78 STREET,40.7474122763,-73.8876150889,1015390.01087,211599.071602,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011259,08/25/2017 12:00:00 AM +0000,4,Queens,QN28,Jackson Heights,25,11372,403,285,4028500,0,4012890040,4037 +BX,POINT (-73.90826600058917 40.8513290003475),11874,Free,LinkNYC - Citybridge,bx-05-119598,51 EAST TREMONT AVENUE,40.8513290003,-73.9082660006,1009628.3367,249452.881721,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011271,01/12/2018 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,241,2024100,2007940,2028290030,4038 +MN,POINT (-73.93081759977767 40.85312181025685),11875,Free,LinkNYC - Citybridge,mn-12-120664,1540 ST. NICHOLAS AVE,40.8531218103,-73.9308175998,1003388.8915,250100.340072,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011291,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,269,1026900,1063806,1021580000,4039 +MN,POINT (-73.94007499976115 40.83572900028322),11876,Free,LinkNYC - Citybridge,mn-12-120469,2048 AMSTERDAM AVENUE,40.8357290003,-73.9400749998,1000832.22339,243761.598813,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011295,12/02/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,245,1024500,1062868,1021200030,4040 +MN,POINT (-73.93545599962174 40.846771000325944),11877,Free,LinkNYC - Citybridge,mn-12-120646,1340 ST NICHOLAS AVENUE,40.8467710003,-73.9354559996,1002107.41145,247785.519899,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011299,02/20/2018 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1063231,1021330060,4041 +MN,POINT (-73.93406960000362 40.84867304021354),11878,Free,LinkNYC - Citybridge,mn-12-120769,1400 ST. NICHOLAS AVE,40.8486730402,-73.9340696,1002490.46548,248478.790494,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011303,04/19/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063634,1021530060,4042 +QU,POINT (-73.83003000025425 40.759600000047115),10802,Free,Transit Wireless,Flushing-Main St (7),Flushing-Main St (7),40.7596,-73.8300300003,1031337.25949,216065.161423,Subway Station,SN 447,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN22,Flushing,20,11354,407,871,4087100,0,0,1624 +MN,POINT (-73.93810731701886 40.79636045549596),11879,Free,LinkNYC - Citybridge,mn-11-120199,2240 2 AVENUE,40.7963604555,-73.938107317,1001386.8476,229418.606173,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011315,02/17/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,188,1018800,1052897,1016870000,4043 +MN,POINT (-73.9328699994413 40.850683000204356),11880,Free,LinkNYC - Citybridge,mn-12-120658,1463 ST. NICHOLAS AVE,40.8506830002,-73.9328699994,1002821.78863,249211.347099,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011320,04/18/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,271,1027100,1063959,1021650070,4044 +MN,POINT (-73.9449661596805 40.80014153012456),11881,Free,LinkNYC - Citybridge,mn-11-120180,25 EAST 116 STREET,40.8001415301,-73.9449661597,999486.905866,230794.915756,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011337,01/25/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10035,111,184,1018400,1089838,1016227500,4045 +MN,POINT (-73.93810707456146 40.803833513277155),11882,Free,LinkNYC - Citybridge,mn-11-120242,133 EAST 124 STREET,40.8038335133,-73.9381070746,1001384.99098,232141.301843,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011338,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,1081556,1017730020,4046 +MN,POINT (-73.94543599973882 40.83497399979257),11883,Free,LinkNYC - Citybridge,mn-12-120347,3 EDWARD MORGAN PLACE,40.8349739998,-73.9454359997,999348.918937,243485.554745,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011358,12/20/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1076745,1021340180,4047 +MN,POINT (-73.9322489595386 40.8511646001642),11884,Free,LinkNYC - Citybridge,mn-12-120657,1480 ST. NICHOLAS AVE,40.8511646002,-73.9322489595,1002993.46611,249386.944517,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011370,03/29/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063761,1021570000,4048 +QU,POINT (-73.85118473952815 40.69396285005162),11885,Free,LinkNYC - Citybridge,qu-09-124791,94-02 JAMAICA AVENUE,40.6939628501,-73.8511847395,1025517.33543,192140.880204,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011373,07/13/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,20,4002000,4184324,4089350000,4049 +MN,POINT (-73.9377662795875 40.796824810039084),11886,Free,LinkNYC - Citybridge,mn-11-120314,2256 2 AVENUE,40.79682481,-73.9377662796,1001481.15385,229587.853538,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011378,03/31/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10029,111,188,1018800,1052931,1016870050,4050 +MN,POINT (-73.93470439135116 40.801404555318264),11887,Free,LinkNYC - Citybridge,mn-11-120309,2397 2 AVENUE,40.8014045553,-73.9347043914,1002327.67971,231257.031302,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011379,10/18/2018 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,194,1019400,1054629,1017870080,4051 +BX,POINT (-73.90003051038804 40.849093019742504),11888,Free,LinkNYC - Citybridge,bx-06-119388,1948 WEBSTER AVENUE,40.8490930197,-73.9000305104,1011907.62512,248640.722584,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011383,06/16/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,206,379,2037900,2011085,2030270020,4052 +QU,POINT (-73.91233600044447 40.75576399957356),11889,Free,LinkNYC - Citybridge,qu-01-125071,48-12 BROADWAY,40.7557639996,-73.9123360004,1008537.21027,214634.051097,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011415,05/18/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,26,11103,401,161,4016100,4013642,4007340040,4053 +QU,POINT (-73.91964900039879 40.75919900015886),11890,Free,LinkNYC - Citybridge,qu-01-125081,38-04 BROADWAY,40.7591990002,-73.9196490004,1006510.00468,215883.590264,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011417,05/18/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,155,4015500,4010407,4006560040,4054 +BK,POINT (-74.00654892276776 40.65574577698456),11891,Free,LinkNYC - Citybridge,bk-07-125836,948 3 AVENUE,40.655745777,-74.0065489228,982432.903885,178182.321507,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011423,05/02/2018 12:00:00 AM +0000,3,Brooklyn,BK32,Sunset Park West,38,11232,307,18,3001800,3010251,3006910050,4055 +BX,POINT (-73.91366803017817 40.819488449871386),11892,Free,LinkNYC - Citybridge,bx-01-123216,3015 3 AVENUE,40.8194884499,-73.9136680302,1008145.29144,237850.674939,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011425,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2097993,2023760050,4056 +MN,POINT (-73.94509159030001 40.83328532036701),11893,Free,LinkNYC - Citybridge,mn-12-120451,580 WEST 156 STREET,40.8332853204,-73.9450915903,999444.609363,242870.366015,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011438,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,1062678,1021140010,4057 +QU,POINT (-73.91254128945572 40.76266327995707),11894,Free,LinkNYC - Citybridge,qu-01-125118,43-02 30 AVENUE,40.76266328,-73.9125412895,1008477.82555,217147.62645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011446,02/28/2018 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,149,4014900,4012032,4006970110,4058 +BX,POINT (-73.91424245970458 40.8188603596726),11895,Free,LinkNYC - Citybridge,bx-01-123217,2991 3 AVENUE,40.8188603597,-73.9142424597,1007986.52272,237621.682943,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011461,03/06/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,67,2006700,2089847,2023750040,4059 +QU,POINT (-73.92127595945632 40.766766290325755),11896,Free,LinkNYC - Citybridge,qu-01-125131,31-02 30 AVENUE,40.7667662903,-73.9212759595,1006056.80316,218640.192691,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011469,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11102,401,63,4006300,4008486,4006150040,4060 +MN,POINT (-73.95676155965047 40.80236832975753),11897,Free,LinkNYC - Citybridge,mn-10-119982,2084 FREDERICK DOUGLASS BLVD,40.8023683298,-73.9567615597,996220.780508,231604.384938,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011473,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,216,1021600,1055127,1018280060,4061 +BX,POINT (-73.82367999984683 40.81773199959895),10749,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 2/P/W/O SAMPSON AV,40.8177319996,-73.8236799998,1033053.78427,237248.079031,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1299 +MN,POINT (-73.95648813045538 40.803024250220396),11898,Free,LinkNYC - Citybridge,mn-10-119980,2109 FREDERICK DOUGLASS BLVD,40.8030242502,-73.9564881305,996296.36205,231843.397255,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011474,10/19/2016 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,197,1019702,1055816,1018470060,4062 +MN,POINT (-73.93133832999796 40.85241172989795),11899,Free,LinkNYC - Citybridge,mn-12-120666,1520 ST. NICHOLAS AVE,40.8524117299,-73.93133833,1003245.03746,249841.517427,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011495,02/06/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063788,1021570070,4063 +BX,POINT (-73.90897565957374 40.851878309639844),11900,Free,LinkNYC - Citybridge,bx-05-119597,1966 JEROME AVENUE,40.8518783096,-73.9089756596,1009431.80067,249652.811111,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011501,08/01/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,241,2024100,2008258,2028540000,4064 +BK,POINT (-73.9425630001877 40.702935999839795),11901,Free,LinkNYC - Citybridge,bk-01-126669,45 AVENUE OF PUERTO RICO,40.7029359998,-73.9425630002,1000175.47634,195380.232321,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011510,05/23/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071557,3031130020,4065 +BK,POINT (-73.94228700040196 40.7022469998344),11902,Free,LinkNYC - Citybridge,bk-01-126657,46 AVENUE OF PUERTO RICO,40.7022469998,-73.9422870004,1000252.16779,195129.259398,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011512,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071613,3031200010,4066 +QU,POINT (-73.929398640198 40.75418823018675),11903,Free,LinkNYC - Citybridge,qu-01-125042,36-35 33 STREET,40.7541882302,-73.9293986402,1003810.48941,214055.676925,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011536,03/14/2018 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11106,401,55,4005500,4007954,4006020010,4067 +MN,POINT (-73.98380229017927 40.73195957006667),11904,Free,LinkNYC - Citybridge,mn-06-123801,325 EAST 14 STREET,40.7319595701,-73.9838022902,988739.161285,205949.60029,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011566,11/18/2016 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,1020398,1009210020,4068 +BX,POINT (-73.89334299968257 40.86002699970504),11905,Free,LinkNYC - Citybridge,bx-05-119659,375 EAST 188 STREET,40.8600269997,-73.8933429997,1013752.94492,252626.569272,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011583,03/30/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,399,2039902,2011078,2030260060,4069 +QU,POINT (-73.9445844320093 40.75573526819898),11906,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-25 41 AVENUE,40.7557352682,-73.944584432,999602.82755,214616.286696,Indoor AP - Community Center - Gym,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,3011 +QU,POINT (-73.9445844320093 40.75573526819898),11907,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-25 41 AVENUE,40.7557352682,-73.944584432,999602.82755,214616.286696,Indoor AP - Community Center - Cafeteria,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,3012 +QU,POINT (-73.9445844320093 40.75573526819898),11908,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-25 41 AVENUE,40.7557352682,-73.944584432,999602.82755,214616.286696,Indoor AP - Community Center - Activity Rm 1,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,3013 +QU,POINT (-73.9445844320093 40.75573526819898),11909,Free,Spot On Networks,QUEENS BRIDGE - JACOB A. RIIS Settlement House,10-25 41 AVENUE,40.7557352682,-73.944584432,999602.82755,214616.286696,Indoor AP - Community Center - Activity Rm 2,Free - Up to 25 mbs Wi-Fi Service,Queens,Quensbridge Connected,NYC HOUSING AUTHORITY,09/09/9999 12:00:00 AM +0000,4,Queens,QN68,Queensbridge-Ravenswood-Long Island City,26,11101,401,25,4002500,4433386,4004700100,3014 +BX,POINT (-73.90750182021591 40.85393036021188),11910,Free,LinkNYC - Citybridge,bx-05-119613,1 WEST BURNSIDE AVENUE,40.8539303602,-73.9075018202,1009838.74737,250400.878185,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011588,01/12/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,251,2025100,2014153,2031920080,4070 +BK,POINT (-73.94993500047741 40.67675199994893),11911,Free,LinkNYC - Citybridge,bk-08-127047,632 NOSTRAND AVENUE,40.6767519999,-73.9499350005,998136.904629,185839.38198,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011595,03/08/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3030331,3012120040,4071 +QU,POINT (-73.91093862030743 40.761912960005596),11912,Free,LinkNYC - Citybridge,qu-01-125105,45-02 30 AVENUE,40.76191296,-73.9109386203,1008922.07499,216874.707705,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011599,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,151,4015100,4012674,4007140080,4072 +BK,POINT (-73.9499159996431 40.676976000147185),11913,Free,LinkNYC - Citybridge,bk-08-127034,628 NOSTRAND AVENUE,40.6769760001,-73.9499159996,998142.128372,185920.994678,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011604,03/07/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3030004,3012060050,4073 +BK,POINT (-73.97393282182065 40.6821325356638),11914,Free,LinkNYC - Citybridge,bk-08-127080,27 6 AVENUE,40.6821325357,-73.9739328218,991479.865778,187796.773406,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011622,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11217,308,161,3016100,3027605,3011280000,4074 +QU,POINT (-73.85607115970843 40.7274890097213),11915,Free,LinkNYC - Citybridge,qu-06-145765,97-14 66 AVENUE,40.7274890097,-73.8560711597,1024142.23451,204353.193706,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018043,04/05/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11374,406,713,4071306,4074783,4031597500,4463 +QU,POINT (-73.856848000088 40.72785000022584),11916,Free,LinkNYC - Citybridge,qu-06-145766,98-38 QUEENS BOULEVARD,40.7278500002,-73.8568480001,1023926.70574,204484.360766,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018045,04/10/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11374,406,713,4071306,4072159,4030860010,4464 +QU,POINT (-73.85744564754646 40.72806732333082),11917,Free,LinkNYC - Citybridge,qu-06-145767,98-22 QUEENS BOULEVARD,40.7280673233,-73.8574456475,1023760.93015,204563.268089,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018046,04/05/2017 12:00:00 AM +0000,4,Queens,QN17,Forest Hills,29,11374,406,713,4071306,4072160,4030860020,4465 +BK,POINT (-73.99255460041374 40.69828038026443),11918,Free,LinkNYC - Citybridge,bk-02-145810,79 HENRY STREET,40.6982803803,-73.9925546004,986314.519809,193678.918138,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018047,06/05/2017 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,1,3000100,3339176,3002170000,4466 +BK,POINT (-73.98187215045138 40.68803875993133),11919,Free,LinkNYC - Citybridge,bk-02-145811,322 LIVINGSTON STREET,40.6880387599,-73.9818721505,989277.406928,189948.026978,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018057,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,37,3003700,3000511,3001660030,4467 +BK,POINT (-73.97332000042222 40.68578699957464),11920,Free,LinkNYC - Citybridge,bk-02-145752,710 FULTON STREET,40.6857869996,-73.9733200004,991649.429415,189128.251715,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018062,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11217,302,181,3018100,3059289,3021150010,4468 +BK,POINT (-73.97022461993355 40.68454905044329),11921,Free,LinkNYC - Citybridge,bk-02-145753,770 FULTON STREET,40.6845490504,-73.9702246199,992508.055322,188677.507537,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018064,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11238,302,179,3017900,3321980,3020070010,4469 +BK,POINT (-73.96709299991025 40.68359099979222),11922,Free,LinkNYC - Citybridge,bk-02-145747,907 FULTON STREET,40.6835909998,-73.9670929999,993376.725829,188328.772671,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018067,05/01/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,199,3019900,3056600,3019760020,4470 +BK,POINT (-73.96463344946928 40.6830769203927),11923,Free,LinkNYC - Citybridge,bk-02-145812,957 FULTON STREET,40.6830769204,-73.9646334495,994058.955436,188141.744501,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018068,07/25/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,201,3020100,3056680,3019790060,4471 +BK,POINT (-73.9616482003217 40.68219957027558),11924,Free,LinkNYC - Citybridge,bk-02-145793,464 GRAND AVENUE,40.6821995703,-73.9616482003,994887.057782,187822.44888,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018071,05/19/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,302,201,3020100,3057641,3020140030,4472 +BK,POINT (-73.95880099965551 40.66815599981042),11925,Free,LinkNYC - Citybridge,bk-09-145751,897 FRANKLIN AVENUE,40.6681559998,-73.9588009997,995679.149046,182706.333456,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018080,04/20/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,325,3032500,3033446,3012800000,4473 +BK,POINT (-73.95956787946672 40.65470433041294),11926,Free,LinkNYC - Citybridge,bk-14-145754,741 FLATBUSH AVENUE,40.6547043304,-73.9595678795,995468.668496,177805.41478,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018081,04/05/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11226,314,796,3079602,3116192,3050640020,4474 +BK,POINT (-73.95911529044629 40.652456790042855),11927,Free,LinkNYC - Citybridge,bk-14-145755,827 FLATBUSH AVENUE,40.65245679,-73.9591152904,995594.630186,176986.631969,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018082,04/05/2017 12:00:00 AM +0000,3,Brooklyn,BK60,Prospect Lefferts Gardens-Wingate,40,11226,314,796,3079602,3335776,3050830000,4475 +BK,POINT (-73.95850152999087 40.65002892004738),11928,Free,LinkNYC - Citybridge,bk-14-145813,895 FLATBUSH AVENUE,40.65002892,-73.95850153,995765.354582,176102.172124,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018083,05/01/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,794,3079400,3117221,3051030020,4476 +BK,POINT (-73.95829099972846 40.64911500036396),11929,Free,LinkNYC - Citybridge,bk-14-145836,927 FLATBUSH AVENUE,40.6491150004,-73.9582909997,995823.932877,175769.233813,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018085,05/31/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,794,3079400,3117220,3051030010,4477 +BK,POINT (-73.95820347010068 40.646179180400694),11930,Free,LinkNYC - Citybridge,bk-14-145814,1016 FLATBUSH AVENUE,40.6461791804,-73.9582034701,995848.73204,174699.645729,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018086,09/15/2017 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,510,3051001,3117654,3051250050,4478 +BK,POINT (-73.95814408011684 40.645261700198645),11931,Free,LinkNYC - Citybridge,bk-14-145789,1052 FLATBUSH AVENUE,40.6452617002,-73.9581440801,995865.372755,174365.390492,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018087,09/15/2017 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,510,3051001,3117661,3051250070,4479 +BK,POINT (-73.95805063027464 40.64788737033328),11932,Free,LinkNYC - Citybridge,bk-14-145907,971 FLATBUSH AVENUE,40.6478873703,-73.9580506303,995890.847769,175322.006361,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018088,09/15/2017 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,794,3079400,3117362,3051090000,4480 +BK,POINT (-73.95799025974233 40.64394086041564),11933,Free,LinkNYC - Citybridge,bk-14-145758,1088 FLATBUSH AVENUE,40.6439408604,-73.9579902597,995908.289992,173884.192964,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018090,09/15/2017 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,516,3051602,3345680,3051640010,4481 +BK,POINT (-73.95779299971008 40.67135499959404),11934,Free,LinkNYC - Citybridge,bk-08-145993,792 Franklin Ave,40.6713549996,-73.9577929997,995958.22001,183871.952844,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018092,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11238,308,217,3021700,3029659,3011810050,4482 +BK,POINT (-73.95628099961745 40.67514099957469),11935,Free,LinkNYC - Citybridge,bk-08-145992,685 Franklin Ave,40.6751409996,-73.9562809996,996376.960314,185251.506187,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018096,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11216,308,221,3022100,3030857,3012240000,4483 +BK,POINT (-73.95621157974935 40.67574507012347),11936,Free,LinkNYC - Citybridge,bk-08-145991,658 Franklin Ave,40.6757450701,-73.9562115797,996396.106273,185471.59597,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018097,03/12/2018 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11238,308,305,3030500,3028671,3011560050,4484 +BK,POINT (-73.95585799963841 40.676713999774606),11937,Free,LinkNYC - Citybridge,bk-08-145990,634 Franklin Ave,40.6767139998,-73.9558579996,996494.005028,185824.653991,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018099,01/22/2018 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11238,308,305,3030500,3028306,3011490050,4485 +BK,POINT (-73.95853500005559 40.68185300014096),11938,Free,LinkNYC - Citybridge,bk-03-145748,549 CLASSON AVENUE,40.6818530001,-73.9585350001,995750.578693,187696.576756,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018100,04/20/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,303,227,3022700,3057307,3019940060,4486 +BK,POINT (-73.95620126019044 40.68131524977695),11939,Free,LinkNYC - Citybridge,bk-03-145784,1139 FULTON STREET,40.6813152498,-73.9562012602,996397.954039,187500.973801,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018101,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,35,11238,303,227,3022700,3057391,3019970050,4487 +BK,POINT (-73.95570356280166 40.68095126047006),11940,Free,LinkNYC - Citybridge,bk-03-145796,540 FRANKLIN AVENUE,40.6809512605,-73.9557035628,996536.061702,187368.431415,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018102,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,36,11238,303,227,3022700,3339279,3020160040,4488 +MN,POINT (-73.99494009000526 40.717919579868216),10714,Free,LinkNYC - Citybridge,mn-03-108422,113 BOWERY,40.7179195799,-73.99494009,985652.638915,200834.022922,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008230,09/19/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,16,1001600,1003926,1003040010,3820 +MN,POINT (-74.00497399957882 40.71967899978994),10715,Free,LinkNYC - Citybridge,mn-01-108445,23 WALKER STREET,40.7196789998,-74.0049739996,982871.212391,201475.032139,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008239,05/02/2018 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,1088221,1001910000,3821 +MN,POINT (-73.98926216998922 40.730231650399155),10716,Free,LinkNYC - Citybridge,mn-03-138537,35 3 AVENUE,40.7302316504,-73.98926217,987226.044233,205319.83252,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008245,10/21/2016 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006764,1004650000,3822 +MN,POINT (-73.98985000018251 40.7192149999377),10717,Free,LinkNYC - Citybridge,mn-03-123367,84 DELANCEY STREET,40.7192149999,-73.9898500002,987063.589177,201306.106624,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008295,12/28/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,1005508,1004150080,3823 +MN,POINT (-73.9883900998976 40.72357992987598),10718,Free,LinkNYC - Citybridge,mn-03-115304,19 1 AVENUE,40.7235799299,-73.9883900999,987468.06409,202896.435136,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008296,06/19/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,36,1003602,1006096,1004430040,3824 +MN,POINT (-73.9853250298631 40.72779351026794),10719,Free,LinkNYC - Citybridge,mn-03-108516,133 1 AVENUE,40.7277935103,-73.9853250299,988317.39146,204431.700438,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008302,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1077695,1004500030,3825 +MN,POINT (-73.98508300031652 40.7281260001325),10720,Free,LinkNYC - Citybridge,mn-03-108269,145 1 AVENUE,40.7281260001,-73.9850830003,988384.453005,204552.848162,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008303,06/05/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,38,1003800,1079781,1004500030,3826 +MN,POINT (-73.98467999991833 40.72882399995048),10721,Free,LinkNYC - Citybridge,mn-03-139455,242 EAST 10 STREET,40.728824,-73.9846799999,988496.105669,204807.170488,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008305,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006417,1004510030,3827 +MN,POINT (-73.9831926300486 40.73030035004909),10722,Free,LinkNYC - Citybridge,mn-03-107898,208 1 AVENUE,40.73030035,-73.98319263,988908.243296,205345.126433,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008307,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1005980,1004400010,3828 +MN,POINT (-73.99474199943032 40.736387000181324),10723,Free,LinkNYC - Citybridge,mn-02-123542,18 WEST 14 STREET,40.7363870002,-73.9947419994,985707.147008,207562.280791,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008590,12/28/2016 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,63,1006300,1009714,1005770030,3829 +MN,POINT (-73.99248875023424 40.74861533973462),10724,Free,LinkNYC - Citybridge,mn-05-122442,362 7 AVENUE,40.7486153397,-73.9924887502,986331.206784,212017.499571,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008689,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1014343,1007800040,3830 +MN,POINT (-73.99100163004915 40.745578140428606),10725,Free,LinkNYC - Citybridge,mn-05-107739,795 6 AVENUE,40.7455781404,-73.99100163,986743.369673,210910.989317,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008693,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015075,1008030040,3831 +MN,POINT (-73.99137500032234 40.7446679999592),10726,Free,LinkNYC - Citybridge,mn-05-123642,766 6 AVENUE,40.744668,-73.9913750003,986639.944683,210579.38565,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008694,11/02/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1087526,1008270000,3832 +MN,POINT (-73.99403913047428 40.745968480330795),10727,Free,LinkNYC - Citybridge,mn-05-123662,179 WEST 26 STREET,40.7459684803,-73.9940391305,985901.695176,211053.130765,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008695,01/18/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1015029,1008020000,3833 +MN,POINT (-73.99428583030583 40.746154849947914),10728,Free,LinkNYC - Citybridge,mn-05-138267,290 7 AVENUE,40.7461548499,-73.9942858303,985833.332779,211121.026627,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008696,10/10/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,95,1009500,1014236,1007760040,3834 +MN,POINT (-73.98536699946078 40.744742000320485),10729,Free,LinkNYC - Citybridge,mn-05-121634,15 EAST 29 STREET,40.7447420003,-73.9853669995,988304.727443,210606.567354,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008837,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1016928,1008590020,3835 +MN,POINT (-73.98463899963933 40.74512600042233),10730,Free,LinkNYC - Citybridge,mn-05-144509,28 EAST 30 STREET,40.7451260004,-73.9846389996,988506.427827,210746.505394,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008838,11/21/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,2,10016,105,74,1007400,1016939,1008590060,3836 +MN,POINT (-73.98620711013261 40.746708869683665),10731,Free,LinkNYC - Citybridge,mn-05-107760,3 WEST 31 STREET,40.7467088697,-73.9862071101,988071.824365,211323.123007,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008840,08/30/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,76,1007600,1015816,1008330040,3837 +MN,POINT (-73.98524462977826 40.74711440961581),10732,Free,LinkNYC - Citybridge,mn-05-121611,1 EAST 32 STREET,40.7471144096,-73.9852446298,988338.489843,211470.917659,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008842,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1017006,1008620000,3838 +MN,POINT (-73.98483344036545 40.74773664028654),10733,Free,LinkNYC - Citybridge,mn-05-121613,1 EAST 33 STREET,40.7477366403,-73.9848334404,988452.384956,211697.63571,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-008843,03/23/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10016,105,74,1007400,1017076,1008630010,3839 +BK,POINT (-73.98086199997624 40.689026000323366),10734,Free,LinkNYC - Citybridge,bk-02-126433,395 FLATBUSH AVENUE EXTENSION,40.6890260003,-73.980862,989557.473953,190307.767072,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-009081,07/25/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,33,3003300,3058594,3020930000,3840 +MN,POINT (-73.98106450033985 40.74688074990743),10735,Free,LinkNYC - Citybridge,mn-05-121576,100 EAST 34 STREET,40.7468807499,-73.9810645003,989496.758852,211386.010677,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-009082,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,105,72,1007200,1087537,1008897500,3841 +MN,POINT (-73.99113024948586 40.75048842985021),10736,Free,LinkNYC - Citybridge,mn-05-122446,430 7 AVENUE,40.7504884299,-73.9911302495,986707.549207,212699.961789,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-009918,01/18/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,3,10001,105,101,1010100,1014385,1007830030,3842 +BX,POINT (-73.8913980005708 40.84070599991489),10737,Limited Free,ALTICEUSA,Crotona Park,Crotona Park- CROTONA PARK NORTH 2/P/E/O PROSPECT AV,40.8407059999,-73.8913980006,1014299.68825,245587.860908,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,367,2036700,0,2029520014,1286 +BX,POINT (-73.89604500025042 40.8407099998603),10738,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-CROTONA AV 4 P/S/O CRONTA PARK NORTH,40.8407099999,-73.8960450003,1013013.88308,245587.758218,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,2029410001,1287 +BX,POINT (-73.89190000015536 40.8411999997002),10739,Limited Free,ALTICEUSA,Crotona Park,CROTONA PARK-C/O PROSPECT AVE AND CROTONA PARK N,40.8411999997,-73.8919000002,1014160.56517,245767.671572,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10460,206,367,2036700,0,0,1288 +BX,POINT (-73.89296099991155 40.84162599969265),10740,Limited Free,ALTICEUSA,Crotona Park,Crotona Park- CROTONA PARK NORTH 1/P/E/O CROTONA AV,40.8416259997,-73.8929609999,1013866.80394,245922.518703,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX17,East Tremont,17,10457,206,36902,2036902,2009945,2029480058,1289 +BX,POINT (-73.89439899998918 40.84169299998299),10741,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-CROTONA AV 2 P/S/O CRONTA PARK NORTH,40.841693,-73.894399,1013468.89201,245946.446477,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1290 +BX,POINT (-73.89428099985597 40.84182000016643),10742,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-CROTONA AV 3 P/S/O CRONTA PARK NORTH,40.8418200002,-73.8942809999,1013501.48578,245992.756752,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX99,park-cemetery-etc-Bronx,17,10457,203,163,2016300,0,0,1291 +BX,POINT (-73.89795100050696 40.88147700032839),10743,Limited Free,ALTICEUSA,Crotona Park,Crotona Park-ON SPAN BETWEEN PS 4 & PS 171,40.8814770003,-73.8979510005,1012469.19814,260440.124511,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX28,Van Cortlandt Village,11,10463,208,279,2027900,2015848,2032580177,1293 +BX,POINT (-73.8382920000901 40.816436000187274),10744,Limited Free,ALTICEUSA,Ferry Point Park,ON SCHLEY AVENUE 2/P/E O BRUSH,40.8164360002,-73.8382920001,1029010.19098,236768.097052,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX09,Soundview-Castle Hill-Clason Point-Harding Park,13,10465,210,90,2009000,0,0,1294 +BX,POINT (-73.8266539995986 40.821599000099944),10745,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 1/P/E/O SCHLEY AV,40.8215990001,-73.8266539996,1032227.82103,238655.321295,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1295 +BX,POINT (-73.82620999952783 40.821067999789314),10746,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 3/P/E/O SCHLEY AV,40.8210679998,-73.8262099995,1032351.09276,238462.102522,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1296 +BX,POINT (-73.82583899990671 40.82061900017875),10747,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 5/P/E/O SCHLEY AV,40.8206190002,-73.8258389999,1032454.10207,238298.719975,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1297 +BX,POINT (-73.83744899981734 40.81635700004201),10750,Limited Free,ALTICEUSA,Ferry Point Park,SCHLEY AV 2/P/W/O HUTCHINSON RVR PK,40.816357,-73.8374489998,1029243.58356,236739.746386,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX09,Soundview-Castle Hill-Clason Point-Harding Park,13,10465,210,90,2009000,0,0,1300 +BX,POINT (-73.83767100006803 40.81534599995966),10751,Limited Free,ALTICEUSA,Ferry Point Park,HUTCHINSON RVR PK 2 P/S/O SCHLEY AV,40.815346,-73.8376710001,1029182.81727,236371.289446,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,2056220001,1301 +BX,POINT (-73.83399799968299 40.816411999622616),10752,Limited Free,ALTICEUSA,Ferry Point Park,C/O SCHLEY AV /BRUSH AV,40.8164119996,-73.8339979997,1030198.76997,236761.576067,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,2056220001,1302 +BX,POINT (-73.82455999996714 40.81875200003562),10753,Limited Free,ALTICEUSA,Ferry Point Park,BALCOM AV 2/P/N/O SAMPSON AV,40.818752,-73.82456,1032809.46422,237619.212147,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX52,Schuylerville-Throgs Neck-Edgewater Park,13,10465,210,110,2011000,0,0,1303 +BX,POINT (-73.89850199942697 40.814690000201054),10754,Limited Free,ALTICEUSA,Fox Playground,SPAN BTWH 725 & 737 SOUTHERN BL,40.8146900002,-73.8985019994,1012345.02713,236106.928754,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX33,Longwood,8,10455,202,85,2008500,2005721,2027200024,1304 +BK,POINT (-73.98468899992028 40.62300099973581),10755,Limited Free,ALTICEUSA,Gravesend Park,EASEMENT 57TH ST 3 P/S/18TH AV,40.6230009997,-73.9846889999,988500.350083,166252.814854,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,468,3046800,3358346,3054940116,1305 +BK,POINT (-73.98526499945204 40.62331499993819),10756,Limited Free,ALTICEUSA,Gravesend Park,EASEMENT 57TH ST 1 P/S/18TH AV,40.6233149999,-73.9852649995,988340.432752,166367.186016,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,468,3046800,0,3054940008,1306 +BK,POINT (-73.98359199956914 40.62383100010394),10757,Limited Free,ALTICEUSA,Gravesend Park,EASEMENT 56TH ST 5 P/S/18TH AV,40.6238310001,-73.9835919996,988804.821915,166555.2611,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,468,3046800,0,3054940008,1307 +BK,POINT (-73.98440400018943 40.6242439997854),10758,Limited Free,ALTICEUSA,Gravesend Park,EASEMENT 56TH ST 1P/S/18TH AV,40.6242439998,-73.9844040002,988579.385686,166705.686652,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,468,3046800,0,3054940029,1308 +BK,POINT (-73.98288400024217 40.623457000019584),10759,Limited Free,ALTICEUSA,Gravesend Park,EASEMENT 56TH ST 9 P/S/18TH AV,40.623457,-73.9828840002,989001.387467,166419.040571,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK88,Borough Park,44,11204,312,468,3046800,0,3054940008,1309 +BX,POINT (-73.86554000053093 40.87454999960253),10760,Limited Free,ALTICEUSA,Gun Hill Playground,Cruger Av 1/P/S/O Magenta St,40.8745499996,-73.8655400005,1021435.54898,257928.444495,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX44,Williamsbridge-Olinville,12,10467,212,374,2037400,0,2046300010,1310 +BX,POINT (-73.86500500041892 40.87477899965702),10761,Limited Free,ALTICEUSA,Gun Hill Playground,HOLLAND AV 1 P/S/O MAGENTA AV,40.8747789997,-73.8650050004,1021583.37709,258012.105745,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX44,Williamsbridge-Olinville,12,10467,212,374,2037400,0,0,1311 +BX,POINT (-73.83782499950857 40.87322000004952),10762,Limited Free,ALTICEUSA,Haffen Park,HAMMERSLEY AV 1/P/W/O ELY AV,40.87322,-73.8378249995,1029101.15274,257456.851606,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,0,0,1312 +BX,POINT (-73.83947799990305 40.8726760004331),10763,Limited Free,ALTICEUSA,Haffen Park,HAMMERSLEY AV 5/P/W/O ELY AV,40.8726760004,-73.8394779999,1028644.36231,257257.809353,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,0,0,1314 +BX,POINT (-73.84058600059224 40.87364000021573),10764,Limited Free,ALTICEUSA,Haffen Park,GUNTHER AV 2/P/S/O BURKE AV,40.8736400002,-73.8405860006,1028337.29206,257608.472365,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,0,0,1315 +BX,POINT (-73.83918099943219 40.874776999605835),10765,Limited Free,ALTICEUSA,Haffen Park,C/O BURKE AV /BRUNER AV,40.8747769996,-73.8391809994,1028725.09608,258023.435774,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX03,Eastchester-Edenwald-Baychester,12,10469,212,358,2035800,0,0,1316 +BK,POINT (-73.91862700049514 40.69483699967887),10766,Limited Free,ALTICEUSA,Heckscher Playground,BACK LEFT SIDE OF ROOFTOP OF 335 CENTRAL AV,40.6948369997,-73.9186270005,1006814.9168,192434.785784,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,37,11221,304,417,3041700,0,3033240001,1317 +BK,POINT (-73.91851000030574 40.69476900019871),10767,Limited Free,ALTICEUSA,Heckscher Playground,BACK RIGHT SIDE OF ROOFTOP OF 335 CENTRAL AV,40.6947690002,-73.9185100003,1006847.38426,192410.041739,Outdoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK78,Bushwick South,37,11221,304,417,3041700,0,3033240001,1318 +BK,POINT (-73.94646999957209 40.689920000060894),10768,Limited Free,ALTICEUSA,Herbert Von King Park,Inside bldg-Multi-purpose room,40.6899200001,-73.9464699996,999095.086112,190637.433408,Indoor,3 free 10 min sessions,Brooklyn,GuestWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,263,3026300,0,3017900001,1319 +BX,POINT (-73.89791000013534 40.82425499998893),10769,Limited Free,ALTICEUSA,Horseshoe Playground,HORSESHOE PLAYGROUND-HALL PL 2/P/N/O E 165TH ST EAST SIDE,40.824255,-73.8979100001,1012504.83324,239591.991666,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX33,Longwood,17,10459,202,131,2013100,0,0,1320 +MN,POINT (-73.94550199976447 40.80774500021117),10770,Free,Transit Wireless,"125 St (2,3)","125 St (2,3)",40.8077450002,-73.9455019998,999336.827426,233565.034232,Subway Station,SN 439,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10027,110,200,1020000,0,0,1591 +MN,POINT (-73.9375940005581 40.80413799968677),10771,Free,Transit Wireless,"125 St (4,5,6) (6)","125 St (4,5,6)",40.8041379997,-73.9375940006,1001526.95592,232252.33771,Subway Station,SN 392,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,8,10035,111,196,1019600,0,0,1592 +MN,POINT (-73.95367599969335 40.82200799968429),10775,Free,Transit Wireless,137 St-City College (1),137 St-City College (1),40.8220079997,-73.9536759997,997071.24928,238760.253172,Subway Station,SN 305,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10031,109,22301,1022301,0,0,1596 +MN,POINT (-73.95558899985012 40.77949200001054),10776,Free,Transit Wireless,IRT-4-5-6-86TH ST - GRAND CONCOURSE,"86 Street [4,5,6]",40.779492,-73.9555889999,996549.635166,223269.913418,Subway Station,SN 397,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10028,108,14801,1014801,0,0,1597 +MN,POINT (-73.95035999998258 40.82655099962246),10777,Free,Transit Wireless,145 St (1),145 St (1),40.8265509996,-73.95036,997988.091606,240415.935884,Subway Station,SN 304,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,229,1022900,0,0,1598 +MN,POINT (-73.93624499991839 40.82042099969345),10778,Free,Transit Wireless,145 St (3),145 St (3),40.8204209997,-73.9362449999,1001896.10577,238185.083063,Subway Station,SN 437,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,232,1023200,0,0,1599 +MN,POINT (-73.94421599940875 40.82478300012351),10779,Free,Transit Wireless,"145 St (A,B,C,D)","145 St (A,B,C,D)",40.8247830001,-73.9442159994,999688.881184,239772.812499,Subway Station,SN 151,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10031,109,231,1023100,0,0,1600 +MN,POINT (-73.93820900048725 40.830134999982455),10780,Free,Transit Wireless,"155 St (B,D)","155 St (B,D)",40.830135,-73.9382090005,1001350.01336,241723.857153,Subway Station,SN 220,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,24302,1024302,0,1021060003,1601 +MN,POINT (-73.94151399963577 40.83051800019244),10781,Free,Transit Wireless,155 St (C),155 St (C),40.8305180002,-73.9415139996,1000435.29636,241862.770261,Subway Station,SN 150,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,9,10032,109,23501,1023501,0,0,1602 +MN,POINT (-73.94489000019611 40.83404100014045),10782,Free,Transit Wireless,157 St (1),157 St (1),40.8340410001,-73.9448900002,999500.221456,243145.723076,Subway Station,SN 303,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,241,1024100,0,0,1603 +MN,POINT (-74.01102899972403 40.710688000242975),10783,Free,Transit Wireless,"161 St-Yankee Stadium (B,D,4)","161 St-Yankee Stadium (B,D,4)",40.7106880002,-74.0110289997,981192.360106,198199.490462,Subway Station,SN 21,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10048,101,13,1001300,0,0,1604 +MN,POINT (-73.93989199951133 40.8360130001302),10784,Free,Transit Wireless,163 St-Amsterdam Av (C),163 St-Amsterdam Av (C),40.8360130001,-73.9398919995,1000882.79153,243865.105167,Subway Station,SN 149,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,7,10032,112,24301,1024301,0,0,1605 +MN,POINT (-73.93970399998842 40.8473909998248),10785,Free,Transit Wireless,175 St (A),175 St (A),40.8473909998,-73.939704,1000931.96039,248010.571614,Subway Station,SN 147,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,263,1026300,0,0,1606 +MN,POINT (-73.93796899967832 40.85169499974336),10786,Free,Transit Wireless,181 St (A),181 St (A),40.8516949997,-73.9379689997,1001410.86855,249579.016968,Subway Station,SN 146,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,273,1027300,0,0,1607 +MN,POINT (-73.92941199979428 40.855224999958864),10787,Free,Transit Wireless,191 St (1),191 St (1),40.855225,-73.9294119998,1003777.12465,250866.922528,Subway Station,SN 300,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,277,1027700,0,0,1609 +MN,POINT (-73.9638700003965 40.76814099959592),10788,Free,Transit Wireless,"68 St-Hunter College (6) (4, 6)",68 St-Hunter College (6),40.7681409996,-73.9638700004,994257.916324,219133.309815,Subway Station,SN 399,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,120,1012000,0,0,1610 +MN,POINT (-73.95987400004552 40.77361999984607),10789,Free,Transit Wireless,77 St (6),77 St (6),40.7736199998,-73.959874,995363.8836,221129.9738,Subway Station,SN 398,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,128,1012800,0,0,1611 +MN,POINT (-73.95107000035779 40.785671999985574),10790,Free,Transit Wireless,96 St (6),96 St (6),40.785672,-73.9510700004,997799.915145,225522.163835,Subway Station,SN 396,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,5,10128,108,15801,1015801,0,0,1612 +BX,POINT (-73.91924000027947 40.80756599987783),10791,Free,Transit Wireless,IRT - Brook Av (6),Brook Av (6),40.8075659999,-73.9192400003,1006607.06551,233505.431005,Subway Station,SN 376,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,0,0,1613 +MN,POINT (-73.9668470005456 40.80396699961484),10792,Free,Transit Wireless,Cathedral Pkwy-110 St (1),Cathedral Pkwy-110 St (1),40.8039669996,-73.9668470005,993428.354991,232185.619012,Subway Station,SN 308,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,195,1019500,0,0,1614 +BK,POINT (-73.95543099978231 40.67950599975057),11941,Free,LinkNYC - Citybridge,bk-03-145750,560 FRANKLIN AVENUE,40.6795059998,-73.9554309998,996611.927692,186841.919673,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018103,03/13/2017 12:00:00 AM +0000,3,Brooklyn,BK69,Clinton Hill,36,11238,303,227,3022700,3057888,3020200060,4489 +BK,POINT (-73.94947300042367 40.679986999601915),11942,Free,LinkNYC - Citybridge,bk-03-145837,505 Nostrand Ave,40.6799869996,-73.9494730004,998264.373206,187018.058757,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018105,06/09/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,303,247,3024700,3053750,3018610000,4490 +BK,POINT (-73.94615492960847 40.680272659774715),11943,Free,LinkNYC - Citybridge,bk-03-145815,1373 FULTON STREET,40.6802726598,-73.9461549296,999184.622678,187122.681251,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018109,07/28/2017 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,269,3026900,3332255,3018540000,4491 +BK,POINT (-73.94490292943925 40.68019738020382),11944,Free,LinkNYC - Citybridge,bk-03-145756,1407 FULTON STREET,40.6801973802,-73.9449029294,999531.89823,187095.470675,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018110,03/20/2017 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,269,3026900,3338749,3018540060,4492 +BK,POINT (-73.94225999973872 40.68005899987579),11945,Free,LinkNYC - Citybridge,bk-03-145757,1473 FULTON STREET,40.6800589999,-73.9422599997,1000264.98272,187045.526877,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018111,03/24/2017 12:00:00 AM +0000,3,Brooklyn,BK75,Bedford,36,11216,303,269,3026900,3338750,3018570020,4493 +BK,POINT (-73.93910100969755 40.67975193025214),11946,Free,LinkNYC - Citybridge,bk-03-145759,1546 FULTON STREET,40.6797519303,-73.9391010097,1001141.24967,186934.245932,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018115,04/05/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,303,271,3027100,3053854,3018640030,4494 +BK,POINT (-73.93762700186885 40.679815356357),11947,Free,LinkNYC - Citybridge,bk-03-145760,1591 FULTON STREET,40.6798153564,-73.9376270019,1001550.07136,186957.641555,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018117,04/10/2017 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,36,11216,303,273,3027300,3053698,3018590030,4495 +BK,POINT (-73.93549972963922 40.67956067966809),11948,Free,LinkNYC - Citybridge,bk-03-145749,1628 FULTON STREET,40.6795606797,-73.9354997296,1002140.16992,186865.282815,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018119,03/20/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11213,303,271,3027100,3000000,3016990040,4496 +BK,POINT (-73.92983399948834 40.679381000130114),11949,Free,LinkNYC - Citybridge,bk-03-145816,1741 FULTON STREET,40.6793810001,-73.9298339995,1003711.70188,186801.028351,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018120,09/27/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11233,303,297,3029700,3325182,3016910010,4497 +BK,POINT (-73.92180199949814 40.67901499989786),11950,Free,LinkNYC - Citybridge,bk-03-145817,293 RALPH AVENUE,40.6790149999,-73.9218019995,1005939.62852,186669.570608,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018124,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK35,Stuyvesant Heights,41,11233,303,379,3037900,3041421,3015240000,4498 +BK,POINT (-73.9121847598992 40.678285590438996),11951,Free,LinkNYC - Citybridge,bk-16-145962,2122 FULTON STREET,40.6782855904,-73.9121847599,1008607.40928,186406.353615,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018133,04/05/2018 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,41,11233,316,301,3030100,3042170,3015510020,4499 +BK,POINT (-73.91025266051281 40.67831184987787),11952,Free,LinkNYC - Citybridge,bk-16-145761,2069 FULTON STREET,40.6783118499,-73.9102526605,1009143.30781,186416.463831,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018134,04/20/2017 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,369,3036900,3000000,3015420010,4500 +BK,POINT (-73.90761957959364 40.678035789626726),11953,Free,LinkNYC - Citybridge,bk-16-145818,2214 FULTON STREET,40.6780357896,-73.9076195796,1009873.75386,186316.646445,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-018136,05/03/2017 12:00:00 AM +0000,3,Brooklyn,BK79,Ocean Hill,37,11233,316,367,3036700,3042276,3015530000,4501 +QU,POINT (-73.87164800049248 40.733578999744914),11954,Free,LinkNYC - Citybridge,qu-04-145768,90-20 QUEENS BOULEVARD,40.7335789997,-73.8716480005,1019821.61028,206565.254898,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018137,04/14/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4457337,4028570070,4502 +QU,POINT (-73.87270948976959 40.73388902014614),11955,Free,LinkNYC - Citybridge,qu-04-145774,90-02 QUEENS BOULEVARD,40.7338890201,-73.8727094898,1019527.26408,206677.775671,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018138,03/20/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064869,4028570040,4503 +QU,POINT (-73.87365800026855 40.7341620003842),11956,Free,LinkNYC - Citybridge,qu-04-145772,89-30 QUEENS BOULEVARD,40.7341620004,-73.8736580003,1019264.25083,206776.850276,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018140,04/10/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064868,4028570020,4504 +QU,POINT (-73.87625423025764 40.73538739979762),11957,Free,LinkNYC - Citybridge,qu-04-145775,87-20 55 AVENUE,40.7353873998,-73.8762542303,1018544.10496,207222.274254,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018141,04/10/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064700,4028530010,4505 +QU,POINT (-73.87736400000908 40.73627299993192),11958,Free,LinkNYC - Citybridge,qu-04-145745,86-10 QUEENS BOULEVARD,40.7362729999,-73.877364,1018236.09901,207544.493425,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018142,06/13/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4064656,4028510030,4506 +QU,POINT (-73.88031500023654 40.736981999798324),11959,Free,LinkNYC - Citybridge,qu-04-145776,51-01 GOLDSMITH STREET,40.7369819998,-73.8803150002,1017417.93628,207801.673029,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018143,03/20/2017 12:00:00 AM +0000,4,Queens,QN29,Elmhurst,25,11373,404,475,4047500,4057288,4024760010,4507 +QU,POINT (-73.88397800019656 40.73777699990467),11960,Free,LinkNYC - Citybridge,qu-04-145777,79-14 QUEENS BOULEVARD,40.7377769999,-73.8839780002,1016402.43732,208089.950668,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018144,03/20/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,25,11373,404,479,4047900,4056460,4024530020,4508 +QU,POINT (-73.89249799981259 40.739393000330274),11961,Free,LinkNYC - Citybridge,qu-02-145740,70-50 QUEENS BOULEVARD,40.7393930003,-73.8924979998,1014040.62282,208675.697856,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018146,03/20/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,30,11377,402,489,4048900,4056418,4024440040,4509 +QU,POINT (-73.89529599973905 40.739921999771845),11962,Free,LinkNYC - Citybridge,qu-02-145849,69-02 QUEENS BOULEVARD,40.7399219998,-73.8952959997,1013265.01971,208867.489795,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018147,10/06/2017 12:00:00 AM +0000,4,Queens,QN50,Elmhurst-Maspeth,30,11377,402,489,4048900,4056320,4024320010,4510 +QU,POINT (-73.8998640005646 40.74072699992513),11963,Free,LinkNYC - Citybridge,qu-02-145742,65-10 QUEENS BOULEVARD,40.7407269999,-73.8998640006,1011998.82474,209159.296626,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018148,03/20/2017 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,245,4024500,4437388,4023920020,4511 +QU,POINT (-73.90188599946778 40.74096199966519),11964,Free,LinkNYC - Citybridge,qu-02-145778,63-14 QUEENS BOULEVARD,40.7409619997,-73.9018859995,1011438.41018,209244.28038,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018149,03/28/2017 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,245,4024500,4053628,4023247500,4512 +QU,POINT (-73.90652400003121 40.74150599993164),11965,Free,LinkNYC - Citybridge,qu-02-145744,58-28 QUEENS BOULEVARD,40.7415059999,-73.906524,1010152.96098,209441.071325,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018153,06/26/2017 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,245,4024500,4454475,4023137500,4513 +QU,POINT (-73.90753415770087 40.741433962520915),11966,Free,LinkNYC - Citybridge,qu-02-145787,46-01 58 STREET,40.7414339625,-73.9075341577,1009873.06587,209414.528727,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018155,04/05/2017 12:00:00 AM +0000,4,Queens,QN63,Woodside,26,11377,402,245,4024500,4454475,4023137500,4514 +QU,POINT (-73.91534244860657 40.7425327136866),11967,Free,LinkNYC - Citybridge,qu-02-145741,49-18 QUEENS BOULEVARD,40.7425327137,-73.9153424486,1007708.93634,209812.650963,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018157,03/20/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11377,402,235,4023500,4052837,4022820030,4515 +QU,POINT (-73.92240124044926 40.74331228969654),11968,Free,LinkNYC - Citybridge,qu-02-145743,45-01 42 STREET,40.7433122897,-73.9224012404,1005752.66663,210094.863653,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018161,03/20/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,181,4018102,4540182,4001690020,4516 +QU,POINT (-73.92415600030358 40.743554999846246),11969,Free,LinkNYC - Citybridge,qu-02-145779,40-02 QUEENS BOULEVARD,40.7435549998,-73.9241560003,1005266.34509,210182.864789,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018166,04/18/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11104,402,181,4018101,4002571,4001930030,4517 +QU,POINT (-73.93372599983537 40.74460800031177),11970,Free,LinkNYC - Citybridge,qu-02-145780,45-02 VAN DAM STREET,40.7446080003,-73.9337259998,1002614.21195,210564.355168,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018172,04/14/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,179,4017900,4003535,4002790000,4518 +MN,POINT (-73.94344594101301 40.83074624146938),11971,Free,LinkNYC - Citybridge,mn-09-146042,1895 Amsterdam Ave,40.8307462415,-73.943445941,999900.601233,241945.57587,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018177,04/26/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10032,109,235,1023501,1081827,1020680040,4519 +MN,POINT (-73.94470426720831 40.829389485243),11972,Free,LinkNYC - Citybridge,mn-09-145960,1850 Amsterdam Ave,40.8293894852,-73.9447042672,999552.687887,241451.037489,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018179,01/12/2018 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,237,1023700,1062192,1020830030,4520 +MN,POINT (-73.95528025954644 40.81453869022864),11973,Free,LinkNYC - Citybridge,mn-09-145978,1381 Amsterdam Ave,40.8145386902,-73.9552802595,996628.622212,236038.68414,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018185,01/12/2018 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,213,1021303,1059584,1019680000,4521 +MN,POINT (-73.95187038944434 40.81886797960879),11974,Free,LinkNYC - Citybridge,mn-09-146052,499 WEST 135 STREET,40.8188679796,-73.9518703894,997571.622623,237616.499882,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018189,05/21/2018 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,9,10031,109,217,1021703,1084081,1019570200,4522 +MN,POINT (-73.9563738205007 40.81802285980525),11975,Free,LinkNYC - Citybridge,mn-09-146058,3270 BROADWAY,40.8180228598,-73.9563738205,996325.287517,237307.939476,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-018196,04/25/2018 12:00:00 AM +0000,1,Manhattan,MN06,Manhattanville,7,10027,109,219,1021900,1081809,1019860030,4523 +QU,POINT (-73.94279179000883 40.74707468966198),11976,Free,LinkNYC - Citybridge,qu-02-145791,25-01 JACKSON AVENUE,40.7470746897,-73.94279179,1000101.53784,211461.278243,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018198,04/14/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4539937,4000790030,4524 +QU,POINT (-73.94413828031257 40.74663918032153),11977,Free,LinkNYC - Citybridge,qu-02-145781,23-24 45 AVENUE,40.7466391803,-73.9441382803,999728.546787,211302.367471,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018199,04/14/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4000677,4000800000,4525 +QU,POINT (-73.94524604965602 40.74608863013313),11978,Free,LinkNYC - Citybridge,qu-02-145792,23-03 JACKSON AVENUE,40.7460886301,-73.9452460497,999421.72391,211101.590642,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018200,03/29/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4000690,4000800000,4526 +QU,POINT (-73.94693708015637 40.74541772017393),11979,Free,LinkNYC - Citybridge,qu-02-145746,22-25 JACKSON AVENUE,40.7454177202,-73.9469370802,998953.305883,210856.868362,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018201,03/29/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000561,4000760020,4527 +QU,POINT (-73.94766295942466 40.744921149980584),11980,Free,LinkNYC - Citybridge,qu-02-145785,2116 JACKSON AVENUE,40.74492115,-73.9476629594,998752.278726,210675.830995,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018203,03/29/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,19,4001900,4000543,4000720000,4528 +QU,POINT (-73.95080577002055 40.7433823398127),11981,Free,LinkNYC - Citybridge,qu-02-145795,48-15 11th St,40.7433823398,-73.95080577,997881.739785,210114.688744,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018206,05/30/2018 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4536917,4000617500,4529 +QU,POINT (-73.95267765982219 40.74263090994301),11982,Free,LinkNYC - Citybridge,qu-02-145782,10-51 JACKSON AVENUE,40.7426309099,-73.9526776598,997363.18636,209840.63319,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018207,03/22/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000243,4000420030,4530 +QU,POINT (-73.95333646957481 40.742287169747904),11983,Free,LinkNYC - Citybridge,qu-02-145783,10-31 JACKSON AVENUE,40.7422871697,-73.9533364696,997180.694599,209715.299779,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-018209,03/22/2017 12:00:00 AM +0000,4,Queens,QN31,Hunters Point-Sunnyside-West Maspeth,26,11101,402,7,4000700,4000229,4000410020,4531 +BX,POINT (-73.92788596962791 40.81015856022),11984,Free,LinkNYC - Citybridge,bx-01-145916,197 LINCOLN AVENUE,40.8101585602,-73.9278859696,1004212.79536,234447.903857,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018218,02/22/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10451,201,51,2005100,2000780,2023180020,4532 +BX,POINT (-73.92888643021078 40.817512190060036),11985,Free,LinkNYC - Citybridge,bx-01-145819,135 EAST 146 STREET,40.8175121901,-73.9288864302,1003933.67027,237126.867003,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018220,06/28/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,17,10451,201,63,2006300,2001088,2023500020,4533 +BX,POINT (-73.92924284857563 40.8167516433775),11986,Free,LinkNYC - Citybridge,bx-01-145820,140 EAST 144 STREET,40.8167516434,-73.9292428486,1003835.24035,236849.692689,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018221,07/20/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,201,63,2006300,2000000,2023450030,4534 +BX,POINT (-73.92988536984124 40.81503931012154),11987,Free,LinkNYC - Citybridge,bx-01-145841,301 WALTON AVENUE,40.8150393101,-73.9298853698,1003657.89293,236225.685407,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-018222,06/28/2017 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,201,63,2006300,2001025,2023440080,4535 +BK,POINT (-73.93218699957956 40.65159000009635),11988,Free,LinkNYC - Citybridge,bk-17-126271,4802 CHURCH AVE,40.6515900001,-73.9321869996,1003066.89674,176675.472486,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011626,07/24/2018 12:00:00 AM +0000,3,Brooklyn,BK91,East Flatbush-Farragut,45,11203,317,860,3086000,3102784,3046960000,4075 +BK,POINT (-73.95091334952774 40.66620283034579),11989,Free,LinkNYC - Citybridge,bk-09-127020,926 NOSTRAND AVENUE,40.6662028303,-73.9509133495,997867.686335,181995.866373,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011635,03/01/2017 12:00:00 AM +0000,3,Brooklyn,BK63,Crown Heights South,35,11225,309,321,3032100,3034163,3012960040,4076 +BX,POINT (-73.91232699987772 40.8214369997223),11990,Free,LinkNYC - Citybridge,bx-01-144251,3097 3 AVENUE,40.8214369997,-73.9123269999,1008515.75625,238560.970434,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011660,05/22/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,69,2006900,2001451,2023790050,4077 +BX,POINT (-73.89644355027735 40.8611743802703),11991,Free,LinkNYC - Citybridge,bx-05-119648,2463 VALENTINE AVENUE,40.8611743803,-73.8964435503,1012894.79178,253043.574999,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011663,04/18/2017 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,237,2023702,2013605,2031530040,4078 +BX,POINT (-73.90754800027683 40.862685000065525),11992,Free,LinkNYC - Citybridge,bx-07-144372,148 West Fordham Road,40.8626850001,-73.9075480003,1009822.60567,253590.515506,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011667,05/11/2017 12:00:00 AM +0000,2,Bronx,BX30,Kingsbridge Heights,14,10468,207,255,2025500,2014947,2032250110,4079 +BK,POINT (-73.95757438949322 40.64287502989642),11993,Free,LinkNYC - Citybridge,bk-14-126532,1133 FLATBUSH AVENUE,40.6428750299,-73.9575743895,996023.887858,173495.937507,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011704,02/14/2018 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,40,11226,314,792,3079200,3396547,3051650060,4080 +BX,POINT (-73.91949122044377 40.813575029577486),11994,Free,LinkNYC - Citybridge,bx-01-144892,442 WILLIS AVENUE,40.8135750296,-73.9194912204,1006535.50725,235694.669408,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011709,04/20/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10455,201,43,2004300,2000498,2022900000,4081 +BK,POINT (-73.950008000527 40.675964999689384),11995,Free,LinkNYC - Citybridge,bk-08-145032,656 NOSTRAND AVENUE,40.6759649997,-73.9500080005,998116.819695,185552.643708,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011729,03/08/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,36,11216,308,315,3031500,3030663,3012190040,4082 +MN,POINT (-73.92992035036423 40.854358460110646),11996,Free,LinkNYC - Citybridge,mn-12-120663,1580 ST. NICHOLAS AVE,40.8543584601,-73.9299203504,1003636.7496,250551.09606,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011738,03/09/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,277,1027700,1063828,1021580060,4083 +BX,POINT (-73.89822055653708 40.84692617466677),11997,Free,LinkNYC - Citybridge,bx-06-118922,1901 WASHINGTON AVENUE,40.8469261747,-73.8982205565,1012409.2852,247851.836039,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011757,01/12/2018 12:00:00 AM +0000,2,Bronx,BX01,Claremont-Bathgate,15,10457,206,395,2039500,2009536,2029090020,4084 +QU,POINT (-73.83960658964358 40.695602799770796),11998,Free,LinkNYC - Citybridge,qu-09-124794,107-23 JAMAICA AVENUE,40.6956027998,-73.8396065896,1028726.92613,192744.027948,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011760,07/07/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,128,4012800,4192128,4092030040,4085 +BK,POINT (-73.95062700041865 40.670115000362195),11999,Free,LinkNYC - Citybridge,bk-08-126469,529 EASTERN PARKWAY,40.6701150004,-73.9506270004,997946.322333,183421.225071,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011761,02/23/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11216,308,317,3031702,3032633,3012610030,4086 +BK,POINT (-73.95039699961877 40.67014700030191),12000,Free,LinkNYC - Citybridge,bk-08-127030,791 NOSTRAND AVENUE,40.6701470003,-73.9503969996,998010.119121,183432.919601,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-011768,02/23/2017 12:00:00 AM +0000,3,Brooklyn,BK61,Crown Heights North,35,11216,308,317,3031702,3032652,3012620000,4087 +QU,POINT (-73.9279352804716 40.763099500037235),12001,Free,LinkNYC - Citybridge,qu-01-125095,25-14 BROADWAY,40.7630995,-73.9279352805,1004213.25009,217302.672728,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011770,06/14/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11106,401,53,4005300,4007157,4005800020,4088 +BX,POINT (-73.91283822743726 40.82010249475625),12002,Free,LinkNYC - Citybridge,bx-01-118947,487 EAST 156 STREET,40.8201024948,-73.9128382274,1008374.74472,238074.621013,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011789,01/12/2018 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10451,201,71,2007100,2114919,2023647500,4089 +MN,POINT (-73.98165944947824 40.73087756979936),12003,Free,LinkNYC - Citybridge,mn-03-122032,418 EAST 14 STREET,40.7308775698,-73.9816594495,989333.127617,205555.510855,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011809,05/12/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,1006014,1004410020,4090 +MN,POINT (-73.93684736982601 40.84475572966763),12004,Free,LinkNYC - Citybridge,mn-12-120755,565 WEST 174 STREET,40.8447557297,-73.9368473698,1001722.98998,247051.00037,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011822,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10033,112,261,1026100,1063150,1021310000,4091 +MN,POINT (-73.9425246332856 40.81738063845819),12005,Free,LinkNYC - Citybridge,mn-10-119949,201 WEST 138 STREET,40.8173806385,-73.9425246333,1000158.75623,237076.167302,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011824,03/13/2017 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060290,1020240030,4092 +BX,POINT (-73.89994834968621 40.84740590995958),12006,Free,LinkNYC - Citybridge,bx-06-119390,426 EAST TREMONT AVENUE,40.84740591,-73.8999483497,1011931.05781,248026.070927,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011851,01/12/2018 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,206,231,2023100,2009458,2029000070,4093 +BX,POINT (-73.90938798021239 40.853842030341234),12007,Free,LinkNYC - Citybridge,bx-05-119610,48 WEST BURNSIDE AVENUE,40.8538420303,-73.9093879802,1009316.9925,250368.150888,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011861,02/08/2017 12:00:00 AM +0000,2,Bronx,BX36,University Heights-Morris Heights,14,10453,205,243,2024300,2008631,2028700030,4094 +BX,POINT (-73.91147000026 40.848729999866414),12008,Free,LinkNYC - Citybridge,bx-05-123186,1846 JEROME AVENUE,40.8487299999,-73.9114700003,1008742.9031,248505.055533,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011874,07/13/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10453,205,233,2023301,2008218,2028510000,4095 +BX,POINT (-73.9143003497181 40.81855965026498),12009,Free,LinkNYC - Citybridge,bx-01-123212,2976A 3 AVENUE,40.8185596503,-73.9143003497,1007970.60675,237512.108031,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011876,03/30/2017 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2001180,2023630010,4096 +BX,POINT (-73.91338799986094 40.819567999566544),12010,Free,LinkNYC - Citybridge,bx-01-123215,3012 3 AVENUE,40.8195679996,-73.9133879999,1008222.77061,237879.734264,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-011877,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2117395,2023630020,4097 +QU,POINT (-73.84559500014029 40.69520500012631),12011,Free,LinkNYC - Citybridge,qu-09-124792,101-21 JAMAICA AVENUE,40.6952050001,-73.8455950001,1027066.60333,192596.114201,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011905,07/07/2017 12:00:00 AM +0000,4,Queens,QN54,Richmond Hill,32,11418,409,24,4002400,4191441,4091810040,4098 +QU,POINT (-73.85894800052291 40.692466000049635),12012,Free,LinkNYC - Citybridge,qu-09-124799,85-02 JAMAICA AVENUE,40.692466,-73.8589480005,1023365.41815,191591.972509,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011906,07/07/2017 12:00:00 AM +0000,4,Queens,QN53,Woodhaven,32,11421,409,10,4001000,4183844,4089220000,4099 +QU,POINT (-73.91425899988407 40.763620999865395),12013,Free,LinkNYC - Citybridge,qu-01-125114,40-17 30 AVENUE,40.7636209999,-73.9142589999,1008001.64376,217496.084743,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Queens,LinkNYC Free Wi-Fi,LINK-011912,06/26/2017 12:00:00 AM +0000,4,Queens,QN70,Astoria,22,11103,401,147,4014700,4010804,4006630040,4100 +MN,POINT (-73.95815900019484 40.80060500012832),10793,Free,Transit Wireless,"Cathedral Pkwy-110 St (B,C)","Cathedral Pkwy-110 St (B,C)",40.8006050001,-73.9581590002,995834.198933,230961.754334,Subway Station,SN 155,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,19702,1019702,0,0,1615 +MN,POINT (-73.95182200058417 40.79907499977275),10794,Free,Transit Wireless,"Central Park North-110 St (2,3)",Central Av (M),40.7990749998,-73.9518220006,997588.982168,230405.223294,Subway Station,SN 441,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN11,Central Harlem South,9,10026,110,186,1018600,0,0,1616 +BX,POINT (-73.9140419999487 40.8053679998631),10795,Free,Transit Wireless,IRT - Cypress Av (6),Cypress Av (6),40.8053679999,-73.9140419999,1008046.831,232705.991659,Subway Station,SN 375,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,2702,2002702,0,0,1617 +MN,POINT (-73.98811400002671 40.71861099961758),10796,Free,Transit Wireless,"Delancey St (F)/Essex St (J,M,Z) (Delancey Street)","Delancey St (F)/Essex St (J,M,Z)",40.7186109996,-73.988114,987544.839855,201086.111329,Subway Station,SN 233,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,0,0,1618 +MN,POINT (-73.98743700053848 40.718315000364214),10797,Free,Transit Wireless,"Delancey St (F)/Essex St (J,M,Z) (Essex Street)","Delancey St (F)/Essex St (J,M,Z)",40.7183150004,-73.9874370005,987732.521894,200978.295928,Subway Station,SN 102,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,0,0,1619 +MN,POINT (-73.92727099960626 40.86549099986943),10798,Free,Transit Wireless,Dyckman St (A) (1 Line),Dyckman St (1),40.8654909999,-73.9272709996,1004366.29506,254607.706385,Subway Station,SN 144,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10040,112,287,1028700,0,0,1620 +BX,POINT (-73.90765700055132 40.808719000001865),10799,Free,Transit Wireless,IRT - East 143 St-St Mary's St (6),East 143 St-St Mary's St (6),40.808719,-73.9076570006,1009813.18279,233928.677862,Subway Station,SN 374,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,31,2003100,0,0,1621 +BX,POINT (-73.90409799994212 40.81211800007403),10800,Free,Transit Wireless,IRT - East 149 St (6),East 149 St (6),40.8121180001,-73.9040979999,1010797.05975,235168.112391,Subway Station,SN 373,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX33,Longwood,8,10455,202,83,2008300,0,0,1622 +MN,POINT (-73.9901730004564 40.713715000116764),10801,Free,Transit Wireless,East Broadway (F),East Broadway (F),40.7137150001,-73.9901730005,986974.278004,199302.278611,Subway Station,SN 234,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN28,Lower East Side,1,10002,103,6,1000600,0,0,1623 +MN,POINT (-74.00758200019992 40.7103739996946),10803,Free,Transit Wireless,"Fulton St (J,M,Z,2,3,4,5)/Bway-Nassau St (A,C) (Fulton St [J,Z])","Fulton St (A,C,J,Z,2,3,4,5)",40.7103739997,-74.0075820002,982147.983851,198084.98905,Subway Station,SN 106,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,0,0,1625 +MN,POINT (-74.00657099970212 40.70941600015916),10804,Free,Transit Wireless,"Fulton St (J,M,Z,2,3,4,5)/Bway-Nassau St (A,C) (2-3) Line","Fulton St (A,C,J,Z,2,3,4,5)",40.7094160002,-74.0065709997,982428.245101,197735.938239,Subway Station,SN 332,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,0,0,1626 +MN,POINT (-74.00950899974814 40.710367999722536),10805,Free,Transit Wireless,"Fulton St (J,M,Z,2,3,4,5)/Bway-Nassau St (A,C) (4-5)","Fulton St (A,C,J,Z,2,3,4,5)",40.7103679997,-74.0095089997,981613.74673,198082.855196,Subway Station,SN 412,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1502,1001502,0,0,1627 +MN,POINT (-73.99915300003569 40.71417000040601),10806,Free,Transit Wireless,"Fulton St (J,M,Z,2,3,4,5)/Bway-Nassau St (A,C) (4-5)","Fulton St (A,C,J,Z,2,3,4,5)",40.7141700004,-73.999153,984484.806933,199467.897374,Subway Station,SN 412A,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10013,103,29,1002900,1079265,1001640048,1628 +MN,POINT (-74.0076910005898 40.71019699975058),10807,Free,Transit Wireless,"Fulton St (J,M,Z,2,3,4,5)/Bway-Nassau St (A,C) (A,C)","Fulton St (A,C,J,Z,2,3,4,5)",40.7101969998,-74.0076910006,982117.759174,198020.505256,Subway Station,SN 172,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10038,101,1501,1001501,0,0,1629 +MN,POINT (-73.93647000005645 40.82387999990406),10808,Free,Transit Wireless,Harlem-148 St (3),Harlem-148 St (3),40.8238799999,-73.9364700001,1001832.91627,239445.276737,Subway Station,SN 436,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10039,110,236,1023600,1060198,1020160100,1630 +MN,POINT (-73.91989899981846 40.868071999996566),10809,Free,Transit Wireless,Inwood-207 St (A),Inwood-207 St (A),40.868072,-73.9198989998,1006404.47438,255549.843937,Subway Station,SN 143,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN01,Marble Hill-Inwood,10,10034,112,293,1029300,0,0,1631 +QU,POINT (-73.81685900010265 40.7025659996691),10810,Free,Transit Wireless,Jamaica-Van Wyck (E),Jamaica-Van Wyck (E),40.7025659997,-73.8168590001,1035029.49653,195293.291878,Subway Station,SN 280,Queens,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,4,Queens,QN60,Kew Gardens,29,11418,409,216,4021600,0,0,1632 +BX,POINT (-73.8964350001594 40.81610399997348),10811,Free,Transit Wireless,IRT - Longwood Av (6),Longwood Av (6),40.816104,-73.8964350002,1012916.57094,236622.76893,Subway Station,SN 372,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX33,Longwood,8,10455,202,85,2008500,0,0,1633 +MN,POINT (-73.9899379999839 40.723401999838046),10812,Free,Transit Wireless,"Lower East Side-2 Av (F,V)",2 Av (F),40.7234019998,-73.989938,987039.020329,202831.556657,Subway Station,SN 232,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,3602,1003602,0,0,1634 +BX,POINT (-73.87885500037324 40.87481100011306),10813,Free,Transit Wireless,IND -Norwood - 205 Street (D) 6 Av Express,Norwood - 205 Street (D),40.8748110001,-73.8788550004,1017753.09374,258018.164788,Subway Station,SN 210,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX43,Norwood,11,10467,207,423,2042300,2018117,2033410044,1635 +BX,POINT (-73.88713800007902 40.87324400041857),10814,Free,Transit Wireless,IND - Bedford Park Blvd - Grand Concourse (B) (D),Bedford Park Blvd - Grand Concourse,40.8732440004,-73.8871380001,1015463.13671,257444.185621,Subway Station,SN 211,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,11,10458,207,413,2041300,0,0,1636 +BX,POINT (-73.8935090000331 40.86697799999945),10815,Free,Transit Wireless,IND - Kingbridge Road - Grand Concourse (B) (D),Kingbridge Road - Grand Concourse,40.866978,-73.893509,1013703.94797,255159.03107,Subway Station,SN 212,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,207,40302,2040302,0,0,1637 +BX,POINT (-73.9133999996555 40.839305999642455),10816,Free,Transit Wireless,IND - 170th Street - Grand Concourse (D),170th Street - Grand Concourse,40.8393059996,-73.9133999997,1008212.33986,245071.005643,Subway Station,SN 217,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX14,East Concourse-Concourse Village,14,10456,204,225,2022500,0,0,1638 +BX,POINT (-73.89054900017047 40.820948000324094),10817,Free,Transit Wireless,IRT - Hunts Point Avenue (6),Hunts Point Avenue (6),40.8209480003,-73.8905490002,1014543.59721,238389.592496,Subway Station,SN 425,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX27,Hunts Point,17,10459,202,119,2011900,0,0,1640 +MN,POINT (-73.96725799963136 40.762659999551964),10818,Free,Transit Wireless,"Lexington Ave - 59th St (N,R,W)/59 St (4,5,6)",Lexington Ave,40.7626599996,-73.9672579996,993320.195758,217136.031657,Subway Station,SN 7,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,11402,1011402,0,0,1641 +BX,POINT (-73.90522700003639 40.850410000409795),10819,Free,Transit Wireless,"Tremont Ave (B,D)",Tremont Ave,40.8504100004,-73.905227,1010469.4423,249118.950303,Subway Station,SN 215,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,205,23502,2023502,0,0,1642 +BX,POINT (-73.91013600050078 40.84589999983414),10820,Free,Transit Wireless,"174-175 Sts (B,D)",174th St,40.8458999998,-73.9101360005,1009113.02802,247474.355823,Subway Station,SN 216,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,14,10457,205,22701,2022701,0,0,1643 +BX,POINT (-73.9256510001247 40.82790499974786),10821,Free,Transit Wireless,"161 St-Yankee Stadium (B,D,4)",161st St,40.8279049997,-73.9256510001,1004825.99755,240914.087119,Subway Station,SN 219,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10452,204,195,2019500,0,0,1644 +MN,POINT (-73.96905499996542 40.75755199970355),10822,Free,Transit Wireless,Lexington Av-53rd St (E)/51 St (6),Lexington Ave - 53rd St,40.7575519997,-73.969055,992823.047803,215274.839185,Subway Station,SN 275,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,0,0,1645 +MN,POINT (-73.9679670004732 40.762526000304575),10823,Free,Transit Wireless,"Lexington Av (N,R,W)/59 St (4,5,6)",59th St,40.7625260003,-73.9679670005,993123.806059,217087.13871,Subway Station,SN 400,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10022,108,11402,1011402,0,0,1646 +MN,POINT (-73.97191999951555 40.75710699989287),10824,Free,Transit Wireless,Lexington Av -53 St (E)/51 St(6),51st St,40.7571069999,-73.9719199995,992029.376162,215112.443841,Subway Station,SN 401,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,105,100,1010000,0,0,1647 +BX,POINT (-73.89774899983657 40.86129599958292),10825,Free,Transit Wireless,"Fordham Rd (B,D)",Fordham Rd,40.8612959996,-73.8977489998,1012533.63929,253087.461394,Subway Station,SN 213,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX05,Bedford Park-Fordham North,15,10458,205,23702,2023702,0,0,1648 +BX,POINT (-73.90074099998832 40.85609299971913),10826,Free,Transit Wireless,"182-183 Sts (B,D)","182-183 Sts (B,D)",40.8560929997,-73.900741,1011708.17079,251190.857248,Subway Station,SN 214,Bronx,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX40,Fordham South,15,10457,205,38301,2038301,0,0,1650 +BK,POINT (-73.95687199949185 40.71730400012549),10827,Free,Transit Wireless,Bedford Avenue (L),Bedford Avenue (L),40.7173040001,-73.9568719995,996205.463282,200612.65099,Subway Station,SN 120,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11211,301,553,3055300,0,0,1651 +BK,POINT (-73.94405300012487 40.714565000321905),10828,Free,Transit Wireless,Graham Avenue (L),Graham Avenue (L),40.7145650003,-73.9440530001,999759.640229,199616.759609,Subway Station,SN 122,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,497,3049700,0,0,1652 +BK,POINT (-73.95444899997557 40.731352000098944),10829,Free,Transit Wireless,Greenpoint Avenue (G),Greenpoint Avenue (G),40.7313520001,-73.954449,996874.478676,205731.110897,Subway Station,SN 283,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,575,3057500,0,0,1653 +BK,POINT (-73.9512770001658 40.72463499996679),10830,Free,Transit Wireless,Nassau Avenue (G),Nassau Avenue (G),40.724635,-73.9512770002,997754.960839,203284.372352,Subway Station,SN 284,Brooklyn,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,569,3056900,0,0,1654 +MN,POINT (-73.99770200044834 40.72432900006462),10831,Free,Transit Wireless,"Prince St (N,R)","Prince St (N,R)",40.7243290001,-73.9977020004,984886.958688,203169.139643,Subway Station,SN 17,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10012,102,43,1004300,0,0,1655 +MN,POINT (-74.00290599973617 40.73342200014168),10832,Free,Transit Wireless,Christopher St-Sheridan Sq (1),Christopher St-Sheridan Sq (1),40.7334220001,-74.0029059997,983444.625943,206482.007689,Subway Station,SN 323,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,73,1007300,0,0,1656 +MN,POINT (-74.00536699943832 40.728250999829825),10833,Free,Transit Wireless,Houston St (1),Houston St (1),40.7282509998,-74.0053669994,982762.464577,204598.08298,Subway Station,SN 324,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10014,102,37,1003700,0,0,1657 +MN,POINT (-73.99262899960549 40.73032800029176),10834,Free,Transit Wireless,"8 St-New York University (N,R)","8 St-New York University (N,R)",40.7303280003,-73.9926289996,986292.90732,205354.83934,Subway Station,SN 16,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,2,10003,102,57,1005700,0,0,1658 +MN,POINT (-74.0017749996395 40.71952700015403),10835,Free,Transit Wireless,"Canal St (J,M,N,Q,R,Z,6)","Canal St (J,M,N,Q,R,Z,6)",40.7195270002,-74.0017749996,983757.970788,201419.619848,Subway Station,SN 18,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,47,1004700,0,0,1659 +MN,POINT (-74.00045999947389 40.71838299980546),10836,Free,Transit Wireless,"Canal St (J,M,N,Q,R,Z,6)","Canal St (J,M,N,Q,R,Z,6)",40.7183829998,-74.0004599995,984122.486136,201002.820813,Subway Station,SN 19,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,45,1004500,0,0,1660 +MN,POINT (-74.00697799974563 40.71328200037268),10837,Free,Transit Wireless,City Hall (R),City Hall (R),40.7132820004,-74.0069779997,982315.519933,199144.44789,Subway Station,SN 20,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,31,1003100,0,0,1661 +MN,POINT (-73.99391499953788 40.72027999975176),10838,Free,Transit Wireless,"Bowery (J,M,Z)","Bowery (J,M,Z)",40.7202799998,-73.9939149995,985936.740709,201694.014313,Subway Station,SN 103,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,0,0,1662 +MN,POINT (-73.99989199983482 40.718091999988374),10839,Free,Transit Wireless,"Canal St (J,M,N,Q,R,Z,6)","Canal St (J,M,N,Q,R,Z,6)",40.718092,-73.9998919998,984279.938248,200896.800356,Subway Station,SN 104,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,41,1004100,0,0,1663 +MN,POINT (-73.98612200019127 40.73284899968459),10840,Free,Transit Wireless,3 Av (L),3 Av (L),40.7328489997,-73.9861220002,988096.207191,206273.536978,Subway Station,SN 118,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,106,48,1004800,0,0,1664 +MN,POINT (-73.9816279997185 40.73095300037489),10841,Free,Transit Wireless,1 Av (L),1 Av (L),40.7309530004,-73.9816279997,989341.83823,205582.994396,Subway Station,SN 119,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,34,1003400,0,0,1665 +MN,POINT (-74.00049499988677 40.732338000444784),10842,Free,Transit Wireless,"West 4 St (A,B,C,D,E,F)","West 4 St (A,B,C,D,E,F)",40.7323380004,-74.0004949999,984112.812598,206087.05966,Subway Station,SN 167,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10014,102,71,1007100,0,0,1666 +MN,POINT (-74.00373899962125 40.726227000392576),10843,Free,Transit Wireless,"Spring St (C,E)","Spring St (C,E)",40.7262270004,-74.0037389996,983213.654948,203860.65368,Subway Station,SN 168,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,3,10012,102,49,1004900,0,0,1667 +MN,POINT (-74.00522899997527 40.72082400007129),10844,Free,Transit Wireless,"Canal St (A,C,E)","Canal St (A,C,E)",40.7208240001,-74.005229,982800.551443,201892.195019,Subway Station,SN 169,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,0,0,1668 +MN,POINT (-74.00858499961443 40.714110999853865),10845,Free,Transit Wireless,"Chambers St-WTC (A,C,E)/Park Pl (2,3)","Chambers St-WTC (A,C,E)/Park Pl (2,3)",40.7141109999,-74.0085849996,981870.048055,199446.517167,Subway Station,SN 170,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,0,0,1669 +MN,POINT (-74.00978100031982 40.71258199967211),10846,Free,Transit Wireless,World Trade Center,World Trade Center,40.7125819997,-74.0097810003,981538.427983,198889.490722,Subway Station,SN 171,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,0,0,1670 +MN,POINT (-73.99375300031942 40.718266999549975),10847,Free,Transit Wireless,"Grand St (B,D)","Grand St (B,D)",40.7182669996,-73.9937530003,985981.698624,200960.619782,Subway Station,SN 231,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,18,1001800,0,0,1671 +MN,POINT (-74.00627700017498 40.72285399958887),10848,Free,Transit Wireless,Canal St (1),Canal St (1),40.7228539996,-74.0062770002,982510.104846,202631.805416,Subway Station,SN 325,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,37,1003700,0,0,1672 +MN,POINT (-74.00688600040384 40.71931800040177),10849,Free,Transit Wireless,Franklin St (1),Franklin St (1),40.7193180004,-74.0068860004,982341.197375,201343.544869,Subway Station,SN 326,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,101,33,1003300,0,0,1673 +MN,POINT (-74.00926600051766 40.71547800011337),10850,Free,Transit Wireless,"Chambers St (1,2,3)","Chambers St (1,2,3)",40.7154780001,-74.0092660005,981681.312212,199944.576211,Subway Station,SN 327,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,0,0,1674 +MN,POINT (-74.01378300001427 40.70751300042241),10851,Free,Transit Wireless,Rector St (1),Rector St (1),40.7075130004,-74.013783,980428.669048,197042.850387,Subway Station,SN 329,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10006,101,13,1001300,0,0,1675 +MN,POINT (-74.0088109999737 40.71305099997817),10852,Free,Transit Wireless,"Chambers St-WTC (A,C,E)/Park Pl (2,3)","Chambers St-WTC (A,C,E)/Park Pl (2,3)",40.713051,-74.008811,981807.356908,199060.333228,Subway Station,SN 331,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10007,101,21,1002100,0,0,1676 +MN,POINT (-74.00909999962589 40.70682099975328),10853,Free,Transit Wireless,"Wall St (2,3)","Wall St (2,3)",40.7068209998,-74.0090999996,981727.002738,196790.564146,Subway Station,SN 333,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN25,Battery Park City-Lower Manhattan,1,10005,101,7,1000700,0,0,1677 +MN,POINT (-73.99714100006673 40.72230099999366),10854,Free,Transit Wireless,Spring St (6),Spring St (6),40.722301,-73.9971410001,985042.480687,202430.281213,Subway Station,SN 409,New York,TransitWirelessWiFi,,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10012,102,45,1004500,0,0,1678 +BX,POINT (-73.92269999988284 40.8284679996201),10855,Limited Free,ALTICEUSA,Joyce Kilmer Park,Top center,40.8284679996,-73.9226999999,1005642.50215,241119.915448,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1321 +BX,POINT (-73.92307499993285 40.82805700044313),10856,Limited Free,ALTICEUSA,Joyce Kilmer Park,Left center,40.8280570004,-73.9230749999,1005538.85374,240970.082086,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1322 +BX,POINT (-73.9226770004607 40.82783099988047),10857,Limited Free,ALTICEUSA,Joyce Kilmer Park,right center,40.8278309999,-73.9226770005,1005649.07202,240887.838812,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1323 +BX,POINT (-73.923007999642 40.82744099973921),10858,Limited Free,ALTICEUSA,Joyce Kilmer Park,bottom right of fountain,40.8274409997,-73.9230079996,1005557.5932,240745.666852,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1324 +BX,POINT (-73.92363099949647 40.82756299979443),10859,Limited Free,ALTICEUSA,Joyce Kilmer Park,bottom left of fountain,40.8275629998,-73.9236309995,1005385.13882,240789.964992,Outdoor,3 free 10 min sessions,Bronx,GuestWiFi,,09/09/9999 12:00:00 AM +0000,2,Bronx,BX63,West Concourse,8,10451,204,195,2019500,0,2024690001,1325 +QU,POINT (-73.80905000017083 40.77122899977465),10860,Limited Free,SPECTRUM,Bowne Park,155th St between 29th Ave and 32nd Ave,40.7712289998,-73.8090500002,1037140.16258,220313.953779,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,19,11354,407,1151,4115100,0,0,1326 +QU,POINT (-73.80874799966239 40.7697510000437),10861,Limited Free,SPECTRUM,Bowne Park,32nd Ave between 155th and 156th St,40.769751,-73.8087479997,1037224.98754,219775.653018,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,19,11354,407,1151,4115100,0,0,1327 +QU,POINT (-73.80750799982962 40.76965200017256),10862,Limited Free,SPECTRUM,Bowne Park,32nd Ave between 155th and 156th St,40.7696520002,-73.8075079998,1037568.53443,219740.336488,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,19,11354,407,1151,4115100,0,0,1328 +QU,POINT (-73.80596799982129 40.76953600017423),10863,Limited Free,SPECTRUM,Bowne Park,32nd Ave between 155th and 156th St,40.7695360002,-73.8059679998,1037995.19335,219699.015048,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,19,11358,407,1151,4115100,0,0,1329 +QU,POINT (-73.80550699950203 40.77053199970091),10864,Limited Free,SPECTRUM,Bowne Park,159th St between 29th Ave and 32nd Ave,40.7705319997,-73.8055069995,1038122.08056,220062.173114,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN51,Murray Hill,19,11354,407,1151,4115100,0,0,1330 +MN,POINT (-73.98422199978422 40.75444699980091),10865,Limited Free,SPECTRUM,Bryant Park,Back of library - Corner of 6th Ave by Jose Bonifacio de Andrada e Silva Monument,40.7544469998,-73.9842219998,988621.363949,214142.466122,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,0,1331 +BK,POINT (-73.99880000015601 40.69430000012529),10866,Free,AT&T,Brooklyn Heights Promenade,Near Montague St and Brooklyn Queens Expressway,40.6943000001,-73.9988000002,984582.765399,192228.662509,Outdoor,,Brooklyn,attwifi,,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK09,Brooklyn Heights-Cobble Hill,33,11201,302,301,3000301,0,3002520007,1332 +MN,POINT (-73.98309400047536 40.75431700040152),10867,Limited Free,SPECTRUM,Bryant Park,Back of library - 2nd St between 5th Ave and 6th Ave,40.7543170004,-73.9830940005,988933.890227,214095.161426,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,0,1333 +MN,POINT (-73.98396400023664 40.75316399959561),10868,Limited Free,SPECTRUM,Bryant Park,Back of library - 40th St between 5th Ave and 6th Ave,40.7531639996,-73.9839640002,988692.929422,213675.040547,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,0,1334 +MN,POINT (-73.98476899963681 40.753689000019264),10869,Limited Free,SPECTRUM,Bryant Park,Back of library - Corner of 6th Ave by 40th St,40.753689,-73.9847689996,988469.863268,213866.275401,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,0,1335 +MN,POINT (-73.98164000030741 40.75277600026659),10870,Limited Free,SPECTRUM,Bryant Park,Front library off 5th Ave between 42nd St and 40th St,40.7527760003,-73.9816400003,989336.845786,213533.80625,Outdoor,3 free 10 min sessions,New York,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10018,105,84,1008400,0,1012570001,1336 +BK,POINT (-73.9953819995043 40.68062999975837),10871,Limited Free,SPECTRUM,Carroll Park,Court off Smith St between Carrol St and 1st Place,40.6806299998,-73.9953819995,985530.855038,187248.314202,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,77,3007700,3007547,3004490015,1337 +BK,POINT (-73.9953819995043 40.68062999975837),10872,Limited Free,SPECTRUM,Carroll Park,Court off Smith St between Carrol St and 1st Place,40.6806299998,-73.9953819995,985530.855038,187248.314202,Outdoor TWC Aerial,3 free 10 min sessions,Brooklyn,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,77,3007700,3007547,3004490015,1338 +QU,POINT (-73.82472000005984 40.75141000007057),10873,Limited Free,SPECTRUM,Kissena Park,Park Perimeter,40.7514100001,-73.8247200001,1032814.27228,213084.183133,Outdoor TWC Aerial,3 free 10 min sessions,Queens,GuestWiFi,0,09/09/9999 12:00:00 AM +0000,4,Queens,QN62,Queensboro Hill,20,11355,407,837,4083700,0,4051560001,1339 +MN,POINT (-73.94465899972445 40.81889699977109),12014,Free,LinkNYC - Citybridge,mn-10-119890,2604 FREDERICK DOUGLASS BLVD,40.8188969998,-73.9446589997,999567.630442,237628.251827,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011971,10/21/2016 12:00:00 AM +0000,1,Manhattan,MN03,Central Harlem North-Polo Grounds,9,10030,110,230,1023000,1060322,1020240060,4101 +MN,POINT (-73.9484220401427 40.82966241990998),12015,Free,LinkNYC - Citybridge,mn-09-120355,600 WEST 150 STREET,40.8296624199,-73.9484220401,998523.763107,241549.849955,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011980,12/16/2016 12:00:00 AM +0000,1,Manhattan,MN04,Hamilton Heights,7,10031,109,233,1023300,1062444,1020960030,4102 +MN,POINT (-73.9859719702034 40.743493170007476),12016,Free,LinkNYC - Citybridge,mn-05-121626,63 MADISON AVENUE,40.74349317,-73.9859719702,988137.166098,210151.551203,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011982,12/09/2016 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,2,10016,105,56,1005600,1016889,1008570020,4103 +MN,POINT (-73.9538487752663 40.8112048322344),12017,Free,LinkNYC - Citybridge,mn-09-120493,380 W 125 ST,40.8112048322,-73.9538487753,997025.503308,234824.24628,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-011998,08/30/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,9,10027,109,209,1020901,1087468,1019510000,4104 +BK,POINT (-73.9548860003345 40.73340000009875),12018,Free,LinkNYC - Citybridge,bk-01-125263,1007 MANHATTAN AVENUE,40.7334000001,-73.9548860003,996752.979575,206477.198644,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012012,04/14/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,563,3056300,3064146,3025220040,4105 +MN,POINT (-73.93958899958491 40.83558600041894),12019,Free,LinkNYC - Citybridge,mn-12-120468,450 WEST 162 STREET,40.8355860004,-73.9395889996,1000966.74346,243709.591043,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012026,12/12/2016 12:00:00 AM +0000,1,Manhattan,MN36,Washington Heights South,10,10032,112,243,1024301,1062575,1021090090,4106 +BK,POINT (-73.94594832056107 40.71444573987365),12020,Free,LinkNYC - Citybridge,bk-01-126861,691 METROPOLITAN AVENUE,40.7144457399,-73.9459483206,999234.245938,199572.979513,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012038,04/24/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,497,3049700,3068728,3027590000,4107 +BX,POINT (-73.91648285022625 40.81667906980972),12021,Free,LinkNYC - Citybridge,bx-01-118956,2882 3 AVENUE,40.8166790698,-73.9164828502,1007367.17095,236826.361699,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012080,12/22/2016 12:00:00 AM +0000,2,Bronx,BX34,Melrose South-Mott Haven North,17,10455,201,71,2007100,2001159,2023620000,4108 +MN,POINT (-73.96127852954392 40.801247240194584),12022,Free,LinkNYC - Citybridge,mn-07-137419,1003 COLUMBUS AVE,40.8012472402,-73.9612785295,994970.415227,231195.347698,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012113,02/28/2018 12:00:00 AM +0000,1,Manhattan,MN09,Morningside Heights,7,10025,107,193,1019300,1055740,1018450000,4109 +BK,POINT (-73.94420600004447 40.71391300044427),12023,Free,LinkNYC - Citybridge,bk-01-140788,326 AVENUE OF PUERTO RICO,40.7139130004,-73.944206,999717.376862,199379.189218,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-012117,04/28/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11211,301,497,3049700,3322922,3027650000,4110 +BX,POINT (-73.9019509996292 40.846168999980385),12024,Free,LinkNYC - Citybridge,bx-05-138759,1831 WEBSTER AVENUE,40.846169,-73.9019509996,1011377.49396,247574.791645,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012120,08/01/2017 12:00:00 AM +0000,2,Bronx,BX41,Mount Hope,15,10457,205,231,2023100,2009388,2028920080,4111 +BX,POINT (-73.9196247799666 40.81336699975831),12025,Free,LinkNYC - Citybridge,bx-01-138788,426 WILLIS AVENUE,40.8133669998,-73.91962478,1006498.60641,235618.842788,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012130,04/13/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,43,2004300,2098220,2022890000,4112 +BX,POINT (-73.9214341700942 40.810896490405206),12026,Free,LinkNYC - Citybridge,bx-01-138789,312 WILLIS AVENUE,40.8108964904,-73.9214341701,1005998.55787,234718.294065,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012132,04/20/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,39,2003900,2000335,2022850010,4113 +MN,POINT (-73.94676200047624 40.800070000385915),12027,Free,LinkNYC - Citybridge,mn-11-100200,1403 5 AVENUE,40.8000700004,-73.9467620005,998989.717556,230768.547699,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012163,01/25/2017 12:00:00 AM +0000,1,Manhattan,MN34,East Harlem North,9,10029,111,184,1018400,1051634,1016210000,4114 +BX,POINT (-73.91646686977208 40.81216272025656),12028,Free,LinkNYC - Citybridge,bx-01-131467,436 BROOK AVENUE,40.8121627203,-73.9164668698,1007373.16339,235180.898782,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Bronx,LinkNYC Free Wi-Fi,LINK-012172,05/31/2018 12:00:00 AM +0000,2,Bronx,BX39,Mott Haven-Port Morris,8,10454,201,43,2004300,2090996,2022710010,4115 +MN,POINT (-73.9935129999798 40.7368059995634),12029,Free,LinkNYC - Citybridge,mn-05-137100,10 WEST 15 STREET,40.7368059996,-73.993513,986047.727692,207714.958308,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012181,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10011,105,54,1005400,1078686,1008160030,4116 +MN,POINT (-73.9818807495442 40.76220989996661),12030,Free,LinkNYC - Citybridge,mn-05-137157,159 WEST 52 STREET,40.7622099,-73.9818807495,989269.432535,216970.869586,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012188,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10019,105,131,1013100,1023159,1010050000,4117 +MN,POINT (-73.99208429055659 40.74370550016118),12031,Free,LinkNYC - Citybridge,mn-05-138006,750 6 AVENUE,40.7437055002,-73.9920842906,986443.435562,210228.697703,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012216,12/04/2017 12:00:00 AM +0000,1,Manhattan,MN13,Hudson Yards-Chelsea-Flatiron-Union Square,3,10010,105,58,1005800,1085951,1008260000,4118 +MN,POINT (-73.9773059998757 40.75023700014764),12032,Free,LinkNYC - Citybridge,mn-06-138539,124 EAST 40 STREET,40.7502370001,-73.9773059999,990537.869302,212609.047929,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012224,10/06/2017 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,4,10016,106,80,1008000,1019491,1008950080,4119 +MN,POINT (-73.98344153026568 40.76686128975164),12033,Free,LinkNYC - Citybridge,mn-04-136625,306 WEST 57 STREET,40.7668612898,-73.9834415303,988836.741471,218665.438703,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012227,07/13/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1025451,1010477500,4120 +MN,POINT (-73.99764592046444 40.716652390007965),12034,Free,LinkNYC - Citybridge,mn-03-133426,178 CANAL STREET,40.71665239,-73.9976459205,984902.578079,200372.315184,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012235,12/14/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10013,103,29,1002900,1002410,1002010010,4121 +MN,POINT (-73.9525943999046 40.778140819940305),12035,Free,LinkNYC - Citybridge,mn-08-134746,238 EAST 86 STREET,40.7781408199,-73.9525943999,997379.256538,222778.067617,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012236,02/01/2017 12:00:00 AM +0000,1,Manhattan,MN32,Yorkville,5,10028,108,146,1014601,1000000,1015310030,4122 +MN,POINT (-73.99757800028353 40.71686900000284),12036,Free,LinkNYC - Citybridge,mn-02-133430,183 CANAL STREET,40.716869,-73.9975780003,984921.404157,200451.233334,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012249,12/15/2016 12:00:00 AM +0000,1,Manhattan,MN24,SoHo-TriBeCa-Civic Center-Little Italy,1,10013,102,41,1004100,1002628,1002040040,4123 +MN,POINT (-73.98773840022203 40.73809687987975),12037,Free,LinkNYC - Citybridge,mn-05-137241,245 PARK AVENUE SOUTH,40.7380968799,-73.9877384002,987647.963665,208185.43801,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012255,05/24/2018 12:00:00 AM +0000,1,Manhattan,MN21,Gramercy,2,10003,105,50,1005000,1017945,1008750080,4124 +MN,POINT (-73.9810610704591 40.74705459029897),12038,Free,LinkNYC - Citybridge,mn-06-133555,99 EAST 34 STREET,40.7470545903,-73.9810610705,989497.695529,211449.346508,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012278,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,72,1007200,1017084,1008900000,4125 +MN,POINT (-73.99021009744774 40.76668319484208),12039,Free,LinkNYC - Citybridge,mn-04-137195,455 WEST 53 STREET,40.7666831948,-73.9902100974,986961.837084,218600.270854,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012291,05/16/2018 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,133,1013300,1026754,1010630000,4126 +MN,POINT (-73.96321301007582 40.76197660000901),12040,Free,LinkNYC - Citybridge,mn-08-135943,1164 2 AVENUE,40.7619766,-73.9632130101,994440.844108,216887.491472,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012298,02/16/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,110,1011000,1084255,1014360000,4127 +MN,POINT (-73.9565365999894 40.767281939827),12041,Free,LinkNYC - Citybridge,mn-08-136195,1331 1 AVENUE,40.7672819398,-73.9565366,996289.404387,218821.248759,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012299,01/12/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10021,108,126,1012600,1044862,1014460020,4128 +MN,POINT (-73.98908323000471 40.72048554003127),12042,Free,LinkNYC - Citybridge,mn-03-137173,145 ORCHARD STREET,40.72048554,-73.98908323,987276.080878,201769.028926,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012317,12/28/2016 12:00:00 AM +0000,1,Manhattan,MN27,Chinatown,1,10002,103,30,1003001,1005535,1004160070,4129 +MN,POINT (-73.98593571966606 40.746719760007004),12043,Free,LinkNYC - Citybridge,mn-05-136688,302 5 AVENUE,40.74671976,-73.9859357197,988147.022378,211327.102658,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012325,05/10/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10001,105,76,1007600,1015816,1008330040,4130 +MN,POINT (-73.96335361946097 40.76214654029854),12044,Free,LinkNYC - Citybridge,mn-08-137966,1165 2 AVENUE,40.7621465403,-73.9633536195,994401.866167,216949.38997,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012326,02/22/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,4,10065,108,110,1011000,1043796,1014160020,4131 +MN,POINT (-73.9669949995206 40.76341900012324),12045,Free,LinkNYC - Citybridge,mn-08-135937,141 EAST 61 STREET,40.7634190001,-73.9669949995,993392.94791,217412.587862,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012328,06/22/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,114,1011402,1041977,1013960020,4132 +MN,POINT (-73.98948973668573 40.767663120756275),12046,Free,LinkNYC - Citybridge,mn-04-136184,826 10 AVENUE,40.7676631208,-73.9894897367,987161.336685,218957.313447,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012330,11/01/2017 12:00:00 AM +0000,1,Manhattan,MN15,Clinton,3,10019,104,139,1013900,1026807,1010640060,4133 +MN,POINT (-73.97082300052101 40.76409699983041),12047,Free,LinkNYC - Citybridge,mn-08-135983,20 EAST 60 STREET,40.7640969998,-73.9708230005,992332.444125,217659.229101,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012333,05/19/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10022,108,114,1011401,1040761,1013740050,4134 +MN,POINT (-73.95313791054862 40.771526350287466),12048,Free,LinkNYC - Citybridge,mn-08-120850,1494 1 AVENUE,40.7715263503,-73.9531379105,997230.017335,220368.113775,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012360,05/10/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10075,108,132,1013200,1046006,1014720050,4135 +MN,POINT (-73.96518955951765 40.75499065028639),12049,Free,LinkNYC - Citybridge,mn-06-121677,944 1 AVENUE,40.7549906503,-73.9651895595,993894.305831,214342.058242,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012363,05/09/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,86,1008603,1081200,1013630050,4136 +MN,POINT (-73.96543425009642 40.75508069976637),12050,Free,LinkNYC - Citybridge,mn-06-121676,943 1 AVENUE,40.7550806998,-73.9654342501,993826.500848,214374.839345,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012365,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN19,Turtle Bay-East Midtown,4,10022,106,98,1009800,1039661,1013440030,4137 +MN,POINT (-73.9675969996964 40.76864899972358),12051,Free,LinkNYC - Citybridge,mn-08-121133,793 MADISON AVENUE,40.7686489997,-73.9675969997,993225.478756,219317.987267,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012370,06/09/2017 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10065,108,122,1012200,1041213,1013820020,4138 +MN,POINT (-73.99799011954724 40.73598355995053),12052,Free,LinkNYC - Citybridge,mn-02-123120,475 6 AVENUE,40.73598356,-73.9979901195,984807.000515,207415.257463,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012372,06/12/2018 12:00:00 AM +0000,1,Manhattan,MN23,West Village,3,10011,102,71,1007100,1010577,1006070040,4139 +MN,POINT (-73.95920162947911 40.76321776976707),12053,Free,LinkNYC - Citybridge,mn-08-120945,1200 1 AVENUE,40.7632177698,-73.9592016295,995551.878303,217340.182495,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012375,03/06/2018 12:00:00 AM +0000,1,Manhattan,MN31,Lenox Hill-Roosevelt Island,5,10065,108,116,1011600,1083904,1014590000,4140 +MN,POINT (-73.984309089996 40.7294490803858),12054,Free,LinkNYC - Citybridge,mn-03-136971,344 EAST 11 STREET,40.7294490804,-73.98430909,988598.866618,205034.924954,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012396,04/04/2018 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10003,103,40,1004000,1006449,1004520030,4141 +MN,POINT (-73.9782582898303 40.757406799696916),12055,Free,LinkNYC - Citybridge,mn-05-122200,7 WEST 48 STREET,40.7574067997,-73.9782582898,990273.368191,215221.171313,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012405,10/20/2017 12:00:00 AM +0000,1,Manhattan,MN17,Midtown-Midtown South,4,10020,105,96,1009600,1034506,1012640030,4142 +MN,POINT (-73.96372269037397 40.774497529947276),12056,Free,LinkNYC - Citybridge,mn-08-121038,29 EAST 76 STREET,40.7744975299,-73.9637226904,994297.761717,221449.222506,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012406,04/10/2018 12:00:00 AM +0000,1,Manhattan,MN40,Upper East Side-Carnegie Hill,4,10021,108,130,1013000,1041796,1013910010,4143 +MN,POINT (-73.98610432958675 40.72630382038093),12057,Free,LinkNYC - Citybridge,mn-03-123797,410 EAST 6 STREET,40.7263038204,-73.9861043296,988101.482771,203888.924949,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012424,05/30/2017 12:00:00 AM +0000,1,Manhattan,MN22,East Village,2,10009,103,32,1003200,1077557,1004320000,4144 +MN,POINT (-73.97730731967754 40.74303942000836),12058,Free,LinkNYC - Citybridge,mn-06-121430,563 2 AVE,40.74303942,-73.9773073197,990538.18295,209986.738869,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012438,05/17/2018 12:00:00 AM +0000,1,Manhattan,MN20,Murray Hill-Kips Bay,2,10016,106,70,1007000,1082149,1009120030,4145 +MN,POINT (-73.93292644041306 40.85024849978256),12059,Free,LinkNYC - Citybridge,mn-12-119814,1456 ST NICHOLAS AVENUE,40.8502484998,-73.9329264404,1002806.29522,249053.030159,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",New York,LinkNYC Free Wi-Fi,LINK-012443,03/09/2018 12:00:00 AM +0000,1,Manhattan,MN35,Washington Heights North,10,10033,112,269,1026900,1063652,1021540040,4146 +BK,POINT (-73.94208999972098 40.70099000032465),12060,Free,LinkNYC - Citybridge,bk-01-126659,4 PUERTO RICO AVENUE,40.7009900003,-73.9420899997,1000307.0932,194671.333148,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000001,04/04/2018 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3326061,3031270000,3015 +BK,POINT (-73.94248859008586 40.70166753027929),12061,Free,LinkNYC - Citybridge,bk-01-138951,15 DEBEVOISE STREET,40.7016675303,-73.9424885901,1000196.41134,194918.104636,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000002,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071604,3031190030,3016 +BK,POINT (-73.94216928256138 40.701542193705464),12062,Free,LinkNYC - Citybridge,bk-01-109091,24 AVENUE OF PUERTO RICO,40.7015421937,-73.9421692826,1000284.9771,194872.499084,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000003,08/03/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071658,3031270010,3017 +BK,POINT (-73.94223923807927 40.70193034413621),12063,Free,LinkNYC - Citybridge,bk-01-143982,32 GRAHAM AVENUE,40.7019303441,-73.9422392381,1000265.48699,195013.901033,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000004,08/02/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3071609,3031200000,3018 +BK,POINT (-73.94291757943454 40.70506041966139),12064,Free,LinkNYC - Citybridge,bk-01-109262,101 AVENUE OF PUERTO RICO,40.7050604197,-73.9429175794,1000076.6583,196154.15761,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000005,05/23/2017 12:00:00 AM +0000,3,Brooklyn,BK90,East Williamsburg,34,11206,301,491,3049100,3325892,3030880020,3019 +BK,POINT (-73.95592438643467 40.640666226395766),12065,Free,LinkNYC - Citybridge,bk-14-126536,1216 FLATBUSH AVENUE,40.6406662264,-73.9559243864,996482.198949,172691.436491,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000019,05/10/2018 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,40,11226,314,516,3051602,3119589,3051860030,3020 +BK,POINT (-73.95360323775026 40.63855960884127),12066,Free,LinkNYC - Citybridge,bk-17-126527,1339 FLATBUSH AVENUE,40.6385596088,-73.9536032378,997126.788211,171924.271359,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000022,05/11/2018 12:00:00 AM +0000,3,Brooklyn,BK95,Erasmus,45,11226,317,790,3079000,3120360,3052110060,3021 +BK,POINT (-73.94678067437515 40.632134775138866),12067,Free,LinkNYC - Citybridge,bk-14-126509,1591 FLATBUSH AVENUE,40.6321347751,-73.9467806744,999021.71946,169584.608387,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000025,06/18/2018 12:00:00 AM +0000,3,Brooklyn,BK42,Flatbush,45,11210,314,786,3078600,3205905,3075580030,3022 +BK,POINT (-73.95343899961397 40.72813299990432),12068,Free,LinkNYC - Citybridge,bk-01-125268,817 Manhattan Ave,40.7281329999,-73.9534389996,997155.024047,204558.476103,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000027,04/14/2017 12:00:00 AM +0000,3,Brooklyn,BK76,Greenpoint,33,11222,301,561,3056100,3065107,3025730020,3023 +BK,POINT (-73.95786907949261 40.717770240131806),12069,Free,LinkNYC - Citybridge,bk-01-140988,182 Bedford Ave,40.7177702401,-73.9578690795,995928.982208,200782.38195,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000029,01/29/2019 12:00:00 AM +0000,3,Brooklyn,BK73,North Side-South Side,33,11249,301,553,3055300,3062079,3023270020,3024 +BK,POINT (-73.98193576969966 40.67455551016441),12070,Free,LinkNYC - Citybridge,bk-06-125931,270 5 AVENUE,40.6745555102,-73.9819357697,989260.776384,185035.686081,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000031,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,133,3013300,3020591,3009640040,3025 +BK,POINT (-73.9797379904319 40.67761961035692),12071,Free,LinkNYC - Citybridge,bk-06-125930,168 5 AVENUE,40.6776196104,-73.9797379904,989870.15279,186152.158914,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000032,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11217,306,131,3013100,3019560,3009490040,3026 +BK,POINT (-73.9740600005033 40.67956799967155),12072,Free,LinkNYC - Citybridge,bk-08-125716,271 FLATBUSH AVENUE,40.6795679997,-73.9740600005,991444.8688,186862.42849,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000034,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11217,308,161,3016100,3250935,3011507500,3027 +BK,POINT (-73.97437145677497 40.67963858424794),12073,Free,LinkNYC - Citybridge,bk-06-126514,248 FLATBUSH AVENUE,40.6796385842,-73.9743714568,991358.47396,186888.119056,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000035,01/16/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,39,11217,306,161,3016100,3018773,3009360010,3028 +BK,POINT (-73.97325277710388 40.67845279420974),12074,Free,LinkNYC - Citybridge,bk-08-126502,307 FLATBUSH AVENUE,40.6784527942,-73.9732527771,991668.889022,186456.194395,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000036,03/08/2018 12:00:00 AM +0000,3,Brooklyn,BK64,Prospect Heights,35,11217,308,161,3016100,3028698,3011570020,3029 +BK,POINT (-73.99035300051992 40.66417599979754),12075,Free,LinkNYC - Citybridge,bk-07-125916,601 5 AVENUE,40.6641759998,-73.9903530005,986926.36537,181253.766807,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000039,07/25/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,307,141,3014100,3330599,3010530000,3030 +BK,POINT (-73.98695629045304 40.668533230268864),12076,Free,LinkNYC - Citybridge,bk-06-125910,462 5 AVENUE,40.6685332303,-73.9869562905,987868.477659,182841.350903,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000040,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,139,3013900,3000000,3010160040,3031 +BK,POINT (-73.98631699950911 40.66901799989563),12077,Free,LinkNYC - Citybridge,bk-06-125626,445 5 AVENUE,40.6690179999,-73.9863169995,988045.796858,183017.993266,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000041,06/05/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,139,3013900,3000000,3010110010,3032 +BK,POINT (-73.98595803999021 40.66973104965745),12078,Free,LinkNYC - Citybridge,bk-06-125921,426 5 AVENUE,40.6697310497,-73.98595804,988145.334061,183277.793271,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000042,04/03/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,137,3013700,3022092,3010040040,3033 +BK,POINT (-73.98278899996136 40.67353400038258),12079,Free,LinkNYC - Citybridge,bk-06-117250,304 5 AVENUE,40.6735340004,-73.982789,989024.174823,184663.473243,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000043,08/15/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,39,11215,306,135,3013500,3020782,3009690050,3034 +BK,POINT (-73.9770060002236 40.68362500041776),12080,Free,LinkNYC - Citybridge,bk-02-126505,620 ATLANTIC AVENUE,40.6836250004,-73.9770060002,990627.361249,188340.282818,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000044,07/25/2017 12:00:00 AM +0000,3,Brooklyn,BK37,Park Slope-Gowanus,35,11217,302,129,3012901,3348849,3020017500,3035 +BK,POINT (-73.98061299986409 40.688850999702765),12081,Free,LinkNYC - Citybridge,bk-02-126565,605 FULTON STREET,40.6888509997,-73.9806129999,989626.542385,190244.024417,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000045,01/20/2017 12:00:00 AM +0000,3,Brooklyn,BK68,Fort Greene,35,11201,302,33,3003300,3058594,3020930000,3036 +BK,POINT (-73.98086658959652 40.68521832983276),12082,Free,LinkNYC - Citybridge,bk-02-125833,46 3Rd Ave,40.6852183298,-73.9808665896,989556.504139,188920.521487,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000046,01/08/2018 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,39,3003900,3000981,3001850030,3037 +BK,POINT (-73.98496961348239 40.68681156940765),12083,Free,LinkNYC - Citybridge,bk-02-108355,402 Atlantic Avenue,40.6868115694,-73.9849696135,988418.462452,189500.763109,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000047,02/01/2018 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11217,302,41,3004100,3255607,3001837500,3038 +BK,POINT (-73.99314691026974 40.6879008003403),12084,Free,LinkNYC - Citybridge,bk-02-126166,181 Court Street,40.6879008003,-73.9931469103,986150.575255,189897.318418,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000049,01/05/2018 12:00:00 AM +0000,3,Brooklyn,BK38,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill,33,11201,302,43,3004300,3002846,3002800020,3039 +BK,POINT (-73.9945262011057 40.68538975600422),12085,Free,LinkNYC - Citybridge,bk-06-126392,252 COURT STREET,40.685389756,-73.9945262011,985768.112109,188982.44492,Outdoor Kiosk,"Tablet Internet -phone , Free 1 GB Wi-FI Service",Brooklyn,LinkNYC Free Wi-Fi,LINK-000051,11/21/2017 12:00:00 AM +0000,3,Brooklyn,BK33,Carroll Gardens-Columbia Street-Red Hook,39,11231,306,67,3006700,3336007,3003260040,3040 diff --git a/data/nyc_hot_spot2.csv b/data/nyc_hot_spot2.csv new file mode 100644 index 00000000..19c64396 --- /dev/null +++ b/data/nyc_hot_spot2.csv @@ -0,0 +1,3320 @@ +type,provider,latitude,longitude,city,activated,borough_code,borough +Free,LinkNYC - Citybridge,40.684060839699995,-73.8705374096,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6846250902,-73.86897452699999,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6847015539,-73.86830878949999,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6851309404,-73.8667773299,Brooklyn,12/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6764746696,-73.8971674505,Brooklyn,02/06/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.677221650199996,-73.8974635303,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6769941203,-73.89835842,Brooklyn,01/22/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6770425302,-73.8992120797,Brooklyn,01/16/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6775400004,-73.9019513697,Brooklyn,01/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6778949796,-73.90299004970001,Brooklyn,01/16/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6778615496,-73.9043006705,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.67784547,-73.9059013106,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6512299704,-73.94206208,Brooklyn,07/27/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.650947490300005,-73.94554462949999,Brooklyn,10/30/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6509619998,-73.9478340004,Brooklyn,10/30/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6487330002,-73.9524139996,Brooklyn,02/28/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6486891904,-73.9559619698,Brooklyn,10/12/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6486071201,-73.95781959029999,Brooklyn,03/01/2019 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7181870001,-73.9596884103,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,Harlem,40.814105,-73.9404430002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8239255499,-73.90854944029999,Bronx,05/31/2018 12:00:00 AM +0000,2,Bronx +Free,Fiberless,40.6927500003,-74.0162,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6927199996,-74.01578000020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6887299999,-74.0173300004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6925299998,-74.0145400001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6902299998,-74.0146499995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6901699999,-74.01443999989999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6895899998,-74.0133999997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6893400002,-74.0146699994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6885699998,-74.0147000004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6927399998,-74.0147700003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6885999996,-74.0145499996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.692310000300004,-74.0147499997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6903200191,-74.013139996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6904099998,-74.0176699999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6891999996,-74.0169600001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6903199996,-74.0133099996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.686550000100006,-74.0209800004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6884600004,-74.0225500005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6892299996,-74.0218499996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.687260000100004,-74.02251,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6863000004,-74.02401999979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.658384999999996,-73.8875829994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.825695999699995,-73.9273109998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8258150004,-73.9277309995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8259470001,-73.9281340004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8261030003,-73.9285369996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8263779996,-73.929249,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.826566999899995,-73.92676200060001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8270699998,-73.9264609997,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.827868,-73.9269030006,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.828149000100005,-73.92745700020001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.827901999699996,-73.9283560001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8277990001,-73.92856500020001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.577759999899996,-73.94556000029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.577979999600004,-73.9435500001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5769599998,-73.94358999939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5768699999,-73.9445900006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5781699999,-73.9418199995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5782900004,-73.9409099997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5784300002,-73.9390699999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5783799996,-73.93991999949999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5781099996,-73.94273000000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5778700002,-73.9446,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5762200004,-73.94552,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5760999997,-73.9469799995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5769599998,-73.94358999939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Fiberless,40.6851699998,-74.0252600002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.5769599998,-73.94358999939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5768699999,-73.9445900006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.7025399998,-73.9238159997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.703041000300004,-73.9236280006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Chelsea,40.7415832891,-74.0047109131,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7410467844,-74.001803398,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.743631720100005,-74.0059179066,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7421021446,-74.00421107529999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8100140004,-73.93755299979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.795988,-73.9474260006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8075429999,-73.95279300029999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.811041999699995,-73.94140400020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.798959,-73.9523960004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8098880004,-73.93901200020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8083379998,-73.948989,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8151320004,-73.9396849997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8145630004,-73.94002999989999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.7974669996,-73.9507169999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.7997030003,-73.9509940006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.799434999999995,-73.950994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8037859998,-73.9461589995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Downtown Brooklyn,40.691860000300004,-73.988721,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6916769998,-73.98884100000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6915690003,-73.9887110002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6901370001,-73.9832259996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6900723003,-73.98232480029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6902329997,-73.9813279998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899670002,-73.98121399979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899890004,-73.9809279998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6906220002,-73.9814140004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Harlem,40.7988060001,-73.94997499979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.801832,-73.9434619995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.801111999999996,-73.9437959994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.7997210004,-73.9449320005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6771929997,-74.0087229996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6771929997,-74.0087229996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6771929997,-74.0087229996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.73121,-73.7740839999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7305439999,-73.7767179998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7301239996,-73.7738569997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7301239996,-73.7738569997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7268110003,-73.7758610004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.729869,-73.7738410001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.772005000300005,-73.9823840006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.612990000399996,-74.0129239997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.730822000100005,-73.8844789999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7304889997,-73.8842000005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7288380002,-73.8837509996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7714420004,-73.9881089996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.5920499999,-74.1390869998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,ALTICEUSA,40.8784449997,-73.8754800001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.591904000300005,-74.13857300020001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5920230001,-74.1380559998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5918470004,-74.1391530004,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5920300004,-74.13811999970001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.7199600001,-73.9814780002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7201019996,-73.9812989997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.7029779998,-73.9247370003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.7033079996,-73.9240869998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6039930002,-73.9306709997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6040679998,-73.93075999999999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.605008000000005,-73.930027,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6060290001,-73.9284660004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.604383,-73.9310629997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8406570002,-73.8426680002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8406570002,-73.8426680002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8406719997,-73.8426019995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8460519999,-73.82494999939999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8942459996,-73.8962880003,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8937390004,-73.89622000029999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.844468,-73.88169,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8441409996,-73.881968,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8765409997,-73.8784499998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8768270004,-73.8787249995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.876855,-73.87887399979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.6630189998,-73.9762920002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,AT&T,40.7200999998,-73.9502000002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,AT&T,40.6509000002,-73.96829999970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,AT&T,40.772900000199996,-73.9740000005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7709999998,-73.97089999949999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7695056596,-73.9546093603,New York,02/08/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8171570497,-73.9533698898,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8518310698,-73.9317729695,New York,06/28/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.590453110300004,-74.10092195,Staten Island,07/19/2018 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5894883102,-74.1012707105,Staten Island,07/19/2018 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.7450998102,-73.97882096010001,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.84779956,-73.9121369301,Bronx,07/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7099000002,-73.9624400005,Brooklyn,01/29/2019 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7272836498,-74.0054070703,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.5761109996,-73.9847339995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5758500002,-73.9834999997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.57564,-73.9856700003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,AT&T,40.8176999997,-73.8811000001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.6783340001,-73.7834769997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6676,-73.78941999999999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6816100002,-73.7882500006,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6805300004,-73.7874700001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6796300003,-73.78745000010001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.683010000100005,-73.7848199995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.863100000100005,-73.9065000005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,AT&T,40.8284999996,-73.9226999995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.68462,-73.7858900005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6849500002,-73.7872199999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6781400002,-73.7871099994,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6766200001,-73.7869500004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6793400003,-73.7844399997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6807900002,-73.7846799996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6726799999,-73.7867800003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6731799999,-73.7851700005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6760899996,-73.7825399998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6748599999,-73.7841200005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.7014999998,-73.9943000006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6750599998,-73.7874399996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6745399999,-73.7895499998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.671400000300004,-73.7886099999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6697799996,-73.7889600002,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.715726900300005,-74.0071850598,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.841833540100005,-73.8859743595,Bronx,07/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8465224499,-73.89339766970001,Bronx,08/24/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8461897602,-73.8921943296,Bronx,07/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8464340002,-73.9129580004,Bronx,07/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7271152698,-74.0035021796,New York,06/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.71903975,-73.9966308704,New York,02/13/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7450706,-73.9803740496,New York,02/01/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7720331396,-73.9257777196,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.74559121,-73.97999739939999,New York,02/01/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7904010003,-73.9456830002,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7908620001,-73.9453480003,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7914806398,-73.9448948197,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7912824004,-73.9442180495,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.792393620300004,-73.9442301105,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7922967001,-73.94398813,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7930087999,-73.9437835294,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7942731204,-73.94285893989999,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7949113799,-73.94239654020001,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7973030002,-73.9403369995,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.79783525,-73.9402562097,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7977090004,-73.9400349997,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.798139459699996,-73.9400362602,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8015401826,-73.9372489995,New York,03/31/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8018986103,-73.9372890698,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.802663440399996,-73.93672101989999,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8028699996,-73.93627000020001,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8035156697,-73.9361068502,New York,03/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8037310004,-73.9361390004,New York,03/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7658798298,-73.9635832397,New York,04/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7695657418,-73.9818411513,New York,09/30/2016 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8766430003,-73.8785419996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.876787999899996,-73.8762729999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8770009999,-73.8793220005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.876099000100005,-73.87738400010001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8762000003,-73.8787489994,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6583100001,-73.94405999989999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Manhattan Down Alliance,40.706600199899995,-74.0031966998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.705101000300004,-74.0026015994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.704799700100004,-74.0022963999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7070998998,-74.00499730060001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.706501000100005,-74.0045012998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7062988002,-74.0061035001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7048987998,-74.0093001995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7047004998,-74.0089035,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7047004998,-74.00830080029999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7431927759,-74.0073877576,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7425912548,-74.005064964,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.741839346300004,-74.0032571552,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7427538286,-74.0076720715,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7394860202,-74.0062665941,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7444079933,-74.0066367391,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7426075127,-74.00426030130001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7424774535,-74.0029621124,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7422986209,-74.0007090572,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.743696748699996,-74.007017612,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7415548385,-74.0011113879,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.741900312,-74.00185704270001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7439893758,-74.003412724,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.740998011500004,-74.0054512019,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7402582786,-74.006003738,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.743406151799995,-74.0052151686,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7427700859,-74.00171756729999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7409492377,-74.0034019945,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7432415473,-74.0068030355,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7434366339,-74.0036487581,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7402745363,-74.0019750591,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6177499998,-74.1081850003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6177499998,-74.1081850003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,Chelsea,40.741846395799996,-74.0040446358,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.743306576100004,-74.0080261233,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7200789997,-73.9495109998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7200789997,-73.9495109998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7200789997,-73.9495109998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6250039996,-74.0178750004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6253129998,-74.0173439996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.625880000100004,-74.01650900029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6263800004,-74.0157900004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6265530003,-74.0167869994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.715087999699996,-73.9605020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.715087999699996,-73.9605020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.5683660003,-74.0906419996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.569364999899996,-74.0894899998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5701950001,-74.0885469996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.571267999999996,-74.0872929997,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5723130001,-74.0860130002,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5733379999,-74.0844060005,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8501730004,-73.9102817297,Bronx,07/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7574456202,-73.8664342596,Queens,06/29/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7587770701,-73.9658396999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.724924889899995,-74.0057953595,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7651929696,-73.9580621699,New York,12/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8118450003,-73.9575170005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.5954560397,-74.0862098496,Staten Island,07/19/2018 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.814102829899994,-73.95586492,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8480825502,-73.93451006020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7472600001,-73.8028599999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7491399996,-73.8027,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.749999999699995,-73.8050600003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7501699996,-73.8071899999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7476100002,-73.8117000005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.6915000002,-73.9755000003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,AT&T,40.6897999996,-73.9462000005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7475599996,-73.8181499997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7423779996,-73.98869199939999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7431000004,-73.9883000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7411000003,-73.9879139999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7418749996,-73.9873639996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7424920001,-73.9869060006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7414800003,-73.9889399995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.663256,-73.9761640003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Spot On Networks,40.755727,-73.9445830001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7553329996,-73.9441310002,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755751000100005,-73.94516599970001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755751000100005,-73.94516599970001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755751000100005,-73.94516599970001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755751000100005,-73.94516599970001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755751000100005,-73.94516599970001,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7552899997,-73.9456329999,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7552899997,-73.9456329999,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755635999999996,-73.9476570003,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755635999999996,-73.9476570003,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.755635999999996,-73.9476570003,Queens,05/01/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7809421798,-73.9809659898,New York,12/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.57739083,-74.1026705403,Staten Island,07/19/2018 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8082927298,-73.9233322803,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.799658550100006,-73.9389231001,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8000957304,-73.93860514010001,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7240649996,-74.0079720002,New York,01/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.5765409998,-74.1034790005,Staten Island,07/19/2018 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.745863290100004,-73.9802332999,New York,06/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.782285090100004,-73.9804763999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.802636969699996,-73.9364679795,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.71693937,-74.0062224901,New York,05/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7662155104,-73.9699786696,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8617621802,-73.9019647199,Bronx,06/26/2018 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8644370002,-73.894553,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8144473597,-73.9479195796,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.835734440100005,-73.9139604204,Bronx,08/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7921319999,-73.9734089999,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7177257502,-74.00560968949999,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7710546001,-73.92149601,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7178049696,-74.0058149101,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8006809996,-73.96826,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7471439998,-73.9836979999,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7795609103,-73.95995409999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.725666,-74.0062742597,New York,01/16/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8256047402,-73.9182580897,Bronx,06/11/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7394643297,-73.9870521701,New York,09/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7707470798,-73.9203542705,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.829002480300005,-73.9372792304,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8102551998,-73.9219232296,Bronx,06/11/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7205677498,-74.00655620010001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.770359889699996,-73.9188946797,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7530670003,-74.0038110003,New York,01/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7157119998,-74.0051260005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7574846299,-73.86858881,Queens,02/28/2019 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7147073403,-73.9665249699,Brooklyn,07/27/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7641165801,-73.9589477795,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7609463402,-73.9613974296,New York,06/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.731887170300006,-74.0011940701,New York,07/25/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7075810003,-73.9553164898,Brooklyn,01/22/2019 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7690955201,-73.9128369996,Queens,01/15/2019 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7415361403,-73.9813326198,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7109881099,-73.9685338097,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7562983599,-73.9639780096,New York,01/23/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7243379203,-74.00202234,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7537510604,-73.9659702496,New York,01/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754371220100005,-73.9656502295,New York,06/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8089096601,-73.92220947,Bronx,07/16/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8464767598,-73.8963931604,Bronx,07/26/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6503901703,-74.00828534,Brooklyn,06/25/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7230133798,-74.0067706497,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7391372396,-73.9801481204,New York,01/16/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7392531703,-73.9797618304,New York,01/16/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739646660300004,-73.97946572,New York,01/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7305779998,-73.989008,New York,02/04/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7512243202,-73.9905922004,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7449836101,-73.98272282970001,New York,02/04/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7397623797,-73.9796929999,New York,01/16/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7454964104,-73.9529662599,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7398515404,-73.9793265504,New York,01/16/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7406115598,-73.9790788503,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.6583100001,-73.94405999989999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6580000003,-73.9472300004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6580000003,-73.9472300004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6574300004,-73.9471600002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6574300004,-73.9471600002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8463139999,-73.8244720001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.847596000100005,-73.82223,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8481589997,-73.8210710004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8483220004,-73.8207499997,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8492329996,-73.8210499995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8491959997,-73.82105500029999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8502079999,-73.8217519998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8502319998,-73.8217770005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8644580004,-73.8951149996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8647810001,-73.8946260006,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8651670001,-73.8942270005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6507210004,-73.9684889995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.65068,-73.9684599995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6507380002,-73.96842900060001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6506999996,-73.96584300010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6604690002,-73.9651679999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6608419997,-73.9651209997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6611970004,-73.9652520003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6574519997,-73.9639909997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6574519997,-73.9639909997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6574519997,-73.9639909997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6570010004,-73.9636970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6570010004,-73.9636970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6570010004,-73.9636970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6570010004,-73.9636970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8445900004,-73.8598,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8445900004,-73.8598,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6850429999,-73.9189329997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6850320002,-73.91906999999999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8876370002,-73.8359510002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.888782999899995,-73.84013299979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.885284000300004,-73.8385210004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8866219998,-73.83497000060001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.864729999699996,-73.89903699999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.864729999699996,-73.89903699999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6740129996,-73.9346979998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6740399998,-73.9350530003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6738010002,-73.9351660002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6734299998,-73.9346299998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6738660003,-73.9347170004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6738050002,-73.9347849998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.673781,-73.9351090003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6737549999,-73.93501399979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6737269999,-73.9348670005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6736949998,-73.9349349997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.811544,-73.91413799989999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.7197890004,-73.9814660002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7200050002,-73.9814379995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYCHA,40.6934417997,-73.9731930998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7331420001,-73.8709810001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7331859996,-73.8711279995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7420940004,-73.9612649994,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7419939997,-73.9612560003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYCHA,40.6950089997,-73.9795471995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6946230002,-73.9799092005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.694137,-73.9798132001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.694540000100005,-73.9794162005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6946260001,-73.9751802004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.694892000100005,-73.9754162001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6948679999,-73.9750242003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6943939999,-73.9750541995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6945570003,-73.97533620029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6933919998,-73.9739232,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6943819998,-73.9746142004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6937239998,-73.9773511998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6937400004,-73.97779619949999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6936799998,-73.9772460001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6935090001,-73.9769811999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6934930003,-73.9766352003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.741225030100004,-73.9789346196,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7423220602,-73.9853807405,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.753139169899995,-73.90745354010001,Queens,06/20/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7550883997,-73.9732760697,New York,01/31/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7420686204,-73.9776944904,New York,06/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7378864504,-73.9966041004,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8068195404,-73.9176573999,Bronx,07/26/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.72780341,-74.0052322595,New York,02/13/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7606599902,-73.9982028298,New York,01/18/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7772412099,-73.9786294005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.85487571,-73.92938959979999,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8051138099,-73.9667880603,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.816188210199996,-73.9099166103,Bronx,06/26/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7539103902,-73.90009406029999,Queens,07/27/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.738277779899995,-74.0056712102,New York,01/17/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7896217796,-73.97002379050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7623362896,-73.9933676899,New York,01/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7415020499,-73.99359260050001,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8159977098,-73.90824221,Bronx,06/26/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7904444801,-73.9691552496,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7150274198,-74.0067720398,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7566381504,-73.9866335805,New York,12/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7142086503,-74.0065116999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8047055204,-73.91293263,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7917942101,-73.9681766197,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8131283198,-73.9089914094,Bronx,06/25/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6740388697,-73.9568263802,Brooklyn,06/18/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7545069998,-73.89363900000001,Queens,06/20/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7391558001,-73.9993813799,New York,02/14/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7934020896,-73.96700524010001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7895411998,-73.96964431020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6989557598,-73.9389323497,Brooklyn,09/06/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.698876230100005,-73.93844701,Brooklyn,07/27/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7558349998,-73.881778,Queens,06/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.756576999800004,-73.97046999999999,New York,02/04/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7421248497,-74.0043634198,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8236462899,-73.9140299405,Bronx,07/11/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7524759996,-73.9701160001,New York,02/01/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7010399999,-73.8247189998,Queens,06/29/2018 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.8468890004,-73.9413330002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.846472000300004,-73.9417219999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8462000002,-73.9413470005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8464440001,-73.9399809995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8466859996,-73.94088300050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7930999996,-73.93540000029999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7770000003,-73.9252000003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.7220999997,-73.8466000001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.6173000001,-74.1062999997,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.8465619999,-73.9408600002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8463830002,-73.94070600020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8247779998,-73.942178,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.5889999997,-74.0666999999,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,AT&T,40.714799999899995,-74.00280000020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7265000001,-73.9817,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,AT&T,40.743199999699996,-73.84430000020001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7424185497,-74.0044441302,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.798716749899995,-73.96311538970001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6941403398,-73.8505691605,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7550150197,-73.9682764104,New York,02/01/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7558117399,-73.9645951896,New York,01/23/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7562636,-73.96418188060001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6903899996,-74.0199599995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.690130000399996,-74.0193399996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.690709999999996,-74.0195700005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6902599996,-74.0191500002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6891900004,-74.0182600001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.689330000300004,-74.0180500002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.6885499998,-74.0181199997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7846120502,-73.9734072903,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7408939996,-73.9785609996,New York,01/23/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7329085604,-74.0038769902,New York,02/13/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.720983490100004,-74.00648828050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Fiberless,40.688159999999996,-74.01804000060001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8173798278,-73.9170781326,Bronx,04/30/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8180165496,-73.9167909599,Bronx,04/25/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8225187913,-73.9106901254,Bronx,04/24/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8223379197,-73.9094274804,Bronx,04/19/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8120789372,-73.9265896208,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8125574777,-73.9262436244,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6894082198,-73.98872869979999,Brooklyn,10/06/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6861770004,-73.9910140005,Brooklyn,09/18/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6847989501,-73.9915810402,Brooklyn,09/18/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6843037398,-73.9921844995,Brooklyn,09/18/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6834360701,-73.9927725399,Brooklyn,10/23/2017 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8241309998,-73.9424640006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7188120002,-73.8853599996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7202309996,-73.87780599989999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.720598000100004,-73.8773369995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7210259999,-73.8779350001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.71921,-73.885335,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6946929996,-73.9838490003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6946929996,-73.9838490003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693721000100005,-73.98332799970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693721000100005,-73.98332799970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693350000100004,-73.9857879998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693350000100004,-73.9857879998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6863709996,-73.9785409997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6863709996,-73.9785409997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6927230002,-73.9830250002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6904060003,-73.98393100050001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6904060003,-73.98393100050001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692086999699995,-73.9825870003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692086999699995,-73.9825870003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6918900002,-73.98248800020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936250001,-73.988519,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6940105,-73.9867065005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6940105,-73.9867065005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6940105,-73.9867065005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6940105,-73.9867065005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6940105,-73.9867065005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.689941999999995,-73.98215800050001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.689941999999995,-73.98215800050001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6917379998,-73.98813099979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6917379998,-73.98813099979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6933479999,-73.9874190001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692417,-73.987117,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692417,-73.987117,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692417,-73.987117,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6921780001,-73.9883039999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6920229997,-73.988433,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6919760004,-73.9883110001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6921739996,-73.98866900029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6921780001,-73.9883039999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6903640003,-73.9844349999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6903640003,-73.9844349999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6908829998,-73.9896349995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899850001,-73.9919950004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.689906,-73.9919439997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6824098696,-73.99346712970001,Brooklyn,09/18/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7369134897,-73.95545318960001,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7346839996,-73.955096,Brooklyn,08/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.732734999899996,-73.9545809998,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899969998,-73.9919999997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6900219999,-73.9918970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6955779998,-73.9839699996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899240002,-73.9881169997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899240002,-73.9881169997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.690296000000004,-73.9878459996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893190003,-73.9871619999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.722328000000005,-73.9496710001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7201109997,-73.9476270003,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.719510999899995,-73.9468529999,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.711078900100006,-73.9437320696,Brooklyn,08/10/2017 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.7959199908,-73.9678485166,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8476919036,-73.786366589,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6422084532,-73.8995244212,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.5869999561,-73.9554283575,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.9004399098,-73.867942,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6752551911,-74.0103512916,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6753708519,-73.9485661367,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7451505182,-73.7148377572,Glen Oaks,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.874379814,-73.8783843503,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.593146783,-73.7840400286,Arverne,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.834515209,-73.9396745829,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.5913570544,-73.92396467,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.7260506623,-73.9506902935,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8446740907,-73.8830446904,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8115962129,-73.92436634020001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7070105556,-73.75379667119999,South Hollis,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7706525435,-73.95134169399999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.6945465785,-73.8614464594,Woodhaven,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7621860177,-73.9693817047,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7273073125,-73.9804076673,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.7723828899,-73.9287188126,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6848100477,-73.915132416,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8705019246,-73.8286579311,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.5095311239,-74.2441067083,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.8256723738,-73.9480324189,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8803222773,-73.9079833715,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7198855543,-73.7390438189,Queens Village,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.802979881999995,-73.9535307443,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.833736297399994,-73.85835521770001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7259184856,-73.8207190696,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.785959798600004,-73.9518056716,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7649346184,-73.9912208178,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.626237609899995,-74.0778460903,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,QPL,40.768225432,-73.7382294408,Little Neck,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7518915617,-73.9816985108,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.637585615999996,-74.1311046151,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,BPL,40.6727060872,-73.8740334898,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7552001994,-73.9442238947,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6974822489,-73.9122106175,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.5958181468,-74.0629804652,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,BPL,40.5952368631,-73.9605993696,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6292120977,-74.01186966819999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7470624208,-73.9442436779,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6357412846,-73.9476200285,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.786249136,-73.84601327840001,College Point,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7221469532,-73.84301499680001,Forest Hills,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.6417853679,-74.0766457652,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.8442926727,-73.82788990729999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8827597562,-73.8939224115,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8265919268,-73.9175826513,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7637503163,-73.8098334843,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.694816700000004,-73.9283986674,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.5948615151,-73.941124923,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.6599636231,-73.7399110132,Rosedale,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6651593697,-73.8860705368,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8312637226,-73.9017889765,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7374341379,-73.8616559293,Corona,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.60800935,-74.0033765451,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.818709352199996,-73.86288995609999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8548777848,-73.8641435801,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6486367052,-73.9303739197,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7501960856,-73.8850693247,Jackson Heights,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7445100483,-73.9959597161,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.727316560300004,-73.864502826,Rego Park,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.616308137,-74.0119885202,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.683213515300004,-73.9980190603,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.773752108800004,-73.796343186,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.757711898800004,-73.86820029569999,Corona,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7885314443,-73.8107165591,Whitestone,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6532640727,-73.88590904760001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7100345578,-73.81945312010001,Briarwood,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8460423249,-73.8983402556,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.7289209029,-73.9877837339,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8478700412,-73.93386591310001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.6487169711,-73.9767572777,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.694489698299996,-73.9777326329,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.625893307199995,-73.9603144928,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.7735069912,-73.9845468452,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.680687107,-73.887239509,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.6947772916,-73.7396425691,Cambria Heights,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.59054439,-73.9718084463,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7711255247,-73.8269158096,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7577740683,-73.82888468510001,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7344862637,-73.75568167109999,Bayside,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.756857177600004,-73.9726324717,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.733034241599995,-73.8098798843,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8862733773,-73.9146700146,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.676952728,-73.7456735613,Laurelton,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8411050877,-73.84662165510001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8657295413,-73.9258533096,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.6388851668,-73.9890077838,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.740808781700004,-73.9216691603,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7269953701,-73.8931045649,Maspeth,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8137734314,-73.9570639052,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7742029054,-73.9844546501,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8148204092,-73.941197673,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.7624221297,-73.87386663,East Elmhurst,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.735156990300005,-73.7170989707,Bellerose,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6715266559,-73.9086034329,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6611893077,-73.9481022991,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6684865101,-73.9336508496,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7825312039,-73.777008814,Bayside,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7649150063,-73.9595499458,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7736058206,-73.9564040689,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.5858394078,-73.8160616201,Rockaway Beach,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.534058299899996,-74.193236856,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,BPL,40.5926531297,-73.9886820957,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7201684296,-73.7623041123,Hollis,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6197681963,-73.9332132562,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6356942225,-73.9745947088,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.609577499400004,-74.1485024503,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,QPL,40.7592451348,-73.7318266816,Little Neck,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.6803113116,-73.7916786111,Jamaica,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7025766648,-73.8757971089,Glendale,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.7069304247,-73.9575546134,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6102566673,-73.9531058487,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.686907288200004,-73.8248296985,Richmond Hill,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.668216693299996,-73.9834274329,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8299928753,-73.8750206002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.760643117600004,-73.9364719875,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.745341713,-73.9097937387,Woodside,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7292529463,-73.7819089166,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.7045590639,-73.9396184214,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8206415647,-73.9046288601,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6916230873,-73.951283498,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7415435746,-73.7822740472,Fresh Meadows,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.576107746999995,-73.9667748762,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.7575456796,-73.7843029637,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8888948958,-73.8408371279,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6336257134,-74.0295383519,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6956825552,-73.9913479881,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.7848346367,-73.97745211590001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.7768170122,-73.9094170178,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7508940804,-73.861976844,Corona,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.6638044606,-73.8417968638,Howard Beach,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7481246964,-73.9830630999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7612533724,-73.95016588979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8266092254,-73.85018145789999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8229035714,-73.8190936365,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.6728752044,-73.77059021609999,Jamaica,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7051723129,-73.902572375,Ridgewood,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.604772113,-73.75209189270001,Far Rockaway,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.713644888000005,-73.9479357128,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.695540146599996,-73.7902273917,Jamaica,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.6159160785,-73.97604048939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6163731106,-74.0313694054,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.6007321052,-73.8200526582,Broad Channel,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.5665301462,-74.13853387649999,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.7531840458,-73.9821581041,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7299829146,-74.0053310145,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.6747769261,-73.8092618174,South Ozone Park,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7111856291,-73.8536727785,Forest Hills,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7346055255,-73.99916928430001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.6808618482,-73.8464887284,Ozone Park,09/09/9999 12:00:00 AM +0000,4,Queens +Free,BPL,40.664453793,-73.9052223115,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6408035472,-73.9659650781,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.700765268000005,-73.8316254169,Richmond Hill,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.7380871204,-73.9820488896,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.714456459699996,-73.9885372705,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.683004902,-73.93480547029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8146886279,-73.9409529891,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8440019118,-73.9100871445,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.632636993,-73.9199848808,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.870139703,-73.8450642753,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.5719318484,-74.1119581475,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.8910850654,-73.8595812441,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.619868421,-73.9170212071,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.6345089423,-74.1148218734,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.7438226298,-73.9799076544,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7404654556,-73.9933569112,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8690393929,-73.9011937916,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.758529267,-73.9186233204,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.705962093800004,-73.7944075307,Jamaica,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.552423262800005,-74.15111164310001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,NYPL,40.7136065153,-74.0078616724,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7193972838,-73.9796055959,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7036018001,-74.0074996996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.703399700000006,-74.0084000005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7041016002,-74.0092009996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7033004998,-74.0093002002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7028998998,-74.0095978002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7028008004,-74.0094985998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7030983001,-74.0106963996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7023010001,-74.0126038001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7019005001,-74.0124969005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7015990998,-74.0093001995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7051009996,-74.0139998997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7051009999,-74.0139008001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7041015999,-74.0105971997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7038994,-74.01039889970001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7043990997,-74.0101012997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7042998996,-74.0102005003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7079009996,-74.01219939939999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.708698299699996,-74.0130997003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7130013004,-74.0118027004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7132988003,-74.0118026998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7081985002,-74.0121002005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7080993998,-74.0119018998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7080001998,-74.0118027001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6182370002,-74.1072130004,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6182370002,-74.1072130004,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6182370002,-74.1072130004,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6771929997,-74.0087229996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Harlem,40.801845999899996,-73.9451370001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.805974000300004,-73.9412440005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8059709999,-73.9405659999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.8186874033,-73.8941356433,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.866804429,-73.86322248479999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.7601255812,-73.76836198069999,Bayside,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.5793908722,-73.8377356028,Rockaway Park,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Harlem,40.8153469997,-73.9475760001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8115680004,-73.9465369995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8062969999,-73.9439119996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8116839996,-73.9500420005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8159360002,-73.94297100029999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8121810003,-73.93783399979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.803490000000004,-73.9560939997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8121859998,-73.9479549997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.812598,-73.9462960005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.5766377761,-73.9860619926,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.826567080100006,-73.9359395884,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,QPL,40.757803428,-73.939309302,Long Island City,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8629806052,-73.89450288649999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8480291101,-73.8569578538,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.7240963609,-73.995698993,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7540678756,-73.9735677168,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7041015998,-74.00769809999998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8042789996,-73.9525329998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.806858,-73.9497260004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8011370003,-73.9537779996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8060160002,-73.9524000003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8054290004,-73.9425370001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8004789998,-73.94469599979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.798728000000004,-73.9455979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.797893,-73.9487859998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8015270001,-73.9528220005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8053929998,-73.9536610005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.808843000100005,-73.9504950003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.805584000100005,-73.9505360001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8062299998,-73.95392200010001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.803087,-73.9423560005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8042420002,-73.9417799995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8049579997,-73.9413740003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8056239996,-73.9428120001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.806568999899994,-73.9449769995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7558389004,-74.0019611005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7779250003,-73.9517529995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7687750004,-73.9583859997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.742430000300004,-73.8115100003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.759145000100006,-73.95325999970001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7646300002,-73.9661150001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.784267000199996,-73.9471140001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.707379000100005,-73.9433989999,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6845525198,-73.9947654703,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6831796304,-73.9954176204,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7537182203,-73.9322156401,Queens,02/12/2018 12:00:00 AM +0000,4,Queens +Free,City Tech,40.696026999699995,-73.98845600029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6959206004,-73.9881184995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6959021997,-73.9873941004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6951101004,-73.9884821003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6951101004,-73.9884821003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6959021997,-73.9873941004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.696026999699995,-73.98845600029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6950378997,-73.9873314006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7620730003,-73.91851800020001,Queens,02/08/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7535214998,-73.9145011394,Queens,11/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.753745629899996,-73.91770279949999,Queens,11/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7523481746,-73.9265998293,Queens,04/23/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7527239999,-73.92718300050001,Queens,04/24/2018 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.748490000100006,-73.8212100001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7536406401,-73.91840165939999,Queens,11/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7565208602,-73.92521461060001,Queens,10/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7639310004,-73.9224780003,Queens,05/31/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7632070002,-73.9212670001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7413034801,-73.9190055999,Queens,05/23/2018 12:00:00 AM +0000,4,Queens +Free,City Tech,40.695107000300005,-73.9881049995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,City Tech,40.6950879997,-73.98767100010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6937010002,-73.9821952006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6938619999,-73.9829061995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.693727,-73.9829092002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6938589996,-73.9824761997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6938329996,-73.9821922004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6948926998,-73.9811802996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6945549998,-73.9816791995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.695317000100005,-73.9811552003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.695544,-73.9816482005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.6956699996,-73.9797522006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYCHA,40.695295,-73.9801031998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6725829999,-74.00554400029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.673348999699996,-74.00823500050001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.673030999699996,-74.0048499996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6729689999,-74.0069149999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6722139998,-74.0041450001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6711669998,-74.0036880004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6723560001,-74.0040460005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6724129997,-74.00430300000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.672289000300005,-74.0037439994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6725150003,-74.0046480004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6724129997,-74.00430300000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.773542,-73.98177400029999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.586556,-73.7998939995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5865409997,-73.799973,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5846690003,-73.81105100020001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5845510002,-73.81100300050001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5846140002,-73.8106940004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5847269999,-73.8106829998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5830500001,-73.8176860005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5829140004,-73.8178770003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5828240003,-73.8175779995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5829570001,-73.8171849997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.583098999899995,-73.816689,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5805589998,-73.82629599970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.580467,-73.8262720005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.580554999600004,-73.82595799970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5807040002,-73.82596899970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5803519997,-73.8266210003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.6808290004,-73.975098,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7346730001,-73.989951,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7625640004,-73.9195789998,Queens,03/08/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.744320490300005,-73.9534837102,Queens,04/24/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7606860001,-73.9155699997,Queens,02/26/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.754135517600005,-73.91981870720001,Queens,10/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.747793,-73.95008600050001,Queens,07/11/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7484970002,-73.9498550004,Queens,05/31/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7552199047,-73.9224478198,Queens,02/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7108698299,-73.9513107194,Brooklyn,04/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.71385109,-73.95953976,Brooklyn,02/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7057680002,-73.9430299995,Brooklyn,08/10/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7044959999,-73.9429890002,Brooklyn,04/26/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6865713472,-73.9937850852,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7152266304,-73.9627406698,Brooklyn,03/29/2018 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.743809999999996,-73.80419000020001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6806498897,-73.9743749598,Brooklyn,01/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7192462196,-73.95861248060001,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.714190879600004,-73.9515524099,Brooklyn,06/13/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7130798796,-73.9512847414,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7116663597,-73.9510261478,Brooklyn,03/30/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7095716301,-73.95070637,Brooklyn,03/29/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7230135004,-73.9532335504,Brooklyn,04/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7225326303,-73.9546886905,Brooklyn,01/31/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7164305696,-73.96128652979999,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7176582282,-73.9603011562,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6804256203,-73.9679993802,Brooklyn,01/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7190673627,-73.9627653503,Brooklyn,04/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.715731750100005,-73.9642430902,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7122676599,-73.9556103901,Brooklyn,04/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7141296403,-73.95028299,Brooklyn,06/13/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.714497710100005,-73.96109549890001,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7185134904,-73.9572313094,Brooklyn,08/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7139138601,-73.9669304196,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7225042401,-73.9592022004,Brooklyn,02/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.719404331599996,-73.96047431390001,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.716849745,-73.96084076359999,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7213825503,-73.96035234989999,Brooklyn,02/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7219434197,-73.95977484,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7232900898,-73.9526030897,Brooklyn,04/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.765785254,-73.9191729969,Queens,10/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7654016498,-73.9183604098,Queens,10/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7622776198,-73.9117170802,Queens,10/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6917337899,-73.8650147801,Queens,09/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6931659997,-73.8536780001,Queens,03/29/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.693739784099996,-73.85255706939999,Queens,02/26/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.69467595,-73.8485874305,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6950484496,-73.8466559495,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.695221380300005,-73.8411874596,Queens,08/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6954198104,-73.8405505595,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6959125198,-73.83880988050001,Queens,08/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.696331271700004,-73.8378420458,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6970469998,-73.83729299939999,Queens,08/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6979021503,-73.83565709,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.74191,-73.80816,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6980954203,-73.8348467495,Queens,09/01/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7006348299,-73.8270968697,Queens,09/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6926072396,-73.8564538001,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.681596,-73.9770380003,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6803229996,-73.9780340004,Brooklyn,09/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6795010096,-73.9784649196,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6752539996,-73.9814689995,Brooklyn,09/11/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.672679100100005,-73.9831614205,Brooklyn,09/11/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6722418096,-73.98362685010001,Brooklyn,10/27/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6678730002,-73.9875089995,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6665385801,-73.9883783202,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6662297103,-73.9890566195,Brooklyn,08/31/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.666903999999995,-73.9917889996,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6644060002,-73.9937149997,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6621889998,-73.9960170003,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6588079996,-73.9995320004,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.657704000100004,-74.0006889997,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.656384,-74.0020530005,Brooklyn,09/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6554376004,-74.00305031970001,Brooklyn,08/22/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6541332296,-74.0044037595,Brooklyn,08/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7075305503,-73.8313608199,Queens,01/15/2019 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.70615073,-73.83157896979999,Queens,02/21/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7544875499,-73.91168659979999,Queens,02/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7396802501,-73.9220696606,Queens,03/15/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6810387203,-73.97573017010001,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6822675301,-73.9677531801,Brooklyn,06/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6808878802,-73.9646683496,Brooklyn,04/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.680238050199996,-73.96451071979999,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6785400002,-73.96373000050001,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7487979504,-73.87355043,Queens,02/08/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.76842289,-73.9613808596,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6910214302,-73.8680948596,Brooklyn,03/28/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6835059996,-73.8720789999,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.683820590399996,-73.8713797301,Brooklyn,12/07/2017 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7501399997,-73.82283999970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.743700000100006,-73.8173199995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7436599998,-73.8139600006,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Partner Site,Partner,40.7537999998,-73.9833000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.6929999996,-74.0019000006,Brooklyn,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7454899998,-73.81356999970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7458900003,-73.8034199996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7602353199,-73.9840119597,New York,06/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7593788403,-73.98463666010001,New York,03/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7592052003,-73.9769903697,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7624675498,-73.9747322798,New York,03/28/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.764254140300004,-73.9711978403,New York,05/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75868871,-73.9655889096,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8004460001,-73.9464835204,New York,01/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8073256701,-73.9527886794,New York,11/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8505484104,-73.9009541102,Bronx,06/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8435671304,-73.9378068404,New York,03/29/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8498544901,-73.9334733103,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8528573648,-73.93100715029999,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8500375096,-73.9333419801,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8126556596,-73.94948943989999,New York,11/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.84969774,-73.93332247020001,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8554160802,-73.9294025404,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.855615370100004,-73.92899670050001,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.854346219600004,-73.91021788970001,Bronx,01/17/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7426742601,-73.9965490004,New York,05/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8537639997,-73.90789899949999,Bronx,01/17/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7695673397,-73.9880986695,New York,02/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6641664798,-73.95091961979999,Brooklyn,04/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8139975201,-73.9191713702,Bronx,04/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7604726697,-73.9220190799,Queens,05/23/2017 12:00:00 AM +0000,4,Queens +Free,Harlem,40.8095759996,-73.9516890006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8072630001,-73.946637,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8106009999,-73.9505770004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.810178,-73.9489240003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8112659998,-73.9501259997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.81026,-73.9395100003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8064130001,-73.9401490004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8070920004,-73.9397140004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8075940004,-73.939065,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8151139996,-73.941112,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8082969997,-73.93888999949999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.808224000100005,-73.9407779996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8111979996,-73.943866,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8120370003,-73.94623100000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8133660003,-73.94884300000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.812627999899995,-73.9454440003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8124179999,-73.9446890005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8118409998,-73.94272499979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8141249998,-73.9469930003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8131219996,-73.944376,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.811835000100004,-73.9413499998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8107949997,-73.9389250001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8160890001,-73.9466880005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8139300002,-73.9449549995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8095590001,-73.9434169996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8115750003,-73.93845300000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8149520001,-73.93894100039999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.815803000100004,-73.9408120003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8137129996,-73.9412620001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8093570002,-73.9444609996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8136459999,-73.9400529996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.813433999699996,-73.939112,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8111379999,-73.9428460002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8096720002,-73.9440039996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8124910004,-73.94224799979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.812944,-73.9416929996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.815704999699996,-73.9395189995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8019510002,-73.9535539995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.800652000300005,-73.9546160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8022979998,-73.9524049995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6824829165,-73.99575348229999,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,Harlem,40.8026839999,-73.9451580005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6874965997,-73.9900226196,Brooklyn,09/18/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.687648980300004,-73.9804235504,Brooklyn,07/26/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8631140504,-73.90457507949999,Bronx,03/30/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8602146696,-73.8930594396,Bronx,05/25/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8626436497,-73.9032440399,Bronx,09/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.861349,-73.8980229996,Bronx,07/19/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.86165512,-73.89858090989999,Bronx,05/25/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8591537204,-73.8985525896,Bronx,07/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8628554803,-73.9045470099,Bronx,03/30/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.862085769699995,-73.8995205706,Bronx,07/20/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8619933198,-73.8918299601,Bronx,06/21/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7658296196,-73.9833678704,New York,08/03/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7670078111,-73.9818592903,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7661747896,-73.9819878095,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7432028403,-73.98920581979999,New York,12/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7442430499,-73.9890159196,New York,11/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7451270502,-73.9886708895,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.746623999899995,-73.9883989996,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748138939899995,-73.9881009003,New York,04/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7497209104,-73.9880837846,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.752339220399996,-73.9875737401,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7530590804,-73.9873860302,New York,10/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7544929897,-73.9869351504,New York,08/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7548508702,-73.9863594401,New York,08/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760412940100004,-73.9845407996,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7602660404,-73.9848566997,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7606459996,-73.98441999960001,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7606321744,-73.9842828912,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7607176004,-73.9846336298,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7608827697,-73.9842773903,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7625932996,-73.9830769002,New York,10/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.763978079699996,-73.9826288296,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7641267204,-73.98230855989999,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7646719596,-73.9823626401,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7653412197,-73.9821294602,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7485394098,-73.9882184599,New York,06/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7500920801,-73.9877917293,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7341476497,-73.9887398304,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.734140559800004,-73.9894120904,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7361105198,-73.99342438010001,New York,11/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7375605104,-73.9968406605,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7362005797,-73.99360101970001,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7341270798,-73.9897779802,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7380741603,-73.9983192805,New York,11/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7389966098,-74.00094609989999,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.778889040100005,-73.97785338,New York,02/07/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7866538399,-73.9723114005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7673640002,-73.9688649996,New York,04/17/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7611177506,-73.9756836471,New York,01/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76778999,-73.9896589799,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7742814704,-73.9634601501,New York,04/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7787946462,-73.9601156651,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7571737696,-73.96390551,New York,05/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7907857801,-73.9689154406,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761049040399996,-73.9641806703,New York,02/22/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7749698819,-73.9810792139,New York,11/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.768092999699995,-73.9683640005,New York,04/17/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7754432796,-73.9823668697,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7315210502,-73.9827646995,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8259668699,-73.9397673395,New York,05/24/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8341892498,-73.9454496103,New York,03/27/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8279250702,-73.9457754297,New York,01/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.827304939899996,-73.9462259305,New York,04/26/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8297330597,-73.9442004197,New York,06/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8283195897,-73.9492987604,New York,03/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7634329604,-73.9590388103,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.72340371,-74.00808438979999,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7476272599,-73.9850371596,New York,10/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7426996698,-73.9967998396,New York,02/28/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7436585396,-73.9768432301,New York,01/18/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.740232909899994,-73.9790481597,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8005459997,-73.9524270004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8035109996,-73.95294199989999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.798102,-73.950349,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.7999280004,-73.9545490005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.7965279996,-73.9484920005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8005920004,-73.9466849997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8013499999,-73.9457560005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.772100000100004,-73.9771000004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7680000002,-73.97119999979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6630940002,-73.9762919996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.663381,-73.97608299939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6759789996,-73.765364,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6794719997,-73.7706930003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6799630002,-73.76775200029999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7859579996,-73.9850750005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.8292000004,-73.9361000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.8048000002,-73.9443,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7393530001,-73.7368249997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7395470004,-73.7359200005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.739739000300006,-73.7350409994,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.739908999899995,-73.7345800004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,AT&T,40.7015999996,-74.0148999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.7029999997,-74.0167999996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.740213999699996,-73.73431100020001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7579700002,-73.82524100010001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.758580000100004,-73.8250780004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6966749999,-73.997656,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6969889996,-73.9974860003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.697343999699996,-73.9973329996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6976690001,-73.99718300010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.698103000399996,-73.9969440001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6967319997,-73.9903489997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7499080001,-74.0008900004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.7154881544,-74.0162138359,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.605690343,-73.9862316255,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6230645344,-73.98944676720001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7497830003,-74.0007109994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7482700004,-74.0020679997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7482700004,-74.0020679997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7482700004,-74.0020679997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7482700004,-74.0020679997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7482700004,-74.0020679997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7123069997,-74.0069610006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7093500001,-74.0099030003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.618063999899995,-74.1081859996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,QPL,40.7078731318,-73.79467803989999,Jamaica,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7129435708,-73.88086427340001,Middle Village,09/09/9999 12:00:00 AM +0000,4,Queens +Free,QPL,40.7429309465,-73.82516996390001,Flushing,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8030181614,-73.9348475633,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.672343526300004,-73.9682243829,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.645912124,-74.0136300012,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.7942156129,-73.9434510796,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.687379094099995,-73.96603066600001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Manhattan Down Alliance,40.707199099600004,-74.0037002996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7070998997,-74.0036011004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Manhattan Down Alliance,40.7070006997,-74.0035019003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7888316302,-73.9703352001,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7485509502,-73.8757747496,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7480491803,-73.8793864801,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7468675402,-73.9745200604,New York,03/23/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.746250899699994,-73.9905059896,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74230081,-73.99683036020001,New York,05/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7638909196,-73.9620866905,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7891824702,-73.9700753495,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7407724603,-73.9982041003,New York,03/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.749089669499995,-73.8718174082,Queens,02/21/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6527710002,-73.9498700006,Brooklyn,06/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7246139996,-73.9873363696,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.729435929699996,-73.9838236901,New York,05/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.745985978,-73.9844921943,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8494227497,-73.93352882010001,New York,03/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7592336602,-73.96550378939999,New York,06/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8538810002,-73.9086619994,Bronx,01/12/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.76355288,-73.9285139103,Queens,05/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7403685604,-73.9792517998,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74661929,-73.9902414096,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7557765502,-73.9236268395,Queens,10/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7892631802,-73.9702839002,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7670473599,-73.98993307010001,New York,02/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7441746801,-73.9875489402,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74715289,-73.88792591949999,Queens,08/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7545932496,-73.9881367804,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7612673501,-73.9606200397,New York,06/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7439706953,-73.9918828658,New York,04/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8000930401,-73.9682951998,New York,09/19/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7959958603,-73.9705994306,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.6818101974,-73.9561085144,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.744406777399995,-73.9831323066,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7435997402,-74.0035878803,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7393412303,-73.9799854299,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7433946804,-73.9838784998,New York,06/19/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.764455889699995,-73.99181959010001,New York,04/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76826158,-73.9890433705,New York,01/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7651592101,-73.9913119401,New York,01/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7646244798,-73.9919665301,New York,04/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7367472,-73.9816082901,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7454940702,-73.9907754098,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7383023997,-73.9962956503,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8066299401,-73.95025608979999,New York,09/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7625953103,-73.95964853,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8475133196,-73.9353630897,New York,03/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.751187539600004,-73.97106076,New York,04/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7391660401,-73.9911985495,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.765788509699995,-73.9908520096,New York,11/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7658753002,-73.9910573799,New York,02/23/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.745267579899995,-73.9945631697,New York,10/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7413232202,-73.9853854705,New York,06/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7372798798,-73.99282602,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.738383759899996,-73.9803960295,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754695280300005,-73.9654056104,New York,05/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.732518789699995,-73.98469437050001,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7515216396,-73.9901121599,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7306715996,-73.9892467895,New York,03/29/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74533995,-73.9827682499,New York,10/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.788986159699995,-73.9704824301,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8229022502,-73.9383645499,New York,09/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7468500502,-73.9771588397,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8484438502,-73.9342409998,New York,03/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7656654522,-73.9574087323,New York,05/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7385025002,-73.9806104498,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739962639699996,-73.9795441903,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7385704602,-73.9999324099,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7378049998,-73.9981060004,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73866726,-73.9994757404,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73790583,-73.9979205802,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7430267303,-74.0040045397,New York,03/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7380396902,-73.9923766996,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.742803140300005,-74.00416971,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7393355798,-73.9952642404,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7394321803,-73.9954750904,New York,04/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7331069997,-73.98716200060001,New York,01/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73369379,-73.9870435095,New York,02/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7334700002,-73.9873840006,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73391885,-73.9868814305,New York,05/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7338407502,-73.9866343903,New York,01/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73422211,-73.9866582495,New York,05/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7344915302,-73.9861615804,New York,01/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.742624999899995,-73.9806279995,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7483832896,-73.9763442995,New York,03/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748287043699996,-73.97653467960001,New York,03/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7582750496,-73.9691297196,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.734030999699996,-73.98648799979999,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739531000300005,-73.9828890001,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7347696296,-73.9862593499,New York,01/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73534819,-73.9858456699,New York,01/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7356259996,-73.9853220002,New York,01/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.737596999699996,-73.9838899999,New York,05/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.750716540300004,-73.97408803,New York,03/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7613410003,-73.9238699996,Queens,06/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7475433697,-73.8840978596,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.816692299699994,-73.9167190694,Bronx,10/26/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.767770130100004,-73.9556905705,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7422112697,-73.9189950494,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7089220198,-73.9433896499,Brooklyn,05/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7421802504,-73.91873252010001,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6875936079,-73.9870681135,Brooklyn,05/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7286218403,-73.9844186704,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8475737003,-73.9007664401,Bronx,06/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6638268899,-73.95077465060001,Brooklyn,04/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.820796110399996,-73.9432849801,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.762999999899996,-73.91325900060001,Queens,07/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6635500702,-73.9912456206,Brooklyn,01/16/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6418583499,-73.9628358496,Brooklyn,04/23/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6742659996,-73.9502339997,Brooklyn,03/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8218279997,-73.9392859997,New York,09/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8077790003,-73.9452530004,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.676409000300005,-73.98029,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8215955102,-73.9426993,New York,02/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8372410002,-73.9428759995,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.801948879899996,-73.94925909979999,New York,02/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8023498802,-73.9569800899,New York,10/31/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8185049997,-73.9411520005,New York,09/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.816445560300004,-73.9426485804,New York,01/11/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8010010503,-73.9614484103,New York,02/28/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8201217,-73.9437762198,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8153757699,-73.9475033596,New York,11/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8106900002,-73.9506579997,New York,10/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8056149998,-73.9505569995,New York,01/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7361409996,-73.9891830001,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.862050980300005,-73.8960785422,Bronx,06/25/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7663861201,-73.92045929,Queens,07/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6735269999,-73.9500780003,Brooklyn,03/08/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.80918643,-73.9485913301,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.808793089699996,-73.9481246405,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.854764000100005,-73.911439,Bronx,01/17/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8166920002,-73.9196370003,Bronx,03/30/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.69210611,-73.86199361,Queens,08/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8171412003,-73.9162084399,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8621522603,-73.89839588,Bronx,10/26/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8170569901,-73.94601240989999,New York,03/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8166889202,-73.9465480905,New York,10/31/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.81629802,-73.9465580503,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8229240001,-73.94172299979999,New York,10/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8090218697,-73.9486888994,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8057924743,-73.9542627365,New York,08/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8087332904,-73.9520930895,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8113622604,-73.9501596701,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8109888097,-73.9507106495,New York,03/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8078177198,-73.9458303502,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8089390002,-73.9480109997,New York,12/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8143100004,-73.93021700060001,Bronx,06/28/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8135947398,-73.9304002806,Bronx,05/16/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8124409104,-73.9292502903,Bronx,10/19/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8122533801,-73.9286645299,Bronx,10/19/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.80854426,-73.9290737804,Bronx,10/26/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7987858204,-73.9397652399,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.791898349600004,-73.94459619979999,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.5714370196,-74.1089594206,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5717815197,-74.10861367,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5728504701,-74.1075388295,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5734659897,-74.1069168496,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5755531802,-74.1048165004,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.57681082,-74.10356538010001,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5796341198,-74.1006515799,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5798387882,-74.1000124032,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8438812102,-73.91292955,Bronx,07/05/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8351329804,-73.9197970301,Bronx,07/20/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8483300003,-73.9099000005,Bronx,06/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.762463999699996,-73.9262620002,Queens,05/17/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7628960004,-73.9654430004,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7630370002,-73.9656530001,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7646530003,-73.9640970001,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76475912,-73.9640994396,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7659016497,-73.9631802505,New York,06/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7660599997,-73.9635540005,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7665880203,-73.9631359902,New York,07/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7673089996,-73.9625299998,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.767234059699994,-73.9622898196,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7676549998,-73.9619709998,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7678548897,-73.9622546401,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7691016202,-73.96132436010001,New York,11/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7689431401,-73.9609519002,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7705449998,-73.9602539997,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.770456,-73.9599280005,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.770946000100004,-73.9594960004,New York,11/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.772143999899995,-73.9586970002,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7723577698,-73.9585402195,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7723666296,-73.9589468301,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7724771003,-73.9587668404,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7730029997,-73.9584740003,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.77281462,-73.9582204299,New York,05/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7737269996,-73.95796499939999,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7742070002,-73.9574989999,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7743499998,-73.95709000020001,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7748550003,-73.9566650005,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7763660499,-73.9559307399,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.776833000100005,-73.9555860005,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7770200297,-73.95513907979999,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7775610002,-73.9547519995,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.777527999600004,-73.9551530001,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.778271999699996,-73.9545409997,New York,06/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.778003000300004,-73.9544280005,New York,03/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7785999997,-73.9539900004,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7786051397,-73.9537154496,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7787919999,-73.9536629999,New York,05/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.779038,-73.9539800004,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76298745,-73.9742539496,New York,07/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7795349999,-73.9537149999,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,BPL,40.6557102014,-73.91493838560001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.779366999699995,-73.9533269996,New York,03/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7796350002,-73.9535369998,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.780782,-73.9524000005,New York,03/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7815029999,-73.9522789999,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7821589999,-73.951699,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7827656197,-73.9512572898,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7832887698,-73.9505618001,New York,07/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7846625399,-73.9498739199,New York,04/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.785817690100004,-73.9490312697,New York,03/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7873089996,-73.94794399979999,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7896079999,-73.9462620001,New York,03/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.5638429997,-74.1160749996,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.578802000100005,-74.1016690004,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8188859899,-73.92921293970001,Bronx,11/08/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.82755199,-73.9259025195,Bronx,09/13/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8273559302,-73.92522252020001,Bronx,07/19/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8278247098,-73.9248328005,Bronx,07/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.831543000399996,-73.9226449896,Bronx,01/17/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8681002896,-73.9007058795,Bronx,01/22/2018 12:00:00 AM +0000,2,Bronx +Free,Harlem,40.8128710001,-73.9493459995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8670379998,-73.8965369996,Bronx,11/08/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8665882698,-73.8956537199,Bronx,11/11/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.677588779699995,-73.9730618003,Brooklyn,04/24/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6761340504,-73.9718355401,Brooklyn,02/21/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6727480001,-73.9626939995,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6756590004,-73.9635529999,Brooklyn,02/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8245780002,-73.9521339999,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.822703960300004,-73.9534982898,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8219179997,-73.9533100001,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8145045398,-73.9593700004,New York,08/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8055162299,-73.9660518305,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8037732698,-73.9362396996,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7995046504,-73.9390354997,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7912030397,-73.94478351,New York,06/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8611500003,-73.8973999995,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.864870000100005,-73.8927999994,Bronx,10/26/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.86366546,-73.9005118697,Bronx,06/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8686984898,-73.9021008994,Bronx,08/01/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8667651899,-73.8978027796,Bronx,11/03/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.5977150787,-74.0838283464,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.598001994499995,-74.0830503856,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5813039997,-74.1120102804,Staten Island,03/02/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5816768496,-74.1113503895,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.58738523,-74.10370821949999,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.589032000100005,-74.1016839999,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5899077101,-74.10090436,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5914355797,-74.1008615799,Staten Island,05/25/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.6794854302,-73.9495224996,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6788179999,-73.94957900050001,Brooklyn,05/31/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6775039998,-73.9496970302,Brooklyn,05/08/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6721144898,-73.95021389979999,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.669167419699995,-73.9505022998,Brooklyn,05/19/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6624380004,-73.9506050003,Brooklyn,06/14/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.5647890002,-74.115318,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8422026302,-73.91603241979999,Bronx,04/30/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.84425807,-73.9149608299,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.72073474,-73.84588685,Queens,10/27/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7211768396,-73.84560657029999,Queens,01/16/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7481038954,-73.9399519777,Queens,10/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.75114906,-73.9349427403,Queens,01/10/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7514981299,-73.9341573899,Queens,01/09/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7519504418,-73.933379632,Queens,01/09/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.819549,-73.944183,New York,05/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7610889998,-73.9233410004,Queens,10/13/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.75972324,-73.9207631705,Queens,01/12/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.758221000300004,-73.9172299999,Queens,01/09/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7567243102,-73.9143831,Queens,01/10/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.73933161,-73.8781299298,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7407371396,-73.8793601805,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7409367455,-73.87992484850001,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7430237599,-73.88292329949999,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7435632229,-73.88378879060001,Queens,08/31/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7457609198,-73.8894507503,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7460455796,-73.89012128979999,Queens,09/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.756944689899996,-73.9716140006,New York,10/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7853500997,-73.9731374106,New York,05/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.809668192800004,-73.9226228349,Bronx,04/19/2018 12:00:00 AM +0000,2,Bronx +Free,Harlem,40.8041690004,-73.9521330002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8077559301,-73.9190061102,Bronx,05/21/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8063848521,-73.91624535,Bronx,07/11/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8144708151,-73.91295433229999,Bronx,06/25/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8062866423,-73.9179551832,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.814394179699995,-73.9151806494,Bronx,05/31/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8128409098,-73.9160743496,Bronx,05/31/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8071077797,-73.9183430105,Bronx,07/11/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8121265904,-73.9205525,Bronx,04/19/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8193941504,-73.91616313,Bronx,05/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.822111981999996,-73.9148490775,Bronx,04/25/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8220221947,-73.9119525439,Bronx,04/19/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8222148602,-73.94223468050001,New York,10/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8204061702,-73.9403039701,New York,10/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7935699996,-73.9430640004,New York,02/22/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7984879998,-73.9415419998,New York,11/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7986462699,-73.9414215295,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8113250002,-73.95205300020001,New York,12/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.851620179899996,-73.9321865196,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6607317999,-73.9507266396,Brooklyn,03/07/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.657739649899995,-73.9504069702,Brooklyn,03/07/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6872103399,-73.9817193997,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7087798504,-73.9591825697,Brooklyn,01/31/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6782680804,-73.94979844939999,Brooklyn,03/01/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6553200002,-73.9499660006,Brooklyn,03/30/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.764272570100005,-73.9159581002,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7498293203,-73.8841545299,Queens,11/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7202451596,-73.8446442995,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7200169996,-73.8447869999,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.76970698,-73.9166731598,Queens,06/12/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8094122201,-73.9590295104,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.817656,-73.95300700050001,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8271962302,-73.94644065050001,New York,08/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8271950003,-73.9460430004,New York,08/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8303356351,-73.94375597300001,New York,08/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8322830002,-73.9423269996,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8327310701,-73.9422657602,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8334469996,-73.9417399996,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8338608398,-73.9414466096,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8342453801,-73.9411590502,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8340779996,-73.9409190001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.834815140399996,-73.9404773099,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6723020003,-73.9574577399,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6764075102,-73.9636101801,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6874572699,-73.9819201796,Brooklyn,03/29/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6905944398,-73.9879984001,Brooklyn,05/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.798538,-73.9692788598,New York,08/04/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6791430002,-73.9254739997,Brooklyn,01/17/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7418824396,-73.9544797405,Queens,03/22/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7186019996,-73.83818400060001,Queens,07/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7381085702,-73.8857174696,Queens,01/12/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7206713786,-73.84284540739999,Queens,07/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7189530002,-73.8389760002,Queens,03/28/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7179603122,-73.8368052731,Queens,04/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.717212350100006,-73.83549621979999,Queens,03/28/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7148609997,-73.8323409999,Queens,04/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7110719996,-73.8281600001,Queens,04/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7578690696,-73.98570282979999,New York,04/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7576655798,-73.9858784195,New York,03/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7742662798,-73.9809497094,New York,10/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.773657,-73.981404,New York,01/11/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7429193398,-73.9521266595,Queens,03/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7772270002,-73.9827769996,New York,08/03/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7765300602,-73.98301514949999,New York,10/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.775999000300004,-73.9832470005,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7760685196,-73.9836329604,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7666493204,-73.9793497005,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76399635,-73.9847193098,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76361577,-73.9849872301,New York,11/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7541440004,-73.9865810002,New York,07/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7493007304,-73.97481819949999,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748672730100004,-73.9733263796,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7485130002,-73.9733190004,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748578530399996,-73.9729614105,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7492030004,-73.97250700020001,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7492918203,-73.9727505704,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7516323603,-73.9706571702,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7523429702,-73.9705235803,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7534959998,-73.9692610002,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754138,-73.9688359995,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8046971433,-73.9665555628,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7651601902,-73.93142777,Queens,05/17/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6924510598,-73.86085811,Queens,07/13/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7419905501,-73.8810647697,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7594900004,-73.9199260004,Queens,05/17/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7607129999,-73.92287900000001,Queens,06/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7636860602,-73.9150512395,Queens,06/29/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7483497518,-73.8765226834,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7477287797,-73.8836647505,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7224991699,-73.8507769605,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6952479996,-73.8431100002,Queens,07/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7418457098,-73.9196896404,Queens,03/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.747980950300004,-73.8800268197,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7618968787,-73.9250503057,Queens,05/17/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7591689999,-73.9189498694,Queens,05/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.77535675,-73.9801608505,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7638642699,-73.9586014601,New York,05/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7659954899,-73.9575779896,New York,01/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7807159311,-73.958721175,New York,05/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7704587102,-73.9662243504,New York,04/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.78014761,-73.9769321601,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7511816398,-73.9751877801,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7472510597,-73.97424149,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.747966230100005,-73.9734053,New York,04/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7415931604,-73.9783630102,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7380517298,-73.9810551705,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.732205999899996,-73.9848225295,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7496049297,-73.9755337995,New York,12/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7451423403,-73.98250632979999,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.743891209699996,-73.9833700403,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7457398499,-73.9819871099,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7439617902,-73.9854284901,New York,10/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.746511299699996,-73.9840991095,New York,02/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7464647798,-73.98371405,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7425728603,-73.98664796029999,New York,05/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7534138897,-73.96665144020001,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7619932397,-73.9599982201,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.758154540300005,-73.9627933503,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7630796436,-73.9626851397,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761748249899995,-73.96331112989999,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7591491495,-73.9651624171,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754391849899996,-73.9691841999,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7624168698,-73.96315851060001,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7577338402,-73.9754336596,New York,05/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7543114499,-73.9883300405,New York,01/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.753978009899996,-73.9883216297,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.751273859899996,-73.9910694205,New York,03/27/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7304959996,-73.9807679998,New York,07/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7549525102,-73.9801932498,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7460048596,-73.9902895702,New York,02/23/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7381085104,-73.99615312979999,New York,06/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7460004698,-73.9906943198,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7386399497,-73.9960566702,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7427227402,-73.9927995001,New York,07/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7170947502,-73.99058102020001,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7600949999,-73.92121600029999,Queens,08/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.758591250100004,-73.9180156101,Queens,07/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7496062996,-73.8850720402,Queens,11/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7649022898,-73.9173027598,Queens,04/06/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8094371503,-73.9518403198,New York,10/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.805827,-73.95040700060001,New York,09/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8092681002,-73.95170768060001,New York,10/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8119734304,-73.9459169204,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.801938,-73.9570669995,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8148634898,-73.9478766996,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8089964896,-73.9521491403,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7254560003,-73.95149600010001,Brooklyn,06/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.778232556999995,-73.95282089310001,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8187686798,-73.91644985020001,Bronx,04/20/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7619102704,-73.9601529002,New York,03/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8240811002,-73.9375077506,New York,09/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8100233403,-73.95141341,New York,10/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.747538820100004,-73.8854976102,Queens,09/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7364264703,-73.9847497301,New York,02/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7367890002,-73.9844860004,New York,03/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739528,-73.9824889997,New York,12/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74004081,-73.98242355949999,New York,02/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7399752003,-73.9820348404,New York,07/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7402459997,-73.9823829995,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.740218230100005,-73.9819884796,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.740572999899996,-73.9817289996,New York,01/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7407749998,-73.9815760003,New York,01/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.740989269699995,-73.9817322798,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7412907901,-73.9815117598,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7411689798,-73.98129694020001,New York,02/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.742006999699996,-73.98068,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7424329998,-73.9803709999,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760206930100004,-73.9671770504,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7427360003,-73.98045937020001,New York,06/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7430351998,-73.9802417295,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.743093000100004,-73.9798129995,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7434936197,-73.97990736050001,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7439503403,-73.9796546501,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8053020002,-73.9530539997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7438759999,-73.9793160002,New York,01/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.745115999999996,-73.9784159994,New York,02/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7462169998,-73.9776139995,New York,05/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.736214000000004,-73.9848999999,New York,07/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7464490002,-73.9774439997,New York,02/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7358389998,-73.9851710002,New York,02/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.736331690300005,-73.9851234804,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7465388803,-73.9776875803,New York,01/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7470499996,-73.9770050006,New York,03/23/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7476720001,-73.97696500020001,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7477878602,-73.97677658,New York,03/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7482890004,-73.9761049995,New York,02/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7488187996,-73.9760262905,New York,04/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7487327964,-73.975363394,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7493411197,-73.97518641949999,New York,10/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7489140001,-73.97564800010001,New York,03/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7496575497,-73.97510442,New York,01/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7501559997,-73.9747410004,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7503779696,-73.9748877697,New York,02/29/2016 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.744570308600004,-74.0045885368,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7509597301,-73.97446736,New York,02/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7514057799,-73.9741424698,New York,02/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7514970004,-73.97376499960001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7526228501,-73.9732538494,New York,06/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7526648201,-73.97284287020001,New York,01/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7531959996,-73.9724450003,New York,02/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.753149,-73.9728679996,New York,12/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6608710001,-73.9973869996,Brooklyn,04/26/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6599019996,-73.9988219998,Brooklyn,04/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.659745440100004,-73.99898563970001,Brooklyn,04/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6560110001,-74.00244600020001,Brooklyn,04/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6537111097,-74.00525819,Brooklyn,06/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6625879999,-73.9922589998,Brooklyn,02/06/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6736920002,-73.9628690295,Brooklyn,03/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6608519998,-73.9605809997,Brooklyn,03/07/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.658911000100005,-73.9604260003,Brooklyn,05/11/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.651026759699995,-73.9465128704,Brooklyn,10/30/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6510468198,-73.9439693004,Brooklyn,10/30/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6513409997,-73.9401659996,Brooklyn,07/24/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6975628749,-73.83628040100001,Queens,07/31/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6988997204,-73.83383438989999,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6997544704,-73.83160898979999,Queens,09/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.699894949699996,-73.8310976698,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6998411202,-73.8309361303,Queens,06/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7001586499,-73.8309137005,Queens,06/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7008644474,-73.8265510208,Queens,06/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7009264299,-73.82620488020001,Queens,06/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.713166969899994,-73.8298089703,Queens,07/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7176640001,-73.8362619997,Queens,07/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7192930002,-73.8397409997,Queens,07/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.72152582,-73.8448837098,Queens,07/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7260820004,-73.852197,Queens,08/16/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7262412682,-73.8525186408,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7282989999,-73.85807600060001,Queens,11/30/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.706822167,-73.9505289535,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6952250002,-73.8452259994,Queens,07/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7014189996,-73.942908,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.705370959899994,-73.9499634901,Brooklyn,02/27/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7072078604,-73.9541948804,Brooklyn,02/27/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.817926189699996,-73.9152620201,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.76453793,-73.9305991796,Queens,05/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7616457802,-73.9248555498,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6673461304,-73.9508092804,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7857738758,-73.9724627925,New York,04/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7528042196,-74.0043127105,New York,09/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7521982303,-74.0047558099,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7519691297,-74.0049121698,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7512339196,-74.0051459001,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.788705099699996,-73.97641054,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.782539970100004,-73.97518370979999,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7844233402,-73.9738161405,New York,04/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.750745580300006,-74.00581554989999,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7455959604,-73.97544550949999,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7442592202,-73.9832481797,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.790300790399996,-73.9729813495,New York,05/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7928044103,-73.9677040505,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.785681849899994,-73.9726287095,New York,06/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7464256102,-73.98581619,New York,06/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7824098201,-73.9789998702,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7181977604,-74.0000479997,New York,05/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7145080596,-73.9924896103,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.763690600000004,-73.9622354699,New York,03/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7328843297,-74.0002384104,New York,05/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7838253796,-73.97424890010001,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7683739304,-73.9553617495,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7302576896,-74.0066285504,New York,01/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7561741504,-73.9678290802,New York,02/04/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7422341101,-73.97789516,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7304230002,-73.7771289997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,ALTICEUSA,40.864729999699996,-73.89903699999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Downtown Brooklyn,40.693350000100004,-73.9857879998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6918900002,-73.98248800020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6936359997,-73.9883469996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,BPL,40.6834588325,-73.9785414755,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8060908156,-73.9647620603,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.590391335999996,-74.1011372894,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Free,BPL,40.651925081,-73.9582421825,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,QPL,40.6925280532,-73.760108788,Saint Albans,09/09/9999 12:00:00 AM +0000,4,Queens +Free,NYPL,40.8379589117,-73.9235396129,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,AT&T,40.7474,-74.0051,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.744127560900004,-74.0050435071,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8471000002,-73.822992,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,BPL,40.6344746052,-73.8893046486,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.7133330705,-73.9964898664,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Harlem,40.8105319999,-73.9436709996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Downtown Brooklyn,40.6893339998,-73.9819749997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7302550001,-73.9979910002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8369719996,-73.8937700003,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8420460002,-73.89409399979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.6566519998,-73.9502000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8275519998,-73.9291579998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8466060004,-73.8239519999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.8126809996,-73.9393569996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,NYPL,40.9037227771,-73.9027725428,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.8574218942,-73.9093163503,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,NYPL,40.849494080599996,-73.91757752720001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,QPL,40.738581457399995,-73.8767587664,Elmhurst,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Harlem,40.8109750004,-73.9470290001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,City Tech,40.6950378997,-73.9873314006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.739154,-73.7377180002,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5844850004,-73.8112169996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Downtown Brooklyn,40.6912240004,-73.9866200005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.729564,-74.00546199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8371840004,-73.8903949996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8729359999,-73.8386710005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.734545160399996,-73.8747045798,Queens,12/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7349230004,-73.8754599998,Queens,11/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.737205959899995,-73.8809396799,Queens,07/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7382079996,-73.8862530003,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7412880001,-73.9046559997,Queens,01/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.742911999899995,-73.9185400005,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.743062709600004,-73.9206815,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7432210004,-73.92125700060001,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7438230004,-73.9264550003,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.74387741,-73.9269261104,Queens,02/21/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7439759997,-73.9277719998,Queens,07/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7441509999,-73.9298290005,Queens,02/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7442780003,-73.930399,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.743183790399996,-73.9516172002,Queens,03/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.86732884,-73.8971929304,Bronx,02/08/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.867370549899995,-73.89764488,Bronx,07/19/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.751909999999995,-73.9299919994,Queens,04/23/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7519530003,-73.92749299970001,Queens,04/09/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7533698704,-73.91232033,Queens,10/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8394450001,-73.9158480005,Bronx,09/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8530279998,-73.9050759997,Bronx,06/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8577559996,-73.9010909997,Bronx,06/29/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7894240003,-73.9753910002,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7894572696,-73.9750410102,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7900530001,-73.97476700050001,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7902349997,-73.9747929999,New York,10/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7906900002,-73.9744619998,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7909012896,-73.9743022899,New York,06/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7908180001,-73.9748099995,New York,06/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7914009998,-73.97382200050001,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7919430003,-73.9734249998,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7922549998,-73.973761,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7925344702,-73.9731247295,New York,09/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7926955504,-73.9734376096,New York,03/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.792887080300005,-73.9732885705,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7422159999,-73.9489159998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7934258096,-73.97304342,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7931808696,-73.9726485797,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7938216596,-73.9720347904,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7868960404,-73.97748309,New York,05/04/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7880016796,-73.9765510306,New York,08/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.819885999600004,-73.9268469996,Bronx,07/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.69934194,-73.99218679020001,Brooklyn,02/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6975877701,-73.9930285697,Brooklyn,02/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6960704402,-73.99126379,Brooklyn,03/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6912339801,-73.98638427,Brooklyn,04/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6905880002,-73.9844810002,Brooklyn,03/07/2017 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7188030002,-74.0001930005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7127920003,-73.9514180005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.714063,-73.9502750004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7072199999,-74.0133420002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7132430002,-74.0034010005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.725915,-73.994659,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.707557,-74.01186199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7064760002,-74.0110559999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7252969996,-73.9962039999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.713065000300006,-74.0041310006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.6940999996,-73.9917769995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.692179999699995,-73.9859419996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6906349998,-73.9818239995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6836659996,-73.9788099995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6773159996,-73.9831100002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.670846999999995,-73.9883019997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6551440004,-74.0035489995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6489389998,-74.0100059996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6844600003,-73.9768900005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.67705,-73.97236700010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7119259997,-73.9406699994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.706152,-73.9331469999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7066070001,-73.9229129996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7038110001,-73.91842500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6998139996,-73.911586,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6956020001,-73.9040840004,Brooklyn,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.688764,-73.9040460002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6828289997,-73.90524900060001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6993369998,-73.9905309995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7814329998,-73.9721430001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7886439998,-73.9762179998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.785868,-73.9689159997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7916440001,-73.964694,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7939190003,-73.9723230003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7514310003,-73.9760409999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7517759996,-73.9768479998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.755982999699995,-73.9862289995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7554770002,-73.9876909994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.754672000300005,-73.9867539996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.75529,-73.9874950005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7527689999,-73.9791889998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7542029997,-73.94283600050001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.742625999699996,-73.9535809999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7624560002,-73.9859840003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8337730002,-73.91843799979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.6871190004,-73.9753749995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7734399996,-73.982209,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7784529998,-73.9819700004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7755940001,-73.9764099997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7839339996,-73.97991700060001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.762862000300004,-73.9816369997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.739776999600004,-74.0025779999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7478460004,-73.9459999997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.746554000100005,-73.9438320005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7440649999,-73.9497239997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7496690003,-73.8984529996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7331059999,-73.8692290003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7563120003,-73.9133330004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7528849997,-73.9060059998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7424539997,-73.8820169994,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7091789996,-73.82057399989999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7216909996,-73.8445210005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7054599997,-73.8107079997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.702147,-73.8011089995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7126459999,-73.7838169995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7370150002,-73.8772229998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.752038999899995,-73.9287809998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7489729996,-73.9372430005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7568789998,-73.92074000000001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7075639996,-73.8033260001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7104700003,-73.7936040004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7298459999,-73.86160399970001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7265229999,-73.8527189995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7004860003,-73.8079690002,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7183309998,-73.8373240005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7144409996,-73.8310080003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7466439998,-73.8913379995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.7994460003,-73.9683789996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7906000001,-73.9474780003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.796092,-73.9614539999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7950200001,-73.9442500004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.802098,-73.9496249998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7986290002,-73.9416169996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8050850004,-73.9548820005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.807722000300004,-73.9641099999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7633851196,-73.99286971020001,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.779453812,-73.9596808907,New York,03/29/2018 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8104760003,-73.9261380001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8132239996,-73.9298490005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.81841,-73.9267179996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8183750003,-73.927351,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.7378259997,-74.0002009995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.740893000199996,-74.00169000060001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7373350001,-73.99678599960001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7382279997,-73.9962090004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7410399998,-73.99787099939999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7440809999,-73.9956570005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7459060003,-73.998041,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7413029996,-73.9893439998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7428779998,-73.99282099979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7398639996,-73.9865989997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7472150001,-73.9933650002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7454939996,-73.9886910005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7430700002,-73.9842639999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.746081,-73.9820760003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.749567,-73.9879499996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7497190002,-73.9878229999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7542219997,-73.984569,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.6923379996,-73.9873420005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.688484,-73.9850010004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6861130002,-73.9739459997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.683263000000004,-73.9658379998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6813799998,-73.95684799989999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.680438000100004,-73.95042599979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6799210004,-73.9408590005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6793640004,-73.93072900029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.678822,-73.9207860005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6783399999,-73.91194599960001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6745419999,-73.8965479999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.672709999999995,-73.89035800020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6741299997,-73.88074999979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.675377000000005,-73.8721059998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6770439996,-73.86505,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.699743,-73.9868849999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6861450003,-73.99086200010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.680303000100004,-73.9950480005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.660365000000006,-73.9794929997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.650782000300005,-73.9757760002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7060920002,-73.9503080006,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7003770003,-73.9502339996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.694568,-73.9490459996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6896269998,-73.9535219995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6888729998,-73.9600699997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6880890003,-73.96683899989999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6932189996,-73.9899979996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6905449996,-73.9850649999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.684358999699995,-73.977666,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6752350001,-73.97104599939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6719869996,-73.9643750004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6706820004,-73.9581310004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.669846999899995,-73.9504660004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6693989998,-73.9421610003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.668896999999994,-73.9329419998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.667882999899994,-73.950683,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6627419999,-73.9508499995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6508430002,-73.94957499979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.645097999899996,-73.9489589995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.639967000300004,-73.9484109997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6328359998,-73.9476420002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7300540003,-73.99106999979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.692403999999996,-73.9901509997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.704817,-74.0140649998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.707738999600004,-73.93985000010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7522869999,-73.9933909997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.750372999999996,-73.9910570003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.735735999999996,-73.9905680004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.703086999899995,-74.01299399999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.660397000100005,-73.9980909997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6413620004,-74.0178809996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6297420001,-74.0255099998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.622687000300004,-74.0283980001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.6166219996,-74.03087599979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7347890004,-73.9907300001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8407189999,-73.9395609999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.6662709997,-73.9803050005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.644040999699996,-73.9796779997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.849504999699995,-73.9335959996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.840556,-73.9401330003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.6882459999,-73.9804920002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7940422696,-73.9725670799,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7944615402,-73.97157309010001,New York,11/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.794895659699996,-73.9718562601,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7951709998,-73.9710479995,New York,07/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7957737998,-73.97075189979999,New York,10/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.796138,-73.97093100000001,New York,06/29/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7965659996,-73.97061900029999,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7967612497,-73.97065154970001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7964252499,-73.9702790098,New York,08/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.797148,-73.9696300005,New York,09/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.797248000399996,-73.96968099989999,New York,03/14/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7973940001,-73.9700109995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7977016599,-73.96924393180001,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7980180002,-73.96955699989999,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7986500004,-73.969093,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7990423498,-73.9688090703,New York,11/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7989539998,-73.9683259995,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.79933067,-73.9682322398,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7996298998,-73.9679696198,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7573080004,-73.9897349997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7586629997,-73.9813289995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7599009999,-73.9841389996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7617279996,-73.9838489999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7639709998,-73.977451,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7646640002,-73.98065800020001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7682469997,-73.98192900000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7682959999,-73.9817360003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7601669999,-73.9752239999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7648109998,-73.9733470005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7538209997,-73.98196299979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8014976504,-73.9610815306,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7250035503,-73.9870394796,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7603599798,-73.9616631402,New York,03/14/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.776918230300005,-73.9615395699,New York,04/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7705165703,-73.9666044601,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7667359996,-73.9693080004,New York,04/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7870788398,-73.9718814398,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7927028702,-73.9714873104,New York,12/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7773770899,-73.9784436769,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7217730004,-73.9894209994,New York,01/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7299626777,-73.9832812963,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7648210002,-73.97030300029999,New York,05/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7427595303,-73.9864199897,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7420808202,-73.9932612895,New York,07/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75254917,-73.9667285303,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7536605997,-73.96964871029999,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76527687,-73.99149319,New York,01/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7441540003,-73.9761899997,New York,03/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.751539621599996,-73.9903653318,New York,06/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73230778,-74.0064153596,New York,01/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8005915797,-73.9617454,New York,03/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7818611901,-73.9791374698,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7343925094,-73.9991515911,New York,04/25/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7568787502,-73.9638179695,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7577012196,-73.9632133202,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7576043101,-73.9635934496,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7387978296,-74.00528545979999,New York,11/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.731592520300005,-74.0064075097,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7195037597,-73.9894742696,New York,12/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7863345297,-73.9720551496,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7697493901,-73.9667634197,New York,10/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8167513196,-73.9229548104,Bronx,03/06/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7276498662,-73.9851189886,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8007811996,-73.94624056,New York,01/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7365398796,-73.9971555402,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.85225684,-73.9314519794,New York,03/29/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.84727016,-73.93536211050001,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.777606139899994,-73.96094657020001,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.844689118000005,-73.9372591728,New York,10/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8029842296,-73.9678553303,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7920347996,-73.9719786503,New York,02/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8233610002,-73.9488440004,New York,10/31/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7491525303,-73.9918012296,New York,02/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7479040004,-73.9927449999,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7623284104,-73.9936423401,New York,03/19/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7684058604,-73.9892145197,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7435101303,-73.9925082602,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7487722201,-73.9886730297,New York,11/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7717801999,-73.9827730899,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7604737301,-73.9760991397,New York,10/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.757957912100004,-73.9779256304,New York,10/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7394089998,-73.9867120002,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.732391470399996,-73.9913869298,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7295577004,-74.0023853495,New York,04/26/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7351870003,-73.98987100020001,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7322469404,-73.9851321,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73083305,-73.9830979697,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7329605004,-73.9861729396,New York,10/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7408361702,-73.98813577989999,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.744815,-73.9949859998,New York,07/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.744114000399996,-73.9958919999,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74356421,-73.9961680101,New York,06/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8003002501,-73.9678328695,New York,10/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8005809998,-73.9677820002,New York,07/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8004759302,-73.96818631,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8010840004,-73.9677070001,New York,10/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8021260003,-73.9674930004,New York,07/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8022979999,-73.9675849996,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8024549997,-73.9681490001,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.802736000100005,-73.9674610002,New York,10/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8029440002,-73.96737900000001,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8037209997,-73.967381,New York,06/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.803861230100004,-73.9667075405,New York,10/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.804959150100004,-73.9659025004,New York,08/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8052796404,-73.9656695196,New York,11/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8054720404,-73.9655261001,New York,06/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7509655202,-73.9741480605,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8059230004,-73.9650810003,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8188133802,-73.9557958904,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.82027959,-73.95526804010001,New York,07/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8207641899,-73.9548075299,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8223190004,-73.9536760001,New York,07/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.822495,-73.9530069995,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8233259996,-73.95304100050001,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.82382134,-73.9525814198,New York,07/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8080412401,-73.9642103405,New York,06/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8075079996,-73.9644880005,New York,09/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8072958097,-73.9646455504,New York,03/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8067600001,-73.9651080001,New York,02/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8245589998,-73.95159699989999,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8250896001,-73.9516556999,New York,07/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.82531855,-73.95148794949999,New York,08/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8255079999,-73.9509069996,New York,07/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8260900002,-73.9504820004,New York,07/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8263762897,-73.9507163101,New York,10/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8254459996,-73.9478679998,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8254190002,-73.94760400060001,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.5617550602,-74.1121606096,Staten Island,01/25/2017 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.7106879997,-73.83551499939999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.56585176,-74.1142242602,Staten Island,02/22/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5703118496,-74.1096572901,Staten Island,02/22/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5706349998,-74.10991799989999,Staten Island,12/09/2016 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5728531898,-74.1140866602,Staten Island,12/09/2016 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5777710002,-74.1023100002,Staten Island,02/22/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5909830002,-74.1007320003,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5983967327,-74.0826213606,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.8676269996,-73.89872999949999,Bronx,07/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.86782871,-73.8995757,Bronx,07/19/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8623132896,-73.9003140397,Bronx,09/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8606299996,-73.9023689997,Bronx,07/01/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8314669998,-73.92174699979999,Bronx,06/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8276553203,-73.9239059906,Bronx,05/11/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8530429796,-73.9055522198,Bronx,07/01/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7538990003,-73.9723259995,New York,02/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7540920002,-73.9721800002,New York,02/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7545117501,-73.9718760897,New York,02/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7552334798,-73.9710322796,New York,03/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7558772099,-73.9710296798,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7553562302,-73.9712509599,New York,03/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7563263302,-73.9701433003,New York,05/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7565048904,-73.97011147010001,New York,03/08/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75691135,-73.9698162101,New York,03/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.757113219699995,-73.97008839,New York,02/05/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7577290503,-73.9696149601,New York,05/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.757851450100006,-73.9694363096,New York,10/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.758508060100006,-73.96896330060001,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.758993,-73.9687269997,New York,07/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7584030197,-73.9687233604,New York,03/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7588199798,-73.9684169796,New York,03/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7596100004,-73.96824200020001,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7597559996,-73.9680480002,New York,03/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7600051899,-73.9675675095,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7596316398,-73.96782750979999,New York,03/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7601348504,-73.9677744002,New York,03/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760347130300005,-73.9673056697,New York,06/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760456759600004,-73.9675384995,New York,03/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7487578396,-74.0069037095,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7454479996,-73.99453699989999,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7446140001,-73.9850689994,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7315385703,-73.9832456504,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7312190398,-73.9828270001,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8184607404,-73.9146837503,Bronx,12/28/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6706468699,-73.95035244,Brooklyn,02/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6952564004,-73.8428399501,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7460729996,-73.99073199989999,New York,02/04/2019 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.5750829999,-74.0816830001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.575748,-74.0806770005,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5762360004,-74.0799869999,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.576482999899994,-74.0796240005,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5772219997,-74.0785809996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5777720004,-74.0779929997,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5786309996,-74.0768009998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.579580999899996,-74.0763590003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5799860004,-74.0758989996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.710818000100005,-73.8355280003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.709773,-73.8355990001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.639278000000004,-74.03209099979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.639231,-74.0319329997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6392919997,-74.0318959995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6586619999,-73.8877700002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6581479998,-73.88744,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893339998,-73.9819749997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893339998,-73.9819749997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6912240004,-73.9866200005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6896330001,-73.98316500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6896330001,-73.98316500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6896330001,-73.98316500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6896330001,-73.98316500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6896330001,-73.98316500029999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692144,-73.98678700010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.692144,-73.98678700010001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6893339998,-73.9819749997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.685308000300004,-73.9744719998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.685308000300004,-73.9744719998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6888250003,-73.9823019994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6888250003,-73.9823019994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693069,-73.9900889997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693069,-73.9900889997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8061604421,-73.9433155984,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Downtown Brooklyn,40.693069,-73.9900889997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.693069,-73.9900889997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6966519998,-73.9860739998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6966519998,-73.9860739998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6966519998,-73.9860739998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7205079996,-73.8849379996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7182240002,-73.8825239996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7197,-73.87711899989999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.685616000100005,-73.8528820004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6862450002,-73.8538539995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6870730002,-73.8531530003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6868889999,-73.8540349997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7316749998,-73.8656070003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7322529996,-73.8656229995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7326860002,-73.86511899999999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7316749998,-73.8656070003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7316749998,-73.8656070003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7200789997,-73.9495109998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7200789997,-73.9495109998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050100003,-73.94488499970001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8050129997,-73.9449089999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7574180004,-73.96508399999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7574180004,-73.96508399999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.579985999899996,-73.8298549997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5778459998,-73.8357610006,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5778779999,-73.83578799989999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5778979997,-73.8356010003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5778710002,-73.8356640004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5964789998,-73.7449879997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.5963739997,-73.7453890003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7606442899,-73.9671011703,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76148352,-73.9667792596,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761095159899995,-73.96707578,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7616041202,-73.9663882998,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7414870902,-73.9814803898,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7388270003,-73.98288599979999,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7661480002,-73.97972100060001,New York,07/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7645131699,-73.9771946802,New York,05/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754950979600004,-73.98389867979999,New York,04/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.740530999899995,-74.0018069998,New York,07/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739447470100004,-74.0025999796,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7411230003,-74.0013699997,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7413733801,-74.0015011405,New York,10/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7416214198,-74.0013208604,New York,06/28/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7415099998,-74.0010880005,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7420464798,-74.00071086,New York,06/28/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7422970001,-74.0009399996,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7426889998,-74.0002380003,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7672709996,-73.9822469999,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7435786998,-73.9998942199,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7439192899,-73.9996452,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7442600298,-73.9993978695,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7444030004,-73.9989929999,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7445840504,-73.9991595801,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74475,-73.99873600020001,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7479050003,-73.9964340004,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7450387297,-73.9985293495,New York,06/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7634240001,-73.9850609999,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7454434797,-73.9986190896,New York,06/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7575440004,-73.9894090003,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7577530003,-73.9892520005,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7459240701,-73.9977566103,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7666381202,-73.9830918204,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7669397902,-73.9831552895,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7669632497,-73.9828532102,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.754139920300005,-73.99233961,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7630513597,-73.98583017050001,New York,10/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7473771699,-73.9971268697,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.749122000199996,-73.9955530001,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.767357589899994,-73.9825635397,New York,08/03/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.749536999600004,-73.9952449995,New York,10/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7497280003,-73.9951099996,New York,06/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7498274798,-73.99552538,New York,05/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7498799998,-73.9949930003,New York,06/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7502267799,-73.9950513698,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7526997904,-73.99275641979999,New York,05/17/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7529490003,-73.99276199970001,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7531073198,-73.9929471697,New York,06/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7534247499,-73.99271840029999,New York,04/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.853157,-73.9054030004,Bronx,07/07/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8186759997,-73.9281649995,Bronx,07/19/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8189419998,-73.92837,Bronx,06/15/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.706357360300004,-73.7922051799,Queens,09/28/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7065069998,-73.7923679995,Queens,09/28/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7139829999,-73.8308380002,Queens,11/30/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7157580003,-73.8335130003,Queens,07/29/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8269279998,-73.9498679995,New York,03/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8270435498,-73.9502261503,New York,09/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8273201098,-73.9500258603,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,Chelsea,40.7431196183,-74.0083050731,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.6041370002,-73.9304300001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.673751999699995,-73.9348919995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6927230002,-73.9830250002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Downtown Brooklyn,40.6899669996,-73.9920830005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,NYPL,40.8543469054,-73.88788942890001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.827931999899995,-73.9495810001,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8275800002,-73.9492880002,New York,08/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.828097,-73.9490170004,New York,08/03/2016 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7574180004,-73.96508399999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.6571,-73.90269999979999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Partner Site,Partner,40.7359999997,-73.99039999989999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8285418496,-73.9491322603,New York,08/03/2016 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.596321000399996,-73.7457909995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.596196999600004,-73.7462619996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.595714,-73.74724700029999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.595592000100005,-73.7476120003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687262000100006,-73.7698139996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6871599997,-73.76981500000001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.687191,-73.7695589996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.625382,-74.1145699996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6257559997,-74.1147380001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.624698000100004,-74.1142109998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.644816000300004,-74.1004430003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.644885000100004,-74.1010380003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6451229997,-74.1016290006,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6453170004,-74.1022850003,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6454389996,-74.1028799998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.645453,-74.1033979995,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6417979996,-74.1018460004,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.641982000300004,-74.1018689994,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6438200001,-74.10240400020001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6417970004,-74.1020020001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6419629997,-74.1020260005,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6437820001,-74.1022450006,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.642339000300005,-74.10268800060001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6431670002,-74.1022850005,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6023489997,-73.7514020003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6023489997,-73.7514020003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6023489997,-73.7514020003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6023489997,-73.7514020003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6270889996,-74.07729199949999,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.62686,-74.0758479994,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6265790002,-74.076173,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7936690002,-73.9368160005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7933050002,-73.9367590004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7937480002,-73.93624200010001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6373170004,-74.0767629998,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.729564,-74.00546199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.729564,-74.00546199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.729564,-74.00546199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.729564,-74.00546199979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.732142000399996,-73.9986290001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7318629998,-73.9977779999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7313510002,-73.9968399996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7309750001,-73.99607899979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.729855999899996,-73.9974759995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7303940002,-73.998476,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7318440003,-73.99904199939999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8184990004,-73.9596900005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.8205899999,-73.9596899999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7474540003,-73.9105879998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7475179999,-73.9105759999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7462380001,-73.9094150003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7456910004,-73.9074080005,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7468529998,-73.9088800003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7474499996,-73.9095319999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.519237000100006,-74.1882309996,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5181669997,-74.1897649997,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5172829997,-74.1909960002,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5170449997,-74.19032299979999,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.5171480001,-74.18982300020001,Staten Island,09/09/9999 12:00:00 AM +0000,5,Staten Island +Limited Free,SPECTRUM,40.6940950002,-73.8213339996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.8590219998,-73.9341799996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8161090002,-73.9177570002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.6783340002,-73.9053160001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8290371297,-73.94886891029999,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.829423999999996,-73.9480459995,New York,03/13/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.829341376500004,-73.94764707350001,New York,03/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8296750001,-73.947866,New York,08/04/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8298089998,-73.9482010003,New York,04/25/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8302090304,-73.94791147939999,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8305860002,-73.9471950001,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8308759996,-73.9469860003,New York,08/04/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8339105402,-73.94477152,New York,07/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8345130003,-73.94432899979999,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8347220004,-73.9441759994,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8355459996,-73.9440110002,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8351350001,-73.9438729996,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8360810002,-73.9431859998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8365009996,-73.9427870001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.837103999899995,-73.942288,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6829320003,-73.9639590003,Brooklyn,01/25/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6878896096,-73.9782016897,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6805560003,-73.9513809996,Brooklyn,04/10/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.680014999899996,-73.943843,Brooklyn,06/12/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6789599998,-73.9244239997,Brooklyn,11/08/2016 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6792320002,-73.9270980001,Brooklyn,11/09/2016 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6786540002,-73.916507,Brooklyn,02/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6783539998,-73.9110080002,Brooklyn,12/09/2016 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6780789998,-73.9083739999,Brooklyn,01/17/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.684317,-73.8696359995,Brooklyn,03/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6687999996,-73.9587170006,Brooklyn,12/05/2016 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6696520904,-73.9582614199,Brooklyn,12/09/2016 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.670317760399996,-73.9581718604,Brooklyn,02/08/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6886723001,-73.9837100796,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.688449430300004,-73.98247226,Brooklyn,01/30/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6878136202,-73.9812839303,Brooklyn,01/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6869605882,-73.9763707911,Brooklyn,01/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6656179996,-73.989159,Brooklyn,06/12/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6673049996,-73.9879789994,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.680731799600004,-73.9774460905,Brooklyn,06/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7444500197,-73.9318752102,Queens,02/02/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7180331004,-74.0010155599,New York,09/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7178279998,-74.0009619996,New York,09/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7174821097,-74.00151938020001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7172410401,-74.0017392899,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7166819999,-74.0022530004,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.716033000100005,-74.0025699994,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.715484090100006,-74.0026667299,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7338917502,-73.9910560302,New York,11/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7311570103,-73.9859280201,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7310799999,-73.9857390004,New York,09/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7536420896,-73.99256280979999,New York,04/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7541709998,-73.9918709995,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7546658704,-73.9918160201,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7548808397,-73.9916616201,New York,05/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.755280839899996,-73.9913708599,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.755499999899996,-73.9914250005,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7558780897,-73.99093285,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7586660798,-73.9889004894,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.758830970300004,-73.9887795405,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75910666,-73.9885794596,New York,04/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7592214898,-73.9881871698,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73967748,-74.0027353096,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76107343,-73.9872514905,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761094000300005,-73.9868280003,New York,04/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7398460004,-74.00230500020001,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.739718559699995,-74.0022165604,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7622461604,-73.9862930105,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7621510004,-73.98605199949999,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.762331,-73.9859229995,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7638027502,-73.9851574099,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7643380004,-73.98476700020001,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7646461904,-73.9842294506,New York,04/01/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7642122496,-73.9845445901,New York,05/26/2016 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6941650003,-73.8223679995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6950769996,-73.82281699949999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6946240002,-73.82059299939999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.6951320003,-73.8208410002,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7102499999,-73.9979799999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.703889999699996,-73.78570499989999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.702982000300004,-73.7851219996,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.702056999899995,-73.7845289994,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7027070003,-73.78359400020001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7033729996,-73.7839240004,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7042649997,-73.7845620001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,ALTICEUSA,40.5982570002,-74.0001399999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5976999998,-74.0002700005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5975849999,-74.0011120005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5971760002,-74.0002820001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5971540003,-73.9996850002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.597160999699994,-74.0013589994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.59815,-74.00113500020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.873009999699995,-73.8713490004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8539799998,-73.8704719995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6570279997,-73.9031520003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6572129998,-73.9018079999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6567,-73.9028000001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.656399999899996,-73.9027000004,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6560999997,-73.9025000003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6562000002,-73.9025700001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.656100000100004,-73.90275999970001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6521000004,-73.9028599995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6559,-73.9028500002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8423270004,-73.9097340002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8417079998,-73.9096310003,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.841119999600004,-73.9054799995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8416000001,-73.90710000039999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.841220000199996,-73.90678,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8377000004,-73.9084800001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8381400003,-73.90833999979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.5737390002,-73.9818939996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5732180002,-73.9818270003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.573218,-73.981826,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.574278,-73.9819959997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5745820002,-73.9779010002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5749150004,-73.9778670001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5740619998,-73.9779820001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5734910002,-73.9778629995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5735269999,-73.9775629995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5735509999,-73.9773659998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5735509999,-73.9773659998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5734390003,-73.9782970003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.573432000000004,-73.9785099996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5733810002,-73.9788719999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5733840001,-73.9789369997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5733840001,-73.9789369997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5734280001,-73.9798529994,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.573409999999996,-73.9803439997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5732760001,-73.9798549998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.573266000100006,-73.980012,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5732530004,-73.9801429996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.573227000100005,-73.9803560002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5727839996,-73.98562899939999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.572674999600004,-73.9856179998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.572674999600004,-73.9856179998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5726690002,-73.9857469998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5726690002,-73.9857469998,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.5726640003,-73.9860389995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8344799999,-73.8975819996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8346230004,-73.89817099999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8356910004,-73.90008900000001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8366600004,-73.8949810001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.837117000300005,-73.89330999970001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.837502999899996,-73.89489299979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8375389998,-73.89365799939999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8377039998,-73.8903759998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.838058000100006,-73.8934780004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.838217,-73.8933879996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8389879996,-73.8887140003,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8389890001,-73.88871399979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8397090001,-73.8874640004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8397099997,-73.8877570001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8398919996,-73.89537000060001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7647439998,-73.9844699996,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7648231801,-73.9840994396,New York,03/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7649329098,-73.9843334296,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7655220001,-73.98359299970001,New York,04/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76560072,-73.9838451898,New York,04/04/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7660114202,-73.9835476106,New York,07/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7605630403,-73.9875147795,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7597462397,-73.9881138599,New York,04/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7624306402,-73.9861557696,New York,06/22/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760283,-73.98731299970001,New York,10/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7608949997,-73.9868360005,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761816000100005,-73.98660599979999,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75993686,-73.9879722901,New York,07/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7596559697,-73.9877715503,New York,04/06/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7403098004,-73.9842789005,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7400924501,-73.9839245296,New York,05/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7410117,-73.9837671095,New York,05/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7414809996,-73.9831980002,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.742138999699996,-73.9830479999,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7598074004,-73.9703691795,New York,03/23/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.743229000300005,-73.98179700029999,New York,05/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7606309803,-73.9686705499,New York,02/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7526364918,-73.9747172258,New York,07/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7433844603,-73.98203855050001,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7458238101,-73.98003507060001,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74950281,-73.9771946004,New York,10/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7501325296,-73.9767944005,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.811109000100004,-73.95234300050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7500145002,-73.9765185096,New York,07/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75027937,-73.97701180039999,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7508327297,-73.9768167294,New York,05/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7567902499,-73.9712627303,New York,07/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7577931902,-73.97170312989999,New York,04/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7598006399,-73.97007156020001,New York,05/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761730859800004,-73.9688018206,New York,06/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761559230399996,-73.9683905603,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74832255,-73.9823715995,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.762324369699996,-73.9722031699,New York,06/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74983207,-73.9815598001,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.749982341,-73.981236067,New York,07/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7523352603,-73.9797382406,New York,05/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7525448197,-73.9795852,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7530030498,-73.9792460102,New York,05/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.756742180399996,-73.97652976010001,New York,05/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.758632940300004,-73.9753407498,New York,05/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7586493104,-73.97514297010001,New York,05/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7597119996,-73.9740080001,New York,05/11/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76024945,-73.9736332004,New York,03/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7609633299,-73.9731014194,New York,05/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7615107141,-73.9727446193,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7624669504,-73.9723575596,New York,06/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7305370603,-73.9863894501,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7308809997,-73.9858820004,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7302489998,-73.9863479994,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.729235999699995,-73.9870809999,New York,11/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.728755649899995,-73.9879144395,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7284803901,-73.98787592010001,New York,09/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7282316904,-73.9878175205,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7280269996,-73.9879650002,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7281577404,-73.98812504,New York,12/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.727459860399996,-73.9883716696,New York,09/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.726263,-73.9892480004,New York,11/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7264712603,-73.9893506197,New York,10/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7260490003,-73.98940299979999,New York,09/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.725641000100005,-73.9896980003,New York,09/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.721716,-73.9933430003,New York,08/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7205963599,-73.9940750904,New York,08/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7199070697,-73.9940664903,New York,08/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7580220003,-73.9858319996,New York,05/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7599709996,-73.9843419996,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7597130004,-73.9841309995,New York,06/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7603263604,-73.9836932896,New York,06/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.760526620300006,-73.9835375003,New York,05/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7611419703,-73.98309027970001,New York,04/14/2017 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.840107000399996,-73.8952190002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8405259998,-73.8951679995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.840663999899995,-73.8983720002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7036540004,-73.9426819995,Brooklyn,06/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8327489804,-73.9418865199,New York,05/11/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7483110396,-73.8781654794,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8226634696,-73.9492593904,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7615072602,-73.9242178096,Queens,04/02/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7673067797,-73.92211147,Queens,01/10/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8006900003,-73.96194569010001,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7457559801,-73.98452873020001,New York,02/23/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.72311759,-74.0081387795,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.722870420300005,-74.0079797698,New York,10/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7469663803,-73.88970545,Queens,08/30/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8468747696,-73.93565287,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.694696859699995,-73.8478443998,Queens,09/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7366389404,-73.9932824699,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.731922889699995,-73.9851310702,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74741879,-73.9933633305,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7391065499,-73.9991502702,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7449331704,-73.9914723702,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7361648398,-73.98229109,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8073775198,-73.91700042,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7474899403,-73.88468950010001,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7588176498,-73.9184941204,Queens,12/19/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.79237863,-73.96800953,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7476669898,-73.9414197295,Queens,10/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.730767219899995,-73.98284709020001,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7428279203,-73.9930034798,New York,07/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7252909902,-73.9868423694,New York,10/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7470591104,-73.88881990029999,Queens,08/30/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.80439875,-73.9663281704,New York,01/12/2018 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8142290003,-73.9407699999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7467111201,-73.8921447697,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7504575598,-73.9718933404,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7669517303,-73.95646462,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7430972996,-73.9928116002,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8180290699,-73.94192414,New York,09/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.846623330199996,-73.9358333302,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7476268704,-73.8846435204,Queens,02/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7405129801,-73.9943931396,New York,04/25/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7415149301,-73.99396309999999,New York,10/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7425484198,-73.9932091604,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.72921987,-73.98397944989999,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7238070503,-73.9882241804,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7876978298,-73.9714131104,New York,04/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7491116999,-73.8706241603,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7488783104,-73.87146338,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7569439897,-73.9640703796,New York,03/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.75607269,-73.9129746597,Queens,05/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.74670669,-73.89344842,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.799472459899995,-73.9631832,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7473911282,-73.986182923,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.78944465,-73.9738667995,New York,05/24/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.78409642,-73.97404944029999,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7765734296,-73.97905068,New York,01/23/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.720188340300005,-73.99306771010001,New York,10/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7638452403,-73.9587340399,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748842000100005,-74.0067042995,New York,05/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8004045493,-73.961891271,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7448470402,-73.9916770497,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.71716821,-73.9990794096,New York,12/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.799528000100004,-73.943527,New York,06/21/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7629208804,-73.9597150298,New York,06/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.681345640100005,-73.9940469403,Brooklyn,02/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7674325818,-73.92268747930001,Queens,10/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7627200002,-73.9268080003,Queens,05/23/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7383510498,-74.0054655899,New York,10/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7163550002,-73.9911979994,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.856420842,-73.92841498760001,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6919022901,-73.8632615496,Queens,08/09/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6926719996,-73.8575469999,Queens,01/16/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7340359998,-73.9912080005,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8529172596,-73.93082739020001,New York,03/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.761640000199996,-73.98299600050001,New York,11/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.762365999800004,-73.9825520001,New York,11/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.763036000300005,-73.981711,New York,06/29/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7647181,-73.9804775498,New York,11/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7648745404,-73.9807308903,New York,11/11/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7933100004,-73.9710446606,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7935244003,-73.97088676989999,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7938669996,-73.9703759997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7939621902,-73.9705711698,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7946725903,-73.9700510404,New York,03/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7946040002,-73.9698370004,New York,10/07/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.795005000100005,-73.9698099995,New York,06/29/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7955439399,-73.9694188694,New York,08/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7959509996,-73.9688490003,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.796532999600004,-73.9686819996,New York,07/26/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.79673748,-73.9686468399,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.796373999800004,-73.96854200029999,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.797178239699996,-73.9682234604,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7973909997,-73.9680700005,New York,08/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7977000702,-73.9678404595,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7978261899,-73.96774773029999,New York,10/10/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.79802733,-73.9676033202,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7984766396,-73.9672652899,New York,06/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7779209998,-73.9818530004,New York,02/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7783809997,-73.9816649995,New York,02/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8035790002,-73.9669169996,New York,06/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8048349996,-73.96599500020001,New York,07/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7990884397,-73.9668303,New York,07/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8271170004,-73.9497379999,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8444929304,-73.9387876797,New York,02/25/2019 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.80050433,-73.9661066097,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.80104973,-73.9649389104,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8099650001,-73.9588889999,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8101630002,-73.9587440005,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8103780004,-73.9583210001,New York,09/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.813668989899995,-73.9561899699,New York,09/13/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.81515,-73.9548369997,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8155937704,-73.95450726050001,New York,06/14/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8157995997,-73.9543637097,New York,09/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.818371000300004,-73.95275500000001,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.819599999699996,-73.951942,New York,09/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8209600004,-73.9508629994,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8222119996,-73.9501179997,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8222678302,-73.94990559979999,New York,03/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8226334502,-73.9496402898,New York,05/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.82312201,-73.9490138205,New York,08/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8246459998,-73.9479090001,New York,05/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.825947479899995,-73.9469531398,New York,07/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.572100260300004,-74.1126735896,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.5726200002,-74.1133829994,Staten Island,02/28/2017 12:00:00 AM +0000,5,Staten Island +Free,LinkNYC - Citybridge,40.763741999699995,-73.9714240001,New York,04/17/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7033110802,-74.009984574,New York,02/27/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7039097998,-74.0090824103,New York,02/23/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7050441799,-74.0073218795,New York,04/27/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7062418498,-74.0062435098,New York,02/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7435585598,-73.9537388605,Queens,03/14/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7018269999,-73.8076610003,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.701852999699994,-73.80647699939999,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7034524852,-73.80035217689999,Queens,02/03/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7040202805,-73.79869023010001,Queens,10/20/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7033519999,-73.7999229995,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7058390602,-73.7937300503,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.705143000300005,-73.7958969999,Queens,11/30/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.705971429899996,-73.7937866001,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7027335102,-73.80201889050001,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7037685601,-73.7993433197,Queens,09/28/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7038952802,-73.7990175101,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7039283997,-73.7984702796,Queens,02/03/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7043551002,-73.7978653104,Queens,09/30/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7042158498,-73.7977431196,Queens,02/03/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7046091101,-73.7968005602,Queens,09/23/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7046865504,-73.7966203899,Queens,10/07/2016 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.76210714,-73.9658092805,New York,03/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6914500002,-73.866734,Queens,07/21/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.846646411100004,-73.9013916343,Bronx,08/01/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7474512003,-73.8849874295,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8026068804,-73.9567962603,New York,10/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7466703704,-73.8924897106,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7482526704,-73.8787156896,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7489710101,-73.8704887004,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7379697602,-73.9885842996,New York,02/07/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.77237316,-73.96483886979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7478885501,-74.0041770604,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7327473603,-73.9861074097,New York,10/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6947255403,-73.9942270995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8156958896,-73.9470017398,New York,10/25/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8174459997,-73.9155739995,Bronx,12/28/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8623473096,-73.89389439979999,Bronx,06/21/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.817235,-73.9158292599,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7668938002,-73.92154563060001,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8402480002,-73.91819400039999,Bronx,07/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7659299666,-73.9198816613,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7466238169,-73.8923556535,Queens,08/24/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.849486000300004,-73.9109309999,Bronx,07/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.737627,-73.9809679999,New York,07/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7417107404,-73.9779728296,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8349041574,-73.9182258958,Bronx,07/02/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.751295680300004,-73.9715336004,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7651194601,-73.9576938298,New York,06/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7466513201,-73.9746857401,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7421256498,-73.9935218294,New York,07/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7953990002,-73.96925399979999,New York,11/23/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8040469596,-73.9521399306,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8059502804,-73.9507542794,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8199162104,-73.94055194970001,New York,09/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8192928954,-73.9410178513,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8172640003,-73.9420560004,New York,06/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8167799498,-73.9428424895,New York,01/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8141560001,-73.9447560005,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8126109997,-73.9454579999,New York,02/23/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8062489603,-73.95009458979999,New York,01/11/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8223078,-73.9424445303,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8471969,-73.9351479,New York,04/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7494585504,-73.8864554498,Queens,04/12/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.749532494200004,-73.8858318964,Queens,04/12/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7333421001,-73.8708377505,Queens,04/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.726494999699995,-73.8531379997,Queens,08/16/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7266949997,-73.8539290005,Queens,07/12/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7270949999,-73.854789,Queens,04/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.753121769,-73.92071953439999,Queens,04/02/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7518341599,-73.97059305970001,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7647862798,-73.9915898402,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7406856598,-73.99799948,New York,01/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7370879999,-73.9813679001,New York,12/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8231244696,-73.9382020003,New York,09/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7485946813,-73.87420306920001,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7373730603,-73.9811585896,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.776237530100005,-73.9823380401,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7316019796,-73.98254790979999,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8033996004,-73.95600349029999,New York,11/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7472234296,-73.888492,Queens,08/25/2017 12:00:00 AM +0000,4,Queens +Limited Free,ALTICEUSA,40.8180629998,-73.82386999939999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.74816825,-73.8795105804,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8267070896,-73.9466648005,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7367556104,-73.9818615695,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.747395250100006,-73.9738281895,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7481208296,-73.97360371,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.822853889899996,-73.95329055010001,New York,04/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7931613601,-73.9708938601,New York,05/31/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7467977541,-73.8912148551,Queens,08/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.747742377,-73.8822703105,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7479706799,-73.8813874197,Queens,10/04/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.748869202,-73.8729332959,Queens,09/08/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7487084199,-73.8743928903,Queens,10/11/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7522785196,-73.9290546296,Queens,02/21/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8178214504,-73.9420745097,New York,02/28/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7698161856,-73.9819292623,New York,09/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.769838680300005,-73.9825019806,New York,09/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7738059998,-73.9819300003,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7747231097,-73.98200508020001,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7749130002,-73.98238800029999,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.817894000100004,-73.9476490003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.774894000399996,-73.98257100010001,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.774757,-73.9825069995,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.77464584,-73.9823998204,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7753902798,-73.9818287895,New York,07/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7755320001,-73.9819730005,New York,06/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7757949602,-73.9823502104,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7760098403,-73.9819629397,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.776311030100004,-73.9819373898,New York,10/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7765229904,-73.9823207904,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7764731903,-73.9824295903,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.777137170100005,-73.9819042697,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7781480403,-73.9822546394,New York,08/03/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7786068298,-73.9821781901,New York,05/24/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.77909594,-73.9820543906,New York,05/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7793308304,-73.9819899499,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7800194697,-73.9813959896,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7803212402,-73.9813105102,New York,05/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7808257501,-73.9811727605,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7808189904,-73.98157091,New York,11/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7809927904,-73.9815226701,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.781474000100005,-73.9809609996,New York,05/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7817067602,-73.9808266995,New York,05/26/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.781843,-73.9808330006,New York,06/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7819839998,-73.9811840001,New York,10/16/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7825280802,-73.9805862897,New York,06/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7831213602,-73.98070878,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7832260001,-73.980756,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7831909998,-73.9802530004,New York,05/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7833730004,-73.9801230005,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7836487504,-73.9797521795,New York,04/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7839199998,-73.9797079998,New York,09/30/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7841280003,-73.9799960002,New York,01/03/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7844629997,-73.9797450001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.78459233,-73.9797623098,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7847119996,-73.9795639995,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.784563999899994,-73.9792239996,New York,11/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.785005,-73.9787810002,New York,05/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.78506646,-73.97865815029999,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7851345299,-73.97924562060001,New York,11/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7857532904,-73.9787853502,New York,02/27/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7858130496,-73.9782931195,New York,05/05/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7856129837,-73.97843851420001,New York,07/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7862227298,-73.97799346949999,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7862069998,-73.9776979995,New York,04/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7865194849,-73.9777652896,New York,08/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7864029998,-73.9783000001,New York,04/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7870279999,-73.9778319997,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7872468703,-73.97764564939999,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7550431903,-73.96855237,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7551930002,-73.9684439997,New York,02/15/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7553349997,-73.9680410002,New York,02/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7560184099,-73.9674671596,New York,03/05/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7567799996,-73.96697999989999,New York,02/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.757417389699995,-73.9665275198,New York,04/11/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7579749002,-73.9664213597,New York,12/15/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7730060002,-73.958069,New York,07/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7253349798,-74.0075537698,New York,12/29/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.726888999699995,-74.0074869997,New York,04/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7279779796,-74.0069865805,New York,05/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7484820003,-73.9960119997,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7434138298,-74.0037246599,New York,05/08/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7311601601,-73.9940792201,New York,08/01/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7298307302,-73.9866583699,New York,10/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7310149996,-73.9886849997,New York,10/27/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7315704903,-73.9885791396,New York,08/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7317766402,-73.9881351497,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7320389999,-73.98793800029999,New York,04/07/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7214250004,-73.9934539999,New York,08/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7664368997,-73.9902617698,New York,11/08/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.747990929699995,-73.8820337001,Queens,09/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7476029702,-73.8857513003,Queens,10/13/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7480196204,-73.88092372979999,Queens,10/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.747412276300004,-73.8876150889,Queens,08/25/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.851329000300005,-73.90826600060001,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8531218103,-73.9308175998,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8357290003,-73.94007499979999,New York,12/02/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8467710003,-73.9354559996,New York,02/20/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8486730402,-73.9340696,New York,04/19/2018 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7596,-73.8300300003,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7963604555,-73.938107317,New York,02/17/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8506830002,-73.9328699994,New York,04/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8001415301,-73.9449661597,New York,01/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8038335133,-73.9381070746,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8349739998,-73.94543599970001,New York,12/20/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8511646002,-73.9322489595,New York,03/29/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6939628501,-73.8511847395,Queens,07/13/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.79682481,-73.9377662796,New York,03/31/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8014045553,-73.9347043914,New York,10/18/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8490930197,-73.9000305104,Bronx,06/16/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7557639996,-73.9123360004,Queens,05/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7591990002,-73.9196490004,Queens,05/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.655745777,-74.0065489228,Brooklyn,05/02/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8194884499,-73.9136680302,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8332853204,-73.9450915903,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.76266328,-73.9125412895,Queens,02/28/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8188603597,-73.9142424597,Bronx,03/06/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.766766290300005,-73.9212759595,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.802368329800004,-73.9567615597,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8177319996,-73.82367999979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8030242502,-73.9564881305,New York,10/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8524117299,-73.93133833,New York,02/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8518783096,-73.9089756596,Bronx,08/01/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7029359998,-73.94256300020001,Brooklyn,05/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7022469998,-73.9422870004,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7541882302,-73.9293986402,Queens,03/14/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7319595701,-73.9838022902,New York,11/18/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8600269997,-73.8933429997,Bronx,03/30/2017 12:00:00 AM +0000,2,Bronx +Free,Spot On Networks,40.7557352682,-73.944584432,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7557352682,-73.944584432,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7557352682,-73.944584432,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Spot On Networks,40.7557352682,-73.944584432,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8539303602,-73.90750182020001,Bronx,01/12/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6767519999,-73.9499350005,Brooklyn,03/08/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.76191296,-73.9109386203,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.676976000100005,-73.9499159996,Brooklyn,03/07/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6821325357,-73.9739328218,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7274890097,-73.85607115970001,Queens,04/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7278500002,-73.8568480001,Queens,04/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.728067323299996,-73.8574456475,Queens,04/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.698280380300005,-73.9925546004,Brooklyn,06/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.688038759899996,-73.9818721505,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6857869996,-73.9733200004,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6845490504,-73.9702246199,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6835909998,-73.9670929999,Brooklyn,05/01/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6830769204,-73.9646334495,Brooklyn,07/25/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6821995703,-73.9616482003,Brooklyn,05/19/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6681559998,-73.9588009997,Brooklyn,04/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6547043304,-73.9595678795,Brooklyn,04/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.65245679,-73.95911529039999,Brooklyn,04/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.65002892,-73.95850153,Brooklyn,05/01/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6491150004,-73.9582909997,Brooklyn,05/31/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6461791804,-73.9582034701,Brooklyn,09/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6452617002,-73.9581440801,Brooklyn,09/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.647887370300005,-73.9580506303,Brooklyn,09/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6439408604,-73.9579902597,Brooklyn,09/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6713549996,-73.9577929997,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6751409996,-73.9562809996,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6757450701,-73.9562115797,Brooklyn,03/12/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6767139998,-73.9558579996,Brooklyn,01/22/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.681853000100006,-73.9585350001,Brooklyn,04/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6813152498,-73.9562012602,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6809512605,-73.9557035628,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7179195799,-73.99494009,New York,09/19/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7196789998,-74.0049739996,New York,05/02/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7302316504,-73.98926217,New York,10/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7192149999,-73.98985000020001,New York,12/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7235799299,-73.9883900999,New York,06/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7277935103,-73.9853250299,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.728126000100005,-73.9850830003,New York,06/05/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.728823999999996,-73.9846799999,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73030035,-73.98319263,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7363870002,-73.99474199939999,New York,12/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.748615339699995,-73.99248875020001,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7455781404,-73.99100163,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.744668,-73.9913750003,New York,11/02/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7459684803,-73.9940391305,New York,01/18/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.746154849899995,-73.9942858303,New York,10/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7447420003,-73.9853669995,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7451260004,-73.9846389996,New York,11/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7467088697,-73.9862071101,New York,08/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7471144096,-73.9852446298,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.747736640300005,-73.9848334404,New York,03/23/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.689026000300004,-73.980862,Brooklyn,07/25/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7468807499,-73.9810645003,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.750488429899995,-73.9911302495,New York,01/18/2017 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.840705999899996,-73.8913980006,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8407099999,-73.89604500029999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.841199999699995,-73.89190000020001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8416259997,-73.8929609999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.841693,-73.89439899999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8418200002,-73.8942809999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8814770003,-73.8979510005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8164360002,-73.8382920001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8215990001,-73.8266539996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8210679998,-73.8262099995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8206190002,-73.8258389999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.816357,-73.83744899979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.815346000000005,-73.8376710001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8164119996,-73.8339979997,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.818752,-73.82455999999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8146900002,-73.8985019994,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.6230009997,-73.9846889999,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.623314999899996,-73.9852649995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.623831000100004,-73.9835919996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6242439998,-73.9844040002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.623457,-73.9828840002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.8745499996,-73.8655400005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8747789997,-73.8650050004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.87322,-73.8378249995,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8726760004,-73.8394779999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8736400002,-73.8405860006,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8747769996,-73.8391809994,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.694836999699994,-73.9186270005,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6947690002,-73.9185100003,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.6899200001,-73.9464699996,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,ALTICEUSA,40.824255,-73.8979100001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8077450002,-73.9455019998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.804137999699996,-73.9375940006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8220079997,-73.9536759997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.779492,-73.9555889999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8265509996,-73.95036,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8204209997,-73.9362449999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.824783000100005,-73.9442159994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.830135,-73.9382090005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8305180002,-73.9415139996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8340410001,-73.9448900002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7106880002,-74.0110289997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8360130001,-73.93989199949999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8473909998,-73.939704,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8516949997,-73.9379689997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.855225,-73.9294119998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7681409996,-73.9638700004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7736199998,-73.959874,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.785672,-73.9510700004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8075659999,-73.9192400003,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8039669996,-73.9668470005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.6795059998,-73.9554309998,Brooklyn,03/13/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6799869996,-73.9494730004,Brooklyn,06/09/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6802726598,-73.9461549296,Brooklyn,07/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6801973802,-73.9449029294,Brooklyn,03/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6800589999,-73.9422599997,Brooklyn,03/24/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6797519303,-73.9391010097,Brooklyn,04/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6798153564,-73.9376270019,Brooklyn,04/10/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.679560679699996,-73.9354997296,Brooklyn,03/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6793810001,-73.9298339995,Brooklyn,09/27/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6790149999,-73.9218019995,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6782855904,-73.9121847599,Brooklyn,04/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6783118499,-73.9102526605,Brooklyn,04/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6780357896,-73.9076195796,Brooklyn,05/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7335789997,-73.8716480005,Queens,04/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7338890201,-73.8727094898,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7341620004,-73.8736580003,Queens,04/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7353873998,-73.87625423029999,Queens,04/10/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.736272999899995,-73.877364,Queens,06/13/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7369819998,-73.8803150002,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7377769999,-73.8839780002,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.739393000300005,-73.8924979998,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7399219998,-73.8952959997,Queens,10/06/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7407269999,-73.8998640006,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7409619997,-73.9018859995,Queens,03/28/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7415059999,-73.906524,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7414339625,-73.9075341577,Queens,04/05/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7425327137,-73.9153424486,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7433122897,-73.9224012404,Queens,03/20/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7435549998,-73.9241560003,Queens,04/18/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.744608000300005,-73.93372599979999,Queens,04/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8307462415,-73.94344594100001,New York,04/26/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8293894852,-73.94470426720001,New York,01/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8145386902,-73.9552802595,New York,01/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8188679796,-73.9518703894,New York,05/21/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8180228598,-73.9563738205,New York,04/25/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7470746897,-73.94279179,Queens,04/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7466391803,-73.9441382803,Queens,04/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.746088630100004,-73.9452460497,Queens,03/29/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7454177202,-73.9469370802,Queens,03/29/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.74492115,-73.94766295939999,Queens,03/29/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7433823398,-73.95080577,Queens,05/30/2018 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7426309099,-73.95267765979999,Queens,03/22/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7422871697,-73.9533364696,Queens,03/22/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8101585602,-73.9278859696,Bronx,02/22/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.817512190100004,-73.92888643020001,Bronx,06/28/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8167516434,-73.9292428486,Bronx,07/20/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.815039310100005,-73.92988536979999,Bronx,06/28/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6515900001,-73.9321869996,Brooklyn,07/24/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6662028303,-73.9509133495,Brooklyn,03/01/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8214369997,-73.9123269999,Bronx,05/22/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8611743803,-73.89644355029999,Bronx,04/18/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8626850001,-73.9075480003,Bronx,05/11/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6428750299,-73.9575743895,Brooklyn,02/14/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8135750296,-73.9194912204,Bronx,04/20/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6759649997,-73.9500080005,Brooklyn,03/08/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8543584601,-73.9299203504,New York,03/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.846926174699995,-73.8982205565,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6956027998,-73.8396065896,Queens,07/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.6701150004,-73.9506270004,Brooklyn,02/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.670147000300005,-73.9503969996,Brooklyn,02/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7630995,-73.92793528050001,Queens,06/14/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8201024948,-73.9128382274,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7308775698,-73.9816594495,New York,05/12/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8447557297,-73.93684736979999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8173806385,-73.9425246333,New York,03/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.84740591,-73.8999483497,Bronx,01/12/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8538420303,-73.90938798020001,Bronx,02/08/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.848729999899994,-73.9114700003,Bronx,07/13/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8185596503,-73.9143003497,Bronx,03/30/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.819567999600004,-73.9133879999,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.6952050001,-73.8455950001,Queens,07/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.692465999999996,-73.8589480005,Queens,07/07/2017 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.7636209999,-73.9142589999,Queens,06/26/2017 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.8006050001,-73.9581590002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7990749998,-73.9518220006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8053679999,-73.9140419999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.7186109996,-73.988114,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7183150004,-73.98743700050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8654909999,-73.9272709996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.808719,-73.90765700060001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8121180001,-73.9040979999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.7137150001,-73.99017300050001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.710373999699996,-74.0075820002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7094160002,-74.0065709997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7103679997,-74.0095089997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7141700004,-73.999153,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7101969998,-74.0076910006,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8238799999,-73.9364700001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.868072,-73.9198989998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7025659997,-73.8168590001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,Transit Wireless,40.816103999999996,-73.8964350002,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.723401999800004,-73.989938,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8748110001,-73.8788550004,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8732440004,-73.88713800010001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.866978,-73.893509,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8393059996,-73.9133999997,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8209480003,-73.89054900020001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.762659999600004,-73.9672579996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8504100004,-73.905227,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.8458999998,-73.9101360005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.827904999699996,-73.9256510001,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.7575519997,-73.96905500000001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7625260003,-73.9679670005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.757106999899996,-73.9719199995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.8612959996,-73.8977489998,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.856092999699996,-73.900741,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Free,Transit Wireless,40.7173040001,-73.9568719995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7145650003,-73.9440530001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7313520001,-73.954449,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.724635,-73.95127700020001,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Free,Transit Wireless,40.7243290001,-73.9977020004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7334220001,-74.0029059997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.728250999800004,-74.0053669994,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.730328000300005,-73.9926289996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7195270002,-74.0017749996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7183829998,-74.0004599995,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7132820004,-74.0069779997,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7202799998,-73.99391499949999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.718092,-73.9998919998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.732848999699996,-73.9861220002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7309530004,-73.98162799970001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7323380004,-74.0004949999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7262270004,-74.0037389996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7208240001,-74.005229,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7141109999,-74.0085849996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7125819997,-74.0097810003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7182669996,-73.9937530003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7228539996,-74.0062770002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7193180004,-74.0068860004,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7154780001,-74.0092660005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7075130004,-74.01378299999999,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.713051,-74.008811,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.7068209998,-74.0090999996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,Transit Wireless,40.722301,-73.9971410001,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,ALTICEUSA,40.8284679996,-73.9226999999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8280570004,-73.9230749999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.827830999899994,-73.9226770005,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.827440999699995,-73.9230079996,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,ALTICEUSA,40.8275629998,-73.92363099949999,Bronx,09/09/9999 12:00:00 AM +0000,2,Bronx +Limited Free,SPECTRUM,40.7712289998,-73.8090500002,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.769751,-73.8087479997,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7696520002,-73.8075079998,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7695360002,-73.80596799979999,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7705319997,-73.8055069995,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Limited Free,SPECTRUM,40.7544469998,-73.9842219998,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Free,AT&T,40.6943000001,-73.9988000002,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7543170004,-73.9830940005,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7531639996,-73.9839640002,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.753689,-73.9847689996,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.7527760003,-73.9816400003,New York,09/09/9999 12:00:00 AM +0000,1,Manhattan +Limited Free,SPECTRUM,40.6806299998,-73.9953819995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.6806299998,-73.9953819995,Brooklyn,09/09/9999 12:00:00 AM +0000,3,Brooklyn +Limited Free,SPECTRUM,40.7514100001,-73.8247200001,Queens,09/09/9999 12:00:00 AM +0000,4,Queens +Free,LinkNYC - Citybridge,40.8188969998,-73.9446589997,New York,10/21/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8296624199,-73.9484220401,New York,12/16/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74349317,-73.9859719702,New York,12/09/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8112048322,-73.9538487753,New York,08/30/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.733400000100005,-73.9548860003,Brooklyn,04/14/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8355860004,-73.9395889996,New York,12/12/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7144457399,-73.94594832060001,Brooklyn,04/24/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.8166790698,-73.9164828502,Bronx,12/22/2016 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8012472402,-73.96127852949999,New York,02/28/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7139130004,-73.94420600000001,Brooklyn,04/28/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.846169,-73.9019509996,Bronx,08/01/2017 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8133669998,-73.91962478,Bronx,04/13/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8108964904,-73.9214341701,Bronx,04/20/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.8000700004,-73.9467620005,New York,01/25/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8121627203,-73.91646686979999,Bronx,05/31/2018 12:00:00 AM +0000,2,Bronx +Free,LinkNYC - Citybridge,40.7368059996,-73.99351300000001,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7622099,-73.9818807495,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7437055002,-73.9920842906,New York,12/04/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7502370001,-73.9773059999,New York,10/06/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7668612898,-73.9834415303,New York,07/13/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.71665239,-73.9976459205,New York,12/14/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.778140819899996,-73.9525943999,New York,02/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.716869,-73.9975780003,New York,12/15/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7380968799,-73.9877384002,New York,05/24/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7470545903,-73.9810610705,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7666831948,-73.9902100974,New York,05/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7619766,-73.9632130101,New York,02/16/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7672819398,-73.95653659999999,New York,01/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.72048554,-73.98908323,New York,12/28/2016 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74671976,-73.98593571970001,New York,05/10/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7621465403,-73.9633536195,New York,02/22/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7634190001,-73.9669949995,New York,06/22/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7676631208,-73.9894897367,New York,11/01/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7640969998,-73.9708230005,New York,05/19/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7715263503,-73.9531379105,New York,05/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7549906503,-73.9651895595,New York,05/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7550806998,-73.9654342501,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7686489997,-73.9675969997,New York,06/09/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.73598356,-73.9979901195,New York,06/12/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7632177698,-73.9592016295,New York,03/06/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7294490804,-73.98430909,New York,04/04/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7574067997,-73.9782582898,New York,10/20/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.774497529899996,-73.9637226904,New York,04/10/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7263038204,-73.9861043296,New York,05/30/2017 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.74303942,-73.9773073197,New York,05/17/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.8502484998,-73.9329264404,New York,03/09/2018 12:00:00 AM +0000,1,Manhattan +Free,LinkNYC - Citybridge,40.7009900003,-73.9420899997,Brooklyn,04/04/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7016675303,-73.9424885901,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7015421937,-73.9421692826,Brooklyn,08/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7019303441,-73.9422392381,Brooklyn,08/02/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7050604197,-73.94291757939999,Brooklyn,05/23/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6406662264,-73.9559243864,Brooklyn,05/10/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6385596088,-73.9536032378,Brooklyn,05/11/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6321347751,-73.9467806744,Brooklyn,06/18/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7281329999,-73.9534389996,Brooklyn,04/14/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.7177702401,-73.9578690795,Brooklyn,01/29/2019 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6745555102,-73.9819357697,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6776196104,-73.9797379904,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6795679997,-73.9740600005,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6796385842,-73.9743714568,Brooklyn,01/16/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6784527942,-73.9732527771,Brooklyn,03/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6641759998,-73.99035300050001,Brooklyn,07/25/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6685332303,-73.9869562905,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6690179999,-73.9863169995,Brooklyn,06/05/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6697310497,-73.98595804,Brooklyn,04/03/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6735340004,-73.982789,Brooklyn,08/15/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6836250004,-73.9770060002,Brooklyn,07/25/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6888509997,-73.9806129999,Brooklyn,01/20/2017 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6852183298,-73.9808665896,Brooklyn,01/08/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6868115694,-73.9849696135,Brooklyn,02/01/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.6879008003,-73.9931469103,Brooklyn,01/05/2018 12:00:00 AM +0000,3,Brooklyn +Free,LinkNYC - Citybridge,40.685389756,-73.9945262011,Brooklyn,11/21/2017 12:00:00 AM +0000,3,Brooklyn diff --git a/data/nyc_hotel_data.csv b/data/nyc_hotel_data.csv new file mode 100644 index 00000000..20ab5e98 --- /dev/null +++ b/data/nyc_hotel_data.csv @@ -0,0 +1,2732 @@ +PARID,BOROCODE,BLOCK,LOT,TAXYEAR,STREET NUMBER,STREET NAME,Postcode,BLDG_CLASS,TAXCLASS,OWNER_NAME,Borough,Latitude,Longitude,Community Board,Council District,Census Tract,BIN,BBL,NTA +1000080039,1,8,39,2021,32,PEARL STREET,10004,H3,4,"32 PEARL, LLC",MANHATTAN,40.703235,-74.012421,101,1,9,1078968,1000080039,Battery Park City-Lower Manhattan +1000080051,1,8,51,2021,6,WATER STREET,10004,H2,4,AI IV LLC,MANHATTAN,40.702744,-74.012201,101,1,9,1090472,1000080051,Battery Park City-Lower Manhattan +1000100033,1,10,33,2021,8,STONE STREET,10004,H2,4,"B.H. 8 STONE STREET AG, LLC",MANHATTAN,40.704025,-74.012638,101,1,9,1087618,1000100033,Battery Park City-Lower Manhattan +1000110029,1,11,29,2021,11,STONE STREET,10004,H2,4,"PREMIER EMERALD, LLC",MANHATTAN,40.704039,-74.012317,101,1,9,1000041,1000110029,Battery Park City-Lower Manhattan +1000161301,1,16,1301,2021,102,NORTH END AVENUE,10282,RH,4,GOLDMAN SACHS,MANHATTAN,40.714812,-74.016153,101,1,31703,1085867,1000167512,Battery Park City-Lower Manhattan +1000169002,1,16,9002,2021,2,WEST STREET,10004,RH,4,URBAN COMMONS 2 WEST IV LLC,MANHATTAN,40.705523,-74.01711,101,1,31704,1085789,1000167513,Battery Park City-Lower Manhattan +1000190024,1,19,24,2021,50,TRINITY PLACE,10006,HB,4,"TRINITY NYC HOTEL, LLC",MANHATTAN,40.707632,-74.013068,101,1,13,1000801,1000190024,Battery Park City-Lower Manhattan +1000290043,1,29,43,2021,9,SOUTH WILLIAM STREET,10004,HB,4,SOUTH WILLIAM ST ASSOC,MANHATTAN,40.704703,-74.010398,101,1,9,1000842,1000290043,Battery Park City-Lower Manhattan +1000311002,1,31,1002,2021,75,WALL STREET,10005,RH,4,"75 WALL HOTEL, LLC",MANHATTAN,40.705486,-74.007874,101,1,7,1085950,1000317501,Battery Park City-Lower Manhattan +1000370008,1,37,8,2021,110,WALL STREET,10005,H9,4,110 WALL STREET L.P.,MANHATTAN,40.704638,-74.006694,101,1,7,1000872,1000370008,Battery Park City-Lower Manhattan +1000370013,1,37,13,2021,129,FRONT STREET,10005,H3,4,129 FRONT HOTEL LLC,MANHATTAN,40.705187,-74.006369,101,1,7,1000873,1000370013,Battery Park City-Lower Manhattan +1000390038,1,39,38,2021,126,WATER STREET,10005,H3,4,"HCIN WATER STREET ASSOCIATES, LLC",MANHATTAN,40.705431,-74.007055,101,1,7,1000881,1000390038,Battery Park City-Lower Manhattan +1000390041,1,39,41,2021,120,WATER STREET,10005,HB,4,120-122 WATER STREET LLC,MANHATTAN,40.705299,-74.007242,101,1,7,1000000,1000390041,Battery Park City-Lower Manhattan +1000400016,1,40,16,2021,52,WILLIAM STREET,10005,H3,4,SCCQ DOWNTOWN LLC,MANHATTAN,40.706773,-74.009143,101,1,7,1001006,1000400016,Battery Park City-Lower Manhattan +1000410015,1,41,15,2021,60,PINE STREET,10005,H5,4,GREAT EMPIRE REALTY LLC,MANHATTAN,40.706523,-74.00826,101,1,7,1001008,1000410015,Battery Park City-Lower Manhattan +1000411302,1,41,1302,2021,66,PINE STREET,10005,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.7064,-74.008043,101,1,7,1001007,1000417504,Battery Park City-Lower Manhattan +1000411303,1,41,1303,2021,66,PINE STREET,10005,RH,4,EBNB 70 PINE OWNER LLC,MANHATTAN,40.7064,-74.008043,101,1,7,1001007,1000417504,Battery Park City-Lower Manhattan +1000520008,1,52,8,2021,133,GREENWICH STREET,10006,H2,4,UNION INVESTMENT REAL ESTATE GMBH,MANHATTAN,40.709468,-74.012931,101,1,13,1089248,1000520008,Battery Park City-Lower Manhattan +1000530002,1,53,2,2021,99,WASHINGTON STREET,10006,H2,4,GOLDEN SEAHORSE LLC,MANHATTAN,40.708351,-74.014323,101,1,13,1088967,1000530002,Battery Park City-Lower Manhattan +1000530037,1,53,37,2021,102,GREENWICH STREET,10006,H8,4,THE KING'S COLLEGE,MANHATTAN,40.708321,-74.01345,101,1,13,1001054,1000530037,Battery Park City-Lower Manhattan +1000530038,1,53,38,2021,100,GREENWICH STREET,10006,H2,4,"JITEN HOTEL MANAGEMENT SERVICES, INC.",MANHATTAN,40.708263,-74.013475,101,1,13,1090417,1000530038,Battery Park City-Lower Manhattan +1000531201,1,53,1201,2021,123,WASHINGTON STREET,10006,RH,4,123 WASHINGTON LLC,MANHATTAN,40.709139,-74.01402,101,1,13,1088442,1000537502,Battery Park City-Lower Manhattan +1000550016,1,55,16,2021,80,WEST STREET,10006,H2,4,"HMC FINANCIAL CENTER, INC.",MANHATTAN,40.709493,-74.014976,101,1,13,1001061,1000550016,Battery Park City-Lower Manhattan +1000560001,1,56,1,2021,140,WASHINGTON STREET,10006,H2,4,130 OWNERS GROUP,MANHATTAN,40.709729,-74.013818,101,1,13,1001063,1000560001,Battery Park City-Lower Manhattan +1000640001,1,64,1,2021,51,NASSAU STREET,10038,H2,4,"HCIN MAIDEN HOTEL ASSOCIATES, LLC",MANHATTAN,40.708931,-74.009035,101,1,1502,1079032,1000640001,Battery Park City-Lower Manhattan +1000641102,1,64,1102,2021,170,BROADWAY,10038,RH,4,INN ON BROADWAY US INC.,MANHATTAN,40.709669,-74.010092,101,1,1502,1001088,1000647502,Battery Park City-Lower Manhattan +1000650024,1,65,24,2021,24,JOHN STREET,10038,H1,4,"WESTBURY REALTY ASSOCIATES,LLC",MANHATTAN,40.709765,-74.008765,101,1,1502,1001105,1000650024,Battery Park City-Lower Manhattan +1000651102,1,65,1102,2021,180,BROADWAY,10038,RH,4,180 BROADWAY PROPERTY LLC,MANHATTAN,40.710037,-74.009779,101,1,1502,1001102,1000657502,Battery Park City-Lower Manhattan +1000680016,1,68,16,2021,84,WILLIAM STREET,10038,HS,4,84 WILLIAM STREET PROPERTY OWNER LLC,MANHATTAN,40.708028,-74.007939,101,1,1502,1001113,1000680016,Battery Park City-Lower Manhattan +1000680028,1,68,28,2021,15,GOLD STREET,10038,HB,4,GILD HALL LLC,MANHATTAN,40.707753,-74.006918,101,1,1502,1085948,1000680028,Battery Park City-Lower Manhattan +1000690001,1,69,1,2021,215,PEARL STREET,10038,H2,4,LAM PEARL STREET HOTEL LLC,MANHATTAN,40.707086,-74.006243,101,1,1502,1000000,1000690001,Battery Park City-Lower Manhattan +1000690030,1,69,30,2021,4,PLATT STREET,10038,H3,4,LAM PLATT STREET HOTEL LLC,MANHATTAN,40.707704,-74.006644,101,1,1502,1089243,1000690030,Battery Park City-Lower Manhattan +1000720007,1,72,7,2021,151,MAIDEN LANE,10038,H2,4,151 MAIDEN LLC,MANHATTAN,40.705714,-74.005399,101,1,1502,1082759,1000720007,Battery Park City-Lower Manhattan +1000720012,1,72,12,2021,161,FRONT STREET,10038,H2,4,SEAPORT HEIGHTS LLC,MANHATTAN,40.706051,-74.0051,101,1,1502,1089746,1000720012,Battery Park City-Lower Manhattan +1000780011,1,78,11,2021,55,JOHN STREET,10038,H8,4,55 JOHN STREET DII LLC,MANHATTAN,40.708988,-74.007654,101,1,1502,1079064,1000780011,Battery Park City-Lower Manhattan +1000780020,1,78,20,2021,106,FULTON STREET,10038,H8,4,106 FULTON LLC,MANHATTAN,40.709729,-74.006792,101,1,1502,1001195,1000780020,Battery Park City-Lower Manhattan +1000790010,1,79,10,2021,17,JOHN STREET,10038,HS,4,17 JOHN STREET PROPERTY OWNER LLC,MANHATTAN,40.709916,-74.008949,101,1,1502,1001216,1000790010,Battery Park City-Lower Manhattan +1000800004,1,80,4,2021,55,CHURCH STREET,10007,H1,4,"CDL (NEW YORK) LIMITED, L.P.",MANHATTAN,40.711453,-74.010504,101,1,13,1075702,1000800004,Battery Park City-Lower Manhattan +1000890003,1,89,3,2021,26,ANN STREET,10038,H2,4,143 FULTON STREET DEVELOPMENT OWNER LLC,MANHATTAN,40.710764,-74.007708,101,1,1501,1001244,1000890003,Battery Park City-Lower Manhattan +1000901201,1,90,1201,2021,5,BEEKMAN STREET,10038,RH,4,5 BEEKMAN HOTEL OWNER LLC,MANHATTAN,40.711393,-74.006666,101,1,1501,1079072,1000907503,Battery Park City-Lower Manhattan +1000901202,1,90,1202,2021,123,NASSAU STREET,10038,RH,4,5 BEEKMAN HOTEL OWNER LLC,MANHATTAN,40.710962,-74.006864,101,1,1501,1079072,1000907503,Battery Park City-Lower Manhattan +1000920014,1,92,14,2021,49,ANN STREET,10038,H2,4,FKAL 49 ANN STREET LLC,MANHATTAN,40.710306,-74.006828,101,1,1501,1089326,1000920014,Battery Park City-Lower Manhattan +1000921001,1,92,1001,2021,33,BEEKMAN STREET,10038,RH,4,BEEKMAN GROUND TENANT LLC,MANHATTAN,40.71055,-74.005771,101,1,1501,1089833,1000927501,Battery Park City-Lower Manhattan +1000921002,1,92,1002,2021,33,BEEKMAN STREET,10038,RH,4,BEEKMAN GROUND TENANT LLC,MANHATTAN,40.71055,-74.005771,101,1,1501,1089833,1000927501,Battery Park City-Lower Manhattan +1000921003,1,92,1003,2021,33,BEEKMAN STREET,10038,RH,4,BEEKMAN GROUND TENANT LLC,MANHATTAN,40.71055,-74.005771,101,1,1501,1089833,1000927501,Battery Park City-Lower Manhattan +1001060017,1,106,17,2021,320,PEARL STREET,10038,H3,4,"SEAPORT HOSPITALITY, LLC",MANHATTAN,40.709021,-74.002272,101,1,1501,1087430,1001060017,Battery Park City-Lower Manhattan +1001070038,1,107,38,2021,29,PECK SLIP,10038,HB,4,"HHC 33 PECK SLIP HOLDINGS, LLC",MANHATTAN,40.707962,-74.001706,101,1,1501,1082022,1001070038,Battery Park City-Lower Manhattan +1001231101,1,123,1101,2021,30,PARK PLACE,10007,RH,4,30 PARK PLACE HOTEL LLC,MANHATTAN,40.712987,-74.008686,101,1,21,1089428,1001237502,SoHo-TriBeCa-Civic Center-Little Italy +1001361401,1,136,1401,2021,85,WEST BROADWAY,10007,RH,4,85 W BROADWAY PROPCO LLC,MANHATTAN,40.715205,-74.009476,101,1,21,1088224,1001367505,SoHo-TriBeCa-Civic Center-Little Italy +1001450012,1,145,12,2021,125,CHAMBERS STREET,10007,H2,4,95 WEST BROADWAY HOLDINGS LLC,MANHATTAN,40.715309,-74.008755,101,1,21,1001584,1001450012,SoHo-TriBeCa-Civic Center-Little Italy +1001460023,1,146,23,2021,130,DUANE STREET,10013,HB,4,5444 ASSOCS.,MANHATTAN,40.716114,-74.00737,101,1,33,1086485,1001460023,SoHo-TriBeCa-Civic Center-Little Italy +1001640009,1,164,9,2021,46,MULBERRY STREET,10013,H3,4,RICE BOWL REALTY CORP,MANHATTAN,40.715002,-73.999628,103,1,29,1079227,1001640009,Chinatown +1001720020,1,172,20,2021,76,LAFAYETTE STREET,10013,H8,4,CORAL LAFAYETTE LLC,MANHATTAN,40.716968,-74.001883,101,1,31,1001870,1001720020,SoHo-TriBeCa-Civic Center-Little Italy +1001870016,1,187,16,2021,377,GREENWICH STREET,10013,H1,4,377 GREENWICH LLC C/O,MANHATTAN,40.719783,-74.010227,101,1,39,1087575,1001870016,SoHo-TriBeCa-Civic Center-Little Italy +1001910001,1,191,1,2021,2,AVENUE OF THE AMER,10013,HB,4,TRIBECA ACQUISITION RLTY CORP,MANHATTAN,40.719128,-74.005166,101,1,33,1088221,1001910001,SoHo-TriBeCa-Civic Center-Little Italy +1001950007,1,195,7,2021,396,BROADWAY,10013,H2,4,BRIDGETON 396 BROADWAY FEE LLC,MANHATTAN,40.718488,-74.002644,101,1,31,1002323,1001950007,SoHo-TriBeCa-Civic Center-Little Italy +1001960009,1,196,9,2021,416,BROADWAY,10013,H3,4,KING FOOK REALTY CORP,MANHATTAN,40.719358,-74.001905,101,1,31,1002341,1001960009,SoHo-TriBeCa-Civic Center-Little Italy +1001960024,1,196,24,2021,88,WALKER STREET,10013,HR,4,218 HOLDING INC,MANHATTAN,40.718096,-74.001331,101,1,31,1000000,1001960024,SoHo-TriBeCa-Civic Center-Little Italy +1002020023,1,202,23,2021,50,BOWERY,10013,H9,4,"50 BOWERY HOLDINGS, LLC",MANHATTAN,40.715763,-73.996378,103,1,29,1002429,1002020023,Chinatown +1002030017,1,203,17,2021,140,HESTER STREET,10013,HR,4,BOWERY 88 LLC,MANHATTAN,40.717322,-73.99557,102,1,41,1002606,1002030017,SoHo-TriBeCa-Civic Center-Little Italy +1002090019,1,209,19,2021,138,LAFAYETTE STREET,10013,HB,4,CRI 11 HOWARD STREET LLC,MANHATTAN,40.719084,-73.999953,102,1,45,1002687,1002090019,SoHo-TriBeCa-Civic Center-Little Italy +1002090024,1,209,24,2021,251,CANAL STREET,10013,H3,4,TAI FOOK CORP,MANHATTAN,40.718516,-74.000635,102,1,45,1002689,1002090024,SoHo-TriBeCa-Civic Center-Little Italy +1002110029,1,211,29,2021,370,CANAL STREET,10013,H1,4,TRIBECA ASCOTT LLC,MANHATTAN,40.721,-74.004152,101,1,33,1088921,1002110029,SoHo-TriBeCa-Civic Center-Little Italy +1002120045,1,212,45,2021,2,YORK STREET,10013,H3,4,YORK STREET LLC,MANHATTAN,40.721068,-74.005758,101,1,33,1002738,1002120045,SoHo-TriBeCa-Civic Center-Little Italy +1002270028,1,227,28,2021,306,WEST BROADWAY,10013,HB,4,JDH INC,MANHATTAN,40.721634,-74.004412,102,1,47,1087764,1002270028,SoHo-TriBeCa-Civic Center-Little Italy +1002270052,1,227,52,2021,27,GRAND STREET,10013,HB,4,THOR JAMES HOTEL INVESTOR LLC,MANHATTAN,40.722827,-74.004726,102,1,47,1088405,1002270052,SoHo-TriBeCa-Civic Center-Little Italy +1002330002,1,233,2,2021,9,CROSBY STREET,10013,H1,4,"9 CROSBY, LLC",MANHATTAN,40.719904,-74.000307,102,1,45,1088790,1002330002,SoHo-TriBeCa-Civic Center-Little Italy +1002340011,1,234,11,2021,159,GRAND STREET,10013,H3,4,"SOLITA SOHO HOTEL, LLC",MANHATTAN,40.719891,-73.998759,102,1,45,1003055,1002340011,SoHo-TriBeCa-Civic Center-Little Italy +1002390020,1,239,20,2021,116,BOWERY,10013,H9,4,"HANBEE REALTY,",MANHATTAN,40.718128,-73.994993,102,1,41,1003125,1002390020,SoHo-TriBeCa-Civic Center-Little Italy +1002390029,1,239,29,2021,104,BOWERY,10013,HR,4,CHUNKIEN REALTY CORP,MANHATTAN,40.717821,-73.995155,102,1,41,1003130,1002390029,SoHo-TriBeCa-Civic Center-Little Italy +1002740024,1,274,24,2021,154,MADISON STREET,10002,H3,4,USA SENWELL FUND MANAGEMENT LLC,MANHATTAN,40.712433,-73.992732,103,1,8,1089446,1002740024,Chinatown +1002790015,1,279,15,2021,59,ST JAMES PLACE,10038,HR,4,LUCKY MOTT REALTY CO,MANHATTAN,40.712875,-73.998586,103,1,27,1003370,1002790015,Chinatown +1002820023,1,282,23,2021,95,HENRY STREET,10002,H3,4,PCK REALTY INC,MANHATTAN,40.713149,-73.992984,103,1,8,1088290,1002820023,Chinatown +1002820031,1,282,31,2021,91,EAST BROADWAY,10002,H3,4,"DRAGON REALTY, LLC",MANHATTAN,40.713761,-73.993666,103,1,8,1003541,1002820031,Chinatown +1002820080,1,282,80,2021,79,DIVISION STREET,10002,H3,4,"LO,DAVID",MANHATTAN,40.714299,-73.993723,103,1,8,1084614,1002820080,Chinatown +1002921110,1,292,1110,2021,86,CANAL STREET,10002,RH,4,94 CANAL REALTY LLC,MANHATTAN,40.715389,-73.993536,103,1,16,1088640,1002927502,Chinatown +1002930019,1,293,19,2021,5,ALLEN STREET,10002,H3,4,RICHLAND HOLDING LLC,MANHATTAN,40.714771,-73.992656,103,1,16,1089346,1002930019,Chinatown +1002940007,1,294,7,2021,60,CANAL STREET,10002,HB,4,"NINE ORCHARD PARTNERS, LLC",MANHATTAN,40.715018,-73.992313,103,1,16,1090784,1002940007,Chinatown +1003030015,1,303,15,2021,91,BOWERY,10002,H2,4,"93 BOWERY HOLDINGS, LLC",MANHATTAN,40.717132,-73.995505,103,1,16,1082490,1003030015,Chinatown +1003030025,1,303,25,2021,61,CHRYSTIE STREET,10002,H3,4,"LBW ENTERPRISES, LLC.",MANHATTAN,40.716525,-73.994647,103,1,16,1084615,1003030025,Chinatown +1003030035,1,303,35,2021,125,CANAL STREET,10002,H3,4,CANAL BRIDGE REALTYINC.,MANHATTAN,40.715916,-73.995127,103,1,16,1003917,1003030035,Chinatown +1003040004,1,304,4,2021,101,BOWERY,10002,HR,4,SU SU REALTY CORP,MANHATTAN,40.717607,-73.995245,103,1,16,1003921,1003040004,Chinatown +1003040016,1,304,16,2021,237,GRAND STREET,10002,HH,4,125 BOWERY INC,MANHATTAN,40.718403,-73.994665,103,1,16,1003931,1003040016,Chinatown +1003060029,1,306,29,2021,79,ELDRIDGE STREET,10002,H9,4,ELDRIDGE HOTEL LLC,MANHATTAN,40.717044,-73.992547,103,1,16,1084616,1003060029,Chinatown +1003480036,1,348,36,2021,150,DELANCEY STREET,10002,H3,4,SC DELANCEY LLC,MANHATTAN,40.717969,-73.986458,103,1,1402,1004191,1003480036,Lower East Side +1004091101,1,409,1101,2021,100,ORCHARD STREET,10002,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.718559,-73.99,103,1,18,1005287,1004097501,Chinatown +1004091102,1,409,1102,2021,100,ORCHARD STREET,10002,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.718559,-73.99,103,1,18,1005287,1004097501,Chinatown +1004100048,1,410,48,2021,107,RIVINGTON STREET,10002,H1,4,THE DOWNTOWN LLC,MANHATTAN,40.719967,-73.988023,103,1,18,1075676,1004100048,Chinatown +1004101001,1,410,1001,2021,101,LUDLOW STREET,10002,RH,4,101 LUDLOW STREET CONDOMINIUM,MANHATTAN,40.719111,-73.988864,103,1,18,1005320,1004107501,Chinatown +1004110041,1,411,41,2021,136,LUDLOW STREET,10002,H3,4,LUDLOW STREET HOSPITALITY LLC,MANHATTAN,40.720362,-73.9882,103,1,3001,1005368,1004110041,Chinatown +1004120048,1,412,48,2021,180,LUDLOW STREET,10002,H2,4,180 LUDLOW DEVELOPMENT LLC,MANHATTAN,40.721811,-73.987467,103,1,3001,1087953,1004120048,Chinatown +1004121003,1,412,1003,2021,180,ORCHARD STREET,10002,RH,4,MRRDIGO LLC,MANHATTAN,40.721853,-73.988304,103,1,3001,1090121,1004127501,Chinatown +1004130041,1,413,41,2021,88,ALLEN STREET,10002,HB,4,88 ALLEN REALTY LLC,MANHATTAN,40.718095,-73.990938,103,1,18,1090650,1004130041,Chinatown +1004150067,1,415,67,2021,139,ORCHARD STREET,10002,H9,4,ALLEN STREET OWNER LLC,MANHATTAN,40.720041,-73.98926,103,1,18,1088498,1004150067,Chinatown +1004150077,1,415,77,2021,119,ORCHARD STREET,10002,HB,4,"119 ORCHARD PROPERTY, INC.",MANHATTAN,40.719454,-73.98956,103,1,18,1089952,1004150077,Chinatown +1004160058,1,416,58,2021,163,ORCHARD STREET,10002,H9,4,"NADICO HOSPITALITY, LLC",MANHATTAN,40.721043,-73.988748,103,1,3001,1088499,1004160058,Chinatown +1004170011,1,417,11,2021,151,EAST HOUSTON STREET,10002,HB,4,OK HOUSTON HOTEL LLC,MANHATTAN,40.723137,-73.989303,103,1,3601,1005539,1004170011,Chinatown +1004171002,1,417,1002,2021,190,ALLEN STREET,10002,RH,4,ALLEN FEE OWNER LLC,MANHATTAN,40.722248,-73.988899,103,1,3001,1087667,1004177501,Chinatown +1004180036,1,418,36,2021,108,FORSYTH STREET,10002,H3,4,SARA PARK MANAGEMENT INC,MANHATTAN,40.718707,-73.99268,103,1,18,1087357,1004180036,Chinatown +1004220047,1,422,47,2021,135,EAST HOUSTON STREET,10002,H3,4,J&N HOTEL ASSOCIATES LLC,MANHATTAN,40.723382,-73.990144,103,1,3601,1087359,1004220047,Chinatown +1004230008,1,423,8,2021,143,BOWERY,10002,HH,4,ANCHOR REALTY CORP,MANHATTAN,40.719051,-73.994553,103,1,18,1005634,1004230008,Chinatown +1004250004,1,425,4,2021,189,BOWERY,10002,H2,4,OSIB-BCRE BOWERY STREET HOLDINGS LLC,MANHATTAN,40.720741,-73.993864,103,1,18,1090576,1004250004,Chinatown +1004250023,1,425,23,2021,11,RIVINGTON STREET,10002,H3,4,AGAWANI INTERNATIONAL INC,MANHATTAN,40.721337,-73.992561,103,1,18,1005687,1004250023,Chinatown +1004260005,1,426,5,2021,223,BOWERY,10002,H9,4,225 BOWERY LLC,MANHATTAN,40.721949,-73.993402,103,1,3601,,,Chinatown +1004260017,1,426,17,2021,245,BOWERY,10002,HR,4,"HARLEN SALES CO.,INC.",MANHATTAN,40.722748,-73.993106,103,1,3601,1005712,1004260017,Chinatown +1004271601,1,427,1601,2021,215,CHRYSTIE STREET,10002,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.722786,-73.991464,103,1,3601,1090397,1004277507,Chinatown +1004510039,1,451,39,2021,147,1 AVENUE,10003,H3,4,MIDON REALTY CORP,MANHATTAN,40.728269,-73.984803,103,2,40,1079106,1004510039,East Village +1004570009,1,457,9,2021,1,EAST 2 STREET,10003,H8,4,321 BOWERY,MANHATTAN,40.725465,-73.991879,103,2,3602,1086133,1004570009,East Village +1004580006,1,458,6,2021,335,BOWERY,10003,H2,4,WOODCUTTERS REALTY CORP.,MANHATTAN,40.726047,-73.991908,103,2,3602,1006545,1004580006,East Village +1004610003,1,461,3,2021,25,COOPER SQUARE,10003,H2,4,33 COOPER SQUARE ASSOCIATES LLC,MANHATTAN,40.727751,-73.9912,103,2,38,1087921,1004610003,East Village +1004610006,1,461,6,2021,35,COOPER SQUARE,10003,H8,4,COOPER AND 6TH PROPERTY LLC,MANHATTAN,40.728171,-73.990897,103,2,38,1090311,1004610006,East Village +1004620018,1,462,18,2021,38,EAST 7 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.72821,-73.988689,103,2,38,1006649,1004620018,East Village +1004630007,1,463,7,2021,71,COOPER SQUARE,10003,H3,4,2 ST.MARKS PL HOTELCP.,MANHATTAN,40.72928,-73.990085,103,2,38,1006657,1004630007,East Village +1004649006,1,464,9006,2021,29,3 AVENUE,10003,H8,4,COOPER UNION ADVANCEMENT OF SCIENCE & AR T,MANHATTAN,40.729793,-73.989703,103,2,38,1006737,1004640006,East Village +1004650001,1,465,1,2021,31,3 AVENUE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.729807,-73.989692,103,2,38,1006764,1004650001,East Village +1004670001,1,467,1,2021,67,3 AVENUE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731415,-73.988533,103,2,40,1006826,1004670001,East Village +1004700050,1,470,50,2021,146,BOWERY,10013,H3,4,9876 BOWERY REALTY CORP,MANHATTAN,40.719251,-73.994495,102,1,41,1006944,1004700050,SoHo-TriBeCa-Civic Center-Little Italy +1004700053,1,470,53,2021,138,BOWERY,10013,H3,4,"142 EMMUT PROPERTIES, LLC",MANHATTAN,40.719018,-73.994589,102,1,41,1090453,1004700053,SoHo-TriBeCa-Civic Center-Little Italy +1004710055,1,471,55,2021,196,GRAND STREET,10013,H3,4,196 GRAND LLC,MANHATTAN,40.719193,-73.996883,102,1,41,1089632,1004710055,SoHo-TriBeCa-Civic Center-Little Italy +1004730017,1,473,17,2021,431,BROOME STREET,10013,H3,4,UNAVAILABLE OWNER,MANHATTAN,40.721524,-73.999278,102,1,45,1007016,1004730017,SoHo-TriBeCa-Civic Center-Little Italy +1004770068,1,477,68,2021,52,WATTS STREET,10013,H3,4,SOHO 54 LLC.,MANHATTAN,40.723687,-74.005372,102,3,37,1087915,1004770068,SoHo-TriBeCa-Civic Center-Little Italy +1004790029,1,479,29,2021,30,KENMARE STREET,10012,H3,4,"153 ELIZABETH STREET, LLC",MANHATTAN,40.720687,-73.995173,102,1,41,1088694,1004790029,SoHo-TriBeCa-Civic Center-Little Italy +1004810001,1,481,1,2021,400,BROOME STREET,10013,H8,4,CORAL BROOME STREET LLC,MANHATTAN,40.720733,-73.997388,102,1,41,1007193,1004810001,SoHo-TriBeCa-Civic Center-Little Italy +1004880003,1,488,3,2021,60,THOMPSON STREET,10012,HB,4,THOMPSON STREET ASSOCIATES,MANHATTAN,40.724183,-74.003196,102,1,47,1087362,1004880003,SoHo-TriBeCa-Civic Center-Little Italy +1004911201,1,491,1201,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911202,1,491,1202,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911203,1,491,1203,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911204,1,491,1204,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911205,1,491,1205,2021,246,SPRING STREET,10013,RH,4,SOHO 902 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911206,1,491,1206,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911207,1,491,1207,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911208,1,491,1208,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911209,1,491,1209,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911210,1,491,1210,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911211,1,491,1211,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911212,1,491,1212,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911213,1,491,1213,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911214,1,491,1214,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911215,1,491,1215,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911216,1,491,1216,2021,246,SPRING STREET,10013,RH,4,RIVA RIDGE LTD,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911217,1,491,1217,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911218,1,491,1218,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911219,1,491,1219,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911220,1,491,1220,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911221,1,491,1221,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911222,1,491,1222,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911223,1,491,1223,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911224,1,491,1224,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911225,1,491,1225,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911226,1,491,1226,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911227,1,491,1227,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911228,1,491,1228,2021,246,SPRING STREET,10013,RH,4,SOHO 1102 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911229,1,491,1229,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911230,1,491,1230,2021,246,SPRING STREET,10013,RH,4,DUNDEE INVEST LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911231,1,491,1231,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911232,1,491,1232,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911233,1,491,1233,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911234,1,491,1234,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911235,1,491,1235,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911236,1,491,1236,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911237,1,491,1237,2021,246,SPRING STREET,10013,RH,4,HA TRUONG LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911238,1,491,1238,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911239,1,491,1239,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911240,1,491,1240,2021,246,SPRING STREET,10013,RH,4,SOHO 1202 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911241,1,491,1241,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911242,1,491,1242,2021,246,SPRING STREET,10013,RH,4,"HOUSING IMON CO., LTD.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911243,1,491,1243,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911244,1,491,1244,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911245,1,491,1245,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911246,1,491,1246,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911247,1,491,1247,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911248,1,491,1248,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911249,1,491,1249,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911250,1,491,1250,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911251,1,491,1251,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911252,1,491,1252,2021,246,SPRING STREET,10013,RH,4,SOHO 1402 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911253,1,491,1253,2021,246,SPRING STREET,10013,RH,4,SOHO 1403 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911254,1,491,1254,2021,246,SPRING STREET,10013,RH,4,SOHO 1404 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911255,1,491,1255,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911256,1,491,1256,2021,246,SPRING STREET,10013,RH,4,"DUBOFF, MINDY",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911257,1,491,1257,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911258,1,491,1258,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911259,1,491,1259,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911260,1,491,1260,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911261,1,491,1261,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911262,1,491,1262,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911263,1,491,1263,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911264,1,491,1264,2021,246,SPRING STREET,10013,RH,4,"TASD PROPERTIES, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911265,1,491,1265,2021,246,SPRING STREET,10013,RH,4,NEWMONT SOHO LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911266,1,491,1266,2021,246,SPRING STREET,10013,RH,4,"TJSD PROPERTIES, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911267,1,491,1267,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911268,1,491,1268,2021,246,SPRING STREET,10013,RH,4,BSP MATARAZZO GROUP LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911269,1,491,1269,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911270,1,491,1270,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911271,1,491,1271,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911272,1,491,1272,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911273,1,491,1273,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911274,1,491,1274,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911275,1,491,1275,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911276,1,491,1276,2021,246,SPRING STREET,10013,RH,4,SOHO 1602 OWNER LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911277,1,491,1277,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911278,1,491,1278,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911279,1,491,1279,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911280,1,491,1280,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911281,1,491,1281,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911282,1,491,1282,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911283,1,491,1283,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911284,1,491,1284,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911285,1,491,1285,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911286,1,491,1286,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911287,1,491,1287,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911288,1,491,1288,2021,246,SPRING STREET,10013,RH,4,"FAMILY HOME ONE, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911289,1,491,1289,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911290,1,491,1290,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911291,1,491,1291,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911292,1,491,1292,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911293,1,491,1293,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911294,1,491,1294,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911295,1,491,1295,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911296,1,491,1296,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911297,1,491,1297,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911298,1,491,1298,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911299,1,491,1299,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911300,1,491,1300,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911301,1,491,1301,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911302,1,491,1302,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911303,1,491,1303,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911304,1,491,1304,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911305,1,491,1305,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911306,1,491,1306,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911307,1,491,1307,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911308,1,491,1308,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911309,1,491,1309,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911310,1,491,1310,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911311,1,491,1311,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911312,1,491,1312,2021,246,SPRING STREET,10013,RH,4,TSOHO 1902 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911313,1,491,1313,2021,246,SPRING STREET,10013,RH,4,SOHO 1903 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911314,1,491,1314,2021,246,SPRING STREET,10013,RH,4,SOHO 1904 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911315,1,491,1315,2021,246,SPRING STREET,10013,RH,4,SOHO 1905 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911316,1,491,1316,2021,246,SPRING STREET,10013,RH,4,LAM GENERATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911317,1,491,1317,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911318,1,491,1318,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911319,1,491,1319,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911320,1,491,1320,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911321,1,491,1321,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911322,1,491,1322,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911323,1,491,1323,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911324,1,491,1324,2021,246,SPRING STREET,10013,RH,4,"STAGES CONSULTING, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911325,1,491,1325,2021,246,SPRING STREET,10013,RH,4,"CHUNG, YUNHEE",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911326,1,491,1326,2021,246,SPRING STREET,10013,RH,4,2019 SPRING CONDO LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911327,1,491,1327,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911328,1,491,1328,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911329,1,491,1329,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911330,1,491,1330,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911331,1,491,1331,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911332,1,491,1332,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911333,1,491,1333,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911334,1,491,1334,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911335,1,491,1335,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911336,1,491,1336,2021,246,SPRING STREET,10013,RH,4,TSOHO 2102 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911337,1,491,1337,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911338,1,491,1338,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911339,1,491,1339,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911340,1,491,1340,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911341,1,491,1341,2021,246,SPRING STREET,10013,RH,4,DLJ MORTGAGE CAPITAL INC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911342,1,491,1342,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911343,1,491,1343,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911344,1,491,1344,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911345,1,491,1345,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911346,1,491,1346,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911347,1,491,1347,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911348,1,491,1348,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911349,1,491,1349,2021,246,SPRING STREET,10013,RH,4,SOHO 2205 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911350,1,491,1350,2021,246,SPRING STREET,10013,RH,4,TSOHO 2206 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911351,1,491,1351,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911352,1,491,1352,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911353,1,491,1353,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911354,1,491,1354,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911355,1,491,1355,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911356,1,491,1356,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911357,1,491,1357,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911358,1,491,1358,2021,246,SPRING STREET,10013,RH,4,"SOMA, YORIKO",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911359,1,491,1359,2021,246,SPRING STREET,10013,RH,4,DONG IL CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911360,1,491,1360,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911361,1,491,1361,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911362,1,491,1362,2021,246,SPRING STREET,10013,RH,4,TSOHO 2102 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911363,1,491,1363,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911364,1,491,1364,2021,246,SPRING STREET,10013,RH,4,SOHO 2308 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911365,1,491,1365,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911366,1,491,1366,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911367,1,491,1367,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911368,1,491,1368,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911369,1,491,1369,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911370,1,491,1370,2021,246,SPRING STREET,10013,RH,4,"HASSOMAL, MOHINANI HARRY",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911371,1,491,1371,2021,246,SPRING STREET,10013,RH,4,SOHO 2403 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911372,1,491,1372,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911373,1,491,1373,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911374,1,491,1374,2021,246,SPRING STREET,10013,RH,4,"HASSOMAL, MOHINANI HARRY",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911375,1,491,1375,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911376,1,491,1376,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911377,1,491,1377,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911378,1,491,1378,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911379,1,491,1379,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911380,1,491,1380,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911381,1,491,1381,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911382,1,491,1382,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911383,1,491,1383,2021,246,SPRING STREET,10013,RH,4,SOHO 2503 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911384,1,491,1384,2021,246,SPRING STREET,10013,RH,4,JAPI HOLDINGS USA INC.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911385,1,491,1385,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911386,1,491,1386,2021,246,SPRING STREET,10013,RH,4,"KIM, HONGMIN",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911387,1,491,1387,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911388,1,491,1388,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911389,1,491,1389,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911390,1,491,1390,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911391,1,491,1391,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911392,1,491,1392,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911393,1,491,1393,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911394,1,491,1394,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911395,1,491,1395,2021,246,SPRING STREET,10013,RH,4,"RANGIE SOHO, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911396,1,491,1396,2021,246,SPRING STREET,10013,RH,4,"ZHU, JIAYIN",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911397,1,491,1397,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911398,1,491,1398,2021,246,SPRING STREET,10013,RH,4,SOHO 2606 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911399,1,491,1399,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911400,1,491,1400,2021,246,SPRING STREET,10013,RH,4,"KIM, YOO LI",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911401,1,491,1401,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911402,1,491,1402,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911403,1,491,1403,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911404,1,491,1404,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911405,1,491,1405,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911406,1,491,1406,2021,246,SPRING STREET,10013,RH,4,"HOUSING IMON CO., LTD.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911407,1,491,1407,2021,246,SPRING STREET,10013,RH,4,SOHO 2703 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911408,1,491,1408,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911409,1,491,1409,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911410,1,491,1410,2021,246,SPRING STREET,10013,RH,4,"EQUITY TRUST COMPANY, DBA STERLING TRUST",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911411,1,491,1411,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911412,1,491,1412,2021,246,SPRING STREET,10013,RH,4,SOHO 2708 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911413,1,491,1413,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911414,1,491,1414,2021,246,SPRING STREET,10013,RH,4,MARRAKECH GRAND PRIX LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911415,1,491,1415,2021,246,SPRING STREET,10013,RH,4,SOHO 2711 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911416,1,491,1416,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911417,1,491,1417,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911418,1,491,1418,2021,246,SPRING STREET,10013,RH,4,"IIDA, KYOJI",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911419,1,491,1419,2021,246,SPRING STREET,10013,RH,4,SOHO 2803 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911420,1,491,1420,2021,246,SPRING STREET,10013,RH,4,SCHILTRON USA CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911421,1,491,1421,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911422,1,491,1422,2021,246,SPRING STREET,10013,RH,4,SOHO 2806 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911423,1,491,1423,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911424,1,491,1424,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911425,1,491,1425,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911426,1,491,1426,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911427,1,491,1427,2021,246,SPRING STREET,10013,RH,4,CODIGO POSTAL NEW YORK LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911428,1,491,1428,2021,246,SPRING STREET,10013,RH,4,SOHO 2812 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911429,1,491,1429,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911430,1,491,1430,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911431,1,491,1431,2021,246,SPRING STREET,10013,RH,4,"UNIT 2903 TRUMP SOHO, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911432,1,491,1432,2021,246,SPRING STREET,10013,RH,4,"SHU, WENDY GU",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911433,1,491,1433,2021,246,SPRING STREET,10013,RH,4,"CHOI, WILLIAM",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911434,1,491,1434,2021,246,SPRING STREET,10013,RH,4,SOHO 2906 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911435,1,491,1435,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911436,1,491,1436,2021,246,SPRING STREET,10013,RH,4,"UXONA IBERICA, SOCIEDAD LIMITADA",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911437,1,491,1437,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911438,1,491,1438,2021,246,SPRING STREET,10013,RH,4,SOHO THC 2910 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911439,1,491,1439,2021,246,SPRING STREET,10013,RH,4,"STEEL LUX TRUMP2911, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911440,1,491,1440,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911441,1,491,1441,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911442,1,491,1442,2021,246,SPRING STREET,10013,RH,4,3002 TRUMP SOHO CONDO LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911443,1,491,1443,2021,246,SPRING STREET,10013,RH,4,"MEKHAIL, FARED",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911444,1,491,1444,2021,246,SPRING STREET,10013,RH,4,"MIRZA, ATHER",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911445,1,491,1445,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911446,1,491,1446,2021,246,SPRING STREET,10013,RH,4,SOHO 3006 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911447,1,491,1447,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911448,1,491,1448,2021,246,SPRING STREET,10013,RH,4,RIVA RIDGE LTD,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911449,1,491,1449,2021,246,SPRING STREET,10013,RH,4,"HO, REN HUA",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911450,1,491,1450,2021,246,SPRING STREET,10013,RH,4,"CHUNG, HAEWON",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911451,1,491,1451,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911452,1,491,1452,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911453,1,491,1453,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911454,1,491,1454,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911455,1,491,1455,2021,246,SPRING STREET,10013,RH,4,TS UNIT 3103 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911456,1,491,1456,2021,246,SPRING STREET,10013,RH,4,"PETERS HOLDINGS, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911457,1,491,1457,2021,246,SPRING STREET,10013,RH,4,SOHO 3105 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911458,1,491,1458,2021,246,SPRING STREET,10013,RH,4,SOHO 3106 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911459,1,491,1459,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911460,1,491,1460,2021,246,SPRING STREET,10013,RH,4,SOHO 3108 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911461,1,491,1461,2021,246,SPRING STREET,10013,RH,4,SOHO 3109 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911462,1,491,1462,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911463,1,491,1463,2021,246,SPRING STREET,10013,RH,4,SOHO 3111 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911464,1,491,1464,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911465,1,491,1465,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911466,1,491,1466,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911467,1,491,1467,2021,246,SPRING STREET,10013,RH,4,HEAVEN FRYTL - NEW YORK - LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911468,1,491,1468,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911469,1,491,1469,2021,246,SPRING STREET,10013,RH,4,A ROOM WITH A VIEW 3205 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911470,1,491,1470,2021,246,SPRING STREET,10013,RH,4,SOHO 3206 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911471,1,491,1471,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911472,1,491,1472,2021,246,SPRING STREET,10013,RH,4,"RUBY COVE, LLC,",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911473,1,491,1473,2021,246,SPRING STREET,10013,RH,4,"TOPAZ VALLEY, LLC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911474,1,491,1474,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911475,1,491,1475,2021,246,SPRING STREET,10013,RH,4,SOHO 3211 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911476,1,491,1476,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911477,1,491,1477,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911478,1,491,1478,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911479,1,491,1479,2021,246,SPRING STREET,10013,RH,4,"ELR TRUMP SOHO, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911480,1,491,1480,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911481,1,491,1481,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911482,1,491,1482,2021,246,SPRING STREET,10013,RH,4,A ROOM WITH A VIEW 3309 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911483,1,491,1483,2021,246,SPRING STREET,10013,RH,4,"MT TRUMP SOHO 3310, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911484,1,491,1484,2021,246,SPRING STREET,10013,RH,4,"ADULAMY, JOSEPH",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911485,1,491,1485,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911486,1,491,1486,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911487,1,491,1487,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911488,1,491,1488,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911489,1,491,1489,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911490,1,491,1490,2021,246,SPRING STREET,10013,RH,4,SOHO 3406 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911491,1,491,1491,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911492,1,491,1492,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911493,1,491,1493,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911494,1,491,1494,2021,246,SPRING STREET,10013,RH,4,FAMEXNY LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911495,1,491,1495,2021,246,SPRING STREET,10013,RH,4,SOHO 3411 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911496,1,491,1496,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911497,1,491,1497,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911498,1,491,1498,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911499,1,491,1499,2021,246,SPRING STREET,10013,RH,4,ANATOMY HOLDINGS LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911500,1,491,1500,2021,246,SPRING STREET,10013,RH,4,"MAYART I NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911501,1,491,1501,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911502,1,491,1502,2021,246,SPRING STREET,10013,RH,4,"MAYART, I, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911503,1,491,1503,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911504,1,491,1504,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911505,1,491,1505,2021,246,SPRING STREET,10013,RH,4,ALPHA PARTICLE HOLDINGS LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911506,1,491,1506,2021,246,SPRING STREET,10013,RH,4,SOHO 3510 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911507,1,491,1507,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911508,1,491,1508,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911509,1,491,1509,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911510,1,491,1510,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911511,1,491,1511,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911512,1,491,1512,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911513,1,491,1513,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911514,1,491,1514,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911515,1,491,1515,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911516,1,491,1516,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911517,1,491,1517,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911518,1,491,1518,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911519,1,491,1519,2021,246,SPRING STREET,10013,RH,4,"COLARIZI, SIMONA",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911520,1,491,1520,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911521,1,491,1521,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911522,1,491,1522,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911523,1,491,1523,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911524,1,491,1524,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911525,1,491,1525,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911526,1,491,1526,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911527,1,491,1527,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911528,1,491,1528,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911529,1,491,1529,2021,246,SPRING STREET,10013,RH,4,AGEA LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911530,1,491,1530,2021,246,SPRING STREET,10013,RH,4,SOHO 2304 CORP.,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911531,1,491,1531,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911532,1,491,1532,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911533,1,491,1533,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911534,1,491,1534,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911535,1,491,1535,2021,246,SPRING STREET,10013,RH,4,MURCIELAGO ROCK LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911536,1,491,1536,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911537,1,491,1537,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911538,1,491,1538,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911539,1,491,1539,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911540,1,491,1540,2021,246,SPRING STREET,10013,RH,4,"ASHLEY SOHO, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911541,1,491,1541,2021,246,SPRING STREET,10013,RH,4,"ASHLEY SOHO, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911542,1,491,1542,2021,246,SPRING STREET,10013,RH,4,SOHO 38 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911543,1,491,1543,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911544,1,491,1544,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911545,1,491,1545,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911546,1,491,1546,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911547,1,491,1547,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911548,1,491,1548,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911549,1,491,1549,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911550,1,491,1550,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911551,1,491,1551,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911552,1,491,1552,2021,246,SPRING STREET,10013,RH,4,SOHO 3908 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911553,1,491,1553,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911554,1,491,1554,2021,246,SPRING STREET,10013,RH,4,SOHO 3910 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911555,1,491,1555,2021,246,SPRING STREET,10013,RH,4,"246 SPRING STREET NY, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911556,1,491,1556,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911557,1,491,1557,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911558,1,491,1558,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911559,1,491,1559,2021,246,SPRING STREET,10013,RH,4,M K ENTERPRISES LP,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911560,1,491,1560,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911561,1,491,1561,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911562,1,491,1562,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911563,1,491,1563,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911564,1,491,1564,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911565,1,491,1565,2021,246,SPRING STREET,10013,RH,4,"DOLINA PROPERTIES, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911566,1,491,1566,2021,246,SPRING STREET,10013,RH,4,"CHAMPION HERITAGE OF NEW YORK, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911567,1,491,1567,2021,246,SPRING STREET,10013,RH,4,"ASTUTE PRECISION OF NEW YORK, INC,",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911568,1,491,1568,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911569,1,491,1569,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911570,1,491,1570,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911571,1,491,1571,2021,246,SPRING STREET,10013,RH,4,"SS SOHO 4103, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911572,1,491,1572,2021,246,SPRING STREET,10013,RH,4,"SS SOHO 4104, LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911573,1,491,1573,2021,246,SPRING STREET,10013,RH,4,TS 4105 LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911574,1,491,1574,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911575,1,491,1575,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911576,1,491,1576,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911577,1,491,1577,2021,246,SPRING STREET,10013,RH,4,"SORANINVEST, INC.",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911578,1,491,1578,2021,246,SPRING STREET,10013,RH,4,CET EJENDOMME APS,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911579,1,491,1579,2021,246,SPRING STREET,10013,RH,4,"SS SOHO 4111,LLC",MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911580,1,491,1580,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911581,1,491,1581,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911582,1,491,1582,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911583,1,491,1583,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911584,1,491,1584,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911585,1,491,1585,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911586,1,491,1586,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911587,1,491,1587,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911588,1,491,1588,2021,246,SPRING STREET,10013,RH,4,UNIT 4303 SOHO LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911589,1,491,1589,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911590,1,491,1590,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004911591,1,491,1591,2021,246,SPRING STREET,10013,RH,4,BAYROCK/SAPIR ORGANIZATION LLC,MANHATTAN,40.725616,-74.005253,102,3,37,1088431,1004917503,SoHo-TriBeCa-Civic Center-Little Italy +1004920025,1,492,25,2021,218,BOWERY,10012,HH,4,"BOWERY DREAM, LLC",MANHATTAN,40.721891,-73.993445,102,1,43,1007398,1004920025,SoHo-TriBeCa-Civic Center-Little Italy +1004960001,1,496,1,2021,79,CROSBY STREET,10012,HB,4,79 CROSBY STREET LLC,MANHATTAN,40.722954,-73.99772,102,1,43,1088952,1004960001,SoHo-TriBeCa-Civic Center-Little Italy +1005130035,1,513,35,2021,93,PRINCE STREET,10012,HB,4,MERCER I LLC (THE),MANHATTAN,40.724697,-73.998694,102,1,49,1007983,1005130035,SoHo-TriBeCa-Civic Center-Little Italy +1005300036,1,530,36,2021,338,BOWERY,10012,HH,4,METRO SIXTEEN HOTEL I LLC,MANHATTAN,40.726022,-73.99194,102,1,5502,1008488,1005300036,West Village +1005320008,1,532,8,2021,246,MERCER STREET,10012,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.728281,-73.995501,102,1,5501,1066869,1005320008,West Village +1005330001,1,533,1,2021,1,WASHINGTON SQ VLLGE,10012,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.729113,-73.997507,102,1,5501,1077833,1005330001,West Village +1005400014,1,540,14,2021,130,MAC DOUGAL STREET,10012,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.730236,-74.000274,102,1,65,1087045,1005400014,West Village +1005460001,1,546,1,2021,79,WASHINGTON SQUARE E,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.729744,-73.996399,102,1,59,1076069,1005460001,West Village +1005460015,1,546,15,2021,14,WASHINGTON PLACE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.729651,-73.995068,102,1,59,1008812,1005460015,West Village +1005480004,1,548,4,2021,5,UNIVERSITY PLACE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.730925,-73.995364,102,1,59,1080105,1005480004,West Village +1005500013,1,550,13,2021,1 1/2,5 AVENUE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731913,-73.996587,102,1,59,,,West Village +1005500024,1,550,24,2021,6,EAST 8 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.732083,-73.995966,102,1,59,1008848,1005500024,West Village +1005500027,1,550,27,2021,12,EAST 8 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731984,-73.995732,102,1,59,1077900,1005500027,West Village +1005500029,1,550,29,2021,16,EAST 8 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731918,-73.995576,102,1,59,1077902,1005500029,West Village +1005500030,1,550,30,2021,18,EAST 8 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731885,-73.995497,102,1,59,1083507,1005500030,West Village +1005500032,1,550,32,2021,22,EAST 8 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731819,-73.995342,102,1,59,1077877,1005500032,West Village +1005520024,1,552,24,2021,35,WASHINGTON SQUARE W,10011,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731408,-73.999307,102,1,65,1008876,1005520024,West Village +1005520026,1,552,26,2021,37,WASHINGTON SQUARE W,10011,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.73127,-73.999423,102,1,65,1008877,1005520026,West Village +1005520060,1,552,60,2021,29,WASHINGTON SQUARE W,10011,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731822,-73.998957,102,1,65,1008892,1005520060,West Village +1005531202,1,553,1202,2021,103,WAVERLY PLACE,10011,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.73236,-73.998889,102,1,63,1080117,1005537501,West Village +1005560016,1,556,16,2021,112,EAST 11 STREET,10003,H2,4,UD-DEV ASSOCIATES LLC,MANHATTAN,40.73183,-73.989836,103,2,42,1090241,1005560016,East Village +1005560048,1,556,48,2021,120,EAST 12 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.732491,-73.989428,103,2,42,1087924,1005560048,East Village +1005580037,1,558,37,2021,131,EAST 12 STREET,10003,H8,4,NEW SCHOOL SOCIAL RSRCH,MANHATTAN,40.732475,-73.989345,103,2,42,1076070,1005580037,East Village +1005590012,1,559,12,2021,106,EAST 14 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.734122,-73.989179,103,2,42,1009072,1005590012,East Village +1005590022,1,559,22,2021,126,EAST 14 STREET,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.733801,-73.988407,103,2,42,1000000,1005590022,East Village +1005620030,1,562,30,2021,787,BROADWAY,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.731847,-73.991441,102,2,61,1009112,1005620030,West Village +1005640045,1,564,45,2021,132,4 AVENUE,10003,H1,4,"HHLP UNION SQUARE ASSOCIATES, LLC",MANHATTAN,40.733233,-73.989944,102,2,61,1009211,1005640045,West Village +1005680001,1,568,1,2021,35,5 AVENUE,10003,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.733521,-73.995414,102,2,61,1009250,1005680001,West Village +1005710001,1,571,1,2021,2,EAST 14 STREET,10003,H8,4,THE NEW SCHOOL,MANHATTAN,40.735879,-73.993335,102,2,61,1088879,1005710001,West Village +1005720045,1,572,45,2021,3,WEST 8 STREET,10011,HB,4,VILLAGE HOTEL LLC,MANHATTAN,40.732396,-73.99667,102,3,63,1009433,1005720045,West Village +1005750064,1,575,64,2021,27,WEST 11 STREET,10011,H3,4,ST CLAIRE BUILDRS &,MANHATTAN,40.734495,-73.996128,102,3,63,1009588,1005750064,West Village +1005760014,1,576,14,2021,54,WEST 13 STREET,10011,HB,4,BRIDGETON WEST 13 FEE LLC,MANHATTAN,40.736024,-73.995829,102,3,63,1080148,1005760014,West Village +1005770015,1,577,15,2021,48,WEST 14 STREET,10011,H8,4,47 DEVELOPMENT LLC,MANHATTAN,40.736656,-73.995186,102,3,63,1080154,1005770015,West Village +1005800015,1,580,15,2021,66,CHARLTON STREET,10014,H2,4,VCL 66 CHARLTON CORP.,MANHATTAN,40.727222,-74.00631,102,3,37,1088206,1005800015,SoHo-TriBeCa-Civic Center-Little Italy +1005800063,1,580,63,2021,181,VARICK STREET,10014,H2,4,SOHO HOTEL LLC,MANHATTAN,40.727581,-74.005488,102,3,37,1088514,1005800063,SoHo-TriBeCa-Civic Center-Little Italy +1005940115,1,594,115,2021,503,CANAL STREET,10013,H9,4,"2REN, LLC",MANHATTAN,40.724145,-74.008522,102,3,37,1088827,1005940115,SoHo-TriBeCa-Civic Center-Little Italy +1005970005,1,597,5,2021,523,GREENWICH STREET,10013,HB,4,FORTUNA REALTY HOTEL SOHO LLC,MANHATTAN,40.726365,-74.009023,102,3,37,1089705,1005970005,SoHo-TriBeCa-Civic Center-Little Italy +1006030046,1,603,46,2021,636,GREENWICH STREET,10014,H8,4,LAROC,MANHATTAN,40.731177,-74.007988,102,3,69,1010406,1006030046,West Village +1006040001,1,604,1,2021,384,WEST STREET,10014,H9,4,150 BARROW STREET LLC,MANHATTAN,40.732077,-74.010374,102,3,69,1010416,1006040001,West Village +1006080029,1,608,29,2021,116,WEST 13 STREET,10011,H8,4,NEW SCHOOL UNIVERSITY,MANHATTAN,40.73698,-73.998098,102,3,71,1010613,1006080029,West Village +1006230051,1,623,51,2021,273,WEST 11 STREET,10014,H8,4,SODERMALM TRUST,MANHATTAN,40.736068,-74.004399,102,3,77,1080220,1006230051,West Village +1006250054,1,625,54,2021,30,8 AVENUE,10014,H3,4,JANE 8 LLC,MANHATTAN,40.737814,-74.004518,102,3,77,1011447,1006250054,West Village +1006250055,1,625,55,2021,32,8 AVENUE,10014,H3,4,JANE 8 LLC,MANHATTAN,40.737858,-74.004467,102,3,77,1011448,1006250055,West Village +1006280004,1,628,4,2021,10,9 AVENUE,10014,H1,4,REGENT SPE LLC,MANHATTAN,40.739919,-74.006106,102,3,79,1087054,1006280004,West Village +1006360041,1,636,41,2021,396,WEST STREET,10014,H4,4,CHAD 396 WEST STREET LLC,MANHATTAN,40.733252,-74.010262,102,3,75,1011987,1006360041,West Village +1006420001,1,642,1,2021,113,JANE STREET,10014,H3,4,JANE ST. HOSPITALITY LLC,MANHATTAN,40.738154,-74.009025,102,3,79,1012125,1006420001,West Village +1006450011,1,645,11,2021,848,WASHINGTON STREET,10014,H1,4,"GC SHL, LLC",MANHATTAN,40.740624,-74.007719,102,3,79,1012203,1006450011,West Village +1006461102,1,646,1102,2021,29,9 AVENUE,10014,RH,4,33 NINTH COMMERCIAL OWNER LLC,MANHATTAN,40.740369,-74.005799,102,3,79,1012238,1006467503,West Village +1006540031,1,654,31,2021,500,WEST 14 STREET,10014,H4,4,DUANCO INC,MANHATTAN,40.742172,-74.008282,102,3,79,1012248,1006540031,West Village +1006950001,1,695,1,2021,182,11 AVENUE,10011,HH,4,NICK & DUKE,MANHATTAN,40.748988,-74.00694,104,3,99,1012341,1006950001,Hudson Yards-Chelsea-Flatiron-Union Square +1006980047,1,698,47,2021,518,WEST 27 STREET,10001,H1,4,W27 HIGHLINE OWNER LLC,MANHATTAN,40.750662,-74.003432,104,3,99,1088519,1006980047,Hudson Yards-Chelsea-Flatiron-Union Square +1007021404,1,702,1404,2021,34,HUDSON YARDS,10001,RH,4,ERY NORTH TOWER RHC TENANT LLC,,,,,,,,, +1007090052,1,709,52,2021,522,WEST 38 STREET,10018,H3,4,522 W. 38TH ST. NY LLC,MANHATTAN,40.757615,-73.998509,104,3,99,1012515,1007090052,Hudson Yards-Chelsea-Flatiron-Union Square +1007181102,1,718,1102,2021,180,10 AVENUE,10011,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.746216,-74.005229,104,3,89,1088996,1007187502,Hudson Yards-Chelsea-Flatiron-Union Square +1007181103,1,718,1103,2021,180,10 AVENUE,10011,RH,4,THE HIGHLINE HOTEL LLC,MANHATTAN,40.746216,-74.005229,104,3,89,1088996,1007187502,Hudson Yards-Chelsea-Flatiron-Union Square +1007280042,1,728,42,2021,406,WEST 31 STREET,10001,H8,4,F I T STUDENT HOUSING CORPORATION,MANHATTAN,40.751672,-73.998141,104,3,103,1012834,1007280042,Hudson Yards-Chelsea-Flatiron-Union Square +1007290061,1,729,61,2021,440,WEST 33 STREET,10001,H1,4,BOP NW II LLC,MANHATTAN,40.753281,-73.998145,104,3,103,1000000,1007290061,Hudson Yards-Chelsea-Flatiron-Union Square +1007320001,1,732,1,2021,461,WEST 34 STREET,10001,H2,4,"34-10 DEVELOPMENT, LLC",MANHATTAN,40.754351,-73.998585,104,3,111,1012856,1007320001,Hudson Yards-Chelsea-Flatiron-Union Square +1007320070,1,732,70,2021,444,10 AVENUE,10001,H2,4,CARE REALTY CORP,MANHATTAN,40.755062,-73.998787,104,3,111,1089382,1007320070,Hudson Yards-Chelsea-Flatiron-Union Square +1007330060,1,733,60,2021,442,WEST 36 STREET,10018,H3,4,36TH STREET PROPERTY INC.,MANHATTAN,40.755438,-73.997217,104,3,111,1088183,1007330060,Hudson Yards-Chelsea-Flatiron-Union Square +1007340007,1,734,7,2021,449,WEST 36 STREET,10018,H3,4,ORCHARD LODGING LLC,MANHATTAN,40.755616,-73.997592,104,3,111,1012885,1007340007,Hudson Yards-Chelsea-Flatiron-Union Square +1007361002,1,736,1002,2021,511,9 AVENUE,10018,RH,4,9TH AVE. HOTEL PROPERTY HOLDING LLC,MANHATTAN,40.75613,-73.994319,104,3,115,1000000,1007367501,Clinton +1007380025,1,738,25,2021,317,WEST 14 STREET,10014,H3,4,317 WEST 14 REALTY LLC,MANHATTAN,40.740185,-74.003529,104,3,83,1013019,1007380025,Hudson Yards-Chelsea-Flatiron-Union Square +1007380028,1,738,28,2021,309,WEST 14 STREET,10014,H3,4,309309 CORPORATION,MANHATTAN,40.740133,-74.003403,104,3,83,1013022,1007380028,Hudson Yards-Chelsea-Flatiron-Union Square +1007400001,1,740,1,2021,363,WEST 16 STREET,10011,H2,4,MARKET CORNER REALTYASSOCIATES,MANHATTAN,40.741802,-74.003244,104,3,83,1013044,1007400001,Hudson Yards-Chelsea-Flatiron-Union Square +1007401001,1,740,1001,2021,346,WEST 17 STREET,10011,RH,4,WORTH CAPITAL HOLDINGS 52 LLC,MANHATTAN,40.742233,-74.002494,104,3,83,1088885,1007407502,Hudson Yards-Chelsea-Flatiron-Union Square +1007431003,1,743,1003,2021,300,WEST 20 STREET,10011,RH,4,THE NEW SCHOOL,MANHATTAN,40.743597,-74.000281,104,3,89,1013220,1007437501,Hudson Yards-Chelsea-Flatiron-Union Square +1007450040,1,745,40,2021,231,8 AVENUE,10011,H2,4,300 WEST 22 REALTY LLC,MANHATTAN,40.744443,-73.999116,104,3,89,1013310,1007450040,Hudson Yards-Chelsea-Flatiron-Union Square +1007450048,1,745,48,2021,318,WEST 22 STREET,10011,H3,4,WEST 22ND ST. LLC,MANHATTAN,40.744956,-73.999769,104,3,89,1013316,1007450048,Hudson Yards-Chelsea-Flatiron-Union Square +1007530033,1,753,33,2021,305,WEST 29 STREET,10001,H8,4,UNISYS CHELSEA LLC,MANHATTAN,40.749273,-73.99625,104,3,97,1013484,1007530033,Hudson Yards-Chelsea-Flatiron-Union Square +1007540018,1,754,18,2021,341,WEST 30 STREET,10001,HH,4,PR 341 WEST 30 LLC,MANHATTAN,40.750215,-73.996521,104,3,103,1013520,1007540018,Hudson Yards-Chelsea-Flatiron-Union Square +1007540036,1,754,36,2021,403,8 AVENUE,10001,H3,4,CYMO TRADING CORP,MANHATTAN,40.749767,-73.99524,104,3,103,1082392,1007540036,Hudson Yards-Chelsea-Flatiron-Union Square +1007570017,1,757,17,2021,325,WEST 33 STREET,10001,H1,4,"325 WEST 33RD LLC, A DELAWARE LIMITED LI ABILITY CO",MANHATTAN,40.751916,-73.994857,104,3,103,1080469,1007570017,Hudson Yards-Chelsea-Flatiron-Union Square +1007580037,1,758,37,2021,481,8 AVENUE,10001,H2,4,THE HOLY SPIRIT ASSOCIATION FOR THE UNIF ICATION OF,MANHATTAN,40.752295,-73.993402,104,3,111,1013561,1007580037,Hudson Yards-Chelsea-Flatiron-Union Square +1007590014,1,759,14,2021,345,WEST 35 STREET,10001,H2,4,"EROS MANAGEMENT & REALTY, LLC",MANHATTAN,40.75342,-73.994294,104,3,111,1013565,1007590014,Hudson Yards-Chelsea-Flatiron-Union Square +1007590026,1,759,26,2021,325,WEST 35 STREET,10001,H2,4,"BEWELL35, LLC",MANHATTAN,40.753248,-73.993886,104,3,111,1013570,1007590026,Hudson Yards-Chelsea-Flatiron-Union Square +1007590055,1,759,55,2021,320,WEST 36 STREET,10018,H1,4,LRR HOLDINGS LLC,MANHATTAN,40.753824,-73.993362,104,3,111,1090332,1007590055,Hudson Yards-Chelsea-Flatiron-Union Square +1007590059,1,759,59,2021,330,WEST 36 STREET,10018,HR,4,330 WEST 36TH ST HTLCP,MANHATTAN,40.753909,-73.993564,104,3,111,1013581,1007590059,Hudson Yards-Chelsea-Flatiron-Union Square +1007590061,1,759,61,2021,338,WEST 36 STREET,10018,H2,4,NY 36TH STREET V LLC,MANHATTAN,40.75398,-73.993723,104,3,111,1090378,1007590061,Hudson Yards-Chelsea-Flatiron-Union Square +1007600018,1,760,18,2021,341,WEST 36 STREET,10018,H2,4,BARRYDALE SM LLC,MANHATTAN,40.754011,-73.993756,104,3,111,1013592,1007600018,Hudson Yards-Chelsea-Flatiron-Union Square +1007600020,1,760,20,2021,337,WEST 36 STREET,10018,H3,4,RS 308 WEST 40 LLC,MANHATTAN,40.753978,-73.993673,104,3,111,1000000,1007600020,Hudson Yards-Chelsea-Flatiron-Union Square +1007600039,1,760,39,2021,523,8 AVENUE,10018,H2,4,RONBET EIGHTH AVENUE LLC,MANHATTAN,40.753626,-73.992431,104,3,111,1085726,1007600039,Hudson Yards-Chelsea-Flatiron-Union Square +1007600051,1,760,51,2021,312,WEST 37 STREET,10018,H2,4,"AL DUWALIYA HOSPITALITY COMPANY, INC.",MANHATTAN,40.754367,-73.992752,104,3,111,1089779,1007600051,Hudson Yards-Chelsea-Flatiron-Union Square +1007600058,1,760,58,2021,326,WEST 37 STREET,10018,H2,4,SNRP WEST 37 LLC,MANHATTAN,40.754488,-73.993037,104,3,111,1090331,1007600058,Hudson Yards-Chelsea-Flatiron-Union Square +1007610028,1,761,28,2021,307,WEST 37 STREET,10018,H3,4,"CWI TIMES SQUARE HOTEL, LLC",MANHATTAN,40.754332,-73.992622,104,3,111,1090456,1007610028,Hudson Yards-Chelsea-Flatiron-Union Square +1007620006,1,762,6,2021,351,WEST 38 STREET,10018,H2,4,QUADRUM 38 LLC,MANHATTAN,40.755325,-73.993066,104,3,115,1090149,1007620006,Clinton +1007620016,1,762,16,2021,333,WEST 38 STREET,10018,HB,4,W38 BOUTIQUE INN LLC,MANHATTAN,40.755169,-73.992702,104,3,115,1090648,1007620016,Clinton +1007620038,1,762,38,2021,585,8 AVENUE,10018,H3,4,IMDN HOLDING LLC,MANHATTAN,40.755097,-73.991363,104,3,115,1090194,1007620038,Clinton +1007620061,1,762,61,2021,338,WEST 39 STREET,10018,H3,4,338 WEST 39TH STREET LLC,MANHATTAN,40.755827,-73.99238,104,3,115,1013652,1007620061,Clinton +1007620067,1,762,67,2021,350,WEST 39 STREET,10018,H1,4,LOPM 39 DE LLC,MANHATTAN,40.755932,-73.992626,104,3,115,1090150,1007620067,Clinton +1007630012,1,763,12,2021,343,WEST 39 STREET,10018,H3,4,"HCIN DUO THREE ASSOCIATES, LLC",MANHATTAN,40.755877,-73.992453,104,3,115,1087498,1007630012,Clinton +1007630013,1,763,13,2021,341,WEST 39 STREET,10018,HS,4,"HCIN DUO TWO ASSOCIATES, LLC",MANHATTAN,40.75586,-73.992413,104,3,115,1087500,1007630013,Clinton +1007630014,1,763,14,2021,337,WEST 39 STREET,10018,H3,4,"HCIN DUO ONE ASSOCIATES, LLC",MANHATTAN,40.755825,-73.99233,104,3,115,1087499,1007630014,Clinton +1007630028,1,763,28,2021,311,WEST 39 STREET,10018,H2,4,SM ASCOTT LLC,MANHATTAN,40.755602,-73.991803,104,3,115,1088523,1007630028,Clinton +1007630032,1,763,32,2021,305,WEST 39 STREET,10018,H2,4,YAD LLC,MANHATTAN,40.755553,-73.99168,104,3,115,1088180,1007630032,Clinton +1007630047,1,763,47,2021,310,WEST 40 STREET,10018,H2,4,UNAVAILABLE OWNER,MANHATTAN,40.756209,-73.991359,104,3,115,1090719,1007630047,Clinton +1007630054,1,763,54,2021,326,WEST 40 STREET,10018,H2,4,TIMES SQUARE HOSPITALITY FEE I LLC,MANHATTAN,40.756343,-73.991684,104,3,115,1087259,1007630054,Clinton +1007630056,1,763,56,2021,330,WEST 40 STREET,10018,H2,4,TIMES SQUARE HOSPITALITY FEE II LLC,MANHATTAN,40.756379,-73.991767,104,3,115,1087265,1007630056,Clinton +1007630060,1,763,60,2021,334,WEST 40 STREET,10018,HS,4,340-344 REALTY LLC,MANHATTAN,40.756412,-73.991846,104,3,115,1013693,1007630060,Clinton +1007630065,1,763,65,2021,342,WEST 40 STREET,10018,H2,4,GOULD HOTEL ON WEST 40TH STREET LLC,MANHATTAN,40.756481,-73.992009,104,3,115,1088524,1007630065,Clinton +1007630067,1,763,67,2021,346,WEST 40 STREET,10018,H2,4,NYHK FIONA LLC,MANHATTAN,40.756516,-73.992088,104,3,115,1013695,1007630067,Clinton +1007700008,1,770,8,2021,245,WEST 20 STREET,10011,HH,4,245 REALTY L.L.C. C/O,MANHATTAN,40.742834,-73.998427,104,3,87,1081521,1007700008,Hudson Yards-Chelsea-Flatiron-Union Square +1007720047,1,772,47,2021,204,WEST 23 STREET,10011,H3,4,202-4 WEST 23 ST CORP,MANHATTAN,40.744305,-73.996157,104,3,91,1014127,1007720047,Hudson Yards-Chelsea-Flatiron-Union Square +1007720064,1,772,64,2021,216,WEST 23 STREET,10011,H3,4,CHELSEA HOTEL OWNER LLC,MANHATTAN,40.744407,-73.996402,104,3,91,1014130,1007720064,Hudson Yards-Chelsea-Flatiron-Union Square +1007760033,1,776,33,2021,210,WEST 27 STREET,10001,H8,4,DORMITORY AUTHORITYNYS,MANHATTAN,40.746896,-73.994489,105,3,95,1088614,1007760033,Midtown-Midtown South +1007760047,1,776,47,2021,220,WEST 27 STREET,10001,H8,4,FIT STAFF HOUSING COINC,MANHATTAN,40.747124,-73.995023,105,3,95,1083088,1007760047,Midtown-Midtown South +1007760055,1,776,55,2021,230,WEST 27 STREET,10001,H8,4,F.I.T. STUDENT HOUSING CORPORATION,MANHATTAN,40.747195,-73.995193,105,3,95,1014237,1007760055,Midtown-Midtown South +1007780057,1,778,57,2021,232,WEST 29 STREET,10001,H3,4,BRISAM MANAGEMENT (DE) LLC,MANHATTAN,40.748301,-73.993987,105,3,95,1080553,1007780057,Midtown-Midtown South +1007780075,1,778,75,2021,370,8 AVENUE,10001,HR,4,370 8TH AVENUE GROUP LLC,MANHATTAN,40.748765,-73.995947,105,3,95,1014276,1007780075,Midtown-Midtown South +1007840054,1,784,54,2021,218,WEST 35 STREET,10001,H2,4,34TH STREET PENN ASSOCIATION LLC,MANHATTAN,40.751985,-73.99093,105,3,109,1014413,1007840054,Midtown-Midtown South +1007850023,1,785,23,2021,233,WEST 35 STREET,10001,H2,4,HHH.USA. INC.,MANHATTAN,40.752119,-73.991204,105,3,109,1014426,1007850023,Midtown-Midtown South +1007880009,1,788,9,2021,273,WEST 38 STREET,10018,H3,4,MANHATTAN BROADWAY PROPERTY CORP,MANHATTAN,40.754315,-73.99067,105,3,113,1014473,1007880009,Midtown-Midtown South +1007890069,1,789,69,2021,252,WEST 40 STREET,10018,H2,4,PORT 40TH PARKING CORP,MANHATTAN,40.755369,-73.989374,105,3,113,1090450,1007890069,Midtown-Midtown South +1007890078,1,789,78,2021,618,8 AVENUE,10018,HR,4,"618 EIGHT AVENUE, LLC",MANHATTAN,40.755852,-73.990785,105,3,113,1014512,1007890078,Midtown-Midtown South +1007990024,1,799,24,2021,131,WEST 23 STREET,10011,H3,4,"127 WEST 23RD OWNER, LLC",MANHATTAN,40.74335,-73.993833,104,3,91,1014950,1007990024,Hudson Yards-Chelsea-Flatiron-Union Square +1007990046,1,799,46,2021,108,WEST 24 STREET,10011,H3,4,"HCIN CHELSEA GRAND EAST ASSOCIATES, LLC",MANHATTAN,40.743808,-73.992912,104,3,91,1014958,1007990046,Hudson Yards-Chelsea-Flatiron-Union Square +1007990063,1,799,63,2021,140,WEST 24 STREET,10011,H2,4,NY 24TH STREET VI LLC,MANHATTAN,40.74408,-73.993558,104,3,91,1000000,1007990063,Hudson Yards-Chelsea-Flatiron-Union Square +1008000049,1,800,49,2021,112,WEST 25 STREET,10001,H2,4,LAM GEN 25 LLC,MANHATTAN,40.744461,-73.992544,104,3,91,1014986,1008000049,Hudson Yards-Chelsea-Flatiron-Union Square +1008000050,1,800,50,2021,113,WEST 24 STREET,10011,H2,4,CHELSEA 24TH STREET LLC,MANHATTAN,40.743858,-73.992984,104,3,91,1089732,1008000050,Hudson Yards-Chelsea-Flatiron-Union Square +1008000071,1,800,71,2021,160,WEST 25 STREET,10001,H3,4,CHELSEA GRAND WEST LLC,MANHATTAN,40.744871,-73.993515,104,3,91,1014994,1008000071,Hudson Yards-Chelsea-Flatiron-Union Square +1008010071,1,801,71,2021,152,WEST 26 STREET,10001,H1,4,"FASHION 26TH STREET, LLC",MANHATTAN,40.745422,-73.992905,104,3,91,1015028,1008010071,Hudson Yards-Chelsea-Flatiron-Union Square +1008011204,1,801,1204,2021,127,WEST 25 STREET,10001,RH,4,THE BOWERY LEASEHOLD CONDOMINIUM,MANHATTAN,40.744596,-73.992818,104,3,91,1015006,1008017503,Hudson Yards-Chelsea-Flatiron-Union Square +1008020026,1,802,26,2021,121,WEST 26 STREET,10001,H2,4,CWI OP LP,MANHATTAN,40.745175,-73.992277,105,3,95,1015038,1008020026,Midtown-Midtown South +1008020061,1,802,61,2021,132,WEST 27 STREET,10001,H2,4,27 STREET EQUITIES LLC,MANHATTAN,40.745867,-73.99205,105,3,95,1015052,1008020061,Midtown-Midtown South +1008020078,1,802,78,2021,297,7 AVENUE,10001,H9,4,LMS 297 LLC,MANHATTAN,40.746468,-73.993912,105,3,95,1015058,1008020078,Midtown-Midtown South +1008030049,1,803,49,2021,116,WEST 28 STREET,10001,H3,4,"GOLDEN TOWN REALTY,",MANHATTAN,40.74635,-73.991274,105,3,95,1080594,1008030049,Midtown-Midtown South +1008030058,1,803,58,2021,132,WEST 28 STREET,10001,H2,4,28TH STEET PROPERTIES LLC,MANHATTAN,40.746484,-73.991598,105,3,95,1015090,1008030058,Midtown-Midtown South +1008030062,1,803,62,2021,140,WEST 28 STREET,10001,H2,4,140 WEST 28 OWNER LLC,MANHATTAN,40.746553,-73.991761,105,3,95,1015093,1008030062,Midtown-Midtown South +1008040020,1,804,20,2021,127,WEST 28 STREET,10001,H2,4,FORTUNA REALTY LLC,MANHATTAN,40.746449,-73.991465,105,3,95,1015107,1008040020,Midtown-Midtown South +1008040022,1,804,22,2021,123,WEST 28 STREET,10001,H3,4,WE CARE TRADING CO INC,MANHATTAN,40.746413,-73.991382,105,3,95,1089883,1008040022,Midtown-Midtown South +1008040024,1,804,24,2021,121,WEST 28 STREET,10001,H2,4,HAN'S 28 HOSPITALITY LLC,MANHATTAN,40.746396,-73.991342,105,3,95,1087590,1008040024,Midtown-Midtown South +1008040032,1,804,32,2021,105,WEST 28 STREET,10001,H2,4,LSG 105 WEST 28TH LLC,MANHATTAN,40.746259,-73.991017,105,3,95,1090387,1008040032,Midtown-Midtown South +1008040034,1,804,34,2021,815,AVENUE OF THE AMER,10001,H1,4,815 NY LENDER LLC,MANHATTAN,40.746237,-73.990736,105,3,95,1088896,1008040034,Midtown-Midtown South +1008040054,1,804,54,2021,124,WEST 29 STREET,10001,H2,4,BRISAM WEST 29 LLC,MANHATTAN,40.747036,-73.990988,105,3,95,1000000,1008040054,Midtown-Midtown South +1008051103,1,805,1103,2021,835,AVENUE OF THE AMER,10001,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.746805,-73.989974,105,3,95,1015146,1008057502,Midtown-Midtown South +1008060013,1,806,13,2021,135,WEST 30 STREET,10001,H3,4,COURTYARD NEW YORK MANHATTAN CHELSEA 313 1Y,MANHATTAN,40.747752,-73.990728,105,3,101,1090129,1008060013,Midtown-Midtown South +1008060052,1,806,52,2021,116,WEST 31 STREET,10001,H3,4,"HCIN HERALD SQUARE ASSOCIATES, LLC",MANHATTAN,40.748208,-73.98992,105,3,101,1087523,1008060052,Midtown-Midtown South +1008060076,1,806,76,2021,371,7 AVENUE,10001,H1,4,CYH MANHATTAN LLC,MANHATTAN,40.748806,-73.992204,105,3,101,1015174,1008060076,Midtown-Midtown South +1008081001,1,808,1001,2021,401,7 AVENUE,10001,RH,4,"401 HOTEL REIT,",MANHATTAN,40.749794,-73.991486,105,3,101,1015191,1008087501,Midtown-Midtown South +1008121001,1,812,1001,2021,485,7 AVENUE,10018,RH,4,485 SEVENTH AVE ASSOC LLC,MANHATTAN,40.752465,-73.989544,105,3,109,1015235,1008127501,Midtown-Midtown South +1008141001,1,814,1001,2021,100,WEST 39 STREET,10018,RH,4,MG HOTEL SPE LLC,MANHATTAN,40.75303,-73.985732,105,4,113,1015272,1008147501,Midtown-Midtown South +1008150020,1,815,20,2021,117,WEST 39 STREET,10018,H3,4,GRANITE PARK LLC,MANHATTAN,40.753313,-73.98636,105,4,113,1087857,1008150020,Midtown-Midtown South +1008180076,1,818,76,2021,48,WEST 17 STREET,10011,H3,4,JS CHELSEA LLC,MANHATTAN,40.738566,-73.993793,105,3,54,1077228,1008180076,Hudson Yards-Chelsea-Flatiron-Union Square +1008260017,1,826,17,2021,37,WEST 24 STREET,10010,HB,4,FORTUNA 37 WEST 24TH STREET LLC,MANHATTAN,40.742823,-73.990538,105,3,58,1084652,1008260017,Hudson Yards-Chelsea-Flatiron-Union Square +1008260024,1,826,24,2021,25,WEST 24 STREET,10010,H3,4,23 WEST 24TH STREET OWNER LLC,MANHATTAN,40.742696,-73.990242,105,3,58,1015596,1008260024,Hudson Yards-Chelsea-Flatiron-Union Square +1008260055,1,826,55,2021,18,WEST 25 STREET,10010,H3,4,BMF HOTEL CORP,MANHATTAN,40.743333,-73.989885,105,3,58,1015605,1008260055,Hudson Yards-Chelsea-Flatiron-Union Square +1008280025,1,828,25,2021,1141,BROADWAY,10001,HB,4,1141 REALTYOWNER LLC,MANHATTAN,40.74391,-73.989,105,3,58,1015645,1008280025,Hudson Yards-Chelsea-Flatiron-Union Square +1008280053,1,828,53,2021,1155,BROADWAY,10001,H3,4,10 WEST 27TH STREET CORP,MANHATTAN,40.74431,-73.988924,105,3,58,1015657,1008280053,Hudson Yards-Chelsea-Flatiron-Union Square +1008290014,1,829,14,2021,39,WEST 27 STREET,10001,H3,4,SENTON HOTEL WEST CORP,MANHATTAN,40.744821,-73.989527,105,3,58,1015679,1008290014,Hudson Yards-Chelsea-Flatiron-Union Square +1008290050,1,829,50,2021,1164,BROADWAY,10001,HB,4,HADDAD NOMAD LLC,MANHATTAN,40.744821,-73.988805,105,2,58,1080713,1008290050,Hudson Yards-Chelsea-Flatiron-Union Square +1008300017,1,830,17,2021,29,WEST 28 STREET,10001,H1,4,RP1185 LLC,MANHATTAN,40.745474,-73.989148,105,3,76,1000000,1008300017,Midtown-Midtown South +1008300024,1,830,24,2021,1185,BROADWAY,10001,H1,4,RP1185 LLC,MANHATTAN,40.7454,-73.988719,105,3,76,1000000,1008300024,Midtown-Midtown South +1008300037,1,830,37,2021,250,5 AVENUE,10001,H1,4,COSMIC REALTY PARTNERS LLC,MANHATTAN,40.744821,-73.987207,105,4,76,1015729,1008300037,Midtown-Midtown South +1008300054,1,830,54,2021,1186,BROADWAY,10001,H3,4,LGF ENTERPRISES,MANHATTAN,40.745608,-73.988661,105,4,76,1015739,1008300054,Midtown-Midtown South +1008300067,1,830,67,2021,32,WEST 29 STREET,10001,H3,4,32-34 WEST 29TH STREET REALTY LLC,MANHATTAN,40.746149,-73.988877,105,3,76,1089455,1008300067,Midtown-Midtown South +1008300073,1,830,73,2021,44,WEST 29 STREET,10001,H3,4,DEVLI PROPERTIES INC,MANHATTAN,40.746223,-73.989054,105,3,76,1090747,1008300073,Midtown-Midtown South +1008310068,1,831,68,2021,1227,BROADWAY,10001,H2,4,YJL BROADWAY HOTEL LLC,MANHATTAN,40.746635,-73.988491,105,3,76,1000000,1008310068,Midtown-Midtown South +1008320044,1,832,44,2021,292,5 AVENUE,10001,H9,4,WDSA 5TH AVENUE LLC,MANHATTAN,40.746286,-73.986142,105,4,76,1000000,1008320044,Midtown-Midtown South +1008320049,1,832,49,2021,4,WEST 31 STREET,10001,H3,4,WOLCOTT HOTEL CO,MANHATTAN,40.746712,-73.986383,105,4,76,1015792,1008320049,Midtown-Midtown South +1008320062,1,832,62,2021,30,WEST 31 STREET,10001,H2,4,BLUE 31ST STREET NYC LLC,MANHATTAN,40.747123,-73.987361,105,4,76,1088534,1008320062,Midtown-Midtown South +1008320066,1,832,66,2021,1226,BROADWAY,10001,HR,4,1234 BROADWAY LLC,MANHATTAN,40.747074,-73.988386,105,4,76,1015778,1008320022,Midtown-Midtown South +1008330028,1,833,28,2021,19,WEST 31 STREET,10001,H3,4,LIFE HOTEL ONE LLC,MANHATTAN,40.746956,-73.986917,105,4,76,1015811,1008330028,Midtown-Midtown South +1008330049,1,833,49,2021,6,WEST 32 STREET,10001,H3,4,6 WEST 32ND STREET LLC,MANHATTAN,40.747381,-73.986051,105,4,76,1015824,1008330049,Midtown-Midtown South +1008340011,1,834,11,2021,1260,BROADWAY,10001,H2,4,MARTINQUE HTL AFFILIATES,MANHATTAN,40.7484,-73.988144,105,4,76,1083630,1008340011,Midtown-Midtown South +1008340016,1,834,16,2021,43,WEST 32 STREET,10001,H3,4,STANFORD NEW YORK LLC D/B/A HOTEL STANFORD,MANHATTAN,40.747686,-73.98673,105,4,76,1015843,1008340016,Midtown-Midtown South +1008340029,1,834,29,2021,17,WEST 32 STREET,10001,H3,4,17 W 32 ST OWNER LLC,MANHATTAN,40.747466,-73.98621,105,4,76,1015849,1008340029,Midtown-Midtown South +1008360065,1,836,65,2021,40,WEST 35 STREET,10001,H3,4,MEADOW REAL ESTATE FUND III LP CO MEADOW PARTNERS,MANHATTAN,40.749717,-73.985567,105,4,76,1015881,1008360065,Midtown-Midtown South +1008361104,1,836,1104,2021,1328,BROADWAY,10001,RH,4,MERCY COLLEGE,MANHATTAN,40.750316,-73.987379,105,4,76,1015867,0,Midtown-Midtown South +1008370001,1,837,1,2021,960,AVENUE OF THE AMER,10001,H3,4,ATLANTIC 960 CORP,MANHATTAN,40.750486,-73.987256,105,4,84,1083641,1008370001,Midtown-Midtown South +1008370006,1,837,6,2021,63,WEST 35 STREET,10001,H2,4,"GARDEN 35TH STREET, LLC",MANHATTAN,40.749986,-73.986159,105,4,84,1015885,1008370006,Midtown-Midtown South +1008370009,1,837,9,2021,57,WEST 35 STREET,10001,H3,4,59 WEST 35TH STREET LLC,MANHATTAN,40.74992,-73.986004,105,4,84,1088537,1008370009,Midtown-Midtown South +1008370015,1,837,15,2021,43,WEST 35 STREET,10001,H2,4,45 WEST HOTEL LIMITED PARTNERSHIP,MANHATTAN,40.749766,-73.985636,105,4,84,1015888,1008370015,Midtown-Midtown South +1008370067,1,837,67,2021,38,WEST 36 STREET,10018,H1,4,EXECUTIVE LE SOLEIL NEW YORK LLC,MANHATTAN,40.750494,-73.985473,105,4,84,1090629,1008370067,Midtown-Midtown South +1008370072,1,837,72,2021,48,WEST 36 STREET,10018,H3,4,48 WEST 36TH STREET PROPERTY OWNER LLC,MANHATTAN,40.750571,-73.985661,105,4,84,1015912,1008370072,Midtown-Midtown South +1008370074,1,837,74,2021,52,WEST 36 STREET,10018,H3,4,BLUE 36TH STREET NYC LLC,MANHATTAN,40.750604,-73.985736,105,4,84,1015913,1008370074,Midtown-Midtown South +1008370078,1,837,78,2021,60,WEST 36 STREET,10018,H3,4,"HOSPITALITY FINANCE COMPANY ONE, LLC",MANHATTAN,40.750667,-73.985884,105,4,84,1015915,1008370078,Midtown-Midtown South +1008380054,1,838,54,2021,4,WEST 37 STREET,10018,H2,4,4 WEST 37TH STREET LLC,MANHATTAN,40.750559,-73.983708,105,4,84,1090636,1008380054,Midtown-Midtown South +1008381004,1,838,1004,2021,400,5 AVENUE,10018,RH,4,PACIFIC FIFTH AVENUE CORPORATION,MANHATTAN,40.750038,-73.983409,105,4,84,1015937,1008387501,Midtown-Midtown South +1008381005,1,838,1005,2021,400,5 AVENUE,10018,RH,4,PACIFIC FIFTH AVENUE CORPORATION,MANHATTAN,40.750038,-73.983409,105,4,84,1015937,1008387501,Midtown-Midtown South +1008381202,1,838,1202,2021,60,WEST 37 STREET,10018,RH,4,ASHFORD NEW YORK LP,MANHATTAN,40.751114,-73.985025,105,4,84,1090374,1008387502,Midtown-Midtown South +1008390021,1,839,21,2021,33,WEST 37 STREET,10018,H2,4,54M 33W37 LLC,MANHATTAN,40.750864,-73.98439,105,4,84,1084661,1008390021,Midtown-Midtown South +1008390024,1,839,24,2021,29,WEST 37 STREET,10018,H3,4,KSNY ENTERPRISES LTD.,MANHATTAN,40.750826,-73.984296,105,4,84,1000000,1008390024,Midtown-Midtown South +1008390027,1,839,27,2021,21,WEST 37 STREET,10018,H3,4,NY 29 WEST LLC,MANHATTAN,40.750746,-73.984112,105,4,84,1088538,1008390027,Midtown-Midtown South +1008390033,1,839,33,2021,11,WEST 37 STREET,10018,H3,4,HKONY WEST 37 LLC,MANHATTAN,40.75065,-73.983881,105,4,84,1090635,1008390033,Midtown-Midtown South +1008390067,1,839,67,2021,34,WEST 38 STREET,10018,H2,4,ONBOARD HOSPITALITY LLC,MANHATTAN,40.751473,-73.983964,105,4,84,1090634,1008390067,Midtown-Midtown South +1008400001,1,840,1,2021,1020,AVENUE OF THE AMER,10018,H3,4,1020 HOTEL CORP C/0 BELVEDERE HOTEL,MANHATTAN,40.752404,-73.985866,105,4,84,1015987,1008400001,Midtown-Midtown South +1008400006,1,840,6,2021,63,WEST 38 STREET,10018,HB,4,63 WEST 38TH STREET DEVELOPMENT LLC,MANHATTAN,40.751773,-73.984628,105,4,84,1015989,1008400006,Midtown-Midtown South +1008400016,1,840,16,2021,45,WEST 38 STREET,10018,HB,4,MANHATTAN LW HOTEL ASSOCIATES L.P.,MANHATTAN,40.751597,-73.984213,105,4,84,1090630,1008400016,Midtown-Midtown South +1008400026,1,840,26,2021,27,WEST 38 STREET,10018,HB,4,FORTUNA FIFTH AVE LLC,MANHATTAN,40.751424,-73.983798,105,4,84,1090632,1008400026,Midtown-Midtown South +1008400030,1,840,30,2021,19,WEST 38 STREET,10018,H2,4,26 WEST 39TH LLC,MANHATTAN,40.751344,-73.983614,105,4,84,1000000,1008400030,Midtown-Midtown South +1008400081,1,840,81,2021,58,WEST 39 STREET,10018,H2,4,H HOTEL LLC,MANHATTAN,40.75233,-73.984076,105,4,84,1016018,1008400081,Midtown-Midtown South +1008410071,1,841,71,2021,38,WEST 40 STREET,10018,H1,4,PHILIPS BRYANT PARK LLC,MANHATTAN,40.753046,-73.983859,105,4,84,1080745,1008410071,Midtown-Midtown South +1008411001,1,841,1001,2021,16,WEST 40TH STREET,10018,RH,4,PTH 40 ASSOCIATES LLC,MANHATTAN,40.752505,-73.982574,105,4,84,1090404,1008417501,Midtown-Midtown South +1008430022,1,843,22,2021,21,UNION SQUARE,10003,H8,4,NY UNIVERSITY,MANHATTAN,40.736139,-73.991044,105,2,52,1087304,1008430022,Hudson Yards-Chelsea-Flatiron-Union Square +1008480014,1,848,14,2021,893,BROADWAY,10003,H3,4,CHOLLA 893 LLC,MANHATTAN,40.738865,-73.98986,105,2,52,1016162,1008480014,Hudson Yards-Chelsea-Flatiron-Union Square +1008530001,1,853,1,2021,1,MADISON AVENUE,10010,H1,4,BLACK SLATE F 2013 LLC,MANHATTAN,40.740909,-73.987947,105,2,56,1088749,1008530002,Hudson Yards-Chelsea-Flatiron-Union Square +1008570007,1,857,7,2021,7,EAST 27 STREET,10016,HB,4,EAST 27 HOTEL LLC,MANHATTAN,40.743843,-73.987196,105,2,56,1016886,1008570007,Hudson Yards-Chelsea-Flatiron-Union Square +1008570017,1,857,17,2021,62,MADISON AVENUE,10016,HB,4,MAVE HOTEL INVESTORS LLC,MANHATTAN,40.743487,-73.986088,105,2,56,1016887,1008570017,Hudson Yards-Chelsea-Flatiron-Union Square +1008580017,1,858,17,2021,86,MADISON AVENUE,10016,H1,4,"88 MADISON HOTEL FEE OWNER, LLC",MANHATTAN,40.744269,-73.985518,105,4,74,1080775,1008580017,Midtown-Midtown South +1008580045,1,858,45,2021,420,PARK AVENUE SOUTH,10016,H1,4,"TGA II, LLC",MANHATTAN,40.743805,-73.983739,105,2,74,1088542,1008580045,Midtown-Midtown South +1008581201,1,858,1201,2021,22,EAST 29TH STREET,10005,RH,4,"88 MADISON HOTEL FEE OWNER, LLC",MANHATTAN,40.744722,-73.985489,105,4,74,1080776,1008580017,Midtown-Midtown South +1008590026,1,859,26,2021,30,EAST 30 STREET,10016,H3,4,"29 EAST 29TH STREET NY OWNER, LLC",MANHATTAN,40.745111,-73.984503,105,2,74,1080777,1008590026,Midtown-Midtown South +1008590075,1,859,75,2021,16,EAST 30 STREET,10016,H3,4,16-18 EAST 30TH STREET LLC,MANHATTAN,40.745512,-73.985449,105,4,74,1090514,1008590075,Midtown-Midtown South +1008600037,1,860,37,2021,444,PARK AVENUE SOUTH,10016,H1,4,444 PARK AVENUE SOUTH ASSOCIATES LLC,MANHATTAN,40.744705,-73.983082,105,2,74,1016966,1008600037,Midtown-Midtown South +1008600061,1,860,61,2021,129,MADISON AVENUE,10016,H6,4,ROGERS WILLIAMS,MANHATTAN,40.745693,-73.984453,105,2,74,1016972,1008600061,Midtown-Midtown South +1008600071,1,860,71,2021,18,EAST 31 STREET,10016,H2,4,LE MARQUIS ASSOCIATES,MANHATTAN,40.746083,-73.984897,105,4,74,1016979,1008600071,Midtown-Midtown South +1008600074,1,860,74,2021,12,EAST 31 STREET,10016,H2,4,"LEMARQUIS ASSOCIATES,",MANHATTAN,40.746212,-73.985203,105,4,74,1016980,1008600074,Midtown-Midtown South +1008610010,1,861,10,2021,11,EAST 31 STREET,10016,H3,4,"AYYA HOTEL, LLC",MANHATTAN,40.746206,-73.985142,105,4,74,1088871,1008610010,Midtown-Midtown South +1008610052,1,861,52,2021,34,EAST 32 STREET,10016,H3,4,"FIRST WOOSTER, LLC",MANHATTAN,40.746324,-73.98355,105,2,74,1016995,1008610052,Midtown-Midtown South +1008610054,1,861,54,2021,32,EAST 32 STREET,10016,H3,4,PINNACLE TOWER REALTY LLC,MANHATTAN,40.746335,-73.983579,105,2,74,1016996,1008610054,Midtown-Midtown South +1008610066,1,861,66,2021,14,EAST 32 STREET,10016,H3,4,16 EAST 32 CORP.,MANHATTAN,40.746786,-73.984651,105,4,74,1017001,1008610066,Midtown-Midtown South +1008620028,1,862,28,2021,35,EAST 32 STREET,10016,H3,4,35 EAST 32ND REALTY LLC,MANHATTAN,40.746327,-73.983514,105,2,74,1017018,1008620028,Midtown-Midtown South +1008630053,1,863,53,2021,48,EAST 34 STREET,10016,H8,4,YESHIVA UNIVERSITY,MANHATTAN,40.7476,-73.982586,105,2,74,1017088,1008630053,Midtown-Midtown South +1008631002,1,863,1002,2021,45,EAST 33 STREET,10016,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.746895,-73.982944,105,2,74,1080794,1008637501,Midtown-Midtown South +1008650001,1,865,1,2021,373,5 AVENUE,10016,H3,4,"FANTASIA 373 HOTEL US, LLC",MANHATTAN,40.749193,-73.984001,105,4,82,1017116,1008650001,Murray Hill-Kips Bay +1008670020,1,867,20,2021,237,MADISON AVENUE,10016,H3,4,237 MADISON LLC,MANHATTAN,40.749878,-73.981406,106,4,82,1017197,1008670020,Murray Hill-Kips Bay +1008670042,1,867,42,2021,64,PARK AVENUE,10016,HB,4,KITANO ARMS CORP,MANHATTAN,40.749461,-73.979619,106,4,82,1017211,1008670042,Murray Hill-Kips Bay +1008670055,1,867,55,2021,241,MADISON AVENUE,10016,H3,4,"JOLLY HOTELS U.S.A., INC.",MANHATTAN,40.750002,-73.981315,106,4,82,1017220,1008670055,Murray Hill-Kips Bay +1008680030,1,868,30,2021,31,EAST 38 STREET,10016,H8,4,"ALDERTON HOUSE, INC.",MANHATTAN,40.750004,-73.980435,106,4,82,1017234,1008680030,Murray Hill-Kips Bay +1008680036,1,868,36,2021,70,PARK AVENUE,10016,HB,4,"PONTE GADEA PARK, LLC",MANHATTAN,40.74976,-73.979403,106,4,82,1017236,1008680036,Murray Hill-Kips Bay +1008680051,1,868,51,2021,24,EAST 39 STREET,10016,HS,4,24 E 39 LLC,MANHATTAN,40.750636,-73.980063,106,4,82,1017241,1008680051,Murray Hill-Kips Bay +1008680064,1,868,64,2021,16,EAST 39 STREET,10016,H2,4,16 EAST 39TH STREET LLC,MANHATTAN,40.751141,-73.981254,105,4,82,1089811,1008680064,Murray Hill-Kips Bay +1008690025,1,869,25,2021,23,EAST 39 STREET,10016,H3,4,"SLC2 HOLDINGS, LLC",MANHATTAN,40.750652,-73.980052,106,4,82,1017592,1008690025,Murray Hill-Kips Bay +1008730001,1,873,1,2021,201,PARK AVENUE SOUTH,10003,H1,4,"MI PARK 201, LLC",MANHATTAN,40.736644,-73.988944,105,2,50,1080799,1008730001,Gramercy +1008730020,1,873,20,2021,56,IRVING PLACE,10003,H3,4,54-56 IRVING PLACE LLC,MANHATTAN,40.736098,-73.987215,106,2,50,1017844,1008730020,Gramercy +1008750067,1,875,67,2021,17,GRAMERCY PARK SOUTH,10003,H8,4,SCHOOL OF VISUAL ARTS INC,MANHATTAN,40.737679,-73.986234,106,2,50,1017937,1008750067,Gramercy +1008770018,1,877,18,2021,2,LEXINGTON AVENUE,10010,H1,4,GPH PARTNERS LLC,MANHATTAN,40.738315,-73.985616,106,2,68,1017990,1008770018,Gramercy +1008790023,1,879,23,2021,135,EAST 23 STREET,10010,H2,4,"BLDG PARTNERSHIP, 76 L.P.",MANHATTAN,40.739416,-73.984498,106,2,68,1018041,1008790023,Gramercy +1008790044,1,879,44,2021,318,3 AVENUE,10010,HH,4,ACE 318 CORP,MANHATTAN,40.73935,-73.982787,106,2,68,1018053,1008790044,Gramercy +1008791103,1,879,1103,2021,316,3 AVENUE,10010,RH,4,NEW YORK UNIVERSITY,MANHATTAN,40.739298,-73.982823,106,2,68,1087902,1008797502,Gramercy +1008800009,1,880,9,2021,111,EAST 24 STREET,10010,H9,4,"DEMETRIOS & FANIA SAMUEL, LLC",MANHATTAN,40.740591,-73.985237,105,2,68,1090533,1008800009,Gramercy +1008800050,1,880,50,2021,336,3 AVENUE,10010,H3,4,"CHU, SU FENG",MANHATTAN,40.739973,-73.982329,106,2,68,1018080,1008800050,Gramercy +1008810024,1,881,24,2021,67,LEXINGTON AVENUE,10010,H3,4,DELEX BUILDING LLC,MANHATTAN,40.741043,-73.983617,106,2,68,1018104,1008810024,Gramercy +1008820001,1,882,1,2021,365,PARK AVENUE SOUTH,10016,HB,4,EAST 26 STREET & PARK AVE REALTY,MANHATTAN,40.742218,-73.984872,105,2,68,1018122,1008820001,Gramercy +1008830078,1,883,78,2021,124,EAST 28 STREET,10016,H1,4,"HISTORIC INNS OF NEWYORK CITY,",MANHATTAN,40.74283,-73.982912,105,2,68,1069249,1008830078,Gramercy +1008850004,1,885,4,2021,429,PARK AVENUE SOUTH,10016,H3,4,PARK AVENUE HOSPITALITY LLC,MANHATTAN,40.744178,-73.983443,105,2,72,1018239,1008850004,Murray Hill-Kips Bay +1008850006,1,885,6,2021,103,EAST 29 STREET,10016,H3,4,AUEVILLA HOLDINGS LLC,MANHATTAN,40.743791,-73.983237,105,2,72,1018240,1008850006,Murray Hill-Kips Bay +1008850015,1,885,15,2021,119,EAST 29 STREET,10016,H8,4,YESHIVA UNIVERSITY,MANHATTAN,40.743511,-73.982573,105,2,72,1018246,1008850015,Murray Hill-Kips Bay +1008860030,1,886,30,2021,161,LEXINGTON AVENUE,10016,H3,4,G2 MGMT LLC HOTEL AMER ICA,MANHATTAN,40.743969,-73.981483,106,2,72,1018312,1008860030,Murray Hill-Kips Bay +1008860075,1,886,75,2021,120,EAST 31 STREET,10016,H3,4,"LEXINGTON ASSOCIATES,",MANHATTAN,40.744762,-73.981754,105,2,72,1018339,1008860075,Murray Hill-Kips Bay +1008870088,1,887,88,2021,114,EAST 32 STREET,10016,HS,4,MPA32 INC.,MANHATTAN,40.745465,-73.981512,105,2,72,1018470,1008870088,Murray Hill-Kips Bay +1008921101,1,892,1101,2021,554,3 AVENUE,10016,RH,4,555 EUO,MANHATTAN,40.747432,-73.976891,106,4,80,1018967,1008927502,Murray Hill-Kips Bay +1008930025,1,893,25,2021,303,LEXINGTON AVENUE,10016,HB,4,"303 LEXINGTON AVENUE CO., LLC",MANHATTAN,40.748607,-73.978104,106,4,80,1019090,1008930025,Murray Hill-Kips Bay +1008940071,1,894,71,2021,130,EAST 39 STREET,10016,H1,4,"ST. GILES HOTEL, LLC",MANHATTAN,40.749631,-73.97767,106,4,80,1019161,1008940071,Murray Hill-Kips Bay +1008940075,1,894,75,2021,120,EAST 39 STREET,10016,H1,4,"ST. GILES HOTEL, LLC",MANHATTAN,40.749779,-73.978024,106,4,80,1019164,1008940075,Murray Hill-Kips Bay +1008950034,1,895,34,2021,141,EAST 39 STREET,10016,H3,4,BD POD 39 LLC,MANHATTAN,40.74937,-73.976999,106,4,80,1019481,1008950034,Murray Hill-Kips Bay +1008950038,1,895,38,2021,149,EAST 39 STREET,10016,HS,4,149 EAST 39TH STREET LLC,MANHATTAN,40.749318,-73.976873,106,4,80,1019482,1008950038,Murray Hill-Kips Bay +1008950063,1,895,63,2021,144,EAST 40 STREET,10016,H3,4,LH 99 LLC,MANHATTAN,40.749952,-73.976519,106,4,80,1019485,1008950063,Murray Hill-Kips Bay +1008950079,1,895,79,2021,118,EAST 40 STREET,10016,H2,4,BEDFORD-WCR LLC,MANHATTAN,40.750402,-73.977591,106,4,80,1019492,1008950079,Murray Hill-Kips Bay +1008960001,1,896,1,2021,125,3 AVENUE,10003,H8,4,CORAL CRYSTAL LLC,MANHATTAN,40.733391,-73.987097,106,2,48,1019496,1008960001,Gramercy +1008960009,1,896,9,2021,209,EAST 14 STREET,10003,HS,4,BEST INNS USA LLC,MANHATTAN,40.733106,-73.986711,106,2,48,1019502,1008960009,Gramercy +1008970012,1,897,12,2021,215,EAST 15 STREET,10003,HS,4,FRIENDS HOME ASSOCIAT,MANHATTAN,40.733638,-73.985852,106,2,48,1019526,1008970012,Gramercy +1008980016,1,898,16,2021,223,EAST 17 STREET,10003,H3,4,"17TH ST. PROPERTY CO.,",MANHATTAN,40.734761,-73.984711,106,2,48,1019560,1008980016,Gramercy +1009040010,1,904,10,2021,215,EAST 23 STREET,10010,H8,4,"OCEAN DRIVE REALTY ASSOCIATES,",MANHATTAN,40.738603,-73.982582,106,2,64,1019771,1009040010,Gramercy +1009050001,1,905,1,2021,321,3 AVENUE,10010,HB,4,"EAST SIDE INN,",MANHATTAN,40.739586,-73.982589,106,2,66,1082137,1009050001,Murray Hill-Kips Bay +1009210006,1,921,6,2021,307,EAST 14 STREET,10003,H3,4,UNAVAILABLE OWNER,MANHATTAN,40.732189,-73.984539,106,2,48,1020389,1009210006,Gramercy +1009210051,1,921,51,2021,318,EAST 15 STREET,10003,H8,4,BOOTH 15 PROPERTY LLC,MANHATTAN,40.732592,-73.983417,106,2,48,1020414,1009210051,Gramercy +1009290038,1,929,38,2021,340,EAST 24 STREET,10010,H8,4,"407 FIRST DORMITORY, LLC",MANHATTAN,40.737826,-73.978717,106,2,64,1020597,1009290038,Gramercy +1009300038,1,930,38,2021,334,EAST 25 STREET,10010,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.73877,-73.979045,106,2,66,1020602,1009300038,Murray Hill-Kips Bay +1009300041,1,930,41,2021,330,EAST 25 STREET,10010,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.738797,-73.979114,106,2,66,1081673,1009300041,Murray Hill-Kips Bay +1009310021,1,931,21,2021,334,EAST 26 STREET,10010,H8,4,NEW YORK UNIVERSITY,MANHATTAN,40.739118,-73.977941,106,2,66,1020607,1009310021,Murray Hill-Kips Bay +1009360037,1,936,37,2021,545,1 AVENUE,10016,H8,4,NYU LANGONE HOSPITALS,MANHATTAN,40.742233,-73.974659,106,2,70,1020760,1009360037,Murray Hill-Kips Bay +1009930043,1,993,43,2021,120,WEST 41 STREET,10036,H2,4,"41ST MIDTOWN, LLC",MANHATTAN,40.754529,-73.985458,105,4,113,1090597,1009930043,Midtown-Midtown South +1009941103,1,994,1103,2021,1466,BROADWAY,10036,RH,4,"FCH HH KNICKERBOCKER OWNER, L.P.",MANHATTAN,40.755569,-73.986465,105,4,113,1022579,1009947502,Midtown-Midtown South +1009941202,1,994,1202,2021,136,WEST 42 STREET,10036,RH,4,"DIAMONDROCK TIMES SQUARE OWNER, LLC",MANHATTAN,40.755338,-73.985313,105,4,113,1022578,1009947503,Midtown-Midtown South +1009960009,1,996,9,2021,147,WEST 43 STREET,10036,H2,4,PATRICIA HAMILTON AS,MANHATTAN,40.756022,-73.984808,105,4,119,1022611,1009960009,Midtown-Midtown South +1009960014,1,996,14,2021,127,WEST 43 STREET,10036,HR,4,THE WOODSTOCK HOUSING DEVELOPMENT FUND C ORPORATION,MANHATTAN,40.755873,-73.984454,105,4,119,1022613,1009960014,Midtown-Midtown South +1009960043,1,996,43,2021,120,WEST 44 STREET,10036,H3,4,O & O PROPERTIES CORP,MANHATTAN,40.756461,-73.983952,105,4,119,1022616,1009960043,Midtown-Midtown South +1009960046,1,996,46,2021,130,WEST 44 STREET,10036,H1,4,MANHATTAN INITIATIVEINC.,MANHATTAN,40.75654,-73.98414,105,4,119,1022617,1009960046,Midtown-Midtown South +1009970010,1,997,10,2021,153,WEST 44 STREET,10036,H1,4,CDL WEST 45TH STREETL.P.,MANHATTAN,40.75673,-73.984548,105,4,119,1085016,1009970010,Midtown-Midtown South +1009970017,1,997,17,2021,133,WEST 44 STREET,10036,H1,4,"CDL WEST 45TH STREET,",MANHATTAN,40.75657,-73.984169,105,4,119,1022628,1009970017,Midtown-Midtown South +1009970019,1,997,19,2021,123,WEST 44 STREET,10036,HS,4,METROPOLITIAN TIMES SQUARE ASSOCIATES LL C,MANHATTAN,40.756491,-73.983977,105,4,119,1022629,1009970019,Midtown-Midtown South +1009970047,1,997,47,2021,132,WEST 45 STREET,10036,H3,4,B.K.B.W. REALTY CORP.,MANHATTAN,40.757218,-73.983786,105,4,119,1022632,1009970047,Midtown-Midtown South +1009980015,1,998,15,2021,137,WEST 45 STREET,10036,H2,4,HHC TS REIT LLC,MANHATTAN,40.757268,-73.983854,105,4,119,1089796,1009980015,Midtown-Midtown South +1009980018,1,998,18,2021,125,WEST 45 STREET,10036,H3,4,FERRADO QT LLC,MANHATTAN,40.757163,-73.983613,105,4,119,1022637,1009980018,Midtown-Midtown South +1009980023,1,998,23,2021,119,WEST 45 STREET,10036,H2,4,119 W 45TH MANAGEMENT LLC,MANHATTAN,40.757114,-73.983494,105,4,119,1022639,1009980023,Midtown-Midtown South +1009980026,1,998,26,2021,109,WEST 45 STREET,10036,H3,4,S & G HOTEL CORP,MANHATTAN,40.757026,-73.983291,105,4,119,1022641,1009980026,Midtown-Midtown South +1009980047,1,998,47,2021,126,WEST 46 STREET,10036,H1,4,"WEST 46TH STREET HOTEL, LLC",MANHATTAN,40.757781,-73.983197,105,4,119,1022645,1009980047,Midtown-Midtown South +1009990017,1,999,17,2021,129,WEST 46 STREET,10036,H3,4,"KEY HOTELS, LLC",MANHATTAN,40.757811,-73.98323,105,4,125,1022666,1009990017,Midtown-Midtown South +1009990046,1,999,46,2021,128,WEST 47 STREET,10036,H3,4,47TH HOTEL ASSOCIATES LLC,MANHATTAN,40.758428,-73.982789,105,4,125,1022668,1009990046,Midtown-Midtown South +1009990048,1,999,48,2021,132,WEST 47 STREET,10036,H3,4,47TH HOTEL ASSOCIATES LLC,MANHATTAN,40.758461,-73.982869,105,4,125,1022669,1009990048,Midtown-Midtown South +1009991001,1,999,1001,2021,1568,BROADWAY,10036,RH,4,"TIMES SQUARE HOTEL OWNER, LLC",MANHATTAN,40.759055,-73.98471,105,4,125,1000000,1009997501,Midtown-Midtown South +1009991002,1,999,1002,2021,1568,BROADWAY,10036,RH,4,1568 BROADWAY ASSOCIATES,MANHATTAN,40.759055,-73.98471,105,4,125,1000000,1009997501,Midtown-Midtown South +1009991003,1,999,1003,2021,1568,BROADWAY,10036,RH,4,"TIMES SQUARE HOTEL OWNER, LLC",MANHATTAN,40.759055,-73.98471,105,4,125,1000000,1009997501,Midtown-Midtown South +1010000001,1,1000,1,2021,701,7 AVENUE,10036,H1,4,20 TSQ GROUNDCO LLC,MANHATTAN,40.759293,-73.984543,105,4,125,1083718,1010000001,Midtown-Midtown South +1010000007,1,1000,7,2021,157,WEST 47 STREET,10036,HB,4,157 WEST 47TH STREET HOTEL OWNER LP,MANHATTAN,40.758678,-73.983342,105,4,125,1022676,1010000007,Midtown-Midtown South +1010000011,1,1000,11,2021,145,WEST 47 STREET,10036,H1,4,CLARITY 47 LLC,MANHATTAN,40.758577,-73.9831,105,4,125,1000000,1010000011,Midtown-Midtown South +1010010006,1,1001,6,2021,155,WEST 48 STREET,10036,H1,4,"KCPC AQUISITION, INC.",MANHATTAN,40.759293,-73.982854,105,4,125,1000000,1010010006,Midtown-Midtown South +1010010055,1,1001,55,2021,142,WEST 49 STREET,10019,H2,4,"49TH ST. REALTY CO., A LTD LIAB. C OMPANY",MANHATTAN,40.759798,-73.982172,105,4,125,1022694,1010010055,Midtown-Midtown South +1010031002,1,1003,1002,2021,150,WEST 51 STREET,10019,RH,4,STARHOTELS INTL CORP,MANHATTAN,40.761431,-73.982142,105,4,131,1022710,1010037501,Midtown-Midtown South +1010050001,1,1005,1,2021,811,7 AVENUE,10019,H1,4,"HOST MARRIOTT, L.P.",MANHATTAN,40.762674,-73.982095,105,4,131,1023159,1010050001,Midtown-Midtown South +1010061301,1,1006,1301,2021,1335,AVENUE OF THE AMER,10019,RH,4,HLT NY HILTON LLC,MANHATTAN,40.762218,-73.978742,105,4,131,1023163,1010067502,Midtown-Midtown South +1010061302,1,1006,1302,2021,1335,AVENUE OF THE AMER,10019,RH,4,"HNY CLUB SUITES OWNERS ASSOCIATION, INC.",MANHATTAN,40.762218,-73.978742,105,4,131,1023163,1010067502,Midtown-Midtown South +1010061303,1,1006,1303,2021,1335,AVENUE OF THE AMER,10019,RH,4,HILTON RESORTS CORPORATION,MANHATTAN,40.762218,-73.978742,105,4,131,1023163,1010067502,Midtown-Midtown South +1010061304,1,1006,1304,2021,1335,AVENUE OF THE AMER,10019,RH,4,"TORRES, JOSE L",MANHATTAN,40.762218,-73.978742,105,4,131,1023163,1010067502,Midtown-Midtown South +1010061305,1,1006,1305,2021,1335,AVENUE OF THE AMER,10019,RH,4,HILTON RESORTS CORPORATION,MANHATTAN,40.762218,-73.978742,105,4,131,1023163,1010067502,Midtown-Midtown South +1010070005,1,1007,5,2021,151,WEST 54TH STREET,10019,H1,4,BLACK PUMICE D 2015 LLC,MANHATTAN,40.763245,-73.980582,105,4,137,1069590,1010070005,Midtown-Midtown South +1010070049,1,1007,49,2021,136,WEST 55 STREET,10019,H3,4,B2D2 GORHAM,MANHATTAN,40.76358,-73.979474,105,4,137,1023383,1010070049,Midtown-Midtown South +1010080001,1,1008,1,2021,859,7 AVENUE,10019,H3,4,WELLINGTON HOTEL CO,MANHATTAN,40.764313,-73.980903,105,4,137,1083722,1010080001,Midtown-Midtown South +1010080060,1,1008,60,2021,160,WEST 56 STREET,10019,H2,4,160 WEST 56TH STREET REALTY LLC,MANHATTAN,40.76456,-73.979867,105,4,137,1090399,1010080060,Midtown-Midtown South +1010090019,1,1009,19,2021,123,WEST 56 STREET,10019,H1,4,PARKER57 LLC,MANHATTAN,40.764074,-73.978669,105,4,137,1023455,1010090019,Midtown-Midtown South +1010090037,1,1009,37,2021,102,WEST 57 STREET,10019,H3,4,"HALL, LARRY J",MANHATTAN,40.764455,-73.977532,105,4,137,1089420,1010090037,Midtown-Midtown South +1010090044,1,1009,44,2021,120,WEST 57 STREET,10019,H2,4,"RICLAND, L.L.C.",MANHATTAN,40.764688,-73.978095,105,4,137,1023460,1010090044,Midtown-Midtown South +1010100015,1,1010,15,2021,123,WEST 57 STREET,10019,H3,4,CALVARY BAPTIST CHURC,MANHATTAN,40.764705,-73.978084,105,4,137,1023724,1010100015,Midtown-Midtown South +1010100029,1,1010,29,2021,1401,AVENUE OF THE AMER,10019,H1,4,HILTON RESORTS CORPORATION,MANHATTAN,40.764427,-73.977131,105,4,137,1023730,1010100029,Midtown-Midtown South +1010100055,1,1010,55,2021,158,WEST 58 STREET,10019,H3,4,NEW HAMPTON LLC,MANHATTAN,40.765668,-73.978315,105,4,137,1023738,1010100055,Midtown-Midtown South +1010101603,1,1010,1603,2021,157,WEST 57 STREET,10019,RH,4,"PH NEW YORK, L.L.C.",MANHATTAN,40.765205,-73.979279,105,4,137,1088565,1010107506,Midtown-Midtown South +1010110001,1,1011,1,2021,919,7 AVENUE,10019,H5,4,THE NEW YORK ATHLETIC,MANHATTAN,40.766256,-73.979491,105,4,137,1023750,1010110001,Midtown-Midtown South +1010111001,1,1011,1001,2021,160,CENTRAL PARK SOUTH,10019,RH,4,"SHR ESSEX HOUSE, LLC",MANHATTAN,40.766613,-73.978473,105,4,137,1023760,1010117501,Midtown-Midtown South +1010111610,1,1011,1610,2021,160,CENTRAL PARK SOUTH,10019,RH,4,EH1 LLC,MANHATTAN,40.766613,-73.978473,105,4,137,1023760,1010117501,Midtown-Midtown South +1010112001,1,1011,2001,2021,160,CENTRAL PARK SOUTH,10019,RH,4,"SHR ESSEX HOUSE, LLC",MANHATTAN,40.766613,-73.978473,105,4,137,1023760,1010117501,Midtown-Midtown South +1010120029,1,1012,29,2021,205,WEST 40 STREET,10018,H2,4,560 SEVENTH AVENUE OWNER PRIMARY LLC,MANHATTAN,40.754971,-73.988392,105,3,113,1090579,1010120029,Midtown-Midtown South +1010120037,1,1012,37,2021,206,WEST 41 STREET,10036,H3,4,NEDERLANDER THEATRICAL,MANHATTAN,40.755597,-73.987999,105,3,113,1024650,1010120037,Midtown-Midtown South +1010120042,1,1012,42,2021,220,WEST 41 STREET,10036,H2,4,"WOODBRANCH TIMES SQUARE, LLC",MANHATTAN,40.755717,-73.98828,105,3,113,1080831,1010120042,Midtown-Midtown South +1010139012,1,1013,9012,2021,234,WEST 42 STREET,10036,H1,4,SUNSTONE 42ND STREET LLC,MANHATTAN,40.756747,-73.988659,105,3,113,1024665,1010130012,Midtown-Midtown South +1010140055,1,1014,55,2021,250,WEST 43 STREET,10036,H3,4,250 WEST 43 OWNER LLC,MANHATTAN,40.757309,-73.987901,105,3,119,1085096,1010140055,Midtown-Midtown South +1010140058,1,1014,58,2021,270,WEST 43 STREET,10036,H2,4,WESTIN HOTEL,MANHATTAN,40.757482,-73.988309,105,3,119,1087141,1010140058,Midtown-Midtown South +1010161002,1,1016,1002,2021,700,8 AVENUE,10036,RH,4,700 MILFORD HOLDINGS LLC,MANHATTAN,40.758663,-73.988738,105,3,119,1024711,1010167501,Midtown-Midtown South +1010171003,1,1017,1003,2021,1535,BROADWAY,10036,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.758267,-73.985468,105,3,119,1024727,1010177501,Midtown-Midtown South +1010180006,1,1018,6,2021,235,WEST 46 STREET,10036,H2,4,BECKER-PARAMOUNT FEE LLC,MANHATTAN,40.759132,-73.986348,105,3,125,1024737,1010180006,Midtown-Midtown South +1010180018,1,1018,18,2021,219,WEST 46 STREET,10036,H2,4,"EDISON MANAGEMENT CO., L.L.C.",MANHATTAN,40.759008,-73.986052,105,3,125,1076192,1010180018,Midtown-Midtown South +1010181001,1,1018,1001,2021,1567,BROADWAY,10036,RH,4,"INTELL TIMES SQUARE, LLC.",MANHATTAN,40.759247,-73.985168,105,3,125,1024742,1010187501,Midtown-Midtown South +1010190055,1,1019,55,2021,234,WEST 48 STREET,10036,H2,4,234 WEST 48 LLC,MANHATTAN,40.760454,-73.985655,105,3,125,1024764,1010190055,Midtown-Midtown South +1010191002,1,1019,1002,2021,2,TIMES SQUARE,10036,RH,4,SHERWOOD 48 ASSOCIATES,MANHATTAN,40.75931,-73.984857,105,4,125,1024757,1010197501,Midtown-Midtown South +1010200046,1,1020,46,2021,1601,BROADWAY,10036,H1,4,"1609-11 BROADWAY, LLC",MANHATTAN,40.760375,-73.985189,105,3,125,1076195,1010200046,Midtown-Midtown South +1010200051,1,1020,51,2021,224,WEST 49 STREET,10019,HB,4,HOTEL FORREST AFFILIATES,MANHATTAN,40.761014,-73.985052,105,3,125,1024782,1010200051,Midtown-Midtown South +1010200057,1,1020,57,2021,240,WEST 49 STREET,10019,H3,4,"MAYFAIR HOTEL ASSOCIATES, LLC",MANHATTAN,40.761124,-73.985312,105,3,125,1024784,1010200057,Midtown-Midtown South +1010201002,1,1020,1002,2021,790,8 AVENUE,10019,RH,4,"RPH HOTELS 48TH STREET OWNERS,LLC",MANHATTAN,40.761127,-73.98694,105,3,125,1024771,1010207501,Midtown-Midtown South +1010210050,1,1021,50,2021,218,WEST 50 STREET,10019,H3,4,218 WEST 50 ST GARAGE CORP,MANHATTAN,40.761613,-73.984521,105,3,125,1024805,1010210050,Midtown-Midtown South +1010210052,1,1021,52,2021,224,WEST 50 STREET,10019,HB,4,ALI BABA HOTEL CORP,MANHATTAN,40.761654,-73.984619,105,3,125,1024806,1010210052,Midtown-Midtown South +1010211001,1,1021,1001,2021,233,WEST 49 STREET,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.761102,-73.985218,105,3,125,1088603,1010217501,Midtown-Midtown South +1010211002,1,1021,1002,2021,233,WEST 49 STREET,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.761102,-73.985218,105,3,125,1088603,1010217501,Midtown-Midtown South +1010230018,1,1023,18,2021,1651,BROADWAY,10019,H2,4,"M&C NEW YORK TIMES SQUARE EAT II, LLC",MANHATTAN,40.762164,-73.983575,105,3,131,1024817,1010230018,Midtown-Midtown South +1010230029,1,1023,29,2021,1652,BROADWAY,10019,H3,4,"MTS NY PROPCO, L.P.",MANHATTAN,40.762159,-73.983557,105,4,131,1024818,1010230029,Midtown-Midtown South +1010250044,1,1025,44,2021,1701,BROADWAY,10019,H3,4,BRYANT ASSOCIATES,MANHATTAN,40.763781,-73.982611,105,3,131,1024839,1010250044,Midtown-Midtown South +1010260012,1,1026,12,2021,237,WEST 54 STREET,10019,H2,4,"237 WEST 54 OWNER, L.L.C.",MANHATTAN,40.764264,-73.982997,105,3,137,1089437,1010260012,Midtown-Midtown South +1010260041,1,1026,41,2021,1724,BROADWAY,10019,HB,4,WOODWARD AFFLILIATES,MANHATTAN,40.764538,-73.982279,105,4,137,1024858,1010260041,Midtown-Midtown South +1010261101,1,1026,1101,2021,1717,BROADWAY,10019,RH,4,GRANITE 1717 HOTEL LLC,MANHATTAN,40.764291,-73.982824,105,3,137,1024849,1010267501,Midtown-Midtown South +1010270009,1,1027,9,2021,243,WEST 55 STREET,10019,H3,4,UNAVAILABLE OWNER,MANHATTAN,40.764953,-73.982705,105,3,137,1024874,1010270009,Midtown-Midtown South +1010270060,1,1027,60,2021,244,WEST 56 STREET,10019,H3,4,PARADISE RELATY CORP.,MANHATTAN,40.765666,-73.982499,105,3,137,1024885,1010270060,Midtown-Midtown South +1010270063,1,1027,63,2021,940,8 AVENUE,10019,HH,4,940 8TH AVENUE LLC,MANHATTAN,40.765782,-73.983546,105,3,137,1024888,1010270063,Midtown-Midtown South +1010271101,1,1027,1101,2021,870,7 AVENUE,10019,RH,4,HCI-CERBERUS PCNY OWNER LP,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271126,1,1027,1126,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271127,1,1027,1127,2021,870,7 AVENUE,10019,RH,4,"VIGNOLA, JANET",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271128,1,1027,1128,2021,870,7 AVENUE,10019,RH,4,"EVANS, SUE ELLEN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271129,1,1027,1129,2021,870,7 AVENUE,10019,RH,4,"TERRIBILE, PHIL",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271130,1,1027,1130,2021,870,7 AVENUE,10019,RH,4,"RUDORFER, BENNETT",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271131,1,1027,1131,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB TIMESHARE ASSOCIATION INC.,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271132,1,1027,1132,2021,870,7 AVENUE,10019,RH,4,"THE MANHATTAN CLUB TIMESHARE ASSOCIATION , INC.",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271133,1,1027,1133,2021,870,7 AVENUE,10019,RH,4,"GIAQUINTO, TRUSTEE, FRANK",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271134,1,1027,1134,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271135,1,1027,1135,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271136,1,1027,1136,2021,870,7 AVENUE,10019,RH,4,"BOVE, JAMES J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271137,1,1027,1137,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271138,1,1027,1138,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB TIMESHARE ASSOCIATION,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271139,1,1027,1139,2021,870,7 AVENUE,10019,RH,4,"JAB PROPERTY INVESTMENTS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271140,1,1027,1140,2021,870,7 AVENUE,10019,RH,4,"SYKORA, TRUSTEE, CONSTANCE L",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271141,1,1027,1141,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271142,1,1027,1142,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271143,1,1027,1143,2021,870,7 AVENUE,10019,RH,4,KELLY M. MICHAEL LIVING TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271144,1,1027,1144,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271154,1,1027,1154,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271155,1,1027,1155,2021,200,WEST 56 STREET,10019,RH,4,THE LAURETTA ALIO IRREVOCABLE TRUST,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271156,1,1027,1156,2021,200,WEST 56 STREET,10019,RH,4,HOLIDAY EQUITY LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271157,1,1027,1157,2021,200,WEST 56 STREET,10019,RH,4,"ADAMSON, ELLEN SUSAN",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271158,1,1027,1158,2021,200,WEST 56 STREET,10019,RH,4,"ROSENTHAL, JOEL M",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271159,1,1027,1159,2021,200,WEST 56 STREET,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271160,1,1027,1160,2021,200,WEST 56 STREET,10019,RH,4,THE WOLIN FAMILY TRUST U/A/D 04-02-91,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271161,1,1027,1161,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271162,1,1027,1162,2021,200,WEST 56 STREET,10019,RH,4,"T. PARK CENTRAL, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271163,1,1027,1163,2021,200,WEST 56 STREET,10019,RH,4,THE PAYERLE FAMILY TRUST,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271164,1,1027,1164,2021,200,WEST 56 STREET,10019,RH,4,"JAB PROPERTY INVESTMENTS, LLC, A TENNESS EE LIMITED",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271165,1,1027,1165,2021,200,WEST 56 STREET,10019,RH,4,VACATION TRUST INC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271166,1,1027,1166,2021,200,WEST 56 STREET,10019,RH,4,"TUCARELLA, JOSEPH",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271167,1,1027,1167,2021,200,WEST 56 STREET,10019,RH,4,"COSTA, VINICIUS NOGUEIRA",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271168,1,1027,1168,2021,200,WEST 56 STREET,10019,RH,4,"LOWRY, SUSAN WINN",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271169,1,1027,1169,2021,200,WEST 56 STREET,10019,RH,4,"BEAUCHAMP, RONALD",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271170,1,1027,1170,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271171,1,1027,1171,2021,200,WEST 56 STREET,10019,RH,4,T. PARK CENTRAL LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271172,1,1027,1172,2021,200,WEST 56 STREET,10019,RH,4,VIRENDRA J JUTHANI TRUSTEE,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271173,1,1027,1173,2021,200,WEST 56 STREET,10019,RH,4,"SCIACCA, TRUSTEE, RICHARD D",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271174,1,1027,1174,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271175,1,1027,1175,2021,200,WEST 56 STREET,10019,RH,4,"HANSON HOLDINGS, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271176,1,1027,1176,2021,200,WEST 56 STREET,10019,RH,4,"LUONGO, MARIANNA",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271177,1,1027,1177,2021,200,WEST 56 STREET,10019,RH,4,"WALKER, WILLIAM",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271178,1,1027,1178,2021,200,WEST 56 STREET,10019,RH,4,"GALIGER, GERARD J",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271179,1,1027,1179,2021,200,WEST 56 STREET,10019,RH,4,"FISHER, GARY T",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271180,1,1027,1180,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271181,1,1027,1181,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271182,1,1027,1182,2021,200,WEST 56 STREET,10019,RH,4,"T. PARK CENTRAL, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271183,1,1027,1183,2021,200,WEST 56 STREET,10019,RH,4,T. PARK CENTRAL LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271184,1,1027,1184,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271185,1,1027,1185,2021,200,WEST 56 STREET,10019,RH,4,"RIOS, RAFAEL",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271186,1,1027,1186,2021,200,WEST 56 STREET,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271187,1,1027,1187,2021,200,WEST 56 STREET,10019,RH,4,THE DIEDRICK FAMILY TRUST RESTATED 5/25/ 2006,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271188,1,1027,1188,2021,200,WEST 56 STREET,10019,RH,4,"LOMONACO, CHARLES",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271189,1,1027,1189,2021,200,WEST 56 STREET,10019,RH,4,THE ANNE W. COMPTON REVOCABLE TRUST AGRE EMENT,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271190,1,1027,1190,2021,200,WEST 56 STREET,10019,RH,4,HERBERT D. RUBENSTEIN,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271191,1,1027,1191,2021,200,WEST 56 STREET,10019,RH,4,CYNTHIA M TOMLINSON REVOCABLE FAMILY TRU ST,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271192,1,1027,1192,2021,200,WEST 56 STREET,10019,RH,4,THE MANHATTAN CLUB,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271193,1,1027,1193,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271194,1,1027,1194,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271195,1,1027,1195,2021,200,WEST 56 STREET,10019,RH,4,THE MANHATTAN CLUB TIMESHARE ASSOCIATION,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271196,1,1027,1196,2021,200,WEST 56 STREET,10019,RH,4,THE ALEC C. DAVIS REVOCABLE LIVING TRUST,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271197,1,1027,1197,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271198,1,1027,1198,2021,200,WEST 56 STREET,10019,RH,4,CIBINIC FAMILY HOLDINGS LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271199,1,1027,1199,2021,200,WEST 56 STREET,10019,RH,4,"THE MANHATTAN CLUB TIMESHARE ASSOCIATION , INC.",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271200,1,1027,1200,2021,200,WEST 56 STREET,10019,RH,4,"ALAN L.POHL, M.D. AND CAROL C. POHL, M.D . REVOCABL",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271201,1,1027,1201,2021,200,WEST 56 STREET,10019,RH,4,JMG REALTY HOLDINGS LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271202,1,1027,1202,2021,200,WEST 56 STREET,10019,RH,4,"CRAIG W.T. ESTRADA, AS TRUSTEE",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271203,1,1027,1203,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271204,1,1027,1204,2021,200,WEST 56 STREET,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271205,1,1027,1205,2021,200,WEST 56 STREET,10019,RH,4,"KING, HEATHER E",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271206,1,1027,1206,2021,200,WEST 56 STREET,10019,RH,4,"WILSON, CHRISTOPHER N",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271207,1,1027,1207,2021,200,WEST 56 STREET,10019,RH,4,"FALLACARO, BETSY",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271208,1,1027,1208,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY , LLC, A FLORIDA LIMITED LIABI LITY COMPA",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271209,1,1027,1209,2021,200,WEST 56 STREET,10019,RH,4,"SEAMAN, CAROL M",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271210,1,1027,1210,2021,200,WEST 56 STREET,10019,RH,4,"VI NETWORK INC, A FLORIDA CORPORATION",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271211,1,1027,1211,2021,200,WEST 56 STREET,10019,RH,4,DAC AUDIT SERVICES LLC,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271212,1,1027,1212,2021,200,WEST 56 STREET,10019,RH,4,TANG-FONG FRANK WONG,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271213,1,1027,1213,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271214,1,1027,1214,2021,200,WEST 56 STREET,10019,RH,4,THE MICHAEL G POTAPOW REVOCABLE TRUST DT D 12/10/98,MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271215,1,1027,1215,2021,200,WEST 56 STREET,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764928,-73.980752,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271216,1,1027,1216,2021,870,7 AVENUE,10019,RH,4,"MANN, KATHLEEN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271217,1,1027,1217,2021,870,7 AVENUE,10019,RH,4,"ARD HOLDINGS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271218,1,1027,1218,2021,870,7 AVENUE,10019,RH,4,"VOLPE, MATTHEW",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271219,1,1027,1219,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271220,1,1027,1220,2021,870,7 AVENUE,10019,RH,4,"EDWARDS, BREALAND L",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271221,1,1027,1221,2021,870,7 AVENUE,10019,RH,4,"HILLIS, MARTIN R",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271222,1,1027,1222,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271223,1,1027,1223,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271224,1,1027,1224,2021,870,7 AVENUE,10019,RH,4,VACATION TRUST. INC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271225,1,1027,1225,2021,870,7 AVENUE,10019,RH,4,"LOVE, ADAM",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271226,1,1027,1226,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271227,1,1027,1227,2021,870,7 AVENUE,10019,RH,4,"STANFORD, TOM",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271228,1,1027,1228,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271229,1,1027,1229,2021,870,7 AVENUE,10019,RH,4,BARRY B BERKOWITZ REVOCABLE TRUST I DATE D 1/20/12,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271230,1,1027,1230,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271231,1,1027,1231,2021,870,7 AVENUE,10019,RH,4,"TURNER, MARK",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271232,1,1027,1232,2021,870,7 AVENUE,10019,RH,4,T. PARK CENTRAL,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271233,1,1027,1233,2021,870,7 AVENUE,10019,RH,4,THE ANNE M. WILDING IRREVOCABLE TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271234,1,1027,1234,2021,870,7 AVENUE,10019,RH,4,"HATCHETT, STEPHANIE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271235,1,1027,1235,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271236,1,1027,1236,2021,870,7 AVENUE,10019,RH,4,"CALDWELL, HOWARD",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271237,1,1027,1237,2021,870,7 AVENUE,10019,RH,4,"ANGELL, ROBERT A",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271238,1,1027,1238,2021,870,7 AVENUE,10019,RH,4,WILLIAM D BENJAMIN JR LIVING TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271239,1,1027,1239,2021,870,7 AVENUE,10019,RH,4,"WERKHEISER, SANDRA J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271240,1,1027,1240,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271241,1,1027,1241,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271242,1,1027,1242,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271243,1,1027,1243,2021,870,7 AVENUE,10019,RH,4,"WAITHE, SINCLAIR",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271244,1,1027,1244,2021,870,7 AVENUE,10019,RH,4,"LUMER, MARC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271245,1,1027,1245,2021,870,7 AVENUE,10019,RH,4,"BLAKE, THADDEUS M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271246,1,1027,1246,2021,870,7 AVENUE,10019,RH,4,"D.U.M.P. BROS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271247,1,1027,1247,2021,870,7 AVENUE,10019,RH,4,"SABO, DANIEL A",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271248,1,1027,1248,2021,870,7 AVENUE,10019,RH,4,"PERSING, RUBY N",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271249,1,1027,1249,2021,870,7 AVENUE,10019,RH,4,"FORERITZ PROPERTY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271250,1,1027,1250,2021,870,7 AVENUE,10019,RH,4,SIX WHITES FAMILY LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271251,1,1027,1251,2021,870,7 AVENUE,10019,RH,4,FINB LTD.,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271252,1,1027,1252,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271253,1,1027,1253,2021,870,7 AVENUE,10019,RH,4,VIN NY NY LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271254,1,1027,1254,2021,870,7 AVENUE,10019,RH,4,T. PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271255,1,1027,1255,2021,870,7 AVENUE,10019,RH,4,"DIETTERICK, SCOTT A",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271256,1,1027,1256,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB TIMESHARE ASSOC.,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271257,1,1027,1257,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271258,1,1027,1258,2021,870,7 AVENUE,10019,RH,4,"GLENN R. BUCHER, TRUSTEE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271259,1,1027,1259,2021,870,7 AVENUE,10019,RH,4,THE WEINER FAMILY TRUST DATED 2/10/1983 REINSTATED,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271260,1,1027,1260,2021,870,7 AVENUE,10019,RH,4,THE COHEN FAMILY TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271261,1,1027,1261,2021,870,7 AVENUE,10019,RH,4,"IANNIELLO, NADINE E",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271262,1,1027,1262,2021,870,7 AVENUE,10019,RH,4,CIBINIC FAMILY HOLDINGS LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271263,1,1027,1263,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271264,1,1027,1264,2021,870,7 AVENUE,10019,RH,4,O PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271265,1,1027,1265,2021,870,7 AVENUE,10019,RH,4,"HABER, LAWRENCE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271266,1,1027,1266,2021,870,7 AVENUE,10019,RH,4,"CALVIN, TULIN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271267,1,1027,1267,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271268,1,1027,1268,2021,870,7 AVENUE,10019,RH,4,"KANTEY, NAOMI",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271269,1,1027,1269,2021,870,7 AVENUE,10019,RH,4,TEN THOUSAND DAYS TRUST DATED 2/11/2014,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271270,1,1027,1270,2021,870,7 AVENUE,10019,RH,4,"BASS, BARRY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271271,1,1027,1271,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271272,1,1027,1272,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271273,1,1027,1273,2021,870,7 AVENUE,10019,RH,4,"CROMIE, MICHAEL",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271274,1,1027,1274,2021,870,7 AVENUE,10019,RH,4,"LAMONTE, MICHAEL",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271275,1,1027,1275,2021,870,7 AVENUE,10019,RH,4,"CONTINENTAL HOLDINGS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271276,1,1027,1276,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271277,1,1027,1277,2021,870,7 AVENUE,10019,RH,4,HOLIDAY EQUITY LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271278,1,1027,1278,2021,870,7 AVENUE,10019,RH,4,"CUMELLA, TTEE, JOSEPH",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271279,1,1027,1279,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271280,1,1027,1280,2021,870,7 AVENUE,10019,RH,4,"HOBBS, MARITA",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271281,1,1027,1281,2021,870,7 AVENUE,10019,RH,4,"WEISENBERG, DIANE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271282,1,1027,1282,2021,870,7 AVENUE,10019,RH,4,RICHARD A. SBASCHNIG,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271283,1,1027,1283,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271284,1,1027,1284,2021,870,7 AVENUE,10019,RH,4,LEGACY FAMILY TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271285,1,1027,1285,2021,870,7 AVENUE,10019,RH,4,"EVENHUIS, JAMES R",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271286,1,1027,1286,2021,870,7 AVENUE,10019,RH,4,"RAFALA, ANTHONY J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271287,1,1027,1287,2021,870,7 AVENUE,10019,RH,4,"IRAHETA, TIFFANY BERKSHIRE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271288,1,1027,1288,2021,870,7 AVENUE,10019,RH,4,"BERMAN, LEO",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271289,1,1027,1289,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271290,1,1027,1290,2021,870,7 AVENUE,10019,RH,4,"WIDE WORLD VACATIONS, INC.",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271291,1,1027,1291,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271292,1,1027,1292,2021,870,7 AVENUE,10019,RH,4,"KORNFELD, LELAND E",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271293,1,1027,1293,2021,870,7 AVENUE,10019,RH,4,"SCIARRINO, RUTH ELLEN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271294,1,1027,1294,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271295,1,1027,1295,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271296,1,1027,1296,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271297,1,1027,1297,2021,870,7 AVENUE,10019,RH,4,"T. PARK CENTRAL, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271298,1,1027,1298,2021,870,7 AVENUE,10019,RH,4,"HANSON HOLDINGS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271299,1,1027,1299,2021,870,7 AVENUE,10019,RH,4,"TUCKER, ROBERT",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271300,1,1027,1300,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271301,1,1027,1301,2021,870,7 AVENUE,10019,RH,4,O PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271302,1,1027,1302,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271303,1,1027,1303,2021,870,7 AVENUE,10019,RH,4,"CARROLL, THOMAS E",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271304,1,1027,1304,2021,870,7 AVENUE,10019,RH,4,"SPODAK, RUTH B",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271305,1,1027,1305,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271306,1,1027,1306,2021,870,7 AVENUE,10019,RH,4,"NELSON, WALTER R",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271307,1,1027,1307,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB TIMESHARE,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271308,1,1027,1308,2021,870,7 AVENUE,10019,RH,4,"BRYANT, TERI K",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271309,1,1027,1309,2021,870,7 AVENUE,10019,RH,4,THE DONALD J. AURIEMMA RLT DTD 10/6/09,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271310,1,1027,1310,2021,870,7 AVENUE,10019,RH,4,VIN NY NY LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271311,1,1027,1311,2021,870,7 AVENUE,10019,RH,4,MANHATTAN CLUB TIMESHARE ASSOCIATIO,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271312,1,1027,1312,2021,870,7 AVENUE,10019,RH,4,"SEELMANN, AMANDA",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271313,1,1027,1313,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271314,1,1027,1314,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY LLC, A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271315,1,1027,1315,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271316,1,1027,1316,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271317,1,1027,1317,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271318,1,1027,1318,2021,870,7 AVENUE,10019,RH,4,THE SACKETT FAMILY TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271319,1,1027,1319,2021,870,7 AVENUE,10019,RH,4,JOHN C. & MARY A. CONLON LEGACY WEALTH T RUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271320,1,1027,1320,2021,870,7 AVENUE,10019,RH,4,"GUARCELLO, DANIELLE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271321,1,1027,1321,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC A FLORIDA LIMITED LIABILI TY COMPANY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271322,1,1027,1322,2021,870,7 AVENUE,10019,RH,4,THE DANIEL T. DYROFF IRREVOCABLE TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271323,1,1027,1323,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271324,1,1027,1324,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271325,1,1027,1325,2021,870,7 AVENUE,10019,RH,4,"YOUNG FAMILY TRUST A, DATED MAY 15, 2003",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271326,1,1027,1326,2021,870,7 AVENUE,10019,RH,4,MARY VIRGINIA POULTON REVOCABLE TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271327,1,1027,1327,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271328,1,1027,1328,2021,870,7 AVENUE,10019,RH,4,"STILLWELL, FRED A",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271329,1,1027,1329,2021,870,7 AVENUE,10019,RH,4,WIDE WORLD VACATIONS INC.,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271330,1,1027,1330,2021,870,7 AVENUE,10019,RH,4,THOMPSON ERICKSON LIVING TRUST DATED 12/ 06/2010,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271331,1,1027,1331,2021,870,7 AVENUE,10019,RH,4,"HANCOCK, INGRID ANNE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271332,1,1027,1332,2021,870,7 AVENUE,10019,RH,4,"FRIEDMAN, JAMES",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271333,1,1027,1333,2021,870,7 AVENUE,10019,RH,4,"CURRAN, ERNEST J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271334,1,1027,1334,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271335,1,1027,1335,2021,870,7 AVENUE,10019,RH,4,O PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271336,1,1027,1336,2021,870,7 AVENUE,10019,RH,4,"MORACCI, CLAUDIA",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271337,1,1027,1337,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271338,1,1027,1338,2021,870,7 AVENUE,10019,RH,4,THE SAMUEL PONCZAK REVOCABLE TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271339,1,1027,1339,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271340,1,1027,1340,2021,870,7 AVENUE,10019,RH,4,DUBAI HOLDINGS LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271341,1,1027,1341,2021,870,7 AVENUE,10019,RH,4,"LETENDRE, TRUSTEE, ROBERT P",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271342,1,1027,1342,2021,870,7 AVENUE,10019,RH,4,"HARRINGTON, DAWN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271343,1,1027,1343,2021,870,7 AVENUE,10019,RH,4,MULVIHILL FAMILY REVOCABLE TRUST,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271344,1,1027,1344,2021,870,7 AVENUE,10019,RH,4,"MOLYNEUX, DEBORAH S",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271345,1,1027,1345,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271346,1,1027,1346,2021,870,7 AVENUE,10019,RH,4,"SCHENKE, TRUSTEE, EDMUND V.F.",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271347,1,1027,1347,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271348,1,1027,1348,2021,870,7 AVENUE,10019,RH,4,"RUTHKO, JUDITH M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271349,1,1027,1349,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271350,1,1027,1350,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271351,1,1027,1351,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271352,1,1027,1352,2021,870,7 AVENUE,10019,RH,4,O PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271353,1,1027,1353,2021,870,7 AVENUE,10019,RH,4,"TRONCELLITI, KATHLEEN Y",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271354,1,1027,1354,2021,870,7 AVENUE,10019,RH,4,"ZELLMER, DAVID B",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271355,1,1027,1355,2021,870,7 AVENUE,10019,RH,4,ANN MARIE COLBY REVOCABLE TRUST DATED 8/ 11/98,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271356,1,1027,1356,2021,870,7 AVENUE,10019,RH,4,"MINTER, ALAN G",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271357,1,1027,1357,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB TIMESHARE ASSOCIATION,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271358,1,1027,1358,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271359,1,1027,1359,2021,870,7 AVENUE,10019,RH,4,MANHATTAN CLUB TIMESHARE ASSOCIATIO,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271360,1,1027,1360,2021,870,7 AVENUE,10019,RH,4,"LINTERN, DAVID",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271361,1,1027,1361,2021,870,7 AVENUE,10019,RH,4,"CLEMMER, RONALD L",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271362,1,1027,1362,2021,870,7 AVENUE,10019,RH,4,"SANCHEZ, CELSO J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271363,1,1027,1363,2021,870,7 AVENUE,10019,RH,4,"LO, TIMOTHY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271364,1,1027,1364,2021,870,7 AVENUE,10019,RH,4,"GIBBONS, CHRISTOPHER",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271365,1,1027,1365,2021,870,7 AVENUE,10019,RH,4,"BEE JR., WILLIAM P",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271366,1,1027,1366,2021,870,7 AVENUE,10019,RH,4,"BROD, CARLENE M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271367,1,1027,1367,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271368,1,1027,1368,2021,870,7 AVENUE,10019,RH,4,"SUMNER, ROBERT C",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271369,1,1027,1369,2021,870,7 AVENUE,10019,RH,4,"GRUBB, TIMOTHY W",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271370,1,1027,1370,2021,870,7 AVENUE,10019,RH,4,T PARK CENTRAL LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271371,1,1027,1371,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271372,1,1027,1372,2021,870,7 AVENUE,10019,RH,4,"PAUL GAGLIOTI, JR.",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271373,1,1027,1373,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271374,1,1027,1374,2021,870,7 AVENUE,10019,RH,4,"BUTLER, ANNE M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271375,1,1027,1375,2021,870,7 AVENUE,10019,RH,4,"TAYLOR, MYRNA F",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271376,1,1027,1376,2021,870,7 AVENUE,10019,RH,4,"SKONIECZNY, AGLAE GUIMARAES",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271377,1,1027,1377,2021,870,7 AVENUE,10019,RH,4,"HILLYER, JUSTIN C",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271378,1,1027,1378,2021,870,7 AVENUE,10019,RH,4,"ARD HOLDINGS, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271379,1,1027,1379,2021,870,7 AVENUE,10019,RH,4,"KORNBLUTH, MURRAY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271380,1,1027,1380,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC, A FLORIDA LIMITED LIABIL ITY COMPAN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271381,1,1027,1381,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271382,1,1027,1382,2021,870,7 AVENUE,10019,RH,4,"HUBER, JOHN D",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271383,1,1027,1383,2021,870,7 AVENUE,10019,RH,4,"ERNST, CAROL M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271384,1,1027,1384,2021,870,7 AVENUE,10019,RH,4,"LANE, RUTH E",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271385,1,1027,1385,2021,870,7 AVENUE,10019,RH,4,"THORE, LYNN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271386,1,1027,1386,2021,870,7 AVENUE,10019,RH,4,"MCCAY, SANDRA M",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271387,1,1027,1387,2021,870,7 AVENUE,10019,RH,4,"GARAVEL, PAUL",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271388,1,1027,1388,2021,870,7 AVENUE,10019,RH,4,"ROGERS, KEVIN B",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271389,1,1027,1389,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271390,1,1027,1390,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271391,1,1027,1391,2021,870,7 AVENUE,10019,RH,4,THE MANHATTAN CLUB,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271392,1,1027,1392,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271393,1,1027,1393,2021,870,7 AVENUE,10019,RH,4,"THE HAMPTON FAMILY TRUST, DATED JANUARY 28, 2015",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271394,1,1027,1394,2021,870,7 AVENUE,10019,RH,4,"DURIVAGE , MARK",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271395,1,1027,1395,2021,870,7 AVENUE,10019,RH,4,"PULLO, DONNA J",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271396,1,1027,1396,2021,870,7 AVENUE,10019,RH,4,"BEAUCHAMP, RONALD",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271397,1,1027,1397,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271398,1,1027,1398,2021,870,7 AVENUE,10019,RH,4,"HANCOCK, ASHLEY",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271399,1,1027,1399,2021,870,7 AVENUE,10019,RH,4,"NEZIN KNOWLTON, BONNIE",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271701,1,1027,1701,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271702,1,1027,1702,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271703,1,1027,1703,2021,870,7 AVENUE,10019,RH,4,"SMITH, MASHARIKI",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271718,1,1027,1718,2021,870,7 AVENUE,10019,RH,4,THE MANILDO SANTOS REVOCABLE LIVING TRUS T,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271719,1,1027,1719,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271720,1,1027,1720,2021,870,7 AVENUE,10019,RH,4,VIN NY NY LLC,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271721,1,1027,1721,2021,870,7 AVENUE,10019,RH,4,"BEAUCHAMP, RONALD",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271722,1,1027,1722,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271723,1,1027,1723,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271724,1,1027,1724,2021,870,7 AVENUE,10019,RH,4,"VALDINA, ALAN",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271725,1,1027,1725,2021,870,7 AVENUE,10019,RH,4,"DOYLE, WALTER E",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271726,1,1027,1726,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271727,1,1027,1727,2021,870,7 AVENUE,10019,RH,4,"VIN NY NY, LLC",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271728,1,1027,1728,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271729,1,1027,1729,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271730,1,1027,1730,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271731,1,1027,1731,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271732,1,1027,1732,2021,870,7 AVENUE,10019,RH,4,"RIFE, THOMAS G",MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271733,1,1027,1733,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271734,1,1027,1734,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271735,1,1027,1735,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271736,1,1027,1736,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271737,1,1027,1737,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010271738,1,1027,1738,2021,870,7 AVENUE,10019,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.764521,-73.980773,105,4,137,1024878,1010277501,Midtown-Midtown South +1010320061,1,1032,61,2021,578,9 AVENUE,10036,H9,4,"578 NINTH AVENUE ASSOCIATES, L.L.C.",MANHATTAN,40.758295,-73.992719,104,3,115,1024929,1010320061,Clinton +1010340037,1,1034,37,2021,306,WEST 44 STREET,10036,H1,4,WEST 44TH STREET HOTEL LLC,MANHATTAN,40.758756,-73.989395,104,3,121,1088460,1010340037,Clinton +1010340044,1,1034,44,2021,324,WEST 44 STREET,10036,H2,4,MP 44 LLC,MANHATTAN,40.758912,-73.989763,104,3,121,1090067,1010340044,Clinton +1010350009,1,1035,9,2021,343,WEST 44 STREET,10036,H3,4,BRISAM CLINTON LLC,MANHATTAN,40.75908,-73.990117,104,3,121,1024987,1010350009,Clinton +1010360021,1,1036,21,2021,317,WEST 45 STREET,10036,H9,4,"CIRCUIT,",MANHATTAN,40.759486,-73.989135,104,3,121,1082600,1010360021,Clinton +1010360052,1,1036,52,2021,346,WEST 46 STREET,10036,H3,4,PF 46 LLC,MANHATTAN,40.760359,-73.989286,104,3,121,1080885,1010360052,Clinton +1010370029,1,1037,29,2021,303,WEST 46 STREET,10036,H2,4,301 WEST 46TH STREET OWNERS INC,MANHATTAN,40.759996,-73.988388,104,3,127,1089716,1010370029,Clinton +1010370034,1,1037,34,2021,763,8 AVENUE,10036,H2,4,"741 EIGHTH AVENUE OWNERS, LLC",MANHATTAN,40.760265,-73.98759,104,3,127,1089717,1010370034,Clinton +1010370035,1,1037,35,2021,765,8 AVENUE,10036,H3,4,"EIGHTH AVENUE SKY, LLC",MANHATTAN,40.76029,-73.987572,104,3,127,1025055,1010370035,Clinton +1010370036,1,1037,36,2021,767,8 AVENUE,10036,H3,4,767 8TH AVENUE LLC,MANHATTAN,40.760315,-73.987554,104,3,127,1025056,1010370036,Clinton +1010390017,1,1039,17,2021,319,WEST 48 STREET,10036,H2,4,319 BELVEDERE REALTYCO,MANHATTAN,40.761377,-73.987803,104,3,127,1025137,1010390017,Clinton +1010390027,1,1039,27,2021,305,WEST 48 STREET,10036,H2,4,BRIGHT MGMT CP,MANHATTAN,40.761259,-73.987517,104,3,127,1090721,1010390027,Clinton +1010390029,1,1039,29,2021,791,8 AVENUE,10019,HR,4,791 EIGHTH AVENUE LLC,MANHATTAN,40.761133,-73.986958,104,3,127,1025141,1010390029,Clinton +1010410044,1,1041,44,2021,318,WEST 51 STREET,10019,H3,4,WASHINGTON JEFFERSON HOLDINGS LLC,MANHATTAN,40.763249,-73.986467,104,3,133,1025180,1010410044,Clinton +1010421002,1,1042,1002,2021,851,8 AVENUE,10019,RH,4,"RPH HOTELS 51ST STREET OWNERS,LLC",MANHATTAN,40.763059,-73.985557,104,3,133,1025211,1010427501,Clinton +1010480039,1,1048,39,2021,308,WEST 58 STREET,10019,HB,4,BERIT REALTY LLC,MANHATTAN,40.767634,-73.98296,104,3,139,1026055,1010480039,Clinton +1010481701,1,1048,1701,2021,353,WEST 57 STREET,10019,RH,4,HENRY HUDSON HOLDINGS CORP,MANHATTAN,40.767349,-73.98435,104,3,139,1026317,1010487502,Clinton +1010481702,1,1048,1702,2021,353,WEST 57 STREET,10019,RH,4,HENRY HUDSON HOLDINGS CORP,MANHATTAN,40.767349,-73.98435,104,3,139,1026317,1010487502,Clinton +1010481706,1,1048,1706,2021,353,WEST 57 STREET,10019,RH,4,HUDSON 10TH FLOOR LLC,MANHATTAN,40.767349,-73.98435,104,3,139,1026317,1010487502,Clinton +1010491006,1,1049,1006,2021,80,COLUMBUS CIRCLE,10023,RH,4,ISTITHMAR COLUMBUS CENTRE HOTEL LLC,MANHATTAN,40.769029,-73.982801,104,3,145,1026318,1010497501,Lincoln Square +1010511107,1,1051,1107,2021,450,WEST 42 STREET,10036,RH,4,"42ND AND 10TH HOTEL, LLC",MANHATTAN,40.759212,-73.99451,104,3,115,1088437,1010517502,Clinton +1010511501,1,1051,1501,2021,400,WEST 42 STREET,10036,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.758504,-73.992835,104,3,115,1089690,1010517503,Clinton +1010540018,1,1054,18,2021,425,WEST 44 STREET,10036,H8,4,ST JOSEPHS IMMIGRANT,MANHATTAN,40.760123,-73.992593,104,3,121,1083755,1010540018,Clinton +1010550042,1,1055,42,2021,414,WEST 46 STREET,10036,H3,4,414 WEST PND HOTEL SAI LLC,MANHATTAN,40.761276,-73.991459,104,3,121,1083777,1010550042,Clinton +1010660012,1,1066,12,2021,440,WEST 57 STREET,10019,H2,4,"NINTH TO TENTH PARTNERS, LLC",MANHATTAN,40.768434,-73.986956,104,3,139,1026863,1010660012,Clinton +1010670038,1,1067,38,2021,410,WEST 58 STREET,10019,H8,4,IRIS FOUNDATION,MANHATTAN,40.768853,-73.985852,104,3,139,1026891,1010670038,Clinton +1010700020,1,1070,20,2021,510,WEST 42 STREET,10036,H2,4,"WEST 42ND STREET DEVELOPERS, LLC",MANHATTAN,40.760071,-73.996549,104,3,117,1026907,1010700020,Hudson Yards-Chelsea-Flatiron-Union Square +1010710023,1,1071,23,2021,515,WEST 42 STREET,10036,H3,4,R.BORN ASSOC.,MANHATTAN,40.759906,-73.996112,104,3,129,1026914,1010710023,Clinton +1010760051,1,1076,51,2021,538,WEST 48 STREET,10036,H3,4,GLSC 48 SPECIAL LLC,MANHATTAN,40.764196,-73.994545,104,3,129,1090197,1010760051,Clinton +1010760055,1,1076,55,2021,544,WEST 48 STREET,10036,H3,4,T.S. REALTY CO.,MANHATTAN,40.764229,-73.994625,104,3,129,1027002,1010760055,Clinton +1010760057,1,1076,57,2021,548,WEST 48 STREET,10036,H3,4,SC 48 MEMBER LLC,MANHATTAN,40.764251,-73.994679,104,3,129,1090609,1010760057,Clinton +1010780023,1,1078,23,2021,501,WEST 49 STREET,10019,H3,4,"PICCADILLY HOTEL CO.,",MANHATTAN,40.764108,-73.992343,104,3,129,1083799,1010780023,Clinton +1010860050,1,1086,50,2021,534,WEST 58 STREET,10019,H2,4,RNMB WEST 58 LLC,MANHATTAN,40.77061,-73.990039,104,6,135,1090329,1010860050,Clinton +1010950035,1,1095,35,2021,653,11 AVENUE,10036,HB,4,BSREP III 653 HOTEL LLC,MANHATTAN,40.764317,-73.995784,104,3,129,1027122,1010950035,Clinton +1011131219,1,1113,1219,2021,1,CENTRAL PARK WEST,10023,RH,4,"DMC CPW, INC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131220,1,1113,1220,2021,1,CENTRAL PARK WEST,10023,RH,4,TRIMER BUSINESS S.A.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131221,1,1113,1221,2021,1,CENTRAL PARK WEST,10023,RH,4,"CPW 812, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131222,1,1113,1222,2021,1,CENTRAL PARK WEST,10023,RH,4,KAPUR ROHIT,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131223,1,1113,1223,2021,1,CENTRAL PARK WEST,10023,RH,4,308CPW1 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131224,1,1113,1224,2021,1,CENTRAL PARK WEST,10023,RH,4,"KMR GROUP-310, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131225,1,1113,1225,2021,1,CENTRAL PARK WEST,10023,RH,4,"SACHIN, CHOPRA",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131226,1,1113,1226,2021,1,CENTRAL PARK WEST,10023,RH,4,ANGEL OVERSEAS LTD,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131227,1,1113,1227,2021,1,CENTRAL PARK WEST,10023,RH,4,ANGEL OVERSEAS LTD.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131228,1,1113,1228,2021,1,CENTRAL PARK WEST,10023,RH,4,"SAMADHI NY, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131229,1,1113,1229,2021,1,CENTRAL PARK WEST,10023,RH,4,"SHAATH, NADIM A",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131230,1,1113,1230,2021,1,CENTRAL PARK WEST,10023,RH,4,BOARD OF MANAGERS OFTRUMP INTERNATIONAL ETAL,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131231,1,1113,1231,2021,1,CENTRAL PARK WEST,10023,RH,4,"KIRA MAKAGON, TRUSTEE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131232,1,1113,1232,2021,1,CENTRAL PARK WEST,10023,RH,4,"PARADEVIEW 500, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131233,1,1113,1233,2021,1,CENTRAL PARK WEST,10023,RH,4,"ONE CENTRAL PARK WEST UNIT 600, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131234,1,1113,1234,2021,1,CENTRAL PARK WEST,10023,RH,4,WFM NEW YORK LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131235,1,1113,1235,2021,1,CENTRAL PARK WEST,10023,RH,4,"BINGER , JAMES M",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131236,1,1113,1236,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW VENTURE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131237,1,1113,1237,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW VENTURE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131238,1,1113,1238,2021,1,CENTRAL PARK WEST,10023,RH,4,"CANE, FABIO COSMO",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131239,1,1113,1239,2021,1,CENTRAL PARK WEST,10023,RH,4,LS200 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131240,1,1113,1240,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CENTRAL PARK WEST UNIT 1500 VENTURE LL C,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131241,1,1113,1241,2021,1,CENTRAL PARK WEST,10023,RH,4,DAWSHAIL III LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131242,1,1113,1242,2021,1,CENTRAL PARK WEST,10023,RH,4,"KAIRY PARTNERS, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131243,1,1113,1243,2021,1,CENTRAL PARK WEST,10023,RH,4,"KIRA MAKAGON, TRUSTEE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131244,1,1113,1244,2021,1,CENTRAL PARK WEST,10023,RH,4,"PARADEVIEW502, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131245,1,1113,1245,2021,1,CENTRAL PARK WEST,10023,RH,4,"MIRZA, ATHER",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131246,1,1113,1246,2021,1,CENTRAL PARK WEST,10023,RH,4,HPC LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131247,1,1113,1247,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW VENTURE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131248,1,1113,1248,2021,1,CENTRAL PARK WEST,10023,RH,4,BETJEMAN FZC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131249,1,1113,1249,2021,1,CENTRAL PARK WEST,10023,RH,4,DANIEL MINERVA,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131250,1,1113,1250,2021,1,CENTRAL PARK WEST,10023,RH,4,"CH HOLDINGS (USA), L",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131251,1,1113,1251,2021,1,CENTRAL PARK WEST,10023,RH,4,"COBB, BRIAN",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131252,1,1113,1252,2021,1,CENTRAL PARK WEST,10023,RH,4,"PUNTA DEL ESTE, INC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131253,1,1113,1253,2021,1,CENTRAL PARK WEST,10023,RH,4,TFP MANHATTAN LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131254,1,1113,1254,2021,1,CENTRAL PARK WEST,10023,RH,4,JD CPW 2013 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131255,1,1113,1255,2021,1,CENTRAL PARK WEST,10023,RH,4,"SS CPW 404, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131256,1,1113,1256,2021,1,CENTRAL PARK WEST,10023,RH,4,"SKPS CAPITAL, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131257,1,1113,1257,2021,1,CENTRAL PARK WEST,10023,RH,4,"TOWER 604, INC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131258,1,1113,1258,2021,1,CENTRAL PARK WEST,10023,RH,4,SS 57TH STREET LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131259,1,1113,1259,2021,1,CENTRAL PARK WEST,10023,RH,4,"SEELER, DAVID",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131260,1,1113,1260,2021,1,CENTRAL PARK WEST,10023,RH,4,PRIMERO NEW YORK LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131261,1,1113,1261,2021,1,CENTRAL PARK WEST,10023,RH,4,SAF MANAGEMENT L.L.C,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131262,1,1113,1262,2021,1,CENTRAL PARK WEST,10023,RH,4,"TIHT HOLDING COMPANY, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131263,1,1113,1263,2021,1,CENTRAL PARK WEST,10023,RH,4,MCMIRGO REAL ESTATE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131264,1,1113,1264,2021,1,CENTRAL PARK WEST,10023,RH,4,CLAYTON 15 CORP. C/O,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131265,1,1113,1265,2021,1,CENTRAL PARK WEST,10023,RH,4,"SS CPW 1604, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131266,1,1113,1266,2021,1,CENTRAL PARK WEST,10023,RH,4,"MIZUSHIMA, HIROMASA",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131267,1,1113,1267,2021,1,CENTRAL PARK WEST,10023,RH,4,LAGUNA SECA LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131268,1,1113,1268,2021,1,CENTRAL PARK WEST,10023,RH,4,TOMKAT LIMITED PARTNERSHIP,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131269,1,1113,1269,2021,1,CENTRAL PARK WEST,10023,RH,4,"RIALM-NYC, LLC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131270,1,1113,1270,2021,1,CENTRAL PARK WEST,10023,RH,4,PUSHPA LIMITED PARTNERSHIP,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131271,1,1113,1271,2021,1,CENTRAL PARK WEST,10023,RH,4,GTH LIMITED,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131272,1,1113,1272,2021,1,CENTRAL PARK WEST,10023,RH,4,"SJ & JE REALTY, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131273,1,1113,1273,2021,1,CENTRAL PARK WEST,10023,RH,4,1CPWNY1006 CORP,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131274,1,1113,1274,2021,1,CENTRAL PARK WEST,10023,RH,4,CENTRAL PARK VENTURE,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131275,1,1113,1275,2021,1,CENTRAL PARK WEST,10023,RH,4,RCF NY HOME TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131276,1,1113,1276,2021,1,CENTRAL PARK WEST,10023,RH,4,THE CLAUDINE B. MALONE FAMILY TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131277,1,1113,1277,2021,1,CENTRAL PARK WEST,10023,RH,4,KRAME CORPORATION,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131278,1,1113,1278,2021,1,CENTRAL PARK WEST,10023,RH,4,ROY E. SHIMEK,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131279,1,1113,1279,2021,1,CENTRAL PARK WEST,10023,RH,4,KENNETH A. FROOT 2007 TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131280,1,1113,1280,2021,1,CENTRAL PARK WEST,10023,RH,4,TOMKAT LIMITED PARTNE,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131281,1,1113,1281,2021,1,CENTRAL PARK WEST,10023,RH,4,"HOTEL ON COLUMBUS CIRCLE, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131282,1,1113,1282,2021,1,CENTRAL PARK WEST,10023,RH,4,KENNETH A. FROOT 2007 TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131283,1,1113,1283,2021,1,CENTRAL PARK WEST,10023,RH,4,RAINBOW321 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131284,1,1113,1284,2021,1,CENTRAL PARK WEST,10023,RH,4,"ROEDY, WILLIAM H",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131285,1,1113,1285,2021,1,CENTRAL PARK WEST,10023,RH,4,KALKUS FAMILY COMPANY,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131286,1,1113,1286,2021,1,CENTRAL PARK WEST,10023,RH,4,"VK NEW YORK, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131287,1,1113,1287,2021,1,CENTRAL PARK WEST,10023,RH,4,"BAKER STREET EAST, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131288,1,1113,1288,2021,1,CENTRAL PARK WEST,10023,RH,4,"TOMITA, ISAO",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131289,1,1113,1289,2021,1,CENTRAL PARK WEST,10023,RH,4,TWO RIVERS HOLDING LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131290,1,1113,1290,2021,1,CENTRAL PARK WEST,10023,RH,4,"CCL HOLDINGS PARTNERS,",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131291,1,1113,1291,2021,1,CENTRAL PARK WEST,10023,RH,4,"VON SCHAPP HOLDINGS,",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131292,1,1113,1292,2021,1,CENTRAL PARK WEST,10023,RH,4,510 TIHT LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131293,1,1113,1293,2021,1,CENTRAL PARK WEST,10023,RH,4,"CCL HOLDINGS PARTNERS,",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131294,1,1113,1294,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW VENTURE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131295,1,1113,1295,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW VENTURE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131296,1,1113,1296,2021,1,CENTRAL PARK WEST,10023,RH,4,"APPLE VERDE, CORP",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131297,1,1113,1297,2021,1,CENTRAL PARK WEST,10023,RH,4,"ESY JAPAN CO., LTD.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131298,1,1113,1298,2021,1,CENTRAL PARK WEST,10023,RH,4,"FREY, KATHRYN B",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131299,1,1113,1299,2021,1,CENTRAL PARK WEST,10023,RH,4,CPW 1210 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131300,1,1113,1300,2021,1,CENTRAL PARK WEST,10023,RH,4,"TOHO TOCHI KENCHIKUCO., LTD.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131301,1,1113,1301,2021,1,CENTRAL PARK WEST,10023,RH,4,JANCY INC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131302,1,1113,1302,2021,1,CENTRAL PARK WEST,10023,RH,4,"ROBERT BROTMAN, TRUSTEE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131303,1,1113,1303,2021,1,CENTRAL PARK WEST,10023,RH,4,"KROY ASSOCIATES, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131304,1,1113,1304,2021,1,CENTRAL PARK WEST,10023,RH,4,"DENKTSIS, MICHAEL",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131305,1,1113,1305,2021,1,CENTRAL PARK WEST,10023,RH,4,"SS CPW 612, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131306,1,1113,1306,2021,1,CENTRAL PARK WEST,10023,RH,4,"RAHIMI, TAL",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131307,1,1113,1307,2021,1,CENTRAL PARK WEST,10023,RH,4,"CPW 812, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131308,1,1113,1308,2021,1,CENTRAL PARK WEST,10023,RH,4,"EAGLE VERDE, INC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131309,1,1113,1309,2021,1,CENTRAL PARK WEST,10023,RH,4,"SIEBERT, ANDREA C. KENNEDY",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131310,1,1113,1310,2021,1,CENTRAL PARK WEST,10023,RH,4,"1 CENTRAL PARK WEST UNIT 1112, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131311,1,1113,1311,2021,1,CENTRAL PARK WEST,10023,RH,4,"CORNO, FRANCO",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131312,1,1113,1312,2021,1,CENTRAL PARK WEST,10023,RH,4,CHESTER LUY,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131313,1,1113,1313,2021,1,CENTRAL PARK WEST,10023,RH,4,"SS CPW 1612, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131314,1,1113,1314,2021,1,CENTRAL PARK WEST,10023,RH,4,"SS CPW 1712, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131315,1,1113,1315,2021,1,CENTRAL PARK WEST,10023,RH,4,"HPC, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131316,1,1113,1316,2021,1,CENTRAL PARK WEST,10023,RH,4,BUTTERCUP WEST LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131317,1,1113,1317,2021,1,CENTRAL PARK WEST,10023,RH,4,MARCIA R. KASHNOW AS TRUSTEE OF THE RICH ARD A.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131318,1,1113,1318,2021,1,CENTRAL PARK WEST,10023,RH,4,THE FINKELSTEIN FAMILY TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131319,1,1113,1319,2021,1,CENTRAL PARK WEST,10023,RH,4,T & T RENTALS INC.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131320,1,1113,1320,2021,1,CENTRAL PARK WEST,10023,RH,4,FIDELMA M MILLER FAMILY TRUST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131321,1,1113,1321,2021,1,CENTRAL PARK WEST,10023,RH,4,ALDEAN PROPERTIES LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131322,1,1113,1322,2021,1,CENTRAL PARK WEST,10023,RH,4,"ADULAMY, JOSEPH",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131323,1,1113,1323,2021,1,CENTRAL PARK WEST,10023,RH,4,DROR YEHUDA,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131324,1,1113,1324,2021,1,CENTRAL PARK WEST,10023,RH,4,UNITED TRIUMPH LIMITED,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131325,1,1113,1325,2021,1,CENTRAL PARK WEST,10023,RH,4,"L & L INVESTMENTS,LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131326,1,1113,1326,2021,1,CENTRAL PARK WEST,10023,RH,4,"ALC JGC 1714, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131327,1,1113,1327,2021,1,CENTRAL PARK WEST,10023,RH,4,JACKAP ASSOCIATES,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131328,1,1113,1328,2021,1,CENTRAL PARK WEST,10023,RH,4,"NATARAJAN, SHIVA K",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131329,1,1113,1329,2021,1,CENTRAL PARK WEST,10023,RH,4,REWE REALTY LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131330,1,1113,1330,2021,1,CENTRAL PARK WEST,10023,RH,4,"LRCNYC, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131331,1,1113,1331,2021,1,CENTRAL PARK WEST,10023,RH,4,"ZERN, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131332,1,1113,1332,2021,1,CENTRAL PARK WEST,10023,RH,4,STEVEN WEISS,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131333,1,1113,1333,2021,1,CENTRAL PARK WEST,10023,RH,4,"URAN, LTD.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131334,1,1113,1334,2021,1,CENTRAL PARK WEST,10023,RH,4,AH DIROT ONE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131335,1,1113,1335,2021,1,CENTRAL PARK WEST,10023,RH,4,BARASEB LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131336,1,1113,1336,2021,1,CENTRAL PARK WEST,10023,RH,4,"JOHN F HANLEY, AS TRUSTEE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131337,1,1113,1337,2021,1,CENTRAL PARK WEST,10023,RH,4,KHYBER HOLDINGS USAINC.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131338,1,1113,1338,2021,1,CENTRAL PARK WEST,10023,RH,4,1 CPW ASSOCIATES,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131339,1,1113,1339,2021,1,CENTRAL PARK WEST,10023,RH,4,DALLARA LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131340,1,1113,1340,2021,1,CENTRAL PARK WEST,10023,RH,4,BETJEMAN FZC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131341,1,1113,1341,2021,1,CENTRAL PARK WEST,10023,RH,4,GC ONE CPW LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131342,1,1113,1342,2021,1,CENTRAL PARK WEST,10023,RH,4,"HO, JAMES Y.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131343,1,1113,1343,2021,1,CENTRAL PARK WEST,10023,RH,4,TEKMAN L.L.C.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131344,1,1113,1344,2021,1,CENTRAL PARK WEST,10023,RH,4,JOURNEY GROUP LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131345,1,1113,1345,2021,1,CENTRAL PARK WEST,10023,RH,4,KOOL INVESTMENTS LIMITED,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131346,1,1113,1346,2021,1,CENTRAL PARK WEST,10023,RH,4,RIVERWALK OF JUPITER INC.,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131347,1,1113,1347,2021,1,CENTRAL PARK WEST,10023,RH,4,"3G REAL ESTATE HOLDING, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131348,1,1113,1348,2021,1,CENTRAL PARK WEST,10023,RH,4,"GRANUM, ROBERT M",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131349,1,1113,1349,2021,1,CENTRAL PARK WEST,10023,RH,4,COLAVITA NY REAL ESTATE LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131350,1,1113,1350,2021,1,CENTRAL PARK WEST,10023,RH,4,"PLEASANT MEADOW INVESTMENTS, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131351,1,1113,1351,2021,1,CENTRAL PARK WEST,10023,RH,4,"ROSA PROPERTIES, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131352,1,1113,1352,2021,1,CENTRAL PARK WEST,10023,RH,4,CENTRAL PARK PLACE HOLDINGS LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131353,1,1113,1353,2021,1,CENTRAL PARK WEST,10023,RH,4,"SUSAKI, TATSUZO",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131354,1,1113,1354,2021,1,CENTRAL PARK WEST,10023,RH,4,SKY NY 70 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131355,1,1113,1355,2021,1,CENTRAL PARK WEST,10023,RH,4,"KLORMAN, MILTON",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131356,1,1113,1356,2021,1,CENTRAL PARK WEST,10023,RH,4,"STEPHANOS SGOUROS,",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131357,1,1113,1357,2021,1,CENTRAL PARK WEST,10023,RH,4,"DEVELOPMENT FOCUS, INC.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131358,1,1113,1358,2021,1,CENTRAL PARK WEST,10023,RH,4,DEVELOPMENT FOCUS INC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131359,1,1113,1359,2021,1,CENTRAL PARK WEST,10023,RH,4,NERON LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131360,1,1113,1360,2021,1,CENTRAL PARK WEST,10023,RH,4,DOUGLAS J ENGMANN & BARBARA J ENGMANN 19 99 IRREVOA,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131361,1,1113,1361,2021,1,CENTRAL PARK WEST,10023,RH,4,"YIM, KENNETH",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131362,1,1113,1362,2021,1,CENTRAL PARK WEST,10023,RH,4,JOHN C EAST,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131363,1,1113,1363,2021,1,CENTRAL PARK WEST,10023,RH,4,422 ONE CPW LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131364,1,1113,1364,2021,1,CENTRAL PARK WEST,10023,RH,4,"EXCLUSIVE RESORTS CAPITAL PARTNERS FUND II, NY1, L",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131365,1,1113,1365,2021,1,CENTRAL PARK WEST,10023,RH,4,NODA USA LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131366,1,1113,1366,2021,1,CENTRAL PARK WEST,10023,RH,4,"STONE, WARREN TRUSTNO. 1",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131367,1,1113,1367,2021,1,CENTRAL PARK WEST,10023,RH,4,"SWASTI, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131368,1,1113,1368,2021,1,CENTRAL PARK WEST,10023,RH,4,"HABER, JEFFREY S.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131369,1,1113,1369,2021,1,CENTRAL PARK WEST,10023,RH,4,"BAKAN, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131370,1,1113,1370,2021,1,CENTRAL PARK WEST,10023,RH,4,ABR INVESTMENTS-6 LLC,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131371,1,1113,1371,2021,1,CENTRAL PARK WEST,10023,RH,4,11222 CPWNY CORP,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131372,1,1113,1372,2021,1,CENTRAL PARK WEST,10023,RH,4,JOHNSON ASSOCIATES,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131373,1,1113,1373,2021,1,CENTRAL PARK WEST,10023,RH,4,"SHIMEK, ROY E",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131374,1,1113,1374,2021,1,CENTRAL PARK WEST,10023,RH,4,"PAIGE, DAVID M",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131375,1,1113,1375,2021,1,CENTRAL PARK WEST,10023,RH,4,"XAVISA, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131376,1,1113,1376,2021,1,CENTRAL PARK WEST,10023,RH,4,"HASHIMOTO, HIDETSUNE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131377,1,1113,1377,2021,1,CENTRAL PARK WEST,10023,RH,4,"RCJWNYC, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131378,1,1113,1378,2021,1,CENTRAL PARK WEST,10023,RH,4,"HASHIMOTO, HIDETSUNE",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131379,1,1113,1379,2021,1,CENTRAL PARK WEST,10023,RH,4,"RUSSELL, DOUGLAS S.",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131380,1,1113,1380,2021,1,CENTRAL PARK WEST,10023,RH,4,HIDEJI HORIKO,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131381,1,1113,1381,2021,1,CENTRAL PARK WEST,10023,RH,4,HIDEJI HORIKO,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131382,1,1113,1382,2021,1,CENTRAL PARK WEST,10023,RH,4,"ONE CPW 1124, LLC",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131383,1,1113,1383,2021,1,CENTRAL PARK WEST,10023,RH,4,"GORDON, MICHAEL",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131384,1,1113,1384,2021,1,CENTRAL PARK WEST,10023,RH,4,"ISHIKAWA, SATOSHI",MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131385,1,1113,1385,2021,1,CENTRAL PARK WEST,10023,RH,4,HIDEJI HORIKO,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011131386,1,1113,1386,2021,1,CENTRAL PARK WEST,10023,RH,4,HIDEJI HORIKO,MANHATTAN,40.768529,-73.981588,107,3,145,1027191,1011137502,Lincoln Square +1011150057,1,1115,57,2021,1889,BROADWAY,10023,H1,4,SCOTTI JR PHILIP A,MANHATTAN,40.77095,-73.982158,107,3,149,1027465,1011150057,Lincoln Square +1011240018,1,1124,18,2021,31,WEST 71 STREET,10023,H3,4,71ST ST STUDIOS INC,MANHATTAN,40.776186,-73.977983,107,6,157,1028614,1011240018,Lincoln Square +1011381203,1,1138,1203,2021,1965,BROADWAY,10023,RH,4,"ATTIAS, TRUSTEE, DANIEL R",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381204,1,1138,1204,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381205,1,1138,1205,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381206,1,1138,1206,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381207,1,1138,1207,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381209,1,1138,1209,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381210,1,1138,1210,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381211,1,1138,1211,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381212,1,1138,1212,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381213,1,1138,1213,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381214,1,1138,1214,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381215,1,1138,1215,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381216,1,1138,1216,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381217,1,1138,1217,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381218,1,1138,1218,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381219,1,1138,1219,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381220,1,1138,1220,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381221,1,1138,1221,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381223,1,1138,1223,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381224,1,1138,1224,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381225,1,1138,1225,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381226,1,1138,1226,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381227,1,1138,1227,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381228,1,1138,1228,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381229,1,1138,1229,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381230,1,1138,1230,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381231,1,1138,1231,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381233,1,1138,1233,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381234,1,1138,1234,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381235,1,1138,1235,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381236,1,1138,1236,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381237,1,1138,1237,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381238,1,1138,1238,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381239,1,1138,1239,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381240,1,1138,1240,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381241,1,1138,1241,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381242,1,1138,1242,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381243,1,1138,1243,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381244,1,1138,1244,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381245,1,1138,1245,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381247,1,1138,1247,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381248,1,1138,1248,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381249,1,1138,1249,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381250,1,1138,1250,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381251,1,1138,1251,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381458,1,1138,1458,2021,1965,BROADWAY,10023,RH,4,JILL L. REED REVOCABLE TRUST AGREEMENT,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381459,1,1138,1459,2021,1965,BROADWAY,10023,RH,4,"SIEBERT, ERIC",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381460,1,1138,1460,2021,1965,BROADWAY,10023,RH,4,"RAPHEL, STEVE",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381461,1,1138,1461,2021,1965,BROADWAY,10023,RH,4,"LAGANI, JOSEPH",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381462,1,1138,1462,2021,1965,BROADWAY,10023,RH,4,"FAYE C LAING TRUST OF MAY 1996 DATED MAY 13,1996",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381463,1,1138,1463,2021,1965,BROADWAY,10023,RH,4,"MCCALL , DAVID B III",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381464,1,1138,1464,2021,1965,BROADWAY,10023,RH,4,"LEE, SHIRLEY",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381465,1,1138,1465,2021,1965,BROADWAY,10023,RH,4,"DAVID A. KAPLAN, AS TRUSTEE",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381466,1,1138,1466,2021,1965,BROADWAY,10023,RH,4,"SADARNAC, FREDERIC",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381467,1,1138,1467,2021,1965,BROADWAY,10023,RH,4,"MORTEN, ELISABETH",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381468,1,1138,1468,2021,1965,BROADWAY,10023,RH,4,"VARSOV, BRETT",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381469,1,1138,1469,2021,1965,BROADWAY,10023,RH,4,PIENKOWSKI HEAD REVOCABLE LIVING TRUST,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381470,1,1138,1470,2021,1965,BROADWAY,10023,RH,4,"QIAN, DAPENG",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381471,1,1138,1471,2021,1965,BROADWAY,10023,RH,4,"BLECHER, MARC",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381472,1,1138,1472,2021,1965,BROADWAY,10023,RH,4,"DAUGHERTY, WILLIAM M",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381473,1,1138,1473,2021,1965,BROADWAY,10023,RH,4,"QIAN, DAPENG",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381474,1,1138,1474,2021,1965,BROADWAY,10023,RH,4,"JAMES C. HEDDEN REVOCABLE TRUST U/A/D JU LY 20, 201",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381475,1,1138,1475,2021,1965,BROADWAY,10023,RH,4,"SCHOLZ, HEIDI",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381476,1,1138,1476,2021,1965,BROADWAY,10023,RH,4,"KRIGER, JACOB",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381477,1,1138,1477,2021,1965,BROADWAY,10023,RH,4,"DUFFY, AARON",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381478,1,1138,1478,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381479,1,1138,1479,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381480,1,1138,1480,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381481,1,1138,1481,2021,1965,BROADWAY,10023,RH,4,"WALD, BARTON",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381482,1,1138,1482,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381483,1,1138,1483,2021,1965,BROADWAY,10023,RH,4,EDWIN L. SOLOT JR. 2011 TRUST,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381484,1,1138,1484,2021,1965,BROADWAY,10023,RH,4,"PARK NATIONAL BANK, TRUSTEE",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381485,1,1138,1485,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381486,1,1138,1486,2021,1965,BROADWAY,10023,RH,4,"LEE S. COHEN, AS TRUSTEE",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381487,1,1138,1487,2021,1965,BROADWAY,10023,RH,4,"NOVA, SHELDON",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381488,1,1138,1488,2021,1965,BROADWAY,10023,RH,4,"THALL, PETER M",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381489,1,1138,1489,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381490,1,1138,1490,2021,1965,BROADWAY,10023,RH,4,SUSAN B. CHRISTMAN TRUST,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381491,1,1138,1491,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381492,1,1138,1492,2021,1965,BROADWAY,10023,RH,4,"RUNWAL, SANDEEP",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381493,1,1138,1493,2021,1965,BROADWAY,10023,RH,4,"TELLURIDE MOUNTAIN HOLDINGS, LLC",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381494,1,1138,1494,2021,1965,BROADWAY,10023,RH,4,"BIRCH BALA, LLC",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381495,1,1138,1495,2021,1965,BROADWAY,10023,RH,4,"HARTSOCK, NANCY",MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381496,1,1138,1496,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381497,1,1138,1497,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381498,1,1138,1498,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381499,1,1138,1499,2021,1965,BROADWAY,10023,RH,4,MATTISON FAMILY TRUST UTA 3/27/92,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381500,1,1138,1500,2021,1965,BROADWAY,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774123,-73.982229,107,6,153,1028839,1011387502,Lincoln Square +1011381503,1,1138,1503,2021,155,WEST 66 STREET,10023,RH,4,"YOKO ISHIKURA KURITA, TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381505,1,1138,1505,2021,155,WEST 66 STREET,10023,RH,4,THE CAROLYN ANNE LEWIS IRREVOCABLE TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381506,1,1138,1506,2021,155,WEST 66 STREET,10023,RH,4,"SAMUELS, MARC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381507,1,1138,1507,2021,155,WEST 66 STREET,10023,RH,4,THE KRAEMER FAMILY REVOCABLE TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381509,1,1138,1509,2021,155,WEST 66 STREET,10023,RH,4,"MARCUS, MATITYAHU",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381510,1,1138,1510,2021,155,WEST 66 STREET,10023,RH,4,"SHERMAN, FRED S",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381511,1,1138,1511,2021,155,WEST 66 STREET,10023,RH,4,JOAN KOKKINS HERRON LIVING TRUST U/A DTD 5/14/13,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381512,1,1138,1512,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381513,1,1138,1513,2021,155,WEST 66 STREET,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381514,1,1138,1514,2021,155,WEST 66 STREET,10023,RH,4,"HORN PROPERTIES, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381515,1,1138,1515,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381516,1,1138,1516,2021,155,WEST 66 STREET,10023,RH,4,TM HOWARD ENT,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381517,1,1138,1517,2021,155,WEST 66 STREET,10023,RH,4,TJP LIVING TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381518,1,1138,1518,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381519,1,1138,1519,2021,155,WEST 66 STREET,10023,RH,4,KAI MANAGEMENT LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381520,1,1138,1520,2021,155,WEST 66 STREET,10023,RH,4,LAURALEE LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381521,1,1138,1521,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381522,1,1138,1522,2021,155,WEST 66 STREET,10023,RH,4,"CHRISTOPHER A. KEYSER, TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381523,1,1138,1523,2021,155,WEST 66 STREET,10023,RH,4,"FELSENTHAL, ROBERT",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381524,1,1138,1524,2021,155,WEST 66 STREET,10023,RH,4,"224CCD, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381525,1,1138,1525,2021,155,WEST 66 STREET,10023,RH,4,"GERALD K. SCHWARTZ, TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381526,1,1138,1526,2021,155,WEST 66 STREET,10023,RH,4,"LAGOMARSINO, RON",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381528,1,1138,1528,2021,155,WEST 66 STREET,10023,RH,4,RMC SHAVANO PARTNERS LP,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381529,1,1138,1529,2021,155,WEST 66 STREET,10023,RH,4,"CHERYL A. LAPIN TRUST DATED NOVEMBER 15, 2007",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381530,1,1138,1530,2021,155,WEST 66 STREET,10023,RH,4,"LAMPE, L.P.",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381531,1,1138,1531,2021,155,WEST 66 STREET,10023,RH,4,"WEINGART, NAOMI M",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381532,1,1138,1532,2021,155,WEST 66 STREET,10023,RH,4,JUDITH BITTEL DECLARATION OF TRUST DTD 6 /1/2004,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381533,1,1138,1533,2021,155,WEST 66 STREET,10023,RH,4,"MAHER, TRUSTEE, SUSAN K",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381534,1,1138,1534,2021,155,WEST 66 STREET,10023,RH,4,SARNOFF TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381535,1,1138,1535,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381537,1,1138,1537,2021,155,WEST 66 STREET,10023,RH,4,IRWIN FAMILY LIMITED PARTNERSHIP 3,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381538,1,1138,1538,2021,155,WEST 66 STREET,10023,RH,4,ZASLAV/MINDES 1 LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381541,1,1138,1541,2021,155,WEST 66 STREET,10023,RH,4,LAURA STEVENSON MASLON REVOCABLE TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381542,1,1138,1542,2021,155,WEST 66 STREET,10023,RH,4,"QUINN, JANIE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381543,1,1138,1543,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381544,1,1138,1544,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381545,1,1138,1545,2021,155,WEST 66 STREET,10023,RH,4,"SINGER , RICHARD J",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381546,1,1138,1546,2021,155,WEST 66 STREET,10023,RH,4,THE GEOFF A. SMITH REVOCABLE TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381547,1,1138,1547,2021,155,WEST 66 STREET,10023,RH,4,"NYC PHILLIPS CLUB, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381549,1,1138,1549,2021,155,WEST 66 STREET,10023,RH,4,"LACAYO, KARLA",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381550,1,1138,1550,2021,155,WEST 66 STREET,10023,RH,4,GARMAR VENTURES LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381552,1,1138,1552,2021,155,WEST 66 STREET,10023,RH,4,"BRONSTEIN, RICHARD",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381553,1,1138,1553,2021,155,WEST 66 STREET,10023,RH,4,"RDFM HOLDINGS, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381554,1,1138,1554,2021,155,WEST 66 STREET,10023,RH,4,"SALLY S. MILLER, TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381555,1,1138,1555,2021,155,WEST 66 STREET,10023,RH,4,"BESEN, PETER",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381556,1,1138,1556,2021,155,WEST 66 STREET,10023,RH,4,DASLAND CORPORATION,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381557,1,1138,1557,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381558,1,1138,1558,2021,155,WEST 66 STREET,10023,RH,4,THE FINDER FAMILY TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381559,1,1138,1559,2021,155,WEST 66 STREET,10023,RH,4,EUGENE WEBB III AS TRUSTEE,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381561,1,1138,1561,2021,155,WEST 66 STREET,10023,RH,4,155 REALTY WEST LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381562,1,1138,1562,2021,155,WEST 66 STREET,10023,RH,4,PHILLIPS CLUB II HOLDINGS LLC,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381564,1,1138,1564,2021,155,WEST 66 STREET,10023,RH,4,"AMENDOLA, PETER",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381565,1,1138,1565,2021,155,WEST 66 STREET,10023,RH,4,"SEAN C. FLANIGAN, AS TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381566,1,1138,1566,2021,155,WEST 66 STREET,10023,RH,4,"GOLDMAN REVOCABLE LIVING TRUST, U/A DATE D MAY 4, 2",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381567,1,1138,1567,2021,155,WEST 66 STREET,10023,RH,4,THE ELAINE RUBEL REVOCABLE TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381568,1,1138,1568,2021,155,WEST 66 STREET,10023,RH,4,"ELLECO,LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381569,1,1138,1569,2021,155,WEST 66 STREET,10023,RH,4,"GERSTEIN, RICHARD",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381570,1,1138,1570,2021,155,WEST 66 STREET,10023,RH,4,"DK ACQUISITIONS, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381573,1,1138,1573,2021,155,WEST 66 STREET,10023,RH,4,JAMES RAFFERTY,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381574,1,1138,1574,2021,155,WEST 66 STREET,10023,RH,4,"CARLSON, JAMES B",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381577,1,1138,1577,2021,155,WEST 66 STREET,10023,RH,4,"DOUGLAS A. CHADWICK, JR., TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381578,1,1138,1578,2021,155,WEST 66 STREET,10023,RH,4,AMSTUTZ FAMILY IRREVOCABLE TRUST DATED 0 3/19/2010,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381579,1,1138,1579,2021,155,WEST 66 STREET,10023,RH,4,"MILLHAUSER, LISA NOVICK",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381580,1,1138,1580,2021,155,WEST 66 STREET,10023,RH,4,"MARGOLIN, CHARLES LANCE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381581,1,1138,1581,2021,155,WEST 66 STREET,10023,RH,4,WEINER FAMILY TRUST,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381582,1,1138,1582,2021,155,WEST 66 STREET,10023,RH,4,JED A. SILVER TRUST AGREEMENT,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381583,1,1138,1583,2021,155,WEST 66 STREET,10023,RH,4,"155 WEST 66, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381584,1,1138,1584,2021,155,WEST 66 STREET,10023,RH,4,155 W 66 CLUB ASSOCIATION,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381585,1,1138,1585,2021,155,WEST 66 STREET,10023,RH,4,"EDWIN L. SOLOT, JR., AS TRUSTEE",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381586,1,1138,1586,2021,155,WEST 66 STREET,10023,RH,4,"BELLER, NATALIE M",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381587,1,1138,1587,2021,155,WEST 66 STREET,10023,RH,4,LISA LOKE LIVING TRUST DATED,MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381588,1,1138,1588,2021,155,WEST 66 STREET,10023,RH,4,"OVERCASH HOLDINGS, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381589,1,1138,1589,2021,155,WEST 66 STREET,10023,RH,4,"GRUESKIN, WILLIAM",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011381590,1,1138,1590,2021,155,WEST 66 STREET,10023,RH,4,"B. HOLDCO, LLC",MANHATTAN,40.774386,-73.983399,107,6,153,1028838,1011387503,Lincoln Square +1011420024,1,1142,24,2021,117,WEST 70 STREET,10023,H8,4,"MANHATTAN STRATFORD ARMS, INC.",MANHATTAN,40.776376,-73.980355,107,6,157,1029754,1011420024,Lincoln Square +1011620060,1,1162,60,2021,266,WEST 71 STREET,10023,H3,4,"266 WEST 71ST STREET, LLC",MANHATTAN,40.778682,-73.983914,107,6,159,1030388,1011620060,Lincoln Square +1011640047,1,1164,47,2021,240,WEST 73 STREET,10023,H6,4,AIMCO,MANHATTAN,40.779876,-73.982553,107,6,159,1030522,1011640047,Lincoln Square +1011660035,1,1166,35,2021,2126,BROADWAY,10023,H3,4,"BEACON BROADWAY COMPANY,",MANHATTAN,40.780622,-73.981412,107,6,163,1030727,1011660035,Upper West Side +1011670055,1,1167,55,2021,242,WEST 76 STREET,10023,H3,4,242 WEST 76 REALTY LLC,MANHATTAN,40.78197,-73.98161,107,6,163,1030845,1011670055,Upper West Side +1011680044,1,1168,44,2021,2170,BROADWAY,10024,HB,4,NY BROADWAY HOTEL OWNER LLC,MANHATTAN,40.782137,-73.98092,107,6,163,1030865,1011680044,Upper West Side +1011680056,1,1168,56,2021,2175,BROADWAY,10024,H3,4,LOPHIJO REALTY CORP.,MANHATTAN,40.782253,-73.980898,107,6,163,1030866,1011680056,Upper West Side +1011714504,1,1171,4504,2021,625,WEST 59 STREET,10019,RH,4,TOURO COLLEGE,MANHATTAN,40.771898,-73.9911,107,6,151,1088869,1011717511,Lincoln Square +1011714505,1,1171,4505,2021,625,WEST 59 STREET,10019,RH,4,TOURO COLLEGE,MANHATTAN,40.771898,-73.9911,107,6,151,1088869,1011717511,Lincoln Square +1011714506,1,1171,4506,2021,625,WEST 59 STREET,10019,RH,4,TOURO COLLEGE,MANHATTAN,40.771898,-73.9911,107,6,151,1088869,1011717511,Lincoln Square +1011714507,1,1171,4507,2021,625,WEST 59 STREET,10019,RH,4,TOURO COLLEGE,MANHATTAN,40.771898,-73.9911,107,6,151,1088869,1011717511,Lincoln Square +1011820049,1,1182,49,2021,342,WEST 71 STREET,10023,HR,4,RIVERSIDE STUDIOS LLC,MANHATTAN,40.779462,-73.985803,107,6,159,1030942,1011820049,Lincoln Square +1011840077,1,1184,77,2021,305,WEST END AVENUE,10023,H6,4,"305 WEST END PROPERTY, LLC",MANHATTAN,40.78135,-73.983372,107,6,163,1031008,1011840077,Upper West Side +1011950005,1,1195,5,2021,45,WEST 81 STREET,10024,H2,4,EXCELSIOR,MANHATTAN,40.782597,-73.973026,107,6,165,1031135,1011950005,Upper West Side +1012100026,1,1210,26,2021,117,WEST 79 STREET,10024,H3,4,117 WEST 79TH OWNER LLC,MANHATTAN,40.782276,-73.976229,107,6,165,1031763,1012100026,Upper West Side +1012130038,1,1213,38,2021,106,WEST 83 STREET,10024,HR,4,106 WEST 83RD STREET,MANHATTAN,40.78476,-73.974149,107,6,169,1032076,1012130038,Upper West Side +1012130039,1,1213,39,2021,108,WEST 83 STREET,10024,HR,4,"108 W. 83RD STREET SPECIAL, LLC",MANHATTAN,40.784779,-73.974192,107,6,169,1032077,1012130039,Upper West Side +1012270029,1,1227,29,2021,400,AMSTERDAM AVENUE,10024,H1,4,GRAND AMERICA ASSOCIATES,MANHATTAN,40.78335,-73.97819,107,6,167,1032632,1012270029,Upper West Side +1012330011,1,1233,11,2021,2341,BROADWAY,10024,HR,4,"EUCLID HALL HOUSING DEVELOPMENT FUND COM PANY, INC.",MANHATTAN,40.787697,-73.97704,107,6,171,1081052,1012330011,Upper West Side +1012330025,1,1233,25,2021,207,WEST 85 STREET,10024,HR,4,"AMDA, INC.",MANHATTAN,40.787178,-73.975906,107,6,171,1033136,1012330025,Upper West Side +1012350023,1,1235,23,2021,209,WEST 87 STREET,10024,H3,4,BELNORD HOTEL CORP,MANHATTAN,40.78852,-73.97488,107,6,175,1033207,1012350023,Upper West Side +1012350029,1,1235,29,2021,560,AMSTERDAM AVENUE,10024,H6,4,201 WEST 87TH STREET LLC,MANHATTAN,40.788457,-73.974465,107,6,175,1033209,1012350029,Upper West Side +1012390039,1,1239,39,2021,206,WEST 92 STREET,10025,HR,4,SENATE RESIDENC OWRSINC,MANHATTAN,40.791646,-73.972607,107,6,179,1033597,1012390039,Upper West Side +1012400001,1,1240,1,2021,666,WEST END AVENUE,10025,H6,4,WINDERMERE OWNERS LLC,MANHATTAN,40.793033,-73.974817,107,6,179,1033609,1012400001,Upper West Side +1012410023,1,1241,23,2021,2508,BROADWAY,10025,HR,4,NARRAGANSETT HSG ETC.,MANHATTAN,40.792999,-73.972975,107,6,179,1033647,1012410023,Upper West Side +1012420024,1,1242,24,2021,2520,BROADWAY,10025,H3,4,BEVERLEY HOTEL ASSOCIATES LLC,MANHATTAN,40.793441,-73.972657,107,6,183,1082894,1012420024,Upper West Side +1012420039,1,1242,39,2021,2528,BROADWAY,10025,H3,4,2528 BROADWAY REALTY LLC D/B/A NEWTON HO TEL,MANHATTAN,40.793661,-73.972498,107,6,183,1033683,1012420039,Upper West Side +1012430029,1,1243,29,2021,720,AMSTERDAM AVENUE,10025,HH,4,"201 WEST 95TH STREETREALTY,",MANHATTAN,40.793485,-73.970794,107,6,183,1033697,1012430029,Upper West Side +1012440008,1,1244,8,2021,307,WEST 79 STREET,10024,HS,4,"GRAND IMPERIAL, LLC",MANHATTAN,40.784531,-73.981562,107,6,167,1033718,1012440008,Upper West Side +1012440033,1,1244,33,2021,80,RIVERSIDE DRIVE,10024,HS,4,COSMOPOLITAN BROADCASTING CORP,MANHATTAN,40.785574,-73.981713,107,6,167,1033732,1012440033,Upper West Side +1012460049,1,1246,49,2021,340,WEST 85 STREET,10024,HH,4,"BRANDON HOUSING DEVELOPMENT FUND COMPANY , INC.",MANHATTAN,40.788653,-73.979452,107,6,171,1033867,1012460049,Upper West Side +1012480011,1,1248,11,2021,345,WEST 86 STREET,10024,HR,4,DEXTER PROPERTIES L L,MANHATTAN,40.789773,-73.979936,107,6,175,1033935,1012480011,Upper West Side +1012480014,1,1248,14,2021,333,WEST 86 STREET,10024,H6,4,"CAMBRIDGE AFFILIATES,",MANHATTAN,40.789567,-73.979448,107,6,175,1033936,1012480014,Upper West Side +1012490054,1,1249,54,2021,350,WEST 88 STREET,10024,H6,4,350 REALTY CO,MANHATTAN,40.790662,-73.97805,107,6,175,1033993,1012490054,Upper West Side +1012520046,1,1252,46,2021,307,WEST 93 STREET,10025,HR,4,PR 307 WEST 93 LLC,MANHATTAN,40.793469,-73.974936,107,6,179,1034134,1012520046,Upper West Side +1012520060,1,1252,60,2021,306,WEST 94 STREET,10025,H6,4,ESPLANADE 94 LLC,MANHATTAN,40.794114,-73.974567,107,6,179,1034137,1012520060,Upper West Side +1012520063,1,1252,63,2021,308,WEST 94 STREET,10025,H6,4,ESPLANADE 94 LLC,MANHATTAN,40.794125,-73.974596,107,6,179,1034138,1012520063,Upper West Side +1012530010,1,1253,10,2021,319,WEST 94 STREET,10025,H9,4,CLOVER HOUSING DEVELOPMENT FUND CORPORAT ION,MANHATTAN,40.794205,-73.974734,107,6,183,1034178,1012530010,Upper West Side +1012530013,1,1253,13,2021,315,WEST 94 STREET,10025,HH,4,"315 MONTROYAL, LLC",MANHATTAN,40.794177,-73.974676,107,6,183,1034179,1012530013,Upper West Side +1012530038,1,1253,38,2021,316,WEST 95 STREET,10025,H6,4,RB ESTATES LLC,MANHATTAN,40.794825,-73.974296,107,6,183,1034183,1012530038,Upper West Side +1012530041,1,1253,41,2021,330,WEST 95 STREET,10025,HR,4,"330 CONTINENTAL, LLC",MANHATTAN,40.794918,-73.974517,107,6,183,1034184,1012530041,Upper West Side +1012590011,1,1259,11,2021,47,WEST 43 STREET,10036,HB,4,"44TH STREET HOTEL OWNER, L.P.",MANHATTAN,40.754814,-73.981935,105,4,96,1034203,1012590011,Midtown-Midtown South +1012590025,1,1259,25,2021,15,WEST 43 STREET,10036,H5,4,THE PRINCETON CLUB OF N Y,MANHATTAN,40.754503,-73.981195,105,4,96,1034207,1012590025,Midtown-Midtown South +1012590047,1,1259,47,2021,12,WEST 44 STREET,10036,H2,4,MANSFIELD REALTY I LLC,MANHATTAN,40.755077,-73.980661,105,4,96,1034213,1012590047,Midtown-Midtown South +1012590054,1,1259,54,2021,30,WEST 44 STREET,10036,H5,4,UNIVERSITY PA TRSTEES,MANHATTAN,40.755255,-73.981087,105,4,96,1034215,1012590054,Midtown-Midtown South +1012600007,1,1260,7,2021,59,WEST 44 STREET,10036,H2,4,REGENCY 44TH STREET LLC,MANHATTAN,40.755555,-73.981754,105,4,96,1081059,1012600007,Midtown-Midtown South +1012600010,1,1260,10,2021,55,WEST 44 STREET,10036,HB,4,"CITY CLUB HOTEL REALTY, LLC",MANHATTAN,40.755516,-73.98166,105,4,96,1034219,1012600010,Midtown-Midtown South +1012600012,1,1260,12,2021,47,WEST 44 STREET,10036,HB,4,IROQUOIS HOTEL HOLDINGS LLC,MANHATTAN,40.755439,-73.981476,105,4,96,1034220,1012600012,Midtown-Midtown South +1012600014,1,1260,14,2021,45,WEST 44 STREET,10036,H1,4,KSSNY INC.,MANHATTAN,40.75542,-73.981429,105,4,96,1085873,1012600014,Midtown-Midtown South +1012600016,1,1260,16,2021,39,WEST 44 STREET,10036,H5,4,NEW YORK YACHT CLUB CORP.,MANHATTAN,40.755362,-73.981292,105,4,96,1034221,1012600016,Midtown-Midtown South +1012600020,1,1260,20,2021,27,WEST 44 STREET,10036,H5,4,HARVARD CLUB OF NEW YORK CITY,MANHATTAN,40.755244,-73.981014,105,4,96,1034223,1012600020,Midtown-Midtown South +1012600056,1,1260,56,2021,38,WEST 45 STREET,10036,H2,4,MIDTOWN SOUTH OWNER LLC,MANHATTAN,40.755963,-73.980823,105,4,96,1034234,1012600056,Midtown-Midtown South +1012601101,1,1260,1101,2021,66,WEST 45 STREET,10036,RH,4,"WATERSCAPE RESORT II, LLC",MANHATTAN,40.756241,-73.98148,105,4,96,1034238,1012607502,Midtown-Midtown South +1012601102,1,1260,1102,2021,66,WEST 45 STREET,10036,RH,4,"WATERSCAPE RESORT II, LLC",MANHATTAN,40.756241,-73.98148,105,4,96,1034238,1012607502,Midtown-Midtown South +1012610029,1,1261,29,2021,15,WEST 45 STREET,10036,H3,4,ASPINDEN SM LLC,MANHATTAN,40.755755,-73.980285,105,4,96,1034249,1012610029,Midtown-Midtown South +1012610054,1,1261,54,2021,30,WEST 46 STREET,10036,H6,4,"CS HOTEL 30W46TH, LLC",MANHATTAN,40.756504,-73.980173,105,4,96,1088772,1012610054,Midtown-Midtown South +1012620009,1,1262,9,2021,59,WEST 46 STREET,10036,H3,4,"WENTWORTH HOTEL, LLC",MANHATTAN,40.756803,-73.980841,105,4,96,1081126,1012620009,Midtown-Midtown South +1012670030,1,1267,30,2021,3,WEST 51 STREET,10019,H2,4,WOMENS NATL REPB CLUB,MANHATTAN,40.759298,-73.977032,105,4,104,1034515,1012670030,Midtown-Midtown South +1012671003,1,1267,1003,2021,25,WEST 51 STREET,10019,RH,4,SCCQ ROCK HOTEL LLC,MANHATTAN,40.759866,-73.978385,105,4,104,1034511,1012677501,Midtown-Midtown South +1012671004,1,1267,1004,2021,25,WEST 51 STREET,10019,RH,4,SCCQ ROCK HOTEL LLC,MANHATTAN,40.759866,-73.978385,105,4,104,1034511,1012677501,Midtown-Midtown South +1012671103,1,1267,1103,2021,11,WEST 51 STREET,10019,RH,4,"11 WEST 51 REALTY, LLC",MANHATTAN,40.759482,-73.977468,105,4,104,1034513,1012677502,Midtown-Midtown South +1012671104,1,1267,1104,2021,11,WEST 51 STREET,10019,RH,4,"11 WEST 51 REALTY, LLC",MANHATTAN,40.759482,-73.977468,105,4,104,1034513,1012677502,Midtown-Midtown South +1012681201,1,1268,1201,2021,20,WEST 53 STREET,10019,RH,4,SUNFLOWER AMERICAN CAPITAL LTD.,MANHATTAN,40.760972,-73.977172,105,4,104,1089376,1012687503,Midtown-Midtown South +1012700001,1,1270,1,2021,1340,AVENUE OF THE AMER,10019,H1,4,SILVER AUTUMN HTL CORP,MANHATTAN,40.762487,-73.978521,105,4,104,1034786,1012700001,Midtown-Midtown South +1012700034,1,1270,34,2021,690,5 AVENUE,10019,H5,4,UNIVERSITY CLUB INC (THE),MANHATTAN,40.761139,-73.975316,105,4,104,1034800,1012700034,Midtown-Midtown South +1012700038,1,1270,38,2021,696,5 AVENUE,10019,H1,4,LGMT 700 FIFTH LLC,MANHATTAN,40.761304,-73.975194,105,4,104,1034801,1012700038,Midtown-Midtown South +1012710017,1,1271,17,2021,39,WEST 55 STREET,10019,H1,4,RONBET WEST 55TH STREET LLC,MANHATTAN,40.762248,-73.976269,105,4,104,1034821,1012710017,Midtown-Midtown South +1012710019,1,1271,19,2021,33,WEST 55 STREET,10019,H1,4,FIFTY FIFTH STREET,MANHATTAN,40.76219,-73.976132,105,4,104,1034822,1012710019,Midtown-Midtown South +1012710050,1,1271,50,2021,18,WEST 56TH STREET,10019,H2,4,18-22 WEST 56TH STREET LLC,MANHATTAN,40.762649,-73.975323,105,4,104,1090261,1012710050,Midtown-Midtown South +1012710051,1,1271,51,2021,20,WEST 56 STREET,10019,H2,4,18-22 WEST 56TH STREET LLC,MANHATTAN,40.762668,-73.97537,105,4,104,1000000,1012710050,Midtown-Midtown South +1012710052,1,1271,52,2021,22,WEST 56 STREET,10019,H2,4,18-22 WEST 56TH STREET LLC,MANHATTAN,40.762687,-73.975417,105,4,104,1000000,1012710050,Midtown-Midtown South +1012720026,1,1272,26,2021,13,WEST 56 STREET,10019,H1,4,BDC 56 LLC,MANHATTAN,40.762621,-73.975211,105,4,11201,1084673,1012720026,Midtown-Midtown South +1012730060,1,1273,60,2021,42,WEST 58 STREET,10019,HS,4,"METROPOLITAN 58TH STREET ASSOCIATES, LLC",MANHATTAN,40.764361,-73.975189,105,4,11201,1035075,1012730060,Midtown-Midtown South +1012730071,1,1273,71,2021,1412,AVENUE OF THE AMER,10019,H1,4,"1414 HOLDINGS, L.L.C.",MANHATTAN,40.764735,-73.976885,105,4,11201,1035077,1012730071,Midtown-Midtown South +1012740011,1,1274,11,2021,34,CENTRAL PARK SOUTH,10019,H1,4,SYMPHONY CP ( PARK LANE ) OWNER LLC,MANHATTAN,40.765039,-73.974759,105,4,11201,1035251,1012740011,Midtown-Midtown South +1012741201,1,1274,1201,2021,50,CENTRAL PARK SOUTH,10019,RH,4,"MP8 CPS HOTEL OWNER, LLC",MANHATTAN,40.765163,-73.975051,105,4,11201,1035256,1012747503,Midtown-Midtown South +1012741202,1,1274,1202,2021,50,CENTRAL PARK SOUTH,10019,RH,4,MPE HOTEL I (NEW YORK),MANHATTAN,40.765163,-73.975051,105,4,11201,1035256,1012747503,Midtown-Midtown South +1012741303,1,1274,1303,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741304,1,1274,1304,2021,768,5 AVENUE,10019,RH,4,"KONDO ENTERPRISES, INC.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741305,1,1274,1305,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741306,1,1274,1306,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741307,1,1274,1307,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741308,1,1274,1308,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741309,1,1274,1309,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741310,1,1274,1310,2021,768,5 AVENUE,10019,RH,4,"CHIA, MICHAEL",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741311,1,1274,1311,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741312,1,1274,1312,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741313,1,1274,1313,2021,768,5 AVENUE,10019,RH,4,"CHARLES ZELEN, LLC",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741314,1,1274,1314,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741315,1,1274,1315,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741316,1,1274,1316,2021,768,5 AVENUE,10019,RH,4,"ACSERVICE CO., LTD.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741317,1,1274,1317,2021,768,5 AVENUE,10019,RH,4,YPSILON INC.,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741318,1,1274,1318,2021,768,5 AVENUE,10019,RH,4,"NAKATANI, MASAHIRO",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741319,1,1274,1319,2021,768,5 AVENUE,10019,RH,4,"WATERLOO PLAZA 1221, L.P.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741320,1,1274,1320,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741321,1,1274,1321,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741322,1,1274,1322,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741323,1,1274,1323,2021,768,5 AVENUE,10019,RH,4,"AKITA, YOSHITERU",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741324,1,1274,1324,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741325,1,1274,1325,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741326,1,1274,1326,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741327,1,1274,1327,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741328,1,1274,1328,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741329,1,1274,1329,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741330,1,1274,1330,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741331,1,1274,1331,2021,768,5 AVENUE,10019,RH,4,"REAL PROPERTIES, INC.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741332,1,1274,1332,2021,768,5 AVENUE,10019,RH,4,HC PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741333,1,1274,1333,2021,768,5 AVENUE,10019,RH,4,"MESOLOGITES, PETER",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741334,1,1274,1334,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741335,1,1274,1335,2021,768,5 AVENUE,10019,RH,4,"GULDKULA, HAAKAN ANDERSON",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741336,1,1274,1336,2021,768,5 AVENUE,10019,RH,4,"ADLER, RICHARD M",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741337,1,1274,1337,2021,768,5 AVENUE,10019,RH,4,CRYSTAL INN COMPANY LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741338,1,1274,1338,2021,768,5 AVENUE,10019,RH,4,SEN REAL ESTATE INVESTMENTS LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741339,1,1274,1339,2021,768,5 AVENUE,10019,RH,4,"ANDERSON, HAAKAN B",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741340,1,1274,1340,2021,768,5 AVENUE,10019,RH,4,BLUE VISTAS LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741341,1,1274,1341,2021,768,5 AVENUE,10019,RH,4,"HOMMA, TAKASHI",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741342,1,1274,1342,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741343,1,1274,1343,2021,768,5 AVENUE,10019,RH,4,"JAMES B. CARTY REAL ESTATE, LLC",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741344,1,1274,1344,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741345,1,1274,1345,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741346,1,1274,1346,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741347,1,1274,1347,2021,768,5 AVENUE,10019,RH,4,PLAZA 1108 LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741348,1,1274,1348,2021,768,5 AVENUE,10019,RH,4,"TRANSAMERICAN PROPERTIES, INC.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741349,1,1274,1349,2021,768,5 AVENUE,10019,RH,4,"ANDERSON, HAAKAN B",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741350,1,1274,1350,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741351,1,1274,1351,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741352,1,1274,1352,2021,768,5 AVENUE,10019,RH,4,SEVEN SIGNATURES INTERNATIONAL CORPORATI ON,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741353,1,1274,1353,2021,768,5 AVENUE,10019,RH,4,"NAKANO, YOICHIRO",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741354,1,1274,1354,2021,768,5 AVENUE,10019,RH,4,"PLAZA LUXURY REAL ESTATE, LLC",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741355,1,1274,1355,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741356,1,1274,1356,2021,768,5 AVENUE,10019,RH,4,"KAMEI, YOSHIAKI",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741357,1,1274,1357,2021,768,5 AVENUE,10019,RH,4,"HOURANI, HAYEL",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741358,1,1274,1358,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741359,1,1274,1359,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741360,1,1274,1360,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741361,1,1274,1361,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741362,1,1274,1362,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741363,1,1274,1363,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741364,1,1274,1364,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741365,1,1274,1365,2021,768,5 AVENUE,10019,RH,4,GANTON PROPERTY LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741366,1,1274,1366,2021,768,5 AVENUE,10019,RH,4,"KIM, MINSUN",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741367,1,1274,1367,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741368,1,1274,1368,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741369,1,1274,1369,2021,768,5 AVENUE,10019,RH,4,"WOLK, HOWARD",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741370,1,1274,1370,2021,768,5 AVENUE,10019,RH,4,"NAKANO, YOICHIRO",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741371,1,1274,1371,2021,768,5 AVENUE,10019,RH,4,CT PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741372,1,1274,1372,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741373,1,1274,1373,2021,768,5 AVENUE,10019,RH,4,"NEW YORK PLAZA HOTEL ROOM, LLC",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741374,1,1274,1374,2021,768,5 AVENUE,10019,RH,4,NY PLAZA HOTEL ROOM LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741375,1,1274,1375,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741376,1,1274,1376,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741377,1,1274,1377,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741378,1,1274,1378,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741379,1,1274,1379,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741380,1,1274,1380,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741381,1,1274,1381,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741382,1,1274,1382,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741383,1,1274,1383,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741384,1,1274,1384,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741385,1,1274,1385,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741386,1,1274,1386,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741387,1,1274,1387,2021,768,5 AVENUE,10019,RH,4,SANAE YOSHIDA,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741388,1,1274,1388,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741389,1,1274,1389,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741390,1,1274,1390,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741391,1,1274,1391,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741392,1,1274,1392,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741393,1,1274,1393,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741394,1,1274,1394,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741395,1,1274,1395,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741396,1,1274,1396,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741397,1,1274,1397,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741398,1,1274,1398,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741399,1,1274,1399,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741400,1,1274,1400,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741401,1,1274,1401,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741402,1,1274,1402,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741403,1,1274,1403,2021,768,5 AVENUE,10019,RH,4,"BABA, NARUATSU",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741404,1,1274,1404,2021,768,5 AVENUE,10019,RH,4,"DONGWHA USA, INC.",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741405,1,1274,1405,2021,768,5 AVENUE,10019,RH,4,"CAPS, YUGEN KAISHA",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741406,1,1274,1406,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741407,1,1274,1407,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741408,1,1274,1408,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741409,1,1274,1409,2021,768,5 AVENUE,10019,RH,4,"DOSWELL VENTURES, LLC",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741410,1,1274,1410,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741411,1,1274,1411,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741412,1,1274,1412,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741413,1,1274,1413,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741414,1,1274,1414,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741415,1,1274,1415,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741416,1,1274,1416,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741417,1,1274,1417,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741418,1,1274,1418,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741419,1,1274,1419,2021,768,5 AVENUE,10019,RH,4,HORIZON TOWER LTD.,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741420,1,1274,1420,2021,768,5 AVENUE,10019,RH,4,"SAKAI, HIROAKI",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741421,1,1274,1421,2021,768,5 AVENUE,10019,RH,4,"ISHIWATARI, SHINSUKE",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741422,1,1274,1422,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741423,1,1274,1423,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741424,1,1274,1424,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741425,1,1274,1425,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741426,1,1274,1426,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741427,1,1274,1427,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741428,1,1274,1428,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741429,1,1274,1429,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741430,1,1274,1430,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741431,1,1274,1431,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741432,1,1274,1432,2021,768,5 AVENUE,10019,RH,4,"HELWANI, PENINA",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741433,1,1274,1433,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741434,1,1274,1434,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741435,1,1274,1435,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741436,1,1274,1436,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741437,1,1274,1437,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741438,1,1274,1438,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741439,1,1274,1439,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741440,1,1274,1440,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741441,1,1274,1441,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741442,1,1274,1442,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741443,1,1274,1443,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741444,1,1274,1444,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741445,1,1274,1445,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741446,1,1274,1446,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741447,1,1274,1447,2021,768,5 AVENUE,10019,RH,4,"ACSERVICE CO., LTD",MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741448,1,1274,1448,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741449,1,1274,1449,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741450,1,1274,1450,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741451,1,1274,1451,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741452,1,1274,1452,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741453,1,1274,1453,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741454,1,1274,1454,2021,768,5 AVENUE,10019,RH,4,SAHARA PLAZA LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012741455,1,1274,1455,2021,768,5 AVENUE,10019,RH,4,768 PLAZA SUITES LLC,MANHATTAN,40.764155,-73.973951,105,4,11201,1035253,1012747504,Midtown-Midtown South +1012750006,1,1275,6,2021,3,EAST 40 STREET,10016,H3,4,VERILEN REPRODUCTIONS,MANHATTAN,40.752058,-73.981466,105,4,82,1035312,1012750006,Murray Hill-Kips Bay +1012750044,1,1275,44,2021,50,EAST 41 STREET,10017,H1,4,NYC VALUE ADDED I LLC,MANHATTAN,40.751906,-73.979243,105,4,82,1035320,1012750044,Murray Hill-Kips Bay +1012760001,1,1276,1,2021,479,5 AVENUE,10017,H1,4,"TAK HOSPITALITY, LLC",MANHATTAN,40.7529,-73.981297,105,4,82,1035330,1012760001,Murray Hill-Kips Bay +1012760023,1,1276,23,2021,299,MADISON AVENUE,10017,HB,4,"299 MADISON HOTEL, LLC",MANHATTAN,40.752101,-73.979416,105,4,82,1035332,1012760023,Murray Hill-Kips Bay +1012780065,1,1278,65,2021,6,EAST 44 STREET,10017,H5,4,CORNELL CENTER NY INC,MANHATTAN,40.754605,-73.979538,105,4,94,1035364,1012780065,Midtown-Midtown South +1012800030,1,1280,30,2021,109,EAST 42 STREET,10017,H1,4,NYC TRANSIT,MANHATTAN,40.751862,-73.977034,105,4,92,1035383,1012800030,Turtle Bay-East Midtown +1012810021,1,1281,21,2021,45,EAST 45 STREET,10017,H1,4,RHC OPERATING LLC,MANHATTAN,40.754538,-73.977398,105,4,94,1035393,1012810021,Midtown-Midtown South +1012810061,1,1281,61,2021,16,EAST 46 STREET,10017,HB,4,E 46 GROUP LLC,MANHATTAN,40.755669,-73.978184,105,4,94,1088581,1012810061,Midtown-Midtown South +1012830011,1,1283,11,2021,12,EAST 48 STREET,10017,H9,4,1248 ASSOCIATES LLC,MANHATTAN,40.756978,-73.977408,105,4,94,1090691,1012830011,Midtown-Midtown South +1012860021,1,1286,21,2021,455,MADISON AVENUE,10022,H1,4,ARCHDIOCESE/N.Y.,MANHATTAN,40.758114,-73.975393,105,4,102,1035462,1012860021,Midtown-Midtown South +1012880011,1,1288,11,2021,500,MADISON AVENUE,10022,H1,4,OMI BERSHIRE CORP.,MANHATTAN,40.759212,-73.97462,105,4,102,1081151,1012880011,Midtown-Midtown South +1012890045,1,1289,45,2021,56,EAST 54 STREET,10022,H1,4,"ELYSEE HOTEL, LLC",MANHATTAN,40.760126,-73.973227,105,4,102,1035733,1012890045,Midtown-Midtown South +1012901201,1,1290,1201,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY HOTEL LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901203,1,1290,1203,2021,2,EAST 55 STREET,10022,RH,4,"SKILTON, ELISA YIXIA",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901204,1,1290,1204,2021,2,EAST 55 STREET,10022,RH,4,BRUCE NEWBERG AS TRUSTEE,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901205,1,1290,1205,2021,2,EAST 55 STREET,10022,RH,4,"ST REGIS RESIDENCE CLUB, NEW YORK INC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901206,1,1290,1206,2021,2,EAST 55 STREET,10022,RH,4,KOSMOS MANAGEMENT LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901207,1,1290,1207,2021,2,EAST 55 STREET,10022,RH,4,"ST REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901208,1,1290,1208,2021,2,EAST 55 STREET,10022,RH,4,"FELDMAN, IRIS F",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901209,1,1290,1209,2021,2,EAST 55 STREET,10022,RH,4,"ZIEGLER, JOHN",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901210,1,1290,1210,2021,2,EAST 55 STREET,10022,RH,4,ONTARIO INC.,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901211,1,1290,1211,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901212,1,1290,1212,2021,2,EAST 55 STREET,10022,RH,4,FIFTH AND FIFTY-FIFTH CONDOMINIUM,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901213,1,1290,1213,2021,2,EAST 55 STREET,10022,RH,4,"FIFTH AND FIFTY-FIFTH RESIDENCE CLUB ASS OCIATION,",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901214,1,1290,1214,2021,2,EAST 55 STREET,10022,RH,4,FIFTH & FIFTY-FIFTH RESIDENCE CLUB,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901215,1,1290,1215,2021,2,EAST 55 STREET,10022,RH,4,"ALL FIVES, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901216,1,1290,1216,2021,2,EAST 55 STREET,10022,RH,4,WILLIAM FRIEDBERG AS TRUSTEE,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901217,1,1290,1217,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901218,1,1290,1218,2021,2,EAST 55 STREET,10022,RH,4,"FIFTH AND FIFTY-FIFTH RESIDENCE CLUB ASS OCIATION,",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901219,1,1290,1219,2021,2,EAST 55 STREET,10022,RH,4,MYNT PEARL 66 LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901220,1,1290,1220,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901221,1,1290,1221,2021,2,EAST 55 STREET,10022,RH,4,DAYTONA 5-55 LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901222,1,1290,1222,2021,2,EAST 55 STREET,10022,RH,4,"ROBERT A. MCCABE, JR., AS TRUSTEE",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901223,1,1290,1223,2021,2,EAST 55 STREET,10022,RH,4,NFA HOLDINGS LIMITED,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901224,1,1290,1224,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901225,1,1290,1225,2021,2,EAST 55 STREET,10022,RH,4,SECOYA PARTNERS LLC D/B/A SECOYA PARTNER S OF DELAW,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901226,1,1290,1226,2021,2,EAST 55 STREET,10022,RH,4,SECOYA PARTNERS LLC D/B/A SECOYA PARTNER S,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901227,1,1290,1227,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901228,1,1290,1228,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901229,1,1290,1229,2021,2,EAST 55 STREET,10022,RH,4,"UNIT 1011, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901230,1,1290,1230,2021,2,EAST 55 STREET,10022,RH,4,"UNIT 1015, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901231,1,1290,1231,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901232,1,1290,1232,2021,2,EAST 55 STREET,10022,RH,4,"GHP WATER STREET, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901233,1,1290,1233,2021,2,EAST 55 STREET,10022,RH,4,"ST. REGIS RESIDENCE CLUB, NEW YORK INC.",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901234,1,1290,1234,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901235,1,1290,1235,2021,2,EAST 55 STREET,10022,RH,4,THE BOARD OF DIRECTORS OF THE FIFTH,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901236,1,1290,1236,2021,2,EAST 55 STREET,10022,RH,4,"HWC 2 EAST 55, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901237,1,1290,1237,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901238,1,1290,1238,2021,2,EAST 55 STREET,10022,RH,4,"527 HARBOR POINT, LLC",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901239,1,1290,1239,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901240,1,1290,1240,2021,2,EAST 55 STREET,10022,RH,4,"KERSHNER, VANCE",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901241,1,1290,1241,2021,2,EAST 55 STREET,10022,RH,4,"KERSHNER, VANCE",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901242,1,1290,1242,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901243,1,1290,1243,2021,2,EAST 55 STREET,10022,RH,4,JANE P. FITZPATRICK MARITAL TRUST,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901244,1,1290,1244,2021,2,EAST 55 STREET,10022,RH,4,"SVO RESIDENCE CLUB SALES OF NEW YORK, IN C",MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901245,1,1290,1245,2021,2,EAST 55 STREET,10022,RH,4,MALDIVAS USA INC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901246,1,1290,1246,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901247,1,1290,1247,2021,2,EAST 55 STREET,10022,RH,4,FIFTH AVENUE HOTEL SUITES LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012901248,1,1290,1248,2021,2,EAST 55 STREET,10022,RH,4,QIA SR NY CONDO LLC,MANHATTAN,40.761559,-73.974681,105,4,102,1035762,1012907502,Midtown-Midtown South +1012931001,1,1293,1001,2021,53,EAST 57 STREET,10022,RH,4,GREENPOINT-GOLDMAN CORP,MANHATTAN,40.762088,-73.971862,105,4,11202,1077862,1012937501,Midtown-Midtown South +1012990023,1,1299,23,2021,137,EAST 44 STREET,10017,H2,4,HOTEL GRAND CENTRAL LLC,MANHATTAN,40.752474,-73.974446,106,4,92,1036175,1012990023,Turtle Bay-East Midtown +1012991001,1,1299,1001,2021,451,LEXINGTON AVENUE,10017,RH,4,451 LEXINGTON REALTY LLC,MANHATTAN,40.753138,-73.974803,106,4,92,1036183,1012997501,Turtle Bay-East Midtown +1013020021,1,1302,21,2021,501,LEXINGTON AVENUE,10017,H3,4,ROGER SMITH NEW YORK LLC,MANHATTAN,40.75471,-73.973655,106,4,92,1036208,1013020021,Turtle Bay-East Midtown +1013020030,1,1302,30,2021,147,EAST 47 STREET,10017,H3,4,SJM 145 ASSOCIATES LLC,MANHATTAN,40.754367,-73.973117,106,4,92,1089688,1013020030,Turtle Bay-East Midtown +1013020043,1,1302,43,2021,144,EAST 48 STREET,10017,H3,4,48TH STREET HOTEL LLC,MANHATTAN,40.755062,-73.972868,106,4,92,1036218,1013020043,Turtle Bay-East Midtown +1013020051,1,1302,51,2021,509,LEXINGTON AVENUE,10017,H1,4,"DIAMONDROCK NY LEX OWNER, LLC",MANHATTAN,40.75496,-73.973471,106,4,92,1036219,1013020051,Turtle Bay-East Midtown +1013030014,1,1303,14,2021,111,EAST 48 STREET,10017,H1,4,"111 EAST 48TH STREET HOLDINGS, LLC",MANHATTAN,40.75555,-73.973979,105,4,92,1036224,1013030014,Turtle Bay-East Midtown +1013030053,1,1303,53,2021,525,LEXINGTON AVENUE,10017,H1,4,"LEXINGTON AVENUE HOTEL, L.P.",MANHATTAN,40.755685,-73.972943,106,4,92,1036232,1013030053,Turtle Bay-East Midtown +1013031301,1,1303,1301,2021,517,LEXINGTON AVENUE,10017,RH,4,"LEXINGTON HOLDING ASSOCIATES, LLC",MANHATTAN,40.755232,-73.972969,106,4,92,1090523,1013037502,Turtle Bay-East Midtown +1013040020,1,1304,20,2021,541,LEXINGTON AVENUE,10022,H1,4,DCH LEX PROPCO SUB LP,MANHATTAN,40.756162,-73.972593,106,4,100,1036441,1013040020,Turtle Bay-East Midtown +1013040026,1,1304,26,2021,145,EAST 49 STREET,10017,HS,4,145 EAST 49TH STREET,MANHATTAN,40.75564,-73.97225,106,4,100,1036443,1013040026,Turtle Bay-East Midtown +1013040041,1,1304,41,2021,150,EAST 50 STREET,10022,HB,4,SAN CARLOS BLDG CO,MANHATTAN,40.75623,-73.971752,106,4,100,1036447,1013040041,Turtle Bay-East Midtown +1013041002,1,1304,1002,2021,301,PARK AVENUE,10022,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.756648,-73.974358,105,4,100,1084771,1013047501,Turtle Bay-East Midtown +1013041003,1,1304,1003,2021,301,PARK AVENUE,10022,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.756648,-73.974358,105,4,100,1084771,1013047501,Turtle Bay-East Midtown +1013050020,1,1305,20,2021,557,LEXINGTON AVENUE,10022,H1,4,"125 EAST 50TH STREET CO., LLC",MANHATTAN,40.756587,-73.972283,106,4,100,1036452,1013050020,Turtle Bay-East Midtown +1013050028,1,1305,28,2021,145,EAST 50 STREET,10022,HS,4,"KIMBERLY HOLDINGS, LLC",MANHATTAN,40.756266,-73.971792,106,4,100,1036454,1013050028,Turtle Bay-East Midtown +1013050032,1,1305,32,2021,151,EAST 50 STREET,10022,HS,4,"KIMBERLY HOLDINGS, LLC",MANHATTAN,40.75623,-73.971702,106,4,100,1036455,1013050032,Turtle Bay-East Midtown +1013050033,1,1305,33,2021,155,EAST 50 STREET,10022,HS,4,"155 EAST 50TH STREET CO., LLC",MANHATTAN,40.756206,-73.971644,106,4,100,1036456,1013050033,Turtle Bay-East Midtown +1013051001,1,1305,1001,2021,569,LEXINGTON AVENUE,10022,RH,4,"RLJ III - DBT METROPOLITAN MANHATTAN, LP",MANHATTAN,40.756917,-73.972044,106,4,100,1036458,1013057501,Turtle Bay-East Midtown +1013071004,1,1307,1004,2021,866,3 AVENUE,10022,RH,4,DIAMONDROCK MANHATTAN,MANHATTAN,40.757435,-73.9696,106,4,100,1036469,1013077501,Turtle Bay-East Midtown +1013090005,1,1309,5,2021,111,EAST 54 STREET,10022,H5,4,THE BROOK INC,MANHATTAN,40.759434,-73.971541,105,4,100,1036477,1013090005,Turtle Bay-East Midtown +1013090044,1,1309,44,2021,152,EAST 55 STREET,10022,HB,4,"CARVI PROPERTIES, INC",MANHATTAN,40.759364,-73.969484,106,4,100,1036486,1013090044,Turtle Bay-East Midtown +1013100012,1,1310,12,2021,127,EAST 55 STREET,10022,H3,4,NYC 55 CORP,MANHATTAN,40.759815,-73.970502,105,4,100,1036510,1013100012,Turtle Bay-East Midtown +1013110005,1,1311,5,2021,109,EAST 56 STREET,10022,H7,4,111 E 56TH ST INC,MANHATTAN,40.760701,-73.970671,105,4,11203,1036867,1013110005,Turtle Bay-East Midtown +1013110052,1,1311,52,2021,687,LEXINGTON AVENUE,10022,HS,4,JOLLY TINKER INC,MANHATTAN,40.760564,-73.969386,106,4,11203,1036889,1013110052,Turtle Bay-East Midtown +1013110058,1,1311,58,2021,690,LEXINGTON AVENUE,10022,H2,4,SOL GOLDMAN INVESTMENTS LLC,MANHATTAN,40.760641,-73.969353,105,4,11203,1036890,1013110058,Turtle Bay-East Midtown +1013110059,1,1311,59,2021,698,LEXINGTON AVENUE,10022,H2,4,SOL GOLDMAN INVESTMENTS LLC,MANHATTAN,40.76083,-73.969216,105,4,11203,1036891,1013110059,Turtle Bay-East Midtown +1013150044,1,1315,44,2021,214,EAST 42 STREET,10017,H1,4,DK WGC FEE OWNER LLC,MANHATTAN,40.750415,-73.973635,106,4,88,1037547,1013150044,Turtle Bay-East Midtown +1013170019,1,1317,19,2021,231,EAST 43 STREET,10017,H3,4,"HOSPITALITY FINANCE COMPANY TWO, LLC",MANHATTAN,40.751104,-73.973137,106,4,88,1037560,1013170019,Turtle Bay-East Midtown +1013180029,1,1318,29,2021,837,2 AVENUE,10017,H9,4,837 SECOND AVE REALTY LLC,MANHATTAN,40.751548,-73.970964,106,4,90,1037575,1013180029,Turtle Bay-East Midtown +1013181001,1,1318,1001,2021,219,EAST 44 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.751809,-73.972876,106,4,90,1090529,1013187502,Turtle Bay-East Midtown +1013190034,1,1319,34,2021,234,EAST 46 STREET,10017,HS,4,234 EAST 46TH STREET PROPERTY OWNER LLC,MANHATTAN,40.752942,-73.97171,106,4,90,1037594,1013190034,Turtle Bay-East Midtown +1013191303,1,1319,1303,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191304,1,1319,1304,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191305,1,1319,1305,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191306,1,1319,1306,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191307,1,1319,1307,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191308,1,1319,1308,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191309,1,1319,1309,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191310,1,1319,1310,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191311,1,1319,1311,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191312,1,1319,1312,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191313,1,1319,1313,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191314,1,1319,1314,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191315,1,1319,1315,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191316,1,1319,1316,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191317,1,1319,1317,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191318,1,1319,1318,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191319,1,1319,1319,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191320,1,1319,1320,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191321,1,1319,1321,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191322,1,1319,1322,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191323,1,1319,1323,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191324,1,1319,1324,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191325,1,1319,1325,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191326,1,1319,1326,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191327,1,1319,1327,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191328,1,1319,1328,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191329,1,1319,1329,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191330,1,1319,1330,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191331,1,1319,1331,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191332,1,1319,1332,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191333,1,1319,1333,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191334,1,1319,1334,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191335,1,1319,1335,2021,205,EAST 45 STREET,10017,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191336,1,1319,1336,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191337,1,1319,1337,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191338,1,1319,1338,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191339,1,1319,1339,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191340,1,1319,1340,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191341,1,1319,1341,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191342,1,1319,1342,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191343,1,1319,1343,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191344,1,1319,1344,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191345,1,1319,1345,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191346,1,1319,1346,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191347,1,1319,1347,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191348,1,1319,1348,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191349,1,1319,1349,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191350,1,1319,1350,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191351,1,1319,1351,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191352,1,1319,1352,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191353,1,1319,1353,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191354,1,1319,1354,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191355,1,1319,1355,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191356,1,1319,1356,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191357,1,1319,1357,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191358,1,1319,1358,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191359,1,1319,1359,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191360,1,1319,1360,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191361,1,1319,1361,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191362,1,1319,1362,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191363,1,1319,1363,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191364,1,1319,1364,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191365,1,1319,1365,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191366,1,1319,1366,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191367,1,1319,1367,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191368,1,1319,1368,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191369,1,1319,1369,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191370,1,1319,1370,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191371,1,1319,1371,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191372,1,1319,1372,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191373,1,1319,1373,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191374,1,1319,1374,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191375,1,1319,1375,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191376,1,1319,1376,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191377,1,1319,1377,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191378,1,1319,1378,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191379,1,1319,1379,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191380,1,1319,1380,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191381,1,1319,1381,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 AT NEW YORK CITY VACATION OWN ERS,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191382,1,1319,1382,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191383,1,1319,1383,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191384,1,1319,1384,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191385,1,1319,1385,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191386,1,1319,1386,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191387,1,1319,1387,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191388,1,1319,1388,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191389,1,1319,1389,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191390,1,1319,1390,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191391,1,1319,1391,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191392,1,1319,1392,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191393,1,1319,1393,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191394,1,1319,1394,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191395,1,1319,1395,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191396,1,1319,1396,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191397,1,1319,1397,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191398,1,1319,1398,2021,205,EAST 45 STREET,10017,RH,4,CSC TRUST COMPANY OF DELAWARE AS TRUSTEE FOR,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191399,1,1319,1399,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 AT NEW YORK CITY VACATION OWN ERS,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191400,1,1319,1400,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191401,1,1319,1401,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191402,1,1319,1402,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191403,1,1319,1403,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191404,1,1319,1404,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191405,1,1319,1405,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191406,1,1319,1406,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191407,1,1319,1407,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191408,1,1319,1408,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191409,1,1319,1409,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191410,1,1319,1410,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191411,1,1319,1411,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191412,1,1319,1412,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191413,1,1319,1413,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191414,1,1319,1414,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191415,1,1319,1415,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191416,1,1319,1416,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191417,1,1319,1417,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191418,1,1319,1418,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191419,1,1319,1419,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191420,1,1319,1420,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191421,1,1319,1421,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191422,1,1319,1422,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191423,1,1319,1423,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191424,1,1319,1424,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191425,1,1319,1425,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191426,1,1319,1426,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191427,1,1319,1427,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191428,1,1319,1428,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191429,1,1319,1429,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191430,1,1319,1430,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191431,1,1319,1431,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191432,1,1319,1432,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191433,1,1319,1433,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191434,1,1319,1434,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191435,1,1319,1435,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191436,1,1319,1436,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191437,1,1319,1437,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191438,1,1319,1438,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191439,1,1319,1439,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191440,1,1319,1440,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191441,1,1319,1441,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191442,1,1319,1442,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191443,1,1319,1443,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191444,1,1319,1444,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191445,1,1319,1445,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191446,1,1319,1446,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191447,1,1319,1447,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191448,1,1319,1448,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191449,1,1319,1449,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191450,1,1319,1450,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191451,1,1319,1451,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191452,1,1319,1452,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191453,1,1319,1453,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191454,1,1319,1454,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191455,1,1319,1455,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191456,1,1319,1456,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191457,1,1319,1457,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191458,1,1319,1458,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191459,1,1319,1459,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191460,1,1319,1460,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191461,1,1319,1461,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191462,1,1319,1462,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191463,1,1319,1463,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191464,1,1319,1464,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191465,1,1319,1465,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191466,1,1319,1466,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191467,1,1319,1467,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191468,1,1319,1468,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191469,1,1319,1469,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191470,1,1319,1470,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191471,1,1319,1471,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191472,1,1319,1472,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191473,1,1319,1473,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191474,1,1319,1474,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191475,1,1319,1475,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191476,1,1319,1476,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191477,1,1319,1477,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191478,1,1319,1478,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191479,1,1319,1479,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191480,1,1319,1480,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191481,1,1319,1481,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191482,1,1319,1482,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191483,1,1319,1483,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191484,1,1319,1484,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191485,1,1319,1485,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191486,1,1319,1486,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191487,1,1319,1487,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191488,1,1319,1488,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191489,1,1319,1489,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191490,1,1319,1490,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191491,1,1319,1491,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191492,1,1319,1492,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191493,1,1319,1493,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191494,1,1319,1494,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191495,1,1319,1495,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191496,1,1319,1496,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191497,1,1319,1497,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191498,1,1319,1498,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191499,1,1319,1499,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191500,1,1319,1500,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191501,1,1319,1501,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191502,1,1319,1502,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191503,1,1319,1503,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013191504,1,1319,1504,2021,205,EAST 45 STREET,10017,RH,4,MIDTOWN 45 VACATION OWNERSHIP PLAN,MANHATTAN,40.752531,-73.972642,106,4,90,1081175,1013197503,Turtle Bay-East Midtown +1013240033,1,1324,33,2021,240,EAST 51 STREET,10022,H3,4,PANTA REALTY INC,MANHATTAN,40.756032,-73.969341,106,4,98,1038448,1013240033,Turtle Bay-East Midtown +1013240034,1,1324,34,2021,238,EAST 51 STREET,10022,H3,4,PANTA REALTY INC,MANHATTAN,40.756046,-73.969374,106,4,98,1038449,1013240034,Turtle Bay-East Midtown +1013250050,1,1325,50,2021,206,EAST 52 STREET,10022,H2,4,"HHLP 52ND ASSOCIATES, LLC",MANHATTAN,40.756886,-73.969424,106,4,98,1089027,1013250050,Turtle Bay-East Midtown +1013291001,1,1329,1001,2021,231,EAST 55 STREET,10022,RH,4,MARYMOUNT MANHATTANCOLLEGE,MANHATTAN,40.758615,-73.967658,106,4,108,1038578,1013297501,Turtle Bay-East Midtown +1013340005,1,1334,5,2021,304,EAST 42 STREET,10017,H2,4,TUDOR EQUITY ASSOCIA,MANHATTAN,40.749673,-73.971867,106,4,88,1038651,1013340005,Turtle Bay-East Midtown +1013370148,1,1337,148,2021,302,EAST 45 STREET,10017,HS,4,130 FG LLC,MANHATTAN,40.751583,-73.970429,106,4,90,1038768,1013370148,Turtle Bay-East Midtown +1013371101,1,1337,1101,2021,787,1 AVENUE,10017,RH,4,"RHM-88,",MANHATTAN,40.750213,-73.968846,106,4,90,1038758,1013377502,Turtle Bay-East Midtown +1013480036,1,1348,36,2021,330,EAST 56 STREET,10022,HS,4,METROPOLITAN SUTTON ASSOCIATES LLC,MANHATTAN,40.758265,-73.964925,106,5,108,1039974,1013480036,Turtle Bay-East Midtown +1013610001,1,1361,1,2021,1,MITCHELL PLACE,10017,HS,4,"BEEKMAN TOWERS HOLDINGS, LLC",MANHATTAN,40.753276,-73.966332,106,4,8603,1040076,1013610001,Turtle Bay-East Midtown +1013690042,1,1369,42,2021,410,EAST 58 STREET,10022,HS,4,417 EAST REALTY LIMITED PARTNERSHIP,MANHATTAN,40.758764,-73.96194,106,5,10601,1040554,1013690042,Turtle Bay-East Midtown +1013690107,1,1369,107,2021,415,EAST 57 STREET,10022,HS,4,CORNELL LEASING LIMITED LIABILITY COMPAN Y,MANHATTAN,40.758081,-73.962356,106,5,10601,1040558,1013690107,Turtle Bay-East Midtown +1013730160,1,1373,160,2021,22,NORTH LOOP ROAD,10044,H2,4,UNAVAILABLE OWNER,MANHATTAN,40.756222,-73.955116,108,5,23801,1000000,1013730035,Lenox Hill-Roosevelt Island +1013740065,1,1374,65,2021,4,EAST 60 STREET,10022,H5,4,NEW YORK TELEPHONE CO,MANHATTAN,40.76472,-73.97216,108,4,11401,1040764,1013740065,Upper East Side-Carnegie Hill +1013750001,1,1375,1,2021,790,5 AVENUE,10065,H5,4,THE METROPOLITAN CLUB INC,MANHATTAN,40.764986,-73.972474,108,4,11401,1081206,1013750001,Upper East Side-Carnegie Hill +1013750067,1,1375,67,2021,797,5 AVENUE,10065,H7,4,795 FIFTH AVE CORP,MANHATTAN,40.765313,-73.972236,108,4,11401,1040809,1013750067,Upper East Side-Carnegie Hill +1013760036,1,1376,36,2021,540,PARK AVENUE,10065,H1,4,61 ST PARK AVE CORP,MANHATTAN,40.764308,-73.968796,108,4,11401,1040855,1013760036,Upper East Side-Carnegie Hill +1013760046,1,1376,46,2021,36,EAST 62 STREET,10065,H5,4,THE LINKS,MANHATTAN,40.765326,-73.969727,108,4,11401,1040859,1013760046,Upper East Side-Carnegie Hill +1013760069,1,1376,69,2021,805,5 AVENUE,10065,H5,4,KNICKERBOCKER CLUB INC,MANHATTAN,40.765826,-73.971864,108,4,11401,1040868,1013760069,Upper East Side-Carnegie Hill +1013770033,1,1377,33,2021,560,PARK AVENUE,10065,H5,4,COLONY CLUB INC,MANHATTAN,40.764941,-73.968333,108,4,11401,1040899,1013770033,Upper East Side-Carnegie Hill +1013770047,1,1377,47,2021,28,EAST 63 STREET,10065,H1,4,LOWELL HOTEL PROPERT,MANHATTAN,40.765976,-73.969336,108,4,11401,1040906,1013770047,Upper East Side-Carnegie Hill +1013780130,1,1378,130,2021,41,EAST 63 STREET,10065,H5,4,THE LEASH CP,MANHATTAN,40.765905,-73.96912,108,4,122,1041060,1013780130,Upper East Side-Carnegie Hill +1013790026,1,1379,26,2021,37,EAST 64 STREET,10065,H1,4,PLAZA ATHENEE HOTELCOMPANY LIMITED,MANHATTAN,40.76658,-73.96878,108,4,122,1041080,1013790026,Upper East Side-Carnegie Hill +1013810008,1,1381,8,2021,5,EAST 66 STREET,10065,H5,4,LOTOS CLUB INC,MANHATTAN,40.768491,-73.969429,108,4,122,1041161,1013810008,Upper East Side-Carnegie Hill +1013820012,1,1382,12,2021,15,EAST 67 STREET,10065,H5,4,REGENCY WHIST CLUB INC,MANHATTAN,40.768902,-73.968461,108,4,122,1041205,1013820012,Upper East Side-Carnegie Hill +1013840042,1,1384,42,2021,46,EAST 70 STREET,10021,H5,4,THE EXPLORERS CLUB,MANHATTAN,40.77026,-73.965898,108,4,122,1041311,1013840042,Upper East Side-Carnegie Hill +1013900057,1,1390,57,2021,20,EAST 76 STREET,10021,H1,4,SURREY ASSOCIATES,MANHATTAN,40.774549,-73.964003,108,4,130,1041706,1013900057,Upper East Side-Carnegie Hill +1013910021,1,1391,21,2021,981,MADISON AVENUE,10075,H1,4,HOTEL CARLYLE OWNERS CORP,MANHATTAN,40.774626,-73.96335,108,4,130,1041797,1013910021,Upper East Side-Carnegie Hill +1013920017,1,1392,17,2021,992,MADISON AVENUE,10075,H1,4,MADISON SEVENTY-SEVE,MANHATTAN,40.775101,-73.963025,108,4,142,1041821,1013920017,Upper East Side-Carnegie Hill +1014000060,1,1400,60,2021,124,EAST 66 STREET,10065,H5,4,COSMOPOLITAN CLUB,MANHATTAN,40.76676,-73.965369,108,4,120,1081411,1014000060,Upper East Side-Carnegie Hill +1014040001,1,1404,1,2021,701,PARK AVENUE,10021,H5,4,UNION CLUB OF THE CITY OF,MANHATTAN,40.769068,-73.964725,108,4,120,1042480,1014040001,Upper East Side-Carnegie Hill +1014190010,1,1419,10,2021,215,EAST 64 STREET,10065,HS,4,"DENIHAN OWNERSHIP COMPANY, LLC",MANHATTAN,40.764452,-73.963735,108,4,118,1043868,1014190010,Lenox Hill-Roosevelt Island +1014350020,1,1435,20,2021,345,EAST 60 STREET,10022,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760564,-73.96226,108,5,110,1044201,1014350020,Lenox Hill-Roosevelt Island +1014350021,1,1435,21,2021,347,EAST 60 STREET,10022,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760556,-73.962239,108,5,110,1044202,1014350021,Lenox Hill-Roosevelt Island +1014350022,1,1435,22,2021,349,EAST 60 STREET,10022,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760545,-73.962217,108,5,110,1044203,1014350022,Lenox Hill-Roosevelt Island +1014350023,1,1435,23,2021,1097,1 AVENUE,10065,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760328,-73.961463,108,5,110,1044204,1014350023,Lenox Hill-Roosevelt Island +1014350024,1,1435,24,2021,1099,1 AVENUE,10065,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760391,-73.961416,108,5,110,1044205,1014350024,Lenox Hill-Roosevelt Island +1014350025,1,1435,25,2021,1101,1 AVENUE,10065,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760454,-73.961372,108,5,110,1044206,1014350025,Lenox Hill-Roosevelt Island +1014350026,1,1435,26,2021,1103,1 AVENUE,10065,HS,4,FIRST SIGMA DE LLC,MANHATTAN,40.760518,-73.961325,108,5,110,1044207,1014350026,Lenox Hill-Roosevelt Island +1014640021,1,1464,21,2021,1293,YORK AVENUE,10021,H8,4,CORNELL UNIVERSITY,MANHATTAN,40.765017,-73.955099,108,5,124,1045585,1014640021,Lenox Hill-Roosevelt Island +1014640030,1,1464,30,2021,428,YORK AVENUE,10021,H8,4,CORNELL UNIVERSITY,,,,,,,,, +1014740031,1,1474,31,2021,500,EAST 62 STREET,10065,HB,4,"PLAZA EAST HOTEL, LLC",MANHATTAN,40.760481,-73.958246,108,5,10602,1046251,1014740031,Lenox Hill-Roosevelt Island +1015040020,1,1504,20,2021,43,EAST 92 STREET,10128,HS,4,1295 PROPERTY LLC,MANHATTAN,40.78454,-73.9557,108,4,16001,1047067,1015040020,Upper East Side-Carnegie Hill +1015150045,1,1515,45,2021,164,EAST 87 STREET,10128,H3,4,164 EAST 87TH ST LLC,MANHATTAN,40.779901,-73.954472,108,5,14802,1087120,1015150045,Upper East Side-Carnegie Hill +1015571103,1,1557,1103,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571104,1,1557,1104,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571105,1,1557,1105,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571106,1,1557,1106,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571107,1,1557,1107,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571108,1,1557,1108,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571109,1,1557,1109,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571110,1,1557,1110,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571111,1,1557,1111,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571112,1,1557,1112,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571113,1,1557,1113,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571114,1,1557,1114,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571115,1,1557,1115,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571116,1,1557,1116,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571117,1,1557,1117,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571118,1,1557,1118,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571119,1,1557,1119,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571120,1,1557,1120,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571121,1,1557,1121,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571122,1,1557,1122,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571123,1,1557,1123,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571124,1,1557,1124,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571125,1,1557,1125,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571126,1,1557,1126,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571127,1,1557,1127,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571128,1,1557,1128,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571129,1,1557,1129,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571130,1,1557,1130,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571131,1,1557,1131,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571132,1,1557,1132,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571133,1,1557,1133,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571134,1,1557,1134,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571135,1,1557,1135,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571136,1,1557,1136,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571137,1,1557,1137,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571138,1,1557,1138,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571139,1,1557,1139,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571140,1,1557,1140,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571141,1,1557,1141,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571142,1,1557,1142,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571143,1,1557,1143,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571144,1,1557,1144,2021,301,EAST 94 STREET,10128,RH,4,"MARMARA, INC.",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571145,1,1557,1145,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571146,1,1557,1146,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571147,1,1557,1147,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571148,1,1557,1148,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571149,1,1557,1149,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571150,1,1557,1150,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571151,1,1557,1151,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571152,1,1557,1152,2021,301,EAST 94 STREET,10128,RH,4,"MARMARA, INC.",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571153,1,1557,1153,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571154,1,1557,1154,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571155,1,1557,1155,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571156,1,1557,1156,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571157,1,1557,1157,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571158,1,1557,1158,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571159,1,1557,1159,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571160,1,1557,1160,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571161,1,1557,1161,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571162,1,1557,1162,2021,301,EAST 94 STREET,10128,RH,4,MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571163,1,1557,1163,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571164,1,1557,1164,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571165,1,1557,1165,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571166,1,1557,1166,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571167,1,1557,1167,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571168,1,1557,1168,2021,301,EAST 94 STREET,10128,RH,4,MARMARA INC,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571169,1,1557,1169,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571170,1,1557,1170,2021,301,EAST 94 STREET,10128,RH,4,"MARMARA, INC.",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571171,1,1557,1171,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571172,1,1557,1172,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571173,1,1557,1173,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571174,1,1557,1174,2021,301,EAST 94 STREET,10128,RH,4,"MARMARA, INC.",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571175,1,1557,1175,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571176,1,1557,1176,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571177,1,1557,1177,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571178,1,1557,1178,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571179,1,1557,1179,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571180,1,1557,1180,2021,301,EAST 94 STREET,10128,RH,4,"GAMBARI, DR.IBRAHIM AGBOOLA",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571181,1,1557,1181,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571182,1,1557,1182,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571183,1,1557,1183,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571184,1,1557,1184,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571185,1,1557,1185,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571186,1,1557,1186,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571187,1,1557,1187,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571188,1,1557,1188,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571189,1,1557,1189,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571190,1,1557,1190,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571191,1,1557,1191,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571192,1,1557,1192,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571193,1,1557,1193,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571194,1,1557,1194,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571195,1,1557,1195,2021,301,EAST 94 STREET,10128,RH,4,"PANTOJA, RAFAEL MANUEL",MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571196,1,1557,1196,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571197,1,1557,1197,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571198,1,1557,1198,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571199,1,1557,1199,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571200,1,1557,1200,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571201,1,1557,1201,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571202,1,1557,1202,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571203,1,1557,1203,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571204,1,1557,1204,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571205,1,1557,1205,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571206,1,1557,1206,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571207,1,1557,1207,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571208,1,1557,1208,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571209,1,1557,1209,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015571210,1,1557,1210,2021,301,EAST 94 STREET,10128,RH,4,THE MARMARA INC.,MANHATTAN,40.782799,-73.947678,108,5,15601,1050324,1015577502,Yorkville +1015711006,1,1571,1006,2021,410,EAST 92 STREET,10128,RH,4,"RLJ C NY UPPER EASTSIDE, LLC",MANHATTAN,40.780488,-73.946119,108,5,152,1081307,1015717501,Yorkville +1015770149,1,1577,149,2021,502,EAST 81 STREET,10028,H3,4,WMF 502 EAST 81ST LLC,MANHATTAN,40.772537,-73.949094,108,5,136,1050879,1015770149,Yorkville +1016030039,1,1603,39,2021,50,EAST 98 STREET,10029,H8,4,MSMC RESIDENTIAL REALTY,MANHATTAN,40.788357,-73.952816,111,4,16002,1051470,1016030039,East Harlem South +1016160024,1,1616,24,2021,55,EAST 110 STREET,10029,H8,4,EDWIN GOULD RESIDENCE HOUSING DEVELOPMEN T FUND,MANHATTAN,40.796015,-73.947288,111,8,17402,1087365,1016160024,East Harlem South +1016760011,1,1676,11,2021,325,EAST 104 STREET,10029,H9,4,104TH ST REALTY LLC,MANHATTAN,40.788997,-73.942628,111,8,170,1052712,1016760011,East Harlem South +1017240021,1,1724,21,2021,35,WEST 126 STREET,10027,HR,4,ROYAL ORLEANS HOTEL NY LLC,MANHATTAN,40.807618,-73.943002,110,9,208,1053556,1017240021,Central Harlem North-Polo Grounds +1017270039,1,1727,39,2021,2116,5 AVENUE,10035,H6,4,2114 FIFTH AVENUE LLC,MANHATTAN,40.809406,-73.940089,110,9,208,1087896,1017270039,Central Harlem North-Polo Grounds +1017890050,1,1789,50,2021,2291,3 AVENUE,10035,H9,4,2289 3RD AVE REALTY CORP,MANHATTAN,40.803332,-73.93607,111,8,242,1054680,1017890050,East Harlem North +1018200010,1,1820,10,2021,141,CENTRAL PARK NORTH,10026,HR,4,141 WEST 110TH STREET,MANHATTAN,40.798831,-73.953834,110,9,216,1054919,1018200010,Central Harlem South +1018210061,1,1821,61,2021,1837,ADAM C POWELL BLVD,10026,HR,4,112 ST HOTEL CORP,MANHATTAN,40.800451,-73.954533,110,9,216,1054969,1018210061,Central Harlem South +1018390020,1,1839,20,2021,19,WEST 103 STREET,10025,HS,4,JRAC MANHATTAN REALTY LLC,MANHATTAN,40.796595,-73.962565,107,7,189,1055472,1018390020,Upper West Side +1018410041,1,1841,41,2021,34,WEST 106 STREET,10025,HH,4,36 WEST 106TH STREETJOINT VENTURE,MANHATTAN,40.798436,-73.960985,107,7,189,1055612,1018410041,Upper West Side +1018420032,1,1842,32,2021,465,CENTRAL PARK WEST,10025,HS,4,ERICA LEE CORPORATION,MANHATTAN,40.79846,-73.959736,107,7,193,1055659,1018420032,Morningside Heights +1018451403,1,1845,1403,2021,352,CATHEDRAL PARKWAY,10025,RH,4,BARNARD COLLEGE,MANHATTAN,40.801263,-73.959907,107,7,193,1055748,1018457502,Morningside Heights +1018451404,1,1845,1404,2021,352,CATHEDRAL PARKWAY,10025,RH,4,BARNARD COLLEGE,MANHATTAN,40.801263,-73.959907,107,7,193,1055748,1018457502,Morningside Heights +1018451405,1,1845,1405,2021,352,CATHEDRAL PARKWAY,10025,RH,4,BARNARD COLLEGE,MANHATTAN,40.801263,-73.959907,107,7,193,1055748,1018457502,Morningside Heights +1018550050,1,1855,50,2021,881,AMSTERDAM AVENUE,10025,HH,4,AMERICAN YOUTH HOSTEL INC,MANHATTAN,40.798597,-73.967042,107,7,189,1055912,1018550050,Upper West Side +1018680059,1,1868,59,2021,256,WEST 97 STREET,10025,H3,4,TERRILEE 97TH STREET,MANHATTAN,40.795574,-73.971898,107,6,183,1056065,1018680059,Upper West Side +1018700052,1,1870,52,2021,2609,BROADWAY,10025,HS,4,ESPLANADE 99 LLC,MANHATTAN,40.796257,-73.970626,107,6,187,1056410,1018700052,Upper West Side +1018710042,1,1871,42,2021,2632,BROADWAY,10025,HR,4,MIDWAY HOTEL INC,MANHATTAN,40.797011,-73.970055,107,7,187,1056464,1018710042,Upper West Side +1018720054,1,1872,54,2021,2651,BROADWAY,10025,H3,4,HELMS REALTY CORP,MANHATTAN,40.797588,-73.969654,107,6,187,1056487,1018720054,Upper West Side +1018730063,1,1873,63,2021,850,WEST END AVENUE,10025,HH,4,850 WEST END CORP,MANHATTAN,40.798793,-73.970614,107,6,187,1056525,1018730063,Upper West Side +1018740043,1,1874,43,2021,216,WEST 103 STREET,10025,H3,4,2686-2690 BROADWAY LLC,MANHATTAN,40.798896,-73.968064,107,7,191,1056545,1018740043,Upper West Side +1018740044,1,1874,44,2021,2688,BROADWAY,10025,H3,4,2686-2690 BROADWAY LLC,MANHATTAN,40.798886,-73.968689,107,7,191,1056546,1018740044,Upper West Side +1018740045,1,1874,45,2021,2686,BROADWAY,10025,H3,4,2686-2690 BROADWAY LLC,MANHATTAN,40.798817,-73.96874,107,7,191,1056547,1018740045,Upper West Side +1018751002,1,1875,1002,2021,2700,BROADWAY,10025,RH,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.798924,-73.967851,107,7,191,1056563,1018757501,Upper West Side +1018770063,1,1877,63,2021,2749,BROADWAY,10025,HR,4,"THE WESTBOURNE HOUSING DEVELOPMENT FUND COMPANY,",MANHATTAN,40.800933,-73.967933,107,6,191,1056630,1018770063,Upper West Side +1018790015,1,1879,15,2021,235,WEST 107 STREET,10025,HS,4,"235 HOTEL, LLC",MANHATTAN,40.801811,-73.966846,107,7,195,1056651,1018790015,Morningside Heights +1018810054,1,1881,54,2021,548,CATHEDRAL PARKWAY,10025,H8,4,COLUMBIA UNIV IN NYCTR,MANHATTAN,40.803798,-73.965848,107,7,195,1056719,1018810056,Morningside Heights +1018830059,1,1883,59,2021,2874,BROADWAY,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.805266,-73.965887,109,7,199,1056988,1018830059,Morningside Heights +1018840061,1,1884,61,2021,2890,BROADWAY,10025,H8,4,THE TRUSTEES OF COLUMBIA UNIVERSITY IN T HE,MANHATTAN,40.80581,-73.965493,109,7,199,1057014,1018840061,Morningside Heights +1018850061,1,1885,61,2021,2910,BROADWAY,10025,H8,4,COLUMBIA UNIV CITY NY TR,MANHATTAN,40.806485,-73.965001,109,7,199,1057049,1018850061,Morningside Heights +1018851001,1,1885,1001,2021,2900,BROADWAY,10025,RH,4,UNAVAILABLE OWNER,MANHATTAN,40.806172,-73.965229,109,7,199,1057018,1018857501,Morningside Heights +1018870031,1,1887,31,2021,316,WEST 97 STREET,10025,HR,4,"NEW SYNDICATE, LLC",MANHATTAN,40.796087,-73.973115,107,6,183,1057063,1018870031,Upper West Side +1018940011,1,1894,11,2021,2841,BROADWAY,10025,H6,4,ATLAS V 110 LLC,MANHATTAN,40.804224,-73.966675,109,7,199,1057320,1018940011,Morningside Heights +1018940023,1,1894,23,2021,610,WEST 111 STREET,10025,HR,4,CALIFORNIA SUITES INC,MANHATTAN,40.805195,-73.967126,109,7,199,1057322,1018940023,Morningside Heights +1018950008,1,1895,8,2021,611,WEST 112 STREET,10025,H6,4,611 W 112 ST REALTY CORP,MANHATTAN,40.80564,-73.966186,109,7,199,1057334,1018950008,Morningside Heights +1018950065,1,1895,65,2021,610,WEST 114 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.807028,-73.965644,109,7,199,1057353,1018950065,Morningside Heights +1018950066,1,1895,66,2021,614,WEST 114 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.80707,-73.965738,109,7,199,1057354,1018950066,Morningside Heights +1018950067,1,1895,67,2021,616,WEST 114 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.807136,-73.965897,109,7,199,1057355,1018950067,Morningside Heights +1018950129,1,1895,129,2021,614,WEST 113 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.806452,-73.966222,109,7,199,1057361,1018950129,Morningside Heights +1018950163,1,1895,163,2021,604,WEST 114 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.806979,-73.965528,109,7,199,1057362,1018950163,Morningside Heights +1018950165,1,1895,165,2021,612,WEST 114 STREET,10025,H8,4,TRUSTEES OF COLUMBIA UNIVERSITY,MANHATTAN,40.807045,-73.96568,109,7,199,1057364,1018950165,Morningside Heights +1018960047,1,1896,47,2021,431,RIVERSIDE DRIVE,10025,H8,4,UNAVAILABLE OWNER,MANHATTAN,40.808423,-73.96629,109,7,205,1057373,1018960047,Morningside Heights +1018960055,1,1896,55,2021,627,WEST 115 STREET,10025,H8,4,COLUMBIA UNIV CITY NY TR,MANHATTAN,40.807874,-73.965654,109,7,205,1057377,1018960055,Morningside Heights +1018960057,1,1896,57,2021,609,WEST 115 STREET,10025,H8,4,COLUMBIA UNIV IN NYCTR,MANHATTAN,40.807739,-73.965329,109,7,205,1075443,1018960057,Morningside Heights +1018960080,1,1896,80,2021,616,WEST 116 STREET,10027,H8,4,BARNARD COLLEGE,MANHATTAN,40.808524,-73.965083,109,7,205,1057384,1018960080,Morningside Heights +1019120037,1,1912,37,2021,102,WEST 128 STREET,10027,HH,4,NBX ACQUISITION LLC,MANHATTAN,40.809894,-73.944582,110,9,224,1057914,1019120037,Central Harlem North-Polo Grounds +1019230038,1,1923,38,2021,150,ST NICHOLAS AVENUE,10026,HR,4,HARLEM URBAN DEV CORP,MANHATTAN,40.804611,-73.952732,110,9,218,1058396,1019230038,Central Harlem South +1019291347,1,1929,1347,2021,2300,8 AVENUE,10027,RH,4,CORE NYC LLC,MANHATTAN,40.809197,-73.951865,110,9,222,1090411,1019297504,Central Harlem South +1019530041,1,1953,41,2021,312,WEST 127 STREET,10027,HR,4,CUCS HOUSING DEVELOPMENT FUND CORPORATIO N IV,MANHATTAN,40.811642,-73.950642,110,9,215,1076676,1019530041,Central Harlem North-Polo Grounds +1019570005,1,1957,5,2021,401,WEST 130 STREET,10027,H8,4,DORMITORY AUTHORITY,MANHATTAN,40.814327,-73.951171,109,9,21703,1087599,1019570005,Manhattanville +1019630030,1,1963,30,2021,1235,AMSTERDAM AVENUE,10027,H8,4,BARNARD COLLEGE,MANHATTAN,40.809801,-73.958862,109,7,20701,1059521,1019630030,Morningside Heights +1019900035,1,1990,35,2021,49,CLAREMONT AVENUE,10027,H8,4,BARNARD COLLEGE,MANHATTAN,40.810085,-73.963699,109,7,205,1059825,1019900035,Morningside Heights +1019940057,1,1994,57,2021,500,RIVERSIDE DRIVE,10027,H8,4,INTERNATIONAL HOUSE,MANHATTAN,40.814556,-73.962475,109,7,211,1059870,1019940057,Morningside Heights +1020060007,1,2006,7,2021,175,WEST 137 STREET,10030,HR,4,"TEAMS HOUSING DEVELOPMENT FUND COMPANY, INC",MANHATTAN,40.816205,-73.941795,110,9,228,1081808,1020060007,Central Harlem North-Polo Grounds +1020380012,1,2038,12,2021,248,WEST 153 STREET,10039,H4,4,OCONNELL J,MANHATTAN,40.827294,-73.936918,110,9,236,1060611,1020380012,Central Harlem North-Polo Grounds +1020660033,1,2066,33,2021,828,ST NICHOLAS AVENUE,10031,HR,4,MJK 30 LLC,MANHATTAN,40.828403,-73.942337,109,9,23501,1061594,1020660033,Hamilton Heights +1020680067,1,2068,67,2021,889,ST NICHOLAS AVENUE,10032,HR,4,ST NICHOLAS HOTEL CO,MANHATTAN,40.830574,-73.941508,109,7,23501,1061696,1020680067,Hamilton Heights +1020770020,1,2077,20,2021,515,WEST 145 STREET,10031,HR,4,CROSSTOWN HOTEL INC,MANHATTAN,40.82553,-73.948283,109,7,229,1061934,1020770020,Hamilton Heights +1020770023,1,2077,23,2021,511,WEST 145 STREET,10031,HR,4,"HAMILTON HEIGHTS ENTERPRISE,",MANHATTAN,40.825497,-73.948208,109,7,229,1061936,1020770023,Hamilton Heights +1020890029,1,2089,29,2021,601,WEST 142 STREET,10031,H6,4,601-142 REALTY LLC,MANHATTAN,40.824672,-73.952204,109,7,229,1062345,1020890029,Hamilton Heights +1021230086,1,2123,86,2021,514,WEST 168 STREET,10032,H3,4,"514 WEST 168TH STREET, LLC",MANHATTAN,40.840121,-73.937531,112,10,251,1089931,1021230086,Washington Heights South +1021490076,1,2149,76,2021,2525,AMSTERDAM AVENUE,10033,H8,4,YESHIVA UNIVERSITY,MANHATTAN,40.850735,-73.929016,112,10,267,1063582,1021490076,Washington Heights North +1021550026,1,2155,26,2021,507,WEST 181 STREET,10033,H3,4,505 WASH LLC,MANHATTAN,40.848296,-73.931274,112,10,269,1063701,1021550026,Washington Heights North +2022610005,2,2261,5,2021,500,EAST 134 STREET,10454,H9,4,500 EAST 134TH OWNERS LLC,BRONX,40.805171,-73.921461,201,8,19,2092081,2022610005,Mott Haven-Port Morris +2022930046,2,2293,46,2021,436,EAST 149 STREET,10455,HB,4,GS 149 LLC,BRONX,40.815457,-73.916218,201,8,43,2097024,2022930046,Mott Haven-Port Morris +2022930051,2,2293,51,2021,444,EAST 149 STREET,10455,H3,4,444 EAST 149 STREET LLC,BRONX,40.815405,-73.916091,201,8,43,2000537,2022930051,Mott Haven-Port Morris +2023200011,2,2320,11,2021,2477,3 AVENUE,10451,H3,4,JITEN LLC,BRONX,40.809762,-73.928991,201,8,51,2128573,2023200011,Mott Haven-Port Morris +2023220067,2,2322,67,2021,164,CANAL STREET WEST,10451,H3,4,VERTU HOSPITALITY LLC,BRONX,40.811697,-73.929769,201,8,51,2000000,2023220067,Mott Haven-Port Morris +2023400014,2,2340,14,2021,2568,PARK AVENUE,10451,H3,4,2568 PARK BRONX LLC,BRONX,40.813187,-73.928713,201,8,51,2000972,2023400014,Mott Haven-Port Morris +2023410040,2,2341,40,2021,346,GRAND CONCOURSE,10451,H3,4,346 GRAND A LLC,BRONX,40.815325,-73.928674,201,8,51,2001004,2023410040,Mott Haven-Port Morris +2023510021,2,2351,21,2021,500,EXTERIOR STREET,10451,H2,4,UNAVAILABLE OWNER,BRONX,40.818595,-73.930409,201,8,63,2129112,2023510021,West Concourse +2023530020,2,2353,20,2021,640,GERARD AVENUE,10451,H9,4,GERARD HOTEL LLC,BRONX,40.821481,-73.928263,204,8,63,,,West Concourse +2023690045,2,2369,45,2021,511,EAST 164 STREET,10456,H9,4,MBX ACQUISITION HOLDINGS II LLC,BRONX,40.825612,-73.90913,203,17,185,2001246,2023690045,Morrisania-Melrose +2023690047,2,2369,47,2021,507,EAST 164 STREET,10456,H9,4,MBX ACQUISITION HOLDINGS II LLC,BRONX,40.825634,-73.909199,203,17,185,2120128,2023690047,Morrisania-Melrose +2023720013,2,2372,13,2021,1190,WASHINGTON AVENUE,10456,H9,4,1190 WASHINGTON AVENUE LLC,BRONX,40.830686,-73.907222,203,16,145,2000000,2023720013,Claremont-Bathgate +2023750021,2,2375,21,2021,681,ELTON AVENUE,10455,H9,4,AMG ELTON LLC,BRONX,40.818813,-73.914714,201,17,67,2117147,2023750021,Melrose South-Mott Haven North +2023830039,2,2383,39,2021,425,EAST 161 STREET,10451,H9,4,MELROSE COMMONS SUPPORTIVE HOUSING DEVEL OPMENT,BRONX,40.82398,-73.9131,203,17,141,2129267,2023830039,Morrisania-Melrose +2023910045,2,2391,45,2021,997,BROOK AVENUE,10451,H4,4,BROOK HOSPITALITY LLC,BRONX,40.826817,-73.911773,203,17,143,2120131,2023910045,East Concourse-Concourse Village +2024590053,2,2459,53,2021,859,CONCOURSE VILLAGE W,10451,H3,4,"857-859 HOTEL, LLC",BRONX,40.825934,-73.921523,204,16,5902,2000000,2024590053,East Concourse-Concourse Village +2025060044,2,2506,44,2021,1263,EDWARD L GRANT HWY,10452,H3,4,1263 LLC,BRONX,40.83746,-73.922283,204,16,199,2003082,2025060044,Highbridge +2025230053,2,2523,53,2021,926,SEDGWICK AVENUE,10452,H3,4,SITARAM LLC,BRONX,40.832084,-73.931663,204,8,189,2124365,2025230053,Highbridge +2025300009,2,2530,9,2021,1260,SEDGWICK AVENUE,10452,H4,4,DEEGAN HOTEL CORP,BRONX,40.840052,-73.928583,204,16,201,2003521,2025300009,Highbridge +2025300032,2,2530,32,2021,1300,SEDGWICK AVENUE,10452,H4,4,SEDGWICK HOTEL CORP.,BRONX,40.840513,-73.92842,204,16,201,2003523,2025300032,Highbridge +2025460011,2,2546,11,2021,154,BRUCKNER BOULEVARD,10454,H3,4,154 BRUCKNER BLVD LLC,BRONX,40.803366,-73.919159,201,8,19,2129202,2025460011,Mott Haven-Port Morris +2025680068,2,2568,68,2021,711,EAST 140 STREET,10454,H9,4,JACKSON AVENUE DEVELOPMENT LLC,BRONX,40.806358,-73.912339,201,8,2702,2003820,2025680068,Mott Haven-Port Morris +2026760075,2,2676,75,2021,771,PROSPECT AVENUE,10455,H9,4,UNITED BRONX PARENTS INC.,BRONX,40.817853,-73.902388,201,17,79,2128731,2026760075,Melrose South-Mott Haven North +2026780063,2,2678,63,2021,963,PROSPECT AVENUE,10459,HR,4,963 PROSPECT REALTY CORP,BRONX,40.822509,-73.900456,203,17,12901,2005027,2026780063,Longwood +2026900123,2,2690,123,2021,980,PROSPECT AVENUE,10459,H6,4,"980 PROSPECT, LLC",BRONX,40.823568,-73.899992,202,17,12901,2005213,2026900123,Longwood +2027280034,2,2728,34,2021,1145,SOUTHERN BOULEVARD,10459,H4,4,SOUTHERN HOSPITALITY LLC,BRONX,40.827434,-73.891914,203,17,125,2120357,2027280034,Morrisania-Melrose +2027450002,2,2745,2,2021,1122,SOUTHERN BOULEVARD,10459,H4,4,SOUTHERN BLVD HOTEL LLC,BRONX,40.827088,-73.891896,203,17,125,2128906,2027450002,Morrisania-Melrose +2029090026,2,2909,26,2021,1893,WASHINGTON AVENUE,10457,H3,4,TREMONT HOTEL LLC,BRONX,40.846598,-73.898312,206,15,395,2000000,2029090026,Claremont-Bathgate +2029090028,2,2909,28,2021,1891,WASHINGTON AVENUE,10457,H3,4,TREMONT HOTEL LLC,BRONX,40.846567,-73.898327,206,15,395,2000000,2029090028,Claremont-Bathgate +2029090029,2,2909,29,2021,1889,WASHINGTON AVENUE,10457,H3,4,TREMONT HOTEL LLC,BRONX,40.846537,-73.898345,206,15,395,2000000,2029090029,Claremont-Bathgate +2029230001,2,2923,1,2021,1810,BATHGATE AVENUE,10457,H9,4,"CROSS BX RESIDENCE,INC",BRONX,40.844663,-73.898243,206,15,395,2009586,2029230001,Claremont-Bathgate +2030160042,2,3016,42,2021,1962,BOSTON ROAD,10460,H4,4,SHRI SAINATH,BRONX,40.839933,-73.880863,206,17,359,2000000,2030160042,East Tremont +2030170065,2,3017,65,2021,1440,SHERIDAN EXPRESSWAY,10459,H4,4,"SHRI SAI SHAKTI, LLC",BRONX,40.831141,-73.884839,209,17,157,2010976,2030170065,Crotona Park East +2030270010,2,3027,10,2021,1930,WEBSTER AVENUE,10457,HR,4,WEBSTER TREMONT EQUITIES CORP,BRONX,40.84843,-73.900533,206,15,379,2011081,2030270010,Mount Hope +2030270014,2,3027,14,2021,1938,WEBSTER AVENUE,10457,HR,4,1938 MANAGEMENT LLC,BRONX,40.848729,-73.900359,206,15,379,2011083,2030270014,Mount Hope +2030280013,2,3028,13,2021,1996,WEBSTER AVENUE,10457,H9,4,RISING SH LLC,BRONX,40.849967,-73.899601,206,15,379,2128520,2030280013,Mount Hope +2030470063,2,3047,63,2021,4387,3 AVENUE,10457,H3,4,PRIDE DEVELOPERS LLC,BRONX,40.850969,-73.893845,206,15,37504,2128562,2030470063,East Tremont +2030510031,2,3051,31,2021,548,EAST 183 STREET,10458,H6,4,EH AND HD 183RD REALTY,BRONX,40.854186,-73.891042,206,15,385,2011589,2030510031,Claremont-Bathgate +2030520030,2,3052,30,2021,2330,BATHGATE AVENUE,10458,H4,4,FLATRON REALTY LLC,BRONX,40.85533,-73.891116,206,15,385,2011608,2030520030,Claremont-Bathgate +2030530028,2,3053,28,2021,510,EAST 185 STREET,10458,H9,4,"RATAN REALTY LLC, A NJ LIMITED LIABILITY CORP",BRONX,40.855978,-73.891296,206,15,385,2011623,2030530028,Claremont-Bathgate +2031150025,2,3115,25,2021,2500,CROTONA AVENUE,10458,H4,4,M.H.J. MOTEL CORP.,BRONX,40.85696,-73.88208,206,15,393,2013068,2031150025,Belmont +2031580005,2,3158,5,2021,2240,GRAND CONCOURSE,10457,HR,4,CONCOURSE RESIDENCE CORP.,BRONX,40.856346,-73.900586,205,15,38301,2013719,2031580005,Fordham South +2031640023,2,3164,23,2021,2331,GRAND CONCOURSE,10468,H6,4,CONCOURSE RES HOTEL,BRONX,40.858275,-73.899466,205,14,23703,2013779,2031640023,Fordham South +2031650055,2,3165,55,2021,2391,GRAND CONCOURSE,10468,H9,4,PARADISE RESIDENCE INC,BRONX,40.859855,-73.898556,205,14,23703,2094668,2031650055,Fordham South +2032361001,2,3236,1001,2021,233,LANDING ROAD,10468,RH,4,BRC LANDING ROAD I HOUSING DEVELOPMENT F UND CORP.,BRONX,40.862407,-73.911097,207,14,269,2129308,2032367501,Kingsbridge Heights +2032620041,2,3262,41,2021,3600,BAILEY AVENUE,10463,H4,4,LEONARD J PLOTCH,BRONX,40.882801,-73.899064,208,11,279,2015985,2032620041,Van Cortlandt Village +2033300048,2,3330,48,2021,3070,WEBSTER AVENUE,10467,H3,4,MCSAM BRONX LLC,BRONX,40.870391,-73.878155,207,11,425,2017872,2033300048,Norwood +2033570410,2,3357,410,2021,3466,WEBSTER AVENUE,10467,H9,4,3466 WEBSTER LLC,BRONX,40.878187,-73.871696,207,11,42901,2000000,2033570410,Norwood +2033950060,2,3395,60,2021,4225,WEBSTER AVENUE,10470,H4,4,ELY-BRU REALTY CORP.,BRONX,40.896369,-73.862941,212,11,45101,2090497,2033950060,Woodlawn-Wakefield +2037000023,2,3700,23,2021,2338,BRUCKNER BOULEVARD,10473,H3,4,WHITESTONE HOSPITALITY LLC,BRONX,40.827513,-73.845503,209,18,98,2129091,2037000026,Westchester-Unionport +2037000026,2,3700,26,2021,2342,BRUCKNER BOULEVARD,10473,H3,4,WHITESTONE HOSPITALITY LLC,BRONX,40.827529,-73.845409,209,18,98,2000000,2037000026,Westchester-Unionport +2037390033,2,3739,33,2021,1162,WHEELER AVENUE,10472,H3,4,1162 WHEELER LLC,BRONX,40.827455,-73.879852,209,17,5002,2023831,2037390033,Soundview-Bruckner +2037390034,2,3739,34,2021,1164,WHEELER AVENUE,10472,H3,4,WHEELER HOTEL LLC,BRONX,40.82749,-73.879859,209,17,5002,2129275,2037390034,Soundview-Bruckner +2037960033,2,3796,33,2021,1275,PUGSLEY AVENUE,10462,H3,4,PRIDE LODGING LLC,BRONX,40.83313,-73.857643,209,18,92,2025974,2037960033,Westchester-Unionport +2041530001,2,4153,1,2021,1620,HUTCHINSON RVR PY E,10461,H4,4,LEONARD J PLOTCH,BRONX,40.844043,-73.836668,210,13,26601,2045759,2041530001,Pelham Bay-Country Club-City Island +2045050015,2,4505,15,2021,2410,GRACE AVENUE,10469,H4,4,MIRA HOTEL INC,BRONX,,,,,,2053522,2045050015, +2045560037,2,4556,37,2021,2950,HONE AVENUE,10469,H4,4,MARIANIKOLENA RLTY CORP,BRONX,40.868559,-73.857629,211,12,344,2090535,2045560037,Allerton-Pelham Gardens +2046510091,2,4651,91,2021,3701,WHITE PLAINS ROAD,10467,H4,4,"JAI MATA DI, LTD.",BRONX,40.881554,-73.86394,212,12,392,2057536,2046510091,Williamsbridge-Olinville +2047050011,2,4705,11,2021,1119,EAST GUN HILL ROAD,10469,H4,4,"SHRI SIDHDHY VANAYAK,INC",BRONX,40.873658,-73.854725,212,12,368,2088583,2047050011,Williamsbridge-Olinville +2047320012,2,4732,12,2021,3316,BOSTON ROAD,10469,H4,4,HILLGUN REALTY CORP.,BRONX,40.873727,-73.853065,212,12,364,2000000,2047320012,Eastchester-Edenwald-Baychester +2047330006,2,4733,6,2021,3362,BOSTON ROAD,10469,H3,4,BOSTON HOTEL LLC,BRONX,40.874796,-73.851667,212,12,364,2095085,2047330006,Eastchester-Edenwald-Baychester +2049180006,2,4918,6,2021,3801,BOSTON ROAD,10466,H4,4,OASIS HOSPITALITY INC,BRONX,40.881324,-73.838609,212,12,484,2066031,2049180006,Eastchester-Edenwald-Baychester +2049220101,2,4922,101,2021,2101,NEEDHAM AVENUE,10466,H4,4,R M J MOTEL CORP,BRONX,40.883661,-73.83541,212,12,484,2066090,2049220101,Eastchester-Edenwald-Baychester +2050660003,2,5066,3,2021,4400,BRONX BOULEVARD,10470,H4,4,4400 BXNY LLC,BRONX,40.900073,-73.857587,212,11,414,2070568,2050660003,Woodlawn-Wakefield +2050870040,2,5087,40,2021,4600,WHITE PLAINS ROAD,10470,H3,4,4600 HOLDINGS LLC,BRONX,40.902256,-73.85136,212,11,434,2123412,2050870040,Woodlawn-Wakefield +2051020027,2,5102,27,2021,4747,BRONX BOULEVARD,10470,H4,4,4747 BRONX BOULEVARD REALTY LLC,BRONX,40.905815,-73.853034,212,11,414,2071640,2051020027,Woodlawn-Wakefield +2051070008,2,5107,8,2021,4761,WHITE PLAINS ROAD,10470,H6,4,4761 WHITE PLAINS LLC,BRONX,40.905135,-73.849559,212,11,414,2071761,2051070008,Woodlawn-Wakefield +2051410299,2,5141,299,2021,1000,BAYCHESTER AVENUE,10475,H4,4,JAV INC.,BRONX,40.879901,-73.831806,210,12,46201,2121317,2051410299,Co-op City +2052700048,2,5270,48,2021,2221,NEW ENGLAND THRUWAY,10475,H4,4,THRU-WAY CAR WASH LTD,BRONX,40.882406,-73.829464,212,12,46202,2072503,2052700048,Co-op City +2052760001,2,5276,1,2021,2291,NEW ENGLAND THRUWAY,10475,H4,4,CONNOR LAND CP,BRONX,40.883969,-73.826451,212,12,46202,2072556,2052760001,Co-op City +2056100087,2,5610,87,2021,555,HUTCHINSON RVR PKWY,10465,H4,4,CAPRI WHITESTONE LLC,BRONX,40.816966,-73.836828,210,13,90,2081724,2056100087,Soundview-Castle Hill-Clason Point-Harding Park +2058411968,2,5841,1968,2021,6389,BROADWAY,10471,H4,4,ATL VAN CORTLANDT LLC,BRONX,40.90199,-73.896672,208,11,345,2084649,2058411968,North Riverdale-Fieldston-Riverdale +2058411978,2,5841,1978,2021,6393,BROADWAY,10471,H4,4,ATL VAN CORTLANDT LLC,BRONX,40.902319,-73.896592,208,11,345,2084656,2058411978,North Riverdale-Fieldston-Riverdale +3000870009,3,87,9,2021,90,SANDS STREET,11201,H8,4,90 SANDS HOUSING DEVELOPMENT FUND CORPOR ATION,BROOKLYN,40.70007,-73.987219,302,33,13,3000179,3000870009,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001201202,3,120,1202,2021,85,FLATBUSH AVENUE EXTE,11201,RH,4,85 FLATBUSH RHO HOTEL LLC,BROOKLYN,40.685876,-73.97877,302,35,35,,,Fort Greene +3001310025,3,131,25,2021,101,TECH PLACE,11201,H8,4,NEW YORK UNIVERSITY,BROOKLYN,40.69494,-73.986387,302,33,13,3000244,3001310025,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001330013,3,133,13,2021,125,FLATBUSH AVENUE EXT,11201,H3,4,"BROOKLYN LW HOTEL ASSOCIATES, L.P.",BROOKLYN,40.695357,-73.984176,302,35,15,3000249,3001330013,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001330015,3,133,15,2021,156,TILLARY STREET,11201,H2,4,"BROOKLYN LW HOTEL ASSOCIATES, L.P.",BROOKLYN,40.695999,-73.983801,302,35,15,3000250,3001330015,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001400160,3,140,160,2021,339,ADAMS STREET,11201,H2,4,BROOKLYN RENNAISSANCE HOTEL III LLC,BROOKLYN,40.693499,-73.988911,302,33,11,3000000,3001400160,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001401104,3,140,1104,2021,333,ADAMS STREET,11201,RH,4,BROOKLYN RENAISSANCE GARAGE,BROOKLYN,40.693598,-73.988904,302,33,11,3391417,3001400160,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001450026,3,145,26,2021,216,DUFFIELD STREET,11201,H2,4,A&J LEE 216 DUFFIELD LLC,BROOKLYN,40.691599,-73.984379,302,33,15,3396736,3001450026,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001450032,3,145,32,2021,222,DUFFIELD STREET,11201,H1,4,AINAHS HOLDINGS LLC,BROOKLYN,40.691454,-73.984386,302,33,15,3424452,3001450032,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001460014,3,146,14,2021,229,DUFFIELD STREET,11201,H2,4,JLAM DUFFIELD III LLC,BROOKLYN,40.691248,-73.984375,302,33,15,3421373,3001460014,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001591002,3,159,1002,2021,486,FULTON STREET,11201,RH,4,"HSRE - 490 FULTON, LLC",BROOKLYN,40.689881,-73.983431,302,33,37,3000454,3001597501,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001610061,3,161,61,2021,291,LIVINGSTON STREET,11217,H3,4,HELLO LIVINGSTON EXTENDED LLC,BROOKLYN,40.688209,-73.98205,302,33,37,3000479,3001610061,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001660040,3,166,40,2021,40,NEVINS STREET,11217,H2,4,46 NEVINS STREET ASSOCIATES LLC,BROOKLYN,40.687589,-73.981654,302,33,37,3000000,3001660040,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001701001,3,170,1001,2021,140,SCHERMERHORN STREET,11201,RH,4,140 SCHERMERHORN STREET PROPERTY OWNER L LC,BROOKLYN,40.689799,-73.988144,302,33,43,3403492,3001707501,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001720005,3,172,5,2021,61,BOND STREET,11217,H2,4,BOND STREET OWNER LLC,BROOKLYN,40.687864,-73.984181,302,33,41,3426306,3001720005,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001720024,3,172,24,2021,300,SCHERMERHORN STREET,11217,H2,4,"MEHTA FAMILY II, LLC",BROOKLYN,40.687583,-73.98249,302,33,41,3420391,3001720024,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001761002,3,176,1002,2021,85,SMITH STREET,11201,RH,4,"HHLP SMITH STREET ASSOCIATES, LLC",BROOKLYN,40.688817,-73.989017,302,33,43,3395986,3001767501,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001820012,3,182,12,2021,316,ATLANTIC AVENUE,11201,H8,4,316-318 ATLANTIC LLC,BROOKLYN,40.688221,-73.988173,302,33,43,3000839,3001820012,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3001990010,3,199,10,2021,60,FURMAN STREET,11201,H1,4,BROOKLYN BRIDGE PARK DEVELOPMENT CORPORA TION,BROOKLYN,40.701586,-73.995528,302,33,1,3401675,3001990010,Brooklyn Heights-Cobble Hill +3002080101,3,208,101,2021,128,COLUMBIA HEIGHTS,11201,H8,4,EASTERN DIVISION LLC,BROOKLYN,40.69931,-73.995867,302,33,1,3001481,3002080101,Brooklyn Heights-Cobble Hill +3002240005,3,224,5,2021,107,COLUMBIA HEIGHTS,11201,H8,4,CLIPPER 107 CH LLC,BROOKLYN,40.699363,-73.99582,302,33,1,3001656,3002240005,Brooklyn Heights-Cobble Hill +3002300001,3,230,1,2021,79,WILLOW STREET,11201,H8,4,"21 CLARK STREET PROPERTY OWNER, LLC",BROOKLYN,40.698674,-73.995182,302,33,301,3001717,3002300001,Brooklyn Heights-Cobble Hill +3002310001,3,231,1,2021,51,CLARK STREET,11201,H8,4,ST GEORGE HOTEL ASSOCIATES,BROOKLYN,40.697749,-73.994053,302,33,501,3395709,3002310001,Brooklyn Heights-Cobble Hill +3002480015,3,248,15,2021,98,MONTAGUE STREET,11201,H9,4,98 MONTAGUE LLC,BROOKLYN,40.695059,-73.995301,302,33,501,3002054,3002480015,Brooklyn Heights-Cobble Hill +3003990045,3,399,45,2021,483,BALTIC STREET,11217,H3,4,BALTIC HOSPITALITY LLC,BROOKLYN,40.682575,-73.985975,306,33,71,3389369,3003990047,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3004060067,3,406,67,2021,279,BUTLER STREET,11217,H3,4,BUTLER HOTEL PROPERTY LLC,BROOKLYN,40.681323,-73.984825,306,33,127,3006469,3004060067,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3004130007,3,413,7,2021,181,3 AVENUE,11217,H3,4,FREUD THIRD AVENUE PROPERTIES LLC,BROOKLYN,40.680535,-73.983931,306,33,127,3414663,3004130007,DUMBO-Vinegar Hill-Downtown Brooklyn-Boerum Hill +3004200052,3,420,52,2021,611,DEGRAW STREET,11217,H3,4,EXPERT HOSPITALITY LLC,BROOKLYN,40.679064,-73.983156,306,33,119,3006808,3004200052,Park Slope-Gowanus +3004340016,3,434,16,2021,625,UNION STREET,11215,H3,4,UNION HOTEL PROPERTY LLC,BROOKLYN,40.677963,-73.984436,306,39,119,3395585,3004340016,Park Slope-Gowanus +3004340049,3,434,49,2021,647,UNION STREET,11215,H3,4,GIY OWNER LLC,BROOKLYN,40.677733,-73.983848,306,39,119,3414671,3004340049,Park Slope-Gowanus +3004410001,3,441,1,2021,267,3 AVENUE,11215,H4,4,"PRIOLO, PETER",BROOKLYN,40.677851,-73.985752,306,39,119,3414125,3004410001,Park Slope-Gowanus +3004410042,3,441,42,2021,561,PRESIDENT STREET,11215,HS,4,"PRESIDENT SAI II , LLC",BROOKLYN,40.677184,-73.984487,306,39,119,3378226,3004410042,Park Slope-Gowanus +3005040020,3,504,20,2021,140,HAMILTON AVENUE,11231,H4,4,RAMESHWAR LLC DBA BROOKLYN MOTOR INN,BROOKLYN,40.681854,-74.005668,306,38,59,3395622,3005040020,Carroll Gardens-Columbia Street-Red Hook +3005120025,3,512,25,2021,17,SEABRING STREET,11231,H3,4,358 COLUMBIA REALTY CORP,BROOKLYN,40.680163,-74.005834,306,38,59,3396945,3005120025,Carroll Gardens-Columbia Street-Red Hook +3006040001,3,604,1,2021,419,VAN BRUNT STREET,11231,H3,4,BEARD STREET ACQUISITION LLC,BROOKLYN,40.675276,-74.015322,306,38,53,3000000,3006040001,Carroll Gardens-Columbia Street-Red Hook +3006040005,3,604,5,2021,411,VAN BRUNT STREET,11231,H8,4,411 VAN BRUNT LLC,BROOKLYN,40.675488,-74.015073,306,38,53,3000000,3006040005,Carroll Gardens-Columbia Street-Red Hook +3006390025,3,639,25,2021,150,20 STREET,11232,H3,4,PROSPECT BROTHERS REALTY LLC,BROOKLYN,40.663801,-73.996006,307,38,145,3009234,3006390025,Sunset Park West +3006420013,3,642,13,2021,128,21 STREET,11232,H3,4,"RATAN REALTY TWO, LLC",BROOKLYN,40.663543,-73.99708,307,38,145,3009288,3006420013,Sunset Park West +3006450014,3,645,14,2021,134,22 STREET,11232,H3,4,"22 STREET SAI , LLC",BROOKLYN,40.662896,-73.997545,307,38,145,3396863,3006450014,Sunset Park West +3006480043,3,648,43,2021,235,24 STREET,11232,H3,4,SUNSET PARK HOSPITALITY LLC,BROOKLYN,40.661367,-73.997964,307,38,145,3009515,3006480043,Sunset Park West +3006540034,3,654,34,2021,764,4 AVENUE,11232,H3,4,764 4TH AVE ASSOCIATES LLC,BROOKLYN,40.66028,-73.998227,307,38,101,3396864,3006540034,Sunset Park West +3006640037,3,664,37,2021,822,4 AVENUE,11232,H2,4,SIGNATURE MANAGEMENT ENTERPRISES LLC,BROOKLYN,40.65849,-74.000097,307,38,101,3009782,3006640037,Sunset Park West +3006720035,3,672,35,2021,846,4 AVENUE,11232,H3,4,MAHERAS FOURTH LLC,BROOKLYN,40.657587,-74.00102,307,38,101,3424985,3006720035,Sunset Park West +3006760053,3,676,53,2021,135,32 STREET,11232,H3,4,32 STREET LIU LLC,BROOKLYN,40.657099,-74.002984,307,38,101,3010007,3006760053,Sunset Park West +3006800054,3,680,54,2021,139,33 STREET,11232,H3,4,33RD ST BPM BROOKLYN LLC,BROOKLYN,40.656558,-74.003597,307,38,101,3010086,3006800054,Sunset Park West +3006840025,3,684,25,2021,142,33 STREET,11232,H2,4,KUE & WENDY REALTY INC,BROOKLYN,40.656503,-74.003546,307,38,84,3010151,3006840025,Sunset Park West +3007000045,3,700,45,2021,349,38 STREET,11232,H3,4,BRISAM BROOKLYN LLC,BROOKLYN,40.65356,-74.006195,307,38,84,3010390,3007000045,Sunset Park West +3007050050,3,705,50,2021,457,39 STREET,11232,H3,4,"CCL MANAGEMENT, LLC",BROOKLYN,40.65187,-74.00489,307,38,84,3400161,3007050050,Sunset Park West +3007050061,3,705,61,2021,435,39 STREET,11232,H4,4,MCSAM MANAGEMENT LLC,BROOKLYN,40.652078,-74.005236,307,38,84,3010448,3007050061,Sunset Park West +3007360044,3,736,44,2021,4410,3 AVENUE,11220,H3,4,L2 LIU INC,BROOKLYN,40.650922,-74.011233,307,38,2,3011093,3007360044,Sunset Park West +3007720053,3,772,53,2021,247,49 STREET,11220,HR,4,"49 STREET SAI, LLC",BROOKLYN,40.649025,-74.015287,307,38,20,3012527,3007720053,Sunset Park West +3007810001,3,781,1,2021,4913,2 AVENUE,11232,H9,4,4923 TS LLC,BROOKLYN,40.649519,-74.016473,307,38,20,3012833,3007810001,Sunset Park West +3009030164,3,903,164,2021,517,39 STREET,11232,H3,4,KINGS KING REALTY LLC,BROOKLYN,40.650923,-74.003319,307,38,88,3396693,3009030164,Sunset Park East +3009080162,3,908,162,2021,829,39 STREET,11232,H3,4,823 39TH STREET BROOKLYN LLC,BROOKLYN,40.646814,-73.996523,312,38,90,3000000,3009080162,Sunset Park East +3009130019,3,913,19,2021,536,39 STREET,11232,H4,4,"SHINE REALTY, INC.",BROOKLYN,40.65072,-74.00302,307,38,88,3414905,3009130019,Sunset Park East +3009140024,3,914,24,2021,646,39 STREET,11232,H3,4,C. H 39 REALTY LLC,BROOKLYN,40.649298,-74.000667,307,38,88,3017851,3009140024,Sunset Park East +3009160012,3,916,12,2021,820,39 STREET,11232,H3,4,RONG FA REAL ESTATE MANAGEMENT INC.,BROOKLYN,40.646877,-73.996663,312,38,90,3017926,3009160012,Sunset Park East +3009800075,3,980,75,2021,370,4 AVENUE,11215,H4,4,AH PROPERTY LLC,BROOKLYN,40.67302,-73.98651,306,39,119,3021050,3009800075,Park Slope-Gowanus +3009800107,3,980,107,2021,399,3 AVENUE,11215,H3,4,1320 ATLANTIC REALTY CORP,BROOKLYN,40.673438,-73.989358,306,39,119,3418183,3009800107,Park Slope-Gowanus +3010330005,3,1033,5,2021,537,3 AVENUE,11215,H3,4,BROOKLYN HOSPITALITY LLC,BROOKLYN,40.668777,-73.993245,306,39,117,3396866,3010330005,Park Slope-Gowanus +3010330006,3,1033,6,2021,537,3 AVENUE,11215,H3,4,BROOKLYN HOSPITALITY LLC,BROOKLYN,40.668777,-73.993245,306,39,117,3396866,3010330005,Park Slope-Gowanus +3012010012,3,1201,12,2021,1324,ATLANTIC AVENUE,11216,H3,4,NAGESHWAR LLC,BROOKLYN,40.678395,-73.948325,308,36,315,3029788,3012010012,Crown Heights North +3012020032,3,1202,32,2021,1420,ATLANTIC AVENUE,11216,H4,4,"COSMIC REALTY, LLC",BROOKLYN,40.678209,-73.945178,308,36,313,3029828,3012020032,Crown Heights North +3012030010,3,1203,10,2021,1462,ATLANTIC AVENUE,11216,H3,4,1462 ATLANTIC AVENUE LLC,BROOKLYN,40.678085,-73.942943,308,36,313,3029869,3012030010,Crown Heights North +3012140076,3,1214,76,2021,1173,BERGEN STREET,11213,H9,4,CSN PARTNERS LP,BROOKLYN,40.675913,-73.946413,308,36,313,3330679,3012140076,Crown Heights North +3012660036,3,1266,36,2021,1548,BEDFORD AVENUE,11225,H2,4,1550 BEDFORD AVE LLC,BROOKLYN,40.669815,-73.95539,309,35,325,3000000,3012660036,Crown Heights South +3012860010,3,1286,10,2021,1414,PRESIDENT STREET,11213,H8,4,CENTRAL YESHIVA TOMCHEI TMIMIM,BROOKLYN,40.667588,-73.941892,309,35,335,3033712,3012860010,Crown Heights South +3012860013,3,1286,13,2021,1418,PRESIDENT STREET,11213,H8,4,CENTRAL YESHIVA TOMCHEI TMIMIM,BROOKLYN,40.667583,-73.94178,309,35,335,3033713,3012860013,Crown Heights South +3013360028,3,1336,28,2021,1772,ATLANTIC AVENUE,11213,H4,4,UNAVAILABLE OWNER,BROOKLYN,40.677477,-73.931648,308,36,309,3389091,3013360028,Crown Heights North +3014170009,3,1417,9,2021,630,CROWN STREET,11213,H9,4,PREMINGER LAND LLC,BROOKLYN,40.665563,-73.937662,309,35,333,3393265,3014170009,Crown Heights South +3014370015,3,1437,15,2021,2416,ATLANTIC AVENUE,11233,H3,4,"KINGS HOTEL , INC UCHE EMELUMANDU , ESQ.,",BROOKLYN,40.676001,-73.904842,316,37,36502,3038667,3014370015,Ocean Hill +3014440042,3,1444,42,2021,1691,EAST NEW YORK AVENUE,11212,H3,4,ENY HOTEL LLC,BROOKLYN,40.674555,-73.905652,316,37,36502,3426104,3014440042,Ocean Hill +3014550067,3,1455,67,2021,1725,ST MARKS AVENUE,11233,HH,4,1725 ST MARKS AVE LLC,BROOKLYN,40.672997,-73.909846,316,41,36502,3039144,3014550067,Ocean Hill +3014650020,3,1465,20,2021,1668,EASTERN PARKWAY,11233,H3,4,1815 PACIFIC LLC,BROOKLYN,40.672116,-73.913525,316,41,363,3406664,3014650020,Ocean Hill +3014770027,3,1477,27,2021,1412,PITKIN AVENUE,11233,H3,4,PITKIN HOSPITALITY MANAGEMENT NY LLC,BROOKLYN,40.668443,-73.921312,316,41,361,3397521,3014770027,Ocean Hill +3015430007,3,1543,7,2021,73,MOTHER GASTON BLVD,11233,H3,4,"RATAN GASTON, L.L.C.",BROOKLYN,40.678982,-73.908248,316,37,369,3420453,3015430007,Ocean Hill +3015760032,3,1576,32,2021,2473,ATLANTIC AVENUE,11207,H4,4,AMBA MATA INC,BROOKLYN,40.67586,-73.903151,305,37,367,3391636,3015760032,Ocean Hill +3015860008,3,1586,8,2021,1090,MYRTLE AVENUE,11206,H3,4,"GOLDMINE DEVELOPMENT, INC.",BROOKLYN,40.696771,-73.937006,303,36,287,3042894,3015860008,Stuyvesant Heights +3016000007,3,1600,7,2021,1080,BROADWAY,11221,H3,4,RIVKA LLC,BROOKLYN,40.694539,-73.930924,303,36,289,3413948,3016000007,Stuyvesant Heights +3016000028,3,1600,28,2021,1107,DEKALB AVENUE,11221,H3,4,1107D LLC,BROOKLYN,40.693748,-73.930788,303,36,289,3043203,3016000028,Stuyvesant Heights +3016130016,3,1613,16,2021,1198,BROADWAY,11221,H3,4,G LOFT LLC,BROOKLYN,40.692288,-73.926985,303,41,387,3426385,3016130016,Stuyvesant Heights +3018650043,3,1865,43,2021,78,HERKIMER STREET,11216,H6,4,"CARSON SURF, LLC",BROOKLYN,40.6797,-73.950913,303,36,247,3053909,3018650043,Crown Heights North +3018660011,3,1866,11,2021,1199,ATLANTIC AVENUE,11216,HB,4,822 MCDONALD AV LLC,BROOKLYN,40.678533,-73.950961,303,36,247,3053927,3018660011,Crown Heights North +3018660023,3,1866,23,2021,1225,ATLANTIC AVENUE,11216,H3,4,ATLANTIC AVENUE PROPERTIES I LLC,BROOKLYN,40.6785,-73.950359,303,36,247,3053933,3018660023,Crown Heights North +3018840067,3,1884,67,2021,56,FRANKLIN AVENUE,11205,HB,4,56-58 FRANLIN AVENUE LLC,BROOKLYN,40.697651,-73.958661,303,33,1237,3054206,3018840067,Bedford +3019000031,3,1900,31,2021,814,BEDFORD AVENUE,11205,H9,4,814 PARK LLC,BROOKLYN,40.696453,-73.956527,303,33,1237,3426224,3019000031,Bedford +3019090015,3,1909,15,2021,131,EMERSON PLACE,11205,H8,4,PRATT INSTITUTE,BROOKLYN,40.693392,-73.962107,302,35,193,3329827,3019090015,Clinton Hill +3019450045,3,1945,45,2021,400,WASHINGTON AVENUE,11238,HR,4,WASHINGTON HOTEL CORP,BROOKLYN,40.687047,-73.965598,302,35,197,3055500,3019450045,Clinton Hill +3019940001,3,1994,1,2021,547,CLASSON AVENUE,11238,HR,4,PRINCE BM CLASSON LLC,BROOKLYN,40.682115,-73.958649,303,35,227,3057282,3019940001,Clinton Hill +3019940002,3,1994,2,2021,545A,CLASSON AVENUE,11238,HR,4,PRINCE BM CLASSON LLC,BROOKLYN,40.682159,-73.958656,303,35,227,3057283,3019940002,Clinton Hill +3020300047,3,2030,47,2021,44,CARLTON AVENUE,11205,H3,4,BQE PARK LLC,BROOKLYN,40.696727,-73.97357,302,35,211,3000000,3020300047,Fort Greene +3022610009,3,2261,9,2021,2,FRANKLIN AVENUE,11249,H3,4,CONGREGATION BETH OSHER,BROOKLYN,40.699333,-73.959009,301,33,537,3061371,3022610009,Williamsburg +3022830001,3,2283,1,2021,55,WYTHE AVENUE,11249,HB,4,WYTHE BERRY FEE OWNER LLC,BROOKLYN,40.722474,-73.957246,301,33,557,3399881,3022830001,North Side-South Side +3022880024,3,2288,24,2021,75,NORTH 11 STREET,11249,HB,4,WYTHEHOTEL LLC,BROOKLYN,40.721892,-73.958296,301,33,557,3329918,3022880024,North Side-South Side +3022900010,3,2290,10,2021,156,NORTH 12 STREET,11249,HB,4,147-149 MCCARREN LLC,BROOKLYN,40.721076,-73.955536,301,33,517,3061538,3022900010,North Side-South Side +3022950021,3,2295,21,2021,96,WYTHE AVENUE,11249,H2,4,96 WYTHE ACQUISITION LLC,BROOKLYN,40.721489,-73.958332,301,33,557,3425311,3022950021,North Side-South Side +3023030001,3,2303,1,2021,97,WYTHE AVENUE,11249,H1,4,"93-97 WYTHE AVENUE, LP",BROOKLYN,40.721039,-73.95879,301,33,557,3418123,3023030001,North Side-South Side +3023520020,3,2352,20,2021,626,DRIGGS AVENUE,11211,H3,4,CBWB BKLN LLC,BROOKLYN,40.715297,-73.958321,301,34,553,3424287,3023520020,North Side-South Side +3023521101,3,2352,1101,2021,247,METROPOLITAN AVENUE,11211,RH,4,CBWB BKLN FEE LLC,BROOKLYN,40.714893000000004,-73.95904,301,34,553,3424287,3023520020,North Side-South Side +3023711001,3,2371,1001,2021,500,METROPOLITAN AVENUE,11211,RH,4,UNAVAILABLE OWNER,BROOKLYN,40.714056,-73.952244,301,34,513,3413996,3023717501,North Side-South Side +3023720009,3,2372,9,2021,447,UNION AVENUE,11211,H9,4,UNION HOTEL PARK LLC,BROOKLYN,40.713633,-73.951573,301,34,513,3421686,3023720009,North Side-South Side +3024570034,3,2457,34,2021,159,BROADWAY,11211,H9,4,WB BRIDGE HOTEL LLC,BROOKLYN,40.710036,-73.962606,301,34,549,3063559,3024570034,North Side-South Side +3024620027,3,2462,27,2021,341,BROADWAY,11211,HH,4,339 DEVELOPMENT LLC,BROOKLYN,40.7078,-73.956101,301,34,527,3063599,3024620027,North Side-South Side +3024650002,3,2465,2,2021,426,SOUTH 5 STREET,11211,H3,4,RIAM REALTY LLC,BROOKLYN,40.707131,-73.951841,301,34,527,3251759,3024650002,North Side-South Side +3024650003,3,2465,3,2021,428,SOUTH 5 STREET,11211,H3,4,RIAM REALTY LLC,BROOKLYN,40.707104,-73.951759,301,34,527,3394459,3024650003,North Side-South Side +3024650004,3,2465,4,2021,430,SOUTH 5 STREET,11211,H3,4,RIAM REALTY LLC,BROOKLYN,40.707073,-73.951672,301,34,527,3394460,3024650004,North Side-South Side +3024650005,3,2465,5,2021,432,SOUTH 5 STREET,11211,H3,4,RIAM REALTY LLC,BROOKLYN,40.707046,-73.951589,301,34,527,3394461,3024650005,North Side-South Side +3024790023,3,2479,23,2021,77,BOX STREET,11222,H3,4,77 BOX STREET HOLDING COMPANY LLC,BROOKLYN,40.737467,-73.953534,301,33,579,3412926,3024790028,Greenpoint +3024790028,3,2479,28,2021,77,BOX STREET,11222,H3,4,77 BOX STREET HOLDING,BROOKLYN,40.737467,-73.953534,301,33,579,3412926,3024790028,Greenpoint +3024870041,3,2487,41,2021,1109,MANHATTAN AVENUE,11222,HR,4,MANHATTAN AVENUE HOTEL LLC,BROOKLYN,40.736378,-73.955284,301,33,563,3336603,3024870041,Greenpoint +3025220003,3,2522,3,2021,214,FRANKLIN STREET,11222,HB,4,214 FRANKLIN LLC,BROOKLYN,40.732967,-73.95809,301,33,563,3064136,3025220003,Greenpoint +3026290035,3,2629,35,2021,233,NORMAN AVENUE,11222,H8,4,NORTH HENRY PARTNERS LLC,BROOKLYN,40.727549,-73.9442,301,33,589,3065931,3026290035,Greenpoint +3026980026,3,2698,26,2021,65,ECKFORD STREET,11222,H2,4,65-73 ECKFORD REALTY LLC,BROOKLYN,40.722017,-73.948068,301,33,499,3067535,3026980026,Greenpoint +3027410017,3,2741,17,2021,235,MEEKER AVENUE,11211,H4,4,"GANGESHWAR, LLC",BROOKLYN,40.716279,-73.950796,301,33,515,3338072,3027410017,North Side-South Side +3029230003,3,2923,3,2021,14,OLIVE STREET,11211,H8,4,"BIRNBACH, PAWEL",BROOKLYN,40.712966,-73.938671,301,34,481,3000000,3029230002,East Williamsburg +3030370008,3,3037,8,2021,171,BUSHWICK AVENUE,11206,H4,4,SUHANA HOSPITALITY,BROOKLYN,40.709785,-73.940178,301,34,485,3070878,3030370008,Bushwick South +3030740023,3,3074,23,2021,360,JOHNSON AVENUE,11206,H3,4,CHESSE SMOKERS INC,BROOKLYN,40.707435,-73.934326,301,34,485,3325878,3030740023,Bushwick South +3031000074,3,3100,74,2021,179,MOORE STREET,11206,H4,4,Z AND R MOORE LLC,BROOKLYN,40.704165,-73.937446,301,34,485,3071480,3031000074,Bushwick South +3031100028,3,3110,28,2021,249,VARET STREET,11206,H4,4,249 VARET LLC,BROOKLYN,40.704062,-73.934178,301,34,485,3325981,3031100028,Bushwick South +3031170042,3,3117,42,2021,187,COOK STREET,11206,H9,4,187 COOK ST. LLC,BROOKLYN,40.703031,-73.935708,301,34,485,3000000,3031170042,Bushwick South +3031180019,3,3118,19,2021,19,BOGART STREET,11206,H9,4,19 BOGART HOTEL REALTY LLC,BROOKLYN,40.703932,-73.932927,301,34,485,3397431,3031180019,Bushwick South +3031310014,3,3131,14,2021,20,SUMNER PLACE,11206,H4,4,G-ELUL REALTY CORP,BROOKLYN,40.700813,-73.940648,304,34,389,3395181,3031310014,Bushwick South +3031310023,3,3131,23,2021,802,FLUSHING AVENUE,11206,H3,4,802 FLUSHING LLC,BROOKLYN,40.701153,-73.940042,304,34,389,3425456,3031310023,Bushwick South +3031320021,3,3132,21,2021,32,FAYETTE STREET,11206,H4,4,7BE LLC,BROOKLYN,40.7007,-73.93962,304,34,389,3000000,3031320021,Bushwick South +3033480032,3,3348,32,2021,1078,BUSHWICK AVENUE,11221,H4,4,"1078 BUSHWICK, LLC",BROOKLYN,40.690403,-73.91975,304,34,397,3076529,3033480032,Bushwick South +3033730010,3,3373,10,2021,1461,BROADWAY,11221,H4,4,VILINUIS INC,BROOKLYN,40.687768,-73.919014,304,34,397,3077130,3033730010,Bushwick South +3034130108,3,3413,108,2021,980,WYCKOFF AVENUE,11237,H4,4,NEW P & S REALTY CORP,BROOKLYN,40.696043,-73.904882,304,37,439,3391528,3034130108,Bushwick North +3035210035,3,3521,35,2021,95,CHESTER STREET,11212,H3,4,JANNAT I LLC,BROOKLYN,40.669103,-73.911539,316,41,924,3414134,3035210035,Brownsville +3035210075,3,3521,75,2021,524,ROCKAWAY AVENUE,11212,H3,4,JANNAT ROCKAWAY LLC,BROOKLYN,40.667378,-73.91016,316,41,924,3081061,3035210075,Brownsville +3035220032,3,3522,32,2021,120,THATFORD AVENUE,11212,H2,4,SUNRAISE EQUITY GROUP LLC,BROOKLYN,40.668882,-73.909567,316,41,906,3000000,3035220032,Brownsville +3035230020,3,3523,20,2021,120,OSBORN STREET,11212,H3,4,THATFORD LODGING LLC,BROOKLYN,40.669499,-73.908777,316,41,906,3425647,3035230020,Brownsville +3036600002,3,3660,2,2021,27,PENNSYLVANIA AVENUE,11207,H3,4,"AMR DEVELOPMENT, LLC",BROOKLYN,40.67751,-73.897294,305,37,1198,3083106,3036600002,East New York +3036600029,3,3660,29,2021,96,NEW JERSEY AVENUE,11207,H3,4,AMR DEVELOPMENT,BROOKLYN,40.677728,-73.896324,305,37,1198,,,East New York +3036660015,3,3666,15,2021,2550,EAST NEW YORK AVENUE,11207,H4,4,ELUL 21 REALTY CORP,BROOKLYN,40.676834,-73.900165,305,37,1144,3000000,3036660015,East New York (Pennsylvania Ave) +3036660018,3,3666,18,2021,2562,EAST NEW YORK AVENUE,11207,H4,4,ELUL 21 REALTY CORP,BROOKLYN,40.676837,-73.900158,305,37,1144,3393331,3036660018,East New York (Pennsylvania Ave) +3037030001,3,3703,1,2021,367,GLENMORE AVENUE,11207,H3,4,"367 GLENMORE, LLC",BROOKLYN,40.673052,-73.896962,305,37,1144,3000000,3037030001,East New York (Pennsylvania Ave) +3037500020,3,3750,20,2021,262,WILLIAMS AVENUE,11207,H3,4,262 INVESTORS LLC,BROOKLYN,40.669614,-73.899155,305,42,1134,3000000,3037500020,East New York (Pennsylvania Ave) +3037500021,3,3750,21,2021,272,WILLIAMS AVENUE,11207,H3,4,UNAVAILABLE OWNER,BROOKLYN,40.669425,-73.899109,305,42,1134,3000000,3037500021,East New York (Pennsylvania Ave) +3037540033,3,3754,33,2021,314,PENNSYLVANIA AVENUE,11207,H3,4,PENN HOTEL LLC,BROOKLYN,40.669877,-73.895363,305,42,1156,3000000,3037540033,East New York (Pennsylvania Ave) +3037660001,3,3766,1,2021,515,BLAKE AVENUE,11207,HR,4,THE CITY OF NEW YORK,BROOKLYN,40.667082,-73.899963,305,42,1134,3327018,3037660001,East New York (Pennsylvania Ave) +3038640052,3,3864,52,2021,1659,LINDEN BOULEVARD,11212,H4,4,OHM GROUP LLC,BROOKLYN,40.657248,-73.900691,316,42,920,3403171,3038640052,Brownsville +3039540045,3,3954,45,2021,2961,ATLANTIC AVENUE,11208,H4,4,SHREE ASHTA VINAYAKINC,BROOKLYN,40.677888,-73.884931,305,37,1170,3335694,3039540045,East New York +3042580006,3,4258,6,2021,714,CONDUIT BOULEVARD,11208,H4,4,SANRAJ INC,BROOKLYN,40.674815,-73.863623,305,42,1200,3252996,3042580006,East New York +3043630001,3,4363,1,2021,2320,LINDEN BOULEVARD,11208,H4,4,"2326 LINDEN ASSOCIATES, LLC",BROOKLYN,40.664112,-73.877746,305,42,1116,,,East New York +3043680001,3,4368,1,2021,852,PENNSYLVANIA AVENUE,11207,H4,4,HKS CORP,BROOKLYN,40.656889,-73.889364,305,42,1104,3097772,3043680001,East New York +3044110024,3,4411,24,2021,1036,SHEFFIELD AVENUE,11207,H4,4,BGFLATLANDS LLC,BROOKLYN,40.652712,-73.887378,305,42,1104,3253012,3044110024,East New York +3046040052,3,4604,52,2021,599,UTICA AVENUE,11203,H4,4,SAANYA HOSPITALITY LLC,BROOKLYN,40.659027,-73.931152,317,41,878,3398461,3046040052,Prospect Lefferts Gardens-Wingate +3050260302,3,5026,302,2021,205,PARKSIDE AVENUE,11226,HR,4,PRINCE BM PARKSIDE LLC,BROOKLYN,40.655242,-73.960972,309,40,79802,3114661,3050260302,Prospect Lefferts Gardens-Wingate +3050540049,3,5054,49,2021,177,WOODRUFF AVENUE,11226,HR,4,"TEPPER , DAVID",BROOKLYN,40.654657,-73.960244,314,40,50803,3115932,3050540049,Flatbush +3051250056,3,5125,56,2021,1024,FLATBUSH AVENUE,11226,H3,4,SY GROUP I LLC,BROOKLYN,40.646148,-73.958094,314,40,51001,3328213,3051250056,Flatbush +3052490035,3,5249,35,2021,2604,FARRAGUT ROAD,11210,H8,4,NEW BROOKLYN DEVELOPMENT LLC,BROOKLYN,40.635957,-73.95208,314,45,770,3121630,3052490035,Flatbush +3052920035,3,5292,35,2021,1118,36 STREET,11218,H9,4,BRISTOL HOSPITALITY L.L.C.,BROOKLYN,40.644261,-73.987871,312,39,226,3123049,3052920035,Borough Park +3053340085,3,5334,85,2021,385,MCDONALD AVENUE,11218,H9,4,1015/125 HOLDING LLC,BROOKLYN,40.644496,-73.979756,312,39,496,3343785,3053340085,Kensington-Ocean Parkway +3053610006,3,5361,6,2021,566,CONEY ISLAND AVENUE,11218,H9,4,HALPERTS HOLDINGS LLC,BROOKLYN,40.643513,-73.970031,312,40,492,3328420,3053610006,Kensington-Ocean Parkway +3054180038,3,5418,38,2021,928,CONEY ISLAND AVENUE,11230,H3,4,928 CONEY ISLAND LLC,BROOKLYN,40.634834,-73.96752,314,40,482,3000000,3054180038,Flatbush +3056220043,3,5622,43,2021,4622,13 AVENUE,11219,H3,4,AVENUE PLAZA LLC,BROOKLYN,40.636537,-73.99056,312,44,222,3136960,3056220043,Borough Park +3056340006,3,5634,6,2021,4811,12 AVENUE,11219,H3,4,KRAP REALTY CORP,BROOKLYN,40.636784,-73.993857,312,44,220,,,Borough Park +3057170013,3,5717,13,2021,1108,60 STREET,11219,H9,4,VERTU ROC LLC,BROOKLYN,40.631221,-74.0025,312,44,214,3328735,3057170013,Borough Park +3057851002,3,5785,1002,2021,741,61 STREET,11220,RH,4,SUNSET PARK HOTEL LLC,BROOKLYN,40.635669,-74.011396,307,38,118,3421476,3057857501,Sunset Park East +3060180001,3,6018,1,2021,8315,4 AVENUE,11209,H3,4,"GREGORY HOTEL HOLDINGS, INC.",BROOKLYN,40.624844,-74.027501,310,43,138,3152463,3060180001,Bay Ridge +3061030061,3,6103,61,2021,315,93 STREET,11209,H6,4,BAY RIDGE PRINCE LLC,BROOKLYN,40.618516,-74.032336,310,43,58,3155132,3061030061,Bay Ridge +3064910180,3,6491,180,2021,1730,SHORE PARKWAY,11214,H4,4,UNAVAILABLE OWNER,BROOKLYN,40.59387,-73.997253,311,43,304,3170081,3064910180,Bensonhurst East +3065030103,3,6503,103,2021,323,ELMWOOD AVENUE,11230,H8,4,THE CHEDER,BROOKLYN,40.627271,-73.974058,312,44,46201,3000000,3065030103,Flatbush +3066950009,3,6695,9,2021,800,EAST 12 STREET,11230,HR,4,ALAIN REALTY LLC C/O,BROOKLYN,40.62953,-73.965065,314,45,530,3179168,3066950009,Midwood +3069540048,3,6954,48,2021,2586,STILLWELL AVENUE,11223,H3,4,RATAN STILLWELL L.L.C,BROOKLYN,40.584657,-73.982985,313,47,308,3424695,3069540048,Gravesend +3072250017,3,7225,17,2021,2632,WEST 13 STREET,11223,H3,4,GROVESEND REALTY LLC,BROOKLYN,40.584121,-73.981862,313,47,308,3426274,3072250017,Gravesend +3077290025,3,7729,25,2021,1095,EAST 45 STREET,11234,HR,4,"NG 1095 E 45TH, LLC",BROOKLYN,40.633905,-73.933307,318,45,726,3213393,3077290025,Flatlands +3078930062,3,7893,62,2021,1766,EAST 49 STREET,11234,RH,4,1766 HOTEL LLC,BROOKLYN,40.617727,-73.927769,318,46,672,3414127,3078930062,Flatlands +3079690065,3,7969,65,2021,5264,KINGS HIGHWAY,11234,H3,4,KINGS HWY NY LLC,BROOKLYN,40.637466,-73.926205,318,45,932,3223075,3079690060,East Flatbush-Farragut +3086740010,3,8674,10,2021,3022,BRIGHTON 5 STREET,11235,HR,4,3022 BRIGHTON REALTY INC,BROOKLYN,40.578701,-73.96286,313,48,362,3244818,3086740010,Brighton Beach +3086750065,3,8675,65,2021,3017,BRIGHTON 5 STREET,11235,HR,4,"3017 BRIGHTON 5TH STREET REALTY, LLC",BROOKLYN,40.578803,-73.962878,313,48,362,3244883,3086750065,Brighton Beach +3086750069,3,8675,69,2021,506,OCEAN VIEW AVENUE,11235,HR,4,"ZALTZMAN, MIKHAIL",BROOKLYN,40.579418,-73.962877,313,48,362,3244886,3086750069,Brighton Beach +3086760044,3,8676,44,2021,618,OCEAN VIEW AVENUE,11235,HR,4,ANDRES CASTILLO,BROOKLYN,40.579615,-73.961952,313,48,362,3244941,3086760044,Brighton Beach +3087260055,3,8726,55,2021,79,WEST END AVENUE,11235,H8,4,YESHIVA ZICHRON SHRAGA INC.,BROOKLYN,40.579864,-73.953445,315,48,612,3245808,3087260055,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +3087960065,3,8796,65,2021,3003,EMMONS AVENUE,11235,H3,4,EMMONS HOSPITALITY,BROOKLYN,40.583917,-73.938502,315,48,622,3326906,3087960065,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +3088150101,3,8815,101,2021,3154,EMMONS AVENUE,11235,H9,4,EMMONS DEVELOPMENT LLC,BROOKLYN,40.584054,-73.934034,315,48,622,3248044,3088150101,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +3088150590,3,8815,590,2021,3218,EMMONS AVENUE,11235,H4,4,PURVI ENTERPRISES LLC,BROOKLYN,40.584207,-73.932187,315,46,622,3392378,3088150590,Sheepshead Bay-Gerritsen Beach-Manhattan Beach +4000780048,4,78,48,2021,21-16,44 DRIVE,11101,H6,4,21-12 LLC,QUEENS,40.748029,-73.94699,402,26,7,4000000,4000780048,Hunters Point-Sunnyside-West Maspeth +4000780050,4,78,50,2021,21-12,44 DRIVE,11101,H6,4,21-12 LLC,QUEENS,40.748031,-73.946994,402,26,7,4000000,4000780050,Hunters Point-Sunnyside-West Maspeth +4000960010,4,96,10,2021,26-32,SKILLMAN AVENUE,11101,H9,4,"26-32 SKILLMAN GROUP, LLC",QUEENS,40.74406,-73.941198,402,26,1,4000738,4000960010,Hunters Point-Sunnyside-West Maspeth +4002120001,4,212,1,2021,38-05,HUNTERS POINT AVENUE,11101,H4,4,HUNTERS POINT PARTNERS LLC,QUEENS,40.736751,-73.928203,402,26,187,4003075,4002120006,Hunters Point-Sunnyside-West Maspeth +4002120006,4,212,6,2021,38-05,HUNTERS POINT AVENUE,11101,H4,4,HUNTERS POINT PARTNERS LLC,QUEENS,40.736751,-73.928203,402,26,187,4003075,4002120006,Hunters Point-Sunnyside-West Maspeth +4002240031,4,224,31,2021,37-16,QUEENS BOULEVARD,11101,H4,4,"PSA REALTY CORP.,",QUEENS,40.744203,-73.927733,402,26,179,4003179,4002240031,Hunters Point-Sunnyside-West Maspeth +4002750002,4,275,2,2021,31-36,QUEENS BOULEVARD,11101,H4,4,MCSAM BROOKLYN LLC,QUEENS,40.745667,-73.934043,402,26,179,4003518,4002750002,Hunters Point-Sunnyside-West Maspeth +4003010024,4,301,24,2021,52-16,34 STREET,11101,H9,4,"QUEENS PLAZA SOUTH, LLC",QUEENS,40.736641,-73.936142,402,26,199,4000000,4003010024,Hunters Point-Sunnyside-West Maspeth +4003020006,4,302,6,2021,52-34,VAN DAM STREET,11101,H3,4,VAN DAM TERRACE LLC,QUEENS,40.736147,-73.936373,402,26,199,4000000,4003020006,Hunters Point-Sunnyside-West Maspeth +4003070010,4,307,10,2021,33-17,GREENPOINT AVENUE,11101,H3,4,JAI AMBE .,QUEENS,40.73577,-73.934223,402,26,199,4003668,4003070010,Hunters Point-Sunnyside-West Maspeth +4003590021,4,359,21,2021,37-02,10 STREET,11101,H3,4,DUN 37-10 10TH STREET LLC,QUEENS,40.759837,-73.941776,401,26,39,4445080,4003590021,Queensbridge-Ravenswood-Long Island City +4003600023,4,360,23,2021,37-10,11 STREET,11101,H3,4,"KCN HOSPITALITY, LLC",QUEENS,40.759463,-73.941011,401,26,85,4004385,4003600023,Queensbridge-Ravenswood-Long Island City +4003620009,4,362,9,2021,37-25,12 STREET,11101,H3,4,37-25 12 STREET LLC,QUEENS,40.759029,-73.940264,401,26,43,,,Queensbridge-Ravenswood-Long Island City +4003620017,4,362,17,2021,12-02,37 AVENUE,11101,H3,4,CP & SONS LLC,QUEENS,40.759413,-73.939863,401,26,43,4004411,4003620017,Queensbridge-Ravenswood-Long Island City +4003640004,4,364,4,2021,37-35,21 STREET,11101,H3,4,21ST STREET HOSPITALITY LLC,QUEENS,40.757865,-73.938706,401,26,33,4004421,4003640004,Queensbridge-Ravenswood-Long Island City +4003660018,4,366,18,2021,37-11,23 STREET,11101,H3,4,NEW GENERATION DEVELOPMENT LLC,QUEENS,40.757539,-73.936461,401,26,33,4000000,4003660018,Queensbridge-Ravenswood-Long Island City +4003770013,4,377,13,2021,35-02,37 AVENUE,11101,H9,4,THE COLLECTIVE PAPER FACTORY LLC,QUEENS,40.753195,-73.927907,401,26,55,,,Queensbridge-Ravenswood-Long Island City +4003840031,4,384,31,2021,29-13,39 AVENUE,11101,H3,4,HOTEL VETIVER,QUEENS,40.753432,-73.934281,401,26,31,4539355,4003840031,Queensbridge-Ravenswood-Long Island City +4003850005,4,385,5,2021,38-23,28 STREET,11101,H3,4,HOWARD DEVELOPMENT LLC,QUEENS,40.754678,-73.934605,401,26,31,4000000,4003850005,Queensbridge-Ravenswood-Long Island City +4003860023,4,386,23,2021,38-20,28 STREET,11101,H3,4,2318 FLATBUSH AVENUE CORP,QUEENS,40.754703,-73.934608,401,26,31,4000000,4003860023,Queensbridge-Ravenswood-Long Island City +4003860027,4,386,27,2021,38-30,28 STREET,11101,H3,4,38-30 28TH STREET LL,QUEENS,40.754626,-73.934673,401,26,31,4436770,4003860027,Queensbridge-Ravenswood-Long Island City +4003860033,4,386,33,2021,27-05,39 AVENUE,11101,H2,4,"39TH AVE HOLDING, LLC",QUEENS,40.754276,-73.935865,401,26,31,4539251,4003860033,Queensbridge-Ravenswood-Long Island City +4003870031,4,387,31,2021,38-26,27 STREET,11101,H3,4,CHILLED PROPERTIES LLC,QUEENS,40.755044,-73.935373,401,26,31,4539428,4003870031,Queensbridge-Ravenswood-Long Island City +4003880023,4,388,23,2021,38-30,CRESCENT STREET,11101,H3,4,STERLING HOSPITALITY LLC,QUEENS,40.75542,-73.936163,401,26,33,4004723,4003880023,Queensbridge-Ravenswood-Long Island City +4003890033,4,389,33,2021,23-07,39 AVENUE,11101,H3,4,39TH AVENUE HOSPITALITY LLC,QUEENS,40.755487,-73.938145,401,26,33,4004733,4003890033,Queensbridge-Ravenswood-Long Island City +4003970002,4,397,2,2021,39-35,27 STREET,11101,H9,4,SELA 27 STREET LLC,QUEENS,40.753842,-73.936457,401,26,31,4617776,4003970002,Queensbridge-Ravenswood-Long Island City +4003980029,4,398,29,2021,39-12,29 STREET,11101,H3,4,"39-12 29TH STREET, LLC",QUEENS,40.753235,-73.934747,401,26,31,4004831,4003980029,Queensbridge-Ravenswood-Long Island City +4003990017,4,399,17,2021,39-05,29 STREET,11101,H2,4,COMFORT PLAZA REMAINDER LLC,QUEENS,40.753298,-73.934664,401,26,31,4538549,4003990017,Queensbridge-Ravenswood-Long Island City +4003990022,4,399,22,2021,29-14,39 AVENUE,11101,HS,4,LIC HOTEL PROPERTY LLC,QUEENS,40.753413,-73.934281,401,26,31,4000000,4003990022,Queensbridge-Ravenswood-Long Island City +4004000001,4,400,1,2021,30-03,40 AVENUE,11101,H3,4,SHIV DARSHAN INS,QUEENS,40.751906,-73.934593,401,26,31,4000000,4004000001,Queensbridge-Ravenswood-Long Island City +4004020012,4,402,12,2021,29-27,40 ROAD,11101,H3,4,"WILSHIRE HOSPITALITY, LLC",QUEENS,40.751481,-73.935658,401,26,31,4000000,4004020012,Queensbridge-Ravenswood-Long Island City +4004020025,4,402,25,2021,40-03,29 STREET,11101,H9,4,LAXMI MANAGEMENT LLC,QUEENS,40.752162,-73.935712,401,26,31,4000000,4004020025,Queensbridge-Ravenswood-Long Island City +4004020028,4,402,28,2021,29-14,40 AVENUE,11101,H3,4,29-12 LIC LLC,QUEENS,40.752195,-73.935401,401,26,31,4541630,4004020028,Queensbridge-Ravenswood-Long Island City +4004060040,4,406,40,2021,40-40,27 STREET,11101,H9,4,4040 PLAZA MANAGEMENT LLC,QUEENS,40.752536,-73.937685,401,26,33,4000000,4004060040,Queensbridge-Ravenswood-Long Island City +4004070037,4,407,37,2021,40-34,CRESCENT STREET,11101,H3,4,"KRISHNA HOSPITALITY, LLC",QUEENS,40.752998,-73.938407,401,26,33,4004929,4004070037,Queensbridge-Ravenswood-Long Island City +4004090007,4,409,7,2021,40-47,22 STREET,11101,H3,4,RATAN REALTY THREE LLC,QUEENS,40.754111,-73.940795,401,26,33,4004953,4004090007,Queensbridge-Ravenswood-Long Island City +4004110025,4,411,25,2021,41-01,21 STREET,11101,H3,4,"SAM SAI HOSPITALITY, LLC",QUEENS,40.753815,-73.942589,401,26,33,4004976,4004110025,Queensbridge-Ravenswood-Long Island City +4004180005,4,418,5,2021,29-09,QUEENS PLAZA NORTH,11101,H3,4,"29-09 QUEENS PLAZA NORTH,",QUEENS,40.749781,-73.937482,401,26,33,4005038,4004180005,Queensbridge-Ravenswood-Long Island City +4004180024,4,418,24,2021,29-21,41 AVENUE,11101,H9,4,LVP LIC HOTEL LLC,QUEENS,,,,,,4594823,4004180024, +4004181001,4,418,1001,2021,29-11,QUEENS PLAZA NORTH,11101,RH,4,GRANITE QP HOTEL LLC,QUEENS,40.749789,-73.937331,401,26,33,4596217,4004187501,Queensbridge-Ravenswood-Long Island City +4004240029,4,424,29,2021,42-24,CRESCENT STREET,11101,H3,4,"DAN'S GLOBAL HOTELS, LLC",QUEENS,40.750029,-73.941102,402,26,19,4532189,4004240029,Hunters Point-Sunnyside-West Maspeth +4004300037,4,430,37,2021,25-01,43 AVENUE,11101,H3,4,"ROYAL HI HOTEL HOLDINGS, L.P.",QUEENS,40.748745,-73.941977,402,26,19,4000000,4004300037,Hunters Point-Sunnyside-West Maspeth +4004320005,4,432,5,2021,27-45,JACKSON AVENUE,11101,H2,4,27-45 JACKSON AVENUE LLC,QUEENS,40.748116,-73.939628,402,26,19,4617885,4004320005,Hunters Point-Sunnyside-West Maspeth +4004320025,4,432,25,2021,27-03,43 AVENUE,11101,H3,4,27-07 43RD AVE LLC,QUEENS,40.747905,-73.941454,402,26,19,4005129,4004320025,Hunters Point-Sunnyside-West Maspeth +4004460001,4,446,1,2021,44-04,21 STREET,11101,H9,4,4404 LLC,QUEENS,40.749338,-73.946787,402,26,19,4005220,4004460001,Hunters Point-Sunnyside-West Maspeth +4004500006,4,450,6,2021,44-21,9 STREET,11101,H3,4,4429 HOSPITALITY GROUP LLC,QUEENS,40.750246,-73.951623,402,26,19,4005251,4004500006,Hunters Point-Sunnyside-West Maspeth +4004590005,4,459,5,2021,11-01,43 AVENUE,11101,HB,4,1101-43 AVE ACQUISITION LLC,QUEENS,40.751787,-73.947926,402,26,19,4005284,4004590005,Hunters Point-Sunnyside-West Maspeth +4004620016,4,462,16,2021,42-21,VERNON BOULEVARD,11101,HB,4,MARUTI RAVAMI LLC,QUEENS,40.753849,-73.949664,402,26,19,4005311,4004620016,Hunters Point-Sunnyside-West Maspeth +4004620053,4,462,53,2021,8-18,QUEENS PLAZA SOUTH,11101,H9,4,MARUTI RAVAMI LLC,QUEENS,40.754084,-73.948815,402,26,19,4005312,4004620053,Hunters Point-Sunnyside-West Maspeth +4004710702,4,471,702,2021,38-71,13 STREET,11101,H4,4,UNAVAILABLE OWNER,QUEENS,40.757385,-73.94041,401,26,85,4537915,4004710702,Queensbridge-Ravenswood-Long Island City +4004710758,4,471,758,2021,39-34,21 STREET,11101,H3,4,PRIYA HOSPITALITY LLC,QUEENS,40.756002,-73.940519,401,26,85,4005328,4004710758,Queensbridge-Ravenswood-Long Island City +4004720635,4,472,635,2021,38-59,12 STREET,11101,H9,4,MAYFLOWERS INTERNATIONAL HOTEL,QUEENS,40.757723,-73.941218,401,26,85,4005336,4004720635,Queensbridge-Ravenswood-Long Island City +4004720642,4,472,642,2021,38-43,12 STREET,11101,H3,4,"12 STREET HOTEL, LLC",QUEENS,40.757745,-73.941196,401,26,85,4000000,4004720642,Queensbridge-Ravenswood-Long Island City +4004720679,4,472,679,2021,38-60,13 STREET,11101,H3,4,"38-60 13TH ST PARTNERS, LLC",QUEENS,40.757407,-73.940413,401,26,85,4617779,4004720679,Queensbridge-Ravenswood-Long Island City +4004730553,4,473,553,2021,38-75,11 STREET,11101,H2,4,ST. JOHN REAL ESTATE CONSULTANT INC.,QUEENS,40.758009,-73.942026,401,26,85,4596213,4004730553,Queensbridge-Ravenswood-Long Island City +4004730559,4,473,559,2021,38-61,11 STREET,11101,H3,4,559 DEVELOPMENT LLC,QUEENS,40.758025,-73.942008,401,26,85,4000000,4004730559,Queensbridge-Ravenswood-Long Island City +4004730613,4,473,613,2021,38-58,12 STREET,11101,H3,4,CROSSCITY HOTEL LLC,QUEENS,40.757734,-73.941236,401,26,85,4617817,4004730613,Queensbridge-Ravenswood-Long Island City +4004730618,4,473,618,2021,38-70,12 STREET,11101,H3,4,"11-11 LIC DEVELOPMENT, LLC",QUEENS,40.757718,-73.941251,401,26,85,4607546,4004730618,Queensbridge-Ravenswood-Long Island City +4004740010,4,474,10,2021,38-47,10 STREET,11101,H3,4,10 STREET NY LLC,QUEENS,40.758295,-73.942788,401,26,85,4005366,4004740010,Queensbridge-Ravenswood-Long Island City +4004740031,4,474,31,2021,38-11,10 STREET,11101,H2,4,HKOQ LLC,QUEENS,40.758333,-73.942744,401,26,85,4000000,4004740031,Queensbridge-Ravenswood-Long Island City +4004740039,4,474,39,2021,,11 STREET,0,H3,4,38-26 11TH STREET LLC,,,,,,,,, +4004740048,4,474,48,2021,38-42,11 STREET,11101,H3,4,"38 11TH STREET, LLC",QUEENS,40.758058,-73.942005,401,26,85,4000000,4004740048,Queensbridge-Ravenswood-Long Island City +4004740056,4,474,56,2021,38-60,11 STREET,11101,H4,4,"38-60 HOTEL, LLC",QUEENS,40.758034,-73.942026,401,26,85,4005385,4004740056,Queensbridge-Ravenswood-Long Island City +4004750019,4,475,19,2021,38-37,9 STREET,11101,H9,4,9TH STREET LIC LLC,QUEENS,40.758693,-73.943592,401,26,85,4005394,4004750019,Queensbridge-Ravenswood-Long Island City +4004750026,4,475,26,2021,38-21,9 STREET,11101,H3,4,LGR 9TH STREET LLC,QUEENS,40.75871,-73.943574,401,26,85,4005396,4004750026,Queensbridge-Ravenswood-Long Island City +4004750030,4,475,30,2021,9-02,38 AVENUE,11101,H3,4,38TH AVE HOSPITALITY LLC,QUEENS,40.758929,-73.943163,401,26,85,4617742,4004750030,Queensbridge-Ravenswood-Long Island City +4005190001,4,519,1,2021,12-35,BROADWAY,11106,H4,4,JAI BALAJI INC,QUEENS,40.766895,-73.934705,401,22,77,4005766,4005190001,Astoria +4006540059,4,654,59,2021,24-40,STEINWAY STREET,11103,H3,4,"PRINCE CLUB, LLC",QUEENS,40.768513,-73.911237,401,22,143,4000000,4006540059,Astoria +4006650034,4,665,34,2021,36-20,STEINWAY STREET,11101,H3,4,CACTUS 36-20 STEINWAY LLC,QUEENS,40.753253,-73.923688,401,26,157,4000000,4006650034,Astoria +4007180041,4,718,41,2021,45-20,ASTORIA BOULEVARD S,11103,H3,4,45-20 ASTORIA BLVD R,QUEENS,40.767965,-73.905873,401,22,141,4012874,4007180041,Astoria +4010030011,4,1003,11,2021,71-11,ASTORIA BOULEVARD N,11370,H4,4,WESTWAY ASSOCIATES LLC,QUEENS,40.767168,-73.897686,401,22,317,4021796,4010030011,Steinway +4010040052,4,1004,52,2021,72-05,ASTORIA BOULEVARD N,11370,H4,4,WESTWAY ASSOCIATES LLC,QUEENS,40.767038,-73.896755,401,22,317,4021811,4010040052,Steinway +4010640100,4,1064,100,2021,22-40,90 STREET,11369,H8,4,COLLEGE OF AERONAUTICS,QUEENS,40.768704,-73.880168,403,22,347,4023319,4010640100,Jackson Heights +4010680001,4,1068,1,2021,90-10,GRAND CENTRAL PKWY,11369,H3,4,"GCP REALTY, LLC",QUEENS,40.769555,-73.88005,403,22,347,4023320,4010680001,Jackson Heights +4010710001,4,1071,1,2021,94-00,DITMARS BOULEVARD,11369,H4,4,9400 REALTY LLC,QUEENS,40.769194,-73.876094,403,21,357,4023432,4010710001,East Elmhurst +4010780054,4,1078,54,2021,23-51,83 STREET,11370,H3,4,"LAGUARDIA HOSPITALITY, LLC",QUEENS,40.765743,-73.886263,403,22,329,4023530,4010780054,Jackson Heights +4010820001,4,1082,1,2021,87-02,23 AVENUE,11369,H9,4,S AND Z ASSOCIATES LLC,QUEENS,40.767332,-73.882618,403,22,329,4023533,4010820001,Jackson Heights +4010940011,4,1094,11,2021,24-14,83 STREET,11370,H4,4,"SOHN PROPERTIES, LLC",QUEENS,40.764338,-73.886034,403,22,329,4023949,4010940011,Jackson Heights +4010940061,4,1094,61,2021,24-15,82 STREET,11370,H4,4,"SOHN PROPERTIES, LLC",QUEENS,40.764341,-73.886955,403,22,329,4023990,4010940061,Jackson Heights +4012920050,4,1292,50,2021,37-59,81 STREET,11372,H3,4,81 ROSE HOTEL LLC,QUEENS,40.749296,-73.885165,403,21,283,4519734,4012920050,Jackson Heights +4013220001,4,1322,1,2021,53-01,QUEENS BOULEVARD,11377,H4,4,EXCLUSIVE HOSPITALITY LLC,QUEENS,40.74238,-73.911846,402,26,251,4440550,4013220001,Woodside +4013420001,4,1342,1,2021,65-09,QUEENS BOULEVARD,11377,H4,4,AVIRAO GROUP MANAGEMENT LLC,QUEENS,40.740982,-73.90026,402,26,247,4031690,4013420001,Woodside +4013420038,4,1342,38,2021,65-15,QUEENS BOULEVARD,11377,H6,4,HUNG FAR REALTY LLC,QUEENS,40.740966,-73.90013,402,26,247,4617793,4013420038,Woodside +4015290014,4,1529,14,2021,74-03,QUEENS BOULEVARD,11373,H4,4,AARTI REALTY,QUEENS,40.739078,-73.889516,404,25,485,4038240,4015290014,Elmhurst-Maspeth +4015360002,4,1536,2,2021,76-01,QUEENS BOULEVARD,11373,H4,4,DEEP REALTY LLC,QUEENS,40.738814,-73.888135,404,25,485,4038388,4015360002,Elmhurst-Maspeth +4016340001,4,1634,1,2021,100-15,DITMARS BOULEVARD,11369,H2,4,STW LAGUARDIA LLC,QUEENS,40.770121,-73.870446,403,21,357,4619799,4016340001,East Elmhurst +4016400020,4,1640,20,2021,102-40,DITMARS BOULEVARD,11369,H3,4,"LAGUARDIA ASSOCIATES, L.P.",QUEENS,40.768306,-73.867533,403,21,357,4618555,4016400020,East Elmhurst +4016400025,4,1640,25,2021,104-04,DITMARS BOULEVARD,11369,H2,4,"LAGUARDIA ASSOCIATES, L.P.",QUEENS,40.767715,-73.86657,403,21,357,4312893,4016400025,East Elmhurst +4016410001,4,1641,1,2021,102-05,DITMARS BOULEVARD,11369,H3,4,KAR HOTEL OWNER LLC,QUEENS,40.768801,-73.868315,403,21,357,4040899,4016410001,East Elmhurst +4017060011,4,1706,11,2021,112-24,ASTORIA BOULEVARD,11369,H8,4,LGA HOSPITALITY LLC,QUEENS,40.759453,-73.857328,403,21,373,4000000,4017060011,East Elmhurst +4017061001,4,1706,1001,2021,112-15,NORTHERN BOULEVARD,11368,RH,4,UNAVAILABLE OWNER,QUEENS,40.758108,-73.857201,403,21,373,4594919,4017067501,East Elmhurst +4017820019,4,1782,19,2021,37-10,114 STREET,11368,H2,4,SAMCOM 48 DE LLC,QUEENS,40.754777,-73.85375,403,21,399,4044891,4017820019,Corona +4017860038,4,1786,38,2021,112-23,ROOSEVELT AVENUE,11368,H4,4,CORONA HOTEL REALTY LLC,QUEENS,40.752066,-73.85424,403,21,399,4539341,4017860038,Corona +4019690002,4,1969,2,2021,109-19,HORACE HARDING EXPRE,11368,H4,4,AGGRESSIVE RLTY CORP,QUEENS,40.738115,-73.850622,404,21,43701,4048461,4019690002,Corona +4019710001,4,1971,1,2021,113-10,HORACE HARDING EXPRE,11368,H3,4,SGTMI LLC,QUEENS,40.738851,-73.848661,404,21,43701,4048487,4019710001,Corona +4020130026,4,2013,26,2021,112-22,ROOSEVELT AVENUE,11368,H3,4,SHAHEN GUIRAGOSSIAN,QUEENS,40.752049,-73.854229,404,21,399,,,Corona +4023250032,4,2325,32,2021,64-06,QUEENS BOULEVARD,11377,H9,4,"QUEENS BLVD VENTURES, LLC",QUEENS,40.741093,-73.901321,402,26,245,4053651,4023250032,Woodside +4023650040,4,2365,40,2021,60-30,MAURICE AVENUE,11378,H3,4,NEIL HOSPITALITY L.L.C.,QUEENS,40.729151,-73.905008,405,30,515,4054291,4023650040,Maspeth +4024250033,4,2425,33,2021,68-18,GARFIELD AVENUE,11377,H6,4,KFG REALTY GROUP LLC,QUEENS,40.736247,-73.896612,402,30,243,4056148,4024250033,Elmhurst-Maspeth +4024480201,4,2448,201,2021,73-04,QUEENS BOULEVARD,11377,H9,4,METRO MOTEL LLC,QUEENS,40.739247,-73.890454,402,30,489,4056444,4024480201,Elmhurst-Maspeth +4024480202,4,2448,202,2021,73-06,QUEENS BOULEVARD,11377,H9,4,METRO MOTEL LLC,QUEENS,40.739241,-73.890433,402,30,489,,,Elmhurst-Maspeth +4024510001,4,2451,1,2021,76-02,QUEENS BOULEVARD,11373,H4,4,SHIV SHAKTI INC,QUEENS,40.738612,-73.887172,404,25,479,4056452,4024510001,Elmhurst-Maspeth +4024530040,4,2453,40,2021,79-00,QUEENS BOULEVARD,11373,H9,4,7900 DEVELOPMENT LLC,QUEENS,40.738146,-73.884686,404,25,479,4056461,4024530040,Elmhurst-Maspeth +4025070062,4,2507,62,2021,72-51,GRAND AVENUE,11378,H4,4,GRAND HOSPITALITY LLC,QUEENS,40.72894,-73.890525,405,30,497,4058784,4025070062,Maspeth +4026870021,4,2687,21,2021,59-40,55 DRIVE,11378,H3,4,KOM REALTY COMPANY,QUEENS,40.725977,-73.907574,405,30,531,,,Maspeth +4031480006,4,3148,6,2021,68-05,WOODHAVEN BOULEVARD,11374,H4,4,"68-05 WOODHAVEN ASSOCIATES, LLC",QUEENS,40.71534,-73.860452,406,29,703,4074398,4031480006,Rego Park +4033591003,4,3359,1003,2021,123-32,82 AVENUE,11415,RH,4,FORGE HOTEL LLC,QUEENS,40.712377,-73.828539,409,29,216,4596916,4033597501,Kew Gardens +4040940001,4,4094,1,2021,15-40,128 STREET,11356,H2,4,LY128 REALTY LLC,QUEENS,40.784548,-73.840349,407,19,947,4000000,4040940001,College Point +4041330001,4,4133,1,2021,127-03,20 AVENUE,11356,HH,4,127-03 20TH AVE LLC,QUEENS,40.7817,-73.841262,407,19,947,4098952,4041330001,College Point +4041480100,4,4148,100,2021,18-20,WHITESTONE EP SR W,11357,HS,4,DL-DW HOLDINGS LLC,QUEENS,40.783631,-73.825185,407,19,945,4536277,4041480100,Whitestone +4041720007,4,4172,7,2021,20-07,127 STREET,11356,H2,4,"THE POINT 128, LLC",QUEENS,40.781456,-73.841414,407,19,919,4099328,4041720007,College Point +4043220001,4,4322,1,2021,28-70,COLLEGE POINT BLVD,11354,H3,4,COLLEGE POINT ESTATE,QUEENS,40.771471,-73.843983,407,19,907,4570029,4043220001,College Point +4044080032,4,4408,32,2021,31-06,LINDEN PLACE,11354,H9,4,3108 LINDEN HOTEL INC.,QUEENS,40.769043,-73.832462,407,20,869,4592977,4044080032,Flushing +4044080037,4,4408,37,2021,31-16,LINDEN PLACE,11354,H9,4,3118 LINDEN INC,QUEENS,40.768927,-73.832415,407,20,869,4100784,4044080037,Flushing +4049500013,4,4950,13,2021,33-53,FARRINGTON STREET,11354,H4,4,33-53 FARRINGTON LLC,QUEENS,40.766328,-73.83253,407,20,869,4112005,4049500013,Flushing +4049500101,4,4950,101,2021,34-50,LINDEN PLACE,11354,H4,4,KRUPA HOSPITALITY LLC,QUEENS,40.765376,-73.830969,407,20,869,4112025,4049500101,Flushing +4049580025,4,4958,25,2021,134-32,35 AVENUE,11354,H4,4,UNAVAILABLE OWNER,QUEENS,40.764218,-73.832752,407,20,869,4308791,4049580025,Flushing +4049590037,4,4959,37,2021,137-07,NORTHERN BOULEVARD,11354,H2,4,PGS LLC,QUEENS,40.763219,-73.830942,407,20,869,4536854,4049590037,Flushing +4049620004,4,4962,4,2021,39-16,COLLEGE POINT BLVD,11354,H2,4,THE LEAVITT STREET LLC,QUEENS,40.758805,-73.83448,407,20,871,4539543,4049620004,Flushing +4049700041,4,4970,41,2021,133-43,37 AVENUE,11354,H3,4,HUNG YUEN HOLDING INC.,QUEENS,40.760684,-73.83349,407,20,869,4112228,4049700042,Flushing +4049700042,4,4970,42,2021,133-43,37 AVENUE,11354,H3,4,HUNG YUEN HOLDING INC.,QUEENS,40.760684,-73.83349,407,20,869,4112228,4049700042,Flushing +4049710006,4,4971,6,2021,36-31,PRINCE STREET,11354,H3,4,"PRINCETEL, LLC",QUEENS,40.761416,-73.832882,407,20,869,4539692,4049710006,Flushing +4049710016,4,4971,16,2021,36-18,MAIN STREET,11354,H2,4,CA PLAZA LLC,QUEENS,40.762471,-73.831681,407,20,869,4541700,4049710016,Flushing +4049710050,4,4971,50,2021,36-38,MAIN STREET,11354,H3,4,HUNG FAR REALTY LLC,QUEENS,40.762287,-73.831573,407,20,869,4112248,4049710050,Flushing +4049710069,4,4971,69,2021,135-21,37 AVENUE,11354,H4,4,CONFUCIUS HOLDING LLC,QUEENS,40.761165,-73.832182,407,20,869,4609724,4049710069,Flushing +4049711101,4,4971,1101,2021,36-27,PRINCE STREET,11354,RH,4,UNAVAILABLE OWNER,QUEENS,40.761438,-73.832889,407,20,869,4000000,4049717503,Flushing +4049720022,4,4972,22,2021,133-12,37 AVENUE,11354,H3,4,LEAVITT ENTERPRISE INC.,QUEENS,40.760413,-73.834292,407,20,871,4541577,4049720022,Flushing +4049720057,4,4972,57,2021,133-51,39 AVENUE,11354,H3,4,WINFAT REALTY INC,QUEENS,40.759123,-73.83414,407,20,871,4584150,4049720057,Flushing +4049721501,4,4972,1501,2021,133-12,37TH AVENUE,11354,RH,4,LEAVITT ENTERPRISE INC.,QUEENS,40.760413,-73.834292,407,20,871,4541577,4049720022,Flushing +4049731002,4,4973,1002,2021,133-42,39 AVENUE,11354,RH,4,OFS-HP LLC,QUEENS,40.759106,-73.83414,407,20,871,4596186,4049737501,Flushing +4049731003,4,4973,1003,2021,133-42,39 AVENUE,11354,RH,4,OFS-HP LLC,QUEENS,40.759106,-73.83414,407,20,871,4596186,4049737501,Flushing +4049731004,4,4973,1004,2021,133-42,39 AVENUE,11354,RH,4,OFS-HP LLC,QUEENS,40.759106,-73.83414,407,20,871,4596186,4049737501,Flushing +4049731005,4,4973,1005,2021,133-42,39 AVENUE,11354,RH,4,"39 PRINCE REALTY, LLC",QUEENS,40.759106,-73.83414,407,20,871,4596186,4049737501,Flushing +4049740049,4,4974,49,2021,135-33,38 AVENUE,11354,H4,4,DING FA REALTY LLC,QUEENS,40.760412,-73.83191,407,20,871,4457326,4049740049,Flushing +4049760015,4,4976,15,2021,135-13,ROOSEVELT AVENUE,11354,H2,4,"COOPER HOTEL INVESTORS, LLC",QUEENS,40.759102,-73.831498,407,20,871,4112316,4049760015,Flushing +4049770050,4,4977,50,2021,137-72,NORTHERN BOULEVARD,11354,HB,4,"CHON PROPERTY CORP,",QUEENS,40.763814,-73.82862,407,20,869,4112353,4049770050,Flushing +4051810015,4,5181,15,2021,42-23,UNION STREET,11355,H9,4,"X & Y DEVELOPMENT GROUP, LLC",QUEENS,40.757231,-73.824662,407,20,857,4610564,4051810015,Flushing +4063240020,4,6324,20,2021,220-33,NORTHERN BOULEVARD,11361,H2,4,ADRIA I LLC,QUEENS,40.76161,-73.760761,411,19,1471,4138722,4063240020,Bayside-Bayside Hills +4063270001,4,6327,1,2021,221-17,NORTHERN BOULEVARD,11361,H2,4,ADRIA I,QUEENS,40.761734,-73.760071,411,19,1471,4138736,4063270001,Bayside-Bayside Hills +4066340001,4,6634,1,2021,139-01,GRAND CENTRAL PKWY,11435,H4,4,DELTA KEW HOLDING CORP.,QUEENS,40.717179,-73.818953,408,24,77905,4143569,4066340001,Kew Gardens Hills +4068590005,4,6859,5,2021,82-85,PARSONS BOULEVARD,11432,H4,4,PARSONS HOSPITALITY LLC,QUEENS,40.716352,-73.807945,408,24,1267,4148527,4068590005,Pomonok-Flushing Heights-Hillcrest +4070670054,4,7067,54,2021,183-31,HORACE HARDING EXPRE,11365,H3,4,EAST WEST UNITED REALTY DEVELOPMENTGROUP LLC,QUEENS,40.739996,-73.790974,411,20,1417,4540394,4070670054,Auburndale +4070670063,4,7067,63,2021,183-15,HORACE HARDING EXPRE,11365,H3,4,EAST WEST REALTY DEVELOPMENT GROUP LLC,QUEENS,40.73999,-73.790992,411,20,1417,4540393,4070670063,Auburndale +4070750041,4,7075,41,2021,61-27,186 STREET,11365,H2,4,MAYFLOWER BUSINESS GROUP LLC,QUEENS,40.739881,-73.788243,408,23,1347,4541483,4070750041,Fresh Meadows-Utopia +4073350001,4,7335,1,2021,215-34,NORTHERN BOULEVARD,11361,H4,4,215 NORTHERN PROPERTY LLC,QUEENS,40.760674,-73.766396,411,19,1471,4157450,4073350001,Bayside-Bayside Hills +4086660001,4,8666,1,2021,249-05,JERICHO TURNPIKE,11426,H4,4,PARAS LLC,QUEENS,40.726569,-73.715716,413,23,1617,4177112,4086660001,Bellerose +4088310001,4,8831,1,2021,256-15,JERICHO TURNPIKE,11001,H4,4,"PARAMOUNT ESTATES, LLC",QUEENS,40.727692,-73.708347,413,23,157903,4180740,4088310001,Glen Oaks-Floral Park-New Hyde Park +4096190037,4,9619,37,2021,138-05,JAMAICA AVENUE,11435,H4,4,KCK REALTY CORP DBA/CLARION HOTEL,QUEENS,40.702505,-73.815018,412,24,214,4206307,4096190037,Briarwood-Jamaica Hills +4096200045,4,9620,45,2021,140-35,QUEENS BOULEVARD,11435,H2,4,ROCKFU REALTY LLC,QUEENS,40.703435,-73.814875,412,24,214,4206344,4096200045,Briarwood-Jamaica Hills +4096200060,4,9620,60,2021,140-17,QUEENS BOULEVARD,11435,H9,4,HILLSIDE HOTEL LLC,QUEENS,40.703625,-73.815,412,24,214,4593930,4096200060,Briarwood-Jamaica Hills +4096250001,4,9625,1,2021,87-05,VAN WYCK EXPWY SR E,11435,H4,4,"SIDHDHY VINAYAK,",QUEENS,40.705707,-73.817501,408,24,214,4206386,4096250001,Briarwood-Jamaica Hills +4096250006,4,9625,6,2021,139-06,QUEENS BOULEVARD,11435,H4,4,SIDHDHY VINAYAK CORP,QUEENS,40.70596,-73.816458,408,24,214,4206388,4096250006,Briarwood-Jamaica Hills +4096730001,4,9673,1,2021,139-01,JAMAICA AVENUE,11435,H4,4,SAVDA REALTY LLC,QUEENS,40.702482,-73.812854,412,24,214,4564650,4096730001,Briarwood-Jamaica Hills +4097600061,4,9760,61,2021,89-34,162 STREET,11432,H3,4,GOLDMINE MANAGEMENT LLC,QUEENS,40.705782,-73.798602,412,24,44601,4613455,4097600061,Jamaica +4098140034,4,9814,34,2021,164-40,HILLSIDE AVENUE,11432,H4,4,"HILLSIDE HOSPITALITY, INC.",QUEENS,40.709165,-73.797657,412,24,44602,4210058,4098140034,Jamaica +4098820010,4,9882,10,2021,172-14,HENLEY ROAD,11432,H8,4,"HENLEY ROAD SPE, LLC",QUEENS,40.713929,-73.791388,408,24,464,4594556,4098820010,Jamaica Estates-Holliswood +4099720036,4,9972,36,2021,90-35,VAN WYCK EXPRESSWAY,11435,H4,4,LINCOLN ATLANTIC MOTOR INN,QUEENS,40.700216,-73.814905,412,24,212,4213668,4099720036,Jamaica +4099820022,4,9982,22,2021,139-05,ARCHER AVENUE,11435,H4,4,"PRIDE HOSPITALITY, LLC",QUEENS,40.699498,-73.810994,412,24,212,4213815,4099820022,Jamaica +4099820023,4,9982,23,2021,139-01,ARCHER AVENUE,11435,H3,4,PRIDE MANAGEMENT LLC,QUEENS,40.699378,-73.811417,412,24,212,4213816,4099820023,Jamaica +4099910019,4,9991,19,2021,138-68,94 AVENUE,11435,H4,4,HARIOHM REALTY LLC,QUEENS,40.697873,-73.81048,412,27,208,4213923,4099910019,Jamaica +4099930029,4,9993,29,2021,145-07,95 AVENUE,11435,H4,4,"PRIDE VENTURES, LLC",QUEENS,40.69815,-73.807193,412,27,208,4213962,4099930029,Jamaica +4099940031,4,9994,31,2021,90-75,SUTPHIN BOULEVARD,11435,H3,4,90-75 SUTPHIN REALTY LLC,QUEENS,40.701675,-73.807908,412,27,212,4213968,4099940031,Jamaica +4099970097,4,9997,97,2021,149-03,ARCHER AVENUE,11435,H4,4,PRIDE HOTEL LLC,QUEENS,40.701218,-73.805078,412,27,212,4000000,4099970097,Jamaica +4099980110,4,9998,110,2021,148-22,ARCHER AVENUE,11435,H2,4,"ARCHER AVE REALTY DE, LLC",QUEENS,40.700999,-73.8058,412,27,208,4619928,4099980110,Jamaica +4100200114,4,10020,114,2021,144-15,LIBERTY AVENUE,11435,H3,4,144 INVESTORS LLC,QUEENS,40.692753,-73.808688,412,28,206,4000000,4100200114,Jamaica +4100300001,4,10030,1,2021,145-04,97 AVENUE,11435,H9,4,WALTHAM HOTEL LLC,QUEENS,40.696982,-73.806454,412,28,208,4538749,4100300001,Jamaica +4100300012,4,10030,12,2021,97-16,SUTPHIN BOULEVARD,11435,H2,4,MP HOSPITALITY LLC,QUEENS,40.697049,-73.805621,412,28,208,4214586,4100300012,Jamaica +4100310010,4,10031,10,2021,97-11,SUTPHIN BOULEVARD,11435,H3,4,"AIH GROUP, LLC",QUEENS,40.697112,-73.805635,412,28,208,4000000,4100310010,Jamaica +4100310014,4,10031,14,2021,97-24,147 PLACE,11435,H3,4,147TH PLACE LLC,QUEENS,40.697375,-73.80487,412,28,208,,,Jamaica +4100410006,4,10041,6,2021,143-18,PINEGROVE STREET,11385,H6,4,LIBERTY HOSPITALITY LLC,,,,,,,,, +4101080316,4,10108,316,2021,95-65,TUCKERTON STREET,11433,H4,4,"LIBERTY TUCK, LLC.",QUEENS,40.700017,-73.801284,412,27,208,4542200,4101080316,Jamaica +4103300110,4,10330,110,2021,177-08,LIBERTY AVENUE,11433,H4,4,"AHI GROUP, LLC",QUEENS,40.705423,-73.78234,412,27,440,4220102,4103300110,South Jamaica +4103520050,4,10352,50,2021,183-02,JAMAICA AVENUE,11423,HR,4,HOLLIS HOSPITALITY LLC,QUEENS,40.708924,-73.777116,412,27,444,4438798,4103520050,Jamaica +4107890268,4,10789,268,2021,220-16,JAMAICA AVENUE,11428,H4,4,"ULTIMATE HOSPITALITY GROUP, LLC",QUEENS,40.719098,-73.734052,413,27,568,4231221,4107890268,Queens Village +4107950001,4,10795,1,2021,222-17,HEMPSTEAD AVENUE,11429,H4,4,PEACHTREE MANAGEMENT LLC,QUEENS,40.712274,-73.731785,413,27,568,4231236,4107950001,Queens Village +4114040128,4,11404,128,2021,137-30,REDDING STREET,11417,H3,4,PATKIN HOLDING LLC,QUEENS,40.672059,-73.843913,410,32,58,4539310,4114040136,Ozone Park +4114040136,4,11404,136,2021,137-30,REDDING STREET,11417,H3,4,SUPERIOR REDDING HOLDING LLC,QUEENS,40.672059,-73.843913,410,32,58,4539310,4114040136,Ozone Park +4115290040,4,11529,40,2021,137-27,CROSS BAY BOULEVARD,11417,H4,4,MAHALAXMI INN CORP,QUEENS,40.671371,-73.842985,410,32,88,4248623,4115290040,Ozone Park +4116390022,4,11639,22,2021,111-26,VAN WYCK EXPRESSWAY,11420,H4,4,SUPERIOR VAN WYCK HOTEL LLC,QUEENS,40.68386,-73.806744,410,28,172,4539462,4116390022,South Ozone Park +4117050036,4,11705,36,2021,113-18,ROCKAWAY BOULEVARD,11420,H4,4,AUM SIDHDHY VINKAYAK HOSPITALITY LLC,QUEENS,40.677107,-73.825194,410,32,864,4253244,4117050036,South Ozone Park +4118860001,4,11886,1,2021,148-18,134 STREET,11430,H2,4,STAR CANYON LLC,QUEENS,40.666023,-73.805798,410,28,84602,4257534,4118860001,South Ozone Park +4118860010,4,11886,10,2021,132-26,SOUTH CONDUIT AVENUE,11430,H2,4,MLT CANYON LLC C/O J,QUEENS,40.666198,-73.807246,410,28,84602,4257535,4118860010,South Ozone Park +4118860021,4,11886,21,2021,132-10,149 AVENUE,11420,H4,4,CANYON & CIE LLC C/O,,,,,,,,, +4120930020,4,12093,20,2021,138-10,135 AVENUE,11436,H3,4,IDLEWILD REALTY LLC,QUEENS,40.667788,-73.799719,412,28,792,4262608,4120930020,Baisley Park +4120930034,4,12093,34,2021,135-30,140 STREET,11436,H2,4,"JFK HOTEL OWNER, LLC",QUEENS,40.667832,-73.798114,412,28,792,4262609,4120930034,Baisley Park +4120990001,4,12099,1,2021,144-02,135 AVENUE,11436,H3,4,135TH AVENUE JFK PROPERTY LLC,QUEENS,40.668289,-73.79599,412,28,792,4262620,4120990030,Baisley Park +4120990016,4,12099,16,2021,145-11,NORTH CONDUIT AVENUE,11436,H3,4,JFK,QUEENS,40.667227,-73.794122,412,28,792,4518485,4120990016,Baisley Park +4120990030,4,12099,30,2021,144-02,135 AVENUE,11436,H3,4,UNAVAILABLE OWNER,QUEENS,40.668289,-73.79599,412,28,792,4262620,4120990030,Baisley Park +4120990050,4,12099,50,2021,144-10,135 AVENUE,11436,H3,4,"ASAP 135TH AVE JAMAICA, LLC",QUEENS,40.668275,-73.7959,412,28,792,4518486,4120990050,Baisley Park +4121300014,4,12130,14,2021,151-20,BAISLEY BOULEVARD,11434,H3,4,"JFK LAND ACQUISITION, L.P.",QUEENS,40.667485,-73.786869,412,28,294,4263144,4121300014,Springfield Gardens North +4121340009,4,12134,9,2021,151-51,NORTH CONDUIT AVENUE,11434,H4,4,MAYA ESTATE LLC,QUEENS,40.667546,-73.782914,412,28,294,4263180,4121340009,Springfield Gardens North +4121370001,4,12137,1,2021,152-02,136 AVENUE,11434,H9,4,CRANSTON HOTEL LLC,QUEENS,40.668249,-73.783114,412,28,294,4614750,4121370001,Springfield Gardens North +4122920037,4,12292,37,2021,153-75,ROCKAWAY BOULEVARD,11434,H4,4,RISINGSAM ROCKAWAY LLC,QUEENS,40.668834,-73.781886,412,28,294,4539480,4122920037,Springfield Gardens North +4123010015,4,12301,15,2021,153-99,ROCKAWAY BOULEVARD,11434,H4,4,CROWN MOTOR INN L P C,QUEENS,40.668119,-73.781153,412,28,294,4442282,4123010015,Springfield Gardens North +4123010019,4,12301,19,2021,153-95,ROCKAWAY BOULEVARD,11434,H4,4,"AMERICAN PROSPERITY, LLC",QUEENS,40.668284,-73.781322,412,28,294,4266623,4123010019,Springfield Gardens North +4123350061,4,12335,61,2021,115-05,GUY R BREWER BLVD,11434,H3,4,"115 AVE REALTY, LLC",QUEENS,40.687452,-73.784883,412,28,278,4267220,4123350061,Baisley Park +4134060028,4,13406,28,2021,178-02,147 AVENUE,11434,H9,4,UNIVERSAL HOTEL LLC,QUEENS,40.6603,-73.767695,413,31,320,4286150,4134060028,Springfield Gardens South-Brookville +4138950001,4,13895,1,2021,154-71,BROOKVILLE BOULEVARD,11422,H3,4,"BRISAM JFK, LLC",QUEENS,40.640284,-73.743537,413,31,664,4538343,4138950001,Rosedale +4142070114,4,14207,114,2021,164-33,CROSS BAY BOULEVARD,11414,H4,4,MPJ ENTERPRISES INC,QUEENS,40.650177,-73.837636,410,32,892,4296025,4142070114,Lindenwood-Howard Beach +4150000056,4,15000,56,2021,144-36,153 LANE,11434,H3,4,PUSHPA HOLDING LLC,QUEENS,40.666087,-73.784973,413,31,306,4535984,4150000056,Springfield Gardens South-Brookville +4150010087,4,15001,87,2021,144-25,153 LANE,11434,H3,4,"STERLING & CIE, LLC",QUEENS,40.666104,-73.784955,413,31,306,4531387,4150010087,Springfield Gardens South-Brookville +4150010105,4,15001,105,2021,153-70,SOUTH CONDUIT AVENUE,11434,H3,4,STERLING & CIE LLC,QUEENS,40.66641,-73.784662,413,31,306,4531388,4150010105,Springfield Gardens South-Brookville +4150010127,4,15001,127,2021,144-26,153 COURT,11434,H4,4,"MASTRONARDI, VINCENZO",QUEENS,40.665671,-73.784038,413,31,306,4531128,4150010127,Springfield Gardens South-Brookville +4150040001,4,15004,1,2021,154-10,SOUTH CONDUIT AVENUE,11434,H4,4,ROYAL YORK EQUITIESCORP,QUEENS,40.666592,-73.782038,413,31,306,4296614,4150040001,Springfield Gardens South-Brookville +4150090051,4,15009,51,2021,156-06,ROCKAWAY BOULEVARD,11434,H3,4,NBS NY LLC,QUEENS,40.666673,-73.779878,413,31,306,4296629,4150090051,Springfield Gardens South-Brookville +4157050081,4,15705,81,2021,1025,BEACH 21 STREET,11691,H9,4,1025 BEACH LLC,QUEENS,40.602993,-73.753961,414,31,100802,4607296,4157050084,Far Rockaway-Bayswater +4157050084,4,15705,84,2021,1021,BEACH 21 STREET,11691,H9,4,SUPERIOR BEACH 21ST LLC,QUEENS,40.602928,-73.75398,414,31,100802,4607295,4157050081,Far Rockaway-Bayswater +4157050140,4,15705,140,2021,10-74,BEACH 22 STREET,11691,H9,4,"BEACH 22, LLC",QUEENS,40.60397,-73.754739,414,31,100802,4442123,4157050140,Far Rockaway-Bayswater +4158520060,4,15852,60,2021,43-17,ROCKAWAY BEACH BLVD,11691,H3,4,UNAVAILABLE OWNER,QUEENS,40.593723,-73.774761,414,31,97204,4538574,4158520060,Hammels-Arverne-Edgemere +4161800001,4,16180,1,2021,108-02,ROCKAWAY BEACH BLVD,11694,HB,4,ROCKAWAY HOTEL OWNER LLC,QUEENS,40.581834,-73.830051,414,32,938,4436307,4161640005,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +4161860060,4,16186,60,2021,158,BEACH 114 STREET,11694,H4,4,D.PIPER ENTERPRISES INC.,QUEENS,40.579495,-73.834939,414,32,938,4303903,4161860060,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +4161880068,4,16188,68,2021,162,BEACH 116 STREET,11694,HR,4,160 BEACH 116TH RLTYCP,QUEENS,40.578937,-73.836686,414,32,938,4303941,4161880068,Breezy Point-Belle Harbor-Rockaway Park-Broad Channel +5000011402,5,1,1402,2021,35R,BAY STREET,10301,RH,4,5 BAY STREET PHASE 3 LLC,STATEN IS,40.6415,-74.075734,501,49,3,,,West New Brighton-New Brighton-St. George +5000050039,5,5,39,2021,71,CENTRAL AVENUE,10301,H9,4,SMA REALTY ASSOCIATES,STATEN IS,40.640179,-74.076597,501,49,3,5000023,5000050039,West New Brighton-New Brighton-St. George +5006200100,5,620,100,2021,1,CAMPUS ROAD,10301,H8,4,WAGNER COLLEGE,STATEN IS,40.612357,-74.092035,501,49,47,5113454,5006200001,Grymes Hill-Clifton-Fox Hills +5007510009,5,751,9,2021,535,NORTH GANNON AVENUE,10314,H3,4,"VICTORY HOSPITALITY, LLC",STATEN IS,40.608515,-74.147014,501,50,18901,5106940,5007510009,Westerleigh +5017250510,5,1725,510,2021,1120,SOUTH AVENUE,10314,H3,4,NICOTRA 1100 LLC,STATEN IS,40.612403,-74.17549,502,50,29102,5151613,5017250510,New Springville-Bloomfield-Travis +5017250570,5,1725,570,2021,1100,SOUTH AVENUE,10314,H2,4,NICOTRA HOTEL I LLC,STATEN IS,40.612474,-74.175436,502,50,29102,5141912,5017250570,New Springville-Bloomfield-Travis +5026470001,5,2647,1,2021,290,WILD AVENUE,10314,H3,4,RUPSON OF HYDE PARK INC.,STATEN IS,40.587016,-74.191359,502,50,29102,5151190,5026470001,New Springville-Bloomfield-Travis +5026470013,5,2647,13,2021,300,WILD AVENUE,10314,H3,4,K.K. SANKAR MAHADEV CORP.,STATEN IS,40.586823,-74.191527,502,50,29102,5151191,5026470013,New Springville-Bloomfield-Travis +5026470021,5,2647,21,2021,310,WILD AVENUE,10314,H3,4,AKASH HOTELS LLC,STATEN IS,40.586631,-74.1917,502,50,29102,5151192,5026470021,New Springville-Bloomfield-Travis +5028290070,5,2829,70,2021,1,HYLAN BOULEVARD,10305,H9,4,OB HARBOR HOUSE LLC,STATEN IS,40.615575,-74.063231,501,49,6,5042152,5028290070,Stapleton-Rosebank +5029930001,5,2993,1,2021,481,HYLAN BOULEVARD,10305,H4,4,"BHADRIKA, L.L.C.",STATEN IS,40.608109,-74.076326,501,49,36,5093255,5029930001,Stapleton-Rosebank +5032240019,5,3224,19,2021,1274,HYLAN BOULEVARD,10305,H4,4,R A J MOTEL INC,STATEN IS,40.597368,-74.084913,502,50,64,5047286,5032240019,Grasmere-Arrochar-Ft. Wadsworth +5038750026,5,3875,26,2021,630,MIDLAND AVENUE,10306,H4,4,630 MIDLAND CORP,STATEN IS,40.571192,-74.091057,502,50,11202,5055032,5038750026,New Dorp-Midland Beach +5066680094,5,6668,94,2021,51,WILBUR STREET,10309,H4,4,A GUDDEMI,STATEN IS,40.515283,-74.194552,503,51,198,5082754,5066680094,Annadale-Huguenot-Prince's Bay-Eltingville +5070670090,5,7067,90,2021,39,ST LUKES AVENUE,10309,HB,4,JOHN VINCENT SCALIA,STATEN IS,40.553824,-74.216904,503,51,20801,5086591,5070670090,Rossville-Woodrow +5073650001,5,7365,1,2021,2600,VETERANS ROAD WEST,10309,H4,4,M & R ENTERPRISES OF,STATEN IS,40.533481,-74.224756,503,51,226,5086844,5073650001,Charleston-Richmond Valley-Tottenville +5075840099,5,7584,99,2021,110,SOUTH BRIDGE STREET,10309,H4,4,100-110 SOUTH BRIDGE LLC,STATEN IS,40.525055,-74.237788,503,51,226,,,Charleston-Richmond Valley-Tottenville diff --git a/data/nyc_hotel_data2.csv b/data/nyc_hotel_data2.csv new file mode 100644 index 00000000..182dfb89 --- /dev/null +++ b/data/nyc_hotel_data2.csv @@ -0,0 +1,2732 @@ +postcode,borough,latitude,longitude +10004,MANHATTAN,40.703235,-74.012421 +10004,MANHATTAN,40.702744,-74.012201 +10004,MANHATTAN,40.704025,-74.012638 +10004,MANHATTAN,40.704039,-74.01231700000001 +10282,MANHATTAN,40.714812,-74.016153 +10004,MANHATTAN,40.705523,-74.01711 +10006,MANHATTAN,40.707632000000004,-74.013068 +10004,MANHATTAN,40.704703,-74.010398 +10005,MANHATTAN,40.705486,-74.007874 +10005,MANHATTAN,40.704638,-74.006694 +10005,MANHATTAN,40.705187,-74.00636899999999 +10005,MANHATTAN,40.705431,-74.00705500000001 +10005,MANHATTAN,40.705299,-74.007242 +10005,MANHATTAN,40.706773,-74.00914300000001 +10005,MANHATTAN,40.706523,-74.00825999999999 +10005,MANHATTAN,40.7064,-74.008043 +10005,MANHATTAN,40.7064,-74.008043 +10006,MANHATTAN,40.709468,-74.01293100000001 +10006,MANHATTAN,40.708351,-74.014323 +10006,MANHATTAN,40.708321000000005,-74.01345 +10006,MANHATTAN,40.708263,-74.013475 +10006,MANHATTAN,40.709139,-74.01402 +10006,MANHATTAN,40.709493,-74.014976 +10006,MANHATTAN,40.709728999999996,-74.013818 +10038,MANHATTAN,40.708931,-74.009035 +10038,MANHATTAN,40.709669,-74.010092 +10038,MANHATTAN,40.709765000000004,-74.008765 +10038,MANHATTAN,40.710037,-74.00977900000001 +10038,MANHATTAN,40.708028000000006,-74.00793900000001 +10038,MANHATTAN,40.707753000000004,-74.006918 +10038,MANHATTAN,40.707086,-74.00624300000001 +10038,MANHATTAN,40.707704,-74.006644 +10038,MANHATTAN,40.705714,-74.005399 +10038,MANHATTAN,40.706051,-74.0051 +10038,MANHATTAN,40.708988,-74.007654 +10038,MANHATTAN,40.709728999999996,-74.006792 +10038,MANHATTAN,40.709916,-74.008949 +10007,MANHATTAN,40.711453000000006,-74.010504 +10038,MANHATTAN,40.710764000000005,-74.007708 +10038,MANHATTAN,40.711393,-74.00666600000001 +10038,MANHATTAN,40.710962,-74.00686400000001 +10038,MANHATTAN,40.710306,-74.006828 +10038,MANHATTAN,40.71055,-74.005771 +10038,MANHATTAN,40.71055,-74.005771 +10038,MANHATTAN,40.71055,-74.005771 +10038,MANHATTAN,40.709021,-74.00227199999999 +10038,MANHATTAN,40.707962,-74.001706 +10007,MANHATTAN,40.712987,-74.008686 +10007,MANHATTAN,40.715205,-74.009476 +10007,MANHATTAN,40.715309000000005,-74.00875500000001 +10013,MANHATTAN,40.716114000000005,-74.00737 +10013,MANHATTAN,40.715002,-73.999628 +10013,MANHATTAN,40.716968,-74.00188299999999 +10013,MANHATTAN,40.719783,-74.010227 +10013,MANHATTAN,40.719128000000005,-74.005166 +10013,MANHATTAN,40.718488,-74.00264399999999 +10013,MANHATTAN,40.719358,-74.00190500000001 +10013,MANHATTAN,40.718096,-74.00133100000001 +10013,MANHATTAN,40.715763,-73.996378 +10013,MANHATTAN,40.717321999999996,-73.99557 +10013,MANHATTAN,40.719084,-73.999953 +10013,MANHATTAN,40.718515999999994,-74.000635 +10013,MANHATTAN,40.721,-74.004152 +10013,MANHATTAN,40.721068,-74.005758 +10013,MANHATTAN,40.721634,-74.004412 +10013,MANHATTAN,40.722827,-74.004726 +10013,MANHATTAN,40.719904,-74.00030699999999 +10013,MANHATTAN,40.719891,-73.99875899999999 +10013,MANHATTAN,40.718128,-73.99499300000001 +10013,MANHATTAN,40.717821,-73.99515500000001 +10002,MANHATTAN,40.712433000000004,-73.99273199999999 +10038,MANHATTAN,40.712875,-73.998586 +10002,MANHATTAN,40.713149,-73.99298399999999 +10002,MANHATTAN,40.713761,-73.993666 +10002,MANHATTAN,40.714299,-73.993723 +10002,MANHATTAN,40.715389,-73.99353599999999 +10002,MANHATTAN,40.714771,-73.99265600000001 +10002,MANHATTAN,40.715018,-73.992313 +10002,MANHATTAN,40.717132,-73.99550500000001 +10002,MANHATTAN,40.716525,-73.994647 +10002,MANHATTAN,40.715916,-73.995127 +10002,MANHATTAN,40.717607,-73.995245 +10002,MANHATTAN,40.718403,-73.994665 +10002,MANHATTAN,40.717044,-73.992547 +10002,MANHATTAN,40.717969000000004,-73.986458 +10002,MANHATTAN,40.718559,-73.99 +10002,MANHATTAN,40.718559,-73.99 +10002,MANHATTAN,40.719967,-73.988023 +10002,MANHATTAN,40.719111,-73.988864 +10002,MANHATTAN,40.720362,-73.9882 +10002,MANHATTAN,40.721810999999995,-73.98746700000001 +10002,MANHATTAN,40.721853,-73.988304 +10002,MANHATTAN,40.718095,-73.990938 +10002,MANHATTAN,40.720040999999995,-73.98926 +10002,MANHATTAN,40.719454,-73.98956 +10002,MANHATTAN,40.721043,-73.988748 +10002,MANHATTAN,40.723137,-73.989303 +10002,MANHATTAN,40.722248,-73.988899 +10002,MANHATTAN,40.718707,-73.99268000000001 +10002,MANHATTAN,40.723382,-73.990144 +10002,MANHATTAN,40.719051,-73.994553 +10002,MANHATTAN,40.720741,-73.993864 +10002,MANHATTAN,40.721337,-73.992561 +10002,MANHATTAN,40.721949,-73.993402 +10002,MANHATTAN,40.722747999999996,-73.99310600000001 +10002,MANHATTAN,40.722786,-73.99146400000001 +10003,MANHATTAN,40.728269,-73.984803 +10003,MANHATTAN,40.725465,-73.991879 +10003,MANHATTAN,40.726046999999994,-73.991908 +10003,MANHATTAN,40.727751,-73.9912 +10003,MANHATTAN,40.728171,-73.990897 +10003,MANHATTAN,40.72821,-73.98868900000001 +10003,MANHATTAN,40.729279999999996,-73.990085 +10003,MANHATTAN,40.729793,-73.989703 +10003,MANHATTAN,40.729807,-73.989692 +10003,MANHATTAN,40.731415000000005,-73.98853299999999 +10013,MANHATTAN,40.719251,-73.994495 +10013,MANHATTAN,40.719018,-73.994589 +10013,MANHATTAN,40.719193,-73.996883 +10013,MANHATTAN,40.721524,-73.999278 +10013,MANHATTAN,40.723687,-74.005372 +10012,MANHATTAN,40.720687,-73.995173 +10013,MANHATTAN,40.720733,-73.997388 +10012,MANHATTAN,40.724183000000004,-74.003196 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10013,MANHATTAN,40.725615999999995,-74.005253 +10012,MANHATTAN,40.721891,-73.993445 +10012,MANHATTAN,40.722954,-73.99772 +10012,MANHATTAN,40.724697,-73.998694 +10012,MANHATTAN,40.726022,-73.99194 +10012,MANHATTAN,40.728281,-73.995501 +10012,MANHATTAN,40.729113,-73.997507 +10012,MANHATTAN,40.730236,-74.000274 +10003,MANHATTAN,40.729744000000004,-73.996399 +10003,MANHATTAN,40.729651000000004,-73.995068 +10003,MANHATTAN,40.730925,-73.995364 +10003,MANHATTAN,40.731913,-73.996587 +10003,MANHATTAN,40.732083,-73.99596600000001 +10003,MANHATTAN,40.731984000000004,-73.99573199999999 +10003,MANHATTAN,40.731918,-73.995576 +10003,MANHATTAN,40.731885,-73.995497 +10003,MANHATTAN,40.731819,-73.99534200000001 +10011,MANHATTAN,40.731408,-73.999307 +10011,MANHATTAN,40.73127,-73.999423 +10011,MANHATTAN,40.731821999999994,-73.99895699999999 +10011,MANHATTAN,40.73236,-73.998889 +10003,MANHATTAN,40.73183,-73.989836 +10003,MANHATTAN,40.732490999999996,-73.989428 +10003,MANHATTAN,40.732475,-73.989345 +10003,MANHATTAN,40.734122,-73.98917900000001 +10003,MANHATTAN,40.733801,-73.988407 +10003,MANHATTAN,40.731846999999995,-73.99144100000001 +10003,MANHATTAN,40.733233,-73.989944 +10003,MANHATTAN,40.733521,-73.995414 +10003,MANHATTAN,40.735879,-73.993335 +10011,MANHATTAN,40.732396,-73.99667 +10011,MANHATTAN,40.734495,-73.996128 +10011,MANHATTAN,40.736024,-73.995829 +10011,MANHATTAN,40.736655999999996,-73.995186 +10014,MANHATTAN,40.727222,-74.00631 +10014,MANHATTAN,40.727581,-74.005488 +10013,MANHATTAN,40.724145,-74.008522 +10013,MANHATTAN,40.726365,-74.009023 +10014,MANHATTAN,40.731177,-74.007988 +10014,MANHATTAN,40.732077000000004,-74.010374 +10011,MANHATTAN,40.736979999999996,-73.998098 +10014,MANHATTAN,40.736067999999996,-74.00439899999999 +10014,MANHATTAN,40.737814,-74.004518 +10014,MANHATTAN,40.737858,-74.004467 +10014,MANHATTAN,40.739919,-74.006106 +10014,MANHATTAN,40.733252,-74.010262 +10014,MANHATTAN,40.738153999999994,-74.009025 +10014,MANHATTAN,40.740624,-74.007719 +10014,MANHATTAN,40.740369,-74.005799 +10014,MANHATTAN,40.742172,-74.008282 +10011,MANHATTAN,40.748988,-74.00694 +10001,MANHATTAN,40.750662,-74.00343199999999 +10001,,, +10018,MANHATTAN,40.757615,-73.998509 +10011,MANHATTAN,40.746216,-74.005229 +10011,MANHATTAN,40.746216,-74.005229 +10001,MANHATTAN,40.751672,-73.998141 +10001,MANHATTAN,40.753281,-73.998145 +10001,MANHATTAN,40.754351,-73.99858499999999 +10001,MANHATTAN,40.755062,-73.998787 +10018,MANHATTAN,40.755438,-73.997217 +10018,MANHATTAN,40.755615999999996,-73.997592 +10018,MANHATTAN,40.75613,-73.99431899999999 +10014,MANHATTAN,40.740185,-74.003529 +10014,MANHATTAN,40.740133,-74.003403 +10011,MANHATTAN,40.741802,-74.003244 +10011,MANHATTAN,40.742233,-74.002494 +10011,MANHATTAN,40.743596999999994,-74.000281 +10011,MANHATTAN,40.744443,-73.999116 +10011,MANHATTAN,40.744956,-73.999769 +10001,MANHATTAN,40.749272999999995,-73.99625 +10001,MANHATTAN,40.750215000000004,-73.996521 +10001,MANHATTAN,40.749767,-73.99524 +10001,MANHATTAN,40.751915999999994,-73.994857 +10001,MANHATTAN,40.752295000000004,-73.993402 +10001,MANHATTAN,40.75342,-73.994294 +10001,MANHATTAN,40.753248,-73.993886 +10018,MANHATTAN,40.753824,-73.993362 +10018,MANHATTAN,40.753909,-73.993564 +10018,MANHATTAN,40.75398,-73.993723 +10018,MANHATTAN,40.754011,-73.993756 +10018,MANHATTAN,40.753978000000004,-73.993673 +10018,MANHATTAN,40.753626000000004,-73.99243100000001 +10018,MANHATTAN,40.754366999999995,-73.992752 +10018,MANHATTAN,40.754488,-73.993037 +10018,MANHATTAN,40.754332,-73.992622 +10018,MANHATTAN,40.755325,-73.993066 +10018,MANHATTAN,40.755169,-73.99270200000001 +10018,MANHATTAN,40.755097,-73.991363 +10018,MANHATTAN,40.755827000000004,-73.99238000000001 +10018,MANHATTAN,40.755932,-73.992626 +10018,MANHATTAN,40.755877000000005,-73.992453 +10018,MANHATTAN,40.75586,-73.992413 +10018,MANHATTAN,40.755825,-73.99233000000001 +10018,MANHATTAN,40.755602,-73.991803 +10018,MANHATTAN,40.755553000000006,-73.99168 +10018,MANHATTAN,40.756209000000005,-73.991359 +10018,MANHATTAN,40.756343,-73.99168399999999 +10018,MANHATTAN,40.756378999999995,-73.99176700000001 +10018,MANHATTAN,40.756412,-73.991846 +10018,MANHATTAN,40.756481,-73.992009 +10018,MANHATTAN,40.756516,-73.992088 +10011,MANHATTAN,40.742834,-73.998427 +10011,MANHATTAN,40.744305,-73.996157 +10011,MANHATTAN,40.744407,-73.996402 +10001,MANHATTAN,40.746896,-73.994489 +10001,MANHATTAN,40.747124,-73.995023 +10001,MANHATTAN,40.747195,-73.995193 +10001,MANHATTAN,40.748301,-73.993987 +10001,MANHATTAN,40.748765,-73.995947 +10001,MANHATTAN,40.751985,-73.99093 +10001,MANHATTAN,40.752119,-73.99120400000001 +10018,MANHATTAN,40.754315000000005,-73.99067 +10018,MANHATTAN,40.755369,-73.989374 +10018,MANHATTAN,40.755852000000004,-73.990785 +10011,MANHATTAN,40.74335,-73.993833 +10011,MANHATTAN,40.743808,-73.992912 +10011,MANHATTAN,40.74408,-73.993558 +10001,MANHATTAN,40.744461,-73.992544 +10011,MANHATTAN,40.743858,-73.99298399999999 +10001,MANHATTAN,40.744871,-73.993515 +10001,MANHATTAN,40.745422,-73.99290500000001 +10001,MANHATTAN,40.744596,-73.992818 +10001,MANHATTAN,40.745175,-73.992277 +10001,MANHATTAN,40.745867,-73.99205 +10001,MANHATTAN,40.746468,-73.993912 +10001,MANHATTAN,40.74635,-73.991274 +10001,MANHATTAN,40.746484,-73.991598 +10001,MANHATTAN,40.746553000000006,-73.991761 +10001,MANHATTAN,40.746449,-73.991465 +10001,MANHATTAN,40.746413000000004,-73.991382 +10001,MANHATTAN,40.746396000000004,-73.991342 +10001,MANHATTAN,40.746259,-73.991017 +10001,MANHATTAN,40.746237,-73.990736 +10001,MANHATTAN,40.747036,-73.990988 +10001,MANHATTAN,40.746805,-73.989974 +10001,MANHATTAN,40.747752,-73.990728 +10001,MANHATTAN,40.748208,-73.98992 +10001,MANHATTAN,40.748806,-73.992204 +10001,MANHATTAN,40.749794,-73.991486 +10018,MANHATTAN,40.752465,-73.989544 +10018,MANHATTAN,40.753029999999995,-73.985732 +10018,MANHATTAN,40.753313,-73.98635999999999 +10011,MANHATTAN,40.738566,-73.99379300000001 +10010,MANHATTAN,40.742823,-73.990538 +10010,MANHATTAN,40.742696,-73.99024200000001 +10010,MANHATTAN,40.743333,-73.989885 +10001,MANHATTAN,40.74391,-73.98899999999999 +10001,MANHATTAN,40.74431,-73.988924 +10001,MANHATTAN,40.744821,-73.989527 +10001,MANHATTAN,40.744821,-73.988805 +10001,MANHATTAN,40.745474,-73.989148 +10001,MANHATTAN,40.7454,-73.98871899999999 +10001,MANHATTAN,40.744821,-73.987207 +10001,MANHATTAN,40.745608000000004,-73.988661 +10001,MANHATTAN,40.746149,-73.988877 +10001,MANHATTAN,40.746223,-73.98905400000001 +10001,MANHATTAN,40.746635,-73.988491 +10001,MANHATTAN,40.746286,-73.986142 +10001,MANHATTAN,40.746712,-73.98638299999999 +10001,MANHATTAN,40.747122999999995,-73.98736099999999 +10001,MANHATTAN,40.747074,-73.988386 +10001,MANHATTAN,40.746956,-73.986917 +10001,MANHATTAN,40.747381,-73.986051 +10001,MANHATTAN,40.7484,-73.98814399999999 +10001,MANHATTAN,40.747686,-73.98673000000001 +10001,MANHATTAN,40.747465999999996,-73.98621 +10001,MANHATTAN,40.749717,-73.985567 +10001,MANHATTAN,40.750316,-73.987379 +10001,MANHATTAN,40.750485999999995,-73.987256 +10001,MANHATTAN,40.749986,-73.986159 +10001,MANHATTAN,40.74992,-73.98600400000001 +10001,MANHATTAN,40.749765999999994,-73.985636 +10018,MANHATTAN,40.750494,-73.985473 +10018,MANHATTAN,40.750571,-73.985661 +10018,MANHATTAN,40.750603999999996,-73.985736 +10018,MANHATTAN,40.750667,-73.985884 +10018,MANHATTAN,40.750559,-73.983708 +10018,MANHATTAN,40.750038,-73.983409 +10018,MANHATTAN,40.750038,-73.983409 +10018,MANHATTAN,40.751114,-73.985025 +10018,MANHATTAN,40.750864,-73.98439 +10018,MANHATTAN,40.750826,-73.984296 +10018,MANHATTAN,40.750746,-73.984112 +10018,MANHATTAN,40.75065,-73.98388100000001 +10018,MANHATTAN,40.751473,-73.983964 +10018,MANHATTAN,40.752404,-73.985866 +10018,MANHATTAN,40.751773,-73.984628 +10018,MANHATTAN,40.751597,-73.984213 +10018,MANHATTAN,40.751424,-73.983798 +10018,MANHATTAN,40.751344,-73.983614 +10018,MANHATTAN,40.75233,-73.984076 +10018,MANHATTAN,40.753046000000005,-73.983859 +10018,MANHATTAN,40.752505,-73.982574 +10003,MANHATTAN,40.736139,-73.99104399999999 +10003,MANHATTAN,40.738865000000004,-73.98986 +10010,MANHATTAN,40.740909,-73.98794699999999 +10016,MANHATTAN,40.743843,-73.987196 +10016,MANHATTAN,40.743487,-73.986088 +10016,MANHATTAN,40.744269,-73.985518 +10016,MANHATTAN,40.743805,-73.983739 +10005,MANHATTAN,40.744721999999996,-73.985489 +10016,MANHATTAN,40.745111,-73.984503 +10016,MANHATTAN,40.745512,-73.985449 +10016,MANHATTAN,40.744704999999996,-73.983082 +10016,MANHATTAN,40.745693,-73.984453 +10016,MANHATTAN,40.746083,-73.984897 +10016,MANHATTAN,40.746212,-73.985203 +10016,MANHATTAN,40.746206,-73.98514200000001 +10016,MANHATTAN,40.746324,-73.98355 +10016,MANHATTAN,40.746334999999995,-73.983579 +10016,MANHATTAN,40.746786,-73.984651 +10016,MANHATTAN,40.746327,-73.983514 +10016,MANHATTAN,40.7476,-73.982586 +10016,MANHATTAN,40.746895,-73.98294399999999 +10016,MANHATTAN,40.749193,-73.984001 +10016,MANHATTAN,40.749878,-73.981406 +10016,MANHATTAN,40.749461,-73.979619 +10016,MANHATTAN,40.750002,-73.98131500000001 +10016,MANHATTAN,40.750004,-73.980435 +10016,MANHATTAN,40.749759999999995,-73.979403 +10016,MANHATTAN,40.750636,-73.980063 +10016,MANHATTAN,40.751141,-73.981254 +10016,MANHATTAN,40.750652,-73.980052 +10003,MANHATTAN,40.736644,-73.98894399999999 +10003,MANHATTAN,40.736098,-73.987215 +10003,MANHATTAN,40.737679,-73.986234 +10010,MANHATTAN,40.738315,-73.98561600000001 +10010,MANHATTAN,40.739416,-73.984498 +10010,MANHATTAN,40.73935,-73.982787 +10010,MANHATTAN,40.739298,-73.982823 +10010,MANHATTAN,40.740590999999995,-73.985237 +10010,MANHATTAN,40.739973,-73.98232900000001 +10010,MANHATTAN,40.741043,-73.98361700000001 +10016,MANHATTAN,40.742218,-73.984872 +10016,MANHATTAN,40.74283,-73.982912 +10016,MANHATTAN,40.744178000000005,-73.98344300000001 +10016,MANHATTAN,40.743790999999995,-73.983237 +10016,MANHATTAN,40.743511,-73.982573 +10016,MANHATTAN,40.743969,-73.981483 +10016,MANHATTAN,40.744762,-73.98175400000001 +10016,MANHATTAN,40.745465,-73.981512 +10016,MANHATTAN,40.747432,-73.97689100000001 +10016,MANHATTAN,40.748607,-73.978104 +10016,MANHATTAN,40.749631,-73.97766999999999 +10016,MANHATTAN,40.749779,-73.978024 +10016,MANHATTAN,40.74937,-73.97699899999999 +10016,MANHATTAN,40.749318,-73.976873 +10016,MANHATTAN,40.749952,-73.976519 +10016,MANHATTAN,40.750402,-73.977591 +10003,MANHATTAN,40.733391,-73.98709699999999 +10003,MANHATTAN,40.733106,-73.986711 +10003,MANHATTAN,40.733638,-73.98585200000001 +10003,MANHATTAN,40.734761,-73.984711 +10010,MANHATTAN,40.738603000000005,-73.982582 +10010,MANHATTAN,40.739585999999996,-73.982589 +10003,MANHATTAN,40.732189,-73.984539 +10003,MANHATTAN,40.732592,-73.983417 +10010,MANHATTAN,40.737826,-73.978717 +10010,MANHATTAN,40.73877,-73.979045 +10010,MANHATTAN,40.738797,-73.979114 +10010,MANHATTAN,40.739118,-73.977941 +10016,MANHATTAN,40.742233,-73.974659 +10036,MANHATTAN,40.754529,-73.985458 +10036,MANHATTAN,40.755569,-73.986465 +10036,MANHATTAN,40.755338,-73.985313 +10036,MANHATTAN,40.756021999999994,-73.984808 +10036,MANHATTAN,40.755873,-73.984454 +10036,MANHATTAN,40.756461,-73.983952 +10036,MANHATTAN,40.75654,-73.98414 +10036,MANHATTAN,40.75673,-73.984548 +10036,MANHATTAN,40.75657,-73.984169 +10036,MANHATTAN,40.756491,-73.983977 +10036,MANHATTAN,40.757218,-73.983786 +10036,MANHATTAN,40.757267999999996,-73.98385400000001 +10036,MANHATTAN,40.757163,-73.983613 +10036,MANHATTAN,40.757114,-73.983494 +10036,MANHATTAN,40.757026,-73.98329100000001 +10036,MANHATTAN,40.757781,-73.983197 +10036,MANHATTAN,40.757811,-73.98323 +10036,MANHATTAN,40.758428,-73.982789 +10036,MANHATTAN,40.758461,-73.982869 +10036,MANHATTAN,40.759055,-73.98470999999999 +10036,MANHATTAN,40.759055,-73.98470999999999 +10036,MANHATTAN,40.759055,-73.98470999999999 +10036,MANHATTAN,40.759293,-73.984543 +10036,MANHATTAN,40.758678,-73.98334200000001 +10036,MANHATTAN,40.758577,-73.9831 +10036,MANHATTAN,40.759293,-73.982854 +10019,MANHATTAN,40.759797999999996,-73.98217199999999 +10019,MANHATTAN,40.761431,-73.98214200000001 +10019,MANHATTAN,40.762674,-73.982095 +10019,MANHATTAN,40.762218,-73.97874200000001 +10019,MANHATTAN,40.762218,-73.97874200000001 +10019,MANHATTAN,40.762218,-73.97874200000001 +10019,MANHATTAN,40.762218,-73.97874200000001 +10019,MANHATTAN,40.762218,-73.97874200000001 +10019,MANHATTAN,40.763245,-73.980582 +10019,MANHATTAN,40.76358,-73.979474 +10019,MANHATTAN,40.764313,-73.980903 +10019,MANHATTAN,40.764559999999996,-73.979867 +10019,MANHATTAN,40.764074,-73.978669 +10019,MANHATTAN,40.764455,-73.977532 +10019,MANHATTAN,40.764688,-73.978095 +10019,MANHATTAN,40.764705,-73.978084 +10019,MANHATTAN,40.764427000000005,-73.977131 +10019,MANHATTAN,40.765668,-73.97831500000001 +10019,MANHATTAN,40.765205,-73.979279 +10019,MANHATTAN,40.766256,-73.97949100000001 +10019,MANHATTAN,40.766613,-73.978473 +10019,MANHATTAN,40.766613,-73.978473 +10019,MANHATTAN,40.766613,-73.978473 +10018,MANHATTAN,40.754971000000005,-73.988392 +10036,MANHATTAN,40.755596999999995,-73.987999 +10036,MANHATTAN,40.755717,-73.98828 +10036,MANHATTAN,40.756747,-73.988659 +10036,MANHATTAN,40.757309,-73.98790100000001 +10036,MANHATTAN,40.757482,-73.988309 +10036,MANHATTAN,40.758663,-73.988738 +10036,MANHATTAN,40.758267,-73.98546800000001 +10036,MANHATTAN,40.759132,-73.98634799999999 +10036,MANHATTAN,40.759008,-73.986052 +10036,MANHATTAN,40.759246999999995,-73.985168 +10036,MANHATTAN,40.760453999999996,-73.98565500000001 +10036,MANHATTAN,40.75931,-73.98485699999999 +10036,MANHATTAN,40.760375,-73.985189 +10019,MANHATTAN,40.761014,-73.985052 +10019,MANHATTAN,40.761124,-73.985312 +10019,MANHATTAN,40.761127,-73.98694 +10019,MANHATTAN,40.761613,-73.984521 +10019,MANHATTAN,40.761654,-73.984619 +10019,MANHATTAN,40.761102,-73.985218 +10019,MANHATTAN,40.761102,-73.985218 +10019,MANHATTAN,40.762164,-73.983575 +10019,MANHATTAN,40.762159000000004,-73.98355699999999 +10019,MANHATTAN,40.763781,-73.982611 +10019,MANHATTAN,40.764264000000004,-73.982997 +10019,MANHATTAN,40.764538,-73.982279 +10019,MANHATTAN,40.764291,-73.982824 +10019,MANHATTAN,40.764953000000006,-73.98270500000001 +10019,MANHATTAN,40.765665999999996,-73.982499 +10019,MANHATTAN,40.765782,-73.98354599999999 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764928000000005,-73.980752 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10019,MANHATTAN,40.764521,-73.980773 +10036,MANHATTAN,40.758295000000004,-73.992719 +10036,MANHATTAN,40.758756,-73.989395 +10036,MANHATTAN,40.758912,-73.989763 +10036,MANHATTAN,40.75908,-73.990117 +10036,MANHATTAN,40.759485999999995,-73.989135 +10036,MANHATTAN,40.760359,-73.98928599999999 +10036,MANHATTAN,40.759996,-73.988388 +10036,MANHATTAN,40.760265000000004,-73.98759 +10036,MANHATTAN,40.760290000000005,-73.987572 +10036,MANHATTAN,40.760315000000006,-73.987554 +10036,MANHATTAN,40.761377,-73.987803 +10036,MANHATTAN,40.761259,-73.98751700000001 +10019,MANHATTAN,40.761133,-73.986958 +10019,MANHATTAN,40.763249,-73.986467 +10019,MANHATTAN,40.763059000000005,-73.985557 +10019,MANHATTAN,40.767634,-73.98295999999999 +10019,MANHATTAN,40.767348999999996,-73.98435 +10019,MANHATTAN,40.767348999999996,-73.98435 +10019,MANHATTAN,40.767348999999996,-73.98435 +10023,MANHATTAN,40.769028999999996,-73.982801 +10036,MANHATTAN,40.759212,-73.99450999999999 +10036,MANHATTAN,40.758503999999995,-73.992835 +10036,MANHATTAN,40.760123,-73.992593 +10036,MANHATTAN,40.761276,-73.99145899999999 +10019,MANHATTAN,40.768434,-73.986956 +10019,MANHATTAN,40.768853,-73.98585200000001 +10036,MANHATTAN,40.760071,-73.996549 +10036,MANHATTAN,40.759906,-73.996112 +10036,MANHATTAN,40.764196000000005,-73.994545 +10036,MANHATTAN,40.764229,-73.994625 +10036,MANHATTAN,40.764251,-73.994679 +10019,MANHATTAN,40.764108,-73.992343 +10019,MANHATTAN,40.77061,-73.990039 +10036,MANHATTAN,40.764317,-73.995784 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.768529,-73.981588 +10023,MANHATTAN,40.77095,-73.982158 +10023,MANHATTAN,40.776185999999996,-73.977983 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774122999999996,-73.982229 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.774386,-73.983399 +10023,MANHATTAN,40.776376,-73.980355 +10023,MANHATTAN,40.778682,-73.983914 +10023,MANHATTAN,40.779876,-73.982553 +10023,MANHATTAN,40.780621999999994,-73.981412 +10023,MANHATTAN,40.78197,-73.98161 +10024,MANHATTAN,40.782137,-73.98092 +10024,MANHATTAN,40.782253000000004,-73.980898 +10019,MANHATTAN,40.771898,-73.9911 +10019,MANHATTAN,40.771898,-73.9911 +10019,MANHATTAN,40.771898,-73.9911 +10019,MANHATTAN,40.771898,-73.9911 +10023,MANHATTAN,40.779462,-73.985803 +10023,MANHATTAN,40.78135,-73.983372 +10024,MANHATTAN,40.782596999999996,-73.973026 +10024,MANHATTAN,40.782276,-73.976229 +10024,MANHATTAN,40.78476,-73.974149 +10024,MANHATTAN,40.784779,-73.974192 +10024,MANHATTAN,40.78335,-73.97819 +10024,MANHATTAN,40.787696999999994,-73.97704 +10024,MANHATTAN,40.787178000000004,-73.97590600000001 +10024,MANHATTAN,40.78852,-73.97488 +10024,MANHATTAN,40.788457,-73.97446500000001 +10025,MANHATTAN,40.791646,-73.972607 +10025,MANHATTAN,40.793033,-73.974817 +10025,MANHATTAN,40.792999,-73.972975 +10025,MANHATTAN,40.793440999999994,-73.972657 +10025,MANHATTAN,40.793661,-73.972498 +10025,MANHATTAN,40.793485,-73.970794 +10024,MANHATTAN,40.784531,-73.981562 +10024,MANHATTAN,40.785574,-73.981713 +10024,MANHATTAN,40.788653000000004,-73.979452 +10024,MANHATTAN,40.789773,-73.979936 +10024,MANHATTAN,40.789567,-73.979448 +10024,MANHATTAN,40.790662,-73.97805 +10025,MANHATTAN,40.793469,-73.974936 +10025,MANHATTAN,40.794114,-73.97456700000001 +10025,MANHATTAN,40.794125,-73.97459599999999 +10025,MANHATTAN,40.794205,-73.974734 +10025,MANHATTAN,40.794177000000005,-73.974676 +10025,MANHATTAN,40.794825,-73.974296 +10025,MANHATTAN,40.794918,-73.974517 +10036,MANHATTAN,40.754814,-73.981935 +10036,MANHATTAN,40.754503,-73.981195 +10036,MANHATTAN,40.755077,-73.980661 +10036,MANHATTAN,40.755255,-73.981087 +10036,MANHATTAN,40.755555,-73.98175400000001 +10036,MANHATTAN,40.755516,-73.98165999999999 +10036,MANHATTAN,40.755439,-73.981476 +10036,MANHATTAN,40.75542,-73.981429 +10036,MANHATTAN,40.755362,-73.98129200000001 +10036,MANHATTAN,40.755244,-73.981014 +10036,MANHATTAN,40.755963,-73.980823 +10036,MANHATTAN,40.756240999999996,-73.98148 +10036,MANHATTAN,40.756240999999996,-73.98148 +10036,MANHATTAN,40.755755,-73.980285 +10036,MANHATTAN,40.756504,-73.980173 +10036,MANHATTAN,40.756803000000005,-73.980841 +10019,MANHATTAN,40.759298,-73.977032 +10019,MANHATTAN,40.759865999999995,-73.978385 +10019,MANHATTAN,40.759865999999995,-73.978385 +10019,MANHATTAN,40.759482,-73.977468 +10019,MANHATTAN,40.759482,-73.977468 +10019,MANHATTAN,40.760971999999995,-73.977172 +10019,MANHATTAN,40.762487,-73.978521 +10019,MANHATTAN,40.761139,-73.975316 +10019,MANHATTAN,40.761303999999996,-73.97519399999999 +10019,MANHATTAN,40.762248,-73.97626899999999 +10019,MANHATTAN,40.762190000000004,-73.97613199999999 +10019,MANHATTAN,40.762648999999996,-73.975323 +10019,MANHATTAN,40.762668,-73.97537 +10019,MANHATTAN,40.762687,-73.97541700000001 +10019,MANHATTAN,40.762621,-73.975211 +10019,MANHATTAN,40.764361,-73.975189 +10019,MANHATTAN,40.764734999999995,-73.976885 +10019,MANHATTAN,40.765039,-73.97475899999999 +10019,MANHATTAN,40.765163,-73.97505100000001 +10019,MANHATTAN,40.765163,-73.97505100000001 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10019,MANHATTAN,40.764155,-73.973951 +10016,MANHATTAN,40.752058,-73.981466 +10017,MANHATTAN,40.751906,-73.97924300000001 +10017,MANHATTAN,40.7529,-73.981297 +10017,MANHATTAN,40.752101,-73.979416 +10017,MANHATTAN,40.754605,-73.979538 +10017,MANHATTAN,40.751862,-73.977034 +10017,MANHATTAN,40.754538000000004,-73.977398 +10017,MANHATTAN,40.755669,-73.978184 +10017,MANHATTAN,40.756978000000004,-73.977408 +10022,MANHATTAN,40.758114,-73.97539300000001 +10022,MANHATTAN,40.759212,-73.97462 +10022,MANHATTAN,40.760126,-73.97322700000001 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.761559000000005,-73.974681 +10022,MANHATTAN,40.762088,-73.971862 +10017,MANHATTAN,40.752474,-73.974446 +10017,MANHATTAN,40.753138,-73.97480300000001 +10017,MANHATTAN,40.754709999999996,-73.97365500000001 +10017,MANHATTAN,40.754366999999995,-73.973117 +10017,MANHATTAN,40.755062,-73.972868 +10017,MANHATTAN,40.75496,-73.97347099999999 +10017,MANHATTAN,40.75555,-73.973979 +10017,MANHATTAN,40.755685,-73.972943 +10017,MANHATTAN,40.755232,-73.97296899999999 +10022,MANHATTAN,40.756161999999996,-73.972593 +10017,MANHATTAN,40.75564,-73.97225 +10022,MANHATTAN,40.75623,-73.971752 +10022,MANHATTAN,40.756648,-73.974358 +10022,MANHATTAN,40.756648,-73.974358 +10022,MANHATTAN,40.756586999999996,-73.97228299999999 +10022,MANHATTAN,40.756266,-73.97179200000001 +10022,MANHATTAN,40.75623,-73.97170200000001 +10022,MANHATTAN,40.756206,-73.971644 +10022,MANHATTAN,40.756917,-73.972044 +10022,MANHATTAN,40.757435,-73.9696 +10022,MANHATTAN,40.759434000000006,-73.971541 +10022,MANHATTAN,40.759364,-73.969484 +10022,MANHATTAN,40.759815,-73.970502 +10022,MANHATTAN,40.760701,-73.970671 +10022,MANHATTAN,40.760564,-73.969386 +10022,MANHATTAN,40.760641,-73.969353 +10022,MANHATTAN,40.76083,-73.969216 +10017,MANHATTAN,40.750415000000004,-73.973635 +10017,MANHATTAN,40.751104,-73.973137 +10017,MANHATTAN,40.751548,-73.970964 +10017,MANHATTAN,40.751809,-73.972876 +10017,MANHATTAN,40.752942,-73.97171 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10017,MANHATTAN,40.752531,-73.97264200000001 +10022,MANHATTAN,40.756032,-73.969341 +10022,MANHATTAN,40.756046000000005,-73.969374 +10022,MANHATTAN,40.756886,-73.969424 +10022,MANHATTAN,40.758615,-73.967658 +10017,MANHATTAN,40.749673,-73.971867 +10017,MANHATTAN,40.751583000000004,-73.97042900000001 +10017,MANHATTAN,40.750213,-73.968846 +10022,MANHATTAN,40.758265,-73.964925 +10017,MANHATTAN,40.753276,-73.966332 +10022,MANHATTAN,40.758764,-73.96194 +10022,MANHATTAN,40.758081,-73.962356 +10044,MANHATTAN,40.756221999999994,-73.955116 +10022,MANHATTAN,40.764720000000004,-73.97216 +10065,MANHATTAN,40.764986,-73.972474 +10065,MANHATTAN,40.765313,-73.972236 +10065,MANHATTAN,40.764308,-73.968796 +10065,MANHATTAN,40.765326,-73.969727 +10065,MANHATTAN,40.765826000000004,-73.971864 +10065,MANHATTAN,40.764941,-73.968333 +10065,MANHATTAN,40.765976,-73.969336 +10065,MANHATTAN,40.765905,-73.96911999999999 +10065,MANHATTAN,40.76658,-73.96878000000001 +10065,MANHATTAN,40.768491,-73.969429 +10065,MANHATTAN,40.768902000000004,-73.968461 +10021,MANHATTAN,40.77026,-73.965898 +10021,MANHATTAN,40.774549,-73.964003 +10075,MANHATTAN,40.774626,-73.96335 +10075,MANHATTAN,40.775101,-73.963025 +10065,MANHATTAN,40.76676,-73.965369 +10021,MANHATTAN,40.769068,-73.964725 +10065,MANHATTAN,40.764452,-73.963735 +10022,MANHATTAN,40.760564,-73.96226 +10022,MANHATTAN,40.760556,-73.962239 +10022,MANHATTAN,40.760545,-73.96221700000001 +10065,MANHATTAN,40.760328,-73.961463 +10065,MANHATTAN,40.760391,-73.961416 +10065,MANHATTAN,40.760453999999996,-73.961372 +10065,MANHATTAN,40.760518,-73.961325 +10021,MANHATTAN,40.765017,-73.955099 +10021,,, +10065,MANHATTAN,40.760481,-73.958246 +10128,MANHATTAN,40.78454,-73.9557 +10128,MANHATTAN,40.779901,-73.954472 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.782799,-73.947678 +10128,MANHATTAN,40.780488,-73.946119 +10028,MANHATTAN,40.772537,-73.94909399999999 +10029,MANHATTAN,40.788357,-73.952816 +10029,MANHATTAN,40.796015000000004,-73.947288 +10029,MANHATTAN,40.788996999999995,-73.942628 +10027,MANHATTAN,40.807618,-73.943002 +10035,MANHATTAN,40.809406,-73.940089 +10035,MANHATTAN,40.803332,-73.93607 +10026,MANHATTAN,40.798831,-73.953834 +10026,MANHATTAN,40.800451,-73.954533 +10025,MANHATTAN,40.796595,-73.962565 +10025,MANHATTAN,40.798435999999995,-73.960985 +10025,MANHATTAN,40.79846,-73.95973599999999 +10025,MANHATTAN,40.801263,-73.959907 +10025,MANHATTAN,40.801263,-73.959907 +10025,MANHATTAN,40.801263,-73.959907 +10025,MANHATTAN,40.798596999999994,-73.967042 +10025,MANHATTAN,40.795574,-73.971898 +10025,MANHATTAN,40.796257000000004,-73.970626 +10025,MANHATTAN,40.797011,-73.970055 +10025,MANHATTAN,40.797588,-73.969654 +10025,MANHATTAN,40.798792999999996,-73.970614 +10025,MANHATTAN,40.798896,-73.968064 +10025,MANHATTAN,40.798885999999996,-73.968689 +10025,MANHATTAN,40.798817,-73.96874 +10025,MANHATTAN,40.798924,-73.967851 +10025,MANHATTAN,40.800933,-73.967933 +10025,MANHATTAN,40.801811,-73.96684599999999 +10025,MANHATTAN,40.803798,-73.965848 +10025,MANHATTAN,40.805265999999996,-73.965887 +10025,MANHATTAN,40.80581,-73.96549300000001 +10025,MANHATTAN,40.806484999999995,-73.965001 +10025,MANHATTAN,40.806172,-73.96522900000001 +10025,MANHATTAN,40.796087,-73.973115 +10025,MANHATTAN,40.804224,-73.966675 +10025,MANHATTAN,40.805195,-73.96712600000001 +10025,MANHATTAN,40.805640000000004,-73.966186 +10025,MANHATTAN,40.807028,-73.965644 +10025,MANHATTAN,40.80707,-73.965738 +10025,MANHATTAN,40.807136,-73.965897 +10025,MANHATTAN,40.806452,-73.966222 +10025,MANHATTAN,40.806979,-73.965528 +10025,MANHATTAN,40.807045,-73.96568 +10025,MANHATTAN,40.808423,-73.96629 +10025,MANHATTAN,40.807874,-73.965654 +10025,MANHATTAN,40.807739,-73.965329 +10027,MANHATTAN,40.808524,-73.96508299999999 +10027,MANHATTAN,40.809894,-73.944582 +10026,MANHATTAN,40.804611,-73.952732 +10027,MANHATTAN,40.809197,-73.951865 +10027,MANHATTAN,40.811642,-73.950642 +10027,MANHATTAN,40.814327,-73.951171 +10027,MANHATTAN,40.809801,-73.958862 +10027,MANHATTAN,40.810085,-73.963699 +10027,MANHATTAN,40.814556,-73.962475 +10030,MANHATTAN,40.816205,-73.941795 +10039,MANHATTAN,40.827294,-73.936918 +10031,MANHATTAN,40.828403,-73.942337 +10032,MANHATTAN,40.830574,-73.941508 +10031,MANHATTAN,40.82553,-73.94828299999999 +10031,MANHATTAN,40.825497,-73.948208 +10031,MANHATTAN,40.824672,-73.95220400000001 +10032,MANHATTAN,40.840121,-73.937531 +10033,MANHATTAN,40.850735,-73.929016 +10033,MANHATTAN,40.848296000000005,-73.931274 +10454,BRONX,40.805171,-73.921461 +10455,BRONX,40.815457,-73.916218 +10455,BRONX,40.815405,-73.91609100000001 +10451,BRONX,40.809762,-73.928991 +10451,BRONX,40.811696999999995,-73.929769 +10451,BRONX,40.813187,-73.928713 +10451,BRONX,40.815325,-73.928674 +10451,BRONX,40.818595,-73.930409 +10451,BRONX,40.821481,-73.928263 +10456,BRONX,40.825612,-73.90913 +10456,BRONX,40.825634,-73.909199 +10456,BRONX,40.830686,-73.90722199999999 +10455,BRONX,40.818813,-73.914714 +10451,BRONX,40.82398,-73.9131 +10451,BRONX,40.826817,-73.911773 +10451,BRONX,40.825934000000004,-73.921523 +10452,BRONX,40.83746,-73.922283 +10452,BRONX,40.832084,-73.931663 +10452,BRONX,40.840052,-73.92858299999999 +10452,BRONX,40.840513,-73.92841999999999 +10454,BRONX,40.803366,-73.919159 +10454,BRONX,40.806358,-73.912339 +10455,BRONX,40.817853,-73.902388 +10459,BRONX,40.822509000000004,-73.900456 +10459,BRONX,40.823568,-73.899992 +10459,BRONX,40.827434000000004,-73.891914 +10459,BRONX,40.827088,-73.891896 +10457,BRONX,40.846598,-73.898312 +10457,BRONX,40.846567,-73.898327 +10457,BRONX,40.846537,-73.89834499999999 +10457,BRONX,40.844663,-73.89824300000001 +10460,BRONX,40.839933,-73.880863 +10459,BRONX,40.831140999999995,-73.884839 +10457,BRONX,40.84843,-73.900533 +10457,BRONX,40.848729,-73.900359 +10457,BRONX,40.849967,-73.899601 +10457,BRONX,40.850969,-73.893845 +10458,BRONX,40.854186,-73.891042 +10458,BRONX,40.85533,-73.891116 +10458,BRONX,40.855978,-73.891296 +10458,BRONX,40.85696,-73.88208 +10457,BRONX,40.856346,-73.900586 +10468,BRONX,40.858275,-73.899466 +10468,BRONX,40.859854999999996,-73.898556 +10468,BRONX,40.862407,-73.911097 +10463,BRONX,40.882801,-73.899064 +10467,BRONX,40.870391,-73.878155 +10467,BRONX,40.878187,-73.871696 +10470,BRONX,40.896369,-73.862941 +10473,BRONX,40.827513,-73.84550300000001 +10473,BRONX,40.827529,-73.845409 +10472,BRONX,40.827455,-73.879852 +10472,BRONX,40.827490000000004,-73.879859 +10462,BRONX,40.83313,-73.85764300000001 +10461,BRONX,40.844043,-73.836668 +10469,BRONX,, +10469,BRONX,40.868559000000005,-73.857629 +10467,BRONX,40.881554,-73.86394 +10469,BRONX,40.873658,-73.854725 +10469,BRONX,40.873727,-73.853065 +10469,BRONX,40.874796,-73.851667 +10466,BRONX,40.881324,-73.83860899999999 +10466,BRONX,40.883661,-73.83541 +10470,BRONX,40.900073,-73.857587 +10470,BRONX,40.902256,-73.85136 +10470,BRONX,40.905815000000004,-73.853034 +10470,BRONX,40.905134999999994,-73.849559 +10475,BRONX,40.879901000000004,-73.831806 +10475,BRONX,40.882406,-73.829464 +10475,BRONX,40.883969,-73.826451 +10465,BRONX,40.816966,-73.836828 +10471,BRONX,40.901990000000005,-73.896672 +10471,BRONX,40.902319,-73.896592 +11201,BROOKLYN,40.700070000000004,-73.987219 +11201,BROOKLYN,40.685876,-73.97877 +11201,BROOKLYN,40.69494,-73.986387 +11201,BROOKLYN,40.695357,-73.984176 +11201,BROOKLYN,40.695999,-73.983801 +11201,BROOKLYN,40.693498999999996,-73.988911 +11201,BROOKLYN,40.693598,-73.988904 +11201,BROOKLYN,40.691599,-73.984379 +11201,BROOKLYN,40.691454,-73.984386 +11201,BROOKLYN,40.691248,-73.984375 +11201,BROOKLYN,40.689881,-73.98343100000001 +11217,BROOKLYN,40.688209,-73.98205 +11217,BROOKLYN,40.687589,-73.981654 +11201,BROOKLYN,40.689799,-73.98814399999999 +11217,BROOKLYN,40.687864000000005,-73.984181 +11217,BROOKLYN,40.687583000000004,-73.98249 +11201,BROOKLYN,40.688817,-73.989017 +11201,BROOKLYN,40.688221,-73.988173 +11201,BROOKLYN,40.701586,-73.99552800000001 +11201,BROOKLYN,40.69931,-73.995867 +11201,BROOKLYN,40.699363,-73.99582 +11201,BROOKLYN,40.698674,-73.995182 +11201,BROOKLYN,40.697749,-73.99405300000001 +11201,BROOKLYN,40.695059,-73.995301 +11217,BROOKLYN,40.682575,-73.985975 +11217,BROOKLYN,40.681323,-73.984825 +11217,BROOKLYN,40.680535,-73.98393100000001 +11217,BROOKLYN,40.679064000000004,-73.98315600000001 +11215,BROOKLYN,40.677963,-73.984436 +11215,BROOKLYN,40.677733,-73.983848 +11215,BROOKLYN,40.677851000000004,-73.985752 +11215,BROOKLYN,40.677184000000004,-73.984487 +11231,BROOKLYN,40.681854,-74.005668 +11231,BROOKLYN,40.680163,-74.005834 +11231,BROOKLYN,40.675276000000004,-74.015322 +11231,BROOKLYN,40.675488,-74.015073 +11232,BROOKLYN,40.663801,-73.99600600000001 +11232,BROOKLYN,40.663543,-73.99708000000001 +11232,BROOKLYN,40.662896,-73.997545 +11232,BROOKLYN,40.661367,-73.997964 +11232,BROOKLYN,40.66028,-73.998227 +11232,BROOKLYN,40.65849,-74.000097 +11232,BROOKLYN,40.657587,-74.00102 +11232,BROOKLYN,40.657099,-74.002984 +11232,BROOKLYN,40.656558000000004,-74.003597 +11232,BROOKLYN,40.656503,-74.003546 +11232,BROOKLYN,40.65356,-74.00619499999999 +11232,BROOKLYN,40.65187,-74.00489 +11232,BROOKLYN,40.652078,-74.005236 +11220,BROOKLYN,40.650921999999994,-74.01123299999999 +11220,BROOKLYN,40.649025,-74.015287 +11232,BROOKLYN,40.649519,-74.016473 +11232,BROOKLYN,40.650923,-74.00331899999999 +11232,BROOKLYN,40.646814,-73.996523 +11232,BROOKLYN,40.65072,-74.00301999999999 +11232,BROOKLYN,40.649297999999995,-74.000667 +11232,BROOKLYN,40.646877,-73.996663 +11215,BROOKLYN,40.67302,-73.98651 +11215,BROOKLYN,40.673438,-73.989358 +11215,BROOKLYN,40.668777,-73.993245 +11215,BROOKLYN,40.668777,-73.993245 +11216,BROOKLYN,40.678395,-73.948325 +11216,BROOKLYN,40.678209,-73.945178 +11216,BROOKLYN,40.678084999999996,-73.942943 +11213,BROOKLYN,40.675913,-73.946413 +11225,BROOKLYN,40.669815,-73.95539000000001 +11213,BROOKLYN,40.667588,-73.94189200000001 +11213,BROOKLYN,40.667583,-73.94178000000001 +11213,BROOKLYN,40.677477,-73.931648 +11213,BROOKLYN,40.665563,-73.937662 +11233,BROOKLYN,40.676001,-73.904842 +11212,BROOKLYN,40.674555,-73.905652 +11233,BROOKLYN,40.672996999999995,-73.909846 +11233,BROOKLYN,40.672115999999995,-73.913525 +11233,BROOKLYN,40.668442999999996,-73.921312 +11233,BROOKLYN,40.678982,-73.908248 +11207,BROOKLYN,40.67586,-73.903151 +11206,BROOKLYN,40.696771000000005,-73.93700600000001 +11221,BROOKLYN,40.694539,-73.930924 +11221,BROOKLYN,40.693748,-73.930788 +11221,BROOKLYN,40.692288,-73.926985 +11216,BROOKLYN,40.6797,-73.950913 +11216,BROOKLYN,40.678533,-73.95096099999999 +11216,BROOKLYN,40.6785,-73.95035899999999 +11205,BROOKLYN,40.697651,-73.95866099999999 +11205,BROOKLYN,40.696453000000005,-73.95652700000001 +11205,BROOKLYN,40.693391999999996,-73.96210699999999 +11238,BROOKLYN,40.687047,-73.965598 +11238,BROOKLYN,40.682115,-73.958649 +11238,BROOKLYN,40.682159000000006,-73.958656 +11205,BROOKLYN,40.696727,-73.97357 +11249,BROOKLYN,40.699333,-73.959009 +11249,BROOKLYN,40.722474,-73.957246 +11249,BROOKLYN,40.721892,-73.95829599999999 +11249,BROOKLYN,40.721076000000004,-73.955536 +11249,BROOKLYN,40.721489,-73.958332 +11249,BROOKLYN,40.721039000000005,-73.95879000000001 +11211,BROOKLYN,40.715297,-73.958321 +11211,BROOKLYN,40.714893,-73.95904 +11211,BROOKLYN,40.714056,-73.952244 +11211,BROOKLYN,40.713633,-73.951573 +11211,BROOKLYN,40.710035999999995,-73.96260600000001 +11211,BROOKLYN,40.7078,-73.956101 +11211,BROOKLYN,40.707131,-73.951841 +11211,BROOKLYN,40.707104,-73.951759 +11211,BROOKLYN,40.707073,-73.951672 +11211,BROOKLYN,40.707046000000005,-73.951589 +11222,BROOKLYN,40.737466999999995,-73.95353399999999 +11222,BROOKLYN,40.737466999999995,-73.95353399999999 +11222,BROOKLYN,40.736378,-73.95528399999999 +11222,BROOKLYN,40.732966999999995,-73.95809 +11222,BROOKLYN,40.727548999999996,-73.9442 +11222,BROOKLYN,40.722017,-73.948068 +11211,BROOKLYN,40.716279,-73.950796 +11211,BROOKLYN,40.712965999999994,-73.938671 +11206,BROOKLYN,40.709785,-73.940178 +11206,BROOKLYN,40.707435,-73.934326 +11206,BROOKLYN,40.704165,-73.937446 +11206,BROOKLYN,40.704062,-73.934178 +11206,BROOKLYN,40.703031,-73.93570799999999 +11206,BROOKLYN,40.703932,-73.932927 +11206,BROOKLYN,40.700813000000004,-73.940648 +11206,BROOKLYN,40.701153000000005,-73.940042 +11206,BROOKLYN,40.7007,-73.93961999999999 +11221,BROOKLYN,40.690403,-73.91975 +11221,BROOKLYN,40.687768,-73.919014 +11237,BROOKLYN,40.696042999999996,-73.904882 +11212,BROOKLYN,40.669103,-73.911539 +11212,BROOKLYN,40.667378,-73.91016 +11212,BROOKLYN,40.668882,-73.90956700000001 +11212,BROOKLYN,40.669499,-73.908777 +11207,BROOKLYN,40.67751,-73.89729399999999 +11207,BROOKLYN,40.677728,-73.89632399999999 +11207,BROOKLYN,40.676834,-73.900165 +11207,BROOKLYN,40.676837,-73.90015799999999 +11207,BROOKLYN,40.673052,-73.896962 +11207,BROOKLYN,40.669614,-73.89915500000001 +11207,BROOKLYN,40.669425,-73.899109 +11207,BROOKLYN,40.669877,-73.895363 +11207,BROOKLYN,40.667082,-73.899963 +11212,BROOKLYN,40.657247999999996,-73.90069100000001 +11208,BROOKLYN,40.677888,-73.88493100000001 +11208,BROOKLYN,40.674815,-73.863623 +11208,BROOKLYN,40.664112,-73.877746 +11207,BROOKLYN,40.656889,-73.889364 +11207,BROOKLYN,40.652712,-73.887378 +11203,BROOKLYN,40.659027,-73.931152 +11226,BROOKLYN,40.655242,-73.960972 +11226,BROOKLYN,40.654657,-73.96024399999999 +11226,BROOKLYN,40.646148,-73.95809399999999 +11210,BROOKLYN,40.635957,-73.95208000000001 +11218,BROOKLYN,40.644261,-73.987871 +11218,BROOKLYN,40.644496000000004,-73.97975600000001 +11218,BROOKLYN,40.643513,-73.970031 +11230,BROOKLYN,40.634834000000005,-73.96752 +11219,BROOKLYN,40.636537,-73.99056 +11219,BROOKLYN,40.636784000000006,-73.99385699999999 +11219,BROOKLYN,40.631221000000004,-74.0025 +11220,BROOKLYN,40.635669,-74.01139599999999 +11209,BROOKLYN,40.624844,-74.027501 +11209,BROOKLYN,40.618516,-74.032336 +11214,BROOKLYN,40.59387,-73.997253 +11230,BROOKLYN,40.627271,-73.974058 +11230,BROOKLYN,40.629529999999995,-73.965065 +11223,BROOKLYN,40.584657,-73.982985 +11223,BROOKLYN,40.584121,-73.98186199999999 +11234,BROOKLYN,40.633905,-73.933307 +11234,BROOKLYN,40.617727,-73.927769 +11234,BROOKLYN,40.637465999999996,-73.92620500000001 +11235,BROOKLYN,40.578701,-73.96285999999999 +11235,BROOKLYN,40.578803,-73.962878 +11235,BROOKLYN,40.579418,-73.962877 +11235,BROOKLYN,40.579615000000004,-73.961952 +11235,BROOKLYN,40.579864,-73.953445 +11235,BROOKLYN,40.583917,-73.938502 +11235,BROOKLYN,40.584053999999995,-73.934034 +11235,BROOKLYN,40.584207,-73.932187 +11101,QUEENS,40.748028999999995,-73.94699 +11101,QUEENS,40.748031,-73.94699399999999 +11101,QUEENS,40.74406,-73.941198 +11101,QUEENS,40.736751,-73.928203 +11101,QUEENS,40.736751,-73.928203 +11101,QUEENS,40.744203000000006,-73.92773299999999 +11101,QUEENS,40.745667,-73.934043 +11101,QUEENS,40.736641,-73.936142 +11101,QUEENS,40.736146999999995,-73.936373 +11101,QUEENS,40.73577,-73.934223 +11101,QUEENS,40.759837,-73.941776 +11101,QUEENS,40.759463000000004,-73.941011 +11101,QUEENS,40.759029,-73.940264 +11101,QUEENS,40.759413,-73.939863 +11101,QUEENS,40.757865,-73.93870600000001 +11101,QUEENS,40.757539,-73.936461 +11101,QUEENS,40.753195,-73.92790699999999 +11101,QUEENS,40.753432000000004,-73.934281 +11101,QUEENS,40.754678000000006,-73.934605 +11101,QUEENS,40.754703000000006,-73.934608 +11101,QUEENS,40.754626,-73.934673 +11101,QUEENS,40.754276000000004,-73.935865 +11101,QUEENS,40.755044,-73.935373 +11101,QUEENS,40.75542,-73.936163 +11101,QUEENS,40.755487,-73.93814499999999 +11101,QUEENS,40.753842,-73.93645699999999 +11101,QUEENS,40.753235,-73.934747 +11101,QUEENS,40.753298,-73.934664 +11101,QUEENS,40.753413,-73.934281 +11101,QUEENS,40.751906,-73.934593 +11101,QUEENS,40.751481,-73.93565799999999 +11101,QUEENS,40.752162,-73.935712 +11101,QUEENS,40.752195,-73.935401 +11101,QUEENS,40.752536,-73.937685 +11101,QUEENS,40.752998,-73.938407 +11101,QUEENS,40.754111,-73.940795 +11101,QUEENS,40.753815,-73.942589 +11101,QUEENS,40.749781,-73.93748199999999 +11101,QUEENS,, +11101,QUEENS,40.749789,-73.937331 +11101,QUEENS,40.750029,-73.941102 +11101,QUEENS,40.748745,-73.94197700000001 +11101,QUEENS,40.748115999999996,-73.939628 +11101,QUEENS,40.747904999999996,-73.94145400000001 +11101,QUEENS,40.749338,-73.946787 +11101,QUEENS,40.750246000000004,-73.951623 +11101,QUEENS,40.751787,-73.947926 +11101,QUEENS,40.753849,-73.949664 +11101,QUEENS,40.754084000000006,-73.948815 +11101,QUEENS,40.757385,-73.94041 +11101,QUEENS,40.756002,-73.940519 +11101,QUEENS,40.757723,-73.941218 +11101,QUEENS,40.757745,-73.94119599999999 +11101,QUEENS,40.757407,-73.940413 +11101,QUEENS,40.758009,-73.942026 +11101,QUEENS,40.758025,-73.942008 +11101,QUEENS,40.757734,-73.941236 +11101,QUEENS,40.757718,-73.941251 +11101,QUEENS,40.758295000000004,-73.94278800000001 +11101,QUEENS,40.758333,-73.94274399999999 +0,,, +11101,QUEENS,40.758058,-73.94200500000001 +11101,QUEENS,40.758034,-73.942026 +11101,QUEENS,40.758693,-73.94359200000001 +11101,QUEENS,40.75871,-73.943574 +11101,QUEENS,40.758928999999995,-73.943163 +11106,QUEENS,40.766895,-73.93470500000001 +11103,QUEENS,40.768513,-73.911237 +11101,QUEENS,40.753253,-73.923688 +11103,QUEENS,40.767965000000004,-73.905873 +11370,QUEENS,40.767168,-73.897686 +11370,QUEENS,40.767038,-73.896755 +11369,QUEENS,40.768704,-73.88016800000001 +11369,QUEENS,40.769555,-73.88005 +11369,QUEENS,40.769194,-73.876094 +11370,QUEENS,40.765743,-73.886263 +11369,QUEENS,40.767332,-73.88261800000001 +11370,QUEENS,40.764338,-73.886034 +11370,QUEENS,40.764340999999995,-73.886955 +11372,QUEENS,40.749296,-73.885165 +11377,QUEENS,40.74238,-73.911846 +11377,QUEENS,40.740982,-73.90026 +11377,QUEENS,40.740966,-73.90013 +11373,QUEENS,40.739078000000006,-73.889516 +11373,QUEENS,40.738814,-73.88813499999999 +11369,QUEENS,40.770121,-73.870446 +11369,QUEENS,40.768306,-73.867533 +11369,QUEENS,40.767715,-73.86657 +11369,QUEENS,40.768801,-73.868315 +11369,QUEENS,40.759453,-73.85732800000001 +11368,QUEENS,40.758108,-73.857201 +11368,QUEENS,40.754777000000004,-73.85375 +11368,QUEENS,40.752066,-73.85424 +11368,QUEENS,40.738115,-73.850622 +11368,QUEENS,40.738851000000004,-73.84866099999999 +11368,QUEENS,40.752049,-73.854229 +11377,QUEENS,40.741093,-73.901321 +11378,QUEENS,40.729151,-73.905008 +11377,QUEENS,40.736247,-73.896612 +11377,QUEENS,40.739247,-73.890454 +11377,QUEENS,40.739241,-73.890433 +11373,QUEENS,40.738611999999996,-73.88717199999999 +11373,QUEENS,40.738146,-73.884686 +11378,QUEENS,40.72894,-73.890525 +11378,QUEENS,40.725977,-73.907574 +11374,QUEENS,40.715340000000005,-73.860452 +11415,QUEENS,40.712377000000004,-73.828539 +11356,QUEENS,40.784548,-73.840349 +11356,QUEENS,40.7817,-73.841262 +11357,QUEENS,40.783631,-73.825185 +11356,QUEENS,40.781456,-73.841414 +11354,QUEENS,40.771471000000005,-73.843983 +11354,QUEENS,40.769042999999996,-73.83246199999999 +11354,QUEENS,40.768927000000005,-73.832415 +11354,QUEENS,40.766328,-73.83253 +11354,QUEENS,40.765376,-73.830969 +11354,QUEENS,40.764218,-73.832752 +11354,QUEENS,40.763219,-73.83094200000001 +11354,QUEENS,40.758804999999995,-73.83448 +11354,QUEENS,40.760684000000005,-73.83349 +11354,QUEENS,40.760684000000005,-73.83349 +11354,QUEENS,40.761416,-73.832882 +11354,QUEENS,40.762471000000005,-73.831681 +11354,QUEENS,40.762287,-73.83157299999999 +11354,QUEENS,40.761165000000005,-73.83218199999999 +11354,QUEENS,40.761438,-73.832889 +11354,QUEENS,40.760413,-73.834292 +11354,QUEENS,40.759122999999995,-73.83414 +11354,QUEENS,40.760413,-73.834292 +11354,QUEENS,40.759106,-73.83414 +11354,QUEENS,40.759106,-73.83414 +11354,QUEENS,40.759106,-73.83414 +11354,QUEENS,40.759106,-73.83414 +11354,QUEENS,40.760412,-73.83191 +11354,QUEENS,40.759102,-73.831498 +11354,QUEENS,40.763814,-73.82862 +11355,QUEENS,40.757231,-73.824662 +11361,QUEENS,40.76161,-73.760761 +11361,QUEENS,40.761734000000004,-73.760071 +11435,QUEENS,40.717178999999994,-73.81895300000001 +11432,QUEENS,40.716352,-73.80794499999999 +11365,QUEENS,40.739996000000005,-73.790974 +11365,QUEENS,40.73999,-73.790992 +11365,QUEENS,40.739881,-73.78824300000001 +11361,QUEENS,40.760674,-73.766396 +11426,QUEENS,40.726569,-73.715716 +11001,QUEENS,40.727692,-73.708347 +11435,QUEENS,40.702505,-73.81501800000001 +11435,QUEENS,40.703435,-73.814875 +11435,QUEENS,40.703625,-73.815 +11435,QUEENS,40.705707000000004,-73.81750100000001 +11435,QUEENS,40.70596,-73.816458 +11435,QUEENS,40.702482,-73.812854 +11432,QUEENS,40.705782,-73.798602 +11432,QUEENS,40.709165000000006,-73.797657 +11432,QUEENS,40.713929,-73.791388 +11435,QUEENS,40.700216,-73.81490500000001 +11435,QUEENS,40.699498,-73.810994 +11435,QUEENS,40.699378,-73.811417 +11435,QUEENS,40.697873,-73.81048 +11435,QUEENS,40.69815,-73.807193 +11435,QUEENS,40.701675,-73.807908 +11435,QUEENS,40.701218,-73.80507800000001 +11435,QUEENS,40.700998999999996,-73.8058 +11435,QUEENS,40.692753,-73.808688 +11435,QUEENS,40.696982,-73.806454 +11435,QUEENS,40.697049,-73.805621 +11435,QUEENS,40.697112,-73.805635 +11435,QUEENS,40.697375,-73.80487 +11385,,, +11433,QUEENS,40.700016999999995,-73.801284 +11433,QUEENS,40.705422999999996,-73.78234 +11423,QUEENS,40.708923999999996,-73.777116 +11428,QUEENS,40.719097999999995,-73.734052 +11429,QUEENS,40.712274,-73.731785 +11417,QUEENS,40.672059000000004,-73.843913 +11417,QUEENS,40.672059000000004,-73.843913 +11417,QUEENS,40.671371,-73.842985 +11420,QUEENS,40.683859999999996,-73.806744 +11420,QUEENS,40.677107,-73.825194 +11430,QUEENS,40.666022999999996,-73.805798 +11430,QUEENS,40.666198,-73.80724599999999 +11420,,, +11436,QUEENS,40.667788,-73.799719 +11436,QUEENS,40.667832000000004,-73.798114 +11436,QUEENS,40.668289,-73.79599 +11436,QUEENS,40.667227000000004,-73.794122 +11436,QUEENS,40.668289,-73.79599 +11436,QUEENS,40.668275,-73.7959 +11434,QUEENS,40.667485,-73.786869 +11434,QUEENS,40.667546,-73.782914 +11434,QUEENS,40.668248999999996,-73.783114 +11434,QUEENS,40.668834000000004,-73.781886 +11434,QUEENS,40.668119,-73.781153 +11434,QUEENS,40.668284,-73.781322 +11434,QUEENS,40.687452,-73.784883 +11434,QUEENS,40.6603,-73.76769499999999 +11422,QUEENS,40.640284,-73.743537 +11414,QUEENS,40.650177,-73.837636 +11434,QUEENS,40.666087,-73.784973 +11434,QUEENS,40.666104,-73.78495500000001 +11434,QUEENS,40.66641,-73.784662 +11434,QUEENS,40.665671,-73.784038 +11434,QUEENS,40.666592,-73.782038 +11434,QUEENS,40.666672999999996,-73.779878 +11691,QUEENS,40.602993,-73.753961 +11691,QUEENS,40.602928000000006,-73.75398 +11691,QUEENS,40.603970000000004,-73.754739 +11691,QUEENS,40.593723,-73.774761 +11694,QUEENS,40.581834,-73.830051 +11694,QUEENS,40.579495,-73.834939 +11694,QUEENS,40.578936999999996,-73.836686 +10301,STATEN IS,40.6415,-74.075734 +10301,STATEN IS,40.640178999999996,-74.07659699999999 +10301,STATEN IS,40.612357,-74.092035 +10314,STATEN IS,40.608515000000004,-74.147014 +10314,STATEN IS,40.612403,-74.17549 +10314,STATEN IS,40.612474,-74.175436 +10314,STATEN IS,40.587016,-74.19135899999999 +10314,STATEN IS,40.586822999999995,-74.19152700000001 +10314,STATEN IS,40.586631,-74.1917 +10305,STATEN IS,40.615575,-74.063231 +10305,STATEN IS,40.608109000000006,-74.076326 +10305,STATEN IS,40.597367999999996,-74.084913 +10306,STATEN IS,40.571191999999996,-74.09105699999999 +10309,STATEN IS,40.515283000000004,-74.194552 +10309,STATEN IS,40.553824,-74.216904 +10309,STATEN IS,40.533481,-74.224756 +10309,STATEN IS,40.525055,-74.237788 diff --git a/data/nyc_housing_data.csv b/data/nyc_housing_data.csv new file mode 100644 index 00000000..ad157f17 --- /dev/null +++ b/data/nyc_housing_data.csv @@ -0,0 +1,4385 @@ +Project ID,Project Name,Program Group,Project Start Date,Project Completion Date,Building ID,Number,Street,Borough,Postcode,BBL,BIN,Community Board,Council District,Census Tract,NTA - Neighborhood Tabulation Area,Latitude,Longitude,Latitude (Internal),Longitude (Internal),Building Completion Date,Reporting Construction Type,Extended Affordability Only,Prevailing Wage Status,Extremely Low Income Units,Very Low Income Units,Low Income Units,Moderate Income Units,Middle Income Units,Other Income Units,Studio Units,1-BR Units,2-BR Units,3-BR Units,4-BR Units,5-BR Units,6-BR+ Units,Unknown-BR Units,Counted Rental Units,Counted Homeownership Units,All Counted Units,Total Units +68894,HP HUTCHINSON RIVER PARKWAY HDFC.HPO.FY20,Multifamily Finance Program,12/31/2019,12/31/2019,942897,1632,HUTCHINSON RIVER PARKWAY,Bronx,10461,2041530008,2045760,BX-10,13,26601,BX10,40.844284,-73.836606,40.84434,-73.836284,12/31/2019,Preservation,Yes,Non Prevailing Wage,0,0,44,0,0,0,2,12,30,0,0,0,0,0,44,0,44,44 +67286,ROCKAWAY VILLAGE PHASE 1B (RITA STARK SITE),Multifamily Finance Program,12/30/2019,,986841,20-52,MOTT AVENUE,Queens,11691,4155370001,4458300,QN-14,31,103202,QN15,40.604427,-73.753203,40.60571,-73.753022,,New Construction,No,Non Prevailing Wage,24,92,114,0,0,1,19,77,102,33,0,0,0,0,231,0,231,231 +67286,ROCKAWAY VILLAGE PHASE 1B (RITA STARK SITE),Multifamily Finance Program,12/30/2019,,989998,20-10,MOTT AVENUE,Queens,11691,4155370005,4297950,QN-14,31,103202,QN15,40.604334,-73.752998,40.60461,-73.75303,,New Construction,No,Non Prevailing Wage,8,34,43,0,0,0,13,22,37,13,0,0,0,0,85,0,85,85 +67693,680 ST. NICHOLAS AVENUE,Multifamily Finance Program,12/30/2019,12/30/2019,28170,680,ST NICHOLAS AVENUE,Manhattan,10030,1020510054,1079811,MN-09,9,227,MN04,40.823321,-73.945088,40.82356,-73.944639,12/30/2019,Preservation,Yes,Non Prevailing Wage,49,8,2,1,0,0,11,16,32,1,0,0,0,0,60,0,60,60 +67693,680 ST. NICHOLAS AVENUE,Multifamily Finance Program,12/30/2019,12/30/2019,805979,356,WEST 145 STREET,Manhattan,10039,1020510054,1079813,MN-09,9,227,MN04,40.823823,-73.944289,40.82356,-73.944639,12/30/2019,Preservation,Yes,Non Prevailing Wage,36,8,3,4,0,1,0,30,15,7,0,0,0,0,52,0,52,52 +68188,WEST 141ST STREET CLUSTER.PILLARS.FY20,Multifamily Finance Program,12/30/2019,,41491,111,WEST 141 STREET,Manhattan,10030,1020100021,1060088,MN-10,9,230,MN03,40.818153,-73.938661,40.8185,-73.938939,,Preservation,No,Non Prevailing Wage,0,4,47,7,0,1,38,5,16,0,0,0,0,0,59,0,59,59 +68188,WEST 141ST STREET CLUSTER.PILLARS.FY20,Multifamily Finance Program,12/30/2019,,41496,148,WEST 141 STREET,Manhattan,10030,1020090045,1060070,MN-10,9,230,MN03,40.818488,-73.939502,40.8182,-73.93942,,Preservation,No,Non Prevailing Wage,2,2,18,8,0,0,0,30,0,0,0,0,0,0,30,0,30,30 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,288856,750,ELDERT LANE,Brooklyn,11208,3042719001,3343249,BK-05,42,1208,BK82,40.671982,-73.863456,,,,Preservation,No,Non Prevailing Wage,0,25,7,0,0,0,1,0,24,7,0,0,0,0,32,0,32,32 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,288857,760,ELDERT LANE,Brooklyn,11208,3042719001,3343250,BK-05,42,1208,BK82,40.671675,-73.863381,,,,Preservation,No,Non Prevailing Wage,0,46,248,0,0,0,32,115,97,50,0,0,0,0,294,0,294,294 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,326066,675,LINCOLN AVENUE,Brooklyn,11208,3042710005,3095889,BK-05,42,1208,BK82,40.672675,-73.866436,40.67288,-73.865945,,Preservation,No,Non Prevailing Wage,3,50,265,0,0,1,35,124,107,53,0,0,0,0,319,0,319,319 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,326090,735,LINCOLN AVENUE,Brooklyn,11208,3042719001,3343256,BK-05,42,1208,BK82,40.671189,-73.866071,,,,Preservation,No,Non Prevailing Wage,2,42,250,0,0,0,32,115,97,50,0,0,0,0,294,0,294,294 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,808252,790,ELDERT LANE,Brooklyn,11208,3042719001,3343252,BK-05,42,1208,BK82,40.670554,-73.863105,,,,Preservation,No,Non Prevailing Wage,1,33,260,0,0,0,32,115,97,50,0,0,0,0,294,0,294,294 +68432,LINDEN PLAZA PRESERVATION LP.YR15.FY20,Multifamily Finance Program,12/27/2019,,808705,765,LINCOLN AVENUE,Brooklyn,11208,3042719001,3343260,BK-05,42,1208,BK82,40.67028,-73.865853,,,,Preservation,No,Non Prevailing Wage,0,32,261,0,0,1,32,115,97,50,0,0,0,0,294,0,294,294 +69399,179 NORTH 7TH STREET APARTMENTS,Multifamily Incentives Program,12/27/2019,,988014,179 REAR,NORTH 7 STREET,Brooklyn,,,,BK-01,33,,,,,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,9 +66720,J2,Multifamily Finance Program,12/24/2019,,985837,147-07,94 AVENUE,Queens,11435,4099980025,4448835,QN-12,27,208,QN61,40.699143,-73.806639,40.69954,-73.806194,,New Construction,No,Non Prevailing Wage,53,163,0,190,0,2,84,196,128,0,0,0,0,0,408,0,408,543 +69397,254 EAST 28TH STREET,Multifamily Incentives Program,12/24/2019,,991445,254,EAST 28 STREET,Brooklyn,11226,3051710036,3119147,BK-17,45,826,BK95,40.643831,-73.950752,40.64373,-73.951019,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +69398,FENIMORE STREET APARTMENTS,Multifamily Incentives Program,12/24/2019,,988958,293,FENIMORE STREET,Brooklyn,11225,3050390074,,BK-09,40,802,BK60,40.658574,-73.952496,40.65877,-73.952612,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,3 +69398,FENIMORE STREET APARTMENTS,Multifamily Incentives Program,12/24/2019,,988963,289,FENIMORE STREET,Brooklyn,11225,3050390076,,BK-09,40,802,BK60,40.658566,-73.95259,40.65876,-73.952767,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,16 +69398,FENIMORE STREET APARTMENTS,Multifamily Incentives Program,12/24/2019,,990327,291,FENIMORE STREET,Brooklyn,11225,3050390075,,BK-09,40,802,BK60,40.658568,-73.952543,40.65876,-73.952691,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,3 +69355,GOODWILL TERRACE,Multifamily Finance Program,12/23/2019,,413164,21-Apr,27 AVENUE,Queens,11102,4009090001,4020648,QN-01,22,87,QN71,40.774582,-73.932957,40.77487,-73.932491,,Preservation,No,Non Prevailing Wage,0,0,0,201,0,1,116,72,13,0,0,0,0,1,202,0,202,202 +69395,114 JEFFERSON STREET,Multifamily Incentives Program,12/23/2019,,992330,114,JEFFERSON STREET,Brooklyn,11206,3031720010,3072238,BK-04,34,425,BK78,40.699707,-73.930771,40.69938,-73.930742,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69396,HALSEY STREET APARTMENTS,Multifamily Incentives Program,12/23/2019,,306102,625,HALSEY STREET,Brooklyn,11233,3016620059,,BK-03,36,383,BK35,40.684389,-73.927466,40.68462,-73.927336,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,10 +69396,HALSEY STREET APARTMENTS,Multifamily Incentives Program,12/23/2019,,993483,625A,HALSEY STREET,Brooklyn,11233,3016620059,,BK-03,36,383,BK35,40.684389,-73.927466,40.68462,-73.927336,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,10 +51582,425 GRAND CONCOURSE,Multifamily Finance Program,12/20/2019,,975396,425,GRAND CONCOURSE,Bronx,10451,2023460001,,BX-01,17,63,BX63,40.817142,-73.927957,40.81698,-73.928521,,New Construction,No,Non Prevailing Wage,56,55,96,69,0,1,45,92,94,46,0,0,0,0,277,0,277,277 +58780,DINSMORE CHESTNUT,Multifamily Finance Program,12/20/2019,,993573,110,DINSMORE PLACE,Brooklyn,11208,,,BK-05,37,1178,BK83,40.681427,-73.875399,,,,New Construction,No,Non Prevailing Wage,104,115,55,0,0,1,47,70,101,57,0,0,0,0,275,0,275,275 +64232,RADROC,Multifamily Finance Program,12/20/2019,,982787,19-38,CORNAGA AVENUE,Queens,11691,4155610058,,QN-14,31,101001,QN15,40.602296,-73.752541,40.60253,-73.752573,,New Construction,No,Non Prevailing Wage,18,74,80,0,0,1,39,80,48,6,0,0,0,0,173,0,173,173 +64232,RADROC,Multifamily Finance Program,12/20/2019,,988401,18-Oct,BEACH 20 STREET,Queens,11691,4155610008,,QN-14,31,101001,QN15,40.602824,-73.753206,40.60277,-73.752914,,New Construction,No,Non Prevailing Wage,7,27,46,0,0,0,18,38,17,7,0,0,0,0,80,0,80,80 +66102,1613 REALTY LTD.GHPP.FY20,Multifamily Finance Program,12/20/2019,,85454,1135,HOE AVENUE,Bronx,10459,2027450046,2006069,BX-03,17,125,BX35,40.827139,-73.890913,40.82703,-73.89109,,Preservation,No,Non Prevailing Wage,1,9,21,0,0,1,0,25,5,2,0,0,0,0,32,0,32,32 +66970,HUNTERS POINT SOUTH PARCELS F AND G,Multifamily Finance Program,12/20/2019,,992321,57-28,2 STREET,Queens,11101,4000060020,,QN-02,26,1,QN31,40.738823,-73.960598,40.7381,-73.960725,,New Construction,No,Non Prevailing Wage,66,44,22,89,110,1,67,196,47,22,0,0,0,0,332,0,332,443 +66970,HUNTERS POINT SOUTH PARCELS F AND G,Multifamily Finance Program,12/20/2019,,993728,15-Jan,57 AVENUE,Queens,11101,4000060030,,QN-02,26,1,QN31,40.739054,-73.961601,40.73929,-73.961175,,New Construction,No,Non Prevailing Wage,104,67,35,138,172,1,152,179,163,23,0,0,0,0,517,0,517,689 +67367,BEACH 21ST STREET,Multifamily Finance Program,12/20/2019,,992168,1047,BEACH 21 STREET,Queens,11691,,,QN-14,31,100802,QN15,40.603358,-73.753866,,,,New Construction,No,Non Prevailing Wage,23,88,112,0,0,1,35,85,71,33,0,0,0,0,224,0,224,224 +68080,980 WESTCHESTER AVE.,Multifamily Finance Program,12/20/2019,,992352,980,WESTCHESTER AVENUE,Bronx,10459,2027140030,2005661,BX-02,17,159,BX27,40.823204,-73.894731,40.82306,-73.89436,,New Construction,No,Non Prevailing Wage,51,40,59,0,0,1,47,64,23,17,0,0,0,0,151,0,151,151 +69339,CONFIDENTIAL,Homeowner Assistance Program,12/20/2019,12/20/2019,,----,----,Bronx,,,,BX-01,17,,,,,,,12/20/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69392,1266 OCEAN PARKWAY APARTMENTS,Multifamily Incentives Program,12/20/2019,,984581,1266,OCEAN PARKWAY,Brooklyn,11230,3065410035,3171719,BK-12,44,448,BK46,40.617918,-73.969296,40.61772,-73.969909,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +69393,1266 PACIFIC STREET APARTMENTS,Multifamily Incentives Program,12/20/2019,,349495,1266,PACIFIC STREET,Brooklyn,11216,3012070006,3030040,BK-08,36,315,BK61,40.677607,-73.949087,40.67737,-73.949357,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +49713,SOBRO. 988 WASHINGTON AVE. NEW ROADS PLAZA,Multifamily Finance Program,12/19/2019,,950357,986,WASHINGTON AVENUE,Bronx,10456,2023690001,,BX-03,17,185,BX35,40.825945,-73.909852,40.82589,-73.909628,,New Construction,No,Non Prevailing Wage,57,0,37,0,0,1,57,19,19,0,0,0,0,0,95,0,95,95 +65563,LES 278 HDFC.PLP.FY20 (278 EAST 7 STREET),Multifamily Finance Program,12/19/2019,,11162,276,EAST 7 STREET,Manhattan,10009,1003760031,1004487,MN-03,2,2602,MN28,40.723448,-73.97738,40.72309,-73.977077,,Preservation,No,Non Prevailing Wage,1,14,2,0,0,0,1,9,2,5,0,0,0,0,0,17,17,17 +68157,GREENPOINT LANDING D2,Multifamily Incentives Program,12/19/2019,,988654,221,WEST STREET,Brooklyn,11222,,,BK-01,33,563,BK76,40.734469,-73.960023,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,83,0,18,42,23,0,0,0,0,0,83,0,83,302 +68158,GREENPOINT LANDING D3,Multifamily Incentives Program,12/19/2019,,991141,213,WEST STREET,Brooklyn,11222,3024720002,,BK-01,33,563,BK76,40.73434,-73.960005,40.73467,-73.961748,,New Construction,No,Non Prevailing Wage,0,0,76,0,32,0,23,31,48,6,0,0,0,0,108,0,108,108 +69394,103-43 120TH STREET APARTMENTS,Multifamily Incentives Program,12/19/2019,,989590,103-43,120 STREET,Queens,11419,4095580044,4203780,QN-10,28,15802,QN55,40.687518,-73.823612,40.68711,-73.823055,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +48996,204 AVENUE A & 535 EAST 12TH STREET PROJECT,Multifamily Finance Program,12/18/2019,,972405,204,AVENUE A,Manhattan,10009,1004060006,1005201,MN-03,2,34,MN22,40.729512,-73.981,40.72938,-73.980751,,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,0,8,2,0,0,0,0,0,0,10,10,10 +48996,204 AVENUE A & 535 EAST 12TH STREET PROJECT,Multifamily Finance Program,12/18/2019,,972406,535,EAST 12 STREET,Manhattan,10009,1004060047,1005227,MN-03,2,34,MN22,40.728708,-73.980405,40.72861,-73.979615,,New Construction,No,Non Prevailing Wage,0,0,0,0,11,0,1,10,0,0,0,0,0,0,11,0,11,11 +65306,MARCUS GARVEY PHASE I-BUILDING B + D,Multifamily Incentives Program,12/18/2019,,991644,169,LIVONIA AVENUE,Brooklyn,11212,3035730001,3326498,BK-16,41,924,BK81,40.662164,-73.911587,40.66291,-73.91128,,New Construction,No,Non Prevailing Wage,9,12,57,0,0,0,19,32,13,14,0,0,0,0,78,0,78,78 +65306,MARCUS GARVEY PHASE I-BUILDING B + D,Multifamily Incentives Program,12/18/2019,,993171,215,LIVONIA AVENUE,Brooklyn,11212,3035740001,3345333,BK-16,41,924,BK81,40.662402,-73.909998,40.66311,-73.910509,,New Construction,No,Non Prevailing Wage,1,64,30,0,0,0,20,36,19,20,0,0,0,0,95,0,95,96 +67130,COMMUNITY ACCESS. 1159 RIVER AVENUE,Multifamily Finance Program,12/18/2019,,988878,1159,RIVER AVENUE,Bronx,10452,,,BX-04,16,197,BX63,40.834635,-73.921947,,,,New Construction,No,Non Prevailing Wage,148,0,96,0,0,1,145,28,55,17,0,0,0,0,245,0,245,245 +68210,COMUNILIFE. 3395-3401 THIRD AVENUE,Multifamily Finance Program,12/18/2019,,989008,3401,3 AVENUE,Bronx,10456,2023710052,2001305,BX-03,16,185,BX35,40.828457,-73.906973,40.82847,-73.90746,,New Construction,No,Non Prevailing Wage,90,29,28,0,0,1,112,36,0,0,0,0,0,0,148,0,148,148 +69184,MARCUS GARVEY PHASE I- BUILDING F,Multifamily Incentives Program,12/18/2019,,992863,449,CHESTER STREET,Brooklyn,11212,3036020012,,BK-16,42,916,BK81,40.660422,-73.909334,40.66031,-73.909024,,New Construction,No,Non Prevailing Wage,9,80,84,0,0,0,55,67,34,17,0,0,0,0,173,0,173,174 +69338,CONFIDENTIAL,Homeowner Assistance Program,12/17/2019,12/17/2019,,----,----,Brooklyn,,,,BK-05,37,,,,,,,12/17/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +69391,753 ELTON AVENUE APARTMENTS,Multifamily Incentives Program,12/17/2019,,941699,753,ELTON AVENUE,Bronx,10451,2023780029,,BX-01,17,69,BX34,40.820766,-73.913779,40.82073,-73.914076,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,8 +65582,4697 THIRD AVENUE,Small Homes Program,12/12/2019,,993492,4697,3 AVENUE,Bronx,10458,2030410038,,BX-06,15,385,BX01,40.85869,-73.891129,40.85871,-73.891418,,New Construction,No,Non Prevailing Wage,12,12,28,0,0,1,7,19,20,7,0,0,0,0,53,0,53,53 +68542,CHATTERTON.HRP.FY20,Multifamily Finance Program,12/12/2019,,104641,1041,PUGSLEY AVENUE,Bronx,10472,2037880021,2025666,BX-09,18,4001,BX55,40.827716,-73.856386,40.82781,-73.857094,,Preservation,No,Non Prevailing Wage,6,126,0,0,0,1,0,50,56,25,2,0,0,0,0,133,133,133 +68267,SUNSET GARDENS HDFC.HUDMF,Multifamily Finance Program,12/11/2019,12/11/2019,938231,405,44 STREET,Brooklyn,11220,3007290072,3011001,BK-07,38,82,BK32,40.64955,-74.008627,40.64969,-74.008408,12/11/2019,Preservation,Yes,Non Prevailing Wage,80,1,0,0,0,0,0,81,0,0,0,0,0,0,81,0,81,81 +69390,177-14 WEXFORD TERRACE,Multifamily Incentives Program,12/11/2019,,703836,177-14,WEXFORD TERRACE,Queens,11432,4098350026,4617569,QN-08,24,466,QN06,40.713096,-73.785998,40.71269,-73.786544,,New Construction,No,Non Prevailing Wage,0,0,0,0,12,0,0,6,6,0,0,0,0,0,12,0,12,39 +69389,1613 BROOKLYN AVENUE APARTMENTS,Multifamily Incentives Program,12/10/2019,,991288,1617,BROOKLYN AVENUE,Brooklyn,11210,3075640031,3206136,BK-17,45,784,BK91,40.633506,-73.941908,40.63358,-73.941608,,New Construction,No,Non Prevailing Wage,0,0,0,0,11,0,0,7,4,0,0,0,0,0,11,0,11,35 +68526,PLAZA APARTMENTS,Multifamily Finance Program,12/09/2019,12/09/2019,228365,212,CROWN STREET,Brooklyn,11225,3012960008,3034160,BK-09,35,321,BK63,40.666421,-73.953403,40.66619,-73.953338,12/09/2019,Preservation,Yes,Non Prevailing Wage,29,3,1,2,0,0,4,11,13,7,0,0,0,0,35,0,35,35 +68526,PLAZA APARTMENTS,Multifamily Finance Program,12/09/2019,12/09/2019,373954,298,ST JOHNS PLACE,Brooklyn,11238,3011720027,3029358,BK-08,35,207,BK64,40.674191,-73.967753,40.67395,-73.967594,12/09/2019,Preservation,Yes,Non Prevailing Wage,12,2,1,0,0,0,2,6,4,3,0,0,0,0,15,0,15,15 +68526,PLAZA APARTMENTS,Multifamily Finance Program,12/09/2019,12/09/2019,949874,304,SAINT JOHNS PLACE,Brooklyn,11238,3011720028,3029359,BK-08,35,207,BK64,40.674232,-73.967616,40.67399,-73.967446,12/09/2019,Preservation,Yes,Non Prevailing Wage,10,0,2,1,0,0,0,4,7,2,0,0,0,0,13,0,13,13 +68526,PLAZA APARTMENTS,Multifamily Finance Program,12/09/2019,12/09/2019,991328,308,ST JOHNS PLACE,Brooklyn,11238,3011720029,3029360,BK-08,35,207,BK64,40.674257,-73.967522,40.67405,-73.967313,12/09/2019,Preservation,Yes,Non Prevailing Wage,7,3,2,0,0,1,0,3,7,3,0,0,0,0,13,0,13,13 +69336,CONFIDENTIAL,Homeowner Assistance Program,12/09/2019,12/09/2019,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/09/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69337,CONFIDENTIAL,Homeowner Assistance Program,12/09/2019,12/09/2019,,----,----,Queens,,,,QN-11,23,,,,,,,12/09/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69388,TROUTMAN STREET APARTMENTS,Multifamily Incentives Program,12/09/2019,,991662,31,TROUTMAN STREET,Brooklyn,11206,3031710069,,BK-04,34,391,BK78,40.698157,-73.932561,40.69819,-73.933001,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,18 +69419,456 AVENUE P APARTMENTS,Multifamily Incentives Program,12/09/2019,,193529,456,AVENUE P,Brooklyn,11223,3066357501,3425639,BK-15,44,422,BK25,40.609078,-73.970575,40.60881,-73.970568,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,6,3,0,0,0,0,0,9,0,9,28 +69334,CONFIDENTIAL,Homeowner Assistance Program,12/06/2019,12/06/2019,,----,----,Bronx,,,,BX-08,11,,,,,,,12/06/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69335,CONFIDENTIAL,Homeowner Assistance Program,12/06/2019,12/06/2019,,----,----,Manhattan,,,,MN-05,4,,,,,,,12/06/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69387,19 MALTA STREET,Multifamily Incentives Program,12/06/2019,,331378,19,MALTA STREET,Brooklyn,11207,3042950073,3421411,BK-05,42,1130,BK85,40.659854,-73.895883,40.66002,-73.89571,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +62057,32-34 PUTNAM AVENUE CLUSTER PHASE I,Multifamily Finance Program,12/05/2019,,217176,55,CARLTON AVENUE,Brooklyn,11205,3020310001,3057984,BK-02,35,211,BK68,40.6965,-73.973501,40.69632,-73.973245,,Preservation,No,Non Prevailing Wage,0,0,0,6,0,0,0,1,5,0,0,0,0,0,0,6,6,6 +62057,32-34 PUTNAM AVENUE CLUSTER PHASE I,Multifamily Finance Program,12/05/2019,,230287,546,DEKALB AVENUE,Brooklyn,11205,3017780014,3049600,BK-03,36,241,BK75,40.690974,-73.954774,40.69086,-73.954709,,Preservation,No,Non Prevailing Wage,0,0,0,7,0,0,0,1,6,0,0,0,0,0,0,7,7,7 +62057,32-34 PUTNAM AVENUE CLUSTER PHASE I,Multifamily Finance Program,12/05/2019,,349463,1216,PACIFIC STREET,Brooklyn,11216,3012060020,3029989,BK-08,36,315,BK61,40.677746,-73.951376,40.67752,-73.951607,,Preservation,No,Non Prevailing Wage,0,0,0,5,0,0,1,4,0,0,0,0,0,0,5,0,5,5 +68079,167-171 CHRYSTIE STREET,Multifamily Incentives Program,12/05/2019,,991704,167,CHRYSTIE STREET,Manhattan,10002,1004250031,,MN-03,1,18,MN27,40.720791,-73.992485,40.7208,-73.992857,,New Construction,No,Non Prevailing Wage,0,7,8,0,0,0,5,8,2,0,0,0,0,0,15,0,15,78 +69386,2746 FULTON STREET,Multifamily Incentives Program,12/05/2019,,988957,2746,FULTON STREET,Brooklyn,11207,3036740016,3083379,BK-05,37,1198,BK82,40.677791,-73.89323,40.67758,-73.893198,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,9 +69385,100 SUYDAM STREET,Multifamily Incentives Program,12/04/2019,,340553,1251,MYRTLE AVENUE,Brooklyn,11221,3032170004,,BK-04,34,423,BK78,40.697705,-73.928851,40.69788,-73.928732,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23579,406,LENOX AVENUE,Manhattan,10037,1017280002,1053770,MN-10,9,208,MN03,40.811095,-73.943049,40.81093,-73.942677,,Preservation,No,Non Prevailing Wage,0,0,0,9,0,0,0,0,9,0,0,0,0,0,0,9,9,9 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23593,422,LENOX AVENUE,Manhattan,10037,1017290101,1053873,MN-10,9,208,MN03,40.811699,-73.942612,40.81154,-73.942265,,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,4,0,0,0,0,0,0,0,4,4,4 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23595,424,LENOX AVENUE,Manhattan,10037,1017290002,1053825,MN-10,9,208,MN03,40.81174,-73.942579,40.81158,-73.942236,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23596,426,LENOX AVENUE,Manhattan,10037,1017290003,1053826,MN-10,9,208,MN03,40.811779,-73.94255,40.81162,-73.942207,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,3,3 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23597,428,LENOX AVENUE,Manhattan,10037,1017290103,1053874,MN-10,9,208,MN03,40.81182,-73.942521,40.81166,-73.942178,,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,23600,432,LENOX AVENUE,Manhattan,10037,1017290172,1053884,MN-10,9,208,MN03,40.811899,-73.94246,40.81174,-73.94212,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +61840,LENOX AVENUE CLUSTER (ANCP),Multifamily Finance Program,12/03/2019,,40420,135,WEST 132 STREET,Manhattan,10027,1019170016,1058151,MN-10,9,226,MN03,40.812676,-73.94337,40.81297,-73.943535,,Preservation,No,Non Prevailing Wage,0,0,0,29,0,0,5,1,12,11,0,0,0,0,0,29,29,29 +69384,495 ST. JOHNS PLACE,Multifamily Incentives Program,12/03/2019,,374023,495,ST JOHNS PLACE,Brooklyn,11238,3011740049,,BK-08,35,215,BK64,40.673325,-73.961646,40.67355,-73.961426,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,2,2,4,0,0,0,0,0,8,0,8,26 +68810,215 AUDUBON AVENUE HDFC.GHPP.FY20,Multifamily Finance Program,12/02/2019,,6199,215,AUDUBON AVENUE,Manhattan,10033,1021320007,1063180,MN-12,10,261,MN36,40.845367,-73.934787,40.8452,-73.934563,,Preservation,No,Non Prevailing Wage,24,19,3,0,0,1,0,12,12,23,0,0,0,0,47,0,47,47 +69383,1329 EAST 13TH STREET,Multifamily Incentives Program,12/02/2019,,243352,1329,EAST 13 STREET,Brooklyn,11230,3067420075,3180868,BK-14,48,768,BK43,40.61681,-73.96169,40.6171,-73.96147,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,1,0,4,0,0,0,0,0,5,0,5,14 +69382,505 UNION AVENUE APARTMENTS,Multifamily Incentives Program,11/29/2019,,382976,503,UNION AVENUE,Brooklyn,11211,3023150021,3061860,BK-01,33,519,BK73,40.715665,-73.951889,40.71577,-73.952192,,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,7,0,0,0,0,0,0,7,0,7,23 +63968,BALTON COMMONS,Small Homes Program,11/27/2019,,989032,267,WEST 126 STREET,Manhattan,10027,1019320005,,MN-10,9,224,MN03,40.810409,-73.949628,40.8108,-73.95,,New Construction,No,Non Prevailing Wage,9,4,13,10,0,1,11,12,11,3,0,0,0,0,37,0,37,37 +69309,CONFIDENTIAL,Homeowner Assistance Program,11/27/2019,11/27/2019,,----,----,Manhattan,,,,MN-11,8,,,,,,,11/27/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69310,CONFIDENTIAL,Homeowner Assistance Program,11/27/2019,11/27/2019,,----,----,Queens,,,,QN-07,20,,,,,,,11/27/2019,New Construction,No,Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69380,25-34 STEINWAY STREET,Multifamily Incentives Program,11/27/2019,,993230,25-34,STEINWAY STREET,Queens,11103,4006540078,4618943,QN-01,22,143,QN70,40.767566,-73.912018,40.76718,-73.912679,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,10 +69381,PLG APARTMENTS,Multifamily Incentives Program,11/27/2019,,982039,123,LINDEN BOULEVARD,Brooklyn,11226,3050840084,3116661,BK-17,40,822,BK60,40.652415,-73.954227,40.6527,-73.954306,,New Construction,No,Non Prevailing Wage,0,0,0,0,141,0,36,67,31,7,0,0,0,0,141,0,141,467 +60963,FAC. 6309 FOURTH AVENUE,Multifamily Finance Program,11/26/2019,,988831,6309,4 AVENUE,Brooklyn,11220,3058090007,3334218,BK-07,38,122,BK32,40.639017,-74.020307,40.63878,-74.020059,,New Construction,No,Prevailing Wage,75,0,0,0,0,1,48,28,0,0,0,0,0,0,76,0,76,76 +60963,FAC. 6309 FOURTH AVENUE,Multifamily Finance Program,11/26/2019,,992737,414,63 STREET,Brooklyn,11220,3058090010,3144060,BK-07,38,122,BK32,40.638756,-74.019579,40.63868,-74.019889,,New Construction,No,Prevailing Wage,8,0,0,0,0,0,5,3,0,0,0,0,0,0,8,0,8,8 +68268,HARBOR HILL HDFC,Multifamily Finance Program,11/26/2019,11/26/2019,127004,5605,2 AVENUE,Brooklyn,11220,3008370001,3341882,BK-07,38,22,BK32,40.645629,-74.020515,40.64523,-74.0205,11/26/2019,Preservation,Yes,Non Prevailing Wage,85,1,0,0,0,1,12,74,1,0,0,0,0,0,87,0,87,87 +69295,CONFIDENTIAL,Homeowner Assistance Program,11/26/2019,,,----,----,Brooklyn,,,,BK-03,36,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +69378,251 WEST 117TH STREET,Multifamily Incentives Program,11/26/2019,,38465,253,WEST 117 STREET,Manhattan,10026,1019230016,,MN-10,9,218,MN11,40.804639,-73.953761,40.80473,-73.953389,,New Construction,No,Non Prevailing Wage,0,0,0,0,32,0,8,13,11,0,0,0,0,0,32,0,32,104 +69379,987 WILLOUGHBY AVENUE APARTMENTS,Multifamily Incentives Program,11/26/2019,,990090,987,WILLOUGHBY AVENUE,Brooklyn,11221,3031840062,,BK-04,34,423,BK78,40.698636,-73.929351,40.69872,-73.929701,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,0,5,5,0,0,0,0,0,10,0,10,31 +67960,1120 WHEELER AVE.GHPP.FY20,Multifamily Finance Program,11/25/2019,,122729,1120,WHEELER AVENUE,Bronx,10472,2037390012,2023810,BX-09,17,5002,BX55,40.826672,-73.879669,40.82648,-73.879348,,Preservation,No,Non Prevailing Wage,0,1,3,0,0,0,0,2,1,1,0,0,0,0,4,0,4,4 +69375,253-255 NOSTRAND AVENUE APARTMENTS,Multifamily Incentives Program,11/25/2019,,346515,253,NOSTRAND AVENUE,Brooklyn,11205,3017840002,3426325,BK-03,36,253,BK75,40.690168,-73.951515,40.69021,-73.951241,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +69377,73 STARR STREET APARTMENTS,Multifamily Incentives Program,11/25/2019,11/27/2019,984421,73,STARR STREET,Brooklyn,11237,3031860051,3426213,BK-04,34,427,BK77,40.701774,-73.926419,40.70184,-73.926693,11/27/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,4,4,0,0,0,0,0,8,0,8,24 +69373,186 ST. GEORGES CRESCENT,Multifamily Incentives Program,11/22/2019,,991737,170,EAST 206 STREET,Bronx,10458,2033120008,2017370,BX-07,11,413,BX05,40.875904,-73.88491,40.8757,-73.885048,,New Construction,No,Non Prevailing Wage,0,0,6,0,12,0,4,4,9,1,0,0,0,0,18,0,18,56 +69374,433 EAST 13TH STREET APARTMENTS,Multifamily Incentives Program,11/22/2019,,984205,435,EAST 13 STREET,Manhattan,10009,1004417504,1090211,MN-03,2,34,MN22,40.730295,-73.982194,40.73028,-73.981249,,New Construction,No,Non Prevailing Wage,0,12,12,0,6,0,8,15,7,0,0,0,0,0,30,0,30,113 +69308,CONFIDENTIAL,Homeowner Assistance Program,11/21/2019,11/21/2019,,----,----,Staten Island,,,,SI-01,49,,,,,,,11/21/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69372,THE ELEVEN 11 APARTMENTS,Multifamily Incentives Program,11/20/2019,,205506,1111,BEDFORD AVENUE,Brooklyn,11216,3018120007,,BK-03,36,243,BK75,40.685671,-73.954359,40.68564,-73.953966,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,6,3,0,0,0,0,0,9,0,9,28 +67540,777 GLENMORE AVENUE,Multifamily Incentives Program,11/19/2019,,991145,777,GLENMORE AVENUE,Brooklyn,11208,3039880035,3088714,BK-05,37,1166,BK82,40.675337,-73.881543,40.67551,-73.881442,,New Construction,No,Non Prevailing Wage,0,6,0,0,0,0,1,1,1,0,3,0,0,0,6,0,6,32 +69371,188 PULASKI STREET,Multifamily Incentives Program,11/18/2019,,357447,188,PULASKI STREET,Brooklyn,11206,3017760029,3049541,BK-03,36,261,BK75,40.692943,-73.944171,40.69273,-73.944063,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +69369,74 BLEECKER STREET,Multifamily Incentives Program,11/15/2019,,210837,74,BLEECKER STREET,Brooklyn,11221,3033050023,3075618,BK-04,34,419,BK78,40.694508,-73.921815,40.69436,-73.921617,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69370,87-65 171ST STREET APARTMENTS,Multifamily Incentives Program,11/15/2019,,841173,87-67,171 STREET,Queens,11432,4098270025,4210223,QN-12,27,462,QN61,40.710887,-73.79068,40.71118,-73.790574,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,0,8,2,0,0,0,0,0,10,0,10,31 +67632,BK WESTCHESTER-HOME STREET LLC.PLP.FY20,Multifamily Finance Program,11/14/2019,,86433,1084,HOME STREET,Bronx,10459,2027580029,2006310,BX-03,17,12101,BX35,40.827849,-73.88689,40.82761,-73.886949,,Preservation,No,Non Prevailing Wage,1,46,8,0,0,1,1,47,7,1,0,0,0,0,56,0,56,56 +67632,BK WESTCHESTER-HOME STREET LLC.PLP.FY20,Multifamily Finance Program,11/14/2019,,122199,1244,WESTCHESTER AVENUE,Bronx,10459,2027570014,2006276,BX-02,17,12102,BX27,40.826623,-73.888103,40.82627,-73.88814,,Preservation,No,Non Prevailing Wage,8,45,5,0,0,1,0,32,13,14,0,0,0,0,59,0,59,59 +68433,GODDARD RIVERSIDE.HRP.FY20,Multifamily Finance Program,11/14/2019,,6012,711,AMSTERDAM AVENUE,Manhattan,10025,1012250001,1032551,MN-07,6,181,MN12,40.793032,-73.971097,40.79279,-73.970566,,Preservation,No,Non Prevailing Wage,50,133,10,0,0,1,0,30,30,90,44,0,0,0,0,194,194,194 +69307,CONFIDENTIAL,Homeowner Assistance Program,11/14/2019,11/14/2019,,----,----,Brooklyn,,,,BK-12,40,,,,,,,11/14/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +69367,104-22 ASTORIA BOULEVARD,Multifamily Incentives Program,11/14/2019,,628799,104-22,ASTORIA BOULEVARD,Queens,11369,4016910006,4041839,QN-03,21,365,QN27,40.761241,-73.864973,40.76088,-73.864674,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,7 +69368,142 ERASMUS STREET,Multifamily Incentives Program,11/14/2019,,988873,142,ERASMUS STREET,Brooklyn,11226,3051080026,3117320,BK-17,40,824,BK95,40.649724,-73.950856,40.64946,-73.950957,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,10 +69366,1666 BROADWAY APARTMENTS,Multifamily Incentives Program,11/13/2019,,213952,1666,BROADWAY,Brooklyn,11207,3015037503,3040471,BK-16,41,373,BK79,40.684297,-73.912928,40.68417,-73.91321,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,2,0,0,0,0,0,0,0,2,0,2,5 +69364,2920 BRIGHTON 4TH STREET,Multifamily Incentives Program,11/12/2019,,991404,2920,BRIGHTON 4 STREET,Brooklyn,11235,3086630260,3244341,BK-13,48,364,BK19,40.58048,-73.96449,40.58038,-73.964709,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,2,2,0,0,0,0,0,4,0,4,13 +69365,370 EVERGREEN AVENUE,Multifamily Incentives Program,11/12/2019,,290740,370,EVERGREEN AVENUE,Brooklyn,11221,3032840026,3426364,BK-04,34,395,BK78,40.694158,-73.923795,40.69405,-73.923885,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,2,0,0,0,0,0,0,0,2,0,2,6 +69270,CONFIDENTIAL,Homeowner Assistance Program,11/08/2019,,,----,----,Brooklyn,,,,BK-16,42,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69362,235 HAWTHORNE STREET APARTMENTS,Multifamily Incentives Program,11/08/2019,,309244,235,HAWTHORNE STREET,Brooklyn,11225,3050440077,3425934,BK-09,40,802,BK60,40.657723,-73.952313,40.658,-73.952522,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,17 +69363,264 SULLIVAN PLACE APARTMENTS,Multifamily Incentives Program,11/08/2019,,979531,264,SULLIVAN PLACE,Brooklyn,11225,3013080025,3425878,BK-09,35,321,BK63,40.664596,-73.952298,40.66437,-73.952352,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,2,2,4,0,0,0,0,0,8,0,8,25 +69356,1117 HOE AVENUE APARTMENTS,Multifamily Incentives Program,11/07/2019,,992539,1117,HOE AVENUE,Bronx,10459,2027440034,,BX-02,17,12701,BX27,40.826302,-73.890911,40.82626,-73.891182,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,2,2,0,0,0,0,0,4,0,4,12 +67788,PCMH. 972 WASHINGTON AVE,Multifamily Finance Program,11/06/2019,,988341,972,WASHINGTON AVENUE,Bronx,10456,2023680012,2001224,BX-03,17,185,BX35,40.825487,-73.910106,40.82531,-73.909719,,New Construction,No,Non Prevailing Wage,65,0,41,0,0,1,82,0,25,0,0,0,0,0,107,0,107,107 +69354,877 PARK AVENUE,Multifamily Incentives Program,11/06/2019,12/11/2019,351329,877,PARK AVENUE,Brooklyn,11206,3015790046,3042848,BK-03,36,28501,BK78,40.698677,-73.940069,40.69892,-73.940008,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69306,CONFIDENTIAL,Homeowner Assistance Program,11/05/2019,11/05/2019,,----,----,Bronx,,,,BX-12,12,,,,,,,11/05/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67494,PROJECT HOSPITALITY. 221 PORT RICHMOND AVE,Multifamily Finance Program,11/04/2019,,989187,221,PORT RICHMOND AVENUE,Staten Island,10302,5010350012,5157667,SI-01,49,207,SI28,40.63583,-74.134885,40.63581,-74.134593,,New Construction,No,Non Prevailing Wage,31,0,16,0,0,1,47,0,1,0,0,0,0,0,48,0,48,48 +69234,CONFIDENTIAL,Homeowner Assistance Program,10/31/2019,10/31/2019,,----,----,Queens,,,,QN-08,24,,,,,,,10/31/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69235,CONFIDENTIAL,Homeowner Assistance Program,10/31/2019,10/31/2019,,----,----,Queens,,,,QN-07,20,,,,,,,10/31/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69353,86-57 MIDLAND PARKWAY APARTMENTS,Multifamily Incentives Program,10/31/2019,,982174,86-57,MIDLAND PARKWAY,Queens,11432,4099450075,4213063,QN-08,24,466,QN06,40.714886,-73.783139,40.71492,-73.782594,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,15 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,25490,10,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.711453,-73.995661,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,93,39,0,0,4,89,37,2,0,0,0,0,132,0,132,132 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805092,12,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.711461,-73.995581,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,121,29,0,0,1,120,29,0,0,0,0,0,150,0,150,150 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805093,14,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.71147,-73.995502,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,89,50,0,0,0,89,39,11,0,0,0,0,139,0,139,139 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805094,16,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.711349,-73.996674,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,86,48,0,0,0,86,37,11,0,0,0,0,134,0,134,134 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805097,18,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.711371,-73.996429,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,85,23,0,0,1,84,23,0,0,0,0,0,108,0,108,108 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805098,20,MONROE STREET,Manhattan,10002,1002530001,1077585,MN-03,1,8,MN27,40.711396,-73.996187,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,86,48,0,0,6,80,36,12,0,0,0,0,134,0,134,134 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805099,30,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.711522,-73.994939,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,91,49,0,0,2,89,38,11,0,0,0,0,140,0,140,140 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805100,32,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.71153,-73.994867,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,121,29,0,0,1,120,29,0,0,0,0,0,150,0,150,150 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805101,34,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.711536,-73.994795,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,98,25,0,0,6,92,25,0,0,0,0,0,123,0,123,123 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805102,36,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.711544,-73.994723,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,94,12,0,0,7,87,12,0,0,0,0,0,106,0,106,106 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805103,38,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.711549,-73.994651,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,119,18,0,0,1,118,17,1,0,0,0,0,137,0,137,137 +69118,KNICKERBOCKER VILLAGE,Multifamily Incentives Program,10/30/2019,10/30/2019,805104,40,MONROE STREET,Manhattan,10002,1002530001,1077591,MN-03,1,8,MN27,40.711555,-73.994579,40.71093,-73.995426,10/30/2019,Preservation,Yes,Non Prevailing Wage,0,0,76,61,0,0,3,73,50,11,0,0,0,0,137,0,137,137 +65360,SEVENTEENTH STREET HDFC.YR15.FY20,Multifamily Finance Program,10/29/2019,,30579,105,WEST 17 STREET,Manhattan,10011,1007930032,1078649,MN-04,3,81,MN13,40.739463,-73.995886,40.73963,-73.995749,,Preservation,No,Prevailing Wage,0,6,12,0,0,0,18,0,0,0,0,0,0,0,18,0,18,18 +64768,WATERSIDE PLAZA.HPO.FY20,Multifamily Finance Program,10/25/2019,10/25/2019,21590,10,WATERSIDE PLAZA,Manhattan,10010,1009910060,1083706,MN-06,4,62,MN20,40.737152,-73.974243,40.73742,-73.973261,10/25/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,27,43,25,15,33,41,8,0,0,0,0,97,0,97,360 +64768,WATERSIDE PLAZA.HPO.FY20,Multifamily Finance Program,10/25/2019,10/25/2019,805445,20,WATERSIDE PLAZA,Manhattan,10010,1009910060,1083709,MN-06,4,62,MN20,40.737259,-73.97416,40.73742,-73.973261,10/25/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,22,36,19,17,29,24,7,0,0,0,0,77,0,77,360 +64768,WATERSIDE PLAZA.HPO.FY20,Multifamily Finance Program,10/25/2019,10/25/2019,805446,25,WATERSIDE PLAZA,Manhattan,10010,1009910060,1083708,MN-06,4,62,MN20,40.737366,-73.974077,40.73742,-73.973261,10/25/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,0,5,4,0,0,9,0,0,0,0,0,9,0,9,20 +64768,WATERSIDE PLAZA.HPO.FY20,Multifamily Finance Program,10/25/2019,10/25/2019,805447,30,WATERSIDE PLAZA,Manhattan,10010,1009910060,1083710,MN-06,4,62,MN20,40.737655,-73.973867,40.73742,-73.973261,10/25/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,28,39,31,17,37,37,7,0,0,0,0,98,0,98,365 +64768,WATERSIDE PLAZA.HPO.FY20,Multifamily Finance Program,10/25/2019,10/25/2019,805448,40,WATERSIDE PLAZA,Manhattan,10010,1009910060,1083712,MN-06,4,62,MN20,40.737742,-73.973799,40.73742,-73.973261,10/25/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,27,17,4,4,13,19,12,0,0,0,0,48,0,48,366 +69210,CONFIDENTIAL,Homeowner Assistance Program,10/25/2019,,,----,----,Brooklyn,,,,BK-03,36,,,,,,,,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69351,105-05 NORTHERN BOULEVARD,Multifamily Incentives Program,10/25/2019,,985041,105-05,NORTHERN BOULEVARD,Queens,11368,4017000043,4042144,QN-03,21,365,QN27,40.75774,-73.863554,40.758,-73.863492,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,2,0,0,0,0,0,0,2,0,2,6 +69352,348 NOSTRAND AVENUE,Multifamily Incentives Program,10/25/2019,,346728,348,NOSTRAND AVENUE,Brooklyn,11216,3017970059,3426326,BK-03,36,243,BK75,40.687832,-73.951073,40.68797,-73.951394,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,5,4,0,0,0,0,0,9,0,9,28 +69238,CONFIDENTIAL,Homeowner Assistance Program,10/24/2019,10/24/2019,,----,----,Queens,,,,QN-06,29,,,,,,,10/24/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +69349,1030-1032 STEBBINS AVENUE APARTMENTS,Multifamily Incentives Program,10/24/2019,,993468,1032,REV JAMES POLITE AVENUE,Bronx,10459,2026910047,2128205,BX-02,17,131,BX33,40.824377,-73.898852,40.82433,-73.898567,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,3 +69349,1030-1032 STEBBINS AVENUE APARTMENTS,Multifamily Incentives Program,10/24/2019,,993471,1030,REV JAMES POLITE AVENUE,Bronx,10459,2026910147,2129273,BX-02,17,131,BX33,40.824325,-73.898852,40.82426,-73.898574,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,2,1,0,0,0,0,0,0,3,0,3,17 +69350,1068 PUTNAM AVENUE APARTMENTS,Multifamily Incentives Program,10/24/2019,,357671,1068,PUTNAM AVENUE,Brooklyn,11221,3014860022,3039815,BK-03,41,375,BK35,40.687535,-73.919508,40.68733,-73.919339,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68660,RIVER CROSSING OWNER HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,382,1952,1 AVENUE,Manhattan,10029,1016940007,1083932,MN-11,8,162,MN33,40.786225,-73.942518,40.78587,-73.941933,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,177,22,0,8,61,86,38,9,0,0,0,202,0,202,306 +68660,RIVER CROSSING OWNER HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,804622,420,EAST 102 STREET,Manhattan,10029,1016940005,1083931,MN-11,8,162,MN33,40.786718,-73.941138,40.78643,-73.941507,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,104,5,1,52,18,24,12,5,0,0,0,111,0,111,147 +68660,RIVER CROSSING OWNER HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,804820,1962,1 AVENUE,Manhattan,10029,1016940005,1083931,MN-11,8,162,MN33,40.786516,-73.942305,40.78643,-73.941507,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,177,20,1,8,56,93,34,8,0,0,0,199,0,199,308 +68661,HERITAGE HOLDINGS HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,2520,1307,5 AVENUE,Manhattan,10029,1016160001,1078884,MN-11,9,17402,MN33,40.797287,-73.948916,40.7968,-73.94814,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,36,147,1,31,47,45,61,0,0,0,0,184,0,184,272 +68661,HERITAGE HOLDINGS HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,804791,1295,FIFTH AVENUE,Manhattan,10029,1016160001,1085255,MN-11,9,17402,MN33,40.797152,-73.949013,40.7968,-73.94814,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,27,176,1,0,52,109,43,0,0,0,0,204,0,204,272 +68661,HERITAGE HOLDINGS HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,805033,1660,MADISON AVENUE,Manhattan,10029,1016160001,1085254,MN-11,9,17402,MN33,40.796457,-73.947439,40.7968,-73.94814,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,2,13,0,0,0,0,0,9,7,0,0,16,0,16,56 +68662,MILES & PARKER OWNER HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,19797,137,EAST 117 STREET,Manhattan,10035,1016450015,1052337,MN-11,8,182,MN34,40.799446,-73.941448,40.79972,-73.941112,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,43,0,1,0,44,0,0,0,0,0,0,44,0,44,64 +68662,MILES & PARKER OWNER HDFC.HPO.FY20,Multifamily Finance Program,10/23/2019,10/23/2019,24083,1982,LEXINGTON AVENUE,Manhattan,10035,1017700158,1054407,MN-11,9,196,MN34,40.801915,-73.939229,40.80229,-73.939676,10/23/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,228,1,1,0,2,149,73,6,0,0,0,230,0,230,341 +69348,62-41 FOREST AVENUE,Multifamily Incentives Program,10/21/2019,,655439,62-49,FOREST AVENUE,Queens,11385,4034920025,4083524,QN-05,30,595,QN20,40.712318,-73.905796,40.71223,-73.905313,,New Construction,No,Non Prevailing Wage,0,0,0,0,13,0,1,5,7,0,0,0,0,0,13,0,13,42 +48143,MMN1802 - CLOTH AMSTERDAM AVENUE,Multifamily Finance Program,10/17/2019,,3615,2488,ADAM C POWELL BOULEVARD,Manhattan,10030,1020300033,1060458,MN-10,9,232,MN03,40.821307,-73.93933,40.82143,-73.939724,,Preservation,No,Non Prevailing Wage,0,6,10,0,0,0,0,6,9,1,0,0,0,0,16,0,16,16 +48143,MMN1802 - CLOTH AMSTERDAM AVENUE,Multifamily Finance Program,10/17/2019,,4160,2794,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020340003,1060550,MN-10,9,234,MN03,40.825021,-73.940306,40.82488,-73.940057,,Preservation,No,Non Prevailing Wage,0,7,6,0,0,0,0,4,5,4,0,0,0,0,13,0,13,13 +48143,MMN1802 - CLOTH AMSTERDAM AVENUE,Multifamily Finance Program,10/17/2019,,5781,2110,AMSTERDAM AVENUE,Manhattan,10032,1021210037,1062896,MN-12,7,24301,MN36,40.837711,-73.938498,40.83782,-73.938809,,Preservation,No,Non Prevailing Wage,0,11,1,0,0,1,4,0,9,0,0,0,0,0,13,0,13,13 +48143,MMN1802 - CLOTH AMSTERDAM AVENUE,Multifamily Finance Program,10/17/2019,,5813,2185,AMSTERDAM AVENUE,Manhattan,10032,1021120014,1062675,MN-12,10,249,MN36,40.840085,-73.936743,40.84007,-73.936364,,Preservation,No,Non Prevailing Wage,0,11,5,0,0,0,5,0,10,1,0,0,0,0,16,0,16,16 +69237,CONFIDENTIAL,Homeowner Assistance Program,10/16/2019,10/16/2019,,----,----,Manhattan,,,,MN-10,9,,,,,,,10/16/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69346,2749 CRUGER AVENUE,Multifamily Incentives Program,10/16/2019,,990114,2749,CRUGER AVENUE,Bronx,10467,2045090044,2053560,BX-11,15,338,BX07,40.866225,-73.866329,40.86715,-73.866577,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,3,2,0,0,0,0,0,5,0,5,16 +69347,894/896/900 NEW YORK AVENUE,Multifamily Incentives Program,10/16/2019,,344056,894,NEW YORK AVENUE,Brooklyn,11203,3048690072,3108599,BK-17,40,818,BK95,40.651591,-73.946757,40.65154,-73.947063,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,18 +69347,894/896/900 NEW YORK AVENUE,Multifamily Incentives Program,10/16/2019,,344057,896,NEW YORK AVENUE,Brooklyn,11203,3048690073,3108600,BK-17,40,818,BK95,40.65155,-73.946753,40.65149,-73.94706,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,3 +69347,894/896/900 NEW YORK AVENUE,Multifamily Incentives Program,10/16/2019,,344061,900,NEW YORK AVENUE,Brooklyn,11203,3048690075,3108602,BK-17,40,818,BK95,40.651465,-73.946743,40.65138,-73.947049,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,3 +64745,EAST VILLAGE HOMES - PHASE I,Small Homes Program,10/15/2019,,927166,302,EAST 2 STREET,Manhattan,10009,1003720049,,MN-03,2,2202,MN28,40.72013,-73.979361,40.72045,-73.979137,,New Construction,No,Non Prevailing Wage,8,7,14,15,0,1,13,19,13,0,0,0,0,0,45,0,45,45 +69344,188 HUMBOLDT STREET,Multifamily Incentives Program,10/15/2019,,991971,188,HUMBOLDT STREET,Brooklyn,11206,3030540037,,BK-01,34,493,BK78,40.70776,-73.941551,40.70776,-73.941233,,New Construction,No,Non Prevailing Wage,0,0,0,0,17,0,4,4,9,0,0,0,0,0,17,0,17,55 +69345,731 BEDFORD AVENUE,Multifamily Incentives Program,10/15/2019,,966690,731,BEDFORD AVENUE,Brooklyn,11205,3017150030,3396823,BK-03,33,1237,BK75,40.698506,-73.956915,40.6987,-73.956648,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,7 +67890,HARLEN HDFC.HUD MF.FY 20,Multifamily Finance Program,10/11/2019,,23647,560,LENOX AVENUE,Manhattan,10037,1017360001,1083987,MN-10,9,212,MN03,40.816237,-73.939288,40.81617,-73.938858,,Preservation,No,Non Prevailing Wage,82,18,6,0,0,0,0,57,49,0,0,0,0,0,106,0,106,106 +67890,HARLEN HDFC.HUD MF.FY 20,Multifamily Finance Program,10/11/2019,,805961,50,WEST 139 STREET,Manhattan,10037,1017360060,1083986,MN-10,9,212,MN03,40.816102,-73.937658,40.81585,-73.937713,,Preservation,No,Non Prevailing Wage,84,14,7,2,0,1,6,37,48,17,0,0,0,0,108,0,108,108 +68229,2175 BERGEN STREET,Multifamily Incentives Program,10/11/2019,,989862,2175,BERGEN STREET,Brooklyn,11233,,,BK-16,37,36502,BK79,40.673819,-73.908147,,,,New Construction,No,Non Prevailing Wage,0,4,7,0,0,0,0,5,6,0,0,0,0,0,11,0,11,41 +69342,1969 HUGHES AVENUE,Multifamily Incentives Program,10/07/2019,,987396,1969,HUGHES AVENUE,Bronx,10457,2030680095,2127255,BX-06,17,373,BX17,40.846276,-73.892067,40.84643,-73.892248,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,8,0,1,0,0,0,0,9,0,9,27 +69343,340/342 RUTLAND ROAD,Multifamily Incentives Program,10/07/2019,,986304,342,RUTLAND ROAD,Brooklyn,11225,3048090019,,BK-09,40,804,BK60,40.659473,-73.949302,40.65925,-73.949357,,New Construction,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,1,0,0,0,0,0,1,0,1,1 +69343,340/342 RUTLAND ROAD,Multifamily Incentives Program,10/07/2019,,986305,340,RUTLAND ROAD,Brooklyn,11225,3048090018,,BK-09,40,804,BK60,40.659467,-73.949353,40.65925,-73.949429,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,3,0,1,0,0,0,0,4,0,4,11 +69129,CONFIDENTIAL,Homeowner Assistance Program,10/04/2019,11/29/2019,,----,----,Brooklyn,,,,BK-05,37,,,,,,,11/29/2019,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +68382,2 MT. HOPE PLACE,Multifamily Incentives Program,10/03/2019,,990076,2,MT HOPE PLACE,Bronx,10453,2028510002,2099635,BX-05,14,23301,BX41,40.849361,-73.910872,40.84898,-73.910996,,New Construction,No,Non Prevailing Wage,0,17,17,6,0,0,8,21,9,2,0,0,0,0,40,0,40,164 +69341,743 LAFAYETTE AVENUE,Multifamily Incentives Program,10/03/2019,12/11/2019,989764,743,LAFAYETTE AVENUE,Brooklyn,11221,3017860051,,BK-03,36,261,BK75,40.690782,-73.943542,40.69101,-73.943448,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,2,1,0,0,0,0,3,0,3,8 +66099,21-10 31ST AVE,Multifamily Incentives Program,10/02/2019,,991163,21-1-,31 AVENUE,Queens,,,,QN-401,22,,,,,,,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,14 +69096,141 METROPOLITAN AVENUE,Multifamily Incentives Program,09/30/2019,,979680,141,METROPOLITAN AVENUE,Brooklyn,11249,3023580024,3062404,BK-01,34,555,BK73,40.716171,-73.962321,40.7163,-73.962105,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +69097,3470 FORT INDEPENDENCE STREET,Multifamily Incentives Program,09/30/2019,,989948,3469,CANNON PLACE,Bronx,10463,2032580120,,BX-08,11,279,BX28,40.881801,-73.897897,40.88174,-73.898385,,New Construction,No,Non Prevailing Wage,0,0,12,0,24,0,8,9,16,3,0,0,0,0,36,0,36,120 +69109,CONFIDENTIAL,Homeowner Assistance Program,09/30/2019,,,----,----,Queens,,,,QN-12,27,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69124,CONFIDENTIAL,Homeowner Assistance Program,09/30/2019,09/30/2019,,----,----,Queens,,,,QN-13,31,,,,,,,09/30/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69126,CONFIDENTIAL,Homeowner Assistance Program,09/30/2019,09/30/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,09/30/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69123,CONFIDENTIAL,Homeowner Assistance Program,09/26/2019,09/26/2019,,----,----,Brooklyn,,,,BK-17,45,,,,,,,09/26/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +69177,BAY TOWERS,Multifamily Finance Program,09/26/2019,,634041,19-Mar,BEACH 98 STREET,Queens,11694,4161550021,4445407,QN-14,32,94201,QN10,40.585783,-73.820357,40.58571,-73.821397,,Preservation,No,Non Prevailing Wage,0,0,94,0,278,0,27,102,187,56,0,0,0,0,372,0,372,374 +69120,CONFIDENTIAL,Homeowner Assistance Program,09/25/2019,09/25/2019,,----,----,Queens,,,,QN-08,24,,,,,,,09/25/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66137,HP W53 HDFC.HUDMF.FY 19,Multifamily Finance Program,09/23/2019,09/23/2019,34007,328,WEST 53 STREET,Manhattan,10019,1010430046,1078897,MN-04,3,133,MN15,40.764583,-73.985733,40.76453,-73.986199,09/23/2019,Preservation,No,Non Prevailing Wage,27,10,2,1,0,1,0,8,21,12,0,0,0,0,41,0,41,41 +69113,CONFIDENTIAL,Homeowner Assistance Program,09/23/2019,09/23/2019,,----,----,Bronx,,,,BX-10,13,,,,,,,09/23/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +69094,1507 NEW YORK AVENUE,Multifamily Incentives Program,09/19/2019,,989653,1507,NEW YORK AVENUE,Brooklyn,11210,3050080035,,BK-17,45,784,BK91,40.635819,-73.945044,40.63594,-73.944745,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69095,1509 NEW YORK AVENUE,Multifamily Incentives Program,09/19/2019,,984059,1509,NEW YORK AVENUE,Brooklyn,11210,3050080034,,BK-17,45,784,BK91,40.635783,-73.94504,40.63589,-73.944737,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69014,CONFIDENTIAL,Homeowner Assistance Program,09/17/2019,,,----,----,Brooklyn,,,,BK-18,46,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2,2,2 +68958,CONFIDENTIAL,Homeowner Assistance Program,09/11/2019,,,----,----,Queens,,,,QN-12,28,,,,,,,,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69092,219 SOUTH 3RD STREET,Multifamily Incentives Program,09/09/2019,,372111,219,SOUTH 3 STREET,Brooklyn,11211,3024200039,,BK-01,34,523,BK73,40.711141,-73.958732,40.71134,-73.958576,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,9 +69093,3613 BARNES AVENUE APARTMENTS,Multifamily Incentives Program,09/09/2019,,981245,3613,BARNES AVENUE,Bronx,10467,2046610068,,BX-12,12,380,BX44,40.878719,-73.861643,40.87884,-73.861859,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,62835,570,EAST 138 STREET,Bronx,10454,2025500007,2003604,BX-01,8,2701,BX39,40.806661,-73.917143,40.80652,-73.917479,,Preservation,No,Non Prevailing Wage,0,6,6,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,62841,590,EAST 138 STREET,Bronx,10454,2025500017,2003608,BX-01,8,2701,BX39,40.806419,-73.916547,40.80619,-73.916713,,Preservation,No,Non Prevailing Wage,0,6,9,0,0,1,2,0,14,0,0,0,0,0,16,0,16,16 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,64094,839,EAST 156 STREET,Bronx,10455,2026760085,2005002,BX-01,17,79,BX34,40.817461,-73.902974,40.81773,-73.903187,,Preservation,No,Non Prevailing Wage,2,3,3,0,0,1,0,0,9,0,0,0,0,0,9,0,9,9 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,65186,590,EAST 169 STREET,Bronx,10456,2026120035,2004252,BX-03,16,149,BX35,40.831928,-73.902581,40.83176,-73.90269,,Preservation,No,Non Prevailing Wage,0,2,5,0,0,0,0,4,3,0,0,0,0,0,7,0,7,7 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,88157,1061,INTERVALE AVENUE,Bronx,10459,2027000053,2005409,BX-02,17,131,BX33,40.824941,-73.896857,40.82505,-73.897175,,Preservation,No,Non Prevailing Wage,9,14,5,1,0,1,2,9,19,0,0,0,0,0,30,0,30,30 +67438,ST. ANN'S APARTMENTS LLC.YR15.FY20,Multifamily Finance Program,09/06/2019,,91417,946,LEGGETT AVENUE,Bronx,10455,2026850050,2005109,BX-02,17,83,BX33,40.815636,-73.900401,40.81554,-73.900715,,Preservation,No,Non Prevailing Wage,0,5,11,0,0,0,0,5,11,0,0,0,0,0,16,0,16,16 +69089,3 WEST 128TH STREET,Multifamily Incentives Program,09/06/2019,10/18/2019,39938,3,WEST 128 STREET,Manhattan,10027,1017260132,1089812,MN-10,9,208,MN03,40.808558,-73.941368,40.80871,-73.941169,10/18/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,5,0,1,0,0,0,0,6,0,6,20 +69091,1424 VYSE AVENUE APARTMENTS,Multifamily Incentives Program,09/06/2019,,118447,1424,VYSE AVENUE,Bronx,10459,2029940011,2129277,BX-03,17,123,BX75,40.830893,-73.889451,40.83078,-73.889227,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,2,0,0,0,0,0,0,3,0,3,10 +69122,CONFIDENTIAL,Homeowner Assistance Program,09/06/2019,09/06/2019,,----,----,Queens,,,,QN-14,31,,,,,,,09/06/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +69088,340 NEPTUNE AVENUE APARTMENTS,Multifamily Incentives Program,09/03/2019,,342114,340,NEPTUNE AVENUE,Brooklyn,11235,3086630246,3244336,BK-13,48,364,BK19,40.580805,-73.96535,40.58054,-73.96522,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,20 +67504,HP W 48 HDFC.HUDMF.FY19,Multifamily Finance Program,08/30/2019,,33639,414,WEST 48 STREET,Manhattan,10036,1010570141,1079207,MN-04,3,127,MN15,40.762527,-73.990578,40.76251,-73.991105,,Preservation,No,Non Prevailing Wage,40,10,2,0,0,2,0,18,21,14,1,0,0,0,54,0,54,54 +67575,LANGSAM 11 - 2816 JEROME AVENUE.HPO.FY19,Multifamily Finance Program,08/30/2019,08/30/2019,88977,2816,JEROME AVENUE,Bronx,10468,2033180030,2017503,BX-07,14,40303,BX28,40.870539,-73.894306,40.87043,-73.894096,08/30/2019,Preservation,Yes,Non Prevailing Wage,0,2,40,0,0,1,6,30,7,0,0,0,0,0,43,0,43,43 +68920,CONFIDENTIAL,Homeowner Assistance Program,08/30/2019,08/30/2019,,----,----,Brooklyn,,,,BK-15,46,,,,,,,08/30/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +69086,173 MORNINGSIDE AVENUE APARTMENTS,Multifamily Incentives Program,08/30/2019,,875065,173,MORNINGSIDE AVENUE,Manhattan,10027,1019530062,1090564,MN-09,9,21303,MN06,40.812494,-73.953243,40.81242,-73.952997,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,8 +69087,54 THROOP AVENUE APARTMENTS,Multifamily Incentives Program,08/30/2019,,980783,54,THROOP AVENUE,Brooklyn,11206,3022500028,3425732,BK-01,33,507,BK75,40.703201,-73.947387,40.70303,-73.947592,,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,1,1,3,0,0,0,0,0,5,0,5,24 +69084,1610 NEW YORK AVENUE,Multifamily Incentives Program,08/29/2019,,343580,1610,NEW YORK AVENUE,Brooklyn,11210,3075600055,3425346,BK-17,45,786,BK42,40.633326,-73.944801,40.63339,-73.945125,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69085,1612 NEW YORK AVENUE,Multifamily Incentives Program,08/29/2019,,990010,1612,NEW YORK AVENUE,Brooklyn,11210,3075600056,3424334,BK-17,45,786,BK42,40.633291,-73.944797,40.63334,-73.945118,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68934,CONFIDENTIAL,Homeowner Assistance Program,08/28/2019,,,----,----,Brooklyn,,,,BK-03,36,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,4,4 +69082,111 TROUTMAN STREET APARTMENTS,Multifamily Incentives Program,08/28/2019,09/25/2019,988959,111,TROUTMAN STREET,Brooklyn,11206,3031720047,3328072,BK-04,34,425,BK78,40.699465,-73.929855,40.69959,-73.930068,09/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,8 +69083,"ORCHARD, THE",Multifamily Incentives Program,08/28/2019,,989790,118,ORCHARD STREET,Manhattan,10002,1004100034,,MN-03,1,18,MN27,40.719267,-73.989632,40.71926,-73.989495,,New Construction,No,Non Prevailing Wage,0,0,3,0,6,0,0,8,0,1,0,0,0,0,9,0,9,29 +69081,52-22 ROOSEVELT AVENUE APARTMENTS,Multifamily Incentives Program,08/27/2019,,981904,52-22,ROOSEVELT AVENUE,Queens,11377,4013210061,4617390,QN-02,26,25302,QN31,40.744253,-73.912175,40.74414,-73.911739,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +68932,CONFIDENTIAL,Homeowner Assistance Program,08/23/2019,,,----,----,Brooklyn,,,,BK-05,42,,,,,,,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +69079,1248 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,08/23/2019,,990702,1248,NEW YORK AVENUE,Brooklyn,11203,3049490024,,BK-17,45,830,BK91,40.642459,-73.945777,40.64233,-73.946076,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +69080,1250 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,08/23/2019,,343475,1250,NEW YORK AVENUE,Brooklyn,11203,3049490025,,BK-17,45,830,BK91,40.64242,-73.945773,40.64227,-73.946069,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +67572,LANGSAM 9 - 1630 MACOMBS ROAD.HPO.FY20,Multifamily Finance Program,08/19/2019,08/19/2019,93710,1630,MACOMBS ROAD,Bronx,10453,2028660004,2008447,BX-05,14,21502,BX36,40.846851,-73.916583,40.84691,-73.916062,08/19/2019,Preservation,Yes,Non Prevailing Wage,0,18,33,0,0,1,12,15,23,2,0,0,0,0,52,0,52,52 +68918,CONFIDENTIAL,Homeowner Assistance Program,08/19/2019,08/19/2019,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/19/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69077,133-135 MESEROLE AVENUE APARTMENTS,Multifamily Incentives Program,08/19/2019,,336206,133,MESEROLE AVENUE,Brooklyn,11222,3025980031,3065379,BK-01,33,573,BK76,40.727462,-73.951618,40.72763,-73.951704,,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,0,1,9 +69077,133-135 MESEROLE AVENUE APARTMENTS,Multifamily Incentives Program,08/19/2019,,954168,135,MESEROLE AVENUE,Brooklyn,11222,3025980030,3065378,BK-01,33,573,BK76,40.727489,-73.951531,40.72765,-73.951621,,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,1 +69078,418 EAST 153RD STREET,Multifamily Incentives Program,08/19/2019,,63930,418,EAST 153 STREET,Bronx,10455,2023740080,2129278,BX-01,17,67,BX34,40.818742,-73.915997,40.81848,-73.915827,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +69075,223 MANHATTAN AVENUE,Multifamily Incentives Program,08/16/2019,12/17/2019,983861,223,MANHATTAN AVENUE,Brooklyn,11206,3027870025,3069573,BK-01,34,503,BK90,40.711111,-73.945544,40.7111,-73.945779,12/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +69076,260 KNICKERBOCKER AVENUE,Multifamily Incentives Program,08/16/2019,,321213,260,KNICKERBOCKER AVENUE,Brooklyn,11237,3031970034,3072742,BK-04,34,429,BK77,40.7025,-73.924853,40.70222,-73.925088,,New Construction,No,Non Prevailing Wage,0,0,0,0,16,0,0,7,9,0,0,0,0,0,16,0,16,53 +64829,RB.63-85 E 233RD ST.WOODLAWN SENIOR HOUSES,Multifamily Finance Program,08/15/2019,,989273,69,EAST 233 STREET,Bronx,10470,2033650071,2018798,BX-12,11,44901,BX62,40.895956,-73.873778,40.89626,-73.873532,,New Construction,No,Prevailing Wage,79,0,0,0,0,1,59,20,1,0,0,0,0,0,80,0,80,80 +69074,969 57TH STREET,Multifamily Incentives Program,08/15/2019,,159823,969,57 STREET,Brooklyn,11219,3056870053,3139941,BK-12,38,116,BK88,40.63503,-74.004183,40.635,-74.003697,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,7 +69073,WEX18 APARTMENTS,Multifamily Incentives Program,08/14/2019,12/20/2019,972679,177-18,WEXFORD TERRACE,Queens,11432,4098350030,,QN-08,24,466,QN06,40.713099,-73.785994,40.71278,-73.786262,12/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,2,3,0,0,0,0,0,6,0,6,17 +69071,2807 SNYDER AVENUE,Multifamily Incentives Program,08/13/2019,09/09/2019,982539,2807,SNYDER AVENUE,Brooklyn,11226,3051080062,3426126,BK-17,40,824,BK95,40.648854,-73.951112,40.6491,-73.950943,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,1,1,0,0,0,0,3,0,3,8 +69072,2809 SNYDER AVENUE,Multifamily Incentives Program,08/13/2019,09/09/2019,985437,2809,SNYDER AVENUE,Brooklyn,11226,3051080061,3411861,BK-17,40,824,BK95,40.648854,-73.951098,40.6491,-73.950853,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +68906,CONFIDENTIAL,Homeowner Assistance Program,08/12/2019,10/18/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,10/18/2019,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +68917,CONFIDENTIAL,Homeowner Assistance Program,08/09/2019,08/09/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,08/09/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69070,236 STAGG STREET APARTMENTS,Multifamily Incentives Program,08/09/2019,,979980,236,STAGG STREET,Brooklyn,11206,3030370010,3070879,BK-01,34,485,BK78,40.709873,-73.939536,40.70963,-73.939717,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,18 +69069,366 STOCKTON STREET APARTMENTS,Multifamily Incentives Program,08/07/2019,,956540,366,STOCKTON STREET,Brooklyn,11206,3015840009,,BK-03,36,287,BK35,40.697496,-73.937304,40.69728,-73.9372,,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,2,1,0,0,0,0,0,3,0,3,15 +68914,CONFIDENTIAL,Homeowner Assistance Program,08/02/2019,12/02/2019,,----,----,Queens,,,,QN-13,31,,,,,,,12/02/2019,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +69068,79-81 STANHOPE STREET APARTMENTS,Multifamily Incentives Program,08/02/2019,,976702,81,STANHOPE STREET,Brooklyn,11221,3032540057,3424457,BK-04,34,421,BK78,40.69653,-73.924543,40.69675,-73.924622,,New Construction,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,1,1 +69068,79-81 STANHOPE STREET APARTMENTS,Multifamily Incentives Program,08/02/2019,,978510,79,STANHOPE STREET,Brooklyn,11221,3032540058,,BK-04,34,421,BK78,40.696492,-73.924582,40.69673,-73.924719,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,1,3,0,0,0,0,0,4,0,4,15 +69067,RESIDENCES AT THE GEMINI WEST,Multifamily Incentives Program,08/01/2019,,992046,114-16,ROCKAWAY BEACH BOULEVARD,Queens,11694,0,4619893,QN-14,32,938,QN10,40.580261,-73.83565,40.58046,-73.835797,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,6,3,0,0,0,0,0,9,0,9,27 +68837,CONFIDENTIAL,Homeowner Assistance Program,07/31/2019,10/25/2019,,----,----,Brooklyn,,,,BK-05,42,,,,,,,10/25/2019,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +68850,CONFIDENTIAL,Homeowner Assistance Program,07/31/2019,07/31/2019,,----,----,Brooklyn,,,,BK-14,40,,,,,,,07/31/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69065,301 EAST 117TH STREET,Multifamily Incentives Program,07/31/2019,,980593,2282,2 AVENUE,Manhattan,10035,1016890001,1052983,MN-11,8,188,MN34,40.797819,-73.937166,40.79765,-73.936928,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,2,2,0,0,0,0,0,4,0,4,12 +69066,RESIDENCES AT THE GEMINI EAST,Multifamily Incentives Program,07/31/2019,,992017,114-30,ROCKAWAY BEACH BOULEVARD,Queens,11694,0,4607409,QN-14,32,938,QN10,40.58024,-73.835733,40.58032,-73.836294,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,6,3,0,0,0,0,0,9,0,9,27 +68172,AUSTIN 147,Multifamily Incentives Program,07/30/2019,,988798,880,EAST 147 STREET,Bronx,10455,2026000103,2004081,BX-01,8,31,BX39,40.810326,-73.904325,40.81017,-73.904509,,New Construction,No,Non Prevailing Wage,0,55,24,0,0,0,31,20,28,0,0,0,0,0,79,0,79,80 +69064,1032 DEKALB AVENUE,Multifamily Incentives Program,07/29/2019,11/22/2019,986936,1032,DEKALB AVENUE,Brooklyn,11221,3016030010,3043264,BK-03,36,289,BK35,40.693398,-73.933691,40.69319,-73.933551,11/22/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,7 +69062,127 TROUTMAN STREET APARTMENTS,Multifamily Incentives Program,07/26/2019,,381818,127,TROUTMAN STREET,Brooklyn,11206,3031720041,,BK-04,34,425,BK78,40.69975,-73.929577,40.69992,-73.929746,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +69063,129 TROUTMAN STREET APARTMENTS,Multifamily Incentives Program,07/26/2019,,978104,129,TROUTMAN STREET,Brooklyn,11206,3031720040,3328068,BK-04,34,425,BK78,40.699786,-73.929545,40.69998,-73.929689,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +67522,HSI. 213 EAST 203RD STREET,Multifamily Finance Program,07/25/2019,,934463,211,EAST 203 STREET,Bronx,10458,2033090039,,BX-07,11,413,BX05,40.873849,-73.886085,40.87407,-73.886034,,Preservation,No,Non Prevailing Wage,66,21,20,0,0,1,68,21,19,0,0,0,0,0,108,0,108,108 +69061,170-19 89TH AVENUE,Multifamily Incentives Program,07/25/2019,,497416,170-19,89 AVENUE,Queens,11432,4098240063,4210175,QN-12,27,462,QN61,40.709669,-73.790864,40.71,-73.790524,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +68849,CONFIDENTIAL,Homeowner Assistance Program,07/24/2019,07/24/2019,,----,----,Queens,,,,QN-14,32,,,,,,,07/24/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +69060,20-52 49TH STREET APARTMENTS,Multifamily Incentives Program,07/23/2019,,992307,20-52,49 STREET,Queens,11105,4007620051,,QN-01,22,135,QN72,40.771493,-73.89707,40.77143,-73.897535,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,1,0,0,0,0,0,2,0,2,6 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,19955,125,EAST 118 STREET,Manhattan,10035,1017670011,1054346,MN-11,9,182,MN34,40.800206,-73.941296,40.80035,-73.941086,07/22/2019,Preservation,Yes,Non Prevailing Wage,15,2,3,3,0,1,0,2,16,6,0,0,0,0,24,0,24,24 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,19959,149,EAST 118 STREET,Manhattan,10035,1017670022,1054349,MN-11,8,182,MN34,40.799819,-73.940372,40.79995,-73.940137,07/22/2019,Preservation,Yes,Non Prevailing Wage,29,9,3,0,0,1,0,6,26,5,5,0,0,0,42,0,42,42 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,20122,121,EAST 119 STREET,Manhattan,10035,1017680009,1054366,MN-11,9,196,MN34,40.800889,-73.94097,40.80105,-73.940801,07/22/2019,Preservation,Yes,Non Prevailing Wage,7,0,1,1,0,0,0,2,1,6,0,0,0,0,9,0,9,9 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,20123,125,EAST 119 STREET,Manhattan,10035,1017680011,1054367,MN-11,9,196,MN34,40.800848,-73.940873,40.80101,-73.940707,07/22/2019,Preservation,Yes,Non Prevailing Wage,2,1,1,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,20127,166,EAST 119 STREET,Manhattan,10035,1017670047,1054357,MN-11,8,182,MN34,40.800282,-73.939559,40.80013,-73.939804,07/22/2019,Preservation,Yes,Non Prevailing Wage,14,5,3,2,0,0,0,0,24,0,0,0,0,0,24,0,24,24 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,20136,212,EAST 119 STREET,Manhattan,10035,1017830041,1054540,MN-11,8,188,MN34,40.799658,-73.93806,40.79934,-73.937916,07/22/2019,Preservation,Yes,Non Prevailing Wage,14,9,3,2,0,1,0,5,12,12,0,0,0,0,29,0,29,29 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,20374,135,EAST 122 STREET,Manhattan,10035,1017710014,1054412,MN-11,9,196,MN34,40.802612,-73.939203,40.80274,-73.938975,07/22/2019,Preservation,Yes,Non Prevailing Wage,15,4,0,0,1,1,1,1,4,11,4,0,0,0,21,0,21,21 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,24091,2010,LEXINGTON AVENUE,Manhattan,10035,1017710056,1076464,MN-11,9,196,MN34,40.802667,-73.938679,40.80297,-73.938729,07/22/2019,Preservation,Yes,Non Prevailing Wage,23,5,0,3,0,0,0,14,15,1,1,0,0,0,31,0,31,31 +67891,EAST HARLEM LEXINGTON HDFC.HUDMF.FY19,Multifamily Finance Program,07/22/2019,07/22/2019,804679,158,EAST 119 STREET,Manhattan,10035,1017670052,1085299,MN-11,8,182,MN34,40.800356,-73.939739,40.80024,-73.940061,07/22/2019,Preservation,Yes,Non Prevailing Wage,31,7,4,1,1,1,0,14,19,0,12,0,0,0,45,0,45,45 +68824,CONFIDENTIAL,Homeowner Assistance Program,07/19/2019,07/19/2019,,----,----,Staten Island,,,,SI-03,51,,,,,,,07/19/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68844,CONFIDENTIAL,Homeowner Assistance Program,07/19/2019,07/19/2019,,----,----,Queens,,,,QN-04,25,,,,,,,07/19/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +69058,14 HAVENS PLACE APARTMENTS,Multifamily Incentives Program,07/19/2019,,309188,14,HAVENS PLACE,Brooklyn,11233,3015740021,,BK-16,37,367,BK79,40.676777,-73.904307,40.67679,-73.90456,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +69059,183 COVERT STREET APARTMENTS,Multifamily Incentives Program,07/19/2019,,227048,181,COVERT STREET,Brooklyn,11207,3034170045,3079047,BK-04,37,413,BK78,40.689758,-73.908929,40.68988,-73.909149,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69056,229 WEST 136 STREET,Multifamily Incentives Program,07/17/2019,,40881,229,WEST 136 STREET,Manhattan,10030,1019420118,1058989,MN-10,9,228,MN03,40.816423,-73.944251,40.8167,-73.944352,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +69057,924 DEKALB AVENUE,Multifamily Incentives Program,07/17/2019,11/22/2019,983895,924,DEKALB AVENUE,Brooklyn,11221,3016010015,3425167,BK-03,36,281,BK35,40.692817,-73.938762,40.69259,-73.93869,11/22/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +69054,860 EAST 35TH STREET APARTMENTS,Multifamily Incentives Program,07/16/2019,,992043,860,EAST 35 STREET,Brooklyn,11210,3075620051,3206048,BK-17,45,784,BK91,40.633622,-73.942916,40.63373,-73.943204,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +69055,862 EAST 35TH STREET APARTMENTS,Multifamily Incentives Program,07/16/2019,,992161,862,EAST 35TH STREET,Brooklyn,11210,3075620052,,BK-17,45,784,BK91,40.633586,-73.942913,40.63368,-73.943201,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +69053,850 FLATBUSH AVENUE,Multifamily Incentives Program,07/15/2019,07/17/2019,292955,850,FLATBUSH AVENUE,Brooklyn,11226,3050820032,3116577,BK-14,40,50801,BK42,40.651629,-73.959035,40.65156,-73.959435,07/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,2,2,3,0,0,0,0,0,7,0,7,21 +69051,142 MANHATTAN AVENUE APARTMENTS,Multifamily Incentives Program,07/12/2019,10/07/2019,966927,142,MANHATTAN AVENUE,Brooklyn,11206,3030520005,3413698,BK-01,34,505,BK90,40.707543,-73.944945,40.70761,-73.944674,10/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,8 +69052,150 MESEROLE STREET,Multifamily Incentives Program,07/12/2019,,336314,150,MESEROLE STREET,Brooklyn,11206,3030520019,,BK-01,34,505,BK90,40.708025,-73.943722,40.70786,-73.943563,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,1,4,3,0,0,0,0,0,8,0,8,25 +69050,152 WEST 140TH STREET,Multifamily Incentives Program,07/11/2019,,3582,2395,ADAM C POWELL BOULEVARD,Manhattan,10030,1020080061,1075486,MN-10,9,230,MN03,40.818352,-73.941464,40.81811,-73.941143,,New Construction,No,Non Prevailing Wage,0,0,0,0,18,0,0,16,2,0,0,0,0,0,18,0,18,58 +68843,CONFIDENTIAL,Homeowner Assistance Program,07/10/2019,07/10/2019,,----,----,Bronx,,,,BX-08,11,,,,,,,07/10/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +69049,381 EAST 166TH STREET APARTMENTS,Multifamily Incentives Program,07/08/2019,07/17/2019,987017,381,EAST 166 STREET,Bronx,10456,2024260001,,BX-04,16,143,BX14,40.829383,-73.912121,40.82945,-73.911965,07/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,1,2,0,0,0,0,0,4,0,4,12 +69047,22-22 STEINWAY STREET APARTMENTS,Multifamily Incentives Program,07/03/2019,,697198,22-22,STEINWAY STREET,Queens,11105,4008050041,,QN-01,22,119,QN72,40.772316,-73.90673,40.77248,-73.906946,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,4,0,0,0,0,0,0,4,0,4,13 +69048,846 QUINCY STREET APARTMENTS,Multifamily Incentives Program,07/03/2019,07/26/2019,989286,846,QUINCY STREET,Brooklyn,11221,3016330025,,BK-03,41,387,BK35,40.689803,-73.925816,40.6896,-73.925585,07/26/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +61587,601 WEST 148TH STREET PROJECT,Multifamily Finance Program,07/02/2019,,8083,3601,BROADWAY,Manhattan,10031,1020950029,1062436,MN-09,7,233,MN04,40.828448,-73.948993,40.82861,-73.949351,,Preservation,No,Non Prevailing Wage,0,0,0,20,0,0,0,4,11,4,1,0,0,0,0,20,20,20 +69045,171 LINDEN BOULEVARD APARTMENTS,Multifamily Incentives Program,07/02/2019,,327086,171,LINDEN BOULEVARD,Brooklyn,11226,3050850094,3116695,BK-17,40,820,BK60,40.65253,-73.952036,40.65282,-73.95214,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,1,6,3,0,0,0,0,0,10,0,10,31 +69046,ROGERS TOWER APARTMENTS,Multifamily Incentives Program,07/02/2019,,986581,986,ROGERS AVENUE,Brooklyn,11226,3051370011,3117964,BK-17,40,792,BK95,40.646063,-73.951986,40.64604,-73.952325,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,1,5,2,0,0,0,0,0,8,0,8,25 +61875,1199 HOUSING CORP.PLP.FY19,Multifamily Finance Program,06/28/2019,,413,2070,1 AVENUE,Manhattan,10029,1017010001,1083953,MN-11,8,162,MN33,40.790368,-73.93951,40.79088,-73.937682,,Preservation,No,Non Prevailing Wage,74,352,0,0,0,0,39,155,150,64,18,0,0,0,0,426,426,426 +61875,1199 HOUSING CORP.PLP.FY19,Multifamily Finance Program,06/28/2019,,804652,420,EAST 111 STREET,Manhattan,10029,1017010001,1083956,MN-11,8,162,MN33,40.792277,-73.936532,40.79088,-73.937682,,Preservation,No,Non Prevailing Wage,66,310,0,0,0,0,39,155,130,38,14,0,0,0,0,376,376,376 +61875,1199 HOUSING CORP.PLP.FY19,Multifamily Finance Program,06/28/2019,,804825,2090,1 AVENUE,Manhattan,10029,1017010001,1083954,MN-11,8,162,MN33,40.790999,-73.939047,40.79088,-73.937682,,Preservation,No,Non Prevailing Wage,68,327,0,0,0,1,39,155,135,48,19,0,0,0,0,396,396,396 +61875,1199 HOUSING CORP.PLP.FY19,Multifamily Finance Program,06/28/2019,,804826,2116,1 AVENUE,Manhattan,10029,1017010001,1083955,MN-11,8,162,MN33,40.791649,-73.93857,40.79088,-73.937682,,Preservation,No,Non Prevailing Wage,69,326,0,0,0,1,38,156,135,48,19,0,0,0,0,396,396,396 +62299,DUNN. 82-41 PARSONS BLVD. T BUILDING,Multifamily Finance Program,06/28/2019,,985940,82-41,PARSONS BOULEVARD,Queens,11432,,,QN-08,24,1267,QN38,40.717176,-73.808203,,,,New Construction,No,Non Prevailing Wage,75,0,124,0,0,1,90,49,54,7,0,0,0,0,200,0,200,200 +65349,BPR HDFC.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,85429,1010,HOE AVENUE,Bronx,10459,2027490005,2092026,BX-02,17,119,BX27,40.823642,-73.890446,40.82362,-73.890178,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,3,12,0,0,0,0,5,10,0,0,0,0,0,15,0,15,15 +65349,BPR HDFC.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,806751,1014,HOE AVENUE,Bronx,10459,2027490005,2092025,BX-02,17,119,BX27,40.823722,-73.890449,40.82362,-73.890178,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,10,5,0,0,1,0,5,11,0,0,0,0,0,16,0,16,16 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,3641,2550,ADAM C POWELL BOULEVARD,Manhattan,10039,1020330034,1060537,MN-10,9,234,MN03,40.823298,-73.937879,40.8235,-73.938222,,Preservation,No,Non Prevailing Wage,0,13,2,0,0,0,1,4,5,5,0,0,0,0,15,0,15,15 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,3642,2554,ADAM C POWELL BOULEVARD,Manhattan,10039,1020330036,1060538,MN-10,9,234,MN03,40.823386,-73.937814,40.8236,-73.93815,,Preservation,No,Non Prevailing Wage,4,6,3,0,0,0,0,0,4,9,0,0,0,0,13,0,13,13 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,3644,2566,ADAM C POWELL BOULEVARD,Manhattan,10039,1020340032,1060564,MN-10,9,234,MN03,40.823809,-73.93751,40.82398,-73.937875,,Preservation,No,Non Prevailing Wage,3,11,2,0,0,0,2,6,4,4,0,0,0,0,16,0,16,16 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,3645,2568,ADAM C POWELL BOULEVARD,Manhattan,10039,1020340033,1060565,MN-10,9,234,MN03,40.823855,-73.937474,40.82406,-73.937817,,Preservation,No,Non Prevailing Wage,1,8,1,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,3648,2574,ADAM C POWELL BOULEVARD,Manhattan,10039,1020340036,1060568,MN-10,9,234,MN03,40.824001,-73.937369,40.82424,-73.937683,,Preservation,No,Non Prevailing Wage,6,2,1,0,0,0,1,0,4,4,0,0,0,0,9,0,9,9 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,4077,2496,FREDERICK DOUGLASS BOULEVARD,Manhattan,10030,1019390004,1058807,MN-10,9,226,MN03,40.81547,-73.947283,40.81539,-73.946958,,Preservation,No,Non Prevailing Wage,3,10,3,0,0,0,0,8,8,0,0,0,0,0,16,0,16,16 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,40621,106,WEST 134 STREET,Manhattan,10030,1019180040,1058230,MN-10,9,226,MN03,40.813645,-73.941866,40.81357,-73.942274,,Preservation,No,Non Prevailing Wage,0,14,5,0,0,1,0,1,14,5,0,0,0,0,20,0,20,20 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,40623,112,WEST 134 STREET,Manhattan,10030,1019180043,1058232,MN-10,9,226,MN03,40.813724,-73.94205,40.81366,-73.942487,,Preservation,No,Non Prevailing Wage,1,7,2,0,0,0,0,6,0,4,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,40624,114,WEST 134 STREET,Manhattan,10030,1019180044,1058233,MN-10,9,226,MN03,40.813749,-73.942115,40.81371,-73.942596,,Preservation,No,Non Prevailing Wage,0,9,1,0,0,0,0,2,8,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,41285,132,WEST 139 STREET,Manhattan,10030,1020070054,1060045,MN-10,9,230,MN03,40.817396,-73.940779,40.81723,-73.940978,,Preservation,No,Non Prevailing Wage,1,9,0,0,0,0,0,6,4,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,41286,134,WEST 139 STREET,Manhattan,10030,1020070055,1060046,MN-10,9,230,MN03,40.817424,-73.940847,40.81726,-73.941061,,Preservation,No,Non Prevailing Wage,1,7,2,0,0,0,0,6,4,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,41290,140,WEST 139 STREET,Manhattan,10030,1020070058,1060049,MN-10,9,230,MN03,40.817586,-73.941234,40.81737,-73.94131,,Preservation,No,Non Prevailing Wage,5,4,1,0,0,0,0,6,4,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,42315,202,WEST 149 STREET,Manhattan,10039,1020340038,1060569,MN-10,9,234,MN03,40.824407,-73.93777,40.82424,-73.937947,,Preservation,No,Non Prevailing Wage,0,9,1,0,0,0,0,1,9,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,42316,204,WEST 149 STREET,Manhattan,10039,1020340039,1060570,MN-10,9,234,MN03,40.824424,-73.93781,40.82427,-73.938027,,Preservation,No,Non Prevailing Wage,0,8,2,0,0,0,1,1,8,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,42317,206,WEST 149 STREET,Manhattan,10039,1020340040,1060571,MN-10,9,234,MN03,40.82444,-73.937849,40.8243,-73.93811,,Preservation,No,Non Prevailing Wage,0,9,0,0,0,1,1,1,8,0,0,0,0,0,10,0,10,10 +65378,JENKINS PORTFOLIO COMPANIES LLC.YR15.FY19,Multifamily Finance Program,06/28/2019,,42319,216,WEST 149 STREET,Manhattan,10039,1020340045,1060573,MN-10,9,234,MN03,40.824523,-73.938044,40.82448,-73.938529,,Preservation,No,Non Prevailing Wage,2,16,0,0,0,0,2,10,0,6,0,0,0,0,18,0,18,18 +66563,7TH AVENUE HDFC.FY19.PLP,Multifamily Finance Program,06/28/2019,06/28/2019,3631,2524,ADAM C POWELL BOULEVARD,Manhattan,10039,1020320030,1060507,MN-10,9,234,MN03,40.822506,-73.938455,40.82263,-73.938841,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,2,9,7,0,0,0,0,18,0,0,0,0,0,18,0,18,18 +67129,TSINY. 161-01 89TH AVENUE. MONICA HOUSE,Multifamily Finance Program,06/28/2019,,986549,161-09,89 AVENUE,Queens,11432,,,QN-12,24,44602,QN61,40.706451,-73.799804,,,,New Construction,No,Non Prevailing Wage,50,19,0,0,0,1,69,1,0,0,0,0,0,0,70,0,70,70 +67287,WIN. 14-35 MOTT AVENUE. GREENPORT II - SOUTH,Multifamily Finance Program,06/28/2019,,986252,14-35,MOTT AVENUE,Queens,11691,,,QN-14,31,101001,QN15,40.601386,-73.748083,,,,New Construction,No,Non Prevailing Wage,63,0,0,0,0,0,0,18,40,5,0,0,0,0,63,0,63,63 +67398,55 EAST MOSHOLU PKWY NORTH.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,73807,55,EAST MOSHOLU PARKWAY NORTH,Bronx,,,,BX-07,11,,,,,,,06/28/2019,Preservation,Yes,Non Prevailing Wage,10,3,31,0,0,1,1,33,5,6,0,0,0,0,45,0,45,45 +67576,LANGSAM 12 - 3510 DECATUR AVENUE.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,61030,3510,DECATUR AVENUE,Bronx,10467,2033560178,2018650,BX-07,11,431,BX43,40.879075,-73.872396,40.87924,-73.872071,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,9,39,0,0,1,12,30,7,0,0,0,0,0,49,0,49,49 +67619,2316-2322 ANDREWS AVENUE NORTH HDFC.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,45499,2316,ANDREWS AVENUE NORTH,Bronx,10468,2032180024,2092428,BX-07,14,255,BX30,40.861794,-73.907027,40.86158,-73.906861,06/28/2019,Preservation,Yes,Non Prevailing Wage,1,6,13,0,0,1,0,0,11,5,5,0,0,0,21,0,21,21 +67619,2316-2322 ANDREWS AVENUE NORTH HDFC.HPO.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,806247,2322,ANDREWS AVENUE,Bronx,10468,2032180024,2092427,BX-07,14,255,BX30,40.861915,-73.906919,40.86158,-73.906861,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,6,15,0,0,0,0,1,10,5,5,0,0,0,21,0,21,21 +67699,GLENDALE APARTMENTS.PILLARS.FY19,Multifamily Finance Program,06/28/2019,,458160,71-15,65 STREET,Queens,11385,4036760037,4089274,QN-05,30,577,QN19,40.702042,-73.890599,40.70194,-73.890267,,Preservation,No,Non Prevailing Wage,0,6,3,15,0,0,3,17,4,0,0,0,0,0,24,0,24,24 +67699,GLENDALE APARTMENTS.PILLARS.FY19,Multifamily Finance Program,06/28/2019,,458161,71-21,65 STREET,Queens,11385,4036760034,4089273,QN-05,30,577,QN19,40.701989,-73.890577,40.70178,-73.890206,,Preservation,No,Non Prevailing Wage,0,5,10,9,0,0,1,19,4,0,0,0,0,0,24,0,24,24 +67699,GLENDALE APARTMENTS.PILLARS.FY19,Multifamily Finance Program,06/28/2019,,458162,71-27,65 STREET,Queens,11385,4036760031,4089272,QN-05,30,577,QN19,40.70194,-73.890555,40.70163,-73.890141,,Preservation,No,Non Prevailing Wage,0,3,2,18,0,1,5,15,4,0,0,0,0,0,24,0,24,24 +67705,RODNEY DRIGGS AND SOUTH THIRD STREET HDFC.YR15.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,234677,778,DRIGGS AVENUE,Brooklyn,11211,3024310025,3063278,BK-01,34,551,BK73,40.711683,-73.961224,40.71166,-73.961505,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,28,0,0,0,1,0,0,29,0,0,0,0,0,29,0,29,29 +67705,RODNEY DRIGGS AND SOUTH THIRD STREET HDFC.YR15.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,372140,296,SOUTH 3 STREET,Brooklyn,11211,3024360004,3063330,BK-01,34,527,BK73,40.709877,-73.955324,40.70969,-73.955457,06/28/2019,Preservation,Yes,Non Prevailing Wage,1,20,3,0,0,0,0,13,11,0,0,0,0,0,24,0,24,24 +67705,RODNEY DRIGGS AND SOUTH THIRD STREET HDFC.YR15.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,372152,334,SOUTH 3 STREET,Brooklyn,11211,3024370009,3063349,BK-01,34,527,BK73,40.709331,-73.953831,40.70917,-73.954008,06/28/2019,Preservation,Yes,Non Prevailing Wage,4,14,0,0,0,0,6,1,5,6,0,0,0,0,18,0,18,18 +68076,MANHATTANVILLE (PHASE III),Multifamily Finance Program,06/28/2019,06/28/2019,967819,3595,BROADWAY,Manhattan,10031,1020947503,1083034,MN-09,7,233,MN04,40.828165,-73.949199,40.8283,-73.949528,06/28/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,12,1,0,0,16,0,0,0,0,0,1,15,16,43 +68177,CAPITOL APARTMENTS HDFC.HUDMF,Multifamily Finance Program,06/28/2019,06/28/2019,4540,834,8 AVENUE,Manhattan,10019,1010220061,1024813,MN-05,3,131,MN17,40.762505,-73.985936,40.76253,-73.985517,06/28/2019,Preservation,Yes,Non Prevailing Wage,239,6,2,3,27,1,88,190,0,0,0,0,0,0,278,0,278,278 +68189,PHELPS HOUSE LP.YR15.FY19,Multifamily Finance Program,06/28/2019,06/28/2019,9796,581,COLUMBUS AVENUE,Manhattan,10024,1012020001,1079511,MN-07,6,173,MN12,40.787883,-73.971143,40.78793,-73.970605,06/28/2019,Preservation,Yes,Non Prevailing Wage,157,8,2,0,0,1,0,157,11,0,0,0,0,0,168,0,168,168 +68663,410 TOMPKINS AVENUE,Multifamily Incentives Program,06/28/2019,,990823,410,TOMPKINS AVENUE,Brooklyn,11216,3018390035,,BK-03,36,267,BK75,40.68313,-73.94388,40.683,-73.944154,,New Construction,No,Non Prevailing Wage,0,0,0,0,11,0,4,7,0,0,0,0,0,0,11,0,11,35 +68664,412 EVERGREEN AVENUE,Multifamily Incentives Program,06/28/2019,09/19/2019,972949,412,EVERGREEN AVENUE,Brooklyn,11221,3033040014,3400837,BK-04,34,395,BK78,40.693268,-73.922231,40.69313,-73.922365,09/19/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,4,3,0,0,0,0,0,7,0,7,21 +68692,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,,,----,----,Queens,,,,QN-03,22,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +68697,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,01/04/2020,,----,----,Brooklyn,,,,BK-17,42,,,,,,,01/04/2020,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68701,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,,,----,----,Queens,,,,QN-05,30,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68702,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,,,----,----,Bronx,,,,BX-11,13,,,,,,,,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68705,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,,,----,----,Queens,,,,QN-09,32,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68707,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,,,----,----,Queens,,,,QN-12,28,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68713,CONFIDENTIAL,Homeowner Assistance Program,06/28/2019,12/07/2019,,----,----,Brooklyn,,,,BK-09,41,,,,,,,12/07/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +63151,SPOFFORD DETENTION CENTER PHASE 1,Multifamily Finance Program,06/27/2019,,988458,720,TIFFANY STREET,Bronx,10474,2027380037,,BX-02,17,93,BX27,40.814593,-73.891324,40.81466,-73.890876,,New Construction,No,Non Prevailing Wage,36,36,110,0,0,1,38,61,60,24,0,0,0,0,183,0,183,183 +64027,SENDERO VERDE B,Multifamily Finance Program,06/27/2019,,988996,60,EAST 112 STREET,Manhattan,10029,1016170020,,MN-11,8,17402,MN33,40.796931,-73.945507,40.79674,-73.946106,,New Construction,No,Non Prevailing Wage,83,54,86,52,0,1,72,84,73,47,0,0,0,0,276,0,276,276 +64027,SENDERO VERDE B,Multifamily Finance Program,06/27/2019,,990498,75,EAST 111 STREET,Manhattan,10029,1016170020,,MN-11,8,17402,MN33,40.79636,-73.946114,40.79674,-73.946106,,New Construction,No,Non Prevailing Wage,25,18,22,20,0,0,20,38,27,0,0,0,0,0,85,0,85,85 +64406,1184 RIVER AVE,Multifamily Finance Program,06/27/2019,,989393,1164,RIVER AVENUE,Bronx,10452,,,BX-04,16,197,BX63,40.834696,-73.921889,,,,New Construction,No,Non Prevailing Wage,62,51,136,0,0,1,57,112,51,30,0,0,0,0,250,0,250,250 +65392,TAINO TOWERS.HUDMF.FY19,Multifamily Finance Program,06/27/2019,06/27/2019,1338,2385,2 AVENUE,Manhattan,10035,1017870070,1054628,MN-11,8,194,MN34,40.800872,-73.934866,40.80124,-73.935437,06/27/2019,Preservation,Yes,Non Prevailing Wage,174,23,10,1,0,0,42,28,138,0,0,0,0,0,208,0,208,208 +65392,TAINO TOWERS.HUDMF.FY19,Multifamily Finance Program,06/27/2019,06/27/2019,1339,2391,2 AVENUE,Manhattan,10035,1017870080,1054629,MN-11,8,194,MN34,40.801081,-73.934718,40.80153,-73.935371,06/27/2019,Preservation,Yes,Non Prevailing Wage,69,14,7,1,1,0,0,0,0,64,0,0,28,0,92,0,92,92 +65392,TAINO TOWERS.HUDMF.FY19,Multifamily Finance Program,06/27/2019,06/27/2019,2098,2243,3 AVENUE,Manhattan,10035,1017870001,1054626,MN-11,8,194,MN34,40.801859,-73.937148,40.80193,-73.936632,06/27/2019,Preservation,Yes,Non Prevailing Wage,157,30,15,4,1,1,42,74,46,46,0,0,0,0,208,0,208,208 +65392,TAINO TOWERS.HUDMF.FY19,Multifamily Finance Program,06/27/2019,06/27/2019,20396,219,EAST 122 STREET,Manhattan,10035,1017870060,1054627,MN-11,8,194,MN34,40.80151,-73.936596,40.80173,-73.936151,06/27/2019,Preservation,Yes,Non Prevailing Wage,120,24,3,1,0,0,28,28,0,92,0,0,0,0,148,0,148,148 +66644,EBENEZER PLAZA PHASE 1B,Multifamily Finance Program,06/27/2019,,985451,96,NEW LOTS AVENUE,Brooklyn,11212,3038620001,3327047,BK-16,42,920,BK81,40.657993,-73.901703,40.65764,-73.901325,,New Construction,No,Non Prevailing Wage,30,24,64,0,0,0,12,57,21,28,0,0,0,0,118,0,118,118 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,184823,19,ARLINGTON PLACE,Brooklyn,11216,3018430001,3052991,BK-03,36,245,BK75,40.681009,-73.951183,40.68104,-73.950945,,Preservation,No,Non Prevailing Wage,0,3,2,0,0,0,2,0,3,0,0,0,0,0,5,0,5,5 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,185649,1369,ATLANTIC AVENUE,Brooklyn,11216,3018680063,3053999,BK-03,36,247,BK61,40.678212,-73.944965,40.67856,-73.944879,,Preservation,No,Non Prevailing Wage,0,9,6,0,0,1,2,6,8,0,0,0,0,0,16,0,16,16 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,185651,1371,ATLANTIC AVENUE,Brooklyn,11216,3018680061,3053998,BK-03,36,247,BK61,40.678209,-73.944908,40.67856,-73.944771,,Preservation,No,Non Prevailing Wage,1,10,5,0,0,0,2,6,8,0,0,0,0,0,16,0,16,16 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,205471,1055,BEDFORD AVENUE,Brooklyn,11216,3017970007,3050324,BK-03,36,243,BK75,40.687754,-73.954773,40.68775,-73.954462,,Preservation,No,Non Prevailing Wage,1,5,3,0,0,0,0,3,6,0,0,0,0,0,9,0,9,9 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,205561,1204,BEDFORD AVENUE,Brooklyn,11216,3019960036,3057348,BK-03,36,227,BK69,40.682959,-73.953842,40.68293,-73.954134,,Preservation,No,Non Prevailing Wage,0,4,2,0,0,0,1,3,2,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,211821,31,BREVOORT PLACE,Brooklyn,11216,3020170052,3057773,BK-03,36,227,BK69,40.68011,-73.954136,40.68034,-73.954258,,Preservation,No,Non Prevailing Wage,2,2,0,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,213537,544,BRISTOL STREET,Brooklyn,11212,3036230036,3082753,BK-16,42,916,BK81,40.657414,-73.909543,40.6575,-73.90981,,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,219550,518,CHESTER STREET,Brooklyn,11212,3036130042,3082597,BK-16,42,916,BK81,40.658734,-73.908921,40.65871,-73.909202,,Preservation,No,Non Prevailing Wage,0,2,2,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,219614,618,CHESTER STREET,Brooklyn,11212,3036240058,3082812,BK-16,42,916,BK81,40.656455,-73.908337,40.65628,-73.908571,,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,1,1,2,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,222695,41,CLIFTON PLACE,Brooklyn,11238,3019480067,3055610,BK-02,35,231,BK69,40.687878,-73.962273,40.68807,-73.962557,,Preservation,No,Non Prevailing Wage,1,5,0,0,0,0,0,0,3,3,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,222894,501,CLINTON AVENUE,Brooklyn,11238,3020110028,3321985,BK-02,35,199,BK69,40.683142,-73.966811,40.68326,-73.96658,,Preservation,No,Non Prevailing Wage,2,4,0,0,0,1,1,2,3,1,0,0,0,0,7,0,7,7 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,232324,68,DECATUR STREET,Brooklyn,11216,3018570065,3053658,BK-03,36,269,BK75,40.68056,-73.941063,40.68038,-73.94076,,Preservation,No,Non Prevailing Wage,2,1,1,0,0,0,0,1,3,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,232346,7,DECATUR STREET,Brooklyn,11216,3018550078,3053555,BK-03,36,269,BK75,40.68039,-73.942721,40.68059,-73.942948,,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,297291,1160,FULTON STREET,Brooklyn,11216,3020170027,3057755,BK-03,36,227,BK69,40.680906,-73.954658,40.68065,-73.954626,,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,297646,1925,FULTON STREET,Brooklyn,11233,3015300001,3041573,BK-03,41,379,BK35,40.67876,-73.919439,40.67903,-73.91949,,Preservation,No,Non Prevailing Wage,0,19,16,0,0,1,8,14,9,5,0,0,0,0,36,0,36,36 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,299448,486,GATES AVENUE,Brooklyn,11216,3018140010,3051165,BK-03,36,265,BK75,40.686664,-73.946632,40.68645,-73.946534,,Preservation,No,Non Prevailing Wage,1,3,4,0,0,0,0,5,3,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,299516,593,GATES AVENUE,Brooklyn,11221,3018100061,3051020,BK-03,36,265,BK75,40.687085,-73.943126,40.68731,-73.943105,,Preservation,No,Non Prevailing Wage,5,4,5,1,0,0,0,8,7,0,0,0,0,0,15,0,15,15 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304053,250,GREENE AVENUE,Brooklyn,11238,3019660022,3056259,BK-02,35,231,BK69,40.687252,-73.961061,40.68702,-73.961076,,Preservation,No,Non Prevailing Wage,0,9,0,0,0,0,0,3,3,3,0,0,0,0,9,0,9,9 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304300,585,GREENE AVENUE,Brooklyn,11216,3017990030,3050437,BK-03,36,263,BK75,40.688947,-73.94633,40.68876,-73.946031,,Preservation,No,Non Prevailing Wage,2,0,1,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304315,609,GREENE AVENUE,Brooklyn,11221,3017950080,3050267,BK-03,36,263,BK75,40.689196,-73.944325,40.68935,-73.94457,,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304358,651,GREENE AVENUE,Brooklyn,11221,3017950055,3050252,BK-03,36,263,BK75,40.689347,-73.94302,40.68958,-73.942854,,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304362,655A,GREENE AVENUE,Brooklyn,11221,3017950052,3050249,BK-03,36,263,BK75,40.68936,-73.942897,40.68961,-73.942659,,Preservation,No,Non Prevailing Wage,1,1,1,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304382,676,GREENE AVENUE,Brooklyn,11221,3018010014,3050510,BK-03,36,279,BK35,40.689508,-73.941466,40.68926,-73.941596,,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,304407,697,GREENE AVENUE,Brooklyn,11221,3017960062,3050309,BK-03,36,279,BK35,40.689609,-73.940741,40.68985,-73.940582,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,305434,103,HALSEY STREET,Brooklyn,11216,3018380086,3052725,BK-03,36,249,BK75,40.681897,-73.949123,40.68208,-73.949476,,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,305679,157,HALSEY STREET,Brooklyn,11216,3018380055,3052697,BK-03,36,249,BK75,40.682092,-73.94745,40.68231,-73.947428,,Preservation,No,Non Prevailing Wage,0,4,7,0,0,0,0,7,4,0,0,0,0,0,11,0,11,11 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,305684,161,HALSEY STREET,Brooklyn,11216,3018380051,3052695,BK-03,36,249,BK75,40.682105,-73.947324,40.68234,-73.947187,,Preservation,No,Non Prevailing Wage,2,1,4,1,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,305733,221,HALSEY STREET,Brooklyn,11216,3018390048,3052766,BK-03,36,267,BK75,40.682428,-73.944501,40.68266,-73.944443,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,305955,46,HALSEY STREET,Brooklyn,11216,3018420029,3052960,BK-03,36,245,BK75,40.681555,-73.951936,40.68134,-73.951842,,Preservation,No,Non Prevailing Wage,0,2,2,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,311117,105,HERKIMER STREET,Brooklyn,11216,3018600059,3323680,BK-03,36,247,BK61,40.67968,-73.950264,40.67988,-73.950012,,Preservation,No,Non Prevailing Wage,0,7,7,0,0,1,0,0,1,14,0,0,0,0,15,0,15,15 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,311881,441,HERZL STREET,Brooklyn,11212,3035980007,3082263,BK-16,42,896,BK81,40.659127,-73.912893,40.65908,-73.912604,,Preservation,No,Non Prevailing Wage,1,1,2,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,313888,769,THOMAS S BOYLAND STREET,Brooklyn,11212,3035870024,3082139,BK-16,42,916,BK81,40.661607,-73.911581,40.66171,-73.911303,,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,313945,865,THOMAS S BOYLAND STREET,Brooklyn,11212,3036000009,3082335,BK-16,42,916,BK81,40.659334,-73.911,40.65931,-73.910798,,Preservation,No,Non Prevailing Wage,3,2,1,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,316728,116,JEFFERSON AVENUE,Brooklyn,11216,3018320013,3052200,BK-03,36,245,BK75,40.68298,-73.952605,40.68273,-73.952746,,Preservation,No,Non Prevailing Wage,1,3,1,0,0,1,0,2,2,0,2,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,316843,133,JEFFERSON AVENUE,Brooklyn,11216,3018270084,3051888,BK-03,36,245,BK75,40.683057,-73.952064,40.68327,-73.952144,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,316920,143,JEFFERSON AVENUE,Brooklyn,11216,3018270079,3051885,BK-03,36,245,BK75,40.68309,-73.951794,40.68332,-73.951707,,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,316922,145,JEFFERSON AVENUE,Brooklyn,11216,3018270078,3051884,BK-03,36,245,BK75,40.683095,-73.95174,40.68333,-73.951617,,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,316984,161,JEFFERSON AVENUE,Brooklyn,11216,3018270072,3051880,BK-03,36,245,BK75,40.683147,-73.951304,40.68339,-73.951083,,Preservation,No,Non Prevailing Wage,1,1,1,1,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,317155,346,JEFFERSON AVENUE,Brooklyn,11221,3018350007,3052414,BK-03,36,267,BK75,40.684014,-73.943612,40.68376,-73.943804,,Preservation,No,Non Prevailing Wage,0,6,3,0,0,0,0,0,3,6,0,0,0,0,9,0,9,9 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,317236,431,JEFFERSON AVENUE,Brooklyn,11221,3018310077,3052188,BK-03,36,275,BK35,40.684396,-73.940439,40.68458,-73.940763,,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,319272,942,KENT AVENUE,Brooklyn,11205,3019250038,3055151,BK-03,33,235,BK69,40.692002,-73.958877,40.69208,-73.959158,,Preservation,No,Non Prevailing Wage,0,1,7,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,323979,397,LEGION STREET,Brooklyn,11212,3035950013,3082181,BK-16,42,894,BK81,40.659,-73.915819,40.65892,-73.915499,,Preservation,No,Non Prevailing Wage,1,2,1,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,325079,444,LEXINGTON AVENUE,Brooklyn,11221,3018050027,3050728,BK-03,36,265,BK75,40.688548,-73.943295,40.68833,-73.943158,,Preservation,No,Non Prevailing Wage,1,13,5,0,0,1,0,0,13,7,0,0,0,0,20,0,20,20 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,329756,118,MACON STREET,Brooklyn,11216,3018510004,3053294,BK-03,36,269,BK75,40.681503,-73.945897,40.68125,-73.946063,,Preservation,No,Non Prevailing Wage,0,2,2,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,329819,224,MACON STREET,Brooklyn,11216,3018520030,3053365,BK-03,36,269,BK75,40.68196,-73.941919,40.68177,-73.941783,,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,330393,98,MACON STREET,Brooklyn,11216,3018500018,3053272,BK-03,36,249,BK75,40.681378,-73.946989,40.68114,-73.947033,,Preservation,No,Non Prevailing Wage,0,7,1,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,330794,223,MADISON STREET,Brooklyn,11216,3018180086,3051446,BK-03,36,249,BK75,40.684829,-73.949698,40.68499,-73.950076,,Preservation,No,Non Prevailing Wage,0,4,4,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,332676,732,MARCY AVENUE,Brooklyn,11216,3017940052,3050178,BK-03,36,251,BK75,40.688943,-73.947935,40.68893,-73.948166,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,332710,817,MARCY AVENUE,Brooklyn,11216,3018190008,3051453,BK-03,36,265,BK75,40.685624,-73.947256,40.68564,-73.946968,,Preservation,No,Non Prevailing Wage,0,2,2,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,334948,9,MAC DONOUGH STREET,Brooklyn,11216,3018510068,3053341,BK-03,36,269,BK75,40.680801,-73.945641,40.681,-73.945785,,Preservation,No,Non Prevailing Wage,0,9,3,0,0,0,5,3,0,4,0,0,0,0,12,0,12,12 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,344459,140,NEWPORT STREET,Brooklyn,11212,3036120035,3082561,BK-16,42,916,BK81,40.659166,-73.910189,40.65894,-73.910085,,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,344472,167,NEWPORT STREET,Brooklyn,11212,3036020009,3082379,BK-16,42,916,BK81,40.659368,-73.908928,40.65959,-73.908949,,Preservation,No,Non Prevailing Wage,1,9,2,0,0,0,2,8,2,0,0,0,0,0,12,0,12,12 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,346832,456,NOSTRAND AVENUE,Brooklyn,11216,3018270060,3051874,BK-03,36,245,BK75,40.683432,-73.950196,40.68338,-73.950481,,Preservation,No,Non Prevailing Wage,0,8,3,0,0,1,0,3,9,0,0,0,0,0,12,0,12,12 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,346836,464,NOSTRAND AVENUE,Brooklyn,11216,3018320049,3052224,BK-03,36,245,BK75,40.683045,-73.950121,40.68296,-73.950402,,Preservation,No,Non Prevailing Wage,1,5,2,0,0,0,1,0,4,3,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,346837,466,NOSTRAND AVENUE,Brooklyn,11216,3018320050,3052225,BK-03,36,245,BK75,40.682987,-73.95011,40.68289,-73.950388,,Preservation,No,Non Prevailing Wage,0,6,1,0,0,0,0,0,7,0,0,0,0,0,7,0,7,7 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,357167,469,PROSPECT PLACE,Brooklyn,11238,3011550070,3028644,BK-08,35,305,BK61,40.676012,-73.960945,40.67624,-73.960783,,Preservation,No,Non Prevailing Wage,0,3,5,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,357698,111,PUTNAM AVENUE,Brooklyn,11238,3019890057,3321959,BK-03,35,229,BK69,40.683204,-73.957292,40.68344,-73.957404,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,357754,121,PUTNAM AVENUE,Brooklyn,11238,3019890054,3057182,BK-03,35,229,BK69,40.683235,-73.957029,40.6834,-73.957238,,Preservation,No,Non Prevailing Wage,3,3,0,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,362369,73,RIVERDALE AVENUE,Brooklyn,11212,3035840009,3082070,BK-16,42,898,BK81,40.660209,-73.913994,40.66042,-73.914041,,Preservation,No,Non Prevailing Wage,3,2,1,0,0,0,0,0,2,4,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,362766,894,ROCKAWAY AVENUE,Brooklyn,11212,3036250035,3082838,BK-16,42,916,BK81,40.657627,-73.907665,40.65765,-73.907975,,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,362769,898,ROCKAWAY AVENUE,Brooklyn,11212,3036250036,3082839,BK-16,42,916,BK81,40.657564,-73.907651,40.6576,-73.907961,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,362780,910,ROCKAWAY AVENUE,Brooklyn,11212,3036250041,3082843,BK-16,42,916,BK81,40.657374,-73.9076,40.65733,-73.907892,,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,366608,816,SARATOGA AVENUE,Brooklyn,11212,3035820047,3082029,BK-16,42,894,BK81,40.660715,-73.915269,40.66066,-73.915576,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,1,0,2,2,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,373163,234,SPENCER STREET,Brooklyn,11205,3017620069,3048978,BK-03,33,241,BK75,40.691512,-73.954575,40.69134,-73.954799,,Preservation,No,Non Prevailing Wage,1,5,1,0,0,1,0,4,0,4,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,377223,104,STEUBEN STREET,Brooklyn,11205,3018930050,3054587,BK-02,35,191,BK69,40.694435,-73.963282,40.69428,-73.963527,,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,377994,891,MOTHER GASTON BOULEVARD,Brooklyn,11212,3038680022,3086002,BK-16,42,922,BK81,40.656446,-73.903457,40.65647,-73.903136,,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,0,0,4,2,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,377997,895,MOTHER GASTON BOULEVARD,Brooklyn,11212,3038680020,3086001,BK-16,42,922,BK81,40.656386,-73.903443,40.65638,-73.903115,,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,0,0,4,2,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,378228,2245,STRAUSS STREET,Brooklyn,11212,3035970009,3082251,BK-16,42,896,BK81,40.659026,-73.913823,40.65895,-73.913524,,Preservation,No,Non Prevailing Wage,1,1,1,0,0,1,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381565,231,TOMPKINS AVENUE,Brooklyn,11216,3017860003,3049810,BK-03,36,261,BK75,40.691126,-73.945449,40.69113,-73.94516,,Preservation,No,Non Prevailing Wage,3,2,1,0,0,0,0,2,4,0,0,0,0,0,6,0,6,6 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381568,235,TOMPKINS AVENUE,Brooklyn,11216,3017860001,3049808,BK-03,36,261,BK75,40.690997,-73.945424,40.691,-73.945135,,Preservation,No,Non Prevailing Wage,3,4,1,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381572,249,TOMPKINS AVENUE,Brooklyn,11216,3017910007,3049977,BK-03,36,263,BK75,40.690289,-73.94528,40.69031,-73.944999,,Preservation,No,Non Prevailing Wage,0,4,1,0,0,0,1,1,0,3,0,0,0,0,5,0,5,5 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381602,301,TOMPKINS AVENUE,Brooklyn,11216,3018050001,3050715,BK-03,36,265,BK75,40.687736,-73.944777,40.68778,-73.944536,,Preservation,No,Non Prevailing Wage,3,0,0,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381608,307,TOMPKINS AVENUE,Brooklyn,11216,3018100007,3050977,BK-03,36,265,BK75,40.687475,-73.944723,40.6874,-73.944417,,Preservation,No,Non Prevailing Wage,0,5,1,0,0,1,0,3,4,0,0,0,0,0,7,0,7,7 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381637,351,TOMPKINS AVENUE,Brooklyn,11216,3018200004,3051468,BK-03,36,265,BK75,40.685771,-73.944382,40.6858,-73.944105,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381698,445,TOMPKINS AVENUE,Brooklyn,11216,3018460006,3053079,BK-03,36,269,BK75,40.682194,-73.943671,40.6822,-73.943383,,Preservation,No,Non Prevailing Wage,1,2,2,0,0,0,1,1,0,3,0,0,0,0,5,0,5,5 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,381700,447,TOMPKINS AVENUE,Brooklyn,11216,3018460005,3053078,BK-03,36,269,BK75,40.682142,-73.943661,40.68213,-73.943372,,Preservation,No,Non Prevailing Wage,0,5,2,1,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,389104,670,WATKINS STREET,Brooklyn,11212,3036380050,3082974,BK-16,42,922,BK81,40.65581,-73.904323,40.65578,-73.90459,,Preservation,No,Non Prevailing Wage,1,2,1,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,389105,671,WATKINS STREET,Brooklyn,11212,3036390022,3082987,BK-16,42,922,BK81,40.655813,-73.904301,40.6558,-73.904013,,Preservation,No,Non Prevailing Wage,1,2,1,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +66670,JOE CENTRAL BROOKLYN LLC.YR15.FY19,Multifamily Finance Program,06/27/2019,,807962,155,CLINTON AVENUE,Brooklyn,11205,3018880001,3054300,BK-02,35,191,BK69,40.6936,-73.968897,40.69329,-73.968522,,Preservation,No,Non Prevailing Wage,3,3,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +67459,5 TELLERS HDFC INC.GHPP.FY19,Multifamily Finance Program,06/27/2019,,64494,300,EAST 162 STREET,Bronx,10451,2024210022,2001933,BX-04,17,173,BX14,40.826156,-73.916833,40.82591,-73.916855,,Preservation,No,Non Prevailing Wage,9,10,2,0,0,0,0,1,11,9,0,0,0,0,21,0,21,21 +67459,5 TELLERS HDFC INC.GHPP.FY19,Multifamily Finance Program,06/27/2019,,64496,304,EAST 162 STREET,Bronx,10451,2024210024,2001934,BX-04,17,173,BX14,40.826123,-73.916735,40.82586,-73.916714,,Preservation,No,Non Prevailing Wage,9,10,1,0,0,1,0,1,11,9,0,0,0,0,21,0,21,21 +67523,SUS. 1769 JEROME AVE,Multifamily Finance Program,06/27/2019,,989049,1769,JEROME AVENUE,Bronx,10453,2028610163,2090447,BX-05,14,217,BX36,40.848423,-73.911846,40.84852,-73.912168,,New Construction,No,Non Prevailing Wage,105,0,69,0,0,1,110,6,53,5,1,0,0,0,175,0,175,175 +67636,2BT HDFC.YR15.FY19,Multifamily Finance Program,06/27/2019,,9438,82,RUTGERS SLIP,Manhattan,10002,1002480015,1085945,MN-03,1,6,MN28,40.710591,-73.989864,40.7104,-73.990387,,Preservation,No,Non Prevailing Wage,0,68,123,6,0,1,0,18,144,36,0,0,0,0,198,0,198,198 +68657,128 HURON STREET,Multifamily Incentives Program,06/27/2019,,315298,128,HURON STREET,Brooklyn,11222,3025320024,3064269,BK-01,33,563,BK76,40.732865,-73.95642,40.73266,-73.956315,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +68658,BOERUM RESIDENCE LLC,Multifamily Incentives Program,06/27/2019,,936381,123,BOERUM STREET,Brooklyn,11206,3030700033,3423972,BK-01,34,505,BK90,40.705813,-73.943933,40.70601,-73.94399,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,1,1,0,0,0,0,2,0,2,18 +68658,BOERUM RESIDENCE LLC,Multifamily Incentives Program,06/27/2019,,976602,125,BOERUM STREET,Brooklyn,11206,3030700032,3423973,BK-01,34,505,BK90,40.705818,-73.943864,40.70601,-73.943904,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,3 +68658,BOERUM RESIDENCE LLC,Multifamily Incentives Program,06/27/2019,,976603,127,BOERUM STREET,Brooklyn,11206,3030700031,3423974,BK-01,34,505,BK90,40.705827,-73.943792,40.70602,-73.943821,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,2,0,0,0,0,0,2,0,2,2 +68711,CONFIDENTIAL,Homeowner Assistance Program,06/27/2019,,,----,----,Brooklyn,,,,BK-18,46,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +63777,APEX PLACE,Multifamily Finance Program,06/26/2019,,985431,61-11,108 STREET,Queens,,,,QN-06,29,,,,,,,,New Construction,No,Non Prevailing Wage,19,37,37,90,0,0,16,74,77,16,0,0,0,0,183,0,183,183 +63777,APEX PLACE,Multifamily Finance Program,06/26/2019,,985432,110-41,COLONIAL AVENUE,Queens,11375,4021590002,,QN-06,29,745,QN17,40.737484,-73.848534,40.73676,-73.849802,,New Construction,No,Non Prevailing Wage,14,29,28,72,0,1,12,48,72,12,0,0,0,0,144,0,144,144 +63777,APEX PLACE,Multifamily Finance Program,06/26/2019,,985433,108-75,62 DRIVE,Queens,11375,4021590020,,QN-06,29,745,QN17,40.736236,-73.849168,40.73665,-73.848936,,New Construction,No,Non Prevailing Wage,11,23,23,58,0,0,11,46,46,12,0,0,0,0,115,0,115,115 +67154,2126 MAPES AVENUE,Small Homes Program,06/26/2019,,989040,2126-28,MAPES AVENUE,Bronx,10460,2031110035,,BX-06,15,36501,BX17,40.847537,-73.884742,40.8473,-73.884508,,New Construction,No,Non Prevailing Wage,8,4,17,0,0,1,2,6,16,6,0,0,0,0,30,0,30,30 +67805,1520 SEDGWICK AVENUE HDFC.PLP.FY19,Multifamily Finance Program,06/26/2019,06/26/2019,108415,1520,SEDGWICK AVENUE,Bronx,10453,2028800017,2009171,BX-05,16,20501,BX36,40.846785,-73.924929,40.84699,-73.924419,06/26/2019,Preservation,Yes,Non Prevailing Wage,0,0,87,14,0,1,0,34,34,34,0,0,0,0,102,0,102,102 +68698,CONFIDENTIAL,Homeowner Assistance Program,06/26/2019,,,----,----,Staten Island,,,,SI-02,50,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68700,CONFIDENTIAL,Homeowner Assistance Program,06/26/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68709,CONFIDENTIAL,Homeowner Assistance Program,06/26/2019,,,----,----,Brooklyn,,,,BK-18,46,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +61678,PARK HAVEN,Multifamily Finance Program,06/25/2019,,981992,345,ST ANNS AVENUE,Bronx,10454,2022680027,,BX-01,8,41,BX39,40.809498,-73.915766,40.8095,-73.916146,,New Construction,No,Non Prevailing Wage,67,34,76,0,0,1,48,73,41,16,0,0,0,0,178,0,178,178 +68211,HALLETTS POINT 7,Multifamily Incentives Program,06/25/2019,,989031,24-Mar,27 AVENUE,Queens,11102,4004900080,,QN-01,22,87,QN71,40.77489,-73.933975,40.77461,-73.933776,,New Construction,No,Non Prevailing Wage,0,81,81,0,0,0,40,40,82,0,0,0,0,0,162,0,162,163 +68347,HIGHBRIDGE-1133 OGDEN AVENUE.HPO.FY19,Multifamily Finance Program,06/25/2019,06/25/2019,100145,1131,OGDEN AVENUE,Bronx,10452,2025260090,2088158,BX-04,16,199,BX26,40.836286,-73.927496,40.83637,-73.927853,06/25/2019,Preservation,Yes,Non Prevailing Wage,0,20,291,88,0,1,26,125,224,25,0,0,0,0,400,0,400,400 +68649,1176 NELSON AVENUE,Multifamily Incentives Program,06/25/2019,10/01/2019,979390,1176,NELSON AVENUE,Bronx,10452,2025150003,2003281,BX-04,16,199,BX26,40.837111,-73.925764,40.83677,-73.925656,10/01/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,2,5,3,0,0,0,0,0,10,0,10,31 +68650,669 MACDONOUGH STREET,Multifamily Incentives Program,06/25/2019,,990642,669,MAC DONOUGH STREET,Brooklyn,11233,3014970064,3414250,BK-03,41,377,BK35,40.683824,-73.919314,40.68403,-73.919372,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +68694,CONFIDENTIAL,Homeowner Assistance Program,06/25/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68703,CONFIDENTIAL,Homeowner Assistance Program,06/25/2019,,,----,----,Queens,,,,QN-13,27,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68718,CONFIDENTIAL,Homeowner Assistance Program,06/25/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +54577,1019 FULTON STREET,Multifamily Incentives Program,06/24/2019,,971035,1019,FULTON STREET,Brooklyn,11238,3019910007,,BK-02,35,227,BK69,40.682297,-73.961194,40.68245,-73.96118,,New Construction,No,Non Prevailing Wage,0,0,10,5,0,0,4,7,4,0,0,0,0,0,15,0,15,50 +65320,BREAKING GROUND.453 EAST 142ND ST.BETANCES V,Multifamily Finance Program,06/24/2019,,988893,445,EAST 142 STREET,Bronx,10454,,,BX-01,8,41,BX39,40.811114,-73.919734,,,,New Construction,No,Prevailing Wage,151,0,0,0,0,1,130,22,0,0,0,0,0,0,152,0,152,152 +67458,RB HARMAN HDFC.GHPP.FY19,Multifamily Finance Program,06/24/2019,,307978,251,HARMAN STREET,Brooklyn,11237,3032780036,3074789,BK-04,37,431,BK77,40.698994,-73.919776,40.69913,-73.919974,,Preservation,No,Non Prevailing Wage,2,3,1,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +67458,RB HARMAN HDFC.GHPP.FY19,Multifamily Finance Program,06/24/2019,,327776,73,LINDEN STREET,Brooklyn,11221,3033220028,3076073,BK-04,34,399,BK78,40.691903,-73.920888,40.69218,-73.920981,,Preservation,No,Non Prevailing Wage,4,6,2,0,0,0,0,4,5,3,0,0,0,0,12,0,12,12 +59104,THE BRONXWOOD TOWER INC.HRP.FY19,Multifamily Finance Program,06/21/2019,,72098,855,EAST 233 STREET,Bronx,10466,2050000001,2068251,BX-12,12,430,BX62,40.89194,-73.852775,40.89211,-73.852507,,Preservation,No,Non Prevailing Wage,1,107,0,0,0,1,0,24,37,48,0,0,0,0,0,109,109,109 +60824,CONFIDENTIAL,Multifamily Finance Program,06/21/2019,,,----,----,Bronx,,,,BX-02,17,,,,,,,,New Construction,No,Non Prevailing Wage,37,24,0,0,0,1,13,8,34,7,0,0,0,0,62,0,62,62 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,185041,948,DUMONT AVENUE,Brooklyn,11207,3040800023,3090534,BK-05,42,1120,BK82,40.667917,-73.883474,40.6677,-73.88342,,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,207556,781,BELMONT AVENUE,Brooklyn,11208,3040200032,3089294,BK-05,37,1166,BK82,40.672808,-73.880855,40.673,-73.880992,,Preservation,No,Non Prevailing Wage,1,5,2,0,0,1,0,3,4,2,0,0,0,0,9,0,9,9 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,234960,950,DUMONT AVENUE,Brooklyn,11207,3040800024,3090535,BK-05,42,1120,BK82,40.667925,-73.883416,40.66772,-73.883337,,Preservation,No,Non Prevailing Wage,0,3,3,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,234962,954,DUMONT AVENUE,Brooklyn,11207,3040800025,3090536,BK-05,42,1120,BK82,40.667942,-73.883301,40.66773,-73.883251,,Preservation,No,Non Prevailing Wage,0,2,3,1,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,234964,956,DUMONT AVENUE,Brooklyn,11207,3040800026,3090537,BK-05,42,1120,BK82,40.66795,-73.883243,40.66774,-73.883164,,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,1,4,1,0,0,0,0,0,6,0,6,6 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,234966,960,DUMONT AVENUE,Brooklyn,11207,3040800027,3090538,BK-05,42,1120,BK82,40.667966,-73.883131,40.66775,-73.883074,,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +66565,MHANY DUMONT HDFC.PLP.FY19,Multifamily Finance Program,06/21/2019,,234969,964,DUMONT AVENUE,Brooklyn,11207,3040800029,3090540,BK-05,42,1120,BK82,40.667983,-73.883016,40.66778,-73.882879,,Preservation,No,Non Prevailing Wage,1,3,5,1,0,0,3,3,2,2,0,0,0,0,10,0,10,10 +68641,1857 BARNES AVENUE APARTMENTS,Multifamily Incentives Program,06/21/2019,09/09/2019,47435,1857,BARNES AVENUE,Bronx,10462,2040530047,2043642,BX-11,13,232,BX37,40.847643,-73.863196,40.8475,-73.863428,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,1,0,0,0,0,0,2,0,2,6 +68714,CONFIDENTIAL,Homeowner Assistance Program,06/21/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,304938,108,GROVE STREET,Brooklyn,11221,3033230011,3076081,BK-04,34,417,BK78,40.693401,-73.920554,40.69312,-73.920493,,Preservation,No,Non Prevailing Wage,0,11,11,0,0,1,0,0,17,6,0,0,0,0,23,0,23,23 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,304940,110,GROVE STREET,Brooklyn,11221,3033230014,3076082,BK-04,34,417,BK78,40.693442,-73.920514,40.69328,-73.920331,,Preservation,No,Non Prevailing Wage,1,10,12,0,0,0,0,0,17,6,0,0,0,0,23,0,23,23 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,304943,116,GROVE STREET,Brooklyn,11221,3033230017,3076083,BK-04,34,417,BK78,40.69356,-73.920399,40.69345,-73.920168,,Preservation,No,Non Prevailing Wage,1,11,4,0,0,0,0,2,14,0,0,0,0,0,16,0,16,16 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,307953,160,HARMAN STREET,Brooklyn,11221,3032860016,3342637,BK-04,37,419,BK78,40.697115,-73.921596,40.69702,-73.92135,,Preservation,No,Non Prevailing Wage,3,9,2,0,0,0,0,0,14,0,0,0,0,0,14,0,14,14 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,307960,173,HARMAN STREET,Brooklyn,11221,3032760041,3342259,BK-04,37,421,BK78,40.697365,-73.921379,40.6975,-73.921588,,Preservation,No,Non Prevailing Wage,4,8,1,0,0,1,0,0,14,0,0,0,0,0,14,0,14,14 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,307963,181,HARMAN STREET,Brooklyn,11221,3032760039,3342258,BK-04,37,421,BK78,40.69756,-73.921187,40.69767,-73.921422,,Preservation,No,Non Prevailing Wage,3,10,1,0,0,0,0,0,14,0,0,0,0,0,14,0,14,14 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,327778,75,LINDEN STREET,Brooklyn,11221,3033220026,3076072,BK-04,34,399,BK78,40.691949,-73.920841,40.69225,-73.920909,,Preservation,No,Non Prevailing Wage,6,5,1,0,0,0,0,4,5,3,0,0,0,0,12,0,12,12 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,377775,93,STOCKHOLM STREET,Brooklyn,11221,3032430048,3073774,BK-04,34,421,BK78,40.697184,-73.925068,40.6975,-73.925104,,Preservation,No,Non Prevailing Wage,0,5,8,0,0,1,0,6,8,0,0,0,0,0,14,0,14,14 +61641,CASA PASIVA LLC.YR15.FY19,Multifamily Finance Program,06/20/2019,,808468,120,GROVE STREET,Brooklyn,11221,3033230017,3342269,BK-04,34,417,BK78,40.69364,-73.920319,40.69345,-73.920168,,Preservation,No,Non Prevailing Wage,2,12,2,0,0,0,0,2,14,0,0,0,0,0,16,0,16,16 +67462,368 E 8TH ST HDFC.GHPP.FY19,Multifamily Finance Program,06/20/2019,,11267,368,EAST 8 STREET,Manhattan,10009,1003770016,1004506,MN-03,2,2602,MN28,40.724319,-73.977549,40.72414,-73.977697,,Preservation,No,Non Prevailing Wage,25,4,0,0,0,0,0,7,18,4,0,0,0,0,2,27,29,29 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,53351,3475,BRUNER AVENUE,Bronx,10469,2048830124,2065453,BX-12,12,46202,BX13,40.879437,-73.84177,40.87916,-73.841966,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,90935,4183,LACONIA AVENUE,Bronx,10466,2048790071,2065375,BX-12,12,424,BX44,40.889371,-73.846123,40.88964,-73.846256,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,853820,3210,OLINVILLE AVENUE,Bronx,10467,2045950004,2056207,BX-12,15,374,BX44,40.871854,-73.868238,40.87182,-73.867934,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,853821,3214,OLINVILLE AVENUE,Bronx,10467,2045950115,2112898,BX-12,15,374,BX44,40.871904,-73.868237,40.87195,-73.86793,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,853825,3212,OLINVILLE AVENUE,Bronx,10467,2045950114,2103652,BX-12,15,374,BX44,40.871879,-73.868238,40.87189,-73.867934,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,1,5,2,0,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,854140,3471,BRUNER AVENUE,Bronx,10469,2048830126,2112952,BX-12,12,46202,BX13,40.879399,-73.841749,40.87905,-73.841872,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,854141,3473,BRUNER AVENUE,Bronx,10469,2048830125,2112953,BX-12,12,46202,BX13,40.879418,-73.841759,40.87911,-73.841919,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,854142,3469,BRUNER AVENUE,Bronx,10469,2048830227,2112946,BX-12,12,46202,BX13,40.87938,-73.841738,40.87897,-73.841811,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,857260,3612,BARNES AVENUE,Bronx,10467,2046720040,2114916,BX-12,12,380,BX44,40.878705,-73.861621,40.87887,-73.861338,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,4,4,2,0,0,0,0,0,10,0,10,10 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,858149,2183,NEW ENGLAND THRUWAY,Bronx,10475,2052630185,2113223,BX-12,12,46202,BX13,40.881839,-73.830413,40.8817,-73.831107,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,858150,2185,NEW ENGLAND THRUWAY,Bronx,10475,2052630184,2113222,BX-12,12,46202,BX13,40.881853,-73.830387,40.88175,-73.831035,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,1,2,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,858151,2187,NEW ENGLAND THRUWAY,Bronx,10475,2052630183,2113221,BX-12,12,46202,BX13,40.88187,-73.830362,40.88179,-73.830963,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,1,2,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,858153,2189,NEW ENGLAND THRUWAY,Bronx,10475,2052630182,2113220,BX-12,12,46202,BX13,40.881886,-73.830337,40.88184,-73.830883,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,868637,1185,EAST 213 STREET,Bronx,10469,2047080005,2113524,BX-12,12,382,BX44,40.875397,-73.851941,40.87546,-73.851637,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,0,7,1,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,868877,1183,EAST 213 STREET,Bronx,10469,2047080008,2113525,BX-12,12,382,BX44,40.875405,-73.85197,40.87557,-73.851749,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,872157,1184,EAST 214 STREET,Bronx,10469,2047080181,2113526,BX-12,12,382,BX44,40.875981,-73.851448,40.8758,-73.851535,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,872218,2182,REEDS MILL LANE,Bronx,10475,2052630176,2113699,BX-12,12,46202,BX13,40.882083,-73.832101,40.88208,-73.831295,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,872221,2184,REEDS MILL LANE,Bronx,10475,2052630177,2113700,BX-12,12,46202,BX13,40.882086,-73.832086,40.88207,-73.831215,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,2,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,872224,2186,REEDS MILL LANE,Bronx,10475,2052630178,2113701,BX-12,12,46202,BX13,40.882116,-73.831992,40.88209,-73.831146,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,872225,2188,REEDS MILL LANE,Bronx,10475,2052630179,2113702,BX-12,12,46202,BX13,40.882168,-73.83183,40.88212,-73.831052,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,875152,1186,EAST 214 STREET,Bronx,10469,2047080182,2113527,BX-12,12,382,BX44,40.87597,-73.851408,40.87574,-73.851448,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,877025,3628,EASTCHESTER ROAD,Bronx,10469,2049010017,2114600,BX-12,12,386,BX03,40.88164,-73.848828,40.88151,-73.848477,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,877087,3632,EASTCHESTER ROAD,Bronx,10469,2049010020,2114602,BX-12,12,386,BX03,40.881711,-73.84886,40.88167,-73.848484,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,877721,3561,BRONXWOOD AVENUE,Bronx,10469,2046710075,2115564,BX-12,12,380,BX44,40.877054,-73.859657,40.87704,-73.859878,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,878332,3630,EASTCHESTER ROAD,Bronx,10469,2049010018,2114601,BX-12,12,386,BX03,40.881676,-73.848842,40.88159,-73.84848,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,1,1,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,881054,1149,EAST 224 STREET,Bronx,10466,2049030021,2115229,BX-12,12,386,BX03,40.882822,-73.847993,40.88302,-73.847747,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,1,0,2,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,883914,1151,EAST 224 STREET,Bronx,10466,2049030020,2115228,BX-12,12,386,BX03,40.882805,-73.847953,40.88299,-73.847667,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,1,2,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,883942,1147,EAST 224 STREET,Bronx,10466,2049030022,2115230,BX-12,12,386,BX03,40.882838,-73.848033,40.88306,-73.847826,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,1,2,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887525,3217,HONE AVENUE,Bronx,10469,2046110160,2115175,BX-12,12,370,BX44,40.87174,-73.857542,40.87184,-73.85781,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,1,1,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887526,3219,HONE AVENUE,Bronx,10469,2046110060,2115167,BX-12,12,370,BX44,40.871765,-73.857542,40.87189,-73.85781,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887527,3221,HONE AVENUE,Bronx,10469,2046110159,2115174,BX-12,12,370,BX44,40.871789,-73.857542,40.87194,-73.857809,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887579,3223,HONE AVENUE,Bronx,10469,2046110158,2115173,BX-12,12,370,BX44,40.871817,-73.857539,40.87199,-73.857806,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887580,3225,HONE AVENUE,Bronx,10469,2046110157,2115172,BX-12,12,370,BX44,40.871841,-73.857539,40.87204,-73.857806,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,887581,3227,HONE AVENUE,Bronx,10469,2046110156,2115171,BX-12,12,370,BX44,40.871866,-73.857538,40.87211,-73.857802,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927399,2906,ELY AVENUE,Bronx,10469,2047960140,2112931,BX-12,12,46202,BX13,40.869971,-73.835863,40.87024,-73.835732,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,1,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927400,2900,ELY AVENUE,Bronx,10469,2047960137,2112928,BX-12,12,46202,BX13,40.869894,-73.835827,40.87005,-73.835642,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,930350,3563,BRONXWOOD AVENUE,Bronx,10469,2046710073,2115736,BX-12,12,380,BX44,40.877081,-73.859643,40.87717,-73.859881,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,947260,4187,LACONIA AVENUE,Bronx,10466,2048790171,2117227,BX-12,12,424,BX44,40.889442,-73.846083,40.88951,-73.846321,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,947762,2904,ELY AVENUE,Bronx,10469,2047960139,2112929,BX-12,12,46202,BX13,40.869946,-73.835849,40.87017,-73.835703,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67483,STAGG 1 - AMANDA'S COVE.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,947763,2902,ELY AVENUE,Bronx,10469,2047960138,2112930,BX-12,12,46202,BX13,40.869919,-73.835838,40.87011,-73.835671,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,1,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,124960,2540,WILLIAMSBRIDGE ROAD,Bronx,10469,2044500014,2051774,BX-11,13,326,BX31,40.864009,-73.858571,40.86428,-73.858415,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,819431,4005A,DEREIMER AVENUE,Bronx,10466,2049820089,2102351,BX-12,12,426,BX62,40.890529,-73.84182,40.8906,-73.842127,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,2,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,819465,4005,DEREIMER AVENUE,Bronx,10466,2049820090,2102352,BX-12,12,426,BX62,40.890652,-73.841866,40.89054,-73.842105,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,819466,4003,DEREIMER AVENUE,Bronx,10466,2049820091,2102350,BX-12,12,426,BX62,40.890529,-73.84182,40.89048,-73.84208,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,819576,2555,WILLIAMSBRIDGE ROAD,Bronx,10469,2044470036,2102903,BX-11,13,324,BX07,40.864578,-73.858888,40.86458,-73.859177,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,821071,3438,EASTCHESTER ROAD,Bronx,10469,2047230141,2102996,BX-12,12,386,BX03,40.877517,-73.84662,40.8777,-73.846341,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,821499,3436,EASTCHESTER ROAD,Bronx,10469,2047230140,2102995,BX-12,12,386,BX03,40.87749,-73.846606,40.87764,-73.846309,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,821541,3440,EASTCHESTER ROAD,Bronx,10469,2047230142,2102997,BX-12,12,386,BX03,40.877545,-73.846635,40.87776,-73.846374,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,822588,3444,EASTCHESTER ROAD,Bronx,10469,2047230144,2093624,BX-12,12,386,BX03,40.8776,-73.846663,40.87788,-73.846442,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,823210,740,EAST 222 STREET,Bronx,10467,2046690071,2121261,BX-12,12,396,BX44,40.885264,-73.86032,40.88496,-73.860306,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,823796,3442,EASTCHESTER ROAD,Bronx,10469,2047230143,2093625,BX-12,12,386,BX03,40.877572,-73.846649,40.87781,-73.846403,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,825592,4432,MONTICELLO AVENUE,Bronx,10466,2050990108,2071564,BX-12,12,444,BX62,40.901058,-73.842077,40.90118,-73.841852,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,825723,4436,MONTICELLO AVENUE,Bronx,10466,2050990019,2123483,BX-12,12,444,BX62,40.901121,-73.842106,40.90125,-73.84187,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,829483,3647,PAULDING AVENUE,Bronx,10469,2046850161,2103366,BX-12,12,382,BX44,40.877974,-73.85622,40.87817,-73.856415,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,1,2,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,830426,742,EAST 222 STREET,Bronx,10467,2046690072,2121263,BX-12,12,396,BX44,40.885253,-73.86028,40.88493,-73.860212,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,830448,3645,PAULDING AVENUE,Bronx,10469,2046850162,2103367,BX-12,12,382,BX44,40.877952,-73.856231,40.8781,-73.856451,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,834934,3055,OLINVILLE AVENUE,Bronx,10467,2045440142,2103643,BX-12,15,336,BX07,40.870781,-73.868258,40.87084,-73.868489,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,0,1,7,0,0,0,0,8,0,8,8 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,834939,3059,OLINVILLE AVENUE,Bronx,10467,2045440144,2103644,BX-12,15,336,BX07,40.87083,-73.868258,40.87099,-73.86851,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,834941,3051,OLINVILLE AVENUE,Bronx,10467,2045440140,2103642,BX-12,15,336,BX07,40.870729,-73.868258,40.87073,-73.868486,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,838846,1010,EAST 224 STREET,Bronx,10466,2048700040,2103847,BX-12,12,398,BX44,40.884207,-73.851794,40.88402,-73.851994,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,838847,1012,EAST 224 STREET,Bronx,10466,2048700041,2103848,BX-12,12,398,BX44,40.884194,-73.851755,40.884,-73.851921,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,840577,4001,DE REIMER AVENUE,Bronx,10466,2049820092,2102349,BX-12,12,426,BX62,40.890405,-73.841773,40.89041,-73.842055,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,840660,1451,KNAPP STREET,Bronx,10469,2047620161,2115249,BX-12,12,358,BX03,40.869958,-73.844273,40.87003,-73.844472,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,840897,2536,WILLIAMSBRIDGE ROAD,Bronx,10469,2044500112,2109546,BX-11,13,326,BX31,40.863968,-73.858546,40.86415,-73.858354,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,841033,1122,EAST 222 STREET,Bronx,10469,2047160118,2103898,BX-12,12,386,BX03,40.881831,-73.84976,40.8816,-73.849833,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,841066,1455,KNAPP STREET,Bronx,10469,2047620160,2115248,BX-12,12,358,BX03,40.86998,-73.844197,40.87008,-73.844305,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,841071,3920,MURDOCK AVENUE,Bronx,10466,2049580012,2103918,BX-12,12,426,BX62,40.889301,-73.839425,40.88943,-73.839197,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,842015,3215,CRUGER AVENUE,Bronx,10467,2045960051,2114364,BX-12,15,374,BX44,40.871827,-73.866155,40.87201,-73.866419,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,843287,2538,WILLIAMSBRIDGE ROAD,Bronx,10469,2044500113,2109547,BX-11,13,326,BX31,40.86399,-73.858557,40.86421,-73.858372,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67484,STAGG 2 - JUSTIN'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,886213,4712,RICHARDSON AVENUE,Bronx,10470,2051070058,2071774,BX-12,11,414,BX62,40.904339,-73.85099,40.90416,-73.850918,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,70359,936,EAST 224 STREET,Bronx,10466,2048590063,2064340,BX-12,12,398,BX44,40.884907,-73.853995,40.88458,-73.853783,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,70360,938,EAST 224 STREET,Bronx,10466,2048590064,2064341,BX-12,12,398,BX44,40.884896,-73.853956,40.88455,-73.853692,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,899636,736,EAST 220 STREET,Bronx,10467,2046670074,2117178,BX-12,12,396,BX44,40.883903,-73.861256,40.88365,-73.861224,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,9,0,0,0,2,7,0,0,0,0,0,0,9,0,9,9 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,899677,717,EAST 220 STREET,Bronx,10467,2046680042,2117180,BX-12,12,396,BX44,40.884049,-73.861657,40.88425,-73.86158,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,1,0,0,2,7,0,0,0,0,0,0,9,0,9,9 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,899698,715,EAST 220 STREET,Bronx,10467,2046680044,2117181,BX-12,12,396,BX44,40.88406,-73.861697,40.88428,-73.861664,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,9,0,0,0,2,2,5,0,0,0,0,0,9,0,9,9 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,899700,738,EAST 220 STREET,Bronx,10467,2046670075,2117179,BX-12,12,396,BX44,40.88389,-73.861212,40.88363,-73.861141,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,9,0,0,0,2,2,5,0,0,0,0,0,9,0,9,9 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927249,934,EAST 225 STREET,Bronx,10466,2048600167,2116626,BX-12,12,404,BX44,40.88562,-73.853625,40.88537,-73.853615,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,1,0,2,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927254,940,EAST 225 STREET,Bronx,10466,2048600170,2116629,BX-12,12,404,BX44,40.885582,-73.853506,40.88531,-73.85343,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,1,0,0,0,1,1,1,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927282,933,EAST 224 STREET,Bronx,10466,2048600027,2116633,BX-12,12,404,BX44,40.884949,-73.854064,40.88509,-73.853691,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927390,935,EAST 224 STREET,Bronx,10466,2048600026,2116631,BX-12,12,404,BX44,40.884938,-73.854028,40.88503,-73.853594,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927393,621,EAST 231 STREET,Bronx,10466,2048340044,2117221,BX-12,12,420,BX44,40.89282,-73.860517,40.89297,-73.86068,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,4,3,3,0,0,0,0,0,10,0,10,10 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,927420,4152,CARPENTER AVENUE,Bronx,10466,2048340046,2117220,BX-12,12,420,BX44,40.893183,-73.860871,40.89305,-73.860636,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,4,1,5,0,0,0,0,0,10,0,10,10 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,931142,2512,CRUGER AVENUE,Bronx,10467,2044340010,2117653,BX-11,15,330,BX07,40.863928,-73.866377,40.8636,-73.866114,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,1,7,0,0,0,0,0,0,8,0,8,8 +67487,STAGG 4 - TYLER'S BRONX.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,931143,2514,CRUGER AVENUE,Bronx,10467,2044340011,2117652,BX-11,15,330,BX07,40.863942,-73.866377,40.86367,-73.86611,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,71062,848,EAST 228 STREET,Bronx,10466,2048520062,2063996,BX-12,12,406,BX44,40.888551,-73.855004,40.88824,-73.854802,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,73286,677,EAST 241 STREET,Bronx,10470,2051070054,2071772,BX-12,11,414,BX62,40.903748,-73.850991,40.90401,-73.851038,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,875189,3709,LACONIA AVENUE,Bronx,10469,2046990001,2114432,BX-12,12,388,BX44,40.878251,-73.853301,40.87837,-73.853464,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,875694,914,EAST 230 STREET,Bronx,10466,2048650169,2113884,BX-12,12,424,BX44,40.889269,-73.852051,40.88906,-73.852156,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,876224,924,EAST 230 STREET,Bronx,10466,2048650174,2113889,BX-12,12,424,BX44,40.889203,-73.851845,40.88895,-73.851831,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,883859,4129,SETON AVENUE,Bronx,10466,2050280015,2116359,BX-12,12,448,BX62,40.8946,-73.838605,40.89489,-73.839017,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,912708,722,EAST 220 STREET,Bronx,10467,2046670066,2113872,BX-12,12,396,BX44,40.883994,-73.861541,40.88379,-73.861643,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,6,2,0,0,0,0,0,8,0,8,8 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,912724,720,EAST 220 STREET,Bronx,10467,2046670065,2113871,BX-12,12,396,BX44,40.884008,-73.861581,40.88381,-73.861726,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,7,1,0,0,0,6,2,0,0,0,0,0,8,0,8,8 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,937491,3250,WICKHAM AVENUE,Bronx,10469,2047550066,2121762,BX-12,12,358,BX03,40.875382,-73.840525,40.87596,-73.840581,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,947544,3248,WICKHAM AVENUE,Bronx,10469,2047550065,2121760,BX-12,12,358,BX03,40.875349,-73.840507,40.8759,-73.840527,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,950687,746,EAST 227 STREET,Bronx,10466,2048400069,2117701,BX-12,12,406,BX44,40.888774,-73.858309,40.88849,-73.858161,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +67618,STAGG 3 - MICKEY'S CORNER.HPO.FY19,Multifamily Finance Program,06/20/2019,06/20/2019,950724,748,EAST 227 STREET,Bronx,10466,2048400070,2120062,BX-12,12,406,BX44,40.888761,-73.858269,40.88846,-73.858082,06/20/2019,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +68651,CONFIDENTIAL,Homeowner Assistance Program,06/20/2019,06/20/2019,,----,----,Brooklyn,,,,BK-15,48,,,,,,,06/20/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68696,CONFIDENTIAL,Homeowner Assistance Program,06/20/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +67752,JENNINGS TERRACE GARDENS HDFC.GHPP.FY19,Multifamily Finance Program,06/19/2019,,88700,749,JENNINGS STREET,Bronx,10459,2029620060,2010206,BX-03,16,151,BX35,40.831828,-73.898144,40.832,-73.898103,,Preservation,No,Non Prevailing Wage,0,10,0,0,0,0,0,0,6,4,0,0,0,0,0,10,10,10 +67752,JENNINGS TERRACE GARDENS HDFC.GHPP.FY19,Multifamily Finance Program,06/19/2019,,88703,759,JENNINGS STREET,Bronx,10459,2029620054,2010205,BX-03,16,151,BX35,40.831877,-73.89767,40.83213,-73.89767,,Preservation,No,Non Prevailing Wage,0,15,0,0,0,0,0,2,9,4,0,0,0,0,0,15,15,15 +67752,JENNINGS TERRACE GARDENS HDFC.GHPP.FY19,Multifamily Finance Program,06/19/2019,,88704,763,JENNINGS STREET,Bronx,10459,2029620052,2010204,BX-03,16,151,BX35,40.831891,-73.897529,40.83216,-73.897525,,Preservation,No,Non Prevailing Wage,0,16,0,0,0,0,0,3,9,4,0,0,0,0,0,16,16,16 +68640,15 CEDAR STREET APARTMENTS,Multifamily Incentives Program,06/19/2019,,971685,15,CEDAR STREET,Brooklyn,11221,3032260037,3426252,BK-04,34,393,BK78,40.696225,-73.928975,40.69639,-73.929105,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,0,8,0,0,0,0,0,8,0,8,25 +68654,CONFIDENTIAL,Homeowner Assistance Program,06/19/2019,06/19/2019,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/19/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +68679,CONFIDENTIAL,Homeowner Assistance Program,06/19/2019,,,----,----,Staten Island,,,,SI-01,49,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68715,CONFIDENTIAL,Homeowner Assistance Program,06/19/2019,,,----,----,Queens,,,,QN-13,23,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68717,CONFIDENTIAL,Homeowner Assistance Program,06/19/2019,,,----,----,Queens,,,,QN-10,28,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68638,14-45 31ST AVENUE,Multifamily Incentives Program,06/18/2019,08/05/2019,990456,14-45,31 AVENUE,Queens,11106,4005340106,4618780,QN-01,22,79,QN71,40.76812,-73.931682,40.76782,-73.930205,08/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,18 +68639,2825 SNYDER AVENUE,Multifamily Incentives Program,06/18/2019,10/07/2019,980688,2825,SNYDER AVENUE,Brooklyn,11226,3051080056,3117343,BK-17,40,824,BK95,40.648859,-73.95099,40.64912,-73.950395,10/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,0,2,0,0,0,0,0,3,0,3,10 +65275,1025-1027 LEGGETT AVE HDFC.PLP.FY19,Multifamily Finance Program,06/17/2019,,91400,1025,LEGGETT AVENUE,Bronx,10455,2027200041,2005724,BX-02,8,85,BX33,40.813912,-73.899533,40.81389,-73.899248,,Preservation,No,Non Prevailing Wage,0,43,4,0,0,1,0,36,9,3,0,0,0,0,0,48,48,48 +68635,2823 SNYDER AVENUE,Multifamily Incentives Program,06/17/2019,10/07/2019,980689,2823,SNYDER AVENUE,Brooklyn,11226,3051080057,3117344,BK-17,40,824,BK95,40.648859,-73.951004,40.64912,-73.950482,10/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +68637,76 PALMETTO STREET APARTMENTS,Multifamily Incentives Program,06/17/2019,07/26/2019,982074,76,PALMETTO STREET,Brooklyn,11221,3033490020,3076559,BK-04,34,399,BK78,40.69133,-73.919078,40.69119,-73.918873,07/26/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,2,1,0,0,0,0,3,0,3,8 +68653,CONFIDENTIAL,Homeowner Assistance Program,06/17/2019,06/17/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,06/17/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67685,601 WEST 29TH STREET,Multifamily Incentives Program,06/14/2019,,990673,601,WEST 29 STREET,Manhattan,10001,1006750012,1012272,MN-04,3,99,MN13,40.752825,-74.004681,40.75323,-74.004988,,New Construction,No,Non Prevailing Wage,0,94,94,46,0,0,37,159,38,0,0,0,0,0,234,0,234,931 +68633,1207 BROADWAY,Multifamily Incentives Program,06/14/2019,07/08/2019,975936,1207,BROADWAY,Brooklyn,11221,3032730005,3414095,BK-04,34,395,BK78,40.692151,-73.9267,40.6923,-73.926484,07/08/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,7 +68634,2325 BEAUMONT AVENUE APARTMENTS,Multifamily Incentives Program,06/14/2019,,979514,2325,BEAUMONT AVENUE,Bronx,10458,2030890051,2129373,BX-06,15,391,BX06,40.852997,-73.885051,40.85311,-73.885268,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,2,3,0,0,0,0,0,6,0,6,17 +68688,CONFIDENTIAL,Homeowner Assistance Program,06/14/2019,,,----,----,Queens,,,,QN-07,19,,,,,,,,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68719,CONFIDENTIAL,Homeowner Assistance Program,06/14/2019,12/07/2019,,----,----,Brooklyn,,,,BK-05,37,,,,,,,12/07/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +63252,37 AVENUE B HDFC.HRP.FY19,Multifamily Finance Program,06/13/2019,,6478,37,AVENUE B,Manhattan,10009,1003860001,1004610,MN-03,2,2601,MN28,40.72276,-73.982889,40.72269,-73.982629,,Preservation,No,Non Prevailing Wage,4,2,0,0,0,0,0,0,3,3,0,0,0,0,6,0,6,6 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3490,2232,ADAM C POWELL BOULEVARD,Manhattan,10027,1019370036,1081613,MN-10,9,226,MN03,40.813095,-73.945331,40.81334,-73.945591,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,3,8,7,5,1,0,0,24,0,0,0,0,0,24,0,24,24 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3495,2247,ADAM C POWELL BOULEVARD,Manhattan,10027,1019170002,1058139,MN-10,9,226,MN03,40.813539,-73.94498,40.81342,-73.944622,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,2,2,9,3,0,4,4,4,4,0,0,0,0,16,0,16,16 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3499,2251,ADAM C POWELL BOULEVARD,Manhattan,10027,1019170004,1058141,MN-10,9,226,MN03,40.813663,-73.94489,40.81352,-73.944554,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,3,0,6,0,0,0,9,0,0,0,0,0,0,9,0,9,9 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3500,2252,ADAM C POWELL BOULEVARD,Manhattan,10027,1019380033,1058782,MN-10,9,226,MN03,40.813734,-73.944861,40.81389,-73.94524,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,5,1,1,2,0,0,0,9,0,0,0,0,0,9,0,9,9 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3501,2253,ADAM C POWELL BOULEVARD,Manhattan,10027,1019170064,1075465,MN-10,9,226,MN03,40.813726,-73.944843,40.81356,-73.944471,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,2,1,4,3,0,0,2,8,0,0,0,0,0,10,0,10,10 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3502,2254,ADAM C POWELL BOULEVARD,Manhattan,10027,1019380034,1058783,MN-10,9,226,MN03,40.813797,-73.944817,40.81395,-73.945196,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,3,2,3,1,0,0,0,9,0,0,0,0,0,9,0,9,9 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3503,2256,ADAM C POWELL BOULEVARD,Manhattan,10027,1019380035,1058784,MN-10,9,226,MN03,40.813857,-73.94477,40.81401,-73.945153,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,4,0,3,1,0,0,0,8,0,0,0,0,0,8,0,8,8 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3504,2258,ADAM C POWELL BOULEVARD,Manhattan,10027,1019380036,1058785,MN-10,9,226,MN03,40.81392,-73.944727,40.81407,-73.945106,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,0,4,4,1,0,0,0,0,9,0,0,0,0,9,0,9,9 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3536,2300,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410029,1058892,MN-10,9,228,MN03,40.81541,-73.943635,40.81561,-73.943985,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,4,0,3,2,0,1,0,2,6,0,0,0,0,9,0,9,9 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3538,2302,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410030,1058893,MN-10,9,228,MN03,40.815462,-73.943598,40.81567,-73.943938,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,5,0,1,2,0,0,1,0,7,0,0,0,0,8,0,8,8 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3540,2304,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410031,1058894,MN-10,9,228,MN03,40.815515,-73.943559,40.81573,-73.943891,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,1,1,5,3,0,0,2,4,4,0,0,0,0,10,0,10,10 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3542,2306,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410032,1058895,MN-10,9,228,MN03,40.815567,-73.943522,40.81579,-73.943847,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,1,1,8,0,0,0,2,7,1,0,0,0,0,10,0,10,10 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3544,2308,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410033,1058896,MN-10,9,228,MN03,40.815619,-73.943483,40.81587,-73.943793,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,3,2,8,3,0,0,12,4,0,0,0,0,0,16,0,16,16 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3546,2310,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410034,1058897,MN-10,9,228,MN03,40.815671,-73.943446,40.81596,-73.943728,06/13/2019,Preservation,Yes,Non Prevailing Wage,2,1,0,5,2,0,0,3,1,4,2,0,0,0,10,0,10,10 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,3613,2484,ADAM C POWELL BOULEVARD,Manhattan,10030,1020300031,1060457,MN-10,9,232,MN03,40.821213,-73.939399,40.82134,-73.939792,06/13/2019,Preservation,Yes,Non Prevailing Wage,5,0,0,6,11,1,0,0,15,8,0,0,0,0,23,0,23,23 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,40588,204,WEST 133 STREET,Manhattan,10030,1019380039,1058787,MN-10,9,226,MN03,40.814217,-73.94516,40.81412,-73.945518,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,9,5,7,0,1,1,9,12,0,0,0,0,0,22,0,22,22 +68107,HP ACP HDFC.HPO.FY19 (BLACK SPRUCE),Multifamily Finance Program,06/13/2019,06/13/2019,40589,206,WEST 133 STREET,Manhattan,10030,1019380041,1058788,MN-10,9,226,MN03,40.814236,-73.945203,40.81417,-73.945637,06/13/2019,Preservation,Yes,Non Prevailing Wage,0,4,3,13,2,0,2,8,12,0,0,0,0,0,22,0,22,22 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,8230,4221,BROADWAY,Manhattan,10033,1021760054,1064270,MN-12,10,265,MN36,40.849035,-73.936977,40.84921,-73.937299,06/13/2019,Preservation,Yes,Non Prevailing Wage,2,12,22,8,4,1,0,1,12,34,2,0,0,0,49,0,49,49 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,27927,1091,ST NICHOLAS AVENUE,Manhattan,10032,1021220084,1076743,MN-12,7,245,MN36,40.838137,-73.939915,40.83844,-73.940272,06/13/2019,Preservation,Yes,Non Prevailing Wage,1,10,32,7,5,1,0,39,17,0,0,0,0,0,56,0,56,56 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,27942,1228,ST NICHOLAS AVENUE,Manhattan,10032,1021280008,1063063,MN-12,10,253,MN36,40.843198,-73.938193,40.84317,-73.937763,06/13/2019,Preservation,Yes,Non Prevailing Wage,1,19,19,4,0,1,0,11,13,20,0,0,0,0,44,0,44,44 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,27944,1245,ST NICHOLAS AVENUE,Manhattan,10032,1021410048,1063468,MN-12,10,253,MN36,40.843656,-73.937882,40.84381,-73.938164,06/13/2019,Preservation,Yes,Non Prevailing Wage,3,11,17,4,3,1,0,0,2,34,3,0,0,0,39,0,39,39 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,27964,1320,ST NICHOLAS AVENUE,Manhattan,10033,1021330030,1063226,MN-12,10,261,MN36,40.846194,-73.936,40.84616,-73.935635,06/13/2019,Preservation,Yes,Non Prevailing Wage,4,16,17,13,4,1,4,18,32,1,0,0,0,0,55,0,55,55 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,28040,1621,ST NICHOLAS AVENUE,Manhattan,10040,1021690034,1064029,MN-12,10,279,MN35,40.855656,-73.929112,40.85587,-73.929343,06/13/2019,Preservation,Yes,Non Prevailing Wage,2,17,10,8,1,0,0,0,23,15,0,0,0,0,38,0,38,38 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,28043,600,WEST 192 STREET,Manhattan,10040,1021690029,1064028,MN-12,10,279,MN35,40.856238,-73.928866,40.85612,-73.929166,06/13/2019,Preservation,Yes,Non Prevailing Wage,1,19,12,5,1,0,0,2,16,20,0,0,0,0,38,0,38,38 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,43035,545,WEST 164 STREET,Manhattan,10032,1021220088,1062933,MN-12,7,245,MN36,40.837926,-73.940482,40.83814,-73.940345,06/13/2019,Preservation,Yes,Non Prevailing Wage,11,26,9,4,1,1,0,1,6,34,11,0,0,0,52,0,52,52 +68269,HP WH HDFC.HPO.FY19 (BLACK SPRUCE - WASHINGTON HEIGHTS),Multifamily Finance Program,06/13/2019,06/13/2019,43265,610,WEST 174 STREET,Manhattan,10033,1021430009,1063523,MN-12,10,263,MN36,40.844979,-73.937516,40.84486,-73.937816,06/13/2019,Preservation,Yes,Non Prevailing Wage,1,3,19,23,2,1,5,28,15,1,0,0,0,0,49,0,49,49 +68631,378 HARMAN STREET,Multifamily Incentives Program,06/13/2019,07/17/2019,978753,378,HARMAN STREET,Brooklyn,11237,3032900015,3075152,BK-04,37,443,BK77,40.701603,-73.91719,40.70144,-73.917003,07/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,8 +68632,GLORIA WILLOUGHBY APARTMENTS,Multifamily Incentives Program,06/13/2019,,396140,1129,WILLOUGHBY AVENUE,Brooklyn,11237,,,BK-04,34,429,BK77,40.701735,-73.92529,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,1,4,5,0,0,0,0,0,10,0,10,32 +68685,CONFIDENTIAL,Homeowner Assistance Program,06/13/2019,,,----,----,Bronx,,,,BX-11,13,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68695,CONFIDENTIAL,Homeowner Assistance Program,06/13/2019,,,----,----,Bronx,,,,BX-12,12,,,,,,,,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67399,1425 MACOMBS ROAD.HPO.FY19,Multifamily Finance Program,06/12/2019,06/12/2019,88783,1425,JEROME AVENUE,Bronx,10452,2028570081,2008309,BX-04,16,219,BX26,40.84114,-73.917689,40.84109,-73.917938,06/12/2019,Preservation,Yes,Non Prevailing Wage,3,10,24,0,0,1,0,28,10,0,0,0,0,0,38,0,38,38 +67464,36-38 WEST GUN HILL ROAD.HPO.FY19,Multifamily Finance Program,06/12/2019,06/12/2019,122130,38,WEST GUN HILL ROAD,Bronx,10467,2033240059,2017688,BX-07,11,421,BX43,40.883335,-73.882966,40.88315,-73.882847,06/12/2019,Preservation,Yes,Non Prevailing Wage,2,11,31,0,0,1,0,28,13,4,0,0,0,0,45,0,45,45 +67606,LANGSAM 15 - 396-400 EAST 199TH STREET.HPO.FY19,Multifamily Finance Program,06/12/2019,06/12/2019,67206,396,EAST 199 STREET,Bronx,10458,2032790034,2016415,BX-07,15,40702,BX05,40.867005,-73.884611,40.86695,-73.884882,06/12/2019,Preservation,Yes,Non Prevailing Wage,0,4,26,0,0,1,1,29,1,0,0,0,0,0,31,0,31,31 +67606,LANGSAM 15 - 396-400 EAST 199TH STREET.HPO.FY19,Multifamily Finance Program,06/12/2019,06/12/2019,120682,2843,WEBSTER AVENUE,Bronx,10458,2032790035,2016416,BX-07,15,40702,BX05,40.866665,-73.88468,40.86682,-73.884799,06/12/2019,Preservation,Yes,Non Prevailing Wage,0,7,23,0,0,0,5,20,5,0,0,0,0,0,30,0,30,30 +67607,LANGSAM 16 -19-25 EAST 213TH STREET.HPO.FY19,Multifamily Finance Program,06/12/2019,06/12/2019,67814,19,EAST 213 STREET,Bronx,10467,2033290064,2017846,BX-07,11,431,BX43,40.884815,-73.878338,40.88501,-73.878265,06/12/2019,Preservation,Yes,Non Prevailing Wage,0,10,55,0,0,1,24,24,18,0,0,0,0,0,66,0,66,66 +68630,1183 GATES AVENUE,Multifamily Incentives Program,06/12/2019,07/03/2019,988276,1183,GATES AVENUE,Brooklyn,11221,3033310021,3076251,BK-04,34,399,BK78,40.691839,-73.919777,40.69201,-73.919954,07/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,3,0,3,10 +68652,CONFIDENTIAL,Homeowner Assistance Program,06/12/2019,06/12/2019,,----,----,Bronx,,,,BX-12,12,,,,,,,06/12/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +68674,CONFIDENTIAL,Homeowner Assistance Program,06/12/2019,,,----,----,Queens,,,,QN-14,31,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68628,564 19TH STREET,Multifamily Incentives Program,06/11/2019,,990664,564,19 STREET,Brooklyn,11218,3008900015,,BK-07,39,1502,BK40,40.655252,-73.980297,40.6551,-73.980513,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +68629,804 JEFFERSON AVENUE,Multifamily Incentives Program,06/11/2019,10/15/2019,948051,804,JEFFERSON AVENUE,Brooklyn,11221,3016580024,3426246,BK-03,41,383,BK35,40.686139,-73.925138,40.68591,-73.925081,10/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,0,9,0,0,0,0,0,9,0,9,28 +68667,CONFIDENTIAL,Homeowner Assistance Program,06/11/2019,,,----,----,Brooklyn,,,,BK-16,41,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68686,CONFIDENTIAL,Homeowner Assistance Program,06/11/2019,,,----,----,Bronx,,,,BX-11,13,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68708,CONFIDENTIAL,Homeowner Assistance Program,06/11/2019,,,----,----,Bronx,,,,BX-05,15,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68625,3206 GLENWOOD ROAD,Multifamily Incentives Program,06/10/2019,12/17/2019,985839,3206,GLENWOOD ROAD,Brooklyn,11210,,,BK-17,45,786,BK42,40.63412,-73.945676,,,12/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,9 +68626,3208 GLENWOOD ROAD,Multifamily Incentives Program,06/10/2019,,988077,3208,GLENWOOD ROAD,Brooklyn,11210,3075600041,3205965,BK-17,45,786,BK42,40.634123,-73.945661,40.63388,-73.945481,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,9 +68669,CONFIDENTIAL,Homeowner Assistance Program,06/10/2019,,,----,----,Bronx,,,,BX-11,13,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +68624,461 WINTHROP STREET,Multifamily Incentives Program,06/07/2019,,987192,461,WINTHROP STREET,Brooklyn,11203,3048110202,,BK-09,40,810,BK60,40.657478,-73.94451,40.65771,-73.944698,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,20 +68681,CONFIDENTIAL,Homeowner Assistance Program,06/07/2019,,,----,----,Brooklyn,,,,BK-17,45,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68712,CONFIDENTIAL,Homeowner Assistance Program,06/07/2019,,,----,----,Bronx,,,,BX-11,12,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67829,1 BELL SLIP,Multifamily Incentives Program,06/06/2019,,990653,45,COMMERCIAL STREET,Brooklyn,11222,3024720070,,BK-01,33,563,BK76,40.736516,-73.958092,40.7369,-73.958182,,New Construction,No,Non Prevailing Wage,0,0,42,0,65,0,60,28,19,0,0,0,0,0,107,0,107,414 +68622,6 HAVENS PLACE APARTMENTS,Multifamily Incentives Program,06/06/2019,,988069,6,HAVENS PLACE,Brooklyn,11233,3015740019,,BK-16,37,367,BK79,40.676925,-73.904293,40.67695,-73.904419,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,0,2,0,0,0,0,2,0,2,7 +68623,671 LIBERTY AVENUE,Multifamily Incentives Program,06/06/2019,,979030,671,LIBERTY AVENUE,Brooklyn,11207,3039680037,3414602,BK-05,37,1170,BK82,40.676112,-73.885035,40.67631,-73.885139,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,1,1,0,0,0,0,0,3,0,3,10 +68620,2442 OCEAN AVENUE APARTMENTS,Multifamily Incentives Program,06/05/2019,,979689,2442,OCEAN AVENUE,Brooklyn,11229,3072980045,3426041,BK-15,48,560,BK44,40.602281,-73.951968,40.60195,-73.952339,,New Construction,No,Non Prevailing Wage,0,0,0,0,32,0,8,13,11,0,0,0,0,0,32,0,32,105 +68621,67 STANHOPE STREET APARTMENTS,Multifamily Incentives Program,06/05/2019,,980693,67,STANHOPE STREET,Brooklyn,11221,3032540065,3074087,BK-04,34,421,BK78,40.696256,-73.924813,40.69638,-73.925026,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,9 +68683,CONFIDENTIAL,Homeowner Assistance Program,06/05/2019,,,----,----,Bronx,,,,BX-12,12,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68710,CONFIDENTIAL,Homeowner Assistance Program,06/05/2019,,,----,----,Bronx,,,,BX-11,13,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68618,1294 PARK PLACE APARTMENTS,Multifamily Incentives Program,06/04/2019,,351469,1294,PARK PLACE,Brooklyn,11213,3013710030,3036430,BK-08,36,345,BK61,40.67258,-73.934656,40.67227,-73.934606,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68619,1517 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,06/04/2019,08/16/2019,990883,1517,NEW YORK AVENUE,Brooklyn,11210,,,BK-17,45,784,BK91,40.635638,-73.945026,,,08/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68253,CONFIDENTIAL,Homeowner Assistance Program,06/03/2019,10/24/2019,,----,----,Brooklyn,,,,BK-16,42,,,,,,,10/24/2019,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,0,4,0,0,0,0,0,4,4,4 +68616,1519 NEW YORK AVENUE,Multifamily Incentives Program,06/03/2019,08/16/2019,989485,1519,NEW YORK AVENUE,Brooklyn,11210,3050080031,3114074,BK-17,45,784,BK91,40.635602,-73.945022,40.63572,-73.944719,08/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68617,3839 BRONXWOOD AVENUE,Multifamily Incentives Program,06/03/2019,06/28/2019,990335,3839,BRONXWOOD AVENUE,Bronx,10469,2046790082,2058604,BX-12,12,396,BX44,40.882937,-73.856408,40.88303,-73.856694,06/28/2019,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,0,1,0,0,0,0,2,0,2,6 +68716,CONFIDENTIAL,Homeowner Assistance Program,06/03/2019,,,----,----,Bronx,,,,BX-12,12,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67791,308 LIVINGSTON STREET,Multifamily Incentives Program,05/31/2019,,990486,308,LIVINGSTON STREET,Brooklyn,11217,3001660025,3000507,BK-02,33,37,BK38,40.68827,-73.982252,40.6881,-73.982396,,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,7,2,0,0,0,0,0,9,0,9,160 +68615,244-246 HOWARD AVENUE APARTMENTS,Multifamily Incentives Program,05/31/2019,,314073,246,HOWARD AVENUE,Brooklyn,11233,3015240032,3041433,BK-03,41,379,BK35,40.679577,-73.919348,40.67958,-73.919694,,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,1,2,4,0,0,0,0,0,7,0,7,22 +68672,CONFIDENTIAL,Homeowner Assistance Program,05/31/2019,,,----,----,Bronx,,,,BX-12,12,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68675,CONFIDENTIAL,Homeowner Assistance Program,05/31/2019,,,----,----,Brooklyn,,,,BK-17,45,,,,,,,,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +68536,CONFIDENTIAL,Homeowner Assistance Program,05/30/2019,05/30/2019,,----,----,Brooklyn,,,,BK-18,46,,,,,,,05/30/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66766,30 KENT STREET,Multifamily Incentives Program,05/29/2019,,984244,30,KENT STREET,Brooklyn,11222,3025560045,3336994,BK-01,33,565,BK76,40.73035,-73.960177,40.73007,-73.960069,,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,1,2,3,0,0,0,0,0,6,0,6,80 +68073,3815 PUTNAM AVENUE WEST.HPO.FY19,Multifamily Finance Program,05/29/2019,,831979,3815,PUTNAM AVENUE WEST,Bronx,,,,BX-08,11,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,88,1,0,1,0,13,77,0,0,0,0,0,90,0,90,90 +68534,CONFIDENTIAL,Homeowner Assistance Program,05/29/2019,05/29/2019,,----,----,Brooklyn,,,,BK-13,47,,,,,,,05/29/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68677,CONFIDENTIAL,Homeowner Assistance Program,05/29/2019,,,----,----,Brooklyn,,,,BK-17,45,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68666,CONFIDENTIAL,Homeowner Assistance Program,05/28/2019,,,----,----,Brooklyn,,,,BK-18,46,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +68614,801 DRIGGS AVENUE APARTMENTS,Multifamily Incentives Program,05/24/2019,,982091,801,DRIGGS AVENUE,Brooklyn,11211,3024460072,3063457,BK-01,34,523,BK73,40.711076,-73.961585,40.71098,-73.96134,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68537,CONFIDENTIAL,Homeowner Assistance Program,05/23/2019,05/23/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,05/23/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65280,9 SHERMAN ASSOCIATES LLC.PLP.FY19,Multifamily Finance Program,05/22/2019,,27617,9,SHERMAN AVENUE,Manhattan,10040,1021740008,1064155,MN-12,10,285,MN35,40.862427,-73.929087,40.86222,-73.928816,,Preservation,No,Non Prevailing Wage,5,42,37,7,0,1,29,44,16,3,0,0,0,0,92,0,92,92 +68255,CONFIDENTIAL,Homeowner Assistance Program,05/22/2019,,,----,----,Brooklyn,,,,BK-03,41,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +68538,CONFIDENTIAL,Homeowner Assistance Program,05/22/2019,05/22/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,05/22/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68612,32-27 35TH STREET APARTMENTS,Multifamily Incentives Program,05/21/2019,08/15/2019,984675,32-27,35 STREET,Queens,11106,4006460027,4009691,QN-01,22,59,QN70,40.760089,-73.922496,40.75964,-73.922453,08/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,2,0,0,0,0,0,0,0,2,0,2,6 +68613,716 BEACH AVENUE APARTMENTS,Multifamily Incentives Program,05/21/2019,07/11/2019,982222,716,BEACH AVENUE,Bronx,10473,2035980013,2128793,BX-09,18,38,BX09,40.819499,-73.863467,40.81978,-73.86325,07/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +68610,1538 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,05/20/2019,,983875,1538,NEW YORK AVENUE,Brooklyn,11210,3050070062,3114052,BK-17,45,786,BK42,40.635275,-73.945008,40.63522,-73.945314,,New Construction,No,Non Prevailing Wage,0,0,0,0,11,0,0,8,3,0,0,0,0,0,11,0,11,36 +68611,96 HIMROD STREET,Multifamily Incentives Program,05/20/2019,06/19/2019,971363,96,HIMROD STREET,Brooklyn,11221,3032750036,,BK-04,34,421,BK78,40.696129,-73.923739,40.69607,-73.923454,06/19/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,7 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40701,107,WEST 135 STREET,Manhattan,10030,1019200025,1058274,MN-10,9,228,MN03,40.814331,-73.941367,40.81467,-73.941457,,Preservation,No,Non Prevailing Wage,0,7,11,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40702,111,WEST 135 STREET,Manhattan,10030,1019200023,1058273,MN-10,9,228,MN03,40.814383,-73.941493,40.81472,-73.941587,,Preservation,No,Non Prevailing Wage,0,6,12,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40703,115,WEST 135 STREET,Manhattan,10030,1019200022,1058272,MN-10,9,228,MN03,40.814438,-73.941616,40.81477,-73.94171,,Preservation,No,Non Prevailing Wage,0,4,14,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40704,119,WEST 135 STREET,Manhattan,10030,1019200020,1058271,MN-10,9,228,MN03,40.81449,-73.941742,40.81483,-73.941836,,Preservation,No,Non Prevailing Wage,0,5,19,0,0,0,1,13,10,0,0,0,0,0,24,0,24,24 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40705,123,WEST 135 STREET,Manhattan,10030,1019200018,1058270,MN-10,9,228,MN03,40.814545,-73.941869,40.81488,-73.941966,,Preservation,No,Non Prevailing Wage,0,4,18,0,0,0,0,12,10,0,0,0,0,0,22,0,22,22 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40706,127,WEST 135 STREET,Manhattan,10030,1019200017,1058269,MN-10,9,228,MN03,40.814597,-73.941995,40.81493,-73.942092,,Preservation,No,Non Prevailing Wage,0,2,20,0,0,0,0,12,10,0,0,0,0,0,22,0,22,22 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40707,131,WEST 135 STREET,Manhattan,10030,1019200015,1058268,MN-10,9,228,MN03,40.814649,-73.942121,40.81499,-73.942222,,Preservation,No,Non Prevailing Wage,1,3,18,0,0,0,0,12,9,0,0,0,0,1,22,0,22,22 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40708,135,WEST 135 STREET,Manhattan,10030,1019200014,1058267,MN-10,9,228,MN03,40.814704,-73.942248,40.81504,-73.942349,,Preservation,No,Non Prevailing Wage,0,1,17,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40709,139,WEST 135 STREET,Manhattan,10030,1019200012,1058266,MN-10,9,228,MN03,40.814756,-73.942371,40.81509,-73.942475,,Preservation,No,Non Prevailing Wage,0,1,17,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68585,WEST 135TH STREET APARTMENTS,Multifamily Finance Program,05/19/2019,,40710,143,WEST 135 STREET,Manhattan,10030,1019200010,1058265,MN-10,9,228,MN03,40.814938,-73.9428,40.81514,-73.942598,,Preservation,No,Non Prevailing Wage,0,2,16,0,0,0,1,1,10,6,0,0,0,0,18,0,18,18 +68256,CONFIDENTIAL,Homeowner Assistance Program,05/17/2019,08/29/2019,,----,----,Brooklyn,,,,BK-03,36,,,,,,,08/29/2019,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +68528,CONFIDENTIAL,Homeowner Assistance Program,05/17/2019,05/17/2019,,----,----,Queens,,,,QN-08,23,,,,,,,05/17/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68608,100 HIMROD STREET,Multifamily Incentives Program,05/17/2019,06/19/2019,969279,100,HIMROD STREET,Brooklyn,11221,3032750039,,BK-04,34,421,BK78,40.696195,-73.92367,40.69617,-73.923353,06/19/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68609,98 HIMROD STREET,Multifamily Incentives Program,05/17/2019,06/19/2019,971364,98,HIMROD STREET,Brooklyn,11221,3032750037,3425765,BK-04,34,421,BK78,40.696162,-73.923706,40.69612,-73.923407,06/19/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +65215,RIVER TERRACE.HRP.FY19,Multifamily Finance Program,05/16/2019,,27196,156-20,RIVERSIDE DRIVE WEST,Manhattan,10032,1021340206,1063278,MN-12,7,241,MN36,40.835523,-73.948764,40.83545,-73.948138,,Preservation,No,Non Prevailing Wage,16,310,104,0,0,1,0,116,248,67,0,0,0,0,0,431,431,431 +68606,319 BROADWAY APARTMENTS,Multifamily Incentives Program,05/16/2019,,214128,319,BROADWAY,Brooklyn,11211,3024610020,3063587,BK-01,34,527,BK73,40.708094,-73.956937,40.70829,-73.956815,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +68607,88 WALTON STREET,Multifamily Incentives Program,05/16/2019,05/17/2019,387822,90,WALTON STREET,Brooklyn,11206,3022500010,,BK-01,33,507,BK75,40.702565,-73.948736,40.70228,-73.948711,05/17/2019,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,1,2,3,0,0,0,0,0,6,0,6,27 +68531,CONFIDENTIAL,Homeowner Assistance Program,05/15/2019,05/15/2019,,----,----,Manhattan,,,,MN-03,2,,,,,,,05/15/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68535,CONFIDENTIAL,Homeowner Assistance Program,05/15/2019,05/15/2019,,----,----,Staten Island,,,,SI-02,50,,,,,,,05/15/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68605,1052 GREENE AVENUE APARTMENTS,Multifamily Incentives Program,05/14/2019,,303718,1052,GREENE AVENUE,Brooklyn,11221,3016230033,3044195,BK-03,41,387,BK35,40.691329,-73.925619,40.6911,-73.925634,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,20 +68604,25-40 31ST STREET APARTMENTS,Multifamily Incentives Program,05/13/2019,,980038,25-40,31 STREET,Queens,11102,4005980042,4007828,QN-01,22,71,QN71,40.76966,-73.918557,40.76961,-73.919019,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,5,16 +68602,2250 CLARENDON ROAD,Multifamily Incentives Program,05/10/2019,,220772,2250,CLARENDON ROAD,Brooklyn,11226,3051870032,3119614,BK-14,45,790,BK95,40.642793,-73.955953,40.64254,-73.955661,,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,1,6,0,0,0,0,0,7,0,7,22 +68603,KNICKERBOCKER LOFTS,Multifamily Incentives Program,05/10/2019,,972819,783,KNICKERBOCKER AVENUE,Brooklyn,11207,3034130006,3078908,BK-04,37,437,BK77,40.69292,-73.907984,40.69306,-73.90767,,New Construction,No,Non Prevailing Wage,0,0,0,0,12,0,3,3,6,0,0,0,0,0,12,0,12,38 +67446,LANGSAM 1 - 135 W 183RD STREET.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,121225,135,WEST 183 STREET,Bronx,10453,2032250052,2014925,BX-07,14,255,BX30,40.860513,-73.910727,40.86066,-73.910427,05/07/2019,Preservation,Yes,Non Prevailing Wage,1,5,45,0,0,1,7,31,6,6,2,0,0,0,52,0,52,52 +67448,LANGSAM 3 - 1565-1573 WHITE PLAINS.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,123085,1565,WHITE PLAINS ROAD,Bronx,10462,2039230009,2028670,BX-09,18,21601,BX08,40.839549,-73.863864,40.83972,-73.864185,05/07/2019,Preservation,Yes,Non Prevailing Wage,2,12,34,0,0,1,12,32,5,0,0,0,0,0,49,0,49,49 +67449,LANGSAM 4 - 1975 DAVIDSON AVENUE.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,60449,1975,DAVIDSON AVENUE,Bronx,10453,2028700061,2008637,BX-05,14,243,BX36,40.852338,-73.909864,40.85221,-73.910279,05/07/2019,Preservation,Yes,Non Prevailing Wage,1,10,22,0,0,1,2,19,9,3,1,0,0,0,34,0,34,34 +67450,LANGSAM 5 - 2015 UNIVERSITY AVENUE.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,116888,2015,DR M L KING JR BOULEVARD,Bronx,10453,2032160048,2014696,BX-05,14,24502,BX36,40.855322,-73.910742,40.85554,-73.91098,05/07/2019,Preservation,Yes,Non Prevailing Wage,1,14,48,0,0,0,0,27,14,21,1,0,0,0,63,0,63,63 +67451,LANGSAM 6 - 2733 MORRIS AVENUE.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,97612,2733,MORRIS AVENUE,Bronx,10468,2033170036,2017489,BX-07,14,40304,BX28,40.868281,-73.895347,40.86871,-73.895336,05/07/2019,Preservation,Yes,Non Prevailing Wage,0,11,26,0,0,0,0,25,11,0,1,0,0,0,37,0,37,37 +67571,LANGSAM 8 - 1411 TOWNSEND.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,115640,1411,TOWNSEND AVENUE,Bronx,10452,2028430024,2008095,BX-04,16,223,BX63,40.840212,-73.916562,40.84053,-73.916623,05/07/2019,Preservation,Yes,Non Prevailing Wage,1,11,47,0,0,0,0,18,29,12,0,0,0,0,59,0,59,59 +67573,LANGSAM 7 - 1249 TINTON AVENUE.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,65205,760,EAST 169 STREET,Bronx,10456,2026630034,2004754,BX-03,17,151,BX35,40.830905,-73.899879,40.83068,-73.899966,05/07/2019,Preservation,Yes,Non Prevailing Wage,0,5,8,0,0,0,0,8,5,0,0,0,0,0,13,0,13,13 +67605,LANGSAM 14 -464 EAST 159TH STREET.HPO.FY19,Multifamily Finance Program,05/07/2019,05/07/2019,64293,464,EAST 159 STREET,Bronx,10451,2023800048,2001467,BX-01,17,69,BX34,40.822286,-73.91239,40.82209,-73.912452,05/07/2019,Preservation,Yes,Non Prevailing Wage,0,15,15,0,0,1,1,24,6,0,0,0,0,0,31,0,31,31 +65277,HP PARK LANE PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,05/06/2019,05/06/2019,90996,1965,LAFAYETTE AVENUE,Bronx,10473,2036720001,2022645,BX-09,18,16,BX09,40.822205,-73.856893,40.82262,-73.856777,05/06/2019,Preservation,Yes,Non Prevailing Wage,135,196,4,0,0,1,39,102,160,35,0,0,0,0,336,0,336,353 +65212,645 GATES AVENUE,Multifamily Finance Program,05/03/2019,,985707,645,GATES AVENUE,Brooklyn,11221,3018110019,3341860,BK-03,36,277,BK35,40.687345,-73.940865,40.68776,-73.940108,,New Construction,No,Non Prevailing Wage,0,18,27,44,0,1,14,41,22,12,0,0,0,1,90,0,90,90 +68527,CONFIDENTIAL,Homeowner Assistance Program,05/02/2019,05/02/2019,,----,----,Bronx,,,,BX-01,17,,,,,,,05/02/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68523,CONFIDENTIAL,Homeowner Assistance Program,05/01/2019,05/01/2019,,----,----,Queens,,,,QN-13,31,,,,,,,05/01/2019,New Construction,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68600,141 UTICA AVENUE APARTMENTS,Multifamily Incentives Program,05/01/2019,,989185,141,UTICA AVENUE,Brooklyn,11213,3013610012,3426589,BK-08,36,347,BK61,40.673925,-73.930625,40.67391,-73.930372,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,0,1,4,0,0,0,0,5,0,5,16 +68601,STANHOPE ESTATES APARTMENTS,Multifamily Incentives Program,05/01/2019,,982717,85,STANHOPE STREET,Brooklyn,11221,3032540055,,BK-04,34,421,BK78,40.69661,-73.924467,40.69688,-73.924535,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,14 +68601,STANHOPE ESTATES APARTMENTS,Multifamily Incentives Program,05/01/2019,,982718,83,STANHOPE STREET,Brooklyn,11221,3032540056,,BK-04,34,421,BK78,40.696568,-73.924506,40.69682,-73.924589,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,2,0,0,0,0,0,0,2,0,2,2 +67437,CASA RENACER HDFC.YR15.FY19,Multifamily Finance Program,04/30/2019,04/30/2019,837775,158,EAST 122 STREET,Manhattan,10035,1017700050,1087334,MN-11,8,196,MN34,40.802241,-73.938372,40.8021,-73.938603,04/30/2019,Preservation,Yes,Non Prevailing Wage,47,7,5,1,0,0,60,0,0,0,0,0,0,0,60,0,60,60 +68456,CONFIDENTIAL,Homeowner Assistance Program,04/30/2019,04/30/2019,,----,----,Queens,,,,QN-07,20,,,,,,,04/30/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68598,755 PARK AVENUE APARTMENTS,Multifamily Incentives Program,04/30/2019,11/22/2019,351312,755,PARK AVENUE,Brooklyn,11206,3017310025,,BK-03,36,257,BK75,40.698068,-73.945414,,,11/22/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,3,0,3,10 +68599,840 MORRIS PARK AVENUE APARTMENTS,Multifamily Incentives Program,04/30/2019,,989308,840,MORRIS PARK AVENUE,Bronx,10462,2040460007,2120287,BX-11,13,238,BX37,40.846208,-73.861334,40.84599,-73.861046,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,1,2,0,0,0,0,0,4,0,4,11 +67134,111 W 71ST STREET,Multifamily Incentives Program,04/29/2019,,34782,111,WEST 71 STREET,Manhattan,10023,1011430030,1029886,MN-07,6,157,MN14,40.776911,-73.979694,40.77706,-73.979535,,Preservation,No,Non Prevailing Wage,0,0,111,0,0,0,89,22,0,0,0,0,0,0,111,0,111,113 +68596,1503 JEFFERSON AVENUE APARTMENTS,Multifamily Incentives Program,04/29/2019,09/23/2019,983742,1503,JEFFERSON AVENUE,Brooklyn,11237,3033860041,3418120,BK-04,37,439,BK77,40.697012,-73.907672,40.69701,-73.907942,09/23/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,0,2,0,0,0,0,0,3,0,3,9 +68597,406 CORNELIA STREET APARTMENTS,Multifamily Incentives Program,04/29/2019,09/23/2019,983743,406,CORNELIA STREET,Brooklyn,11237,3033860141,3418118,BK-04,37,439,BK77,40.697402,-73.908425,40.69722,-73.908321,09/23/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,9 +66858,50 PENN,Multifamily Finance Program,04/26/2019,,982995,2628,FULTON STREET,Brooklyn,11207,3036690013,3083272,BK-05,37,1198,BK82,40.677123,-73.897742,40.67688,-73.897886,,New Construction,No,Non Prevailing Wage,22,66,87,42,0,1,56,96,48,18,0,0,0,0,218,0,218,218 +68460,CONFIDENTIAL,Homeowner Assistance Program,04/26/2019,04/26/2019,,----,----,Queens,,,,QN-03,21,,,,,,,04/26/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68595,57-27 GRANGER STREET APARTMENTS,Multifamily Incentives Program,04/26/2019,11/27/2019,973841,57-27,GRANGER STREET,Queens,11368,4019510017,4048013,QN-04,21,43702,QN25,40.7391,-73.85687,40.73924,-73.85662,11/27/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +65298,1675 WESTCHESTER,Multifamily Finance Program,04/25/2019,,985028,1675,WESTCHESTER AVENUE,Bronx,10472,2037800001,2025407,BX-09,18,64,BX08,40.83023,-73.872089,40.83054,-73.872403,,New Construction,No,Non Prevailing Wage,50,49,112,37,0,1,27,105,92,25,0,0,0,0,249,0,249,249 +66264,7-9 E 30TH STREET,Multifamily Incentives Program,04/25/2019,,986518,9-Jul,EAST 30 STREET,Manhattan,10016,1008600008,,MN-05,4,74,MN17,40.745685,-73.985813,40.74577,-73.985535,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,49 +68594,"HELUX, THE",Multifamily Incentives Program,04/24/2019,,33025,520,WEST 43 STREET,Manhattan,10036,1010710042,1085659,MN-04,3,129,MN15,40.760823,-73.996246,40.76054,-73.996379,,New Construction,No,Non Prevailing Wage,0,0,0,0,18,0,9,7,2,0,0,0,0,0,18,0,18,375 +68459,CONFIDENTIAL,Homeowner Assistance Program,04/22/2019,04/22/2019,,----,----,Queens,,,,QN-10,28,,,,,,,04/22/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985151,127,GATEWAY DRIVE,Brooklyn,11239,3044520156,,BK-05,42,1070,BK82,40.653855,-73.877747,40.65288,-73.876754,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985786,129,GATEWAY DRIVE,Brooklyn,11239,3044520155,,BK-05,42,1070,BK82,40.653836,-73.877743,40.65281,-73.876682,,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985789,392,SCHROEDERS AVENUE,Brooklyn,11239,3044520157,,BK-05,42,1070,BK82,40.653182,-73.876919,40.65298,-73.877038,,New Construction,No,Non Prevailing Wage,1,3,4,0,0,0,0,0,1,7,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985790,396,SCHROEDERS AVENUE,Brooklyn,11239,3044520158,,BK-05,42,1070,BK82,40.653215,-73.876847,40.65302,-73.876905,,New Construction,No,Non Prevailing Wage,2,1,5,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985791,398,SCHROEDERS AVENUE,Brooklyn,11239,3044520159,,BK-05,42,1070,BK82,40.653228,-73.876814,40.65307,-73.8768,,New Construction,No,Non Prevailing Wage,2,3,2,0,0,1,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985792,400,SCHROEDERS AVENUE,Brooklyn,11239,3044520160,,BK-05,42,1070,BK82,40.653245,-73.876778,40.6531,-73.876688,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985793,402,SCHROEDERS AVENUE,Brooklyn,11239,3044520161,,BK-05,42,1070,BK82,40.653258,-73.876746,40.65313,-73.876573,,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985794,389,SCHROEDERS AVENUE,Brooklyn,,3044520225,3421892,BK-05,42,,,,,40.65329,-73.877337,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985795,401,SCHROEDERS AVENUE,Brooklyn,11239,3044520224,3421891,BK-05,42,1070,BK82,40.653105,-73.877135,40.65334,-73.87721,,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985796,1123,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654354,-73.874747,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,2,1,5,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985797,1121,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654423,-73.874797,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,3,2,3,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985798,1119,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654492,-73.874851,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985799,1117,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.65456,-73.874902,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985800,1115,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654629,-73.874952,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985801,11113,ASHFORD STREET,Brooklyn,,,,BK-05,42,,,,,,,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985802,1111,ASHFORD STREET,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654766,-73.875056,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985803,498,SCHROEDERS AVENUE,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654537,-73.873752,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985804,500,SCHROEDERS AVENUE,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654562,-73.873694,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985805,502,SCHROEDERS AVENUE,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654584,-73.873637,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,985806,504,SCHROEDERS AVENUE,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654608,-73.873583,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,1,7,0,0,0,0,8,0,8,8 +53680,SPRING CREEK PHASE 4B-2,Multifamily Finance Program,04/18/2019,,986184,516,SCHROEDERS AVENUE,Brooklyn,11239,3044520400,,BK-05,42,1070,BK82,40.654751,-73.873243,40.65559,-73.873263,,New Construction,No,Non Prevailing Wage,60,19,0,0,0,1,0,79,1,0,0,0,0,0,80,0,80,80 +67103,214 WEST 72ND STREET,Multifamily Incentives Program,04/18/2019,,983770,214,WEST 72 STREET,Manhattan,10023,1011630042,1030422,MN-07,6,159,MN14,40.779041,-73.982665,40.77875,-73.982715,,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,18 +68593,1654 PARKER STREET APARTMENTS,Multifamily Incentives Program,04/18/2019,10/18/2019,988645,1654,PARKER STREET,Bronx,10462,,,BX-10,18,204,BX59,40.839496,-73.852013,,,10/18/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,0,1,0,0,0,0,3,0,3,7 +68592,651 BUSHWICK AVENUE APARTMENTS,Multifamily Incentives Program,04/17/2019,,216111,651,BUSHWICK AVENUE,Brooklyn,11221,3031830011,3413924,BK-04,34,391,BK78,40.697702,-73.932951,40.69782,-73.932637,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,4,2,0,0,0,0,0,6,0,6,20 +68591,774 BUSHWICK AVENUE APARTMENTS,Multifamily Incentives Program,04/16/2019,,216182,774,BUSHWICK AVENUE,Brooklyn,11221,3032300019,3325474,BK-04,34,393,BK78,40.695443,-73.928886,40.69521,-73.929052,,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,2,0,1,0,0,0,0,3,0,3,14 +68455,CONFIDENTIAL,Homeowner Assistance Program,04/15/2019,04/15/2019,,----,----,Bronx,,,,BX-12,12,,,,,,,04/15/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68590,196 FREEMAN STREET APARTMENTS,Multifamily Incentives Program,04/15/2019,05/31/2019,969443,196,FREEMAN STREET,Brooklyn,11222,3025130018,3426597,BK-01,33,575,BK76,40.734563,-73.953691,40.73436,-73.953615,05/31/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +68588,235 55TH STREET CONDOMINIUM,Multifamily Incentives Program,04/12/2019,,949121,235,55 STREET,Brooklyn,11220,3008217502,3014517,BK-07,38,22,BK32,40.645789,-74.018983,40.64589,-74.018724,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,0,2,2,8 +68589,2744 MATTHEWS AVENUE APARTMENTS,Multifamily Incentives Program,04/12/2019,05/13/2019,988459,2744,MATTHEWS AVENUE,Bronx,10467,2045140017,2129281,BX-11,13,340,BX07,40.866221,-73.862544,40.86689,-73.862246,05/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +66669,645 BARRETTO STREET HDFC.GHPP.FY19,Multifamily Finance Program,04/11/2019,,48001,645,BARRETTO STREET,Bronx,10474,2027650146,2006613,BX-02,17,93,BX27,40.812829,-73.888932,40.8135,-73.889382,,Preservation,No,Non Prevailing Wage,6,41,0,0,0,1,2,27,19,0,0,0,0,0,7,41,48,48 +68586,1127 FLATBUSH AVENUE APARTMENTS,Multifamily Incentives Program,04/08/2019,,292103,1127,FLATBUSH AVENUE,Brooklyn,11226,3051650059,3118894,BK-14,40,792,BK95,40.643005,-73.957686,40.64296,-73.957372,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,2,2,5,0,0,0,0,0,9,0,9,28 +68457,CONFIDENTIAL,Homeowner Assistance Program,04/05/2019,04/05/2019,,----,----,Bronx,,,,BX-08,11,,,,,,,04/05/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66573,HP 451 EAST 116TH STREET HDFC. HPO.FY19,Multifamily Finance Program,04/04/2019,04/04/2019,19759,451,EAST 116 STREET,Manhattan,10029,1017100022,1053084,MN-11,8,178,MN34,40.79525,-73.933601,40.79543,-73.93338,04/04/2019,Preservation,Yes,Non Prevailing Wage,1,1,15,11,0,0,0,12,16,0,0,0,0,0,28,0,28,28 +66573,HP 451 EAST 116TH STREET HDFC. HPO.FY19,Multifamily Finance Program,04/04/2019,04/04/2019,26933,301,PLEASANT AVENUE,Manhattan,10035,1017100024,1053085,MN-11,8,178,MN34,40.79516,-73.933091,40.79536,-73.933225,04/04/2019,Preservation,Yes,Non Prevailing Wage,0,3,10,11,0,1,0,0,15,10,0,0,0,0,25,0,25,25 +68584,2406 HOFFMAN STREET APARTMENTS,Multifamily Incentives Program,04/03/2019,,976690,2408,HOFFMAN STREET,Bronx,10458,2030660003,2129016,BX-06,15,389,BX06,40.85628,-73.888208,40.85609,-73.888003,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +68380,306 STOCKHOLM STREET APARTMENTS,Multifamily Incentives Program,04/01/2019,05/13/2019,981968,306,STOCKHOLM STREET,Brooklyn,11237,3032590018,3425323,BK-04,37,443,BK77,40.702971,-73.91936,40.70289,-73.919097,05/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +66770,146 BAYARD STREET,Multifamily Incentives Program,03/29/2019,,982702,146,BAYARD STREET,Brooklyn,11222,3027240018,3067923,BK-01,33,499,BK76,40.719941,-73.946381,40.71984,-73.946111,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,2,2,4,0,0,0,0,0,8,0,8,46 +68379,335 FENIMORE STREET APARTMENTS,Multifamily Incentives Program,03/29/2019,,984816,335,FENIMORE STREET,Brooklyn,11225,3050390055,3115477,BK-09,40,802,BK60,40.658634,-73.951509,40.65884,-73.951379,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,1,2,0,0,0,0,0,4,0,4,13 +61271,DOE. 555 NEREID AVE. MULLER,Multifamily Finance Program,03/28/2019,,99387,555,NEREID AVENUE,Bronx,10470,2050650001,2070559,BX-12,11,414,BX62,40.899871,-73.857923,40.90046,-73.858049,,Preservation,No,Non Prevailing Wage,54,0,35,0,0,1,89,1,0,0,0,0,0,0,90,0,90,90 +67051,56 AINSLIE STREET,Multifamily Incentives Program,03/28/2019,,983655,56,AINSLIE STREET,Brooklyn,11211,3023740016,3062539,BK-01,34,513,BK73,40.712838,-73.952721,40.71264,-73.952869,,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,5,27 +68384,CONFIDENTIAL,Homeowner Assistance Program,03/28/2019,03/28/2019,,----,----,Brooklyn,,,,BK-18,46,,,,,,,03/28/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68385,CONFIDENTIAL,Homeowner Assistance Program,03/28/2019,03/28/2019,,----,----,Queens,,,,QN-03,25,,,,,,,03/28/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +60784,105TH STREET & AMSTERDAM AVENUE PROJECT,Multifamily Finance Program,03/27/2019,,6097,981,AMSTERDAM AVENUE,Manhattan,10025,1018630001,1055996,MN-07,7,193,MN09,40.801832,-73.964679,40.80171,-73.964382,,Preservation,No,Non Prevailing Wage,0,0,0,13,0,0,0,0,13,0,0,0,0,0,0,13,13,13 +60784,105TH STREET & AMSTERDAM AVENUE PROJECT,Multifamily Finance Program,03/27/2019,,37513,107,WEST 105 STREET,Manhattan,10025,1018600027,1055933,MN-07,7,189,MN12,40.798698,-73.963654,40.799,-73.963817,,Preservation,No,Non Prevailing Wage,0,0,0,15,0,0,0,0,15,0,0,0,0,0,0,15,15,15 +67730,HP HENRY HUDSON HDFC.HPO.FY19 (3420 HENRY HUDSON PKWY),Multifamily Finance Program,03/27/2019,03/27/2019,84352,3240,HENRY HUDSON PARKWAY EAST,Bronx,10463,2057890024,2084124,BX-08,11,297,BX29,40.885365,-73.913345,40.88514,-73.912734,03/27/2019,Preservation,Yes,Non Prevailing Wage,0,8,23,41,0,1,5,35,19,7,7,0,0,0,73,0,73,108 +68377,225 WINTHROP STREET APARTMENTS,Multifamily Incentives Program,03/27/2019,,986662,225,WINTHROP STREET,Brooklyn,11225,3050470176,3424150,BK-09,40,802,BK60,40.656971,-73.952375,40.65716,-73.952645,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,8 +68378,227 WINTHROP STREET APARTMENTS,Multifamily Incentives Program,03/27/2019,,397419,227,WINTHROP STREET,Brooklyn,11225,3050470076,3424585,BK-09,40,802,BK60,40.656973,-73.952328,40.65717,-73.952552,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,8 +68383,CONFIDENTIAL,Homeowner Assistance Program,03/27/2019,03/27/2019,,----,----,Bronx,,,,BX-09,18,,,,,,,03/27/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61290,ICL. 50 NEVINS STREET,Multifamily Finance Program,03/26/2019,,981208,50,NEVINS STREET,Brooklyn,11217,3001720037,3000556,BK-02,33,41,BK38,40.687196,-73.981921,40.68713,-73.982213,,New Construction,No,Non Prevailing Wage,78,0,50,0,0,1,105,0,18,6,0,0,0,0,129,0,129,129 +66105,BRONX PRO.1080 WASHINGTON AVE,Multifamily Finance Program,03/26/2019,,988925,1074,WASHINGTON AVENUE,Bronx,10456,2023700016,,BX-03,16,185,BX35,40.827907,-73.908769,40.8279,-73.908328,,New Construction,No,Prevailing Wage,153,0,0,0,0,1,120,33,1,0,0,0,0,0,154,0,154,154 +68159,1325 JEROME AVENUE,Multifamily Incentives Program,03/26/2019,,988689,1325,JEROME AVENUE,Bronx,10452,,,BX-04,16,219,BX26,40.838715,-73.918794,,,,New Construction,No,Non Prevailing Wage,153,21,80,0,0,1,82,92,54,27,0,0,0,0,255,0,255,255 +68376,1672 DEAN STREET APARTMENTS,Multifamily Incentives Program,03/26/2019,,988126,1672,DEAN STREET,Brooklyn,11213,3013480015,3035771,BK-08,36,309,BK61,40.675911,-73.932328,40.67569,-73.932447,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68374,543 ALBANY AVENUE APARTMENTS,Multifamily Incentives Program,03/25/2019,,183698,543,ALBANY AVENUE,Brooklyn,11203,3047950001,3106604,BK-09,41,87401,BK60,40.661606,-73.939886,40.66163,-73.939591,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,2,1,0,0,0,0,3,0,3,9 +68375,912 BERGEN STREET APARTMENTS,Multifamily Incentives Program,03/25/2019,04/11/2019,972864,912,BERGEN STREET,Brooklyn,11238,3011490034,3028300,BK-08,35,305,BK61,40.677125,-73.957336,40.67682,-73.957213,04/11/2019,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,1,2,0,0,0,0,0,0,3,0,3,12 +68372,80 AINSLIE STREET APARTMENTS,Multifamily Incentives Program,03/22/2019,,183004,80,AINSLIE STREET,Brooklyn,11211,3023750012,3062551,BK-01,34,513,BK73,40.712525,-73.951787,40.71228,-73.951838,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,16 +68373,961 MADISON STREET APARTMENTS,Multifamily Incentives Program,03/22/2019,05/03/2019,331317,961,MADISON STREET,Brooklyn,11221,3033570060,3342327,BK-04,34,397,BK78,40.688767,-73.91928,40.68883,-73.919554,05/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,2,0,2,6 +68371,532 EAST 142ND STREET APARTMENTS,Multifamily Incentives Program,03/21/2019,07/16/2019,967507,532,EAST 142 STREET,Bronx,10454,2022680018,2128617,BX-01,8,41,BX39,40.809981,-73.916514,40.8098,-73.916673,07/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,15 +68370,396 SOUTH 5TH STREET APARTMENTS,Multifamily Incentives Program,03/14/2019,08/09/2019,984260,396,SOUTH 5 STREET,Brooklyn,11211,3024640004,3063616,BK-01,34,527,BK73,40.707596,-73.953194,40.70742,-73.953342,08/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68369,AINSLIE TOWER,Multifamily Incentives Program,03/13/2019,,318960,467,KEAP STREET,Brooklyn,11211,3023710042,3396771,BK-01,34,513,BK73,40.712991,-73.95214,40.71308,-73.952555,,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,29 +68367,238 PULASKI STREET APARTMENTS,Multifamily Incentives Program,03/11/2019,10/15/2019,357480,238,PULASKI STREET,Brooklyn,11206,3017770012,,BK-03,36,281,BK35,40.693191,-73.941989,40.69298,-73.941885,10/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,1,2,0,0,0,0,0,4,0,4,12 +68368,346 RUTLAND ROAD APARTMENTS,Multifamily Incentives Program,03/11/2019,07/26/2019,985271,346,RUTLAND ROAD,Brooklyn,11225,3048090021,3107159,BK-09,40,804,BK60,40.659478,-73.949209,40.65926,-73.949249,07/26/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,1,2,0,0,0,0,0,4,0,4,13 +68365,1595 BROADWAY APARTMENTS,Multifamily Incentives Program,03/08/2019,,979565,1595,BROADWAY,Brooklyn,11207,3034080005,3326449,BK-04,37,401,BK78,40.685511,-73.915029,40.68573,-73.914794,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,1,9,0,0,0,0,0,0,10,0,10,32 +68366,333 CYPRESS AVENUE APARTMENTS,Multifamily Incentives Program,03/08/2019,04/24/2019,986517,333,CYPRESS AVENUE,Bronx,10454,2025540054,,BX-01,8,33,BX39,40.808126,-73.913135,40.80819,-73.913445,04/24/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,13,0,3,3,7,0,0,0,0,0,13,0,13,41 +68362,104 CENTRAL AVENUE APARTMENTS,Multifamily Incentives Program,03/05/2019,03/20/2019,983741,104,CENTRAL AVENUE,Brooklyn,11206,3031720033,3328066,BK-04,34,425,BK78,40.700431,-73.929299,40.70029,-73.929558,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68363,2527 CHURCH AVENUE APARTMENTS,Multifamily Incentives Program,03/05/2019,12/11/2019,972580,2527,CHURCH AVENUE,Brooklyn,11226,3050900071,3426366,BK-17,40,822,BK60,40.650636,-73.95354,40.65087,-73.953882,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,7,0,0,0,0,0,0,7,0,7,21 +68360,1643 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,03/04/2019,,990882,1643,NEW YORK AVENUE,Brooklyn,11210,,,BK-17,45,784,BK91,40.632723,-73.944711,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68361,1645 NEW YORK AVENUE APARTMENTS,Multifamily Incentives Program,03/04/2019,,988875,1645,NEW YORK AVENUE,Brooklyn,11210,3075610017,3205991,BK-17,45,784,BK91,40.632687,-73.944708,40.63264,-73.944409,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68359,146 LINDEN BOULEVARD APARTMENTS,Multifamily Incentives Program,03/01/2019,10/31/2019,983839,146,LINDEN BOULEVARD,Brooklyn,11226,3050870041,3116762,BK-17,40,822,BK60,40.652431,-73.953611,40.65214,-73.95338,10/31/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,5,0,0,0,0,0,0,6,0,6,18 +68551,614-20 EAST 9 STREET HDFC,Multifamily Incentives Program,02/28/2019,02/28/2019,11391,614,EAST 9 STREET,Manhattan,10009,1003910014,1082474,MN-03,2,2602,MN28,40.725925,-73.979515,40.72566,-73.979547,02/28/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,8,8 +68551,614-20 EAST 9 STREET HDFC,Multifamily Incentives Program,02/28/2019,02/28/2019,804298,616,EAST 9 STREET,Manhattan,10009,1003910014,1077482,MN-03,2,2602,MN28,40.725914,-73.979486,40.72566,-73.979547,02/28/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,8,8 +68551,614-20 EAST 9 STREET HDFC,Multifamily Incentives Program,02/28/2019,02/28/2019,804299,618,EAST 9 STREET,Manhattan,10009,1003910014,1077483,MN-03,2,2602,MN28,40.7259,-73.979453,40.72566,-73.979547,02/28/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,8,8 +68551,614-20 EAST 9 STREET HDFC,Multifamily Incentives Program,02/28/2019,02/28/2019,804300,620,EAST 9 STREET,Manhattan,10009,1003910014,1077484,MN-03,2,2602,MN28,40.725889,-73.979424,40.72566,-73.979547,02/28/2019,Preservation,Yes,Non Prevailing Wage,0,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,8,8 +68279,CONFIDENTIAL,Homeowner Assistance Program,02/22/2019,02/22/2019,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/22/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68357,1543 EAST NEW YORK AVENUE,Multifamily Incentives Program,02/15/2019,,287255,1543,EAST NEW YORK AVENUE,Brooklyn,11212,3014610037,,BK-16,41,363,BK79,40.672317,-73.910803,40.67248,-73.910849,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68358,1547 EAST NEW YORK AVENUE,Multifamily Incentives Program,02/15/2019,,886174,1547,EAST NEW YORK AVE,Brooklyn,11212,3014610035,,BK-16,41,363,BK79,40.67235,-73.910723,40.67254,-73.910752,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,3,0,3,8 +65391,COOPER SQUARE SENIOR HDFC.HUDMF.FY19,Multifamily Finance Program,02/14/2019,,10031,1,COOPER SQUARE,Manhattan,10003,1004600001,1006580,MN-03,2,38,MN22,40.727153,-73.991518,40.72728,-73.99106,,Preservation,No,Non Prevailing Wage,145,4,1,0,0,1,0,151,0,0,0,0,0,0,151,0,151,151 +68356,712 EAST 175 STREET APARTMENTS,Multifamily Incentives Program,02/13/2019,02/28/2019,971253,712,EAST 175 STREET,Bronx,10457,2029480009,2129012,BX-06,17,36902,BX17,40.842597,-73.893045,40.84235,-73.893158,02/28/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,4,4,0,0,0,0,0,8,0,8,26 +68274,CONFIDENTIAL,Homeowner Assistance Program,02/11/2019,02/11/2019,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/11/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +68205,CONFIDENTIAL,Homeowner Assistance Program,02/06/2019,03/22/2019,,----,----,Queens,,,,QN-13,27,,,,,,,03/22/2019,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68278,CONFIDENTIAL,Homeowner Assistance Program,02/06/2019,02/06/2019,,----,----,Queens,,,,QN-03,25,,,,,,,02/06/2019,New Construction,No,Non Prevailing Wage,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68355,ENSEMBLE,Multifamily Incentives Program,02/05/2019,12/17/2019,287449,824,EAST NEW YORK AVENUE,Brooklyn,11203,3048060077,3107130,BK-09,41,876,BK60,40.662499,-73.935567,40.66228,-73.935348,12/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,28,0,6,19,3,0,0,0,0,0,28,0,28,93 +68353,195 SULLIVAN PLACE,Multifamily Incentives Program,02/04/2019,02/12/2019,970914,195,SULLIVAN PLACE,Brooklyn,11225,3013040143,3426295,BK-09,35,323,BK63,40.66447,-73.954608,40.66474,-73.954514,02/12/2019,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,3,1,0,0,0,0,0,0,4,0,4,19 +68354,915 EAGLE AVENUE APARTMENTS,Multifamily Incentives Program,02/04/2019,,869823,915,EAGLE AVENUE,Bronx,10456,2026200035,,BX-03,17,141,BX35,40.823089,-73.908053,40.82333,-73.908259,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,2,0,0,0,0,0,0,3,0,3,10 +65291,BEDFORD UNION ARMORY,Multifamily Finance Program,01/31/2019,,988140,1089,PRESIDENT STREET,Brooklyn,11225,3012740001,3033161,BK-09,35,323,BK63,40.668297,-73.954613,40.66879,-73.954984,,New Construction,No,Non Prevailing Wage,9,12,39,0,0,0,12,30,15,3,0,0,0,0,60,0,60,60 +65291,BEDFORD UNION ARMORY,Multifamily Finance Program,01/31/2019,,988250,1101,PRESIDENT STREET,Brooklyn,11225,3012740001,3033161,BK-09,35,323,BK63,40.668277,-73.954267,40.66879,-73.954984,,New Construction,No,Non Prevailing Wage,41,38,111,0,0,1,28,103,33,27,0,0,0,0,191,0,191,355 +68202,CONFIDENTIAL,Homeowner Assistance Program,01/29/2019,01/29/2019,,----,----,Brooklyn,,,,BK-01,34,,,,,,,01/29/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68350,182 JEFFERSON STREET APARTMENTS,Multifamily Incentives Program,01/29/2019,,976697,182,JEFFERSON STREET,Brooklyn,11206,3031730016,3319556,BK-04,34,425,BK78,40.701325,-73.929179,40.70124,-73.928919,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68352,81 JEFFERSON STREET APARTMENTS,Multifamily Incentives Program,01/29/2019,,978051,81,JEFFERSON STREET,Brooklyn,11206,3031620042,3072039,BK-04,34,391,BK78,40.698948,-73.93256,40.69912,-73.932676,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68349,34 BELVEDERE STREET APARTMENTS,Multifamily Incentives Program,01/25/2019,03/29/2019,978433,34,BELVEDERE STREET,Brooklyn,11206,3031360022,,BK-04,34,389,BK78,40.698961,-73.936632,40.6989,-73.936376,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,1,2,0,0,0,0,3,0,3,8 +68199,CONFIDENTIAL,Homeowner Assistance Program,01/24/2019,01/24/2019,,----,----,Queens,,,,QN-11,23,,,,,,,01/24/2019,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68200,CONFIDENTIAL,Homeowner Assistance Program,01/24/2019,01/24/2019,,----,----,Queens,,,,QN-07,20,,,,,,,01/24/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68345,70 SUTTON STREET APARTMENTS,Multifamily Incentives Program,01/24/2019,04/30/2019,956632,70,SUTTON STREET,Brooklyn,11222,3026900070,3415472,BK-01,33,593,BK76,40.725156,-73.94059,40.72527,-73.940337,04/30/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +68346,72 SUTTON STREET APARTMENTS,Multifamily Incentives Program,01/24/2019,09/25/2019,956630,72,SUTTON STREET,Brooklyn,11222,3026900071,3415475,BK-01,33,593,BK76,40.725206,-73.940601,40.72533,-73.940348,09/25/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +61877,464-68 W 51 ST HDFC.GHPP.FY19,Multifamily Finance Program,01/23/2019,,5169,748,10 AVENUE,Manhattan,10019,1010600061,1026704,MN-04,3,133,MN15,40.765212,-73.99139,40.76509,-73.991141,,Preservation,No,Non Prevailing Wage,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +61877,464-68 W 51 ST HDFC.GHPP.FY19,Multifamily Finance Program,01/23/2019,,33920,464,WEST 51 STREET,Manhattan,10019,1010600160,1026709,MN-04,3,133,MN15,40.764833,-73.990224,40.76499,-73.990997,,Preservation,No,Non Prevailing Wage,7,0,1,0,0,0,0,7,1,0,0,0,0,0,0,8,8,8 +68197,CONFIDENTIAL,Homeowner Assistance Program,01/23/2019,01/23/2019,,----,----,Queens,,,,QN-14,32,,,,,,,01/23/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68343,1328 FULTON STREET APARTMENTS,Multifamily Incentives Program,01/23/2019,,849651,1320,FULTON STREET,Brooklyn,11216,3018610119,3400722,BK-03,36,247,BK61,40.680305,-73.948122,40.68005,-73.947823,,New Construction,No,Non Prevailing Wage,0,0,13,0,0,0,5,4,4,0,0,0,0,0,13,0,13,57 +68344,VERNON AVENUE APARTMENTS,Multifamily Incentives Program,01/23/2019,01/23/2019,966691,220,VERNON AVENUE,Brooklyn,11206,3017610006,,BK-03,36,283,BK35,40.69536,-73.942697,40.69511,-73.942846,01/23/2019,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,1,1,2,0,0,0,0,0,4,0,4,20 +68341,30-68 38TH STREET APARTMENTS,Multifamily Incentives Program,01/19/2019,04/10/2019,973346,30-66,38 STREET,Queens,11103,4006590075,,QN-01,22,63,QN70,40.762673,-73.917103,40.76274,-73.917443,04/10/2019,New Construction,No,Non Prevailing Wage,0,0,0,7,0,0,0,3,4,0,0,0,0,0,7,0,7,23 +68342,875 DEKALB AVENUE APARTMENTS,Multifamily Incentives Program,01/19/2019,03/06/2019,974874,875,DEKALB AVENUE,Brooklyn,11221,3017770054,3418329,BK-03,36,281,BK35,40.692524,-73.941416,40.69274,-73.941499,03/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,11,0,0,5,6,0,0,0,0,0,11,0,11,35 +68195,CONFIDENTIAL,Homeowner Assistance Program,01/18/2019,01/18/2019,,----,----,Queens,,,,QN-07,20,,,,,,,01/18/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68339,1424 HANCOCK STREET APARTMENTS,Multifamily Incentives Program,01/18/2019,,306776,1424,HANCOCK STREET,Brooklyn,11237,3034000028,3078449,BK-04,37,439,BK77,40.696097,-73.907366,40.69603,-73.907089,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,2,0,2,6 +68340,2121 7TH AVENUE APARTMENTS,Multifamily Incentives Program,01/18/2019,,3462,2121,ADAM C POWELL BOULEVARD,Manhattan,10027,1019110001,1090567,MN-10,9,224,MN03,40.809805,-73.947707,40.80971,-73.947407,,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,4,3,0,0,0,0,0,7,0,7,22 +49147,21 ARDEN STREET,Multifamily Finance Program,01/17/2019,,6125,21,ARDEN STREET,Manhattan,10040,1021740188,1064203,MN-12,10,285,MN35,40.861702,-73.926969,40.86167,-73.926633,,Preservation,No,Non Prevailing Wage,0,0,0,15,0,0,0,6,9,0,0,0,0,0,0,15,15,15 +68182,CONFIDENTIAL,Homeowner Assistance Program,01/16/2019,01/16/2019,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/16/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68193,CONFIDENTIAL,Homeowner Assistance Program,01/16/2019,01/16/2019,,----,----,Queens,,,,QN-07,20,,,,,,,01/16/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68338,253 EVERGREEN AVENUE APARTMENTS,Multifamily Incentives Program,01/15/2019,06/13/2019,989158,253,EVERGREEN AVENUE,Brooklyn,11221,3032430003,,BK-04,34,421,BK78,40.69587,-73.926757,40.69601,-73.926624,06/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68336,143 WOODBINE STREET APARTMENTS,Multifamily Incentives Program,01/14/2019,01/31/2019,983826,143,WOODBINE STREET,Brooklyn,11221,3033500039,3076596,BK-04,34,417,BK78,40.692509,-73.916772,40.69271,-73.916916,01/31/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68337,J&J TOWER/46-02 70 STREET,Multifamily Incentives Program,01/14/2019,,972661,46-02,70 STREET,Queens,11377,4024320023,4619357,QN-02,30,489,QN50,40.739657,-73.894221,40.73964,-73.894614,,New Construction,No,Non Prevailing Wage,0,0,0,0,23,0,5,6,12,0,0,0,0,0,23,0,23,74 +68183,CONFIDENTIAL,Homeowner Assistance Program,01/09/2019,01/09/2019,,----,----,Brooklyn,,,,BK-11,44,,,,,,,01/09/2019,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +44218,MEC E. 125TH ST. PARCEL B WEST,Multifamily Finance Program,12/31/2018,,987329,2319,3 AVENUE,Manhattan,10035,1017900046,1054691,MN-11,8,242,MN34,40.804265,-73.93539,40.80409,-73.935159,,New Construction,No,Non Prevailing Wage,0,101,101,0,93,2,83,70,129,15,0,0,0,0,297,0,297,404 +44256,WSFSSH. 145 WEST 108TH ST. VALLEY LODGE,Multifamily Finance Program,12/31/2018,,988143,137-159,WEST 108 STREET,Manhattan,10025,1018630017,,MN-07,7,193,MN09,40.801083,-73.963173,40.80118,-73.962848,,New Construction,No,Non Prevailing Wage,129,0,69,0,0,1,119,53,19,8,0,0,0,0,199,0,199,199 +48038,165 WEST 80TH STREET,Multifamily Finance Program,12/31/2018,,35779,165,WEST 80 STREET,Manhattan,10024,1012110007,1031954,MN-07,6,165,MN12,40.783556,-73.977157,40.78373,-73.977009,,Preservation,No,Non Prevailing Wage,0,14,14,0,0,1,20,9,0,0,0,0,0,0,29,0,29,29 +68087,151 SOMERS STREET CONDOMINIUMS,Multifamily Incentives Program,12/31/2018,10/01/2019,371705,151,SOMERS STREET,Brooklyn,11233,3015407503,3413909,BK-16,37,369,BK79,40.679263,-73.906809,40.67949,-73.906686,10/01/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,1,1,0,0,0,0,0,0,0,2,2,8 +63168,MANHANTANVILLE (PHASE II),Multifamily Finance Program,12/27/2018,12/27/2018,967819,3595,BROADWAY,Manhattan,10031,1020947503,1083034,MN-09,7,233,MN04,40.828165,-73.949199,40.8283,-73.949528,12/27/2018,Preservation,Yes,Non Prevailing Wage,0,0,7,0,0,0,0,0,7,0,0,0,0,0,0,7,7,43 +64492,3377 WHITE PLAINS ROAD LLC.YR15.FY19,Multifamily Finance Program,12/27/2018,,874245,3377,WHITE PLAINS ROAD,Bronx,10467,2046240037,2087299,BX-12,12,374,BX44,40.874872,-73.86706,40.87459,-73.867429,,Preservation,No,Non Prevailing Wage,6,30,36,0,0,0,0,72,0,0,0,0,0,0,72,0,72,72 +66653,CAMBER. 3-11 W118TH ST. VICTORY PLAZA,Multifamily Finance Program,12/27/2018,,985501,11,WEST 118 STREET,Manhattan,10026,1017170028,,MN-10,9,190,MN11,40.80227,-73.946199,40.80244,-73.946051,,New Construction,No,Prevailing Wage,135,0,0,0,0,1,134,2,0,0,0,0,0,0,136,0,136,136 +66931,2178 BERGEN STREET,Multifamily Incentives Program,12/27/2018,,986562,2178,BERGEN STREET,Brooklyn,11233,3014560001,3039146,BK-16,37,36502,BK79,40.673791,-73.908007,40.67364,-73.908122,,New Construction,No,Non Prevailing Wage,0,7,0,0,0,0,0,3,4,0,0,0,0,0,7,0,7,33 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,3638,2541,ADAM C POWELL BOULEVARD,Manhattan,10039,1020160050,1079770,MN-10,9,236,MN03,40.823024,-73.938049,40.82292,-73.936261,,Preservation,No,Non Prevailing Wage,19,293,0,0,0,0,0,51,210,51,0,0,0,0,0,312,312,312 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,23412,700,ESPLANADE GDNS PLAZA,Manhattan,10039,1017440001,1083992,MN-10,9,236,MN03,40.820534,-73.936144,40.82096,-73.934709,,Preservation,No,Non Prevailing Wage,19,292,0,0,0,1,0,51,209,52,0,0,0,0,0,312,312,312 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,803887,2569,7 AVENUE,Manhattan,10039,1020160050,1079773,MN-10,9,236,MN03,40.823872,-73.937438,40.82292,-73.936261,,Preservation,No,Non Prevailing Wage,27,285,0,0,0,0,0,53,206,53,0,0,0,0,0,312,312,312 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,804988,720,LENOX AVENUE,Manhattan,10039,1017440001,1083993,MN-10,9,236,MN03,40.821198,-73.935663,40.82096,-73.934709,,Preservation,No,Non Prevailing Wage,16,296,0,0,0,0,0,52,208,52,0,0,0,0,0,312,312,312 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,805981,101,WEST 147 STREET,Manhattan,10039,1020160050,1079771,MN-10,9,236,MN03,40.821922,-73.93572,40.82292,-73.936261,,Preservation,No,Non Prevailing Wage,17,294,0,0,0,1,0,54,207,51,0,0,0,0,0,312,312,312 +67577,ESPLANADE GARDENS INCORPORATED.PLP.FY19,Multifamily Finance Program,12/27/2018,,805982,129,WEST 147 STREET,Manhattan,10039,1020160050,1079772,MN-10,9,236,MN03,40.822211,-73.936399,40.82292,-73.936261,,Preservation,No,Non Prevailing Wage,26,286,0,0,0,0,0,51,208,53,0,0,0,0,0,312,312,312 +61931,HUNTERS POINT SOUTH PARCEL C -NORTH TOWER,Multifamily Finance Program,12/26/2018,,981672,52-03,CENTER BOULEVARD,Queens,11101,4000060060,,QN-02,26,1,QN31,40.742166,-73.960033,40.74191,-73.959553,,New Construction,No,Non Prevailing Wage,0,160,0,90,284,1,174,145,216,0,0,0,0,0,535,0,535,800 +62102,VAN DYKE III,Multifamily Finance Program,12/26/2018,,987587,405,DUMONT AVENUE,Brooklyn,11212,3037770001,,BK-16,41,910,BK81,40.664846,-73.904371,40.66567,-73.904384,,New Construction,No,Non Prevailing Wage,18,36,125,0,0,1,56,52,44,28,0,0,0,0,180,0,180,180 +62109,CATON FLATS,Multifamily Finance Program,12/26/2018,,987706,800,FLATBUSH AVENUE,Brooklyn,11226,3050630058,3397264,BK-14,40,50803,BK42,40.653312,-73.959413,40.65322,-73.959816,,New Construction,No,Non Prevailing Wage,0,27,37,63,127,1,64,97,54,40,0,0,0,0,255,0,255,255 +63209,HUNTERS POINT SOUTH PARCEL C -SOUTH TOWER,Multifamily Finance Program,12/26/2018,,986657,52-41,CENTER BOULEVARD,Queens,11101,4000060165,,QN-02,26,1,QN31,40.741411,-73.960647,40.74138,-73.960164,,New Construction,No,Non Prevailing Wage,0,80,0,65,40,1,89,36,61,0,0,0,0,0,186,0,186,394 +63877,TYPE A. 1490 SOUTHERN BLVD. MWBE RFP SITE E,Multifamily Finance Program,12/26/2018,,975693,1490,SOUTHERN BOULEVARD,Bronx,10460,2029810014,2010571,BX-03,17,157,BX75,40.833251,-73.890198,40.8333,-73.889786,,New Construction,No,Prevailing Wage,114,0,0,0,0,1,75,39,1,0,0,0,0,0,115,0,115,115 +68075,1980 AMSTERDAM AVENUE,Multifamily Incentives Program,12/26/2018,,5729,1980,AMSTERDAM AVENUE,Manhattan,10032,1021170041,1062769,MN-12,7,245,MN36,40.833588,-73.94152,40.83371,-73.941816,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,5,14 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,65840,54,EAST 176 STREET,Bronx,10453,2028500047,2008215,BX-05,14,22701,BX41,40.84837,-73.910375,40.8482,-73.910513,,Preservation,No,Non Prevailing Wage,7,25,18,0,0,1,0,41,8,2,0,0,0,0,51,0,51,51 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,66071,20,EAST 179 STREET,Bronx,10453,2028540015,2008263,BX-05,14,241,BX41,40.852458,-73.908078,40.85218,-73.907966,,Preservation,No,Non Prevailing Wage,0,17,12,0,0,1,0,5,16,9,0,0,0,0,30,0,30,30 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,66100,54,EAST 179 STREET,Bronx,10453,2028290009,2007926,BX-05,14,241,BX41,40.852125,-73.907442,40.85196,-73.907464,,Preservation,No,Non Prevailing Wage,3,11,10,0,0,0,0,22,2,0,0,0,0,0,24,0,24,24 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,74425,52,EAST TREMONT AVENUE,Bronx,10453,2028280017,2007914,BX-05,14,23301,BX41,40.851223,-73.908267,40.85096,-73.908326,,Preservation,No,Non Prevailing Wage,0,12,11,0,0,1,0,3,17,4,0,0,0,0,24,0,24,24 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,83651,1731,HARRISON AVENUE,Bronx,10453,2028660110,2008471,BX-05,14,21502,BX36,40.849227,-73.914664,40.8498,-73.914602,,Preservation,No,Non Prevailing Wage,0,18,20,0,0,1,0,7,21,6,5,0,0,0,39,0,39,39 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,97470,2001,MORRIS AVENUE,Bronx,10453,2028290068,2007957,BX-05,14,241,BX41,40.851951,-73.906705,40.8521,-73.906893,,Preservation,No,Non Prevailing Wage,0,27,14,0,0,1,0,6,24,12,0,0,0,0,42,0,42,42 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,97472,2011,MORRIS AVENUE,Bronx,10453,2028290063,2007956,BX-05,14,241,BX41,40.852143,-73.906531,40.8523,-73.906708,,Preservation,No,Non Prevailing Wage,2,13,15,0,0,0,0,6,12,12,0,0,0,0,30,0,30,30 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,115524,1650,TOPPING AVENUE,Bronx,10457,2027900007,2007313,BX-04,16,22902,BX41,40.843069,-73.905904,40.84303,-73.905611,,Preservation,No,Non Prevailing Wage,12,2,11,0,0,1,0,16,9,1,0,0,0,0,26,0,26,26 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,119086,1895,WALTON AVENUE,Bronx,10453,2028520021,2008238,BX-05,14,23301,BX41,40.849651,-73.909271,40.8497,-73.909477,,Preservation,No,Non Prevailing Wage,0,17,13,0,0,1,0,5,16,10,0,0,0,0,31,0,31,31 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,119099,1975,WALTON AVENUE,Bronx,10453,2028540021,2008265,BX-05,14,241,BX41,40.851689,-73.90809,40.85184,-73.908274,,Preservation,No,Non Prevailing Wage,0,20,8,0,0,1,0,5,18,6,0,0,0,0,29,0,29,29 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,119100,1979,WALTON AVENUE,Bronx,10453,2028540018,2008264,BX-05,14,241,BX41,40.851755,-73.908028,40.85201,-73.908122,,Preservation,No,Non Prevailing Wage,0,17,12,0,0,0,0,5,18,6,0,0,0,0,29,0,29,29 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,119102,2003,WALTON AVENUE,Bronx,10453,2028540064,2008272,BX-05,14,241,BX41,40.852399,-73.907445,40.85257,-73.907615,,Preservation,No,Non Prevailing Wage,0,30,18,0,0,1,0,8,21,20,0,0,0,0,49,0,49,49 +65054,NCV HOPE LLC.PLP.FY19 (MOUNT HOPE RENAISSANCE),Multifamily Finance Program,12/21/2018,,806197,1892,MORRIS AVENUE,Bronx,10453,2028050031,2007622,BX-05,14,23301,BX41,40.849197,-73.908169,40.8492,-73.907898,,Preservation,No,Non Prevailing Wage,0,62,48,0,0,1,8,50,32,21,0,0,0,0,111,0,111,111 +68066,WILSON AVENUE APARTMENTS,Multifamily Incentives Program,12/21/2018,02/12/2019,396928,435,WILSON AVENUE,Brooklyn,11221,3033700006,,BK-04,37,435,BK77,40.693907,-73.913763,40.69405,-73.913539,02/12/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,9 +63778,153-19 JAMAICA AVENUE,Multifamily Incentives Program,12/20/2018,,975355,153-19,JAMAICA AVENUE,Queens,11432,4097540048,4208823,QN-12,24,240,QN61,40.702843,-73.801961,40.70326,-73.801588,,New Construction,No,Non Prevailing Wage,0,0,138,0,0,0,37,64,37,0,0,0,0,0,138,0,138,139 +65341,FRIENDSET APTS HDFC.HUDMF.FY18,Multifamily Finance Program,12/20/2018,,336169,3528,MERMAID AVENUE,Brooklyn,11224,3070460001,3189510,BK-13,47,342,BK21,40.574821,-74.001044,40.5743,-74.001127,,Preservation,Yes,Non Prevailing Wage,250,4,1,4,0,0,0,241,18,0,0,0,0,0,259,0,259,259 +66651,FOXY.2016 ARTHUR AVENUE,Multifamily Finance Program,12/20/2018,,986550,600,EAST 179 STREET,Bronx,10457,2030680069,,BX-06,17,373,BX17,40.847915,-73.892263,40.84761,-73.892253,,New Construction,No,Prevailing Wage,176,0,0,0,0,1,88,88,1,0,0,0,0,0,177,0,177,177 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,46134,1892,ARTHUR AVENUE,Bronx,10457,2029470009,2009909,BX-06,17,36901,BX17,40.84515,-73.893667,40.84519,-73.893186,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,50,1,0,0,1,16,16,17,1,0,0,0,51,0,51,51 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,49398,1898,BELMONT AVENUE,Bronx,10457,2029460016,2009895,BX-06,17,36901,BX17,40.844855,-73.892821,40.84487,-73.892453,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,16,4,0,1,0,1,2,18,0,0,0,0,21,0,21,21 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,49399,1899,BELMONT AVENUE,Bronx,10457,2029470035,2009913,BX-06,17,36901,BX17,40.844866,-73.892839,40.84527,-73.892748,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,26,1,0,0,0,0,26,1,0,0,0,0,27,0,27,27 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,49400,1900,BELMONT AVENUE,Bronx,10457,2029460018,2009896,BX-06,17,36901,BX17,40.844883,-73.8928,40.84505,-73.892315,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,35,10,0,0,0,21,16,7,1,0,0,0,45,0,45,45 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,49401,1908,BELMONT AVENUE,Bronx,10457,2029460022,2009897,BX-06,17,36901,BX17,40.844981,-73.892716,40.84527,-73.892109,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,39,7,0,0,0,19,16,10,1,0,0,0,46,0,46,46 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,66276,876,EAST 180 STREET,Bronx,10460,2031230053,2013148,BX-06,17,363,BX17,40.845252,-73.883001,40.84497,-73.883063,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,24,1,0,0,0,12,8,5,0,0,0,0,25,0,25,25 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,66278,882,EAST 180 STREET,Bronx,10460,2031230056,2013150,BX-06,17,363,BX17,40.845191,-73.882878,40.84484,-73.882806,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,1,24,3,0,0,4,1,13,10,0,0,0,0,28,0,28,28 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,96758,2082,MOHEGAN AVENUE,Bronx,10460,2031230044,2013144,BX-06,17,363,BX17,40.844998,-73.88389,40.8449,-73.883547,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,27,6,0,1,6,8,6,14,0,0,0,0,34,0,34,34 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,96759,2083,MOHEGAN AVENUE,Bronx,10460,2031180033,2092359,BX-06,17,363,BX17,40.845006,-73.883908,40.84521,-73.884164,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,20,1,0,0,0,5,12,4,0,0,0,0,21,0,21,21 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,96760,2090,MOHEGAN AVENUE,Bronx,10460,2031230046,2013145,BX-06,17,363,BX17,40.845162,-73.883753,40.84509,-73.883489,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,23,1,0,0,1,3,10,10,0,0,0,0,24,0,24,24 +67687,WEST FARMS PRESERVATION HDFC.HPO.FY19,Multifamily Finance Program,12/20/2018,12/20/2018,806416,2082,CROTONA PARKWAY,Bronx,10460,2031180033,2092360,BX-06,17,363,BX17,40.845311,-73.884558,40.84521,-73.884164,12/20/2018,Preservation,Yes,Non Prevailing Wage,0,0,19,2,0,0,0,5,12,4,0,0,0,0,21,0,21,21 +68065,46 COOK STREET,Multifamily Incentives Program,12/20/2018,03/13/2019,976381,31,DEBEVOISE STREET,Brooklyn,11206,,,BK-01,34,491,BK90,40.7017,-73.941675,,,03/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,14,0,0,4,8,2,0,0,0,0,14,0,14,45 +68063,1817 UNIVERSITY AVENUE APARTMENTS,Multifamily Incentives Program,12/19/2018,01/09/2019,987225,1817,UNIVERSITY AVENUE,Bronx,10453,2028790120,2128508,BX-05,14,24501,BX36,40.851233,-73.914698,40.85119,-73.915182,01/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +63154,RIVERWALK 8,Multifamily Finance Program,12/18/2018,,975397,460,MAIN STREET,Manhattan,10044,1013730009,,MN-08,5,23801,MN31,40.759347,-73.951807,40.75899,-73.951288,,New Construction,No,Non Prevailing Wage,0,69,33,68,170,1,82,158,51,50,0,0,0,0,341,0,341,341 +66929,9 ARGYLE ROAD HDFC.GHPP.FY19,Multifamily Finance Program,12/18/2018,,243980,9,ARGYLE ROAD,Brooklyn,11218,3050740060,3116436,BK-14,40,506,BK42,40.649164,-73.967815,40.64932,-73.96757,,Preservation,No,Non Prevailing Wage,0,12,0,0,0,0,5,0,0,1,4,2,0,0,0,12,12,12 +68010,CONFIDENTIAL,Homeowner Assistance Program,12/18/2018,12/18/2018,,----,----,Brooklyn,,,,BK-10,43,,,,,,,12/18/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +62241,PARK AND ELTON APARTMENTS,Small Homes Program,12/14/2018,,965108,451,EAST 159 STREET,Bronx,10451,2023810043,,BX-03,17,141,BX35,40.822393,-73.912686,40.82249,-73.912563,,New Construction,No,Non Prevailing Wage,6,3,5,9,0,1,14,5,5,0,0,0,0,0,24,0,24,24 +62241,PARK AND ELTON APARTMENTS,Small Homes Program,12/14/2018,,976490,3120,PARK AVENUE,Bronx,10451,2024180006,,BX-01,17,69,BX34,40.823766,-73.917732,40.82363,-73.917526,,New Construction,No,Non Prevailing Wage,3,1,2,8,0,0,4,5,5,0,0,0,0,0,14,0,14,14 +65523,AILEEN AVERY HDFC.HRP.FY19,Multifamily Finance Program,12/14/2018,,42263,474,WEST 148 STREET,Manhattan,10031,1020620061,1061468,MN-09,7,231,MN04,40.826895,-73.945612,40.82692,-73.945966,,Preservation,No,Non Prevailing Wage,6,4,11,0,0,1,0,4,18,0,0,0,0,0,22,0,22,22 +68009,CONFIDENTIAL,Homeowner Assistance Program,12/14/2018,12/14/2018,,----,----,Queens,,,,QN-13,27,,,,,,,12/14/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66342,64 SCHOLES STREET,Multifamily Incentives Program,12/13/2018,,987866,64,SCHOLES STREET,Brooklyn,11206,3030410009,,BK-01,34,511,BK90,40.708378,-73.947584,40.70818,-73.947383,,New Construction,No,Non Prevailing Wage,0,0,64,0,0,0,64,0,0,0,0,0,0,0,64,0,64,65 +68008,CONFIDENTIAL,Homeowner Assistance Program,12/12/2018,12/12/2018,,----,----,Queens,,,,QN-13,27,,,,,,,12/12/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64671,683 THWAITES PLACE,Small Homes Program,12/11/2018,,983110,695,THWAITES PLACE,Bronx,10467,2043420046,2128720,BX-11,15,33201,BX07,40.858597,-73.868018,40.85881,-73.868104,,New Construction,No,Non Prevailing Wage,0,0,4,31,0,1,3,24,8,1,0,0,0,0,36,0,36,36 +67723,NEIGHBORHOOD WOMEN HDFC,Multifamily Incentives Program,12/11/2018,06/20/2019,368730,110,SEIGEL STREET,Brooklyn,11206,3030970012,3071457,BK-01,34,491,BK90,40.704519,-73.942174,40.70433,-73.941972,06/20/2019,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,3,3,0,0,0,0,0,0,6,0,6,6 +67723,NEIGHBORHOOD WOMEN HDFC,Multifamily Incentives Program,12/11/2018,06/20/2019,810123,28,KINGSLAND AVENUE,Brooklyn,11211,3028850020,3338305,BK-01,34,449,BK90,40.71679,-73.940176,40.71678,-73.939959,06/20/2019,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +67723,NEIGHBORHOOD WOMEN HDFC,Multifamily Incentives Program,12/11/2018,06/20/2019,810124,276,JACKSON STREET,Brooklyn,11211,3028850023,3338308,BK-01,34,449,BK90,40.717207,-73.939836,40.71708,-73.939692,06/20/2019,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,6,3,0,3,0,0,0,0,12,0,12,12 +67723,NEIGHBORHOOD WOMEN HDFC,Multifamily Incentives Program,12/11/2018,06/20/2019,810125,302,JACKSON STREET,Brooklyn,11211,3028850028,3339195,BK-01,34,449,BK90,40.717454,-73.939042,40.71733,-73.93884,06/20/2019,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,0,6,3,0,0,0,0,9,0,9,9 +67723,NEIGHBORHOOD WOMEN HDFC,Multifamily Incentives Program,12/11/2018,06/20/2019,810143,29,DEBEVOISE AVENUE,Brooklyn,11211,3028850032,3338307,BK-01,34,449,BK90,40.717149,-73.938234,40.71731,-73.938541,06/20/2019,Preservation,No,Non Prevailing Wage,0,0,11,0,0,0,0,0,11,0,0,0,0,0,11,0,11,12 +68061,797 STERLING PLACE,Multifamily Incentives Program,12/11/2018,05/31/2019,939780,797,STERLING PLACE,Brooklyn,11216,3012400069,3418414,BK-08,36,31701,BK61,40.672635,-73.951989,40.67289,-73.952079,05/31/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,9 +68062,STAN GREEN APARTMENTS,Multifamily Incentives Program,12/11/2018,07/17/2019,980881,314,EVERGREEN AVENUE,Brooklyn,11221,3032530028,3325569,BK-04,34,395,BK78,40.695428,-73.926019,40.69526,-73.926188,07/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68062,STAN GREEN APARTMENTS,Multifamily Incentives Program,12/11/2018,07/17/2019,981237,316,EVERGREEN AVENUE,Brooklyn,11221,3032530029,3325568,BK-04,34,395,BK78,40.695384,-73.925943,40.69522,-73.926116,07/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68006,CONFIDENTIAL,Homeowner Assistance Program,12/10/2018,12/10/2018,,----,----,Queens,,,,QN-14,31,,,,,,,12/10/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68060,924 MYRTLE AVENUE APARTMENTS,Multifamily Incentives Program,12/10/2018,03/13/2019,986878,924,MYRTLE AVENUE,Brooklyn,11206,3017560024,3048668,BK-03,36,25901,BK75,40.69585,-73.945023,40.69561,-73.945009,03/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,1,2,4,0,0,0,0,0,7,0,7,23 +66189,540 FULTON STREET,Multifamily Incentives Program,12/07/2018,,981950,540,FULTON STREET,Brooklyn,11201,3001610018,,BK-02,33,37,BK38,40.689011,-73.981228,40.68878,-73.98152,,New Construction,No,Non Prevailing Wage,0,0,28,0,0,0,13,9,5,1,0,0,0,0,28,0,28,318 +66005,FOREST HILLS MHA HDFC.HRP.FY19,Multifamily Finance Program,12/06/2018,,519642,62-27,108 STREET,Queens,11375,4021590002,4432109,QN-06,29,745,QN17,40.736351,-73.851347,40.73676,-73.849802,,Preservation,No,Non Prevailing Wage,91,44,7,0,0,0,11,47,60,24,0,0,0,0,142,0,142,142 +66005,FOREST HILLS MHA HDFC.HRP.FY19,Multifamily Finance Program,12/06/2018,,812161,108-53,62 DRIVE,Queens,11375,4021590002,4432113,QN-06,29,745,QN17,40.736118,-73.849547,40.73676,-73.849802,,Preservation,No,Non Prevailing Wage,89,48,7,0,0,0,12,48,60,24,0,0,0,0,144,0,144,144 +66005,FOREST HILLS MHA HDFC.HRP.FY19,Multifamily Finance Program,12/06/2018,,955177,110-01,62 DRIVE,Queens,11375,4021590002,4432110,QN-06,29,745,QN17,40.736372,-73.848731,40.73676,-73.849802,,Preservation,No,Non Prevailing Wage,107,30,7,0,0,0,12,48,60,24,0,0,0,0,144,0,144,144 +66571,50-11 QUEENS BLVD,Multifamily Incentives Program,12/06/2018,,981262,50-11,QUEENS BOULEVARD,Queens,11377,4013190021,,QN-02,26,25302,QN31,40.742717,-73.914775,40.74308,-73.914255,,New Construction,No,Non Prevailing Wage,0,0,14,0,0,0,2,8,4,0,0,0,0,0,14,0,14,75 +61967,ACACIA. 128 EAST 112TH ST. VIRGINIA HOUSE,Multifamily Finance Program,12/05/2018,,19431,124,EAST 112 STREET,Manhattan,10029,1016390062,1052223,MN-11,8,172,MN33,40.79631,-73.944059,40.79614,-73.944268,,Preservation,No,Prevailing Wage,56,0,0,0,0,1,55,2,0,0,0,0,0,0,57,0,57,57 +67966,CONFIDENTIAL,Homeowner Assistance Program,12/05/2018,04/02/2019,,----,----,Bronx,,,,BX-07,11,,,,,,,04/02/2019,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +68005,CONFIDENTIAL,Homeowner Assistance Program,12/05/2018,12/05/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,12/05/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68059,21-34 BROADWAY APARTMENTS,Multifamily Incentives Program,11/28/2018,,640419,21-34,BROADWAY,Queens,11106,4005550029,4006399,QN-01,22,45,QN70,40.765093,-73.931472,40.7644,-73.930747,,New Construction,No,Non Prevailing Wage,0,0,0,0,12,0,0,6,6,0,0,0,0,0,12,0,12,37 +67493,111 VARICK STREET,Multifamily Incentives Program,11/27/2018,,986507,111,VARICK STREET,Manhattan,10013,1005780071,,MN-02,3,37,MN24,40.724496,-74.006029,40.72459,-74.006314,,New Construction,No,Non Prevailing Wage,0,3,22,0,0,0,7,12,6,0,0,0,0,0,25,0,25,100 +67989,CONFIDENTIAL,Homeowner Assistance Program,11/27/2018,11/27/2018,,----,----,Bronx,,,,BX-10,13,,,,,,,11/27/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68058,920 PACIFIC STREET APARTMENTS,Multifamily Incentives Program,11/27/2018,,980601,920,PACIFIC STREET,Brooklyn,11238,3011320020,3325240,BK-08,35,203,BK64,40.679992,-73.963106,40.67975,-73.963146,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,211017,54,BOERUM STREET,Brooklyn,11206,3030770001,3327971,BK-01,34,491,BK90,40.705512,-73.947161,40.70453,-73.946891,,Preservation,No,Non Prevailing Wage,0,143,243,0,0,1,43,195,128,21,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,211018,91,BOERUM STREET,Brooklyn,11206,3030600075,3071200,BK-01,34,505,BK90,40.705676,-73.945513,40.70611,-73.945552,,Preservation,No,Non Prevailing Wage,0,146,240,0,0,1,44,194,128,21,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,331799,67,MANHATTAN AVENUE,Brooklyn,11206,3030780001,3338422,BK-01,34,491,BK90,40.704699,-73.944525,40.70458,-73.945297,,Preservation,No,Non Prevailing Wage,0,151,235,0,0,1,43,195,128,21,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,340170,30,MONTROSE AVENUE,Brooklyn,11206,3030580001,3338413,BK-01,34,511,BK90,40.706762,-73.949111,40.70606,-73.948982,,Preservation,No,Non Prevailing Wage,0,177,209,0,0,1,43,216,86,42,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,807809,25,BOERUM STREET,Brooklyn,11206,3030580001,3338415,BK-01,34,511,BK90,40.705359,-73.948755,40.70606,-73.948982,,Preservation,No,Non Prevailing Wage,0,174,212,0,0,1,46,214,85,42,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,808686,31,LEONARD STREET,Brooklyn,11206,3030770001,3327972,BK-01,34,491,BK90,40.70428,-73.946062,40.70453,-73.946891,,Preservation,No,Non Prevailing Wage,0,152,234,0,0,1,42,195,129,21,0,0,0,0,0,387,387,387 +49533,LINDSAY PARK.HRP.FY18,Multifamily Finance Program,11/26/2018,,808883,29,MOORE STREET,Brooklyn,11206,3030780001,3338423,BK-01,34,491,BK90,40.703513,-73.945118,40.70458,-73.945297,,Preservation,No,Non Prevailing Wage,0,145,241,0,0,1,43,196,127,21,0,0,0,0,0,387,387,387 +67982,CONFIDENTIAL,Homeowner Assistance Program,11/26/2018,02/15/2019,,----,----,Queens,,,,QN-05,30,,,,,,,02/15/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68055,1530 PUTNAM AVENUE APARTMENTS,Multifamily Incentives Program,11/23/2018,,966923,1530,PUTNAM AVENUE,Brooklyn,11237,3033790031,3393163,BK-04,37,439,BK77,40.697836,-73.909171,40.6977,-73.908973,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68056,1534 PUTNAM AVENUE APARTMENTS,Multifamily Incentives Program,11/23/2018,,966925,1534,PUTNAM AVENUE,Brooklyn,11237,3033790054,3425122,BK-04,37,439,BK77,40.697856,-73.909149,40.69774,-73.908908,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,57059,1879,CLINTON AVENUE,Bronx,10457,2029500001,2009961,BX-06,17,36901,BX17,40.843471,-73.891324,40.84352,-73.891548,,Preservation,No,Non Prevailing Wage,1,16,12,0,0,1,0,5,18,6,1,0,0,0,30,0,30,30 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,57062,1933,CLINTON AVENUE,Bronx,10457,2029500072,2009987,BX-06,17,36901,BX17,40.844428,-73.890513,40.8441,-73.891106,,Preservation,No,Non Prevailing Wage,0,4,4,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,57063,1935,CLINTON AVENUE,Bronx,10457,2029500070,2009986,BX-06,17,36901,BX17,40.844455,-73.890491,40.84419,-73.891033,,Preservation,No,Non Prevailing Wage,1,4,3,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,66001,601,EAST 178 STREET,Bronx,10457,2030680061,2011977,BX-06,17,373,BX17,40.846919,-73.892861,40.84699,-73.892684,,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,74463,744,EAST TREMONT AVENUE,Bronx,10457,2029510054,2009996,BX-06,17,36901,BX17,40.84463,-73.889562,40.84441,-73.889688,,Preservation,No,Non Prevailing Wage,0,9,8,0,0,0,0,4,9,4,0,0,0,0,17,0,17,17 +66144,AQUINAS APARTMENTS LP.PLP.FY19,Multifamily Finance Program,11/21/2018,,74464,748,EAST TREMONT AVENUE,Bronx,10457,2029510056,2009997,BX-06,17,36901,BX17,40.844578,-73.889453,40.84436,-73.889566,,Preservation,No,Non Prevailing Wage,1,10,5,0,0,1,0,4,9,4,0,0,0,0,17,0,17,17 +67684,56 WEST 125TH STREET,Multifamily Incentives Program,11/21/2018,,986413,56,WEST 125 STREET,Manhattan,10027,1017220059,1053478,MN-10,9,200,MN11,40.807259,-73.944288,40.80703,-73.94448,,New Construction,No,Non Prevailing Wage,0,0,24,0,0,0,5,6,13,0,0,0,0,0,24,0,24,141 +67987,CONFIDENTIAL,Homeowner Assistance Program,11/21/2018,11/21/2018,,----,----,Bronx,,,,BX-08,11,,,,,,,11/21/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67988,CONFIDENTIAL,Homeowner Assistance Program,11/21/2018,11/21/2018,,----,----,Staten Island,,,,SI-01,,,,,,,,11/21/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67986,CONFIDENTIAL,Homeowner Assistance Program,11/19/2018,11/19/2018,,----,----,Queens,,,,QN-02,26,,,,,,,11/19/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67985,CONFIDENTIAL,Homeowner Assistance Program,11/16/2018,11/16/2018,,----,----,Queens,,,,QN-02,26,,,,,,,11/16/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67990,CONFIDENTIAL,Homeowner Assistance Program,11/16/2018,11/16/2018,,----,----,Bronx,,,,BX-11,13,,,,,,,11/16/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68054,37-49 81ST STREET CONDOMINIUMS,Multifamily Incentives Program,11/16/2018,01/07/2019,969148,37-49,81 STREET,Queens,11372,,,QN-03,21,283,QN28,40.749304,-73.885165,,,01/07/2019,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,6,0,0,0,0,0,0,6,6,28 +67984,CONFIDENTIAL,Homeowner Assistance Program,11/15/2018,11/15/2018,,----,----,Queens,,,,QN-13,31,,,,,,,11/15/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65599,FAILE700LLC.HRP.FY19,Multifamily Finance Program,11/14/2018,,77389,700,FAILE STREET,Bronx,10474,2027630185,2006547,BX-02,17,93,BX27,40.814583,-73.886487,40.81476,-73.886371,,Preservation,No,Non Prevailing Wage,1,0,18,0,0,0,4,8,7,0,0,0,0,0,19,0,19,19 +68053,522 EVERGREEN AVENUE APARTMENTS,Multifamily Incentives Program,11/14/2018,,290804,522,EVERGREEN AVENUE,Brooklyn,11221,3033490032,3076566,BK-04,34,399,BK78,40.691538,-73.918003,40.69135,-73.918191,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68052,1605 NEW YORK AVENUE,Multifamily Incentives Program,11/13/2018,01/09/2019,986298,1605,NEW YORK AVENUE,Brooklyn,11210,3075610032,3425743,BK-17,45,784,BK91,40.633401,-73.944786,40.63349,-73.944498,01/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,3,2,0,0,0,0,0,5,0,5,16 +68050,305 STOCKHOLM STREET APARTMENTS,Multifamily Incentives Program,11/09/2018,11/09/2018,934109,305,STOCKHOLM STREET,Brooklyn,11237,3032480050,3342229,BK-04,37,445,BK77,40.702982,-73.919378,40.70309,-73.919605,11/09/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +68051,CRESCENT IRON HOUSE,Multifamily Incentives Program,11/09/2018,,987147,40-05,CRESCENT STREET,Queens,11101,4004060024,4004898,QN-01,26,33,QN68,40.753259,-73.93814,40.75316,-73.937768,,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,2,6,2,0,0,0,0,0,10,0,10,33 +68049,434 MANHATTAN AVENUE APARTMENTS,Multifamily Incentives Program,11/02/2018,11/02/2018,966560,434,MANHATTAN AVENUE,Brooklyn,11222,3027240007,3425611,BK-01,33,499,BK76,40.719327,-73.946912,40.71939,-73.94675,11/02/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,10 +68033,1552 MYRTLE AVENUE APARTMENTS,Multifamily Incentives Program,11/01/2018,04/05/2019,972196,1552,MYRTLE AVENUE,Brooklyn,11237,0,3426800,BK-04,37,439,BK77,40.699491,-73.911491,40.69931,-73.911589,04/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +68047,70 BUSHWICK AVENUE APARTMENTS,Multifamily Incentives Program,11/01/2018,01/16/2019,978167,70,BUSHWICK AVENUE,Brooklyn,11211,3027780023,3330030,BK-01,34,495,BK90,40.712811,-73.941128,40.71274,-73.941384,01/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,20 +68064,SEA RISE II – NEW BAY PARK,Multifamily Incentives Program,11/01/2018,,809836,2750,WEST 33 STREET,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.578309,-74.000234,40.57792,-74.001166,,New Construction,No,Non Prevailing Wage,72,0,127,0,0,1,53,94,39,13,0,0,0,1,200,0,200,200 +67942,CONFIDENTIAL,Homeowner Assistance Program,10/31/2018,10/31/2018,,----,----,Queens,,,,QN-04,21,,,,,,,10/31/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67944,CONFIDENTIAL,Homeowner Assistance Program,10/31/2018,10/31/2018,,----,----,Staten Island,,,,SI-02,51,,,,,,,10/31/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +68032,18 STANHOPE STREET APARTMENTS,Multifamily Incentives Program,10/31/2018,,969856,18,STANHOPE STREET,Brooklyn,11221,3032640018,3426015,BK-04,34,395,BK78,40.694802,-73.926211,40.69478,-73.925846,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,4,4,0,0,0,0,0,8,0,8,26 +64736,DOE. 3188 VILLA AVE,Multifamily Finance Program,10/30/2018,,979673,3188,VILLA AVENUE,Bronx,10468,2033110040,2098417,BX-07,11,411,BX05,40.876776,-73.886771,40.87667,-73.886489,,New Construction,No,Prevailing Wage,41,27,0,0,0,0,60,8,0,0,0,0,0,0,68,0,68,68 +68031,2004 DAVIDSON AVENUE,Multifamily Incentives Program,10/30/2018,,972224,2004,DAVIDSON AVENUE,Bronx,10453,2028630011,2124649,BX-05,14,243,BX36,40.852895,-73.909328,40.8528,-73.909125,,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,1,1,5,0,0,0,0,0,7,0,7,34 +68067,1543 EAST 19TH STREET APARTMENTS,Multifamily Incentives Program,10/30/2018,10/15/2019,897241,1543,EAST 19 STREET,Brooklyn,11230,3067660086,,BK-14,48,546,BK43,40.612374,-73.955083,40.61255,-73.954806,10/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,15,0,0,7,8,0,0,0,0,0,15,0,15,50 +67937,CONFIDENTIAL,Homeowner Assistance Program,10/29/2018,10/29/2018,,----,----,Staten Island,,,,SI-01,,,,,,,,10/29/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68029,77 CLAY STREET APARTMENTS,Multifamily Incentives Program,10/29/2018,03/21/2019,966929,77,CLAY STREET,Brooklyn,11222,3024830062,3425149,BK-01,33,579,BK76,40.736647,-73.954664,40.73684,-73.95479,03/21/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,0,1,1,0,0,0,3,0,3,8 +68030,BUSHWICK AND EVERGREEN APARTMENTS,Multifamily Incentives Program,10/29/2018,12/11/2019,216229,869,BUSHWICK AVENUE,Brooklyn,11221,3032740001,3251905,BK-04,34,395,BK78,40.693852,-73.925927,40.69417,-73.925082,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,6 +68030,BUSHWICK AND EVERGREEN APARTMENTS,Multifamily Incentives Program,10/29/2018,12/11/2019,987191,340,EVERGREEN AVENUE,Brooklyn,11221,3032740001,3400818,BK-04,34,395,BK78,40.694752,-73.924833,40.69417,-73.925082,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,61,0,16,11,34,0,0,0,0,0,61,0,61,217 +68027,2028 DAVIDSON AVENUE,Multifamily Incentives Program,10/26/2018,,972223,2028,DAVIDSON AVENUE,Bronx,10453,2028630017,,BX-05,14,243,BX36,40.853348,-73.908915,40.85336,-73.908611,,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,18 +68028,AVALON MIDTOWN WEST,Multifamily Incentives Program,10/26/2018,,33794,234,WEST 50 STREET,Manhattan,10019,1010210001,1085498,MN-05,3,125,MN17,40.761722,-73.984777,40.76182,-73.985817,,Preservation,No,Non Prevailing Wage,0,0,0,0,28,0,0,0,0,0,0,0,0,28,28,0,28,550 +61608,RAVEN HALL TOWER,Multifamily Finance Program,10/25/2018,,985974,2006,SURF AVENUE,Brooklyn,11224,3070720002,3424222,BK-13,47,352,BK21,40.57482,-73.986829,40.57439,-73.98685,,New Construction,No,Non Prevailing Wage,0,22,193,0,0,1,50,79,54,33,0,0,0,0,216,0,216,216 +67939,CONFIDENTIAL,Homeowner Assistance Program,10/25/2018,10/25/2018,,----,----,Brooklyn,,,,BK-11,47,,,,,,,10/25/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +68025,287 MAPLE STREET APARTMENTS,Multifamily Incentives Program,10/25/2018,04/17/2019,332217,287,MAPLE STREET,Brooklyn,11225,3050300052,3425758,BK-09,40,800,BK60,40.660788,-73.951417,40.661,-73.95128,04/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,1,0,0,0,0,0,2,0,2,6 +68026,289 MAPLE STREET APARTMENTS,Multifamily Incentives Program,10/25/2018,04/17/2019,987253,289,MAPLE STREET,Brooklyn,11225,3050300051,3424352,BK-09,40,800,BK60,40.660791,-73.95137,40.661,-73.951208,04/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +67803,CONFIDENTIAL,Homeowner Assistance Program,10/24/2018,04/19/2019,,----,----,Brooklyn,,,,BK-03,36,,,,,,,04/19/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +68023,1140 BUSHWICK AVENUE,Multifamily Incentives Program,10/24/2018,12/05/2018,977039,1140,BUSHWICK AVENUE,Brooklyn,11221,3033660041,3076942,BK-04,34,397,BK78,40.689359,-73.917912,40.68912,-73.918129,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +68021,115 SUYDAM STREET,Multifamily Incentives Program,10/23/2018,01/25/2019,983900,115,SUYDAM STREET,Brooklyn,11221,3032070051,3426732,BK-04,34,423,BK78,40.698426,-73.928255,40.69859,-73.928403,01/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +68022,49 ROCHESTER AVENUE APARTMENTS,Multifamily Incentives Program,10/23/2018,09/09/2019,977128,49,ROCHESTER AVENUE,Brooklyn,11233,3017090003,,BK-03,36,299,BK61,40.677587,-73.927499,40.6775,-73.927272,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,3,0,3,7 +67428,NUEVA ERA APARTMENTS,Multifamily Finance Program,10/22/2018,10/22/2018,6213,287,AUDUBON AVENUE,Manhattan,10033,1021520036,1063596,MN-12,10,261,MN36,40.847724,-73.933067,40.84771,-73.932728,10/22/2018,Preservation,Yes,Non Prevailing Wage,0,0,5,12,0,0,5,2,7,3,0,0,0,0,17,0,17,17 +67428,NUEVA ERA APARTMENTS,Multifamily Finance Program,10/22/2018,10/22/2018,6215,289,AUDUBON AVENUE,Manhattan,10033,1021520038,1063597,MN-12,10,261,MN36,40.847779,-73.933028,40.8478,-73.932662,10/22/2018,Preservation,Yes,Non Prevailing Wage,14,1,1,0,0,1,4,3,7,2,1,0,0,0,17,0,17,17 +67429,DESHLER APARTMENT,Multifamily Finance Program,10/22/2018,10/22/2018,3385,1871,ADAM C POWELL BOULEVARD,Manhattan,10026,1018230061,1055033,MN-10,9,216,MN11,40.801776,-73.953568,40.80162,-73.953182,10/22/2018,Preservation,Yes,Non Prevailing Wage,23,7,3,1,0,1,0,20,10,5,0,0,0,0,35,0,35,35 +67429,DESHLER APARTMENT,Multifamily Finance Program,10/22/2018,10/22/2018,28175,71,ST NICHOLAS AVENUE,Manhattan,10026,1018230058,1055032,MN-10,9,216,MN11,40.801208,-73.95255,40.80148,-73.952878,10/22/2018,Preservation,Yes,Non Prevailing Wage,17,5,0,3,0,0,1,13,11,0,0,0,0,0,25,0,25,25 +67490,MORNINGSIDE APTS.HUDMF.FY19,Multifamily Finance Program,10/22/2018,10/22/2018,37769,107,WEST 109 STREET,Manhattan,10025,1018640023,1056033,MN-07,7,193,MN09,40.801412,-73.962002,40.80166,-73.962136,10/22/2018,Preservation,Yes,Non Prevailing Wage,39,7,2,0,0,1,14,22,13,0,0,0,0,0,49,0,49,49 +68020,140 STANHOPE STREET APARTMENTS,Multifamily Incentives Program,10/22/2018,01/25/2019,977060,140,STANHOPE STREET,Brooklyn,11221,3032660023,3425864,BK-04,37,421,BK78,40.698187,-73.922893,40.69816,-73.922579,01/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,9 +63734,BRISA. 1488 NY AVE. BPHN SENIOR RESIDENCES,Multifamily Finance Program,10/18/2018,,927013,1488,NEW YORK AVENUE,Brooklyn,11210,3049960001,3336201,BK-17,45,788,BK42,40.636835,-73.945176,40.63665,-73.945465,,New Construction,No,Prevailing Wage,88,0,0,0,0,1,88,1,0,0,0,0,0,0,89,0,89,89 +67938,CONFIDENTIAL,Homeowner Assistance Program,10/18/2018,10/18/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/18/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +68019,847 MADISON STREET APARTMENTS,Multifamily Incentives Program,10/18/2018,11/27/2019,331263,847,MADISON STREET,Brooklyn,11221,3014810053,3039666,BK-03,41,375,BK35,40.687987,-73.92223,40.6882,-73.92223,11/27/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +67958,CONFIDENTIAL,Homeowner Assistance Program,10/17/2018,10/17/2018,,----,----,Brooklyn,,,,BK-11,44,,,,,,,10/17/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +68018,310 GRAHAM AVENUE APARTMENTS,Multifamily Incentives Program,10/17/2018,10/17/2018,976524,310,GRAHAM AVENUE,Brooklyn,11211,3027710001,3338163,BK-01,34,495,BK90,40.713194,-73.944154,40.71326,-73.943858,10/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,2,3,3,0,0,0,0,8,0,8,24 +68017,2954 BRIGHTON 3 STREET,Multifamily Incentives Program,10/16/2018,,212307,2954,BRIGHTON 3 STREET,Brooklyn,11235,3086620133,3424552,BK-13,48,364,BK19,40.579402,-73.96507,40.57948,-73.965387,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,0,5,0,0,0,0,0,5,0,5,16 +64376,41 WHIPPLE ST (LOS SURES PHASE 1),Multifamily Incentives Program,10/15/2018,,847142,41,WHIPPLE STREET,Brooklyn,11206,3022730026,3387559,BK-01,33,507,BK75,40.701213,-73.944842,40.70159,-73.944845,,Preservation,No,Non Prevailing Wage,0,0,50,0,0,0,0,0,24,26,0,0,0,0,50,0,50,51 +68015,237 HAWTHORNE APARTMENTS,Multifamily Incentives Program,10/15/2018,03/13/2019,986345,237,HAWTHORNE STREET,Brooklyn,11225,3050440076,3424446,BK-09,40,802,BK60,40.657725,-73.952266,40.65801,-73.952407,03/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,9 +68016,239 HAWTHORNE APARTMENTS,Multifamily Incentives Program,10/15/2018,03/07/2019,987254,239,HAWTHORNE STREET,Brooklyn,11225,3050440075,3425928,BK-09,40,802,BK60,40.657728,-73.95222,40.65801,-73.952338,03/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,9 +68014,"CLARK, THE",Multifamily Incentives Program,10/12/2018,10/15/2019,974321,310,CLARKSON AVENUE,Brooklyn,11226,3048370017,3425768,BK-17,40,818,BK95,40.65546,-73.949298,40.65513,-73.949407,10/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,51,0,18,17,14,2,0,0,0,0,51,0,51,170 +63931,39-11 QUEENS BLVD,Multifamily Incentives Program,10/09/2018,,978673,39-11,QUEENS BOULEVARD,Queens,11104,4001910044,,QN-02,26,179,QN31,40.743982,-73.925669,40.74434,-73.925391,,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,1,5,3,0,0,0,0,0,9,0,9,48 +67856,194 22 STREET,Multifamily Incentives Program,10/04/2018,,145687,194,22 STREET,Brooklyn,11232,3006460018,3426317,BK-07,38,145,BK32,40.661616,-73.995412,40.66155,-73.995743,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +67924,CONFIDENTIAL,Homeowner Assistance Program,10/04/2018,10/04/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,10/04/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67925,CONFIDENTIAL,Homeowner Assistance Program,10/04/2018,10/04/2018,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/04/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67793,CONFIDENTIAL,Homeowner Assistance Program,10/03/2018,03/14/2019,,----,----,Bronx,,,,BX-04,16,,,,,,,03/14/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67457,LAKEVIEW APARTMENTS HDFC.HPO.FY19,Multifamily Finance Program,09/28/2018,09/28/2018,2511,1250,5 AVENUE,Manhattan,10029,1016120001,1051514,MN-11,9,17401,MN33,40.794384,-73.951027,40.7943,-73.949969,09/28/2018,Preservation,Yes,Non Prevailing Wage,0,46,13,0,0,0,0,9,18,0,32,0,0,0,59,0,59,59 +67457,LAKEVIEW APARTMENTS HDFC.HPO.FY19,Multifamily Finance Program,09/28/2018,09/28/2018,804641,35,EAST 106 STREET,Manhattan,10029,1016120001,1051514,MN-11,9,17401,MN33,40.793853,-73.950071,40.7943,-73.949969,09/28/2018,Preservation,Yes,Non Prevailing Wage,0,49,10,0,0,0,0,9,18,0,32,0,0,0,59,0,59,59 +67457,LAKEVIEW APARTMENTS HDFC.HPO.FY19,Multifamily Finance Program,09/28/2018,09/28/2018,804644,4,EAST 107 STREET,Manhattan,10029,1016120001,1051514,MN-11,9,17401,MN33,40.794831,-73.950344,40.7943,-73.949969,09/28/2018,Preservation,Yes,Non Prevailing Wage,0,146,18,0,0,0,0,41,68,55,0,0,0,0,164,0,164,164 +67457,LAKEVIEW APARTMENTS HDFC.HPO.FY19,Multifamily Finance Program,09/28/2018,09/28/2018,805031,1590,MADISON AVENUE,Manhattan,10029,1016120001,1051514,MN-11,9,17401,MN33,40.794051,-73.949193,40.7943,-73.949969,09/28/2018,Preservation,Yes,Non Prevailing Wage,0,147,17,0,0,0,0,41,68,55,0,0,0,0,164,0,164,164 +66805,TRIPLE HDFC.HPO.FY19,Multifamily Finance Program,09/27/2018,,452,2232,1 AVENUE,Manhattan,10029,1017080048,1079384,MN-11,8,178,MN34,40.794966,-73.936151,40.79498,-73.93575,,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +66805,TRIPLE HDFC.HPO.FY19,Multifamily Finance Program,09/27/2018,,502,2295,1 AVENUE,Manhattan,10035,1017950024,1084003,MN-11,8,188,MN34,40.797408,-73.934393,40.79757,-73.934671,,Preservation,No,Non Prevailing Wage,1,0,12,0,0,0,0,0,13,0,0,0,0,0,13,0,13,13 +66805,TRIPLE HDFC.HPO.FY19,Multifamily Finance Program,09/27/2018,,966644,235,EAST 105 STREET,Manhattan,10029,1016550015,1052411,MN-11,8,170,MN33,40.79053,-73.944284,40.79046,-73.943558,,Preservation,No,Non Prevailing Wage,0,0,35,8,4,1,3,22,23,0,0,0,0,0,48,0,48,48 +67855,319 GRAHAM AVENUE APARTMENTS,Multifamily Incentives Program,09/27/2018,12/19/2018,948572,319,GRAHAM AVENUE,Brooklyn,11211,3027700024,,BK-01,34,495,BK90,40.713688,-73.944258,40.71364,-73.944557,12/19/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +67778,CONFIDENTIAL,Homeowner Assistance Program,09/21/2018,09/21/2018,,----,----,Queens,,,,QN-12,27,,,,,,,09/21/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67854,309 VAN SICLEN AVENUE,Multifamily Incentives Program,09/21/2018,01/09/2019,978367,309,VAN SICLEN AVENUE,Brooklyn,11207,3040100014,,BK-05,37,1152,BK82,40.672348,-73.890211,40.67234,-73.889937,01/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +66752,869 MYRTLE AVENUE,Multifamily Incentives Program,09/20/2018,,982562,849,MYRTLE AVENUE,Brooklyn,11206,3017470055,,BK-03,36,257,BK75,40.695486,-73.948341,40.69573,-73.948381,,New Construction,No,Non Prevailing Wage,0,0,58,0,0,0,6,11,26,15,0,0,0,0,0,58,58,59 +67858,376 FRANKLIN AVENUE APARTMENTS,Multifamily Incentives Program,09/20/2018,09/20/2018,965995,376,FRANKLIN AVENUE,Brooklyn,11238,3019730043,3401722,BK-03,35,229,BK69,40.686026,-73.956663,40.68593,-73.956926,09/20/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,20 +67731,CONFIDENTIAL,Homeowner Assistance Program,09/19/2018,02/08/2019,,----,----,Queens,,,,QN-14,31,,,,,,,02/08/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67779,CONFIDENTIAL,Homeowner Assistance Program,09/19/2018,09/19/2018,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/19/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67852,3430 THIRD AVENUE,Multifamily Incentives Program,09/19/2018,,958754,3434,3 AVENUE,Bronx,10456,2026080038,,BX-03,16,185,BX35,40.828945,-73.906759,40.82889,-73.906444,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,3,1,0,0,0,0,0,0,4,0,4,11 +67872,1081 TIFFANY STREET APARTMENTS,Multifamily Incentives Program,09/18/2018,,853744,1081,TIFFANY STREET,Bronx,10459,2027160040,2128501,BX-02,17,131,BX33,40.82534,-73.894862,40.82572,-73.895129,,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,1,3,4,0,0,0,0,0,8,0,8,26 +67780,CONFIDENTIAL,Homeowner Assistance Program,09/17/2018,09/17/2018,,----,----,Bronx,,,,BX-10,13,,,,,,,09/17/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67850,1520 PROSPECT PLACE APARTMENTS,Multifamily Incentives Program,09/17/2018,09/17/2018,889657,1516,PROSPECT PLACE,Brooklyn,11213,3013680033,3393618,BK-08,36,347,BK61,40.673011,-73.92635,40.67273,-73.926159,09/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,3,0,0,0,0,0,0,0,3,0,3,10 +67869,209 KENT STREET APARTMENTS,Multifamily Incentives Program,09/14/2018,10/07/2019,319372,209,KENT STREET,Brooklyn,11222,3025510040,3425623,BK-01,33,575,BK76,40.731093,-73.952499,40.73131,-73.95234,10/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,2,1,0,0,0,0,0,3,0,3,10 +67848,764 EAST 152ND STREET APARTMENTS,Multifamily Incentives Program,09/13/2018,10/31/2019,983949,764,EAST 152 STREET,Bronx,10455,2026430040,,BX-01,8,73,BX34,40.815713,-73.906539,40.81548,-73.906655,10/31/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,8,0,0,0,0,0,0,8,0,8,24 +67846,216 FREEMAN STREET APARTMENTS,Multifamily Incentives Program,09/11/2018,01/16/2019,296279,216,FREEMAN STREET,Brooklyn,11222,3025130029,,BK-01,33,575,BK76,40.734626,-73.953048,40.73427,-73.952619,01/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,4,5,0,0,0,0,0,9,0,9,30 +67857,69-17 38TH AVENUE APARTMENTS,Multifamily Incentives Program,09/11/2018,10/25/2019,952357,69-17,38 AVENUE,Queens,11377,4012820064,4541435,QN-02,26,263,QN63,40.747017,-73.896234,40.74722,-73.895736,10/25/2019,New Construction,No,Non Prevailing Wage,0,0,1,1,0,0,0,0,2,0,0,0,0,0,2,0,2,8 +67845,RUTLAND ROAD APARTMENTS,Multifamily Incentives Program,09/10/2018,10/25/2018,976698,664,RUTLAND ROAD,Brooklyn,11203,3048130019,3415584,BK-09,41,87401,BK60,40.660143,-73.938493,40.65992,-73.938651,10/25/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,16 +67845,RUTLAND ROAD APARTMENTS,Multifamily Incentives Program,09/10/2018,10/25/2018,976699,668,RUTLAND ROAD,Brooklyn,11203,3048130020,3415585,BK-09,41,87401,BK60,40.660148,-73.938395,40.65992,-73.938561,10/25/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,2,0,0,0,0,0,2,0,2,16 +67844,SOMERS APARTMENTS,Multifamily Incentives Program,09/07/2018,12/05/2018,977715,62,SOMERS STREET,Brooklyn,11233,3015420016,3420220,BK-16,37,369,BK79,40.67892,-73.90968,40.67873,-73.909648,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,0,4,0,0,0,0,0,4,0,4,24 +67844,SOMERS APARTMENTS,Multifamily Incentives Program,09/07/2018,12/05/2018,977716,66,SOMERS STREET,Brooklyn,11233,3015420019,3420221,BK-16,37,369,BK79,40.678936,-73.909535,40.67874,-73.909521,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,0,4,0,0,0,0,0,4,0,4,24 +67781,CONFIDENTIAL,Homeowner Assistance Program,09/06/2018,09/06/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,09/06/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67843,44 KENT STREET APARTMENTS,Multifamily Incentives Program,09/06/2018,04/17/2019,977961,44,KENT STREET,Brooklyn,11222,3025560058,3399250,BK-01,33,565,BK76,40.730388,-73.959763,40.7301,-73.959535,04/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,13,0,3,3,7,0,0,0,0,0,13,0,13,42 +67842,1395 NELSON AVENUE APARTMENTS,Multifamily Incentives Program,09/04/2018,,62210,1400,EDWARD L GRANT HIGHWAY,Bronx,10452,2028740001,,BX-04,16,21302,BX26,40.841961,-73.922484,40.84231,-73.922306,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,2,3,0,0,0,0,0,6,0,6,17 +67868,10-44 JACKSON AVENUE APARTMENTS,Multifamily Incentives Program,08/31/2018,,667071,Oct-44,JACKSON AVENUE,Queens,11101,4000407502,4618443,QN-02,26,7,QN31,40.742254,-73.953169,40.74214,-73.952834,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,2,0,0,0,0,0,0,3,0,3,10 +67666,CONFIDENTIAL,Homeowner Assistance Program,08/30/2018,08/30/2018,,----,----,Brooklyn,,,,BK-05,37,,,,,,,08/30/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +67840,303 WEST 137TH STREET APARTMENTS,Multifamily Incentives Program,08/30/2018,,41060,303,WEST 137 STREET,Manhattan,10030,1020410014,1060648,MN-10,9,22102,MN03,40.817923,-73.945869,40.8182,-73.945984,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,2,1,2,0,0,0,0,0,5,0,5,16 +67664,CONFIDENTIAL,Homeowner Assistance Program,08/29/2018,08/29/2018,,----,----,Queens,,,,QN-06,29,,,,,,,08/29/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67665,CONFIDENTIAL,Homeowner Assistance Program,08/29/2018,08/29/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,08/29/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67839,SUNNYSIDE POINT,Multifamily Incentives Program,08/29/2018,,971542,47-18,GREENPOINT AVENUE,Queens,11104,4001510032,,QN-02,26,235,QN31,40.74258,-73.917594,40.74249,-73.917197,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +67838,915 DAWSON STREET APARTMENTS,Multifamily Incentives Program,08/28/2018,,60671,915,DAWSON STREET,Bronx,10459,2026970022,2128891,BX-02,17,87,BX33,40.820187,-73.897168,40.82047,-73.897294,,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,4,5,0,0,0,0,0,9,0,9,29 +67837,1764 UNION STREET APARTMENTS,Multifamily Incentives Program,08/27/2018,01/03/2019,983311,1764,UNION STREET,Brooklyn,11213,3014030030,3425320,BK-09,41,349,BK61,40.667721,-73.929506,40.66748,-73.929413,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,3,2,0,0,0,0,0,6,0,6,17 +67634,CONFIDENTIAL,Homeowner Assistance Program,08/24/2018,08/16/2019,,----,----,Brooklyn,,,,BK-16,41,,,,,,,08/16/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67836,682 CHAUNCEY STREET APARTMENTS,Multifamily Incentives Program,08/24/2018,04/05/2019,984916,682,CHAUNCEY STREET,Brooklyn,11207,3034510009,3418133,BK-04,37,403,BK78,40.684337,-73.908371,40.68424,-73.908299,04/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +67663,CONFIDENTIAL,Homeowner Assistance Program,08/23/2018,08/23/2018,,----,----,Queens,,,,QN-06,29,,,,,,,08/23/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67835,GLASSWORKS APARTMENTS,Multifamily Incentives Program,08/23/2018,,966850,336,HIMROD STREET,Brooklyn,11237,3032800021,3326367,BK-04,37,443,BK77,40.702314,-73.917665,40.70227,-73.917283,,New Construction,No,Non Prevailing Wage,0,0,0,0,19,0,3,6,10,0,0,0,0,0,19,0,19,63 +67834,GLORIA BLEECKER,Multifamily Incentives Program,08/22/2018,,210779,387,BLEECKER STREET,Brooklyn,11237,3033020042,3075549,BK-04,37,441,BK77,40.702232,-73.914236,40.70238,-73.914434,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,19 +67751,24 FORD STREET,Multifamily Incentives Program,08/17/2018,08/17/2018,966856,24,FORD STREET,Brooklyn,11213,3014150035,3425987,BK-09,41,349,BK61,40.665388,-73.929365,40.66537,-73.929595,08/17/2018,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,2,3,5,0,0,0,0,0,10,0,10,49 +67750,1051 NEW YORK AVENUE,Multifamily Incentives Program,08/15/2018,,343376,1051,NEW YORK AVENUE,Brooklyn,11203,3049040052,3110166,BK-17,45,856,BK91,40.647715,-73.946324,40.64763,-73.946011,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +67748,523 WILLOUGHBY AVENUE APARTMENTS,Multifamily Incentives Program,08/14/2018,11/06/2019,396354,523,WILLOUGHBY AVENUE,Brooklyn,11206,3017590072,3048824,BK-03,36,25901,BK75,40.693996,-73.948202,40.69419,-73.948425,11/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +67747,830 FLATBUSH AVENUE APARTMENTS,Multifamily Incentives Program,08/13/2018,03/07/2019,986777,830,FLATBUSH AVENUE,Brooklyn,11226,3050820018,3328172,BK-14,40,50801,BK42,40.652329,-73.959204,40.65227,-73.959521,03/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,20 +67745,126 BOERUM STREET APARTMENTS,Multifamily Incentives Program,08/10/2018,08/10/2018,972199,126,BOERUM STREET,Brooklyn,11206,3030790014,3418257,BK-01,34,505,BK90,40.705807,-73.943825,40.70558,-73.943839,08/10/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +67662,CONFIDENTIAL,Homeowner Assistance Program,08/08/2018,08/08/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,08/08/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67743,1157 MYRTLE AVENUE APARTMENTS,Multifamily Incentives Program,08/08/2018,02/12/2019,340504,1157,MYRTLE AVENUE,Brooklyn,11206,3031700009,,BK-04,34,389,BK78,40.697047,-73.934733,40.69723,-73.934679,02/12/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,1,2,0,0,0,0,3,0,3,10 +67656,CONFIDENTIAL,Homeowner Assistance Program,08/06/2018,08/06/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,08/06/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67742,M TOWER,Multifamily Incentives Program,08/06/2018,,982041,1930,AVENUE M,Brooklyn,11230,3067480011,3181120,BK-14,48,538,BK43,40.618465,-73.955799,40.61825,-73.955292,,New Construction,No,Non Prevailing Wage,0,0,0,0,15,0,4,5,6,0,0,0,0,0,15,0,15,48 +67555,CONFIDENTIAL,Homeowner Assistance Program,07/31/2018,07/31/2018,,----,----,Manhattan,,,,MN-09,9,,,,,,,07/31/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +67554,CONFIDENTIAL,Homeowner Assistance Program,07/27/2018,07/27/2018,,----,----,Brooklyn,,,,BK-18,46,,,,,,,07/27/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67741,682 BUSHWICK AVENUE,Multifamily Incentives Program,07/27/2018,07/27/2018,952330,682,BUSHWICK AVENUE,Brooklyn,11221,3032040024,3398044,BK-04,34,393,BK78,40.696963,-73.93165,40.69675,-73.93191,07/27/2018,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,0,2,3,0,0,0,0,0,5,0,5,23 +67542,CONFIDENTIAL,Homeowner Assistance Program,07/26/2018,07/26/2018,,----,----,Brooklyn,,,,BK-14,45,,,,,,,07/26/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67549,CONFIDENTIAL,Homeowner Assistance Program,07/26/2018,07/26/2018,,----,----,Queens,,,,QN-13,31,,,,,,,07/26/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53010,BSDC 233 STUYVESANT AVE HDFC.PLP.FY18,Multifamily Finance Program,07/25/2018,,378861,233,STUYVESANT AVENUE,Brooklyn,11221,3016460010,3045199,BK-03,36,293,BK35,40.686657,-73.932782,40.68667,-73.932504,,Preservation,No,Non Prevailing Wage,2,0,1,5,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,19792,118,EAST 117 STREET,Manhattan,10035,1016440065,1052316,MN-11,8,182,MN34,40.799663,-73.942004,40.79948,-73.942142,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,4,4,4 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,19982,217,EAST 118 STREET,Manhattan,10035,1017830109,1054549,MN-11,8,188,MN34,40.799011,-73.938455,40.79908,-73.938068,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,19983,219,EAST 118 STREET,Manhattan,10035,1017830010,1054521,MN-11,8,188,MN34,40.798997,-73.938426,40.79905,-73.938007,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20052,425,EAST 118 STREET,Manhattan,10035,1018060111,1054850,MN-11,8,178,MN34,40.79701,-73.933725,40.79706,-73.933284,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20183,345,EAST 119 STREET,Manhattan,10035,1017960021,1054749,MN-11,8,194,MN34,40.798166,-73.934519,40.79841,-73.934529,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,4,4,4 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20205,424,EAST 119 STREET,Manhattan,10035,1018060037,1054834,MN-11,8,178,MN34,40.797622,-73.933273,40.7973,-73.933082,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,2,0,0,0,0,2,0,0,0,0,0,2,2,2 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20257,215,EAST 120 STREET,Manhattan,10035,1017850008,1054575,MN-11,8,194,MN34,40.800284,-73.937579,40.80038,-73.937265,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20283,328,EAST 120 STREET,Manhattan,10035,1017960041,1054763,MN-11,8,194,MN34,40.799182,-73.934807,40.79885,-73.934825,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,20685,38,EAST 126 STREET,Manhattan,10035,1017500057,1054059,MN-11,9,198,MN34,40.806552,-73.940517,40.80633,-73.9405,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,0,3,3,3 +65847,NHP - HOPE HOMES CLUSTER AMENDMENT,Multifamily Finance Program,07/18/2018,07/18/2018,24788,50,EAST 127 STREET,Manhattan,10035,1017510050,1054112,MN-11,9,206,MN03,40.806886,-73.939372,40.80683,-73.93952,07/18/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,4,0,0,0,0,4,0,0,0,0,0,4,4,4 +67740,"FREEMAN CORNER APARTMENTS, THE",Multifamily Incentives Program,07/18/2018,07/18/2018,984045,215,FREEMAN STREET,Brooklyn,11222,3025050028,3063970,BK-01,33,575,BK76,40.73464,-73.953056,40.73491,-73.952882,07/18/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,4,4,0,0,0,0,0,8,0,8,25 +67739,20 JEFFERSON STREET APARTMENTS,Multifamily Incentives Program,07/17/2018,07/17/2018,970660,20,JEFFERSON STREET,Brooklyn,11206,3031700019,3072176,BK-04,34,389,BK78,40.69762,-73.934596,40.69752,-73.934415,07/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,8 +67738,197 FREEMAN STREET,Multifamily Incentives Program,07/16/2018,11/09/2018,986856,197,FREEMAN STREET,Brooklyn,11222,3025050050,3063978,BK-01,33,575,BK76,40.734582,-73.953658,40.73478,-73.95373,11/09/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,1,2,3,0,0,0,0,0,6,0,6,20 +66569,975 LIBERTY AVENUE,Multifamily Incentives Program,07/13/2018,,983705,975,LIBERTY AVENUE,Brooklyn,11208,3041570032,,BK-05,37,1196,BK82,40.677769,-73.873593,40.67799,-73.873592,,New Construction,No,Non Prevailing Wage,0,4,6,0,0,0,0,4,6,0,0,0,0,0,10,0,10,41 +67737,2953 BARNES AVENUE APARTMENTS,Multifamily Incentives Program,07/13/2018,,47591,2953,BARNES AVENUE,Bronx,10467,2045490035,2054889,BX-11,13,340,BX07,40.869151,-73.863412,40.86917,-73.863694,,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,16 +65337,332 EAST 54TH STREET.GHPP.FY19,Multifamily Finance Program,07/12/2018,,270214,332,EAST 54 STREET,Brooklyn,11203,3047010036,3102994,BK-17,41,862,BK96,40.650817,-73.926385,40.65058,-73.926533,,Preservation,No,Non Prevailing Wage,0,4,15,0,0,0,0,13,6,0,0,0,0,0,19,0,19,19 +50815,BUCKINGHAM - 2044 RICHMOND TERR - RESILIENCY,Multifamily Finance Program,07/11/2018,,776615,2044,RICHMOND TERRACE,Staten Island,10302,5010030014,5023696,SI-01,49,207,SI28,40.640368,-74.131298,40.6402,-74.131446,,Preservation,No,Prevailing Wage,36,0,0,0,0,0,36,0,0,0,0,0,0,0,36,0,36,36 +67736,894 BUSHWICK AVENUE,Multifamily Incentives Program,07/11/2018,07/18/2018,968130,894,BUSHWICK AVENUE,Brooklyn,11221,3032730035,3074661,BK-04,34,395,BK78,40.693489,-73.925289,40.69329,-73.925523,07/18/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,2,2,0,0,0,0,0,4,0,4,20 +67735,12 FORD STREET,Multifamily Incentives Program,07/10/2018,07/10/2018,966853,12,FORD STREET,Brooklyn,11213,3014150031,3426323,BK-09,41,349,BK61,40.66566,-73.929411,40.66565,-73.929646,07/10/2018,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,2,3,5,0,0,0,0,0,10,0,10,49 +67734,618 BUSHWICK AVENUE,Multifamily Incentives Program,07/06/2018,07/20/2018,956113,618,BUSHWICK AVENUE,Brooklyn,11206,3031700026,3425505,BK-04,34,389,BK78,40.698207,-73.933899,40.69784,-73.933932,07/20/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,30,0,2,16,12,0,0,0,0,0,30,0,30,99 +67732,37 MONTROSE AVENUE,Multifamily Incentives Program,07/05/2018,11/28/2018,984321,37,MONTROSE AVENUE,Brooklyn,11206,3030490037,3071055,BK-01,34,511,BK90,40.706811,-73.948751,40.70704,-73.948736,11/28/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,10 +67733,516 WEST 162 STREET,Multifamily Incentives Program,07/05/2018,,966857,516,WEST 162 STREET,Manhattan,10032,1021200026,1089321,MN-12,7,245,MN36,40.836351,-73.940628,40.83622,-73.940925,,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,5,1,0,0,0,0,0,6,0,6,20 +63811,EAST VILLAGE I HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,,11559,364,EAST 10 STREET,Manhattan,10009,1003920017,1004768,MN-03,2,28,MN28,40.726419,-73.978854,40.7262,-73.978901,,Preservation,No,Non Prevailing Wage,40,4,0,1,0,1,0,21,9,16,0,0,0,0,46,0,46,46 +63811,EAST VILLAGE I HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,,11571,384,EAST 10 STREET,Manhattan,10009,1003920027,1004772,MN-03,2,28,MN28,40.726152,-73.978216,40.72592,-73.97823,,Preservation,No,Non Prevailing Wage,35,4,5,0,0,1,0,13,19,13,0,0,0,0,45,0,45,45 +63811,EAST VILLAGE I HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,,804313,355,EAST 10 STREET,Manhattan,10009,1003930056,1078014,MN-03,2,28,MN28,40.726619,-73.979291,40.72673,-73.979031,,Preservation,No,Non Prevailing Wage,30,2,0,0,1,0,0,6,13,14,0,0,0,0,33,0,33,33 +63811,EAST VILLAGE I HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,,804335,610,EAST 11 STREET,Manhattan,10009,1003930014,1078017,MN-03,2,28,MN28,40.727231,-73.97893,40.72697,-73.978858,,Preservation,No,Non Prevailing Wage,20,6,1,1,0,0,0,5,10,13,0,0,0,0,28,0,28,28 +66723,JAMIES PLACE HDFC. HUDMF. FY18,Multifamily Finance Program,07/02/2018,07/02/2018,19794,127,EAST 117 STREET,Manhattan,10035,1016450012,1052336,MN-11,8,182,MN34,40.799556,-73.941708,40.79967,-73.94143,07/02/2018,Preservation,Yes,Non Prevailing Wage,27,4,2,1,0,1,5,6,12,0,12,0,0,0,35,0,35,35 +66723,JAMIES PLACE HDFC. HUDMF. FY18,Multifamily Finance Program,07/02/2018,07/02/2018,19956,126,EAST 118 STREET,Manhattan,10035,1016450059,1052358,MN-11,8,182,MN34,40.800113,-73.941116,40.79991,-73.941228,07/02/2018,Preservation,Yes,Non Prevailing Wage,14,3,1,0,0,0,0,2,5,10,1,0,0,0,18,0,18,18 +66723,JAMIES PLACE HDFC. HUDMF. FY18,Multifamily Finance Program,07/02/2018,07/02/2018,20113,101,EAST 119 STREET,Manhattan,10035,1017680001,1054361,MN-11,9,196,MN34,40.801098,-73.941469,40.80124,-73.941349,07/02/2018,Preservation,Yes,Non Prevailing Wage,27,5,1,0,0,0,0,10,7,16,0,0,0,0,33,0,33,33 +66723,JAMIES PLACE HDFC. HUDMF. FY18,Multifamily Finance Program,07/02/2018,07/02/2018,20120,115,EAST 119 STREET,Manhattan,10035,1017680007,1054365,MN-11,9,196,MN34,40.800953,-73.941122,40.80111,-73.940945,07/02/2018,Preservation,Yes,Non Prevailing Wage,13,4,3,0,0,0,0,6,4,5,5,0,0,0,20,0,20,20 +66723,JAMIES PLACE HDFC. HUDMF. FY18,Multifamily Finance Program,07/02/2018,07/02/2018,20125,132,EAST 119 STREET,Manhattan,10035,1017670060,1054359,MN-11,9,182,MN34,40.80078,-73.940754,40.80057,-73.940833,07/02/2018,Preservation,Yes,Non Prevailing Wage,16,2,1,0,0,1,0,5,6,4,5,0,0,0,20,0,20,20 +66836,INWOOD HOUSING HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,07/02/2018,26982,10,POST AVENUE,Manhattan,10034,1022200043,1064761,MN-12,10,291,MN01,40.862801,-73.924809,40.86313,-73.924831,07/02/2018,Preservation,Yes,Non Prevailing Wage,73,14,3,4,0,1,0,63,30,2,0,0,0,0,95,0,95,95 +66911,HUDSON PIERS HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,07/02/2018,5605,1626,AMSTERDAM AVENUE,Manhattan,10031,1020720030,1061768,MN-09,7,225,MN04,40.822231,-73.949818,40.82251,-73.950002,07/02/2018,Preservation,Yes,Non Prevailing Wage,21,4,2,2,0,0,0,14,10,5,0,0,0,0,29,0,29,29 +66911,HUDSON PIERS HDFC.HUDMF.FY18,Multifamily Finance Program,07/02/2018,07/02/2018,5608,1640,AMSTERDAM AVENUE,Manhattan,10031,1020730029,1061795,MN-09,7,225,MN04,40.822788,-73.949406,40.82298,-73.949662,07/02/2018,Preservation,Yes,Non Prevailing Wage,44,4,3,3,0,0,0,34,20,0,0,0,0,0,54,0,54,54 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,223407,88,COFFEY STREET,Brooklyn,11231,3005870041,3323749,BK-06,38,53,BK33,40.675663,-74.013281,40.67579,-74.013076,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,223410,92,COFFEY STREET,Brooklyn,11231,3005870145,3323751,BK-06,38,53,BK33,40.675729,-74.013379,40.67591,-74.013242,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,1,0,0,1,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,235151,9,DWIGHT STREET,Brooklyn,11231,3005240010,3008341,BK-06,38,59,BK33,40.678398,-74.00627,40.67816,-74.006252,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,1,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,387428,71,VISITATION PLACE,Brooklyn,11231,3005310022,3323672,BK-06,38,59,BK33,40.678774,-74.009439,40.6786,-74.009612,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,387430,81,VISITATION PLACE,Brooklyn,11231,3005310018,3323668,BK-06,38,59,BK33,40.678911,-74.009641,40.67877,-74.009857,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,1,1,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,387435,89,VISITATION PLACE,Brooklyn,11231,3005310013,3323666,BK-06,38,59,BK33,40.679023,-74.009803,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,1,1,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814538,75,VISITATION PLACE,Brooklyn,11231,3005310022,3323670,BK-06,38,59,BK33,40.678829,-74.009518,40.6786,-74.009612,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,2,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814539,77,VISITATION PLACE,Brooklyn,11231,3005310022,3323671,BK-06,38,59,BK33,40.678856,-74.009558,40.6786,-74.009612,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814540,79,VISITATION PLACE,Brooklyn,11231,3005310022,3392498,BK-06,38,59,BK33,40.678883,-74.009601,40.6786,-74.009612,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814541,85,VISITATION PLACE,Brooklyn,11231,3005310018,3323667,BK-06,38,59,BK33,40.678969,-74.00972,40.67877,-74.009857,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814542,87,VISITATION PLACE,Brooklyn,11231,3005310018,3392526,BK-06,38,59,BK33,40.678996,-74.009763,40.67877,-74.009857,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814543,93,VISITATION PLACE,Brooklyn,11231,3005310013,3323664,BK-06,38,59,BK33,40.679078,-74.009882,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814544,97,VISITATION PLACE,Brooklyn,11231,3005310013,3323665,BK-06,38,59,BK33,40.679133,-74.009965,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,0,1,0,1,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,814545,95,VISITATION PLACE,Brooklyn,11231,3005310013,3392540,BK-06,38,59,BK33,40.679106,-74.009925,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890385,99,VISITATION PLACE,Brooklyn,11231,3005310013,3392541,BK-06,38,59,BK33,40.679161,-74.010005,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,1,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890464,73,VISITATION PLACE,Brooklyn,11231,3005310022,3392497,BK-06,38,59,BK33,40.678801,-74.009478,40.6786,-74.009612,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890469,83,VISITATION PLACE,Brooklyn,11231,3005310018,3392525,BK-06,38,59,BK33,40.678938,-74.00968,40.67877,-74.009857,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890483,91,VISITATION PLACE,Brooklyn,11231,3005310013,3392539,BK-06,38,59,BK33,40.679051,-74.009843,40.67895,-74.010127,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,1,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890492,15,DWIGHT STREET,Brooklyn,11231,3005240010,3400616,BK-06,38,59,BK33,40.678272,-74.006414,40.67816,-74.006252,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,1,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890495,17,DWIGHT STREET,Brooklyn,11231,3005240010,3345405,BK-06,38,59,BK33,40.67823,-74.006461,40.67816,-74.006252,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,0,0,1,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890499,19,DWIGHT STREET,Brooklyn,11231,3005240010,3400615,BK-06,38,59,BK33,40.678189,-74.006508,40.67816,-74.006252,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890505,13,DWIGHT STREET,Brooklyn,11231,3005240010,3345404,BK-06,38,59,BK33,40.678316,-74.006363,40.67816,-74.006252,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,1,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890510,86,COFFEY STREET,Brooklyn,11231,3005870041,3323749,BK-06,38,53,BK33,40.675631,-74.013234,40.67579,-74.013076,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890552,90A,COFFEY STREET,Brooklyn,11231,3005870041,3323748,BK-06,38,53,BK33,40.675696,-74.013328,40.67579,-74.013076,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890581,2,VERONA STREET,Brooklyn,11231,,,BK-06,38,59,BK33,40.677662,-74.006367,,,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890654,4,VERONA STREET,Brooklyn,11231,,,BK-06,38,59,BK33,40.677709,-74.006435,,,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890655,6,VERONA STREET,Brooklyn,11231,,,BK-06,38,59,BK33,40.677758,-74.006504,,,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890656,10,VERONA STREET,Brooklyn,11231,,,BK-06,38,59,BK33,40.677852,-74.006644,,,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890657,12,VERONA STREET,Brooklyn,11231,,,BK-06,38,59,BK33,40.677901,-74.006717,,,07/02/2018,Preservation,Yes,Non Prevailing Wage,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,890658,94,COFFEY STREET,Brooklyn,11231,3005870145,3323751,BK-06,38,53,BK33,40.67576,-74.013426,40.67591,-74.013242,07/02/2018,Preservation,Yes,Non Prevailing Wage,1,0,1,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +66985,RED HOOK GARDENS-ARTICLE XI,Multifamily Incentives Program,07/02/2018,07/02/2018,895394,88 1/2,COFFEY STREET,Brooklyn,11231,3005870041,3323749,BK-06,38,53,BK33,40.675663,-74.013281,40.67579,-74.013076,07/02/2018,Preservation,Yes,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +51867,THE ROBESON,Multifamily Finance Program,06/29/2018,,927152,407,LENOX AVENUE,Manhattan,10037,1019150032,,MN-10,9,226,MN03,40.811202,-73.942995,40.81137,-73.943342,,New Construction,No,Non Prevailing Wage,0,16,24,0,38,1,16,25,32,6,0,0,0,0,79,0,79,79 +52986,ESSIE JEFFRIES APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,5738,1990,AMSTERDAM AVENUE,Manhattan,10032,1021170034,1062764,MN-12,7,245,MN36,40.833829,-73.941339,40.83408,-73.941516,,Preservation,No,Prevailing Wage,20,3,1,0,0,1,0,0,15,5,5,0,0,0,25,0,25,25 +52986,ESSIE JEFFRIES APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,42862,531,WEST 160 STREET,Manhattan,10032,1021190058,1062843,MN-12,7,245,MN36,40.83516,-73.941663,40.83556,-73.942056,,Preservation,No,Prevailing Wage,6,11,3,0,0,0,0,0,20,0,0,0,0,0,20,0,20,20 +52986,ESSIE JEFFRIES APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,42869,547,WEST 160 STREET,Manhattan,10032,1021190066,1062847,MN-12,7,245,MN36,40.835295,-73.941977,40.83579,-73.942616,,Preservation,No,Prevailing Wage,4,14,2,0,0,0,0,0,20,0,0,0,0,0,20,0,20,20 +54377,CONFIDENTIAL,Multifamily Finance Program,06/29/2018,,,----,----,Brooklyn,,,,BK-07,38,,,,,,,,New Construction,No,Non Prevailing Wage,1,18,22,8,0,1,11,13,14,12,0,0,0,0,50,0,50,50 +59107,LA CABANA HOUSES,Multifamily Finance Program,06/29/2018,,328793,391,LORIMER STREET,Brooklyn,11206,3030310018,3070857,BK-01,34,511,BK90,40.708637,-73.948486,40.70861,-73.948955,,Preservation,No,Non Prevailing Wage,59,7,4,0,0,1,0,21,15,35,0,0,0,0,71,0,71,71 +59107,LA CABANA HOUSES,Multifamily Finance Program,06/29/2018,,328801,417,LORIMER STREET,Brooklyn,11206,3030220025,3070801,BK-01,34,511,BK90,40.709391,-73.948612,40.70933,-73.948936,,Preservation,No,Non Prevailing Wage,40,5,3,0,0,0,0,16,9,23,0,0,0,0,48,0,48,48 +59107,LA CABANA HOUSES,Multifamily Finance Program,06/29/2018,,380885,16,TEN EYCK STREET,Brooklyn,11206,3030220016,3070800,BK-01,34,511,BK90,40.709584,-73.950047,40.70926,-73.949733,,Preservation,No,Non Prevailing Wage,41,4,2,1,0,0,0,16,9,23,0,0,0,0,48,0,48,48 +63761,168TH STREET GARAGE,Multifamily Finance Program,06/29/2018,,927041,92-29,168 STREET,Queens,11433,4102090115,4442250,QN-12,27,444,QN61,40.705839,-73.79221,40.70559,-73.791666,,New Construction,No,Non Prevailing Wage,20,39,193,134,0,1,38,160,165,24,0,0,0,0,387,0,387,387 +63763,CONEY ISLAND PHASE 1 (L&M),Multifamily Finance Program,06/29/2018,,984726,2926,WEST 19 STREET,Brooklyn,11224,3070600019,,BK-13,47,326,BK21,40.576052,-73.985756,40.57573,-73.986242,,New Construction,No,Non Prevailing Wage,90,89,244,22,0,1,113,175,121,37,0,0,0,0,446,0,446,446 +65363,LAFAYETTE MORRISON APARTMENTS,Multifamily Incentives Program,06/29/2018,06/29/2018,51117,820,BOYNTON AVENUE,Bronx,10473,2036270040,2092723,BX-09,17,28,BX09,40.82007,-73.87622,40.82026,-73.875577,06/29/2018,Preservation,Yes,Non Prevailing Wage,4,189,21,4,4,0,0,38,147,37,0,0,0,0,0,222,222,222 +65363,LAFAYETTE MORRISON APARTMENTS,Multifamily Incentives Program,06/29/2018,06/29/2018,806311,880,BOYNTON AVENUE,Bronx,10473,2036270050,2092724,BX-09,17,28,BX09,40.821314,-73.876507,40.82134,-73.875835,06/29/2018,Preservation,Yes,Non Prevailing Wage,2,197,16,6,5,0,0,38,152,36,0,0,0,0,0,226,226,226 +65363,LAFAYETTE MORRISON APARTMENTS,Multifamily Incentives Program,06/29/2018,06/29/2018,806847,825,MORRISON AVENUE,Bronx,10473,2036270030,2092725,BX-09,17,28,BX09,40.82084,-73.872649,40.82057,-73.873227,06/29/2018,Preservation,Yes,Non Prevailing Wage,3,206,12,4,1,0,0,37,151,38,0,0,0,0,0,226,226,226 +65363,LAFAYETTE MORRISON APARTMENTS,Multifamily Incentives Program,06/29/2018,06/29/2018,806848,875,MORRISON AVENUE,Bronx,10473,2036270020,2092726,BX-09,17,28,BX09,40.821609,-73.872835,40.82166,-73.873486,06/29/2018,Preservation,Yes,Non Prevailing Wage,5,205,13,0,3,0,0,38,151,37,0,0,0,0,0,226,226,226 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,28125,45,ST NICHOLAS AVENUE,Manhattan,10026,1018220015,1054981,MN-10,9,216,MN11,40.800206,-73.952489,40.80014,-73.952854,,Preservation,No,Non Prevailing Wage,2,9,1,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,38571,281,WEST 118 STREET,Manhattan,10026,1019240104,1058438,MN-10,9,220,MN11,40.805446,-73.953728,40.80573,-73.95384,,Preservation,No,Non Prevailing Wage,1,6,3,0,0,0,1,1,8,0,0,0,0,0,10,0,10,10 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,40514,30,WEST 132 STREET,Manhattan,10037,1017290049,1053860,MN-10,9,208,MN03,40.811316,-73.940145,40.81113,-73.94034,,Preservation,No,Non Prevailing Wage,2,6,2,0,0,0,0,0,0,0,10,0,0,0,10,0,10,10 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,41278,118,WEST 139 STREET,Manhattan,10030,1020070046,1060040,MN-10,9,230,MN03,40.817195,-73.940298,40.81699,-73.940407,,Preservation,No,Non Prevailing Wage,2,7,1,0,0,0,0,0,0,10,0,0,0,0,10,0,10,10 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,41279,120,WEST 139 STREET,Manhattan,10030,1020070047,1060041,MN-10,9,230,MN03,40.817226,-73.940367,40.81702,-73.94049,,Preservation,No,Non Prevailing Wage,1,5,13,0,0,1,10,0,10,0,0,0,0,0,20,0,20,20 +65373,MMN1801- UPTOWN 6,Multifamily Finance Program,06/29/2018,,41280,122,WEST 139 STREET,Manhattan,10030,1020070048,1060042,MN-10,9,230,MN03,40.817253,-73.940436,40.81706,-73.94057,,Preservation,No,Non Prevailing Wage,0,8,12,0,0,0,10,0,10,0,0,0,0,0,20,0,20,20 +65374,TMN209G-2 - 640 RIVERSIDE,Multifamily Finance Program,06/29/2018,,27322,640,RIVERSIDE DRIVE,Manhattan,10031,1020880074,1062326,MN-09,7,225,MN04,40.82492,-73.954123,40.82476,-73.953801,,Preservation,No,Non Prevailing Wage,0,0,98,34,0,1,6,56,50,20,1,0,0,0,133,0,133,133 +65621,"KINGS BAY HOUSES SECTION TWO, INC. HRP.FY18",Multifamily Finance Program,06/29/2018,,197456,3020,AVENUE Y,Brooklyn,11235,3074490001,3320934,BK-15,48,626,BK17,40.59209,-73.936463,40.59136,-73.936295,,Preservation,No,Non Prevailing Wage,119,0,0,0,0,0,8,16,64,31,0,0,0,0,0,119,119,119 +65621,"KINGS BAY HOUSES SECTION TWO, INC. HRP.FY18",Multifamily Finance Program,06/29/2018,,807684,2525,BATCHELDER STREET,Brooklyn,11235,3074490001,3320932,BK-15,48,626,BK17,40.591314,-73.937238,40.59136,-73.936295,,Preservation,No,Non Prevailing Wage,118,0,0,0,0,1,8,16,64,31,0,0,0,0,0,119,119,119 +65621,"KINGS BAY HOUSES SECTION TWO, INC. HRP.FY18",Multifamily Finance Program,06/29/2018,,807685,2533,BATCHELDER STREET,Brooklyn,11235,3074490001,3320933,BK-15,48,626,BK17,40.591193,-73.937217,40.59136,-73.936295,,Preservation,No,Non Prevailing Wage,119,0,0,0,0,0,8,16,64,31,0,0,0,0,0,119,119,119 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,60470,2055,DAVIDSON AVENUE,Bronx,10453,2031930030,2014159,BX-05,14,251,BX36,40.854129,-73.908231,40.8542,-73.908484,,Preservation,No,Non Prevailing Wage,4,13,2,0,0,1,0,0,7,13,0,0,0,0,20,0,20,20 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,60471,2059,DAVIDSON AVENUE,Bronx,10453,2031930028,2014158,BX-05,14,251,BX36,40.854231,-73.908144,40.85433,-73.908361,,Preservation,No,Non Prevailing Wage,2,17,1,0,0,0,0,0,7,13,0,0,0,0,20,0,20,20 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,74440,65,EAST TREMONT AVENUE,Bronx,10453,2028290024,2007939,BX-05,14,241,BX41,40.850934,-73.907754,40.85112,-73.90778,,Preservation,No,Non Prevailing Wage,1,13,0,0,0,1,0,0,0,6,9,0,0,0,15,0,15,15 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,97431,1870,MORRIS AVENUE,Bronx,10453,2028050008,2007616,BX-05,14,23301,BX41,40.848602,-73.908376,40.8486,-73.908191,,Preservation,No,Non Prevailing Wage,0,17,8,0,0,0,0,14,10,1,0,0,0,0,25,0,25,25 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,97435,1910,MORRIS AVENUE,Bronx,10453,2028060005,2007636,BX-05,14,23301,BX41,40.849976,-73.907908,40.85,-73.907589,,Preservation,No,Non Prevailing Wage,0,8,4,0,0,1,5,0,4,0,4,0,0,0,13,0,13,13 +65730,MT HOPE PRESERVATION APARTMENTS LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,119101,1982,WALTON AVENUE,Bronx,10453,2028290006,2007925,BX-05,14,241,BX41,40.851812,-73.907952,40.85182,-73.907598,,Preservation,No,Non Prevailing Wage,0,24,11,0,0,2,5,22,10,0,0,0,0,0,37,0,37,37 +66145,BK UNION AVENUE CLUSTER LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,49240,744,BECK STREET,Bronx,10455,2027070040,2005520,BX-02,8,85,BX33,40.816096,-73.898955,40.81582,-73.898887,,Preservation,No,Non Prevailing Wage,0,18,2,0,0,1,0,7,14,0,0,0,0,0,21,0,21,21 +66145,BK UNION AVENUE CLUSTER LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,116555,987,UNION AVENUE,Bronx,10459,2026690044,2004847,BX-03,17,133,BX35,40.823674,-73.901484,40.82336,-73.901965,,Preservation,No,Non Prevailing Wage,1,25,9,0,0,0,0,0,31,4,0,0,0,0,35,0,35,35 +66145,BK UNION AVENUE CLUSTER LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,116556,991,UNION AVENUE,Bronx,10459,2026690042,2004846,BX-03,17,133,BX35,40.823745,-73.901455,40.82353,-73.901954,,Preservation,No,Non Prevailing Wage,1,11,7,0,0,1,0,1,11,8,0,0,0,0,20,0,20,20 +66145,BK UNION AVENUE CLUSTER LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,122023,1100,WEST FARMS ROAD,Bronx,10459,2027510010,2006152,BX-02,17,12701,BX27,40.826274,-73.890409,40.82619,-73.890138,,Preservation,No,Non Prevailing Wage,1,11,3,0,0,1,0,0,8,8,0,0,0,0,16,0,16,16 +66145,BK UNION AVENUE CLUSTER LLC.PLP.FY18,Multifamily Finance Program,06/29/2018,,122024,1106,WEST FARMS ROAD,Bronx,10459,2027510012,2006153,BX-02,17,12701,BX27,40.826397,-73.890307,40.82634,-73.889979,,Preservation,No,Non Prevailing Wage,0,14,18,0,0,0,0,11,13,4,4,0,0,0,32,0,32,32 +66721,ROBESON APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,06/29/2018,3419,1990,ADAM C POWELL BOULEVARD,Manhattan,10026,1019250036,1058449,MN-10,9,220,MN11,40.805491,-73.950882,40.80576,-73.951185,06/29/2018,Preservation,Yes,Non Prevailing Wage,33,5,2,0,0,1,0,2,28,11,0,0,0,0,41,0,41,41 +66721,ROBESON APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,06/29/2018,3420,1995,ADAM C POWELL BOULEVARD,Manhattan,10026,1019040061,1057585,MN-10,9,220,MN11,40.805577,-73.950795,40.80543,-73.950419,06/29/2018,Preservation,Yes,Non Prevailing Wage,30,7,2,0,0,1,0,18,12,10,0,0,0,0,40,0,40,40 +66769,1414 CENTRAL AVENUE,Multifamily Finance Program,06/29/2018,,984712,14-14,CENTRAL AVENUE,Queens,11691,4155360012,,QN-14,31,103202,QN15,40.606379,-73.750535,40.60656,-73.750941,,New Construction,No,Non Prevailing Wage,30,30,81,0,0,1,27,61,39,15,0,0,0,0,142,0,142,142 +66834,EAST VILLAGE II HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,6443,195,AVENUE B,Manhattan,10009,1003950001,1004926,MN-03,2,28,MN28,40.7282,-73.978919,40.72813,-73.97867,,Preservation,No,Non Prevailing Wage,13,2,1,0,0,0,0,0,6,5,5,0,0,0,16,0,16,16 +66834,EAST VILLAGE II HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,6446,199,AVENUE B,Manhattan,10009,1003950003,1077464,MN-03,2,28,MN28,40.72831,-73.978839,40.72829,-73.978554,,Preservation,No,Non Prevailing Wage,15,6,1,0,1,0,0,0,13,10,0,0,0,0,23,0,23,23 +66834,EAST VILLAGE II HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,11395,627,EAST 9 STREET,Manhattan,10009,1003920048,1004783,MN-03,2,28,MN28,40.725867,-73.979327,40.72595,-73.979028,,Preservation,No,Non Prevailing Wage,27,4,4,0,0,0,0,6,17,12,0,0,0,0,35,0,35,35 +66834,EAST VILLAGE II HDFC.HUDMF.FY18,Multifamily Finance Program,06/29/2018,,11562,374,EAST 10 STREET,Manhattan,10009,1003920022,1004769,MN-03,2,28,MN28,40.726284,-73.978533,40.72608,-73.978623,,Preservation,No,Non Prevailing Wage,13,4,0,0,0,0,0,5,5,1,6,0,0,0,17,0,17,17 +67327,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,06/29/2018,,----,----,Queens,,,,QN-13,27,,,,,,,06/29/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67336,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,01/24/2019,,----,----,Queens,,,,QN-12,27,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67341,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,01/24/2019,,----,----,Queens,,,,QN-13,23,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67354,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,,,----,----,Queens,,,,QN-13,23,,,,,,,,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1 +67356,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,01/24/2019,,----,----,Queens,,,,QN-13,31,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67358,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,01/24/2019,,----,----,Queens,,,,QN-09,30,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67359,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,01/24/2019,,----,----,Queens,,,,QN-03,21,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67362,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,07/23/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,07/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67365,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,08/02/2018,,----,----,Brooklyn,,,,BK-17,41,,,,,,,08/02/2018,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +67373,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,10/15/2018,,----,----,Brooklyn,,,,BK-16,41,,,,,,,10/15/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67376,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,07/23/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,07/23/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67379,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,07/23/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,07/23/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67380,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,09/14/2018,,----,----,Brooklyn,,,,BK-02,35,,,,,,,09/14/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67382,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,09/20/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,09/20/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67384,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,08/11/2018,,----,----,Bronx,,,,BX-05,14,,,,,,,08/11/2018,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67385,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,10/29/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,10/29/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67389,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,09/28/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,09/28/2018,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67400,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,10/05/2018,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/05/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67413,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,10/02/2018,,----,----,Brooklyn,,,,BK-08,36,,,,,,,10/02/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67414,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,10/25/2018,,----,----,Brooklyn,,,,BK-05,37,,,,,,,10/25/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67421,CONFIDENTIAL,Homeowner Assistance Program,06/29/2018,12/10/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,12/10/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,9707,51,COLUMBIA STREET,Manhattan,10002,1003330001,1082667,MN-03,2,2201,MN28,40.716686,-73.980463,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,220,0,0,0,0,20,40,140,20,0,0,0,0,0,220,220,220 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,804199,71,COLUMBIA STREET,Manhattan,10002,1003330001,1082665,MN-03,2,2201,MN28,40.717218,-73.980174,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,207,0,0,0,0,1,20,144,42,0,0,0,0,0,207,207,207 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,804200,75,COLUMBIA STREET,Manhattan,10002,1003330001,1082666,MN-03,2,2201,MN28,40.717567,-73.979986,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,226,0,0,0,0,21,40,144,21,0,0,0,0,0,226,226,226 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,804201,85,COLUMBIA STREET,Manhattan,10002,1003330001,1086089,MN-03,2,2201,MN28,40.717891,-73.979824,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,124,0,0,0,0,0,40,42,42,0,0,0,0,0,124,124,124 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,849292,85-89,COLUMBIA STREET,Manhattan,10002,1003330001,1086089,MN-03,2,2201,MN28,40.717891,-73.979824,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,206,0,0,0,2,1,20,145,42,0,0,0,0,0,208,208,208 +67427,MASARYK TOWERS,Multifamily Finance Program,06/29/2018,,849293,75-81,COLUMBIA STREET,Manhattan,10002,1003330001,1082666,MN-03,2,2201,MN28,40.717567,-73.979986,40.71788,-73.980845,,Preservation,No,Non Prevailing Wage,0,124,0,0,0,0,0,40,42,42,0,0,0,0,0,124,124,124 +68096,EL RIO II,Multifamily Incentives Program,06/29/2018,,968019,2064,BOSTON ROAD,Bronx,10460,2031400001,2013282,BX-06,15,361,BX17,40.841762,-73.878688,40.84163,-73.878403,,New Construction,No,Non Prevailing Wage,46,0,32,0,0,0,78,0,0,0,0,0,0,0,78,0,78,78 +58666,BRKG GND. AAPCI. 3 LIVONIA AVE. EDWIN'S PLACE,Multifamily Finance Program,06/28/2018,,968251,278,GRAFTON STREET,Brooklyn,11212,3035660006,,BK-16,41,894,BK81,40.661524,-73.917424,40.66146,-73.917878,,New Construction,No,Prevailing Wage,88,25,12,0,0,1,56,35,26,9,0,0,0,0,126,0,126,126 +63122,VOA. 112 EAST CLARKE PLACE,Multifamily Finance Program,06/28/2018,,974443,112,CLARKE PLACE EAST,Bronx,10452,2028390049,2129183,BX-04,16,22102,BX63,40.837558,-73.916927,40.83726,-73.91675,,New Construction,No,Prevailing Wage,121,0,0,0,0,1,98,23,1,0,0,0,0,0,122,0,122,122 +63769,LINWOOD PARK APARTMENTS,Multifamily Finance Program,06/28/2018,,976030,3002,ATLANTIC AVENUE,Brooklyn,11208,3039710019,,BK-05,37,1168,BK82,40.678249,-73.883607,40.67801,-73.88333,,New Construction,No,Non Prevailing Wage,38,2,59,0,0,1,25,25,34,16,0,0,0,0,100,0,100,100 +65269,1296 SHERIDAN AVENUE.HPO.FY2018,Multifamily Finance Program,06/28/2018,06/28/2018,109443,1296,SHERIDAN AVENUE,Bronx,10456,2028300001,2007963,BX-04,16,17902,BX14,40.836252,-73.914551,40.83608,-73.914327,06/28/2018,Preservation,Yes,Non Prevailing Wage,0,19,39,0,0,1,5,31,23,0,0,0,0,0,59,0,59,59 +65348,LIVONIA REGINA HDFC.HPO.FY18,Multifamily Finance Program,06/28/2018,,228119,2424,CROPSEY AVENUE,Brooklyn,11214,3069270060,3187596,BK-11,43,304,BK29,40.593993,-73.994804,40.59362,-73.99511,,Preservation,No,Non Prevailing Wage,110,57,0,0,0,1,100,66,1,1,0,0,0,0,168,0,168,168 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,318937,350,KEAP STREET,Brooklyn,11211,3024370003,3063347,BK-01,34,527,BK73,40.709262,-73.954477,40.70927,-73.954278,06/28/2018,Preservation,Yes,Non Prevailing Wage,16,8,4,0,0,1,0,11,11,7,0,0,0,0,29,0,29,29 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372025,354,SOUTH 2 STREET,Brooklyn,11211,3024240006,3063191,BK-01,34,527,BK73,40.710085,-73.953387,40.71003,-73.953686,06/28/2018,Preservation,Yes,Non Prevailing Wage,16,7,3,1,1,1,0,11,11,7,0,0,0,0,29,0,29,29 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372026,355,SOUTH 2 STREET,Brooklyn,11211,3024120033,3063049,BK-01,34,513,BK73,40.710041,-73.953217,40.71021,-73.953073,06/28/2018,Preservation,Yes,Non Prevailing Wage,13,9,0,2,0,0,0,7,11,6,0,0,0,0,24,0,24,24 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372027,358,SOUTH 2 STREET,Brooklyn,11211,3024240009,3063192,BK-01,34,527,BK73,40.710038,-73.953264,40.70986,-73.953488,06/28/2018,Preservation,Yes,Non Prevailing Wage,14,5,4,4,0,0,0,6,13,8,0,0,0,0,27,0,27,27 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372028,359,SOUTH 2 STREET,Brooklyn,11211,3024120030,3063048,BK-01,34,513,BK73,40.709997,-73.953102,40.71015,-73.952907,06/28/2018,Preservation,Yes,Non Prevailing Wage,11,8,3,1,0,1,0,2,6,16,0,0,0,0,24,0,24,24 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372029,362,SOUTH 2 STREET,Brooklyn,11211,3024240012,3063193,BK-01,34,527,BK73,40.709995,-73.953142,40.7098,-73.953326,06/28/2018,Preservation,Yes,Non Prevailing Wage,15,8,6,0,0,1,6,6,13,5,0,0,0,0,30,0,30,30 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372030,366,SOUTH 2 STREET,Brooklyn,11211,3024240014,3063194,BK-01,34,527,BK73,40.709948,-73.953019,40.70974,-73.953167,06/28/2018,Preservation,Yes,Non Prevailing Wage,14,6,2,1,0,1,0,2,5,17,0,0,0,0,24,0,24,24 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372031,367,SOUTH 2 STREET,Brooklyn,11211,3024120027,3063047,BK-01,34,513,BK73,40.709912,-73.952867,40.71007,-73.952701,06/28/2018,Preservation,Yes,Non Prevailing Wage,24,7,0,3,0,1,5,6,10,14,0,0,0,0,35,0,35,35 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372032,370,SOUTH 2 STREET,Brooklyn,11211,3024240016,3063195,BK-01,34,527,BK73,40.709904,-73.952896,40.70968,-73.953005,06/28/2018,Preservation,Yes,Non Prevailing Wage,16,5,1,2,0,0,0,2,6,16,0,0,0,0,24,0,24,24 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372033,373,SOUTH 2 STREET,Brooklyn,11211,3024120025,3063046,BK-01,34,513,BK73,40.709849,-73.952694,40.71,-73.9525,06/28/2018,Preservation,Yes,Non Prevailing Wage,12,5,2,2,0,1,0,4,18,0,0,0,0,0,22,0,22,22 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372037,385,SOUTH 2 STREET,Brooklyn,11211,3024130031,3063059,BK-01,34,513,BK73,40.709571,-73.951948,40.70974,-73.951822,06/28/2018,Preservation,Yes,Non Prevailing Wage,18,1,2,1,0,0,0,2,20,0,0,0,0,0,22,0,22,22 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372130,247,SOUTH 3 STREET,Brooklyn,11211,3024210035,3063184,BK-01,34,523,BK73,40.710718,-73.95757,40.71088,-73.957368,06/28/2018,Preservation,Yes,Non Prevailing Wage,20,4,2,2,0,1,0,6,22,1,0,0,0,0,29,0,29,29 +65362,GROWER-GREEN,Multifamily Incentives Program,06/28/2018,06/28/2018,372156,347,SOUTH 3 STREET,Brooklyn,11211,3024240035,3063200,BK-01,34,527,BK73,40.709289,-73.953665,40.70952,-73.953589,06/28/2018,Preservation,Yes,Non Prevailing Wage,16,4,6,2,0,1,5,1,16,7,0,0,0,0,29,0,29,29 +67302,176 KNICKERBOCKER AVENUE,Multifamily Incentives Program,06/28/2018,,321166,176,KNICKERBOCKER AVENUE,Brooklyn,11237,3031650029,3414343,BK-04,34,427,BK77,40.703921,-73.927362,40.70375,-73.927557,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +67369,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,08/30/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,08/30/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,2,2,2 +67375,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,10/01/2018,,----,----,Brooklyn,,,,BK-01,33,,,,,,,10/01/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +67377,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,03/22/2019,,----,----,Bronx,,,,BX-11,12,,,,,,,03/22/2019,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67381,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,08/30/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,08/30/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67386,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,02/09/2019,,----,----,Bronx,,,,BX-11,12,,,,,,,02/09/2019,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67412,CONFIDENTIAL,Homeowner Assistance Program,06/28/2018,12/08/2018,,----,----,Brooklyn,,,,BK-18,46,,,,,,,12/08/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61625,JERICHO RESIDENCE V HDFC.YR15.FY18,Multifamily Finance Program,06/27/2018,,92762,1928,LORING PLACE SOUTH,Bronx,10453,2032210017,2014856,BX-05,14,24502,BX36,40.854869,-73.914317,40.85473,-73.91405,,Preservation,No,Prevailing Wage,49,3,0,0,0,0,52,0,0,0,0,0,0,0,52,0,52,52 +61799,SECOND FARMS,Multifamily Finance Program,06/27/2018,,975338,1932,BRYANT AVENUE,Bronx,10460,2030050065,2129026,BX-06,17,359,BX17,40.839984,-73.882236,40.84,-73.881586,,New Construction,No,Non Prevailing Wage,75,86,157,0,0,1,51,128,90,50,0,0,0,0,319,0,319,319 +63771,700 MANIDA STREET,Multifamily Finance Program,06/27/2018,,984735,700,MANIDA STREET,Bronx,10474,2027630108,,BX-02,17,93,BX27,40.814412,-73.888365,40.81462,-73.888065,,New Construction,No,Non Prevailing Wage,46,29,32,0,0,1,25,44,19,20,0,0,0,0,108,0,108,108 +64885,ROCKAWAY VILLAGE PHASE 1 (RITA STARK SITE),Multifamily Finance Program,06/27/2018,,983133,20-02,MOTT AVENUE,Queens,11691,,,QN-14,31,103202,QN15,40.604317,-73.752959,,,,New Construction,No,Non Prevailing Wage,67,68,320,0,0,2,47,136,208,66,0,0,0,0,457,0,457,457 +65983,FAC.131-10 GUY R. BREWER BOULEVARD,Multifamily Finance Program,06/27/2018,,983915,13110,GUY R BREWER BOULEVARD,Queens,11434,4122770001,4266168,QN-12,28,294,QN02,40.675556,-73.777336,40.67575,-73.778024,,New Construction,No,Prevailing Wage,158,0,0,0,0,1,58,100,1,0,0,0,0,0,159,0,159,159 +67303,916 BERGEN APARTMENTS,Multifamily Incentives Program,06/27/2018,03/20/2019,209116,916,BERGEN STREET,Brooklyn,11238,3011490036,3028302,BK-08,35,305,BK61,40.677103,-73.957231,40.67679,-73.957069,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,1,0,0,3,0,0,0,0,4,0,4,12 +67425,COMUNILIFE,Multifamily Finance Program,06/27/2018,,821502,2124,CROTONA AVENUE,Bronx,10457,2030980001,2102390,BX-06,15,371,BX17,40.849086,-73.887946,40.84897,-73.887646,,Preservation,No,Non Prevailing Wage,0,0,85,0,0,1,43,0,42,0,0,0,0,1,86,0,86,86 +67425,COMUNILIFE,Multifamily Finance Program,06/27/2018,,842702,2111,HUGHES AVENUE,Bronx,10457,2030700030,2114115,BX-06,15,373,BX17,40.849329,-73.890233,40.84944,-73.890667,,Preservation,No,Non Prevailing Wage,0,0,71,0,0,1,36,0,35,0,0,0,0,1,72,0,72,72 +67425,COMUNILIFE,Multifamily Finance Program,06/27/2018,,858560,950,JENNINGS STREET,Bronx,10460,2029870025,2102389,BX-03,17,123,BX75,40.831924,-73.889337,40.83176,-73.889507,,Preservation,No,Non Prevailing Wage,0,0,83,0,0,1,42,0,41,0,0,0,0,1,84,0,84,84 +67426,RUPPERT HOUSE,Multifamily Finance Program,06/27/2018,06/27/2018,1065,235,EAST 92 STREET,Manhattan,10128,1015380021,1089874,MN-08,5,154,MN32,40.782043,-73.94978,40.78231,-73.949469,06/27/2018,Preservation,Yes,Non Prevailing Wage,139,0,0,0,0,0,0,0,34,89,16,0,0,0,0,139,139,139 +67426,RUPPERT HOUSE,Multifamily Finance Program,06/27/2018,06/27/2018,804760,222,EAST 93 STREET,Manhattan,10128,1015380021,1089873,MN-08,5,154,MN32,40.782965,-73.950061,40.78231,-73.949469,06/27/2018,Preservation,Yes,Non Prevailing Wage,241,163,0,0,0,1,84,163,158,0,0,0,0,0,0,405,405,405 +67426,RUPPERT HOUSE,Multifamily Finance Program,06/27/2018,06/27/2018,805276,1779,2 AVENUE,Manhattan,10128,1015380021,1078601,MN-08,5,154,MN32,40.782097,-73.948682,40.78231,-73.949469,06/27/2018,Preservation,Yes,Non Prevailing Wage,107,0,0,0,0,1,0,0,48,45,15,0,0,0,0,108,108,108 +63367,CUCS. 302-314 W 127TH STREET. KELLY HOTEL,Multifamily Finance Program,06/26/2018,,982777,314,WEST 127 STREET,Manhattan,10027,1019530041,1085352,MN-10,9,215,MN03,40.811659,-73.950679,40.81164,-73.951202,,New Construction,No,Prevailing Wage,71,0,45,0,0,1,57,24,31,5,0,0,0,0,117,0,117,117 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,49346,327,BEEKMAN AVENUE,Bronx,10454,2025550023,2003670,BX-01,8,33,BX39,40.808346,-73.914131,40.8085,-73.914341,,Preservation,No,Non Prevailing Wage,5,3,8,0,0,0,0,2,10,0,4,0,0,0,16,0,16,16 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,49347,328,BEEKMAN AVENUE,Bronx,10454,2025540010,2003659,BX-01,8,33,BX39,40.80836,-73.914099,40.80844,-73.913734,,Preservation,No,Non Prevailing Wage,28,11,33,1,0,0,0,18,21,23,11,0,0,0,73,0,73,73 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,49352,353,BEEKMAN AVENUE,Bronx,10454,2025550045,2003677,BX-01,8,33,BX39,40.809021,-73.913719,40.80912,-73.913957,,Preservation,No,Non Prevailing Wage,4,5,7,0,0,0,0,2,10,0,4,0,0,0,16,0,16,16 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,60304,673,EAST 140 STREET,Bronx,10454,2025680045,2003815,BX-01,8,2702,BX39,40.806779,-73.913342,40.80701,-73.913328,,Preservation,No,Non Prevailing Wage,27,2,20,0,0,0,0,5,11,28,5,0,0,0,49,0,49,49 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,60306,345,CYPRESS AVENUE,Bronx,10454,2025540049,2003662,BX-01,8,33,BX39,40.808376,-73.913004,40.80842,-73.913322,,Preservation,No,Non Prevailing Wage,16,4,19,1,0,0,0,8,16,11,5,0,0,0,40,0,40,40 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,60308,354,CYPRESS AVENUE,Bronx,10454,2025710014,2091294,BX-01,8,33,BX39,40.808439,-73.912946,40.80866,-73.912487,,Preservation,No,Non Prevailing Wage,37,10,31,3,0,0,4,22,46,9,0,0,0,0,81,0,81,81 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,62843,597,EAST 138 STREET,Bronx,10454,2025510065,2003635,BX-01,8,2702,BX39,40.806276,-73.916168,40.80657,-73.916171,,Preservation,No,Non Prevailing Wage,17,2,16,0,0,0,0,19,6,5,5,0,0,0,35,0,35,35 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,62846,613,EAST 138 STREET,Bronx,10454,2025510062,2003633,BX-01,8,2702,BX39,40.806135,-73.915839,40.80642,-73.915832,,Preservation,No,Non Prevailing Wage,16,1,11,1,0,0,0,12,6,5,6,0,0,0,29,0,29,29 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,62860,690,EAST 138 STREET,Bronx,10454,2025660010,2091290,BX-01,8,2702,BX39,40.805159,-73.91359,40.80492,-73.913728,,Preservation,No,Non Prevailing Wage,17,2,15,0,0,0,0,12,12,0,10,0,0,0,34,0,34,34 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,62986,611,EAST 139 STREET,Bronx,10454,2025520055,2003644,BX-01,8,2702,BX39,40.806854,-73.915448,40.80691,-73.915015,,Preservation,No,Non Prevailing Wage,21,6,15,2,0,0,0,12,21,10,1,0,0,0,44,0,44,44 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63080,636,EAST 140 STREET,Bronx,10454,2025520040,2003643,BX-01,8,2702,BX39,40.807276,-73.914566,40.80685,-73.914148,,Preservation,No,Non Prevailing Wage,23,8,18,0,0,0,0,16,22,6,5,0,0,0,49,0,49,49 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63084,683,EAST 140 STREET,Bronx,10454,2025680076,2003821,BX-01,8,2702,BX39,40.806718,-73.913194,40.80681,-73.912902,,Preservation,No,Non Prevailing Wage,29,19,17,1,0,0,0,8,36,6,16,0,0,0,66,0,66,66 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63173,574,EAST 141 STREET,Bronx,10454,2025530009,2091273,BX-01,8,2702,BX39,40.808639,-73.915847,40.80833,-73.91575,,Preservation,No,Non Prevailing Wage,8,8,13,0,0,0,0,0,12,17,0,0,0,0,29,0,29,29 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63176,592,EAST 141 STREET,Bronx,10454,2025530019,2091274,BX-01,8,2702,BX39,40.808248,-73.91493,40.80802,-73.915039,,Preservation,No,Non Prevailing Wage,15,2,12,0,0,0,0,1,19,9,0,0,0,0,29,0,29,29 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63177,593,EAST 141 STREET,Bronx,10454,2025550003,2003664,BX-01,8,33,BX39,40.808251,-73.914887,40.80842,-73.914652,,Preservation,No,Non Prevailing Wage,18,8,15,2,0,0,0,9,6,19,9,0,0,0,43,0,43,43 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63178,600,EAST 141 STREET,Bronx,10454,2025530023,2091278,BX-01,8,2702,BX39,40.808144,-73.914681,40.80791,-73.914768,,Preservation,No,Non Prevailing Wage,23,6,11,0,0,0,0,10,11,19,0,0,0,0,40,0,40,40 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63183,619,EAST 141 STREET,Bronx,10454,2025540005,2003657,BX-01,8,33,BX39,40.807899,-73.914053,40.80809,-73.91389,,Preservation,No,Non Prevailing Wage,17,6,5,1,0,0,0,6,13,8,2,0,0,0,29,0,29,29 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63184,620,EAST 141 STREET,Bronx,10454,2025530031,2003652,BX-01,8,2702,BX39,40.807885,-73.914063,40.80768,-73.914233,,Preservation,No,Non Prevailing Wage,17,10,13,2,0,0,0,19,11,12,0,0,0,0,42,0,42,42 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63186,625,EAST 141 STREET,Bronx,10454,2025540003,2003656,BX-01,8,33,BX39,40.807866,-73.913973,40.80799,-73.913662,,Preservation,No,Non Prevailing Wage,10,6,4,0,0,0,0,4,4,12,0,0,0,0,20,0,20,20 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63187,626,EAST 141 STREET,Bronx,10454,2025530036,2003653,BX-01,8,2702,BX39,40.80785,-73.913984,40.80752,-73.913858,,Preservation,No,Non Prevailing Wage,23,11,17,2,0,0,0,9,16,23,5,0,0,0,53,0,53,53 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63190,666,EAST 141 STREET,Bronx,10454,2025680051,2003816,BX-01,8,2702,BX39,40.807517,-73.913197,40.80723,-73.913129,,Preservation,No,Non Prevailing Wage,16,5,8,2,0,0,0,10,6,11,4,0,0,0,31,0,31,31 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63192,682,EAST 141 STREET,Bronx,10454,2025680054,2003817,BX-01,8,2702,BX39,40.807388,-73.912901,40.80711,-73.91289,,Preservation,No,Non Prevailing Wage,18,7,14,2,0,0,5,9,21,5,1,0,0,0,41,0,41,41 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,63193,688,EAST 141 STREET,Bronx,10454,2025680057,2003818,BX-01,8,2702,BX39,40.807341,-73.912789,40.80701,-73.912656,,Preservation,No,Non Prevailing Wage,20,0,9,1,0,0,0,6,10,14,0,0,0,0,30,0,30,30 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,99947,592,OAK TERRACE,Bronx,10454,2025550013,2003665,BX-01,8,33,BX39,40.80894,-73.914543,40.80886,-73.914944,,Preservation,No,Non Prevailing Wage,19,3,10,0,0,0,0,10,19,1,2,0,0,0,32,0,32,32 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,99948,593,OAK TERRACE,Bronx,10454,2025550030,2003672,BX-01,8,33,BX39,40.808992,-73.91464,40.80922,-73.914676,,Preservation,No,Non Prevailing Wage,21,3,11,3,0,0,0,9,15,13,1,0,0,0,38,0,38,38 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,99951,601,OAK TERRACE,Bronx,10454,2025550028,2003671,BX-01,8,33,BX39,40.808907,-73.914394,40.80914,-73.914448,,Preservation,No,Non Prevailing Wage,13,5,4,2,0,0,0,6,10,7,1,0,0,0,24,0,24,24 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,104140,324,POWERS AVENUE,Bronx,10454,2025720001,2091300,BX-01,8,33,BX39,40.807516,-73.912388,40.80737,-73.912157,,Preservation,No,Non Prevailing Wage,31,3,23,2,0,0,6,23,25,5,0,0,0,0,59,0,59,59 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,110462,305,ST ANNS AVENUE,Bronx,10454,2022670040,2000079,BX-01,8,39,BX39,40.808658,-73.916277,40.80869,-73.916602,,Preservation,No,Non Prevailing Wage,11,4,4,0,0,0,0,0,8,6,5,0,0,0,19,0,19,19 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,110468,364,ST ANNS AVENUE,Bronx,10454,2025560017,2003687,BX-01,8,33,BX39,40.809937,-73.91547,40.80981,-73.915199,,Preservation,No,Non Prevailing Wage,7,2,8,0,0,0,2,8,4,0,3,0,0,0,17,0,17,17 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,110470,372,ST ANNS AVENUE,Bronx,10454,2025560023,2003689,BX-01,8,33,BX39,40.810211,-73.915296,40.8102,-73.914945,,Preservation,No,Non Prevailing Wage,8,3,8,1,0,0,1,3,10,0,6,0,0,0,20,0,20,20 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,110908,576,ST MARYS STREET,Bronx,10454,2025560027,2003690,BX-01,8,33,BX39,40.810298,-73.914667,40.8101,-73.914747,,Preservation,No,Non Prevailing Wage,6,6,3,0,0,0,0,6,2,3,4,0,0,0,15,0,15,15 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,806284,348,BEEKMAN AVENUE,Bronx,10454,2025540018,2003660,BX-01,8,33,BX39,40.808969,-73.913726,40.80886,-73.913491,,Preservation,No,Non Prevailing Wage,12,6,13,0,0,0,0,10,12,0,9,0,0,0,31,0,31,31 +65227,DIEGO BEEKMAN MHA.GHPP.FY18,Multifamily Finance Program,06/26/2018,,806285,352,BEEKMAN AVENUE,Bronx,10454,2025540018,2003660,BX-01,8,33,BX39,40.809049,-73.913679,40.80886,-73.913491,,Preservation,No,Non Prevailing Wage,19,3,14,0,0,0,0,15,17,0,4,0,0,0,36,0,36,36 +65772,820-836 GLENMORE AVE,Multifamily Incentives Program,06/26/2018,,982789,820-836,GLENMORE AVENUE,Brooklyn,11208,3040060013,,BK-05,37,1192,BK82,40.675563,-73.879881,40.67538,-73.879589,,New Construction,No,Non Prevailing Wage,0,12,0,0,0,0,0,2,10,0,0,0,0,0,12,0,12,79 +65773,2437 PITKIN AVENUE,Multifamily Incentives Program,06/26/2018,,984228,2437,PITKIN AVENUE,Brooklyn,11208,3040030035,3319656,BK-05,37,1166,BK82,40.673905,-73.882342,40.67412,-73.882479,,New Construction,No,Non Prevailing Wage,0,6,0,0,0,0,0,3,3,0,0,0,0,0,6,0,6,32 +61837,9 FORT WASHINGTON AVENUE CLUSTER,Multifamily Finance Program,06/25/2018,,21861,9,FT WASHINGTON AVENUE,Manhattan,10032,1021360047,1063314,MN-12,7,247,MN36,40.835584,-73.944496,40.83542,-73.944713,,Preservation,No,Non Prevailing Wage,0,0,0,25,0,0,0,6,11,8,0,0,0,0,0,25,25,25 +61837,9 FORT WASHINGTON AVENUE CLUSTER,Multifamily Finance Program,06/25/2018,,42786,609,WEST 158 STREET,Manhattan,10032,1021360005,1063303,MN-12,7,247,MN36,40.835014,-73.945222,40.83514,-73.944915,,Preservation,No,Non Prevailing Wage,0,0,0,25,0,0,0,0,17,8,0,0,0,0,0,25,25,25 +61837,9 FORT WASHINGTON AVENUE CLUSTER,Multifamily Finance Program,06/25/2018,,42889,518,WEST 161 STREET,Manhattan,10032,1021190028,1062835,MN-12,7,245,MN36,40.835673,-73.940983,40.83563,-73.941449,,Preservation,No,Non Prevailing Wage,0,0,0,24,0,0,0,1,13,10,0,0,0,0,0,24,24,24 +61837,9 FORT WASHINGTON AVENUE CLUSTER,Multifamily Finance Program,06/25/2018,,43012,544,WEST 163 STREET,Manhattan,10032,1021220142,1062944,MN-12,7,245,MN36,40.837265,-73.940884,40.83723,-73.941386,,Preservation,No,Non Prevailing Wage,0,0,0,20,0,0,0,1,12,7,0,0,0,0,0,20,20,20 +63880,PRC TIFFANY STREET,Multifamily Finance Program,06/25/2018,,984611,975,TIFFANY STREET,Bronx,10459,2027130020,,BX-02,17,159,BX27,40.822145,-73.894903,40.82215,-73.895264,,New Construction,No,Non Prevailing Wage,46,40,74,0,0,1,11,83,42,25,0,0,0,0,161,0,161,161 +64252,LINDEN TERRACE BUILDING 1,Multifamily Finance Program,06/25/2018,,984242,2858,LINDEN BOULEVARD,Brooklyn,11208,,,BK-05,42,1220,BK82,40.670044,-73.858687,,,,New Construction,No,Non Prevailing Wage,48,48,138,0,0,1,38,99,76,22,0,0,0,0,235,0,235,235 +66556,BEREAN HDFC.HUDMF.FY18,Multifamily Finance Program,06/25/2018,06/25/2018,374527,1481,ST MARKS AVENUE,Brooklyn,11233,3014520076,3413799,BK-16,41,303,BK79,40.673494,-73.918516,40.67371,-73.918501,06/25/2018,Preservation,Yes,Non Prevailing Wage,67,8,1,0,0,1,19,58,0,0,0,0,0,0,77,0,77,77 +66810,NEW LIFE HOMES HDFC.YR15.FY18,Multifamily Finance Program,06/25/2018,06/25/2018,937837,373,DE WITT AVENUE,Brooklyn,11207,3038750054,3389796,BK-05,42,1098,BK82,40.656358,-73.896559,40.65638,-73.896386,06/25/2018,Preservation,Yes,Non Prevailing Wage,42,8,4,0,0,1,55,0,0,0,0,0,0,0,55,0,55,55 +67304,89-15 138TH STREET APARTMENTS,Multifamily Incentives Program,06/25/2018,04/16/2019,550159,89-15,138 STREET,Queens,11435,4099740035,4213683,QN-12,24,212,QN61,40.701291,-73.814365,40.70157,-73.81422,04/16/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,8 +67364,CONFIDENTIAL,Homeowner Assistance Program,06/25/2018,09/13/2018,,----,----,Brooklyn,,,,BK-18,46,,,,,,,09/13/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58623,BRONXVIEW AT SERVIAM,Multifamily Finance Program,06/22/2018,,976713,2885,MARION AVENUE,Bronx,10458,2032910004,,BX-07,15,40702,BX05,40.868482,-73.88506,40.86786,-73.886453,,New Construction,No,Non Prevailing Wage,12,12,67,22,0,1,0,26,66,22,0,0,0,0,114,0,114,114 +61612,EBENEZER PLAZA PHASE 1A,Multifamily Finance Program,06/22/2018,,975696,94,NEW LOTS AVENUE,Brooklyn,11212,3038620001,3327047,BK-16,42,920,BK81,40.657971,-73.901754,40.65764,-73.901325,,New Construction,No,Non Prevailing Wage,40,40,116,0,0,1,19,122,36,20,0,0,0,0,197,0,197,197 +63172,1618 FULTON STREET,Multifamily Finance Program,06/22/2018,,974500,1618,FULTON STREET,Brooklyn,11213,3016990033,,BK-03,36,271,BK61,40.679651,-73.936106,40.67941,-73.936185,,New Construction,No,Non Prevailing Wage,8,21,23,50,0,1,26,46,31,0,0,0,0,0,103,0,103,103 +63751,MOSHOLU GRAND,Multifamily Finance Program,06/22/2018,,927005,150,VAN CORTLANDT AVENUE EAST,Bronx,,,,BX-07,11,,,,,,,,New Construction,No,Non Prevailing Wage,16,15,97,23,0,1,12,70,44,26,0,0,0,0,152,0,152,152 +67231,WEST END. 483 WEST END AVE. WEST END INTERGENERATIONAL,Multifamily Finance Program,06/22/2018,06/22/2018,44024,483,WEST END AVENUE,Manhattan,10024,1012450070,1033820,MN-07,6,171,MN12,40.787072,-73.9792,40.78718,-73.979452,06/22/2018,Preservation,Yes,Non Prevailing Wage,24,0,16,0,0,0,40,0,0,0,0,0,0,0,40,0,40,40 +67278,CONFIDENTIAL,Homeowner Assistance Program,06/22/2018,06/22/2018,,----,----,Queens,,,,QN-10,32,,,,,,,06/22/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67279,CONFIDENTIAL,Homeowner Assistance Program,06/22/2018,06/22/2018,,----,----,Brooklyn,,,,BK-17,45,,,,,,,06/22/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67305,88 HART STREET,Multifamily Incentives Program,06/22/2018,06/21/2019,966625,88,HART STREET,Brooklyn,11206,3017710011,3322100,BK-03,36,261,BK75,40.693249,-73.948022,40.69301,-73.948094,06/21/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,10 +62210,CEDAR MANOR MUTUAL HOUSING CORP.HRP.FY18,Multifamily Finance Program,06/21/2018,,564090,116-51,157 STREET,Queens,11434,4122350002,4457746,QN-12,28,278,QN76,40.684426,-73.785387,40.68491,-73.784949,,Preservation,No,Non Prevailing Wage,5,66,0,0,0,1,1,8,48,15,0,0,0,0,0,72,72,72 +62210,CEDAR MANOR MUTUAL HOUSING CORP.HRP.FY18,Multifamily Finance Program,06/21/2018,,810950,116-11,157 STREET,Queens,11434,4122350002,4457744,QN-12,28,278,QN76,40.684985,-73.786301,40.68491,-73.784949,,Preservation,No,Non Prevailing Wage,56,16,0,0,0,0,1,8,47,16,0,0,0,0,0,72,72,72 +62210,CEDAR MANOR MUTUAL HOUSING CORP.HRP.FY18,Multifamily Finance Program,06/21/2018,,810951,116-31,157 STREET,Queens,11434,4122350002,4457745,QN-12,28,278,QN76,40.68474,-73.785898,40.68491,-73.784949,,Preservation,No,Non Prevailing Wage,4,68,0,0,0,0,1,8,47,16,0,0,0,0,0,72,72,72 +64436,1755 WATSON AVENUE,Multifamily Finance Program,06/21/2018,,984304,1111,COMMONWEALTH AVENUE,Bronx,10472,,,BX-09,18,70,BX55,40.82802,-73.867385,,,,New Construction,No,Non Prevailing Wage,23,32,67,0,0,1,27,50,29,17,0,0,0,0,123,0,123,123 +64436,1755 WATSON AVENUE,Multifamily Finance Program,06/21/2018,,984305,1115,COMMONWEALTH AVENUE,Bronx,10472,,,BX-09,18,70,BX55,40.828125,-73.86741,,,,New Construction,No,Non Prevailing Wage,15,18,35,0,0,0,30,38,0,0,0,0,0,0,68,0,68,68 +64436,1755 WATSON AVENUE,Multifamily Finance Program,06/21/2018,,984306,1120,ROSEDALE AVENUE,Bronx,10472,,,BX-09,18,70,BX55,40.828084,-73.868368,,,,New Construction,No,Non Prevailing Wage,28,31,75,0,0,1,26,48,55,6,0,0,0,0,135,0,135,135 +67306,94 SOUTH 4TH STREET,Multifamily Incentives Program,06/21/2018,06/21/2018,947629,94,SOUTH 4 STREET,Brooklyn,11249,3024430011,3422316,BK-01,34,549,BK73,40.712326,-73.96412,40.71215,-73.9643,06/21/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,7 +67348,CONFIDENTIAL,Homeowner Assistance Program,06/21/2018,01/24/2019,,----,----,Queens,,,,QN-13,31,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,1,1 +67415,CONFIDENTIAL,Homeowner Assistance Program,06/21/2018,10/01/2018,,----,----,Brooklyn,,,,BK-17,45,,,,,,,10/01/2018,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,1182,2086,2 AVENUE,Manhattan,10029,1016780001,1081081,MN-11,8,170,MN33,40.791363,-73.941885,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,118,0,0,0,0,1,19,78,20,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,1946,1925,3 AVENUE,Manhattan,10029,1016560001,1080689,MN-11,8,170,MN33,40.791666,-73.944594,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,114,0,0,0,0,1,19,75,19,0,0,0,0,0,114,114,114 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804638,225,EAST 106 STREET,Manhattan,10029,1016560001,1080691,MN-11,8,170,MN33,40.791073,-73.943475,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,116,0,0,0,0,1,19,77,19,0,0,0,0,0,116,116,116 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804639,315,EAST 106 STREET,Manhattan,10029,1016780001,1081083,MN-11,8,170,MN33,40.790265,-73.941561,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,1,113,4,0,0,0,1,19,79,19,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804640,325,EAST 106 STREET,Manhattan,10029,1016780001,1081085,MN-11,8,170,MN33,40.790086,-73.941139,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,1,116,1,0,0,0,0,19,78,21,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804647,324,EAST 108 STREET,Manhattan,10029,1016780001,1081080,MN-11,8,170,MN33,40.791403,-73.940332,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,117,1,0,0,0,1,19,78,20,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804648,334,EAST 108 STREET,Manhattan,10029,1016780001,1081079,MN-11,8,170,MN33,40.791244,-73.939957,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,115,3,0,0,0,1,19,80,18,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804717,211,EAST 106 STREET,Manhattan,10029,1016560001,1080690,MN-11,8,170,MN33,40.79137,-73.944179,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,115,0,0,0,0,1,19,76,19,0,0,0,0,0,115,115,115 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804823,2065,1 AVENUE,Manhattan,10029,1016780001,1081084,MN-11,8,170,MN33,40.790017,-73.939792,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,118,0,0,0,0,1,19,77,21,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,804824,2075,1 AVENUE,Manhattan,10029,1016780001,1081078,MN-11,8,170,MN33,40.790376,-73.939532,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,117,1,0,0,0,1,19,78,20,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,805279,2075,SECOND AVENUE,Manhattan,10029,1016560001,1084322,MN-11,8,170,MN33,40.791067,-73.942128,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,116,0,0,0,0,1,19,76,20,0,0,0,0,0,116,116,116 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,805280,2078,SECOND AVENUE,Manhattan,10029,1016780001,1081082,MN-11,8,170,MN33,40.791036,-73.942124,40.79077,-73.940777,,Preservation,No,Non Prevailing Wage,0,116,2,0,0,0,1,19,79,19,0,0,0,0,0,118,118,118 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,805281,2081,SECOND AVENUE,Manhattan,10029,1016560001,1080693,MN-11,8,170,MN33,40.791371,-73.941907,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,114,0,0,0,0,0,19,76,19,0,0,0,0,0,114,114,114 +48885,FRANKLIN PLAZA APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/20/2018,,805394,1945,THIRD AVENUE,Manhattan,10029,1016560001,1080688,MN-11,8,170,MN33,40.792374,-73.944073,40.79177,-73.943062,,Preservation,No,Non Prevailing Wage,0,115,0,0,0,0,1,19,76,19,0,0,0,0,0,115,115,115 +64793,148-31 90TH AVE.,Multifamily Incentives Program,06/20/2018,,977056,148-31,90 AVENUE,Queens,11435,4096810085,,QN-12,24,240,QN61,40.703334,-73.806836,40.70383,-73.806052,,New Construction,No,Non Prevailing Wage,0,0,18,0,0,0,1,10,7,0,0,0,0,0,18,0,18,90 +64796,127 WEST 43 ST | WOODSTOCK,Multifamily Incentives Program,06/20/2018,,32960,127,WEST 43 STREET,Manhattan,10036,1009960014,1022613,MN-05,4,119,MN17,40.755873,-73.984454,40.75629,-73.984876,,Preservation,No,Non Prevailing Wage,0,281,10,0,0,0,291,0,0,0,0,0,0,0,291,0,291,291 +66564,1314 SENECA HDFC.HPO.FY18,Multifamily Finance Program,06/20/2018,06/20/2018,108749,1314,SENECA AVENUE,Bronx,10474,2027627501,2006460,BX-02,17,11502,BX27,40.81894,-73.886981,40.81869,-73.887011,06/20/2018,Preservation,Yes,Non Prevailing Wage,2,3,42,12,0,1,0,15,25,17,3,0,0,0,60,0,60,60 +67370,CONFIDENTIAL,Homeowner Assistance Program,06/20/2018,01/24/2019,,----,----,Queens,,,,QN-03,21,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,820177,21,MALTA STREET,Brooklyn,11207,3042950072,,BK-05,42,1130,BK85,40.659821,-73.895858,40.65998,-73.895674,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,1,1,0,0,0,0,1,1,2,2 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927141,299,MOTHER GASTON BOULEVARD,Brooklyn,11212,3036920006,,BK-16,37,908,BK81,40.672034,-73.907461,40.67202,-73.907119,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,1,1,0,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927146,668,VERMONT STREET,Brooklyn,11207,3038410032,,BK-05,42,1128,BK85,40.662924,-73.891571,40.66279,-73.891849,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927153,1915,BERGEN STREET,Brooklyn,11233,3014460056,,BK-16,41,303,BK79,40.674353,-73.917823,40.67457,-73.917725,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927165,655,HINSDALE STREET,Brooklyn,11207,3038670008,,BK-05,42,1132,BK85,40.658683,-73.897294,40.65859,-73.896995,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927610,1633,ST MARKS AVENUE,Brooklyn,11233,3014540066,,BK-16,41,36501,BK79,40.673183,-73.912845,40.67344,-73.912773,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927613,642,HINSDALE STREET,Brooklyn,11207,3038660041,,BK-05,42,1132,BK85,40.658949,-73.897384,40.65892,-73.897669,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,0,2,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927614,1745,LINDEN BOULEVARD,Brooklyn,11207,3038660068,3085948,BK-05,42,1132,BK85,40.657561,-73.897829,40.65789,-73.897915,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,2,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927732,2164,DEAN STREET,Brooklyn,11233,3014470014,,BK-16,41,303,BK79,40.675008,-73.915778,40.67478,-73.91594,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927741,650,ALABAMA AVENUE,Brooklyn,11207,3042950019,,BK-05,42,1130,BK85,40.660042,-73.894971,40.65996,-73.895245,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,2,0,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,927966,653,HINSDALE STREET,Brooklyn,11207,3038670009,3085955,BK-05,42,1132,BK85,40.658719,-73.897301,40.65865,-73.897009,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,965966,273,MOTHER GASTON BOULEVARD,Brooklyn,11212,3036920015,3083600,BK-16,37,908,BK81,40.672633,-73.907615,40.67261,-73.907287,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,0,2,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,965967,2178,DEAN STREET,Brooklyn,11233,3014470020,,BK-16,41,303,BK79,40.674988,-73.91545,40.67476,-73.915526,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,969934,281,MOTHER GASTON BOULEVARD,Brooklyn,11212,3036920012,,BK-16,37,908,BK81,40.672443,-73.907565,40.67241,-73.907216,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,0,2,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,974490,38,CHRISTOPHER AVENUE,Brooklyn,11212,3036920019,,BK-16,37,908,BK81,40.673055,-73.906728,40.67274,-73.906905,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,0,2,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,974491,666,SNEDIKER AVENUE,Brooklyn,11207,3038650046,3342538,BK-05,42,1132,BK85,40.658577,-73.898246,40.65827,-73.898448,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +58555,MOTHER GASTON-HINSDALE,Small Homes Program,06/19/2018,,974492,668,SNEDIKER AVENUE,Brooklyn,11207,3038650047,,BK-05,42,1132,BK85,40.658544,-73.898235,40.6582,-73.898434,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +60248,15 STRATFORD LLC.GHPP.FY18,Multifamily Finance Program,06/19/2018,,242056,15,STRATFORD ROAD,Brooklyn,11218,3050720058,3116387,BK-14,40,506,BK42,40.648361,-73.96956,40.64845,-73.9693,,Preservation,No,Non Prevailing Wage,6,10,4,0,0,0,0,0,0,16,4,0,0,0,20,0,20,20 +64186,343 RALPH AVENUE,Multifamily Incentives Program,06/18/2018,,978847,343,RALPH AVENUE,Brooklyn,11233,3015560001,,BK-03,41,301,BK79,40.677438,-73.921763,40.67737,-73.921518,,New Construction,No,Non Prevailing Wage,0,0,20,0,0,0,4,5,11,0,0,0,0,0,20,0,20,20 +67271,CONFIDENTIAL,Homeowner Assistance Program,06/18/2018,06/18/2018,,----,----,Queens,,,,QN-08,24,,,,,,,06/18/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67307,577 WEST 161ST STREET APARTMENTS,Multifamily Incentives Program,06/14/2018,05/17/2019,973169,577,WEST 161 STREET,Manhattan,10032,0,1090787,MN-12,7,245,MN36,40.836168,-73.942103,40.83648,-73.942308,05/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,6,0,0,0,0,0,0,6,0,6,20 +60041,DORA MCKENZIE HDFC.PLP.FY18,Multifamily Finance Program,06/13/2018,,5610,1646,AMSTERDAM AVENUE,Manhattan,10031,1020730032,1061796,MN-09,7,225,MN04,40.822975,-73.949268,40.8231,-73.949572,,Preservation,No,Non Prevailing Wage,3,0,0,5,0,0,0,0,1,7,0,0,0,0,8,0,8,8 +63036,MHANY. 1921 CORTELYOU ROAD,Multifamily Finance Program,06/13/2018,,983224,1921,CORTELYOU ROAD,Brooklyn,11226,3051500025,3118533,BK-14,40,514,BK42,40.642981,-73.960532,40.64345,-73.960118,,New Construction,No,Non Prevailing Wage,53,8,14,0,0,1,48,16,12,0,0,0,0,0,76,0,76,76 +65578,GEEL E 162ND ST.HDFC.YR15.FY18,Multifamily Finance Program,06/13/2018,06/13/2018,827727,870,EAST 162 STREET,Bronx,10459,2026900027,2102490,BX-02,17,12901,BX33,40.821326,-73.900006,40.82113,-73.900183,06/13/2018,Preservation,Yes,Non Prevailing Wage,69,1,0,0,0,1,70,1,0,0,0,0,0,0,71,0,71,71 +67397,CONFIDENTIAL,Homeowner Assistance Program,06/13/2018,01/29/2019,,----,----,Queens,,,,QN-12,28,,,,,,,01/29/2019,Preservation,No,Non Prevailing Wage,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67419,CONFIDENTIAL,Homeowner Assistance Program,06/13/2018,01/24/2019,,----,----,Queens,,,,QN-10,28,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +63899,948 MYRTLE AVE,Multifamily Incentives Program,06/12/2018,,978833,948,MYRTLE AVENUE,Brooklyn,11206,3017560037,,BK-03,36,25901,BK75,40.695981,-73.943887,40.69565,-73.943887,,New Construction,No,Non Prevailing Wage,0,0,24,0,0,0,5,7,12,0,0,0,0,0,24,0,24,100 +67308,168-05 DEPOT ROAD,Multifamily Incentives Program,06/12/2018,02/12/2019,982670,168-05,DEPOT ROAD,Queens,11358,4052950024,4119742,QN-07,19,1175,QN51,40.761491,-73.798,40.76156,-73.79787,02/12/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,7 +62209,ADEE TOWER APARTMENTS INC.HRP.FY18,Multifamily Finance Program,06/11/2018,,52029,3000,BRONX PARK EAST,Bronx,10467,2043360001,,BX-27,15,334,BX99,40.856665,-73.875798,40.86224,-73.873047,,Preservation,No,Non Prevailing Wage,247,45,0,0,0,0,0,3,96,193,0,0,0,0,0,292,292,292 +67309,"MAYA, THE",Multifamily Incentives Program,06/11/2018,04/24/2019,703839,177-30,WEXFORD TERRACE,Queens,11432,4098350033,4617567,QN-08,24,466,QN06,40.713102,-73.785983,40.71285,-73.785984,04/24/2019,New Construction,No,Non Prevailing Wage,0,0,0,21,0,0,6,12,3,0,0,0,0,0,21,0,21,68 +65210,VOA. 305 W. 97TH ST. ROSE HOUSE,Multifamily Finance Program,06/08/2018,,37267,305,WEST 97 STREET,Manhattan,10025,1018870048,1057068,MN-07,6,183,MN12,40.796049,-73.972978,40.79635,-73.973136,,Preservation,No,Non Prevailing Wage,97,0,0,0,0,0,97,0,0,0,0,0,0,0,97,0,97,97 +67275,CONFIDENTIAL,Homeowner Assistance Program,06/08/2018,06/08/2018,,----,----,Brooklyn,,,,BK-05,42,,,,,,,06/08/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67310,1779 WEEKS AVENUE APARTMENTS,Multifamily Incentives Program,06/08/2018,11/21/2018,120827,1779,WEEKS AVENUE,Bronx,10457,2027960036,2129356,BX-05,15,22901,BX41,40.846249,-73.907447,40.84637,-73.907703,11/21/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,2,0,0,0,0,0,0,3,0,3,10 +66558,1097 GLENMORE AVE.GHPP.FY18,Multifamily Finance Program,06/07/2018,,300675,1097,GLENMORE AVENUE,Brooklyn,11208,3042010001,3094346,BK-05,37,1188,BK83,40.677233,-73.868409,40.6774,-73.868452,,Preservation,No,Non Prevailing Wage,0,4,0,1,0,0,0,4,1,0,0,0,0,0,5,0,5,5 +67311,1164 & 1168 GREENE AVENUE,Multifamily Incentives Program,06/07/2018,09/25/2019,303789,1164,GREENE AVENUE,Brooklyn,11221,3032960014,,BK-04,34,419,BK78,40.694599,-73.922897,40.69437,-73.922767,09/25/2019,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,2,2,0,0,0,0,0,4,0,4,20 +67272,CONFIDENTIAL,Homeowner Assistance Program,06/06/2018,06/06/2018,,----,----,Queens,,,,QN-13,27,,,,,,,06/06/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67312,1068 FULTON STREET APARTMENTS,Multifamily Incentives Program,06/06/2018,04/05/2019,980696,1068,FULTON STREET,Brooklyn,11238,3020160012,3422360,BK-03,36,227,BK69,40.68164,-73.958137,40.68136,-73.958148,04/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,13,0,0,6,7,0,0,0,0,0,13,0,13,41 +67401,CONFIDENTIAL,Homeowner Assistance Program,06/06/2018,01/24/2019,,----,----,Queens,,,,QN-03,21,,,,,,,01/24/2019,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65205,ACMH.2053 RYER AVE,Multifamily Finance Program,06/04/2018,,983973,2051,RYER AVENUE,Bronx,10457,2031560070,2013665,BX-05,15,381,BX41,40.85179,-73.901214,40.85194,-73.901554,,New Construction,No,Non Prevailing Wage,52,33,0,0,0,1,54,4,20,8,0,0,0,0,86,0,86,86 +67273,CONFIDENTIAL,Homeowner Assistance Program,06/04/2018,06/04/2018,,----,----,Queens,,,,QN-12,28,,,,,,,06/04/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67368,CONFIDENTIAL,Homeowner Assistance Program,06/04/2018,03/06/2019,,----,----,Queens,,,,QN-05,34,,,,,,,03/06/2019,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +67313,1072 UNIVERSITY AVENUE,Multifamily Incentives Program,05/31/2018,02/21/2019,983111,1072,UNIVERSITY AVENUE,Bronx,10452,2025260147,,BX-04,16,193,BX26,40.835124,-73.929994,40.83507,-73.929745,02/21/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,1,1,1,0,0,0,0,0,3,0,3,10 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,927586,617,CLEVELAND STREET,Brooklyn,11208,3040650022,,BK-05,42,1164,BK82,40.669188,-73.883068,40.66928,-73.882833,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,0,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,927678,291,HINSDALE STREET,Brooklyn,11207,3037670010,,BK-05,42,1134,BK85,40.667974,-73.89967,40.66801,-73.899396,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,965968,289,HINSDALE STREET,Brooklyn,11207,3037670011,3252578,BK-05,42,1134,BK85,40.668009,-73.899681,40.66806,-73.89941,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,965970,285,HINSDALE STREET,Brooklyn,11207,3037670013,,BK-05,42,1134,BK85,40.668083,-73.899698,40.66817,-73.899435,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969937,586,LINWOOD STREET,Brooklyn,11208,3040500025,,BK-05,42,1164,BK82,40.670822,-73.881818,40.67082,-73.882056,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,1,0,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969938,669,LINWOOD STREET,Brooklyn,11208,,,BK-05,42,1164,BK82,40.66887,-73.881295,,,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,1,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969939,806,BLAKE AVENUE,Brooklyn,11207,3040580018,3089994,BK-05,42,1160,BK82,40.668721,-73.8888,40.6685,-73.888725,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,0,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969940,980,DUMONT AVENUE,Brooklyn,11208,3040810023,3252950,BK-05,42,1120,BK82,40.668078,-73.882374,40.66788,-73.882338,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,1,0,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969941,287,HINSDALE STREET,Brooklyn,11207,3037670012,,BK-05,42,1134,BK85,40.668048,-73.899691,40.66811,-73.899424,,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969942,846,BLAKE AVENUE,Brooklyn,11207,,,BK-05,42,1160,BK82,40.668956,-73.887225,,,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,0,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969943,588,WARWICK STREET,Brooklyn,11207,3040620031,,BK-05,42,1162,BK82,40.668821,-73.884687,40.66883,-73.884957,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,0,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969960,848,BLAKE AVENUE,Brooklyn,11207,,,BK-05,42,1160,BK82,40.668964,-73.887167,,,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,0,1,0,0,0,0,1,1,2,2 +44340,BLAKE/HENDRIX,Small Homes Program,05/30/2018,,969961,586,WARWICK STREET,Brooklyn,11207,3040620030,,BK-05,42,1162,BK82,40.668865,-73.884698,40.66888,-73.885008,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,0,1,0,0,0,0,1,1,2,2 +67314,2118 MAPES AVENUE APARTMENTS,Multifamily Incentives Program,05/29/2018,07/20/2018,979971,2118,MAPES AVENUE,Bronx,10460,2031110001,,BX-06,15,36501,BX17,40.847077,-73.885134,40.84683,-73.884921,07/20/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,13,0,1,6,6,0,0,0,0,0,13,0,13,43 +67315,2183 3RD AVENUE,Multifamily Incentives Program,05/29/2018,,2071,2183,3 AVENUE,Manhattan,10035,1017840002,1088905,MN-11,8,194,MN34,40.79998,-73.938508,40.79991,-73.938219,,New Construction,No,Non Prevailing Wage,0,0,12,0,0,0,4,5,3,0,0,0,0,0,12,0,12,58 +67316,233 BUFFALO AVENUE,Multifamily Incentives Program,05/25/2018,01/16/2019,979947,1611,STERLING PLACE,Brooklyn,11233,3013750001,3036629,BK-08,41,359,BK61,40.671174,-73.92526,40.67128,-73.925018,01/16/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,0,3,0,0,0,0,3,0,3,9 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,209702,180,BETHEL LOOP,Brooklyn,11239,3044520085,3397020,BK-05,42,105801,BK93,40.651296,-73.882108,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,228308,1260,CROTON LOOP,Brooklyn,11239,3044520001,3342904,BK-05,42,105804,BK93,40.649114,-73.885157,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,296315,1420,FREEPORT LOOP,Brooklyn,11239,3044520020,3340238,BK-05,42,105804,BK93,40.646031,-73.881905,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,352991,1155,PENNSYLVANIA AVENUE,Brooklyn,11239,3044350001,3336174,BK-05,42,105801,BK93,40.651736,-73.885509,40.65357,-73.882396,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,385229,1445,GENEVA LOOP,Brooklyn,11239,3044520200,3343598,BK-05,42,105801,BK93,40.646298,-73.879652,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,807564,175,ARDSLEY LOOP,Brooklyn,11239,3044350001,3336176,BK-05,42,105801,BK93,40.652398,-73.883739,40.65357,-73.882396,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,807565,185,ARDSLEY LOOP,Brooklyn,11239,3044350001,3336173,BK-05,42,105801,BK93,40.65214,-73.883015,40.65357,-73.882396,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,807781,190,BETHEL LOOP,Brooklyn,11239,3044520085,3343584,BK-05,42,105801,BK93,40.651419,-73.881135,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,50,0,0,0,0,51,44,35,0,0,0,0,130,0,130,130 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,807782,200,BETHEL LOOP,Brooklyn,11239,3044520085,3343585,BK-05,42,105801,BK93,40.652097,-73.88162,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,94,62,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808043,1280,CROTON LOOP,Brooklyn,11239,3044520001,3342905,BK-05,42,105804,BK93,40.649264,-73.883719,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808077,1275,DELMAR LOOP,Brooklyn,11239,3044520085,3343586,BK-05,42,105801,BK93,40.650286,-73.882524,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,79,51,0,0,0,0,51,44,35,0,0,0,0,130,0,130,130 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808078,1285,DELMAR LOOP,Brooklyn,11239,3044520085,3343587,BK-05,42,105801,BK93,40.650012,-73.882208,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808079,1305,DELMAR LOOP,Brooklyn,11239,3044520085,3343588,BK-05,42,105801,BK93,40.649205,-73.882872,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808256,135,ELMIRA LOOP,Brooklyn,11239,3044520085,3343589,BK-05,42,105801,BK93,40.648973,-73.880765,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808257,145,ELMIRA LOOP,Brooklyn,11239,3044520085,3343590,BK-05,42,105801,BK93,40.649458,-73.880814,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808337,1430,FREEPORT LOOP,Brooklyn,11239,3044520020,3391208,BK-05,42,105804,BK93,40.645658,-73.881513,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808338,1440,FREEPORT LOOP,Brooklyn,11239,3044520020,3391209,BK-05,42,105804,BK93,40.645688,-73.881232,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808409,1455,GENEVA LOOP,Brooklyn,11239,3044520200,3343599,BK-05,42,105801,BK93,40.64661,-73.878423,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,52,34,0,0,0,0,34,29,23,0,0,0,0,86,0,86,86 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808410,1465,GENEVA LOOP,Brooklyn,11239,3044520200,3343600,BK-05,42,105801,BK93,40.646157,-73.878427,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808411,1475,GENEVA LOOP,Brooklyn,11239,3044520200,3343601,BK-05,42,105801,BK93,40.645754,-73.879037,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808561,1490,HORNELL LOOP,Brooklyn,11239,3044520020,3340239,BK-05,42,105804,BK93,40.644972,-73.879532,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808562,1500,HORNELL LOOP,Brooklyn,11239,3044520020,3397019,BK-05,42,105804,BK93,40.644553,-73.879936,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808563,1520,HORNELL LOOP,Brooklyn,11239,3044520020,3340240,BK-05,42,105804,BK93,40.644639,-73.878563,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808770,605,LOUISIANA AVENUE,Brooklyn,11239,3044520001,3342901,BK-05,42,105804,BK93,40.647166,-73.885348,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,808771,855,LOUISIANA AVENUE,Brooklyn,11239,3044520020,3340244,BK-05,42,105804,BK93,40.642137,-73.879717,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809154,1201,PENNSYLVANIA AVENUE,Brooklyn,11239,3044350001,3336175,BK-05,42,105801,BK93,40.651173,-73.885082,40.65357,-73.882396,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809155,1230,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520001,3342902,BK-05,42,105804,BK93,40.65025,-73.884377,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,93,59,0,0,0,1,59,51,41,0,0,0,0,152,0,152,152 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809156,1255,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520085,3343595,BK-05,42,105801,BK93,40.650014,-73.88415,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,94,62,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809157,1310,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520001,3342903,BK-05,42,105804,BK93,40.649,-73.88306,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,93,59,0,0,0,1,59,51,41,0,0,0,0,152,0,152,152 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809158,1325,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520085,3343596,BK-05,42,105801,BK93,40.648321,-73.882265,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,92,60,0,0,0,1,59,51,41,0,0,0,0,152,0,152,152 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809159,1425,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520200,3343602,BK-05,42,105801,BK93,40.646472,-73.880214,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809160,1460,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520020,3340241,BK-05,42,105804,BK93,40.646068,-73.879786,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809161,1515,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520200,3343603,BK-05,42,105801,BK93,40.645073,-73.878649,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,46,35,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809162,1530,PENNSYLVANIA AVENUE,Brooklyn,11239,3044520020,3340242,BK-05,42,105804,BK93,40.644378,-73.877908,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,52,0,0,0,0,51,45,36,0,0,0,0,132,0,132,132 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809379,120,SCHROEDERS AVENUE,Brooklyn,11239,3044520200,3343604,BK-05,42,105801,BK93,40.647705,-73.881293,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,51,0,0,0,0,52,43,36,0,0,0,0,131,0,131,131 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809380,125,SCHROEDERS AVENUE,Brooklyn,11239,3044520085,3343597,BK-05,42,105801,BK93,40.647716,-73.881307,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,92,60,0,0,0,0,60,51,41,0,0,0,0,152,0,152,152 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809381,130,SCHROEDERS AVENUE,Brooklyn,11239,3044520200,3343605,BK-05,42,105801,BK93,40.648365,-73.880214,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,80,51,0,0,0,0,52,43,36,0,0,0,0,131,0,131,131 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809382,160,SCHROEDERS AVENUE,Brooklyn,11239,3044520200,3343606,BK-05,42,105801,BK93,40.648735,-73.879612,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,77,51,0,0,0,0,50,43,35,0,0,0,0,128,0,128,128 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809383,11245,SEAVIEW AVENUE,Brooklyn,11239,3044520020,3391210,BK-05,42,105804,BK93,40.642709,-73.878444,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809384,11275,SEAVIEW AVENUE,Brooklyn,11239,3044520020,3340243,BK-05,42,105804,BK93,40.643527,-73.877874,40.64424,-73.880096,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809385,11325,SEAVIEW AVENUE,Brooklyn,11239,3044520200,3343607,BK-05,42,105801,BK93,40.644788,-73.877046,40.64838,-73.879065,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,51,33,0,0,0,0,33,28,23,0,0,0,0,84,0,84,84 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809708,45,TWIN PINES DRIVE,Brooklyn,11239,3044520001,3342907,BK-05,42,105804,BK93,40.64742,-73.884014,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809732,130,VANDALIA AVENUE,Brooklyn,11239,3044520085,3343583,BK-05,42,105801,BK93,40.651388,-73.883355,40.65023,-73.881472,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,62,0,0,0,0,61,53,43,0,0,0,0,157,0,157,157 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809733,20,VANDALIA AVENUE,Brooklyn,11239,3044520001,3342906,BK-05,42,105804,BK93,40.649498,-73.887189,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,94,62,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809734,225,VANDALIA AVENUE,Brooklyn,11239,3044350001,3336177,BK-05,42,105801,BK93,40.652718,-73.88216,40.65357,-73.882396,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,95,61,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67403,STARRETT CITY,Multifamily Incentives Program,05/25/2018,05/25/2018,809735,50,VANDALIA AVENUE,Brooklyn,11239,3044520001,3342908,BK-05,42,105804,BK93,40.649942,-73.886504,40.65035,-73.884769,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,94,62,0,0,0,1,61,53,41,0,0,0,0,156,0,156,156 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,861512,302A,SKYLINE DRIVE,Staten Island,10304,5029250486,5164699,SI-01,49,40,SI08,40.613053,-74.078875,40.61316,-74.07903,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,9,0,0,0,0,0,0,9,0,0,0,0,0,9,9,9 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,874545,330,SKYLINE DRIVE,Staten Island,10304,5029250463,5131936,SI-01,49,40,SI08,40.612789,-74.079616,40.61297,-74.079573,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,10,10 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,965482,106,CIRCLE LOOP,Staten Island,10304,5029250473,5131613,SI-01,49,40,SI08,40.613154,-74.079945,40.61316,-74.079732,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,6,6 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,965757,46,CIRCLE LOOP,Staten Island,10304,5029250479,5131612,SI-01,49,40,SI08,40.613569,-74.079128,40.61338,-74.079178,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,19,0,0,0,0,0,1,18,0,0,0,0,0,19,19,19 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,984920,121,CIRCLE LOOP,Staten Island,10304,5029250390,5130927,SI-01,49,40,SI08,40.612855,-74.079894,40.6128,-74.080117,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,0,2,6,0,0,0,0,0,8,8,8 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,984923,361A,SKYLINE DRIVE,Staten Island,10304,5029250432,5164688,SI-01,49,40,SI08,40.612556,-74.08011,40.61239,-74.08021,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,11,0,0,0,0,0,0,11,0,0,0,0,0,11,11,11 +67424,CELEBRATION TOWNHOUSES,Multifamily Finance Program,05/25/2018,05/25/2018,984924,295E,SKYLINE DRIVE,Staten Island,10304,5029250450,5164678,SI-01,49,40,SI08,40.613034,-74.0789,40.61286,-74.078889,05/25/2018,Preservation,Yes,Non Prevailing Wage,0,0,11,0,0,0,0,0,1,10,0,0,0,0,0,11,11,11 +63282,12 ECKFORD,Multifamily Incentives Program,05/24/2018,,974942,12,ECKFORD STREET,Brooklyn,11222,3027140033,,BK-01,33,499,BK76,40.720686,-73.947835,40.72044,-73.947496,,New Construction,No,Non Prevailing Wage,0,0,21,0,0,0,7,9,5,0,0,0,0,0,21,0,21,101 +67317,11-39 49TH AVENUE,Multifamily Incentives Program,05/24/2018,05/03/2019,438760,27-Nov,49 AVENUE,Queens,11101,4000610055,,QN-02,26,7,QN31,40.74273,-73.950278,40.74288,-73.949943,05/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,59,0,23,26,6,4,0,0,0,0,59,0,59,194 +65543,ARKER.40 DEBEVOISE STREET,Multifamily Finance Program,05/23/2018,,978829,40,DEBEVOISE STREET,Brooklyn,11206,3031277501,3395434,BK-01,34,491,BK90,40.701719,-73.941311,40.70152,-73.941188,,New Construction,No,Prevailing Wage,64,0,0,0,0,1,46,19,0,0,0,0,0,0,65,0,65,65 +67318,"FREDRICK OLMSTEAD, THE",Multifamily Incentives Program,05/23/2018,07/22/2019,977988,564,ST JOHNS PLACE,Brooklyn,11238,3011780026,3426032,BK-08,35,217,BK61,40.67286,-73.959502,40.67249,-73.959073,07/22/2019,New Construction,No,Non Prevailing Wage,0,0,40,0,0,0,0,30,10,0,0,0,0,0,40,0,40,193 +67319,806 ST JOHNS PLACE,Multifamily Incentives Program,05/22/2018,09/28/2018,982142,806,ST JOHNS PLACE,Brooklyn,11216,3012540026,3330686,BK-08,35,31702,BK61,40.671688,-73.951398,40.6714,-73.951622,09/28/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,8,0,0,4,4,0,0,0,0,0,8,0,8,26 +67229,CONFIDENTIAL,Homeowner Assistance Program,05/21/2018,05/21/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,05/21/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67320,951 MADISON STREET APARTMENTS,Multifamily Incentives Program,05/21/2018,11/22/2019,909545,951,MADISON STREET,Brooklyn,11221,3033570065,3425111,BK-04,34,397,BK78,40.6886,-73.919442,40.68862,-73.91972,11/22/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,12,0,0,6,6,0,0,0,0,0,12,0,12,37 +67321,1544 NOSTRAND AVENUE,Multifamily Incentives Program,05/18/2018,04/24/2019,983883,1544,NOSTRAND AVENUE,Brooklyn,11226,3051110041,3117403,BK-17,40,824,BK95,40.648515,-73.949336,40.64846,-73.94965,04/24/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,1,2,0,0,0,0,0,3,0,3,10 +63800,THE BRIDGE. 3500 PARK AVE,Multifamily Finance Program,05/17/2018,,983972,3500,PARK AVENUE,Bronx,10456,2023890020,,BX-03,16,145,BX01,40.831359,-73.908259,40.83143,-73.907814,,New Construction,No,Non Prevailing Wage,69,8,37,0,0,1,84,0,31,0,0,0,0,0,115,0,115,115 +67322,LINCOLN PARK APARTMENTS,Multifamily Incentives Program,05/17/2018,08/09/2018,982705,31,LINCOLN ROAD,Brooklyn,11225,3050240074,,BK-09,40,327,BK60,40.660756,-73.961621,40.6611,-73.961855,08/09/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,27,0,6,6,15,0,0,0,0,0,27,0,27,90 +67189,CONFIDENTIAL,Homeowner Assistance Program,05/16/2018,10/01/2018,,----,----,Bronx,,,,BX-09,17,,,,,,,10/01/2018,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,4,4 +67323,THREE TWO ONE,Multifamily Incentives Program,05/16/2018,05/03/2019,398980,321,WYTHE AVENUE,Brooklyn,11249,3024160001,3425680,BK-01,34,551,BK73,40.71394,-73.965288,40.7138,-73.964776,05/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,39,0,0,17,22,0,0,0,0,0,39,0,39,130 +66947,1050 MANHATTAN AVENUE,Multifamily Incentives Program,05/15/2018,,984071,1050,MANHATTAN AVENUE,Brooklyn,11222,3025050005,3063952,BK-01,33,575,BK76,40.734693,-73.954986,40.73492,-73.954679,,New Construction,No,Non Prevailing Wage,0,0,18,0,0,0,2,14,2,0,0,0,0,0,18,0,18,90 +67228,CONFIDENTIAL,Homeowner Assistance Program,05/15/2018,05/15/2018,,----,----,Brooklyn,,,,BK-15,46,,,,,,,05/15/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67324,56 BOX STREET,Multifamily Incentives Program,05/15/2018,06/29/2018,211203,56,BOX STREET,Brooklyn,11222,3024830017,3063714,BK-01,33,579,BK76,40.737379,-73.954309,40.73717,-73.954259,06/29/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,6,0,0,3,3,0,0,0,0,0,6,0,6,20 +67423,FOUNTAIN SEAVIEW BUILDING B6,Multifamily Incentives Program,05/15/2018,,984919,894,FOUNTAIN AVENUE,Brooklyn,11208,,,BK-05,42,1070,BK82,40.655989,-73.863788,,,,New Construction,No,Non Prevailing Wage,43,43,334,0,0,2,105,188,107,22,0,0,0,0,422,0,422,422 +67325,GLORIA LINDEN,Multifamily Incentives Program,05/14/2018,,327731,359,LINDEN STREET,Brooklyn,11237,3033280040,,BK-04,37,441,BK77,40.699802,-73.913128,40.70003,-73.91324,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,2,2,0,0,0,0,0,4,0,4,13 +67291,3190 RIVERDALE AVENUE APARTMENTS,Multifamily Incentives Program,05/11/2018,01/09/2019,972569,3190,RIVERDALE AVENUE,Bronx,10463,2057150184,2128434,BX-08,11,285,BX29,40.882521,-73.908597,40.88235,-73.908333,01/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,4,0,0,0,0,0,4,0,4,13 +62163,AMELIA VALENTI.HRP.FY18,Multifamily Finance Program,05/10/2018,,107668,1415,ROWLAND STREET,Bronx,10461,2039730035,2041706,BX-10,18,202,BX59,40.837935,-73.845895,40.83782,-73.846217,,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +62208,1906-08AMETHYSTCONSTRUCTIONCORP.HRP.FY18,Multifamily Finance Program,05/10/2018,,45204,1906,AMETHYST STREET,Bronx,10462,2042540007,2047842,BX-11,15,230,BX37,40.84738,-73.868261,40.8473,-73.86808,,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +62208,1906-08AMETHYSTCONSTRUCTIONCORP.HRP.FY18,Multifamily Finance Program,05/10/2018,,45205,1908,AMETHYST STREET,Bronx,10462,2042540009,2047843,BX-11,15,230,BX37,40.847418,-73.868246,40.84742,-73.86804,,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,4,1,0,0,0,0,0,5,0,5,5 +67226,CONFIDENTIAL,Homeowner Assistance Program,05/09/2018,05/09/2018,,----,----,Queens,,,,QN-12,28,,,,,,,05/09/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67227,CONFIDENTIAL,Homeowner Assistance Program,05/08/2018,05/08/2018,,----,----,Queens,,,,QN-13,31,,,,,,,05/08/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67292,880 METRO REALTY,Multifamily Incentives Program,05/08/2018,05/08/2018,973786,878,METROPOLITAN AVENUE,Brooklyn,11211,3029160032,3426724,BK-01,34,481,BK90,40.714632,-73.93977,40.7144,-73.939709,05/08/2018,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,28 +67293,89 BARTLETT STREET,Multifamily Incentives Program,05/08/2018,04/24/2019,978521,89,BARTLETT STREET,Brooklyn,11206,0,3424167,BK-01,33,507,BK75,40.702105,-73.944975,40.70222,-73.945267,04/24/2019,New Construction,No,Non Prevailing Wage,0,0,16,0,0,0,0,16,0,0,0,0,0,0,16,0,16,64 +67294,730 PROSPECT PLACE,Multifamily Incentives Program,05/07/2018,01/10/2019,868328,730,PROSPECT PLACE,Brooklyn,11216,3012330016,,BK-08,36,31701,BK61,40.674416,-73.952154,40.67416,-73.952356,01/10/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,8 +67225,CONFIDENTIAL,Homeowner Assistance Program,05/04/2018,05/04/2018,,----,----,Bronx,,,,BX-06,15,,,,,,,05/04/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +65453,HABITAT SINGLE FAMILY HOMES 3,Small Homes Program,05/03/2018,05/03/2018,520820,190-17,109 ROAD,Queens,11412,4109230026,4233813,QN-12,27,504,QN07,40.703522,-73.766095,40.70376,-73.766007,05/03/2018,Preservation,Yes,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65453,HABITAT SINGLE FAMILY HOMES 3,Small Homes Program,05/03/2018,05/03/2018,522819,202-02,111 AVENUE,Queens,11412,4109600604,4234766,QN-12,27,518,QN08,40.704569,-73.754564,40.70447,-73.75438,05/03/2018,Preservation,Yes,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65453,HABITAT SINGLE FAMILY HOMES 3,Small Homes Program,05/03/2018,05/03/2018,594222,99-19,203 STREET,Queens,11423,4108500029,4231961,QN-12,27,510,QN07,40.711933,-73.757054,40.71169,-73.756673,05/03/2018,Preservation,Yes,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65775,211 WEST 29TH STREET,Multifamily Incentives Program,05/02/2018,,978919,211,WEST 29 STREET,Manhattan,10001,1007790031,1090716,MN-05,3,95,MN17,40.748126,-73.993533,40.7483,-73.993392,,New Construction,No,Non Prevailing Wage,0,0,9,0,8,0,5,6,4,2,0,0,0,0,17,0,17,55 +67224,CONFIDENTIAL,Homeowner Assistance Program,05/02/2018,05/02/2018,,----,----,Queens,,,,QN-14,31,,,,,,,05/02/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67295,1701 PARKVIEW AVENUE,Multifamily Incentives Program,05/02/2018,12/19/2018,101492,1701,PARKVIEW AVENUE,Bronx,10461,2041770028,2046306,BX-10,13,26602,BX10,40.846841,-73.827907,40.84671,-73.828034,12/19/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,0,3,4,0,0,0,0,0,7,0,7,35 +65649,625 & 658 DRIGGS AVE,Multifamily Incentives Program,05/01/2018,,979712,658,DRIGGS AVENUE,Brooklyn,11211,3023660021,,BK-01,34,553,BK73,40.714663,-73.959,40.71473,-73.959224,,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,20 +65649,625 & 658 DRIGGS AVE,Multifamily Incentives Program,05/01/2018,,982106,625,DRIGGS AVENUE,Brooklyn,11211,3023530006,,BK-01,34,519,BK73,40.715286,-73.958303,40.71511,-73.958127,,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,1,1,2,0,0,0,0,0,4,0,4,19 +67296,5959 BROADWAY,Multifamily Incentives Program,04/30/2018,,51658,5959,BROADWAY,Bronx,10463,2057760621,2124471,BX-08,11,285,BX29,40.888954,-73.898533,40.88921,-73.898981,,New Construction,No,Non Prevailing Wage,0,0,15,0,0,0,0,12,3,0,0,0,0,0,15,0,15,72 +61575,HARRY T. NANCE APARTMENTS,Multifamily Finance Program,04/27/2018,,972764,1860,EASTERN PARKWAY EXTENSION,Brooklyn,11233,3014360006,3337899,BK-16,37,36502,BK79,40.675822,-73.908126,40.67587,-73.90778,,New Construction,No,Non Prevailing Wage,17,15,34,0,0,1,17,25,16,9,0,0,0,0,67,0,67,67 +61630,HARLEM COMMUNITY INITIATIVE HDFC.YR15.FY18,Multifamily Finance Program,04/25/2018,04/25/2018,843098,121,WEST 115 STREET,Manhattan,10026,1018250021,1087385,MN-10,9,218,MN11,40.80166,-73.950932,40.80193,-73.950989,04/25/2018,Preservation,Yes,Non Prevailing Wage,0,1,33,0,0,1,3,10,22,0,0,0,0,0,35,0,35,35 +67161,CONFIDENTIAL,Homeowner Assistance Program,04/25/2018,04/25/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/25/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +67297,85 ROGERS AVENUE,Multifamily Incentives Program,04/25/2018,,971280,85,ROGERS AVENUE,Brooklyn,11216,3012260080,3030986,BK-08,36,31701,BK61,40.674804,-73.952809,40.67468,-73.952665,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,3,0,0,0,0,0,3,0,3,10 +67298,510 FLATBUSH APARTMENTS,Multifamily Incentives Program,04/23/2018,12/05/2018,895471,510,FLATBUSH AVENUE,Brooklyn,11225,3050240053,3397203,BK-09,40,327,BK60,40.661923,-73.961602,40.66156,-73.96183,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,16,0,6,3,7,0,0,0,0,0,16,0,16,51 +67299,867 DEKALB AVENUE,Multifamily Incentives Program,04/23/2018,10/25/2018,974817,867,DE KALB AVENUE,Brooklyn,11221,3017770058,3418264,BK-03,36,281,BK35,40.6925,-73.941633,40.6927,-73.941784,10/25/2018,New Construction,No,Non Prevailing Wage,0,0,0,2,9,0,0,5,6,0,0,0,0,0,11,0,11,35 +67300,1360 1364 PURDY STREET APARTMENTS,Multifamily Incentives Program,04/19/2018,11/09/2018,104796,1364,PURDY STREET,Bronx,10462,2039350040,2127448,BX-09,18,222,BX46,40.835084,-73.852992,40.83599,-73.852896,11/09/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,16 +67158,CONFIDENTIAL,Homeowner Assistance Program,04/18/2018,04/18/2018,,----,----,Brooklyn,,,,BK-04,34,,,,,,,04/18/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67337,212 LINDEN BLVD,Multifamily Incentives Program,04/18/2018,06/19/2018,977366,212,LINDEN BOULEVARD,Brooklyn,11226,3050880025,3426720,BK-17,40,820,BK60,40.652565,-73.95107,40.65226,-73.950998,06/19/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,1,2,4,0,0,0,0,0,7,0,7,24 +66901,BROOKLYN BRIDGE PARK PIER 6,Multifamily Incentives Program,04/17/2018,,983834,50,ATLANTIC AVENUE,Brooklyn,11201,,,BK-06,39,47,BK33,40.691216,-73.997898,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126 +66901,BROOKLYN BRIDGE PARK PIER 6,Multifamily Incentives Program,04/17/2018,,983835,15,ATLANTIC AVENUE,Brooklyn,11201,,,BK-02,33,7,BK09,40.691817,-74,,,,New Construction,No,Non Prevailing Wage,0,0,25,0,75,0,40,20,15,25,0,0,0,0,100,0,100,140 +67156,CONFIDENTIAL,Homeowner Assistance Program,04/13/2018,04/13/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,04/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67338,2802 KINGS HIGHWAY APARTMENTS,Multifamily Incentives Program,04/13/2018,07/23/2018,967870,2812,KINGS HIGHWAY,Brooklyn,11229,3076897502,3211211,BK-15,45,642,BK44,40.614918,-73.946368,40.61468,-73.946149,07/23/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,9,0,0,4,5,0,0,0,0,0,9,0,9,29 +67339,10 WEST 132 STREET APARTMENTS,Multifamily Incentives Program,04/12/2018,09/13/2019,40385,10,WEST 132 STREET,Manhattan,10037,1017290043,1089444,MN-10,9,208,MN03,40.811124,-73.939683,40.81093,-73.939878,09/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,2,3,0,0,0,0,0,0,5,0,5,16 +59464,296 WYTHE AVENUE,Multifamily Incentives Program,04/11/2018,,970805,292,WYTHE AVENUE,Brooklyn,11249,3023780021,3062567,BK-01,33,555,BK73,40.716125,-73.964082,40.71617,-73.964342,,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,1,10,0,0,0,0,0,0,11,0,11,55 +67152,CONFIDENTIAL,Homeowner Assistance Program,04/11/2018,04/11/2018,,----,----,Brooklyn,,,,BK-15,48,,,,,,,04/11/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67146,CONFIDENTIAL,Homeowner Assistance Program,04/06/2018,04/06/2018,,----,----,Brooklyn,,,,BK-05,42,,,,,,,04/06/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67145,CONFIDENTIAL,Homeowner Assistance Program,04/05/2018,04/05/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/05/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +67340,325 LAFAYETTE AVENUE APARTMENTS,Multifamily Incentives Program,04/05/2018,,969468,325,BOX STREET,Brooklyn,,,,BK-02,,,,,,,,,New Construction,No,Non Prevailing Wage,0,0,0,0,35,0,14,13,8,0,0,0,0,0,35,0,35,116 +66702,225 W 28TH STREET,Multifamily Incentives Program,04/03/2018,,982005,225,WEST 28 STREET,Manhattan,10001,1007780025,,MN-05,3,95,MN17,40.747629,-73.994265,40.74793,-73.994489,,New Construction,No,Non Prevailing Wage,0,0,35,0,0,0,4,24,5,2,0,0,0,0,35,0,35,112 +67159,CONFIDENTIAL,Homeowner Assistance Program,04/02/2018,04/02/2018,,----,----,Brooklyn,,,,BK-06,38,,,,,,,04/02/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66986,CONFIDENTIAL,Homeowner Assistance Program,03/30/2018,03/30/2018,,----,----,Brooklyn,,,,BK-14,48,,,,,,,03/30/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66983,CONFIDENTIAL,Homeowner Assistance Program,03/22/2018,03/22/2018,,----,----,Queens,,,,QN-12,27,,,,,,,03/22/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66987,CONFIDENTIAL,Homeowner Assistance Program,03/22/2018,03/22/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,03/22/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66981,CONFIDENTIAL,Homeowner Assistance Program,03/20/2018,03/20/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/20/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +67342,961 WILLOUGHBY AVENUE,Multifamily Incentives Program,03/20/2018,12/11/2019,970721,961,WILLOUGHBY AVENUE,Brooklyn,11221,3031830052,3421356,BK-04,34,391,BK78,40.697934,-73.930502,40.69817,-73.930751,12/11/2019,New Construction,No,Non Prevailing Wage,0,0,13,0,0,0,3,3,7,0,0,0,0,0,13,0,13,63 +67343,200 EAST 95 STREET,Multifamily Incentives Program,03/16/2018,,957179,1693,3 AVENUE,Manhattan,10128,1015407503,,MN-08,5,15601,MN32,40.784417,-73.949883,40.7841,-73.949709,,New Construction,No,Non Prevailing Wage,0,0,0,0,21,0,5,5,11,0,0,0,0,0,0,21,21,104 +66268,1134 FULTON STREET,Multifamily Incentives Program,03/15/2018,,981735,1134,FULTON STREET,Brooklyn,11216,3020170008,3057751,BK-03,36,227,BK69,40.681088,-73.95548,40.68071,-73.955196,,New Construction,No,Non Prevailing Wage,0,0,34,0,21,0,11,41,1,2,0,0,0,0,55,0,55,182 +66977,CONFIDENTIAL,Homeowner Assistance Program,03/13/2018,03/13/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/13/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66974,CONFIDENTIAL,Homeowner Assistance Program,03/12/2018,03/12/2018,,----,----,Bronx,,,,BX-05,14,,,,,,,03/12/2018,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +67345,246 JOHNSON AVENUE,Multifamily Incentives Program,03/12/2018,03/12/2018,974996,246,JOHNSON AVENUE,Brooklyn,11206,3030730006,3071294,BK-01,34,493,BK78,40.706993,-73.938857,40.70677,-73.939063,03/12/2018,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,30 +65774,260 KENT AVENUE,Multifamily Incentives Program,03/09/2018,,979744,260,KENT AVENUE,Brooklyn,11249,,,BK-01,33,555,BK73,40.716375,-73.96594,,,,New Construction,No,Non Prevailing Wage,0,0,66,0,0,0,21,27,18,0,0,0,0,0,66,0,66,332 +67346,690 BUSHWICK RESIDENCE,Multifamily Incentives Program,03/06/2018,08/09/2018,969456,690,BUSHWICK AVENUE,Brooklyn,11221,3032040030,3426017,BK-04,34,393,BK78,40.696872,-73.931488,40.69661,-73.931726,08/09/2018,New Construction,No,Non Prevailing Wage,0,0,0,6,0,0,0,3,3,0,0,0,0,0,6,0,6,20 +66889,CONFIDENTIAL,Homeowner Assistance Program,02/28/2018,06/15/2018,,----,----,Brooklyn,,,,BK-16,42,,,,,,,06/15/2018,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,4,4 +65541,TANYA TOWERS,Multifamily Incentives Program,02/27/2018,,12002,620,EAST 13 STREET,Manhattan,10009,1003950012,1004927,MN-03,2,28,MN28,40.728458,-73.977865,40.72814,-73.977706,,Preservation,No,Non Prevailing Wage,0,0,137,0,0,0,86,51,0,0,0,0,0,0,137,0,137,138 +66848,CONFIDENTIAL,Homeowner Assistance Program,02/27/2018,02/27/2018,,----,----,Queens,,,,QN-05,30,,,,,,,02/27/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,59140,1985,CRESTON AVENUE,Bronx,10453,2028070022,2007654,BX-05,14,241,BX41,40.851002,-73.906428,40.85111,-73.906659,,Preservation,No,Non Prevailing Wage,0,15,23,2,0,0,0,15,15,10,0,0,0,0,40,0,40,40 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,59142,1995,CRESTON AVENUE,Bronx,10453,2028070016,2007653,BX-05,14,241,BX41,40.851229,-73.906221,40.85134,-73.906449,,Preservation,No,Non Prevailing Wage,3,17,24,0,0,1,1,28,15,1,0,0,0,0,45,0,45,45 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,60441,1789,DAVIDSON AVENUE,Bronx,10453,2028670147,2008518,BX-05,14,217,BX36,40.849041,-73.912561,40.84929,-73.912687,,Preservation,No,Non Prevailing Wage,0,16,23,5,0,0,0,2,32,10,0,0,0,0,44,0,44,44 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,60442,1800,DAVIDSON AVENUE,Bronx,10453,2028610123,2008371,BX-05,14,217,BX36,40.849261,-73.91238,40.84919,-73.912109,,Preservation,No,Non Prevailing Wage,0,23,32,6,0,1,1,25,22,14,0,0,0,0,62,0,62,62 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,60444,1815,DAVIDSON AVENUE,Bronx,10453,2028670139,2008517,BX-05,14,217,BX36,40.849464,-73.912264,40.84979,-73.912332,,Preservation,No,Non Prevailing Wage,0,15,21,4,0,0,0,10,23,7,0,0,0,0,40,0,40,40 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,60446,1821,DAVIDSON AVENUE,Bronx,10453,2028670134,2008516,BX-05,14,217,BX36,40.849738,-73.912039,40.84999,-73.912101,,Preservation,No,Non Prevailing Wage,2,15,18,4,0,1,0,8,17,7,8,0,0,0,40,0,40,40 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,60447,1824,DAVIDSON AVENUE,Bronx,10453,2028610135,2008372,BX-05,14,217,BX36,40.849752,-73.912,40.84987,-73.911566,,Preservation,No,Non Prevailing Wage,0,11,21,2,0,1,0,6,19,5,5,0,0,0,35,0,35,35 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,74905,264,ECHO PLACE,Bronx,10457,2028090031,2007710,BX-05,15,23502,BX41,40.849583,-73.903976,40.84928,-73.903354,,Preservation,No,Non Prevailing Wage,0,14,12,0,0,1,1,7,14,5,0,0,0,0,27,0,27,27 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,94338,2474,MARION AVENUE,Bronx,10458,2030260007,2011067,BX-05,15,39902,BX05,40.860726,-73.893689,40.86067,-73.8934,,Preservation,No,Non Prevailing Wage,0,17,7,0,0,0,1,6,17,0,0,0,0,0,24,0,24,24 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,97492,2038,MORRIS AVENUE,Bronx,10453,2028070052,2007667,BX-05,14,241,BX41,40.852851,-73.905861,40.85269,-73.905681,,Preservation,No,Non Prevailing Wage,0,17,18,0,0,0,1,15,18,1,0,0,0,0,35,0,35,35 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,97493,2042,MORRIS AVENUE,Bronx,10453,2028070056,2007668,BX-05,14,241,BX41,40.852966,-73.905756,40.85287,-73.905511,,Preservation,No,Non Prevailing Wage,0,18,8,0,0,0,0,4,18,4,0,0,0,0,26,0,26,26 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,115683,1734,TOWNSEND AVENUE,Bronx,10453,2028490064,2008197,BX-05,14,22701,BX41,40.84719,-73.911551,40.84704,-73.911342,,Preservation,No,Non Prevailing Wage,0,12,13,0,0,1,0,4,16,6,0,0,0,0,26,0,26,26 +65357,MOUNT HOPE PRESERVATION APARTMENTS LLC.YR15.FY18,Multifamily Finance Program,02/23/2018,,115684,1735,TOWNSEND AVENUE,Bronx,10453,2028490024,2008177,BX-05,14,22701,BX41,40.8471,-73.911642,40.84723,-73.911905,,Preservation,No,Non Prevailing Wage,0,36,17,0,0,0,1,18,23,11,0,0,0,0,53,0,53,53 +55223,SYDNEY HOUSE,Multifamily Finance Program,02/22/2018,,979051,839-843,TILDEN STREET,Bronx,10467,2046710004,,BX-12,12,380,BX44,40.876868,-73.860572,40.8772,-73.860131,,New Construction,No,Non Prevailing Wage,0,0,56,0,0,1,0,26,24,7,0,0,0,0,1,56,57,57 +66846,CONFIDENTIAL,Homeowner Assistance Program,02/22/2018,02/22/2018,,----,----,Queens,,,,QN-07,20,,,,,,,02/22/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +67347,626 EAST 223 STREET,Multifamily Incentives Program,02/22/2018,11/28/2018,971954,626,EAST 223 STREET,Bronx,10466,2048240052,2129413,BX-12,12,394,BX44,40.887101,-73.863491,40.887,-73.863828,11/28/2018,New Construction,No,Non Prevailing Wage,0,1,1,0,0,0,0,1,1,0,0,0,0,0,2,0,2,8 +67008,1992 THIRD AVENUE APARTMENTS,Multifamily Incentives Program,02/18/2018,08/09/2018,958943,1992,3 AVENUE,Manhattan,10029,1016370036,1052157,MN-11,8,172,MN33,40.79379,-73.943071,40.79392,-73.943357,08/09/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,5,15 +64636,505 EAST 86TH STREET,Multifamily Incentives Program,02/16/2018,,976821,505,EAST 86 STREET,Manhattan,10028,,,MN-08,5,14402,MN32,40.775767,-73.946719,,,,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,1,1,3,0,0,0,0,0,5,0,5,140 +67162,CONFIDENTIAL,Homeowner Assistance Program,02/15/2018,02/15/2018,,----,----,Staten Island,,,,SI-02,51,,,,,,,02/15/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67349,615 ST JOHN'S PLACE APARTMENTS,Multifamily Incentives Program,02/15/2018,07/23/2018,981750,615,ST JOHN PLACE,Brooklyn,11238,3011750067,3426021,BK-08,35,217,BK61,40.672536,-73.957876,40.67279,-73.957818,07/23/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,3,0,0,0,0,0,0,3,0,3,7 +67006,16 CHARLES PLACE,Multifamily Incentives Program,02/12/2018,03/29/2019,218892,16,CHARLES PLACE,Brooklyn,11221,3031830066,3421447,BK-04,34,391,BK78,40.697849,-73.931646,40.69799,-73.931472,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,2,2,4,0,0,0,0,0,8,0,8,39 +67350,524 EAST 14TH STREET,Multifamily Incentives Program,02/09/2018,10/23/2018,6361,222,AVENUE A,Manhattan,10009,1004077503,1090249,MN-03,2,34,MN22,40.730102,-73.980574,40.72984,-73.979853,10/23/2018,New Construction,No,Non Prevailing Wage,0,0,16,0,34,0,12,13,25,0,0,0,0,0,50,0,50,160 +48768,URBAN HORIZONS HDFC.YR15.FY18,Multifamily Finance Program,02/06/2018,,65052,50,EAST 168 STREET,Bronx,10452,2024800001,2101464,BX-04,16,197,BX63,40.836725,-73.919292,40.83626,-73.919173,,Preservation,No,Non Prevailing Wage,4,121,6,0,0,1,23,18,72,19,0,0,0,0,132,0,132,132 +67351,876 BERGEN STREET,Multifamily Incentives Program,02/06/2018,04/10/2019,982109,876,BERGEN STREET,Brooklyn,11238,3011490017,,BK-08,35,305,BK61,40.677323,-73.958266,40.67707,-73.958389,04/10/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,5,0,0,0,0,0,0,5,0,5,16 +67009,22 MELROSE STREET,Multifamily Incentives Program,01/31/2018,,976966,22,MELROSE STREET,Brooklyn,11206,3031600015,3424889,BK-04,34,389,BK78,40.697909,-73.935508,40.69776,-73.935288,,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,2,1,0,0,0,0,3,0,3,8 +67013,ST. LUCY'S APARTMENTS,Multifamily Finance Program,01/31/2018,01/31/2018,18948,315,EAST 103 STREET,Manhattan,10029,1016750011,1079348,MN-11,8,164,MN33,40.788364,-73.943062,40.7885,-73.942433,01/31/2018,Preservation,Yes,Non Prevailing Wage,0,0,36,13,0,1,6,17,26,0,0,0,0,1,50,0,50,50 +67013,ST. LUCY'S APARTMENTS,Multifamily Finance Program,01/31/2018,01/31/2018,804630,330,EAST 104 STREET,Manhattan,10029,1016750011,1079349,MN-11,8,164,MN33,40.78894,-73.942537,40.7885,-73.942433,01/31/2018,Preservation,Yes,Non Prevailing Wage,0,0,38,12,0,0,6,17,27,0,0,0,0,0,50,0,50,50 +66717,CONFIDENTIAL,Homeowner Assistance Program,01/24/2018,05/15/2018,,----,----,Brooklyn,,,,BK-03,36,,,,,,,05/15/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +62289,CAMBA. 210-214 HEGEMAN AVE,Multifamily Finance Program,01/22/2018,,976044,212,HEGEMAN AVENUE,Brooklyn,11212,3036390035,,BK-16,42,922,BK81,40.656754,-73.904015,40.65654,-73.903936,,New Construction,No,Non Prevailing Wage,50,4,16,0,0,1,70,0,1,0,0,0,0,0,71,0,71,71 +63939,NERVE LTU HOUSING DEVELOPMENT FUND COMPANY.HUDMF.FY18,Multifamily Finance Program,01/22/2018,01/22/2018,19352,15,EAST 111 STREET,Manhattan,10029,1016170007,1051628,MN-11,9,17402,MN33,40.797229,-73.948165,40.79734,-73.9475,01/22/2018,Preservation,Yes,Non Prevailing Wage,108,19,6,0,1,1,0,36,72,27,0,0,0,0,135,0,135,135 +63941,HP DUNWELL HOUSING DEVELOPMENT FUND COMPANY.HUDMF.FY18,Multifamily Finance Program,01/22/2018,,5713,1930,AMSTERDAM AVENUE,Manhattan,10032,1021140035,1062692,MN-12,7,241,MN36,40.831999,-73.942685,40.83209,-73.943111,,Preservation,No,Non Prevailing Wage,160,13,3,6,0,1,0,154,29,0,0,0,0,0,183,0,183,183 +67056,CONFIDENTIAL,Homeowner Assistance Program,01/22/2018,03/23/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +64756,BANANA KELLY HDFC.GHPP.FY18,Multifamily Finance Program,01/19/2018,,89504,936,KELLY STREET,Bronx,10459,2027110013,2005623,BX-02,17,87,BX33,40.820584,-73.895895,40.82043,-73.895635,,Preservation,No,Non Prevailing Wage,0,4,3,0,0,0,0,4,0,3,0,0,0,0,7,0,7,7 +64756,BANANA KELLY HDFC.GHPP.FY18,Multifamily Finance Program,01/19/2018,,89505,940,KELLY STREET,Bronx,10459,2027110014,2005624,BX-02,17,87,BX33,40.820677,-73.895881,40.82054,-73.895624,,Preservation,No,Non Prevailing Wage,0,5,1,0,0,1,1,0,0,6,0,0,0,0,7,0,7,7 +64756,BANANA KELLY HDFC.GHPP.FY18,Multifamily Finance Program,01/19/2018,,89506,944,KELLY STREET,Bronx,10459,2027110016,2005625,BX-02,17,87,BX33,40.82077,-73.89587,40.82064,-73.895603,,Preservation,No,Non Prevailing Wage,0,3,4,0,0,0,0,2,3,2,0,0,0,0,7,0,7,7 +66765,CONFIDENTIAL,Homeowner Assistance Program,01/19/2018,01/19/2018,,----,----,Bronx,,,,BX-04,16,,,,,,,01/19/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +63014,1325 SOUTHERN BOULEVARD,Small Homes Program,01/18/2018,,975336,1325,SOUTHERN BOULEVARD,Bronx,10459,2029760098,2010494,BX-03,17,123,BX75,40.831084,-73.891492,40.83135,-73.89173,,New Construction,No,Non Prevailing Wage,0,12,18,0,0,1,5,10,12,4,0,0,0,0,31,0,31,31 +66763,CONFIDENTIAL,Homeowner Assistance Program,01/17/2018,01/17/2018,,----,----,Brooklyn,,,,BK-12,44,,,,,,,01/17/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66758,CONFIDENTIAL,Homeowner Assistance Program,01/12/2018,01/12/2018,,----,----,Brooklyn,,,,BK-15,46,,,,,,,01/12/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66754,CONFIDENTIAL,Homeowner Assistance Program,01/11/2018,01/11/2018,,----,----,Bronx,,,,BX-12,12,,,,,,,01/11/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +67011,2547 CRUGER AVENUE,Multifamily Incentives Program,01/11/2018,07/23/2018,978238,2547,CRUGER AVENUE,Bronx,10467,2044330043,2129400,BX-11,15,330,BX07,40.863901,-73.866399,40.86468,-73.866647,07/23/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,5,0,0,2,3,0,0,0,0,0,5,0,5,15 +67010,245 EAST 115 STREET,Multifamily Incentives Program,01/10/2018,,19548,245,EAST 115 STREET,Manhattan,10029,1016650122,1052559,MN-11,8,188,MN34,40.796587,-73.938926,40.79671,-73.938605,,New Construction,No,Non Prevailing Wage,0,0,0,0,4,0,0,4,0,0,0,0,0,0,4,0,4,13 +66753,CONFIDENTIAL,Homeowner Assistance Program,01/09/2018,01/09/2018,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/09/2018,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +67352,111 EAST 115TH STREET,Multifamily Incentives Program,01/08/2018,06/29/2018,966845,109,EAST 115 STREET,Manhattan,10029,1016430005,1089702,MN-11,8,182,MN34,40.798456,-73.943335,40.79858,-73.943132,06/29/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,1,4,5,0,0,0,0,0,10,0,10,32 +66689,CONFIDENTIAL,Homeowner Assistance Program,01/05/2018,05/18/2018,,----,----,Brooklyn,,,,BK-03,36,,,,,,,05/18/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +67007,198 19TH STREET,Multifamily Incentives Program,01/05/2018,01/05/2018,974368,198,19 STREET,Brooklyn,11232,3006370019,3323805,BK-07,38,143,BK37,40.663206,-73.993476,40.663,-73.993606,01/05/2018,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,29 +67012,869 PARK AVENUE,Multifamily Incentives Program,01/04/2018,01/24/2018,966038,869,PARK AVENUE,Brooklyn,11206,3015797501,3413991,BK-03,36,28501,BK78,40.698634,-73.940455,40.69888,-73.940376,01/24/2018,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,9,0,0,0,0,0,0,9,0,9,44 +67353,517 WEST 134 STREET,Multifamily Incentives Program,01/02/2018,12/17/2019,966936,517,WEST 134 STREET,Manhattan,10031,1019880018,,MN-09,7,22301,MN06,40.818829,-73.95412,40.81896,-73.953867,12/17/2019,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,0,4,1,0,0,0,0,0,5,0,5,23 +61388,ESSEX CROSSING - SITE 4,Multifamily Finance Program,12/29/2017,,975509,180,BROOME STREET,Manhattan,10002,1003460175,,MN-03,1,1402,MN28,40.716868,-73.986065,40.71733,-73.986454,,New Construction,No,Non Prevailing Wage,0,10,43,33,35,0,40,37,39,5,0,0,0,0,121,0,121,263 +51302,LA CENTRAL/BRONXCHESTER - BUILDINGS A & B,Multifamily Finance Program,12/28/2017,,979324,600,BERGEN AVENUE,Bronx,10455,2023610001,,BX-01,17,71,BX34,40.816749,-73.915298,40.81668,-73.914692,,New Construction,No,Non Prevailing Wage,56,58,99,67,0,1,19,109,105,37,11,0,0,0,281,0,281,281 +51302,LA CENTRAL/BRONXCHESTER - BUILDINGS A & B,Multifamily Finance Program,12/28/2017,,979325,556,BERGEN AVENUE,Bronx,10455,2022940032,,BX-01,17,71,BX34,40.815937,-73.916354,40.81602,-73.915473,,New Construction,No,Non Prevailing Wage,43,44,73,54,0,1,6,90,85,25,9,0,0,0,215,0,215,215 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979259,475,VANDALIA AVENUE,Brooklyn,11239,3044520290,,BK-05,42,1070,BK82,40.655035,-73.874937,40.65522,-73.875218,09/30/2019,New Construction,No,Non Prevailing Wage,3,1,4,0,0,0,0,0,1,7,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979260,479,VANDALIA AVENUE,Brooklyn,11239,3044520289,,BK-05,42,1070,BK82,40.655071,-73.87485,40.65528,-73.875081,09/30/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,1,0,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979261,481,VANDALIA AVENUE,Brooklyn,11239,3044520288,,BK-05,42,1070,BK82,40.65509,-73.874807,40.65532,-73.87498,09/30/2019,New Construction,No,Non Prevailing Wage,3,2,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979262,483,VANDALIA AVENUE,Brooklyn,11239,3044520287,,BK-05,42,1070,BK82,40.655109,-73.87476,40.65536,-73.874875,09/30/2019,New Construction,No,Non Prevailing Wage,3,2,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979263,485,VANDALIA AVENUE,Brooklyn,11239,3044520286,,BK-05,42,1070,BK82,40.655128,-73.874717,40.65541,-73.874774,09/30/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979264,487,VANDALIA AVENUE,Brooklyn,11239,3044520285,,BK-05,42,1070,BK82,40.655145,-73.874674,40.65545,-73.874669,08/01/2019,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,4,3,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979265,489,VANDALIA AVENUE,Brooklyn,11239,3044520284,,BK-05,42,1070,BK82,40.655164,-73.87463,40.65549,-73.874565,08/01/2019,New Construction,No,Non Prevailing Wage,2,3,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979266,491,VANDALIA AVENUE,Brooklyn,11239,3044520283,,BK-05,42,1070,BK82,40.655183,-73.874587,40.65554,-73.87446,08/01/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979267,493,VANDALIA AVENUE,Brooklyn,11239,3044520282,,BK-05,42,1070,BK82,40.655202,-73.87454,40.65558,-73.874359,08/01/2019,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979268,495,VANDALIA AVENUE,Brooklyn,11239,3044520281,,BK-05,42,1070,BK82,40.655219,-73.874497,40.65563,-73.874255,08/01/2019,New Construction,No,Non Prevailing Wage,3,2,3,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979269,497,VANDALIA AVENUE,Brooklyn,11239,3044520280,,BK-05,42,1070,BK82,40.655238,-73.874453,40.65568,-73.874132,08/01/2019,New Construction,No,Non Prevailing Wage,3,2,3,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979270,494,VANDALIA AVENUE,Brooklyn,11239,3044520441,,BK-05,42,1070,BK82,40.655082,-73.874778,40.65486,-73.874613,11/25/2019,New Construction,No,Non Prevailing Wage,0,0,7,0,0,1,1,1,6,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979271,496,VANDALIA AVENUE,Brooklyn,11239,3044520442,,BK-05,42,1070,BK82,40.655114,-73.874706,40.6549,-73.874508,11/25/2019,New Construction,No,Non Prevailing Wage,1,3,4,0,0,0,1,1,6,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979272,498,VANDALIA AVENUE,Brooklyn,11239,3044520443,,BK-05,42,1070,BK82,40.655145,-73.87463,40.65494,-73.874407,11/25/2019,New Construction,No,Non Prevailing Wage,2,4,2,0,0,0,1,1,5,0,1,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979273,500,VANDALIA AVENUE,Brooklyn,11239,3044520444,,BK-05,42,1070,BK82,40.655177,-73.874555,40.65499,-73.874303,11/25/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979274,502,VANDALIA AVENUE,Brooklyn,11239,3044520445,,BK-05,42,1070,BK82,40.655208,-73.874482,40.65503,-73.874198,11/25/2019,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979275,504,VANDALIA AVENUE,Brooklyn,11239,3044520446,,BK-05,42,1070,BK82,40.655238,-73.874407,40.65508,-73.874093,12/26/2019,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979276,506,VANDALIA AVENUE,Brooklyn,11239,3044520447,,BK-05,42,1070,BK82,40.655271,-73.874335,40.65512,-73.873992,11/21/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979277,508,VANDALIA AVENUE,Brooklyn,11239,3044520448,,BK-05,42,1070,BK82,40.655301,-73.874259,40.65517,-73.873888,11/21/2019,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +54360,SPRING CREEK PHASE 4B-1,Multifamily Finance Program,12/28/2017,12/26/2019,979278,510,VANDALIA AVENUE,Brooklyn,11239,3044520449,,BK-05,42,1070,BK82,40.655334,-73.874187,40.65521,-73.873783,11/25/2019,New Construction,No,Non Prevailing Wage,2,2,4,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +58936,COMMUNITY ACCESS.985 BRUCKNER BLVD,Multifamily Finance Program,12/28/2017,,977400,985,BRUCKNER BOULEVARD,Bronx,10459,2027350028,2129171,BX-02,17,89,BX27,40.819841,-73.891062,40.81982,-73.891677,,New Construction,No,Non Prevailing Wage,120,0,94,0,0,1,133,18,64,0,0,0,0,0,215,0,215,215 +61357,600 EAST 156TH STREET,Multifamily Finance Program,12/28/2017,,976032,600,EAST 156 STREET,Bronx,10455,2026240041,,BX-01,17,75,BX34,40.818946,-73.909566,40.81865,-73.909349,,New Construction,No,Non Prevailing Wage,35,52,87,0,0,1,11,55,81,28,0,0,0,0,175,0,175,175 +62962,CRESTON PARKVIEW,Multifamily Finance Program,12/28/2017,,975399,2519,CRESTON AVENUE,Bronx,10468,2031750026,,BX-07,14,401,BX05,40.8634,-73.897679,40.86353,-73.897994,,New Construction,No,Non Prevailing Wage,19,38,112,19,0,1,41,75,54,19,0,0,0,0,189,0,189,189 +63913,BEDFORD ARMS,Multifamily Finance Program,12/28/2017,,303335,1350,BEDFORD AVENUE,Brooklyn,11216,3012050028,3029966,BK-08,35,221,BK61,40.677214,-73.952718,40.67739,-73.953211,,New Construction,No,Non Prevailing Wage,0,19,28,0,46,1,0,59,26,9,0,0,0,0,94,0,94,94 +64297,187 KENT AVENUE,Multifamily Incentives Program,12/28/2017,,978835,187,KENT AVENUE,Brooklyn,11249,3023570001,3426817,BK-01,33,555,BK73,40.717983,-73.964214,40.71769,-73.964196,,New Construction,No,Non Prevailing Wage,0,0,20,0,0,0,5,5,10,0,0,0,0,0,20,0,20,96 +65213,COMPASS 3,Multifamily Finance Program,12/28/2017,,977584,1560,BOONE AVENUE,Bronx,10460,2030140015,,BX-03,17,157,BX75,40.833139,-73.88502,40.8336,-73.884159,,New Construction,No,Non Prevailing Wage,74,74,217,0,0,1,87,154,69,56,0,0,0,0,366,0,366,366 +65389,SAINT MARKS APARTMENTS HDFC.HUDMF.FY18,Multifamily Finance Program,12/28/2017,12/28/2017,375075,959,ST MARKS AVENUE,Brooklyn,11213,3012230053,3030845,BK-08,36,311,BK61,40.674641,-73.939528,40.67492,-73.939658,12/28/2017,Preservation,No,Non Prevailing Wage,30,16,2,3,0,1,0,10,29,13,0,0,0,0,52,0,52,52 +65825,633 MARCY AVE,Multifamily Incentives Program,12/28/2017,,979013,633,MARCY AVENUE,Brooklyn,11206,3017710005,3425662,BK-03,36,261,BK75,40.692917,-73.948707,40.69297,-73.948426,,New Construction,No,Non Prevailing Wage,0,0,12,0,8,0,0,14,6,0,0,0,0,0,20,0,20,64 +58661,RICOS PLACE HDFC.YR15.FY18,Multifamily Finance Program,12/27/2017,,221786,806,CLASSON AVENUE,Brooklyn,11238,3011770030,3029554,BK-08,35,215,BK64,40.672839,-73.960825,40.67291,-73.961095,,Preservation,No,Non Prevailing Wage,0,0,9,5,0,0,0,1,5,8,0,0,0,0,14,0,14,14 +61186,CATHOLIC CHARITIES. 879 BECK STREET,Multifamily Finance Program,12/27/2017,,979998,909,BECK STREET,Bronx,10459,,,BX-02,17,87,BX33,40.819642,-73.895315,,,,New Construction,No,Prevailing Wage,88,0,0,0,0,1,27,61,1,0,0,0,0,0,89,0,89,89 +65573,115 STANWIX STREET,Multifamily Incentives Program,12/22/2017,08/15/2019,978595,115,STANWIX STREET,Brooklyn,11206,3031390021,3426343,BK-04,34,391,BK78,40.702229,-73.935313,40.70191,-73.935522,08/15/2019,New Construction,No,Non Prevailing Wage,0,0,16,0,25,0,2,28,7,4,0,0,0,0,41,0,41,136 +59417,901 MYRTLE AVENUE,Multifamily Incentives Program,12/20/2017,05/30/2019,969001,98,TOMPKINS AVENUE,Brooklyn,11206,3017470034,,BK-03,36,257,BK75,40.696125,-73.946447,40.69591,-73.946776,05/30/2019,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,0,7,0,0,0,0,0,0,7,0,7,34 +61849,TRACEY TOWERS.HRP.FY18,Multifamily Finance Program,12/20/2017,,89017,20,WEST MOSHOLU PARKWAY SOUTH,Bronx,,,,BX-07,11,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,454,2,0,0,0,144,273,39,0,0,0,0,456,0,456,456 +61849,TRACEY TOWERS.HRP.FY18,Multifamily Finance Program,12/20/2017,,871701,40,WEST MOSHOLU PARKWAY SOUTH,Bronx,,,,BX-07,11,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,407,7,0,1,0,130,250,35,0,0,0,0,415,0,415,415 +61571,255 E HOUSTON,Multifamily Incentives Program,12/19/2017,,972757,255,EAST HOUSTON STREET,Manhattan,10002,1003550054,1090485,MN-03,2,3001,MN27,40.72186,-73.985126,40.72149,-73.985129,,New Construction,No,Non Prevailing Wage,0,9,9,0,5,0,10,10,3,0,0,0,0,0,23,0,23,88 +61628,JHB II HDFC.YR15.FY18,Multifamily Finance Program,12/18/2017,12/18/2017,50402,1316,BOSTON ROAD,Bronx,10456,2029610025,2097215,BX-03,17,151,BX35,40.831588,-73.899553,40.83142,-73.899319,12/18/2017,Preservation,Yes,Non Prevailing Wage,43,1,0,0,0,1,45,0,0,0,0,0,0,0,45,0,45,45 +66457,CONFIDENTIAL,Homeowner Assistance Program,12/18/2017,12/18/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/18/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +66459,CONFIDENTIAL,Homeowner Assistance Program,12/18/2017,12/18/2017,,----,----,Queens,,,,QN-08,24,,,,,,,12/18/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66460,CONFIDENTIAL,Homeowner Assistance Program,12/18/2017,12/18/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,12/18/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59429,230-232 EAST 54TH STREET,Multifamily Incentives Program,12/15/2017,,980847,230-232,EAST 54 STREET,Manhattan,10022,1013270033,1038565,MN-06,4,98,MN19,40.757967,-73.968106,40.75755,-73.967702,,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,5,5,1,0,0,0,0,0,11,0,11,130 +63775,BEACH GREEN DUNES - PHASE 2,Multifamily Finance Program,12/15/2017,,957258,4519,ROCKAWAY BEACH BOULEVARD,Queens,11691,,,QN-14,31,97204,QN12,40.593595,-73.776547,,,,New Construction,No,Non Prevailing Wage,26,25,75,0,0,1,20,59,36,12,0,0,0,0,127,0,127,127 +65364,CASA CECILIA,Multifamily Incentives Program,12/15/2017,12/15/2017,42639,528,WEST 153 STREET,Manhattan,10031,1020840049,1062245,MN-09,7,237,MN04,40.830669,-73.944886,40.83069,-73.945526,12/15/2017,Preservation,Yes,Non Prevailing Wage,0,0,0,10,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +65364,CASA CECILIA,Multifamily Incentives Program,12/15/2017,12/15/2017,42642,536,WEST 153 STREET,Manhattan,10031,1020840053,1062248,MN-09,7,237,MN04,40.830735,-73.945045,40.83086,-73.94592,12/15/2017,Preservation,Yes,Non Prevailing Wage,0,0,0,24,0,1,0,0,16,9,0,0,0,0,25,0,25,25 +66455,CONFIDENTIAL,Homeowner Assistance Program,12/14/2017,12/14/2017,,----,----,Bronx,,,,BX-07,14,,,,,,,12/14/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60425,LIVONIA PHASE II -SITE 9,Multifamily Finance Program,12/13/2017,,971875,473,LIVONIA AVENUE,Brooklyn,11207,3037990045,,BK-05,42,1132,BK85,40.663906,-73.899798,40.66407,-73.900177,,New Construction,No,Non Prevailing Wage,15,8,33,0,0,1,0,32,23,2,0,0,0,0,57,0,57,57 +66446,CONFIDENTIAL,Homeowner Assistance Program,12/13/2017,12/13/2017,,----,----,Staten Island,,,,SI-01,50,,,,,,,12/13/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +61639,FULTON JEFFERSON HDFC.YR15.FY18,Multifamily Finance Program,12/07/2017,,65200,641,EAST 169 STREET,Bronx,10456,2029330063,2009741,BX-03,16,149,BX35,40.831411,-73.901096,40.83163,-73.900912,,Preservation,No,Non Prevailing Wage,4,15,1,0,0,0,0,1,14,5,0,0,0,0,20,0,20,20 +61639,FULTON JEFFERSON HDFC.YR15.FY18,Multifamily Finance Program,12/07/2017,,79749,1326,FULTON AVENUE,Bronx,10456,2029310013,2009684,BX-03,16,149,BX35,40.833056,-73.902872,40.83282,-73.902496,,Preservation,No,Non Prevailing Wage,2,20,2,0,0,0,0,4,15,5,0,0,0,0,24,0,24,24 +61639,FULTON JEFFERSON HDFC.YR15.FY18,Multifamily Finance Program,12/07/2017,,79796,1639,FULTON AVENUE,Bronx,10457,2029290078,2009657,BX-03,16,167,BX01,40.839734,-73.898814,40.84001,-73.899009,,Preservation,No,Non Prevailing Wage,7,32,3,0,0,0,0,10,22,10,0,0,0,0,42,0,42,42 +61639,FULTON JEFFERSON HDFC.YR15.FY18,Multifamily Finance Program,12/07/2017,,88676,635,JEFFERSON PLACE,Bronx,10456,2029350028,2009779,BX-03,16,149,BX35,40.833378,-73.899865,40.83356,-73.8998,,Preservation,No,Non Prevailing Wage,4,15,1,0,0,1,0,7,10,4,0,0,0,0,21,0,21,21 +66438,CONFIDENTIAL,Homeowner Assistance Program,12/04/2017,12/04/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,12/04/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66341,CONFIDENTIAL,Homeowner Assistance Program,11/30/2017,11/30/2017,,----,----,Queens,,,,QN-12,28,,,,,,,11/30/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66338,CONFIDENTIAL,Homeowner Assistance Program,11/29/2017,11/29/2017,,----,----,Bronx,,,,BX-07,11,,,,,,,11/29/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66339,CONFIDENTIAL,Homeowner Assistance Program,11/29/2017,11/29/2017,,----,----,Staten Island,,,,SI-02,49,,,,,,,11/29/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66340,CONFIDENTIAL,Homeowner Assistance Program,11/29/2017,11/29/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,11/29/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +66588,DAYTON BEACH PARK,Multifamily Finance Program,11/28/2017,,633610,8400,SHORE FRONT PARKWAY,Queens,11693,4161310001,4457811,QN-14,32,94203,QN12,40.585343,-73.80974,40.58588,-73.811211,,Preservation,No,Non Prevailing Wage,0,206,24,0,0,0,12,49,145,24,0,0,0,0,0,230,230,230 +66588,DAYTON BEACH PARK,Multifamily Finance Program,11/28/2017,,811267,8100,SHORE FRONT PARKWAY,Queens,11693,4161300001,4457808,QN-14,32,94203,QN12,40.586321,-73.806584,40.58694,-73.808098,,Preservation,No,Non Prevailing Wage,0,206,24,0,0,0,12,49,145,24,0,0,0,0,0,230,230,230 +66588,DAYTON BEACH PARK,Multifamily Finance Program,11/28/2017,,811268,8200,SHORE FRONT PARKWAY,Queens,11693,4161300001,4457810,QN-14,32,94203,QN12,40.586253,-73.807124,40.58694,-73.808098,,Preservation,No,Non Prevailing Wage,0,206,24,0,0,0,12,49,145,24,0,0,0,0,0,230,230,230 +66588,DAYTON BEACH PARK,Multifamily Finance Program,11/28/2017,,811269,8600,SHORE FRONT PARKWAY,Queens,11693,4161310001,4457812,QN-14,32,94203,QN12,40.584988,-73.810883,40.58588,-73.811211,,Preservation,No,Non Prevailing Wage,0,206,24,0,0,0,12,49,145,24,0,0,0,0,0,230,230,230 +66588,DAYTON BEACH PARK,Multifamily Finance Program,11/28/2017,,811270,8800,SHORE FRONT PARKWAY,Queens,11693,4161310001,4457813,QN-14,32,94203,QN12,40.584705,-73.811974,40.58588,-73.811211,,Preservation,No,Non Prevailing Wage,0,205,24,0,0,0,12,48,145,24,0,0,0,0,0,229,229,229 +66336,CONFIDENTIAL,Homeowner Assistance Program,11/22/2017,11/22/2017,,----,----,Brooklyn,,,,BK-05,42,,,,,,,11/22/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66337,CONFIDENTIAL,Homeowner Assistance Program,11/22/2017,11/22/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,11/22/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64399,CAROL GARDENS.PLP.FY2018,Multifamily Finance Program,11/21/2017,,113491,880,THIERIOT AVENUE,Bronx,10473,2036420001,2092758,BX-09,18,42,BX09,40.823093,-73.862394,40.82321,-73.862105,,Preservation,No,Prevailing Wage,10,76,70,0,0,1,0,32,78,47,0,0,0,0,157,0,157,157 +64399,CAROL GARDENS.PLP.FY2018,Multifamily Finance Program,11/21/2017,,806980,820,THERIOT AVENUE,Bronx,10473,2036420030,2092759,BX-09,18,42,BX09,40.822154,-73.862172,40.82204,-73.861833,,Preservation,No,Prevailing Wage,11,76,69,0,0,1,0,32,78,47,0,0,0,0,157,0,157,157 +65361,711 SEA GIRT HDFC,Multifamily Incentives Program,11/21/2017,11/21/2017,694083,11-Jul,SEAGIRT AVENUE,Queens,11691,4156100001,4298968,QN-14,31,101002,QN15,40.595996,-73.742187,40.59532,-73.741923,11/21/2017,Preservation,Yes,Non Prevailing Wage,7,0,454,454,1,1,569,312,36,0,0,0,0,0,917,0,917,917 +62203,CCM. 404 SNEDIKER AVE. BEVERLY'S PLACE,Multifamily Finance Program,11/20/2017,,973532,402,SNEDIKER AVENUE,Brooklyn,11207,3037990026,3327032,BK-05,42,1132,BK85,40.665053,-73.899901,40.66489,-73.900154,,New Construction,No,Non Prevailing Wage,43,0,28,0,0,1,52,5,10,5,0,0,0,0,72,0,72,72 +66333,CONFIDENTIAL,Homeowner Assistance Program,11/20/2017,11/20/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,11/20/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +66332,CONFIDENTIAL,Homeowner Assistance Program,11/17/2017,11/17/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,11/17/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +66331,CONFIDENTIAL,Homeowner Assistance Program,11/16/2017,11/16/2017,,----,----,Manhattan,,,,MN-11,5,,,,,,,11/16/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +61740,HELP. 771-775 CROTONA PARK NORTH,Multifamily Finance Program,11/15/2017,,973102,771,CROTONA PARK NORTH,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,,New Construction,No,Prevailing Wage,83,0,0,0,0,1,53,31,0,0,0,0,0,0,84,0,84,84 +66330,CONFIDENTIAL,Homeowner Assistance Program,11/15/2017,11/15/2017,,----,----,Queens,,,,QN-10,32,,,,,,,11/15/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64510,848 LORIMER STREET,Multifamily Incentives Program,11/14/2017,10/31/2019,976568,848,LORIMER STREET,Brooklyn,11222,3026790046,3426090,BK-01,33,569,BK76,40.722246,-73.950939,40.72242,-73.95073,10/31/2019,New Construction,No,Non Prevailing Wage,0,0,4,0,12,0,4,9,3,0,0,0,0,0,16,0,16,52 +66325,CONFIDENTIAL,Homeowner Assistance Program,11/13/2017,11/13/2017,,----,----,Queens,,,,QN-04,21,,,,,,,11/13/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58972,NOONAN PLAZA HUDMF.FY.2018,Multifamily Finance Program,11/09/2017,,120972,105,WEST 168 STREET,Bronx,10452,2025180001,2003313,BX-04,16,211,BX26,40.838398,-73.925141,40.83887,-73.925281,,Preservation,No,Non Prevailing Wage,230,38,14,0,0,1,14,114,1,133,21,0,0,0,283,0,283,283 +65246,144-146 WEST STREET,Multifamily Incentives Program,11/09/2017,,969912,144,WEST STREET,Brooklyn,11222,3025310001,,BK-01,33,563,BK76,40.731958,-73.959599,40.73198,-73.959329,,New Construction,No,Non Prevailing Wage,0,0,4,0,3,0,0,5,2,0,0,0,0,0,7,0,7,22 +65856,WYATT TEE WALKER HOUSING FOR THE ELDERLY,Multifamily Incentives Program,11/08/2017,11/08/2017,3974,2177,FREDERICK DOUGLASS BOULEVARD,Manhattan,10026,1019440036,1077380,MN-10,9,20102,MN11,40.805386,-73.954675,40.80566,-73.954996,11/08/2017,Preservation,Yes,Non Prevailing Wage,0,24,55,0,0,1,20,59,1,0,0,0,0,0,80,0,80,80 +66323,CONFIDENTIAL,Homeowner Assistance Program,11/08/2017,11/08/2017,,----,----,Queens,,,,QN-04,21,,,,,,,11/08/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66324,CONFIDENTIAL,Homeowner Assistance Program,11/08/2017,11/08/2017,,----,----,Bronx,,,,BX-11,13,,,,,,,11/08/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +65831,LEFFERTS HEIGHTS,Multifamily Incentives Program,11/06/2017,11/06/2017,323691,128,LEFFERTS PLACE,Brooklyn,11238,3020190040,3057840,BK-02,36,227,BK69,40.680941,-73.959115,40.68063,-73.958996,11/06/2017,Preservation,Yes,Non Prevailing Wage,0,86,0,0,0,1,0,22,35,30,0,0,0,0,87,0,87,87 +66107,CONFIDENTIAL,Homeowner Assistance Program,11/03/2017,02/09/2018,,----,----,Brooklyn,,,,BK-03,36,,,,,,,02/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +63289,ARKER. 888 FOUNTAIN AVE. BUILDING B1,Multifamily Finance Program,11/02/2017,,976532,888,FOUNTAIN AVENUE,Brooklyn,11208,3045860300,3327531,BK-05,42,1070,BK82,40.656717,-73.86441,40.65579,-73.865777,,New Construction,No,Prevailing Wage,199,0,0,0,0,1,0,199,1,0,0,0,0,0,200,0,200,200 +63345,888 FOUNTAIN AVENUE BUILDING B3,Multifamily Finance Program,11/02/2017,,979242,881,ERSKINE STREET,Brooklyn,11239,,,BK-05,42,1070,BK82,40.655925,-73.867792,,,,New Construction,No,Non Prevailing Wage,15,15,113,0,0,1,36,64,22,22,0,0,0,0,144,0,144,144 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,322293,580,LAFAYETTE AVENUE,Brooklyn,11205,3017880053,3049894,BK-03,36,243,BK75,40.689773,-73.952189,40.68959,-73.951757,,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,522494,145-36,111 AVENUE,Queens,11435,4119620043,4258806,QN-12,28,192,QN76,40.687264,-73.798903,40.68709,-73.798622,05/22/2019,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,525119,210-33,113 AVENUE,Queens,11429,4111310006,4239964,QN-13,27,53601,QN34,40.704021,-73.745073,40.70442,-73.74444,05/28/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,531492,150-22,118 AVENUE,Queens,11434,4122050012,4264972,QN-12,28,288,QN76,40.679845,-73.791613,40.67988,-73.791015,12/18/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,547028,133-18,134 STREET,Queens,11420,4117930074,4256293,QN-10,28,814,QN55,40.668799,-73.804852,40.66844,-73.80525,05/02/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,547717,129-23,135 PLACE,Queens,11420,4117750206,4255709,QN-10,28,814,QN55,40.671998,-73.802658,40.67166,-73.802378,03/29/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,547748,130-15,135 PLACE,Queens,11420,4117810267,4255925,QN-10,28,814,QN55,40.670744,-73.802648,40.67069,-73.80237,03/27/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,548146,117-31,135 STREET,Queens,11420,4116990051,4253189,QN-10,28,180,QN55,40.67703,-73.804414,40.67647,-73.803838,03/21/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,548229,129-41,135 STREET,Queens,11420,4117740550,4255686,QN-10,28,814,QN55,40.671994,-73.803578,40.67114,-73.803306,04/19/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,548243,129-59,135 STREET,Queens,11420,4117740559,4255693,QN-10,28,814,QN55,40.671972,-73.803578,40.67066,-73.8033,03/01/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,550452,116-02,139 STREET,Queens,11436,4119960131,4260020,QN-12,28,186,QN76,40.679527,-73.802596,40.67961,-73.80287,11/07/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,557243,115-41,147 STREET,Queens,11436,4119920097,4259913,QN-12,28,190,QN76,40.682777,-73.79495,40.68275,-73.794647,01/06/2020,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,560017,130-16,149 STREET,Queens,11436,4121110049,4262951,QN-12,28,788,QN76,40.669727,-73.789839,40.66958,-73.790142,05/31/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,572898,89-24,168 PLACE,Queens,11432,4098010002,4209651,QN-12,27,460,QN61,40.708646,-73.792909,40.70824,-73.792978,12/16/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,573899,111-14,169 STREET,Queens,11433,4102060037,4217310,QN-12,27,266,QN01,40.693497,-73.782559,40.69339,-73.782808,08/07/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,583605,102-47,187 STREET,Queens,11423,4103660143,4220759,QN-12,27,404,QN08,40.707568,-73.770455,40.70663,-73.769932,12/09/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,639912,167-08,110 AVENUE,Queens,11433,4101950004,4217004,QN-12,27,264,QN01,40.694856,-73.785396,40.69473,-73.785166,06/26/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,666605,114-47,INWOOD STREET,Queens,11436,4119760045,4259391,QN-12,28,192,QN76,40.684275,-73.797686,40.68395,-73.797233,04/30/2019,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,688787,103-16,PLATTWOOD AVENUE,Queens,11417,4114790029,4247693,QN-10,32,864,QN55,40.678319,-73.835552,40.67823,-73.83512,12/09/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,689508,107-34,PRINCETON STREET,Queens,11435,4100810019,4215402,QN-12,28,198,QN01,40.691281,-73.803157,40.69109,-73.803294,08/26/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,698722,131-15,SUTTER AVENUE,Queens,11420,4117550005,4254971,QN-10,28,818,QN55,40.672231,-73.807178,40.67244,-73.806824,04/10/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,698863,147-06,SUTTER AVENUE,Queens,11436,4121060024,4262782,QN-12,28,788,QN76,40.671659,-73.79103,40.67145,-73.79098,10/29/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,702317,133-16,VAN WYCK EXPRESSWAY SR WEST,Queens,,,,QN-10,28,,,,,,,06/19/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54838,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER II,Small Homes Program,11/01/2017,,704769,110-60,WOOD STREET,Queens,11412,4104110006,4221542,QN-12,27,402,QN08,40.699159,-73.770885,40.69902,-73.771105,07/29/2019,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,533699,187-06,120 AVENUE,Queens,11412,4124580421,4452019,QN-12,27,366,QN08,40.686132,-73.762424,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,533904,186-10,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,1,4,2,1,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,654069,121-30,FARMERS BOULEVARD,Queens,11413,4124580005,4452004,QN-12,27,366,QN08,40.684396,-73.760616,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,3,3,1,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,810816,186-07,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,811449,120-08,FARMERS BOULEVARD,Queens,11412,4124580421,4452028,QN-12,27,366,QN08,40.686214,-73.761104,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,811450,120-32,FARMERS BOULEVARD,Queens,11412,4124570002,4451981,QN-12,27,366,QN08,40.685659,-73.760915,40.68543,-73.761543,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,3,4,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933070,120-18,FARMERS BOULEVARD,Queens,11412,4124580421,4452033,QN-12,27,366,QN08,40.686047,-73.761043,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933141,187-10,120 AVENUE,Queens,11412,4124580421,4452020,QN-12,27,366,QN08,40.686143,-73.76238,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933143,187-12,120 AVENUE,Queens,11412,4124580421,4452021,QN-12,27,366,QN08,40.686148,-73.762359,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,1,2,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933145,187-16,120 AVENUE,Queens,11412,4124580421,4452023,QN-12,27,366,QN08,40.686159,-73.762312,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933146,187-20,120 AVENUE,Queens,11412,4124580421,4452024,QN-12,27,366,QN08,40.68617,-73.762268,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,1,1,1,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933147,187-22,120 AVENUE,Queens,11412,4124580421,4452025,QN-12,27,366,QN08,40.686175,-73.762247,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933149,187-28,120 AVENUE,Queens,11412,4124580421,4452027,QN-12,27,366,QN08,40.686192,-73.762182,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933153,121-18,FARMERS BOULEVARD,Queens,11413,4124580005,4452001,QN-12,27,366,QN08,40.684539,-73.760641,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,4,3,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933155,121-22,FARMERS BOULEVARD,Queens,11413,4124580005,4452002,QN-12,27,366,QN08,40.68449,-73.760634,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,4,3,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933156,121-16,FARMERS BOULEVARD,Queens,11413,4124580005,4435310,QN-12,27,366,QN08,40.684561,-73.760644,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,4,3,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933157,121-26,FARMERS BOULEVARD,Queens,11413,4124580005,4452003,QN-12,27,366,QN08,40.684443,-73.760623,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933158,121-34,FARMERS BOULEVARD,Queens,11413,4124580005,4452005,QN-12,27,366,QN08,40.684349,-73.760606,40.68436,-73.761071,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,0,7,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933172,120-10,FARMERS BOULEVARD,Queens,11412,4124580421,4452030,QN-12,27,366,QN08,40.686181,-73.761093,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933173,120-12,FARMERS BOULEVARD,Queens,11412,4124580421,4452031,QN-12,27,366,QN08,40.686148,-73.761079,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933174,120-14,FARMERS BOULEVARD,Queens,11412,4124580421,4452032,QN-12,27,366,QN08,40.686115,-73.761068,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,933176,120-20,FARMERS BOULEVARD,Queens,11412,4124580421,4452040,QN-12,27,366,QN08,40.686014,-73.761032,40.68584,-73.761844,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,3,0,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,957734,186-09,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,1,2,0,0,0,0,0,0,3,0,3,3 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,957743,120-36,FARMERS BOULEVARD,Queens,11412,4124570002,4451982,QN-12,27,366,QN08,40.685632,-73.760904,40.68543,-73.761543,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,1,6,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,957744,186-12,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,5,2,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,957745,186-20,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,5,2,0,0,0,0,0,0,7,0,7,7 +60426,MONTAUK HOUSING LLC.HUDMF.FY18,Multifamily Finance Program,11/01/2017,11/01/2017,957746,186-26,120 ROAD,Queens,,,,QN-nd,,Not Found,Not Found,,,,,11/01/2017,Preservation,Yes,Non Prevailing Wage,7,0,0,0,0,0,3,4,0,0,0,0,0,0,7,0,7,7 +61728,BFC. 140 ESSEX ST. ESSEX CROSSING SITE 8,Multifamily Finance Program,11/01/2017,,975686,140,ESSEX STREET,Manhattan,10002,1003540001,,MN-03,1,3001,MN27,40.720291,-73.987298,40.72018,-73.987081,,New Construction,No,Non Prevailing Wage,28,34,30,0,0,1,93,0,0,0,0,0,0,0,93,0,93,93 +63332,CIRRUS REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,60016,717,CROTONA PARK NORTH,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,9,37,0,0,1,0,33,8,6,0,0,0,0,47,0,47,47 +63342,BILIG REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,92760,1924,LORING PLACE SOUTH,Bronx,10453,2032210015,2014855,BX-05,14,24502,BX36,40.854779,-73.914346,40.85462,-73.91409,10/31/2017,Preservation,Yes,Non Prevailing Wage,2,5,4,0,0,0,0,0,1,10,0,0,0,0,11,0,11,11 +63342,BILIG REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,107785,2243,RYER AVENUE,Bronx,10457,2031580043,2013731,BX-05,15,38301,BX40,40.856068,-73.899516,40.85615,-73.899765,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,3,16,1,0,1,0,6,6,9,0,0,0,0,21,0,21,21 +63342,BILIG REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,107786,2247,RYER AVENUE,Bronx,10457,2031580041,2013730,BX-05,15,38301,BX40,40.856128,-73.899491,40.85628,-73.899697,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,8,13,0,0,0,0,5,17,0,0,0,0,0,22,0,22,22 +63343,ENDACOFE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115644,1455,TOWNSEND AVENUE,Bronx,10452,2028440033,2008111,BX-04,14,223,BX63,40.841186,-73.915871,40.84126,-73.916109,10/31/2017,Preservation,Yes,Non Prevailing Wage,2,11,40,0,0,1,0,40,8,6,0,0,0,0,54,0,54,54 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,45756,1801,ARCHER STREET,Bronx,10460,2039200029,2028634,BX-09,18,218,BX08,40.837525,-73.867135,40.83774,-73.867026,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,4,39,1,0,1,8,27,10,0,0,0,0,0,45,0,45,45 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,45757,1807,ARCHER STREET,Bronx,10460,2039200024,2028633,BX-09,18,218,BX08,40.837544,-73.866929,40.83777,-73.866697,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,6,38,0,0,1,8,26,11,0,0,0,0,0,45,0,45,45 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,75968,1121,ELDER AVENUE,Bronx,10472,2037390067,2023838,BX-09,17,5002,BX55,40.826776,-73.878762,40.82665,-73.879015,10/31/2017,Preservation,Yes,Non Prevailing Wage,3,9,36,0,0,1,0,33,14,2,0,0,0,0,49,0,49,49 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,94091,1117,MANOR AVENUE,Bronx,10472,2037420070,2023962,BX-09,18,5002,BX55,40.827113,-73.875979,40.82688,-73.8762,10/31/2017,Preservation,Yes,Non Prevailing Wage,4,12,37,0,0,1,13,29,12,0,0,0,0,0,54,0,54,54 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,97386,1400,MORRIS AVENUE,Bronx,10456,2027860002,2007297,BX-04,16,225,BX14,40.838031,-73.911282,40.83808,-73.910924,10/31/2017,Preservation,Yes,Non Prevailing Wage,3,11,48,0,0,1,14,27,17,5,0,0,0,0,63,0,63,63 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115231,526,TINTON AVENUE,Bronx,10455,2025820034,2003971,BX-01,8,31,BX39,40.812191,-73.90649,40.81224,-73.906182,10/31/2017,Preservation,Yes,Non Prevailing Wage,7,25,44,0,0,1,0,51,21,4,1,0,0,0,77,0,77,77 +63344,MATSIA REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,122778,1214,WHEELER AVENUE,Bronx,10472,2037720012,2025108,BX-09,17,54,BX08,40.829146,-73.880247,40.82913,-73.879968,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,4,12,0,0,1,6,6,1,4,0,0,0,0,17,0,17,17 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,45481,2272,ANDREWS AVENUE NORTH,Bronx,10468,2032180009,2014736,BX-07,14,255,BX30,40.860897,-73.907831,40.86049,-73.907846,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,2,24,0,0,1,0,21,2,4,0,0,0,0,27,0,27,27 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,77235,1184,EVERGREEN AVENUE,Bronx,10472,2037380033,2023773,BX-09,17,5002,BX55,40.827771,-73.880881,40.8279,-73.880639,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,8,40,0,0,1,0,32,17,0,0,0,0,0,49,0,49,49 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,80070,1082,GERARD AVENUE,Bronx,10452,2024780012,2002945,BX-04,16,195,BX63,40.832357,-73.922079,40.83246,-73.921718,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,16,44,0,0,1,0,51,10,1,0,0,0,0,62,0,62,62 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,94193,1334,MANOR AVENUE,Bronx,10472,2038660027,2027473,BX-09,18,56,BX08,40.832412,-73.877191,40.83274,-73.876988,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,2,15,0,0,0,0,9,8,0,0,0,0,0,17,0,17,17 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,94194,1338,MANOR AVENUE,Bronx,10472,2038660029,2027474,BX-09,18,56,BX08,40.832494,-73.877209,40.83287,-73.87702,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,4,12,0,0,1,0,9,8,0,0,0,0,0,17,0,17,17 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,121274,111,FATHER ZEISER PLACE,Bronx,10468,2032190212,2014822,BX-07,14,263,BX30,40.864232,-73.904522,40.86445,-73.904569,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,5,20,0,0,1,0,16,7,4,0,0,0,0,27,0,27,27 +63790,NEWSTART REALTY HDFC.HPO.FY17,Multifamily Finance Program,10/31/2017,10/31/2017,122776,1210,WHEELER AVENUE,Bronx,10472,2037720010,2025107,BX-09,17,54,BX08,40.829075,-73.880229,40.82902,-73.87994,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,7,10,0,0,0,5,7,1,4,0,0,0,0,17,0,17,17 +63791,REBIRTH REALTY CORP HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,45588,1644,ANTHONY AVENUE,Bronx,10457,2028880028,2009317,BX-04,16,167,BX01,40.842758,-73.904846,40.84281,-73.904509,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,4,46,0,0,1,1,40,10,0,0,0,0,0,51,0,51,51 +63791,REBIRTH REALTY CORP HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,117087,2407,VALENTINE AVENUE,Bronx,10458,2031520018,2092396,BX-05,15,23702,BX05,40.859579,-73.897031,40.85979,-73.897233,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,3,5,0,0,0,0,0,0,4,4,0,0,0,8,0,8,8 +63791,REBIRTH REALTY CORP HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,807018,2411,VALENTINE AVENUE,Bronx,10458,2031520018,2092398,BX-05,15,23702,BX05,40.859645,-73.897006,40.85979,-73.897233,10/31/2017,Preservation,Yes,Non Prevailing Wage,2,3,3,0,0,0,0,0,0,5,3,0,0,0,8,0,8,8 +63791,REBIRTH REALTY CORP HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,807019,2415,VALENTINE AVENUE,Bronx,10458,2031520018,2092399,BX-05,15,23702,BX05,40.859711,-73.896976,40.85979,-73.897233,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,2,6,0,0,1,1,1,0,4,4,0,0,0,10,0,10,10 +63791,REBIRTH REALTY CORP HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,807020,2417,VALENTINE AVENUE,Bronx,10458,2031520018,2092397,BX-05,15,23702,BX05,40.859744,-73.896962,40.85979,-73.897233,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,2,12,0,0,0,0,0,4,7,2,1,0,0,14,0,14,14 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,55763,555,CAULDWELL AVENUE,Bronx,10455,2026230056,2004413,BX-01,17,73,BX34,40.814481,-73.910655,40.81431,-73.911002,10/31/2017,Preservation,Yes,Non Prevailing Wage,3,2,16,0,0,1,0,0,20,2,0,0,0,0,22,0,22,22 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,55764,561,CAULDWELL AVENUE,Bronx,10455,2026230054,2004412,BX-01,17,73,BX34,40.81458,-73.910619,40.81445,-73.910955,10/31/2017,Preservation,Yes,Non Prevailing Wage,3,3,16,0,0,0,0,0,20,2,0,0,0,0,22,0,22,22 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,57682,1148,COLGATE AVENUE,Bronx,10472,2037370032,2023756,BX-09,17,52,BX55,40.826987,-73.881652,40.82738,-73.881475,10/31/2017,Preservation,Yes,Non Prevailing Wage,4,2,10,0,0,1,0,13,4,0,0,0,0,0,17,0,17,17 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,57684,1150,COLGATE AVENUE,Bronx,10472,2037370033,2023757,BX-09,17,52,BX55,40.827026,-73.88166,40.82749,-73.881496,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,6,10,0,0,0,0,14,3,0,0,0,0,0,17,0,17,17 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,57858,1405,COLLEGE AVENUE,Bronx,10456,2027860030,2007304,BX-04,16,225,BX14,40.837759,-73.910458,40.83794,-73.910631,10/31/2017,Preservation,Yes,Non Prevailing Wage,11,11,47,0,0,1,7,35,23,5,0,0,0,0,70,0,70,70 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,65335,571,EAST 170 STREET,Bronx,10456,2029320015,2009720,BX-03,16,149,BX35,40.834606,-73.901757,40.83472,-73.901446,10/31/2017,Preservation,Yes,Non Prevailing Wage,5,9,33,0,0,1,0,36,11,1,0,0,0,0,48,0,48,48 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,78364,1365,FINDLAY AVENUE,Bronx,10456,2027830042,2007199,BX-04,16,17702,BX14,40.836896,-73.909671,40.83697,-73.909931,10/31/2017,Preservation,Yes,Non Prevailing Wage,3,2,27,0,0,1,0,24,5,4,0,0,0,0,33,0,33,33 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,97380,1346,MORRIS AVENUE,Bronx,10456,2027850024,2007276,BX-04,16,17702,BX14,40.836684,-73.912075,40.83676,-73.91171,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,8,16,0,0,1,0,11,11,4,0,0,0,0,26,0,26,26 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,109418,1057,SHERIDAN AVENUE,Bronx,10456,2024560023,2002729,BX-04,16,18102,BX14,40.830596,-73.918804,40.83074,-73.918916,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,8,37,0,0,1,0,37,10,0,0,0,0,0,47,0,47,47 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,109446,1315,SHERIDAN AVENUE,Bronx,10456,2028310024,2007976,BX-04,16,17902,BX14,40.83654,-73.914297,40.83674,-73.914438,10/31/2017,Preservation,Yes,Non Prevailing Wage,8,11,27,0,0,1,0,29,18,0,0,0,0,0,47,0,47,47 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,109447,1320,SHERIDAN AVENUE,Bronx,10456,2028300013,2007965,BX-04,16,17902,BX14,40.836645,-73.914167,40.83672,-73.913773,10/31/2017,Preservation,Yes,Non Prevailing Wage,7,13,34,0,0,1,6,26,16,7,0,0,0,0,55,0,55,55 +63793,ZEVRONE REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,109488,1055,SHERMAN AVENUE,Bronx,10456,2024560055,2002738,BX-04,16,18102,BX14,40.83026,-73.917973,40.83083,-73.917947,10/31/2017,Preservation,Yes,Non Prevailing Wage,2,10,25,0,0,1,1,30,7,0,0,0,0,0,38,0,38,38 +63794,HAZY REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115234,533,TINTON AVENUE,Bronx,10455,2025810028,2003959,BX-01,8,35,BX39,40.812312,-73.906468,40.81231,-73.906757,10/31/2017,Preservation,Yes,Non Prevailing Wage,0,11,10,0,0,0,0,1,20,0,0,0,0,0,21,0,21,21 +63794,HAZY REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115235,537,TINTON AVENUE,Bronx,10455,2025810026,2003958,BX-01,8,35,BX39,40.812405,-73.906435,40.81242,-73.906717,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,8,11,0,0,1,0,1,20,0,0,0,0,0,21,0,21,21 +63794,HAZY REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115750,620,TRINITY AVENUE,Bronx,10455,2026230180,2004426,BX-01,8,73,BX34,40.815122,-73.909405,40.81508,-73.909152,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,11,90,0,0,1,56,46,1,0,0,0,0,0,103,0,103,103 +63795,NEW TOWNSEND REALTY HDFC.HPO.FY18,Multifamily Finance Program,10/31/2017,10/31/2017,115692,1785,TOWNSEND AVENUE,Bronx,10453,2028500016,2008210,BX-05,14,22701,BX41,40.848192,-73.910867,40.84826,-73.911109,10/31/2017,Preservation,Yes,Non Prevailing Wage,1,6,51,0,0,1,0,38,15,6,0,0,0,0,59,0,59,59 +65506,572 11TH AVE,Multifamily Incentives Program,10/31/2017,09/07/2018,972028,572,11 AVENUE,Manhattan,10036,1010720001,1090460,MN-04,3,129,MN15,40.761405,-73.997322,40.76166,-73.997322,09/07/2018,New Construction,No,Non Prevailing Wage,0,17,20,0,9,0,15,24,7,0,0,0,0,0,46,0,46,164 +66037,CONFIDENTIAL,Homeowner Assistance Program,10/31/2017,10/31/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,10/31/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +66038,CONFIDENTIAL,Homeowner Assistance Program,10/31/2017,10/31/2017,,----,----,Bronx,,,,BX-10,13,,,,,,,10/31/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +66586,STRYCKER'S BAY,Multifamily Finance Program,10/30/2017,,9804,689,COLUMBUS AVENUE,Manhattan,10025,1012070001,1079516,MN-07,6,177,MN12,40.791173,-73.96874,40.791,-73.968097,,Preservation,No,Non Prevailing Wage,0,90,30,0,0,0,0,60,30,30,0,0,0,0,0,120,120,120 +66586,STRYCKER'S BAY,Multifamily Finance Program,10/30/2017,,806136,66,WEST 94 STREET,Manhattan,10025,1012070001,1082652,MN-07,6,177,MN12,40.791258,-73.967772,40.791,-73.968097,,Preservation,No,Non Prevailing Wage,0,76,38,0,0,0,18,0,58,19,19,0,0,0,0,114,114,114 +63808,INDEPENDENCE HOUSE.PLP.FY18,Multifamily Finance Program,10/26/2017,,37054,176,WEST 94 STREET,Manhattan,10025,1012240058,1032545,MN-07,6,177,MN12,40.792483,-73.970689,40.79239,-73.971025,,Preservation,No,Prevailing Wage,14,76,29,0,0,1,32,88,0,0,0,0,0,0,120,0,120,120 +66025,CONFIDENTIAL,Homeowner Assistance Program,10/26/2017,10/26/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,10/26/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66033,CONFIDENTIAL,Homeowner Assistance Program,10/26/2017,10/26/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,10/26/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66032,CONFIDENTIAL,Homeowner Assistance Program,10/23/2017,10/23/2017,,----,----,Queens,,,,QN-11,23,,,,,,,10/23/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66035,CONFIDENTIAL,Homeowner Assistance Program,10/23/2017,10/23/2017,,----,----,Queens,,,,QN-06,29,,,,,,,10/23/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,23493,244,LENOX AVENUE,Manhattan,10027,1017210003,1053389,MN-10,9,200,MN11,40.806126,-73.946677,40.80588,-73.946363,,Preservation,No,Non Prevailing Wage,0,2,8,0,0,0,2,8,0,0,0,0,0,0,10,0,10,10 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,38692,23,WEST 119 STREET,Manhattan,10026,1017180027,1053254,MN-10,9,200,MN11,40.802978,-73.945924,40.80315,-73.945812,,Preservation,No,Non Prevailing Wage,0,4,18,0,0,1,4,8,6,4,1,0,0,0,23,0,23,23 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,39958,410,WEST 128 STREET,Manhattan,10027,1019540055,1059392,MN-09,9,21303,MN06,40.813098,-73.952169,40.81304,-73.952599,,Preservation,No,Non Prevailing Wage,0,8,47,0,0,1,0,37,12,7,0,0,0,0,56,0,56,56 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,40005,116,WEST 129 STREET,Manhattan,10027,1019130040,1082693,MN-10,9,224,MN03,40.81075,-73.944679,40.81047,-73.944592,,Preservation,No,Non Prevailing Wage,0,3,15,0,0,1,0,8,6,4,1,0,0,0,19,0,19,19 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,40238,111,WEST 131 STREET,Manhattan,10027,1019160025,1058098,MN-10,9,226,MN03,40.811856,-73.943381,40.81206,-73.943319,,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,806050,120,WEST 129 STREET,Manhattan,10027,1019130040,1057955,MN-10,9,224,MN03,40.810778,-73.944748,40.81047,-73.944592,,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,4,5,0,0,0,0,0,0,9,0,9,9 +48608,TMN904 - PRECISE,Multifamily Finance Program,10/19/2017,,957589,157,WEST 122 STREET,Manhattan,10027,1019070008,1057707,MN-10,9,222,MN11,40.806495,-73.948428,40.80692,-73.948887,,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +63888,ALMA - 713 CLASSON,Multifamily Finance Program,10/11/2017,10/11/2017,885779,713,CLASSON AVENUE,Brooklyn,11238,3011560001,3337837,BK-08,35,305,BK61,40.676102,-73.959619,40.67611,-73.959345,10/11/2017,Preservation,Yes,Non Prevailing Wage,0,0,1,70,5,0,7,47,9,13,0,0,0,0,76,0,76,76 +67328,CONFIDENTIAL,Homeowner Assistance Program,10/11/2017,10/11/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/11/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66142,CONFIDENTIAL,Homeowner Assistance Program,10/06/2017,11/21/2017,,----,----,Brooklyn,,,,BK-08,36,,,,,,,11/21/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +66422,10 LEXINGTON AVENUE,Multifamily Incentives Program,10/06/2017,,973797,10,LEXINGTON AVENUE,Brooklyn,11238,3019690022,3056374,BK-02,35,231,BK69,40.686439,-73.961574,40.68601,-73.961682,,New Construction,No,Non Prevailing Wage,0,0,17,0,0,0,0,17,0,0,0,0,0,0,17,0,17,81 +66022,CONFIDENTIAL,Homeowner Assistance Program,10/05/2017,10/05/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,10/05/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66024,CONFIDENTIAL,Homeowner Assistance Program,10/05/2017,10/05/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/05/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +63937,POLYCLINIC OWNER LLC.HUDMULTI.FY18,Multifamily Finance Program,10/04/2017,10/04/2017,33799,341,WEST 50 STREET,Manhattan,10019,1010410011,1082646,MN-04,3,133,MN15,40.763016,-73.987809,40.76325,-73.987799,10/04/2017,Preservation,Yes,Non Prevailing Wage,110,17,16,6,1,1,0,92,47,12,0,0,0,0,151,0,151,151 +64157,E.M. MOORE HOUSING FOR THE ELDERLY,Multifamily Incentives Program,10/04/2017,10/04/2017,806042,160,WEST 116 STREET,Manhattan,10026,1018250059,1055056,MN-10,9,218,MN11,40.802725,-73.951371,40.80263,-73.951874,10/04/2017,Preservation,Yes,Non Prevailing Wage,0,0,88,0,0,1,1,87,1,0,0,0,0,0,89,0,89,89 +66021,CONFIDENTIAL,Homeowner Assistance Program,10/03/2017,10/03/2017,,----,----,Bronx,,,,BX-08,11,,,,,,,10/03/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +61593,NOTRE DAME HDFC.HUDMF.FY18,Multifamily Finance Program,09/29/2017,02/19/2019,66536,660,EAST 183 STREET,Bronx,10458,2030850045,2012411,BX-06,15,391,BX06,40.852442,-73.887109,40.85197,-73.887012,02/19/2019,Preservation,No,Non Prevailing Wage,94,3,0,0,0,1,56,42,0,0,0,0,0,0,98,0,98,98 +66058,605 WEST 42ND STREET PHASE II,Multifamily Incentives Program,09/29/2017,09/29/2017,946595,605,WEST 42 STREET,Manhattan,10036,1010907502,1089438,MN-04,3,129,MN15,40.76096,-73.998617,40.76153,-73.99878,09/29/2017,New Construction,No,Non Prevailing Wage,0,0,0,59,0,0,31,23,5,0,0,0,0,0,59,0,59,1175 +62211,THE GRAND,Multifamily Finance Program,09/28/2017,,974227,225,EAST 179 STREET,Bronx,10457,2028120001,2128910,BX-05,15,23502,BX41,40.850906,-73.903645,40.85103,-73.903326,,New Construction,No,Non Prevailing Wage,0,4,28,4,0,1,16,8,13,0,0,0,0,0,37,0,37,37 +62211,THE GRAND,Multifamily Finance Program,09/28/2017,,974228,220,EAST 178 STREET,Bronx,10457,2028100017,2128505,BX-05,15,23502,BX41,40.850358,-73.904314,40.85011,-73.904108,,New Construction,No,Non Prevailing Wage,4,6,36,5,0,1,24,15,13,0,0,0,0,0,52,0,52,52 +62211,THE GRAND,Multifamily Finance Program,09/28/2017,,974229,2189,MORRIS AVENUE,Bronx,10453,,,BX-05,14,239,BX40,40.856107,-73.903203,,,,New Construction,No,Non Prevailing Wage,4,4,35,5,0,1,16,3,13,17,0,0,0,0,49,0,49,49 +65829,CONFIDENTIAL,Homeowner Assistance Program,09/28/2017,09/28/2017,,----,----,Queens,,,,QN-13,27,,,,,,,09/28/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65723,CONFIDENTIAL,Homeowner Assistance Program,09/22/2017,02/15/2018,,----,----,Brooklyn,,,,BK-03,36,,,,,,,02/15/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +65821,CONFIDENTIAL,Homeowner Assistance Program,09/22/2017,09/22/2017,,----,----,Queens,,,,QN-14,31,,,,,,,09/22/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65830,CONFIDENTIAL,Homeowner Assistance Program,09/22/2017,09/22/2017,,----,----,Bronx,,,,BX-08,11,,,,,,,09/22/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65828,CONFIDENTIAL,Homeowner Assistance Program,09/21/2017,09/21/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/21/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65711,CONFIDENTIAL,Homeowner Assistance Program,09/20/2017,01/08/2018,,----,----,Bronx,,,,BX-07,11,,,,,,,01/08/2018,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +66054,230 EAST 124 STREET,Multifamily Incentives Program,09/18/2017,09/18/2017,931093,230,EAST 124 STREET,Manhattan,10035,1017880035,1089718,MN-11,8,194,MN34,40.802673,-73.935497,40.80227,-73.935121,09/18/2017,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,1,2,2,0,0,0,0,0,5,0,5,20 +66060,1 COLUMBUS PLACE,Multifamily Incentives Program,09/18/2017,11/30/2018,4944,1,COLUMBUS PLACE,Manhattan,10019,1010680003,1085140,MN-04,3,145,MN14,40.768916,-73.985,40.76916,-73.985704,11/30/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,37,0,0,0,0,0,0,0,0,37,37,0,37,729 +65827,CONFIDENTIAL,Homeowner Assistance Program,09/15/2017,09/15/2017,,----,----,Queens,,,,QN-14,31,,,,,,,09/15/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +65820,CONFIDENTIAL,Homeowner Assistance Program,09/08/2017,09/08/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/08/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66055,267 ROGERS AVENUE,Multifamily Incentives Program,09/07/2017,03/20/2019,970001,211,CROWN STREET,Brooklyn,11225,3012890001,3426243,BK-09,35,321,BK63,40.666438,-73.953399,40.66685,-73.953085,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,33,0,0,0,0,4,27,2,0,0,0,0,33,0,33,165 +60435,PROVIDENCE HOUSE. 178 HALSEY ST.AND 243 HANCOCK ST,Multifamily Finance Program,09/06/2017,12/24/2019,305703,178,HALSEY STREET,Brooklyn,11216,3018440050,3322633,BK-03,36,249,BK75,40.682116,-73.947071,40.68195,-73.946704,08/19/2019,Preservation,No,Prevailing Wage,10,0,0,0,0,0,3,7,0,0,0,0,0,0,10,0,10,10 +60435,PROVIDENCE HOUSE. 178 HALSEY ST.AND 243 HANCOCK ST,Multifamily Finance Program,09/06/2017,12/24/2019,306891,243,HANCOCK STREET,Brooklyn,11216,3018340072,3052406,BK-03,36,267,BK75,40.682997,-73.946079,40.68319,-73.946303,12/24/2019,Preservation,No,Prevailing Wage,11,0,0,0,0,0,11,0,0,0,0,0,0,0,11,0,11,11 +65822,CONFIDENTIAL,Homeowner Assistance Program,09/05/2017,09/05/2017,,----,----,Bronx,,,,BX-03,16,,,,,,,09/05/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +66059,810 FLUSHING AVENUE,Multifamily Incentives Program,09/05/2017,09/05/2017,969631,810,FLUSHING AVENUE,Brooklyn,11206,3031317501,,BK-04,34,389,BK78,40.701211,-73.939775,40.70098,-73.939642,09/05/2017,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,9,0,0,0,0,0,0,9,0,9,42 +65620,CONFIDENTIAL,Homeowner Assistance Program,08/31/2017,08/31/2017,,----,----,Bronx,,,,BX-10,13,,,,,,,08/31/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65624,CONFIDENTIAL,Homeowner Assistance Program,08/31/2017,08/31/2017,,----,----,Bronx,,,,BX-02,8,,,,,,,08/31/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65630,CONFIDENTIAL,Homeowner Assistance Program,08/31/2017,08/31/2017,,----,----,Queens,,,,QN-13,27,,,,,,,08/31/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65610,CONFIDENTIAL,Homeowner Assistance Program,08/28/2017,08/28/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/28/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65812,CONFIDENTIAL,Homeowner Assistance Program,08/28/2017,08/28/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,08/28/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65611,CONFIDENTIAL,Homeowner Assistance Program,08/23/2017,08/23/2017,,----,----,Queens,,,,QN-12,28,,,,,,,08/23/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65619,CONFIDENTIAL,Homeowner Assistance Program,08/22/2017,08/22/2017,,----,----,Queens,,,,QN-12,27,,,,,,,08/22/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65617,CONFIDENTIAL,Homeowner Assistance Program,08/21/2017,08/21/2017,,----,----,Queens,,,,QN-13,23,,,,,,,08/21/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65618,CONFIDENTIAL,Homeowner Assistance Program,08/18/2017,08/18/2017,,----,----,Queens,,,,QN-14,31,,,,,,,08/18/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +64892,FH HOMES,Multifamily Incentives Program,08/17/2017,08/17/2017,5831,2264,AMSTERDAM AVENUE,Manhattan,10032,1021290046,1063106,MN-12,10,253,MN36,40.842622,-73.934927,40.84278,-73.935198,08/17/2017,Preservation,Yes,Non Prevailing Wage,0,6,14,0,0,1,0,21,0,0,0,0,0,0,21,0,21,21 +64892,FH HOMES,Multifamily Incentives Program,08/17/2017,08/17/2017,33513,441,WEST 47 STREET,Manhattan,10036,1010570013,1026556,MN-04,3,127,MN15,40.762138,-73.991553,40.76249,-73.991827,08/17/2017,Preservation,Yes,Non Prevailing Wage,0,6,13,0,0,1,12,8,0,0,0,0,0,0,20,0,20,20 +65596,CONFIDENTIAL,Homeowner Assistance Program,08/16/2017,08/16/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/16/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65615,CONFIDENTIAL,Homeowner Assistance Program,08/08/2017,08/08/2017,,----,----,Queens,,,,QN-03,25,,,,,,,08/08/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +65485,CONFIDENTIAL,Homeowner Assistance Program,08/04/2017,10/06/2017,,----,----,Brooklyn,,,,BK-03,36,,,,,,,10/06/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +62204,256 MARTENSE STREET.GHPP.FY18,Multifamily Finance Program,08/03/2017,05/31/2019,333380,256,MARTENSE STREET,Brooklyn,11226,3050910037,3116967,BK-17,40,820,BK60,40.651637,-73.950667,40.65141,-73.950556,05/31/2019,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,3,3,0,0,0,0,0,0,6,0,6,6 +65608,CONFIDENTIAL,Homeowner Assistance Program,08/03/2017,08/03/2017,,----,----,Queens,,,,QN-04,25,,,,,,,08/03/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +65454,CONFIDENTIAL,Homeowner Assistance Program,07/31/2017,07/31/2017,,----,----,Manhattan,,,,MN-11,8,,,,,,,07/31/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65457,CONFIDENTIAL,Homeowner Assistance Program,07/31/2017,07/31/2017,,----,----,Bronx,,,,BX-01,17,,,,,,,07/31/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61903,1193 FULTON AVENUE,Small Homes Program,07/27/2017,,973245,1193,FULTON AVENUE,Bronx,10456,2026090041,2004216,BX-03,16,145,BX01,40.829992,-73.904943,40.83011,-73.905362,,New Construction,No,Non Prevailing Wage,0,8,16,0,0,1,11,7,7,0,0,0,0,0,25,0,25,25 +65443,CONFIDENTIAL,Homeowner Assistance Program,07/27/2017,07/27/2017,,----,----,Brooklyn,,,,BK-01,34,,,,,,,07/27/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65456,CONFIDENTIAL,Homeowner Assistance Program,07/26/2017,07/26/2017,,----,----,Bronx,,,,BX-11,15,,,,,,,07/26/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65441,CONFIDENTIAL,Homeowner Assistance Program,07/24/2017,07/24/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,07/24/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65444,CONFIDENTIAL,Homeowner Assistance Program,07/24/2017,07/24/2017,,----,----,Queens,,,,QN-12,27,,,,,,,07/24/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65386,CONFIDENTIAL,Homeowner Assistance Program,07/21/2017,01/12/2018,,----,----,Brooklyn,,,,BK-17,42,,,,,,,01/12/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +65455,CONFIDENTIAL,Homeowner Assistance Program,07/13/2017,07/13/2017,,----,----,Bronx,,,,BX-04,16,,,,,,,07/13/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +66056,40 WEST 126 STREET,Multifamily Incentives Program,07/13/2017,12/05/2017,39674,40,WEST 126 STREET,Manhattan,10027,1017230153,1089944,MN-10,9,200,MN11,40.807648,-73.943117,40.80754,-73.943461,12/05/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +65439,CONFIDENTIAL,Homeowner Assistance Program,07/11/2017,07/11/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,07/11/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +66057,452 LAFAYETTE AVENUE,Multifamily Incentives Program,07/10/2017,07/10/2017,932693,452,LAFAYETTE AVENUE,Brooklyn,11205,3019507501,3397049,BK-03,36,233,BK75,40.689237,-73.956852,40.68904,-73.956975,07/10/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,8 +66053,183 TOMPKINS LLC,Multifamily Incentives Program,07/06/2017,10/27/2017,966423,183,TOMPKINS AVENUE,Brooklyn,11206,3017720003,3049349,BK-03,36,261,BK75,40.693004,-73.945822,40.69306,-73.945545,10/27/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,10 +59976,CANNON HEIGHTS INC,Multifamily Finance Program,07/03/2017,,79476,3400,FT INDEPENDENCE STREET,Bronx,10463,2032580073,2015820,BX-08,11,279,BX28,40.88035,-73.899277,40.88087,-73.898799,,Preservation,No,Non Prevailing Wage,0,170,0,0,0,1,0,34,102,35,0,0,0,0,0,171,171,171 +54954,THE FREDERICK,Multifamily Finance Program,06/30/2017,,967023,2395,FREDERICK DOUGLASS BOULEVARD,Manhattan,10027,1019550012,1090354,MN-10,9,215,MN03,40.812462,-73.949507,40.81254,-73.949796,,New Construction,No,Non Prevailing Wage,15,8,45,6,0,1,11,25,27,12,0,0,0,0,75,0,75,75 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,149202,354,41 STREET,Brooklyn,11232,3007180030,3010685,BK-07,38,82,BK32,40.65204,-74.008231,40.65181,-74.008303,,Preservation,No,Non Prevailing Wage,1,6,8,0,0,1,0,5,6,5,0,0,0,0,16,0,16,16 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,149203,358,41 STREET,Brooklyn,11232,3007180032,3010686,BK-07,38,82,BK32,40.652009,-74.008181,40.65174,-74.008188,,Preservation,No,Non Prevailing Wage,7,5,4,0,0,0,0,3,8,5,0,0,0,0,16,0,16,16 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,153764,555,49 STREET,Brooklyn,11220,3007750063,3012678,BK-07,38,98,BK34,40.644961,-74.008547,40.64498,-74.008144,,Preservation,No,Non Prevailing Wage,3,3,2,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,183367,152,ALBANY AVENUE,Brooklyn,11213,3012230042,3030837,BK-08,36,311,BK61,40.675357,-73.938861,40.67537,-73.939153,,Preservation,No,Non Prevailing Wage,1,7,2,0,0,0,0,4,1,5,0,0,0,0,10,0,10,10 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,183431,164,ALBANY AVENUE,Brooklyn,11213,3012230047,3030841,BK-08,36,311,BK61,40.675044,-73.938879,40.675,-73.939189,,Preservation,No,Non Prevailing Wage,0,6,5,1,0,0,0,11,1,0,0,0,0,0,12,0,12,12 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,205661,1439,BEDFORD AVENUE,Brooklyn,11216,3012320006,3031169,BK-08,36,221,BK61,40.673994,-73.953859,40.67399,-73.953556,,Preservation,No,Non Prevailing Wage,0,3,2,0,0,0,0,5,0,0,0,0,0,0,5,0,5,5 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,205669,1447,BEDFORD AVENUE,Brooklyn,11216,3012320001,3031165,BK-08,36,221,BK61,40.673808,-73.953924,40.67372,-73.953621,,Preservation,No,Non Prevailing Wage,0,4,4,0,0,0,0,7,1,0,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,205675,1453,BEDFORD AVENUE,Brooklyn,11216,3012390014,3031465,BK-08,36,219,BK61,40.673437,-73.954058,40.67343,-73.953733,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,205677,1455,BEDFORD AVENUE,Brooklyn,11216,3012390013,3031464,BK-08,36,219,BK61,40.673374,-73.954083,40.67338,-73.953748,,Preservation,No,Non Prevailing Wage,1,3,1,0,0,1,0,6,0,0,0,0,0,0,6,0,6,6 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,205680,1458,BEDFORD AVENUE,Brooklyn,11216,3012380040,3031426,BK-08,35,219,BK61,40.673314,-73.954126,40.67327,-73.954465,,Preservation,No,Non Prevailing Wage,1,1,6,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,208142,1057,BERGEN STREET,Brooklyn,11216,3012120063,3030347,BK-08,36,315,BK61,40.676175,-73.951269,40.67641,-73.951327,,Preservation,No,Non Prevailing Wage,0,10,2,0,0,0,0,6,3,3,0,0,0,0,12,0,12,12 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,215386,261,BUFFALO AVENUE,Brooklyn,11213,3013870007,3037201,BK-08,41,359,BK61,40.669991,-73.925427,40.66997,-73.925139,,Preservation,No,Non Prevailing Wage,2,27,5,1,0,1,3,6,25,2,0,0,0,0,36,0,36,36 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,287584,1347,EASTERN PARKWAY,Brooklyn,11233,3013930058,3037444,BK-08,41,359,BK61,40.668426,-73.923706,40.66885,-73.923651,,Preservation,No,Non Prevailing Wage,0,10,1,0,0,0,3,0,4,4,0,0,0,0,11,0,11,11 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,291510,118,FENIMORE STREET,Brooklyn,11225,3050420035,3115515,BK-09,40,79601,BK60,40.658186,-73.958469,40.65794,-73.958404,,Preservation,No,Non Prevailing Wage,2,8,1,0,0,0,0,0,7,4,0,0,0,0,11,0,11,11 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,295903,634,FRANKLIN AVENUE,Brooklyn,11238,3011490052,3028306,BK-08,35,305,BK61,40.676575,-73.955844,40.67651,-73.956222,,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,295910,645,FRANKLIN AVENUE,Brooklyn,11238,3012170007,3030569,BK-08,35,221,BK61,40.676391,-73.955891,40.67628,-73.955664,,Preservation,No,Non Prevailing Wage,0,5,3,0,0,0,0,5,3,0,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,295940,683,FRANKLIN AVENUE,Brooklyn,11238,3012240002,3030858,BK-08,35,221,BK61,40.675274,-73.956292,40.67517,-73.956036,,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,296012,782,FRANKLIN AVENUE,Brooklyn,11238,3011780051,3029601,BK-08,35,217,BK61,40.671825,-73.957563,40.67186,-73.957848,,Preservation,No,Non Prevailing Wage,2,5,0,0,0,0,0,3,4,0,0,0,0,0,7,0,7,7 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,307569,67,HANSON PLACE,Brooklyn,11217,3021140001,3059262,BK-02,35,35,BK68,40.685452,-73.974897,40.68562,-73.975002,,Preservation,No,Non Prevailing Wage,7,65,27,0,0,1,92,8,0,0,0,0,0,0,100,0,100,100 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,307575,75,HANSON PLACE,Brooklyn,11217,3021140033,3059283,BK-02,35,35,BK68,40.685482,-73.974627,40.68572,-73.974706,,Preservation,No,Non Prevailing Wage,0,8,0,0,0,0,0,0,4,4,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,308351,145,HART STREET,Brooklyn,11206,3017680078,3322099,BK-03,36,261,BK75,40.693586,-73.94523,40.69378,-73.94545,,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,1,0,1,0,0,0,0,0,2,0,2,2 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,308360,155,HART STREET,Brooklyn,11206,3017680073,3049199,BK-03,36,261,BK75,40.693618,-73.944956,40.69382,-73.945104,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,2,1,0,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,320854,122,KINGSTON AVENUE,Brooklyn,11213,3012220041,3030775,BK-08,36,313,BK61,40.675457,-73.941637,40.67547,-73.941914,,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,3,0,0,0,0,6,0,6,6 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,326267,1234,LINCOLN PLACE,Brooklyn,11213,3013890020,3037291,BK-08,35,353,BK61,40.669978,-73.935538,40.66978,-73.935679,,Preservation,No,Non Prevailing Wage,1,7,7,0,0,1,0,4,6,6,0,0,0,0,16,0,16,16 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,341053,974,MYRTLE AVENUE,Brooklyn,11206,3017570018,3048703,BK-03,36,283,BK35,40.696137,-73.942542,40.6959,-73.942466,,Preservation,No,Non Prevailing Wage,2,1,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,351984,637,PARK PLACE,Brooklyn,11238,3011630054,3029013,BK-08,35,305,BK61,40.674223,-73.956909,40.67446,-73.95679,,Preservation,No,Non Prevailing Wage,1,2,3,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,352156,985,PARK PLACE,Brooklyn,11213,3012350050,3031299,BK-08,36,341,BK61,40.673164,-73.94528,40.67329,-73.944966,,Preservation,No,Non Prevailing Wage,6,12,6,0,0,1,0,14,6,5,0,0,0,0,25,0,25,25 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,352618,19,PATCHEN AVENUE,Brooklyn,11221,3016180008,3043934,BK-03,41,387,BK35,40.69172,-73.927808,40.69173,-73.927573,,Preservation,No,Non Prevailing Wage,2,3,2,0,0,0,2,3,2,0,0,0,0,0,7,0,7,7 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,352634,22A,PATCHEN AVENUE,Brooklyn,11221,3016120049,3043658,BK-03,36,387,BK35,40.692011,-73.927887,40.69197,-73.928154,,Preservation,No,Non Prevailing Wage,1,2,4,0,0,0,0,7,0,0,0,0,0,0,7,0,7,7 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,357208,581,PROSPECT PLACE,Brooklyn,11238,3011560067,3028683,BK-08,35,305,BK61,40.675239,-73.957247,40.67546,-73.957261,,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,373966,340,ST JOHNS PLACE,Brooklyn,11238,3011760009,3324413,BK-08,35,215,BK64,40.674226,-73.966001,40.67389,-73.966426,,Preservation,No,Non Prevailing Wage,10,10,7,1,0,1,0,26,2,1,0,0,0,0,29,0,29,29 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,374118,738,ST JOHNS PLACE,Brooklyn,11216,3012530017,3032190,BK-08,35,219,BK61,40.671821,-73.953842,40.67157,-73.953987,,Preservation,No,Non Prevailing Wage,2,2,4,0,0,0,0,7,0,1,0,0,0,0,8,0,8,8 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,374712,264,ST MARKS AVENUE,Brooklyn,11238,3011520027,3028495,BK-08,35,205,BK64,40.678251,-73.967185,40.678,-73.967315,,Preservation,No,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,374980,718,ST MARKS AVENUE,Brooklyn,11216,3012270014,3030996,BK-08,36,31701,BK61,40.675156,-73.949262,40.67486,-73.949485,,Preservation,No,Non Prevailing Wage,2,14,1,0,0,1,1,5,7,5,0,0,0,0,18,0,18,18 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,381529,171,TOMPKINS AVENUE,Brooklyn,11206,3017720010,3338633,BK-03,36,261,BK75,40.693388,-73.945898,40.6934,-73.945645,,Preservation,No,Non Prevailing Wage,1,5,0,0,0,0,1,1,4,0,0,0,0,0,6,0,6,6 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,385683,165,VAN BUREN STREET,Brooklyn,11221,3016090001,3043506,BK-03,36,279,BK35,40.690544,-73.939096,40.69073,-73.93937,,Preservation,No,Non Prevailing Wage,2,8,3,0,0,0,1,3,3,6,0,0,0,0,13,0,13,13 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,385685,171,VAN BUREN STREET,Brooklyn,11221,3016090079,3043571,BK-03,36,279,BK35,40.69056,-73.938951,40.69075,-73.939189,,Preservation,No,Non Prevailing Wage,3,4,8,0,0,1,0,4,12,0,0,0,0,0,16,0,16,16 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,387109,258,VERNON AVENUE,Brooklyn,11206,3017610030,3048907,BK-03,36,283,BK35,40.695505,-73.941442,40.6953,-73.941226,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,387117,264,VERNON AVENUE,Brooklyn,11206,3017610034,3048911,BK-03,36,283,BK35,40.69553,-73.941244,40.69533,-73.940959,,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,396434,643,WILLOUGHBY AVENUE,Brooklyn,11206,3017600051,3048858,BK-03,36,25901,BK75,40.694496,-73.943849,40.69476,-73.943744,,Preservation,No,Non Prevailing Wage,2,1,1,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,396451,685,WILLOUGHBY AVENUE,Brooklyn,11206,3017610056,3048924,BK-03,36,283,BK35,40.694745,-73.941688,40.69495,-73.941814,,Preservation,No,Non Prevailing Wage,1,0,2,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,396472,736,WILLOUGHBY AVENUE,Brooklyn,11206,3015910017,3043006,BK-03,36,283,BK35,40.694991,-73.939376,40.69477,-73.939355,,Preservation,No,Non Prevailing Wage,0,11,19,4,0,1,0,34,1,0,0,0,0,0,35,0,35,35 +58860,BEC CONTINUUM HDFC.YR15.FY2017,Multifamily Finance Program,06/30/2017,,823290,285,LINCOLN PLACE,Brooklyn,11238,3011760009,3324414,BK-08,35,215,BK64,40.673535,-73.96638,40.67389,-73.966426,,Preservation,No,Non Prevailing Wage,1,14,13,1,0,0,0,27,2,0,0,0,0,0,29,0,29,29 +63221,"THEHUTCHINSONPARKWAYAPARTMENTS,INC.HRP.FY17",Multifamily Finance Program,06/30/2017,,88010,1950,HUTCH RIVER PARKWAY EAST,Bronx,10461,2042300015,2047168,BX-10,13,300,BX10,40.851353,-73.835612,40.85121,-73.835179,,Preservation,No,Non Prevailing Wage,75,81,2,0,0,1,0,24,83,52,0,0,0,0,2,157,159,159 +63760,DANCE THEATRE OF HARLEM,Small Homes Program,06/30/2017,11/29/2019,977463,847,ST NICHOLAS AVENUE,Manhattan,10031,1020670020,1090196,MN-09,7,23501,MN04,40.828996,-73.942123,40.82904,-73.942459,11/29/2019,New Construction,No,Non Prevailing Wage,0,9,29,0,0,1,15,10,14,0,0,0,0,0,39,0,39,39 +65051,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,01/26/2018,,----,----,Bronx,,,,BX-09,18,,,,,,,01/26/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +65078,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,06/30/2017,,----,----,Queens,,,,QN-07,19,,,,,,,06/30/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65084,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,06/30/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/30/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65087,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,12/01/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,12/01/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65122,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,11/02/2017,,----,----,Queens,,,,QN-12,28,,,,,,,11/02/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65142,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,10/31/2017,,----,----,Queens,,,,QN-03,22,,,,,,,10/31/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65156,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,11/16/2017,,----,----,Queens,,,,QN-12,27,,,,,,,11/16/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65158,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,04/05/2018,,----,----,Brooklyn,,,,BK-03,36,,,,,,,04/05/2018,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +65159,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,12/12/2017,,----,----,Brooklyn,,,,BK-03,36,,,,,,,12/12/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65160,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,10/23/2017,,----,----,Brooklyn,,,,BK-17,45,,,,,,,10/23/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65162,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,08/29/2017,,----,----,Brooklyn,,,,BK-05,37,,,,,,,08/29/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65163,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,09/14/2017,,----,----,Bronx,,,,BX-10,18,,,,,,,09/14/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,3,0,0,3,3,3 +65164,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,09/13/2017,,----,----,Queens,,,,QN-12,27,,,,,,,09/13/2017,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65165,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,10/24/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,10/24/2017,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +65167,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,09/29/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,09/29/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65168,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,10/19/2017,,----,----,Brooklyn,,,,BK-05,37,,,,,,,10/19/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +65170,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,01/09/2018,,----,----,Queens,,,,QN-03,22,,,,,,,01/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65172,CONFIDENTIAL,Homeowner Assistance Program,06/30/2017,07/13/2017,,----,----,Brooklyn,,,,BK-04,37,,,,,,,07/13/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65189,"47TH AVE - ""BIG SIX""",Multifamily Finance Program,06/30/2017,06/30/2017,810423,59-55,47 AVENUE,Queens,11377,4023140001,4432198,QN-02,26,245,QN63,40.739932,-73.904419,40.74064,-73.904861,06/30/2017,Preservation,No,Non Prevailing Wage,0,196,293,0,0,0,15,134,236,104,0,0,0,0,0,489,489,489 +65189,"47TH AVE - ""BIG SIX""",Multifamily Finance Program,06/30/2017,06/30/2017,810477,47-30,61 STREET,Queens,11377,4023220001,4432208,QN-02,26,245,QN63,40.739653,-73.903243,40.73916,-73.904048,06/30/2017,Preservation,No,Non Prevailing Wage,0,197,292,0,0,0,16,134,236,103,0,0,0,0,0,489,489,489 +51301,BRKG GND. 626 BERGEN AVE. LA CENTRAL,Multifamily Finance Program,06/29/2017,06/18/2019,976948,626,BERGEN AVENUE,Bronx,10455,2023610025,,BX-01,17,71,BX34,40.817371,-73.914557,40.81721,-73.914348,06/18/2019,New Construction,No,Prevailing Wage,97,0,63,0,0,1,160,1,0,0,0,0,0,0,161,0,161,161 +51868,LEXINGTON GARDENS II,Multifamily Finance Program,06/29/2017,,977499,1465,PARK AVENUE,Manhattan,10029,1016350016,,MN-11,8,172,MN33,40.793822,-73.947225,40.79368,-73.946445,,New Construction,No,Non Prevailing Wage,80,119,120,0,80,1,104,126,110,60,0,0,0,0,400,0,400,400 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,1172,2051,2 AVENUE,Manhattan,10029,1016550023,1052416,MN-11,8,170,MN33,40.790233,-73.942735,40.79029,-73.943071,06/26/2019,Preservation,No,Non Prevailing Wage,0,8,1,0,0,0,0,4,5,0,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18779,103,EAST 100 STREET,Manhattan,10029,1016280002,1051782,MN-11,8,166,MN33,40.788954,-73.950284,40.78912,-73.950226,06/26/2019,Preservation,No,Non Prevailing Wage,1,4,4,0,0,0,0,7,2,0,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18781,107,EAST 100 STREET,Manhattan,10029,1016280103,1051825,MN-11,8,166,MN33,40.788919,-73.950197,40.78905,-73.950067,06/26/2019,Preservation,No,Non Prevailing Wage,10,4,3,0,0,0,7,5,5,0,0,0,0,0,17,0,17,17 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18783,111,EAST 100 STREET,Manhattan,10029,1016280006,1051786,MN-11,8,166,MN33,40.788883,-73.95011,40.78897,-73.949764,06/26/2019,Preservation,No,Non Prevailing Wage,10,17,23,0,0,1,2,20,20,9,0,0,0,0,51,0,51,51 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18784,119,EAST 100 STREET,Manhattan,10029,1016280010,1051790,MN-11,8,166,MN33,40.788809,-73.949937,40.78886,-73.949522,06/26/2019,Preservation,No,Non Prevailing Wage,7,9,3,0,0,1,0,0,14,5,1,0,0,0,20,0,20,20 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18848,177,EAST 101 STREET,Manhattan,10029,1016290030,1051847,MN-11,8,166,MN33,40.788706,-73.947752,40.78882,-73.947463,06/26/2019,Preservation,No,Non Prevailing Wage,1,14,22,0,0,1,8,7,23,0,0,0,0,0,38,0,38,38 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18849,178,EAST 101 STREET,Manhattan,10029,1016280049,1051812,MN-11,8,166,MN33,40.788673,-73.947716,40.78867,-73.948287,06/26/2019,Preservation,No,Non Prevailing Wage,0,5,5,0,0,0,0,6,4,0,0,0,0,0,10,0,10,10 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18870,114,EAST 102 STREET,Manhattan,10029,1016290065,1051861,MN-11,8,166,MN33,40.790085,-73.949113,40.78982,-73.949077,06/26/2019,Preservation,No,Non Prevailing Wage,1,6,2,0,0,0,0,0,4,5,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18872,116,EAST 102 STREET,Manhattan,10029,1016290064,1051860,MN-11,8,166,MN33,40.790068,-73.949069,40.78979,-73.948997,06/26/2019,Preservation,No,Non Prevailing Wage,2,5,2,0,0,0,0,0,4,5,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18986,21,EAST 104 STREET,Manhattan,10029,1016100009,1051500,MN-11,8,168,MN33,40.792638,-73.951231,40.7928,-73.951061,06/26/2019,Preservation,No,Non Prevailing Wage,6,20,10,0,0,0,0,0,30,6,0,0,0,0,36,0,36,36 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,18990,29,EAST 104 STREET,Manhattan,10029,1016100013,1051501,MN-11,8,168,MN33,40.792536,-73.950992,40.79267,-73.950743,06/26/2019,Preservation,No,Non Prevailing Wage,9,16,8,0,0,1,0,0,29,5,0,0,0,0,34,0,34,34 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,19114,242,EAST 106 STREET,Manhattan,10029,1016550029,1052421,MN-11,8,170,MN33,40.790979,-73.943294,40.79058,-73.943081,06/26/2019,Preservation,No,Non Prevailing Wage,0,5,2,0,0,0,0,2,4,1,0,0,0,0,7,0,7,7 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,19124,332,EAST 106 STREET,Manhattan,10029,1016770038,1052769,MN-11,8,170,MN33,40.790042,-73.941078,40.78983,-73.941305,06/26/2019,Preservation,No,Non Prevailing Wage,0,2,2,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,19757,441,EAST 116 STREET,Manhattan,10029,1017100019,1053082,MN-11,8,178,MN34,40.795413,-73.933987,40.79558,-73.933683,06/26/2019,Preservation,No,Non Prevailing Wage,1,9,20,0,0,0,7,11,12,0,0,0,0,0,30,0,30,30 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,19758,447,EAST 116 STREET,Manhattan,10029,1017100021,1053083,MN-11,8,178,MN34,40.795358,-73.933853,40.79551,-73.933517,06/26/2019,Preservation,No,Non Prevailing Wage,0,5,5,0,0,1,1,1,9,0,0,0,0,0,11,0,11,11 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,19910,453,EAST 117 STREET,Manhattan,10035,1017110121,1053140,MN-11,8,178,MN34,40.796195,-73.933733,40.79612,-73.933022,06/26/2019,Preservation,No,Non Prevailing Wage,0,5,4,0,0,0,4,0,4,1,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,23935,1553,LEXINGTON AVENUE,Manhattan,10029,1016270022,1051757,MN-11,5,166,MN33,40.787955,-73.9494,40.78785,-73.949143,06/26/2019,Preservation,No,Non Prevailing Wage,2,5,2,0,0,0,0,4,1,4,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,23936,1555,LEXINGTON AVENUE,Manhattan,10029,1016270021,1051756,MN-11,5,166,MN33,40.788018,-73.949353,40.78791,-73.9491,06/26/2019,Preservation,No,Non Prevailing Wage,1,7,1,0,0,0,0,4,1,4,0,0,0,0,9,0,9,9 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,26271,1265,PARK AVENUE,Manhattan,10029,1016250071,1078908,MN-11,5,15802,MN33,40.787632,-73.951758,40.78748,-73.951429,06/26/2019,Preservation,No,Non Prevailing Wage,1,4,5,0,0,0,6,4,0,0,0,0,0,0,10,0,10,10 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,26274,1325,PARK AVENUE,Manhattan,10029,1016280004,1051784,MN-11,8,166,MN33,40.789297,-73.950525,40.78923,-73.950099,06/26/2019,Preservation,No,Non Prevailing Wage,6,4,8,0,0,0,4,5,9,0,0,0,0,0,18,0,18,18 +59474,LOTT LEGACY APARTMENTS HDFC.YR15.FY2017,Multifamily Finance Program,06/29/2017,06/26/2019,804664,449,EAST 116 STREET,Manhattan,10029,1017100021,1053102,MN-11,8,178,MN34,40.795338,-73.93381,40.79551,-73.933517,06/26/2019,Preservation,No,Non Prevailing Wage,0,6,4,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +60327,PROJECT RENEWAL.2865 CRESTON AVE.BEDFORD GREEN HOU,Multifamily Finance Program,06/29/2017,,971011,2865,CRESTON AVENUE,Bronx,10468,2033190046,,BX-07,14,40701,BX28,40.870937,-73.891525,40.87151,-73.891614,,New Construction,No,Prevailing Wage,71,0,46,0,0,1,79,10,29,0,0,0,0,0,118,0,118,118 +60996,WOODSTOCK TERRACE MUTUAL HOUSING CORP,Multifamily Finance Program,06/29/2017,,115807,872,TRINITY AVENUE,Bronx,10456,2026380001,2091950,BX-03,16,133,BX35,40.821842,-73.906389,40.8224,-73.905532,,Preservation,No,Non Prevailing Wage,0,159,0,0,0,1,0,19,107,34,0,0,0,0,0,160,160,160 +60996,WOODSTOCK TERRACE MUTUAL HOUSING CORP,Multifamily Finance Program,06/29/2017,,807003,920,TRINITY AVENUE,Bronx,10456,2026380001,2091949,BX-03,16,133,BX35,40.822437,-73.906125,40.8224,-73.905532,,Preservation,No,Non Prevailing Wage,0,160,0,0,0,0,0,36,72,52,0,0,0,0,0,160,160,160 +61701,CITILEAF HDFC,Multifamily Finance Program,06/29/2017,,24188,54,LEXINGTON AVENUE,Manhattan,10010,1008800073,1018083,MN-05,2,68,MN21,40.740604,-73.98396,40.74078,-73.98418,,Preservation,No,Non Prevailing Wage,45,4,1,0,0,0,50,0,0,0,0,0,0,0,50,0,50,50 +61841,WSFSSH.570 EAST 137TH STREET.MILLBROOK TERRACE,Multifamily Finance Program,06/29/2017,12/30/2019,976015,570,EAST 137 STREET,Bronx,10454,2025480001,,BX-01,8,2701,BX39,40.805994,-73.917671,40.80495,-73.916957,12/30/2019,New Construction,No,Prevailing Wage,158,0,0,0,0,1,51,107,1,0,0,0,0,0,159,0,159,159 +61848,HIGHLAWN TERRACE INC. (LOAN II),Multifamily Finance Program,06/29/2017,06/24/2019,194840,225,AVENUE T,Brooklyn,11223,3070840039,3385341,BK-11,47,410,BK29,40.598923,-73.976561,40.59976,-73.976763,06/24/2019,Preservation,No,Non Prevailing Wage,5,57,0,0,0,0,0,22,39,1,0,0,0,0,0,62,62,62 +61848,HIGHLAWN TERRACE INC. (LOAN II),Multifamily Finance Program,06/29/2017,06/24/2019,809784,1969,WEST 5 STREET,Brooklyn,11223,3070840039,3190283,BK-11,47,410,BK29,40.599741,-73.97709,40.59976,-73.976763,06/24/2019,Preservation,No,Non Prevailing Wage,3,59,0,0,0,1,0,31,13,19,0,0,0,0,0,63,63,63 +63732,EVERGREEN GARDENS,Multifamily Incentives Program,06/29/2017,,966797,54,NOLL STREET,Brooklyn,11206,3031520001,3418158,BK-04,34,391,BK78,40.700554,-73.934214,40.70034,-73.933709,,New Construction,No,Non Prevailing Wage,0,0,96,0,0,0,22,53,21,0,0,0,0,0,96,0,96,443 +63732,EVERGREEN GARDENS,Multifamily Incentives Program,06/29/2017,,975616,123,MELROSE STREET,Brooklyn,11206,3031520048,3426367,BK-04,34,391,BK78,40.699546,-73.933007,40.69976,-73.933461,,New Construction,No,Non Prevailing Wage,0,0,87,0,0,0,34,34,19,0,0,0,0,0,87,0,87,468 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6160,168,ATTORNEY STREET,Manhattan,10002,1003450009,1004133,MN-03,2,2201,MN28,40.720806,-73.983207,40.72071,-73.982994,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,5,4,0,0,1,0,1,4,5,0,0,0,0,10,0,10,10 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6422,169,AVENUE B,Manhattan,10009,1003930006,1004875,MN-03,2,28,MN28,40.727253,-73.979612,40.72714,-73.979395,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,4,4,0,0,1,0,0,9,0,0,0,0,0,9,0,9,9 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6424,171,AVENUE B,Manhattan,10009,1003930007,1004876,MN-03,2,28,MN28,40.727313,-73.979568,40.7272,-73.979352,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,5,4,0,0,0,0,0,9,0,0,0,0,0,9,0,9,9 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6426,173,AVENUE B,Manhattan,10009,1003930008,1004877,MN-03,2,28,MN28,40.727374,-73.979525,40.72726,-73.979305,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,5,4,0,0,0,0,0,0,9,0,0,0,0,9,0,9,9 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6529,132,AVENUE C,Manhattan,10009,1003780004,1004527,MN-03,2,2602,MN28,40.724939,-73.978223,40.72492,-73.977927,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,11,11,0,0,0,0,0,12,10,0,0,0,0,22,0,22,22 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,6632,17,AVENUE D,Manhattan,10009,1003720037,1004367,MN-03,2,2202,MN28,40.720594,-73.9783,40.72063,-73.978524,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,1,1,0,0,0,1,1,0,0,0,0,0,0,2,0,2,2 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,9671,45,CLINTON STREET,Manhattan,10002,1003490021,1004224,MN-03,1,3001,MN27,40.719824,-73.9847,40.71989,-73.984939,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,5,4,0,0,0,0,0,9,0,0,0,0,0,9,0,9,9 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,10442,166,EAST 2 STREET,Manhattan,10009,1003980055,1077505,MN-03,2,3002,MN22,40.722654,-73.984898,40.72285,-73.984812,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,13,11,0,0,1,0,11,10,4,0,0,0,0,25,0,25,25 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,10983,523,EAST 6 STREET,Manhattan,10009,1004020054,1005109,MN-03,2,32,MN22,40.725179,-73.983238,40.72514,-73.982639,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,2,3,0,0,0,0,0,1,4,0,0,0,0,5,0,5,5 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,11113,218,EAST 7 STREET,Manhattan,10009,1003890027,1004682,MN-03,2,2602,MN28,40.724445,-73.979746,40.72418,-73.979656,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,2,3,0,0,0,0,0,0,1,4,0,0,0,5,0,5,5 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,11247,327,EAST 8 STREET,Manhattan,10009,1003910045,1077453,MN-03,2,2602,MN28,40.725043,-73.979212,40.72524,-73.979161,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,7,5,0,0,0,0,9,0,3,0,0,0,0,12,0,12,12 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,11523,295,EAST 10 STREET,Manhattan,10009,1004040058,1005163,MN-03,2,34,MN22,40.727679,-73.981812,40.72794,-73.981845,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,2,3,0,0,0,0,0,1,4,0,0,0,0,5,0,5,5 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,11576,391,EAST 10 STREET,Manhattan,10009,1003930040,1004897,MN-03,2,28,MN28,40.726138,-73.97814,40.72623,-73.977837,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,3,4,0,0,0,0,1,6,0,0,0,0,0,7,0,7,7 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,11830,419,EAST 12 STREET,Manhattan,10009,1004400050,1006004,MN-03,2,34,MN22,40.729606,-73.982548,40.7298,-73.982432,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,6,5,0,0,0,0,6,5,0,0,0,0,0,11,0,11,11 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,803818,539,EAST 11 STREET,Manhattan,10009,1004050042,1076975,MN-03,2,34,MN22,40.728041,-73.980809,40.72793,-73.979969,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,8,6,0,0,1,0,10,5,0,0,0,0,0,15,0,15,15 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,804189,15,CLINTON STREET,Manhattan,10002,1003500023,1004249,MN-03,2,3001,MN27,40.720845,-73.984166,40.72094,-73.984401,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,9,10,0,0,0,0,1,18,0,0,0,0,0,19,0,19,19 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,804196,28,CLINTON STREET,Manhattan,10002,1003500039,1004260,MN-03,2,2201,MN28,40.720515,-73.984318,40.72036,-73.984181,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,5,5,0,0,0,0,2,0,8,0,0,0,0,10,0,10,10 +63845,LESPMHA HDFC,Multifamily Incentives Program,06/29/2017,06/29/2017,805350,165,SUFFOLK STREET,Manhattan,10002,1003550062,1004340,MN-03,2,3001,MN27,40.721073,-73.985032,40.72119,-73.985245,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,13,12,0,0,1,0,5,19,2,0,0,0,0,26,0,26,26 +63889,ALMA - 480 ST MARKS,Multifamily Finance Program,06/29/2017,06/29/2017,885790,480,ST MARKS AVENUE,Brooklyn,11238,3011560015,3388321,BK-08,35,305,BK61,40.676458,-73.958634,40.67626,-73.958851,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,0,19,52,0,0,12,49,10,0,0,0,0,0,71,0,71,71 +63890,ALMA - 500 ST MARKS,Multifamily Finance Program,06/29/2017,06/29/2017,945149,500,SAINT MARKS AVENUE,Brooklyn,11238,3011560025,3388323,BK-08,35,305,BK61,40.676337,-73.958061,40.67599,-73.957946,06/29/2017,Preservation,Yes,Non Prevailing Wage,0,0,0,67,2,0,6,12,41,10,0,0,0,0,69,0,69,69 +65067,CONFIDENTIAL,Homeowner Assistance Program,06/29/2017,06/29/2017,,----,----,Queens,,,,QN-07,20,,,,,,,06/29/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65069,CONFIDENTIAL,Homeowner Assistance Program,06/29/2017,06/29/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,06/29/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65174,CONFIDENTIAL,Homeowner Assistance Program,06/29/2017,08/02/2017,,----,----,Brooklyn,,,,BK-17,45,,,,,,,08/02/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,90986,1850,LAFAYETTE AVENUE,Bronx,10473,2036000004,2092708,BX-09,18,16,BX09,40.821637,-73.861017,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,230,0,0,0,0,23,46,115,46,0,0,0,0,230,0,230,230 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,806788,1880,LAFAYETTE AVENUE,Bronx,10473,2036000004,2092711,BX-09,18,16,BX09,40.821892,-73.859109,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,230,0,0,0,0,23,46,115,46,0,0,0,0,230,0,230,230 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,807118,751,WHITE PLAINS ROAD,Bronx,10473,2036000004,2092718,BX-09,18,16,BX09,40.821543,-73.858166,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,228,0,0,0,2,23,46,116,45,0,0,0,0,230,0,230,230 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,936120,711,WHITE PLAINS ROAD,Bronx,10473,2036000004,2128758,BX-09,18,16,BX09,40.820963,-73.85803,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,39,0,0,0,0,0,0,22,12,5,0,0,0,39,0,39,39 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,936121,741,WHITE PLAINS ROAD,Bronx,10473,2036000004,2092717,BX-09,18,16,BX09,40.8214,-73.858131,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,45,0,0,0,0,0,0,21,24,0,0,0,0,45,0,45,45 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,936123,1870,LAFAYETTE AVENUE,Bronx,10473,2036000004,2092710,BX-09,18,16,BX09,40.821811,-73.85973,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,45,0,0,0,0,0,0,21,24,0,0,0,0,45,0,45,45 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,936124,1856,LAFAYETTE AVENUE,Bronx,10473,2036000004,2092709,BX-09,18,16,BX09,40.821724,-73.860363,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,39,0,0,0,0,0,0,22,12,5,0,0,0,39,0,39,39 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,977099,1890,LAFAYETTE AVENUE,Bronx,10473,,,BX-09,18,16,BX09,40.821917,-73.858924,,,06/29/2017,Preservation,No,Non Prevailing Wage,0,39,0,0,0,0,0,0,21,12,6,0,0,0,39,0,39,39 +65190,STEVENSON COMMONS,Multifamily Finance Program,06/29/2017,06/29/2017,977100,731,WHITE PLAINS ROAD,Bronx,10473,2036000004,2092716,BX-09,18,16,BX09,40.821254,-73.858098,40.82067,-73.859917,06/29/2017,Preservation,No,Non Prevailing Wage,0,51,0,0,0,0,0,12,21,12,6,0,0,0,51,0,51,51 +48753,JEROME AVENUE TENANTS HDFC,Multifamily Finance Program,06/28/2017,06/27/2019,89051,941,JEROME AVENUE,Bronx,10452,2025040036,2003035,BX-04,8,189,BX26,40.830182,-73.928481,40.83059,-73.92795,06/27/2019,Preservation,No,Non Prevailing Wage,4,73,7,0,0,1,23,35,13,13,1,0,0,0,0,85,85,85 +59388,BRONX PRO. 1017 HOME STREET,Multifamily Finance Program,06/28/2017,09/11/2019,972462,1017,HOME STREET,Bronx,10459,2029930031,2128717,BX-03,17,12101,BX35,40.828803,-73.88876,40.82903,-73.888417,09/11/2019,New Construction,No,Prevailing Wage,62,0,0,0,0,1,22,40,1,0,0,0,0,0,63,0,63,63 +61297,WILFRID ABCO,Multifamily Finance Program,06/28/2017,,972782,1880,BATHGATE AVENUE,Bronx,10457,2029240007,2009604,BX-06,15,395,BX01,40.846207,-73.897377,40.84614,-73.896932,,New Construction,No,Non Prevailing Wage,40,17,126,6,0,1,51,73,40,26,0,0,0,0,190,0,190,190 +61609,CONFIDENTIAL,Multifamily Finance Program,06/28/2017,10/15/2019,,----,----,Bronx,,,,BX-03,17,,,,,,,10/15/2019,New Construction,No,Non Prevailing Wage,23,0,18,0,0,1,0,8,33,1,0,0,0,0,42,0,42,42 +61611,CONCOURSE VILLAGE WEST,Multifamily Finance Program,06/28/2017,,975412,741,CONCOURSE VILLAGE WEST,Bronx,,,,BX-04,17,,,,,,,,New Construction,No,Non Prevailing Wage,8,14,29,42,0,1,14,30,38,12,0,0,0,0,94,0,94,94 +61611,CONCOURSE VILLAGE WEST,Multifamily Finance Program,06/28/2017,,975413,702,GRAND CONCOURSE,Bronx,10451,2024580013,,BX-04,17,5902,BX14,40.82196,-73.925141,40.822,-73.924675,,New Construction,No,Non Prevailing Wage,5,5,16,31,0,0,0,37,12,8,0,0,0,0,57,0,57,57 +61611,CONCOURSE VILLAGE WEST,Multifamily Finance Program,06/28/2017,,975414,180,EAST 156 STREET,Bronx,10451,2024580035,,BX-04,17,5902,BX14,40.823249,-73.92385,40.82288,-73.923785,,New Construction,No,Non Prevailing Wage,10,7,58,38,0,1,28,47,30,9,0,0,0,0,114,0,114,114 +61842,BFC. 118 ST EDWARDS STREET. INGERSOLL SENIOR RESIDENCES,Multifamily Finance Program,06/28/2017,,976583,112,ST EDWARDS STREET,Brooklyn,11205,,,BK-02,35,2901,BK68,40.693835,-73.977916,,,,New Construction,No,Prevailing Wage,145,0,0,0,0,1,54,91,1,0,0,0,0,0,146,0,146,146 +61847,KINGSBRIDGEARMSINC.HRP.FY17,Multifamily Finance Program,06/28/2017,,89826,2865,KINGSBRIDGE TERRACE,Bronx,10463,2032560156,2015735,BX-08,14,273,BX28,40.874317,-73.902631,40.87446,-73.902916,,Preservation,No,Non Prevailing Wage,0,89,14,0,0,1,0,34,52,18,0,0,0,0,0,104,104,104 +62227,LAMBERT HOUSES BUILDING 3A,Multifamily Finance Program,06/28/2017,,977442,988,EAST 180 STREET,Bronx,10460,2031320002,2092389,BX-06,15,361,BX17,40.843437,-73.879643,40.84308,-73.879643,,New Construction,No,Non Prevailing Wage,113,0,49,0,0,1,12,60,60,31,0,0,0,0,163,0,163,163 +65052,CONFIDENTIAL,Homeowner Assistance Program,06/28/2017,08/04/2017,,----,----,Brooklyn,,,,BK-02,35,,,,,,,08/04/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65059,CONFIDENTIAL,Homeowner Assistance Program,06/28/2017,09/18/2017,,----,----,Brooklyn,,,,BK-17,45,,,,,,,09/18/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65101,CONFIDENTIAL,Homeowner Assistance Program,06/28/2017,09/12/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,09/12/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65146,CONFIDENTIAL,Homeowner Assistance Program,06/28/2017,11/06/2017,,----,----,Brooklyn,,,,BK-03,36,,,,,,,11/06/2017,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +44431,WESTCHESTER MEWS,Multifamily Finance Program,06/27/2017,,965100,2044,WESTCHESTER AVENUE,Bronx,10462,2038057502,2128441,BX-09,18,92,BX59,40.833705,-73.856301,40.83346,-73.855648,,New Construction,No,Non Prevailing Wage,12,8,62,0,0,0,13,34,20,15,0,0,0,0,82,0,82,82 +44431,WESTCHESTER MEWS,Multifamily Finance Program,06/27/2017,,974694,2035,NEWBOLD AVENUE,Bronx,10462,2038057502,2128439,BX-09,18,92,BX59,40.832722,-73.856202,40.83307,-73.855692,,New Construction,No,Non Prevailing Wage,19,13,91,0,0,1,35,33,37,19,0,0,0,0,124,0,124,124 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,53832,30,BUCHANAN PLACE,Bronx,10453,2031960010,2014204,BX-05,14,251,BX36,40.858148,-73.905579,40.85794,-73.905644,,Preservation,No,Non Prevailing Wage,7,17,17,5,0,1,0,30,10,6,1,0,0,0,47,0,47,47 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,56805,1107,CLAY AVENUE,Bronx,10456,2024290034,2002150,BX-04,16,175,BX14,40.829767,-73.912073,40.82986,-73.912311,,Preservation,No,Non Prevailing Wage,9,26,19,0,0,1,6,3,35,11,0,0,0,0,55,0,55,55 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,56835,1224,CLAY AVENUE,Bronx,10456,2024270001,2002089,BX-04,16,17701,BX14,40.832687,-73.910436,40.83263,-73.910183,,Preservation,No,Non Prevailing Wage,3,7,3,0,0,0,0,8,1,4,0,0,0,0,13,0,13,13 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,60414,1668,DAVIDSON AVENUE,Bronx,10453,2028610011,2008343,BX-05,14,217,BX36,40.846314,-73.914462,40.84618,-73.914267,,Preservation,No,Non Prevailing Wage,1,4,4,0,0,0,0,6,3,0,0,0,0,0,9,0,9,9 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,60419,1691,DAVIDSON AVENUE,Bronx,10453,2028670058,2008504,BX-05,14,217,BX36,40.846786,-73.914165,40.84692,-73.914382,,Preservation,No,Non Prevailing Wage,4,10,9,1,0,1,12,1,6,6,0,0,0,0,25,0,25,25 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,64872,320,EAST 166 STREET,Bronx,10456,2024330057,2002231,BX-04,16,175,BX14,40.82995,-73.913927,40.82977,-73.913808,,Preservation,No,Non Prevailing Wage,2,8,5,0,0,1,0,5,2,9,0,0,0,0,16,0,16,16 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,64879,380,EAST 166 STREET,Bronx,10456,2024250016,2002063,BX-04,16,143,BX14,40.82935,-73.912066,40.82923,-73.912088,,Preservation,No,Non Prevailing Wage,2,4,2,0,0,1,0,2,7,0,0,0,0,0,9,0,9,9 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,65038,275,EAST 168 STREET,Bronx,10456,2024390022,2002414,BX-04,16,17701,BX14,40.833606,-73.913553,40.83371,-73.913477,,Preservation,No,Non Prevailing Wage,4,6,11,0,0,1,1,10,11,0,0,0,0,0,22,0,22,22 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,99246,1696,NELSON AVENUE,Bronx,10453,2028760170,2008852,BX-05,14,21502,BX36,40.848185,-73.917033,40.84791,-73.916954,,Preservation,No,Non Prevailing Wage,2,0,1,1,0,0,0,1,2,0,1,0,0,0,4,0,4,4 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,116883,1978,DR M L KING JR BOULEVARD,Bronx,10453,2028680127,2008554,BX-05,14,243,BX36,40.854434,-73.911683,40.8544,-73.911198,,Preservation,No,Non Prevailing Wage,2,7,2,0,0,0,0,0,6,5,0,0,0,0,11,0,11,11 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,116887,2001,DR M L KING JR BOULEVARD,Bronx,10453,2032160052,2014697,BX-05,14,24502,BX36,40.854936,-73.911096,40.85518,-73.911309,,Preservation,No,Non Prevailing Wage,22,31,23,1,0,1,4,24,35,14,1,0,0,0,78,0,78,78 +53655,DREAMYARD NEP HDFC.YR15.FY2017,Multifamily Finance Program,06/27/2017,,120441,1225,WEBSTER AVENUE,Bronx,10456,2024270052,2002116,BX-04,16,17701,BX14,40.832483,-73.909518,40.83253,-73.909876,,Preservation,No,Non Prevailing Wage,4,5,3,0,0,0,4,4,0,4,0,0,0,0,12,0,12,12 +61610,569 PROSPECT,Small Homes Program,06/27/2017,,975569,569,PROSPECT AVENUE,Bronx,10455,2026740009,,BX-01,8,79,BX34,40.812867,-73.904271,40.81294,-73.904596,,New Construction,No,Non Prevailing Wage,0,0,16,28,0,1,0,11,28,6,0,0,0,0,45,0,45,45 +61802,101 SOUTH 3RD ST (LOS SURES PHASE 1),Multifamily Incentives Program,06/27/2017,,372078,103,SOUTH 3 STREET,Brooklyn,11249,3024170039,3063106,BK-01,34,551,BK73,40.712861,-73.963449,40.71311,-73.963423,,Preservation,No,Non Prevailing Wage,0,0,34,0,0,0,0,18,16,0,0,0,0,0,34,0,34,35 +65046,CONFIDENTIAL,Homeowner Assistance Program,06/27/2017,09/21/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,09/21/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65050,CONFIDENTIAL,Homeowner Assistance Program,06/27/2017,07/26/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,07/26/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +65150,CONFIDENTIAL,Homeowner Assistance Program,06/27/2017,09/12/2017,,----,----,Bronx,,,,BX-10,13,,,,,,,09/12/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50347,"LIND RIC HOUSING CO., INC.",Multifamily Finance Program,06/26/2017,,47143,2410,BARKER AVENUE,Bronx,10467,2044250001,2051242,BX-11,15,33202,BX07,40.861793,-73.869411,40.86198,-73.86893,,Preservation,No,Non Prevailing Wage,0,171,1,0,0,0,0,57,77,38,0,0,0,0,1,171,172,172 +59058,963 ANDERSON AVE.GHPP.FY17,Multifamily Finance Program,06/26/2017,,45448,963,ANDERSON AVENUE,Bronx,10452,2025070029,2003124,BX-04,8,189,BX26,40.831406,-73.927841,40.83167,-73.927978,,Preservation,No,Non Prevailing Wage,13,18,20,0,0,1,0,23,15,4,10,0,0,0,52,0,52,52 +59411,102 CHARLTON STREET,Multifamily Incentives Program,06/26/2017,,968997,102,CHARLTON STREET,Manhattan,10014,1005970050,,MN-02,3,37,MN24,40.7274,-74.008168,40.72717,-74.008103,,New Construction,No,Non Prevailing Wage,0,7,9,0,0,0,10,5,1,0,0,0,0,0,16,0,16,67 +60027,163RD ST IMPROVEMENT COUNCIL,Multifamily Finance Program,06/26/2017,,64956,494,EAST 167 STREET,Bronx,10456,2023710029,2001296,BX-03,16,185,BX35,40.829607,-73.907076,40.82945,-73.907224,,Preservation,No,Non Prevailing Wage,0,13,4,0,0,0,0,12,0,5,0,0,0,0,17,0,17,17 +60027,163RD ST IMPROVEMENT COUNCIL,Multifamily Finance Program,06/26/2017,,65043,382,EAST 168 STREET,Bronx,10456,2024260062,2002085,BX-04,16,17701,BX14,40.832497,-73.910306,40.83234,-73.910339,,Preservation,No,Non Prevailing Wage,0,4,5,0,0,1,0,0,6,4,0,0,0,0,10,0,10,10 +60027,163RD ST IMPROVEMENT COUNCIL,Multifamily Finance Program,06/26/2017,,119640,1088,WASHINGTON AVENUE,Bronx,10456,2023710001,2001283,BX-03,16,185,BX35,40.828409,-73.908494,40.82826,-73.908285,01/31/2019,Preservation,No,Non Prevailing Wage,1,10,10,0,0,0,0,0,21,0,0,0,0,0,21,0,21,21 +60027,163RD ST IMPROVEMENT COUNCIL,Multifamily Finance Program,06/26/2017,,119648,1102,WASHINGTON AVENUE,Bronx,10456,2023710006,2001286,BX-03,16,185,BX35,40.828524,-73.908432,40.82858,-73.908038,01/31/2019,Preservation,No,Non Prevailing Wage,3,15,7,0,0,0,0,5,5,15,0,0,0,0,25,0,25,25 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808362,1760,FULTON STREET,Brooklyn,11233,3017020001,3338090,BK-03,36,299,BK61,40.679265,-73.928989,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808507,700,HERKIMER STREET,Brooklyn,11233,3017080001,3338124,BK-03,36,299,BK61,40.67853,-73.929614,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808508,701,HERKIMER STREET,Brooklyn,11233,3017020001,3338103,BK-03,36,299,BK61,40.678547,-73.92961,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808579,14,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338154,BK-03,36,299,BK61,40.678332,-73.928453,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808580,22,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338144,BK-03,36,299,BK61,40.678272,-73.928442,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,808581,30,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338130,BK-03,36,299,BK61,40.67806,-73.928396,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,809722,25,UTICA AVENUE,Brooklyn,11233,3017080001,3338146,BK-03,36,299,BK61,40.678407,-73.929935,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,809723,33,UTICA AVENUE,Brooklyn,11233,3017080001,3338149,BK-03,36,299,BK61,40.6781,-73.930148,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,809724,41,UTICA AVENUE,Brooklyn,11233,3017080001,3338148,BK-03,36,299,BK61,40.677905,-73.930235,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,884701,38,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338138,BK-03,36,299,BK61,40.677681,-73.928317,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,892141,1766,FULTON STREET,Brooklyn,11233,3017020001,3338091,BK-03,36,299,BK61,40.679246,-73.928665,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,949244,34,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338137,BK-03,36,299,BK61,40.677871,-73.928356,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957637,1772,FULTON STREET,Brooklyn,11233,3017020001,3338092,BK-03,36,299,BK61,40.679227,-73.928308,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957638,1778,FULTON STREET,Brooklyn,11233,3017020001,3338093,BK-03,36,299,BK61,40.679218,-73.928153,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,5,0,0,0,0,0,5,0,0,0,0,0,0,5,0,5,5 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957639,1784,FULTON STREET,Brooklyn,11233,3017020001,3338094,BK-03,36,299,BK61,40.67921,-73.928002,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957640,1790,FULTON STREET,Brooklyn,11233,3017020001,3338095,BK-03,36,299,BK61,40.679202,-73.927847,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957641,1796,FULTON STREET,Brooklyn,11233,3017020001,3338096,BK-03,36,299,BK61,40.679193,-73.927695,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957642,1802,FULTON STREET,Brooklyn,11233,3017020001,3338097,BK-03,36,299,BK61,40.679185,-73.927544,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957643,711,HERKIMER STREET,Brooklyn,11233,3017020001,3338104,BK-03,36,299,BK61,40.678536,-73.929444,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957644,721,HERKIMER STREET,Brooklyn,11233,3017020001,3338105,BK-03,36,299,BK61,40.678525,-73.929275,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,5,0,0,0,0,0,5,0,0,0,0,0,0,5,0,5,5 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957645,731,HERKIMER STREET,Brooklyn,11233,3017020001,3338106,BK-03,36,299,BK61,40.678516,-73.929109,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957646,741,HERKIMER STREET,Brooklyn,11233,3017020001,3338098,BK-03,36,299,BK61,40.678505,-73.928943,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957647,751,HERKIMER STREET,Brooklyn,11233,3017020001,3338099,BK-03,36,299,BK61,40.678497,-73.928774,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957648,761,HERKIMER STREET,Brooklyn,11233,3017020001,3338100,BK-03,36,299,BK61,40.678469,-73.928255,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957649,771,HERKIMER STREET,Brooklyn,11233,3017020001,3338101,BK-03,36,299,BK61,40.678455,-73.927952,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957650,781,HERKIMER STREET,Brooklyn,11233,3017020001,3338102,BK-03,36,299,BK61,40.678444,-73.927646,40.67887,-73.928799,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957672,710,HERKIMER STREET,Brooklyn,11233,3017080001,3338125,BK-03,36,299,BK61,40.678519,-73.929434,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,5,0,0,0,0,0,5,0,0,0,0,0,0,5,0,5,5 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957673,720,HERKIMER STREET,Brooklyn,11233,3017080001,3338126,BK-03,36,299,BK61,40.678508,-73.929253,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957674,730,HERKIMER STREET,Brooklyn,11233,3017080001,3338127,BK-03,36,299,BK61,40.678497,-73.929073,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957675,740,HERKIMER STREET,Brooklyn,11233,3017080001,3338128,BK-03,36,299,BK61,40.678486,-73.928893,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,5,0,0,0,0,0,5,0,0,0,0,0,0,5,0,5,5 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957676,750,HERKIMER STREET,Brooklyn,11233,3017080001,3338129,BK-03,36,299,BK61,40.678475,-73.928713,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957678,18,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338143,BK-03,36,299,BK61,40.678302,-73.928446,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,957680,26,HUNTERFLY PLACE,Brooklyn,11233,3017080001,3338145,BK-03,36,299,BK61,40.678239,-73.928435,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,967094,45,UTICA AVENUE,Brooklyn,11233,3017080001,3338139,BK-03,36,299,BK61,40.677806,-73.930267,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,18,0,0,0,0,0,0,18,0,0,0,0,0,18,0,18,18 +63840,FULTON PARK,Multifamily Incentives Program,06/26/2017,06/26/2017,967097,29,UTICA AVENUE,Brooklyn,11233,3017080001,3338147,BK-03,36,299,BK61,40.678303,-73.930018,40.67796,-73.929283,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63841,CLINTON-ARMS,Multifamily Incentives Program,06/26/2017,06/26/2017,57141,2160,CLINTON AVENUE,Bronx,10457,2030970016,2012736,BX-06,15,371,BX17,40.849317,-73.886326,40.84929,-73.885932,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,86,0,0,0,0,0,32,34,20,0,0,0,0,86,0,86,86 +63842,MCKINLEY-MANOR,Multifamily Incentives Program,06/26/2017,06/26/2017,50381,631,EAST 168 STREET,Bronx,10456,2026150057,2004312,BX-03,16,149,BX35,40.830095,-73.903053,40.82994,-73.902295,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,60,0,0,0,0,0,25,30,5,0,0,0,0,60,0,60,60 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,185224,221,ASHLAND PLACE,Brooklyn,11217,3020960006,3326120,BK-02,35,33,BK68,40.688683,-73.978452,40.68859,-73.978087,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,20,0,0,0,0,0,10,6,4,0,0,0,0,20,0,20,20 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,808304,36,FT GREENE PLACE,Brooklyn,11217,3020970015,3326201,BK-02,35,33,BK68,40.688667,-73.976894,40.68867,-73.977305,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,16,0,0,0,0,0,0,12,4,0,0,0,0,16,0,16,16 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,808305,56,ST GREENE PLACE,Brooklyn,,,,BK-02,35,,,,,,,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,16,0,0,0,0,0,0,8,8,0,0,0,0,16,0,16,16 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,809493,35,ST FELIX STREET,Brooklyn,11217,3020970015,3326204,BK-02,35,33,BK68,40.688694,-73.977712,40.68867,-73.977305,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,16,0,0,0,0,0,9,7,0,0,0,0,0,16,0,16,16 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,809494,42,ST FELIX STREET,Brooklyn,11217,3020960006,3326119,BK-02,35,33,BK68,40.68865,-73.977723,40.68859,-73.978087,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,8,4,0,0,0,0,0,12,0,12,12 +63843,TRI-BLOCK,Multifamily Incentives Program,06/26/2017,06/26/2017,809495,51,ST FELIX STREET,Brooklyn,11217,3020970007,3326132,BK-02,35,33,BK68,40.688332,-73.97764,40.68817,-73.977193,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,16,0,0,0,0,0,9,7,0,0,0,0,0,16,0,16,16 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,310418,560,BELMONT AVENUE,Brooklyn,11207,3040270001,3323724,BK-05,42,1160,BK82,40.67162,-73.888788,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,310442,475,HENDRIX STREET,Brooklyn,11207,3040430001,3346323,BK-05,42,1160,BK82,40.669948,-73.888665,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,367030,435,SCHENCK AVENUE,Brooklyn,11207,3040440001,3337010,BK-05,42,1160,BK82,40.669936,-73.887724,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,807675,520,BARBEY STREET,Brooklyn,11207,3040440001,3337006,BK-05,42,1160,BK82,40.669842,-73.886787,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,807799,825,BLAKE AVENUE,Brooklyn,11207,3040430001,3346324,BK-05,42,1160,BK82,40.668852,-73.888018,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,807800,845,BLAKE AVENUE,Brooklyn,11207,3040440001,3337009,BK-05,42,1160,BK82,40.668972,-73.887228,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,809347,380,SCHENCK AVENUE,Brooklyn,11207,3040270001,3323726,BK-05,42,1160,BK82,40.671372,-73.888115,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,809349,440,SCHENCK AVENUE,Brooklyn,11207,3040430001,3338894,BK-05,42,1160,BK82,40.669856,-73.887724,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,809652,815,SUTTER AVENUE,Brooklyn,11207,3040270001,3323719,BK-05,42,1160,BK82,40.67039,-73.888408,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,809653,820,SUTTER AVENUE,Brooklyn,11207,3040430001,3336998,BK-05,42,1160,BK82,40.670389,-73.888289,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853569,825,SUTTER AVENUE,Brooklyn,11207,3040270001,3323718,BK-05,42,1160,BK82,40.67043,-73.88812,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853570,390,SCHENCK AVENUE,Brooklyn,11207,3040270001,3323727,BK-05,42,1160,BK82,40.671182,-73.888064,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853572,570,BELMONT AVENUE,Brooklyn,11207,3040270001,3323725,BK-05,42,1160,BK82,40.671661,-73.8885,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853574,400,SCHENCK AVENUE,Brooklyn,11207,3040270001,3323717,BK-05,42,1160,BK82,40.670993,-73.888018,40.67102,-73.88849,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853674,830,SUTTER AVENUE,Brooklyn,11207,3040430001,3337004,BK-05,42,1160,BK82,40.670433,-73.888001,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853676,485,HENDRIX STREET,Brooklyn,11207,3040430001,3346323,BK-05,42,1160,BK82,40.669764,-73.888618,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853692,835,BLAKE AVENUE,Brooklyn,11207,3040430001,3336999,BK-05,42,1160,BK82,40.668896,-73.887733,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853693,495,HENDRIX STREET,Brooklyn,11207,3040430001,3346323,BK-05,42,1160,BK82,40.669577,-73.888572,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853694,450,SCHENCK AVENUE,Brooklyn,11207,3040430001,3337002,BK-05,42,1160,BK82,40.669672,-73.887678,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853695,460,SCHENCK AVENUE,Brooklyn,11207,3040430001,3337003,BK-05,42,1160,BK82,40.669486,-73.887631,40.66962,-73.888132,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853712,855,BLAKE AVENUE,Brooklyn,11207,3040440001,3337008,BK-05,42,1160,BK82,40.669013,-73.886943,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853714,445,SCHENCK AVENUE,Brooklyn,11207,3040440001,3337011,BK-05,42,1160,BK82,40.669749,-73.887674,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853715,455,SCHENCK AVENUE,Brooklyn,11207,3040440001,3337012,BK-05,42,1160,BK82,40.669565,-73.887627,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853716,840,SUTTER AVENUE,Brooklyn,11207,3040440001,3337014,BK-05,42,1160,BK82,40.670507,-73.8875,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853717,850,SUTTER AVENUE,Brooklyn,11207,3040440001,3337005,BK-05,42,1160,BK82,40.67055,-73.887215,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +63844,SUTTER-GARDENS,Multifamily Incentives Program,06/26/2017,06/26/2017,853718,530,BARBEY STREET,Brooklyn,11207,3040440001,3337007,BK-05,42,1160,BK82,40.669658,-73.88674,40.66975,-73.88722,06/26/2017,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +65049,CONFIDENTIAL,Homeowner Assistance Program,06/26/2017,10/30/2017,,----,----,Manhattan,,,,MN-10,9,,,,,,,10/30/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +65057,CONFIDENTIAL,Homeowner Assistance Program,06/26/2017,06/26/2017,,----,----,Bronx,,,,BX-10,13,,,,,,,06/26/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65063,CONFIDENTIAL,Homeowner Assistance Program,06/26/2017,08/18/2017,,----,----,Brooklyn,,,,BK-03,33,,,,,,,08/18/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +47878,152 EAST 116TH STREET,Multifamily Finance Program,06/23/2017,,19629,152,EAST 116 STREET,Manhattan,10029,1016430051,1052261,MN-11,8,182,MN34,40.79843,-73.941186,40.79828,-73.941558,,Preservation,No,Non Prevailing Wage,0,0,0,9,0,0,0,0,9,0,0,0,0,0,0,9,9,9 +65028,CONFIDENTIAL,Homeowner Assistance Program,06/23/2017,06/23/2017,,----,----,Brooklyn,,,,BK-17,45,,,,,,,06/23/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65040,CONFIDENTIAL,Homeowner Assistance Program,06/23/2017,06/23/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/23/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60484,ALMA - 523 PROSPECT,Multifamily Finance Program,06/22/2017,06/22/2017,885781,523,PROSPECT PLACE,Brooklyn,11238,3011560090,3378995,BK-08,35,305,BK61,40.675602,-73.958977,40.6759,-73.958945,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,0,3,62,18,0,1,35,36,10,1,0,0,0,83,0,83,83 +60872,MHANY 2004 HDFC.HPOP.FY17,Multifamily Finance Program,06/22/2017,06/22/2017,19899,428,EAST 117 STREET,Manhattan,10035,1017100036,1079400,MN-11,8,178,MN34,40.796343,-73.93413,40.79597,-73.933838,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,10,24,0,0,1,0,18,0,17,0,0,0,0,35,0,35,35 +60872,MHANY 2004 HDFC.HPOP.FY17,Multifamily Finance Program,06/22/2017,06/22/2017,19905,446,EAST 117 STREET,Manhattan,10035,1017100031,1053089,MN-11,8,178,MN34,40.79622,-73.933842,40.79579,-73.933412,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,7,9,0,0,0,0,5,6,3,0,2,0,0,16,0,16,16 +60872,MHANY 2004 HDFC.HPOP.FY17,Multifamily Finance Program,06/22/2017,06/22/2017,20142,226,EAST 119 STREET,Manhattan,10035,1017830034,1054537,MN-11,8,188,MN34,40.799559,-73.937833,40.79918,-73.937544,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,6,24,0,0,0,0,1,12,11,6,0,0,0,30,0,30,30 +60872,MHANY 2004 HDFC.HPOP.FY17,Multifamily Finance Program,06/22/2017,06/22/2017,20143,234,EAST 119 STREET,Manhattan,10035,1017830031,1054536,MN-11,8,188,MN34,40.799504,-73.937707,40.79907,-73.937292,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,5,24,1,0,0,0,1,12,11,6,0,0,0,30,0,30,30 +63859,140-26 FRANKLIN AVENUE HPO FY17,Multifamily Finance Program,06/22/2017,06/22/2017,957061,140-26,FRANKLIN AVENUE,Queens,11355,4051820009,4458036,QN-07,20,857,QN22,40.756088,-73.823781,40.75581,-73.823648,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,0,2,51,0,1,13,29,12,0,0,0,0,0,54,0,54,54 +63885,ALMA - 545 PROSPECT PLACE,Multifamily Finance Program,06/22/2017,06/22/2017,357201,545,PROSPECT PLACE,Brooklyn,11238,3011560080,3395077,BK-08,35,305,BK61,40.6755,-73.958501,40.67568,-73.958263,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,0,14,130,11,0,12,62,61,20,0,0,0,0,155,0,155,155 +63887,ALMA - 565 PROSPECT PLACE,Multifamily Finance Program,06/22/2017,06/22/2017,885789,565,PROSPECT PLACE,Brooklyn,11238,3011560070,3388320,BK-08,35,305,BK61,40.67541,-73.958065,40.67575,-73.957571,06/22/2017,Preservation,Yes,Non Prevailing Wage,0,0,23,61,2,0,10,56,20,0,0,0,0,0,86,0,86,86 +65079,CONFIDENTIAL,Homeowner Assistance Program,06/22/2017,10/04/2017,,----,----,Queens,,,,QN-13,27,,,,,,,10/04/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +62266,1130 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,45427,1130,ANDERSON AVENUE,Bronx,10452,2025050046,2003068,BX-04,16,199,BX26,40.835238,-73.924895,40.8352,-73.924631,06/21/2017,Preservation,Yes,Non Prevailing Wage,1,6,35,0,0,1,6,25,12,0,0,0,0,0,43,0,43,43 +62267,424 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,81954,424,GRAND CONCOURSE,Bronx,10451,2023430010,2001012,BX-01,17,51,BX39,40.816925,-73.928033,40.81683,-73.927658,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,8,20,0,0,0,0,10,14,4,0,0,0,0,28,0,28,28 +62267,424 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,81956,428,GRAND CONCOURSE,Bronx,10451,2023430012,2001013,BX-01,17,51,BX39,40.816999,-73.928001,40.81696,-73.9276,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,7,20,0,0,1,0,12,12,4,0,0,0,0,28,0,28,28 +62268,830 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,111437,830,REV JAMES POLITE AVENUE,Bronx,10459,2026960075,2005347,BX-02,17,87,BX33,40.81875,-73.898886,40.81912,-73.898647,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,7,63,0,0,1,0,47,15,9,0,0,0,0,71,0,71,71 +62269,1240 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,119038,1240,WALTON AVENUE,Bronx,10452,2024650025,2002852,BX-04,16,197,BX63,40.835879,-73.918837,40.83589,-73.91844,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,26,130,0,0,1,6,115,24,6,6,0,0,0,157,0,157,157 +62270,288 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,65040,288,EAST 168 STREET,Bronx,10456,2024350015,2002293,BX-04,16,175,BX14,40.833333,-73.912802,40.83318,-73.912824,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,5,22,0,0,1,0,11,17,0,0,0,0,0,28,0,28,28 +62271,795 SHEVA REALTY HDFC.HPO.FY17,Multifamily Finance Program,06/21/2017,06/21/2017,28236,795,ST NICHOLAS AVENUE,Manhattan,10031,1020640036,1061550,MN-09,9,231,MN04,40.827133,-73.942877,40.82727,-73.943176,06/21/2017,Preservation,Yes,Non Prevailing Wage,0,6,47,3,0,1,24,33,0,0,0,0,0,0,57,0,57,57 +60000,139-141 AVENUE D HDFC.YR15.FY2017,Multifamily Finance Program,06/20/2017,,6626,139,AVENUE D,Manhattan,10009,1003790034,1004554,MN-03,2,28,MN28,40.724606,-73.975373,40.7247,-73.975629,,Preservation,No,Non Prevailing Wage,0,0,45,0,0,0,45,0,0,0,0,0,0,0,45,0,45,45 +63003,28-16 21ST STREET,Multifamily Incentives Program,06/19/2017,,975550,28-16,21 STREET,Queens,11102,4005380046,4006073,QN-01,22,83,QN71,40.770772,-73.927119,40.77081,-73.927484,,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,3,5,2,0,0,0,0,0,10,0,10,50 +65026,CONFIDENTIAL,Homeowner Assistance Program,06/19/2017,06/19/2017,,----,----,Bronx,,,,BX-11,13,,,,,,,06/19/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58885,MCGEE PLAZA HDFC.YR15.FY2017,Multifamily Finance Program,06/16/2017,,52766,877,BROOK AVENUE,Bronx,10451,2023650025,2001200,BX-03,17,141,BX35,40.822773,-73.910485,40.8228,-73.910756,,Preservation,No,Non Prevailing Wage,0,6,4,0,0,0,1,0,4,5,0,0,0,0,10,0,10,10 +58885,MCGEE PLAZA HDFC.YR15.FY2017,Multifamily Finance Program,06/16/2017,,806341,885,BROOK AVENUE,Bronx,10451,2023650020,2091165,BX-03,17,141,BX35,40.822943,-73.910467,40.82306,-73.910785,,Preservation,No,Non Prevailing Wage,0,6,1,0,0,0,0,0,3,4,0,0,0,0,7,0,7,7 +58885,MCGEE PLAZA HDFC.YR15.FY2017,Multifamily Finance Program,06/16/2017,,806532,500,EAST 161 STREET,Bronx,10451,2023650020,2091165,BX-03,17,141,BX35,40.823234,-73.910597,40.82306,-73.910785,,Preservation,No,Non Prevailing Wage,0,6,1,0,0,0,0,0,4,3,0,0,0,0,7,0,7,7 +65025,CONFIDENTIAL,Homeowner Assistance Program,06/16/2017,06/16/2017,,----,----,Brooklyn,,,,BK-11,47,,,,,,,06/16/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65047,CONFIDENTIAL,Homeowner Assistance Program,06/16/2017,09/20/2017,,----,----,Queens,,,,QN-07,20,,,,,,,09/20/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +65056,MELROSE SITE D-1 (MICHELANGELO APARTMENTS),Multifamily Incentives Program,06/16/2017,,806508,255,EAST 149 STREET,Bronx,10451,2023380003,2128550,BX-01,17,65,BX34,40.817586,-73.923491,40.81809,-73.923722,,Preservation,No,Non Prevailing Wage,0,0,492,0,0,0,75,79,153,142,43,0,0,0,492,0,492,492 +60212,909 ATLANTIC AVENUE (BPL OFFSITE 2 OF 2),Multifamily Incentives Program,06/15/2017,,971000,911,ATLANTIC AVENUE,Brooklyn,11238,3020180062,,BK-02,35,201,BK69,40.680733,-73.962565,40.68107,-73.962514,,New Construction,No,Non Prevailing Wage,0,0,68,0,9,0,37,24,13,3,0,0,0,0,77,0,77,78 +60213,1043 FULTON STREET (BPL OFFSITE 1 OF 2),Multifamily Incentives Program,06/15/2017,,977267,1043,FULTON STREET,Brooklyn,11238,3019920005,3057245,BK-02,35,227,BK69,40.68208,-73.960163,40.68228,-73.960098,,New Construction,No,Non Prevailing Wage,0,0,15,0,22,0,18,8,9,2,0,0,0,0,37,0,37,37 +65027,CONFIDENTIAL,Homeowner Assistance Program,06/15/2017,06/15/2017,,----,----,Bronx,,,,BX-08,11,,,,,,,06/15/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +63358,MADISON COURT LIMITED PARTNERSHIP.HUDMF.FY17,Multifamily Finance Program,06/14/2017,06/14/2017,506654,26-49,96 STREET,Queens,11369,4013760032,4032965,QN-03,21,361,QN27,40.76175,-73.873076,40.76111,-73.872539,06/14/2017,Preservation,Yes,Non Prevailing Wage,38,13,16,1,0,1,0,38,17,8,6,0,0,0,69,0,69,69 +65060,CONFIDENTIAL,Homeowner Assistance Program,06/14/2017,01/19/2018,,----,----,Queens,,,,QN-02,26,,,,,,,01/19/2018,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,129100,4702,4 AVENUE,Brooklyn,11220,3007640036,3012178,BK-07,38,80,BK32,40.648065,-74.010926,40.64824,-74.011229,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,1,0,1,0,1,3,4,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,129256,5502,4 AVENUE,Brooklyn,11220,3008300035,3014909,BK-07,38,76,BK32,40.643582,-74.015596,40.64369,-74.015916,06/13/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,129281,5609,4 AVENUE,Brooklyn,11220,3008390006,3015312,BK-07,38,74,BK32,40.642989,-74.016183,40.64268,-74.016017,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,0,1,5,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132170,4920,6 AVENUE,Brooklyn,11220,3007840045,3012987,BK-07,38,98,BK34,40.644179,-74.007711,40.64407,-74.008209,06/13/2017,Preservation,Yes,Non Prevailing Wage,13,1,1,0,0,1,0,10,6,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132173,4924,6 AVENUE,Brooklyn,11220,3007840047,3012988,BK-07,38,98,BK34,40.644162,-74.007729,40.64401,-74.008273,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,1,0,1,0,0,0,0,7,1,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132239,5203,6 AVENUE,Brooklyn,11220,3008090007,3259242,BK-07,38,100,BK34,40.642562,-74.009369,40.64237,-74.00921,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132241,5207,6 AVENUE,Brooklyn,11220,3008090005,3259243,BK-07,38,100,BK34,40.642545,-74.009387,40.64226,-74.009322,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132244,5211,6 AVENUE,Brooklyn,11220,3008090003,3013994,BK-07,38,100,BK34,40.642529,-74.009401,40.64216,-74.009434,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,0,0,0,1,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132246,5213,6 AVENUE,Brooklyn,11220,3008090002,3013993,BK-07,38,100,BK34,40.642521,-74.009412,40.6421,-74.009491,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132262,5302,6 AVENUE,Brooklyn,11220,3008160037,3014315,BK-07,38,100,BK34,40.64201,-74.009967,40.64206,-74.01028,06/13/2017,Preservation,Yes,Non Prevailing Wage,18,2,2,3,0,0,2,0,15,8,0,0,0,0,25,0,25,25 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132263,5305,6 AVENUE,Brooklyn,11220,3008170005,3324435,BK-07,38,100,BK34,40.641994,-74.00996,40.64174,-74.009819,06/13/2017,Preservation,Yes,Non Prevailing Wage,25,3,1,2,0,1,1,12,19,0,0,0,0,0,32,0,32,32 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132266,5314,6 AVENUE,Brooklyn,11220,3008160042,3014316,BK-07,38,100,BK34,40.641963,-74.010017,40.64185,-74.010511,06/13/2017,Preservation,Yes,Non Prevailing Wage,40,1,1,2,0,1,1,13,31,0,0,0,0,0,45,0,45,45 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,132267,5319,6 AVENUE,Brooklyn,11220,3008170001,3014340,BK-07,38,100,BK34,40.641456,-74.010111,40.64148,-74.0101,06/13/2017,Preservation,Yes,Non Prevailing Wage,14,0,1,1,0,0,1,15,0,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,153721,438,49 STREET,Brooklyn,11220,3007830021,3012920,BK-07,38,78,BK32,40.646429,-74.011016,40.64619,-74.01107,06/13/2017,Preservation,Yes,Non Prevailing Wage,7,1,0,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,153723,441,49 STREET,Brooklyn,11220,3007740059,3012619,BK-07,38,78,BK32,40.646421,-74.010969,40.64648,-74.010638,06/13/2017,Preservation,Yes,Non Prevailing Wage,15,0,0,0,0,1,4,6,6,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,154413,558,50 STREET,Brooklyn,11220,3007920024,3013320,BK-07,38,98,BK34,40.644351,-74.009084,40.64405,-74.009045,06/13/2017,Preservation,Yes,Non Prevailing Wage,14,1,0,1,0,0,0,1,8,7,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,155057,448,51 STREET,Brooklyn,11220,3007990025,3013550,BK-07,38,78,BK32,40.645213,-74.012021,40.64498,-74.012086,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,2,0,1,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,155085,523,51 STREET,Brooklyn,11220,3007920056,3013333,BK-07,38,98,BK34,40.644146,-74.010216,40.64433,-74.010093,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,1,0,1,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,156542,334,53 STREET,Brooklyn,11220,3008140020,3014190,BK-07,38,76,BK32,40.645465,-74.015463,40.64535,-74.015718,06/13/2017,Preservation,Yes,Non Prevailing Wage,9,1,1,1,0,0,0,6,4,2,0,0,0,0,12,0,12,12 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,157212,224,54 STREET,Brooklyn,11220,3008210012,3324451,BK-07,38,22,BK32,40.646425,-74.018558,40.64633,-74.018861,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,157946,213,55 STREET,Brooklyn,11220,3008210072,3014524,BK-07,38,22,BK32,40.645992,-74.019322,40.6462,-74.019229,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,0,1,5,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,157947,217,55 STREET,Brooklyn,11220,3008210071,3014523,BK-07,38,22,BK32,40.645956,-74.019261,40.64616,-74.01916,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,0,1,5,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,158025,370,55 STREET,Brooklyn,11220,3008300033,3387666,BK-07,38,76,BK32,40.644079,-74.016183,40.64379,-74.016161,06/13/2017,Preservation,Yes,Non Prevailing Wage,2,1,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,158857,565,56 STREET,Brooklyn,11220,3008320051,3015046,BK-07,38,100,BK34,40.640945,-74.012471,40.64089,-74.011945,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,0,0,1,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807379,5205,6 AVENUE,Brooklyn,11220,3008090006,3339451,BK-07,38,100,BK34,40.642554,-74.009376,40.64232,-74.009268,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807380,5301,6 AVENUE,Brooklyn,11220,3008170005,3324435,BK-07,38,100,BK34,40.642007,-74.009942,40.64174,-74.009819,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,0,2,4,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807448,323,43 STREET,Brooklyn,11232,3007230067,3341875,BK-07,38,82,BK32,40.65118,-74.009795,40.65148,-74.009842,06/13/2017,Preservation,Yes,Non Prevailing Wage,13,1,1,1,0,0,4,12,0,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807457,440,49 STREET,Brooklyn,11220,3007830021,3341877,BK-07,38,78,BK32,40.64641,-74.010984,40.64619,-74.01107,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,2,0,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807458,444,49 STREET,Brooklyn,11220,3007830021,3341878,BK-07,38,78,BK32,40.646371,-74.010922,40.64619,-74.01107,06/13/2017,Preservation,Yes,Non Prevailing Wage,15,0,0,1,0,0,0,10,6,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807463,218,54 STREET,Brooklyn,11220,3008210012,3324448,BK-07,38,22,BK32,40.64648,-74.018652,40.64633,-74.018861,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807464,220,54 STREET,Brooklyn,11220,3008210012,3324450,BK-07,38,22,BK32,40.646461,-74.018623,40.64633,-74.018861,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,0,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,807466,374,55 STREET,Brooklyn,11220,3008300035,3341326,BK-07,38,76,BK32,40.644046,-74.016133,40.64369,-74.015916,06/13/2017,Preservation,Yes,Non Prevailing Wage,1,2,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,810035,364,55 STREET,Brooklyn,11220,3008300033,3014908,BK-07,38,76,BK32,40.644123,-74.016262,40.64379,-74.016161,06/13/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,810036,368,55 STREET,Brooklyn,11220,3008300033,3387665,BK-07,38,76,BK32,40.644093,-74.016208,40.64379,-74.016161,06/13/2017,Preservation,Yes,Non Prevailing Wage,3,0,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,810047,5209,6 AVENUE,Brooklyn,11220,3008090004,3013995,BK-07,38,100,BK34,40.642537,-74.009394,40.64221,-74.009379,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,0,0,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,837522,4902,6 AVENUE,Brooklyn,11220,3007840038,3012983,BK-07,38,98,BK34,40.64425,-74.007636,40.6444,-74.00787,06/13/2017,Preservation,Yes,Non Prevailing Wage,5,1,1,1,0,0,0,0,7,1,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,837574,517,49 STREET,Brooklyn,11220,3007750080,3012691,BK-07,38,98,BK34,40.64532,-74.009146,40.64555,-74.009099,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,2,0,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,837576,4906,6 AVENUE,Brooklyn,11220,3007840039,3012984,BK-07,38,98,BK34,40.644234,-74.007654,40.64433,-74.007938,06/13/2017,Preservation,Yes,Non Prevailing Wage,16,0,0,0,0,0,0,10,6,0,0,0,0,0,16,0,16,16 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,837791,549,49 STREET,Brooklyn,11220,3007750065,3012680,BK-07,38,98,BK34,40.645018,-74.008645,40.64506,-74.008284,06/13/2017,Preservation,Yes,Non Prevailing Wage,8,0,0,0,0,0,0,6,2,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,837792,317,43 STREET,Brooklyn,11232,3007230067,3010830,BK-07,38,82,BK32,40.651227,-74.009874,40.65148,-74.009842,06/13/2017,Preservation,Yes,Non Prevailing Wage,6,2,0,0,0,0,1,3,4,0,0,0,0,0,8,0,8,8 +64268,SUNSET PARK APARTMENTS HDFC.HUDMF.FY17,Multifamily Finance Program,06/13/2017,06/13/2017,854991,378,55 STREET,Brooklyn,11220,3008300035,3391452,BK-07,38,76,BK32,40.644016,-74.016082,40.64369,-74.015916,06/13/2017,Preservation,Yes,Non Prevailing Wage,2,1,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +58521,505 WEST 43RD STREET,Multifamily Incentives Program,06/09/2017,,967367,505,WEST 43 STREET,Manhattan,10036,1010720024,1090720,MN-04,3,129,MN15,40.760744,-73.996008,40.76091,-73.99547,,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,4,5,0,0,0,0,0,0,9,9,123 +58667,140 JOHNSON AVENUE,Multifamily Incentives Program,06/08/2017,05/10/2018,822620,140,JOHNSON AVENUE,Brooklyn,11206,3030700010,3347565,BK-01,34,505,BK90,40.706491,-73.944167,40.70629,-73.944041,05/10/2018,Preservation,No,Non Prevailing Wage,0,0,22,0,0,0,0,0,18,4,0,0,0,0,22,0,22,23 +61627,GIBBMANSIONHDFC.YR15.FY2017,Multifamily Finance Program,06/08/2017,06/08/2017,299254,218,GATES AVENUE,Brooklyn,11238,3019850014,3347538,BK-03,35,229,BK69,40.685321,-73.958297,40.68494,-73.95838,06/08/2017,Preservation,Yes,Non Prevailing Wage,11,3,0,0,0,0,14,0,0,0,0,0,0,0,14,0,14,14 +61627,GIBBMANSIONHDFC.YR15.FY2017,Multifamily Finance Program,06/08/2017,06/08/2017,808861,17,MONROE STREET,Brooklyn,11238,3019850014,3335049,BK-03,35,229,BK69,40.684596,-73.958229,40.68494,-73.95838,06/08/2017,Preservation,Yes,Non Prevailing Wage,47,9,1,0,0,1,57,0,1,0,0,0,0,0,58,0,58,58 +60740,LIGHTHOUSE POINT,Multifamily Finance Program,06/07/2017,,977177,35R,BAY STREET,Staten Island,10301,,,SI-01,49,3,SI22,40.641492,-74.075738,,,,New Construction,No,Non Prevailing Wage,0,0,24,0,0,0,5,13,6,0,0,0,0,0,24,0,24,115 +59382,AHI EZER APARTMENTS,Multifamily Incentives Program,06/05/2017,06/05/2017,239514,1960,EAST 7 STREET,Brooklyn,11223,3066820045,3178703,BK-15,47,418,BK25,40.603084,-73.965083,40.60284,-73.965338,06/05/2017,Preservation,Yes,Non Prevailing Wage,0,0,38,0,0,1,16,22,1,0,0,0,0,0,39,0,39,39 +59382,AHI EZER APARTMENTS,Multifamily Incentives Program,06/05/2017,06/05/2017,239515,1965,EAST 7 STREET,Brooklyn,11223,3066830052,3178750,BK-15,47,418,BK25,40.60298,-73.965039,40.6029,-73.96478,06/05/2017,Preservation,Yes,Non Prevailing Wage,0,0,35,0,0,0,15,20,0,0,0,0,0,0,35,0,35,35 +65104,26-27 2 STREET APARTMENTS,Multifamily Incentives Program,06/05/2017,07/17/2018,969569,26-27,2 STREET,Queens,11102,4009140005,4615286,QN-01,22,87,QN71,40.776282,-73.934771,40.77591,-73.93462,07/17/2018,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,4,2,0,0,0,0,0,6,0,6,28 +63356,BUSHWICK CEDAR PARTNERS LLC.HUDMF.FY17,Multifamily Finance Program,06/02/2017,06/02/2017,216177,761,BUSHWICK AVENUE,Brooklyn,11221,3032310001,3073471,BK-04,34,393,BK78,40.69555,-73.929048,40.6958,-73.92891,06/02/2017,Preservation,Yes,Non Prevailing Wage,57,7,4,1,0,1,5,42,23,0,0,0,0,0,70,0,70,70 +65110,313 ST MARKS AVENUE,Multifamily Incentives Program,05/31/2017,05/30/2018,374733,313,ST MARKS AVENUE,Brooklyn,11238,3011460046,3396269,BK-08,35,205,BK64,40.677772,-73.964831,40.67811,-73.964722,05/30/2018,New Construction,No,Non Prevailing Wage,0,0,15,0,0,0,3,4,8,0,0,0,0,0,15,0,15,75 +64865,CONFIDENTIAL,Homeowner Assistance Program,05/25/2017,05/25/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/25/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64866,CONFIDENTIAL,Homeowner Assistance Program,05/25/2017,05/25/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/25/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64868,CONFIDENTIAL,Homeowner Assistance Program,05/25/2017,05/25/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/25/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +58621,TREE OF LIFE,Multifamily Finance Program,05/24/2017,,972781,89-48,164 STREET,Queens,11432,4097930078,4209584,QN-12,24,44601,QN61,40.707058,-73.796924,40.70599,-73.796574,,New Construction,No,Non Prevailing Wage,0,17,113,43,0,1,14,86,44,30,0,0,0,0,174,0,174,174 +65116,387 MANHATTAN AVENUE,Multifamily Incentives Program,05/24/2017,03/02/2018,331663,387,MANHATTAN AVENUE,Brooklyn,11211,3027387501,3425489,BK-01,34,501,BK90,40.717677,-73.946625,40.71766,-73.946899,03/02/2018,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,2,1,0,0,0,0,0,0,3,0,3,12 +49279,1402 YORK AVENUE,Multifamily Incentives Program,05/23/2017,,948086,1402,YORK AVENUE,Manhattan,10021,1014860004,1046294,MN-08,5,132,MN31,40.768529,-73.952512,40.76833,-73.952263,,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,10,0,0,0,0,0,0,0,0,10,10,11 +65072,785 DEKALB AVENUE,Multifamily Incentives Program,05/16/2017,10/25/2018,977416,785,DEKALB AVENUE,Brooklyn,11221,3017760067,3398428,BK-03,36,261,BK75,40.692163,-73.944572,40.69236,-73.94481,10/25/2018,New Construction,No,Non Prevailing Wage,0,0,14,0,0,0,1,6,7,0,0,0,0,0,14,0,14,70 +65074,866 EAST 178TH STREET,Multifamily Incentives Program,05/16/2017,05/16/2017,969739,866,EAST 178 STREET,Bronx,10460,2031210014,2127009,BX-06,17,363,BX17,40.843525,-73.884934,40.84322,-73.884612,05/16/2017,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,4,5,0,0,0,0,0,9,0,9,45 +65134,WATERMARK COURT,Multifamily Incentives Program,05/15/2017,05/17/2019,973171,27-19,44 DRIVE,Queens,11101,4002680008,4617818,QN-02,26,19,QN31,40.746942,-73.942245,40.74679,-73.941744,05/17/2019,New Construction,No,Non Prevailing Wage,0,0,34,0,0,0,14,15,5,0,0,0,0,0,34,0,34,168 +58671,COMUNILIFE. 760 BROADWAY. WOODHULL COMMUNITY RESIDEN,Multifamily Finance Program,05/12/2017,12/20/2018,976883,179,THROOP AVENUE,Brooklyn,11206,3017230002,3425715,BK-03,36,28501,BK78,40.698451,-73.943986,40.69852,-73.943672,12/20/2018,New Construction,No,Non Prevailing Wage,54,8,27,0,0,0,89,0,0,0,0,0,0,0,89,0,89,89 +64859,CONFIDENTIAL,Homeowner Assistance Program,05/10/2017,05/10/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/10/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65143,407 EAST 160TH STREET,Multifamily Incentives Program,05/10/2017,02/01/2019,969749,407,EAST 160 STREET,Bronx,10451,2023820037,2129325,BX-03,17,141,BX35,40.823475,-73.913798,40.82367,-73.913783,02/01/2019,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,39 +64858,CONFIDENTIAL,Homeowner Assistance Program,05/09/2017,05/09/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/09/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64855,CONFIDENTIAL,Homeowner Assistance Program,05/05/2017,05/05/2017,,----,----,Queens,,,,QN-02,26,,,,,,,05/05/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +64857,CONFIDENTIAL,Homeowner Assistance Program,05/03/2017,05/03/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/03/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64850,CONFIDENTIAL,Homeowner Assistance Program,05/02/2017,05/02/2017,,----,----,Queens,,,,QN-11,23,,,,,,,05/02/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64652,CONFIDENTIAL,Homeowner Assistance Program,04/28/2017,04/28/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,04/28/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,4360,315,8 AVENUE,Manhattan,10001,1007490024,1083599,MN-04,3,93,MN13,40.746984,-73.997272,40.74714,-73.997968,04/27/2017,Preservation,Yes,Non Prevailing Wage,29,36,27,29,30,0,18,100,33,0,0,0,0,0,0,151,151,186 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,4371,363,8 AVENUE,Manhattan,10001,1007520001,1083604,MN-04,3,97,MN13,40.748535,-73.996138,40.74979,-73.998712,04/27/2017,Preservation,Yes,Non Prevailing Wage,27,24,19,41,28,0,16,73,50,0,0,0,0,0,0,139,139,186 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,4623,350,WEST 24 STREET,Manhattan,10011,1007470001,1078541,MN-04,3,93,MN13,40.746825,-74.000448,40.74619,-73.99982,04/27/2017,Preservation,Yes,Non Prevailing Wage,21,23,31,40,30,0,18,78,49,0,0,0,0,0,0,145,145,186 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,4633,365,WEST 25 STREET,Manhattan,10001,1007490001,1013458,MN-04,3,93,MN13,40.747426,-73.999552,40.74783,-73.999632,04/27/2017,Preservation,Yes,Non Prevailing Wage,25,20,18,37,36,0,15,75,46,0,0,0,0,0,0,136,136,186 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,4636,270,9 AVENUE,Manhattan,10001,1007510001,,MN-04,3,97,MN13,40.748497,-73.999856,40.74846,-73.997968,04/27/2017,Preservation,Yes,Non Prevailing Wage,58,49,60,69,58,0,45,131,83,35,0,0,0,0,0,294,294,378 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,31596,311,WEST 24 STREET,Manhattan,10011,1007480001,1083596,MN-04,3,93,MN13,40.746043,-73.998333,40.74672,-73.999228,04/27/2017,Preservation,Yes,Non Prevailing Wage,45,48,60,71,65,0,47,124,84,34,0,0,0,0,0,289,289,378 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,803934,345,8 AVENUE,Manhattan,10001,1007510001,1082793,MN-04,3,97,MN13,40.74792,-73.996589,40.74846,-73.997968,04/27/2017,Preservation,Yes,Non Prevailing Wage,70,49,44,68,52,0,37,129,86,31,0,0,0,0,0,283,283,378 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,805574,341,WEST 24 STREET,Manhattan,10011,1007480001,1083598,MN-04,3,93,MN13,40.746325,-73.999802,40.74672,-73.999228,04/27/2017,Preservation,Yes,Non Prevailing Wage,65,50,41,76,63,0,46,127,87,35,0,0,0,0,0,295,295,378 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,805584,330,WEST 28 STREET,Manhattan,10001,1007510001,1082796,MN-04,3,97,MN13,40.749131,-73.997019,40.74846,-73.997968,04/27/2017,Preservation,Yes,Non Prevailing Wage,57,53,51,75,65,0,47,130,94,30,0,0,0,0,0,301,301,378 +63839,PENN SOUTH,Multifamily Incentives Program,04/27/2017,04/27/2017,805585,365,WEST 28 STREET,Manhattan,10001,1007520001,1083605,MN-04,3,97,MN13,40.749501,-73.998444,40.74979,-73.998712,04/27/2017,Preservation,Yes,Non Prevailing Wage,27,28,37,36,28,0,17,82,57,0,0,0,0,0,0,156,156,186 +62303,NEW HULL STREET HDFC.YR15.FY17,Multifamily Finance Program,04/26/2017,04/26/2017,373818,1610,ST JOHNS PLACE,Brooklyn,11233,3013870018,3037203,BK-08,41,359,BK61,40.670216,-73.924414,40.66991,-73.924421,04/26/2017,Preservation,Yes,Non Prevailing Wage,0,26,6,0,0,1,0,5,23,5,0,0,0,0,33,0,33,33 +65103,1417 LONGFELLOW AVENUE,Multifamily Incentives Program,04/26/2017,07/30/2018,92414,1417,LONGFELLOW AVENUE,Bronx,10459,2029990042,2128697,BX-03,17,123,BX75,40.830175,-73.887858,40.83006,-73.88822,07/30/2018,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,38 +64654,CONFIDENTIAL,Homeowner Assistance Program,04/21/2017,04/21/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/21/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64667,CONFIDENTIAL,Homeowner Assistance Program,04/21/2017,,,----,----,Brooklyn,,,,BK-05,42,,,,,,,,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +64655,CONFIDENTIAL,Homeowner Assistance Program,04/19/2017,04/19/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,04/19/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64653,CONFIDENTIAL,Homeowner Assistance Program,04/13/2017,04/13/2017,,----,----,Queens,,,,QN-11,23,,,,,,,04/13/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65124,SAINT MARKS APARTMENTS,Multifamily Incentives Program,04/10/2017,07/20/2018,956113,618,BUSHWICK AVENUE,Brooklyn,11206,3031700026,3425505,BK-04,34,389,BK78,40.698207,-73.933899,40.69784,-73.933932,07/20/2018,New Construction,No,Non Prevailing Wage,0,0,20,0,0,0,1,9,10,0,0,0,0,0,20,0,20,99 +63838,RAINBOW PLZ,Multifamily Incentives Program,04/07/2017,04/07/2017,63067,575,EAST 140 STREET,Bronx,10454,2025530002,2087620,BX-01,8,2702,BX39,40.8079,-73.91601,40.8081,-73.915667,04/07/2017,Preservation,Yes,Non Prevailing Wage,0,0,126,0,0,1,0,30,83,14,0,0,0,0,127,0,127,127 +64453,CONFIDENTIAL,Homeowner Assistance Program,04/07/2017,09/29/2017,,----,----,Brooklyn,,,,BK-17,41,,,,,,,09/29/2017,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +64650,CONFIDENTIAL,Homeowner Assistance Program,04/07/2017,04/07/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/07/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64649,CONFIDENTIAL,Homeowner Assistance Program,04/06/2017,04/06/2017,,----,----,Queens,,,,QN-13,27,,,,,,,04/06/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64656,CONFIDENTIAL,Homeowner Assistance Program,04/06/2017,04/06/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/06/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54520,COMPASS 5,Multifamily Finance Program,04/05/2017,12/12/2019,975517,1903,WEST FARMS ROAD,Bronx,10460,2030160011,2129118,BX-06,17,359,BX17,40.838446,-73.881325,40.83863,-73.881758,11/13/2019,New Construction,No,Non Prevailing Wage,65,0,152,0,0,1,28,118,39,33,0,0,0,0,218,0,218,218 +60020,MORRIS II APARTMENTS,Multifamily Finance Program,04/05/2017,11/02/2018,974093,2980,PARK AVENUE,Bronx,10451,2024417501,2128727,BX-01,17,65,BX34,40.820725,-73.922339,40.82014,-73.922646,11/02/2018,New Construction,No,Non Prevailing Wage,46,5,102,0,0,1,22,57,51,24,0,0,0,0,154,0,154,154 +60810,MLK PLAZA,Multifamily Finance Program,04/05/2017,03/07/2019,972899,869,EAST 147 STREET,Bronx,10455,2026000187,2129095,BX-01,8,31,BX39,40.810414,-73.904671,40.81053,-73.904281,03/07/2019,New Construction,No,Non Prevailing Wage,33,16,100,17,0,1,25,57,61,24,0,0,0,0,167,0,167,167 +61405,THE GILBERT,Multifamily Finance Program,04/05/2017,,976362,1912,1 AVENUE,Manhattan,10029,1016910004,1090675,MN-11,8,162,MN33,40.784867,-73.94353,40.78434,-73.943209,,New Construction,No,Non Prevailing Wage,16,38,49,19,30,1,30,47,53,23,0,0,0,0,153,0,153,153 +64646,CONFIDENTIAL,Homeowner Assistance Program,04/04/2017,04/04/2017,,----,----,Queens,,,,QN-12,27,,,,,,,04/04/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +63121,2211 THIRD AVENUE,Multifamily Incentives Program,03/30/2017,,976304,2211,3 AVENUE,Manhattan,10035,1017857503,1089662,MN-11,8,194,MN34,40.800797,-73.937926,40.80076,-73.937395,,New Construction,No,Non Prevailing Wage,0,0,22,0,0,0,3,7,12,0,0,0,0,0,22,0,22,108 +61902,810 FULTON STREET,Multifamily Incentives Program,03/28/2017,09/12/2019,974040,475,CLERMONT AVENUE,Brooklyn,11238,,,BK-02,35,199,BK69,40.683304,-73.968891,,,09/12/2019,New Construction,No,Non Prevailing Wage,0,0,73,0,0,0,22,36,15,0,0,0,0,0,73,0,73,363 +64396,CONFIDENTIAL,Homeowner Assistance Program,03/27/2017,03/27/2017,,----,----,Brooklyn,,,,BK-18,45,,,,,,,03/27/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65136,MONTROSE PARK LLC,Multifamily Incentives Program,03/27/2017,,952588,73,MONTROSE AVENUE,Brooklyn,11206,3030500023,3071068,BK-01,34,511,BK90,40.706967,-73.94707,40.70723,-73.946857,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,40 +59637,VICTOR SANCHEZ HDFC.HRP.FY17,Multifamily Finance Program,03/24/2017,10/09/2018,39842,405,WEST 127 STREET,Manhattan,10027,1019670069,1059574,MN-09,7,21303,MN06,40.812854,-73.953492,40.81306,-73.953495,10/09/2018,Preservation,No,Non Prevailing Wage,0,8,10,0,0,0,0,2,10,6,0,0,0,0,18,0,18,18 +59637,VICTOR SANCHEZ HDFC.HRP.FY17,Multifamily Finance Program,03/24/2017,10/09/2018,39843,409,WEST 127 STREET,Manhattan,10027,1019670067,1059573,MN-09,7,21303,MN06,40.812879,-73.953553,40.81315,-73.953647,10/09/2018,Preservation,No,Non Prevailing Wage,2,15,6,1,0,0,1,6,11,0,6,0,0,0,24,0,24,24 +64407,CONFIDENTIAL,Homeowner Assistance Program,03/24/2017,11/03/2017,,----,----,Brooklyn,,,,BK-06,39,,,,,,,11/03/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,2,2,2 +64394,CONFIDENTIAL,Homeowner Assistance Program,03/23/2017,03/23/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,03/23/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +64395,CONFIDENTIAL,Homeowner Assistance Program,03/23/2017,03/23/2017,,----,----,Queens,,,,QN-07,19,,,,,,,03/23/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52735,HELP DUMONT LLC.YR15.FY17,Multifamily Finance Program,03/22/2017,01/31/2018,810153,330,HINSDALE STREET,Brooklyn,11207,3037837501,3084436,BK-05,42,1134,BK85,40.66684,-73.899405,40.6663,-73.899734,01/31/2018,Preservation,No,Non Prevailing Wage,23,121,4,1,0,1,0,18,79,51,2,0,0,0,150,0,150,150 +64393,CONFIDENTIAL,Homeowner Assistance Program,03/22/2017,03/22/2017,,----,----,Brooklyn,,,,BK-11,44,,,,,,,03/22/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +64384,CONFIDENTIAL,Homeowner Assistance Program,03/21/2017,03/21/2017,,----,----,Bronx,,,,BX-10,13,,,,,,,03/21/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64392,CONFIDENTIAL,Homeowner Assistance Program,03/21/2017,03/21/2017,,----,----,Queens,,,,QN-09,32,,,,,,,03/21/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65102,1319 PROSPECT AVENUE,Multifamily Incentives Program,03/21/2017,02/21/2019,969740,1319A,PROSPECT AVENUE,Bronx,10459,2026810024,2127040,BX-03,17,135,BX35,40.828367,-73.898022,40.82837,-73.898387,02/21/2019,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,0,3,14 +64301,CONFIDENTIAL,Homeowner Assistance Program,03/20/2017,03/31/2017,,----,----,Bronx,,,,BX-03,17,,,,,,,03/31/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,2,2,2 +64391,CONFIDENTIAL,Homeowner Assistance Program,03/20/2017,03/20/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/20/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +59495,2700 JEROME AVENUE,Multifamily Finance Program,03/16/2017,01/31/2019,969140,2700,JEROME AVENUE,Bronx,10468,2033177501,2129358,BX-07,14,40304,BX28,40.868255,-73.89679,40.86817,-73.896385,01/31/2019,New Construction,No,Non Prevailing Wage,40,0,70,25,0,1,32,35,45,24,0,0,0,0,136,0,136,136 +65036,SAVANNA HALL,Multifamily Incentives Program,03/16/2017,,945909,446,WEST 163 STREET,Manhattan,10032,1021100011,,MN-12,10,24301,MN36,40.836075,-73.938341,40.83601,-73.938858,,New Construction,No,Non Prevailing Wage,0,0,72,0,0,1,73,0,0,0,0,0,0,0,73,0,73,73 +65086,100 BARROW STREET,Multifamily Incentives Program,03/15/2017,01/18/2019,970563,100,BARROW STREET,Manhattan,10014,1006050001,1089890,MN-02,3,69,MN23,40.731775,-74.007631,40.73198,-74.007494,01/18/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,7,0,1,2,4,0,0,0,0,0,7,0,7,33 +64381,CONFIDENTIAL,Homeowner Assistance Program,03/10/2017,03/10/2017,,----,----,Queens,,,,QN-14,31,,,,,,,03/10/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64379,CONFIDENTIAL,Homeowner Assistance Program,03/09/2017,03/09/2017,,----,----,Bronx,,,,BX-07,14,,,,,,,03/09/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +64377,CONFIDENTIAL,Homeowner Assistance Program,03/03/2017,03/03/2017,,----,----,Queens,,,,QN-12,27,,,,,,,03/03/2017,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64332,CONFIDENTIAL,Homeowner Assistance Program,03/02/2017,03/02/2017,,----,----,Bronx,,,,BX-01,17,,,,,,,03/02/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,51243,2621,BRIGGS AVENUE,Bronx,10458,2032930135,2016825,BX-07,15,39901,BX05,40.864431,-73.893151,40.86491,-73.893158,07/31/2017,Preservation,No,Non Prevailing Wage,13,24,11,0,0,1,1,24,12,10,2,0,0,0,49,0,49,49 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,66855,62,EAST 190 STREET,Bronx,10468,2031740024,2013923,BX-07,14,401,BX05,40.863011,-73.898475,40.86285,-73.898841,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,66882,353,EAST 193 STREET,Bronx,10458,2032760036,2016344,BX-07,15,39901,BX05,40.863246,-73.891114,40.86352,-73.891201,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,67110,364,EAST 197 STREET,Bronx,10458,2032830037,2016501,BX-07,15,40502,BX05,40.865933,-73.887943,40.86585,-73.888087,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,117114,2666,VALENTINE AVENUE,Bronx,10458,2033000011,2016995,BX-07,15,40501,BX05,40.865784,-73.893008,40.86568,-73.892824,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,117122,2690,VALENTINE AVENUE,Bronx,10458,2033000023,2017001,BX-07,15,40501,BX05,40.866182,-73.892812,40.86628,-73.892465,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11 +60034,RENEWAL HDFC.GHPP.FY17,Multifamily Finance Program,03/01/2017,07/31/2017,117124,2698,VALENTINE AVENUE,Bronx,10458,2033000027,2017003,BX-07,15,40501,BX05,40.866571,-73.892562,40.86648,-73.892331,03/01/2017,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,281922,17,EAST 92 STREET,Brooklyn,11212,3045950121,3340120,BK-17,41,882,BK96,40.663607,-73.929435,40.66374,-73.929244,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,324387,978,LENOX ROAD,Brooklyn,11212,3046650005,3101679,BK-17,41,886,BK96,40.65628,-73.923229,40.65611,-73.923002,08/19/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,367956,556,SCHENECTADY AVENUE,Brooklyn,11203,3048260012,3107660,BK-09,41,876,BK60,40.659855,-73.934186,40.65999,-73.934514,08/15/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,532932,195-09,119 AVENUE,Queens,11412,4126160031,4271718,QN-12,27,394,QN08,40.690479,-73.755395,40.69076,-73.755249,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,536580,146-10,123 AVENUE,Queens,11436,4120500042,4261666,QN-12,28,18401,QN76,40.675556,-73.792254,40.67541,-73.791952,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,543689,221-02,131 AVENUE,Queens,11413,4129310082,4278483,QN-13,31,626,QN66,40.682093,-73.746166,40.68189,-73.746275,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,544663,101-64,132 STREET,Queens,11419,4094990031,4201081,QN-09,28,152,QN54,40.691674,-73.814738,40.69117,-73.814768,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,549840,91-09 1/2,138 PLACE,Queens,11435,4099810035,4213802,QN-12,24,212,QN61,40.699795,-73.812652,40.69982,-73.812432,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,550818,218-38,140 AVENUE,Queens,11413,4130450028,4280605,QN-13,31,328,QN66,40.672177,-73.755491,40.67185,-73.755135,05/29/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,561639,123-25,152 STREET,Queens,11434,4122190048,4265382,QN-12,28,288,QN76,40.675836,-73.789128,40.67553,-73.788783,05/07/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,572104,145-07,167 STREET,Queens,11434,4132850057,4617233,QN-13,31,306,QN03,40.663614,-73.774792,40.66371,-73.774571,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,583620,104-17,187 STREET,Queens,11412,4103730007,4457615,QN-12,27,404,QN08,40.705597,-73.76991,40.70529,-73.769565,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,589736,115-46,198 STREET,Queens,11412,4110380068,4237565,QN-12,27,530,QN08,40.696547,-73.755131,40.69619,-73.755269,07/19/2019,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,591716,113-10,201 STREET,Queens,11412,4109950009,4235858,QN-12,27,520,QN08,40.701285,-73.754269,40.70122,-73.754551,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,595312,111-33,205 STREET,Queens,11412,4109640134,4234918,QN-12,27,532,QN34,40.704406,-73.751668,40.70436,-73.751355,03/15/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,597082,109-11,208 STREET,Queens,11429,4109180046,4233676,QN-13,27,512,QN34,40.708857,-73.749855,40.70892,-73.749581,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,610826,115-69,224 STREET,Queens,11411,4113060028,4243939,QN-13,27,600,QN33,40.696991,-73.735085,40.69698,-73.734793,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,611866,131-68,225 STREET,Queens,11413,4129340175,4278659,QN-13,31,630,QN66,40.67937,-73.743794,40.67922,-73.744173,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,679081,228-39,MENTONE AVENUE,Queens,11413,4131920225,4283716,QN-13,31,682,QN66,40.667115,-73.746537,40.66731,-73.746316,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +51950,HABITAT-NYC SINGLE FAMILY HOMES PHASE II,Small Homes Program,02/23/2017,,690769,107-16,REMINGTON STREET,Queens,11435,4100700121,4215226,QN-12,28,202,QN01,40.689746,-73.806186,40.6896,-73.806392,,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52985,788 FOX STREET HDFC.HUDMF.FY17,Multifamily Finance Program,02/22/2017,01/11/2018,79168,788,FOX STREET,Bronx,10455,2027200069,2005730,BX-02,8,85,BX33,40.816391,-73.897455,40.81646,-73.897033,01/11/2018,Preservation,No,Prevailing Wage,40,9,3,0,0,0,0,30,17,5,0,0,0,0,52,0,52,52 +64106,CONFIDENTIAL,Homeowner Assistance Program,02/22/2017,02/22/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,02/22/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64088,CONFIDENTIAL,Homeowner Assistance Program,02/15/2017,02/15/2017,,----,----,Bronx,,,,BX-09,18,,,,,,,02/15/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +64645,39 WEST 23RD STREET,Multifamily Incentives Program,02/14/2017,,992703,39,WEST 23 STREET,Manhattan,10010,1008250020,,MN-05,3,58,MN13,40.742131,-73.990931,40.74252,-73.990946,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,1,1,0,0,0,0,0,0,2,0,2,35 +64645,39 WEST 23RD STREET,Multifamily Incentives Program,02/14/2017,,992704,22,WEST 24 STREET,Manhattan,10010,1008250060,1015586,MN-05,3,58,MN13,40.742595,-73.990051,40.74274,-73.990855,,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,2,0,0,0,0,0,2,0,2,9 +44332,HOPKINSON/PARK PLACE,Small Homes Program,02/10/2017,,973750,1900A,PARK PLACE,Brooklyn,11233,3014680056,,BK-16,41,363,BK79,40.671483,-73.914794,40.6713,-73.914589,,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,3,1,0,0,0,0,0,7,7,7 +44332,HOPKINSON/PARK PLACE,Small Homes Program,02/10/2017,,973751,1900B,PARK PLACE,Brooklyn,11233,3014680056,,BK-16,41,363,BK79,40.671483,-73.914794,40.6713,-73.914589,,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,0,2,6,2,0,0,0,0,0,10,10,10 +44332,HOPKINSON/PARK PLACE,Small Homes Program,02/10/2017,,975662,416,THOMAS S BOYLAND STREET,Brooklyn,11233,3014680063,,BK-16,41,363,BK79,40.67101,-73.914128,40.67107,-73.91455,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,2,6,0,0,0,0,0,0,8,8,8 +64087,CONFIDENTIAL,Homeowner Assistance Program,02/10/2017,02/10/2017,,----,----,Staten Island,,,,SI-03,51,,,,,,,02/10/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +64086,CONFIDENTIAL,Homeowner Assistance Program,02/09/2017,02/09/2017,,----,----,Bronx,,,,BX-11,13,,,,,,,02/09/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +64085,CONFIDENTIAL,Homeowner Assistance Program,02/08/2017,02/08/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/08/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65097,2139 THIRD AVENUE,Multifamily Incentives Program,02/08/2017,07/25/2018,969379,2139,3 AVENUE,Manhattan,10035,1016667501,1090250,MN-11,8,188,MN34,40.79846,-73.939633,40.79839,-73.939333,07/25/2018,New Construction,No,Non Prevailing Wage,0,0,5,0,0,0,0,5,0,0,0,0,0,0,5,0,5,21 +58876,NEW VISION COMMUNITY REDEVELOPMENT HDFC,Multifamily Finance Program,02/02/2017,,62785,455,EAST 138 STREET,Bronx,10454,2022830033,2000269,BX-01,8,39,BX39,40.808387,-73.921161,40.80867,-73.920872,12/14/2018,Preservation,No,Non Prevailing Wage,93,2,1,0,0,1,0,87,10,0,0,0,0,0,97,0,97,97 +58876,NEW VISION COMMUNITY REDEVELOPMENT HDFC,Multifamily Finance Program,02/02/2017,,64056,440,EAST 156 STREET,Bronx,10455,2023770020,2094189,BX-01,17,69,BX34,40.8205,-73.914405,40.82013,-73.914434,,Preservation,No,Non Prevailing Wage,94,1,1,0,0,1,24,72,1,0,0,0,0,0,97,0,97,97 +61655,123 HOPE STREET,Multifamily Incentives Program,02/02/2017,,363424,432,RODNEY STREET,Brooklyn,11211,3023740001,3062537,BK-01,34,513,BK73,40.712605,-73.953811,40.71259,-73.953443,,New Construction,No,Non Prevailing Wage,0,0,25,16,0,0,15,20,6,0,0,0,0,0,41,0,41,136 +63870,CONFIDENTIAL,Homeowner Assistance Program,01/27/2017,01/27/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,01/27/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +63868,CONFIDENTIAL,Homeowner Assistance Program,01/26/2017,01/26/2017,,----,----,Queens,,,,QN-07,20,,,,,,,01/26/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +63869,CONFIDENTIAL,Homeowner Assistance Program,01/26/2017,01/26/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/26/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +63867,CONFIDENTIAL,Homeowner Assistance Program,01/25/2017,01/25/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/25/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60427,HP 109TH STREET HDFC.HUDMF.FY17,Multifamily Finance Program,01/23/2017,11/07/2018,25206,200,MANHATTAN AVENUE,Manhattan,10025,1018440020,1084021,MN-07,7,193,MN09,40.800319,-73.960248,40.80019,-73.959854,05/17/2018,Preservation,Yes,Non Prevailing Wage,14,1,2,0,0,0,0,10,1,6,0,0,0,0,17,0,17,17 +60427,HP 109TH STREET HDFC.HUDMF.FY17,Multifamily Finance Program,01/23/2017,11/07/2018,37471,133,WEST 104 STREET,Manhattan,10025,1018590015,1055913,MN-07,7,189,MN12,40.798528,-73.965237,40.79875,-73.965186,04/27/2018,Preservation,Yes,Non Prevailing Wage,21,3,3,0,0,0,0,8,19,0,0,0,0,0,27,0,27,27 +60427,HP 109TH STREET HDFC.HUDMF.FY17,Multifamily Finance Program,01/23/2017,11/07/2018,805084,204,MANHATTAN AVENUE,Manhattan,10025,1018440020,1084022,MN-07,7,193,MN09,40.800387,-73.960201,40.80019,-73.959854,05/17/2018,Preservation,Yes,Non Prevailing Wage,15,5,3,0,0,0,0,13,4,6,0,0,0,0,23,0,23,23 +60427,HP 109TH STREET HDFC.HUDMF.FY17,Multifamily Finance Program,01/23/2017,11/07/2018,805832,12,WEST 109 STREET,Manhattan,10025,1018440020,1084024,MN-07,7,193,MN09,40.800186,-73.959139,40.80019,-73.959854,11/07/2018,Preservation,Yes,Non Prevailing Wage,28,2,5,0,0,0,1,18,6,10,0,0,0,0,35,0,35,35 +60427,HP 109TH STREET HDFC.HUDMF.FY17,Multifamily Finance Program,01/23/2017,11/07/2018,805835,20,WEST 109 STREET,Manhattan,10025,1018440020,1084023,MN-07,7,193,MN09,40.800285,-73.959377,40.80019,-73.959854,05/17/2018,Preservation,Yes,Non Prevailing Wage,20,3,1,0,0,0,1,22,1,0,0,0,0,0,24,0,24,24 +63866,CONFIDENTIAL,Homeowner Assistance Program,01/23/2017,01/23/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,01/23/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +63865,CONFIDENTIAL,Homeowner Assistance Program,01/20/2017,01/20/2017,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/20/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58388,COMUNILIFE. 1815 WEST FARMS ROAD,Multifamily Finance Program,01/19/2017,12/14/2018,970697,1815,WEST FARMS ROAD,Bronx,10460,2030150062,2010960,BX-03,17,161,BX75,40.836723,-73.882148,40.83664,-73.882517,12/14/2018,New Construction,No,Non Prevailing Wage,80,0,0,0,0,1,80,1,0,0,0,0,0,0,81,0,81,81 +63864,CONFIDENTIAL,Homeowner Assistance Program,01/19/2017,01/19/2017,,----,----,Queens,,,,QN-01,22,,,,,,,01/19/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +52989,635 4TH AVENUE,Multifamily Incentives Program,01/18/2017,07/12/2018,956174,635,4 AVENUE,Brooklyn,11232,3006340001,3426833,BK-07,38,143,BK37,40.663925,-73.994409,40.66381,-73.994035,07/12/2018,New Construction,No,Non Prevailing Wage,0,0,19,0,0,0,8,7,4,0,0,0,0,0,19,0,19,91 +63863,CONFIDENTIAL,Homeowner Assistance Program,01/17/2017,01/17/2017,,----,----,Queens,,,,QN-08,24,,,,,,,01/17/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58756,977 MANHATTAN AVENUE,Multifamily Incentives Program,01/05/2017,12/12/2019,968816,977,MANHATTAN AVENUE,Brooklyn,11222,3025320045,3425610,BK-01,33,563,BK76,40.732565,-73.954659,40.73255,-73.955038,12/12/2019,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,3,0,0,0,0,0,0,3,0,3,14 +65071,74 WEST TREMONT AVENUE,Multifamily Incentives Program,01/05/2017,06/06/2018,122172,74,WEST TREMONT AVENUE,Bronx,10453,2028620006,2124607,BX-05,14,217,BX36,40.851025,-73.912124,40.85085,-73.911843,06/06/2018,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,4,0,0,0,0,0,7,0,7,34 +58966,ALEMBIC. 1880 BOSTON ROAD,Multifamily Finance Program,12/30/2016,12/21/2018,991185,1880,BOSTON ROAD,Bronx,10460,2030047501,2120210,BX-06,17,359,BX17,40.83957,-73.882783,40.83921,-73.882628,12/21/2018,New Construction,No,Prevailing Wage,167,0,0,0,0,1,66,101,1,0,0,0,0,0,168,0,168,168 +60249,FOX STREET PRC,Multifamily Finance Program,12/30/2016,06/05/2019,971150,1000,FOX STREET,Bronx,10459,2027247502,2128360,BX-02,17,159,BX27,40.822951,-73.893886,40.82165,-73.892562,06/05/2019,New Construction,No,Non Prevailing Wage,0,60,59,0,0,1,8,66,27,19,0,0,0,0,120,0,120,120 +60249,FOX STREET PRC,Multifamily Finance Program,12/30/2016,06/05/2019,975072,960,SIMPSON STREET,Bronx,10459,2027247502,2127337,BX-02,17,159,BX27,40.821802,-73.892858,40.82302,-73.893467,04/24/2019,New Construction,No,Non Prevailing Wage,8,32,40,0,0,0,5,45,17,13,0,0,0,0,80,0,80,80 +63348,CONFIDENTIAL,Homeowner Assistance Program,12/30/2016,01/11/2017,,----,----,Brooklyn,,,,BK-17,41,,,,,,,01/11/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,2,2 +63349,CONFIDENTIAL,Homeowner Assistance Program,12/30/2016,05/24/2017,,----,----,Brooklyn,,,,BK-18,46,,,,,,,05/24/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +63738,CONFIDENTIAL,Homeowner Assistance Program,12/30/2016,12/30/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,12/30/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55264,THESSALONIA MANOR,Multifamily Finance Program,12/29/2016,01/25/2019,966135,960,PROSPECT AVENUE,Bronx,10459,2026900109,2129270,BX-02,17,12901,BX33,40.822745,-73.900336,40.82264,-73.899505,01/25/2019,New Construction,No,Non Prevailing Wage,36,0,83,0,0,1,0,50,52,18,0,0,0,0,120,0,120,120 +58625,ONE FLUSHING,Multifamily Finance Program,12/29/2016,01/25/2019,967648,133-45,41 AVENUE,Queens,11355,4050377507,4618345,QN-07,20,871,QN22,40.757855,-73.830252,40.75788,-73.830714,01/25/2019,New Construction,No,Non Prevailing Wage,0,66,105,60,0,1,60,90,57,25,0,0,0,0,232,0,232,232 +60319,VILLA GARDENS,Multifamily Finance Program,12/29/2016,,970855,16,EAST 204 STREET,Bronx,10468,2033210038,2129282,BX-07,11,411,BX05,40.87512,-73.888285,40.87482,-73.887989,,New Construction,No,Non Prevailing Wage,0,0,27,25,0,1,7,22,16,8,0,0,0,0,53,0,53,53 +60342,TILDEN TOWERS HOUSING CO. INC.,Multifamily Finance Program,12/29/2016,,47636,3511,BARNES AVENUE,Bronx,10467,2046590031,2057725,BX-12,12,380,BX44,40.877177,-73.861649,40.8772,-73.862286,,Preservation,No,Non Prevailing Wage,1,53,72,0,0,0,0,48,45,33,0,0,0,0,0,126,126,126 +60777,477 LENOX AVENUE HDFC.HUDMF.FY17,Multifamily Finance Program,12/29/2016,12/29/2016,23625,477,LENOX AVENUE,Manhattan,10037,1019180036,1058228,MN-10,9,226,MN03,40.813274,-73.94148,40.81349,-73.941815,12/29/2016,Preservation,Yes,Non Prevailing Wage,8,3,0,1,0,0,0,0,4,8,0,0,0,0,12,0,12,12 +63372,Village East Towers (HDC),Multifamily Finance Program,12/29/2016,12/29/2016,6551,162,AVENUE C,Manhattan,10009,1003820100,1078025,MN-03,2,28,MN28,40.725963,-73.977458,40.72608,-73.976473,12/29/2016,Preservation,No,Prevailing Wage,0,0,0,0,158,0,0,78,40,40,0,0,0,0,0,158,158,158 +63372,Village East Towers (HDC),Multifamily Finance Program,12/29/2016,12/29/2016,804714,411,EAST 10 STREET,Manhattan,10009,1003820100,1078024,MN-03,2,28,MN28,40.725628,-73.97691,40.72608,-73.976473,12/29/2016,Preservation,No,Prevailing Wage,0,0,0,0,188,0,23,71,94,0,0,0,0,0,0,188,188,188 +63372,Village East Towers (HDC),Multifamily Finance Program,12/29/2016,12/29/2016,804721,710,EAST 11 STREET,Manhattan,10009,1003820100,1078022,MN-03,2,28,MN28,40.726105,-73.976246,40.72608,-73.976473,12/29/2016,Preservation,No,Prevailing Wage,0,0,0,0,72,0,0,36,18,18,0,0,0,0,0,72,72,72 +63372,Village East Towers (HDC),Multifamily Finance Program,12/29/2016,12/29/2016,804722,711,EAST 11 STREET,Manhattan,10009,1003820100,1078021,MN-03,2,28,MN28,40.726231,-73.976509,40.72608,-73.976473,12/29/2016,Preservation,No,Prevailing Wage,0,0,0,0,16,0,16,0,0,0,0,0,0,0,0,16,16,16 +44282,NYCHA FULTON HOUSES,Multifamily Finance Program,12/28/2016,11/20/2018,973906,425,WEST 18 STREET,Manhattan,10011,1007167506,,MN-04,3,89,MN13,40.743962,-74.004735,40.74421,-74.004803,11/20/2018,New Construction,No,Non Prevailing Wage,0,32,48,0,79,1,52,69,39,0,0,0,0,0,160,0,160,160 +44339,BRONX COMMONS,Multifamily Finance Program,12/28/2016,12/30/2019,974382,443,EAST 162 STREET,Bronx,10451,2023840123,2129268,BX-03,17,141,BX35,40.824479,-73.91247,40.82452,-73.911527,12/30/2019,New Construction,No,Non Prevailing Wage,46,60,182,16,0,1,35,68,185,17,0,0,0,0,305,0,305,305 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,311887,450,HERZL STREET,Brooklyn,11212,3036090031,3082458,BK-16,42,896,BK81,40.658553,-73.912767,40.65861,-73.913066,04/02/2019,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,311892,463,HERZL STREET,Brooklyn,11212,3036100023,3082484,BK-16,42,896,BK81,40.658295,-73.912681,40.65838,-73.912421,04/02/2019,Preservation,No,Non Prevailing Wage,2,12,2,0,0,0,0,3,13,0,0,0,0,0,16,0,16,16 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,329095,30,LOTT AVENUE,Brooklyn,11212,3036200031,3082693,BK-16,42,896,BK81,40.657175,-73.912852,40.65696,-73.912733,04/02/2019,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,0,3,1,0,0,0,0,0,4,0,4,4 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,329139,54,LOTT AVENUE,Brooklyn,11212,3036210035,3082710,BK-16,42,896,BK81,40.657312,-73.911933,40.65709,-73.911879,04/02/2019,Preservation,No,Non Prevailing Wage,1,3,2,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,344530,80,NEWPORT STREET,Brooklyn,11212,3036100034,3082488,BK-16,42,896,BK81,40.65883,-73.912443,40.65861,-73.912356,04/02/2019,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,366659,903,SARATOGA AVENUE,Brooklyn,11212,3036080027,3082415,BK-16,42,896,BK81,40.658302,-73.914631,40.65841,-73.914342,04/02/2019,Preservation,No,Non Prevailing Wage,2,6,3,0,0,0,0,0,9,2,0,0,0,0,11,0,11,11 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,378230,2255,STRAUSS STREET,Brooklyn,11212,3036090028,3082457,BK-16,42,896,BK81,40.658417,-73.913668,40.65856,-73.913423,04/02/2019,Preservation,No,Non Prevailing Wage,0,4,2,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +58864,US LOTTPORT HDFC.YR15.FY2017,Multifamily Finance Program,12/28/2016,04/02/2019,378231,2256,STRAUSS STREET,Brooklyn,11212,3036080032,3082416,BK-16,42,896,BK81,40.658414,-73.913687,40.65848,-73.913989,04/02/2019,Preservation,No,Non Prevailing Wage,1,4,1,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +58889,KENMORE HALL ASSOCIATES LP.YR15.FY17,Multifamily Finance Program,12/28/2016,,12608,143,EAST 23 STREET,Manhattan,10010,1008790027,1018044,MN-06,2,68,MN21,40.739358,-73.98436,40.7395,-73.984018,,Preservation,No,Non Prevailing Wage,39,7,279,1,0,1,326,0,1,0,0,0,0,0,327,0,327,327 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1220,2158,2 AVENUE,Manhattan,10029,1016820050,1052863,MN-11,8,180,MN34,40.79367,-73.9402,40.79352,-73.939912,03/30/2018,Preservation,No,Non Prevailing Wage,0,2,10,0,0,1,8,0,5,0,0,0,0,0,13,0,13,13 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1222,2161,2 AVENUE,Manhattan,10029,1016610021,1052501,MN-11,8,180,MN34,40.793961,-73.940012,40.79402,-73.940305,12/31/2018,Preservation,No,Non Prevailing Wage,0,2,1,0,0,1,0,1,1,2,0,0,0,0,4,0,4,4 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1225,2164,2 AVENUE,Manhattan,10029,1016830002,1052867,MN-11,8,180,MN34,40.793978,-73.939976,40.79386,-73.939713,08/31/2018,Preservation,No,Non Prevailing Wage,0,1,2,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1273,2284,2 AVENUE,Manhattan,10035,1016890002,1052984,MN-11,8,188,MN34,40.797868,-73.937134,40.79774,-73.936841,09/30/2018,Preservation,No,Non Prevailing Wage,0,6,3,0,0,0,4,1,4,0,0,0,0,0,9,0,9,9 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1280,2291 1/2,2 AVENUE,Manhattan,10035,1016670024,1052622,MN-11,8,188,MN34,40.797997,-73.937061,40.79809,-73.937401,08/31/2018,Preservation,No,Non Prevailing Wage,0,8,2,0,0,1,0,1,10,0,0,0,0,0,11,0,11,11 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1311,2330,2 AVENUE,Manhattan,10035,1017960054,1054775,MN-11,8,194,MN34,40.799191,-73.936165,40.79915,-73.935836,08/31/2018,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,1323,2349,2 AVENUE,Manhattan,10035,1017850025,1054588,MN-11,8,194,MN34,40.799767,-73.935741,40.79998,-73.936019,12/31/2018,Preservation,No,Non Prevailing Wage,0,7,2,0,0,0,1,4,4,0,0,0,0,0,9,0,9,9 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19024,162,EAST 105 STREET,Manhattan,10029,1016320046,1051974,MN-11,8,166,MN33,40.791305,-73.946161,40.79109,-73.946237,10/31/2018,Preservation,No,Non Prevailing Wage,0,4,1,0,0,0,2,1,2,0,0,0,0,0,5,0,5,5 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19198,11,EAST 109 STREET,Manhattan,10029,1016150009,1051598,MN-11,9,17401,MN33,40.79587,-73.948848,40.79609,-73.948805,08/31/2018,Preservation,No,Non Prevailing Wage,1,14,9,0,0,0,7,17,0,0,0,0,0,0,24,0,24,24 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19200,15,EAST 109 STREET,Manhattan,10029,1016150010,1051599,MN-11,9,17401,MN33,40.795832,-73.948758,40.79604,-73.948689,08/31/2018,Preservation,No,Non Prevailing Wage,1,12,9,0,0,2,7,17,0,0,0,0,0,0,24,0,24,24 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19208,16,EAST 109 STREET,Manhattan,10029,1016140063,1051592,MN-11,9,17401,MN33,40.795818,-73.948769,40.79565,-73.948953,11/30/2018,Preservation,No,Non Prevailing Wage,0,3,7,0,0,0,0,0,10,0,0,0,0,0,10,0,10,10 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19221,18,EAST 109 STREET,Manhattan,10029,1016140062,1051591,MN-11,9,17401,MN33,40.795799,-73.948726,40.79562,-73.948874,11/30/2018,Preservation,No,Non Prevailing Wage,0,6,4,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19231,22,EAST 109 STREET,Manhattan,10029,1016140060,1051589,MN-11,9,17401,MN33,40.79576,-73.948635,40.79554,-73.948686,08/31/2018,Preservation,No,Non Prevailing Wage,4,8,3,0,0,0,0,6,4,5,0,0,0,0,15,0,15,15 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19233,24,EAST 109 STREET,Manhattan,10029,1016140058,1051588,MN-11,9,17401,MN33,40.795741,-73.948592,40.7955,-73.948585,10/31/2018,Preservation,No,Non Prevailing Wage,0,8,7,0,0,0,0,6,8,1,0,0,0,0,15,0,15,15 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19235,26,EAST 109 STREET,Manhattan,10029,1016140057,1051587,MN-11,9,17401,MN33,40.795722,-73.948545,40.79545,-73.948487,08/31/2018,Preservation,No,Non Prevailing Wage,0,7,7,0,0,0,4,0,10,0,0,0,0,0,14,0,14,14 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19299,18,EAST 110 STREET,Manhattan,10029,1016150060,1051606,MN-11,9,17401,MN33,40.796435,-73.948274,40.79626,-73.948447,10/31/2018,Preservation,No,Non Prevailing Wage,0,31,28,0,0,1,14,25,16,5,0,0,0,0,60,0,60,60 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19381,212,EAST 111 STREET,Manhattan,10029,1016600043,1052483,MN-11,8,180,MN34,40.794528,-73.941825,40.7943,-73.941865,01/31/2018,Preservation,No,Non Prevailing Wage,0,7,1,0,0,0,1,7,0,0,0,0,0,0,8,0,8,8 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19410,307,EAST 111 STREET,Manhattan,10029,1016830006,1052871,MN-11,8,180,MN34,40.793651,-73.939684,40.79374,-73.939359,11/30/2018,Preservation,No,Non Prevailing Wage,0,6,2,0,0,0,1,7,0,0,0,0,0,0,8,0,8,8 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19466,334,EAST 112 STREET,Manhattan,10029,1016830036,1052885,MN-11,8,180,MN34,40.793883,-73.938257,40.79367,-73.938405,05/31/2018,Preservation,No,Non Prevailing Wage,0,6,8,0,0,0,10,0,0,4,0,0,0,0,14,0,14,14 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19469,344,EAST 112 STREET,Manhattan,10029,1016830031,1052883,MN-11,8,180,MN34,40.793746,-73.937929,40.79348,-73.937951,05/31/2018,Preservation,No,Non Prevailing Wage,0,10,8,0,0,0,7,5,0,6,0,0,0,0,18,0,18,18 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19568,415,EAST 115 STREET,Manhattan,10029,1017090007,1053044,MN-11,8,178,MN34,40.795087,-73.935341,40.79521,-73.935038,08/31/2018,Preservation,No,Non Prevailing Wage,0,16,14,0,0,0,13,3,11,3,0,0,0,0,30,0,30,30 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19572,422,EAST 115 STREET,Manhattan,10029,1017080039,1053028,MN-11,8,178,MN34,40.795018,-73.935222,40.79476,-73.935147,10/31/2018,Preservation,No,Non Prevailing Wage,0,5,3,0,0,0,4,1,3,0,0,0,0,0,8,0,8,8 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19573,423,EAST 115 STREET,Manhattan,10029,1017090010,1053046,MN-11,8,178,MN34,40.795032,-73.935211,40.79511,-73.934857,09/30/2018,Preservation,No,Non Prevailing Wage,0,15,3,0,0,0,12,0,6,0,0,0,0,0,18,0,18,18 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19576,426,EAST 115 STREET,Manhattan,10029,1017080036,1053026,MN-11,8,178,MN34,40.794991,-73.935157,40.79468,-73.934948,12/31/2018,Preservation,No,Non Prevailing Wage,0,13,10,0,0,1,0,6,18,0,0,0,0,0,24,0,24,24 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19578,429,EAST 115 STREET,Manhattan,10029,1017090013,1053048,MN-11,8,178,MN34,40.794993,-73.935114,40.79507,-73.934648,08/31/2018,Preservation,No,Non Prevailing Wage,0,11,13,0,0,0,7,0,17,0,0,0,0,0,24,0,24,24 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19638,161,EAST 116 STREET,Manhattan,10029,1016440026,1052293,MN-11,8,182,MN34,40.798375,-73.941016,40.79861,-73.940864,09/30/2018,Preservation,No,Non Prevailing Wage,0,1,2,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19698,316,EAST 116 STREET,Manhattan,10029,1016870043,1052926,MN-11,8,188,MN34,40.796713,-73.937102,40.79637,-73.937023,11/30/2018,Preservation,No,Non Prevailing Wage,0,7,2,0,0,0,3,0,6,0,0,0,0,0,9,0,9,9 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19787,112,EAST 117 STREET,Manhattan,10035,1016440068,1052319,MN-11,8,182,MN34,40.799718,-73.942134,40.79956,-73.94233,05/31/2018,Preservation,No,Non Prevailing Wage,0,9,1,0,0,0,1,9,0,0,0,0,0,0,10,0,10,10 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19793,120,EAST 117 STREET,Manhattan,10035,1016440164,1052331,MN-11,8,182,MN34,40.799644,-73.941961,40.79944,-73.942048,05/31/2018,Preservation,No,Non Prevailing Wage,0,4,1,0,0,0,0,0,5,0,0,0,0,0,5,0,5,5 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19799,140,EAST 117 STREET,Manhattan,10035,1016440057,1052313,MN-11,8,182,MN34,40.79946,-73.941528,40.7992,-73.941485,05/31/2018,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,1,3,0,0,0,0,0,0,4,0,4,4 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19808,155,EAST 117 STREET,Manhattan,10035,1016450124,1052360,MN-11,8,182,MN34,40.799105,-73.94064,40.79927,-73.940484,05/31/2018,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,19843,212,EAST 117 STREET,Manhattan,10035,1016660041,1052594,MN-11,8,188,MN34,40.798396,-73.938997,40.79815,-73.939001,01/31/2018,Preservation,No,Non Prevailing Wage,1,3,10,0,0,0,0,3,1,8,2,0,0,0,14,0,14,14 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,20135,210,EAST 119 STREET,Manhattan,10035,1017830042,1054541,MN-11,8,188,MN34,40.799672,-73.938093,40.7994,-73.938075,11/30/2018,Preservation,No,Non Prevailing Wage,0,10,3,0,0,0,8,4,1,0,0,0,0,0,13,0,13,13 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,20397,224,EAST 122 STREET,Manhattan,10035,1017860039,1079434,MN-11,8,194,MN34,40.801455,-73.936513,40.80115,-73.936369,11/30/2018,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,20430,129,EAST 123 STREET,Manhattan,10035,1017720013,1054430,MN-11,9,196,MN34,40.803287,-73.938859,40.80343,-73.938649,08/31/2018,Preservation,No,Non Prevailing Wage,0,12,5,0,0,1,6,1,11,0,0,0,0,0,18,0,18,18 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,20493,154,EAST 124 STREET,Manhattan,10035,1017720150,1054457,MN-11,8,196,MN34,40.803503,-73.937468,40.80336,-73.937714,08/31/2018,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,8,0,0,0,0,0,0,0,8,0,8,8 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,20495,156,EAST 124 STREET,Manhattan,10035,1017720050,1054446,MN-11,8,196,MN34,40.803484,-73.937428,40.80333,-73.937649,10/31/2018,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,24002,1691,LEXINGTON AVENUE,Manhattan,10029,1016340024,1052025,MN-11,8,172,MN33,40.792397,-73.946157,40.79228,-73.945937,10/31/2018,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,1,5,0,0,0,0,0,0,6,0,6,6 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,24098,2026,LEXINGTON AVENUE,Manhattan,10035,1017720055,1054448,MN-11,9,196,MN34,40.803259,-73.938248,40.80346,-73.9384,12/31/2018,Preservation,No,Non Prevailing Wage,1,13,2,0,0,0,0,4,12,0,0,0,0,0,16,0,16,16 +58891,HOPE EAST OF FIFTH HDFC INC.YR15.FY17,Multifamily Finance Program,12/28/2016,12/31/2018,24685,1618,MADISON AVENUE,Manhattan,10029,1016140014,1051581,MN-11,9,17401,MN33,40.795008,-73.948495,40.79512,-73.948737,09/30/2018,Preservation,No,Non Prevailing Wage,0,6,2,0,0,0,0,0,4,4,0,0,0,0,8,0,8,8 +63369,Brighton Houses Coop,Multifamily Finance Program,12/28/2016,,213417,500,BRIGHTWATER COURT,Brooklyn,11235,3086900091,3245104,BK-13,48,36002,BK19,40.575745,-73.962217,40.57542,-73.962095,,Preservation,No,Non Prevailing Wage,0,0,0,0,193,0,0,96,97,0,0,0,0,0,0,193,193,193 +60505,545 EAST 166TH ST,Small Homes Program,12/27/2016,09/17/2019,975132,545,EAST 166 STREET,Bronx,10456,2026080060,2129288,BX-03,16,185,BX35,40.828226,-73.90659,40.82838,-73.906525,09/17/2019,New Construction,No,Non Prevailing Wage,8,8,24,0,0,1,4,25,12,0,0,0,0,0,41,0,41,41 +63717,CONFIDENTIAL,Homeowner Assistance Program,12/27/2016,12/27/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,12/27/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52774,JAMAICA CROSSING (HIGH-RISE),Multifamily Finance Program,12/22/2016,,974242,147-40,ARCHER AVENUE,Queens,11435,4099980091,4214004,QN-12,27,208,QN61,40.700836,-73.806551,40.70053,-73.806783,,New Construction,No,Non Prevailing Wage,0,0,90,0,448,1,98,202,217,22,0,0,0,0,539,0,539,539 +52775,JAMAICA CROSSING (MID-RISE),Multifamily Finance Program,12/22/2016,,974241,148-10,ARCHER AVENUE,Queens,11435,4099980091,,QN-12,27,208,QN61,40.70098,-73.805869,40.70053,-73.806783,,New Construction,No,Non Prevailing Wage,0,26,78,25,0,1,12,46,60,12,0,0,0,0,130,0,130,130 +58955,STORY AVENUE WEST,Multifamily Finance Program,12/22/2016,09/30/2019,968078,1520,STORY AVENUE,Bronx,10473,2036230010,2128970,BX-09,17,28,BX09,40.821517,-73.878714,40.82081,-73.87899,09/30/2019,New Construction,No,Non Prevailing Wage,20,20,139,44,0,0,34,86,69,34,0,0,0,0,223,0,223,223 +60779,888 FOUNTAIN AVENUE BUILDING A2,Multifamily Finance Program,12/22/2016,,974205,911,ERSKINE STREET,Brooklyn,11239,3045867501,,BK-05,42,1070,BK82,40.655151,-73.867703,40.65395,-73.86679,,New Construction,No,Non Prevailing Wage,27,80,159,0,0,1,40,121,64,42,0,0,0,0,267,0,267,267 +58829,JDD COURT HDFC,Multifamily Finance Program,12/21/2016,02/08/2018,64797,576,EAST 165 STREET,Bronx,10456,2026220005,2004395,BX-03,16,185,BX35,40.825695,-73.906615,40.82551,-73.906944,02/08/2018,Preservation,No,Non Prevailing Wage,15,45,7,0,0,1,0,14,49,5,0,0,0,0,68,0,68,68 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811250,105,BEACH 56 PLACE,Queens,11692,4159260001,4459312,QN-14,31,97202,QN12,40.59106,-73.78614,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,40,0,0,0,4,10,15,9,1,1,0,0,40,0,40,40 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811251,119,BEACH 56 PLACE,Queens,11692,4159260001,4459310,QN-14,31,97202,QN12,40.591167,-73.786154,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,40,0,0,0,4,10,15,9,1,1,0,0,40,0,40,40 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811252,129,BEACH 56 PLACE,Queens,11692,4159260001,4459308,QN-14,31,97202,QN12,40.591241,-73.786161,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,32,0,0,0,3,8,12,8,1,0,0,0,32,0,32,32 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811253,141,BEACH 56 PLACE,Queens,11692,4159260001,4459306,QN-14,31,97202,QN12,40.591332,-73.786172,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,217,0,0,0,21,53,82,51,5,5,0,0,217,0,217,217 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811254,102,BEACH 59 STREET,Queens,11692,4159260001,4459313,QN-14,31,97202,QN12,40.590099,-73.7887,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,56,0,0,0,6,14,21,13,1,1,0,0,56,0,56,56 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811255,116,BEACH 59 STREET,Queens,11692,4159260001,4459311,QN-14,31,97202,QN12,40.5902,-73.78871,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,16,0,0,0,2,4,6,4,0,0,0,0,16,0,16,16 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811256,122,BEACH 59 STREET,Queens,11692,4159260001,4459309,QN-14,31,97202,QN12,40.590244,-73.788714,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,40,0,0,0,4,10,15,9,1,1,0,0,40,0,40,40 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811257,132,BEACH 59 STREET,Queens,11692,4159260001,4459307,QN-14,31,97202,QN12,40.590318,-73.788721,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,32,0,0,0,3,8,12,8,1,0,0,0,32,0,32,32 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811258,146,BEACH 59 STREET,Queens,11692,4159260001,4459305,QN-14,31,97202,QN12,40.59042,-73.788731,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,206,0,0,0,20,51,77,49,5,4,0,0,206,0,206,206 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811858,57-07,SHORE FRONT PARKWAY,Queens,11692,4159260001,4312847,QN-14,31,97202,QN12,40.589655,-73.78617,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,198,0,0,0,20,49,74,47,4,4,0,0,198,0,198,198 +63373,Arverne View Apartments (AKA Ocean Village),Multifamily Finance Program,12/21/2016,12/21/2016,811859,57-15,SHORE FRONT PARKWAY,Queens,11692,4159260001,4536731,QN-14,31,97202,QN12,40.589248,-73.787478,40.59071,-73.787495,12/21/2016,Preservation,Yes,Prevailing Wage,0,0,216,0,0,0,21,53,81,51,5,5,0,0,216,0,216,216 +63371,Scott Tower (HDC),Multifamily Finance Program,12/20/2016,,101663,3400,PAUL AVENUE,Bronx,10468,2032510420,2015444,BX-07,11,409,BX28,40.87719,-73.889569,40.87744,-73.888885,,Preservation,No,Non Prevailing Wage,0,0,0,0,352,0,2,60,206,84,0,0,0,0,0,352,352,352 +63553,CONFIDENTIAL,Homeowner Assistance Program,12/20/2016,12/20/2016,,----,----,Queens,,,,QN-12,31,,,,,,,12/20/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +59004,541 4TH AVENUE,Multifamily Incentives Program,12/15/2016,,970803,541,4 AVENUE,Brooklyn,11215,3010470003,3425443,BK-07,39,141,BK37,40.666645,-73.991799,40.66633,-73.99163,,New Construction,No,Non Prevailing Wage,0,0,26,0,0,0,7,11,8,0,0,0,0,0,26,0,26,134 +63737,CONFIDENTIAL,Homeowner Assistance Program,12/15/2016,12/15/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,12/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +63554,CONFIDENTIAL,Homeowner Assistance Program,12/14/2016,12/14/2016,,----,----,Brooklyn,,,,BK-08,36,,,,,,,12/14/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58926,517-525 WEST 45TH STREET (CURE),Multifamily Finance Program,12/13/2016,,33225,517,WEST 45 STREET,Manhattan,10036,1010740018,1083791,MN-04,3,129,MN15,40.762061,-73.99526,40.76222,-73.995098,,Preservation,No,Non Prevailing Wage,3,1,0,0,0,0,1,1,2,0,0,0,0,0,4,0,4,29 +61713,845 GRAND ST,Multifamily Incentives Program,12/09/2016,11/16/2017,966422,845,GRAND STREET,Brooklyn,11211,3029220047,3425540,BK-01,34,481,BK90,40.712187,-73.939783,40.7124,-73.939837,11/16/2017,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,6,2,0,0,0,0,0,8,0,8,40 +63716,CONFIDENTIAL,Homeowner Assistance Program,12/09/2016,12/09/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,12/09/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77227,1125,EVERGREEN AVENUE,Bronx,10472,2037370070,2023769,BX-09,17,52,BX55,40.826632,-73.880638,40.82627,-73.880833,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,31,8,0,0,0,0,0,39,0,39,40 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77229,1135,EVERGREEN AVENUE,Bronx,10472,2037370066,2023768,BX-09,17,52,BX55,40.826822,-73.880681,40.82657,-73.880905,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,31,8,0,0,0,0,0,39,0,39,39 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77230,1145,EVERGREEN AVENUE,Bronx,10472,2037370062,2023767,BX-09,17,52,BX55,40.827011,-73.880724,40.82688,-73.880977,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,31,8,0,0,0,0,0,39,0,39,40 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77231,1155,EVERGREEN AVENUE,Bronx,10472,2037370058,2023766,BX-09,17,52,BX55,40.8272,-73.88077,40.82718,-73.881045,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,31,8,0,0,0,0,0,39,0,39,39 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77233,1165,EVERGREEN AVENUE,Bronx,10472,2037370054,2023765,BX-09,17,52,BX55,40.82739,-73.880813,40.82748,-73.881117,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,38,0,0,0,0,30,8,0,0,0,0,0,38,0,38,39 +53557,EVERGREEN ESTATES,Multifamily Incentives Program,12/08/2016,12/08/2016,77234,1175,EVERGREEN AVENUE,Bronx,10472,2037370049,2023764,BX-09,17,52,BX55,40.827579,-73.880856,40.82779,-73.881185,12/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,31,8,0,0,0,0,0,39,0,39,39 +58793,PCMH. 500 GATES AVENUE,Multifamily Finance Program,12/08/2016,10/11/2018,974501,500,GATES AVENUE,Brooklyn,11216,3018140017,3426345,BK-03,36,265,BK75,40.686746,-73.945939,40.68653,-73.945799,10/11/2018,New Construction,No,Prevailing Wage,48,0,20,0,0,0,68,0,0,0,0,0,0,0,68,0,68,68 +61016,10 MONTIETH STREET,Multifamily Incentives Program,12/08/2016,06/05/2019,945941,10,MONTIETH STREET,Brooklyn,11206,3031410001,3426398,BK-04,34,391,BK78,40.701357,-73.936496,40.70121,-73.935746,06/05/2019,New Construction,No,Non Prevailing Wage,0,0,100,0,0,0,32,54,14,0,0,0,0,0,100,0,100,500 +63335,CONFIDENTIAL,Homeowner Assistance Program,12/07/2016,09/14/2017,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/14/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +63736,CONFIDENTIAL,Homeowner Assistance Program,12/05/2016,12/05/2016,,----,----,Queens,,,,QN-03,21,,,,,,,12/05/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58631,603 JACKSON AVENUE,Small Homes Program,11/30/2016,,967649,605,JACKSON AVENUE,Bronx,10455,2026230213,2091320,BX-01,8,73,BX34,40.814748,-73.908542,40.81482,-73.908849,,New Construction,No,Non Prevailing Wage,0,0,25,0,0,0,0,15,10,0,0,0,0,0,25,0,25,25 +63339,CONFIDENTIAL,Homeowner Assistance Program,11/30/2016,01/23/2017,,----,----,Queens,,,,QN-12,27,,,,,,,01/23/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +63225,CONFIDENTIAL,Homeowner Assistance Program,11/29/2016,03/24/2017,,----,----,Brooklyn,,,,BK-05,37,,,,,,,03/24/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +63274,CONFIDENTIAL,Homeowner Assistance Program,11/29/2016,11/29/2016,,----,----,Brooklyn,,,,BK-18,45,,,,,,,11/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,131213,76,5 AVENUE,Brooklyn,11217,3009340041,3018666,BK-06,39,12901,BK37,40.680691,-73.977574,40.68069,-73.977794,,Preservation,No,Non Prevailing Wage,2,3,1,0,0,0,3,0,3,0,0,0,0,0,6,0,6,6 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,208771,320,BERGEN STREET,Brooklyn,11217,3003890012,3005985,BK-02,33,127,BK38,40.683104,-73.981208,40.68298,-73.9815,06/11/2019,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,3,0,0,0,0,0,0,3,0,3,3 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,208772,322,BERGEN STREET,Brooklyn,11217,3003890013,3005986,BK-02,33,127,BK38,40.683082,-73.981154,40.68295,-73.981417,05/13/2019,Preservation,No,Non Prevailing Wage,2,8,0,0,0,1,3,3,5,0,0,0,0,0,11,0,11,11 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,208777,332,BERGEN STREET,Brooklyn,11217,3003890022,3005988,BK-02,33,127,BK38,40.682975,-73.980876,40.68276,-73.980938,,Preservation,No,Non Prevailing Wage,0,1,7,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,355781,643,PRESIDENT STREET,Brooklyn,11215,3009550052,3020075,BK-06,39,133,BK37,40.676066,-73.981614,40.67615,-73.981304,10/01/2018,Preservation,No,Non Prevailing Wage,1,7,2,0,0,0,0,10,0,0,0,0,0,0,10,0,10,10 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,383808,677,UNION STREET,Brooklyn,11215,3009520067,3019733,BK-06,39,131,BK37,40.677107,-73.982244,40.67736,-73.982215,03/28/2018,Preservation,No,Non Prevailing Wage,0,6,2,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,383810,680,UNION STREET,Brooklyn,11215,3009550039,3020066,BK-06,39,133,BK37,40.676689,-73.981206,40.67642,-73.98112,10/01/2018,Preservation,No,Non Prevailing Wage,0,7,3,0,0,0,1,9,0,0,0,0,0,0,10,0,10,10 +59031,FAC RENAISSANCE LP.YR15.FY17,Multifamily Finance Program,11/23/2016,,388137,579,WARREN STREET,Brooklyn,11217,3003950048,3006284,BK-02,33,127,BK38,40.681591,-73.981392,40.68172,-73.981122,07/12/2018,Preservation,No,Non Prevailing Wage,0,7,1,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +53555,CROTONA ESTATES,Multifamily Incentives Program,11/22/2016,11/22/2016,60008,1738,CROTONA PARK EAST,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,11/22/2016,Preservation,Yes,Non Prevailing Wage,0,0,50,0,0,0,0,17,27,5,1,0,0,0,50,0,50,51 +53555,CROTONA ESTATES,Multifamily Incentives Program,11/22/2016,11/22/2016,957476,1700,CROTONA PARK EAST,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,11/22/2016,Preservation,Yes,Non Prevailing Wage,0,0,102,0,0,0,0,56,25,16,5,0,0,0,102,0,102,103 +53556,LONGFELLOW AVENUE HDFC,Multifamily Incentives Program,11/22/2016,11/22/2016,92451,1690,LONGFELLOW AVENUE,Bronx,10460,2030100012,2010934,BX-03,17,161,BX75,40.835118,-73.884876,40.83527,-73.884489,11/22/2016,Preservation,Yes,Non Prevailing Wage,0,0,82,0,0,0,0,58,24,0,0,0,0,0,82,0,82,83 +53556,LONGFELLOW AVENUE HDFC,Multifamily Incentives Program,11/22/2016,11/22/2016,92452,1700,LONGFELLOW AVENUE,Bronx,10460,2030100017,2010935,BX-03,17,161,BX75,40.835236,-73.884807,40.83561,-73.884282,11/22/2016,Preservation,Yes,Non Prevailing Wage,0,0,53,0,0,0,0,42,11,0,0,0,0,0,53,0,53,55 +65099,2346 PROSPECT AVENUE,Multifamily Incentives Program,11/22/2016,04/03/2018,966205,2346,PROSPECT AVENUE,Bronx,10458,2031140044,2129001,BX-06,15,393,BX06,40.852806,-73.88315,40.85266,-73.882937,04/03/2018,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,4,5,0,0,0,0,0,9,0,9,41 +64617,CONFIDENTIAL,Homeowner Assistance Program,11/18/2016,12/07/2016,,----,----,Brooklyn,,,,BK-05,37,,,,,,,12/07/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +61736,"RIVERSIDE CENTER, BUILDING 4",Multifamily Incentives Program,11/16/2016,10/29/2019,974125,663,WEST 59 STREET,Manhattan,10019,,,MN-07,6,151,MN14,40.772373,-73.992223,,,10/29/2019,New Construction,No,Non Prevailing Wage,0,0,49,0,0,0,0,18,28,3,0,0,0,0,49,0,49,214 +61738,"RIVERSIDE CENTER, BUILDING 1",Multifamily Incentives Program,11/16/2016,10/29/2019,974124,400,WEST 61 STREET,Manhattan,10023,1011710154,1089723,MN-07,6,151,MN14,40.773366,-73.990772,40.77345,-73.991996,10/29/2019,New Construction,No,Non Prevailing Wage,0,0,156,0,0,0,32,31,93,0,0,0,0,0,156,0,156,646 +61741,"RIVERSIDE CENTER, BUILDING 3",Multifamily Incentives Program,11/16/2016,10/29/2019,983464,10,RIVERSIDE BOULEVARD,Manhattan,10069,1011710155,1089741,MN-07,6,151,MN14,40.774151,-73.991826,40.77295,-73.992505,10/29/2019,New Construction,No,Non Prevailing Wage,0,0,64,0,0,0,11,10,41,2,0,0,0,0,64,0,64,272 +63269,CONFIDENTIAL,Homeowner Assistance Program,11/16/2016,11/16/2016,,----,----,Bronx,,,,BX-07,14,,,,,,,11/16/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58697,MONTAGUE PIERREPONT APARTMENTS,Multifamily Incentives Program,11/15/2016,,967724,146,PIERREPONT STREET,Brooklyn,11201,3002440026,3424482,BK-02,33,9,BK09,40.69477,-73.991482,40.69445,-73.991598,,New Construction,No,Non Prevailing Wage,0,9,9,0,5,0,5,6,12,0,0,0,0,0,23,0,23,86 +63368,Marion Avenue Residence,Multifamily Incentives Program,11/10/2016,,94395,2681,MARION AVENUE,Bronx,10458,2032870094,2128449,BX-07,15,40502,BX05,40.865079,-73.890312,40.8655,-73.890348,,New Construction,No,Non Prevailing Wage,0,0,99,0,0,1,59,0,41,0,0,0,0,0,100,0,100,100 +63174,CONFIDENTIAL,Homeowner Assistance Program,11/08/2016,02/08/2017,,----,----,Queens,,,,QN-13,31,,,,,,,02/08/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65064,126 INDIA REALTY LLC,Multifamily Incentives Program,11/04/2016,10/16/2017,951678,126,INDIA STREET,Brooklyn,11222,3025400036,3413883,BK-01,33,565,BK76,40.732236,-73.955442,40.73206,-73.955121,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,1,1,0,0,0,0,0,0,2,0,2,8 +58658,LA CASA NUESTRA HDFC.YR15.FY17,Multifamily Finance Program,11/03/2016,,525,2334,1 AVENUE,Manhattan,10035,1018070047,1054881,MN-11,8,192,MN34,40.79838,-73.933659,40.79827,-73.933345,,Preservation,No,Non Prevailing Wage,6,3,0,0,0,0,0,0,1,4,0,0,4,0,9,0,9,9 +58658,LA CASA NUESTRA HDFC.YR15.FY17,Multifamily Finance Program,11/03/2016,,2544,1411,5 AVENUE,Manhattan,10029,1016210071,1051662,MN-11,9,184,MN34,40.800371,-73.946663,40.80026,-73.946364,,Preservation,No,Non Prevailing Wage,4,4,0,0,0,0,0,1,0,4,3,0,0,0,8,0,8,8 +58658,LA CASA NUESTRA HDFC.YR15.FY17,Multifamily Finance Program,11/03/2016,,18802,195,EAST 100 STREET,Manhattan,10029,1016280032,1051802,MN-11,8,166,MN33,40.787902,-73.947789,40.78815,-73.947832,,Preservation,No,Non Prevailing Wage,6,2,0,0,0,0,0,0,1,0,7,0,0,0,8,0,8,8 +58658,LA CASA NUESTRA HDFC.YR15.FY17,Multifamily Finance Program,11/03/2016,,19358,162,EAST 111 STREET,Manhattan,10029,1016380048,1052187,MN-11,8,172,MN33,40.795209,-73.943435,40.79504,-73.943605,,Preservation,No,Non Prevailing Wage,2,5,0,0,0,0,0,0,6,0,1,0,0,0,7,0,7,7 +58658,LA CASA NUESTRA HDFC.YR15.FY17,Multifamily Finance Program,11/03/2016,,19615,12,EAST 116 STREET,Manhattan,10029,1016210065,1051658,MN-11,9,184,MN34,40.800422,-73.945908,40.80009,-73.945854,,Preservation,No,Non Prevailing Wage,4,6,0,0,0,0,0,0,1,1,8,0,0,0,10,0,10,10 +63267,CONFIDENTIAL,Homeowner Assistance Program,11/01/2016,11/01/2016,,----,----,Queens,,,,QN-06,29,,,,,,,11/01/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +63271,CONFIDENTIAL,Homeowner Assistance Program,11/01/2016,11/01/2016,,----,----,Queens,,,,QN-12,28,,,,,,,11/01/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50386,304-306 EAST 8TH STREET HDFC,Multifamily Incentives Program,10/31/2016,10/31/2016,11231,304,EAST 8 STREET,Manhattan,10009,1003900009,1004704,MN-03,2,2602,MN28,40.725472,-73.98028,40.72523,-73.98029,10/31/2016,Preservation,Yes,Non Prevailing Wage,16,0,0,0,0,0,0,0,9,6,1,0,0,0,16,0,16,16 +58980,BRIDGE COMMUNITY,Multifamily Finance Program,10/28/2016,09/07/2018,197971,271,BAINBRIDGE STREET,Brooklyn,11233,3016820045,3047588,BK-03,36,381,BK61,40.681515,-73.926362,40.68177,-73.926052,09/07/2018,Preservation,No,Non Prevailing Wage,0,7,5,0,0,0,3,1,5,3,0,0,0,0,12,0,12,12 +58980,BRIDGE COMMUNITY,Multifamily Finance Program,10/28/2016,09/07/2018,197979,281,BAINBRIDGE STREET,Brooklyn,11233,3016830089,3047697,BK-03,41,381,BK61,40.681605,-73.925551,40.68183,-73.9255,09/07/2018,Preservation,No,Non Prevailing Wage,0,2,6,0,0,0,1,0,7,0,0,0,0,0,8,0,8,8 +58980,BRIDGE COMMUNITY,Multifamily Finance Program,10/28/2016,09/07/2018,197980,283,BAINBRIDGE STREET,Brooklyn,11233,3016830088,3047696,BK-03,41,381,BK61,40.681613,-73.925486,40.68184,-73.925414,09/07/2018,Preservation,No,Non Prevailing Wage,0,1,6,0,0,1,0,0,8,0,0,0,0,0,8,0,8,8 +58980,BRIDGE COMMUNITY,Multifamily Finance Program,10/28/2016,09/07/2018,197981,285,BAINBRIDGE STREET,Brooklyn,11233,3016830086,3047695,BK-03,41,381,BK61,40.681621,-73.925417,40.68186,-73.925323,09/07/2018,Preservation,No,Non Prevailing Wage,0,4,4,0,0,0,3,0,2,3,0,0,0,0,8,0,8,8 +63096,CONFIDENTIAL,Homeowner Assistance Program,10/28/2016,10/28/2016,,----,----,Bronx,,,,BX-03,17,,,,,,,10/28/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +63338,CONFIDENTIAL,Homeowner Assistance Program,10/27/2016,12/05/2016,,----,----,Brooklyn,,,,BK-17,45,,,,,,,12/05/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +61021,316 EAST 91ST STREET,Multifamily Incentives Program,10/26/2016,05/08/2019,18219,316,EAST 91 STREET,Manhattan,10128,1015530041,1050195,MN-08,5,154,MN32,40.780791,-73.948802,40.78043,-73.948532,05/08/2019,New Construction,No,Non Prevailing Wage,0,0,17,0,0,0,0,1,16,0,0,0,0,0,17,0,17,18 +57758,MANHATTANVILLE PHASE I,Multifamily Finance Program,10/21/2016,10/21/2016,967819,3595,BROADWAY,Manhattan,10031,1020947503,1083034,MN-09,7,233,MN04,40.828165,-73.949199,40.8283,-73.949528,10/21/2016,Preservation,Yes,Non Prevailing Wage,0,0,20,0,0,0,0,0,16,4,0,0,0,0,0,20,20,43 +63095,CONFIDENTIAL,Homeowner Assistance Program,10/21/2016,10/21/2016,,----,----,Queens,,,,QN-12,27,,,,,,,10/21/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65080,BELVEDERE LXVIII,Multifamily Incentives Program,10/21/2016,03/29/2017,956493,210,JAVA STREET,Brooklyn,11222,3025510030,,BK-01,33,575,BK76,40.731801,-73.952426,40.73162,-73.95208,03/29/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,10 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,513272,32-10,102 STREET,Queens,11369,4016960009,4041955,QN-03,21,365,QN27,40.758973,-73.86684,40.75915,-73.867027,02/26/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,522928,223-19,111 AVENUE,Queens,11429,4112060067,4241547,QN-13,27,580,QN34,40.706103,-73.733523,40.70628,-73.733043,11/03/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,528114,190-17,115 DRIVE,Queens,11412,4110330069,4237376,QN-12,27,526,QN08,40.694638,-73.7609,40.69473,-73.761225,01/18/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,529586,197-18,116 AVENUE,Queens,11412,4110690198,4238421,QN-12,27,530,QN08,40.695315,-73.755283,40.69519,-73.754804,01/31/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,531912,168-31,118 ROAD,Queens,11434,4123680053,4268028,QN-12,27,284,QN76,40.683839,-73.776789,40.68415,-73.776756,01/16/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,532806,168-32,119 AVENUE,Queens,11434,4123700016,4268090,QN-12,27,284,QN76,40.683414,-73.776052,40.68341,-73.775626,12/29/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,532963,198-14,119 AVENUE,Queens,11412,4126540007,4272735,QN-12,27,376,QN08,40.691266,-73.752734,40.69116,-73.752309,11/16/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,533227,171-48,119 ROAD,Queens,11434,4123750085,4268268,QN-12,27,282,QN08,40.684231,-73.77372,40.68454,-73.773062,11/15/2017,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,533654,177-19,120 AVENUE,Queens,11434,4124690137,4269360,QN-12,27,368,QN08,40.684972,-73.767101,40.68519,-73.767212,11/16/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,552683,222-33,143 ROAD,Queens,11413,4130860057,4281201,QN-13,31,682,QN66,40.66677,-73.754296,40.66674,-73.753586,02/13/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,553308,171-15,144 AVENUE,Queens,11434,4125940016,4271188,QN-12,31,330,QN02,40.668823,-73.769014,40.66895,-73.768299,03/27/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,565015,144-41,158 STREET,Queens,11434,4150130004,4296670,QN-13,31,306,QN03,40.665017,-73.779534,40.66447,-73.77963,01/31/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,568358,80-44,162 STREET,Queens,11432,4068560059,4148462,QN-08,24,1265,QN38,40.720157,-73.805261,40.71974,-73.805435,01/16/2018,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,584952,118-19,190 STREET,Queens,11412,4126050039,4271504,QN-12,27,394,QN08,40.690162,-73.76021,40.69022,-73.759968,12/14/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,594559,117-27,204 STREET,Queens,11412,4126340024,4272231,QN-12,27,384,QN08,40.695206,-73.748132,40.69481,-73.747676,02/27/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,597224,114-26,208 STREET,Queens,11411,4110260379,4237092,QN-13,27,516,QN34,40.701375,-73.746501,40.70119,-73.746718,01/16/2018,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,597766,89-55,208 STREET,Queens,11427,4105730043,4225490,QN-13,23,492,QN06,40.719646,-73.756132,40.71915,-73.755459,11/03/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,630308,177-48,BAISLEY BOULEVARD,Queens,11434,4124620012,4269190,QN-12,27,368,QN08,40.687144,-73.767573,40.68707,-73.767266,11/16/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +50424,SOUTHEASTERN QUEENS VACANT HOMES-CLUSTER I,Small Homes Program,10/19/2016,03/27/2018,655268,186-20,FOCH BOULEVARD,Queens,11412,4124380142,4268885,QN-12,27,366,QN08,40.690404,-73.764431,40.6904,-73.764049,11/16/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +63093,CONFIDENTIAL,Homeowner Assistance Program,10/13/2016,10/13/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,10/13/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,207180,825,BEDFORD AVENUE,Brooklyn,11205,3017340058,3048430,BK-03,33,1237,BK75,40.695657,-73.956347,40.69566,-73.95604,,Preservation,No,Non Prevailing Wage,2,0,2,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,247933,83,EAST 18 STREET,Brooklyn,11226,3050990037,3117105,BK-14,40,51002,BK42,40.649155,-73.963012,40.6492,-73.962655,,Preservation,No,Non Prevailing Wage,1,0,6,0,0,0,0,0,1,1,5,0,0,0,7,0,7,7 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,294186,892,FLUSHING AVENUE,Brooklyn,11206,3031390012,3071834,BK-04,34,391,BK78,40.702106,-73.936153,40.70193,-73.936074,,Preservation,No,Non Prevailing Wage,21,0,5,0,0,1,1,4,22,0,0,0,0,0,27,0,27,27 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,322143,368,LAFAYETTE AVENUE,Brooklyn,11238,3019480028,3055591,BK-02,35,231,BK69,40.688772,-73.960873,40.68857,-73.960671,,Preservation,No,Non Prevailing Wage,4,0,4,0,0,0,1,7,0,0,0,0,0,0,8,0,8,8 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,329197,72,LOTT STREET,Brooklyn,11226,3051270015,3117702,BK-17,40,794,BK95,40.647749,-73.954209,40.64781,-73.954432,,Preservation,No,Non Prevailing Wage,2,0,2,0,0,0,2,0,2,0,0,0,0,0,4,0,4,4 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,329199,74,LOTT STREET,Brooklyn,11226,3051270016,3117703,BK-17,40,794,BK95,40.647708,-73.954209,40.64776,-73.954429,,Preservation,No,Non Prevailing Wage,2,0,2,0,0,0,2,0,2,0,0,0,0,0,4,0,4,4 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,351171,165,PARK AVENUE,Brooklyn,11205,3020310057,3058003,BK-02,35,211,BK68,40.696228,-73.972831,40.69642,-73.972892,,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,2,7,0,0,0,0,0,0,9,0,9,9 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,388933,802,WASHINGTON AVENUE,Brooklyn,11238,3011730053,3029404,BK-08,35,207,BK64,40.673995,-73.963041,40.67401,-73.96338,,Preservation,No,Non Prevailing Wage,6,0,6,0,0,0,8,0,4,0,0,0,0,0,12,0,12,12 +49716,FSG DEVELOPMENT FCM - FSG REALTY LLC,Multifamily Finance Program,10/06/2016,,388945,840,WASHINGTON AVENUE,Brooklyn,11238,3011760098,3029544,BK-08,35,215,BK64,40.673037,-73.962854,40.67296,-73.963128,,Preservation,No,Non Prevailing Wage,5,1,7,0,0,0,3,3,7,0,0,0,0,0,13,0,13,13 +62990,CONFIDENTIAL,Homeowner Assistance Program,09/30/2016,09/30/2016,,----,----,Bronx,,,,BX-06,15,,,,,,,09/30/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62287,CONFIDENTIAL,Homeowner Assistance Program,09/29/2016,11/21/2016,,----,----,Queens,,,,QN-13,31,,,,,,,11/21/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +62989,CONFIDENTIAL,Homeowner Assistance Program,09/29/2016,09/29/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +62987,CONFIDENTIAL,Homeowner Assistance Program,09/28/2016,09/28/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,09/28/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +62988,CONFIDENTIAL,Homeowner Assistance Program,09/28/2016,09/28/2016,,----,----,Staten Island,,,,SI-03,51,,,,,,,09/28/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58302,305 E. 171ST STREET HDFC,Multifamily Finance Program,09/23/2016,,65391,305,EAST 171 STREET,Bronx,10457,2027840039,2007254,BX-04,16,225,BX14,40.838656,-73.909705,40.83872,-73.90956,,Preservation,No,Non Prevailing Wage,2,6,0,0,0,1,0,0,9,0,0,0,0,0,0,9,9,9 +62986,CONFIDENTIAL,Homeowner Assistance Program,09/23/2016,09/23/2016,,----,----,Queens,,,,QN-07,20,,,,,,,09/23/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58965,CONCERN. WEST 21ST STREET. CONEY ISLAND,Multifamily Finance Program,09/22/2016,07/01/2019,969652,3003,WEST 21 STREET,Brooklyn,11224,3070720001,3423863,BK-13,47,352,BK21,40.574252,-73.98756,40.5743,-73.987268,06/17/2019,New Construction,No,Prevailing Wage,82,0,52,0,0,1,82,27,20,6,0,0,0,0,135,0,135,135 +59740,COMMUNITY ACCESS.111 EAST 172ND STREET,Multifamily Finance Program,09/22/2016,06/19/2019,969539,111,EAST 172 STREET,Bronx,10452,2028350012,2129011,BX-04,14,209,BX63,40.841459,-73.914056,40.84167,-73.913691,06/19/2019,New Construction,No,Non Prevailing Wage,60,0,65,0,0,1,68,0,58,0,0,0,0,0,126,0,126,126 +62985,CONFIDENTIAL,Homeowner Assistance Program,09/21/2016,09/21/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/21/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65131,THE SUTTON,Multifamily Incentives Program,09/21/2016,05/14/2019,686,963,1 AVENUE,Manhattan,10022,1013450030,1039803,MN-06,4,98,MN19,40.755666,-73.964865,40.75578,-73.965165,05/14/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,23,0,2,8,13,0,0,0,0,0,23,0,23,114 +65115,116 WALTON LLC,Multifamily Incentives Program,09/20/2016,11/09/2017,387813,116,WALTON STREET,Brooklyn,11206,3022507502,3414244,BK-01,33,507,BK75,40.702999,-73.948065,40.70291,-73.947747,11/09/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,5 +62984,CONFIDENTIAL,Homeowner Assistance Program,09/16/2016,09/16/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/16/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62983,CONFIDENTIAL,Homeowner Assistance Program,09/15/2016,09/15/2016,,----,----,Staten Island,,,,SI-03,51,,,,,,,09/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65141,44-46 STANHOPE STREET,Multifamily Incentives Program,09/14/2016,07/25/2018,968921,44,STANHOPE STREET,Brooklyn,11221,3032650011,,BK-04,34,421,BK78,40.695784,-73.92525,40.69546,-73.925135,07/25/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,1,3,0,0,0,0,0,0,4,0,4,20 +62982,CONFIDENTIAL,Homeowner Assistance Program,09/12/2016,09/12/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/12/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65105,28-22 ASTORIA BOULEVARD APARTMENTS,Multifamily Incentives Program,09/12/2016,10/16/2017,956633,28-22,ASTORIA BOULEVARD,Queens,11102,4005967501,4615299,QN-01,22,69,QN71,40.770702,-73.92048,40.77031,-73.920199,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,3,3,0,0,0,0,0,0,6,0,6,25 +53484,GOTHAM RESIDENTIAL,Multifamily Incentives Program,09/09/2016,,965665,158,EAST 126 STREET,Manhattan,10035,1017747501,,MN-11,9,196,MN34,40.804779,-73.936318,40.80441,-73.936427,,New Construction,No,Non Prevailing Wage,0,0,47,0,0,0,14,28,5,0,0,0,0,0,47,0,47,233 +62978,CONFIDENTIAL,Homeowner Assistance Program,09/09/2016,09/09/2016,,----,----,Brooklyn,,,,BK-05,42,,,,,,,09/09/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62981,CONFIDENTIAL,Homeowner Assistance Program,09/09/2016,09/09/2016,,----,----,Brooklyn,,,,BK-11,44,,,,,,,09/09/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65098,2222 JACKSON AVENUE,Multifamily Incentives Program,09/09/2016,04/24/2019,970398,22-22,JACKSON AVENUE,Queens,11101,4000720073,4596261,QN-02,26,19,QN31,40.745405,-73.946686,40.74495,-73.946495,04/24/2019,New Construction,No,Non Prevailing Wage,0,0,35,0,0,0,10,16,6,3,0,0,0,0,35,0,35,175 +57533,CROWN GARDENS HOUSING CORPORATION,Multifamily Finance Program,09/08/2016,,355186,1238,PRESIDENT STREET,Brooklyn,11225,3012830001,3337867,BK-09,35,319,BK63,40.667965,-73.948817,40.66761,-73.949916,,Preservation,No,Non Prevailing Wage,3,229,6,0,0,1,26,91,90,32,0,0,0,0,0,239,239,239 +62976,CONFIDENTIAL,Homeowner Assistance Program,09/08/2016,09/08/2016,,----,----,Brooklyn,,,,BK-05,42,,,,,,,09/08/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62974,CONFIDENTIAL,Homeowner Assistance Program,09/06/2016,09/06/2016,,----,----,Queens,,,,QN-07,20,,,,,,,09/06/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +62973,CONFIDENTIAL,Homeowner Assistance Program,09/01/2016,09/01/2016,,----,----,Queens,,,,QN-12,27,,,,,,,09/01/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62178,CONFIDENTIAL,Homeowner Assistance Program,08/30/2016,10/14/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,10/14/2016,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +63013,CONFIDENTIAL,Homeowner Assistance Program,08/30/2016,08/30/2016,,----,----,Bronx,,,,BX-10,13,,,,,,,08/30/2016,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +62162,CONFIDENTIAL,Homeowner Assistance Program,08/26/2016,01/12/2017,,----,----,Bronx,,,,BX-12,12,,,,,,,01/12/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60049,West 204 Street Project,Multifamily Finance Program,08/24/2016,10/24/2018,43662,436,WEST 204 STREET,Manhattan,10034,1022000009,1079983,MN-12,10,299,MN01,40.862067,-73.919189,40.86206,-73.919767,07/03/2018,Preservation,No,Non Prevailing Wage,7,9,9,0,0,1,0,11,10,5,0,0,0,0,26,0,26,26 +60049,West 204 Street Project,Multifamily Finance Program,08/24/2016,10/24/2018,806009,428,WEST 204 STREET,Manhattan,10034,1022000009,1079981,MN-12,10,299,MN01,40.862026,-73.919087,40.86206,-73.919767,07/03/2018,Preservation,No,Non Prevailing Wage,6,11,8,1,0,0,0,11,10,5,0,0,0,0,26,0,26,26 +60049,West 204 Street Project,Multifamily Finance Program,08/24/2016,10/24/2018,806010,432,WEST 204 STREET,Manhattan,10034,1022000009,1079982,MN-12,10,299,MN01,40.862045,-73.919138,40.86206,-73.919767,10/24/2018,Preservation,No,Non Prevailing Wage,2,14,10,5,0,0,5,16,9,1,0,0,0,0,31,0,31,31 +63012,CONFIDENTIAL,Homeowner Assistance Program,08/24/2016,08/24/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/24/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55205,608 Franklin Avenue,Multifamily Incentives Program,08/23/2016,03/15/2018,966091,1036,DEAN STREET,Brooklyn,11238,3011427501,,BK-08,35,305,BK61,40.67766,-73.955919,40.67737,-73.955959,03/15/2018,New Construction,No,Non Prevailing Wage,0,0,24,0,0,0,1,20,3,0,0,0,0,0,24,0,24,120 +65077,AURUM,Multifamily Incentives Program,08/23/2016,11/29/2017,3491,2239,ADAM C POWELL BOULEVARD,Manhattan,10027,1019167503,1089304,MN-10,9,226,MN03,40.813213,-73.945219,40.81289,-73.944905,11/29/2017,New Construction,No,Non Prevailing Wage,0,0,0,0,23,0,0,11,12,0,0,0,0,0,23,0,23,115 +58992,775 Jennings St HDFC,Multifamily Finance Program,08/18/2016,09/19/2018,88707,775,JENNINGS STREET,Bronx,10459,2029620046,2010203,BX-03,16,151,BX35,40.831945,-73.896983,40.83209,-73.897008,09/19/2018,Preservation,No,Non Prevailing Wage,1,12,0,0,0,0,0,0,5,4,4,0,0,0,3,10,13,13 +63011,CONFIDENTIAL,Homeowner Assistance Program,08/18/2016,08/18/2016,,----,----,Brooklyn,,,,BK-11,44,,,,,,,08/18/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58823,404 QUINCY STREET,Multifamily Finance Program,08/17/2016,03/05/2018,381604,303,TOMPKINS AVENUE,Brooklyn,11216,3018100009,3050979,BK-03,36,265,BK75,40.68761,-73.944752,40.68754,-73.944446,03/05/2018,Preservation,No,Non Prevailing Wage,0,0,5,1,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +60361,81 Madison St.,Multifamily Finance Program,08/17/2016,,25115,81,MADISON STREET,Manhattan,10002,1002770004,1079222,MN-03,1,8,MN27,40.712156,-73.996108,40.71237,-73.99622,,Preservation,No,Non Prevailing Wage,2,2,16,0,0,0,0,20,0,0,0,0,0,0,20,0,20,20 +65139,6155 BROADWAY,Multifamily Incentives Program,08/12/2016,03/06/2018,51676,6155,BROADWAY,Bronx,10471,2058141191,2084350,BX-08,11,351,BX22,40.894911,-73.896604,40.89495,-73.896954,03/06/2018,New Construction,No,Non Prevailing Wage,0,0,9,0,0,0,0,4,5,0,0,0,0,0,9,0,9,44 +62996,CONFIDENTIAL,Homeowner Assistance Program,08/11/2016,08/11/2016,,----,----,Queens,,,,QN-11,23,,,,,,,08/11/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65094,1907 SOUTHERN BOULEVARD,Multifamily Incentives Program,08/11/2016,04/18/2018,110093,1907,SOUTHERN BOULEVARD,Bronx,10460,2029600003,2126987,BX-06,17,36502,BX17,40.841404,-73.885931,40.84163,-73.886213,04/18/2018,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,27 +65119,ORIGINAL ME-CO ENTERPRISES LTD,Multifamily Incentives Program,08/10/2016,09/09/2019,375598,303,STANHOPE STREET,Brooklyn,11237,3032590049,,BK-04,37,443,BK77,40.702523,-73.918657,40.70263,-73.918909,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,10 +62995,CONFIDENTIAL,Homeowner Assistance Program,08/08/2016,08/08/2016,,----,----,Queens,,,,QN-12,27,,,,,,,08/08/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65113,3677 WHITE PLAINS ROAD,Multifamily Incentives Program,08/08/2016,07/27/2018,966545,3677,WHITE PLAINS ROAD,Bronx,10467,2046470046,2128893,BX-12,12,378,BX44,40.880951,-73.864296,40.8813,-73.864881,07/27/2018,New Construction,No,Non Prevailing Wage,0,0,24,0,0,0,0,12,12,0,0,0,0,0,24,0,24,118 +52999,HANAC. 54-25 101 ST. CORONA SENIOR RESIDENCE,Multifamily Finance Program,08/05/2016,08/23/2018,956204,54-25,101 STREET,Queens,11368,4019390011,4607925,QN-04,21,44301,QN25,40.739797,-73.858846,40.74003,-73.858755,08/23/2018,New Construction,No,Prevailing Wage,67,0,0,0,0,1,6,61,1,0,0,0,0,0,68,0,68,68 +62994,CONFIDENTIAL,Homeowner Assistance Program,08/05/2016,08/15/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +63007,CONFIDENTIAL,Homeowner Assistance Program,08/05/2016,08/05/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/05/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62246,CONFIDENTIAL,Homeowner Assistance Program,08/03/2016,08/03/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,08/03/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65125,WEST END TOWERS,Multifamily Incentives Program,08/02/2016,01/16/2018,959023,53,WEST END AVENUE,Manhattan,10023,1011710063,1087719,MN-07,6,151,MN14,40.773764,-73.988894,40.77379,-73.989403,01/16/2018,Preservation,Yes,Non Prevailing Wage,0,0,0,0,50,0,32,15,3,0,0,0,0,0,50,0,50,1000 +59387,145 MADISON AVENUE,Multifamily Incentives Program,08/01/2016,10/26/2018,968963,145,MADISON AVENUE,Manhattan,10016,1008610059,1090760,MN-05,2,74,MN17,40.746236,-73.984059,40.74611,-73.983814,10/26/2018,New Construction,No,Non Prevailing Wage,0,7,7,0,4,0,8,10,0,0,0,0,0,0,18,0,18,70 +61937,CONFIDENTIAL,Homeowner Assistance Program,07/29/2016,07/29/2016,,----,----,Brooklyn,,,,BK-12,39,,,,,,,07/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,45441,953,ANDERSON AVENUE,Bronx,10452,2025070034,2091250,BX-04,8,189,BX26,40.831247,-73.92796,40.83128,-73.928271,07/31/2017,Preservation,No,Non Prevailing Wage,19,13,10,0,0,0,0,0,42,0,0,0,0,0,42,0,42,42 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,88599,820,JACKSON AVENUE,Bronx,10456,2026470005,2004594,BX-01,17,77,BX34,40.820236,-73.9062,40.8201,-73.905846,09/19/2017,Preservation,No,Non Prevailing Wage,19,39,2,0,0,1,2,36,23,0,0,0,0,0,61,0,61,61 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,91424,972-976,LEGGETT AVENUE,Bronx,10455,2026840068,2005098,BX-02,17,83,BX33,40.814922,-73.900052,40.81478,-73.90033,07/31/2017,Preservation,No,Non Prevailing Wage,22,23,0,0,0,1,0,9,23,14,0,0,0,0,46,0,46,46 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,120928,60,WEST 162 STREET,Bronx,10452,2025040021,2003034,BX-04,8,189,BX26,40.830838,-73.92834,40.83089,-73.92851,09/19/2017,Preservation,No,Non Prevailing Wage,21,20,3,0,0,1,0,41,1,3,0,0,0,0,45,0,45,45 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,125692,951,WOODYCREST AVENUE,Bronx,10452,2025110074,2003188,BX-04,8,189,BX26,40.831387,-73.928972,40.8315,-73.929199,07/31/2017,Preservation,No,Non Prevailing Wage,12,16,0,0,0,0,0,0,6,22,0,0,0,0,28,0,28,28 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,221264,280,EAST 91 STREET,Brooklyn,11212,3046450006,3101025,BK-17,41,882,BK96,40.657933,-73.924381,40.65785,-73.924651,07/31/2017,Preservation,No,Non Prevailing Wage,15,16,0,0,0,0,0,15,15,1,0,0,0,0,31,0,31,31 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,397332,1031,WINTHROP STREET,Brooklyn,11212,3046110038,3327786,BK-17,41,882,BK96,40.66053,-73.925376,40.66069,-73.925599,07/31/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,809908,1019,WINTHROP STREET,Brooklyn,11212,3046110038,3327787,BK-17,41,882,BK96,40.660355,-73.925647,40.66069,-73.925599,07/31/2017,Preservation,No,Non Prevailing Wage,31,4,0,0,0,0,0,31,4,0,0,0,0,0,35,0,35,35 +60431,Bronx Brooklyn HDFC,Multifamily Finance Program,07/28/2016,09/19/2017,839362,182,EAST 93 STREET,Brooklyn,11212,3046110038,3327785,BK-17,41,882,BK96,40.661063,-73.925408,40.66069,-73.925599,07/31/2017,Preservation,No,Non Prevailing Wage,0,32,1,0,0,1,0,0,32,2,0,0,0,0,34,0,34,34 +58945,Prince George Hotel,Multifamily Incentives Program,07/27/2016,03/14/2018,12812,10,EAST 28 STREET,Manhattan,10016,1008570066,1016894,MN-05,2,56,MN13,40.744384,-73.986615,40.74399,-73.986572,03/14/2018,Preservation,No,Non Prevailing Wage,0,0,415,0,0,0,415,0,0,0,0,0,0,0,415,0,415,416 +61721,CONFIDENTIAL,Homeowner Assistance Program,07/26/2016,07/26/2016,,----,----,Queens,,,,QN-12,28,,,,,,,07/26/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65140,607 WEST 161 STREET,Multifamily Incentives Program,07/26/2016,12/22/2017,965539,607,WEST 161 STREET,Manhattan,10032,1021370021,1090118,MN-12,7,245,MN36,40.836748,-73.943479,40.83702,-73.943584,12/22/2017,New Construction,No,Non Prevailing Wage,0,0,13,0,0,0,6,6,1,0,0,0,0,0,13,0,13,62 +61944,CONFIDENTIAL,Homeowner Assistance Program,07/25/2016,08/11/2016,,----,----,Queens,,,,QN-12,23,,,,,,,08/11/2016,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61935,CONFIDENTIAL,Homeowner Assistance Program,07/22/2016,07/22/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,07/22/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +61722,CONFIDENTIAL,Homeowner Assistance Program,07/20/2016,07/20/2016,,----,----,Bronx,,,,BX-10,13,,,,,,,07/20/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +61723,CONFIDENTIAL,Homeowner Assistance Program,07/20/2016,07/20/2016,,----,----,Queens,,,,QN-12,27,,,,,,,07/20/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61933,CONFIDENTIAL,Homeowner Assistance Program,07/13/2016,07/13/2016,,----,----,Queens,,,,QN-08,24,,,,,,,07/13/2016,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +61724,CONFIDENTIAL,Homeowner Assistance Program,07/08/2016,07/08/2016,,----,----,Brooklyn,,,,BK-05,37,,,,,,,07/08/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +61901,CONFIDENTIAL,Homeowner Assistance Program,07/07/2016,07/07/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,07/07/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58235,Phipps. 760-770 East Tremont.Lee Goodwin Residence,Multifamily Finance Program,07/06/2016,10/04/2018,104376,1950,PROSPECT AVENUE,Bronx,10457,2029560005,2010058,BX-06,17,36502,BX17,40.844146,-73.889205,40.84405,-73.888941,10/04/2018,Preservation,No,Prevailing Wage,60,0,0,0,0,1,44,16,1,0,0,0,0,0,61,0,61,61 +61898,CONFIDENTIAL,Homeowner Assistance Program,07/06/2016,07/06/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,07/06/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +52461,92 St. Nicholas Avenue HDFC,Multifamily Finance Program,07/01/2016,,28287,92,ST NICHOLAS AVENUE,Manhattan,10026,1018240055,1055039,MN-10,9,218,MN11,40.802102,-73.952567,40.80197,-73.952232,,Preservation,No,Non Prevailing Wage,7,36,12,0,0,1,0,1,0,6,49,0,0,0,13,43,56,56 +54984,610 WEST 178 ST. HDFC,Multifamily Finance Program,07/01/2016,,43339,608,WEST 178 STREET,Manhattan,10033,1021440038,1063548,MN-12,10,263,MN36,40.847508,-73.935554,40.84744,-73.936042,,Preservation,No,Non Prevailing Wage,2,15,5,0,0,0,0,0,7,11,4,0,0,0,22,0,22,22 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,58200,501,COMMONWEALTH AVENUE,Bronx,10473,2035190001,2021304,BX-09,18,20,BX09,40.814974,-73.86434,40.81493,-73.864611,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,31,0,0,0,0,0,31,0,0,0,0,0,0,31,0,31,31 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,58207,521,COMMONWEALTH AVENUE,Bronx,10473,2035190049,2021311,BX-09,18,20,BX09,40.815273,-73.864408,40.81541,-73.864726,07/01/2016,Preservation,Yes,Non Prevailing Wage,61,0,0,0,0,0,0,0,61,0,0,0,0,0,61,0,61,61 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,58217,539,COMMONWEALTH AVENUE,Bronx,10473,2035190042,2021310,BX-09,18,20,BX09,40.815545,-73.864473,40.81593,-73.864848,07/01/2016,Preservation,Yes,Non Prevailing Wage,61,0,0,0,0,0,0,0,61,0,0,0,0,0,61,0,61,61 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,58223,549,COMMONWEALTH AVENUE,Bronx,10473,2035190034,2021309,BX-09,18,20,BX09,40.815696,-73.864508,40.81641,-73.864962,07/01/2016,Preservation,Yes,Non Prevailing Wage,38,0,0,2,0,0,0,1,39,0,0,0,0,0,40,0,40,40 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,90418,1741,LACOMBE AVENUE,Bronx,10473,2035190005,2021305,BX-09,18,20,BX09,40.814557,-73.865078,40.81488,-73.864976,07/01/2016,Preservation,Yes,Non Prevailing Wage,4,17,26,12,0,0,0,59,0,0,0,0,0,0,59,0,59,59 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,107568,520,ROSEDALE AVENUE,Bronx,10473,2035190012,2021306,BX-09,18,20,BX09,40.814915,-73.865294,40.81536,-73.865087,07/01/2016,Preservation,Yes,Non Prevailing Wage,61,0,0,0,0,0,0,61,0,0,0,0,0,0,61,0,61,61 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,107569,540,ROSEDALE AVENUE,Bronx,10473,2035190020,2021307,BX-09,18,20,BX09,40.815274,-73.86538,40.81588,-73.865209,07/01/2016,Preservation,Yes,Non Prevailing Wage,36,0,0,0,0,0,0,36,0,0,0,0,0,0,36,0,36,36 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,107570,550,ROSEDALE AVENUE,Bronx,10473,2035190030,2021308,BX-09,18,20,BX09,40.815447,-73.865419,40.81636,-73.865324,07/01/2016,Preservation,Yes,Non Prevailing Wage,59,0,0,0,0,0,0,59,0,0,0,0,0,0,59,0,59,59 +59193,Academy Gardens LLC,Multifamily Finance Program,07/01/2016,07/01/2016,972702,501,COMMONWEALTH AVENUE,Bronx,10473,2035190001,2021304,BX-09,18,20,BX09,40.814974,-73.86434,40.81493,-73.864611,07/01/2016,Preservation,Yes,Non Prevailing Wage,59,0,0,0,0,0,0,0,59,0,0,0,0,0,59,0,59,59 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,25515,107,MORNINGSIDE AVENUE,Manhattan,10027,1019500064,1059285,MN-09,9,20901,MN09,40.810318,-73.954769,40.81028,-73.954426,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,25516,109,MORNINGSIDE AVENUE,Manhattan,10027,1019500063,1059284,MN-09,9,20901,MN09,40.810373,-73.954729,40.81034,-73.954382,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,25517,111,MORNINGSIDE AVENUE,Manhattan,10027,1019500062,1059283,MN-09,9,20901,MN09,40.810425,-73.954689,40.8104,-73.954342,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,28159,654,ST NICHOLAS AVENUE,Manhattan,10030,1020510029,1061048,MN-09,9,227,MN04,40.822556,-73.94545,40.82215,-73.945284,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,18,0,6,0,0,7,7,10,0,0,0,0,24,0,24,24 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,28324,36,ST NICHOLAS PLACE,Manhattan,10031,1020540025,1061171,MN-09,9,23501,MN04,40.828351,-73.9416,40.82829,-73.941235,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,14,1,0,0,0,6,1,8,0,0,0,0,0,15,0,15,15 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,38644,122,WEST 119 STREET,Manhattan,10026,1019030045,1057502,MN-10,9,220,MN11,40.804327,-73.949174,40.80426,-73.94959,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,4,0,0,0,0,0,1,3,0,0,0,0,0,4,0,4,4 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39531,457,WEST 125 STREET,Manhattan,10027,1019660042,1059533,MN-09,7,20901,MN09,40.812805,-73.95575,40.81302,-73.955544,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,16,0,0,0,5,5,0,6,0,0,0,0,16,0,16,16 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39663,361,WEST 126 STREET,Manhattan,10027,1019530010,1059330,MN-09,9,21303,MN06,40.811629,-73.952525,40.81187,-73.952557,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,19,0,0,1,0,10,10,0,0,0,0,0,0,20,0,20,20 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39664,363,WEST 126 STREET,Manhattan,10027,1019530009,1059329,MN-09,9,21303,MN06,40.811649,-73.952564,40.81191,-73.952636,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,20,0,0,0,0,11,9,0,0,0,0,0,0,20,0,20,20 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39666,367,WEST 126 STREET,Manhattan,10027,1019530007,1059327,MN-09,9,21303,MN06,40.811684,-73.952651,40.81197,-73.952795,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,9,0,0,0,0,0,9,0,0,0,0,0,0,9,0,9,9 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39672,39,WEST 126 STREET,Manhattan,10027,1017240019,1053554,MN-10,9,208,MN03,40.807656,-73.943088,40.80793,-73.943186,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39694,433,WEST 126 STREET,Manhattan,10027,1019670006,1059564,MN-09,7,21303,MN06,40.812923,-73.954633,40.81305,-73.954467,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,8,7,0,0,0,1,1,13,0,0,0,0,0,15,0,15,15 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39697,44,WEST 126 STREET,Manhattan,10027,1017230055,1053518,MN-10,9,200,MN11,40.807686,-73.943211,40.8076,-73.943591,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39702,464,WEST 126 STREET,Manhattan,10027,1019660104,1059558,MN-09,7,20901,MN09,40.813662,-73.955308,40.81351,-73.955529,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,3,16,0,0,0,2,0,6,6,5,0,0,0,19,0,19,19 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39830,364,WEST 127 STREET,Manhattan,10027,1019530055,1059357,MN-09,9,21303,MN06,40.812379,-73.952401,40.81215,-73.952455,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,4,0,0,4,0,0,3,3,0,2,0,0,0,8,0,8,8 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,39831,366,WEST 127 STREET,Manhattan,10027,1019530056,1059358,MN-09,9,21303,MN06,40.812395,-73.952437,40.81219,-73.952535,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,2,0,0,6,0,0,3,3,0,2,0,0,0,8,0,8,8 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,838109,452,ST NICHOLAS AVENUE,Manhattan,10027,1019580041,1059432,MN-10,9,215,MN03,40.815094,-73.948967,40.81529,-73.948533,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,10,0,0,0,0,0,0,6,4,0,0,0,0,10,0,10,10 +61660,ECDO Transfers to NYC JOE,Multifamily Finance Program,07/01/2016,07/01/2016,973005,521,WEST 144 STREET,Manhattan,10031,1020760021,1079491,MN-09,7,229,MN04,40.824907,-73.948898,40.82518,-73.948988,07/01/2016,Preservation,Yes,Non Prevailing Wage,0,0,14,0,1,0,0,2,8,0,5,0,0,0,15,0,15,15 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,331134,633,MADISON STREET,Brooklyn,11221,3016410068,,BK-03,36,293,BK35,40.686892,-73.931765,40.6871,-73.931887,09/07/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,0,1,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927191,22,VAN BUREN STREET,Brooklyn,11221,3017950015,,BK-03,36,263,BK75,40.689937,-73.944263,40.68969,-73.944393,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,1,0,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927618,666,GREENE AVENUE,Brooklyn,11221,3018010008,,BK-03,36,279,BK35,40.689469,-73.941797,40.68923,-73.942025,,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,1,0,0,0,1,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927624,716,LAFAYETTE AVENUE,Brooklyn,11221,3017910017,3425327,BK-03,36,263,BK75,40.69067,-73.944382,40.69044,-73.94444,05/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927625,718,LAFAYETTE AVENUE,Brooklyn,11221,3017910018,3425328,BK-03,36,263,BK75,40.690676,-73.944321,40.69044,-73.944375,05/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927626,720,LAFAYETTE AVENUE,Brooklyn,11221,3017910019,3425329,BK-03,36,263,BK75,40.690684,-73.944259,40.69045,-73.944306,05/13/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927981,494,GATES AVENUE,Brooklyn,11216,3018140015,3426344,BK-03,36,265,BK75,40.686697,-73.946354,40.68649,-73.946167,08/21/2019,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,1,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,927982,327,CLIFTON PLACE,Brooklyn,11216,3017890080,,BK-03,36,251,BK75,40.689254,-73.950333,40.68948,-73.950217,01/04/2020,New Construction,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,1,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,972362,461,TOMPKINS AVENUE,Brooklyn,11216,3018520009,3425165,BK-03,36,269,BK75,40.681604,-73.943553,40.68161,-73.943272,08/09/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +44285,VAN BUREN/GREENE,Small Homes Program,06/30/2016,,972363,463,TOMPKINS AVENUE,Brooklyn,11216,3018520008,,BK-03,36,269,BK75,40.681538,-73.943539,40.68156,-73.943261,05/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +48014,TBX901-RSE,Multifamily Finance Program,06/30/2016,07/16/2019,88674,625,JEFFERSON PLACE,Bronx,10456,2029350001,2009764,BX-03,16,149,BX35,40.833537,-73.90032,40.83363,-73.900244,11/27/2018,Preservation,No,Non Prevailing Wage,0,0,16,0,0,0,0,0,1,1,14,0,0,0,16,0,16,16 +48014,TBX901-RSE,Multifamily Finance Program,06/30/2016,07/16/2019,113781,3531,3 AVENUE,Bronx,10456,2023730043,2091169,BX-03,16,145,BX01,40.831472,-73.905653,40.83159,-73.905938,07/16/2019,Preservation,No,Non Prevailing Wage,0,0,14,0,0,0,2,9,3,0,0,0,0,0,14,0,14,14 +50157,346 Bergen Street,Small Homes Program,06/30/2016,,927198,344,BERGEN STREET,Brooklyn,11217,3003890028,,BK-02,33,127,BK38,40.682846,-73.980541,40.68259,-73.980501,,New Construction,No,Non Prevailing Wage,0,0,0,5,18,1,3,9,12,0,0,0,0,0,24,0,24,24 +52979,SUS. 1434 UNDERCLIFF AVE,Multifamily Finance Program,06/30/2016,12/06/2018,966154,1434,UNDERCLIFF AVENUE,Bronx,10452,2025370006,2128323,BX-04,16,201,BX26,40.844145,-73.925242,40.8438,-73.925185,12/06/2018,New Construction,No,Prevailing Wage,45,0,29,0,0,1,65,0,10,0,0,0,0,0,75,0,75,75 +54909,LIVONIA PHASE II SITES 6-8,Multifamily Finance Program,06/30/2016,09/26/2019,953939,453,HINSDALE STREET,Brooklyn,11207,3038180122,,BK-05,42,1130,BK85,40.663685,-73.898573,40.66392,-73.898205,09/26/2019,New Construction,No,Non Prevailing Wage,7,30,24,0,0,1,6,21,23,12,0,0,0,0,62,0,62,62 +54909,LIVONIA PHASE II SITES 6-8,Multifamily Finance Program,06/30/2016,09/26/2019,971874,487,LIVONIA AVENUE,Brooklyn,11207,3038000001,3346238,BK-05,42,1132,BK85,40.66398,-73.89929,40.66421,-73.899207,02/22/2019,New Construction,No,Non Prevailing Wage,9,20,60,0,0,1,15,42,18,15,0,0,0,0,90,0,90,90 +54909,LIVONIA PHASE II SITES 6-8,Multifamily Finance Program,06/30/2016,09/26/2019,972724,500,LIVONIA AVENUE,Brooklyn,11207,3038170020,,BK-05,42,1132,BK85,40.664015,-73.898933,40.66377,-73.899085,05/13/2019,New Construction,No,Non Prevailing Wage,8,22,60,0,0,0,15,42,18,15,0,0,0,0,90,0,90,90 +55249,ST. BARNABAS WELLNESS CARE & AFFORDABLE HOUSING,Multifamily Finance Program,06/30/2016,03/15/2019,972215,4439,3 AVENUE,Bronx,10457,2030487501,2127259,BX-06,15,37504,BX17,40.852134,-73.892766,40.85231,-73.893026,12/14/2018,New Construction,No,Non Prevailing Wage,0,50,82,0,0,1,20,62,34,17,0,0,0,0,133,0,133,133 +55249,ST. BARNABAS WELLNESS CARE & AFFORDABLE HOUSING,Multifamily Finance Program,06/30/2016,03/15/2019,989851,4511,3 AVENUE,Bronx,10457,2030517501,2128231,BX-06,15,385,BX01,40.853629,-73.891372,40.85384,-73.891813,03/15/2019,New Construction,No,Non Prevailing Wage,45,0,136,0,0,0,14,84,53,30,0,0,0,0,181,0,181,181 +55263,St. Albans Cycle Of Life,Multifamily Finance Program,06/30/2016,08/03/2018,966134,118-35,FARMERS BOULEVARD,Queens,11412,4126030063,4607300,QN-12,27,394,QN08,40.689392,-73.762087,40.68933,-73.761597,08/03/2018,New Construction,No,Non Prevailing Wage,8,20,38,0,0,1,0,33,34,0,0,0,0,0,67,0,67,67 +58015,284-298 East 162nd Street,Multifamily Finance Program,06/30/2016,07/20/2018,966812,294,EAST 162 STREET,Bronx,10451,2024217501,2128995,BX-04,17,173,BX14,40.826203,-73.916977,40.82597,-73.917194,07/20/2018,New Construction,No,Non Prevailing Wage,37,0,88,0,0,1,30,34,42,20,0,0,0,0,126,0,126,126 +58562,Lindville Housing,Multifamily Finance Program,06/30/2016,,100435,3555,OLINVILLE AVENUE,Bronx,10467,2046410016,2093522,BX-12,12,378,BX44,40.879075,-73.867634,40.87922,-73.86801,,Preservation,No,Non Prevailing Wage,0,142,0,0,0,1,0,9,47,52,35,0,0,0,0,143,143,143 +58733,3365 Third Avenue,Small Homes Program,06/30/2016,08/16/2018,968123,3365,3 AVENUE,Bronx,10456,2023700033,2129367,BX-03,16,185,BX35,40.82731,-73.907422,40.8274,-73.907849,08/16/2018,New Construction,No,Non Prevailing Wage,8,0,22,0,0,0,5,6,11,6,2,0,0,0,30,0,30,30 +59117,Fox Hill Apartments,Multifamily Finance Program,06/30/2016,01/18/2018,769124,141,PARK HILL AVENUE,Staten Island,10304,5028710001,5109250,SI-01,49,40,SI08,40.617098,-74.080763,40.61671,-74.081512,01/18/2018,Preservation,No,Non Prevailing Wage,102,0,6,10,0,0,16,77,25,0,0,0,0,0,118,0,118,118 +59117,Fox Hill Apartments,Multifamily Finance Program,06/30/2016,01/18/2018,812599,320,VANDERBILT AVENUE,Staten Island,10304,5028710001,5110026,SI-01,49,40,SI08,40.617482,-74.081499,40.61671,-74.081512,01/18/2018,Preservation,No,Non Prevailing Wage,100,31,0,0,0,0,12,60,59,0,0,0,0,0,131,0,131,131 +59117,Fox Hill Apartments,Multifamily Finance Program,06/30/2016,01/18/2018,812600,350,VANDERBILT AVENUE,Staten Island,10304,5028710001,5109251,SI-01,49,40,SI08,40.61683,-74.082384,40.61671,-74.081512,01/18/2018,Preservation,No,Non Prevailing Wage,94,16,5,0,0,0,17,37,61,0,0,0,0,0,115,0,115,115 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,28109,400,ST NICHOLAS AVENUE,Manhattan,10027,1019550026,1084066,MN-10,9,215,MN03,40.813701,-73.949922,40.81324,-73.949601,03/14/2018,Preservation,No,Non Prevailing Wage,108,0,0,0,0,0,0,108,0,0,0,0,0,0,108,0,108,108 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37876,24,WEST 111 STREET,Manhattan,10026,1015940050,1051401,MN-10,9,186,MN11,40.797885,-73.949764,40.79791,-73.950313,02/23/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37884,32,WEST 111 STREET,Manhattan,10026,1015940054,1051402,MN-10,9,186,MN11,40.79796,-73.949948,40.79803,-73.950609,02/23/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,12,0,12,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37885,40,WEST 111 STREET,Manhattan,10026,1015940058,1051403,MN-10,9,186,MN11,40.798036,-73.950132,40.79815,-73.950884,02/23/2018,Preservation,No,Non Prevailing Wage,0,25,0,0,0,0,0,25,0,0,0,0,0,0,25,0,25,25 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37886,46,WEST 111 STREET,Manhattan,10026,1015940061,1051404,MN-10,9,186,MN11,40.798094,-73.95027,40.79827,-73.951162,02/23/2018,Preservation,No,Non Prevailing Wage,25,0,0,0,0,0,0,0,25,0,0,0,0,0,25,0,25,25 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37892,52,WEST 111 STREET,Manhattan,10026,1015940065,1051405,MN-10,9,186,MN11,40.798152,-73.950407,40.79838,-73.95144,02/23/2018,Preservation,No,Non Prevailing Wage,25,0,0,0,0,0,0,25,0,0,0,0,0,0,25,0,25,25 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,37907,8,WEST 111 STREET,Manhattan,10026,1015940042,1078798,MN-10,9,186,MN11,40.797732,-73.949399,40.79771,-73.949836,02/23/2018,Preservation,No,Non Prevailing Wage,50,0,0,0,0,0,0,50,0,0,0,0,0,0,50,0,50,50 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,40784,602,WEST 135 STREET,Manhattan,10031,1020010038,1079744,MN-09,7,22302,MN06,40.820304,-73.955582,40.8203,-73.956287,02/23/2018,Preservation,No,Non Prevailing Wage,0,0,24,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,40789,618,WEST 135 STREET,Manhattan,10031,1020010050,1079752,MN-09,7,22302,MN06,40.820419,-73.955857,40.82058,-73.956962,03/14/2018,Preservation,No,Non Prevailing Wage,24,0,0,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,803906,2411,FREDERICK DOUGAL BOULEVARD,Manhattan,,,,MN-10,9,,,,,,,03/14/2018,Preservation,No,Non Prevailing Wage,97,0,0,0,0,0,0,97,0,0,0,0,0,0,97,0,97,97 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,805949,608,WEST 135 STREET,Manhattan,10031,1020010038,1079747,MN-09,7,22302,MN06,40.820348,-73.955687,40.8203,-73.956287,02/23/2018,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,805950,614,WEST 135 STREET,Manhattan,10031,1020010038,1079750,MN-09,7,22302,MN06,40.820392,-73.955788,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,943790,16,WEST 111 STREET,Manhattan,10026,1015940042,1078799,MN-10,9,186,MN11,40.797808,-73.949584,40.79771,-73.949836,02/23/2018,Preservation,No,Non Prevailing Wage,25,0,0,0,0,0,0,25,0,0,0,0,0,0,25,0,25,25 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,968803,604,WEST 135 STREET,Manhattan,10031,1020010038,1079745,MN-09,7,22302,MN06,40.820318,-73.955618,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,23,0,0,0,0,0,0,23,0,0,0,0,0,0,23,0,23,23 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,968804,606,WEST 135 STREET,Manhattan,10031,1020010038,1079746,MN-09,7,22302,MN06,40.820334,-73.955651,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,968805,610,WEST 135 STREET,Manhattan,10031,1020010038,1079748,MN-09,7,22302,MN06,40.820362,-73.955719,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,968806,612,WEST 135 STREET,Manhattan,10031,1020010038,1079749,MN-09,7,22302,MN06,40.820378,-73.955752,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,24,0,0,0,0,0,0,24,0,24,24 +59946,Tahl-Propp - AIMCO,Multifamily Finance Program,06/30/2016,03/14/2018,968807,616,WEST 135 STREET,Manhattan,10031,1020010038,1079751,MN-09,7,22302,MN06,40.820406,-73.955821,40.8203,-73.956287,03/14/2018,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,0,1,1 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,404642,20-11,18 STREET,Queens,11105,4008940002,4020316,QN-01,22,105,QN72,40.785258,-73.914837,40.78492,-73.914588,12/31/2017,Preservation,No,Non Prevailing Wage,50,0,10,0,0,0,0,1,59,0,0,0,0,0,60,0,60,60 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,405018,20-31,19 STREET,Queens,11105,4008930020,4020310,QN-01,22,105,QN72,40.784377,-73.914588,40.78395,-73.914506,12/31/2017,Preservation,No,Non Prevailing Wage,50,9,1,0,0,0,0,9,50,1,0,0,0,0,60,0,60,60 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,405889,20-11,20 STREET,Queens,11105,4008930050,4449482,QN-01,22,105,QN72,40.784165,-73.913621,40.78396,-73.913242,12/31/2017,Preservation,No,Non Prevailing Wage,50,8,2,0,0,0,0,4,52,4,0,0,0,0,60,0,60,60 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,405890,20-12,20 STREET,Queens,11105,4008930030,4020311,QN-01,22,105,QN72,40.784151,-73.913668,40.78443,-73.91391,12/31/2017,Preservation,No,Non Prevailing Wage,50,8,2,0,0,0,0,4,52,4,0,0,0,0,60,0,60,60 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,694855,20-05,SHORE BOULEVARD,Queens,11105,4008940075,4594754,QN-01,22,105,QN72,40.78569,-73.915609,40.78547,-73.91523,12/31/2017,Preservation,No,Non Prevailing Wage,50,1,7,2,0,0,0,0,60,0,0,0,0,0,60,0,60,60 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,694857,20-25,SHORE BOULEVARD,Queens,11105,4008940101,4594757,QN-01,22,105,QN72,40.785295,-73.915974,40.78488,-73.915794,12/31/2017,Preservation,No,Non Prevailing Wage,48,32,4,0,0,0,0,0,84,0,0,0,0,0,84,0,84,84 +60434,Marine Terrace Apartments,Multifamily Finance Program,06/30/2016,12/31/2017,948405,20-32,19 STREET,Queens,11105,4008940020,4594744,QN-01,22,105,QN72,40.784363,-73.914635,40.78443,-73.91517,12/31/2017,Preservation,No,Non Prevailing Wage,50,0,6,4,0,0,0,0,60,0,0,0,0,0,60,0,60,60 +61504,CONFIDENTIAL,Homeowner Assistance Program,06/30/2016,06/30/2016,,----,----,Bronx,,,,BX-11,12,,,,,,,06/30/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +61509,CONFIDENTIAL,Homeowner Assistance Program,06/30/2016,06/30/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/30/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +61522,CONFIDENTIAL,Homeowner Assistance Program,06/30/2016,08/02/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,08/02/2016,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61528,CONFIDENTIAL,Homeowner Assistance Program,06/30/2016,07/08/2016,,----,----,Queens,,,,QN-02,26,,,,,,,07/08/2016,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65111,11-07 WELLING COURT,Multifamily Incentives Program,06/30/2016,09/09/2019,703413,7-Nov,WELLING COURT,Queens,11102,4005070019,4617739,QN-01,22,81,QN71,40.771802,-73.933216,40.77171,-73.932887,09/09/2019,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,27 +44295,Van Sinderen Plaza,Multifamily Finance Program,06/29/2016,,965149,679,VAN SINDEREN AVENUE,Brooklyn,11207,3038500005,,BK-05,42,1132,BK85,40.659906,-73.899419,40.65974,-73.899178,,New Construction,No,Non Prevailing Wage,11,22,68,0,0,1,0,47,39,16,0,0,0,0,102,0,102,102 +44295,Van Sinderen Plaza,Multifamily Finance Program,06/29/2016,,965150,170,NEW LOTS AVENUE,Brooklyn,11207,,,BK-05,42,1132,BK85,40.659157,-73.899099,,,,New Construction,No,Non Prevailing Wage,7,11,10,0,0,0,0,3,16,9,0,0,0,0,28,0,28,28 +48643,BRIDGE.425 E 161ST ST. MELROSE SITE C SHLP PORTION,Multifamily Finance Program,06/29/2016,05/10/2018,972670,425,EAST 161 STREET,Bronx,10451,2023830039,2129267,BX-03,17,141,BX35,40.82398,-73.9131,40.82407,-73.912695,05/10/2018,New Construction,No,Prevailing Wage,58,0,0,0,0,1,59,0,0,0,0,0,0,0,59,0,59,59 +50411,LPC WAREHOUSE/ WILLIAMSBURG BRIDGEVIEW,Multifamily Finance Program,06/29/2016,04/04/2019,958174,105,SOUTH 5 STREET,Brooklyn,11249,3024437501,3424573,BK-01,34,549,BK73,40.711481,-73.96425,40.71181,-73.964275,02/25/2019,New Construction,No,Non Prevailing Wage,16,0,38,0,0,1,12,15,27,1,0,0,0,0,55,0,55,55 +50519,Randolph Houses Phase II,Multifamily Finance Program,06/29/2016,06/20/2018,38153,265,WEST 114 STREET,Manhattan,10026,1018300011,1055196,MN-10,9,218,MN11,40.802754,-73.955442,40.80288,-73.955189,06/20/2018,Preservation,No,Non Prevailing Wage,8,4,102,0,0,1,12,65,26,12,0,0,0,0,115,0,115,115 +55036,TLK Manor,Multifamily Finance Program,06/29/2016,07/29/2019,965812,944,ROGERS PLACE,Bronx,10459,2026990007,2129271,BX-02,17,12901,BX33,40.822312,-73.897837,40.82236,-73.897605,04/29/2019,New Construction,No,Non Prevailing Wage,7,0,31,0,0,0,5,20,8,5,0,0,0,0,38,0,38,38 +55036,TLK Manor,Multifamily Finance Program,06/29/2016,07/29/2019,968113,917,WESTCHESTER AVENUE,Bronx,10459,2026980075,2005371,BX-02,17,12901,BX33,40.82145,-73.898181,40.8218,-73.898115,07/29/2019,New Construction,No,Non Prevailing Wage,10,0,34,0,0,1,6,22,10,7,0,0,0,0,45,0,45,45 +57772,Douglaston.155-175 Friendship Lane. Seaview C,Multifamily Finance Program,06/29/2016,08/07/2018,967356,155,FRIENDSHIP LANE,Staten Island,10314,,,SI-02,50,181,SI24,40.595626,-74.130724,,,08/07/2018,New Construction,No,Prevailing Wage,80,0,0,0,0,1,41,39,1,0,0,0,0,0,81,0,81,81 +57772,Douglaston.155-175 Friendship Lane. Seaview C,Multifamily Finance Program,06/29/2016,08/07/2018,967357,175,FRIENDSHIP LANE,Staten Island,10314,,,SI-02,50,181,SI24,40.595753,-74.130505,,,08/07/2018,New Construction,No,Prevailing Wage,80,0,0,0,0,0,41,39,0,0,0,0,0,0,80,0,80,80 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,306817,165,HANCOCK STREET,Brooklyn,11216,3018330079,3052337,BK-03,36,249,BK75,40.682652,-73.949083,40.68284,-73.949324,,Preservation,No,Non Prevailing Wage,0,1,2,0,1,0,0,0,3,1,0,0,0,0,4,0,4,4 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,306841,188,HANCOCK STREET,Brooklyn,11216,3018380022,3052670,BK-03,36,249,BK75,40.682718,-73.948369,40.68249,-73.948293,,Preservation,No,Non Prevailing Wage,0,0,4,1,0,0,0,0,4,1,0,0,0,0,5,0,5,5 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,317083,273,JEFFERSON AVENUE,Brooklyn,11216,3018290078,3052046,BK-03,36,267,BK75,40.68371,-73.946392,40.6839,-73.946702,,Preservation,No,Non Prevailing Wage,0,0,1,1,1,0,0,1,1,1,0,0,0,0,3,0,3,3 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330821,246,MADISON STREET,Brooklyn,11216,3018230027,3051637,BK-03,36,249,BK75,40.6849,-73.948937,40.68467,-73.948937,,Preservation,No,Non Prevailing Wage,0,1,4,0,2,0,0,0,3,3,1,0,0,0,7,0,7,7 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330959,442,MADISON STREET,Brooklyn,11221,3018260018,3051785,BK-03,36,277,BK35,40.685884,-73.940387,40.68564,-73.94051,,Preservation,No,Non Prevailing Wage,0,1,2,1,1,1,0,3,3,0,0,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330961,446,MADISON STREET,Brooklyn,11221,3018260020,3051787,BK-03,36,277,BK35,40.685898,-73.940261,40.68567,-73.940326,,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,1,2,3,0,0,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330962,448,MADISON STREET,Brooklyn,11221,3018260021,3051788,BK-03,36,277,BK35,40.685906,-73.9402,40.68568,-73.940236,,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330965,452,MADISON STREET,Brooklyn,11221,3018260023,3051790,BK-03,36,277,BK35,40.68592,-73.940077,40.6857,-73.940045,,Preservation,No,Non Prevailing Wage,0,1,4,1,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,330972,464,MADISON STREET,Brooklyn,11221,3018260029,3051795,BK-03,36,277,BK35,40.685963,-73.939702,40.68576,-73.939482,,Preservation,No,Non Prevailing Wage,0,1,3,0,2,0,0,1,2,2,1,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,332727,851,MARCY AVENUE,Brooklyn,11216,3018290004,3051979,BK-03,36,267,BK75,40.684216,-73.946972,40.68423,-73.946702,,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,338936,396A,MONROE STREET,Brooklyn,11221,3018200032,3051494,BK-03,36,265,BK75,40.686363,-73.942727,40.68616,-73.942529,,Preservation,No,Non Prevailing Wage,0,0,3,0,1,0,0,4,0,0,0,0,0,0,4,0,4,4 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,358074,319,PUTNAM AVENUE,Brooklyn,11216,3018230081,3051646,BK-03,36,249,BK75,40.684164,-73.948948,40.68438,-73.948995,,Preservation,No,Non Prevailing Wage,0,1,2,1,1,0,0,0,4,0,1,0,0,0,5,0,5,5 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,358136,401,PUTNAM AVENUE,Brooklyn,11216,3018240056,3051695,BK-03,36,267,BK75,40.684588,-73.94527,40.68482,-73.945202,,Preservation,No,Non Prevailing Wage,0,0,4,2,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,358151,415,PUTNAM AVENUE,Brooklyn,11216,3018240049,3051688,BK-03,36,267,BK75,40.684643,-73.944805,40.68487,-73.944744,,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,358228,493,PUTNAM AVENUE,Brooklyn,11221,3018250042,3051746,BK-03,36,267,BK75,40.684985,-73.941834,40.68522,-73.941632,,Preservation,No,Non Prevailing Wage,0,1,2,0,1,0,0,0,4,0,0,0,0,0,4,0,4,4 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,381667,400,TOMPKINS AVENUE,Brooklyn,11216,3018340039,3052379,BK-03,36,267,BK75,40.683641,-73.94398,40.68355,-73.944251,,Preservation,No,Non Prevailing Wage,0,2,7,5,1,0,0,14,1,0,0,0,0,0,15,0,15,15 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,381669,404,TOMPKINS AVENUE,Brooklyn,11216,3018340042,3052381,BK-03,36,267,BK75,40.683451,-73.943944,40.68344,-73.94419,,Preservation,No,Non Prevailing Wage,0,0,6,1,0,0,0,7,0,0,0,0,0,0,7,0,7,7 +58589,Madison EDJ LLC,Multifamily Finance Program,06/29/2016,,381673,409,TOMPKINS AVENUE,Brooklyn,11216,3018350004,3052412,BK-03,36,267,BK75,40.683476,-73.943926,40.68355,-73.943696,,Preservation,No,Non Prevailing Wage,0,2,1,0,0,1,0,0,4,0,0,0,0,0,4,0,4,4 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,60011,1816,CROTONA PARK EAST,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,0,10,15,0,0,0,0,0,25,0,25,25 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93371,1346,LYMAN PLACE,Bronx,10459,2029700043,2010364,BX-03,16,125,BX35,40.829131,-73.896453,40.82927,-73.896247,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93374,1359,LYMAN PLACE,Bronx,10459,2029700034,2010362,BX-03,17,151,BX35,40.829318,-73.896507,40.82942,-73.896814,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,20,0,0,0,0,1,19,0,0,0,0,0,20,0,20,20 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93375,1360,LYMAN PLACE,Bronx,10459,2029700047,2010365,BX-03,16,125,BX35,40.829411,-73.896503,40.8296,-73.89629,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,15,0,0,0,0,1,14,0,0,0,0,0,15,0,15,15 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93376,1365,LYMAN PLACE,Bronx,10459,2029700031,2010361,BX-03,17,151,BX35,40.829549,-73.89655,40.82959,-73.896792,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,15,0,0,0,0,0,10,1,4,0,0,0,15,0,15,15 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93377,1366,LYMAN PLACE,Bronx,10459,2029700049,2010366,BX-03,16,125,BX35,40.829529,-73.896525,40.82977,-73.896286,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,28,0,0,0,0,3,22,3,0,0,0,0,28,0,28,28 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,93379,1370,LYMAN PLACE,Bronx,10459,2029700052,2010367,BX-03,16,125,BX35,40.829609,-73.896539,40.82993,-73.896264,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,110036,1327,SOUTHERN BOULEVARD,Bronx,10459,2029760092,2010493,BX-03,17,123,BX75,40.8311,-73.891485,40.83168,-73.891607,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,56,0,0,0,0,13,34,3,6,0,0,0,56,0,56,56 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,110042,1345,SOUTHERN BOULEVARD,Bronx,10459,2029760087,2010492,BX-03,17,123,BX75,40.831243,-73.891401,40.832,-73.891444,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,50,0,0,0,0,26,19,5,0,0,0,0,50,0,50,50 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,110045,1357,SOUTHERN BOULEVARD,Bronx,10459,2029760082,2100759,BX-03,17,123,BX75,40.831339,-73.891347,40.83228,-73.891201,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,39,0,0,0,0,9,16,7,7,0,0,0,39,0,39,39 +58608,DON L.W. RESYNDICATION,Multifamily Finance Program,06/29/2016,12/01/2017,111345,1389,STEBBINS AVENUE,Bronx,10459,2029640021,2010252,BX-03,16,153,BX75,40.83287,-73.894127,40.83272,-73.89438,12/01/2017,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,0,9,3,0,0,0,0,12,0,12,12 +60012,Norwood Gardens,Multifamily Finance Program,06/29/2016,04/11/2019,970105,410,EAST 203 STREET,Bronx,10467,2033307501,2129249,BX-07,11,425,BX43,40.870302,-73.877276,40.87008,-73.877403,01/15/2019,New Construction,No,Non Prevailing Wage,0,0,93,24,0,1,16,37,45,20,0,0,0,0,118,0,118,118 +61485,CONFIDENTIAL,Homeowner Assistance Program,06/29/2016,07/27/2016,,----,----,Manhattan,,,,MN-12,10,,,,,,,07/27/2016,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +61491,CONFIDENTIAL,Homeowner Assistance Program,06/29/2016,08/02/2016,,----,----,Queens,,,,QN-01,22,,,,,,,08/02/2016,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115643,1450,TOWNSEND AVENUE,Bronx,10452,2028440038,2008112,BX-04,16,223,BX63,40.84112,-73.915893,40.84108,-73.915589,04/03/2018,Preservation,No,Non Prevailing Wage,1,26,32,0,0,0,1,22,36,0,0,0,0,0,59,0,59,59 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115645,1465,TOWNSEND AVENUE,Bronx,10452,2028440021,2008110,BX-04,14,223,BX63,40.841331,-73.915766,40.84168,-73.915805,04/03/2018,Preservation,No,Non Prevailing Wage,2,53,49,1,0,1,0,32,51,23,0,0,0,0,106,0,106,106 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115648,1512,TOWNSEND AVENUE,Bronx,10452,2028450007,2092057,BX-04,14,209,BX63,40.842478,-73.914915,40.84222,-73.914778,04/03/2018,Preservation,No,Non Prevailing Wage,1,53,37,2,0,0,6,22,56,9,0,0,0,0,93,0,93,93 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115649,1530,TOWNSEND AVENUE,Bronx,10452,2028450017,2008122,BX-04,14,209,BX63,40.842804,-73.914683,40.84268,-73.914456,12/21/2017,Preservation,No,Non Prevailing Wage,2,29,23,0,0,1,2,19,29,5,0,0,0,0,55,0,55,55 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115650,1533,TOWNSEND AVENUE,Bronx,10452,2028460061,2008143,BX-04,14,209,BX63,40.842848,-73.914676,40.84274,-73.915067,04/03/2018,Preservation,No,Non Prevailing Wage,5,45,43,3,0,0,2,48,36,10,0,0,0,0,96,0,96,96 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115652,1550,TOWNSEND AVENUE,Bronx,10452,2028450020,2008123,BX-04,14,209,BX63,40.843166,-73.914423,40.84301,-73.914217,04/03/2018,Preservation,No,Non Prevailing Wage,1,27,28,3,0,1,7,5,36,12,0,0,0,0,60,0,60,60 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115653,1560,TOWNSEND AVENUE,Bronx,10452,2028450027,2008124,BX-04,14,209,BX63,40.843347,-73.914296,40.84335,-73.914007,12/21/2017,Preservation,No,Non Prevailing Wage,1,26,21,0,0,0,0,6,42,0,0,0,0,0,48,0,48,48 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,115656,1585,TOWNSEND AVENUE,Bronx,10452,2028470029,2008147,BX-04,14,22702,BX41,40.844176,-73.913727,40.84427,-73.913969,02/05/2018,Preservation,No,Non Prevailing Wage,4,27,18,0,0,0,0,18,30,1,0,0,0,0,49,0,49,49 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119047,1424,WALTON AVENUE,Bronx,10452,2028430079,2008102,BX-04,14,223,BX63,40.84009,-73.915551,40.84027,-73.915106,04/03/2018,Preservation,No,Non Prevailing Wage,2,35,31,0,0,0,1,23,39,5,0,0,0,0,68,0,68,68 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119052,1503,WALTON AVENUE,Bronx,10452,2028450001,2008121,BX-04,14,209,BX63,40.841753,-73.914388,40.84194,-73.914565,08/21/2018,Preservation,No,Non Prevailing Wage,0,31,21,2,0,0,6,11,32,5,0,0,0,0,54,0,54,54 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119055,1517,WALTON AVENUE,Bronx,10452,2028450077,2008131,BX-04,14,209,BX63,40.841991,-73.914218,40.84218,-73.914395,12/21/2017,Preservation,No,Non Prevailing Wage,0,16,13,1,0,0,1,8,14,7,0,0,0,0,30,0,30,30 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119056,1525,WALTON AVENUE,Bronx,10452,2028450070,2008130,BX-04,14,209,BX63,40.842126,-73.914124,40.84241,-73.914228,12/21/2017,Preservation,No,Non Prevailing Wage,2,30,20,2,0,0,0,26,22,6,0,0,0,0,54,0,54,54 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119064,1612,WALTON AVENUE,Bronx,10452,2028380004,2008021,BX-04,14,22702,BX41,40.843988,-73.912773,40.84407,-73.912441,08/21/2018,Preservation,No,Non Prevailing Wage,1,26,23,0,0,0,0,12,30,8,0,0,0,0,50,0,50,50 +58450,New Settlement Apartments,Multifamily Finance Program,06/28/2016,08/21/2018,119065,1615,WALTON AVENUE,Bronx,10452,2028470063,2008152,BX-04,14,22702,BX41,40.844027,-73.91277,40.84429,-73.912889,12/21/2017,Preservation,No,Non Prevailing Wage,1,35,34,1,0,0,7,17,41,6,0,0,0,0,71,0,71,71 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,58983,712,COURTLANDT AVENUE,Bronx,10451,2024010007,2001707,BX-01,17,67,BX34,40.820505,-73.917769,40.8204,-73.917483,,Preservation,No,Non Prevailing Wage,0,1,2,0,1,1,0,5,0,0,0,0,0,0,5,0,5,5 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,63861,367,EAST 151 STREET,Bronx,10455,2023980040,2001669,BX-01,17,67,BX34,40.817841,-73.918343,40.81802,-73.91823,,Preservation,No,Non Prevailing Wage,0,1,4,0,3,0,0,8,0,0,0,0,0,0,8,0,8,8 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,63863,389,EAST 151 STREET,Bronx,10455,2023980030,2001667,BX-01,17,67,BX34,40.817667,-73.917682,40.81783,-73.917555,,Preservation,No,Non Prevailing Wage,0,6,19,0,7,1,0,12,17,4,0,0,0,0,33,0,33,33 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,63867,415,EAST 151 STREET,Bronx,10455,2023740060,2001353,BX-01,17,67,BX34,40.817436,-73.916804,40.81756,-73.916439,,Preservation,No,Non Prevailing Wage,0,1,9,0,0,0,0,6,0,4,0,0,0,0,10,0,10,10 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,63868,417,EAST 151 STREET,Bronx,10455,2023740059,2001352,BX-01,17,67,BX34,40.817433,-73.916782,40.81754,-73.916352,,Preservation,No,Non Prevailing Wage,0,1,7,0,3,0,2,5,0,4,0,0,0,0,11,0,11,11 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,63895,408,EAST 152 STREET,Bronx,10455,2023740038,2001348,BX-01,17,67,BX34,40.818133,-73.916453,40.81787,-73.916345,,Preservation,No,Non Prevailing Wage,0,3,11,0,5,1,0,1,8,11,0,0,0,0,20,0,20,20 +58659,Melrose Estates,Multifamily Finance Program,06/28/2016,,95597,689,MELROSE AVENUE,Bronx,10455,2024010023,2001720,BX-01,17,67,BX34,40.819697,-73.916133,40.81977,-73.916328,,Preservation,No,Non Prevailing Wage,0,4,15,0,6,0,0,11,4,10,0,0,0,0,25,0,25,25 +58855,Lincoln Place,Multifamily Finance Program,06/28/2016,,326587,541,LINCOLN PLACE,Brooklyn,11238,3011780061,3029606,BK-08,35,217,BK61,40.671696,-73.958385,40.67197,-73.958442,,Preservation,No,Non Prevailing Wage,0,0,19,0,0,1,0,7,13,0,0,0,0,0,20,0,20,20 +58855,Lincoln Place,Multifamily Finance Program,06/28/2016,,326588,547,LINCOLN PLACE,Brooklyn,11238,3011780059,3029605,BK-08,35,217,BK61,40.671674,-73.958269,40.67194,-73.958276,,Preservation,No,Non Prevailing Wage,0,0,16,1,0,0,0,4,13,0,0,0,0,0,17,0,17,17 +58855,Lincoln Place,Multifamily Finance Program,06/28/2016,,326592,553,LINCOLN PLACE,Brooklyn,11238,3011780057,3029604,BK-08,35,217,BK61,40.671649,-73.958158,40.6719,-73.958118,,Preservation,No,Non Prevailing Wage,0,0,17,0,0,0,0,3,14,0,0,0,0,0,17,0,17,17 +58954,94-02 148th Street,Multifamily Finance Program,06/28/2016,09/24/2018,968125,94-02,148 STREET,Queens,11435,4099997501,4214016,QN-12,27,208,QN61,40.699522,-73.805228,40.69926,-73.805657,09/24/2018,New Construction,No,Non Prevailing Wage,0,15,80,150,134,1,112,185,83,0,0,0,0,0,380,0,380,380 +61623,CONFIDENTIAL,Homeowner Assistance Program,06/28/2016,01/23/2017,,----,----,Brooklyn,,,,BK-18,45,,,,,,,01/23/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972068,409,SCHROEDERS AVENUE,Brooklyn,11239,3044520221,3421569,BK-05,42,1070,BK82,40.653228,-73.876857,40.65344,-73.877005,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972071,411,SCHROEDERS AVENUE,Brooklyn,11239,3044520220,3421570,BK-05,42,1070,BK82,40.653259,-73.876789,40.65347,-73.876944,12/12/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972073,413,SCHROEDERS AVENUE,Brooklyn,11239,3044520219,3421571,BK-05,42,1070,BK82,40.653289,-73.87672,40.6535,-73.876879,11/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972074,415,SCHROEDERS AVENUE,Brooklyn,11239,3044520218,3421572,BK-05,42,1070,BK82,40.653319,-73.876652,40.65352,-73.876817,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972078,417,SCHROEDERS AVENUE,Brooklyn,11239,3044520217,3421573,BK-05,42,1070,BK82,40.653349,-73.876583,40.65355,-73.876752,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972080,1228,JEROME STREET,Brooklyn,11239,3044520215,3421575,BK-05,42,1070,BK82,40.653568,-73.876496,40.65369,-73.876979,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972081,1226,JEROME STREET,Brooklyn,11239,3044520214,3421576,BK-05,42,1070,BK82,40.653667,-73.876565,40.65377,-73.877008,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972082,1224,JEROME STREET,Brooklyn,11239,3044520213,3421577,BK-05,42,1070,BK82,40.653769,-73.876619,40.65383,-73.877033,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972083,1222,JEROME STREET,Brooklyn,11239,3044520212,3421578,BK-05,42,1070,BK82,40.653873,-73.876665,40.65388,-73.877051,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972084,1220,JEROME STREET,Brooklyn,11239,3044520211,3421579,BK-05,42,1070,BK82,40.65398,-73.876701,40.65393,-73.877065,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972087,1218,JEROME STREET,Brooklyn,11239,3044520210,3421580,BK-05,42,1070,BK82,40.654087,-73.876726,40.65399,-73.87708,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972088,1216,JEROME STREET,Brooklyn,11239,3044520209,3421581,BK-05,42,1070,BK82,40.654197,-73.876737,40.65404,-73.877087,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972089,1214,JEROME STREET,Brooklyn,11239,3044520208,3421582,BK-05,42,1070,BK82,40.654307,-73.87674,40.65412,-73.877105,12/13/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972090,1235,JEROME STREET,Brooklyn,11239,3044520240,3421558,BK-05,42,1070,BK82,40.653577,-73.876478,40.65363,-73.876262,12/07/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972097,1233,JEROME STREET,Brooklyn,11239,3044520241,3421559,BK-05,42,1070,BK82,40.653662,-73.876536,40.65368,-73.876298,12/07/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972098,1231,JEROME STREET,Brooklyn,11239,3044520242,3421560,BK-05,42,1070,BK82,40.653747,-73.876586,40.65373,-73.876334,12/07/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972099,1229,JEROME STREET,Brooklyn,11239,3044520243,3421561,BK-05,42,1070,BK82,40.653837,-73.876629,40.65378,-73.876366,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972109,1227,JEROME STREET,Brooklyn,11239,3044520244,3421562,BK-05,42,1070,BK82,40.653928,-73.876665,40.65382,-73.876402,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972111,1225,JEROME STREET,Brooklyn,11239,3044520245,3421563,BK-05,42,1070,BK82,40.654021,-73.87669,40.65387,-73.876442,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972117,1223,JEROME STREET,Brooklyn,11239,3044520246,3421564,BK-05,42,1070,BK82,40.654118,-73.876708,40.65392,-73.876467,12/07/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972118,1221,JEROME STREET,Brooklyn,11239,3044520247,3421565,BK-05,42,1070,BK82,40.654211,-73.876719,40.65397,-73.876503,12/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972119,1219,JEROME STREET,Brooklyn,11239,3044520248,3421566,BK-05,42,1070,BK82,40.654307,-73.876719,40.65403,-73.876535,12/07/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972123,728,WALKER STREET,Brooklyn,11239,3044520260,3421550,BK-05,42,1070,BK82,40.653856,-73.875649,40.65378,-73.875955,12/24/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972124,726,WALKER STREET,Brooklyn,11239,3044520259,3421551,BK-05,42,1070,BK82,40.653908,-73.875685,40.65384,-73.875995,12/24/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972125,724,WALKER STREET,Brooklyn,11239,3044520258,3421552,BK-05,42,1070,BK82,40.65396,-73.875721,40.65388,-73.876031,01/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972127,722,WALKER STREET,Brooklyn,11239,3044520257,3421553,BK-05,42,1070,BK82,40.654009,-73.87576,40.65393,-73.876067,12/24/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972128,720,WALKER STREET,Brooklyn,11239,3044520256,3421554,BK-05,42,1070,BK82,40.654062,-73.875796,40.65398,-73.876103,01/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972129,718,WALKER STREET,Brooklyn,11239,3044520255,3421555,BK-05,42,1070,BK82,40.654114,-73.875836,40.65402,-73.876135,01/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972130,716,WALKER STREET,Brooklyn,11239,3044520254,3421556,BK-05,42,1070,BK82,40.654166,-73.875872,40.65407,-73.876171,01/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972131,714,WALKER STREET,Brooklyn,11239,3044520253,3421557,BK-05,42,1070,BK82,40.654216,-73.875911,40.65414,-73.876221,05/28/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972132,412,SCHROEDERS AVENUE,Brooklyn,11239,3044520377,,BK-05,42,1070,BK82,40.653335,-73.876573,40.65316,-73.876483,01/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972133,414,SCHROEDERS AVENUE,Brooklyn,11239,3044520378,,BK-05,42,1070,BK82,40.653352,-73.876537,40.65319,-73.876418,01/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972136,416,SCHROEDERS AVENUE,Brooklyn,11239,3044520379,,BK-05,42,1070,BK82,40.653365,-73.8765,40.65322,-73.876353,01/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972137,418,SCHROEDERS AVENUE,Brooklyn,11239,3044520380,,BK-05,42,1070,BK82,40.653478,-73.876248,40.65325,-73.876284,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972138,420,SCHROEDERS AVENUE,Brooklyn,11239,3044520381,,BK-05,42,1070,BK82,40.653499,-73.876201,40.65327,-73.87622,01/03/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972139,422,SCHROEDERS AVENUE,Brooklyn,11239,3044520382,,BK-05,42,1070,BK82,40.653519,-73.876154,40.6533,-73.876155,01/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972140,424,SCHROEDERS AVENUE,Brooklyn,11239,3044520383,,BK-05,42,1070,BK82,40.65354,-73.876107,40.65334,-73.876054,01/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972141,430,SCHROEDERS AVENUE,Brooklyn,11239,3044520384,,BK-05,42,1070,BK82,40.653601,-73.87597,40.65339,-73.875927,04/08/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972142,432,SCHROEDERS AVENUE,Brooklyn,11239,3044520385,,BK-05,42,1070,BK82,40.65362,-73.875923,40.65343,-73.875841,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972143,434,SCHROEDERS AVENUE,Brooklyn,11239,3044520386,,BK-05,42,1070,BK82,40.653642,-73.87588,40.65346,-73.875772,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972144,436,SCHROEDERS AVENUE,Brooklyn,11239,3044520387,,BK-05,42,1070,BK82,40.653661,-73.875833,40.65348,-73.875707,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972146,438,SCHROEDERS AVENUE,Brooklyn,11239,3044520388,,BK-05,42,1070,BK82,40.65368,-73.875786,40.65351,-73.875642,04/12/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972149,442,SCHROEDERS AVENUE,Brooklyn,11239,3044520390,,BK-05,42,1070,BK82,40.653721,-73.875693,40.65356,-73.875509,02/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972169,444,SCHROEDERS AVENUE,Brooklyn,11239,3044520391,,BK-05,42,1070,BK82,40.653833,-73.875433,40.65359,-73.875444,05/22/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972170,446,SCHROEDERS AVENUE,Brooklyn,11239,3044520392,,BK-05,42,1070,BK82,40.653853,-73.87539,40.65362,-73.875379,04/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972171,448,SCHROEDERS AVENUE,Brooklyn,11239,3044520393,,BK-05,42,1070,BK82,40.653872,-73.875343,40.65364,-73.875311,03/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972172,450,SCHROEDERS AVENUE,Brooklyn,11239,3044520394,,BK-05,42,1070,BK82,40.653888,-73.875299,40.65367,-73.875246,01/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972173,452,SCHROEDERS AVENUE,Brooklyn,11239,3044520395,,BK-05,42,1070,BK82,40.653907,-73.875256,40.6537,-73.875181,03/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972175,454,SCHROEDERS AVENUE,Brooklyn,11239,3044520396,,BK-05,42,1070,BK82,40.653927,-73.875209,40.65373,-73.875116,01/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972176,456,SCHROEDERS AVENUE,Brooklyn,11239,3044520397,,BK-05,42,1070,BK82,40.653946,-73.875166,40.65375,-73.875047,02/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972177,458,SCHROEDERS AVENUE,Brooklyn,11239,3044520398,,BK-05,42,1070,BK82,40.653962,-73.875123,40.65378,-73.874982,02/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972178,460,SCHROEDERS AVENUE,Brooklyn,11239,3044520399,,BK-05,42,1070,BK82,40.653981,-73.875076,40.65381,-73.874917,01/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972179,462,SCHROEDERS AVENUE,Brooklyn,11239,3044520402,,BK-05,42,1070,BK82,40.654,-73.875032,40.65384,-73.874853,01/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972180,464,SCHROEDERS AVENUE,Brooklyn,11239,3044520403,,BK-05,42,1070,BK82,40.65402,-73.874989,40.65386,-73.874784,01/05/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972181,466,SCHROEDERS AVENUE,Brooklyn,11239,3044520404,,BK-05,42,1070,BK82,40.654036,-73.874946,40.65389,-73.874719,03/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972183,468,SCHROEDERS AVENUE,Brooklyn,11239,3044520405,,BK-05,42,1070,BK82,40.654055,-73.874899,40.65394,-73.874611,01/17/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972184,485,SCHROEDERS AVENUE,Brooklyn,,3044520463,,BK-05,42,,,,,40.6546,-73.874375,03/25/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972185,487,SCHROEDERS AVENUE,Brooklyn,,3044520462,,BK-05,42,,,,,40.65464,-73.874271,03/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972186,489,SCHROEDERS AVENUE,Brooklyn,,3044520461,,BK-05,42,,,,,40.65467,-73.874209,03/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972187,491,SCHROEDERS AVENUE,Brooklyn,,3044520459,,BK-05,42,,,,,40.65469,-73.874145,03/02/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972188,493,SCHROEDERS AVENUE,Brooklyn,,3044520458,,BK-05,42,,,,,40.65472,-73.87408,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972189,495,SCHROEDERS AVENUE,Brooklyn,,3044520457,,BK-05,42,,,,,40.65475,-73.874018,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972190,497,SCHROEDERS AVENUE,Brooklyn,,3044520456,,BK-05,42,,,,,40.65477,-73.873953,03/02/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972191,499,SCHROEDERS AVENUE,Brooklyn,,3044520455,,BK-05,42,,,,,40.6548,-73.873888,03/21/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972192,501,SCHROEDERS AVENUE,Brooklyn,,3044520454,,BK-05,42,,,,,40.65483,-73.873824,03/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972193,503,SCHROEDERS AVENUE,Brooklyn,,3044520453,,BK-05,42,,,,,40.65486,-73.873762,03/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972194,505,SCHROEDERS AVENUE,Brooklyn,,3044520452,,BK-05,42,,,,,40.65488,-73.873697,04/12/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972195,507,SCHROEDERS AVENUE,Brooklyn,,3044520451,,BK-05,42,,,,,40.65493,-73.873596,04/23/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972197,474,SCHROEDERS AVENUE,Brooklyn,11239,3044520406,,BK-05,42,1070,BK82,40.654113,-73.874766,40.654,-73.874477,04/08/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972198,476,SCHROEDERS AVENUE,Brooklyn,11239,3044520407,,BK-05,42,1070,BK82,40.654277,-73.874369,40.65404,-73.874384,02/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972200,478,SCHROEDERS AVENUE,Brooklyn,11239,3044520408,,BK-05,42,1070,BK82,40.654302,-73.874315,40.65407,-73.874315,02/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972201,480,SCHROEDERS AVENUE,Brooklyn,11239,3044520409,,BK-05,42,1070,BK82,40.654326,-73.874257,40.65409,-73.87425,02/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972202,482,SCHROEDERS AVENUE,Brooklyn,11239,3044520410,,BK-05,42,1070,BK82,40.654348,-73.874203,40.65412,-73.874185,02/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972203,484,SCHROEDERS AVENUE,Brooklyn,11239,3044520411,,BK-05,42,1070,BK82,40.654373,-73.874145,40.65415,-73.874117,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972207,486,SCHROEDERS AVENUE,Brooklyn,11239,3044520412,,BK-05,42,1070,BK82,40.654395,-73.874087,40.65418,-73.874052,02/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972208,488,SCHROEDERS AVENUE,Brooklyn,11239,3044520413,,BK-05,42,1070,BK82,40.654419,-73.874033,40.65421,-73.873987,03/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972209,490,SCHROEDERS AVENUE,Brooklyn,11239,3044520414,,BK-05,42,1070,BK82,40.654444,-73.873976,40.65424,-73.873922,03/20/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972210,492,SCHROEDERS AVENUE,Brooklyn,11239,3044520415,,BK-05,42,1070,BK82,40.654466,-73.873922,40.65426,-73.873853,03/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972211,494,SCHROEDERS AVENUE,Brooklyn,11239,3044520416,,BK-05,42,1070,BK82,40.654491,-73.873864,40.65429,-73.873789,03/04/2019,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972351,440,SCHROEDERS AVENUE,Brooklyn,11239,3044520389,,BK-05,42,1070,BK82,40.653702,-73.875739,40.65354,-73.875578,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,0,0,2,0,0,1,0,1,0,0,0,0,1,1,2,2 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972352,405,SCHROEDERS AVENUE,Brooklyn,11239,3044520223,3421567,BK-05,42,1070,BK82,40.653165,-73.876998,40.65338,-73.877124,08/23/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972353,407,SCHROEDERS AVENUE,Brooklyn,11239,3044520222,3421568,BK-05,42,1070,BK82,40.653198,-73.87693,40.65342,-73.877066,11/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53017,Nehemiah Spring Creek Homes at Gateway Estates 4A,Small Homes Program,06/27/2016,05/28/2019,972354,419,SCHROEDERS AVENUE,Brooklyn,11239,3044520216,3421574,BK-05,42,1070,BK82,40.653382,-73.876511,40.65358,-73.876684,11/17/2018,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58790,RBSCC.297 Wilson Ave. Plaza de los Ancianos,Multifamily Finance Program,06/27/2016,08/25/2016,396881,297,WILSON AVENUE,Brooklyn,11237,3033070004,3346536,BK-04,37,433,BK77,40.697004,-73.919201,40.6972,-73.918793,08/25/2016,Preservation,No,Non Prevailing Wage,94,0,0,0,0,1,28,67,0,0,0,0,0,0,95,0,95,95 +58887,EAST CHINATOWN HDFC,Multifamily Finance Program,06/27/2016,06/22/2017,21360,176,ELDRIDGE STREET,Manhattan,10002,1004150012,1077624,MN-03,1,18,MN27,40.720406,-73.990804,40.72033,-73.990584,06/22/2017,Preservation,No,Non Prevailing Wage,4,11,13,0,0,1,6,13,10,0,0,0,0,0,29,0,29,29 +58887,EAST CHINATOWN HDFC,Multifamily Finance Program,06/27/2016,06/22/2017,804767,180,ELDRIDGE STREET,Manhattan,10002,1004150012,1077623,MN-03,1,18,MN27,40.720538,-73.990736,40.72033,-73.990584,06/22/2017,Preservation,No,Non Prevailing Wage,1,14,10,0,0,0,6,8,11,0,0,0,0,0,25,0,25,25 +61481,CONFIDENTIAL,Homeowner Assistance Program,06/27/2016,06/27/2016,,----,----,Queens,,,,QN-12,28,,,,,,,06/27/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,307342,721,HANCOCK STREET,Brooklyn,11233,3016580092,3045992,BK-03,41,383,BK35,40.685324,-73.925839,40.6855,-73.926181,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,7,0,1,0,0,0,0,8,0,0,0,0,8,0,8,8 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,307343,723,HANCOCK STREET,Brooklyn,11233,3016580091,3045991,BK-03,41,383,BK35,40.685329,-73.925792,40.68552,-73.926069,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,1,6,0,1,0,0,0,0,8,0,0,0,0,8,0,8,8 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,317444,680,JEFFERSON AVENUE,Brooklyn,11221,3016560030,3045821,BK-03,36,295,BK35,40.685516,-73.930562,40.68529,-73.930483,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,10,17,0,8,1,8,17,0,8,3,0,0,0,36,0,36,36 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,317447,684,JEFFERSON AVENUE,Brooklyn,11221,3016560035,3045823,BK-03,36,295,BK35,40.685533,-73.930429,40.68533,-73.930169,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,4,8,0,0,0,12,0,0,0,0,0,0,0,12,0,12,12 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,317515,768,JEFFERSON AVENUE,Brooklyn,11221,3016580010,3045922,BK-03,41,383,BK35,40.686032,-73.926076,40.68577,-73.92635,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,4,0,2,0,0,0,0,8,0,0,0,0,8,0,8,8 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,331146,660,MADISON STREET,Brooklyn,11221,3016460017,3045202,BK-03,36,293,BK35,40.686884,-73.931693,40.68664,-73.931783,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,6,0,2,0,0,0,0,8,0,0,0,0,8,0,8,8 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,331152,668,MADISON STREET,Brooklyn,11221,3016460020,3045205,BK-03,36,293,BK35,40.686914,-73.931444,40.68668,-73.931451,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,4,0,2,0,0,0,4,4,0,0,0,0,8,0,8,8 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,358498,828,PUTNAM AVENUE,Brooklyn,11221,3016520019,3045546,BK-03,36,385,BK35,40.686498,-73.928531,40.68627,-73.92856,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,1,0,1,0,0,3,1,0,0,0,0,0,4,0,4,4 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,360415,186,MALCOLM X BOULEVARD,Brooklyn,11221,3016460039,3045217,BK-03,36,293,BK35,40.686938,-73.929868,40.68686,-73.93015,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,6,0,1,0,2,0,7,0,0,0,0,0,9,0,9,9 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,360424,201,MALCOLM X BOULEVARD,Brooklyn,11221,3016520006,3045533,BK-03,36,385,BK35,40.686144,-73.929692,40.68613,-73.929433,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,4,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,360426,205,MALCOLM X BOULEVARD,Brooklyn,11221,3016520005,3045532,BK-03,36,385,BK35,40.686032,-73.929667,40.68606,-73.929418,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,2,4,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52724,PUTNAM,Multifamily Finance Program,06/24/2016,06/24/2016,360427,206,MALCOLM X BOULEVARD,Brooklyn,11221,3016510041,3045499,BK-03,36,295,BK35,40.686257,-73.929736,40.6862,-73.930017,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,3,1,0,1,0,0,0,1,4,0,0,0,0,5,0,5,5 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,329067,165,LOTT AVENUE,Brooklyn,11212,3036150001,3256538,BK-16,42,916,BK81,40.658005,-73.907365,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,11,0,0,1,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,329068,193,LOTT AVENUE,Brooklyn,11212,3036160001,3252482,BK-16,42,920,BK81,40.658147,-73.906428,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,36,0,0,0,0,36,0,0,0,0,0,0,36,0,36,36 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,808983,200,NEWPORT STREET,Brooklyn,11212,3036150001,3342610,BK-16,42,916,BK81,40.659521,-73.907785,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,808984,234,NEWPORT STREET,Brooklyn,11212,3036160001,3342622,BK-16,42,920,BK81,40.659707,-73.906548,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,808986,230,NEWPORT STREET,Brooklyn,11212,3036160001,3342623,BK-16,42,920,BK81,40.659685,-73.906693,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,809093,530,OSBORN STREET,Brooklyn,11212,3036160001,3342619,BK-16,42,920,BK81,40.658894,-73.906059,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,24,0,0,0,0,0,24,0,0,0,0,0,24,0,24,24 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,809298,841,ROCKAWAY AVENUE,Brooklyn,11212,3036150001,3342612,BK-16,42,916,BK81,40.659027,-73.908005,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,875692,520,OSBORN STREET,Brooklyn,11212,3036160001,3342620,BK-16,42,920,BK81,40.65908,-73.90611,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930129,206,NEWPORT STREET,Brooklyn,11212,3036150001,3342611,BK-16,42,916,BK81,40.659543,-73.907633,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930354,169,LOTT AVENUE,Brooklyn,11212,3036150001,3342605,BK-16,42,916,BK81,40.658036,-73.907181,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,12,0,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930359,173,THATFORD AVENUE,Brooklyn,11212,3036150001,3342606,BK-16,42,916,BK81,40.659389,-73.90714,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930360,179,THATFORD AVENUE,Brooklyn,11212,3036150001,3342607,BK-16,42,916,BK81,40.658313,-73.906864,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930367,861,ROCKAWAY AVENUE,Brooklyn,11212,3036150001,3342614,BK-16,42,916,BK81,40.658656,-73.907909,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,930369,851,ROCKAWAY AVENUE,Brooklyn,11212,3036150001,3342613,BK-16,42,916,BK81,40.65884,-73.907955,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,932895,210,THATFORD AVENUE,Brooklyn,11212,3036150001,3342609,BK-16,42,916,BK81,40.659389,-73.90714,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,932896,216,THATFORD AVENUE,Brooklyn,11212,3036150001,3342608,BK-16,42,916,BK81,40.658313,-73.906864,40.65877,-73.907462,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +60850,Newport Gardens HDFC,Multifamily Incentives Program,06/24/2016,06/24/2016,972694,510,OSBORN STREET,Brooklyn,11212,3036160001,3342621,BK-16,42,920,BK81,40.659264,-73.906156,40.65891,-73.906542,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +61418,Surf 21 Harborview (20160249),Multifamily Incentives Program,06/24/2016,,394585,2920,WEST 21 STREET,Brooklyn,11224,3070580013,3189551,BK-13,47,326,BK21,40.575781,-73.987872,40.57529,-73.988297,,Preservation,No,Prevailing Wage,0,0,189,33,0,2,22,66,66,58,12,0,0,0,224,0,224,224 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224168,143,COLUMBIA STREET,Brooklyn,11231,3003190025,3003578,BK-06,39,47,BK33,40.686907,-74.001781,40.68693,-74.001471,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,7,0,0,0,6,0,1,0,0,0,0,0,7,0,7,7 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224173,149,COLUMBIA STREET,Brooklyn,11231,3003190020,3003574,BK-06,39,47,BK33,40.686781,-74.001843,40.68673,-74.001605,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224175,151,COLUMBIA STREET,Brooklyn,11231,3003190019,3003573,BK-06,39,47,BK33,40.686739,-74.001864,40.68667,-74.001597,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224181,159,COLUMBIA STREET,Brooklyn,11231,3003190015,3003569,BK-06,39,47,BK33,40.686575,-74.001943,40.68647,-74.001691,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224188,165,COLUMBIA STREET,Brooklyn,11231,3003190011,3003565,BK-06,39,47,BK33,40.686448,-74.002001,40.68628,-74.001785,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +61435,SOUTH BROOKLYN RENEWAL PERMANENT AFFORDABILITY,Multifamily Incentives Program,06/24/2016,06/24/2016,224220,201,COLUMBIA STREET,Brooklyn,11231,3003300003,3004076,BK-06,39,51,BK33,40.685263,-74.002578,40.68518,-74.002322,06/24/2016,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +61622,CONFIDENTIAL,Homeowner Assistance Program,06/24/2016,10/21/2016,,----,----,Brooklyn,,,,BK-16,42,,,,,,,10/21/2016,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +50132,TMN906 - NMIC,Multifamily Finance Program,06/23/2016,05/28/2019,29016,273,WADSWORTH AVENUE,Manhattan,10033,1021660069,1063978,MN-12,10,271,MN35,40.85338,-73.932364,40.85331,-73.932057,05/28/2019,Preservation,No,Non Prevailing Wage,0,0,20,0,0,1,0,0,7,9,5,0,0,0,21,0,21,21 +51378,Stammtisch - Troutman,Multifamily Finance Program,06/23/2016,,381909,314,TROUTMAN STREET,Brooklyn,11237,3031870024,3072556,BK-04,34,427,BK77,40.704271,-73.925118,40.7042,-73.924837,,Preservation,No,Non Prevailing Wage,0,0,3,3,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +58638,491 Gerard Avenue,Multifamily Finance Program,06/23/2016,07/05/2018,973182,491,GERARD AVENUE,Bronx,10451,2023517501,2127104,BX-01,8,63,BX63,40.818285,-73.929528,40.81846,-73.929704,07/05/2018,New Construction,No,Non Prevailing Wage,23,0,130,0,0,0,51,58,29,15,0,0,0,0,153,0,153,153 +51581,590 Five Corp.,Multifamily Finance Program,06/22/2016,,64968,587,EAST 167 STREET,Bronx,10456,2026140061,2004293,BX-03,16,185,BX35,40.82871,-73.904634,40.82878,-73.904331,,Preservation,No,Non Prevailing Wage,3,7,64,4,0,1,7,56,10,6,0,0,0,0,79,0,79,79 +58480,Story Avenue East,Multifamily Finance Program,06/22/2016,,973555,1530,STORY AVENUE,Bronx,10473,2036230030,2127284,BX-09,17,28,BX09,40.821656,-73.877702,40.82095,-73.877945,,New Construction,No,Non Prevailing Wage,0,0,169,42,0,1,23,75,69,45,0,0,0,0,212,0,212,212 +60470,Omni - Plaza,Multifamily Finance Program,06/22/2016,06/22/2016,329071,23,NEW LOTS AVENUE,Brooklyn,11212,3036280001,3326600,BK-16,42,920,BK81,40.656943,-73.904044,40.65761,-73.904645,06/22/2016,Preservation,Yes,Non Prevailing Wage,135,14,236,0,0,0,0,86,188,59,52,0,0,0,385,0,385,385 +61121,CONFIDENTIAL,Homeowner Assistance Program,06/22/2016,06/22/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,06/22/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +61375,Sons of Italy Apartments,Multifamily Finance Program,06/20/2016,11/21/2016,228187,2629,CROPSEY AVENUE,Brooklyn,11214,3069110006,3187125,BK-13,43,314,BK26,40.589521,-73.99083,40.58977,-73.990405,11/21/2016,Preservation,No,Non Prevailing Wage,104,1,0,0,0,1,36,70,0,0,0,0,0,0,106,0,106,106 +65128,BUSHWICK PLACE VENTURE LLC,Multifamily Incentives Program,06/20/2016,06/26/2018,965810,83,BUSHWICK PLACE,Brooklyn,11206,3030730097,,BK-01,34,485,BK78,40.706417,-73.938959,40.70647,-73.938728,06/26/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,2,2,0,0,0,0,0,4,0,4,20 +61419,Target V (HDC),Multifamily Finance Program,06/17/2016,06/17/2016,81438,1971,GRAND AVENUE,Bronx,10453,2028690163,2008620,BX-05,14,243,BX36,40.852161,-73.910789,40.85221,-73.911042,06/17/2016,Preservation,Yes,Non Prevailing Wage,0,0,39,0,0,0,0,14,10,15,0,0,0,0,39,0,39,39 +61419,Target V (HDC),Multifamily Finance Program,06/17/2016,06/17/2016,81440,1975,GRAND AVENUE,Bronx,10453,2028690159,2008619,BX-05,14,243,BX36,40.852257,-73.910775,40.85252,-73.910959,06/17/2016,Preservation,Yes,Non Prevailing Wage,0,0,43,0,0,0,2,12,29,0,0,0,0,0,43,0,43,43 +61420,Grace Towers (HDC),Multifamily Finance Program,06/17/2016,06/17/2016,354100,2060,PITKIN AVENUE,Brooklyn,11207,3037370001,3328020,BK-05,42,1144,BK85,40.671791,-73.896506,40.67116,-73.896219,06/17/2016,Preservation,Yes,Non Prevailing Wage,0,0,84,0,0,0,0,18,42,18,6,0,0,0,84,0,84,84 +61420,Grace Towers (HDC),Multifamily Finance Program,06/17/2016,06/17/2016,807762,373,BELMONT AVENUE,Brooklyn,11207,3037370001,3328019,BK-05,42,1144,BK85,40.670567,-73.896003,40.67116,-73.896219,06/17/2016,Preservation,Yes,Non Prevailing Wage,0,0,84,0,0,0,0,18,42,18,6,0,0,0,84,0,84,84 +61452,CONFIDENTIAL,Homeowner Assistance Program,06/17/2016,06/17/2016,,----,----,Bronx,,,,BX-10,18,,,,,,,06/17/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +61465,CONFIDENTIAL,Homeowner Assistance Program,06/17/2016,06/17/2016,,----,----,Staten Island,,,,SI-03,51,,,,,,,06/17/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52115,125 BORINQUEN PLACE,Multifamily Incentives Program,06/16/2016,,953916,125,GRAND ST EXTENSION,Brooklyn,11211,3024110001,3425954,BK-01,34,513,BK73,40.710602,-73.95479,40.71094,-73.95445,,New Construction,No,Non Prevailing Wage,0,0,25,0,0,0,6,5,14,0,0,0,0,0,25,0,25,125 +61459,CONFIDENTIAL,Homeowner Assistance Program,06/16/2016,06/16/2016,,----,----,Queens,,,,QN-13,27,,,,,,,06/16/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65088,103 VARET MANAGEMENT LLC,Multifamily Incentives Program,06/16/2016,06/16/2016,958013,103,VARET STREET,Brooklyn,11206,3031060028,3251829,BK-01,34,491,BK90,40.703179,-73.941306,40.70338,-73.941363,06/16/2016,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,128902,148,4 AVENUE,Brooklyn,11217,3004130036,3006621,BK-06,33,127,BK38,40.67986,-73.981396,40.67997,-73.981699,09/10/2019,Preservation,No,Non Prevailing Wage,0,3,4,0,0,0,0,0,0,7,0,0,0,0,7,0,7,7 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,130195,141,5 AVENUE,Brooklyn,11217,3009470011,3019401,BK-06,39,131,BK37,40.678212,-73.97923,40.67816,-73.978981,10/01/2018,Preservation,No,Non Prevailing Wage,0,4,1,0,0,1,0,2,4,0,0,0,0,0,6,0,6,6 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,130199,147,5 AVENUE,Brooklyn,11217,3009470008,3019399,BK-06,39,131,BK37,40.678081,-73.979317,40.678,-73.979068,10/01/2018,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,2,4,0,0,0,0,0,6,0,6,6 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,130217,172,5 AVENUE,Brooklyn,11217,3009490046,3019561,BK-06,39,131,BK37,40.677501,-73.979731,40.67759,-73.979991,10/01/2018,Preservation,No,Non Prevailing Wage,0,5,1,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,132750,254,6 STREET,Brooklyn,11215,3009920032,3021559,BK-06,39,119,BK37,40.672515,-73.987967,40.67219,-73.987815,07/30/2019,Preservation,No,Non Prevailing Wage,0,4,4,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,138899,439,13 STREET,Brooklyn,11215,3010980052,3026397,BK-06,39,151,BK37,40.663643,-73.981819,40.66378,-73.98161,10/01/2018,Preservation,No,Non Prevailing Wage,0,4,3,1,0,0,3,2,3,0,0,0,0,0,8,0,8,8 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,208752,254,BERGEN STREET,Brooklyn,11217,3003870041,3005929,BK-02,33,71,BK38,40.684301,-73.98428,40.68402,-73.984186,10/01/2018,Preservation,No,Non Prevailing Wage,0,2,5,0,0,0,0,4,3,0,0,0,0,0,7,0,7,7 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,208755,258,BERGEN STREET,Brooklyn,11217,3003880009,3005964,BK-02,33,127,BK38,40.684037,-73.983602,40.68393,-73.983872,07/30/2019,Preservation,No,Non Prevailing Wage,0,3,4,0,0,0,0,0,7,0,0,0,0,0,7,0,7,7 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,211091,205,BOND STREET,Brooklyn,11217,3003990001,3006362,BK-06,33,71,BK38,40.683162,-73.987395,40.68313,-73.987143,10/01/2018,Preservation,No,Non Prevailing Wage,0,1,4,0,0,0,0,2,1,1,1,0,0,0,5,0,5,5 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,216349,190,BUTLER STREET,Brooklyn,11217,3004110011,3006598,BK-06,33,71,BK38,40.682353,-73.987514,40.68209,-73.987446,10/01/2018,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,0,2,0,1,1,0,0,0,4,0,4,4 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,365968,690,SACKETT STREET,Brooklyn,11217,3009520015,3019691,BK-06,39,131,BK37,40.67765,-73.981628,40.6775,-73.981812,10/01/2018,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,0,0,0,4,0,0,0,0,4,0,4,4 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,371080,421,SMITH STREET,Brooklyn,11231,3004680002,3008043,BK-06,39,77,BK33,40.677602,-73.996384,40.67754,-73.996139,,Preservation,No,Non Prevailing Wage,0,6,2,0,0,0,0,3,5,0,0,0,0,0,8,0,8,8 +52737,FAC RENAISSANCE HDFC,Multifamily Finance Program,06/15/2016,,810140,77,GARFIELD PLACE,Brooklyn,11215,3009620001,3337460,BK-06,39,133,BK37,40.674439,-73.981416,40.6747,-73.981459,10/01/2018,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +58792,KINGS BAY HOUSING CO. INC. II,Multifamily Finance Program,06/15/2016,11/19/2018,199381,2520,BATCHELDER STREET,Brooklyn,11235,3074470028,3320931,BK-15,48,596,BK17,40.591371,-73.937271,40.5907,-73.937919,11/19/2018,Preservation,No,Non Prevailing Wage,135,0,0,0,0,0,22,32,65,16,0,0,0,0,0,135,135,135 +58792,KINGS BAY HOUSING CO. INC. II,Multifamily Finance Program,06/15/2016,11/19/2018,807660,2965,AVENUE Z,Brooklyn,11235,3074470028,3320930,BK-15,48,596,BK17,40.589736,-73.938323,40.5907,-73.937919,11/19/2018,Preservation,No,Non Prevailing Wage,135,0,0,0,0,0,22,62,35,16,0,0,0,0,0,135,135,135 +58792,KINGS BAY HOUSING CO. INC. II,Multifamily Finance Program,06/15/2016,11/19/2018,807686,2540,BATCHELDER STREET,Brooklyn,11235,3074470028,3320928,BK-15,48,596,BK17,40.591069,-73.937213,40.5907,-73.937919,11/19/2018,Preservation,No,Non Prevailing Wage,135,0,0,0,0,0,22,32,65,16,0,0,0,0,0,135,135,135 +58792,KINGS BAY HOUSING CO. INC. II,Multifamily Finance Program,06/15/2016,11/19/2018,807687,2560,BATCHELDER STREET,Brooklyn,11235,3074470028,3320929,BK-15,48,596,BK17,40.590765,-73.93716,40.5907,-73.937919,11/19/2018,Preservation,No,Non Prevailing Wage,135,0,0,0,0,0,22,32,65,16,0,0,0,0,0,135,135,135 +61444,CONFIDENTIAL,Homeowner Assistance Program,06/15/2016,06/15/2016,,----,----,Queens,,,,QN-12,27,,,,,,,06/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +47868,211 West 147 Street,Multifamily Finance Program,06/14/2016,05/17/2018,42098,211,WEST 147 STREET,Manhattan,10039,1020330021,1060529,MN-10,9,234,MN03,40.823233,-73.938812,40.82356,-73.939043,05/17/2018,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,2,9,1,0,0,0,0,0,12,12,12 +61446,CONFIDENTIAL,Homeowner Assistance Program,06/14/2016,06/14/2016,,----,----,Bronx,,,,BX-09,17,,,,,,,06/14/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52734,Tremont Anthony,Multifamily Finance Program,06/13/2016,06/13/2016,45637,1911,ANTHONY AVENUE,Bronx,10457,2028090037,2007712,BX-05,15,23502,BX41,40.848979,-73.903188,40.84896,-73.903369,06/13/2016,Preservation,Yes,Non Prevailing Wage,0,5,8,0,4,0,1,0,8,4,4,0,0,0,17,0,17,17 +52734,Tremont Anthony,Multifamily Finance Program,06/13/2016,06/13/2016,74010,263,EAST TREMONT AVENUE,Bronx,10457,2028090039,2007713,BX-05,15,23502,BX41,40.848787,-73.903731,40.849,-73.903539,06/13/2016,Preservation,Yes,Non Prevailing Wage,0,4,7,0,4,0,0,1,1,4,9,0,0,0,15,0,15,15 +61457,CONFIDENTIAL,Homeowner Assistance Program,06/10/2016,06/10/2016,,----,----,Bronx,,,,BX-06,15,,,,,,,06/10/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +58799,HALLETTS POINT ONE (HLP1),Multifamily Incentives Program,06/09/2016,,967881,26-01,1 STREET,Queens,11102,4009157501,4617681,QN-01,22,87,QN71,40.776834,-73.9355,40.77648,-73.935183,,New Construction,No,Non Prevailing Wage,0,0,81,0,0,0,6,50,24,1,0,0,0,0,81,0,81,405 +47888,46-48 East 129 Street,Multifamily Finance Program,06/08/2016,04/18/2018,20827,46,EAST 129 STREET,Manhattan,10035,1017530049,1054195,MN-11,9,206,MN03,40.80812,-73.938439,40.80791,-73.938515,04/18/2018,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,10,10 +61461,CONFIDENTIAL,Homeowner Assistance Program,06/07/2016,06/07/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,06/07/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +62256,CONFIDENTIAL,Homeowner Assistance Program,06/07/2016,09/01/2016,,----,----,Manhattan,,,,MN-10,9,,,,,,,09/01/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61463,CONFIDENTIAL,Homeowner Assistance Program,06/06/2016,06/06/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/06/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65117,CRESCENT 110 EQUITIES LLC,Multifamily Incentives Program,06/03/2016,03/02/2018,966731,2040,FREDERICK DOUGLASS BLVD,Manhattan,10026,1018267503,1090258,MN-10,9,216,MN11,40.801114,-73.957773,40.80084,-73.957462,03/02/2018,New Construction,No,Non Prevailing Wage,0,0,0,0,10,0,2,3,5,0,0,0,0,0,10,0,10,49 +61235,CONFIDENTIAL,Homeowner Assistance Program,05/31/2016,05/31/2016,,----,----,Queens,,,,QN-08,24,,,,,,,05/31/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +48751,1109 Madison Street,Multifamily Finance Program,05/26/2016,05/26/2016,330580,1113,MADISON STREET,Brooklyn,11221,3033590048,3342588,BK-04,34,415,BK78,40.691971,-73.916131,40.69202,-73.916416,05/26/2016,Preservation,No,Non Prevailing Wage,0,0,17,0,0,1,0,0,14,4,0,0,0,0,18,0,18,18 +58789,French Apartments,Multifamily Finance Program,05/26/2016,05/26/2016,32117,324,WEST 30 STREET,Manhattan,10001,1007530056,1013499,MN-04,3,97,MN13,40.750061,-73.99621,40.74999,-73.996903,05/26/2016,Preservation,Yes,Non Prevailing Wage,136,15,14,9,0,0,0,136,38,0,0,0,0,0,174,0,174,174 +60783,Bruckner Houses,Multifamily Incentives Program,05/26/2016,05/26/2016,115142,576,TIMPSON PLACE,Bronx,10455,2026030067,2004133,BX-02,8,83,BX33,40.811733,-73.902614,40.81172,-73.901881,05/26/2016,Preservation,Yes,Non Prevailing Wage,0,50,0,0,0,0,0,24,16,10,0,0,0,0,50,0,50,50 +60783,Bruckner Houses,Multifamily Incentives Program,05/26/2016,05/26/2016,115144,588,TIMPSON PLACE,Bronx,10455,2026030073,2004134,BX-02,8,83,BX33,40.811776,-73.902462,40.81183,-73.90148,05/26/2016,Preservation,Yes,Non Prevailing Wage,0,50,0,0,0,0,0,24,16,10,0,0,0,0,50,0,50,50 +60783,Bruckner Houses,Multifamily Incentives Program,05/26/2016,05/26/2016,115145,600,TIMPSON PLACE,Bronx,10455,2026030078,2004135,BX-02,8,83,BX33,40.81182,-73.90231,40.81194,-73.901078,05/26/2016,Preservation,Yes,Non Prevailing Wage,0,50,0,0,0,0,0,24,16,10,0,0,0,0,50,0,50,50 +65137,505 ST MARKS AVENUE,Multifamily Incentives Program,05/26/2016,,966458,497,ST MARKS AVENUE,Brooklyn,11238,3011490072,3426377,BK-08,35,305,BK61,40.676321,-73.957895,40.67655,-73.95756,,New Construction,No,Non Prevailing Wage,0,0,30,0,0,0,0,18,12,0,0,0,0,0,30,0,30,147 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,210962,161,BOERUM STREET,Brooklyn,11206,3030710010,3327962,BK-01,34,493,BK78,40.705974,-73.942118,40.70638,-73.941949,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,318371,144,HUMBOLDT STREET,Brooklyn,11206,3030720001,3327965,BK-01,34,493,BK78,40.706204,-73.9413,40.70642,-73.940596,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,36,0,0,0,0,0,36,0,0,0,0,0,0,36,0,36,36 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,807807,189,BOERUM STREET,Brooklyn,11206,3030720001,3327966,BK-01,34,493,BK78,40.706105,-73.94073,40.70642,-73.940596,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,6,0,0,0,1,0,0,7,0,0,0,0,0,7,0,7,7 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,807808,193,BOERUM STREET,Brooklyn,11206,3030720001,3327967,BK-01,34,493,BK78,40.706121,-73.940571,40.70642,-73.940596,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,36,0,0,0,0,0,0,36,0,0,0,0,0,36,0,36,36 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,808576,139,HUMBOLDT STREET,Brooklyn,11206,3030710010,3327963,BK-01,34,493,BK78,40.706256,-73.941328,40.70638,-73.941949,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,24,0,0,0,0,0,0,24,0,0,0,0,0,24,0,24,24 +61029,CARIBE GDNS,Multifamily Incentives Program,05/25/2016,05/25/2016,808613,190,JOHNSON AVENUE,Brooklyn,11206,3030710010,3327964,BK-01,34,493,BK78,40.706704,-73.941869,40.70638,-73.941949,05/25/2016,Preservation,Yes,Non Prevailing Wage,0,12,0,0,0,0,0,0,0,12,0,0,0,0,12,0,12,12 +61245,CONFIDENTIAL,Homeowner Assistance Program,05/25/2016,05/25/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/25/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53334,19 India Street (145 West Street),Multifamily Incentives Program,05/24/2016,12/17/2018,926996,155,WEST STREET,Brooklyn,11222,3025307501,,BK-01,33,563,BK76,40.732328,-73.959682,40.73216,-73.960054,12/17/2018,New Construction,No,Non Prevailing Wage,0,28,112,0,0,0,35,35,70,0,0,0,0,0,140,0,140,140 +65109,30 AND 42 ORIENT AVENUE APARTMENTS,Multifamily Incentives Program,05/23/2016,12/13/2017,348979,30,ORIENT AVENUE,Brooklyn,11211,3029120020,3413602,BK-01,34,481,BK90,40.715099,-73.93973,40.71508,-73.939008,12/13/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,9 +65109,30 AND 42 ORIENT AVENUE APARTMENTS,Multifamily Incentives Program,05/23/2016,12/13/2017,952481,42,ORIENT AVENUE,Brooklyn,11211,3029120023,3403522,BK-01,34,481,BK90,40.715231,-73.93921,40.71512,-73.938886,12/13/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,9 +57668,WSFSSH. 275 EAST138TH ST. TRES PUENTES,Multifamily Finance Program,05/19/2016,12/31/2018,966537,271,EAST 138 STREET,Bronx,10454,2023140001,2128327,BX-01,8,39,BX39,40.810905,-73.927025,40.81104,-73.926537,08/30/2018,New Construction,No,Prevailing Wage,119,0,0,0,0,0,38,81,0,0,0,0,0,0,119,0,119,119 +57668,WSFSSH. 275 EAST138TH ST. TRES PUENTES,Multifamily Finance Program,05/19/2016,12/31/2018,985850,295,EAST 138 STREET,Bronx,10454,2023140015,,BX-01,8,39,BX39,40.810606,-73.926353,40.81056,-73.925605,12/31/2018,New Construction,No,Prevailing Wage,56,0,0,0,0,0,7,49,0,0,0,0,0,0,56,0,56,56 +53451,504 MYRTLE AVENUE,Multifamily Incentives Program,05/18/2016,12/07/2017,957264,504,MYRTLE AVENUE,Brooklyn,11205,3019057503,3424731,BK-02,35,193,BK69,40.693525,-73.964844,40.6933,-73.964491,12/07/2017,New Construction,No,Non Prevailing Wage,0,0,29,0,0,0,10,12,7,0,0,0,0,0,29,0,29,143 +60999,CONFIDENTIAL,Homeowner Assistance Program,05/13/2016,11/14/2016,,----,----,Bronx,,,,BX-10,13,,,,,,,11/14/2016,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58470,945-947 East 94th Street,Multifamily Finance Program,05/12/2016,05/12/2016,283460,945,EAST 94 STREET,Brooklyn,11236,3081440020,3228923,BK-18,46,970,BK50,40.646231,-73.907623,40.64635,-73.907407,05/12/2016,Preservation,Yes,Non Prevailing Wage,0,1,28,11,0,1,0,38,3,0,0,0,0,0,41,0,41,41 +61232,CONFIDENTIAL,Homeowner Assistance Program,05/12/2016,05/12/2016,,----,----,Staten Island,,,,SI-02,51,,,,,,,05/12/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60995,CONFIDENTIAL,Homeowner Assistance Program,05/10/2016,09/02/2016,,----,----,Queens,,,,QN-12,28,,,,,,,09/02/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +61240,CONFIDENTIAL,Homeowner Assistance Program,05/10/2016,05/10/2016,,----,----,Brooklyn,,,,BK-15,47,,,,,,,05/10/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +61263,CONFIDENTIAL,Homeowner Assistance Program,05/10/2016,05/10/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/10/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61261,CONFIDENTIAL,Homeowner Assistance Program,05/09/2016,05/09/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,05/09/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +61243,CONFIDENTIAL,Homeowner Assistance Program,05/06/2016,05/06/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,05/06/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +61255,CONFIDENTIAL,Homeowner Assistance Program,05/05/2016,05/05/2016,,----,----,Bronx,,,,BX-08,11,,,,,,,05/05/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +60912,CONFIDENTIAL,Homeowner Assistance Program,04/29/2016,04/29/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,04/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61037,CONFIDENTIAL,Homeowner Assistance Program,04/29/2016,08/05/2016,,----,----,Queens,,,,QN-03,21,,,,,,,08/05/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57864,1519-1535 BEDFORD AVENUE,Multifamily Incentives Program,04/28/2016,10/31/2019,966686,1535,BEDFORD AVENUE,Brooklyn,11216,3012607501,3425089,BK-08,35,219,BK61,40.670427,-73.955148,40.67061,-73.954662,10/31/2019,New Construction,No,Non Prevailing Wage,0,0,35,21,0,0,9,35,12,0,0,0,0,0,56,0,56,175 +60994,CONFIDENTIAL,Homeowner Assistance Program,04/27/2016,06/09/2016,,----,----,Brooklyn,,,,BK-05,42,,,,,,,06/09/2016,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +51100,WEBSTER GREEN,Multifamily Incentives Program,04/26/2016,,950672,3100,WEBSTER AVENUE,Bronx,10467,2033300068,2129274,BX-07,11,425,BX43,40.870972,-73.877076,40.87071,-73.87691,,New Construction,No,Non Prevailing Wage,41,0,40,0,0,0,36,15,30,0,0,0,0,0,81,0,81,82 +60919,CONFIDENTIAL,Homeowner Assistance Program,04/26/2016,04/26/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,04/26/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65070,71 EAST 110TH STREET,Multifamily Incentives Program,04/25/2016,11/16/2016,957363,71,EAST 110 STREET,Manhattan,10029,1016160030,1090593,MN-11,8,17402,MN33,40.795886,-73.946988,40.79596,-73.946576,11/16/2016,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,1,0,2,0,0,0,0,0,3,0,3,14 +65090,1674 PARK AVENUE APARTMENTS,Multifamily Incentives Program,04/22/2016,02/02/2018,956931,1674,PARK AVENUE,Manhattan,10035,1016230040,1051691,MN-11,9,184,MN34,40.80047,-73.942387,40.80066,-73.942715,02/02/2018,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,3,0,0,0,0,0,0,0,3,0,3,13 +60917,CONFIDENTIAL,Homeowner Assistance Program,04/19/2016,04/19/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,04/19/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60914,CONFIDENTIAL,Homeowner Assistance Program,04/18/2016,04/18/2016,,----,----,Queens,,,,QN-14,31,,,,,,,04/18/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60897,CONFIDENTIAL,Homeowner Assistance Program,04/15/2016,04/15/2016,,----,----,Queens,,,,QN-12,27,,,,,,,04/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60899,CONFIDENTIAL,Homeowner Assistance Program,04/15/2016,04/15/2016,,----,----,Queens,,,,QN-07,20,,,,,,,04/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60888,CONFIDENTIAL,Homeowner Assistance Program,04/14/2016,04/14/2016,,----,----,Queens,,,,QN-13,31,,,,,,,04/14/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65082,BRYANT MANOR LLC,Multifamily Incentives Program,04/14/2016,09/05/2018,966732,1702,BRYANT AVENUE,Bronx,10460,2030020023,2127760,BX-03,17,161,BX75,40.835478,-73.885696,40.83617,-73.885019,09/05/2018,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,0,10,0,0,0,0,0,0,10,0,10,41 +60993,CONFIDENTIAL,Homeowner Assistance Program,04/12/2016,06/30/2016,,----,----,Bronx,,,,BX-04,16,,,,,,,06/30/2016,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +44357,Acacia Gardens,Multifamily Finance Program,04/11/2016,08/24/2018,958188,401,EAST 120 STREET,Manhattan,10035,1018080010,1089835,MN-11,8,192,MN34,40.798511,-73.933326,40.79872,-73.932867,08/24/2018,New Construction,No,Non Prevailing Wage,54,0,106,18,0,1,37,48,92,2,0,0,0,0,179,0,179,179 +54807,166 East 100th Street,Multifamily Incentives Program,04/11/2016,06/05/2018,836062,166,EAST 100 STREET,Manhattan,10029,1016270043,1090678,MN-11,5,166,MN33,40.788163,-73.948453,40.78784,-73.948269,06/05/2018,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,1,10,0,0,0,0,0,0,11,0,11,11 +50384,Mascot Flats HDFC,Multifamily Incentives Program,04/08/2016,04/08/2016,11043,742,EAST 6 STREET,Manhattan,10009,1003750030,1004442,MN-03,2,2601,MN28,40.722913,-73.977899,40.72262,-73.977788,04/08/2016,Preservation,Yes,Non Prevailing Wage,0,0,0,19,0,0,0,5,10,4,0,0,0,0,0,19,19,19 +60878,CONFIDENTIAL,Homeowner Assistance Program,04/07/2016,04/07/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,04/07/2016,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +60874,CONFIDENTIAL,Homeowner Assistance Program,04/04/2016,04/04/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/04/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60732,CONFIDENTIAL,Homeowner Assistance Program,03/31/2016,03/31/2016,,----,----,Bronx,,,,BX-11,12,,,,,,,03/31/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60734,CONFIDENTIAL,Homeowner Assistance Program,03/31/2016,03/31/2016,,----,----,Queens,,,,QN-13,27,,,,,,,03/31/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60727,CONFIDENTIAL,Homeowner Assistance Program,03/29/2016,03/29/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,03/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60730,CONFIDENTIAL,Homeowner Assistance Program,03/29/2016,03/29/2016,,----,----,Brooklyn,,,,BK-14,48,,,,,,,03/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +64624,CONFIDENTIAL,Homeowner Assistance Program,03/28/2016,03/31/2016,,----,----,Brooklyn,,,,BK-03,41,,,,,,,03/31/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +60674,CONFIDENTIAL,Homeowner Assistance Program,03/24/2016,03/24/2016,,----,----,Queens,,,,QN-12,28,,,,,,,03/24/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60724,CONFIDENTIAL,Homeowner Assistance Program,03/24/2016,03/24/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,03/24/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60762,Elbee Gardens,Multifamily Finance Program,03/24/2016,12/31/2016,723979,1950,CLOVE ROAD,Staten Island,10304,5031570001,5046266,SI-02,50,50,SI14,40.605964,-74.086527,40.60581,-74.087427,12/31/2016,Preservation,No,Non Prevailing Wage,0,0,177,0,0,1,10,39,117,12,0,0,0,0,178,0,178,178 +60775,CONFIDENTIAL,Homeowner Assistance Program,03/24/2016,05/17/2017,,----,----,Brooklyn,,,,BK-05,42,,,,,,,05/17/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58908,Monsignor Alexius Jarka Hall,Multifamily Finance Program,03/23/2016,03/27/2017,206029,268,BEDFORD AVENUE,Brooklyn,11249,3023650019,3331545,BK-01,34,553,BK73,40.715248,-73.960511,40.71519,-73.960933,03/27/2017,Preservation,No,Non Prevailing Wage,55,4,4,0,0,0,0,63,0,0,0,0,0,0,63,0,63,63 +52893,PROSPECT PLAZA - SITE 3,Multifamily Finance Program,03/22/2016,05/04/2018,976553,428,SARATOGA AVENUE,Brooklyn,11233,3014677501,3324688,BK-16,41,363,BK79,40.671278,-73.916983,40.67115,-73.917527,05/04/2018,New Construction,No,Non Prevailing Wage,27,19,88,0,0,1,0,70,44,21,0,0,0,0,135,0,135,135 +60789,CONFIDENTIAL,Homeowner Assistance Program,03/21/2016,07/11/2016,,----,----,Manhattan,,,,MN-09,9,,,,,,,07/11/2016,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +65073,863 FAIRMOUNT PLACE,Multifamily Incentives Program,03/21/2016,05/17/2016,956814,863,FAIRMOUNT PLACE,Bronx,10460,2029600111,2124391,BX-06,17,36502,BX17,40.841823,-73.887235,40.84201,-73.887152,05/17/2016,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +60653,CONFIDENTIAL,Homeowner Assistance Program,03/18/2016,03/18/2016,,----,----,Queens,,,,QN-03,21,,,,,,,03/18/2016,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60520,CONFIDENTIAL,Homeowner Assistance Program,03/17/2016,06/08/2016,,----,----,Brooklyn,,,,BK-03,36,,,,,,,06/08/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +60613,CONFIDENTIAL,Homeowner Assistance Program,03/17/2016,03/17/2016,,----,----,Bronx,,,,BX-11,13,,,,,,,03/17/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +60548,CONFIDENTIAL,Homeowner Assistance Program,03/16/2016,07/26/2016,,----,----,Bronx,,,,BX-05,14,,,,,,,07/26/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60607,CONFIDENTIAL,Homeowner Assistance Program,03/16/2016,03/16/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,03/16/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +60610,CONFIDENTIAL,Homeowner Assistance Program,03/16/2016,03/16/2016,,----,----,Queens,,,,QN-09,28,,,,,,,03/16/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60603,CONFIDENTIAL,Homeowner Assistance Program,03/15/2016,03/15/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,03/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,45604,1760,ANTHONY AVENUE,Bronx,10457,2028900017,2009344,BX-05,15,231,BX41,40.84537,-73.903888,40.84564,-73.903605,12/29/2017,Preservation,No,Non Prevailing Wage,0,2,7,0,0,0,1,3,5,0,0,0,0,0,9,0,9,9 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,64635,796,EAST 163 STREET,Bronx,10456,2026680030,2004817,BX-03,17,133,BX35,40.822527,-73.902385,40.82226,-73.90244,12/21/2017,Preservation,No,Non Prevailing Wage,0,5,11,0,0,0,0,4,5,7,0,0,0,0,16,0,16,16 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,65479,1590,EAST 172 STREET,Bronx,10472,2037760044,2025348,BX-09,18,54,BX08,40.831574,-73.876495,40.83136,-73.876293,12/21/2017,Preservation,No,Non Prevailing Wage,0,19,24,0,0,0,0,12,18,13,0,0,0,0,43,0,43,43 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,65828,344,EAST 176 STREET,Bronx,10457,2028920038,2009376,BX-05,15,231,BX41,40.847565,-73.902894,40.84761,-73.902027,12/21/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,2,6,0,0,0,0,0,8,0,8,8 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,78834,1180,FOREST AVENUE,Bronx,10456,2026620010,2004715,BX-03,17,135,BX35,40.829202,-73.901624,40.82915,-73.901454,12/21/2017,Preservation,No,Non Prevailing Wage,0,5,27,0,0,0,4,11,17,0,0,0,0,0,32,0,32,32 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,81457,2017,GRAND AVENUE,Bronx,10453,2028690142,2008610,BX-05,14,243,BX36,40.853392,-73.909963,40.8536,-73.910108,12/22/2017,Preservation,No,Non Prevailing Wage,0,1,0,3,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,91415,942,LEGGETT AVENUE,Bronx,10455,2026850048,2005107,BX-02,17,83,BX33,40.815716,-73.900437,40.81568,-73.90078,12/21/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,92749,1866,LORING PLACE SOUTH,Bronx,10453,2028790068,2009070,BX-05,14,24501,BX36,40.853166,-73.915335,40.85339,-73.914814,12/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,4,1,1,0,0,0,0,6,0,6,6 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,92750,1868,LORING PLACE SOUTH,Bronx,10453,2028790069,2009071,BX-05,14,24501,BX36,40.853196,-73.91531,40.85346,-73.914756,12/29/2017,Preservation,No,Non Prevailing Wage,0,0,1,1,0,0,1,0,1,0,0,0,0,0,2,0,2,2 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,103709,1679,POPHAM AVENUE,Bronx,10453,2028770268,2008883,BX-05,16,20501,BX36,40.849467,-73.920613,40.84979,-73.920667,12/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,2,4,0,0,0,0,6,0,6,6 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,104323,1380,PROSPECT AVENUE,Bronx,10459,2029710010,2010386,BX-03,16,153,BX75,40.831174,-73.896858,40.83103,-73.896472,12/21/2017,Preservation,No,Non Prevailing Wage,0,4,11,0,0,0,0,5,10,0,0,0,0,0,15,0,15,15 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,104324,1382,PROSPECT AVENUE,Bronx,10459,2029710012,2010387,BX-03,16,153,BX75,40.831245,-73.896844,40.83115,-73.896482,12/21/2017,Preservation,No,Non Prevailing Wage,0,0,15,0,0,0,0,5,10,0,0,0,0,0,15,0,15,15 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,104325,1384,PROSPECT AVENUE,Bronx,10459,2029710014,2010388,BX-03,16,153,BX75,40.831317,-73.896825,40.83126,-73.896468,12/22/2017,Preservation,No,Non Prevailing Wage,0,5,11,0,0,0,0,4,12,0,0,0,0,0,16,0,16,16 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,115285,970,TINTON AVENUE,Bronx,10456,2026690006,2004825,BX-03,17,133,BX35,40.823568,-73.902774,40.82328,-73.902507,12/21/2017,Preservation,No,Non Prevailing Wage,0,10,17,0,0,0,0,10,6,11,0,0,0,0,27,0,27,27 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,115563,1764,TOPPING AVENUE,Bronx,10457,2027990018,2007493,BX-05,15,22901,BX41,40.845786,-73.905658,40.84586,-73.905387,12/29/2017,Preservation,No,Non Prevailing Wage,0,0,2,1,0,0,1,0,2,0,0,0,0,0,3,0,3,3 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,116542,925,UNION AVENUE,Bronx,10459,2026680033,2004818,BX-03,17,133,BX35,40.822025,-73.902173,40.82222,-73.902273,12/21/2017,Preservation,No,Non Prevailing Wage,0,0,22,0,0,0,4,7,11,0,0,0,0,0,22,0,22,22 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,116554,981,UNION AVENUE,Bronx,10459,2026690047,2004848,BX-03,17,133,BX35,40.82357,-73.901527,40.82317,-73.902044,08/02/2018,Preservation,No,Non Prevailing Wage,0,5,18,2,0,0,0,6,6,13,0,0,0,0,25,0,25,25 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,822663,445,EAST 171 STREET,Bronx,10457,2029030003,2109440,BX-03,16,169,BX01,40.837927,-73.904202,40.83813,-73.904007,12/21/2017,Preservation,No,Non Prevailing Wage,0,32,14,0,0,0,1,44,1,0,0,0,0,0,46,0,46,46 +58863,Bronx Shepherds,Multifamily Finance Program,03/08/2016,08/02/2018,842309,1360,CLINTON AVENUE,Bronx,10456,2029340023,2114113,BX-03,16,151,BX35,40.832711,-73.899776,40.83278,-73.899378,04/19/2018,Preservation,No,Non Prevailing Wage,0,0,30,0,0,0,0,1,17,12,0,0,0,0,30,0,30,30 +60601,CONFIDENTIAL,Homeowner Assistance Program,03/08/2016,03/08/2016,,----,----,Staten Island,,,,SI-02,51,,,,,,,03/08/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60757,CONFIDENTIAL,Homeowner Assistance Program,03/08/2016,01/23/2017,,----,----,Brooklyn,,,,BK-03,41,,,,,,,01/23/2017,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +60443,CONFIDENTIAL,Homeowner Assistance Program,03/04/2016,01/23/2017,,----,----,Brooklyn,,,,BK-05,42,,,,,,,01/23/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58870,El Caribe Apartments,Multifamily Finance Program,03/02/2016,03/02/2016,5460,161,ALLEN STREET,Manhattan,10002,1004160025,1005512,MN-03,1,3601,MN27,40.721038,-73.989448,40.72114,-73.989819,03/02/2016,Preservation,No,Non Prevailing Wage,0,0,13,0,0,0,0,13,0,0,0,0,0,0,13,0,13,13 +58870,El Caribe Apartments,Multifamily Finance Program,03/02/2016,03/02/2016,21159,305,EAST HOUSTON STREET,Manhattan,10002,1003500056,1004268,MN-03,2,2201,MN28,40.72135,-73.983445,40.72112,-73.983614,03/02/2016,Preservation,No,Non Prevailing Wage,0,1,1,0,2,0,0,3,0,1,0,0,0,0,4,0,4,4 +58870,El Caribe Apartments,Multifamily Finance Program,03/02/2016,03/02/2016,21167,325,EAST HOUSTON STREET,Manhattan,10002,1003450014,1004138,MN-03,2,2201,MN28,40.721111,-73.982662,40.72082,-73.98277,03/02/2016,Preservation,No,Non Prevailing Wage,0,5,12,0,0,0,6,1,10,0,0,0,0,0,17,0,17,17 +58870,El Caribe Apartments,Multifamily Finance Program,03/02/2016,03/02/2016,27435,147,RIVINGTON STREET,Manhattan,10002,1003480013,1004170,MN-03,1,1402,MN28,40.719291,-73.98579,40.71917,-73.985869,03/02/2016,Preservation,No,Non Prevailing Wage,0,2,3,0,2,0,0,6,0,1,0,0,0,0,7,0,7,7 +58870,El Caribe Apartments,Multifamily Finance Program,03/02/2016,03/02/2016,28383,156,STANTON STREET,Manhattan,10002,1003500036,1004256,MN-03,2,3001,MN27,40.720436,-73.985108,40.72057,-73.985043,03/02/2016,Preservation,No,Non Prevailing Wage,0,2,5,0,1,0,0,8,0,0,0,0,0,0,8,0,8,8 +60287,CONFIDENTIAL,Homeowner Assistance Program,02/29/2016,02/29/2016,,----,----,Staten Island,,,,SI-03,51,,,,,,,02/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60291,CONFIDENTIAL,Homeowner Assistance Program,02/26/2016,02/26/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/26/2016,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60294,CONFIDENTIAL,Homeowner Assistance Program,02/25/2016,02/25/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/25/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60761,Marseilles Apartments,Multifamily Finance Program,02/25/2016,02/25/2016,7885,2689,BROADWAY,Manhattan,10025,1018740052,1056548,MN-07,6,191,MN12,40.79874,-73.968819,40.79909,-73.969108,02/25/2016,Preservation,Yes,Non Prevailing Wage,0,134,0,0,0,1,31,103,1,0,0,0,0,0,135,0,135,135 +60336,CONFIDENTIAL,Homeowner Assistance Program,02/12/2016,02/12/2016,,----,----,Brooklyn,,,,BK-05,37,,,,,,,02/12/2016,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +65118,ENCLAVE AT THE CATHEDRAL,Multifamily Incentives Program,02/12/2016,09/14/2018,957979,400,WEST 113 STREET,Manhattan,10025,1018650020,1089808,MN-09,7,19701,MN09,40.804117,-73.960646,40.80419,-73.96143,09/14/2018,New Construction,No,Non Prevailing Wage,0,0,87,0,0,0,25,43,19,0,0,0,0,0,87,0,87,430 +60298,CONFIDENTIAL,Homeowner Assistance Program,02/11/2016,02/11/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,02/11/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60300,CONFIDENTIAL,Homeowner Assistance Program,02/11/2016,02/11/2016,,----,----,Brooklyn,,,,BK-18,45,,,,,,,02/11/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,139704,342,14 STREET,Brooklyn,11215,3010430021,3023754,BK-06,39,149,BK37,40.664547,-73.985474,40.6644,-73.985694,,Preservation,No,Non Prevailing Wage,2,0,0,0,6,0,0,8,0,0,0,0,0,0,8,0,8,8 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,307271,633,HANCOCK STREET,Brooklyn,11233,3016560048,3045833,BK-03,36,295,BK35,40.684827,-73.930177,40.68506,-73.930025,,Preservation,No,Non Prevailing Wage,0,0,5,1,0,0,4,2,0,0,0,0,0,0,6,0,6,6 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,330823,248,MADISON STREET,Brooklyn,11216,3018230029,3051638,BK-03,36,249,BK75,40.684908,-73.948868,40.68468,-73.948836,,Preservation,No,Non Prevailing Wage,1,6,1,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,330827,250,MADISON STREET,Brooklyn,11216,3018230031,3051639,BK-03,36,249,BK75,40.684916,-73.948804,40.68469,-73.948735,,Preservation,No,Non Prevailing Wage,4,0,4,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,352128,941,PARK PLACE,Brooklyn,11213,3012350071,3031307,BK-08,36,341,BK61,40.673223,-73.946318,40.67348,-73.946368,,Preservation,No,Non Prevailing Wage,7,7,2,0,0,0,0,8,8,0,0,0,0,0,16,0,16,16 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,358597,969,PUTNAM AVENUE,Brooklyn,11221,3014830058,3039714,BK-03,41,375,BK35,40.687229,-73.922285,40.68744,-73.922353,,Preservation,No,Non Prevailing Wage,6,0,2,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,375049,915,ST MARKS AVENUE,Brooklyn,11213,3012230001,3030801,BK-08,36,311,BK61,40.674735,-73.941295,40.67496,-73.941201,,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,0,4,4 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,375083,971,ST MARKS AVENUE,Brooklyn,11213,3012230052,3030844,BK-08,36,311,BK61,40.674622,-73.939161,40.67483,-73.939261,,Preservation,No,Non Prevailing Wage,6,0,2,0,0,0,0,0,2,6,0,0,0,0,8,0,8,8 +48908,TBK905 - Bridge Street,Multifamily Finance Program,02/10/2016,,375084,973,ST MARKS AVENUE,Brooklyn,11213,3012230051,3030843,BK-08,36,311,BK61,40.674619,-73.939099,40.67483,-73.939164,,Preservation,No,Non Prevailing Wage,3,5,0,0,0,0,0,0,2,6,0,0,0,0,8,0,8,8 +55238,JOHN PAUL II APARTMENTS,Multifamily Finance Program,02/10/2016,05/01/2017,865282,202,WEST 141 STREET,Manhattan,10030,1020260033,1085368,MN-10,9,230,MN03,40.819312,-73.941463,40.81911,-73.941561,05/01/2017,Preservation,No,Non Prevailing Wage,0,69,0,0,0,0,19,50,0,0,0,0,0,0,69,0,69,69 +60303,CONFIDENTIAL,Homeowner Assistance Program,02/03/2016,02/03/2016,,----,----,Queens,,,,QN-08,24,,,,,,,02/03/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +60296,CONFIDENTIAL,Homeowner Assistance Program,02/02/2016,02/02/2016,,----,----,Queens,,,,QN-11,19,,,,,,,02/02/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +60463,CONFIDENTIAL,Homeowner Assistance Program,02/01/2016,04/29/2016,,----,----,Bronx,,,,BX-05,14,,,,,,,04/29/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60270,CONFIDENTIAL,Homeowner Assistance Program,01/30/2016,04/01/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +60322,CONFIDENTIAL,Homeowner Assistance Program,01/30/2016,06/24/2016,,----,----,Bronx,,,,BX-12,12,,,,,,,06/24/2016,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +52701,YWCA OF BROOKLYN (LOAN II),Multifamily Finance Program,01/29/2016,,127575,30,3 AVENUE,Brooklyn,11217,3001797503,3000753,BK-02,33,39,BK38,40.68581,-73.980385,40.68574,-73.980728,,Preservation,No,Non Prevailing Wage,0,87,128,0,0,0,215,0,0,0,0,0,0,0,215,0,215,215 +60080,Atlantic Plaza Towers,Multifamily Incentives Program,01/29/2016,01/29/2016,185932,233,THOMAS BOYLAND STREET,Brooklyn,11233,3014340001,3324663,BK-16,41,36501,BK79,40.676299,-73.913707,40.67559,-73.912392,01/29/2016,Preservation,Yes,Non Prevailing Wage,0,0,0,358,0,1,45,136,155,23,0,0,0,0,359,0,359,359 +60080,Atlantic Plaza Towers,Multifamily Incentives Program,01/29/2016,01/29/2016,809296,214,ROCKAWAY AVENUE,Brooklyn,11233,3014340001,3324661,BK-16,41,36501,BK79,40.675707,-73.911,40.67559,-73.912392,01/29/2016,Preservation,Yes,Non Prevailing Wage,0,0,0,358,0,1,45,135,156,23,0,0,0,0,359,0,359,359 +60127,CONFIDENTIAL,Homeowner Assistance Program,01/29/2016,01/29/2016,,----,----,Queens,,,,QN-13,31,,,,,,,01/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +60128,CONFIDENTIAL,Homeowner Assistance Program,01/29/2016,01/29/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60129,CONFIDENTIAL,Homeowner Assistance Program,01/29/2016,01/29/2016,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/29/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +60126,CONFIDENTIAL,Homeowner Assistance Program,01/28/2016,01/28/2016,,----,----,Queens,,,,QN-13,31,,,,,,,01/28/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +61380,Rutland Road Houses,Multifamily Incentives Program,01/28/2016,,282104,60,EAST 93 STREET,Brooklyn,11212,3045950215,3346863,BK-17,41,882,BK96,40.662494,-73.927007,40.66312,-73.928055,,Preservation,No,Prevailing Wage,0,0,402,0,0,2,26,102,204,57,15,0,0,0,404,0,404,438 +61376,435 East 13th Street Apartments,Multifamily Incentives Program,01/27/2016,,12090,432,EAST 14 STREET,Manhattan,10009,1004417504,,MN-03,2,34,MN22,40.730846,-73.981328,40.73028,-73.981249,,New Construction,No,Non Prevailing Wage,0,0,23,0,0,0,5,13,5,0,0,0,0,0,23,0,23,114 +60314,CONFIDENTIAL,Homeowner Assistance Program,01/25/2016,01/25/2016,,----,----,Brooklyn,,,,BK-17,42,,,,,,,01/25/2016,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60008,CONFIDENTIAL,Homeowner Assistance Program,01/22/2016,12/01/2016,,----,----,Brooklyn,,,,BK-05,42,,,,,,,12/01/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,4,4,4 +60060,CONFIDENTIAL,Homeowner Assistance Program,01/22/2016,04/15/2016,,----,----,Brooklyn,,,,BK-03,36,,,,,,,04/15/2016,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +60018,CONFIDENTIAL,Homeowner Assistance Program,01/21/2016,01/21/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/21/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +60125,CONFIDENTIAL,Homeowner Assistance Program,01/20/2016,01/20/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,01/20/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +60017,CONFIDENTIAL,Homeowner Assistance Program,01/15/2016,01/15/2016,,----,----,Queens,,,,QN-12,24,,,,,,,01/15/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +60312,CONFIDENTIAL,Homeowner Assistance Program,01/15/2016,01/23/2017,,----,----,Brooklyn,,,,BK-05,42,,,,,,,01/23/2017,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60013,CONFIDENTIAL,Homeowner Assistance Program,01/14/2016,01/14/2016,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/14/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65089,1035 ANDERSON AVENUE,Multifamily Incentives Program,01/13/2016,05/16/2019,967660,1035,ANDERSON AVENUE,Bronx,10452,2025080031,2003143,BX-04,8,189,BX26,40.833228,-73.926465,40.83314,-73.926841,05/16/2019,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,0,5,6,0,0,0,0,0,11,0,11,53 +59988,CONFIDENTIAL,Homeowner Assistance Program,01/11/2016,03/04/2016,,----,----,Queens,,,,QN-12,27,,,,,,,03/04/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60023,CONFIDENTIAL,Homeowner Assistance Program,01/11/2016,01/11/2016,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/11/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65081,BRONX LIVING LLC,Multifamily Incentives Program,01/11/2016,,948645,1138,TELLER AVENUE,Bronx,10456,2024290012,2124470,BX-04,16,175,BX14,40.830682,-73.912534,40.83047,-73.912354,,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,40 +59989,CONFIDENTIAL,Homeowner Assistance Program,01/08/2016,03/04/2016,,----,----,Queens,,,,QN-13,27,,,,,,,03/04/2016,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +60123,CONFIDENTIAL,Homeowner Assistance Program,01/08/2016,01/08/2016,,----,----,Queens,,,,QN-10,32,,,,,,,01/08/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65096,21-03 46 AVENUE APARTMENTS,Multifamily Incentives Program,01/07/2016,11/30/2016,949313,21-03,46 AVENUE,Queens,11101,4000760001,4539161,QN-02,26,7,QN31,40.745943,-73.947844,40.74603,-73.947735,11/30/2016,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +60121,CONFIDENTIAL,Homeowner Assistance Program,01/06/2016,01/06/2016,,----,----,Brooklyn,,,,BK-15,48,,,,,,,01/06/2016,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,2703,2225,5 AVENUE,Manhattan,10037,1017600001,1081109,MN-11,9,210,MN34,40.813058,-73.937387,40.8134,-73.936212,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,109,0,53,0,0,79,81,2,0,0,0,0,162,0,162,205 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,20926,45,EAST 135 STREET,Manhattan,10037,1017600101,1082615,MN-11,9,210,MN34,40.811838,-73.935437,40.81253,-73.935176,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,54,0,27,0,0,39,42,0,0,0,0,0,81,0,81,103 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,804704,10,EAST 138 STREET,Manhattan,10037,1017600001,1081107,MN-11,9,210,MN34,40.814275,-73.935337,40.8134,-73.936212,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,55,0,27,0,0,40,41,1,0,0,0,0,82,0,82,103 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,804798,2255,FIFTH AVENUE,Manhattan,10037,1017600001,1081108,MN-11,9,210,MN34,40.814133,-73.936609,40.8134,-73.936212,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,109,0,55,0,0,80,82,2,0,0,0,0,164,0,164,206 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,805053,2156,MADISON AVENUE,Manhattan,10037,1017600001,1081105,MN-11,9,210,MN34,40.812626,-73.935884,40.8134,-73.936212,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,106,0,54,0,0,78,80,2,0,0,0,0,160,0,160,201 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,805054,2171,MADISON AVENUE,Manhattan,10037,1017600101,1082614,MN-11,9,210,MN34,40.812456,-73.935736,40.81253,-73.935176,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,108,0,55,1,0,81,81,2,0,0,0,0,164,0,164,206 +59688,Riverton Square,Multifamily Finance Program,01/05/2016,01/05/2016,805055,2190,MADISON AVENUE,Manhattan,10037,1017600001,1081106,MN-11,9,210,MN34,40.813243,-73.935439,40.8134,-73.936212,01/05/2016,Preservation,Yes,Non Prevailing Wage,0,0,109,0,54,0,0,80,81,2,0,0,0,0,163,0,163,206 +65092,1770 MADISON AVENUE LLC,Multifamily Incentives Program,01/05/2016,10/16/2017,965502,1770,MADISON AVENUE,Manhattan,10035,1016227501,1089838,MN-11,9,184,MN34,40.800238,-73.944677,40.80029,-73.945002,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,1,6,0,0,0,0,0,0,7,0,7,32 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,502964,178-25,93 AVENUE,Queens,11433,4103180017,4220047,QN-12,27,444,QN61,40.707133,-73.782194,40.70741,-73.781984,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,509831,201-10,99 AVENUE,Queens,11423,4108480005,4231913,QN-12,27,50202,QN07,40.711824,-73.758775,40.71166,-73.758462,05/31/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,524251,212-44,112 ROAD,Queens,11429,4111370146,4240176,QN-13,27,538,QN34,40.705481,-73.743913,40.70498,-73.742772,05/04/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,524259,214-05,112 ROAD,Queens,11429,4111410088,4240288,QN-13,27,538,QN34,40.704996,-73.741737,40.70522,-73.741725,04/02/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,544606,241-51,132 ROAD,Queens,11422,4129770034,4279539,QN-13,31,61602,QN05,40.675525,-73.730624,40.67541,-73.729709,02/26/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,546603,221-16,134 ROAD,Queens,11413,4131010032,4281401,QN-13,31,358,QN66,40.677637,-73.748372,40.67737,-73.748182,05/31/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,589793,118-46,198 STREET,Queens,11412,4126220029,4271855,QN-12,27,376,QN08,40.692085,-73.75338,40.69158,-73.753418,02/07/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,606794,104-29,219 STREET,Queens,11429,4111640028,4240715,QN-13,27,580,QN34,40.711537,-73.735702,40.71094,-73.735744,05/31/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,606930,117-41,219 STREET,Queens,11411,4127360038,4274375,QN-13,27,608,QN33,40.694447,-73.741493,40.69416,-73.741346,05/31/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,607523,137-35,220 PLACE,Queens,,,,QN-13,31,,,,,,,01/08/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,611062,131-25,224 STREET,Queens,11413,4129340129,4278619,QN-13,31,630,QN66,40.680543,-73.744135,40.68052,-73.743843,01/21/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,611063,131-27,224 STREET,Queens,11413,4129340127,4278618,QN-13,31,630,QN66,40.680504,-73.744157,40.68044,-73.743883,01/21/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49635,Habitat-NYC Single Family Homes Phase I,Small Homes Program,12/31/2015,05/31/2016,743473,43,HARBOR ROAD,Staten Island,10303,5012270037,5027759,SI-01,49,223,SI12,40.636,-74.160204,40.63589,-74.159879,11/30/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49445,TMN903 - Lemle & Wolff,Multifamily Finance Program,12/30/2015,09/05/2018,40063,31,WEST 129 STREET,Manhattan,10027,1017270020,1053724,MN-10,9,208,MN03,40.809604,-73.941909,40.80978,-73.941797,01/18/2018,Preservation,No,Non Prevailing Wage,0,18,0,0,0,0,0,0,0,18,0,0,0,0,18,0,18,18 +49445,TMN903 - Lemle & Wolff,Multifamily Finance Program,12/30/2015,09/05/2018,40069,39,WEST 129 STREET,Manhattan,10027,1017270016,1053722,MN-10,9,208,MN03,40.809665,-73.942057,40.80991,-73.942097,01/18/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,1,0,0,1,14,10,0,0,0,25,0,25,25 +49445,TMN903 - Lemle & Wolff,Multifamily Finance Program,12/30/2015,09/05/2018,40079,43,WEST 129 STREET,Manhattan,10027,1017270014,1053721,MN-10,9,208,MN03,40.809698,-73.942129,40.80998,-73.942256,09/05/2018,Preservation,No,Non Prevailing Wage,0,0,0,24,0,1,0,0,2,12,11,0,0,0,25,0,25,25 +49445,TMN903 - Lemle & Wolff,Multifamily Finance Program,12/30/2015,09/05/2018,40088,53,WEST 129 STREET,Manhattan,10027,1017270010,1053719,MN-10,9,208,MN03,40.809778,-73.942317,40.81011,-73.942573,01/18/2018,Preservation,No,Non Prevailing Wage,0,24,0,0,0,0,0,0,0,13,11,0,0,0,24,0,24,24 +52758,CSH,Multifamily Finance Program,12/30/2015,,185927,2174,ATLANTIC AVENUE,Brooklyn,11233,3014330033,3038568,BK-16,41,303,BK79,40.676536,-73.914503,40.67623,-73.914482,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,8,0,4,8,6,0,0,0,0,0,18,0,18,18 +52758,CSH,Multifamily Finance Program,12/30/2015,,213936,1638,BROADWAY,Brooklyn,11207,3014990013,3040252,BK-16,41,373,BK79,40.684882,-73.913955,40.68462,-73.913966,10/09/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +52758,CSH,Multifamily Finance Program,12/30/2015,,232317,673,DECATUR STREET,Brooklyn,11233,3015020060,3040442,BK-16,41,373,BK79,40.68344,-73.916138,40.68365,-73.916261,10/09/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,232319,675,DECATUR STREET,Brooklyn,11233,3015020059,3040441,BK-16,41,373,BK79,40.683448,-73.916081,40.68366,-73.916167,10/09/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,234869,28,DUMONT AVENUE,Brooklyn,11212,3035650035,3081795,BK-16,41,892,BK81,40.662639,-73.919019,40.66243,-73.918951,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,20,0,3,0,1,0,14,4,4,0,0,0,23,0,23,23 +52758,CSH,Multifamily Finance Program,12/30/2015,,287213,1301,EAST NEW YORK AVENUE,Brooklyn,11212,3014760032,3039586,BK-16,41,361,BK79,40.668694,-73.919109,40.66881,-73.919372,10/13/2017,Preservation,No,Non Prevailing Wage,0,1,10,0,1,0,2,3,6,1,0,0,0,0,12,0,12,12 +52758,CSH,Multifamily Finance Program,12/30/2015,,287616,1438,EASTERN PARKWAY EXTENSION,Brooklyn,11233,3014750051,3039559,BK-16,41,361,BK79,40.668943,-73.921247,40.66893,-73.92054,12/04/2017,Preservation,No,Non Prevailing Wage,0,1,12,0,3,0,0,6,7,3,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,287624,1480,EASTERN PARKWAY EXTENSION,Brooklyn,11233,3014740009,3039522,BK-16,41,361,BK79,40.669707,-73.919382,40.66936,-73.919202,,Preservation,No,Non Prevailing Wage,0,4,15,0,1,0,0,6,14,0,0,0,0,0,20,0,20,20 +52758,CSH,Multifamily Finance Program,12/30/2015,,287626,1484,EASTERN PARKWAY EXTENSION,Brooklyn,11233,3014740009,3039523,BK-16,41,361,BK79,40.669737,-73.919306,40.66936,-73.919202,,Preservation,No,Non Prevailing Wage,0,0,10,0,2,0,0,5,3,4,0,0,0,0,12,0,12,12 +52758,CSH,Multifamily Finance Program,12/30/2015,,287645,1517,EASTERN PARKWAY,Brooklyn,11233,3014710033,3039458,BK-16,41,361,BK79,40.670406,-73.917737,40.67059,-73.917824,12/04/2017,Preservation,No,Non Prevailing Wage,0,1,15,0,0,0,0,2,10,4,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,301835,174,GRAFTON STREET,Brooklyn,11212,3035510032,3081512,BK-16,41,894,BK81,40.663882,-73.918026,40.6639,-73.918315,10/13/2017,Preservation,No,Non Prevailing Wage,0,2,12,0,9,0,12,2,9,0,0,0,0,0,23,0,23,23 +52758,CSH,Multifamily Finance Program,12/30/2015,,313959,893,THOMAS S BOYLAND STREET,Brooklyn,11212,3036120021,3082553,BK-16,42,916,BK81,40.658414,-73.910767,40.65851,-73.910475,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,1,5,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,313969,908,THOMAS S BOYLAND STREET,Brooklyn,11212,3036110147,3082539,BK-16,42,896,BK81,40.658198,-73.910731,40.65815,-73.911038,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,2,0,0,1,5,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,314170,545,HOWARD AVENUE,Brooklyn,11233,3014760009,3039580,BK-16,41,361,BK79,40.668939,-73.92005,40.66899,-73.919668,10/13/2017,Preservation,No,Non Prevailing Wage,0,0,15,0,1,0,0,1,15,0,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,314270,808,HOWARD AVENUE,Brooklyn,11212,3035650044,3081799,BK-16,41,892,BK81,40.662093,-73.918555,40.66207,-73.918876,10/09/2017,Preservation,No,Non Prevailing Wage,0,0,5,0,1,0,0,0,6,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,330367,854,MACON STREET,Brooklyn,11233,3014980018,3040202,BK-16,41,373,BK79,40.684876,-73.916544,40.68464,-73.91657,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +52758,CSH,Multifamily Finance Program,12/30/2015,,330375,870,MACON STREET,Brooklyn,11233,3014980025,3040209,BK-16,41,373,BK79,40.684927,-73.916093,40.68471,-73.915996,10/09/2017,Preservation,No,Non Prevailing Wage,0,3,13,0,0,0,8,8,0,0,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,334886,744,MAC DONOUGH STREET,Brooklyn,11233,3015020014,3040398,BK-16,41,373,BK79,40.684137,-73.916451,40.68388,-73.916744,10/09/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334889,748,MAC DONOUGH STREET,Brooklyn,11233,3015020016,3040400,BK-16,41,373,BK79,40.684148,-73.916339,40.6839,-73.91656,10/09/2017,Preservation,No,Non Prevailing Wage,0,4,2,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334892,752,MAC DONOUGH STREET,Brooklyn,11233,3015020018,3040402,BK-16,41,373,BK79,40.684162,-73.916224,40.68392,-73.916372,10/09/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334901,762,MAC DONOUGH STREET,Brooklyn,11233,3015020023,3040407,BK-16,41,373,BK79,40.684195,-73.915943,40.68397,-73.915911,10/09/2017,Preservation,No,Non Prevailing Wage,0,3,3,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334903,764,MAC DONOUGH STREET,Brooklyn,11233,3015020024,3040408,BK-16,41,373,BK79,40.6842,-73.915889,40.68398,-73.915817,10/09/2017,Preservation,No,Non Prevailing Wage,0,3,3,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334915,777,MAC DONOUGH STREET,Brooklyn,11233,3014980050,3040224,BK-16,41,373,BK79,40.684268,-73.915441,40.6845,-73.915326,10/09/2017,Preservation,No,Non Prevailing Wage,0,2,6,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +52758,CSH,Multifamily Finance Program,12/30/2015,,334922,783,MAC DONOUGH STREET,Brooklyn,11233,3014980047,3040221,BK-16,41,373,BK79,40.684287,-73.915272,40.6845,-73.915095,12/04/2017,Preservation,No,Non Prevailing Wage,0,1,1,0,1,0,0,0,1,2,0,0,0,0,3,0,3,3 +52758,CSH,Multifamily Finance Program,12/30/2015,,334936,806,MAC DONOUGH STREET,Brooklyn,11233,3015030014,3040459,BK-16,41,373,BK79,40.684418,-73.914064,40.68418,-73.914003,10/09/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,334939,812,MAC DONOUGH STREET,Brooklyn,11233,3015030017,3040462,BK-16,41,373,BK79,40.684443,-73.913862,40.68421,-73.91374,10/13/2017,Preservation,No,Non Prevailing Wage,0,1,5,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,349937,327,HOWARD AVENUE,Brooklyn,11233,3014320068,3038557,BK-16,41,303,BK79,40.67641,-73.919266,40.67621,-73.919111,12/04/2017,Preservation,No,Non Prevailing Wage,0,10,6,0,0,0,0,12,4,0,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,351579,1492,PARK PLACE,Brooklyn,11213,3013740011,3036599,BK-08,36,347,BK61,40.672178,-73.927551,40.67202,-73.927739,10/13/2017,Preservation,No,Non Prevailing Wage,0,1,16,0,5,0,2,4,16,0,0,0,0,0,22,0,22,22 +52758,CSH,Multifamily Finance Program,12/30/2015,,362714,688,ROCKAWAY AVENUE,Brooklyn,11212,3035750052,3081943,BK-16,41,924,BK81,40.662958,-73.909031,40.66307,-73.909359,12/04/2017,Preservation,No,Non Prevailing Wage,0,2,11,0,3,0,0,2,14,0,0,0,0,0,16,0,16,16 +52758,CSH,Multifamily Finance Program,12/30/2015,,376556,1748,STERLING PLACE,Brooklyn,11233,3014700028,3039433,BK-16,41,361,BK79,40.670913,-73.920776,40.67065,-73.920805,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,2,0,0,1,7,0,0,0,0,0,8,0,8,8 +52758,CSH,Multifamily Finance Program,12/30/2015,,379354,425,MARCUS GARVEY BOULEVARD,Brooklyn,11216,3016640001,3046350,BK-03,36,275,BK35,40.682595,-73.937953,40.68259,-73.937668,10/13/2017,Preservation,No,Non Prevailing Wage,0,3,3,0,0,0,1,1,4,0,0,0,0,0,6,0,6,6 +52758,CSH,Multifamily Finance Program,12/30/2015,,380112,50,SUTTER AVENUE,Brooklyn,11212,3035320025,3081190,BK-16,41,900,BK81,40.665555,-73.920868,40.66535,-73.92067,10/09/2017,Preservation,No,Non Prevailing Wage,0,2,16,0,8,0,0,2,10,14,0,0,0,0,26,0,26,26 +52758,CSH,Multifamily Finance Program,12/30/2015,,380683,116,TAPSCOTT STREET,Brooklyn,11212,3035320035,3081192,BK-16,41,900,BK81,40.664869,-73.92026,40.66491,-73.920559,12/04/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,1,5,0,0,0,0,0,6,0,6,6 +53077,"CLAYTON APARTMENTS, INC. 8-A LOAN",Multifamily Finance Program,12/30/2015,06/19/2017,23627,485,LENOX AVENUE,Manhattan,10037,1019190026,1058249,MN-10,9,228,MN03,40.813661,-73.941194,40.8139,-73.941584,06/19/2017,Preservation,No,Non Prevailing Wage,0,36,125,0,0,0,32,39,39,51,0,0,0,0,0,161,161,161 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,53587,1146,BRYANT AVENUE,Bronx,10459,2027540069,2006209,BX-03,17,12101,BX35,40.827532,-73.8889,40.82755,-73.888636,03/27/2019,Preservation,No,Non Prevailing Wage,0,1,7,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,85467,1160,HOE AVENUE,Bronx,10459,2027520017,2006168,BX-03,17,12101,BX35,40.827633,-73.890883,40.82775,-73.890609,03/27/2019,Preservation,No,Non Prevailing Wage,0,0,7,0,3,0,0,1,0,9,0,0,0,0,10,0,10,10 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,85470,1163,HOE AVENUE,Bronx,10459,2027450036,2006063,BX-03,17,125,BX35,40.827672,-73.890905,40.82782,-73.891172,03/27/2019,Preservation,No,Non Prevailing Wage,0,0,7,0,2,1,0,1,5,4,0,0,0,0,10,0,10,10 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,86493,905,HOME STREET,Bronx,10459,2029740022,2010463,BX-03,17,125,BX35,40.828375,-73.89416,40.82855,-73.894,03/27/2019,Preservation,No,Non Prevailing Wage,0,2,6,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,86506,930,HOME STREET,Bronx,10459,2027280016,2005809,BX-03,17,125,BX35,40.828472,-73.89275,40.82825,-73.892704,03/27/2019,Preservation,No,Non Prevailing Wage,0,1,20,0,8,1,0,16,4,10,0,0,0,0,30,0,30,30 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,86507,936,HOME STREET,Bronx,10459,2027280019,2005810,BX-03,17,125,BX35,40.828491,-73.892512,40.82826,-73.892505,03/27/2019,Preservation,No,Non Prevailing Wage,0,4,19,0,2,0,0,10,9,1,5,0,0,0,25,0,25,25 +55026,Home Street Homes,Multifamily Finance Program,12/30/2015,03/27/2019,109998,1208,SOUTHERN BOULEVARD,Bronx,10459,2029790002,2010531,BX-03,17,125,BX35,40.828919,-73.891875,40.82881,-73.891539,03/27/2019,Preservation,No,Non Prevailing Wage,0,5,11,0,2,0,0,0,6,7,5,0,0,0,18,0,18,18 +57642,404 East 10 Street HDFC,Multifamily Incentives Program,12/30/2015,12/30/2015,11580,404,EAST 10 STREET,Manhattan,10009,1003790011,1004542,MN-03,2,28,MN28,40.725685,-73.977094,40.72547,-73.97718,12/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,0,11,0,0,0,0,8,3,0,0,0,0,0,11,11,11 +59834,Kelly Towers,Multifamily Finance Program,12/30/2015,09/27/2017,104467,2380,PROSPECT AVENUE,Bronx,10458,2031140052,2013047,BX-06,15,393,BX06,40.853546,-73.882776,40.85318,-73.882329,09/27/2017,Preservation,No,Non Prevailing Wage,0,0,0,160,0,0,79,65,16,0,0,0,0,0,160,0,160,160 +59834,Kelly Towers,Multifamily Finance Program,12/30/2015,09/27/2017,110127,2405,SOUTHERN BOULEVARD,Bronx,10458,2031150005,2013061,BX-06,15,393,BX06,40.853773,-73.881558,40.85385,-73.882046,09/27/2017,Preservation,No,Non Prevailing Wage,0,0,0,142,0,0,75,52,15,0,0,0,0,0,142,0,142,142 +59836,Keith Plaza,Multifamily Finance Program,12/30/2015,09/27/2017,110144,2459,SOUTHERN BOULEVARD,Bronx,10458,2031150021,2086808,BX-06,15,393,BX06,40.854923,-73.881234,40.85581,-73.881666,09/27/2017,Preservation,No,Prevailing Wage,122,93,64,31,0,1,28,80,149,54,0,0,0,0,311,0,311,311 +59915,CONFIDENTIAL,Homeowner Assistance Program,12/30/2015,05/23/2016,,----,----,Brooklyn,,,,BK-03,36,,,,,,,05/23/2016,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +52467,FORD BEDFORD. 2848 BAINBRIDGE AVE.SERVIAM HEIGHTS,Multifamily Finance Program,12/29/2015,06/13/2018,921886,321,EAST 198 STREET,Bronx,10458,2032910024,2117126,BX-07,15,40702,BX05,40.868051,-73.887776,40.86849,-73.887678,06/13/2018,New Construction,No,Prevailing Wage,138,0,0,0,0,2,0,138,2,0,0,0,0,0,140,0,140,140 +52467,FORD BEDFORD. 2848 BAINBRIDGE AVE.SERVIAM HEIGHTS,Multifamily Finance Program,12/29/2015,06/13/2018,955101,2880,BAINBRIDGE AVENUE,Bronx,10458,,,BX-07,15,40702,BX05,40.869326,-73.886397,,,06/13/2018,New Construction,No,Prevailing Wage,57,0,0,0,0,0,24,33,0,0,0,0,0,0,57,0,57,57 +53483,1 FLATBUSH AVENUE,Multifamily Incentives Program,12/29/2015,,292318,15,FLATBUSH AVENUE,Brooklyn,11217,3021060026,3424472,BK-02,35,33,BK68,40.688124,-73.980392,40.68831,-73.980182,,New Construction,No,Non Prevailing Wage,0,0,37,0,0,0,21,8,8,0,0,0,0,0,37,0,37,183 +53580,530 EXTERIOR STREET (AKA E 149 ST A),Multifamily Finance Program,12/29/2015,05/25/2018,976828,530,EXTERIOR STREET,Bronx,10451,2023510025,2127039,BX-01,8,63,BX63,40.818796,-73.930343,40.81846,-73.930026,05/25/2018,New Construction,No,Non Prevailing Wage,32,0,124,0,0,1,24,67,55,11,0,0,0,0,157,0,157,157 +59835,CONFIDENTIAL,Homeowner Assistance Program,12/29/2015,12/29/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,12/29/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +50638,Doe.1345 Rogers Ave,Multifamily Finance Program,12/24/2015,01/10/2020,949243,1355,ROGERS AVENUE,Brooklyn,11210,3052290017,3328301,BK-14,45,788,BK42,40.636955,-73.950995,40.63681,-73.950599,01/10/2020,New Construction,No,Prevailing Wage,115,0,7,0,0,1,70,22,23,8,0,0,0,0,123,0,123,123 +50509,2605 Grand Concourse,Multifamily Finance Program,12/23/2015,10/16/2018,965117,2605,GRAND CONCOURSE,Bronx,10468,2031687501,2127056,BX-07,14,401,BX05,40.864727,-73.895407,40.86492,-73.89584,10/16/2018,New Construction,No,Non Prevailing Wage,0,0,24,69,0,1,6,42,40,6,0,0,0,0,94,0,94,94 +59851,Essex Terrace,Multifamily Finance Program,12/23/2015,03/31/2018,808266,750,ESSEX STREET,Brooklyn,11208,3043380001,3324005,BK-05,42,1116,BK82,40.665307,-73.878414,40.66479,-73.878577,03/31/2018,Preservation,No,Non Prevailing Wage,0,0,0,15,0,0,0,0,15,0,0,0,0,0,15,0,15,15 +59851,Essex Terrace,Multifamily Finance Program,12/23/2015,03/31/2018,808716,2305,LINDEN BOULEVARD,Brooklyn,11208,3043380001,3394543,BK-05,42,1116,BK82,40.66397,-73.878121,40.66479,-73.878577,03/31/2018,Preservation,No,Non Prevailing Wage,0,0,0,65,0,0,12,47,6,0,0,0,0,0,65,0,65,65 +59851,Essex Terrace,Multifamily Finance Program,12/23/2015,03/31/2018,808733,827,LINWOOD STREET,Brooklyn,11208,3043380001,3324006,BK-05,42,1116,BK82,40.664962,-73.879215,40.66479,-73.878577,03/31/2018,Preservation,No,Non Prevailing Wage,0,0,0,15,0,0,0,0,15,0,0,0,0,0,15,0,15,15 +59851,Essex Terrace,Multifamily Finance Program,12/23/2015,03/31/2018,955170,918,HEGEMAN AVENUE,Brooklyn,11208,3043380001,3342891,BK-05,42,1116,BK82,40.665439,-73.878832,40.66479,-73.878577,03/31/2018,Preservation,No,Non Prevailing Wage,0,0,0,9,0,0,0,0,6,3,0,0,0,0,9,0,9,9 +50655,695 GRAND STREET,Multifamily Finance Program,12/22/2015,03/28/2019,958176,695,GRAND STREET,Brooklyn,11211,3027827502,3426380,BK-01,34,495,BK90,40.711566,-73.944797,40.71183,-73.945003,01/28/2019,New Construction,No,Non Prevailing Wage,16,13,12,9,0,1,9,15,19,8,0,0,0,0,51,0,51,51 +52396,Tremont Renaissance,Multifamily Finance Program,12/22/2015,,965076,4215,PARK AVENUE,Bronx,10457,2030277501,2128937,BX-06,15,379,BX41,40.847864,-73.899225,40.84792,-73.9001,,New Construction,No,Non Prevailing Wage,0,0,129,126,0,1,25,94,119,18,0,0,0,0,256,0,256,256 +54842,Webster Commons Building D,Multifamily Finance Program,12/22/2015,10/15/2018,969555,3620,WEBSTER AVENUE,Bronx,10467,2033600176,,BX-12,11,435,BX99,40.882626,-73.869771,40.8818,-73.869932,10/15/2018,New Construction,No,Non Prevailing Wage,0,25,89,8,0,1,31,28,62,2,0,0,0,0,123,0,123,123 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,535,240,1 AVENUE,Manhattan,10009,1009720001,1082875,MN-06,4,44,MN50,40.731651,-73.982197,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,120,0,0,69,57,7,1,0,0,0,134,0,134,134 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,576,350,1 AVENUE,Manhattan,10010,1009780001,1083679,MN-06,4,60,MN50,40.735106,-73.979671,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,46,0,0,25,26,0,0,0,0,0,51,0,51,51 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804067,271,AVENUE C,Manhattan,10009,1009720001,1082644,MN-06,4,44,MN50,40.729585,-73.974964,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,39,0,0,23,18,2,0,0,0,0,43,0,43,43 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804068,277,AVENUE C,Manhattan,10009,1009720001,1082848,MN-06,4,44,MN50,40.730008,-73.974668,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,39,0,0,23,18,2,0,0,0,0,43,0,43,43 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804069,281,AVENUE C,Manhattan,10009,1009720001,1082849,MN-06,4,44,MN50,40.730109,-73.974595,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,18,0,169,0,0,97,79,10,1,0,0,0,187,0,187,187 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804070,309,AVENUE C,Manhattan,10009,1009720001,1082850,MN-06,4,44,MN50,40.730782,-73.97413,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,39,0,0,23,18,2,0,0,0,0,43,0,43,43 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804071,315,AVENUE C,Manhattan,10009,1009720001,1082851,MN-06,4,44,MN50,40.73149,-73.974137,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,12,0,116,0,0,66,54,7,1,0,0,0,128,0,128,128 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804360,435,EAST 14 STREET,Manhattan,10009,1009720001,1082879,MN-06,4,44,MN50,40.73094,-73.981505,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,8,0,78,0,0,45,37,4,0,0,0,0,86,0,86,86 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804363,447,EAST 14 STREET,Manhattan,10009,1009720001,1082880,MN-06,4,44,MN50,40.730739,-73.981025,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,22,0,207,0,0,119,97,12,1,0,0,0,229,0,229,229 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804364,505,EAST 14 STREET,Manhattan,10009,1009720001,1082883,MN-06,4,44,MN50,40.730322,-73.980036,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,72,0,0,41,34,4,0,0,0,0,79,0,79,79 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804365,521,EAST 14 STREET,Manhattan,10009,1009720001,1082885,MN-06,4,44,MN50,40.730088,-73.979492,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804366,535,EAST 14 STREET,Manhattan,10009,1009720001,1082884,MN-06,4,44,MN50,40.729855,-73.978958,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,73,0,1,41,34,4,0,0,0,0,80,0,80,80 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804367,605,EAST 14 STREET,Manhattan,10009,1009720001,1082771,MN-06,4,44,MN50,40.729306,-73.977706,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,12,0,109,0,0,63,51,6,1,0,0,0,121,0,121,121 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804372,635,EAST 14 STREET,Manhattan,10009,1009720001,1082726,MN-06,4,44,MN50,40.728737,-73.97636,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,12,0,116,0,0,66,54,7,1,0,0,0,128,0,128,128 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804374,647,EAST 14 STREET,Manhattan,10009,1009720001,1082766,MN-06,4,44,MN50,40.728614,-73.976036,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,21,0,191,0,0,110,90,11,1,0,0,0,212,0,212,212 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804381,430,EAST 20 STREET,Manhattan,10009,1009720001,1082866,MN-06,4,44,MN50,40.734282,-73.978484,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,72,0,0,41,34,4,0,0,0,0,79,0,79,79 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804382,431,EAST 20 STREET,Manhattan,10010,1009780001,1083684,MN-06,4,60,MN50,40.734428,-73.97874,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804383,441,EAST 20 STREET,Manhattan,10010,1009780001,1083688,MN-06,4,60,MN50,40.734214,-73.978285,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804384,442,EAST 20 STREET,Manhattan,10009,1009720001,1082867,MN-06,4,44,MN50,40.734183,-73.978253,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,21,0,191,0,0,110,90,11,1,0,0,0,212,0,212,212 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804385,510,EAST 20 STREET,Manhattan,10009,1009720001,1082859,MN-06,4,44,MN50,40.733824,-73.977383,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,73,0,1,41,34,4,0,0,0,0,80,0,80,80 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804386,511,EAST 20 STREET,Manhattan,10010,1009780001,1083689,MN-06,4,60,MN50,40.733824,-73.97734,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804387,522,EAST 20 STREET,Manhattan,10009,1009720001,1082860,MN-06,4,44,MN50,40.733565,-73.97677,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804388,530,EAST 20 STREET,Manhattan,10009,1009720001,1082862,MN-06,4,44,MN50,40.733263,-73.976059,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,73,0,1,41,34,4,0,0,0,0,80,0,80,80 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804389,531,EAST 20 STREET,Manhattan,10010,1009780001,1083696,MN-06,4,60,MN50,40.733447,-73.976445,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804390,541,EAST 20 STREET,Manhattan,10010,1009780001,1083701,MN-06,4,60,MN50,40.733263,-73.976012,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804391,601,EAST 20 STREET,Manhattan,10010,1009780001,1083700,MN-06,4,60,MN50,40.732967,-73.975298,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804392,610,EAST 20 STREET,Manhattan,10009,1009720001,1082852,MN-06,4,44,MN50,40.732928,-73.975255,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,7,0,72,0,0,41,34,4,0,0,0,0,79,0,79,79 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804393,622,EAST 20 STREET,Manhattan,10009,1009720001,1082853,MN-06,4,44,MN50,40.732901,-73.975186,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,17,0,153,0,0,88,72,9,1,0,0,0,170,0,170,170 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804401,420,EAST 23 STREET,Manhattan,10010,1009780001,1083686,MN-06,4,60,MN50,40.736483,-73.977812,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,1,0,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804402,440,EAST 23 STREET,Manhattan,10010,1009780001,1083690,MN-06,4,60,MN50,40.73614,-73.977014,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804403,510,EAST 23 STREET,Manhattan,10010,1009780001,1083692,MN-06,4,60,MN50,40.735783,-73.976181,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804404,530,EAST 23 STREET,Manhattan,10010,1009780001,1083695,MN-06,4,60,MN50,40.735624,-73.975799,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804833,270,1 AVENUE,Manhattan,10009,1009720001,1082877,MN-06,4,44,MN50,40.732554,-73.981537,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,39,0,1,22,18,2,0,0,0,0,43,0,43,43 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804834,272,1 AVENUE,Manhattan,10009,1009720001,1082869,MN-06,4,44,MN50,40.732663,-73.981454,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,18,0,167,0,0,95,79,10,1,0,0,0,185,0,185,185 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804835,280,1 AVENUE,Manhattan,10009,1009720001,1082870,MN-06,4,44,MN50,40.732886,-73.981284,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,35,0,0,20,17,2,0,0,0,0,39,0,39,39 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804836,300,1 AVENUE,Manhattan,10009,1009720001,1082871,MN-06,4,44,MN50,40.733605,-73.980757,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,35,0,0,20,17,2,0,0,0,0,39,0,39,39 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804837,310,1 AVENUE,Manhattan,10009,1009720001,1082863,MN-06,4,44,MN50,40.733967,-73.980497,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,4,0,36,0,0,21,17,2,0,0,0,0,40,0,40,40 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804838,410,EAST 20 STREET,Manhattan,10009,1009720001,1082865,MN-06,4,44,MN50,40.734557,-73.979086,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,12,0,114,0,0,69,49,7,1,0,0,0,126,0,126,126 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804841,360,1 AVENUE,Manhattan,10010,1009780001,1083681,MN-06,4,60,MN50,40.735712,-73.979223,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,1,0,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804842,370,1 AVENUE,Manhattan,10010,1009780001,1083685,MN-06,4,60,MN50,40.736069,-73.978967,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,804844,390,1 AVENUE,Manhattan,10010,1009780001,1083682,MN-06,4,60,MN50,40.736563,-73.978638,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,46,0,0,25,26,0,0,0,0,0,51,0,51,51 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805218,2,PETER COOPER ROAD,Manhattan,10010,1009780001,1083687,MN-06,4,60,MN50,40.735127,-73.977469,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,1,0,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805219,3,PETER COOPER ROAD,Manhattan,10010,1009780001,1083691,MN-06,4,60,MN50,40.734916,-73.977253,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805220,4,PETER COOPER ROAD,Manhattan,10010,1009780001,1083693,MN-06,4,60,MN50,40.734886,-73.977011,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805221,5,PETER COOPER ROAD,Manhattan,10010,1009780001,1083694,MN-06,4,60,MN50,40.7348,-73.975846,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,47,0,0,26,27,0,0,0,0,0,53,0,53,53 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805222,6,PETER COOPER ROAD,Manhattan,10010,1009780001,1083697,MN-06,4,60,MN50,40.734466,-73.975575,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,0,1,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805223,7,PETER COOPER ROAD,Manhattan,10010,1009780001,1083698,MN-06,4,60,MN50,40.734474,-73.975557,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,1,0,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805224,8,PETER COOPER ROAD,Manhattan,10010,1009780001,1083699,MN-06,4,60,MN50,40.734191,-73.975168,40.73487,-73.976982,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,47,0,0,25,26,1,0,0,0,0,52,0,52,52 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805341,1,STUYVESANT OVAL,Manhattan,10009,1009720001,1082881,MN-06,4,44,MN50,40.731458,-73.978423,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,9,0,84,0,0,48,40,5,0,0,0,0,93,0,93,93 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805342,11,STUYVESANT OVAL,Manhattan,10009,1009720001,1082868,MN-06,4,44,MN50,40.732268,-73.978726,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805343,12,STUYVESANT OVAL,Manhattan,10009,1009720001,1082857,MN-06,4,44,MN50,40.731458,-73.976796,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805344,18,STUYVESANT OVAL,Manhattan,10009,1009720001,1082858,MN-06,4,44,MN50,40.732297,-73.977005,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,9,0,84,0,0,48,40,5,0,0,0,0,93,0,93,93 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805345,2,STUYVESANT OVAL,Manhattan,10009,1009720001,1082769,MN-06,4,44,MN50,40.731208,-73.977799,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,9,0,84,0,0,48,40,5,0,0,0,0,93,0,93,93 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805346,5,STUYVESANT OVAL,Manhattan,10009,1009720001,1082882,MN-06,4,44,MN50,40.732084,-73.978867,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805347,6,STUYVESANT OVAL,Manhattan,10009,1009720001,1082768,MN-06,4,44,MN50,40.731254,-73.976933,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,14,0,126,0,0,72,60,7,1,0,0,0,140,0,140,140 +59857,Stuy Town Peter Cooper Village,Multifamily Finance Program,12/18/2015,12/18/2015,805348,19,STUYVESANT OVAL,Manhattan,10009,1009720001,1082874,MN-06,4,44,MN50,40.732336,-73.977802,40.73172,-73.977896,12/18/2015,Preservation,Yes,Non Prevailing Wage,0,0,9,0,84,0,0,48,40,5,0,0,0,0,93,0,93,93 +44388,2264 Morris Avenue,Multifamily Finance Program,12/17/2015,12/26/2018,958153,2264,MORRIS AVENUE,Bronx,10453,2031710013,2013863,BX-05,14,23704,BX40,40.857456,-73.902308,40.85759,-73.901885,12/26/2018,New Construction,No,Non Prevailing Wage,31,0,62,0,0,1,31,23,26,14,0,0,0,0,94,0,94,94 +53551,Lower East Side - Inclusionary Zoning,Multifamily Finance Program,12/17/2015,11/21/2017,11564,377,EAST 10 STREET,Manhattan,10009,1003930047,1004898,MN-03,2,28,MN28,40.726325,-73.978587,40.72647,-73.978396,11/21/2017,Preservation,No,Non Prevailing Wage,0,12,0,0,0,0,3,2,3,4,0,0,0,0,0,12,12,12 +53551,Lower East Side - Inclusionary Zoning,Multifamily Finance Program,12/17/2015,11/21/2017,968210,546,EAST 13 STREET,Manhattan,10009,,,MN-03,2,34,MN22,40.729155,-73.979524,,,11/21/2017,Preservation,No,Non Prevailing Wage,0,14,0,0,0,0,3,3,8,0,0,0,0,0,0,14,14,14 +59821,CONFIDENTIAL,Homeowner Assistance Program,12/17/2015,12/17/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/17/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +59823,Scheuer House of Coney Island (20150028),Multifamily Incentives Program,12/17/2015,,379767,3601,SURF AVENUE,Brooklyn,11224,3070450031,3321762,BK-13,47,342,BK21,40.573144,-74.001587,40.57371,-74.002088,,Preservation,No,Non Prevailing Wage,0,0,197,0,0,0,70,126,1,0,0,0,0,0,197,0,197,197 +59908,CONFIDENTIAL,Homeowner Assistance Program,12/17/2015,04/01/2016,,----,----,Queens,,,,QN-12,27,,,,,,,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53188,1890 Andrews Avenue,Multifamily Finance Program,12/14/2015,01/31/2019,45564,1890,ANDREWS AVENUE SOUTH,Bronx,10453,2028790028,2009053,BX-05,14,24501,BX36,40.853486,-73.913889,40.85348,-73.9136,01/31/2019,Preservation,No,Non Prevailing Wage,16,39,0,0,0,1,0,27,21,6,2,0,0,0,56,0,56,56 +59830,CONFIDENTIAL,Homeowner Assistance Program,12/09/2015,12/09/2015,,----,----,Bronx,,,,BX-10,13,,,,,,,12/09/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +52435,Essex Crossing - Site 6,Multifamily Finance Program,12/08/2015,10/25/2017,969128,164,BROOME STREET,Manhattan,10002,1003477501,1089451,MN-03,1,1402,MN28,40.716678,-73.985452,40.71705,-73.985754,10/25/2017,New Construction,No,Non Prevailing Wage,0,20,79,0,0,1,0,100,0,0,0,0,0,0,100,0,100,100 +59839,CONFIDENTIAL,Homeowner Assistance Program,12/07/2015,12/07/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/07/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54304,781 Metropolitan Avenue,Multifamily Incentives Program,12/04/2015,05/31/2018,975737,771,METROPOLITAN AVENUE,Brooklyn,11211,3027607502,,BK-01,34,497,BK90,40.714615,-73.943583,40.7149,-73.943121,05/31/2018,New Construction,No,Non Prevailing Wage,0,0,16,0,0,0,4,4,8,0,0,0,0,0,16,0,16,80 +59837,CONFIDENTIAL,Homeowner Assistance Program,12/04/2015,12/04/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/04/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52827,2609 Briggs Realty LLC,Multifamily Finance Program,12/03/2015,11/27/2017,51239,2609,BRIGGS AVENUE,Bronx,10458,2032930139,2016826,BX-07,15,39901,BX05,40.864239,-73.893275,40.86463,-73.893339,11/27/2017,Preservation,No,Non Prevailing Wage,2,0,51,2,0,0,0,55,0,0,0,0,0,0,55,0,55,55 +52888,2636 University LLC,Multifamily Finance Program,12/03/2015,05/07/2018,116689,2636,UNIVERSITY AVENUE,Bronx,10468,2032150020,2014675,BX-07,14,265,BX30,40.867556,-73.901625,40.86795,-73.900991,05/07/2018,Preservation,No,Non Prevailing Wage,1,3,24,2,0,0,0,0,30,0,0,0,0,0,30,0,30,30 +52789,210 Livingston Street,Multifamily Incentives Program,12/02/2015,06/20/2019,955834,45,HOYT STREET,Brooklyn,11201,3001650001,3426645,BK-02,33,37,BK38,40.689269,-73.985973,40.6892,-73.985634,06/20/2019,New Construction,No,Non Prevailing Wage,0,0,74,0,0,0,22,34,18,0,0,0,0,0,74,0,74,368 +59856,Washington Square Southeast,Multifamily Finance Program,12/01/2015,12/18/2015,43811,501,LA GUARDIA PLACE,Manhattan,10012,1005240001,1008241,MN-02,1,5501,MN23,40.727573,-73.999361,40.72713,-73.999022,12/18/2015,Preservation,No,Non Prevailing Wage,0,175,0,0,0,0,0,58,59,58,0,0,0,0,0,175,175,175 +59554,CONFIDENTIAL,Homeowner Assistance Program,11/30/2015,01/25/2016,,----,----,Bronx,,,,BX-09,18,,,,,,,01/25/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52119,EXCELSIOR II,Multifamily Finance Program,11/25/2015,02/14/2019,990448,126,WEST 169 STREET,Bronx,10452,2025180031,2124814,BX-04,16,211,BX26,40.839973,-73.924289,40.83953,-73.924622,02/14/2019,New Construction,No,Non Prevailing Wage,6,29,24,0,0,1,5,24,31,0,0,0,0,0,60,0,60,60 +59409,CONFIDENTIAL,Homeowner Assistance Program,11/25/2015,11/25/2015,,----,----,Brooklyn,,,,BK-05,42,,,,,,,11/25/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +52082,ESSEX CROSSING - SITE 1,Multifamily Finance Program,11/24/2015,07/05/2018,968932,242,BROOME STREET,Manhattan,10002,1004097502,1090581,MN-03,1,18,MN27,40.717865,-73.989347,40.71805,-73.989008,07/05/2018,New Construction,No,Non Prevailing Wage,0,0,0,11,0,0,0,5,4,2,0,0,0,0,0,11,11,55 +52415,UPS. 1060 Rev. James Polite Ave,Multifamily Finance Program,11/24/2015,11/27/2017,965693,1060,REV JAMES POLITE AVENUE,Bronx,10459,2026910064,2128690,BX-02,17,131,BX33,40.825102,-73.898833,40.82537,-73.898424,11/27/2017,New Construction,No,Prevailing Wage,42,14,12,0,0,1,56,0,13,0,0,0,0,0,69,0,69,69 +59407,CONFIDENTIAL,Homeowner Assistance Program,11/24/2015,11/24/2015,,----,----,Manhattan,,,,MN-08,5,,,,,,,11/24/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +59827,15 Hudson Yards Apartments,Multifamily Incentives Program,11/23/2015,,966743,553,WEST 30 STREET,Manhattan,10001,1007027502,1089411,MN-04,3,99,MN13,40.752894,-74.002934,40.75326,-74.002841,,New Construction,No,Non Prevailing Wage,0,0,106,0,0,0,24,29,53,0,0,0,0,0,106,0,106,106 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,209164,992,BERGEN STREET,Brooklyn,11216,3012170034,3030589,BK-08,35,221,BK61,40.676446,-73.954045,40.67617,-73.954088,07/21/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,295918,658,FRANKLIN AVENUE,Brooklyn,11238,3011560051,3028671,BK-08,35,305,BK61,40.675755,-73.95614,40.67576,-73.95632,07/24/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,2,0,0,3,6,0,0,0,0,0,9,0,9,9 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,295950,693,FRANKLIN AVENUE,Brooklyn,11238,3012310012,3031110,BK-08,35,221,BK61,40.674802,-73.956465,40.67476,-73.956231,07/21/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,2,0,1,0,4,3,0,0,0,0,8,0,8,8 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,295952,695,FRANKLIN AVENUE,Brooklyn,11238,3012310010,3031109,BK-08,35,221,BK61,40.674748,-73.956483,40.67469,-73.956234,07/21/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,1,0,6,1,0,0,0,0,8,0,8,8 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,295953,697,FRANKLIN AVENUE,Brooklyn,11238,3012310008,3031108,BK-08,35,221,BK61,40.674693,-73.956505,40.67461,-73.956242,05/15/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,2,6,0,0,0,0,0,0,8,0,8,8 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,296014,786,FRANKLIN AVENUE,Brooklyn,11238,3011780052,3029602,BK-08,35,217,BK61,40.67172,-73.957603,40.67178,-73.957876,01/02/2018,Preservation,No,Non Prevailing Wage,0,0,7,0,1,0,1,0,6,1,0,0,0,0,8,0,8,8 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,357206,572,PROSPECT PLACE,Brooklyn,11238,3011630035,3029003,BK-08,35,305,BK61,40.675368,-73.957946,40.67505,-73.957781,09/01/2017,Preservation,No,Non Prevailing Wage,0,0,17,0,3,0,0,9,8,3,0,0,0,0,20,0,20,20 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,373725,1405,ST JOHNS PLACE,Brooklyn,11213,3013780063,3036830,BK-08,36,351,BK61,40.670646,-73.931937,40.67092,-73.93181,08/03/2017,Preservation,No,Non Prevailing Wage,0,0,15,0,5,0,0,9,11,0,0,0,0,0,20,0,20,20 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,374066,611,ST JOHNS PLACE,Brooklyn,11238,3011750068,3029499,BK-08,35,217,BK61,40.672558,-73.957984,40.67281,-73.957887,08/03/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,4,0,0,1,6,1,0,0,0,0,8,0,8,8 +52725,Franklin,Multifamily Finance Program,11/20/2015,01/02/2018,376783,582,STERLING PLACE,Brooklyn,11238,3011750026,3324401,BK-08,35,217,BK61,40.673752,-73.959288,40.67347,-73.95922,01/02/2018,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,3,0,0,0,0,0,4,0,4,4 +50938,1347 BRISTOW ST,Multifamily Finance Program,11/18/2015,03/13/2017,51561,1347,BRISTOW STREET,Bronx,10459,2029720034,2010431,BX-03,16,153,BX75,40.831908,-73.894913,40.83194,-73.895155,03/13/2017,Preservation,No,Non Prevailing Wage,0,23,0,0,0,0,0,11,7,5,0,0,0,0,13,10,23,23 +52646,Common Ground.411 East 178th St. Webster Ave.,Multifamily Finance Program,11/18/2015,07/20/2018,989356,411,EAST 178 STREET,Bronx,10457,2030280003,2127101,BX-06,15,379,BX41,40.849058,-73.899606,40.84946,-73.899573,07/20/2018,New Construction,No,Prevailing Wage,90,0,80,0,0,1,170,0,1,0,0,0,0,0,171,0,171,171 +52597,HELP. 984 Woodycrest Avenue,Multifamily Finance Program,11/17/2015,01/11/2018,955365,984,WOODYCREST AVENUE,Bronx,10452,2025070015,2129368,BX-04,8,189,BX26,40.83218,-73.928335,40.83212,-73.928053,01/11/2018,New Construction,No,Prevailing Wage,48,0,0,0,0,0,48,0,0,0,0,0,0,0,48,0,48,48 +59426,CONFIDENTIAL,Homeowner Assistance Program,11/16/2015,11/16/2015,,----,----,Bronx,,,,BX-11,13,,,,,,,11/16/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +59366,CONFIDENTIAL,Homeowner Assistance Program,11/13/2015,11/16/2015,,----,----,Brooklyn,,,,BK-03,33,,,,,,,11/16/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +52580,237 DUFFIELD STREET,Multifamily Incentives Program,11/12/2015,01/11/2019,955314,237,DUFFIELD STREET,Brooklyn,11201,3001460007,3425660,BK-02,33,15,BK38,40.691078,-73.984383,40.69093,-73.984134,01/11/2019,New Construction,No,Non Prevailing Wage,0,0,22,0,0,0,1,18,3,0,0,0,0,0,22,0,22,105 +59361,CONFIDENTIAL,Homeowner Assistance Program,11/12/2015,11/12/2015,,----,----,Queens,,,,QN-12,27,,,,,,,11/12/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59363,CONFIDENTIAL,Homeowner Assistance Program,11/10/2015,11/10/2015,,----,----,Queens,,,,QN-09,32,,,,,,,11/10/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +59405,CONFIDENTIAL,Homeowner Assistance Program,11/09/2015,11/09/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,11/09/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +59365,CONFIDENTIAL,Homeowner Assistance Program,11/04/2015,11/04/2015,,----,----,Queens,,,,QN-07,19,,,,,,,11/04/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59424,CONFIDENTIAL,Homeowner Assistance Program,11/03/2015,11/03/2015,,----,----,Queens,,,,QN-02,26,,,,,,,11/03/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52795,WIN. 21 WEST 118TH STREET,Multifamily Finance Program,11/02/2015,12/20/2017,805885,17,WEST 118 STREET,Manhattan,10026,1017170022,1083960,MN-10,9,190,MN11,40.802328,-73.946333,40.80265,-73.946553,12/20/2017,Preservation,No,Non Prevailing Wage,34,0,0,0,0,1,3,3,29,0,0,0,0,0,35,0,35,35 +52782,Pitkin Berriman,Multifamily Finance Program,10/30/2015,04/27/2018,958149,2501,PITKIN AVENUE,Brooklyn,11208,3040057501,,BK-05,37,1166,BK82,40.674238,-73.880081,40.67449,-73.880308,04/27/2018,New Construction,No,Non Prevailing Wage,8,16,35,0,0,1,0,27,29,4,0,0,0,0,60,0,60,60 +59816,The Victoria Theater (20146036),Multifamily Incentives Program,10/30/2015,,39477,233,WEST 125 STREET,Manhattan,10027,1019310017,1058657,MN-10,9,222,MN11,40.809462,-73.949463,40.80995,-73.949365,,New Construction,No,Prevailing Wage,0,41,24,0,0,0,16,20,29,0,0,0,0,0,65,0,65,191 +44602,CYPRESS. 137 JAMAICA AVENUE,Multifamily Finance Program,10/29/2015,01/02/2018,927742,137,JAMAICA AVENUE,Brooklyn,11207,3034870021,3326569,BK-05,37,114201,BK83,40.679152,-73.895291,40.67973,-73.8953,01/02/2018,New Construction,No,Prevailing Wage,53,0,0,0,0,1,0,53,1,0,0,0,0,0,54,0,54,54 +65129,679 GRAND LLC,Multifamily Incentives Program,10/29/2015,05/08/2018,302814,679,GRAND STREET,Brooklyn,11211,3027820041,3069428,BK-01,34,495,BK90,40.711531,-73.945162,40.71175,-73.945306,05/08/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,10 +59296,CONFIDENTIAL,Homeowner Assistance Program,10/28/2015,10/28/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,10/28/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,183061,549,ALABAMA AVENUE,Brooklyn,11207,3038370020,3085461,BK-05,42,1130,BK85,40.662396,-73.896333,40.66251,-73.896077,12/31/2017,Preservation,No,Non Prevailing Wage,3,1,0,0,0,0,0,0,2,0,0,2,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,183665,319,ALBANY AVENUE,Brooklyn,11213,3013880004,3037243,BK-08,35,337,BK61,40.669624,-73.939382,40.66969,-73.939144,05/24/2018,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,0,1,5,0,0,0,0,6,0,6,6 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,184933,325,ASHFORD STREET,Brooklyn,11207,3040000008,3088885,BK-05,37,1150,BK82,40.674347,-73.885233,40.67441,-73.885013,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,184969,424,ASHFORD STREET,Brooklyn,11207,3040310031,3089471,BK-05,42,1162,BK82,40.671775,-73.884595,40.67179,-73.884848,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,0,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,185006,493,ASHFORD STREET,Brooklyn,11207,3040480011,3089753,BK-05,42,1162,BK82,40.670081,-73.884141,40.67011,-73.883906,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,207557,784,BELMONT AVENUE,Brooklyn,11208,3040360020,3089577,BK-05,42,1164,BK82,40.672803,-73.880794,40.6726,-73.880769,12/31/2017,Preservation,No,Non Prevailing Wage,2,1,0,0,0,0,0,0,2,0,0,0,1,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,208318,1346,BERGEN STREET,Brooklyn,11213,3012230027,3030825,BK-08,36,311,BK61,40.67555,-73.940039,40.67529,-73.940159,12/31/2017,Preservation,No,Non Prevailing Wage,0,7,2,0,0,0,2,0,0,6,1,0,0,0,9,0,9,9 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,209451,355,BERRIMAN STREET,Brooklyn,11208,3040700018,3090233,BK-05,42,1118,BK82,40.669666,-73.87873,40.66976,-73.878474,07/31/2018,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,1,0,1,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,211277,209,BRADFORD STREET,Brooklyn,11207,3037080003,3083721,BK-05,37,1152,BK82,40.674203,-73.892562,40.6742,-73.892292,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,2,0,2,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,211313,301,BRADFORD STREET,Brooklyn,11207,3037420009,3083973,BK-05,37,1152,BK82,40.671757,-73.891935,40.67176,-73.891654,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,2,1,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,211318,306,BRADFORD STREET,Brooklyn,11207,3037410036,3083960,BK-05,37,1152,BK82,40.671678,-73.891939,40.67157,-73.892195,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,211373,375,BRADFORD STREET,Brooklyn,11207,3037760024,3084395,BK-05,42,1158,BK85,40.669624,-73.891391,40.66979,-73.891149,12/31/2017,Preservation,No,Non Prevailing Wage,1,1,0,0,0,0,0,0,1,0,0,1,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,215680,1141,BUSHWICK AVENUE,Brooklyn,11221,3033670003,3076963,BK-04,34,399,BK78,40.689364,-73.917887,40.68958,-73.917652,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,219547,514,CHESTER STREET,Brooklyn,11212,3036130040,3082596,BK-16,42,916,BK81,40.658808,-73.908943,40.65878,-73.90922,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,1,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,222346,700,CLEVELAND STREET,Brooklyn,11208,3040800040,3090548,BK-05,42,1120,BK82,40.667288,-73.882603,40.66721,-73.882833,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,1,1,0,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,222365,743,CLEVELAND STREET,Brooklyn,11208,3043130076,3097081,BK-05,42,1120,BK82,40.665961,-73.882108,40.66617,-73.881952,12/31/2017,Preservation,No,Non Prevailing Wage,2,3,0,0,0,0,1,0,0,0,3,1,0,0,5,0,5,5 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,225767,180,COOPER STREET,Brooklyn,11207,3034410017,3080008,BK-04,37,411,BK78,40.68868,-73.906454,40.68846,-73.906317,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,1,1,1,1,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,225768,182,COOPER STREET,Brooklyn,11207,3034410018,3080009,BK-04,37,411,BK78,40.688713,-73.906418,40.68852,-73.906263,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,1,1,1,1,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,226070,109,CORNELIA STREET,Brooklyn,11221,3033740036,3077183,BK-04,34,399,BK78,40.689975,-73.915752,40.69021,-73.915798,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,226072,110,CORNELIA STREET,Brooklyn,11221,3033810034,3077504,BK-04,37,399,BK78,40.689967,-73.915733,40.68995,-73.915398,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,229994,1414,DE KALB AVENUE,Brooklyn,11237,3032460011,3073818,BK-04,37,429,BK77,40.700141,-73.923316,40.69987,-73.92323,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,2,0,2,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,288052,869,EASTERN PARKWAY,Brooklyn,11213,3012650046,3032842,BK-08,35,337,BK61,40.669281,-73.939843,40.66968,-73.939576,08/03/2018,Preservation,No,Non Prevailing Wage,0,8,0,0,0,0,0,1,3,3,1,0,0,0,8,0,8,8 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,288549,309,ELDERT STREET,Brooklyn,11237,3034130065,3078939,BK-04,37,437,BK77,40.693031,-73.906884,40.69308,-73.907187,12/31/2017,Preservation,No,Non Prevailing Wage,1,6,0,0,0,0,0,0,3,2,0,2,0,0,7,0,7,7 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,289110,363,ELTON STREET,Brooklyn,11208,3040020003,3088921,BK-05,37,1166,BK82,40.674318,-73.883535,40.67435,-73.8833,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,299929,543,GEORGIA AVENUE,Brooklyn,11207,3038210003,3085004,BK-05,42,1126,BK85,40.663246,-73.895597,40.66317,-73.895308,07/10/2018,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,2,0,1,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,299935,556,GEORGIA AVENUE,Brooklyn,11207,3038370034,3085467,BK-05,42,1130,BK85,40.662598,-73.895461,40.66264,-73.895745,12/31/2017,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,0,1,1,1,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,301045,923,GLENMORE AVENUE,Brooklyn,11208,3041900046,3094230,BK-05,37,1192,BK82,40.676146,-73.875943,40.67633,-73.875996,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,307551,988,HANCOCK STREET,Brooklyn,11221,3033940013,3078147,BK-04,37,397,BK78,40.686992,-73.916303,40.6868,-73.916149,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,0,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,309651,873,HEGEMAN AVENUE,Brooklyn,11208,3043130040,3097063,BK-05,42,1120,BK82,40.664812,-73.880347,40.66499,-73.880498,12/31/2017,Preservation,No,Non Prevailing Wage,5,1,0,0,0,0,0,0,4,2,0,0,0,0,6,0,6,6 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,310573,679,HENDRIX STREET,Brooklyn,11207,3040890002,3090705,BK-05,42,1124,BK82,40.664915,-73.887379,40.66495,-73.88713,12/31/2017,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,1,1,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,313046,277,HINSDALE STREET,Brooklyn,11207,3037670016,3084271,BK-05,42,1134,BK85,40.668232,-73.899738,40.66833,-73.899478,12/31/2017,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,313054,293,HINSDALE STREET,Brooklyn,11207,3037670009,3084268,BK-05,42,1134,BK85,40.667935,-73.899663,40.66795,-73.899381,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,313060,305,HINSDALE STREET,Brooklyn,11207,3037670004,3084263,BK-05,42,1134,BK85,40.667713,-73.899605,40.66768,-73.899313,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,313062,311,HINSDALE STREET,Brooklyn,11207,3037670002,3084261,BK-05,42,1134,BK85,40.6676,-73.899577,40.66758,-73.899288,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,321436,811,KNICKERBOCKER AVENUE,Brooklyn,11207,3034190008,3079114,BK-04,37,437,BK77,40.692436,-73.907134,40.69262,-73.906985,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,1,0,0,0,0,0,2,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,327205,2474,LINDEN BOULEVARD,Brooklyn,11208,3045040004,3098845,BK-05,42,1116,BK82,40.666418,-73.872392,40.66614,-73.872169,12/31/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,327210,2484,LINDEN BOULEVARD,Brooklyn,11208,3045040008,3098849,BK-05,42,1116,BK82,40.666541,-73.87214,40.66624,-73.871946,12/31/2017,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,1 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,328488,436,LOGAN STREET,Brooklyn,11208,3042080031,3094560,BK-05,37,1192,BK82,40.675518,-73.876384,40.67551,-73.876669,05/15/2018,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,2,2,0,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,328494,442,LOGAN STREET,Brooklyn,11208,3042080033,3094562,BK-05,37,1192,BK82,40.675403,-73.876355,40.67535,-73.876629,12/31/2017,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,0,1,3,2,0,0,0,6,0,6,6 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,337322,171,MILFORD STREET,Brooklyn,11208,3042080011,3094549,BK-05,37,1192,BK82,40.675371,-73.877285,40.67542,-73.877011,12/31/2017,Preservation,No,Non Prevailing Wage,0,8,0,0,0,0,1,0,0,6,1,0,0,0,8,0,8,8 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,337330,180,MILFORD STREET,Brooklyn,11208,3040080031,3089063,BK-05,37,1192,BK82,40.675206,-73.877264,40.67512,-73.877527,12/31/2017,Preservation,No,Non Prevailing Wage,1,4,0,0,0,0,0,0,4,1,0,0,0,0,5,0,5,5 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,337374,271,MILFORD STREET,Brooklyn,11208,3042450008,3095284,BK-05,42,1194,BK82,40.67268,-73.876612,40.67269,-73.876342,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,0,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,338045,629,MILLER AVENUE,Brooklyn,11207,3040870019,3090650,BK-05,42,1124,BK82,40.665022,-73.889261,40.66509,-73.889008,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,2,0,1,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,338076,694,MILLER AVENUE,Brooklyn,11207,3043030011,3096698,BK-05,42,1122,BK85,40.663152,-73.888665,40.66323,-73.889044,12/31/2017,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,1,1,0,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,338096,730,MILLER AVENUE,Brooklyn,11207,3043030024,3096708,BK-05,42,1122,BK85,40.662608,-73.888259,40.66251,-73.888511,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,1,1,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,338108,752,MILLER AVENUE,Brooklyn,11207,3043030031,3096714,BK-05,42,1122,BK85,40.662273,-73.888011,40.66209,-73.888202,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,1,1,0,2,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,338415,23,MOFFAT STREET,Brooklyn,11207,3034380056,3079892,BK-04,37,403,BK78,40.683732,-73.91016,40.68383,-73.910401,12/31/2017,Preservation,No,Non Prevailing Wage,1,1,0,0,0,0,0,1,0,0,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,339420,113,MONTAUK AVENUE,Brooklyn,11208,3039920010,3088758,BK-05,37,1192,BK82,40.676586,-73.87853,40.67666,-73.878278,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,342349,276,NEW JERSEY AVENUE,Brooklyn,11207,3037210025,3083818,BK-05,37,1144,BK85,40.672803,-73.895063,40.67282,-73.895337,12/31/2017,Preservation,No,Non Prevailing Wage,1,4,0,0,0,0,1,1,0,0,3,0,0,0,5,0,5,5 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,344503,422,NEWPORT STREET,Brooklyn,11207,3038500026,3085768,BK-05,42,1132,BK85,40.660804,-73.899154,40.66056,-73.899147,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,344509,430,NEWPORT STREET,Brooklyn,11207,3038500029,3085771,BK-05,42,1132,BK85,40.660834,-73.898942,40.6606,-73.898877,12/31/2017,Preservation,No,Non Prevailing Wage,0,1,1,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,349622,1445,PACIFIC STREET,Brooklyn,11216,3012030066,3029892,BK-08,36,313,BK61,40.677322,-73.943531,40.67756,-73.943661,05/15/2018,Preservation,No,Non Prevailing Wage,0,8,0,0,0,0,2,0,0,5,0,1,0,0,8,0,8,8 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,349735,1600,PACIFIC STREET,Brooklyn,11213,3013400040,3035653,BK-08,36,311,BK61,40.676904,-73.936231,40.67669,-73.936177,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,350990,142,PALMETTO STREET,Brooklyn,11221,3033500023,3076592,BK-04,34,417,BK78,40.692869,-73.917565,40.69283,-73.917262,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,0,0,0,0,0,2,0,2,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,350995,16,PALMETTO STREET,Brooklyn,11221,3033480015,3076516,BK-04,34,397,BK78,40.689586,-73.920789,40.68938,-73.920653,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,0,0,1,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,351107,366,PALMETTO STREET,Brooklyn,11237,3033530010,3076673,BK-04,37,439,BK77,40.698393,-73.912142,40.69833,-73.911861,12/31/2017,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,1,0,3,0,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,353157,566,PENNSYLVANIA AVENUE,Brooklyn,11207,3038220050,3085067,BK-05,42,1126,BK85,40.663524,-73.893736,40.66336,-73.894054,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,353204,659,PENNSYLVANIA AVENUE,Brooklyn,11207,3042990068,3096494,BK-05,42,1128,BK85,40.661122,-73.892543,40.66127,-73.892287,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,354267,2482,PITKIN AVENUE,Brooklyn,11208,3040210016,3089311,BK-05,37,1166,BK82,40.674134,-73.880662,40.67392,-73.880608,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,1,1,1,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,369264,537,SHEFFIELD AVENUE,Brooklyn,11207,3038220107,3085069,BK-05,42,1126,BK85,40.663712,-73.894778,40.66371,-73.894507,12/31/2017,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,0,0,1,5,0,0,0,6,0,6,6 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371205,535,SNEDIKER AVENUE,Brooklyn,11207,3038340108,3085384,BK-05,42,1132,BK85,40.661723,-73.899027,40.66178,-73.898764,12/31/2017,Preservation,No,Non Prevailing Wage,1,2,0,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371214,547,SNEDIKER AVENUE,Brooklyn,11207,3038340004,3085361,BK-05,42,1132,BK85,40.661501,-73.898969,40.6615,-73.898692,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,1,1,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371215,550,SNEDIKER AVENUE,Brooklyn,11207,3038330041,3085353,BK-05,42,1132,BK85,40.66146,-73.898984,40.6614,-73.899244,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371237,601,SNEDIKER AVENUE,Brooklyn,11207,3038510004,3085791,BK-05,42,1132,BK85,40.660081,-73.898608,40.66009,-73.898337,04/18/2018,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371239,605,SNEDIKER AVENUE,Brooklyn,11207,3038510003,3085790,BK-05,42,1132,BK85,40.660007,-73.89859,40.66003,-73.898319,12/31/2017,Preservation,No,Non Prevailing Wage,1,1,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371241,607,SNEDIKER AVENUE,Brooklyn,11207,3038510002,3085789,BK-05,42,1132,BK85,40.659969,-73.898579,40.65997,-73.898305,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371244,610,SNEDIKER AVENUE,Brooklyn,11207,3038500042,3085781,BK-05,42,1132,BK85,40.659955,-73.898597,40.65981,-73.898831,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,371245,614,SNEDIKER AVENUE,Brooklyn,11207,3038500043,3085782,BK-05,42,1132,BK85,40.659881,-73.898579,40.65974,-73.898814,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,2,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,374219,907,ST JOHNS PLACE,Brooklyn,11216,3012480046,3031951,BK-08,35,31702,BK61,40.671541,-73.948406,40.67182,-73.948258,12/31/2017,Preservation,No,Non Prevailing Wage,0,4,1,0,0,0,0,2,0,2,1,0,0,0,5,0,5,5 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,376867,721,STERLING PLACE,Brooklyn,11216,3012380046,3031431,BK-08,35,219,BK61,40.672905,-73.955035,40.6731,-73.954764,07/10/2018,Preservation,No,Non Prevailing Wage,1,3,0,0,0,0,0,0,0,0,4,0,0,0,4,0,4,4 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,385461,573,VAN SICLEN AVENUE,Brooklyn,11207,3040880117,3090703,BK-05,42,1124,BK82,40.665325,-73.88842,40.66543,-73.888258,05/31/2018,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,1,1,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,396150,1142,WILLOUGHBY AVENUE,Brooklyn,11237,3032090025,3072944,BK-04,34,429,BK77,40.701935,-73.92507,40.70192,-73.924724,12/31/2017,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,398765,459,WYONA STREET,Brooklyn,11207,3037920011,3084565,BK-05,42,1158,BK85,40.667395,-73.891773,40.66741,-73.891502,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,1,1,0,0,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,398768,462,WYONA STREET,Brooklyn,11207,3037910043,3084552,BK-05,42,1158,BK85,40.667354,-73.891784,40.66717,-73.892011,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,1,1,0,0,0,2,0,2,2 +53157,MHANY 75,Multifamily Finance Program,10/27/2015,08/03/2018,398769,463,WYONA STREET,Brooklyn,11207,,,BK-05,42,1158,BK85,40.667319,-73.891755,,,12/31/2017,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +59333,CONFIDENTIAL,Homeowner Assistance Program,10/27/2015,10/27/2015,,----,----,Brooklyn,,,,BK-10,43,,,,,,,10/27/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +59293,CONFIDENTIAL,Homeowner Assistance Program,10/26/2015,10/26/2015,,----,----,Queens,,,,QN-12,31,,,,,,,10/26/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52127,Vernon Tower,Multifamily Incentives Program,10/23/2015,08/07/2019,953909,31-43,VERNON BOULEVARD,Queens,11106,4005020007,4436850,QN-01,26,81,QN71,40.768293,-73.935855,40.76819,-73.935508,08/07/2019,New Construction,No,Non Prevailing Wage,0,0,21,0,0,0,5,5,11,0,0,0,0,0,21,0,21,103 +59294,CONFIDENTIAL,Homeowner Assistance Program,10/22/2015,10/22/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/22/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59304,CONFIDENTIAL,Homeowner Assistance Program,10/22/2015,10/22/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/22/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65112,319 MELROSE STREET,Multifamily Incentives Program,10/22/2015,,957679,319,MELROSE STREET,Brooklyn,11237,3031580047,3425099,BK-04,34,427,BK77,40.7032,-73.928535,40.70329,-73.928787,,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +59301,CONFIDENTIAL,Homeowner Assistance Program,10/21/2015,10/21/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,10/21/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +59138,CONFIDENTIAL,Homeowner Assistance Program,10/20/2015,12/17/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/17/2015,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +59292,CONFIDENTIAL,Homeowner Assistance Program,10/20/2015,10/20/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,10/20/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52662,Longfellow Avenue,Multifamily Finance Program,10/14/2015,11/22/2017,90958,1325,LAFAYETTE AVENUE,Bronx,10474,2027620181,2006477,BX-02,17,11502,BX27,40.81699,-73.885825,40.81728,-73.885684,11/22/2017,Preservation,No,Non Prevailing Wage,0,4,48,0,20,1,1,42,24,6,0,0,0,0,73,0,73,73 +52662,Longfellow Avenue,Multifamily Finance Program,10/14/2015,11/22/2017,92484,837,LONGFELLOW AVENUE,Bronx,10474,2027620164,2006475,BX-02,17,11502,BX27,40.818142,-73.88553,40.81833,-73.88587,11/22/2017,Preservation,No,Non Prevailing Wage,0,2,17,0,6,1,5,11,10,0,0,0,0,0,26,0,26,26 +52662,Longfellow Avenue,Multifamily Finance Program,10/14/2015,11/22/2017,92486,841,LONGFELLOW AVENUE,Bronx,10474,2027620163,2006474,BX-02,17,11502,BX27,40.818227,-73.885552,40.81848,-73.885909,11/22/2017,Preservation,No,Non Prevailing Wage,0,6,14,0,5,0,5,11,9,0,0,0,0,0,25,0,25,25 +52662,Longfellow Avenue,Multifamily Finance Program,10/14/2015,11/22/2017,92487,845,LONGFELLOW AVENUE,Bronx,10474,2027620161,2006473,BX-02,17,11502,BX27,40.818312,-73.885577,40.81863,-73.885949,11/22/2017,Preservation,No,Non Prevailing Wage,0,6,11,0,7,1,5,11,9,0,0,0,0,0,25,0,25,25 +65066,127 GRAHAM AVENUE LLC,Multifamily Incentives Program,10/13/2015,01/27/2017,301960,127,GRAHAM AVENUE,Brooklyn,11206,3030700023,3325867,BK-01,34,505,BK90,40.70618,-73.943027,40.70618,-73.94333,01/27/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,5 +59341,CONFIDENTIAL,Homeowner Assistance Program,10/08/2015,10/08/2015,,----,----,Brooklyn,,,,BK-05,37,,,,,,,10/08/2015,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +52129,56 North 9th Street,Multifamily Incentives Program,10/07/2015,,953919,56,NORTH 9 STREET,Brooklyn,11249,3023090005,3425621,BK-01,33,557,BK73,40.721113,-73.960046,40.72105,-73.960381,,New Construction,No,Non Prevailing Wage,0,0,12,0,0,0,2,3,7,0,0,0,0,0,12,0,12,57 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,205657,1430,BEDFORD AVENUE,Brooklyn,11216,3012310047,3031131,BK-08,35,221,BK61,40.674263,-73.953787,40.67419,-73.954115,10/05/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,2,1,5,0,0,0,0,0,8,0,8,8 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,215387,268,BUFFALO AVENUE,Brooklyn,11213,3013860048,3037182,BK-08,36,357,BK61,40.669742,-73.925474,40.66961,-73.925806,05/23/2017,Preservation,No,Non Prevailing Wage,0,3,28,0,0,1,2,8,20,2,0,0,0,0,32,0,32,32 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,326400,1491,LINCOLN PLACE,Brooklyn,11213,3013860068,3037195,BK-08,36,357,BK61,40.669531,-73.927089,40.66974,-73.927165,08/23/2017,Preservation,No,Non Prevailing Wage,0,3,13,0,0,0,1,4,8,3,0,0,0,0,16,0,16,16 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,332699,784,MARCY AVENUE,Brooklyn,11216,3018080051,3322225,BK-03,36,251,BK75,40.686922,-73.947536,40.68676,-73.947847,11/19/2018,Preservation,No,Non Prevailing Wage,0,2,15,0,0,0,0,1,16,0,0,0,0,0,17,0,17,17 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,386987,12,VERNON AVENUE,Brooklyn,11206,3017580012,3048743,BK-03,36,253,BK75,40.694349,-73.951519,40.69409,-73.951707,02/12/2018,Preservation,No,Non Prevailing Wage,0,2,14,0,0,0,1,1,13,1,0,0,0,0,16,0,16,16 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,387003,16,VERNON AVENUE,Brooklyn,11206,3017580014,3048744,BK-03,36,253,BK75,40.694365,-73.951389,40.69411,-73.95153,02/12/2018,Preservation,No,Non Prevailing Wage,0,3,13,0,0,0,1,1,13,1,0,0,0,0,16,0,16,16 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,387191,4,VERNON AVENUE,Brooklyn,11206,3017580005,3048741,BK-03,36,253,BK75,40.694319,-73.951782,40.69405,-73.952075,01/26/2018,Preservation,No,Non Prevailing Wage,0,4,12,0,0,1,0,4,10,3,0,0,0,0,17,0,17,17 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,387226,8,VERNON AVENUE,Brooklyn,11206,3017580009,3048742,BK-03,36,253,BK75,40.694335,-73.951652,40.69407,-73.951883,02/12/2018,Preservation,No,Non Prevailing Wage,0,1,15,0,0,0,1,1,12,2,0,0,0,0,16,0,16,16 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,807746,1432,BEDFORD AVENUE,Brooklyn,11216,3012310047,3031132,BK-08,35,221,BK61,40.674208,-73.953805,40.67419,-73.954115,08/23/2017,Preservation,No,Non Prevailing Wage,0,1,7,0,0,0,3,0,4,1,0,0,0,0,8,0,8,8 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,807747,1434,BEDFORD AVENUE,Brooklyn,11216,3012310047,3031133,BK-08,35,221,BK61,40.674154,-73.953826,40.67419,-73.954115,08/23/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,2,1,4,1,0,0,0,0,8,0,8,8 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,807748,1440,BEDFORD AVENUE,Brooklyn,11216,3012310047,3031134,BK-08,35,221,BK61,40.673986,-73.953884,40.67419,-73.954115,08/23/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,1,0,2,1,3,1,0,0,0,7,0,7,7 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,808391,477,GATES AVENUE,Brooklyn,11216,3018080051,3322225,BK-03,36,251,BK75,40.686535,-73.947901,40.68676,-73.947847,11/19/2018,Preservation,No,Non Prevailing Wage,0,3,15,0,0,1,0,1,18,0,0,0,0,0,19,0,19,19 +52757,BEC Phase 1,Multifamily Finance Program,10/07/2015,03/26/2019,809144,25,PATCHEN AVENUE,Brooklyn,11221,3016180003,3043929,BK-03,41,387,BK35,40.69155,-73.927772,40.69153,-73.92748,03/26/2019,Preservation,No,Non Prevailing Wage,0,7,24,0,0,1,0,1,31,0,0,0,0,0,32,0,32,32 +59090,CONFIDENTIAL,Homeowner Assistance Program,10/02/2015,12/16/2015,,----,----,Brooklyn,,,,BK-15,48,,,,,,,12/16/2015,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +59100,CONFIDENTIAL,Homeowner Assistance Program,10/02/2015,03/04/2016,,----,----,Brooklyn,,,,BK-16,41,,,,,,,03/04/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +59101,CONFIDENTIAL,Homeowner Assistance Program,10/02/2015,12/16/2015,,----,----,Brooklyn,,,,BK-06,39,,,,,,,12/16/2015,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +59340,CONFIDENTIAL,Homeowner Assistance Program,10/01/2015,12/16/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,12/16/2015,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +53392,1766-68 SECOND AVENUE,Multifamily Incentives Program,09/30/2015,08/22/2019,957047,1766,2 AVENUE,Manhattan,10128,1015550001,1090538,MN-08,5,154,MN32,40.781779,-73.948884,40.78165,-73.948574,08/22/2019,New Construction,No,Non Prevailing Wage,0,0,22,0,0,0,0,0,19,3,0,0,0,0,22,0,22,22 +53392,1766-68 SECOND AVENUE,Multifamily Incentives Program,09/30/2015,08/22/2019,968239,1768,2 AVENUE,Manhattan,10128,1015550002,1090539,MN-08,5,154,MN32,40.78182,-73.948855,40.78172,-73.948523,08/22/2019,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,5,1,0,0,0,0,0,0,6,0,6,6 +52405,Triataros Corp.,Multifamily Finance Program,09/18/2015,04/12/2018,186854,445,AUTUMN AVENUE,Brooklyn,11208,3041800006,3093916,BK-05,37,1188,BK83,40.678765,-73.869012,40.67888,-73.868759,04/12/2018,Preservation,No,Non Prevailing Wage,0,1,14,4,0,1,0,10,10,0,0,0,0,0,20,0,20,20 +65127,65 PARK PLACE,Multifamily Incentives Program,09/17/2015,,954141,65,PARK PLACE,Brooklyn,11217,3009387503,3018891,BK-06,39,12902,BK37,40.679005,-73.976504,40.6791,-73.976187,,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,2,2,0,0,0,0,0,4,0,4,17 +52790,125 Metropolitan Avenue,Multifamily Incentives Program,09/16/2015,09/18/2018,955836,94,NORTH 3 STREET,Brooklyn,11249,3023587504,3425618,BK-01,34,555,BK73,40.716805,-73.962119,40.71668,-73.962516,09/18/2018,New Construction,No,Non Prevailing Wage,0,0,15,0,0,0,7,5,3,0,0,0,0,0,15,0,15,75 +54407,2629 Sedgwick Avenue,Multifamily Finance Program,09/09/2015,05/02/2017,108496,2629,SEDGWICK AVENUE,Bronx,10468,2032370108,2015143,BX-07,14,269,BX30,40.869096,-73.905122,40.8695,-73.905031,05/02/2017,Preservation,No,Non Prevailing Wage,0,6,17,6,0,1,0,5,19,6,0,0,0,0,30,0,30,30 +59040,CONFIDENTIAL,Homeowner Assistance Program,09/03/2015,09/03/2015,,----,----,Queens,,,,QN-13,31,,,,,,,09/03/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53552,38-46 West 33rd Street,Multifamily Incentives Program,09/01/2015,06/13/2019,957473,42,WEST 33 STREET,Manhattan,10001,1008340069,1015855,MN-05,4,76,MN17,40.748606,-73.987061,40.74841,-73.987123,06/13/2019,New Construction,No,Non Prevailing Wage,0,0,45,0,0,0,14,26,5,0,0,0,0,0,45,0,45,223 +58940,CONFIDENTIAL,Homeowner Assistance Program,08/28/2015,05/30/2016,,----,----,Brooklyn,,,,BK-02,35,,,,,,,05/30/2016,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58907,CONFIDENTIAL,Homeowner Assistance Program,08/27/2015,08/27/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/27/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59005,CONFIDENTIAL,Homeowner Assistance Program,08/27/2015,08/27/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/27/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +52722,Our Lady of Lourdes,Multifamily Finance Program,08/18/2015,06/29/2018,958049,21-Nov,DESALES PLACE,Brooklyn,11207,3034680050,3326478,BK-04,37,405,BK78,40.680808,-73.906,40.68114,-73.906014,01/02/2018,New Construction,No,Non Prevailing Wage,5,25,27,0,0,1,17,23,8,10,0,0,0,0,58,0,58,58 +52722,Our Lady of Lourdes,Multifamily Finance Program,08/18/2015,06/29/2018,975847,1875,BROADWAY,Brooklyn,11207,3034680065,,BK-04,37,405,BK78,40.680704,-73.906598,40.68081,-73.906335,06/29/2018,New Construction,No,Non Prevailing Wage,3,5,10,0,0,0,0,0,6,12,0,0,0,0,18,0,18,18 +58774,CONFIDENTIAL,Homeowner Assistance Program,08/18/2015,08/18/2015,,----,----,Queens,,,,QN-14,31,,,,,,,08/18/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65076,880 MACON STREET,Multifamily Incentives Program,08/18/2015,10/10/2017,953491,880,MACON STREET,Brooklyn,11233,3014980030,3040213,BK-16,41,373,BK79,40.68496,-73.915816,40.68475,-73.915632,10/10/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,8 +58776,CONFIDENTIAL,Homeowner Assistance Program,08/14/2015,08/14/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,08/14/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52783,ST. AUGUSTINE APARTMENTS,Multifamily Finance Program,08/13/2015,08/24/2018,987083,1180,FULTON AVENUE,Bronx,10456,2026110001,2128904,BX-03,16,185,BX35,40.829704,-73.905114,40.82945,-73.904926,08/24/2018,New Construction,No,Non Prevailing Wage,35,12,64,0,0,1,35,19,37,21,0,0,0,0,112,0,112,112 +54748,515 WEST 36TH STREET,Multifamily Incentives Program,08/12/2015,08/01/2019,990511,515,WEST 36 STREET,Manhattan,10018,1007080020,1089736,MN-04,3,99,MN13,40.756322,-73.999267,40.75653,-73.999047,08/01/2019,New Construction,No,Non Prevailing Wage,0,25,25,0,13,0,12,36,15,0,0,0,0,0,63,0,63,251 +58778,CONFIDENTIAL,Homeowner Assistance Program,08/12/2015,08/12/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,08/12/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58779,CONFIDENTIAL,Homeowner Assistance Program,08/12/2015,08/12/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,08/12/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +58712,CONFIDENTIAL,Homeowner Assistance Program,08/11/2015,12/03/2015,,----,----,Queens,,,,QN-13,31,,,,,,,12/03/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58777,CONFIDENTIAL,Homeowner Assistance Program,08/11/2015,08/11/2015,,----,----,Brooklyn,,,,BK-17,40,,,,,,,08/11/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +47948,748 Beck Street,Multifamily Finance Program,08/06/2015,07/25/2017,49241,748,BECK STREET,Bronx,10455,2027070042,2005521,BX-02,8,85,BX33,40.816157,-73.898897,40.81591,-73.8988,07/25/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,0,0,0,0,10,0,0,0,0,10,10,10 +49501,847 Fox Street,Multifamily Finance Program,08/06/2015,07/18/2017,79187,847,FOX STREET,Bronx,10459,2027090034,2005606,BX-02,17,87,BX33,40.817743,-73.896088,40.81795,-73.896232,07/18/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,0,8,0,0,0,0,0,8,8,8 +52287,229 Cherry Street,Multifamily Incentives Program,08/06/2015,10/16/2018,927015,227,CHERRY STREET,Manhattan,10002,,,MN-03,1,6,MN28,40.711063,-73.990885,,,10/16/2018,New Construction,No,Non Prevailing Wage,0,0,204,0,0,0,49,51,104,0,0,0,0,0,204,0,204,205 +58881,CONFIDENTIAL,Homeowner Assistance Program,08/01/2015,08/01/2015,,----,----,Queens,,,,QN-04,21,,,,,,,08/01/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58723,CONFIDENTIAL,Homeowner Assistance Program,07/31/2015,07/31/2015,,----,----,Queens,,,,QN-13,31,,,,,,,07/31/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58614,CONFIDENTIAL,Homeowner Assistance Program,07/30/2015,07/30/2015,,----,----,Brooklyn,,,,BK-05,37,,,,,,,07/30/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +58680,CONFIDENTIAL,Homeowner Assistance Program,07/29/2015,07/29/2015,,----,----,Brooklyn,,,,BK-07,38,,,,,,,07/29/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58682,CONFIDENTIAL,Homeowner Assistance Program,07/29/2015,07/29/2015,,----,----,Queens,,,,QN-13,31,,,,,,,07/29/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +58616,CONFIDENTIAL,Homeowner Assistance Program,07/23/2015,07/23/2015,,----,----,Queens,,,,QN-13,23,,,,,,,07/23/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58677,CONFIDENTIAL,Homeowner Assistance Program,07/22/2015,07/22/2015,,----,----,Queens,,,,QN-09,28,,,,,,,07/22/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +58725,CONFIDENTIAL,Homeowner Assistance Program,07/22/2015,07/22/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,07/22/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58587,CONFIDENTIAL,Homeowner Assistance Program,07/20/2015,07/31/2015,,----,----,Bronx,,,,BX-07,14,,,,,,,07/31/2015,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58568,CONFIDENTIAL,Homeowner Assistance Program,07/17/2015,10/30/2015,,----,----,Queens,,,,QN-12,28,,,,,,,10/30/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +48729,TBX907B- Belmont Arthur 2,Multifamily Finance Program,07/16/2015,,46169,2091,ARTHUR AVENUE,Bronx,10457,2030690024,2011996,BX-06,15,37504,BX17,40.849109,-73.89177,40.84931,-73.891947,12/21/2017,Preservation,No,Non Prevailing Wage,0,33,21,0,0,1,5,21,18,11,0,0,0,0,55,0,55,55 +48729,TBX907B- Belmont Arthur 2,Multifamily Finance Program,07/16/2015,,57116,2131,CLINTON AVENUE,Bronx,10457,2030980050,2012772,BX-06,15,371,BX17,40.848829,-73.886771,40.84886,-73.887165,10/07/2017,Preservation,No,Non Prevailing Wage,0,9,18,0,0,1,0,6,13,9,0,0,0,0,28,0,28,28 +48729,TBX907B- Belmont Arthur 2,Multifamily Finance Program,07/16/2015,,90293,565,EAST 178 STREET,Bronx,10457,2030610070,2011846,BX-06,15,37504,BX17,40.847395,-73.89422,40.84746,-73.894071,06/16/2017,Preservation,No,Non Prevailing Wage,0,6,14,0,0,0,2,18,0,0,0,0,0,0,20,0,20,20 +48729,TBX907B- Belmont Arthur 2,Multifamily Finance Program,07/16/2015,,122170,62,WEST TREMONT AVENUE,Bronx,10453,2028620008,2008383,BX-05,14,217,BX36,40.851489,-73.91178,40.8511,-73.911687,,Preservation,No,Non Prevailing Wage,0,0,89,0,0,1,17,52,17,4,0,0,0,0,90,0,90,90 +59538,Fleet Project 43-25 Hunter Street (20150032),Multifamily Incentives Program,07/16/2015,01/24/2017,967059,43-25,HUNTER STREET,Queens,11101,4004337501,4617191,QN-02,26,19,QN31,40.747892,-73.942595,40.74767,-73.942349,01/24/2017,New Construction,No,Non Prevailing Wage,0,0,195,0,0,0,70,91,34,0,0,0,0,0,195,0,195,974 +58718,CONFIDENTIAL,Homeowner Assistance Program,07/15/2015,07/15/2015,,----,----,Queens,,,,QN-07,20,,,,,,,07/15/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53011,Sumpter Marcus LP II,Multifamily Finance Program,07/14/2015,05/22/2019,219111,510,CHAUNCEY STREET,Brooklyn,11233,3015170002,3041173,BK-16,37,369,BK79,40.682476,-73.911373,40.68227,-73.911363,05/22/2019,Preservation,No,Non Prevailing Wage,0,0,18,0,0,0,0,9,0,9,0,0,0,0,18,0,18,18 +53011,Sumpter Marcus LP II,Multifamily Finance Program,07/14/2015,05/22/2019,219116,516,CHAUNCEY STREET,Brooklyn,11233,3015170007,3041175,BK-16,37,369,BK79,40.682484,-73.911308,40.68228,-73.911074,05/22/2019,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,1,2,3,0,0,0,0,0,6,0,6,6 +53011,Sumpter Marcus LP II,Multifamily Finance Program,07/14/2015,05/22/2019,379344,408,MARCUS GARVEY BOULEVARD,Brooklyn,11216,3018470037,3053174,BK-03,36,275,BK35,40.682935,-73.938043,40.68287,-73.938299,05/22/2019,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +53011,Sumpter Marcus LP II,Multifamily Finance Program,07/14/2015,05/22/2019,379523,348,SUMPTER STREET,Brooklyn,11233,3015280023,3041563,BK-16,37,369,BK79,40.681111,-73.910156,40.68089,-73.91007,05/22/2019,Preservation,No,Non Prevailing Wage,0,0,19,0,0,0,2,9,8,0,0,0,0,0,19,0,19,19 +58878,CONFIDENTIAL,Homeowner Assistance Program,07/13/2015,02/26/2016,,----,----,Brooklyn,,,,BK-03,41,,,,,,,02/26/2016,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58721,CONFIDENTIAL,Homeowner Assistance Program,07/07/2015,07/07/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,07/07/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +48973,508 West 134 Street,Multifamily Finance Program,07/02/2015,08/04/2017,40680,508,WEST 134 STREET,Manhattan,10031,1019870041,1059745,MN-09,7,219,MN06,40.81853,-73.953448,40.81838,-73.953687,08/04/2017,Preservation,No,Non Prevailing Wage,0,0,11,4,0,0,0,0,2,13,0,0,0,0,0,15,15,15 +58500,CONFIDENTIAL,Homeowner Assistance Program,07/01/2015,07/01/2015,,----,----,Bronx,,,,BX-11,13,,,,,,,07/01/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58503,CONFIDENTIAL,Homeowner Assistance Program,07/01/2015,08/05/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,08/05/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58716,CONFIDENTIAL,Homeowner Assistance Program,07/01/2015,07/01/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,07/01/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,336111,2427,MERMAID AVENUE,Brooklyn,11224,3070140053,,BK-13,47,326,BK21,40.575896,-73.99149,40.57606,-73.992106,05/03/2017,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,1,2,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,336151,3216,MERMAID AVENUE,Brooklyn,11224,3070480006,3413815,BK-13,47,342,BK21,40.575062,-73.998834,40.57479,-73.999075,05/04/2017,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,1,2,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,394346,2816,WEST 16 STREET,Brooklyn,11224,3070210016,3425388,BK-13,47,326,BK21,40.57844,-73.984045,40.57847,-73.984366,05/03/2017,New Construction,No,Non Prevailing Wage,0,0,0,0,3,0,0,0,1,2,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,927137,2425,MERMAID AVENUE,Brooklyn,11224,3070140052,3188890,BK-13,47,326,BK21,40.575896,-73.991476,40.57607,-73.992034,05/19/2017,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,1,2,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,967108,3566,CANAL AVENUE,Brooklyn,11224,3069780022,3413785,BK-13,47,330,BK21,40.579028,-74.00238,40.57888,-74.00193,07/21/2017,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,1,0,1,1,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,967109,2818,WEST 16 STREET,Brooklyn,11224,3070210017,3425387,BK-13,47,326,BK21,40.578407,-73.984038,40.57842,-73.984355,05/04/2017,New Construction,No,Non Prevailing Wage,0,0,0,1,2,0,0,0,1,2,0,0,0,0,2,1,3,3 +44230,Mermaid / West. 16th Street,Small Homes Program,06/30/2015,07/21/2017,967127,3568,CANAL AVENUE,Brooklyn,11224,3069780021,3413786,BK-13,47,330,BK21,40.579028,-74.002383,40.57885,-74.001994,07/20/2017,New Construction,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,1,2,0,0,0,0,2,1,3,3 +44280,ELTON CROSSING (AKA MELROSE COMMONS NORTH SITE C),Multifamily Finance Program,06/30/2015,02/27/2019,928040,432,EAST 162 STREET,Bronx,10451,2023837501,2127429,BX-03,17,141,BX35,40.824457,-73.912459,40.82405,-73.912113,02/27/2019,New Construction,No,Non Prevailing Wage,15,46,137,0,0,1,7,79,95,18,0,0,0,0,199,0,199,199 +48650,Cooper Square. 222 East 13th St. Ali Forney,Multifamily Finance Program,06/30/2015,04/09/2018,11915,222,EAST 13 STREET,Manhattan,10003,1004680020,1006860,MN-03,2,40,MN22,40.732307,-73.987,40.73203,-73.986924,04/09/2018,Preservation,No,Non Prevailing Wage,18,0,0,0,0,0,18,0,0,0,0,0,0,0,18,0,18,18 +49607,1561 WALTON AVENUE,Multifamily Finance Program,06/30/2015,11/15/2017,954885,1561,WALTON AVENUE,Bronx,10452,2028450047,2128647,BX-04,14,209,BX63,40.843001,-73.913498,40.8431,-73.913664,11/15/2017,New Construction,No,Non Prevailing Wage,8,28,23,0,0,1,1,19,31,9,0,0,0,0,60,0,60,60 +49625,East 138 Street,Multifamily Finance Program,06/30/2015,04/11/2019,952254,255,E. 138TH STREET,Bronx,10451,2023337501,2128555,BX-01,8,51,BX39,40.811367,-73.927649,40.8116,-73.927486,03/14/2019,New Construction,No,Non Prevailing Wage,10,28,57,0,0,1,6,48,28,14,0,0,0,0,96,0,96,96 +50223,CENTRAL HARLEM HDFC&270 ROCHESTER AVEHDFC,Multifamily Finance Program,06/30/2015,10/17/2018,3611,2480,ADAM C POWELL BOULEVARD,Manhattan,10030,1020300029,1060456,MN-10,9,232,MN03,40.821117,-73.939468,40.82124,-73.939865,10/17/2018,Preservation,No,Non Prevailing Wage,0,2,18,0,0,0,0,0,5,10,5,0,0,0,20,0,20,20 +50223,CENTRAL HARLEM HDFC&270 ROCHESTER AVEHDFC,Multifamily Finance Program,06/30/2015,10/17/2018,3962,2150,FREDERICK DOUGLASS BOULEVARD,Manhattan,10026,1019220001,1058363,MN-10,9,218,MN11,40.804519,-73.955286,40.80456,-73.954971,10/17/2018,Preservation,No,Non Prevailing Wage,1,4,10,1,0,0,0,0,4,12,0,0,0,0,16,0,16,16 +50223,CENTRAL HARLEM HDFC&270 ROCHESTER AVEHDFC,Multifamily Finance Program,06/30/2015,10/17/2018,7479,234,BRADHURST AVENUE,Manhattan,10039,1020470020,1060891,MN-10,9,23502,MN03,40.828745,-73.939052,40.82872,-73.938861,10/17/2018,Preservation,No,Non Prevailing Wage,0,7,18,0,0,0,0,1,14,10,0,0,0,0,25,0,25,25 +50223,CENTRAL HARLEM HDFC&270 ROCHESTER AVEHDFC,Multifamily Finance Program,06/30/2015,10/17/2018,21286,377,EDGECOMBE AVENUE,Manhattan,10031,1020540022,1061170,MN-09,9,23501,MN04,40.827955,-73.940722,40.82816,-73.940917,10/17/2018,Preservation,No,Non Prevailing Wage,1,7,7,0,0,1,0,0,3,5,8,0,0,0,16,0,16,16 +50223,CENTRAL HARLEM HDFC&270 ROCHESTER AVEHDFC,Multifamily Finance Program,06/30/2015,10/17/2018,362423,270,ROCHESTER AVENUE,Brooklyn,11213,3013910039,3037370,BK-08,41,349,BK61,40.669365,-73.928293,40.66937,-73.928582,10/17/2018,Preservation,No,Non Prevailing Wage,1,4,11,0,0,0,0,5,5,6,0,0,0,0,16,0,16,16 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,297626,1896,FULTON STREET,Brooklyn,11233,3017040017,3048047,BK-03,41,299,BK61,40.678977,-73.92374,40.67872,-73.923452,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,5,0,0,0,0,2,0,3,0,0,0,0,5,0,5,5 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,321929,1003,LAFAYETTE AVENUE,Brooklyn,11221,3016070055,3043473,BK-03,36,289,BK35,40.692113,-73.93199,40.69234,-73.931932,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,0,0,8,0,0,0,0,8,0,8,8 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,322216,480,LAFAYETTE AVENUE,Brooklyn,11205,3019500024,3055682,BK-03,36,233,BK75,40.689344,-73.955925,40.68912,-73.955893,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,322472,838,LAFAYETTE AVENUE,Brooklyn,11221,3016090013,3043509,BK-03,36,279,BK35,40.691291,-73.93899,40.69106,-73.938991,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,322475,840,LAFAYETTE AVENUE,Brooklyn,11221,3016090014,3043510,BK-03,36,279,BK35,40.691299,-73.938929,40.69106,-73.938918,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,2,0,1,0,0,0,3,0,0,0,0,0,3,0,3,3 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,322537,895,LAFAYETTE AVENUE,Brooklyn,11221,3016060078,3043435,BK-03,36,289,BK35,40.691616,-73.936322,40.69177,-73.936632,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,6,0,1,0,0,6,1,0,0,0,0,0,7,0,7,7 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,322603,952,LAFAYETTE AVENUE,Brooklyn,11221,3016100041,3043604,BK-03,36,291,BK35,40.691807,-73.934526,40.69163,-73.934248,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,2 +52014,A.D. & Nash Co. L.P.,Multifamily Finance Program,06/30/2015,06/30/2015,385806,312,VAN BUREN STREET,Brooklyn,11221,3016150030,3043777,BK-03,36,291,BK35,40.691027,-73.934757,40.69081,-73.934617,06/30/2015,Preservation,Yes,Non Prevailing Wage,0,0,2,0,0,0,0,1,0,0,1,0,0,0,2,0,2,2 +52083,Essex Crossing - Site 5,Multifamily Finance Program,06/30/2015,07/31/2018,967329,145,CLINTON STREET,Manhattan,10002,1003467501,1089660,MN-03,1,1402,MN28,40.71661,-73.986375,40.71658,-73.986757,07/31/2018,New Construction,No,Non Prevailing Wage,0,6,53,17,28,0,40,17,42,5,0,0,0,0,104,0,104,211 +52122,Essex Crossing - Site 2,Multifamily Finance Program,06/30/2015,12/27/2018,972598,115,DELANCEY STREET,Manhattan,10002,1003527501,1090554,MN-03,1,18,MN27,40.718509,-73.988085,40.71791,-73.988049,12/27/2018,New Construction,No,Non Prevailing Wage,0,6,47,18,27,0,36,24,32,6,0,0,0,0,98,0,98,195 +52656,Affordable & Supportive Family Housing at Van Dyke,Multifamily Finance Program,06/30/2015,07/26/2017,958170,603,MOTHER GASTON BOULEVARD,Brooklyn,11212,3037940028,3416956,BK-16,41,910,BK81,40.664133,-73.905432,40.66415,-73.90509,07/26/2017,New Construction,No,Prevailing Wage,75,0,25,0,0,1,0,24,77,0,0,0,0,0,101,0,101,101 +52798,BRC. 233 LANDING ROAD,Multifamily Finance Program,06/30/2015,02/08/2018,955842,233,LANDING ROAD,Bronx,10468,2032367501,2129308,BX-07,14,269,BX30,40.862407,-73.911097,40.86265,-73.910884,02/08/2018,New Construction,No,Non Prevailing Wage,0,118,17,0,0,1,111,7,18,0,0,0,0,0,136,0,136,136 +53273,3475 Third Avenue,Multifamily Finance Program,06/30/2015,04/25/2018,958147,3475,3 AVENUE,Bronx,10456,2023720037,2128553,BX-03,16,145,BX01,40.830048,-73.906313,40.83039,-73.906529,04/25/2018,New Construction,No,Non Prevailing Wage,11,32,58,0,0,1,4,22,58,18,0,0,0,0,102,0,102,102 +53461,BEACH GREEN NORTH,Multifamily Finance Program,06/30/2015,08/30/2017,967338,4551,ROCKAWAY BEACH BOULEVARD,Queens,11691,,,QN-14,31,97204,QN12,40.593576,-73.776738,,,08/30/2017,New Construction,No,Non Prevailing Wage,0,24,76,0,0,1,8,49,27,17,0,0,0,0,101,0,101,101 +54366,321 East 60th Street,Multifamily Incentives Program,06/30/2015,11/14/2017,957840,321,EAST 60 STREET,Manhattan,10022,1014350015,1089869,MN-08,5,110,MN31,40.760674,-73.962513,40.76094,-73.962534,11/14/2017,New Construction,No,Non Prevailing Wage,0,0,20,0,0,0,0,6,14,0,0,0,0,0,20,0,20,21 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,28144,60,ST NICHOLAS AVENUE,Manhattan,10026,1018230018,1055008,MN-10,9,216,MN11,40.800887,-73.952507,40.8008,-73.952157,06/13/2016,Preservation,No,Non Prevailing Wage,0,0,53,0,0,0,0,0,47,6,0,0,0,0,53,0,53,53 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41416,210,WEST 140 STREET,Manhattan,10030,1020250044,1060377,MN-10,9,230,MN03,40.818755,-73.942085,40.81874,-73.942635,06/13/2016,Preservation,No,Non Prevailing Wage,0,7,6,5,0,0,0,0,8,10,0,0,0,0,18,0,18,18 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41418,212,WEST 140 STREET,Manhattan,10030,1020250046,1060378,MN-10,9,230,MN03,40.818772,-73.942125,40.81879,-73.942754,06/10/2016,Preservation,No,Non Prevailing Wage,0,7,6,5,0,0,0,0,8,10,0,0,0,0,18,0,18,18 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41420,214,WEST 140 STREET,Manhattan,10030,1020250047,1060379,MN-10,9,230,MN03,40.818788,-73.942165,40.81884,-73.942873,06/10/2016,Preservation,No,Non Prevailing Wage,0,8,5,5,0,0,0,0,8,6,4,0,0,0,18,0,18,18 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41422,216,WEST 140 STREET,Manhattan,10030,1020250049,1060380,MN-10,9,230,MN03,40.818805,-73.942205,40.81889,-73.942996,06/10/2016,Preservation,No,Non Prevailing Wage,0,8,5,5,0,0,0,0,8,10,0,0,0,0,18,0,18,18 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41904,239,WEST 145 STREET,Manhattan,10039,1020310012,1060475,MN-10,9,232,MN03,40.822169,-73.940312,40.82266,-73.940789,06/10/2016,Preservation,No,Non Prevailing Wage,0,0,35,6,0,0,0,5,31,5,0,0,0,0,41,0,41,41 +54709,HCCI 2 Phase II,Multifamily Finance Program,06/30/2015,06/13/2016,41907,247,WEST 145 STREET,Manhattan,10039,1020310007,1060473,MN-10,9,232,MN03,40.822238,-73.940471,40.8228,-73.941117,06/13/2016,Preservation,No,Non Prevailing Wage,0,0,35,6,0,0,0,4,32,5,0,0,0,0,41,0,41,41 +58363,CONFIDENTIAL,Homeowner Assistance Program,06/30/2015,06/30/2015,,----,----,Queens,,,,QN-07,20,,,,,,,06/30/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58367,CONFIDENTIAL,Homeowner Assistance Program,06/30/2015,06/30/2015,,----,----,Bronx,,,,BX-08,11,,,,,,,06/30/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +48940,207 W. 147 St. HDFC,Multifamily Finance Program,06/29/2015,,42095,207,WEST 147 STREET,Manhattan,10039,1020330024,1060531,MN-10,9,234,MN03,40.823197,-73.938732,40.82346,-73.938808,,Preservation,No,Non Prevailing Wage,1,12,2,0,0,0,0,0,1,7,7,0,0,0,2,13,15,15 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,56818,1171,CLAY AVENUE,Bronx,10456,2024300043,2002159,BX-04,16,17701,BX14,40.831669,-73.911023,40.83182,-73.911268,07/11/2018,Preservation,No,Non Prevailing Wage,0,0,0,12,0,0,0,0,6,6,0,0,0,0,12,0,12,12 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,56824,1183,CLAY AVENUE,Bronx,10456,2024300037,2002156,BX-04,16,17701,BX14,40.831927,-73.910881,40.83216,-73.91108,08/28/2019,Preservation,No,Non Prevailing Wage,0,0,0,12,0,0,0,0,6,6,0,0,0,0,12,0,12,12 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,56832,1202,CLAY AVENUE,Bronx,10456,2024260059,2002082,BX-04,16,17701,BX14,40.832377,-73.91061,40.83205,-73.910502,04/23/2018,Preservation,No,Non Prevailing Wage,0,3,8,0,0,0,0,0,11,0,0,0,0,0,11,0,11,11 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,81951,384,GRAND CONCOURSE,Bronx,10451,2023410055,2001008,BX-01,8,51,BX39,40.816058,-73.928392,40.81616,-73.927969,07/26/2019,Preservation,No,Non Prevailing Wage,0,7,19,0,0,0,7,13,6,0,0,0,0,0,26,0,26,26 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,97336,1129,MORRIS AVENUE,Bronx,10456,2024490023,2002575,BX-04,16,18101,BX14,40.83134,-73.915244,40.83145,-73.915522,08/19/2019,Preservation,No,Non Prevailing Wage,0,2,3,0,0,0,0,0,5,0,0,0,0,0,5,0,5,5 +50131,Grand & Rogers Cluster - JGV,Multifamily Finance Program,06/29/2015,08/28/2019,107220,1038,ROGERS PLACE,Bronx,10459,2027000009,2005392,BX-02,17,131,BX33,40.824464,-73.897746,40.82454,-73.897486,07/29/2019,Preservation,No,Non Prevailing Wage,0,4,16,0,0,1,5,7,9,0,0,0,0,0,21,0,21,21 +50388,TWEEMILL HOUSE HDFC,Multifamily Incentives Program,06/29/2015,06/29/2015,24101,2089,LEXINGTON AVENUE,Manhattan,10035,1017750020,1076474,MN-11,9,242,MN34,40.805136,-73.936852,40.80506,-73.936387,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,40,0,0,0,0,40,0,0,0,0,0,0,0,40,0,40,40 +50942,Creston-Burnside,Multifamily Finance Program,06/29/2015,02/27/2019,964992,2026,CRESTON AVENUE,Bronx,10453,2028087501,2128390,BX-05,14,23501,BX41,40.852057,-73.905436,40.85222,-73.904948,02/27/2019,New Construction,No,Non Prevailing Wage,11,34,55,13,0,1,7,48,47,12,0,0,0,0,114,0,114,114 +51248,270 Convent Ave HDFC,Multifamily Finance Program,06/29/2015,,9911,270,CONVENT AVENUE,Manhattan,10031,1020570046,1061204,MN-09,9,227,MN04,40.821896,-73.948254,40.82203,-73.948478,,Preservation,No,Non Prevailing Wage,0,3,55,2,0,0,0,0,60,0,0,0,0,0,60,0,60,60 +53050,911 Longwood/ 993 Intervale,Multifamily Finance Program,06/29/2015,06/29/2015,88291,993,INTERVALE AVENUE,Bronx,10459,2026990048,2005385,BX-02,17,12901,BX33,40.822934,-73.896882,40.82305,-73.897225,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,0,23,0,0,0,0,10,13,0,0,0,0,0,23,0,23,23 +53050,911 Longwood/ 993 Intervale,Multifamily Finance Program,06/29/2015,06/29/2015,92589,911,LONGWOOD AVENUE,Bronx,10459,2026960001,2005343,BX-02,17,87,BX33,40.81843,-73.899732,40.81867,-73.89962,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,0,18,0,0,0,0,1,5,8,4,0,0,0,18,0,18,18 +53180,COMPASS RESIDENCES 2A,Multifamily Finance Program,06/29/2015,07/31/2017,977640,1524,BOONE AVENUE,Bronx,10460,2030140005,2128556,BX-03,17,157,BX75,40.832837,-73.885201,40.83273,-73.884869,07/31/2017,New Construction,No,Non Prevailing Wage,8,0,120,0,0,0,19,42,53,14,0,0,0,0,128,0,128,128 +53473,Aquinas Deacon Juan Santos HDFC,Multifamily Finance Program,06/29/2015,06/03/2017,60067,2060,CROTONA PARKWAY,Bronx,10460,2031180044,2013096,BX-06,17,363,BX17,40.844798,-73.884812,40.84462,-73.884567,06/03/2017,Preservation,No,Non Prevailing Wage,34,0,0,0,0,1,9,25,1,0,0,0,0,0,35,0,35,35 +53473,Aquinas Deacon Juan Santos HDFC,Multifamily Finance Program,06/29/2015,06/03/2017,74511,985,EAST TREMONT AVENUE,Bronx,10460,2031300002,2013244,BX-06,17,361,BX17,40.840931,-73.882025,40.84132,-73.882086,06/03/2017,Preservation,No,Non Prevailing Wage,100,0,0,0,0,1,28,72,1,0,0,0,0,0,101,0,101,101 +54948,West 140th Street,Multifamily Finance Program,06/29/2015,06/29/2015,41412,206,WEST 140 STREET,Manhattan,10030,1020250041,1060375,MN-10,9,230,MN03,40.818722,-73.942006,40.81864,-73.942389,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,2,11,0,4,1,0,0,18,0,0,0,0,0,18,0,18,18 +54948,West 140th Street,Multifamily Finance Program,06/29/2015,06/29/2015,41424,218,WEST 140 STREET,Manhattan,10030,1020250050,1060381,MN-10,9,230,MN03,40.818821,-73.942244,40.81894,-73.943115,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,4,9,0,5,0,0,5,8,5,0,0,0,0,18,0,18,18 +54948,West 140th Street,Multifamily Finance Program,06/29/2015,06/29/2015,41425,220,WEST 140 STREET,Manhattan,10030,1020250052,1060382,MN-10,9,230,MN03,40.818838,-73.942284,40.81899,-73.943238,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,3,10,0,5,0,0,0,18,0,0,0,0,0,18,0,18,18 +54948,West 140th Street,Multifamily Finance Program,06/29/2015,06/29/2015,41426,222,WEST 140 STREET,Manhattan,10030,1020250053,1060383,MN-10,9,230,MN03,40.818854,-73.942324,40.81905,-73.943357,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,5,8,0,5,0,0,0,18,0,0,0,0,0,18,0,18,18 +54948,West 140th Street,Multifamily Finance Program,06/29/2015,06/29/2015,41438,267,WEST 140 STREET,Manhattan,10030,1020260007,1060399,MN-10,9,230,MN03,40.819236,-73.94318,40.81956,-73.943385,06/29/2015,Preservation,Yes,Non Prevailing Wage,0,4,14,0,1,1,0,0,20,0,0,0,0,0,20,0,20,20 +55050,Compass Residences 2B,Multifamily Finance Program,06/29/2015,05/10/2017,966963,1544,BOONE AVENUE,Bronx,10460,2030147501,2128953,BX-03,17,157,BX75,40.833004,-73.8851,40.83307,-73.884619,05/10/2017,New Construction,No,Non Prevailing Wage,49,0,114,0,0,1,31,50,60,22,1,0,0,0,164,0,164,164 +58323,CONFIDENTIAL,Homeowner Assistance Program,06/29/2015,10/01/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/01/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58932,Castleton Park,Multifamily Finance Program,06/29/2015,04/30/2018,784046,165,ST MARKS PLACE,Staten Island,10301,5000130008,5116656,SI-01,49,7,SI22,40.645781,-74.081076,40.64599,-74.080225,04/30/2018,Preservation,No,Non Prevailing Wage,0,139,313,0,0,2,6,188,224,34,0,0,0,2,454,0,454,454 +48647,WIN.75-121 JUNIUS ST.THE GLENMORE,Multifamily Finance Program,06/26/2015,12/07/2017,976517,91,JUNIUS STREET,Brooklyn,11212,3036967501,3425596,BK-16,37,908,BK81,40.672816,-73.903776,40.67272,-73.903484,12/07/2017,New Construction,No,Prevailing Wage,96,0,64,0,0,1,12,67,69,13,0,0,0,0,161,0,161,161 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297779,2108,FULTON STREET,Brooklyn,11233,3015510006,3042163,BK-16,41,301,BK79,40.678368,-73.91259,40.67814,-73.912918,11/15/2018,Preservation,No,Non Prevailing Wage,0,3,4,0,0,0,0,6,1,0,0,0,0,0,7,0,7,7 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297795,2138,FULTON STREET,Brooklyn,11233,3015510047,3042198,BK-16,41,301,BK79,40.678315,-73.911577,40.67807,-73.911545,11/15/2018,Preservation,No,Non Prevailing Wage,0,1,5,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297804,2154,FULTON STREET,Brooklyn,11233,3015520007,3042231,BK-16,37,369,BK79,40.678256,-73.91051,40.67802,-73.910611,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,1,2,3,0,0,0,0,0,6,0,6,6 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297807,2158,FULTON STREET,Brooklyn,11233,3015520010,3042234,BK-16,37,369,BK79,40.678248,-73.910366,40.678,-73.910391,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,2,0,3,0,0,0,0,0,5,0,5,5 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297808,2160,FULTON STREET,Brooklyn,11233,3015520011,3042235,BK-16,37,369,BK79,40.678242,-73.91029,40.678,-73.910319,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,2,0,3,0,0,0,0,0,5,0,5,5 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297818,2184,FULTON STREET,Brooklyn,11233,3015520026,3042249,BK-16,37,369,BK79,40.678195,-73.909425,40.67794,-73.909241,11/15/2018,Preservation,No,Non Prevailing Wage,0,1,3,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,297832,2204A,FULTON STREET,Brooklyn,11233,3015520039,3042260,BK-16,37,369,BK79,40.678134,-73.908275,40.67789,-73.908307,11/15/2018,Preservation,No,Non Prevailing Wage,0,1,2,0,0,1,0,0,4,0,0,0,0,0,4,0,4,4 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,301861,218,GRAFTON STREET,Brooklyn,11212,3035510049,3081523,BK-16,41,894,BK81,40.663067,-73.917818,40.66295,-73.918071,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,15,0,0,1,0,0,13,3,0,0,0,0,16,0,16,16 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,362510,147,ROCKAWAY AVENUE,Brooklyn,11233,3015520003,3042228,BK-16,37,369,BK79,40.677751,-73.910784,40.67774,-73.910492,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,3,0,2,0,0,0,0,0,5,0,5,5 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,362512,151,ROCKAWAY AVENUE,Brooklyn,11233,3015520001,3042227,BK-16,37,369,BK79,40.677636,-73.910795,40.67762,-73.9105,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,1,6,0,0,0,0,0,0,7,0,7,7 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,371723,38,SOMERS STREET,Brooklyn,11233,3015420001,3042005,BK-16,37,369,BK79,40.678822,-73.910538,40.67854,-73.910726,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,0,6,3,0,0,0,0,9,0,9,9 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,380139,57,SUTTER AVENUE,Brooklyn,11212,3035100076,3080851,BK-16,41,900,BK81,40.665613,-73.920587,40.66583,-73.920645,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,0,5,0,0,0,0,0,5,0,5,5 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,380148,59,SUTTER AVENUE,Brooklyn,11212,3035110001,3080852,BK-16,41,900,BK81,40.665657,-73.920292,40.66587,-73.920349,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,382757,27,TRUXTON STREET,Brooklyn,11233,3015420041,3042028,BK-16,37,369,BK79,40.678359,-73.908264,40.67852,-73.90848,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,382758,29,TRUXTON STREET,Brooklyn,11233,3015420040,3042027,BK-16,37,369,BK79,40.678372,-73.908148,40.67853,-73.908408,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,3,0,0,1,0,0,4,0,0,0,0,0,4,0,4,4 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,383504,2031,UNION STREET,Brooklyn,11212,3035100019,3080829,BK-16,41,900,BK81,40.666846,-73.9217,40.66666,-73.921375,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,1,8,0,0,0,0,0,9,0,9,9 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,808368,2168,FULTON STREET,Brooklyn,11233,3015520015,3042240,BK-16,37,369,BK79,40.678228,-73.910002,40.67798,-73.909959,11/15/2018,Preservation,No,Non Prevailing Wage,0,1,7,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,808369,2170,FULTON STREET,Brooklyn,11233,3015520015,3042241,BK-16,37,369,BK79,40.678223,-73.909929,40.67798,-73.909959,11/15/2018,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52752,Urban Strategies Apts,Multifamily Finance Program,06/26/2015,11/15/2018,808371,2180,FULTON STREET,Brooklyn,11233,3015520021,3042246,BK-16,37,369,BK79,40.678203,-73.909569,40.67795,-73.909494,11/15/2018,Preservation,No,Non Prevailing Wage,0,4,8,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +44409,Crotona Terrace II,Multifamily Finance Program,06/25/2015,01/12/2018,927022,1825,BOSTON ROAD,Bronx,10460,2029847503,2124684,BX-03,17,161,BX75,40.838878,-73.885209,40.83919,-73.88566,01/12/2018,New Construction,No,Non Prevailing Wage,11,32,64,0,0,1,10,25,59,14,0,0,0,0,108,0,108,108 +46143,West Farms/Longfellow Ave,Multifamily Finance Program,06/25/2015,10/15/2018,958172,1939,WEST FARMS ROAD,Bronx,10460,2030160050,2124285,BX-06,17,359,BX17,40.839162,-73.880594,40.83956,-73.880672,10/15/2018,New Construction,No,Non Prevailing Wage,10,40,76,26,0,1,2,35,96,20,0,0,0,0,153,0,153,153 +46143,West Farms/Longfellow Ave,Multifamily Finance Program,06/25/2015,10/15/2018,976480,1926,LONGFELLOW AVENUE,Bronx,10460,2030160038,2120278,BX-06,17,359,BX17,40.839388,-73.881771,40.83941,-73.881432,04/13/2018,New Construction,No,Non Prevailing Wage,6,8,14,0,0,0,0,14,14,0,0,0,0,0,28,0,28,28 +50415,Lexington Gardens,Multifamily Finance Program,06/25/2015,06/25/2015,19134,127,EAST 107 STREET,Manhattan,10029,1016350017,1088453,MN-11,8,172,MN33,40.793174,-73.946366,40.79334,-73.946091,06/25/2015,Preservation,Yes,Non Prevailing Wage,82,18,7,0,0,1,0,0,1,0,0,0,0,107,108,0,108,108 +51719,The Pavilion at Locust Manor,Multifamily Finance Program,06/25/2015,06/27/2018,878727,171-04,BAISLEY BOULEVARD,Queens,11434,4125290239,4618244,QN-12,27,33401,QN08,40.681254,-73.772868,40.681,-73.77258,06/27/2018,New Construction,No,Non Prevailing Wage,9,26,49,0,0,1,8,32,45,0,0,0,0,0,85,0,85,85 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,2660,2094,5 AVENUE,Manhattan,10035,1017260037,1053697,MN-10,9,208,MN03,40.808783,-73.940544,40.80883,-73.94092,10/03/2017,Preservation,No,Non Prevailing Wage,0,0,26,0,0,1,0,13,13,0,1,0,0,0,27,0,27,27 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,4055,2407,FREDERICK DOUGLASS BOULEVARD,Manhattan,10027,1019550017,1059403,MN-10,9,215,MN03,40.812652,-73.949366,40.81272,-73.949655,06/09/2017,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,5,4,0,0,0,0,0,9,0,9,9 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,4060,2451,FREDERICK DOUGLASS BOULEVARD,Manhattan,10027,1019580018,1059415,MN-10,9,215,MN03,40.814188,-73.948249,40.81434,-73.948527,06/15/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,1,0,1,8,0,0,0,0,0,9,0,9,9 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,4067,2467,FREDERICK DOUGLASS BOULEVARD,Manhattan,10027,1019580026,1059421,MN-10,9,215,MN03,40.814723,-73.947858,40.81484,-73.948162,10/20/2017,Preservation,No,Non Prevailing Wage,0,1,13,0,0,0,0,6,8,0,0,0,0,0,14,0,14,14 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,23590,418,LENOX AVENUE,Manhattan,10037,1017280069,1053811,MN-10,9,208,MN03,40.811469,-73.942778,40.81133,-73.942457,07/06/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,28111,418,ST NICHOLAS AVENUE,Manhattan,10027,1019580061,1059445,MN-10,9,215,MN03,40.814387,-73.949408,40.81429,-73.949094,06/22/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,0,6,4,0,0,0,0,0,10,0,10,10 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,39782,147,WEST 127 STREET,Manhattan,10027,1019120008,1057902,MN-10,9,224,MN03,40.809653,-73.945883,40.81012,-73.946457,07/06/2017,Preservation,No,Non Prevailing Wage,0,0,24,0,0,0,2,10,12,0,0,0,0,0,24,0,24,24 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,39807,28,WEST 127 STREET,Manhattan,10027,1017240050,1053578,MN-10,9,208,MN03,40.808155,-73.942391,40.80806,-73.942745,06/22/2017,Preservation,No,Non Prevailing Wage,0,0,23,0,0,1,1,11,12,0,0,0,0,0,24,0,24,24 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,39869,65,WEST 127 STREET,Manhattan,10027,1017250009,1053615,MN-10,9,208,MN03,40.808524,-73.943218,40.80888,-73.943503,06/15/2017,Preservation,No,Non Prevailing Wage,0,3,15,0,0,0,0,2,10,6,0,0,0,0,18,0,18,18 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40049,20,WEST 129 STREET,Manhattan,10027,1017260049,1053701,MN-10,9,208,MN03,40.809497,-73.9417,40.80928,-73.941758,03/10/2017,Preservation,No,Non Prevailing Wage,0,0,29,0,0,0,7,17,5,0,0,0,0,0,29,0,29,29 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40053,24,WEST 129 STREET,Manhattan,10027,1017260051,1053702,MN-10,9,208,MN03,40.80953,-73.941776,40.80933,-73.941873,03/10/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,3,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40055,26,WEST 129 STREET,Manhattan,10027,1017260052,1053703,MN-10,9,208,MN03,40.809544,-73.941815,40.80935,-73.941935,06/15/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40059,30,WEST 129 STREET,Manhattan,10027,1017260053,1053704,MN-10,9,208,MN03,40.809577,-73.941891,40.8094,-73.942054,03/10/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,3,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40225,69,WEST 130 STREET,Manhattan,10037,1017280006,1053773,MN-10,9,208,MN03,40.810431,-73.941941,40.81087,-73.942428,06/09/2017,Preservation,No,Non Prevailing Wage,0,0,13,0,0,1,0,0,14,0,0,0,0,0,14,0,14,14 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40339,28,WEST 131 STREET,Manhattan,10037,1017280051,1053802,MN-10,9,208,MN03,40.810652,-73.940564,40.81059,-73.941005,06/09/2017,Preservation,No,Non Prevailing Wage,0,3,21,0,0,1,3,10,7,5,0,0,0,0,25,0,25,25 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40350,4,WEST 131 STREET,Manhattan,10037,1017280042,1081379,MN-10,9,208,MN03,40.810421,-73.940016,40.8103,-73.940301,06/15/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,1,4,3,0,0,0,0,0,8,0,8,8 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40378,71,WEST 131 STREET,Manhattan,10037,1017290006,1053829,MN-10,9,208,MN03,40.811075,-73.941529,40.81148,-73.941944,07/11/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40379,72,WEST 131 STREET,Manhattan,10037,1017280067,1053810,MN-10,9,208,MN03,40.811075,-73.941572,40.8111,-73.942218,07/11/2017,Preservation,No,Non Prevailing Wage,0,1,3,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40380,73,WEST 131 STREET,Manhattan,10037,1017290105,1053875,MN-10,9,208,MN03,40.811095,-73.941575,40.8115,-73.941994,10/13/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40383,8,WEST 131 STREET,Manhattan,10037,1017280143,1053821,MN-10,9,208,MN03,40.81046,-73.940109,40.81034,-73.940384,06/15/2017,Preservation,No,Non Prevailing Wage,0,1,3,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40956,103,WEST 137 STREET,Manhattan,10030,1020060028,1060001,MN-10,9,228,MN03,40.815623,-73.940412,40.8158,-73.940289,09/18/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40957,105,WEST 137 STREET,Manhattan,10030,1020060027,1060000,MN-10,9,228,MN03,40.815639,-73.940448,40.81585,-73.940386,10/13/2017,Preservation,No,Non Prevailing Wage,0,2,14,0,0,1,1,12,4,0,0,0,0,0,17,0,17,17 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40974,125,WEST 137 STREET,Manhattan,10030,1020060017,1059995,MN-10,9,228,MN03,40.815801,-73.940834,40.81617,-73.941159,07/26/2018,Preservation,No,Non Prevailing Wage,0,3,7,0,0,0,0,0,2,8,0,0,0,0,10,0,10,10 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40976,127,WEST 137 STREET,Manhattan,10030,1020060016,1059994,MN-10,9,228,MN03,40.815818,-73.94087,40.8162,-73.941235,07/21/2017,Preservation,No,Non Prevailing Wage,0,1,9,0,0,0,1,0,5,4,0,0,0,0,10,0,10,10 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40978,129,WEST 137 STREET,Manhattan,10030,1020060015,1059993,MN-10,9,228,MN03,40.815834,-73.94091,40.81624,-73.941314,07/12/2017,Preservation,No,Non Prevailing Wage,0,1,9,0,0,0,1,0,5,4,0,0,0,0,10,0,10,10 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,40979,131,WEST 137 STREET,Manhattan,10030,1020060014,1059992,MN-10,9,228,MN03,40.815851,-73.94095,40.81627,-73.941394,07/30/2018,Preservation,No,Non Prevailing Wage,0,5,14,0,0,0,9,10,0,0,0,0,0,0,19,0,19,19 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,41105,106,WEST 138 STREET,Manhattan,10030,1020060038,1060009,MN-10,9,228,MN03,40.816224,-73.939942,40.8161,-73.940227,07/26/2018,Preservation,No,Non Prevailing Wage,0,5,19,0,0,0,0,0,24,0,0,0,0,0,24,0,24,24 +52674,Genesis Year 15 Resyndication,Multifamily Finance Program,06/25/2015,07/30/2018,41124,137,WEST 138 STREET,Manhattan,10030,1020070009,1060020,MN-10,9,230,MN03,40.816839,-73.941365,40.81705,-73.941321,07/30/2018,Preservation,No,Non Prevailing Wage,0,2,9,0,0,0,1,2,4,4,0,0,0,0,11,0,11,11 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,205486,1077,BEDFORD AVENUE,Brooklyn,11216,3018020001,3050556,BK-03,36,243,BK75,40.686967,-73.954618,40.68696,-73.954304,05/25/2017,Preservation,No,Non Prevailing Wage,0,0,11,0,0,0,0,3,6,2,0,0,0,0,11,0,11,11 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,205571,1224,BEDFORD AVENUE,Brooklyn,11216,3020000017,3057453,BK-03,36,227,BK69,40.682006,-73.953652,40.68196,-73.953922,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,211801,1,BREVOORT PLACE,Brooklyn,11216,3020170001,3057744,BK-03,36,227,BK69,40.679984,-73.955279,40.68011,-73.955164,05/25/2017,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,3,1,1,0,0,0,0,5,0,5,5 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,211820,29,BREVOORT PLACE,Brooklyn,11216,3020170053,3057774,BK-03,36,227,BK69,40.680102,-73.954205,40.68034,-73.954331,06/21/2017,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,3,5,1,0,0,0,0,0,9,0,9,9 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,211823,35,BREVOORT PLACE,Brooklyn,11216,3020170050,3057771,BK-03,36,227,BK69,40.680126,-73.953999,40.68033,-73.954118,06/06/2017,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,2,3,0,0,0,0,0,0,5,0,5,5 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,221560,285,CLASSON AVENUE,Brooklyn,11205,3019240007,3055123,BK-03,33,193,BK69,40.691316,-73.960489,40.69119,-73.960219,05/30/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,6,0,1,0,0,0,0,7,0,7,7 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,230331,689,DE KALB AVENUE,Brooklyn,11216,3017750001,3322103,BK-03,36,261,BK75,40.691767,-73.948052,40.69191,-73.948365,05/18/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,3,1,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,230356,721,DE KALB AVENUE,Brooklyn,11216,3017750060,3049513,BK-03,36,261,BK75,40.691863,-73.947215,40.69208,-73.94724,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,18,0,0,0,0,0,18,0,0,0,0,0,18,0,18,18 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,230370,745,DE KALB AVENUE,Brooklyn,11216,3017750051,3049506,BK-03,36,261,BK75,40.691934,-73.946588,40.69217,-73.946436,05/25/2017,Preservation,No,Non Prevailing Wage,0,0,11,0,0,0,0,1,10,0,0,0,0,0,11,0,11,11 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,230373,753,DE KALB AVENUE,Brooklyn,11216,3017750049,3049504,BK-03,36,261,BK75,40.691958,-73.946379,40.69219,-73.946238,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,230389,795,DEKALB AVENUE,Brooklyn,11221,3017760063,3322108,BK-03,36,261,BK75,40.692196,-73.944301,40.69241,-73.944362,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,20,0,0,0,0,1,8,11,0,0,0,0,20,0,20,20 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,297255,1108,FULTON STREET,Brooklyn,11238,3020160032,3057711,BK-03,36,227,BK69,40.681313,-73.956565,40.68105,-73.956609,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,5,1,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,297269,1124,FULTON STREET,Brooklyn,11238,3020160039,3057718,BK-03,36,227,BK69,40.681225,-73.956136,40.68096,-73.956151,06/23/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,297285,1154,FULTON STREET,Brooklyn,11216,3020170024,3057752,BK-03,36,227,BK69,40.68095,-73.954849,40.6807,-73.954835,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,297307,1176,FULTON STREET,Brooklyn,11216,3020170035,3057763,BK-03,36,227,BK69,40.680736,-73.953858,40.68057,-73.954056,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299434,468,GATES AVENUE,Brooklyn,11216,3018140002,3051158,BK-03,36,265,BK75,40.686579,-73.947392,40.68639,-73.947256,06/23/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299445,480,GATES AVENUE,Brooklyn,11216,3018140007,3051163,BK-03,36,265,BK75,40.686645,-73.946812,40.68642,-73.946794,06/08/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,1,4,3,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299446,482,GATES AVENUE,Brooklyn,11216,3018140008,3051164,BK-03,36,265,BK75,40.68665,-73.946758,40.68643,-73.946704,06/08/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,3,5,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299448,486,GATES AVENUE,Brooklyn,11216,3018140010,3051165,BK-03,36,265,BK75,40.686664,-73.946632,40.68645,-73.946534,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299477,542,GATES AVENUE,Brooklyn,11221,3018150015,3051215,BK-03,36,265,BK75,40.686995,-73.943772,40.68676,-73.943797,11/10/2016,Preservation,No,Non Prevailing Wage,0,0,16,0,0,0,0,0,6,10,0,0,0,0,16,0,16,16 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299480,546,GATES AVENUE,Brooklyn,11221,3018150017,3051216,BK-03,36,265,BK75,40.687011,-73.943628,40.68678,-73.943632,11/10/2016,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,2,0,0,4,3,0,0,0,9,0,9,9 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299498,567,GATES AVENUE,Brooklyn,11221,3018100073,3051025,BK-03,36,265,BK75,40.687006,-73.943822,40.6872,-73.944024,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299511,587,GATES AVENUE,Brooklyn,11221,3018100064,3051021,BK-03,36,265,BK75,40.687066,-73.943289,40.68727,-73.943418,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,299525,617,GATES AVENUE,Brooklyn,11221,3018100050,3051014,BK-03,36,265,BK75,40.687159,-73.942485,40.68739,-73.942365,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,7,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,304041,236,GREENE AVENUE,Brooklyn,11238,3019660015,3056257,BK-02,35,231,BK69,40.6872,-73.961527,40.68696,-73.961581,05/26/2017,Preservation,No,Non Prevailing Wage,0,0,16,0,0,0,0,6,10,0,0,0,0,0,16,0,16,16 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,304564,848,GREENE AVENUE,Brooklyn,11221,3016200039,3044047,BK-03,36,291,BK35,40.690319,-73.934412,40.69012,-73.934152,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,3,1,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,304674,956,GREENE AVENUE,Brooklyn,11221,3016220020,3044144,BK-03,36,387,BK35,40.690884,-73.929475,40.69065,-73.929511,05/17/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,307083,44,HANCOCK STREET,Brooklyn,11216,3020000015,3057451,BK-03,36,227,BK69,40.682072,-73.953954,40.68185,-73.954164,06/23/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,3,1,2,1,0,0,0,0,7,0,7,7 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,307179,53,HANCOCK STREET,Brooklyn,11216,3018320097,3322555,BK-03,36,245,BK75,40.682187,-73.953114,40.68235,-73.953514,06/08/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,2,5,0,0,0,0,0,7,0,7,7 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,319258,892,KENT AVENUE,Brooklyn,11205,3019110024,3054928,BK-03,33,235,BK69,40.693816,-73.959244,40.69384,-73.959482,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,323761,226,LEFFERTS PLACE,Brooklyn,11238,3020200051,3057883,BK-03,36,227,BK69,40.680196,-73.955531,40.67998,-73.955636,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,1,2,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,325083,450,LEXINGTON AVENUE,Brooklyn,11221,3018050032,3050731,BK-03,36,265,BK75,40.688573,-73.943096,40.68836,-73.942949,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,3,1,0,0,0,0,7,0,7,7 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,325092,460,LEXINGTON AVENUE,Brooklyn,11221,3018050037,3050735,BK-03,36,265,BK75,40.688611,-73.942765,40.6884,-73.942559,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,2,2,1,0,0,0,0,5,0,5,5 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,325244,631,LEXINGTON AVENUE,Brooklyn,11221,3016200080,3044063,BK-03,36,291,BK35,40.689441,-73.935649,40.68963,-73.935884,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,340926,674,MYRTLE AVENUE,Brooklyn,11205,3019140021,3054993,BK-03,33,235,BK69,40.694491,-73.956849,40.69424,-73.956816,05/30/2017,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,357395,12,PULASKI STREET,Brooklyn,11206,3017740010,3341855,BK-03,36,253,BK75,40.69215,-73.951081,40.6919,-73.951258,06/07/2017,Preservation,No,Non Prevailing Wage,0,0,20,0,0,0,0,0,18,2,0,0,0,0,20,0,20,20 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,357401,126,PULASKI STREET,Brooklyn,11206,3017750033,3049490,BK-03,36,261,BK75,40.69265,-73.946721,40.69245,-73.946454,05/25/2017,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,2,7,0,0,0,0,0,9,0,9,9 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,357628,96,PULASKI STREET,Brooklyn,11206,3017750018,3049484,BK-03,36,261,BK75,40.692552,-73.947572,40.69232,-73.947601,06/09/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,1,0,5,0,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359070,105,QUINCY STREET,Brooklyn,11238,3019700041,3056428,BK-03,35,229,BK69,40.686205,-73.957294,40.68646,-73.956912,06/06/2017,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,3,1,7,1,0,0,0,0,12,0,12,12 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359109,165,QUINCY STREET,Brooklyn,11216,3018020105,3050608,BK-03,36,243,BK75,40.686582,-73.953991,40.68675,-73.954409,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,5,1,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359177,273,QUINCY STREET,Brooklyn,11216,3018030079,3050647,BK-03,36,251,BK75,40.687074,-73.949711,40.68728,-73.949833,05/25/2017,Preservation,No,Non Prevailing Wage,0,0,17,0,0,0,0,3,13,1,0,0,0,0,17,0,17,17 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359480,592,QUINCY STREET,Brooklyn,11221,3016290032,3044486,BK-03,36,277,BK35,40.688517,-73.93706,40.68831,-73.93683,06/06/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359487,601,QUINCY STREET,Brooklyn,11221,3016250071,3044288,BK-03,36,291,BK35,40.688771,-73.93499,40.68898,-73.935095,06/06/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,4,1,3,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,359564,722,QUINCY STREET,Brooklyn,11221,3016310025,3044514,BK-03,36,293,BK35,40.689181,-73.931265,40.68895,-73.931233,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,366285,175,SARATOGA AVENUE,Brooklyn,11233,3015200001,3041261,BK-16,41,371,BK79,40.680564,-73.916715,40.68062,-73.91652,06/08/2017,Preservation,No,Non Prevailing Wage,0,0,19,0,0,0,6,0,9,4,0,0,0,0,19,0,19,19 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,366287,179,SARATOGA AVENUE,Brooklyn,11233,3015260001,3041487,BK-16,41,371,BK79,40.680262,-73.916654,40.68016,-73.916485,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,370754,193,SKILLMAN STREET,Brooklyn,11205,3019280025,3055232,BK-03,33,235,BK69,40.692232,-73.956634,40.6924,-73.95641,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,6,0,1,0,0,0,0,7,0,7,7 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,373064,1,SPENCER PLACE,Brooklyn,11216,3020000014,3057450,BK-03,36,227,BK69,40.681834,-73.954578,40.68191,-73.954362,05/26/2017,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,4,4,1,0,0,0,0,0,9,0,9,9 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,373075,2,SPENCER PLACE,Brooklyn,11216,3019990015,3057421,BK-03,36,227,BK69,40.681831,-73.9546,40.68182,-73.954878,06/16/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,7,3,0,0,0,0,0,0,10,0,10,10 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,373080,27,SPENCER PLACE,Brooklyn,11216,3020000001,3057440,BK-03,36,227,BK69,40.681285,-73.954474,40.68123,-73.954189,06/06/2017,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,2,10,0,0,0,0,0,12,0,12,12 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,373453,218,ST JAMES PLACE,Brooklyn,11238,3019790039,3056664,BK-02,35,201,BK69,40.683758,-73.963865,40.68381,-73.964168,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,2,6,4,0,0,0,0,12,0,12,12 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,379297,254,MARCUS GARVEY BOULEVARD,Brooklyn,11221,3018060038,3050780,BK-03,36,279,BK35,40.688911,-73.939231,40.68886,-73.939519,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,4,2,0,0,0,0,0,6,0,6,6 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,381586,277,TOMPKINS AVENUE,Brooklyn,11216,3018000002,3050452,BK-03,36,263,BK75,40.688546,-73.944935,40.68859,-73.944708,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,396439,660,WILLOUGHBY AVENUE,Brooklyn,11206,3017690009,3049207,BK-03,36,283,BK35,40.694581,-73.942972,40.69436,-73.942806,05/30/2017,Preservation,No,Non Prevailing Wage,0,0,24,0,0,0,0,12,7,5,0,0,0,0,24,0,24,24 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,396443,666,WILLOUGHBY AVENUE,Brooklyn,11206,3017690011,3049208,BK-03,36,283,BK35,40.694603,-73.942767,40.69439,-73.942554,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,36,0,0,0,2,12,10,12,0,0,0,0,36,0,36,36 +52756,PACC ABCCD RESYNDICATION,Multifamily Finance Program,06/25/2015,06/23/2017,808059,801,DEKALB AVENUE,Brooklyn,11221,3017760063,3322107,BK-03,36,261,BK75,40.692213,-73.944139,40.69241,-73.944362,03/29/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +52937,Arker.34-11 Beach Channel Drive,Multifamily Finance Program,06/25/2015,08/20/2018,965899,34-11,BEACH CHANNEL DRIVE,Queens,11691,4159507501,,QN-14,31,992,QN12,40.596826,-73.767088,40.59686,-73.766627,08/20/2018,New Construction,No,Prevailing Wage,153,0,0,0,0,1,0,153,1,0,0,0,0,0,154,0,154,154 +51143,Edward Dozier HDFC,Multifamily Finance Program,06/24/2015,07/14/2017,5578,1488,AMSTERDAM AVENUE,Manhattan,10031,1019870033,1059740,MN-09,7,219,MN06,40.817942,-73.95295,40.81804,-73.953268,07/14/2017,Preservation,No,Non Prevailing Wage,0,10,8,0,0,0,0,2,15,1,0,0,0,0,18,0,18,18 +51143,Edward Dozier HDFC,Multifamily Finance Program,06/24/2015,07/14/2017,5579,1492,AMSTERDAM AVENUE,Manhattan,10031,1019870034,1059741,MN-09,7,219,MN06,40.818022,-73.952888,40.81814,-73.953199,07/14/2017,Preservation,No,Non Prevailing Wage,1,10,7,0,0,0,0,2,15,1,0,0,0,0,18,0,18,18 +51143,Edward Dozier HDFC,Multifamily Finance Program,06/24/2015,07/14/2017,5580,1496,AMSTERDAM AVENUE,Manhattan,10031,1019870036,1059742,MN-09,7,219,MN06,40.818104,-73.952831,40.81824,-73.953127,07/14/2017,Preservation,No,Non Prevailing Wage,0,12,10,0,0,0,0,6,16,0,0,0,0,0,22,0,22,22 +51396,"RIVERBEND HOUSING COMPANY, INC.",Multifamily Finance Program,06/24/2015,01/09/2018,2713,2289,5 AVENUE,Manhattan,10037,1017630001,1054344,MN-11,9,210,MN34,40.814945,-73.936012,40.81476,-73.935228,01/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,297,0,0,16,191,90,0,0,0,0,0,0,297,297,297 +51396,"RIVERBEND HOUSING COMPANY, INC.",Multifamily Finance Program,06/24/2015,01/09/2018,2716,2301,5 AVENUE,Manhattan,10037,1017640001,1054345,MN-11,9,210,MN34,40.815502,-73.935614,40.8157,-73.934881,01/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,60,0,0,0,0,52,8,0,0,0,0,0,60,60,60 +51396,"RIVERBEND HOUSING COMPANY, INC.",Multifamily Finance Program,06/24/2015,01/09/2018,804799,2311,5 AVENUE,Manhattan,10037,1017640001,1085294,MN-11,9,210,MN34,40.816029,-73.935227,40.8157,-73.934881,01/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,84,0,0,8,0,60,16,0,0,0,0,0,84,84,84 +51396,"RIVERBEND HOUSING COMPANY, INC.",Multifamily Finance Program,06/24/2015,01/09/2018,904741,2333,5 AVENUE,Manhattan,10037,1017640001,1085296,MN-11,9,210,MN34,40.816767,-73.934713,40.8157,-73.934881,01/09/2018,Preservation,No,Non Prevailing Wage,0,0,0,184,0,0,7,92,61,24,0,0,0,0,0,184,184,184 +52626,1007 ATLANTIC AVENUE,Multifamily Incentives Program,06/24/2015,01/23/2018,955431,1007,ATLANTIC AVENUE,Brooklyn,11238,3020197505,3426775,BK-02,36,227,BK69,40.680013,-73.95913,40.68025,-73.958859,01/23/2018,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,2,3,5,0,0,0,0,0,10,0,10,50 +51751,Rose Ellen Smith MBD HDFC,Multifamily Finance Program,06/23/2015,05/31/2016,85563,1711,HOE AVENUE,Bronx,10460,2029830028,2010608,BX-03,17,161,BX75,40.836415,-73.887223,40.83689,-73.887106,05/31/2016,Preservation,No,Non Prevailing Wage,17,0,0,0,0,1,5,12,1,0,0,0,0,0,18,0,18,18 +51751,Rose Ellen Smith MBD HDFC,Multifamily Finance Program,06/23/2015,05/31/2016,122026,1131,WEST FARMS ROAD,Bronx,10459,2027440063,2006048,BX-02,17,12701,BX27,40.82643,-73.890307,40.82657,-73.890462,05/31/2016,Preservation,No,Non Prevailing Wage,28,0,0,0,0,1,8,20,1,0,0,0,0,0,29,0,29,29 +48011,TBX602-Bronx Pro,Multifamily Finance Program,06/22/2015,09/26/2018,45506,1641,ANDREWS AVENUE SOUTH,Bronx,10453,2028780061,2009001,BX-05,14,21501,BX36,40.848236,-73.919411,40.84823,-73.919733,09/26/2018,Preservation,No,Non Prevailing Wage,0,0,53,6,0,1,2,31,19,2,3,2,1,0,60,0,60,60 +50293,Belle Apartments HDFC,Multifamily Finance Program,06/22/2015,02/13/2018,66001,601,EAST 178 STREET,Bronx,10457,2030680061,2011977,BX-06,17,373,BX17,40.846919,-73.892861,40.84699,-73.892684,02/13/2018,Preservation,No,Non Prevailing Wage,1,6,14,0,0,0,0,2,6,12,1,0,0,0,21,0,21,21 +58280,CONFIDENTIAL,Homeowner Assistance Program,06/22/2015,06/22/2015,,----,----,Queens,,,,QN-04,21,,,,,,,06/22/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +48732,TMN601B - MDG,Multifamily Finance Program,06/19/2015,05/16/2017,43250,503,WEST 174 STREET,Manhattan,10033,1021310052,1063173,MN-12,10,261,MN36,40.843693,-73.934474,40.84399,-73.934622,05/16/2017,Preservation,No,Non Prevailing Wage,0,0,26,0,0,0,0,5,17,4,0,0,0,0,26,0,26,26 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,77395,813,FAILE STREET,Bronx,10474,2027620025,2006430,BX-02,17,11502,BX27,40.8172,-73.887197,40.81725,-73.887504,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,2,7,0,0,1,0,0,0,10,0,0,0,0,10,0,10,10 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,80236,1220,GILBERT PLACE,Bronx,10474,2027620018,2006427,BX-02,17,11502,BX27,40.817875,-73.88781,40.81779,-73.887648,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,2,11,0,3,0,1,11,4,0,0,0,0,0,16,0,16,16 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,87879,846,HUNTS POINT AVENUE,Bronx,10474,2027620016,2006426,BX-02,17,11502,BX27,40.817632,-73.88857,40.8177,-73.888212,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,2,9,0,3,0,0,9,0,5,0,0,0,0,14,0,14,14 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,87886,860,HUNTS POINT AVENUE,Bronx,10474,2027620040,2006433,BX-02,17,11502,BX27,40.817978,-73.888775,40.8182,-73.88846,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,3,13,0,4,0,0,5,15,0,0,0,0,0,20,0,20,20 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,87894,871,HUNTS POINT AVENUE,Bronx,10474,2027400012,2005944,BX-02,17,93,BX27,40.818475,-73.889096,40.81848,-73.889486,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,1,3,0,3,1,0,0,0,0,8,0,0,0,8,0,8,8 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,87895,875,HUNTS POINT AVENUE,Bronx,10474,2027400010,2005943,BX-02,17,93,BX27,40.818769,-73.889283,40.81858,-73.889547,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,1,3,0,4,0,0,0,0,0,8,0,0,0,8,0,8,8 +49174,Hunts Point Cluster,Multifamily Finance Program,06/19/2015,06/19/2015,104516,634,PROSPECT AVENUE,Bronx,10455,2026850028,2005106,BX-02,17,83,BX33,40.814849,-73.903538,40.81485,-73.903177,06/19/2015,Preservation,Yes,Non Prevailing Wage,0,2,14,0,4,0,0,12,8,0,0,0,0,0,20,0,20,20 +51652,Praxis. 2270 Loring Place North,Multifamily Finance Program,06/19/2015,06/02/2017,953622,2264,LORING PLACE NORTH,Bronx,10468,2032250010,2129017,BX-07,14,255,BX30,40.860959,-73.90897,40.8608,-73.908742,06/02/2017,New Construction,No,Prevailing Wage,51,0,14,0,0,1,51,10,5,0,0,0,0,0,66,0,66,66 +53437,PRC Andrews Avenue,Multifamily Finance Program,06/19/2015,08/31/2016,45509,1710,ANDREWS AVENUE SOUTH,Bronx,10453,2028780170,2009012,BX-05,14,21501,BX36,40.84994,-73.917837,40.84967,-73.917837,08/31/2016,Preservation,No,Non Prevailing Wage,0,82,0,0,0,0,0,12,58,12,0,0,0,0,82,0,82,82 +53437,PRC Andrews Avenue,Multifamily Finance Program,06/19/2015,08/31/2016,45511,1730,ANDREWS AVENUE SOUTH,Bronx,10453,2028780178,2009013,BX-05,14,21501,BX36,40.850178,-73.917497,40.85,-73.917356,05/31/2016,Preservation,No,Non Prevailing Wage,0,64,0,0,0,0,0,22,34,8,0,0,0,0,64,0,64,64 +53437,PRC Andrews Avenue,Multifamily Finance Program,06/19/2015,08/31/2016,64657,955,EAST 163 STREET,Bronx,10459,2027130002,2092007,BX-02,17,159,BX27,40.821001,-73.89558,40.8223,-73.895513,01/29/2016,Preservation,No,Non Prevailing Wage,0,43,0,0,0,0,0,4,23,16,0,0,0,0,43,0,43,43 +53437,PRC Andrews Avenue,Multifamily Finance Program,06/19/2015,08/31/2016,806776,970,KELLY STREET,Bronx,10459,2027130002,2092008,BX-02,17,159,BX27,40.821767,-73.895861,40.8223,-73.895513,12/31/2015,Preservation,No,Non Prevailing Wage,0,59,0,0,0,0,0,6,29,24,0,0,0,0,59,0,59,59 +52000,34-37 Realty Ltd.,Multifamily Finance Program,06/17/2015,07/20/2017,110423,1291,SPOFFORD AVENUE,Bronx,10474,2027630162,2006535,BX-02,17,93,BX27,40.814441,-73.886956,40.81472,-73.886837,07/20/2017,Preservation,No,Non Prevailing Wage,0,3,38,5,0,0,0,46,0,0,0,0,0,0,46,0,46,46 +59032,Atlantic Yards B3,Multifamily Finance Program,06/17/2015,08/01/2017,966928,38,6 AVENUE,Brooklyn,11217,3011180003,3418421,BK-06,35,12902,BK37,40.681782,-73.974142,40.68194,-73.97439,08/01/2017,New Construction,No,Non Prevailing Wage,0,14,77,14,198,0,66,131,90,16,0,0,0,0,303,0,303,303 +53355,555 Waverly Avenue,Multifamily Incentives Program,06/12/2015,03/14/2019,957005,555,WAVERLY AVENUE,Brooklyn,11238,3020120001,,BK-02,35,199,BK69,40.681854,-73.965593,40.68187,-73.965319,03/14/2019,New Construction,No,Non Prevailing Wage,0,0,38,0,0,0,11,20,7,0,0,0,0,0,38,0,38,190 +65130,423 EAST 117 STREET,Multifamily Incentives Program,06/12/2015,05/08/2018,940179,423,EAST 117 STREET,Manhattan,10035,1017110111,1088465,MN-11,8,178,MN34,40.796398,-73.934217,40.79645,-73.933798,05/08/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,1,1,0,0,0,0,0,0,2,0,2,8 +45647,Harlen Park 70 West 139th Street,Multifamily Finance Program,06/11/2015,10/10/2018,805961,50,WEST 139 STREET,Manhattan,10037,1017360060,1083986,MN-10,9,212,MN03,40.816102,-73.937658,40.81585,-73.937713,10/10/2018,New Construction,No,Non Prevailing Wage,0,0,0,6,36,0,0,21,21,0,0,0,0,0,0,42,42,64 +54302,The Meekerman,Multifamily Incentives Program,06/11/2015,08/15/2017,957817,410,MANHATTAN AVENUE,Brooklyn,11211,3027347502,3425138,BK-01,34,497,BK90,40.718193,-73.946682,40.71836,-73.946354,08/15/2017,New Construction,No,Non Prevailing Wage,0,17,32,0,0,0,12,10,27,0,0,0,0,0,49,0,49,50 +58282,CONFIDENTIAL,Homeowner Assistance Program,06/11/2015,06/11/2015,,----,----,Brooklyn,,,,BK-05,37,,,,,,,06/11/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +48763,Dorie Miller Apartments - WHGA,Multifamily Finance Program,06/10/2015,04/05/2019,3607,2472,ADAM C POWELL BOULEVARD,Manhattan,10030,1020290035,1060435,MN-10,9,232,MN03,40.820755,-73.939732,40.82095,-73.940039,04/05/2019,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +48763,Dorie Miller Apartments - WHGA,Multifamily Finance Program,06/10/2015,04/05/2019,4163,2797,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020450074,1060834,MN-10,9,259,MN03,40.825166,-73.940226,40.82528,-73.940526,02/13/2018,Preservation,No,Non Prevailing Wage,0,0,7,1,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +48763,Dorie Miller Apartments - WHGA,Multifamily Finance Program,06/10/2015,04/05/2019,7470,204,BRADHURST AVENUE,Manhattan,10039,1020460041,1060868,MN-10,9,23502,MN03,40.827452,-73.939827,40.82742,-73.939455,03/28/2018,Preservation,No,Non Prevailing Wage,0,6,14,0,0,0,1,10,4,1,4,0,0,0,20,0,20,20 +48763,Dorie Miller Apartments - WHGA,Multifamily Finance Program,06/10/2015,04/05/2019,42323,232,WEST 149 STREET,Manhattan,10039,1020340052,1060577,MN-10,9,234,MN03,40.824655,-73.938359,40.82469,-73.939034,02/07/2018,Preservation,No,Non Prevailing Wage,0,11,7,0,0,0,1,5,12,0,0,0,0,0,18,0,18,18 +53337,211 MCGUINNESS BOULEVARD,Multifamily Incentives Program,06/10/2015,,956966,211,MC GUINNESS BOULEVARD,Brooklyn,11222,0,3379800,BK-01,33,575,BK76,40.729525,-73.95097,40.72959,-73.951385,,New Construction,No,Non Prevailing Wage,0,0,40,0,20,0,7,43,10,0,0,0,0,0,60,0,60,197 +58515,Bay Park I Apartments (20140285),Multifamily Incentives Program,06/10/2015,,342111,3325,NEPTUNE AVENUE,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.577192,-74.000572,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,127,0,0,1,7,18,50,40,13,0,0,0,128,0,128,128 +58515,Bay Park I Apartments (20140285),Multifamily Incentives Program,06/10/2015,,808926,3405,NEPTUNE AVENUE,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.577099,-74.001393,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,133,0,0,1,8,18,53,42,13,0,0,0,134,0,134,134 +58515,Bay Park I Apartments (20140285),Multifamily Incentives Program,06/10/2015,,809837,2770,WEST 33 STREET,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.577887,-74.000155,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,72,0,0,0,4,10,28,23,7,0,0,0,72,0,72,72 +58516,Bay Park II Apartments (20140286),Multifamily Incentives Program,06/10/2015,,808925,3395,NEPTUNE AVENUE,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.577104,-74.001328,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,73,0,0,0,4,10,29,23,7,0,0,0,73,0,73,73 +58516,Bay Park II Apartments (20140286),Multifamily Incentives Program,06/10/2015,,808927,3415,NEPTUNE AVENUE,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.578029,-74.003218,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,130,0,0,1,7,18,51,42,13,0,0,0,131,0,131,131 +58516,Bay Park II Apartments (20140286),Multifamily Incentives Program,06/10/2015,,809836,2750,WEST 33 STREET,Brooklyn,11224,3069790100,3253907,BK-13,47,330,BK21,40.578309,-74.000234,40.57792,-74.001166,,Preservation,No,Non Prevailing Wage,0,0,133,0,0,1,8,18,52,43,13,0,0,0,134,0,134,134 +58005,CONFIDENTIAL,Homeowner Assistance Program,06/08/2015,06/08/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,06/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58026,CONFIDENTIAL,Homeowner Assistance Program,06/08/2015,06/08/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,06/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +58035,CONFIDENTIAL,Homeowner Assistance Program,06/08/2015,06/08/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52741,Walton Heights Apartments,Multifamily Finance Program,06/05/2015,06/05/2015,67198,272,EAST 199 STREET,Bronx,10458,2032960034,2016915,BX-07,15,40702,BX05,40.869884,-73.886757,40.86979,-73.886992,06/05/2015,Preservation,Yes,Non Prevailing Wage,0,3,4,0,4,0,0,0,1,10,0,0,0,0,11,0,11,11 +52741,Walton Heights Apartments,Multifamily Finance Program,06/05/2015,06/05/2015,116668,2471,UNIVERSITY AVENUE,Bronx,10468,2032190201,2014819,BX-07,14,263,BX30,40.864671,-73.90374,40.86481,-73.904026,06/05/2015,Preservation,Yes,Non Prevailing Wage,0,5,8,0,7,0,0,0,7,13,0,0,0,0,20,0,20,20 +52741,Walton Heights Apartments,Multifamily Finance Program,06/05/2015,06/05/2015,119116,2075,WALTON AVENUE,Bronx,10453,2031790052,2013965,BX-05,14,241,BX41,40.854089,-73.905903,40.85438,-73.905975,06/05/2015,Preservation,Yes,Non Prevailing Wage,0,6,33,0,9,0,0,17,11,20,0,0,0,0,48,0,48,48 +54866,840 Fulton Street,Multifamily Incentives Program,06/04/2015,01/02/2020,984579,840,FULTON STREET,Brooklyn,11238,3020100025,3426625,BK-02,35,199,BK69,40.683666,-73.96773,40.68342,-73.967626,01/02/2020,New Construction,No,Non Prevailing Wage,0,0,8,0,0,0,1,3,4,0,0,0,0,0,8,0,8,39 +57503,416 KENT,Multifamily Incentives Program,06/04/2015,08/22/2019,966338,416,KENT AVENUE,Brooklyn,11249,3021280005,3418297,BK-01,33,549,BK73,40.710219,-73.968532,40.71028,-73.969052,08/22/2019,New Construction,No,Non Prevailing Wage,0,26,26,0,13,0,31,18,16,0,0,0,0,0,65,0,65,251 +57504,420 Kent,Multifamily Incentives Program,06/04/2015,,966339,420,KENT AVENUE,Brooklyn,11249,3021340056,3425676,BK-01,33,547,BK73,40.709915,-73.968525,40.70967,-73.969164,,New Construction,No,Non Prevailing Wage,0,0,121,0,0,0,70,28,23,0,0,0,0,0,121,0,121,484 +52223,JERICHO. 2065 WALTON AVENUE,Multifamily Finance Program,06/03/2015,06/05/2018,954207,2065,WALTON AVENUE,Bronx,10453,2031790060,2129079,BX-05,14,241,BX41,40.853952,-73.906026,40.85397,-73.90634,06/05/2018,New Construction,No,Prevailing Wage,89,0,1,0,0,0,89,0,1,0,0,0,0,0,90,0,90,90 +57999,CONFIDENTIAL,Homeowner Assistance Program,06/03/2015,06/03/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,06/03/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58174,CONFIDENTIAL,Homeowner Assistance Program,06/03/2015,12/01/2015,,----,----,Brooklyn,,,,BK-18,45,,,,,,,12/01/2015,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57784,CONFIDENTIAL,Homeowner Assistance Program,05/29/2015,07/09/2015,,----,----,Queens,,,,QN-10,28,,,,,,,07/09/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57816,CONFIDENTIAL,Homeowner Assistance Program,05/29/2015,05/29/2015,,----,----,Queens,,,,QN-12,27,,,,,,,05/29/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52898,277 Gates Avenue,Multifamily Finance Program,05/22/2015,05/25/2015,299295,277,GATES AVENUE,Brooklyn,11216,3019740051,3056589,BK-03,36,229,BK69,40.685592,-73.956105,40.68576,-73.956259,05/25/2015,Preservation,No,Non Prevailing Wage,0,0,26,9,0,0,0,17,18,0,0,0,0,0,35,0,35,35 +53166,174 North 11th Street,Multifamily Incentives Program,05/21/2015,10/16/2017,976705,174,NORTH 11 STREET,Brooklyn,11211,3022980013,3424774,BK-01,33,517,BK73,40.719627,-73.954686,40.71939,-73.954748,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,2,3,5,0,0,0,0,0,10,0,10,49 +57802,CONFIDENTIAL,Homeowner Assistance Program,05/21/2015,05/21/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/21/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +57829,CONFIDENTIAL,Homeowner Assistance Program,05/21/2015,05/21/2015,,----,----,Bronx,,,,BX-11,13,,,,,,,05/21/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53518,222 EAST 44TH STREET,Multifamily Incentives Program,05/20/2015,06/03/2019,13694,212,EAST 44 STREET,Manhattan,10017,1013170009,,MN-06,4,88,MN19,40.751836,-73.972981,40.75131,-73.972689,06/03/2019,New Construction,No,Non Prevailing Wage,0,43,44,0,22,0,39,51,19,0,0,0,0,0,109,0,109,429 +54727,Bensonhurst Housing For The Elderly,Multifamily Finance Program,05/20/2015,03/22/2017,174301,2160,78 STREET,Brooklyn,11214,3062640029,3331517,BK-11,44,270,BK28,40.607014,-73.990074,40.60675,-73.990071,03/22/2017,Preservation,No,Non Prevailing Wage,0,70,0,0,0,1,18,52,1,0,0,0,0,0,71,0,71,71 +57824,CONFIDENTIAL,Homeowner Assistance Program,05/20/2015,05/20/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,05/20/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65114,37A COOPER STREET,Multifamily Incentives Program,05/20/2015,02/06/2018,955252,37A,COOPER STREET,Brooklyn,11207,3034320042,3426477,BK-04,37,403,BK78,40.684449,-73.910617,40.68458,-73.91084,02/06/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,1,1,0,0,0,0,0,0,2,0,2,8 +52369,500 Waverly,Multifamily Incentives Program,05/19/2015,05/09/2017,970317,502,WAVERLY AVENUE,Brooklyn,11238,3020117502,3426479,BK-02,35,199,BK69,40.682818,-73.965794,40.68304,-73.966094,05/09/2017,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,1,4,6,0,0,0,0,0,0,11,11,48 +54898,69 EAST 125TH STREET,Multifamily Incentives Program,05/15/2015,09/22/2017,966330,69,EAST 125 STREET,Manhattan,10035,1017500028,1089917,MN-11,9,198,MN34,40.805459,-73.939969,40.80568,-73.939594,09/22/2017,New Construction,No,Non Prevailing Wage,0,0,15,0,0,0,3,4,8,0,0,0,0,0,15,0,15,75 +57827,CONFIDENTIAL,Homeowner Assistance Program,05/15/2015,05/15/2015,,----,----,Brooklyn,,,,BK-16,42,,,,,,,05/15/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +59046,First Atlantic Terminal (HDC),Multifamily Finance Program,05/15/2015,06/22/2017,372734,161,SOUTH ELLIOTT PLACE,Brooklyn,11217,3020030008,3321975,BK-02,35,35,BK68,40.684739,-73.975096,40.68423,-73.974526,06/22/2017,Preservation,No,Non Prevailing Wage,0,0,93,0,0,0,14,22,34,23,0,0,0,0,0,93,93,93 +59046,First Atlantic Terminal (HDC),Multifamily Finance Program,05/15/2015,06/22/2017,809483,170,SOUTH PORTLAND AVENUE,Brooklyn,11217,3020030008,3321974,BK-02,35,35,BK68,40.684228,-73.974029,40.68423,-73.974526,06/22/2017,Preservation,No,Non Prevailing Wage,0,0,116,0,0,0,15,29,44,28,0,0,0,0,0,116,116,116 +50639,874 Willoughby Avenue,Multifamily Incentives Program,05/14/2015,,949245,874,WILLOUGHBY AVENUE,Brooklyn,11221,3015930023,3423327,BK-03,36,287,BK35,40.695665,-73.93357,40.69546,-73.933235,,New Construction,No,Non Prevailing Wage,0,0,19,0,0,0,0,9,10,0,0,0,0,0,19,0,19,93 +53006,7 West 21st Street,Multifamily Incentives Program,05/14/2015,05/23/2017,966614,7,WEST 21 STREET,Manhattan,10010,1008237507,1090231,MN-05,3,58,MN13,40.740531,-73.99113,40.74094,-73.99113,05/23/2017,New Construction,No,Non Prevailing Wage,0,0,58,0,0,0,12,33,12,1,0,0,0,0,58,0,58,289 +57806,CONFIDENTIAL,Homeowner Assistance Program,05/14/2015,05/14/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/14/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +57807,CONFIDENTIAL,Homeowner Assistance Program,05/12/2015,05/12/2015,,----,----,Queens,,,,QN-12,27,,,,,,,05/12/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58517,Smith Woodward Apartments (20150005),Multifamily Incentives Program,05/12/2015,08/01/2017,297561,1660,FULTON STREET,Brooklyn,11213,3017000017,3325185,BK-03,36,271,BK61,40.679546,-73.934134,40.67925,-73.934123,08/01/2017,Preservation,No,Non Prevailing Wage,0,0,100,40,0,1,0,23,72,25,21,0,0,0,141,0,141,141 +54982,79-89 AVENUE D,Multifamily Incentives Program,05/11/2015,10/10/2018,966340,751,EAST 6 STREET,Manhattan,10009,1003767501,1090645,MN-03,2,2602,MN28,40.72288,-73.977773,40.72288,-73.976976,10/10/2018,New Construction,No,Non Prevailing Wage,0,11,11,0,6,0,10,9,8,1,0,0,0,0,28,0,28,110 +53498,118 Fulton Street,Multifamily Incentives Program,05/08/2015,03/14/2019,966480,118,FULTON STREET,Manhattan,10038,1000780047,1090115,MN-01,1,1502,MN25,40.71004,-74.007405,40.70981,-74.00738,03/14/2019,New Construction,No,Non Prevailing Wage,0,0,97,0,0,0,31,56,10,0,0,0,0,0,97,0,97,483 +57809,CONFIDENTIAL,Homeowner Assistance Program,05/08/2015,05/08/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,05/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58204,CONFIDENTIAL,Homeowner Assistance Program,05/08/2015,05/08/2015,,----,----,Brooklyn,,,,BK-17,40,,,,,,,05/08/2015,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +51123,BAM Cultural District North Site Tower II,Multifamily Finance Program,05/07/2015,03/20/2018,967799,15,LAFAYETTE AVENUE,Brooklyn,11217,3021077502,,BK-02,35,33,BK68,40.68679,-73.97851,40.68703,-73.978578,03/20/2018,New Construction,No,Non Prevailing Wage,0,0,25,0,24,1,19,7,24,0,0,0,0,0,50,0,50,123 +57813,CONFIDENTIAL,Homeowner Assistance Program,05/06/2015,05/06/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,05/06/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +57819,CONFIDENTIAL,Homeowner Assistance Program,05/06/2015,05/06/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/06/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52852,G&M Properties Phase II,Multifamily Finance Program,05/05/2015,10/02/2017,55755,1030,CAULDWELL AVENUE,Bronx,10456,2026330004,2004501,BX-03,16,185,BX35,40.825895,-73.905773,40.82598,-73.90544,10/02/2017,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,25,0,0,0,0,0,0,0,25,0,25,25 +52852,G&M Properties Phase II,Multifamily Finance Program,05/05/2015,10/02/2017,111948,1167,STRATFORD AVENUE,Bronx,10472,2037430050,2023992,BX-09,18,48,BX55,40.828295,-73.875298,40.82852,-73.875626,03/15/2017,Preservation,No,Non Prevailing Wage,0,0,69,0,0,0,0,52,16,1,0,0,0,0,69,0,69,69 +52852,G&M Properties Phase II,Multifamily Finance Program,05/05/2015,10/02/2017,116819,1636,DR M L KING JR BOULEVARD,Bronx,10453,2028760087,2008827,BX-05,14,21502,BX36,40.847742,-73.919235,40.84752,-73.918866,03/15/2017,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,0,9,9,7,0,0,0,0,25,0,25,25 +52852,G&M Properties Phase II,Multifamily Finance Program,05/05/2015,10/02/2017,116820,1640,DR M L KING JR BOULEVARD,Bronx,10453,2028760088,2008828,BX-05,14,21502,BX36,40.847803,-73.919144,40.84762,-73.918718,03/15/2017,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,0,9,9,7,0,0,0,0,25,0,25,25 +52852,G&M Properties Phase II,Multifamily Finance Program,05/05/2015,10/02/2017,121014,100,WEST 174 STREET,Bronx,10453,2028760014,2008796,BX-05,14,21502,BX36,40.847061,-73.917743,40.84682,-73.917834,03/15/2017,Preservation,No,Non Prevailing Wage,0,0,37,0,0,0,0,19,13,5,0,0,0,0,37,0,37,37 +53383,85 Commercial St.,Multifamily Incentives Program,05/05/2015,,957028,85,COMMERCIAL STREET,Brooklyn,11222,3024720410,3063675,BK-01,33,563,BK76,40.737454,-73.956406,40.73798,-73.957077,,New Construction,No,Non Prevailing Wage,0,20,106,34,40,0,50,50,90,10,0,0,0,0,200,0,200,200 +44324,Clinton URA Site 7/CHDC,Multifamily Finance Program,05/04/2015,,927213,525,WEST 52 STREET,Manhattan,10019,1010817501,1090143,MN-04,3,135,MN15,40.766507,-73.992217,40.76683,-73.991971,,New Construction,No,Non Prevailing Wage,0,0,24,26,52,1,14,37,48,4,0,0,0,0,103,0,103,103 +52053,525 West 52nd Street,Multifamily Incentives Program,05/04/2015,06/13/2018,927213,525,WEST 52 STREET,Manhattan,10019,1010817501,1090143,MN-04,3,135,MN15,40.766507,-73.992217,40.76683,-73.991971,06/13/2018,New Construction,No,Non Prevailing Wage,0,0,79,0,0,0,19,39,21,0,0,0,0,0,79,0,79,392 +54292,"Greenpoint Landing F2_5 Blue Slip, Brooklyn, NY",Multifamily Incentives Program,05/04/2015,03/28/2018,967326,5,BLUE SLIP,Brooklyn,11222,3024727502,3418261,BK-01,33,563,BK76,40.735584,-73.959767,40.73606,-73.959442,03/28/2018,New Construction,No,Non Prevailing Wage,10,30,62,0,0,0,22,29,51,0,0,0,0,0,102,0,102,103 +55121,CONFIDENTIAL,Homeowner Assistance Program,05/01/2015,07/06/2015,,----,----,Brooklyn,,,,BK-08,36,,,,,,,07/06/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58241,CONFIDENTIAL,Homeowner Assistance Program,05/01/2015,05/01/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,05/01/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +50875,68 Charlton,Multifamily Incentives Program,04/28/2015,07/14/2017,950146,68,CHARLTON STREET,Manhattan,10014,1005800011,1090546,MN-02,3,37,MN24,40.727235,-74.006433,40.72692,-74.00644,07/14/2017,New Construction,No,Non Prevailing Wage,0,0,29,0,0,0,7,2,20,0,0,0,0,0,29,0,29,122 +58504,Marcy Sheridan Apartments (20146009),Multifamily Incentives Program,04/27/2015,04/17/2017,94281,201,MARCY PLACE,Bronx,10456,2028317501,2128648,BX-04,16,17902,BX14,40.837397,-73.914452,40.83739,-73.913816,04/17/2017,New Construction,No,Non Prevailing Wage,0,52,6,15,0,1,37,7,22,8,0,0,0,0,74,0,74,74 +55343,ACRMD LUBIN,Multifamily Incentives Program,04/23/2015,04/23/2015,807352,79,3 STREET,Brooklyn,11231,3004610059,3323630,BK-06,39,77,BK33,40.677552,-73.993107,40.67775,-73.992973,04/23/2015,Preservation,Yes,Non Prevailing Wage,0,25,0,0,0,0,25,0,0,0,0,0,0,0,25,0,25,25 +57603,CONFIDENTIAL,Homeowner Assistance Program,04/23/2015,04/23/2015,,----,----,Queens,,,,QN-06,29,,,,,,,04/23/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +52665,907 Driggs Avenue,Multifamily Finance Program,04/22/2015,,234701,907,DRIGGS AVENUE,Brooklyn,11211,3021480004,3059729,BK-01,33,525,BK73,40.708041,-73.962662,40.708,-73.962413,,Preservation,No,Non Prevailing Wage,0,0,21,0,0,0,0,3,7,10,0,0,0,1,21,0,21,21 +57575,CONFIDENTIAL,Homeowner Assistance Program,04/21/2015,04/21/2015,,----,----,Queens,,,,QN-12,28,,,,,,,04/21/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54494,211 WEST 28TH STREET,Multifamily Incentives Program,04/17/2015,,31902,211,WEST 28 STREET,Manhattan,10001,1007780033,1014260,MN-05,3,95,MN17,40.747511,-73.993984,40.7477,-73.993894,,New Construction,No,Non Prevailing Wage,0,0,37,0,0,0,37,0,0,0,0,0,0,0,37,0,37,37 +57585,CONFIDENTIAL,Homeowner Assistance Program,04/16/2015,04/16/2015,,----,----,Bronx,,,,BX-11,13,,,,,,,04/16/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +57578,CONFIDENTIAL,Homeowner Assistance Program,04/15/2015,04/15/2015,,----,----,Bronx,,,,BX-07,14,,,,,,,04/15/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +57548,CONFIDENTIAL,Homeowner Assistance Program,04/10/2015,04/10/2015,,----,----,Queens,,,,QN-12,28,,,,,,,04/10/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +57565,CONFIDENTIAL,Homeowner Assistance Program,04/10/2015,04/10/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,04/10/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +57567,CONFIDENTIAL,Homeowner Assistance Program,04/10/2015,04/10/2015,,----,----,Queens,,,,QN-12,28,,,,,,,04/10/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +57557,CONFIDENTIAL,Homeowner Assistance Program,04/09/2015,04/09/2015,,----,----,Queens,,,,QN-09,30,,,,,,,04/09/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +57570,CONFIDENTIAL,Homeowner Assistance Program,04/09/2015,04/09/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,04/09/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +57560,CONFIDENTIAL,Homeowner Assistance Program,04/08/2015,04/08/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,04/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65095,207 WEST 115TH STREET,Multifamily Incentives Program,04/08/2015,,945392,207,WEST 115 STREET,Manhattan,10026,1018310023,1088835,MN-10,9,218,MN11,40.802762,-73.953542,40.8031,-73.953755,,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,0,9,1,0,0,0,0,0,10,0,10,29 +57550,CONFIDENTIAL,Homeowner Assistance Program,04/07/2015,04/07/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,04/07/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65126,60 JEFFERSON STREET,Multifamily Incentives Program,04/03/2015,06/16/2017,952200,60,JEFFERSON STREET,Brooklyn,11206,3031710020,3072202,BK-04,34,391,BK78,40.698786,-73.932892,40.69857,-73.932864,06/16/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +57581,CONFIDENTIAL,Homeowner Assistance Program,04/02/2015,04/02/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/02/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +65093,1802 CROTONA AVENUE,Multifamily Incentives Program,04/02/2015,,952387,1802,CROTONA AVENUE,Bronx,10457,2029480003,2129071,BX-06,17,36902,BX17,40.84283,-73.893493,40.84255,-73.893396,,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,0,5,6,0,0,0,0,0,11,0,11,55 +52788,86 Fleet Place,Multifamily Incentives Program,04/01/2015,04/11/2018,955833,166,MYRTLE AVENUE,Brooklyn,11201,3020617501,3424517,BK-02,35,31,BK68,40.6936,-73.982471,40.69323,-73.982186,04/11/2018,New Construction,No,Non Prevailing Wage,0,0,29,0,0,0,9,13,6,1,0,0,0,0,29,0,29,440 +55240,CONFIDENTIAL,Homeowner Assistance Program,03/31/2015,03/31/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,03/31/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +49774,555 Tenth Avenue,Multifamily Incentives Program,03/26/2015,07/19/2017,948170,551,10 AVENUE,Manhattan,10018,1010697501,1089722,MN-04,3,117,MN13,40.758797,-73.996087,40.75875,-73.996499,07/19/2017,New Construction,No,Non Prevailing Wage,0,0,120,0,0,0,21,65,29,5,0,0,0,0,120,0,120,598 +50200,DOE. 1420 CROTONA PARK EAST,Multifamily Finance Program,03/26/2015,12/13/2016,948174,1420,CROTONA PARK EAST,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,12/13/2016,New Construction,No,Prevailing Wage,60,0,0,0,0,0,60,0,0,0,0,0,0,0,60,0,60,60 +55185,CONFIDENTIAL,Homeowner Assistance Program,03/26/2015,03/26/2015,,----,----,Queens,,,,QN-01,22,,,,,,,03/26/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +55186,CONFIDENTIAL,Homeowner Assistance Program,03/26/2015,03/26/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,03/26/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +55187,CONFIDENTIAL,Homeowner Assistance Program,03/26/2015,03/26/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/26/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53192,317-329 Kent Avenue,Multifamily Incentives Program,03/24/2015,08/19/2019,972982,325,KENT AVENUE,Brooklyn,11249,3024280001,3424711,BK-01,33,551,BK73,40.713537,-73.967297,40.71343,-73.966634,08/19/2019,New Construction,No,Non Prevailing Wage,0,0,104,0,0,0,40,49,15,0,0,0,0,0,104,0,104,522 +55255,CONFIDENTIAL,Homeowner Assistance Program,03/24/2015,03/24/2015,,----,----,Queens,,,,QN-12,27,,,,,,,03/24/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65106,296 THROOP AVENUE,Multifamily Incentives Program,03/20/2015,06/26/2018,971714,296,THROOP AVENUE,Brooklyn,11206,3017680046,3399068,BK-03,36,261,BK75,40.694175,-73.943178,40.69412,-73.943449,06/26/2018,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +55188,CONFIDENTIAL,Homeowner Assistance Program,03/18/2015,03/18/2015,,----,----,Brooklyn,,,,BK-18,45,,,,,,,03/18/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55189,CONFIDENTIAL,Homeowner Assistance Program,03/16/2015,03/16/2015,,----,----,Brooklyn,,,,BK-18,46,,,,,,,03/16/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +55190,CONFIDENTIAL,Homeowner Assistance Program,03/13/2015,03/13/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,03/13/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55183,CONFIDENTIAL,Homeowner Assistance Program,03/12/2015,03/12/2015,,----,----,Brooklyn,,,,BK-15,46,,,,,,,03/12/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +55191,CONFIDENTIAL,Homeowner Assistance Program,03/11/2015,03/11/2015,,----,----,Queens,,,,QN-13,31,,,,,,,03/11/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50201,Los Sures 383 Hewes Street HDFC,Multifamily Finance Program,03/06/2015,11/09/2016,372190,392,SOUTH 3 STREET,Brooklyn,11211,3024380020,3063379,BK-01,34,527,BK73,40.708525,-73.951628,40.7083,-73.951628,11/09/2016,Preservation,No,Non Prevailing Wage,0,0,18,3,0,1,0,1,10,10,1,0,0,0,22,0,22,22 +52126,509 West 38th Street,Multifamily Incentives Program,03/04/2015,06/25/2019,953908,509,WEST 38 STREET,Manhattan,10018,1007107501,1090727,MN-04,3,117,MN13,40.757343,-73.997831,40.75768,-73.997971,06/25/2019,New Construction,No,Non Prevailing Wage,0,0,46,0,0,0,15,25,6,0,0,0,0,0,46,0,46,225 +48775,NORTH BROOKLYN OPPORTUNITIES (NBO),Multifamily Finance Program,02/26/2015,12/26/2017,340323,44,MORGAN AVENUE,Brooklyn,11237,3030080006,3070688,BK-01,34,453,BK77,40.705414,-73.93162,40.70545,-73.931349,11/25/2016,Preservation,No,Non Prevailing Wage,0,6,0,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +48775,NORTH BROOKLYN OPPORTUNITIES (NBO),Multifamily Finance Program,02/26/2015,12/26/2017,946628,40,SCHOLES STREET,Brooklyn,11206,3030400024,3414017,BK-01,34,511,BK90,40.70825,-73.948944,40.70804,-73.948807,12/13/2016,New Construction,No,Non Prevailing Wage,0,1,5,0,0,0,0,4,1,1,0,0,0,0,6,0,6,6 +48775,NORTH BROOKLYN OPPORTUNITIES (NBO),Multifamily Finance Program,02/26/2015,12/26/2017,946629,568,GRAHAM AVENUE,Brooklyn,11222,3027000006,3422546,BK-01,33,499,BK76,40.722437,-73.947346,40.72247,-73.94714,03/30/2017,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,2,2,0,0,0,0,4,0,4,4 +48775,NORTH BROOKLYN OPPORTUNITIES (NBO),Multifamily Finance Program,02/26/2015,12/26/2017,946631,7,STAGG STREET,Brooklyn,11206,3030220101,3400412,BK-01,34,511,BK90,40.708862,-73.950228,40.70895,-73.950387,09/13/2016,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +48775,NORTH BROOKLYN OPPORTUNITIES (NBO),Multifamily Finance Program,02/26/2015,12/26/2017,946632,198,MONTROSE AVENUE,Brooklyn,11206,3030630101,3426094,BK-01,34,493,BK78,40.707299,-73.94136,40.70726,-73.941327,12/26/2017,New Construction,No,Non Prevailing Wage,0,1,3,0,0,0,0,0,3,1,0,0,0,0,4,0,4,4 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,234927,877,DUMONT AVENUE,Brooklyn,11207,3040610001,3090031,BK-05,42,1162,BK82,40.667549,-73.886052,40.66768,-73.885947,05/05/2017,Preservation,No,Non Prevailing Wage,0,1,5,0,0,0,2,2,1,1,0,0,0,0,6,0,6,6 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,294143,717,FLUSHING AVENUE,Brooklyn,11206,3022760003,3061501,BK-01,33,507,BK75,40.70051,-73.943768,40.70066,-73.943934,12/29/2016,Preservation,No,Non Prevailing Wage,0,1,3,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,300735,160,GLENMORE AVENUE,Brooklyn,11212,3037090115,3083741,BK-16,37,908,BK81,40.671851,-73.904949,40.67168,-73.904823,05/17/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,7,1,0,0,0,0,0,0,8,0,8,8 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,305076,78,GROVE STREET,Brooklyn,11221,3033220010,3076062,BK-04,34,399,BK78,40.692375,-73.92168,40.69229,-73.921385,05/03/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,0,0,4,2,0,0,0,6,0,6,6 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,335793,275,MENAHAN STREET,Brooklyn,11237,3033090032,3251914,BK-04,37,433,BK77,40.699288,-73.915981,40.69938,-73.916219,12/07/2016,Preservation,No,Non Prevailing Wage,0,4,2,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,362522,178,ROCKAWAY AVENUE,Brooklyn,11233,3015670031,3042587,BK-16,41,301,BK79,40.677046,-73.910868,40.67709,-73.911157,05/12/2017,Preservation,No,Non Prevailing Wage,0,2,4,0,0,0,0,3,3,0,0,0,0,0,6,0,6,6 +50059,Kings Villas - St. Nicks,Multifamily Finance Program,02/26/2015,05/17/2017,396441,663,WILLOUGHBY AVENUE,Brooklyn,11206,3017610070,3048930,BK-03,36,283,BK35,40.694627,-73.942702,40.69483,-73.942788,03/24/2017,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,287193,1169,EAST NEW YORK AVENUE,Brooklyn,11212,3013990145,3037641,BK-08,41,359,BK61,40.666675,-73.923744,40.66697,-73.9237,06/20/2016,Preservation,No,Non Prevailing Wage,4,0,24,0,0,1,0,7,11,7,4,0,0,0,29,0,29,29 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,322130,342,LAFAYETTE AVENUE,Brooklyn,11238,3019480014,3055580,BK-02,35,231,BK69,40.688676,-73.961706,40.68845,-73.961742,08/07/2017,Preservation,No,Non Prevailing Wage,3,0,13,0,0,0,4,12,0,0,0,0,0,0,16,0,16,16 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,330371,862,MACON STREET,Brooklyn,11233,3014980022,3040206,BK-16,41,373,BK79,40.6849,-73.91632,40.68468,-73.916288,06/20/2016,Preservation,No,Non Prevailing Wage,1,0,6,0,0,0,0,3,0,3,1,0,0,0,7,0,7,7 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,330372,864,MACON STREET,Brooklyn,11233,3014980023,3040207,BK-16,41,373,BK79,40.684908,-73.916263,40.68469,-73.916187,06/20/2016,Preservation,No,Non Prevailing Wage,1,0,6,0,0,0,0,3,3,1,0,0,0,0,7,0,7,7 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,330373,868,MACON STREET,Brooklyn,11233,3014980024,3040208,BK-16,41,373,BK79,40.684922,-73.916151,40.6847,-73.916093,06/20/2016,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,3,0,1,0,0,0,7,0,7,7 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,351727,1939,PARK PLACE,Brooklyn,11233,3014650050,3039376,BK-16,41,363,BK79,40.671372,-73.913147,40.67164,-73.91288,06/20/2016,Preservation,No,Non Prevailing Wage,12,0,24,0,0,1,0,6,18,11,2,0,0,0,37,0,37,37 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,358230,495,PUTNAM AVENUE,Brooklyn,11221,3018250041,3051745,BK-03,36,267,BK75,40.68499,-73.941776,40.68523,-73.941556,07/26/2017,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,2,1,0,0,0,0,0,3,0,3,3 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,383478,1920,UNION STREET,Brooklyn,11233,3013990115,3037639,BK-08,41,359,BK61,40.667424,-73.923999,40.66722,-73.923934,06/20/2016,Preservation,No,Non Prevailing Wage,9,0,32,0,0,1,0,2,28,6,6,0,0,0,42,0,42,42 +50206,Park Monroe II,Multifamily Finance Program,02/26/2015,08/07/2017,383480,1933,UNION STREET,Brooklyn,11233,3013990062,3037636,BK-08,41,359,BK61,40.667452,-73.92419,40.66764,-73.924009,06/20/2016,Preservation,No,Non Prevailing Wage,13,0,52,0,0,1,0,10,35,11,10,0,0,0,66,0,66,66 +52218,56 FULTON STREET,Multifamily Incentives Program,02/26/2015,01/28/2019,954103,56,FULTON STREET,Manhattan,10038,1000760006,1090416,MN-01,1,1502,MN25,40.7085,-74.004916,40.70852,-74.005169,01/28/2019,New Construction,No,Non Prevailing Wage,0,12,12,0,6,0,9,10,11,0,0,0,0,0,30,0,30,120 +54978,CONFIDENTIAL,Homeowner Assistance Program,02/26/2015,02/26/2015,,----,----,Bronx,,,,BX-10,13,,,,,,,02/26/2015,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +54979,CONFIDENTIAL,Homeowner Assistance Program,02/25/2015,02/25/2015,,----,----,Queens,,,,QN-08,24,,,,,,,02/25/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53519,66 Ainslie Street,Multifamily Incentives Program,02/23/2015,10/23/2017,957418,66,AINSLIE STREET,Brooklyn,11211,3023750005,3426260,BK-01,34,513,BK73,40.712651,-73.95218,40.71242,-73.952227,10/23/2017,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,2,8,0,0,0,0,0,0,10,0,10,50 +54976,CONFIDENTIAL,Homeowner Assistance Program,02/17/2015,02/17/2015,,----,----,Bronx,,,,BX-09,17,,,,,,,02/17/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54977,CONFIDENTIAL,Homeowner Assistance Program,02/13/2015,02/13/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/13/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54389,Lands End 1,Multifamily Incentives Program,02/09/2015,,27652,255,CLINTON STREET,Manhattan,10002,1002467501,1084530,MN-03,1,6,MN28,40.711189,-73.986715,40.71116,-73.987473,,Preservation,Yes,Non Prevailing Wage,0,0,0,39,89,1,18,28,54,29,0,0,0,0,129,0,129,256 +65075,88 JEFFERSON STREET,Multifamily Incentives Program,02/09/2015,01/18/2019,954879,88,JEFFERSON STREET,Brooklyn,11206,3031710033,3072212,BK-04,34,391,BK78,40.699118,-73.932109,40.69901,-73.931828,01/18/2019,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,15 +49562,1711 Davidson HDFC,Multifamily Finance Program,02/06/2015,06/21/2018,60426,1711,DAVIDSON AVENUE,Bronx,10453,2028670047,2008501,BX-05,14,217,BX36,40.847549,-73.913625,40.84737,-73.914059,06/21/2018,Preservation,No,Non Prevailing Wage,0,48,38,0,0,0,2,39,29,11,0,5,0,0,39,47,86,86 +54728,HELP. 113 EAST 13TH STREET,Multifamily Finance Program,02/06/2015,03/05/2018,11890,113,EAST 13 STREET,Manhattan,10003,1005590055,1084305,MN-03,2,42,MN22,40.733315,-73.989348,40.73339,-73.988966,03/05/2018,Preservation,Yes,Non Prevailing Wage,0,0,90,0,0,0,0,40,30,20,0,0,0,0,90,0,90,90 +54913,CONFIDENTIAL,Homeowner Assistance Program,02/06/2015,07/09/2015,,----,----,Brooklyn,,,,BK-17,45,,,,,,,07/09/2015,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +54975,CONFIDENTIAL,Homeowner Assistance Program,02/03/2015,02/03/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,02/03/2015,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54689,CONFIDENTIAL,Homeowner Assistance Program,01/30/2015,01/30/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,01/30/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58292,CONFIDENTIAL,Homeowner Assistance Program,01/29/2015,01/29/2015,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/29/2015,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54690,CONFIDENTIAL,Homeowner Assistance Program,01/26/2015,01/26/2015,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/26/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54737,CONFIDENTIAL,Homeowner Assistance Program,01/23/2015,01/23/2015,,----,----,Queens,,,,QN-06,29,,,,,,,01/23/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +65133,1223 BROADWAY,Multifamily Incentives Program,01/22/2015,11/14/2017,953843,1223,BROADWAY,Brooklyn,11221,3032830009,3422191,BK-04,34,395,BK78,40.69187,-73.926196,40.69205,-73.926008,11/14/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,7 +54691,CONFIDENTIAL,Homeowner Assistance Program,01/21/2015,01/21/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,01/21/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +54739,CONFIDENTIAL,Homeowner Assistance Program,01/20/2015,01/20/2015,,----,----,Bronx,,,,BX-09,18,,,,,,,01/20/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +54364,CONFIDENTIAL,Homeowner Assistance Program,01/15/2015,05/19/2015,,----,----,Brooklyn,,,,BK-12,40,,,,,,,05/19/2015,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +54669,CONFIDENTIAL,Homeowner Assistance Program,01/13/2015,05/21/2015,,----,----,Queens,,,,QN-09,32,,,,,,,05/21/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +54692,CONFIDENTIAL,Homeowner Assistance Program,01/09/2015,01/09/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,01/09/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +55178,CONFIDENTIAL,Homeowner Assistance Program,01/09/2015,11/30/2015,,----,----,Brooklyn,,,,BK-03,36,,,,,,,11/30/2015,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58291,CONFIDENTIAL,Homeowner Assistance Program,01/09/2015,01/09/2015,,----,----,Bronx,,,,BX-03,17,,,,,,,01/09/2015,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54740,CONFIDENTIAL,Homeowner Assistance Program,01/08/2015,01/08/2015,,----,----,Staten Island,,,,SI-03,51,,,,,,,01/08/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58255,CONFIDENTIAL,Homeowner Assistance Program,01/08/2015,01/08/2015,,----,----,Bronx,,,,BX-10,18,,,,,,,01/08/2015,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54741,CONFIDENTIAL,Homeowner Assistance Program,01/06/2015,01/06/2015,,----,----,Brooklyn,,,,BK-15,48,,,,,,,01/06/2015,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1 +58494,Bay Street Senior Housing (20136026),Multifamily Incentives Program,01/05/2015,12/01/2017,941851,533,BAY STREET,Staten Island,10304,5004900004,5113073,SI-01,49,21,SI37,40.62887,-74.076516,40.6289,-74.07613,12/01/2017,New Construction,No,Non Prevailing Wage,0,66,0,0,0,1,5,61,1,0,0,0,0,0,67,0,67,67 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,980874,924,HENDRIX PLACE,Brooklyn,11207,3043750001,3425901,BK-05,42,1106,BK82,40.658302,-73.882849,40.65854,-73.88344,12/22/2017,New Construction,No,Non Prevailing Wage,0,1,30,0,0,0,0,12,15,4,0,0,0,0,31,0,31,31 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,981192,910,HENDRIX PLACE,Brooklyn,11207,3043750001,3425900,BK-05,42,1106,BK82,40.65867,-73.88313,40.65854,-73.88344,12/28/2017,New Construction,No,Non Prevailing Wage,0,0,31,0,0,0,0,12,15,4,0,0,0,0,31,0,31,31 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,981457,879,VAN SICLEN AVENUE,Brooklyn,11207,3043750001,3413779,BK-05,42,1106,BK82,40.658484,-73.884143,40.65854,-73.88344,04/26/2017,New Construction,No,Non Prevailing Wage,0,1,25,0,0,1,0,12,15,0,0,0,0,0,27,0,27,27 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,981458,869,VAN SICLEN AVENUE,Brooklyn,11207,3043750001,3413778,BK-05,42,1106,BK82,40.658652,-73.884265,40.65854,-73.88344,04/26/2017,New Construction,No,Non Prevailing Wage,0,1,30,0,0,0,0,12,15,4,0,0,0,0,31,0,31,31 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,981459,656,STANLEY AVENUE,Brooklyn,11207,3043750001,3413737,BK-05,42,1106,BK82,40.659132,-73.884397,40.65854,-73.88344,07/19/2017,New Construction,No,Non Prevailing Wage,0,0,31,0,0,0,0,15,16,0,0,0,0,0,31,0,31,31 +44281,STANLEY COMMONS,Multifamily Finance Program,12/31/2014,01/23/2018,981460,271,WORTMAN AVENUE,Brooklyn,11207,3043750001,3413736,BK-05,42,1106,BK82,40.657778,-73.883084,40.65854,-73.88344,01/23/2018,New Construction,No,Non Prevailing Wage,0,0,89,0,0,0,1,65,23,0,0,0,0,0,89,0,89,89 +50026,SUS. 1674 Broadway and 768 Decatur. Henry Apts.,Multifamily Finance Program,12/31/2014,03/17/2017,927138,8,ROCKAWAY AVENUE,Brooklyn,11233,3015077501,3414036,BK-16,41,373,BK79,40.683362,-73.911657,40.68352,-73.912096,03/17/2017,New Construction,No,Prevailing Wage,56,0,22,0,0,1,37,15,21,6,0,0,0,0,79,0,79,79 +50026,SUS. 1674 Broadway and 768 Decatur. Henry Apts.,Multifamily Finance Program,12/31/2014,03/17/2017,947649,1672,BROADWAY,Brooklyn,11207,3015037501,3414048,BK-16,41,373,BK79,40.684214,-73.912781,40.68399,-73.913022,01/20/2017,New Construction,No,Prevailing Wage,50,0,5,0,0,0,40,10,5,0,0,0,0,0,55,0,55,55 +51778,PARK HOUSE,Multifamily Finance Program,12/31/2014,08/31/2018,955507,4275,PARK AVENUE,Bronx,10457,2030280055,2128909,BX-06,15,379,BX41,40.849356,-73.898377,40.84927,-73.899132,08/31/2018,New Construction,No,Non Prevailing Wage,20,30,197,0,0,1,29,93,101,25,0,0,0,0,248,0,248,248 +52661,3160 Park Avenue (Mixed Income),Multifamily Finance Program,12/31/2014,12/15/2016,956798,855,COURTLANDT AVENUE,Bronx,10451,2024197501,2127131,BX-03,17,141,BX35,40.824253,-73.915802,40.82446,-73.916105,12/15/2016,New Construction,No,Non Prevailing Wage,0,0,57,0,0,0,0,15,30,12,0,0,0,0,57,0,57,152 +53245,3160 Park Avenue (Low Income),Multifamily Finance Program,12/31/2014,12/15/2016,956798,855,COURTLANDT AVENUE,Bronx,10451,2024197501,2127131,BX-03,17,141,BX35,40.824253,-73.915802,40.82446,-73.916105,12/15/2016,New Construction,No,Non Prevailing Wage,0,19,75,0,0,1,0,30,50,15,0,0,0,0,95,0,95,152 +49283,THE HUB,Multifamily Incentives Program,12/30/2014,11/15/2017,944547,333,SCHERMERHORN STREET,Brooklyn,11217,3001670013,3418263,BK-02,33,37,BK38,40.687144,-73.981243,40.68722,-73.980644,11/15/2017,New Construction,No,Non Prevailing Wage,0,0,150,0,0,0,46,85,19,0,0,0,0,0,150,0,150,750 +50257,920 Prospect Avenue,Multifamily Finance Program,12/30/2014,12/30/2014,807175,920,PROSPECT AVENUE,Bronx,10459,2026900063,2115864,BX-02,17,12901,BX33,40.821703,-73.900768,40.82168,-73.900291,12/30/2014,Preservation,Yes,Non Prevailing Wage,0,0,69,0,0,0,0,5,37,27,0,0,0,0,69,0,69,69 +53277,NAVY YARD HDFC INC. (8A),Multifamily Finance Program,12/30/2014,06/07/2019,341076,45-55,NORTH ELLIOTT PLACE,Brooklyn,11205,3020270001,3057921,BK-02,35,211,BK68,40.697,-73.977428,40.69675,-73.976967,06/07/2019,Preservation,No,Non Prevailing Wage,0,0,159,0,0,0,0,17,55,66,21,0,0,0,0,159,159,159 +53553,Pio Mendez / VIP,Multifamily Incentives Program,12/30/2014,12/30/2014,807174,1291,LAFAYETTE AVENUE,Bronx,10474,2027620001,2006421,BX-02,17,11502,BX27,40.816744,-73.88748,40.81703,-73.88766,12/30/2014,Preservation,Yes,Non Prevailing Wage,0,91,0,0,0,0,0,91,0,0,0,0,0,0,91,0,91,91 +53553,Pio Mendez / VIP,Multifamily Incentives Program,12/30/2014,12/30/2014,957474,1876,BELMONT AVENUE,Bronx,10457,2029460001,2086691,BX-06,17,36901,BX17,40.844581,-73.893053,40.84435,-73.892714,12/30/2014,Preservation,Yes,Non Prevailing Wage,0,91,0,0,0,0,0,91,0,0,0,0,0,0,91,0,91,91 +54650,CONFIDENTIAL,Homeowner Assistance Program,12/30/2014,12/30/2014,,----,----,Bronx,,,,BX-03,17,,,,,,,12/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +52320,1515 BEDFORD AVENUE,Multifamily Incentives Program,12/29/2014,09/10/2019,955798,1515,BEDFORD AVENUE,Brooklyn,11216,3012530001,3413781,BK-08,35,219,BK61,40.671173,-73.954878,40.67122,-73.95442,09/10/2019,New Construction,No,Non Prevailing Wage,0,0,29,0,0,0,8,7,14,0,0,0,0,0,29,0,29,142 +52723,Prospect Plaza - Site 2,Multifamily Finance Program,12/29/2014,01/18/2017,955764,396,SARATOGA AVENUE,Brooklyn,11233,3014630041,3425325,BK-16,41,363,BK79,40.672159,-73.916899,40.67221,-73.917447,01/18/2017,New Construction,No,Prevailing Wage,42,6,52,0,0,1,0,15,65,21,0,0,0,0,101,0,101,101 +52723,Prospect Plaza - Site 2,Multifamily Finance Program,12/29/2014,01/18/2017,955765,1750,PROSPECT PLACE,Brooklyn,11233,,,BK-16,41,363,BK79,40.672578,-73.918423,,,11/18/2016,New Construction,No,Prevailing Wage,20,4,24,0,0,0,0,1,47,0,0,0,0,0,48,0,48,48 +58254,CONFIDENTIAL,Homeowner Assistance Program,12/26/2014,12/26/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/26/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +48646,SKA MARIN. 1918 FIRST AVE. DRAPER HALL,Multifamily Finance Program,12/24/2014,11/28/2017,375,1918,1 AVENUE,Manhattan,10029,1016910002,1052997,MN-11,8,162,MN33,40.784985,-73.943444,40.78466,-73.943076,11/28/2017,Preservation,No,Prevailing Wage,202,0,0,0,0,1,2,200,1,0,0,0,0,0,203,0,203,203 +58492,333 Lenox Rd (20136053),Multifamily Incentives Program,12/24/2014,,324141,331,LENOX ROAD,Brooklyn,11226,3048370080,3425521,BK-17,40,818,BK95,40.654254,-73.948459,40.65459,-73.948549,,New Construction,No,Non Prevailing Wage,8,12,37,0,0,1,24,33,1,0,0,0,0,0,58,0,58,58 +49938,Greenpoint Landing E3,Multifamily Finance Program,12/23/2014,05/09/2017,947501,31,EAGLE STREET,Brooklyn,11222,,,BK-01,33,563,BK76,40.73476,-73.959294,,,05/09/2017,New Construction,No,Non Prevailing Wage,0,10,67,0,20,1,24,24,50,0,0,0,0,0,98,0,98,98 +51179,"QUINCY SENIOR RESIDENCES, L.P.",Multifamily Finance Program,12/23/2014,,876943,625,QUINCY STREET,Brooklyn,11221,3016250034,3390995,BK-03,36,291,BK35,40.688856,-73.934247,40.68922,-73.934092,,Preservation,No,Non Prevailing Wage,5,67,21,0,0,1,0,93,1,0,0,0,0,0,94,0,94,94 +54637,CONFIDENTIAL,Homeowner Assistance Program,12/23/2014,12/23/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/23/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,10709,277,EAST 4 STREET,Manhattan,10009,1003870048,1004650,MN-03,2,2601,MN28,40.722716,-73.981168,40.72288,-73.981031,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,24,0,0,0,0,0,0,0,0,0,0,24,24,0,24,24 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,11879,635,EAST 12 STREET,Manhattan,10009,1003950009,1079061,MN-03,2,28,MN28,40.727478,-73.977519,40.72784,-73.977685,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,269,0,0,0,0,0,0,0,0,0,0,269,269,0,269,269 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,20311,438,EAST 120 STREET,Manhattan,10035,1018070030,1054869,MN-11,8,192,MN34,40.797964,-73.932052,40.79769,-73.932049,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,42,0,0,0,0,0,0,0,0,0,0,42,42,0,42,42 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,64060,510,EAST 156 STREET,Bronx,10455,2023590210,2001152,BX-01,17,71,BX34,40.819524,-73.911458,40.81899,-73.911459,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,207,0,0,0,0,0,0,0,0,0,0,207,207,0,207,207 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,306316,930,HALSEY STREET,Brooklyn,11233,3014950013,3339097,BK-16,41,373,BK79,40.685579,-73.916976,40.68526,-73.916298,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,251,0,0,1,0,0,0,0,0,0,0,252,252,0,252,252 +55428,NYCHA Section 8,Multifamily Finance Program,12/23/2014,12/22/2016,805037,1772,MADISON AVENUE,Manhattan,10035,1016220017,1080650,MN-11,9,184,MN34,40.800312,-73.944623,40.80069,-73.945085,12/22/2016,Preservation,No,Non Prevailing Wage,0,0,80,0,0,0,0,0,0,0,0,0,0,80,80,0,80,80 +58250,CONFIDENTIAL,Homeowner Assistance Program,12/23/2014,12/23/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,12/23/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50810,ALBERTA ALSTON HOUSE,Multifamily Incentives Program,12/22/2014,,510583,52-09,99 STREET,Queens,11368,4019320009,4047515,QN-04,21,44301,QN25,40.740643,-73.861298,40.74093,-73.860832,,Preservation,Yes,Non Prevailing Wage,0,151,0,0,0,0,151,0,0,0,0,0,0,0,151,0,151,151 +51103,601 WEST 59TH STREET (1 WEST END AVENUE),Multifamily Incentives Program,12/22/2014,12/14/2017,953384,1,WEST END AVENUE,Manhattan,10023,1011717511,1088869,MN-07,6,151,MN14,40.771711,-73.990397,40.7722,-73.990902,12/14/2017,New Construction,No,Non Prevailing Wage,0,0,116,0,0,0,27,28,61,0,0,0,0,0,116,0,116,116 +51278,ARCHER AVENUE,Multifamily Finance Program,12/22/2014,03/06/2018,951227,92-61,165 STREET,Queens,11433,4101557501,4615173,QN-12,27,444,QN61,40.703984,-73.793742,40.70397,-73.793367,03/06/2018,New Construction,No,Non Prevailing Wage,0,18,70,0,0,1,24,13,46,6,0,0,0,0,89,0,89,89 +54636,CONFIDENTIAL,Homeowner Assistance Program,12/22/2014,12/22/2014,,----,----,Queens,,,,QN-07,20,,,,,,,12/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +54677,CONFIDENTIAL,Homeowner Assistance Program,12/22/2014,12/22/2014,,----,----,Queens,,,,QN-03,25,,,,,,,12/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +48731,TBX909-Erickson,Multifamily Finance Program,12/19/2014,01/23/2018,104337,1409,PROSPECT AVENUE,Bronx,10459,2029620044,2010202,BX-03,16,151,BX35,40.832348,-73.896625,40.83222,-73.896997,08/29/2017,Preservation,No,Non Prevailing Wage,0,0,11,0,0,0,0,0,1,0,10,0,0,0,11,0,11,11 +48731,TBX909-Erickson,Multifamily Finance Program,12/19/2014,01/23/2018,121088,66,WEST 176 STREET,Bronx,10453,2028660072,2008461,BX-05,14,21502,BX36,40.848688,-73.914419,40.84862,-73.915207,09/08/2017,Preservation,No,Non Prevailing Wage,0,0,19,0,0,1,0,6,14,0,0,0,0,0,20,0,20,20 +48731,TBX909-Erickson,Multifamily Finance Program,12/19/2014,01/23/2018,941024,1770,TOWNSEND AVENUE,Bronx,10453,2028500040,2008213,BX-05,14,22701,BX41,40.847854,-73.911077,40.8478,-73.910799,10/27/2016,Preservation,No,Non Prevailing Wage,0,0,56,0,0,1,0,39,13,5,0,0,0,0,57,0,57,57 +48731,TBX909-Erickson,Multifamily Finance Program,12/19/2014,01/23/2018,941025,62,WEST 176 STREET,Bronx,10453,2028660074,2008462,BX-05,14,21502,BX36,40.848677,-73.914372,40.84858,-73.915037,01/23/2018,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,1,5,5,0,1,0,0,0,12,0,12,12 +52610,Crossroads Plaza I,Multifamily Finance Program,12/19/2014,08/16/2018,950310,501,SOUTHERN BOULEVARD,Bronx,10455,2025827502,2128607,BX-01,8,31,BX39,40.811296,-73.9054,40.8117,-73.905338,08/16/2018,New Construction,No,Non Prevailing Wage,0,0,123,40,0,0,7,65,65,26,0,0,0,0,163,0,163,163 +49711,490 Myrtle Ave.,Multifamily Incentives Program,12/18/2014,08/09/2016,946596,490,MYRTLE AVENUE,Brooklyn,11205,3019057502,3054893,BK-02,35,193,BK69,40.693462,-73.965493,40.6932,-73.965331,08/09/2016,New Construction,No,Non Prevailing Wage,0,0,19,0,0,0,5,7,7,0,0,0,0,0,19,0,19,93 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,3548,2312,ADAM C POWELL BOULEVARD,Manhattan,10030,1019410036,1058898,MN-10,9,228,MN03,40.815723,-73.943407,40.81603,-73.94367,07/13/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,4,4,0,0,0,0,8,0,8,8 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,4083,2518,FREDERICK DOUGLASS BOULEVARD,Manhattan,10030,1019400003,1084051,MN-10,9,228,MN03,40.816084,-73.946838,40.81598,-73.946513,07/13/2017,Preservation,No,Non Prevailing Wage,0,3,18,1,0,0,8,10,4,0,0,0,0,0,22,0,22,22 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,4091,2540,FREDERICK DOUGLASS BOULEVARD,Manhattan,10030,1019410003,1058870,MN-10,9,228,MN03,40.816732,-73.946365,40.81668,-73.946047,07/13/2017,Preservation,No,Non Prevailing Wage,0,7,10,0,0,0,4,9,4,0,0,0,0,0,17,0,17,17 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,28132,488,ST NICHOLAS AVENUE,Manhattan,10030,1019590058,1059459,MN-10,9,22102,MN03,40.81656,-73.948258,40.81664,-73.94786,07/13/2017,Preservation,No,Non Prevailing Wage,0,0,14,0,0,1,0,2,13,0,0,0,0,0,15,0,15,15 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,28134,490,ST NICHOLAS AVENUE,Manhattan,10030,1019590056,1059458,MN-10,9,22102,MN03,40.816634,-73.948225,40.81674,-73.947813,07/13/2017,Preservation,No,Non Prevailing Wage,0,3,12,0,0,0,1,3,11,0,0,0,0,0,15,0,15,15 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,40723,216,WEST 135 STREET,Manhattan,10030,1019400039,1058844,MN-10,9,228,MN03,40.815595,-73.944411,40.81536,-73.944559,07/13/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,40735,229,WEST 135 STREET,Manhattan,10030,1019410014,1058880,MN-10,9,228,MN03,40.815902,-73.945094,40.81622,-73.945151,07/13/2017,Preservation,No,Non Prevailing Wage,0,2,6,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,40737,231,WEST 135 STREET,Manhattan,10030,1019410013,1058879,MN-10,9,228,MN03,40.815933,-73.94517,40.81625,-73.945227,07/13/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,40739,233,WEST 135 STREET,Manhattan,10030,1019410012,1058878,MN-10,9,228,MN03,40.815966,-73.945242,40.81629,-73.945307,07/13/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50184,STRIVERS PLAZA II,Multifamily Finance Program,12/18/2014,07/13/2017,40741,235,WEST 135 STREET,Manhattan,10030,1019410011,1058877,MN-10,9,228,MN03,40.815996,-73.945318,40.81632,-73.945386,07/13/2017,Preservation,No,Non Prevailing Wage,0,2,6,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +51363,Manhattan West (371 Ninth Avenue),Multifamily Incentives Program,12/18/2014,05/30/2018,955906,371,9 AVENUE,Manhattan,10001,1007290051,,MN-04,3,103,MN13,40.751554,-73.997647,40.75208,-73.997957,05/30/2018,New Construction,No,Non Prevailing Wage,0,0,169,0,0,0,53,89,25,2,0,0,0,0,169,0,169,844 +51779,9306 Shore Front Parkway,Multifamily Finance Program,12/18/2014,03/23/2017,911614,93-06,SHORE FRONT PARKWAY,Queens,11693,4161390011,4617165,QN-14,32,94203,QN12,40.584004,-73.814831,40.58432,-73.815187,03/23/2017,New Construction,No,Non Prevailing Wage,0,13,0,50,0,1,4,34,20,6,0,0,0,0,64,0,64,64 +52666,STRIVERS PLAZA,Multifamily Finance Program,12/18/2014,04/19/2017,970691,275,WEST 140 STREET,Manhattan,10030,1020267501,1089378,MN-10,9,230,MN03,40.819305,-73.943339,40.81973,-73.943786,04/19/2017,New Construction,No,Non Prevailing Wage,0,11,0,0,42,1,15,12,27,0,0,0,0,0,54,0,54,54 +52667,Summit Ridge,Multifamily Finance Program,12/18/2014,03/31/2017,955526,950,SUMMIT AVENUE,Bronx,10452,2025240033,2129213,BX-04,8,189,BX26,40.832201,-73.930759,40.83211,-73.93055,03/31/2017,New Construction,No,Non Prevailing Wage,0,12,45,0,0,1,8,20,24,6,0,0,0,0,58,0,58,58 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,56808,1120,CLAY AVENUE,Bronx,10456,2024260004,2002068,BX-04,16,143,BX14,40.830152,-73.911838,40.82989,-73.911722,12/17/2015,Preservation,No,Non Prevailing Wage,45,5,1,2,0,1,0,20,9,14,11,0,0,0,54,0,54,54 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,56810,1124,CLAY AVENUE,Bronx,10456,2024260008,2002069,BX-04,16,143,BX14,40.830259,-73.91178,40.83028,-73.911501,12/17/2015,Preservation,No,Non Prevailing Wage,41,11,2,0,0,0,11,22,10,11,0,0,0,0,54,0,54,54 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,56814,1140,CLAY AVENUE,Bronx,10456,2024260012,2002070,BX-04,16,143,BX14,40.83064,-73.911566,40.83067,-73.911284,12/17/2015,Preservation,No,Non Prevailing Wage,38,9,5,1,0,1,0,24,5,14,11,0,0,0,54,0,54,54 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,64753,268,EAST 165 STREET,Bronx,10456,2024470051,2002519,BX-04,16,18302,BX14,40.829337,-73.916547,40.82918,-73.916674,12/17/2015,Preservation,No,Non Prevailing Wage,6,1,0,0,0,0,0,0,3,1,3,0,0,0,7,0,7,7 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,64864,210,EAST 166 STREET,Bronx,10456,2024560051,2002737,BX-04,16,18102,BX14,40.831243,-73.917806,40.83103,-73.917828,12/17/2015,Preservation,No,Non Prevailing Wage,33,0,2,0,0,1,0,14,18,4,0,0,0,0,36,0,36,36 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,65116,256,EAST 169 STREET,Bronx,10456,2024500029,2002615,BX-04,16,17901,BX14,40.835477,-73.913453,40.83535,-73.913627,12/17/2015,Preservation,No,Non Prevailing Wage,17,0,2,0,0,1,0,1,9,6,4,0,0,0,20,0,20,20 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,65117,266,EAST 169 STREET,Bronx,10456,2024500031,2002616,BX-04,16,17901,BX14,40.835359,-73.913106,40.83521,-73.913295,12/17/2015,Preservation,No,Non Prevailing Wage,29,2,3,0,0,0,0,16,13,5,0,0,0,0,34,0,34,34 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,78256,1041,FINDLAY AVENUE,Bronx,10456,2024330028,2002219,BX-04,16,175,BX14,40.829245,-73.914433,40.82936,-73.914661,12/17/2015,Preservation,No,Non Prevailing Wage,51,8,9,1,0,1,0,2,35,33,0,0,0,0,70,0,70,70 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,78260,1055,FINDLAY AVENUE,Bronx,10456,2024330023,2002218,BX-04,16,175,BX14,40.829473,-73.914299,40.82973,-73.914451,12/17/2015,Preservation,No,Non Prevailing Wage,41,5,1,0,0,1,2,16,25,5,0,0,0,0,48,0,48,48 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,78268,1104,FINDLAY AVENUE,Bronx,10456,2024340047,2002269,BX-04,16,175,BX14,40.830128,-73.91389,40.83021,-73.913536,12/17/2015,Preservation,No,Non Prevailing Wage,33,5,2,1,0,1,0,14,10,6,12,0,0,0,42,0,42,42 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,82104,1294,GRANT AVENUE,Bronx,10456,2028160001,2007791,BX-04,16,17902,BX14,40.835974,-73.913561,40.83573,-73.913395,12/17/2015,Preservation,No,Non Prevailing Wage,35,4,3,0,0,1,0,21,13,9,0,0,0,0,35,8,43,43 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,97364,1295,MORRIS AVENUE,Bronx,10456,2028160070,2007805,BX-04,16,17902,BX14,40.83556,-73.91328,40.83562,-73.913059,12/17/2015,Preservation,No,Non Prevailing Wage,34,6,2,1,0,0,0,21,22,0,0,0,0,0,43,0,43,43 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,97700,986,MORRIS AVENUE,Bronx,10456,2024320005,2002179,BX-04,16,173,BX14,40.828775,-73.916681,40.82869,-73.916378,12/17/2015,Preservation,No,Non Prevailing Wage,20,6,3,0,0,1,0,6,15,8,1,0,0,0,30,0,30,30 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,97703,997,MORRIS AVENUE,Bronx,10456,2024470056,2002521,BX-04,16,18302,BX14,40.828783,-73.916703,40.82889,-73.916981,12/17/2015,Preservation,No,Non Prevailing Wage,9,3,2,2,0,0,0,1,7,4,4,0,0,0,16,0,16,16 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,109440,1279,SHERIDAN AVENUE,Bronx,10456,2024570050,2002776,BX-04,16,17901,BX14,40.835844,-73.914978,40.83594,-73.915209,12/17/2015,Preservation,No,Non Prevailing Wage,24,2,1,0,0,0,0,10,12,5,0,0,0,0,27,0,27,27 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,109441,1280,SHERIDAN AVENUE,Bronx,10456,2024530055,2002694,BX-04,16,17901,BX14,40.835811,-73.914985,40.83566,-73.914768,12/17/2015,Preservation,No,Non Prevailing Wage,51,3,1,1,0,1,0,19,25,13,0,0,0,0,57,0,57,57 +52721,Morrisania Portfolio,Multifamily Finance Program,12/18/2014,12/17/2015,109442,1291,SHERIDAN AVENUE,Bronx,10456,2028310032,2007978,BX-04,16,17902,BX14,40.836165,-73.914663,40.83629,-73.91488,12/17/2015,Preservation,No,Non Prevailing Wage,38,2,0,0,0,1,0,1,31,9,0,0,0,0,41,0,41,41 +54353,CONFIDENTIAL,Homeowner Assistance Program,12/18/2014,04/01/2015,,----,----,Brooklyn,,,,BK-17,42,,,,,,,04/01/2015,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +55396,North Shore Plaza_ML,Multifamily Finance Program,12/18/2014,12/17/2016,746078,85,HOLLAND AVENUE,Staten Island,10303,5012720011,5109139,SI-01,49,31902,SI12,40.638543,-74.171232,40.6391,-74.170235,12/17/2016,Preservation,No,Non Prevailing Wage,429,0,107,0,0,0,0,0,0,0,0,0,0,536,536,0,536,536 +58511,Canaan House (20140287),Multifamily Incentives Program,12/18/2014,,38421,1,WEST 117 STREET,Manhattan,10026,1016010027,1051436,MN-10,9,190,MN11,40.801449,-73.946204,40.80187,-73.946294,,Preservation,No,Non Prevailing Wage,0,3,142,0,0,1,18,44,60,20,4,0,0,0,146,0,146,146 +65132,1238 DECATUR STREET,Multifamily Incentives Program,12/17/2014,10/04/2017,952454,1238,DECATUR STREET,Brooklyn,11207,3034350028,3079751,BK-04,37,411,BK78,40.68957,-73.906748,40.68952,-73.906571,10/04/2017,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,15 +54648,CONFIDENTIAL,Homeowner Assistance Program,12/16/2014,12/16/2014,,----,----,Queens,,,,QN-03,21,,,,,,,12/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,213475,227,DUMONT AVENUE,Brooklyn,11212,3035590001,3081764,BK-16,41,924,BK81,40.663841,-73.91103,40.66413,-73.910788,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,93,0,0,2,3,13,40,28,11,0,0,0,95,0,95,95 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,213477,350,BRISTOL STREET,Brooklyn,11212,3035730001,3326497,BK-16,41,924,BK81,40.662729,-73.910902,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,213480,383,BRISTOL STREET,Brooklyn,11212,3035880001,3326556,BK-16,42,916,BK81,40.661705,-73.910615,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,1,3,2,0,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,362308,167,RIVERDALE AVENUE,Brooklyn,11212,3035870001,3338525,BK-16,42,916,BK81,40.660717,-73.91058,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,32,0,0,0,1,4,13,9,5,0,0,0,32,0,32,32 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,362309,170,RIVERDALE AVENUE,Brooklyn,11212,3036010026,3326589,BK-16,42,916,BK81,40.660753,-73.910238,40.66035,-73.90969,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,32,0,0,0,1,4,14,9,4,0,0,0,32,0,32,32 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807202,359,BRISTOL STREET,Brooklyn,11212,3035740001,3345318,BK-16,41,924,BK81,40.662581,-73.910841,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,1,3,2,1,0,0,0,7,0,7,7 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807837,325,BRISTOL STREET,Brooklyn,11212,3035740001,3326534,BK-16,41,924,BK81,40.663191,-73.910999,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,40,0,0,0,1,5,18,12,4,0,0,0,40,0,40,40 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807838,330,BRISTOL STREET,Brooklyn,11212,3035730001,3326495,BK-16,41,924,BK81,40.6631,-73.910995,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807839,336,BRISTOL STREET,Brooklyn,11212,3035730001,3326496,BK-16,41,924,BK81,40.662987,-73.910966,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807840,351,BRISTOL STREET,Brooklyn,11212,3035740001,3326535,BK-16,41,924,BK81,40.662724,-73.91088,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,1,2,1,1,0,0,0,5,0,5,5 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807841,355,BRISTOL STREET,Brooklyn,11212,3035740001,3326536,BK-16,41,924,BK81,40.662652,-73.910862,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,1,2,1,1,0,0,0,5,0,5,5 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807842,356,BRISTOL STREET,Brooklyn,11212,3035730001,3326498,BK-16,41,924,BK81,40.662617,-73.910873,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807843,370,BRISTOL STREET,Brooklyn,11212,3035870001,3338527,BK-16,42,916,BK81,40.661936,-73.910698,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807844,376,BRISTOL STREET,Brooklyn,11212,3035870001,3338528,BK-16,42,916,BK81,40.661823,-73.910669,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807845,390,BRISTOL STREET,Brooklyn,11212,3035870001,3342594,BK-16,42,916,BK81,40.661565,-73.910604,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807846,396,BRISTOL STREET,Brooklyn,11212,3035870001,3342597,BK-16,42,916,BK81,40.661453,-73.910576,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807925,327,CHESTER STREET,Brooklyn,11212,3035750011,3326506,BK-16,41,924,BK81,40.663536,-73.910129,40.66345,-73.90969,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,53,0,0,0,2,6,24,15,6,0,0,0,53,0,53,53 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807926,330,CHESTER STREET,Brooklyn,11212,3035740001,3326538,BK-16,41,924,BK81,40.663495,-73.91014,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,11,0,0,0,0,1,4,4,2,0,0,0,11,0,11,11 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807927,336,CHESTER STREET,Brooklyn,11212,3035740001,3326539,BK-16,41,924,BK81,40.663385,-73.910112,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,1,2,1,1,0,0,0,5,0,5,5 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807928,340,CHESTER STREET,Brooklyn,11212,3035740001,3326540,BK-16,41,924,BK81,40.663308,-73.910094,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,1,2,1,1,0,0,0,5,0,5,5 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807929,341,CHESTER STREET,Brooklyn,11212,3035750011,3326505,BK-16,41,924,BK81,40.663275,-73.910065,40.66345,-73.90969,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,35,0,0,0,1,3,16,11,4,0,0,0,35,0,35,35 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807930,344,CHESTER STREET,Brooklyn,11212,3035740001,3326541,BK-16,41,924,BK81,40.663234,-73.910076,40.66311,-73.910509,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,36,0,0,0,1,3,15,11,6,0,0,0,36,0,36,36 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807931,390,CHESTER STREET,Brooklyn,11212,3035880001,3326557,BK-16,42,916,BK81,40.66196,-73.90975,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,3,0,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807932,394,CHESTER STREET,Brooklyn,11212,3035880001,3326558,BK-16,42,916,BK81,40.661886,-73.909732,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,32,0,0,0,1,4,14,9,4,0,0,0,32,0,32,32 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807933,416,CHESTER STREET,Brooklyn,11212,3035880001,3326559,BK-16,42,916,BK81,40.661477,-73.909624,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,2,1,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807934,420,CHESTER STREET,Brooklyn,11212,3035880001,3326560,BK-16,42,916,BK81,40.661403,-73.909606,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,2,1,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807935,424,CHESTER STREET,Brooklyn,11212,3035880001,3326561,BK-16,42,916,BK81,40.661328,-73.909588,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,1,5,4,2,0,0,0,12,0,12,12 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,807936,446,CHESTER STREET,Brooklyn,11212,3036010026,3326592,BK-16,42,916,BK81,40.660494,-73.909373,40.66035,-73.90969,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,41,0,0,0,2,5,18,12,4,0,0,0,41,0,41,41 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,808112,220,DUMONT AVENUE,Brooklyn,11212,3035730001,3326499,BK-16,41,924,BK81,40.663756,-73.911492,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,2,1,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,808113,252,DUMONT AVENUE,Brooklyn,11212,3035750011,3326507,BK-16,41,924,BK81,40.663964,-73.9101,40.66345,-73.90969,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,17,0,0,0,1,2,8,5,1,0,0,0,17,0,17,17 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,809280,171,RIVERDALE AVENUE,Brooklyn,11212,3035880001,3326551,BK-16,42,916,BK81,40.660766,-73.910241,40.6614,-73.910057,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,32,0,0,0,1,4,14,9,4,0,0,0,32,0,32,32 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,897205,224,DUMONT AVENUE,Brooklyn,11212,3035730001,3345302,BK-16,41,924,BK81,40.663775,-73.911369,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,3,2,1,0,0,0,6,0,6,6 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948870,360,BRISTOL STREET,Brooklyn,11212,3035730001,3345310,BK-16,41,924,BK81,40.662543,-73.910855,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948952,332,BRISTOL STREET,Brooklyn,11212,3035730001,3345303,BK-16,41,924,BK81,40.663061,-73.910988,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948953,334,BRISTOL STREET,Brooklyn,11212,3035730001,3345304,BK-16,41,924,BK81,40.663026,-73.910977,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948954,338,BRISTOL STREET,Brooklyn,11212,3035730001,3345305,BK-16,41,924,BK81,40.662952,-73.910959,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948955,340,BRISTOL STREET,Brooklyn,11212,3035730001,3345306,BK-16,41,924,BK81,40.662913,-73.910949,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948956,352,BRISTOL STREET,Brooklyn,11212,3035730001,3345307,BK-16,41,924,BK81,40.662691,-73.910891,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948957,354,BRISTOL STREET,Brooklyn,11212,3035730001,3345308,BK-16,41,924,BK81,40.662655,-73.910884,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948958,358,BRISTOL STREET,Brooklyn,11212,3035730001,3345309,BK-16,41,924,BK81,40.662581,-73.910862,40.66291,-73.91128,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,1,0,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948959,372,BRISTOL STREET,Brooklyn,11212,3035870001,3342590,BK-16,42,916,BK81,40.661897,-73.91069,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,2,1,1,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948960,374,BRISTOL STREET,Brooklyn,11212,3035870001,3342591,BK-16,42,916,BK81,40.661862,-73.91068,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948961,378,BRISTOL STREET,Brooklyn,11212,3035870001,3342592,BK-16,42,916,BK81,40.661788,-73.910662,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948962,380,BRISTOL STREET,Brooklyn,11212,3035870001,3342593,BK-16,42,916,BK81,40.661749,-73.910651,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948963,392,BRISTOL STREET,Brooklyn,11212,3035870001,3342595,BK-16,42,916,BK81,40.661527,-73.910594,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948964,394,BRISTOL STREET,Brooklyn,11212,3035870001,3342596,BK-16,42,916,BK81,40.661491,-73.910583,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948965,398,BRISTOL STREET,Brooklyn,11212,3035870001,3342598,BK-16,42,916,BK81,40.661417,-73.910565,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58513,Marcus Garvey Apartments (20140295),Multifamily Incentives Program,12/16/2014,12/21/2016,948966,400,BRISTOL STREET,Brooklyn,11212,3035870001,3342599,BK-16,42,916,BK81,40.661379,-73.910554,40.66144,-73.910943,12/21/2016,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,1,2,1,0,0,0,0,4,0,4,4 +58249,CONFIDENTIAL,Homeowner Assistance Program,12/15/2014,12/15/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,12/15/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54651,CONFIDENTIAL,Homeowner Assistance Program,12/14/2014,12/14/2014,,----,----,Staten Island,,,,SI-01,50,,,,,,,12/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50871,181 Front Street,Multifamily Incentives Program,12/12/2014,04/09/2019,950133,181,FRONT STREET,Brooklyn,11201,3000410042,3413894,BK-02,33,21,BK38,40.702406,-73.985949,40.70259,-73.985963,04/09/2019,New Construction,No,Non Prevailing Wage,0,0,21,0,0,0,0,9,11,1,0,0,0,0,21,0,21,105 +51918,225 E 39th Street (fka 222 East 40th Street),Multifamily Incentives Program,12/12/2014,08/29/2017,2325,601,3 AVENUE,Manhattan,10158,1009200012,1082153,MN-06,4,88,MN19,40.748972,-73.975761,40.74894,-73.975076,08/29/2017,New Construction,No,Non Prevailing Wage,0,0,75,0,0,0,20,27,25,3,0,0,0,0,75,0,75,372 +54642,CONFIDENTIAL,Homeowner Assistance Program,12/12/2014,12/12/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,12/12/2014,New Construction,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +55437,Atlantic Yards B14 (Pacific Park),Multifamily Finance Program,12/12/2014,06/18/2019,966924,535,CARLTON AVENUE,Brooklyn,11238,3011290001,3418188,BK-08,35,163,BK64,40.681447,-73.970879,40.68116,-73.970612,06/18/2019,New Construction,No,Non Prevailing Wage,0,15,75,26,181,1,66,129,88,14,0,0,0,1,298,0,298,298 +52272,CARROLL GARDENS- PHASE 2 (363 BOND STREET),Multifamily Incentives Program,12/11/2014,11/09/2017,927008,363,BOND STREET,Brooklyn,11231,3004520001,3421398,BK-06,39,77,BK33,40.678186,-73.990828,40.678,-73.98992,11/09/2017,New Construction,No,Non Prevailing Wage,0,0,54,0,0,0,21,23,10,0,0,0,0,0,54,0,54,270 +50702,223 North 8th Street,Multifamily Incentives Program,12/10/2014,10/14/2016,949598,230,NORTH 9 STREET,Brooklyn,11211,3023130013,3425126,BK-01,33,519,BK73,40.717579,-73.954363,40.71732,-73.954597,10/14/2016,New Construction,No,Non Prevailing Wage,0,0,19,0,0,0,6,10,3,0,0,0,0,0,19,0,19,94 +54635,CONFIDENTIAL,Homeowner Assistance Program,12/10/2014,12/10/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,12/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54647,CONFIDENTIAL,Homeowner Assistance Program,12/10/2014,12/28/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,12/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +54638,CONFIDENTIAL,Homeowner Assistance Program,12/09/2014,12/09/2014,,----,----,Queens,,,,QN-09,32,,,,,,,12/09/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54644,CONFIDENTIAL,Homeowner Assistance Program,12/09/2014,12/09/2014,,----,----,Queens,,,,QN-03,25,,,,,,,12/09/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58510,Maria Isabel Apartments (20140296),Multifamily Incentives Program,12/09/2014,02/10/2017,63748,787,EAST 149 STREET,Bronx,10455,2026530001,2086465,BX-01,8,79,BX34,40.812801,-73.906944,40.81317,-73.906633,02/10/2017,Preservation,No,Non Prevailing Wage,0,0,98,0,0,1,30,68,1,0,0,0,0,0,99,0,99,99 +54640,CONFIDENTIAL,Homeowner Assistance Program,12/08/2014,12/08/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/08/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54679,CONFIDENTIAL,Homeowner Assistance Program,12/08/2014,12/08/2014,,----,----,Manhattan,,,,MN-12,10,,,,,,,12/08/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +54566,CONFIDENTIAL,Homeowner Assistance Program,12/05/2014,12/05/2014,,----,----,Brooklyn,,,,BK-18,45,,,,,,,12/05/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50467,210 East 39th Street,Multifamily Incentives Program,12/04/2014,11/14/2017,948896,210,EAST 39 STREET,Manhattan,10016,1009197501,1090104,MN-06,4,78,MN20,40.748686,-73.975411,40.74844,-73.975419,11/14/2017,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,1,7,3,0,0,0,0,0,11,0,11,55 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,3437,2031,ADAM C POWELL BOULEVARD,Manhattan,10027,1019060064,1057700,MN-10,9,220,MN11,40.806748,-73.949938,40.8066,-73.949548,01/20/2017,Preservation,No,Non Prevailing Wage,0,0,10,0,0,1,0,1,7,3,0,0,0,0,11,0,11,11 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,3583,2400,ADAM C POWELL BOULEVARD,Manhattan,10030,1020260029,1060413,MN-10,9,230,MN03,40.818535,-73.941356,40.81882,-73.941637,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,51,2,0,1,0,0,7,16,25,6,0,0,54,0,54,54 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,4173,2815,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020450096,1060845,MN-10,9,259,MN03,40.825893,-73.939694,40.82599,-73.939983,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,8,4,0,0,0,2,5,5,0,0,0,0,12,0,12,12 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,4175,2819,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020460007,1060854,MN-10,9,23502,MN03,40.826066,-73.939568,40.82633,-73.939802,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,18,25,0,1,0,10,1,33,0,0,0,0,44,0,44,44 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,4183,2844,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020360061,1060602,MN-10,9,236,MN03,40.82642,-73.939289,40.82634,-73.938986,01/20/2017,Preservation,No,Non Prevailing Wage,0,0,9,18,0,0,0,17,10,0,0,0,0,0,27,0,27,27 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,4189,2853,FREDERICK DOUGLASS BOULEVARD,Manhattan,10039,1020460063,1060875,MN-10,9,23502,MN03,40.82738,-73.938609,40.82778,-73.938844,05/10/2017,Preservation,No,Non Prevailing Wage,0,0,25,24,0,0,0,10,25,14,0,0,0,0,49,0,49,49 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,7475,220,BRADHURST AVENUE,Manhattan,10039,1020460063,1060872,MN-10,9,23502,MN03,40.828122,-73.939356,40.82778,-73.938844,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,8,9,0,1,0,6,10,2,0,0,0,0,18,0,18,18 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,23437,161,LENOX AVENUE,Manhattan,10026,1019030029,1057492,MN-10,9,220,MN11,40.803429,-73.948669,40.8036,-73.949041,01/20/2017,Preservation,No,Non Prevailing Wage,0,0,13,0,0,0,0,4,8,1,0,0,0,0,13,0,13,13 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,23452,191,LENOX AVENUE,Manhattan,10026,1019040033,1057558,MN-10,9,220,MN11,40.804318,-73.948022,40.80444,-73.948394,05/10/2017,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,38846,166,WEST 120 STREET,Manhattan,10027,1019040059,1057584,MN-10,9,220,MN11,40.80531,-73.949549,40.80534,-73.950221,07/12/2016,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,4,0,4,4,0,0,0,0,12,0,12,12 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41409,203,WEST 140 STREET,Manhattan,10030,1020260027,1060412,MN-10,9,230,MN03,40.818703,-73.941916,40.81891,-73.94185,01/20/2017,Preservation,No,Non Prevailing Wage,0,0,10,4,0,1,0,1,12,2,0,0,0,0,15,0,15,15 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41411,205,WEST 140 STREET,Manhattan,10030,1020260026,1060411,MN-10,9,230,MN03,40.81872,-73.941955,40.81895,-73.941941,07/12/2017,Preservation,No,Non Prevailing Wage,0,0,2,8,0,0,0,0,0,10,0,0,0,0,10,0,10,10 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41417,211,WEST 140 STREET,Manhattan,10030,1020260023,1060410,MN-10,9,230,MN03,40.818769,-73.942075,40.81906,-73.942201,12/28/2016,Preservation,No,Non Prevailing Wage,0,0,3,7,0,0,0,0,0,10,0,0,0,0,10,0,10,10 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41419,213,WEST 140 STREET,Manhattan,10030,1020260022,1060409,MN-10,9,230,MN03,40.818786,-73.942114,40.8191,-73.942291,07/12/2016,Preservation,No,Non Prevailing Wage,0,0,8,6,0,1,0,1,12,2,0,0,0,0,15,0,15,15 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41421,215,WEST 140 STREET,Manhattan,10030,1020260020,1060408,MN-10,9,230,MN03,40.818802,-73.942154,40.81913,-73.942378,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,3,11,0,1,0,1,12,2,0,0,0,0,15,0,15,15 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,41897,223,WEST 145 STREET,Manhattan,10039,1020310018,1060479,MN-10,9,232,MN03,40.822037,-73.939998,40.82241,-73.940185,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,6,10,0,0,0,5,10,1,0,0,0,0,16,0,16,16 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,42097,210,WEST 147 STREET,Manhattan,10039,1020320043,1060511,MN-10,9,234,MN03,40.823247,-73.938891,40.82321,-73.939386,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,16,24,0,1,0,0,29,12,0,0,0,0,41,0,41,41 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,42408,302,WEST 150 STREET,Manhattan,10039,1020450097,1060847,MN-10,9,259,MN03,40.826063,-73.93977,40.826,-73.940186,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,0,7,0,0,1,4,2,0,0,0,0,0,7,0,7,7 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,42410,308,WEST 150 STREET,Manhattan,10039,1020450100,1060849,MN-10,9,259,MN03,40.82608,-73.93981,40.82611,-73.940457,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,6,12,0,0,1,0,17,0,0,0,0,0,18,0,18,18 +52733,HCCI 2,Multifamily Finance Program,12/04/2014,,941090,86,WEST 120 STREET,Manhattan,10027,1017180069,1083964,MN-10,9,200,MN11,40.804337,-73.947245,40.80431,-73.947527,04/13/2017,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +54565,CONFIDENTIAL,Homeowner Assistance Program,12/04/2014,12/04/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +54646,CONFIDENTIAL,Homeowner Assistance Program,12/04/2014,12/04/2014,,----,----,Queens,,,,QN-14,31,,,,,,,12/04/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58248,CONFIDENTIAL,Homeowner Assistance Program,12/04/2014,12/04/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,12/04/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58290,CONFIDENTIAL,Homeowner Assistance Program,12/03/2014,12/03/2014,,----,----,Queens,,,,QN-07,24,,,,,,,12/03/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58508,BAM South Apartments (20140284),Multifamily Incentives Program,12/03/2014,01/25/2018,976392,286,ASHLAND PLACE,Brooklyn,11217,3021100003,3424445,BK-02,35,35,BK68,40.686556,-73.978164,40.6862,-73.978499,01/25/2018,New Construction,No,Non Prevailing Wage,0,0,76,0,0,1,23,35,19,0,0,0,0,0,77,0,77,378 +54643,CONFIDENTIAL,Homeowner Assistance Program,12/02/2014,12/02/2014,,----,----,Queens,,,,QN-08,23,,,,,,,12/02/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65100,25 WOODBINE LLC,Multifamily Incentives Program,12/02/2014,01/25/2017,950549,25,WOODBINE STREET,Brooklyn,11221,3033480051,3422148,BK-04,34,397,BK78,40.689388,-73.919838,40.68949,-73.920086,01/25/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +53603,CONFIDENTIAL,Homeowner Assistance Program,11/26/2014,12/22/2014,,----,----,Bronx,,,,BX-03,16,,,,,,,12/22/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +54391,CONFIDENTIAL,Homeowner Assistance Program,11/26/2014,11/26/2014,,----,----,Queens,,,,QN-07,19,,,,,,,11/26/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957381,1204,37 STREET,Brooklyn,11218,3052950004,3395126,BK-12,39,226,BK88,40.64283,-73.986941,40.64285,-73.98728,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957382,1208,37 STREET,Brooklyn,11218,3052950104,3395127,BK-12,39,226,BK88,40.642792,-73.986877,40.64277,-73.987147,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957383,1214,37 STREET,Brooklyn,11218,3052950105,3395128,BK-12,39,226,BK88,40.642737,-73.986783,40.64268,-73.986995,05/06/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957384,1220,37 STREET,Brooklyn,11218,3052950106,3395129,BK-12,39,226,BK88,40.642679,-73.986689,40.64259,-73.986844,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957387,1226,37 STREET,Brooklyn,11218,3052950107,3395130,BK-12,39,226,BK88,40.642622,-73.986596,40.6425,-73.986696,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957388,1232,37 STREET,Brooklyn,11218,3052950108,3395131,BK-12,39,226,BK88,40.642567,-73.986502,40.64241,-73.986545,02/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957389,1264,37 STREET,Brooklyn,11218,3052950111,3395134,BK-12,39,226,BK88,40.642262,-73.985997,40.6419,-73.985706,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957390,1270,37 STREET,Brooklyn,11218,3052950112,3395135,BK-12,39,226,BK88,40.642205,-73.985904,40.6418,-73.985551,02/15/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +44265,CULVER EL PHASE I,Small Homes Program,11/25/2014,05/06/2019,957420,1276,37 STREET,Brooklyn,11218,3052950113,3395136,BK-12,39,226,BK88,40.64215,-73.98581,40.64172,-73.985414,03/29/2019,New Construction,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,4,0,0,0,0,4,4,4 +52318,33 Bond Street,Multifamily Incentives Program,11/25/2014,03/07/2018,955360,33,BOND STREET,Brooklyn,11201,3001667502,3422112,BK-02,33,37,BK38,40.688643,-73.983658,40.68825,-73.983215,03/07/2018,New Construction,No,Non Prevailing Wage,0,0,143,0,0,0,51,52,40,0,0,0,0,0,143,0,143,714 +54411,CONFIDENTIAL,Homeowner Assistance Program,11/25/2014,11/25/2014,,----,----,Brooklyn,,,,BK-14,45,,,,,,,11/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,1 +54535,CONFIDENTIAL,Homeowner Assistance Program,11/25/2014,11/25/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,11/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54554,CONFIDENTIAL,Homeowner Assistance Program,11/25/2014,11/25/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,11/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54555,CONFIDENTIAL,Homeowner Assistance Program,11/25/2014,11/25/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,11/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +55467,Sam Burt Houses,Multifamily Finance Program,11/25/2014,10/25/2016,809867,2675,WEST 36 STREET,Brooklyn,11224,3069620011,3340264,BK-13,47,330,BK21,40.579931,-74.002707,40.58044,-74.002297,10/25/2016,Preservation,No,Non Prevailing Wage,0,0,80,0,66,1,0,0,0,0,0,0,0,147,0,147,147,147 +68431,MARIEN-HEIM TOWER SENIOR APARTMENTS (20140280),Multifamily Incentives Program,11/25/2014,05/03/2017,348661,870,OCEAN PARKWAY,Brooklyn,11230,3065080006,3170453,BK-12,44,46201,BK42,40.627218,-73.971057,40.62715,-73.971691,05/03/2017,Preservation,No,Non Prevailing Wage,0,0,181,0,0,1,50,131,1,0,0,0,0,0,182,0,182,182 +51297,774 Grand Street,Multifamily Incentives Program,11/24/2014,07/10/2018,951365,284,HUMBOLDT STREET,Brooklyn,11206,3027907504,3424459,BK-01,34,495,BK90,40.711431,-73.942157,40.71158,-73.941861,07/10/2018,New Construction,No,Non Prevailing Wage,0,0,13,0,0,0,3,3,7,0,0,0,0,0,13,0,13,64 +52075,PHIPPS PLAZA SOUTH/KB 25,Multifamily Incentives Program,11/24/2014,03/30/2017,953668,325,EAST 25 STREET,Manhattan,10010,1009310017,1090206,MN-06,2,66,MN20,40.738855,-73.979204,40.73878,-73.978504,03/30/2017,New Construction,No,Non Prevailing Wage,0,0,22,0,0,0,0,0,22,0,0,0,0,0,22,0,22,56 +53558,Phipps Plaza South/KB25 Article XI,Multifamily Incentives Program,11/24/2014,02/13/2017,953668,325,EAST 25 STREET,Manhattan,10010,1009310017,1090206,MN-06,2,66,MN20,40.738855,-73.979204,40.73878,-73.978504,02/13/2017,New Construction,Yes,Non Prevailing Wage,0,0,0,11,22,1,10,18,6,0,0,0,0,0,34,0,34,56 +54559,CONFIDENTIAL,Homeowner Assistance Program,11/24/2014,11/24/2014,,----,----,Brooklyn,,,,BK-16,37,,,,,,,11/24/2014,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58193,CONFIDENTIAL,Homeowner Assistance Program,11/24/2014,11/24/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,11/24/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58289,CONFIDENTIAL,Homeowner Assistance Program,11/24/2014,11/24/2014,,----,----,Queens,,,,QN-12,27,,,,,,,11/24/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54556,CONFIDENTIAL,Homeowner Assistance Program,11/21/2014,11/21/2014,,----,----,Brooklyn,,,,BK-09,40,,,,,,,11/21/2014,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +54410,CONFIDENTIAL,Homeowner Assistance Program,11/20/2014,11/20/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,11/20/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54409,CONFIDENTIAL,Homeowner Assistance Program,11/19/2014,11/19/2014,,----,----,Queens,,,,QN-12,28,,,,,,,11/19/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +65138,53 WEST 126TH STREET,Multifamily Incentives Program,11/19/2014,11/06/2017,946857,53,WEST 126 STREET,Manhattan,10027,1017240014,1053549,MN-10,9,208,MN03,40.807788,-73.943403,40.80811,-73.94363,11/06/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,2,8 +53694,CONFIDENTIAL,Homeowner Assistance Program,11/14/2014,11/14/2014,,----,----,Queens,,,,QN-08,23,,,,,,,11/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +54403,CONFIDENTIAL,Homeowner Assistance Program,11/14/2014,11/14/2014,,----,----,Queens,,,,QN-06,29,,,,,,,11/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54408,CONFIDENTIAL,Homeowner Assistance Program,11/14/2014,11/14/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,11/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +50356,Gabriel House LP,Multifamily Finance Program,11/13/2014,11/13/2014,3441,2044,ADAM C POWELL BOULEVARD,Manhattan,10027,1019280029,1058563,MN-10,9,222,MN11,40.807187,-73.949645,40.8073,-73.950006,11/13/2014,Preservation,Yes,Non Prevailing Wage,29,1,0,0,0,0,30,0,0,0,0,0,0,0,30,0,30,30 +54397,CONFIDENTIAL,Homeowner Assistance Program,11/13/2014,11/13/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,11/13/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54553,CONFIDENTIAL,Homeowner Assistance Program,11/13/2014,11/13/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,11/13/2014,New Construction,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +68430,STUYPARK APARTMENTS (20140270),Multifamily Incentives Program,11/13/2014,12/14/2016,344022,77,NEW YORK AVENUE,Brooklyn,11216,3012080001,3030090,BK-08,36,313,BK61,40.677384,-73.947,40.67707,-73.946715,12/14/2016,Preservation,No,Non Prevailing Wage,0,0,102,0,0,1,40,62,1,0,0,0,0,0,103,0,103,103 +54392,CONFIDENTIAL,Homeowner Assistance Program,11/12/2014,11/12/2014,,----,----,Queens,,,,QN-12,27,,,,,,,11/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +54395,CONFIDENTIAL,Homeowner Assistance Program,11/12/2014,11/12/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,11/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +54536,CONFIDENTIAL,Homeowner Assistance Program,11/10/2014,11/10/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,11/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58191,CONFIDENTIAL,Homeowner Assistance Program,11/10/2014,11/10/2014,,----,----,Brooklyn,,,,BK-12,44,,,,,,,11/10/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50372,San Miguel Residence aka Ryer Associates,Multifamily Finance Program,11/07/2014,11/07/2014,107805,2386,RYER AVENUE,Bronx,10458,2031520007,2013579,BX-05,15,23702,BX05,40.859583,-73.89796,40.85957,-73.897729,11/07/2014,Preservation,Yes,Non Prevailing Wage,0,0,69,0,0,1,64,5,1,0,0,0,0,0,70,0,70,70 +53467,CONFIDENTIAL,Homeowner Assistance Program,11/07/2014,02/17/2015,,----,----,Queens,,,,QN-12,27,,,,,,,02/17/2015,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58189,CONFIDENTIAL,Homeowner Assistance Program,11/06/2014,11/06/2014,,----,----,Queens,,,,QN-12,27,,,,,,,11/06/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +54537,CONFIDENTIAL,Homeowner Assistance Program,11/03/2014,11/03/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,11/03/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53529,CONFIDENTIAL,Homeowner Assistance Program,11/01/2014,11/01/2014,,----,----,Queens,,,,QN-13,27,,,,,,,11/01/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53542,CONFIDENTIAL,Homeowner Assistance Program,11/01/2014,11/01/2014,,----,----,Bronx,,,,BX-04,8,,,,,,,11/01/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53614,CONFIDENTIAL,Homeowner Assistance Program,10/31/2014,10/31/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,10/31/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53664,CONFIDENTIAL,Homeowner Assistance Program,10/31/2014,10/31/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/31/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +50405,CROTONA PARK NORTH,Multifamily Finance Program,10/30/2014,10/30/2014,65760,756,EAST 175 STREET,Bronx,10457,2029480040,2009934,BX-06,17,36902,BX17,40.84181,-73.89171,40.84168,-73.89188,10/30/2014,Preservation,Yes,Non Prevailing Wage,0,0,35,0,0,1,0,16,20,0,0,0,0,0,36,0,36,36 +50405,CROTONA PARK NORTH,Multifamily Finance Program,10/30/2014,10/30/2014,104359,1791,PROSPECT AVENUE,Bronx,10457,2029480044,2009935,BX-06,17,36902,BX17,40.841404,-73.891819,40.84153,-73.892039,10/30/2014,Preservation,Yes,Non Prevailing Wage,0,0,31,0,0,0,5,19,7,0,0,0,0,0,31,0,31,31 +50417,Gateway 1,Multifamily Finance Program,10/30/2014,10/30/2014,23612,45,LENOX AVENUE,Manhattan,10026,1018220029,1084006,MN-10,9,216,MN11,40.799519,-73.9515,40.79988,-73.951764,10/30/2014,Preservation,Yes,Non Prevailing Wage,38,15,5,0,0,1,0,14,34,11,0,0,0,0,58,1,59,59 +50418,Audubon,Multifamily Finance Program,10/30/2014,10/30/2014,3553,2321,ADAM C POWELL BOULEVARD,Manhattan,10030,1019210001,1058309,MN-10,9,228,MN03,40.816066,-73.943135,40.81612,-73.942565,10/30/2014,Preservation,Yes,Non Prevailing Wage,67,15,5,0,0,1,12,30,32,14,0,0,0,0,88,0,88,88 +52241,606 WEST 57TH STREET,Multifamily Incentives Program,10/30/2014,12/03/2018,977581,606,WEST 57 STREET,Manhattan,10019,1011040031,1090190,MN-04,6,135,MN15,40.770531,-73.991945,40.77043,-73.992671,12/03/2018,New Construction,No,Non Prevailing Wage,0,103,103,52,0,0,55,109,86,8,0,0,0,0,258,0,258,1028 +53615,CONFIDENTIAL,Homeowner Assistance Program,10/30/2014,10/30/2014,,----,----,Queens,,,,QN-03,21,,,,,,,10/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58188,CONFIDENTIAL,Homeowner Assistance Program,10/30/2014,10/30/2014,,----,----,Brooklyn,,,,BK-17,41,,,,,,,10/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58227,CONFIDENTIAL,Homeowner Assistance Program,10/30/2014,10/30/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58491,Locust Manor Family II (20136069),Multifamily Incentives Program,10/30/2014,12/20/2016,968970,126-02,LOCUST MANOR LANE,Queens,11434,4125290228,4596012,QN-12,27,33401,QN08,40.680371,-73.772197,40.68047,-73.772921,12/20/2016,New Construction,No,Non Prevailing Wage,8,3,42,0,0,1,0,25,29,0,0,0,0,0,54,0,54,54 +50419,Site A/Washington Heights,Multifamily Finance Program,10/29/2014,10/29/2014,804007,2036,AMSTERDAM AVENUE,Manhattan,10032,1021190036,1062836,MN-12,7,245,MN36,40.835269,-73.940293,40.8353,-73.940929,10/29/2014,Preservation,Yes,Non Prevailing Wage,88,15,6,0,0,1,0,23,76,11,0,0,0,0,110,0,110,110 +50421,MSHOUSES,Multifamily Finance Program,10/29/2014,10/29/2014,20805,123,EAST 129 STREET,Manhattan,10035,1017780006,1054510,MN-11,9,242,MN34,40.807082,-73.935929,40.80747,-73.935911,10/29/2014,Preservation,Yes,Non Prevailing Wage,97,26,7,0,0,1,0,51,61,0,19,0,0,0,131,0,131,131 +58180,CONFIDENTIAL,Homeowner Assistance Program,10/29/2014,10/29/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,10/29/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55413,334 Beach 54th Street,Multifamily Finance Program,10/28/2014,04/25/2016,867829,334,BEACH 54 STREET,Queens,11692,4158900030,4532559,QN-14,31,97204,QN12,40.593481,-73.784379,40.59343,-73.783897,04/25/2016,Preservation,No,Non Prevailing Wage,0,0,31,0,0,1,0,0,0,0,0,0,0,32,32,0,32,32 +58179,CONFIDENTIAL,Homeowner Assistance Program,10/28/2014,10/28/2014,,----,----,Queens,,,,QN-14,31,,,,,,,10/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53414,CONFIDENTIAL,Homeowner Assistance Program,10/27/2014,12/01/2014,,----,----,Queens,,,,QN-13,27,,,,,,,12/01/2014,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53663,CONFIDENTIAL,Homeowner Assistance Program,10/24/2014,10/24/2014,,----,----,Brooklyn,,,,BK-08,36,,,,,,,10/24/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +65068,338 AND 340 ELDERT STREET,Multifamily Incentives Program,10/24/2014,05/08/2018,948048,340,ELDERT STREET,Brooklyn,11237,3034190028,,BK-04,37,437,BK77,40.693541,-73.90636,40.69348,-73.906079,05/08/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,8 +65107,2985 AND 2987 WEBSTER AVE,Multifamily Incentives Program,10/24/2014,03/06/2018,952508,2985,WEBSTER AVENUE,Bronx,10458,2032800048,2127782,BX-07,11,415,BX05,40.867956,-73.882501,40.86812,-73.882834,03/06/2018,New Construction,No,Non Prevailing Wage,0,0,18,0,0,0,0,8,10,0,0,0,0,0,18,0,18,88 +53616,CONFIDENTIAL,Homeowner Assistance Program,10/23/2014,10/23/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,10/23/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,1 +53661,CONFIDENTIAL,Homeowner Assistance Program,10/22/2014,10/22/2014,,----,----,Brooklyn,,,,BK-08,36,,,,,,,10/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53611,CONFIDENTIAL,Homeowner Assistance Program,10/21/2014,10/21/2014,,----,----,Bronx,,,,BX-11,13,,,,,,,10/21/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58200,CONFIDENTIAL,Homeowner Assistance Program,10/21/2014,10/21/2014,,----,----,Brooklyn,,,,BK-04,34,,,,,,,10/21/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53251,CONFIDENTIAL,Homeowner Assistance Program,10/20/2014,01/01/2015,,----,----,Bronx,,,,BX-12,12,,,,,,,01/01/2015,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53609,CONFIDENTIAL,Homeowner Assistance Program,10/20/2014,10/20/2014,,----,----,Queens,,,,QN-13,23,,,,,,,10/20/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53618,CONFIDENTIAL,Homeowner Assistance Program,10/17/2014,10/17/2014,,----,----,Bronx,,,,BX-10,13,,,,,,,10/17/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53624,CONFIDENTIAL,Homeowner Assistance Program,10/16/2014,10/16/2014,,----,----,Queens,,,,QN-03,22,,,,,,,10/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53666,CONFIDENTIAL,Homeowner Assistance Program,10/16/2014,10/16/2014,,----,----,Queens,,,,QN-06,29,,,,,,,10/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58506,625 West 57th Street Apartments (20140275),Multifamily Incentives Program,10/16/2014,10/01/2017,969123,625,WEST 57 STREET,Manhattan,10019,1011057501,1089709,MN-04,6,135,MN15,40.771289,-73.9937,40.77143,-73.992967,10/01/2017,New Construction,No,Non Prevailing Wage,0,142,0,0,0,1,28,95,15,5,0,0,0,0,143,0,143,709 +65108,2999 WEBSTER AVE,Multifamily Incentives Program,10/15/2014,08/03/2017,952517,2999,WEBSTER AVENUE,Bronx,10458,2032800039,2129005,BX-07,11,415,BX05,40.868175,-73.88214,40.86841,-73.88236,08/03/2017,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,4,0,0,0,0,0,7,0,7,34 +53612,CONFIDENTIAL,Homeowner Assistance Program,10/14/2014,10/14/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,10/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53212,CONFIDENTIAL,Homeowner Assistance Program,10/09/2014,01/30/2015,,----,----,Brooklyn,,,,BK-03,36,,,,,,,01/30/2015,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58198,CONFIDENTIAL,Homeowner Assistance Program,10/09/2014,10/09/2014,,----,----,Queens,,,,QN-12,27,,,,,,,10/09/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +51585,217-221 W. 29th Street,Multifamily Incentives Program,10/08/2014,02/27/2018,952295,221,WEST 29 STREET,Manhattan,10001,1007790027,1090618,MN-05,3,95,MN17,40.748214,-73.993735,40.74841,-73.993648,02/27/2018,New Construction,No,Non Prevailing Wage,0,0,19,0,0,0,4,13,2,0,0,0,0,0,19,0,19,95 +53610,CONFIDENTIAL,Homeowner Assistance Program,10/07/2014,10/07/2014,,----,----,Queens,,,,QN-09,32,,,,,,,10/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53623,CONFIDENTIAL,Homeowner Assistance Program,10/07/2014,10/07/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,10/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53665,CONFIDENTIAL,Homeowner Assistance Program,10/06/2014,10/06/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,10/06/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53211,CONFIDENTIAL,Homeowner Assistance Program,10/03/2014,04/01/2015,,----,----,Brooklyn,,,,BK-18,45,,,,,,,04/01/2015,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50104,Crotona Terrace I aka 1825 Boston Road,Multifamily Finance Program,10/02/2014,10/28/2016,927022,1825,BOSTON ROAD,Bronx,10460,2029847503,2124684,BX-03,17,161,BX75,40.838878,-73.885209,40.83919,-73.88566,10/28/2016,New Construction,No,Non Prevailing Wage,0,0,79,0,0,1,20,19,41,0,0,0,0,0,80,0,80,80 +58197,CONFIDENTIAL,Homeowner Assistance Program,10/02/2014,10/02/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,10/02/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53572,CONFIDENTIAL,Homeowner Assistance Program,09/30/2014,09/30/2014,,----,----,Queens,,,,QN-02,26,,,,,,,09/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53588,CONFIDENTIAL,Homeowner Assistance Program,09/30/2014,09/30/2014,,----,----,Brooklyn,,,,BK-07,38,,,,,,,09/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53590,CONFIDENTIAL,Homeowner Assistance Program,09/30/2014,09/30/2014,,----,----,Queens,,,,QN-12,27,,,,,,,09/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58196,CONFIDENTIAL,Homeowner Assistance Program,09/30/2014,09/30/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,09/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53064,CONFIDENTIAL,Homeowner Assistance Program,09/29/2014,12/01/2014,,----,----,Queens,,,,QN-10,28,,,,,,,12/01/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53579,CONFIDENTIAL,Homeowner Assistance Program,09/25/2014,09/25/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,09/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58195,CONFIDENTIAL,Homeowner Assistance Program,09/25/2014,09/25/2014,,----,----,Queens,,,,QN-13,31,,,,,,,09/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58194,CONFIDENTIAL,Homeowner Assistance Program,09/24/2014,09/24/2014,,----,----,Brooklyn,,,,BK-02,35,,,,,,,09/24/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53194,CONFIDENTIAL,Homeowner Assistance Program,09/23/2014,09/23/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,09/23/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +55511,Arverne/Nordak,Multifamily Finance Program,09/23/2014,,811201,353,BEACH 57 STREET,Queens,11692,4158950050,4436427,QN-14,31,97204,QN12,40.593738,-73.78714,40.59363,-73.78799,,Preservation,No,Non Prevailing Wage,0,0,0,0,343,0,0,0,0,0,0,0,0,343,0,343,343,343 +48638,LANTERN. 330-332 WEST 51ST ST. STARDOM HALL,Multifamily Finance Program,09/19/2014,12/11/2017,33874,330,WEST 51 STREET,Manhattan,10019,1010410047,1025181,MN-04,3,133,MN15,40.763408,-73.986846,40.76332,-73.987185,12/11/2017,Preservation,No,Non Prevailing Wage,39,0,14,0,0,0,53,0,0,0,0,0,0,0,53,0,53,53 +48638,LANTERN. 330-332 WEST 51ST ST. STARDOM HALL,Multifamily Finance Program,09/19/2014,12/11/2017,33876,332,WEST 51 STREET,Manhattan,10019,1010410047,1025182,MN-04,3,133,MN15,40.763435,-73.986907,40.76332,-73.987185,12/11/2017,Preservation,No,Non Prevailing Wage,0,0,56,0,0,0,56,0,0,0,0,0,0,0,56,0,56,56 +53569,CONFIDENTIAL,Homeowner Assistance Program,09/19/2014,09/19/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,09/19/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58192,CONFIDENTIAL,Homeowner Assistance Program,09/19/2014,09/19/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,09/19/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53578,CONFIDENTIAL,Homeowner Assistance Program,09/17/2014,09/17/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,09/17/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58177,CONFIDENTIAL,Homeowner Assistance Program,09/17/2014,09/17/2014,,----,----,Brooklyn,,,,BK-09,40,,,,,,,09/17/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50187,11 Jackson Street,Multifamily Incentives Program,09/16/2014,03/09/2017,948151,11,JACKSON STREET,Brooklyn,11211,3027410047,3068246,BK-01,33,515,BK73,40.716002,-73.951583,40.71627,-73.951344,03/09/2017,New Construction,No,Non Prevailing Wage,0,0,10,0,0,0,3,5,2,0,0,0,0,0,10,0,10,44 +53604,CONFIDENTIAL,Homeowner Assistance Program,09/16/2014,09/16/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,09/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53586,CONFIDENTIAL,Homeowner Assistance Program,09/12/2014,09/12/2014,,----,----,Queens,,,,QN-09,29,,,,,,,09/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53587,CONFIDENTIAL,Homeowner Assistance Program,09/12/2014,09/12/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,09/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53602,CONFIDENTIAL,Homeowner Assistance Program,09/12/2014,09/12/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,09/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58199,CONFIDENTIAL,Homeowner Assistance Program,09/12/2014,09/12/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/12/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58218,CONFIDENTIAL,Homeowner Assistance Program,09/11/2014,09/11/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,09/11/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58247,CONFIDENTIAL,Homeowner Assistance Program,09/11/2014,09/11/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/11/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,197915,219,BAINBRIDGE STREET,Brooklyn,11233,3016820080,3047617,BK-03,36,381,BK61,40.681318,-73.928089,40.6815,-73.928374,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,4,4,0,0,0,0,0,8,0,8,8 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,299577,905A,GATES AVENUE,Brooklyn,11221,3016320073,3044569,BK-03,36,387,BK35,40.688661,-73.929423,40.68884,-73.929632,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,4,0,0,0,0,0,0,4,0,4,4 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,299588,914,GATES AVENUE,Brooklyn,11221,3016370032,3044667,BK-03,36,385,BK35,40.688828,-73.927818,40.68866,-73.927519,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,1,1,0,10,0,0,0,0,0,11,0,11,11 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,307112,462,HANCOCK STREET,Brooklyn,11233,3016590022,3046012,BK-03,36,275,BK35,40.684051,-73.936769,40.68383,-73.936762,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,6,0,0,0,1,3,2,0,0,0,0,0,6,0,6,6 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,330159,625,MACON STREET,Brooklyn,11233,3016680095,3046714,BK-03,41,383,BK35,40.683836,-73.92575,40.68401,-73.926122,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,6,2,0,0,0,0,0,8,0,8,8 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,334664,508,MAC DONOUGH STREET,Brooklyn,11233,3016780007,3047277,BK-03,41,381,BK61,40.683087,-73.9256,40.68285,-73.925899,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,2,1,0,0,0,0,3,0,3,3 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360408,179,MALCOLM X BOULEVARD,Brooklyn,11221,3016470010,3045249,BK-03,36,385,BK35,40.687031,-73.929554,40.687,-73.929605,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360416,187,MALCOLM X BOULEVARD,Brooklyn,11221,3016470006,3045245,BK-03,36,385,BK35,40.686734,-73.929807,40.68678,-73.929558,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,4,0,4,4 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360434,214,MALCOLM X BOULEVARD,Brooklyn,11221,3016510045,3045501,BK-03,36,295,BK35,40.685963,-73.929675,40.68594,-73.929967,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360445,226,MALCOLM X BOULEVARD,Brooklyn,11221,3016560039,3045827,BK-03,36,295,BK35,40.685384,-73.929553,40.68538,-73.929812,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,0,0,8,0,0,0,0,0,8,0,8,8 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360458,237,MALCOLM X BOULEVARD,Brooklyn,11233,3016620006,3046204,BK-03,36,383,BK35,40.684648,-73.929391,40.68463,-73.929135,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,11,0,0,1,1,5,6,0,0,0,0,0,12,0,12,12 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360462,244,MALCOLM X BOULEVARD,Brooklyn,11233,3016610042,3046162,BK-03,36,295,BK35,40.684689,-73.92942,40.68471,-73.929672,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,1,0,3,0,0,0,0,4,0,4,4 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360465,248,MALCOLM X BOULEVARD,Brooklyn,11233,3016610045,3046164,BK-03,36,295,BK35,40.684588,-73.929402,40.68453,-73.929636,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,4,0,0,0,0,0,1,3,0,0,0,0,4,0,4,4 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360470,254,MALCOLM X BOULEVARD,Brooklyn,11233,3016610047,3046165,BK-03,36,295,BK35,40.684434,-73.92937,40.68446,-73.929669,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,8,0,0,0,1,7,0,0,0,0,0,0,8,0,8,8 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360477,260,MALCOLM X BOULEVARD,Brooklyn,11233,3016610050,3046168,BK-03,36,295,BK35,40.68428,-73.929341,40.68426,-73.929629,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,2,4,3,1,0,0,0,0,10,0,10,10 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360478,261,MALCOLM X BOULEVARD,Brooklyn,11233,3016670002,3046551,BK-03,36,383,BK35,40.683619,-73.929187,40.68365,-73.92892,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,7,0,0,0,0,7,0,0,0,0,0,0,7,0,7,7 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360497,281,MALCOLM X BOULEVARD,Brooklyn,11233,3016770008,3047201,BK-03,36,381,BK61,40.682592,-73.928975,40.6826,-73.928762,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +50404,Vannguard,Multifamily Finance Program,09/10/2014,09/10/2014,360501,295,MALCOLM X BOULEVARD,Brooklyn,11233,3016770001,3320309,BK-03,36,381,BK61,40.682079,-73.928878,40.68226,-73.928658,09/10/2014,Preservation,Yes,Non Prevailing Wage,0,0,15,0,0,1,0,0,16,0,0,0,0,0,16,0,16,16 +53583,CONFIDENTIAL,Homeowner Assistance Program,09/10/2014,09/10/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,09/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +49959,L&M HCCI 260 W 153RD STREET,Multifamily Finance Program,09/09/2014,06/22/2016,948186,258,WEST 153 STREET,Manhattan,10039,1020387501,1089911,MN-10,9,236,MN03,40.82739,-73.937135,40.82738,-73.937666,06/22/2016,New Construction,No,Non Prevailing Wage,8,42,0,0,0,1,7,30,14,0,0,0,0,0,51,0,51,51 +53564,CONFIDENTIAL,Homeowner Assistance Program,09/09/2014,09/09/2014,,----,----,Brooklyn,,,,BK-11,43,,,,,,,09/09/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +58246,CONFIDENTIAL,Homeowner Assistance Program,09/09/2014,09/09/2014,,----,----,Queens,,,,QN-11,19,,,,,,,09/09/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +52138,CONFIDENTIAL,Homeowner Assistance Program,09/05/2014,12/08/2014,,----,----,Brooklyn,,,,BK-17,42,,,,,,,12/08/2014,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58226,CONFIDENTIAL,Homeowner Assistance Program,09/05/2014,09/05/2014,,----,----,Queens,,,,QN-13,27,,,,,,,09/05/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58190,CONFIDENTIAL,Homeowner Assistance Program,09/04/2014,09/04/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,09/04/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53003,CONFIDENTIAL,Homeowner Assistance Program,09/03/2014,10/14/2014,,----,----,Bronx,,,,BX-01,8,,,,,,,10/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,3,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +58217,CONFIDENTIAL,Homeowner Assistance Program,09/03/2014,09/03/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,09/03/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58229,CONFIDENTIAL,Homeowner Assistance Program,09/03/2014,09/03/2014,,----,----,Queens,,,,QN-14,31,,,,,,,09/03/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53195,CONFIDENTIAL,Homeowner Assistance Program,09/01/2014,09/01/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,09/01/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53472,CONFIDENTIAL,Homeowner Assistance Program,08/29/2014,08/29/2014,,----,----,Brooklyn,,,,BK-15,46,,,,,,,08/29/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53470,CONFIDENTIAL,Homeowner Assistance Program,08/28/2014,08/28/2014,,----,----,Bronx,,,,BX-09,17,,,,,,,08/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58214,CONFIDENTIAL,Homeowner Assistance Program,08/28/2014,08/28/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,08/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58215,CONFIDENTIAL,Homeowner Assistance Program,08/28/2014,08/28/2014,,----,----,Queens,,,,QN-12,31,,,,,,,08/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58213,CONFIDENTIAL,Homeowner Assistance Program,08/27/2014,08/27/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +49945,365 BOND STREET,Multifamily Incentives Program,08/26/2014,08/01/2016,980768,365,BOND STREET,Brooklyn,11231,3004580001,3425036,BK-06,39,77,BK33,40.677898,-73.990738,40.67745,-73.990334,08/01/2016,New Construction,No,Non Prevailing Wage,0,0,86,0,0,0,20,48,18,0,0,0,0,0,86,0,86,429 +53469,CONFIDENTIAL,Homeowner Assistance Program,08/25/2014,08/25/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,08/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52878,CONFIDENTIAL,Homeowner Assistance Program,08/22/2014,12/08/2014,,----,----,Brooklyn,,,,BK-16,42,,,,,,,12/08/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +44333,HIGHBRIDGE CDC. 1448 PLIMPTON AVE. ARTSBRIDGE,Multifamily Finance Program,08/21/2014,10/27/2017,955937,1450,PLIMPTON AVENUE,Bronx,10452,2028740027,2129309,BX-04,16,21302,BX26,40.843998,-73.922008,40.84406,-73.921693,10/27/2017,New Construction,No,Prevailing Wage,61,0,0,0,0,1,0,61,1,0,0,0,0,0,62,0,62,62 +58212,CONFIDENTIAL,Homeowner Assistance Program,08/19/2014,08/19/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/19/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58505,Navy Pier Apartments (20140207),Multifamily Incentives Program,08/19/2014,10/16/2017,962555,355,FRONT STREET,Staten Island,10304,5004870050,,SI-01,49,21,SI37,40.629347,-74.074578,40.62795,-74.07373,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,57,0,0,0,40,11,6,0,0,0,0,0,57,0,57,57 +58505,Navy Pier Apartments (20140207),Multifamily Incentives Program,08/19/2014,10/16/2017,967483,455,FRONT STREET,Staten Island,10304,5004870100,5170228,SI-01,49,6,SI37,40.626715,-74.074096,40.63076,-74.07119,10/16/2017,New Construction,No,Non Prevailing Wage,0,0,58,0,0,1,41,11,7,0,0,0,0,0,59,0,59,514 +53449,CONFIDENTIAL,Homeowner Assistance Program,08/18/2014,08/18/2014,,----,----,Brooklyn,,,,BK-11,43,,,,,,,08/18/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +53454,CONFIDENTIAL,Homeowner Assistance Program,08/18/2014,08/18/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,08/18/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53118,CONFIDENTIAL,Homeowner Assistance Program,08/14/2014,08/14/2014,,----,----,Queens,,,,QN-02,30,,,,,,,08/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53447,CONFIDENTIAL,Homeowner Assistance Program,08/14/2014,08/14/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/14/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53448,CONFIDENTIAL,Homeowner Assistance Program,08/14/2014,08/14/2014,,----,----,Queens,,,,QN-03,25,,,,,,,08/14/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1 +58211,CONFIDENTIAL,Homeowner Assistance Program,08/14/2014,08/14/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +65091,1690 NELSON AVE,Multifamily Incentives Program,08/14/2014,02/06/2018,948586,1690,NELSON AVENUE,Bronx,10453,2028760167,2124373,BX-05,14,21502,BX36,40.848089,-73.91716,40.84778,-73.917084,02/06/2018,New Construction,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,4,0,0,0,0,0,7,0,7,33 +58185,CONFIDENTIAL,Homeowner Assistance Program,08/13/2014,08/13/2014,,----,----,Brooklyn,,,,BK-07,38,,,,,,,08/13/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +49544,BRC. 330 EAST 4TH ST. CLYDE BURTON,Multifamily Finance Program,08/08/2014,,10734,330,EAST 4 STREET,Manhattan,10009,1003730018,1004386,MN-03,2,2601,MN28,40.721788,-73.979022,40.72161,-73.979159,,Preservation,No,Non Prevailing Wage,33,0,0,0,0,0,33,0,0,0,0,0,0,0,33,0,33,33 +53108,CONFIDENTIAL,Homeowner Assistance Program,08/08/2014,08/08/2014,,----,----,Queens,,,,QN-12,27,,,,,,,08/08/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53107,CONFIDENTIAL,Homeowner Assistance Program,08/07/2014,08/07/2014,,----,----,Queens,,,,QN-05,34,,,,,,,08/07/2014,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +58176,CONFIDENTIAL,Homeowner Assistance Program,08/07/2014,08/07/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,08/07/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58184,CONFIDENTIAL,Homeowner Assistance Program,08/07/2014,08/07/2014,,----,----,Queens,,,,QN-13,31,,,,,,,08/07/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53446,CONFIDENTIAL,Homeowner Assistance Program,08/05/2014,08/05/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/05/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58183,CONFIDENTIAL,Homeowner Assistance Program,08/04/2014,08/04/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,08/04/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50495,Calvary.112-02 Guy Brewer Boulevard,Multifamily Finance Program,08/01/2014,06/15/2016,949059,162-25,112 ROAD,Queens,11433,4121830035,4607744,QN-12,28,264,QN01,40.689767,-73.786563,40.69003,-73.786869,06/15/2016,New Construction,No,Non Prevailing Wage,8,0,44,0,0,1,0,33,20,0,0,0,0,0,53,0,53,53 +53106,CONFIDENTIAL,Homeowner Assistance Program,08/01/2014,08/01/2014,,----,----,Brooklyn,,,,BK-04,37,,,,,,,08/01/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +53110,CONFIDENTIAL,Homeowner Assistance Program,08/01/2014,08/01/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,08/01/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +49709,605 WEST 42ND ST,Multifamily Incentives Program,07/31/2014,10/11/2016,946595,605,WEST 42 STREET,Manhattan,10036,1010907502,1089438,MN-04,3,129,MN15,40.76096,-73.998617,40.76153,-73.99878,10/11/2016,New Construction,No,Non Prevailing Wage,0,0,235,0,0,0,70,120,45,0,0,0,0,0,235,0,235,1175 +53354,CONFIDENTIAL,Homeowner Assistance Program,07/31/2014,07/31/2014,,----,----,Brooklyn,,,,BK-09,41,,,,,,,07/31/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,1,1 +53352,CONFIDENTIAL,Homeowner Assistance Program,07/30/2014,07/30/2014,,----,----,Queens,,,,QN-09,30,,,,,,,07/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +53353,CONFIDENTIAL,Homeowner Assistance Program,07/30/2014,07/30/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,07/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53350,CONFIDENTIAL,Homeowner Assistance Program,07/29/2014,07/29/2014,,----,----,Queens,,,,QN-08,24,,,,,,,07/29/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +53056,CONFIDENTIAL,Homeowner Assistance Program,07/28/2014,07/28/2014,,----,----,Brooklyn,,,,BK-03,36,,,,,,,07/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58182,CONFIDENTIAL,Homeowner Assistance Program,07/28/2014,07/28/2014,,----,----,Queens,,,,QN-05,30,,,,,,,07/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58181,CONFIDENTIAL,Homeowner Assistance Program,07/25/2014,07/25/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,07/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +53033,CONFIDENTIAL,Homeowner Assistance Program,07/24/2014,07/24/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,07/24/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +52984,CONFIDENTIAL,Homeowner Assistance Program,07/17/2014,07/17/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,07/17/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58178,CONFIDENTIAL,Homeowner Assistance Program,07/17/2014,07/17/2014,,----,----,Brooklyn,,,,BK-18,45,,,,,,,07/17/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58225,CONFIDENTIAL,Homeowner Assistance Program,07/17/2014,07/17/2014,,----,----,Queens,,,,QN-12,28,,,,,,,07/17/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58223,CONFIDENTIAL,Homeowner Assistance Program,07/16/2014,07/16/2014,,----,----,Queens,,,,QN-12,27,,,,,,,07/16/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58224,CONFIDENTIAL,Homeowner Assistance Program,07/16/2014,07/16/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,07/16/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58222,CONFIDENTIAL,Homeowner Assistance Program,07/14/2014,07/14/2014,,----,----,Staten Island,,,,SI-02,51,,,,,,,07/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +58221,CONFIDENTIAL,Homeowner Assistance Program,07/11/2014,07/11/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,07/11/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +51357,PS 186 AKA BGCH (BOYS AND GIRLS CLUB OF HARLEM),Multifamily Finance Program,07/09/2014,11/16/2016,951689,525,WEST 145 STREET,Manhattan,10031,1020777501,1061933,MN-09,7,229,MN04,40.825612,-73.948479,40.82615,-73.948688,11/16/2016,New Construction,No,Non Prevailing Wage,0,15,48,0,15,1,19,48,12,0,0,0,0,0,79,0,79,79 +52981,CONFIDENTIAL,Homeowner Assistance Program,07/09/2014,07/09/2014,,----,----,Queens,,,,QN-12,27,,,,,,,07/09/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,1 +58220,CONFIDENTIAL,Homeowner Assistance Program,07/07/2014,07/07/2014,,----,----,Queens,,,,QN-07,19,,,,,,,07/07/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +52603,CONFIDENTIAL,Homeowner Assistance Program,07/01/2014,12/12/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,12/12/2014,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +52838,CONFIDENTIAL,Homeowner Assistance Program,07/01/2014,07/01/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,07/01/2014,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +44239,Home for Harlem Dowling,Multifamily Finance Program,06/30/2014,12/29/2016,927150,2139,ADAM C POWELL JR BOULEVARD,Manhattan,10027,1019110061,1090253,MN-10,9,224,MN03,40.81014,-73.947461,40.80991,-73.947125,12/29/2016,New Construction,No,Non Prevailing Wage,12,0,47,0,0,1,12,12,36,0,0,0,0,0,60,0,60,60 +44319,Williamsburg Apartments,Multifamily Finance Program,06/30/2014,12/29/2017,927209,37,MAUJER STREET,Brooklyn,11206,3027850042,3251772,BK-01,34,513,BK73,40.710342,-73.949819,40.71054,-73.949808,05/18/2017,New Construction,No,Non Prevailing Wage,0,1,9,0,0,0,0,3,7,0,0,0,0,0,10,0,10,10 +44319,Williamsburg Apartments,Multifamily Finance Program,06/30/2014,12/29/2017,955279,37,TEN EYCK STREET,Brooklyn,11206,3027910035,3251778,BK-01,34,513,BK73,40.709669,-73.949329,40.70988,-73.949203,01/31/2017,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,6,0,0,0,0,0,0,6,0,6,6 +44319,Williamsburg Apartments,Multifamily Finance Program,06/30/2014,12/29/2017,955280,33,TEN EYCK STREET,Brooklyn,11206,3027910037,3397100,BK-01,34,513,BK73,40.709658,-73.949466,40.70986,-73.949473,12/29/2017,New Construction,No,Non Prevailing Wage,3,1,13,0,0,1,0,9,9,0,0,0,0,0,18,0,18,18 +44319,Williamsburg Apartments,Multifamily Finance Program,06/30/2014,12/29/2017,955283,356,BEDFORD AVENUE,Brooklyn,11249,3024307501,3397101,BK-01,34,551,BK73,40.712164,-73.962789,40.71222,-73.963078,11/08/2017,New Construction,No,Non Prevailing Wage,5,1,13,0,0,0,0,6,10,3,0,0,0,0,19,0,19,19 +45303,Prospect Plaza Redevelopment,Multifamily Finance Program,06/30/2014,07/11/2016,949086,1765,PROSPECT PLACE,Brooklyn,11233,3014580140,3425174,BK-16,41,363,BK79,40.672564,-73.917922,40.67281,-73.917742,07/11/2016,New Construction,No,Prevailing Wage,0,33,44,0,0,1,0,17,54,7,0,0,0,0,78,0,78,78 +45303,Prospect Plaza Redevelopment,Multifamily Finance Program,06/30/2014,07/11/2016,972798,1751,PROSPECT PLACE,Brooklyn,11233,3014580052,3425177,BK-16,41,363,BK79,40.672569,-73.917983,40.67287,-73.918589,05/06/2016,New Construction,No,Prevailing Wage,0,13,19,0,0,0,0,1,31,0,0,0,0,0,32,0,32,32 +45326,High Hawk,Multifamily Finance Program,06/30/2014,01/29/2018,934081,1776,BOSTON ROAD,Bronx,10460,2029910005,2119255,BX-03,17,161,BX75,40.837938,-73.886812,40.83765,-73.886769,01/29/2018,New Construction,No,Non Prevailing Wage,0,0,18,54,0,1,1,16,48,8,0,0,0,0,73,0,73,73 +47841,1490 CROTONA PARK EAST,Multifamily Finance Program,06/30/2014,04/30/2015,59988,1490,CROTONA PARK EAST,Bronx,10457,2029420001,,BX-03,17,163,BX99,40.837941,-73.895254,40.83853,-73.892991,04/30/2015,Preservation,No,Non Prevailing Wage,0,0,38,0,0,1,0,14,20,5,0,0,0,0,39,0,39,39 +47858,800 E 173 LLC,Multifamily Finance Program,06/30/2014,,65623,800,EAST 173 STREET,Bronx,10460,2029390100,2009868,BX-03,17,155,BX75,40.836781,-73.890475,40.83663,-73.890594,,Preservation,No,Non Prevailing Wage,0,0,26,1,0,0,0,6,6,15,0,0,0,0,27,0,27,27 +48742,40 Riverside Boulevard,Multifamily Incentives Program,06/30/2014,02/25/2016,951656,40,RIVERSIDE BOULEVARD,Manhattan,10069,1011717509,1089742,MN-07,6,151,MN14,40.774319,-73.991624,40.77399,-73.991284,02/25/2016,New Construction,No,Non Prevailing Wage,0,0,55,0,0,0,10,15,30,0,0,0,0,0,55,0,55,274 +48870,1380 University Avenue,Multifamily Finance Program,06/30/2014,12/28/2015,116785,1380,DR M L KING JR BOULEVARD,Bronx,10452,2025340008,2003556,BX-04,16,201,BX26,40.842425,-73.925928,40.84252,-73.925299,12/28/2015,Preservation,No,Non Prevailing Wage,0,0,139,0,0,0,0,62,77,0,0,0,0,0,139,0,139,139 +48898,Maple Court - 1901 Madison Ave,Multifamily Finance Program,06/30/2014,02/15/2018,822634,1883,MADISON AVENUE,Manhattan,10035,1017480001,1084826,MN-11,9,198,MN34,40.803857,-73.942069,40.8038,-73.941091,02/15/2018,Preservation,No,Non Prevailing Wage,0,0,135,0,0,0,0,0,135,0,0,0,0,0,0,135,135,135 +49071,Daly Avenue (Phipps),Multifamily Finance Program,06/30/2014,06/30/2014,856988,921,EAST 180 STREET,Bronx,10460,2031280001,2114117,BX-06,17,363,BX17,40.844498,-73.881473,40.84461,-73.881028,06/30/2014,Preservation,Yes,Non Prevailing Wage,0,0,83,0,0,1,0,18,54,12,0,0,0,0,84,0,84,84 +49943,GREENPOINT LANDING G2,Multifamily Incentives Program,06/30/2014,01/24/2017,948192,1,BLUE SLIP,Brooklyn,11222,3024720100,3418101,BK-01,33,563,BK76,40.735562,-73.959806,40.73682,-73.959091,01/24/2017,New Construction,No,Non Prevailing Wage,0,19,73,0,0,0,23,23,46,0,0,0,0,0,92,0,92,93 +50291,E. H. C. C. I. / LA FORTALEZA HDFC,Multifamily Finance Program,06/30/2014,06/04/2015,20889,25,EAST 131 STREET,Manhattan,10037,1017560113,1054343,MN-11,9,206,MN03,40.809776,-73.938448,40.80988,-73.938141,06/04/2015,Preservation,No,Non Prevailing Wage,0,10,0,0,0,0,0,0,10,0,0,0,0,0,10,0,10,10 +50370,Halle Housing Associates,Multifamily Finance Program,06/30/2014,06/22/2017,186479,510,ATLANTIC AVENUE,Brooklyn,11217,3001850019,3000979,BK-02,33,39,BK38,40.685525,-73.98124,40.68531,-73.981409,06/22/2017,Preservation,No,Non Prevailing Wage,0,0,201,0,0,1,202,0,0,0,0,0,0,0,202,0,202,202 +51150,Park Avenue Thorpe,Multifamily Finance Program,06/30/2014,03/15/2017,66602,406,EAST 184 STREET,Bronx,10458,2030310007,2011182,BX-06,15,38302,BX40,40.856646,-73.894993,40.85639,-73.894751,03/15/2017,Preservation,No,Non Prevailing Wage,0,0,20,0,0,0,0,5,15,0,0,0,0,0,20,0,20,20 +52021,829 Southern Blvd. HDFC,Multifamily Finance Program,06/30/2014,04/18/2016,110217,829,SOUTHERN BOULEVARD,Bronx,10459,2027210020,2005740,BX-02,17,89,BX27,40.81707,-73.895456,40.81738,-73.895637,04/18/2016,Preservation,No,Non Prevailing Wage,0,48,0,0,0,1,7,37,5,0,0,0,0,0,1,48,49,49 +52022,3279 HULL AVE. HDFC,Multifamily Finance Program,06/30/2014,02/29/2016,87500,3279,HULL AVENUE,Bronx,10467,2033470043,2018362,BX-07,11,42902,BX43,40.876193,-73.874904,40.87641,-73.875059,02/29/2016,Preservation,No,Non Prevailing Wage,0,51,0,0,0,0,0,33,18,0,0,0,0,0,0,51,51,51 +52319,Chinatown Planning Council HDFC,Multifamily Incentives Program,06/30/2014,06/30/2014,26019,50,NORFOLK STREET,Manhattan,10002,1003460001,1004154,MN-03,1,1402,MN28,40.717025,-73.988063,40.71671,-73.987915,06/30/2014,Preservation,Yes,Non Prevailing Wage,0,155,0,0,0,0,0,143,12,0,0,0,0,0,155,0,155,155 +55932,CONFIDENTIAL,Homeowner Assistance Program,06/30/2014,06/30/2014,,----,----,Brooklyn,,,,BK-16,41,,,,,,,06/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +44225,Brook Avenue Apartments,Multifamily Finance Program,06/27/2014,12/28/2016,927748,469,EAST 147 STREET,Bronx,10455,,,BX-01,8,43,BX39,40.813854,-73.9164,,,12/23/2016,New Construction,No,Non Prevailing Wage,0,0,11,0,0,0,0,1,10,0,0,0,0,0,11,0,11,11 +44225,Brook Avenue Apartments,Multifamily Finance Program,06/27/2014,12/28/2016,955261,455,EAST 147 STREET,Bronx,10455,2022927501,,BX-01,8,43,BX39,40.813948,-73.916682,40.81401,-73.916234,12/28/2016,New Construction,No,Non Prevailing Wage,0,14,40,0,0,1,7,35,12,1,0,0,0,0,55,0,55,55 +50842,Lands End II - Two Bridges A/k/a Cherry St.,Multifamily Finance Program,06/27/2014,06/27/2014,9439,265,CHERRY STREET,Manhattan,10002,1002470001,1077589,MN-03,1,6,MN28,40.711302,-73.989049,40.71083,-73.989042,06/27/2014,Preservation,Yes,Non Prevailing Wage,189,32,21,2,1,0,65,125,55,0,0,0,0,0,245,0,245,245 +50842,Lands End II - Two Bridges A/k/a Cherry St.,Multifamily Finance Program,06/27/2014,06/27/2014,804183,275,CHERRY STREET,Manhattan,10002,1002470001,1077590,MN-03,1,6,MN28,40.711351,-73.988558,40.71083,-73.989042,06/27/2014,Preservation,Yes,Non Prevailing Wage,184,29,20,9,3,0,65,125,55,0,0,0,0,0,241,4,245,245 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,5624,1702,AMSTERDAM AVENUE,Manhattan,10031,1020760030,1061912,MN-09,7,229,MN04,40.82472,-73.947995,40.82484,-73.94827,07/23/2015,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,3,4,0,0,0,0,0,7,0,7,7 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,5656,1780,AMSTERDAM AVENUE,Manhattan,10031,1020800028,1062032,MN-09,7,233,MN04,40.82725,-73.946143,40.82738,-73.946432,07/23/2015,Preservation,No,Non Prevailing Wage,0,0,12,0,0,1,0,3,5,5,0,0,0,0,13,0,13,13 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,5659,1784,AMSTERDAM AVENUE,Manhattan,10031,1020800030,1062033,MN-09,7,233,MN04,40.827359,-73.946063,40.82746,-73.946378,12/16/2015,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,1,8,0,0,0,0,0,9,0,9,9 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,5661,1786,AMSTERDAM AVENUE,Manhattan,10031,1020800031,1062034,MN-09,7,233,MN04,40.827414,-73.946024,40.82752,-73.946331,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,0,1,8,0,0,0,0,0,9,0,9,9 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21191,115,EDGECOMBE AVENUE,Manhattan,10030,1020480033,1060909,MN-10,9,22102,MN03,40.820352,-73.945556,40.82046,-73.945791,07/14/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,1,1,3,5,0,0,0,0,0,9,0,9,9 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21218,161,EDGECOMBE AVENUE,Manhattan,10030,1020510085,1061078,MN-09,9,227,MN04,40.822086,-73.944601,40.82213,-73.944908,12/17/2015,Preservation,No,Non Prevailing Wage,0,0,15,0,0,0,1,9,1,4,0,0,0,0,15,0,15,15 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21219,165,EDGECOMBE AVENUE,Manhattan,10030,1020510083,1061077,MN-09,9,227,MN04,40.822149,-73.944568,40.82223,-73.944861,03/01/2016,Preservation,No,Non Prevailing Wage,0,0,19,0,0,1,0,12,8,0,0,0,0,0,20,0,20,20 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21220,169,EDGECOMBE AVENUE,Manhattan,10030,1020510081,1061076,MN-09,9,227,MN04,40.822212,-73.944539,40.82233,-73.944814,02/23/2016,Preservation,No,Non Prevailing Wage,0,0,20,0,0,0,0,12,8,0,0,0,0,0,20,0,20,20 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21221,180,EDGECOMBE AVENUE,Manhattan,10030,1020510098,1061083,MN-09,9,227,MN04,40.822144,-73.94455,40.82193,-73.944435,07/30/2015,Preservation,No,Non Prevailing Wage,0,0,42,0,0,0,0,7,19,16,0,0,0,0,42,0,42,42 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,21246,211,EDGECOMBE AVENUE,Manhattan,10030,1020510066,1079815,MN-09,9,227,MN04,40.822868,-73.944228,40.82298,-73.94451,02/23/2016,Preservation,No,Non Prevailing Wage,0,0,35,0,0,1,0,22,4,10,0,0,0,0,36,0,36,36 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,28152,618,ST NICHOLAS AVENUE,Manhattan,10030,1020480042,1060915,MN-10,9,22102,MN03,40.821068,-73.946159,40.82093,-73.945866,07/14/2015,Preservation,No,Non Prevailing Wage,0,0,15,0,0,0,0,10,0,5,0,0,0,0,15,0,15,15 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,41519,347,WEST 141 STREET,Manhattan,10030,1020510007,1061040,MN-09,9,227,MN04,40.820986,-73.945397,40.82119,-73.945342,07/14/2015,Preservation,No,Non Prevailing Wage,0,0,10,0,0,0,1,4,1,4,0,0,0,0,10,0,10,10 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,41521,351,WEST 141 STREET,Manhattan,10030,1020510004,1061039,MN-09,9,227,MN04,40.821005,-73.94544,40.82128,-73.945548,07/14/2015,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,1,0,5,6,0,0,0,0,12,0,12,12 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,41937,340,WEST 145 STREET,Manhattan,10039,1020510060,1061060,MN-09,9,227,MN04,40.823697,-73.943985,40.82347,-73.944123,11/09/2015,Preservation,No,Non Prevailing Wage,0,0,7,0,0,0,0,0,7,0,0,0,0,0,7,0,7,7 +51177,Edgecombe Preservation Reyndication (Phase),Multifamily Finance Program,06/27/2014,03/01/2016,804763,219,EDGECOMBE AVENUE,Manhattan,10030,1020510064,1079816,MN-09,9,227,MN04,40.822994,-73.944166,40.82315,-73.944434,12/28/2015,Preservation,No,Non Prevailing Wage,0,0,30,0,0,0,0,20,10,0,0,0,0,0,30,0,30,30 +51299,GATEWAY ELTON III,Multifamily Finance Program,06/27/2014,11/25/2016,928126,475,LOCKE STREET,Brooklyn,11239,3044477502,3413941,BK-05,42,1070,BK82,40.656348,-73.87567,40.65669,-73.875817,11/25/2016,New Construction,No,Non Prevailing Wage,0,45,105,0,0,1,15,56,45,33,2,0,0,0,151,0,151,151 +51299,GATEWAY ELTON III,Multifamily Finance Program,06/27/2014,11/25/2016,956539,1062,ELTON STREET,Brooklyn,11239,3044477501,3413940,BK-05,42,1070,BK82,40.657478,-73.874795,40.65705,-73.875095,11/25/2016,New Construction,No,Non Prevailing Wage,0,41,94,0,0,1,23,41,36,36,0,0,0,0,136,0,136,136 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,65993,547,EAST 178 STREET,Bronx,10457,2030610034,2011841,BX-06,15,37504,BX17,40.847638,-73.89492,40.84775,-73.894873,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,65995,551,EAST 178 STREET,Bronx,10457,2030610036,2011842,BX-06,15,37504,BX17,40.847528,-73.894599,40.84768,-73.894342,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,96824,2005,MONTEREY AVENUE,Bronx,10457,2030610032,2011840,BX-06,15,37504,BX17,40.847862,-73.894566,40.84789,-73.894794,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,96827,2015,MONTEREY AVENUE,Bronx,10457,2030610026,2011837,BX-06,15,37504,BX17,40.848145,-73.894392,40.84822,-73.894638,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,96830,2023,MONTEREY AVENUE,Bronx,10457,2030610022,2011835,BX-06,15,37504,BX17,40.84837,-73.894258,40.84854,-73.894446,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,118494,1665,VYSE AVENUE,Bronx,10460,2029900050,2010681,BX-03,17,161,BX75,40.835397,-73.886794,40.83538,-73.887109,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,38,0,0,0,0,5,29,4,0,0,0,0,38,0,38,38 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,118496,1671,VYSE AVENUE,Bronx,10460,2029900043,2010680,BX-03,17,161,BX75,40.835468,-73.886751,40.83561,-73.886967,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,27,0,0,0,0,1,17,9,0,0,0,0,27,0,27,27 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,118499,1687,VYSE AVENUE,Bronx,10460,2029900037,2010679,BX-03,17,161,BX75,40.83566,-73.886638,40.83603,-73.886714,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,24,0,0,0,0,0,15,5,4,0,0,0,24,0,24,24 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,118501,1693,VYSE AVENUE,Bronx,10460,2029900034,2010678,BX-03,17,161,BX75,40.835731,-73.886595,40.83622,-73.886598,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,26,0,0,0,0,5,15,6,0,0,0,0,26,0,26,26 +52056,2015 Monterey Avenue LLC aka PRC Monterey,Multifamily Finance Program,06/27/2014,06/27/2014,118505,1715,VYSE AVENUE,Bronx,10460,2029900027,2010675,BX-03,17,161,BX75,40.835995,-73.886439,40.8366,-73.886373,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,44,0,0,0,0,5,30,9,0,0,0,0,44,0,44,44 +52182,DANIEL GILMARTIN HDFC,Multifamily Incentives Program,06/27/2014,06/27/2014,510585,53-11,99 STREET,Queens,11368,4019360020,4047630,QN-04,21,44301,QN25,40.739992,-73.86092,40.74035,-73.860364,06/27/2014,Preservation,Yes,Non Prevailing Wage,0,151,0,0,0,0,151,0,0,0,0,0,0,0,151,0,151,151 +55745,CONFIDENTIAL,Homeowner Assistance Program,06/27/2014,06/27/2014,,----,----,Queens,,,,QN-13,31,,,,,,,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55760,CONFIDENTIAL,Homeowner Assistance Program,06/27/2014,06/27/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +44288,DEAN STREET RESIDENCES CONDOMINIUM,Small Homes Program,06/26/2014,06/18/2018,946784,203,MOTHER GASTON BOULEVARD,Brooklyn,11233,3014507501,3398696,BK-16,37,36502,BK79,40.674439,-73.908312,40.6744,-73.907966,06/08/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +44288,DEAN STREET RESIDENCES CONDOMINIUM,Small Homes Program,06/26/2014,06/18/2018,947359,2390,DEAN STREET,Brooklyn,11233,3014507501,3399040,BK-16,37,36502,BK79,40.674579,-73.907955,40.6744,-73.907966,06/08/2018,New Construction,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,0,3,3,3 +44288,DEAN STREET RESIDENCES CONDOMINIUM,Small Homes Program,06/26/2014,06/18/2018,947360,2394,DEAN STREET,Brooklyn,11233,3014507501,3399039,BK-16,37,36502,BK79,40.674573,-73.907858,40.6744,-73.907966,06/08/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +44288,DEAN STREET RESIDENCES CONDOMINIUM,Small Homes Program,06/26/2014,06/18/2018,947361,2398,DEAN STREET,Brooklyn,11233,3014507501,3399038,BK-16,37,36502,BK79,40.674568,-73.90776,40.6744,-73.907966,06/18/2018,New Construction,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,4,0,0,0,0,0,0,4,4,4 +44353,Walison. 280-282 E. Burnside Ave. Burnside Walton,Multifamily Finance Program,06/26/2014,10/26/2017,926997,280,EAST BURNSIDE AVENUE,Bronx,10457,2028140073,2129357,BX-05,15,381,BX41,40.851217,-73.90201,40.8508,-73.902011,10/26/2017,New Construction,No,Non Prevailing Wage,12,0,27,0,0,1,9,8,23,0,0,0,0,0,40,0,40,40 +44353,Walison. 280-282 E. Burnside Ave. Burnside Walton,Multifamily Finance Program,06/26/2014,10/26/2017,939117,2247,WALTON AVENUE,Bronx,10453,2031860076,2128908,BX-05,14,239,BX40,40.857477,-73.90335,40.85751,-73.903613,10/05/2017,New Construction,No,Non Prevailing Wage,33,0,16,0,0,1,18,19,13,0,0,0,0,0,50,0,50,50 +48607,TBX910 - Lemle & Wolff,Multifamily Finance Program,06/26/2014,01/20/2017,65790,108,EAST 176 STREET,Bronx,10453,2028260024,2007882,BX-05,14,22701,BX41,40.848177,-73.909403,40.84791,-73.909331,01/08/2016,Preservation,No,Non Prevailing Wage,0,0,36,0,0,1,0,25,6,6,0,0,0,0,37,0,37,37 +48607,TBX910 - Lemle & Wolff,Multifamily Finance Program,06/26/2014,01/20/2017,80080,1175,GERARD AVENUE,Bronx,10452,2024880036,2003002,BX-04,16,197,BX63,40.834706,-73.920721,40.8347,-73.921058,01/08/2016,Preservation,No,Non Prevailing Wage,0,0,42,0,0,1,0,30,7,6,0,0,0,0,43,0,43,43 +48607,TBX910 - Lemle & Wolff,Multifamily Finance Program,06/26/2014,01/20/2017,87863,760,HUNTS POINT AVENUE,Bronx,10474,2027630195,2006549,BX-02,17,117,BX27,40.815899,-73.887239,40.81617,-73.887141,01/20/2017,Preservation,No,Non Prevailing Wage,0,0,48,0,0,1,1,23,13,12,0,0,0,0,49,0,49,49 +48607,TBX910 - Lemle & Wolff,Multifamily Finance Program,06/26/2014,01/20/2017,92694,2292,LORING PLACE NORTH,Bronx,10468,2032250091,2014940,BX-07,14,255,BX30,40.861515,-73.908539,40.86131,-73.908358,05/27/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,1,0,0,1,0,8,0,0,0,9,0,9,9 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63048,445,EAST 140 STREET,Bronx,10454,2022850069,2000347,BX-01,8,39,BX39,40.809775,-73.92043,40.80993,-73.920249,,Preservation,No,Non Prevailing Wage,0,0,18,0,2,1,0,10,11,0,0,0,0,0,21,0,21,21 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63052,451,EAST 140 STREET,Bronx,10454,2022850067,2000346,BX-01,8,39,BX39,40.809718,-73.920296,40.80988,-73.92013,,Preservation,No,Non Prevailing Wage,0,0,17,0,3,0,0,10,10,0,0,0,0,0,20,0,20,20 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63053,455,EAST 140 STREET,Bronx,10454,2022850066,2000345,BX-01,8,39,BX39,40.809679,-73.920206,40.80983,-73.920011,,Preservation,No,Non Prevailing Wage,0,0,16,0,4,1,0,10,11,0,0,0,0,0,21,0,21,21 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63054,461,EAST 140 STREET,Bronx,10454,2022850064,2000344,BX-01,8,39,BX39,40.809624,-73.920072,40.80978,-73.919888,,Preservation,No,Non Prevailing Wage,0,0,8,0,12,0,0,10,10,0,0,0,0,0,20,0,20,20 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63055,465,EAST 140 STREET,Bronx,10454,2022850063,2000343,BX-01,8,39,BX39,40.809586,-73.919982,40.80973,-73.919769,,Preservation,No,Non Prevailing Wage,0,0,6,0,4,0,0,0,0,0,10,0,0,0,10,0,10,10 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63057,471,EAST 140 STREET,Bronx,10454,2022850061,2000342,BX-01,8,39,BX39,40.809528,-73.919848,40.80968,-73.919649,,Preservation,No,Non Prevailing Wage,0,0,10,0,0,1,0,0,1,0,10,0,0,0,11,0,11,11 +48679,NEP Round 1 Mott Haven,Multifamily Finance Program,06/26/2014,,63059,481,EAST 140 STREET,Bronx,10454,2022850058,2000340,BX-01,8,39,BX39,40.809435,-73.919624,40.80958,-73.919415,,Preservation,No,Non Prevailing Wage,0,0,7,0,3,1,0,0,1,0,10,0,0,0,11,0,11,11 +48787,1091 Bushwick Avenue HDFC,Multifamily Finance Program,06/26/2014,06/21/2018,215645,1089,BUSHWICK AVENUE,Brooklyn,11221,3033490003,3076548,BK-04,34,399,BK78,40.690255,-73.919451,40.69044,-73.919166,06/21/2018,Preservation,No,Non Prevailing Wage,0,16,0,0,0,0,2,14,0,0,0,0,0,0,1,15,16,16 +48906,CAMBA GARDENS 2. 560 WINTHROP,Multifamily Finance Program,06/26/2014,11/30/2016,948178,560,WINTHROP STREET,Brooklyn,11203,3048290005,3424559,BK-09,40,808,BK60,40.657646,-73.941519,40.65724,-73.940903,11/30/2016,New Construction,No,Prevailing Wage,182,0,110,0,0,1,175,28,62,28,0,0,0,0,293,0,293,293 +49172,UP. 316 East 162nd St.,Multifamily Finance Program,06/26/2014,12/13/2016,948177,316,EAST 162 STREET,Bronx,10451,2024210027,2129176,BX-04,17,173,BX14,40.826032,-73.916443,40.82576,-73.916382,12/13/2016,New Construction,No,Prevailing Wage,86,0,0,0,0,0,86,0,0,0,0,0,0,0,86,0,86,86 +49908,546 West 44th Street,Multifamily Incentives Program,06/26/2014,07/14/2017,955006,546,WEST 44 STREET,Manhattan,10036,1010720050,1090461,MN-04,3,129,MN15,40.761619,-73.996199,40.7614,-73.996589,07/14/2017,New Construction,No,Non Prevailing Wage,0,0,62,0,0,0,23,26,13,0,0,0,0,0,62,0,62,280 +50088,810 River,Multifamily Finance Program,06/26/2014,06/18/2018,949394,810,RIVER AVENUE,Bronx,10451,2024837501,2129246,BX-04,8,63,BX63,40.826092,-73.926925,40.8262,-73.926538,06/18/2018,New Construction,No,Non Prevailing Wage,0,22,84,27,0,1,19,57,27,31,0,0,0,0,134,0,134,134 +50282,Selfhelp. 6469 Broadway. Van Courtlandt Green,Multifamily Finance Program,06/26/2014,04/20/2016,983486,6469,BROADWAY,Bronx,10471,2058517501,2084826,BX-08,11,345,BX22,40.904171,-73.896408,40.90397,-73.896745,04/20/2016,New Construction,No,Non Prevailing Wage,0,8,77,0,0,1,85,1,0,0,0,0,0,0,86,0,86,86 +50408,333 E 209TH STREET,Multifamily Finance Program,06/26/2014,02/29/2016,67516,333,EAST 209 STREET,Bronx,10467,2033520001,2018488,BX-07,11,42902,BX43,40.876725,-73.874278,40.87682,-73.874093,02/29/2016,Preservation,No,Non Prevailing Wage,0,42,0,0,0,1,0,36,6,1,0,0,0,0,0,43,43,43 +50497,655 Morris Avenue,Multifamily Finance Program,06/26/2014,12/01/2016,806842,635,MORRIS AVENUE,Bronx,10451,2024410001,2002441,BX-01,17,65,BX34,40.819177,-73.921958,40.81948,-73.922741,12/01/2016,New Construction,No,Non Prevailing Wage,0,0,153,22,0,1,9,77,82,8,0,0,0,0,176,0,176,176 +50583,SECOND ATLANTIC TERMINAL HOUSING CORPORATION,Multifamily Finance Program,06/26/2014,06/29/2017,217149,475,CARLTON AVENUE,Brooklyn,11238,3020070014,3321981,BK-02,35,179,BK68,40.683478,-73.970918,40.684,-73.970445,06/29/2017,Preservation,No,Non Prevailing Wage,0,0,305,0,0,0,0,0,305,0,0,0,0,0,0,305,305,305 +50609,1095 Bushwick Ave HDFC,Multifamily Finance Program,06/26/2014,,215649,1095,BUSHWICK AVENUE,Brooklyn,11221,3033490001,3076547,BK-04,34,399,BK78,40.690172,-73.91931,40.69037,-73.919047,,Preservation,No,Non Prevailing Wage,0,7,6,1,0,1,0,9,4,0,2,0,0,0,5,10,15,15 +51104,456 Washington Street,Multifamily Incentives Program,06/26/2014,10/07/2016,956094,460,WASHINGTON STREET,Manhattan,10013,1005957509,1080177,MN-01,1,39,MN24,40.724414,-74.010192,40.72446,-74.010654,10/07/2016,New Construction,No,Non Prevailing Wage,0,0,22,0,0,0,5,6,11,0,0,0,0,0,22,0,22,107 +51252,Mount Sharon HDFC,Multifamily Finance Program,06/26/2014,05/13/2016,46525,3058,BAILEY AVENUE,Bronx,10463,2032610015,2015921,BX-08,14,277,BX28,40.877375,-73.902948,40.87742,-73.902572,05/13/2016,Preservation,No,Non Prevailing Wage,0,0,8,0,0,1,0,0,9,0,0,0,0,0,9,0,9,9 +51252,Mount Sharon HDFC,Multifamily Finance Program,06/26/2014,05/13/2016,46526,3060,BAILEY AVENUE,Bronx,10463,2032610017,2015922,BX-08,14,277,BX28,40.8774,-73.90293,40.8775,-73.902492,05/13/2016,Preservation,No,Non Prevailing Wage,0,3,6,0,0,0,0,0,3,6,0,0,0,0,9,0,9,9 +51252,Mount Sharon HDFC,Multifamily Finance Program,06/26/2014,05/13/2016,116663,2432,UNIVERSITY AVENUE,Bronx,10468,2032130014,2014629,BX-07,14,263,BX30,40.863593,-73.904393,40.86377,-73.903731,05/13/2016,Preservation,No,Non Prevailing Wage,0,0,45,0,0,1,0,27,8,11,0,0,0,0,46,0,46,46 +51252,Mount Sharon HDFC,Multifamily Finance Program,06/26/2014,05/13/2016,119119,2085,WALTON AVENUE,Bronx,10453,2031790047,2013964,BX-05,14,241,BX41,40.854223,-73.90578,40.85464,-73.905725,05/13/2016,Preservation,No,Non Prevailing Wage,0,3,38,0,0,1,0,12,17,13,0,0,0,0,42,0,42,42 +51607,261 Hudson Street,Multifamily Incentives Program,06/26/2014,08/29/2017,953385,261,HUDSON STREET,Manhattan,10013,1005947511,1090602,MN-02,3,37,MN24,40.724919,-74.007732,40.72516,-74.008074,08/29/2017,New Construction,No,Non Prevailing Wage,0,0,41,0,0,0,16,16,9,0,0,0,0,0,41,0,41,201 +52411,Twin Parks S.W.,Multifamily Incentives Program,06/26/2014,06/30/2014,955452,2010,VALENTINE AVENUE,Bronx,10457,2031420001,2013284,BX-05,15,379,BX41,40.850599,-73.900576,40.85051,-73.899962,06/30/2014,Preservation,Yes,Non Prevailing Wage,0,0,536,0,0,0,24,127,155,182,48,0,0,0,536,0,536,536 +55506,Cadman Tower,Multifamily Finance Program,06/26/2014,06/26/2014,221260,79,CLARK STREET,Brooklyn,11201,3002320001,3001727,BK-02,33,1,BK09,40.697436,-73.992881,40.69761,-73.992171,06/26/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,422,0,0,0,0,0,0,0,0,422,0,422,422,422 +55699,CONFIDENTIAL,Homeowner Assistance Program,06/26/2014,06/26/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,06/26/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55723,CONFIDENTIAL,Homeowner Assistance Program,06/26/2014,06/26/2014,,----,----,Bronx,,,,BX-08,11,,,,,,,06/26/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55783,CONFIDENTIAL,Homeowner Assistance Program,06/26/2014,06/26/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,06/26/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50359,FS Development,Multifamily Finance Program,06/25/2014,06/25/2014,3581,2394,ADAM C POWELL BOULEVARD,Manhattan,10030,1020250034,1060372,MN-10,9,230,MN03,40.818324,-73.941511,40.81844,-73.941919,06/25/2014,Preservation,Yes,Non Prevailing Wage,0,0,41,0,10,0,4,0,12,12,23,0,0,0,51,0,51,51 +50359,FS Development,Multifamily Finance Program,06/25/2014,06/25/2014,41428,224,WEST 140 STREET,Manhattan,10030,1020250055,1060384,MN-10,9,230,MN03,40.818871,-73.94236,40.81909,-73.943476,06/25/2014,Preservation,Yes,Non Prevailing Wage,0,0,10,0,8,0,0,0,18,0,0,0,0,0,18,0,18,18 +50359,FS Development,Multifamily Finance Program,06/25/2014,06/25/2014,41430,226,WEST 140 STREET,Manhattan,10030,1020250056,1060385,MN-10,9,230,MN03,40.818887,-73.9424,40.81914,-73.943599,06/25/2014,Preservation,Yes,Non Prevailing Wage,0,0,10,0,8,0,0,0,18,0,0,0,0,0,18,0,18,18 +50359,FS Development,Multifamily Finance Program,06/25/2014,06/25/2014,41432,228,WEST 140 STREET,Manhattan,10030,1020250058,1060386,MN-10,9,230,MN03,40.818907,-73.942439,40.8192,-73.943722,06/25/2014,Preservation,Yes,Non Prevailing Wage,0,0,11,0,7,0,0,0,18,0,0,0,0,0,18,0,18,18 +51590,226 West 113th Street HDFC,Multifamily Finance Program,06/25/2014,03/13/2017,38023,226,WEST 113 STREET,Manhattan,10026,1018280040,1055121,MN-10,9,216,MN11,40.801587,-73.95467,40.80143,-73.954865,03/13/2017,Preservation,No,Non Prevailing Wage,1,16,1,0,0,0,1,0,0,0,12,5,0,0,1,17,18,18 +52413,Harry Silver Apartments,Multifamily Incentives Program,06/25/2014,06/26/2014,955003,806,MIDWOOD STREET,Brooklyn,11203,3045900051,3323070,BK-09,41,880,BK60,40.661191,-73.933579,40.66085,-73.933053,06/26/2014,Preservation,Yes,Non Prevailing Wage,0,0,288,0,0,0,0,72,184,32,0,0,0,0,0,288,288,288 +55695,CONFIDENTIAL,Homeowner Assistance Program,06/25/2014,06/25/2014,,----,----,Brooklyn,,,,BK-05,37,,,,,,,06/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56332,CONFIDENTIAL,Homeowner Assistance Program,06/25/2014,06/25/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,06/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56691,CONFIDENTIAL,Homeowner Assistance Program,06/25/2014,06/25/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57194,CONFIDENTIAL,Homeowner Assistance Program,06/25/2014,06/25/2014,,----,----,Brooklyn,,,,BK-15,45,,,,,,,06/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57294,CONFIDENTIAL,Homeowner Assistance Program,06/25/2014,06/25/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,326470,1619,LINCOLN PLACE,Brooklyn,11233,3013870057,3037220,BK-08,41,359,BK61,40.669323,-73.923268,40.66948,-73.923059,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,5,1,0,0,0,0,6,0,0,0,0,0,6,0,6,6 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,330826,25,MADISON STREET,Brooklyn,11238,3019870071,3057109,BK-03,35,229,BK69,40.683888,-73.95788,40.68407,-73.958164,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,4,4,0,0,0,0,5,3,0,0,0,0,8,0,8,8 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,366365,354,SARATOGA AVENUE,Brooklyn,11233,3014520051,3039059,BK-16,41,303,BK79,40.673578,-73.916764,40.6736,-73.916947,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,12,0,0,0,0,0,12,0,0,0,0,0,12,0,12,12 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,376539,1719,STERLING PLACE,Brooklyn,11233,3014660067,3039390,BK-16,41,363,BK79,40.670982,-73.921713,40.67123,-73.921648,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,15,0,0,1,0,0,10,6,0,0,0,0,16,0,16,16 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,376543,1725,STERLING PLACE,Brooklyn,11233,3014660065,3039389,BK-16,41,363,BK79,40.670971,-73.921543,40.67122,-73.921496,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,16,0,0,0,0,6,4,6,0,0,0,0,16,0,16,16 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,376557,1752,STERLING PLACE,Brooklyn,11233,3014700029,3039434,BK-16,41,361,BK79,40.670908,-73.92066,40.67065,-73.92065,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,19,12,0,0,0,26,4,1,0,0,0,0,31,0,31,31 +48624,TBK902 - Shinda,Multifamily Finance Program,06/24/2014,04/01/2016,380356,163,SUYDAM STREET,Brooklyn,11221,3032080050,3072921,BK-04,34,423,BK78,40.699528,-73.926288,40.69957,-73.92658,04/01/2016,Preservation,No,Non Prevailing Wage,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,45438,946,ANDERSON AVENUE,Bronx,10452,2025040053,2003036,BX-04,8,189,BX26,40.830841,-73.928181,40.83073,-73.927964,05/17/2019,Preservation,No,Non Prevailing Wage,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,16,16,16 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,45594,1705,ANTHONY AVENUE,Bronx,10457,2028890018,2009331,BX-04,15,165,BX01,40.844242,-73.904251,40.84435,-73.90441,05/17/2019,Preservation,No,Non Prevailing Wage,0,21,0,0,0,0,0,0,21,0,0,0,0,0,0,21,21,21 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,56949,1680,CLAY AVENUE,Bronx,10457,2028890001,2009326,BX-04,15,165,BX01,40.843601,-73.904909,40.84354,-73.904707,05/17/2019,Preservation,No,Non Prevailing Wage,0,20,0,0,0,0,0,0,20,0,0,0,0,0,0,20,20,20 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,100202,934,OGDEN AVENUE,Bronx,10452,2025110025,2003178,BX-04,8,189,BX26,40.831287,-73.930298,40.83135,-73.929955,05/17/2019,Preservation,No,Non Prevailing Wage,0,16,0,0,0,0,0,0,16,0,0,0,0,0,0,16,16,16 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,112044,1087,SUMMIT AVENUE,Bronx,10452,2025260070,2003491,BX-04,16,193,BX26,40.835444,-73.928953,40.83546,-73.929195,05/17/2019,Preservation,No,Non Prevailing Wage,0,21,0,0,0,0,0,0,21,0,0,0,0,0,0,21,21,21 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,115544,1707,TOPPING AVENUE,Bronx,10457,2027910044,2007349,BX-04,15,22902,BX41,40.844395,-73.905801,40.84447,-73.906061,05/17/2019,Preservation,No,Non Prevailing Wage,0,32,0,0,0,0,0,0,32,0,0,0,0,0,0,32,32,32 +50278,Promesa Housing Development Fund Corporation,Multifamily Finance Program,06/24/2014,05/17/2019,120990,88,WEST 169 STREET,Bronx,10452,2025170030,2003310,BX-04,16,211,BX26,40.839481,-73.923083,40.83922,-73.92321,05/17/2019,Preservation,No,Non Prevailing Wage,0,13,0,0,0,0,0,0,13,0,0,0,0,0,0,13,13,13 +50390,St Barnabas Housing For The Elderly,Multifamily Incentives Program,06/24/2014,06/24/2014,66411,535,EAST 182 STREET,Bronx,10457,2030510001,2095365,BX-06,15,385,BX01,40.853111,-73.89279,40.85319,-73.892504,06/24/2014,Preservation,Yes,Non Prevailing Wage,0,0,90,0,0,1,27,64,0,0,0,0,0,0,91,0,91,91 +50580,180 Saint Nicholas Avenue HDFC,Multifamily Finance Program,06/24/2014,10/25/2017,28059,180,ST NICHOLAS AVENUE,Manhattan,10026,1019250013,1058445,MN-10,9,220,MN11,40.805904,-73.9528,40.80589,-73.952467,10/25/2017,Preservation,No,Non Prevailing Wage,0,0,21,0,0,0,0,0,0,21,0,0,0,0,0,21,21,21 +55912,CONFIDENTIAL,Homeowner Assistance Program,06/24/2014,06/24/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/24/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50371,Hill House,Multifamily Finance Program,06/23/2014,06/23/2014,879125,1616,GRAND AVENUE,Bronx,10453,2028650162,2101324,BX-05,14,217,BX36,40.846604,-73.916135,40.8464,-73.91589,06/23/2014,Preservation,Yes,Non Prevailing Wage,42,1,0,0,0,1,43,1,0,0,0,0,0,0,44,0,44,44 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,38344,235,WEST 116 STREET,Manhattan,10026,1019220013,1058372,MN-10,9,218,MN11,40.80386,-73.954018,40.80419,-73.954087,08/16/2016,Preservation,No,Non Prevailing Wage,0,10,0,0,6,0,0,0,11,5,0,0,0,0,16,0,16,16 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,38995,229,WEST 121 STREET,Manhattan,10027,1019270015,1058502,MN-10,9,220,MN11,40.806845,-73.951202,40.80723,-73.95156,06/01/2016,Preservation,No,Non Prevailing Wage,0,0,0,0,20,1,5,6,10,0,0,0,0,0,21,0,21,21 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,40547,119,WEST 133RD STREET,Manhattan,10030,1019180023,1058224,MN-10,9,226,MN03,40.813266,-73.942856,40.81337,-73.942563,06/22/2016,Preservation,No,Non Prevailing Wage,0,3,6,0,0,1,5,4,1,0,0,0,0,0,10,0,10,10 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,40553,125,WEST 133 STREET,Manhattan,10030,1019180020,1058222,MN-10,9,226,MN03,40.81331,-73.942957,40.81346,-73.942769,12/08/2016,Preservation,No,Non Prevailing Wage,0,11,9,0,0,1,0,2,14,5,0,0,0,0,21,0,21,21 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,40557,132,WEST 133 STREET,Manhattan,10030,1019170045,1058176,MN-10,9,226,MN03,40.813357,-73.94312,40.8131,-73.943091,12/14/2016,Preservation,No,Non Prevailing Wage,0,4,6,0,0,1,1,1,9,0,0,0,0,0,11,0,11,11 +48128,"Harlem Cluster-Artimus Construction, Inc.",Multifamily Finance Program,06/19/2014,12/14/2016,41096,63,WEST 137TH ST,Manhattan,10037,1017350008,1053903,MN-10,9,212,MN03,40.81484,-73.938548,40.81526,-73.938982,06/16/2016,Preservation,No,Non Prevailing Wage,0,0,0,20,0,1,2,8,11,0,0,0,0,0,21,0,21,21 +48767,HRP 133-134,Multifamily Finance Program,06/19/2014,06/19/2014,40676,502,WEST 134 STREET,Manhattan,10031,1019870037,1085358,MN-09,7,219,MN06,40.818343,-73.953004,40.81829,-73.953477,06/19/2014,Preservation,Yes,Non Prevailing Wage,0,0,30,0,0,0,1,0,23,6,0,0,0,0,30,0,30,30 +48767,HRP 133-134,Multifamily Finance Program,06/19/2014,06/19/2014,844218,503,WEST 133 STREET,Manhattan,10027,1019870024,1085357,MN-09,7,219,MN06,40.817836,-73.953738,40.81807,-73.953716,06/19/2014,Preservation,Yes,Non Prevailing Wage,0,0,41,0,0,0,0,2,27,12,0,0,0,0,41,0,41,41 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,300660,438,EUCLID AVENUE,Brooklyn,11208,3042130016,3342871,BK-05,42,1196,BK82,40.676441,-73.872182,40.67631,-73.872391,12/24/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,354367,2709,PITKIN AVENUE,Brooklyn,11208,3042130001,3342869,BK-05,42,1196,BK82,40.675374,-73.872191,40.67574,-73.8724,12/29/2015,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810091,63,DOSCHER STREET,Brooklyn,11208,3042130001,3342507,BK-05,42,1196,BK82,40.67586,-73.8728,40.67574,-73.8724,12/22/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810092,65,DOSCHER STREET,Brooklyn,11208,3042130001,3342860,BK-05,42,1196,BK82,40.675814,-73.872789,40.67574,-73.8724,12/22/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810093,67,DOSCHER STREET,Brooklyn,11208,3042130001,3342861,BK-05,42,1196,BK82,40.675767,-73.872778,40.67574,-73.8724,12/30/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810094,69,DOSCHER STREET,Brooklyn,11208,3042130001,3342862,BK-05,42,1196,BK82,40.67572,-73.872764,40.67574,-73.8724,12/22/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810095,71,DOSCHER STREET,Brooklyn,11208,3042130001,3342863,BK-05,42,1196,BK82,40.675673,-73.872753,40.67574,-73.8724,12/22/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810096,73,DOSCHER STREET,Brooklyn,11208,3042130001,3342864,BK-05,42,1196,BK82,40.675627,-73.872742,40.67574,-73.8724,12/23/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810098,440,EUCLID AVENUE,Brooklyn,11208,3042130016,3342872,BK-05,42,1196,BK82,40.676403,-73.872171,40.67631,-73.872391,12/24/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810099,442,EUCLID AVENUE,Brooklyn,11208,3042130016,3342873,BK-05,42,1196,BK82,40.676365,-73.872164,40.67631,-73.872391,12/24/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810100,444,EUCLID AVENUE,Brooklyn,11208,3042130001,3342874,BK-05,42,1196,BK82,40.676326,-73.872153,40.67574,-73.8724,12/24/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810101,446,EUCLID AVENUE,Brooklyn,11208,3042130016,3342875,BK-05,42,1196,BK82,40.676288,-73.872143,40.67631,-73.872391,12/24/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810102,448,EUCLID AVENUE,Brooklyn,11208,3042130016,3342876,BK-05,42,1196,BK82,40.676249,-73.872135,40.67631,-73.872391,12/28/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810103,450,EUCLID AVENUE,Brooklyn,11208,3042130016,3342877,BK-05,42,1196,BK82,40.676208,-73.872125,40.67631,-73.872391,12/28/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810104,452,EUCLID AVENUE,Brooklyn,11208,3042130016,3342878,BK-05,42,1196,BK82,40.67617,-73.872114,40.67631,-73.872391,12/28/2015,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810105,2703,PITKIN AVENUE,Brooklyn,11208,3042130001,3342866,BK-05,42,1196,BK82,40.675352,-73.872346,40.67574,-73.8724,12/28/2015,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810106,2705,PITKIN AVENUE,Brooklyn,11208,3042130001,3342867,BK-05,42,1196,BK82,40.675357,-73.872296,40.67574,-73.8724,12/29/2015,Preservation,No,Non Prevailing Wage,0,2,1,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810107,2707,PITKIN AVENUE,Brooklyn,11208,3042130001,3342868,BK-05,42,1196,BK82,40.675366,-73.872242,40.67574,-73.8724,12/28/2015,Preservation,No,Non Prevailing Wage,0,1,1,0,0,1,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810108,2711,PITKIN AVENUE,Brooklyn,11208,3042130001,3342870,BK-05,42,1196,BK82,40.675382,-73.872137,40.67574,-73.8724,12/29/2015,Preservation,No,Non Prevailing Wage,0,1,2,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50207,MHANY East NY Partnership,Multifamily Finance Program,06/19/2014,01/20/2016,810109,2713,PITKIN AVENUE,Brooklyn,11208,3042130001,3342865,BK-05,42,1196,BK82,40.675387,-73.872083,40.67574,-73.8724,01/20/2016,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,2,0,0,0,2,0,2,2 +50258,New Walton,Multifamily Finance Program,06/19/2014,10/26/2015,119146,2240,WALTON AVENUE,Bronx,10453,2031820004,2088408,BX-05,14,239,BX40,40.857378,-73.903386,40.85724,-73.903166,10/26/2015,Preservation,No,Non Prevailing Wage,0,0,31,0,0,0,0,6,13,12,0,0,0,0,31,0,31,31 +50258,New Walton,Multifamily Finance Program,06/19/2014,10/26/2015,119162,2270,WALTON AVENUE,Bronx,10453,2031820019,2099975,BX-05,14,239,BX40,40.857841,-73.903103,40.85793,-73.902749,10/26/2015,Preservation,No,Non Prevailing Wage,0,0,54,0,0,0,0,4,22,28,0,0,0,0,54,0,54,54 +50352,Burnside Associates,Multifamily Finance Program,06/19/2014,04/17/2018,60498,2324,DAVIDSON AVENUE,Bronx,10468,2031980050,2014264,BX-07,14,239,BX40,40.859681,-73.904257,40.85947,-73.904182,04/17/2018,Preservation,No,Non Prevailing Wage,0,0,12,5,0,0,0,0,6,11,0,0,0,0,17,0,17,17 +50352,Burnside Associates,Multifamily Finance Program,06/19/2014,04/17/2018,77186,54,EVELYN PLACE,Bronx,10468,2032090009,2014537,BX-07,14,253,BX30,40.859814,-73.905851,40.85955,-73.905772,04/17/2018,Preservation,No,Non Prevailing Wage,0,0,54,11,0,0,0,47,13,5,0,0,0,0,65,0,65,65 +50352,Burnside Associates,Multifamily Finance Program,06/19/2014,04/17/2018,97550,2314,MORRIS AVENUE,Bronx,10468,2031720008,2013884,BX-05,14,23703,BX40,40.858631,-73.90158,40.85859,-73.901277,04/17/2018,Preservation,No,Non Prevailing Wage,0,0,29,8,0,0,0,30,2,5,0,0,0,0,37,0,37,37 +57027,CONFIDENTIAL,Homeowner Assistance Program,06/19/2014,06/19/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,06/19/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,183277,1494,DEAN STREET,Brooklyn,11213,3013460009,3035759,BK-08,36,311,BK61,40.676254,-73.938557,40.67613,-73.9385,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,1,1,1,2,0,0,0,0,5,0,5,5 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,205660,1435,BEDFORD AVENUE,Brooklyn,11216,3012320007,3031170,BK-08,36,221,BK61,40.674088,-73.953827,40.67405,-73.953542,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,1,1,1,2,0,0,0,0,5,0,5,5 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,211306,294,BRADFORD STREET,Brooklyn,11207,3037410030,3083954,BK-05,37,1152,BK82,40.671911,-73.891996,40.67189,-73.892277,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,219540,497,CHESTER STREET,Brooklyn,11212,3036140032,3082621,BK-16,42,916,BK81,40.65911,-73.908996,40.65913,-73.908834,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,0,6,0,0,0,0,6,0,6,6 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,219546,510,CHESTER STREET,Brooklyn,11212,3036130038,3082595,BK-16,42,916,BK81,40.658882,-73.908961,40.65888,-73.909245,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,0,0,1,5,0,0,0,0,6,0,6,6 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,219551,519,CHESTER STREET,Brooklyn,11212,3036140026,3082617,BK-16,42,916,BK81,40.658701,-73.908893,40.65877,-73.908629,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,1,1,0,0,0,0,2,0,2,2 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,219567,546,CHESTER STREET,Brooklyn,11212,3036130053,3082603,BK-16,42,916,BK81,40.658215,-73.908789,40.6581,-73.90898,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,2,0,0,0,0,0,2,0,2,2 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,221738,644,CLASSON AVENUE,Brooklyn,11238,3011410049,3027995,BK-08,35,305,BK61,40.677869,-73.959005,40.67791,-73.959293,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,1,0,0,1,0,0,0,0,2,0,2,2 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,221746,655,CLASSON AVENUE,Brooklyn,11238,3011420006,3028013,BK-08,35,305,BK61,40.677963,-73.958951,40.67789,-73.958695,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,5,0,0,0,0,2,1,2,0,0,0,0,5,0,5,5 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,309559,514,HEGEMAN AVENUE,Brooklyn,11207,3043210009,3097256,BK-05,42,1104,BK82,40.659521,-73.892578,40.65933,-73.892449,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,2,0,1,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,309562,519,HEGEMAN AVENUE,Brooklyn,11207,3042980048,3096416,BK-05,42,1128,BK85,40.659686,-73.892243,40.65986,-73.892416,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,2,0,1,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,349855,1892,PACIFIC STREET,Brooklyn,11233,3013440104,3035731,BK-08,41,307,BK61,40.676251,-73.924255,40.676,-73.924,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,2,0,1,1,0,0,0,4,0,4,4 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,349884,1920,PACIFIC STREET,Brooklyn,11233,3013440118,3035739,BK-08,41,307,BK61,40.67619,-73.923123,40.67594,-73.9229,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,349890,1932,PACIFIC STREET,Brooklyn,11233,3013440124,3035745,BK-08,41,307,BK61,40.676174,-73.922839,40.67592,-73.92241,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,354114,2156,PITKIN AVENUE,Brooklyn,11207,3037410017,3083944,BK-05,37,1152,BK82,40.672326,-73.892893,40.6721,-73.892771,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,3,0,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,357152,451,PROSPECT PLACE,Brooklyn,11238,3011550077,3028649,BK-08,35,305,BK61,40.676097,-73.961353,40.67635,-73.961306,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,9,0,0,0,2,0,0,7,0,0,0,0,9,0,9,9 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,363912,60,ROGERS AVENUE,Brooklyn,11216,3012250020,3030928,BK-08,36,221,BK61,40.674754,-73.952835,40.67479,-73.953083,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,2,0,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,363970,74,ROGERS AVENUE,Brooklyn,11216,3012320021,3031176,BK-08,36,221,BK61,40.674145,-73.952893,40.67413,-73.953188,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,0,0,1,0,0,0,2,0,2,2 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,369344,735,SHEFFIELD AVENUE,Brooklyn,11207,3043220054,3097298,BK-05,42,1104,BK82,40.659194,-73.892165,40.65921,-73.891876,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,1,1,1,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,398640,285,WYONA STREET,Brooklyn,11207,3037410013,3083940,BK-05,37,1152,BK82,40.671829,-73.892894,40.67184,-73.892631,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50248,MHANY 2,Multifamily Finance Program,06/18/2014,11/21/2019,398650,307,WYONA STREET,Brooklyn,11207,3037410004,3083932,BK-05,37,1152,BK82,40.671423,-73.892794,40.67135,-73.892509,11/21/2019,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,1,2,0,0,0,0,3,0,3,3 +50330,626 First Avenue,Multifamily Incentives Program,06/18/2014,07/03/2018,951712,626,1 AVENUE,Manhattan,10016,1009670001,,MN-06,4,8601,MN19,40.744898,-73.972688,40.74445,-73.971941,07/03/2018,New Construction,No,Non Prevailing Wage,0,0,160,0,0,0,43,66,41,10,0,0,0,0,160,0,160,761 +50353,Webster Ryer (aka Mid-Webster Renewal),Multifamily Finance Program,06/18/2014,02/19/2016,107804,2380,RYER AVENUE,Bronx,10458,2031520003,2013578,BX-05,15,23702,BX05,40.859415,-73.898029,40.85933,-73.897819,02/19/2016,Preservation,No,Non Prevailing Wage,0,0,36,0,0,0,0,19,17,0,0,0,0,0,36,0,36,36 +50353,Webster Ryer (aka Mid-Webster Renewal),Multifamily Finance Program,06/18/2014,02/19/2016,120575,2093,WEBSTER AVENUE,Bronx,10457,2031430124,2013313,BX-05,15,379,BX41,40.852254,-73.898152,40.85246,-73.898401,02/19/2016,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,5,3,0,0,0,0,8,0,8,8 +50353,Webster Ryer (aka Mid-Webster Renewal),Multifamily Finance Program,06/18/2014,02/19/2016,120621,2372,WEBSTER AVENUE,Bronx,10458,2030310033,2011193,BX-06,15,38302,BX40,40.85802,-73.894427,40.85791,-73.894123,02/19/2016,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,5,3,0,0,0,0,8,0,8,8 +50353,Webster Ryer (aka Mid-Webster Renewal),Multifamily Finance Program,06/18/2014,02/19/2016,120629,2406,WEBSTER AVENUE,Bronx,10458,2030320002,2011215,BX-06,15,38302,BX40,40.858953,-73.893822,40.85885,-73.893511,02/19/2016,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,1,5,2,0,0,0,0,8,0,8,8 +50353,Webster Ryer (aka Mid-Webster Renewal),Multifamily Finance Program,06/18/2014,02/19/2016,844746,2382,WEBSTER AVENUE,Bronx,10458,2030310038,2011198,BX-06,15,38302,BX40,40.858193,-73.894315,40.85836,-73.893844,02/19/2016,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,0,5,3,0,0,0,0,8,0,8,8 +52429,CONFIDENTIAL,Homeowner Assistance Program,06/17/2014,12/15/2014,,----,----,Queens,,,,QN-05,30,,,,,,,12/15/2014,Preservation,No,Non Prevailing Wage,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +55736,CONFIDENTIAL,Homeowner Assistance Program,06/17/2014,06/17/2014,,----,----,Queens,,,,QN-12,27,,,,,,,06/17/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57437,CONFIDENTIAL,Homeowner Assistance Program,06/17/2014,06/17/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/17/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50360,Park & 196th Street,Multifamily Finance Program,06/16/2014,06/16/2014,67050,310,EAST 196 STREET,Bronx,10458,2032870062,2016628,BX-07,15,40502,BX05,40.866379,-73.889963,40.86615,-73.890108,06/16/2014,Preservation,Yes,Non Prevailing Wage,0,0,27,0,0,0,0,22,4,1,0,0,0,0,27,0,27,27 +50360,Park & 196th Street,Multifamily Finance Program,06/16/2014,06/16/2014,101343,4578,PARK AVENUE,Bronx,10458,2030390003,2011349,BX-06,15,385,BX01,40.856664,-73.893999,40.85652,-73.893591,06/16/2014,Preservation,Yes,Non Prevailing Wage,0,0,17,0,0,0,1,7,5,4,0,0,0,0,17,0,17,17 +56377,CONFIDENTIAL,Homeowner Assistance Program,06/16/2014,06/16/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,06/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,329481,93,LUQUER STREET,Brooklyn,11231,3003730046,3323276,BK-06,39,65,BK33,40.67789,-74.001089,40.67817,-74.001377,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,341859,60,NELSON STREET,Brooklyn,11231,3005260015,3008346,BK-06,38,59,BK33,40.677863,-74.003674,40.67763,-74.003612,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,2,1,1,2,0,0,0,0,6,0,6,6 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,341863,68,NELSON STREET,Brooklyn,11231,3005260020,3008350,BK-06,38,59,BK33,40.677822,-74.003526,40.67753,-74.003241,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,341864,70,NELSON STREET,Brooklyn,11231,3005260020,3008351,BK-06,38,59,BK33,40.677811,-74.003486,40.67753,-74.003241,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,387264,91,VERONA STREET,Brooklyn,11231,3005300010,3008383,BK-06,38,59,BK33,40.679663,-74.009338,40.67957,-74.009623,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,6,0,0,0,2,2,2,0,0,0,0,0,6,0,6,6 +50193,Nelson Luquer,Multifamily Finance Program,06/13/2014,08/13/2015,808774,95,LUQUER STREET,Brooklyn,11231,3003730046,3323275,BK-06,39,65,BK33,40.677882,-74.00106,40.67817,-74.001377,08/13/2015,Preservation,No,Non Prevailing Wage,0,0,8,0,0,0,0,8,0,0,0,0,0,0,8,0,8,8 +56573,CONFIDENTIAL,Homeowner Assistance Program,06/13/2014,06/13/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,06/13/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57036,CONFIDENTIAL,Homeowner Assistance Program,06/13/2014,06/13/2014,,----,----,Brooklyn,,,,BK-13,47,,,,,,,06/13/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56570,CONFIDENTIAL,Homeowner Assistance Program,06/12/2014,06/12/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,06/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50354,Ogden Ave.,Multifamily Finance Program,06/11/2014,06/11/2014,807085,156,WEST 164 STREET,Bronx,10452,2025240050,2097173,BX-04,8,189,BX26,40.833021,-73.929736,40.83292,-73.929837,06/11/2014,Preservation,Yes,Non Prevailing Wage,40,1,0,0,0,0,41,0,0,0,0,0,0,0,41,0,41,41 +52370,CONFIDENTIAL,Homeowner Assistance Program,06/11/2014,07/07/2014,,----,----,Queens,,,,QN-14,31,,,,,,,07/07/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +53254,Christopher Court,Multifamily Incentives Program,06/11/2014,06/11/2014,806839,599,MORRIS AVENUE,Bronx,10451,2024400001,2091242,BX-01,17,65,BX34,40.818491,-73.922269,40.81872,-73.923295,06/11/2014,Preservation,Yes,Non Prevailing Wage,0,160,0,0,0,0,0,32,86,42,0,0,0,0,160,0,160,160 +55976,CONFIDENTIAL,Homeowner Assistance Program,06/09/2014,06/09/2014,,----,----,Bronx,,,,BX-11,12,,,,,,,06/09/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56952,CONFIDENTIAL,Homeowner Assistance Program,06/09/2014,06/09/2014,,----,----,Queens,,,,QN-02,26,,,,,,,06/09/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57361,CONFIDENTIAL,Homeowner Assistance Program,06/06/2014,06/06/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/06/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50294,Margarita Santos Apartments HDFC,Multifamily Finance Program,06/05/2014,02/07/2017,87096,2147,HONEYWELL AVENUE,Bronx,10460,2031240066,2013169,BX-06,15,363,BX17,40.8462,-73.881405,40.8465,-73.881408,02/07/2017,Preservation,No,Non Prevailing Wage,0,6,25,0,0,0,0,1,24,6,0,0,0,0,31,0,31,31 +52507,CONFIDENTIAL,Homeowner Assistance Program,06/05/2014,06/05/2014,,----,----,Queens,,,,QN-13,31,,,,,,,06/05/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50416,Logan Plaza,Multifamily Incentives Program,06/04/2014,06/04/2014,5558,1423,AMSTERDAM AVENUE,Manhattan,10027,1019700002,1075479,MN-09,9,21303,MN06,40.815832,-73.954465,40.81586,-73.953858,06/04/2014,Preservation,Yes,Non Prevailing Wage,0,0,26,0,103,1,0,75,49,6,0,0,0,0,130,0,130,130 +57450,CONFIDENTIAL,Homeowner Assistance Program,06/04/2014,06/04/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,06/04/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50410,CAMBA. 331 Saratoga Ave. Bergen Saratoga,Multifamily Finance Program,06/03/2014,10/21/2016,980814,331,SARATOGA AVENUE,Brooklyn,11233,3014470001,3413938,BK-16,41,303,BK79,40.674495,-73.916658,40.67455,-73.916232,10/21/2016,New Construction,No,Non Prevailing Wage,40,16,23,0,0,1,40,13,27,0,0,0,0,0,80,0,80,80 +51249,2120 Mapes Avenue HDFC,Multifamily Finance Program,05/30/2014,06/13/2017,94237,2120,MAPES AVENUE,Bronx,10460,2031110004,2012994,BX-06,15,36501,BX17,40.847123,-73.885094,40.84701,-73.884855,06/13/2017,Preservation,No,Non Prevailing Wage,0,28,0,0,0,1,0,9,14,6,0,0,0,0,0,29,29,29 +51534,CONFIDENTIAL,Homeowner Assistance Program,05/30/2014,07/07/2014,,----,----,Brooklyn,,,,BK-14,40,,,,,,,07/07/2014,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52401,CONFIDENTIAL,Homeowner Assistance Program,05/30/2014,05/30/2014,,----,----,Brooklyn,,,,BK-03,36,,,,,,,05/30/2014,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +55732,CONFIDENTIAL,Homeowner Assistance Program,05/30/2014,05/30/2014,,----,----,Queens,,,,QN-13,27,,,,,,,05/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56397,CONFIDENTIAL,Homeowner Assistance Program,05/29/2014,05/29/2014,,----,----,Brooklyn,,,,BK-08,36,,,,,,,05/29/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57320,CONFIDENTIAL,Homeowner Assistance Program,05/29/2014,05/29/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/29/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57364,CONFIDENTIAL,Homeowner Assistance Program,05/29/2014,05/29/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/29/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50192,1790 Clinton Avenue,Multifamily Finance Program,05/28/2014,05/28/2014,57041,1790,CLINTON AVENUE,Bronx,10457,2029480058,2009945,BX-06,17,36902,BX17,40.841938,-73.892848,40.84173,-73.892877,05/28/2014,Preservation,Yes,Non Prevailing Wage,16,0,11,0,0,0,27,0,0,0,0,0,0,0,27,0,27,27 +56141,CONFIDENTIAL,Homeowner Assistance Program,05/28/2014,05/28/2014,,----,----,Brooklyn,,,,BK-16,41,,,,,,,05/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56745,CONFIDENTIAL,Homeowner Assistance Program,05/28/2014,05/28/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,05/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56572,CONFIDENTIAL,Homeowner Assistance Program,05/22/2014,05/22/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,05/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55701,CONFIDENTIAL,Homeowner Assistance Program,05/21/2014,05/21/2014,,----,----,Brooklyn,,,,BK-05,37,,,,,,,05/21/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55980,CONFIDENTIAL,Homeowner Assistance Program,05/21/2014,05/21/2014,,----,----,Bronx,,,,BX-10,13,,,,,,,05/21/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55702,CONFIDENTIAL,Homeowner Assistance Program,05/20/2014,05/20/2014,,----,----,Brooklyn,,,,BK-01,33,,,,,,,05/20/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +65135,3825 AND 3827 THIRD AVENUE,Multifamily Incentives Program,05/19/2014,06/14/2017,951776,3827,3 AVENUE,Bronx,10457,2029120025,2128565,BX-03,16,169,BX01,40.837924,-73.901398,40.83811,-73.90161,06/14/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,4 +65135,3825 AND 3827 THIRD AVENUE,Multifamily Incentives Program,05/19/2014,06/14/2017,951780,3825,3 AVENUE,Bronx,10457,2029120026,2128564,BX-03,16,169,BX01,40.837902,-73.901416,40.83806,-73.90165,06/14/2017,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,1,4 +56319,CONFIDENTIAL,Homeowner Assistance Program,05/16/2014,05/16/2014,,----,----,Brooklyn,,,,BK-08,36,,,,,,,05/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56971,CONFIDENTIAL,Homeowner Assistance Program,05/16/2014,05/16/2014,,----,----,Brooklyn,,,,BK-12,44,,,,,,,05/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55735,CONFIDENTIAL,Homeowner Assistance Program,05/15/2014,05/15/2014,,----,----,Queens,,,,QN-12,27,,,,,,,05/15/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55500,Carnegie Park,Multifamily Finance Program,05/14/2014,11/12/2015,1869,200,200 EAST 94 STREET,Manhattan,,,,MN-08,5,,,,,,,11/12/2015,Preservation,No,Non Prevailing Wage,0,0,92,0,0,0,0,0,0,0,0,0,0,92,92,0,92,92 +55762,CONFIDENTIAL,Homeowner Assistance Program,05/13/2014,05/13/2014,,----,----,Staten Island,,,,SI-02,51,,,,,,,05/13/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55772,CONFIDENTIAL,Homeowner Assistance Program,05/13/2014,05/13/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,05/13/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56249,CONFIDENTIAL,Homeowner Assistance Program,05/12/2014,05/12/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,05/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56398,CONFIDENTIAL,Homeowner Assistance Program,05/12/2014,05/12/2014,,----,----,Brooklyn,,,,BK-08,36,,,,,,,05/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56571,CONFIDENTIAL,Homeowner Assistance Program,05/12/2014,05/12/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,05/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57345,CONFIDENTIAL,Homeowner Assistance Program,05/12/2014,05/12/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,05/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58514,CABS Senior Housing (20140198),Multifamily Incentives Program,05/09/2014,07/14/2016,230298,590,DEKALB AVENUE,Brooklyn,11205,3017780049,3049616,BK-03,36,241,BK75,40.691201,-73.952812,40.69086,-73.952903,07/14/2016,Preservation,No,Non Prevailing Wage,0,0,110,0,0,1,55,55,1,0,0,0,0,0,111,0,111,111 +57233,CONFIDENTIAL,Homeowner Assistance Program,05/08/2014,05/08/2014,,----,----,Queens,,,,QN-06,29,,,,,,,05/08/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52224,Fairmont Place HDFC,Multifamily Incentives Program,05/07/2014,05/07/2014,77578,793,FAIRMOUNT PLACE,Bronx,10460,2029550044,2010050,BX-06,17,36502,BX17,40.842766,-73.889149,40.8427,-73.888553,05/07/2014,Preservation,Yes,Non Prevailing Wage,0,0,0,26,0,0,9,14,3,0,0,0,0,0,26,0,26,26 +52286,CONFIDENTIAL,Homeowner Assistance Program,05/05/2014,05/16/2014,,----,----,Queens,,,,QN-12,27,,,,,,,05/16/2014,Preservation,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56625,CONFIDENTIAL,Homeowner Assistance Program,05/05/2014,05/05/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,05/05/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52493,CONFIDENTIAL,Homeowner Assistance Program,05/02/2014,07/01/2014,,----,----,Queens,,,,QN-13,31,,,,,,,07/01/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56159,CONFIDENTIAL,Homeowner Assistance Program,05/02/2014,05/02/2014,,----,----,Queens,,,,QN-14,31,,,,,,,05/02/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57061,CONFIDENTIAL,Homeowner Assistance Program,04/30/2014,04/30/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,04/30/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55757,CONFIDENTIAL,Homeowner Assistance Program,04/28/2014,04/28/2014,,----,----,Queens,,,,QN-08,24,,,,,,,04/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55686,CONFIDENTIAL,Homeowner Assistance Program,04/25/2014,04/25/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,04/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57335,CONFIDENTIAL,Homeowner Assistance Program,04/25/2014,04/25/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,04/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55743,CONFIDENTIAL,Homeowner Assistance Program,04/24/2014,04/24/2014,,----,----,Queens,,,,QN-10,28,,,,,,,04/24/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56402,CONFIDENTIAL,Homeowner Assistance Program,04/24/2014,04/24/2014,,----,----,Brooklyn,,,,BK-12,39,,,,,,,04/24/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55719,CONFIDENTIAL,Homeowner Assistance Program,04/22/2014,04/22/2014,,----,----,Bronx,,,,BX-08,14,,,,,,,04/22/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56247,CONFIDENTIAL,Homeowner Assistance Program,04/22/2014,04/22/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,04/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56993,CONFIDENTIAL,Homeowner Assistance Program,04/22/2014,04/22/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,04/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55989,CONFIDENTIAL,Homeowner Assistance Program,04/18/2014,04/18/2014,,----,----,Bronx,,,,BX-10,18,,,,,,,04/18/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56230,CONFIDENTIAL,Homeowner Assistance Program,04/18/2014,04/18/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,04/18/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56985,CONFIDENTIAL,Homeowner Assistance Program,04/16/2014,04/16/2014,,----,----,Bronx,,,,BX-08,11,,,,,,,04/16/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56233,CONFIDENTIAL,Homeowner Assistance Program,04/15/2014,04/15/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,04/15/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56155,CONFIDENTIAL,Homeowner Assistance Program,04/11/2014,04/11/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,04/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56236,CONFIDENTIAL,Homeowner Assistance Program,04/11/2014,04/11/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,04/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57319,CONFIDENTIAL,Homeowner Assistance Program,04/11/2014,04/11/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,04/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55691,CONFIDENTIAL,Homeowner Assistance Program,04/10/2014,04/10/2014,,----,----,Brooklyn,,,,BK-14,40,,,,,,,04/10/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55994,CONFIDENTIAL,Homeowner Assistance Program,04/10/2014,04/10/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,04/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56430,CONFIDENTIAL,Homeowner Assistance Program,04/10/2014,04/10/2014,,----,----,Queens,,,,QN-03,21,,,,,,,04/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52135,CONFIDENTIAL,Homeowner Assistance Program,04/08/2014,07/29/2014,,----,----,Brooklyn,,,,BK-16,42,,,,,,,07/29/2014,Preservation,No,Non Prevailing Wage,0,0,4,0,0,0,0,0,0,0,0,0,0,4,0,4,4,4 +52229,CONFIDENTIAL,Homeowner Assistance Program,04/08/2014,04/08/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,04/08/2014,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +56547,CONFIDENTIAL,Homeowner Assistance Program,04/08/2014,04/08/2014,,----,----,Queens,,,,QN-09,29,,,,,,,04/08/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52134,CONFIDENTIAL,Homeowner Assistance Program,04/03/2014,04/16/2014,,----,----,Queens,,,,QN-13,27,,,,,,,04/16/2014,Preservation,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55873,CONFIDENTIAL,Homeowner Assistance Program,04/03/2014,04/03/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,04/03/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57453,CONFIDENTIAL,Homeowner Assistance Program,04/03/2014,04/03/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/03/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55622,CONFIDENTIAL,Homeowner Assistance Program,04/02/2014,04/02/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,04/02/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +50252,El Borinquen II,Multifamily Finance Program,03/31/2014,03/31/2014,6628,143,AVENUE D,Manhattan,10009,1003790032,1004552,MN-03,2,28,MN28,40.724749,-73.975269,40.72483,-73.975499,03/31/2014,Preservation,Yes,Non Prevailing Wage,0,0,17,0,0,0,4,0,9,4,0,0,0,0,17,0,17,17 +50252,El Borinquen II,Multifamily Finance Program,03/31/2014,03/31/2014,11742,630,EAST 11 STREET,Manhattan,10009,1003930022,1004885,MN-03,2,28,MN28,40.726965,-73.978298,40.72673,-73.978306,03/31/2014,Preservation,Yes,Non Prevailing Wage,0,0,10,0,0,0,1,0,9,0,0,0,0,0,10,0,10,10 +52050,CONFIDENTIAL,Homeowner Assistance Program,03/31/2014,12/01/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,12/01/2014,Preservation,No,Non Prevailing Wage,0,0,0,4,0,0,0,0,0,0,0,0,0,4,0,4,4,4 +55708,CONFIDENTIAL,Homeowner Assistance Program,03/31/2014,03/31/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,03/31/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57427,CONFIDENTIAL,Homeowner Assistance Program,03/31/2014,03/31/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/31/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50473,The Bedford,Multifamily Incentives Program,03/28/2014,05/23/2019,952671,3160,WEBSTER AVENUE,Bronx,10467,2033577501,2128546,BX-07,11,425,BX43,40.872282,-73.87562,40.87239,-73.87502,05/23/2019,New Construction,No,Non Prevailing Wage,0,0,12,0,0,0,0,6,6,0,0,0,0,0,12,0,12,60 +56580,CONFIDENTIAL,Homeowner Assistance Program,03/28/2014,03/28/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,03/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57189,CONFIDENTIAL,Homeowner Assistance Program,03/28/2014,03/28/2014,,----,----,Brooklyn,,,,BK-14,48,,,,,,,03/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +51914,CONFIDENTIAL,Homeowner Assistance Program,03/21/2014,05/27/2014,,----,----,Queens,,,,QN-03,21,,,,,,,05/27/2014,Preservation,No,Non Prevailing Wage,0,0,3,0,0,0,0,0,0,3,0,0,0,0,0,3,3,3 +57472,CONFIDENTIAL,Homeowner Assistance Program,03/21/2014,03/21/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/21/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52102,CONFIDENTIAL,Homeowner Assistance Program,03/20/2014,03/22/2014,,----,----,Queens,,,,QN-13,27,,,,,,,03/22/2014,Preservation,No,Non Prevailing Wage,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +55970,CONFIDENTIAL,Homeowner Assistance Program,03/20/2014,03/20/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,03/20/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56368,CONFIDENTIAL,Homeowner Assistance Program,03/20/2014,03/20/2014,,----,----,Bronx,,,,BX-03,17,,,,,,,03/20/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52436,153 Manhattan Ave HDFC Extended Affordability,Multifamily Incentives Program,03/19/2014,03/19/2014,25197,153,MANHATTAN AVENUE,Manhattan,10025,1018430014,1055683,MN-07,7,193,MN09,40.799427,-73.960927,40.79956,-73.96118,03/19/2014,Preservation,Yes,Non Prevailing Wage,0,0,21,0,0,1,1,0,16,5,0,0,0,0,22,0,22,22 +52436,153 Manhattan Ave HDFC Extended Affordability,Multifamily Incentives Program,03/19/2014,03/19/2014,25198,157,MANHATTAN AVENUE,Manhattan,10025,1018430015,1055684,MN-07,7,193,MN09,40.79949,-73.96088,40.79966,-73.961108,03/19/2014,Preservation,Yes,Non Prevailing Wage,0,0,24,0,0,0,0,19,5,0,0,0,0,0,24,0,24,24 +52436,153 Manhattan Ave HDFC Extended Affordability,Multifamily Incentives Program,03/19/2014,03/19/2014,25199,161,MANHATTAN AVENUE,Manhattan,10025,1018430016,1055685,MN-07,7,193,MN09,40.799553,-73.960833,40.79975,-73.961039,03/19/2014,Preservation,Yes,Non Prevailing Wage,0,0,18,0,0,0,0,10,4,4,0,0,0,0,18,0,18,18 +55778,CONFIDENTIAL,Homeowner Assistance Program,03/14/2014,03/14/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,03/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +65123,THE STACK,Multifamily Incentives Program,03/14/2014,08/31/2015,935095,4857,BROADWAY,Manhattan,10034,1022380033,1089788,MN-12,10,295,MN01,40.866733,-73.923919,40.86695,-73.924338,08/31/2015,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,3,3,0,0,0,0,0,6,0,6,27 +51501,CONFIDENTIAL,Homeowner Assistance Program,03/13/2014,08/01/2014,,----,----,Bronx,,,,BX-08,11,,,,,,,08/01/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +48879,Vesta Steinway,Multifamily Finance Program,03/12/2014,01/31/2017,954108,19-73,38 STREET,Queens,11105,4008110001,4616405,QN-01,22,12301,QN72,40.777568,-73.901635,40.77708,-73.90156,01/31/2017,Preservation,No,Non Prevailing Wage,0,0,17,66,0,1,12,36,30,6,0,0,0,0,84,0,84,84 +57094,CONFIDENTIAL,Homeowner Assistance Program,03/12/2014,03/12/2014,,----,----,Queens,,,,QN-11,23,,,,,,,03/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52103,CONFIDENTIAL,Homeowner Assistance Program,03/11/2014,03/11/2014,,----,----,Brooklyn,,,,BK-03,36,,,,,,,03/11/2014,Preservation,No,Non Prevailing Wage,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +55859,CONFIDENTIAL,Homeowner Assistance Program,03/11/2014,03/11/2014,,----,----,Brooklyn,,,,BK-07,38,,,,,,,03/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56750,CONFIDENTIAL,Homeowner Assistance Program,03/11/2014,03/11/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,03/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55958,CONFIDENTIAL,Homeowner Assistance Program,03/10/2014,03/10/2014,,----,----,Bronx,,,,BX-10,13,,,,,,,03/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56144,CONFIDENTIAL,Homeowner Assistance Program,03/10/2014,03/10/2014,,----,----,Brooklyn,,,,BK-16,41,,,,,,,03/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56523,CONFIDENTIAL,Homeowner Assistance Program,03/10/2014,03/10/2014,,----,----,Brooklyn,,,,BK-17,41,,,,,,,03/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57306,CONFIDENTIAL,Homeowner Assistance Program,03/10/2014,03/10/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,03/10/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55809,CONFIDENTIAL,Homeowner Assistance Program,03/07/2014,03/07/2014,,----,----,Brooklyn,,,,BK-16,41,,,,,,,03/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56248,CONFIDENTIAL,Homeowner Assistance Program,03/07/2014,03/07/2014,,----,----,Brooklyn,,,,BK-03,41,,,,,,,03/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56980,CONFIDENTIAL,Homeowner Assistance Program,03/07/2014,03/07/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,03/07/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57458,CONFIDENTIAL,Homeowner Assistance Program,03/07/2014,03/07/2014,,----,----,Staten Island,,,,SI-02,51,,,,,,,03/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +44371,Navy Green (Building R2),Multifamily Finance Program,03/06/2014,03/25/2016,948016,8,VANDERBILT AVENUE,Brooklyn,11205,3020337502,3398205,BK-02,35,211,BK68,40.69746,-73.97071,40.69753,-73.970966,03/25/2016,New Construction,No,Non Prevailing Wage,0,0,0,67,7,1,0,47,21,7,0,0,0,0,0,75,75,99 +47962,TBX902 - Banana Kelly,Multifamily Finance Program,03/06/2014,12/11/2015,60640,753,DAWSON STREET,Bronx,10455,2026950040,2005336,BX-02,17,85,BX33,40.817376,-73.900098,40.81717,-73.900695,01/30/2015,Preservation,No,Prevailing Wage,0,1,10,0,0,0,0,0,1,10,0,0,0,0,11,0,11,11 +47962,TBX902 - Banana Kelly,Multifamily Finance Program,03/06/2014,12/11/2015,109771,914,SIMPSON STREET,Bronx,10459,2027230029,2005762,BX-02,17,89,BX27,40.820288,-73.893432,40.82013,-73.89323,12/11/2015,Preservation,No,Prevailing Wage,0,14,16,0,0,1,0,2,15,10,4,0,0,0,31,0,31,31 +55709,CONFIDENTIAL,Homeowner Assistance Program,03/06/2014,03/06/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,03/06/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55826,CONFIDENTIAL,Homeowner Assistance Program,03/06/2014,03/06/2014,,----,----,Queens,,,,QN-08,24,,,,,,,03/06/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55624,CONFIDENTIAL,Homeowner Assistance Program,03/03/2014,03/03/2014,,----,----,Staten Island,,,,SI-01,50,,,,,,,03/03/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55756,CONFIDENTIAL,Homeowner Assistance Program,02/28/2014,02/28/2014,,----,----,Queens,,,,QN-01,22,,,,,,,02/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55775,CONFIDENTIAL,Homeowner Assistance Program,02/28/2014,02/28/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,02/28/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56657,CONFIDENTIAL,Homeowner Assistance Program,02/28/2014,02/28/2014,,----,----,Brooklyn,,,,BK-15,46,,,,,,,02/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55715,CONFIDENTIAL,Homeowner Assistance Program,02/27/2014,02/27/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,02/27/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57456,CONFIDENTIAL,Homeowner Assistance Program,02/27/2014,02/27/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/27/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +49588,My Micro NY fka Adapt NYC/Micro Units,Multifamily Finance Program,02/26/2014,04/15/2016,949027,335,EAST 27 STREET,Manhattan,10016,1009337501,1084666,MN-06,2,66,MN20,40.739566,-73.977039,40.73985,-73.977417,04/15/2016,New Construction,No,Non Prevailing Wage,8,0,11,0,3,1,23,0,0,0,0,0,0,0,23,0,23,55 +55966,CONFIDENTIAL,Homeowner Assistance Program,02/26/2014,02/26/2014,,----,----,Bronx,,,,BX-09,17,,,,,,,02/26/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57095,CONFIDENTIAL,Homeowner Assistance Program,02/26/2014,02/26/2014,,----,----,Queens,,,,QN-11,23,,,,,,,02/26/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55621,CONFIDENTIAL,Homeowner Assistance Program,02/25/2014,02/25/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,02/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55767,CONFIDENTIAL,Homeowner Assistance Program,02/25/2014,02/25/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,02/25/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56018,CONFIDENTIAL,Homeowner Assistance Program,02/25/2014,02/25/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,02/25/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56740,CONFIDENTIAL,Homeowner Assistance Program,02/21/2014,02/21/2014,,----,----,Bronx,,,,BX-03,16,,,,,,,02/21/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55682,CONFIDENTIAL,Homeowner Assistance Program,02/20/2014,02/20/2014,,----,----,Brooklyn,,,,BK-17,45,,,,,,,02/20/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55995,CONFIDENTIAL,Homeowner Assistance Program,02/19/2014,02/19/2014,,----,----,Bronx,,,,BX-09,18,,,,,,,02/19/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57265,CONFIDENTIAL,Homeowner Assistance Program,02/18/2014,02/18/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,02/18/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +52285,CONFIDENTIAL,Homeowner Assistance Program,02/14/2014,05/16/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,05/16/2014,Preservation,No,Non Prevailing Wage,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56242,CONFIDENTIAL,Homeowner Assistance Program,02/13/2014,02/13/2014,,----,----,Brooklyn,,,,BK-16,42,,,,,,,02/13/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57298,CONFIDENTIAL,Homeowner Assistance Program,02/12/2014,02/12/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,02/12/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50392,Promenade Apartments,Multifamily Incentives Program,02/11/2014,02/11/2014,43765,150,WEST 225 STREET,Manhattan,10463,1022150042,1064521,MN-08,10,309,MN01,40.875121,-73.912461,40.87558,-73.913484,02/11/2014,Preservation,Yes,Non Prevailing Wage,0,0,95,0,222,0,0,126,127,64,0,0,0,0,317,0,317,317 +56082,CONFIDENTIAL,Homeowner Assistance Program,02/11/2014,02/11/2014,,----,----,Queens,,,,QN-06,29,,,,,,,02/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56094,CONFIDENTIAL,Homeowner Assistance Program,02/11/2014,02/11/2014,,----,----,Queens,,,,QN-03,21,,,,,,,02/11/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +58458,Concern Bergen (20126043),Multifamily Incentives Program,02/11/2014,06/19/2017,208382,1552,BERGEN STREET,Brooklyn,11213,3013540030,3425042,BK-08,36,309,BK61,40.675101,-73.931827,40.67481,-73.931604,06/19/2017,New Construction,No,Non Prevailing Wage,55,34,0,0,0,1,55,11,24,0,0,0,0,0,90,0,90,90 +56117,CONFIDENTIAL,Homeowner Assistance Program,02/10/2014,02/10/2014,,----,----,Queens,,,,QN-12,27,,,,,,,02/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56508,CONFIDENTIAL,Homeowner Assistance Program,02/07/2014,02/07/2014,,----,----,Bronx,,,,BX-11,13,,,,,,,02/07/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65121,57 AND 59 ORIENT AVENUE,Multifamily Incentives Program,02/07/2014,09/14/2017,950543,57,ORIENT AVENUE,Brooklyn,11211,3029070049,3070239,BK-01,34,477,BK90,40.715159,-73.939564,40.71541,-73.939459,09/14/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,8 +65121,57 AND 59 ORIENT AVENUE,Multifamily Incentives Program,02/07/2014,09/14/2017,953043,59,ORIENT AVENUE,Brooklyn,11211,3029070047,3070238,BK-01,34,477,BK90,40.71517,-73.939513,40.71544,-73.939358,09/14/2017,New Construction,No,Non Prevailing Wage,0,0,2,0,0,0,0,1,1,0,0,0,0,0,2,0,2,8 +44250,MERCY. 485 4TH AVE. MERCY HOME,Multifamily Finance Program,02/06/2014,,927161,487,4 AVENUE,Brooklyn,11215,3010280007,,BK-06,39,139,BK37,40.668453,-73.990289,40.66826,-73.990004,,New Construction,No,Non Prevailing Wage,8,0,0,0,0,0,8,0,0,0,0,0,0,0,8,0,8,8 +55679,CONFIDENTIAL,Homeowner Assistance Program,02/06/2014,02/06/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,02/06/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55680,CONFIDENTIAL,Homeowner Assistance Program,02/06/2014,02/06/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,02/06/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +56836,CONFIDENTIAL,Homeowner Assistance Program,02/06/2014,02/06/2014,,----,----,Brooklyn,,,,BK-15,48,,,,,,,02/06/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56876,CONFIDENTIAL,Homeowner Assistance Program,02/06/2014,02/06/2014,,----,----,Queens,,,,QN-12,28,,,,,,,02/06/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +65120,THE ROOSEVELT,Multifamily Incentives Program,02/04/2014,09/01/2016,940294,40-07,73 STREET,Queens,11377,4013057501,4030453,QN-04,25,265,QN50,40.746437,-73.892251,40.74653,-73.892005,09/01/2016,New Construction,No,Non Prevailing Wage,0,0,6,0,0,0,0,1,5,0,0,0,0,0,6,0,6,30 +56517,CONFIDENTIAL,Homeowner Assistance Program,01/31/2014,01/31/2014,,----,----,Queens,,,,QN-14,31,,,,,,,01/31/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55678,CONFIDENTIAL,Homeowner Assistance Program,01/30/2014,01/30/2014,,----,----,Brooklyn,,,,BK-05,42,,,,,,,01/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55685,CONFIDENTIAL,Homeowner Assistance Program,01/30/2014,01/30/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55771,CONFIDENTIAL,Homeowner Assistance Program,01/30/2014,01/30/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/30/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57403,CONFIDENTIAL,Homeowner Assistance Program,01/29/2014,01/29/2014,,----,----,Staten Island,,,,SI-03,50,,,,,,,01/29/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +44348,Crossroads Plaza- Rental Low,Multifamily Finance Program,01/28/2014,04/12/2017,950310,501,SOUTHERN BOULEVARD,Bronx,10455,2025827502,2128607,BX-01,8,31,BX39,40.811296,-73.9054,40.8117,-73.905338,04/12/2017,New Construction,No,Non Prevailing Wage,0,28,107,0,0,1,0,7,83,46,0,0,0,0,136,0,136,136 +52947,CONFIDENTIAL,Homeowner Assistance Program,01/28/2014,01/28/2014,,----,----,Queens,,,,QN-12,28,,,,,,,01/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,1 +56951,CONFIDENTIAL,Homeowner Assistance Program,01/28/2014,01/28/2014,,----,----,Queens,,,,QN-04,21,,,,,,,01/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57270,CONFIDENTIAL,Homeowner Assistance Program,01/28/2014,01/28/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/28/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57281,CONFIDENTIAL,Homeowner Assistance Program,01/27/2014,01/27/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/27/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +51325,CONFIDENTIAL,Homeowner Assistance Program,01/23/2014,04/16/2014,,----,----,Brooklyn,,,,BK-04,37,,,,,,,04/16/2014,Preservation,No,Non Prevailing Wage,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2 +50196,Belmont Venezia,Multifamily Finance Program,01/22/2014,04/13/2015,49501,2431,BELMONT AVENUE,Bronx,10458,2030760011,2012218,BX-06,15,389,BX06,40.855396,-73.885752,40.8556,-73.885853,04/13/2015,Preservation,No,Non Prevailing Wage,0,0,42,0,0,1,0,6,28,9,0,0,0,0,43,0,43,43 +50196,Belmont Venezia,Multifamily Finance Program,01/22/2014,04/13/2015,59948,2404,CROTONA AVENUE,Bronx,10458,2031040001,2092313,BX-06,15,393,BX06,40.854315,-73.883411,40.85422,-73.883169,04/13/2015,Preservation,No,Non Prevailing Wage,0,0,23,0,0,1,0,4,9,11,0,0,0,0,24,0,24,24 +50196,Belmont Venezia,Multifamily Finance Program,01/22/2014,04/13/2015,87351,2476,HUGHES AVENUE,Bronx,10458,2030760039,2012230,BX-06,15,389,BX06,40.85693,-73.885398,40.85667,-73.885139,04/13/2015,Preservation,No,Non Prevailing Wage,0,0,62,0,0,1,0,23,23,17,0,0,0,0,63,0,63,63 +50196,Belmont Venezia,Multifamily Finance Program,01/22/2014,04/13/2015,806409,2412,CROTONA AVENUE,Bronx,10458,2031040001,2092314,BX-06,15,393,BX06,40.854475,-73.883331,40.85422,-73.883169,04/13/2015,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,1,15,9,0,0,0,0,0,25,0,25,25 +50196,Belmont Venezia,Multifamily Finance Program,01/22/2014,04/13/2015,806410,2416,CROTONA AVENUE,Bronx,10458,2031040001,2092315,BX-06,15,393,BX06,40.854554,-73.883291,40.85422,-73.883169,04/13/2015,Preservation,No,Non Prevailing Wage,0,0,25,0,0,0,1,15,9,0,0,0,0,0,25,0,25,25 +56393,CONFIDENTIAL,Homeowner Assistance Program,01/22/2014,01/22/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,01/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56557,CONFIDENTIAL,Homeowner Assistance Program,01/22/2014,01/22/2014,,----,----,Queens,,,,QN-08,23,,,,,,,01/22/2014,New Construction,No,Non Prevailing Wage,0,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +56562,CONFIDENTIAL,Homeowner Assistance Program,01/22/2014,01/22/2014,,----,----,Queens,,,,QN-13,23,,,,,,,01/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +57459,CONFIDENTIAL,Homeowner Assistance Program,01/22/2014,01/22/2014,,----,----,Staten Island,,,,SI-03,51,,,,,,,01/22/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50682,74 W 105th Street,Multifamily Incentives Program,01/21/2014,01/21/2014,37582,74,WEST 105 STREET,Manhattan,10025,1018400060,1055508,MN-07,7,189,MN12,40.798269,-73.962676,40.79815,-73.962997,01/21/2014,Preservation,Yes,Non Prevailing Wage,0,0,0,10,0,0,0,9,1,0,0,0,0,0,10,0,10,10 +55776,CONFIDENTIAL,Homeowner Assistance Program,01/21/2014,01/21/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/21/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55681,CONFIDENTIAL,Homeowner Assistance Program,01/17/2014,01/17/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/17/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57428,CONFIDENTIAL,Homeowner Assistance Program,01/17/2014,01/17/2014,,----,----,Staten Island,,,,SI-02,50,,,,,,,01/17/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +51502,CONFIDENTIAL,Homeowner Assistance Program,01/16/2014,01/22/2014,,----,----,Bronx,,,,BX-12,12,,,,,,,01/22/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +49722,Livonia Commons,Multifamily Finance Program,01/15/2014,04/25/2016,948722,491,SHEFFIELD AVENUE,Brooklyn,11207,3038057501,3413699,BK-05,42,1126,BK85,40.664986,-73.8951,40.66492,-73.894805,10/21/2015,New Construction,No,Non Prevailing Wage,0,29,22,0,0,1,9,20,17,6,0,0,0,0,52,0,52,52 +49722,Livonia Commons,Multifamily Finance Program,01/15/2014,04/25/2016,948723,494,SHEFFIELD AVE,Brooklyn,11207,3038047501,3421640,BK-05,42,1126,BK85,40.664945,-73.895111,40.6648,-73.895511,04/22/2016,New Construction,No,Non Prevailing Wage,0,11,72,0,0,1,6,32,41,5,0,0,0,0,84,0,84,84 +49722,Livonia Commons,Multifamily Finance Program,01/15/2014,04/25/2016,948724,494,GEORGIA AVENUE,Brooklyn,11207,3038207501,3418179,BK-05,42,1130,BK85,40.664166,-73.895855,40.66418,-73.89633,04/25/2016,New Construction,No,Non Prevailing Wage,0,89,0,0,0,1,43,22,20,5,0,0,0,0,90,0,90,90 +49722,Livonia Commons,Multifamily Finance Program,01/15/2014,04/25/2016,969838,481,WILLIAMS AVENUE,Brooklyn,11207,3038197501,3418180,BK-05,42,1130,BK85,40.663863,-73.897661,40.66401,-73.897365,10/21/2015,New Construction,No,Non Prevailing Wage,0,24,27,0,0,1,15,14,17,6,0,0,0,0,52,0,52,52 +56106,CONFIDENTIAL,Homeowner Assistance Program,01/15/2014,01/15/2014,,----,----,Bronx,,,,BX-10,13,,,,,,,01/15/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +50481,CONFIDENTIAL,Homeowner Assistance Program,01/14/2014,04/30/2014,,----,----,Brooklyn,,,,BK-04,37,,,,,,,04/30/2014,Preservation,No,Non Prevailing Wage,0,3,0,0,0,0,0,0,0,0,0,0,0,3,0,3,3,3 +55697,CONFIDENTIAL,Homeowner Assistance Program,01/14/2014,01/14/2014,,----,----,Brooklyn,,,,BK-18,46,,,,,,,01/14/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55773,CONFIDENTIAL,Homeowner Assistance Program,01/10/2014,01/10/2014,,----,----,Staten Island,,,,SI-01,49,,,,,,,01/10/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +57341,CONFIDENTIAL,Homeowner Assistance Program,01/10/2014,01/10/2014,,----,----,Staten Island,,,,SI-02,51,,,,,,,01/10/2014,New Construction,No,Non Prevailing Wage,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1 +55647,CONFIDENTIAL,Homeowner Assistance Program,01/07/2014,01/07/2014,,----,----,Brooklyn,,,,BK-07,38,,,,,,,01/07/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 +55759,CONFIDENTIAL,Homeowner Assistance Program,01/03/2014,01/03/2014,,----,----,Queens,,,,QN-06,29,,,,,,,01/03/2014,Preservation,No,Non Prevailing Wage,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,1,1 diff --git a/data/nyc_housing_data2.csv b/data/nyc_housing_data2.csv new file mode 100644 index 00000000..e0c84e60 --- /dev/null +++ b/data/nyc_housing_data2.csv @@ -0,0 +1,4385 @@ +project_id,borough,extremely_low_income_units,very_low_income_units,low_income_units,moderate_income_units,middle_income_units,other_income_units,total_units +68894,Bronx,0,0,44,0,0,0,44 +67286,Queens,24,92,114,0,0,1,231 +67286,Queens,8,34,43,0,0,0,85 +67693,Manhattan,49,8,2,1,0,0,60 +67693,Manhattan,36,8,3,4,0,1,52 +68188,Manhattan,0,4,47,7,0,1,59 +68188,Manhattan,2,2,18,8,0,0,30 +68432,Brooklyn,0,25,7,0,0,0,32 +68432,Brooklyn,0,46,248,0,0,0,294 +68432,Brooklyn,3,50,265,0,0,1,319 +68432,Brooklyn,2,42,250,0,0,0,294 +68432,Brooklyn,1,33,260,0,0,0,294 +68432,Brooklyn,0,32,261,0,0,1,294 +69399,Brooklyn,0,0,0,0,3,0,9 +66720,Queens,53,163,0,190,0,2,543 +69397,Brooklyn,0,0,0,0,3,0,10 +69398,Brooklyn,0,0,0,0,3,0,3 +69398,Brooklyn,0,0,0,0,3,0,16 +69398,Brooklyn,0,0,0,0,3,0,3 +69355,Queens,0,0,0,201,0,1,202 +69395,Brooklyn,0,0,0,0,3,0,8 +69396,Brooklyn,0,0,0,0,3,0,10 +69396,Brooklyn,0,0,0,0,3,0,10 +51582,Bronx,56,55,96,69,0,1,277 +58780,Brooklyn,104,115,55,0,0,1,275 +64232,Queens,18,74,80,0,0,1,173 +64232,Queens,7,27,46,0,0,0,80 +66102,Bronx,1,9,21,0,0,1,32 +66970,Queens,66,44,22,89,110,1,443 +66970,Queens,104,67,35,138,172,1,689 +67367,Queens,23,88,112,0,0,1,224 +68080,Bronx,51,40,59,0,0,1,151 +69339,Bronx,0,0,1,0,0,0,1 +69392,Brooklyn,0,0,0,0,3,0,10 +69393,Brooklyn,0,0,0,0,3,0,10 +49713,Bronx,57,0,37,0,0,1,95 +65563,Manhattan,1,14,2,0,0,0,17 +68157,Brooklyn,0,0,0,0,83,0,302 +68158,Brooklyn,0,0,76,0,32,0,108 +69394,Queens,0,0,0,0,3,0,10 +48996,Manhattan,0,0,10,0,0,0,10 +48996,Manhattan,0,0,0,0,11,0,11 +65306,Brooklyn,9,12,57,0,0,0,78 +65306,Brooklyn,1,64,30,0,0,0,96 +67130,Bronx,148,0,96,0,0,1,245 +68210,Bronx,90,29,28,0,0,1,148 +69184,Brooklyn,9,80,84,0,0,0,174 +69338,Brooklyn,0,0,1,0,0,0,1 +69391,Bronx,0,0,0,0,3,0,8 +65582,Bronx,12,12,28,0,0,1,53 +68542,Bronx,6,126,0,0,0,1,133 +68267,Brooklyn,80,1,0,0,0,0,81 +69390,Queens,0,0,0,0,12,0,39 +69389,Brooklyn,0,0,0,0,11,0,35 +68526,Brooklyn,29,3,1,2,0,0,35 +68526,Brooklyn,12,2,1,0,0,0,15 +68526,Brooklyn,10,0,2,1,0,0,13 +68526,Brooklyn,7,3,2,0,0,1,13 +69336,Staten Island,0,0,1,0,0,0,1 +69337,Queens,0,0,1,0,0,0,1 +69388,Brooklyn,0,0,0,0,6,0,18 +69419,Brooklyn,0,0,0,0,9,0,28 +69334,Bronx,0,0,1,0,0,0,1 +69335,Manhattan,0,1,0,0,0,0,1 +69387,Brooklyn,0,0,0,0,2,0,6 +62057,Brooklyn,0,0,0,6,0,0,6 +62057,Brooklyn,0,0,0,7,0,0,7 +62057,Brooklyn,0,0,0,5,0,0,5 +68079,Manhattan,0,7,8,0,0,0,78 +69386,Brooklyn,0,0,0,0,3,0,9 +69385,Brooklyn,0,0,0,0,3,0,10 +61840,Manhattan,0,0,0,9,0,0,9 +61840,Manhattan,0,0,0,4,0,0,4 +61840,Manhattan,0,0,0,3,0,0,3 +61840,Manhattan,0,0,0,3,0,0,3 +61840,Manhattan,0,0,0,4,0,0,4 +61840,Manhattan,0,0,0,3,0,0,3 +61840,Manhattan,0,0,0,29,0,0,29 +69384,Brooklyn,0,0,0,0,8,0,26 +68810,Manhattan,24,19,3,0,0,1,47 +69383,Brooklyn,0,0,0,0,5,0,14 +69382,Brooklyn,0,0,0,0,7,0,23 +63968,Manhattan,9,4,13,10,0,1,37 +69309,Manhattan,0,0,1,0,0,0,1 +69310,Queens,0,0,1,0,0,0,1 +69380,Queens,0,0,0,0,3,0,10 +69381,Brooklyn,0,0,0,0,141,0,467 +60963,Brooklyn,75,0,0,0,0,1,76 +60963,Brooklyn,8,0,0,0,0,0,8 +68268,Brooklyn,85,1,0,0,0,1,87 +69295,Brooklyn,0,0,0,2,0,0,2 +69378,Manhattan,0,0,0,0,32,0,104 +69379,Brooklyn,0,0,0,0,10,0,31 +67960,Bronx,0,1,3,0,0,0,4 +69375,Brooklyn,0,0,0,0,3,0,10 +69377,Brooklyn,0,0,0,0,8,0,24 +69373,Bronx,0,0,6,0,12,0,56 +69374,Manhattan,0,12,12,0,6,0,113 +69308,Staten Island,0,1,0,0,0,0,1 +69372,Brooklyn,0,0,0,0,9,0,28 +67540,Brooklyn,0,6,0,0,0,0,32 +69371,Brooklyn,0,0,0,0,2,0,6 +69369,Brooklyn,0,0,0,0,3,0,8 +69370,Queens,0,0,0,0,10,0,31 +67632,Bronx,1,46,8,0,0,1,56 +67632,Bronx,8,45,5,0,0,1,59 +68433,Manhattan,50,133,10,0,0,1,194 +69307,Brooklyn,0,1,0,0,0,0,1 +69367,Queens,0,0,0,0,3,0,7 +69368,Brooklyn,0,0,0,0,3,0,10 +69366,Brooklyn,0,0,2,0,0,0,5 +69364,Brooklyn,0,0,0,0,4,0,13 +69365,Brooklyn,0,0,0,0,2,0,6 +69270,Brooklyn,0,0,0,1,0,0,1 +69362,Brooklyn,0,0,0,0,6,0,17 +69363,Brooklyn,0,0,0,0,8,0,25 +69356,Bronx,0,0,0,0,4,0,12 +67788,Bronx,65,0,41,0,0,1,107 +69354,Brooklyn,0,0,0,0,3,0,8 +69306,Bronx,0,0,1,0,0,0,1 +67494,Staten Island,31,0,16,0,0,1,48 +69234,Queens,0,1,0,0,0,0,1 +69235,Queens,0,0,1,0,0,0,1 +69353,Queens,0,0,0,0,5,0,15 +69118,Manhattan,0,0,93,39,0,0,132 +69118,Manhattan,0,0,121,29,0,0,150 +69118,Manhattan,0,0,89,50,0,0,139 +69118,Manhattan,0,0,86,48,0,0,134 +69118,Manhattan,0,0,85,23,0,0,108 +69118,Manhattan,0,0,86,48,0,0,134 +69118,Manhattan,0,0,91,49,0,0,140 +69118,Manhattan,0,0,121,29,0,0,150 +69118,Manhattan,0,0,98,25,0,0,123 +69118,Manhattan,0,0,94,12,0,0,106 +69118,Manhattan,0,0,119,18,0,0,137 +69118,Manhattan,0,0,76,61,0,0,137 +65360,Manhattan,0,6,12,0,0,0,18 +64768,Manhattan,0,0,2,27,43,25,360 +64768,Manhattan,0,0,0,22,36,19,360 +64768,Manhattan,0,0,0,0,5,4,20 +64768,Manhattan,0,0,0,28,39,31,365 +64768,Manhattan,0,0,0,27,17,4,366 +69210,Brooklyn,0,1,0,0,0,0,1 +69351,Queens,0,0,0,2,0,0,6 +69352,Brooklyn,0,0,0,0,9,0,28 +69238,Queens,0,0,1,0,0,0,1 +69349,Bronx,0,0,0,0,3,0,3 +69349,Bronx,0,0,0,0,3,0,17 +69350,Brooklyn,0,0,0,0,3,0,8 +68660,Manhattan,0,0,3,177,22,0,306 +68660,Manhattan,0,0,1,104,5,1,147 +68660,Manhattan,0,0,1,177,20,1,308 +68661,Manhattan,0,0,0,36,147,1,272 +68661,Manhattan,0,0,0,27,176,1,272 +68661,Manhattan,0,0,1,2,13,0,56 +68662,Manhattan,0,0,0,43,0,1,64 +68662,Manhattan,0,0,0,228,1,1,341 +69348,Queens,0,0,0,0,13,0,42 +48143,Manhattan,0,6,10,0,0,0,16 +48143,Manhattan,0,7,6,0,0,0,13 +48143,Manhattan,0,11,1,0,0,1,13 +48143,Manhattan,0,11,5,0,0,0,16 +69237,Manhattan,0,0,1,0,0,0,1 +69346,Bronx,0,0,0,0,5,0,16 +69347,Brooklyn,0,0,0,0,3,0,18 +69347,Brooklyn,0,0,0,0,3,0,3 +69347,Brooklyn,0,0,0,0,3,0,3 +64745,Manhattan,8,7,14,15,0,1,45 +69344,Brooklyn,0,0,0,0,17,0,55 +69345,Brooklyn,0,0,0,0,3,0,7 +67890,Manhattan,82,18,6,0,0,0,106 +67890,Manhattan,84,14,7,2,0,1,108 +68229,Brooklyn,0,4,7,0,0,0,41 +69342,Bronx,0,0,0,0,9,0,27 +69343,Brooklyn,0,0,0,0,1,0,1 +69343,Brooklyn,0,0,0,0,4,0,11 +69129,Brooklyn,0,2,0,0,0,0,2 +68382,Bronx,0,17,17,6,0,0,164 +69341,Brooklyn,0,0,0,0,3,0,8 +66099,Queens,0,0,2,0,0,0,14 +69096,Brooklyn,0,0,0,0,3,0,7 +69097,Bronx,0,0,12,0,24,0,120 +69109,Queens,0,0,1,0,0,0,1 +69124,Queens,0,0,1,0,0,0,1 +69126,Bronx,0,0,1,0,0,0,1 +69123,Brooklyn,0,0,1,0,0,0,1 +69177,Queens,0,0,94,0,278,0,374 +69120,Queens,0,0,1,0,0,0,1 +66137,Manhattan,27,10,2,1,0,1,41 +69113,Bronx,0,0,1,0,0,0,1 +69094,Brooklyn,0,0,0,0,3,0,8 +69095,Brooklyn,0,0,0,0,3,0,8 +69014,Brooklyn,0,0,2,0,0,0,2 +68958,Queens,1,0,0,0,0,0,1 +69092,Brooklyn,0,0,0,0,3,0,9 +69093,Bronx,0,0,0,0,2,0,6 +67438,Bronx,0,6,6,0,0,0,12 +67438,Bronx,0,6,9,0,0,1,16 +67438,Bronx,2,3,3,0,0,1,9 +67438,Bronx,0,2,5,0,0,0,7 +67438,Bronx,9,14,5,1,0,1,30 +67438,Bronx,0,5,11,0,0,0,16 +69089,Manhattan,0,0,0,0,6,0,20 +69091,Bronx,0,0,0,0,3,0,10 +69122,Queens,0,0,1,0,0,0,1 +69088,Brooklyn,0,0,0,0,6,0,20 +67504,Manhattan,40,10,2,0,0,2,54 +67575,Bronx,0,2,40,0,0,1,43 +68920,Brooklyn,0,0,1,0,0,0,1 +69086,Manhattan,0,0,0,0,3,0,8 +69087,Brooklyn,0,0,5,0,0,0,24 +69084,Brooklyn,0,0,0,0,3,0,8 +69085,Brooklyn,0,0,0,0,3,0,8 +68934,Brooklyn,0,0,0,4,0,0,4 +69082,Brooklyn,0,0,0,0,3,0,8 +69083,Manhattan,0,0,3,0,6,0,29 +69081,Queens,0,0,0,0,3,0,10 +68932,Brooklyn,0,3,0,0,0,0,3 +69079,Brooklyn,0,0,0,0,3,0,10 +69080,Brooklyn,0,0,0,0,3,0,10 +67572,Bronx,0,18,33,0,0,1,52 +68918,Staten Island,0,0,1,0,0,0,1 +69077,Brooklyn,0,0,1,0,0,0,9 +69077,Brooklyn,0,0,1,0,0,0,1 +69078,Bronx,0,0,0,0,3,0,8 +69075,Brooklyn,0,0,0,0,3,0,10 +69076,Brooklyn,0,0,0,0,16,0,53 +64829,Bronx,79,0,0,0,0,1,80 +69074,Brooklyn,0,0,0,0,3,0,7 +69073,Queens,0,0,0,0,6,0,17 +69071,Brooklyn,0,0,0,0,3,0,8 +69072,Brooklyn,0,0,0,0,3,0,10 +68906,Bronx,0,2,0,0,0,0,2 +68917,Bronx,0,0,1,0,0,0,1 +69070,Brooklyn,0,0,0,0,6,0,18 +69069,Brooklyn,0,0,3,0,0,0,15 +68914,Queens,0,1,0,0,0,0,1 +69068,Brooklyn,0,0,0,0,1,0,1 +69068,Brooklyn,0,0,0,0,4,0,15 +69067,Queens,0,0,0,0,9,0,27 +68837,Brooklyn,2,0,0,0,0,0,2 +68850,Brooklyn,0,0,1,0,0,0,1 +69065,Manhattan,0,0,0,0,4,0,12 +69066,Queens,0,0,0,0,9,0,27 +68172,Bronx,0,55,24,0,0,0,80 +69064,Brooklyn,0,0,0,0,3,0,7 +69062,Brooklyn,0,0,0,0,3,0,8 +69063,Brooklyn,0,0,0,0,3,0,8 +67522,Bronx,66,21,20,0,0,1,108 +69061,Queens,0,0,0,0,3,0,10 +68849,Queens,0,0,1,0,0,0,1 +69060,Queens,0,0,0,2,0,0,6 +67891,Manhattan,15,2,3,3,0,1,24 +67891,Manhattan,29,9,3,0,0,1,42 +67891,Manhattan,7,0,1,1,0,0,9 +67891,Manhattan,2,1,1,0,0,0,4 +67891,Manhattan,14,5,3,2,0,0,24 +67891,Manhattan,14,9,3,2,0,1,29 +67891,Manhattan,15,4,0,0,1,1,21 +67891,Manhattan,23,5,0,3,0,0,31 +67891,Manhattan,31,7,4,1,1,1,45 +68824,Staten Island,0,0,1,0,0,0,1 +68844,Queens,0,0,1,0,0,0,1 +69058,Brooklyn,0,0,0,0,3,0,7 +69059,Brooklyn,0,0,0,0,3,0,8 +69056,Manhattan,0,0,0,0,3,0,8 +69057,Brooklyn,0,0,0,0,3,0,10 +69054,Brooklyn,0,0,0,0,2,0,6 +69055,Brooklyn,0,0,0,0,2,0,6 +69053,Brooklyn,0,0,0,0,7,0,21 +69051,Brooklyn,0,0,0,0,3,0,8 +69052,Brooklyn,0,0,0,0,8,0,25 +69050,Manhattan,0,0,0,0,18,0,58 +68843,Bronx,0,0,1,0,0,0,1 +69049,Bronx,0,0,0,0,4,0,12 +69047,Queens,0,0,0,0,4,0,13 +69048,Brooklyn,0,0,0,0,3,0,7 +61587,Manhattan,0,0,0,20,0,0,20 +69045,Brooklyn,0,0,0,0,10,0,31 +69046,Brooklyn,0,0,0,0,8,0,25 +61875,Manhattan,74,352,0,0,0,0,426 +61875,Manhattan,66,310,0,0,0,0,376 +61875,Manhattan,68,327,0,0,0,1,396 +61875,Manhattan,69,326,0,0,0,1,396 +62299,Queens,75,0,124,0,0,1,200 +65349,Bronx,0,3,12,0,0,0,15 +65349,Bronx,0,10,5,0,0,1,16 +65378,Manhattan,0,13,2,0,0,0,15 +65378,Manhattan,4,6,3,0,0,0,13 +65378,Manhattan,3,11,2,0,0,0,16 +65378,Manhattan,1,8,1,0,0,0,10 +65378,Manhattan,6,2,1,0,0,0,9 +65378,Manhattan,3,10,3,0,0,0,16 +65378,Manhattan,0,14,5,0,0,1,20 +65378,Manhattan,1,7,2,0,0,0,10 +65378,Manhattan,0,9,1,0,0,0,10 +65378,Manhattan,1,9,0,0,0,0,10 +65378,Manhattan,1,7,2,0,0,0,10 +65378,Manhattan,5,4,1,0,0,0,10 +65378,Manhattan,0,9,1,0,0,0,10 +65378,Manhattan,0,8,2,0,0,0,10 +65378,Manhattan,0,9,0,0,0,1,10 +65378,Manhattan,2,16,0,0,0,0,18 +66563,Manhattan,0,2,9,7,0,0,18 +67129,Queens,50,19,0,0,0,1,70 +67287,Queens,63,0,0,0,0,0,63 +67398,Bronx,10,3,31,0,0,1,45 +67576,Bronx,0,9,39,0,0,1,49 +67619,Bronx,1,6,13,0,0,1,21 +67619,Bronx,0,6,15,0,0,0,21 +67699,Queens,0,6,3,15,0,0,24 +67699,Queens,0,5,10,9,0,0,24 +67699,Queens,0,3,2,18,0,1,24 +67705,Brooklyn,0,28,0,0,0,1,29 +67705,Brooklyn,1,20,3,0,0,0,24 +67705,Brooklyn,4,14,0,0,0,0,18 +68076,Manhattan,0,0,3,0,12,1,43 +68177,Manhattan,239,6,2,3,27,1,278 +68189,Manhattan,157,8,2,0,0,1,168 +68663,Brooklyn,0,0,0,0,11,0,35 +68664,Brooklyn,0,0,0,0,7,0,21 +68692,Queens,0,0,0,3,0,0,3 +68697,Brooklyn,0,0,0,2,0,0,2 +68701,Queens,0,0,2,0,0,0,2 +68702,Bronx,0,2,0,0,0,0,2 +68705,Queens,0,0,2,0,0,0,2 +68707,Queens,0,0,0,1,0,0,1 +68713,Brooklyn,0,0,3,0,0,0,3 +63151,Bronx,36,36,110,0,0,1,183 +64027,Manhattan,83,54,86,52,0,1,276 +64027,Manhattan,25,18,22,20,0,0,85 +64406,Bronx,62,51,136,0,0,1,250 +65392,Manhattan,174,23,10,1,0,0,208 +65392,Manhattan,69,14,7,1,1,0,92 +65392,Manhattan,157,30,15,4,1,1,208 +65392,Manhattan,120,24,3,1,0,0,148 +66644,Brooklyn,30,24,64,0,0,0,118 +66670,Brooklyn,0,3,2,0,0,0,5 +66670,Brooklyn,0,9,6,0,0,1,16 +66670,Brooklyn,1,10,5,0,0,0,16 +66670,Brooklyn,1,5,3,0,0,0,9 +66670,Brooklyn,0,4,2,0,0,0,6 +66670,Brooklyn,2,2,0,0,0,0,4 +66670,Brooklyn,0,2,4,0,0,0,6 +66670,Brooklyn,0,2,2,0,0,0,4 +66670,Brooklyn,0,3,1,0,0,0,4 +66670,Brooklyn,1,5,0,0,0,0,6 +66670,Brooklyn,2,4,0,0,0,1,7 +66670,Brooklyn,2,1,1,0,0,0,4 +66670,Brooklyn,1,3,0,0,0,0,4 +66670,Brooklyn,1,3,0,0,0,0,4 +66670,Brooklyn,0,19,16,0,0,1,36 +66670,Brooklyn,1,3,4,0,0,0,8 +66670,Brooklyn,5,4,5,1,0,0,15 +66670,Brooklyn,0,9,0,0,0,0,9 +66670,Brooklyn,2,0,1,0,0,0,3 +66670,Brooklyn,1,4,1,0,0,0,6 +66670,Brooklyn,0,3,1,0,0,0,4 +66670,Brooklyn,1,1,1,0,0,0,3 +66670,Brooklyn,0,4,0,0,0,0,4 +66670,Brooklyn,0,2,1,0,0,0,3 +66670,Brooklyn,1,3,0,0,0,0,4 +66670,Brooklyn,0,4,7,0,0,0,11 +66670,Brooklyn,2,1,4,1,0,0,8 +66670,Brooklyn,0,2,1,0,0,0,3 +66670,Brooklyn,0,2,2,0,0,0,4 +66670,Brooklyn,0,7,7,0,0,1,15 +66670,Brooklyn,1,1,2,0,0,0,4 +66670,Brooklyn,0,5,1,0,0,0,6 +66670,Brooklyn,3,2,1,0,0,0,6 +66670,Brooklyn,1,3,1,0,0,1,6 +66670,Brooklyn,0,3,0,0,0,0,3 +66670,Brooklyn,1,3,0,0,0,0,4 +66670,Brooklyn,0,4,0,0,0,0,4 +66670,Brooklyn,1,1,1,1,0,0,4 +66670,Brooklyn,0,6,3,0,0,0,9 +66670,Brooklyn,0,5,1,0,0,0,6 +66670,Brooklyn,0,1,7,0,0,0,8 +66670,Brooklyn,1,2,1,0,0,0,4 +66670,Brooklyn,1,13,5,0,0,1,20 +66670,Brooklyn,0,2,2,0,0,0,4 +66670,Brooklyn,1,2,0,0,0,0,3 +66670,Brooklyn,0,7,1,0,0,0,8 +66670,Brooklyn,0,4,4,0,0,0,8 +66670,Brooklyn,0,2,1,0,0,0,3 +66670,Brooklyn,0,2,2,0,0,0,4 +66670,Brooklyn,0,9,3,0,0,0,12 +66670,Brooklyn,1,4,1,0,0,0,6 +66670,Brooklyn,1,9,2,0,0,0,12 +66670,Brooklyn,0,8,3,0,0,1,12 +66670,Brooklyn,1,5,2,0,0,0,8 +66670,Brooklyn,0,6,1,0,0,0,7 +66670,Brooklyn,0,3,5,0,0,0,8 +66670,Brooklyn,0,3,0,0,0,0,3 +66670,Brooklyn,3,3,0,0,0,0,6 +66670,Brooklyn,3,2,1,0,0,0,6 +66670,Brooklyn,0,0,3,0,0,0,3 +66670,Brooklyn,0,2,1,0,0,0,3 +66670,Brooklyn,1,2,0,0,0,0,3 +66670,Brooklyn,0,3,0,0,0,1,4 +66670,Brooklyn,1,5,1,0,0,1,8 +66670,Brooklyn,1,2,0,0,0,0,3 +66670,Brooklyn,1,4,1,0,0,0,6 +66670,Brooklyn,1,4,1,0,0,0,6 +66670,Brooklyn,1,1,1,0,0,1,4 +66670,Brooklyn,3,2,1,0,0,0,6 +66670,Brooklyn,3,4,1,0,0,0,8 +66670,Brooklyn,0,4,1,0,0,0,5 +66670,Brooklyn,3,0,0,0,0,0,3 +66670,Brooklyn,0,5,1,0,0,1,7 +66670,Brooklyn,0,2,1,0,0,0,3 +66670,Brooklyn,1,2,2,0,0,0,5 +66670,Brooklyn,0,5,2,1,0,0,8 +66670,Brooklyn,1,2,1,0,0,0,4 +66670,Brooklyn,1,2,1,0,0,0,4 +66670,Brooklyn,3,3,0,0,0,0,6 +67459,Bronx,9,10,2,0,0,0,21 +67459,Bronx,9,10,1,0,0,1,21 +67523,Bronx,105,0,69,0,0,1,175 +67636,Manhattan,0,68,123,6,0,1,198 +68657,Brooklyn,0,0,0,0,3,0,7 +68658,Brooklyn,0,0,0,0,2,0,18 +68658,Brooklyn,0,0,0,0,3,0,3 +68658,Brooklyn,0,0,0,0,2,0,2 +68711,Brooklyn,0,0,0,2,0,0,2 +63777,Queens,19,37,37,90,0,0,183 +63777,Queens,14,29,28,72,0,1,144 +63777,Queens,11,23,23,58,0,0,115 +67154,Bronx,8,4,17,0,0,1,30 +67805,Bronx,0,0,87,14,0,1,102 +68698,Staten Island,0,0,0,1,0,0,1 +68700,Staten Island,0,1,0,0,0,0,1 +68709,Brooklyn,0,0,0,2,0,0,2 +61678,Bronx,67,34,76,0,0,1,178 +68211,Queens,0,81,81,0,0,0,163 +68347,Bronx,0,20,291,88,0,1,400 +68649,Bronx,0,0,0,0,10,0,31 +68650,Brooklyn,0,0,0,0,3,0,7 +68694,Staten Island,0,0,1,0,0,0,1 +68703,Queens,0,0,1,0,0,0,1 +68718,Staten Island,0,0,0,1,0,0,1 +54577,Brooklyn,0,0,10,5,0,0,50 +65320,Bronx,151,0,0,0,0,1,152 +67458,Brooklyn,2,3,1,0,0,0,6 +67458,Brooklyn,4,6,2,0,0,0,12 +59104,Bronx,1,107,0,0,0,1,109 +60824,Bronx,37,24,0,0,0,1,62 +66565,Brooklyn,0,2,0,0,0,0,2 +66565,Brooklyn,1,5,2,0,0,1,9 +66565,Brooklyn,0,3,3,0,0,0,6 +66565,Brooklyn,0,2,3,1,0,0,6 +66565,Brooklyn,0,0,6,0,0,0,6 +66565,Brooklyn,1,4,1,0,0,0,6 +66565,Brooklyn,1,3,5,1,0,0,10 +68641,Bronx,0,0,0,2,0,0,6 +68714,Staten Island,0,0,1,0,0,0,1 +61641,Brooklyn,0,11,11,0,0,1,23 +61641,Brooklyn,1,10,12,0,0,0,23 +61641,Brooklyn,1,11,4,0,0,0,16 +61641,Brooklyn,3,9,2,0,0,0,14 +61641,Brooklyn,4,8,1,0,0,1,14 +61641,Brooklyn,3,10,1,0,0,0,14 +61641,Brooklyn,6,5,1,0,0,0,12 +61641,Brooklyn,0,5,8,0,0,1,14 +61641,Brooklyn,2,12,2,0,0,0,16 +67462,Manhattan,25,4,0,0,0,0,29 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,2,0,0,0,2 +67483,Bronx,0,0,8,0,0,0,8 +67483,Bronx,0,0,8,0,0,0,8 +67483,Bronx,0,0,7,1,0,0,8 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,10,0,0,0,10 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,7,1,0,0,8 +67483,Bronx,0,0,7,1,0,0,8 +67483,Bronx,0,0,7,1,0,0,8 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,1,2,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,7,1,0,0,8 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,2,1,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,1,1,0,0,2 +67483,Bronx,0,0,2,0,0,0,2 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,3,0,0,0,3 +67483,Bronx,0,0,2,0,0,0,2 +67483,Bronx,0,0,1,1,0,0,2 +67484,Bronx,0,0,0,2,0,0,2 +67484,Bronx,0,0,1,2,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,8,0,0,0,8 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,1,2,0,0,3 +67484,Bronx,0,0,8,0,0,0,8 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,8,0,0,0,8 +67484,Bronx,0,0,8,0,0,0,8 +67484,Bronx,0,0,7,1,0,0,8 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67484,Bronx,0,0,2,1,0,0,3 +67484,Bronx,0,0,3,0,0,0,3 +67487,Bronx,0,0,3,0,0,0,3 +67487,Bronx,0,0,2,1,0,0,3 +67487,Bronx,0,0,9,0,0,0,9 +67487,Bronx,0,0,8,1,0,0,9 +67487,Bronx,0,0,9,0,0,0,9 +67487,Bronx,0,0,9,0,0,0,9 +67487,Bronx,0,0,3,0,0,0,3 +67487,Bronx,0,0,2,1,0,0,3 +67487,Bronx,0,0,3,0,0,0,3 +67487,Bronx,0,0,3,0,0,0,3 +67487,Bronx,0,0,10,0,0,0,10 +67487,Bronx,0,0,10,0,0,0,10 +67487,Bronx,0,0,8,0,0,0,8 +67487,Bronx,0,0,8,0,0,0,8 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,2,0,0,0,2 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,8,0,0,0,8 +67618,Bronx,0,0,7,1,0,0,8 +67618,Bronx,0,0,2,0,0,0,2 +67618,Bronx,0,0,2,0,0,0,2 +67618,Bronx,0,0,3,0,0,0,3 +67618,Bronx,0,0,3,0,0,0,3 +68651,Brooklyn,0,0,1,0,0,0,1 +68696,Staten Island,0,0,1,0,0,0,1 +67752,Bronx,0,10,0,0,0,0,10 +67752,Bronx,0,15,0,0,0,0,15 +67752,Bronx,0,16,0,0,0,0,16 +68640,Brooklyn,0,0,0,0,8,0,25 +68654,Staten Island,0,0,1,0,0,0,1 +68679,Staten Island,0,0,0,1,0,0,1 +68715,Queens,0,0,0,1,0,0,1 +68717,Queens,0,0,2,0,0,0,2 +68638,Queens,0,0,0,0,6,0,18 +68639,Brooklyn,0,0,0,0,3,0,10 +65275,Bronx,0,43,4,0,0,1,48 +68635,Brooklyn,0,0,0,0,3,0,10 +68637,Brooklyn,0,0,0,0,3,0,8 +68653,Bronx,0,0,1,0,0,0,1 +67685,Manhattan,0,94,94,46,0,0,931 +68633,Brooklyn,0,0,2,0,0,0,7 +68634,Bronx,0,0,0,0,6,0,17 +68688,Queens,0,1,0,0,0,0,1 +68719,Brooklyn,0,0,2,0,0,0,2 +63252,Manhattan,4,2,0,0,0,0,6 +68107,Manhattan,0,3,8,7,5,1,24 +68107,Manhattan,0,2,2,9,3,0,16 +68107,Manhattan,0,3,0,6,0,0,9 +68107,Manhattan,0,5,1,1,2,0,9 +68107,Manhattan,0,2,1,4,3,0,10 +68107,Manhattan,0,3,2,3,1,0,9 +68107,Manhattan,0,4,0,3,1,0,8 +68107,Manhattan,0,0,4,4,1,0,9 +68107,Manhattan,0,4,0,3,2,0,9 +68107,Manhattan,0,5,0,1,2,0,8 +68107,Manhattan,0,1,1,5,3,0,10 +68107,Manhattan,0,1,1,8,0,0,10 +68107,Manhattan,0,3,2,8,3,0,16 +68107,Manhattan,2,1,0,5,2,0,10 +68107,Manhattan,5,0,0,6,11,1,23 +68107,Manhattan,0,9,5,7,0,1,22 +68107,Manhattan,0,4,3,13,2,0,22 +68269,Manhattan,2,12,22,8,4,1,49 +68269,Manhattan,1,10,32,7,5,1,56 +68269,Manhattan,1,19,19,4,0,1,44 +68269,Manhattan,3,11,17,4,3,1,39 +68269,Manhattan,4,16,17,13,4,1,55 +68269,Manhattan,2,17,10,8,1,0,38 +68269,Manhattan,1,19,12,5,1,0,38 +68269,Manhattan,11,26,9,4,1,1,52 +68269,Manhattan,1,3,19,23,2,1,49 +68631,Brooklyn,0,0,0,0,3,0,8 +68632,Brooklyn,0,0,0,0,10,0,32 +68685,Bronx,0,0,0,2,0,0,2 +68695,Bronx,2,0,0,0,0,0,2 +67399,Bronx,3,10,24,0,0,1,38 +67464,Bronx,2,11,31,0,0,1,45 +67606,Bronx,0,4,26,0,0,1,31 +67606,Bronx,0,7,23,0,0,0,30 +67607,Bronx,0,10,55,0,0,1,66 +68630,Brooklyn,0,0,0,0,3,0,10 +68652,Bronx,0,0,1,0,0,0,1 +68674,Queens,0,0,1,0,0,0,1 +68628,Brooklyn,0,0,0,0,3,0,10 +68629,Brooklyn,0,0,0,0,9,0,28 +68667,Brooklyn,0,0,1,0,0,0,1 +68686,Bronx,0,0,1,0,0,0,1 +68708,Bronx,0,0,1,0,0,0,1 +68625,Brooklyn,0,0,0,0,3,0,9 +68626,Brooklyn,0,0,0,0,3,0,9 +68669,Bronx,0,0,0,3,0,0,3 +68624,Brooklyn,0,0,0,0,6,0,20 +68681,Brooklyn,0,0,0,1,0,0,1 +68712,Bronx,0,0,2,0,0,0,2 +67829,Brooklyn,0,0,42,0,65,0,414 +68622,Brooklyn,0,0,0,0,2,0,7 +68623,Brooklyn,0,0,0,0,3,0,10 +68620,Brooklyn,0,0,0,0,32,0,105 +68621,Brooklyn,0,0,0,0,3,0,9 +68683,Bronx,0,0,0,1,0,0,1 +68710,Bronx,0,0,2,0,0,0,2 +68618,Brooklyn,0,0,0,0,3,0,8 +68619,Brooklyn,0,0,0,0,3,0,8 +68253,Brooklyn,0,0,4,0,0,0,4 +68616,Brooklyn,0,0,0,0,3,0,8 +68617,Bronx,0,0,0,2,0,0,6 +68716,Bronx,0,0,0,2,0,0,2 +67791,Brooklyn,0,0,9,0,0,0,160 +68615,Brooklyn,0,0,0,0,7,0,22 +68672,Bronx,0,0,1,0,0,0,1 +68675,Brooklyn,1,0,0,0,0,0,1 +68536,Brooklyn,0,0,1,0,0,0,1 +66766,Brooklyn,0,0,6,0,0,0,80 +68073,Bronx,0,0,88,1,0,1,90 +68534,Brooklyn,0,0,1,0,0,0,1 +68677,Brooklyn,0,0,0,2,0,0,2 +68666,Brooklyn,0,0,0,2,0,0,2 +68614,Brooklyn,0,0,0,0,3,0,8 +68537,Bronx,0,0,1,0,0,0,1 +65280,Manhattan,5,42,37,7,0,1,92 +68255,Brooklyn,0,0,3,0,0,0,3 +68538,Bronx,0,0,1,0,0,0,1 +68612,Queens,0,0,0,0,2,0,6 +68613,Bronx,0,0,0,0,3,0,10 +68610,Brooklyn,0,0,0,0,11,0,36 +68611,Brooklyn,0,0,0,0,3,0,7 +68585,Manhattan,0,7,11,0,0,0,18 +68585,Manhattan,0,6,12,0,0,0,18 +68585,Manhattan,0,4,14,0,0,0,18 +68585,Manhattan,0,5,19,0,0,0,24 +68585,Manhattan,0,4,18,0,0,0,22 +68585,Manhattan,0,2,20,0,0,0,22 +68585,Manhattan,1,3,18,0,0,0,22 +68585,Manhattan,0,1,17,0,0,0,18 +68585,Manhattan,0,1,17,0,0,0,18 +68585,Manhattan,0,2,16,0,0,0,18 +68256,Brooklyn,0,0,0,3,0,0,3 +68528,Queens,0,0,1,0,0,0,1 +68608,Brooklyn,0,0,0,0,3,0,8 +68609,Brooklyn,0,0,0,0,3,0,8 +65215,Manhattan,16,310,104,0,0,1,431 +68606,Brooklyn,0,0,0,0,3,0,10 +68607,Brooklyn,0,0,6,0,0,0,27 +68531,Manhattan,0,0,1,0,0,0,1 +68535,Staten Island,0,0,1,0,0,0,1 +68605,Brooklyn,0,0,0,0,6,0,20 +68604,Queens,0,0,0,0,5,0,16 +68602,Brooklyn,0,0,0,0,7,0,22 +68603,Brooklyn,0,0,0,0,12,0,38 +67446,Bronx,1,5,45,0,0,1,52 +67448,Bronx,2,12,34,0,0,1,49 +67449,Bronx,1,10,22,0,0,1,34 +67450,Bronx,1,14,48,0,0,0,63 +67451,Bronx,0,11,26,0,0,0,37 +67571,Bronx,1,11,47,0,0,0,59 +67573,Bronx,0,5,8,0,0,0,13 +67605,Bronx,0,15,15,0,0,1,31 +65277,Bronx,135,196,4,0,0,1,353 +65212,Brooklyn,0,18,27,44,0,1,90 +68527,Bronx,0,0,1,0,0,0,1 +68523,Queens,1,0,0,0,0,0,1 +68600,Brooklyn,0,0,0,0,5,0,16 +68601,Brooklyn,0,0,0,0,3,0,14 +68601,Brooklyn,0,0,0,0,2,0,2 +67437,Manhattan,47,7,5,1,0,0,60 +68456,Queens,0,0,1,0,0,0,1 +68598,Brooklyn,0,0,0,0,3,0,10 +68599,Bronx,0,0,0,0,4,0,11 +67134,Manhattan,0,0,111,0,0,0,113 +68596,Brooklyn,0,0,0,0,3,0,9 +68597,Brooklyn,0,0,0,0,3,0,9 +66858,Brooklyn,22,66,87,42,0,1,218 +68460,Queens,0,0,1,0,0,0,1 +68595,Queens,0,0,0,0,3,0,8 +65298,Bronx,50,49,112,37,0,1,249 +66264,Manhattan,0,0,2,0,0,0,49 +68594,Manhattan,0,0,0,0,18,0,375 +68459,Queens,0,0,1,0,0,0,1 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,3,3,0,0,0,8 +53680,Brooklyn,1,3,4,0,0,0,8 +53680,Brooklyn,2,1,5,0,0,0,8 +53680,Brooklyn,2,3,2,0,0,1,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,2,4,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,3,3,0,0,0,8 +53680,Brooklyn,2,1,5,0,0,0,8 +53680,Brooklyn,3,2,3,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,2,4,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,3,3,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,2,3,3,0,0,0,8 +53680,Brooklyn,2,3,3,0,0,0,8 +53680,Brooklyn,0,0,8,0,0,0,8 +53680,Brooklyn,60,19,0,0,0,1,80 +67103,Manhattan,0,0,1,0,0,0,18 +68593,Bronx,0,0,0,0,3,0,7 +68592,Brooklyn,0,0,0,0,6,0,20 +68591,Brooklyn,0,0,3,0,0,0,14 +68455,Bronx,0,0,1,0,0,0,1 +68590,Brooklyn,0,0,0,0,3,0,10 +68588,Brooklyn,0,0,2,0,0,0,8 +68589,Bronx,0,0,0,0,3,0,8 +66669,Bronx,6,41,0,0,0,1,48 +68586,Brooklyn,0,0,0,0,9,0,28 +68457,Bronx,0,0,1,0,0,0,1 +66573,Manhattan,1,1,15,11,0,0,28 +66573,Manhattan,0,3,10,11,0,1,25 +68584,Bronx,0,0,0,0,3,0,10 +68380,Brooklyn,0,0,0,0,3,0,8 +66770,Brooklyn,0,0,8,0,0,0,46 +68379,Brooklyn,0,0,0,0,4,0,13 +61271,Bronx,54,0,35,0,0,1,90 +67051,Brooklyn,0,0,5,0,0,0,27 +68384,Brooklyn,0,0,1,0,0,0,1 +68385,Queens,0,0,1,0,0,0,1 +60784,Manhattan,0,0,0,13,0,0,13 +60784,Manhattan,0,0,0,15,0,0,15 +67730,Bronx,0,8,23,41,0,1,108 +68377,Brooklyn,0,0,0,0,3,0,8 +68378,Brooklyn,0,0,0,0,3,0,8 +68383,Bronx,0,1,0,0,0,0,1 +61290,Brooklyn,78,0,50,0,0,1,129 +66105,Bronx,153,0,0,0,0,1,154 +68159,Bronx,153,21,80,0,0,1,255 +68376,Brooklyn,0,0,0,0,3,0,8 +68374,Brooklyn,0,0,0,0,3,0,9 +68375,Brooklyn,0,0,3,0,0,0,12 +68372,Brooklyn,0,0,0,0,5,0,16 +68373,Brooklyn,0,0,0,0,2,0,6 +68371,Bronx,0,0,0,0,5,0,15 +68370,Brooklyn,0,0,0,0,3,0,8 +68369,Brooklyn,0,0,6,0,0,0,29 +68367,Brooklyn,0,0,0,0,4,0,12 +68368,Brooklyn,0,0,0,0,4,0,13 +68365,Brooklyn,0,0,0,0,10,0,32 +68366,Bronx,0,0,0,0,13,0,41 +68362,Brooklyn,0,0,0,0,3,0,8 +68363,Brooklyn,0,0,0,0,7,0,21 +68360,Brooklyn,0,0,0,0,3,0,8 +68361,Brooklyn,0,0,0,0,3,0,8 +68359,Brooklyn,0,0,0,0,6,0,18 +68551,Manhattan,0,0,0,8,0,0,8 +68551,Manhattan,0,0,0,8,0,0,8 +68551,Manhattan,0,0,0,8,0,0,8 +68551,Manhattan,0,0,0,8,0,0,8 +68279,Staten Island,0,0,1,0,0,0,1 +68357,Brooklyn,0,0,0,0,3,0,8 +68358,Brooklyn,0,0,0,0,3,0,8 +65391,Manhattan,145,4,1,0,0,1,151 +68356,Bronx,0,0,0,0,8,0,26 +68274,Staten Island,0,0,1,0,0,0,1 +68205,Queens,0,1,0,0,0,0,1 +68278,Queens,1,0,0,0,0,0,1 +68355,Brooklyn,0,0,0,0,28,0,93 +68353,Brooklyn,0,0,4,0,0,0,19 +68354,Bronx,0,0,0,0,3,0,10 +65291,Brooklyn,9,12,39,0,0,0,60 +65291,Brooklyn,41,38,111,0,0,1,355 +68202,Brooklyn,0,0,1,0,0,0,1 +68350,Brooklyn,0,0,0,0,3,0,8 +68352,Brooklyn,0,0,0,0,3,0,8 +68349,Brooklyn,0,0,0,0,3,0,8 +68199,Queens,0,1,0,0,0,0,1 +68200,Queens,0,0,1,0,0,0,1 +68345,Brooklyn,0,0,2,0,0,0,8 +68346,Brooklyn,0,0,2,0,0,0,8 +61877,Manhattan,3,0,0,0,0,0,3 +61877,Manhattan,7,0,1,0,0,0,8 +68197,Queens,0,0,1,0,0,0,1 +68343,Brooklyn,0,0,13,0,0,0,57 +68344,Brooklyn,0,0,4,0,0,0,20 +68341,Queens,0,0,0,7,0,0,23 +68342,Brooklyn,0,0,0,0,11,0,35 +68195,Queens,0,0,1,0,0,0,1 +68339,Brooklyn,0,0,0,0,2,0,6 +68340,Manhattan,0,0,0,0,7,0,22 +49147,Manhattan,0,0,0,15,0,0,15 +68182,Brooklyn,0,0,1,0,0,0,1 +68193,Queens,0,0,1,0,0,0,1 +68338,Brooklyn,0,0,0,0,3,0,8 +68336,Brooklyn,0,0,0,0,3,0,8 +68337,Queens,0,0,0,0,23,0,74 +68183,Brooklyn,0,0,1,0,0,0,1 +44218,Manhattan,0,101,101,0,93,2,404 +44256,Manhattan,129,0,69,0,0,1,199 +48038,Manhattan,0,14,14,0,0,1,29 +68087,Brooklyn,0,0,2,0,0,0,8 +63168,Manhattan,0,0,7,0,0,0,43 +64492,Bronx,6,30,36,0,0,0,72 +66653,Manhattan,135,0,0,0,0,1,136 +66931,Brooklyn,0,7,0,0,0,0,33 +67577,Manhattan,19,293,0,0,0,0,312 +67577,Manhattan,19,292,0,0,0,1,312 +67577,Manhattan,27,285,0,0,0,0,312 +67577,Manhattan,16,296,0,0,0,0,312 +67577,Manhattan,17,294,0,0,0,1,312 +67577,Manhattan,26,286,0,0,0,0,312 +61931,Queens,0,160,0,90,284,1,800 +62102,Brooklyn,18,36,125,0,0,1,180 +62109,Brooklyn,0,27,37,63,127,1,255 +63209,Queens,0,80,0,65,40,1,394 +63877,Bronx,114,0,0,0,0,1,115 +68075,Manhattan,0,0,0,0,5,0,14 +65054,Bronx,7,25,18,0,0,1,51 +65054,Bronx,0,17,12,0,0,1,30 +65054,Bronx,3,11,10,0,0,0,24 +65054,Bronx,0,12,11,0,0,1,24 +65054,Bronx,0,18,20,0,0,1,39 +65054,Bronx,0,27,14,0,0,1,42 +65054,Bronx,2,13,15,0,0,0,30 +65054,Bronx,12,2,11,0,0,1,26 +65054,Bronx,0,17,13,0,0,1,31 +65054,Bronx,0,20,8,0,0,1,29 +65054,Bronx,0,17,12,0,0,0,29 +65054,Bronx,0,30,18,0,0,1,49 +65054,Bronx,0,62,48,0,0,1,111 +68066,Brooklyn,0,0,0,0,3,0,9 +63778,Queens,0,0,138,0,0,0,139 +65341,Brooklyn,250,4,1,4,0,0,259 +66651,Bronx,176,0,0,0,0,1,177 +67687,Bronx,0,0,50,1,0,0,51 +67687,Bronx,0,0,16,4,0,1,21 +67687,Bronx,0,0,26,1,0,0,27 +67687,Bronx,0,0,35,10,0,0,45 +67687,Bronx,0,0,39,7,0,0,46 +67687,Bronx,0,0,24,1,0,0,25 +67687,Bronx,0,1,24,3,0,0,28 +67687,Bronx,0,0,27,6,0,1,34 +67687,Bronx,0,0,20,1,0,0,21 +67687,Bronx,0,0,23,1,0,0,24 +67687,Bronx,0,0,19,2,0,0,21 +68065,Brooklyn,0,0,0,0,14,0,45 +68063,Bronx,0,0,0,0,3,0,8 +63154,Manhattan,0,69,33,68,170,1,341 +66929,Brooklyn,0,12,0,0,0,0,12 +68010,Brooklyn,0,0,1,0,0,0,1 +62241,Bronx,6,3,5,9,0,1,24 +62241,Bronx,3,1,2,8,0,0,14 +65523,Manhattan,6,4,11,0,0,1,22 +68009,Queens,0,0,1,0,0,0,1 +66342,Brooklyn,0,0,64,0,0,0,65 +68008,Queens,0,0,1,0,0,0,1 +64671,Bronx,0,0,4,31,0,1,36 +67723,Brooklyn,0,0,6,0,0,0,6 +67723,Brooklyn,0,0,12,0,0,0,12 +67723,Brooklyn,0,0,12,0,0,0,12 +67723,Brooklyn,0,0,9,0,0,0,9 +67723,Brooklyn,0,0,11,0,0,0,12 +68061,Brooklyn,0,0,0,0,3,0,9 +68062,Brooklyn,0,0,0,0,3,0,8 +68062,Brooklyn,0,0,0,0,3,0,8 +68006,Queens,0,0,1,0,0,0,1 +68060,Brooklyn,0,0,0,0,7,0,23 +66189,Brooklyn,0,0,28,0,0,0,318 +66005,Queens,91,44,7,0,0,0,142 +66005,Queens,89,48,7,0,0,0,144 +66005,Queens,107,30,7,0,0,0,144 +66571,Queens,0,0,14,0,0,0,75 +61967,Manhattan,56,0,0,0,0,1,57 +67966,Bronx,0,0,0,3,0,0,3 +68005,Bronx,0,1,0,0,0,0,1 +68059,Queens,0,0,0,0,12,0,37 +67493,Manhattan,0,3,22,0,0,0,100 +67989,Bronx,0,0,1,0,0,0,1 +68058,Brooklyn,0,0,0,0,3,0,8 +49533,Brooklyn,0,143,243,0,0,1,387 +49533,Brooklyn,0,146,240,0,0,1,387 +49533,Brooklyn,0,151,235,0,0,1,387 +49533,Brooklyn,0,177,209,0,0,1,387 +49533,Brooklyn,0,174,212,0,0,1,387 +49533,Brooklyn,0,152,234,0,0,1,387 +49533,Brooklyn,0,145,241,0,0,1,387 +67982,Queens,0,0,1,0,0,0,1 +68055,Brooklyn,0,0,0,0,3,0,8 +68056,Brooklyn,0,0,0,0,3,0,8 +66144,Bronx,1,16,12,0,0,1,30 +66144,Bronx,0,4,4,0,0,0,8 +66144,Bronx,1,4,3,0,0,0,8 +66144,Bronx,0,0,0,0,0,0,21 +66144,Bronx,0,9,8,0,0,0,17 +66144,Bronx,1,10,5,0,0,1,17 +67684,Manhattan,0,0,24,0,0,0,141 +67987,Bronx,0,0,1,0,0,0,1 +67988,Staten Island,0,0,1,0,0,0,1 +67986,Queens,0,0,1,0,0,0,1 +67985,Queens,0,1,0,0,0,0,1 +67990,Bronx,0,1,0,0,0,0,1 +68054,Queens,0,0,6,0,0,0,28 +67984,Queens,0,0,1,0,0,0,1 +65599,Bronx,1,0,18,0,0,0,19 +68053,Brooklyn,0,0,0,0,3,0,8 +68052,Brooklyn,0,0,0,0,5,0,16 +68050,Brooklyn,0,0,2,0,0,0,8 +68051,Queens,0,0,0,0,10,0,33 +68049,Brooklyn,0,0,2,0,0,0,10 +68033,Brooklyn,0,0,0,0,3,0,10 +68047,Brooklyn,0,0,0,0,6,0,20 +68064,Brooklyn,72,0,127,0,0,1,200 +67942,Queens,0,0,1,0,0,0,1 +67944,Staten Island,0,1,0,0,0,0,1 +68032,Brooklyn,0,0,0,0,8,0,26 +64736,Bronx,41,27,0,0,0,0,68 +68031,Bronx,0,0,7,0,0,0,34 +68067,Brooklyn,0,0,0,0,15,0,50 +67937,Staten Island,0,0,1,0,0,0,1 +68029,Brooklyn,0,0,0,0,3,0,8 +68030,Brooklyn,0,0,0,0,6,0,6 +68030,Brooklyn,0,0,0,0,61,0,217 +68027,Bronx,0,0,4,0,0,0,18 +68028,Manhattan,0,0,0,0,28,0,550 +61608,Brooklyn,0,22,193,0,0,1,216 +67939,Brooklyn,0,0,1,0,0,0,1 +68025,Brooklyn,0,0,0,0,2,0,6 +68026,Brooklyn,0,0,0,0,3,0,7 +67803,Brooklyn,0,0,3,0,0,0,3 +68023,Brooklyn,0,0,0,0,3,0,8 +68021,Brooklyn,0,0,0,0,3,0,8 +68022,Brooklyn,0,0,0,0,3,0,7 +67428,Manhattan,0,0,5,12,0,0,17 +67428,Manhattan,14,1,1,0,0,1,17 +67429,Manhattan,23,7,3,1,0,1,35 +67429,Manhattan,17,5,0,3,0,0,25 +67490,Manhattan,39,7,2,0,0,1,49 +68020,Brooklyn,0,0,0,0,3,0,9 +63734,Brooklyn,88,0,0,0,0,1,89 +67938,Staten Island,0,0,1,0,0,0,1 +68019,Brooklyn,0,0,0,0,3,0,7 +67958,Brooklyn,0,0,1,0,0,0,1 +68018,Brooklyn,0,0,0,0,8,0,24 +68017,Brooklyn,0,0,0,0,5,0,16 +64376,Brooklyn,0,0,50,0,0,0,51 +68015,Brooklyn,0,0,0,0,3,0,9 +68016,Brooklyn,0,0,0,0,3,0,9 +68014,Brooklyn,0,0,0,0,51,0,170 +63931,Queens,0,0,9,0,0,0,48 +67856,Brooklyn,0,0,0,0,3,0,7 +67924,Bronx,0,0,0,1,0,0,1 +67925,Brooklyn,0,0,1,0,0,0,1 +67793,Bronx,0,0,3,0,0,0,3 +67457,Manhattan,0,46,13,0,0,0,59 +67457,Manhattan,0,49,10,0,0,0,59 +67457,Manhattan,0,146,18,0,0,0,164 +67457,Manhattan,0,147,17,0,0,0,164 +66805,Manhattan,0,0,8,0,0,0,8 +66805,Manhattan,1,0,12,0,0,0,13 +66805,Manhattan,0,0,35,8,4,1,48 +67855,Brooklyn,0,0,0,0,3,0,10 +67778,Queens,0,0,1,0,0,0,1 +67854,Brooklyn,0,0,0,0,3,0,8 +66752,Brooklyn,0,0,58,0,0,0,59 +67858,Brooklyn,0,0,4,0,0,0,20 +67731,Queens,0,0,3,0,0,0,3 +67779,Staten Island,0,0,1,0,0,0,1 +67852,Bronx,0,0,0,0,4,0,11 +67872,Bronx,0,0,0,0,8,0,26 +67780,Bronx,0,0,1,0,0,0,1 +67850,Brooklyn,0,0,0,0,3,0,10 +67869,Brooklyn,0,0,0,0,3,0,10 +67848,Bronx,0,0,0,0,8,0,24 +67846,Brooklyn,0,0,0,0,9,0,30 +67857,Queens,0,0,1,1,0,0,8 +67845,Brooklyn,0,0,0,0,3,0,16 +67845,Brooklyn,0,0,0,0,2,0,16 +67844,Brooklyn,0,0,0,0,4,0,24 +67844,Brooklyn,0,0,0,0,4,0,24 +67781,Bronx,0,0,1,0,0,0,1 +67843,Brooklyn,0,0,0,0,13,0,42 +67842,Bronx,0,0,0,0,6,0,17 +67868,Queens,0,0,0,0,3,0,10 +67666,Brooklyn,0,0,1,0,0,0,1 +67840,Manhattan,0,0,0,0,5,0,16 +67664,Queens,0,0,1,0,0,0,1 +67665,Bronx,0,0,1,0,0,0,1 +67839,Queens,0,0,0,0,3,0,10 +67838,Bronx,0,0,0,0,9,0,29 +67837,Brooklyn,0,0,0,0,6,0,17 +67634,Brooklyn,0,0,3,0,0,0,3 +67836,Brooklyn,0,0,0,0,3,0,10 +67663,Queens,0,1,0,0,0,0,1 +67835,Brooklyn,0,0,0,0,19,0,63 +67834,Brooklyn,0,0,0,0,6,0,19 +67751,Brooklyn,0,0,10,0,0,0,49 +67750,Brooklyn,0,0,0,0,3,0,8 +67748,Brooklyn,0,0,0,0,3,0,8 +67747,Brooklyn,0,0,0,0,6,0,20 +67745,Brooklyn,0,0,2,0,0,0,8 +67662,Bronx,0,0,1,0,0,0,1 +67743,Brooklyn,0,0,0,0,3,0,10 +67656,Bronx,0,0,1,0,0,0,1 +67742,Brooklyn,0,0,0,0,15,0,48 +67555,Manhattan,0,0,1,0,0,0,1 +67554,Brooklyn,0,0,1,0,0,0,1 +67741,Brooklyn,0,0,5,0,0,0,23 +67542,Brooklyn,0,0,1,0,0,0,1 +67549,Queens,0,0,1,0,0,0,1 +53010,Brooklyn,2,0,1,5,0,0,8 +65847,Manhattan,0,0,0,0,4,0,4 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,4,0,4 +65847,Manhattan,0,0,0,0,2,0,2 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,3,0,3 +65847,Manhattan,0,0,0,0,4,0,4 +67740,Brooklyn,0,0,0,0,8,0,25 +67739,Brooklyn,0,0,0,0,3,0,8 +67738,Brooklyn,0,0,0,0,6,0,20 +66569,Brooklyn,0,4,6,0,0,0,41 +67737,Bronx,0,0,0,0,5,0,16 +65337,Brooklyn,0,4,15,0,0,0,19 +50815,Staten Island,36,0,0,0,0,0,36 +67736,Brooklyn,0,0,4,0,0,0,20 +67735,Brooklyn,0,0,10,0,0,0,49 +67734,Brooklyn,0,0,0,0,30,0,99 +67732,Brooklyn,0,0,0,0,3,0,10 +67733,Manhattan,0,0,0,0,6,0,20 +63811,Manhattan,40,4,0,1,0,1,46 +63811,Manhattan,35,4,5,0,0,1,45 +63811,Manhattan,30,2,0,0,1,0,33 +63811,Manhattan,20,6,1,1,0,0,28 +66723,Manhattan,27,4,2,1,0,1,35 +66723,Manhattan,14,3,1,0,0,0,18 +66723,Manhattan,27,5,1,0,0,0,33 +66723,Manhattan,13,4,3,0,0,0,20 +66723,Manhattan,16,2,1,0,0,1,20 +66836,Manhattan,73,14,3,4,0,1,95 +66911,Manhattan,21,4,2,2,0,0,29 +66911,Manhattan,44,4,3,3,0,0,54 +66985,Brooklyn,0,0,2,0,0,0,2 +66985,Brooklyn,0,1,0,0,1,0,2 +66985,Brooklyn,1,1,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,0,1,1,0,0,0,2 +66985,Brooklyn,0,1,1,0,0,0,2 +66985,Brooklyn,0,0,0,0,2,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,1,0,0,0,1,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,0,0,1,0,1,0,2 +66985,Brooklyn,1,0,1,0,0,0,2 +66985,Brooklyn,1,0,1,0,0,0,2 +66985,Brooklyn,1,0,1,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,1,0,1,0,0,0,2 +66985,Brooklyn,1,1,0,0,0,0,2 +66985,Brooklyn,1,0,0,0,1,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,1,1,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,2,0,0,0,0,0,2 +66985,Brooklyn,1,0,1,0,0,0,2 +66985,Brooklyn,0,2,0,0,0,0,2 +51867,Manhattan,0,16,24,0,38,1,79 +52986,Manhattan,20,3,1,0,0,1,25 +52986,Manhattan,6,11,3,0,0,0,20 +52986,Manhattan,4,14,2,0,0,0,20 +54377,Brooklyn,1,18,22,8,0,1,50 +59107,Brooklyn,59,7,4,0,0,1,71 +59107,Brooklyn,40,5,3,0,0,0,48 +59107,Brooklyn,41,4,2,1,0,0,48 +63761,Queens,20,39,193,134,0,1,387 +63763,Brooklyn,90,89,244,22,0,1,446 +65363,Bronx,4,189,21,4,4,0,222 +65363,Bronx,2,197,16,6,5,0,226 +65363,Bronx,3,206,12,4,1,0,226 +65363,Bronx,5,205,13,0,3,0,226 +65373,Manhattan,2,9,1,0,0,0,12 +65373,Manhattan,1,6,3,0,0,0,10 +65373,Manhattan,2,6,2,0,0,0,10 +65373,Manhattan,2,7,1,0,0,0,10 +65373,Manhattan,1,5,13,0,0,1,20 +65373,Manhattan,0,8,12,0,0,0,20 +65374,Manhattan,0,0,98,34,0,1,133 +65621,Brooklyn,119,0,0,0,0,0,119 +65621,Brooklyn,118,0,0,0,0,1,119 +65621,Brooklyn,119,0,0,0,0,0,119 +65730,Bronx,4,13,2,0,0,1,20 +65730,Bronx,2,17,1,0,0,0,20 +65730,Bronx,1,13,0,0,0,1,15 +65730,Bronx,0,17,8,0,0,0,25 +65730,Bronx,0,8,4,0,0,1,13 +65730,Bronx,0,24,11,0,0,2,37 +66145,Bronx,0,18,2,0,0,1,21 +66145,Bronx,1,25,9,0,0,0,35 +66145,Bronx,1,11,7,0,0,1,20 +66145,Bronx,1,11,3,0,0,1,16 +66145,Bronx,0,14,18,0,0,0,32 +66721,Manhattan,33,5,2,0,0,1,41 +66721,Manhattan,30,7,2,0,0,1,40 +66769,Queens,30,30,81,0,0,1,142 +66834,Manhattan,13,2,1,0,0,0,16 +66834,Manhattan,15,6,1,0,1,0,23 +66834,Manhattan,27,4,4,0,0,0,35 +66834,Manhattan,13,4,0,0,0,0,17 +67327,Queens,0,0,0,1,0,0,1 +67336,Queens,0,0,0,1,0,0,1 +67341,Queens,0,1,0,0,0,0,1 +67354,Queens,1,0,0,0,0,0,1 +67356,Queens,0,1,0,0,0,0,1 +67358,Queens,0,0,0,2,0,0,2 +67359,Queens,0,0,2,0,0,0,2 +67362,Staten Island,0,0,1,0,0,0,1 +67365,Brooklyn,0,0,4,0,0,0,4 +67373,Brooklyn,0,0,2,0,0,0,2 +67376,Staten Island,0,0,0,2,0,0,2 +67379,Staten Island,0,0,2,0,0,0,2 +67380,Brooklyn,0,0,0,1,0,0,1 +67382,Bronx,0,0,0,2,0,0,2 +67384,Bronx,0,3,0,0,0,0,3 +67385,Bronx,0,0,0,2,0,0,2 +67389,Bronx,0,1,0,0,0,0,1 +67400,Brooklyn,0,0,0,2,0,0,2 +67413,Brooklyn,0,0,2,0,0,0,2 +67414,Brooklyn,0,0,2,0,0,0,2 +67421,Bronx,0,0,0,3,0,0,3 +67427,Manhattan,0,220,0,0,0,0,220 +67427,Manhattan,0,207,0,0,0,0,207 +67427,Manhattan,0,226,0,0,0,0,226 +67427,Manhattan,0,124,0,0,0,0,124 +67427,Manhattan,0,206,0,0,0,2,208 +67427,Manhattan,0,124,0,0,0,0,124 +68096,Bronx,46,0,32,0,0,0,78 +58666,Brooklyn,88,25,12,0,0,1,126 +63122,Bronx,121,0,0,0,0,1,122 +63769,Brooklyn,38,2,59,0,0,1,100 +65269,Bronx,0,19,39,0,0,1,59 +65348,Brooklyn,110,57,0,0,0,1,168 +65362,Brooklyn,16,8,4,0,0,1,29 +65362,Brooklyn,16,7,3,1,1,1,29 +65362,Brooklyn,13,9,0,2,0,0,24 +65362,Brooklyn,14,5,4,4,0,0,27 +65362,Brooklyn,11,8,3,1,0,1,24 +65362,Brooklyn,15,8,6,0,0,1,30 +65362,Brooklyn,14,6,2,1,0,1,24 +65362,Brooklyn,24,7,0,3,0,1,35 +65362,Brooklyn,16,5,1,2,0,0,24 +65362,Brooklyn,12,5,2,2,0,1,22 +65362,Brooklyn,18,1,2,1,0,0,22 +65362,Brooklyn,20,4,2,2,0,1,29 +65362,Brooklyn,16,4,6,2,0,1,29 +67302,Brooklyn,0,0,2,0,0,0,8 +67369,Bronx,0,0,0,2,0,0,2 +67375,Brooklyn,0,0,2,0,0,0,2 +67377,Bronx,0,2,0,0,0,0,2 +67381,Bronx,0,0,1,0,0,0,1 +67386,Bronx,0,0,0,2,0,0,2 +67412,Brooklyn,0,0,0,1,0,0,1 +61625,Bronx,49,3,0,0,0,0,52 +61799,Bronx,75,86,157,0,0,1,319 +63771,Bronx,46,29,32,0,0,1,108 +64885,Queens,67,68,320,0,0,2,457 +65983,Queens,158,0,0,0,0,1,159 +67303,Brooklyn,0,0,0,0,4,0,12 +67425,Bronx,0,0,85,0,0,1,86 +67425,Bronx,0,0,71,0,0,1,72 +67425,Bronx,0,0,83,0,0,1,84 +67426,Manhattan,139,0,0,0,0,0,139 +67426,Manhattan,241,163,0,0,0,1,405 +67426,Manhattan,107,0,0,0,0,1,108 +63367,Manhattan,71,0,45,0,0,1,117 +65227,Bronx,5,3,8,0,0,0,16 +65227,Bronx,28,11,33,1,0,0,73 +65227,Bronx,4,5,7,0,0,0,16 +65227,Bronx,27,2,20,0,0,0,49 +65227,Bronx,16,4,19,1,0,0,40 +65227,Bronx,37,10,31,3,0,0,81 +65227,Bronx,17,2,16,0,0,0,35 +65227,Bronx,16,1,11,1,0,0,29 +65227,Bronx,17,2,15,0,0,0,34 +65227,Bronx,21,6,15,2,0,0,44 +65227,Bronx,23,8,18,0,0,0,49 +65227,Bronx,29,19,17,1,0,0,66 +65227,Bronx,8,8,13,0,0,0,29 +65227,Bronx,15,2,12,0,0,0,29 +65227,Bronx,18,8,15,2,0,0,43 +65227,Bronx,23,6,11,0,0,0,40 +65227,Bronx,17,6,5,1,0,0,29 +65227,Bronx,17,10,13,2,0,0,42 +65227,Bronx,10,6,4,0,0,0,20 +65227,Bronx,23,11,17,2,0,0,53 +65227,Bronx,16,5,8,2,0,0,31 +65227,Bronx,18,7,14,2,0,0,41 +65227,Bronx,20,0,9,1,0,0,30 +65227,Bronx,19,3,10,0,0,0,32 +65227,Bronx,21,3,11,3,0,0,38 +65227,Bronx,13,5,4,2,0,0,24 +65227,Bronx,31,3,23,2,0,0,59 +65227,Bronx,11,4,4,0,0,0,19 +65227,Bronx,7,2,8,0,0,0,17 +65227,Bronx,8,3,8,1,0,0,20 +65227,Bronx,6,6,3,0,0,0,15 +65227,Bronx,12,6,13,0,0,0,31 +65227,Bronx,19,3,14,0,0,0,36 +65772,Brooklyn,0,12,0,0,0,0,79 +65773,Brooklyn,0,6,0,0,0,0,32 +61837,Manhattan,0,0,0,25,0,0,25 +61837,Manhattan,0,0,0,25,0,0,25 +61837,Manhattan,0,0,0,24,0,0,24 +61837,Manhattan,0,0,0,20,0,0,20 +63880,Bronx,46,40,74,0,0,1,161 +64252,Brooklyn,48,48,138,0,0,1,235 +66556,Brooklyn,67,8,1,0,0,1,77 +66810,Brooklyn,42,8,4,0,0,1,55 +67304,Queens,0,0,2,0,0,0,8 +67364,Brooklyn,0,0,0,1,0,0,1 +58623,Bronx,12,12,67,22,0,1,114 +61612,Brooklyn,40,40,116,0,0,1,197 +63172,Brooklyn,8,21,23,50,0,1,103 +63751,Bronx,16,15,97,23,0,1,152 +67231,Manhattan,24,0,16,0,0,0,40 +67278,Queens,0,0,1,0,0,0,1 +67279,Brooklyn,0,0,0,1,0,0,1 +67305,Brooklyn,0,0,2,0,0,0,10 +62210,Queens,5,66,0,0,0,1,72 +62210,Queens,56,16,0,0,0,0,72 +62210,Queens,4,68,0,0,0,0,72 +64436,Bronx,23,32,67,0,0,1,123 +64436,Bronx,15,18,35,0,0,0,68 +64436,Bronx,28,31,75,0,0,1,135 +67306,Brooklyn,0,0,2,0,0,0,7 +67348,Queens,0,0,0,1,0,0,1 +67415,Brooklyn,0,0,2,0,0,0,2 +48885,Manhattan,0,118,0,0,0,0,118 +48885,Manhattan,0,114,0,0,0,0,114 +48885,Manhattan,0,116,0,0,0,0,116 +48885,Manhattan,1,113,4,0,0,0,118 +48885,Manhattan,1,116,1,0,0,0,118 +48885,Manhattan,0,117,1,0,0,0,118 +48885,Manhattan,0,115,3,0,0,0,118 +48885,Manhattan,0,115,0,0,0,0,115 +48885,Manhattan,0,118,0,0,0,0,118 +48885,Manhattan,0,117,1,0,0,0,118 +48885,Manhattan,0,116,0,0,0,0,116 +48885,Manhattan,0,116,2,0,0,0,118 +48885,Manhattan,0,114,0,0,0,0,114 +48885,Manhattan,0,115,0,0,0,0,115 +64793,Queens,0,0,18,0,0,0,90 +64796,Manhattan,0,281,10,0,0,0,291 +66564,Bronx,2,3,42,12,0,1,60 +67370,Queens,0,0,2,0,0,0,2 +58555,Brooklyn,0,0,0,2,0,0,2 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +58555,Brooklyn,0,0,0,3,0,0,3 +60248,Brooklyn,6,10,4,0,0,0,20 +64186,Brooklyn,0,0,20,0,0,0,20 +67271,Queens,0,1,0,0,0,0,1 +67307,Manhattan,0,0,0,0,6,0,20 +60041,Manhattan,3,0,0,5,0,0,8 +63036,Brooklyn,53,8,14,0,0,1,76 +65578,Bronx,69,1,0,0,0,1,71 +67397,Queens,3,0,0,0,0,0,3 +67419,Queens,0,0,1,0,0,0,1 +63899,Brooklyn,0,0,24,0,0,0,100 +67308,Queens,0,0,0,0,3,0,7 +62209,Bronx,247,45,0,0,0,0,292 +67309,Queens,0,0,0,21,0,0,68 +65210,Manhattan,97,0,0,0,0,0,97 +67275,Brooklyn,0,0,1,0,0,0,1 +67310,Bronx,0,0,0,0,3,0,10 +66558,Brooklyn,0,4,0,1,0,0,5 +67311,Brooklyn,0,0,4,0,0,0,20 +67272,Queens,0,0,1,0,0,0,1 +67312,Brooklyn,0,0,0,0,13,0,41 +67401,Queens,0,1,0,0,0,0,1 +65205,Bronx,52,33,0,0,0,1,86 +67273,Queens,0,0,1,0,0,0,1 +67368,Queens,0,0,0,2,0,0,2 +67313,Bronx,0,0,0,0,3,0,10 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,3,0,0,3 +44340,Brooklyn,0,0,0,3,0,0,3 +44340,Brooklyn,0,0,0,3,0,0,3 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,3,0,0,3 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +44340,Brooklyn,0,0,0,2,0,0,2 +67314,Bronx,0,0,0,0,13,0,43 +67315,Manhattan,0,0,12,0,0,0,58 +67316,Brooklyn,0,0,0,0,3,0,9 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,80,50,0,0,0,130 +67403,Brooklyn,0,94,62,0,0,0,156 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,79,51,0,0,0,130 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,52,34,0,0,0,86 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,93,59,0,0,0,152 +67403,Brooklyn,0,94,62,0,0,0,156 +67403,Brooklyn,0,93,59,0,0,0,152 +67403,Brooklyn,0,92,60,0,0,0,152 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,52,0,0,0,132 +67403,Brooklyn,0,80,51,0,0,0,131 +67403,Brooklyn,0,92,60,0,0,0,152 +67403,Brooklyn,0,80,51,0,0,0,131 +67403,Brooklyn,0,77,51,0,0,0,128 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,51,33,0,0,0,84 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,95,62,0,0,0,157 +67403,Brooklyn,0,94,62,0,0,0,156 +67403,Brooklyn,0,95,61,0,0,0,156 +67403,Brooklyn,0,94,62,0,0,0,156 +67424,Staten Island,0,0,9,0,0,0,9 +67424,Staten Island,0,0,10,0,0,0,10 +67424,Staten Island,0,0,6,0,0,0,6 +67424,Staten Island,0,0,19,0,0,0,19 +67424,Staten Island,0,0,8,0,0,0,8 +67424,Staten Island,0,0,11,0,0,0,11 +67424,Staten Island,0,0,11,0,0,0,11 +63282,Brooklyn,0,0,21,0,0,0,101 +67317,Queens,0,0,0,0,59,0,194 +65543,Brooklyn,64,0,0,0,0,1,65 +67318,Brooklyn,0,0,40,0,0,0,193 +67319,Brooklyn,0,0,0,0,8,0,26 +67229,Bronx,0,0,1,0,0,0,1 +67320,Brooklyn,0,0,0,0,12,0,37 +67321,Brooklyn,0,0,0,0,3,0,10 +63800,Bronx,69,8,37,0,0,1,115 +67322,Brooklyn,0,0,0,0,27,0,90 +67189,Bronx,0,0,0,4,0,0,4 +67323,Brooklyn,0,0,0,0,39,0,130 +66947,Brooklyn,0,0,18,0,0,0,90 +67228,Brooklyn,0,0,1,0,0,0,1 +67324,Brooklyn,0,0,0,0,6,0,20 +67423,Brooklyn,43,43,334,0,0,2,422 +67325,Brooklyn,0,0,0,0,4,0,13 +67291,Bronx,0,0,0,4,0,0,13 +62163,Bronx,0,0,6,0,0,0,6 +62208,Bronx,0,0,6,0,0,0,6 +62208,Bronx,0,0,5,0,0,0,5 +67226,Queens,0,0,1,0,0,0,1 +67227,Queens,0,0,1,0,0,0,1 +67292,Brooklyn,0,0,6,0,0,0,28 +67293,Brooklyn,0,0,16,0,0,0,64 +67294,Brooklyn,0,0,0,0,3,0,8 +67225,Bronx,0,0,0,1,0,0,1 +65453,Queens,0,0,1,0,0,0,1 +65453,Queens,0,0,1,0,0,0,1 +65453,Queens,0,0,1,0,0,0,1 +65775,Manhattan,0,0,9,0,8,0,55 +67224,Queens,0,0,1,0,0,0,1 +67295,Bronx,0,0,0,0,7,0,35 +65649,Brooklyn,0,0,3,0,0,0,20 +65649,Brooklyn,0,0,4,0,0,0,19 +67296,Bronx,0,0,15,0,0,0,72 +61575,Brooklyn,17,15,34,0,0,1,67 +61630,Manhattan,0,1,33,0,0,1,35 +67161,Staten Island,0,0,1,0,0,0,1 +67297,Brooklyn,0,0,0,0,3,0,10 +67298,Brooklyn,0,0,0,0,16,0,51 +67299,Brooklyn,0,0,0,2,9,0,35 +67300,Bronx,0,0,0,0,5,0,16 +67158,Brooklyn,0,0,1,0,0,0,1 +67337,Brooklyn,0,0,0,0,7,0,24 +66901,Brooklyn,0,0,0,0,0,0,126 +66901,Brooklyn,0,0,25,0,75,0,140 +67156,Bronx,0,0,0,1,0,0,1 +67338,Brooklyn,0,0,0,0,9,0,29 +67339,Manhattan,0,0,0,0,5,0,16 +59464,Brooklyn,0,0,11,0,0,0,55 +67152,Brooklyn,0,1,0,0,0,0,1 +67146,Brooklyn,0,0,1,0,0,0,1 +67145,Staten Island,0,0,1,0,0,0,1 +67340,Brooklyn,0,0,0,0,35,0,116 +66702,Manhattan,0,0,35,0,0,0,112 +67159,Brooklyn,0,0,1,0,0,0,1 +66986,Brooklyn,0,0,1,0,0,0,1 +66983,Queens,0,0,1,0,0,0,1 +66987,Bronx,0,0,1,0,0,0,1 +66981,Staten Island,0,0,1,0,0,0,1 +67342,Brooklyn,0,0,13,0,0,0,63 +67343,Manhattan,0,0,0,0,21,0,104 +66268,Brooklyn,0,0,34,0,21,0,182 +66977,Staten Island,0,0,1,0,0,0,1 +66974,Bronx,0,1,0,0,0,0,1 +67345,Brooklyn,0,0,6,0,0,0,30 +65774,Brooklyn,0,0,66,0,0,0,332 +67346,Brooklyn,0,0,0,6,0,0,20 +66889,Brooklyn,0,0,0,4,0,0,4 +65541,Manhattan,0,0,137,0,0,0,138 +66848,Queens,0,0,1,0,0,0,1 +65357,Bronx,0,15,23,2,0,0,40 +65357,Bronx,3,17,24,0,0,1,45 +65357,Bronx,0,16,23,5,0,0,44 +65357,Bronx,0,23,32,6,0,1,62 +65357,Bronx,0,15,21,4,0,0,40 +65357,Bronx,2,15,18,4,0,1,40 +65357,Bronx,0,11,21,2,0,1,35 +65357,Bronx,0,14,12,0,0,1,27 +65357,Bronx,0,17,7,0,0,0,24 +65357,Bronx,0,17,18,0,0,0,35 +65357,Bronx,0,18,8,0,0,0,26 +65357,Bronx,0,12,13,0,0,1,26 +65357,Bronx,0,36,17,0,0,0,53 +55223,Bronx,0,0,56,0,0,1,57 +66846,Queens,0,0,0,1,0,0,1 +67347,Bronx,0,1,1,0,0,0,8 +67008,Manhattan,0,0,0,0,5,0,15 +64636,Manhattan,0,0,5,0,0,0,140 +67162,Staten Island,0,0,1,0,0,0,1 +67349,Brooklyn,0,0,0,0,3,0,7 +67006,Brooklyn,0,0,8,0,0,0,39 +67350,Manhattan,0,0,16,0,34,0,160 +48768,Bronx,4,121,6,0,0,1,132 +67351,Brooklyn,0,0,0,0,5,0,16 +67009,Brooklyn,0,0,0,0,3,0,8 +67013,Manhattan,0,0,36,13,0,1,50 +67013,Manhattan,0,0,38,12,0,0,50 +66717,Brooklyn,0,0,0,3,0,0,3 +62289,Brooklyn,50,4,16,0,0,1,71 +63939,Manhattan,108,19,6,0,1,1,135 +63941,Manhattan,160,13,3,6,0,1,183 +67056,Staten Island,0,0,1,0,0,0,1 +64756,Bronx,0,4,3,0,0,0,7 +64756,Bronx,0,5,1,0,0,1,7 +64756,Bronx,0,3,4,0,0,0,7 +66765,Bronx,0,0,1,0,0,0,1 +63014,Bronx,0,12,18,0,0,1,31 +66763,Brooklyn,0,0,1,0,0,0,1 +66758,Brooklyn,0,0,1,0,0,0,1 +66754,Bronx,0,0,1,0,0,0,1 +67011,Bronx,0,0,0,0,5,0,15 +67010,Manhattan,0,0,0,0,4,0,13 +66753,Staten Island,0,0,1,0,0,0,1 +67352,Manhattan,0,0,0,0,10,0,32 +66689,Brooklyn,0,0,0,3,0,0,3 +67007,Brooklyn,0,0,6,0,0,0,29 +67012,Brooklyn,0,0,9,0,0,0,44 +67353,Manhattan,0,0,5,0,0,0,23 +61388,Manhattan,0,10,43,33,35,0,263 +51302,Bronx,56,58,99,67,0,1,281 +51302,Bronx,43,44,73,54,0,1,215 +54360,Brooklyn,3,1,4,0,0,0,8 +54360,Brooklyn,0,0,8,0,0,0,8 +54360,Brooklyn,3,2,3,0,0,0,8 +54360,Brooklyn,3,2,3,0,0,0,8 +54360,Brooklyn,0,0,8,0,0,0,8 +54360,Brooklyn,2,3,3,0,0,0,8 +54360,Brooklyn,2,3,3,0,0,0,8 +54360,Brooklyn,0,0,8,0,0,0,8 +54360,Brooklyn,2,2,4,0,0,0,8 +54360,Brooklyn,3,2,3,0,0,0,8 +54360,Brooklyn,3,2,3,0,0,0,8 +54360,Brooklyn,0,0,7,0,0,1,8 +54360,Brooklyn,1,3,4,0,0,0,8 +54360,Brooklyn,2,4,2,0,0,0,8 +54360,Brooklyn,0,0,8,0,0,0,8 +54360,Brooklyn,2,2,4,0,0,0,8 +54360,Brooklyn,2,2,4,0,0,0,8 +54360,Brooklyn,0,0,8,0,0,0,8 +54360,Brooklyn,2,2,4,0,0,0,8 +54360,Brooklyn,2,2,4,0,0,0,8 +58936,Bronx,120,0,94,0,0,1,215 +61357,Bronx,35,52,87,0,0,1,175 +62962,Bronx,19,38,112,19,0,1,189 +63913,Brooklyn,0,19,28,0,46,1,94 +64297,Brooklyn,0,0,20,0,0,0,96 +65213,Bronx,74,74,217,0,0,1,366 +65389,Brooklyn,30,16,2,3,0,1,52 +65825,Brooklyn,0,0,12,0,8,0,64 +58661,Brooklyn,0,0,9,5,0,0,14 +61186,Bronx,88,0,0,0,0,1,89 +65573,Brooklyn,0,0,16,0,25,0,136 +59417,Brooklyn,0,0,7,0,0,0,34 +61849,Bronx,0,0,454,2,0,0,456 +61849,Bronx,0,0,407,7,0,1,415 +61571,Manhattan,0,9,9,0,5,0,88 +61628,Bronx,43,1,0,0,0,1,45 +66457,Staten Island,0,0,1,0,0,0,1 +66459,Queens,0,0,1,0,0,0,1 +66460,Bronx,0,0,1,0,0,0,1 +59429,Manhattan,0,0,11,0,0,0,130 +63775,Queens,26,25,75,0,0,1,127 +65364,Manhattan,0,0,0,10,0,0,10 +65364,Manhattan,0,0,0,24,0,1,25 +66455,Bronx,0,0,0,1,0,0,1 +60425,Brooklyn,15,8,33,0,0,1,57 +66446,Staten Island,0,0,0,1,0,0,1 +61639,Bronx,4,15,1,0,0,0,20 +61639,Bronx,2,20,2,0,0,0,24 +61639,Bronx,7,32,3,0,0,0,42 +61639,Bronx,4,15,1,0,0,1,21 +66438,Staten Island,0,0,0,1,0,0,1 +66341,Queens,0,0,1,0,0,0,1 +66338,Bronx,0,0,1,0,0,0,1 +66339,Staten Island,0,0,1,0,0,0,1 +66340,Brooklyn,0,0,0,1,0,0,1 +66588,Queens,0,206,24,0,0,0,230 +66588,Queens,0,206,24,0,0,0,230 +66588,Queens,0,206,24,0,0,0,230 +66588,Queens,0,206,24,0,0,0,230 +66588,Queens,0,205,24,0,0,0,229 +66336,Brooklyn,0,0,0,1,0,0,1 +66337,Staten Island,0,0,1,0,0,0,1 +64399,Bronx,10,76,70,0,0,1,157 +64399,Bronx,11,76,69,0,0,1,157 +65361,Queens,7,0,454,454,1,1,917 +62203,Brooklyn,43,0,28,0,0,1,72 +66333,Bronx,0,0,0,1,0,0,1 +66332,Bronx,0,0,0,1,0,0,1 +66331,Manhattan,0,0,1,0,0,0,1 +61740,Bronx,83,0,0,0,0,1,84 +66330,Queens,0,0,1,0,0,0,1 +64510,Brooklyn,0,0,4,0,12,0,52 +66325,Queens,0,0,1,0,0,0,1 +58972,Bronx,230,38,14,0,0,1,283 +65246,Brooklyn,0,0,4,0,3,0,22 +65856,Manhattan,0,24,55,0,0,1,80 +66323,Queens,0,0,1,0,0,0,1 +66324,Bronx,0,0,0,1,0,0,1 +65831,Brooklyn,0,86,0,0,0,1,87 +66107,Brooklyn,0,0,0,3,0,0,3 +63289,Brooklyn,199,0,0,0,0,1,200 +63345,Brooklyn,15,15,113,0,0,1,144 +54838,Brooklyn,0,0,0,3,0,0,3 +54838,Queens,0,0,0,1,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,0,1,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,1,0,0,0,1 +54838,Queens,0,0,0,1,0,0,1 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,6,0,0,0,0,1,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,3,0,0,0,0,0,3 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +60426,Queens,7,0,0,0,0,0,7 +61728,Manhattan,28,34,30,0,0,1,93 +63332,Bronx,0,9,37,0,0,1,47 +63342,Bronx,2,5,4,0,0,0,11 +63342,Bronx,0,3,16,1,0,1,21 +63342,Bronx,1,8,13,0,0,0,22 +63343,Bronx,2,11,40,0,0,1,54 +63344,Bronx,0,4,39,1,0,1,45 +63344,Bronx,0,6,38,0,0,1,45 +63344,Bronx,3,9,36,0,0,1,49 +63344,Bronx,4,12,37,0,0,1,54 +63344,Bronx,3,11,48,0,0,1,63 +63344,Bronx,7,25,44,0,0,1,77 +63344,Bronx,0,4,12,0,0,1,17 +63790,Bronx,0,2,24,0,0,1,27 +63790,Bronx,0,8,40,0,0,1,49 +63790,Bronx,1,16,44,0,0,1,62 +63790,Bronx,0,2,15,0,0,0,17 +63790,Bronx,0,4,12,0,0,1,17 +63790,Bronx,1,5,20,0,0,1,27 +63790,Bronx,0,7,10,0,0,0,17 +63791,Bronx,0,4,46,0,0,1,51 +63791,Bronx,0,3,5,0,0,0,8 +63791,Bronx,2,3,3,0,0,0,8 +63791,Bronx,1,2,6,0,0,1,10 +63791,Bronx,0,2,12,0,0,0,14 +63793,Bronx,3,2,16,0,0,1,22 +63793,Bronx,3,3,16,0,0,0,22 +63793,Bronx,4,2,10,0,0,1,17 +63793,Bronx,1,6,10,0,0,0,17 +63793,Bronx,11,11,47,0,0,1,70 +63793,Bronx,5,9,33,0,0,1,48 +63793,Bronx,3,2,27,0,0,1,33 +63793,Bronx,1,8,16,0,0,1,26 +63793,Bronx,1,8,37,0,0,1,47 +63793,Bronx,8,11,27,0,0,1,47 +63793,Bronx,7,13,34,0,0,1,55 +63793,Bronx,2,10,25,0,0,1,38 +63794,Bronx,0,11,10,0,0,0,21 +63794,Bronx,1,8,11,0,0,1,21 +63794,Bronx,1,11,90,0,0,1,103 +63795,Bronx,1,6,51,0,0,1,59 +65506,Manhattan,0,17,20,0,9,0,164 +66037,Bronx,0,0,0,1,0,0,1 +66038,Bronx,0,0,1,0,0,0,1 +66586,Manhattan,0,90,30,0,0,0,120 +66586,Manhattan,0,76,38,0,0,0,114 +63808,Manhattan,14,76,29,0,0,1,120 +66025,Staten Island,0,1,0,0,0,0,1 +66033,Staten Island,0,0,0,1,0,0,1 +66032,Queens,0,1,0,0,0,0,1 +66035,Queens,0,0,0,1,0,0,1 +48608,Manhattan,0,2,8,0,0,0,10 +48608,Manhattan,0,4,18,0,0,1,23 +48608,Manhattan,0,8,47,0,0,1,56 +48608,Manhattan,0,3,15,0,0,1,19 +48608,Manhattan,0,0,4,0,0,0,4 +48608,Manhattan,0,0,9,0,0,0,9 +48608,Manhattan,0,0,4,0,0,0,4 +63888,Brooklyn,0,0,1,70,5,0,76 +67328,Staten Island,0,0,0,1,0,0,1 +66142,Brooklyn,0,2,0,0,0,0,2 +66422,Brooklyn,0,0,17,0,0,0,81 +66022,Staten Island,0,0,1,0,0,0,1 +66024,Staten Island,0,0,0,1,0,0,1 +63937,Manhattan,110,17,16,6,1,1,151 +64157,Manhattan,0,0,88,0,0,1,89 +66021,Bronx,0,0,1,0,0,0,1 +61593,Bronx,94,3,0,0,0,1,98 +66058,Manhattan,0,0,0,59,0,0,1175 +62211,Bronx,0,4,28,4,0,1,37 +62211,Bronx,4,6,36,5,0,1,52 +62211,Bronx,4,4,35,5,0,1,49 +65829,Queens,0,0,0,1,0,0,1 +65723,Brooklyn,0,0,0,3,0,0,3 +65821,Queens,0,0,0,1,0,0,1 +65830,Bronx,0,0,1,0,0,0,1 +65828,Staten Island,0,0,0,1,0,0,1 +65711,Bronx,0,3,0,0,0,0,3 +66054,Manhattan,0,0,5,0,0,0,20 +66060,Manhattan,0,0,0,0,37,0,729 +65827,Queens,0,0,1,0,0,0,1 +65820,Staten Island,0,0,1,0,0,0,1 +66055,Brooklyn,0,0,33,0,0,0,165 +60435,Brooklyn,10,0,0,0,0,0,10 +60435,Brooklyn,11,0,0,0,0,0,11 +65822,Bronx,0,0,1,0,0,0,1 +66059,Brooklyn,0,0,9,0,0,0,42 +65620,Bronx,0,0,0,1,0,0,1 +65624,Bronx,0,0,1,0,0,0,1 +65630,Queens,0,0,1,0,0,0,1 +65610,Staten Island,0,0,0,1,0,0,1 +65812,Bronx,0,0,1,0,0,0,1 +65611,Queens,0,0,0,1,0,0,1 +65619,Queens,0,0,0,1,0,0,1 +65617,Queens,0,0,0,1,0,0,1 +65618,Queens,0,0,0,1,0,0,1 +64892,Manhattan,0,6,14,0,0,1,21 +64892,Manhattan,0,6,13,0,0,1,20 +65596,Staten Island,0,0,1,0,0,0,1 +65615,Queens,0,0,1,0,0,0,1 +65485,Brooklyn,0,3,0,0,0,0,3 +62204,Brooklyn,0,2,4,0,0,0,6 +65608,Queens,0,0,1,0,0,0,1 +65454,Manhattan,0,0,0,1,0,0,1 +65457,Bronx,0,1,0,0,0,0,1 +61903,Bronx,0,8,16,0,0,1,25 +65443,Brooklyn,0,0,1,0,0,0,1 +65456,Bronx,0,0,0,1,0,0,1 +65441,Staten Island,0,0,1,0,0,0,1 +65444,Queens,0,0,1,0,0,0,1 +65386,Brooklyn,0,0,0,3,0,0,3 +65455,Bronx,0,0,1,0,0,0,1 +66056,Manhattan,0,0,2,0,0,0,8 +65439,Brooklyn,0,0,1,0,0,0,1 +66057,Brooklyn,0,0,2,0,0,0,8 +66053,Brooklyn,0,0,2,0,0,0,10 +59976,Bronx,0,170,0,0,0,1,171 +54954,Manhattan,15,8,45,6,0,1,75 +58860,Brooklyn,1,6,8,0,0,1,16 +58860,Brooklyn,7,5,4,0,0,0,16 +58860,Brooklyn,3,3,2,0,0,0,8 +58860,Brooklyn,1,7,2,0,0,0,10 +58860,Brooklyn,0,6,5,1,0,0,12 +58860,Brooklyn,0,3,2,0,0,0,5 +58860,Brooklyn,0,4,4,0,0,0,8 +58860,Brooklyn,0,3,0,0,0,0,3 +58860,Brooklyn,1,3,1,0,0,1,6 +58860,Brooklyn,1,1,6,0,0,0,8 +58860,Brooklyn,0,10,2,0,0,0,12 +58860,Brooklyn,2,27,5,1,0,1,36 +58860,Brooklyn,0,10,1,0,0,0,11 +58860,Brooklyn,2,8,1,0,0,0,11 +58860,Brooklyn,0,4,0,0,0,0,4 +58860,Brooklyn,0,5,3,0,0,0,8 +58860,Brooklyn,0,0,3,0,0,0,3 +58860,Brooklyn,2,5,0,0,0,0,7 +58860,Brooklyn,7,65,27,0,0,1,100 +58860,Brooklyn,0,8,0,0,0,0,8 +58860,Brooklyn,0,2,0,0,0,0,2 +58860,Brooklyn,0,3,0,0,0,0,3 +58860,Brooklyn,0,0,6,0,0,0,6 +58860,Brooklyn,1,7,7,0,0,1,16 +58860,Brooklyn,2,1,0,0,0,0,3 +58860,Brooklyn,1,2,3,0,0,0,6 +58860,Brooklyn,6,12,6,0,0,1,25 +58860,Brooklyn,2,3,2,0,0,0,7 +58860,Brooklyn,1,2,4,0,0,0,7 +58860,Brooklyn,0,4,0,0,0,0,4 +58860,Brooklyn,10,10,7,1,0,1,29 +58860,Brooklyn,2,2,4,0,0,0,8 +58860,Brooklyn,0,12,0,0,0,0,12 +58860,Brooklyn,2,14,1,0,0,1,18 +58860,Brooklyn,1,5,0,0,0,0,6 +58860,Brooklyn,2,8,3,0,0,0,13 +58860,Brooklyn,3,4,8,0,0,1,16 +58860,Brooklyn,0,3,0,0,0,0,3 +58860,Brooklyn,0,3,0,0,0,0,3 +58860,Brooklyn,2,1,1,0,0,0,4 +58860,Brooklyn,1,0,2,0,0,0,3 +58860,Brooklyn,0,11,19,4,0,1,35 +58860,Brooklyn,1,14,13,1,0,0,29 +63221,Bronx,75,81,2,0,0,1,159 +63760,Manhattan,0,9,29,0,0,1,39 +65051,Bronx,0,0,0,2,0,0,2 +65078,Queens,0,0,1,0,0,0,1 +65084,Brooklyn,0,0,1,0,0,0,1 +65087,Staten Island,0,1,0,0,0,0,1 +65122,Queens,0,0,1,0,0,0,1 +65142,Queens,0,1,0,0,0,0,1 +65156,Queens,0,0,0,1,0,0,1 +65158,Brooklyn,0,0,0,3,0,0,3 +65159,Brooklyn,0,0,2,0,0,0,2 +65160,Brooklyn,0,0,0,1,0,0,1 +65162,Brooklyn,0,1,0,0,0,0,1 +65163,Bronx,0,0,3,0,0,0,3 +65164,Queens,2,0,0,0,0,0,2 +65165,Bronx,0,0,0,3,0,0,3 +65167,Bronx,0,0,0,2,0,0,2 +65168,Brooklyn,0,0,3,0,0,0,3 +65170,Queens,0,0,0,1,0,0,1 +65172,Brooklyn,0,2,0,0,0,0,2 +65189,Queens,0,196,293,0,0,0,489 +65189,Queens,0,197,292,0,0,0,489 +51301,Bronx,97,0,63,0,0,1,161 +51868,Manhattan,80,119,120,0,80,1,400 +59474,Manhattan,0,8,1,0,0,0,9 +59474,Manhattan,1,4,4,0,0,0,9 +59474,Manhattan,10,4,3,0,0,0,17 +59474,Manhattan,10,17,23,0,0,1,51 +59474,Manhattan,7,9,3,0,0,1,20 +59474,Manhattan,1,14,22,0,0,1,38 +59474,Manhattan,0,5,5,0,0,0,10 +59474,Manhattan,1,6,2,0,0,0,9 +59474,Manhattan,2,5,2,0,0,0,9 +59474,Manhattan,6,20,10,0,0,0,36 +59474,Manhattan,9,16,8,0,0,1,34 +59474,Manhattan,0,5,2,0,0,0,7 +59474,Manhattan,0,2,2,0,0,0,4 +59474,Manhattan,1,9,20,0,0,0,30 +59474,Manhattan,0,5,5,0,0,1,11 +59474,Manhattan,0,5,4,0,0,0,9 +59474,Manhattan,2,5,2,0,0,0,9 +59474,Manhattan,1,7,1,0,0,0,9 +59474,Manhattan,1,4,5,0,0,0,10 +59474,Manhattan,6,4,8,0,0,0,18 +59474,Manhattan,0,6,4,0,0,0,10 +60327,Bronx,71,0,46,0,0,1,118 +60996,Bronx,0,159,0,0,0,1,160 +60996,Bronx,0,160,0,0,0,0,160 +61701,Manhattan,45,4,1,0,0,0,50 +61841,Bronx,158,0,0,0,0,1,159 +61848,Brooklyn,5,57,0,0,0,0,62 +61848,Brooklyn,3,59,0,0,0,1,63 +63732,Brooklyn,0,0,96,0,0,0,443 +63732,Brooklyn,0,0,87,0,0,0,468 +63845,Manhattan,0,5,4,0,0,1,10 +63845,Manhattan,0,4,4,0,0,1,9 +63845,Manhattan,0,5,4,0,0,0,9 +63845,Manhattan,0,5,4,0,0,0,9 +63845,Manhattan,0,11,11,0,0,0,22 +63845,Manhattan,0,1,1,0,0,0,2 +63845,Manhattan,0,5,4,0,0,0,9 +63845,Manhattan,0,13,11,0,0,1,25 +63845,Manhattan,0,2,3,0,0,0,5 +63845,Manhattan,0,2,3,0,0,0,5 +63845,Manhattan,0,7,5,0,0,0,12 +63845,Manhattan,0,2,3,0,0,0,5 +63845,Manhattan,0,3,4,0,0,0,7 +63845,Manhattan,0,6,5,0,0,0,11 +63845,Manhattan,0,8,6,0,0,1,15 +63845,Manhattan,0,9,10,0,0,0,19 +63845,Manhattan,0,5,5,0,0,0,10 +63845,Manhattan,0,13,12,0,0,1,26 +63889,Brooklyn,0,0,19,52,0,0,71 +63890,Brooklyn,0,0,0,67,2,0,69 +65067,Queens,0,0,0,1,0,0,1 +65069,Staten Island,0,0,1,0,0,0,1 +65174,Brooklyn,0,0,1,0,0,0,1 +65190,Bronx,0,230,0,0,0,0,230 +65190,Bronx,0,230,0,0,0,0,230 +65190,Bronx,0,228,0,0,0,2,230 +65190,Bronx,0,39,0,0,0,0,39 +65190,Bronx,0,45,0,0,0,0,45 +65190,Bronx,0,45,0,0,0,0,45 +65190,Bronx,0,39,0,0,0,0,39 +65190,Bronx,0,39,0,0,0,0,39 +65190,Bronx,0,51,0,0,0,0,51 +48753,Bronx,4,73,7,0,0,1,85 +59388,Bronx,62,0,0,0,0,1,63 +61297,Bronx,40,17,126,6,0,1,190 +61609,Bronx,23,0,18,0,0,1,42 +61611,Bronx,8,14,29,42,0,1,94 +61611,Bronx,5,5,16,31,0,0,57 +61611,Bronx,10,7,58,38,0,1,114 +61842,Brooklyn,145,0,0,0,0,1,146 +61847,Bronx,0,89,14,0,0,1,104 +62227,Bronx,113,0,49,0,0,1,163 +65052,Brooklyn,0,0,1,0,0,0,1 +65059,Brooklyn,0,0,0,2,0,0,2 +65101,Bronx,0,1,0,0,0,0,1 +65146,Brooklyn,2,0,0,0,0,0,2 +44431,Bronx,12,8,62,0,0,0,82 +44431,Bronx,19,13,91,0,0,1,124 +53655,Bronx,7,17,17,5,0,1,47 +53655,Bronx,9,26,19,0,0,1,55 +53655,Bronx,3,7,3,0,0,0,13 +53655,Bronx,1,4,4,0,0,0,9 +53655,Bronx,4,10,9,1,0,1,25 +53655,Bronx,2,8,5,0,0,1,16 +53655,Bronx,2,4,2,0,0,1,9 +53655,Bronx,4,6,11,0,0,1,22 +53655,Bronx,2,0,1,1,0,0,4 +53655,Bronx,2,7,2,0,0,0,11 +53655,Bronx,22,31,23,1,0,1,78 +53655,Bronx,4,5,3,0,0,0,12 +61610,Bronx,0,0,16,28,0,1,45 +61802,Brooklyn,0,0,34,0,0,0,35 +65046,Brooklyn,0,0,0,2,0,0,2 +65050,Bronx,0,3,0,0,0,0,3 +65150,Bronx,0,0,1,0,0,0,1 +50347,Bronx,0,171,1,0,0,0,172 +59058,Bronx,13,18,20,0,0,1,52 +59411,Manhattan,0,7,9,0,0,0,67 +60027,Bronx,0,13,4,0,0,0,17 +60027,Bronx,0,4,5,0,0,1,10 +60027,Bronx,1,10,10,0,0,0,21 +60027,Bronx,3,15,7,0,0,0,25 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,3,0,0,0,0,3 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,3,0,0,0,0,3 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,5,0,0,0,0,5 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,5,0,0,0,0,5 +63840,Brooklyn,0,3,0,0,0,0,3 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,5,0,0,0,0,5 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,5,0,0,0,0,5 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,6,0,0,0,0,6 +63840,Brooklyn,0,18,0,0,0,0,18 +63840,Brooklyn,0,6,0,0,0,0,6 +63841,Bronx,0,86,0,0,0,0,86 +63842,Bronx,0,60,0,0,0,0,60 +63843,Brooklyn,0,20,0,0,0,0,20 +63843,Brooklyn,0,16,0,0,0,0,16 +63843,Brooklyn,0,16,0,0,0,0,16 +63843,Brooklyn,0,16,0,0,0,0,16 +63843,Brooklyn,0,12,0,0,0,0,12 +63843,Brooklyn,0,16,0,0,0,0,16 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,12,0,0,0,0,12 +63844,Brooklyn,0,6,0,0,0,0,6 +65049,Manhattan,0,0,0,2,0,0,2 +65057,Bronx,0,0,0,2,0,0,2 +65063,Brooklyn,0,0,0,2,0,0,2 +47878,Manhattan,0,0,0,9,0,0,9 +65028,Brooklyn,0,0,1,0,0,0,1 +65040,Brooklyn,0,0,0,1,0,0,1 +60484,Brooklyn,0,0,3,62,18,0,83 +60872,Manhattan,0,10,24,0,0,1,35 +60872,Manhattan,0,7,9,0,0,0,16 +60872,Manhattan,0,6,24,0,0,0,30 +60872,Manhattan,0,5,24,1,0,0,30 +63859,Queens,0,0,2,51,0,1,54 +63885,Brooklyn,0,0,14,130,11,0,155 +63887,Brooklyn,0,0,23,61,2,0,86 +65079,Queens,0,2,0,0,0,0,2 +62266,Bronx,1,6,35,0,0,1,43 +62267,Bronx,0,8,20,0,0,0,28 +62267,Bronx,0,7,20,0,0,1,28 +62268,Bronx,0,7,63,0,0,1,71 +62269,Bronx,0,26,130,0,0,1,157 +62270,Bronx,0,5,22,0,0,1,28 +62271,Manhattan,0,6,47,3,0,1,57 +60000,Manhattan,0,0,45,0,0,0,45 +63003,Queens,0,0,10,0,0,0,50 +65026,Bronx,0,0,0,1,0,0,1 +58885,Bronx,0,6,4,0,0,0,10 +58885,Bronx,0,6,1,0,0,0,7 +58885,Bronx,0,6,1,0,0,0,7 +65025,Brooklyn,0,0,1,0,0,0,1 +65047,Queens,0,2,0,0,0,0,2 +65056,Bronx,0,0,492,0,0,0,492 +60212,Brooklyn,0,0,68,0,9,0,78 +60213,Brooklyn,0,0,15,0,22,0,37 +65027,Bronx,0,0,0,1,0,0,1 +63358,Queens,38,13,16,1,0,1,69 +65060,Queens,0,0,0,2,0,0,2 +64268,Brooklyn,6,0,0,1,0,1,8 +64268,Brooklyn,3,0,0,0,0,0,3 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,13,1,1,0,0,1,16 +64268,Brooklyn,6,1,0,1,0,0,8 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,5,0,0,0,1,0,6 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,18,2,2,3,0,0,25 +64268,Brooklyn,25,3,1,2,0,1,32 +64268,Brooklyn,40,1,1,2,0,1,45 +64268,Brooklyn,14,0,1,1,0,0,16 +64268,Brooklyn,7,1,0,0,0,0,8 +64268,Brooklyn,15,0,0,0,0,1,16 +64268,Brooklyn,14,1,0,1,0,0,16 +64268,Brooklyn,5,2,0,1,0,0,8 +64268,Brooklyn,6,1,0,1,0,0,8 +64268,Brooklyn,9,1,1,1,0,0,12 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,2,1,0,0,0,0,3 +64268,Brooklyn,5,0,0,1,0,0,6 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,13,1,1,1,0,0,16 +64268,Brooklyn,6,2,0,0,0,0,8 +64268,Brooklyn,15,0,0,1,0,0,16 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,5,1,0,0,0,0,6 +64268,Brooklyn,1,2,0,0,0,0,3 +64268,Brooklyn,3,0,0,0,0,0,3 +64268,Brooklyn,3,0,0,0,0,0,3 +64268,Brooklyn,6,0,0,0,0,0,6 +64268,Brooklyn,5,1,1,1,0,0,8 +64268,Brooklyn,6,2,0,0,0,0,8 +64268,Brooklyn,16,0,0,0,0,0,16 +64268,Brooklyn,8,0,0,0,0,0,8 +64268,Brooklyn,6,2,0,0,0,0,8 +64268,Brooklyn,2,1,0,0,0,0,3 +58521,Manhattan,0,0,9,0,0,0,123 +58667,Brooklyn,0,0,22,0,0,0,23 +61627,Brooklyn,11,3,0,0,0,0,14 +61627,Brooklyn,47,9,1,0,0,1,58 +60740,Staten Island,0,0,24,0,0,0,115 +59382,Brooklyn,0,0,38,0,0,1,39 +59382,Brooklyn,0,0,35,0,0,0,35 +65104,Queens,0,0,6,0,0,0,28 +63356,Brooklyn,57,7,4,1,0,1,70 +65110,Brooklyn,0,0,15,0,0,0,75 +64865,Staten Island,0,0,1,0,0,0,1 +64866,Staten Island,0,0,1,0,0,0,1 +64868,Staten Island,0,0,1,0,0,0,1 +58621,Queens,0,17,113,43,0,1,174 +65116,Brooklyn,0,0,3,0,0,0,12 +49279,Manhattan,0,0,10,0,0,0,11 +65072,Brooklyn,0,0,14,0,0,0,70 +65074,Bronx,0,0,9,0,0,0,45 +65134,Queens,0,0,34,0,0,0,168 +58671,Brooklyn,54,8,27,0,0,0,89 +64859,Staten Island,0,0,1,0,0,0,1 +65143,Bronx,0,0,8,0,0,0,39 +64858,Staten Island,0,0,0,1,0,0,1 +64855,Queens,0,0,1,0,0,0,1 +64857,Staten Island,0,0,1,0,0,0,1 +64850,Queens,0,0,1,0,0,0,1 +64652,Staten Island,0,0,1,0,0,0,1 +63839,Manhattan,29,36,27,29,30,0,186 +63839,Manhattan,27,24,19,41,28,0,186 +63839,Manhattan,21,23,31,40,30,0,186 +63839,Manhattan,25,20,18,37,36,0,186 +63839,Manhattan,58,49,60,69,58,0,378 +63839,Manhattan,45,48,60,71,65,0,378 +63839,Manhattan,70,49,44,68,52,0,378 +63839,Manhattan,65,50,41,76,63,0,378 +63839,Manhattan,57,53,51,75,65,0,378 +63839,Manhattan,27,28,37,36,28,0,186 +62303,Brooklyn,0,26,6,0,0,1,33 +65103,Bronx,0,0,8,0,0,0,38 +64654,Staten Island,0,0,0,1,0,0,1 +64667,Brooklyn,0,0,3,0,0,0,3 +64655,Staten Island,0,0,1,0,0,0,1 +64653,Queens,0,0,1,0,0,0,1 +65124,Brooklyn,0,0,20,0,0,0,99 +63838,Bronx,0,0,126,0,0,1,127 +64453,Brooklyn,0,0,0,4,0,0,4 +64650,Staten Island,0,0,1,0,0,0,1 +64649,Queens,0,1,0,0,0,0,1 +64656,Staten Island,0,0,1,0,0,0,1 +54520,Bronx,65,0,152,0,0,1,218 +60020,Bronx,46,5,102,0,0,1,154 +60810,Bronx,33,16,100,17,0,1,167 +61405,Manhattan,16,38,49,19,30,1,153 +64646,Queens,0,0,1,0,0,0,1 +63121,Manhattan,0,0,22,0,0,0,108 +61902,Brooklyn,0,0,73,0,0,0,363 +64396,Brooklyn,0,0,0,1,0,0,1 +65136,Brooklyn,0,0,8,0,0,0,40 +59637,Manhattan,0,8,10,0,0,0,18 +59637,Manhattan,2,15,6,1,0,0,24 +64407,Brooklyn,0,0,0,0,2,0,2 +64394,Staten Island,0,0,1,0,0,0,1 +64395,Queens,0,0,1,0,0,0,1 +52735,Brooklyn,23,121,4,1,0,1,150 +64393,Brooklyn,0,1,0,0,0,0,1 +64384,Bronx,0,0,1,0,0,0,1 +64392,Queens,0,0,1,0,0,0,1 +65102,Bronx,0,0,3,0,0,0,14 +64301,Bronx,0,0,2,0,0,0,2 +64391,Staten Island,0,0,1,0,0,0,1 +59495,Bronx,40,0,70,25,0,1,136 +65036,Manhattan,0,0,72,0,0,1,73 +65086,Manhattan,0,0,0,0,7,0,33 +64381,Queens,0,0,1,0,0,0,1 +64379,Bronx,0,0,1,0,0,0,1 +64377,Queens,0,1,0,0,0,0,1 +64332,Bronx,0,0,1,0,0,0,1 +60034,Bronx,13,24,11,0,0,1,49 +60034,Bronx,0,0,0,0,0,0,26 +60034,Bronx,0,0,0,0,0,0,11 +60034,Bronx,0,0,0,0,0,0,14 +60034,Bronx,0,0,0,0,0,0,11 +60034,Bronx,0,0,0,0,0,0,11 +60034,Bronx,0,0,0,0,0,0,10 +51950,Brooklyn,0,0,1,0,0,0,1 +51950,Brooklyn,0,0,1,0,0,0,1 +51950,Brooklyn,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +51950,Queens,0,0,1,0,0,0,1 +52985,Bronx,40,9,3,0,0,0,52 +64106,Bronx,0,0,1,0,0,0,1 +64088,Bronx,0,0,1,0,0,0,1 +64645,Manhattan,0,0,2,0,0,0,35 +64645,Manhattan,0,0,0,0,2,0,9 +44332,Brooklyn,0,0,7,0,0,0,7 +44332,Brooklyn,0,0,10,0,0,0,10 +44332,Brooklyn,0,0,8,0,0,0,8 +64087,Staten Island,0,0,1,0,0,0,1 +64086,Bronx,0,0,1,0,0,0,1 +64085,Staten Island,0,0,1,0,0,0,1 +65097,Manhattan,0,0,5,0,0,0,21 +58876,Bronx,93,2,1,0,0,1,97 +58876,Bronx,94,1,1,0,0,1,97 +61655,Brooklyn,0,0,25,16,0,0,136 +63870,Bronx,0,0,1,0,0,0,1 +63868,Queens,0,0,1,0,0,0,1 +63869,Brooklyn,0,0,1,0,0,0,1 +63867,Staten Island,0,0,1,0,0,0,1 +60427,Manhattan,14,1,2,0,0,0,17 +60427,Manhattan,21,3,3,0,0,0,27 +60427,Manhattan,15,5,3,0,0,0,23 +60427,Manhattan,28,2,5,0,0,0,35 +60427,Manhattan,20,3,1,0,0,0,24 +63866,Bronx,0,0,1,0,0,0,1 +63865,Staten Island,0,0,1,0,0,0,1 +58388,Bronx,80,0,0,0,0,1,81 +63864,Queens,0,0,1,0,0,0,1 +52989,Brooklyn,0,0,19,0,0,0,91 +63863,Queens,0,0,1,0,0,0,1 +58756,Brooklyn,0,0,3,0,0,0,14 +65071,Bronx,0,0,7,0,0,0,34 +58966,Bronx,167,0,0,0,0,1,168 +60249,Bronx,0,60,59,0,0,1,120 +60249,Bronx,8,32,40,0,0,0,80 +63348,Brooklyn,0,0,2,0,0,0,2 +63349,Brooklyn,0,0,0,2,0,0,2 +63738,Bronx,0,0,1,0,0,0,1 +55264,Bronx,36,0,83,0,0,1,120 +58625,Queens,0,66,105,60,0,1,232 +60319,Bronx,0,0,27,25,0,1,53 +60342,Bronx,1,53,72,0,0,0,126 +60777,Manhattan,8,3,0,1,0,0,12 +63372,Manhattan,0,0,0,0,158,0,158 +63372,Manhattan,0,0,0,0,188,0,188 +63372,Manhattan,0,0,0,0,72,0,72 +63372,Manhattan,0,0,0,0,16,0,16 +44282,Manhattan,0,32,48,0,79,1,160 +44339,Bronx,46,60,182,16,0,1,305 +58864,Brooklyn,0,5,1,0,0,0,6 +58864,Brooklyn,2,12,2,0,0,0,16 +58864,Brooklyn,0,3,1,0,0,0,4 +58864,Brooklyn,1,3,2,0,0,0,6 +58864,Brooklyn,0,5,1,0,0,0,6 +58864,Brooklyn,2,6,3,0,0,0,11 +58864,Brooklyn,0,4,2,0,0,0,6 +58864,Brooklyn,1,4,1,0,0,0,6 +58889,Manhattan,39,7,279,1,0,1,327 +58891,Manhattan,0,2,10,0,0,1,13 +58891,Manhattan,0,2,1,0,0,1,4 +58891,Manhattan,0,1,2,0,0,0,3 +58891,Manhattan,0,6,3,0,0,0,9 +58891,Manhattan,0,8,2,0,0,1,11 +58891,Manhattan,0,3,0,0,0,0,3 +58891,Manhattan,0,7,2,0,0,0,9 +58891,Manhattan,0,4,1,0,0,0,5 +58891,Manhattan,1,14,9,0,0,0,24 +58891,Manhattan,1,12,9,0,0,2,24 +58891,Manhattan,0,3,7,0,0,0,10 +58891,Manhattan,0,6,4,0,0,0,10 +58891,Manhattan,4,8,3,0,0,0,15 +58891,Manhattan,0,8,7,0,0,0,15 +58891,Manhattan,0,7,7,0,0,0,14 +58891,Manhattan,0,31,28,0,0,1,60 +58891,Manhattan,0,7,1,0,0,0,8 +58891,Manhattan,0,6,2,0,0,0,8 +58891,Manhattan,0,6,8,0,0,0,14 +58891,Manhattan,0,10,8,0,0,0,18 +58891,Manhattan,0,16,14,0,0,0,30 +58891,Manhattan,0,5,3,0,0,0,8 +58891,Manhattan,0,15,3,0,0,0,18 +58891,Manhattan,0,13,10,0,0,1,24 +58891,Manhattan,0,11,13,0,0,0,24 +58891,Manhattan,0,1,2,0,0,0,3 +58891,Manhattan,0,7,2,0,0,0,9 +58891,Manhattan,0,9,1,0,0,0,10 +58891,Manhattan,0,4,1,0,0,0,5 +58891,Manhattan,0,4,0,0,0,0,4 +58891,Manhattan,0,3,0,0,0,0,3 +58891,Manhattan,1,3,10,0,0,0,14 +58891,Manhattan,0,10,3,0,0,0,13 +58891,Manhattan,0,4,0,0,0,0,4 +58891,Manhattan,0,12,5,0,0,1,18 +58891,Manhattan,0,0,8,0,0,0,8 +58891,Manhattan,0,0,4,0,0,0,4 +58891,Manhattan,0,5,1,0,0,0,6 +58891,Manhattan,1,13,2,0,0,0,16 +58891,Manhattan,0,6,2,0,0,0,8 +63369,Brooklyn,0,0,0,0,193,0,193 +60505,Bronx,8,8,24,0,0,1,41 +63717,Brooklyn,0,0,1,0,0,0,1 +52774,Queens,0,0,90,0,448,1,539 +52775,Queens,0,26,78,25,0,1,130 +58955,Bronx,20,20,139,44,0,0,223 +60779,Brooklyn,27,80,159,0,0,1,267 +58829,Bronx,15,45,7,0,0,1,68 +63373,Queens,0,0,40,0,0,0,40 +63373,Queens,0,0,40,0,0,0,40 +63373,Queens,0,0,32,0,0,0,32 +63373,Queens,0,0,217,0,0,0,217 +63373,Queens,0,0,56,0,0,0,56 +63373,Queens,0,0,16,0,0,0,16 +63373,Queens,0,0,40,0,0,0,40 +63373,Queens,0,0,32,0,0,0,32 +63373,Queens,0,0,206,0,0,0,206 +63373,Queens,0,0,198,0,0,0,198 +63373,Queens,0,0,216,0,0,0,216 +63371,Bronx,0,0,0,0,352,0,352 +63553,Queens,0,0,1,0,0,0,1 +59004,Brooklyn,0,0,26,0,0,0,134 +63737,Bronx,0,0,1,0,0,0,1 +63554,Brooklyn,0,0,1,0,0,0,1 +58926,Manhattan,3,1,0,0,0,0,29 +61713,Brooklyn,0,0,8,0,0,0,40 +63716,Bronx,0,0,1,0,0,0,1 +53557,Bronx,0,0,39,0,0,0,40 +53557,Bronx,0,0,39,0,0,0,39 +53557,Bronx,0,0,39,0,0,0,40 +53557,Bronx,0,0,39,0,0,0,39 +53557,Bronx,0,0,38,0,0,0,39 +53557,Bronx,0,0,39,0,0,0,39 +58793,Brooklyn,48,0,20,0,0,0,68 +61016,Brooklyn,0,0,100,0,0,0,500 +63335,Staten Island,0,0,0,1,0,0,1 +63736,Queens,0,0,1,0,0,0,1 +58631,Bronx,0,0,25,0,0,0,25 +63339,Queens,0,0,1,0,0,0,1 +63225,Brooklyn,0,0,1,0,0,0,1 +63274,Brooklyn,0,0,1,0,0,0,1 +59031,Brooklyn,2,3,1,0,0,0,6 +59031,Brooklyn,1,2,0,0,0,0,3 +59031,Brooklyn,2,8,0,0,0,1,11 +59031,Brooklyn,0,1,7,0,0,0,8 +59031,Brooklyn,1,7,2,0,0,0,10 +59031,Brooklyn,0,6,2,0,0,0,8 +59031,Brooklyn,0,7,3,0,0,0,10 +59031,Brooklyn,0,7,1,0,0,0,8 +53555,Bronx,0,0,50,0,0,0,51 +53555,Bronx,0,0,102,0,0,0,103 +53556,Bronx,0,0,82,0,0,0,83 +53556,Bronx,0,0,53,0,0,0,55 +65099,Bronx,0,0,9,0,0,0,41 +64617,Brooklyn,0,0,2,0,0,0,2 +61736,Manhattan,0,0,49,0,0,0,214 +61738,Manhattan,0,0,156,0,0,0,646 +61741,Manhattan,0,0,64,0,0,0,272 +63269,Bronx,0,0,1,0,0,0,1 +58697,Brooklyn,0,9,9,0,5,0,86 +63368,Bronx,0,0,99,0,0,1,100 +63174,Queens,0,0,1,0,0,0,1 +65064,Brooklyn,0,0,2,0,0,0,8 +58658,Manhattan,6,3,0,0,0,0,9 +58658,Manhattan,4,4,0,0,0,0,8 +58658,Manhattan,6,2,0,0,0,0,8 +58658,Manhattan,2,5,0,0,0,0,7 +58658,Manhattan,4,6,0,0,0,0,10 +63267,Queens,0,0,1,0,0,0,1 +63271,Queens,0,0,1,0,0,0,1 +50386,Manhattan,16,0,0,0,0,0,16 +58980,Brooklyn,0,7,5,0,0,0,12 +58980,Brooklyn,0,2,6,0,0,0,8 +58980,Brooklyn,0,1,6,0,0,1,8 +58980,Brooklyn,0,4,4,0,0,0,8 +63096,Bronx,0,0,1,0,0,0,1 +63338,Brooklyn,0,0,2,0,0,0,2 +61021,Manhattan,0,0,17,0,0,0,18 +57758,Manhattan,0,0,20,0,0,0,43 +63095,Queens,0,0,1,0,0,0,1 +65080,Brooklyn,0,0,2,0,0,0,10 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,1,0,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +50424,Queens,0,0,0,1,0,0,1 +63093,Staten Island,0,0,1,0,0,0,1 +49716,Brooklyn,2,0,2,0,0,0,4 +49716,Brooklyn,1,0,6,0,0,0,7 +49716,Brooklyn,21,0,5,0,0,1,27 +49716,Brooklyn,4,0,4,0,0,0,8 +49716,Brooklyn,2,0,2,0,0,0,4 +49716,Brooklyn,2,0,2,0,0,0,4 +49716,Brooklyn,0,0,9,0,0,0,9 +49716,Brooklyn,6,0,6,0,0,0,12 +49716,Brooklyn,5,1,7,0,0,0,13 +62990,Bronx,0,0,1,0,0,0,1 +62287,Queens,0,0,1,0,0,0,1 +62989,Staten Island,0,0,1,0,0,0,1 +62987,Bronx,0,0,1,0,0,0,1 +62988,Staten Island,0,0,1,0,0,0,1 +58302,Bronx,2,6,0,0,0,1,9 +62986,Queens,0,0,1,0,0,0,1 +58965,Brooklyn,82,0,52,0,0,1,135 +59740,Bronx,60,0,65,0,0,1,126 +62985,Staten Island,0,0,1,0,0,0,1 +65131,Manhattan,0,0,0,0,23,0,114 +65115,Brooklyn,0,0,1,0,0,0,5 +62984,Staten Island,0,0,1,0,0,0,1 +62983,Staten Island,0,0,1,0,0,0,1 +65141,Brooklyn,0,0,4,0,0,0,20 +62982,Staten Island,0,0,1,0,0,0,1 +65105,Queens,0,0,6,0,0,0,25 +53484,Manhattan,0,0,47,0,0,0,233 +62978,Brooklyn,0,0,1,0,0,0,1 +62981,Brooklyn,0,0,1,0,0,0,1 +65098,Queens,0,0,35,0,0,0,175 +57533,Brooklyn,3,229,6,0,0,1,239 +62976,Brooklyn,0,0,1,0,0,0,1 +62974,Queens,0,0,1,0,0,0,1 +62973,Queens,0,0,1,0,0,0,1 +62178,Bronx,0,0,0,3,0,0,3 +63013,Bronx,0,1,0,0,0,0,1 +62162,Bronx,0,0,0,1,0,0,1 +60049,Manhattan,7,9,9,0,0,1,26 +60049,Manhattan,6,11,8,1,0,0,26 +60049,Manhattan,2,14,10,5,0,0,31 +63012,Staten Island,0,0,1,0,0,0,1 +55205,Brooklyn,0,0,24,0,0,0,120 +65077,Manhattan,0,0,0,0,23,0,115 +58992,Bronx,1,12,0,0,0,0,13 +63011,Brooklyn,0,0,1,0,0,0,1 +58823,Brooklyn,0,0,5,1,0,0,6 +60361,Manhattan,2,2,16,0,0,0,20 +65139,Bronx,0,0,9,0,0,0,44 +62996,Queens,0,0,1,0,0,0,1 +65094,Bronx,0,0,6,0,0,0,27 +65119,Brooklyn,0,0,2,0,0,0,10 +62995,Queens,0,0,1,0,0,0,1 +65113,Bronx,0,0,24,0,0,0,118 +52999,Queens,67,0,0,0,0,1,68 +62994,Staten Island,0,0,1,0,0,0,1 +63007,Staten Island,0,0,1,0,0,0,1 +62246,Brooklyn,0,0,1,0,0,0,1 +65125,Manhattan,0,0,0,0,50,0,1000 +59387,Manhattan,0,7,7,0,4,0,70 +61937,Brooklyn,0,0,1,0,0,0,1 +60431,Bronx,19,13,10,0,0,0,42 +60431,Bronx,19,39,2,0,0,1,61 +60431,Bronx,22,23,0,0,0,1,46 +60431,Bronx,21,20,3,0,0,1,45 +60431,Bronx,12,16,0,0,0,0,28 +60431,Brooklyn,15,16,0,0,0,0,31 +60431,Brooklyn,0,0,2,0,0,0,2 +60431,Brooklyn,31,4,0,0,0,0,35 +60431,Brooklyn,0,32,1,0,0,1,34 +58945,Manhattan,0,0,415,0,0,0,416 +61721,Queens,0,0,1,0,0,0,1 +65140,Manhattan,0,0,13,0,0,0,62 +61944,Queens,0,0,0,1,0,0,1 +61935,Staten Island,0,0,1,0,0,0,1 +61722,Bronx,0,0,1,0,0,0,1 +61723,Queens,0,0,1,0,0,0,1 +61933,Queens,0,1,0,0,0,0,1 +61724,Brooklyn,0,0,1,0,0,0,1 +61901,Bronx,0,0,1,0,0,0,1 +58235,Bronx,60,0,0,0,0,1,61 +61898,Brooklyn,0,0,1,0,0,0,1 +52461,Manhattan,7,36,12,0,0,1,56 +54984,Manhattan,2,15,5,0,0,0,22 +59193,Bronx,0,31,0,0,0,0,31 +59193,Bronx,61,0,0,0,0,0,61 +59193,Bronx,61,0,0,0,0,0,61 +59193,Bronx,38,0,0,2,0,0,40 +59193,Bronx,4,17,26,12,0,0,59 +59193,Bronx,61,0,0,0,0,0,61 +59193,Bronx,36,0,0,0,0,0,36 +59193,Bronx,59,0,0,0,0,0,59 +59193,Bronx,59,0,0,0,0,0,59 +61660,Manhattan,0,0,10,0,0,0,10 +61660,Manhattan,0,0,10,0,0,0,10 +61660,Manhattan,0,0,10,0,0,0,10 +61660,Manhattan,0,0,18,0,6,0,24 +61660,Manhattan,0,14,1,0,0,0,15 +61660,Manhattan,0,4,0,0,0,0,4 +61660,Manhattan,0,0,16,0,0,0,16 +61660,Manhattan,0,19,0,0,1,0,20 +61660,Manhattan,0,20,0,0,0,0,20 +61660,Manhattan,0,9,0,0,0,0,9 +61660,Manhattan,0,4,0,0,0,0,4 +61660,Manhattan,0,8,7,0,0,0,15 +61660,Manhattan,0,4,0,0,0,0,4 +61660,Manhattan,0,3,16,0,0,0,19 +61660,Manhattan,0,4,0,0,4,0,8 +61660,Manhattan,0,2,0,0,6,0,8 +61660,Manhattan,0,10,0,0,0,0,10 +61660,Manhattan,0,0,14,0,1,0,15 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,2,0,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,2,0,0,2 +44285,Brooklyn,0,0,0,2,0,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +44285,Brooklyn,0,0,0,0,2,0,2 +48014,Bronx,0,0,16,0,0,0,16 +48014,Bronx,0,0,14,0,0,0,14 +50157,Brooklyn,0,0,0,5,18,1,24 +52979,Bronx,45,0,29,0,0,1,75 +54909,Brooklyn,7,30,24,0,0,1,62 +54909,Brooklyn,9,20,60,0,0,1,90 +54909,Brooklyn,8,22,60,0,0,0,90 +55249,Bronx,0,50,82,0,0,1,133 +55249,Bronx,45,0,136,0,0,0,181 +55263,Queens,8,20,38,0,0,1,67 +58015,Bronx,37,0,88,0,0,1,126 +58562,Bronx,0,142,0,0,0,1,143 +58733,Bronx,8,0,22,0,0,0,30 +59117,Staten Island,102,0,6,10,0,0,118 +59117,Staten Island,100,31,0,0,0,0,131 +59117,Staten Island,94,16,5,0,0,0,115 +59946,Manhattan,108,0,0,0,0,0,108 +59946,Manhattan,0,24,0,0,0,0,24 +59946,Manhattan,0,24,0,0,0,0,24 +59946,Manhattan,0,25,0,0,0,0,25 +59946,Manhattan,25,0,0,0,0,0,25 +59946,Manhattan,25,0,0,0,0,0,25 +59946,Manhattan,50,0,0,0,0,0,50 +59946,Manhattan,0,0,24,0,0,0,24 +59946,Manhattan,24,0,0,0,0,0,24 +59946,Manhattan,97,0,0,0,0,0,97 +59946,Manhattan,0,1,0,0,0,0,1 +59946,Manhattan,0,24,0,0,0,0,24 +59946,Manhattan,25,0,0,0,0,0,25 +59946,Manhattan,23,0,0,0,0,0,23 +59946,Manhattan,0,24,0,0,0,0,24 +59946,Manhattan,0,1,0,0,0,0,1 +59946,Manhattan,0,24,0,0,0,0,24 +59946,Manhattan,0,1,0,0,0,0,1 +60434,Queens,50,0,10,0,0,0,60 +60434,Queens,50,9,1,0,0,0,60 +60434,Queens,50,8,2,0,0,0,60 +60434,Queens,50,8,2,0,0,0,60 +60434,Queens,50,1,7,2,0,0,60 +60434,Queens,48,32,4,0,0,0,84 +60434,Queens,50,0,6,4,0,0,60 +61504,Bronx,0,0,1,0,0,0,1 +61509,Brooklyn,0,0,1,0,0,0,1 +61522,Bronx,0,1,0,0,0,0,1 +61528,Queens,0,0,0,1,0,0,1 +65111,Queens,0,0,6,0,0,0,27 +44295,Brooklyn,11,22,68,0,0,1,102 +44295,Brooklyn,7,11,10,0,0,0,28 +48643,Bronx,58,0,0,0,0,1,59 +50411,Brooklyn,16,0,38,0,0,1,55 +50519,Manhattan,8,4,102,0,0,1,115 +55036,Bronx,7,0,31,0,0,0,38 +55036,Bronx,10,0,34,0,0,1,45 +57772,Staten Island,80,0,0,0,0,1,81 +57772,Staten Island,80,0,0,0,0,0,80 +58589,Brooklyn,0,1,2,0,1,0,4 +58589,Brooklyn,0,0,4,1,0,0,5 +58589,Brooklyn,0,0,1,1,1,0,3 +58589,Brooklyn,0,1,4,0,2,0,7 +58589,Brooklyn,0,1,2,1,1,1,6 +58589,Brooklyn,0,2,4,0,0,0,6 +58589,Brooklyn,0,2,4,0,0,0,6 +58589,Brooklyn,0,1,4,1,0,0,6 +58589,Brooklyn,0,1,3,0,2,0,6 +58589,Brooklyn,0,0,4,0,0,0,4 +58589,Brooklyn,0,0,3,0,1,0,4 +58589,Brooklyn,0,1,2,1,1,0,5 +58589,Brooklyn,0,0,4,2,0,0,6 +58589,Brooklyn,0,0,4,0,0,0,4 +58589,Brooklyn,0,1,2,0,1,0,4 +58589,Brooklyn,0,2,7,5,1,0,15 +58589,Brooklyn,0,0,6,1,0,0,7 +58589,Brooklyn,0,2,1,0,0,1,4 +58608,Bronx,0,0,25,0,0,0,25 +58608,Bronx,0,0,8,0,0,0,8 +58608,Bronx,0,0,20,0,0,0,20 +58608,Bronx,0,0,15,0,0,0,15 +58608,Bronx,0,0,15,0,0,0,15 +58608,Bronx,0,0,28,0,0,0,28 +58608,Bronx,0,0,2,0,0,0,2 +58608,Bronx,0,0,56,0,0,0,56 +58608,Bronx,0,0,50,0,0,0,50 +58608,Bronx,0,0,39,0,0,0,39 +58608,Bronx,0,0,12,0,0,0,12 +60012,Bronx,0,0,93,24,0,1,118 +61485,Manhattan,0,0,0,2,0,0,2 +61491,Queens,2,0,0,0,0,0,2 +58450,Bronx,1,26,32,0,0,0,59 +58450,Bronx,2,53,49,1,0,1,106 +58450,Bronx,1,53,37,2,0,0,93 +58450,Bronx,2,29,23,0,0,1,55 +58450,Bronx,5,45,43,3,0,0,96 +58450,Bronx,1,27,28,3,0,1,60 +58450,Bronx,1,26,21,0,0,0,48 +58450,Bronx,4,27,18,0,0,0,49 +58450,Bronx,2,35,31,0,0,0,68 +58450,Bronx,0,31,21,2,0,0,54 +58450,Bronx,0,16,13,1,0,0,30 +58450,Bronx,2,30,20,2,0,0,54 +58450,Bronx,1,26,23,0,0,0,50 +58450,Bronx,1,35,34,1,0,0,71 +58659,Bronx,0,1,2,0,1,1,5 +58659,Bronx,0,1,4,0,3,0,8 +58659,Bronx,0,6,19,0,7,1,33 +58659,Bronx,0,1,9,0,0,0,10 +58659,Bronx,0,1,7,0,3,0,11 +58659,Bronx,0,3,11,0,5,1,20 +58659,Bronx,0,4,15,0,6,0,25 +58855,Brooklyn,0,0,19,0,0,1,20 +58855,Brooklyn,0,0,16,1,0,0,17 +58855,Brooklyn,0,0,17,0,0,0,17 +58954,Queens,0,15,80,150,134,1,380 +61623,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,0,2,0,2 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +53017,Brooklyn,0,0,0,1,0,0,1 +58790,Brooklyn,94,0,0,0,0,1,95 +58887,Manhattan,4,11,13,0,0,1,29 +58887,Manhattan,1,14,10,0,0,0,25 +61481,Queens,0,0,1,0,0,0,1 +52724,Brooklyn,0,0,7,0,1,0,8 +52724,Brooklyn,0,1,6,0,1,0,8 +52724,Brooklyn,0,10,17,0,8,1,36 +52724,Brooklyn,0,4,8,0,0,0,12 +52724,Brooklyn,0,2,4,0,2,0,8 +52724,Brooklyn,0,0,6,0,2,0,8 +52724,Brooklyn,0,2,4,0,2,0,8 +52724,Brooklyn,0,2,1,0,1,0,4 +52724,Brooklyn,0,2,6,0,1,0,9 +52724,Brooklyn,0,2,4,0,0,0,6 +52724,Brooklyn,0,2,4,0,0,0,6 +52724,Brooklyn,0,3,1,0,1,0,5 +60850,Brooklyn,0,0,11,0,0,1,12 +60850,Brooklyn,0,0,36,0,0,0,36 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,24,0,0,0,24 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +60850,Brooklyn,0,0,12,0,0,0,12 +61418,Brooklyn,0,0,189,33,0,2,224 +61435,Brooklyn,0,0,7,0,0,0,7 +61435,Brooklyn,0,0,8,0,0,0,8 +61435,Brooklyn,0,0,4,0,0,0,4 +61435,Brooklyn,0,0,4,0,0,0,4 +61435,Brooklyn,0,0,3,0,0,0,3 +61435,Brooklyn,0,0,2,0,0,0,2 +61622,Brooklyn,0,2,0,0,0,0,2 +50132,Manhattan,0,0,20,0,0,1,21 +51378,Brooklyn,0,0,3,3,0,0,6 +58638,Bronx,23,0,130,0,0,0,153 +51581,Bronx,3,7,64,4,0,1,79 +58480,Bronx,0,0,169,42,0,1,212 +60470,Brooklyn,135,14,236,0,0,0,385 +61121,Bronx,0,0,1,0,0,0,1 +61375,Brooklyn,104,1,0,0,0,1,106 +65128,Brooklyn,0,0,4,0,0,0,20 +61419,Bronx,0,0,39,0,0,0,39 +61419,Bronx,0,0,43,0,0,0,43 +61420,Brooklyn,0,0,84,0,0,0,84 +61420,Brooklyn,0,0,84,0,0,0,84 +61452,Bronx,0,0,1,0,0,0,1 +61465,Staten Island,0,0,1,0,0,0,1 +52115,Brooklyn,0,0,25,0,0,0,125 +61459,Queens,0,0,1,0,0,0,1 +65088,Brooklyn,0,0,2,0,0,0,8 +52737,Brooklyn,0,3,4,0,0,0,7 +52737,Brooklyn,0,4,1,0,0,1,6 +52737,Brooklyn,0,6,0,0,0,0,6 +52737,Brooklyn,0,5,1,0,0,0,6 +52737,Brooklyn,0,4,4,0,0,0,8 +52737,Brooklyn,0,4,3,1,0,0,8 +52737,Brooklyn,0,2,5,0,0,0,7 +52737,Brooklyn,0,3,4,0,0,0,7 +52737,Brooklyn,0,1,4,0,0,0,5 +52737,Brooklyn,0,3,1,0,0,0,4 +52737,Brooklyn,0,3,1,0,0,0,4 +52737,Brooklyn,0,6,2,0,0,0,8 +52737,Brooklyn,0,6,0,0,0,0,6 +58792,Brooklyn,135,0,0,0,0,0,135 +58792,Brooklyn,135,0,0,0,0,0,135 +58792,Brooklyn,135,0,0,0,0,0,135 +58792,Brooklyn,135,0,0,0,0,0,135 +61444,Queens,0,0,1,0,0,0,1 +47868,Manhattan,0,0,12,0,0,0,12 +61446,Bronx,0,0,1,0,0,0,1 +52734,Bronx,0,5,8,0,4,0,17 +52734,Bronx,0,4,7,0,4,0,15 +61457,Bronx,0,0,1,0,0,0,1 +58799,Queens,0,0,81,0,0,0,405 +47888,Manhattan,0,0,10,0,0,0,10 +61461,Bronx,0,0,1,0,0,0,1 +62256,Manhattan,0,0,1,0,0,0,1 +61463,Staten Island,0,0,1,0,0,0,1 +65117,Manhattan,0,0,0,0,10,0,49 +61235,Queens,0,0,1,0,0,0,1 +48751,Brooklyn,0,0,17,0,0,1,18 +58789,Manhattan,136,15,14,9,0,0,174 +60783,Bronx,0,50,0,0,0,0,50 +60783,Bronx,0,50,0,0,0,0,50 +60783,Bronx,0,50,0,0,0,0,50 +65137,Brooklyn,0,0,30,0,0,0,147 +61029,Brooklyn,0,6,0,0,0,0,6 +61029,Brooklyn,0,36,0,0,0,0,36 +61029,Brooklyn,0,6,0,0,0,1,7 +61029,Brooklyn,0,36,0,0,0,0,36 +61029,Brooklyn,0,24,0,0,0,0,24 +61029,Brooklyn,0,12,0,0,0,0,12 +61245,Staten Island,0,0,1,0,0,0,1 +53334,Brooklyn,0,28,112,0,0,0,140 +65109,Brooklyn,0,0,2,0,0,0,9 +65109,Brooklyn,0,0,2,0,0,0,9 +57668,Bronx,119,0,0,0,0,0,119 +57668,Bronx,56,0,0,0,0,0,56 +53451,Brooklyn,0,0,29,0,0,0,143 +60999,Bronx,0,0,0,2,0,0,2 +58470,Brooklyn,0,1,28,11,0,1,41 +61232,Staten Island,0,0,1,0,0,0,1 +60995,Queens,0,0,1,0,0,0,1 +61240,Brooklyn,0,0,1,0,0,0,1 +61263,Staten Island,0,0,1,0,0,0,1 +61261,Bronx,0,0,1,0,0,0,1 +61243,Brooklyn,0,0,1,0,0,0,1 +61255,Bronx,0,0,1,0,0,0,1 +60912,Staten Island,0,0,1,0,0,0,1 +61037,Queens,0,0,1,0,0,0,1 +57864,Brooklyn,0,0,35,21,0,0,175 +60994,Brooklyn,0,0,0,3,0,0,3 +51100,Bronx,41,0,40,0,0,0,82 +60919,Bronx,0,0,1,0,0,0,1 +65070,Manhattan,0,0,3,0,0,0,14 +65090,Manhattan,0,0,3,0,0,0,13 +60917,Bronx,0,0,1,0,0,0,1 +60914,Queens,0,0,1,0,0,0,1 +60897,Queens,0,0,1,0,0,0,1 +60899,Queens,0,0,1,0,0,0,1 +60888,Queens,0,0,1,0,0,0,1 +65082,Bronx,0,0,10,0,0,0,41 +60993,Bronx,0,2,0,0,0,0,2 +44357,Manhattan,54,0,106,18,0,1,179 +54807,Manhattan,0,0,11,0,0,0,11 +50384,Manhattan,0,0,0,19,0,0,19 +60878,Bronx,0,1,0,0,0,0,1 +60874,Staten Island,0,0,1,0,0,0,1 +60732,Bronx,0,0,1,0,0,0,1 +60734,Queens,0,0,1,0,0,0,1 +60727,Bronx,0,0,1,0,0,0,1 +60730,Brooklyn,0,0,1,0,0,0,1 +64624,Brooklyn,0,0,2,0,0,0,2 +60674,Queens,0,0,1,0,0,0,1 +60724,Brooklyn,0,0,1,0,0,0,1 +60762,Staten Island,0,0,177,0,0,1,178 +60775,Brooklyn,0,0,3,0,0,0,3 +58908,Brooklyn,55,4,4,0,0,0,63 +52893,Brooklyn,27,19,88,0,0,1,135 +60789,Manhattan,2,0,0,0,0,0,2 +65073,Bronx,0,0,2,0,0,0,8 +60653,Queens,0,0,0,1,0,0,1 +60520,Brooklyn,0,0,2,0,0,0,2 +60613,Bronx,0,0,1,0,0,0,1 +60548,Bronx,0,0,1,0,0,0,1 +60607,Staten Island,0,0,1,0,0,0,1 +60610,Queens,0,0,1,0,0,0,1 +60603,Staten Island,0,0,1,0,0,0,1 +58863,Bronx,0,2,7,0,0,0,9 +58863,Bronx,0,5,11,0,0,0,16 +58863,Bronx,0,19,24,0,0,0,43 +58863,Bronx,0,0,8,0,0,0,8 +58863,Bronx,0,5,27,0,0,0,32 +58863,Bronx,0,1,0,3,0,0,4 +58863,Bronx,0,0,8,0,0,0,8 +58863,Bronx,0,0,6,0,0,0,6 +58863,Bronx,0,0,1,1,0,0,2 +58863,Bronx,0,0,6,0,0,0,6 +58863,Bronx,0,4,11,0,0,0,15 +58863,Bronx,0,0,15,0,0,0,15 +58863,Bronx,0,5,11,0,0,0,16 +58863,Bronx,0,10,17,0,0,0,27 +58863,Bronx,0,0,2,1,0,0,3 +58863,Bronx,0,0,22,0,0,0,22 +58863,Bronx,0,5,18,2,0,0,25 +58863,Bronx,0,32,14,0,0,0,46 +58863,Bronx,0,0,30,0,0,0,30 +60601,Staten Island,0,0,1,0,0,0,1 +60757,Brooklyn,0,0,0,2,0,0,2 +60443,Brooklyn,0,0,3,0,0,0,3 +58870,Manhattan,0,0,13,0,0,0,13 +58870,Manhattan,0,1,1,0,2,0,4 +58870,Manhattan,0,5,12,0,0,0,17 +58870,Manhattan,0,2,3,0,2,0,7 +58870,Manhattan,0,2,5,0,1,0,8 +60287,Staten Island,0,0,1,0,0,0,1 +60291,Staten Island,0,1,0,0,0,0,1 +60294,Staten Island,0,0,1,0,0,0,1 +60761,Manhattan,0,134,0,0,0,1,135 +60336,Brooklyn,0,2,0,0,0,0,2 +65118,Manhattan,0,0,87,0,0,0,430 +60298,Staten Island,0,0,1,0,0,0,1 +60300,Brooklyn,0,0,1,0,0,0,1 +48908,Brooklyn,2,0,0,0,6,0,8 +48908,Brooklyn,0,0,5,1,0,0,6 +48908,Brooklyn,1,6,1,0,0,0,8 +48908,Brooklyn,4,0,4,0,0,0,8 +48908,Brooklyn,7,7,2,0,0,0,16 +48908,Brooklyn,6,0,2,0,0,0,8 +48908,Brooklyn,0,0,4,0,0,0,4 +48908,Brooklyn,6,0,2,0,0,0,8 +48908,Brooklyn,3,5,0,0,0,0,8 +55238,Manhattan,0,69,0,0,0,0,69 +60303,Queens,0,0,1,0,0,0,1 +60296,Queens,0,0,1,0,0,0,1 +60463,Bronx,0,0,1,0,0,0,1 +60270,Bronx,0,0,0,2,0,0,2 +60322,Bronx,0,0,0,2,0,0,2 +52701,Brooklyn,0,87,128,0,0,0,215 +60080,Brooklyn,0,0,0,358,0,1,359 +60080,Brooklyn,0,0,0,358,0,1,359 +60127,Queens,0,0,1,0,0,0,1 +60128,Staten Island,0,0,1,0,0,0,1 +60129,Brooklyn,0,0,1,0,0,0,1 +60126,Queens,0,0,1,0,0,0,1 +61380,Brooklyn,0,0,402,0,0,2,438 +61376,Manhattan,0,0,23,0,0,0,114 +60314,Brooklyn,0,0,0,1,0,0,1 +60008,Brooklyn,0,0,4,0,0,0,4 +60060,Brooklyn,0,0,3,0,0,0,3 +60018,Staten Island,0,0,1,0,0,0,1 +60125,Bronx,0,0,1,0,0,0,1 +60017,Queens,0,0,1,0,0,0,1 +60312,Brooklyn,0,0,0,1,0,0,1 +60013,Staten Island,0,0,1,0,0,0,1 +65089,Bronx,0,0,11,0,0,0,53 +59988,Queens,0,0,1,0,0,0,1 +60023,Staten Island,0,0,1,0,0,0,1 +65081,Bronx,0,0,8,0,0,0,40 +59989,Queens,1,0,0,0,0,0,1 +60123,Queens,0,0,1,0,0,0,1 +65096,Queens,0,0,2,0,0,0,8 +60121,Brooklyn,0,0,1,0,0,0,1 +59688,Manhattan,0,0,109,0,53,0,205 +59688,Manhattan,0,0,54,0,27,0,103 +59688,Manhattan,0,0,55,0,27,0,103 +59688,Manhattan,0,0,109,0,55,0,206 +59688,Manhattan,0,0,106,0,54,0,201 +59688,Manhattan,0,0,108,0,55,1,206 +59688,Manhattan,0,0,109,0,54,0,206 +65092,Manhattan,0,0,7,0,0,0,32 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Queens,0,0,1,0,0,0,1 +49635,Staten Island,0,0,1,0,0,0,1 +49445,Manhattan,0,18,0,0,0,0,18 +49445,Manhattan,0,24,0,0,0,1,25 +49445,Manhattan,0,0,0,24,0,1,25 +49445,Manhattan,0,24,0,0,0,0,24 +52758,Brooklyn,0,0,10,0,8,0,18 +52758,Brooklyn,0,0,2,0,0,0,2 +52758,Brooklyn,0,2,4,0,0,0,6 +52758,Brooklyn,0,2,4,0,0,0,6 +52758,Brooklyn,0,0,20,0,3,0,23 +52758,Brooklyn,0,1,10,0,1,0,12 +52758,Brooklyn,0,1,12,0,3,0,16 +52758,Brooklyn,0,4,15,0,1,0,20 +52758,Brooklyn,0,0,10,0,2,0,12 +52758,Brooklyn,0,1,15,0,0,0,16 +52758,Brooklyn,0,2,12,0,9,0,23 +52758,Brooklyn,0,0,6,0,0,0,6 +52758,Brooklyn,0,0,4,0,2,0,6 +52758,Brooklyn,0,0,15,0,1,0,16 +52758,Brooklyn,0,0,5,0,1,0,6 +52758,Brooklyn,0,0,2,0,0,0,2 +52758,Brooklyn,0,3,13,0,0,0,16 +52758,Brooklyn,0,0,6,0,0,0,6 +52758,Brooklyn,0,4,2,0,0,0,6 +52758,Brooklyn,0,0,6,0,0,0,6 +52758,Brooklyn,0,3,3,0,0,0,6 +52758,Brooklyn,0,3,3,0,0,0,6 +52758,Brooklyn,0,2,6,0,0,0,8 +52758,Brooklyn,0,1,1,0,1,0,3 +52758,Brooklyn,0,2,4,0,0,0,6 +52758,Brooklyn,0,1,5,0,0,0,6 +52758,Brooklyn,0,10,6,0,0,0,16 +52758,Brooklyn,0,1,16,0,5,0,22 +52758,Brooklyn,0,2,11,0,3,0,16 +52758,Brooklyn,0,0,6,0,2,0,8 +52758,Brooklyn,0,3,3,0,0,0,6 +52758,Brooklyn,0,2,16,0,8,0,26 +52758,Brooklyn,0,0,6,0,0,0,6 +53077,Manhattan,0,36,125,0,0,0,161 +55026,Bronx,0,1,7,0,0,0,8 +55026,Bronx,0,0,7,0,3,0,10 +55026,Bronx,0,0,7,0,2,1,10 +55026,Bronx,0,2,6,0,0,0,8 +55026,Bronx,0,1,20,0,8,1,30 +55026,Bronx,0,4,19,0,2,0,25 +55026,Bronx,0,5,11,0,2,0,18 +57642,Manhattan,0,0,0,11,0,0,11 +59834,Bronx,0,0,0,160,0,0,160 +59834,Bronx,0,0,0,142,0,0,142 +59836,Bronx,122,93,64,31,0,1,311 +59915,Brooklyn,0,0,0,2,0,0,2 +52467,Bronx,138,0,0,0,0,2,140 +52467,Bronx,57,0,0,0,0,0,57 +53483,Brooklyn,0,0,37,0,0,0,183 +53580,Bronx,32,0,124,0,0,1,157 +59835,Bronx,0,0,1,0,0,0,1 +50638,Brooklyn,115,0,7,0,0,1,123 +50509,Bronx,0,0,24,69,0,1,94 +59851,Brooklyn,0,0,0,15,0,0,15 +59851,Brooklyn,0,0,0,65,0,0,65 +59851,Brooklyn,0,0,0,15,0,0,15 +59851,Brooklyn,0,0,0,9,0,0,9 +50655,Brooklyn,16,13,12,9,0,1,51 +52396,Bronx,0,0,129,126,0,1,256 +54842,Bronx,0,25,89,8,0,1,123 +59857,Manhattan,0,0,14,0,120,0,134 +59857,Manhattan,0,0,5,0,46,0,51 +59857,Manhattan,0,0,4,0,39,0,43 +59857,Manhattan,0,0,4,0,39,0,43 +59857,Manhattan,0,0,18,0,169,0,187 +59857,Manhattan,0,0,4,0,39,0,43 +59857,Manhattan,0,0,12,0,116,0,128 +59857,Manhattan,0,0,8,0,78,0,86 +59857,Manhattan,0,0,22,0,207,0,229 +59857,Manhattan,0,0,7,0,72,0,79 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,7,0,73,0,80 +59857,Manhattan,0,0,12,0,109,0,121 +59857,Manhattan,0,0,12,0,116,0,128 +59857,Manhattan,0,0,21,0,191,0,212 +59857,Manhattan,0,0,7,0,72,0,79 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,21,0,191,0,212 +59857,Manhattan,0,0,7,0,73,0,80 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,7,0,73,0,80 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,7,0,72,0,79 +59857,Manhattan,0,0,17,0,153,0,170 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,4,0,39,0,43 +59857,Manhattan,0,0,18,0,167,0,185 +59857,Manhattan,0,0,4,0,35,0,39 +59857,Manhattan,0,0,4,0,35,0,39 +59857,Manhattan,0,0,4,0,36,0,40 +59857,Manhattan,0,0,12,0,114,0,126 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,5,0,46,0,51 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,6,0,47,0,53 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,5,0,47,0,52 +59857,Manhattan,0,0,9,0,84,0,93 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,9,0,84,0,93 +59857,Manhattan,0,0,9,0,84,0,93 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,14,0,126,0,140 +59857,Manhattan,0,0,9,0,84,0,93 +44388,Bronx,31,0,62,0,0,1,94 +53551,Manhattan,0,12,0,0,0,0,12 +53551,Manhattan,0,14,0,0,0,0,14 +59821,Staten Island,0,0,1,0,0,0,1 +59823,Brooklyn,0,0,197,0,0,0,197 +59908,Queens,0,0,1,0,0,0,1 +53188,Bronx,16,39,0,0,0,1,56 +59830,Bronx,0,0,1,0,0,0,1 +52435,Manhattan,0,20,79,0,0,1,100 +59839,Staten Island,0,0,1,0,0,0,1 +54304,Brooklyn,0,0,16,0,0,0,80 +59837,Staten Island,0,0,1,0,0,0,1 +52827,Bronx,2,0,51,2,0,0,55 +52888,Bronx,1,3,24,2,0,0,30 +52789,Brooklyn,0,0,74,0,0,0,368 +59856,Manhattan,0,175,0,0,0,0,175 +59554,Bronx,0,0,1,0,0,0,1 +52119,Bronx,6,29,24,0,0,1,60 +59409,Brooklyn,0,0,1,0,0,0,1 +52082,Manhattan,0,0,0,11,0,0,55 +52415,Bronx,42,14,12,0,0,1,69 +59407,Manhattan,0,0,1,0,0,0,1 +59827,Manhattan,0,0,106,0,0,0,106 +52725,Brooklyn,0,0,4,0,0,0,4 +52725,Brooklyn,0,0,7,0,2,0,9 +52725,Brooklyn,0,0,6,0,2,0,8 +52725,Brooklyn,0,0,8,0,0,0,8 +52725,Brooklyn,0,0,8,0,0,0,8 +52725,Brooklyn,0,0,7,0,1,0,8 +52725,Brooklyn,0,0,17,0,3,0,20 +52725,Brooklyn,0,0,15,0,5,0,20 +52725,Brooklyn,0,0,4,0,4,0,8 +52725,Brooklyn,0,0,4,0,0,0,4 +50938,Bronx,0,23,0,0,0,0,23 +52646,Bronx,90,0,80,0,0,1,171 +52597,Bronx,48,0,0,0,0,0,48 +59426,Bronx,0,0,1,0,0,0,1 +59366,Brooklyn,0,0,1,0,0,0,1 +52580,Brooklyn,0,0,22,0,0,0,105 +59361,Queens,0,0,1,0,0,0,1 +59363,Queens,0,0,1,0,0,0,1 +59405,Bronx,0,1,0,0,0,0,1 +59365,Queens,0,0,1,0,0,0,1 +59424,Queens,0,0,1,0,0,0,1 +52795,Manhattan,34,0,0,0,0,1,35 +52782,Brooklyn,8,16,35,0,0,1,60 +59816,Manhattan,0,41,24,0,0,0,191 +44602,Brooklyn,53,0,0,0,0,1,54 +65129,Brooklyn,0,0,2,0,0,0,10 +59296,Staten Island,0,0,1,0,0,0,1 +53157,Brooklyn,3,1,0,0,0,0,4 +53157,Brooklyn,0,6,0,0,0,0,6 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,2,1,0,0,0,0,3 +53157,Brooklyn,0,7,2,0,0,0,9 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,1,1,0,0,0,0,2 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,2,3,0,0,0,0,5 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,8,0,0,0,0,8 +53157,Brooklyn,1,6,0,0,0,0,7 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,1,2,0,0,0,0,3 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,5,1,0,0,0,0,6 +53157,Brooklyn,1,3,0,0,0,0,4 +53157,Brooklyn,1,3,0,0,0,0,4 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,3,1,0,0,0,4 +53157,Brooklyn,0,1,0,0,0,0,1 +53157,Brooklyn,0,1,0,0,0,0,1 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,6,0,0,0,0,6 +53157,Brooklyn,0,8,0,0,0,0,8 +53157,Brooklyn,1,4,0,0,0,0,5 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,1,3,0,0,0,0,4 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,1,1,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,1,4,0,0,0,0,5 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,1,1,0,0,0,2 +53157,Brooklyn,0,8,0,0,0,0,8 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,4,0,0,0,0,4 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,1,3,0,0,0,0,4 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,6,0,0,0,0,6 +53157,Brooklyn,1,2,0,0,0,0,3 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,1,1,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,4,1,0,0,0,5 +53157,Brooklyn,1,3,0,0,0,0,4 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,3,0,0,0,0,3 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +53157,Brooklyn,0,2,0,0,0,0,2 +59333,Brooklyn,0,0,1,0,0,0,1 +59293,Queens,0,0,1,0,0,0,1 +52127,Queens,0,0,21,0,0,0,103 +59294,Staten Island,0,0,1,0,0,0,1 +59304,Brooklyn,0,0,1,0,0,0,1 +65112,Brooklyn,0,0,2,0,0,0,8 +59301,Staten Island,0,0,1,0,0,0,1 +59138,Staten Island,0,1,0,0,0,0,1 +59292,Staten Island,0,0,1,0,0,0,1 +52662,Bronx,0,4,48,0,20,1,73 +52662,Bronx,0,2,17,0,6,1,26 +52662,Bronx,0,6,14,0,5,0,25 +52662,Bronx,0,6,11,0,7,1,25 +65066,Brooklyn,0,0,1,0,0,0,5 +59341,Brooklyn,0,0,0,2,0,0,2 +52129,Brooklyn,0,0,12,0,0,0,57 +52757,Brooklyn,0,0,8,0,0,0,8 +52757,Brooklyn,0,3,28,0,0,1,32 +52757,Brooklyn,0,3,13,0,0,0,16 +52757,Brooklyn,0,2,15,0,0,0,17 +52757,Brooklyn,0,2,14,0,0,0,16 +52757,Brooklyn,0,3,13,0,0,0,16 +52757,Brooklyn,0,4,12,0,0,1,17 +52757,Brooklyn,0,1,15,0,0,0,16 +52757,Brooklyn,0,1,7,0,0,0,8 +52757,Brooklyn,0,0,8,0,0,0,8 +52757,Brooklyn,0,2,4,0,0,1,7 +52757,Brooklyn,0,3,15,0,0,1,19 +52757,Brooklyn,0,7,24,0,0,1,32 +59090,Brooklyn,0,1,0,0,0,0,1 +59100,Brooklyn,0,0,2,0,0,0,2 +59101,Brooklyn,0,1,0,0,0,0,1 +59340,Brooklyn,0,0,0,3,0,0,3 +53392,Manhattan,0,0,22,0,0,0,22 +53392,Manhattan,0,0,6,0,0,0,6 +52405,Brooklyn,0,1,14,4,0,1,20 +65127,Brooklyn,0,0,4,0,0,0,17 +52790,Brooklyn,0,0,15,0,0,0,75 +54407,Bronx,0,6,17,6,0,1,30 +59040,Queens,0,0,1,0,0,0,1 +53552,Manhattan,0,0,45,0,0,0,223 +58940,Brooklyn,0,3,0,0,0,0,3 +58907,Staten Island,0,0,1,0,0,0,1 +59005,Staten Island,0,1,0,0,0,0,1 +52722,Brooklyn,5,25,27,0,0,1,58 +52722,Brooklyn,3,5,10,0,0,0,18 +58774,Queens,0,0,1,0,0,0,1 +65076,Brooklyn,0,0,2,0,0,0,8 +58776,Staten Island,0,0,1,0,0,0,1 +52783,Bronx,35,12,64,0,0,1,112 +54748,Manhattan,0,25,25,0,13,0,251 +58778,Staten Island,0,0,1,0,0,0,1 +58779,Bronx,0,1,0,0,0,0,1 +58712,Queens,0,0,1,0,0,0,1 +58777,Brooklyn,0,0,1,0,0,0,1 +47948,Bronx,0,0,10,0,0,0,10 +49501,Bronx,0,0,8,0,0,0,8 +52287,Manhattan,0,0,204,0,0,0,205 +58881,Queens,0,0,2,0,0,0,2 +58723,Queens,0,0,1,0,0,0,1 +58614,Brooklyn,0,0,1,0,0,0,1 +58680,Brooklyn,0,0,1,0,0,0,1 +58682,Queens,0,0,1,0,0,0,1 +58616,Queens,0,1,0,0,0,0,1 +58677,Queens,0,0,1,0,0,0,1 +58725,Staten Island,0,0,1,0,0,0,1 +58587,Bronx,0,0,0,2,0,0,2 +58568,Queens,0,0,1,0,0,0,1 +48729,Bronx,0,33,21,0,0,1,55 +48729,Bronx,0,9,18,0,0,1,28 +48729,Bronx,0,6,14,0,0,0,20 +48729,Bronx,0,0,89,0,0,1,90 +59538,Queens,0,0,195,0,0,0,974 +58718,Queens,0,0,1,0,0,0,1 +53011,Brooklyn,0,0,18,0,0,0,18 +53011,Brooklyn,0,0,6,0,0,0,6 +53011,Brooklyn,0,0,6,0,0,0,6 +53011,Brooklyn,0,0,19,0,0,0,19 +58878,Brooklyn,0,0,1,0,0,0,1 +58721,Bronx,0,0,1,0,0,0,1 +48973,Manhattan,0,0,11,4,0,0,15 +58500,Bronx,0,0,2,0,0,0,2 +58503,Brooklyn,0,0,2,0,0,0,2 +58716,Bronx,0,0,1,0,0,0,1 +44230,Brooklyn,0,0,0,3,0,0,3 +44230,Brooklyn,0,0,0,3,0,0,3 +44230,Brooklyn,0,0,0,0,3,0,3 +44230,Brooklyn,0,0,0,3,0,0,3 +44230,Brooklyn,0,0,0,3,0,0,3 +44230,Brooklyn,0,0,0,1,2,0,3 +44230,Brooklyn,0,0,0,3,0,0,3 +44280,Bronx,15,46,137,0,0,1,199 +48650,Manhattan,18,0,0,0,0,0,18 +49607,Bronx,8,28,23,0,0,1,60 +49625,Bronx,10,28,57,0,0,1,96 +50223,Manhattan,0,2,18,0,0,0,20 +50223,Manhattan,1,4,10,1,0,0,16 +50223,Manhattan,0,7,18,0,0,0,25 +50223,Manhattan,1,7,7,0,0,1,16 +50223,Brooklyn,1,4,11,0,0,0,16 +52014,Brooklyn,0,0,5,0,0,0,5 +52014,Brooklyn,0,0,8,0,0,0,8 +52014,Brooklyn,0,0,2,0,0,0,2 +52014,Brooklyn,0,0,3,0,0,0,3 +52014,Brooklyn,0,0,2,0,1,0,3 +52014,Brooklyn,0,0,6,0,1,0,7 +52014,Brooklyn,0,0,2,0,0,0,2 +52014,Brooklyn,0,0,2,0,0,0,2 +52083,Manhattan,0,6,53,17,28,0,211 +52122,Manhattan,0,6,47,18,27,0,195 +52656,Brooklyn,75,0,25,0,0,1,101 +52798,Bronx,0,118,17,0,0,1,136 +53273,Bronx,11,32,58,0,0,1,102 +53461,Queens,0,24,76,0,0,1,101 +54366,Manhattan,0,0,20,0,0,0,21 +54709,Manhattan,0,0,53,0,0,0,53 +54709,Manhattan,0,7,6,5,0,0,18 +54709,Manhattan,0,7,6,5,0,0,18 +54709,Manhattan,0,8,5,5,0,0,18 +54709,Manhattan,0,8,5,5,0,0,18 +54709,Manhattan,0,0,35,6,0,0,41 +54709,Manhattan,0,0,35,6,0,0,41 +58363,Queens,0,0,1,0,0,0,1 +58367,Bronx,0,0,1,0,0,0,1 +48940,Manhattan,1,12,2,0,0,0,15 +50131,Bronx,0,0,0,12,0,0,12 +50131,Bronx,0,0,0,12,0,0,12 +50131,Bronx,0,3,8,0,0,0,11 +50131,Bronx,0,7,19,0,0,0,26 +50131,Bronx,0,2,3,0,0,0,5 +50131,Bronx,0,4,16,0,0,1,21 +50388,Manhattan,0,40,0,0,0,0,40 +50942,Bronx,11,34,55,13,0,1,114 +51248,Manhattan,0,3,55,2,0,0,60 +53050,Bronx,0,0,23,0,0,0,23 +53050,Bronx,0,0,18,0,0,0,18 +53180,Bronx,8,0,120,0,0,0,128 +53473,Bronx,34,0,0,0,0,1,35 +53473,Bronx,100,0,0,0,0,1,101 +54948,Manhattan,0,2,11,0,4,1,18 +54948,Manhattan,0,4,9,0,5,0,18 +54948,Manhattan,0,3,10,0,5,0,18 +54948,Manhattan,0,5,8,0,5,0,18 +54948,Manhattan,0,4,14,0,1,1,20 +55050,Bronx,49,0,114,0,0,1,164 +58323,Brooklyn,0,0,2,0,0,0,2 +58932,Staten Island,0,139,313,0,0,2,454 +48647,Brooklyn,96,0,64,0,0,1,161 +52752,Brooklyn,0,3,4,0,0,0,7 +52752,Brooklyn,0,1,5,0,0,0,6 +52752,Brooklyn,0,0,6,0,0,0,6 +52752,Brooklyn,0,0,5,0,0,0,5 +52752,Brooklyn,0,0,5,0,0,0,5 +52752,Brooklyn,0,1,3,0,0,0,4 +52752,Brooklyn,0,1,2,0,0,1,4 +52752,Brooklyn,0,0,15,0,0,1,16 +52752,Brooklyn,0,0,5,0,0,0,5 +52752,Brooklyn,0,0,7,0,0,0,7 +52752,Brooklyn,0,0,9,0,0,0,9 +52752,Brooklyn,0,0,5,0,0,0,5 +52752,Brooklyn,0,0,6,0,0,0,6 +52752,Brooklyn,0,0,4,0,0,0,4 +52752,Brooklyn,0,0,3,0,0,1,4 +52752,Brooklyn,0,0,9,0,0,0,9 +52752,Brooklyn,0,1,7,0,0,0,8 +52752,Brooklyn,0,0,4,0,0,0,4 +52752,Brooklyn,0,4,8,0,0,0,12 +44409,Bronx,11,32,64,0,0,1,108 +46143,Bronx,10,40,76,26,0,1,153 +46143,Bronx,6,8,14,0,0,0,28 +50415,Manhattan,82,18,7,0,0,1,108 +51719,Queens,9,26,49,0,0,1,85 +52674,Manhattan,0,0,26,0,0,1,27 +52674,Manhattan,0,0,9,0,0,0,9 +52674,Manhattan,0,0,8,0,0,1,9 +52674,Manhattan,0,1,13,0,0,0,14 +52674,Manhattan,0,0,8,0,0,0,8 +52674,Manhattan,0,0,10,0,0,0,10 +52674,Manhattan,0,0,24,0,0,0,24 +52674,Manhattan,0,0,23,0,0,1,24 +52674,Manhattan,0,3,15,0,0,0,18 +52674,Manhattan,0,0,29,0,0,0,29 +52674,Manhattan,0,0,4,0,0,0,4 +52674,Manhattan,0,0,4,0,0,0,4 +52674,Manhattan,0,0,4,0,0,0,4 +52674,Manhattan,0,0,13,0,0,1,14 +52674,Manhattan,0,3,21,0,0,1,25 +52674,Manhattan,0,0,8,0,0,0,8 +52674,Manhattan,0,0,4,0,0,0,4 +52674,Manhattan,0,1,3,0,0,0,4 +52674,Manhattan,0,0,4,0,0,0,4 +52674,Manhattan,0,1,3,0,0,0,4 +52674,Manhattan,0,0,10,0,0,0,10 +52674,Manhattan,0,2,14,0,0,1,17 +52674,Manhattan,0,3,7,0,0,0,10 +52674,Manhattan,0,1,9,0,0,0,10 +52674,Manhattan,0,1,9,0,0,0,10 +52674,Manhattan,0,5,14,0,0,0,19 +52674,Manhattan,0,5,19,0,0,0,24 +52674,Manhattan,0,2,9,0,0,0,11 +52756,Brooklyn,0,0,11,0,0,0,11 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,5,0,0,0,5 +52756,Brooklyn,0,0,9,0,0,0,9 +52756,Brooklyn,0,0,5,0,0,0,5 +52756,Brooklyn,0,0,7,0,0,0,7 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,18,0,0,0,18 +52756,Brooklyn,0,0,11,0,0,0,11 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,20,0,0,0,20 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,3,0,0,0,3 +52756,Brooklyn,0,0,3,0,0,0,3 +52756,Brooklyn,0,0,3,0,0,0,3 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,16,0,0,0,16 +52756,Brooklyn,0,0,9,0,0,0,9 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,16,0,0,0,16 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,7,0,0,0,7 +52756,Brooklyn,0,0,7,0,0,0,7 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,7,0,0,0,7 +52756,Brooklyn,0,0,5,0,0,0,5 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,2,0,0,0,2 +52756,Brooklyn,0,0,20,0,0,0,20 +52756,Brooklyn,0,0,9,0,0,0,9 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,12,0,0,0,12 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,17,0,0,0,17 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,19,0,0,0,19 +52756,Brooklyn,0,0,8,0,0,0,8 +52756,Brooklyn,0,0,7,0,0,0,7 +52756,Brooklyn,0,0,9,0,0,0,9 +52756,Brooklyn,0,0,10,0,0,0,10 +52756,Brooklyn,0,0,12,0,0,0,12 +52756,Brooklyn,0,0,12,0,0,0,12 +52756,Brooklyn,0,0,6,0,0,0,6 +52756,Brooklyn,0,0,4,0,0,0,4 +52756,Brooklyn,0,0,24,0,0,0,24 +52756,Brooklyn,0,0,36,0,0,0,36 +52756,Brooklyn,0,0,3,0,0,0,3 +52937,Queens,153,0,0,0,0,1,154 +51143,Manhattan,0,10,8,0,0,0,18 +51143,Manhattan,1,10,7,0,0,0,18 +51143,Manhattan,0,12,10,0,0,0,22 +51396,Manhattan,0,0,0,297,0,0,297 +51396,Manhattan,0,0,0,60,0,0,60 +51396,Manhattan,0,0,0,84,0,0,84 +51396,Manhattan,0,0,0,184,0,0,184 +52626,Brooklyn,0,0,10,0,0,0,50 +51751,Bronx,17,0,0,0,0,1,18 +51751,Bronx,28,0,0,0,0,1,29 +48011,Bronx,0,0,53,6,0,1,60 +50293,Bronx,1,6,14,0,0,0,21 +58280,Queens,0,0,1,0,0,0,1 +48732,Manhattan,0,0,26,0,0,0,26 +49174,Bronx,0,2,7,0,0,1,10 +49174,Bronx,0,2,11,0,3,0,16 +49174,Bronx,0,2,9,0,3,0,14 +49174,Bronx,0,3,13,0,4,0,20 +49174,Bronx,0,1,3,0,3,1,8 +49174,Bronx,0,1,3,0,4,0,8 +49174,Bronx,0,2,14,0,4,0,20 +51652,Bronx,51,0,14,0,0,1,66 +53437,Bronx,0,82,0,0,0,0,82 +53437,Bronx,0,64,0,0,0,0,64 +53437,Bronx,0,43,0,0,0,0,43 +53437,Bronx,0,59,0,0,0,0,59 +52000,Bronx,0,3,38,5,0,0,46 +59032,Brooklyn,0,14,77,14,198,0,303 +53355,Brooklyn,0,0,38,0,0,0,190 +65130,Manhattan,0,0,2,0,0,0,8 +45647,Manhattan,0,0,0,6,36,0,64 +54302,Brooklyn,0,17,32,0,0,0,50 +58282,Brooklyn,0,0,1,0,0,0,1 +48763,Manhattan,0,0,8,0,0,0,8 +48763,Manhattan,0,0,7,1,0,0,8 +48763,Manhattan,0,6,14,0,0,0,20 +48763,Manhattan,0,11,7,0,0,0,18 +53337,Brooklyn,0,0,40,0,20,0,197 +58515,Brooklyn,0,0,127,0,0,1,128 +58515,Brooklyn,0,0,133,0,0,1,134 +58515,Brooklyn,0,0,72,0,0,0,72 +58516,Brooklyn,0,0,73,0,0,0,73 +58516,Brooklyn,0,0,130,0,0,1,131 +58516,Brooklyn,0,0,133,0,0,1,134 +58005,Bronx,0,0,1,0,0,0,1 +58026,Bronx,0,0,1,0,0,0,1 +58035,Staten Island,0,0,1,0,0,0,1 +52741,Bronx,0,3,4,0,4,0,11 +52741,Bronx,0,5,8,0,7,0,20 +52741,Bronx,0,6,33,0,9,0,48 +54866,Brooklyn,0,0,8,0,0,0,39 +57503,Brooklyn,0,26,26,0,13,0,251 +57504,Brooklyn,0,0,121,0,0,0,484 +52223,Bronx,89,0,1,0,0,0,90 +57999,Staten Island,0,0,1,0,0,0,1 +58174,Brooklyn,0,0,0,1,0,0,1 +57784,Queens,0,0,1,0,0,0,1 +57816,Queens,0,0,1,0,0,0,1 +52898,Brooklyn,0,0,26,9,0,0,35 +53166,Brooklyn,0,0,10,0,0,0,49 +57802,Staten Island,0,0,1,0,0,0,1 +57829,Bronx,0,0,1,0,0,0,1 +53518,Manhattan,0,43,44,0,22,0,429 +54727,Brooklyn,0,70,0,0,0,1,71 +57824,Staten Island,0,1,0,0,0,0,1 +65114,Brooklyn,0,0,2,0,0,0,8 +52369,Brooklyn,0,0,11,0,0,0,48 +54898,Manhattan,0,0,15,0,0,0,75 +57827,Brooklyn,0,0,1,0,0,0,1 +59046,Brooklyn,0,0,93,0,0,0,93 +59046,Brooklyn,0,0,116,0,0,0,116 +50639,Brooklyn,0,0,19,0,0,0,93 +53006,Manhattan,0,0,58,0,0,0,289 +57806,Staten Island,0,0,1,0,0,0,1 +57807,Queens,0,0,1,0,0,0,1 +58517,Brooklyn,0,0,100,40,0,1,141 +54982,Manhattan,0,11,11,0,6,0,110 +53498,Manhattan,0,0,97,0,0,0,483 +57809,Staten Island,0,0,1,0,0,0,1 +58204,Brooklyn,0,0,0,2,0,0,2 +51123,Brooklyn,0,0,25,0,24,1,123 +57813,Staten Island,0,0,1,0,0,0,1 +57819,Staten Island,0,0,1,0,0,0,1 +52852,Bronx,0,0,25,0,0,0,25 +52852,Bronx,0,0,69,0,0,0,69 +52852,Bronx,0,0,25,0,0,0,25 +52852,Bronx,0,0,25,0,0,0,25 +52852,Bronx,0,0,37,0,0,0,37 +53383,Brooklyn,0,20,106,34,40,0,200 +44324,Manhattan,0,0,24,26,52,1,103 +52053,Manhattan,0,0,79,0,0,0,392 +54292,Brooklyn,10,30,62,0,0,0,103 +55121,Brooklyn,0,0,2,0,0,0,2 +58241,Bronx,0,0,2,0,0,0,2 +50875,Manhattan,0,0,29,0,0,0,122 +58504,Bronx,0,52,6,15,0,1,74 +55343,Brooklyn,0,25,0,0,0,0,25 +57603,Queens,0,0,1,0,0,0,1 +52665,Brooklyn,0,0,21,0,0,0,21 +57575,Queens,0,0,1,0,0,0,1 +54494,Manhattan,0,0,37,0,0,0,37 +57585,Bronx,0,0,1,0,0,0,1 +57578,Bronx,0,0,1,0,0,0,1 +57548,Queens,0,0,1,0,0,0,1 +57565,Bronx,0,0,1,0,0,0,1 +57567,Queens,0,0,1,0,0,0,1 +57557,Queens,0,0,1,0,0,0,1 +57570,Staten Island,0,0,1,0,0,0,1 +57560,Bronx,0,0,1,0,0,0,1 +65095,Manhattan,0,0,10,0,0,0,29 +57550,Brooklyn,0,0,1,0,0,0,1 +65126,Brooklyn,0,0,2,0,0,0,8 +57581,Staten Island,0,1,0,0,0,0,1 +65093,Bronx,0,0,11,0,0,0,55 +52788,Brooklyn,0,0,29,0,0,0,440 +55240,Staten Island,0,0,1,0,0,0,1 +49774,Manhattan,0,0,120,0,0,0,598 +50200,Bronx,60,0,0,0,0,0,60 +55185,Queens,0,0,1,0,0,0,1 +55186,Staten Island,0,0,1,0,0,0,1 +55187,Staten Island,0,0,1,0,0,0,1 +53192,Brooklyn,0,0,104,0,0,0,522 +55255,Queens,0,0,1,0,0,0,1 +65106,Brooklyn,0,0,2,0,0,0,8 +55188,Brooklyn,0,0,1,0,0,0,1 +55189,Brooklyn,0,0,1,0,0,0,1 +55190,Staten Island,0,1,0,0,0,0,1 +55183,Brooklyn,0,0,1,0,0,0,1 +55191,Queens,0,0,1,0,0,0,1 +50201,Brooklyn,0,0,18,3,0,1,22 +52126,Manhattan,0,0,46,0,0,0,225 +48775,Brooklyn,0,6,0,0,0,0,6 +48775,Brooklyn,0,1,5,0,0,0,6 +48775,Brooklyn,0,0,4,0,0,0,4 +48775,Brooklyn,0,0,4,0,0,0,4 +48775,Brooklyn,0,1,3,0,0,0,4 +50059,Brooklyn,0,1,5,0,0,0,6 +50059,Brooklyn,0,1,3,0,0,0,4 +50059,Brooklyn,0,0,8,0,0,0,8 +50059,Brooklyn,0,2,4,0,0,0,6 +50059,Brooklyn,0,4,2,0,0,0,6 +50059,Brooklyn,0,2,4,0,0,0,6 +50059,Brooklyn,0,2,1,0,0,0,3 +50206,Brooklyn,4,0,24,0,0,1,29 +50206,Brooklyn,3,0,13,0,0,0,16 +50206,Brooklyn,1,0,6,0,0,0,7 +50206,Brooklyn,1,0,6,0,0,0,7 +50206,Brooklyn,0,0,7,0,0,0,7 +50206,Brooklyn,12,0,24,0,0,1,37 +50206,Brooklyn,0,0,3,0,0,0,3 +50206,Brooklyn,9,0,32,0,0,1,42 +50206,Brooklyn,13,0,52,0,0,1,66 +52218,Manhattan,0,12,12,0,6,0,120 +54978,Bronx,0,0,0,1,0,0,1 +54979,Queens,0,0,1,0,0,0,1 +53519,Brooklyn,0,0,10,0,0,0,50 +54976,Bronx,0,0,1,0,0,0,1 +54977,Staten Island,0,0,1,0,0,0,1 +54389,Manhattan,0,0,0,39,89,1,256 +65075,Brooklyn,0,0,3,0,0,0,15 +49562,Bronx,0,48,38,0,0,0,86 +54728,Manhattan,0,0,90,0,0,0,90 +54913,Brooklyn,1,0,0,0,0,0,1 +54975,Staten Island,0,1,0,0,0,0,1 +54689,Staten Island,0,0,1,0,0,0,1 +58292,Staten Island,0,0,0,0,1,0,1 +54690,Staten Island,0,0,1,0,0,0,1 +54737,Queens,0,0,1,0,0,0,1 +65133,Brooklyn,0,0,2,0,0,0,7 +54691,Bronx,0,0,1,0,0,0,1 +54739,Bronx,0,0,1,0,0,0,1 +54364,Brooklyn,2,0,0,0,0,0,2 +54669,Queens,0,0,1,0,0,0,1 +54692,Bronx,0,0,1,0,0,0,1 +55178,Brooklyn,0,0,2,0,0,0,2 +58291,Bronx,0,0,0,0,1,0,1 +54740,Staten Island,0,0,1,0,0,0,1 +58255,Bronx,0,0,0,0,1,0,1 +54741,Brooklyn,0,0,1,0,0,0,1 +58494,Staten Island,0,66,0,0,0,1,67 +44281,Brooklyn,0,1,30,0,0,0,31 +44281,Brooklyn,0,0,31,0,0,0,31 +44281,Brooklyn,0,1,25,0,0,1,27 +44281,Brooklyn,0,1,30,0,0,0,31 +44281,Brooklyn,0,0,31,0,0,0,31 +44281,Brooklyn,0,0,89,0,0,0,89 +50026,Brooklyn,56,0,22,0,0,1,79 +50026,Brooklyn,50,0,5,0,0,0,55 +51778,Bronx,20,30,197,0,0,1,248 +52661,Bronx,0,0,57,0,0,0,152 +53245,Bronx,0,19,75,0,0,1,152 +49283,Brooklyn,0,0,150,0,0,0,750 +50257,Bronx,0,0,69,0,0,0,69 +53277,Brooklyn,0,0,159,0,0,0,159 +53553,Bronx,0,91,0,0,0,0,91 +53553,Bronx,0,91,0,0,0,0,91 +54650,Bronx,0,0,1,0,0,0,1 +52320,Brooklyn,0,0,29,0,0,0,142 +52723,Brooklyn,42,6,52,0,0,1,101 +52723,Brooklyn,20,4,24,0,0,0,48 +58254,Staten Island,0,0,0,0,1,0,1 +48646,Manhattan,202,0,0,0,0,1,203 +58492,Brooklyn,8,12,37,0,0,1,58 +49938,Brooklyn,0,10,67,0,20,1,98 +51179,Brooklyn,5,67,21,0,0,1,94 +54637,Staten Island,0,0,1,0,0,0,1 +55428,Manhattan,0,0,24,0,0,0,24 +55428,Manhattan,0,0,269,0,0,0,269 +55428,Manhattan,0,0,42,0,0,0,42 +55428,Bronx,0,0,207,0,0,0,207 +55428,Brooklyn,0,0,251,0,0,1,252 +55428,Manhattan,0,0,80,0,0,0,80 +58250,Brooklyn,0,0,0,0,1,0,1 +50810,Queens,0,151,0,0,0,0,151 +51103,Manhattan,0,0,116,0,0,0,116 +51278,Queens,0,18,70,0,0,1,89 +54636,Queens,0,0,1,0,0,0,1 +54677,Queens,0,0,1,0,0,0,1 +48731,Bronx,0,0,11,0,0,0,11 +48731,Bronx,0,0,19,0,0,1,20 +48731,Bronx,0,0,56,0,0,1,57 +48731,Bronx,0,0,12,0,0,0,12 +52610,Bronx,0,0,123,40,0,0,163 +49711,Brooklyn,0,0,19,0,0,0,93 +50184,Manhattan,0,0,8,0,0,0,8 +50184,Manhattan,0,3,18,1,0,0,22 +50184,Manhattan,0,7,10,0,0,0,17 +50184,Manhattan,0,0,14,0,0,1,15 +50184,Manhattan,0,3,12,0,0,0,15 +50184,Manhattan,0,0,8,0,0,0,8 +50184,Manhattan,0,2,6,0,0,0,8 +50184,Manhattan,0,0,8,0,0,0,8 +50184,Manhattan,0,0,8,0,0,0,8 +50184,Manhattan,0,2,6,0,0,0,8 +51363,Manhattan,0,0,169,0,0,0,844 +51779,Queens,0,13,0,50,0,1,64 +52666,Manhattan,0,11,0,0,42,1,54 +52667,Bronx,0,12,45,0,0,1,58 +52721,Bronx,45,5,1,2,0,1,54 +52721,Bronx,41,11,2,0,0,0,54 +52721,Bronx,38,9,5,1,0,1,54 +52721,Bronx,6,1,0,0,0,0,7 +52721,Bronx,33,0,2,0,0,1,36 +52721,Bronx,17,0,2,0,0,1,20 +52721,Bronx,29,2,3,0,0,0,34 +52721,Bronx,51,8,9,1,0,1,70 +52721,Bronx,41,5,1,0,0,1,48 +52721,Bronx,33,5,2,1,0,1,42 +52721,Bronx,35,4,3,0,0,1,43 +52721,Bronx,34,6,2,1,0,0,43 +52721,Bronx,20,6,3,0,0,1,30 +52721,Bronx,9,3,2,2,0,0,16 +52721,Bronx,24,2,1,0,0,0,27 +52721,Bronx,51,3,1,1,0,1,57 +52721,Bronx,38,2,0,0,0,1,41 +54353,Brooklyn,0,2,0,0,0,0,2 +55396,Staten Island,429,0,107,0,0,0,536 +58511,Manhattan,0,3,142,0,0,1,146 +65132,Brooklyn,0,0,3,0,0,0,15 +54648,Queens,0,0,1,0,0,0,1 +58513,Brooklyn,0,0,93,0,0,2,95 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,32,0,0,0,32 +58513,Brooklyn,0,0,32,0,0,0,32 +58513,Brooklyn,0,0,7,0,0,0,7 +58513,Brooklyn,0,0,40,0,0,0,40 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,5,0,0,0,5 +58513,Brooklyn,0,0,5,0,0,0,5 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,53,0,0,0,53 +58513,Brooklyn,0,0,11,0,0,0,11 +58513,Brooklyn,0,0,5,0,0,0,5 +58513,Brooklyn,0,0,5,0,0,0,5 +58513,Brooklyn,0,0,35,0,0,0,35 +58513,Brooklyn,0,0,36,0,0,0,36 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,32,0,0,0,32 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,12,0,0,0,12 +58513,Brooklyn,0,0,41,0,0,0,41 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,17,0,0,0,17 +58513,Brooklyn,0,0,32,0,0,0,32 +58513,Brooklyn,0,0,6,0,0,0,6 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,2,0,0,0,2 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58513,Brooklyn,0,0,4,0,0,0,4 +58249,Staten Island,0,0,0,0,1,0,1 +54651,Staten Island,0,0,1,0,0,0,1 +50871,Brooklyn,0,0,21,0,0,0,105 +51918,Manhattan,0,0,75,0,0,0,372 +54642,Staten Island,0,0,0,1,0,0,1 +55437,Brooklyn,0,15,75,26,181,1,298 +52272,Brooklyn,0,0,54,0,0,0,270 +50702,Brooklyn,0,0,19,0,0,0,94 +54635,Staten Island,0,0,1,0,0,0,1 +54647,Bronx,0,0,0,2,0,0,2 +54638,Queens,0,0,1,0,0,0,1 +54644,Queens,0,0,1,0,0,0,1 +58510,Bronx,0,0,98,0,0,1,99 +54640,Staten Island,0,0,1,0,0,0,1 +54679,Manhattan,0,0,1,0,0,0,1 +54566,Brooklyn,0,0,1,0,0,0,1 +50467,Manhattan,0,0,11,0,0,0,55 +52733,Manhattan,0,0,10,0,0,1,11 +52733,Manhattan,0,0,51,2,0,1,54 +52733,Manhattan,0,0,8,4,0,0,12 +52733,Manhattan,0,0,18,25,0,1,44 +52733,Manhattan,0,0,9,18,0,0,27 +52733,Manhattan,0,0,25,24,0,0,49 +52733,Manhattan,0,0,8,9,0,1,18 +52733,Manhattan,0,0,13,0,0,0,13 +52733,Manhattan,0,0,4,0,0,0,4 +52733,Manhattan,0,0,12,0,0,0,12 +52733,Manhattan,0,0,10,4,0,1,15 +52733,Manhattan,0,0,2,8,0,0,10 +52733,Manhattan,0,0,3,7,0,0,10 +52733,Manhattan,0,0,8,6,0,1,15 +52733,Manhattan,0,0,3,11,0,1,15 +52733,Manhattan,0,0,6,10,0,0,16 +52733,Manhattan,0,0,16,24,0,1,41 +52733,Manhattan,0,0,0,7,0,0,7 +52733,Manhattan,0,0,6,12,0,0,18 +52733,Manhattan,0,0,8,0,0,0,8 +54565,Brooklyn,0,0,0,1,0,0,1 +54646,Queens,0,0,1,0,0,0,1 +58248,Staten Island,0,0,0,0,1,0,1 +58290,Queens,0,0,0,0,1,0,1 +58508,Brooklyn,0,0,76,0,0,1,378 +54643,Queens,0,1,0,0,0,0,1 +65100,Brooklyn,0,0,2,0,0,0,8 +53603,Bronx,0,0,2,0,0,0,2 +54391,Queens,0,0,1,0,0,0,1 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +44265,Brooklyn,0,0,0,4,0,0,4 +52318,Brooklyn,0,0,143,0,0,0,714 +54411,Brooklyn,0,0,1,0,0,0,1 +54535,Bronx,0,0,1,0,0,0,1 +54554,Staten Island,0,0,1,0,0,0,1 +54555,Staten Island,0,0,1,0,0,0,1 +55467,Brooklyn,0,0,80,0,66,1,147 +68431,Brooklyn,0,0,181,0,0,1,182 +51297,Brooklyn,0,0,13,0,0,0,64 +52075,Manhattan,0,0,22,0,0,0,56 +53558,Manhattan,0,0,0,11,22,1,56 +54559,Brooklyn,0,0,3,0,0,0,3 +58193,Brooklyn,0,0,0,0,1,0,1 +58289,Queens,0,0,0,0,1,0,1 +54556,Brooklyn,2,0,0,0,0,0,2 +54410,Brooklyn,0,0,1,0,0,0,1 +54409,Queens,0,0,1,0,0,0,1 +65138,Manhattan,0,0,2,0,0,0,8 +53694,Queens,0,0,1,0,0,0,1 +54403,Queens,0,0,1,0,0,0,1 +54408,Staten Island,0,0,1,0,0,0,1 +50356,Manhattan,29,1,0,0,0,0,30 +54397,Staten Island,0,0,1,0,0,0,1 +54553,Staten Island,1,0,0,0,0,0,1 +68430,Brooklyn,0,0,102,0,0,1,103 +54392,Queens,0,0,1,0,0,0,1 +54395,Staten Island,0,0,1,0,0,0,1 +54536,Brooklyn,0,0,1,0,0,0,1 +58191,Brooklyn,0,0,0,0,1,0,1 +50372,Bronx,0,0,69,0,0,1,70 +53467,Queens,0,0,1,0,0,0,1 +58189,Queens,0,0,0,0,1,0,1 +54537,Staten Island,0,0,1,0,0,0,1 +53529,Queens,0,0,1,0,0,0,1 +53542,Bronx,0,0,2,0,0,0,2 +53614,Staten Island,0,0,1,0,0,0,1 +53664,Brooklyn,0,0,1,0,0,0,1 +50405,Bronx,0,0,35,0,0,1,36 +50405,Bronx,0,0,31,0,0,0,31 +50417,Manhattan,38,15,5,0,0,1,59 +50418,Manhattan,67,15,5,0,0,1,88 +52241,Manhattan,0,103,103,52,0,0,1028 +53615,Queens,0,0,1,0,0,0,1 +58188,Brooklyn,0,0,0,0,1,0,1 +58227,Staten Island,0,0,0,0,1,0,1 +58491,Queens,8,3,42,0,0,1,54 +50419,Manhattan,88,15,6,0,0,1,110 +50421,Manhattan,97,26,7,0,0,1,131 +58180,Bronx,0,0,0,0,1,0,1 +55413,Queens,0,0,31,0,0,1,32 +58179,Queens,0,0,0,0,1,0,1 +53414,Queens,0,2,0,0,0,0,2 +53663,Brooklyn,0,0,1,0,0,0,1 +65068,Brooklyn,0,0,4,0,0,0,8 +65107,Bronx,0,0,18,0,0,0,88 +53616,Bronx,0,0,1,0,0,0,1 +53661,Brooklyn,0,0,1,0,0,0,1 +53611,Bronx,0,0,1,0,0,0,1 +58200,Brooklyn,0,0,0,0,1,0,1 +53251,Bronx,0,0,0,2,0,0,2 +53609,Queens,0,1,0,0,0,0,1 +53618,Bronx,0,0,1,0,0,0,1 +53624,Queens,0,0,1,0,0,0,1 +53666,Queens,0,0,1,0,0,0,1 +58506,Manhattan,0,142,0,0,0,1,709 +65108,Bronx,0,0,7,0,0,0,34 +53612,Brooklyn,0,0,1,0,0,0,1 +53212,Brooklyn,0,0,0,2,0,0,2 +58198,Queens,0,0,0,0,1,0,1 +51585,Manhattan,0,0,19,0,0,0,95 +53610,Queens,0,0,1,0,0,0,1 +53623,Staten Island,0,0,1,0,0,0,1 +53665,Staten Island,0,0,1,0,0,0,1 +53211,Brooklyn,0,0,0,1,0,0,1 +50104,Bronx,0,0,79,0,0,1,80 +58197,Brooklyn,0,0,0,0,1,0,1 +53572,Queens,0,0,1,0,0,0,1 +53588,Brooklyn,0,0,1,0,0,0,1 +53590,Queens,0,0,1,0,0,0,1 +58196,Brooklyn,0,0,0,0,1,0,1 +53064,Queens,0,0,2,0,0,0,2 +53579,Brooklyn,0,0,1,0,0,0,1 +58195,Queens,0,0,0,0,1,0,1 +58194,Brooklyn,0,0,0,0,1,0,1 +53194,Bronx,0,0,2,0,0,0,2 +55511,Queens,0,0,0,0,343,0,343 +48638,Manhattan,39,0,14,0,0,0,53 +48638,Manhattan,0,0,56,0,0,0,56 +53569,Brooklyn,0,0,1,0,0,0,1 +58192,Bronx,0,0,0,0,1,0,1 +53578,Staten Island,0,0,1,0,0,0,1 +58177,Brooklyn,0,0,0,0,1,0,1 +50187,Brooklyn,0,0,10,0,0,0,44 +53604,Brooklyn,0,0,1,0,0,0,1 +53586,Queens,0,0,1,0,0,0,1 +53587,Staten Island,0,0,1,0,0,0,1 +53602,Brooklyn,0,0,1,0,0,0,1 +58199,Staten Island,0,0,0,0,1,0,1 +58218,Staten Island,0,0,0,0,1,0,1 +58247,Staten Island,0,0,0,0,1,0,1 +50404,Brooklyn,0,0,8,0,0,0,8 +50404,Brooklyn,0,0,4,0,0,0,4 +50404,Brooklyn,0,0,10,0,0,1,11 +50404,Brooklyn,0,0,6,0,0,0,6 +50404,Brooklyn,0,0,8,0,0,0,8 +50404,Brooklyn,0,0,3,0,0,0,3 +50404,Brooklyn,0,0,4,0,0,0,4 +50404,Brooklyn,0,0,4,0,0,0,4 +50404,Brooklyn,0,0,3,0,0,0,3 +50404,Brooklyn,0,0,8,0,0,0,8 +50404,Brooklyn,0,0,11,0,0,1,12 +50404,Brooklyn,0,0,4,0,0,0,4 +50404,Brooklyn,0,0,4,0,0,0,4 +50404,Brooklyn,0,0,8,0,0,0,8 +50404,Brooklyn,0,0,10,0,0,0,10 +50404,Brooklyn,0,0,7,0,0,0,7 +50404,Brooklyn,0,0,6,0,0,0,6 +50404,Brooklyn,0,0,15,0,0,1,16 +53583,Staten Island,0,0,1,0,0,0,1 +49959,Manhattan,8,42,0,0,0,1,51 +53564,Brooklyn,0,0,1,0,0,0,1 +58246,Queens,0,0,0,0,1,0,1 +52138,Brooklyn,0,0,0,3,0,0,3 +58226,Queens,0,0,0,0,1,0,1 +58190,Staten Island,0,0,0,0,1,0,1 +53003,Bronx,0,0,0,3,0,0,3 +58217,Brooklyn,0,0,0,0,1,0,1 +58229,Queens,0,0,0,0,1,0,1 +53195,Bronx,0,0,2,0,0,0,2 +53472,Brooklyn,0,0,1,0,0,0,1 +53470,Bronx,0,0,1,0,0,0,1 +58214,Bronx,0,0,0,0,1,0,1 +58215,Queens,0,0,0,0,1,0,1 +58213,Staten Island,0,0,0,0,1,0,1 +49945,Brooklyn,0,0,86,0,0,0,429 +53469,Staten Island,0,0,1,0,0,0,1 +52878,Brooklyn,0,0,2,0,0,0,2 +44333,Bronx,61,0,0,0,0,1,62 +58212,Staten Island,0,0,0,0,1,0,1 +58505,Staten Island,0,0,57,0,0,0,57 +58505,Staten Island,0,0,58,0,0,1,514 +53449,Brooklyn,0,0,1,0,0,0,1 +53454,Brooklyn,0,0,1,0,0,0,1 +53118,Queens,0,0,0,1,0,0,1 +53447,Staten Island,0,0,1,0,0,0,1 +53448,Queens,0,1,0,0,0,0,1 +58211,Staten Island,0,0,0,0,1,0,1 +65091,Bronx,0,0,7,0,0,0,33 +58185,Brooklyn,0,0,0,0,1,0,1 +49544,Manhattan,33,0,0,0,0,0,33 +53108,Queens,0,0,1,0,0,0,1 +53107,Queens,0,0,0,2,0,0,2 +58176,Staten Island,0,0,0,0,1,0,1 +58184,Queens,0,0,0,0,1,0,1 +53446,Staten Island,0,0,1,0,0,0,1 +58183,Staten Island,0,0,0,0,1,0,1 +50495,Queens,8,0,44,0,0,1,53 +53106,Brooklyn,0,0,2,0,0,0,2 +53110,Bronx,0,0,2,0,0,0,2 +49709,Manhattan,0,0,235,0,0,0,1175 +53354,Brooklyn,0,1,0,0,0,0,1 +53352,Queens,0,0,1,0,0,0,1 +53353,Brooklyn,0,0,1,0,0,0,1 +53350,Queens,0,0,1,0,0,0,1 +53056,Brooklyn,0,0,1,0,0,0,1 +58182,Queens,0,0,0,0,1,0,1 +58181,Brooklyn,0,0,0,0,1,0,1 +53033,Staten Island,0,0,1,0,0,0,1 +52984,Bronx,0,0,1,0,0,0,1 +58178,Brooklyn,0,0,0,0,1,0,1 +58225,Queens,0,0,0,0,1,0,1 +58223,Queens,0,0,0,0,1,0,1 +58224,Brooklyn,0,0,0,0,1,0,1 +58222,Staten Island,0,0,0,0,1,0,1 +58221,Bronx,0,0,0,0,1,0,1 +51357,Manhattan,0,15,48,0,15,1,79 +52981,Queens,0,0,1,0,0,0,1 +58220,Queens,0,0,0,0,1,0,1 +52603,Brooklyn,0,0,0,2,0,0,2 +52838,Brooklyn,0,0,0,2,0,0,2 +44239,Manhattan,12,0,47,0,0,1,60 +44319,Brooklyn,0,1,9,0,0,0,10 +44319,Brooklyn,0,0,6,0,0,0,6 +44319,Brooklyn,3,1,13,0,0,1,18 +44319,Brooklyn,5,1,13,0,0,0,19 +45303,Brooklyn,0,33,44,0,0,1,78 +45303,Brooklyn,0,13,19,0,0,0,32 +45326,Bronx,0,0,18,54,0,1,73 +47841,Bronx,0,0,38,0,0,1,39 +47858,Bronx,0,0,26,1,0,0,27 +48742,Manhattan,0,0,55,0,0,0,274 +48870,Bronx,0,0,139,0,0,0,139 +48898,Manhattan,0,0,135,0,0,0,135 +49071,Bronx,0,0,83,0,0,1,84 +49943,Brooklyn,0,19,73,0,0,0,93 +50291,Manhattan,0,10,0,0,0,0,10 +50370,Brooklyn,0,0,201,0,0,1,202 +51150,Bronx,0,0,20,0,0,0,20 +52021,Bronx,0,48,0,0,0,1,49 +52022,Bronx,0,51,0,0,0,0,51 +52319,Manhattan,0,155,0,0,0,0,155 +55932,Brooklyn,0,0,1,0,0,0,1 +44225,Bronx,0,0,11,0,0,0,11 +44225,Bronx,0,14,40,0,0,1,55 +50842,Manhattan,189,32,21,2,1,0,245 +50842,Manhattan,184,29,20,9,3,0,245 +51177,Manhattan,0,0,7,0,0,0,7 +51177,Manhattan,0,0,12,0,0,1,13 +51177,Manhattan,0,0,9,0,0,0,9 +51177,Manhattan,0,0,9,0,0,0,9 +51177,Manhattan,0,0,8,0,0,1,9 +51177,Manhattan,0,0,15,0,0,0,15 +51177,Manhattan,0,0,19,0,0,1,20 +51177,Manhattan,0,0,20,0,0,0,20 +51177,Manhattan,0,0,42,0,0,0,42 +51177,Manhattan,0,0,35,0,0,1,36 +51177,Manhattan,0,0,15,0,0,0,15 +51177,Manhattan,0,0,10,0,0,0,10 +51177,Manhattan,0,0,12,0,0,0,12 +51177,Manhattan,0,0,7,0,0,0,7 +51177,Manhattan,0,0,30,0,0,0,30 +51299,Brooklyn,0,45,105,0,0,1,151 +51299,Brooklyn,0,41,94,0,0,1,136 +52056,Bronx,0,0,0,0,0,0,18 +52056,Bronx,0,0,0,0,0,0,44 +52056,Bronx,0,0,0,0,0,0,15 +52056,Bronx,0,0,0,0,0,0,54 +52056,Bronx,0,0,0,0,0,0,40 +52056,Bronx,0,0,38,0,0,0,38 +52056,Bronx,0,0,27,0,0,0,27 +52056,Bronx,0,0,24,0,0,0,24 +52056,Bronx,0,0,26,0,0,0,26 +52056,Bronx,0,0,44,0,0,0,44 +52182,Queens,0,151,0,0,0,0,151 +55745,Queens,0,0,0,0,1,0,1 +55760,Staten Island,0,0,0,0,1,0,1 +44288,Brooklyn,0,0,4,0,0,0,4 +44288,Brooklyn,0,0,3,0,0,0,3 +44288,Brooklyn,0,0,4,0,0,0,4 +44288,Brooklyn,0,0,4,0,0,0,4 +44353,Bronx,12,0,27,0,0,1,40 +44353,Bronx,33,0,16,0,0,1,50 +48607,Bronx,0,0,36,0,0,1,37 +48607,Bronx,0,0,42,0,0,1,43 +48607,Bronx,0,0,48,0,0,1,49 +48607,Bronx,0,0,8,0,0,1,9 +48679,Bronx,0,0,18,0,2,1,21 +48679,Bronx,0,0,17,0,3,0,20 +48679,Bronx,0,0,16,0,4,1,21 +48679,Bronx,0,0,8,0,12,0,20 +48679,Bronx,0,0,6,0,4,0,10 +48679,Bronx,0,0,10,0,0,1,11 +48679,Bronx,0,0,7,0,3,1,11 +48787,Brooklyn,0,16,0,0,0,0,16 +48906,Brooklyn,182,0,110,0,0,1,293 +49172,Bronx,86,0,0,0,0,0,86 +49908,Manhattan,0,0,62,0,0,0,280 +50088,Bronx,0,22,84,27,0,1,134 +50282,Bronx,0,8,77,0,0,1,86 +50408,Bronx,0,42,0,0,0,1,43 +50497,Bronx,0,0,153,22,0,1,176 +50583,Brooklyn,0,0,305,0,0,0,305 +50609,Brooklyn,0,7,6,1,0,1,15 +51104,Manhattan,0,0,22,0,0,0,107 +51252,Bronx,0,0,8,0,0,1,9 +51252,Bronx,0,3,6,0,0,0,9 +51252,Bronx,0,0,45,0,0,1,46 +51252,Bronx,0,3,38,0,0,1,42 +51607,Manhattan,0,0,41,0,0,0,201 +52411,Bronx,0,0,536,0,0,0,536 +55506,Brooklyn,0,0,0,0,422,0,422 +55699,Brooklyn,0,0,0,0,1,0,1 +55723,Bronx,0,0,0,0,1,0,1 +55783,Staten Island,0,0,0,0,1,0,1 +50359,Manhattan,0,0,41,0,10,0,51 +50359,Manhattan,0,0,10,0,8,0,18 +50359,Manhattan,0,0,10,0,8,0,18 +50359,Manhattan,0,0,11,0,7,0,18 +51590,Manhattan,1,16,1,0,0,0,18 +52413,Brooklyn,0,0,288,0,0,0,288 +55695,Brooklyn,0,0,0,0,1,0,1 +56332,Bronx,0,0,1,0,0,0,1 +56691,Brooklyn,0,0,1,0,0,0,1 +57194,Brooklyn,0,0,1,0,0,0,1 +57294,Staten Island,0,0,1,0,0,0,1 +48624,Brooklyn,0,0,5,1,0,0,6 +48624,Brooklyn,0,0,4,4,0,0,8 +48624,Brooklyn,0,0,12,0,0,0,12 +48624,Brooklyn,0,0,15,0,0,1,16 +48624,Brooklyn,0,0,16,0,0,0,16 +48624,Brooklyn,0,0,19,12,0,0,31 +48624,Brooklyn,0,0,0,0,0,0,6 +50278,Bronx,0,16,0,0,0,0,16 +50278,Bronx,0,21,0,0,0,0,21 +50278,Bronx,0,20,0,0,0,0,20 +50278,Bronx,0,16,0,0,0,0,16 +50278,Bronx,0,21,0,0,0,0,21 +50278,Bronx,0,32,0,0,0,0,32 +50278,Bronx,0,13,0,0,0,0,13 +50390,Bronx,0,0,90,0,0,1,91 +50580,Manhattan,0,0,21,0,0,0,21 +55912,Brooklyn,0,0,1,0,0,0,1 +50371,Bronx,42,1,0,0,0,1,44 +48128,Manhattan,0,10,0,0,6,0,16 +48128,Manhattan,0,0,0,0,20,1,21 +48128,Manhattan,0,3,6,0,0,1,10 +48128,Manhattan,0,11,9,0,0,1,21 +48128,Manhattan,0,4,6,0,0,1,11 +48128,Manhattan,0,0,0,20,0,1,21 +48767,Manhattan,0,0,30,0,0,0,30 +48767,Manhattan,0,0,41,0,0,0,41 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,3,0,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,0,3,0,0,0,3 +50207,Brooklyn,0,2,1,0,0,0,3 +50207,Brooklyn,0,2,1,0,0,0,3 +50207,Brooklyn,0,1,1,0,0,1,3 +50207,Brooklyn,0,1,2,0,0,0,3 +50207,Brooklyn,0,0,2,0,0,0,2 +50258,Bronx,0,0,31,0,0,0,31 +50258,Bronx,0,0,54,0,0,0,54 +50352,Bronx,0,0,12,5,0,0,17 +50352,Bronx,0,0,54,11,0,0,65 +50352,Bronx,0,0,29,8,0,0,37 +57027,Brooklyn,0,1,0,0,0,0,1 +50248,Brooklyn,0,0,5,0,0,0,5 +50248,Brooklyn,0,0,5,0,0,0,5 +50248,Brooklyn,0,0,2,0,0,0,2 +50248,Brooklyn,0,0,6,0,0,0,6 +50248,Brooklyn,0,0,6,0,0,0,6 +50248,Brooklyn,0,0,2,0,0,0,2 +50248,Brooklyn,0,0,2,0,0,0,2 +50248,Brooklyn,0,0,2,0,0,0,2 +50248,Brooklyn,0,0,5,0,0,0,5 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,4,0,0,0,4 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,9,0,0,0,9 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,2,0,0,0,2 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,3,0,0,0,3 +50248,Brooklyn,0,0,3,0,0,0,3 +50330,Manhattan,0,0,160,0,0,0,761 +50353,Bronx,0,0,36,0,0,0,36 +50353,Bronx,0,0,8,0,0,0,8 +50353,Bronx,0,0,8,0,0,0,8 +50353,Bronx,0,0,8,0,0,0,8 +50353,Bronx,0,0,8,0,0,0,8 +52429,Queens,0,0,0,2,0,0,2 +55736,Queens,0,0,0,0,1,0,1 +57437,Staten Island,0,0,1,0,0,0,1 +50360,Bronx,0,0,27,0,0,0,27 +50360,Bronx,0,0,17,0,0,0,17 +56377,Bronx,0,0,1,0,0,0,1 +50193,Brooklyn,0,0,8,0,0,0,8 +50193,Brooklyn,0,0,6,0,0,0,6 +50193,Brooklyn,0,0,8,0,0,0,8 +50193,Brooklyn,0,0,8,0,0,0,8 +50193,Brooklyn,0,0,6,0,0,0,6 +50193,Brooklyn,0,0,8,0,0,0,8 +56573,Brooklyn,0,0,1,0,0,0,1 +57036,Brooklyn,0,0,1,0,0,0,1 +56570,Brooklyn,0,0,1,0,0,0,1 +50354,Bronx,40,1,0,0,0,0,41 +52370,Queens,0,0,1,0,0,0,1 +53254,Bronx,0,160,0,0,0,0,160 +55976,Bronx,0,1,0,0,0,0,1 +56952,Queens,0,0,1,0,0,0,1 +57361,Staten Island,0,0,1,0,0,0,1 +50294,Bronx,0,6,25,0,0,0,31 +52507,Queens,0,0,1,0,0,0,1 +50416,Manhattan,0,0,26,0,103,1,130 +57450,Staten Island,0,0,1,0,0,0,1 +50410,Brooklyn,40,16,23,0,0,1,80 +51249,Bronx,0,28,0,0,0,1,29 +51534,Brooklyn,1,0,0,0,0,0,1 +52401,Brooklyn,0,0,3,0,0,0,3 +55732,Queens,0,0,0,0,1,0,1 +56397,Brooklyn,0,0,1,0,0,0,1 +57320,Staten Island,0,1,0,0,0,0,1 +57364,Staten Island,0,0,1,0,0,0,1 +50192,Bronx,16,0,11,0,0,0,27 +56141,Brooklyn,0,0,1,0,0,0,1 +56745,Bronx,0,0,1,0,0,0,1 +56572,Brooklyn,0,0,1,0,0,0,1 +55701,Brooklyn,0,0,0,0,1,0,1 +55980,Bronx,0,1,0,0,0,0,1 +55702,Brooklyn,0,0,0,0,1,0,1 +65135,Bronx,0,0,1,0,0,0,4 +65135,Bronx,0,0,1,0,0,0,4 +56319,Brooklyn,0,0,1,0,0,0,1 +56971,Brooklyn,0,0,1,0,0,0,1 +55735,Queens,0,0,0,0,1,0,1 +55500,Manhattan,0,0,92,0,0,0,92 +55762,Staten Island,0,0,0,0,1,0,1 +55772,Staten Island,0,0,0,0,1,0,1 +56249,Brooklyn,0,0,1,0,0,0,1 +56398,Brooklyn,0,0,1,0,0,0,1 +56571,Brooklyn,0,0,1,0,0,0,1 +57345,Staten Island,0,0,1,0,0,0,1 +58514,Brooklyn,0,0,110,0,0,1,111 +57233,Queens,0,0,1,0,0,0,1 +52224,Bronx,0,0,0,26,0,0,26 +52286,Queens,0,1,0,0,0,0,1 +56625,Brooklyn,0,0,1,0,0,0,1 +52493,Queens,0,0,1,0,0,0,1 +56159,Queens,0,0,1,0,0,0,1 +57061,Brooklyn,0,0,1,0,0,0,1 +55757,Queens,0,0,0,0,1,0,1 +55686,Brooklyn,0,0,0,0,1,0,1 +57335,Staten Island,0,0,1,0,0,0,1 +55743,Queens,0,0,0,0,1,0,1 +56402,Brooklyn,0,0,1,0,0,0,1 +55719,Bronx,0,0,0,0,1,0,1 +56247,Brooklyn,0,0,1,0,0,0,1 +56993,Bronx,0,0,1,0,0,0,1 +55989,Bronx,0,1,0,0,0,0,1 +56230,Brooklyn,0,0,1,0,0,0,1 +56985,Bronx,0,0,1,0,0,0,1 +56233,Brooklyn,0,0,1,0,0,0,1 +56155,Brooklyn,0,0,1,0,0,0,1 +56236,Brooklyn,0,0,1,0,0,0,1 +57319,Staten Island,0,0,1,0,0,0,1 +55691,Brooklyn,0,0,0,0,1,0,1 +55994,Bronx,0,0,1,0,0,0,1 +56430,Queens,0,0,1,0,0,0,1 +52135,Brooklyn,0,0,4,0,0,0,4 +52229,Brooklyn,2,0,0,0,0,0,2 +56547,Queens,0,0,1,0,0,0,1 +52134,Queens,0,0,1,0,0,0,1 +55873,Brooklyn,0,0,1,0,0,0,1 +57453,Staten Island,0,0,1,0,0,0,1 +55622,Staten Island,0,0,0,0,1,0,1 +50252,Manhattan,0,0,17,0,0,0,17 +50252,Manhattan,0,0,10,0,0,0,10 +52050,Bronx,0,0,0,4,0,0,4 +55708,Brooklyn,0,0,0,0,1,0,1 +57427,Staten Island,0,0,1,0,0,0,1 +50473,Bronx,0,0,12,0,0,0,60 +56580,Brooklyn,0,0,1,0,0,0,1 +57189,Brooklyn,0,0,1,0,0,0,1 +51914,Queens,0,0,3,0,0,0,3 +57472,Staten Island,0,1,0,0,0,0,1 +52102,Queens,2,0,0,0,0,0,2 +55970,Bronx,0,0,1,0,0,0,1 +56368,Bronx,0,0,1,0,0,0,1 +52436,Manhattan,0,0,21,0,0,1,22 +52436,Manhattan,0,0,24,0,0,0,24 +52436,Manhattan,0,0,18,0,0,0,18 +55778,Staten Island,0,0,0,0,1,0,1 +65123,Manhattan,0,0,6,0,0,0,27 +51501,Bronx,0,0,0,0,1,0,1 +48879,Queens,0,0,17,66,0,1,84 +57094,Queens,0,0,1,0,0,0,1 +52103,Brooklyn,0,2,0,0,0,0,2 +55859,Brooklyn,0,0,1,0,0,0,1 +56750,Bronx,0,0,1,0,0,0,1 +55958,Bronx,0,0,1,0,0,0,1 +56144,Brooklyn,0,0,1,0,0,0,1 +56523,Brooklyn,0,0,1,0,0,0,1 +57306,Staten Island,0,1,0,0,0,0,1 +55809,Brooklyn,0,0,1,0,0,0,1 +56248,Brooklyn,0,0,1,0,0,0,1 +56980,Brooklyn,0,1,0,0,0,0,1 +57458,Staten Island,0,0,1,0,0,0,1 +44371,Brooklyn,0,0,0,67,7,1,99 +47962,Bronx,0,1,10,0,0,0,11 +47962,Bronx,0,14,16,0,0,1,31 +55709,Bronx,0,0,0,0,1,0,1 +55826,Queens,0,0,1,0,0,0,1 +55624,Staten Island,0,0,0,0,1,0,1 +55756,Queens,0,0,0,0,1,0,1 +55775,Staten Island,0,0,0,0,1,0,1 +56657,Brooklyn,0,0,1,0,0,0,1 +55715,Bronx,0,0,0,0,1,0,1 +57456,Staten Island,0,0,1,0,0,0,1 +49588,Manhattan,8,0,11,0,3,1,55 +55966,Bronx,0,0,1,0,0,0,1 +57095,Queens,0,0,1,0,0,0,1 +55621,Staten Island,0,0,0,0,1,0,1 +55767,Staten Island,0,0,0,0,1,0,1 +56018,Brooklyn,0,0,1,0,0,0,1 +56740,Bronx,0,0,1,0,0,0,1 +55682,Brooklyn,0,0,0,0,1,0,1 +55995,Bronx,0,0,1,0,0,0,1 +57265,Staten Island,0,0,1,0,0,0,1 +52285,Brooklyn,1,0,0,0,0,0,1 +56242,Brooklyn,0,0,1,0,0,0,1 +57298,Staten Island,0,0,1,0,0,0,1 +50392,Manhattan,0,0,95,0,222,0,317 +56082,Queens,0,0,1,0,0,0,1 +56094,Queens,0,0,1,0,0,0,1 +58458,Brooklyn,55,34,0,0,0,1,90 +56117,Queens,0,0,1,0,0,0,1 +56508,Bronx,0,0,1,0,0,0,1 +65121,Brooklyn,0,0,2,0,0,0,8 +65121,Brooklyn,0,0,2,0,0,0,8 +44250,Brooklyn,8,0,0,0,0,0,8 +55679,Brooklyn,0,0,0,0,1,0,1 +55680,Brooklyn,0,0,0,0,1,0,1 +56836,Brooklyn,0,0,1,0,0,0,1 +56876,Queens,0,0,1,0,0,0,1 +65120,Queens,0,0,6,0,0,0,30 +56517,Queens,0,0,1,0,0,0,1 +55678,Brooklyn,0,0,0,0,1,0,1 +55685,Brooklyn,0,0,0,0,1,0,1 +55771,Staten Island,0,0,0,0,1,0,1 +57403,Staten Island,0,0,1,0,0,0,1 +44348,Bronx,0,28,107,0,0,1,136 +52947,Queens,0,0,1,0,0,0,1 +56951,Queens,0,0,1,0,0,0,1 +57270,Staten Island,0,0,1,0,0,0,1 +57281,Staten Island,0,0,1,0,0,0,1 +51325,Brooklyn,0,0,2,0,0,0,2 +50196,Bronx,0,0,42,0,0,1,43 +50196,Bronx,0,0,23,0,0,1,24 +50196,Bronx,0,0,62,0,0,1,63 +50196,Bronx,0,0,25,0,0,0,25 +50196,Bronx,0,0,25,0,0,0,25 +56393,Bronx,0,0,1,0,0,0,1 +56557,Queens,0,1,0,0,0,0,1 +56562,Queens,0,0,1,0,0,0,1 +57459,Staten Island,0,0,1,0,0,0,1 +50682,Manhattan,0,0,0,10,0,0,10 +55776,Staten Island,0,0,0,0,1,0,1 +55681,Brooklyn,0,0,0,0,1,0,1 +57428,Staten Island,0,0,1,0,0,0,1 +51502,Bronx,0,0,0,0,1,0,1 +49722,Brooklyn,0,29,22,0,0,1,52 +49722,Brooklyn,0,11,72,0,0,1,84 +49722,Brooklyn,0,89,0,0,0,1,90 +49722,Brooklyn,0,24,27,0,0,1,52 +56106,Bronx,0,0,1,0,0,0,1 +50481,Brooklyn,0,3,0,0,0,0,3 +55697,Brooklyn,0,0,0,0,1,0,1 +55773,Staten Island,0,0,0,0,1,0,1 +57341,Staten Island,0,0,1,0,0,0,1 +55647,Brooklyn,0,0,0,0,1,0,1 +55759,Queens,0,0,0,0,1,0,1 diff --git a/data/nyc_park_data.csv b/data/nyc_park_data.csv new file mode 100644 index 00000000..b206176d --- /dev/null +++ b/data/nyc_park_data.csv @@ -0,0 +1,2017 @@ +the_geom,GISPROPNUM,OBJECTID,OMPPROPID,DEPARTMENT,PERMITDIST,PERMITPARE,PARENTID,LOCATION,COMMUNITYB,COUNCILDIS,PRECINCT,ZIPCODE,BOROUGH,ACRES,RETIRED,EAPPLY,PIP_RATABL,GISOBJID,CLASS,COMMISSION,ACQUISITIO,ADDRESS,JURISDICTI,MAPPED,NAME311,PERMIT,SIGNNAME,SUBCATEGOR,TYPECATEGO,URL,WATERFRONT,NYS_ASSEMB,NYS_SENATE,US_CONGRES,GlobalID +"MULTIPOLYGON (((-74.14227319856263 40.54219614399445, -74.14218172142256 40.54213060160079, -74.1421694072854 40.542140606406505, -74.14112037022933 40.54138896983137, -74.14114726457694 40.54136711967883, -74.14108983846819 40.54119754065927, -74.14022698451784 40.54063034548782, -74.14049492768079 40.53944069391593, -74.14026626443236 40.53876540706763, -74.14055917942183 40.53789079161817, -74.14245464580493 40.5391386779672, -74.14305774852735 40.53960884499112, -74.14313488921337 40.539551250120205, -74.14334291625434 40.53971343150008, -74.14334889704558 40.540291696466085, -74.14334574046218 40.54042366741915, -74.14333354964315 40.54055533176229, -74.14331235799808 40.54068633104063, -74.1432822225438 40.54081630586717, -74.14324322627915 40.540944902223785, -74.14319547581948 40.54107176876246, -74.14313910021842 40.54119655770749, -74.1430742557 40.54131892935234, -74.14300111738872 40.541438548468165, -74.14291988522147 40.5415550887991, -74.1428307827661 40.54166823216347, -74.14273405131927 40.54177766846135, -74.1426299569974 40.541883099268176, -74.14251878247192 40.541984236944685, -74.14227319856263 40.54219614399445)), ((-74.14363039659257 40.54030431768918, -74.14364743253218 40.539954211508224, -74.14380445480151 40.540078374309, -74.14401472129846 40.540244635559894, -74.14384619951494 40.54037136742598, -74.14386675663691 40.54038864081823, -74.14368280221069 40.540519988073996, -74.14361653826333 40.54046939554939, -74.14362492006121 40.54038692729523, -74.14363039659257 40.54030431768918)))",R145,6367,R145,R-03,R-03,R-03,R-03,"Nelson Ave., Tennyson Dr. and Bulkhead Line",503,51,122,10308,R,20.907,False,Seaside Wildlife Nature Park,Yes,100005021,PARK,20100106000000.00000,19990222000000.00000,,DPR,True,Seaside Wildlife Nature Park,Y,Seaside Wildlife Nature Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R145/,Yes,64,24,11,{EC14E5C9-9687-49BC-9A7A-77F977DC0448} +"MULTIPOLYGON (((-73.90748556731788 40.75708917875267, -73.90767966215755 40.757071748493715, -73.90757282834349 40.757356495426514, -73.90754040000033 40.75736019659576, -73.90748556731788 40.75708917875267)))",Q355,5916,Q355,Q-01,Q-01,Q-01,Q-01,"31 Ave., 51 St., 54 St.",401,22,114,11377,Q,0.061,False,Strippoli Square,Yes,100000375,PARK,20090423000000.00000,19530514000000.00000,,DPR,True,Strippoli Square,Y,Strippoli Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q355/,No,30,12,14,{62700020-4840-4F4A-A15A-7D65B9A6A794} +"MULTIPOLYGON (((-74.00468042094083 40.6558401856359, -74.00492023725671 40.655613945962095, -74.00554383343307 40.655990645250085, -74.00507887526457 40.65643331219284, -74.00428598378717 40.65595404255754, -74.00451351598763 40.655739394745304, -74.00468042094083 40.6558401856359)))",B210B,5465,B210B,B-07,B-07,B-07,B-07,3 Ave. bet. 35 St. and 34 St.,307,38,72,11232,B,1.13,False,D'Eemic Playground,Yes,100004733,PARK,20100106000000.00000,19400528000000.00000,150 34 STREET,DPR,True,D'Emic Playground,Y,D'Emic Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B210B/,No,51,25,7,{BFD91324-49C1-46B5-B3E9-E43A989DC40B} +"MULTIPOLYGON (((-73.85639866166588 40.80924557141121, -73.85675812726971 40.809200179593915, -73.8570584778907 40.810474219888356, -73.85704070555435 40.810476672422936, -73.85710684675286 40.810757230988536, -73.85677465832855 40.81083018512945, -73.85639866166588 40.80924557141121)), ((-73.85608188156782 40.80777764553387, -73.85642970740255 40.8077300438905, -73.85667597197619 40.80879401904383, -73.85658777890465 40.808856150966456, -73.8563393708238 40.80889014710386, -73.85608188156782 40.80777764553387)))",X262,4857,X262,X-09,X-09,X-09,X-09,Bolton Ave. bet. O'Brien Ave. and G St.,209,18,43,10473,X,2.16,False,Harding Park,Yes,100004033,PARK,20100106000000.00000,20100517000000.00000,201/125 BOLTON AVENUE,DPR,False,Harding Park,Y,Harding Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X262/,No,85,34,15,{BDFFC8B5-573A-4771-8E51-601D03705C78} +"MULTIPOLYGON (((-73.85415528855233 40.901874458858735, -73.85454563388666 40.90138836822279, -73.8545616306363 40.90139821086092, -73.85456050292899 40.90139777990916, -73.8548299988459 40.90156835478856, -73.85489618256271 40.901607923334396, -73.85510369952799 40.90173198887234, -73.8551180116051 40.90174054432688, -73.85478206403451 40.90215973717686, -73.85415528855233 40.901874458858735)), ((-73.8536846818536 40.90246048755718, -73.8538542434606 40.902249339734574, -73.85417204742507 40.90238404343373, -73.85399865282336 40.902603393883666, -73.8536846818536 40.90246048755718)))",X188,6621,X188,X-12,X-12,X-12,X-12,Matilda Ave. to Carpenter Ave. bet. E. 239 St. and E. 240 St.,212,11,47,10470,X,1.104,False,Wakefield Playground,Yes,100004702,PARK,20100106000000.00000,19550427000000.00000,4522 CARPENTER AVENUE,DPR/DOE,False,Wakefield Playground,Y,Wakefield Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X188/,No,81,36,16,{E33C24CE-ACEB-4018-BAF0-3CE447C8A2AF} +"MULTIPOLYGON (((-73.93181660333437 40.69727087030175, -73.93170310497646 40.6972921793766, -73.9317693674725 40.697245647764824, -73.93181660333437 40.69727087030175)))",B037,5719,B037,B-04,B-04,B-04,B-04,"Bushwick Ave., Myrtle Ave., Willoughby Ave.",304,34,83,11221,B,0.004,False,Freedom Triangle,Yes,100004519,PARK,20100106000000.00000,19160308000000.00000,,DPR,False,Freedom Triangle,Y,Freedom Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B037/,No,53,18,7,{7B1B3AFA-641E-4715-8C61-0CBEB50A1E35} +"MULTIPOLYGON (((-73.85623427898487 40.6745018517102, -73.85590137351507 40.67440304394549, -73.85543966789004 40.67446933618289, -73.8552483909763 40.67372660476147, -73.85519834808008 40.673491564675935, -73.8548640250204 40.673539565977585, -73.8542978653824 40.67362085139263, -73.85398327670387 40.673666016887296, -73.85384846688373 40.67368537070938, -73.8538117086291 40.67355133078674, -73.85379378912192 40.673470791952866, -73.853788244879 40.67346895505798, -73.85371825222863 40.67344576874418, -73.85370847863437 40.67344278551381, -73.85362766838104 40.6734180986368, -73.8535485732048 40.67339393438452, -73.85346754796899 40.67336917507984, -73.85339042557541 40.673345618378086, -73.85337444913485 40.67334073703102, -73.85315351540964 40.67327324071231, -73.85311861109649 40.6731138939135, -73.85296844734272 40.67244350718525, -73.8530530969334 40.67243095587522, -73.85344522758827 40.67254978031242, -73.8549248464492 40.67299812170606, -73.85577785163575 40.6732565815332, -73.85596165041444 40.67331227098435, -73.8563580737305 40.67343238308283, -73.85635744578285 40.67354656595997, -73.85635560041747 40.6738822265814, -73.85635200131054 40.67453679199393, -73.85623427898487 40.6745018517102)), ((-73.84790564201926 40.67168618293569, -73.8479518521213 40.670899595899314, -73.84997670943687 40.67152793042271, -73.8487602766725 40.67239068506366, -73.84801312527789 40.67214742098516, -73.84796608953239 40.67194557829056, -73.84790564201926 40.67168618293569)), ((-73.84974995603639 40.67198312839601, -73.85027256147556 40.67160914260205, -73.85160882589294 40.67201045920299, -73.85248992557113 40.672275066294496, -73.85249705991738 40.67230281224904, -73.85165875034362 40.67241434219125, -73.85132244802925 40.67245908338975, -73.84974995603639 40.67198312839601)), ((-73.84907256119412 40.672467874096114, -73.84956083282722 40.67211846662267, -73.84952377516022 40.67261148246285, -73.84907256119412 40.672467874096114)), ((-73.84763312689232 40.67201525472823, -73.84770119229188 40.6715927234085, -73.84771275134621 40.67159721697879, -73.84771449925022 40.67161023175756, -73.84782214052251 40.67204927246736, -73.84782869215597 40.672075994957126, -73.8477997182314 40.67206699649072, -73.84763312689232 40.67201525472823)))",Q094,6170,Q094,Q-10,Q-10,Q-10,Q-10,"N. Conduit Ave., 133 Ave. bet. 80 St. and 88 St.",410,32,106,11417,Q,13.543,False,Addabbo Park,Yes,100000407,PARK,20090423000000.00000,19150303000000.00000,,DPR,True,Tudor Park,Y,Tudor Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q094/,No,23,15,8,{C13F53E6-7EE1-4A5F-883C-0E99601C954B} +"MULTIPOLYGON (((-73.99479706266717 40.70052351987295, -73.99483132983104 40.700450397138404, -73.9951730570268 40.70054785458263, -73.99517335519373 40.70054793924326, -73.9950166181056 40.70087771897064, -73.99467583232673 40.7007822116187, -73.99479706266717 40.70052351987295)))",B223H,5111,B223H,B-02,B-02,B-02,B-02,Columbia Hts. at Middagh St.,302,33,84,11201,B,0.3,False,Harry Chapin Playground,Yes,100004874,PARK,20100106000000.00000,19460501000000.00000,67 COLUMBIA HEIGHTS,DPR,True,Harry Chapin Playground,Y,Harry Chapin Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223H/,No,52,26,7,{58DA9711-8268-4207-B9F5-60F277398838} +"MULTIPOLYGON (((-73.97063986586979 40.68998446082801, -73.97109799203454 40.689932200243106, -73.97121904191744 40.690542861410925, -73.97080586384634 40.69059547698163, -73.97086691936669 40.69092155387264, -73.97055639274205 40.69095754669947, -73.9703704564564 40.69001519293484, -73.97063986586979 40.68998446082801)))",B253,4660,B253,B-02,B-02,B-02,B-02,"Adelphi St., Clermont Ave., Dekalb Ave., Willoughby Ave.",302,35,88,11205,B,1.253,False,Albert J. Parham Playground (PS 20),Yes,100004395,PARK,20100106000000.00000,19490615000000.00000,255 ADELPHI STREET,DPR/DOE,False,Albert J. Parham Playground,Y,Albert J. Parham Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B253/,No,57,25,8,{F6055E29-5DE3-484C-9F99-FC85B7052CF7} +"MULTIPOLYGON (((-73.94877722234759 40.68951307615012, -73.94883383062528 40.68950658521787, -73.94888770519606 40.68978214555376, -73.94883814228803 40.68978782828225, -73.94889302936593 40.69006856790842, -73.94882114855358 40.69007684590112, -73.94863075908323 40.69009877322171, -73.94827671890656 40.690139547476555, -73.94819798322438 40.68974603363575, -73.94816540596942 40.68958322415019, -73.94852197384768 40.689542342404884, -73.94861646381874 40.689531508232804, -73.94871238062015 40.68952051072556, -73.94877722234759 40.68951307615012)))",B400,6424,B400,B-03,B-03,B-03,B-03,Marcy Ave between Clifton Pl. and Lafayette Ave.,303,36,79,11216,B,0.809,False,Magnolia Tree Earth Center,No,100003703,PARK,20100106000000.00000,19970723000000.00000,700 MARCY AVENUE,DPR,False,Hattie Carthan Community Garden,N,Hattie Carthan Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B400/,No,56,25,8,{E1D7DBB1-012A-45E2-9A2C-FF7B7B6B2EB9} +"MULTIPOLYGON (((-73.93920001356994 40.82754905791336, -73.93952399159683 40.827684335886254, -73.9394519619832 40.82778267450149, -73.93912848337362 40.82764667529552, -73.93920001356994 40.82754905791336)))",M333,5973,M333,M-10,M-10,M-10,M-10,Bradhurst Ave. and W. 152 St.,110,9,32,10039,M,0.09,False,Bradhurst Ave Garden,No,100004480,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Bradhurst Ave Garden,N,Bradhurst Ave Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M333/,No,71,30,13,{2976CB6F-6A36-4A97-B599-F3EAC6FA1084} +"MULTIPOLYGON (((-73.91595087391448 40.858274332377256, -73.91600269685304 40.85808619275447, -73.91644041410198 40.858136286132314, -73.91616166752661 40.85860273533935, -73.91605776146447 40.85875461849776, -73.91606536595584 40.8587568212276, -73.91600545298428 40.85885079155641, -73.91595774100031 40.858914480935816, -73.91591768984497 40.85896014715421, -73.91587145953078 40.85901222124692, -73.91582291678212 40.85906301853883, -73.91575685553613 40.85912637747131, -73.91571907912636 40.8591606792872, -73.91566390178953 40.859207420356924, -73.91560664590351 40.85925269478129, -73.91554737439705 40.85929644857385, -73.91548613477296 40.85933863404034, -73.91539791520219 40.85939351011865, -73.91535198348626 40.85941916112276, -73.91525674914587 40.859466767687984, -73.91515738661283 40.85950925365071, -73.91510631066922 40.85952850368845, -73.91500168979698 40.85956292175424, -73.9149481223477 40.85957808255955, -73.91484367150964 40.859603704615196, -73.91478572240541 40.85961724122792, -73.91461319392967 40.85965593922539, -73.91455537508101 40.859668644665945, -73.9145046795296 40.85968054131269, -73.91444211804979 40.85969842190336, -73.91442056958715 40.859705913311906, -73.914380488848 40.859721776333565, -73.91434167909546 40.859739830277945, -73.91430460197503 40.85975986477441, -73.91427178415387 40.85978067954714, -73.91424604834737 40.85979776163812, -73.91418786694167 40.85984219721064, -73.91407072501951 40.85992986733268, -73.91403257833015 40.859958731154855, -73.91367353238539 40.859841551482, -73.91334320065808 40.85973374205236, -73.91334845942146 40.8597302719093, -73.9133772354184 40.85971127875826, -73.91358082799236 40.859588319960814, -73.91368487334302 40.8595309591522, -73.91379755522854 40.85947736244978, -73.91391674463382 40.85942756606037, -73.91403474824192 40.85938110408134, -73.91416027726473 40.85933182364187, -73.91441905562402 40.85923719421842, -73.91461095126483 40.85916435703469, -73.9147413089106 40.859117952100576, -73.91493684443253 40.85904835432747, -73.91506720279813 40.859001958029936, -73.91513238191847 40.85897875532338, -73.91519756454107 40.85895556068691, -73.91529931178363 40.85891832719805, -73.91533444080035 40.85890562814807, -73.91540432952544 40.85887495647177, -73.91547134412521 40.858840770733586, -73.9155347808032 40.858803438723946, -73.91556608742383 40.858783010594586, -73.91562390779184 40.8587412368071, -73.915652022946 40.8587187595048, -73.91567881741085 40.85869582558205, -73.91570612409961 40.8586739275916, -73.91572421598062 40.85865799761995, -73.91573249143453 40.85865015138534, -73.91574983324716 40.85863179043731, -73.91581471472871 40.858558407280356, -73.91585177268607 40.85850482179686, -73.91589121863781 40.858435785620465, -73.91591211328699 40.8583886817711, -73.91593290600116 40.858333997511984, -73.91595087391448 40.858274332377256)))",X051,5522,X051,X-05,X-05,X-05,X-05,"Cedar Ave., Sedgwick Ave. bet. Hall of Fame Ter. and W. 180 St.",205,14,46,10468,X,3.306,False,University Woods,Yes,100004111,PARK,20100106000000.00000,18990628000000.00000,2100 CEDAR AVENUE,DPR,True,University Woods,Y,University Woods,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X051/,No,86,33,"15, 13",{7B5D536A-422B-494F-B1D9-ED2233C1EC20} +"MULTIPOLYGON (((-73.92178354255603 40.75485491734735, -73.92197280454586 40.754620593637064, -73.92226547779939 40.75475645449811, -73.92207361456096 40.754994001635346, -73.92178354255603 40.75485491734735)))",Q296,4914,Q296,Q-01,Q-01,Q-01,Q-01,35 Ave. bet. Steinway St. and 41 St.,401,26,114,11101,Q,0.218,False,Playground Thirty Five XXXV,Yes,100000450,PARK,20090423000000.00000,19400627000000.00000,35-01 STEINWAY STREET,DPR/DEP,False,Playground Thirty Five XXXV,Y,Playground Thirty Five XXXV,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q296/,No,30,12,12,{96F6BA6B-0EAA-43FC-BDBB-3CDFE09CF97C} +"MULTIPOLYGON (((-73.8718063661942 40.67379231871779, -73.87178290775373 40.6736986560243, -73.87168120586529 40.67373218411598, -73.87161136971204 40.67375520714212, -73.87157470243793 40.67360880355207, -73.87185432677731 40.67356766458946, -73.87192885984805 40.67355669824991, -73.87194982394155 40.67364362678185, -73.8721506075569 40.673578279903424, -73.87217281477271 40.67367150708391, -73.87210299778539 40.673694525927125, -73.87201078774069 40.67372492476194, -73.87192840895814 40.67375208360435, -73.8718063661942 40.67379231871779)))",B461,6227,B461,B-05,B-05,B-05,B-05,Doscher St. - Euclid Ave. bet. Belmont Ave. and Sutter Ave.,305,42,75,11208,B,0.181,False,Euclid Garden,No,100004024,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Euclid Garden,N,Euclid Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B457/,No,60,19,8,{79B819FF-90C3-47EC-B128-9A71B9C04F65} +"MULTIPOLYGON (((-73.97245221623079 40.72966769676665, -73.9724388492951 40.72964791029495, -73.97311196857508 40.72993189713273, -73.97412908806326 40.73036100362878, -73.97383465862853 40.73076431266645, -73.9737697106287 40.730769446097, -73.97357924777394 40.730599495519456, -73.97355343118704 40.730575536067896, -73.97350123573386 40.73053071836894, -73.97345189660169 40.73049223908331, -73.97340492663974 40.73045865368657, -73.97289777648832 40.730115088699144, -73.97284581308055 40.73007797370465, -73.97280655556544 40.73004798471036, -73.97276842775281 40.73001709095858, -73.97274444030644 40.729996684262396, -73.97269064468232 40.72994789547126, -73.97264620343083 40.729904096794066, -73.97261109641093 40.72986814104801, -73.97258043333925 40.7298347564008, -73.97255899041781 40.72981018541918, -73.97251486614478 40.72975598228994, -73.97247010552495 40.729694993659066, -73.97245221623079 40.72966769676665)))",M059,4743,M059,M-06,M-06,M-06,M-06,"Ave. C, FDR Dr., E. 17 St.",106,4,13,10009,M,1.275,False,Murphys Brothers Playground,Yes,100004741,PLGD,20100106000000.00000,19030325000000.00000,292 AVENUE C,DPR,False,Murphy Brothers Playground,Y,Murphy Brothers Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M059/,No,74,27,12,{FA432DB3-2C80-4B4D-B8B4-C8C3211EBCB2} +"MULTIPOLYGON (((-73.86586558950711 40.839379892523134, -73.8657367984551 40.83862878253991, -73.86609545396838 40.838594997801074, -73.86614212497487 40.83886717510218, -73.8664922216552 40.83883419684531, -73.86655202667036 40.839183470590086, -73.86586558950711 40.839379892523134)))",X176,6664,X176,X-09,X-09,X-09,X-09,Guerlain St. bet. Taylor Ave. and Thieriot Ave.,209,18,43,10460,X,1.578,False,Taylor Playground,Yes,100004695,PARK,20100106000000.00000,19490708000000.00000,1838 GUERLAIN STREET,DPR/DOE,False,Taylor Playground,Y,Taylor Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X176/,No,87,32,15,{EFA902D8-9CDE-45DD-85B2-F49E41C3E954} +"MULTIPOLYGON (((-73.90826820373813 40.83722932758976, -73.90914520269183 40.837064573074045, -73.90918202495506 40.83707024367028, -73.90919686832304 40.83707708290397, -73.90922513762254 40.837108571123984, -73.90923216163569 40.837171004309575, -73.90923156290289 40.837212700319256, -73.90921084640904 40.83731832908508, -73.90918919551015 40.83737186802764, -73.90916230839467 40.83742041680595, -73.90911889876968 40.837494331185, -73.90907899610322 40.83756227443371, -73.90901801756112 40.83767833785581, -73.9089721523043 40.837775492891765, -73.90891317068947 40.83791966585143, -73.90887923839128 40.83801200002001, -73.90883940391976 40.83814052757051, -73.9088208326322 40.83821411476769, -73.90879780420592 40.83831374972746, -73.90878085081697 40.83839977761902, -73.90876862814345 40.838478965494865, -73.90875819930184 40.83856598908469, -73.9087475761409 40.83873933836812, -73.90874675570241 40.83886982468846, -73.90875155027217 40.838977272710444, -73.90875871980015 40.83906829219803, -73.90877351742516 40.83918400925853, -73.90879056504339 40.83928279971063, -73.90882659778894 40.839441501512944, -73.90884901702744 40.839531449746936, -73.90888166371404 40.839662426248005, -73.90891385180485 40.83979156626784, -73.90894492565033 40.83991623354432, -73.90896301860215 40.83998882311779, -73.90899822231935 40.84013006091814, -73.90925494523658 40.84116001094559, -73.9094903466687 40.84210384731313, -73.90950117724167 40.84223809235872, -73.90948712142499 40.842452454577575, -73.90947737141299 40.84260115439332, -73.90946993900047 40.84271450535845, -73.90936747452913 40.842709104779075, -73.90892678228279 40.842685876132734, -73.90832199497592 40.84265399592824, -73.90807797968641 40.842641131784596, -73.90767449102339 40.842619860453766, -73.90514915145341 40.84248669244203, -73.9051607396757 40.84235703362473, -73.90516790200233 40.84227690100379, -73.90517968052436 40.842145119873415, -73.90519495458541 40.841974223276054, -73.90520873444181 40.841820035901264, -73.90522400835357 40.84164913929055, -73.90524301628399 40.841436464641546, -73.90526032635371 40.841242781797554, -73.90528232104697 40.84099668866117, -73.90529165554649 40.84089224807213, -73.90530734635797 40.84073388033399, -73.90535516466169 40.84050678716477, -73.90540271192053 40.84036584577872, -73.90548939807245 40.84017820442433, -73.90558168708031 40.84000999483804, -73.90566725827232 40.83986794172501, -73.90578176808378 40.839694397606586, -73.90591866072495 40.83950673927911, -73.90600658767194 40.839397445089375, -73.90605013964696 40.839346123607534, -73.90624725026203 40.839123614373854, -73.90650746487601 40.8388238728747, -73.9066588502826 40.83864434964714, -73.90677054289318 40.838507239822796, -73.90684024913897 40.838421670875086, -73.90690151689245 40.838344463363875, -73.90695695758811 40.83828372205446, -73.90701923306574 40.83822336533594, -73.90706588945099 40.838182592550076, -73.9071615152914 40.83810869938007, -73.90722919091137 40.838062974518344, -73.90729875386396 40.838020771164715, -73.9074590428474 40.83791909542915, -73.90753221535941 40.83786190250439, -73.90760926028445 40.83779265141724, -73.90769047951004 40.83770650584742, -73.90773243707288 40.837654936606526, -73.90781010720104 40.837540610750494, -73.90785321843467 40.83747261917481, -73.90792418237503 40.83739575113802, -73.90797689719548 40.83735693778795, -73.90802168249148 40.83732396229723, -73.90810789608288 40.83727966547273, -73.90826820373813 40.83722932758976)), ((-73.90509714278029 40.843048024409775, -73.9051343723828 40.842593857909, -73.90549634331073 40.84261260434854, -73.90548830617703 40.84268027344036, -73.90547259975442 40.84268020924177, -73.90543572220689 40.8428299157468, -73.90540499729192 40.8429546854189, -73.90538358680674 40.843067514976084, -73.90537366644243 40.843112725108256, -73.90509714278029 40.843048024409775)))",X008,5776,X008,X-04,X-04,X-04,X-04,"Clay Ave., Anthony Ave. bet. Mount Eden Pkwy. and E. 170 St",204,16,44,10457,X,38.536,False,Claremont Park,No,100005157,PARK,20100106000000.00000,18881212000000.00000,,DPR,Part,Claremont Park,Y,Claremont Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X008/,No,77,33,15,{49D0D163-98FA-4491-9DF9-31CDE954B577} +"MULTIPOLYGON (((-73.86220468901465 40.666342414520216, -73.86300092178996 40.66622786250366, -73.86313070746279 40.666748716577125, -73.86233458362933 40.666863735189686, -73.86220468901465 40.666342414520216)))",B309,5168,B309,B-05,B-05,B-05,B-05,Stanley Ave. and Eldert La.,305,42,75,11208,B,1,False,Pink Playground,Yes,100004725,PARK,20100106000000.00000,19570313000000.00000,1258 LORING AVENUE,DPR/NYCHA,True,Pink Playground,Y,Pink Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B309/,No,60,19,8,{AC67F4E3-55EB-43F3-B114-F83E53FB2D83} +"MULTIPOLYGON (((-73.98121798902919 40.715468637259775, -73.98269754649962 40.71591889733517, -73.98249967092532 40.71629900700368, -73.98101738937348 40.715851736355546, -73.98121798902919 40.715468637259775)))",M065,4717,M065,M-03,M-03,M-03,M-03,"Columbia St, Delancey St and Bialystoker Pl",103,1,7,10002,M,1.451,False,Luther Gulick Playground,Yes,100005049,PARK,20100106000000.00000,19310824000000.00000,21 COLUMBIA STREET,DPR,False,Luther Gulick Park,Y,Luther Gulick Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M065/,No,65,26,7,{B4B4DEC0-80CF-4D95-A3A7-8B89FAEF136C} +"MULTIPOLYGON (((-73.9350380172144 40.75305205666937, -73.93509000564336 40.75299587100036, -73.9353855105771 40.7531539957652, -73.93533352227485 40.75321018066581, -73.9350380172144 40.75305205666937)))",Q507,28295,Q507,Q-01,,,Q-01,29 St. bet. 40 Ave. and 39 Ave.,401,26,,11101,Q,0.057,False,,,100024485,PARK,,20151007000000.00000,39-22 29 STREET,DPR,False,Windmill Community Garden,,Windmill Community Garden,,Garden,,No,30,12,12,{D1553DBD-8718-40B7-95E0-1B2E5B6AD619} +"MULTIPOLYGON (((-73.8485241645034 40.79297782206166, -73.85335628168853 40.790884277152536, -73.85343951289437 40.791289466500594, -73.85377733323341 40.79215975760467, -73.85377752250746 40.79216043502196, -73.8538826236858 40.79253523726985, -73.85409918301124 40.793307497964705, -73.85407468408678 40.79348607058753, -73.85398305335634 40.794153968914344, -73.8531168807803 40.794539036612846, -73.85278966886897 40.79468949724538, -73.85268643981563 40.79466078164866, -73.85211649026664 40.79447211899971, -73.85122748498104 40.79438160111095, -73.84903435791377 40.79415827075943, -73.8485241645034 40.79297782206166)))",Q009,6253,Q009,Q-07,Q-07,Q-07,Q-07,Poppenhusen Ave. bet. 115 St. and College Pl.,407,19,109,11356,Q,28.87,False,Hermon A. MacNeil Park,No,100000363,PARK,,,,DPR,True,Hermon A. MacNeil Park,Y,Hermon A. MacNeil Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q009/,Yes,27,11,14,{49128550-7393-4731-8FE4-A37F01D7C457} +"MULTIPOLYGON (((-73.98626727270292 40.65986369289656, -73.98626743586817 40.659863791972846, -73.98629578385096 40.65988206953527, -73.98632593467477 40.659902764291324, -73.9863580479243 40.6599261626227, -73.98639395137845 40.65995413781832, -73.98642561461551 40.65998101747424, -73.98645053030559 40.6600029858103, -73.98648373354348 40.66003407464558, -73.98650146631971 40.66005216270116, -73.98652859456573 40.66007983425066, -73.98655949764374 40.66011218351748, -73.98658146271657 40.66013588497423, -73.98660398228219 40.660160184434275, -73.9866387015546 40.660197646355925, -73.98666022418952 40.66022252292002, -73.986693384803 40.66026084823935, -73.98672393388449 40.66029615741796, -73.9867457683758 40.660322999829226, -73.98675916061548 40.66033946461358, -73.98677833749133 40.66036304143984, -73.98678842660742 40.660375443611244, -73.98680678988565 40.66039926527967, -73.98682267644284 40.66041987541979, -73.98684552742516 40.660449518534314, -73.98685556074804 40.66046314179362, -73.98688575886382 40.66050414485379, -73.98690020286946 40.660524401815984, -73.98691104474614 40.660539605568744, -73.98686665405639 40.660582606472644, -73.9868650684875 40.66058165534622, -73.98665326530556 40.66045204935099, -73.98651054724021 40.660365765927956, -73.98636968585905 40.66028060459051, -73.98618060217503 40.66016628757793, -73.9860405692882 40.66008162392052, -73.98626727270292 40.65986369289656)))",B255G,5802,B255G,B-07,B-07,B-07,B-07,7 Ave. bet. 18 St. and 17 St.,307,38,72,11215,B,0.442,False,Butterfly Garden,Yes,100003915,PARK,20100106000000.00000,19530722000000.00000,,DPR,True,Butterfly Gardens,N,Butterfly Gardens,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B255G/,No,44,21,9,{A970E609-B8E5-4134-9AD0-42B36A5320C5} +"MULTIPOLYGON (((-73.80815869562873 40.72668827456649, -73.8081196392832 40.72647833367444, -73.80783352246745 40.726509141175896, -73.80782273697527 40.72645116357935, -73.80777987055605 40.72645578008691, -73.8077336726655 40.72620745185086, -73.80848075814757 40.726127011552585, -73.80858826419376 40.72664202061555, -73.80815869562873 40.72668827456649)))",Q354,5351,Q354,Q-08,Q-08,Q-08,Q-08,160 St. bet. 75 Ave. and 75 Rd.,408,24,107,11366,Q,0.749,False,Playground Seventy Five,Yes,100000233,PARK,20090423000000.00000,19640319000000.00000,75-20 162 STREET,DPR/DOE,False,Playground Seventy Five,Y,Playground Seventy Five,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q354/,No,25,14,6,{FDDAC8EA-F232-4301-A0DD-32D6AEFFB3A7} +"MULTIPOLYGON (((-73.91120276756345 40.81584660561616, -73.91132586194594 40.81550160184973, -73.91164447240774 40.815564865953974, -73.9117506993336 40.81558595861339, -73.91174923957979 40.815590049356096, -73.91201431959448 40.81564581983622, -73.91197764992138 40.81571010266645, -73.91172534455103 40.815657019963005, -73.91164531933255 40.815881319379045, -73.91120276756345 40.81584660561616)))",X276,5605,X276,X-01,X-01,X-01,X-01,Westchester Av bet. St Ann's Av and Eagle Ave,201,17,40,10455,X,0.375,False,Granja Farm OTF,No,100005099,PARK,20100106000000.00000,19961231000000.00000,,DPR,False,Granja Farm OTF,Y,Granja Farm OTF,Greenthumb,Garden,http://www.nycgovparks.org/parks/X276/,No,84,32,15,{859069C3-2B0D-4746-B9C8-B8147C94E7E0} +"MULTIPOLYGON (((-74.07793439662545 40.64443133748274, -74.07802967130021 40.64455853684357, -74.07779609984661 40.64466211242424, -74.07770082665148 40.64453491287057, -74.07793439662545 40.64443133748274)))",R077,6056,R077,R-01,R-01,R-01,R-01,Stuyvesant Pl. bet. Wall St. and Hamilton Ave.,501,49,120,10301,R,0.089,False,St George Park,No,100004052,PARK,20100106000000.00000,19610727000000.00000,,DPR,False,St. George Park,N,St. George Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R077/,No,61,23,11,{15A1B65F-E92A-47A3-A161-5250B1946272} +"MULTIPOLYGON (((-73.94982718962258 40.66384643331866, -73.94980014546006 40.663621513085644, -73.94872487823807 40.66368882338306, -73.9486893280004 40.66335947972555, -73.95011857923016 40.66327000900758, -73.95014814068267 40.66354576350813, -73.95021280427564 40.66354172928417, -73.95024267626751 40.66382039345372, -73.94982718962258 40.66384643331866)))",B284,5154,B284,B-09,B-09,B-09,B-09,"Sterling St., Empire Blvd., New York Ave., Nostrand Ave.",309,40,71,11225,B,1.326,False,Marc And Jason's Playground (JHS 61),Yes,100004737,PARK,20100106000000.00000,19550512000000.00000,360 EMPIRE BOULEVARD,DPR/DOE,False,Marc And Jason's Playground,Y,Marc And Jason's Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B284/,No,43,20,9,{62632215-3799-411B-B2AC-32665293F259} +"MULTIPOLYGON (((-73.87088909330323 40.83979930052348, -73.87095760903497 40.83980368336169, -73.87103318358521 40.839808517995735, -73.87097941869874 40.839877756301085, -73.87095518399263 40.83990896373238, -73.87093937341042 40.83992932512703, -73.87087723116736 40.83990272161404, -73.8708417025508 40.83988751120874, -73.870703207563 40.839828219683675, -73.87071731719095 40.83981005001843, -73.87073339882815 40.839789341366746, -73.87077874045461 40.83979224223782, -73.87088909330323 40.83979930052348)))",X073,6310,X073,X-11,X-11,X-11,X-11,Van Nest Ave. at E. 180 St. and E. Tremont Ave.,211,15,49,10460,X,0.44,False,Young Park,Yes,100004606,PARK,,19220210000000.00000,,DPR,True,Young Park,,Young Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X073/,No,87,33,15,{7340D518-30AC-4CB7-931A-5A8556335BDD} +"MULTIPOLYGON (((-73.78813103765194 40.71142084762815, -73.78818736119739 40.71141982113166, -73.78823226181325 40.7114204512512, -73.78827843146946 40.71142244256187, -73.78832674526778 40.71142599478424, -73.78837675891053 40.71143127099229, -73.7884337791215 40.71143931112411, -73.78848559917512 40.7114485357538, -73.78854297003407 40.71146094936861, -73.78859021912197 40.711472979658915, -73.7886433622743 40.711488554365985, -73.78867792844603 40.711499899456165, -73.78872785868768 40.71151807341119, -73.7887749017848 40.71153724611933, -73.78882750125443 40.71156122333403, -73.78886814254092 40.71158174403528, -73.78891172509651 40.71160586586524, -73.78895041877938 40.711629293425034, -73.78899054531223 40.711655808756795, -73.78902218228181 40.711678485836664, -73.78905768553078 40.71170602465976, -73.78909274308087 40.711735673458385, -73.78912700715104 40.71176738657023, -73.78915786082163 40.71179865847753, -73.78918436338232 40.711827953886164, -73.78921140087131 40.71186061908828, -73.78923680753638 40.7118944330546, -73.78918459823751 40.71190449074292, -73.78913357447956 40.711912380342156, -73.78908028016092 40.71191862952599, -73.78902115552812 40.71192323626989, -73.78896617130206 40.711925357052344, -73.7889137343084 40.711925454523374, -73.78885816770192 40.711923505667265, -73.78880466876797 40.71191962177258, -73.78875697738835 40.71191447608477, -73.7887014868629 40.71190645062881, -73.78864908432568 40.71189680538896, -73.7885992071671 40.711885692423536, -73.78854038344437 40.71187005323222, -73.78849578341907 40.71185627358975, -73.7884438201802 40.71183799674266, -73.78839258009636 40.71181746721643, -73.78835787379025 40.71180251252622, -73.78832517113467 40.711789393153836, -73.78828501493818 40.711774510367015, -73.78825483126666 40.71176417639245, -73.78822143430588 40.71175356094152, -73.78818574800563 40.71174313397835, -73.78815152269975 40.71173399742685, -73.78810963530807 40.71172392643757, -73.78807680059207 40.71170100466346, -73.78803716714901 40.71167062671836, -73.78799627024127 40.71163565831705, -73.78796013777402 40.71160108589762, -73.78793007279012 40.71156911001825, -73.78790171312332 40.71153565502784, -73.7878700510522 40.71149348868196, -73.78784646796028 40.711457735364036, -73.78788822957448 40.71144888012826, -73.78793404975455 40.711440574463055, -73.78797939060408 40.711433767251606, -73.78802668155599 40.711428129778014, -73.78808110311456 40.71142345455307, -73.78813103765194 40.71142084762815)))",Q025,5859,Q025,Q-12,Q-12,Q-12,Q-12,Hillside Ave. bet. 173 St. and 175 St.,412,27,103,11432,Q,0.9,False,Major Mark Park,Yes,100000299,PARK,20090423000000.00000,,,DPR,True,Major Mark Park,Y,Major Mark Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q025/,No,29,14,5,{4610F43D-4D15-44E9-BA1A-66156A42A312} +"MULTIPOLYGON (((-74.00382704252628 40.70591428189829, -74.00388284588819 40.70587834872406, -74.00454545725613 40.70646907883391, -74.00437804434205 40.70657887116152, -74.00430364848211 40.706510538665164, -74.00399079725291 40.706223179656746, -74.00372560946748 40.70597959751643, -74.00382704252628 40.70591428189829)))",M386,5408,M386,M-01,M-01,M-01,M-01,"Front St., John St., and South St.",101,1,1,10038,M,0.385,False,Imagination Playground,Yes,100007466,PLGD,20100729000000.00000,20100309000000.00000,89 SOUTH STREET,DPR,False,Imagination Playground,Y,Imagination Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M386/,No,65,26,10,{A68955EE-E765-43FE-8522-EBFAC8EEA0E8} +"MULTIPOLYGON (((-73.96030604864147 40.710347492775156, -73.96039886386379 40.7103157394065, -73.96073423987885 40.71040940117165, -73.96077693115005 40.71049578553224, -73.9605637088616 40.71084224279708, -73.96045953633174 40.71085314917075, -73.96015889728116 40.71074584149034, -73.9601282838959 40.71068419722186, -73.96030604864147 40.710347492775156)))",B168,5097,B168,B-01,B-01,B-01,B-01,S. 4 St. bet. S. 5 Pl. and Roebling St.,301,34,90,11211,B,0.532,False,Continental Army Plaza,Yes,100004087,PARK,20100106000000.00000,19380201000000.00000,215 BROADWAY,DPR,False,Continental Army Plaza,Y,Continental Army Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B168/,No,53,18,7,{C22FAA62-9B76-49EB-A969-F9035FC5424F} +"MULTIPOLYGON (((-73.99143693293948 40.729233425341285, -73.99137078051923 40.72920091474399, -73.9914683090264 40.72908561728739, -73.99140743940171 40.72905570326812, -73.99151113343098 40.7289331148145, -73.99165623765906 40.72876156861828, -73.99165602578478 40.72876146504441, -73.9917419497628 40.72865988125472, -73.99165231646998 40.72861583271355, -73.99168769161595 40.728543702726704, -73.99182493491107 40.728611149846074, -73.99182298266555 40.72861345861171, -73.99192482073603 40.72866350616476, -73.99192677297941 40.728661198297964, -73.99217830610054 40.7287848104721, -73.99169257344751 40.72935905781232, -73.99143693293948 40.729233425341285)))",M276,4686,M276,M-02,M-02,M-02,M-02,Lafayette St. bet. Astor Pl. and E. 4 St.,102,2,9,10003,M,0.718,False,The Public Theater,No,100005031,PARK,20100106000000.00000,19710325000000.00000,425 LAFAYETTE ST,DPR,False,The Public Theater,Y,The Public Theater,Building,Managed Sites,http://www.nycgovparks.org/parks/M276/,No,66,27,12,{55437A65-B889-4AD5-95F0-E832B459471D} +"MULTIPOLYGON (((-74.00065580747142 40.75509463503463, -74.00106006516593 40.75461218718994, -74.00163853933536 40.754855999442306, -74.00121825251915 40.755331050018874, -74.00065580747142 40.75509463503463)), ((-74.0000912313817 40.755768394001464, -74.00049038629695 40.75529204822991, -74.00102459255874 40.755517190844486, -74.00060705635272 40.755986526315965, -74.0000912313817 40.755768394001464)), ((-73.99959146140897 40.756364801494904, -73.99998303742333 40.75589750937372, -74.00026571941305 40.75601683050908, -74.00031486548599 40.75603757532314, -74.00033687885342 40.75604686757386, -73.99992159162088 40.75650382757774, -73.99990706242833 40.75649770863458, -73.99975127493066 40.75643210300309, -73.99959146140897 40.756364801494904)))",M399,6607,M399,M-04,M-04,M-04,M-04,Hudson Blvd. bet. W. 36 St. and W. 33 St.,104,3,10,"10001, 10018",M,2.148,False,,No,100016513,PARK,,20150814000000.00000,,DPR,True,Bella Abzug Park,,Bella Abzug Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M399/,No,75,"31, 27",10,{64E7F92A-84E8-4DAF-8A3C-C6B443CA0A56} +"MULTIPOLYGON (((-73.87770412084713 40.8761620110536, -73.87774131753956 40.87616083660693, -73.87778131067076 40.87616148589728, -73.87782657057849 40.87616183278255, -73.87787109036154 40.876162738970564, -73.87792938697538 40.87616638549299, -73.87797817450785 40.876170287576194, -73.87805596197455 40.8761763868604, -73.87813866403317 40.87618339717309, -73.87823268817817 40.87619067331099, -73.87829122653913 40.87619643515279, -73.87833061456051 40.87620037850145, -73.8783777623421 40.87620442186454, -73.87841597173941 40.87620933376789, -73.87845224963117 40.87621561326708, -73.87847349537995 40.87622051808944, -73.87850854621564 40.87622960129994, -73.87854807179922 40.876241386171635, -73.87859093160121 40.87625611913433, -73.87862779024383 40.876270528797846, -73.8786549826181 40.876282263741224, -73.87866855975322 40.87628849678876, -73.87867980611658 40.8762938530103, -73.87869744426342 40.87630262519807, -73.87871533637376 40.87631200457925, -73.87872771666471 40.87631879106273, -73.87875013621618 40.87632995816282, -73.87876797645535 40.876339165487956, -73.87879175865575 40.87635190176149, -73.87882012391267 40.876367808959465, -73.87885071439385 40.87638588596176, -73.87887875771699 40.87640334795051, -73.8789050955026 40.87642057401586, -73.87893264621559 40.87643950417095, -73.87896277197166 40.87646134649776, -73.87899088384731 40.87648289404628, -73.87902024086544 40.87650670131777, -73.87905280980861 40.87653483789357, -73.87908012863718 40.87655998744251, -73.87911539746749 40.87659482556145, -73.8791532938115 40.87663571049798, -73.87918294508512 40.87667066517965, -73.87920533107949 40.87669910442049, -73.87921842151553 40.87671667494087, -73.87923627526531 40.876739438157024, -73.87924719056805 40.87675730896191, -73.87925892357893 40.876775015831875, -73.87927013746105 40.87679310486504, -73.87928978160845 40.87682820933579, -73.87930857015677 40.8768673732096, -73.87932300381385 40.876903138586314, -73.8793337456191 40.87693492354492, -73.87933945068721 40.87695462858999, -73.87934585638104 40.876980504512424, -73.8793509862154 40.87700470509297, -73.8793532709124 40.87701791764334, -73.87935540745397 40.87703366851501, -73.87935687697721 40.87704761230998, -73.87935794686653 40.87705884611817, -73.87935917705242 40.87707458163433, -73.87936014694041 40.87709516060432, -73.87936039829201 40.87710832510388, -73.87935989644716 40.87712729246241, -73.87935881817955 40.87714813673616, -73.87935720374924 40.87716763061753, -73.87935552612076 40.877182069992664, -73.87935269052134 40.87720308712374, -73.87935113549963 40.87722383724797, -73.87934771624252 40.87724875468332, -73.87934616873474 40.877260786288794, -73.87934365041278 40.87727824682284, -73.87934061159456 40.87729683692522, -73.87933693677671 40.8773167906021, -73.87933300719244 40.87733592186672, -73.87932907111886 40.87735339802709, -73.87932498451791 40.877370141032564, -73.87932120732563 40.877383090604816, -73.87931315809548 40.87741167178561, -73.87930440059559 40.87743959757009, -73.87929624980869 40.87746333671851, -73.8792890259681 40.87748293909291, -73.87928385408757 40.87749626450944, -73.87926997937234 40.87752960857812, -73.87926290349625 40.87754546597538, -73.87925462003606 40.87756319962643, -73.87924771329868 40.877577375988274, -73.87924116346329 40.87759035327301, -73.87923366796034 40.87760470371259, -73.87922237875203 40.87762539952312, -73.87921513290452 40.877638155458264, -73.87920684766256 40.877652285350415, -73.87919983286106 40.87766389610552, -73.87919143842647 40.87767739464001, -73.87918497919928 40.87768750486205, -73.87917885063577 40.877697146275636, -73.87916249093607 40.877721033504265, -73.87914037985772 40.87775524870885, -73.8791069185369 40.87779474148685, -73.87907444879079 40.877833040346225, -73.87904648684123 40.87786374560239, -73.87901177851958 40.87789932712609, -73.87897060992454 40.877938372345334, -73.87893806251546 40.87796711690582, -73.87891080298073 40.87798989857055, -73.87888540261656 40.8780100077303, -73.87788683972605 40.87878117165886, -73.87783858188486 40.87881854306541, -73.87780820165513 40.87884053503766, -73.87776115018102 40.87887216167537, -73.87770456297237 40.878906683163535, -73.87763572906434 40.8789441065192, -73.8775732783784 40.87897419762865, -73.87750392970017 40.879003745592634, -73.87746833013261 40.87901745104823, -73.87743387788973 40.87902982228774, -73.87737958251314 40.879047616785705, -73.87731591943786 40.87906595600093, -73.8772489460882 40.87908245916735, -73.87718319660534 40.8790960054946, -73.87712177029454 40.87910637586415, -73.87704316284162 40.879116528889895, -73.87697381441126 40.879122653044305, -73.87690518268327 40.87912614579538, -73.87684384131695 40.87912712762088, -73.87677994595329 40.87912600764974, -73.87673292214095 40.87912378365658, -73.87667248570514 40.8791191689248, -73.8766434301344 40.87911624010234, -73.87661800143567 40.87911329623977, -73.87659072190392 40.879109736259785, -73.87656433032787 40.87910589537027, -73.8765383949288 40.87910173438907, -73.87652132091598 40.879098785034564, -73.87650558857908 40.87909591635617, -73.87649073650256 40.879093076532776, -73.87647670653409 40.879090275407826, -73.87646382596176 40.879087598878385, -73.87643101401189 40.879080332833695, -73.87640368667986 40.87907377953645, -73.87637559062217 40.87906655634679, -73.8763353342582 40.879055326456964, -73.87629551029742 40.87904316951402, -73.87624630883502 40.879026646842206, -73.87619447043262 40.879007355021685, -73.87612841065096 40.87897978143554, -73.87607373070492 40.87895422091566, -73.87600311987444 40.87891716563538, -73.87594654420737 40.87888585610401, -73.87590762707438 40.8788627617743, -73.87587920442672 40.87884498799538, -73.87585858842499 40.878831599878815, -73.8758271448559 40.87880767340515, -73.87579257662811 40.87878041355551, -73.87576570201202 40.87875771304365, -73.87574775597577 40.87874023866525, -73.87573146913259 40.878724983071976, -73.87571831779033 40.878712350372425, -73.87570094407381 40.878695269215626, -73.87568402393863 40.87867735649388, -73.87566864351248 40.87865957419808, -73.87565079422009 40.878639879305084, -73.87564024304298 40.87862685228274, -73.87563413356494 40.878617723755966, -73.87560440451534 40.878576678990235, -73.87557368029911 40.87853173313003, -73.87554815000674 40.87849130520766, -73.87553019998104 40.87845765262239, -73.87551492771439 40.87843030904012, -73.87550002037221 40.87840069661952, -73.87548675982082 40.878371682997084, -73.87547080429711 40.87833226852969, -73.8754602196429 40.87830232308455, -73.87545192423909 40.878275807366336, -73.87544397997877 40.87824677696326, -73.87543784531698 40.878220727327054, -73.87543118762159 40.87818446108883, -73.8754268434893 40.87815257461972, -73.87542445733767 40.878124887438766, -73.87542314542661 40.8780969024551, -73.87542295905727 40.8780671996545, -73.8754240246268 40.87803733611727, -73.87542635866531 40.87800735328369, -73.87543027820415 40.877975208288376, -73.87543506481613 40.87794632039359, -73.87544569215927 40.877898344852305, -73.875459125284 40.87785226876546, -73.87547290717329 40.87781000031675, -73.875489824583 40.87776206667621, -73.87550630775645 40.87772173448523, -73.87552421659933 40.87768285091383, -73.87555439626051 40.87762552236551, -73.8755831925405 40.87757771047737, -73.87561049731956 40.877536972109624, -73.87563599248101 40.87750213448514, -73.87566080882732 40.87747310337174, -73.87577561495961 40.87736171144917, -73.87607417501118 40.87710038207493, -73.87632966837303 40.87688077042186, -73.87648859084076 40.87674575481219, -73.8765721905092 40.876674064530164, -73.87665760136537 40.87660440312175, -73.87669056772287 40.87657638273668, -73.87671934854178 40.87655285941211, -73.87675670635466 40.87652377211787, -73.87680133030229 40.876490994262845, -73.87684600876132 40.87646014709562, -73.87688722271831 40.876433304288675, -73.87691653335717 40.8764150970623, -73.87694568117922 40.87639767668164, -73.87697012605899 40.87638357498251, -73.8769973014937 40.87636842171663, -73.87702427524641 40.87635390397419, -73.87705620100141 40.87633737260614, -73.87708751515046 40.87632181670718, -73.87711631917904 40.8763080663076, -73.87714154477118 40.87629644624868, -73.8771688510039 40.876284301613076, -73.87719190001503 40.876274392855834, -73.87721492233587 40.876264800136966, -73.87723564443976 40.87625642152644, -73.8772667695091 40.87624427912893, -73.87729257395483 40.87623460740886, -73.87731474274553 40.87622657881128, -73.87735049981727 40.8762141621639, -73.87737203586587 40.8762069946502, -73.8773855966663 40.87620335577757, -73.87743210263174 40.876192566901324, -73.87748572891047 40.87618251045859, -73.87753869213272 40.87617495934645, -73.87759674565207 40.8761688769027, -73.87763626506472 40.876165213302095, -73.87767030261791 40.876163331346724, -73.87770412084713 40.8761620110536)))",X104,4800,X104,X-07,X-07,X-07,X-07,"Van Cortlandt Ave. East, Resevoir Oval E",207,11,52,10467,X,19.749,False,Williamsbridge Oval,Yes,100003776,PARK,20100106000000.00000,19340627000000.00000,3324 RESERVOIR OVAL EAST,DPR,True,Williamsbridge Oval,Y,Williamsbridge Oval,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X104/,No,81,36,13,{26C7DBCB-DCDF-4B52-8BC6-D932F6EC34B3} +"MULTIPOLYGON (((-73.85824334399335 40.828810378863075, -73.85890631668511 40.82872067222842, -73.85896955943637 40.829005604416764, -73.8588848742796 40.82901699655528, -73.85894820872684 40.82930238360364, -73.85837395737374 40.829379628543876, -73.85824334399335 40.828810378863075)))",X208,6564,X208,X-09,X-09,X-09,X-09,"Haviland Ave., Watson Ave. bet. Virginia Ave. and Pugsley Ave.",209,18,43,10472,X,0.84,False,Haviland Playground,Yes,100004094,PARK,20100106000000.00000,19620517000000.00000,,DPR/DOE,False,Haviland Playground,Y,Haviland Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X208/,No,87,32,15,{44996AE1-6EF5-4E30-A925-51326D9FD2A2} +"MULTIPOLYGON (((-73.87880008486053 40.84376663284071, -73.87919869434843 40.843334064873304, -73.87963733896417 40.843581988954845, -73.87928664566465 40.843981317329245, -73.8792536887862 40.84401884421847, -73.87880008486053 40.84376663284071)))",X311,5662,X311,X-06,X-06,X-06,X-06,E. 180 St. bet. Vyse Ave. and Boston Rd.,206,15,48,10460,X,0.68,False,West Farms Soldiers Cemetery,No,100004210,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,West Farms Soldiers Cemetery,Y,West Farms Soldiers Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/X311/,No,87,32,15,{B383A373-ADB6-4C67-B252-2E871D9FE47E} +"MULTIPOLYGON (((-74.18450548068519 40.55154292911154, -74.18468337667773 40.55133487958898, -74.18509221807287 40.55153840083662, -74.18424690934924 40.55249868848283, -74.18416011243055 40.55245548168191, -74.1838550342844 40.552303611946165, -74.18394700826607 40.55219605146562, -74.18399903630741 40.55213520678067, -74.18404818224745 40.552077731964424, -74.18410001828309 40.55201711087151, -74.18414916404937 40.55195963601152, -74.18419676223805 40.55190397187289, -74.18424654331066 40.55184575391619, -74.18429513572866 40.55178892555898, -74.18434035065911 40.55173604781648, -74.18438359909274 40.55168546956011, -74.18442488103595 40.551637189891615, -74.18446616410009 40.551588910206185, -74.18450548068519 40.55154292911154)))",R152,6113,R152,R-03,R-03,R-03,R-03,Carlton Blvd. and Crown Ave.,503,51,123,10312,R,1.25,False,Carlton Park,No,100003989,PARK,20100106000000.00000,20020522000000.00000,,DPR,False,Carlton Park,N,Carlton Park,,Nature Area,http://www.nycgovparks.org/parks/R152/,No,62,24,11,{9536F4C8-C75F-4354-B08C-122C6F0C6DA3} +"MULTIPOLYGON (((-73.9396097942055 40.67945727357711, -73.93963590727805 40.679179773884975, -73.93970334877692 40.67918341580795, -73.93967723480075 40.67946091551469, -73.9396097942055 40.67945727357711)))",B567,13886,B567,B-03,,,B-03,Herkimer St. bet. Kingston Ave. and Albany Ave.,303,36,,11213,B,0.045,False,,,100042694,PARK,,20160209000000.00000,,DPR,False,Her-King Alagantic Garden,,Her-King Alagantic Block Association Garden,,Garden,,No,56,25,8,{AD7B8306-94F6-43E0-A055-F197E875F2FA} +"MULTIPOLYGON (((-74.09842046438315 40.57676504137595, -74.09681210251401 40.5758844519884, -74.09697563308308 40.57571011202798, -74.09725083278268 40.575858954983026, -74.09729353586687 40.575813428811365, -74.09734764986098 40.57575573676947, -74.0973797873351 40.575721475178405, -74.09741366642426 40.57568535431852, -74.09745910970223 40.57563690715973, -74.09751415614065 40.575578220968225, -74.0975832617964 40.575504547079284, -74.09763564779884 40.575448695239345, -74.09767248397961 40.57540942445425, -74.0977077093679 40.57537186962661, -74.09775324772927 40.57532331870844, -74.09796265684233 40.575100060490726, -74.09923408669341 40.57578769343207, -74.09929502430481 40.575819920994114, -74.09934905157903 40.575848799144175, -74.09939864645368 40.57587524068146, -74.09944824136754 40.575901682197276, -74.09949782449713 40.57592811469659, -74.09954814521204 40.575954942766316, -74.09959701570223 40.57598099761983, -74.09966463649143 40.5760175903392, -74.0997656963844 40.576072875896884, -74.09986993938479 40.57613216593414, -74.09993988142939 40.576173655328674, -74.10000728875112 40.576217290136285, -74.10003936441277 40.576240297635735, -74.10007144011007 40.57626331413143, -74.10010226670362 40.57628738532061, -74.10013308032806 40.57631145651284, -74.1001624651711 40.57633647449356, -74.10019185121715 40.57636149246573, -74.10021710268559 40.57638505518683, -74.10024234001303 40.57640862692, -74.10029047034557 40.576457321318884, -74.10030113801612 40.57646874236779, -74.10028914860129 40.576462712114015, -74.10013755672824 40.57652593151848, -74.10012778193689 40.576531055919965, -74.10011570409044 40.57653536285003, -74.10010283009552 40.5765380054021, -74.10008954839144 40.576538903090736, -74.10007626521265 40.576538028546246, -74.1000633821505 40.57653540843452, -74.1000512914275 40.57653112256084, -74.10004036054 40.57652530118158, -74.10003274515492 40.57651971285188, -74.10003225692212 40.57651940079489, -74.10000365909309 40.57650416900028, -74.09997202614147 40.576492956180644, -74.09993831992776 40.57648610099459, -74.09990356589215 40.57648381237089, -74.09986881761222 40.57648616143469, -74.09983513317432 40.576493075224484, -74.09980353502883 40.57650434303067, -74.09977498165864 40.57651962452467, -74.09975034278507 40.576538454282755, -74.0997303675073 40.576560259823815, -74.09971566070735 40.57658437873954, -74.09970667008925 40.576610079417144, -74.09970366967096 40.57663657906417, -74.09970674919981 40.57666307433489, -74.09971581654032 40.5766887593392, -74.09973059535146 40.57671285265993, -74.09975063575405 40.57673462345938, -74.09977533089261 40.57675341037617, -74.09978212685826 40.57675756039584, -74.09933881880751 40.57724371737487, -74.09934628209956 40.577251847162664, -74.09842046438315 40.57676504137595)))",R038A,5054,R038A,R-02B,R-02,R-02,R-02,"Midland Ave., Mason Ave., Bedford Ave., Boundary Ave.",502,50,122,10306,R,7.463,False,Midland Field,Yes,100004375,PARK,20100106000000.00000,19630121000000.00000,333 MIDLAND AVENUE,DPR/DOE,Part,Midland Field,Y,Midland Field,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R038A/,No,64,24,11,{3436BF6E-9158-4F19-92FB-51FCB515E2D2} +"MULTIPOLYGON (((-73.98881972964085 40.58300744600456, -73.98945269567825 40.5820327996288, -73.98988880803343 40.580775637272446, -73.9899093075986 40.58072665687686, -73.99529872048429 40.581935939104696, -73.99538622032043 40.582333160100156, -73.99510993742112 40.58247225888568, -73.99500710124309 40.582449937682476, -73.99356938309293 40.58313945577881, -73.99281002856469 40.58350362307959, -73.98980495809079 40.58494469010991, -73.98965317396032 40.584847847743745, -73.98940796288309 40.58469139274577, -73.98920354385375 40.58454746914684, -73.98902163910734 40.58438001125023, -73.9888619283498 40.58419034650261, -73.98875255989086 40.58404108666141, -73.98868644012921 40.58394036650455, -73.98862793418932 40.583826521029515, -73.98859159043825 40.583699144656315, -73.98858244873065 40.58354456075257, -73.9885990107653 40.583427528536276, -73.98865255817958 40.58327511839832, -73.98881972964085 40.58300744600456)))",B166C,4603,B166C,B-13,B-13,B-13,B-13,W. 22 St. bet. Bay 56 St. and Shore Pkwy.,313,43,60,11214,B,36.81,False,Coney Island Boat Basin/Six Diamonds,No,100003967,PARK,20100106000000.00000,19450614000000.00000,2692 BAY 49 STREET,DPR,False,Coney Island Boat Basin,Y,Coney Island Boat Basin,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B166C/,Yes,46,23,11,{702906D1-602D-4272-8F25-BC338BB83270} +"MULTIPOLYGON (((-73.72513450444242 40.76442908266551, -73.72514275489965 40.764428471092636, -73.72515104412614 40.76442850977879, -73.72516053200653 40.764429391498254, -73.72516068828203 40.76442940627921, -73.72516168721297 40.76442956985325, -73.72516683809492 40.76443041421073, -73.72517396680712 40.764432134978215, -73.72517972493773 40.76443392091454, -73.72518520451749 40.76443604837939, -73.72518971645582 40.76443846620108, -73.72519311045725 40.764440284318894, -73.72519787095675 40.76444331417845, -73.72521413828117 40.76445507489797, -73.7252210482713 40.76446043499623, -73.72523296869586 40.76446967923028, -73.72524188097157 40.76447659207671, -73.72526656831518 40.76449573812796, -73.72526990182003 40.764499015823496, -73.72527303589638 40.764502403805885, -73.72527591124839 40.7645059208445, -73.7252785730078 40.76450953642962, -73.72528096073908 40.7645132585218, -73.72528375741298 40.7645183350533, -73.72528476200333 40.764520859773, -73.7252858615498 40.764523621552875, -73.72528760652584 40.76452898013717, -73.72528910735 40.76453438046322, -73.72528987901042 40.764537959122904, -73.72529020902405 40.7645394979783, -73.7252906610862 40.76454532984867, -73.72529056725287 40.76455085064246, -73.72528997960544 40.76455635495013, -73.72528894123434 40.76456144575021, -73.7252889194702 40.76456155375932, -73.72528763334294 40.76456583711301, -73.72528619797953 40.76456983464964, -73.7252839070908 40.76457536731424, -73.72528384023931 40.76457549502702, -73.72528132646212 40.76458022120501, -73.72526088799262 40.764600844540105, -73.72523891406641 40.76462245026645, -73.72519724585543 40.76466342127587, -73.72515557760055 40.76470439046902, -73.72511391047509 40.76474536055014, -73.72507224211024 40.764786331513626, -73.72503057369791 40.76482730156128, -73.72498890523055 40.76486827249412, -73.72494723672307 40.764909240710125, -73.7249244015989 40.76493169530047, -73.72481560815274 40.76503866533806, -73.72478056333522 40.765073120627875, -73.72473889574465 40.76511409147164, -73.7247250866176 40.765127667861904, -73.72469561859722 40.765156192194134, -73.72468965201043 40.76515983940362, -73.72468219499902 40.76516331465608, -73.72467521386619 40.765165702330634, -73.72466788856435 40.76516739939278, -73.72466035751974 40.76516844129311, -73.7246538065648 40.7651687633276, -73.72464615906587 40.76516846589267, -73.72463754993652 40.76516728816317, -73.7246292394199 40.76516521514086, -73.72462232706148 40.76516271321582, -73.72461676313311 40.765160065029036, -73.72461241386833 40.76515754041355, -73.72460751561822 40.76515401942383, -73.72460264434022 40.76514970424992, -73.72459828888434 40.76514466720061, -73.72459457019022 40.765138876146665, -73.72459237603263 40.765134172949125, -73.72457387831685 40.76508922577676, -73.72457169609511 40.76508392827175, -73.72455132200496 40.765034483072434, -73.72453094794504 40.76498503786916, -73.72451057273105 40.76493559265909, -73.72449019873166 40.764886147447875, -73.72446982594685 40.76483670223549, -73.7244494508236 40.764787257013516, -73.72442907691868 40.76473781088995, -73.72440870303284 40.76468836746389, -73.72439537413788 40.76465601903077, -73.72438709543408 40.764636544640446, -73.72438514011289 40.7646316610077, -73.72438416495379 40.76462661132464, -73.72438422449181 40.764620237667856, -73.72438586852442 40.76461333830265, -73.7243881635507 40.764608541381115, -73.72439177187823 40.7646034981604, -73.72439576006946 40.76459939057613, -73.72440048874024 40.76459579535137, -73.72440377844872 40.76459390584938, -73.72440653273708 40.76459232304045, -73.72441243387837 40.7645898859723, -73.72441953162256 40.76458792723459, -73.7244242771244 40.76458713353107, -73.72442581668265 40.76458687696668, -73.72447314697443 40.76457645061651, -73.72449083047246 40.764572521663226, -73.72452446431448 40.76456505042508, -73.72455393859137 40.76455845083021, -73.72461702676179 40.76454432858599, -73.7246801149054 40.76453020630719, -73.72474320184163 40.76451608309051, -73.72475644823277 40.76451311784555, -73.72480628993179 40.764501960742614, -73.7248465068307 40.76449295716075, -73.72486937681451 40.76448783745674, -73.72493246603548 40.764473715042506, -73.7249955528722 40.76445958988651, -73.72505864085527 40.76444546740025, -73.72512305065031 40.764431037357795, -73.72512839071003 40.7644299505776, -73.72513450444242 40.76442908266551)))",Q357I,6296,Q357I,Q-11,Q-11,Q-11,Q-11,"Horace Harding Exwy. Sr. Rd. N., Little Neck Pkwy., Nassau Blvd.",411,19,111,11362,Q,0.836,False,Nassau Mall,Yes,100000275,PARK,,19540830000000.00000,,DPR/SDOT,False,Nassau Mall,N,Nassau Mall,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q357I/,No,26,11,3,{E25FB01D-7B45-412D-A6B2-B8C77AA23A41} +"MULTIPOLYGON (((-73.92348670255434 40.841951544451, -73.9235738939753 40.84183469391455, -73.9236633438356 40.841714817346165, -73.92399436119244 40.84185623869393, -73.92390491292421 40.84197611551687, -73.92381772071464 40.84209296539946, -73.92348670255434 40.841951544451)))",X287,5688,X287,X-04,X-04,X-04,X-04,"Ogden Av, Plimpton Av, W 170 St",204,16,44,10452,X,0.229,False,Ogden Plimpton Playground,Yes,100003942,PARK,20100106000000.00000,19971016000000.00000,,DPR,False,Ogden Plimpton Playground,No,Ogden Plimpton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X287/,No,77,29,15,{A225191B-5FD4-429B-BEA7-365F1FF81B8F} +"MULTIPOLYGON (((-73.93772992401196 40.69528104558478, -73.93785123189446 40.695267044244375, -73.9379796227204 40.69525222442499, -73.93803550934146 40.69553339283591, -73.9379070991468 40.69554811545154, -73.93778577310168 40.6955620267895, -73.93772992401196 40.69528104558478)))",B430,5237,B430,B-03,B-03,B-03,B-03,Willoughby Ave. between Lewis Ave. and Marcus Garvey Blvd.,303,36,81,11206,B,0.161,False,Lewis Playground,Yes,100004324,PARK,20100106000000.00000,20001208000000.00000,773 WILLOUGHBY AVENUE,DPR,False,Lewis Playground,Y,Lewis Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B430/,No,54,18,8,{3DB72246-C60D-430B-B7A0-65E9DAD9E502} +"MULTIPOLYGON (((-73.9012446434414 40.71808784171928, -73.9019812819361 40.718083487812514, -73.90221533948097 40.718919375865184, -73.90185863475939 40.71897528310963, -73.90190950875404 40.719156964815596, -73.90155897737482 40.71921190383937, -73.9012446434414 40.71808784171928)))",Q423,6182,Q423,Q-05,Q-05,Q-05,Q-05,59 Dr. bet. Fresh Pond Rd. and 63 St.,405,30,104,11378,Q,1.529,False,Reiff Playground,Yes,100000065,PARK,20090423000000.00000,19640629000000.00000,,DPR,True,Reiff Playground,Y,Reiff Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q423/,No,30,15,6,{E80A19B4-6ECE-41E4-9878-BDA0C4E0DD9E} +"MULTIPOLYGON (((-73.95714285365467 40.70753243954386, -73.95718135671373 40.707242617096206, -73.95755683400232 40.7072714428435, -73.9572373862089 40.70784695845983, -73.95696244542701 40.70781548488213, -73.95714173425955 40.70753419512413, -73.95714285365467 40.70753243954386)))",B223OC,5123,B223OC,B-01,B-01,B-01,B-01,"Division Ave., Rodney St., S. 9 St.",301,33,90,11211,B,0.392,False,Rodney Park South,Yes,100004550,PARK,20100106000000.00000,19520206000000.00000,282 SOUTH 9 STREET,DPR,True,Rodney Park South,Y,Rodney Park South,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B223OC/,No,50,26,7,{FD3FFFE8-CC62-4F93-AAAC-E3D6F887B486} +"MULTIPOLYGON (((-73.75961028878955 40.59222064080161, -73.75996165081712 40.59218683922321, -73.7600402965007 40.59262013772688, -73.75976360107026 40.59265163633677, -73.75958192491365 40.592663423385076, -73.75929899783485 40.59269453502092, -73.75933080126269 40.59285417579551, -73.75898200015892 40.592892529380606, -73.75886307297111 40.59229252033656, -73.75961028878955 40.59222064080161)))",Q162H01,5574,Q162H01,Q-14,Q-14,Q-14,Q-14,Rockaway Boardwalk bet. B. 28 St and B. 26 St.,414,31,101,11691,Q,1.14,False,Park,No,100000122,PARK,20100106000000.00000,19601201000000.00000,,DPR,False,Park,N,Park,Neighborhood Plgd,Undeveloped,http://www.nycgovparks.org/parks/Q162H01/,Yes,23,10,5,{1BFE5327-5293-466C-B420-F73ED1C6BB3A} +"MULTIPOLYGON (((-73.87146310607713 40.77058103057575, -73.87094199736576 40.770270648485514, -73.87090344991945 40.770053208259085, -73.87130473511576 40.77001035732812, -73.8713549157211 40.770004998634505, -73.87138408063777 40.77016818456093, -73.87174159956287 40.77013000639045, -73.87178048945951 40.77034758809111, -73.87179542758527 40.77040008610091, -73.87181729200589 40.7704356173093, -73.87183414338242 40.77045534899342, -73.87185358443426 40.77047363464395, -73.8718743447832 40.77048956874065, -73.87189041815316 40.77049998113351, -73.87191875551542 40.77051348508109, -73.8719613466 40.77053018094042, -73.87199084812836 40.77053947360507, -73.87202113311123 40.77054726779292, -73.87206762335272 40.77055603720303, -73.87214844876053 40.770564353023424, -73.87220237355797 40.77056901172222, -73.8722943703645 40.770573302870154, -73.87239515078828 40.770569168649736, -73.87248642695485 40.77055948932445, -73.87254638681713 40.770549209773236, -73.87263428645004 40.770528150526054, -73.87271898508584 40.770500536507704, -73.87277317500141 40.770478634860524, -73.87281321848897 40.77045873470253, -73.87284144088073 40.77043824876453, -73.87286553100154 40.77041323142533, -73.87288013448723 40.77039142561916, -73.87289003307274 40.77036971547724, -73.87289777356494 40.770332482763315, -73.8728946409514 40.77029446722288, -73.873269333491 40.77025616547967, -73.87362765074138 40.77021953570594, -73.87363995243464 40.7702183749402, -73.87364617784647 40.770227812748224, -73.8736541012043 40.7702369318383, -73.87366140021638 40.770243624284824, -73.87367227981724 40.7702515939697, -73.87368324790631 40.77025787440461, -73.87369580861208 40.770263790079085, -73.87371321903387 40.770268813265105, -73.87372872178146 40.77027169926233, -73.8737444597327 40.770272978115166, -73.87376242783299 40.770272489017955, -73.87377713908687 40.770270519523216, -73.8737877611059 40.770268165534496, -73.87379972289928 40.770264485669045, -73.87381007594506 40.77026030786259, -73.8738195512418 40.77025553566172, -73.87382750226887 40.77025068975055, -73.87387093377743 40.770507367494965, -73.87382023471142 40.77052183351528, -73.87376052837976 40.770537200955175, -73.87372349677472 40.77054610238268, -73.87368852538454 40.77055540227869, -73.87347571657182 40.770611895149116, -73.87325915539154 40.77067315346959, -73.87314164089008 40.7707119673492, -73.87312857058947 40.77071612319283, -73.87297294414985 40.77076431150042, -73.87286881981017 40.770794444594756, -73.87281942473352 40.770805642783195, -73.87276953468172 40.77081552116532, -73.87271922783094 40.77082408072726, -73.87266855751812 40.770831304417875, -73.8726175972043 40.77083718151193, -73.87256638479386 40.77084171295136, -73.87251500321518 40.77084489252414, -73.87246350579849 40.77084670678144, -73.87241196477409 40.770847169310684, -73.87236042280688 40.77084626935301, -73.87230895691157 40.77084399618774, -73.87225763336657 40.77084037870456, -73.87220650077298 40.770835398947504, -73.87215561950927 40.770829074093356, -73.87210506418295 40.7708214132303, -73.87205488571209 40.77081242542035, -73.87200515279544 40.77080211254133, -73.8719559281869 40.77079048817113, -73.87190724383186 40.770777572156916, -73.87185918853527 40.770763381707766, -73.87181182148501 40.7707479367014, -73.87176517228299 40.77073124347508, -73.87171932497671 40.770713329138424, -73.87167432572602 40.77069421265437, -73.87163022187153 40.77067391478818, -73.8715870642637 40.770652478821816, -73.87154492871689 40.770629901238806, -73.87150383764153 40.77060623159297, -73.87146310607713 40.77058103057575)), ((-73.87200291664483 40.7703724948069, -73.87199316926075 40.770359758952786, -73.8719874085401 40.770349622780344, -73.87233319505528 40.77031252475206, -73.87234227350307 40.77036221562977, -73.87270601298985 40.77032318948223, -73.87269967545556 40.77033591380929, -73.87268702625421 40.770351545193684, -73.87267427885197 40.77036154021219, -73.87265884220454 40.77036993746419, -73.8726471512886 40.770375623834035, -73.87260741022246 40.77038913248997, -73.872579690053 40.77039720637597, -73.87252475303082 40.77041091161688, -73.87246570810971 40.77042221424196, -73.87243658543302 40.77042661158342, -73.87237785763023 40.77043312113054, -73.87232226660487 40.77043576015461, -73.87223334212952 40.77043289703326, -73.87214526114488 40.77042317383758, -73.87208745387541 40.77041291506842, -73.87204940895305 40.77040355080639, -73.87202925696346 40.77039401099681, -73.87201482192583 40.77038410652641, -73.87200291664483 40.7703724948069)))",Q299,21493,Q299,Q-03,Q-03,Q-03,Q-03,"Ditmars Blvd., 22 Dr. bet. 97 St. and 100 St.",403,21,115,11369,Q,2.327,False,Overlook Park,Yes,100000097,PARK,20110712000000.00000,19401216000000.00000,,DPR,True,Overlook Park,Y,Overlook Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q299/,No,35,13,14,{E1CFDD1A-B668-436D-A450-56CADCB7D578} +"MULTIPOLYGON (((-73.97774350618626 40.653424641827925, -73.97764254730349 40.65325308362491, -73.97745445137213 40.65289419799361, -73.97745789359965 40.65289676424196, -73.9774688114527 40.65290452793947, -73.97748010422143 40.652912000842264, -73.97748892767116 40.65291747591341, -73.97749909178539 40.652923419515105, -73.97750590339672 40.65292719581581, -73.97751799821629 40.652933518010684, -73.9775397624243 40.65294375484039, -73.97755831378736 40.65295142366443, -73.97756365274066 40.65295346257654, -73.97762350089808 40.653043069397775, -73.97777537450345 40.653270457832015, -73.97784429306965 40.65324338807329, -73.97790844002706 40.65321819313417, -73.97793429430669 40.65325690502874, -73.97796432865879 40.65330187090981, -73.97799189780363 40.65334314869314, -73.97801792472508 40.65338211544777, -73.97804548920878 40.65342338691333, -73.97807404999311 40.65346614801747, -73.97810470380273 40.65351204151156, -73.97804420833738 40.65353580363307, -73.97797631481833 40.65356247027531, -73.97810810110661 40.6537597825381, -73.97802285582549 40.65379326551963, -73.97793916789263 40.65368664357464, -73.9777900324616 40.653490982918306, -73.97777195879262 40.65346501661563, -73.97774350618626 40.653424641827925)))",B255J,5942,B255J,B-07,B-07,B-07,B-07,S/B Prospect Exwy. bet. Seeley St. and Vanderbilt St.,307,39,72,11218,B,0.364,False,Seeley Park,Yes,100004459,PARK,20100106000000.00000,19600915000000.00000,,DPR,True,Seeley Park,Y,Seeley Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B255J/,No,44,21,9,{3D65520B-11DA-497C-9A0D-121F87BE6993} +"MULTIPOLYGON (((-73.90944231152876 40.74719606455052, -73.90951135094097 40.746935788590974, -73.90971503145066 40.74698992030653, -73.91039054856383 40.74716945328622, -73.91200753904165 40.74735431238248, -73.91185605211852 40.747914283822524, -73.91000020344538 40.74771024544643, -73.90997917450527 40.747668147432385, -73.9096304939995 40.74736153999655, -73.90944231152876 40.74719606455052)))",Q031,5491,Q031,Q-02,Q-02,Q-02,Q-02,"52 St., Woodside Ave. bet. 39 Rd. and 39 Dr.",402,26,108,11377,Q,3.009,False,Lawrence Virgilio Playground,Yes,100000021,PARK,20090423000000.00000,19360901000000.00000,52-01 39 DRIVE,DPR,True,Lawrence Virgilio Playground,Y,Lawrence Virgilio Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q031/,No,30,12,14,{AECA41EB-AF37-4442-A913-61734BB4236B} +"MULTIPOLYGON (((-74.11035013703814 40.6426611291577, -74.11055225994618 40.643764753299045, -74.10858385044344 40.64398599602849, -74.10835784437299 40.64288150037829, -74.10869904996574 40.642843761806375, -74.10904357538107 40.64280565436346, -74.10940336105651 40.64276585820678, -74.10966497871898 40.64273692028568, -74.11005178503333 40.64269413272054, -74.11035013703814 40.6426611291577)))",R015,5040,R015,R-01,R-01,R-01,R-01,"Delafield Pl., Bard Ave., and Davis Ave.",501,49,120,10310,R,5.278,False,Walker Park,Yes,100004656,PARK,20100106000000.00000,19310619000000.00000,88 DELAFIELD PLACE,DPR,False,Walker Park,Y,Walker Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/R015/,No,61,23,11,{C77F428F-1574-4AEE-BAD2-C28341121AA3} +"MULTIPOLYGON (((-73.98781604228022 40.66200485501619, -73.98774886589044 40.66196446692991, -73.9877245532566 40.66198782012848, -73.98765200643201 40.66194420306143, -73.9875747371625 40.66189774611049, -73.98777845269103 40.66170204071517, -73.98779741470916 40.66168248621532, -73.98780621368547 40.66167109381591, -73.98781683707925 40.661654506530375, -73.98782476234473 40.661629111908596, -73.98782706634289 40.66161386280896, -73.98782697380372 40.661596073999604, -73.98782230357793 40.66157231428242, -73.98780268605361 40.66153596106109, -73.98777543674571 40.66150459408497, -73.9877460324899 40.66148182860481, -73.98684992522102 40.660941299161735, -73.98721264035133 40.660592066658054, -73.98807088906905 40.661777089825705, -73.98843207292809 40.66227577860152, -73.98853657233872 40.66242005806957, -73.98847885076444 40.6624755015903, -73.9884121665714 40.662435410212844, -73.98833939296722 40.662391657580905, -73.98826807147476 40.66234877945201, -73.98819300534286 40.66230364690226, -73.98823920586284 40.66225927059184, -73.98816967357891 40.662217465999596, -73.9881003802309 40.66217580457193, -73.9880297780329 40.6621333577159, -73.98795768016853 40.66209001104401, -73.98788786445796 40.662048036053285, -73.98781604228022 40.66200485501619)))",B255F,6196,B255F,B-07,B-07,B-07,B-07,"N/B Prospect Exwy., 17 St., bet. 6 Ave. and 7 Ave.",307,38,72,11215,B,1.314,False,Detective Joseph Mayrose Park,Yes,100004010,PARK,20100106000000.00000,19530722000000.00000,,DPR,True,Detective Joseph Mayrose Park,Y,Detective Joseph Mayrose Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B255F/,No,51,21,7,{76A074E7-7618-4831-8082-F45ACFF0C028} +"MULTIPOLYGON (((-74.07328568778453 40.636899326467116, -74.0734107485647 40.63688920230285, -74.07346675605018 40.63722498092346, -74.07052679120996 40.63747460673302, -74.07052550589687 40.637463079976754, -74.07048790491439 40.63712577578758, -74.07328568778453 40.636899326467116)))",R044,5745,R044,R-01,R-01,R-01,R-01,Pier 6 at Victory Blvd.,501,49,120,10301,R,2.356,False,Park,No,100003789,PARK,20100106000000.00000,19380501000000.00000,,DPR,False,Park,N,Park,,Nature Area,http://www.nycgovparks.org/parks/R044/,Yes,61,23,11,{6B050B6F-1604-4B94-8328-EE9B325EE2D9} +"MULTIPOLYGON (((-73.9275699875039 40.68895314726219, -73.92765912976593 40.68894293387601, -73.92771529417487 40.68921966819297, -73.92766671309312 40.689225234359476, -73.9276261515505 40.689229882522824, -73.9275699875039 40.68895314726219)))",B518,5294,B518,B-03,B-03,B-03,B-03,Gates Ave. between Malcolm X Blvd. and Patchen Ave.,303,36,81,11221,B,0.058,False,Victory Garden's Group,No,100004196,PARK,20100106000000.00000,20021120000000.00000,953 Gates Av,DPR,False,Victory Garden's Group,N,Victory Garden's Group,Greenthumb,Garden,http://www.nycgovparks.org/parks/B518/,No,56,25,8,{B716707F-E27A-4446-B268-0C312769B0C3} +"MULTIPOLYGON (((-73.8530137637704 40.83974426272756, -73.85281515167704 40.838676500093364, -73.85324214281995 40.83863083890321, -73.85336634954085 40.83926489828715, -73.85366182113471 40.83922883953331, -73.85374459850438 40.83966494959035, -73.8530137637704 40.83974426272756)))",X177,5999,X177,X-09,X-09,X-09,X-09,"Castle Hill Av, Parker St",209,18,43,10462,X,1.368,False,Castle Hill Playground,Yes,100004416,PARK,20100106000000.00000,19540311000000.00000,,DPR/DOE,False,Castle Hill Playground,Y,Castle Hill Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X177/,No,87,34,14,{5DF644DF-79D8-480A-8D04-2F5E1B3B6FD9} +"MULTIPOLYGON (((-73.89508086970636 40.79637706344366, -73.89510438306894 40.79520645682427, -73.89728026668915 40.79527977931265, -73.89784889638078 40.79553360443345, -73.89811053894269 40.79565039588502, -73.89912970588038 40.79610531645791, -73.89951251311642 40.79627618486838, -73.89954142131069 40.79628908812134, -73.89958162635332 40.79717018247788, -73.89790470372519 40.79787684917001, -73.8960682457797 40.79779972803357, -73.89508086970636 40.79637706344366)))",X309,5548,X309,X-02,X-02,X-02,X-02,East River,202,17,41,10021,X,21.10936646,False,South Brother Island,No,100003800,PARK,20100106000000.00000,20010821000000.00000,,DPR,False,South Brother Island,Y,South Brother Island,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/X309/,Yes,85,34,15,{5C7715F7-1ED3-4671-BB78-C67E950E1410} +"MULTIPOLYGON (((-73.94157178085652 40.79692280504314, -73.94112760303106 40.79673477169294, -73.9411735984678 40.79667202043184, -73.94152104692513 40.79681842939694, -73.94153862283807 40.7967944507983, -73.94211877725365 40.79703891320475, -73.94208011173168 40.79709166577097, -73.9424654700068 40.79725404237295, -73.94222273677515 40.79758520850585, -73.94174999454724 40.7973860096658, -73.94141702124253 40.79724390144577, -73.94138224860272 40.79729147157787, -73.94132303635374 40.7972664750953, -73.94157178085652 40.79692280504314)))",M111,4672,M111,M-11,M-11,M-11,M-11,E. 115 St. bet. 3 Ave. and Lexington Ave.,111,8,23,10029,M,1.048,False,James Weldon Johnson Playground,Yes,100004365,PLGD,20100106000000.00000,19291226000000.00000,176 EAST 115 STREET,DPR/DOE,True,James Weldon Johnson Playground,Y,James Weldon Johnson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M111/,No,68,30,13,{DCB8C01A-2A78-4DCE-B16A-D355488210E3} +"MULTIPOLYGON (((-73.82595389583385 40.834729130424165, -73.82606595253135 40.83462049256235, -73.82617290119848 40.834520042304206, -73.8263245429505 40.83471728213377, -73.82572191856555 40.835007413329336, -73.82583768834121 40.834853914100854, -73.82595389583385 40.834729130424165)))",X149,6436,X149,X-10,X-10,X-10,X-10,Bruckner Blvd bet. Hollywood Ave. and Crosby Ave.,210,13,45,10461,X,0.39,False,Miele Park,Yes,100008305,PARK,20100106000000.00000,19570627000000.00000,,DPR,True,Miele Park,Y,Miele Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X149A/,No,82,34,14,{19583942-9BB5-4360-86A3-EBFBC433AAEC} +"MULTIPOLYGON (((-73.92051825274261 40.8445967176128, -73.92014415600237 40.8444607432481, -73.92009680863895 40.84453682732481, -73.91968463608761 40.84439025059759, -73.9196933010052 40.84437716436372, -73.9200881921208 40.844518556658215, -73.92013558463171 40.84444239697465, -73.92050968125132 40.84457837136757, -73.92052605460964 40.844584338509655, -73.92051825274261 40.8445967176128)))",X148A1,5828,X148A1,X-04,X-04,X-04,X-04,Nelson Av bet. W 172 St and Cross Bronx Exwy,204,16,44,10452,X,0.031,False,Strip,No,100005057,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/X148A1/,No,77,29,15,{4C9BCEF6-EFBE-4DA6-8A38-A57929AA93BC} +"MULTIPOLYGON (((-73.90398972982707 40.70423981423944, -73.90414736402994 40.7040846297846, -73.90433905106272 40.704196797653246, -73.90433897057186 40.7041968164971, -73.90472023359919 40.704420048196745, -73.90375522168335 40.70537552792222, -73.90317982555379 40.7050371174291, -73.90393433822587 40.704294344461495, -73.90398972982707 40.70423981423944)))",Q398,5377,Q398,Q-05,Q-05,Q-05,Q-05,"Woodbine St., Madison St. bet. Woodward Ave. and Fairview Ave.",405,30,104,11385,Q,1.967,False,Rosemary's Playground,Yes,100000286,PARK,20090423000000.00000,19580306000000.00000,751 WOODWARD AVENUE,DPR/DOE,False,Rosemary's Playground,Y,Rosemary's Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q398/,No,37,15,7,{744457F4-A639-4646-BA9B-F2AE0B90ED9B} +"MULTIPOLYGON (((-73.98195870073373 40.71378994141338, -73.98197084815378 40.713788573639974, -73.98200311728021 40.71403959868436, -73.98100255069114 40.71414509571034, -73.98097254706441 40.71392659179808, -73.98133663806603 40.713898894065, -73.98133343809755 40.71386044354985, -73.98195870073373 40.71378994141338)))",M228,4926,M228,M-03,M-03,M-03,M-03,"Jackson St., Madison St., Henry St.",103,2,7,10002,M,0.61,False,Henry M. Jackson Playground,Yes,100003811,PLGD,20100106000000.00000,19560726000000.00000,1 JACKSON STREET,DPR,False,Henry M. Jackson Playground,Y,Henry M. Jackson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M228/,No,65,26,7,{DB344560-EE65-41FC-BB74-144E15D2A3F8} +"MULTIPOLYGON (((-74.1153431925655 40.59955497397467, -74.1154072999301 40.59888659808669, -74.11541764605815 40.59869066537507, -74.11547841508761 40.59775151801122, -74.11552893432817 40.59714038834728, -74.11559777006492 40.59657910668143, -74.11567449975337 40.596080551059316, -74.11561009160816 40.59604603757653, -74.11544492284338 40.595957531785146, -74.11491337779714 40.59567269948142, -74.11438846136801 40.59539141428475, -74.1144333025965 40.595271580210245, -74.11507274324885 40.59356266923526, -74.11500240536502 40.592148851748014, -74.11542218430384 40.58991425194555, -74.11590680022701 40.589422107767916, -74.11603539192319 40.589291518173134, -74.11813994994696 40.587154149024045, -74.12032714610476 40.58849020957431, -74.12048463395284 40.588586407829666, -74.12140910935149 40.58790076982083, -74.12181598481256 40.587642492991215, -74.12234110133844 40.58736115702555, -74.12267996523421 40.58722783151476, -74.12306133094947 40.5870820124425, -74.12351030819855 40.58692303302395, -74.12399796944554 40.586776285152986, -74.12451055115523 40.5866391834393, -74.12511087029362 40.586486665114315, -74.12596549264303 40.58626953167267, -74.12647634954985 40.58614645503639, -74.12682594942055 40.58606490361389, -74.12709901565992 40.58598675964704, -74.12745645236045 40.585861886010335, -74.12748297968201 40.58585261810047, -74.12775979582415 40.585720173078016, -74.12811430535241 40.58553193974113, -74.12831449678511 40.58541380617476, -74.1283884380034 40.58536774459609, -74.12856301145695 40.58523332351367, -74.12860057007815 40.585202908591086, -74.1287149038931 40.58511032191119, -74.12879514826857 40.585034759027955, -74.12886404286384 40.58496795201065, -74.12891273011073 40.58492031998161, -74.12888145713384 40.58505248542869, -74.12885916307124 40.58519060587033, -74.1288521227071 40.58525768483216, -74.12885432575884 40.58537101337139, -74.12886805878007 40.58546066319426, -74.12888879877788 40.585545478343576, -74.12905511446355 40.58606104003321, -74.12906961210801 40.586130508215064, -74.12907765667035 40.58621025862804, -74.12907362698824 40.58624600496986, -74.12906071127894 40.58628000527026, -74.1290159477123 40.58634935089691, -74.12898846438729 40.58638163853834, -74.1287743099857 40.58658278574819, -74.12836328625988 40.586921518646456, -74.12830715918054 40.586964915468975, -74.12830897137165 40.58696871185712, -74.1278617835723 40.587322976843105, -74.12763284032766 40.587103545769, -74.12758699414573 40.587062961425545, -74.12753713496458 40.58702522717505, -74.12748356679312 40.586990571408165, -74.1274272543584 40.586981109927954, -74.12735744272966 40.58693743535349, -74.12729503033059 40.586906781325816, -74.12724786515736 40.58688917788843, -74.12716953817097 40.58686958724792, -74.12708919009619 40.58685554151696, -74.12700749206782 40.58684715881863, -74.1269251316673 40.58684451043249, -74.12684279873984 40.58684761630756, -74.1267611830469 40.586856452269394, -74.12668097071139 40.58687094371991, -74.12618370857659 40.5869793349806, -74.12574816645538 40.58707427026239, -74.12545883788022 40.58716164112566, -74.12498209444165 40.5872683027818, -74.12485772613239 40.58729612731471, -74.12452362482047 40.58737087498639, -74.12430530391765 40.5874297391142, -74.12391201406537 40.58752887938663, -74.12345209902004 40.58765268863286, -74.1230791151073 40.5877900891175, -74.1228544344446 40.58787221153219, -74.12276640529824 40.58790548903611, -74.12259834404055 40.58796901765215, -74.1225807051163 40.58797568594174, -74.12233017000182 40.588094172859456, -74.12191556788052 40.58833595308871, -74.12167025016568 40.588488814136, -74.12129583927656 40.58876735126886, -74.12089280446109 40.58909012041515, -74.1206375304452 40.58930820566815, -74.12038355891427 40.58953679719815, -74.12006574062168 40.58984092780826, -74.11981146616114 40.590100415352175, -74.11948137708337 40.59046181062921, -74.11923127354402 40.59075686953027, -74.11902421343628 40.59101719962175, -74.11877027395359 40.591359564189816, -74.1185982775998 40.591608261202424, -74.11840789766116 40.59190222101191, -74.11823803858873 40.5921839933065, -74.1181137606491 40.5924039056475, -74.1179996271114 40.59261784956697, -74.11789557903163 40.59282448337579, -74.11780179365896 40.593021754626676, -74.11769975466974 40.593250343658035, -74.11763832620251 40.593396139205936, -74.11757806369738 40.59354610565169, -74.11750183307355 40.593747233632065, -74.1174371052367 40.59392986745601, -74.11741050526358 40.594008601301034, -74.11735124390364 40.59418166772668, -74.11730406100291 40.59432419133879, -74.11724245969353 40.59451725801778, -74.11719506113297 40.59467179208256, -74.11714890781488 40.594827852143744, -74.11709806090778 40.5950069064315, -74.11706414895308 40.59513094577127, -74.11702836182782 40.595266316495106, -74.11697981201688 40.59545818193145, -74.11694245102797 40.59561315141757, -74.1169070039757 40.59576693655467, -74.11687643178459 40.595905585225275, -74.11684095066043 40.596074506369604, -74.1168106159282 40.59622682112004, -74.11678650418759 40.59635392208526, -74.11676848279888 40.596452885405554, -74.1167540771686 40.59653472519866, -74.11674531087337 40.59658921396775, -74.11668024411448 40.59701130851858, -74.11668938071035 40.597011138948375, -74.11665243260106 40.597177462594594, -74.11659506956197 40.59762175075271, -74.11659355654959 40.59763346179194, -74.11657953453982 40.597827024583005, -74.11657631616862 40.59788915314632, -74.11657482505996 40.59795063248082, -74.11657483166705 40.59799840072975, -74.11657577301823 40.59804360424064, -74.11657774260567 40.59809107062364, -74.11658065096992 40.59813760311198, -74.11658711222444 40.59821006166152, -74.11659428468705 40.59827033180736, -74.1165986785092 40.59830153228007, -74.1166214657641 40.59846325573406, -74.11668471958065 40.598946329419654, -74.11669484538214 40.59894620927421, -74.11669890189539 40.59911963961128, -74.11673698058286 40.599391292370065, -74.1167753658617 40.599665136671064, -74.11678417401089 40.59982889324845, -74.11677612732169 40.6001052431401, -74.11677004541677 40.60031409322329, -74.11677667028573 40.60036840334014, -74.11677082273832 40.60053630369644, -74.11676180319246 40.60080906146948, -74.1167473893798 40.60124487160206, -74.11673835390802 40.60151809043799, -74.11673640809785 40.601576922677246, -74.11672894689197 40.60180251935239, -74.11672951131 40.60185098762369, -74.1149047866687 40.602018674882686, -74.11345056683 40.600559589423824, -74.11348977619652 40.600526461894276, -74.11373580819978 40.600414745631056, -74.11377251943995 40.600398076633866, -74.11516880908164 40.59976404320269, -74.11522213425796 40.59973439135878, -74.11525851654633 40.599706222535154, -74.11529393723768 40.59966854784247, -74.11531919174901 40.59962958838817, -74.11533582253915 40.59958904545835, -74.1153431925655 40.59955497397467)), ((-74.11120237184016 40.60713773011399, -74.11113227713992 40.606663389211995, -74.11107170053053 40.60640617031588, -74.11150754257444 40.60580508630887, -74.11152808935748 40.60577800387101, -74.11155390511551 40.60575049667192, -74.11158236507595 40.60572577041493, -74.11161339084192 40.60570357662995, -74.11164472868505 40.60568501704222, -74.1116870899555 40.605664818589645, -74.11172525610213 40.60565060907204, -74.11176524651746 40.60563921009954, -74.11180907416333 40.60563038557615, -74.11185390601173 40.605625027970916, -74.11189827943053 40.605623205345374, -74.11193584617108 40.605624324134865, -74.11198263403708 40.60562917109649, -74.11238745224621 40.60564433788776, -74.11240186827 40.60564222467218, -74.11241831979237 40.60563922965336, -74.11243768271996 40.605634878298716, -74.11245685511157 40.60562964461516, -74.11247485326892 40.60562384294728, -74.112494177021 40.60561658203317, -74.11250952953692 40.60560998688745, -74.11252986364413 40.60560000630081, -74.11254663041112 40.60559057762206, -74.11256262204992 40.60558043018252, -74.1125792168281 40.60556851082216, -74.11259476697599 40.60555580812768, -74.11261077051044 40.605540814057505, -74.11302902863608 40.60521345437213, -74.11308679670643 40.60516481435418, -74.11317095987232 40.605090184452585, -74.11323431115592 40.6050307938265, -74.11329610447999 40.60497036189565, -74.1133610528449 40.60490463444802, -74.11341551869018 40.60484664829427, -74.11346426612168 40.604792307672206, -74.11351152345686 40.604737208459696, -74.1135572741964 40.604681374088464, -74.1136158912308 40.60460582714749, -74.1136649167168 40.60453873206187, -74.11372801811102 40.60444626791179, -74.113779949647 40.604367923272825, -74.1138336097503 40.60428410712303, -74.11388548096858 40.60419963984102, -74.11394419931825 40.60409946243234, -74.11401405814435 40.60397307233346, -74.11406450049375 40.603876187276654, -74.11411263168159 40.60377862459675, -74.11419295202442 40.60360243769804, -74.11425757296816 40.60344540605853, -74.11428602633057 40.60337173842177, -74.11431724498824 40.603287403135965, -74.11434016543517 40.60319039223385, -74.11435028346146 40.60307566997581, -74.11434986208332 40.603042801314004, -74.11434701059319 40.60299902973918, -74.11434154588147 40.60295540304661, -74.11433463051023 40.602917419572, -74.11432712456207 40.60288505144385, -74.1143114077494 40.60283159853695, -74.1142917236378 40.6027789150174, -74.11427561911862 40.602742585031116, -74.11426556727322 40.60272205410047, -74.11426031225598 40.602711854600734, -74.11422389620553 40.60272149217342, -74.11413650368578 40.60261034642082, -74.11444970808877 40.602449964314665, -74.11481522194997 40.60225767490994, -74.11504972312477 40.602605242128256, -74.11529402900292 40.6046841358865, -74.11507679000216 40.604698756564105, -74.11473728151121 40.60472160456275, -74.1147327887838 40.6047219701574, -74.1147199961083 40.604723195030644, -74.11471911719904 40.6047232814576, -74.11471372107502 40.60472392261256, -74.11470368278798 40.60472528971898, -74.11470117502289 40.60472565153027, -74.11469827045175 40.60472612270076, -74.11468857886675 40.60472778933384, -74.11468368301381 40.60472871275232, -74.11468297907409 40.604728859339374, -74.11467225938328 40.60473111233672, -74.11466647808501 40.60473244457466, -74.11465618903972 40.60473502943367, -74.11465501039187 40.60473533138404, -74.1146498838276 40.60473676112492, -74.11463722904094 40.60474053703202, -74.1146348601429 40.604741265216056, -74.11463054885193 40.604742705849716, -74.1146188717584 40.604746813973016, -74.11461588908088 40.604747901176786, -74.11461245078189 40.60474924998633, -74.11460074646557 40.604754020019094, -74.11459712298914 40.60475555722208, -74.11459457523212 40.604756713331845, -74.11458382010362 40.604761729159634, -74.11457956897614 40.604763804599855, -74.11457763299961 40.604764814214676, -74.11456590048648 40.604771057526975, -74.11456132998426 40.60477361146237, -74.11456000329869 40.60477440074205, -74.11455020673843 40.60478031073067, -74.11454534649982 40.604783401665685, -74.11454463958165 40.60478387874669, -74.11453421883697 40.604790971742226, -74.1145290843512 40.60479467530526, -74.11452867843836 40.60479498639003, -74.11451893071218 40.604802505561224, -74.1145138914791 40.60480663587633, -74.1145052626512 40.60481415032944, -74.11450523787619 40.604814171966645, -74.1145011255408 40.60481795105445, -74.1144946662215 40.604824216121564, -74.11449370371533 40.604825162629105, -74.11449162079656 40.60482729984319, -74.11448693035013 40.60483225829046, -74.11448435474077 40.60483508939759, -74.114483734484 40.60483580593089, -74.1144768563756 40.60484383283635, -74.11447374841711 40.60484765774995, -74.11447008084828 40.604852426067964, -74.11407172045939 40.605339985042605, -74.11406953935268 40.60534276081682, -74.11406896879139 40.60534352412572, -74.11392557386016 40.605537595685504, -74.11346219071797 40.606109409488994, -74.11346024773688 40.60611189234651, -74.11345848541986 40.60611430838696, -74.11328808341499 40.606356228035466, -74.11328607744902 40.60635920173678, -74.11328277971172 40.6063647675144, -74.11327996785333 40.60637048590186, -74.11327765128362 40.6063763316753, -74.11327710930885 40.60637793694048, -74.11323304859296 40.6065135477085, -74.11323178105563 40.60651789127651, -74.11323048565218 40.60652391794838, -74.11322989605608 40.60652809965493, -74.11318797543805 40.6069051293504, -74.11316148606858 40.60707394214843, -74.11307604245641 40.60704075283935, -74.11306660039143 40.60707764842597, -74.11255241644781 40.60803027086612, -74.11248099083635 40.60817695392101, -74.11248099562489 40.60817699083773, -74.11072969309932 40.60827450513184, -74.11075284560049 40.60825123404166, -74.11077211643428 40.60823073669429, -74.1107867365471 40.60821453121291, -74.11080805509675 40.60818978682368, -74.11082152875375 40.60817340323914, -74.11083274420524 40.60815904620462, -74.11084991466271 40.60813673991903, -74.11086572702658 40.60811488250034, -74.11088093394233 40.60809274560106, -74.11090047200368 40.60806245479422, -74.11091767788334 40.60803376105956, -74.11093995218245 40.60799618868363, -74.11096518412779 40.60794094069799, -74.11098209323552 40.60790079349681, -74.11099777403929 40.60785814312664, -74.11100756486593 40.60782771672944, -74.11101527017958 40.60780083770194, -74.11120237184016 40.60713773011399)), ((-74.19968842674967 40.531954987645385, -74.19998981162095 40.531919843958825, -74.200178385636 40.53190266459347, -74.20056716916763 40.531884354564156, -74.20162338753761 40.53190840371944, -74.20209278386638 40.5319272180587, -74.2023805711163 40.531891347290276, -74.202809101214 40.531801129715085, -74.2030242239125 40.5317478766673, -74.20491096721011 40.53121390883581, -74.20910808935221 40.530054938967226, -74.20877075749131 40.53018144794841, -74.2075282946762 40.5306285446125, -74.20620144270522 40.530995965396485, -74.2052058269258 40.53127694969463, -74.20462318350081 40.53147044195006, -74.20375220806704 40.53171556641666, -74.19958752321425 40.53287203947515, -74.19788623343794 40.5333495817338, -74.19675587409492 40.5336571192745, -74.19570378738403 40.53395086023317, -74.19511576330444 40.534129859779696, -74.19483117354486 40.534223025597996, -74.19425237884147 40.53442785025009, -74.19372854143175 40.534630823221555, -74.19334128900108 40.534790419491706, -74.19313286076206 40.53438198386843, -74.1931362982289 40.53435559796995, -74.19554707359326 40.53372342921286, -74.19575070558568 40.533654569893095, -74.19597760633758 40.53355675808455, -74.1961615631689 40.533450009407105, -74.19668251735713 40.53301490425496, -74.19698952766267 40.532739447026, -74.19731474900938 40.532553105624714, -74.19766365373509 40.532433373442544, -74.19832298917918 40.53225554518957, -74.19873389103114 40.53215595014725, -74.19878281246875 40.53214409192338, -74.19951344638777 40.531980027623106, -74.19968842674967 40.531954987645385)), ((-74.19432142066916 40.53480770290358, -74.19487774927663 40.53459600898796, -74.1951259059064 40.534507191506684, -74.19585341184377 40.53426514211397, -74.19655360055918 40.534055112680015, -74.2066803646004 40.531243110216984, -74.2089582587623 40.530755483061036, -74.20940379657928 40.53066233988526, -74.2094183668656 40.53066813073364, -74.20941833529196 40.53067538096073, -74.20898567093467 40.530797473519776, -74.20605649061028 40.53161154712019, -74.20316710075811 40.532397961503136, -74.20315921425534 40.53239328459822, -74.20316152395459 40.532399478859254, -74.20295181053578 40.53245655435111, -74.20116917146275 40.532988224551346, -74.20063934108727 40.53318494042702, -74.20016228897174 40.53340953410447, -74.19921582589625 40.53400252314347, -74.19864225695862 40.53437318264354, -74.19828121586853 40.534526162873114, -74.19638932865547 40.535068838238416, -74.19626280904998 40.535103497144654, -74.19622544985602 40.535093336387874, -74.19620653155964 40.535085948355295, -74.19619202628483 40.53507409515669, -74.19614867712909 40.534998794890086, -74.19612235958377 40.5349636561544, -74.19608553879347 40.534928985616396, -74.19599786600473 40.53486851166063, -74.19594121466683 40.53483728793566, -74.19588057376139 40.534810015309525, -74.19581718802118 40.534788546744174, -74.1957481070535 40.53477300433425, -74.19567608173348 40.53476366254525, -74.19560416946393 40.5347606782581, -74.1955259120435 40.53476741244218, -74.1953696550693 40.53479643235894, -74.19526431475924 40.53482505929747, -74.19487288588223 40.53495243067775, -74.1938638542389 40.53526660918316, -74.19364810983862 40.53532230901704, -74.19362863557218 40.53532134677667, -74.19361088861254 40.53531404549385, -74.19358109678515 40.535267261885785, -74.19351794176787 40.53514356624335, -74.19403382506255 40.53492391637476, -74.19432142066916 40.53480770290358)), ((-74.12921954458214 40.58611541260088, -74.12921914604402 40.58611333643974, -74.12920417021662 40.586041609398336, -74.12920340680117 40.58603837016983, -74.12920238777694 40.586034888087084, -74.12903666513999 40.58552115130534, -74.1290177823105 40.58544394262846, -74.12900215096856 40.585321295233705, -74.12900324140624 40.58526330923582, -74.12901132440217 40.58519062242821, -74.12904641828025 40.585011984689224, -74.12905345153449 40.58497618183962, -74.12906256329795 40.584929802695505, -74.12908846563646 40.5848284961031, -74.12911360402659 40.58472248332045, -74.129160798045 40.58453078604052, -74.12925113266654 40.58416385756117, -74.12929473621472 40.5840306641353, -74.1293155464847 40.58398213845867, -74.12932223473979 40.583966543749995, -74.1293548479036 40.583907438024326, -74.12943560928368 40.58380417306215, -74.12953466359399 40.58369938624505, -74.12969250941467 40.5835543497811, -74.13044750102794 40.58407363091345, -74.13120664338638 40.58458938758553, -74.13196990689906 40.58510160083852, -74.13273726433631 40.585610252611815, -74.13350868727875 40.58611532214496, -74.1332806271397 40.58603607780498, -74.13315257067667 40.58599741096787, -74.13288692752182 40.58593155876953, -74.13271372434019 40.58589197648581, -74.13271364517338 40.58589196306943, -74.13246908401914 40.58585665926081, -74.13246900249356 40.585856647648015, -74.1322601845321 40.58582967705854, -74.13226010183435 40.585829669949504, -74.13200184348399 40.58581321988572, -74.13200175961578 40.585813218181016, -74.13157775579549 40.585803183687915, -74.13157767193263 40.58580318468447, -74.13125626000999 40.58581192628037, -74.13125617615773 40.58581193267983, -74.13100075062817 40.5858394380347, -74.13100067032828 40.585839448932525, -74.13071505355595 40.585885833346225, -74.13043409483801 40.58594905337044, -74.13010725830914 40.58603737275408, -74.13007124642147 40.58604915546534, -74.13007121921711 40.586049136585125, -74.13007116255648 40.58604915556028, -74.13005359750511 40.58605490277898, -74.13005352673152 40.58605495328847, -74.12987587990885 40.586113076861835, -74.12962324870175 40.586207593022834, -74.12934319291531 40.586331455174374, -74.12911745344853 40.58645143649223, -74.12911749938144 40.586451367100246, -74.12915152618018 40.58640056359477, -74.12917412002678 40.58636867944309, -74.12917603283321 40.58636585144702, -74.12917777317004 40.586363016440544, -74.12920007480771 40.58632480642806, -74.12920124254553 40.58632273030668, -74.12920372157858 40.58631768368171, -74.1292051406192 40.58631423487849, -74.12922005999965 40.586274956135824, -74.12922068272874 40.586273246240104, -74.12922227782676 40.586267997090275, -74.12922341920948 40.58626267911034, -74.1292239272706 40.586259090849545, -74.12922857104918 40.586217825397995, -74.1292287447945 40.58621605026889, -74.12922881233291 40.586206392068306, -74.12922584231227 40.58616402483305, -74.12922575393273 40.58616291278477, -74.12922546412166 40.58616025566306, -74.1292199573297 40.58611811731217, -74.12921954458214 40.58611541260088)), ((-74.17094732410204 40.560054261758935, -74.17159069258786 40.559398968413284, -74.17158276275026 40.5594173339082, -74.17161593119465 40.55940239053015, -74.17166319614064 40.559395179614796, -74.17170733206254 40.559402637545425, -74.17175260875378 40.559420727180274, -74.17177199018555 40.559437166139276, -74.17177529001557 40.55945495562461, -74.17221315109732 40.559693288175346, -74.17279779146638 40.559108896244204, -74.17312663621966 40.55886564944696, -74.17316626223531 40.558839184443194, -74.17339776837784 40.55871142133444, -74.17350643352322 40.55863876746772, -74.17360165530101 40.55858311146244, -74.1736577152585 40.55856843276453, -74.17371697120136 40.55856776051205, -74.17376028634192 40.558577992519865, -74.1737963296813 40.558604190160516, -74.17381376674093 40.55863152089677, -74.17381909318257 40.55866156343707, -74.1737014960654 40.55910972853612, -74.17363738128253 40.55929542418415, -74.17360120621927 40.559387233605555, -74.17351456840441 40.5595661012025, -74.17346492130562 40.55965353635683, -74.17336549647253 40.5598055153903, -74.17322330147105 40.559988077720746, -74.17310988280411 40.56011233238456, -74.17274637362063 40.560470731236855, -74.17256082127302 40.56065717526985, -74.17191541710824 40.56130566723524, -74.17188620753564 40.56131948721726, -74.1718543653283 40.561329362319135, -74.1718207989522 40.56133501021511, -74.17178646559867 40.56133627007879, -74.17128190766726 40.561216945519725, -74.17129669031519 40.56120294278894, -74.17129069900015 40.561201969249, -74.17128888829446 40.56120127494131, -74.17105916980861 40.56116426883274, -74.17100105717039 40.56115490703558, -74.17039354270153 40.561057036487405, -74.16994571366024 40.56098488966105, -74.16994864403783 40.560713716770394, -74.1699394990987 40.56054846104219, -74.16984961681909 40.56031991861179, -74.17068872726763 40.56018347038888, -74.17094732410204 40.560054261758935)), ((-74.19724982424142 40.5318388187099, -74.19707400233054 40.531523415573986, -74.19635187358735 40.53022797889055, -74.19619909402869 40.52995389902367, -74.1968083763001 40.52966300792467, -74.19710053880378 40.529523517075035, -74.19725040762584 40.529773363890705, -74.19738083939282 40.5299908032328, -74.19747225634683 40.529945343056205, -74.19756208449127 40.530095091642316, -74.19763694257065 40.53021988252429, -74.19769682805413 40.530319714835706, -74.1977567137165 40.5304195471151, -74.19781659955777 40.53051937936248, -74.19787648675819 40.530619211575846, -74.19793637413746 40.53071904375721, -74.19799626051275 40.53081887500804, -74.19811603499096 40.531018541013765, -74.19823580899919 40.5312182050925, -74.19838552928611 40.53146778500776, -74.19841110172563 40.53151041332894, -74.19842541033694 40.53150544649074, -74.19848967133257 40.53161256601346, -74.19854955933758 40.53171239786935, -74.19866933706724 40.53191206238356, -74.19873317658272 40.532018477382366, -74.19754668291792 40.5323588866239, -74.19724982424142 40.5318388187099)), ((-74.17986291297184 40.54876725402672, -74.17987235357782 40.54876587043667, -74.17987670837582 40.54877412146019, -74.17974889424876 40.54899469888687, -74.17902081208655 40.550347564246195, -74.17873726529227 40.550893925005724, -74.1763192686545 40.55543269460085, -74.17620788170963 40.555632791719894, -74.17618864092883 40.555661178857626, -74.17616926121642 40.555663748074984, -74.17617593738936 40.555702074200035, -74.17539015205455 40.55710828917727, -74.17510563582445 40.55755435119614, -74.17480369700625 40.55800904084504, -74.17463030209078 40.55825695779368, -74.17400317942162 40.55910388672456, -74.17382759585304 40.55932696829876, -74.17381759395946 40.559338333683414, -74.17380984869327 40.55933618323845, -74.17391034424858 40.559162105949035, -74.17457512941714 40.557951756538436, -74.17481559545313 40.557594989887626, -74.17504059737597 40.557242126661635, -74.17526466769056 40.55687709827414, -74.17549480786032 40.556481982535765, -74.17559697599128 40.55629486782216, -74.17568352244626 40.5561119283442, -74.1758767824539 40.55566681688633, -74.1759162588987 40.5555792971717, -74.17637507224794 40.554755015789326, -74.17856160972968 40.5506431490269, -74.17925201651721 40.549589536058015, -74.17942222044796 40.549353313837386, -74.17973997077634 40.54892940654094, -74.17986291297184 40.54876725402672)), ((-74.17911979972362 40.54820872817622, -74.17913920560517 40.54818330210471, -74.17913759387834 40.548189794726866, -74.17912553438966 40.548248670270965, -74.17896273368991 40.5486680723146, -74.17870932224842 40.54938875361091, -74.17861868520154 40.54962099677694, -74.17811116299079 40.55056839328849, -74.17750186342148 40.55171723085153, -74.17739843419393 40.5519316352985, -74.17723610701672 40.55229400626682, -74.17617503753738 40.55429470284035, -74.17612695969052 40.55442374117431, -74.1758079655863 40.555021766160074, -74.17579888098898 40.555033180748225, -74.17578632105177 40.55503850408215, -74.175699125986 40.55518966502434, -74.17531983556177 40.555907623059774, -74.17527864074532 40.55597462216192, -74.17489063020216 40.556535585033124, -74.17470965784422 40.55678469426928, -74.17463217506483 40.55687711619169, -74.17454314039259 40.5569632699348, -74.17440907598734 40.55706824998834, -74.17425993736079 40.55716103259748, -74.17351193703128 40.55752090825744, -74.17450602939589 40.556539833404734, -74.17472043523794 40.55630706953325, -74.1748867140587 40.556110754466296, -74.17501987204295 40.55592444046366, -74.17569545048096 40.554661168002426, -74.17595053382041 40.55421156718593, -74.17620422931118 40.553703942395884, -74.17735677710036 40.5515514579723, -74.17848769287696 40.549412778590984, -74.17847269857666 40.549406110970445, -74.17905832175026 40.54830717976069, -74.17911979972362 40.54820872817622)), ((-74.21094126039172 40.52983621083194, -74.21094565987077 40.52983498252941, -74.21095788995731 40.52994852864612, -74.21057496805528 40.530059269263745, -74.21014476936162 40.530173857566, -74.20449719217045 40.531744739182095, -74.20373508793404 40.53194957252639, -74.20205512572538 40.532421447490165, -74.19732842663693 40.53373347412212, -74.19610084837412 40.53408059743522, -74.19574531291538 40.53418974500825, -74.19527486082409 40.534342366449486, -74.19493480839081 40.53445973402233, -74.19429481257549 40.53470068396433, -74.19390244338125 40.53485785935692, -74.19346883306281 40.53504410716471, -74.19339429289862 40.53489538510739, -74.19409753490241 40.53461008216426, -74.1946474150056 40.534409449760865, -74.19493239111512 40.53431079951932, -74.1952502619014 40.53420844548546, -74.19608116315705 40.533956529051665, -74.19823164190221 40.53335841440696, -74.19929612605436 40.53305723536414, -74.20035350792331 40.53276808089722, -74.20248960914633 40.53217106407655, -74.20415101312052 40.53171379621458, -74.2044811026546 40.531613809149135, -74.20711248252785 40.53087993379483, -74.20954103317888 40.53020655441579, -74.20970570409985 40.53016565782786, -74.21024328906775 40.53001707945697, -74.21094126039172 40.52983621083194)), ((-74.1802357055918 40.54730153684654, -74.18069926120543 40.546762933481546, -74.18083397831445 40.54683016108952, -74.18031134189738 40.54744616004288, -74.1800485313287 40.547777777757915, -74.17981041997893 40.548120081479105, -74.17960715640399 40.54844511209256, -74.17947025563883 40.548689072136355, -74.17843680527716 40.550632086415426, -74.17799483057732 40.5514521223251, -74.17718693348527 40.55298799299086, -74.17708174584008 40.553177058981944, -74.1755702378653 40.556017879368596, -74.17535506020879 40.55640899210008, -74.17507655894346 40.55688530982587, -74.17470236476687 40.557481407540884, -74.17448888439594 40.55780281517303, -74.17416947097145 40.55825723521151, -74.17412535387778 40.558303026389126, -74.17406440842082 40.55835348887652, -74.17399664089042 40.55839404235646, -74.17406569804601 40.55822897458797, -74.17414743422238 40.558073329581646, -74.1742856381483 40.5578524456721, -74.17455711776653 40.55744154590767, -74.17479030508851 40.557076054335944, -74.17517075383721 40.556439441035835, -74.17540275424122 40.55602470913532, -74.17559557766218 40.55565949363651, -74.17567235934948 40.55548512680051, -74.17584428409491 40.55515563164434, -74.17631432965007 40.55428140891033, -74.17721072160464 40.55258465483291, -74.17757416030474 40.55190813909447, -74.17780475794058 40.551464906193964, -74.17829005200137 40.55056806796814, -74.17922316399276 40.54881498268185, -74.17943327721842 40.54843263243619, -74.1796496246134 40.548082276816096, -74.17979897439966 40.54786329572033, -74.1799566551368 40.54764775039343, -74.18009307793392 40.54747318521345, -74.1802357055918 40.54730153684654)), ((-74.17473445384161 40.55684853097046, -74.17486047467784 40.5566930972123, -74.17486597917589 40.556694061401274, -74.17486776162193 40.556698426246335, -74.17466781309518 40.557037085752654, -74.17411702208051 40.557897727799336, -74.17402415315703 40.5580719495276, -74.17396301198102 40.55820998315499, -74.1739206749526 40.558268799489, -74.17386832687085 40.55832272578947, -74.17380692272218 40.55837077902268, -74.17373758307234 40.55841207946474, -74.17355725715444 40.558490947440774, -74.17341998208666 40.558562563926984, -74.17319826958564 40.558719105778856, -74.17265004376593 40.55913121377825, -74.17223011158619 40.559536353957014, -74.17221312062676 40.55954771437264, -74.17218478722648 40.55955528346033, -74.17215492059616 40.559552984158884, -74.17195440225795 40.55943348468692, -74.17190412305725 40.5593907335725, -74.17186315766327 40.55934253651844, -74.17178951758719 40.55921517253619, -74.17251402987905 40.558514690154176, -74.17329527314293 40.55773018208287, -74.17342993131595 40.55763215721753, -74.17356870957384 40.55754998155485, -74.17397311301627 40.55735621552742, -74.17421860469962 40.55724379075117, -74.17431964785573 40.55718934462363, -74.1744030119062 40.55713787898493, -74.17454225544898 40.55703579977259, -74.1746655924427 40.55692381176262, -74.17473445384161 40.55684853097046)), ((-74.19293009309065 40.534404414776844, -74.19295090921464 40.5344111517779, -74.19296579476325 40.53442414841893, -74.19318121495527 40.53485898511218, -74.19275043269414 40.53505208928148, -74.1924215758134 40.535207225821054, -74.19208936563984 40.535370678912535, -74.1917679316858 40.53553881380344, -74.19145177575416 40.53571234216558, -74.19114667545622 40.53588507679112, -74.19084393029559 40.536064704742095, -74.19054050029958 40.5362530951778, -74.18990990632625 40.536682368725856, -74.1898924442918 40.536693077886895, -74.18987871905694 40.53669377598352, -74.19018123403161 40.53638986890774, -74.19040216290144 40.53610260305726, -74.19078471356252 40.53554779115726, -74.1908955863442 40.535413680112704, -74.1910449828203 40.53526395451811, -74.1915115286823 40.5349139671833, -74.19186225198035 40.534725396966074, -74.19206930234957 40.53464028392056, -74.192295829534 40.53456426024524, -74.19285484588207 40.53441821484205, -74.19290919174738 40.53440495419474, -74.19293009309065 40.534404414776844)), ((-74.19320797750287 40.53497225822356, -74.1932331161838 40.53496188414023, -74.19331079467746 40.535114346319546, -74.19318955650095 40.53516822195224, -74.19263533032475 40.535433071399716, -74.1923281801216 40.53558512745146, -74.19202629045071 40.53574461225309, -74.19145446529073 40.53606201329191, -74.19085761157216 40.53642064329206, -74.19020544481911 40.53684690152243, -74.18990875754186 40.53705484760157, -74.18939435689367 40.537434225809555, -74.18889378725423 40.537831427429296, -74.18848617927296 40.53817940443274, -74.18828656519055 40.538358018737824, -74.18792531944996 40.538694796151326, -74.187494354489 40.539127286463895, -74.18714786436145 40.53950101302867, -74.18695396413779 40.53972058074334, -74.1854962792551 40.54141449873, -74.18534108712775 40.541600536572844, -74.18524786509255 40.541509852453174, -74.18618590877915 40.540422242282794, -74.18636609447583 40.54020584999773, -74.1869340140389 40.53955119667651, -74.18732504051948 40.539105688969215, -74.18753220278288 40.53888110101489, -74.18791969560353 40.53848301888791, -74.188328004517 40.538097247547796, -74.18867830622273 40.5377824507379, -74.18907912698894 40.53744810922241, -74.18931327564562 40.5372621152775, -74.1897525164638 40.536934227864066, -74.19023986797566 40.53659561479014, -74.1905106705041 40.53641763539037, -74.19078754791965 40.53624297721146, -74.19103547643579 40.53609096982161, -74.19128411984657 40.53594582273648, -74.19189988493363 40.53560688948987, -74.19246055045052 40.53531825882841, -74.19273190598938 40.535188541612506, -74.19320797750287 40.53497225822356)), ((-74.19124736530841 40.53667193586051, -74.1912733347954 40.53666448124237, -74.1912804621387 40.53666796342269, -74.19069049642178 40.536973233687924, -74.19045398687358 40.53710775110386, -74.19021888234 40.53724689442298, -74.18980007469864 40.53751701689938, -74.18960323221683 40.5376554743266, -74.18922847531869 40.537935742956456, -74.18891315192629 40.53819049063636, -74.18870531480155 40.53837683673646, -74.18856488001492 40.538508013421065, -74.18818764154054 40.53887729460682, -74.18774048108332 40.539390424151826, -74.18564646841264 40.541824356896285, -74.18561163286358 40.54183660637558, -74.18559136000775 40.541834784055276, -74.1855733971137 40.541827392729175, -74.18541509902434 40.541672820512254, -74.18558436857175 40.54148077940526, -74.18573535305389 40.54131862916521, -74.18634454474092 40.540622208572564, -74.18708405499996 40.539758884481145, -74.18742124323938 40.539380157355914, -74.18760259112973 40.539189147122364, -74.18798668963105 40.538800796042935, -74.18817281699522 40.538623140923406, -74.18855393655258 40.53827319136901, -74.18888524022128 40.53798548603516, -74.18906350921873 40.537843827532136, -74.18951149966503 40.53754029498043, -74.19004728265374 40.53720048614259, -74.19029415348649 40.537064844743774, -74.19043194194566 40.536997220668695, -74.19056997303058 40.53693613386836, -74.19124736530841 40.53667193586051)), ((-74.11513316735113 40.60211272926245, -74.11673076269992 40.601958552012405, -74.11672854206243 40.602042661305155, -74.11672676182478 40.60205902651472, -74.1167267164713 40.60205944080131, -74.11672427388753 40.60207674863045, -74.11672142161032 40.60209016301466, -74.11671873071866 40.602101277299404, -74.11671531671873 40.60211236890484, -74.11671144702319 40.60212501707651, -74.11671068101215 40.6021274861876, -74.1167078903717 40.60213628622956, -74.11670138250021 40.60215573962971, -74.11669187357903 40.60218190947464, -74.11668447618013 40.60220076673025, -74.11667442810142 40.60222468671437, -74.11666668769864 40.602241983710805, -74.11666118013059 40.60225377444441, -74.11665516631012 40.602267264978224, -74.11664662880791 40.60228547501201, -74.11663644044333 40.60230417750548, -74.11662579650735 40.60232383591507, -74.11661138418081 40.6023485500805, -74.11659921402749 40.60236904482078, -74.11650526771292 40.602509013807136, -74.11630502022973 40.60255972785521, -74.11549502471348 40.60378324300493, -74.11544177358125 40.60389236691598, -74.11539131185802 40.60388392205993, -74.11523721588786 40.60249198643917, -74.11501670241056 40.60215167912434, -74.11507991590878 40.60211842347219, -74.1151278697113 40.602112804810226, -74.11513316735113 40.60211272926245)), ((-74.19300471075218 40.53537710449734, -74.1933593121203 40.53521470879135, -74.19365054364712 40.535786289275116, -74.19365094127939 40.53580538883669, -74.19363676416151 40.53582114499956, -74.19309508868572 40.53597422876774, -74.19288070860853 40.536039895520084, -74.19234166070696 40.536225426394566, -74.19204121317374 40.53633736084927, -74.19177756025243 40.536418101757185, -74.1915290993204 40.53650772295271, -74.19054430561404 40.536892284664425, -74.19036052388147 40.53697373622495, -74.19024403418018 40.537030869778626, -74.19008166983494 40.53711887727598, -74.18982899583187 40.53726864811184, -74.18979880999821 40.53727950436813, -74.18979974846047 40.53726914672887, -74.19006253258269 40.537080114150555, -74.19048166454182 40.536792591934535, -74.19094091074234 40.5365045782221, -74.1912639793548 40.53630725678693, -74.19154410746636 40.536143361695494, -74.19210096509786 40.535833675779124, -74.19239449157622 40.535680022218344, -74.19300471075218 40.53537710449734)), ((-74.19061664528515 40.53565805198574, -74.19062122270894 40.5356572879412, -74.19062367278347 40.53566382171763, -74.19058955326143 40.53571876563523, -74.19026753595455 40.53618141544649, -74.19015394340113 40.53632709317501, -74.18989398313529 40.53661155041271, -74.1897827072445 40.53671733948686, -74.18966103327608 40.53681515793284, -74.18923878857424 40.53712599698272, -74.18880479935196 40.53747578366287, -74.1885744732891 40.53767029829862, -74.1883717637937 40.537847260871835, -74.188006018261 40.538181965717904, -74.1878478898381 40.538334450003454, -74.18775350449732 40.538433869725345, -74.18742122998746 40.53881985711569, -74.18695839447783 40.53933801973825, -74.18637660773784 40.54000971570498, -74.18546642445264 40.54106919408473, -74.18529973524612 40.54128906621247, -74.18517058960398 40.54143497113997, -74.18504084466008 40.541309223314066, -74.18503279332806 40.54129396331724, -74.18595634552392 40.54022363609583, -74.18713943388741 40.53888719725988, -74.18794133375806 40.53812618026757, -74.1889854578473 40.53716775664861, -74.19061664528515 40.53565805198574)), ((-74.185292879742 40.54181622622564, -74.18531214759248 40.54179362067105, -74.18549098246116 40.54196469446623, -74.18549764046523 40.541981433548806, -74.18549239639069 40.54199736247182, -74.18276165053406 40.54517218894204, -74.18229703508635 40.54570334785302, -74.18228854579844 40.54570276698094, -74.18228553636862 40.545698737390126, -74.18230865914717 40.54565870820606, -74.18281032748051 40.54479977797207, -74.18292711002776 40.54463407661759, -74.18299272681523 40.54455406185185, -74.18320591690699 40.544316428086994, -74.18333548032554 40.54414236791962, -74.18346341393803 40.54398933935414, -74.18348392392073 40.54396896633953, -74.18353495975768 40.54393457282992, -74.18435011172578 40.542989710940205, -74.18455458469096 40.54273995489453, -74.18475266294628 40.5424714228333, -74.18501040177613 40.54216576726104, -74.18519310605112 40.541931665701966, -74.185292879742 40.54181622622564)), ((-74.17000534598142 40.56277988427844, -74.1700078993111 40.56265014696785, -74.17000514779062 40.56265235372971, -74.17000966706891 40.562495684145894, -74.17001096075253 40.56249457728428, -74.17001367414645 40.56235675570165, -74.17037475546087 40.562044076349906, -74.17072997512575 40.561727516086556, -74.17107926248516 40.56140714080934, -74.17156250217096 40.56153267752106, -74.17167551408876 40.56159683511701, -74.17069299175442 40.56250325990714, -74.17003171937611 40.56304219578558, -74.17002620683864 40.56300531025351, -74.17001584516471 40.56296949812287, -74.17000280313925 40.5629244190325, -74.17000297551799 40.56290028375186, -74.17000382561828 40.5627810058839, -74.17000534598142 40.56277988427844)), ((-74.18512904556869 40.54164822485576, -74.1851424754996 40.54163258352689, -74.1852368939913 40.54172308209322, -74.18503452961657 40.54196495545678, -74.18376624707903 40.543438983223346, -74.18277935913379 40.54457411245523, -74.18219065757036 40.545265946223175, -74.18184766493296 40.545654771737205, -74.18146646684903 40.54610072128467, -74.18099680584557 40.54663105525562, -74.180953089026 40.546689319007626, -74.18081839782654 40.54662157189314, -74.18091599095165 40.54650156413522, -74.18277239858358 40.544357694967275, -74.18301856598585 40.54406440320252, -74.18313667255009 40.54393968257561, -74.18342483465221 40.54359727383833, -74.18418599735743 40.54272323045529, -74.18439869261933 40.54246948745807, -74.18477034152882 40.54204594130311, -74.18512904556869 40.54164822485576)), ((-74.18490144698309 40.541438652171124, -74.18491800501516 40.541434954949956, -74.18494613280973 40.541442545232634, -74.18506542164891 40.541556757131374, -74.18495312925113 40.541692954859315, -74.18472257593254 40.54192644592472, -74.1831323654238 40.54377569865487, -74.18298755477112 40.543929693902165, -74.18287486647435 40.54404112474841, -74.18149696152301 40.545395373696444, -74.18148985577147 40.54539651869301, -74.1848894268884 40.54145189309324, -74.18490144698309 40.541438652171124)), ((-74.18090799634005 40.54689608836297, -74.18092490795486 40.54687634014483, -74.18114378432583 40.54698461682855, -74.18115698710163 40.54700375924701, -74.18115270957725 40.54702402788608, -74.18074177579345 40.54751923484252, -74.18048231886901 40.54786232280572, -74.1802052517967 40.54824704852006, -74.18001256404783 40.54847575264669, -74.17937695606506 40.54931297784676, -74.17908133919086 40.549728861919625, -74.17900691920538 40.54983111586216, -74.17900257411102 40.54983087949257, -74.17899996173985 40.549825228247265, -74.17907099524065 40.54968837228957, -74.17955092069516 40.54878526654981, -74.17970272221534 40.54850710804391, -74.17984060202505 40.548280850571764, -74.17997699948415 40.54807437085508, -74.1802328565273 40.5477202149966, -74.18081057137398 40.5470056019861, -74.18090799634005 40.54689608836297)), ((-74.21650614595413 40.5282777802184, -74.21651457776305 40.52827541483165, -74.21656556724596 40.52837952355634, -74.21500881955508 40.52881835518715, -74.21290655165072 40.52940370438219, -74.2121582831957 40.52961817047048, -74.21138332120543 40.52983353182402, -74.21114270850987 40.52989736024192, -74.21113162997634 40.529783059182634, -74.21130245223802 40.52973536529063, -74.2112975219296 40.52971837955518, -74.21216600123014 40.52947709981893, -74.21254041630577 40.529367877116165, -74.21313648098283 40.52920950608459, -74.2149558931402 40.528702510989135, -74.21650614595413 40.5282777802184)), ((-74.21118173864262 40.530182191052475, -74.21117060945573 40.53018525261541, -74.21115199011595 40.52999313889295, -74.21137740069209 40.52992925469902, -74.21167547856132 40.52985193256243, -74.21292749256656 40.52950652053274, -74.21307915454103 40.529460276062686, -74.21437962130923 40.529096904298115, -74.21507171839905 40.528908407492985, -74.21508033698345 40.5289130650999, -74.2151107056698 40.528908295723234, -74.21483397890431 40.52900995790466, -74.21458919045699 40.52909162467643, -74.21365795099564 40.52945466434622, -74.21363238711523 40.52946071575735, -74.21309815609403 40.5296454619006, -74.2128138107958 40.52973115252333, -74.21120461254931 40.53017589839182, -74.21118304665858 40.530171092310994, -74.21118173864262 40.530182191052475)), ((-74.21411334844609 40.52871459470044, -74.21485443361493 40.528611107955726, -74.21485624739148 40.52862463953576, -74.21177643939996 40.52947979667702, -74.21112051486011 40.52966837366215, -74.21110253746701 40.52948286863739, -74.21119615472423 40.52945601463505, -74.21347839025066 40.528824942216254, -74.21372419662333 40.52877841101663, -74.21411334844609 40.52871459470044)), ((-74.18040563032902 40.54664177699105, -74.18043439854797 40.54663278954311, -74.18045147886886 40.54663658094431, -74.18061199282761 40.54671988773142, -74.18049731292581 40.54685328412816, -74.18023802003151 40.547126704619906, -74.18009763998862 40.547291172256024, -74.1798728411985 40.54757434455866, -74.17960260640366 40.54794696492658, -74.17938587731258 40.54828699199832, -74.17929206529142 40.548447216425956, -74.1787616265374 40.54943549967181, -74.17875236559418 40.54943789148225, -74.17915082619187 40.54833896641735, -74.17920737033874 40.548202556207634, -74.17930342811012 40.548012171444995, -74.17941313959795 40.54782454249626, -74.17941398853846 40.547823276828005, -74.17942307376899 40.547811373857165, -74.17949039682799 40.547709454906744, -74.17956136855679 40.54762111197987, -74.18040563032902 40.54664177699105)), ((-74.1820179273729 40.54562779500089, -74.18274239633682 40.54479167057762, -74.18275148779853 40.54479277276427, -74.18275360569723 40.54479972777873, -74.18260187191294 40.54503706125872, -74.18209756025536 40.54589451968434, -74.18199585817686 40.54604605707192, -74.18187303534332 40.546198013246894, -74.18131413891892 40.54683928183681, -74.18129250582578 40.54685005029228, -74.18126696337484 40.54684707384464, -74.18104546023353 40.54673560105803, -74.18119610982507 40.54655514067, -74.18134058819321 40.54641341705591, -74.18143949825661 40.546305856576495, -74.1820179273729 40.54562779500089)), ((-74.21029962075463 40.530234706511436, -74.21096830240103 40.53004519855933, -74.21098877601095 40.53023528000708, -74.21098689166159 40.53023579767306, -74.2109854272163 40.530225766655015, -74.21097301494534 40.530239616209066, -74.21042974554481 40.530389965348405, -74.2098505175237 40.530517889602336, -74.2084399726341 40.53081900309101, -74.20827873748341 40.53085161575071, -74.20789286298358 40.530916216788, -74.2078859838787 40.53091294230938, -74.20788972951034 40.530906739878674, -74.21029962075463 40.530234706511436)), ((-74.20974926006251 40.52988026502558, -74.2109135717512 40.52953707128262, -74.21093325960462 40.52971985449123, -74.21062995345689 40.529801017851426, -74.20777524401119 40.53059277103871, -74.20776913655315 40.53058827493802, -74.20777402039782 40.53057881233245, -74.20826754974797 40.53041213134412, -74.20968844187419 40.529902186972784, -74.20974926006251 40.52988026502558)), ((-74.182431338891 40.54456604603626, -74.18244026200395 40.5445655996056, -74.18244237072174 40.54457266540545, -74.18234344598513 40.544688891680785, -74.18102825843934 40.546212892981494, -74.18083808760447 40.546455434800116, -74.18073392147566 40.546578973904154, -74.18057481622978 40.54650054233404, -74.18056220683617 40.546486829102136, -74.18056058572557 40.54646793856293, -74.18057517707825 40.54644623089183, -74.181012431855 40.54594369501388, -74.1814714039668 40.545503999829236, -74.18227874505422 40.544706419635915, -74.182431338891 40.54456604603626)), ((-74.21630943085786 40.528597529636436, -74.2166270295075 40.52850501360673, -74.2166981496639 40.52865022142268, -74.21405292467182 40.529385890796256, -74.21404785710023 40.52936236938268, -74.21539606283851 40.528854768950396, -74.21598345541223 40.52868306702481, -74.21630943085786 40.528597529636436)), ((-74.21489919043587 40.52854265590009, -74.21402980962107 40.52867245796105, -74.21638943863904 40.52801990997972, -74.21645162256864 40.528146876536674, -74.21522628591656 40.52848623724753, -74.21489919043587 40.52854265590009)), ((-74.17884942906704 40.54841226375446, -74.1788661552571 40.548394761149495, -74.17886967578083 40.548409818803364, -74.17846539928654 40.549178058128874, -74.17836545146695 40.54935841722383, -74.17812803389073 40.54923649760552, -74.17884942906704 40.54841226375446)), ((-74.17402449270716 40.55845569709711, -74.17416239398526 40.5583637441256, -74.17415997217921 40.55848461389521, -74.17405843879892 40.55869250329202, -74.17395332765875 40.5588856023474, -74.1735728772637 40.5596163904005, -74.17353720162647 40.55965692571705, -74.17361022158315 40.559526009260104, -74.17369093493322 40.55935741656198, -74.17383785678922 40.55891872747852, -74.17396191904082 40.55848810191769, -74.17402449270716 40.55845569709711)), ((-74.22003643098436 40.526033602822636, -74.2202280399303 40.526019653585635, -74.22003388678803 40.526164515172475, -74.22003643098436 40.526033602822636)), ((-74.17382243293069 40.55841222664115, -74.17389439065738 40.55836385754571, -74.17390220300501 40.5583668732903, -74.17390508474433 40.558375347393145, -74.17388245863157 40.55843744150198, -74.17377222946372 40.55846321843416, -74.17376051283541 40.558453523972226, -74.17376523167296 40.55844335618148, -74.17382243293069 40.55841222664115)), ((-74.17375906450145 40.558511787589154, -74.1738462309229 40.55849464471811, -74.1738552597883 40.558497802708885, -74.17385954306195 40.55850719503027, -74.17384392494428 40.5585626911635, -74.17383465625068 40.558569464551745, -74.17378890425634 40.55854567161412, -74.17375495823131 40.55853367571838, -74.17374922889046 40.55852712044127, -74.17374961930385 40.5585192474395, -74.17375906450145 40.558511787589154)), ((-74.17174320708858 40.559363960287655, -74.17173306185153 40.55936930928125, -74.1716710017327 40.5593587983496, -74.17163144083491 40.55935994441101, -74.17169049249124 40.55930339038438, -74.17170061974427 40.55930896391784, -74.17174320708858 40.559363960287655)), ((-74.19304486964725 40.534375212183136, -74.19293009309065 40.534404414776844, -74.1929280557581 40.53440027216186, -74.19304486964725 40.534375212183136)))",R065,69248,R065,R-02,R-02,R-02,R-02,Staten Island Exwy. To West Shore Exwy.,"502, 503","50,51",122,"10301, 10304, 10306, 10309, 10312, 10314",R,350.983,False,Richmond Parkway,No,100004740,PARK,,19480922000000.00000,,DPR,True,Richmond Parkway,N,Richmond Parkway,Large Park,Parkway,http://www.nycgovparks.org/parks/R065/,No,"62, 63",24,11,{6E2ABB44-3CCF-4BF8-A629-6170B3756D85} +"MULTIPOLYGON (((-73.88323029594491 40.80982262776275, -73.88323035520648 40.8098226260218, -73.88323041446172 40.80982262788278, -73.88323047252707 40.80982263244411, -73.88323053177285 40.80982263970808, -73.88323058864351 40.809822649671204, -73.8832306455095 40.809822662335776, -73.88323070118396 40.80982267860112, -73.88323075448332 40.80982269756556, -73.88323080659437 40.80982271832982, -73.88323085633037 40.80982274179316, -73.88323090487644 40.80982276795679, -73.88323094986231 40.80982279681829, -73.88323099365981 40.809822827479636, -73.88323103389705 40.80982286083882, -73.88323107176242 40.809822895096104, -73.88323110606748 40.80982293205128, -73.88323113681551 40.80982296990338, -73.88323116400487 40.80982300955285, -73.8832311888223 40.80982305010043, -73.88323121008109 40.80982309244539, -73.8832312265976 40.809823135686045, -73.88323123956334 40.80982317622163, -73.88341057977317 40.81049554473257, -73.88341058917413 40.81049559066747, -73.88341059502272 40.81049563479783, -73.88341059731422 40.81049567982507, -73.88341059486498 40.81049572484751, -73.8834105888618 40.81049576896583, -73.88341057930151 40.810495813981085, -73.88341056618877 40.81049585719178, -73.88341054952055 40.81049590039884, -73.88341052811319 40.81049594270062, -73.88341050315337 40.810495983197825, -73.88341047582483 40.81049602279211, -73.88341044494393 40.8104960605818, -73.88341041050903 40.81049609746743, -73.88341037252329 40.81049613164795, -73.88341033216882 40.81049616492558, -73.88341028826352 40.81049619549812, -73.88341024317623 40.810496224268476, -73.88341019453804 40.81049625033377, -73.8834101447195 40.81049627369635, -73.88341009253531 40.81049629435501, -73.88341003916905 40.81049631321153, -73.88340998343719 40.810496329364135, -73.88340992652648 40.81049634191355, -73.88340987199084 40.8104963517639, -73.88207393912953 40.81070048407257, -73.88207387867241 40.81070049121474, -73.88207382059042 40.81070049565782, -73.88207376132804 40.81070049739818, -73.88207370207205 40.81070049553658, -73.882073644006 40.81070049097471, -73.88207358475958 40.8107004837101, -73.88207352788834 40.81070047374646, -73.88207347102188 40.810700461081325, -73.88207341534692 40.81070044481541, -73.88207336204718 40.8107004258504, -73.8820733099358 40.810700405085626, -73.88207326019955 40.81070038162182, -73.8820732116533 40.810700355457705, -73.88207316666735 40.810700326595715, -73.8820731228698 40.810700295933984, -73.8820730826326 40.8107002625744, -73.88207305186728 40.81070023462748, -73.88144759171902 40.810093216395714, -73.8814475538657 40.810093175834375, -73.88144752311857 40.81009313798181, -73.88144749593016 40.81009309833193, -73.88144747111373 40.810093057784, -73.88144744985597 40.81009301543871, -73.88144743334054 40.81009297219777, -73.88144742038065 40.810092928960536, -73.88144741097943 40.81009288392593, -73.88144740513219 40.81009283979548, -73.88144740284203 40.8100927947682, -73.88144740529259 40.81009274974579, -73.88144741129702 40.81009270562752, -73.88144742085865 40.81009266061243, -73.88144743397253 40.81009261740201, -73.88144745064193 40.81009257419523, -73.88144747205045 40.810092531893815, -73.88144749701125 40.810092491397036, -73.8814475243408 40.81009245180321, -73.88144755522268 40.810092414014, -73.88144758965842 40.81009237712898, -73.88144762764493 40.81009234294912, -73.88144766800013 40.81009230967218, -73.88144771190606 40.81009227910034, -73.88144775699399 40.81009225033079, -73.88144780563259 40.81009222426632, -73.88144785545157 40.81009220090458, -73.88144790763606 40.81009218024678, -73.8814479610025 40.81009216139119, -73.88144801673448 40.81009214523954, -73.88144807364527 40.81009213269109, -73.88144812936604 40.810092122842896, -73.88323017740755 40.80982263934918, -73.88323023786381 40.80982263220644, -73.88323029594491 40.80982262776275)))",X015,6239,X015,X-02,X-02,X-02,X-02,Oak Pt. Ave. bet. Hunts Pt. Ave. and Longfellow Ave.,202,17,41,10474,X,2.49,False,Joseph Rodman Drake Park,Yes,100003884,PARK,20100106000000.00000,19090309000000.00000,,DPR,True,Joseph Rodman Drake Park,Y,Joseph Rodman Drake Park,Neighborhood Park,Cemetery,http://www.nycgovparks.org/parks/X015/,No,84,34,15,{878E37E7-8EBC-4F22-807E-EE8054036A5C} +"MULTIPOLYGON (((-73.9051856187144 40.828912146431584, -73.90626014110309 40.827976444702074, -73.90634323320991 40.82799434202688, -73.90586549427628 40.828399402066474, -73.90546271229879 40.82900503129447, -73.9051856187144 40.828912146431584)))",X026,5631,X026,X-03,X-03,X-03,X-03,Fulton Av to Franklin Av bet. E 167 St and E 166 St,203,16,42,10456,X,0.383,False,Hines Park,Yes,100005056,ZONE,20100106000000.00000,18641108000000.00000,,DPR,True,Hines Park,Y,Hines Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X026/,No,79,32,15,{1F91B2D9-8B3A-4EF7-AA39-F7B92C023CB4} +"MULTIPOLYGON (((-73.91954923285431 40.624437306551876, -73.91962670025623 40.624432362847536, -73.91980890426932 40.626201163338045, -73.91909817217999 40.626242597229165, -73.91891196105605 40.62447797930003, -73.91898016900143 40.624473625644555, -73.91904618792859 40.624469412689464, -73.91911858475565 40.62446479264581, -73.91918978069283 40.624460248256675, -73.91926397763933 40.62445551321967, -73.91933337341771 40.62445108364459, -73.91940653612104 40.62444641442838, -73.91947696610309 40.62444191885311, -73.91954923285431 40.624437306551876)))",B324,5180,B324,B-18,B-18,B-18,B-18,Ave. K between E. 58 St. and E. 59 St.,318,46,63,11234,B,2.984,False,Jacob Joffe Fields,Yes,100004147,PARK,20100106000000.00000,19610824000000.00000,1163 EAST 58 STREET,DPR,True,Jacob Joffe Fields,Y,Jacob Joffe Fields,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B324/,No,59,21,8,{15373BE7-0EF4-4B2F-96BC-B4DEF766450E} +"MULTIPOLYGON (((-73.92725629404693 40.68056974193114, -73.92714250827406 40.680008316139485, -73.92759947091884 40.67995566242371, -73.92831562852702 40.67987313920265, -73.92847929153237 40.67985427981251, -73.9284683843964 40.67988734983615, -73.92845440698835 40.679929927384286, -73.92844213070099 40.679970129530275, -73.92843164735241 40.680008375071175, -73.928422866784 40.68004711515222, -73.92841585317568 40.68008606795268, -73.92841061841224 40.680125183951894, -73.92840717556054 40.68016441453054, -73.9284055258607 40.68020370926063, -73.92840566698298 40.68024303752333, -73.92840761438714 40.68028232548606, -73.92841133972625 40.680321537110515, -73.92841685960512 40.680360633684714, -73.9284241551841 40.680399537752386, -73.92843215952011 40.680433837929115, -73.92842564109773 40.68043459120733, -73.9277095246455 40.680517360076976, -73.92725629404693 40.68056974193114)))",B294,4729,B294,B-03,B-03,B-03,B-03,Malcom X Blvd. between Chauncey St. and Marion St.,303,36,81,11233,B,1.607,False,Jackie Robinson Park Playground,Yes,100003736,PARK,20100106000000.00000,19810519000000.00000,341 MALCOLM X BOULEVARD,DPR/DOE,False,Jackie Robinson Park Playground,Y,Jackie Robinson Park Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B294/,No,56,25,8,{DD41D077-9AEC-48B3-B12D-7DCD9C9A7E2C} +"MULTIPOLYGON (((-73.87953588633374 40.763109869668675, -73.87956929773206 40.763085629683744, -73.8795447574731 40.76316790929377, -73.8795232258586 40.76324010368544, -73.87950042279363 40.763316559733596, -73.87943418905914 40.763532771042506, -73.87934235810569 40.763517231242766, -73.87930042418684 40.76328183041301, -73.87953588633374 40.763109869668675)))",Q116,5885,Q116,Q-03,Q-03,Q-03,Q-03,Astoria Blvd. bet. 90 St. and 89 St.,403,22,115,11369,Q,0.14,False,One Room Schoolhouse Park,Yes,100000331,PARK,20090423000000.00000,19341212000000.00000,,DPR,False,One Room Schoolhouse Park,N,One Room Schoolhouse Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q116/,No,34,13,14,{40395C85-EA0D-4409-955F-78EE5386BAD9} +"MULTIPOLYGON (((-73.94188146679365 40.721829053895256, -73.9418890800193 40.72187759971308, -73.94180192601856 40.721887540543335, -73.94188146679365 40.721829053895256)))",B031,5434,B031,B-01,B-01,B-01,B-01,Monitor St. bet. Engert Ave. and Meeker Ave.,301,33,94,11222,B,0.005,False,Fidelity Triangle,Yes,100004431,PARK,20100106000000.00000,19161116000000.00000,601 MEEKER AVENUE,DPR,False,Fidelity Triangle,Y,Fidelity Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B031/,No,50,26,12,{89045893-3F6F-4783-8147-D96DB6633A09} +"MULTIPOLYGON (((-73.95264083168026 40.58455382562366, -73.95192269990643 40.58430869207674, -73.95258643321726 40.5842404884638, -73.95264083168026 40.58455382562366)))",B166E,6068,B166E,B-15,B-15,B-15,B-15,"E. 16 St., Shore Pkwy., Bay Ct.",315,48,61,11235,B,0.487,False,Sixteen Lindens Triangle,Yes,100006885,PARK,20100111000000.00000,19680307000000.00000,,DPR,True,Sixteen Lindens Triangle,Y,Sixteen Lindens Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B166E/,No,45,23,8,{DFB97089-4757-44C2-9781-B08E0AB541B7} +"MULTIPOLYGON (((-73.89931143742706 40.6624813501397, -73.90002052965453 40.662375817507446, -73.90018017025449 40.663019958028265, -73.89985974626804 40.66306764736012, -73.89980707370331 40.66285510745394, -73.89942151561907 40.662912489611365, -73.89931143742706 40.6624813501397)))",B107,5460,B107,B-05,B-05,B-05,B-05,Riverdale Ave. bet. Van Sinderen Ave. and Snediker Ave.,305,42,75,11207,B,0.865,False,Lion's Pride Playground,Yes,100004628,PARK,20100106000000.00000,19291122000000.00000,433 RIVERDALE AVENUE,DPR,False,Lion's Pride Playground,Y,Lion's Pride Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B107/,No,60,19,8,{7E4BBA5E-8BFD-4BAF-A95D-26EA35185F64} +"MULTIPOLYGON (((-73.97824962169392 40.728442588185224, -73.97855197718486 40.728568297383546, -73.97850312913135 40.72863588405926, -73.97820077461019 40.728510172932985, -73.97824962169392 40.728442588185224)))",M352,5009,M352,M-03,M-03,M-03,M-03,Ave. B and E. 13 St.,103,2,9,10009,M,0.06,False,Yu Suen Garden,No,100004297,PARK,20100106000000.00000,20021120000000.00000,209 AVENUE B,DPR,False,Yu Suen Garden,N,Yu Suen Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M352/,No,74,27,12,{D53F2F05-12E5-46E2-94BF-3D7C3C42E48E} +"MULTIPOLYGON (((-73.7287188787995 40.71027383581721, -73.72873953048152 40.710273815143736, -73.72876016695122 40.71027433383928, -73.72878076809882 40.7102753900555, -73.72880131144397 40.7102769828389, -73.7288217674097 40.710279110318815, -73.72884212061594 40.710281771558556, -73.72886233677407 40.71028495927327, -73.72888240049319 40.71028867522787, -73.72890228695537 40.71029291125925, -73.72892196659822 40.710297661894906, -73.72894142404894 40.710302924397084, -73.72896062975245 40.71030869149228, -73.72897278945233 40.71031271480718, -73.7289795671635 40.71031495773851, -73.72899099977829 40.710319098207684, -73.72899821148611 40.71032170956988, -73.72901653904535 40.71032894873171, -73.7290345286064 40.71033665896501, -73.72905216362753 40.71034483392733, -73.72906941574409 40.71035346454695, -73.72907634126487 40.7103571936705, -73.72908627316266 40.71036254089057, -73.72910085866931 40.710370979723635, -73.72911871060855 40.71038198370434, -73.7291342516718 40.71039232847071, -73.72914932130715 40.710403071954524, -73.72916389471084 40.710414202390865, -73.7291779577261 40.71042570894047, -73.72919149505647 40.710437569955104, -73.72920449133603 40.71044978089629, -73.72921693125369 40.71046232371788, -73.72922879475016 40.710475183964604, -73.72923544948195 40.71048294494844, -73.72924007716473 40.71048834361543, -73.7292507572401 40.71050179181424, -73.72926082440212 40.710515509625594, -73.72927026924562 40.71052948171884, -73.72927907999485 40.710543693658025, -73.72928784613245 40.71055869254189, -73.72929592616453 40.71057391674139, -73.72930330835901 40.710589341014696, -73.72930998566635 40.71060495273815, -73.72931595345118 40.71062072758709, -73.72932119756709 40.710636652020625, -73.7293257169071 40.71065270712539, -73.72932950092238 40.71066886766229, -73.72933255322117 40.71068511923162, -73.72933486204207 40.710701443795514, -73.72933642867031 40.710717816142605, -73.72933725080067 40.71073422095868, -73.72933732615363 40.710750636626095, -73.72933665835188 40.71076704514311, -73.7293352427382 40.71078342758786, -73.72933308414058 40.710799760558295, -73.72933018143728 40.71081602874301, -73.72932654773298 40.710832210560376, -73.72932217599987 40.710848287983545, -73.72931708170947 40.71086423943643, -73.72931126018977 40.71088004959915, -73.72930472573634 40.71089569509182, -73.72929748788167 40.71091115972757, -73.72929044125226 40.71092470401374, -73.72928092121253 40.71094146992893, -73.72927161146703 40.710956282220096, -73.72926164003782 40.710970839909535, -73.72925101054804 40.71098512499532, -73.72923973963455 40.7109991204066, -73.72922783799167 40.7110128153622, -73.72921532109856 40.71102618648489, -73.72920220557396 40.711039221206384, -73.729188504501 40.71105190334799, -73.72917423450954 40.71106421763987, -73.72915941577959 40.711076148820496, -73.72914406256693 40.71108768341555, -73.7291281950553 40.71109880526296, -73.72911183222692 40.711109502700516, -73.72909499187318 40.711119765864225, -73.72907769655224 40.71112957679669, -73.72905996640043 40.71113893104247, -73.72904182042205 40.7111478115363, -73.72902328233315 40.71115620662721, -73.7290043710794 40.71116411365798, -73.728985116316 40.711171515588475, -73.72896553345313 40.71117840615123, -73.72894565209842 40.71118478001266, -73.72892549242881 40.711190622811905, -73.7289050792926 40.711195935507874, -73.72888443403926 40.71120070644393, -73.7288635874562 40.711204931190004, -73.72884256085992 40.71120860619407, -73.7288213779521 40.71121172340725, -73.72880717112444 40.7112134324362, -73.72880006830391 40.71121428650116, -73.72877865445548 40.71121628202112, -73.72875716360755 40.71121771453371, -73.72874562927379 40.711218179036635, -73.72873561825647 40.71121858139041, -73.72871404681554 40.711218879956554, -73.72870478345385 40.71121876627343, -73.72869247648921 40.71121861389837, -73.72867092623444 40.711217777857335, -73.72863122054349 40.71121417405653, -73.7283460261874 40.71111032038163, -73.72834207283236 40.711102079443656, -73.72833766342924 40.711088718000894, -73.72832506758851 40.7110505649677, -73.7283074462623 40.710997197575615, -73.72829105125528 40.71094753779418, -73.72827404135668 40.71089602329842, -73.72825703621797 40.710844508810986, -73.72824002755166 40.710792995212834, -73.72823519360868 40.71077869802851, -73.72823101577197 40.71076427992287, -73.72822750580531 40.7107497580335, -73.72822465534003 40.7107351530526, -73.7282237086448 40.710728758960904, -73.72822248087355 40.71072048212895, -73.72822097760945 40.71070576055998, -73.72822014900562 40.71069101086678, -73.72821999619009 40.710676246559814, -73.72822051671466 40.71066148744453, -73.72822171879302 40.710646750650206, -73.72822359050996 40.710632055959934, -73.72822613416942 40.71061741868794, -73.72822934733068 40.710602856838726, -73.72823322398821 40.710588392010386, -73.7282377629105 40.71057403590668, -73.72824295454548 40.71055980921682, -73.72824879407479 40.710545732641165, -73.72825527554801 40.71053181427022, -73.72826238939477 40.71051807929576, -73.72827013084077 40.71050453761201, -73.72827848321538 40.710491214393954, -73.72828744412217 40.71047811683987, -73.7282969969125 40.710465264721755, -73.72830713323269 40.71045267512945, -73.7283178388267 40.71044036153691, -73.72832910297402 40.71042834102846, -73.72834090669244 40.7104166252659, -73.72835324519691 40.71040522684488, -73.7283660959184 40.710394166423924, -73.7283794446231 40.71038345207383, -73.72839327469207 40.7103730963625, -73.72840757185477 40.71036311636585, -73.7284223195182 40.71035351834815, -73.72843749276859 40.71034431755925, -73.72845308326369 40.71033552838753, -73.72847008351117 40.71032666059209, -73.7284854188399 40.71031921168124, -73.72850212834263 40.710311702973264, -73.72851917090458 40.710304646206495, -73.72853652166015 40.71029804492411, -73.72855618925615 40.71029325193376, -73.7285760594681 40.71028897721409, -73.72859610743404 40.710285223407794, -73.72861631657227 40.71028199407785, -73.72863665846344 40.710279293659745, -73.72865710705884 40.710277125694034, -73.72867764696362 40.71027549284598, -73.72869824267296 40.71027439593227, -73.7287188787995 40.71027383581721)))",Q133A,69217,Q133A,Q-13,Q-13,Q-13,Q-13,Hempstead Ave. bet. Cross Is. Pkwy. and 225 St.,413,27,105,11429,Q,1.94,False,Park,Yes,100008329,PARK,,19380428000000.00000,,DPR,True,Hempstead Ballfield,N,Hempstead Ballfield,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q133A/,No,33,14,5,{2F2D1A4B-66AF-4C72-A988-06B954738D16} +"MULTIPOLYGON (((-74.17157800264756 40.64210300727445, -74.17138923149308 40.64196682846611, -74.17119218178513 40.640609385284684, -74.17161862828642 40.64051433099802, -74.1725857327657 40.6403761152971, -74.17272117470155 40.64037310051778, -74.17313019163075 40.6405898205995, -74.17303592681697 40.6406818659737, -74.17268716157845 40.640795194808845, -74.17258436631496 40.64194756824802, -74.17418180913263 40.64202573467504, -74.17438262762315 40.64196499912231, -74.17487988470391 40.642004531465794, -74.17497825032245 40.64118279136315, -74.17518371632868 40.64122070562165, -74.17558232260923 40.64125884797784, -74.176433869945 40.641262427244484, -74.17647196865948 40.64125731866684, -74.17668370069596 40.64122892973423, -74.17760268468923 40.641035622228756, -74.17781948707736 40.64100058203433, -74.17830145669002 40.6409744887958, -74.17839523220148 40.6414811048354, -74.17839683832096 40.64148977435373, -74.17842054785643 40.64155111612897, -74.17885167310476 40.64266643497096, -74.17897035034946 40.642973448367044, -74.17919059795379 40.64539504490059, -74.176583126579 40.64521261293324, -74.1765464093028 40.64521074579568, -74.17326929817541 40.64504407922032, -74.17020546167423 40.644449396520805, -74.17070554050703 40.642954881947624, -74.17076861766473 40.64290333258755, -74.17100874746338 40.64288303643801, -74.17105790193776 40.64285610352308, -74.1711823670398 40.642788409935726, -74.17140897731062 40.64263952801401, -74.17161832866927 40.6424124459281, -74.17157800264756 40.64210300727445)))",R171,51979,R171,R-01,,,R-01,Richmond Terrace bet. Catherine Pl and Holland Ave.,501,49,120,10303,R,70.6,False,,,100042702,PARK,,20171201000000.00000,,DPR,False,Arlington Marsh Park,,Arlington Marsh Park,,Undeveloped,,Yes,63,23,11,{85231BE6-F11A-4645-8354-40F9109136FE} +"MULTIPOLYGON (((-73.88772764771478 40.76490632422367, -73.88790937574743 40.764890522617684, -73.88792320101182 40.764975621159046, -73.88772491028314 40.76493814809533, -73.88772140608424 40.76493723427006, -73.88771816201837 40.76493587224685, -73.88771527868722 40.76493410354696, -73.88771284008983 40.764931982282626, -73.8877109231024 40.76492957246455, -73.88770958327042 40.76492694528685, -73.88770886190851 40.76492418273568, -73.88770878138303 40.76492136587834, -73.88770934391529 40.76491858206593, -73.88771053278597 40.76491591322813, -73.88771230995542 40.76491344217414, -73.88771462437285 40.76491124179521, -73.88771740486067 40.764909380460224, -73.88772056723764 40.76490791211748, -73.88772401667529 40.76490688350064, -73.88772764771478 40.76490632422367)))",Q504,6322,Q504,Q-03,Q-03,Q-03,Q-03,"Astoria Blvd., 24 Ave., 81 St.",403,22,115,11369,Q,0.026,False,,No,100008370,PARK,20090423000000.00000,19601121000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,,No,35,13,14,{76B66734-2049-4A4D-A867-7FAB5EDC3E7E} +"MULTIPOLYGON (((-73.91862795748887 40.67089764611782, -73.91859376156323 40.67125657829094, -73.91872320860597 40.67126360288371, -73.91869008526061 40.67161127577966, -73.91833479663134 40.67159216643318, -73.91837709443817 40.67114822511379, -73.91809996458909 40.67117381082854, -73.91812885778779 40.670870559314054, -73.91862795748887 40.67089764611782)))",B585,29095,B585,B-16,,,B-16,Park Pl. to Sterling Pl. bet. Howard Ave. and Saratoga Ave.,316,41,,11233,B,0.657,False,,No,100024491,PARK,,20190909000000.00000,,DPR,,Prospect Plaza Park,,Prospect Plaza Park,Neighborhood Park,Neighborhood Park,,No,55,25,9,{58470D8D-0A60-4C94-A955-985A2C37B311} +"MULTIPOLYGON (((-73.92250956021628 40.77441656432017, -73.92282049594672 40.774141599069445, -73.92371588729611 40.77463443012184, -73.92307547539089 40.77515261306037, -73.92250956021628 40.77441656432017)))",Q066B,5871,Q066B,Q-01,Q-01,Q-01,Q-01,Hoyt Ave. bet. 21 St. and 23 St.,401,22,114,11102,Q,1.295,False,Triborough Bridge Playground B,Yes,100000323,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Triborough Bridge Playground B,Y,Triborough Bridge Playground B,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q066B/,No,36,12,"12, 14",{0DBCD2EB-0A0F-4209-BAF5-AF7E7BC76FBB} +"MULTIPOLYGON (((-73.8794633710015 40.67069490485165, -73.87982440209355 40.670643323661395, -73.87984112222465 40.6707107519677, -73.87985869954112 40.67078163284475, -73.87949766772532 40.670833215042286, -73.87948886515676 40.67079771827982, -73.87948009078056 40.67076233321001, -73.87947646032757 40.6707476942175, -73.8794633710015 40.67069490485165)))",B469,5263,B469,B-05,B-05,B-05,B-05,Shepherd Ave. between Blake Ave. and Sutter Ave.,305,42,75,11208,B,0.114,False,Good Shepherds Garden,No,100004627,PARK,20100106000000.00000,20021120000000.00000,555-557 Shepherd Av,DPR,False,Good Shepherds Garden,N,Good Shepherds Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B469/,No,60,18,8,{2AD1E686-5B4B-480F-85E7-DF6F0D3C9C30} +"MULTIPOLYGON (((-73.91192435701254 40.89621151072206, -73.91193248529947 40.896211126112945, -73.91194056497275 40.89621160593142, -73.91195050011233 40.89621339556864, -73.91195802903961 40.89621575247621, -73.9119620693292 40.89621699462431, -73.9121821136959 40.89629887039703, -73.91229310693038 40.896340169057126, -73.91246333375342 40.89634823873548, -73.91277077904014 40.896649277418504, -73.91303537723275 40.896905622566216, -73.91313445636554 40.89700939155011, -73.91322079803098 40.8971200170663, -73.91325745841635 40.897181825054396, -73.91327700035684 40.89723723123458, -73.9132870747641 40.897293423626664, -73.9132903367322 40.89735919115407, -73.91326685416271 40.8976134901117, -73.91347670930973 40.897948044240586, -73.91345496692988 40.89811217632185, -73.91312513496234 40.89900577891165, -73.9130247927506 40.899286377947696, -73.91310407677685 40.899306486929596, -73.91408569230211 40.899456755996006, -73.91401976622029 40.89963560067217, -73.91344700090703 40.90118934481195, -73.91214933018836 40.90087135923776, -73.91211846414006 40.90086412467178, -73.91206667902995 40.9008511056668, -73.91198841784484 40.900832661753824, -73.91197541228277 40.90082959739727, -73.91199976620577 40.90074373321911, -73.91200283702575 40.90073521878366, -73.91200996456864 40.90068705373374, -73.91201070897282 40.9006823546759, -73.91201128863307 40.90067480005825, -73.91201158959541 40.90066978549307, -73.91201183873834 40.90066446922634, -73.91201203593361 40.90065805162822, -73.91201211755336 40.90065287570929, -73.91201212022628 40.90064637421795, -73.91201203490583 40.900640898310634, -73.91201186669507 40.90063528276512, -73.91201170903798 40.90063155644281, -73.91201149949487 40.900627578845885, -73.91201126704517 40.90062387137672, -73.91201094178099 40.900619452454556, -73.9120105222045 40.90061455710453, -73.91201002330888 40.90060951401469, -73.91200944502012 40.90060437901501, -73.91200874383371 40.900598845007295, -73.91200795016982 40.90059324159179, -73.91200699690138 40.900587176106434, -73.91200572124492 40.90057989832409, -73.9120045024311 40.90057361021676, -73.91200270135127 40.90056519202129, -73.91199932542476 40.900551380527965, -73.9119976294417 40.90054515419021, -73.91199556905683 40.90053807571691, -73.9119945043684 40.900534596336136, -73.91199322679431 40.90053056119451, -73.91199184618583 40.900526362986746, -73.91199050321725 40.90052241964457, -73.9119888018093 40.90051760255979, -73.91198698663597 40.90051266022098, -73.91198495003124 40.90050734221154, -73.91198337685921 40.90050337438071, -73.91198160360364 40.900499041701345, -73.9119793959643 40.90049382801753, -73.91197686858621 40.90048809090879, -73.91197432790582 40.900482541090405, -73.91197023054882 40.90047401128441, -73.91196710920251 40.90046781357521, -73.91196381351865 40.90046152568463, -73.91196105622059 40.90045644755435, -73.91195602651945 40.90044756584804, -73.91195133728111 40.90043969024167, -73.9119473641026 40.90043328387047, -73.91194333969636 40.90042702603989, -73.911939033107 40.90042056358406, -73.91193441586992 40.90041388297401, -73.91192989072562 40.90040756262757, -73.91192569820684 40.9004018926841, -73.9119211820274 40.90039597305948, -73.9119162390757 40.900389699218856, -73.91191146055675 40.90038382621885, -73.91190641637942 40.90037781704286, -73.91190217183264 40.900372901664305, -73.91189698146422 40.90036705716485, -73.91189112603004 40.9003606700663, -73.91188717248026 40.90035647439588, -73.91187736513761 40.900346446325386, -73.91186914068145 40.900338423939566, -73.91185818119698 40.900328230199314, -73.91184623711186 40.90031771513396, -73.91183490281968 40.90030825860156, -73.91181904493149 40.90029580360347, -73.91180559404148 40.900285883503194, -73.91179311590528 40.90027716809159, -73.911775879872 40.90026583763939, -73.91175989272016 40.90025600834539, -73.91174658133971 40.90024828822702, -73.91173438896206 40.900241563997355, -73.91171511109587 40.90023156919354, -73.91168380550337 40.90021688266958, -73.91165777247558 40.900206007417914, -73.91165925041928 40.900175347071, -73.91090824758064 40.899990004158376, -73.91099417049493 40.89958749104916, -73.9110149972002 40.89948992885157, -73.911069125581 40.89923635462285, -73.91116413307802 40.89880577663557, -73.91126806813898 40.89827852760797, -73.91132802894066 40.898100306608136, -73.91145710678985 40.89777656810741, -73.91147679944126 40.89765187873337, -73.91149457227439 40.89754026471549, -73.91151683217218 40.89742679913404, -73.91153741273948 40.8973499162395, -73.91155002244791 40.8973048017268, -73.91156655252719 40.897261003121876, -73.91159100060514 40.8972001238861, -73.91160176635499 40.89718246102364, -73.91166682211708 40.89706595841668, -73.9116935557589 40.89698803473484, -73.911774108691 40.896866077075494, -73.91180223953562 40.89679750956707, -73.9118230695738 40.89674150453702, -73.91182606009308 40.8967334636935, -73.91183050477963 40.896721514957264, -73.91183534481046 40.89670049234025, -73.91184265607352 40.896665680689594, -73.91184629232824 40.89664319746718, -73.91185035693944 40.896618064445676, -73.9118524018047 40.896605422303686, -73.91185451966429 40.89659232367174, -73.91185755046197 40.89657358870351, -73.91186058007244 40.89655485283379, -73.91186346728252 40.89653700653391, -73.9118667656509 40.89650442051613, -73.91186919825306 40.89648037853511, -73.91187217193988 40.89645100789935, -73.91187525752571 40.89640257589141, -73.9118745203322 40.89633920912938, -73.9118745615452 40.89624725797783, -73.91187887462114 40.89623698223858, -73.91188276825909 40.89623158050214, -73.91189979237774 40.896218474335434, -73.91190687275135 40.896215440603164, -73.91191227430942 40.89621391119968, -73.91191637593165 40.89621275000282, -73.91192435701254 40.89621151072206)))",X209,4812,X209,X-08,X-08,X-08,X-08,"W 248 St, Independence Av , W 252 St , P",208,11,50,10471,X,20.867,False,Wave Hill,No,100004565,PARK,20100106000000.00000,19660729000000.00000,665 WEST 252 STREET,DPR/CULT,False,Wave Hill,Y,Wave Hill,Large Park,Historic House Park,http://www.nycgovparks.org/parks/X209/,No,81,34,16,{43F019E1-39AD-42DA-BDC1-4DED9E37C378} +"MULTIPOLYGON (((-74.07226981038929 40.599043812830274, -74.07227701813912 40.59904368042315, -74.07228409485205 40.59904473318584, -74.07233869293398 40.59907158933873, -74.07238986279906 40.59909758312342, -74.07244103034208 40.59912357778724, -74.07249219792591 40.59914957332875, -74.07253973494674 40.59917550720198, -74.07258727082205 40.59920144015575, -74.07263480791674 40.59922737398958, -74.07268234622782 40.59925330600185, -74.07272988339734 40.599279240696724, -74.07271294765509 40.599279323455264, -74.0726960265714 40.59927984835864, -74.07267913905272 40.59928081899705, -74.07266230281441 40.599282229956074, -74.07264554266897 40.59928408392167, -74.07262887632982 40.59928637367853, -74.07261232388294 40.599289101015025, -74.07259590304359 40.59929226051683, -74.07257963507334 40.59929584856853, -74.07256353768946 40.599299861556936, -74.07254763096923 40.59930429316572, -74.07253193499267 40.599309139780225, -74.07251646629291 40.59931439508646, -74.07250124258519 40.59932005367019, -74.07248628630975 40.59932610921371, -74.0724716116328 40.5993325518024, -74.07245723390503 40.59933937422259, -74.0724431743871 40.59934657195831, -74.07242944960734 40.599354134193, -74.07241607255051 40.59936205101286, -74.0724030609293 40.59937031430211, -74.07239043009054 40.59937891324499, -74.07237819420169 40.59938783882745, -74.07236636979103 40.59939708023292, -74.07234278586998 40.59941986119385, -74.07232017250303 40.59944320706737, -74.07229854856529 40.59946709172692, -74.07227794120506 40.59949149174246, -74.07225836457275 40.59951638189104, -74.07223984581202 40.59954173423982, -74.07222239789607 40.59956752716869, -74.07220604324297 40.59959373274783, -74.07219079600165 40.59962032395311, -74.0721766715018 40.599647272859194, -74.07216882694291 40.5996616627338, -74.0721618798358 40.59966252889633, -74.07215424176788 40.59963185829002, -74.07214980544227 40.59958482317716, -74.07214729241518 40.599537707610516, -74.07214670509221 40.599490554813805, -74.0721480435198 40.59944341161418, -74.07215130537978 40.599396323039144, -74.0721564895352 40.59934933411542, -74.0721635877617 40.59930249077449, -74.07217259774308 40.59925583984471, -74.07218404656093 40.59921718582433, -74.07219549654799 40.59917853270242, -74.07220694770423 40.59913988047903, -74.07222624395843 40.59909724931761, -74.07224830328674 40.599052192208745, -74.07225468439921 40.59904802688169, -74.07226164719 40.59904533804574, -74.07226981038929 40.599043812830274)))",R010,6576,R010,R-02,R-02,R-02,R-02,Hylan Blvd. at Sand La.,502,50,122,10305,R,0.28,False,Staats Circle,Yes,100006530,PARK,20100106000000.00000,,,CDOT,False,Staats Circle,N,Staats Circle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R010/,No,64,24,11,{B3572C24-EC84-4EF2-B460-A6C2D42B20B6} +"MULTIPOLYGON (((-73.74058264316812 40.666353513163195, -73.74125030090703 40.66606307462371, -73.74366235565415 40.66607021897014, -73.74398510166071 40.666099914610975, -73.7441310323168 40.666116249623855, -73.74436653022637 40.66614734582309, -73.74463107111693 40.66618371011784, -73.74481967142447 40.66621573146686, -73.74507869267934 40.66626221963658, -73.74528527612591 40.66630143559864, -73.74540687386845 40.66632985141414, -73.74551961597898 40.666370418934406, -73.74479096776358 40.666369718787564, -73.74179903768015 40.66635821289496, -73.74152619357744 40.66635715982533, -73.74116684056777 40.66635577191802, -73.74058264316812 40.666353513163195)))",Q096C,6125,Q096C,Q-13,Q-13,Q-13,Q-13,N. Conduit Ave. bet. 230 Pl. and the Belt Pkwy.,413,31,105,11413,Q,1.102,False,Mentone Playground,No,100000384,PARK,20090423000000.00000,19430402000000.00000,,DPR,True,Mentone Playground,Y,Mentone Playground,Neighborhood Plgd,Undeveloped,http://www.nycgovparks.org/parks/Q096C/,No,31,14,5,{B5A4B53D-0121-4CE6-A2CE-E129D41542A4} +"MULTIPOLYGON (((-73.98668001910579 40.72068300748351, -73.98661415058933 40.72081115497323, -73.98626381002701 40.72070878609645, -73.98629153356798 40.72065484887275, -73.98647002749388 40.72070700409254, -73.98646332930846 40.7207200426849, -73.98651384644948 40.72073480346382, -73.98652435371741 40.72071435141852, -73.98654456104806 40.720720256622656, -73.98657886413281 40.72065345001467, -73.98668001910579 40.72068300748351)))",M396,5517,M396,M-03,M-03,M-03,M-03,Stanton St. bet. Essex St. and Norfolk St.,103,1,7,10002,M,0.069,False,Children's Magical Garden,No,100008367,PARK,20140724000000.00000,20130701000000.00000,129 STANTON STREET,DPR,False,Children's Magical Garden,,Children's Magical Garden,,Garden,,No,65,26,12,{41E9EA04-9F7D-497A-98E0-F154906A6BA2} +"MULTIPOLYGON (((-74.13366975802703 40.623287306724635, -74.13366828303286 40.623286108945386, -74.13322831715914 40.62292895874446, -74.13327236333336 40.622897456087735, -74.13323538355571 40.62286743685099, -74.13318941961126 40.62290031050774, -74.13318079111889 40.62289330544352, -74.13291813829652 40.62308115376545, -74.132709818102 40.62291204331435, -74.13274070470295 40.62289010157666, -74.13281635324506 40.62283636115097, -74.13292357383078 40.622760191814, -74.13301673236624 40.62269401192012, -74.13309023018586 40.62264179928405, -74.13318123811328 40.62257714542731, -74.13325315188719 40.62252605837173, -74.13329951841924 40.62249311848305, -74.13332492274792 40.62247507139436, -74.13338104447709 40.62243520145388, -74.13340669143834 40.62242031039251, -74.13347830006201 40.62237873215314, -74.1335879964497 40.622315039641, -74.13385031338159 40.62213717063661, -74.13543301202762 40.62302377580793, -74.13568942234144 40.62316740826986, -74.13466237086138 40.62327716381778, -74.13463266311179 40.623115757670966, -74.1341719771847 40.62316870028336, -74.13406253839746 40.623194545940414, -74.13412675839841 40.623361710427865, -74.13384295420674 40.6234250101314, -74.13377750483593 40.62343960721393, -74.1338223810501 40.62341119937421, -74.13366975802703 40.623287306724635)))",R078,5066,R078,R-01,R-01,R-01,R-01,Burnside Ave. to North Ave. at Shaw Pl. and Eldridge Ave.,501,49,120,10302,R,3.955,False,Northerleigh Park,Yes,100003750,PARK,20100106000000.00000,19630515000000.00000,90 NORTH AVENUE,DPR,True,Northerleigh Park,Y,Northerleigh Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R078/,No,61,24,11,{D9B7AAD0-A45A-4A65-956B-E9C9C123766F} +"MULTIPOLYGON (((-73.88561945859414 40.82439845378202, -73.88560947616304 40.82451012253767, -73.88560333290084 40.82455652802505, -73.88559949200153 40.82458554451021, -73.88554110950508 40.82502656047186, -73.88545160899334 40.82570262720001, -73.88539456013142 40.82613356237777, -73.88534897504493 40.82647789558301, -73.8852954222523 40.826827539155346, -73.88522398200818 40.82716503069825, -73.88515652518018 40.827389350018095, -73.88508574487925 40.82759519230568, -73.88492132227245 40.82803681881807, -73.88422675590951 40.828081381638995, -73.88432008649953 40.82779766241857, -73.8845323069267 40.8275716165088, -73.88458811335401 40.827504833064424, -73.8847903426691 40.82672648897573, -73.88471079443792 40.826606495820954, -73.88477730987326 40.8264045702281, -73.88479731305453 40.826343840946485, -73.88480879415502 40.82630898790856, -73.88497462951914 40.82506863620829, -73.8849801335592 40.8250274683071, -73.88498668363783 40.82497847433498, -73.88499276653152 40.824932974722266, -73.88500085501526 40.82487247934311, -73.88500673012943 40.824828530176305, -73.88501396349173 40.82477443827227, -73.8850584311813 40.82444183115168, -73.8850018832158 40.823686941750715, -73.88489890459007 40.82342735373705, -73.88473385429694 40.823021870871166, -73.88505645775405 40.82297305639829, -73.88543102601032 40.82392833637063, -73.88547840373528 40.823919389274245, -73.88553489838631 40.82407660000318, -73.88558784765785 40.82423452037565, -73.8856082024657 40.824315980561856, -73.88561945859414 40.82439845378202)), ((-73.88562863549463 40.82439954888286, -73.88561945859414 40.82439845378202, -73.88562469043664 40.824319516957075, -73.88562804269412 40.82423131486027, -73.88562874698954 40.82414018712449, -73.88562378531132 40.82402402627059, -73.88561457882666 40.8239346617786, -73.88559455580811 40.8238043860049, -73.88557726786337 40.82372360692626, -73.88555833259404 40.823647442153984, -73.88553434600303 40.82356456726667, -73.8854854387262 40.823427157872594, -73.88584454993361 40.82339952830816, -73.88580484872001 40.82351038784443, -73.88577118554353 40.82361592060642, -73.88574348548202 40.823715597933926, -73.88572304282326 40.823798506196724, -73.88569216714453 40.823944949445284, -73.88566214052327 40.82413805544679, -73.885637682331 40.824347339871935, -73.88563153920141 40.824399895752364, -73.88562863549463 40.82439954888286)))",X305,4615,X305,X-14,X-02,X-02,X-14,Bronx River bet. Westchster Av and Bruckner Blvd,202,17,41,"10459, 10472",X,6.438,False,Concrete Plant Park,Yes,100005125,PARK,20100106000000.00000,20000810000000.00000,1490 SHERIDAN EXPRESSWAY,DPR,False,Concrete Plant Park,Y,Concrete Plant Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X305/,Yes,85,32,15,{C0D92FDF-0E33-4BE2-B313-37F104E0AA04} +"MULTIPOLYGON (((-73.89124453722863 40.829572770499276, -73.89123887663574 40.82963860218855, -73.89122695643532 40.82963918437264, -73.89122699785453 40.82963850453757, -73.89097185420022 40.829636412185785, -73.89097242923536 40.82957053968171, -73.89124453722863 40.829572770499276)))",X270,6379,X270,X-03,X-03,X-03,X-03,Hoe Ave. bet. Home St. and Freeman St.,203,17,42,10459,X,0.05,False,Freeman Garden,No,100004101,PARK,20100106000000.00000,19950914000000.00000,,DPR,False,Freeman Garden,Y,Freeman Garden,Neighborhood Park,Garden,http://www.nycgovparks.org/parks/X270/,No,85,32,15,{753DEF5E-1F9D-4E8F-8FC7-45EB5F0055EA} +"MULTIPOLYGON (((-74.00006617589952 40.71164217397292, -74.00052913947061 40.71119870184956, -74.00056209195198 40.71123123804812, -74.00060647758859 40.711278495727434, -74.00065668118411 40.71134746377018, -74.00067992270743 40.711384005461156, -74.00070494308298 40.7114344690326, -74.00072980033828 40.711498987770895, -74.00074348128604 40.71155295979429, -74.00075029353793 40.71159520811154, -74.00041169871703 40.71161845290277, -74.00006856641475 40.71164201007854, -74.00006617589952 40.71164217397292)))",M255,5928,M255,M-03,M-03,M-03,M-03,"Pearl St., Madison St. and St James Pl.",103,1,5,10038,M,0.361,False,James Madison Plaza,Yes,100004354,PARK,20100106000000.00000,19641020000000.00000,,DPR,True,James Madison Plaza,N,James Madison Plaza,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/M255/,No,65,26,7,{2936B819-5CCC-4817-A382-BA7BCA69F386} +"MULTIPOLYGON (((-73.76598994603171 40.72549572952508, -73.76647505200664 40.72536404734999, -73.7665033222405 40.72539123711766, -73.76652534591439 40.7254235930581, -73.76653977271013 40.72545833885925, -73.76654615522135 40.72549445153536, -73.7665443219941 40.725530862732676, -73.76653433241084 40.72556649826009, -73.76651645766846 40.725600302364604, -73.76649124335016 40.725631284685065, -73.76645944074299 40.72565852911858, -73.76642195940016 40.72568121983976, -73.7663799367886 40.72569869547352, -73.76633459625454 40.725710447006556, -73.76628728491876 40.72571611246185, -73.766239400054 40.72571554338771, -73.76619234907835 40.725708736337666, -73.76614752090515 40.725695901251456, -73.76610623874285 40.725677419034604, -73.76606973051764 40.725653836995605, -73.76603906977773 40.72562584351062, -73.76601515199404 40.725594275178885, -73.76599869951994 40.72556005289562, -73.76599018815747 40.72552419520981, -73.76599004581554 40.72550742648166, -73.76598994603171 40.72549572952508)))",Q021B,5320,Q021B,Q-08,Q-08,Q-08,Q-08,McLaughlin Ave. bet. Sutro St. and Francis Lewis Blvd.,408,23,107,11423,Q,0.356,False,McLaughlin Playground,Yes,100000044,PARK,,,200-15 MCLAUGHLIN AV,DPR,True,McLaughlin Playground,Y,McLaughlin Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q021B/,No,24,11,5,{3519CFF9-F245-4176-A668-9FD48EC878AB} +"MULTIPOLYGON (((-73.96310982046077 40.800957404623794, -73.96348107193114 40.800464143857795, -73.96422351049368 40.80077714614464, -73.96404130626574 40.801026734820034, -73.9641196604574 40.80105976702956, -73.9641971771062 40.801092456735844, -73.96433639544146 40.80115116470503, -73.96443300928512 40.801191868297174, -73.9642524969756 40.801439139927524, -73.96310982046077 40.800957404623794)))",M200,4869,M200,M-07,M-07,M-07,M-07,"W. 107 St. to W. 108 St., Columbus Ave. and Amsterdam Ave.",107,7,24,10025,M,1.441,False,Booker T. Washington Playground,Yes,100004048,PLGD,20100106000000.00000,19430308000000.00000,960 COLUMBUS AVENUE,DPR/DOE,False,Booker T. Washington Playground,Y,Booker T. Washington Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M200/,No,69,30,13,{40BE1975-9A28-4946-AEE1-FF721837BD91} +"MULTIPOLYGON (((-73.97826651009748 40.741769413811674, -73.97882826704807 40.74200613207546, -73.97871235997378 40.74216384621904, -73.9787039094977 40.74227286993872, -73.97849696945481 40.74218566871474, -73.9784143896271 40.7421508711842, -73.9784261515859 40.74213486687611, -73.97845828788071 40.742091142470215, -73.97813132097012 40.74195336180896, -73.97826651009748 40.741769413811674)))",M265,6405,M265,M-06,M-06,M-06,M-06,2 Ave. bet. E. 29 St. and E. 30 St.,106,2,13,10016,M,0.346,False,Vincent F. Albano Jr. Playground,Yes,100003728,PARK,20100106000000.00000,19660825000000.00000,,DPR/TBTA,False,Vincent F. Albano Jr. Playground,Y,Vincent F. Albano Jr. Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M265/,No,74,28,12,{09EAF6D6-5577-4B37-B30D-574D3403BD0C} +"MULTIPOLYGON (((-73.94997734022681 40.78057042929015, -73.9506445220962 40.7808506938522, -73.95028751171013 40.781346813329826, -73.94961646122033 40.78106290610373, -73.94997734022681 40.78057042929015)))",M294,5954,M294,M-08,M-08,M-08,M-08,Second Ave. bet. E. 90 St. and E. 91 St.,108,5,19,10128,M,0.997,False,Ruppert Park,Yes,100004746,PARK,20100106000000.00000,19970429000000.00000,,DPR,False,Ruppert Park,Y,Ruppert Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M294/,No,73,28,12,{DBB73B72-F637-4D5A-B99F-1C5A5748831E} +"MULTIPOLYGON (((-73.88955575337522 40.67158928800055, -73.88992066799675 40.671536180405006, -73.8899507284516 40.671654788205444, -73.88996533099905 40.671712401874814, -73.88960037197015 40.67176533937166, -73.88958617277055 40.67170931275225, -73.88958071000489 40.671687760864, -73.88955575337522 40.67158928800055)))",B509,5503,B509,B-05,B-05,B-05,B-05,Belmont Ave. and Van Siclen Ave.,305,37,75,11207,B,0.164,False,Jordan Magic Garden,No,100008327,PARK,20110712000000.00000,20060309000000.00000,335 VAN SICLEN AVENUE,DPR,False,Poppa and Momma Jones Historical Garden,N,Jordan Magic Garden,,Garden,http://www.nycgovparks.org/parks/B509/,No,55,19,8,{22CF0EB4-0547-435D-B495-00CF7B9D071A} +"MULTIPOLYGON (((-73.94706292181864 40.78685884929763, -73.94770451913647 40.78712924033475, -73.9473466639641 40.78761955063701, -73.94670689585294 40.787346646977966, -73.94706292181864 40.78685884929763)))",M215,4895,M215,M-11,M-11,M-11,M-11,"99 St. To 100 St., 3 Ave.",111,8,23,10029,M,0.95,False,Cherry Tree Park,Yes,100004363,PLGD,20100106000000.00000,19530226000000.00000,1785 3 AVENUE,DPR/NYCHA,True,Cherry Tree Park,Y,Cherry Tree Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M215/,No,68,29,13,{7A9F528D-C2ED-4E2E-B26C-3791B0BACB09} +"MULTIPOLYGON (((-73.91533919084708 40.84850017842323, -73.91550800043065 40.84853175818774, -73.91559651268048 40.84826564014763, -73.91600395198711 40.84834185985323, -73.9159696049985 40.84891248401741, -73.91524799999259 40.84877434558973, -73.91533919084708 40.84850017842323)))",X265,4781,X265,X-05,X-05,X-05,X-05,Macombs Rd bet. W 176 St and W 175 St,205,14,46,10453,X,0.714,False,Galileo Playground,Yes,100004947,PLGD,20100106000000.00000,19931230000000.00000,75 WEST 175 STREET,DPR,False,Galileo Playground,Y,Galileo Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X265/,No,77,29,15,{DF9E78EA-6274-4584-B797-1311F01E84D1} +"MULTIPOLYGON (((-73.94324537217064 40.81383027961749, -73.9430716989564 40.81406847009318, -73.94298376656577 40.81403140539666, -73.94315743999952 40.81379321325099, -73.9432353735186 40.81382606487008, -73.94324537217064 40.81383027961749)))",M406,13487,M406,M-10,,,M-10,W. 134 St. bet. Adam C. Powell Blvd. and Lenox Ave.,110,9,,10030,M,0.068,False,,,100036981,PARK,,20160209000000.00000,,DPR,False,Henry Garnet Garden,,Harlem Grown 134th Street Green House,,Garden,,No,70,30,13,{7338ADD9-84F0-426C-A952-EA4AD20A0B7C} +"MULTIPOLYGON (((-73.99612263083613 40.70927192537887, -73.99612371600188 40.709271838966394, -73.99612583541176 40.709272288392704, -73.9961274578077 40.70927263154197, -73.99613012629996 40.70927319715263, -73.99613549283471 40.70927492001047, -73.99613712467479 40.709275661185806, -73.99614120723336 40.70927751637538, -73.9961464399653 40.70928064672695, -73.99614758305616 40.70928161031196, -73.99615200987108 40.70928534307812, -73.99615613131536 40.70929009251085, -73.99615967162391 40.709296506068355, -73.99616765774803 40.709326129544316, -73.99620468114513 40.70946991265899, -73.99622839806729 40.709562018601524, -73.99625203460216 40.70965381115761, -73.99626061348089 40.70968712493894, -73.9962625537307 40.70969618054007, -73.99626240086297 40.70969993566582, -73.99626235227727 40.709701126139706, -73.9962619664018 40.709702742544344, -73.99626131893584 40.709705455762794, -73.99625951521631 40.70970963587606, -73.99625895897736 40.70971045622344, -73.99625620381924 40.70971451833881, -73.99625596831116 40.709714761469066, -73.99625445230195 40.70971632020421, -73.99625255403576 40.70971827335071, -73.99625191141818 40.709718934304824, -73.99624778003286 40.70972201121613, -73.99624313153191 40.70972462884987, -73.99624124871644 40.70972538972014, -73.99623739077873 40.70972695108009, -73.99623668191848 40.70972712845759, -73.9962362771935 40.7097272302021, -73.99622984774773 40.70972883560271, -73.99616221227902 40.70972928272266, -73.9961617625908 40.7097292863097, -73.99615570014181 40.70972832526222, -73.99615120334468 40.70972688969749, -73.9961492129203 40.70972625477073, -73.99614580721853 40.70972464544368, -73.99614515755547 40.709724338347684, -73.99614257783709 40.70972311986995, -73.9961422689842 40.709722916344134, -73.99613726107167 40.709719614903065, -73.9961327348451 40.709715519227274, -73.99613162372434 40.70971410989031, -73.99613003336627 40.70971209359285, -73.99612871398446 40.70971042129963, -73.99612765734551 40.70970822491788, -73.99612572037125 40.7097042040713, -73.9961254920048 40.70970372859384, -73.99612533109763 40.70970314775883, -73.99611756615009 40.709675081272316, -73.99602668169788 40.70934114618858, -73.99601980073761 40.709314467412106, -73.99601994537588 40.709310018892765, -73.99601996553234 40.70930936602297, -73.99602082372138 40.709305394799124, -73.99602105454441 40.709304330403114, -73.99602303936668 40.709299457806694, -73.99602588804227 40.7092948373831, -73.99602954376338 40.70929056008201, -73.99603455090663 40.70928627022019, -73.99603954850393 40.70928329690492, -73.99604172008581 40.70928200564681, -73.99604246090887 40.7092815644219, -73.99604646556895 40.70927993013204, -73.99604910457354 40.709278854112, -73.99605433875617 40.709277397264735, -73.99605461567201 40.709277319830264, -73.99612263083613 40.70927192537887)), ((-73.99620146826965 40.709822688621884, -73.99620807165695 40.709821552394786, -73.99621138751232 40.70982166866987, -73.9962296353676 40.70982230683075, -73.99627034749348 40.709823734566335, -73.99627413664825 40.70982487563637, -73.99627472596714 40.709825053056086, -73.99627679686694 40.70982567627668, -73.99627748321655 40.70982598607464, -73.99628078242841 40.70982747112381, -73.99628268764042 40.70982832937227, -73.99628758316061 40.70983137145621, -73.99629231769865 40.70983515825726, -73.99629583097327 40.70983901615925, -73.99629629837393 40.7098397167718, -73.99629862709482 40.709843201824, -73.99630047176957 40.70984739376174, -73.99630083029211 40.70984820693464, -73.99630112135229 40.7098491821973, -73.9963029245056 40.70985523188769, -73.99630528848259 40.70986316456441, -73.9963079553524 40.70987211032558, -73.99635300469595 40.71002396311769, -73.99635532837635 40.71003323305063, -73.99635726508451 40.71004255159885, -73.99635881127033 40.71005191606076, -73.99635896740931 40.71005318308451, -73.99635997048448 40.71006131382925, -73.99636034655164 40.71006593886519, -73.99636063392393 40.710069470678064, -73.99636073562714 40.71007073139657, -73.99636100034334 40.71007740599179, -73.99636111024853 40.71008016516066, -73.99636109553266 40.71008960071347, -73.99636089765865 40.710094123073006, -73.99636076376696 40.71009720011453, -73.99636068319599 40.71009903175116, -73.99636069006092 40.710103344298126, -73.99636077238932 40.710156025089006, -73.99636004097243 40.71015744337057, -73.99635965987832 40.71015818087693, -73.9963587225284 40.710159999879316, -73.99635521349377 40.71016479318777, -73.99635026899773 40.710169586450604, -73.99634787252486 40.7101712892407, -73.99634502042609 40.71017331620021, -73.9963426026715 40.71017466058622, -73.99634136953371 40.71017534673631, -73.99634016361493 40.71017601757862, -73.99633564411367 40.71017795443374, -73.9963308453547 40.71017944822851, -73.99632585372505 40.71018051967726, -73.99632396619397 40.710180738441125, -73.99632207156249 40.710180957204756, -73.99632166683791 40.7101810040184, -73.99632134850194 40.710181040929164, -73.99632072721433 40.71018111204968, -73.99631259135784 40.710181085674535, -73.9963038839953 40.7101797076136, -73.99629905346094 40.71017800999537, -73.99629799315751 40.71017763805027, -73.99629766654616 40.710177523674886, -73.99629605362034 40.71017671496422, -73.99629317804465 40.71017527495475, -73.99629150714759 40.71017419428784, -73.99628908482035 40.71017262822135, -73.99628446742155 40.71016872165611, -73.99628350776386 40.710167331236306, -73.99628326873687 40.71016698543241, -73.99628055660938 40.7101630600178, -73.99624753613577 40.71010250949362, -73.99623889705454 40.710086667423816, -73.99622996689237 40.710070290440335, -73.99622702176032 40.71006429204066, -73.99622418667178 40.7100585205733, -73.9962189389891 40.71004660844271, -73.99621684231688 40.71004125303541, -73.99621634891271 40.71003999230391, -73.99621601524386 40.71003913770812, -73.99621422502672 40.710034568456884, -73.9962100530675 40.71002241052173, -73.99620609656782 40.710008842393435, -73.99620334817084 40.70999781104412, -73.99620082943218 40.70998539381596, -73.99619496816217 40.709963249158285, -73.99617631245442 40.70989276104742, -73.99617500749316 40.70988717513473, -73.99616670212333 40.70985162899041, -73.996168646747 40.7098462160839, -73.99617017229491 40.70984349749217, -73.99617106703059 40.70984190181656, -73.99617406241755 40.70983801441046, -73.99617580919943 40.70983633951814, -73.99617879269314 40.70983347869398, -73.9961849607807 40.709829078101585, -73.99618986016549 40.70982654242506, -73.99619274770613 40.70982538626455, -73.99619510270843 40.70982444440801, -73.99620146826965 40.709822688621884)))",M178,5757,M178,M-03,M-03,M-03,M-03,Catherine Slip bet. Cherry St. and South St.,103,1,5,10038,M,0.25,False,Catherine Slip Malls,Yes,100003977,PARK,20100106000000.00000,19391001000000.00000,,DPR/CDOT,False,Catherine Slip Malls,Y,Catherine Slip Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M178/,No,65,26,7,{2E450CBC-47F7-4089-9ECD-E96FE776EE5C} +"MULTIPOLYGON (((-74.0020041747784 40.60229459140001, -74.002316907058 40.601994412694154, -74.0026504705955 40.60216906534657, -74.00242528298989 40.60238352064518, -74.0026751679833 40.60251457798078, -74.00257913416932 40.60260603449337, -74.00231963066753 40.60285316758324, -74.00177094370858 40.602518457810284, -74.0020041747784 40.60229459140001)))",B277,5149,B277,B-11,B-11,B-11,B-11,Bath Ave. between Bay 22 St. and Bay 23 St.,311,43,62,11214,B,0.934,False,Benson Playground (PS 200),Yes,100004307,PARK,20100106000000.00000,19550224000000.00000,1939 BATH AVENUE,DPR/DOE,False,Benson Playground,Y,Benson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B277/,No,47,23,11,{FCBCA0B8-07A4-4B9E-AEBE-D999AC6E62ED} +"MULTIPOLYGON (((-73.98134316753715 40.77929293162683, -73.98163281474594 40.77889681035746, -73.98150059859208 40.77936040101146, -73.98140321021678 40.77931866417421, -73.98135815244015 40.77929935373128, -73.98134316753715 40.77929293162683)))",M097,4698,M097,M-07,M-07,M-07,M-07,"Broadway, Amsterdam Ave. and W. 73 St.",107,6,20,10023,M,0.095,False,Verdi Square,Yes,100004106,PARK,20100106000000.00000,18871114000000.00000,2098 BROADWAY,DPR,False,Verdi Square,Y,Verdi Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M097/,No,67,29,10,{6C9E1F87-5377-4034-B444-BA65DB1206DB} +"MULTIPOLYGON (((-73.76188163103468 40.69141360891587, -73.76198850345946 40.691638009047864, -73.76181855664375 40.691685255134566, -73.76171162951685 40.69146074126674, -73.76179247776055 40.691438326392614, -73.76185346621621 40.69142141844784, -73.76188163103468 40.69141360891587)))",Q512,66000,Q512,Q-12,,,Q-12,Linden Blvd. bet. Farmers Blvd. and 190 St.,412,27,113,11412,Q,0.1,False,,No,100042695,PARK,,20021120000000.00000,,DPR,False,Garden,,Garden,,Garden,,No,29,14,5,{429A04BA-3FC8-42D6-A301-9A41B661AB04} +"MULTIPOLYGON (((-73.96451485138267 40.67187988961896, -73.96451476256047 40.67188011201883, -73.96406922107978 40.67174795909062, -73.96392863296002 40.671710575229824, -73.96378725161419 40.671674968564616, -73.96363169157641 40.67163805509905, -73.9634083806648 40.671589134935765, -73.96303074923004 40.67151993567636, -73.96270617851899 40.671465537950574, -73.96266535591663 40.67125453846306, -73.96253301562193 40.670570495450896, -73.96238678535035 40.66981464688485, -73.9623625896655 40.66968958347835, -73.96236042222387 40.66967837945534, -73.96227547157204 40.66923926834305, -73.96535286788617 40.66991872524024, -73.9646270187271 40.67191642024484, -73.96451485138267 40.67187988961896)))",B048,6011,B048,B-19,B-19,B-19,B-19,Eastern Pkwy. at Washington Ave.,"309, 308",35,78,11238,B,12.66,False,Brooklyn Museum,No,100004751,PARK,20100106000000.00000,18931223000000.00000,,DPR,False,Brooklyn Museum,N,Brooklyn Museum,Museum,Managed Sites,http://www.nycgovparks.org/parks/B048/,No,57,21,9,{D68A3EE7-86C4-497D-A78B-249E432E6A7A} +"MULTIPOLYGON (((-74.00186615276677 40.74830574047661, -74.00203777829044 40.74806723039608, -74.0021971978278 40.74813405313086, -74.0022577852696 40.748159459741785, -74.00232980514589 40.74818964867851, -74.00239312556977 40.748216171790375, -74.00252754724477 40.74827251449214, -74.0025713196227 40.74829086944145, -74.00239942310847 40.748529754925606, -74.00186615276677 40.74830574047661)))",M260,4952,M260,M-04,M-04,M-04,M-04,"W. 25 St., 9 Ave. To 10 Ave.",104,3,10,10001,M,0.385,False,Chelsea Recreation Center,No,100004218,PARK,20100106000000.00000,19671201000000.00000,430 WEST 25 STREET,DPR,True,Chelsea Recreation Center,N,Chelsea Recreation Center,Facility,Buildings/Institutions,http://www.nycgovparks.org/parks/M260/,No,75,27,10,{7AD20379-1418-479B-A0F0-E0AAED094D75} +"MULTIPOLYGON (((-73.88821721563274 40.6851864571991, -73.88867050815439 40.684828890795224, -73.88878982324206 40.68472856007599, -73.88919410658178 40.68438860331043, -73.8895529488213 40.68411534224699, -73.88975305670729 40.684364286888254, -73.89015839710297 40.68499626389944, -73.89023535660496 40.68510823616667, -73.89266945926707 40.683582702200326, -73.8926703640423 40.68358353872181, -73.89303708076318 40.68413586141202, -73.89308835712535 40.684105105163084, -73.89391214024766 40.685315028010365, -73.89290421519964 40.68642689868277, -73.88994506266368 40.689969700060935, -73.88989470269591 40.69002363319697, -73.88982916217992 40.69008739439593, -73.88977038080483 40.690139377906426, -73.88969707059911 40.69019837957506, -73.88963181758044 40.69024618833217, -73.88954993863088 40.6903007259455, -73.88945563595122 40.690356946334134, -73.8893583336134 40.69040846127773, -73.88923334944877 40.69046610000799, -73.88913826367218 40.690504181231375, -73.88904328597948 40.690537675262526, -73.88892228660919 40.69057424276999, -73.88580682006166 40.69123603120345, -73.88572688118664 40.691250152057165, -73.88566418416177 40.69125810615803, -73.8856003806745 40.691263467446014, -73.88554302148363 40.691265976877155, -73.88455834802946 40.69112977667852, -73.88354618495599 40.69003405160962, -73.8833433635476 40.68977691332413, -73.88319967282514 40.68959473676114, -73.88321517950034 40.689495744577776, -73.88337535329785 40.68847327595318, -73.88381173439876 40.6879148492433, -73.88374582508361 40.687831760666505, -73.88443608344556 40.68738989187507, -73.88519592708212 40.686896867114854, -73.88566193511173 40.686596440420345, -73.88577534725324 40.68652332412258, -73.8860213901029 40.68637184672111, -73.88618184713265 40.68627935701603, -73.88633723174118 40.686213574935906, -73.88641164508061 40.68618672843529, -73.88648482514762 40.68616159795095, -73.88657493654422 40.686132583081694, -73.88671978602538 40.686089806347866, -73.88693951194686 40.68601113557644, -73.88715575868753 40.685923112733136, -73.88721024224083 40.68589747447191, -73.88732323525672 40.68584596137671, -73.8874380815894 40.68578126104879, -73.88750895549742 40.68573633434928, -73.8875799256792 40.68568336340441, -73.88774096158541 40.685560253694405, -73.88801203320605 40.68534851329975, -73.88821721563274 40.6851864571991)))",Q020,5389,Q020,Q-05A,Q-05A,Q-05,Q-05,"Jackie Robinson Pkwy., Vermont Ave., Highland Blvd. bet. Bulwer Pl. and Cypress Hills St.","305, 405",30,75,"11207, 11208, 11385",Q,101.28,False,Highland Park,No,100000042,PARK,20090423000000.00000,18670101000000.00000,58-02 VERMONT AVENUE,DPR,Part,Highland Park,Y,Highland Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q020/,No,38,12,7,{003CAFCB-5150-4A08-8BB3-2DC5BD76646C} +"MULTIPOLYGON (((-73.92159871579324 40.6073725617421, -73.92067889030719 40.60656469818181, -73.91990200247673 40.60707732998492, -73.91413532003311 40.60194606983771, -73.91252496463046 40.60047509445191, -73.91048027914964 40.59862307710431, -73.91042816945709 40.598547905878, -73.91038182245428 40.59847830345232, -73.91033407016458 40.598400408796735, -73.91029950681555 40.5983334351513, -73.91019312748152 40.59810412936693, -73.91009501333194 40.59787269210338, -73.91000523494021 40.59763929723788, -73.90992386287496 40.59740411954667, -73.90985095470755 40.59716733289362, -73.90964503956994 40.596484854783384, -73.90955534621322 40.59620168588728, -73.90955533680126 40.59620165706316, -73.90954981738165 40.59618423029889, -73.909549910747 40.59618420335668, -73.90934412024481 40.595522320600445, -73.90921942020807 40.59511287044241, -73.90892934774237 40.594128346522616, -73.90880110376054 40.59373473144685, -73.90870954866301 40.593385136830456, -73.90870164052156 40.59335168150871, -73.90864383464765 40.59306066746595, -73.9086127206087 40.59288829966171, -73.90858806271247 40.59275728901642, -73.90856772657828 40.59268550472451, -73.9085373743446 40.59256957150079, -73.9084573330139 40.59224745897495, -73.908423615634 40.592048828866915, -73.90839760618509 40.59184952679566, -73.90837932680502 40.59164972658519, -73.90836879490688 40.59144960115353, -73.90837398598903 40.59144753228777, -73.90836615559061 40.59132499991384, -73.90836269003509 40.59115860291556, -73.90836746630265 40.59099222509451, -73.9083804792827 40.59082610238286, -73.90840170968627 40.5906604734012, -73.90843112641713 40.59049557315697, -73.90843377713743 40.590482698682465, -73.90843498407189 40.59047690927753, -73.90848068033489 40.59027970940121, -73.90853506753194 40.59008379516506, -73.9085980862195 40.589889390739984, -73.90866966278895 40.58969671488062, -73.90867584395065 40.589695270850854, -73.90872015549168 40.58958033080119, -73.90876763164803 40.589466127172734, -73.90884730097913 40.589290948492604, -73.90893441722696 40.58911784235865, -73.90902888795405 40.58894699238784, -73.90913061127772 40.58877858128784, -73.90923948060127 40.58861278635859, -73.90935538106322 40.58844978489244, -73.90947818718239 40.588289748769526, -73.90960776875687 40.58813284986543, -73.90974398969173 40.58797925374689, -73.90988670444895 40.587829124171584, -73.90988738180468 40.58782962089142, -73.90995807847484 40.58775774157177, -73.9099581115929 40.5877577091789, -73.91011398393239 40.587606940351314, -73.91027626190008 40.58746015212557, -73.91044477162978 40.58731750373188, -73.91061932982045 40.58717914718898, -73.9107997496354 40.58704523271184, -73.91098583716442 40.58691590420671, -73.91112230393804 40.58682629065381, -73.91126149330165 40.586739143774956, -73.91143584297842 40.586667421891555, -73.91245495757357 40.58611041389115, -73.91347895267208 40.58555864246063, -73.91364373502516 40.58547058261841, -73.91379340352402 40.58539635405519, -73.91394616155932 40.585325879193604, -73.9141018484099 40.58525923264469, -73.91410246391153 40.585260069691586, -73.91416768530422 40.58523255339353, -73.91439829889755 40.58513915829458, -73.91463209735886 40.58505048564549, -73.9148689140986 40.584966598340195, -73.91510858017244 40.584887555669944, -73.91550464430753 40.584784988866005, -73.91590342306905 40.584688729953776, -73.91630474287176 40.58459882200381, -73.91670843014082 40.58451530268574, -73.91711431012322 40.58443820967059, -73.91711437026112 40.584438291661634, -73.9171405923303 40.58443345314855, -73.91719072662056 40.58442430034565, -73.91756681638456 40.584359681729865, -73.91794479994498 40.58430184688313, -73.91832446948834 40.58425082715737, -73.9187056101188 40.58420665210107, -73.91908801285634 40.584169344966135, -73.91947146281782 40.58413892810244, -73.91985574749171 40.58411541756057, -73.92024065319085 40.58409882579118, -73.92062596505095 40.58408916254534, -73.92101146821277 40.584086433974825, -73.9210106822527 40.58409183837956, -73.92117636934519 40.58408738470973, -73.92154829964353 40.58408170571533, -73.92192030439654 40.58408199784272, -73.92229221834005 40.58408826187989, -73.92266387739541 40.584100495015676, -73.92303511630644 40.58411869083801, -73.92340576981765 40.58414284203658, -73.9237756750392 40.58417293770255, -73.92414466672115 40.58420896422612, -73.92452823402913 40.58424949365458, -73.92491113877733 40.58429352080511, -73.92529332433455 40.5843410402444, -73.92550294228882 40.58437634360964, -73.92594511171916 40.58445081101401, -73.92629448959188 40.58451753485834, -73.92636883502327 40.58453346506677, -73.92644180428474 40.584552739792386, -73.92651314114718 40.58457529043412, -73.92559054300166 40.58468755660704, -73.9208490440666 40.58480796339051, -73.91929634507365 40.58497908776321, -73.91799876008561 40.5855295868395, -73.91735488157542 40.58595757226923, -73.91723275843917 40.586046517358334, -73.91768276038019 40.58637647018845, -73.91781275597786 40.586493131555464, -73.9180036695122 40.58666445933614, -73.92744999538259 40.595140168765894, -73.9269857748783 40.595458463576115, -73.92752106633355 40.5959386686092, -73.92760676896842 40.59587990587552, -73.9283350028088 40.5965331820014, -73.92871352233976 40.59627364359386, -73.92927359827831 40.59677605817642, -73.92785281499806 40.59775022415659, -73.93321913097927 40.602568356454505, -73.92628074438613 40.607192891087784, -73.92444819090639 40.605531465337954, -73.92159871579324 40.6073725617421)), ((-73.93604735337446 40.609380665902094, -73.93422077642217 40.60774266842395, -73.93350702197976 40.60821337651716, -73.93004500601192 40.60510326094643, -73.93427251716064 40.60237152059691, -73.93835842405375 40.60603903131141, -73.93810682315267 40.60620224627656, -73.93789341570847 40.606596993812715, -73.93835514066122 40.6070114059084, -73.93849500859461 40.60692067221466, -73.93905914659993 40.60742699125134, -73.93604735337446 40.609380665902094)), ((-73.90531727544308 40.59382448664363, -73.90750730492402 40.592523775765905, -73.90749204355137 40.59229268106253, -73.90748568847752 40.5920613440778, -73.90748824405816 40.591829964732916, -73.90749970755617 40.591598746543525, -73.90752007507707 40.591367875912304, -73.90752009538849 40.59136771023233, -73.9075493214276 40.5911375653378, -73.90754936671668 40.59113727630619, -73.90758742380544 40.590908007507146, -73.9075874737695 40.590907754500236, -73.90763434758826 40.590679401399505, -73.90763438798845 40.5906792303325, -73.9076900534328 40.590451944187265, -73.90771500010328 40.59036441261888, -73.90771529154527 40.59035952481081, -73.9077738759179 40.59016348733156, -73.9078390001464 40.5899686536615, -73.90791062265896 40.58977514982969, -73.90798869598048 40.58958310095882, -73.90807317027416 40.589392633069316, -73.90814603261695 40.5892191514166, -73.90822567729643 40.589047411342115, -73.90831203200017 40.588877565863214, -73.90840501851223 40.588709767991574, -73.90840508718622 40.58870965007773, -73.90850334756307 40.58854610139711, -73.90860790860683 40.58838483866867, -73.90871867913283 40.58822600408557, -73.90883556205856 40.588069736233734, -73.90895845440211 40.587916170992024, -73.90908724964133 40.58776544423621, -73.90922183535885 40.587617686433695, -73.90922188977355 40.58761762884317, -73.90937506825534 40.587458762276775, -73.90953469632181 40.58730362875128, -73.90970061664464 40.58715238210591, -73.90978663905388 40.58707877782027, -73.91005797104908 40.58687484807498, -73.91033551385179 40.586675835791596, -73.91061911494408 40.58648185157116, -73.91090861709458 40.58629300240953, -73.9112038595368 40.58610939349941, -73.91150468033682 40.585931124630164, -73.91181091284314 40.58575829468805, -73.91212238805177 40.5855909998568, -73.91243893342602 40.58542933271645, -73.91276037407852 40.5852733813439, -73.91308653276674 40.58512323291508, -73.91341722989739 40.584978970102775, -73.91375228116273 40.58484067197583, -73.91409150344393 40.58470841580445, -73.91443470772732 40.58458227435359, -73.91478170500807 40.58446231768834, -73.91513230393056 40.58434861047093, -73.91548631078165 40.58424121736371, -73.91584352949852 40.58414019672585, -73.91620376284348 40.584045605116536, -73.91656681240882 40.5839574936934, -73.91693247743034 40.5838759118135, -73.91730055597216 40.583800904332804, -73.91775985442527 40.58372305050905, -73.91822107452582 40.5836521131426, -73.91868403920289 40.58358812090181, -73.91914856666992 40.58353109705124, -73.91914865172494 40.58353108720536, -73.9191487367745 40.583531081862056, -73.91952194532497 40.58349043307306, -73.91958397956624 40.583490366644156, -73.91997438640084 40.583460545516736, -73.9203656124338 40.583437801749874, -73.9207574357183 40.583422146888886, -73.9211496354908 40.58341359158237, -73.92154199217906 40.58341213837809, -73.92193428384765 40.58341779072558, -73.92232628739049 40.583430543071486, -73.92271778442573 40.58345038986858, -73.92310855303559 40.583477318366135, -73.92349837248348 40.58351131491653, -73.92388702321978 40.58355235957233, -73.92427428569627 40.58360042968751, -73.92465994273113 40.58365549721718, -73.9250794012703 40.58370977772776, -73.92550024631613 40.583757410837734, -73.92592229823396 40.58379837480363, -73.92634537383893 40.58383265238489, -73.92676929112292 40.58386022904597, -73.92719386925478 40.583881092956304, -73.92761892267383 40.583895235887084, -73.92804427054344 40.583902649615155, -73.92846972847519 40.58390333312202, -73.92889511326273 40.58389728449215, -73.92932024169295 40.583884508116284, -73.92974493055415 40.5838650074874, -73.93016899780966 40.5838387924056, -73.93059225906049 40.5838058735726, -73.93101453344846 40.58376626529717, -73.93143563775165 40.58371998459081, -73.93185539229044 40.5836670511713, -73.93192414353345 40.58399412439807, -73.93012684587505 40.584190937375034, -73.92959949002434 40.58419631487375, -73.92907209325385 40.584194540667305, -73.92854481991473 40.58418561485724, -73.92756790608587 40.58413802191638, -73.92714524713502 40.58410816887513, -73.92621005682163 40.58402390799265, -73.92621404157148 40.584024353609536, -73.92598095020419 40.5839994662888, -73.92592131791363 40.58398681781943, -73.92592118919205 40.58398679522335, -73.92592106991879 40.58398677353385, -73.92539471872173 40.583904916632996, -73.92477044193123 40.58380780860723, -73.92368712756812 40.58370075940838, -73.92168123349246 40.583605467827546, -73.92087093773969 40.5836042309323, -73.91948719007206 40.583674481245225, -73.91858450025904 40.58377275510059, -73.9182654379669 40.58381102777301, -73.91776546691834 40.583887379455355, -73.91749350557313 40.58393550840383, -73.91722056948676 40.58399403075553, -73.91745102527459 40.58394302608355, -73.91711997128074 40.58401291786652, -73.91711907453788 40.58401311173281, -73.91685795501456 40.5840728484487, -73.91685784158933 40.584072875382354, -73.9167049022148 40.5841097851527, -73.91642326898686 40.584181519898515, -73.91594109928805 40.58431593427576, -73.91594065619076 40.5843160609255, -73.91583414340195 40.58434777234934, -73.91550040706267 40.584452006188954, -73.91550037397629 40.58445201697092, -73.91528059466452 40.58452476965622, -73.91424653054791 40.584913328784246, -73.91389168334317 40.585065376225174, -73.91317535086475 40.58541464749142, -73.912835543401 40.585591105429636, -73.91254875061337 40.58573615642746, -73.91226430012175 40.585883865943146, -73.91198223682291 40.586034211515305, -73.91170292832297 40.58618698902497, -73.91142608383022 40.58634235225757, -73.91108735898968 40.58653792487489, -73.91075253798054 40.58673736727401, -73.91072965003114 40.586751229268465, -73.91038795392393 40.586961721893225, -73.91020200046367 40.587093167567446, -73.91002156137064 40.587229006411256, -73.909846815186 40.587369106213664, -73.90967793692307 40.58751332665624, -73.90951509215434 40.587661524711834, -73.90935844173464 40.587813555548486, -73.90920814062751 40.58796926712524, -73.90906433907901 40.58812850559616, -73.90892717907482 40.588291114406935, -73.90874348815845 40.58852804685585, -73.90864336898781 40.588668376060106, -73.90854828937202 40.588810727260345, -73.90852888034219 40.588840877555114, -73.90852890383762 40.588840972128786, -73.90843094559861 40.5890009955174, -73.90833933905462 40.58916318964695, -73.9082541647675 40.58932740961251, -73.90817550094562 40.58949350600383, -73.90810341871217 40.58966132940409, -73.90803798329046 40.58983072768929, -73.90797925281932 40.590001547828166, -73.90793981287136 40.590129902089714, -73.90794006058908 40.590130155335295, -73.90791672649674 40.59020672527196, -73.90785992431086 40.5904469610499, -73.90777178610364 40.59111212691564, -73.90776929683292 40.59145616542943, -73.90776929677696 40.59145620595296, -73.90776831128335 40.59159240754158, -73.90777103158842 40.59159342281398, -73.90777833412632 40.59175012696742, -73.90779130606334 40.59190661684036, -73.90780993696909 40.59206277535442, -73.9079083802532 40.59256270873757, -73.90790840374905 40.592562803311374, -73.90793789375289 40.59267184970893, -73.90794039348792 40.59267094128243, -73.90803245576818 40.593025191750804, -73.90808667438029 40.5932693084814, -73.90808429229286 40.5933357787073, -73.90809990098084 40.593459521297675, -73.90807899412246 40.59362062891177, -73.9080534727604 40.5937037430058, -73.90801947416487 40.593785074476465, -73.90797720809655 40.59386412099219, -73.9079274657709 40.59394449517683, -73.90786973711185 40.59402170390104, -73.90780436650508 40.594095287261794, -73.90773174320309 40.59416480700379, -73.90765230014173 40.594229848320126, -73.90756651039149 40.59429002345168, -73.90747488715397 40.59434497438927, -73.90737797431073 40.594394372866496, -73.90727635114254 40.59443792486625, -73.90717062287915 40.59447536971336, -73.90706141951014 40.594506485476735, -73.90693831479568 40.59452765440622, -73.90681358180069 40.5945422687757, -73.90668781960345 40.594550257925015, -73.90657149210165 40.59454946640128, -73.90645554334799 40.59454226244195, -73.906340582899 40.59452868346641, -73.90622721199392 40.59450880020897, -73.90611602473382 40.5944827176204, -73.9060076045405 40.594450572163204, -73.9059371991703 40.59442753320042, -73.90586587836226 40.594398587812854, -73.90577361973314 40.59435939166768, -73.90527550880208 40.593908118044276, -73.90523784184765 40.59387399227478, -73.90531727544308 40.59382448664363)), ((-73.9181185829178 40.58396356473744, -73.91845983658155 40.58391747906787, -73.91880236067365 40.58387724488791, -73.91914598162775 40.5838428818757, -73.91949052942314 40.58381440881313, -73.91983582696109 40.58379183817571, -73.91983587539183 40.58379183550793, -73.92035589554048 40.583769228389905, -73.92087634088377 40.58375331911012, -73.92139706511043 40.58374411116467, -73.92191791954608 40.58374160895131, -73.92243875434168 40.583745811466464, -73.92279904324572 40.58375670101342, -73.92315888407703 40.58377421068392, -73.92351806670757 40.583798330436416, -73.92387638101359 40.583829045729374, -73.92423362041666 40.583866339324594, -73.92458957716187 40.58391018858251, -73.92494404349362 40.583960569965555, -73.92529681402564 40.5840174518355, -73.92564768336949 40.58408080255657, -73.9259964473223 40.584150584192436, -73.92634290286043 40.58422675790942, -73.92668684932754 40.584309277673505, -73.92702808606408 40.58439809745279, -73.92736641595907 40.58449316311524, -73.92699950041842 40.58453332898203, -73.92663964816323 40.58445599872667, -73.92627766636305 40.584384679675594, -73.92591372852154 40.584319405240166, -73.92554800695866 40.58426020883297, -73.92518067754459 40.58420711576638, -73.92481191378216 40.58416015405487, -73.92444189390505 40.58411934451408, -73.92407079260283 40.58408470705893, -73.92369878693009 40.584056258006086, -73.92332605630561 40.58403401097446, -73.92291241642128 40.58400967489447, -73.92249830900597 40.58399050601743, -73.92208384498791 40.58397650891625, -73.92166913647593 40.583967688166254, -73.92125429440063 40.58396404564188, -73.92102924157446 40.58396423697908, -73.92102855683909 40.58396894534856, -73.92059776763945 40.583983426945935, -73.92016745803457 40.584004631474386, -73.91973780862247 40.5840325509607, -73.91930899764509 40.584067172930204, -73.91888120807344 40.58410848221263, -73.91845461579413 40.58415646273473, -73.91802940260676 40.58421109392752, -73.91760574559025 40.5842723534202, -73.91718382301248 40.58434021434271, -73.91713080514823 40.58434778914582, -73.91683293215999 40.5843943129164, -73.91653692282667 40.5844473048321, -73.91624302044072 40.58450672276007, -73.91595146476304 40.58457251736301, -73.91566249201868 40.58464463570118, -73.91537633962514 40.584723018534255, -73.915093241467 40.58480760121843, -73.9148699595581 40.584879404978395, -73.91464888104248 40.58495506688546, -73.91443011815322 40.585034546512205, -73.91439800418546 40.58495992948688, -73.91468140078693 40.584843567444295, -73.91496899709131 40.58473335928984, -73.91526056389793 40.58462939307442, -73.91555586847576 40.584531750544556, -73.91585467455877 40.58444051074464, -73.91615674353001 40.58435574731629, -73.91646183442364 40.58427752669747, -73.91676970273916 40.58420591172375, -73.91710416253244 40.584136682591286, -73.917440575266 40.58407319382878, -73.91777877207383 40.58401547861771, -73.9181185829178 40.58396356473744)), ((-73.9083833459406 40.594911849512485, -73.90839709940776 40.59478947306813, -73.90840709051243 40.59466688470064, -73.90841418098891 40.59451701176699, -73.90841564953809 40.59436704519846, -73.90841182198182 40.59436618124771, -73.9084059558034 40.59419451702644, -73.9083938660995 40.59402304145346, -73.90837556218827 40.5938518860106, -73.90835105811277 40.59368118218243, -73.90833048620682 40.593563410642275, -73.90830580382129 40.59344701451839, -73.9082768904103 40.593331185041954, -73.90824376831533 40.593216013180474, -73.90822012736999 40.593127678173815, -73.90817655780448 40.592945542231426, -73.90813761363908 40.59280611999048, -73.90809436050267 40.59261497722881, -73.90809602698987 40.59261437160887, -73.90807874988826 40.592545990952466, -73.90803735119206 40.59236211236918, -73.90800310198523 40.592177382193356, -73.90797603270413 40.59199195984841, -73.90795616432708 40.59180600925146, -73.90794351665433 40.591619691615904, -73.90793809885002 40.591433170846734, -73.907940311828 40.59122122270156, -73.90795031991875 40.59100940596954, -73.90795658122899 40.59085821217934, -73.90797140277624 40.59070736474013, -73.90799475930523 40.59055714729351, -73.90802660666846 40.59040783806068, -73.9080668841787 40.59025971794952, -73.90806915611576 40.5902620386155, -73.90808112248878 40.59021392420653, -73.90813321128161 40.590027159441, -73.90819389259201 40.58984190718979, -73.9082630904327 40.58965839971384, -73.90834072056056 40.589476862061645, -73.9084266845584 40.58929752106982, -73.90852087693267 40.58912059816462, -73.90862318156645 40.58894631206091, -73.90873346935473 40.58877488056142, -73.90875559193115 40.58874967175956, -73.90882021477624 40.588649883791966, -73.90893053473488 40.58849137824282, -73.9090482822537 40.58833600868596, -73.90917330345894 40.58818397939597, -73.90930543740662 40.588035485635864, -73.90944451016335 40.58789072355842, -73.9095903419096 40.58774987850504, -73.90974274219909 40.58761313670897, -73.9099015135185 40.58748067359147, -73.91006644773044 40.587352663665115, -73.91023733081043 40.58722927153209, -73.91041394165491 40.58711065998851, -73.91059604854959 40.586996981016306, -73.91078341506339 40.58688838479346, -73.91081140087365 40.58691277199441, -73.91066212686387 40.58702174008576, -73.91051640885468 40.58713347085744, -73.9099210792011 40.58764363691682, -73.90980013682207 40.5877504207078, -73.90968630731099 40.58786165674818, -73.90957987100798 40.58797706791825, -73.90948109173098 40.588096370781244, -73.9093902132403 40.588219269276635, -73.9092566224153 40.58837749754363, -73.90913013510722 40.588539082120256, -73.90901089334824 40.58870383943538, -73.9088990368225 40.588871578711185, -73.90882900966942 40.588984338979884, -73.90881075075376 40.58901485584686, -73.90881142151174 40.58901499686088, -73.90872298050981 40.58917714878131, -73.90864109233188 40.58934128969539, -73.90856583755536 40.589507265691616, -73.90849728377016 40.58967492014561, -73.9084919799538 40.58968867412233, -73.9084718488816 40.589742101466115, -73.90842453477943 40.58987630572916, -73.90840681978973 40.58993022847316, -73.90840246943489 40.5899438238128, -73.90835727888738 40.59009444538377, -73.90830108054871 40.59030821997644, -73.90825379287288 40.59052324437506, -73.9082154634915 40.59073930250291, -73.90818613058796 40.59095617827364, -73.90816582526332 40.5911736528917, -73.90815456562305 40.59139150935, -73.90815209410559 40.59153597926172, -73.90815494258914 40.5915348441773, -73.90816417786277 40.59168780817612, -73.90818252048399 40.59184029496778, -73.9082099307838 40.591991989333025, -73.90824635373342 40.59214257693872, -73.90839429000272 40.59269189718942, -73.908435978428 40.59287814154313, -73.90845381423888 40.5929546471103, -73.90847476445214 40.59305327200869, -73.90848895372537 40.593137449825186, -73.9084983077914 40.59321737421948, -73.90851950748582 40.59334009010629, -73.90854205137795 40.59350351431426, -73.90855458471017 40.59365835036316, -73.90856174747609 40.59381338475279, -73.90856353506109 40.59396850941768, -73.90855994639428 40.59412361629442, -73.90855584043038 40.59420615318923, -73.90855857011081 40.59421076063737, -73.90855495563936 40.594301017207954, -73.90853476498627 40.59453840338202, -73.90853475062505 40.59453853844908, -73.90851170946152 40.594702462163, -73.9084941333439 40.5948015759638, -73.90848036528847 40.59487007950731, -73.90848199731245 40.59486966116329, -73.90847212560931 40.594925041782105, -73.9083833459406 40.594911849512485)), ((-73.91030358346431 40.598463024476885, -73.90887140901356 40.59716571111175, -73.90889772992205 40.597172194133904, -73.90893651663245 40.597178887845395, -73.90898396960371 40.59718245548831, -73.90902824201794 40.597183601789084, -73.90909668251257 40.5971810777501, -73.90916420895405 40.59717221596748, -73.9092298169564 40.59715714982745, -73.90929252800443 40.5971361027911, -73.90935140717546 40.597109388408285, -73.90940557850502 40.59707740582655, -73.90945423445172 40.59704062989226, -73.90949664889554 40.596999609359614, -73.90953219251072 40.59695495609574, -73.90956033277993 40.59690733427387, -73.9095806529056 40.596857453183496, -73.90959284827818 40.59680605732177, -73.90959468007128 40.59670698591999, -73.9095474239008 40.59645284274134, -73.90949431978139 40.59627837321355, -73.909485765703 40.596250271056654, -73.90941335978289 40.59606507366029, -73.90934924044866 40.59591987678427, -73.90931434459665 40.59587410808067, -73.90927345400922 40.595831318967186, -73.90922700518084 40.59579196454634, -73.9091754901767 40.59575646304319, -73.90911945663977 40.59572519040211, -73.90905949834128 40.595698479379465, -73.9089962528268 40.595676613238346, -73.90893119156277 40.59566256306479, -73.90886446153786 40.59565421634499, -73.90879692144183 40.59565168182041, -73.90872943833875 40.59565499079608, -73.90866288057373 40.59566410163768, -73.90859810360276 40.59567889615814, -73.90853594053505 40.59569918501323, -73.90847718913925 40.5957247076908, -73.90845344210481 40.59573959153289, -73.90836552652885 40.59570974476431, -73.90842686408664 40.59553769558052, -73.90848156266229 40.59536434972411, -73.9085295736638 40.59518985665259, -73.90857085558902 40.59501436582806, -73.90860537520422 40.594838028519206, -73.90860916395454 40.594837057166345, -73.90863328903504 40.59467254085215, -73.90865214691065 40.59450762591434, -73.90866572803745 40.594342408703774, -73.90866574010586 40.59434222230507, -73.90866954334705 40.59427881228102, -73.90868001198206 40.594083045941396, -73.90868303597277 40.593887130498196, -73.90867861515943 40.59369123074766, -73.90866675292723 40.59349551058679, -73.90867533261368 40.59349487713361, -73.9087270625295 40.593662069770275, -73.90877396446032 40.59382762319779, -73.90885167627022 40.59406130852194, -73.90894812549948 40.59437414571892, -73.90894867379068 40.59437403809058, -73.90987462483261 40.59735924390313, -73.91007061245777 40.59795696015647, -73.91013437504475 40.59812054679848, -73.91017526317553 40.598221061812424, -73.91023077728399 40.59833744644475, -73.91027398110363 40.59841698645007, -73.91030358346431 40.598463024476885)), ((-73.9087395403532 40.59571021349478, -73.90880641893719 40.595707559614276, -73.90887319288308 40.59571145781821, -73.90893876126238 40.595721843297234, -73.90900204455467 40.5957385449996, -73.9090620000014 40.595761287444425, -73.90911763931655 40.59578969703862, -73.90916804758393 40.59582330479324, -73.90921239387292 40.595861558038024, -73.9092499454073 40.59590382583502, -73.90928008645037 40.595949411600415, -73.90936728974866 40.59611550084823, -73.90943283202236 40.59628135683215, -73.90946984832779 40.59642763905075, -73.90950828871921 40.59659458037541, -73.90952186293279 40.59673923397556, -73.90951862126852 40.59678888086034, -73.90950711202832 40.59683780982155, -73.90948752411666 40.59688522314212, -73.90946017635805 40.59693034932089, -73.90942551157632 40.5969724538746, -73.90938409658003 40.59701085104513, -73.90933660442487 40.597044916393216, -73.90928380849618 40.59707409489914, -73.90922656831755 40.597097911758475, -73.90916581536487 40.59711597867493, -73.90910253887803 40.59712800195434, -73.90903776931395 40.59713378699475, -73.9089725606259 40.59713323737205, -73.90892882060542 40.5971298221537, -73.90887145861836 40.597119843011576, -73.90882497402698 40.59710879184369, -73.90880105773248 40.597101982922766, -73.9080883419211 40.596456353333224, -73.90809548834241 40.59644502236372, -73.90811627813986 40.596405654611445, -73.90813302779571 40.596373865129394, -73.90832514590409 40.59594052293966, -73.90835673735722 40.59589551207559, -73.90839563317603 40.595853956029046, -73.90844119092935 40.595816539578955, -73.90849266077964 40.59578387987924, -73.90854919376885 40.59575651475916, -73.90860985954961 40.59573489463358, -73.90867365938963 40.59571937530934, -73.9087395403532 40.59571021349478)), ((-73.90737581860756 40.59464372331657, -73.90745110276265 40.594638444770744, -73.90752668863018 40.59463964388211, -73.90760161935798 40.594647306372806, -73.90767664350801 40.594659184238935, -73.90774941070201 40.59467748367654, -73.90781897738471 40.59470196889632, -73.90788444381981 40.59473232219869, -73.9079449611687 40.594768150282405, -73.9079997444779 40.594808988757435, -73.90804808330155 40.594854309356755, -73.90808935350947 40.594903523547664, -73.9081230184528 40.594955994238745, -73.90814864313349 40.5950110411939, -73.90816589419154 40.595067950937676, -73.9081745493422 40.59512598756883, -73.90817449500817 40.595184397260645, -73.90813136966703 40.5953783003649, -73.90807969029387 40.595570984503425, -73.90801951854999 40.59576223088701, -73.907950919641 40.595951822528576, -73.90787397413315 40.59613954245174, -73.90785387562335 40.59618558359179, -73.90783649424894 40.59622820672056, -73.90680950069782 40.595297842274746, -73.90680781794069 40.5952592615959, -73.90680491491801 40.59521977850357, -73.90680331836066 40.595171072411375, -73.90680453525275 40.59511344981878, -73.90681423245641 40.59505629607136, -73.90683228962564 40.59500033328906, -73.90685847656765 40.59494627089363, -73.90689246153296 40.594894792107944, -73.9069338159502 40.59484654765636, -73.90698201679888 40.59480214946335, -73.90703645253515 40.5947621571511, -73.90709643608723 40.59472707805048, -73.90716120723293 40.59469735639715, -73.90722994796569 40.59467336704082, -73.90730178840323 40.59465541364959, -73.90737581860756 40.59464372331657)), ((-73.90673379085251 40.59522925463983, -73.90593300664798 40.594503789681575, -73.90599484571288 40.59452713141937, -73.90605302727256 40.59454634033398, -73.90613901664072 40.59456975396567, -73.9062424164801 40.594590871897154, -73.90634762169478 40.59460594599423, -73.90645402398515 40.594614888406, -73.90656100909294 40.594617647299934, -73.90666796152595 40.59461420776618, -73.9067742622013 40.59460458821361, -73.90687965570102 40.594592332896546, -73.9069835841873 40.594574213890596, -73.90709488788455 40.594550924545885, -73.90720355413181 40.59452126806527, -73.90730895655042 40.59448541505032, -73.9074104888 40.59444357124123, -73.90750756575798 40.59439597931857, -73.90759962825555 40.594342911702455, -73.90768614543587 40.59428467415639, -73.90776661948195 40.59422160398942, -73.90784058680958 40.594154061952246, -73.90790762160245 40.594082438543154, -73.90796733818469 40.59400714680553, -73.90801374945288 40.59393940608061, -73.9080542014269 40.59386948130209, -73.90808852004892 40.59379767491285, -73.90811655605542 40.59372430108165, -73.90813818616815 40.59364967849964, -73.90815331663622 40.593574131283944, -73.90815670524829 40.59357201145888, -73.9081813981192 40.59369351358914, -73.90819402334671 40.593757728287144, -73.90819548613729 40.59375751152913, -73.90822293802461 40.59391134373831, -73.90824152774782 40.5940659451135, -73.908251220214 40.59422101845832, -73.9082519956868 40.59437626658667, -73.90822762383435 40.59468018992989, -73.90822277274235 40.59474069311187, -73.90807022729065 40.59478859788384, -73.90802071882649 40.594745090011095, -73.90796545968686 40.59470580997042, -73.90790506829258 40.59467119770452, -73.90784021983752 40.59464164007133, -73.90777163920575 40.59461746723666, -73.9077000938866 40.59459895086781, -73.9076263833543 40.594586296020694, -73.90755133197462 40.594579645637126, -73.90747577956395 40.59457907423355, -73.90740056957794 40.59458458699133, -73.907321576747 40.59459361319236, -73.9072443068638 40.59460903894749, -73.90716965089243 40.59463068667635, -73.90709846682132 40.59465830763275, -73.90703157493648 40.594691583701405, -73.90696974482243 40.59473013098943, -73.90691368944589 40.594773507025096, -73.90686405334259 40.59482121074767, -73.90682140787561 40.594872694210075, -73.90678624532441 40.594927365275026, -73.90675896824587 40.59498459210872, -73.9067398929962 40.59504371849201, -73.90672923791867 40.59510406200954, -73.90672703285027 40.5951493529351, -73.90672801959705 40.595194799540096, -73.90673379085251 40.59522925463983)), ((-73.92712162192687 40.58428636758049, -73.92695054879894 40.58423774861794, -73.92676908484997 40.584188378945264, -73.92657652830486 40.58413843366685, -73.92638299747905 40.584090729745725, -73.92674919795815 40.58412771778136, -73.92711620035561 40.58415974957482, -73.92748389121091 40.584186814240724, -73.92748963597668 40.584187203290575, -73.92784501274679 40.58420947994801, -73.92820079820956 40.584227572827764, -73.92855690843956 40.58424147827188, -73.92862212784374 40.584243570200634, -73.92862215065355 40.58424322621464, -73.92944410882289 40.58426569318123, -73.92768038355997 40.584458791853216, -73.9274021865674 40.584370348856545, -73.92712162192687 40.58428636758049)), ((-73.92854525596857 40.584187632302054, -73.92841464459212 40.58418256659974, -73.92854499504497 40.584186421835625, -73.92854525596857 40.584187632302054)))",B057,6444,B057,B-18,B-18,B-18,B-18,"Shore Pkwy., Avenue U, Filmore Ave. bet. Brigham St., Gerritsen Ave., and Flatbush Ave.","315, 318","46,48",61,"11229, 11234, 11235",B,798,False,Marine Park,No,100004993,PARK,20100106000000.00000,19200103000000.00000,,DPR,True,Marine Park,Y,Marine Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B057/,Yes,59,22,"9, 8",{6685B699-BE8E-4D7E-A14A-EB608A7D84FC} +"MULTIPOLYGON (((-73.83460789671068 40.79171884688307, -73.83403124063229 40.790435890341016, -73.83391575702572 40.790431529446245, -73.83357918207155 40.79041881962838, -73.83317128748952 40.79040341577184, -73.8326701533914 40.790453486629985, -73.83210109778304 40.79051034072361, -73.83174134543516 40.790546282825574, -73.83172344234707 40.79045360041735, -73.83173150281185 40.79043293845664, -73.83174124596773 40.79040889846657, -73.83175414316445 40.79037687112302, -73.83176471996576 40.790356762139304, -73.83176220853471 40.79033550572113, -73.83175397716404 40.790310344480126, -73.83171974132213 40.79025142146545, -73.83170470970576 40.79022555060133, -73.83167001872074 40.79017703941349, -73.83161885854973 40.78991218550696, -73.8315998986015 40.78974469319992, -73.83163837936385 40.7897258037512, -73.83166693823715 40.78970091776201, -73.83168360481118 40.7896775614617, -73.83168979134759 40.789664189932836, -73.83169433584614 40.78964936709758, -73.83169704346071 40.7896258067075, -73.83169352187814 40.78960250016753, -73.83169199412227 40.78959755597987, -73.83169276559099 40.78959749407131, -73.8316912655018 40.789595197400814, -73.83168625916365 40.789578996356916, -73.83167897919333 40.78956372581319, -73.83167114921305 40.78955137029207, -73.83166097708619 40.789538927602806, -73.83165774732555 40.78953610341263, -73.83165516304032 40.789539936678246, -73.83164587689721 40.7895257221927, -73.83161402994506 40.78950575385582, -73.83159059471777 40.789496732601314, -73.8315682874119 40.78949099892332, -73.83152545174688 40.78948446980799, -73.83152534020448 40.789484068921425, -73.83145199098217 40.78947145189963, -73.83138422377539 40.78945495282769, -73.83136493681471 40.78935557308743, -73.83127460458726 40.7893617182823, -73.83120930508706 40.78934444288454, -73.8311589860047 40.78930766740597, -73.83112395988823 40.78926784270087, -73.83109272216969 40.7892212688687, -73.83106234612288 40.789149372362985, -73.83103645652541 40.78903424030102, -73.83096526057189 40.78868053652023, -73.83096170834122 40.78866288866644, -73.83092484880282 40.78847976244958, -73.83092321749375 40.78846617417564, -73.83092514435212 40.78845529082794, -73.83093047741342 40.78844396852933, -73.83093829405115 40.788434411256496, -73.83094931563666 40.78842575108207, -73.83096157746381 40.78841951507736, -73.83097710990126 40.78841491287688, -73.83099269433865 40.78841316174144, -73.83117767328218 40.7883907293818, -73.83132159838229 40.78837327495893, -73.8314793338324 40.78835420974074, -73.8314695500312 40.78829796896003, -73.83146696770984 40.788280915069855, -73.83146938462711 40.78826876542252, -73.83147561879227 40.78825807386741, -73.83148519175035 40.788248293099336, -73.83150025755019 40.78823797645774, -73.83150981473939 40.788233019656396, -73.83214727004403 40.78813213900335, -73.8322557875114 40.78811496412628, -73.83236091627106 40.78809832632052, -73.83302830375165 40.78799270356258, -73.83314237367061 40.78797464980065, -73.83324279179466 40.787958757190765, -73.83374384579405 40.787879454325044, -73.83391332212823 40.78785263047619, -73.83400742606973 40.787837736663626, -73.83409932778126 40.787823190800204, -73.83427754027721 40.787794984112786, -73.8344408979461 40.787769127735174, -73.8345445713183 40.7877527181772, -73.83506779811616 40.78777988978691, -73.83506157294191 40.787817332776335, -73.83506017780869 40.78782572436336, -73.83505375777635 40.787864344029984, -73.83501910777338 40.788072772460126, -73.83500001228542 40.7881876393292, -73.8350267312133 40.7881853975063, -73.83505844742193 40.78818273599101, -73.83513567123381 40.78817625660724, -73.83520448130693 40.7881704819413, -73.83528004604871 40.78816414056685, -73.83535536665764 40.78815782040625, -73.83539873488677 40.78815576707259, -73.8354206749454 40.78815472770788, -73.83545910914468 40.78815290864026, -73.8354849054929 40.78815386217761, -73.83556699060162 40.78815689694864, -73.83571575989536 40.78815332969879, -73.83578789255245 40.78816511741693, -73.83585630769257 40.78817629645874, -73.8359325632736 40.788189600100665, -73.83600298765477 40.78820182469731, -73.83607605774161 40.78821450956869, -73.83614401768436 40.788226307337645, -73.83622029841342 40.78823954869, -73.83625213781792 40.7882450761902, -73.83628566719796 40.78825089694445, -73.83633086711026 40.78826138625829, -73.83634463947054 40.78826604700503, -73.83637122947913 40.788280099278225, -73.83638742255025 40.78828998907202, -73.83652391785917 40.788371761073954, -73.83669847328241 40.78841989995403, -73.8367451257273 40.78844206707664, -73.83678033933623 40.78845879965839, -73.83687887269039 40.788505617599625, -73.83696320610929 40.7886561109149, -73.83698286716694 40.788691197983034, -73.83702536495308 40.788767035355775, -73.83719496162571 40.7886094953399, -73.83722031863114 40.78808466254631, -73.83724018774961 40.78808551456731, -73.83725532791021 40.78785972776226, -73.8374433671795 40.78786586081207, -73.83813518886622 40.787882912095, -73.83805671588019 40.789269758228194, -73.83758628823229 40.78925353018315, -73.83758465432705 40.78933854789787, -73.83759326496391 40.789420366155404, -73.83761039403669 40.78950233419069, -73.83762662528875 40.78962015985486, -73.8376323496469 40.78966172159236, -73.83763774887761 40.78970980250701, -73.83764227564454 40.78973377484859, -73.8376469214182 40.78976190587653, -73.83764946423152 40.78978465884448, -73.8376510116886 40.78980551485321, -73.83765129238638 40.78980847249763, -73.83765212107674 40.78981701132588, -73.83765574380256 40.78983565502235, -73.83766015393847 40.78984964243064, -73.83766267621522 40.78985603954858, -73.83767044287679 40.78987199567927, -73.83767395539343 40.78987801688124, -73.8376757058149 40.78988900997522, -73.8376907996488 40.79000205865829, -73.83769229712158 40.79001232108834, -73.83769731888623 40.79003884524615, -73.83770211203492 40.790059030447324, -73.83770601573802 40.790074211206, -73.83771958629971 40.79012248191905, -73.83772961670275 40.790153224775466, -73.83773991196611 40.790183220587025, -73.83775229436918 40.79021586320974, -73.83776348954042 40.7902436648616, -73.83779043355246 40.79030203641038, -73.8377967791594 40.79031480725651, -73.83779630417385 40.79031475435894, -73.83787030530507 40.79047507040536, -73.83788326725316 40.79050915373042, -73.83788421993223 40.79050912175188, -73.83788543558589 40.790512519255, -73.8379815520129 40.790512654409525, -73.83797723288782 40.79058391136812, -73.83797571204057 40.79060903323699, -73.83797542249837 40.79060921563189, -73.83797152196286 40.79066377336756, -73.83793507448466 40.790662203876714, -73.83791320175006 40.790694153547555, -73.83791055933393 40.79071225982764, -73.83791348900665 40.79073773644837, -73.83792182724935 40.79075891087225, -73.83792787971085 40.790777752482484, -73.8379282816134 40.79078884633191, -73.83792579809386 40.79079862589339, -73.83792492514915 40.790826253868445, -73.83792352708727 40.79088610016597, -73.83792457353887 40.7909361299263, -73.83792695360388 40.79095376150008, -73.83792754520347 40.790974052442735, -73.83792991022382 40.79099591815557, -73.837934335199 40.79102041352911, -73.83793904959272 40.79103650492441, -73.83794785349991 40.79107423843034, -73.83795182002733 40.79109821717069, -73.83796001024668 40.791139827373925, -73.83796018970594 40.791169783724385, -73.83796031588392 40.7911943703067, -73.83796146879959 40.79120602622383, -73.83796353063701 40.791226870339656, -73.83796568709721 40.791243401184126, -73.8379696530857 40.79125787152238, -73.83797897312562 40.79127828549586, -73.83797812677908 40.79128281923391, -73.83797589012833 40.791293881457555, -73.83797537264819 40.79130593124704, -73.83798513644594 40.791369423154535, -73.83798761572099 40.791415924056494, -73.83799085737336 40.79145588208228, -73.83799533851492 40.79148799307525, -73.83799705859622 40.79149201713452, -73.8379979254546 40.7914975573402, -73.83799715630344 40.79150347705915, -73.83799471044574 40.79150994552852, -73.83793124207203 40.791507904912116, -73.83792655856709 40.791531676079174, -73.83786395149309 40.791529661850994, -73.83771534441684 40.79152488085606, -73.83771462030477 40.79154682416754, -73.83792225894356 40.7915535027017, -73.83791717833856 40.7915792904341, -73.83795788410593 40.79158059936793, -73.83801611356658 40.79158247231747, -73.83802241299804 40.79159821924224, -73.83802418070499 40.79160263688729, -73.83803403439798 40.79162726685444, -73.83790852269371 40.79162322905763, -73.83789777482322 40.79167777985394, -73.83744585590574 40.79166324232361, -73.83738787369046 40.791697402117784, -73.83733585046498 40.79173671486012, -73.83729057205498 40.79178058463526, -73.8372527237456 40.79182834784825, -73.83722287841086 40.79187928221242, -73.83720148937925 40.791932616644104, -73.83718887855582 40.79198754295193, -73.83718523756795 40.79204323114673, -73.83719062063497 40.79209883753571, -73.83720494808347 40.7921535200358, -73.83721583225147 40.792178202855155, -73.83722441639229 40.79219764780805, -73.83664353057448 40.79256414246632, -73.83512897051483 40.79346957642645, -73.83402941616933 40.79298566350545, -73.83460789671068 40.79171884688307)))",Q461,6265,Q461,Q-07,Q-07,Q-07,Q-07,"11 Ave. bet. 130 St., Powell's Cove Blvd. and 138 Pl., 9 Ave.",407,19,109,"11356, 11357",Q,55.023,False,Powell's Cove Park,No,100000438,PARK,,19890808000000.00000,,DPR,Part,Powell's Cove Park,Y,Powell's Cove Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q461/,Yes,27,11,14,{A812BDEA-1B19-48E1-BC59-4C20B840C38D} +"MULTIPOLYGON (((-74.02277734206528 40.62098896772257, -74.02305200586666 40.62066804854848, -74.02305482862656 40.6206697751806, -74.02285628352526 40.6209017573663, -74.02280742908383 40.62095883844978, -74.02280103801188 40.620966305932164, -74.0227599744539 40.62101428389, -74.02271114820064 40.62107133340808, -74.02265913576234 40.62113210448331, -74.02265631299338 40.62113037874208, -74.02277734206528 40.62098896772257)))",B210R,5814,B210R,B-10,B-10,B-10,B-10,S/B Gowanus Exwy. bet. 84 St. and 85 St.,310,43,68,11209,B,0.004,False,Strip,No,100004174,PARK,20100106000000.00000,19651216000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210R/,No,46,22,11,{D458A934-7F9F-45FC-AE4C-9900DFE66657} +"MULTIPOLYGON (((-73.90355315797022 40.66025275196547, -73.90427599024268 40.660144644449225, -73.90461904678001 40.66150043974432, -73.9039004801619 40.66160759662584, -73.90355315797022 40.66025275196547)))",B377,5206,B377,B-16,B-16,B-16,B-16,"Christopher Ave., Riverdale Ave., Newport St., Mother Gaston Blvd.",316,42,73,11212,B,2.3,False,Floyd Patterson Ballfields,Yes,100003762,PARK,20100106000000.00000,19810624000000.00000,701 MOTHER GASTON BLVD,DPR,False,Floyd Patterson Ballfields,Y,Floyd Patterson Ballfields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B377/,No,60,19,9,{7C646B69-8607-4272-9AE4-C4F4BAAD7BBA} +"MULTIPOLYGON (((-73.93489022711518 40.79229418446712, -73.93540894066804 40.79193071373126, -73.93752377945096 40.79282389725677, -73.93625864185559 40.794555980541325, -73.93409905984649 40.7936479928943, -73.93332380923094 40.79332186217096, -73.93353704099302 40.79319215748345, -73.93379783855364 40.79303506939775, -73.93463414711321 40.7924525942469, -73.93471004131472 40.79240270541166, -73.93476311971267 40.792374637149564, -73.934823114791 40.79233979560771, -73.93489022711518 40.79229418446712)))",M047,4755,M047,M-11,M-11,M-11,M-11,"1 Ave., FDR Dr., bet. E. 111 St. and E. 114 St.",111,8,23,10029,M,15.524,False,Thomas Jefferson Park,Yes,100004103,PARK,20100106000000.00000,18971210000000.00000,2158 1 AVENUE,DPR,True,Thomas Jefferson Park,Y,Thomas Jefferson Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M047/,No,68,30,13,{14814E9D-A1EE-4B40-A02C-210DB869E130} +"MULTIPOLYGON (((-73.81383004192628 40.73543360911714, -73.81386570299759 40.73543361003045, -73.81389975778234 40.7354348123186, -73.81454590970752 40.73546068446458, -73.81447986286334 40.73657805847334, -73.81446484360592 40.73683212839198, -73.81410791797217 40.73681925724079, -73.81401780705566 40.73681600769262, -73.81392769851564 40.736812758077804, -73.81383758643281 40.73680950838676, -73.8137474767265 40.73680625862897, -73.81365736584767 40.7368030078983, -73.81356849673126 40.736799803232344, -73.81345912383527 40.73679585748646, -73.813504673674 40.73610968160854, -73.81313385356889 40.73609300999131, -73.81314279775451 40.73594563626506, -73.81314925907361 40.73589377288145, -73.81316061398836 40.735847982370444, -73.81318071036148 40.73579505419027, -73.8132089693856 40.73574212303739, -73.81324054209296 40.73569675072778, -73.81328011295763 40.735651345451785, -73.8133203038245 40.73561364682983, -73.81337707726419 40.73557030545804, -73.8134318691481 40.73553658729815, -73.8134746131305 40.735514640874506, -73.81351351391245 40.73549748882949, -73.81355343419382 40.735482371773166, -73.81360700159863 40.73546565947696, -73.81365878526654 40.73545305509705, -73.81372886816595 40.735441118756036, -73.81377712155351 40.735436139533135, -73.81383004192628 40.73543360911714)))",Q329,6291,Q329,Q-08,Q-08,Q-08,Q-08,"Kissena Blvd., 155 St. bet. 65 Ave. and Melbourne Ave.",408,24,107,11367,Q,3.596,False,Pomonok Playground (PS 201),Yes,100000230,PARK,20090423000000.00000,19490630000000.00000,,DPR/DOE,True,Pomonok Playground,Y,Pomonok Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q329/,No,27,16,6,{B7BA2837-0D1C-4866-B8C5-1C0CC18B71AD} +"MULTIPOLYGON (((-73.83490784310472 40.70202209695101, -73.83485413210909 40.701897232147196, -73.83506275882155 40.701985089119184, -73.83490784310472 40.70202209695101)))",Q142,5840,Q142,Q-09,Q-09,Q-09,Q-09,"Bessemer St., 116 St., 85 Ave.",409,29,102,11418,Q,0.005,False,Jacob Riis Triangle,Yes,100000091,PARK,20090423000000.00000,19240101000000.00000,,DPR,False,Jacob Riis Triangle,Y,Jacob Riis Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q142/,No,28,10,6,{5A9DD7C3-0D2C-4F18-9143-F2996C21FBC5} +"MULTIPOLYGON (((-73.86076710747783 40.70293377227184, -73.86079193149327 40.70289458406073, -73.8608240274905 40.70285160087081, -73.86086296272165 40.702812026276, -73.8609081229399 40.70277648718472, -73.86095879109115 40.702745547344975, -73.8610141650856 40.70271969656062, -73.86107336727855 40.70269934349903, -73.86113545867832 40.702684811206005, -73.8611994578907 40.70267633082586, -73.86126435059694 40.70267403530919, -73.8613291072958 40.7026779621363, -73.86141396516359 40.70267968886422, -73.86149808204479 40.7026883783042, -73.86158047369793 40.70270392931725, -73.86166017734436 40.70272616064727, -73.86188694533028 40.702772014234704, -73.86211587871215 40.70281114583909, -73.86234663203177 40.702843496501245, -73.86257885980795 40.70286901717013, -73.8628122129851 40.702887669599555, -73.86304634011731 40.702899426349134, -73.86328089092044 40.70290426988845, -73.86351551154146 40.70290219169091, -73.86372609148353 40.70290598651611, -73.86393671501177 40.702904090666934, -73.86414711819648 40.70289650743377, -73.86435703472866 40.702883246409634, -73.86456620065186 40.70286432439644, -73.86480543405467 40.70283920217244, -73.86504338665446 40.70280781128083, -73.86527977314077 40.70277019011767, -73.86551431292757 40.702726382489864, -73.86630835991095 40.70253610973479, -73.86650846313759 40.70246795163442, -73.86670477045107 40.70239367700945, -73.8668969609047 40.702313407077256, -73.8670567845253 40.702229344305714, -73.86721106862689 40.7021394882254, -73.86735945306384 40.70204404916339, -73.86747436645157 40.701956324792064, -73.86747189254243 40.701953806811126, -73.86750297661906 40.70193295700201, -73.86757276691318 40.70188426464045, -73.86773614795206 40.70175304335405, -73.8678439669023 40.70166644690628, -73.86795103265288 40.70156510539466, -73.86805142989373 40.70145988393233, -73.86814491557085 40.70135103710338, -73.86823126318656 40.70123882671444, -73.8683102663436 40.70112352450009, -73.86838173283417 40.70100540941461, -73.86844549056111 40.70088476493673, -73.86850138634681 40.70076188267032, -73.868563517895 40.70052479362729, -73.86861766802154 40.70028657429481, -73.86866380100928 40.700047378631, -73.86867447851404 40.70001187007549, -73.86873815624566 40.69975502362203, -73.86873609321543 40.69975357054258, -73.86875783911697 40.69967562981476, -73.86889539036109 40.69918263405474, -73.86902832570043 40.698922422722994, -73.8691648506386 40.69870700954102, -73.86924633616304 40.698608644526, -73.86933443954813 40.698513641377616, -73.86942892245035 40.69842225915818, -73.86952952880776 40.69833474430253, -73.86963598601479 40.69825133512194, -73.86974800374765 40.698172257300705, -73.86986527987698 40.69809772570365, -73.86998749455522 40.69802794256902, -73.87011431731588 40.69796309751667, -73.87024540352695 40.69790336574296, -73.87038039912204 40.69784890892705, -73.87047335650618 40.697813147034175, -73.87056830602295 40.69778055621286, -73.870595650112 40.69782462836524, -73.87059540605942 40.69782479198429, -73.86943081579403 40.698955594773466, -73.86925895300378 40.69912246828846, -73.86895925405707 40.69931673016016, -73.86943633749289 40.70114343718827, -73.86929046242251 40.70118000714678, -73.8690196299604 40.70124790321469, -73.8689159719803 40.701273889277026, -73.86869825810076 40.7014288634381, -73.86847581680992 40.701579899243605, -73.86824876779191 40.701726911254596, -73.86822769507319 40.70174020301577, -73.86822212805825 40.701743707742054, -73.8682094124539 40.701751696041505, -73.86803432772385 40.70185955608242, -73.86785669262336 40.70196497433931, -73.8678429427489 40.70197297311741, -73.86783785126674 40.701975929058186, -73.86781542060116 40.70198892381614, -73.8677324192087 40.70203648991046, -73.86773236116326 40.70203652316272, -73.86769213148797 40.70205928601649, -73.86756437749149 40.702130343546294, -73.86728803264904 40.70227782462631, -73.86700662640192 40.70241965297786, -73.86672035659376 40.702555728836316, -73.86642942698319 40.70268595604711, -73.86613404369578 40.70281024116163, -73.86583441639965 40.70292849704047, -73.86553075712948 40.703040639250155, -73.86554122488323 40.703100803932074, -73.86285833184624 40.70332033362312, -73.86072309217433 40.703059512564785, -73.86073253439699 40.70301660554624, -73.8607472498146 40.70297456759777, -73.86076710747783 40.70293377227184)), ((-73.84429535655269 40.70820060359953, -73.84447845079441 40.70816789415662, -73.84466333442299 40.70814164801486, -73.84484961211194 40.70812192316605, -73.84526618883554 40.70808934862687, -73.84568324745027 40.70806057248895, -73.84610072884858 40.7080355991706, -73.84760878886537 40.7079880485063, -73.84760697047534 40.70798630540829, -73.8477735256786 40.707982852595975, -73.84849831711209 40.70796782650495, -73.84868330320481 40.707955443737156, -73.84886729394091 40.707936311825165, -73.84904986433888 40.707910475242144, -73.84923059293234 40.707877994677595, -73.84940906177707 40.707838944335975, -73.84958485881421 40.70779341374061, -73.84976714468462 40.70773495638401, -73.8499457298122 40.707670222745506, -73.85012024228166 40.707599347434744, -73.85029031724861 40.707522480381336, -73.85045560050615 40.70743977963476, -73.85061574609848 40.7073514203665, -73.85077041989284 40.70725758496874, -73.85091929837887 40.7071584711571, -73.85106207105112 40.707054284769484, -73.85110972891519 40.70706440514852, -73.85107382469822 40.70709688521578, -73.85090205129767 40.70724568597216, -73.85072349049724 40.70738978509767, -73.85053836516008 40.70752900454896, -73.85034690288128 40.70766316989105, -73.85014934425939 40.70779211571147, -73.8499459322602 40.70791567930312, -73.84973692284672 40.70803370968316, -73.84981078403344 40.70816268381781, -73.84929641444678 40.70828122319591, -73.84917981136446 40.7083063982939, -73.84906102968098 40.70832475083637, -73.84894075720364 40.708336176359246, -73.84881969231074 40.708340606435506, -73.8486985344629 40.708338017668225, -73.84857798658733 40.70832842358888, -73.84851138442404 40.708320063851296, -73.84849620746878 40.708316023089075, -73.84825100895472 40.70828133025141, -73.84800497885894 40.70825023964392, -73.84775820586603 40.70822276398572, -73.84734811153231 40.7081976765126, -73.84709987093744 40.708193718882654, -73.84685160526435 40.70819656855853, -73.84660363513379 40.708206223265854, -73.8463562823774 40.70822266902797, -73.84610986884213 40.70824588556738, -73.84586471521786 40.70827584180171, -73.84562113747724 40.70831250034116, -73.84537945398904 40.70835581209523, -73.84513997840575 40.70840572166601, -73.84490301967247 40.70846216374609, -73.84466888675455 40.70852506582633, -73.84445875074796 40.70857893710012, -73.84425119665762 40.70863831991873, -73.84404647192967 40.70870314349091, -73.8438448240281 40.70877333072315, -73.84364649570793 40.70884879551215, -73.84345172500085 40.70892944904798, -73.84326074641533 40.70901519261141, -73.8432077101352 40.709033139638905, -73.843151787754 40.709044970931345, -73.84309418811833 40.70905043058573, -73.84303615999174 40.70904939873311, -73.84297895890153 40.709041898697734, -73.84292382347806 40.7090280933627, -73.84289923522243 40.709011024813776, -73.84287843542704 40.70899125358965, -73.84286193417942 40.70896925946116, -73.84285013019398 40.70894557877947, -73.8428433132156 40.70892078917013, -73.84284164867218 40.708895494203134, -73.84285166173919 40.708859133471755, -73.84286605480331 40.708823634205245, -73.84288470406801 40.70878930150666, -73.84291129105362 40.708747075839135, -73.84294507982312 40.70870794514725, -73.84298546044967 40.70867261639561, -73.84303170246928 40.7086417279451, -73.84323885902216 40.708541519345445, -73.84334189031857 40.70849167936222, -73.84342018373167 40.708458212978265, -73.84358858935505 40.70839449473074, -73.84376067984016 40.70833675794002, -73.84393608809047 40.70828512636268, -73.84411443994757 40.70823970933941, -73.84429535655269 40.70820060359953)), ((-73.89935004109954 40.67962677723326, -73.90002460274694 40.679619606489695, -73.90002461550972 40.67969472926028, -73.89912763896645 40.67970911557073, -73.89899225732242 40.679716174809734, -73.89885986087256 40.679728898051096, -73.89872879132224 40.67974799525246, -73.89859957985847 40.67977338764121, -73.8984727458748 40.67980497482411, -73.89834880289608 40.67984262848905, -73.8982282491107 40.67988619599841, -73.89811157091563 40.67993550309355, -73.897999240558 40.67999034939006, -73.89789171021167 40.68005051467562, -73.89778941434868 40.68011575530999, -73.89767303412188 40.680214770648796, -73.89756361491483 40.68031828563584, -73.89746145644388 40.680426014194104, -73.89736683833416 40.68053766302436, -73.89728002012617 40.680652927102166, -73.89723648288937 40.68071533983506, -73.89719844278966 40.68077980073075, -73.89716606587403 40.68084602988297, -73.89710811733039 40.68101734695751, -73.89705934867234 40.681190312050006, -73.89701983729321 40.68136464157914, -73.89698964994871 40.68154004834982, -73.89696883565747 40.68171624244738, -73.89693417729673 40.681866753163774, -73.89689297410112 40.68201630525807, -73.89684527241785 40.6821647330701, -73.89679112568729 40.68231187454726, -73.896756455842 40.68240898466784, -73.89671658409046 40.6825049302449, -73.89667157808647 40.68259955104226, -73.89663134241474 40.682675234680836, -73.89658782216881 40.68274985724813, -73.89648363646589 40.68293857357557, -73.8963721470703 40.683124855440084, -73.89625345237029 40.68330853901571, -73.89612765666719 40.68348946408286, -73.89599487018096 40.6836674704265, -73.89585521022765 40.68384240143937, -73.89570879885402 40.68401410411977, -73.89555576402317 40.68418242727187, -73.8953962419791 40.68434722240842, -73.89523037251251 40.68450834554769, -73.89490937066181 40.684832410941915, -73.89458330965812 40.68515353691998, -73.89425223567966 40.685471677555405, -73.89290444240625 40.68679807917407, -73.89257327233179 40.6872935891253, -73.89044281025748 40.68992926555078, -73.89040783313182 40.689815171349366, -73.89231236203665 40.687448991936435, -73.8929365196905 40.686660608598835, -73.89416341149875 40.685429481537625, -73.89485653976585 40.68470213298095, -73.89583227886484 40.68356464307893, -73.89634416277444 40.682888944026764, -73.89638757772346 40.682836645216106, -73.89642529603438 40.6827818459352, -73.89643945613197 40.682763153189526, -73.89644898035806 40.68274067320816, -73.8964733948335 40.68268938565167, -73.89649294345311 40.68263690323242, -73.89654002985348 40.682515994749856, -73.89658195676596 40.68239399108598, -73.89661868025244 40.68227101917949, -73.89665016347084 40.682147207775834, -73.89682483395703 40.68132315397247, -73.8968845896777 40.680969054863226, -73.89691463261887 40.680875597533436, -73.89695215709355 40.68078372099534, -73.896997022959 40.68069377181444, -73.89704905933031 40.68060609022396, -73.89710806931815 40.680521006527165, -73.89717383239196 40.680438842900735, -73.89724609847453 40.68035990798642, -73.89732459621516 40.680284501401495, -73.89740902708684 40.680212906529285, -73.89749907484368 40.680145394130086, -73.89760745372332 40.680078352734164, -73.89772035942839 40.68001579081914, -73.89783747114191 40.67995788548838, -73.89795846097608 40.67990479943152, -73.89808298450474 40.67985668361786, -73.89821069023311 40.67981367280234, -73.89834121840781 40.67977589002706, -73.89847911397428 40.67973531660475, -73.89861991323095 40.67970100505517, -73.89876312514475 40.67967307560474, -73.89890825162455 40.679651625062405, -73.89905478633703 40.67963672681906, -73.89920222061411 40.67962843535502, -73.89935004109954 40.67962677723326)), ((-73.83811538846845 40.70999745662114, -73.83830581945217 40.7098369386657, -73.83842319750003 40.70973310779673, -73.83853802184899 40.709627636994085, -73.83862203192473 40.70961979246683, -73.83870629796527 40.70961375016243, -73.83890131675575 40.70958936721905, -73.83909471468138 40.70955839533144, -73.83928610693756 40.70952089610586, -73.83947511223984 40.70947694466371, -73.83966135638143 40.709426626944676, -73.83984446867244 40.70937004420421, -73.84002408550138 40.70930730851601, -73.84014292984838 40.709261642031855, -73.84018360541762 40.70924521913172, -73.8401890210356 40.70924305371366, -73.84020820013052 40.70923515132563, -73.84045217617074 40.709134619728864, -73.84036893928743 40.70887281719154, -73.84109102553205 40.70901051947534, -73.84123757561191 40.70903069595691, -73.84063924507944 40.709347443029905, -73.84056095024873 40.70938889056304, -73.84037756724126 40.70948117128195, -73.84019030148066 40.70956882038547, -73.83999935439532 40.70965174268049, -73.83980493095466 40.70972984838277, -73.83960724203324 40.709803054020966, -73.83940650086515 40.70987128063074, -73.83920292304123 40.70993445465533, -73.83916769468591 40.70989074769758, -73.83895811919261 40.709966629946386, -73.83874576981937 40.71003791081195, -73.83853082307529 40.71010452929167, -73.8383134554525 40.710166432488734, -73.83815706443623 40.71022104942533, -73.8380038750739 40.71028068921077, -73.83785416570099 40.7103452441883, -73.83770820876364 40.71041459678833, -73.83756626844983 40.71048862042566, -73.83742860423554 40.710567181305045, -73.83729546615753 40.71065013571313, -73.83713494073349 40.71065001047252, -73.83707300410765 40.71065316377239, -73.83701166921102 40.71066044223769, -73.8369514118997 40.7106717898111, -73.83687303784946 40.710693258655475, -73.83678784445286 40.71072362834829, -73.83670697414419 40.71076020864084, -73.83663120764457 40.71080264494779, -73.83656127255834 40.710850529479465, -73.83649784455677 40.7109034012433, -73.83644153316858 40.71096074962491, -73.8363338728501 40.71109010739775, -73.83617047347589 40.71129636065067, -73.83597768317607 40.71152601753286, -73.83586167177091 40.7114214134604, -73.83594758667253 40.711367691595306, -73.8360283561974 40.711309530015235, -73.8361035843783 40.71124721453017, -73.83619354430392 40.711150421330984, -73.83627606007177 40.711049861436386, -73.83633762028029 40.710976541906966, -73.83640684124715 40.71090729093997, -73.83648326265707 40.710842573432785, -73.83656637221789 40.71078281908871, -73.8366558932141 40.7107173213089, -73.83682304797861 40.71063538031252, -73.83699412416598 40.710558267770445, -73.83716888012205 40.710486091384965, -73.83734706947604 40.71041895344981, -73.83749228016522 40.71035587322323, -73.83763397611382 40.710288323115336, -73.83777192034867 40.710216416269624, -73.83787788279471 40.71015672920069, -73.8379598273465 40.710106068283636, -73.83803903818277 40.71005294866502, -73.83811538846845 40.70999745662114)), ((-73.84215830673583 40.70934374567024, -73.84233321505621 40.70920143334562, -73.84261545380085 40.709248648021855, -73.84262177790235 40.70925461896108, -73.84262684961898 40.7092612464624, -73.84263055570536 40.70926837818453, -73.84263281133838 40.70927585282002, -73.84263356485071 40.70928350010135, -73.84263279889923 40.70929114710651, -73.84263027339902 40.70929923475837, -73.84262605191974 40.70930690135327, -73.84262024499786 40.709313942625826, -73.842614099922 40.70931935530926, -73.84260701809781 40.70932405800825, -73.84260689368767 40.70932412357556, -73.84259808041202 40.709328392561126, -73.84235653896248 40.7094453546795, -73.84233680588042 40.70945490910652, -73.84225547082795 40.709494292353334, -73.8409546985372 40.71002205604659, -73.83833925637727 40.71060881572673, -73.83826110962023 40.71062559056321, -73.83818162266878 40.710638199493516, -73.83810117673963 40.71064658271667, -73.83802016128608 40.71065070025565, -73.83776244275413 40.710650500323034, -73.8377832032819 40.71063688321519, -73.8380296250679 40.71052940464774, -73.83828012702895 40.71042753427261, -73.83853449005828 40.71033136360834, -73.83879248915434 40.710240976962545, -73.83905389696864 40.710156452337564, -73.83931848497751 40.71007786593492, -73.83949546489667 40.71002116893113, -73.83967526105006 40.70996986154242, -73.83985759163514 40.70992402350918, -73.84004216895049 40.709883728261694, -73.84022870295664 40.70984903842249, -73.8404168977166 40.70982000940358, -73.84060645850465 40.70979668581434, -73.84079708706173 40.70977910595753, -73.84080783066563 40.70977828874196, -73.84084167208782 40.70977384828306, -73.8413594471761 40.70970590883418, -73.84144199263415 40.70969231496164, -73.84152299402002 40.70967412088773, -73.84160200967983 40.70965142506439, -73.84170100649682 40.709614414204154, -73.8417972329499 40.70957338946956, -73.8418904059139 40.70952847024678, -73.8419802564391 40.70947978764882, -73.84202314156543 40.70944767660385, -73.84202319491365 40.70944763615399, -73.84211537334114 40.70937730562414, -73.84215844266046 40.70934381519608, -73.84215830673583 40.70934374567024)), ((-73.88768265771996 40.691063869175636, -73.88861929179133 40.690884569569334, -73.88917470653038 40.69079018802112, -73.88926368953017 40.690781186593625, -73.88935336533586 40.69077815346876, -73.88944304657768 40.69078111229845, -73.88953204122855 40.6907900417066, -73.88961966680695 40.690804870799994, -73.88970524799655 40.69082548727079, -73.89000518955393 40.690908398291924, -73.89030700536108 40.690987273312786, -73.89035014741889 40.691000533069065, -73.89039063018147 40.691017987571215, -73.89042775378051 40.69103933448351, -73.89044844053385 40.69108050585822, -73.8904619256039 40.69112337414654, -73.89046797710735 40.69116721331619, -73.89046649451016 40.691211278547755, -73.8904605304808 40.69122437174476, -73.89045189065115 40.69123656908465, -73.8904407967688 40.69124755649861, -73.89042753678162 40.691257051498845, -73.89041245063206 40.69126480856792, -73.8903959278778 40.69127062726169, -73.89037839466775 40.69127435850014, -73.89036030309104 40.6912759063585, -73.88888516150355 40.69088719583427, -73.88761244312367 40.69116074814548, -73.88696384193895 40.69130582234417, -73.88631333112642 40.6914458616313, -73.88566097946547 40.69158085073426, -73.88500685455125 40.69171077618178, -73.88423599792331 40.69187481448119, -73.88293638240285 40.69214010685554, -73.88466936569422 40.69169104949804, -73.88648505607486 40.69127597901441, -73.88768265771996 40.691063869175636)), ((-73.86011830070068 40.70250608936393, -73.86026914701974 40.70250588446591, -73.86041985724637 40.70251077340684, -73.86057013325053 40.70252074772147, -73.86061603889637 40.702524817807415, -73.86080456945639 40.702545754152155, -73.86099161783925 40.70257333958631, -73.86117677717708 40.70260751599341, -73.86118063159748 40.70262828737044, -73.86110763844326 40.70264300914869, -73.86103709675636 40.70266351603379, -73.860969796236 40.70268957935323, -73.86090649003735 40.70272090645562, -73.86084968214455 40.70276817235311, -73.86079884295607 40.70281922309247, -73.8607544052796 40.702873623356936, -73.860716746372 40.70293090984619, -73.8606861879316 40.702990594878166, -73.86066299017362 40.703052169983756, -73.8587384957313 40.702817055122935, -73.85874555204045 40.702752607768495, -73.8588938239199 40.702704428487046, -73.85904464243616 40.70266106627549, -73.85919773529943 40.7026226000358, -73.85935283142825 40.7025890978668, -73.85950965029242 40.70256062065275, -73.85966791138638 40.70253721847347, -73.85981738647752 40.702521772214524, -73.8599676152528 40.702511388461694, -73.86011830070068 40.70250608936393)), ((-73.84135049971503 40.70916239040663, -73.84152137889909 40.709069768539926, -73.84166141094775 40.70908904670188, -73.84197865464839 40.70914211939108, -73.84212407833928 40.709166447260706, -73.84213114742695 40.70916762942292, -73.8421528917317 40.70917126669448, -73.8421092838343 40.70923683623867, -73.84205797631505 40.70929909572415, -73.8420487898468 40.70930902477698, -73.84204875544559 40.709309059849794, -73.84198449698972 40.70937076032296, -73.84194689600035 40.709401751167526, -73.84190720641466 40.70943119655355, -73.84183971384708 40.70947430232467, -73.84176829552797 40.70951357458153, -73.84169332708545 40.70954880761613, -73.8416007180149 40.70958494025508, -73.84150513457875 40.70961626719193, -73.84140700551559 40.7096426476296, -73.8413067737158 40.709663962403944, -73.84111292010077 40.70969378652266, -73.84091853402529 40.70972152669392, -73.84083355457138 40.70973297720829, -73.84079487276153 40.70973805393642, -73.84077234821775 40.709740971060064, -73.84077248027106 40.70974117475854, -73.83995856309743 40.709847845503454, -73.84013770399179 40.70977286020831, -73.84031405116886 40.70969413633369, -73.84048747192973 40.70961173224173, -73.84065783356252 40.70952571259882, -73.84078655402891 40.70946336091915, -73.84109799961975 40.70929925322079, -73.84135097038207 40.70916252433115, -73.84135049971503 40.70916239040663)), ((-73.83815648478536 40.709686771866814, -73.83831270699656 40.709657810292796, -73.83824787687604 40.70972139445321, -73.8381797735208 40.70978296583272, -73.83810850603815 40.709842426423094, -73.83797811348299 40.709939451491266, -73.83789064311011 40.71000113141561, -73.83780147313882 40.71006138426776, -73.83766954371994 40.71014088915077, -73.83753203507703 40.71021471548124, -73.83738936552172 40.710282636000564, -73.83724197462274 40.71034444419331, -73.83709031374921 40.710399949771606, -73.83708876023792 40.71040031228063, -73.83706256619408 40.710409268625426, -73.83698184918516 40.710439514223914, -73.83690337146408 40.710472998479624, -73.83682735691914 40.710509626260084, -73.83671475809768 40.71056911384061, -73.83660693036163 40.7106335158756, -73.8365042446455 40.71070261318005, -73.83640705299871 40.71077616853267, -73.83631568739757 40.7108539284748, -73.8362304644725 40.710935626018454, -73.83619193502133 40.71098999726586, -73.83618774767577 40.710994986449414, -73.83618771445616 40.7109950206216, -73.83603892133719 40.71116344954244, -73.83601725535746 40.711187974752875, -73.83597737657355 40.7112230748417, -73.83593113580167 40.71125332109306, -73.8359051817607 40.71126890168506, -73.83587609111936 40.71128085143612, -73.83584473338787 40.71128881408039, -73.83581204169006 40.71129255231118, -73.83578131997203 40.71129117302971, -73.83575126643977 40.71128613321025, -73.83572262870344 40.71127756089234, -73.83569611866542 40.711265666912574, -73.83567239712681 40.71125074848419, -73.83562248382395 40.71120574345724, -73.83591410583941 40.71101847111188, -73.83605519274678 40.71092406970205, -73.83619112773403 40.71082538785638, -73.8363216855507 40.71072258826547, -73.8364466504026 40.71061583993711, -73.83656581831457 40.71050532000077, -73.83667899122396 40.71039120919618, -73.8367878611372 40.71030116647816, -73.83690289814209 40.71021567908171, -73.83702377383928 40.71013499146293, -73.83715014211953 40.71005933364521, -73.83728164152849 40.70998892212304, -73.83741789763742 40.70992395806512, -73.83755852186181 40.7098646264117, -73.83770310908797 40.709811098573745, -73.83785124952371 40.70976352524517, -73.8380025192137 40.709722043594184, -73.83815648478536 40.709686771866814)), ((-73.89391214024766 40.685315028010365, -73.8943476194541 40.68476951250074, -73.89440948631182 40.68484354024684, -73.89444079910606 40.68480533943519, -73.89457894760469 40.68463680512428, -73.8947835900025 40.6843871482803, -73.89496649641791 40.68416400759013, -73.89512289908187 40.68396725724435, -73.89523505255522 40.683826723349654, -73.89538318762743 40.68364109997853, -73.89549732648642 40.68349807680524, -73.89562864975115 40.683333518889675, -73.89576245307562 40.68316585269058, -73.89586205615572 40.68303851735333, -73.89594546168173 40.6829313469149, -73.89602528144297 40.68282878471041, -73.89612066847555 40.682706218063, -73.89618572257233 40.682620408196286, -73.89621668428502 40.68257008564829, -73.89624296282055 40.682518242402196, -73.89626443240657 40.682465131392384, -73.89626368609308 40.68246506678303, -73.89628374424446 40.68239991191362, -73.89629649748936 40.68232819020727, -73.89629795677055 40.68189944654935, -73.89629836063612 40.68163973845156, -73.89631241472024 40.68149585875751, -73.89631715539215 40.6814116333764, -73.89630348880735 40.68130633376833, -73.89626689272276 40.681123802444766, -73.89622110361209 40.68092371628201, -73.89627645172135 40.68090621785511, -73.89639090026729 40.681422227721605, -73.89644133810083 40.68159775194417, -73.89645959834296 40.681713584484335, -73.89645940217305 40.681839929232254, -73.89645918965611 40.681976801881454, -73.89643129016603 40.68213119794186, -73.89640341662528 40.68226804568575, -73.89635907337517 40.68240717850209, -73.89633112949919 40.68249626916491, -73.89629551569122 40.682583759897284, -73.89625238748016 40.68266926811361, -73.89620193113937 40.68275242026, -73.89614436959941 40.68283285362068, -73.89602421634993 40.68301875271711, -73.8958809932875 40.683215158728586, -73.89563154476807 40.683534303853065, -73.89512808231338 40.68413749253521, -73.89477706735936 40.68454077279078, -73.89441688820098 40.684905437596235, -73.89407949790069 40.6852338639277, -73.8934850362731 40.68581619836163, -73.89391214024766 40.685315028010365)), ((-73.89763173956351 40.67859392484551, -73.89773844076335 40.678312523202, -73.89787096122268 40.678379327653836, -73.89789279782174 40.67901880010265, -73.89783412421028 40.67916610920348, -73.89792031183019 40.67951192043344, -73.89711408468892 40.679625965778776, -73.8972602890826 40.679425684101204, -73.89739259793768 40.67915065699961, -73.89751643767879 40.67887335379708, -73.89763173956351 40.67859392484551)), ((-73.84158555031938 40.70834513157864, -73.84165395643839 40.70834296451037, -73.84165401323557 40.70834296638951, -73.84204476258098 40.70832879786504, -73.84237187751062 40.70831208789789, -73.8426985518087 40.70829097199229, -73.84270118874784 40.70831136320022, -73.84248744606244 40.70839880246103, -73.8422762942263 40.70848981360596, -73.84206783626932 40.708584354466424, -73.84200229512876 40.70862135573755, -73.84157719893183 40.708859142557074, -73.84096260172089 40.708762026689186, -73.84096566205078 40.70871733397682, -73.84097656288374 40.70867335539611, -73.84099510823769 40.70863088492615, -73.841020962562 40.7085906884361, -73.84105366023995 40.70855348929027, -73.8411098093078 40.70850859791071, -73.84117201024408 40.70846859112956, -73.84123953179612 40.708433937996126, -73.84131158251361 40.70840504534227, -73.84138731667774 40.70838225238793, -73.8414346509483 40.708367011587754, -73.8414838385513 40.708355667136736, -73.84153432655978 40.70834834614404, -73.84158555031938 40.70834513157864)), ((-73.89712021310281 40.678426752638714, -73.89714928761985 40.67842646975515, -73.89717809567115 40.678429468103204, -73.89720600336209 40.67843568227977, -73.89723239346839 40.67844497485584, -73.89725719353372 40.6784590801599, -73.89727911422992 40.6784757214402, -73.8972977136958 40.678494561511236, -73.89731261282564 40.67851522001901, -73.89732351300326 40.678537278859295, -73.89733252248192 40.67858196505584, -73.89733410178327 40.678627158816035, -73.89732822715068 40.678672146910934, -73.89731499074173 40.67871621891529, -73.89689913401472 40.679656371072326, -73.89689559058424 40.67965687218558, -73.89665031639807 40.67864210755677, -73.89712021310281 40.678426752638714)), ((-73.84372506682996 40.70824673488599, -73.84397506985988 40.70820704623447, -73.84398184411916 40.70822192287855, -73.84385659573203 40.70825572488921, -73.84373332123997 40.70829349349952, -73.84361223496926 40.70833516236898, -73.84349355126506 40.70838065795389, -73.84326422497753 40.70848346632537, -73.84303936630741 40.70859183829479, -73.84281920742609 40.70870566164107, -73.84260397579155 40.70882481783435, -73.84239389650915 40.708949184740575, -73.84238306528933 40.70895759330445, -73.8423705972962 40.708964567811144, -73.8423568183903 40.708969925902345, -73.84234208746473 40.70897352848965, -73.84232678579073 40.708975281541136, -73.84231131345857 40.708975139678536, -73.84183660774379 40.70890013219988, -73.84196699255938 40.70882460428534, -73.84210109790067 40.70875294902762, -73.84223872709043 40.708685271504145, -73.84237967399592 40.70862167317803, -73.84252653180232 40.70855947855992, -73.84267725518168 40.708502892927, -73.84283147580886 40.7084520544402, -73.84298881355889 40.70840708863885, -73.84323160961904 40.708346822263245, -73.84347713706764 40.708293347153344, -73.84372506682996 40.70824673488599)), ((-73.88469536122528 40.69130251102948, -73.8847489393594 40.69130139943385, -73.88476684875346 40.6913019801893, -73.88478438871654 40.69130479744853, -73.8848010790565 40.69130977598839, -73.88481646453413 40.69131677757496, -73.88483012549004 40.69132561268089, -73.88484168731081 40.69133603959418, -73.88485083697627 40.69134777343989, -73.88485732186236 40.69136049428345, -73.88486096629168 40.69137385435119, -73.88486167033375 40.691387487934726, -73.88485941451368 40.69140102490349, -73.88485426217441 40.69141409340844, -73.88484635116401 40.69142633788415, -73.88483590092662 40.691437423558554, -73.88482319355505 40.691447047240125, -73.88480857732272 40.691454947227086, -73.88479245129611 40.69146090779502, -73.88477525704405 40.69146476459134, -73.88252434288322 40.69207124613933, -73.88251578918083 40.69206456279919, -73.88250885097452 40.692056870731264, -73.88250373017796 40.692048392568815, -73.88250057660458 40.69203937610636, -73.88249948088871 40.69203008348619, -73.88250047449947 40.692020783093525, -73.88250352856306 40.692011746854064, -73.8825085550694 40.69200323672727, -73.88251540806186 40.69199550110568, -73.88252388720718 40.691988763111965, -73.88253374726311 40.69198321880744, -73.882544701639 40.69197903089219, -73.88293226173431 40.691835544391935, -73.8845898376249 40.69131632719772, -73.88464216678933 40.691307501498066, -73.88469536122528 40.69130251102948)), ((-73.89001490409242 40.69030924707225, -73.89029718246283 40.68995109485687, -73.8903932246817 40.690481788977415, -73.89041442325444 40.69073689862825, -73.89040071139121 40.690762256647496, -73.89038163544647 40.690785518562535, -73.89035773004522 40.690806032908164, -73.89032966455453 40.690823226691876, -73.89029822650285 40.6908366161849, -73.8902642943357 40.69084582760849, -73.89022881847735 40.690850602518914, -73.89019279410361 40.69085080768783, -73.89015722919363 40.690846437773224, -73.8901231196883 40.690837613494715, -73.89009142109241 40.690824583407455, -73.8900424050655 40.690800725197086, -73.88999874896226 40.69077145099582, -73.88996147617786 40.69073744707924, -73.88993146085404 40.690699510343904, -73.88990940661552 40.690658529375106, -73.88989583003813 40.690615466420546, -73.88989105004576 40.690571331264366, -73.88989517848825 40.69052715690414, -73.88990327004754 40.69047945542006, -73.88991965269811 40.69043300367499, -73.88994403165937 40.6903886307567, -73.8899759737957 40.69034713049943, -73.89001490409242 40.69030924707225)), ((-73.85568171458286 40.70347796495594, -73.85568678276682 40.70346584950616, -73.85569446894334 40.70345455950667, -73.85570454995185 40.70344441976232, -73.85571346053098 40.70343818227339, -73.85572360974182 40.70343315842668, -73.8557347144758 40.70342948924761, -73.85574646686136 40.70342727610799, -73.8557585401807 40.70342658073363, -73.85577059597476 40.703427422511545, -73.8562893173425 40.7034773014633, -73.85688773026189 40.70330323048029, -73.85692215786023 40.703289375664745, -73.85695319694248 40.70327147332482, -73.85698003239963 40.703249995219764, -73.85700196252887 40.703225502400734, -73.85701841206664 40.7031986371221, -73.8570289487948 40.70317010395099, -73.8570332977798 40.703140650873735, -73.85707480300059 40.70287043957624, -73.85775583096758 40.702952663464934, -73.8577620558326 40.702953923770984, -73.85776790509067 40.70295597786494, -73.85777320374709 40.70295876519631, -73.85777779578542 40.70296220362568, -73.85778154535089 40.702966189426284, -73.85778434028065 40.70297060629347, -73.85778609921154 40.702975321751374, -73.85778676919027 40.70298019795617, -73.85778632922889 40.70298508899878, -73.85778479383566 40.702989849914616, -73.85778220945954 40.70299433938041, -73.85777864974338 40.70299842601228, -73.85777422262781 40.703001986573234, -73.85776905849508 40.70300491676471, -73.856932521702 40.703347492340946, -73.85660357810971 40.7034495622783, -73.85616639962798 40.703542453125294, -73.85578342829317 40.70359823707076, -73.85577579762867 40.70359972866481, -73.85576795247731 40.70360027084901, -73.85576009402995 40.70359984856667, -73.85575242697078 40.70359847288051, -73.85574514764855 40.703596179156655, -73.85568327286212 40.70351572631618, -73.85567993458223 40.703503268037196, -73.85567940950509 40.70349055844025, -73.85568171458286 40.70347796495594)), ((-73.83658638501815 40.71142187357836, -73.83759792875567 40.71075840637805, -73.83772585185227 40.71076373410578, -73.83787605183076 40.71076502455227, -73.83802614512537 40.710760545970516, -73.83817575060989 40.71075031043227, -73.83831560738967 40.71072532772491, -73.83937452312368 40.71046995339763, -73.8383705047623 40.71075452648642, -73.83658638501815 40.71142187357836)), ((-73.85817749059576 40.70299497748724, -73.8581843389248 40.70299463112307, -73.8581911664576 40.70299516093193, -73.85819778272082 40.702996551370475, -73.8582039996574 40.702998763484985, -73.85820964464237 40.70300173492748, -73.85821455692957 40.70300538175236, -73.85821860065758 40.70300960293493, -73.85822166012063 40.70301427856447, -73.85822364921782 40.703019277960735, -73.85822451381911 40.703024459676456, -73.85822422820259 40.70302967779702, -73.85822280214255 40.70303478735174, -73.85822027262836 40.70303964340369, -73.8582167133136 40.703044109165475, -73.85821222385901 40.70304805958849, -73.85820692992667 40.70305138406436, -73.85628158244893 40.70390147929345, -73.85625038966 40.703908679564826, -73.85621811157735 40.70391213774163, -73.85618551870714 40.70391177013755, -73.85615338845349 40.703907586728945, -73.85612248856161 40.70389968663176, -73.85609355699737 40.70388825987726, -73.85606728422076 40.70387357658366, -73.85604429543065 40.70385598963525, -73.85593271799641 40.70374949046172, -73.85602193552957 40.70372966744112, -73.85618234129299 40.70370621960531, -73.85634111688634 40.70367704495114, -73.85649790951778 40.703642206081454, -73.85665236872751 40.703601782713434, -73.85680415350525 40.70355586358301, -73.8568220970654 40.70355187682119, -73.8569329855352 40.70351180500176, -73.85693675484897 40.703510439106104, -73.85693684483986 40.70351041040157, -73.85722622236901 40.703405837444855, -73.85767653186551 40.703216966837765, -73.85817081436599 40.70299618945601, -73.85817749059576 40.70299497748724)), ((-73.89666152882131 40.67995257503755, -73.89678941989318 40.67991815597778, -73.89664433804987 40.680401499618156, -73.89630182290517 40.68055502460629, -73.89628152484052 40.68050100693452, -73.89626968894056 40.68044554885974, -73.89626647604432 40.68038941776837, -73.89627193342456 40.68033338724606, -73.89628598297155 40.680278229862964, -73.89630843303853 40.68022470727896, -73.89633897254743 40.68017355853167, -73.89637718046797 40.68012549013982, -73.89642252938702 40.68008116349952, -73.8964743926106 40.68004119218983, -73.89653205601682 40.680006126674876, -73.89659472279278 40.67997645070709, -73.89666152882131 40.67995257503755)), ((-73.85807023251087 40.70274841541291, -73.85813672101467 40.70246727258354, -73.85835511460246 40.70249006878034, -73.85878709444873 40.702373189785526, -73.85876463104066 40.70257835040759, -73.85840764252966 40.70271210265037, -73.85830260908692 40.70275979513586, -73.85820053903953 40.7028110797202, -73.85819034569593 40.702817513934235, -73.85817888564542 40.7028225651998, -73.85816647867073 40.70282609252997, -73.85815347404866 40.70282799639801, -73.85814023397236 40.70282822411977, -73.85812712882023 40.70282676894766, -73.85811452650252 40.702823671858305, -73.8581027782678 40.70281901883359, -73.85809221396784 40.70281294175536, -73.85808312787942 40.70280560848217, -73.85807577514872 40.702797225546426, -73.85807036116512 40.702788027335075, -73.85806703802074 40.70277827158263, -73.85806589743224 40.702768229456844, -73.85806697192814 40.702758183758846, -73.85807023251087 40.70274841541291)), ((-73.83711493349232 40.71075193367497, -73.83714697607346 40.71075169624878, -73.83712536309069 40.71076734629325, -73.83693782686525 40.7109395892545, -73.83674470923566 40.71110822284359, -73.83654612642401 40.71127314183768, -73.8363422053007 40.71143424373075, -73.83613307036686 40.71159142871505, -73.83607451746033 40.71161332955832, -73.83605755635759 40.7115980363181, -73.83616059180717 40.71148947406275, -73.83625943244778 40.711378677880035, -73.83635399640711 40.71126574041708, -73.8364260977527 40.7111681769246, -73.83650623939467 40.71107431690616, -73.83659409375532 40.71098454169742, -73.83668930134456 40.71089921908043, -73.83675183255131 40.71086261819821, -73.83681849933566 40.71083052120374, -73.83688874248055 40.71080319565013, -73.83696197564463 40.710780872132204, -73.83703758301235 40.71076373707904, -73.83711493349232 40.71075193367497)), ((-73.89735037834464 40.67983703240989, -73.89737267045352 40.679835539429874, -73.89739497469613 40.679836922701206, -73.89741665594272 40.67984114113443, -73.89743709574238 40.679848076211215, -73.89745571361829 40.67985752930149, -73.89747197769934 40.67986923067835, -73.89748542481453 40.679882848540565, -73.89749567231483 40.679897993525735, -73.89750242869401 40.67991423492888, -73.89750550067093 40.679931110614255, -73.89750480026869 40.67994813872834, -73.89750034952058 40.67996483481362, -73.89749227217226 40.67998072350799, -73.89748080194276 40.67999535115937, -73.89746626239129 40.68000830201723, -73.89744906926924 40.680019207239816, -73.89684243580825 40.680301215043485, -73.89698738991162 40.679899496413825, -73.89735037834464 40.67983703240989)), ((-73.88965651801509 40.6907675510243, -73.88945046634848 40.69073422606764, -73.88931069768313 40.6907387311652, -73.88928788723982 40.69068528803892, -73.8894297131414 40.69060871682056, -73.88956730823311 40.69052779818869, -73.88970044513518 40.69044266701752, -73.88982889882577 40.690353465388114, -73.88995245728881 40.69026034259864, -73.88996716341782 40.690269845375745, -73.88992360460207 40.69031086175019, -73.88988769447201 40.69035596835676, -73.88986008861899 40.69040434366079, -73.88984128775758 40.69045510744488, -73.88983163415155 40.6905073352132, -73.88983130566578 40.69056007709615, -73.8898403062759 40.69061237224922, -73.88985847194748 40.69066326957067, -73.8898854729763 40.690711842111845, -73.8899208186878 40.690757205993165, -73.88996386450845 40.69079853571999, -73.89001382731922 40.69083507950671, -73.89000365942071 40.69086205188478, -73.88965651801509 40.6907675510243)), ((-73.85538217238755 40.70385467156295, -73.85541196957082 40.70384937525893, -73.85542245583596 40.70386138866523, -73.85542206677687 40.703872734638594, -73.85541911637814 40.70388386037114, -73.85541369410564 40.70389443368578, -73.85540596038726 40.70390413870364, -73.85539614777508 40.70391268575132, -73.85538454791164 40.703919819449006, -73.8553715067793 40.70392532680941, -73.8552979913438 40.70393192072159, -73.85522587311627 40.70394461911985, -73.85515602213088 40.7039632673129, -73.85508928609302 40.703987641243835, -73.8550191543199 40.704010219738926, -73.85501725977822 40.70407555316194, -73.85424418092269 40.70431453286921, -73.85418119262968 40.70423569693938, -73.85416803139137 40.70421922429381, -73.854224743977 40.70419609171703, -73.85422092813818 40.704194881097635, -73.8543785170242 40.7041313629875, -73.85453930651984 40.704072675455144, -73.8547030420448 40.70401891001815, -73.85486946193002 40.70397015458439, -73.85503830335328 40.70392648445426, -73.8552092975905 40.70388796951919, -73.85538217238755 40.70385467156295)), ((-73.89679682142024 40.680464425788806, -73.8972631453467 40.68024822153579, -73.89717918320682 40.68033252298528, -73.89710242444549 40.6804207147357, -73.89703318072333 40.68051244047627, -73.89697173060846 40.68060732945765, -73.89691832430324 40.68070499919763, -73.89687317536401 40.68080505547312, -73.8968364666143 40.68090709232543, -73.89680834776925 40.68101069836154, -73.8967666668001 40.68129635110768, -73.89671717598112 40.6812994458897, -73.89671332573235 40.68115965551625, -73.89671633977571 40.681019853291694, -73.89672621540107 40.680880233724274, -73.89674293806543 40.68074099401202, -73.89676648495487 40.680602325941194, -73.89679682142024 40.680464425788806)), ((-73.89052297624866 40.690402110745, -73.89053464365323 40.6903436244615, -73.89091297969077 40.69137178607453, -73.89089861885529 40.6914301149469, -73.89074078680713 40.691384901699294, -73.89052297624866 40.690402110745)), ((-73.85403878420566 40.70405745443419, -73.8539372841873 40.70393041730065, -73.85394847372658 40.70392484921985, -73.85395419738076 40.7039339903844, -73.85396173913288 40.70394233329948, -73.8539709101135 40.70394966970653, -73.85398148353032 40.70395581741391, -73.85399319584383 40.703960623900365, -73.85400575504634 40.70396396812632, -73.85401884892919 40.703965767748905, -73.85403215218464 40.703965978230315, -73.85404533350163 40.70396459464777, -73.85429314836882 40.70393758255284, -73.85451596306594 40.703849054911466, -73.8545393379227 40.70383268971592, -73.8551412284075 40.70362303943363, -73.85516619357962 40.70362127972961, -73.8551911907821 40.70362275020028, -73.8552155042283 40.70362740672059, -73.85523843725535 40.70363511693995, -73.85525933480585 40.70364566031019, -73.85527759524692 40.70365873440425, -73.85530084826051 40.7036983862055, -73.8552739043249 40.703705183621324, -73.8550930752324 40.703744195962, -73.8549143089863 40.70378837325918, -73.85473786009835 40.70383765010627, -73.85456397835546 40.703891958390386, -73.85439291356887 40.703951220094574, -73.85422490728155 40.704015351789536, -73.85406019987786 40.70408426013994, -73.85403878420566 40.70405745443419)), ((-73.89633461914896 40.68068063186236, -73.89661111422791 40.68055216283664, -73.89657456720742 40.68066949409908, -73.89654623547146 40.68078813487957, -73.89652620001482 40.6809077520663, -73.89651451581635 40.6810280089205, -73.89651121656561 40.681148567781875, -73.89650256023498 40.68141227306214, -73.89648193529027 40.68141539370342, -73.89633461914896 40.68068063186236)), ((-73.88490136699484 40.69128257275423, -73.88488138678997 40.691268550679375, -73.88530637283903 40.691309648525, -73.88531235845028 40.69135957177391, -73.88487373321426 40.69148115524356, -73.8849089997334 40.69145345829393, -73.88492433689986 40.69143638097802, -73.88493594193046 40.69141767540158, -73.88494352653194 40.69139781134569, -73.88494689819524 40.69137728480186, -73.88494597558697 40.69135661078303, -73.88494077911434 40.69133630620448, -73.88493144040604 40.69131687998749, -73.88491819287368 40.69129881774155, -73.88490136699484 40.69128257275423)), ((-73.84246994327499 40.70895846325583, -73.84283718489894 40.708756998290745, -73.84281493621636 40.70879817716606, -73.84279981302305 40.70884118840509, -73.842792063153 40.70888532004376, -73.84279181732843 40.70892984284684, -73.84279907729507 40.70897402289912, -73.84281372408788 40.709017128820584, -73.84276791214415 40.70901654305765, -73.84248986375303 40.708977205866155, -73.84246994327499 40.70895846325583)), ((-73.89752771992164 40.67982463190191, -73.89802270174775 40.679740307085, -73.89758116548055 40.67993142112865, -73.89757630790639 40.6799026399485, -73.89756558072652 40.67987479548139, -73.89754925021565 40.679848576856756, -73.89752771992164 40.67982463190191)), ((-73.84082476459473 40.7087402454843, -73.84090804040753 40.70866809537435, -73.84090554554885 40.70875301026015, -73.84082476459473 40.7087402454843)))",Q083,69219,Q083,Q-05,Q-05,Q-05,Q-05,"Jackie Robinson Parkway bet. Bushwick Ave. and Markwood Pl., Park La.","304, 305, 405, 406","29,30,37",83,"11207, 11375, 11385, 11415",Q,72.75,False,Jackie Robinson Parkway,No,100000440,PARK,,19370601000000.00000,,DPR/CDOT,True,Jackie Robinson Parkway,N,Jackie Robinson Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/Q083/,No,"28, 38, 54","12, 15, 18","6, 7",{FC2F0B2B-B01C-43BF-8D76-09844A137FC1} +"MULTIPOLYGON (((-73.86201787725591 40.83385433951623, -73.86156589027611 40.83350675418025, -73.86159168140878 40.83347381800039, -73.86161389887909 40.83344157901246, -73.86163570059536 40.833405152217885, -73.86257953604654 40.83313607175285, -73.86268169882685 40.833739397446585, -73.86215381852494 40.83358227514132, -73.86201787725591 40.83385433951623)))",X148L1,5643,X148L1,X-09,X-09,X-09,X-09,White Plains Rd bet. S/B Cross Bronx Exwy and Westchester Av,209,18,43,"10460, 10462",X,0.918,False,Virginia Park,Yes,100005055,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Virginia Park,Y,Virginia Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/X148L1/,No,87,33,15,{271E07A9-A10E-4679-A8C6-960CCFF4AFF3} +"MULTIPOLYGON (((-73.90492726459235 40.68320421380101, -73.90536335571325 40.682767742689634, -73.90550946307893 40.68285037330901, -73.90555449418119 40.6829731765258, -73.90557197286572 40.683020844298746, -73.90558083607394 40.68305202648432, -73.90559410382663 40.68309870653569, -73.90567653449864 40.68338873080086, -73.90571913423307 40.68360854977837, -73.90571140101169 40.68361638332088, -73.90573732687295 40.68381579467082, -73.90575067076796 40.68391842822616, -73.90576818301169 40.68405312080391, -73.90545645606122 40.68386625690282, -73.90530048450375 40.683772759707466, -73.90541319641932 40.6836576568017, -73.90481322674606 40.68331834978887, -73.90492726459235 40.68320421380101)))",B131,6094,B131,B-04,B-04,B-04,B-04,"Arberdeen St., Furman Ave. north of Bushwick Ave.",304,37,83,11207,B,1.278,False,Rudd Playground,Yes,100004182,PARK,20100106000000.00000,19340510000000.00000,,DPR/TRANSIT,False,Rudd Playground,Y,Rudd Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B131/,No,54,18,8,{C1E0756F-3790-4CD9-B350-10F3FACC1C51} +"MULTIPOLYGON (((-73.86262163118082 40.82359378977163, -73.86232917753959 40.822329670996, -73.8630672582749 40.82223447761065, -73.86335811085526 40.82349634858281, -73.86262163118082 40.82359378977163)))",X204,5035,X204,X-09,X-09,X-09,X-09,Story Ave. bet. Taylor Ave. and Thieriot Ave.,209,18,43,10473,X,2.075,False,Story Playground,Yes,100003765,PARK,20100106000000.00000,19580108000000.00000,880 LAFAYETTE AVENUE,DPR/DOE,False,Story Playground,Y,Story Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X204/,No,85,32,15,{9D10BA6C-54D2-4598-BA04-DF1783A3A71A} +"MULTIPOLYGON (((-73.97857996413917 40.725109790951095, -73.97872746163931 40.72490919386528, -73.97885253520151 40.72496186427173, -73.97869686712941 40.72517357678991, -73.97857209881252 40.72512048753598, -73.97857996413917 40.725109790951095)))",M325A,85739,M325A,M-03,M-03,M-03,M-03,E. 8 St. bet. Ave B and Ave. C,103,2,,10009,M,0.08,False,,No,100042710,PARK,,20021120000000.00000,339 EAST 8 STREET,DPR,False,La Casita Garden,,La Casita Garden,,Garden,,No,74,27,,{69B15308-17B5-4442-AB97-C58D1205DD76} +"MULTIPOLYGON (((-73.94549537443021 40.80309701432678, -73.9454814597434 40.80308668352707, -73.94547483578891 40.80308176727219, -73.94559202442177 40.802920488356904, -73.94563462515282 40.802938518433926, -73.945511019428 40.803108629153634, -73.94549537443021 40.80309701432678)))",M403,11486,M403,M-10,M-10,M-10,M-10,W 119 St. bet. Lenox Ave. and 5 Ave.,110,9,28,10026,M,0.021,False,,,100024462,PARK,20160222000000.00000,20160119000000.00000,13 WEST 119 STREET,DPR,False,Walter Miller III Memorial Garden,,Walter Miller III Memorial Garden (La Casa Frela),,Garden,,No,70,30,13,{2805ADB6-CEBC-42CF-B499-5CAD864B442F} +"MULTIPOLYGON (((-74.09923819038063 40.63740636035551, -74.09866413132987 40.63727019423493, -74.09770473861525 40.63735360636039, -74.09772162177919 40.63749024222145, -74.09704828633508 40.63752508263919, -74.09613962492142 40.63757209391253, -74.09606304893205 40.63705226738819, -74.09503698844647 40.63715017707508, -74.09503220206543 40.63714682479535, -74.09465311548932 40.63718243512402, -74.09452489101025 40.63679151709043, -74.09452487676768 40.6367914765788, -74.09427792980281 40.63606698362736, -74.09334113675405 40.635529609177624, -74.09333700208747 40.63552723786406, -74.09282419227536 40.63582809329041, -74.09280592211886 40.635839190730586, -74.09267161909497 40.63570396268329, -74.0926918634637 40.6356929789393, -74.09269806233348 40.63568961590507, -74.09268837053352 40.63567773776164, -74.09268210042018 40.635665550682816, -74.09268161224965 40.63566386800541, -74.09267925692575 40.63565575622354, -74.09267824768357 40.63564146759424, -74.0926797557291 40.63562338935112, -74.09268309207054 40.635616105962086, -74.09268518612784 40.635613985351895, -74.09268972954987 40.6356093863387, -74.09271030297884 40.63558683245201, -74.09295564765748 40.63530778941712, -74.0930555054439 40.635194214373286, -74.09306387377471 40.63518607410841, -74.09309286957 40.63515786797814, -74.0931360866059 40.63512529360896, -74.09315218787825 40.635116218638096, -74.09319780104356 40.63509051326819, -74.093253741239 40.63506772889525, -74.09326509288063 40.635064531849274, -74.09331757249556 40.63504975046746, -74.09338091169475 40.63503917197272, -74.09344122109258 40.635035241739374, -74.09350931160527 40.63503776367279, -74.09392463067002 40.63507576839169, -74.09544715674093 40.6356186112357, -74.0955352539326 40.63564711515968, -74.09561610306281 40.63566514479765, -74.09568998347152 40.63567546182577, -74.0957555975615 40.635679959329565, -74.09583433417562 40.635679710928216, -74.09590523283546 40.63567480522017, -74.09596030356136 40.635668315156934, -74.09603208269893 40.635655913612084, -74.09604265610916 40.63565408663218, -74.09612740495373 40.63563347586445, -74.09619930758754 40.635610850514, -74.09623674529335 40.6355970421388, -74.09629233305928 40.635573743287146, -74.0963554939219 40.63554278724896, -74.09640905101793 40.63551227688104, -74.09647092415219 40.63547127476256, -74.09651566652009 40.63543674641747, -74.09654936012618 40.635407198200426, -74.09658771495502 40.63536890381447, -74.09662252767586 40.63532857631737, -74.0966600648082 40.63527667304221, -74.09668665795236 40.635231881355075, -74.09670795454952 40.63518813781846, -74.0967375828723 40.635120304674, -74.09678420621151 40.635013704258704, -74.09722181754663 40.63497566004378, -74.09741455236207 40.63495890394677, -74.09909664558265 40.63481265221588, -74.09921196120334 40.635547042658004, -74.09921535317703 40.63556573361645, -74.09924210642001 40.63571313097985, -74.0992720914988 40.635920858550705, -74.09928115096443 40.635983623241906, -74.09941677375978 40.63692314858535, -74.09951160736512 40.63758009809962, -74.09951364748483 40.637594229985226, -74.09923819038063 40.63740636035551)))",R169,6348,R169,R-01,R-01,R-01,R-01,Brighton Ave. bet. Lafayette Ave. and N. Randall Ave.,503,49,120,10301,R,26.532,False,Goodhue Park,No,100008354,PARK,20130114000000.00000,20121120000000.00000,,DPR,False,Goodhue Park,,Goodhue Park,Large Park,Neighborhood Park,,No,61,24,11,{2E4A4A5D-E732-45F0-A152-AE01888344D5} +"MULTIPOLYGON (((-73.80158258970917 40.67588444978801, -73.8015153643814 40.675529206803255, -73.8010392158228 40.67557534366515, -73.80103041720454 40.67552019248595, -73.80102728462337 40.6755005593966, -73.80102342988043 40.6754763918549, -73.80101678043725 40.6754347089234, -73.80100931127144 40.675387893426695, -73.80100261424417 40.67534591143991, -73.80099794097268 40.67531661133422, -73.80099249557595 40.67528247861806, -73.80098627924451 40.67524351149222, -73.80097808678133 40.67519216153766, -73.80097534088439 40.67517494520263, -73.8009714896575 40.67515080107766, -73.80096763376955 40.6751266344315, -73.80096416453966 40.67510488364119, -73.80096030865964 40.675080716094115, -73.80095640518111 40.67505624949279, -73.80095177955154 40.6750272484383, -73.80094830914923 40.675005497645195, -73.80094487824843 40.67498398645782, -73.80093888710866 40.67495637433912, -73.80093241178258 40.67492653080111, -73.80092412453267 40.67488833903434, -73.80091842742466 40.67486208180092, -73.8009066855319 40.67480796741269, -73.80089874367339 40.674771362952576, -73.80087819777484 40.67467666952556, -73.80086265361584 40.674605034390744, -73.8008584231117 40.6745855371733, -73.80084892723909 40.67454177270765, -73.80082738045341 40.674442463285686, -73.80116256279129 40.6744744215703, -73.80121335753165 40.67457652894431, -73.80121965354542 40.674589182184, -73.80176191026113 40.67567918254472, -73.80179328744725 40.675861796635616, -73.80158258970917 40.67588444978801)))",Q220E,5897,Q220E,Q-12,Q-12,Q-12,Q-12,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 120 Ave. and Rockaway Blvd.",412,28,113,11436,Q,1.37,False,Playground One Forty,Yes,100000181,PARK,20090423000000.00000,19460306000000.00000,,DPR,True,Playground One Forty,Y,Playground One Forty,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q220E/,No,32,10,5,{9EC86FAE-13E4-484E-9326-FE19FA03C5DC} +"MULTIPOLYGON (((-73.92074727949363 40.7478215260841, -73.92091175079527 40.746993935729186, -73.92286563992296 40.74722111688471, -73.92280813150339 40.74751236254426, -73.92250783195853 40.74747803979962, -73.92230451798193 40.7474548012347, -73.92217373114232 40.74743985277649, -73.92205238361673 40.747430021833885, -73.92200753168754 40.74742980776842, -73.92195571752829 40.74742955925146, -73.92190643660774 40.74743390501275, -73.92183814611714 40.74744285655312, -73.9217730386246 40.747455617557044, -73.9216886062759 40.747475244357, -73.92162906231441 40.747489275174374, -73.92154658597903 40.747514909580396, -73.92147582510793 40.74753918134388, -73.92140776419208 40.74756516766979, -73.92133147694071 40.747598681075175, -73.92125949157867 40.74763096907977, -73.92120266146645 40.7476608432445, -73.92112948319524 40.747702492919025, -73.92111628599127 40.747766171311916, -73.92109694267383 40.74785950187678, -73.92074727949363 40.7478215260841)))",Q340,5446,Q340,Q-02,Q-02,Q-02,Q-02,Skillman Ave. bet. 41 St. and 43 St.,402,26,108,11104,Q,2.027,False,Torsney Playground,Yes,100000087,PARK,20090423000000.00000,19510719000000.00000,41-15 SKILLMAN AVENUE,DPR,True,Torsney Playground,Y,Torsney Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q340/,No,30,12,14,{AECF1315-55D2-4882-A227-DD20B3B95DAC} +"MULTIPOLYGON (((-73.98508748296607 40.67266943053302, -73.98506493934694 40.67266748970015, -73.9850184994206 40.67267256616976, -73.98500933030691 40.67267512513998, -73.98499559342801 40.67267792034937, -73.9849541699531 40.67267555198784, -73.98494607233975 40.67267310152737, -73.98534822931263 40.67219530046891, -73.9861535653264 40.672585358405904, -73.98576733616451 40.67304655152534, -73.98574909604613 40.673068332727986, -73.98607416960941 40.673226421939795, -73.98598096271728 40.67333771968798, -73.98508162666911 40.67290472807662, -73.98510612200835 40.67290081400948, -73.98512372221764 40.67289589677243, -73.98513702084439 40.67289084299925, -73.98515536240559 40.67288159347484, -73.9851759689183 40.6728669420491, -73.98519062984981 40.67285212055759, -73.98519855419691 40.67284136582457, -73.98521043217207 40.67281574589541, -73.9852127954306 40.672804378096046, -73.98521345846977 40.67280118495459, -73.98521410643971 40.67279127486876, -73.98521225297016 40.67276516779607, -73.9852075078209 40.6727492685912, -73.98519536237316 40.67272776993136, -73.98518548084022 40.672716215050016, -73.98517363103389 40.672705603654066, -73.98514619439207 40.6726879257042, -73.98513248794114 40.672681572600425, -73.9851177250841 40.6726762459456, -73.98508748296607 40.67266943053302)))",B111A,4838,B111A,B-06,B-06,B-06,B-06,"5 St., 4 St. bet. 4 Ave. and 5 Ave.",306,39,78,11215,B,1.549,False,JHS 51 JOP,Yes,100003913,PARK,20100106000000.00000,19480617000000.00000,364 5 AVENUE,DPR/DOE,False,Washington Park,Y,Washington Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B111A/,No,52,20,7,{8842C92B-92E3-49EB-99E4-61493E957B92} +"MULTIPOLYGON (((-73.90091895909708 40.85000382919979, -73.90111515861341 40.848867477159615, -73.90111621263769 40.84886203458636, -73.90111730697319 40.848856597450656, -73.90111843687902 40.84885116394736, -73.90111960828189 40.84884573588258, -73.90112081762686 40.84884031145228, -73.90112206609578 40.848834893358934, -73.90112335250404 40.84882948070103, -73.90112467685441 40.84882407167762, -73.90112604151317 40.84881866989269, -73.90112744411128 40.848813273543186, -73.90112888583465 40.84880788263017, -73.90113036431147 40.84880249715159, -73.90113188191219 40.84879711800992, -73.9011334386354 40.84879174610576, -73.9011350344825 40.84878638053851, -73.9011366670817 40.84878102130619, -73.90113833643298 40.84877566840874, -73.90114004727711 40.84877032365133, -73.90114179487337 40.84876498522878, -73.90114358040618 40.84875965404265, -73.90114540387563 40.84875433009294, -73.90114726528034 40.848749014280166, -73.9011491646216 40.84874370570378, -73.90115110308395 40.84873840526534, -73.9011530782957 40.848733112962734, -73.90115509144124 40.84872782969756, -73.90115714252339 40.8487225536688, -73.90115923154073 40.84871728577688, -73.90116135730608 40.848712026921376, -73.90116351981933 40.848706777102244, -73.90116572145102 40.84870153722194, -73.90116795864614 40.84869630547655, -73.9011702349609 40.84869108276955, -73.90117254802229 40.848685869999336, -73.90117489783029 40.84868066716605, -73.9011772855721 40.8486754733701, -73.90117971006183 40.84867028861048, -73.9011821712941 40.848665116489165, -73.90118466927431 40.84865995340425, -73.90118720400103 40.84865480025612, -73.90118977666025 40.84864965704587, -73.90119238606333 40.84864452557342, -73.90119503102436 40.84863940583777, -73.90119771273464 40.84863429423795, -73.90120043000158 40.848629195275436, -73.90120318519826 40.84862410805175, -73.90120597595424 40.848619031664334, -73.90120880226814 40.84861396701369, -73.90121166532592 40.848608914100865, -73.90121456512749 40.848603872925814, -73.90121750048574 40.84859884438803, -73.90122047021605 40.84859382758597, -73.90122347787465 40.848588823423256, -73.90122651990534 40.84858383099628, -73.90122959749262 40.84857885120654, -73.90123271182237 40.848573884055064, -73.90123586052148 40.84856893044034, -73.90123904477716 40.848563989462825, -73.90124226458808 40.84855906202309, -73.9012455187697 40.84855414721957, -73.90124880969105 40.84854924685525, -73.90125213379594 40.84854436002665, -73.9012554934573 40.84853948583529, -73.90125888748543 40.84853462698161, -73.90126231706869 40.84852978166565, -73.90126578102128 40.84852494988636, -73.901269278156 40.84852013254331, -73.90127281202912 40.84851533053989, -73.90127637789978 40.84851054207118, -73.9012799781358 40.848505769840585, -73.90128361274111 40.84850101114666, -73.90128728171305 40.848496267790466, -73.90129098386575 40.848491539770876, -73.90129472038507 40.84848682708896, -73.9012984900838 40.84848213064414, -73.9013022941505 40.84847744863654, -73.90130612902489 40.84847278286398, -73.90131000063626 40.848468133331586, -73.90131390305794 40.848463498233315, -73.90131783865911 40.84845887937215, -73.90132180743693 40.84845427854907, -73.90132581058006 40.84844969396415, -73.90132984453217 40.84844512471374, -73.90133391166096 40.84844057350147, -73.90133801078467 40.84843603762479, -73.90134214308506 40.84843151978613, -73.90134630737897 40.84842701818358, -73.9013505036637 40.84842253461814, -73.90135473194196 40.84841806728869, -73.90135899102386 40.84841361889578, -73.90136328209798 40.848409187639426, -73.90136760635004 40.84840477352067, -73.90137196140715 40.84840037743789, -73.90137634726918 40.848395999391144, -73.90138076393619 40.848391639380424, -73.90138521259267 40.84838729830722, -73.90138969205407 40.848382975270006, -73.90139420113468 40.84837867026782, -73.90139874220336 40.84837438510361, -73.90140331407832 40.848370117074865, -73.90140791556976 40.848365868882155, -73.90141254667893 40.84836163962486, -73.90141721096346 40.8483574293061, -73.90142190130814 40.848353237919774, -73.90142662363962 40.84834906727189, -73.90143137440438 40.84834491465797, -73.90143615597003 40.84834078278147, -73.90144096596762 40.84833666983941, -73.90144580676746 40.848332576734315, -73.90145067599782 40.84832850346415, -73.90145557365747 40.84832445092937, -73.90146049974632 40.84832041912998, -73.9014654566388 40.84831640626706, -73.90147044077325 40.84831241503901, -73.90147545333966 40.848308442745356, -73.90148049551709 40.84830449388958, -73.90148556375473 40.84830056396618, -73.90149066042159 40.84829665477815, -73.90149578551635 40.84829276722599, -73.901500939039 40.848288901309715, -73.90150611980499 40.848285056127764, -73.90151132662852 40.84828123167917, -73.90151656069276 40.848277429765915, -73.90152182318619 40.84827364858804, -73.90152711173447 40.84826988994444, -73.90153242752483 40.84826615293567, -73.90153776937134 40.848262437560734, -73.90154313727272 40.848258744720106, -73.90154853360195 40.848255073515276, -73.90155395480025 40.84825142484376, -73.90155940205335 40.848247798706495, -73.90156487417546 40.84824419510256, -73.9015703723538 40.84824061313238, -73.90157589658429 40.848237055497485, -73.90158144568517 40.84823351949534, -73.90158699939032 40.84823007714806, -73.90159276624189 40.84822684209567, -73.90159873436819 40.84822382333285, -73.90160488597074 40.84822102804836, -73.90161120918312 40.84821846163502, -73.90161768976436 40.848216131284644, -73.90162430992021 40.84821404148437, -73.9016310577828 40.84821219852756, -73.90163791318743 40.848210605999014, -73.90164486189856 40.848209267488514, -73.90165188967944 40.84820818748633, -73.90165897637193 40.84820736507481, -73.9016661077392 40.8482068047443, -73.9016732671782 40.84820650738106, -73.90168043689849 40.84820647477093, -73.90168760030086 40.84820670509878, -73.90169473959631 40.84820719925, -73.90170184055737 40.84820795541142, -73.90170888421311 40.8482089717659, -73.90171585515148 40.84821024559884, -73.90172273558628 40.84821177599466, -73.90172951129645 40.84821355663777, -73.90173616449842 40.84821558481155, -73.9017426809699 40.848217855100984, -73.90174904530292 40.848220362090004, -73.90175524208807 40.84822310126303, -73.90176125710713 40.848226064503606, -73.90176707495333 40.84822924549509, -73.90177268377883 40.84823263702361, -73.9017780693654 40.84823623097255, -73.9017832198678 40.84824001832697, -73.90178812225365 40.848243990971376, -73.90179276467767 40.848248139890806, -73.901797137669 40.84825245427133, -73.90180122938371 40.848256924197415, -73.90180503272131 40.848261539757644, -73.90180853583776 40.84826629103659, -73.90181173282376 40.84827116452182, -73.90181461420835 40.848276149399425, -73.90181717407823 40.84828123485848, -73.90181940770842 40.848286408288025, -73.9018213068152 40.848291657974734, -73.90182328415942 40.84829692753877, -73.90182533149328 40.84830218095351, -73.90182745118842 40.848307418220905, -73.90182964087595 40.84831263753799, -73.90183190173899 40.8483178407067, -73.9018342337815 40.84832302502563, -73.90183663463054 40.84832819139318, -73.90183910665915 40.84833333891091, -73.90184164868275 40.848338466677326, -73.90184425951692 40.848343573790864, -73.90184693916167 40.848348660251595, -73.90184968998864 40.8483537260615, -73.90185250725845 40.84835876851504, -73.90185539452338 40.84836379121722, -73.90185834941971 40.84836878876307, -73.90186137075754 40.84837376385305, -73.9018644609114 40.84837871468822, -73.90186761750938 40.848383641266494, -73.90187084055302 40.84838854268743, -73.9018741300422 40.84839341895098, -73.90187748716552 40.84839826825721, -73.90188090954858 40.84840309240506, -73.90188439601086 40.848407887791545, -73.90188794773424 40.848412657119106, -73.9018915647227 40.848417397686354, -73.9018952457904 40.84842210949217, -73.9018989909374 40.84842679253662, -73.90190280016498 40.84843144591923, -73.90190666991558 40.84843606963688, -73.90191060374943 40.848440661891665, -73.90191459929353 40.848445223582004, -73.90191865773507 40.84844975380845, -73.90192277670363 40.84845425166853, -73.90192695738507 40.84845871716313, -73.90193119740907 40.848463149389815, -73.90193549677424 40.8484675492491, -73.90193985785635 40.84847191404145, -73.90194427709649 40.848476244664326, -73.90194875449464 40.848480541117816, -73.90195329005346 40.84848480160081, -73.90195788377163 40.848489027013855, -73.90196253446594 40.84849321555493, -73.90196724213644 40.84849736722406, -73.90197200441135 40.84850148201923, -73.90197682366244 40.84850555994238, -73.90198169870649 40.848509599191566, -73.90198662717052 40.84851360066525, -73.9019916102429 40.84851756256348, -73.90199711317412 40.84852121783515, -73.9020026885374 40.848524809233155, -73.90200833395983 40.84852833765594, -73.90201404825679 40.84853180220197, -73.9020198302451 40.848535201069254, -73.90202567755298 40.84853853425577, -73.90203158899598 40.848541800860026, -73.90203756576122 40.84854499998254, -73.90204360429247 40.848548130719706, -73.90204970340383 40.84855119307061, -73.9020558619121 40.84855418523316, -73.90206207863143 40.84855710720642, -73.90206835237592 40.848559958989355, -73.90207468077517 40.84856273967942, -73.90208106383052 40.84856544837613, -73.9020874991728 40.84856808327649, -73.9020939856136 40.84857064618048, -73.90210052197233 40.84857313348506, -73.90210710587318 40.848575547889745, -73.90211373850478 40.84857788759452, -73.90212041394034 40.8485801507934, -73.90212713336449 40.848582338387814, -73.90213389677709 40.84858445037779, -73.90214069943877 40.84858648405782, -73.90214754134547 40.84858844212938, -73.90215442131664 40.848590320989494, -73.90216133697788 40.84859212243712, -73.90216828833184 40.848593844671235, -73.90217527300544 40.84859548859039, -73.9021822898154 40.84859705239247, -73.90218933401702 40.848598536974045, -73.90219640798327 40.84859994143661, -73.9022035081565 40.84860126577712, -73.90238757136106 40.84863613926007, -73.90237323687923 40.848634379273825, -73.90236599785723 40.84863392830393, -73.90235873706821 40.84863376457227, -73.90235147704068 40.84863388989888, -73.90234423319214 40.84863430339625, -73.90233702924363 40.8486350023831, -73.90232988298165 40.84863598777495, -73.90232281338778 40.84863725418491, -73.90231584181006 40.84863879983007, -73.9023089848571 40.8486406202221, -73.9023022638809 40.84864271087662, -73.90229569549531 40.84864506370328, -73.90228929867938 40.84864767511626, -73.90228308886107 40.84865053702415, -73.90227708502736 40.848653640438194, -73.90227130260506 40.84865697816753, -73.90226575820925 40.84866054122135, -73.90226046727214 40.84866431880685, -73.90225544166681 40.84866830102872, -73.9022506980099 40.84867247799565, -73.90224624936303 40.84867683801233, -73.90224210523432 40.84868136667901, -73.90223827868148 40.848686055001814, -73.90223478039849 40.84869088858198, -73.90223161989087 40.848695854820704, -73.90222880548211 40.84870093841668, -73.90222634311891 40.84870612766862, -73.90222424231062 40.84871140727617, -73.90214966329879 40.848915428040826, -73.90217845280519 40.84916847461004, -73.90213405634545 40.84929409165797, -73.90231088156906 40.84932903475819, -73.90221757915882 40.849595401481935, -73.90212399852605 40.849862559415136, -73.90160912235103 40.84976156344926, -73.90137040500684 40.85037057591523, -73.90136824122716 40.850375854551444, -73.90136574789356 40.85038104916005, -73.90136293213743 40.85038614894124, -73.90135979753772 40.85039113949019, -73.90135635478202 40.85039601091055, -73.90135260863131 40.85040075150005, -73.90134856977187 40.8504053522628, -73.90134424533768 40.85040980059797, -73.90133964720101 40.85041408751081, -73.90133478486375 40.85041820310403, -73.90132966901349 40.85042213748122, -73.9013243127071 40.85042588254919, -73.90131872663233 40.85042942841157, -73.90131292502659 40.85043277057804, -73.90130691858427 40.850435894649884, -73.90130072390788 40.85043880064128, -73.90129435405696 40.850441478657935, -73.90128782208716 40.850443921507036, -73.90128114460626 40.85044612560078, -73.90127433585306 40.85044808554847, -73.90126741243682 40.85044979686178, -73.90126038859503 40.85045125505037, -73.90125328330605 40.85045245742908, -73.90124610724827 40.850453400405, -73.90123888176917 40.85045408309596, -73.90123162110366 40.85045450281261, -73.9012243430401 40.85045465957017, -73.90121706299927 40.850454550680396, -73.90120979876286 40.85045418066093, -73.90120256575166 40.8504535468236, -73.90119537937832 40.850452651882996, -73.9011882598004 40.85045149765739, -73.90118121887159 40.85045008775898, -73.90117427556481 40.850448423104474, -73.9011674441029 40.850446509109005, -73.90116074108305 40.85044434938883, -73.90115418072526 40.85044195116011, -73.90114777962948 40.85043931623798, -73.9011415508285 40.85043645273819, -73.90113550854373 40.85043336697628, -73.901129668181 40.85043006616952, -73.90112403921685 40.85042655752994, -73.90111864061475 40.850422848277795, -73.90111344141454 40.8504190239333, -73.90110829801468 40.850415157313314, -73.90110321041524 40.85041124841776, -73.90109817980351 40.85040729634721, -73.90109320617674 40.85040330290265, -73.90108828953497 40.85039926808411, -73.90108343224725 40.85039519369459, -73.90107863431498 40.85039107883364, -73.90107389455089 40.85038692440068, -73.90106921769855 40.85038273039981, -73.90106459782717 40.85037849772645, -73.90106004205072 40.85037422728724, -73.90105554799743 40.85036991908008, -73.90105111566601 40.85036557400547, -73.90104674387048 40.8503611920625, -73.90104244091083 40.85035677415869, -73.9010381972985 40.850352321186435, -73.9010340189643 40.8503478322503, -73.90102990590553 40.85034330915137, -73.90102585812087 40.85033875279005, -73.90102187679622 40.85033416316739, -73.90101796074563 40.850329540282374, -73.90101411352548 40.850324885038575, -73.90101033276258 40.85032019833445, -73.90100661845695 40.85031548016998, -73.9010029741636 40.85031073234927, -73.90099939751337 40.85030595306924, -73.90099589087274 40.85030114593388, -73.90099245187119 40.85029631004075, -73.90098908406908 40.85029144359188, -73.90098578627378 40.85028655108871, -73.90098255848666 40.85028163163077, -73.9009794030795 40.850276685220095, -73.900976318865 40.8502717127562, -73.90097330584324 40.85026671423904, -73.90097036519593 40.85026169237107, -73.90096749811045 40.85025664625294, -73.90096470340075 40.850251575883576, -73.90096198106424 40.850246483063955, -73.90095933347267 40.85024136779615, -73.90095675825286 40.850236230978595, -73.90095425896247 40.850231072614314, -73.90095183322573 40.85022589540284, -73.9009494822325 40.85022069664366, -73.90094720716459 40.850215479039235, -73.90094500565033 40.85021024258767, -73.90094288006003 40.850204988191344, -73.90094083157825 40.85019971675188, -73.90093885901773 40.85019442916866, -73.90093696119395 40.850189124540236, -73.90093514166185 40.85018380467069, -73.90093339804834 40.85017847045835, -73.90093173272503 40.85017312190541, -73.90093014332034 40.850167759009736, -73.90092863101592 40.85016238447383, -73.90092719581321 40.85015699739725, -73.90092584008265 40.850151598682494, -73.90092456263824 40.85014618832854, -73.90092336110553 40.85014076813438, -73.90092223785629 40.85013533810202, -73.90092119407373 40.85012990003342, -73.9009202285746 40.85012445212668, -73.90091934135353 40.850118997983664, -73.90091853241313 40.85011353580347, -73.90091780293662 40.850108067388085, -73.90091715173685 40.85010259363696, -73.9009165799995 40.85009711455111, -73.90091608772472 40.85009163013056, -73.9009156725366 40.850086143074705, -73.90091533799142 40.85008065428716, -73.90091508172283 40.850075160163875, -73.90091490609585 40.85006966520933, -73.90091480873731 40.85006417032208, -73.9009147896499 40.85005867370101, -73.90091485120273 40.850053177149206, -73.90091499102122 40.850047682465615, -73.90091521029402 40.850042187850235, -73.90091550782981 40.8500366969041, -73.90091588600306 40.850031207828195, -73.90091634243923 40.850025722421414, -73.90091687950883 40.85002024158638, -73.90091749365408 40.85001476532002, -73.90091818724679 40.85000929362432, -73.90091895909708 40.85000382919979)))",X017,5700,X017,X-05,X-05,X-05,X-05,Valentine Av bet. E Tremont Av and E Burnside Ave,205,15,46,10457,X,4.385,False,Richman (Echo) Park,Yes,100005205,PARK,20100106000000.00000,18970706000000.00000,,DPR,Part,Richman (Echo) Park,Y,Richman (Echo) Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X017/,No,86,33,15,{BE14A4EC-F5BA-4711-8A55-A3F87D671B17} +"MULTIPOLYGON (((-73.87502053287322 40.74131862834808, -73.87510020638933 40.74130690551885, -73.87506229039293 40.74132960672254, -73.87504352380832 40.741340842712574, -73.87502053287322 40.74131862834808)))",Q069,6151,Q069,Q-04,Q-04,Q-04,Q-04,"Corona Ave., 90 St., 48 Ave.",404,25,110,11373,Q,0.002,False,Middleburgh Triangle,Yes,100000152,PARK,20090423000000.00000,19180606000000.00000,,DPR,True,Middleburgh Triangle,N,Middleburgh Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q069/,No,35,16,6,{7EE36C46-69A6-4150-941F-6B1A9096E958} +"MULTIPOLYGON (((-73.95877550406918 40.665993713463365, -73.95897526393232 40.66543826016609, -73.95969907951354 40.66558417808271, -73.95949746776414 40.666144794631236, -73.95877550406918 40.665993713463365)))",B357,5092,B357,B-09,B-09,B-09,B-09,Montgomery St. between Franklin Ave. and McKeever Pl.,309,35,71,11225,B,1,False,Jackie Robinson Playground (PS 320),Yes,100004072,PARK,20100106000000.00000,19640316000000.00000,945 FRANKLIN AVENUE,DPR/DOE,False,Jackie Robinson Playground,Y,Jackie Robinson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B357/,No,57,20,9,{21B114EC-FAE0-49E9-AE56-3840779A0A80} +"MULTIPOLYGON (((-73.95699805730628 40.70902438766636, -73.95701233406146 40.70899793237931, -73.95735244400576 40.709119393757454, -73.95701779294576 40.70964581883906, -73.95671220497246 40.709540843418004, -73.95671260073216 40.709540060122166, -73.95671601508005 40.70953416395899, -73.95672910143026 40.70951157055323, -73.95673830428639 40.70949567638948, -73.95676294880002 40.70945292758116, -73.95678759446596 40.70941017786725, -73.95681223891638 40.709367429047894, -73.95683688451973 40.709324678422426, -73.95686153009082 40.709281928691986, -73.95688617444642 40.709239179856084, -73.95692632492712 40.70916845613629, -73.9569636298761 40.709096836229975, -73.95699805730628 40.70902438766636)))",B223QB,4641,B223QB,B-01,B-01,B-01,B-01,"Marcy Ave., S. 4 St. and S. 5 St.",301,34,90,11211,B,0.195,False,Marcy Green Center,Yes,100003717,PARK,20100106000000.00000,19520206000000.00000,131 MARCY AVENUE,DPR,Part,Marcy Green Center,Y,Marcy Green Center,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223QB/,No,53,18,7,{21C98C25-5C41-40EC-811E-7C3736FD5138} +"MULTIPOLYGON (((-73.89750717050477 40.884958129988156, -73.8980179658663 40.884539235698355, -73.89807480932129 40.8845744958406, -73.89830616070094 40.88436352136587, -73.89832142120771 40.884372988120354, -73.89807746223678 40.88459545971291, -73.8980197771468 40.884559677446646, -73.8967995470805 40.885560352728604, -73.89652228544905 40.885562859080096, -73.89645072759669 40.88579367605343, -73.89643160529405 40.885790045244136, -73.89650663102535 40.88554804104543, -73.89652232653201 40.88554789933364, -73.8966182675122 40.885547031691225, -73.89673052573963 40.88554601738242, -73.89679095604784 40.88554547080986, -73.89682018757551 40.88552149897772, -73.8968824688938 40.88547042500902, -73.89695072233269 40.88541445318895, -73.8970000967346 40.88537396365753, -73.8970466316977 40.88533580203135, -73.89708866162054 40.885301335568485, -73.8971494194844 40.88525150907058, -73.89720908902815 40.88520257665484, -73.89725282240143 40.885166713192824, -73.89730405093087 40.88512470245745, -73.8973511177773 40.8850861035438, -73.89739988105157 40.885046114866924, -73.89744944855453 40.885005465026005, -73.89750717050477 40.884958129988156)))",X150K,5726,X150K,X-08,X-08,X-08,X-08,Major Deegan Exwy bet. W 238 St and Van Cor,208,11,50,10463,X,0.088,False,Strip,No,100004838,PARK,20100106000000.00000,19501212000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/X150K/,No,81,34,13,{B3567BE0-0AA0-499C-A826-1681853F8347} +"MULTIPOLYGON (((-73.73844121875466 40.597764173883746, -73.73844218320222 40.597353602633454, -73.73886240638618 40.59736012986105, -73.73969544840848 40.59737306567747, -73.7397086340443 40.596940300708184, -73.73971448910038 40.596748142510116, -73.73971463689713 40.59674326199106, -73.73971260002389 40.596737846113626, -73.739708334588 40.59673315371439, -73.73970021754786 40.59672580234121, -73.7396885426331 40.59671984412746, -73.73967726068477 40.59671702873986, -73.73966248773739 40.5967166341626, -73.73962895779229 40.596715038109245, -73.7395821454866 40.59671404141542, -73.73956223124667 40.59671634125663, -73.7395378528309 40.59671825995941, -73.73949993757697 40.59671817401776, -73.73948127867907 40.59671484209601, -73.73946552775084 40.59670652154327, -73.73944616291612 40.59669397112617, -73.73943534661427 40.596682334311915, -73.7394274865285 40.59666939123211, -73.7394209778964 40.59663830020304, -73.73942124289783 40.59660097037622, -73.73942989286307 40.59656498873933, -73.73944419145353 40.596534652702765, -73.73944628554875 40.59653024126851, -73.739518720225 40.59653140055978, -73.73955725120034 40.59636754432844, -73.73957232240514 40.596367778401074, -73.73961969310238 40.596368513410965, -73.73961293689335 40.59659023565765, -73.73962984890896 40.596559527298695, -73.73970497592786 40.596423120031254, -73.73971927504827 40.59639715421697, -73.739720159696 40.59636811333845, -73.73972174594655 40.5963160746003, -73.7397301138584 40.59604143924892, -73.73979482002741 40.59604244308256, -73.74055700388477 40.59605427207644, -73.74069867482804 40.596520368476966, -73.74170604812353 40.596539612941264, -73.74172642183878 40.59660663358886, -73.74180882694074 40.5968777304439, -73.74140882285114 40.59699711616147, -73.74128371593777 40.59703445586908, -73.74100092117054 40.59711885737776, -73.74090036099555 40.597148870373154, -73.74078774593653 40.597182480709094, -73.74076954619353 40.59712260507548, -73.74075465008747 40.59712408705825, -73.74073658167818 40.59712654525706, -73.74072710139639 40.59712734334761, -73.74070920022828 40.59712993429685, -73.74070105509844 40.5971316008037, -73.74068432917225 40.59713273464743, -73.74066754148834 40.59713243110909, -73.7406914873115 40.59721120916805, -73.74059436991334 40.597240193158505, -73.7398735032814 40.597455333915235, -73.73986049452503 40.597456929018065, -73.73984452940998 40.597455615930514, -73.73983248242794 40.597452027976075, -73.73982177158744 40.59744632500713, -73.73981344095155 40.59743919018596, -73.73980736989147 40.59743065565892, -73.73980358740499 40.597418130677376, -73.73969412748023 40.59741643114001, -73.73958774138598 40.59741477988813, -73.7395837664869 40.59754520043346, -73.73901858868446 40.59771386926183, -73.73900399751835 40.59771527246412, -73.73898551263567 40.597712995374486, -73.73896999345635 40.597706998639715, -73.7389567237885 40.597697046497295, -73.73894899745886 40.59768614608398, -73.73894551265913 40.597674270129424, -73.73885644575401 40.59767288717728, -73.73876849522105 40.59767152020169, -73.73876653738354 40.59777425051318, -73.73874131531744 40.59777820952398, -73.73870690491165 40.59778259970234, -73.7386682694489 40.59778616798761, -73.7386366901373 40.597788030501434, -73.7386046336358 40.59778896167731, -73.73856607889132 40.59778880913643, -73.73853173213935 40.59778749907457, -73.73851475364037 40.59778429419221, -73.73849314211539 40.59777946231966, -73.7384761187701 40.59777503981774, -73.7384539683896 40.59776843357485, -73.73844121875466 40.597764173883746)), ((-73.73850053314528 40.59693780473117, -73.73851221287383 40.59692954466285, -73.73851935930118 40.59692588227284, -73.73852583304034 40.59692324585261, -73.73853706200413 40.59691816811746, -73.73854774061691 40.59691244075005, -73.73855511122072 40.596907342527984, -73.738562595777 40.59690391684253, -73.73857164088933 40.596901413243785, -73.73858059759961 40.59690036649521, -73.7385900631523 40.59689699214176, -73.73860644092098 40.596893649719824, -73.73862564520712 40.5968874320394, -73.73864885498732 40.59688046522193, -73.73867819883807 40.59687403195256, -73.73870330045013 40.59687027620116, -73.73872115655354 40.59686984492452, -73.73873782288321 40.5968694415581, -73.7387502969642 40.59686709342725, -73.73877920055561 40.59686689527766, -73.73880278300317 40.596866733654856, -73.73882021343886 40.596867603556696, -73.73883200500092 40.59686819138344, -73.73884665025511 40.596868921673575, -73.7388524145669 40.596869754252126, -73.7388579202966 40.59687055022171, -73.73886493519194 40.59687242034647, -73.73887166567343 40.59687421327977, -73.73887039468845 40.59694092409969, -73.73885923720763 40.59693981271084, -73.73884997919693 40.59693724588397, -73.73884302023474 40.59693647812989, -73.73883213010389 40.596935276392834, -73.73881885103867 40.59693381167465, -73.73880550821096 40.5969323387053, -73.73877589152676 40.59693210749053, -73.73875740473002 40.596934302373995, -73.73873417374737 40.596936722406625, -73.73871773056857 40.596941382168396, -73.73870775148967 40.596943149725895, -73.73869395452843 40.59694602525424, -73.73868133680341 40.59694733924783, -73.73866245863478 40.59695203128668, -73.73864659966266 40.59695713992854, -73.7386380761749 40.59696159435946, -73.73860566375086 40.59698685154945, -73.73859947685813 40.59699377153087, -73.73859593154395 40.59700069752082, -73.73859325874271 40.59700896818042, -73.7385934413893 40.59703715237512, -73.73858897544748 40.59705079780074, -73.73858739776537 40.59706299994863, -73.73858593584724 40.59707430003221, -73.73858085303148 40.59708950016407, -73.73857354538042 40.59710416302326, -73.73856753609044 40.597115203315866, -73.73856232589334 40.597126425531386, -73.73855426121905 40.597149469668615, -73.73853833509729 40.59716960072638, -73.73851826409009 40.59718745212348, -73.73851456127285 40.59718903943112, -73.73851175564505 40.59719140233249, -73.73851011914846 40.59719418303678, -73.7385096818682 40.597197542806796, -73.73850774859156 40.59720461024254, -73.7385034483767 40.5972112256312, -73.73849701849568 40.5972168338875, -73.73848926218098 40.597220862303026, -73.73848398426082 40.59722312772395, -73.73847820628349 40.59722668246117, -73.73847363029769 40.5972307109089, -73.7384702514759 40.59723493749522, -73.73844447113524 40.59725992066352, -73.73845136626213 40.596981121633405, -73.73846299057698 40.59697404293479, -73.73847076243943 40.596967546213094, -73.73847828010967 40.5969589867066, -73.73848368806708 40.596950058585904, -73.73850053314528 40.59693780473117)))",Q469,6177,Q469,Q-14,Q-14,Q-14,Q-14,"Seagirt Blvd., Seagirt Ave. bet. Beach 5 St. and Queens County Border",414,31,101,"11559, 11691",Q,5.323,False,Seagirt Ave Wetlands,No,100000049,PARK,20090423000000.00000,19950927000000.00000,,DPR,False,Seagirt Ave Wetlands,N,Seagirt Ave Wetlands,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/Q469/,Yes,23,15,5,{CDAB8CFB-1E49-4EA2-B355-45FC807C776D} +"MULTIPOLYGON (((-73.8857302501398 40.67258554884047, -73.88608847786274 40.67253242874593, -73.88610525827796 40.67259762920355, -73.88612419590983 40.67267121289491, -73.88576596865107 40.67272433400146, -73.88574703021813 40.67265074934993, -73.8857302501398 40.67258554884047)))",B484,5275,B484,B-05,B-05,B-05,B-05,Warwick St. between Pitkin Ave. and Belmont Ave.,305,37,75,11207,B,0.119,False,Gregory's Garden,No,100003855,PARK,20100106000000.00000,20021120000000.00000,444-448 Warwick St,DPR,False,Gregory's Garden,N,Gregory's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B484/,No,55,19,8,{472339DB-5659-44DD-9CE6-AA99C7E84D32} +"MULTIPOLYGON (((-73.97742211525204 40.740467092842366, -73.97820347599296 40.73939217185263, -73.97869297497861 40.73959802037705, -73.97791161972094 40.740672944656815, -73.97742211525204 40.740467092842366)))",M263,4667,M263,M-06,M-06,M-06,M-06,"E. 26 St. To E. 28 St., 2 Ave.",106,2,13,10016,M,1.593,False,Bellevue South Park,Yes,100003891,PARK,20100106000000.00000,19861114000000.00000,315 EAST 26 STREET,DPR,True,Bellevue South Park,Y,Bellevue South Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M263/,No,74,27,12,{47D3681B-FE51-4513-8FE2-FCBB132CDE12} +"MULTIPOLYGON (((-73.92066064540502 40.6719010156028, -73.92073284094819 40.67190497720719, -73.92069937322741 40.67225837949053, -73.920627176122 40.672254416963966, -73.92066064540502 40.6719010156028)))",B487,6588,B487,B-16,B-16,B-16,B-16,Park Pl. between Howard Ave. and Ralph Ave.,316,41,73,11233,B,0.058,False,Preston Comm Garden,No,100004641,PARK,20100106000000.00000,20021120000000.00000,1711 PARK PLACE,DPR,False,Preston Community Garden,N,Preston Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B487/,No,55,25,9,{15836B1F-DAA6-42E0-AAF1-C728B55CBECB} +"MULTIPOLYGON (((-73.97014873022829 40.58761652185446, -73.97013821874324 40.58756050656778, -73.9697740642615 40.58760105647466, -73.9695492080476 40.58640276870705, -73.97026544622533 40.58632394165843, -73.97057242518314 40.58795976747708, -73.97050154188648 40.58796766129968, -73.97043090073795 40.58797552722467, -73.97035866955531 40.58798357099963, -73.97022049751355 40.5879989567351, -73.97020963002065 40.5879410484646, -73.97019943189446 40.587886705538445, -73.97017903687303 40.58777801968276, -73.97016373976481 40.58769650483745, -73.97014873022829 40.58761652185446)))",B252,5135,B252,B-13,B-13,B-13,B-13,Ave. Z between W. 1 St. and West St.,313,47,60,11223,B,2.387,False,West Playground,Yes,100004471,PARK,20100106000000.00000,19510719000000.00000,2536 WEST STREET,DPR,True,West Playground,Y,West Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B252/,No,45,23,11,{E5A39DFE-5305-4739-A0AD-71D34542F744} +"MULTIPOLYGON (((-73.94865741277704 40.824063739026414, -73.94871757649344 40.82408688602776, -73.9487179000931 40.824086913186534, -73.94871879212539 40.82408768080569, -73.94871950033797 40.82408855099955, -73.94872000459678 40.82408950034635, -73.94872029069884 40.82409050002394, -73.94872035036707 40.824091523013706, -73.94872018243966 40.82409253869828, -73.94871979049569 40.824093517362925, -73.94871918640959 40.824094432898484, -73.9487183867994 40.82409525649656, -73.94871741657565 40.82409596655626, -73.9485598224232 40.824193072465846, -73.94855937393721 40.8241935837474, -73.94855881644293 40.82419402924409, -73.94855816773145 40.824194396357015, -73.94855744559254 40.82419467428803, -73.94855667255626 40.82419485404233, -73.94855586996373 40.82419493112692, -73.94855506152483 40.82419490375138, -73.94855427094805 40.82419477192629, -73.94855352193909 40.82419453926424, -73.94855283701551 40.82419421297915, -73.94855223395099 40.82419380298453, -73.94855173170332 40.824193320995235, -73.94855134567253 40.824192780525536, -73.94855108651429 40.82419219868961, -73.94855096132851 40.8241915916996, -73.9485509748437 40.824190976667005, -73.94855112585913 40.824190373402196, -73.94855140962059 40.824189798112016, -73.9485518190022 40.82418926790264, -73.94855234095256 40.82418879807672, -73.94862931515425 40.82407082241966, -73.94863023786831 40.82406869766064, -73.94863161922687 40.8240667207872, -73.94863341888106 40.82406494941312, -73.94863558700415 40.82406343394399, -73.94863805954998 40.82406221757496, -73.94864076655087 40.82406133629476, -73.94864363093622 40.82406081348195, -73.94864657089947 40.82406066530894, -73.94864950108747 40.824060895339755, -73.94865233734019 40.82406149723344, -73.94865500024675 40.824062454745714, -73.94865741277704 40.824063739026414)))",M040,5980,M040,M-09,M-09,M-09,M-09,"Amsterdam Av, W 143 St and Hamilton Pl",109,7,30,10031,M,0.018,False,Johnny Hartman Square,Yes,100004899,PARK,20100106000000.00000,19121017000000.00000,,DPR,True,Johnny Hartman Square,Y,Johnny Hartman Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M040/,No,71,31,13,{6EC53565-EFA6-4F76-84E2-1661D5D329C9} +"MULTIPOLYGON (((-73.8451142303648 40.83879396464337, -73.84560022631956 40.83839470828734, -73.84599896473148 40.83865740333916, -73.84552210794737 40.83906816030876, -73.8451142303648 40.83879396464337)))",X170,5529,X170,X-10,X-10,X-10,X-10,St. Peter's Ave. at Tratman Ave.,210,13,45,10461,X,0.659,False,The Pearly Gates,Yes,100004698,PARK,20100106000000.00000,19510731000000.00000,,DPR,True,The Pearly Gates,Y,The Pearly Gates,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X170/,No,82,34,14,{B6E832FC-54A5-4C73-A35E-3687BC49CE6B} +"MULTIPOLYGON (((-74.23475728414512 40.50551793647347, -74.23470474300805 40.505360067105315, -74.23629022547141 40.50504142359161, -74.23634438226928 40.505204133782975, -74.23643132083454 40.505465332511044, -74.23725692743558 40.5052993948555, -74.23734548193852 40.505565434421975, -74.23651987226908 40.505731371811024, -74.2359793863695 40.50583999996557, -74.23493437454295 40.506050019382606, -74.23475728414512 40.50551793647347)))",R110,5078,R110,R-03,R-03,R-03,R-03,Hylan Blvd. bet. Joline Ave. and Sprague Ave.,503,51,123,10307,R,3.259,False,Tottenville Pool,Yes,100004789,PARK,20100106000000.00000,19710114000000.00000,6900 HYLAN BOULEVARD,DPR,False,Tottenville Pool,Y,Tottenville Pool,Neighborhood Plgd,Buildings/Institutions,http://www.nycgovparks.org/parks/R110/,No,62,24,11,{F68541D4-DAC0-4105-AD2E-B6FB805527E7} +"MULTIPOLYGON (((-73.92688407440926 40.68646615446998, -73.9272371715715 40.686425138344035, -73.92725189640474 40.686499657077334, -73.92726476948968 40.68656479938716, -73.926911676323 40.68660582820727, -73.92689880357409 40.68654068675879, -73.92688407440926 40.68646615446998)))",B573,14686,B573,B-03,,,B-03,Patchen Ave. bet. Putnam Ave. and Jefferson Ave.,303,37,,11221,B,0.104,False,,,100037056,PARK,,20160209000000.00000,142 PATCHEN AVE,DPR,False,Patchen Community Square Garden,,Patchen Community Square Garden,,Garden,,No,56,25,8,{788D1FC3-081F-4BA1-80F8-B2AB42A0C856} +"MULTIPOLYGON (((-73.70921435272733 40.74468920451262, -73.70905206009107 40.74425365301768, -73.70944704092129 40.74417680359312, -73.70950463993361 40.744329277636524, -73.70980360681774 40.74426551955737, -73.70992235077293 40.744585122998494, -73.71006557997937 40.74497062523991, -73.70990119968435 40.74500601025898, -73.70958065511383 40.745075011895366, -73.709374636872 40.74511935931587, -73.70921435272733 40.74468920451262)))",Q318,5332,Q318,Q-13,Q-13,Q-13,Q-13,80 Ave. bet. 261 St. and 262 St.,413,23,105,11004,Q,1.35,False,Playground Eighty LXXX,Yes,100000224,PARK,,19501101000000.00000,81-51 261 STREET,DPR/DOE,False,Playground Eighty LXXX,Y,Playground Eighty LXXX,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q318/,No,24,11,3,{323479BA-DE23-4C9C-9937-69F3885ECA31} +"MULTIPOLYGON (((-73.89059014547541 40.82391695232495, -73.8912525833483 40.82388596701966, -73.89126241783266 40.82400189088652, -73.89126786194197 40.82406605998663, -73.8910628414289 40.82407564947815, -73.89110461021836 40.8245679929606, -73.89064947457918 40.82458928133319, -73.89059014547541 40.82391695232495)), ((-73.89058531366881 40.82386217955083, -73.89052819341303 40.82321487461989, -73.89091508828686 40.82319677929052, -73.89092531166389 40.82331729700035, -73.89093518737334 40.823433706313274, -73.89093997637003 40.82349016476514, -73.89094677262723 40.823570282056096, -73.8909143170339 40.823571800211674, -73.89093755388653 40.82384570456877, -73.89058531366881 40.82386217955083)))",X284,4724,X284,X-02,X-02,X-02,X-02,Hoe Av bet. Aldus St and Westchester Av,202,17,41,10459,X,1.341,False,Printer's Park,Yes,100004949,PARK,20100106000000.00000,19970715000000.00000,1005 - 1027 HOE AvNUE,DPR,False,Printers Park,Y,Printers Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X284/,No,85,32,15,{525982B4-839B-436B-84C5-5B6C8D0B4FAD} +"MULTIPOLYGON (((-73.87914351679838 40.6588788067869, -73.87976887581414 40.6586098391117, -73.88003794850924 40.658972327080335, -73.87941310676243 40.65924169207896, -73.87914351679838 40.6588788067869)))",B246,6645,B246,B-05,B-05,B-05,B-05,Wortman Ave. between Jerome St. and Warwick St.,305,42,75,11207,B,0.694,False,Jerome Playground (PS 273),Yes,100004184,PARK,20100106000000.00000,19500323000000.00000,923 WORTMAN AVENUE,DPR/DOE,False,Jerome Playground,Y,Jerome Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B246/,No,60,19,8,{0374C559-56ED-4988-BA55-62CAE46E2A97} +"MULTIPOLYGON (((-73.78699442781044 40.59382346359079, -73.78654038155396 40.59384780245429, -73.78655057323182 40.59393493732001, -73.78628879992371 40.593953757146586, -73.78615530707648 40.592570116060756, -73.78674881198727 40.59261685765781, -73.78688177856459 40.59265207174858, -73.78699442781044 40.59382346359079)))",Q382,6671,Q382,Q-14,Q-14,Q-14,Q-14,Arverne Blvd. bet. Beach 57 St. and Beach 56 St.,414,31,101,11692,Q,2.096,False,Cardozo Playground,Yes,100000244,PARK,20110712000000.00000,,,DPR/DOE,False,Cardozo Playground,Y,Cardozo Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q382/,No,31,10,5,{9F77688E-A670-45B6-8A9B-5E9CFF257578} +"MULTIPOLYGON (((-73.97916641297812 40.68682008266849, -73.97925468788702 40.68681016234915, -73.97941024729411 40.687022375605615, -73.97920193324322 40.68706655336146, -73.97917607947872 40.68688715737309, -73.97916641297812 40.68682008266849)))",B422,6220,B422,B-02,B-02,B-02,B-02,"Flatbush Ave., Lafayette Ave., Rockwell Pl.",302,35,88,11217,B,0.082,False,Bkln Bears Rockwell Pl Garden,No,100004264,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,Brooklyn Bears Rockwell Pl Garden,N,Bkln Bears Rockwell Pl Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B422/,No,57,25,8,{A1742A1D-A609-4897-B1A3-BC093335EA96} +"MULTIPOLYGON (((-74.02141067238985 40.63823243392229, -74.02141320961763 40.63822998043683, -74.02145537695893 40.638277412803724, -74.02151067184714 40.63834320697814, -74.02156062286782 40.63840660944943, -74.02161652420925 40.638482770229686, -74.0216403445545 40.63851713584659, -74.02166103825199 40.63854802694584, -74.02168377843857 40.638583192417556, -74.02170472012367 40.63861679582427, -74.02172753341573 40.6386548762523, -74.02174431848876 40.63868396613664, -74.02175513179735 40.63870322798707, -74.02176665614257 40.638724237608564, -74.02177595097781 40.63874156723125, -74.02180150001051 40.63879113144063, -74.02182781668947 40.63884554569191, -74.02186203390977 40.63892252723378, -74.02189161383316 40.63899633351845, -74.02191128099255 40.63905026543662, -74.02193166933398 40.63911153283844, -74.02194468098808 40.63915427347328, -74.02195660732843 40.639196627991204, -74.0219534503763 40.63919467717009, -74.02193870047816 40.639143261271464, -74.02192708788158 40.63910589376388, -74.0219110411491 40.63905786225764, -74.02189791211615 40.639021144309616, -74.02187905432005 40.638973147553436, -74.02186296978476 40.63893220673089, -74.02183496178944 40.63886811223367, -74.02181182556171 40.63881893930011, -74.02178204844317 40.63875978356924, -74.02174633490347 40.638693932696114, -74.0216932293277 40.6386043249082, -74.02165180561664 40.63854005639263, -74.02159279718565 40.63845543043714, -74.0215354254579 40.63837966074563, -74.02145430609247 40.63828151396579, -74.02141067238985 40.63823243392229)))",B210M,5612,B210M,B-10,B-10,B-10,B-10,S/B Gowanus Exwy. bet. 64 St. and 65 St.,310,38,68,11220,B,0.008,False,Strip,No,100004320,PARK,20100106000000.00000,19581230000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210M/,No,51,23,7,{C3A8F850-400C-406C-B89F-68EAFB1C869B} +"MULTIPOLYGON (((-73.97804478843902 40.57645485639106, -73.97750375084546 40.57597182844181, -73.97745479266733 40.57582892994454, -73.97751605339046 40.57582488148611, -73.97759353052147 40.57582121888185, -73.97766977765598 40.575819199443245, -73.97776047515698 40.575818838816595, -73.97785497593651 40.57582081931437, -73.97796482883601 40.57582615623272, -73.97806675156572 40.575834044518864, -73.97817037752651 40.575844995721475, -73.9782469904065 40.57585502048245, -73.97833538633455 40.575868654015004, -73.97952876462422 40.57603469541771, -73.9795192147506 40.576127588203164, -73.97939980776529 40.57611133580322, -73.97890209339016 40.576435837664924, -73.97857008319829 40.57615125015263, -73.97811098561257 40.57646041265052, -73.97804478843902 40.57645485639106)))",B296,5161,B296,B-13,B-13,B-13,B-13,Surf Ave. between W. 12 St. and W. 8 St.,313,48,60,11224,B,1.76,False,Luna Park,Yes,100004579,PARK,20100106000000.00000,19620823000000.00000,2941 WEST 12 STREET,DPR,True,Luna Playground,Y,Luna Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B296/,No,46,23,8,{61424935-18EA-4BEE-85CD-1764DCDB6CE1} +"MULTIPOLYGON (((-73.98126898270925 40.747139784284236, -73.98127671225274 40.747139646863026, -73.98128284546954 40.74714029892596, -73.9812888032666 40.7471415912201, -73.98129446369313 40.74714350031247, -73.98129909985003 40.747145634364834, -73.98130334159517 40.74714820329759, -73.98130907581343 40.74715298051396, -73.98131388256714 40.747159008382944, -73.9813163972979 40.74716394626723, -73.98131777645007 40.74716913610902, -73.98131815606844 40.74717501017355, -73.98131756407564 40.74717910918245, -73.98131635284514 40.74718312614478, -73.98131414571647 40.747187527461776, -73.98128024345552 40.747235306425566, -73.98124994569496 40.74727788103926, -73.98121965026405 40.74732045474456, -73.98118934887385 40.74736302934118, -73.98115905217988 40.74740560843293, -73.98112875781706 40.747448181213244, -73.9809428930693 40.74769847245211, -73.98093545792074 40.74770404535562, -73.98093014542073 40.747706800025384, -73.98092438196022 40.747708966589656, -73.98091827530182 40.74771050094133, -73.98091275259264 40.74771131678548, -73.98090633015562 40.747711570564285, -73.98089833907933 40.74771096680059, -73.98088986764176 40.74770907793421, -73.98088134217058 40.74770568071018, -73.98087447936395 40.74770145529585, -73.98086973482654 40.74769730677599, -73.98086593532528 40.74769262711418, -73.98086310568192 40.747687567599776, -73.98086141992674 40.74768222191434, -73.98086082644264 40.747674912406204, -73.98086170066591 40.74766945278183, -73.98086372693068 40.747664174350646, -73.98103536028235 40.74742774419071, -73.98106863216495 40.74738254424678, -73.98110190163432 40.74733734429257, -73.98113517105875 40.747292143427956, -73.98116844162213 40.74724694255362, -73.98120171095603 40.7472017425697, -73.98123592189388 40.747155385578644, -73.9812395793234 40.7471515869381, -73.9812438949684 40.74714820804062, -73.98124813460514 40.7471456404868, -73.98125346825864 40.74714324690864, -73.98126064424453 40.747141049940346, -73.98126898270925 40.747139784284236)), ((-73.9794444423083 40.7496403184132, -73.979451406184 40.74963969470456, -73.97945763804739 40.74963984710114, -73.97946377971834 40.74964065144772, -73.97946971989676 40.749642091515284, -73.97947455641243 40.749643801537694, -73.97947878184027 40.74964581402105, -73.97947928500862 40.749646052744815, -73.97948409862649 40.74964906309347, -73.97948470473412 40.749649553076694, -73.9794878406319 40.749652084957674, -73.97948988963046 40.74965428165676, -73.9794914485742 40.74965595237304, -73.97949467852355 40.74966068330631, -73.97949594227687 40.74966349130911, -73.97949628543107 40.74966425319826, -73.97949669603122 40.749665169986486, -73.97949788106602 40.749669824012635, -73.97949817071515 40.74967515055738, -73.9794981066369 40.749675595395956, -73.97949786337365 40.74967729460755, -73.97949741244432 40.74968045170144, -73.9794955482748 40.74968558965703, -73.9794500843072 40.7497485449363, -73.97941322187407 40.7497990126168, -73.97931165739395 40.74993806946809, -73.9793079839256 40.749943099935244, -73.97924732956709 40.75002614809409, -73.97918475146756 40.75011111755217, -73.97913658401417 40.75017652249218, -73.97913125442813 40.75018003349997, -73.9791266451689 40.750182301039324, -73.97912356024227 40.75018333786315, -73.97911948174445 40.75018470769395, -73.97911268215402 40.75018611485246, -73.97911168628973 40.75018620832448, -73.97910723509646 40.750186624451466, -73.97910002157518 40.75018641422541, -73.97909574117963 40.75018591817039, -73.97909400297192 40.75018571704212, -73.97909256795948 40.75018531335495, -73.97908756791045 40.750183912160495, -73.97908511228624 40.75018322372808, -73.97907713490488 40.750179595941766, -73.97907297954174 40.75017687025582, -73.97907240066654 40.75017638117591, -73.97906931215078 40.75017376464487, -73.97906537402079 40.75016931813122, -73.97906394434105 40.75016701887959, -73.97906235843733 40.750164471059946, -73.97906041219994 40.750159317110466, -73.9790595044765 40.75015400035818, -73.97905964096327 40.75014923310437, -73.97906045811088 40.750145105333566, -73.9790622961355 40.750140415832576, -73.97906324514119 40.75013871134724, -73.97908632392841 40.75010683402627, -73.97909187978001 40.75009921675432, -73.97914927438212 40.75002051122851, -73.97918091065507 40.74997712877123, -73.97920415984237 40.74994524695417, -73.97920940648443 40.74993805105734, -73.97922331973314 40.749918974547185, -73.97924737322927 40.74988598974639, -73.97932347466235 40.74978193465384, -73.97941861237226 40.74965185288505, -73.97941867989454 40.74965176014504, -73.97941990572487 40.74965082743981, -73.97942363532843 40.74964798881059, -73.97942999378385 40.7496446535714, -73.97943131782067 40.74964395861719, -73.97943509787252 40.749642632846744, -73.97943768303944 40.749641726498695, -73.9794444423083 40.7496403184132)), ((-73.98080052217415 40.74778553406905, -73.98080660005205 40.74778529284585, -73.9808135136449 40.74778586852069, -73.98081390909786 40.74778595503517, -73.98081927257824 40.74778712388511, -73.98082020082752 40.74778732575309, -73.98082168548392 40.74778788791621, -73.98082917861751 40.74779072845989, -73.98082941894137 40.74779087258089, -73.98083585086091 40.74779472781808, -73.98084136719308 40.74779964459955, -73.9808416358711 40.74780000934927, -73.9808447700517 40.747804271966714, -73.98084588855683 40.747805792207316, -73.98084835810161 40.74781136044826, -73.98084872352447 40.747812938195985, -73.98084929826733 40.74781541918634, -73.9808494124288 40.747817829860615, -73.98084952188836 40.74782012076674, -73.98084909326035 40.74782422610357, -73.98084792224655 40.74782824847035, -73.98084556689135 40.74783322697787, -73.98084304733351 40.74783687360922, -73.98083993937266 40.74784024818975, -73.98082799116234 40.74785599425517, -73.9807651148318 40.74794217032576, -73.98073753523946 40.7479799707702, -73.98071650375135 40.748008794257075, -73.98066209187168 40.74808336866358, -73.98055088917519 40.74823577862893, -73.98054302496296 40.748246557260664, -73.98053503992395 40.74825750246506, -73.98049233692046 40.748316030845814, -73.98049038852257 40.7483180611573, -73.98048892100591 40.74831958996825, -73.98048782658594 40.74832073252526, -73.98048102763418 40.74832474943195, -73.98047999855866 40.74832513917675, -73.98047332318636 40.748327666666704, -73.9804658274905 40.74832937185497, -73.98045883769397 40.74833005595454, -73.98045257278035 40.748329959437875, -73.9804471451577 40.74832935247593, -73.98044210841455 40.74832828722244, -73.98044185977436 40.74832823405039, -73.98044160522198 40.74832815296162, -73.98043608084424 40.74832639243427, -73.98043110128201 40.74832415292995, -73.98043063363424 40.74832394213202, -73.98042565311691 40.74832092458994, -73.9804217726125 40.74831788382147, -73.98041842978228 40.74831449014581, -73.98041542578515 40.748310458969335, -73.98041529085386 40.7483102779446, -73.98041339511529 40.748306368524815, -73.98041253954798 40.748304604287675, -73.98041121254846 40.74829939283256, -73.98041107062473 40.74829883089256, -73.98041102923007 40.74829866789387, -73.98041084475335 40.74829382854211, -73.98041171190154 40.74828842205031, -73.98041223095929 40.74828694891044, -73.98041304510069 40.74828462844437, -73.98041335558791 40.748283745100565, -73.98043151239038 40.748258858195015, -73.98045621263165 40.748225005156016, -73.980573310673 40.74806564526858, -73.98061271083132 40.7480120231584, -73.98075475200845 40.747818713688694, -73.98076830897138 40.74780026367908, -73.98077200796477 40.747796258844765, -73.9807775433951 40.74779242181096, -73.98077771630325 40.747792302072476, -73.98078419525159 40.747789094649704, -73.98079061702688 40.747787056974666, -73.98079430677748 40.74778635519507, -73.98079811257314 40.747785630021575, -73.98080052217415 40.74778553406905)), ((-73.98034547743804 40.748403813338626, -73.9803531740713 40.74840335269202, -73.9803581802664 40.7484036254987, -73.98035934301116 40.748403687831924, -73.9803653755766 40.748404720840526, -73.98036610372019 40.748404936185636, -73.98037257058213 40.748406850863454, -73.98037793612785 40.748409191292744, -73.98038221345448 40.74841171163769, -73.98038754291608 40.748415962934516, -73.98039225869789 40.74842133075427, -73.98039482214917 40.748425609495584, -73.98039590121581 40.748428367029206, -73.98039636620827 40.74842955577649, -73.98039736538783 40.748434196254955, -73.98039748154311 40.7484378271157, -73.98039751556658 40.74843889692284, -73.98039720591932 40.748440946422264, -73.98039680966568 40.74844356952935, -73.98039499652532 40.748448674190314, -73.98039320428677 40.74845115297881, -73.98038263801078 40.74846577540016, -73.98035040847273 40.74851037197777, -73.98031315533791 40.74856130905211, -73.98023951481126 40.74866200094737, -73.98014994994917 40.74878446158809, -73.98010438439407 40.748846766050086, -73.98008644414745 40.74887114865609, -73.9800401323072 40.74893409502375, -73.98003926994191 40.748935265532296, -73.98003540304107 40.74893813567565, -73.98003468062204 40.748938557887826, -73.98003112181857 40.74894064284307, -73.98003013415965 40.748941080317834, -73.98002645471412 40.748942714998954, -73.9800215047408 40.74894436026568, -73.98001907601794 40.74894490104857, -73.98001701083378 40.74894536084892, -73.9800163180972 40.74894551471532, -73.98000944780055 40.74894627715233, -73.98000797954053 40.74894625438483, -73.98000193007115 40.74894616508509, -73.97999777054967 40.74894558803889, -73.97999492294079 40.7489451940232, -73.97998844416952 40.74894336937287, -73.9799869795787 40.74894295758709, -73.97998168621704 40.748940670282195, -73.97997760065073 40.74893829223587, -73.97997747989533 40.74893822107492, -73.97997269018892 40.7489345434757, -73.97996895793088 40.74893066884933, -73.97996866792032 40.748930368029825, -73.97996585102145 40.74892629274966, -73.9799650783015 40.74892466990322, -73.97996378964491 40.74892196726016, -73.97996354953335 40.74892110993658, -73.97996252284315 40.74891746540967, -73.97996207291432 40.748913449974566, -73.97996260629348 40.74890771564431, -73.97996485569523 40.74890104058361, -73.97997839439407 40.74888178471361, -73.98010228860632 40.74871183834938, -73.98016012622192 40.74863250022583, -73.98023408084016 40.74853105561162, -73.98029694185153 40.74844482850647, -73.980313132382 40.74842262119013, -73.98032007947575 40.748414216152035, -73.98032576421727 40.74841024318935, -73.98033027622117 40.74840796748028, -73.98033655486476 40.748405699276695, -73.98034547743804 40.748403813338626)), ((-73.97989934666306 40.7490210693382, -73.97990450932339 40.74902094056613, -73.97991025439016 40.74902135760217, -73.97991038582087 40.749021367530645, -73.9799105350083 40.74902139277082, -73.97991542503529 40.74902223649734, -73.9799209424038 40.749023826852564, -73.97992675909407 40.74902625563088, -73.97992903807268 40.749027550055324, -73.97993089795547 40.749028608474084, -73.97993381253242 40.74903075578846, -73.97993460687867 40.749031342156314, -73.97993749169174 40.74903402706758, -73.97993787522847 40.74903438463531, -73.97993835224037 40.74903496734584, -73.97994060709928 40.74903771788421, -73.97994306048366 40.74904180210669, -73.97994459274797 40.74904555388197, -73.97994548201689 40.74904942441206, -73.97994570255496 40.74905236910549, -73.97994577567425 40.74905334616734, -73.97994533160085 40.74905741367612, -73.97994528885167 40.74905781889643, -73.97994423631387 40.749061364906254, -73.97994382738868 40.74906274260938, -73.9799431817084 40.74906391225441, -73.97994097809969 40.74906791281933, -73.9799063645955 40.74911579750205, -73.97978981196057 40.7492770388415, -73.97969792083228 40.74940415793043, -73.97964768216092 40.749473654625035, -73.97962346071019 40.74950716267563, -73.97959559185576 40.74954571651079, -73.97959437647266 40.74954734801244, -73.97959161402319 40.74955105490642, -73.9795890591841 40.74955347681502, -73.97958654816993 40.74955585460653, -73.9795814922488 40.749559153164526, -73.97958086932765 40.749559434012, -73.97957513513457 40.74956202735322, -73.97956681258707 40.74956435188428, -73.97955946736258 40.749565231275945, -73.97955878056055 40.74956531490113, -73.97955138592249 40.749565156, -73.97954484644755 40.74956419940195, -73.97953859258031 40.74956246121503, -73.97953706055952 40.74956180717546, -73.97953214246584 40.74955970542103, -73.9795274720536 40.749556937335946, -73.97952633322629 40.74955604563253, -73.97952386024316 40.74955410820441, -73.97952366255876 40.74955391365995, -73.9795206996656 40.7495509810855, -73.97951808504187 40.74954757760824, -73.97951693597803 40.74954531983526, -73.97951535616198 40.749542220012486, -73.97951472562879 40.7495403000214, -73.97951396260176 40.74953797387858, -73.97951348662902 40.74953401246779, -73.97951342521715 40.74953348836238, -73.97951381633985 40.74952843209042, -73.97951515347957 40.74952362272542, -73.97951519496812 40.7495234759503, -73.97951540942411 40.74952303834254, -73.97951721985521 40.74951935739571, -73.97953617578794 40.7494932397859, -73.97959208871333 40.749416204208295, -73.97987241744366 40.749031229548635, -73.97987269576407 40.74903103148592, -73.97987707308597 40.74902793991276, -73.97988028363037 40.749026341174726, -73.97988324192534 40.74902487026447, -73.97988927785273 40.74902277313922, -73.97988941521587 40.7490227434465, -73.97989424779178 40.74902170060359, -73.97989934666306 40.7490210693382)))",M060B,6234,M060B,M-06,M-05,M-06,M-06,E 34 St To E 39 St and Park Av,106,"2,4",17,10016,M,0.65,False,Park Avenue Malls 34th-39th,No,100005200,PARK,20100106000000.00000,18510819000000.00000,,DPR,False,Park Avenue Malls,Y,Park Avenue Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M060B/,No,"75, 73",28,12,{FF7312B0-C505-40EA-9A80-C586942B091B} +"MULTIPOLYGON (((-73.95093027922123 40.708828162937486, -73.95095865657484 40.70882648297003, -73.95096496535541 40.70882779860289, -73.95096544099857 40.708827897861745, -73.95096566578121 40.708827977202496, -73.95097259500977 40.70883041243464, -73.95097906559653 40.70883376779351, -73.95098317916488 40.70883676734701, -73.95098336367249 40.70883690160173, -73.95098765512813 40.708840992650366, -73.95098777335487 40.70884114308607, -73.95099072193757 40.70884488596546, -73.9509933749575 40.70884985701623, -73.95099511853044 40.70885566605571, -73.95099552389648 40.70886121787978, -73.95099513865418 40.70886370582818, -73.9509946249924 40.708867030296844, -73.95098105093112 40.70889058909415, -73.95097563970612 40.708899770202834, -73.9509642508924 40.708919092123104, -73.9509562295112 40.70893258916953, -73.95095276124262 40.70893713527331, -73.95094849685752 40.70894127940974, -73.95094413015308 40.708944560812746, -73.9509438744353 40.7089447083876, -73.95093937332406 40.708947312548666, -73.95093416828692 40.70894966786847, -73.950929430045 40.70895128226631, -73.95091319533148 40.70895286204533, -73.95090744882408 40.70895290822234, -73.9509007659847 40.708951730205, -73.95089449414299 40.70895005528042, -73.95088855880553 40.70894780327139, -73.95088539564334 40.70894619540987, -73.95088297891108 40.7089449678825, -73.95087784712862 40.70894105297162, -73.95087462365524 40.708937784541426, -73.95087163982191 40.708933704852896, -73.95086928159762 40.70892534710263, -73.95086826818483 40.70891952666628, -73.95086532928818 40.70890264803121, -73.95086517963217 40.708901789780164, -73.95086436183317 40.708897091464216, -73.95086251766176 40.70888649616288, -73.95085937410367 40.70886793168328, -73.95085942435084 40.70886077083973, -73.95086050587632 40.70885606162787, -73.95086253523354 40.70885142125947, -73.9508633016968 40.708850308554815, -73.95086647653548 40.70884570109366, -73.9508706948928 40.70884138764449, -73.95087250642061 40.708840077273294, -73.95087582873931 40.70883767342571, -73.95088223686341 40.70883425151613, -73.95088697990667 40.708832535364486, -73.95088794698215 40.708832183677224, -73.95089321509057 40.70883094592078, -73.950919758571 40.70882878520811, -73.95093027922123 40.708828162937486)))",B202,5783,B202,B-01,B-01,B-01,B-01,"Stagg St., Hewes St., Union Ave.",301,34,90,11211,B,0.02,False,Lithuania Square,Yes,100004088,PARK,20100106000000.00000,,,DPR,False,Lithuania Square,Y,Lithuania Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B202/,No,53,18,7,{F4E5500C-9BCF-45ED-B14D-094952BD6E80} +"MULTIPOLYGON (((-74.03520974164263 40.611534484717694, -74.03522170658316 40.611542616361426, -74.03519118906262 40.61150403116641, -74.03516880558172 40.61146233307411, -74.03515508838953 40.61141850979829, -74.03515036297101 40.61137360224514, -74.03515473857917 40.61132867299752, -74.0351681141364 40.61128478920308, -74.0351901723113 40.61124299015747, -74.03565041005194 40.61079032914623, -74.03583225319771 40.61100174653798, -74.03602129170748 40.611209466544146, -74.03621739437708 40.611413346888384, -74.03642042881702 40.61161324889653, -74.03663025554295 40.61180903569729, -74.03684673152078 40.61200057222132, -74.03706970780478 40.61218772790387, -74.03729903189962 40.61237037488275, -74.03753454776052 40.612548387998736, -74.03773254574013 40.612718156972825, -74.0379252669958 40.61289141686399, -74.03811260511198 40.613068073179164, -74.03829445603101 40.61324802872287, -74.03847072159812 40.61343118359597, -74.03864130365503 40.613617437899116, -74.03879571427693 40.61378372024452, -74.03894306011864 40.613953685203384, -74.0390831886102 40.614127159053986, -74.03921595662678 40.61430396266766, -74.0393412281275 40.61448391511151, -74.0394588753362 40.61466683184694, -74.03956877637961 40.61485252653124, -74.03967081882975 40.61504080651377, -74.03976489734514 40.61523148004077, -74.03985091603182 40.61542435175185, -74.03992878726265 40.61561922358067, -74.03999843049618 40.615815895656176, -74.04007561845454 40.61607976102577, -74.0401454207205 40.61634481850423, -74.04020780286731 40.61661094834772, -74.04026273873744 40.616878029007005, -74.04031020335496 40.617145940732186, -74.04035017410425 40.61741456106941, -74.04042698377734 40.61780751144182, -74.04051276449198 40.618199381563265, -74.04060749269532 40.61859005435441, -74.0407111389218 40.61897941003456, -74.0411315296541 40.62137191373396, -74.04131325847214 40.62352742226612, -74.04124721182514 40.625037131090615, -74.04100828712642 40.62778572320565, -74.04075609225043 40.629188425517086, -74.04073098171327 40.629374732123736, -74.04069769254349 40.629560292384056, -74.04065626237089 40.62974489915815, -74.0406067359181 40.62992834440145, -74.04054916973122 40.630110422765135, -74.04048362745088 40.630290929796814, -74.04041018454078 40.63046966193903, -74.04032892237895 40.630646418332226, -74.04023993180493 40.630821001714395, -74.03893986321147 40.63352185034333, -74.03826907429959 40.63494835385197, -74.03681434749578 40.6378169889087, -74.03636670413276 40.63885540787895, -74.036139726002 40.63877831759141, -74.03617969327216 40.6386660328509, -74.03621234466361 40.638552384312305, -74.03623760234068 40.63843764666451, -74.0362554038403 40.638322100893916, -74.03626570679647 40.63820602707866, -74.03626848539469 40.63808970709132, -74.03626373273559 40.63797342459796, -74.03625881152948 40.63794504539919, -74.03624952765544 40.63789150708001, -74.03623050665392 40.6378095469516, -74.03621530931827 40.63774406240812, -74.03620122876886 40.637675773294944, -74.03619302598642 40.63761454689996, -74.03618781189351 40.637553876084084, -74.03618524098641 40.63748445139261, -74.03619238732794 40.63742215935392, -74.03620434222698 40.637392112480356, -74.0362284405422 40.63733746861002, -74.03629609440667 40.63721717217344, -74.03641835607493 40.63703348259518, -74.036467204403 40.63696497994997, -74.03654671798358 40.63686726101128, -74.03662052725817 40.636779472054414, -74.03674635634772 40.63664154985692, -74.03688029721891 40.63650078468129, -74.03692973043513 40.63645048653895, -74.037036553264 40.63635412006629, -74.0371143398671 40.63628693067856, -74.03728573144201 40.636140178887636, -74.03742312239372 40.63600881607246, -74.03745515327593 40.63597511632691, -74.03750216744828 40.63592327703472, -74.03752807745762 40.63589171349465, -74.03758371978685 40.63581307820995, -74.03760179002158 40.635787541687364, -74.03764335765952 40.63571184036295, -74.03765570970211 40.635687623162795, -74.03767332665767 40.63564029331583, -74.03768428386259 40.63560357916619, -74.03769778715515 40.63555833806629, -74.03770376068789 40.635538321171396, -74.03771173804321 40.63547684372177, -74.03771265352044 40.63541507141625, -74.03770650149336 40.635353472526766, -74.03769332834727 40.635292516207414, -74.03767323483807 40.635232665289614, -74.03764637254565 40.63517437628331, -74.03761294741504 40.63511809217182, -74.03756996540619 40.63505142548657, -74.03752099060966 40.634987202047725, -74.03746625962593 40.634925735151334, -74.03740604095916 40.63486732277365, -74.03736536160076 40.63482954661595, -74.03733693673665 40.63480026556461, -74.03726217269639 40.63472428420231, -74.03718875520532 40.63465045009343, -74.03711412152624 40.634576591115184, -74.03706651283814 40.63452947690254, -74.03702297583179 40.63448134287187, -74.036986248117 40.634430017896044, -74.03695673070908 40.634376061075024, -74.03693474189 40.63432005764956, -74.03692052075348 40.63426261539757, -74.03691422247356 40.63420435743135, -74.03691591475632 40.63414591589496, -74.03692530813912 40.63406835386298, -74.03694272331515 40.63399159971978, -74.0369680505945 40.63391613617529, -74.03700113181912 40.633842434246795, -74.03706214154359 40.63372697884045, -74.03712844399928 40.633613230876776, -74.03719995886337 40.63350132995314, -74.0373562980364 40.63326779623564, -74.03751641353797 40.633035753227745, -74.03782609625011 40.6326152173092, -74.03797998168334 40.63242056254983, -74.03814038442802 40.63222898519464, -74.03823332840655 40.63211713323288, -74.03833037009566 40.632007319504986, -74.03843143388622 40.63189963227688, -74.03851921112128 40.6318013805503, -74.03861238919733 40.63170605993379, -74.03871080035815 40.63161384156941, -74.03881426739333 40.63152489390081, -74.03913370334996 40.63124013052058, -74.03944945090498 40.63095299103783, -74.03976148172124 40.63066350340867, -74.03984827821618 40.6305777078792, -74.03993056014855 40.63048936808244, -74.0400081975914 40.630398621852876, -74.04008107125955 40.63030560972246, -74.04013365738241 40.63022858164651, -74.04017961457153 40.630149130763364, -74.04021875038191 40.630067586738384, -74.04025090192708 40.62998428913138, -74.04027593469533 40.62989958559586, -74.04029374609327 40.629813828275616, -74.04030426189956 40.62972737470628, -74.04030159812186 40.629612530570576, -74.04029039364116 40.62949798659809, -74.04027068654639 40.6293841110856, -74.04024253738048 40.629271268718014, -74.04020603977962 40.629159824166884, -74.04014952864898 40.62901574455573, -74.04010087086577 40.628870011523176, -74.04006014926702 40.628722871792725, -74.040027433689 40.628574577493815, -74.04002135773923 40.62848861689529, -74.04002262044595 40.62840253667373, -74.04003121845307 40.628316700639935, -74.04004711530935 40.62823147081404, -74.0400702426514 40.628147208325196, -74.0401005025649 40.62806426800802, -74.04013776876761 40.62798299930266, -74.04018188306402 40.62790374625621, -74.04026246047468 40.62775666948597, -74.04034973098832 40.62761182629882, -74.0404435859394 40.62746939321963, -74.04054391311888 40.62732954497291, -74.04061380061539 40.627211164080265, -74.04067596484371 40.62709030854606, -74.04073025591296 40.62696727020433, -74.04077654285095 40.6268423480852, -74.04081471478175 40.62671584211077, -74.04084467738407 40.626588060300385, -74.04086635997713 40.6264593106634, -74.04087970961288 40.62632990480315, -74.04089105893195 40.62618814811921, -74.04089542300164 40.626046166985894, -74.04089279607942 40.625904161321515, -74.04088318187765 40.62576233013914, -74.04086659474582 40.62562087334746, -74.04084388208594 40.62547196512328, -74.04082792728079 40.625322548400376, -74.0408187504866 40.625172801477326, -74.04081636122139 40.62502290175472, -74.04084201210695 40.62481492293415, -74.04087580876732 40.62460762200049, -74.04091772169336 40.62440118266326, -74.04095616975576 40.62419965057441, -74.04098690187017 40.62399735127468, -74.04100989457349 40.62379445587742, -74.04101405257782 40.62370246175324, -74.04100947070272 40.62361047885062, -74.04099617409992 40.623518989838445, -74.0409742304638 40.623428471965305, -74.04094375594246 40.623339400659646, -74.04090491040336 40.623252240526256, -74.04086675868541 40.62317854471116, -74.04082376949741 40.623106410301844, -74.04077605287817 40.62303602366162, -74.04068174414633 40.62289762459427, -74.04059482184503 40.622756446535696, -74.04051542671567 40.622612716383905, -74.04046145910472 40.62248820964121, -74.04041484052618 40.62236199200125, -74.04037566327669 40.622234313785086, -74.04034400665324 40.622105429819776, -74.04033410241995 40.62199908004, -74.04033349316845 40.62189246404556, -74.0403421826843 40.62178605280739, -74.04036013338894 40.62168031640821, -74.04038751920505 40.62155806925126, -74.04042209223701 40.621436883974354, -74.040463781687 40.621317006438126, -74.0405125025746 40.62119867800425, -74.04056060664824 40.621080790120274, -74.04060056795625 40.62096114907592, -74.04063227682953 40.62084008180718, -74.04065564723953 40.62071791794189, -74.0406706156163 40.620594990700084, -74.04067714084707 40.62047163599376, -74.04067520545618 40.62034818972474, -74.04066416606513 40.620233489828586, -74.0406440261023 40.620119510862786, -74.0406148603212 40.62000667063778, -74.04057677656195 40.619895384248544, -74.04052991456658 40.61978606047345, -74.04047444479568 40.619679100873995, -74.04041057315483 40.619574898892914, -74.04034127053198 40.61935977355389, -74.04026365314282 40.61914630353629, -74.0401777897163 40.618934674306715, -74.04008375488748 40.61872507222861, -74.03876655242397 40.616575261402545, -74.03866436791964 40.61648617216843, -74.03856763302954 40.61639361761122, -74.03847654993395 40.61629779128883, -74.0383913089951 40.61619889216619, -74.03831208875934 40.61609712821695, -74.03823905477297 40.61599271192139, -74.03803960768838 40.61556382665657, -74.03793914148976 40.615347785257725, -74.03776563286952 40.61497467189919, -74.03764240278488 40.6147039787805, -74.03758030418997 40.6145423582748, -74.0375130555441 40.614381939808375, -74.03744069829261 40.61422281701293, -74.0373632726988 40.61406508532109, -74.0372904559907 40.61390721970293, -74.03721116853636 40.61375117518381, -74.03712548845148 40.61359710571426, -74.0370334997567 40.61344516344116, -74.03693529473998 40.61329549780625, -74.03683096923044 40.61314825644854, -74.03671630243878 40.612999368543, -74.03659418998598 40.61285395980391, -74.03646481399687 40.612712246275066, -74.03632836604037 40.61257443769303, -74.03618505067614 40.61244074018769, -74.03581685874185 40.612133676003126, -74.03545336555342 40.611823379011625, -74.0353648023314 40.61173076156441, -74.03528350095866 40.61163435332616, -74.03520974164263 40.611534484717694)), ((-74.04104680646164 40.62931741519439, -74.04111767613232 40.628976420700354, -74.04118238903665 40.62863471694482, -74.04124093230529 40.62829236787971, -74.04129329543413 40.62794943835557, -74.04133946791922 40.62760599232156, -74.04138636414015 40.62716102678864, -74.04153400898029 40.62540972787631, -74.04157106060306 40.62392840032077, -74.04154955901832 40.62276673518382, -74.0414416498793 40.621395386087784, -74.04122420785593 40.61992661989097, -74.04078809542217 40.61796620602234, -74.04038143297431 40.61603400209478, -74.04035799852065 40.615940853236346, -74.04032882033721 40.615848650133444, -74.04029396474803 40.61575759987829, -74.04025350752698 40.615667905056455, -74.04018867715797 40.615473730395465, -74.04011489561208 40.61528142019512, -74.04003225527768 40.61509121394479, -74.0399408591729 40.614903348426694, -74.03984082212727 40.614718057715834, -74.03973226723485 40.61453557138012, -74.0396153294016 40.61435611898194, -74.03949015652238 40.61417992197333, -74.03935690239399 40.61400720090259, -74.03921534667224 40.61382085582144, -74.03906640817726 40.61363788462323, -74.03891022412002 40.61345845472987, -74.03874693997895 40.61328273536103, -74.03857670713063 40.613110887629134, -74.03839968521729 40.61294307174296, -74.03821603623611 40.61277944340765, -74.03802593281148 40.61262015472263, -74.03782954992263 40.61246535328402, -74.0376195310643 40.61231386988959, -74.03741501137249 40.61215807892739, -74.03721614334576 40.611998094743356, -74.03702307475417 40.611834037088414, -74.03683594981878 40.6116660275157, -74.03665490684948 40.611494191182416, -74.03648008060837 40.61131865684883, -74.03631160230822 40.611139554176766, -74.03614959606911 40.61095701643209, -74.0359941812815 40.610771179583274, -74.03584547615046 40.610582181399735, -74.03592018750963 40.61050589471962, -74.03597724147065 40.61044250358207, -74.03602636930256 40.61037536873115, -74.0360671518525 40.61030506213976, -74.03609924088718 40.610232186374766, -74.03612236026794 40.61015736379059, -74.03613631540075 40.610081232923505, -74.03614098496206 40.6100044457924, -74.0361363291636 40.60992765799067, -74.03612238856779 40.609851525984496, -74.03609928290092 40.609776699909474, -74.03606720750555 40.60970382087009, -74.0360378862446 40.60963479969235, -74.03599989925321 40.609568278367206, -74.03618853908335 40.60950481611248, -74.03628721762381 40.60976943295744, -74.03637885645814 40.61003551618707, -74.03646341645543 40.61030295776788, -74.03654086320788 40.6105716469621, -74.03663096277177 40.61073770774805, -74.0367278287983 40.61090154201105, -74.03683136434474 40.611062989472394, -74.0369414689214 40.61122189255521, -74.03705803612809 40.61137809548484, -74.03724423940469 40.61156989677259, -74.03743580081517 40.61175860902341, -74.03763263052387 40.611944145790005, -74.03783463869252 40.61212642242604, -74.03804173193443 40.61230535428635, -74.03825381567857 40.61248085852717, -74.03878490660063 40.6129600901323, -74.03906372190099 40.61324763208804, -74.03948503286561 40.61381262458947, -74.04014169423156 40.61483873812637, -74.04036614880961 40.6152293928899, -74.04047229360204 40.61561280730383, -74.04053933078069 40.61593275318096, -74.04059718528153 40.61623119781304, -74.0406353115605 40.61647782980929, -74.04070133666104 40.61682912395306, -74.04076226385253 40.6171853403, -74.04110595896188 40.61872625924896, -74.04137005087829 40.619979616264445, -74.04143339639916 40.62008233203942, -74.04148882803587 40.62018767205018, -74.04153616235655 40.62029528066874, -74.04157523719452 40.620404796854885, -74.04160592346702 40.620515854151904, -74.0416281169025 40.620628079788624, -74.04164174395103 40.62074109557805, -74.04164675824286 40.62085452332126, -74.04164314413292 40.62096798210497, -74.04163091079418 40.62108109100482, -74.04161010285523 40.62119346998231, -74.0415807874028 40.62130474259097, -74.04163602412804 40.622041017793215, -74.04167618236957 40.622112126340014, -74.04170901464818 40.62218538527147, -74.04173432448403 40.622260357012266, -74.04175196029836 40.62233659406369, -74.04176181659734 40.62241364170486, -74.04176383397382 40.622491038892896, -74.04175800265682 40.622568323664794, -74.04174435542237 40.62264503494112, -74.04172297350476 40.62272071432476, -74.04169398659901 40.622794908802625, -74.04170225565652 40.62330320717044, -74.04175625420469 40.62345163112722, -74.04180178833775 40.623601693479166, -74.04183877273206 40.62375311420549, -74.04186713860668 40.623905611476566, -74.04188683254044 40.624058899853274, -74.04189781647527 40.624212693889035, -74.04190007244149 40.62436670452583, -74.04189359429084 40.62452064720205, -74.04187839359963 40.62467423194446, -74.04185450085797 40.62482717327371, -74.04182195955771 40.624979185703566, -74.04178082973931 40.62512998464065, -74.04173118799409 40.625279289085704, -74.04167312864611 40.625426820732876, -74.04161076952357 40.62638798452154, -74.04158667903133 40.62676233217, -74.04155413845497 40.627136309137185, -74.04151315822092 40.627509803747635, -74.04146374875758 40.62788270612513, -74.04140592640354 40.62825490548897, -74.04133970749912 40.628626291957225, -74.04126511193131 40.62899675474439, -74.0411821595904 40.6293661857647, -74.04109087745876 40.62973447422653, -74.04111156702008 40.62981944796683, -74.04112319268707 40.62990541641691, -74.04112567606897 40.62999181858394, -74.04111900260047 40.63007809254941, -74.04110321681463 40.630163675471, -74.04107841880095 40.630248008086596, -74.04104477248538 40.63033054281599, -74.04100249617264 40.630410739261855, -74.04095186610108 40.63048807681601, -74.04089321053058 40.63056205015927, -74.04082691447621 40.630632177364774, -74.04075340788974 40.630698000803065, -74.04069563112076 40.630855005234174, -74.03882265505854 40.63488998483604, -74.03683043051713 40.638989191733636, -74.03664609368249 40.63893428296506, -74.03680250945506 40.638500106438386, -74.03697459059951 40.638129221206974, -74.0371524618889 40.63775992504854, -74.03733610080953 40.63739227107427, -74.0375254801202 40.63702631059519, -74.03831375819568 40.6355260795949, -74.0385634025498 40.635030776386195, -74.03880870077447 40.63453421514873, -74.03904963878097 40.634036417527525, -74.03930399206345 40.633517168922495, -74.03955259577128 40.63299630707113, -74.03979543231274 40.632473868937936, -74.04003249341227 40.63195950722963, -74.04026519566854 40.631443992063446, -74.04049352972768 40.63092734508138, -74.040606391238 40.63066340713089, -74.04071106543401 40.630397518734185, -74.04080749575857 40.6301298258177, -74.04089562802395 40.62986047790766, -74.04097541277312 40.62958962452686, -74.04104680646164 40.62931741519439), (-74.04101532950781 40.6301385220253, -74.04101535280603 40.630139889906275, -74.04101581522971 40.6301422527047, -74.04101680121165 40.630144520761775, -74.04101828116148 40.63014662744967, -74.0410202124893 40.630148509747094, -74.04102253842632 40.63015011274263, -74.04102518802515 40.63015138963452, -74.0410280867973 40.630152301727016, -74.04103114726087 40.630152823836745, -74.04103427957483 40.63015293888592, -74.0410373915438 40.63015264510638, -74.04104039097781 40.63015194973516, -74.04104319160575 40.6301508744156, -74.04104570834384 40.6301494497957, -74.04104786911759 40.63014771822565, -74.04104961013105 40.63014573015733, -74.04105087823241 40.630143545944584, -74.04105163800055 40.63014122773588, -74.04105186702056 40.630138844879276, -74.04105155706195 40.630136467618264, -74.04105071880515 40.63013416528895, -74.04104937593186 40.63013200632243, -74.0410475686682 40.63013005374067, -74.04104534905663 40.6301283651583, -74.04104278450095 40.630126990980415, -74.04103994830808 40.630125970803604, -74.04103692559922 40.63012533521514, -74.04103380503435 40.6301251030943, -74.04103067762895 40.63012527981169, -74.04102763675759 40.630125862632504, -74.04102476987441 40.63012683171402, -74.04102216442968 40.630128160910076, -74.04101989368051 40.63012980877055, -74.0410180273354 40.63013172934414, -74.04101661972938 40.63013386407775, -74.0410157110115 40.630136150821144, -74.04101532950781 40.6301385220253)), ((-74.0223726476683 40.63726688384727, -74.02272166307787 40.63692388162703, -74.02490683346146 40.637804246343656, -74.02446064937125 40.63822703932289, -74.02404975888909 40.638009421984606, -74.02387483217028 40.63792544183779, -74.02369610709009 40.63784624035957, -74.02351380825937 40.6377719147425, -74.02250513375198 40.63735611111568, -74.0224451941364 40.63732524043889, -74.02242237468849 40.637314440466085, -74.02240230151943 40.63730083753916, -74.02238556345164 40.63728482957425, -74.0223726476683 40.63726688384727)), ((-74.02427296371602 40.63872690299926, -74.02457927551285 40.63842989819495, -74.02471213614275 40.638539525882535, -74.02480847377477 40.63861634279744, -74.02490380165935 40.638682504012024, -74.0249812951898 40.63873358083238, -74.0250871004598 40.638786668588914, -74.02519540673048 40.638841404549595, -74.025347023972 40.63890803752709, -74.02547931720322 40.63896859338512, -74.02561863136857 40.639053755999996, -74.02571030971718 40.639130828940644, -74.02580948613222 40.63921284487278, -74.0258818404787 40.639283840808645, -74.02596202997165 40.63936333132298, -74.0260718812334 40.639459040603995, -74.02612505145441 40.63950074416094, -74.02620105735753 40.639560827480196, -74.02627355230763 40.63960860776542, -74.02634854825268 40.63965803538072, -74.02650144888877 40.63974580801175, -74.02629211808167 40.63994807021301, -74.02427296371602 40.63872690299926)), ((-74.02216753320684 40.637468463285025, -74.02223328417072 40.637403845570454, -74.02278548147785 40.63761760258669, -74.02278488694907 40.63761781612744, -74.02288702122726 40.63765891893532, -74.02307598439758 40.63773496510101, -74.02336512187652 40.637849128514915, -74.02350853045455 40.63790707648503, -74.023619956081 40.63795209940062, -74.02400799466204 40.638121107644245, -74.02403455869326 40.63813267736295, -74.02404531454002 40.63813851227679, -74.02404534528098 40.63813852847974, -74.024368879934 40.638313996686804, -74.02436883739269 40.63831403811964, -74.02407876909925 40.63858889431157, -74.02216753320684 40.637468463285025)), ((-74.02984776004384 40.64168834578302, -74.02972509326996 40.64154253859875, -74.03000447263831 40.64160437218187, -74.03064247991588 40.64171881652516, -74.03070995659662 40.6417291265708, -74.03077528457524 40.641745619210724, -74.03083748963375 40.6417680461668, -74.03089564716383 40.6417960763017, -74.03094889162152 40.64182929201389, -74.03099643189958 40.64186719823825, -74.03102562717588 40.64190281487285, -74.03104670824769 40.64194161252077, -74.03105909651886 40.64198252783048, -74.0310624521645 40.64202443975121, -74.03106390334435 40.64205627448494, -74.03105928980932 40.64208793345461, -74.03104870699863 40.6421187511506, -74.03103238039998 40.64214807643571, -74.0310106513736 40.64217529236032, -74.03097946961232 40.64221034083476, -74.03094101998691 40.64224091477957, -74.03089638853011 40.6422661493981, -74.03084683868063 40.642285331133785, -74.03080372919462 40.642298958526865, -74.03075863865043 40.64230814327617, -74.03071235314097 40.6423127239766, -74.03066567889523 40.64231262116611, -74.03061942927324 40.642307836428735, -74.03054735310951 40.64228938956801, -74.03047830547595 40.642265134416625, -74.03041309158877 40.642235352629214, -74.03035247058429 40.64220039161205, -74.03028055533254 40.642150560576006, -74.0302127834692 40.642097465828165, -74.03014941043791 40.64204130812446, -74.0300906739506 40.64198229723064, -74.02996615020965 40.64183679156705, -74.02984776004384 40.64168834578302)), ((-74.02465860787484 40.6383529751105, -74.02477461992876 40.63824048709161, -74.0268021865833 40.63945522110146, -74.02657606929962 40.639673706077836, -74.02622372766407 40.639429258343796, -74.02615421079182 40.63936346247386, -74.02602767588402 40.63924010752367, -74.02594214880995 40.639153769813966, -74.02583912423682 40.63905589942849, -74.02573744716823 40.63897223613113, -74.02562813015236 40.63890684506949, -74.02550549963891 40.63884932829098, -74.0253875315656 40.63879155370434, -74.02523591454833 40.63872492077935, -74.02512794549597 40.638673737328766, -74.02503680114191 40.63862698246757, -74.0249564721886 40.638570707604956, -74.02478230425017 40.638439262337144, -74.02465860787484 40.6383529751105)), ((-74.03604923263201 40.63890298228928, -74.03631928792802 40.638979796205454, -74.03614533692044 40.639364161771915, -74.03601021223214 40.63959859116118, -74.03590207710387 40.639751093584, -74.03578599558611 40.63990016739974, -74.03566215311362 40.640045572989024, -74.03553075167956 40.64018707522919, -74.03539200038063 40.64032444709943, -74.03524612487293 40.64045746697667, -74.03513726732804 40.6405416258327, -74.03502238032317 40.64062099656323, -74.03490182429094 40.64069532869681, -74.03477597977572 40.64076438886622, -74.03464524506771 40.64082795810832, -74.03451003029429 40.640885836368355, -74.03437076451225 40.640937841597676, -74.0345119931671 40.64086160822936, -74.034648311718 40.640780354875126, -74.03477941288354 40.64069426264943, -74.03490500239879 40.64060352707195, -74.03502479428428 40.640508352665286, -74.03513852030343 40.64040895385285, -74.03524592405176 40.6403055549602, -74.03534676332049 40.64019838841312, -74.03546037355788 40.64004540305497, -74.0355668521504 40.63988947058934, -74.03566606801758 40.639730781986586, -74.03575789836157 40.639569534517136, -74.03584222984603 40.63940592634798, -74.03591895741683 40.63924016194605, -74.03598798666205 40.63907244487328, -74.03604923263201 40.63890298228928)), ((-74.03072553920357 40.64269241140154, -74.02863144260168 40.64143708082328, -74.02884084411187 40.64124262187349, -74.02984538018997 40.642068677641504, -74.03047270337147 40.64242371718207, -74.03054671298501 40.642440530936, -74.03062246509994 40.64245198879578, -74.03069929407593 40.64245799007751, -74.03077652247183 40.6424584827304, -74.03085097215974 40.642445007236475, -74.03092274456645 40.642424791133955, -74.03099079356767 40.64239813188084, -74.03105412746672 40.642365416073794, -74.0311118196365 40.64232712304704, -74.03072553920357 40.64269241140154)), ((-74.02645890378017 40.6400747979564, -74.02668924540387 40.63985324777537, -74.026832423426 40.63994024867533, -74.02704050015275 40.64006634007289, -74.02722478928733 40.64017832019777, -74.02753115555346 40.640344197515915, -74.02775823769454 40.64045509761413, -74.02788919346686 40.64052749553353, -74.02805235885766 40.64060576853781, -74.02821504579754 40.64068111114018, -74.02837436533181 40.640759748439486, -74.02850989636022 40.64082427308877, -74.02866200101404 40.640906568782555, -74.02873519278457 40.64094807342363, -74.02867604722621 40.64100485417112, -74.02839891379483 40.640883793304376, -74.02812463237305 40.64075902183521, -74.02785328812217 40.64063057758501, -74.02767896777517 40.6405431721242, -74.02750123903124 40.64045984476151, -74.02732026504056 40.6403806737875, -74.02713621485883 40.640305731188604, -74.02700642695724 40.64025043658518, -74.02687353554099 40.64019959922662, -74.02673780425206 40.640153320799506, -74.02659950263649 40.640111693084386, -74.02645890378017 40.6400747979564)), ((-74.0301776733302 40.64219618806936, -74.03017873940055 40.64219821215489, -74.0300994126225 40.64213940388174, -74.03002546908671 40.64207665708175, -74.02995724820641 40.642010255340146, -74.02989505866218 40.64194050116092, -74.02948896795124 40.64147258858704, -74.0296064660664 40.64151291152758, -74.02992394675391 40.64189341274505, -74.02997451535069 40.641960471985634, -74.03003143577193 40.64202450920623, -74.03009439577379 40.64208517777964, -74.0301630559243 40.64214214549378, -74.03023704015003 40.64219510446015, -74.03031594755575 40.642243765707775, -74.03039934769832 40.64228786548853, -74.03048678886127 40.64232716257353, -74.03054760175297 40.642347036184134, -74.03061122436411 40.64236089715417, -74.03067663634262 40.64236852242265, -74.03074278900783 40.64236979069691, -74.03074276182606 40.642369809615104, -74.03080284202476 40.642361844662396, -74.03086097113999 40.64234779900154, -74.03091609357669 40.64232792956692, -74.03096721053633 40.64230259593867, -74.0310133918384 40.64227225763728, -74.03105380074393 40.64223746691234, -74.03108770222377 40.642198853430926, -74.03111448305351 40.642157118868525, -74.03113365535187 40.642113021598576, -74.03114487075891 40.642067360478976, -74.0311479275234 40.642020965844694, -74.03114862738414 40.64202097646137, -74.03114233388524 40.64197133258739, -74.03112792159804 40.64192268058041, -74.03110561669583 40.64187578941902, -74.0310757730102 40.64183139652753, -74.03103885902469 40.64179020417801, -74.03099545786492 40.641752860579835, -74.0310401624435 40.64170011686512, -74.03174066063738 40.641730654940694, -74.0320556739968 40.64171925975094, -74.0325758537527 40.641683215305626, -74.03258521682577 40.64170780310938, -74.03205761676699 40.641803844003185, -74.03195243528485 40.64181839413594, -74.0318490441532 40.64183908701317, -74.03174805802358 40.6418657999994, -74.03165008207583 40.64189837444322, -74.0315557013783 40.64193661387863, -74.03148790076425 40.64196457374813, -74.03142330102395 40.6419966300616, -74.03136232763904 40.64203257198703, -74.03130538125548 40.642072161684275, -74.03125283768608 40.64211513970782, -74.03105143571514 40.6422741897891, -74.03100806222554 40.642304713756, -74.03096057290101 40.64233144673181, -74.03090953386815 40.64235406977586, -74.03085555856707 40.642372312563346, -74.03079929001944 40.642385956992456, -74.03073279858188 40.64239098346445, -74.03066598188995 40.6423905591472, -74.03059960957181 40.64238469013896, -74.0305996178129 40.64238461539374, -74.03050733307289 40.64235828084035, -74.03041835584426 40.64232601182259, -74.03033334118969 40.64228804681268, -74.03025291581321 40.64224466571568, -74.0301776733302 40.64219618806936)), ((-74.03491010467931 40.64106460451003, -74.0346499576743 40.6412113578406, -74.03438523201092 40.64135328066754, -74.03425659993512 40.6414212235531, -74.03412396000624 40.64148453701773, -74.03398759825802 40.641543083183805, -74.0338016000806 40.64161341266381, -74.03361187814453 40.64167771215893, -74.03341876817335 40.641735867187414, -74.03322261299343 40.64178777407372, -74.03302376253414 40.64183334084897, -74.0327836971193 40.64188587193976, -74.03254187220203 40.64193349340066, -74.03229846041383 40.641976169151334, -74.0320536379377 40.64201386941564, -74.03193873061659 40.64201929459165, -74.03182414246005 40.64202470335516, -74.0317060119377 40.642029040463804, -74.03155741440722 40.642031684736686, -74.03141034841862 40.642181302903516, -74.03134694499926 40.642143302119656, -74.03141394225364 40.642095867942956, -74.03148622603575 40.64205317440942, -74.03156322078601 40.64201556206307, -74.03164431310033 40.64198333003537, -74.03172885527601 40.641956736044705, -74.03191452010444 40.64190708771668, -74.03210255876085 40.64186292528453, -74.03229269114092 40.64182431455318, -74.03248463477435 40.64179131322526, -74.03267810600656 40.64176397000043, -74.03332589741827 40.641649120183764, -74.03350393203131 40.64160741857347, -74.03368020761754 40.64156158832546, -74.03385456102896 40.641511672720696, -74.03399922211806 40.64147014045534, -74.0341406798148 40.64142263581997, -74.03427850975963 40.64136930123471, -74.03428392708945 40.64136355431198, -74.03449740934465 40.641269764505914, -74.03470622898179 40.64117007010949, -74.03491010467931 40.64106460451003)), ((-74.03531968827903 40.60979711199213, -74.03579956318407 40.60963567563218, -74.03584188662225 40.60968913270628, -74.03587767605698 40.60974529426921, -74.03590663582322 40.609803698451806, -74.03592852814067 40.609863862654095, -74.03594317075584 40.60992529165024, -74.0359504463964 40.609987479386604, -74.0359502921407 40.61004991438806, -74.0359427100532 40.61011208065509, -74.03592731499403 40.61015658113302, -74.03590579947003 40.610199581451084, -74.03587840780655 40.610240596148415, -74.03584545051245 40.61027915865402, -74.03580730192374 40.61031483299408, -74.03571884261865 40.61041140451814, -74.03557820743944 40.61020953592369, -74.03544511974513 40.61000471741933, -74.03531968827903 40.60979711199213)), ((-74.03496202484983 40.609888445965936, -74.0350424077344 40.60986077637915, -74.03552134253852 40.61062191847531, -74.03502172851984 40.611129461548536, -74.03502185854056 40.61112953805324, -74.03499774382972 40.611152523100806, -74.03498181970264 40.6111677017329, -74.03498032663347 40.611168707169085, -74.03497862666549 40.611169500145216, -74.03497677295994 40.61117005633097, -74.03497482104594 40.6111703604006, -74.03497283000038 40.61117040243042, -74.03497085772341 40.611170181502224, -74.03496896684481 40.61116970300016, -74.03496721291042 40.61116898311667, -74.03496564910435 40.611168041647055, -74.03496432270845 40.61116690919469, -74.0349632727338 40.61116561816647, -74.03496253228727 40.611164208175296, -74.03496212384252 40.61116272243931, -74.03496205805756 40.611161205080855, -74.03496233850073 40.61115970112489, -74.03496295574352 40.61115825740147, -74.03496389208388 40.61115691714089, -74.0349878719897 40.611124701797664, -74.03503429015365 40.61102512691894, -74.03507212957226 40.61092346632929, -74.03510122862197 40.61082014783418, -74.0351214658621 40.61071560732967, -74.03513275530676 40.61061028700266, -74.03513504878427 40.61050462992707, -74.03512833830045 40.61039908186391, -74.03511265130979 40.610294088561446, -74.03508805425814 40.610190093052225, -74.0350546513992 40.61008753385273, -74.03501258124771 40.60998684316342, -74.03496202484983 40.609888445965936)), ((-74.02676729868296 40.63977817411057, -74.02693888954582 40.639613129316345, -74.02720781125925 40.63978715785997, -74.02750837562748 40.63998929149586, -74.02785699529133 40.640222577856775, -74.02812794400673 40.64040377367557, -74.02812980054075 40.640405060962934, -74.02813134625936 40.640406568052846, -74.02813253504056 40.6404082526322, -74.028133334945 40.64041006518028, -74.02813372112614 40.6404119552742, -74.0281336829209 40.64041386708442, -74.02813322267119 40.6404157474797, -74.0281323533576 40.640417541525274, -74.02813109741943 40.64041919788609, -74.02812949384827 40.640420669725636, -74.028127587548 40.64042191380804, -74.0281254328831 40.640422894999745, -74.02812309131463 40.640423586270146, -74.02812063139875 40.64042396599002, -74.02811812169668 40.64042402423688, -74.02811563550154 40.64042375919183, -74.02811324256398 40.640423178041885, -74.02811101382109 40.64042229878012, -74.02802681603127 40.640389486426386, -74.0278086331042 40.64027327975126, -74.02753636744796 40.64014880625665, -74.02724848760835 40.640012421055694, -74.0269856022858 40.63988556936335, -74.02676729868296 40.63977817411057)), ((-74.02921151567301 40.64106307029101, -74.02924540839052 40.641030366552286, -74.02937417129189 40.64109666682431, -74.02950748577439 40.64115752305037, -74.02964495689066 40.641212753411736, -74.02978617551055 40.64126219410524, -74.02993072186736 40.641305698441954, -74.03007816674042 40.64134313684702, -74.03022807145648 40.64137439866085, -74.03037998907118 40.641399389437524, -74.03054195215094 40.64143296559024, -74.03070589036426 40.641460424666164, -74.03087140406159 40.64148170102637, -74.0310380924152 40.64149674254219, -74.03120555105706 40.64150551329748, -74.03135286806176 40.64151743391257, -74.03150045483248 40.64152722363841, -74.03137447834337 40.641540134590855, -74.031247780645 40.641547931557085, -74.03112071759243 40.641550592826, -74.03099364741176 40.641548110195174, -74.03086693070155 40.64154049257296, -74.03074092333617 40.64152775967684, -74.03056463889794 40.641506855204746, -74.03038959223954 40.64148060015529, -74.03021606477839 40.64144903498347, -74.03004433084259 40.641412211854515, -74.02948799303981 40.641286206734605, -74.02944268647627 40.64123870969165, -74.0293921502527 40.64119438109083, -74.02933676163207 40.64115355402084, -74.02921151567301 40.64106307029101)), ((-74.02840542653566 40.64126465607529, -74.02706339207336 40.640449869137, -74.02731087958522 40.64056481944742, -74.02756083619435 40.64067662672318, -74.02781319448172 40.64078526034694, -74.0279905540115 40.64087878298495, -74.02817274322386 40.640966753369604, -74.02835946176039 40.64104902927018, -74.02855040334907 40.64112547476257, -74.02840542653566 40.64126465607529)), ((-74.02720210625124 40.640068554154766, -74.02773143063585 40.64031481139927, -74.02813465334096 40.64051168206977, -74.02846025644598 40.640675734952985, -74.02872289919421 40.64081302123496, -74.02882440185223 40.64086364099712, -74.02877993829635 40.6409051165074, -74.02839315959253 40.64070738315235, -74.02815646818524 40.64058549223332, -74.02799714932381 40.64050685463063, -74.0277799225074 40.64039650824423, -74.02751823975703 40.64026508104854, -74.0273476325373 40.64017709786179, -74.0271902494136 40.64008637461919, -74.02718853839411 40.64008528989889, -74.02718709091253 40.64008400249958, -74.02718594599502 40.6400825493333, -74.02718513675799 40.640080970015035, -74.02718468568074 40.640079309565444, -74.02718460696809 40.64007761480814, -74.02718490063994 40.64007593437109, -74.02718556080444 40.64007431508264, -74.02718656620164 40.64007280287427, -74.02718789084163 40.64007144097703, -74.02718949572841 40.64007026632138, -74.0271913371362 40.640069313137346, -74.02719336069694 40.64006860845329, -74.0271955108575 40.64006817209384, -74.02719772733285 40.640068015779896, -74.0271999462884 40.64006814402921, -74.02720210625124 40.640068554154766)), ((-74.02953102288801 40.64173993270772, -74.02904999089169 40.64131849824311, -74.02920979271512 40.64138051789201, -74.02937065572229 40.64144092511947, -74.02983098538942 40.641972452883316, -74.02983176175928 40.641974364482465, -74.02983131533638 40.641975357870024, -74.02983065135784 40.64197627747152, -74.02982978872672 40.64197709626652, -74.02982875343972 40.64197778903367, -74.02982757622493 40.64197833595368, -74.02982629254002 40.64197871900698, -74.02982494257442 40.64197892737682, -74.02982356415588 40.64197895565038, -74.02982220102402 40.641978801114746, -74.02982089219432 40.64197847096392, -74.02981967904667 40.641977972391345, -74.02981859705419 40.6419773224976, -74.0298176781446 40.64197654018542, -74.02978423894467 40.641947785393434, -74.02973202807677 40.64190897845719, -74.0296796085988 40.6418688090666, -74.02962334977464 40.641821391467964, -74.02953102288801 40.64173993270772)), ((-74.02812350112796 40.640335694660465, -74.02752277271463 40.63993111815314, -74.02891440963887 40.64077601866321, -74.02889748804705 40.64079226376781, -74.02869589600616 40.64068628810248, -74.02849952739875 40.64057476719619, -74.02830864356874 40.64045785049734, -74.02812350112796 40.640335694660465)), ((-74.02903171189344 40.64106537252432, -74.02908133238736 40.6410192921629, -74.02915894708634 40.641069002740586, -74.02923300017201 40.64112177143131, -74.0293032870644 40.64117744880792, -74.0293696090902 40.64123588093939, -74.0293769474221 40.64124523725271, -74.02919288306447 40.64118645595784, -74.0291154090186 40.64112351134873, -74.02903171189344 40.64106537252432)))",B082,6037,B082,B-10,B-10,B-10,B-10,"4 Ave., Shore Rd., Belt Pkwy., Verrazano Bridge",310,43,72,"11209, 11220",B,58,False,Shore Road Park,No,100003964,PARK,20100106000000.00000,18980101000000.00000,,DPR/CDOT,Unkwn,Shore Park and Parkway,Y,Shore Park and Parkway,Large Park,Community Park,http://www.nycgovparks.org/parks/B082/,Yes,"51, 64","22, 23","10, 11",{FE275D80-B13F-4171-9357-966E9F7AAF43} +"MULTIPOLYGON (((-74.00263965850152 40.7249823139312, -74.00286649522137 40.725093554701076, -74.00266665416352 40.725335294863385, -74.00279601856644 40.72539873445953, -74.00284768201158 40.72542407081684, -74.00305689533695 40.725526667653135, -74.00296123390063 40.7256423873659, -74.00265048196087 40.72548999548958, -74.0026021041271 40.725548498163434, -74.00255294502277 40.72560798148808, -74.00245886746269 40.725721782662816, -74.0021525385656 40.72557155777551, -74.00263965850152 40.7249823139312)))",M069,4710,M069,M-02,M-02,M-02,M-02,Thompson St bet. Spring St and Prince St,102,3,1,10012,M,0.635,False,Vesuvio Playground,Yes,100004938,PLGD,20100106000000.00000,19291204000000.00000,85 THOMPSON STREET,DPR,True,Vesuvio Playground,Y,Vesuvio Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M069/,No,66,26,10,{1AED20BF-2B18-478B-BB2D-4CEFA85683C7} +"MULTIPOLYGON (((-73.94052498544892 40.7675023254669, -73.93876529121145 40.766861871173184, -73.93924736907341 40.76668639213096, -73.93983398774604 40.766472855478284, -73.9407031491328 40.765071640837, -73.94241285632798 40.765683132760856, -73.94254940683349 40.76573196953333, -73.94177303483914 40.76664442972773, -73.94066361610831 40.76747367717587, -73.94060754496918 40.76745343017224, -73.94052498544892 40.7675023254669)))",Q048,5866,Q048,Q-01,Q-01,Q-01,Q-01,Vernon Blvd. bet. 33 Rd. and 34 Ave.,401,26,114,11106,Q,8.09,False,Rainey Park,Yes,100000360,PARK,20090423000000.00000,,,DPR,True,Rainey Park,Y,Rainey Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q048/,Yes,37,12,12,{D62FC445-3BDC-4A9B-A635-A698A307C131} +"MULTIPOLYGON (((-73.9160459192458 40.80436439922661, -73.91632470853322 40.80398182502101, -73.91721207513176 40.8043552695738, -73.9171384984697 40.804679146884084, -73.91698313132581 40.80465432091155, -73.91689266911129 40.80463668429618, -73.91680080786215 40.80461675663132, -73.91671183869778 40.80459552796069, -73.91663572039846 40.804575372004344, -73.9165386062751 40.80454850468884, -73.91644938935973 40.804520862282644, -73.9164005651322 40.80450412533263, -73.91632693913563 40.80447839869191, -73.91622815428131 40.804440265560366, -73.91617386355057 40.80441778205973, -73.9160459192458 40.80436439922661)))",X182,5415,X182,X-01,X-01,X-01,X-01,E. 135 St. bet. Cypress Ave. and St Ann's Ave.,201,8,40,10454,X,1.053,False,Millbrook Playground,Yes,100004849,PARK,20100106000000.00000,19590507000000.00000,625 EAST 135 STREET,DPR,True,Millbrook Playground,Y,Millbrook Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X182/,No,84,29,15,{1B3E49C2-F446-4DE9-BE16-648484E06893} +"MULTIPOLYGON (((-73.99237523495403 40.76289098750757, -73.99256191591897 40.76263368420994, -73.99296669939162 40.76280388243386, -73.9926048328003 40.76330267339745, -73.99220004603661 40.76313247391452, -73.99237523495403 40.76289098750757)))",M277,4964,M277,M-04,M-04,M-04,M-04,10 Ave. bet. W. 47 St. and W. 48 St.,104,3,18,10036,M,0.576,False,Hell's Kitchen Park,Yes,100003779,PARK,20100106000000.00000,19731219000000.00000,670 10 AVENUE,DPR,True,Hell's Kitchen Park,Y,Hell's Kitchen Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M277/,No,75,27,10,{73A0C6B5-D12C-40CD-A8F1-45DFC24E9BE1} +"MULTIPOLYGON (((-73.75130284730585 40.75323734017692, -73.75133360171056 40.75322105512654, -73.751482804749 40.75357327898903, -73.75151605836413 40.75365177966861, -73.75159807582052 40.753845397625504, -73.7500366753586 40.7542979774576, -73.74994319853484 40.75407293546664, -73.74983406225792 40.753810191986815, -73.74990176604587 40.753792943867644, -73.7499943766208 40.75377095455699, -73.75008411413172 40.75374933174934, -73.75020312543026 40.75372017476164, -73.7502878503081 40.75369883629217, -73.7503670143921 40.753677458694355, -73.7504388223582 40.75365544195296, -73.75049866926513 40.75363618183323, -73.75056799099798 40.75361210196284, -73.75063236938232 40.753587538581975, -73.7506709259135 40.75357271051283, -73.75072080541321 40.75355220671201, -73.75076145338652 40.75353478426914, -73.75078833849531 40.75352253157695, -73.75083473975955 40.753500827927525, -73.75087678075609 40.75348042236878, -73.75090750893389 40.75346550885101, -73.75094286979477 40.7534467358538, -73.75098903092939 40.7534214511986, -73.75106038819166 40.75338016850313, -73.75109851014192 40.753357040259154, -73.75113457286629 40.75333516106248, -73.75116679665499 40.75331418937949, -73.75119533937398 40.7532956122951, -73.75122824288786 40.75327684650952, -73.75127239188224 40.753253468275524, -73.75130284730585 40.75323734017692)))",Q388,6277,Q388,Q-11,Q-11,Q-11,Q-11,230 St. bet. 57 Ave. and 57 Rd.,411,23,111,11364,Q,2.066,False,Linnaeus Park,Yes,100000247,PARK,,19571126000000.00000,,DPR,False,Linnaeus Park,Y,Linnaeus Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q388/,No,26,11,6,{F0180F23-620C-454A-BB7D-0EEC8CD9982C} +"MULTIPOLYGON (((-73.88586966839269 40.85094610610175, -73.88615335145889 40.85111535478034, -73.88615936328097 40.851119933412825, -73.88616430661433 40.85112519806617, -73.8861680453234 40.85113100632848, -73.88617048005854 40.85113720231667, -73.8861715435126 40.85114361667186, -73.88617120870379 40.8511500773735, -73.88616948304762 40.8511564088328, -73.88616641308673 40.851162440002135, -73.88616208448654 40.85116800707637, -73.88615661135096 40.85117295978573, -73.88615014333213 40.85117716500494, -73.88614285495538 40.85118050764301, -73.8861349432353 40.85118289784504, -73.88612662293195 40.85118427098749, -73.886118118245 40.85118459037136, -73.88610966044332 40.85118384631956, -73.8861014771856 40.85118205976817, -73.88576048788401 40.85108303044779, -73.88575254975659 40.85108008067834, -73.88574534850474 40.85107619152418, -73.88573907488266 40.85107146583056, -73.88573389588771 40.85106602893145, -73.88572994883702 40.85106002504174, -73.8857273378144 40.85105361455235, -73.88572613368287 40.851046966826054, -73.88572636697221 40.85104025838963, -73.88572803263052 40.851033668436095, -73.88573108647891 40.851027371617036, -73.88573544640361 40.85102153444218, -73.88574099710269 40.851016313482766, -73.88582586039419 40.85094861294697, -73.8858298342848 40.85094589018928, -73.88583434210607 40.85094369834974, -73.88583926279097 40.85094209854207, -73.88584446226024 40.85094113295662, -73.88584980053292 40.85094082756916, -73.88585513172941 40.850941190339725, -73.88586031236979 40.850942213021895, -73.88586520138296 40.850943865759966, -73.88586966839269 40.85094610610175)))",X071,5669,X071,X-06,X-06,X-06,X-06,Crotona Ave. at Grote St. and Garden St.,206,15,48,10457,X,0.13,False,Whalen Grove,Yes,100004029,PARK,20100106000000.00000,19130612000000.00000,,DPR,True,Whalen Grove,Y,Whalen Grove,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X071/,No,78,33,15,{093F60F6-A96A-4EE0-816F-CD212B5ED496} +"MULTIPOLYGON (((-73.9057030555809 40.667911207322284, -73.9058743295397 40.667884891319645, -73.90590999532522 40.66802525873597, -73.90592711259809 40.66809262954194, -73.90594423108952 40.66815999944527, -73.90596134724893 40.66822737024414, -73.90597846462683 40.6682947401403, -73.90599558322198 40.66836211003438, -73.90601332520411 40.668431932540045, -73.90602988754684 40.668497120022884, -73.90604792010397 40.66856808821585, -73.90606427668777 40.66863246686114, -73.90608142603678 40.66869995653336, -73.90614986614283 40.66896931802049, -73.90606139843537 40.66898238794752, -73.90578901709338 40.66902262629901, -73.90551400832116 40.667940254147574, -73.90560764834053 40.6679258669272, -73.9057030555809 40.667911207322284)))",B397,5218,B397,B-16,B-16,B-16,B-16,Christopher Ave. between Sutter Ave. and Belmont Ave.,316,41,73,11212,B,0.918,False,Carter G. Woodson Children's Park,Yes,100004159,PARK,20100106000000.00000,19970116000000.00000,184 CHRISTOPHER AVENUE,DPR,True,Carter G. Woodson Children's Park,Y,Carter G. Woodson Children's Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B397/,No,55,20,8,{34FCB677-8521-4D58-92E0-3A0173D76042} +"MULTIPOLYGON (((-73.92627795123586 40.83502007970008, -73.9268152422122 40.83432207410571, -73.92713340847509 40.83442545330984, -73.92709172195475 40.83448654171815, -73.92739930689297 40.83458645829863, -73.92735761933025 40.83464754680066, -73.92705003654346 40.83454763011153, -73.92702365700147 40.83458628695481, -73.92733124229856 40.83468620371519, -73.92695093918894 40.83524350992449, -73.92627795123586 40.83502007970008)))",X168,4767,X168,X-04,X-04,X-04,X-04,W 166 St bet. Woodycrest Av and Nelson Av,204,8,44,10452,X,1.222,False,Nelson Playground,Yes,100005006,PARK,20100106000000.00000,19510517000000.00000,1082 NELSON AvNUE,DPR,True,Nelson Playground,Y,Nelson Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X168/,No,84,29,15,{DED16328-1F61-4690-A768-ABDFB9C0CC1E} +"MULTIPOLYGON (((-73.88770328810776 40.76621676079482, -73.88764798669735 40.76606070526614, -73.88762947396971 40.76600846604919, -73.88756408851381 40.76582395099655, -73.88771997923946 40.76580749501862, -73.88774218485605 40.765933544079815, -73.88808549119116 40.765897305877395, -73.8881191984307 40.76608864631476, -73.88812483685525 40.766120652120954, -73.88813961457303 40.76620453676448, -73.88802962228876 40.76620452987611, -73.8878735960156 40.76620320477768, -73.8878479382655 40.76620404158728, -73.88778684783777 40.76620789659692, -73.88776770223961 40.76620992749657, -73.88772995714318 40.76621393128575, -73.88770328810776 40.76621676079482)))",Q393G,5923,Q393G,Q-03,Q-03,Q-03,Q-03,23 Ave. bet. 81 St. and 82 St.,403,22,115,11370,Q,0.348,False,Laguardia Landing Lights,Yes,100000076,PARK,20090423000000.00000,19600728000000.00000,,DPR,False,Laguardia Landing Lights,N,Laguardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393G/,No,35,13,14,{85ABA454-5A17-47B4-B48D-7209E8B35A45} +"MULTIPOLYGON (((-74.16197949628776 40.53696351046616, -74.16291919224852 40.53637584025412, -74.1633133047764 40.53680503162877, -74.16231850958557 40.537334562864025, -74.16197949628776 40.53696351046616)))",R090,5472,R090,R-03,R-03,R-03,R-03,Preston Ave. bet. Koch Blvd. and Osborne St.,503,51,123,10312,R,1.375,False,Lieutenant John H. Martinson Playground,Yes,100004930,PARK,20100106000000.00000,19620226000000.00000,54 OSBORNE STREET,DPR/DOE,False,Lieutenant John H. Martinson Playground,Y,Lieutenant John H. Martinson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R090/,No,62,24,11,{4F6D9429-D6CD-489B-BC10-0C6124E248B0} +"MULTIPOLYGON (((-73.84509867168501 40.75388350701338, -73.84497882214738 40.753640405235714, -73.84379232417048 40.752525252515454, -73.84352061290751 40.752468529093306, -73.84275368384169 40.75273677863746, -73.8418615997368 40.75304879516518, -73.84166835216374 40.75311638470907, -73.84163804082857 40.75312698613393, -73.84129288330028 40.75322152359436, -73.84115062433021 40.753255544069624, -73.84108753985997 40.75327063060102, -73.84065250588817 40.75337466493524, -73.84002179549636 40.753550469297224, -73.83998414565303 40.75356096464105, -73.83967979032211 40.75378972407993, -73.83963665925657 40.75382214262835, -73.83930497205333 40.75407144410483, -73.8391352636191 40.75410730495402, -73.83908841060197 40.754052299584856, -73.83894639897281 40.754064120186875, -73.83859081181821 40.75409371742072, -73.83808138361246 40.754136117844055, -73.83790278487574 40.75415098256893, -73.8374927856454 40.75418510502556, -73.83663839071309 40.75328304096966, -73.83642607398285 40.75282709926371, -73.83628838452898 40.75253141302701, -73.83600171300345 40.75208512718079, -73.83621581493817 40.75206039770613, -73.83565345500601 40.7512783174569, -73.83493214444663 40.75139600893763, -73.83276533187252 40.7517495239716, -73.83248128270375 40.7517958628668, -73.83261904611255 40.750954371444784, -73.8330222211719 40.749205596338015, -73.83330194665056 40.74827996885666, -73.83332396885224 40.74823470968564, -73.83335440842357 40.748192365926045, -73.8333926177846 40.7481538362419, -73.83343778497394 40.74811993981407, -73.83348895145764 40.74809139745597, -73.83354502993312 40.748068814530626, -73.83360482922092 40.74805267018134, -73.83366707915155 40.74804330836303, -73.8337304578219 40.748040927976774, -73.83379361765215 40.74804557930562, -73.83385521735545 40.748057163160226, -73.83391394916299 40.74807543361975, -73.83396856485786 40.74810000347178, -73.83401790417776 40.74813034965616, -73.83406091964382 40.748165827707815, -73.83409669784156 40.748205684394165, -73.83412447714426 40.74824907304822, -73.83414366779796 40.74829507160698, -73.83415386371189 40.74834270333957, -73.83415484714733 40.74839095666459, -73.83434520910345 40.74834474999168, -73.8343165515045 40.74822213885493, -73.83427573160341 40.74804748787293, -73.83407773884637 40.7475727405419, -73.83423413947322 40.74747709136361, -73.83438073984148 40.747362601862235, -73.83450455456565 40.74724776065607, -73.83456207830233 40.747182984210745, -73.8347034844148 40.747044545029745, -73.8347604513421 40.74709717771256, -73.8348557755297 40.74720630830633, -73.83490277913934 40.74728510889908, -73.83493572468193 40.74735667355599, -73.83494469867856 40.74740016113688, -73.83494493233812 40.74749797193772, -73.83491189079659 40.74763712869397, -73.83488547844085 40.74772957569336, -73.83476892304988 40.748137524102965, -73.83501009584535 40.74817695185944, -73.8350434435617 40.74805667196897, -73.83508981977178 40.747889398809356, -73.83512435835299 40.747764820671, -73.83514724700481 40.747682263354896, -73.835186241699 40.74754160940213, -73.83519170053448 40.74738832555645, -73.83515701265489 40.7472479722826, -73.83509880255333 40.74714011526969, -73.83498398448985 40.747001066389004, -73.83492454756221 40.74694890034131, -73.8347934389193 40.7468551811007, -73.83518683480618 40.74612495542767, -73.83552114315796 40.74550439611302, -73.83564860526121 40.745305527944986, -73.83574995568299 40.745173784998116, -73.83584309004 40.74507173621428, -73.83597339070029 40.74494985706936, -73.83612446619769 40.74483544103188, -73.8362494457505 40.744757062955756, -73.83644018091704 40.744642752409725, -73.83663047669782 40.74452870567312, -73.83679271108721 40.744431476374785, -73.8369025587513 40.74436564183625, -73.83705531351697 40.74427409265623, -73.83715976206362 40.744226961894306, -73.83732046950725 40.74417064428496, -73.83748764310556 40.7441587405386, -73.83790643271848 40.74417989830392, -73.83809399254264 40.74418937341758, -73.83816660212626 40.7441930414782, -73.83847286959906 40.74420766792553, -73.8386929666098 40.74420271472258, -73.83876889612374 40.74418977447715, -73.83893453057718 40.744143474265655, -73.8390111089569 40.74411185372448, -73.83909048124552 40.74407494925133, -73.83914620273465 40.744040127889164, -73.83922743926443 40.743992594524606, -73.8408955041603 40.74276725065031, -73.84088185853238 40.74277182889399, -73.84099110160068 40.74269702325268, -73.84115025468398 40.742580106543016, -73.84115196123783 40.74258687171485, -73.84162552412425 40.742262586240415, -73.8416274927022 40.742264731257016, -73.84163227774523 40.742269948178624, -73.84170903930581 40.74235363169314, -73.84181757858704 40.74227636500992, -73.84192953836497 40.74220198094353, -73.84204481187034 40.74213057028895, -73.84216323909394 40.742062208459764, -73.8422846895742 40.741996993423086, -73.84239625845682 40.74194128851357, -73.84246313449098 40.741910306164684, -73.84247753185991 40.741903635980044, -73.84251645898736 40.74188576819661, -73.84256015755471 40.741766152167195, -73.84257075386752 40.741737146865894, -73.84300110088418 40.7415230747054, -73.84307267120445 40.741488317165675, -73.84314751809606 40.74145781264305, -73.84322520663949 40.741431738839765, -73.84330528303161 40.741410249119696, -73.84338728170447 40.74139346621444, -73.84343320866316 40.741388339928896, -73.84353504590135 40.7413769743302, -73.84357979701265 40.741374941436504, -73.8436036458807 40.741376748727276, -73.84380618671784 40.74139209360315, -73.84382832742322 40.74139631099298, -73.84384178303675 40.74139733060373, -73.8439207111458 40.74141458868023, -73.84399711015269 40.74143750117159, -73.84407028439774 40.74146585912351, -73.84427973617132 40.741568919346506, -73.84430893024 40.74158257360346, -73.84543559543313 40.7422063271656, -73.84566249846617 40.74233194349756, -73.84571468572904 40.74237121885225, -73.84576354763442 40.74241289678856, -73.84580889275766 40.74245681316181, -73.84581592041165 40.742464151807525, -73.84585913583824 40.74251309825049, -73.84589801439881 40.742564105540644, -73.84593238847745 40.74261695103257, -73.8463815995714 40.743462098137236, -73.84645752687764 40.743628907762194, -73.84650111910774 40.743727078934356, -73.84650290007049 40.74373108856923, -73.84650293658545 40.743731170564125, -73.84650399113471 40.74373082617444, -73.84660761655158 40.743957704077985, -73.84667770545637 40.744117325117045, -73.84668903794886 40.744151620744915, -73.84669679832933 40.74417510461921, -73.84687269061145 40.74457728668582, -73.84687382367743 40.744579876252374, -73.84707831188874 40.74496255677158, -73.84728920671931 40.745343221056594, -73.84737857991323 40.74550055289549, -73.8474545727792 40.74563256086736, -73.84768017983896 40.74601535466951, -73.84791229385193 40.74639589182067, -73.84815087360812 40.74677410919197, -73.8483033146654 40.74700991170128, -73.84845882022823 40.74724455457564, -73.84854873287509 40.747378391021556, -73.84858534664384 40.74743245521032, -73.84905862632388 40.74811817447871, -73.84922037966933 40.74835121165923, -73.84922012420083 40.748351082552226, -73.8492571536888 40.748404006119685, -73.84958020405054 40.748865719711524, -73.84963140927172 40.74893890237117, -73.8496826146054 40.749012085007315, -73.85003228018924 40.74953836507207, -73.8503790394456 40.75006575688234, -73.85013771715022 40.75015100485794, -73.85013760847986 40.75015088584958, -73.84999031250365 40.75020447150751, -73.8499456215021 40.75013153974537, -73.84934350655244 40.75035942679315, -73.84840350114439 40.750715189667375, -73.84823246156512 40.75077992162211, -73.84791683033143 40.75089937453419, -73.84721014116353 40.75116682196949, -73.84688347597475 40.751290446571, -73.84654657804562 40.75140920288017, -73.84647436517541 40.75141886995328, -73.84526532043013 40.75185825301369, -73.84411857975266 40.75225937222085, -73.84425456998125 40.75247849375849, -73.8440362983508 40.752557172898754, -73.84537420232112 40.753799767155634, -73.84543740837903 40.75378055772216, -73.8467438037275 40.75338350385045, -73.84678675624943 40.753370448708054, -73.84769882175813 40.753093232295, -73.84757647618042 40.75286206162001, -73.84795864712845 40.75273828322295, -73.84857798175115 40.75253768714333, -73.8486493751243 40.752524276969005, -73.84928804518754 40.75241840879517, -73.85131900865132 40.75274305956181, -73.8510625240852 40.75282094804859, -73.8510627584207 40.75282100508347, -73.85051066490593 40.752988532520554, -73.85011901239217 40.7531074650136, -73.84773088141536 40.7538326250458, -73.84541333409273 40.75453628928152, -73.84360111311328 40.75508648135546, -73.84336145946457 40.75515923725137, -73.84305605305316 40.754542217549194, -73.84303972740516 40.75450923495432, -73.8433962234235 40.754400896613475, -73.84373174802987 40.754298929524126, -73.844601267178 40.754034676029164, -73.84509867168501 40.75388350701338)), ((-73.83540069869044 40.727359259198124, -73.83548504155006 40.727359116786154, -73.83556907576511 40.72736460836525, -73.83565215160279 40.72737569338625, -73.83573362654482 40.727392285386046, -73.835812871196 40.72741425559806, -73.83758070208455 40.727884501382825, -73.83817287523937 40.72804140168917, -73.8386811745342 40.728176075741416, -73.83873309796245 40.728235430864345, -73.83905921334187 40.72860822109675, -73.83922460678721 40.728797284628975, -73.83923813693647 40.72881244829966, -73.83977550051023 40.7294146822042, -73.83980339807336 40.72944556348918, -73.83981302114333 40.72945621640303, -73.83991472176237 40.7295687955235, -73.84015440016803 40.729832368280945, -73.84025799653837 40.729930870248495, -73.8409295810416 40.73056941682859, -73.84100539943158 40.73064150379946, -73.84114168475556 40.730763701079894, -73.84114600927623 40.730767578337726, -73.84123926830995 40.73085119592574, -73.84129977517861 40.73090544770171, -73.84132423404942 40.73092737730542, -73.84210507177549 40.731627478573365, -73.84212871373516 40.731648675669184, -73.84256066238859 40.73210156426645, -73.8426289371831 40.732168824809065, -73.84262897851775 40.732168866289015, -73.84265909976172 40.7321990700211, -73.84266097044645 40.7322009501398, -73.84277789690739 40.73232139632146, -73.84289157005767 40.73244363085798, -73.84296497135205 40.73252546753675, -73.84299261691356 40.73255445121506, -73.84299984590389 40.732565196046494, -73.84314824406674 40.732740819349296, -73.84329002054129 40.732919579824944, -73.84342505962003 40.73310133325882, -73.84355325269854 40.7332859336444, -73.84367449709552 40.73347323138041, -73.84378869368156 40.73366307506856, -73.84389575043258 40.73385531061789, -73.84399558124001 40.73404978394436, -73.84408810473553 40.73424633736735, -73.84409258936289 40.73425633188923, -73.84410346258635 40.73427768057769, -73.84411433463507 40.7342990283629, -73.84416294693212 40.73441208016955, -73.84424422960495 40.734613757450504, -73.84431917119663 40.73481685160174, -73.84438772694142 40.73502124550893, -73.8444498579828 40.73522682566675, -73.84450553021043 40.73543347317229, -73.84455471187412 40.735641071826386, -73.84457026110826 40.73573930234809, -73.84457551037916 40.735762113027306, -73.84462215796098 40.735943271074085, -73.84466055287055 40.736125546303285, -73.84469065174719 40.73630872074149, -73.84471241596201 40.73649257732045, -73.84472582228352 40.736676895388875, -73.84473085221062 40.73686145610106, -73.84472750026852 40.73704603882609, -73.84475188402229 40.73740245534488, -73.84477128345117 40.73775904882599, -73.84477702457419 40.737886920728386, -73.84477703356066 40.73788712875808, -73.84477936335239 40.73793901021731, -73.84479044388783 40.73818580061146, -73.84478820769998 40.73824822897813, -73.84477951646967 40.738310329864, -73.84477088193161 40.738348597957426, -73.84476716569267 40.738362308598816, -73.84474679823502 40.73842261793848, -73.84471812631428 40.73848569774895, -73.84471680983728 40.73848822820475, -73.84468671683818 40.73854027935991, -73.8446697524066 40.738565793109856, -73.84466033910505 40.738579032301175, -73.84461523900193 40.738634569775236, -73.844566804058 40.738688457500785, -73.84445752279308 40.73879329217554, -73.84393793995274 40.73929172776872, -73.8438983597081 40.73933600437174, -73.84386377002548 40.739382636253815, -73.84383441200622 40.73943129956321, -73.84380721175799 40.73948975972443, -73.84378755609846 40.73954994468125, -73.84377563105949 40.739611290971304, -73.84377154573941 40.73967322692198, -73.84377384602078 40.73972173414337, -73.84376889518478 40.73990537717194, -73.84376387174588 40.74009169640882, -73.84375994112446 40.740154289035615, -73.84366028365467 40.740305156487125, -73.84355678975187 40.74045452199316, -73.84344950096407 40.740602330668914, -73.84341768577018 40.74062162944174, -73.84238787019613 40.74108741576424, -73.84231881758141 40.74111443375477, -73.84214395553913 40.74118285078686, -73.84140149907617 40.74153257432519, -73.84122386984778 40.741617142171805, -73.84106509297114 40.741680605329655, -73.8409469853768 40.74171903807504, -73.84077300873304 40.74176993665467, -73.8406117515459 40.74180927473725, -73.84047696909585 40.7418400584164, -73.84029849502856 40.74186282626869, -73.84016829114329 40.74187566159694, -73.840030095241 40.741879712023064, -73.83991246540516 40.74187954857665, -73.83981142752329 40.741877455786344, -73.83970818845044 40.74187052951616, -73.83959171474181 40.741855870965054, -73.8394705642212 40.74183196475889, -73.83932657062466 40.74180061717486, -73.83919106960066 40.74175754313988, -73.83910269793209 40.74172652506772, -73.83901934672959 40.74169534284842, -73.83888514819724 40.741632308699636, -73.83874861435206 40.741556398353794, -73.83860538470427 40.74145737681449, -73.83850115318882 40.74138836880838, -73.8384162206354 40.7413192292958, -73.83835487910314 40.741267892569745, -73.83829318603587 40.74120631023024, -73.8382445738775 40.7411332971632, -73.83822354828582 40.741080568964485, -73.83821043243948 40.74103964133271, -73.83748374719431 40.73876737288437, -73.83735249441723 40.7383556513847, -73.83724181337507 40.73783537540173, -73.8371618236598 40.737275927301226, -73.83712610230037 40.736959721525594, -73.83707801161151 40.736506740589824, -73.8370150368908 40.735934710120254, -73.837006057086 40.73558975100528, -73.83694775481412 40.73524722636485, -73.83690216974317 40.73502811109518, -73.83681357961882 40.734710429037285, -73.83671690411414 40.734457272247, -73.83660524368835 40.73422084898516, -73.83651115675595 40.73402059520981, -73.83643566233472 40.73387481257075, -73.83501351044025 40.731215568559584, -73.83441885069996 40.730010115349835, -73.83393116315844 40.72902147323107, -73.8338499198172 40.72885677427586, -73.83372015038711 40.72860555350554, -73.83468436725393 40.72765538880319, -73.83475542973771 40.727631665102656, -73.83478444509016 40.72760482110053, -73.83493284467407 40.727467528698746, -73.83523368765825 40.727376402887636, -73.83531669701654 40.727365036529996, -73.83540069869044 40.727359259198124)), ((-73.82838498045791 40.7232291894851, -73.82815743555577 40.722957911530905, -73.82773369588126 40.72237504833944, -73.82697571934197 40.72122134019781, -73.82681287603005 40.72105351740394, -73.82706001433985 40.72109936831512, -73.83010594052554 40.72166442646458, -73.83012771933717 40.72162893703422, -73.83014662136642 40.721631302648206, -73.83038547919745 40.72166121135581, -73.83046062560331 40.72162794188608, -73.83054073641904 40.721366866543185, -73.83067682539442 40.72092335244561, -73.83111999026333 40.71947903379185, -73.8303443889807 40.71849077616066, -73.8297716714527 40.71776100531844, -73.82977823611712 40.717731040592554, -73.82979092115116 40.71767314203686, -73.82997399146963 40.71774911676573, -73.83007937192299 40.71779284900868, -73.83008054230724 40.71779336492823, -73.83029506920573 40.71788797392905, -73.83036363972462 40.71791821511035, -73.83036432891055 40.717918535807485, -73.83064261339769 40.7180487209438, -73.8306435354589 40.71804915364528, -73.83091761232068 40.71818495291696, -73.83091887002821 40.7181855761171, -73.83102043563468 40.718238807692096, -73.83118746743327 40.71832635102652, -73.83118945669897 40.718327393133734, -73.83129737959143 40.71838715799053, -73.83145244359211 40.71847302916058, -73.83145511230336 40.718474507204945, -73.83156487325489 40.718538671697914, -73.83171224772028 40.718624823931435, -73.83171565959047 40.7186268190491, -73.83182633036375 40.71869506483844, -73.83196685739108 40.71878172093284, -73.83197092249183 40.718784227586305, -73.83208080697402 40.71885566249353, -73.83221613435728 40.7189436380509, -73.83222072850211 40.71894662453861, -73.83228985324529 40.718993979594096, -73.8324649086587 40.7191139025344, -73.83270329992904 40.719285947007265, -73.83293573927715 40.719462642490846, -73.8331620719528 40.7196438708296, -73.83338214439489 40.719829509367436, -73.83359580777974 40.720019431853224, -73.83380291919576 40.72021351204446, -73.83403764945842 40.72045941737428, -73.83431462017033 40.720749572897546, -73.834329243184 40.72076489272569, -73.83438402832421 40.720825688515454, -73.83450842353136 40.72097248141951, -73.83471696084804 40.721253433395816, -73.83473384996867 40.72127618834299, -73.83477296962245 40.72131939068098, -73.83492554968056 40.72149470403188, -73.83507128696917 40.72167335547364, -73.83521005637404 40.7218551908656, -73.83534173751957 40.722040052471165, -73.83535999033248 40.722066737302995, -73.83548073933764 40.72225061235917, -73.83559449105591 40.72243705185281, -73.83559306798263 40.72242904337738, -73.8355928730206 40.72242794807759, -73.83559967514783 40.72243711328582, -73.83570889726505 40.72260600513953, -73.83603165424852 40.72315142204445, -73.83606222461448 40.72320308106036, -73.8361190524974 40.72329911139686, -73.8361216495038 40.723304358768196, -73.83621134601728 40.723485586342974, -73.83627763203101 40.72361951184119, -73.83629486314045 40.7236543257776, -73.83633117934323 40.723723811295315, -73.83636082728246 40.723795104554696, -73.83638365278665 40.72386783703284, -73.83639953721367 40.723941631251186, -73.83640839981157 40.72401610348029, -73.83641019179018 40.724090868233816, -73.83640490579528 40.72416553648106, -73.8363933494648 40.72423656495821, -73.8363742591331 40.724306646195956, -73.83634776137826 40.72437531840855, -73.83631403009993 40.72444213068223, -73.8362732888938 40.7245066402774, -73.83622580392161 40.72456842432525, -73.83617188984104 40.72462707533381, -73.83607840962907 40.72471023952917, -73.83599184319347 40.72479762788646, -73.83591252041964 40.72488890860284, -73.83584074164527 40.724983734524166, -73.83581722582176 40.72501976914942, -73.83577678002051 40.72508174584968, -73.83572088032406 40.72518257013008, -73.83567325304197 40.72528582315935, -73.83563407909311 40.725391112583125, -73.83560350982825 40.725498037898824, -73.83558165873482 40.72560619404546, -73.83556861091019 40.725715169615995, -73.83556441477057 40.72582454864664, -73.83556908795299 40.72593391692854, -73.83558261022131 40.7260428583958, -73.83555967150329 40.72612687028936, -73.83552808167694 40.72620924169738, -73.83548804084027 40.72628945870708, -73.83543979759936 40.726367018279795, -73.83538365378175 40.72644143726268, -73.83531995970428 40.72651225148183, -73.83524911417176 40.726579016643335, -73.83517155735272 40.72664131732834, -73.83508777670494 40.726698764300494, -73.8349982927644 40.72675099718758, -73.83490366741574 40.726797690797206, -73.83480448850796 40.726838553294314, -73.83470137931504 40.726873329816954, -73.83459498077973 40.72690180245134, -73.83448595860622 40.72692379384419, -73.83448459204554 40.726924025112055, -73.83445891989943 40.72692836468736, -73.83361214569993 40.727071518522564, -73.8329883297633 40.727176975589735, -73.83291366096537 40.7270432603214, -73.83284383699294 40.72691109821169, -73.83278216170012 40.726807771432206, -73.8327125451169 40.72670353527171, -73.83265329252464 40.726623117326106, -73.83259191361643 40.72655375632822, -73.83247591263635 40.726427291907115, -73.83232055278305 40.72628458968134, -73.83214190702847 40.72614140484341, -73.83191393695824 40.72598129737565, -73.83158168074229 40.725750204590284, -73.831317111221 40.72558004041596, -73.83019949571322 40.72480220601749, -73.82995097389791 40.7246238838968, -73.82954984024578 40.72431692345878, -73.82909595163784 40.72394304648815, -73.8286997631385 40.72357569671745, -73.82838498045791 40.7232291894851)), ((-73.8509965272221 40.74983844532343, -73.85097020930272 40.74984798636925, -73.8507072372502 40.749435481823234, -73.85043787610385 40.74902537000557, -73.8501621613474 40.74861770764986, -73.84988013319771 40.74821255149522, -73.84959183186811 40.74780995828009, -73.84929729520061 40.74740998473912, -73.84923210619226 40.747325470531756, -73.84915120662643 40.74721561883914, -73.84915113813894 40.74721553590272, -73.84827211862032 40.746022026197366, -73.84752691961417 40.74458479948694, -73.84751184975191 40.74455573364939, -73.84751175780542 40.744555556127565, -73.84746746422847 40.744470124811095, -73.84746742061205 40.744470041006075, -73.84739546497813 40.74432526105963, -73.84732691584946 40.744179528340396, -73.84712082108254 40.74366770781548, -73.84712063741944 40.74366725461612, -73.84707669414185 40.74355812582932, -73.84698530450106 40.74358426596836, -73.84697771498061 40.74356370178606, -73.84697018942923 40.743543125081096, -73.8469481647898 40.74348180272608, -73.8469481353784 40.74348172074076, -73.84649610328329 40.74222314692711, -73.84647782260423 40.74215335747696, -73.84646581642009 40.742082784841095, -73.84646014079023 40.74201175508014, -73.84646082098627 40.74194059601385, -73.84646785504646 40.74186963632506, -73.84648235911014 40.74179438846606, -73.84650400603687 40.74172013888282, -73.84653268242154 40.741647280942345, -73.84656823462745 40.741576198951996, -73.84661047826245 40.74150726637082, -73.84665918870165 40.74144084849888, -73.84668927781536 40.74140479167572, -73.84674190004786 40.74134859524372, -73.84747905770716 40.74056136505785, -73.84773379805586 40.740302637534214, -73.84775771624783 40.7403102559393, -73.84788526701628 40.740350883429905, -73.84788532616969 40.740350902418726, -73.84809800183552 40.74041864202357, -73.84950467239403 40.74086667182885, -73.84960631923227 40.74089320661769, -73.84973865075096 40.740939036027015, -73.84982041032974 40.74097114313857, -73.84989163226417 40.741010346872464, -73.84996866056557 40.741067335963635, -73.85003049187566 40.741124305214555, -73.85007476505102 40.7411840224405, -73.85301450228775 40.74678772712593, -73.85335678632543 40.747440124622976, -73.85356802311894 40.747784209846685, -73.85375662231493 40.74807449211956, -73.85402914434567 40.748387606562375, -73.85429697428657 40.74876666036401, -73.85379548814471 40.74891623313465, -73.85351798937324 40.74899899739242, -73.85351951940969 40.749001601804494, -73.85306784469287 40.749139801000254, -73.85286797928666 40.74920533423511, -73.8527734495579 40.74923323093116, -73.85264284436396 40.749279152784005, -73.8523592017348 40.749372154162685, -73.85215042779153 40.749439986335155, -73.85100124683572 40.749845957156914, -73.8509965272221 40.74983844532343)), ((-73.84890892474098 40.753765704421035, -73.84954329481133 40.75357958143043, -73.84954227108756 40.753580371638776, -73.85171330103041 40.75293747306992, -73.85171509926005 40.75294302070614, -73.85171592016782 40.75294555218722, -73.85174922094188 40.75304830866512, -73.85177310724187 40.753122013472606, -73.85182379103004 40.75330812609608, -73.85186527829644 40.753495551511016, -73.85189751271241 40.753684025806535, -73.85192044860274 40.75387328598356, -73.85193405450676 40.754063066357894, -73.85193830962221 40.75425310035617, -73.85193368008116 40.7544323609738, -73.85192059476148 40.754611380187384, -73.85189906950417 40.75478992658428, -73.85186913198883 40.754967770566275, -73.85183082055204 40.75514468344761, -73.85178418655816 40.7553204365575, -73.85172928728849 40.75549480393257, -73.8516661954193 40.755667560528195, -73.85164940390574 40.755681140155296, -73.85163433234358 40.75569450047056, -73.85157769349503 40.755744709090436, -73.85151239863752 40.75581215752793, -73.85145388372447 40.75588311313877, -73.85140247175308 40.75595718192795, -73.85135844786663 40.75603395364183, -73.85132205579748 40.756113003564344, -73.85129349668412 40.75619389161459, -73.8512729290485 40.75627617225225, -73.85126046881152 40.756359387273406, -73.85125618216044 40.75644307750782, -73.85125910027725 40.75651564498381, -73.85126816754763 40.756587917828206, -73.85127113037208 40.756665398522955, -73.85126670673785 40.75675527685706, -73.85125386190614 40.75684468685916, -73.85123265844476 40.756933171150024, -73.85120721400199 40.757004246772325, -73.85117763506159 40.75707439132659, -73.85114397876663 40.75714346530496, -73.85110889370428 40.75720693987888, -73.8510515603653 40.75729741077225, -73.85098711470634 40.757385070060515, -73.85091579427615 40.75746959565811, -73.85083786029256 40.75755067451444, -73.85082900661659 40.757559265586615, -73.85072136596308 40.75759531209556, -73.85063597012545 40.75762390864377, -73.85046666083208 40.75768060549434, -73.85030985324997 40.757733115678896, -73.85018720464173 40.75777418682209, -73.84993720196506 40.75785790387616, -73.8497922888189 40.75790643060175, -73.84968881045353 40.757941081285445, -73.84958730406062 40.75797507167834, -73.84939692759215 40.75804746318683, -73.84928992976405 40.75808814950679, -73.849156219336 40.75813899268192, -73.84894575508278 40.75821902044721, -73.84877533017654 40.75828382420773, -73.84862493853025 40.75834100964471, -73.84842768059637 40.75841601458274, -73.84826342949422 40.75848753447964, -73.84809642896796 40.75856390604618, -73.84793544090361 40.758637527956964, -73.84785321235327 40.75867513168401, -73.8476480448248 40.7587689571251, -73.84732982560378 40.75891447997599, -73.84720094990905 40.75898951398198, -73.84702236425268 40.759081577051724, -73.84690547349692 40.75914183492672, -73.84674649575415 40.75922378842725, -73.84664104037229 40.7592781512237, -73.84657767173341 40.759310817355384, -73.84645010547437 40.759376577950505, -73.8463450043704 40.75944194693342, -73.84625629327891 40.75949712235354, -73.8461634785477 40.759554850563084, -73.84607334872241 40.75961090734377, -73.84601294780208 40.75964847408149, -73.84574818803345 40.759742637898896, -73.84568854592493 40.759763850490685, -73.84560717727291 40.759608664412944, -73.84344041878347 40.75547593573792, -73.84340726997569 40.7554127057277, -73.84342713391521 40.7553738623568, -73.84361066245212 40.75532002723222, -73.84890892474098 40.753765704421035)), ((-73.8515730140984 40.758400637547744, -73.85160560899854 40.75839876236206, -73.8517198438487 40.75841297086152, -73.85183220042548 40.75843414134642, -73.85194194364905 40.75846213419944, -73.85204835984663 40.758496767509655, -73.85215075557117 40.75853781526962, -73.8522104608576 40.75856943300902, -73.85227270710746 40.75859807870355, -73.85234392801983 40.75862606048816, -73.85241756757839 40.758650153339715, -73.85249325892238 40.758670235215476, -73.85253567633278 40.75867899201194, -73.852570624481 40.75868620657263, -73.85255745000683 40.75985177770627, -73.85253170781012 40.762129168067034, -73.84970945777357 40.762806042023435, -73.8463593683261 40.76360940178232, -73.84449821292054 40.76431503438038, -73.84365867967347 40.764661643684136, -73.84343707198683 40.76475313487181, -73.84295574367057 40.764951849882024, -73.84291054782668 40.764970507973686, -73.84221752698507 40.763596849198656, -73.8426837033659 40.7634754096564, -73.84302081957637 40.76335718915336, -73.84338083662401 40.76320404116806, -73.84376739958249 40.763016802494754, -73.84387495413759 40.76294957516479, -73.84406300002715 40.76283203739566, -73.8442385602681 40.76268046133186, -73.84435229726317 40.762535665144235, -73.8444672513183 40.76238931891352, -73.84483987967626 40.76196735358724, -73.84502813926433 40.76177589649844, -73.84513363177724 40.76166861251267, -73.84522319283393 40.761577528738904, -73.84525851152664 40.76154841870474, -73.84546033949033 40.76138207082113, -73.8456648303003 40.761213527113185, -73.84608560159838 40.760909445287304, -73.84819083820894 40.75953084900804, -73.84875255754075 40.759212439496864, -73.84940685923085 40.758908371797325, -73.84949424226765 40.75887811642471, -73.85013993606516 40.758654556570015, -73.85028283706485 40.75861879867443, -73.85046503590742 40.758570057692815, -73.85064969328619 40.75852700000336, -73.85083143046748 40.75849062899749, -73.85101492086352 40.758459762965586, -73.851199875451 40.758434450153295, -73.85138600404024 40.75841473160246, -73.8515730140984 40.758400637547744)), ((-73.84947674348018 40.752289270687555, -73.8493855828036 40.75227630129166, -73.84638845558273 40.7518028226147, -73.84651503804754 40.75175742119001, -73.84651498951465 40.7517574139213, -73.84677806616483 40.751663079443375, -73.85014924338218 40.75045416301092, -73.85010985421131 40.750391358113255, -73.85010014497513 40.75037587746541, -73.85025050350939 40.75032275040577, -73.8502657598896 40.75031735909123, -73.8503340639716 40.75029322511832, -73.85038570973197 40.75027497679602, -73.8504719352524 40.750244510238055, -73.8504949797488 40.75023636714738, -73.8506563572395 40.75052908825796, -73.85067085230567 40.750557478430714, -73.85067148057065 40.75055664537552, -73.85093220969985 40.75103514429659, -73.85096506112592 40.75109590169888, -73.8509659974472 40.751097633685035, -73.8510221120064 40.75120140957586, -73.85120171159988 40.75153355602942, -73.85120173046546 40.751533592074075, -73.8513741028998 40.75185236988275, -73.85147371996425 40.752036595326636, -73.85169556163304 40.752446851366486, -73.85174819717014 40.75254419188126, -73.85159825011407 40.75254485067643, -73.85128300331185 40.75254623611038, -73.84947674348018 40.752289270687555), (-73.8494097577752 40.75218541140791, -73.84651906765085 40.751756915071255, -73.84641936008299 40.75179269619824, -73.84639253372266 40.75180232376914, -73.84938966095008 40.75227580234003, -73.8494097577752 40.75218541140791)), ((-73.82851334838972 40.724160385749556, -73.82865434940709 40.72428739661198, -73.82879918537306 40.72441188526689, -73.82897391906495 40.724554653495346, -73.82915369464038 40.72469375215024, -73.82933837979705 40.72482907745326, -73.82952783748718 40.72496052832091, -73.82953140817551 40.72496300641021, -73.82971085769607 40.72508513897832, -73.82989332935759 40.72520465254076, -73.83007875579611 40.725321503759325, -73.83022453876367 40.725410257025935, -73.8304429802986 40.72554984829867, -73.83065606410831 40.7256941535515, -73.83086361295163 40.72584305458654, -73.83106545788142 40.72599642781568, -73.83126143113577 40.72615414695121, -73.83145137087482 40.72631608211243, -73.83153886141967 40.726397263308705, -73.83168631027402 40.726548001087295, -73.83184337900583 40.726730900048906, -73.83198576892622 40.72690419684095, -73.83213701314948 40.72712750810675, -73.83228665726536 40.72739062660193, -73.83231871223691 40.72744698580831, -73.83251802820443 40.727803072968314, -73.83246326371643 40.72781579495513, -73.83236271615102 40.72782639710699, -73.83229429733727 40.72782788777902, -73.83222191106852 40.72782406592167, -73.83211425725236 40.72781555047182, -73.83201017162713 40.72779887249757, -73.8319411048454 40.7277817853848, -73.8318832629414 40.72776481637748, -73.83182663867026 40.72774004619649, -73.83175434448584 40.727702143461386, -73.83169452799221 40.727666068045046, -73.83164882755871 40.72762942160167, -73.83155017727658 40.727519346610165, -73.83143390898535 40.72733488969, -73.83122255967379 40.72700028447247, -73.83097631319241 40.726648603474416, -73.83078927330632 40.72643554260653, -73.83054969997286 40.72620772400331, -73.83035806162562 40.72605654414751, -73.8301258567126 40.72591666136689, -73.82985614511291 40.72577743680188, -73.82957716348903 40.72567131506332, -73.82936150324562 40.725607758193775, -73.82917622625841 40.72556392576168, -73.82899062970246 40.72552571444496, -73.82882644558491 40.72548535182492, -73.82871048072904 40.72544964701479, -73.82854141824912 40.7253907379144, -73.82838635762904 40.72531944039612, -73.82822530026279 40.725235524769225, -73.82807323653226 40.72513198130331, -73.82792211321596 40.725004556591685, -73.82814582978536 40.72484454845774, -73.8282281756691 40.72476425031108, -73.82827899172555 40.724709889326824, -73.82830156409979 40.7246795595634, -73.8283323923593 40.72463686188117, -73.8283509376271 40.72460847120711, -73.82837210157547 40.72457347108139, -73.8283942165022 40.72452953299732, -73.82842049956211 40.72447252119932, -73.8284599567238 40.72436902844049, -73.82849045162544 40.72426811668917, -73.82851334838972 40.724160385749556)), ((-73.83699662406366 40.74189296180568, -73.83681415025946 40.74118442546098, -73.83680916104218 40.74114094273385, -73.83680299696603 40.74114112040468, -73.8366980606292 40.740733646364056, -73.83668442975386 40.74055789365742, -73.83662367537667 40.74019599657387, -73.83658447817228 40.739691387671265, -73.8362354409964 40.73924964162055, -73.83575191140179 40.73855734323258, -73.8357485452935 40.73853872310944, -73.83564798886549 40.738148208079124, -73.83560313376111 40.73781122398525, -73.83541522777269 40.737421609662526, -73.83536461706842 40.73688054381463, -73.83542923844453 40.73634769228582, -73.83589701193537 40.73526074712485, -73.83579034193004 40.73493250976132, -73.83575213446092 40.734814944189786, -73.83583936173453 40.73469442010768, -73.83597218401299 40.734510897330004, -73.83587023771005 40.73418914860114, -73.83587305984118 40.73419111573427, -73.8358674184464 40.73418025025, -73.83566838831763 40.73379695806189, -73.8355737254212 40.733614653441165, -73.83552773083208 40.73357140561949, -73.8354984224958 40.73354384778321, -73.8353910678577 40.733442903932016, -73.8353550240036 40.73340901215089, -73.8350146306559 40.73311210509196, -73.83466092109947 40.732488982634926, -73.83462023082828 40.73241729855541, -73.83458605969598 40.73235709902191, -73.83456982866633 40.73232850433018, -73.83456480531102 40.7323196550076, -73.8346496088987 40.7320228336924, -73.83464896556967 40.73199728710514, -73.83464322156358 40.731972113208606, -73.83463251038907 40.73194789572418, -73.83461708160927 40.73192520052906, -73.83459729379207 40.731904554034124, -73.83457216789581 40.73188550097376, -73.83456707014751 40.73188231214889, -73.83456703729672 40.73188219323441, -73.8345344945571 40.73186475132842, -73.83449884401851 40.73185127619516, -73.83446091592053 40.73184207880064, -73.83442159045653 40.731837374729665, -73.83438178241455 40.731837272457156, -73.83434241513248 40.73184177421149, -73.8343044062939 40.731850775953895, -73.83429770201475 40.731852884306, -73.8337372222665 40.73073146111889, -73.83368864645689 40.73064420088837, -73.83371434521058 40.730662524659415, -73.83377979154459 40.730709189026356, -73.83387028925846 40.73077371509627, -73.8339812907452 40.730860741984074, -73.83404888241175 40.730915976741365, -73.8341179458018 40.73097589172795, -73.8341668381039 40.73103095809569, -73.83423889909513 40.73111083262637, -73.83429965494227 40.73118987047894, -73.83437750217847 40.73131085522223, -73.83442124403766 40.731395100498275, -73.83481709239602 40.73215747875885, -73.8354324448548 40.73334257245251, -73.83553392440534 40.733499521377375, -73.83562922415523 40.73365869645288, -73.83571825681389 40.73381995709022, -73.8358009445627 40.73398316091245, -73.83580922663275 40.733996593015675, -73.83581274129405 40.734007686901855, -73.8358984676787 40.73419713582994, -73.83597565867632 40.73438869683344, -73.83602053723563 40.73449325407157, -73.83602777630296 40.73451011651452, -73.83605490390217 40.73458417431834, -73.83608510574201 40.73468287172901, -73.83612182535549 40.734804403619414, -73.83614414018473 40.73491244157796, -73.83616085760316 40.73506248213363, -73.83617698573516 40.735222074449254, -73.83617877416397 40.73536715626387, -73.83616739222798 40.73546651668683, -73.83614730914682 40.7355869825727, -73.83611981774729 40.73572994704285, -73.83608707144458 40.73585785020961, -73.83602961322389 40.73602806463262, -73.83596796260021 40.736187240912344, -73.83580511857829 40.73664088623387, -73.83576262124058 40.73676190900746, -73.83570723786791 40.73693310776453, -73.83568188918068 40.7370409426963, -73.83565973353492 40.737179414798696, -73.83565516448655 40.73730727517866, -73.83565471740836 40.73741029639101, -73.8356626392647 40.73752673632482, -73.8356772497559 40.73763227973411, -73.83570962195222 40.73779841312076, -73.83575660166053 40.737943700731506, -73.83580391790011 40.73805435792228, -73.8358723602956 40.73818786230047, -73.83593334024664 40.738298532602485, -73.83603188995379 40.738478143506306, -73.83652264961735 40.73933935043723, -73.83658145313989 40.739455391522704, -73.83661468819477 40.73952585306897, -73.83667384073823 40.73965709518847, -73.836683451713 40.7396769443266, -73.83674549307926 40.73995564972322, -73.83704482173816 40.74131751046187, -73.83702029870317 40.74189097727087, -73.83699662406366 40.74189296180568)), ((-73.82810624022605 40.717146361070355, -73.82811100864537 40.71714360632023, -73.82903749921746 40.7174356557658, -73.82910872794389 40.71745810771615, -73.82910791288329 40.71746026323193, -73.82907093117745 40.71755808945446, -73.8270661441651 40.718765297683525, -73.8265833629861 40.72032988658152, -73.82688360574896 40.71785274018021, -73.82810624022605 40.717146361070355)), ((-73.82735559465954 40.72453975722105, -73.8273115516963 40.72444990573159, -73.82685754142827 40.722968308303365, -73.8265903853553 40.722185762764795, -73.82645976779233 40.72170165102803, -73.82641725654388 40.7215234081775, -73.82638311915727 40.721380273562104, -73.8276731669469 40.72334958454267, -73.82786622132083 40.72369229534655, -73.82799524709813 40.723943773961274, -73.8280011698524 40.723955317454156, -73.82802639860788 40.72402115187367, -73.82803458675409 40.724053841845226, -73.828037787888 40.724080232497926, -73.82803942441657 40.72412490478809, -73.82803872782814 40.724154955599246, -73.828035941685 40.72417828637832, -73.82803249260895 40.724231925564446, -73.82802432256705 40.72427660932163, -73.82800535013588 40.7243434547251, -73.82798134338347 40.72440762979301, -73.82797380850253 40.72442128919193, -73.82797522307729 40.72442032955975, -73.82793671795379 40.724489904931694, -73.82789104048608 40.72455692292453, -73.82783848176214 40.724620954421354, -73.82777937779477 40.72468159288458, -73.82771410479437 40.72473845164733, -73.82764307679032 40.72479116841323, -73.82756674917975 40.72483940616212, -73.82750868583612 40.72477084074283, -73.82745524797751 40.72470013180512, -73.82740657124567 40.7246274605614, -73.82735559465954 40.72453975722105)), ((-73.83256258123899 40.72810534544944, -73.83269110089886 40.72807947509378, -73.83354841889708 40.72972252609914, -73.83394021551338 40.73045590439713, -73.83386528680631 40.73041517881061, -73.83379234250813 40.730372419085555, -73.83377498228329 40.73036261808913, -73.83373836927257 40.730338644981444, -73.83370519185787 40.73031692089467, -73.8336473414994 40.73027904292688, -73.83361480528391 40.73025370869466, -73.83350974652193 40.73017190489065, -73.83342704591105 40.73011458758705, -73.83334989857329 40.73005295130944, -73.8332786931814 40.729987308208024, -73.83321378758315 40.72991798749826, -73.83315550997341 40.72984533996475, -73.83310415299646 40.72976972984769, -73.83305997491857 40.72969153934703, -73.83296296109376 40.729539913034195, -73.83287212525235 40.72938608665122, -73.83278755340253 40.72923020802126, -73.83270932563339 40.729072424057506, -73.83260380517228 40.72892019343241, -73.83249044534935 40.72877125977757, -73.83236942316762 40.72862585836082, -73.83224092748412 40.72848421546151, -73.83210516254768 40.728346553778636, -73.83209076955033 40.72832264135107, -73.83208202796227 40.72829719548945, -73.832079200999 40.72827098291322, -73.83208237425872 40.72824479349531, -73.83209145223314 40.728219415942974, -73.8321061607352 40.728195614388355, -73.83210566053017 40.72819494277876, -73.83210694692976 40.728194593455385, -73.83212395045041 40.72817604071767, -73.8321443932134 40.72815961999662, -73.83216782093474 40.72814569623536, -73.83230042850666 40.728138521466214, -73.83243218775989 40.728125053443854, -73.83256258123899 40.72810534544944)), ((-73.83864585153214 40.75807745518508, -73.83850493357093 40.75733471087158, -73.83850654217244 40.757331123707594, -73.83865475372521 40.758086669028565, -73.83733246256163 40.760876740037666, -73.83728119728713 40.76099376224765, -73.83725072977845 40.761084457804415, -73.83723571277531 40.76114068760091, -73.83721946050485 40.7612196975523, -73.83721145085221 40.76127453065515, -73.83720340421826 40.76138131389806, -73.83720299538045 40.76142793251758, -73.83720586168747 40.76149710983866, -73.83723872860358 40.762239626150894, -73.83726854798157 40.762380013022096, -73.83725696300029 40.76238142395926, -73.83722641419257 40.76223760782843, -73.83719354859906 40.76149509151414, -73.83719071105439 40.76142820331969, -73.83719258765967 40.761345082961256, -73.83720161930353 40.761253462030375, -73.83720706814786 40.761218151882765, -73.83721604885152 40.76117110322578, -73.83723206729537 40.76110490264277, -73.83724982261693 40.76104567712922, -73.83727826092657 40.76096777940008, -73.83732014839973 40.76087472172481, -73.83864585153214 40.75807745518508)), ((-73.83895548456542 40.75718693633922, -73.83893610663009 40.75708764190668, -73.83893946018193 40.75708625351178, -73.83896249521072 40.757186946139846, -73.83896197196606 40.757196175600555, -73.83899236425245 40.75733772908414, -73.83902794009343 40.75750035084632, -73.83905113911933 40.757600431334936, -73.83906099384107 40.757657020324054, -73.83908510603327 40.75777131297187, -73.83910753284081 40.75788670367756, -73.83911452237281 40.757925883669174, -73.83912381721295 40.75797799094807, -73.83913764884934 40.7580605335741, -73.83915310355808 40.758167833385194, -73.83916248789544 40.75826137398448, -73.83916893292661 40.75835982364102, -73.839170446394 40.758422608159094, -73.83917262353543 40.75851461953756, -73.8391745368327 40.75856484074749, -73.83917486582902 40.75859975924165, -73.83917101025719 40.75868788731674, -73.83916166641164 40.75878353325963, -73.83915328298036 40.75886005198604, -73.83914360018862 40.75893861574754, -73.83913822854726 40.758975315585865, -73.83913515198826 40.75899633270921, -73.83912631182555 40.75905795371777, -73.83910415405369 40.75922371318572, -73.8390841661011 40.759374135552235, -73.83906905222828 40.759486944271615, -73.83904363229111 40.759679814303766, -73.839025509349 40.759822869513364, -73.83901915782623 40.759878331820076, -73.83901211487199 40.75995821038505, -73.83900836235286 40.76003444919856, -73.83900644373836 40.76009964496531, -73.83900592266939 40.760143244944715, -73.83900538465058 40.760252652989294, -73.83900908846248 40.760373453860105, -73.8390151878131 40.760463999269575, -73.83903004507094 40.76062852718788, -73.83903903217069 40.760710094079364, -73.83904656298141 40.76076013942068, -73.83905762910591 40.76081991696674, -73.83907668705528 40.76091247599109, -73.8391104873126 40.761051588349886, -73.83915000688388 40.76117935510134, -73.83919528354993 40.76130465978466, -73.83925150228816 40.76145103984959, -73.83931285709141 40.76160402865669, -73.83935723242614 40.761698672484506, -73.83941849594811 40.761823402325184, -73.83941495181904 40.761823672939876, -73.83939525089794 40.76178675625122, -73.83936930876267 40.76173653578724, -73.83935171533575 40.761701356403556, -73.8393252230845 40.761646500257655, -73.83928782659663 40.76156477760709, -73.83925191700503 40.76147745226876, -73.83922182034276 40.76139983798274, -73.83919427665015 40.76133124762001, -73.83911772413641 40.76111061311952, -73.83908881556806 40.76100116936553, -73.8390570278953 40.76086091616823, -73.83903976817489 40.76076083142153, -73.83902614575751 40.76066602241531, -73.83900168844367 40.76037417833165, -73.83899807271821 40.760163537686644, -73.83900141134637 40.76003315986521, -73.8390091140958 40.75990521050176, -73.8390174153387 40.75982215040524, -73.83903905864281 40.75965431548272, -73.83907674458551 40.759367628032706, -73.83912970955983 40.75898094085944, -73.8391368464371 40.75893219291091, -73.8391443983129 40.7588626348398, -73.83915125013455 40.75878823016547, -73.83916077050965 40.75870383989879, -73.83916422461542 40.75864563599054, -73.83916599019224 40.75860155956968, -73.83916344569487 40.75847875036125, -73.83916151166426 40.758383171515185, -73.8391523225118 40.75824018258216, -73.83912966707459 40.75805805233893, -73.83911199361955 40.75795202814332, -73.83909268136247 40.7578474172504, -73.83906874300081 40.757730761919355, -73.83904113115426 40.75759109350755, -73.83898671749552 40.757340798222515, -73.83895508658277 40.75719578596123, -73.83895548456542 40.75718693633922)), ((-73.83951443970378 40.75462908867242, -73.83975113203614 40.754126439155065, -73.83932291731183 40.754267241147566, -73.838800142174 40.75445755960807, -73.83832682335598 40.75464183607903, -73.83832525664148 40.75463940971555, -73.83879871739366 40.754455197385596, -73.83932091683897 40.754264947467504, -73.83975747840651 40.754122356080124, -73.83951611558716 40.754633406236174, -73.8388847714109 40.75589347309321, -73.839023605364 40.756664545022915, -73.83902021876621 40.756665896453384, -73.83888246982819 40.75589276657835, -73.83951443970378 40.75462908867242)), ((-73.8386478322032 40.75678949679249, -73.83859894440218 40.75668609967432, -73.83859550251186 40.75666970202918, -73.83866120047001 40.75680925101918, -73.83865781266887 40.7568106042383, -73.8386478322032 40.75678949679249)), ((-73.8285267396753 40.72410584013345, -73.82851334838972 40.724160385749556, -73.82852521011134 40.72410457353812, -73.8285267396753 40.72410584013345)))",Q099,6614,Q099,Q-15,Q-15,Q-15,Q-15,"Grand Central Pkwy., Whitestone Exwy. bet. 111 St. and College Point Blvd., Park Drive E.","403, 404, 406, 407, 408","19,20,21,24",110,"11354, 11355, 11367, 11368",Q,897.69,False,Flushing Meadows Corona Park,No,100000203,PARK,20090423000000.00000,19340803000000.00000,,DPR,Part,Flushing Meadows Corona Park,Y,Flushing Meadows Corona Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/Q099/,Yes,"35, 25, 40","13, 15, 16","6, 14",{22218E41-8FA1-4666-8059-F85E4D7630DF} +"MULTIPOLYGON (((-73.94724522871344 40.796493363504155, -73.9469378211921 40.7963632901788, -73.94698084398958 40.796304804500835, -73.94704756382791 40.79633303612487, -73.94728825013924 40.79643487861257, -73.94724522871344 40.796493363504155)))",M384,5021,M384,M-11,M-11,M-11,M-11,Madison Ave. bet. E. 110 St. and E. 111 St.,111,8,23,10029,M,0.054,False,Pueblo Unido Garden,No,100004744,PARK,20100106000000.00000,20090320000000.00000,1659 MADISON AVENUE,DPR,False,Pueble Unido Garden,N,Pueblo Unido Garden,,Garden,http://www.nycgovparks.org/parks/M384/,No,68,30,13,{B4E85D0B-8F16-4CEF-B32C-E0991ADCBADA} +"MULTIPOLYGON (((-73.89906362004717 40.605574375309914, -73.89908445547779 40.60543361944504, -73.8991059620599 40.605436639767724, -73.89912436932387 40.60543740425918, -73.89921508589066 40.60549599978884, -73.89925408840973 40.605521191877195, -73.89995379094589 40.6059731358748, -73.90018929665175 40.607877750656115, -73.9002438528513 40.60831895210532, -73.90048852403497 40.61029755974639, -73.90256236408794 40.61211936582941, -73.90237049201912 40.61224867373239, -73.90041340058531 40.6135675684344, -73.89828650713868 40.61500079620117, -73.89817752249375 40.61741336228025, -73.90169440036291 40.62058275131546, -73.89856476327583 40.62263295356652, -73.89851664062262 40.622611349926565, -73.89790222623292 40.62233551759258, -73.89775262179664 40.622268354362355, -73.8976035337705 40.62220142192998, -73.89749722623898 40.62215369594283, -73.89767073212775 40.621862103361494, -73.89781580066526 40.621618300196545, -73.89790688666942 40.621465217823435, -73.89801484828948 40.62128377493336, -73.89811877488134 40.62110911108696, -73.89819649671333 40.62097848913378, -73.89826824423157 40.62085790625085, -73.89831572584356 40.62077810446668, -73.89842122195705 40.62060080139974, -73.89869108296601 40.62014724988191, -73.89870068004184 40.62013112010146, -73.89910394616211 40.61945334365689, -73.89875425209127 40.618904134355006, -73.89781209909899 40.61742439269189, -73.89782507711354 40.61734410474273, -73.89783388535628 40.6171877199342, -73.89784451929282 40.61699894499226, -73.89785447809676 40.6167478110428, -73.8978606349782 40.616592572932035, -73.89786884213882 40.616385589078384, -73.89787656736877 40.616190789747, -73.89788029292214 40.616096842557084, -73.89787050206957 40.61596722360965, -73.89786173054664 40.61585108547102, -73.89784418641062 40.61561880918651, -73.89783151513065 40.61545105418653, -73.89781786984466 40.61527039474375, -73.89780422463254 40.615089735296024, -73.89779344611176 40.61494703087238, -73.89778450226306 40.61482861964583, -73.89777085604987 40.61464796018492, -73.89775812839646 40.614479446870526, -73.89774540080599 40.61431093445237, -73.8977355977573 40.61418113355306, -73.89772487627111 40.61403918739941, -73.89770796081895 40.61381522792686, -73.8976992980487 40.61353596304941, -73.89769528483791 40.61340656081693, -73.89769128060476 40.61327747917626, -73.89768506594496 40.61307715529407, -73.89768729962384 40.612952822249085, -73.89769078396029 40.612758798938536, -73.89769450460852 40.61255166874026, -73.89769820329751 40.61234574431663, -73.89770944735386 40.61212407737784, -73.89771736616527 40.61196795825801, -73.8977265472636 40.611786950735585, -73.89773638384621 40.611593014099626, -73.89774364700058 40.61144982407918, -73.89775639555513 40.61119846914852, -73.89776470096315 40.611086056284364, -73.8977742383177 40.61095697765465, -73.89778515243678 40.61080925043795, -73.89780919461181 40.610588865472174, -73.89783256003022 40.61042453288393, -73.89787257279424 40.610143111204025, -73.89791052276777 40.609966346336726, -73.89795454796774 40.60976127803784, -73.89798218496027 40.609649078617075, -73.89801300002038 40.609523980229355, -73.89804997746658 40.60937386269097, -73.89808194201402 40.60924409699475, -73.8981323949535 40.609039272951435, -73.89823405931008 40.60871590267991, -73.89831630471774 40.60848229088297, -73.89835260553835 40.608379180789825, -73.89840507532766 40.608230143939785, -73.89844251274471 40.60812380734909, -73.89847228743855 40.60803923229889, -73.89851315186473 40.607923157762194, -73.89855145093944 40.60778841582225, -73.89858888622926 40.60765671597021, -73.89863914145326 40.60747990854674, -73.89869064134102 40.607298725657515, -73.89873635107959 40.607137908354474, -73.89877648694349 40.60699670129773, -73.89884433095125 40.606727225709925, -73.89890857857844 40.60647202469311, -73.89893142257664 40.606348113103365, -73.89896583077442 40.60616147678647, -73.89900595715164 40.605943819784564, -73.89903901232108 40.60574060363304, -73.89906362004717 40.605574375309914)))",B166D,6557,B166D,B-18,B-18,B-18,B-18,"Ave Y., Bergen Ave. bet. Ave. V and Belt Pkwy.",318,46,63,11234,B,77.181,False,McGuire Fields,Yes,100004872,PARK,20100106000000.00000,19490616000000.00000,,DPR,True,McGuire Fields,Y,McGuire Fields,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B166D/,Yes,59,19,8,{9EB40498-3F94-4FFE-928E-EF94C25A5A76} +"MULTIPOLYGON (((-73.95680523104001 40.58548608224355, -73.95752429999787 40.58540519783103, -73.95777086446289 40.5867202152365, -73.95706800439102 40.58679927828148, -73.95680523104001 40.58548608224355)))",B166B,6106,B166B,B-15,B-15,B-15,B-15,"Belt Pkwy., Williams Court bet. E. 12 St. and Homecrest Ave",315,48,61,11235,B,2.372,False,Homecrest Playground,Yes,100004475,PARK,20100106000000.00000,19400625000000.00000,,DPR,False,Homecrest Playground,Y,Homecrest Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B166B/,No,45,23,9,{7EDABBF7-7C98-4D49-A81D-E1F128D2C067} +"MULTIPOLYGON (((-73.93340049117138 40.67509833205734, -73.93355879677411 40.67351157348018, -73.93611098198082 40.67364977309211, -73.93595591355617 40.67523916192382, -73.93510671514414 40.67519236899548, -73.9351408306793 40.674837732954224, -73.93505093901575 40.67483277893939, -73.93501682300601 40.675187414053696, -73.93340049117138 40.67509833205734)))",B245,5498,B245,B-08,B-08,B-08,B-08,"Troy Ave., Bergen St., Prospect Pl., Schenectady Ave.",308,36,77,11213,B,9.339,False,St. John's Park,Yes,100004071,PARK,20100106000000.00000,19500315000000.00000,119 TROY AVENUE,DPR,True,St. John's Park,Y,St. John's Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B245/,No,56,25,9,{A168DC36-25D9-4480-8304-6FE3EF78070C} +"MULTIPOLYGON (((-73.88989700237092 40.66706529016552, -73.89060969734184 40.66696011796084, -73.89095736366379 40.66830938644432, -73.89024713309334 40.66841419483917, -73.88989700237092 40.66706529016552)))",B056,5047,B056,B-05,B-05,B-05,B-05,"Dumont Ave., Blake Ave. bet. Bradford St. and Miller Ave.",305,42,75,11207,B,2.29,False,Martin Luther King Jr. Playground,Yes,100004451,PARK,20100106000000.00000,18960622000000.00000,757 DUMONT AVENUE,DPR,False,Martin Luther King Jr. Playground,Y,Martin Luther King Jr. Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B056/,No,60,19,8,{AC84F1E9-720B-4A10-8B19-42C3196A1981} +"MULTIPOLYGON (((-73.93611806830104 40.78894223346893, -73.9362232598668 40.78879825929652, -73.93714924439142 40.789189073914535, -73.93709679135074 40.789355306583225, -73.93611806830104 40.78894223346893)))",M290,4596,M290,M-15,M-15,M-15,M-15,FDR Dr. at E. 107 St.,111,8,23,10029,M,0.356,False,Pier 107 CVII,No,100004748,PARK,20100106000000.00000,19940303000000.00000,500 - 501 E. 107 Street,DPR,False,Pier 107 CVII,N,Pier 107 CVII,Neighborhood Park,Waterfront Facility,http://www.nycgovparks.org/parks/M290/,Yes,68,29,13,{FDC1A534-D379-4FE7-9298-E628CED5B2A4} +"MULTIPOLYGON (((-73.960276674296 40.62948162876313, -73.96027697572262 40.62948158654285, -73.9602831736776 40.62948205425268, -73.96028349393313 40.62948215071891, -73.96028807086408 40.62948353910014, -73.9602934836041 40.629486647762306, -73.96029561310615 40.62948931043378, -73.96029759497233 40.62949178844771, -73.96030028717408 40.62950027227238, -73.96030048990936 40.62950121878852, -73.96030227327788 40.629509536603706, -73.96031469814834 40.62957309056398, -73.96031817673466 40.6295908914357, -73.96032351835709 40.629618210542255, -73.96032352896377 40.62961826277605, -73.96033665972541 40.62968543346361, -73.96035743827326 40.62979172085587, -73.96040250466619 40.63002453331043, -73.96040271323908 40.630025606801595, -73.96040157264468 40.630031561544854, -73.96039832063808 40.63003620170277, -73.96039789358342 40.630036810306926, -73.96039270859833 40.63004021068389, -73.96038612623747 40.63004208960164, -73.96037959689734 40.63004226025157, -73.96037884171973 40.63004208258897, -73.9603746510186 40.63004109237425, -73.9603726951215 40.63004063063411, -73.96036639882796 40.63003648877531, -73.96036014013141 40.63001481921578, -73.96035902995317 40.63000935898271, -73.96034392002775 40.629934991565335, -73.96031553877528 40.62979530307698, -73.96027820915936 40.62961157067524, -73.96027815848262 40.629611322114336, -73.96025593571724 40.629503110696426, -73.96025587678945 40.62950282431081, -73.96025524248618 40.62949816120081, -73.96025722734979 40.62949163402004, -73.96026276945814 40.629485904128096, -73.96026976747903 40.62948261244563, -73.960276674296 40.62948162876313)))",B180,6360,B180,B-14,B-14,B-14,B-14,"E. 17 St., South of Ave. H",314,45,70,11230,B,0.02,False,Flatbush Mall,Yes,100004474,PARK,20100106000000.00000,,,DPR,False,Flatbush Mall,N,Flatbush Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/B180/,No,42,17,9,{99C0086C-1D4F-49D6-A65E-A8FE943654F4} +"MULTIPOLYGON (((-73.74195624852997 40.688726594509504, -73.74218797174103 40.68828630886365, -73.7439312121745 40.688811986033734, -73.74318244949599 40.690234723973695, -73.74296049987444 40.69016757757581, -73.74195624852997 40.688726594509504)))",Q339,5909,Q339,Q-13,Q-13,Q-13,Q-13,"Francis Lewis Blvd., 121 Ave. bet. 219 St. and 222 St.",413,27,105,11411,Q,4.635,False,Cambria Playground/Cabbell Park,Yes,100000274,PARK,20090423000000.00000,19501019000000.00000,,DPR,True,Cambria Playground,Y,Cambria Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q339/,No,33,14,5,{7564D0D8-033F-4E48-97F0-69A59BFF1141} +"MULTIPOLYGON (((-73.91936272445108 40.66353755913383, -73.91959389955834 40.66350296551812, -73.91959581117563 40.66351915904146, -73.91957782490924 40.663599070008715, -73.91955674377293 40.66369273689901, -73.91911594461887 40.66375295331768, -73.91909347212138 40.663665235313644, -73.91907191185938 40.66358107498623, -73.91936272445108 40.66353755913383)))",B528,5301,B528,B-16,B-16,B-16,B-16,Howard Ave. to Tapscott St. between Dumont Ave. and Blake Ave.,316,41,73,11212,B,0.219,False,Howard Av Block Association,No,100003688,PARK,20100106000000.00000,20021120000000.00000,750 Howard Av,DPR,False,Howard Av Block Association,N,Howard Av Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B528/,No,55,20,9,{FD5D4CFE-03DA-4BC9-945E-E4EA7288736B} +"MULTIPOLYGON (((-73.88574276046141 40.665481735793335, -73.88642333038693 40.66518622349511, -73.88657961729649 40.66577786495419, -73.88584719385848 40.66588882617184, -73.88574276046141 40.665481735793335)))",B261,4850,B261,B-05,B-05,B-05,B-05,Livonia Ave. between Barbey St. and Schenck Ave.,305,42,75,11207,B,0.847,False,Sankofa Park,Yes,100004726,PARK,20100106000000.00000,19530625000000.00000,816 LIVONIA AVENUE,DPR,True,Sankofa Park,Y,Sankofa Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B261/,No,60,19,8,{B4CCAF22-EF33-4A8E-8839-20BBBC7AD72A} +"MULTIPOLYGON (((-73.86704700165858 40.761318498508984, -73.8671470211522 40.76130840846538, -73.86715090741467 40.76130872632285, -73.86715467311225 40.761309520408595, -73.8671582188031 40.76131077079683, -73.86716144981276 40.76131244225868, -73.86716427977338 40.76131449147038, -73.86716663418144 40.761316864315646, -73.86716844802949 40.76131949588315, -73.86716967526615 40.76132231768145, -73.86718787255677 40.76142367704965, -73.86718607371425 40.76142836660957, -73.86718323921004 40.76143275060455, -73.86717945575866 40.76143669856131, -73.86717483373768 40.76144009174024, -73.86716951309639 40.76144282944593, -73.86716365269369 40.76144483081604, -73.8671574255624 40.761446033915036, -73.86715102007584 40.761446404740994, -73.86714462574669 40.76144593180579, -73.8670899723008 40.76143580291511, -73.86690991221549 40.76140677706358, -73.86690294006533 40.76140565328246, -73.86690296881618 40.76140548942365, -73.86687754047176 40.76140077201142, -73.86687161202042 40.76139948734342, -73.86686604505098 40.76139747638491, -73.86686098986242 40.761394793339925, -73.86685658842393 40.76139151221416, -73.86685296017046 40.76138772319617, -73.8668475869499 40.76138121263458, -73.86684366683959 40.76137412832928, -73.8668413048733 40.76136665500541, -73.86684056224192 40.76135898904405, -73.86684145748875 40.761351333080356, -73.86684396889424 40.76134388790193, -73.86684966091475 40.761339622482566, -73.86685622771643 40.76133616042436, -73.86686347605593 40.76133360236045, -73.86704700165858 40.761318498508984)))",Q140,6163,Q140,Q-03,Q-03,Q-03,Q-03,102 St. bet. Astoria Blvd. and 31 Ave.,403,21,115,11369,Q,0.047,False,Barclay Triangle,Yes,100000395,PARK,20090423000000.00000,19331102000000.00000,,DPR,False,Barclay Triangle,N,Barclay Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q140/,No,35,13,14,{27A5BEC6-985A-4828-BAE9-154353CC2634} +"MULTIPOLYGON (((-73.90283417331659 40.751670226108445, -73.90319059292662 40.75182774200465, -73.90270758455877 40.75187694483931, -73.90278762152217 40.75168475251993, -73.90279078538707 40.75168079476332, -73.90279473133732 40.75167726720809, -73.90279936214382 40.75167425892229, -73.90280456046699 40.75167184544934, -73.90281019478005 40.7516700870121, -73.90281612410548 40.751669028516886, -73.90282219920452 40.75166869595246, -73.90282826612551 40.751669099094435, -73.90283417331659 40.751670226108445)))",Q501,5555,Q501,Q-02,Q-02,Q-02,Q-02,"Broadway, 59 St., 34 Ave.",402,26,108,11377,Q,0.118,False,Sergeant Collins Triangle,No,100008315,PARK,20110712000000.00000,,,DPR/CDOT,False,Sergeant Collins Triangle,Y,Sergeant Collins Triangle,,Triangle/Plaza,http://www.nycgovparks.org/parks/Q501/,No,34,12,14,{8FDC2CC5-61DC-4ED2-B3F1-628C65D9E544} +"MULTIPOLYGON (((-73.86903336958271 40.736196283649846, -73.86979920988286 40.73604264547285, -73.86983787923849 40.73614455383347, -73.86984702718433 40.73616866358722, -73.86995780421434 40.73646060488155, -73.86940056477918 40.73658313145552, -73.86909804359392 40.73632961626424, -73.86905959520432 40.736250730314, -73.86903336958271 40.736196283649846)))",Q041,5104,Q041,Q-04,Q-04,Q-04,Q-04,"56 Ave., 92 St.",404,25,110,11373,Q,0.703,False,Newtown Playground,Yes,100000024,PARK,20090423000000.00000,19170315000000.00000,92-02 56 AVENUE,DPR,False,Newtown Playground,Y,Newtown Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q041/,No,35,13,6,{50FA082B-B67F-4B5D-A887-9EC2ADE6BC83} +"MULTIPOLYGON (((-73.9904178720097 40.7240175271571, -73.9903400912778 40.7239847592311, -73.9904686582889 40.723738242029206, -73.99038021824195 40.72372031544002, -73.9903881342348 40.72370513441526, -73.99029950237012 40.72367999737021, -73.99029419582615 40.72369017267786, -73.99020924165647 40.723664493766606, -73.99012866562788 40.723640136215145, -73.99004419330399 40.723614602205274, -73.98997420926946 40.72359344767197, -73.98990536625168 40.72357263719067, -73.9898365244603 40.723551828469255, -73.98970382860819 40.72351171790098, -73.98961617206143 40.7236797801823, -73.98865201601932 40.723273579306905, -73.98874205680221 40.72314934757431, -73.99083684679613 40.72378076515104, -73.99085066541139 40.72396451606388, -73.99055231835985 40.723759631516934, -73.99051656153274 40.723828194253294, -73.9904178720097 40.7240175271571)))",M124,4653,M124,M-03,M-03,M-03,M-03,"Houston St., E. 1 St., 1 Ave.",103,2,9,10003,M,0.763,False,First Park,Yes,100004795,PARK,20100106000000.00000,19340608000000.00000,2 2 AVENUE,DPR,False,First Park,Y,First Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M124/,No,66,26,12,{70E97E19-FEA8-4EF3-BE3F-02EBDF920E9F} +"MULTIPOLYGON (((-73.9715454448973 40.57444185255602, -73.97127100954243 40.5744386945536, -73.97102224165347 40.57444428376413, -73.97076637185893 40.5744565354107, -73.97053086339739 40.57448234280476, -73.97062784198208 40.57446592856651, -73.97073331957372 40.57444807557272, -73.97350544099481 40.573978841161804, -73.97375365792554 40.57393682203265, -73.97704942322243 40.57357953772496, -73.97722978639437 40.57355998270543, -73.9770793195543 40.57519740524823, -73.97682672085736 40.57516794884867, -73.97623311130363 40.575090451815164, -73.97577881972717 40.57503030816202, -73.97522523033481 40.574947838952426, -73.97497458681526 40.57491196716705, -73.97448629783464 40.57483930810877, -73.97366783945014 40.57470953975451, -73.97332417727827 40.574650895760314, -73.97304839034865 40.57460277850381, -73.9728171068807 40.57456714608949, -73.9725874610146 40.574533179570395, -73.97237010296807 40.57450650169166, -73.97210823424128 40.57447794401507, -73.97180458509344 40.574453753844665, -73.9715454448973 40.57444185255602)), ((-73.97114589682224 40.57464814770388, -73.97140558789202 40.57464672316896, -73.97161339395201 40.574651538479905, -73.97186980393684 40.57466760387205, -73.972133313816 40.574687416596, -73.97238726334753 40.57471659817602, -73.97265104199795 40.57475577465477, -73.97290116743036 40.574794948208364, -73.97318023696731 40.574846202209805, -73.97323484930995 40.574856619606, -73.97325068639327 40.57486578252881, -73.97326143584354 40.57488351635757, -73.97316823656351 40.575229051966154, -73.9729381966926 40.57595745829847, -73.972493120829 40.57591831576299, -73.9721726711862 40.5758906357161, -73.97196266273511 40.575867605974466, -73.97184336891112 40.57585452279719, -73.97168439597456 40.57583708829494, -73.97155365320899 40.57582186775154, -73.97132483829314 40.575791481204924, -73.97104469489635 40.575748748595466, -73.97082835179147 40.575710688132645, -73.97064830116894 40.57567339568253, -73.9705073206705 40.57564230139049, -73.97031203554857 40.575599226736465, -73.97021954088204 40.57557556673269, -73.97006822853245 40.5755356323767, -73.96984480319323 40.57547352871615, -73.96963513946295 40.57541127697072, -73.96946248243498 40.575355495947896, -73.96940526886115 40.57533657691662, -73.96936869739295 40.575324483934516, -73.96922919302288 40.57527605607269, -73.96915140170316 40.57524693566366, -73.96916827967247 40.57517742331071, -73.96917454618878 40.57515161596207, -73.96929846855345 40.57506537440301, -73.96944130399586 40.57499022770083, -73.96956993385218 40.57493881578372, -73.96973706761632 40.574879705382635, -73.96991293922206 40.574826009178906, -73.97004047223352 40.57479083830628, -73.97025839429197 40.57474172809685, -73.97045446796332 40.5747051084349, -73.97071198166665 40.57467370194569, -73.9709479194335 40.574653327153314, -73.97114589682224 40.57464814770388)), ((-73.96794874995152 40.574955153488816, -73.96851034580186 40.57485747492214, -73.96846436420623 40.57504372408545, -73.96836927401093 40.57502739034582, -73.96794874995152 40.574955153488816)), ((-73.96928588728296 40.57469305190497, -73.97018512862721 40.57454085882867, -73.97000502264557 40.5745846954027, -73.96959183919276 40.574697283813755, -73.96940258762757 40.57474951981556, -73.96930809847407 40.5747749092117, -73.9692635063047 40.57478523080781, -73.9692637879165 40.5747840701071, -73.96928588728296 40.57469305190497)), ((-73.97676912170394 40.57578352127638, -73.97679683676066 40.57548392962328, -73.97691517899372 40.57549701917282, -73.97688112353208 40.575755816725255, -73.97676912170394 40.57578352127638)))",B080,6417,B080,B-13,B-13,B-13,B-13,"Boardwalk, Surf Ave., Sea Breeze Ave., Ocean Parkway",313,"47,48",60,11224,B,21.039,False,Asser Levy Park,Yes,100004330,PARK,20100106000000.00000,18760207000000.00000,2955 SEA BREEZE AVENUE,DPR,True,Asser Levy Park,Y,Asser Levy Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B080/,Yes,46,23,8,{3541DE95-803F-4168-AE98-772FBD45E705} +"MULTIPOLYGON (((-73.98780325605382 40.70112994803131, -73.98780992062498 40.701016762487285, -73.98855509597006 40.70105084683088, -73.98854291376227 40.70124139034776, -73.98780325605382 40.70112994803131)), ((-73.98778132511588 40.70150243976859, -73.98779150783463 40.70132948492569, -73.98853040165218 40.70143711447094, -73.98852473167172 40.7015257999219, -73.98778132511588 40.70150243976859)))",B223IB,5809,B223IB,B-02,B-02,B-02,B-02,"York St., through BQE bet. Adams St. and Pearl St.",302,33,84,11201,B,0.489,False,Bar and Grill Park,Yes,100004193,PARK,20100106000000.00000,19470729000000.00000,,DPR,True,Bar and Grill Park,N,Bar and Grill Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223IB/,No,52,26,7,{8CC7B469-8879-476E-9334-540B312FB426} +"MULTIPOLYGON (((-73.7592563977784 40.66419957187014, -73.75951935440644 40.663724840316384, -73.76003100648397 40.663902584412824, -73.76007990155564 40.6639120968291, -73.76017238684737 40.66393008844997, -73.7602383297606 40.66405647963742, -73.76002572635795 40.66443211484305, -73.76000779427925 40.664463797328956, -73.76000406909371 40.66447037775714, -73.75924000794305 40.66422916285724, -73.75924305522412 40.6642236607575, -73.7592563977784 40.66419957187014)))",Q406,5358,Q406,Q-13,Q-13,Q-13,Q-13,145 Rd. bet. Arthur St. and Springfield Blvd.,413,31,105,11413,Q,1.045,False,Springfield Park North,Yes,100000186,PARK,20090423000000.00000,19590302000000.00000,145-12 SPRINGFIELD BLVD,DPR/DOE,False,Springfield Park North,Y,Springfield Park North,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q406/,No,31,10,5,{4B12793B-88B3-4DDD-8F4C-3FEC9BB524B1} +"MULTIPOLYGON (((-73.95184944016654 40.8197145888494, -73.95300297543882 40.82020007844004, -73.95219757251544 40.82130707772363, -73.95104384950572 40.82082181872174, -73.95184944016654 40.8197145888494)))",M223,4907,M223,M-09,M-09,M-09,M-09,Amsterdam Ave. bet. W. 136 St. and W. 138 St.,109,7,30,10031,M,3.852,False,Jacob H. Schiff Playground,Yes,100004367,PLGD,20100106000000.00000,19631121000000.00000,1540 AMSTERDAM AVENUE,DPR,True,Jacob H. Schiff Playground,Y,Jacob H. Schiff Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M223/,No,70,31,13,{A73C4DE8-295E-453B-82B1-F931BECBA366} +"MULTIPOLYGON (((-73.93423122811036 40.628540874015926, -73.93422507748349 40.62848306252289, -73.93457908228865 40.62846097303099, -73.93459079528014 40.628570842222096, -73.93423676862004 40.62859293263818, -73.93423122811036 40.628540874015926)))",B571,13893,B571,B-18,,,B-18,E. 43 St. Ave. I and Ave. J,318,45,,11210,B,0.091,False,,,100036998,PARK,,20160209000000.00000,1087 EAST 43 STREET,DPR,False,E. 43 St. Block Assoc. Garden,,East 43rd Street Community Garden,,Garden,,No,41,21,9,{AF394D01-4282-480D-A3DD-62FFEA2B9242} +"MULTIPOLYGON (((-73.87119436796102 40.64955549494383, -73.8709820707924 40.64967979149366, -73.87077377579226 40.64980795807376, -73.87056960842105 40.64993991920325, -73.87036968468536 40.650075598490716, -73.87017412178287 40.650214916844746, -73.86994141882163 40.65038984079598, -73.86721082018099 40.65244234200072, -73.86701946754216 40.652531653147996, -73.86686818901903 40.65259000552531, -73.86682240473749 40.65260435450913, -73.86678792398284 40.65259974714928, -73.86674122621461 40.65259548763321, -73.8667137095923 40.65258322671005, -73.86634138468683 40.652108245788654, -73.8664398253777 40.65196521104533, -73.86644631890317 40.65195577575021, -73.86675047792698 40.65177932436202, -73.86718107441591 40.651544136053005, -73.86763043798967 40.65129869371533, -73.86954204079605 40.6502565719003, -73.86955509114222 40.65024945729779, -73.86961965515916 40.65021365565227, -73.86980226218705 40.650116669555935, -73.87006369977071 40.64997217535143, -73.87045447004607 40.64974480930074, -73.8708497499512 40.64950005616948, -73.87089585954996 40.64947001170872, -73.87090627853954 40.649463710769055, -73.87096859188304 40.64942261979453, -73.87109368287136 40.64934111185217, -73.87116956096501 40.64929010235121, -73.87123549455153 40.64924578782832, -73.87139566968393 40.649134453133044, -73.87142791993426 40.64911225358643, -73.87143721160955 40.64910557852356, -73.87150276062188 40.6490600161988, -73.87165388516067 40.648951285235604, -73.87184352350592 40.648810889736275, -73.8721411338031 40.64858120511865, -73.87236770281719 40.64839819313568, -73.87272881854398 40.64809066007289, -73.8729110590851 40.64792430166966, -73.87311022659817 40.64774249074167, -73.87323291790462 40.6476222834277, -73.87344669591657 40.64741283218608, -73.8736274481163 40.647219501365534, -73.87591300399033 40.65026250545447, -73.87605566649744 40.65045243723302, -73.87975472561057 40.65537667148871, -73.8792126959878 40.655617331566106, -73.87808315775816 40.65609481457958, -73.87806258796128 40.65606704331968, -73.8778980962443 40.655844968629765, -73.87785300058039 40.65577778624641, -73.87781528931194 40.65570801369547, -73.87778521696369 40.65563612132488, -73.87776298482117 40.65556259383319, -73.8777500263107 40.65549692060433, -73.87774332504067 40.65543070650976, -73.8777429158333 40.65536429648589, -73.87774880276419 40.655298037236555, -73.87779492490034 40.654829800743784, -73.87782102944202 40.65471792832024, -73.87784912899075 40.65452771745102, -73.87784913738795 40.65452765172216, -73.87787050033609 40.654341459004385, -73.87788585008364 40.65415492220056, -73.8778898606921 40.65408844391815, -73.87788819474706 40.654014121500026, -73.87788005233969 40.653940047952105, -73.87785442615157 40.65383736979344, -73.87782277038629 40.65373567129025, -73.87777884136163 40.653619822503146, -73.87772708986026 40.653505862773336, -73.87766765488001 40.65339409751379, -73.8776006978872 40.653284828557965, -73.87744540876771 40.65312713466825, -73.87728601784029 40.65297183246764, -73.8771225900345 40.65281898324377, -73.87694682177414 40.65267421624005, -73.87625433245432 40.652106723150354, -73.87616026473104 40.65201609010549, -73.87607281723015 40.65192169004405, -73.87599224953715 40.65182380332211, -73.87591880111579 40.651722719278744, -73.87585269011903 40.651618739836586, -73.87579411222222 40.651512171395765, -73.87576120652813 40.65144395851714, -73.87573138955541 40.65137492769312, -73.8754102603693 40.65053233267832, -73.87534224439577 40.65042193737097, -73.87526876833228 40.65031359108332, -73.87518993595079 40.65020745060781, -73.87509578503918 40.6501066155053, -73.87499461091494 40.650009806113, -73.87488671100654 40.64991730549884, -73.87477240049164 40.649829385943704, -73.87465201348766 40.6497463044406, -73.87452590423234 40.649668303596485, -73.87439443999021 40.649595611624946, -73.87425800696555 40.64952844145243, -73.87411700321077 40.64946698981008, -73.8739718433558 40.64941143723928, -73.87382295033728 40.6493619453813, -73.87367076012343 40.64931865968409, -73.87351572053696 40.64928170669985, -73.87335828297951 40.64925119407587, -73.87319890952287 40.6492272123638, -73.87303806700658 40.64920983051038, -73.87287715394922 40.649200970861536, -73.87271583860448 40.6491991075714, -73.87255464703958 40.649204247524914, -73.87239410063748 40.64921637419137, -73.87223472319128 40.64923544763201, -73.87207703026276 40.64926140538882, -73.87192153627169 40.64929416519394, -73.87176874386786 40.64933361865391, -73.87161915101366 40.649379637561225, -73.87147324389089 40.649432073886004, -73.8713314957239 40.64949075707317, -73.87119436796102 40.64955549494383)), ((-73.86209189198982 40.65519241358993, -73.86198075448816 40.65519028653533, -73.86144017101158 40.65519405092281, -73.86134237471593 40.65519196993989, -73.8612450510386 40.65518437557146, -73.86114873200269 40.655171311685926, -73.86105394957583 40.65515284826819, -73.8609792240129 40.65505240783514, -73.86142616482803 40.65479006611634, -73.86326307789376 40.65371608408976, -73.86355495504974 40.65354900366288, -73.8639133309527 40.653346490156984, -73.86453449362445 40.65301128689709, -73.86495391203613 40.65278557263041, -73.86539333793151 40.6525429730176, -73.86583024648043 40.65230176008721, -73.8659231468591 40.65225047043759, -73.8660374416206 40.652247109607856, -73.86604692494589 40.6522502904777, -73.86605571220757 40.65225447371358, -73.86606362031061 40.6522595735532, -73.86607048748203 40.65226548444769, -73.8660761697187 40.65227208375907, -73.86652857591946 40.6528902580495, -73.86592875398543 40.653333490698074, -73.86580316267609 40.653422326238456, -73.86567260290707 40.6535069053926, -73.86553732331541 40.653587065440654, -73.86539758079373 40.65366265628013, -73.86525364168905 40.65373353232299, -73.86510578060758 40.653799558797864, -73.8636675743917 40.654410056925585, -73.86359604311092 40.654443709128564, -73.8635287599066 40.65448210935666, -73.86346626813332 40.65452494758346, -73.86340906865136 40.65457188041359, -73.86335762456217 40.65462252838643, -73.86331234700113 40.65467648496402, -73.86327360341761 40.65473331473957, -73.86287892821075 40.65538180867403, -73.86273123433486 40.655324575680034, -73.86263048138896 40.65528878767315, -73.86252674611389 40.655258339687606, -73.86242051653724 40.65523337368052, -73.86231229019135 40.65521400820843, -73.86220257767246 40.655200333028844, -73.86209189198982 40.65519241358993)))",B371,6443,B371,B-05,B-05,B-05,B-05,"Shore Pkwy and Seaview Ave., Schenk Ave.",305,42,75,"11208, 11239, 11414",B,42.583,False,Spring Creek Park,Yes,100004750,PARK,20100106000000.00000,20090128000000.00000,,DPR,True,Spring Creek Park,Y,Spring Creek Park,REDEC,Community Park,http://www.nycgovparks.org/parks/B371/,Yes,60,19,8,{DF9E1D08-7B54-43BA-8C68-1309EE96FC89} +"MULTIPOLYGON (((-73.96190900002155 40.670174587827425, -73.96206537771329 40.66974145911464, -73.96215636361157 40.670208459505226, -73.9622006353241 40.67043568672191, -73.96232761126973 40.67108738816287, -73.96232872925077 40.671093093293955, -73.96236192856222 40.67126351949255, -73.96208779756486 40.67120662767452, -73.961574819914 40.671100164251555, -73.9616593605655 40.67086601702657, -73.9617393636912 40.67064443311623, -73.96190900002155 40.670174587827425)))",B044,5992,B044,B-09,B-09,B-09,B-09,"Eastern Pkwy., Washington Ave., Classon Ave.",309,35,71,11225,B,1.361,False,Dr. Ronald McNair Park,Yes,100004736,PARK,20100106000000.00000,19051222000000.00000,,DPR,True,Dr. Ronald McNair Park,Y,Dr. Ronald McNair Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B044/,No,57,21,9,{FA49989C-C573-44F8-807B-ACF71039DC2C} +"MULTIPOLYGON (((-73.86842992438828 40.86651627070881, -73.86845473164283 40.8657903706766, -73.86875644842515 40.86578579307084, -73.86875648680925 40.8657939911771, -73.86902071897907 40.86578967460418, -73.86904884411442 40.86652701612866, -73.86842992438828 40.86651627070881)))",X087,5541,X087,X-11,X-11,X-11,X-11,Britton St. bet. Olinville Ave. and Barker Ave.,211,15,49,10467,X,0.974,False,Zimmerman Playground,Yes,100004271,PARK,20100106000000.00000,19311009000000.00000,,DPR,True,Zimmerman Playground,Y,Zimmerman Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X087/,No,80,36,14,{125BEA4C-A8D2-40F2-91FE-96D6135ADACC} +"MULTIPOLYGON (((-73.88737821384053 40.76447105196739, -73.88746271318848 40.76446207185726, -73.88742430189302 40.764252584111624, -73.88778669898893 40.76421406826373, -73.88787480260405 40.76469364673871, -73.88742773979276 40.764741160857625, -73.88737821384053 40.76447105196739)))",Q393E,4933,Q393E,Q-03,Q-03,Q-03,Q-03,24 Ave. bet. 81 St. and 82 St.,403,22,115,11370,Q,0.464,False,LaGuardia Landing Lights,Yes,100000474,PARK,20090423000000.00000,19600728000000.00000,81-02 24 AVENUE,DPR,False,LaGuardia Landing Lights,N,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393E/,No,34,13,14,{9783C70B-86AB-4939-9F9A-CE22377569AB} +"MULTIPOLYGON (((-73.84381296245795 40.82900373992127, -73.84383607598184 40.82900846370915, -73.84385967597548 40.82901149881994, -73.84388365669632 40.82901243808581, -73.8439076105805 40.829011172895356, -73.8439083707819 40.82901458770594, -73.84389476411515 40.82901532120263, -73.84388253871812 40.82901548655348, -73.8438598478766 40.829014529222846, -73.84384828702423 40.82901340415807, -73.84383590476256 40.8290117097666, -73.84381286551877 40.82900715897456, -73.84374321952677 40.8290180470818, -73.84373528078869 40.82901928801482, -73.84360684135089 40.82903936786851, -73.8434316073044 40.8290619387658, -73.84332241714256 40.82907335014299, -73.84322374178365 40.82908303325128, -73.84311828250988 40.82909136620769, -73.84299922601699 40.82909942031372, -73.84297279311808 40.82910271796229, -73.84295902642705 40.82910443537323, -73.84295456520954 40.82910499120778, -73.84295385670792 40.82910229505742, -73.84295509717293 40.82910211844842, -73.84297196241074 40.829099560591494, -73.84300729180677 40.82909559157787, -73.84307722765222 40.82909006946657, -73.84317742252601 40.82908254523868, -73.84325946123684 40.82907652799249, -73.84333142079274 40.82906845466999, -73.84339127385296 40.829061897507295, -73.84360042819203 40.82903664687625, -73.84371374938128 40.82901883470344, -73.84374303750907 40.82901478343642, -73.84381296245795 40.82900373992127)), ((-73.84112698320936 40.8278388635732, -73.84194017786979 40.82771588628708, -73.84194141393002 40.82771905142565, -73.84112806163768 40.827841500812305, -73.84112698320936 40.8278388635732)), ((-73.84155526508938 40.82929938536792, -73.84243334417559 40.82914107271537, -73.84243425428302 40.82914373132357, -73.84155583602534 40.829302077735875, -73.84155526508938 40.82929938536792)), ((-73.8435600328997 40.827551752685906, -73.84356076627908 40.82755445967295, -73.84328758671924 40.82756784564916, -73.84301493534166 40.82758644016952, -73.84274298518898 40.82761023266782, -73.84247190694855 40.827639206272735, -73.84247077154563 40.82763657797326, -73.84275724784281 40.827607703711, -73.84304447743597 40.82758353215562, -73.84330205688133 40.8275657869662, -73.8435600328997 40.827551752685906)), ((-73.83994557973763 40.828017851545425, -73.8408331880232 40.82789810103639, -73.84083415614725 40.82790075613597, -73.83994584687456 40.828018177895956, -73.83994557973763 40.828017851545425)))",X195F,6246,X195F,X-10,X-10,X-10,X-10,Bruckner Exwy. bet. Zerega Ave. and the Hutchinson River Pkwy.,209,"13,18",43,10465,X,0.025,False,Park,No,100008358,PARK,20130422000000.00000,19680822000000.00000,,DPR,True,Park,N,Park,,Strip,,Yes,"82, 87",34,"15, 14",{25FCA70F-A9C4-4BF6-9604-D5310AE5CCF9} +"MULTIPOLYGON (((-73.89939837273964 40.64625496420079, -73.8998148210357 40.64663029913068, -73.89927130615972 40.64698349307929, -73.8988535356333 40.646609016828634, -73.89845127532045 40.64624843603103, -73.89899852430393 40.64589458462715, -73.89939837273964 40.64625496420079)))",B342,5187,B342,B-18,B-18,B-18,B-18,Glenwood Rd. between E. 100 St. and E. 101 St.,318,46,69,11236,B,1.616,False,100% Playground,Yes,100004385,PARK,20100106000000.00000,19611026000000.00000,10002 GLENWOOD ROAD,DPR/DOE,False,100% Playground,Y,100% Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B342/,No,58,19,8,{64746F76-C24B-4FC9-95B5-B4B2E33BF81F} +"MULTIPOLYGON (((-73.89482119381759 40.830922686957486, -73.89519861892033 40.830883886928014, -73.89523209124789 40.8310723396686, -73.89485466391154 40.831111138904845, -73.89482119381759 40.830922686957486)))",X340,4736,X340,X-03,X-03,X-03,X-03,Bristow St bet. Jennings St and Freeman St,203,16,42,10459,X,0.16,False,CS 134 Community Improvement Garden,No,100004970,PARK,20100106000000.00000,20060814000000.00000,1311 BRISTOW STREET,DPR,False,CS 134 Community Improvement Garden,Y,CS 134 Community Improvement Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X340/,No,79,32,15,{92443CD2-2CB9-4892-869F-78E609E2FF7E} +"MULTIPOLYGON (((-73.98513006001589 40.59516062430729, -73.98489852058836 40.59393370749358, -73.984922933198 40.59391156954474, -73.9858475413935 40.594471871748034, -73.98513006001589 40.59516062430729)))",B106B,6049,B106B,B-13,B-13,B-13,B-13,"Stillwell Ave., Benson Ave., Bay 43 St.",313,47,60,11214,B,1.187,False,Lafayette Playground (JOP),Yes,100004250,PARK,20100106000000.00000,19600830000000.00000,2140 STILLWELL AV,DPR/DOE,False,Lafayette Playground,Y,Lafayette Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B106B/,No,47,22,11,{BCB65C76-437A-4061-AD75-6DB34AED3DFD} +"MULTIPOLYGON (((-73.79827338424523 40.71281217248576, -73.79824241782858 40.71281150046645, -73.79820208063288 40.712812863381295, -73.79816971140306 40.71281663201443, -73.79814008011508 40.71282136448573, -73.798072991838 40.712840446665155, -73.79804486781421 40.712848446115274, -73.79795460178438 40.71287411984053, -73.79778742324227 40.71292167055956, -73.79761252663026 40.71256795148541, -73.79758444205075 40.71251115087628, -73.79758066686477 40.71249946188276, -73.79757552485687 40.712476844561195, -73.79757386038554 40.71246572570155, -73.7975721977832 40.712443470200526, -73.79758069705179 40.71237611956637, -73.797586041142 40.712359468571314, -73.79760140414439 40.712325305804455, -73.79761236547164 40.712306882568726, -73.79763068528328 40.71228109526486, -73.79805504851964 40.71169083374946, -73.79806319871649 40.71167288731265, -73.7980723201759 40.71163864149057, -73.79807314499195 40.71159880603806, -73.79807105496108 40.71158516680228, -73.79806295052737 40.71155754285351, -73.79805516918103 40.711540463579084, -73.79804736750432 40.711526971012155, -73.7977717028561 40.71108388846046, -73.79879613718822 40.710719602432704, -73.80032338197421 40.71297668706306, -73.79994432065934 40.71304287582642, -73.79907725860895 40.713413637811136, -73.79876888396393 40.713133293615236, -73.79857410081331 40.71295621379573, -73.79852456635743 40.712911180711835, -73.79846726453792 40.71286943078657, -73.79840726753258 40.712840383251184, -73.7983750824485 40.71282944058418, -73.79830231224337 40.71281458161683, -73.79827338424523 40.71281217248576)))",Q052,5441,Q052,Q-08,Q-08,Q-08,Q-08,"Highland Ave., 85 Ave. bet. 165 St. and Chapin Pkwy.",408,24,107,11432,Q,9.16,False,Captain Tilly Park,Yes,100000320,PARK,20090423000000.00000,19080626000000.00000,165-01 HIGHLAND AVENUE,DPR,True,Captain Tilly Park,Y,Captain Tilly Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q052/,No,24,14,6,{509727ED-DA77-48AB-AB5F-F5843C36E452} +"MULTIPOLYGON (((-73.9515561700332 40.811298247656396, -73.95160924342426 40.81132061309297, -73.95166231685099 40.81134297850508, -73.95171539031337 40.81136534389265, -73.95158263117753 40.811546871765806, -73.95152955761498 40.81152450631777, -73.95147648408746 40.81150214174573, -73.9514234105962 40.81147977624871, -73.9515561700332 40.811298247656396)))",M328,4990,M328,M-10,M-10,M-10,M-10,W. 126 St. bet. St Nicholas Ave. and Frederick Douglas Blvd.,110,9,28,10027,M,0.084,False,William B. Washington Memorial Garden,No,100004927,PARK,20100106000000.00000,20040419000000.00000,323 WEST 126 STREET,DPR,False,William B. Washington Memorial Garden,N,William B. Washington Memorial Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M328/,No,70,30,13,{09ADC456-3992-4E66-A757-9B986276AC62} +"MULTIPOLYGON (((-74.16368474386724 40.52676026717456, -74.16383250867513 40.52667420710114, -74.16395323696749 40.52685176956078, -74.16379268962173 40.52691903146172, -74.16360029623083 40.526999635745725, -74.16353721661996 40.527026063412436, -74.16344960887132 40.52689721163848, -74.16350766647581 40.52686339872541, -74.16368474386724 40.52676026717456)), ((-74.16333349230814 40.526964838278516, -74.16339155121024 40.52693102542264, -74.16347413577907 40.527052491046156, -74.16341105606843 40.52707891864345, -74.16328489649757 40.52713177373388, -74.16321737550994 40.52703246480074, -74.16333349230814 40.526964838278516)))",R137A,6303,R137A,R-03,R-03,R-03,R-03,Bayview Ter. bet. Holdridge Ave. and Bennett Pl.,503,51,123,10312,R,0.252,False,Garden,No,100008335,PARK,20110712000000.00000,19970116000000.00000,,DPR,False,Garden,N,Garden,,Garden,http://www.nycgovparks.org/parks/R137A/,Yes,62,24,11,{FA506CB7-E581-4A5C-BF26-8FF1F864B080} +"MULTIPOLYGON (((-73.94518639407613 40.689176981015706, -73.94779588851904 40.68887721304361, -73.94805128763845 40.690167192552565, -73.94544534514134 40.69046686261428, -73.94518639407613 40.689176981015706)))",B088,5852,B088,B-03,B-03,B-03,B-03,"Marcy Ave., Tompkins Ave., bet. Greene Ave. and Lafayette Ave.",303,36,79,11216,B,7.819,False,Herbert Von King Park,Yes,100004441,PARK,20100106000000.00000,18570727000000.00000,,DPR,False,Herbert Von King Park,Y,Herbert Von King Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B088/,No,56,25,8,{B1824EA1-2BEA-467E-B787-012C111B3641} +"MULTIPOLYGON (((-73.94662637040156 40.69304236997336, -73.94669777428652 40.69303416967574, -73.9467539578183 40.69331465686617, -73.94667514321233 40.69332370925235, -73.946618961189 40.69304322022332, -73.94662637040156 40.69304236997336)))",B441,5244,B441,B-03,B-03,B-03,B-03,Hart St. between Marcy Ave. and Tompkins Ave.,303,36,79,11206,B,0.05,False,American Heart,No,100003850,PARK,20100106000000.00000,20021120000000.00000,122 HART STREET,DPR,False,American Heart,N,American Heart,Greenthumb,Garden,http://www.nycgovparks.org/parks/B441/,No,56,25,8,{769279B2-C3D1-4C7D-897F-D72A38B46122} +"MULTIPOLYGON (((-73.90064951635848 40.8641950937356, -73.90073404137982 40.86408253949646, -73.90104824256181 40.86422161811248, -73.90095904120571 40.86433877277017, -73.90064951635848 40.8641950937356)))",X343,4793,X343,X-07,X-07,X-07,X-07,Davidson Ave. at W. 190 St.,207,14,52,10468,X,0.115,False,Davidson Ave. Community Gardeners Group,No,100004399,PARK,20100106000000.00000,20060119000000.00000,2502 DAVIDSON AVENUE,DPR,False,Davidson Ave. Community Gardeners Group,Y,Davidson Ave. Community Gardeners Group,Greenthumb,Garden,http://www.nycgovparks.org/parks/X343/,No,78,33,13,{0732CDD5-18A7-438A-B942-ADEEDFC7C5A9} +"MULTIPOLYGON (((-74.18776095396163 40.61122646035264, -74.1849388979854 40.61056429803333, -74.18490550929853 40.61055646406631, -74.18488262626153 40.61055109413365, -74.18372619477942 40.61016405112331, -74.18375079709931 40.61012743794027, -74.18378440608915 40.61007592740162, -74.18381258198563 40.610031308241396, -74.18384986377828 40.60997007876435, -74.18388672167593 40.60990684088522, -74.18392537116645 40.60983728745805, -74.18395735432483 40.60977690210892, -74.18399483447192 40.60970242466576, -74.1840242651599 40.60964073582298, -74.18405819480326 40.609565548126284, -74.1840847486547 40.60950318938167, -74.18411424103948 40.60942965763207, -74.18413960023746 40.6093621813117, -74.1841646909106 40.60929076022236, -74.1841974309933 40.609188830642225, -74.18421593909085 40.60912565177387, -74.18425576269769 40.60897018911076, -74.18428006294836 40.60885522985074, -74.1842917560712 40.60879101368464, -74.18431228897889 40.60865370045774, -74.18435472098618 40.60833005539991, -74.1844855578249 40.60733208606617, -74.18449397732319 40.607275923102996, -74.18450189701193 40.60722831501513, -74.18451932158425 40.60713593114048, -74.18453918018547 40.60704484371045, -74.18455831173496 40.606966886177794, -74.18458662119879 40.60686397209809, -74.18461341510081 40.60677661248836, -74.18464266284336 40.6066896073379, -74.18467432342399 40.60660308728659, -74.18470408963775 40.60652758457529, -74.18474230348103 40.606437395144276, -74.18480459288898 40.606303315988505, -74.18490093200745 40.60611970004621, -74.18496207693359 40.60601457718105, -74.18500365696592 40.60594719881056, -74.18508935726776 40.60581718639375, -74.18514750458868 40.605734845200985, -74.18516633554562 40.605709079695984, -74.18519684201684 40.60566821610449, -74.18522926209278 40.60562590768213, -74.18526576619041 40.60557957182849, -74.18529643666271 40.60554164725512, -74.18531679350927 40.60551695899277, -74.18533083322863 40.60550015059087, -74.18534462373968 40.60548380545829, -74.18535702616003 40.60546924559976, -74.18536905086881 40.60545525097753, -74.18538231376859 40.605439957602535, -74.18543180241419 40.60538411913547, -74.18545776549992 40.60535557386412, -74.18547752053229 40.60533418246095, -74.18550371919707 40.605306239249316, -74.18563930681894 40.60516171318554, -74.18630157785526 40.60445534766847, -74.18637822821867 40.60438594788996, -74.18648135095215 40.60430487934594, -74.18657836605513 40.60423899805405, -74.18668557446192 40.60417583501391, -74.18678089635415 40.60412695278902, -74.18687805706749 40.604083320250965, -74.18695439643717 40.604053014136014, -74.18703295217018 40.60402520421789, -74.18711474328715 40.60399966370206, -74.18719462613981 40.60397789763039, -74.18726688704339 40.60396079062621, -74.18734042635141 40.60394580312716, -74.1874244407161 40.603931572049206, -74.18750274562682 40.60392100995404, -74.18758036310123 40.60391305324285, -74.18765469155487 40.60390773948426, -74.1877333243223 40.60390454838596, -74.187832333286 40.60437667812191, -74.1882166380814 40.604351411973106, -74.18812743366175 40.603926053238716, -74.18815293262224 40.60392963610617, -74.18926347468421 40.60407760313, -74.1892767942594 40.60407937774042, -74.19033942525279 40.6058512947865, -74.18851639815797 40.6067374584067, -74.18851847477721 40.60692053057817, -74.18852779933121 40.60774174337236, -74.18693881464269 40.60768243856326, -74.18694787582844 40.607689055281405, -74.18695285880682 40.60769251689393, -74.18695663281707 40.60769506013759, -74.1869578876201 40.60769589018035, -74.18695934956247 40.607696849561556, -74.18696146607518 40.607698221218364, -74.18696228283441 40.607698744895025, -74.18696633692232 40.607701302991686, -74.18697069144419 40.6077039722644, -74.18697676421841 40.607707567181606, -74.18698060343037 40.607709764517345, -74.18698763053652 40.60771364244693, -74.18699175686768 40.60771583751413, -74.18699525470643 40.60771764998062, -74.18700234469377 40.60772119731483, -74.18700652841875 40.607723212183394, -74.18700934784643 40.60772453766946, -74.18701378685591 40.60772657463545, -74.18701720827758 40.60772810266018, -74.18702094191623 40.607729730134885, -74.18702314229404 40.60773066940269, -74.18702550233134 40.6077316606411, -74.1870293149722 40.60773322945293, -74.18703421456651 40.60773518282051, -74.1870398863654 40.60773736096267, -74.18705337523583 40.60774238734657, -74.1870596933211 40.60774497237319, -74.18706645060537 40.607747853857425, -74.18708024665341 40.607754131466045, -74.18708469540985 40.60775627197369, -74.18708922716485 40.60775851500573, -74.18709632569251 40.60776215507419, -74.18710220814654 40.607765293729095, -74.18710820453505 40.607768611402435, -74.18711338819466 40.60777157919434, -74.18711693288344 40.607773663539014, -74.18712453635698 40.60777829155861, -74.1871364174691 40.607785977095, -74.18714389358459 40.607791115917536, -74.18714872176598 40.607794567867835, -74.18715196598477 40.607796948972954, -74.18715670250877 40.607800159731816, -74.18716137345572 40.60780273842969, -74.18716507532048 40.60780483062165, -74.18716951701623 40.607807400687285, -74.18717263684226 40.60780924348123, -74.18717643615281 40.6078115336293, -74.18718088424971 40.60781427928619, -74.18718431574344 40.60781644666127, -74.18718792610292 40.60781877313766, -74.18719237473104 40.60782170790317, -74.18719555448575 40.60782385317484, -74.18720087603774 40.60782753485347, -74.1872046386154 40.60783020868351, -74.18721107021345 40.60783492415581, -74.18721742418667 40.60783976762854, -74.18722524840939 40.60784600181607, -74.18723585940997 40.607854976259325, -74.18724618676367 40.60786434739415, -74.18725567007715 40.607873579421394, -74.187263973697 40.60788222172596, -74.1872718226096 40.6078909359121, -74.18727836071683 40.607898655353935, -74.18728300398912 40.60790442194555, -74.18728717716621 40.6079098299941, -74.18729064855883 40.607913159877, -74.18729444715406 40.60791645500671, -74.18729745582876 40.60791952899418, -74.18729852029765 40.60792074206595, -74.18729968815542 40.60792216569171, -74.18730166774752 40.60792484692671, -74.18730235476127 40.607925871503525, -74.18730339452915 40.60792754568359, -74.187304425284 40.60792937656942, -74.18730483870553 40.60793017105807, -74.18730516192262 40.60793082160993, -74.18730545073991 40.60793142449009, -74.18730573368968 40.607932041788175, -74.18730609521008 40.60793286787973, -74.1873067984647 40.60793462725737, -74.18730738212426 40.60793629587701, -74.18730795463003 40.607938200452, -74.18730835131925 40.60793976941819, -74.18730876459944 40.60794177691237, -74.18730897381538 40.60794306702177, -74.1873091538354 40.60794447964995, -74.18730922924114 40.60794524497215, -74.18730931274949 40.60794637139111, -74.1873093681879 40.6079476005155, -74.18730938380624 40.60794895577808, -74.18730909753157 40.607953470569534, -74.18730846053228 40.60795721688536, -74.18730758951044 40.6079605178234, -74.18730696261376 40.607962390133096, -74.18730607683 40.60796464108458, -74.18730528769262 40.607966383983275, -74.18730414071571 40.60796861284734, -74.18730271894029 40.607971024064966, -74.1873011021732 40.60797342479405, -74.18729949407037 40.60797554454562, -74.18729741251299 40.60797863583315, -74.18729603351738 40.6079815548763, -74.18729475553907 40.607984260330724, -74.18729175909301 40.60799060039715, -74.18728354500398 40.60800798218079, -74.18727164378684 40.608033165804386, -74.18725901429754 40.608059890508514, -74.18725274771627 40.60807315372398, -74.18725117136735 40.60807648552786, -74.18724941649076 40.60808020034514, -74.18724745018147 40.60808436216652, -74.1872467705981 40.608086408362766, -74.18724618059797 40.60808837696801, -74.1872454865526 40.6080903223292, -74.18724507820748 40.608091337884545, -74.1872441845929 40.60809332589539, -74.18724375692562 40.6080941928958, -74.1872434208057 40.608094840019355, -74.18724285887464 40.608095863029064, -74.18724267191939 40.608096190223705, -74.18724219328479 40.60809700057414, -74.18724126277023 40.60809847084403, -74.1872406226322 40.608099414735065, -74.18723969161245 40.60810070490102, -74.18723931607833 40.6081012017013, -74.18723902645394 40.60810157498989, -74.18723857667194 40.6081021403509, -74.18723775587503 40.6081031286619, -74.18723717287435 40.608103801402265, -74.18723661689864 40.60810442006713, -74.18723612567017 40.6081049530768, -74.1872356285009 40.60810547438937, -74.187234886211 40.608106227535764, -74.18723358524619 40.60810747958182, -74.18723190333382 40.60810898349449, -74.1872304144387 40.60811021513459, -74.18722885575676 40.608111420773206, -74.18722759166548 40.6081123386648, -74.18722448985103 40.6081143960108, -74.18722175543091 40.608116003396916, -74.18721744052164 40.60811820320036, -74.18721447365431 40.60811950568746, -74.18721141782451 40.60812068584819, -74.18720767684157 40.60812192655934, -74.18720519158089 40.608122635717216, -74.18720309337773 40.608123165040446, -74.18720039156608 40.608123760184434, -74.18719786018046 40.60812445410842, -74.18719092184664 40.608127393010825, -74.18718363655513 40.60813048556692, -74.18717211443166 40.608135390571974, -74.187161995589 40.60813971425413, -74.18715289762794 40.60814361212642, -74.18714437089712 40.60814727493183, -74.18713551493202 40.608151091361655, -74.18712819202153 40.608154254216274, -74.1871231669026 40.60815642995777, -74.18711082364801 40.608161786555286, -74.18707940578133 40.60817551484958, -74.18704363007649 40.60819131152557, -74.18699588740134 40.6082126694826, -74.18695296150216 40.608232143794474, -74.18690483577211 40.60825428849364, -74.18685600527022 40.60827709530265, -74.18682961146142 40.608289566334356, -74.18681916588068 40.608294529889, -74.18679949873675 40.608302728702505, -74.18678658080425 40.60830921995818, -74.18678232420436 40.60831157634155, -74.18677455511013 40.608316182537415, -74.18676722357566 40.60832092129918, -74.1867605276244 40.60832561940473, -74.18675713525306 40.608328149084464, -74.18675108233188 40.608332934395925, -74.18674365619299 40.608339336576954, -74.18673731955661 40.60834534255806, -74.18673151231917 40.608351364788724, -74.1867256384199 40.6083580562164, -74.18672019156458 40.60836492255211, -74.18671295153982 40.60837534526645, -74.18670766396015 40.608384239321936, -74.18670316550019 40.60839306725758, -74.18669755463264 40.608406777837715, -74.18668970225583 40.60842132684369, -74.1866875406593 40.60842750164264, -74.18668590638143 40.608434215899244, -74.1866849572695 40.60844129555599, -74.18668475329814 40.60844652522762, -74.18668490001133 40.608450820486716, -74.18668527834723 40.60845470383034, -74.18668541709592 40.60845572840078, -74.18668573823675 40.60845775045512, -74.18668597457102 40.60845902341158, -74.1866862237543 40.60846024321626, -74.18668677865335 40.60846261699558, -74.18668739709398 40.60846489611675, -74.18668793970939 40.608466680073136, -74.18668905348278 40.60846989133212, -74.18669057520214 40.60847363053585, -74.18669224998473 40.608477174977835, -74.18669410646818 40.60848062456968, -74.18669673683584 40.60848489688353, -74.18670002513865 40.608489514830154, -74.18670485677184 40.60849503619644, -74.18670885266864 40.608499165810166, -74.18671190035786 40.60850224785413, -74.18671647870721 40.608506772751795, -74.18672408484467 40.608514023117884, -74.18673371924355 40.60852276865949, -74.18674374440464 40.60853138929315, -74.18675844472584 40.608543236109654, -74.18677695504104 40.60855695612569, -74.18678648417492 40.608563548682106, -74.18679742941941 40.60857076119805, -74.18680729300355 40.60857695067517, -74.18681497689803 40.608581579484785, -74.18682551252006 40.608587663407306, -74.18684261137827 40.60859692811538, -74.18686544903073 40.608608217773714, -74.18688982610618 40.60861901053695, -74.18690206347597 40.608623488753445, -74.18692035934082 40.608629808592525, -74.18694642153683 40.60863896415306, -74.18696765725733 40.608646558846885, -74.18701093052465 40.60866241510665, -74.18707252102662 40.6086858743763, -74.18713150972752 40.60870934865523, -74.18716513553208 40.60872318177827, -74.18720595623282 40.60874042426202, -74.18724676062236 40.608758162946266, -74.1872716940036 40.60876925369611, -74.18729614286235 40.608780318214365, -74.18730698381849 40.60878528314496, -74.1873161702576 40.608790571357275, -74.18732706371178 40.608798663718694, -74.1873379239651 40.60880671380856, -74.18736202662403 40.60882450939003, -74.18738630781829 40.60884234069633, -74.18740996832818 40.60885962459067, -74.18742734739905 40.608872263917085, -74.18744509338157 40.608885119668635, -74.18747080516658 40.60890365823654, -74.18748392676649 40.60891834058215, -74.18749713992999 40.60893280665123, -74.18751209555091 40.608948807069844, -74.18752452478243 40.60896181916864, -74.18754187571024 40.608979565392545, -74.18756122897766 40.608998818524356, -74.18758205694571 40.60901892834558, -74.18760407503756 40.60903954141418, -74.18762318201154 40.60905691554487, -74.18761622246456 40.60905948169045, -74.18761008606636 40.609062314848046, -74.18760298071878 40.60906639861297, -74.1875962109331 40.609071318416106, -74.18758746045737 40.609079911084834, -74.18758042749866 40.60909041456239, -74.18757139916163 40.60910861626929, -74.18756550729172 40.60912320445948, -74.1875620883036 40.609135610247634, -74.18756015095953 40.609147141911116, -74.18755938064392 40.609163157177825, -74.18756590939951 40.60919945473155, -74.18757358783147 40.60921723474465, -74.18758077667749 40.60922940439428, -74.1875837404478 40.609233713064995, -74.1875852943478 40.60923584476968, -74.18759630745355 40.60924905548572, -74.18760857641263 40.60926093227661, -74.18761788288954 40.609268538216305, -74.18761947079675 40.60926973602218, -74.18766121231916 40.609292825741065, -74.1876904297827 40.609309127038415, -74.18776747742659 40.60935262075534, -74.18776325790589 40.609362290265516, -74.18775849773972 40.60937593106684, -74.18775657368123 40.609382933979, -74.18775533613294 40.60938951432473, -74.18775496082301 40.60939555384842, -74.1877534461499 40.60940191131694, -74.18775148284575 40.609406724220015, -74.1877485796268 40.60941176829179, -74.18774382152462 40.60941774203203, -74.18773901678614 40.60942225880118, -74.1877326819979 40.60942682579694, -74.18772676305117 40.609430101663, -74.18771848710811 40.60943349304309, -74.18770959631816 40.60943589935353, -74.18769757535773 40.60943743906814, -74.18768331891565 40.609436924735604, -74.18765326581813 40.609433170894164, -74.187618689486 40.60943109219785, -74.18758400904292 40.609429387378306, -74.18755931881543 40.609428404675896, -74.18753628470061 40.60942766060641, -74.1875180841554 40.60942718960998, -74.1874920719012 40.60942669803418, -74.18746374012404 40.60942620123043, -74.18744126639444 40.609426825924096, -74.18742109088622 40.60942954868778, -74.1874023737125 40.60943403499673, -74.18738628506928 40.609439585038245, -74.18736850143083 40.60944788353669, -74.18735203370707 40.60945814482969, -74.1873391596723 40.60946854974994, -74.18732977948476 40.60947804665, -74.18732208269913 40.60948613869071, -74.1873082416662 40.60950060294223, -74.1873041149596 40.6095075824204, -74.18730067426901 40.609516488801304, -74.18729934018724 40.60952279283856, -74.187298872177 40.60952865690955, -74.1872992663381 40.60953563892632, -74.18730081832204 40.60954298466882, -74.18730304390306 40.609549093795465, -74.18730467578513 40.60955248791075, -74.18730700183491 40.60955650225599, -74.1873091232876 40.60955961100795, -74.18731182463709 40.609563042102764, -74.18731620978558 40.609567734788456, -74.18732161478157 40.60957246723596, -74.18732709912118 40.60957641970059, -74.18733797271342 40.609582440888936, -74.18734510019429 40.609585376685125, -74.18735264328352 40.60958777689249, -74.18736299586173 40.60959003564013, -74.18737389376905 40.609591246189034, -74.18738238768175 40.60959140614304, -74.18738818479135 40.609591019372765, -74.18739513270181 40.609589757218174, -74.18741245069788 40.60958688783055, -74.18742660070907 40.60958483587834, -74.18745446818166 40.6095815467474, -74.18748586254057 40.609579014600214, -74.18750562355642 40.60957805032331, -74.18752075300358 40.60957763841603, -74.18753400329345 40.60957750963556, -74.1875530101386 40.60957770105209, -74.18755837506195 40.60957783728207, -74.18756173586351 40.609577938059644, -74.18756522472184 40.60957861676424, -74.1875717393 40.6095825171067, -74.1875778014988 40.60958690176815, -74.18758397187041 40.609592356975156, -74.18758884084818 40.609597657614735, -74.18759277859249 40.609602915648246, -74.18759519649052 40.60960681006813, -74.18759794128849 40.60961224114801, -74.18760022120003 40.609618331269225, -74.187601866508 40.60962523559887, -74.18760258252273 40.609632788021116, -74.18760330266639 40.60964475300162, -74.18760381264858 40.60965887958151, -74.18760394990981 40.609668619419324, -74.18760365957613 40.60968934544088, -74.18760204950398 40.609716845552896, -74.18759887361476 40.60974554681722, -74.18759559767264 40.60976639658057, -74.18759074680078 40.60979067180388, -74.1875847779525 40.60981489031742, -74.18757819694673 40.60983740063614, -74.18757648913268 40.60985577230063, -74.1875758382825 40.60986720640852, -74.18757459071311 40.60988578984539, -74.18757271300697 40.6099088814304, -74.1875692365193 40.60994331231403, -74.18756683284312 40.6099634087156, -74.18756436345053 40.60998198514076, -74.18756207881466 40.60999776874114, -74.18756039963075 40.610008669615915, -74.18755854397484 40.61002068652717, -74.18755417875698 40.61003740466359, -74.18754764008541 40.61005312406369, -74.18753743554348 40.610070360522975, -74.18752529348673 40.610085620791864, -74.18751435528725 40.610096598007104, -74.18750742301911 40.61010260590168, -74.1874967155723 40.610110759597845, -74.18748707723164 40.61011713661744, -74.18747434434863 40.6101244047986, -74.18746026765163 40.61013114476177, -74.18743907872471 40.6101391417455, -74.18742609736296 40.61014292620141, -74.18741258124793 40.61014605594673, -74.1873970149514 40.61014958616384, -74.18738272442917 40.61015255957661, -74.18735971711129 40.61015682053685, -74.1873301218431 40.61016136869036, -74.18730321702539 40.61016461389726, -74.18729171942759 40.610165747480686, -74.18728470819947 40.61016636405668, -74.18727370728581 40.61016721946781, -74.187248963284 40.61016864568613, -74.1872418920294 40.6101689255616, -74.1872336331791 40.61016918395752, -74.18722477387533 40.610169375791706, -74.18721591196076 40.61016947937814, -74.18720549121915 40.610169490047305, -74.18718780270976 40.61016922978735, -74.1871739303318 40.61016878230521, -74.18715501569825 40.610167823429656, -74.18713381886135 40.61016627121961, -74.18711489000492 40.61016445326126, -74.18709021634554 40.61016146586563, -74.18706524869806 40.610157718901405, -74.18704583204878 40.61015429068919, -74.18701932611945 40.61015272098232, -74.18699948726825 40.6101495843183, -74.18698410284574 40.61014591629991, -74.18697314813342 40.610142594979514, -74.18696263047718 40.61013879927185, -74.18695335919303 40.610134915986244, -74.18694924418541 40.61013301987334, -74.18694198710669 40.610129390860436, -74.18693281034669 40.61012423858192, -74.18692219219832 40.61011746770466, -74.1869134522125 40.6101108954894, -74.18690593378815 40.610104658983424, -74.18689327292728 40.61009166880824, -74.18688502570485 40.61008130458599, -74.18687807852113 40.61007060685689, -74.18687268254016 40.6100602334954, -74.18686850498739 40.61004992118936, -74.18686479219575 40.61003805652573, -74.18686305782427 40.61002801580768, -74.18686226778057 40.61001551692642, -74.18686090785386 40.61000669580879, -74.18685844147873 40.60999391508733, -74.1868557963848 40.609982717776475, -74.18685291352783 40.6099722727892, -74.1868480111953 40.609957154666525, -74.18684388840958 40.60994614166325, -74.18683523539521 40.609926302789454, -74.1868245480814 40.609905780122155, -74.18681550432864 40.60989071735767, -74.18680492017809 40.6098770763209, -74.18679119321233 40.60986649676718, -74.18677126093318 40.60985485026919, -74.1867499478697 40.609845925591955, -74.18672871135551 40.609839864450954, -74.18670866242724 40.60983635706241, -74.18668195437928 40.60983471736543, -74.18665883482997 40.6098360048395, -74.18663731907579 40.609839525704416, -74.18662086646226 40.609843854219044, -74.18660537314462 40.609849386974716, -74.18659057348007 40.60985620364923, -74.18657102132782 40.60986809348037, -74.186555299166 40.60988095776199, -74.18654339101705 40.609889923789254, -74.18652461452335 40.60990538743163, -74.18650769696443 40.609920940808436, -74.18649350829944 40.60993541633111, -74.18648192920936 40.609948399053025, -74.18646665698267 40.60996752753379, -74.18645534992169 40.60998356708867, -74.18644636799287 40.609997807227096, -74.18644198739604 40.610004463797694, -74.18643612297721 40.61001207372769, -74.18642541958731 40.61002341426967, -74.18641537499032 40.6100320188526, -74.18640382850924 40.61004018731545, -74.18639410447463 40.61004595382735, -74.18637121371802 40.610056422609105, -74.18477944986063 40.61010979648387, -74.18482512331099 40.61023998915788, -74.18655961571396 40.61078838295934, -74.18658172528376 40.61078624615077, -74.18679592436776 40.61076554462016, -74.18682114937786 40.61074844230796, -74.18703500361097 40.610603458761354, -74.1870560410062 40.61060794245284, -74.18715905723657 40.6106298952145, -74.18718944406731 40.61069643943517, -74.18720975054042 40.61079042010195, -74.18755995755042 40.61085986126526, -74.18755943099828 40.61085413659694, -74.1875579776515 40.61084448805956, -74.18755521732265 40.610832704712905, -74.18755057145763 40.610818945992946, -74.18754620453176 40.610808997832514, -74.18753976890522 40.61079707009482, -74.18753016457342 40.61078277734904, -74.18752062089905 40.61077114735115, -74.18750731100562 40.610757712543894, -74.18749986466291 40.610750260252814, -74.18749222982319 40.61074216709604, -74.18748187148583 40.61073034931383, -74.18747187521312 40.61071786095076, -74.18746108029711 40.61070289745007, -74.18745321909505 40.61069077481778, -74.18744324342184 40.61067341458712, -74.18743374873242 40.610653968859616, -74.18742466237168 40.61063096990075, -74.18742003065073 40.61061634214719, -74.18773369756894 40.610636324376465, -74.18859968273945 40.61069148659262, -74.18863604387865 40.61122877912924, -74.18820137243726 40.611171999547004, -74.18821272216049 40.61131199253111, -74.18864550082333 40.611368524832116, -74.18865000301209 40.611435048107126, -74.18776095396163 40.61122646035264)), ((-74.19230769692518 40.613818555050784, -74.18956837565753 40.613201594841804, -74.18951356157436 40.6131951312198, -74.18958453172947 40.61246225753818, -74.19066626935549 40.612702952186666, -74.19074164626419 40.61243758520329, -74.18922926402902 40.61209694143441, -74.18927549827437 40.611934183076464, -74.1887791809595 40.611974084690026, -74.18880272339146 40.61192570142974, -74.18928882435102 40.61188727268455, -74.18931364660338 40.61179989275042, -74.19011057513552 40.61193911851261, -74.1903049541375 40.61140802029082, -74.18945976569422 40.61126036368834, -74.18947401809064 40.6112101837452, -74.18955218021152 40.610935032330794, -74.18997258003434 40.61097833154814, -74.19102909911385 40.61083593406586, -74.19102988326537 40.61082668979001, -74.19082770799434 40.610565721631524, -74.19107535964345 40.610338237812456, -74.19192609971053 40.610166578247664, -74.18952534839629 40.6096126146515, -74.1895178011868 40.60961087287609, -74.18872731371897 40.60952869681707, -74.18872148338802 40.60875575371297, -74.18871741074878 40.608215405714304, -74.18872873428622 40.60821635968705, -74.18873540639389 40.608216654909214, -74.1887384184662 40.60821672290556, -74.18874853390807 40.60821666126843, -74.1887506085947 40.60821659392424, -74.1887565027191 40.6082162960772, -74.18876248264108 40.608215835994685, -74.18877009333437 40.60821501932775, -74.18877792413373 40.60821390152393, -74.18882710573867 40.608209783688274, -74.1888575419264 40.60820836848789, -74.1888871227138 40.608207814685244, -74.18890797691786 40.60820791188828, -74.18892922931012 40.60820842357438, -74.18895047816147 40.60820935400585, -74.18897054400115 40.608210617771135, -74.18898706878002 40.60821194228732, -74.18900627257374 40.608213805411445, -74.18903764280343 40.60821760446027, -74.18918456834749 40.60822024079193, -74.18932580326094 40.608229511462, -74.18946780550023 40.6082455958566, -74.18969453500992 40.60824249779923, -74.18981767470065 40.608240815842294, -74.18985913651996 40.60824154522526, -74.18997644037096 40.608240297785144, -74.19005660574612 40.6082366252962, -74.19034681754685 40.60821946194531, -74.19079895570023 40.608172483892936, -74.19097548314059 40.60817329025734, -74.19115178916101 40.6081665053042, -74.19126967772891 40.60815122901446, -74.19139543107134 40.60814342556096, -74.19151634858832 40.60814401930646, -74.19158034664999 40.60814961476699, -74.19162831263192 40.608149770743495, -74.19168524239446 40.60814547847292, -74.19205964084833 40.6092270865912, -74.19237993722517 40.610152370224576, -74.1933983457035 40.61309421199316, -74.19355995027345 40.61356100717829, -74.1935084997601 40.6135170375057, -74.19344688334165 40.613460451478204, -74.19343089169718 40.61344580796547, -74.19342104659593 40.61343503896519, -74.19341073794679 40.613421708755375, -74.19340105421074 40.61340626936827, -74.19339247880704 40.61338835077611, -74.1933876805515 40.61337467719893, -74.19338485290731 40.613363707279134, -74.19338298658674 40.61335335710304, -74.19338195013871 40.61334393667183, -74.19338153120754 40.613333934364206, -74.19338201866972 40.61332109118179, -74.19338418420162 40.61330542023473, -74.19338647350367 40.613302288865924, -74.1933880809439 40.61329955487449, -74.19338939861234 40.613296731318215, -74.19339090684046 40.61329197491836, -74.19339131874624 40.61328772285499, -74.19339127917493 40.61328099781378, -74.19338966291066 40.61327497513184, -74.19338686615698 40.61326936417402, -74.19338437208037 40.61326585002565, -74.19338134079514 40.61326249347203, -74.19334141290187 40.613253506777234, -74.1933266363585 40.613294853041396, -74.19329305611475 40.61328738204057, -74.19331845919245 40.613317731079896, -74.19332955674992 40.61333621996949, -74.19333814282452 40.61335538307163, -74.1933454797839 40.613381046449994, -74.19334832312411 40.61340478126151, -74.1933483211919 40.61341798563729, -74.19334688174969 40.6134334374355, -74.1933417928823 40.61345651019678, -74.19337779997159 40.613530324952215, -74.1934138059614 40.613604140598305, -74.19341547152622 40.61360841438064, -74.1934189328806 40.61361541282612, -74.19342374396831 40.61362290338751, -74.19342718956885 40.613627319158596, -74.19325037971377 40.61366090168924, -74.19303995134251 40.613700869287904, -74.19235922732616 40.6138301603212, -74.19230769692518 40.613818555050784)), ((-74.19600346016873 40.608846118162, -74.1957800710951 40.608828084077395, -74.19572665339358 40.6088289738182, -74.19564917099437 40.6088386819045, -74.19547087042355 40.60886690780916, -74.19532812904305 40.608889520383556, -74.19518782294865 40.60890731534571, -74.1951271013723 40.608916995516005, -74.19506610894432 40.608933870397685, -74.1949739987804 40.6089563713782, -74.19490912093822 40.60897802824445, -74.19484086145161 40.608998928963416, -74.1947696776321 40.609013413863266, -74.19469952904346 40.60902390674488, -74.19462204859725 40.60903441289915, -74.19452020654387 40.60903951746755, -74.19407880945045 40.60902186683187, -74.19360311145769 40.60898986210322, -74.1935215806441 40.608979279570974, -74.19347322523831 40.60895789699474, -74.19343962568614 40.608936490465794, -74.1934154234312 40.6089171123027, -74.19335891248642 40.608858950706285, -74.19331041338687 40.60878748748, -74.19327778439772 40.60871558600789, -74.19324940982516 40.60864511100684, -74.19322904883289 40.60856235919489, -74.19321545554278 40.6085010590841, -74.19321127544956 40.60844689690852, -74.19321779284505 40.608381473711255, -74.19323643076692 40.60829514158824, -74.19327646308159 40.60816858401345, -74.19332207292598 40.60811036859483, -74.19339821391166 40.608054640365275, -74.19347162294237 40.608020115913114, -74.19373835275823 40.6079440343337, -74.19381339114226 40.60791529098006, -74.19390358813345 40.60786989923669, -74.19398259736928 40.60782275137221, -74.19403479716512 40.607782803376914, -74.19409529745491 40.607722102277876, -74.19416752722331 40.607650436365645, -74.19423981928296 40.607600233386414, -74.19433489896889 40.60754385926701, -74.19440723127418 40.607507965436994, -74.19445946151994 40.60747823724013, -74.19453751415197 40.60743073490243, -74.19482539227835 40.60724832075997, -74.19501846065289 40.607158948632105, -74.19519026234366 40.60710021479934, -74.19534576119834 40.607063156112126, -74.1954047630625 40.60705590205514, -74.19552949545346 40.60704853526475, -74.1956478193953 40.60705219985921, -74.19567062063088 40.607051138048675, -74.1956840259678 40.60704804894235, -74.19569338891509 40.607038835050034, -74.19569601233152 40.6070183886909, -74.19569468994946 40.60699655233753, -74.19569302253187 40.60699043071352, -74.19568770062085 40.60698353906, -74.19568073887288 40.60697912843993, -74.19567124351704 40.606968158214116, -74.19566830222588 40.606959972056075, -74.19566893593448 40.60694962215658, -74.19567163219963 40.6069387104209, -74.19567953422944 40.60688861613206, -74.19568472595843 40.606829328505675, -74.19567256288477 40.6067986872748, -74.19565907191338 40.606772136681656, -74.19564428544138 40.60676194180647, -74.19561742696041 40.60675176657578, -74.19558119540613 40.60674773985693, -74.19553021868361 40.60674680449634, -74.19549804083425 40.60675196970672, -74.19546051496452 40.60677238807191, -74.19546618476554 40.60677381746684, -74.19550577928933 40.60679163812995, -74.19553920529405 40.60681323526507, -74.19556520992104 40.606832020074854, -74.19557515279472 40.606851775059305, -74.19557893933936 40.606879070699755, -74.19557281728628 40.60689791107194, -74.19556050619293 40.60691393703096, -74.19553090920272 40.606933758388074, -74.19549511764623 40.60694888323567, -74.19545438043761 40.60696213348708, -74.19537163344467 40.606977337236415, -74.19531728693873 40.60698496158554, -74.19523454264092 40.60700110717945, -74.19502343027284 40.607065485633626, -74.19472928026367 40.60719232516857, -74.1945117374134 40.607309679685265, -74.19444761950129 40.607356862160124, -74.19442419924432 40.607376672780575, -74.1940703870368 40.60759356935481, -74.19402643558207 40.607619537219854, -74.19401159479108 40.60763088185603, -74.19399468119705 40.60765798105059, -74.19398005217612 40.60767389548348, -74.19390991408915 40.60772580115714, -74.19384204854406 40.607762402155274, -74.19373560739344 40.60781436984192, -74.19364894494801 40.6078489212971, -74.1933350832872 40.60796343616736, -74.19320674483792 40.60802909483472, -74.19314651058541 40.60807144594356, -74.1931255517001 40.6080947849153, -74.19310629736458 40.60811591833828, -74.19308645999496 40.60814423351369, -74.1930804430732 40.60815068146566, -74.19307381703901 40.60815529067055, -74.19306748433418 40.608157141978666, -74.19306235455113 40.60815738022888, -74.1930566169907 40.6081562407979, -74.19305208235275 40.608153488309284, -74.19304048748705 40.608140444786486, -74.19297448449979 40.60804176996861, -74.19285156822795 40.607916124478564, -74.19281065877264 40.60789589440693, -74.19277866136514 40.6078864745693, -74.19274668741284 40.607885175606626, -74.1927094040568 40.60789065027158, -74.19267214022555 40.60790289232759, -74.19259160029895 40.607946111968445, -74.19247985152128 40.6079977226704, -74.19244969753082 40.608011305333946, -74.19241419390386 40.60801813131063, -74.19237867856893 40.60802089683442, -74.1923307200925 40.608019623608705, -74.19225045875963 40.607998048060274, -74.1921098233992 40.60797249671182, -74.19201746240313 40.60797216926967, -74.19194540557699 40.60798367314766, -74.19189519851321 40.60799594467056, -74.19186080126009 40.608003751100426, -74.19151387639653 40.607043747303, -74.19318155137528 40.60668375821833, -74.19350024415004 40.60663308995689, -74.19423510778924 40.60656687671829, -74.19538126271487 40.606463597190164, -74.19620371570443 40.60638947792169, -74.19692403521468 40.606324559156114, -74.19758348385098 40.606265121163496, -74.19768493365292 40.606320588293556, -74.1978087012951 40.606376973282515, -74.19789468192928 40.60640874614708, -74.19796494558416 40.606438152426826, -74.19802997619864 40.60646916430916, -74.1982233879175 40.60656806684547, -74.19831900050681 40.60661992247604, -74.19840394432494 40.6066548900069, -74.1984974316446 40.60669008946392, -74.19855304930485 40.606725105727286, -74.19860232442649 40.60676649602598, -74.19862447441216 40.60679281608672, -74.19865815325343 40.60684702435547, -74.19867082603011 40.606882116582106, -74.1986793006726 40.60691402280627, -74.1986857112882 40.60695630843494, -74.1986922587833 40.60700766120225, -74.19868817702157 40.607044378117735, -74.19867887516014 40.60708589124191, -74.19866952818145 40.60711304108613, -74.19864138576854 40.60716437186498, -74.19862158788465 40.607198721445066, -74.19860827241973 40.60722563049771, -74.19853451987233 40.607505819958774, -74.19852937449721 40.60753615488979, -74.19853046765198 40.60755211298685, -74.1985378432281 40.607566465404155, -74.19854415769863 40.60757682853201, -74.1985567581577 40.60758718170092, -74.19857460248532 40.60759991940136, -74.19858720295339 40.60761027256693, -74.19859143437021 40.60762462951264, -74.19859358865118 40.60764457599694, -74.19859156493274 40.60766852082211, -74.19856466211478 40.60782129165239, -74.19854209241255 40.60798014072923, -74.19852997205231 40.608132845486594, -74.19850106123324 40.608278414671375, -74.19848557505937 40.608354255617066, -74.19844817178443 40.608467985220976, -74.19840652394227 40.60855185086274, -74.19829720779694 40.608778824725796, -74.19818536727156 40.60895175969791, -74.19800376594007 40.60922535823092, -74.19788149279209 40.609402338010646, -74.19780530522362 40.60949583905236, -74.19776143446083 40.609537412477025, -74.1977280090795 40.60956859298263, -74.1975010924253 40.60975987342829, -74.19747390814949 40.609776678881374, -74.19745925492919 40.6097806933754, -74.19744459345246 40.60978151732633, -74.19743411253755 40.6097791408375, -74.1974204554906 40.6097655979062, -74.19735943382784 40.60967472639421, -74.19728662290254 40.60955092132109, -74.19724346505636 40.6094791723215, -74.19718779039424 40.60942500138984, -74.19712460964662 40.609375440477976, -74.19688603419156 40.609191341990034, -74.19682199189236 40.609141175434225, -74.1967716205767 40.609109339913935, -74.19671705346349 40.609075915824654, -74.1966411687135 40.609037573500665, -74.19654465987362 40.60898905805834, -74.19639574508665 40.608928661430824, -74.19631812019327 40.60890639441463, -74.1961732186481 40.60887056863852, -74.19600346016873 40.608846118162)), ((-74.19416618606448 40.613746039142995, -74.19397946814617 40.613675236468055, -74.19328970409273 40.61168284059029, -74.19281257350056 40.610304569500705, -74.1924455455002 40.60924430749918, -74.19206387852896 40.60814171796561, -74.19206793225709 40.60814243071006, -74.19210573382902 40.608146158739885, -74.19215348213268 40.60815155951111, -74.19219481057526 40.60815686293495, -74.19225574252857 40.6081657590633, -74.19230134169636 40.6081732642898, -74.19232044237154 40.60817662820593, -74.19233498697061 40.608177990674655, -74.19234104935279 40.60817827319998, -74.19234716679479 40.60817839083703, -74.19236530002595 40.608177749934676, -74.19237527571653 40.6081767588718, -74.19239080652316 40.6081742843523, -74.19240370333955 40.608171323454535, -74.19241189566898 40.608168985488696, -74.19242506790445 40.608164422996346, -74.19243539550143 40.60816008139083, -74.19244452459756 40.60815561301623, -74.19245303957182 40.608150841292144, -74.19246153609716 40.60814540861392, -74.19247221009093 40.608137446319695, -74.19248464898347 40.60812606808395, -74.1924903234682 40.60810574546724, -74.19250027535782 40.608082571832405, -74.19251984772453 40.6080520148982, -74.19253447424165 40.60803508306492, -74.19255014518659 40.608020168454196, -74.19256944288449 40.60800500462362, -74.19258809352607 40.607992868534225, -74.19259989834778 40.607986165066386, -74.19260862237559 40.607983831598624, -74.1926170426188 40.6079830961684, -74.19262766574585 40.60798413828159, -74.19264046268609 40.607988758133374, -74.19265403443121 40.60799531461207, -74.19266642105342 40.60800187397632, -74.19267873719983 40.60800898727944, -74.19269148496693 40.608017036402316, -74.19270064972865 40.60802329948878, -74.1927325117205 40.608048824541605, -74.1927504579816 40.608066516754114, -74.19278491289401 40.60811184536394, -74.19280158425367 40.608144677510616, -74.19281076623956 40.60817121405, -74.19281531883406 40.60822641662162, -74.19282034392492 40.608270930984666, -74.19283066219579 40.60834067994775, -74.19284237497749 40.60840272799259, -74.19285978412628 40.6084778177678, -74.19286601691708 40.60850149288358, -74.19287101885291 40.60851956880707, -74.19288036770469 40.60855148478852, -74.19288860292062 40.6085778842289, -74.19289707730448 40.608603631288055, -74.19292260786116 40.60867427504472, -74.19294875663138 40.60873844029069, -74.19300423346156 40.60885595103654, -74.1930762490096 40.60893491137265, -74.19311760605332 40.608975233981205, -74.1931529591315 40.60900729535474, -74.19318926594552 40.60903818173196, -74.19324942101376 40.609085335586464, -74.19326622974167 40.609101374467365, -74.19329192369331 40.60912989767225, -74.1933217228753 40.60917484492099, -74.19333433293133 40.60920337661401, -74.19333895316657 40.609215664592256, -74.1933489479014 40.60925261517565, -74.19335278728232 40.60928047001783, -74.19335342434785 40.60929073041296, -74.19335691649825 40.609287634841785, -74.1933795635815 40.60926489814272, -74.1934041793168 40.60924382859796, -74.19342290578089 40.609221906256934, -74.19344318259147 40.60920205250796, -74.19347218763178 40.60918535300654, -74.19350458360212 40.60917345028167, -74.19353804443303 40.60917059781833, -74.19357249981854 40.60917088199522, -74.19381433162354 40.609188785713165, -74.19390057094407 40.6092040734358, -74.1939714799016 40.60921279063048, -74.19404383235997 40.60921728909273, -74.19412783109638 40.609214580760664, -74.19418899622279 40.609215879554405, -74.19425517237401 40.609219956066944, -74.19440335351968 40.60922241431072, -74.1945513771319 40.609216629236435, -74.1946245017089 40.60921318700965, -74.19470199184993 40.60920390825162, -74.19477252590897 40.609190201647344, -74.19484008521705 40.60917183262816, -74.19491147226388 40.60915891064971, -74.19495448588881 40.60915468898753, -74.19500657395992 40.60915157486684, -74.19504458636689 40.60915117987633, -74.1950679093708 40.609151719333056, -74.19509308603764 40.609152970654556, -74.19511647532072 40.609154759915796, -74.19513171063348 40.60915625323539, -74.19516254582676 40.6091618804854, -74.19519427583155 40.609164386793566, -74.19522617728916 40.60916127623546, -74.19525557013675 40.60915208869362, -74.19530057127496 40.60912850406719, -74.19534988657219 40.60911061960998, -74.19546301996942 40.609090125867276, -74.19557840247086 40.609079104397, -74.19569580539343 40.60907490444008, -74.19581315909652 40.609070848530784, -74.19598724274469 40.60909086493914, -74.19608641919314 40.609106322574824, -74.19611472866607 40.609113327177056, -74.19613713434947 40.60911976731285, -74.19615719933944 40.609126231250464, -74.19617951036791 40.60913423394817, -74.19624018464948 40.60916351896405, -74.19630477350991 40.609187529198564, -74.19637068534712 40.60920776304164, -74.19649685447617 40.60926767898629, -74.19662200769753 40.609328415106376, -74.19666804989082 40.609365537869635, -74.1967197837448 40.609398574202444, -74.19682517132888 40.60947893842364, -74.19690786938737 40.60955156449793, -74.19698264456241 40.60962728748397, -74.19709634040413 40.60978196283936, -74.19716416267492 40.60988665126576, -74.19717031863826 40.6098961547385, -74.19718888000425 40.609938306126665, -74.19719943188197 40.60998230111766, -74.19719848859232 40.61002778368335, -74.19718553992533 40.61007684751565, -74.19716549210736 40.61012393876996, -74.19713874434505 40.61016579866328, -74.19709873227356 40.61020428812325, -74.19705733467458 40.6102417695569, -74.19687684838497 40.610403789473075, -74.19684232591258 40.61043788028734, -74.19670655123987 40.61057209082741, -74.19665453775256 40.61063336500421, -74.19661236058352 40.61069921140016, -74.196602784292 40.61072759517362, -74.1965853812344 40.61075371130636, -74.19625161000447 40.61122966534885, -74.1962046410221 40.61130574701681, -74.19615065651067 40.61137942543298, -74.19609518947756 40.6114452519863, -74.19607553461884 40.611476874079464, -74.19606009992306 40.611510277410446, -74.1960426906487 40.61155212291264, -74.19597477628737 40.61173282249895, -74.19590992561682 40.6118680286782, -74.19586776632867 40.611964246713974, -74.1958424710618 40.61206230008496, -74.19583636873918 40.61210774008826, -74.19583569203574 40.6121807799951, -74.19583983403443 40.612242499316324, -74.19584086348297 40.61233682739037, -74.19583229566192 40.612385716995384, -74.1958171314253 40.6124804166563, -74.19580675836642 40.61251533861397, -74.19579554579315 40.61255290413624, -74.19578078385162 40.612585765064885, -74.19575756462933 40.61262022171408, -74.19574220389623 40.612645947910025, -74.19572807887624 40.61271429106959, -74.1957170063291 40.61278271547973, -74.19572129712323 40.61286780312921, -74.19573111149019 40.61295262562369, -74.19575502626373 40.61301750272679, -74.1957618823531 40.6130489310222, -74.19576537714048 40.61307531490691, -74.19576681997847 40.61310030017132, -74.19569585096181 40.61330355656833, -74.19564164602751 40.61342937270021, -74.19557868489768 40.61355610242549, -74.19555997542462 40.613602150097314, -74.19553065614302 40.6136520349334, -74.19549949768096 40.61369168664156, -74.19545583010765 40.61372135209706, -74.19541102395159 40.613750013586866, -74.19536927016303 40.61375609735487, -74.19532554632258 40.613757278404535, -74.19528200107142 40.613753261313875, -74.1952411870788 40.613744520825676, -74.19515413038359 40.613737530213065, -74.19506659626336 40.61373820920083, -74.19498290710447 40.613743654373216, -74.19489896391848 40.613745878743636, -74.19484658060512 40.61375392817591, -74.19479314756535 40.61375456085261, -74.1947052069054 40.613761717717885, -74.19461678907612 40.61376328667638, -74.1945219512195 40.61377381313002, -74.19442615433226 40.61377600228221, -74.19439655628187 40.613777141974765, -74.1943669594147 40.613778282558236, -74.1943196141069 40.61377880566313, -74.19426350893598 40.613773243408794, -74.19421580951513 40.61376293467531, -74.19416618606448 40.613746039142995)), ((-74.19447483197801 40.61521644454926, -74.19391608292187 40.61375843019356, -74.19398293060549 40.61377205668514, -74.19405441575122 40.613785847308904, -74.19412352216455 40.61380085130822, -74.19418537395518 40.613817801845705, -74.1944554843535 40.61382483307044, -74.1945120779814 40.61383335712609, -74.19457713610635 40.61383540106902, -74.19464488447748 40.6138320147671, -74.19517151766928 40.61384217301381, -74.19551196078538 40.61382880523301, -74.19554629675807 40.61383510181918, -74.1955682968349 40.61384495573856, -74.19559000780623 40.613860996740506, -74.1956103785688 40.61388262236275, -74.19562466336819 40.613906580788544, -74.19563584426406 40.61393148103942, -74.19564483143118 40.613952981045024, -74.19577522562666 40.61438012125203, -74.19578740227618 40.61441570990245, -74.19581254957023 40.61445581689502, -74.19586007713261 40.61448986305126, -74.19591038093333 40.614515980752486, -74.19595653501005 40.61453095792905, -74.1959987375055 40.614545941824986, -74.19616199174826 40.61467278570375, -74.19616966458065 40.61468243882579, -74.19617570492218 40.61469632629192, -74.19617818624805 40.614711517485745, -74.19617854545234 40.61473522944963, -74.19616960499957 40.61478883124103, -74.19616342947612 40.61484194293097, -74.19616230646518 40.6148940887421, -74.19616242980256 40.61493324508072, -74.19616635437369 40.61497429773772, -74.19617408794909 40.615013454596415, -74.1961837685866 40.615042821245574, -74.19619366120448 40.61508440132775, -74.19620348987083 40.61512351768671, -74.19621367814044 40.6151591348984, -74.19622092756744 40.615179501362896, -74.19622984168198 40.615194922914036, -74.19628041170071 40.61527799178404, -74.19628827372017 40.61529970978387, -74.19628834927799 40.615325405182446, -74.19627754623417 40.61535241050685, -74.19626285816123 40.615369930949484, -74.19624078750194 40.615389736013775, -74.19621092729881 40.61540966693556, -74.19615981387359 40.61543041667419, -74.1960842429303 40.61546142634871, -74.19601405829168 40.61548522170314, -74.19594387123969 40.615509017018674, -74.19589797745306 40.61552497866672, -74.19585613236337 40.61553695938963, -74.19581742450934 40.61554725257583, -74.19577842007048 40.61555997676602, -74.19572969518264 40.615576471775505, -74.19565966620661 40.61560548157713, -74.19562108114069 40.615624632033324, -74.19559356591449 40.61564319721216, -74.19556698823298 40.61566272344847, -74.19553830247365 40.61568955740748, -74.19551792522617 40.61571955787519, -74.1955043493099 40.615750540949406, -74.19548738195522 40.615785603755924, -74.19547565296321 40.61581655666986, -74.19546638343274 40.6158504357025, -74.19546244327861 40.615876171247315, -74.19546131534632 40.615898579079925, -74.19546349347722 40.615926495193676, -74.19546574263657 40.615952435438906, -74.19546219460624 40.61598011904863, -74.1954564645632 40.616007216525695, -74.19544638205383 40.61602821045324, -74.19543196123152 40.616051971858816, -74.19541101801488 40.6160751914293, -74.19538284416188 40.6161033923722, -74.19535047364671 40.6161278551647, -74.19530886106544 40.61614393717419, -74.19528199879896 40.61614828280913, -74.19525296402614 40.6161556975084, -74.19522615801401 40.6161655425289, -74.19520161946735 40.6161756979753, -74.19517730934844 40.61618880584365, -74.19515253963205 40.616203971281706, -74.19512556357176 40.616218720815844, -74.19509245948431 40.61623686310861, -74.1950632746535 40.61625077618873, -74.195043441325 40.616263222651995, -74.19501922823565 40.61627760906477, -74.19499527265143 40.61628953300561, -74.1949030861533 40.61633389512164, -74.19462513173507 40.61560862823267, -74.19452016939572 40.61533474430215, -74.19447483197801 40.61521644454926)), ((-74.18875180570319 40.608133900475295, -74.18874903762209 40.60746786240873, -74.18916691475216 40.60748985689996, -74.18919113806497 40.607385528279565, -74.1891952295954 40.60735457774875, -74.18920805556758 40.60732787681917, -74.18928169463857 40.6071831377639, -74.18929664447361 40.6071537461633, -74.18939798305065 40.606990790638285, -74.18940815735965 40.606977392989485, -74.18945688062018 40.60693659010076, -74.18948630796763 40.60691547923939, -74.18952604428148 40.60689346255465, -74.18954658655197 40.60688496465615, -74.18981921437144 40.60677262464716, -74.19002891169367 40.60668788824832, -74.1901198612903 40.606656267234804, -74.19015959579004 40.60664245230366, -74.19023902742948 40.606625363993494, -74.19027035046417 40.606623204917994, -74.19030629158577 40.60662454932982, -74.19033579977418 40.606631521851284, -74.19036532079947 40.60664340850228, -74.1903884017114 40.606658816055656, -74.19040227483892 40.606676346084164, -74.19040787344292 40.606700910302884, -74.19040999392904 40.606724375340725, -74.19041718231918 40.606816665319755, -74.1904241589641 40.60687737968227, -74.1904274660599 40.606912963803545, -74.19042983816101 40.60693847441373, -74.19043556548739 40.606961760573974, -74.19044571235254 40.6070030183681, -74.19045315694095 40.60702935355692, -74.1904578144256 40.60704582542425, -74.19048098363895 40.60709212528026, -74.19050552996585 40.607133648271954, -74.19054582250679 40.60717576831696, -74.19057644249781 40.60720414978645, -74.19058750886978 40.60721440641271, -74.1906290482225 40.607239612524786, -74.19065072615335 40.60725352748247, -74.19068710114236 40.60726806823172, -74.19074071849472 40.6072895008815, -74.19075678890597 40.607295630191295, -74.19079364108505 40.607309682931515, -74.19082480815752 40.60731444719107, -74.19085061013016 40.60731440434996, -74.19087087148661 40.607310158054226, -74.19087964332758 40.60730596055389, -74.19089295684441 40.60729959065078, -74.19090858195705 40.60728552193107, -74.19092603425327 40.607265834507814, -74.19096337383267 40.607213994159565, -74.19100150786318 40.60714291458921, -74.1910772564754 40.60698283044566, -74.19142854224663 40.60793059647924, -74.19146984998049 40.60804204402715, -74.19108479606254 40.60804335391812, -74.19093385745678 40.60803841053564, -74.19086350261303 40.60804067063389, -74.19067758715921 40.608061567885315, -74.19051245270809 40.60807808086317, -74.19033311347037 40.608095969713716, -74.18986356278715 40.60813062041497, -74.18977478291086 40.608140240543705, -74.18969307712264 40.608139021933056, -74.18948636110346 40.60812856653345, -74.1892874071933 40.60811942174906, -74.1892572040968 40.60811676361109, -74.18921453621117 40.60810194910516, -74.1891826097124 40.6081182408023, -74.18914001084951 40.6081277835187, -74.1890778732696 40.60813735836303, -74.18900151059296 40.60814154351859, -74.18890736716067 40.60813899221449, -74.18875180570319 40.608133900475295)), ((-74.19391504962556 40.614995314935676, -74.19388727941116 40.6149920739696, -74.19385381346567 40.614992130412354, -74.19381148362427 40.61499426759081, -74.1937855214996 40.61499511913079, -74.19375218819141 40.614991203112815, -74.19371695351708 40.614981588177116, -74.19368364449444 40.61496852548502, -74.1936522419828 40.61494826709329, -74.19361773238586 40.61491809826638, -74.19359034016058 40.61488870810193, -74.19357160755604 40.61486584564924, -74.19354367470328 40.61483583142094, -74.19350574623459 40.614805969091385, -74.19346870561746 40.61478397582714, -74.19345107937747 40.61477668243806, -74.1934327260391 40.61477212245703, -74.19340513469163 40.614769805010376, -74.19337618328963 40.61477200596862, -74.19335663456822 40.614774146077444, -74.19333383840247 40.614775841383356, -74.19331160218039 40.614774616247054, -74.19328653868965 40.61476827908815, -74.19322512924671 40.61474066513011, -74.19317885784332 40.614714791625744, -74.19316802147044 40.61471107806854, -74.19315553902808 40.61471023994514, -74.1931196029079 40.614712966774135, -74.19307367747048 40.614714351481425, -74.19303434915207 40.61470989240369, -74.19297966503895 40.6146941584285, -74.1928729044398 40.61465230029152, -74.19284692457396 40.6146469686577, -74.1927877768007 40.61464048955184, -74.19273143478529 40.6146353682027, -74.19263447289765 40.61462372847896, -74.19261428123328 40.614621733436366, -74.19259374945501 40.614616536699785, -74.19250800747993 40.61457196394979, -74.19248668259571 40.61456423715181, -74.19246904358602 40.61455860509882, -74.19244622066996 40.61455469271608, -74.19242153639233 40.61455481778834, -74.19239198591984 40.61455660616155, -74.19236286979907 40.61455862613524, -74.19232896303363 40.61455859191928, -74.1922867766815 40.61455344036299, -74.19224500033923 40.614542527459, -74.1921281525627 40.61449339216382, -74.19231052072371 40.61393325266701, -74.19356682724266 40.61370103956951, -74.19405046009044 40.614955593982025, -74.19411511238066 40.61512329910731, -74.19409053723349 40.61511103855832, -74.1940692298515 40.61509522802821, -74.19400121698233 40.61503814430708, -74.19398212154466 40.6150230549487, -74.19396323733265 40.6150111125591, -74.19394012430647 40.61500138628444, -74.19391504962556 40.614995314935676)))",R130,6329,R130,R-02,R-02,R-02,R-02,West Shore Exwy. to Kill Van Kull from River Rd. to South Ave.,502,50,122,10314,R,178.47,False,Saw Mill Creek Marsh,No,100004574,PARK,20100106000000.00000,19940325000000.00000,,DPR,False,Saw Mill Creek Marsh,N,Saw Mill Creek Marsh,Large Park,Nature Area,http://www.nycgovparks.org/parks/R130/,Yes,63,24,11,{80620C21-5CDD-478B-A5FA-7D885FCB0B44} +"MULTIPOLYGON (((-73.89662832487748 40.74855683901875, -73.8966729986979 40.748781500610356, -73.8965001601925 40.74871146520692, -73.89643751728838 40.74857905331576, -73.89662832487748 40.74855683901875)))",Q067,5878,Q067,Q-02,Q-02,Q-02,Q-02,"Broadway, 69 St., 37 Ave.",402,26,108,11377,Q,0.071,False,Pigeon Paradise,Yes,100000198,PARK,20090423000000.00000,19241001000000.00000,,DPR,True,Pigeon Paradise,N,Pigeon Paradise,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q067/,No,34,16,14,{95E5ED60-FFC1-49E9-B73A-291CEF25934D} +"MULTIPOLYGON (((-73.91770512122248 40.684846803167105, -73.9201877821644 40.6845601982516, -73.92030025046228 40.685113498985146, -73.91780474918319 40.68540147313622, -73.91770512122248 40.684846803167105)))",B079,5427,B079,B-03,B-03,B-03,B-03,Halsey St. bet. Howard Ave. and Saratoga Ave.,303,41,81,11233,B,3.214,False,Saratoga Park,Yes,100004718,PARK,20100106000000.00000,18950903000000.00000,842 HALSEY STREET,DPR,False,Saratoga Park,Y,Saratoga Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B079/,No,55,25,8,{D40F920D-64EA-4322-9343-7E4A0D21B714} +"MULTIPOLYGON (((-73.92306430570771 40.81159902717483, -73.92324020140764 40.81135960298409, -73.92339101899105 40.811423370297874, -73.9232908346508 40.81155973991423, -73.92327972407053 40.81155504182808, -73.92320401307303 40.81165809662288, -73.92306430570771 40.81159902717483)))",X119,4819,X119,X-01,X-01,X-01,X-01,E. 141 St. bet. Willis Ave. and Alexander Ave.,201,8,40,10454,X,0.11,False,Alexander's Alley,Yes,100004954,PARK,20100106000000.00000,19370602000000.00000,344 EAST 141 STREET,DPR,True,Alexander's Alley,Y,Alexander's Alley,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/X119/,No,84,29,15,{6F919BCC-66C0-4E08-AC7D-636D8C7521A4} +"MULTIPOLYGON (((-73.91093749024229 40.82389425290286, -73.9111045293722 40.8234849198841, -73.91111020607033 40.82348510345893, -73.91112031409915 40.82348509504138, -73.91113442242671 40.823484551209134, -73.91114430740701 40.823483797907244, -73.91115851557207 40.82348216905104, -73.91116972835945 40.82348041902021, -73.91118263259875 40.8234778796554, -73.91119665111513 40.82347445956152, -73.91120816120775 40.82347110597212, -73.91122268797774 40.823466123005055, -73.91123288672762 40.82346208582749, -73.91124244322594 40.82345786625447, -73.91125193034817 40.82345322339405, -73.91125704189551 40.82345052043631, -73.91126547894552 40.8234457236823, -73.91127235525252 40.82344148133291, -73.91128324128489 40.82343407502295, -73.91129538890763 40.8234246543719, -73.91129894681316 40.82342162333707, -73.91130986740104 40.82341141020448, -73.91132627436993 40.82339296625209, -73.91190440588281 40.82357083504159, -73.91198322995706 40.82359508616298, -73.91217320557813 40.82359073213314, -73.91205975692266 40.823602166618606, -73.91194817453544 40.8236159383046, -73.91184866485587 40.82363203158639, -73.91177950177675 40.82364812549063, -73.91172065221987 40.82366389226486, -73.91160880871638 40.823708119103195, -73.91154706512594 40.823733948415885, -73.91154702717105 40.82373396459573, -73.91149094349642 40.82375742631282, -73.91142908239345 40.823783304098804, -73.9113411381572 40.82382009382366, -73.91129235822459 40.82384049937232, -73.91123691485559 40.823863692209834, -73.91115183242636 40.823899283631484, -73.91108184519699 40.82392856154623, -73.91106973053421 40.82393362920119, -73.91089089255946 40.82400844033532, -73.91093749024229 40.82389425290286)))",X053,6583,X053,X-03,X-03,X-03,X-03,Elton Av bet. E 161 St and E 162 St,203,17,42,10451,X,0.636,False,O'Neill Triangle,Yes,100004972,PARK,20100106000000.00000,18980711000000.00000,,DPR,True,O'Neill Triangle,Y,O'Neill Triangle,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/X053/,No,79,32,15,{E7B5D085-CF6C-4C61-AC69-DCBDC86838DD} +"MULTIPOLYGON (((-73.91458888811981 40.83089220265284, -73.91490010513586 40.831000971189944, -73.91520383516388 40.83111817281899, -73.91520387545528 40.831118186356, -73.9148780569934 40.831665811972684, -73.91426169224859 40.83145039824322, -73.91458888811981 40.83089220265284)))",X115,5681,X115,X-04,X-04,X-04,X-04,Morris Av bet. Mc Clellan St and E 166 St,204,16,44,10456,X,0.977,False,Mott Playground,Yes,100004926,PARK,20100106000000.00000,19360821000000.00000,,DPR,False,Mott Playground,Y,Mott Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X115/,No,77,32,15,{9DDFCA02-0E1C-43BE-899E-AB21F5C43619} +"MULTIPOLYGON (((-74.09738777210076 40.58547535440777, -74.09793273181471 40.58503281762105, -74.09827638489017 40.58475374893731, -74.09851929324607 40.58455649001457, -74.09864044276057 40.58462861531255, -74.0988045601789 40.58472632075155, -74.098979811043 40.58483065322816, -74.09908974580537 40.584896100419634, -74.0988529608732 40.5850883888838, -74.09885042320181 40.58509044966521, -74.0986147340771 40.58528184607262, -74.09860345075168 40.58529100868336, -74.09834179757812 40.58510211926519, -74.09824673977165 40.58517931156626, -74.09850839415996 40.585368201198584, -74.09835911716256 40.58548942436092, -74.09826085218344 40.585569221930484, -74.09799635398572 40.585784010291135, -74.09787820701361 40.58572408926713, -74.09775199026846 40.58566007670219, -74.09762967813046 40.58559804273425, -74.09738777210076 40.58547535440777)), ((-74.09846079255627 40.58564795378778, -74.09861338063503 40.58552515623895, -74.09875903220261 40.585407936891144, -74.09902248508469 40.5855981205595, -74.0991227086901 40.58551745974733, -74.09885925820319 40.58532727630532, -74.09900104868085 40.5852131640765, -74.09900597660797 40.58520919932517, -74.09926080158006 40.585004117427324, -74.09937835797813 40.585073595707655, -74.09960628948333 40.585208305857584, -74.09972565422866 40.5852788529374, -74.09983656982064 40.585344404823346, -74.09957886195174 40.58555180934018, -74.09948018553027 40.58563122378603, -74.0993856699565 40.585707289100405, -74.09928544402139 40.58578795014259, -74.09923390165429 40.58582943048355, -74.09903810779784 40.585987002917925, -74.09878432487011 40.586191241413324, -74.09866089039755 40.58612878536269, -74.09829410268415 40.585943197344584, -74.09817119988185 40.58588101046954, -74.09846079255627 40.58564795378778)), ((-74.09867910700477 40.58444296066631, -74.09892719592162 40.584244052967385, -74.0990315945411 40.5843197385407, -74.09879306062973 40.58451098559384, -74.09867910700477 40.58444296066631)))",R148,6132,R148,R-02B,R-02,R-02,R-02,"Zoe St., Husson St., Naughton Ave., Seaver Ave.",502,50,122,10305,R,3.903,False,Last Chance Pond Park,No,100004880,PARK,20100106000000.00000,19991230000000.00000,,DPR,False,Last Chance Pond Park,N,Last Chance Pond Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R148/,No,64,24,11,{0EF2B301-32D6-40E3-B75D-69945F3DCB45} +"MULTIPOLYGON (((-74.02359665349556 40.640193247461305, -74.02341529011781 40.64008402642022, -74.02331136988512 40.64002144258362, -74.02323982396477 40.639978355545445, -74.0234042082066 40.639789668068666, -74.02347062828261 40.63971191546347, -74.02360577604315 40.63955121276941, -74.0236127709058 40.63954484466679, -74.02361926161869 40.63954024888784, -74.02362856686804 40.639535231988056, -74.02363643767453 40.6395321406912, -74.0236466019303 40.639529301967876, -74.02365193776735 40.63952827608034, -74.0236574084702 40.63952753652972, -74.02366295150698 40.639527426426454, -74.02366821563494 40.639527534305834, -74.02367467268596 40.639528034565494, -74.02368137472259 40.63952932813123, -74.02368743382465 40.639531049575375, -74.02369369175341 40.63953340764485, -74.02370643749569 40.63953966452275, -74.02391036126437 40.63966242782394, -74.02411488644556 40.63978555174385, -74.02431433038062 40.63990561641084, -74.02452540763181 40.64003268248328, -74.02461221943588 40.640084942639746, -74.02437782262872 40.64031033382625, -74.02423078199266 40.64022181691644, -74.02411770181774 40.64015374347647, -74.02389178217472 40.64037098039828, -74.02359665349556 40.640193247461305)))",B210A,5073,B210A,B-07,B-07,B-07,B-07,3 Ave. bet. 64 St. and 65 St.,307,38,72,11220,B,1.51,False,John Allen Payne Playground,Yes,100004288,PARK,20100106000000.00000,19400616000000.00000,6400 3 AVENUE,DPR,True,John Allen Payne Playground,Y,John Allen Payne Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B210A/,No,51,23,7,{5B63B5F3-C463-4288-B5E3-12A7E4DC95A2} +"MULTIPOLYGON (((-73.95377718093302 40.713962509939584, -73.95486516997107 40.71288206863662, -73.95495487163768 40.712913533395074, -73.95428624592324 40.71396428640216, -73.95377718093302 40.713962509939584)))",B223R,4622,B223R,B-01,B-01,B-01,B-01,"Hope St., Marcy Ave., Metropolitan Ave.",301,34,90,11211,B,0.752,False,Jaime Campiz Playground,Yes,100004394,PARK,20100106000000.00000,19490310000000.00000,15 MARCY AVENUE,DPR,True,Jaime Campiz Playground,Y,Jaime Campiz Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223R/,No,53,18,7,{A2C79C14-76FA-4457-A54E-C505B7FB6076} +"MULTIPOLYGON (((-73.98082609012458 40.72295590761856, -73.98074848460199 40.722923148545405, -73.98091590924577 40.72269212281525, -73.98099351458161 40.72272488177659, -73.98082609012458 40.72295590761856)))",M410,54783,M410,M-03,,,,E. 4 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.054,False,,,100036978,PARK,,20180209000000.00000,,DPR,False,Sage Garden,,Sage Garden,,Garden,,No,74,26,12,{62B5CD76-8EB9-4913-916A-76515508543F} +"MULTIPOLYGON (((-74.12087634791477 40.640988014341666, -74.12095226433995 40.640966998344325, -74.12100408008268 40.64095265619342, -74.12140478669527 40.64084173112462, -74.12142800289682 40.64090191893463, -74.12144534916189 40.640946893262324, -74.12411844951777 40.640070759573454, -74.12414777444428 40.640530355720955, -74.1242197922429 40.641659014080474, -74.1240016910921 40.641681212233344, -74.12333281198937 40.64174928858885, -74.12327874782932 40.641754791099146, -74.12305019631215 40.64177805135605, -74.12268264675834 40.64181545720238, -74.12214531437102 40.641870139594545, -74.12198822146551 40.64188612576741, -74.1218144580057 40.64190380795352, -74.12168120052323 40.64191736857195, -74.12154102728283 40.641931631546264, -74.12133252667493 40.64195284822978, -74.12125167519461 40.6419610751017, -74.12108520410526 40.641978014572906, -74.12079847435213 40.64123464394007, -74.1207154247195 40.64101932604141, -74.12087634791477 40.640988014341666)), ((-74.12069806697104 40.64044228248385, -74.12074105780756 40.64039085732096, -74.12084106830011 40.64050426363139, -74.12095807049458 40.640794460844724, -74.1208777481644 40.64081734555284, -74.12080036568314 40.640838188340844, -74.12065761228162 40.64086531416917, -74.12054627005564 40.64088647157406, -74.12041371139593 40.64064757841414, -74.12052179174489 40.6405734461034, -74.12064342037517 40.64049002322744, -74.12067796287774 40.640466330339855, -74.12069806697104 40.64044228248385)))",R160,6386,R160,R-01,R-01,R-01,R-01,"Richmond Ter. at Tompkins Ct., Kill Van Kull",501,49,120,10310,R,9.934,False,Heritage Park,No,100003742,PARK,20100106000000.00000,20040305000000.00000,,DPR,False,Heritage Park,N,Heritage Park,Small Park,Neighborhood Park,http://www.nycgovparks.org/parks/R160/,Yes,61,23,11,{5EE6B70C-C4EC-46B0-B812-F90F0AF73B95} +"MULTIPOLYGON (((-73.80684379147954 40.703697165985474, -73.80721055618399 40.703597498749836, -73.80726821460358 40.70372172663927, -73.8069034861611 40.70382084005597, -73.80684379147954 40.703697165985474)))",Q488,5935,Q488,Q-12,Q-12,Q-12,Q-12,148 St. bet. 89 Ave. and 90 Ave.,412,24,103,11435,Q,0.121,False,George Eagle Carr Community Garden,No,100000128,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,George Eagle Carr Community Garden,N,George Eagle Carr Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q488/,No,32,14,5,{27ACD5EC-D8B6-4148-9169-CA9DA9668581} +"MULTIPOLYGON (((-73.97975987534619 40.638231770611675, -73.9796490053496 40.63763483138102, -73.98084492664921 40.638352481904235, -73.98050534893531 40.638679113206805, -73.97975987534619 40.638231770611675)))",B151,5484,B151,B-12,B-12,B-12,B-12,Dahill Rd. bet. 37 St. and 38 St.,312,39,66,11218,B,1.385,False,Dome Playground,Yes,100004308,PARK,20100106000000.00000,19360820000000.00000,384 DAHILL ROAD,DPR,False,Dome Playground,Y,Dome Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B151/,No,44,17,10,{854B2610-8BEC-45F0-A2E6-1CB7438EE555} +"MULTIPOLYGON (((-74.0758098373344 40.6267172323797, -74.07752518529243 40.62655301780597, -74.0775284229167 40.62657164108177, -74.07774600561628 40.62654960250579, -74.07788365527263 40.62653566024042, -74.07788447725869 40.62653613605879, -74.07789898525965 40.62653410726334, -74.07790423699126 40.62653350936155, -74.07790954741552 40.626533578705164, -74.07791476878911 40.62653431179228, -74.07791976162434 40.6265356898065, -74.07792438995588 40.62653767411767, -74.07792852607515 40.62654021168163, -74.07793205761944 40.62654323323465, -74.07793488875583 40.62654665509331, -74.07793694373561 40.62655038635648, -74.07793816334308 40.626554324405, -74.07793851790396 40.62655836119665, -74.07793799547184 40.62656238777657, -74.07793661128198 40.62656629337044, -74.07783351958625 40.626783929784295, -74.07781512308114 40.626822509714664, -74.07779814196161 40.626845422334966, -74.07778264961286 40.62686187451439, -74.07776425076888 40.62687921747106, -74.0777404079948 40.62689758259418, -74.0777154832758 40.626911480963244, -74.07768339926616 40.62692505277307, -74.07766321763641 40.62693087566317, -74.07763495166678 40.626938739184574, -74.07759303184544 40.626943311508434, -74.07604627093234 40.627106525079824, -74.0758098373344 40.6267172323797)))",R028,6018,R028,R-01,R-01,R-01,R-01,"Canal St., Water St., Bay St.",501,49,120,10304,R,1.777,False,Tappen Park,Yes,100004531,PARK,20100106000000.00000,18670510000000.00000,,DPR/BORO PRES.,True,Tappen Park,Y,Tappen Park,Neighborhood Park,Historic House Park,http://www.nycgovparks.org/parks/R028/,No,61,23,11,{955BB69E-5EFE-49D8-8649-C888FA4C791D} +"MULTIPOLYGON (((-73.97977396106187 40.72006798974809, -73.9803731706343 40.71891971382548, -73.98176328278323 40.719339632229946, -73.98170163894068 40.719457769336486, -73.98169310562513 40.719457156533785, -73.98115752152455 40.72048592952396, -73.97980501754478 40.72007737040664, -73.97977396106187 40.72006798974809)))",M033,5567,M033,M-03,M-03,M-03,M-03,"E Houston St, Stanton St, Sheriff St, Pitt St",103,2,7,10002,M,4.3,False,Hamilton Fish Park,Yes,100005068,PARK,20100106000000.00000,18970622000000.00000,128 PITT STREET,DPR,True,Hamilton Fish Park,Y,Hamilton Fish Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M033/,No,74,26,7,{D00C4E51-80F2-4CA2-8928-93161F8C15A8} +"MULTIPOLYGON (((-73.93496556044501 40.8060121577119, -73.93495645738437 40.80598820471773, -73.93581772936048 40.80634987289332, -73.93549608567243 40.80679331583755, -73.93487256713082 40.80652768563723, -73.93487305123993 40.80652708888022, -73.93487680673118 40.80652237148924, -73.93488050891577 40.80651762975453, -73.93488415660673 40.80651286547649, -73.9348877521762 40.80650807685542, -73.93489129325204 40.80650326569103, -73.93489478102038 40.80649843108345, -73.93489821429434 40.806493574833006, -73.93490159188963 40.80648869603854, -73.93490491736075 40.806483795602595, -73.93490818478215 40.80647887352183, -73.93491139889167 40.8064739325004, -73.9349145573226 40.80646896893493, -73.93491766007232 40.80646398552704, -73.93492070714078 40.806458982276595, -73.93492369615784 40.806453959182384, -73.93492663067705 40.80644891804733, -73.93492950951509 40.806443857069794, -73.93493233030082 40.80643877714898, -73.93493509421678 40.806433680986984, -73.93493780008053 40.806428565881724, -73.93494045025959 40.806423434535986, -73.93494304120041 40.80641828514677, -73.93494557645661 40.8064131195171, -73.93494805247285 40.80640793764498, -73.93495047043425 40.80640273953106, -73.93495283033907 40.8063975269764, -73.93495513218821 40.80639229908042, -73.93495737479657 40.80638705584248, -73.93495955934753 40.80638179906424, -73.9349616846568 40.806376527844606, -73.93496375072355 40.806371243083994, -73.934965757547 40.806365945682955, -73.93496770512704 40.806360635641504, -73.9349695934637 40.80635531295956, -73.93497142137196 40.806349977636565, -73.934973190036 40.806344630573605, -73.93497489826902 40.80633927357105, -73.93497654607276 40.80633390482794, -73.9349781346314 40.80632852524534, -73.9349796627591 40.80632313572321, -73.9349811316391 40.80631773806315, -73.93498253890387 40.80631232956229, -73.93498388455177 40.8063069120217, -73.93498516976597 40.80630148724302, -73.9349863969186 40.806296053426536, -73.9349875612684 40.8062906114702, -73.93498866518371 40.80628516317625, -73.93498970629526 40.80627970764292, -73.93499068815753 40.80627424577261, -73.93499160840027 40.80626877756408, -73.93499246702356 40.80626330301733, -73.9349932640265 40.80625782303279, -73.93499400059247 40.80625233941217, -73.93499467672325 40.8062468503545, -73.93499528886171 40.80624135765872, -73.9349958405642 40.80623586042638, -73.93499633064457 40.80623035955726, -73.9349967591012 40.80622485685241, -73.93499712712007 40.806219351411976, -73.93499743114673 40.80621384233347, -73.93499767591727 40.806208334122026, -73.93499785788076 40.80620282227318, -73.93499797821877 40.80619731038958, -73.93499803693132 40.80619179847124, -73.93499803402024 40.80618628471712, -73.93499796829688 40.80618077272861, -73.93499784213326 40.806175260706, -73.93499765434335 40.80616974954918, -73.93499740374122 40.80616424015786, -73.9349970926971 40.8061587325335, -73.93499671884078 40.806153226674695, -73.93499628454074 40.80614772438379, -73.93499578861363 40.80614222385913, -73.93499522987179 40.806136727801544, -73.93499461068622 40.80613123531186, -73.93499392987185 40.80612574638943, -73.934993187427 40.80612026283519, -73.93499238335251 40.80611478374868, -73.93499151883265 40.80610931003111, -73.9349905926814 40.806103842582225, -73.93498960489889 40.80609838140207, -73.9349885578561 40.80609292559149, -73.93498744799517 40.80608747784992, -73.9349862776871 40.806082037278266, -73.93498504574605 40.80607660477634, -73.93498375335797 40.80607117944426, -73.93498240170621 40.80606576308374, -73.93498098842055 40.80606035569341, -73.93497951468527 40.806054958174435, -73.93497797931437 40.806049571426676, -73.93497638586673 40.80604419185011, -73.93497473078175 40.80603882484575, -73.9349730164314 40.80603346861391, -73.93497124163056 40.806028123153936, -73.93496940756357 40.806022789366935, -73.93496751186017 40.806017467251664, -73.93496556044501 40.8060121577119)))",M208A,4876,M208A,M-11,M-11,M-11,M-11,"Lexington Ave., E. 128 St. to E. 129 St.",111,9,25,10035,M,0.883,False,Alice Kornegay Triangle,Yes,100004529,PARK,20100106000000.00000,19470116000000.00000,145 EAST 128 STREET,DPR,True,Alice Kornegay Triangle,Y,Alice Kornegay Triangle,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M208A/,No,68,29,13,{4EA7522D-BAB6-4093-ADD8-30777A57E696} +"MULTIPOLYGON (((-74.18908028887722 40.56358354848781, -74.18897415617349 40.562960001649316, -74.18885141344097 40.56223885490748, -74.18883191735762 40.562124311046105, -74.19005401460224 40.56201912461879, -74.19002445891479 40.56179465219011, -74.19001005647985 40.561685269122215, -74.18999565527021 40.561575885149026, -74.1896633512121 40.5616143753912, -74.18960754912342 40.561264853900376, -74.18959237503898 40.561169952534115, -74.18959235247428 40.56116990664443, -74.18957495523861 40.56106091928996, -74.18956885330215 40.561022715472205, -74.18956889225926 40.56102271270632, -74.18949450774785 40.560556788091866, -74.18958490688512 40.56064407564228, -74.18964072277939 40.56099369349542, -74.18980612319451 40.56097453531597, -74.18975780266075 40.5608110208073, -74.1896347382201 40.56039951002635, -74.18963633593494 40.560399983767475, -74.18960268856341 40.56028612076696, -74.18937534879214 40.560057752801434, -74.1895093711686 40.55997033905014, -74.189457535173 40.55979492612816, -74.1892569068659 40.559918741760065, -74.18893589081037 40.55959879048671, -74.18869902215819 40.55960818157013, -74.1886810925427 40.559490218483155, -74.18865498928139 40.55931848480028, -74.1884192302158 40.55908418978272, -74.18833709566364 40.55900256558435, -74.18858354128093 40.558848396080656, -74.1885639025414 40.55871918998392, -74.18855396167878 40.558653782961976, -74.18854454537875 40.558591831303296, -74.18844488399986 40.558653098378436, -74.18816205256144 40.55882696951569, -74.18807785772806 40.558743049459174, -74.1879867459661 40.558652236316036, -74.1878975904742 40.55856337224403, -74.18780972344427 40.558475791949284, -74.18776869562245 40.558434897626114, -74.18809153312127 40.558234862843314, -74.18819813744884 40.55816881009703, -74.18831225780151 40.55809809910493, -74.18845597133569 40.55800905152473, -74.18844569748917 40.55794146755993, -74.1884261759564 40.557813022184234, -74.18765282619727 40.558288110962, -74.18729116074184 40.55792761938484, -74.1876208029236 40.557723435091646, -74.18743148129253 40.55771839778004, -74.18721251129514 40.5577125718984, -74.18711055885103 40.55777488976931, -74.187041332525 40.55770801676877, -74.18667474058222 40.557698261636155, -74.18697893166055 40.5580055473985, -74.18715036454935 40.559003821074334, -74.18682636710837 40.55903544108625, -74.1867028983566 40.5584686588011, -74.18670160677142 40.55847038991398, -74.18668917242688 40.55840564957405, -74.18667648469346 40.55834740515101, -74.18653426470622 40.55769452215077, -74.18652093726625 40.55745187046217, -74.18651648520088 40.55732384244748, -74.18651176354923 40.557114887133565, -74.18650831479587 40.55696221634192, -74.18650539304498 40.55683295211323, -74.18649835434468 40.556521414217194, -74.18650057235928 40.55652251106046, -74.18649032569851 40.55616609065072, -74.18514732740122 40.55487378707893, -74.18514428866769 40.554870897680814, -74.18522418918235 40.554776378201495, -74.18559559409503 40.55433701252514, -74.18579598580429 40.55443782320677, -74.18608314514657 40.55472189451938, -74.18640908856779 40.55504432679546, -74.186843417129 40.555473973425904, -74.18692331301034 40.55542439722528, -74.18702065429878 40.55536516231478, -74.18680166959035 40.555147338788366, -74.18802791634302 40.55440111789944, -74.18870834155628 40.553987037682205, -74.18875095882728 40.553961102677675, -74.18876039724604 40.553970450856376, -74.18927743769682 40.554482551497195, -74.188568215768 40.55493626056036, -74.18869980371879 40.555066590376576, -74.18940336223166 40.554616504566695, -74.18991900767425 40.555116156608726, -74.18920866613153 40.555570583767945, -74.1893910697981 40.555751238816924, -74.19010384210934 40.555295254904145, -74.19048687701208 40.55566639783582, -74.1897690639589 40.556125607323466, -74.18991073110861 40.55627788837276, -74.18991338635398 40.55628076387053, -74.19064071776629 40.55581546362675, -74.19102839262821 40.55619109608176, -74.19030559835849 40.556653495147636, -74.19038227502584 40.556724658363805, -74.19043025973265 40.556769192766595, -74.19114989007322 40.556308818071685, -74.19155109752289 40.556697555029686, -74.19084191584213 40.557151247350376, -74.19092874736575 40.5572318326599, -74.19103839882332 40.55733364411362, -74.19174262189141 40.55688312422219, -74.1921502440011 40.557278068316776, -74.19144812740322 40.55771469833691, -74.19149169590013 40.557754892808084, -74.19158179558617 40.557836982358566, -74.19227577564546 40.5574054117072, -74.19267425129559 40.55778725215739, -74.19199253202117 40.558211198846394, -74.19203411802981 40.55824908567069, -74.19212652866912 40.55833327996489, -74.19280424703047 40.55791182015658, -74.19298359992305 40.55808368005662, -74.1932076896355 40.55829840970135, -74.19254238414592 40.55871215155214, -74.19258163627696 40.558747913242335, -74.19267404947432 40.55883210618991, -74.19333542474385 40.55842080882683, -74.19371645784956 40.558785919787155, -74.19306680728324 40.55918992785866, -74.19313162745911 40.55924898175547, -74.19194905211342 40.5599843864716, -74.19128838518466 40.56040979845273, -74.19131026495329 40.56046853134828, -74.19165124473204 40.560251928987384, -74.19192777936436 40.56007626414421, -74.19206556214976 40.56020306946568, -74.19238117778289 40.56049353957423, -74.19152326151384 40.56104027439737, -74.19156712662235 40.56115801907708, -74.1924757315102 40.5605810214163, -74.19284025278469 40.56091686152805, -74.19293205051603 40.56100143711502, -74.19265574200233 40.561177312903354, -74.19202572359558 40.561578327390514, -74.19206821673117 40.561692383807, -74.19274734730242 40.56126226628012, -74.19302357124084 40.56108732156063, -74.19311575337082 40.56117277797096, -74.19329485099192 40.56133880776601, -74.19347543535372 40.561506214384934, -74.19329781807265 40.561619514354064, -74.19228238271748 40.562267237474195, -74.1921211245258 40.56183439677645, -74.19200343293834 40.56185930405539, -74.19184118115624 40.56189364123025, -74.19195922075632 40.562210483754896, -74.19219562704374 40.562160452232284, -74.19233581311528 40.56253672814572, -74.1920621809963 40.56248684023509, -74.19178919672285 40.56243461192124, -74.19149767303846 40.56243374304005, -74.19128768317654 40.56245746254381, -74.19103692559702 40.56248578633469, -74.1908906396705 40.562524710808994, -74.1906260224475 40.56259512127597, -74.19052796129296 40.562681090745485, -74.19041694947254 40.56277841383891, -74.19034510551269 40.56284139874569, -74.19018120051838 40.56298509186107, -74.18954984661312 40.56349221661662, -74.18954471162985 40.56345404272805, -74.18933118279077 40.56352617503893, -74.18926631979052 40.563543558556574, -74.18923194674122 40.563552770853335, -74.18916566857767 40.5635662213407, -74.18913660563986 40.563572119927834, -74.18908028887722 40.56358354848781)), ((-74.1874253034781 40.55919765168463, -74.18812547209941 40.55913704962083, -74.18857000812707 40.561794333290656, -74.18859144185656 40.56192245397233, -74.18859152591864 40.56192295272656, -74.18789412902896 40.56198387362344, -74.1874253034781 40.55919765168463)), ((-74.18840618533349 40.55325678670323, -74.18826983581572 40.55312368441312, -74.18817476723756 40.55303087960269, -74.18809285762491 40.55295092080914, -74.1879037114231 40.552766276361126, -74.18814715766824 40.552557228990864, -74.18885454255515 40.55194978723338, -74.18898595735828 40.55205208718708, -74.18914035254346 40.55216507983923, -74.18923212624769 40.55225124248729, -74.1894375130625 40.55245266092709, -74.1895899888681 40.55260219057118, -74.18976433690116 40.55277316957594, -74.18982179327632 40.55282951522849, -74.18987824460417 40.55288487463442, -74.18995518626514 40.55296704396836, -74.18953934258866 40.55321505661632, -74.18949070215606 40.553167577287326, -74.18933331445561 40.55328238675911, -74.18936748053173 40.55331573822178, -74.18892954127892 40.553576923784995, -74.1888177067475 40.553658502849, -74.18861444815735 40.55346008758678, -74.18840618533349 40.55325678670323)), ((-74.19266878879903 40.55629060091633, -74.19322034409676 40.55593773082211, -74.19448945633275 40.55714232776765, -74.1952140467144 40.55783005639726, -74.1951998748545 40.55783857876721, -74.19522255450632 40.5578634758385, -74.19467701023615 40.55819672008723, -74.19393790015488 40.55749520391668, -74.19266878879903 40.55629060091633)), ((-74.19340326631105 40.55582069917606, -74.19395475021545 40.55546786707231, -74.19527478315185 40.55671914371799, -74.1958904280907 40.55730486407521, -74.19596670588905 40.557377433577095, -74.1954015064663 40.5577173256056, -74.19472226707275 40.55707264215327, -74.19340326631105 40.55582069917606)), ((-74.19195531626478 40.55674705305578, -74.1925071030112 40.55639404194186, -74.19373802184953 40.55757356210455, -74.19378284526795 40.557616513710535, -74.19387249463647 40.557702415965096, -74.19418626452283 40.55800307465867, -74.1942759137533 40.55808897839853, -74.19450073460813 40.55830439769704, -74.19393876487676 40.558647668392894, -74.1938379098939 40.55855102740098, -74.19374826060923 40.55846512422314, -74.1936077291897 40.55833046572799, -74.19353602987412 40.55826176282481, -74.19338966460312 40.55812151350934, -74.19322087881226 40.55795978001138, -74.19317605552482 40.55791682818733, -74.19195531626478 40.55674705305578)), ((-74.18879465392004 40.56190520731911, -74.18838271403543 40.55940999397354, -74.18923453357195 40.560280757430526, -74.18948992194346 40.56184446727057, -74.18879478246863 40.56190598786518, -74.18879465392004 40.56190520731911)), ((-74.18622649051734 40.554602267460716, -74.18722167032082 40.553999018317455, -74.187327077633 40.55393512236106, -74.18750948795343 40.55382454690592, -74.18772878551904 40.55403510313144, -74.18801726083537 40.55386023223799, -74.18779796411529 40.55364967655822, -74.1882783143442 40.55335848953932, -74.18836112333247 40.55343810002061, -74.18838824139601 40.55346417085611, -74.18868066844296 40.55374530305204, -74.1885558572634 40.55383826694265, -74.188239670061 40.55407377395023, -74.18766305646442 40.55442281135377, -74.1866673226705 40.55502553478599, -74.18644578540915 40.55481282522377, -74.18622649051734 40.554602267460716)), ((-74.19321212456165 40.55563488714624, -74.19177104076296 40.55422865318791, -74.19220035123061 40.55395398852491, -74.19232295499359 40.553875548982724, -74.19232607556056 40.55387355268892, -74.1923321693394 40.553879481467284, -74.19347453467192 40.554998256472494, -74.19347301975642 40.554997800655734, -74.19363010341063 40.555151082274236, -74.19376404161432 40.55528177695994, -74.19321212456165 40.55563488714624)), ((-74.1903347403401 40.55514754067193, -74.19088666857115 40.554794443398556, -74.19232774596232 40.55620068928737, -74.19177581372782 40.55655379254376, -74.1903347403401 40.55514754067193)), ((-74.19105462727907 40.55468699045466, -74.19160654908448 40.55433389060652, -74.19304763051551 40.555740128419465, -74.1924957058877 40.55609323424869, -74.19105462727907 40.55468699045466)), ((-74.19497771060084 40.558311188502614, -74.19539751544386 40.558055545491904, -74.19542504226033 40.55808576450139, -74.195490426099 40.55815754237636, -74.19561576554864 40.558295136759206, -74.19572864671231 40.558419054305816, -74.1958287242217 40.558521886998605, -74.19593507859754 40.55862709169266, -74.19603786426862 40.55872876690662, -74.19612210633805 40.55881209932298, -74.19621393198058 40.55890293182627, -74.19628785213098 40.55897605265738, -74.1963432284047 40.55903082987135, -74.19640746234245 40.55909436845654, -74.19649253425055 40.55917851956203, -74.19656097347668 40.55924621941017, -74.19662357485016 40.559308142419404, -74.19683233851437 40.55951464419838, -74.19658782312085 40.559724095313676, -74.19639298938918 40.559890988464794, -74.19615118390372 40.55965180093685, -74.19506519373238 40.55857754038899, -74.19486519982178 40.55837970250643, -74.19497771060084 40.558311188502614)), ((-74.19363081134787 40.5598803379064, -74.19374332238563 40.55981182782814, -74.1937837970841 40.55984935387953, -74.19441189207423 40.55946688917646, -74.1948095554912 40.559856959794615, -74.19419538967593 40.56023094534983, -74.19408287957403 40.560299454965964, -74.19391411281309 40.56040222098574, -74.1938016009562 40.56047073122785, -74.19363283450805 40.56057349593031, -74.19346406636251 40.5606762612864, -74.19335155476338 40.560744771084025, -74.19307027239311 40.56091604464778, -74.19297880811371 40.56083124617999, -74.19261820752547 40.56049692272234, -74.1932370226684 40.56012012185594, -74.19334953333306 40.560051612166816, -74.19346204494771 40.559983102365116, -74.19363081134787 40.5598803379064)), ((-74.1930204571411 40.55940136504658, -74.1931892380718 40.559298591300035, -74.19325586261824 40.55935968719019, -74.19338526086273 40.55928089383158, -74.19361030122772 40.559143861397324, -74.19389841792938 40.55896841899616, -74.19400010674795 40.55906815003641, -74.19417694239651 40.55924156032564, -74.19427635743365 40.559339078765476, -74.19399952803505 40.55950764912594, -74.19364958885896 40.559720736324515, -74.19348080757001 40.55982351074388, -74.19342454663139 40.55985776882898, -74.19336828563503 40.55989202688642, -74.19331202576173 40.559926284914255, -74.1931995034832 40.5599948017914, -74.19308698214938 40.56006331675485, -74.19303072080687 40.56009757464636, -74.1929744605874 40.56013183250821, -74.19280567722384 40.560234606832324, -74.19252259693822 40.56040697442186, -74.19233845735558 40.56023811519783, -74.1920622485436 40.559984824905065, -74.19234532704755 40.559812458445876, -74.1930204571411 40.55940136504658)), ((-74.18782746091276 40.55171944876259, -74.18813069416481 40.55137356738353, -74.18849682394243 40.55156064881097, -74.18864351102633 40.55139332842474, -74.18874404943227 40.551278648444246, -74.18866870198083 40.55124014859667, -74.18891987131894 40.55095364682432, -74.18915512722798 40.551075183902334, -74.1892096729884 40.551106626946144, -74.1888609351671 40.55150442404974, -74.1889339598113 40.5515417370941, -74.1890018356201 40.55157641911753, -74.18867764512503 40.55185481111696, -74.18845375959272 40.55204706600071, -74.18821425575507 40.55225273149279, -74.1877470095622 40.55265395671785, -74.18760531382927 40.552585812073204, -74.18722729641168 40.552404011683585, -74.1877815448778 40.55177182203163, -74.18782746091276 40.55171944876259)), ((-74.1881935063111 40.56372759616918, -74.18793169032007 40.56220243863352, -74.18862803164629 40.562141158135425, -74.18864478269526 40.56224128729295, -74.18864509795179 40.56224128317303, -74.18887668013382 40.563615964771316, -74.1881935063111 40.56372759616918)), ((-74.18900400363916 40.553806978060756, -74.18956653000023 40.55346434818886, -74.19071272859011 40.55460837618622, -74.19016072554886 40.55496151958156, -74.18900400363916 40.553806978060756)), ((-74.19021360508812 40.55307021300686, -74.19029234437984 40.55302225280743, -74.19142496233927 40.55415271538315, -74.19087296800767 40.554505862213425, -74.18972982428214 40.55336488624917, -74.190113408534 40.553131243821, -74.19012568340273 40.55312376712642, -74.19012822912698 40.55312221670491, -74.19021360508812 40.55307021300686)), ((-74.19045880802761 40.55292085744185, -74.19100501884765 40.552588148839654, -74.19188708827689 40.553446420837034, -74.19211917538377 40.55367224100712, -74.19214136401733 40.55369437759264, -74.19200029856697 40.5537846294196, -74.1915883119169 40.55404820865539, -74.19045880802761 40.55292085744185)), ((-74.18695241194453 40.55972711590393, -74.18694099987229 40.55967005453383, -74.18694321306127 40.5596719186259, -74.18687573365487 40.559266947679475, -74.18687226909996 40.55924615562964, -74.18721698276761 40.55921600200275, -74.18768734348376 40.56200112452191, -74.18733658198137 40.562032574447215, -74.18725557369906 40.561546449611924, -74.18725316214451 40.56153197396158, -74.18720430579592 40.56123878510536, -74.18719359566649 40.5611745111983, -74.1871707187307 40.56103722613418, -74.18714314620318 40.56087176400318, -74.18709418273744 40.56057792687969, -74.18708739865384 40.56053720886854, -74.18695241194453 40.55972711590393)), ((-74.19551328780021 40.56019777006149, -74.19415067587403 40.558849860699745, -74.19443361397597 40.558680216995995, -74.1953989662754 40.55963515723102, -74.19568024789082 40.55946387162374, -74.19585607030098 40.559637793457604, -74.19557478958738 40.55980908039145, -74.1957506138122 40.55998300237964, -74.19591938376566 40.55988023094397, -74.19603189480985 40.559811715918244, -74.19624242146432 40.560019962775094, -74.1961450997772 40.560103504389346, -74.1959504544841 40.56027058466903, -74.19575580822007 40.560437665517014, -74.19575547427982 40.56043733469196, -74.19551328780021 40.56019777006149)), ((-74.19418652024056 40.560401668892524, -74.19429801813585 40.56033221893589, -74.19452665984386 40.56054419167544, -74.19475530418353 40.56075616395391, -74.19464380605605 40.56082561435194, -74.19453230769415 40.560895063740794, -74.19447655783719 40.56092978884573, -74.19430931027752 40.561033963093024, -74.19419781122274 40.561103413056415, -74.19408631193356 40.56117286201066, -74.19391906315947 40.56127703658804, -74.19364031246657 40.56145065944256, -74.19363477396215 40.56144552496588, -74.19360860755447 40.561421265635644, -74.19354885502041 40.561365869523364, -74.1934573989898 40.561281080429254, -74.19336594200794 40.56119629036316, -74.19318302992146 40.56102671000869, -74.19346177885309 40.560853088259655, -74.19357327943597 40.560783639007305, -74.19362902728156 40.560748915244844, -74.19379627636658 40.56064474108307, -74.19401927355067 40.560505842722236, -74.19418652024056 40.560401668892524)), ((-74.18737440063373 40.562249657848305, -74.18772212019859 40.562220240769534, -74.18798132604906 40.563759464779324, -74.1876469654726 40.56381415931722, -74.18737440063373 40.562249657848305)), ((-74.19444929337881 40.56034656048154, -74.19497404092391 40.56002702452666, -74.19556297237312 40.560601963019224, -74.19512774889215 40.56097554424928, -74.19483653534468 40.56070556781417, -74.19444929337881 40.56034656048154)), ((-74.1944093182519 40.56112204467513, -74.19452081711786 40.56105259450652, -74.1948007062874 40.5613120736785, -74.19470486401181 40.5613960383978, -74.19465694219458 40.56143802117851, -74.19456109837684 40.561521985778896, -74.19446525667973 40.561605950294734, -74.19436941238017 40.56168991473398, -74.19422564665854 40.5618158607895, -74.19412980175667 40.56189982502729, -74.19397275410098 40.56175422919401, -74.19387750597639 40.56166592577641, -74.19374032018007 40.56153874070348, -74.19401906979985 40.561365117609604, -74.1941305694798 40.561295668721804, -74.19424206892529 40.56122621882482, -74.1943535681416 40.5611567697197, -74.1944093182519 40.56112204467513)), ((-74.19367029932998 40.5622087072708, -74.19341891365939 40.561975785258994, -74.1933632487083 40.56201098335239, -74.19318027075126 40.56184144273578, -74.19329109724303 40.56177136723254, -74.1935731850946 40.56159300103343, -74.19366467352764 40.5616777719688, -74.19375616219018 40.5617625419302, -74.19399244444084 40.561981467503884, -74.19387077316426 40.562093135747276, -74.19384766032589 40.562106459341074, -74.19367029932998 40.5622087072708)), ((-74.18736576043813 40.558985804235846, -74.18724481379101 40.55827068167431, -74.18791012037245 40.55893830358305, -74.18736576043813 40.558985804235846)), ((-74.18508914523603 40.554129739444946, -74.18511928012748 40.55409363913426, -74.18541892015354 40.5542457430208, -74.18505011405001 40.55468755067525, -74.18500608151102 40.554740298001605, -74.18500439175352 40.55474191266873, -74.18476758864395 40.554514943892094, -74.18501634195835 40.55421695312577, -74.18506467980531 40.55415904693402, -74.18508914523603 40.554129739444946)), ((-74.1947438129762 40.560913694745885, -74.19485531233006 40.560844245149816, -74.19508823285474 40.561060180836165, -74.19499239129927 40.561144144896716, -74.1949444698434 40.561186127798244, -74.19468806439436 40.56094841995142, -74.1947438129762 40.560913694745885)))",R120,6640,R120,R-03,R-03,R-03,R-03,"Arthur Kill Rd., Arden Ave. and Halpin Ave.",503,51,123,10312,R,145.935,False,Arden Woods,No,100004236,PARK,20100106000000.00000,19931230000000.00000,,DPR,True,Arden Woods,N,Arden Woods,Large Park,Nature Area,http://www.nycgovparks.org/parks/R120/,No,63,24,11,{EB748464-89E5-462F-9B1A-891DC89DE1A9} +"MULTIPOLYGON (((-73.91665899207433 40.61658797605778, -73.91675263928693 40.616527073227275, -73.9167750632352 40.616691614683106, -73.91665899207433 40.61658797605778)))",B229,6189,B229,B-18,B-18,B-18,B-18,"Ralph Ave., Ave. T and E. 61 St.",318,46,63,11234,B,0.019,False,Triangle,Yes,100003838,PARK,20100106000000.00000,19470529000000.00000,,DPR,False,Triangle,N,Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B229/,No,59,19,8,{B9DE927B-D072-4E11-A1BD-E54BB142672F} +"MULTIPOLYGON (((-73.9529286105069 40.7204362787355, -73.95348535301034 40.71991453709658, -73.95464604936646 40.720633540369505, -73.9546451445269 40.720634395497335, -73.95460716428404 40.72066950131065, -73.95456586787193 40.72070767654092, -73.95456474394204 40.72070871528563, -73.95453125578423 40.72073967149626, -73.95452063706325 40.72074948465951, -73.95447764458648 40.72078922697527, -73.9544346508748 40.72082896927427, -73.95439165829676 40.72086870975647, -73.95438715544869 40.720872871929714, -73.95434866448254 40.72090845202298, -73.95430507726323 40.720948742448115, -73.95430455852238 40.72094922221394, -73.9542626767016 40.720987934706166, -73.95421968391719 40.721027676924294, -73.9541766887143 40.72106741912525, -73.95415677989128 40.72108582212088, -73.95413369464498 40.721107159509366, -73.95409070052317 40.72114690167826, -73.95404770753365 40.72118664383133, -73.95400471449348 40.721226385067666, -73.95397375933959 40.72125471173721, -73.95396727032434 40.72126065070591, -73.95395958748911 40.721267683316185, -73.95392982611541 40.72129491813291, -73.95389265426627 40.72132893801641, -73.95388775936655 40.72133341699228, -73.95385493994868 40.721363453851254, -73.95382968589743 40.721386879491256, -73.95381081433668 40.72140438413367, -73.9537893655994 40.72142428129331, -73.95378025432358 40.721432733421864, -73.95376780552124 40.72144427926127, -73.95376723347451 40.72144481123282, -73.95372116895345 40.721487542621674, -73.95368741345374 40.721518856879285, -73.9536784442753 40.72152717758243, -73.95363431963008 40.72156810779675, -73.95359019493073 40.72160903799396, -73.9535726059129 40.72162535264005, -73.95356361657136 40.72163369223673, -73.95354607136012 40.72164996907497, -73.95350194655236 40.72169089923793, -73.95345782050615 40.721731830283716, -73.953442161946 40.72174635637739, -73.95341369677358 40.721772760412875, -73.95337108542937 40.72181228994441, -73.95332544914397 40.72185462332119, -73.9533059353868 40.721872723756924, -73.95329918208074 40.721878986763805, -73.95328008520791 40.72189670284655, -73.9532788771451 40.721897822590314, -73.95323719893227 40.72193648345856, -73.95320571935244 40.72196568680258, -73.95319307492811 40.721977414402524, -73.95314799389128 40.722019231941886, -73.95310482557417 40.72205927533802, -73.95305948823743 40.722101844663435, -73.9530186787818 40.72214016181116, -73.95301415084342 40.72214441307024, -73.95297512740395 40.72218105328184, -73.95296881457571 40.722186980558924, -73.95292347824886 40.72222954983052, -73.95290858089928 40.722243535856244, -73.95287814068173 40.72227211728254, -73.95286930624985 40.72228041366326, -73.95284554009264 40.722302727564504, -73.95283280187176 40.722314686516974, -73.95279559155063 40.722349625446604, -73.95278746537181 40.722357254833774, -73.9527830700388 40.722361407081955, -73.9527483372901 40.72239422631213, -73.95270920916563 40.722431196876535, -73.95270197715996 40.722438032375436, -73.95267008099647 40.72246816922844, -73.95265474169085 40.72248266292658, -73.95263095278575 40.72250513886532, -73.9526133512338 40.722521772138336, -73.95259182452912 40.722542112090814, -73.95255269623034 40.722579083501785, -73.95254242261636 40.72258879126297, -73.95251356788818 40.72261605489926, -73.95246790581098 40.72265816459502, -73.95242156975289 40.72270089534551, -73.95237658148413 40.72274238303099, -73.95233092041808 40.72278449177173, -73.95231806727757 40.72279634435883, -73.95228525692646 40.722826601393606, -73.95223959574501 40.722868710097615, -73.95223060373723 40.7228770000598, -73.95219647269214 40.72290847581092, -73.9521505882571 40.72295144797512, -73.95213991187953 40.72296145540226, -73.9521072443221 40.72299207805189, -73.95206389915194 40.72303270631062, -73.95202055392828 40.72307333545331, -73.95197720983533 40.723113964579994, -73.95194530726931 40.72314386979613, -73.95193386568894 40.7231545945906, -73.9519047796587 40.72318185887635, -73.95189788627717 40.72318831985362, -73.95189051912249 40.723195224583684, -73.95180383174971 40.72327648362218, -73.95179927642012 40.72328075283161, -73.95177974037236 40.72329906461589, -73.95167533105196 40.723313863938834, -73.95085210459705 40.721868456100616, -73.95077497911238 40.72173303602972, -73.9529286105069 40.7204362787355)), ((-73.95033502687134 40.71905831942675, -73.95230633404051 40.71887651510033, -73.95235448856998 40.7191787506876, -73.9530319055959 40.71961257863776, -73.95329851774898 40.719783318408474, -73.95333201072805 40.71980476862708, -73.95284273129514 40.72024704107818, -73.95235329203963 40.72054618163447, -73.95235598239776 40.720547729823615, -73.95225154349077 40.72060836921051, -73.95190810684231 40.720818271071295, -73.95073059952905 40.721541446223135, -73.95062217122612 40.72086082514506, -73.95032204903609 40.719072812938805, -73.95033710258633 40.719071349801006, -73.95033502687134 40.71905831942675)), ((-73.9486476138651 40.71923549830446, -73.95008124304472 40.71909621029038, -73.95051775199887 40.721666928314875, -73.9498892332833 40.722051282155704, -73.94898436338734 40.721259637539546, -73.9486476138651 40.71923549830446)), ((-73.9538024955518 40.721611662811796, -73.95478985940112 40.7207226240264, -73.95556877923455 40.72120511418923, -73.95588224614475 40.72139928196011, -73.95567676262357 40.721590391143955, -73.95489470360725 40.722317728896215, -73.95477354791967 40.722357636077525, -73.95432701731401 40.72208019651509, -73.95380037084777 40.72174162981441, -73.95373532893483 40.72169981554733, -73.95371739589835 40.72168828721955, -73.9538024955518 40.721611662811796)), ((-73.95203492280545 40.7232596586507, -73.95278744263253 40.72257815251906, -73.95297939301001 40.72269793670193, -73.95324243452895 40.7228619509639, -73.95206134058355 40.72325095632347, -73.95203492280545 40.7232596586507)))",B058,6215,B058,B-01,B-01,B-01,B-01,"N. 12 St., Lorimer St., Manhattan Ave. bet. Bayard St. and Berry St. - Nassau Ave.",301,33,94,"11211, 11222",B,36.493,False,McCarren Park,No,100004428,PARK,20100106000000.00000,19030309000000.00000,,DPR,True,McCarren Park,Y,McCarren Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B058/,No,50,26,12,{844F730C-7ED2-46FD-B641-9411AB7281F4} +"MULTIPOLYGON (((-73.8269338587308 40.74196319087391, -73.82693999922031 40.7419625616403, -73.82694550790183 40.741962678879325, -73.82695161867436 40.74196346249871, -73.8270218931152 40.74196975546332, -73.8270883389009 40.74197548702301, -73.82715785021216 40.74198249916588, -73.82722736035645 40.74198951036448, -73.82729686932669 40.74199652332037, -73.82736638068184 40.742003535337375, -73.82743588850207 40.74201054640652, -73.82750539988882 40.7420175574391, -73.82757193820596 40.74202371029628, -73.82763847535382 40.74202986221273, -73.82770501370018 40.74203601319204, -73.82777450033072 40.74204254585488, -73.8277809945274 40.74204386400525, -73.82778711967127 40.74204596504607, -73.82779217604227 40.742048389572105, -73.82779669346844 40.74205136530393, -73.82780153538212 40.742055684179235, -73.82780468540219 40.742059547568886, -73.82780680003117 40.74206318698476, -73.82780834475588 40.74206698764007, -73.827809239174 40.742070907991284, -73.82780945802759 40.742076016904484, -73.82780053559968 40.74212963516208, -73.82779179307018 40.74218098260461, -73.82778304934786 40.74223232824331, -73.82778108011448 40.74224389233295, -73.82777430679141 40.74228367568379, -73.82776476622944 40.74233776938188, -73.82776115325119 40.742344903211574, -73.82775572153476 40.742350724081035, -73.82775002586689 40.74235468410449, -73.8277442862133 40.742357339224824, -73.82773805947382 40.74235926150277, -73.8277314704449 40.74236026562012, -73.82768760695397 40.74235466367492, -73.82764669362935 40.74234780361483, -73.82760610145172 40.742339919241964, -73.827565874211 40.74233101782636, -73.82752605449438 40.74232111384022, -73.82748668728247 40.74231021185402, -73.82744781516001 40.74229832724052, -73.82740948071844 40.742285472671256, -73.82737172536302 40.742271661716416, -73.82733458930777 40.74225691064597, -73.82729811514388 40.74224123213161, -73.82726234188257 40.74222464964558, -73.82722730856989 40.742207173152735, -73.82719305302574 40.74218882882528, -73.82696620389906 40.74205100305696, -73.82692776989032 40.74202962306065, -73.82692248564435 40.742026968524435, -73.82691674046997 40.74202308770285, -73.82691098595511 40.742017789466196, -73.8269065201656 40.74201181598351, -73.82690347405295 40.74200534755359, -73.82690204453375 40.7419996055623, -73.82690178621345 40.74199376447427, -73.82690292539178 40.741986850279226, -73.82690520288227 40.741981102152785, -73.82690767644016 40.74197735795293, -73.82691125727632 40.74197350915715, -73.82691608688327 40.74196978020461, -73.82692109043634 40.741966999748996, -73.82692661798518 40.7419648675464, -73.8269338587308 40.74196319087391)))",Q357G,5764,Q357G,Q-07,Q-07,Q-07,Q-07,"Horace Harding Exwy. Sr. Rd. S., 138 St., 61 Rd.",407,24,109,11367,Q,0.476,False,Turtle Playground,Yes,100000056,PARK,20090423000000.00000,19540830000000.00000,,DPR/SDOT,False,Turtle Playground,Y,Turtle Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q357G/,No,25,16,6,{2CF021E1-3774-448F-8420-A67B3569A745} +"MULTIPOLYGON (((-73.72814639331546 40.72524468137414, -73.72925111481375 40.72499488217947, -73.72925422814336 40.72499626818635, -73.729297834258 40.72526614021476, -73.72930507502814 40.72531095417632, -73.72945304257088 40.725689046587576, -73.7295521965717 40.72594231295802, -73.72953880967096 40.72594509291637, -73.72964152589304 40.726207453745424, -73.72970473483088 40.72637087960348, -73.72983594493988 40.72671678379796, -73.72956201212214 40.726618906923484, -73.72857970972781 40.72638669816139, -73.72814639331546 40.72524468137414)))",Q134,5313,Q134,Q-13,Q-13,Q-13,Q-13,240 St. bet. Braddock Ave. and Fairbury Ave.,413,23,105,11426,Q,3.4,False,Breininger Park,Yes,100000309,PARK,,,239-12 BRADDOCK AVENUE,DPR,True,Breininger Park,Y,Breininger Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q134/,No,33,11,5,{E6B75A12-C068-4BFF-8F31-61A2A83CA64D} +"MULTIPOLYGON (((-73.9210386034602 40.87894417610558, -73.9209613901265 40.87893713456922, -73.92090243992014 40.87894235753102, -73.92084347598443 40.87895810805144, -73.92078795911132 40.87899228217823, -73.92074940490997 40.87902087409977, -73.92073020528038 40.879047798093694, -73.92069346701305 40.87905981146992, -73.92064439174429 40.87906848454897, -73.92058555092956 40.879071399474924, -73.92052975280232 40.87907169964977, -73.92048098131565 40.87906739954677, -73.92042050285917 40.87905280508406, -73.92039273557367 40.8790424843585, -73.9203499428997 40.879020934985654, -73.92030598990002 40.87898953076202, -73.9202750831435 40.878960656899174, -73.92025168710322 40.878939056051884, -73.92021279249073 40.87890314834793, -73.92016510102508 40.8788591166517, -73.9201198105036 40.87881541077259, -73.92009404173453 40.87879186229708, -73.92004823838805 40.87875834955203, -73.9201225521009 40.878728652506894, -73.92014876721859 40.87868677276815, -73.92016079983786 40.87863920023639, -73.92017132538413 40.87853657085682, -73.92016448136967 40.87846024620691, -73.9201671455348 40.87833318025946, -73.92016211442807 40.87832101029248, -73.92015040555168 40.87829268456116, -73.92014024516646 40.878268107729106, -73.92012802021333 40.87820918037063, -73.92012235632293 40.8781924516958, -73.92011356369338 40.87816802078604, -73.92008524415985 40.8781022655894, -73.92000136635812 40.87791119245453, -73.91993966807853 40.87777064389032, -73.9198349988264 40.87753220405483, -73.91982671339062 40.877513329481225, -73.91982449529208 40.87750904161911, -73.91982280596531 40.87750504588233, -73.91982187616308 40.877500848063406, -73.9198223703578 40.87749537974531, -73.9198250090773 40.877490278515, -73.91982955091589 40.87748601786114, -73.91983557186215 40.877482991902625, -73.91984251279388 40.8774814821035, -73.91984959544313 40.87748149332603, -73.91985531928309 40.8774828282218, -73.9198611405244 40.87748504926479, -73.91986637764967 40.87748761839067, -73.91987174501395 40.877490405524675, -73.91990919207805 40.87750887170433, -73.92005368650474 40.87758012662229, -73.92017762505553 40.87764528705008, -73.92031913816079 40.87772490600178, -73.92044849547716 40.87780094596687, -73.92054698477965 40.87786094846664, -73.92062278439214 40.87790926315812, -73.92072651011176 40.87797773008587, -73.92085635421272 40.87806722320789, -73.92095524340085 40.878139780227166, -73.92103748758356 40.87820350459766, -73.92111561860962 40.87826531436238, -73.92115936839711 40.87829992477903, -73.92139308542208 40.878497173899326, -73.92160636641829 40.8786828022761, -73.92173393885977 40.87879437730831, -73.9220213778268 40.879045770040754, -73.9225041871547 40.8794640906611, -73.92236246816067 40.87943345988884, -73.92199772601516 40.8793498765495, -73.92179230305557 40.87928314018708, -73.92152403141 40.87916245936787, -73.9214620457306 40.879120893929546, -73.92141264913074 40.87909131621412, -73.92134039549244 40.879052565845015, -73.92132310878469 40.87904422365298, -73.92130766685723 40.87903695249526, -73.92127801542189 40.879023634776544, -73.92125894174022 40.879015517378285, -73.92123715210212 40.87900663901249, -73.92121338513607 40.878997423410915, -73.92118476131387 40.87898697982488, -73.9211545903329 40.87897661982056, -73.92113576676206 40.878970712368826, -73.92111250166185 40.87896350427572, -73.92109378442257 40.87895797779594, -73.92107054747574 40.87895104706372, -73.92105927236936 40.87894766432536, -73.92104111018224 40.87894529712643, -73.9210386034602 40.87894417610558)), ((-73.91896795684909 40.87727910899131, -73.91895992228456 40.87722205295176, -73.91895464342787 40.877157410436396, -73.91894926528161 40.87709053013828, -73.9189529282898 40.87703838276517, -73.91895746469744 40.87698117256222, -73.91896557238513 40.87694218893718, -73.91897496072028 40.876904685711814, -73.91972957396187 40.87677151132536, -73.92018344296316 40.87716407767371, -73.92001414193993 40.877389987369575, -73.91971026918743 40.87725018996788, -73.91969871618883 40.877224743152574, -73.91954244038844 40.877270723069714, -73.9196497338892 40.877524656098984, -73.91917046385853 40.87768473609009, -73.91916159681762 40.87768769788662, -73.9190312860642 40.87745488721151, -73.91900936976096 40.8774123571091, -73.9189926525812 40.877372415051326, -73.91897978951759 40.87733379941355, -73.91896795684909 40.87727910899131)), ((-73.92201450469057 40.87989363992608, -73.92232447136786 40.879593588688145, -73.92260105731782 40.87965798195166, -73.92275664132937 40.879640631141626, -73.92276614530195 40.87965730912336, -73.92278137227298 40.8796844356852, -73.92281818118872 40.87975768252754, -73.9228462380889 40.87981856972232, -73.92286585664255 40.87986258064197, -73.9228828703307 40.879907196745805, -73.92290429342869 40.87996557523692, -73.92291893017854 40.88001172327646, -73.92293494417507 40.88006521660694, -73.92294501352563 40.88010497713819, -73.92295911026716 40.88015440798714, -73.92297456619943 40.88022575219577, -73.92298304195572 40.88026574848709, -73.92299051992403 40.88030780532679, -73.92299992827827 40.88037439632538, -73.92300672097211 40.88041708214651, -73.92301245023062 40.880471387143416, -73.92251970965049 40.88030035835846, -73.92251590972336 40.880282884555484, -73.9225100982528 40.8802638506585, -73.92250265528355 40.880244960644035, -73.92249698587861 40.880228230287834, -73.92249168737536 40.88021595849234, -73.92248670864579 40.88020620467352, -73.92248247852241 40.88019749322094, -73.92247799707263 40.88018963255972, -73.9224728600896 40.8801812932993, -73.92246853447577 40.88017511395197, -73.92246389269492 40.88016841391045, -73.92245890232653 40.880160507882216, -73.92245395358039 40.880153536587436, -73.92244658872801 40.880145002224104, -73.92243982797964 40.88013628546736, -73.92243247876775 40.88012756831473, -73.92242571750192 40.88011929819844, -73.92241598080238 40.8801078815803, -73.92239960650954 40.88008999229905, -73.92239373756267 40.88008365072388, -73.92239069904339 40.88008068067486, -73.92238675123644 40.88007711299126, -73.92238208746132 40.88007300543422, -73.92237737619206 40.88006893026252, -73.92237261386845 40.880064888374335, -73.92236780404961 40.880060879772046, -73.92236294554924 40.88005690445481, -73.92235803836519 40.88005296422367, -73.92235308724632 40.880049056380244, -73.92234808625626 40.88004518452255, -73.92234303895536 40.88004134775248, -73.92233794534472 40.880037545169536, -73.92233280779506 40.88003377857628, -73.92232762393452 40.88003004707064, -73.92232239613391 40.88002635245514, -73.92231712320779 40.88002269382853, -73.92231180752698 40.88001907299337, -73.92230644790712 40.88001548814782, -73.92230104434606 40.88001194109297, -73.92229559921671 40.88000843183032, -73.92229011251908 40.880004960359855, -73.92228458306661 40.880001526680815, -73.92227901323021 40.87999813259574, -73.92227340301184 40.87999477630366, -73.92226775122307 40.87999145960477, -73.92226206023776 40.87998818160013, -73.92225633005376 40.87998494409077, -73.92225056185964 40.879981745276396, -73.9222447544647 40.87997858875825, -73.9222389090607 40.87997547003468, -73.9222330268277 40.87997239450938, -73.92222710895632 40.87996935858117, -73.92222115307159 40.87996636404949, -73.92221516154638 40.87996341091586, -73.922209135566 40.8799605000816, -73.92220307394518 40.879957630645414, -73.92219697786918 40.879954803508575, -73.92219084852441 40.879952018671915, -73.92218468590987 40.87994927703584, -73.9221784900266 40.879946577699904, -73.92217226205986 40.87994392156539, -73.9221660020087 40.87994130953279, -73.92215971224697 40.87993874070319, -73.92215339040182 40.879936215074956, -73.92214703884393 40.879933734450745, -73.92214065638908 40.87993129702871, -73.92213424659532 40.87992890371176, -73.92212780708782 40.87992655629925, -73.92212134142791 40.87992425299256, -73.92211484486882 40.87992199468906, -73.922108324529 40.879919781393475, -73.92210177684824 40.879917614003936, -73.92209520301289 40.87991549252121, -73.9220886042104 40.87991341604565, -73.92208197925441 40.87991138457638, -73.92207533170192 40.8799093999168, -73.92206866036665 40.87990746206616, -73.92206196524955 40.87990557012385, -73.9220552487224 40.87990372499211, -73.92204850959878 40.87990192666997, -73.92204174906514 40.879900175158376, -73.92203496830783 40.879898470458045, -73.92202816495396 40.87989681256734, -73.92202134493463 40.87989520239085, -73.92201450469057 40.87989363992608)), ((-73.92030441120414 40.87920991045028, -73.92027697628474 40.87919544858532, -73.92025169148835 40.879179711308524, -73.92022685326756 40.87916456685544, -73.92021019356025 40.87915385754894, -73.92019900402835 40.87914640098091, -73.92018849167252 40.87913817586388, -73.91990098725293 40.878856913855564, -73.919898161866 40.87885443105175, -73.91989532344952 40.878851931129596, -73.91989224495154 40.87884880250048, -73.9198899038353 40.878846138134115, -73.91988796786937 40.8788429859848, -73.91988650923 40.87883753792385, -73.91988650050585 40.87883197830843, -73.91988794261712 40.878826527758605, -73.9198907771706 40.878821401450246, -73.91989489358572 40.87881680281675, -73.91990012791909 40.87881291454309, -73.9199062723688 40.87880988776678, -73.91991308476105 40.87880784568638, -73.9199202945018 40.87880686735698, -73.9199276179956 40.878806991302625, -73.91993476339528 40.878808211917985, -73.91994144839259 40.87881048398282, -73.91994584457949 40.87881296067131, -73.91994954785247 40.8788154846048, -73.91995424466572 40.878819544558375, -73.91996022867484 40.87882463015912, -73.92014457507322 40.879002379902865, -73.9201656198533 40.879020847250025, -73.9201818280271 40.87903507085328, -73.9202004657772 40.879051425786834, -73.92021893642877 40.879067634722816, -73.92023929705293 40.87908580352204, -73.92026019217148 40.87910347111542, -73.9202821981489 40.879119838268025, -73.92031754301651 40.87914105024384, -73.9203559598701 40.879159981593276, -73.92039813299388 40.87917586737094, -73.92044137360284 40.87918803845816, -73.92049257162981 40.87919807905536, -73.9205342126285 40.879203607911506, -73.9205888364953 40.87920614436211, -73.92064604564558 40.879203627228485, -73.92069361447528 40.879197772539655, -73.92074173095638 40.87918732752278, -73.92077691183883 40.87917705010247, -73.92080786405035 40.879165040834174, -73.92084133020603 40.879149077440886, -73.92084336050615 40.87915475370478, -73.92084485512856 40.87915994513905, -73.92084571934642 40.87916648867294, -73.92084672747573 40.879174726122244, -73.92084627728981 40.879182153933705, -73.92084245273458 40.87920073646919, -73.92083835386819 40.8792115566153, -73.9208317580527 40.87922400132866, -73.9208255756433 40.879233004662524, -73.92081697162102 40.87924313374477, -73.92080133220364 40.87925724445611, -73.92079069661236 40.87926474902258, -73.9207645853137 40.87927839779525, -73.92072598549872 40.879292361259424, -73.92071049586923 40.87929425604999, -73.92069490837028 40.8792966397359, -73.92067264048885 40.87929878650235, -73.92065435793354 40.8792997860822, -73.92062122209438 40.879300327901944, -73.9206001501557 40.879300448479995, -73.92056285789874 40.87929837060717, -73.92053305008166 40.879293826038236, -73.92051252544438 40.879289671463205, -73.92048104226186 40.87928129685477, -73.92045033811648 40.87927130730034, -73.92042009761656 40.87926053463342, -73.92039035633246 40.87924899778917, -73.92036113798449 40.87923670398821, -73.9203324769575 40.8792236712644, -73.92030441120414 40.87920991045028)))",X090,5738,X090,X-08,X-08,X-08,X-08,"Palisade Av, Johnson Av, Edsall Ave",208,11,50,10463,X,6.6,False,Spuyten Duyvil Shorefront Park,Yes,100003715,PARK,20100106000000.00000,18821230000000.00000,,DPR,True,Spuyten Duyvil Shorefront Park,Y,Spuyten Duyvil Shorefront Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/X090/,No,81,34,16,{FD5A843E-021A-4477-990A-B2C8DE6BF194} +"MULTIPOLYGON (((-73.93174011489194 40.64724642557117, -73.93181583791245 40.647953055664495, -73.931111430927 40.647998543392305, -73.93103432822394 40.64729103400186, -73.93138238996664 40.647269035422426, -73.93174011489194 40.64724642557117)))",B234,5130,B234,B-17,B-17,B-17,B-17,Tilden Ave. between E. 48 St. and E. 49 St.,317,45,67,11203,B,1.19,False,Tilden Playground,Yes,100004161,PARK,20100106000000.00000,19480908000000.00000,4802 TILDEN AVENUE,DPR,True,Tilden Playground,Y,Tilden Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B234/,No,58,21,9,{D14B29EA-47A5-41BE-9158-8ADF579A8746} +"MULTIPOLYGON (((-74.00092286126788 40.730902534456774, -74.0012314077875 40.73105265982444, -74.00085829788462 40.73157470950339, -74.00067655636208 40.7314855306754, -74.00079099984383 40.73135060768493, -74.0007831004779 40.73134673285157, -74.00082402411158 40.731298485130516, -74.00075586092844 40.73126531897551, -74.00079386184204 40.73122051842979, -74.00072521221831 40.731186832666324, -74.0007542568253 40.73115259695321, -74.00074707367007 40.731149103027626, -74.00092286126788 40.730902534456774)))",M125C,4679,M125C,M-02,M-02,M-02,M-02,"Ave. Of Americas, W. 3 St. and W. 4 St.",102,1,6,10012,M,0.42,False,West 4th Street Courts,Yes,100004406,PARK,20100106000000.00000,19340708000000.00000,320 6 AVENUE,DPR,True,West 4th Street Courts,Y,West 4th Street Courts,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M125C/,No,66,27,10,{48C2373B-17CF-480E-BD59-BC7D9B4A055E} +"MULTIPOLYGON (((-73.83763290069393 40.87331371221649, -73.83991670648071 40.872571788358385, -73.84069989274047 40.87406559818686, -73.83840162150929 40.87478486984347, -73.83763290069393 40.87331371221649)))",X196,4705,X196,X-12,X-12,X-12,X-12,Hammersley Ave. to Burke Ave. bet. Ely Ave. and Gunther Ave.,212,12,47,10469,X,9.238,False,Haffen Park,Yes,100004559,PARK,20100106000000.00000,19581002000000.00000,1750 BURKE AVENUE,DPR,True,Haffen Park,Y,Haffen Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X196/,No,83,36,16,{958E1478-7006-41AF-97F7-ED1965DF3A96} +"MULTIPOLYGON (((-73.79100019817751 40.693598652123406, -73.79081032838204 40.693340009622716, -73.79035380946031 40.69352929932468, -73.78999743106786 40.69304281429024, -73.79092513658573 40.692652208235685, -73.79183580667659 40.69389332485007, -73.79136386827228 40.69409404070814, -73.79108367679252 40.69371236768682, -73.79100019817751 40.693598652123406)))",Q301,6626,Q301,Q-12,Q-12,Q-12,Q-12,"Union Hall St., 160 St. bet. 110 Ave. and 109 Ave.",412,28,103,11433,Q,2.456,False,Jamaica Playground,Yes,100000218,PARK,20090423000000.00000,19410924000000.00000,,DPR/DOE,False,Jamaica Playground,Y,Jamaica Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q301/,No,32,10,5,{D82D5FE3-2C46-4C5D-BD1D-8A86E8D116A4} +"MULTIPOLYGON (((-73.98333289232065 40.698480304163745, -73.98332605851371 40.698474383206204, -73.98498157760383 40.69853739485292, -73.98498131061093 40.69855659193858, -73.9849503036243 40.69857354813627, -73.98491261043624 40.698595594945665, -73.98488472574905 40.69861303240842, -73.98485760641702 40.698631156155436, -73.98483128084135 40.69864994457867, -73.98480577387404 40.698669376069645, -73.98478111864789 40.698689435324646, -73.98475733646661 40.69871009533157, -73.98473445573167 40.69873133628347, -73.98471249892913 40.698753135671126, -73.98469148972862 40.69877547008482, -73.98467145179988 40.69879831611493, -73.98465240644718 40.698821646749444, -73.98463437379077 40.698845439478696, -73.98461737395141 40.69886966909152, -73.984587784335 40.69891673580769, -73.98456000955635 40.69896443672003, -73.98455625274418 40.69897022290749, -73.9845527349172 40.698976096476635, -73.9845494608097 40.69898205112443, -73.98454643279018 40.698988078746694, -73.98454365322533 40.69899417754271, -73.98454112566738 40.69900033670679, -73.98453885248318 40.69900655443828, -73.9845368348575 40.69901282443381, -73.98453507752527 40.699019137688815, -73.98452488862311 40.69904622732869, -73.98451582488266 40.699073547650066, -73.98450789696008 40.699101072539804, -73.9845012078911 40.699128389577375, -73.98449547818029 40.699156622564665, -73.98449099798741 40.699184592770365, -73.98448767730753 40.69921265768583, -73.98448552088207 40.699240786694425, -73.9844753326142 40.69923443400819, -73.98447017341434 40.699231216682655, -73.9844213083282 40.69920074305, -73.9843724432865 40.69917027029698, -73.98432357710652 40.69913979662244, -73.98427471570395 40.69910932292769, -73.98422584961331 40.69907884921142, -73.98417482757547 40.69904424002579, -73.98412380559061 40.69900963081737, -73.98407278365873 40.69897502158624, -73.98402175941368 40.698940411431465, -73.98397073758774 40.69890580215474, -73.98391971581478 40.69887119285525, -73.98387192435385 40.698840922653645, -73.98382413293628 40.69881065243208, -73.98377634156215 40.69878038219053, -73.98372855023163 40.69875011102854, -73.98368075776129 40.69871983984638, -73.98364441234285 40.69869597831672, -73.98344468646306 40.698564259749034, -73.98341557903457 40.69854418223953, -73.98338722901981 40.698523486179994, -73.98335966007828 40.69850218868419, -73.98333677239047 40.698483476329805, -73.98333289232065 40.698480304163745)), ((-73.98393235883964 40.699610157624356, -73.98386812783654 40.69959736316823, -73.98385200708 40.69963448091876, -73.98384919237145 40.69963386637457, -73.98360688390412 40.69958097205484, -73.98353562175127 40.69956107137055, -73.98346531140463 40.69953930041511, -73.9833960380547 40.69951568081476, -73.9833824951317 40.69951061978295, -73.98336918893993 40.69950520758402, -73.98335613604333 40.69949944872296, -73.98334335182159 40.69949335220724, -73.9833308492884 40.699486924342445, -73.9833186461903 40.69948017233526, -73.98330675554057 40.69947310429237, -73.98329519271869 40.699465729221146, -73.98328396955482 40.69945805522807, -73.98327310024497 40.699450092220886, -73.98326259898555 40.6994418483064, -73.98325247642322 40.699433332491395, -73.98324274320295 40.699424560086214, -73.98323341588798 40.6994155373969, -73.98322450039231 40.6994062725291, -73.98321600854399 40.69939678079334, -73.98320795217275 40.699387071196504, -73.98320034192392 40.699377157247916, -73.98319318252767 40.699367048854036, -73.98318648462914 40.69935676042472, -73.98318224698234 40.69934971149677, -73.98317832764567 40.69934255545426, -73.98317473134887 40.699335304004535, -73.98317146164035 40.69932796165072, -73.98316852324987 40.699320540100146, -73.98316591972561 40.69931304475651, -73.98316365106443 40.699305487326434, -73.9831617255465 40.69929787681627, -73.98316014080385 40.69929021862884, -73.98315890038324 40.6992825235707, -73.98315800546533 40.699274801547766, -73.98315745604786 40.6992670606646, -73.9831572556779 40.69925931082741, -73.98315740198707 40.69925155923992, -73.98315789497269 40.69924381580775, -73.98315873581568 40.69923608953617, -73.98315992214646 40.69922839213156, -73.98316145159762 40.699220727195545, -73.98316332416613 40.69921310643481, -73.98316553748292 40.69920553975456, -73.98316808799625 40.69919803525898, -73.98317097452077 40.6991906010524, -73.98317419232174 40.69918324433818, -73.98317773666302 40.699175977722874, -73.98318160399323 40.69916880840992, -73.98318579194456 40.69916174090157, -73.98319003063517 40.69915521911082, -73.98319455681363 40.69914881352803, -73.98319936456348 40.699142525953214, -73.98320445269871 40.699136367192395, -73.9832098105689 40.69913034354747, -73.9832154334389 40.69912446402291, -73.98322131775913 40.69911872861816, -73.98322744932791 40.69911314993821, -73.98323383287627 40.6991077351879, -73.983240449473 40.699102484364396, -73.9832472979316 40.69909741007461, -73.98325436760292 40.69909251411804, -73.98326165020231 40.69908780549854, -73.9832691421799 40.69908328511603, -73.98327682815194 40.69907896197344, -73.98328470338464 40.69907483967202, -73.9832927584111 40.699070923613476, -73.98330098258174 40.69906721739823, -73.98330936761276 40.69906372642812, -73.98331790285508 40.69906045250264, -73.98332657884146 40.69905740192395, -73.98333538847216 40.69905457739252, -73.9833443175486 40.699051979806754, -73.98335335542052 40.69904961546869, -73.98336249617154 40.699047486178515, -73.98337172441944 40.699045594635464, -73.98338103188127 40.69904394353986, -73.98339040909222 40.699042530188784, -73.98339984185172 40.6990413635853, -73.98340932424523 40.69904043832546, -73.9834188385235 40.699039759809814, -73.9834287574035 40.69903929207149, -73.98343869160253 40.6990390755774, -73.9834486281046 40.69903911392774, -73.98345855744451 40.699039406220656, -73.98346846897425 40.69903994975307, -73.98347834967795 40.69904074722464, -73.98348819009118 40.69904179503196, -73.98349798074831 40.69904309317372, -73.98350770745131 40.69904464074738, -73.98351735955241 40.69904643414933, -73.98352692995249 40.69904847337863, -73.98353640445394 40.69905075573169, -73.98354577122612 40.69905327580384, -73.98355502435254 40.699056036295694, -73.98356415082006 40.69905902910091, -73.98357313761349 40.69906225421758, -73.98358198000196 40.69906570444104, -73.98359066497002 40.69906938066991, -73.98359918305424 40.699073274798316, -73.98360752479012 40.69907738232234, -73.98361568307847 40.69908170324105, -73.9836236449064 40.69908622854749, -73.98363140435877 40.699090954638834, -73.98367337343501 40.699120904431744, -73.98371534609814 40.69915085601076, -73.98383392050475 40.699249091591454, -73.98394814272316 40.69935027111659, -73.98401013923616 40.699409030060856, -73.98405910578863 40.6994554123292, -73.98424759572973 40.69962937220317, -73.98429166104994 40.69967369963218, -73.98429527372032 40.69967733369162, -73.98418581689556 40.699658786164576, -73.98411470889302 40.69964634570287, -73.98403585991132 40.699630817168135, -73.98393235883964 40.699610157624356)), ((-73.98496735785338 40.6988267239807, -73.98497757523688 40.69882456678694, -73.98497410079624 40.699073866837985, -73.9853742566751 40.69933330911861, -73.98533575644183 40.69933835339154, -73.98529467810164 40.69934829520793, -73.98525173170802 40.69936249979496, -73.9852069150444 40.699390914207605, -73.98517703292953 40.6994292775844, -73.98516022048842 40.69946764263913, -73.98514900870167 40.69950885043034, -73.9851471314685 40.6995543233503, -73.98515459165583 40.69959127052516, -73.98517325638164 40.69961969309435, -73.985209306822 40.699649907213505, -73.98513418580679 40.69961877493533, -73.98506032772808 40.699585939002944, -73.98500945752272 40.69956176624469, -73.98495960400045 40.69953639681608, -73.98491081211891 40.69950985593865, -73.98486313275151 40.699482169735305, -73.98481661203814 40.69945336522888, -73.98476720856466 40.69942161024414, -73.98471738168918 40.69938925003768, -73.98466755604568 40.69935688800865, -73.98464798047364 40.69934417376939, -73.98456309232364 40.69928916363402, -73.98456276204257 40.69926944597499, -73.984563315614 40.69924973113596, -73.98457025808543 40.69919083136556, -73.98457432334233 40.699171356533235, -73.98457925822322 40.699151997983336, -73.98458505680627 40.69913277822773, -73.98459171435236 40.699113720679016, -73.98459921665739 40.69909484784784, -73.98460472471817 40.69908346881202, -73.98461074388469 40.69907224113025, -73.98461726705418 40.69906117920983, -73.98462428712477 40.69905029385577, -73.98463179344412 40.69903959947477, -73.98464049523889 40.69902696825107, -73.98464974479836 40.69901456853136, -73.984659536204 40.69900241022041, -73.9846698599862 40.69899051042651, -73.98468070076079 40.69897887905312, -73.98469205024162 40.69896753230822, -73.98470389304387 40.69895648369727, -73.9847162173336 40.698945741323236, -73.98472900772568 40.698935320492524, -73.98474225120225 40.698925232909964, -73.98475593237902 40.69891549028006, -73.98477003468902 40.69890610250603, -73.98478454393187 40.698897078591, -73.98479944117314 40.69888843294051, -73.98481471457998 40.6988801700554, -73.98483034285177 40.698872304340945, -73.98484630823938 40.69886484119772, -73.98486571559043 40.69885716508347, -73.98488546239703 40.69885000680509, -73.98490552499337 40.698843376264925, -73.98492587734773 40.69883728066344, -73.98494649816153 40.69883172720184, -73.98496735785338 40.6988267239807)), ((-73.9853919959757 40.69937335264518, -73.98543197115369 40.699370727315824, -73.9861129205292 40.69981221372773, -73.98603251208496 40.699810411978795, -73.98593288313901 40.69980483828243, -73.98581068133548 40.69979150560837, -73.98570548934694 40.69977313114988, -73.98566550189838 40.69976571766342, -73.98558133254961 40.69974537538719, -73.98553211852912 40.69973211277235, -73.98548239025544 40.69971690136336, -73.98536474042768 40.699677030697096, -73.98528411139675 40.69964084414229, -73.98524350785425 40.69961099777233, -73.98522110873465 40.69958328523914, -73.98520851417446 40.699548114119295, -73.98520712105919 40.69951294353759, -73.98521412990324 40.69948310326639, -73.98523374202377 40.69944900158766, -73.98526175654406 40.699412769469376, -73.98529816945228 40.69939252520976, -73.98534998508765 40.699378676536526, -73.9853919959757 40.69937335264518)), ((-73.98364315870677 40.69876607851453, -73.98359831476847 40.698726252381725, -73.98364046788198 40.69874294577349, -73.98367183815267 40.69876614292106, -73.98371671104262 40.69879914224579, -73.98376158516061 40.69883213975202, -73.98380601636384 40.698862092546456, -73.98385044642404 40.6988920444229, -73.9838948777075 40.698921995381774, -73.98393930784776 40.698951946323234, -73.98398373921069 40.69898189904855, -73.98402851625546 40.699011234953765, -73.98407329333945 40.69904057174189, -73.98411807282945 40.69906990761237, -73.98416284880884 40.69909924526582, -73.98420762601087 40.69912858290191, -73.9842616685008 40.69916464951442, -73.98431570986604 40.69920071610117, -73.98436975247294 40.699236782662595, -73.98442379632154 40.69927284919863, -73.98447491471471 40.69930654966903, -73.98448533241518 40.69931341837966, -73.98448740461043 40.69934219272459, -73.98449069434132 40.69937090149602, -73.98449519570053 40.699399514075715, -73.98450090633011 40.69942800074624, -73.98450781913898 40.69945633269012, -73.98451592585229 40.69948448379118, -73.98453780641029 40.699537661975526, -73.98453643515901 40.699542385878075, -73.98453323589644 40.69954690962125, -73.9845290832605 40.69955016891712, -73.9845246966205 40.699552257515606, -73.9845197966571 40.69955353018087, -73.98451306293852 40.69955386066345, -73.98450646680021 40.69955277916112, -73.98450092165055 40.6995504118686, -73.9844952114173 40.69954561407127, -73.98447867597925 40.69953077860641, -73.98443668350673 40.699491958160394, -73.98439484841826 40.69945327189648, -73.98435301337813 40.6994145865177, -73.98431117957016 40.699375899322646, -73.98427038799234 40.699338153289894, -73.9842295964607 40.699300407242454, -73.98418880497525 40.69926266118041, -73.98416012805461 40.69923612724785, -73.98414801235279 40.699224915103535, -73.98410722095973 40.69918716901222, -73.98406643079605 40.69914942290639, -73.98402518158447 40.69911172715093, -73.9839839336028 40.699074031380626, -73.9839426856675 40.69903633649587, -73.98390143777861 40.698998642496676, -73.98386018875385 40.69896094578082, -73.98381894095853 40.6989232508512, -73.98377769202662 40.698885555906415, -73.98373284792758 40.6988457298267, -73.98368800388234 40.69880590282875, -73.98364315870677 40.69876607851453)), ((-73.98309761733016 40.699133894054846, -73.98310956971865 40.69897633949146, -73.98312241360254 40.6988070459768, -73.98313713872889 40.69867972921109, -73.98314720789926 40.6986181104331, -73.98340385906427 40.69885499325438, -73.98342506336701 40.69887307139153, -73.98346314669911 40.69890736477329, -73.98350123243632 40.69894165994367, -73.9835393158468 40.69897595329993, -73.98357646506412 40.69901303989902, -73.9835703259737 40.69901568742928, -73.98355648366808 40.699011118955006, -73.98354601440266 40.69900761446628, -73.98353539480578 40.69900437830773, -73.98352464025807 40.69900141408361, -73.98351376140745 40.69899872449688, -73.98350277008477 40.69899631405177, -73.98349167930459 40.698994184551175, -73.98348050089854 40.69899233689725, -73.98346925024703 40.69899077559475, -73.9834579344492 40.69898949974413, -73.98344657125214 40.698988512950066, -73.98343516775462 40.69898781611396, -73.98342374407126 40.69898740743776, -73.98341230493412 40.698987289623624, -73.98340087164014 40.69898746447567, -73.98338944892286 40.69898792839254, -73.98337805334624 40.69898868407814, -73.98336669792624 40.69898972793233, -73.98335539331174 40.69899105905616, -73.98334400812763 40.69899283682124, -73.98333271160858 40.69899491176708, -73.98332151440319 40.69899728389528, -73.98331043071084 40.69899994870526, -73.98329947709733 40.699002901696986, -73.98328866302832 40.6990061419713, -73.98327800152073 40.69900966232613, -73.9832675067728 40.69901346276344, -73.98325719061823 40.699017536080994, -73.98324706489012 40.69902187777801, -73.98323714260441 40.69902648425431, -73.98322743322868 40.69903134740677, -73.98321795332856 40.69903646363583, -73.98320871000531 40.69904182483794, -73.98319971390872 40.699047426512124, -73.98319097805576 40.699053261456285, -73.98318251309759 40.69905932066686, -73.98317432731741 40.69906560054319, -73.98314766256213 40.699089616904644, -73.98314457361575 40.69909275203584, -73.9831379269252 40.699100008290124, -73.98313161385262 40.69910743569024, -73.9831256391338 40.699115022530265, -73.98312001460239 40.69912276250841, -73.98311474381016 40.69913064752067, -73.9831098326764 40.69913866496071, -73.9831044847532 40.69914741985592, -73.98309953434965 40.69915631168712, -73.98309527741782 40.69916474345818, -73.98309761733016 40.699133894054846)), ((-73.98457466790059 40.69939529955099, -73.98457014933011 40.699369333577415, -73.98458036948465 40.699376073479634, -73.98463270655365 40.69941057639913, -73.98468508520787 40.699444562406164, -73.98476682962684 40.69949547110203, -73.98485058488056 40.69954445110711, -73.98493627406846 40.69959145467991, -73.98499392989032 40.69962127906904, -73.98505280478767 40.69964968978337, -73.98511283842038 40.69967666069851, -73.98517397044873 40.69970216208789, -73.98523613934842 40.69972616962812, -73.98527541652922 40.699740158712515, -73.98523974774912 40.69976536668231, -73.98512901061791 40.69976122448031, -73.98502574225327 40.69975567744428, -73.98496380199923 40.69975160175584, -73.98491310683534 40.69974826592851, -73.98479042671079 40.69973761023143, -73.98475393104228 40.699735377535916, -73.98475216853868 40.699733268302985, -73.984696350457 40.69966648521852, -73.98468004519543 40.699643418231936, -73.98466474576442 40.699619956952674, -73.98465046872298 40.69959612389613, -73.98463722826217 40.699571946980484, -73.98462504212331 40.69954745232326, -73.98461391976505 40.69952266604099, -73.98460387301276 40.69949761244932, -73.98459491960591 40.69947232396936, -73.9845870583553 40.69944682221352, -73.98458030581729 40.699421138702085, -73.98457466790059 40.69939529955099)), ((-73.98309525017557 40.69944483336042, -73.98308631075535 40.69933871479217, -73.98308890615644 40.69934555096145, -73.98309284271863 40.69935473046042, -73.9830971910651 40.69936380105774, -73.98310194054864 40.6993727564482, -73.9831070899903 40.69938158042238, -73.98311263110898 40.6993902684765, -73.98311855917598 40.69939880440048, -73.98312486591024 40.699407183690575, -73.98313154658186 40.69941539463936, -73.98314069462175 40.699426778453535, -73.98315034322265 40.69943791920199, -73.9831604805554 40.699448806076695, -73.98317109479126 40.69945942646859, -73.98318217528468 40.69946976776887, -73.98319370665664 40.699479819168985, -73.98320567826183 40.699489567159546, -73.98321807590379 40.69949900363379, -73.98323088420446 40.69950811418115, -73.98324409015027 40.699516891595415, -73.98325767717958 40.69952532326696, -73.98327163227869 40.699533401989584, -73.98328593651871 40.699541117854835, -73.98330057452007 40.69954846185518, -73.98331553208644 40.69955542498335, -73.98333078792177 40.69956199913154, -73.98334632782891 40.69956817889448, -73.9833621316957 40.69957395346301, -73.98337818414115 40.6995793192327, -73.9834200646723 40.69959498788116, -73.98346261637352 40.699609566991015, -73.98350579428525 40.69962303944546, -73.98354954516353 40.699635396231045, -73.9835938205002 40.699646615727886, -73.98363856941715 40.69965668982357, -73.98368374103734 40.699665605903135, -73.98372928330015 40.69967335225209, -73.98378650303744 40.699684512269116, -73.98382347663832 40.69969172336971, -73.98311535121316 40.6996802635067, -73.98311497645592 40.69967899733169, -73.9831073428561 40.699588386679544, -73.98309525017557 40.69944483336042)))",B223K,5116,B223K,B-02,B-02,B-02,B-02,"Nassau St., Sands St. bet. Manh. Bridge and Gold St.",302,33,84,11201,B,6.3,False,Trinity Park,Yes,100003928,PARK,20100106000000.00000,19470813000000.00000,180 SANDS STREET,DPR,True,Trinity Park,Y,Trinity Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223K/,No,57,25,8,{A209BE80-F4C2-4962-9F75-88C27ECA692D} +"MULTIPOLYGON (((-73.98655499326335 40.711127173786814, -73.98660253780874 40.711440765998226, -73.98600737546607 40.71149884477554, -73.98595638514207 40.71118555987474, -73.98655499326335 40.711127173786814)))",M171,5821,M171,M-03,M-03,M-03,M-03,Corner of Cherry St. and Clinton St.,103,1,7,10002,M,0.483,False,Cherry Clinton Playground,Yes,100004359,PLGD,20100106000000.00000,19380616000000.00000,,DPR,False,Cherry Clinton Playground,Y,Cherry Clinton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M171/,No,65,26,7,{A6021E23-B51D-4529-BD2A-8EE69AC45DC7} +"MULTIPOLYGON (((-73.85632486549325 40.68144071717384, -73.85700833954097 40.681245638923265, -73.85723728709748 40.681710306381895, -73.85655473914056 40.68190298816801, -73.85632486549325 40.68144071717384)), ((-73.85711058916404 40.68207325670956, -73.85738519882418 40.682010501887504, -73.85738585484896 40.68201183456277, -73.85751650848061 40.682276998262715, -73.85758572419404 40.68241747338029, -73.85688038470633 40.68255783865902, -73.85681202855974 40.682420380013234, -73.85717419838693 40.68232237048572, -73.85707518080291 40.68213425056199, -73.85711058916404 40.68207325670956)))",Q378,5370,Q378,Q-09,Q-09,Q-09,Q-09,101 Ave. bet. 92 St. and 83 St.,409,32,102,11416,Q,1.318,False,Ampere Playground,Yes,100000143,PARK,20090423000000.00000,19550315000000.00000,97-16 83 STREET,DPR/DOE,False,Ampere Playground,Y,Ampere Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q378/,No,38,15,7,{A36E4049-537A-4E86-B1F7-6197EA3001B6} +"MULTIPOLYGON (((-73.92641794484334 40.820941936972346, -73.92645895591514 40.82084565234012, -73.92710792330776 40.821733281163034, -73.92689598518176 40.82223087109354, -73.92678695125385 40.82242850946452, -73.9252235293763 40.825233175336564, -73.92491333159468 40.825748167209795, -73.92373848219556 40.825337553603305, -73.9245807624781 40.82395626958497, -73.92465765960233 40.82359294719494, -73.92509020004925 40.82252593577058, -73.9254734331662 40.82191683179043, -73.92559519657925 40.82176039155896, -73.926062337301 40.82127232945732, -73.92641794484334 40.820941936972346)), ((-73.92704566791802 40.82240502910918, -73.9272493803149 40.82192675387645, -73.92772225579215 40.82257351388707, -73.92747756641367 40.82298555966492, -73.92704566791802 40.82240502910918)))",X047,4762,X047,X-04,X-04,X-04,X-04,"Gerard Ave., Walton Ave., Grand Concourse bet. E. 151 St., E. 153 St. and E. 158 St.",204,8,44,10451,X,15.99,False,Franz Sigel Park,No,100004821,PARK,20100106000000.00000,18850604000000.00000,613 GRAND CONCOURSE,DPR,True,Franz Sigel Park,Y,Franz Sigel Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X047/,No,84,29,15,{66BDB40B-5942-49CA-A69F-E37E0622D12B} +"MULTIPOLYGON (((-73.89799326873303 40.81957074901017, -73.89827871017407 40.81929620822988, -73.89882323374688 40.819299893986305, -73.8988187223495 40.81970060755821, -73.89846119016553 40.819698187907676, -73.89841441927179 40.81969787206017, -73.89836889298026 40.81969756359412, -73.89836487825514 40.81969753664257, -73.89829799343921 40.81969708325082, -73.89827254906875 40.81969691132318, -73.89822572602299 40.81969659445264, -73.89819496069099 40.81969638629382, -73.89811190437129 40.81969582396291, -73.89804772804544 40.81969538902822, -73.89799129787427 40.819695006836234, -73.89799326873303 40.81957074901017)))",X164,5624,X164,X-02,X-02,X-02,X-02,Rogers Pl. at Dawson St.,202,17,41,10459,X,0.681,False,Dawson Playground,Yes,100003883,PARK,20100106000000.00000,19500501000000.00000,,DPR,Part,Dawson Playground,Y,Dawson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X164/,No,85,32,15,{92734DE9-9627-4218-9B35-4132D9F676DD} +"MULTIPOLYGON (((-74.08901242966652 40.646938160764485, -74.08886287812997 40.64701311669238, -74.08886969655565 40.64702039031297, -74.08794773968788 40.64753520222303, -74.08793855467356 40.64752636345613, -74.0876456951822 40.64769470476157, -74.08763401039305 40.64768373634896, -74.08893678012737 40.64681900867871, -74.08901242966652 40.646938160764485)), ((-74.08917704959603 40.64668057324686, -74.08972509500937 40.64644652640184, -74.08973187071473 40.646457171545876, -74.08973410064678 40.646460817805774, -74.08974011517839 40.64647337264215, -74.0897446335348 40.646487233496785, -74.08974657620858 40.64649881354727, -74.08974766204432 40.6465097422911, -74.08974698453052 40.64651847694727, -74.08974367254082 40.64653835577273, -74.08974182092763 40.64655316534127, -74.08969297887019 40.646576810532316, -74.08970919780867 40.64660008798764, -74.08918504559777 40.646853270249785, -74.0890988339211 40.6467256390745, -74.08917704959603 40.64668057324686)), ((-74.08880450187556 40.64771832610786, -74.08859170511386 40.64747889024286, -74.08861504816826 40.6474966935147, -74.08863209605808 40.64750686253725, -74.08865209763246 40.647516388111534, -74.0886717092985 40.64752342585106, -74.08870058415796 40.6475304420349, -74.08872774912565 40.647533668348935, -74.08875695144485 40.647533541355365, -74.0887888948937 40.64752852602625, -74.08881489556724 40.64752039768363, -74.0888376165102 40.64751133532969, -74.08886084689091 40.64749863088187, -74.08888087061844 40.64748216294029, -74.08889828698364 40.647462723499466, -74.08891205413136 40.64744011615252, -74.08891895685584 40.64741923230028, -74.08892128227009 40.647393400937425, -74.0889203706814 40.64737296167901, -74.08891592414666 40.647357019640204, -74.08890971924518 40.647342617045794, -74.08890509941253 40.64733059419595, -74.08890437590618 40.64732175977066, -74.08890791088601 40.64730841585993, -74.08891371863987 40.64729716749899, -74.08892037589104 40.64728904598085, -74.0889269761161 40.647282492308705, -74.08893204992245 40.64727764449758, -74.08894066788385 40.6472716646955, -74.08895197754458 40.647265418058495, -74.0890734651441 40.64741849497993, -74.08916087322605 40.64752863086964, -74.08880450187556 40.64771832610786)))",R083,6075,R083,R-01,R-01,R-01,R-01,Richmond Ter. to Bank St. at Jersey St.,501,49,120,10301,R,0.731,False,North Shore Esplanade,Yes,100004149,PARK,20100106000000.00000,19630114000000.00000,,DPR,True,North Shore Esplanade,N,North Shore Esplanade,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/R083/,Yes,61,23,11,{D7D5B0E9-21FD-4DE8-84F5-9DFB83980CB7} +"MULTIPOLYGON (((-73.78648217550897 40.785342378566156, -73.78629984063174 40.78536868291623, -73.78613443387859 40.78539254560948, -73.78611853511192 40.78530906550647, -73.78607868584257 40.78509982699315, -73.78604785476485 40.784937847441, -73.78600831051496 40.78473005206423, -73.78600421088062 40.7847084539678, -73.78599977464143 40.78468247789608, -73.78599786399265 40.784670216687566, -73.78599728262627 40.78466679549379, -73.78599674675577 40.78466396331409, -73.78599048763832 40.784655184384015, -73.78593742379685 40.78458075462852, -73.78588364894848 40.78450162649746, -73.78583136995626 40.78442267671826, -73.78578049944117 40.784343813279165, -73.78573228442937 40.78426702501262, -73.78568471085227 40.784189378836686, -73.7856377029472 40.78411048829504, -73.78559599065156 40.78403864142293, -73.7855471758306 40.78395216343475, -73.78550072886142 40.783867315241714, -73.78545898401225 40.78378875139575, -73.78541680535648 40.783706972826415, -73.7853789712432 40.78363140500429, -73.78533742352458 40.78354580403782, -73.78529881735697 40.78346356381394, -73.78526502490206 40.78338935153556, -73.7852254462405 40.783299409261105, -73.78518996062321 40.78321577092669, -73.7851571517853 40.78313566214403, -73.78512395298958 40.78305159941007, -73.78509150493826 40.782966203518015, -73.78505989847338 40.782879591703455, -73.78499673385649 40.782694417541826, -73.78494366290799 40.78252398091967, -73.78489659902452 40.78235964018879, -73.78485787068954 40.782218795647715, -73.78478927005655 40.78192571636598, -73.78479950205147 40.781924999761664, -73.7848280695423 40.78206167583352, -73.78486417251644 40.78221680559118, -73.78490059161004 40.78235847788596, -73.78494705902402 40.78252299850351, -73.78497434136398 40.7826128179871, -73.78500112333862 40.782696921929045, -73.7850206940224 40.782756118870495, -73.78503810364897 40.782807308995345, -73.78506323301829 40.78287897117174, -73.78509479563056 40.782965590107686, -73.78511368471948 40.783015782517936, -73.78512719982324 40.78305099492207, -73.78516035476305 40.78313506567784, -73.78519308449738 40.783215091465806, -73.78522852625268 40.78329873962308, -73.78526805631353 40.78338869171141, -73.78527961320314 40.78341437041063, -73.78530067775431 40.783460496560615, -73.78534032723613 40.783545069232105, -73.78538182871408 40.78363068271842, -73.7854195530564 40.78370612516521, -73.7854616854681 40.783787917154974, -73.78550338644239 40.78386649442586, -73.78554978597978 40.78395135693764, -73.78559855218417 40.78403784924235, -73.78563984355046 40.78410907128125, -73.78568714574742 40.784188548597484, -73.7857345997985 40.784266154927955, -73.78578280413838 40.784342946775766, -73.78583362958136 40.78442182723966, -73.78588586112619 40.78450079584027, -73.78593955080146 40.784579885090416, -73.78599622953983 40.78466122482148, -73.78648217550897 40.785342378566156)), ((-73.78670276560332 40.78557968620386, -73.78648217550897 40.785342378566156, -73.78648569817796 40.785341870004345, -73.78670541222215 40.785578235887904, -73.7869910870111 40.78587321369898, -73.78718216309035 40.786053291953365, -73.7873258293174 40.78618868945884, -73.78769636634273 40.786500813658755, -73.7879430746924 40.78669226740244, -73.78808934652977 40.786805777487665, -73.78835272741594 40.786998155196265, -73.78863527721953 40.7871893526721, -73.78863621010596 40.78719368220327, -73.788350510861 40.78699997374506, -73.78824708288347 40.7869244296135, -73.78808704958834 40.78680754005237, -73.78795779979988 40.78670723745375, -73.7876939878575 40.786502512129736, -73.78732334685819 40.78619029948099, -73.78718010113174 40.78605529987118, -73.78698850297623 40.785874727172335, -73.78670276560332 40.78557968620386)))",Q387E,6258,Q387E,Q-07,Q-07,Q-07,Q-07,Clearview Exwy. bet. Lori Dr. and 15 Dr.,407,19,109,11360,Q,0.316,False,Baybridge Green,No,100000362,PARK,,19310625000000.00000,,DPR,True,Baybridge Green,Y,Baybridge Green,STRIP,Strip,http://www.nycgovparks.org/parks/Q387E/,No,26,11,3,{790D1784-8C7A-452D-BD9E-AF1B50327E0C} +"MULTIPOLYGON (((-73.94880364308555 40.70264963912893, -73.94936080967636 40.702288891074446, -73.94983431166042 40.70271325035083, -73.94927708084089 40.70307314336243, -73.94880364308555 40.70264963912893)))",B358,5199,B358,B-01,B-01,B-01,B-01,Harrison Ave. between Walton St. and Lorimer St.,301,33,90,11206,B,1.1,False,De Hostos Playground (IS 318),Yes,100003861,PARK,20100106000000.00000,19650303000000.00000,140 LORIMER STREET,DPR/DOE,True,De Hostos Playground,Y,De Hostos Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B358/,No,53,26,7,{8DA715E1-3226-427F-8FAC-C6BABA3F2E63} +"MULTIPOLYGON (((-74.0108808468182 40.71743817396503, -74.01112923507816 40.71649076857752, -74.01259003514087 40.717155599786885, -74.01255667709894 40.71729747518859, -74.01185738401684 40.71719266332617, -74.01177328140795 40.71757258543858, -74.01172451636403 40.71756524315383, -74.0108808468182 40.71743817396503)))",M308,4748,M308,M-01,M-01,M-01,M-01,Chambers St. bet. Greenwich St. and West St.,101,1,1,10013,M,2.15,False,Washington Market Park,Yes,100004773,PARK,20100106000000.00000,19990210000000.00000,304 GREENWICH STREET,DPR,False,Washington Market Park,Y,Washington Market Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M308/,No,66,26,10,{0EE9A179-AAE2-452B-9819-2E93EC8C2A13} +"MULTIPOLYGON (((-73.8361202683802 40.715087296603684, -73.8364036649322 40.714899243246066, -73.83757159008508 40.71592156862376, -73.83733482303268 40.71615114038135, -73.8369897316741 40.71585840468638, -73.8367185941527 40.71562021419642, -73.8361202683802 40.715087296603684)))",Q304,5904,Q304,Q-06,Q-06,Q-06,Q-06,Austin St. bet. 76 Ave. and 76 Dr.,406,29,112,11375,Q,1.161,False,Ehrenreich-Austin Playground,Yes,100000134,PARK,20090423000000.00000,,,DPR,True,Ehrenreich-Austin Playground,Y,Ehrenreich-Austin Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q304/,No,28,15,6,{1AAAA451-7375-4A75-9C1E-9D10397B7CDE} +"MULTIPOLYGON (((-73.82508501900409 40.75123430849689, -73.8243190915451 40.75166518479076, -73.82244663613263 40.749733902563214, -73.82229496258857 40.74957745666208, -73.82122340911096 40.748472167438024, -73.81995464782564 40.74802061610617, -73.81975847848095 40.747950797272495, -73.82097812343872 40.74596055903798, -73.82199406537252 40.74629543339541, -73.82201076201639 40.74623897121309, -73.82205590298331 40.74625558870323, -73.82211662247782 40.74627794216068, -73.82217734437636 40.74630029739072, -73.82223830061136 40.74632226303022, -73.82229929730954 40.746344166564654, -73.82242730589552 40.746388813078774, -73.82249073724682 40.74640888773059, -73.82255635373104 40.746429651000625, -73.82262197024652 40.74645041783523, -73.82268758562853 40.74647118102856, -73.82275320104903 40.74649194508494, -73.82281229165562 40.7465134419857, -73.82287137993703 40.74653493705142, -73.82293046943586 40.74655643388957, -73.82298955897282 40.74657793069738, -73.82304864973194 40.746599427476575, -73.82310773816108 40.746620924221794, -73.82316682781484 40.74664242003793, -73.82320845308102 40.746657562947924, -73.82322689054539 40.746664455821005, -73.82323248302832 40.74666794126637, -73.82323763287695 40.74667179794201, -73.82324217063679 40.74667607691696, -73.82324732614393 40.74668226411621, -73.82325132120232 40.74668892860474, -73.82325354991953 40.746694156773586, -73.82325498134558 40.74669954581035, -73.82325576134228 40.74670501129118, -73.82325579536696 40.74670959222874, -73.82325534514628 40.7467141616171, -73.82325435157827 40.74671868154423, -73.82324890981019 40.746769066534, -73.82324397600793 40.74681766029134, -73.82323904220321 40.74686625224718, -73.82323410720485 40.746914845101124, -73.8232291710129 40.74696343885323, -73.82322423718897 40.74701202990687, -73.82321857601193 40.74706431733019, -73.82321291601482 40.74711660295368, -73.82320725481763 40.747168891276196, -73.82320159480275 40.74722117689835, -73.8231959324061 40.74727346431718, -73.82319027355037 40.74732575264132, -73.82318461113832 40.74737803915834, -73.82318314442364 40.74738906542993, -73.82318217256037 40.74740012397892, -73.8231816979526 40.74741120130141, -73.8231817194525 40.74742228388806, -73.82318223709132 40.747433360032225, -73.82318325327331 40.747444416230024, -73.82318476566643 40.74745543897025, -73.82318676956339 40.74746641743954, -73.82318926618912 40.74747733633112, -73.82319225202272 40.74748818393294, -73.82319572117517 40.747498948529284, -73.8231996724986 40.74750961661077, -73.82320409891744 40.7475201773604, -73.82320899692517 40.747530613663066, -73.82321436061841 40.74754091920606, -73.82322018174956 40.74755107866804, -73.82322645916338 40.747561081241095, -73.82323317868003 40.74757091609726, -73.82324033915137 40.747580569727084, -73.82324792521112 40.74759003220133, -73.82325593214944 40.74759929360708, -73.82326434816159 40.74760834041847, -73.82327316853534 40.747617163623175, -73.82328237790666 40.74762575239143, -73.8232919680086 40.74763409860585, -73.82330192703417 40.747642189641084, -73.82331224197773 40.74765001827308, -73.82332290339312 40.74765757458165, -73.82333389590896 40.74766485043856, -73.82334521008141 40.74767183502312, -73.82335683053199 40.74767852290856, -73.82336874544387 40.74768490507167, -73.82338093944333 40.74769097428465, -73.82339339715168 40.74769672512082, -73.82340610675688 40.74770214675589, -73.82342028548881 40.747707682304856, -73.82343221775392 40.74771198881677, -73.82344558958211 40.747716394788974, -73.82345915060374 40.747720451652484, -73.82347288662191 40.74772415488292, -73.82349503465348 40.74772502539719, -73.82359652414782 40.74776811440121, -73.82362969299689 40.74777990782119, -73.82365834297195 40.74779009411047, -73.82372016302331 40.747812072887754, -73.82378198074733 40.74783405162823, -73.82384380087312 40.7478560330406, -73.82391105150164 40.747875205932694, -73.82397830453225 40.74789438059017, -73.8240001625776 40.7479006112885, -73.82404555641992 40.74791355430598, -73.82411280834386 40.74793272888296, -73.82418006149298 40.74795190252194, -73.82424731349198 40.74797107792081, -73.82428836422235 40.74798089125326, -73.82430864996341 40.7479857426175, -73.82436998883232 40.748000406384605, -73.8244313265418 40.74801507101772, -73.8244926654624 40.74802973561992, -73.82455400203942 40.74804440108631, -73.82461533983229 40.74805906472084, -73.82467668001557 40.748073730127274, -73.8247380166784 40.74808839369461, -73.82480599453766 40.74810452165129, -73.82487397242983 40.74812064956783, -73.82494195035964 40.74813677564319, -73.82500992713359 40.748152903477624, -73.82507790512688 40.7481690303732, -73.82514588315541 40.74818515632809, -73.82521386120986 40.74820128494432, -73.8252818381154 40.74821741261814, -73.82534981505863 40.74823353845075, -73.82541779440058 40.74824966514734, -73.82548170608912 40.748262774341946, -73.82554561899873 40.74827587900034, -73.82560953074473 40.74828898542246, -73.82567344251343 40.74830209270958, -73.82573735667548 40.748315199964836, -73.82580126849454 40.74832830718096, -73.82583438481582 40.74833372608934, -73.82586173280006 40.74832401133568, -73.82586312015455 40.74835043163521, -73.82586581345842 40.748355142662135, -73.8258674699853 40.74836012497551, -73.82586807172216 40.7483663808135, -73.82586149029679 40.74841678400029, -73.82585967207355 40.74843017360558, -73.82585253298544 40.7484832747706, -73.82584535795633 40.748537437579316, -73.82583810715579 40.74859159216801, -73.82583101958248 40.74864263934985, -73.82581004209484 40.74879580653616, -73.82580310009443 40.74884686384057, -73.82579611545403 40.74889792198024, -73.8257914898873 40.74893208115417, -73.82578870308437 40.74895225011684, -73.8257809319955 40.749006550694695, -73.82577336451907 40.7490608659878, -73.8257657958415 40.74911518307917, -73.82575822834039 40.74916949837039, -73.8257513377737 40.74921987496295, -73.82574393813705 40.749270212963296, -73.82573706886043 40.74932059048703, -73.82573653449735 40.74932434029368, -73.82571316659848 40.74930705751081, -73.82553171255256 40.75098301401678, -73.82535191393649 40.75108416301385, -73.82526118608686 40.75113520396367, -73.82522391089955 40.751100467061576, -73.82504774385082 40.75119957243875, -73.82508501900409 40.75123430849689)), ((-73.82596544552872 40.74949364146986, -73.82719175175761 40.74992010873479, -73.82729302859624 40.74994740733957, -73.82740392240264 40.74996070386317, -73.8274701572414 40.749960449193146, -73.82760986828322 40.749939591898425, -73.82768476168094 40.74992087254563, -73.82774538800412 40.7499057185313, -73.82785400273885 40.74987857031221, -73.82794975088764 40.74985463829685, -73.82805300046694 40.74982787629846, -73.8281635497848 40.74979567432457, -73.82827126331034 40.74976429738434, -73.82835654602277 40.749739455223235, -73.82847166503127 40.74968773045195, -73.82859575766031 40.749629756788664, -73.82868177087929 40.74958549422334, -73.82876120012078 40.74953903447237, -73.82884488419026 40.74949008568201, -73.82888748308683 40.749469885747885, -73.82893798003106 40.74944594060949, -73.82900364118096 40.74941480399443, -73.82904494977217 40.74940042476965, -73.82927813892789 40.749337005678555, -73.82935866111059 40.74931753265114, -73.82945956703054 40.74929312975274, -73.82954348126896 40.749272835852786, -73.82956997519149 40.74926642832233, -73.82968806567474 40.74923786959199, -73.82977470425789 40.749225961478174, -73.82984640733451 40.74921610690718, -73.82993176303806 40.74920437508066, -73.83057365211633 40.7491161518659, -73.83076486201594 40.7490898697864, -73.8308784489069 40.749067243868765, -73.83096751086784 40.74903900950897, -73.83106600187378 40.74899294624891, -73.83114048019459 40.748950319161494, -73.8311818389406 40.74892005698832, -73.83122374659092 40.74888484101075, -73.83126414320225 40.74884498969161, -73.83131266922429 40.74878615315179, -73.83135081838725 40.74872616675806, -73.83138362205536 40.74865467214084, -73.83139874605436 40.74860659905831, -73.83141226188157 40.74850571964191, -73.83140953412861 40.74841386745232, -73.83140121086802 40.748300321941464, -73.83139480245832 40.74821290746692, -73.83151320501408 40.74819708320454, -73.8315126446346 40.74819673839081, -73.83165746459456 40.74817686701644, -73.83279291404718 40.74798815086919, -73.83281725150896 40.74798529556684, -73.83283829901701 40.7479878709502, -73.8328482885726 40.74799088323827, -73.83286906176261 40.7480022732894, -73.8328741894522 40.7480067301391, -73.83288495924745 40.74802109805971, -73.83288996050456 40.7480410281518, -73.83288553464337 40.74806454929921, -73.83287025757225 40.74812738888454, -73.83268211825988 40.74890129670274, -73.83260144015429 40.7492331579577, -73.83223874906277 40.750725005538726, -73.83219700617488 40.75089670303586, -73.83207311037424 40.75140630245968, -73.83073740943072 40.7519007566683, -73.8306969755974 40.7519106037276, -73.8306598867028 40.7519140269679, -73.83063444089467 40.75191348257092, -73.83057536983952 40.75190284355523, -73.83055370996937 40.75189522401921, -73.830508245271 40.75187040578292, -73.83046670711752 40.751842368590665, -73.83041478417704 40.751807322754075, -73.82995343923585 40.751642010042005, -73.82941443777896 40.75144886737803, -73.82940492362872 40.751499128620516, -73.82936584145872 40.75148519571281, -73.82930569624196 40.75146375196544, -73.82924554750925 40.75144230908181, -73.8291964442696 40.75142461244788, -73.82918667946666 40.75142109229215, -73.82912781027052 40.75139987817215, -73.82906894348703 40.75137866132396, -73.82901007436588 40.751357447143675, -73.82895120528919 40.75133623023167, -73.82889233861587 40.75131501419356, -73.82883346961184 40.75129379812177, -73.82877460183173 40.75127258112113, -73.82875794116201 40.75126657878476, -73.8287157329027 40.751251364989, -73.82865361062956 40.75122945329795, -73.82859149076782 40.751207540676354, -73.82852936739921 40.751185626214884, -73.82846724525332 40.7511637126221, -73.82845416442439 40.75115856475125, -73.82844317856676 40.75115424036152, -73.82842449657592 40.751146887806925, -73.82840834605594 40.75114053137977, -73.82838174554954 40.75113006387282, -73.82834858690796 40.751117012936355, -73.82833899691767 40.75111323812534, -73.82832869031402 40.75111138572963, -73.82831830843595 40.751109795268505, -73.82830786074234 40.75110847215911, -73.82829736382233 40.751107411923556, -73.82828682357795 40.751106621774746, -73.82827625659604 40.75110609813533, -73.82826567233778 40.75110584552197, -73.82825508146712 40.75110586124905, -73.82824449819347 40.75110614533769, -73.82823393317378 40.75110669780388, -73.82822339824675 40.75110751956569, -73.82821290407408 40.751108608838074, -73.82820246605615 40.751109962942486, -73.8281920912976 40.75111158188954, -73.82818179400778 40.751113465700456, -73.82817158604173 40.75111560898983, -73.82816147569518 40.751118009068605, -73.82815147954341 40.75112066686201, -73.82814160589139 40.751123576078975, -73.82813186303262 40.751126734930764, -73.82807527488298 40.75114825906162, -73.8280186843308 40.75116978226059, -73.82796209492624 40.75119130543341, -73.82790550429628 40.75121283037763, -73.82784891600501 40.75123435259603, -73.82779232530429 40.751255876584004, -73.82773573575345 40.75127739964538, -73.8276791461637 40.75129892357938, -73.8276538505224 40.75130817446926, -73.8276467188621 40.75131078247434, -73.82761772877934 40.751321384893096, -73.82755630780582 40.751343844367625, -73.8274948891545 40.75136630561389, -73.82743346927992 40.75138876592505, -73.82737204936399 40.751411226203395, -73.8273289499076 40.751426988023, -73.82737472745204 40.751400877982356, -73.82655571582421 40.75169815059271, -73.82646341385394 40.75173165183037, -73.82641526073394 40.7516758144464, -73.8262980724876 40.7515305453118, -73.82617671736463 40.7513700106655, -73.82611343766564 40.75124741640889, -73.82605479310632 40.7511338026729, -73.82602261841166 40.751054298693006, -73.82598245986787 40.75095506332586, -73.82594359561827 40.7508590276016, -73.82592218497877 40.750753191901865, -73.82589863860409 40.75063680262053, -73.82588284513929 40.75050213213909, -73.82588115024997 40.75037408368708, -73.82588598292634 40.750231256061824, -73.82591560373642 40.74995474860448, -73.82594567335447 40.749674055346404, -73.82596544552872 40.74949364146986)), ((-73.81712079613929 40.74710266242888, -73.8169145791243 40.74705593522599, -73.8168928391408 40.747107896917065, -73.8157571701776 40.74685677113799, -73.8149558640352 40.74667957494888, -73.81386515937305 40.74570041996633, -73.81613034793058 40.74619988198249, -73.81620415768607 40.74620751363116, -73.81624695239236 40.74620281101955, -73.81627316704522 40.74619593873532, -73.81634356602972 40.74616217928708, -73.81637619799749 40.74613173469686, -73.81638837632799 40.74611480113977, -73.81640121960373 40.746088588901756, -73.81675389937682 40.74511792871748, -73.8167632999007 40.74508801256972, -73.81676515100114 40.745057704396146, -73.81674337594688 40.744993476997855, -73.81669996634282 40.744948267226036, -73.81665219050622 40.74492185580788, -73.81660476421541 40.74490783682513, -73.81463072022531 40.74449249668791, -73.81393248347491 40.744480280120655, -73.81440361602056 40.74308926433169, -73.81478985823185 40.74318794611283, -73.81501557785934 40.743245615456004, -73.81520626717015 40.74329433472991, -73.81551810799388 40.7433740055888, -73.81577355565133 40.74343926732068, -73.8160853978318 40.743518936642005, -73.81650950500845 40.743627286031746, -73.81682869732764 40.74372528859724, -73.81732566331074 40.74388971293959, -73.81788911252372 40.74407612983599, -73.81772374290436 40.74453140854802, -73.81770979707693 40.74458829862094, -73.8177087195876 40.74462336362134, -73.81773561283097 40.74471872411799, -73.81782284132892 40.744824429646044, -73.81789616754087 40.74486986279914, -73.81917293298032 40.745300677662485, -73.81900959579406 40.74558132211838, -73.8192371404831 40.74565885393558, -73.81923622376372 40.74567423047948, -73.82064544597569 40.74616117901929, -73.81958329738622 40.74791894128461, -73.81869516262927 40.747601862753655, -73.81830908521272 40.74747728591844, -73.81825205488155 40.74745556933599, -73.81818547205661 40.74743063994188, -73.81811788791039 40.747407319036675, -73.81804937103554 40.74738563554323, -73.81797998769815 40.747365603072225, -73.81790980767921 40.74734724874771, -73.81789612517797 40.747344033913656, -73.81780454079448 40.74731448118028, -73.81722516283996 40.74718320115978, -73.81718823939511 40.74717018334626, -73.81713769827597 40.74715236580484, -73.81710736031789 40.74714591592187, -73.81712079613929 40.74710266242888)), ((-73.83221905645938 40.75229745372507, -73.83207728628349 40.75235024019318, -73.83189486726994 40.75226190540063, -73.83172901168521 40.752182827416824, -73.83163524204733 40.75213811888475, -73.83155459834443 40.752099668186354, -73.8312690493002 40.751963519484114, -73.83164442063867 40.75182267736305, -73.83215165091927 40.752065879212104, -73.83221905645938 40.75229745372507)), ((-73.82597277637895 40.74947955239476, -73.82596544552872 40.74949364146986, -73.82595606192022 40.74948670148587, -73.82595855570345 40.74948531396943, -73.82596328608915 40.74948308065348, -73.82596820764132 40.74948109886787, -73.82597277637895 40.74947955239476)))",Q300,69210,Q300,Q-07,Q-07,Q-07,Q-07,"Booth Memorial Ave., Crommelin St., Colden St. bet. College Pt. Blvd. and Kissena Blvd.",407,20,109,11355,Q,100.873,False,Kissena Corridor West,No,100000443,PARK,,19401224000000.00000,,DPR,True,Kissena Corridor Park,Y,Kissena Corridor Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q300/,No,25,16,6,{0FB6D7E7-D246-42DC-94B3-0BC498B69004} +"MULTIPOLYGON (((-73.84620812420202 40.785360617276446, -73.8467272059813 40.78534030187882, -73.84676193578002 40.785887805898845, -73.84624231139789 40.78590678618817, -73.84620812420202 40.785360617276446)))",Q457,6272,Q457,Q-07,Q-07,Q-07,Q-07,14 Ave. bet. 121 St. and College Point Blvd.,407,19,109,11356,Q,0.659,False,College Point Park,Yes,100000070,PARK,,19880108000000.00000,,DPR,True,College Point Park,Y,College Point Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q457/,No,27,11,14,{F396E629-825D-4C05-AA0A-9A0A2DAFE276} +"MULTIPOLYGON (((-73.95403188004711 40.648017681775436, -73.95412574157467 40.648013803801874, -73.95415151401592 40.64834301548134, -73.95405765788243 40.64834697452473, -73.95403188004711 40.648017681775436)))",B392,4888,B392,B-17,B-17,B-17,B-17,Albemarle Rd. between Bedford Ave. and Veronica Pl. at Lott St.,317,40,67,11226,B,0.06,False,Lott Park,Yes,100004957,PARK,20100106000000.00000,19720814000000.00000,2503 ALBEMARLE ROAD,DPR,False,Lott Park,N,Lott Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B392/,No,42,21,9,{67A401F9-5E90-479F-8194-C953D7EAB860} +"MULTIPOLYGON (((-73.95671380774951 40.604913303514074, -73.95669496072226 40.604815577175444, -73.95613091241668 40.604878583507706, -73.9560261081903 40.604335118967505, -73.95621221028371 40.60431433123041, -73.95642875163708 40.6042901435584, -73.95642286278299 40.60425960732618, -73.95631360025175 40.603693039332, -73.95663916028366 40.60365722188475, -73.95683964262547 40.60469676810344, -73.95684849097121 40.60474265031832, -73.95687780223821 40.60489463340434, -73.95681110105795 40.604902227675055, -73.95671380774951 40.604913303514074)))",B157,5453,B157,B-15,B-15,B-15,B-15,"Ave. S, Morre Pl. bet. E. 16 St. and E. 17 St.",315,48,61,11229,B,1.447,False,Kelly Park Playground (PS 255),Yes,100004154,PARK,20100106000000.00000,19370210000000.00000,1840 EAST 16 STREET,DPR,True,Kelly Park Playground,Y,Kelly Park Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B157/,No,45,17,9,{46D19E85-C8E6-458F-86C0-2C1480AD5BD9} +"MULTIPOLYGON (((-73.98257998337623 40.722073586235815, -73.98276478544763 40.7218198954959, -73.98278076473092 40.72182663279749, -73.98286844492092 40.72186360458869, -73.98266828872497 40.72213786802381, -73.98285933943026 40.72221803026119, -73.98287611412815 40.72222506843773, -73.98269606893427 40.72247179371658, -73.98247242467652 40.722377493658605, -73.98265221350792 40.72213112348835, -73.9826622173901 40.722117425544496, -73.98263179250048 40.72210459680341, -73.98257487545497 40.72208059773023, -73.98257443401766 40.72208041125797, -73.98257998337623 40.722073586235815)))",M345,5002,M345,M-03,M-03,M-03,M-03,E. 2 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.249,False,Kenkeleba House,No,100003971,PARK,20100106000000.00000,20021120000000.00000,218 EAST 2 STREET,DPR,False,Kenkeleba House Garden,N,Kenkeleba House Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M345/,No,74,26,12,{E8A4918D-648F-49D3-8E13-888D2731B5E1} +"MULTIPOLYGON (((-73.95869140419849 40.68165345020893, -73.95861689936314 40.681278614985736, -73.95876524256728 40.681255670907596, -73.95927947380734 40.68136307287321, -73.959236634847 40.68147651259881, -73.95953964059476 40.681539796923495, -73.95983542154791 40.6816015722681, -73.95973340090818 40.6818717242042, -73.95869140419849 40.68165345020893)))",B102,5059,B102,B-02,B-02,B-02,B-02,Classon Ave. bet. Fulton St. and Lefferts Pl.,302,36,88,11238,B,0.934,False,Crispus Attucks Playground,Yes,100004758,PARK,20100106000000.00000,19260102000000.00000,1030 FULTON STREET,DPR,True,Crispus Attucks Playground,Y,Crispus Attucks Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B102/,No,57,25,8,{909F4A6C-B599-42DF-B057-2836EECCE696} +"MULTIPOLYGON (((-73.82677155590329 40.82164238264653, -73.82583866451824 40.82054333623258, -73.82552294625692 40.82014795184898, -73.82545235536304 40.82005192576393, -73.82523420852999 40.81974736386575, -73.82509200600825 40.8195366946365, -73.82492764389933 40.819275768096134, -73.8243498813569 40.818319460777715, -73.82341437242938 40.81677653880879, -73.82837311372013 40.81506627690363, -73.82864643199106 40.81497199958997, -73.8285044188624 40.81478281698488, -73.8262344058485 40.81090422035224, -73.82598022724729 40.81098544382975, -73.82604866749169 40.810865223288566, -73.82771308083552 40.80794140428084, -73.82915473301652 40.80540867487341, -73.83007478143243 40.805152725803424, -73.8305425245502 40.805022600462244, -73.83133863955642 40.804801236376846, -73.83204612553813 40.80589587077997, -73.83343037621349 40.808100267524445, -73.83412220121129 40.809158676604945, -73.8348233012112 40.81025277239197, -73.83558669025757 40.811435454486414, -73.83570301710412 40.811637796769055, -73.8358109432473 40.81184280955013, -73.83591036363856 40.8120502900912, -73.83600117915098 40.81226003566087, -73.83604285104863 40.81239196039526, -73.8360759173442 40.81252528395828, -73.83610029818703 40.81265968386514, -73.83611593388451 40.81279483315545, -73.83612278726386 40.81293040399837, -73.83612084012168 40.81306606588652, -73.83611009913749 40.81320149104745, -73.83608780750333 40.813333751639924, -73.83608289521517 40.81337733780348, -73.83607798292064 40.81342092396651, -73.83606173451656 40.81350753875344, -73.83603911152875 40.81359332501796, -73.83601425435694 40.813700255412144, -73.83599212468002 40.81380753186862, -73.83598509448542 40.81384477640144, -73.83597549206384 40.81388692769388, -73.83595830869882 40.8139834601233, -73.8359471167828 40.81408813617928, -73.83593638891232 40.81416322070476, -73.83592914269008 40.81423854521309, -73.83592512553116 40.81432522330001, -73.83592502739502 40.814384259852844, -73.83592181008645 40.814431589986256, -73.8359192191705 40.81452675820012, -73.835921799524 40.81462192566728, -73.83592954682325 40.81471693209239, -73.835932089929 40.81471519504742, -73.83593329737432 40.81474850440817, -73.83598473680443 40.81501575282337, -73.83599700568354 40.81532252690566, -73.83599622535237 40.815639177988125, -73.83595654193451 40.81588650647104, -73.83589078374982 40.81614369249731, -73.83586852525305 40.8162604986798, -73.83569880207604 40.81626230558535, -73.83568555704363 40.81693225387341, -73.83567173456915 40.817631454848005, -73.8340479146223 40.819245381870395, -73.83370873634642 40.81908908634765, -73.83367327381083 40.819124038456785, -73.83314288454619 40.81850173578583, -73.83162695856993 40.819225413717575, -73.8316487298848 40.819251106098584, -73.83179970032964 40.81943880920864, -73.83157363826676 40.819550056327046, -73.83150077205741 40.81958591395742, -73.82853050873383 40.82104752690977, -73.8283736868516 40.82086307785791, -73.82677155590329 40.82164238264653)), ((-73.84063206909191 40.816449159346405, -73.84066352744655 40.8163290286273, -73.83912865611333 40.81634542328493, -73.83917263142294 40.81622527260938, -73.83894620410157 40.816227689565444, -73.83890572257556 40.81634540558665, -73.83867911598027 40.81634679339919, -73.83867679422863 40.816342788336144, -73.83867632040358 40.816341201895696, -73.83867583247735 40.816339076036954, -73.83867556144274 40.81633597884401, -73.83867551388543 40.81633114940495, -73.83867628261486 40.81632647509328, -73.83867799416576 40.81632158688158, -73.83868765606103 40.8163012815554, -73.83869293052689 40.81629103676114, -73.83869850924918 40.816283385827454, -73.83870392173903 40.81627781121008, -73.83871175662985 40.81627188068224, -73.83871671906648 40.81626664762408, -73.8387212322805 40.81626141393733, -73.83872350071462 40.81625660664827, -73.83872441110843 40.816252165763416, -73.83872412365561 40.81624703882431, -73.83872269199095 40.81624110343826, -73.83871995262486 40.81623481592912, -73.8387175104384 40.81623013082215, -73.83792273467046 40.81623860935504, -73.83711492258827 40.81624722158122, -73.83695948728412 40.81624887853089, -73.83702420494313 40.816036450607974, -73.83714193743394 40.81582881434725, -73.83728578927447 40.815591528091204, -73.83744254412144 40.81540373682916, -73.837638662347 40.815097256550494, -73.83775636595001 40.81489951517341, -73.83784788555016 40.81475616208239, -73.8379125464751 40.814620746876535, -73.83796950306676 40.81448335051395, -73.83801865282499 40.814344224100985, -73.83805291414488 40.8142295820223, -73.8380818722253 40.81411409862211, -73.83810549237238 40.813997917034996, -73.83812374701114 40.81388117770313, -73.83689678001468 40.81391913888747, -73.83689482810642 40.81389874973584, -73.83689271587022 40.813898803479155, -73.83689226372707 40.81387195176879, -73.8368871453571 40.81381847201322, -73.83688248030559 40.81379184937244, -73.83686485526185 40.81373983053928, -73.8368391871187 40.81368978141824, -73.83680584274919 40.813642416618826, -73.83676529934372 40.81359841218408, -73.83662116510696 40.81314302299765, -73.83658436855671 40.81293638110553, -73.83653887853471 40.81273074083105, -73.83648473845466 40.812526312942225, -73.83642200713606 40.81232330822717, -73.83635817556383 40.81215339074418, -73.8362873523695 40.811985079688675, -73.83620960830531 40.81181854084023, -73.83612501886188 40.81165393998402, -73.83603366783439 40.811491438413576, -73.8360339025167 40.81149143334434, -73.83556819043906 40.81075714422852, -73.83407088657064 40.80842308916641, -73.83290715076556 40.806643931770786, -73.832224554589 40.8056146433026, -73.83222246137208 40.805611485804675, -73.83222254428085 40.80561150483583, -73.83189819982357 40.80510478831737, -73.83190002893397 40.80510411290798, -73.83171224756931 40.80481988063288, -73.83171374814542 40.80481930830436, -73.83164593571311 40.80471562385963, -73.83171084200646 40.80469756544753, -73.83202292205723 40.80461073963175, -73.8323350012938 40.804523912969906, -73.83298452376046 40.80434320062161, -73.83321025281127 40.804280396068464, -73.83770805891446 40.805273609037165, -73.83936021461157 40.80563839051121, -73.84072435920278 40.8067160509517, -73.84246932312197 40.812437185172136, -73.84238531656308 40.81322421794351, -73.84088851947374 40.81712238380077, -73.84021413287569 40.817966078812624, -73.8402621514809 40.81779115876156, -73.84063206909191 40.816449159346405), (-73.83223354739636 40.80561405575645, -73.83223210594842 40.80561185193621, -73.8322289969147 40.805613000952135, -73.83223354739636 40.80561405575645)))",X126,6315,X126,X-10,X-10,X-10,X-10,"Schley Ave., LI Sound bet. Westchester Creek and Balcom Ave.",210,13,45,10465,X,413.8,False,Ferry Point Park,No,100004489,PARK,20100106000000.00000,19370722000000.00000,,DPR,True,Ferry Point Park,Y,Ferry Point Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/X126/,Yes,82,34,14,{2C63C401-A3FB-4CF8-B173-312DCF71B61A} +"MULTIPOLYGON (((-73.90616788449243 40.845220278343405, -73.90617183360698 40.84517543880817, -73.90651956823586 40.84519143293731, -73.90651550312107 40.845236290399995, -73.90616788449243 40.845220278343405)))",X148E1,5707,X148E1,X-05,X-05,X-05,X-05,Cross Bronx Exwy Service Rd N bet. Monroe Av and Topping Av,205,15,46,10457,X,0.032,False,Park,No,100005211,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,STRIP,Undeveloped,http://www.nycgovparks.org/parks/X148E1/,No,86,33,15,{D8D26211-D62E-4F55-82D6-2C6CFEFDD61A} +"MULTIPOLYGON (((-73.89062840207225 40.67354702201375, -73.89099326557572 40.67349141744252, -73.89101048748589 40.673558773425306, -73.89092211413532 40.673572242436066, -73.89085777784412 40.673582045671516, -73.89088262923688 40.67367924029483, -73.89081717053895 40.67368896229711, -73.89086211955401 40.67386475139353, -73.8907955982984 40.673874631766836, -73.89071452915272 40.67388667212877, -73.89064548757689 40.673614399533776, -73.89062840207225 40.67354702201375)))",B458,5256,B458,B-05,B-05,B-05,B-05,Glenmore Ave. and Van Siclen Ave.,305,37,75,11207,B,0.161,False,E End Community Garden,No,100004729,PARK,20100106000000.00000,20121120000000.00000,532 GLENMORE AVENUE,DPR,False,East End Community Garden,N,East End Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B458/,No,55,19,8,{699C423C-4D9A-4999-BAD9-A5C1B21F068F} +"MULTIPOLYGON (((-73.95603390668552 40.70928636666376, -73.9563533241193 40.708774588156096, -73.95661308471236 40.70886423498663, -73.95628103817225 40.70937665507918, -73.95603390668552 40.70928636666376)))",B223PB,4648,B223PB,B-01,B-01,B-01,B-01,"Rodney St., S. 4 St. and S. 5 St.",301,34,90,11211,B,0.37,False,Rodney Park North,Yes,100004430,PARK,20100106000000.00000,19520206000000.00000,298 RODNEY STREET,DPR,True,Rodney Park North,Y,Rodney Park North,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B223PB/,No,53,18,7,{1B378E77-A53D-4431-B76A-5E4C6B337651} +"MULTIPOLYGON (((-73.98342574979382 40.752981038826334, -73.98482117582287 40.753567492692625, -73.98403004945656 40.754654592071226, -73.98263460643588 40.75406812781262, -73.98110626334864 40.75342577822207, -73.98189742401901 40.75233869873137, -73.98342574979382 40.752981038826334)))",M008,6569,M008,M-05,M-05,M-05,M-05,"bet. 5 and 6 Av, W 40 St and W 42 St",105,4,14,10018,M,9.603,False,Bryant Park,Yes,100003893,PARK,20100106000000.00000,18690427000000.00000,1060 6 Av,DPR,False,Bryant Park,Y,Bryant Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M008/,No,75,27,12,{8E314E2A-30BA-4E6C-A174-CD4CA100EFBB} +"MULTIPOLYGON (((-73.98207398041201 40.722380078909964, -73.98215023797864 40.72241223174076, -73.981976088572 40.722650859421194, -73.98189983200017 40.72261870557576, -73.98207398041201 40.722380078909964)))",M357,5011,M357,M-03,M-03,M-03,M-03,"E. 3 St., bet. Ave. B and Ave. C",103,2,9,10009,M,0.061,False,Los Amigos Garden,No,100003897,PARK,20100106000000.00000,20040927000000.00000,221 EAST 3 STREET,DPR,False,Los Amigos Garden,N,Los Amigos Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M357/,No,74,26,12,{00973A5B-719F-46E2-B0F7-8B1D460C81A7} +"MULTIPOLYGON (((-73.97698288808616 40.72400364666558, -73.97716075145662 40.72376274812517, -73.97723714080584 40.72379489432466, -73.97731570308065 40.723827954017864, -73.97746184642104 40.72388945328242, -73.9774713165694 40.723893437187826, -73.9775502435859 40.72392665167948, -73.97758497026754 40.723941264705594, -73.97763092577519 40.72396060307443, -73.97770809667227 40.72399307779825, -73.97753023348223 40.7242339762759, -73.9774071079541 40.72418216389551, -73.97728398261744 40.72413035138307, -73.97713784009659 40.724068851895034, -73.97705927762604 40.72403579208154, -73.97698288808616 40.72400364666558)))",M311,5961,M311,M-03,M-03,M-03,M-03,E. 8 St. bet. Ave. C and Ave. D,103,2,9,10009,M,0.388,False,Green Oasis and Gilbert's Garden,No,100004525,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,Green Oasis and Gilbert's Garden,N,Green Oasis and Gilbert's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M311/,No,74,27,12,{F38252F8-7BB6-4CB9-9DAF-74D418E2067A} +"MULTIPOLYGON (((-73.94485893894111 40.685922143005776, -73.94486959990802 40.685976434691405, -73.9445628600735 40.68601168292392, -73.94455188701816 40.68595742617967, -73.94485893894111 40.685922143005776)))",B546,5510,B546,B-03,B-03,B-03,B-03,Tompkins Ave. bet. Madison St. and Monroe St.,303,36,79,11216,B,0.039,False,The Feeding Tree,No,100008359,PARK,20130422000000.00000,20130325000000.00000,340 TOMPKINS AVENUE,DPR,False,The Feeding Tree,,The Feeding Tree,,Garden,,No,56,25,8,{7B1A5C11-1339-4B9A-B795-41B4DBD6698C} +"MULTIPOLYGON (((-73.89478193236265 40.84633610857607, -73.89458435363632 40.84633216232607, -73.89438359857087 40.84633316013748, -73.89422327963801 40.84633735541597, -73.89410205562692 40.84633359539464, -73.89397835802873 40.84632610223033, -73.8938936430008 40.84632016663073, -73.89381209862964 40.846312153749004, -73.89373055766025 40.84630202375394, -73.8936545990348 40.84628925229903, -73.89356921875154 40.84627299439787, -73.89349312400734 40.84625862523646, -73.89341269220533 40.84624089948225, -73.89331843349768 40.84621892676732, -73.8931532093095 40.846171275543746, -73.8937680979257 40.84516175863571, -73.89481269385173 40.84400007477998, -73.89720843298271 40.84426345686365, -73.89609344244484 40.84650789037236, -73.89577946236521 40.846448903991956, -73.89565680686228 40.846426190737525, -73.89556110532952 40.84641244005168, -73.89545640855602 40.846396194873556, -73.8953476197755 40.846380569029016, -73.89514262271247 40.84636061884834, -73.89495082933023 40.84634627599106, -73.89478193236265 40.84633610857607)))",X010A,6595,X010A,X-06,X-06,X-06,X-06,E 175 St to E Tremont Av bet. 3 Av and Arthur Ave,206,15,48,10457,X,15,False,Tremont Park,Yes,100005212,ZONE,20100106000000.00000,18881208000000.00000,530 EAST TREMONT AVENUE,DPR,True,Tremont Park,Y,Tremont Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X010A/,No,86,33,15,{650CCF5E-FC4E-417B-8B1F-782B98F4453A} +"MULTIPOLYGON (((-74.00257420854815 40.68237156799899, -74.00254029788147 40.68236218809743, -74.00254154811269 40.682359612599576, -74.00257206972225 40.6823680560419, -74.00269905688887 40.682106548342645, -74.00270244238502 40.68210749380301, -74.00257420854815 40.68237156799899)))",B223C,6144,B223C,B-06,B-06,B-06,B-06,Hicks St. and Summit St.,306,39,76,11231,B,0.003,False,Strip,No,100004318,PARK,20100106000000.00000,19490817000000.00000,,DPR,True,Park,N,Park,Neighborhood Park,Strip,http://www.nycgovparks.org/parks/B223C/,No,52,26,7,{3C8AFF20-2431-4AA5-928E-2EE6ACDE3322} +"MULTIPOLYGON (((-73.99390724820346 40.59039681491948, -73.99419770477712 40.59026077441866, -73.99501951135885 40.591272792894195, -73.9947166586995 40.59141410024817, -73.99446600004458 40.591130736175955, -73.99390724820346 40.59039681491948)))",B280,5085,B280,B-11,B-11,B-11,B-11,S/s Shore Pkwy between 25 Ave. and Bay 41 St.,311,43,62,11214,B,1.056,False,Nellie Bly Park,No,100004467,PARK,20100106000000.00000,19560409000000.00000,1842 SHORE PARKWAY,DPR,True,Nellie Bly Park,N,Nellie Bly Park,Concession,Managed Sites,http://www.nycgovparks.org/parks/B280/,No,46,23,11,{8C4B112A-1019-4597-A3A2-11146419BA1C} +"MULTIPOLYGON (((-73.86559547009844 40.84320222141571, -73.86571472307364 40.8431291024373, -73.86613480886747 40.843541350508445, -73.86606943787325 40.84358346996009, -73.8657556344017 40.84364789479975, -73.86559547009844 40.84320222141571)), ((-73.8654887795524 40.84288268558676, -73.86549314471442 40.8428824970709, -73.8654966130256 40.842882514622694, -73.86550176099153 40.842882812385504, -73.86550548816604 40.84288323456059, -73.86551077837431 40.84288414302367, -73.86551351148968 40.84288475944666, -73.86551794256037 40.842885988384026, -73.86551944038672 40.84288647009355, -73.86552221780377 40.8428874611734, -73.8655245305371 40.842888385975385, -73.86552754674362 40.842889740232486, -73.86553005680679 40.842891007452074, -73.86553264949086 40.842892463871635, -73.86553491736677 40.842893875788285, -73.8655363561066 40.84289484459586, -73.86553935986178 40.84289707952115, -73.86554139356144 40.84289877932272, -73.86554338547212 40.8429006213536, -73.86554543848534 40.842902739006746, -73.865546563565 40.84290401451697, -73.8656316628764 40.842987527325526, -73.86563489611189 40.84299180303459, -73.8656379613316 40.842998834959474, -73.86563819514053 40.84299990321754, -73.86563839959648 40.84300082736233, -73.86563855490527 40.84300201439411, -73.86563867234977 40.843003161760045, -73.86563873976327 40.84300442252993, -73.86563873866837 40.843004964625926, -73.86563871723722 40.84300618206864, -73.86563867933106 40.843006750236086, -73.8656386167058 40.84300722832535, -73.86563832092953 40.8430092477885, -73.86563800842362 40.8430107440452, -73.86563758228486 40.8430121411152, -73.86563737696655 40.84301281804742, -73.86563712196458 40.84301343638964, -73.86563647734604 40.84301498178662, -73.86563571649761 40.84301653965514, -73.86563470868747 40.84301825752391, -73.86563416276339 40.84301907903881, -73.86563333753838 40.84302022080419, -73.86563191111325 40.843021958896614, -73.86563067525897 40.843023276680405, -73.86562898231254 40.84302487848776, -73.86562746910143 40.843026141018285, -73.86562485424142 40.84302802810864, -73.86562285373581 40.843029263957106, -73.86562072652487 40.8430304150115, -73.86553575649387 40.843083550483406, -73.8655339637569 40.84308465600089, -73.86553324311939 40.843085090999814, -73.86553159901014 40.843085994979965, -73.86552885725699 40.84308730110169, -73.86552655147149 40.84308821511629, -73.8655247823104 40.84308880287723, -73.86552162409227 40.843089651962856, -73.86551796700022 40.84309033657696, -73.86551568977943 40.84309061127402, -73.86551186170593 40.84309082382977, -73.8655086128388 40.84309076241015, -73.86550550431012 40.84309049404048, -73.8655023962075 40.84309001495567, -73.86549942721396 40.843089350531265, -73.8654975654476 40.84308882247195, -73.86549584842413 40.84308825495963, -73.86549362329941 40.84308739509485, -73.8654910265361 40.84308619350947, -73.86548989652788 40.84308559516432, -73.86548824671013 40.84308463061253, -73.86548628106105 40.843083286584495, -73.86548397361582 40.843081502716835, -73.86548220542407 40.843079851850604, -73.8654811310681 40.843078706070045, -73.86547994818677 40.84307728100981, -73.86547874330955 40.84307559207925, -73.86547787111205 40.84307416017741, -73.86547706085268 40.84307259057223, -73.86547616999603 40.84307041754215, -73.86547540801 40.84306784484314, -73.86543566629581 40.84294458931961, -73.86543458797777 40.84294188658008, -73.86543363259253 40.84293878866719, -73.8654330262736 40.84293605316008, -73.86543262638943 40.84293384828465, -73.86543253485137 40.84293220567708, -73.86543242987122 40.84292958781903, -73.86543257124272 40.84292652540439, -73.86543267046947 40.84292553947941, -73.86543300112854 40.84292327782464, -73.86543360434978 40.84292051041028, -73.86543405341143 40.842918920662065, -73.86543470117945 40.84291699255992, -73.8654356855404 40.84291455877295, -73.86543605234206 40.84291377397021, -73.86543667628547 40.842912486091414, -73.86543761058034 40.84291076903911, -73.86543908218353 40.84290838714867, -73.86544050205771 40.84290637169882, -73.86544145077819 40.84290514363146, -73.86544378626982 40.842902437670425, -73.86544547117592 40.84290070798627, -73.86544770813654 40.84289864396236, -73.8654506014089 40.842896289844404, -73.86545149444413 40.84289562542114, -73.86545314856032 40.84289446211158, -73.8654551931238 40.842893134467076, -73.86545845660879 40.842891240032635, -73.86546134335448 40.842889767490284, -73.86546407547634 40.84288852979644, -73.86546621872331 40.84288765701621, -73.86547076933681 40.84288606214611, -73.86547461697322 40.84288496532955, -73.86547764802948 40.84288425297194, -73.86548058512506 40.842883681882206, -73.86548347217108 40.84288323320117, -73.8654887795524 40.84288268558676)))",X093,4634,X093,X-11,X-11,X-11,X-11,"White Plains Rd., Van Nest Ave., Unionport Rd.",211,13,49,10462,X,0.401,False,Van Nest Park,Yes,100003873,PARK,20100106000000.00000,19220620000000.00000,5400 RIVERDALE AV,DPR,False,Van Nest Park,Y,Van Nest Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X093/,No,80,33,14,{CA92AB67-6934-469B-A5F1-D6D20BB6D37A} +"MULTIPOLYGON (((-73.95734169044692 40.689309564064104, -73.95758253118079 40.68928159128993, -73.95763009347677 40.68955916775242, -73.9579203406017 40.68991195490451, -73.95785973332619 40.6899404177651, -73.95780981915983 40.689967529241855, -73.95776703566511 40.689991930067265, -73.95773315784753 40.69002040266726, -73.95771176322303 40.69003802955992, -73.95768680118344 40.69005836658254, -73.95766718701054 40.690075994121464, -73.95764935480905 40.69009497758536, -73.9576226127928 40.690112601592794, -73.95758695955087 40.69013293555667, -73.95756022354645 40.69014106453928, -73.95751032034568 40.69015054113735, -73.95744794226935 40.690161370175296, -73.9573784360276 40.69017083946606, -73.95733659155808 40.6901712390974, -73.9572417077797 40.68969929977111, -73.9572250081211 40.68961623381355, -73.95727274343783 40.689490774011865, -73.95734169044692 40.689309564064104)))",B317,6398,B317,B-03,B-03,B-03,B-03,Lafayette Ave. and Franklin Ave.,303,35,79,11205,B,0.705,False,Lafayette Gardens Playground,Yes,100004077,PARK,20100106000000.00000,19590401000000.00000,345 CLASSON AVENUE,DPR/NYCHA,False,Lafayette Gardens Playground,Y,Lafayette Gardens Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B317/,No,57,25,8,{402A2FD1-9989-4A34-B9BD-0DCA1816C112} +"MULTIPOLYGON (((-74.01524018623753 40.62677547751276, -74.01648484335156 40.62594222855277, -74.01766124269432 40.626655196257246, -74.0171403144572 40.62792194532283, -74.01524018623753 40.62677547751276)), ((-74.01676391481817 40.62575526457846, -74.01850311976426 40.624592816448526, -74.0177821950472 40.626357011886775, -74.01676391481817 40.62575526457846)))",B060,5790,B060,B-10,B-10,B-10,B-10,"73 St., Ft. Hamilton Pkwy., 7 Ave.",310,43,68,11228,B,8.25,False,Mckinley Park,Yes,100003760,PARK,20100106000000.00000,19031118000000.00000,7614 FORT HAMILTON PARKWAY,DPR,False,McKinley Park,Y,McKinley Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B060/,No,46,22,11,{E064EBC7-ABF5-4414-95C3-7E84661175AB} +"MULTIPOLYGON (((-73.81586731266746 40.77595871614876, -73.8159344924405 40.77431032820243, -73.81737333786975 40.77442118070393, -73.81750123548737 40.77627318631928, -73.81586731266746 40.77595871614876)), ((-73.8160199031014 40.77161412326487, -73.81716253213627 40.771583216830116, -73.81720166886618 40.77211012210196, -73.81709998089 40.77211435699702, -73.81709780344224 40.77209938444591, -73.81701364926923 40.772102890672016, -73.81701626154415 40.7721208319798, -73.81617017252013 40.77215605922423, -73.81616793946588 40.77214070925492, -73.81608109132945 40.77214432576663, -73.81608332554835 40.77215967573946, -73.81600251429992 40.772163039780814, -73.81601490184934 40.77177201794543, -73.8160199031014 40.77161412326487)))",Q086,5339,Q086,Q-07,Q-07,Q-07,Q-07,"149 St. bet. 25 Ave. and 26 Ave., 29 Ave. and Bayside Ave.",407,19,109,11354,Q,7.671,False,Flushing Fields,Yes,100000365,PARK,,19340723000000.00000,25-03 149 STREET,DPR,True,Flushing Fields,Y,Flushing Fields,Large Park,Community Park,http://www.nycgovparks.org/parks/Q086/,No,40,11,6,{83742D22-1746-4121-965C-0D464B60C3CB} +"MULTIPOLYGON (((-73.85309614373467 40.69076884676803, -73.85349555762939 40.69065718696149, -73.85352131062739 40.6907367486735, -73.85354360425391 40.69080561957211, -73.85356381331091 40.6908680581405, -73.85358500360799 40.6909335254826, -73.85360504589346 40.69099544243268, -73.85362609408436 40.69106047103474, -73.85364652187207 40.691123580747806, -73.85366840211304 40.6911911786661, -73.85368798038469 40.691251664092206, -73.85370871734419 40.69131572692983, -73.85372963764884 40.69138036092227, -73.85374965905001 40.69144221297974, -73.85378193684178 40.691541932824734, -73.85375132616824 40.69154838843745, -73.85345860845216 40.69178548799905, -73.85332368111801 40.691894779924084, -73.85323584330135 40.69196592743449, -73.85323370439869 40.691959970506424, -73.8530000303674 40.69130905607698, -73.8532806212987 40.691248285432636, -73.85309614373467 40.69076884676803)))",Q053,6652,Q053,Q-09,Q-09,Q-09,Q-09,88 Ave. to 89 Ave. at 90 St.,409,32,102,11421,Q,1.314,False,Equity Park,Yes,100000321,PARK,20090423000000.00000,19410306000000.00000,90-10 88 AVENUE,DPR,False,Equity Playground,Y,Equity Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q053/,No,38,15,7,{B4BF4AEF-D440-4068-8633-C416A1C2269D} +"MULTIPOLYGON (((-73.7951244556081 40.66822491036837, -73.79513581421489 40.66816703088534, -73.7957856927946 40.66842157951601, -73.79582415443963 40.66842377840952, -73.79583026751158 40.66921584526969, -73.79552801957881 40.66914571013573, -73.79552613565876 40.66890148360785, -73.79501495712223 40.66878286360694, -73.79502850741478 40.66871381801754, -73.7950447117398 40.66863124867186, -73.79506019274662 40.66855236205396, -73.79507668294971 40.66846833347184, -73.7950929484307 40.668385451746325, -73.79510846775749 40.66830637337775, -73.7951244556081 40.66822491036837)))",Q440,6201,Q440,Q-12,Q-12,Q-12,Q-12,"133 Ave., 135 Ave. bet. 143 St. and 145 St.",412,28,113,11436,Q,1.2,False,Hilton Holiday Gardens,Yes,100000147,PARK,20090423000000.00000,19681018000000.00000,,DPR,True,Hilton Holiday Gardens,N,Hilton Holiday Gardens,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/Q440/,No,32,10,5,{9C48E95E-B948-4E6F-8E86-719BA5FADE66} +"MULTIPOLYGON (((-74.10016394203477 40.58761920200188, -74.0992372361388 40.58714417105533, -74.09917667501738 40.58719025272604, -74.09887001877465 40.5870330567895, -74.0991392976309 40.5868281635812, -74.09938636897735 40.58663417087965, -74.09963901622551 40.58644234126874, -74.10068237312449 40.58569983487426, -74.10149534481457 40.585134428847574, -74.10059472401608 40.587081607293285, -74.10058085314236 40.5871075923489, -74.10056351510143 40.587138880921465, -74.10054114105486 40.58717143643267, -74.10051856306943 40.58720271067217, -74.10049316607764 40.58723829908143, -74.10046352774125 40.58727496822007, -74.10043247265169 40.587310561562646, -74.10038724599256 40.587361590552746, -74.10016394203477 40.58761920200188)))",R067,5593,R067,R-02,R-02,R-02,R-02,Dongan Hills Ave. and Jefferson St.,502,50,122,10306,R,5.165,False,Gen. Douglas MacArthur Park,Yes,100003912,PARK,20100106000000.00000,19481031000000.00000,,DPR,True,Gen. Douglas MacArthur Park,Y,Gen. Douglas MacArthur Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/R067/,No,64,24,11,{53418DE9-8B20-4D55-A94A-4D60A05E2550} +"MULTIPOLYGON (((-74.01069911177859 40.640673491052596, -74.01092671967793 40.64045566304779, -74.01114739739388 40.640244464876325, -74.01143041979572 40.640415691396775, -74.01098305929895 40.64084468165866, -74.01069911177859 40.640673491052596)))",B265,5142,B265,B-07,B-07,B-07,B-07,6 Ave. bet. 55 St. and 56 St.,307,38,72,11220,B,0.46,False,Rainbow Playground,Yes,100004508,PARK,20100106000000.00000,19540325000000.00000,5523 6 AVENUE,DPR,True,Rainbow Playground,Y,Rainbow Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B265/,No,49,20,7,{C8C2D1DA-7F1E-42AE-8EA3-1E4C591860EA} +"MULTIPOLYGON (((-73.90661105255664 40.81497253906708, -73.90667013973074 40.814808073218735, -73.90704031820539 40.814882118516636, -73.90699226014888 40.81501648351471, -73.90698150572233 40.81504655145518, -73.90661105255664 40.81497253906708)))",X314,4691,X314,X-01,X-01,X-01,X-01,E 151 St bet. Concord Av and Wales Av,201,8,40,10455,X,0.16,False,Isla Verde Garden,No,100004966,PARK,20100106000000.00000,20021120000000.00000,625 WALES AvNUE,DPR,False,Isla Verde Garden,Y,Isla Verde Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X314/,No,84,29,15,{FC3CAC4D-DD4B-489C-BBC8-42B9B7F5A86D} +"MULTIPOLYGON (((-73.74856375955991 40.666318298875794, -73.74809600016104 40.666260260061314, -73.74768440690997 40.66619996697608, -73.74725718875692 40.66614676480083, -73.74671461003629 40.66607430163298, -73.74632261448488 40.666013252558244, -73.74546044680329 40.66591177944795, -73.74524034297974 40.66587984967696, -73.74533439686111 40.66588005792808, -73.7455041662645 40.66587694051559, -73.74577255807071 40.66587928006889, -73.74605470759958 40.66588339727559, -73.74644008026688 40.66588948746314, -73.74671840631994 40.665896136781164, -73.74885075672285 40.665947912648534, -73.74899258008413 40.66594625905576, -73.74932017021224 40.66594459780633, -73.75017197755568 40.66592031865797, -73.7509294728396 40.66591095327025, -73.75093013716872 40.665910083906255, -73.75189013868408 40.665903599877424, -73.75165101198593 40.66627565490536, -73.75133427523123 40.66627297783672, -73.75105923411753 40.6662706521833, -73.75101126613653 40.666274029779736, -73.75064118620726 40.666300085276916, -73.75014474947672 40.66633503430488, -73.74997804531954 40.666346770593876, -73.7494902606156 40.6663440758771, -73.74887568010932 40.666335609202534, -73.74887498609232 40.66633304751053, -73.74872907455192 40.66632816236349, -73.74856375955991 40.666318298875794)), ((-73.8403368591703 40.667465481629996, -73.84025562904836 40.66745280214569, -73.84025611556606 40.66745310719612, -73.83914204595742 40.66693530088798, -73.83954353445446 40.66683983492251, -73.83972708230134 40.66679207790804, -73.84007983452302 40.666700906969076, -73.84057312368117 40.66656846367834, -73.84085995952037 40.66647501702539, -73.84110188519854 40.666396157248975, -73.84110377564971 40.66639242181289, -73.84140495532736 40.66629244595138, -73.84149498031569 40.66667849030851, -73.84149750922403 40.66674548687349, -73.84149186169785 40.66681237221481, -73.84147808756995 40.6668785700689, -73.84145630407124 40.66694350966649, -73.84142670055573 40.66700662844094, -73.84138953137779 40.66706738372501, -73.8413451182648 40.667125250053125, -73.84129384438326 40.66717972815849, -73.84123615196535 40.66723034857238, -73.84117253994191 40.66727667252163, -73.84110355564071 40.66731830182339, -73.84102979479053 40.6673548770844, -73.84103218847903 40.66735139268901, -73.84096610140351 40.667380158421516, -73.84089745561648 40.66740521044651, -73.84082661096419 40.66742641688131, -73.84082616134721 40.66742650631091, -73.84074753290635 40.66744655376741, -73.84066690306717 40.66746128984941, -73.84058489064255 40.66747060014404, -73.84050212261805 40.667474415277205, -73.84041923416589 40.6674727046103, -73.8403368591703 40.667465481629996)), ((-73.84096010294797 40.665050025550855, -73.84109397743771 40.66502339674958, -73.84132402149709 40.666018523950726, -73.83912501420865 40.666699233480166, -73.83910398893536 40.66665630163041, -73.83925553362194 40.66660556581692, -73.83935586554149 40.6665573355806, -73.8394353654894 40.66650660426245, -73.83950942562262 40.66646112342097, -73.83960469696875 40.66638081308227, -73.83978123248933 40.66618799717472, -73.84010252944064 40.66583449496309, -73.84052972770223 40.665371201732285, -73.84074503748093 40.66515966678886, -73.84079090422291 40.66512219040671, -73.84085436578323 40.66509010093014, -73.84096010294797 40.665050025550855)), ((-73.77346123952216 40.667324413739024, -73.7719324732351 40.66728924639419, -73.77187531055783 40.667250098267466, -73.77165207447317 40.66727491312403, -73.7711721827939 40.66725350968475, -73.77116829196281 40.66724832306178, -73.7711020619627 40.667160043117995, -73.77102176282531 40.66705300974375, -73.77108288330815 40.6670538535995, -73.77119136495045 40.667055352654856, -73.7729160408098 40.667079160472596, -73.77294345422528 40.66707953876905, -73.77381214900262 40.66709152046753, -73.77447812840656 40.66713353231555, -73.77506305593226 40.667159935257345, -73.77507007302295 40.66716329440456, -73.77515952169601 40.66716930822606, -73.77540678008218 40.66717438386127, -73.77565402959976 40.66718175527035, -73.7758741555934 40.66718447976207, -73.77637479523906 40.66716708526082, -73.77636862643374 40.66720840437428, -73.77599460718864 40.667235230763914, -73.7752194221864 40.66729112318008, -73.77496306319358 40.6673021035998, -73.77496296597836 40.66730112274476, -73.77480925456696 40.66730639436753, -73.77454084929659 40.66731275762008, -73.77407039397332 40.6673210190362, -73.77346123952216 40.667324413739024)), ((-73.84070754902267 40.66783230518027, -73.84016997192346 40.66754097527996, -73.84021195218585 40.66750741188708, -73.84035266751363 40.66753960892977, -73.84043266936175 40.667551145686296, -73.84053356385674 40.66755573954585, -73.84060815380316 40.667552502898054, -73.84069153104312 40.667543709572655, -73.84076468315186 40.66753044897655, -73.84084515693336 40.667512743605016, -73.8409168646451 40.66749168603724, -73.84097541604703 40.66746838235952, -73.84102958513121 40.66744284561738, -73.84107351314348 40.667419522581774, -73.84114086492713 40.66738509608208, -73.84121553948049 40.667346225692356, -73.84129607385879 40.6673029084796, -73.84135463290663 40.66727626460108, -73.84142780576978 40.66725409479551, -73.84149219021155 40.66723748073244, -73.84152584283328 40.667229732218836, -73.84159752358252 40.66721980908475, -73.84164185004344 40.66721979446731, -73.84183805967187 40.66795666761265, -73.84195272681909 40.66842893389335, -73.84176617620807 40.668343356164364, -73.8416206696952 40.66827489944324, -73.8414117492848 40.66817222643933, -73.84119161037961 40.66807522613457, -73.8409715345255 40.66795700931015, -73.84086848135505 40.667909659898314, -73.84070754902267 40.66783230518027)), ((-73.74023722319164 40.66534016039043, -73.74048852702859 40.66533990450661, -73.74094277772215 40.665343393077734, -73.74128786024858 40.66535586562171, -73.74174902206602 40.66537253305196, -73.74183187816115 40.66537552775072, -73.74242709026717 40.66539703724561, -73.74204021434319 40.665441956390964, -73.7418219545939 40.66547979468083, -73.7415448735908 40.66554305176705, -73.74133492710727 40.66560007087286, -73.74116690119799 40.66566357311281, -73.7409400523683 40.66575249310441, -73.7406044695242 40.66575812518244, -73.74036957949676 40.66575759529381, -73.74010125752883 40.6657250497612, -73.73971564108004 40.665653910343806, -73.7393848951426 40.66560303317961, -73.73962504179602 40.6653407800596, -73.74001889648846 40.66534038129489, -73.74023722319164 40.66534016039043)), ((-73.83090274165082 40.66601602808297, -73.8302853653852 40.66600013521823, -73.8302844781048 40.66600211955041, -73.82993580143243 40.66599427440662, -73.82963801223481 40.66598757339223, -73.82927612362262 40.665974146886654, -73.82926497702312 40.6659738601886, -73.8292381791877 40.66597423194966, -73.82923838279278 40.66597323177684, -73.82802158980068 40.66599109725231, -73.8280266952234 40.665963089782316, -73.82807891899989 40.66594539522593, -73.82812756208996 40.66592253623087, -73.82817174829022 40.66589492483046, -73.82821068042286 40.665863056024534, -73.82824366044545 40.66582750600796, -73.8282700918642 40.66578891326287, -73.82828950103244 40.66574797408737, -73.82829745035652 40.665709916570485, -73.82829745089857 40.6657092465862, -73.82829758264499 40.6657086020122, -73.82829745149729 40.66569615035936, -73.82829745376272 40.665671380725094, -73.82829717689508 40.66567005565042, -73.82829716369281 40.66566875258177, -73.82829394567045 40.66565456552651, -73.8282886894743 40.66563139996973, -73.82828825447606 40.66562948391944, -73.82828187484544 40.665615490258396, -73.8282738212062 40.66559668443345, -73.82827220957056 40.665594286650695, -73.82827109358061 40.66559183737783, -73.82829875566071 40.66559379947287, -73.82866967362006 40.66562011180246, -73.82866799077482 40.66564819373904, -73.82901813800676 40.665672585621884, -73.82901630151434 40.66569284543892, -73.82944220929492 40.66571778986418, -73.82944620962095 40.66571842705792, -73.83094470715646 40.665786776571146, -73.83090274165082 40.66601602808297)), ((-73.74364994180777 40.66590586897321, -73.74353777338602 40.66589867955728, -73.74328053775963 40.66589834173078, -73.74290448403075 40.66589784680896, -73.74161593955787 40.66589614042947, -73.74170463893789 40.66583670179819, -73.74213439420458 40.66583799281952, -73.74260469260099 40.66583205893582, -73.74317357823394 40.66584031753767, -73.74383920989835 40.66586252982701, -73.74439761430642 40.665901672075506, -73.74476802408785 40.665931971204245, -73.74524902271314 40.66596672672249, -73.74583628430032 40.66601217909222, -73.74613434013253 40.666056507927905, -73.74650808434994 40.66610449591384, -73.74698728063763 40.666171929948845, -73.74777599939355 40.666285457840125, -73.74777589370692 40.66631340703389, -73.74752119180147 40.666330316591, -73.74739956868338 40.666340530743454, -73.74731239578173 40.66634033929689, -73.74611036263663 40.666328958551816, -73.7459169736164 40.66628403420434, -73.745579934685 40.6662032790305, -73.74493662731216 40.66607397348849, -73.74454152040431 40.666004050328745, -73.74422093302542 40.665953966978115, -73.74406870565677 40.66593783779657, -73.74364994180777 40.66590586897321)), ((-73.82383636118578 40.66533628891411, -73.82436711402036 40.665336278294475, -73.8243390289736 40.666008737528635, -73.82426345285596 40.666012270097504, -73.82413510898071 40.66601826952439, -73.82400001032673 40.666024584461375, -73.82393384186297 40.666027678246046, -73.82389099753537 40.66602786571011, -73.82388895276871 40.66602787428654, -73.82376736419045 40.66602840579567, -73.8236592244787 40.66602887944767, -73.82363352710709 40.66602899134048, -73.82353090700401 40.66602665471362, -73.82353087271068 40.66602665376046, -73.82348475108006 40.66602560323709, -73.82342791235592 40.666023297133705, -73.8233080871586 40.66601843496204, -73.82308206517804 40.66600562982123, -73.8230669672776 40.666004526880364, -73.82309460859773 40.66598757031804, -73.82314206946904 40.66595451504865, -73.82318471453111 40.66591482634849, -73.82323027490983 40.665869251825896, -73.8233049607816 40.66577807928479, -73.82333501544173 40.66574646954494, -73.82340581637409 40.66566191608012, -73.82345334912961 40.665613172872675, -73.8235011778085 40.66556653550991, -73.82352207299056 40.66554565034117, -73.82356656868224 40.665506281319544, -73.82360512751957 40.66547366426457, -73.82364514608203 40.66544893706924, -73.8236866529845 40.66542083159752, -73.82375483010729 40.66537924570074, -73.82383636118578 40.66533628891411)), ((-73.77684103505398 40.66751701094682, -73.77724821078647 40.667494837753544, -73.77724805569041 40.667496659202364, -73.77754584148154 40.667481894182124, -73.77750931176286 40.66748940500482, -73.77712662504756 40.66755550253643, -73.77656942787836 40.66766808066056, -73.77651091052901 40.66767230749383, -73.77629847574711 40.66768764917506, -73.77619630336427 40.66769502741503, -73.77599764371155 40.66770937415058, -73.77579694577545 40.66772386785791, -73.77551499070692 40.667744228053074, -73.77526466245888 40.667762304395076, -73.77513705315441 40.66777151858671, -73.77499727848723 40.6677816111636, -73.77409813524542 40.6678465324687, -73.773987278257 40.667821425294456, -73.77383058617538 40.66778667430846, -73.77368897174453 40.66775195277059, -73.77356543508199 40.6677218592871, -73.77348710094495 40.667701039072334, -73.77340271979308 40.667684799538705, -73.77330628474546 40.66766624076875, -73.77330646423859 40.66761342840247, -73.77380106853504 40.667598328624, -73.77504400197458 40.66758332098204, -73.77554717334763 40.66757189826215, -73.77616543758977 40.667550141456225, -73.77653638777879 40.66753938100372, -73.77684103505398 40.66751701094682)), ((-73.77165472252807 40.66789669415596, -73.77139239901629 40.66754704025476, -73.77169330964595 40.66756201821195, -73.77219385126884 40.66757449119865, -73.77261288044085 40.667614355892304, -73.77285403845298 40.667640090056345, -73.77303186205383 40.667667995099784, -73.77318557674873 40.66769126059259, -73.77331815919842 40.66772137230911, -73.77358634916965 40.66777930491391, -73.77378521233226 40.667827916200196, -73.77389735959387 40.66786102811402, -73.773781197227 40.66786941411052, -73.77358283251 40.66787878729524, -73.77314871374932 40.66788282188587, -73.77165472252807 40.66789669415596)), ((-73.82257784998458 40.66595615958558, -73.82278833908747 40.66525992185019, -73.82362578584305 40.66532094561716, -73.82371375227798 40.66532735526117, -73.82373436228139 40.66532885738824, -73.82371315130263 40.665337727404165, -73.82359500378286 40.66541263776318, -73.82349617985537 40.66549199469031, -73.8234624991857 40.665524174339254, -73.82344574412465 40.665540658717674, -73.82342348268945 40.66556255755952, -73.82342297633707 40.66556218486845, -73.82339537340651 40.66558975327001, -73.82333524162475 40.665661071095535, -73.82329064103057 40.665709591827735, -73.82324699367659 40.665762530145976, -73.82319268687326 40.665825022767116, -73.82313935319722 40.66588530878897, -73.82308508406166 40.66593307795223, -73.823045649581 40.66595766627026, -73.8230433297199 40.665960178748236, -73.82297130036032 40.66599753486606, -73.82287564764722 40.66599054549558, -73.82257784998458 40.66595615958558)), ((-73.77609766728484 40.66707699504079, -73.77707794329558 40.66701001270349, -73.7777746829807 40.666965436975296, -73.77822429949173 40.66693125284638, -73.77822411706514 40.66692956492276, -73.77978513959144 40.66682993700466, -73.77989284219184 40.66695134032149, -73.77922505022205 40.66699807993996, -73.77823874513626 40.6670650689467, -73.77823845026637 40.667062341607895, -73.77792808427591 40.66708283844785, -73.77761743208562 40.66709831170503, -73.77720726620099 40.66711359144277, -73.7766916036344 40.66711488794801, -73.77635083362402 40.66711881860637, -73.77616984318813 40.66712293227229, -73.77566545346085 40.66711436922178, -73.77584803167328 40.66709703622674, -73.77604056515828 40.667079723223985, -73.77609753782951 40.66707786288884, -73.77609766728484 40.66707699504079)), ((-73.7488503452747 40.66560710110983, -73.74869347602949 40.665568638629786, -73.74869842911082 40.665551292835126, -73.7487005943219 40.66552810378197, -73.74901668362185 40.665534370765535, -73.74901779987833 40.66553503328176, -73.75210938144976 40.6655609295732, -73.75207564854178 40.66561409739228, -73.75207620436477 40.665614098590176, -73.75203280457089 40.66568162415719, -73.75202459944477 40.66569439114573, -73.75166099623956 40.665690729625155, -73.75126794433909 40.66567800169235, -73.75089361319019 40.665665313856934, -73.74938116147455 40.66565341802145, -73.74914657679255 40.66564726406297, -73.74900622225329 40.665637454733066, -73.7488503452747 40.66560710110983)), ((-73.73870432942917 40.666346230988566, -73.73896985417991 40.666056272960496, -73.74026776205633 40.66606014993663, -73.73991425836367 40.66635092515797, -73.73908247514483 40.66634769983115, -73.73894061432445 40.6663471492585, -73.73870432942917 40.666346230988566)), ((-73.74865900739316 40.66566192019276, -73.74791131294923 40.6656282994947, -73.74791127579672 40.665628742468925, -73.74726705472987 40.66559604218612, -73.7472670844389 40.66559662848967, -73.74646034435058 40.6655528629468, -73.74645999616789 40.66555330433456, -73.74572910047746 40.66551630520759, -73.74501773333738 40.66549061922901, -73.74501666615856 40.66549321576348, -73.74362798573561 40.66541069447492, -73.74503333399491 40.665452650974224, -73.74503309167613 40.66545323937705, -73.74577034763713 40.66547687706332, -73.74576967911572 40.66547820925558, -73.7465003208689 40.66550226079482, -73.7464995437045 40.66550324425077, -73.7472637405936 40.66552968281618, -73.74726375159388 40.66552990076609, -73.7478418477562 40.665540640155385, -73.74784182779158 40.66554060319032, -73.74799646671539 40.66554289978055, -73.74812343919858 40.66554938964452, -73.74822075117454 40.66555981276188, -73.7483366800995 40.6655742424145, -73.74842865885576 40.66558552989395, -73.74850480974953 40.66559865217657, -73.74854394042843 40.66560481172248, -73.74859606642502 40.66561766890419, -73.7486657144881 40.66563228523885, -73.74865900739316 40.66566192019276)), ((-73.74240012358997 40.665653564670855, -73.74260989560297 40.66564125854253, -73.74282798303062 40.66564813458303, -73.74317185494644 40.66566806677472, -73.74354925887259 40.6656944600818, -73.74416147951999 40.66574053857308, -73.74447179709347 40.66576039224841, -73.74474520441396 40.665782677443545, -73.74509153206907 40.66580091366415, -73.7450914185855 40.6658306089499, -73.74196762209459 40.66573884265179, -73.74208787126969 40.66570739600461, -73.74219027624717 40.6656850342097, -73.74240012358997 40.665653564670855)), ((-73.79174832414157 40.66681085205907, -73.79190442724679 40.66680500831502, -73.79205586692886 40.66680608271658, -73.79218537024008 40.66680631673277, -73.79234826245144 40.66681615366907, -73.79249864340557 40.66681960654697, -73.79259888301361 40.66682614947144, -73.79267056598418 40.666835242443284, -73.79268671418855 40.666985743647345, -73.79257517305317 40.666982251190355, -73.79208582029959 40.66694770013373, -73.79166913409271 40.66691190712356, -73.79109380774351 40.66686248435112, -73.79120769461922 40.66684908067403, -73.79132469440177 40.66683975017217, -73.79145422643201 40.66683044137028, -73.79160047885041 40.66681798298343, -73.79174832414157 40.66681085205907)), ((-73.73928596484761 40.66571106951178, -73.73932377619165 40.66571086072905, -73.73937380181827 40.66571391787644, -73.73945478446613 40.66572279583992, -73.74007833020407 40.66579940071088, -73.74020740867434 40.66581985852635, -73.74031934870577 40.66583455650796, -73.7403828080364 40.66583937704073, -73.74067261794413 40.66584231804021, -73.74062040472384 40.665894812294695, -73.73911955571748 40.66589279357837, -73.73925478576886 40.66574511864258, -73.73928596484761 40.66571106951178)), ((-73.77824032445406 40.66749675449534, -73.78025426128865 40.667358728861004, -73.78029025498272 40.66739929933115, -73.77963726641848 40.667446478454785, -73.77834803087828 40.667539615129286, -73.77698496612726 40.66763806941491, -73.77720564789331 40.6675980844382, -73.7773836647924 40.66756857866777, -73.77752846497572 40.66755278542462, -73.77772152078947 40.6675347889253, -73.77797489625276 40.66751461221088, -73.77824033450503 40.66749799993189, -73.77824032445406 40.66749675449534)), ((-73.79003515353094 40.66677030526314, -73.79223887604273 40.6666381137084, -73.7923111509534 40.66666021866253, -73.79238630600922 40.666673077744406, -73.79248652677552 40.66668598289517, -73.79257422403846 40.666695683847045, -73.79265666825187 40.66670571205803, -73.79265937950957 40.666730986388785, -73.79256577977533 40.66672429789898, -73.79249895017473 40.6667209958438, -73.79236528980513 40.666714393416015, -73.79220655504658 40.66671092527421, -73.79204151385359 40.66670539593362, -73.7918797838924 40.66670939262639, -73.79176149920598 40.66671407919453, -73.79163001972958 40.66672260676687, -73.79144442950584 40.66673739736532, -73.79129875688702 40.66675244919776, -73.79114585066851 40.66676503740305, -73.79099615581727 40.666780081550066, -73.7907566727281 40.66680054633712, -73.79054232712448 40.66681510757344, -73.79003515353094 40.66677030526314)), ((-73.79324256637646 40.666846933143226, -73.79393017685278 40.66682745499324, -73.7939206158329 40.66689885436701, -73.79385689716761 40.66690867021981, -73.79371647505876 40.66692811013979, -73.7935858680557 40.66694394561562, -73.79335653988934 40.66696574248761, -73.79323555480664 40.666879660684124, -73.79324256637646 40.666846933143226)), ((-73.7927302087361 40.6669866279846, -73.79271348577477 40.66683076676687, -73.7927625556435 40.66683225277852, -73.79290995765571 40.6668402599768, -73.79302725612736 40.66684663872345, -73.79299723126992 40.666986174037845, -73.79293027548287 40.66698723771941, -73.79288157011393 40.66698753816349, -73.7927302087361 40.6669866279846)), ((-73.79246190934323 40.666624732057656, -73.79264678977577 40.66661363966939, -73.79265189392976 40.666661216047515, -73.79246190934323 40.666624732057656)))",Q096,69236,Q096,Q-10,Q-10,Q-10,Q-10,Belt Pkwy. bet. Cross Bay Blvd. and Laurelton Pkwy.,"410, 412, 413","28,31,32",106,"11413, 11414, 11420, 11430, 11434",Q,202.647,False,Southern Parkway,No,100000385,PARK,,19400629000000.00000,,DPR/CDOT,True,Belt Parkway,N,Belt Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/Q096/,No,"23, 31","10, 14, 15","8, 5",{F9FD25ED-3B64-4849-A637-79D12F811721} +"MULTIPOLYGON (((-73.9319261246103 40.8049110472322, -73.93145833333799 40.804356603102754, -73.9312544564708 40.80450749985575, -73.93112511722296 40.80435420098036, -73.93111193370208 40.804332051638006, -73.93110487968298 40.804307318824286, -73.93110717023059 40.804282317843224, -73.93111077563944 40.804264733255685, -73.93111967799723 40.80424974166768, -73.93114455676607 40.80421824177251, -73.9311705918791 40.80419501544511, -73.93120067313816 40.804176047284116, -73.93123124007633 40.80415840223779, -73.93128624999865 40.80412834216986, -73.93132865246592 40.804106958977016, -73.93137000416259 40.80408977416909, -73.93141349134375 40.80407487518243, -73.93145312311128 40.8040614876255, -73.93150083200294 40.80404836689982, -73.93155109266172 40.80403722246359, -73.9315950880671 40.80402933409377, -73.93164124848002 40.80402269508241, -73.93197745026124 40.804056645552706, -73.93200888616303 40.804060484914416, -73.93203479192935 40.80406608868654, -73.93205651568984 40.804071602639674, -73.9320763763686 40.8040772730783, -73.93209193448637 40.80408253665509, -73.93210249859028 40.80408677792374, -73.93212297098042 40.804094568488864, -73.9321446795919 40.804105659205796, -73.93216825017545 40.80411769383654, -73.93219987838312 40.80413986831623, -73.93221812374294 40.804153786349666, -73.93223647032438 40.80417072201124, -73.93224473022458 40.80418006503923, -73.93225583505061 40.804194485850374, -73.93226709208874 40.80421189100297, -73.93227866262181 40.804234500321314, -73.93228450356649 40.804246410147925, -73.9322952050367 40.804275255808825, -73.93230066000243 40.804308961981704, -73.93230185700882 40.804329852456156, -73.93229978240231 40.80434804851778, -73.93229586512822 40.80436612553181, -73.93229060677463 40.804383784827, -73.93228268857752 40.80440430164321, -73.93227481788777 40.8044200521466, -73.93226639441585 40.80443516297044, -73.93225728586062 40.804450378749436, -73.93224512652111 40.80447064363236, -73.9319261246103 40.8049110472322)))",M208E,5847,M208E,M-11,M-11,M-11,M-11,"E. 127 St., 2 Ave., and Harlem River Drive",111,8,25,10035,M,1.369,False,Crack Is Wack Playground,Yes,100003901,PLGD,20100106000000.00000,19560112000000.00000,,DPR,True,Crack Is Wack Playground,Y,Crack Is Wack Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M208E/,No,68,29,13,{971F13C4-3DE5-40EC-A752-060757A71F59} +"MULTIPOLYGON (((-73.97769957953619 40.57350904574006, -73.97797542054879 40.573479136703455, -73.97775304031882 40.57525961083867, -73.97748397615953 40.57523519383043, -73.97769957953619 40.57350904574006)))",B368,5396,B368,B-13,B-13,B-13,B-13,W. 10 St. between Surf Ave. and Public Beach,313,47,60,11224,B,1.17,False,Cyclone Site,No,100003997,PARK,20100106000000.00000,19691119000000.00000,817 BOARDWALK WEST,DPR,True,The Cyclone,N,The Cyclone,Concession,Managed Sites,http://www.nycgovparks.org/parks/B368/,No,46,23,8,{0DCACC5D-2E25-4684-B37C-24A462F3A749} +"MULTIPOLYGON (((-73.94139664225519 40.821344672409126, -73.9412671919197 40.82128996263223, -73.94125811049403 40.821302363242744, -73.94080030394143 40.821108876308806, -73.94099352212143 40.82084503987648, -73.94187124945026 40.82121599849687, -73.9421884334592 40.821350049143774, -73.94183743048085 40.82182934724269, -73.9415216964465 40.82169590961496, -73.94152024489449 40.82169529564089, -73.9412297714181 40.821572531893736, -73.94139664225519 40.821344672409126)))",M245,4945,M245,M-10,M-10,M-10,M-10,"7 Ave. To 8 Ave., W. 143 St. To W. 144 St.",110,9,32,10030,M,1.34,False,Renaissance Playground,Yes,100004693,PLGD,20100106000000.00000,19650722000000.00000,223 WEST 143 STREET,DPR/DOE,Part,Renaissance Playground,Y,Renaissance Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M245/,No,70,30,13,{7F13C8D2-3327-45A7-857D-F9B74737A037} +"MULTIPOLYGON (((-74.11490620094182 40.629535007356274, -74.11485431272881 40.629195155999135, -74.11525104239682 40.62914747897801, -74.11531585544962 40.62947456672996, -74.11560925918798 40.62943932108571, -74.11572893322301 40.62942494455123, -74.11574657767358 40.629506757072974, -74.11583515834795 40.629496116466726, -74.11584956736786 40.62958034742731, -74.1158909927451 40.62982250061933, -74.11481152244586 40.62996072475473, -74.11473514868484 40.629555554252526, -74.11490620094182 40.629535007356274)))",R034,6030,R034,R-01,R-01,R-01,R-01,"Forest Ave., Myrtle Ave., Broadway, N. Burgher Ave.",501,49,120,10310,R,1.352,False,Austin J. McDonald Playground,Yes,100004054,PARK,20100106000000.00000,19340712000000.00000,,DPR,True,Austin J. McDonald Playground,Y,Austin J. McDonald Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/R034/,No,61,23,11,{AAE1A3DE-69EC-481F-BB39-9486AFEC4808} +"MULTIPOLYGON (((-73.8563842859213 40.827158168706575, -73.85638365278032 40.82715546642893, -73.85652061793097 40.827136962427, -73.85644970746823 40.82683411467616, -73.8564532649251 40.826833634637396, -73.85652480736644 40.82713918376101, -73.8563842859213 40.827158168706575)), ((-73.85603175709029 40.825638470852546, -73.85617236234606 40.825619858345256, -73.85624245712171 40.825925406804004, -73.85623889736044 40.825925877828425, -73.85616942267441 40.82562303343183, -73.85603237715867 40.825641174917536, -73.85603175709029 40.825638470852546)))",X195D,5619,X195D,X-09,X-09,X-09,X-09,North and South of the Bruckner Expressway at Puglsey Av,209,18,43,"10472, 10473",X,0.006,False,Strip,No,100005210,PARK,20100106000000.00000,19661014000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/X195D/,No,87,34,15,{BCFDDB07-A3B1-455B-B580-9AA8A40FEB8F} +"MULTIPOLYGON (((-73.84301209090562 40.83999046816607, -73.84304827303795 40.839987854643965, -73.84307714302145 40.83999072057807, -73.84310603563036 40.839999076851754, -73.84313119337462 40.8400129174542, -73.84315637904592 40.84002950189636, -73.84317071748174 40.840048761362134, -73.84318497824796 40.84007079334356, -73.84318486709905 40.840087262339296, -73.843188188034 40.840241793536805, -73.8431898792468 40.84032161207804, -73.84319124782562 40.84038488269052, -73.8431929422868 40.8404633261789, -73.84319288083742 40.840474304925564, -73.84319071124625 40.84047620201959, -73.84318805024652 40.84092953618165, -73.84318911406295 40.84099936377434, -73.84318178650267 40.84101033264135, -73.8431708331667 40.84102675807732, -73.84315626698954 40.841043151584756, -73.84313447791949 40.841056790560195, -73.84311268884052 40.84107042953154, -73.84308733425071 40.841078546318435, -73.84305842174783 40.84107842503744, -73.8430295092451 40.84107830374924, -73.84300786808735 40.84107547465848, -73.84298619546635 40.84106990081352, -73.84293801763128 40.841040494407686, -73.84276973411016 40.84093780506692, -73.84235658926852 40.84068568799295, -73.84233863693262 40.84066639557279, -73.84233150721859 40.840655379081724, -73.84232083272603 40.84063063510726, -73.84231733009209 40.840614134158486, -73.84231748352946 40.84059492231601, -73.84232486502418 40.840575746468936, -73.84233586826385 40.84055383086447, -73.84234677196214 40.84054289485353, -73.842357718854 40.84052924120785, -73.84257006078971 40.8403403535161, -73.8425795556827 40.84032895990973, -73.84265329285199 40.84026631495756, -73.84293958726799 40.840023085333065, -73.84296138370199 40.84000670259517, -73.84298673671296 40.83999858583284, -73.84301209090562 40.83999046816607)))",X016,5422,X016,X-10,X-10,X-10,X-10,"Lane Ave., E. Tremont Ave., Westchester Ave.",210,13,45,10461,X,1.4,False,Owen F. Dolen Park,Yes,100004201,PARK,20100106000000.00000,19090802000000.00000,2551 WESTCHESTER AVENUE,DPR,True,Owen F. Dolen Park,Y,Owen F. Dolen Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X016/,No,82,34,14,{34E503CF-4747-481C-8607-B7426AE09573} +"MULTIPOLYGON (((-73.94311807812622 40.81214026317854, -73.94314131057564 40.812150033330845, -73.94319914944137 40.812174355464656, -73.94325775964698 40.812199000327105, -73.9433108511529 40.812221326366455, -73.94335635886377 40.812240462695165, -73.94317739379362 40.81248659407831, -73.94293911125989 40.81238639329476, -73.94311807812622 40.81214026317854)))",M296,4971,M296,M-10,M-10,M-10,M-10,"W. 132 St., Lenox Ave.",110,9,32,10027,M,0.171,False,132 St Block Association Park,No,100003734,PARK,20100106000000.00000,19970715000000.00000,108 WEST 132 STREET,DPR,False,132 St Block Association Park,N,132 St Block Association Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/M296/,No,70,30,13,{F3B86491-5C8A-4F02-8A33-8611A25CE718} +"MULTIPOLYGON (((-73.88140651341904 40.81810754284429, -73.88109698894344 40.81788268685218, -73.88101560906672 40.817942233840085, -73.88101557702302 40.81794225631948, -73.88101553192965 40.817942285088876, -73.8810154832851 40.817942311153075, -73.88101543346015 40.81794233451459, -73.88101538126936 40.81794235517219, -73.88101532789645 40.81794237402754, -73.88101527215778 40.817942390179006, -73.88101521524025 40.81794240272722, -73.8810151583275 40.817942412573956, -73.881015099049 40.81794241971678, -73.8810150409606 40.81794242415932, -73.88101498169175 40.81794242589916, -73.88101492242939 40.817942424036985, -73.88101486435711 40.81794241947459, -73.88101480510436 40.81794241220944, -73.88101474822702 40.81794240224529, -73.88101469135458 40.81794238957965, -73.88101463567386 40.817942373313215, -73.88101458236856 40.81794235434777, -73.88101453025186 40.81794233358254, -73.88101448051061 40.817942310118276, -73.88101443195946 40.81794228395379, -73.88101438696911 40.81794225509142, -73.88101435855704 40.81794223525115, -73.8809512822742 40.81789637804977, -73.88091690192586 40.81787138256058, -73.88060724082305 40.81764625405141, -73.88060719348023 40.81764621528098, -73.88060715561176 40.81764618102289, -73.88060712130407 40.817646144066984, -73.88060709055397 40.81764610621424, -73.88060706336299 40.8176460665642, -73.8806070385442 40.81764602601609, -73.88060701728462 40.817645983670715, -73.88060700076787 40.817645940429735, -73.88060698780704 40.817645897192406, -73.88060697840534 40.8176458521578, -73.88060697255798 40.81764580802741, -73.88060697026813 40.81764576300017, -73.88060697271953 40.81764571797784, -73.88060697872521 40.817645673859666, -73.88060698828848 40.8176456288447, -73.88060700140439 40.81764558563441, -73.88060701807623 40.81764554242778, -73.88060703948767 40.81764550012657, -73.88060706445187 40.81764545963006, -73.88060709178502 40.81764542003648, -73.88060712267082 40.81764538224755, -73.880607157111 40.81764534536283, -73.88060719510224 40.81764531118324, -73.88060723546246 40.81764527790662, -73.88060727937376 40.81764524733521, -73.88060732446712 40.817645218565964, -73.8806073731116 40.817645192501935, -73.88060742293648 40.817645169140576, -73.88060747512715 40.81764514848317, -73.88060752849994 40.81764512962801, -73.88060758423846 40.81764511347674, -73.8806076411558 40.81764510092873, -73.88060770518184 40.817645090189075, -73.88160810448817 40.81750694264877, -73.88160814953774 40.81750693819257, -73.88160820762572 40.817506933749705, -73.88160826689415 40.817506932009586, -73.8816083261562 40.8175069338714, -73.88160838422814 40.81750693843354, -73.88160844348059 40.81750694569835, -73.88160850035757 40.81750695566225, -73.88160855722977 40.81750696832759, -73.88160861291031 40.8175069845937, -73.88160866621537 40.817507003558916, -73.88160871833192 40.81750702432383, -73.8816087680731 40.81750704778785, -73.88160881662412 40.81750707395214, -73.88160886161444 40.81750710281426, -73.8816089054163 40.81750713347615, -73.88160894565738 40.81750716683587, -73.88160898352622 40.81750720109363, -73.88160901783439 40.81750723804928, -73.88160904858506 40.817507275901725, -73.88160907577658 40.817507315551524, -73.8816091005959 40.81750735609943, -73.88160912185607 40.81750739844463, -73.88160913837348 40.81750744168545, -73.88160915015764 40.817507480418946, -73.882555307562 40.81735420813406, -73.88261370542712 40.817595955710736, -73.88191867500112 40.81769738224347, -73.88140651341904 40.81810754284429)))",X336,6284,X336,X-14,X-02,X-02,X-14,Lafayette Av bet. Edgewater Rd and the Bronx River,202,17,41,10474,X,0.426,False,Hunts Point Riverside Park,Yes,100005114,PARK,20100106000000.00000,20040211000000.00000,,DPR,False,Hunts Point Riverside Park,Y,Hunts Point Riverside Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X336/,Yes,"84, 85",34,15,{D5A58C89-B153-4EA5-9EAB-B16F1D0C3E65} +"MULTIPOLYGON (((-73.98676157203775 40.73012511025227, -73.98691906691438 40.729906682898154, -73.98734638696817 40.730086902589655, -73.98676157203775 40.73012511025227)))",M188,5833,M188,M-03,M-03,M-03,M-03,E. 10 St. and 2 Ave.,103,2,9,10003,M,0.156,False,Abe Lebewohl Park,Yes,100004129,PARK,20100106000000.00000,19380101000000.00000,,DPR,False,Abe Lebewohl Park,N,Abe Lebewohl Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M188/,No,66,27,12,{C103A868-5279-444C-9753-72D1654F5B03} +"MULTIPOLYGON (((-74.00344509328919 40.68248704425499, -74.0034714586216 40.68243274606618, -74.0035438061609 40.68245275868659, -74.00357005903592 40.68239869281102, -74.00359097993062 40.68235561066595, -74.00384370428276 40.682426180292325, -74.00377044959245 40.68257704043447, -74.00344509328919 40.68248704425499)))",B411,5225,B411,B-06,B-06,B-06,B-06,Summit St. bet. Columbia St. and Hicks St.,306,39,76,11231,B,0.103,False,Summit Street Community Garden,No,100004169,PARK,20100106000000.00000,19980513000000.00000,281 - 285 COLUMBIA STREET,DPR,False,Summit Street Community Garden,N,Summit Street Community Garden,Sitting Area/Triangle/Mall,Garden,http://www.nycgovparks.org/parks/B411/,No,52,26,7,{E689EED6-6725-4CEA-BF4A-5908000D34E4} +"MULTIPOLYGON (((-73.98827506263977 40.74840363817909, -73.98849832652934 40.74849765732547, -73.98818147264777 40.74893421674163, -73.98827506263977 40.74840363817909)))",M032,4774,M032,M-05,M-05,M-05,M-05,"Broadway, Av of the Americas, bet. W. 32 St. and W. 33 St.",105,3,14,10001,M,0.144,False,Greeley Square Park,Yes,100005133,PARK,20100106000000.00000,18461019000000.00000,894 6 AVENUE,DPR,False,Greeley Square Park,Y,Greeley Square Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M032/,No,75,27,12,{2A44F4EF-5DC9-4A56-A15A-9CC3B39F8826} +"MULTIPOLYGON (((-74.18257065945656 40.543686153023486, -74.18288231277356 40.54333156646076, -74.1828843215375 40.543329280420885, -74.18288735577913 40.543330756057465, -74.18301324798846 40.54339198864841, -74.18301126875537 40.54339428094716, -74.1828853517198 40.54333303578619, -74.18257368429099 40.543687638589134, -74.18270311402512 40.54375121447323, -74.18270113477075 40.543753506766556, -74.18257168139068 40.543689918310434, -74.18256865537576 40.54368843274663, -74.18257065945656 40.543686153023486)))",R103,6087,R103,R-03,R-03,R-03,R-03,E/s Drumgoole Rd. W. bet. Belfield Ave. and Jefferson Blvd.,503,51,123,10312,R,0.006,False,Strip,No,100003822,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/R103/,No,62,24,11,{4343BBBF-DE8C-411B-9B86-6E48C33293FC} +"MULTIPOLYGON (((-73.9811229077025 40.686947453901354, -73.98048624182113 40.68675677740926, -73.98064739411211 40.6865101782552, -73.98072506101973 40.686539844304285, -73.98078247053625 40.686561773308505, -73.9808377923627 40.6865829031808, -73.98089169835563 40.68660348347805, -73.98087202772226 40.68663254878993, -73.98093557991918 40.68665679666046, -73.98100212004636 40.686682184138895, -73.98106254605777 40.68670524004345, -73.9811280560163 40.68673023375487, -73.98119038059647 40.686754013016, -73.98125670208924 40.68677931746383, -73.98127628265324 40.68675038895014, -73.9813397901537 40.68677464559491, -73.9814057391161 40.68679983553117, -73.9814708329227 40.686824697504925, -73.98153831378582 40.686850472045, -73.98154633238347 40.68685353417689, -73.98141107622527 40.68706051346616, -73.9811229077025 40.686947453901354)))",B137,5479,B137,B-02,B-02,B-02,B-02,Schermerhorn St. bet. Nevins St. and 3 Ave.,302,33,84,11217,B,0.567,False,Sixteen Sycamores Playground,Yes,100004436,PARK,20100106000000.00000,19340626000000.00000,358 SCHERMERHORN STREET,DPR,False,Sixteen Sycamores Playground,Y,Sixteen Sycamores Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B137/,No,52,25,8,{C8D17881-4291-4BEB-A72A-5EE05D6C7905} +"MULTIPOLYGON (((-73.95039079809928 40.70338691773734, -73.95037551622785 40.70339466095472, -73.95036024072955 40.70339542970867, -73.95033885649303 40.703392320022225, -73.95032155087227 40.703381462287304, -73.95031443266183 40.703369833607006, -73.95031240372488 40.70335820712333, -73.95031449042516 40.703292331080085, -73.9503176415223 40.703163678112396, -73.95032375826774 40.70315360492514, -73.95033700422688 40.70314353571435, -73.9503461733186 40.70313888942687, -73.95035432133176 40.70313889294153, -73.95036145051819 40.70313734623532, -73.95037468842106 40.70313967706509, -73.95038894163243 40.7031451078928, -73.95040013617587 40.703155188544564, -73.95043270221304 40.70318542825388, -73.95051004832696 40.70325521428368, -73.95052734816126 40.70327227201206, -73.95053039356625 40.70328389892893, -73.95052733148158 40.70329474788009, -73.95051917657914 40.703305594641996, -73.95048861059654 40.703324182470794, -73.95043868587423 40.703355936445824, -73.95039079809928 40.70338691773734)))",B194,6070,B194,B-01,B-01,B-01,B-01,"Middleton St., Harrison Ave., Union Ave.",301,33,90,11206,B,0.1,False,Harmony Triangle,Yes,100006646,PARK,20110712000000.00000,,,DPR,False,Harmony Triangle,Y,Harmony Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B194/,No,53,26,7,{522529C1-59F3-4F58-A66C-2BE097DA671B} +"MULTIPOLYGON (((-73.91374895281301 40.68184391773137, -73.91372961447074 40.68183780404887, -73.91367643786779 40.681843855248076, -73.9136010017982 40.681852439067676, -73.91352887357233 40.681860647107634, -73.9134616195786 40.681868300449246, -73.91339219581909 40.68187619975991, -73.91331615985617 40.68188485408194, -73.9132460285867 40.68189283291724, -73.91317486211017 40.681900931597625, -73.91310008724732 40.681909440845125, -73.91302955486235 40.68191746697281, -73.91295829842022 40.68192557535695, -73.91290015750513 40.681932190666764, -73.91288444511784 40.68193397800022, -73.91284025143443 40.68193900632541, -73.91281722528488 40.68194162738899, -73.9127803441662 40.68194582375298, -73.91274382151335 40.68194997985381, -73.91269119722648 40.68195596798051, -73.91267943037835 40.68195730622137, -73.91260155100316 40.6819661684922, -73.91252778160707 40.681974562865655, -73.91251693045119 40.6819757973263, -73.91245804411142 40.6819824973949, -73.91243848079274 40.68198472298972, -73.91239044441406 40.68199018947008, -73.91233863520154 40.68199608530316, -73.91228290322341 40.68171621152482, -73.91238272489396 40.68170473757759, -73.91246115542124 40.68169572278662, -73.91254575800885 40.681685997624754, -73.91263538388593 40.6816756971839, -73.91272451048225 40.68166545212647, -73.9127844022139 40.68165856807804, -73.912844296299 40.68165168400025, -73.91290242286739 40.68164500206968, -73.91360690430014 40.68156402308424, -73.91364255482162 40.68155992548889, -73.9137138558526 40.68155172936454, -73.91378515686607 40.68154353319602, -73.91385645667911 40.6815353369824, -73.91392834800722 40.681527072727974, -73.91400042742458 40.681518786956886, -73.91407035956175 40.6815107480791, -73.91411359845245 40.68172784850423, -73.91418067863395 40.6820646585828, -73.9141807373999 40.682064953094894, -73.91387765420588 40.68209944328522, -73.91383187362794 40.68186965893089, -73.91374895281301 40.68184391773137)))",B110,5028,B110,B-16,B-16,B-16,B-16,Hopkinson Ave. bet. Marion St. and Chauncey St.,316,41,73,11233,B,1.32,False,Marion Hopkinson Playground,Yes,100004572,PARK,20100106000000.00000,19041129000000.00000,89 HOPKINSON AVENUE,DPR,Part,Marion Hopkinson Playground,Y,Marion Hopkinson Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B110/,No,55,25,8,{54760C46-0E6C-4194-9B88-D674341E4FE7} +"MULTIPOLYGON (((-74.0022845385326 40.69261260005283, -74.00400393365769 40.693225185509135, -74.0034708811142 40.69404141142758, -74.001949412724 40.69349528444162, -74.00132898651425 40.693279301670856, -74.0010399344921 40.69320348326399, -73.9997816335117 40.69287342366875, -73.99996291510122 40.69250015045708, -74.00009549032805 40.692534929133814, -74.00016753074613 40.69255382721601, -74.00022321622373 40.69256843524234, -74.0003061697572 40.69238731037998, -74.00032632925402 40.69234329235059, -74.00007302800266 40.692273418387, -74.000208557189 40.69199435104784, -74.00173584550278 40.69241699751389, -74.00224239161932 40.69259273016341, -74.0022845385326 40.69261260005283), (-74.00041097262135 40.69289359823311, -74.00081754305218 40.69300093359797, -74.0008822540346 40.692863676044084, -74.00089761957076 40.692831086363206, -74.0003869913758 40.69269023008243, -74.00030824591468 40.692866477807065, -74.00041097262135 40.69289359823311)), ((-73.98949867594689 40.70456263190735, -73.98950538555007 40.704478015049375, -73.98961117140759 40.70448334486805, -73.98964445928895 40.70392359976024, -73.99004016459804 40.70393862279604, -73.9904703745466 40.70395495397565, -73.99080457327774 40.70396763965123, -73.99078399319768 40.70430397278827, -73.99073048733463 40.70517841292418, -73.9904878853867 40.70522813108266, -73.9904029390007 40.70524553992363, -73.99025868559512 40.70526739942889, -73.99017914288437 40.70527945322003, -73.99009771863854 40.70529179135597, -73.99006495794104 40.705296755754325, -73.98996382515789 40.705312080890344, -73.98945358121772 40.70538812218673, -73.98949227103812 40.70468095493915, -73.98949867594689 40.70456263190735)), ((-73.99887955136728 40.69643003475225, -73.99816733740234 40.69623492777909, -73.99825260226228 40.696055367807425, -73.99829036911285 40.69597783604563, -73.99904442375939 40.69618517968356, -73.99911884817553 40.696035995968096, -73.99915217348382 40.69597266046961, -73.99959319249264 40.69610008719908, -73.99940172227106 40.69639325811869, -73.99921953286827 40.69632955027031, -73.99921061998097 40.69634693820554, -74.0014202808992 40.69714273031908, -74.00118266251492 40.69749939354703, -74.000066934086 40.697113730856515, -73.99988185634115 40.69704975571141, -73.99962224210738 40.69697205623809, -73.99919739954679 40.69682955697064, -73.99876166323799 40.696679640295535, -73.99887955136728 40.69643003475225)), ((-73.99477757955981 40.70410465908395, -73.99434098101808 40.704427122454284, -73.99386391809263 40.70455181165921, -73.99382418487356 40.704531150898546, -73.99377927404426 40.704454707655344, -73.99358997802459 40.70451048035894, -73.99300393861593 40.70339238539998, -73.99327491508053 40.70339127230951, -73.99331028042494 40.70339564095157, -73.99399035425975 40.7034138904164, -73.9942740586281 40.703062529711715, -73.99433223185143 40.70299219451968, -73.9943390444652 40.702985966015255, -73.99434703672367 40.70298060926368, -73.99435601692616 40.70297625392908, -73.99436577089251 40.702973002659064, -73.99437606787878 40.702970933786666, -73.99438665939493 40.7029700959272, -73.99439729458652 40.70297050978028, -73.99467771854233 40.70301837808345, -73.99469295073897 40.703018916392274, -73.99470811681088 40.70301771400684, -73.99472287715615 40.70301479882752, -73.99473689690302 40.70301023567593, -73.99474986365918 40.703004128097, -73.99476148277897 40.70299661385593, -73.994861196573 40.702878581972634, -73.99486117999881 40.70287869093385, -73.99486123680285 40.70287859818367, -73.99511833910846 40.702982494211085, -73.99499146694112 40.70321367713626, -73.99450230751722 40.70305505938852, -73.99418231808505 40.70341904130015, -73.99417886572148 40.70354951086037, -73.99434710459344 40.70370124105346, -73.99434609519611 40.70370191728813, -73.99439778890596 40.7037483592018, -73.99473809675963 40.704044368933744, -73.99477757955981 40.70410465908395), (-73.99427236619144 40.70422357462579, -73.99435303956474 40.70416662935775, -73.99436594600354 40.704177239817895, -73.99437066937331 40.704181120353496, -73.9944102397635 40.70415342704752, -73.99442155150007 40.70414551029829, -73.99440319051244 40.704129877425956, -73.9944882278529 40.7040702451479, -73.99449412097361 40.70406611298218, -73.9945120550025 40.70407925680562, -73.99456243999751 40.704043613345064, -73.99452545653949 40.70401204055513, -73.99454336914255 40.70399771696727, -73.99449205936514 40.70395540218371, -73.9944723719744 40.703968002999645, -73.99443030056919 40.703935222348306, -73.99437989782778 40.703970964806956, -73.99439624243696 40.70398668403427, -73.9943908060868 40.70399057127815, -73.99430670706701 40.70405069250907, -73.99428782539577 40.70403610688741, -73.99423794078821 40.704071780870294, -73.99425441786113 40.70408814849248, -73.99417574677474 40.704143390025436, -73.9941711091752 40.70414664604064, -73.99415236714745 40.70413191542165, -73.99410300665511 40.70416689237622, -73.99414320469582 40.70420194504169, -73.99412395597183 40.7042167655811, -73.99417790687458 40.704258516940705, -73.99419621588594 40.70424574951145, -73.9942133452318 40.70425928236158, -73.99423564522047 40.70427689748726, -73.99428412177159 40.704242314856465, -73.99427058491322 40.704228509340695, -73.99426845399142 40.70422633630013, -73.99427236619144 40.70422357462579)), ((-74.00037655009052 40.6942701870868, -73.9992586136828 40.69397690361764, -73.9993243997849 40.69381488196119, -74.00076000424167 40.694221401716405, -74.00295588771819 40.69482996337639, -74.00276730838692 40.69511870754516, -74.00217902128479 40.694887125440594, -74.00031683175726 40.694393342289025, -74.00037655009052 40.6942701870868)), ((-73.99620585888765 40.70337345723916, -73.99605512363685 40.703453471640636, -73.99510425849243 40.70310739278953, -73.99508274126966 40.70309956102233, -73.99515311911719 40.702996549067144, -73.99615274089356 40.703365154559194, -73.99616618813812 40.70335663256514, -73.99620585888765 40.70337345723916)), ((-73.98760320788278 40.70451879197499, -73.98757653794601 40.704973835592654, -73.9873972334945 40.70496447779612, -73.98742387333807 40.704499792438625, -73.98760320788278 40.70451879197499)), ((-74.00229146658474 40.69260975519475, -74.0022845385326 40.69261260005283, -74.00228878449762 40.692608825018254, -74.00229146658474 40.69260975519475)))",B431,6341,B431,B-02,B-02,B-02,B-02,"Furman St.,Water St. and John St. bet. Atlantic Ave.,Old Fulton St.,Main St.,Adams St., and Jay St.","302, 306","1,33",84,"11201, 11201, 11201, 11201, 11201",B,21.377,False,Brooklyn Bridge Park (THIS IS HANDLED DIRECTLY BY BROOKLYN BRIDGE PARK),No,100005143,PARK,20100106000000.00000,20010511000000.00000,,DPR/BBPC,False,Brooklyn Bridge Park,N,Brooklyn Bridge Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B431/,Yes,52,26,7,{B27DA744-13D8-4E86-B199-F97F8D2A484A} +"MULTIPOLYGON (((-73.875626963832 40.76617992201661, -73.875642307848 40.76615190766773, -73.87575590358021 40.76613953482028, -73.87588845244036 40.76686795996028, -73.87586659976412 40.76687070907173, -73.875626963832 40.76617992201661)))",Q186,5890,Q186,Q-03,Q-03,Q-03,Q-03,"94 St., Jackson Mill Rd. bet. 23 Ave. and 24 Ave.",403,21,115,11369,Q,0.065,False,Jackson Mill Green,Yes,100000029,PARK,20090423000000.00000,19350319000000.00000,,DPR,True,Jackson Mill Green,N,Jackson Mill Green,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q186/,No,35,13,14,{5AD3C933-9F54-4D8B-A7FB-D8D582F2A819} +"MULTIPOLYGON (((-73.94400736457072 40.69484270168579, -73.94403537539112 40.694839496877215, -73.94408995327134 40.69511566836986, -73.94399613024234 40.695126470330045, -73.94391985589434 40.69513525191071, -73.9438544070401 40.69514278700967, -73.94383321286479 40.695035539097304, -73.9438240507316 40.69498917982637, -73.94381350905408 40.69493583730433, -73.94379979594616 40.6948664451926, -73.94386525277699 40.69485895785565, -73.94394153741806 40.69485023124734, -73.94400736457072 40.69484270168579)))",B494,5282,B494,B-03,B-03,B-03,B-03,Vernon Ave. between Tompkins Ave. and Throop Ave.,303,36,79,11206,B,0.152,False,Vernon Tandt Block Association,No,100004618,PARK,20100106000000.00000,20021120000000.00000,200 Vernon Av,DPR,False,Vernon Tandt Block Association,N,Vernon Tandt Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B494/,No,56,18,8,{85477485-CEC6-4828-AF27-B042E466C59C} +"MULTIPOLYGON (((-74.00547820643013 40.729779726842494, -74.00547994682357 40.72976882790497, -74.00546419696752 40.72976731760012, -74.00546949248744 40.729731689629254, -74.00540440950276 40.729723055024394, -74.0053960550254 40.72977174771344, -74.00529382201316 40.72977146699763, -74.00518867719968 40.72977390405706, -74.00533074450672 40.729523535481434, -74.00558863262458 40.729446806227905, -74.00563644190107 40.72945152796556, -74.00563402716696 40.72946665212508, -74.00564834461883 40.72946802650026, -74.00564395053918 40.72949554625739, -74.00562963071398 40.72949417188181, -74.00558041520651 40.729744877657545, -74.0055532101627 40.72974226839855, -74.00555146859814 40.72975316733728, -74.00553428640117 40.72975151843271, -74.00553602678472 40.72974061949433, -74.00552099192161 40.72973917760154, -74.00551932488945 40.729749612774285, -74.00552827407311 40.72975047143013, -74.00552618584773 40.72976355051622, -74.0055172366623 40.729762691860216, -74.00551570923903 40.72977225893599, -74.00550024584994 40.72977077473711, -74.00549850309224 40.729781673675014, -74.00547820643013 40.729779726842494)))",M103,4831,M103,M-02,M-02,M-02,M-02,"Carmine St. and Clarkson St., 7 Ave.",102,3,6,10014,M,0.208,False,Tony Dapolito Recreation Center,No,100003961,PARK,20100106000000.00000,19380101000000.00000,2 7 AVENUE,DPR,False,Tony Dapolito Recreation Center,Y,Tony Dapolito Recreation Center,,Buildings/Institutions,http://www.nycgovparks.org/parks/M103/,No,66,27,10,{13E74215-EA2C-49C5-A7CB-E8CAD9176128} +"MULTIPOLYGON (((-73.98499135832654 40.69999117579419, -73.98501272277417 40.69999515974214, -73.98514671234065 40.70002289127176, -73.9851878116721 40.70003227630227, -73.98525362935344 40.70004818419522, -73.98535612675896 40.7000751559121, -73.985414808681 40.70009579319468, -73.98555298131096 40.7001452964616, -73.9856885143603 40.70019489919094, -73.98575900709119 40.70021697768445, -73.985806779294 40.70022965018818, -73.98589240036806 40.70024802755884, -73.98595185283614 40.7002576685087, -73.98600251942494 40.700263943146126, -73.98602223266585 40.70026591045917, -73.98607726088116 40.7002709464887, -73.98613421695927 40.70027412496776, -73.98619926768322 40.70027623818318, -73.98633910226614 40.70028075652483, -73.98648715379599 40.70055066916933, -73.98565589228946 40.70052255454631, -73.98553299596122 40.700443303110184, -73.98541467512716 40.70036011688415, -73.98530114628731 40.70027314719596, -73.9851926200196 40.7001825552784, -73.98508929388153 40.70008850776583, -73.98499135832654 40.69999117579419)), ((-73.98525030671973 40.70050883441337, -73.98443155521612 40.70048113398977, -73.98433457765373 40.7004778528733, -73.98434073219279 40.700334317492576, -73.98434758032559 40.7001745846925, -73.98434960193127 40.7001314252243, -73.98434941132159 40.70013189976825, -73.984354585464 40.70001121384115, -73.98435851989464 40.69991943958535, -73.98435952798755 40.69991946763821, -73.98446389690832 40.6999251549998, -73.98453742893832 40.69993060039294, -73.98453633077241 40.699931211693105, -73.98459461389476 40.69993508360635, -73.98474771598563 40.70008550392531, -73.98490818652391 40.70023140713494, -73.98507579720972 40.70037258515686, -73.98525030671973 40.70050883441337)))",B223JC,5308,B223JC,B-02,B-02,B-02,B-02,"Sands St., Prospect St. bet. Bridge St. and Manh. Bridge",302,"33,35",84,11201,B,1.934,False,Bridge Park 3,Yes,100003710,PARK,20100106000000.00000,19470813000000.00000,128 PROSPECT STREET,DPR,True,Bridge Park 3,Y,Bridge Park 3,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B223JC/,No,57,25,8,{3E9EA7BA-E46E-450F-8EC7-74D16C02CB90} +"MULTIPOLYGON (((-73.98284750488925 40.73387465415532, -73.983644428939 40.73277968111055, -73.98425845807836 40.73303624491388, -73.98346131326312 40.734133209557555, -73.98284750488925 40.73387465415532)), ((-73.9845235308024 40.7331628319524, -73.98452880585543 40.73316276782467, -73.98453620184198 40.733164626566314, -73.98511393562927 40.73340882864439, -73.98511740254763 40.73341089395752, -73.98512059819537 40.733413757986185, -73.98512332595385 40.73341789617327, -73.98512456392152 40.73342453307777, -73.98512343590775 40.73342913002583, -73.98434583320257 40.73449347965224, -73.98434192933998 40.734496787587695, -73.98433624042627 40.73449939738658, -73.98432997533622 40.73450052306967, -73.98432463986262 40.73450032873432, -73.98431926558312 40.734499027669166, -73.98428045403635 40.73448269796956, -73.98424023744353 40.73446577733135, -73.98375927935308 40.73426341769405, -73.98375358958931 40.73425979144635, -73.98374979526494 40.73425561255393, -73.98374727036119 40.73424995880849, -73.98374700063587 40.734244339600636, -73.98374872202965 40.734239025045426, -73.98450897641153 40.73317086522935, -73.98451278563529 40.73316690530703, -73.98451868642344 40.733163891199275, -73.9845235308024 40.7331628319524)))",M086,4700,M086,M-06,M-06,M-06,M-06,"Rutherford Pl. To N D Perlman Pl., E 15 St. To E 17 St.",106,2,13,10003,M,3.928,False,Stuyvesant Square,Yes,100005108,PARK,20100106000000.00000,18360922000000.00000,297 2 AvNUE,DPR,False,Stuyvesant Square,Y,Stuyvesant Square,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M086/,No,74,27,12,{19D16062-BB0F-4ED8-A495-42D822631BA7} +"MULTIPOLYGON (((-74.08694360178286 40.63030556437261, -74.08748849470705 40.629854240892186, -74.08776914547511 40.630027223997395, -74.08798461172589 40.63016002738863, -74.08845341263616 40.62979319388213, -74.0885460434079 40.62972071086896, -74.08877510216254 40.62988582557888, -74.08893653404677 40.62974937920454, -74.08901965527423 40.629646763660624, -74.0892791529172 40.6298338174795, -74.0892076658545 40.6299292218242, -74.08902837213367 40.63007991152477, -74.08879308448802 40.63024189619577, -74.08868691584 40.63031157392102, -74.08853349678581 40.63043885727894, -74.08849546458478 40.63047489114534, -74.08840373712772 40.630561799745465, -74.08817813504056 40.63081235353717, -74.08803671457831 40.63097901485956, -74.08694360178286 40.63030556437261)))",R011,6013,R011,R-01,R-01,R-01,R-01,"Victory Blvd., Louis St., Howard Ave.",501,49,120,10301,R,3.024,False,Hero Park,Yes,100004540,PARK,20100106000000.00000,19200526000000.00000,,DPR,True,Hero Park,Y,Hero Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R011/,No,61,23,11,{BF441685-C447-4AAB-8918-5B3CC5287E22} +"MULTIPOLYGON (((-73.91809275278399 40.73103407742516, -73.9176660692379 40.73094127107217, -73.91766650827275 40.73093851222716, -73.91772143213409 40.73095045801186, -73.91779132665074 40.73096566079329, -73.91786111705564 40.73098084094524, -73.91792920687435 40.730995650634185, -73.91800110033401 40.73101128875804, -73.91809004855385 40.73103063465758, -73.91809766314107 40.73100415070795, -73.91816284519396 40.73077743723356, -73.91816632216333 40.73077819343039, -73.91815170891 40.7308290194671, -73.91809275278399 40.73103407742516)))",Q360D,5562,Q360D,Q-02,Q-02,Q-02,Q-02,54 Ave. bet. 48 St. and 50 St.,402,30,108,11378,Q,0.005,False,Strip,No,100000095,PARK,20090423000000.00000,19530602000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q360D/,No,30,15,12,{66002C13-7D05-4686-ABC6-20AD4FA4AFA9} +"MULTIPOLYGON (((-73.87064527999523 40.75785503838129, -73.87101326833488 40.75781623216974, -73.87102751161879 40.757894940627864, -73.8706592705578 40.75793377271584, -73.87064527999523 40.75785503838129)))",Q439,4954,Q439,Q-03,Q-03,Q-03,Q-03,98 St. bet. Northern Blvd. and 32 Ave.,403,21,115,11369,Q,0.069,False,Private William Gray Park,Yes,100000146,PARK,20090423000000.00000,19920312000000.00000,32-38 98 STREET,DPR,False,Private William Gray Playground,N,Private William Gray Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q439/,No,35,13,14,{B4B0F7FD-4583-42E7-919B-2424911732DD} +"MULTIPOLYGON (((-73.7830829124825 40.7898077004203, -73.7834647211646 40.78977807502187, -73.78440012501187 40.7897513799331, -73.78449481797199 40.78976268365128, -73.78479988871044 40.78978404630069, -73.7851056682102 40.78979841975688, -73.78541187798007 40.789805792689926, -73.7857182418891 40.78980615647866, -73.78602448021982 40.789799512403796, -73.78633031679485 40.78978586625791, -73.78663547423515 40.78976522923743, -73.78693967750353 40.78973762155098, -73.78724264799817 40.78970306700553, -73.78754411301709 40.789661597526255, -73.78754598993206 40.789661544254386, -73.78762063361015 40.78965101536425, -73.78775980626841 40.78963103382514, -73.78790642119337 40.78960195632273, -73.78806146059368 40.7895723214058, -73.78815521611297 40.78955105008945, -73.78832685771924 40.78951816299625, -73.78848653158803 40.78947961743493, -73.7886132460593 40.789449709167286, -73.78874972240246 40.78940625077062, -73.78887570100981 40.78936994008845, -73.78899118431156 40.78934077625908, -73.78909445431624 40.78930382132328, -73.78921359208506 40.789257211304296, -73.78934164308878 40.78921431131854, -73.78945980043339 40.78915916518322, -73.78962141274636 40.78908823408951, -73.78976288059282 40.7890143375876, -73.78985104246861 40.78896793154661, -73.78991820344972 40.78896513905791, -73.78998546173425 40.78896567766909, -73.79005253061776 40.78896954505679, -73.79018947362586 40.788974772417596, -73.79032566160649 40.78898687628627, -73.7904604976319 40.789005802450475, -73.79059338959665 40.78903146969407, -73.79072375615769 40.78906376440525, -73.7908510255347 40.789102545076226, -73.79097463906638 40.78914764140932, -73.79109405475587 40.78919885702446, -73.79120874965096 40.78925596586127, -73.79131822100865 40.78931871848458, -73.79142198985478 40.78938684028924, -73.79151959861709 40.78946003059521, -73.79161062176284 40.789537970770866, -73.79123564234663 40.78958961950157, -73.79062007160074 40.79095991235441, -73.79062000761144 40.79095991493968, -73.79061684711192 40.7909600865972, -73.79060775174804 40.79098022963451, -73.78483166662292 40.79199834207446, -73.78216650500785 40.79146055404024, -73.78147245910765 40.79116055050678, -73.78191734489472 40.79041054003249, -73.78218038880995 40.79016705418717, -73.78218045643281 40.79016702729989, -73.78230175822752 40.7900780057971, -73.78238190749894 40.7900240999431, -73.78246769102023 40.7899754609056, -73.78255851054853 40.78993242613272, -73.78265373479294 40.789895296090776, -73.78275269942853 40.78986432976213, -73.78285471776773 40.78983974196435, -73.78295907720529 40.78982170334344, -73.78306505225024 40.789810340399, -73.7830829124825 40.7898077004203)), ((-73.79452098967533 40.78760404803916, -73.79466320788441 40.78758600598467, -73.79470118113433 40.78759638799986, -73.79472865893128 40.78761391751548, -73.79475455476864 40.78764230427809, -73.79476044042802 40.787693523685114, -73.79478063491987 40.78779540207435, -73.79480998878391 40.78790312482352, -73.7948443573822 40.78802986701573, -73.7948535661825 40.78813462635169, -73.79483701266957 40.78823679410473, -73.7948149552594 40.78831567224433, -73.79479374243087 40.78837729193632, -73.79475178415603 40.788455341283495, -73.79472263836921 40.78852178793894, -73.7946395420698 40.7886111697388, -73.79459464124557 40.78866360977472, -73.79454180627367 40.78872087675435, -73.79447724903066 40.78877462164983, -73.7943984067244 40.78882716406845, -73.79432090178507 40.78886671455815, -73.7942053117733 40.78891954515633, -73.7940974099541 40.788965414976644, -73.79396532869956 40.78899783568192, -73.79383507404154 40.78902153362728, -73.79394534469836 40.789219854137805, -73.79300636810083 40.78934571163236, -73.7930062448283 40.78934572852054, -73.7926020589817 40.789401405814225, -73.79246962270885 40.788490919818464, -73.79246416251179 40.78848961506254, -73.7924509507758 40.78841743934279, -73.79242990067276 40.788346347217384, -73.79240115761235 40.78827682881784, -73.79236492153537 40.788209363566395, -73.79232143981275 40.78814441746197, -73.79227101554982 40.78808243949348, -73.79221399456412 40.78802385801439, -73.79215077250797 40.787969076253596, -73.7920817842023 40.78791847319681, -73.79200750721051 40.78787239729, -73.79210773947436 40.78782657321706, -73.79223810297377 40.787779215790934, -73.79236175949742 40.787747355504486, -73.79251472002798 40.787724302539615, -73.79263142388164 40.787705805524766, -73.7928739905034 40.78767465565953, -73.7930593079035 40.787662356298696, -73.79320812418298 40.787652480143635, -73.79336890570318 40.78764826059988, -73.79353530420465 40.7876436681806, -73.79368461067826 40.78763805887374, -73.7938680999568 40.78763448171864, -73.79404878308497 40.78763109106413, -73.79421823338657 40.78762844549829, -73.79435301048672 40.78761949913176, -73.79452098967533 40.78760404803916)), ((-73.79099862040465 40.78837062437875, -73.79114580112827 40.788294676184776, -73.79139260410085 40.788177231967296, -73.79175559886448 40.78798756523303, -73.7918968919369 40.787922968892566, -73.79197387271994 40.787967105563844, -73.7920454401708 40.7880162230055, -73.7921110386342 40.78806994021281, -73.7921701575831 40.788127840242694, -73.79222233753438 40.78818947292543, -73.79226717477971 40.78825435757438, -73.79230431780068 40.788321992884796, -73.7923334803218 40.78839185065321, -73.7923544341604 40.78846338927207, -73.79235423881399 40.78846334299445, -73.79249834604194 40.7894156920234, -73.7920776999926 40.789473634126175, -73.79169572990062 40.78903899999879, -73.79148573846093 40.788822800255154, -73.7913272136056 40.78866969612988, -73.79116481964945 40.78851895219417, -73.79099862040465 40.78837062437875)), ((-73.79034717577287 40.78870677694565, -73.79074203000003 40.78850302895417, -73.7909108043907 40.788649207804866, -73.79107581005277 40.7887978514536, -73.79123698554785 40.78894890307338, -73.79151937079308 40.78925128273044, -73.79175279285165 40.7895183878562, -73.7917310173062 40.78952138680641, -73.79172048335182 40.78952283739175, -73.79162182834796 40.7894401009321, -73.79151684644471 40.789361990533465, -73.79140591234668 40.789288786913325, -73.7912894233256 40.789220751019585, -73.79116779447567 40.789158125823036, -73.79104145990414 40.789101134519015, -73.79091087272867 40.789049981427944, -73.79077649798053 40.78900484838094, -73.79065016513461 40.78897275196277, -73.79052172826832 40.78894590691882, -73.79039156742867 40.78892439137672, -73.79026006270348 40.78890826995809, -73.79012760253192 40.78889758839097, -73.78999457420717 40.788892379795996, -73.79034717577287 40.78870677694565)), ((-73.78185610354546 40.790343642810534, -73.78185615803366 40.79034328541385, -73.78185621588753 40.79034298565574, -73.78187569823649 40.79025503074614, -73.78190287444306 40.79016826194641, -73.78193762353516 40.79008306894031, -73.78204477095214 40.789795929091824, -73.78232467533809 40.789789097361556, -73.78272246710908 40.78980966804835, -73.78259839052414 40.789859446227766, -73.7824784932567 40.78991482788935, -73.78236321433563 40.78997560946071, -73.78225297389692 40.79004156932501, -73.78214817436876 40.790112467822944, -73.78204919692305 40.79018804544448, -73.78204910074956 40.79018810739732, -73.7819969604147 40.79022351113021, -73.78194930267249 40.790262392959455, -73.78190652787474 40.790304427666015, -73.78186899618434 40.79034926203901, -73.78186961479032 40.79034813848112, -73.781868930041 40.79034919887861, -73.78186770316809 40.790349736858616, -73.78186637377061 40.790350105349916, -73.78186497979813 40.79035029361837, -73.78186356273712 40.79035029633936, -73.78186216761353 40.790350112697745, -73.78186083587255 40.79034974997587, -73.78185960539881 40.790349217250544, -73.78185851523827 40.790348530804685, -73.78185759612835 40.790347711408074, -73.78185687760684 40.79034678433067, -73.78185638091207 40.79034577662788, -73.78185612016145 40.790344718943444, -73.78185610354546 40.790343642810534)))",Q010A,6267,Q010A,Q-11,Q-11,Q-11,Q-11,Cross Island Pkwy. bet. Utopia Pkwy. and Totten Ave.,407,19,109,"11359, 11360",Q,55.22,False,Little Bay Park,No,100000119,PARK,,19500915000000.00000,,DPR,True,Little Bay Park,Y,Little Bay Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q010A/,Yes,26,11,3,{3B4B83B0-9A5D-4FF9-A23D-A6EEBB69DBAE} +"MULTIPOLYGON (((-74.02043213436114 40.6221362967489, -74.02060828131057 40.62192617392439, -74.02061112296428 40.62192788260249, -74.02028225396563 40.622319462996785, -74.02014107223371 40.622345768601285, -74.02013741258413 40.62234354045476, -74.02024061922089 40.62232431153153, -74.02028079713764 40.62231682562995, -74.02041313145371 40.62215896622, -74.02043213436114 40.6221362967489)))",B210Q,5816,B210Q,B-10,B-10,B-10,B-10,N/B Gowanus Exwy. bet. 81 St. and 82 St.,310,43,68,"11209, 11228",B,0.004,False,Strip,No,100004016,PARK,20100106000000.00000,19651216000000.00000,,DPR,True,Park,N,Park,Type 2,Strip,http://www.nycgovparks.org/parks/B210Q/,No,46,22,11,{C489A963-CCF8-4EBB-875B-8C76C6B9717E} +"MULTIPOLYGON (((-73.76876080360424 40.673846176451775, -73.76874142960843 40.67377262461172, -73.76869779508867 40.67360696672482, -73.76919291640252 40.673535608033305, -73.76936589001012 40.673800745970226, -73.76972989202181 40.67376804424393, -73.76976513371764 40.67391356646066, -73.76853569628533 40.67418671759456, -73.76846869349566 40.674006616930264, -73.7687781254937 40.67393714558769, -73.76876934604438 40.6738910430266, -73.76876080360424 40.673846176451775)))",Q427,5365,Q427,Q-12,Q-12,Q-12,Q-12,134 Rd. and 173 St.,412,28,113,11434,Q,0.942,False,South Rochdale Playground,Yes,100000367,PARK,20090423000000.00000,19601021000000.00000,171-05 137 AVENUE,DPR/DOE,False,South Rochdale Playground,Y,South Rochdale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q427/,No,32,10,5,{946CBA33-01D7-46FA-90E1-05F8963CA808} +"MULTIPOLYGON (((-73.86982410310259 40.816791703969436, -73.86978175971714 40.8166323491016, -73.86977628307466 40.81662053829132, -73.86978418032008 40.81662253550943, -73.86960525836668 40.81590377477889, -73.86957015653617 40.81576275943369, -73.8695175862651 40.815621756724866, -73.86947290138004 40.81551724118577, -73.86938513192415 40.81535482343727, -73.86930411348273 40.81525009376632, -73.8692441209119 40.81518990670159, -73.86918253503781 40.81512812211477, -73.86913103382692 40.81508787174363, -73.86909006651327 40.815055854856496, -73.86902227730869 40.81500909245051, -73.86895597446674 40.81496897736885, -73.86880004726058 40.81488543013459, -73.86869493808707 40.814844109994645, -73.8684855385099 40.81476179093717, -73.86844331708089 40.814746278516616, -73.86834931738017 40.81471174428204, -73.86822641439056 40.8146680846117, -73.86818824824178 40.81465476494234, -73.86812669658043 40.81463328341557, -73.86812038471504 40.81463108078181, -73.86794935449362 40.81457439858389, -73.86772313969568 40.81450371672459, -73.86738313022734 40.81440638481869, -73.86683547769672 40.81427115884355, -73.86659844504655 40.81419630197529, -73.86629624275099 40.81408337164164, -73.86611022542468 40.8140032536719, -73.86579245232063 40.813845457317285, -73.86222739761577 40.81178723978935, -73.86203870098406 40.81167691198429, -73.86179469716096 40.81152567276558, -73.86164705464286 40.811429156740296, -73.86157423796075 40.81137977784086, -73.86157414446328 40.81137971379321, -73.86151457015222 40.81133885416312, -73.86123155854763 40.81114475086866, -73.86116873491586 40.81110158997461, -73.86106017163429 40.81102700776234, -73.86093004300596 40.810937610544954, -73.86086800699708 40.81088128244228, -73.86086485635109 40.81087637722547, -73.86082300017671 40.81081121074097, -73.86080455650897 40.81075159706961, -73.86080269216625 40.81068134871186, -73.8608106103924 40.8106428124222, -73.86083053752317 40.81059377550446, -73.86085706734607 40.810549810056514, -73.86124336620898 40.80990963735809, -73.86098188083604 40.80982151830649, -73.86092397984108 40.809917124678186, -73.86089476162948 40.80992343794486, -73.85976432850366 40.81016766600726, -73.85968057688612 40.81010522526876, -73.85960737385022 40.810049351145366, -73.85956192093808 40.8100146580973, -73.85953105094913 40.80999039706945, -73.85945147297976 40.80992785498848, -73.85942788173296 40.809907275940795, -73.8593358012386 40.80982695529244, -73.85920755401574 40.80970196618329, -73.85912872743263 40.80961621713473, -73.8590668141551 40.809544087142314, -73.85903974420718 40.809512550091725, -73.85898634432914 40.809443134661876, -73.85895641605258 40.80940422981436, -73.85890306343754 40.80932881437756, -73.85886938489767 40.809281208797934, -73.85876308650457 40.80911036021971, -73.85871411614191 40.80901862491291, -73.85868999436813 40.80897354428245, -73.85863025548787 40.808862472829205, -73.85860414257493 40.80881413713528, -73.85860412707999 40.808814178539194, -73.85858289929793 40.80877481600117, -73.85851113941796 40.808639950256456, -73.85847027388851 40.80857157742813, -73.85834953138522 40.808413785960795, -73.85844425102161 40.80839296659796, -73.858462746732 40.808406742629856, -73.8584595364415 40.8083107598886, -73.85842072792914 40.80715011551182, -73.85841662977785 40.80702754351622, -73.85841127703883 40.80686743896528, -73.85841112879528 40.80686303083885, -73.85842206835126 40.80686148550966, -73.85841099181097 40.80685890098061, -73.85841062073132 40.80684782348226, -73.85841379425442 40.806847370826716, -73.85841775730512 40.806846805677786, -73.858421626703 40.806846253921194, -73.8584252597688 40.806845934203096, -73.85842809391605 40.806845684643235, -73.8584325993909 40.80684528855329, -73.85843556000442 40.80684519943742, -73.85843919380517 40.80684509133712, -73.85844063499833 40.806845048982346, -73.85844576095793 40.80684489588811, -73.8584501846881 40.806845043598706, -73.8584513448368 40.80684508194364, -73.85845375163986 40.806845162341716, -73.85845706143893 40.80684527266442, -73.85846043503312 40.80684547761771, -73.85846435581139 40.80684584263112, -73.85847046743775 40.80684641204589, -73.85847344703407 40.80684687045599, -73.85847633540342 40.80684731614699, -73.85848079472741 40.80684800239876, -73.85848334070975 40.80684839544029, -73.85848790720544 40.80684939879914, -73.85849561871431 40.80685109580059, -73.85866236384986 40.80682753887396, -73.85867634436906 40.80681540557537, -73.85868851513054 40.80680219305956, -73.85870546723537 40.80677698004466, -73.85871484942997 40.80675538135958, -73.85871881257461 40.80673634335647, -73.85871949282428 40.80672127163165, -73.85871692421861 40.80670306398854, -73.85871218467281 40.8066942585001, -73.85870354480767 40.80668103758521, -73.85869434521176 40.806669102797194, -73.8586819695917 40.806657130796665, -73.85867021446379 40.806648190636395, -73.85865287890567 40.8066374498382, -73.85862875793974 40.80662589296877, -73.85861243699019 40.806620107956235, -73.85859057120527 40.80661362005409, -73.85848061989971 40.80662756624157, -73.8584617513527 40.80663553320847, -73.85844565021475 40.806644533741625, -73.8584245944211 40.80665784518209, -73.85841126535051 40.80666791530596, -73.85837662909445 40.8066746454171, -73.85836609855322 40.80667669102163, -73.85835893104795 40.80667777272036, -73.8583543018629 40.806678389277785, -73.85834602978909 40.80667949033004, -73.85833670384795 40.806680732365585, -73.85832957573407 40.806681680836995, -73.85832042405359 40.80668289967243, -73.85831263682734 40.80668393648219, -73.85830522064825 40.80668492331954, -73.85829996791512 40.806685622854815, -73.85829179897299 40.806686710522435, -73.85828373316413 40.80668778480881, -73.85827638573976 40.80668876272383, -73.85826633074512 40.80669010111133, -73.85825915995183 40.806691055829425, -73.85830589206255 40.80642186035433, -73.8583023124073 40.80638652485971, -73.85827316770774 40.806170803208296, -73.85826647227506 40.80614333784784, -73.85826106916505 40.80612117801763, -73.85825660476053 40.80610286717542, -73.85824708383258 40.806063819717245, -73.85824001598587 40.80603483205273, -73.85823276134852 40.80600507693232, -73.85822550671962 40.80597532091087, -73.85821715950036 40.80594108265959, -73.85820878526262 40.80590673631429, -73.85819807864648 40.805875222772265, -73.8581778843245 40.80583082581756, -73.85815905189378 40.80580246933141, -73.85813965039605 40.805777003645744, -73.85810869435933 40.80574257096945, -73.8580938066967 40.80573055799081, -73.85808520583387 40.80572361715889, -73.85807193187576 40.8057129064852, -73.85806055910008 40.80570373080097, -73.85805379383302 40.805699072291546, -73.8580374037446 40.80568860541424, -73.85802463350815 40.805681209193594, -73.85800775091718 40.805672179803224, -73.85798596210613 40.805661448726, -73.8579681643595 40.80565365728979, -73.85794538501364 40.805645612075054, -73.85789763781567 40.80563046806089, -73.85786445987047 40.8056226963706, -73.85783928777502 40.80561856535771, -73.85781599576885 40.805614743728476, -73.85778178191914 40.80561092392975, -73.85773507303807 40.805605708235994, -73.85768297681986 40.80559989154301, -73.85771361286665 40.80543849950505, -73.85743701711425 40.8054052382207, -73.85740829788138 40.80540178440495, -73.85740106001775 40.80540091457456, -73.85736598791381 40.80555267470258, -73.85736332519966 40.80556419780246, -73.85718251947998 40.80554400897569, -73.85708218025171 40.805532803978664, -73.85694777658794 40.805517796142674, -73.85686674390661 40.805508747296805, -73.85673734615926 40.805494297436745, -73.85660531582221 40.80547955419596, -73.85648964418822 40.80546663667113, -73.85647688999032 40.80540188747935, -73.85647469031287 40.80537062839966, -73.85647934594225 40.8053549655027, -73.85647651051336 40.805331103235595, -73.85643975979221 40.8051464235356, -73.85642195457693 40.80514169264863, -73.85640252080397 40.80513652839102, -73.85638347078711 40.80513366088225, -73.85637005877184 40.80513164146161, -73.85634003964175 40.80513314301031, -73.85631630691351 40.805137614129954, -73.85629040719253 40.805146228443625, -73.85626582807575 40.8051590371244, -73.85625939672065 40.805163922420505, -73.85624651026308 40.80517371279305, -73.85623400775917 40.80518680037208, -73.85627177724645 40.80534342724256, -73.85522106298632 40.80542984273771, -73.85522227541976 40.8053518916102, -73.85522033155627 40.805352035950385, -73.85522460420711 40.80520201897725, -73.85522484129551 40.805186730591956, -73.85523298871385 40.804537258118856, -73.85523493968802 40.80441177772936, -73.85524127091512 40.80400446891292, -73.85418825887152 40.80406417858651, -73.85286252511668 40.804139340049886, -73.85296396553755 40.803098738315505, -73.85374428808552 40.802939285291075, -73.85392028026457 40.802903883763506, -73.85575048079811 40.80253094472789, -73.85781087099102 40.802111061090685, -73.8589005872306 40.802560064739076, -73.86009624551271 40.80305617204149, -73.86078356666441 40.8064414950484, -73.86078362303158 40.80644174275382, -73.86405206344033 40.8060323475218, -73.86798559744412 40.811027415864224, -73.87066987764706 40.81442678937322, -73.8719231257046 40.81466756683403, -73.87298098834505 40.814870793532045, -73.87365245180334 40.81499978381953, -73.8739938993502 40.81510460623703, -73.87420988889063 40.81517735557719, -73.87515092975505 40.81549119335453, -73.87577611139739 40.81569586109491, -73.87648430273808 40.81593586077159, -73.87713014369294 40.81615472521422, -73.87788950317938 40.81641205309854, -73.87815557504427 40.8165022168505, -73.87867872744206 40.81679734829054, -73.87868302966169 40.816793666180196, -73.87898794871533 40.81697179075127, -73.87923129429542 40.817113944494515, -73.8796017476386 40.81733034866416, -73.879740025745 40.81743958644063, -73.88075804625223 40.818243788370324, -73.87975359134299 40.818963588825234, -73.87970007534939 40.819001938310706, -73.87949919805364 40.81902810592216, -73.87925235905199 40.81906026019426, -73.87885980042985 40.81911139470191, -73.87867409482453 40.81913558401415, -73.87835599813758 40.81917701753367, -73.87818156503992 40.819199738427436, -73.87794805351825 40.81923015342067, -73.87766212779295 40.81926739484254, -73.87747642131697 40.81929158222524, -73.87732864637584 40.81931082901954, -73.87702503042652 40.81935037332305, -73.87674601705716 40.81938671214423, -73.87651456010215 40.819416856281904, -73.87623785103797 40.819452893774326, -73.87596640468786 40.819488244682105, -73.87543618672024 40.81955729505563, -73.87474695851135 40.81964704840201, -73.87327662463132 40.81983850576079, -73.87274064003213 40.81990829382132, -73.87062464695909 40.820183780284005, -73.87022184313989 40.81847706076992, -73.87020961915908 40.81842526210277, -73.86982410310259 40.816791703969436)), ((-73.85065849324641 40.80356845428344, -73.85277868580948 40.803136489434394, -73.85267744081163 40.80415010687477, -73.85103847608646 40.80427299816958, -73.85101082185908 40.80451414960686, -73.85087470869203 40.80451945585469, -73.85065849324641 40.80356845428344)), ((-73.85869990944954 40.8093012057048, -73.85857196661209 40.809118227713476, -73.85851603641899 40.80912891915095, -73.85836015075468 40.809158717958304, -73.85827842875163 40.80917011149716, -73.85824159418048 40.809011998914215, -73.85848786443376 40.808977664671666, -73.85857289495249 40.809089054484836, -73.85861406653456 40.80914298814409, -73.85923423305717 40.809955390149334, -73.85923638476936 40.80996462198966, -73.85924408721819 40.80999768240442, -73.85924775405039 40.810013419497196, -73.85931141762086 40.81028667163824, -73.85944307451025 40.81085175654381, -73.85919288909112 40.810886638247375, -73.85871380979704 40.81095343106151, -73.85860298696593 40.810477745388035, -73.85863979772196 40.81047319798452, -73.8589396538699 40.81043615403238, -73.85892230500353 40.81036914199475, -73.8589021642356 40.81029134486413, -73.85888040875884 40.8102160401344, -73.85884215556861 40.810083228253596, -73.85881168661108 40.809982326063704, -73.85875925298042 40.809869685068286, -73.85875776091851 40.809864067729144, -73.85873366590744 40.80977439173902, -73.85873394577042 40.80976538078919, -73.85873433746418 40.80975281930908, -73.85873466040547 40.80974249728553, -73.8587359624881 40.80970081478538, -73.85873644694605 40.80968530968779, -73.85873326589217 40.80967919680518, -73.85872308533129 40.80965963900066, -73.85870337932278 40.8096217821886, -73.85873453074686 40.80953053318225, -73.85873569726326 40.80951642559384, -73.85873996312557 40.80946483853344, -73.85873647775456 40.80945022726902, -73.85872951760136 40.809421043474195, -73.8587260992003 40.80940670964508, -73.85871915315582 40.80937758349861, -73.85870013274656 40.809302092969965, -73.85869990944954 40.8093012057048)), ((-73.86534269047598 40.81440506618847, -73.8652087288038 40.813842547637186, -73.86604948584696 40.81431208280833, -73.86534269047598 40.81440506618847)), ((-73.8599939389189 40.81073380771583, -73.85964220652669 40.81049932780185, -73.85958529982936 40.81050726304172, -73.85956451976965 40.81041807213994, -73.85966452869364 40.81040412812652, -73.8600764986125 40.81067876320119, -73.86009664985946 40.81076525174667, -73.86000426703231 40.810778132901135, -73.8599939389189 40.81073380771583)))",X118,6210,X118,X-09,X-09,X-09,X-09,"Bronx River, Bronx River Ave. bet. Lafayette Ave., Surf Dr.",209,18,43,10473,X,205.31,False,Soundview Park,No,100004770,PARK,20100106000000.00000,19370913000000.00000,,DPR,Part,Soundview Park,Y,Soundview Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/X118/,Yes,85,"34, 32",15,{3098FBA1-AA8D-4541-BBFF-3F7D16D766D9} +"MULTIPOLYGON (((-73.98785628567128 40.73005920292027, -73.9878562849246 40.730063300233844, -73.98785858333844 40.73013062879475, -73.98770389920307 40.73006504095446, -73.98785628567128 40.73005920292027)))",M188A,5759,M188A,M-03,M-03,M-03,M-03,E. 10 St. and Stuyvesant Pl.,103,2,9,10003,M,0.014,False,Abe Lebewohl Triangle,Yes,100004374,PARK,20100106000000.00000,19380101000000.00000,,DPR,False,Abe Lebewohl Triangle,Y,Abe Lebewohl Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M188A/,No,66,27,12,{F1ACB655-E136-4616-8007-5042A6677957} +"MULTIPOLYGON (((-73.89188625112085 40.80603380466578, -73.89179188860366 40.8057027926522, -73.89143005907053 40.805761251441474, -73.89150162438096 40.806012304100896, -73.89075066261469 40.80599594601293, -73.89012037744425 40.80577947756105, -73.88975018089272 40.8056523320499, -73.88957374000977 40.805875359969995, -73.8894124336661 40.80580405331377, -73.8892467389275 40.805730805241346, -73.88934253383417 40.80561179632608, -73.8894210392075 40.805514822168035, -73.88950160435625 40.805550437615096, -73.8898992633659 40.80505996052437, -73.8902514296471 40.80462558935639, -73.89033514692292 40.804665965465254, -73.89161378157849 40.80528215260614, -73.89184031051418 40.805308941793726, -73.8920286815158 40.80604840106555, -73.89188625112085 40.80603380466578)))",X304,69205,X304,X-02,X-02,X-02,X-02,Tiffany St. at Viele Ave.,202,17,41,10455,X,4.231,False,Tiffany Street Pier,No,100004687,PARK,,20000505000000.00000,,DPR,False,Tiffany Street Pier,Y,Tiffany Street Pier,Neighborhood Park,Waterfront Facility,http://www.nycgovparks.org/parks/X304/,Yes,84,32,15,{BC18FFD7-282C-4521-85E3-5E1007E464D1} +"MULTIPOLYGON (((-73.94903734207423 40.76900910002713, -73.9494078091686 40.76849540709835, -73.95046972076757 40.76894733059395, -73.9501148233556 40.769433720469, -73.94992274087893 40.7693519758799, -73.94945658992339 40.769990734513975, -73.94851239993555 40.76958890530924, -73.94903734207423 40.76900910002713)))",M045,4757,M045,M-08,M-08,M-08,M-08,"FDR Dr., E 76 St. To E 78 St.",108,5,19,10021,M,3.312,False,John Jay Park,Yes,100004745,PARK,20100106000000.00000,19020710000000.00000,76-01 FDR DRIVE,DPR,True,John Jay Park,Y,John Jay Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M045/,No,76,28,12,{945A2EDC-A8BC-498B-B6D5-0186CE8156B8} +"MULTIPOLYGON (((-73.84759253643051 40.830083041974625, -73.84749758646326 40.82968042439697, -73.84751395540665 40.829667832792026, -73.84849111759678 40.82996216465177, -73.84759253643051 40.830083041974625)))",X148M1,5645,X148M1,X-09,X-09,X-09,X-09,"N/B Cross Bronx Exwy Service Rd, Watson Av, Havemeyer Ave",209,18,43,10462,X,0.442,False,Havemeyer Playground,Yes,100005085,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Havemeyer Playground,Y,Havemeyer Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148M1/,No,87,34,14,{EAEF38D9-A42A-4E9E-A73D-A037EA2B5C7C} +"MULTIPOLYGON (((-74.14344557288587 40.557744280940554, -74.14334118017922 40.557703547164785, -74.14302863923523 40.55789296372309, -74.14239443986457 40.55764549720285, -74.14238345258481 40.55732984010257, -74.14229979244585 40.557297195224706, -74.1421842130677 40.557252094094096, -74.14206263214756 40.55720465259712, -74.14191017795844 40.55714516315065, -74.14176010509337 40.55708660080691, -74.14152927173218 40.55699652661828, -74.14149462775556 40.55698300736862, -74.14218977860311 40.55644755547264, -74.14395214531385 40.55506710145878, -74.14399439667353 40.55509694239161, -74.14422462752387 40.55492306697537, -74.1447668838934 40.55449674332898, -74.1447213662052 40.55447311593025, -74.14461107358092 40.5541155159116, -74.14571488227186 40.553924971244776, -74.14635833177222 40.5558256558985, -74.14631088553328 40.555874705930854, -74.14632664753903 40.55592597177144, -74.14626025325903 40.55593915631351, -74.14604429100336 40.55620196542027, -74.1459874322688 40.55627115676837, -74.14589182275917 40.55638750479318, -74.14581494891287 40.556481053720084, -74.14579621291655 40.55650385273722, -74.14572187289713 40.5565943176808, -74.14565787750583 40.55667219269488, -74.14564377250706 40.55668329427015, -74.1455473482068 40.55675948403107, -74.14542898997968 40.55685295828669, -74.14530027334948 40.55695461150385, -74.14517517836367 40.55705340442621, -74.14507545618218 40.55713215995526, -74.14495348165235 40.55722848845225, -74.14485176109856 40.557308822229736, -74.14475367179638 40.557386285862584, -74.14465270982853 40.55746601875498, -74.14463954634284 40.55747641480777, -74.14454946823281 40.55753890501857, -74.14444129812358 40.55761394784555, -74.14434050552286 40.55768387260868, -74.14423145074213 40.55775952780613, -74.14411407949474 40.55784095130438, -74.14400732431496 40.557915012170696, -74.14390042388564 40.557989172176946, -74.14386509508414 40.55796239964402, -74.14371702027783 40.55785019746599, -74.14359847767072 40.557803943388684, -74.14352794964798 40.557776424093746, -74.14344557288587 40.557744280940554)))",R121,6096,R121,R-03,R-03,R-03,R-03,"Greaves Ave., Dewey Ave. and Evergreen St.",503,51,122,10308,R,22.882,False,Siedenburg Park (Evergreen),Yes,100004378,PARK,20100106000000.00000,19820316000000.00000,,DPR,False,Siedenburg Park,Y,Siedenburg Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R121/,No,62,24,11,{247D7101-E357-45B7-AD90-65766D849864} +"MULTIPOLYGON (((-73.96128703530192 40.6750340647171, -73.96152627237015 40.67433126328403, -73.96169621248573 40.67436669491918, -73.96156766907619 40.674721147896285, -73.96174685340932 40.674758882457546, -73.96190852559681 40.67479292873716, -73.96216556870228 40.674847057958154, -73.96234940026811 40.67488577016708, -73.96252533561291 40.67492281896074, -73.96261031602867 40.67494071372639, -73.9626067859093 40.67495044804654, -73.96248497957241 40.67528633559371, -73.96128703530192 40.6750340647171)))",B350,5194,B350,B-08,B-08,B-08,B-08,Sterling Pl. to Park Pl. between Classon Ave. and Washington Ave.,308,35,77,11238,B,1.194,False,Elijah Stroud Playground (PS 316),Yes,100003697,PARK,20100106000000.00000,19640115000000.00000,500 PARK PLACE,DPR/DOE,False,Stroud Playground,Y,Stroud Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B350/,No,57,20,9,{98B6ACE6-123C-432D-9D83-35AA7941B647} +"MULTIPOLYGON (((-73.94277704284598 40.80987448255759, -73.94295570410173 40.809627895892135, -73.94296819036964 40.80961066293648, -73.94302713224074 40.809635551226066, -73.94301467564806 40.80965274277979, -73.94302004725591 40.80965500478414, -73.94284138616422 40.80990159334924, -73.94277704284598 40.80987448255759)))",M316,66002,M316,M-10,M-10,M-10,M-10,E. 129 St. bet. Lenox Ave. and 5 Ave.,110,9,32,10027,M,0.051,False,Rev. Linette C Williamson Memorial Park,No,100003724,PARK,20100106000000.00000,19990712000000.00000,52 WEST 129 STREET,DPR,False,Rev. Linnette C Williamson Memorial Park,N,Rev. Linette C Williamson Memorial Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/M316/,No,70,30,13,{14F70CE7-36A4-4C7E-889C-F250384C0F47} +"MULTIPOLYGON (((-73.8226115068259 40.71241641350609, -73.82258857580446 40.71241534077864, -73.82117545665392 40.71244486587212, -73.82065791377488 40.71146168169126, -73.82068889073278 40.71091410028031, -73.81959457031961 40.71034722149933, -73.81998978854489 40.7098999935669, -73.82047686237644 40.71014024287763, -73.82151956111119 40.71156082460923, -73.82245498025792 40.71187930195439, -73.8228291777628 40.712251789234706, -73.8232171562316 40.712637987828614, -73.82318044839826 40.7126080155286, -73.82315098578752 40.71258645973035, -73.82311139635901 40.71256049026158, -73.82305566555948 40.712528891180504, -73.82301265496457 40.712509127253284, -73.82297274359297 40.71249078818403, -73.82290947287946 40.71246778003227, -73.82278173686173 40.71243490926713, -73.82276151712846 40.71243159757139, -73.82272249599339 40.712425206884646, -73.82266490644274 40.71241891185307, -73.8226115068259 40.71241641350609)))",Q220G,5899,Q220G,Q-08,Q-08,Q-08,Q-08,"Manton St. bet. 83 Ave., 134 St. and Main St.",408,24,107,11435,Q,5.2,False,Hoover/Manton Playgrounds,Yes,100000078,PARK,20090423000000.00000,19491231000000.00000,,DPR,True,Hoover - Manton Playgrounds,Y,Hoover - Manton Playgrounds,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q220G/,No,27,14,6,{5C03B893-9981-49C0-9C6C-77212A21D12C} +"MULTIPOLYGON (((-73.91189056137189 40.662221410807234, -73.91444123386107 40.66183447151301, -73.91478118556722 40.66317410100108, -73.91222919814761 40.66355230819364, -73.91189056137189 40.662221410807234)), ((-73.91129277405257 40.66389157271348, -73.91201507667624 40.66378306858302, -73.91236073169652 40.665140255871336, -73.91164224895927 40.66524427692604, -73.91129277405257 40.66389157271348)))",B008,5448,B008,B-16,B-16,B-16,B-16,"Blake Ave., Dumont Ave., Livonia Ave. bet. Strauss St., Hopkinson Ave. and Bristol St.",316,41,73,11212,B,10.555,False,Betsy Head Park,Yes,100004157,PARK,20100106000000.00000,19151001000000.00000,"245 DUMONT AVENUE, 167 LIVONIA AVENUE",DPR,True,Betsy Head Park,Y,Betsy Head Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B008/,No,55,"20, 19",9,{AA85F154-02C5-4FD9-A689-99328AD5450B} +"MULTIPOLYGON (((-73.94087199179819 40.8162166003101, -73.94105352718908 40.8159706324473, -73.9411252572564 40.816000833946795, -73.94120615330576 40.81603489420309, -73.94102461830286 40.8162808632041, -73.9409437232343 40.81624680102141, -73.94087199179819 40.8162166003101)))",M340,4997,M340,M-10,M-10,M-10,M-10,W. 137 St. bet. Lenox Ave. and Adam C Powell Blvd.,110,9,32,10030,M,0.11,False,Elizabeth Langley Memorial Garden,No,100003880,PARK,20100106000000.00000,20021120000000.00000,121 WEST 137 STREET,DPR,False,Elizabeth Langley Memorial Garden,N,Elizabeth Langley Memorial Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M340/,No,70,30,13,{60BD4579-3BE4-4286-93B7-5A39A5C307E3} +"MULTIPOLYGON (((-73.94740229194849 40.81802703527832, -73.94723375008822 40.818397119138744, -73.9471561182617 40.818363217707955, -73.94740229194849 40.81802703527832)))",M024,5702,M024,M-10,M-10,M-10,M-10,"W 136 St To W 137 St, St Nicholas Av, Edgecom Av",110,9,32,10030,M,0.038,False,Dorrance Brooks Square,Yes,100005038,PARK,20100106000000.00000,19130722000000.00000,,DPR,False,Dorrance Brooks Square,Y,Dorrance Brooks Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M024/,No,70,30,13,{073781C1-34E3-4B29-96E2-1D155B432BA8} +"MULTIPOLYGON (((-73.88077891196528 40.70187052773023, -73.8808736285779 40.701815718837544, -73.88089483395133 40.70186254673158, -73.88077891196528 40.70187052773023)))",Q075,6153,Q075,Q-05,Q-05,Q-05,Q-05,"Myrtle Ave., Cooper Ave., 70 St.",405,30,104,11385,Q,0.005,False,Glendale Veterans Triangle,Yes,100000103,PARK,20090423000000.00000,19190517000000.00000,,DPR,False,Glendale Veterans Triangle,Y,Glendale Veterans Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q075/,No,38,15,6,{51936860-EC97-4B31-A6DC-D596790A4B46} +"MULTIPOLYGON (((-73.88914361443666 40.67427611731189, -73.88923209601921 40.67426306580955, -73.88928474453107 40.674475225748786, -73.88919633081835 40.67448855381524, -73.88909925350707 40.67450318821595, -73.88900722428303 40.67451706016551, -73.88895250186081 40.67430430735953, -73.88904646104855 40.67429044812107, -73.88914361443666 40.67427611731189)))",B450,5251,B450,B-05,B-05,B-05,B-05,Glenmore Ave. between Schenck Ave. and Hendrix St.,305,37,75,11207,B,0.129,False,Clara's Garden,No,100003708,PARK,20100106000000.00000,20021120000000.00000,579 GLENMORE AVENUE,DPR,False,Clara's Garden,N,Clara's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B450/,No,55,18,8,{D676C412-FEF5-4DAE-911B-BA03EC31C1D5} +"MULTIPOLYGON (((-73.751590491967 40.60228797966422, -73.75147847185784 40.602439886701745, -73.75135518550144 40.60260707008673, -73.75132680796644 40.60264555388897, -73.751311177654 40.602647537245595, -73.75116772665727 40.602566598180815, -73.75124551019123 40.60245851077094, -73.75125256206474 40.602451339839114, -73.75120043860173 40.602319639496265, -73.75142886145555 40.60226585368196, -73.751590491967 40.60228797966422)))",Q446,4643,Q446,Q-14,Q-14,Q-14,Q-14,Cornaga Ave. bet. Beach 19 St. and Morse Ct.,414,31,101,11691,Q,0.231,False,Sorrentino Recreation Center,No,100000088,PARK,20090423000000.00000,19740911000000.00000,18-40 CORNAGA AVENUE,DPR,False,Sorrentino Recreation Center,Y,Sorrentino Recreation Center,,Buildings/Institutions,http://www.nycgovparks.org/parks/Q446/,No,23,10,5,{6838B0FF-BA34-48E0-B9D1-583C2BBA4E28} +"MULTIPOLYGON (((-73.8876657055523 40.67405915528002, -73.88776125005892 40.67404499876694, -73.88783282646071 40.67432309649433, -73.88773728275211 40.67433725396803, -73.8876657055523 40.67405915528002)))",B452,5956,B452,B-05,B-05,B-05,B-05,Barbey St. and Glenmore Ave.,305,37,75,11207,B,0.057,False,Concerned Residents of Barbey Street,No,100004452,PARK,20100106000000.00000,20121120000000.00000,,DPR,False,Concerned Residents of Barbey Street,N,Concerned Residents of Barbey Street,Greenthumb,Garden,http://www.nycgovparks.org/parks/B452/,No,55,18,8,{003084E9-0A9C-4901-907B-9164D966C843} +"MULTIPOLYGON (((-73.9151008011141 40.82394012812244, -73.91496180008188 40.82419686248763, -73.91479367312611 40.8241471795797, -73.91493351478147 40.82388889177856, -73.9151008011141 40.82394012812244)))",X356,5505,X356,X-03,X-03,X-03,X-03,E. 160 St. bet. Courtlandt Ave. and Melrose Ave.,203,17,42,10451,X,0.116,False,Little Green Garden,No,100008351,PARK,20130114000000.00000,20120521000000.00000,375 - 377 EAST 160 STREET,DPR,False,Little Green Garden,,Little Green Garden,,Garden,,No,79,32,15,{7D5FAA1D-FB0A-470F-9BA9-CD533593FD16} +"MULTIPOLYGON (((-73.93798957464757 40.81371589836699, -73.93817057380446 40.81346312419048, -73.9383085308127 40.813520146448376, -73.93849179731623 40.81326420232202, -73.93936043324473 40.813630513850356, -73.93917949072132 40.8138776437971, -73.93918343842556 40.8138793081977, -73.93899792802372 40.814132675887194, -73.93798957464757 40.81371589836699)))",M217,4897,M217,M-10,M-10,M-10,M-10,"W. 135 St. To W. 136 St., Lenox Ave. To 5 Ave.",110,9,32,10037,M,1.228,False,Howard Bennett Playground,Yes,100004412,PLGD,20100106000000.00000,19581003000000.00000,2230 5 AVENUE,DPR/DOE,False,Howard Bennett Playground,Y,Howard Bennett Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M217/,No,70,30,13,{2E9483E6-AA10-40E4-9A75-23EE830492A0} +"MULTIPOLYGON (((-73.85912321414128 40.571370430166716, -73.85913754480899 40.571370447740385, -73.85915358976094 40.57137571477826, -73.859160192742 40.5713873126416, -73.8591637671817 40.57139416011985, -73.85915896725336 40.57140508031513, -73.85913983397947 40.57141780740065, -73.85857564225454 40.5716502513315, -73.85855651919114 40.571657513041096, -73.85854457246654 40.571659320994925, -73.85852309003111 40.57165200928562, -73.8585135643972 40.571639248809355, -73.85851362226921 40.5716119269267, -73.85853513436761 40.571604668166245, -73.85854470243022 40.57159739289357, -73.85865945159296 40.571552000849344, -73.85886503865004 40.57147029135822, -73.85910408767091 40.57137769376437, -73.85912321414128 40.571370430166716)), ((-73.86068667543636 40.57072392316057, -73.86069863332742 40.57071665240764, -73.8607296758002 40.57072033267451, -73.86074399350294 40.57072763528652, -73.86075113421616 40.57073857182424, -73.86074632319526 40.57075496006572, -73.86072240623004 40.57076949977764, -73.86016301469651 40.570998316498546, -73.86015106432487 40.571001943677146, -73.86013195832197 40.57100010045277, -73.86011525015488 40.57099461571702, -73.86011050880242 40.570978217670934, -73.8601129245218 40.57096547186804, -73.86012489278194 40.57095273589602, -73.86022050738246 40.57091642330823, -73.86048108673592 40.570807458574066, -73.86068667543636 40.57072392316057)), ((-73.86227160264613 40.57007741971324, -73.86230746043336 40.570062890390076, -73.86232178331359 40.570066550184784, -73.8623360811027 40.57008295869281, -73.86233603980763 40.57010299624512, -73.86232168570858 40.570113906023344, -73.86230494636384 40.57012299387829, -73.86174796479476 40.57034635591457, -73.86173600590516 40.57035362587499, -73.86172884008954 40.57035361724976, -73.86170974531063 40.57034813257432, -73.86170784617762 40.57034595281644, -73.86169646610482 40.570326333766495, -73.86169786184058 40.57031897364775, -73.86171699549325 40.570306246136305, -73.86198713869034 40.570190003343235, -73.86227160264613 40.57007741971324)), ((-73.86397125096013 40.56938002992129, -73.86399754456619 40.5693709531357, -73.86401901337997 40.56938372909864, -73.86402147527524 40.56938561231108, -73.86402898265722 40.5693987733789, -73.8640261308912 40.569407416853224, -73.86400698934291 40.56942378556645, -73.86343088888896 40.569656239244985, -73.86340461099303 40.56965985062776, -73.86339506372677 40.569656196647166, -73.86339206630022 40.569653445578034, -73.86338177431016 40.569635724495846, -73.8633807881207 40.56962885951439, -73.86339036536302 40.56961612125847, -73.86341187864872 40.56960886248684, -73.86357443705462 40.569539842141346, -73.86387802349455 40.569418167522066, -73.86397125096013 40.56938002992129)), ((-73.86317044176465 40.56970692879086, -73.86319434053809 40.56969967200086, -73.86322059353921 40.569708808481444, -73.86322294266897 40.56972884798017, -73.86321574963007 40.56974158996161, -73.86320139693325 40.56975249985151, -73.86263962613197 40.569983148463905, -73.86261096046583 40.56998493414554, -73.86260141180932 40.56998310276187, -73.86259188445713 40.569970340819445, -73.86259191443116 40.569955769445635, -73.86260626609216 40.56994485873015, -73.86263017743397 40.56993213588034, -73.86273297722975 40.569886725476685, -73.86290987482644 40.569814079677755, -73.86317044176465 40.56970692879086)), ((-73.8599025613187 40.571047176867026, -73.85991928857977 40.57104355463894, -73.85994077243222 40.57104904342499, -73.85995052689707 40.571055263542995, -73.85995622761263 40.571065237513174, -73.85995744240878 40.57107274397665, -73.85995265144943 40.57108002248954, -73.85993590772411 40.57109092995662, -73.8593621677566 40.571323367008475, -73.85935499534472 40.571327002655316, -73.85934305253703 40.57132698893316, -73.8593192824042 40.57132091189381, -73.85931205371355 40.57130865408831, -73.85931445525719 40.571295988431835, -73.85932881541261 40.57128143550944, -73.85937662996412 40.571261458252124, -73.85954875031042 40.571192457109674, -73.85986192561663 40.571061697809775, -73.8599025613187 40.571047176867026)), ((-73.86149946153539 40.57039341251987, -73.86152096041157 40.57039161577447, -73.86154005494467 40.570398926747465, -73.86154718679072 40.57041532671573, -73.8615376031777 40.57042806480992, -73.86151608541549 40.57043896585236, -73.86096624832145 40.57066779890325, -73.86095429780131 40.57067324882958, -73.86094474176039 40.57067323726224, -73.8609280248473 40.57067139346004, -73.8609161060909 40.570660452048855, -73.86091136717984 40.57064223137411, -73.86093051741955 40.57062222056051, -73.86117674269991 40.57052234118641, -73.86148273334378 40.570397034076336, -73.86149946153539 40.57039341251987)))",Q037,6139,Q037,Q-14,Q-14,Q-14,Q-14,Rockaway Beach Blvd. bet. Beach 149 St. and Beach 142 St.,414,32,100,11694,Q,0.76,False,Neponsit Mall,Yes,100000307,PARK,20090423000000.00000,19220404000000.00000,,DPR,True,Neponsit Mall,N,Neponsit Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q037/,No,23,15,5,{4A611FE2-149E-4B18-826A-7FF25D648D94} +"MULTIPOLYGON (((-73.9438001476819 40.84326347036461, -73.94379703231947 40.84314599954515, -73.94380486079538 40.84316978177558, -73.9438100510666 40.8431920246783, -73.94381962887441 40.84324772212914, -73.9438294739807 40.843335144073755, -73.94383097933779 40.84338637114624, -73.9438298924583 40.843446201165435, -73.94382548514623 40.84349231596099, -73.9437991602835 40.84369676004177, -73.94364510986944 40.84489717229227, -73.94362391221932 40.84505993948751, -73.94360739314533 40.84516313417134, -73.94358849409166 40.84523699504096, -73.9435062114899 40.8455287152701, -73.94345707566906 40.845710992309755, -73.94338174327146 40.84598445384568, -73.9433527212851 40.84610326408284, -73.94334246289802 40.8461685753655, -73.94333607472885 40.84623281426018, -73.9433339249162 40.84631207094745, -73.94333895563051 40.8464437758397, -73.94340206226784 40.847024062495294, -73.94340512460228 40.8470931452665, -73.94340611802514 40.84714228742057, -73.94340425876517 40.84720067442959, -73.94339809301852 40.84726965271634, -73.94317992222315 40.848866819558054, -73.94316615190063 40.84879887875384, -73.94315053530394 40.8487350000575, -73.94312965685607 40.848671370902196, -73.9431073584992 40.84861384187593, -73.94309133269171 40.848577906137805, -73.94307424233581 40.84852633552809, -73.9430641508728 40.84848177149707, -73.9430558538939 40.84841888603762, -73.94305449019056 40.848362055306765, -73.94306150771989 40.848294601104314, -73.9431441673624 40.84784829942351, -73.9431998737782 40.84755102575573, -73.94320801956493 40.847506297813695, -73.94321614833873 40.847441201627824, -73.9432222054482 40.84737053487624, -73.9432243735089 40.84728537728852, -73.94320807457049 40.846415444119486, -73.94321152127182 40.846313220114176, -73.9432160813101 40.84621671118018, -73.94323039039875 40.84607518872236, -73.94326335772813 40.84589528023863, -73.94329402952006 40.84576919214957, -73.94334518645283 40.84554374475944, -73.94341004438567 40.8452952982755, -73.94369455923574 40.84421705609588, -73.94374041553051 40.844032304556315, -73.94376084569475 40.84392385556398, -73.94378336136218 40.84376934917526, -73.94379428392786 40.84364537464331, -73.94379969131043 40.84355102543716, -73.9438007633871 40.84341471114866, -73.94380043979479 40.84328403326255, -73.9438001476819 40.84326347036461)))",M092B,5531,M092B,M-12,M-12,M-12,M-12,"E/s Riverside Dr, W 168 St To W 177 St",112,10,33,10032,M,1.494,False,Strip,No,100004804,PARK,20100106000000.00000,19170801000000.00000,,DPR,False,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/M092B/,No,71,31,13,{ADCC2053-A311-4301-92A9-CC47E1F882C1} +"MULTIPOLYGON (((-74.16248855636586 40.6202379618399, -74.1626319122978 40.619645501106056, -74.16318834819526 40.61975611704496, -74.16378069348785 40.619873868905216, -74.16361831734324 40.62045988789347, -74.16248855636586 40.6202379618399)))",R114,5080,R114,R-01,R-01,R-01,R-01,"Jules Dr., Elson Ct., Regis Dr.",501,49,120,10314,R,1.6,False,Jennifer's Playground,Yes,100004655,PARK,20100106000000.00000,19710528000000.00000,250 REGIS DRIVE,DPR,True,Jennifer's Playground,Y,Jennifer's Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R114/,No,63,23,11,{E58E4385-5B95-4729-914B-D81535190E65} +"MULTIPOLYGON (((-73.8304587458853 40.83783058967418, -73.83111303317777 40.837574628386925, -73.83180273856706 40.838548666324684, -73.83110921054347 40.83881607156025, -73.8309066519112 40.83847804498514, -73.8304587458853 40.83783058967418)))",X121,4629,X121,X-10,X-10,X-10,X-10,Bradford Ave. bet. La Salle Ave. and Waterbury Ave.,210,13,45,10461,X,1.904,False,Bufano Park,Yes,100004200,PARK,20100106000000.00000,19380425000000.00000,1300 BRADFORD AVENUE,DPR,True,Bufano Park,Y,Bufano Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X121/,No,82,34,14,{051F6AF3-BCEF-417F-80CB-E8AB4B48C42C} +"MULTIPOLYGON (((-73.9610834973556 40.70052569694444, -73.96108166981182 40.700545039326656, -73.96105986197401 40.70058924349319, -73.96099442714441 40.70072876649251, -73.9608835529337 40.70095807578367, -73.96087446574057 40.70098017936569, -73.96086719656132 40.70099123068, -73.96085448301478 40.700996750998264, -73.96083633138645 40.700998128910456, -73.96081817746271 40.70099535815995, -73.96079458642048 40.700978770799125, -73.96072200997489 40.700915190614865, -73.96062039883371 40.70082673191251, -73.96061132834672 40.700818439595096, -73.96061133814224 40.70080186027048, -73.96061497282567 40.70079218911397, -73.96063858451689 40.70077561966412, -73.9607003306157 40.7007328088065, -73.96077297668349 40.70068171421804, -73.96084017373943 40.70063890694356, -73.96093279427916 40.70057261930398, -73.9609927248718 40.70053395543105, -73.96103631095778 40.70050633888061, -73.96105990958684 40.700507728252475, -73.9610834973556 40.70052569694444)))",B223NC,5785,B223NC,B-01,B-01,B-01,B-01,"Penn St., Wythe Ave., Williamsburg St. E.",301,33,90,11211,B,0.183,False,Penn Triangle,Yes,100004189,PARK,20100106000000.00000,19460514000000.00000,,DPR/CDOT,False,Penn Triangle,Y,Penn Triangle,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223NC/,No,50,26,7,{D7156AF3-D7A1-4E40-BC61-9F0F231EAD0A} +"MULTIPOLYGON (((-73.95277740492178 40.67658189042098, -73.95280148319182 40.6763462661796, -73.95286285441283 40.67635043821004, -73.95277740492178 40.67658189042098)))",B041,5526,B041,B-08,B-08,B-08,B-08,"Bedford Ave., Rodgers Ave., Bergen St.",308,36,77,11216,B,0.019,False,Grant Gore,Yes,100003696,PARK,20100106000000.00000,19141228000000.00000,,DPR,False,Grant Gore,Y,Grant Gore,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B041/,No,57,25,9,{8C075E0B-B6A9-4E4F-82EB-084A06AF02AC} +"MULTIPOLYGON (((-73.75758753049627 40.7214233426139, -73.75784694640332 40.721311280265766, -73.75786993750516 40.72134296994422, -73.75824555242308 40.72118162549595, -73.75834191001972 40.72131193570286, -73.75846482215441 40.721478156360966, -73.7585043548738 40.72153161719378, -73.75795572479804 40.72191396117702, -73.75758753049627 40.7214233426139)))",Q322,5334,Q322,Q-13,Q-13,Q-13,Q-13,Hillside Ave. bet. 207 St. and 208 St.,413,23,105,11427,Q,0.809,False,Bellaire Playground,Yes,100000226,PARK,20090423000000.00000,19630717000000.00000,207-00 HILLSIDE AVENUE,DPR/DOE,False,Bellaire Playground,Y,Bellaire Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q322/,No,33,14,5,{5B37C5F4-C0A3-41D8-856C-0E5BB825CDCD} +"MULTIPOLYGON (((-73.91058279806741 40.611182907179895, -73.91060395202824 40.61110247102184, -73.91267352699207 40.611655051592905, -73.91186062803384 40.61341242760099, -73.91176936041681 40.61333044524379, -73.91167637926301 40.61324692250533, -73.91158339599158 40.613163389783416, -73.9114903846154 40.613079839853796, -73.91135200323035 40.61295611051616, -73.91121606280095 40.61283571752683, -73.91099647888798 40.612639569898604, -73.91091710200699 40.612559461943896, -73.91088056634536 40.61251850761726, -73.9108118654744 40.61243267244334, -73.9107806487742 40.61238894950517, -73.91075119883709 40.612344241858935, -73.91072369610457 40.61229881169792, -73.91069817712311 40.61225272028736, -73.91067467373395 40.612206012679394, -73.91065319061317 40.61215872399928, -73.91062870778872 40.61209870500956, -73.91060681123012 40.61203812339853, -73.91058752213681 40.6119770269118, -73.91057083923478 40.61191547948673, -73.91055686488298 40.61185380809348, -73.91053673625949 40.61172883333854, -73.91052734363836 40.611603387858274, -73.91052866803032 40.61149776669846, -73.91053926675674 40.6113924499283, -73.91055914184388 40.61128765637356, -73.91056921690115 40.61123623451633, -73.91058279806741 40.611182907179895)))",B329,4883,B329,B-18,B-18,B-18,B-18,Strickland Ave. between Mill Ave. and E. 60 Pl.,318,46,63,11234,B,6.7,False,Lindower Park,Yes,100004240,PARK,20100106000000.00000,19631121000000.00000,6120 EAST 60 PLACE,DPR,True,Lindower Park,Y,Lindower Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B329/,No,59,19,8,{3080141F-4C01-4D64-9AF1-48E269160D51} +"MULTIPOLYGON (((-73.99256961791514 40.595181398102305, -73.99343378729738 40.594349984583374, -73.99359399089504 40.59444577863008, -73.9937369559987 40.59430996696584, -73.99381942101327 40.594359772140926, -73.99351196853114 40.594655576918385, -73.99344254824645 40.59461365004214, -73.99311259297593 40.594931101023825, -73.99348339748758 40.59515281423057, -73.9931100840294 40.59551256747575, -73.99256961791514 40.595181398102305)))",B349,6647,B349,B-11,B-11,B-11,B-11,Bath Ave. between 24 Ave. and Bay 37 St.,311,47,62,11214,B,1.157,False,Bath Playground (JHS 281),Yes,100004637,PARK,20100106000000.00000,19630715000000.00000,8781 CROPSEY AVENUE,DPR/DOE,False,Bath Playground,Y,Bath Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B349/,No,47,23,10,{E81C5C13-8212-4AA8-9028-BE5FDBD89B20} +"MULTIPOLYGON (((-73.96140283431592 40.707188996000454, -73.96173716393449 40.707487097618845, -73.96135039390902 40.70744701001815, -73.96140283431592 40.707188996000454)))",B090,6039,B090,B-01,B-01,B-01,B-01,"Lee Ave., Division Ave., Roebling St.",301,33,90,11211,B,0.135,False,Sobel Playground,Yes,100003875,PARK,20100106000000.00000,19140506000000.00000,,DPR,True,Sobel Playground,Y,Sobel Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B090/,No,50,26,7,{B5F9F939-D8BC-4EEF-849A-0ED264E1173D} +"MULTIPOLYGON (((-73.9738378046158 40.65072579861461, -73.97397704071228 40.65067164606571, -73.97422137523692 40.65104497008489, -73.97390515884305 40.65108026209435, -73.9738378046158 40.65072579861461)))",B255M,5137,B255M,B-07,B-07,B-07,B-07,Sherman St. at Ocean Pkwy.,307,39,72,11218,B,0.205,False,Park,Yes,100003842,PARK,20100106000000.00000,19581218000000.00000,318 SHERMAN STREET,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B255M/,No,44,21,9,{794DACDC-B3FB-489C-A54A-AE1E19001FD9} +"MULTIPOLYGON (((-73.81337955821465 40.823908511404035, -73.8133329441428 40.82390586683561, -73.81329542777571 40.8239059060541, -73.81327295076531 40.82390640365442, -73.81324272653428 40.82390707330562, -73.81322446142461 40.823907959528874, -73.81320482106372 40.82390805828753, -73.81318793642897 40.823908292979866, -73.81316337268706 40.823907239222706, -73.81314617166424 40.8239057426397, -73.81313167813278 40.82390425134222, -73.81311564052059 40.82390172917209, -73.81309496731213 40.82389773077447, -73.81306679017118 40.82389043159118, -73.81304679699291 40.823884047067814, -73.81302397372136 40.82387572908599, -73.81300645497582 40.823867919477905, -73.81298499393509 40.82385616649752, -73.81295847805201 40.82383942826311, -73.81293736307617 40.82382433588899, -73.81292302838683 40.823811891168454, -73.81290795971296 40.82379741463278, -73.8128938371647 40.82378119716718, -73.81286503099601 40.8237370980732, -73.81226176599121 40.82260061581948, -73.81304430665237 40.82236968121931, -73.81300619938385 40.8222938803468, -73.81368438975059 40.822098985659736, -73.81379504002722 40.822148125367754, -73.81382766403716 40.82213849859221, -73.81407503208031 40.82263466684333, -73.8143629992947 40.82296002681984, -73.81544483047534 40.82496706988476, -73.81511048845871 40.8251279439818, -73.81484187104205 40.82525719182815, -73.81428135724032 40.82459340991725, -73.81423087610345 40.824505295959185, -73.81422733845687 40.82449734066717, -73.81422486204819 40.82449098546803, -73.81422385570775 40.824488404821615, -73.81422038114675 40.82447696110329, -73.81420125221553 40.824423749596036, -73.81418268369762 40.82437914504397, -73.81415938278249 40.824332484229785, -73.81414229384113 40.82430439357964, -73.81413207783179 40.824288682340175, -73.81410821902485 40.82425546504548, -73.81408435838668 40.82422715455441, -73.81406402718585 40.82420464084962, -73.81402692773408 40.82416954265948, -73.81399573436428 40.82414411002042, -73.81395555593444 40.824113005050016, -73.81393717014579 40.824100224338316, -73.81393159998449 40.824096353116055, -73.81390364193086 40.82407847184259, -73.81387204866103 40.8240587278685, -73.81382537964389 40.82403246065499, -73.81377113760308 40.82400597317747, -73.81370595274191 40.8239778687123, -73.8136382843394 40.823953198296564, -73.813603907695 40.823943660493526, -73.81357876592239 40.82393693635696, -73.81356114194605 40.82393238556439, -73.81352945707268 40.82392550945987, -73.81348668682986 40.823918383989266, -73.81345016081553 40.82391400521716, -73.81341677359418 40.82391054731839, -73.81337955821465 40.823908511404035)))",X191A,5588,X191A,X-10,X-10,X-10,X-10,Throgg's Neck Exwy at Pennyfield Ave. and Elisworth Ave.,210,13,45,10465,X,9.395,False,Bicentennial Veterans Memorial Park,Yes,100005154,PARK,20100106000000.00000,19570619000000.00000,,DPR,Part,Bicentennial Veterans Memorial Park,Y,Bicentennial Veterans Memorial Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X191A/,Yes,82,34,14,{BB80FB95-7D28-427E-91D0-54CC67C683E9} +"MULTIPOLYGON (((-73.90611676721716 40.849794172669164, -73.90632872077406 40.850004928674544, -73.90600133139877 40.84993409349916, -73.90611676721716 40.849794172669164)))",X018,5842,X018,X-05,X-05,X-05,X-05,"Echo Pl. E. Tremont Ave., Grand Concourse",205,14,46,10453,X,0.16,False,Echo Triangle,Yes,100007206,PARK,20100111000000.00000,18990531000000.00000,,DPR,True,Echo Triangle,Y,Echo Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X018/,No,86,33,15,{9F0E61BE-DA20-42AF-9D69-AA1702C14630} +"MULTIPOLYGON (((-73.77137903477231 40.68952978838057, -73.77040558528478 40.68844608338358, -73.77027559061527 40.687907710395116, -73.76990234443126 40.68768847774913, -73.76945891034863 40.68755840392065, -73.76811290780289 40.686795150088734, -73.76940816704855 40.68551536837029, -73.76949327494495 40.68541077815839, -73.76953886865736 40.68535019715724, -73.76958644797095 40.68527778011774, -73.76963713714343 40.68519544288631, -73.76963997322714 40.68519083701691, -73.76966613024732 40.68512626918639, -73.76970217979729 40.685027930152444, -73.76972445790382 40.68495990286313, -73.76974053043286 40.68488769555948, -73.76975329249926 40.684783779831356, -73.76975592903479 40.68475404913745, -73.76975607134675 40.68475805672251, -73.76983463004531 40.68409176469438, -73.769836941646 40.68408281367657, -73.7698411693554 40.684074278027495, -73.76984719643137 40.68406639344897, -73.76985485414849 40.68405937662786, -73.76986393363643 40.68405342255826, -73.7698741823594 40.68404869642992, -73.76988531833614 40.68404532645252, -73.76989703367614 40.684043407465026, -73.76990900525693 40.68404299195156, -73.7699209006327 40.68404409185458, -73.77058682215387 40.68442549541646, -73.77173146281031 40.685081065249065, -73.77209984298533 40.68529204178398, -73.77560792215354 40.68774151705869, -73.77561306323588 40.68774510663628, -73.77540905564452 40.68799022455782, -73.77554347965632 40.68821196883885, -73.77520811000477 40.68832814630793, -73.77517426884745 40.688272321123335, -73.77498775709518 40.688336930641874, -73.77494652321917 40.68826891235087, -73.77485637824647 40.68829221428402, -73.77477281496063 40.68831112190114, -73.77468422093034 40.68832843379837, -73.77459758077326 40.68834272011739, -73.77449310342229 40.68835655898197, -73.77435646155467 40.68836920003714, -73.77430433843443 40.688379889610395, -73.7742479747827 40.68839424764977, -73.77421005490014 40.68840563682798, -73.77416244808695 40.68842203096452, -73.7741129478558 40.68844173616561, -73.77407502516847 40.68845882646315, -73.77403618703794 40.688478292313846, -73.7739954389082 40.6885010728033, -73.77353854687992 40.68874813447703, -73.77387659581085 40.68909434626253, -73.77401486538857 40.689066852253234, -73.77407781797118 40.68909438217338, -73.77425999413809 40.68908371465761, -73.77435194742012 40.68905186093168, -73.77435605327835 40.689058629158524, -73.77408171276807 40.68915366000283, -73.77380737266185 40.6892486892938, -73.77372626105686 40.68927678623698, -73.77366078022631 40.68929946754435, -73.7736443356868 40.689305164284434, -73.77362789114757 40.68931086012164, -73.77350915612656 40.689351989010646, -73.773539670987 40.68940501203022, -73.7735613875367 40.689442747674455, -73.77359037471858 40.68949312015594, -73.77362721710614 40.68955713919703, -73.77443741935797 40.6909649599642, -73.77227561397943 40.691695231847625, -73.77160653429083 40.69053256787215, -73.7718924983391 40.69034822845271, -73.77184382743079 40.68990160647494, -73.77137903477231 40.68952978838057)))",Q448,5391,Q448,Q-12,Q-12,Q-12,Q-12,"Merrick Blvd. bet. 115 Ave., 116 Ave., and Baisley Blvd.",412,27,113,11434,Q,56.831,False,Roy Wilkins Recreation Center / Park,No,100000416,PARK,20090423000000.00000,19450125000000.00000,117-05 MERRICK BOULEVARD,DPR,False,Roy Wilkins Recreation Center,Y,Roy Wilkins Recreation Center,Large Park,Community Park,http://www.nycgovparks.org/parks/Q448/,No,29,14,5,{E7DFD5E8-C26D-4D7A-B698-2FD4CE347741} +"MULTIPOLYGON (((-73.96611214505947 40.79937024735688, -73.96596628216467 40.79957374604278, -73.9657976582984 40.799502733186515, -73.96595249280122 40.79928118865378, -73.9655468842339 40.799111843596236, -73.96575557441672 40.79883301662206, -73.9664635644062 40.79913120902648, -73.96624923610942 40.79942798797233, -73.96611214505947 40.79937024735688)))",M238,4940,M238,M-07,M-07,M-07,M-07,"Amsterdam Ave., W. 104 St. and W. 105 St.",107,7,24,10025,M,0.715,False,Bloomingdale Playground,Yes,100003970,PLGD,20100106000000.00000,19631121000000.00000,905 AMSTERDAM AVENUE,DPR/DOE,False,Bloomingdale Playground,Y,Bloomingdale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M238/,No,69,30,13,{F6149F42-D644-4BA9-8C02-7BD1B57DE41B} +"MULTIPOLYGON (((-73.81497736272851 40.58979256532618, -73.81540304694951 40.5903743732559, -73.81470458618361 40.59072346957886, -73.81455549307536 40.59083102191352, -73.81445074469158 40.590902974069884, -73.81427678630945 40.59101757662259, -73.81415718900797 40.59109232495461, -73.81439862548378 40.591374197700425, -73.81409793633955 40.591523145657206, -73.8133197661819 40.59061463296499, -73.81497736272851 40.58979256532618)))",Q499,5417,Q499,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. Beach 89 St. Old Beach 88 St.,414,32,100,11693,Q,3.43,False,Park,No,100005165,PARK,20100106000000.00000,20091230000000.00000,88-02 BEACH CHANNEL DRIVE,DPR,False,Bay Breeze Park,Yes,Bay Breeze Park,,Undeveloped,http://www.nycgovparks.org/parks/Q499/,Yes,23,10,5,{0EE94C10-0049-4E8D-9D91-F0EE8D818742} +"MULTIPOLYGON (((-73.94263311848547 40.828178426924325, -73.94291302946434 40.82829602101968, -73.94248707912595 40.82854238477022, -73.94263311848547 40.828178426924325)))",M284,4966,M284,M-09,M-09,M-09,M-09,"Convent Ave., 151 St. and St. Nicholas Ave.",109,9,30,10031,M,0.134,False,Convent Garden,Yes,100004666,PARK,20100106000000.00000,19851226000000.00000,481 WEST 151 STREET,DPR,True,Convent Garden,N,Convent Garden,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/M284/,No,71,30,13,{19948AB3-5609-46BE-A897-BF0673700216} +"MULTIPOLYGON (((-74.00257386380441 40.7388106553349, -74.00316198747568 40.738823321634115, -74.00316000214822 40.73882507857854, -74.00279591246891 40.739148941062275, -74.00257386380441 40.7388106553349)))",M044,5671,M044,M-02,M-02,M-02,M-02,"8 Ave. To Greenwich Ave., Horatio St.",102,3,6,10014,M,0.227,False,Jackson Square,Yes,100003960,PARK,20100106000000.00000,18760504000000.00000,,DPR,False,Jackson Square,Y,Jackson Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M044/,No,66,27,10,{82B6D6BF-3448-44D3-A644-E7B0FD88E332} +"MULTIPOLYGON (((-73.89507279816732 40.67844850534338, -73.89544278137227 40.678393040827586, -73.89553034586233 40.678730272333915, -73.89537044502832 40.678754241934335, -73.8951460202629 40.67878788529766, -73.89478386452208 40.678842175441446, -73.89469566240857 40.67850504094089, -73.89507279816732 40.67844850534338)))",B402,5220,B402,B-05,B-05,B-05,B-05,Wyona St. to Vermont St. between Fulton St. and Jamaica Ave.,305,37,75,11207,B,0.591,False,George Walker Jr. Park,Yes,100004547,PARK,20100106000000.00000,19971112000000.00000,57 VERMONT STREET,DPR,False,George Walker Jr. Park,Y,George Walker Jr. Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B402/,No,54,18,7,{F821DC99-B2A4-483C-8EA0-08F96BE48184} +"MULTIPOLYGON (((-73.92859281898026 40.83258987959005, -73.92873650462666 40.832335414828016, -73.92945359280375 40.83256969345593, -73.92931353830014 40.8328176066252, -73.92859281898026 40.83258987959005)))",X296,4769,X296,X-04,X-04,X-04,X-04,W 164 St and Nelson Av bet. Ogden Av and Woodycrest Ave,204,8,44,10452,X,0.494,False,Taqwa Community Farm,No,100005098,PARK,20100106000000.00000,19980511000000.00000,90 WEST 164 STREET,DPR,False,Taqwa Community Farm,Y,Taqwa Community Farm,To Be Determined,Garden,http://www.nycgovparks.org/parks/X296/,No,84,29,15,{F8075B8C-CBF6-4787-8286-015F5D19C353} +"MULTIPOLYGON (((-73.93040313559483 40.69949232264688, -73.93045717557975 40.699437395236565, -73.93051294360168 40.69938071374506, -73.93080554067329 40.69954863297545, -73.93069573169645 40.69966024215331, -73.93040313559483 40.69949232264688)))",B577,14691,B577,B-04,,,B-04,Jefferson St. bet. Evergreen Ave. and Central Ave.,304,34,,11206,B,0.114,False,,,100037049,PARK,,20160209000000.00000,120 JEFFERSON STREET,DPR,False,El Garden,,EL Garden,,Garden,,No,53,18,7,{B0C84DAF-E3B7-48B4-B45D-2EF93840EF0F} +"MULTIPOLYGON (((-74.18524353355514 40.54055107430711, -74.18526900483822 40.54054578852952, -74.18530557823388 40.54054749094542, -74.18532910346056 40.54055470133469, -74.18534841075368 40.54056560439335, -74.18536681926038 40.54058398329083, -74.18537506778712 40.54059969681335, -74.18537833391115 40.54061500323559, -74.18537800702902 40.54062652423142, -74.18537389170774 40.5406416795751, -74.18536872291132 40.54065152710011, -74.18536012933184 40.540662490506044, -74.18493937448164 40.54115062353201, -74.18458312763853 40.54080658233599, -74.184564366271 40.54075270142467, -74.18522561571815 40.54055639382123, -74.18524353355514 40.54055107430711)))",R099,6082,R099,R-03,R-03,R-03,R-03,"Drumgoole Rd. E., Albee Ave., Ionia Ave.",503,51,123,10312,R,0.554,False,Park,Yes,100003818,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R099/,No,62,24,11,{03E73453-B96F-4321-96CE-D24C3DD0C9A3} +"MULTIPOLYGON (((-73.99980509221093 40.67452973076003, -73.99987558764154 40.67438205721265, -74.00000241288551 40.67458503875147, -73.99980509221093 40.67452973076003)))",B210C,5474,B210C,B-06,B-06,B-06,B-06,"Hamilton Ave., Court St. Garnet St.",306,39,76,11231,B,0.032,False,Cough Triangle,Yes,100004457,PARK,20100106000000.00000,19421230000000.00000,566 COURT STREET,DPR,True,Cough Triangle,Y,Cough Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B210C/,No,51,25,7,{847BD9CD-AB01-420E-ADA9-0F1AE179B4AF} +"MULTIPOLYGON (((-73.95437824599685 40.743442945721, -73.95447003408228 40.743170116731314, -73.95498631996422 40.74326949250312, -73.95525733707757 40.74332165731458, -73.95516484730493 40.74359658483263, -73.95437824599685 40.743442945721)))",Q045,5023,Q045,Q-02,Q-02,Q-02,Q-02,49 Ave. bet. 5 St. and Vernon Blvd.,402,26,108,11101,Q,0.518,False,Andrews Grove,Yes,100000014,PARK,20090423000000.00000,19001028000000.00000,5-32 49 AVENUE,DPR/HPD,True,Andrews Grove,Y,Andrews Grove,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q045/,No,37,12,12,{B13A1749-F0FA-42F1-9276-0AFDCEE49880} +"MULTIPOLYGON (((-73.9423247907791 40.83389012511457, -73.94238212445852 40.833914161852, -73.94220216643909 40.83416069019158, -73.94214483261223 40.834136653365725, -73.9423247907791 40.83389012511457)))",M398,6336,M398,M-12,M-12,M-12,M-12,W. 158 St. bet. Amsterdam Ave. and Broadway,112,7,33,10032,M,0.045,False,,No,100008373,PARK,20140724000000.00000,20021120000000.00000,,DPR,False,Dorothy K. McGowan Memorial Garden,,Dorothy K. McGowan Memorial Garden,,Garden,,No,71,31,13,{5B59D57B-E023-456C-8600-AB62C0FF4934} +"MULTIPOLYGON (((-73.90953685282669 40.82064732335916, -73.90952653859496 40.82067202399401, -73.90950866557557 40.820714822280266, -73.90948135354289 40.8207802282262, -73.90945404145772 40.820845633264454, -73.90909438276863 40.82075860093955, -73.90912169517279 40.82069319508505, -73.90914900870737 40.820627790124796, -73.90917719628644 40.82056029129067, -73.90953685282669 40.82064732335916)))",X313,5728,X313,X-01,X-01,X-01,X-01,Eagle Av bet. E 158 St and E 159 St,201,17,40,10456,X,0.17,False,El Batey Borincano Garden,No,100004837,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,El Batey Borincano Garden,Y,El Batey Borincano Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X313/,No,79,32,15,{A980BCC2-527D-44AA-9EE4-24F1DA77B3C5} +"MULTIPOLYGON (((-73.94899005831826 40.693681645387485, -73.94935134042842 40.69363993380098, -73.94936206167515 40.69369451230591, -73.9493752060387 40.693761427101755, -73.94901432084346 40.693803093913, -73.94900095675693 40.69373620419311, -73.94899005831826 40.693681645387485)))",B488,5277,B488,B-03,B-03,B-03,B-03,Marcy Ave. and Willoughby Ave.,303,36,79,11206,B,0.104,False,Red Gate Garden,No,100004021,PARK,20100106000000.00000,20021120000000.00000,604-606 MARCY AVENUE,DPR,False,Red Gate Garden,N,Red Gate Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B488/,No,56,25,8,{A3ED8797-A9F4-4232-8885-DB4170401D4D} +"MULTIPOLYGON (((-74.00115974811168 40.73069711194094, -74.00133718424686 40.730446304912874, -74.0015311604413 40.73054007424137, -74.00130751695578 40.73093083010799, -74.00113222343533 40.73084554211413, -74.00121712082391 40.73072502530846, -74.00115974811168 40.73069711194094)))",M125B,4655,M125B,M-02,M-02,M-02,M-02,"Minetta Lane, W. 3 St. and Ave. of Americas",102,1,6,10012,M,0.206,False,Minetta Playground,Yes,100003888,PLGD,20100106000000.00000,19530827000000.00000,304 6 AVENUE,DPR,True,Minetta Playground,Y,Minetta Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M125B/,No,66,27,10,{73AA6EE7-9CF2-4E5F-BA0A-43125C5B4578} +"MULTIPOLYGON (((-73.9697116094849 40.6194838422322, -73.96981230092138 40.61947206559482, -73.9702309616795 40.62168987027691, -73.97051898504282 40.623212581099494, -73.97067528740082 40.62405817258517, -73.97056543513621 40.62407102104941, -73.9697116094849 40.6194838422322)), ((-73.96937362506385 40.619526943451774, -73.96946516198892 40.61951623719919, -73.96981921892231 40.62132037126656, -73.97031341147101 40.623936290666606, -73.9703429202794 40.62408276788133, -73.970228491466 40.62409615155291, -73.96937362506385 40.619526943451774)), ((-73.9748210424263 40.6483223285634, -73.97473649628934 40.647897249435125, -73.97481286859873 40.647904207377415, -73.97481620258031 40.647923225241804, -73.97491333708716 40.648392666559765, -73.97498805439749 40.64876327828647, -73.97506026767512 40.649154794022586, -73.97508516152897 40.64931254039068, -73.97508940818693 40.64937331724499, -73.97508595793776 40.649434123949746, -73.97507484289429 40.64949439498614, -73.97505616610681 40.649553572053485, -73.97503010156287 40.649611106770564, -73.97499689064016 40.64966646337697, -73.97495684092029 40.649719131340035, -73.97491032500955 40.649768619051386, -73.97486650577673 40.649815341843514, -73.97481753505629 40.649858997228534, -73.97476378303793 40.649899256592235, -73.97470565301013 40.64993581744275, -73.97465454448106 40.64996692537645, -73.97460035714803 40.649994845675806, -73.97454343041075 40.650019402810685, -73.973620049286 40.6503840889314, -73.97311592958145 40.65057972219174, -73.97299114974386 40.650621503984176, -73.97294623034936 40.650632895779275, -73.9729063039176 40.650638588457404, -73.97284392240681 40.650638573745034, -73.97281454975021 40.65060313594485, -73.97445461556588 40.64997141975173, -73.97445467469132 40.64997139635142, -73.974650774088 40.64989209423737, -73.97472110104555 40.649839807655944, -73.97478452968424 40.649782631509645, -73.9748404769233 40.649721091584425, -73.97488915737179 40.649666162545905, -73.974930081853 40.64960767925413, -73.97496280795507 40.64954627378436, -73.97498125937594 40.649489247119156, -73.97499305586632 40.649431205021, -73.97499810741799 40.64937259773112, -73.97499637486175 40.649313880003334, -73.97498786986884 40.64925550480019, -73.9748210424263 40.6483223285634)), ((-73.97197448420502 40.63334487072747, -73.97206508694408 40.633291809868304, -73.97262137653908 40.63604163370162, -73.97249594846063 40.63605221998632, -73.97197448420502 40.63334487072747)), ((-73.97230457439561 40.633171585448615, -73.9724412248021 40.63315340077805, -73.9726252069102 40.63433758242867, -73.97275472973173 40.6350454923388, -73.97293881654728 40.63599805078735, -73.97283974096456 40.636011039926906, -73.97230457439561 40.633171585448615)), ((-73.96828752152129 40.61204798135332, -73.96840098900007 40.61203809336072, -73.96880347826455 40.61414677177638, -73.96886972821716 40.61449775160228, -73.9687475777362 40.61450865438404, -73.96828752152129 40.61204798135332)), ((-73.96878793463 40.61471207413469, -73.96891607744104 40.614697086366455, -73.96931639360626 40.61687062723008, -73.96920197695047 40.616884009889965, -73.96878793463 40.61471207413469)), ((-73.96796779922074 40.612092145213865, -73.96806324713933 40.61208098099566, -73.96849805284026 40.61428402244177, -73.96853498027424 40.61453352010643, -73.9684258468423 40.614542900626084, -73.96796779922074 40.612092145213865)), ((-73.96603723572872 40.60018889109552, -73.96615736292803 40.6001680722372, -73.96656634421414 40.602353821524126, -73.96644922012676 40.602367521254806, -73.96603723572872 40.60018889109552)), ((-73.97025336394302 40.624313610183975, -73.97038303409367 40.6242960015729, -73.97078032442285 40.626483707640446, -73.97067380809928 40.62649426523062, -73.97025336394302 40.624313610183975)), ((-73.96486059309792 40.59125557080856, -73.96499866464653 40.59123978625479, -73.96453516255293 40.593236094670864, -73.964405584375 40.59325125093111, -73.96486059309792 40.59125557080856)), ((-73.96476829037485 40.5934278841128, -73.96487531026943 40.59341253774451, -73.96518539659031 40.59506078253067, -73.96528280387687 40.59558860658373, -73.96516119659418 40.59559946070257, -73.96476829037485 40.5934278841128)), ((-73.96746077267824 40.6095523614561, -73.96756489531343 40.60954018341658, -73.96803665420241 40.611860732219704, -73.96792818993494 40.61187341826788, -73.96789423110006 40.611704795184394, -73.96746077267824 40.6095523614561)), ((-73.96844716318014 40.614741221917555, -73.96857002765415 40.614723282078806, -73.96896926787389 40.61691479824935, -73.96886858132798 40.61692657415171, -73.96844716318014 40.614741221917555)), ((-73.96781484724025 40.60952448464746, -73.96792831168112 40.60951459801981, -73.96829345987744 40.61148211973684, -73.96835536641107 40.611833607552256, -73.9682599177134 40.61184477201298, -73.96781484724025 40.60952448464746)), ((-73.9656955573688 40.600211933937715, -73.96580900629837 40.600202048492505, -73.96622031746332 40.60237737255416, -73.96611253411862 40.60239336381408, -73.9656955573688 40.600211933937715)), ((-73.97073092656225 40.62670421348297, -73.9708275203167 40.626689848626256, -73.97121637343517 40.62876444971609, -73.9712322257934 40.62887415048661, -73.9711166964703 40.628885602246896, -73.97073092656225 40.62670421348297)), ((-73.9734261561789 40.64103473589246, -73.97353382658257 40.641024258877, -73.9739534834353 40.64322219671163, -73.97384668405947 40.64323350819627, -73.9734261561789 40.64103473589246)), ((-73.96649349982549 40.602565395091844, -73.96659960704122 40.602563136850485, -73.967011324677 40.604674114489185, -73.9668941954289 40.60468781466988, -73.96649349982549 40.602565395091844)), ((-73.96733345526145 40.58051375595579, -73.96745455819212 40.580511294973036, -73.96693962867391 40.582664763499054, -73.96693805753462 40.58267714885163, -73.96682626502083 40.582786803130375, -73.96682446465468 40.58278742397197, -73.9668225569193 40.58278781424842, -73.96682059142744 40.582787964068324, -73.96681862015116 40.58278786984456, -73.96681669505966 40.58278753339318, -73.96681486693761 40.582786963734144, -73.96681318302292 40.58278617618995, -73.96681168818873 40.58278519148562, -73.96681042258125 40.58278403484745, -73.96680941807547 40.58278273780297, -73.96680870300193 40.58278133458028, -73.96680829505966 40.582779861205495, -73.96680820485976 40.58277835640414, -73.96680843474427 40.5827768607005, -73.96706447241041 40.5817215006085, -73.96733345526145 40.58051375595579)), ((-73.96523171391554 40.591213142087305, -73.96534977660954 40.591199644688054, -73.96488934441682 40.593194667714975, -73.96476342224096 40.59320602618948, -73.96523171391554 40.591213142087305)), ((-73.97378296832709 40.64099924281173, -73.97388961607002 40.64099170992534, -73.97430558693614 40.64317619910492, -73.9741983508995 40.64318589889098, -73.97378296832709 40.64099924281173)), ((-73.97421095108511 40.64515217859227, -73.97427439333757 40.64512286112764, -73.97429002971093 40.64513508645537, -73.97430336841627 40.645148800724456, -73.97431416955312 40.64516375533912, -73.97432223578986 40.64517967920005, -73.97448506948032 40.64603406658932, -73.97468424437393 40.64717250301407, -73.97472159188541 40.64738346563647, -73.97476785178999 40.647647379743496, -73.9746873070839 40.647638359567516, -73.97466415332022 40.64751648649414, -73.97441016750513 40.646163282378104, -73.97421095108511 40.64515217859227)), ((-73.97288133866931 40.636231544511666, -73.97298977740854 40.63622262608082, -73.97339995814048 40.63838934479756, -73.97329487264845 40.63839956384121, -73.97288133866931 40.636231544511666)), ((-73.97298159917256 40.63864437051543, -73.97308606613146 40.63863592023218, -73.97349612458524 40.64082236835989, -73.97339006104062 40.64083291235042, -73.97298159917256 40.63864437051543)), ((-73.9733347539682 40.63861556070894, -73.97343953056308 40.63860411955378, -73.97385218507593 40.64078337007261, -73.973746898794 40.64079574802466, -73.9733347539682 40.63861556070894)), ((-73.96926206971428 40.61711258265295, -73.96936803634608 40.617103757919296, -73.96976348451379 40.619206475741855, -73.96977683349485 40.6192727395563, -73.96967156623381 40.619285051665884, -73.96926206971428 40.61711258265295)), ((-73.96558714118585 40.58964569218409, -73.96575002785028 40.58896828169918, -73.96585942010363 40.588974680053205, -73.96540066953902 40.59097043006277, -73.96528633888738 40.590970395580385, -73.96535796441172 40.59064575519, -73.96558714118585 40.58964569218409)), ((-73.96526029288634 40.59796157505618, -73.96537307227544 40.59794838401965, -73.96576707125773 40.59999374789496, -73.96565862701821 40.60000643181688, -73.96526029288634 40.59796157505618)), ((-73.9725312596776 40.63625890382951, -73.9726314184785 40.63624879957599, -73.97304198265094 40.6384299378627, -73.97293636542243 40.63843932167318, -73.9725312596776 40.63625890382951)), ((-73.96625654486695 40.586762336568405, -73.96638018241491 40.58674778613177, -73.96625187263787 40.58727062665838, -73.96613238261264 40.587811421550484, -73.96601881330497 40.58828040670829, -73.96590964762278 40.58877183498161, -73.96579778893245 40.58877067968833, -73.96625654486695 40.586762336568405)), ((-73.97125680557345 40.62765878280394, -73.97136795750853 40.627641168455554, -73.97175605632984 40.62978299830682, -73.97166804496321 40.62982884641822, -73.97125680557345 40.62765878280394)), ((-73.96562665392216 40.59792887738458, -73.96573075876657 40.59791670009205, -73.96611042364579 40.599956972367934, -73.9659983056606 40.599973470139616, -73.96562665392216 40.59792887738458)), ((-73.9651634637752 40.58999258024173, -73.96538108832571 40.588997594834034, -73.96550140750364 40.589005607856656, -73.96503089880537 40.59101362428525, -73.96497743192118 40.591019480312966, -73.96491704341553 40.591019461891406, -73.9651634637752 40.58999258024173)), ((-73.96892445916113 40.61713422234873, -73.96901141571959 40.61712405102725, -73.96941004584902 40.61917285135145, -73.96943216463697 40.619305913653264, -73.96932232113593 40.61931876093637, -73.96892445916113 40.61713422234873)), ((-73.96588651077386 40.586805883780706, -73.96600007923661 40.58679251855364, -73.9655493713411 40.58879655765752, -73.96543194379271 40.588782534561744, -73.96556066190551 40.58825101139805, -73.96573536602429 40.587492888671925, -73.96588651077386 40.586805883780706)), ((-73.96521236100824 40.59580466750836, -73.96532513676377 40.59579147651612, -73.9656941720044 40.59769085343339, -73.96558139311419 40.59770404388481, -73.96521236100824 40.59580466750836)), ((-73.96615947630187 40.60260446363227, -73.96625924964943 40.602592793383934, -73.96666427679492 40.604714707137106, -73.9665645003476 40.60472637683409, -73.96615947630187 40.60260446363227)), ((-73.96818358137465 40.57839677324903, -73.96862627872568 40.57645394548452, -73.96872874656421 40.57646265537715, -73.96853932969206 40.5773377115583, -73.9683339700349 40.5782040828129, -73.96828832757605 40.57840895658432, -73.96818358137465 40.57839677324903)), ((-73.96825965500368 40.576450372355275, -73.96838262246195 40.576450406263476, -73.96794904056496 40.57836371735308, -73.96783973997756 40.57834979622296, -73.96806336481384 40.577398352110635, -73.96825965500368 40.576450372355275)), ((-73.96739976707158 40.60735298140644, -73.9675082240953 40.607340295851124, -73.9678713723193 40.60925390365885, -73.9677672513681 40.60926608197668, -73.96739976707158 40.60735298140644)), ((-73.97060829536642 40.624283760980006, -73.97072131869079 40.6242634020445, -73.97106071875422 40.62590147536718, -73.97096031998709 40.626031019561886, -73.97060829536642 40.624283760980006)), ((-73.96487770481959 40.595840425428314, -73.96498614362285 40.59582774223853, -73.96534415279254 40.59773856075643, -73.96524438772 40.59775023021626, -73.96487770481959 40.595840425428314)), ((-73.96749087626192 40.57986497124438, -73.9677893695188 40.578514989574565, -73.9679104592165 40.578532492728854, -73.96751360494157 40.580239302102825, -73.96738922238093 40.58025673522976, -73.96749087626192 40.57986497124438)), ((-73.96776892871748 40.580179481963214, -73.96813627872213 40.57855751000676, -73.96825736977414 40.57857251654269, -73.96789331463383 40.580154562369785, -73.96776892871748 40.580179481963214)), ((-73.96706438938831 40.6073854396502, -73.96716917349885 40.60737656797206, -73.9675216383312 40.609281273073904, -73.9674392081297 40.60929091414897, -73.96706438938831 40.6073854396502)), ((-73.96709523016183 40.60573033092921, -73.96720269589977 40.605690687355626, -73.96747061706347 40.607131488453916, -73.9673578225759 40.607144681536944, -73.96709523016183 40.60573033092921)), ((-73.96675915074137 40.60584747765891, -73.96686161322158 40.6058050350362, -73.9671389123656 40.607160133345104, -73.96702244591863 40.607177139658994, -73.96675915074137 40.60584747765891)), ((-73.97387970228236 40.64342004814711, -73.97398781251627 40.643410043580445, -73.97425297884719 40.64481780674024, -73.97415202286577 40.644854234363805, -73.97387970228236 40.64342004814711)), ((-73.97166639983749 40.631685402892856, -73.97175864714801 40.63164899057344, -73.97202792055417 40.63305700845087, -73.97191860095984 40.63306999430726, -73.97166639983749 40.631685402892856)), ((-73.96460463334529 40.594478526086604, -73.96472022960504 40.594469076427, -73.96494238063073 40.59562577947228, -73.96483059287316 40.5956408894053, -73.96460463334529 40.594478526086604)), ((-73.9659420021549 40.586566468156356, -73.96615735630803 40.58564107185277, -73.96621577308426 40.58567414186152, -73.96632091868187 40.585183290114266, -73.9662632281757 40.58515127758531, -73.96628717413884 40.58505796245046, -73.9662878538266 40.58505695406343, -73.96628874489424 40.58505604749757, -73.96628982370589 40.585055267060106, -73.96629105953858 40.58505463705617, -73.96629241576795 40.585054172783856, -73.96629385458859 40.58505388954099, -73.9662953358367 40.58505379452004, -73.96629681816962 40.58505389041034, -73.96629825670392 40.58505417449727, -73.96629961246428 40.585054639565115, -73.9663008476607 40.58505527029392, -73.96630192568428 40.58505605136408, -73.96630281583658 40.58505695845245, -73.9663034945063 40.585057967237944, -73.9663611162321 40.58522640815431, -73.96605697634631 40.58658230996822, -73.9659420021549 40.586566468156356)), ((-73.96721160370126 40.58261610778951, -73.96743233769199 40.58165307740575, -73.96755175031419 40.5816672746328, -73.9672775807878 40.58280425953276, -73.96727741039695 40.582804885348295, -73.96727710182854 40.58280547870558, -73.96727666453964 40.58280602339798, -73.96727611271143 40.58280650412052, -73.96727545934442 40.58280690466751, -73.96727472688553 40.58280721423906, -73.9672739354186 40.58280742383568, -73.96727310856959 40.58280752716043, -73.96727227114408 40.58280752061822, -73.96727144794522 40.58280740601721, -73.96727066141425 40.58280718426429, -73.96726993635068 40.58280686437176, -73.96726929401109 40.58280645445046, -73.967268753288 40.58280596621248, -73.96726833070984 40.58280541497156, -73.96726803689893 40.58280481694005, -73.96726193916331 40.58279417281229, -73.96724001334546 40.582751460121266, -73.96722420661213 40.582707204773314, -73.96721469941735 40.58266191381727, -73.96721160370126 40.58261610778951)), ((-73.97423744355832 40.64339270716582, -73.9743448441193 40.64338027070528, -73.97459065837708 40.6446709668219, -73.97450891549207 40.6446822007055, -73.97423744355832 40.64339270716582)), ((-73.96748021508515 40.581428503904824, -73.96769827169115 40.58049784508621, -73.96781238126748 40.580497877111895, -73.96760759392792 40.581430563365785, -73.96748021508515 40.581428503904824)), ((-73.9666396395619 40.585554516787305, -73.96664083143199 40.585554416274704, -73.9666420303159 40.585554462549524, -73.96664320195919 40.58555465560172, -73.96664431919713 40.585554990020285, -73.9666453501422 40.58555545679077, -73.96664626881358 40.58555604509939, -73.96664705277769 40.58555673692906, -73.96664767841845 40.58555751696409, -73.96664813275352 40.58555836358815, -73.96660416018327 40.58574820369831, -73.96642738640104 40.58653070533254, -73.96630715869699 40.5865326197738, -73.96646081621053 40.58589235377799, -73.96648212992979 40.58577892194523, -73.96649905280007 40.585729642126374, -73.96652320954847 40.58568214654886, -73.966554286838 40.585637050174526, -73.96659188276068 40.58559493822122, -73.96663551038753 40.58555635445751, -73.96663553168177 40.58555628872546, -73.9666364037133 40.585555660413235, -73.96663739616854 40.58555514740296, -73.96663848423573 40.585554763195326, -73.9666396395619 40.585554516787305)), ((-73.97114151022862 40.62897086517619, -73.9712508198965 40.62896568755742, -73.97142802663782 40.62994166985154, -73.97133237454149 40.629957261050876, -73.97114151022862 40.62897086517619)), ((-73.96441511328322 40.593452342452856, -73.9645230958192 40.593439712687825, -73.96469904172399 40.594335803346915, -73.96458774456175 40.59433196979724, -73.96441511328322 40.593452342452856)), ((-73.97105809782411 40.62667431079815, -73.97117387892085 40.62665669780119, -73.97133097832813 40.627478853156376, -73.97122909249192 40.627489412414825, -73.97105809782411 40.62667431079815)), ((-73.96669819698776 40.584879483265084, -73.9667668645909 40.58465426327164, -73.96685518282708 40.58466469433396, -73.96669520461151 40.58535173139216, -73.966682637361 40.585395585048964, -73.96666646815953 40.58543806346025, -73.96664150390554 40.58547799083427, -73.96660839949074 40.585514314643476, -73.96654608385207 40.58557733586898, -73.96654025065901 40.58558300656844, -73.96653985594318 40.58558340268389, -73.96653937857207 40.585583742942774, -73.96653883272536 40.58558401654302, -73.96653823494371 40.58558421538463, -73.96653760058537 40.58558433406896, -73.96653694973187 40.58558436990037, -73.96653630010198 40.585584321082884, -73.96653567059425 40.585584188522596, -73.96653507892391 40.58558397762774, -73.96653454280644 40.58558369290615, -73.96653407877403 40.585583343367844, -73.96653369745242 40.58558293892167, -73.9665334130105 40.5855824903781, -73.9665332313465 40.5855820130477, -73.96653315836092 40.585581517738454, -73.96653319522643 40.58558102156069, -73.96653334311839 40.58558053622155, -73.96669819698776 40.584879483265084)), ((-73.96834999136728 40.576157291913255, -73.96856256840397 40.57524899402853, -73.96870852706363 40.57530113732058, -73.96869365218514 40.57532651454885, -73.9686544170914 40.57539620173865, -73.96862048390207 40.57546748969432, -73.96859196375749 40.57554014341403, -73.9685689524483 40.57561392338853, -73.96843942142335 40.576160953734224, -73.96834999136728 40.576157291913255)), ((-73.96681834452886 40.584445699759165, -73.96703476285994 40.583491501389915, -73.96712281030612 40.5835043140557, -73.96690219963604 40.58446170824081, -73.96681834452886 40.584445699759165)), ((-73.96886729471626 40.575524022426954, -73.96891322952781 40.575434052666054, -73.96897550779184 40.57544156816844, -73.96878341733671 40.57617503736789, -73.96868901050607 40.57617117274094, -73.96878852469511 40.57573395921718, -73.96880930599117 40.57566283063847, -73.9688355938088 40.575592768869846, -73.96886729471626 40.575524022426954)), ((-73.96659142895919 40.60492628071709, -73.96669620927295 40.60491740946799, -73.96682218166126 40.60558584655265, -73.96673448386194 40.605616851384994, -73.96673056681482 40.605617309517335, -73.96659142895919 40.60492628071709)), ((-73.966939809841 40.60489230120541, -73.9670395864707 40.60488063118283, -73.96716173363218 40.6054657973458, -73.96704602280592 40.60550670645285, -73.966939809841 40.60489230120541)), ((-73.97198414864731 40.63153974069651, -73.97208665116287 40.63148511310424, -73.97220254752577 40.63207851140937, -73.97209663035103 40.63212793327122, -73.97198414864731 40.63153974069651)), ((-73.971697842436 40.63003802824054, -73.97181058510972 40.62999641591387, -73.97190599393983 40.630558579573034, -73.97180349929677 40.6305975920033, -73.971697842436 40.63003802824054)), ((-73.97151983520251 40.63092803975215, -73.97161891567038 40.63088642423199, -73.97173139856585 40.63146160470121, -73.97162207046112 40.63150061438556, -73.97151983520251 40.63092803975215)), ((-73.97137667530248 40.630204508828186, -73.97147234331719 40.63015248257597, -73.97158824187522 40.63072245907597, -73.97148232750982 40.63076927787814, -73.97137667530248 40.630204508828186)), ((-73.97213413266195 40.632304912425774, -73.97223661674157 40.63229712971507, -73.97234568481117 40.632887923673664, -73.97225343502636 40.63292693895961, -73.97213413266195 40.632304912425774)), ((-73.97310370187141 40.65084354394194, -73.9744847687656 40.65030466476362, -73.97451227070059 40.65034277626071, -73.9731211993512 40.65087593784505, -73.97310370187141 40.65084354394194)), ((-73.97516551437258 40.64942647955236, -73.97520053657735 40.64942458161426, -73.97525301028 40.64958082641838, -73.97524800174298 40.6495941620062, -73.97519431325443 40.64966516345544, -73.97513441972103 40.64973322514881, -73.97506859791348 40.649798032856076, -73.97499715179434 40.64985928766133, -73.97492041015326 40.64991670686337, -73.97483872897035 40.64997002667791, -73.9747524831414 40.65001899953447, -73.97466480322065 40.650064324914105, -73.97439313922771 40.65017454663084, -73.97422220284625 40.650240251628624, -73.97404919504368 40.65030805140881, -73.9740431067722 40.650290911385326, -73.97463152172402 40.65005824808957, -73.9746951213201 40.65002802722363, -73.97474874143829 40.64999614717951, -73.97479008271765 40.64997130826777, -73.97485856912346 40.649924342357615, -73.9749213299021 40.64987294461168, -73.97497787187277 40.649817518363754, -73.9750277526885 40.649758497576435, -73.97507057965348 40.64969634684024, -73.97510601681965 40.64963155327024, -73.97513378616908 40.64956462560562, -73.97515367116223 40.64949608790628, -73.97516551437258 40.64942647955236)), ((-73.96912876743279 40.57490001334872, -73.96899454499895 40.57499780117256, -73.96890983580631 40.575065073570144, -73.96883943734221 40.575135987906236, -73.96882034235568 40.57516235548392, -73.96880602923522 40.57516598881651, -73.96878336937976 40.57516325497282, -73.96869155093586 40.5751304914203, -73.96865100796872 40.575115929690064, -73.96861284936547 40.57510409718601, -73.96860688785856 40.5750986392795, -73.96860331358931 40.57509227249545, -73.96860689426993 40.57508499813703, -73.96862849672081 40.57505835031575, -73.9686596243101 40.57503092343411, -73.968689078075 40.575011733184866, -73.96872165053438 40.57499573973851, -73.96875674869192 40.57498323289995, -73.96875681719933 40.57498321310703, -73.96876226353027 40.574981653078744, -73.96893291813426 40.574936414682526, -73.96910621622443 40.57489745700118, -73.96912339936576 40.57489325437053, -73.96912426747355 40.5748930979126, -73.96912515678733 40.5748930540259, -73.96912604368666 40.574893123604646, -73.96912690337093 40.57489330574164, -73.96912770986069 40.57489359502671, -73.96912844308302 40.57489398244927, -73.96912907942257 40.574894458097184, -73.96912960471349 40.57489500845877, -73.96913000006735 40.57489561731955, -73.96913025840553 40.57489626846816, -73.9691303691079 40.574896942990705, -73.96913033100205 40.5748976219759, -73.96913014409682 40.574898286512756, -73.96912981430548 40.57489891859229, -73.96912935108482 40.57489949930608, -73.96912876743279 40.57490001334872)), ((-73.97183758621745 40.63076936544392, -73.97192702706052 40.63073635356076, -73.97204573455163 40.6313055314878, -73.97195007845713 40.63132632820042, -73.97183758621745 40.63076936544392)), ((-73.96659892984358 40.58464532640649, -73.96665359216541 40.58464534228407, -73.96649115723187 40.58530921147676, -73.96640803602538 40.58567563546822, -73.96638490210196 40.58572314662976, -73.96638414550718 40.58572440173826, -73.96638312083981 40.58572554150129, -73.96638185882759 40.585726532608476, -73.96638039492036 40.58572734715401, -73.96637877165324 40.58572796083609, -73.9663770362826 40.585728356558654, -73.9663752372431 40.58572852262906, -73.96637342769037 40.5857284554607, -73.9663716584156 40.585728155068594, -73.96636998138628 40.58572763137352, -73.96636844502406 40.58572689879819, -73.96636709302219 40.585725978967886, -73.96636596552797 40.58572489800955, -73.96636509205541 40.585723687450184, -73.96636450093587 40.585722381517954, -73.96636950114264 40.58567268668779, -73.96659892984358 40.58464532640649)), ((-73.96642418266833 40.58445677425753, -73.96666160723653 40.58343225182176, -73.96670772801521 40.58343865891381, -73.96646401681097 40.584458384320776, -73.96642418266833 40.58445677425753)), ((-73.96866785726766 40.57482408151616, -73.96928588728296 40.57469305190497, -73.96927468911056 40.5747391728733, -73.96861880655061 40.57488749386656, -73.96858497633305 40.574898508840775, -73.96855409071502 40.574913743568125, -73.96852378942171 40.574942054062376, -73.96849975648423 40.57497366849069, -73.96846998235095 40.57502097027527, -73.96851034580186 40.57485747492214, -73.96866785726766 40.57482408151616)), ((-73.9755217877576 40.64894581188949, -73.97555303420984 40.648935242856254, -73.97557737619866 40.64902090706873, -73.97560738546579 40.649105522473825, -73.97564298289585 40.64918887112504, -73.97568407991159 40.64927073957577, -73.97565809525332 40.649302299022914, -73.97563776120482 40.64933617849402, -73.97562342913452 40.64937179453116, -73.9756153451975 40.64940853393626, -73.97559451407152 40.64941778323671, -73.97552342057256 40.649226077643206, -73.97553144176679 40.64913805285028, -73.97553163965041 40.64904981657123, -73.9755240129245 40.648961771337085, -73.9755217877576 40.64894581188949)), ((-73.96718390517998 40.58280293696147, -73.96718549740454 40.58280284106021, -73.96718708716287 40.582802956781265, -73.96718862721109 40.58280328050915, -73.96719007030802 40.58280380322507, -73.96719137275993 40.5828045078066, -73.96719249559933 40.582805373530604, -73.96719340458554 40.582806375172666, -73.96719407374897 40.58280748120697, -73.96719448066426 40.58280865830778, -73.96720708052628 40.58283623144114, -73.96722335295865 40.582872635256734, -73.96723417032347 40.58291020009058, -73.96723939583191 40.58294845222963, -73.96723896238522 40.58298691077582, -73.96717238344237 40.58328053907024, -73.96709502175193 40.583270900247086, -73.96713074107717 40.58310489170833, -73.96717682088222 40.58280737091813, -73.96717751356998 40.58280627337747, -73.96717844479504 40.58280528396785, -73.9671795861953 40.58280443239836, -73.96718090468609 40.5828037447748, -73.9671823589177 40.58280324089686, -73.96718390517998 40.58280293696147)), ((-73.97537650380117 40.65003916143879, -73.97532272535113 40.650036324988825, -73.97526893774683 40.65003905911328, -73.97521613178637 40.65004731449726, -73.97516527820814 40.65006093736318, -73.97516277781394 40.65005712673349, -73.97525763085712 40.649998314565664, -73.97534701367891 40.649934726602716, -73.97543051235301 40.6498666563376, -73.97552799384867 40.6500800682643, -73.97548009151367 40.65006123634437, -73.97542928351858 40.65004751602185, -73.97537650380117 40.65003916143879)), ((-73.97099346277854 40.626219132132306, -73.97109693343332 40.62621264833276, -73.97114155251053 40.626448514709246, -73.97103040403339 40.626462600604455, -73.97099346277854 40.626219132132306)), ((-73.96706356086312 40.58271247372507, -73.96706458257219 40.582712425389666, -73.96706560303878 40.58271250132619, -73.96706659273492 40.582712700625635, -73.96706752922123 40.582713018778975, -73.96706838651747 40.582713445873004, -73.96706914336765 40.582713972896386, -73.96706977970001 40.582714584534415, -73.96707449437368 40.582756191887015, -73.96697324377779 40.58325011273586, -73.9669150011841 40.58324329072095, -73.96704083886921 40.58274923379557, -73.96706073514972 40.58271334372152, -73.96706161175413 40.582712939637624, -73.96706256153405 40.58271264723968, -73.96706356086312 40.58271247372507)), ((-73.97456860959706 40.64499687655149, -73.97461297693306 40.64497465706582, -73.97468636660213 40.64538369844553, -73.97468984312408 40.645450387973355, -73.97469448282457 40.64552685918313, -73.9746983753666 40.6455689979788, -73.97469809134247 40.64556974624677, -73.97469764418538 40.6455704476519, -73.9746970469083 40.64557108058466, -73.97469631725181 40.64557162703856, -73.97469547532032 40.645572070808676, -73.97469454831044 40.64557239929374, -73.97469355987099 40.64557260259333, -73.97469254192467 40.64557267531127, -73.97469152166416 40.6455726156526, -73.97469052982748 40.64557242452449, -73.97468959478675 40.64557210733634, -73.97468874491217 40.64557167400015, -73.97468800266182 40.64557113712809, -73.97468739167486 40.64557051203409, -73.97468692967828 40.645569816732475, -73.97468279612244 40.64556153465899, -73.97466786503804 40.64550661778275, -73.97465598907499 40.64545126932894, -73.97456860959706 40.64499687655149)), ((-73.9750627627156 40.64993516690919, -73.97529048872082 40.64969896167289, -73.97535048938259 40.649798048592025, -73.97508026446657 40.64995803394311, -73.9750627627156 40.64993516690919)), ((-73.96688371070064 40.58281828850715, -73.96688480566668 40.58281819066567, -73.96688590764855 40.58281823600949, -73.96688698357575 40.58281842182749, -73.96688800155911 40.58281874450838, -73.96688893443743 40.58281919413859, -73.96688975387002 40.58281975720214, -73.96689043624207 40.58282041748274, -73.96689096148317 40.58282115696416, -73.96689131661186 40.58282195312954, -73.96689148864638 40.582822784362556, -73.96689147405614 40.582823624547075, -73.96689127285195 40.58282445207052, -73.96689089095241 40.58282524081929, -73.96679658129162 40.583075262947496, -73.96675361676641 40.58322784427831, -73.96670820763343 40.583225266437836, -73.96678152272824 40.58291881779971, -73.966781859666 40.58291344086951, -73.96678334461706 40.5829081786377, -73.9667859397143 40.58290317247559, -73.96678957284068 40.58289855744076, -73.96679414826176 40.58289445777782, -73.96687937236294 40.58282068535154, -73.96687999871094 40.582819993029275, -73.96688076911292 40.58281939170145, -73.96688166230045 40.58281889757132, -73.96688265228028 40.582818526840896, -73.96688371070064 40.58281828850715)), ((-73.96640316304423 40.58466479988657, -73.96640537429893 40.58466460511949, -73.96640759840386 40.58466469402108, -73.96640977157608 40.5846650656722, -73.96641183240055 40.58466570834804, -73.96641372418962 40.58466660492208, -73.96641539262234 40.58466772926331, -73.96641679164892 40.58466904983994, -73.96641788112746 40.58467053061928, -73.96641863155001 40.5846721292681, -73.9663824312048 40.585037659238985, -73.9663816880271 40.585047472928046, -73.96638144186613 40.585048417505284, -73.96638098784013 40.58504931699557, -73.9663803377749 40.58505014348603, -73.96637951412515 40.58505087266917, -73.9663785369809 40.585051484739324, -73.96637743824353 40.58505196079477, -73.96637624981221 40.58505228643657, -73.96637500476491 40.58505245176855, -73.96637374090123 40.585052453199694, -73.96637249601942 40.5850522898406, -73.96637130555217 40.58505196710472, -73.96637020493033 40.585051494007665, -73.96636922603905 40.58505088406664, -73.96636839839816 40.58505015620129, -73.96636774680216 40.58504933113095, -73.96634825408879 40.58500184441468, -73.96633281998358 40.58495191396247, -73.96632601377983 40.58490087929343, -73.96633730330606 40.58481919880357, -73.96635748063986 40.58473852049597, -73.96637277343876 40.58470307675966, -73.96639434317714 40.5846695835905, -73.96639563135304 40.584668198961865, -73.96639720528081 40.58466699722308, -73.96639901887708 40.584666013481126, -73.96640102370064 40.58466527383695, -73.96640316304423 40.58466479988657)))",B065,6419,B065,B-12,B-12,B-12,B-12,"Ocean Parkway bet. Coney Island Ave., Parkside Ave. and Sea Breeze Ave.","307, 312, 313, 314, 315","39,40,44,45,47,48",72,"11218, 11223, 11224, 11230, 11235",B,140,False,Ocean Parkway Malls,No,100005091,PARK,20100106000000.00000,18690511000000.00000,,DPR/CDOT,True,Ocean Parkway Malls,Y,Ocean Parkway Malls,Large Park,Mall,http://www.nycgovparks.org/parks/B065/,No,"44, 45, 46, 48","21, 17, 22, 23","9, 10, 11",{C886422D-1B36-4E4E-A45B-C7D36AF292FE} +"MULTIPOLYGON (((-73.97677333958097 40.59173093320444, -73.97695748765838 40.591839920956694, -73.97696541747317 40.59184408296293, -73.97697005889216 40.59184724833109, -73.97697358043655 40.591850419778375, -73.97697659864697 40.59185388199357, -73.97697901548536 40.59185760614047, -73.9769808546032 40.591861518380846, -73.97698207931197 40.591865815922, -73.97698227927792 40.59186829690296, -73.97698248865235 40.591870899456374, -73.97698227766162 40.59187298592595, -73.97698186516676 40.59187705350576, -73.97698029012334 40.59188155130265, -73.97698011393686 40.59188205195816, -73.97697806899401 40.591885799525244, -73.97697557996858 40.591889294856884, -73.97697538143984 40.591889498335284, -73.97697127260179 40.59189371376065, -73.97696685338099 40.59189705921843, -73.9769622619433 40.59189966981471, -73.97695707526236 40.59190189486765, -73.97694932660883 40.591903335951386, -73.9769396253508 40.591904524496336, -73.9768522419491 40.591915233956826, -73.97679231196228 40.591922580042215, -73.9767857389193 40.59192338468259, -73.97677904065732 40.59192419199885, -73.97677369402953 40.59192435211191, -73.97676785386292 40.59192380701541, -73.97676217467838 40.59192232810881, -73.97676036401899 40.59192153438186, -73.97675742066394 40.59192024423762, -73.97675337437838 40.59191779039443, -73.97675280634034 40.59191730759919, -73.97674951502786 40.59191450630671, -73.97674708269618 40.59191120449721, -73.97674667888201 40.59191065599696, -73.97674443735644 40.591905584698274, -73.97674369252337 40.5919005614302, -73.97674367247762 40.59190045696547, -73.97674034491826 40.591883021265986, -73.97674001121953 40.591881271482215, -73.97673978126198 40.591880134075126, -73.97672656396645 40.591814926328524, -73.97672091761257 40.59178707290835, -73.9767151850728 40.59175909249666, -73.97671477585827 40.59175709595418, -73.97671456249921 40.591752400583914, -73.97671599831688 40.59174746510819, -73.97671880668011 40.59174288291555, -73.9767223777418 40.59173950577716, -73.97672647931502 40.5917358162646, -73.97673130955553 40.591732681621636, -73.97673674321663 40.591730185571464, -73.97674263379513 40.59172839202145, -73.97674882888641 40.591727350469505, -73.97675516309984 40.59172708699725, -73.97676146987013 40.59172760877515, -73.97676758263906 40.59172890226173, -73.97677333958097 40.59173093320444)))",B289,6362,B289,B-15,B-15,B-15,B-15,"Ave. W, W. 6 St. and 86 St.",315,47,61,11223,B,0.076,False,Cutinella Triangle,Yes,100004155,PARK,20100106000000.00000,,,DPR,False,Cutinella Triangle,Y,Cutinella Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B289/,No,45,23,11,{F2B5F02F-90C1-401B-BB25-D6DBCBBA8E11} +"MULTIPOLYGON (((-73.89895098255093 40.74114745457013, -73.89897198620372 40.74113937653204, -73.89911635203245 40.74115662893692, -73.89897891728852 40.74145311048268, -73.89895369664926 40.74157883254474, -73.89860093084935 40.741536950563045, -73.89848104801163 40.74144077429207, -73.89849090926484 40.74143215792163, -73.89850317714188 40.74142144008537, -73.89851354223946 40.74141238380875, -73.89852349714126 40.74140368557185, -73.89853777803913 40.74139120811252, -73.89854879516828 40.741381582385806, -73.89855940328697 40.741372313799296, -73.89857012284205 40.741362948055105, -73.89858264664177 40.74135286709461, -73.89859665588008 40.741342282255836, -73.89861545259667 40.74132808158902, -73.8986275996953 40.741318904401744, -73.89864361091439 40.7413068066654, -73.89865741151586 40.74129638102543, -73.8986658367209 40.741290015545985, -73.89867836509893 40.74128235514369, -73.89869983113515 40.74126923201756, -73.89871934064297 40.74125730484203, -73.89873438842795 40.74124810407954, -73.89874580876388 40.741241123479384, -73.89876793350477 40.74122847998971, -73.89878434457509 40.74122046098453, -73.89880467623976 40.741210526440085, -73.89882840124741 40.741198933436294, -73.89884646987761 40.741190104520875, -73.89885677551112 40.74118506892782, -73.89888300673233 40.74117359968228, -73.89890640811382 40.74116459893991, -73.89893192762355 40.74115478419163, -73.89895098255093 40.74114745457013)))",Q341C,5911,Q341C,Q-02,Q-02,Q-02,Q-02,Queens Blvd. bet. 65 Pl. and the BQE,402,26,108,11377,Q,0.354,False,Sherry Dog Run,Yes,100000436,PARK,20090423000000.00000,19551117000000.00000,,DPR,True,Sherry Dog Run,Y,Sherry Dog Run,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q341C/,No,34,12,14,{A73F6938-C46B-4856-B5F0-E0067DAE0D9E} +"MULTIPOLYGON (((-73.92820281198452 40.677664852635274, -73.92791819959001 40.6776481205178, -73.92792358796058 40.6775972006759, -73.9279289739232 40.677546312349925, -73.9281801899205 40.67756108028873, -73.92819149741415 40.67761294890045, -73.92820281198452 40.677664852635274)))",B531,5303,B531,B-03,B-03,B-03,B-03,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,303,36,81,11233,B,0.062,False,Garden of Plenty,No,100004810,PARK,20100106000000.00000,20071101000000.00000,19-21 HUNTERFLY PLACE,DPR,False,Garden of Plenty,N,Garden of Plenty,Greenthumb,Garden,http://www.nycgovparks.org/parks/B531/,No,56,25,8,{11936414-DD33-4E59-B26C-01F21FDBDFD2} +"MULTIPOLYGON (((-73.94542600584076 40.698906699595106, -73.94631605033531 40.69880450569409, -73.94636914839151 40.6990724743041, -73.94645550632487 40.69906256745217, -73.94645781957496 40.69907423736751, -73.9465497662671 40.699063689178224, -73.94660437976391 40.69933930372373, -73.94553600380682 40.699461863535014, -73.94542600584076 40.698906699595106)))",B302,4852,B302,B-03,B-03,B-03,B-03,"Ellery St. at Delmonico Pl., Hopkinds St. bet. Tompkins Ave. and Throop Ave.",303,36,79,11206,B,1.26,False,Charlie's Place,Yes,100004720,PARK,20100106000000.00000,19570828000000.00000,175 ELLERY STREET,DPR,True,Charlie's Place,Y,Charlie's Place,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B302/,No,53,18,7,{F292E127-6881-4FF1-9BBC-09161091054F} +"MULTIPOLYGON (((-73.95423114697054 40.81132419344453, -73.95432945829381 40.81118529734781, -73.95458419802728 40.81147513309544, -73.95423114697054 40.81132419344453)))",M189,6616,M189,M-09,M-09,M-09,M-09,W. 125 St. and Morningside Ave.,109,7,26,10027,M,0.073,False,Roosevelt Triangle,Yes,100006003,PARK,20110712000000.00000,19410701000000.00000,,DPR,False,Roosevelt Triangle,N,Roosevelt Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M189/,No,70,30,13,{59094417-5A09-4748-9014-7231B51D45F6} +"MULTIPOLYGON (((-73.90113020765544 40.855103783050886, -73.90129693821586 40.854541157356344, -73.90154858331238 40.85458231862824, -73.90113020765544 40.855103783050886)))",X006,5714,X006,X-05,X-05,X-05,X-05,"E. 181 St., Anthony Ave., Grand Concourse",205,15,46,10457,X,0.21,False,Bergen Triangle,Yes,100004039,PARK,20100106000000.00000,19320113000000.00000,,DPR,True,Bergen Triangle,Y,Bergen Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X006/,No,86,33,15,{DF8D445D-0F98-44B1-8432-F73147D4329C} +"MULTIPOLYGON (((-73.82614136406448 40.70440237933455, -73.82628650672461 40.7043699080364, -73.82630245485426 40.70444588049879, -73.82625239161811 40.70443236117694, -73.82621951080286 40.704423482006256, -73.82614136406448 40.70440237933455)))",Q157,6165,Q157,Q-09,Q-09,Q-09,Q-09,"125 St., 85 Ave., Metropolitan Ave.",409,29,102,11415,Q,0.02,False,Metro Triangle,Yes,100000373,PARK,20090423000000.00000,19240101000000.00000,,DPR,False,Metro Triangle,N,Metro Triangle,Type 1,Triangle/Plaza,http://www.nycgovparks.org/parks/Q157/,No,27,14,6,{3A178558-2FC8-411D-ACEE-D55DE0A883BB} +"MULTIPOLYGON (((-74.00300179905186 40.679434507923965, -74.0030507928779 40.6794108312111, -74.00307942666934 40.67944738953214, -74.00309633549492 40.679471877667, -74.00311669650996 40.67950946098619, -74.00313717702649 40.67954726312335, -74.00314255364546 40.67955889041844, -74.0031519194479 40.67958314551734, -74.00315906624066 40.679607810410424, -74.00316394906933 40.679632810356594, -74.0031665336227 40.67965802288709, -74.00316699674364 40.679671167682734, -74.00316754647807 40.67968988846102, -74.00316725754504 40.67970814009431, -74.00316616663396 40.6797263746399, -74.00316425245101 40.67974455607771, -74.00316152209251 40.67976268080548, -74.00315363649906 40.679798670979004, -74.00314253941153 40.679834165056235, -74.003135984808 40.67985120116574, -74.00312536850349 40.6798734054371, -74.00284388719793 40.68046219962072, -74.00222767347032 40.680288390527565, -74.00223500594265 40.68024949807273, -74.00224206042742 40.680210440828546, -74.0022521430892 40.680172890085, -74.00225837497608 40.68015432135747, -74.00226539110386 40.680135906602096, -74.0022731760961 40.68011768994423, -74.00229107278065 40.680081854521994, -74.00230114543928 40.6800642906894, -74.00231195975665 40.68004698889068, -74.00232401605672 40.68002919088244, -74.00235604621967 40.679979583597515, -74.00238947334509 40.679931418898384, -74.00242473861402 40.67988401058256, -74.00246206557304 40.67983706057334, -74.00248588251893 40.67980744304441, -74.00251066942606 40.679778855677725, -74.00253670898279 40.67975091934989, -74.00256397161847 40.67972367458385, -74.00259244077326 40.67969714209094, -74.00262206440212 40.67967135158844, -74.00265316068365 40.679646070735444, -74.00268550956673 40.679620329681875, -74.00271858119088 40.679595613387406, -74.00275265351854 40.67957170301982, -74.00278770525912 40.67954861208645, -74.0028236843682 40.67952636310053, -74.00286056009388 40.67950499838615, -74.00289790898464 40.67948472777298, -74.00294936789605 40.6794598578598, -74.00300179905186 40.679434507923965)), ((-74.00270638924076 40.679151857282946, -74.00271118460995 40.67912541446414, -74.0027146704963 40.679126346414385, -74.00270994016648 40.67915233267097, -74.00270323215446 40.679179363570526, -74.00269475695067 40.679206105445864, -74.00268453702444 40.6792324907575, -74.00268228627434 40.67923771919676, -74.00267259839387 40.67925845556785, -74.00265604209156 40.679288963578806, -74.00263592298505 40.679318328916146, -74.00261400945104 40.679347036014605, -74.00258331002627 40.679384634085125, -74.00252989472456 40.67944396746468, -74.00246688433297 40.67951167580901, -74.00241772457262 40.67956650737281, -74.00235695195556 40.67963539528274, -74.00232484817846 40.67967229271153, -74.00230153031963 40.67970031088412, -74.002287132064 40.679719500232004, -74.002259531414 40.67975838318684, -74.00224309998386 40.67978301437729, -74.00223354653782 40.67979790726971, -74.00222422729638 40.67981288750665, -74.00219766415432 40.679858311762445, -74.00217322659819 40.679904421263096, -74.0021486058536 40.67995639130911, -74.00213085008622 40.67999847087359, -74.00212063809936 40.680024978602354, -74.00211499756925 40.68004202544263, -74.00210276320381 40.68007901159162, -74.00208482914158 40.68013322107961, -74.0020705142784 40.68017649375292, -74.0020492601672 40.68024074042698, -74.00204585230088 40.68023980215173, -74.00209524882493 40.68009021502752, -74.00211149390955 40.68004138073869, -74.00212155442435 40.68001261452358, -74.00212723051688 40.67999809812763, -74.0021447296225 40.679956546269885, -74.00215652191562 40.679930793140166, -74.0021715337853 40.67990012584159, -74.00219579511567 40.67985464490364, -74.00221909611857 40.679814776884854, -74.00223135224007 40.67979505448277, -74.00224080633281 40.67978035880512, -74.00225705916266 40.6797560545052, -74.00232180109005 40.67967082673566, -74.00235392615855 40.67963390229183, -74.00241474254118 40.6795649648543, -74.002463937787 40.67951009456889, -74.00252693280363 40.67944240243574, -74.00258023455814 40.67938320143571, -74.00261086893055 40.67934568801583, -74.00263273515395 40.679317043955045, -74.00265279039144 40.67928777407427, -74.0026692544391 40.679257424556454, -74.00268112920239 40.67923159572561, -74.00269129117585 40.67920534729386, -74.00269971907272 40.67917874590013, -74.00270638924076 40.679151857282946)), ((-74.00356791160027 40.67816722295719, -74.00335309629074 40.67811077886258, -74.00333846971171 40.678139949655645, -74.0033360116534 40.67813715633081, -74.00335097293976 40.67810731734652, -74.0035726085265 40.678165553257514, -74.0035378985221 40.678234791290954, -74.00388740667196 40.678326625291355, -74.00388615656827 40.67832919990462, -74.00353320277284 40.67823646008865, -74.00356791160027 40.67816722295719)), ((-74.00244140074655 40.67866627249383, -74.00245210696038 40.67864347123928, -74.00245449640563 40.678646534738625, -74.00233847931379 40.67889363022293, -74.00233509280328 40.67889268925407, -74.00236106251353 40.67883737822506, -74.0023945580184 40.67876604057727, -74.00241761570503 40.678716931438444, -74.00244140074655 40.67866627249383)))",B223A,5106,B223A,B-06,B-06,B-06,B-06,"Rapelye St., Hicks St., Coles St.",306,39,76,11231,B,1.38,False,Dimattina Playground,Yes,100004304,PARK,20100106000000.00000,19470514000000.00000,100 RAPELYE STREET,DPR,True,Dimattina Playground,Y,Dimattina Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B223A/,No,52,26,7,{95431501-7198-461E-BC7B-EC052FE5CACD} +"MULTIPOLYGON (((-74.15777288781393 40.53167426421894, -74.15805177037893 40.53155764032157, -74.15837276001619 40.53161419515848, -74.15848048282852 40.53163317284367, -74.15852414037546 40.53164086432405, -74.15868952916905 40.53173019255682, -74.15877985669916 40.531778979005686, -74.1585574929729 40.53201857672581, -74.15832873168408 40.53226506557545, -74.15816235834886 40.532444329986575, -74.15783380548926 40.532256870543186, -74.15778125350539 40.53223428276543, -74.15776302938393 40.5322288244883, -74.1577478697164 40.532225089212396, -74.15773023330999 40.53222160858494, -74.15771454817309 40.53221926264238, -74.15742194128713 40.53182102072033, -74.15777288781393 40.53167426421894)))",R162,5968,R162,R-03,R-03,R-03,R-03,Orchard La. S. bet. King St. and Hylan Blvd.,503,51,123,10312,R,1.58,False,Olmsted-Beil House Park,No,100004752,PARK,20100106000000.00000,20060814000000.00000,,DPR,True,Olmsted-Beil House Park,N,Olmsted-Beil House Park,Building,Historic House Park,http://www.nycgovparks.org/parks/R162/,No,62,24,11,{0454330A-8609-4DB7-9EEB-324884A9F7B5} +"MULTIPOLYGON (((-73.85008171907853 40.66471345573331, -73.85079422974547 40.66462154776426, -73.85086048499377 40.664887859011245, -73.85086146834978 40.66489181355698, -73.85049552875118 40.66493962068727, -73.8504825857078 40.66494204606824, -73.8506055572681 40.665464061883746, -73.85027625640963 40.66550968261039, -73.85008171907853 40.66471345573331)))",Q408,5360,Q408,Q-10,Q-10,Q-10,Q-10,155 Ave. bet. 83 St. and 84 St.,410,32,106,11414,Q,0.878,False,Harold Schneiderman Playground,Yes,100000145,PARK,20090423000000.00000,19580715000000.00000,153-23 153 AVENUE,DPR/DOE,False,Harold Schneiderman Playground,Y,Harold Schneiderman Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q408/,No,23,15,8,{6A0631BA-4F38-49D7-860C-97872B704C1E} +"MULTIPOLYGON (((-73.90240956921534 40.74042874330539, -73.90180897662538 40.74029208414165, -73.90181625843168 40.74009322221012, -73.90194730530438 40.74009719073219, -73.90195214090214 40.74008804929193, -73.90219888410093 40.7401441932341, -73.90220186026163 40.74006289251481, -73.90220490792062 40.73997965846492, -73.9022081356878 40.73989147627641, -73.9022168790479 40.73965264650966, -73.90213080233745 40.739631474494246, -73.90215628706275 40.73956400218404, -73.90218706191786 40.73948252606028, -73.90220962034836 40.7394228046244, -73.90222818645664 40.73937364995598, -73.90222847137535 40.73936585810307, -73.90223120073901 40.739291333486605, -73.90223421383008 40.739209017015185, -73.90223622294836 40.7391541390672, -73.90209374537538 40.73914982526526, -73.90246789136194 40.73900832173988, -73.9025867944693 40.73896335195421, -73.9028146522571 40.73887717404607, -73.90297534378674 40.73881639918089, -73.9030625474411 40.738783417670305, -73.90329152458635 40.7386968156205, -73.90329949494367 40.73869496996838, -73.90330958667346 40.73869406712763, -73.903317260478 40.73869425006972, -73.90332458875415 40.738695130614964, -73.90333153844814 40.738696642998484, -73.90333704112396 40.738698353179345, -73.9033428104347 40.738700702944385, -73.90334697826418 40.73870281723296, -73.90335095506619 40.73870522042417, -73.9033547254252 40.7387079296147, -73.90335897027303 40.73871163246356, -73.90336420033735 40.73871764143934, -73.90336751345413 40.738722976126944, -73.90336939097863 40.73872716056175, -73.90337056483408 40.73873082481307, -73.9033713525163 40.73873464092617, -73.90337175721135 40.73874049366694, -73.90337105075135 40.738746795729334, -73.90321196503415 40.73917519945287, -73.90316538636259 40.73930063076369, -73.9030996869525 40.73947754871347, -73.90304030924493 40.739637444241346, -73.90301027856779 40.73971831157345, -73.90299503737043 40.739759353789275, -73.90291241390027 40.73998184377181, -73.90277229956666 40.740359144587195, -73.90276051031279 40.74035646192679, -73.90271598195179 40.740346328729075, -73.90265783727912 40.740485234247814, -73.90253213559298 40.74045663226662, -73.90240956921534 40.74042874330539)))",Q205A,4909,Q205A,Q-02,Q-02,Q-02,Q-02,Laurel Hill Blvd. bet. 61 St. and 64 St.,402,26,108,11377,Q,2.5,False,Big Bush Playground,Yes,100000038,PARK,20090423000000.00000,19551117000000.00000,45-25 63 STREET,DPR,True,Big Bush Playground,Y,Big Bush Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q205A/,No,30,12,14,{D2C1039C-8CD3-49CE-9FB4-6F5C8715D774} +"MULTIPOLYGON (((-73.98046369186403 40.577761255069134, -73.98089306618103 40.577713232086296, -73.98105075183358 40.578541430647284, -73.97972661595755 40.578689521838, -73.97972675654935 40.578627118243155, -73.9802489800714 40.57856871476473, -73.98020403418329 40.578335083152844, -73.98056628933547 40.57829456828435, -73.98046369186403 40.577761255069134)))",B331,6673,B331,B-13,B-13,B-13,B-13,W. 12 St. between Neptune Ave. and Surf Ave.,313,47,60,11224,B,1.243,False,Neptune Playground (PS 90),Yes,100004165,PARK,20100106000000.00000,19610209000000.00000,2840 WEST 12 STREET,DPR/DOE,False,Neptune Playground,Y,Neptune Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B331/,No,46,23,8,{E5DF38F8-FF20-4678-B14D-EF743874FE58} +"MULTIPOLYGON (((-73.9396631946347 40.712601061233, -73.93974298123084 40.71258119993327, -73.93985403683058 40.712850963697846, -73.93976719668187 40.71287205418297, -73.9396872989157 40.71289145708065, -73.93957662297342 40.71262261367765, -73.93965633859924 40.71260276951046, -73.9396631946347 40.712601061233)))",B426,6222,B426,B-01,B-01,B-01,B-01,Powers St. between Judge St. and Olive St.,301,34,90,11211,B,0.115,False,St Nicholas-powers St Garden,No,100004427,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,St. Nicholas - Powers St. Garden,N,St Nicholas-powers St Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B426/,No,53,18,12,{C9E2EA88-BD4A-4E01-9883-F178A83762E8} +"MULTIPOLYGON (((-74.00168485970386 40.73531491561483, -74.00163900721002 40.73517655324631, -74.00163948891566 40.735171764338695, -74.00164090348983 40.735167043856414, -74.00164280464067 40.73516306088306, -74.0016457641378 40.73515877352288, -74.00164991575879 40.73515433756177, -74.00165432548003 40.73515084713005, -74.0016599841569 40.73514751336859, -74.00166537768466 40.735145452928734, -74.0017819169334 40.73512989311015, -74.00179639406753 40.73512793788265, -74.00180157811167 40.73512816833169, -74.00180736360173 40.73513042311273, -74.00181106441372 40.73513506607306, -74.00181145639905 40.73513999814845, -74.00180217081412 40.735157087231755, -74.00171203605119 40.735315957101584, -74.00170667686687 40.735318969379854, -74.00169842432283 40.73532023381486, -74.0016902948239 40.735318570696485, -74.00168485970386 40.73531491561483)))",M172,5771,M172,M-02,M-02,M-02,M-02,"7 Ave., Charles St. and Waverly Pl.",102,3,6,10014,M,0.039,False,McCarthy Square,Yes,100004587,PARK,20100106000000.00000,19430605000000.00000,,DPR,True,McCarthy Square,Y,McCarthy Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M172/,No,66,27,10,{2B8F697E-8266-43FC-936D-D750512C3C28} +"MULTIPOLYGON (((-73.96546940837165 40.6857291211599, -73.96595579890615 40.68567188895067, -73.96603999418234 40.686070870240414, -73.96630660628662 40.68603983586371, -73.96640836668847 40.686546645913594, -73.96565149275797 40.6866357606438, -73.96546940837165 40.6857291211599)))",B301,5163,B301,B-02,B-02,B-02,B-02,Greene Ave. bet. Waverly Ave. and Washington Ave.,302,35,88,11238,B,1.259,False,Greene Playground (PS 11),Yes,100004091,PARK,20100106000000.00000,19560308000000.00000,431 WAVERLY AVENUE,DPR/DOE,False,Greene Playground,Y,Greene Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B301/,No,57,25,8,{C3B236B4-57EB-4C00-802E-30683AF66269} +"MULTIPOLYGON (((-73.973129156703 40.74458614458837, -73.9746331160597 40.745218603503545, -73.97428705072629 40.7456940770911, -73.97278308392106 40.74506161460016, -73.973129156703 40.74458614458837)), ((-73.97476892283031 40.745275711946014, -73.97519213457785 40.74545367824641, -73.9748460720131 40.745929153497684, -73.97442285816955 40.7457511859377, -73.97476892283031 40.745275711946014)))",M076,4712,M076,M-06,M-06,M-06,M-06,"1 Ave.,2 Ave., bet. E. 35 St. and E. 36 St.",106,4,17,10016,M,2.759,False,St. Vartan Park,Yes,100004327,PARK,20100106000000.00000,19030716000000.00000,613 1 AVENUE,DPR,False,St. Vartan Park,Y,St. Vartan Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M076/,No,74,28,12,{2F70BC07-FB45-4C48-890A-AB34B6F2B3B9} +"MULTIPOLYGON (((-73.84575702371716 40.7879624088427, -73.84577256469657 40.787651355629514, -73.84593393292693 40.78796857347543, -73.84575702371716 40.7879624088427)))",Q042,6248,Q042,Q-07,Q-07,Q-07,Q-07,"College Pl., College Pt. Blvd., bet. 11 Ave. and 12 Ave.",407,19,109,11356,Q,0.05,False,Poppenhusen Park,Yes,100000301,PARK,,,,DPR,False,Poppenhusen Park,Y,Poppenhusen Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q042/,No,27,11,14,{F4810079-CBB9-4BE7-BBFA-B3C0C35D5DE5} +"MULTIPOLYGON (((-73.94366336049531 40.795231597135626, -73.943843762121 40.79498399722767, -73.94390156719611 40.79500852618147, -73.94372116571898 40.79525612617898, -73.94366336049531 40.795231597135626)))",M330,4992,M330,M-11,M-11,M-11,M-11,E. 111 St. bet. Lexington Ave. and 3 Ave.,111,8,23,10029,M,0.04,False,Family Community Garden,No,100004133,PARK,20100106000000.00000,20021120000000.00000,156 EAST 111 STREET,DPR,False,Family Community Garden,N,Family Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M330/,No,68,29,13,{892B19AF-5825-429D-89BE-3105CF435043} +"MULTIPOLYGON (((-73.94793687808215 40.70260474253298, -73.94800349751645 40.702561584094305, -73.9482425295682 40.70277493305322, -73.94817591007545 40.702818091629084, -73.94810774200188 40.7028622526383, -73.94803908489972 40.70290673216742, -73.94780005302647 40.70269338278963, -73.94786706331277 40.70264997156369, -73.94786871006765 40.702648904302364, -73.94793687808215 40.70260474253298)))",B423,5232,B423,B-01,B-01,B-01,B-01,Walton St. between Harrison Ave. and Throop Ave.,301,33,90,11206,B,0.172,False,Project Roots,No,100004613,PARK,20100106000000.00000,19990712000000.00000,108 WALTON STREET,DPR,False,Project Roots,N,Project Roots,Greenthumb,Garden,http://www.nycgovparks.org/parks/B423/,No,53,26,7,{5A6DEECF-2677-4795-8483-0C86C3E332EA} +"MULTIPOLYGON (((-73.74628005261812 40.59491661335873, -73.74627447349566 40.59478312140051, -73.74626324492259 40.594514455139056, -73.74633032778095 40.59449524012117, -73.74663260639723 40.5944086567833, -73.74700517044927 40.59430194035252, -73.74726942578391 40.59422624543905, -73.7483980888788 40.593902938708446, -73.75069089062431 40.59354519306584, -73.75131453468082 40.59328237676801, -73.75132575742933 40.59380797441481, -73.75107731245825 40.59391406693969, -73.75108106718332 40.594126596609, -73.75111806818524 40.5941557349392, -73.75113172710176 40.594928769164575, -73.75108627646657 40.594928184439766, -73.75101279114526 40.59492723998238, -73.75093930582935 40.59492629457756, -73.75082059905682 40.59492476749421, -73.7507471137464 40.59492382196644, -73.75062283359512 40.59492222315514, -73.75056065335922 40.59492142271134, -73.75051860960951 40.59492088207866, -73.75041554579461 40.59491920573009, -73.75034591944701 40.5949190391776, -73.75023286748966 40.59491982371654, -73.75014431034191 40.594921105364776, -73.74996625613369 40.59492733155386, -73.74992127589539 40.594929846103035, -73.7498094001382 40.594936099880776, -73.74972936014566 40.59494222117074, -73.74963883610093 40.59494914534688, -73.74956534946519 40.59495484944794, -73.7494926226518 40.59496049482316, -73.74920456855628 40.59499337690871, -73.74798921802967 40.595087764171716, -73.74756804100048 40.595180256759456, -73.74737974413982 40.59524093739128, -73.74635414210606 40.595571439844505, -73.74611139452925 40.595652377115506, -73.74596075957648 40.59495632537782, -73.74628005261812 40.59491661335873)))",Q162J,6305,Q162J,Q-14,Q-14,Q-14,Q-14,Seagirt Blvd bet. B. 17 St. and B. 12 St.,414,31,101,11691,Q,13.75,False,Beach 17 Playground (O'Donohue Park),Yes,100000434,PARK,20100106000000.00000,19570314000000.00000,,DPR,True,Beach 17 Playground,Y,Beach 17 Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q162J/,Yes,23,15,5,{02178742-B3DE-4FF1-9FD4-F87F70058E6A} +"MULTIPOLYGON (((-73.97986647133193 40.660821091078425, -73.97987459999162 40.66082107719214, -73.97988272385655 40.66082127762732, -73.9798908334675 40.660821689680795, -73.97989892054629 40.66082231515219, -73.9799069744512 40.66082315133802, -73.97991498572156 40.660824200037716, -73.979922943716 40.66082545674687, -73.97993084133907 40.660826923265276, -73.97993866794937 40.66082859508849, -73.97994641290516 40.660830469513144, -73.97995406911079 40.660832548338995, -73.9799616271075 40.66083482706194, -73.97996896628759 40.66083727414281, -73.97997619070681 40.66083991031168, -73.97998329326926 40.66084273826888, -73.97999026215325 40.6608457463057, -73.97999709026234 40.6608489389235, -73.98000377050391 40.660852308016366, -73.98001029578387 40.66085584998109, -73.98001665546096 40.660859560313234, -73.98002284480586 40.66086343631048, -73.98002885436033 40.660867471667565, -73.9800346770306 40.6608716618807, -73.9800403069048 40.66087600424741, -73.98004573689029 40.66088049066175, -73.98005095989329 40.660885116620015, -73.98005597355025 40.66088987671866, -73.98006076603714 40.66089476735365, -73.98006533499223 40.66089977681787, -73.98006967686757 40.660904906911725, -73.98007378102375 40.66091014592675, -73.98007764746193 40.66091549026087, -73.98008126908852 40.66092093450976, -73.98008464235905 40.660926467866695, -73.98008776254427 40.6609320876293, -73.980090628464 40.66093778569273, -73.98009323420743 40.660943555752354, -73.98009557741184 40.66094938970316, -73.98009804673818 40.66095659336119, -73.98009956594673 40.660961680641215, -73.98010110378532 40.660967742283226, -73.98010247469074 40.6609744657759, -73.98010341888771 40.66098057684356, -73.98010408518557 40.66098670767451, -73.98010447003892 40.660992851064, -73.98010457699763 40.66099899890802, -73.9801044013334 40.66100514490212, -73.98010411142127 40.661009758197515, -73.9801036169465 40.661014323730164, -73.98010274596852 40.66102043178227, -73.98010159592239 40.66102651277062, -73.98010017154058 40.66103255859136, -73.98009845624435 40.661038647586516, -73.98009646898164 40.66104468700619, -73.98009420975475 40.6610506687457, -73.98009233886123 40.6610550917585, -73.98009032843423 40.66105949853779, -73.98008740467769 40.66106530906406, -73.98008421842377 40.6610710393988, -73.98008077440514 40.661076680537704, -73.98007707735378 40.661082226177925, -73.98007313200081 40.66108767271824, -73.98006894307905 40.66109301115421, -73.98006451531982 40.661098236984095, -73.98005985345534 40.66110334300458, -73.98005496221738 40.661108323813274, -73.98004984988577 40.66111317220749, -73.98004534088733 40.66111720123627, -73.98003978162505 40.661121828926014, -73.9800340142814 40.6611263088947, -73.98002847057917 40.66113030622511, -73.98002188610464 40.66113479595697, -73.98001553591668 40.66113879494773, -73.98000999125351 40.66114204574899, -73.980003375101 40.66114569259095, -73.97999659935917 40.66114916380407, -73.9799896675765 40.66115245668736, -73.97998259276297 40.66115556403901, -73.97997473037036 40.66115872078154, -73.97996654754816 40.66116175679849, -73.97996057281844 40.661163749501085, -73.97995299684156 40.66116608772257, -73.97994531922716 40.6611682251107, -73.97993754825347 40.66117015986588, -73.97992969456388 40.66117189018889, -73.97992176407219 40.66117341247861, -73.97991580146628 40.6611744056078, -73.97990977266824 40.6611753005688, -73.97990177020476 40.66117628073376, -73.97989574858532 40.661176897435745, -73.97988970336225 40.661177358343906, -73.97988161591456 40.661177813491534, -73.97987350960986 40.66117805791444, -73.97986539509212 40.66117808801248, -73.97985728418642 40.66117790468816, -73.97984918398714 40.661177510644286, -73.97984110277291 40.66117690318085, -73.97983128454618 40.66117589468243, -73.9798233252727 40.661174824373695, -73.97981541691115 40.66117354605401, -73.9798075701038 40.66117206152637, -73.97979979549208 40.66117037529518, -73.97979210253708 40.661168484660585, -73.97978449596768 40.66116639412599, -73.9797769899728 40.66116410819659, -73.97976959164811 40.66116162597301, -73.9797623092698 40.661158951959365, -73.97975515111438 40.66115609065974, -73.97974812782402 40.66115304387699, -73.9797412429459 40.66114981341289, -73.97973450948525 40.661146407374304, -73.9797279333546 40.66114282666293, -73.97972152164739 40.66113907668306, -73.97971528382254 40.66113516193897, -73.97970922579192 40.66113108513332, -73.9797033534662 40.66112685257077, -73.97969767512146 40.66112246965592, -73.97969219903378 40.661117941793364, -73.97968692993203 40.66111327258603, -73.9796818713617 40.66110846923869, -73.97967703514671 40.66110353625605, -73.97967242365031 40.66109847904164, -73.97966804160053 40.66109330480045, -73.97966389490794 40.66108801983722, -73.97965999066638 40.66108262865578, -73.97965633005553 40.6610771402615, -73.97965291898662 40.661071559158046, -73.97964991120118 40.661065842147856, -73.97964716241303 40.66106004773901, -73.97964467498345 40.66105418853914, -73.9796424512768 40.661048266349766, -73.97964049247308 40.66104228927573, -73.97963880566519 40.6610362645224, -73.97963738966772 40.66103020109481, -73.97963624329624 40.66102410529634, -73.97963537246217 40.6610179807301, -73.97963477597959 40.66101183820209, -73.97963445384597 40.661005685816995, -73.97963440960827 40.6609995253764, -73.97963463971524 40.66099336858645, -73.97963514653023 40.66098722085064, -73.97963592768564 40.66098109027324, -73.97963698317915 40.660974984058285, -73.97963831182626 40.6609689085093, -73.97963991244224 40.66096287083003, -73.97964178147713 40.66095687822412, -73.97964391892899 40.660950936995114, -73.97964632006527 40.660945055246806, -73.9796489848833 40.6609392410838, -73.9796519062871 40.660933497206436, -73.97965508545646 40.660927832620004, -73.9796585152936 40.66092225542789, -73.97966219224932 40.66091677103257, -73.97966611395763 40.6609113821351, -73.97967027568468 40.66090610134193, -73.97967467033494 40.66090092955223, -73.97967929435809 40.66089587577053, -73.97968414065699 40.66089094629918, -73.9796892068658 40.66088614383925, -73.97969448470411 40.66088147739444, -73.97969996944121 40.660876948764916, -73.97970565043171 40.660872566953906, -73.9797115276745 40.66086833556349, -73.97971759052571 40.6608642581938, -73.97972383188839 40.6608603411472, -73.97973024584884 40.66085658802464, -73.97973684778614 40.66085297811695, -73.97974361167492 40.6608495438381, -73.97975052450641 40.66084628878784, -73.97975758154949 40.660843216567365, -73.97976477334235 40.6608403325781, -73.9797720916066 40.66083763952012, -73.9797795256995 40.6608351373915, -73.97978706970636 40.66083283339532, -73.97979471416681 40.66083072843045, -73.97980244843684 40.660828826997516, -73.97981026542192 40.66082712729429, -73.97981815447748 40.66082563562246, -73.97982610496118 40.66082435107965, -73.97983410977713 40.66082327636613, -73.97984215946529 40.66082241148023, -73.97985024101686 40.660821760021776, -73.97985834852037 40.66082131838758, -73.97986647133193 40.660821091078425)))",B003,5797,B003,B-19,B-19,B-19,B-19,"Prospect Park W., 15 St.",355,39,78,11215,B,1.711,False,Bartel-Pritchard Square,Yes,100003839,PARK,20100106000000.00000,18690413000000.00000,,DPR,True,Bartel-Pritchard Square,Y,Bartel-Pritchard Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B003/,No,44,21,9,{71D227BB-9DF7-417C-9AB0-53BE3890E794} +"MULTIPOLYGON (((-73.88602063818213 40.828595514676174, -73.88605155509426 40.82848951905998, -73.88629709091946 40.82998358730558, -73.8860396364974 40.83013595006264, -73.88566639646102 40.8303568314739, -73.88560454898442 40.83034674312443, -73.88567369192428 40.83015693141067, -73.88572422913809 40.8299827860458, -73.88576805363898 40.82980794962837, -73.88582466076163 40.82952502045015, -73.88583156545735 40.82948412767651, -73.88586034833078 40.829313647323744, -73.88587619681292 40.82921175932098, -73.88588438775594 40.82915909923735, -73.88591962282737 40.82897356175368, -73.8859631217368 40.828789490328205, -73.88600633642172 40.8286445478407, -73.88602063818213 40.828595514676174)))",X147B,4738,X147B,X-03,X-03,X-03,X-03,Boone Av bet. W Farms Rd and Freeman St,203,17,42,10459,X,1.2,False,Daniel Boone Playground,Yes,100005013,PARK,20100106000000.00000,19480225000000.00000,1340 WEST FARMS ROAD,DPR,True,Daniel Boone Playground,Y,Daniel Boone Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X147B/,No,85,32,15,{DA4BC359-E18E-4E43-B003-A5EBD322C869} +"MULTIPOLYGON (((-73.92740449391798 40.810672987192454, -73.92741074144267 40.810672605713094, -73.92741697194748 40.81067261593927, -73.92742205904243 40.81067344399794, -73.92742740154607 40.81067481431689, -73.92743403197689 40.81067761003398, -73.92744106730926 40.81068080222464, -73.92753327507639 40.810731607780106, -73.92753874439157 40.81073734198648, -73.92754205064576 40.81074425448553, -73.9275436196944 40.81075091285279, -73.92754379432913 40.81075815476681, -73.92754224417499 40.81076353426765, -73.92754031691105 40.81076802744148, -73.92753548070199 40.81077406584237, -73.9275303299202 40.81077838409431, -73.92737710378366 40.810887436128496, -73.92737192392386 40.81088905916477, -73.92736688039874 40.810889561166775, -73.92736328135108 40.810889222113126, -73.92735925857924 40.8108883578021, -73.92729568298695 40.81085445720556, -73.92729000693181 40.81085137662463, -73.92728754824934 40.81084975868026, -73.92728600422836 40.8108484186661, -73.92728386252173 40.81084523045321, -73.92728248121138 40.8108424947698, -73.92728204172423 40.81084012618312, -73.92728220516075 40.81083806594697, -73.92728295424082 40.81083585839859, -73.92728432157755 40.81083294254825, -73.92737624619612 40.81068604823414, -73.92738544526487 40.81067875279119, -73.9273901894878 40.810676645912515, -73.92739641516773 40.81067456067808, -73.92740449391798 40.810672987192454)), ((-73.92767293687326 40.81044522817461, -73.92768382451055 40.8104447055116, -73.92769590934375 40.81044621422135, -73.92770787916578 40.810448859286126, -73.92771648664001 40.810452587341686, -73.92772476256498 40.8104582215429, -73.92773703735686 40.81047034543737, -73.92774078167193 40.81047877644512, -73.9277427655803 40.81048758816055, -73.92774283231614 40.81049489304181, -73.9277412324902 40.810502378779105, -73.92773887880035 40.810507762281674, -73.92773601273433 40.810512401651714, -73.92773210697077 40.810517310519344, -73.92772706727469 40.81052304623364, -73.9275571312846 40.810656839121066, -73.92755258176588 40.81065864536267, -73.92754747446648 40.81066004602944, -73.9275409270139 40.81066049936755, -73.9275361698994 40.810660300969595, -73.92753022982185 40.81065915090206, -73.92752412045286 40.810656738229675, -73.92751943669874 40.81065338633337, -73.92751468455172 40.81064753911408, -73.92751283800077 40.81064321736403, -73.92751194490575 40.8106394626266, -73.92751227375392 40.810634602846, -73.92751543131006 40.810626777703135, -73.9276303358344 40.81046568056572, -73.92763840806268 40.81045808633022, -73.92764632277405 40.8104525676431, -73.92765521891555 40.81044913602503, -73.9276628595777 40.810447137211334, -73.92767293687326 40.81044522817461)))",X023,5600,X023,X-01,X-01,X-01,X-01,"Lincoln Av, Third Av, bet. E 137 St and E 138 St",201,8,40,10451,X,0.126,False,Graham Triangle,Yes,100005167,PARK,20100106000000.00000,18970504000000.00000,,DPR,Part,Graham Triangle,Y,Graham Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X023/,No,84,29,15,{E3AAED91-E510-4361-A927-9EB8C78DCAE1} +"MULTIPOLYGON (((-74.15150605682912 40.54734500156704, -74.1514853612706 40.54731013791733, -74.15146894003468 40.547315745553284, -74.15139641452456 40.547193568418464, -74.15137559345884 40.54715849419057, -74.15126249527117 40.54696796904913, -74.15167081988292 40.54682788825183, -74.15163961647961 40.54677471276355, -74.15204981465283 40.546633986063185, -74.15211485058083 40.54674481345387, -74.15213277051522 40.546775349129874, -74.15220261943449 40.54689437570391, -74.15222216965797 40.54691244229619, -74.15224886139254 40.54693336579722, -74.15228232840231 40.546954947598515, -74.15230540744294 40.54696742082056, -74.1523336477564 40.54698044641908, -74.15235849945185 40.546990116636984, -74.15238548542204 40.546998710588035, -74.1523921944043 40.547000845841794, -74.15162381368975 40.54744144486767, -74.15150605682912 40.54734500156704)))",R071,6051,R071,R-03,R-03,R-03,R-03,"Hillcrest Ave., N/o Highmount Rd.",503,51,122,10308,R,1.065,False,Great Kills Park (P.S. 8),Yes,100004376,PARK,20100106000000.00000,19540311000000.00000,,DPR/DOE,False,Great Kills Veterans Playground,Y,Great Kills Veterans Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R071/,No,64,24,11,{3846A6D9-C4D1-4A27-9958-6FF516057FCB} +"MULTIPOLYGON (((-73.98037777399468 40.71055222263078, -73.9804180140878 40.71054949192985, -73.98041805896983 40.71054978910609, -73.98041958139832 40.710559931819034, -73.98041999559801 40.71055990397367, -73.98042162941599 40.710573568603515, -73.98042441089463 40.71059208898307, -73.98042553848292 40.71059678804057, -73.98042990143387 40.71060574526346, -73.98043623851443 40.710613992318606, -73.98044435927054 40.710621277930834, -73.98044498517599 40.710621673361395, -73.98045401643512 40.71062738233311, -73.98046491776127 40.710632119970185, -73.98047673430382 40.71063534760475, -73.98048910633523 40.71063696792037, -73.98049241987378 40.71063695857633, -73.98050166109641 40.71063693132561, -73.98075193528587 40.710618931709895, -73.98080349850716 40.71061522301117, -73.98343756307821 40.71042574950401, -73.98351620744968 40.710420091175756, -73.98359050864659 40.7104147455525, -73.9836098587899 40.71041335341783, -73.98361010321267 40.710415555201735, -73.98366125790658 40.71041159032018, -73.98400941167257 40.71038460677214, -73.98418131072549 40.71037223859186, -73.98424032320027 40.71036799267258, -73.98429344104821 40.71036417096003, -73.98435321089804 40.710359870154996, -73.98435235369443 40.710366706717146, -73.98434996877019 40.71037332965051, -73.98434612835798 40.71037954445451, -73.98434117574647 40.71038491442785, -73.98434039809517 40.71038558160062, -73.98433457116636 40.71039002753054, -73.98432719646222 40.71039398697362, -73.98431903976915 40.71039692513032, -73.98283393756397 40.71051084940288, -73.98276921975223 40.710519412597456, -73.98268403618928 40.71054145332671, -73.98256099610236 40.710561059586375, -73.98161183945537 40.71064734832044, -73.98155478918909 40.71065393183334, -73.98150700823537 40.71066584693117, -73.98146851579244 40.710673608547694, -73.98142561889196 40.71068068775404, -73.98139990617439 40.71068372102547, -73.981372196311 40.7106851555612, -73.98131146985494 40.71068920432098, -73.98059667594958 40.710737200353286, -73.98037482862527 40.710756794783215, -73.98033531796185 40.71076157965882, -73.98027122022214 40.71076834863766, -73.98007331220313 40.71079473013495, -73.97986805402103 40.710832381700925, -73.97958948809574 40.71090098038951, -73.97941551348313 40.71095169229662, -73.9791864010951 40.71102884558939, -73.9790780172284 40.71106980908992, -73.97891624305683 40.71114211490641, -73.97879045378022 40.711203466113126, -73.97859313416481 40.711307985196, -73.97843266337185 40.7114047952725, -73.97832358050168 40.71147762160308, -73.97819677346378 40.71157522292806, -73.97799919183073 40.711743166611605, -73.97792461970418 40.71181392437467, -73.97784029537365 40.71190072731304, -73.9777631591842 40.71198335590925, -73.97766233819166 40.71211017152152, -73.97749858337492 40.712347985212844, -73.97740471819485 40.7125218554355, -73.97704962110377 40.713244416134884, -73.97685246576977 40.713637821422594, -73.97546475338414 40.7164067258393, -73.97494632726466 40.717429632415055, -73.97483274876046 40.717693503914184, -73.97478833859961 40.71783256896615, -73.97474135659986 40.71803676822298, -73.97464933841606 40.718604520428755, -73.97460048020147 40.71894357595372, -73.97448969269249 40.719873880771615, -73.97434500657683 40.721077764355535, -73.97426591185028 40.721611305843815, -73.97417341053576 40.72216864830121, -73.97413442288196 40.72237785671858, -73.9740772396327 40.722561675660266, -73.97403490317566 40.722642793016355, -73.97393471880461 40.72283474097951, -73.97364542412602 40.72325287528767, -73.9734490214337 40.72356051889991, -73.97321086126578 40.723942702018604, -73.97234107098112 40.72533844681358, -73.97201616398559 40.725859804490426, -73.97184252505969 40.72578596183951, -73.97194912658142 40.725167821680905, -73.97281579920649 40.72154647179454, -73.97331547730616 40.71956214177658, -73.97332311134639 40.71953835747939, -73.9735392275422 40.7188650637133, -73.97439299519456 40.71654657310362, -73.97458474983267 40.71602544621397, -73.97472400183403 40.71571947087945, -73.97515116280626 40.71477500508023, -73.9752845757282 40.71448001938768, -73.97528886460331 40.71447053523209, -73.97599586151948 40.71290200631159, -73.97606169733325 40.712600135540434, -73.97631515725568 40.71174058297265, -73.97790989102512 40.710513357915026, -73.97862387005378 40.71027051415807, -73.98028749930262 40.709783539191044, -73.98029725074682 40.70986657787661, -73.9803273315314 40.71012271264643, -73.98034595876278 40.71028132011424, -73.98035772654312 40.71038152377167, -73.98036950027593 40.71048172742759, -73.98037506959862 40.71052918440003, -73.98037777399468 40.71055222263078, -73.98037770890637 40.710552226221715, -73.98037771598932 40.71055228565667, -73.98037777399468 40.71055222263078)))",M144,5854,M144,M-03,M-03,M-03,M-03,"Montgomery St. To E. 12 St., FDR Drive",103,2,9,10002,M,45.88,False,John V. Lindsay East River Park,No,100004355,PARK,20100106000000.00000,19390224000000.00000,,DPR,True,John V. Lindsay East River Park,Y,John V. Lindsay East River Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M144/,Yes,"65, 74","26, 27",7,{0CB7737A-02AD-44D5-9F79-8C8EA6EA1022} +"MULTIPOLYGON (((-73.98018320691112 40.64579614353297, -73.98054916171733 40.64575762421842, -73.98055177790259 40.64577028954565, -73.98090900642121 40.645730765333454, -73.98096736572249 40.64603860536389, -73.98060909173506 40.646077851319966, -73.98024443645487 40.64611779566677, -73.98019333132682 40.64584933707235, -73.98018598914699 40.64581076031951, -73.98018320691112 40.64579614353297)))",B297,5403,B297,B-12,B-12,B-12,B-12,"Albemarle Rd., Dahill Rd., Mcdonald Ave.",312,39,66,11218,B,0.538,False,Albemarle Playground (PS 230),Yes,100004017,PARK,20100106000000.00000,19590213000000.00000,1 ALBEMARLE ROAD,DPR/DOE,True,Albemarle Playground,Y,Albemarle Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B297/,No,44,21,10,{3D60D1B7-D2D6-4408-9301-BDF84926E5A0} +"MULTIPOLYGON (((-73.95341010192851 40.610878269674046, -73.95311097497914 40.610922265484014, -73.95291659515047 40.610974706235694, -73.95290695299852 40.61096629861973, -73.95316340708361 40.61084245563662, -73.95339225765456 40.61077217020925, -73.95341010192851 40.610878269674046)))",B205,6559,B205,B-15,B-15,B-15,B-15,"Ave. P, Kings Hwy., Ocean Ave.",315,48,61,11229,B,0.051,False,Corporal Wiltshire Square,Yes,100006886,PARK,20110712000000.00000,19281113000000.00000,,DPR,True,Corporal Wiltshire Square,Y,Corporal Wiltshire Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B205/,No,41,17,9,{295CA01F-561D-4100-B5AD-2D8C23882267} +"MULTIPOLYGON (((-73.90140528539608 40.84452159351931, -73.9015253130489 40.84432627283491, -73.90258192668237 40.84445495721043, -73.90236314955138 40.844839139598854, -73.90140528539608 40.84452159351931)))",X148F4,5657,X148F4,X-06,X-06,X-06,X-06,Cross Bronx Exwy bet. Webster Av and Park Av,"203, 206",15,42,10457,X,0.759,False,Park,No,100005065,PARK,20100106000000.00000,19590226000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/X148F4/,No,86,33,15,{238EEEB3-F7B5-4CC0-8E22-C42D4602A6B4} +"MULTIPOLYGON (((-74.0026158828559 40.727981418044045, -74.00262534900256 40.72792104141846, -74.00266402520042 40.72793999533886, -74.00266936238185 40.72790595148181, -74.00271409978116 40.72791030709739, -74.00277744640508 40.72791647407176, -74.00284600494888 40.727923148769555, -74.00274619212753 40.728128862509585, -74.00259151297847 40.72805305946859, -74.00260467114785 40.728052921393854, -74.0026158828559 40.727981418044045)))",M120B,6108,M120B,M-02,M-02,M-02,M-02,"S/s W. Houston St., Ave. of Americas",102,3,1,10014,M,0.079,False,Playground of the Americas,Yes,100003887,PLGD,20100106000000.00000,19340509000000.00000,,DPR,False,Playground of the Americas,,Playground of the Americas,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M120B/,No,66,26,10,{DFCE4C1B-51AC-4AF7-8F1D-D187CB6BAB01} +"MULTIPOLYGON (((-73.93547590292454 40.82693309906338, -73.9355460682091 40.826841894697644, -73.93556536820415 40.826849946907764, -73.93620574508628 40.82711712244428, -73.93621268887853 40.827121599046194, -73.93621760717916 40.827125565747416, -73.9362222229869 40.82712973759412, -73.93622652209075 40.827134099270054, -73.93623049027606 40.82713863906088, -73.93623411570367 40.82714334075126, -73.93623738653164 40.82714819082716, -73.93624029210618 40.82715317307385, -73.93624282295895 40.82715827127723, -73.93624497199157 40.82716347012494, -73.93624673210765 40.82716875250365, -73.9362480985806 40.8271741022019, -73.93624906431474 40.82717950120579, -73.93624962932553 40.82718493330649, -73.93624978888737 40.82719038139198, -73.93625027382242 40.82719525334027, -73.93624989111859 40.82720122521429, -73.93624906587482 40.82720633146757, -73.93624838735853 40.827211721458035, -73.93624662502299 40.82721865249746, -73.93624510273098 40.8272249812381, -73.93624222369087 40.82723189365015, -73.93623908346348 40.82723796665596, -73.93623488259394 40.82724489814787, -73.93622957539718 40.827250878104664, -73.936224653882 40.82725520226344, -73.93621464802422 40.82726180996773, -73.93599053233983 40.827368489944924, -73.93547247406825 40.82759002745821, -73.93546528558473 40.82759215941066, -73.93545884715638 40.827593437212364, -73.93545495587718 40.82759396722722, -73.93545066422446 40.827594166536045, -73.9354465980786 40.827594093120865, -73.93544132985775 40.82759278985643, -73.93543566774508 40.82759058497535, -73.93543076837788 40.82758788795012, -73.93542792705844 40.82758636722351, -73.935424769593 40.82758445640529, -73.93541984851257 40.82758092460822, -73.93541648100408 40.82757801142082, -73.93541423904584 40.827575779638224, -73.93541175819671 40.82757295339481, -73.93540982003594 40.82757039940491, -73.93540867769067 40.82756870133133, -73.93540753197524 40.827566811450325, -73.93540647524118 40.8275648495795, -73.93540563407834 40.827563080535434, -73.93540471038531 40.827560844088076, -73.93540385217462 40.82755831861834, -73.93540259515584 40.827552629484956, -73.93540223563038 40.82754807817998, -73.93540281161562 40.82754091686296, -73.9354046223587 40.82753428843032, -73.9354066860609 40.82752963762716, -73.93540764189629 40.82752440808543, -73.93540864898277 40.827518894916324, -73.93541019238991 40.827510442830715, -73.93541176319829 40.827501851183605, -73.93541247826786 40.82749673677041, -73.93541354430111 40.827489117375556, -73.93541474522902 40.82748053452618, -73.9354156668167 40.82747394701812, -73.93541624394277 40.82746805089759, -73.93541687255231 40.82746163161802, -73.93541760411146 40.827454184030444, -73.93541840754314 40.827445970161484, -73.93541874532187 40.82743994963852, -73.93541913498612 40.82743299172886, -73.93541955964453 40.82742539989006, -73.93541997587776 40.82741793861837, -73.93542008022601 40.827410583430506, -73.93542018715317 40.82740301392608, -73.93542026994194 40.827397107623185, -73.9354203706104 40.82738987940307, -73.9354201999508 40.82738372081947, -73.93542002585534 40.82737743796564, -73.9354197944751 40.82736910555216, -73.93541959289304 40.82736182853597, -73.93541924796989 40.82735688912556, -73.93541884460048 40.82735109691324, -73.93541830794614 40.82734338837209, -73.93541764032993 40.827333813030606, -73.93541701037574 40.82732818368106, -73.93541632637033 40.82732205902875, -73.93541546605594 40.82731437552013, -73.93541451409062 40.82730585089751, -73.9354137189077 40.827300682509026, -73.93541267397649 40.8272938930889, -73.93541146176591 40.82728601307517, -73.93541022598758 40.82727798716793, -73.93540809435913 40.82726713500428, -73.93540630836954 40.82725804170175, -73.9354047748194 40.82725023985098, -73.93540368608579 40.827244611144785, -73.93540254662948 40.82723872216701, -73.93540143666343 40.82723298448894, -73.93540093494265 40.82722959204166, -73.93540006222476 40.82722369781024, -73.93539871765597 40.8272141716165, -73.93539822669489 40.8272094653524, -73.9353976594069 40.82720400803239, -73.93539706157115 40.82719826793965, -73.93539681194338 40.827194081396584, -73.93539650749429 40.82718897181499, -73.93539629988722 40.82718546156751, -73.93539602341322 40.82718084277162, -73.93539595516548 40.82717665452914, -73.93539588254473 40.82717208627516, -73.93539581216821 40.82716764859429, -73.9353957439703 40.82716340902363, -73.93539585320414 40.827159571173304, -73.93539596251395 40.82715565497992, -73.9353961098431 40.82715043128847, -73.93539623508873 40.82714597480675, -73.9353966316662 40.82714044418599, -73.93539704265989 40.82713471726528, -73.93539748370749 40.827128560825074, -73.93539781603812 40.827125710042715, -73.93539835159935 40.82712110881106, -73.9353989720393 40.82711577642469, -73.93539950521364 40.82711119140062, -73.93540000374601 40.827108098478085, -73.93540072531137 40.82710361621599, -73.93540144328959 40.82709916546924, -73.93540229604052 40.82709387643672, -73.93540295114816 40.82709068814936, -73.935403846868 40.82708631944723, -73.93540500581935 40.827080672189034, -73.93540583245176 40.827076642934934, -73.93540670835047 40.82707315310523, -73.93540790438075 40.827068387452776, -73.93540902781888 40.82706390811722, -73.93541012983178 40.82705951791867, -73.93541193885638 40.82705342437873, -73.9354134909718 40.82704820237445, -73.93541518462268 40.82704250228633, -73.93541613926025 40.82703972029007, -73.93541736257743 40.827036153212205, -73.93541884387058 40.827031836166064, -73.93542097426756 40.82702562934354, -73.93542467623054 40.82701614379654, -73.93542669418945 40.82701096977916, -73.93542968485731 40.82700393588282, -73.9354315430452 40.8269997063956, -73.93543365904972 40.826994890830214, -73.9354357914592 40.82699027248244, -73.935438504316 40.82698488093398, -73.93544161156221 40.82697987411783, -73.93544478872657 40.8269748925546, -73.93544803817984 40.82696993624559, -73.93547590292454 40.82693309906338)))",M035,5683,M035,M-10,M-10,M-10,M-10,"7 Ave., Macombs Pl., At W. 153 St.",110,9,32,10039,M,0.882,False,Colonel Charles Young Triangle,Yes,100003792,PARK,20100106000000.00000,18931101000000.00000,,DPR,True,Colonel Charles Young Triangle,N,Colonel Charles Young Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M035/,No,71,30,13,{780581A2-1849-4D05-8579-8163A67AC64C} +"MULTIPOLYGON (((-74.10154250716046 40.60434521721651, -74.10149889287594 40.60433384342028, -74.10102214656541 40.60433634456712, -74.10095201196437 40.6043367123703, -74.10093760696019 40.60433678805889, -74.1009358184905 40.60419556789154, -74.10093466889894 40.604104928609786, -74.10102891746926 40.60408622479558, -74.10102196278973 40.60397282540719, -74.10100777247835 40.60374145762095, -74.10100070763565 40.60362626178178, -74.10099344053518 40.60350778011182, -74.10099112556725 40.603470026837186, -74.10098684941852 40.603400324744904, -74.1009800159999 40.60328888747855, -74.1009732710354 40.603178892770075, -74.1009696890156 40.603120492524425, -74.10044024234409 40.60313562685839, -74.10040509057265 40.60308865029424, -74.10038054166296 40.6030558440877, -74.10036597286123 40.60303637400507, -74.10031874373593 40.60300342999789, -74.10028485762588 40.602984852072886, -74.1002432021039 40.602967127406046, -74.10019752683134 40.602949191003745, -74.10027293077782 40.602966222562145, -74.10052720298512 40.602957374327644, -74.10060681302075 40.60271478582097, -74.10059603411065 40.60263078459964, -74.10052577703286 40.60208328777539, -74.10101146111732 40.60180237251856, -74.10106367215002 40.60177217441535, -74.1013814147466 40.6015883923435, -74.1016995923533 40.60140435685702, -74.10140232972067 40.60126745820165, -74.10126288409184 40.601203238802476, -74.10116436017431 40.60115786538091, -74.10109619318334 40.601122005313044, -74.10090563437292 40.60102176179247, -74.10075946936009 40.600944871922536, -74.10096192350488 40.60072998889809, -74.10082270376853 40.60067115929387, -74.10085050736461 40.600677655584256, -74.10087352481978 40.6006802009728, -74.10089678554304 40.60068032553784, -74.10091985478068 40.600678045870445, -74.10094229425637 40.6006733929734, -74.10096370476522 40.600666452747525, -74.10098368835226 40.60065735611882, -74.10100184120917 40.600646269139105, -74.10102121373431 40.60062998776933, -74.10125823768196 40.60066434664465, -74.10126987003466 40.60066572320014, -74.10128207956234 40.60066673183246, -74.10129395435179 40.60066748591059, -74.10130773061522 40.600667018102904, -74.10131660658044 40.600665247955156, -74.10132630479934 40.6006611159109, -74.10133716454753 40.60065553119886, -74.10150727530484 40.600538083473985, -74.10156123286951 40.60050114048229, -74.10164838673249 40.60042298359685, -74.10165489372291 40.60041570251732, -74.10166165110729 40.600406821887326, -74.1016670768916 40.60039554704419, -74.10166943042057 40.600387062036944, -74.10167070543307 40.60037557203852, -74.10166783478533 40.60036411812644, -74.10165902775489 40.600350606367755, -74.10164436967628 40.60033831548931, -74.10163259319803 40.60033148103025, -74.1016547024771 40.600339753490246, -74.10167762427504 40.60034548485222, -74.10170137760234 40.600348747140615, -74.10172546734115 40.60034948315977, -74.10174946105467 40.600347677983386, -74.10177292992327 40.600343364410136, -74.1017953483448 40.600336638361284, -74.10181637857625 40.60032760099527, -74.1018309511127 40.60031941854056, -74.10184849535122 40.600306822689525, -74.10186360431561 40.60029248288055, -74.10187315854425 40.6002807613109, -74.10188104941875 40.60026835141455, -74.1018869453932 40.60025709055238, -74.10188916001624 40.60025282911584, -74.10224461374224 40.60058634085042, -74.10232873980763 40.60053347732675, -74.10251653163792 40.600415469344846, -74.10274571743828 40.60027145117357, -74.10314592445533 40.600019959359955, -74.10318649017056 40.599994466963174, -74.10315681948805 40.59994867409416, -74.10308162093436 40.59984715087836, -74.10338757065409 40.599566974610354, -74.10339813308599 40.59955730069548, -74.10343912834479 40.599591212618186, -74.10368564750122 40.59931824818157, -74.10364502300537 40.59928874227042, -74.10343829010188 40.59913859432573, -74.10367926523072 40.598930873267875, -74.10376764552339 40.59899633536421, -74.10390647150973 40.59886952525365, -74.10371317938954 40.59872635640483, -74.10395160307517 40.59852951718734, -74.10396995686723 40.59851462574448, -74.10418058104601 40.598340961840364, -74.104045360154 40.59817521700191, -74.10396058972931 40.59811572231709, -74.10374935088718 40.59796746829103, -74.10368854125724 40.59792478885069, -74.10354796914037 40.59804069224842, -74.10344707558265 40.59812387978023, -74.10338312467879 40.59817660892258, -74.1031880855921 40.59833741951711, -74.10297099459719 40.59817661872916, -74.1028984539843 40.59812329439371, -74.10315892481705 40.59785880778304, -74.10353634082308 40.597475569549616, -74.10370366572998 40.597305661060965, -74.10387292421898 40.597133789237944, -74.10429908514438 40.59756030615009, -74.10469174332135 40.5979296435638, -74.10482636468424 40.598188394217175, -74.10489019263264 40.59812504541479, -74.10491929160915 40.59817968150336, -74.10514567350113 40.59860472680425, -74.1054596492127 40.599194228555305, -74.10498145843599 40.59949442976446, -74.10477661080404 40.599624225376274, -74.10487425155155 40.599648761114594, -74.1049525900132 40.59967705787314, -74.10500804853295 40.59970295127874, -74.1051256580264 40.599779157672145, -74.10520529194109 40.599856402798515, -74.10526027860595 40.59993430711652, -74.10529671706766 40.60001469133384, -74.10531743736104 40.600089653487615, -74.1054089853609 40.600478065940294, -74.10543147216825 40.600546274329595, -74.1054611136934 40.600608354394225, -74.1055016379904 40.60066838927929, -74.10554878063795 40.60072303294486, -74.10559748079321 40.60076365221784, -74.10563608841483 40.60079420749865, -74.10573072636063 40.60087371498439, -74.10525014828747 40.60104465209872, -74.10531635863015 40.60109553311921, -74.10541749777695 40.60117325637022, -74.10589314308213 40.601003394726085, -74.10593874468212 40.601023916138416, -74.10600450100765 40.601047478920776, -74.106058160261 40.60106056353979, -74.10611272058367 40.60106893036315, -74.10609962822213 40.6011020384661, -74.10609072404593 40.601133598304635, -74.10608160251665 40.60116890451802, -74.10607776425091 40.60121818466992, -74.10608295211127 40.60128215842574, -74.10610114333822 40.60134545469041, -74.1061357660807 40.6014077497058, -74.10632274374018 40.601309393775246, -74.10655650310659 40.60118642610964, -74.10660367675264 40.601248614792894, -74.1072674512274 40.60130962714878, -74.10737688440418 40.60131968555494, -74.1076157317426 40.601319934922756, -74.10766368920183 40.60150998136926, -74.10771512217943 40.60158464505039, -74.10773913697832 40.60162208879148, -74.1077571845854 40.601648806592216, -74.10775843758073 40.60165066229542, -74.10778909634587 40.60168035439947, -74.10781628781623 40.60170365333463, -74.10782035400194 40.601706298858026, -74.10784909879993 40.601725001860736, -74.10788789467414 40.60174897158429, -74.10791865960643 40.601763147546095, -74.10794639915397 40.60177389534947, -74.10782593410701 40.601785306393765, -74.1078792990958 40.602202849437866, -74.10877126522914 40.60206338853879, -74.10913180867865 40.602007014412614, -74.10930769328041 40.60197951369399, -74.10945106757383 40.602234194571786, -74.10946042383138 40.602250816515635, -74.10986695910542 40.60217992847225, -74.10993872725474 40.60230697493617, -74.10962686864394 40.60236492790419, -74.10970470160791 40.60266268532671, -74.10959918615987 40.60268147274544, -74.10925188113332 40.60274331002487, -74.10834884370902 40.60290408693966, -74.10837747936438 40.60310552667816, -74.10839424134244 40.60322343971864, -74.10840032944606 40.60326626373544, -74.10835921103806 40.60324386418722, -74.10813680528771 40.603260870212715, -74.10796771588174 40.60330048018181, -74.10782077327144 40.603321608412486, -74.10778959037604 40.603211442505106, -74.1076622872559 40.60319106233147, -74.10737340293949 40.6033262515934, -74.10734402012373 40.602661210620724, -74.10633867449107 40.60286857294283, -74.10631983710815 40.6028725301575, -74.10552276069095 40.603039992933994, -74.10496536200694 40.602518193008066, -74.10490141808172 40.602933716533016, -74.10462012266848 40.60288560136738, -74.10459548758845 40.603031351768834, -74.10414261338221 40.602842196711464, -74.10409066953622 40.60308358293706, -74.10403756409796 40.60306123862639, -74.10412440739113 40.60264274473552, -74.10389758225416 40.60268001912947, -74.10373871206231 40.60257080136755, -74.10342360709353 40.60267520289239, -74.10312834954374 40.60277302723698, -74.10282195866819 40.602877494032136, -74.10276080060163 40.60287962263518, -74.10257805060324 40.60288598689056, -74.10218943338117 40.602899515839695, -74.10141352049523 40.60292652720511, -74.10142319264054 40.60311968166982, -74.10143261385926 40.603307838451194, -74.10216386346072 40.60328946036002, -74.10225922858702 40.60333038174446, -74.10214710432831 40.60362339803347, -74.10206928148295 40.603606164533815, -74.10189083660839 40.603964389547315, -74.10182225872434 40.60410205646919, -74.10168295127721 40.6043126994521, -74.10154250716046 40.60434521721651)))",R118,5049,R118,R-02,R-02,R-02,R-02,"Ocean Ter., Emerson Ct., Merrick Ave., Chapin Ave.",502,50,122,"10301, 10304",R,52.375,False,Reed's Basket Willow Swamp Park,No,100004906,PARK,20100106000000.00000,19801118000000.00000,83 OLD FARMERS LANE,DPR,Part,Reed's Basket Willow Swamp Park,N,Reed's Basket Willow Swamp Park,Flagship Park,Nature Area,http://www.nycgovparks.org/parks/R118/,No,63,24,11,{D575C933-1C1D-4583-A958-890EAA0B7DE8} +"MULTIPOLYGON (((-74.07175700344436 40.57554401093998, -74.0752526841579 40.571502518729574, -74.08194397351618 40.56836450182011, -74.08385231178643 40.567183743441795, -74.08415402845172 40.56681613362487, -74.0844335417372 40.56648492415627, -74.0859911253812 40.56457611778866, -74.08618464962244 40.564338946283485, -74.0895037168618 40.56608792219809, -74.09059507015361 40.566662967128615, -74.09132984727192 40.56705011733271, -74.09135353827456 40.56706259958895, -74.09137553825217 40.567074190764686, -74.09212005240526 40.567466461156435, -74.09246804523619 40.56764980860309, -74.0926326753206 40.56773654695014, -74.09244695937453 40.56792528190894, -74.09241648990613 40.56796080424015, -74.09239226271659 40.56799902041724, -74.09237468197718 40.56803929524862, -74.09236403963119 40.56808095941224, -74.0923605118669 40.568123321164784, -74.09236444601183 40.56816733208304, -74.0923677900359 40.56820473902193, -74.09236351081357 40.56824765700255, -74.092350655791 40.56828956788619, -74.09232952707072 40.56832948084917, -74.09230062639381 40.56836645263367, -74.09085638985837 40.56988919020678, -74.08878966925286 40.57209922179339, -74.08872633900106 40.5721619454702, -74.08854910561966 40.572320882616076, -74.08842513120186 40.57242165141079, -74.08831093372413 40.57250467041034, -74.0881870419578 40.57258896197564, -74.08797973039515 40.572711005198194, -74.08745314406389 40.572998871079136, -74.08687711583387 40.5733252711805, -74.08644686424442 40.573573065417634, -74.08634050953674 40.57363383808108, -74.08632146180733 40.573621260355246, -74.0848188135248 40.5744820162043, -74.0824318851571 40.57594196900776, -74.0823411119304 40.575997487516055, -74.08213406287699 40.57611017970595, -74.08084764296521 40.57681033790682, -74.08080119032991 40.5768365587445, -74.08050410751201 40.57700179294647, -74.07959843694199 40.57751153468997, -74.07944470037101 40.57759822654009, -74.07929020227942 40.5776984040641, -74.07914335807388 40.57780252490668, -74.07897072936362 40.57793922895533, -74.07881060812005 40.57807258681921, -74.07795552445023 40.578924123509196, -74.07511731070909 40.58146218158087, -74.07336655099209 40.58323698968094, -74.07291317031924 40.58366725869638, -74.07240531203567 40.58410838364287, -74.07204721315217 40.584400081332724, -74.07121589529369 40.58499007354408, -74.06897043269934 40.58776114909342, -74.06670089854323 40.59011138653283, -74.06646771577998 40.59031427449341, -74.06471182542445 40.5917511296497, -74.06402802949233 40.59227617733117, -74.06341372391942 40.59270363701697, -74.06339155949081 40.59271920308203, -74.06335058528742 40.59275006679501, -74.06331888444899 40.59277601303006, -74.06328222243324 40.592808594341435, -74.06323983020346 40.59285032630862, -74.06319356199616 40.59290202738155, -74.06316538329571 40.592937515380854, -74.06314946906778 40.59296054510067, -74.06314247386956 40.592976151408266, -74.06313285498149 40.592995535050285, -74.06311133813163 40.59303274838013, -74.06308026366214 40.593076726279264, -74.06304334044833 40.5931194826673, -74.06300623946831 40.593155427583945, -74.06297206467788 40.59318395057466, -74.06181276650153 40.59406877029228, -74.06165826529958 40.594163825153885, -74.06143518178477 40.59430107357606, -74.06060195829501 40.5948136920507, -74.06013233102604 40.59435411642504, -74.06011469786276 40.594340542162215, -74.05946824505897 40.59388859625138, -74.05552917103961 40.59118690150757, -74.05614374215614 40.59046566646971, -74.05867836746671 40.58838313654731, -74.06125167306057 40.58629199624824, -74.06390426901845 40.584124703606285, -74.0707044508962 40.57669429667222, -74.0716952109558 40.575611542941836, -74.07175700344436 40.57554401093998)), ((-74.07981088933336 40.57779987843852, -74.08086014139883 40.5771904243398, -74.08096487060743 40.57725208154032, -74.08060823091252 40.57765705508779, -74.0805848975983 40.57768209883551, -74.08056079937714 40.577705541982084, -74.08053742779764 40.57772630555369, -74.08051219107185 40.57774686060539, -74.08048434913516 40.5777675858747, -74.08045543581994 40.57778720874498, -74.08042813141336 40.57780416492891, -74.08040081943123 40.57781974511017, -74.08037764535798 40.57783197514021, -74.0803590890673 40.57784115456062, -74.08033714436871 40.577851348537074, -74.08031908608746 40.5778592263448, -74.08030749866104 40.57786404594787, -74.08026231915522 40.57788118568562, -74.07958549027796 40.57813794041933, -74.07940667523081 40.57805313298384, -74.07981088933336 40.57779987843852)), ((-74.07910755229074 40.57829927078197, -74.07923922911787 40.57819698941813, -74.07934547164326 40.578254920675185, -74.07839490659848 40.57932126197556, -74.07812030246103 40.57918120765985, -74.07910755229074 40.57829927078197)))",R046,4598,R046,R-02B,R-02,R-02,R-02,"Ft. Wadsworth To Miller Field, Fr Capodanno Blvd.",502,50,122,"10305, 10306",R,644.35,False,Franklin D Roosevelt Boardwalk and Beach,No,100004125,PARK,20100106000000.00000,19380101000000.00000,280 FR CAPODANNO BLVD,DPR,True,Franklin D. Roosevelt Boardwalk and Beach,Y,Franklin D. Roosevelt Boardwalk and Beach,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/R046/,Yes,64,"23, 24",11,{AE1D99DA-0D23-49BE-B042-4371C5536F3F} +"MULTIPOLYGON (((-73.85874764807289 40.7674144668322, -73.85321255877405 40.762708140562005, -73.85253170781012 40.762129168067034, -73.85255745000683 40.75985177770627, -73.852570624481 40.75868620657263, -73.85253567633278 40.75867899201194, -73.85236761687663 40.75841763088249, -73.85256489864614 40.75844006390519, -73.85264359267399 40.75854544006382, -73.85272653080185 40.75864891702213, -73.85284663358316 40.75877603375731, -73.8529737778665 40.75889912778574, -73.85310773086631 40.759017972760375, -73.85324824792671 40.75913235222458, -73.85339507134664 40.75924205510828, -73.85354793273488 40.759346882034464, -73.8537065518352 40.75944664081571, -73.8538706388916 40.75954114825818, -73.85403989227547 40.75963023195994, -73.8542140032288 40.759713727615676, -73.85439265230194 40.75979148351485, -73.85457551291245 40.75986335784484, -73.85476225016484 40.7599292168888, -73.85538477639692 40.76010068372839, -73.85658499631953 40.760422212201405, -73.85730335445946 40.76066436414932, -73.85750953689718 40.76075346775428, -73.8577116774199 40.76084777272041, -73.85790954889536 40.76094717432993, -73.85810293130619 40.76105156157148, -73.85829160583171 40.76116081533136, -73.8584753607581 40.76127481380421, -73.85865399029953 40.76139342978943, -73.85882729341591 40.761516529789525, -73.85899507618133 40.761643974012536, -73.85915714940393 40.761775621772095, -73.85931333219413 40.76191132428782, -73.85920538593521 40.7619983523488, -73.85920027701695 40.762000481203685, -73.85918431768057 40.7620131020942, -73.85917191205336 40.76203152748292, -73.85916390093033 40.762051310801894, -73.85916052718787 40.762071850811196, -73.85916189281484 40.76209252448612, -73.85916795650732 40.76211270412351, -73.8591785348084 40.76213177805525, -73.85919330562825 40.762149165960814, -73.85921182122546 40.76216434049569, -73.85923352001947 40.76217684171408, -73.85925774314619 40.762186288795995, -73.85928375455548 40.762192397181515, -73.85931076588056 40.76219497950213, -73.85933795654503 40.76219395821214, -73.8593645010049 40.76218936472203, -73.85941111138064 40.76216067567382, -73.85952107162329 40.762092995438586, -73.85956581563266 40.762163604598584, -73.86007214887094 40.76283905680461, -73.8605865936326 40.76351095772452, -73.86110910755868 40.764179252268676, -73.8613602808757 40.76445040965783, -73.86136607211344 40.764554109799626, -73.86145638247164 40.76450791896201, -73.86217425981367 40.76543747272537, -73.86209714235015 40.76547754297038, -73.862751970905 40.76619682163374, -73.86275493674208 40.76619504216699, -73.86275647753422 40.76619854156365, -73.8626864827603 40.76623618391729, -73.86292730388962 40.7664816844756, -73.86295996902018 40.76646125575774, -73.86305922381125 40.7665748364898, -73.8631397277442 40.76666695924375, -73.86285925885662 40.76683490128158, -73.86283854356937 40.766812488270155, -73.86265936830051 40.76662104991152, -73.86248250856954 40.766428370434085, -73.86118834640214 40.76721466658559, -73.85976331914007 40.76656117614864, -73.85874764807289 40.7674144668322)), ((-73.82903749921746 40.7174356557658, -73.82811100864537 40.71714360632023, -73.82810624022605 40.717146361070355, -73.82722344920708 40.71684582023806, -73.8270592164642 40.7168989857075, -73.82697587023566 40.71692286452023, -73.82692145768118 40.716938454338276, -73.82687504734317 40.7169511322025, -73.82680815386611 40.716967884669366, -73.82680906319551 40.71696272610442, -73.82676184689343 40.716966732582506, -73.82678797267668 40.71679839598664, -73.82682123893719 40.716630790532065, -73.8268616108444 40.716464091760194, -73.82690904765617 40.716298473401196, -73.82696349798263 40.716134108267546, -73.82701060095343 40.7160458568432, -73.82706553523374 40.71596026556846, -73.82712804293247 40.715877738374814, -73.82719783070776 40.71579866022896, -73.82727457093175 40.71572340433867, -73.82735790289804 40.71565232314993, -73.82744743518195 40.71558575105235, -73.82754274920488 40.71552399898172, -73.82754838507883 40.715520311722955, -73.82757674606071 40.71550395137692, -73.82765810596656 40.715462529881734, -73.82774386596749 40.715426615240176, -73.82783338747984 40.71539647664101, -73.8279259965317 40.71537233999723, -73.82781964759457 40.71514019918517, -73.8277637272307 40.7150181339746, -73.82864890335621 40.714806889915565, -73.82900793235986 40.71471753102455, -73.82929815711117 40.71506924247346, -73.82940604828876 40.71501660357997, -73.82951741701758 40.714968339919984, -73.82963195881719 40.71492458430868, -73.82974935622171 40.71488545783628, -73.82986928706866 40.714851068079426, -73.82999142331751 40.714821508199066, -73.83095023410395 40.71457524060449, -73.83095927861174 40.714624092255704, -73.83082767080857 40.714666155461366, -73.8306998529156 40.714714515967714, -73.83057634614055 40.71476897554118, -73.83045765163227 40.71482931430815, -73.83034425167658 40.71489528625386, -73.83025209266602 40.71495568642329, -73.83016552317034 40.71502069998318, -73.83008494396947 40.715090027667024, -73.8300107227617 40.715163350348455, -73.82994320362462 40.7152403317564, -73.82988269399894 40.71532061755509, -73.82982947414675 40.71540383895987, -73.82981500555003 40.71543875923771, -73.8298070076236 40.71547486424775, -73.82980563007752 40.715511463519974, -73.82981090192952 40.71554785739972, -73.8298227220017 40.71558335054125, -73.82979169178245 40.715665437661194, -73.82962252796607 40.71611293726769, -73.82911263489859 40.71746175158285, -73.82910791288329 40.71746026323193, -73.82910872794389 40.71745810771615, -73.82903749921746 40.7174356557658)), ((-73.8455480660564 40.737885807882314, -73.84477936335239 40.73793901021731, -73.84477703356066 40.73788712875808, -73.84551755413388 40.737833504121014, -73.84539453258668 40.73716713529605, -73.84526730379186 40.73650122348318, -73.84513587020501 40.73583578398041, -73.84509902905924 40.73565431244704, -73.84505464827468 40.7354738195119, -73.84500277365943 40.735294486230224, -73.84494345694115 40.73511649276348, -73.84487675695044 40.73494001838076, -73.84480274080664 40.734765240560115, -73.84472148392173 40.734592333187386, -73.84463306644018 40.7344214701538, -73.84453757915995 40.734252824463326, -73.84449394558585 40.73416662552256, -73.84410346258635 40.73427768057769, -73.84409258936289 40.73425633188923, -73.84409294713873 40.73425622071044, -73.84408810473553 40.73424633736735, -73.84447853241393 40.734136599734555, -73.84433247859937 40.733862210782014, -73.8441783653169 40.733590384382936, -73.84401626927222 40.733321258386994, -73.84384627427576 40.733054967950864, -73.84366846413533 40.73279164732936, -73.84348292857716 40.73253142898344, -73.84328976324336 40.732274444480616, -73.84318969328464 40.732146376447595, -73.84294685951207 40.73184982014556, -73.842711633717 40.73154973740673, -73.84248410316904 40.73124624005987, -73.84226435512588 40.730939442634615, -73.84209765884054 40.730714321739626, -73.84193841925774 40.73048609866837, -73.84211384113675 40.730632782948256, -73.84232051592706 40.73082017768231, -73.84264501575636 40.73110191472851, -73.84289082804284 40.731347485301505, -73.84318540070272 40.731651465777254, -73.84336088842794 40.731848148116725, -73.84363000058494 40.7321497595718, -73.843998098458 40.73262519841882, -73.84428322347708 40.733044061933704, -73.84454601339894 40.7334538480461, -73.84473601296187 40.73373632764729, -73.84492218631875 40.73406226575618, -73.8450196963215 40.73424565158997, -73.84513792289738 40.734483455961836, -73.84525044195935 40.73473141388076, -73.8453813445329 40.735030894689, -73.84552762312043 40.73541861975015, -73.84565076193012 40.735777506301744, -73.84577501446445 40.73619386378535, -73.84584368749319 40.736432489788854, -73.84587467761138 40.73657576534246, -73.84595897449033 40.73699996656029, -73.84597635977757 40.737074707747844, -73.84599147482272 40.737131350167616, -73.84600473770192 40.737174423940225, -73.84601741792348 40.73721297637687, -73.84605684452175 40.7372960470103, -73.84608156214 40.73734603218224, -73.84638226857828 40.73793019130871, -73.84674746699086 40.738618012857984, -73.84660317983545 40.738569670555, -73.84646159526886 40.738516908374464, -73.84632294515326 40.73845981488552, -73.84625227921372 40.73842853414423, -73.84625223781886 40.738428516078805, -73.84594491330859 40.738292475241145, -73.8458757528116 40.73825489992355, -73.84581126625659 40.73821279045621, -73.84575196313438 40.73816648071771, -73.84569831614913 40.73811633965737, -73.84565075176188 40.73806276497908, -73.84560964664358 40.73800618133492, -73.84557532649303 40.73794703942296, -73.8455480660564 40.737885807882314)), ((-73.83009070037984 40.71632498922041, -73.83019939657557 40.71600615406423, -73.83272699656911 40.71801859521449, -73.83310864304512 40.718322442284325, -73.83335790204087 40.71849954043762, -73.8336134212885 40.718656127136924, -73.83386176753282 40.71880966638866, -73.83410018124248 40.71895706280728, -73.83421122326389 40.71902571296232, -73.83433906186491 40.71911178776165, -73.83445200746661 40.71920572678223, -73.8345209099313 40.719276138669535, -73.83457710537908 40.71933623581031, -73.83466330150397 40.71945374038695, -73.83473651993995 40.71957370717771, -73.8347783289168 40.71965077801601, -73.83480754079488 40.719717055245454, -73.83490929772728 40.720036875522545, -73.8350924737948 40.72053716403624, -73.8353115810338 40.7209802617284, -73.83535256760987 40.72106314936771, -73.83501293748117 40.720754025568716, -73.83467795027902 40.720441983457334, -73.83452628306325 40.72029828981358, -73.83420117529403 40.719965188522856, -73.83388080572189 40.71962944022468, -73.83356521327406 40.719291083736486, -73.8332569161429 40.71897297772577, -73.8329423200152 40.7186584628773, -73.83262149694194 40.718347612186044, -73.83245365570839 40.71817874905879, -73.83227921078036 40.71801380679476, -73.83209831802573 40.71785293507653, -73.83191114278414 40.71769627999812, -73.83171785395163 40.71754398315645, -73.83151862752895 40.71739618255677, -73.83138834122475 40.71730542735522, -73.83125234279069 40.71721966057178, -73.83111096308093 40.717139088888935, -73.83096454362303 40.717063908199506, -73.83081344017731 40.71699430001018, -73.83065801799668 40.71693043413616, -73.83049865420503 40.716872464202375, -73.83033573542163 40.71682053124225, -73.83016965421525 40.716774761891614, -73.83000081503184 40.71673526479565, -73.83009070037984 40.71632498922041)), ((-73.85254345692515 40.75720681209829, -73.85249442363981 40.75711538845553, -73.85245224204607 40.757022009562235, -73.85241704528201 40.756926970962574, -73.85238894633345 40.75683057627841, -73.85236803331135 40.75673313089937, -73.85235494132164 40.75661522432783, -73.85234954285731 40.75649696921251, -73.85235185262957 40.75637865553641, -73.85236186284729 40.756260574152755, -73.85237955151325 40.75614301409395, -73.8524048729447 40.756026265261085, -73.85241730242748 40.75587822171284, -73.85243735471784 40.75573066159153, -73.85246500202224 40.755583813586355, -73.85250019879331 40.755437902760235, -73.85252951761952 40.755244658273526, -73.85255284410148 40.755050942343196, -73.85257016502571 40.754856863016684, -73.85258147310417 40.75466252654708, -73.8525824756114 40.75449794493152, -73.8525751850725 40.754333455356516, -73.85255961404047 40.75416929917222, -73.85253578335937 40.75400571683732, -73.8525037304504 40.75384294882972, -73.85246119194997 40.75366944504547, -73.85241153319933 40.75349703974151, -73.85235480124656 40.753325900463345, -73.85229105260916 40.75315619566774, -73.8522203497274 40.752988092017, -73.85214276215004 40.752821753479836, -73.85222668520754 40.75279795631734, -73.85232286614011 40.7529885548788, -73.85241190151075 40.75318115052814, -73.85249372055871 40.75337558830405, -73.85256825607495 40.753571712348105, -73.85263544914278 40.75376936410977, -73.85269524557802 40.753968385943985, -73.8527475971211 40.754168617510295, -73.85312440405613 40.755570597521356, -73.85312442872382 40.755570688504015, -73.85319719210577 40.755832964621575, -73.85327757340325 40.756093950954785, -73.85336553271732 40.756353520465545, -73.85346102659405 40.756611546109774, -73.85356400920875 40.75686790083924, -73.85367442999316 40.757122459399355, -73.85356552043334 40.75712963311964, -73.85345753137193 40.75714255854116, -73.85345738446048 40.75714205046873, -73.85343796957898 40.75714553324132, -73.85335258459482 40.757160849348914, -73.85259918506468 40.75729599031821, -73.85254345692515 40.75720681209829)), ((-73.82979497768365 40.71767477435826, -73.8299195048638 40.717106395094994, -73.83010166603974 40.71716239313379, -73.83028037144929 40.717224503865864, -73.83045526757286 40.71729260341642, -73.83062600682878 40.717366558015485, -73.83079225231651 40.71744622040271, -73.8309536742586 40.71753143252365, -73.83110995236534 40.71762202643331, -73.83126077702279 40.71771782249683, -73.83143009760641 40.717841074128316, -73.83159458765577 40.717968056465814, -73.83175410542155 40.71809866036077, -73.83190851271048 40.718232773067925, -73.8320576772545 40.718370277348214, -73.83220146914663 40.71851105686659, -73.83224877956934 40.7185593022781, -73.83321392427129 40.71954351732403, -73.83360332467096 40.71997344369735, -73.83398940938962 40.72040509922592, -73.83398862857797 40.72040543309027, -73.83380980211344 40.720218092975394, -73.83360071740503 40.720022212524086, -73.83338495746389 40.71983056793727, -73.83316267110406 40.719643291768506, -73.8329340106955 40.719460512074065, -73.83269913452686 40.71928235421735, -73.83245820325226 40.71910894176454, -73.83228985324529 40.718993979594096, -73.83222072850211 40.71894662453861, -73.83221613435728 40.7189436380509, -73.83221138108644 40.71894039198382, -73.83208080697402 40.71885566249353, -73.83197092249183 40.718784227586305, -73.83196685739108 40.71878172093284, -73.83196281979836 40.71877910085494, -73.83182633036375 40.71869506483844, -73.83171565959047 40.7186268190491, -73.83171224772028 40.718624823931435, -73.83170887038452 40.718622745116534, -73.83156487325489 40.718538671697914, -73.83145511230336 40.718474507204945, -73.83145244359211 40.71847302916058, -73.83144970181105 40.71847142853959, -73.83129737959143 40.71838715799053, -73.83118945669897 40.718327393133734, -73.83118746743327 40.71832635102652, -73.8311854854081 40.71832525399872, -73.83102043563468 40.718238807692096, -73.83091887002821 40.7181855761171, -73.83091761232068 40.71818495291696, -73.83091639843603 40.718184317174035, -73.8306435354589 40.71804915364528, -73.83064261339769 40.7180487209438, -73.83036432891055 40.717918535807485, -73.83036363972462 40.71791821511035, -73.83029506920573 40.71788797392905, -73.83008172340753 40.71779385564927, -73.83008054230724 40.71779336492823, -73.83007937192299 40.71779284900868, -73.82997399146963 40.71774911676573, -73.82979497768365 40.71767477435826)), ((-73.8383799298497 40.726444404126546, -73.83869018545593 40.72635041437071, -73.83918340638442 40.72723038607024, -73.83957072282709 40.72785992471072, -73.83993952344233 40.7283919749298, -73.83997626076518 40.72843120899057, -73.84014990312828 40.72866479667721, -73.84033400630203 40.728899314417326, -73.8404166842529 40.729002046661435, -73.8405401399418 40.729140823307254, -73.84062750810665 40.729241236773724, -73.84064733857656 40.729263306904386, -73.84083449437972 40.729471597087624, -73.8411740520239 40.72981575730094, -73.8413988799246 40.730033686231295, -73.84155787664264 40.730166166615085, -73.84164270234973 40.73023779729825, -73.84177208417438 40.73042786478235, -73.8420193436469 40.730733680643894, -73.84226141006931 40.731041892305704, -73.84249824090125 40.731352448413126, -73.84272979833261 40.731665298517946, -73.84246526729589 40.73139731983535, -73.8421933864728 40.73113363219557, -73.84191427636627 40.73087435187815, -73.84162806220766 40.73061959516899, -73.84104049225562 40.73004743091226, -73.84046036966424 40.729470889333626, -73.84016525298766 40.72912111277304, -73.83987705801002 40.72876801137189, -73.83959585075755 40.728411666319644, -73.83932169252338 40.72805215609705, -73.8391192353121 40.727735494427456, -73.83892377711345 40.72741629913548, -73.83873537208564 40.727094658582324, -73.83855407201152 40.7267706629261, -73.8383799298497 40.726444404126546)), ((-73.85311879157189 40.75862340220744, -73.85301510159607 40.75850092359102, -73.85328878211581 40.7585445832025, -73.85356104303905 40.75859310309148, -73.85375945140379 40.758644376007545, -73.85395537343659 40.7587009079867, -73.85414856773859 40.75876263029734, -73.85433879647839 40.758829466109155, -73.85452582656848 40.758901334096876, -73.85470942730397 40.7589781448348, -73.85470917174393 40.75898074877593, -73.85487264905667 40.759051938126376, -73.85508561512762 40.75914807949394, -73.85529629586145 40.75924708840816, -73.85535870002305 40.759314624581066, -73.85542562667005 40.75937960805759, -73.8554813784349 40.75942885464211, -73.85553972887108 40.75947632956068, -73.85566315230363 40.759580951960594, -73.85567768747467 40.759593272883095, -73.85568450589868 40.75959684922945, -73.85582930062924 40.75969903623608, -73.85598017415481 40.75979600592302, -73.85613680124085 40.75988754894301, -73.85629884359223 40.759973468540615, -73.85646595458996 40.760053580558186, -73.85663777337446 40.760127711627675, -73.85681392957665 40.76019570187833, -73.85676067800941 40.760270629804985, -73.85647327501229 40.76018312024187, -73.85550301198727 40.75992161521078, -73.85515776196851 40.759820674382226, -73.85491675792778 40.75975021089942, -73.85475973506881 40.75969607453518, -73.85460622528348 40.75963639797487, -73.85445656583721 40.759571310430765, -73.8543019016319 40.75950148870539, -73.85415165382194 40.75942629814291, -73.85400614419478 40.75934590125932, -73.85386568385637 40.7592604686626, -73.85373057440168 40.75917018535772, -73.85360110437742 40.759075243537744, -73.85347084604496 40.758968438201535, -73.85334688355434 40.75885738583961, -73.85322945683403 40.758742299297225, -73.85311879157189 40.75862340220744)), ((-73.87568710123627 40.77052028332644, -73.87576642255125 40.77051220761089, -73.87579972248655 40.770513625784865, -73.87582680179405 40.77052001253091, -73.87585492572757 40.77053279757767, -73.8758779911135 40.77055049572201, -73.87589468949 40.770572903844595, -73.87590277566147 40.7705939969583, -73.87590424886281 40.770612582249164, -73.87590032420651 40.77066751417804, -73.87589691044896 40.77071397021118, -73.87589348956982 40.77076043163932, -73.87589007579267 40.77080689307465, -73.87588666202087 40.770853349106524, -73.8758819837868 40.77091539060158, -73.87587984255546 40.77097750867014, -73.87588023014989 40.77103964567135, -73.87588315258859 40.77110175388489, -73.87588860409049 40.77116376126405, -73.87589658596798 40.77122560297352, -73.87590005073353 40.7712509468897, -73.87590437580162 40.77127545966653, -73.87559834274234 40.77131742092991, -73.87533690269333 40.7713379355049, -73.8748414038212 40.771365128460886, -73.87419399561725 40.77135517972613, -73.87390779158181 40.77134094238121, -73.87376121468319 40.77133176243345, -73.87382127644617 40.77129859601973, -73.87383939107468 40.77128780710498, -73.87385881099499 40.77127014156616, -73.87389121111224 40.771223994679886, -73.87391325646573 40.77118471450376, -73.87393273146174 40.77113855436114, -73.87395091112218 40.77109337434732, -73.87395876446811 40.77104130498433, -73.87396661036288 40.77099316631274, -73.87397316398295 40.77094502622687, -73.87397457339108 40.77088312441254, -73.8739707709855 40.770843815949135, -73.8739644051938 40.770792713480034, -73.87395876799492 40.770756561977265, -73.87413399268104 40.770717420403216, -73.87435854135093 40.770675590323116, -73.87458478119333 40.77063940600635, -73.8748124646259 40.77060891129877, -73.87504134408827 40.770584139241926, -73.87527117321457 40.77056511837813, -73.87534049655724 40.77055764987814, -73.87540982108904 40.77055017053164, -73.87547914441232 40.77054269564467, -73.8755484617877 40.77053522611262, -73.87561778507651 40.77052775294323, -73.87568710123627 40.77052028332644)), ((-73.85465059968566 40.75705226255502, -73.85452212661475 40.75694404322875, -73.85434649261079 40.75674676349411, -73.85417675171644 40.75654652287583, -73.85401299131026 40.756343423267694, -73.85385529521041 40.756137568359556, -73.85373664611555 40.75595373697134, -73.85362348019656 40.7557679169004, -73.85351585760613 40.7555802018919, -73.85341383138147 40.755390689283544, -73.85340096866048 40.755365899079635, -73.85327573344239 40.754984701989855, -73.8531550926448 40.75460264791271, -73.85303905677537 40.75421977109516, -73.85301972128818 40.7541543732416, -73.85301098835423 40.7541246777956, -73.8530107490612 40.754124718013045, -73.85293231544769 40.75388150089932, -73.85284572584237 40.75363988881316, -73.85275103444698 40.753400041195256, -73.85264830375728 40.75316211389334, -73.85253508911607 40.7529488586643, -73.85241916042656 40.75273644901725, -73.85246234976793 40.75272377567862, -73.85254610260809 40.75269920002741, -73.85386703589079 40.75521219307562, -73.85396413294006 40.75550341665076, -73.85474339764313 40.75699561799242, -73.85472529841364 40.75696930038499, -73.8547454777406 40.75700783868471, -73.85476325938649 40.757084771545706, -73.8547764735123 40.75716223444632, -73.85465059968566 40.75705226255502)), ((-73.84871226835006 40.74732355250443, -73.84854873287509 40.747378391021556, -73.84845882022823 40.74724455457564, -73.8486197481342 40.747194936603336, -73.84861954402551 40.74719461395334, -73.84854490891601 40.74705679669354, -73.84846757132452 40.74691984481685, -73.84846723704302 40.746916888010254, -73.84846756227851 40.74691393117079, -73.84846853618599 40.74691105713098, -73.84847013252583 40.74690834960342, -73.84847230494799 40.7469058841698, -73.8484749905362 40.74690373188746, -73.84847811455607 40.74690195389246, -73.84848158808936 40.74690060049634, -73.84848531040187 40.74689971118887, -73.84848917605608 40.746899311045496, -73.84849307609512 40.74689941072897, -73.84849689803858 40.746900008290375, -73.84850053417911 40.74690108557787, -73.84850387920207 40.746902613636735, -73.84850683967215 40.74690454641817, -73.84850932927256 40.74690683157923, -73.84860765043332 40.74703714545298, -73.84870343207295 40.74716854821984, -73.84888548590466 40.74711197869025, -73.84862330024656 40.74669470924145, -73.84836895192538 40.74627464440301, -73.84812249154515 40.745851868940974, -73.84788396733317 40.74542646941807, -73.8476534298848 40.74499853059805, -73.84743092386462 40.74456813993705, -73.84739481569284 40.74449655213939, -73.84739213110116 40.74449519511874, -73.84729566201977 40.744305438269514, -73.8472047678521 40.74411409663138, -73.84711949451751 40.74392126393133, -73.84703988200738 40.74372703658922, -73.84657257972842 40.743881061988986, -73.84650399113471 40.74373082617444, -73.84698530450106 40.74358426596836, -73.84707669414185 40.74355812582932, -73.84712063741944 40.74366725461612, -73.84712082108254 40.74366770781548, -73.84732691349386 40.7441795229342, -73.84739548383142 40.744325300706954, -73.84746746304448 40.744470124809524, -73.84751175780542 40.744555556127565, -73.84751184975191 40.74455573364939, -73.84752691961417 40.74458479948694, -73.84827211862032 40.746022026197366, -73.84915113813894 40.74721553590272, -73.84915120662643 40.74721561883914, -73.84923210619226 40.747325470531756, -73.84929729520061 40.74740998473912, -73.84959183186811 40.74780995828009, -73.84988013319771 40.74821255149522, -73.8501621613474 40.74861770764986, -73.85043787610385 40.74902537000557, -73.8507072372502 40.749435481823234, -73.85097020930272 40.74984798636925, -73.85090381944393 40.74987263918853, -73.85077480368236 40.749665643598696, -73.85063942837466 40.74946101154712, -73.8504977679121 40.74925885477103, -73.85034990023287 40.74905928591208, -73.85019590683028 40.74886241491449, -73.84974247112977 40.74827675107655, -73.84928133196892 40.74769457828857, -73.84912222836718 40.74749673918066, -73.84906759925929 40.74741574619056, -73.84901751615062 40.747333069780275, -73.84897206867728 40.74724885955747, -73.84880060598174 40.74729602471738, -73.84887605923778 40.74741020005113, -73.84895701771522 40.74752217360747, -73.84904337048292 40.74763179034227, -73.84913499830255 40.74773890240396, -73.85003953461427 40.74890791218559, -73.8500908309661 40.74897398615296, -73.85023097786986 40.74916175946857, -73.85036485698284 40.74935216025033, -73.85049238210121 40.749545066839474, -73.85061347530812 40.74974035668697, -73.8507280563196 40.74993790543886, -73.85062231053926 40.74997717184723, -73.8502211555211 40.74940837135305, -73.84981345919486 40.74884226780282, -73.84980381980733 40.74882902407776, -73.84979415916091 40.748815757811464, -73.84937685757225 40.74824921419186, -73.84895252641473 40.74768569900003, -73.84883559562364 40.747503399021156, -73.84871226835006 40.74732355250443)), ((-73.85654676596872 40.75978720981917, -73.85636635479436 40.75968298469531, -73.85649869561308 40.759723087059704, -73.85663265655597 40.75975994856614, -73.85674264415047 40.75978749769238, -73.85689487503451 40.759821708909605, -73.85704861190857 40.75985177226304, -73.8572036617915 40.75987764878565, -73.8573552038438 40.75989749186914, -73.85783470114228 40.759957271241575, -73.8581664467559 40.75997256911985, -73.85859350613158 40.76002130449402, -73.85904652666699 40.76011097912986, -73.85961730231132 40.7606883095424, -73.85956830190491 40.760714215904265, -73.8595242371766 40.760744820799125, -73.85948587905152 40.760779586670424, -73.85945454171252 40.76081701488462, -73.85942982939397 40.76085720852256, -73.85941215921497 40.760899494519236, -73.8594018252085 40.760943162737696, -73.85939149649373 40.760994415920905, -73.85938795980735 40.761046197885264, -73.85868497289866 40.76037309486514, -73.85753578621085 40.760236063289184, -73.85731674004286 40.76014990555461, -73.85731650101621 40.76014981250646, -73.85711740339431 40.760067576485945, -73.8569225617885 40.759979644303044, -73.85673225781537 40.75988614420116, -73.85654676596872 40.75978720981917)), ((-73.852250589591 40.75246008527169, -73.85182576251239 40.75165788303808, -73.85141217846103 40.75086142176168, -73.85099974099884 40.75004433155913, -73.85123296950734 40.74997186032907, -73.85151734971409 40.75052252003471, -73.85247328042598 40.752391854725694, -73.852284593719 40.7524509761304, -73.85226687875667 40.75245635014981, -73.8522663009152 40.7524552715019, -73.852250589591 40.75246008527169)), ((-73.85171732333109 40.75294238961235, -73.85189848832674 40.75289101913584, -73.85195333742347 40.75312915033932, -73.85199940866931 40.753368355341, -73.85203666804904 40.7536084459017, -73.85206508509437 40.75384923558602, -73.85208463881712 40.75409053436667, -73.85209531177458 40.75433215492045, -73.85209709600085 40.75457390813321, -73.85203134128986 40.7549909311552, -73.85195879106475 40.755407302420764, -73.85187945481786 40.75582295709304, -73.85179334440929 40.75623783123761, -73.85170047525065 40.75665186182396, -73.85167334117612 40.75646250622361, -73.85165420198442 40.75627258638427, -73.85164307730413 40.7560822977451, -73.8516421678384 40.75602646427206, -73.85163433234358 40.75569450047056, -73.85164940390574 40.755681140155296, -73.8516661954193 40.755667560528195, -73.85172928728849 40.75549480393257, -73.85178418655816 40.7553204365575, -73.85183082055204 40.75514468344761, -73.85186913198883 40.754967770566275, -73.85189906950417 40.75478992658428, -73.85192059476148 40.754611380187384, -73.85193368008116 40.7544323609738, -73.85193830962221 40.75425310035617, -73.85193405450676 40.754063066357894, -73.85192044860274 40.75387328598356, -73.85189751271241 40.753684025806535, -73.85186527829644 40.753495551511016, -73.85182379103004 40.75330812609608, -73.85177310724187 40.753122013472606, -73.85174922094188 40.75304830866512, -73.85171592016782 40.75294555218722, -73.85171509926005 40.75294302070614, -73.85171732333109 40.75294238961235)), ((-73.8533752894088 40.75565095505202, -73.85334427205476 40.755488792878744, -73.8534383385477 40.75566513451687, -73.85354017355986 40.755838964532124, -73.85364966152707 40.75601008284492, -73.85376667620922 40.75617829566431, -73.85389108543457 40.75634341189258, -73.85402274754502 40.75650524402113, -73.85412122936745 40.75662657873354, -73.85422628160019 40.756744683453036, -73.85433772233928 40.75685935351682, -73.85445535782597 40.75697038784879, -73.85457898243679 40.75707759346221, -73.85467134915791 40.75715296983868, -73.85476049488643 40.757230556423906, -73.85484632742246 40.75731027386458, -73.85488661640215 40.75738416883724, -73.8549996308691 40.757587495967364, -73.85492705672722 40.757520743721386, -73.85484830255163 40.75745817189652, -73.8547637856591 40.75740011149211, -73.85467395065542 40.75734686742756, -73.85457927179792 40.75729872124725, -73.8544802470843 40.75725592661071, -73.85437739943718 40.7572187092944, -73.85427127078756 40.75718726538363, -73.85416242207684 40.75716176037227, -73.8540514261525 40.75714232915386, -73.85393886895673 40.757129074222526, -73.85383380424294 40.756934582883254, -73.85373748070398 40.756737491972856, -73.8536500079074 40.75653802857991, -73.85357148830307 40.756336423384255, -73.85350201130841 40.75613290794807, -73.85345418657757 40.75597312519077, -73.85341193577538 40.75581243728968, -73.8533752894088 40.75565095505202)), ((-73.85413965327774 40.757531457802884, -73.85401489583101 40.757286183769345, -73.85411973064261 40.75730442395499, -73.85422252898664 40.75732845082283, -73.85432273931814 40.75735813400783, -73.85441982317887 40.757393314347034, -73.85451325993145 40.757433804785975, -73.8546025503216 40.75747938588024, -73.8546872129052 40.757529814795845, -73.85476679471803 40.75758481991947, -73.85484454559143 40.75765732131703, -73.8549156600619 40.75773366036519, -73.85497981202882 40.757813487269225, -73.85503670502975 40.75789643516148, -73.8550860805264 40.757982121912846, -73.85523332999206 40.75827090305962, -73.85497703099581 40.75830539155686, -73.85486945318708 40.75830111825209, -73.85476250688387 40.758291283216764, -73.85465669058384 40.75827593210673, -73.85455249562088 40.758255136685335, -73.8544085073775 40.75801603160644, -73.85427087479896 40.75777477316331, -73.85413965327774 40.757531457802884)), ((-73.83575248217187 40.721894067471275, -73.83535999033248 40.722066737302995, -73.83534173751957 40.722040052471165, -73.83573414534763 40.72186828849547, -73.83557262354627 40.721640759029896, -73.83516011290894 40.72113498602153, -73.83474062184182 40.720632547772226, -73.8354655391744 40.72126451027673, -73.83562425923114 40.72152997894209, -73.83586878174047 40.72186400406472, -73.83631375685583 40.7224305618968, -73.83670659992372 40.722945288065674, -73.83706621810006 40.72350858892104, -73.83714928246192 40.72366491264927, -73.83719538183293 40.723794689222494, -73.83723629931151 40.72392546792212, -73.8372719949176 40.724057128929324, -73.83730243695788 40.72418955153566, -73.83703962478077 40.723747943987036, -73.83677055996937 40.72330852148804, -73.8362592686334 40.72260223167611, -73.83575248217187 40.721894067471275)), ((-73.85199065327431 40.75287575874094, -73.85206242121362 40.752854034354584, -73.85213985060747 40.7530046057676, -73.8522091116688 40.753157460235954, -73.85227008886577 40.75331234278262, -73.85232267970277 40.75346899214241, -73.85236679707319 40.75362714796856, -73.8523676671052 40.753628901469824, -73.85237332000042 40.753653633028605, -73.85237332821376 40.75365366725837, -73.85241598480981 40.753861415697706, -73.85245022727648 40.754070061948475, -73.85247602518008 40.754279410569296, -73.85249335164642 40.754489262519535, -73.85250219045388 40.754699420571306, -73.85250253485768 40.75490968570606, -73.8524814329008 40.755015925667166, -73.85246874881041 40.75512293823275, -73.85246452966983 40.75523033534746, -73.85242176437693 40.755430374924366, -73.8523718400594 40.755629453470064, -73.85234564682752 40.75576611138352, -73.85231385606154 40.755902081329275, -73.8522781775075 40.756017173438934, -73.85225111455438 40.75613361654003, -73.85223275215593 40.756251036136824, -73.85222704898364 40.756307610341544, -73.85221650912537 40.75646200935762, -73.852213292042 40.75661659696476, -73.85221740415122 40.756771172358945, -73.8522288388442 40.756925534717865, -73.85224758240629 40.75707948320876, -73.85227360927821 40.75723281788292, -73.85231068296568 40.7573332196425, -73.85218724884274 40.75736360469926, -73.85215085714857 40.75722758965155, -73.85212220218915 40.75709051021731, -73.8521013378328 40.756952618613234, -73.85208830254132 40.75681417153723, -73.852083120563 40.75667542656806, -73.8520858007527 40.756536640362405, -73.85208830203263 40.756457087435145, -73.85209596253021 40.75637772483446, -73.85210498645584 40.75631897837604, -73.85214883434452 40.75606563845233, -73.85220054906564 40.75581315867493, -73.85226010179939 40.755561679475434, -73.85231739926007 40.755311315774456, -73.85236736338749 40.75506004483307, -73.85237617707428 40.75497788580223, -73.85238764646284 40.75489591747827, -73.85240207259756 40.75471407865128, -73.85240716908221 40.754531951408815, -73.85240292709554 40.754349810395176, -73.85238935438672 40.75416793387577, -73.85236647055036 40.75398659832793, -73.85233431176434 40.7538060775464, -73.85229292604078 40.75362664804064, -73.8522928790834 40.75362646337655, -73.85226751198337 40.75353292672401, -73.85226747085912 40.753532781689685, -73.85222514241444 40.7533984050997, -73.85217622256407 40.753265328469205, -73.85212078197834 40.75313373918594, -73.85205889606827 40.753003821941306, -73.85199065327431 40.75287575874094)), ((-73.8901116426676 40.76609734921518, -73.89029821109015 40.76604160117508, -73.8904873808453 40.76599117458585, -73.89067888774034 40.765946138522956, -73.89087246877838 40.765906556661555, -73.89106785387486 40.76587248276607, -73.89126477295623 40.765843965199785, -73.89146295122777 40.76582104331818, -73.89166211509398 40.765803748375085, -73.89166825479869 40.76580238808288, -73.89171297362009 40.76580024459786, -73.89190213015466 40.765791175848605, -73.89211067972876 40.76579895448091, -73.89231866136414 40.76581300511968, -73.89252574707784 40.76583330675037, -73.89273161482666 40.76585982665964, -73.89293593902562 40.76589252402866, -73.89313840002855 40.765931346339755, -73.89245549461158 40.765961264126645, -73.89234808727753 40.765964794651936, -73.89220036294131 40.76597294206911, -73.89205301700672 40.765984362085014, -73.89172319692052 40.76601390071535, -73.89139350798186 40.766044181441586, -73.89113496776142 40.76606851310499, -73.89106392886241 40.76607520334408, -73.89099616499051 40.76608177236841, -73.89092804630162 40.76608875074648, -73.890859934696 40.766095734494066, -73.89079907573385 40.76609800282994, -73.89077752318798 40.766074270314064, -73.89022225024365 40.76618598866396, -73.8901116426676 40.76609734921518)), ((-73.85953552990709 40.76082434922333, -73.85959912522641 40.76077956535239, -73.85966692634695 40.760738503857056, -73.85975131255564 40.76082385749584, -73.85975508204429 40.760822233970465, -73.859942333968 40.76101706825694, -73.8600927125062 40.76117353373829, -73.8604787397748 40.76158536637092, -73.86015761281243 40.76178311345812, -73.85951764553394 40.76117036833872, -73.85949206369864 40.76112922635551, -73.85947413374687 40.76108580731644, -73.85946419501474 40.76104093109924, -73.85946243400993 40.76099544170728, -73.85946888443208 40.76095019826447, -73.85948342485345 40.76090605249976, -73.85950577992715 40.76086383794266, -73.85953552990709 40.76082434922333)), ((-73.85361265327217 40.7572706519744, -73.85372825213409 40.75726647998624, -73.85379517319008 40.75742191127582, -73.85387046967104 40.75757511088672, -73.85395401429994 40.75772581839493, -73.85404566557847 40.7578737760586, -73.8541452654105 40.75801873241708, -73.85425264502494 40.758160441398175, -73.85419163588348 40.75813395685134, -73.85399952591548 40.75801003531662, -73.85380336072193 40.757889842711194, -73.85360326565124 40.757773456617365, -73.85339936960926 40.757660951020455, -73.85330319972009 40.757619504363404, -73.85320310091896 40.757583841073256, -73.85309967193969 40.7575541753233, -73.85299353409366 40.75753068439691, -73.85288532534763 40.75751350958027, -73.85277569204064 40.75750275345093, -73.8527085275438 40.7574075750324, -73.85336648090244 40.7573031758479, -73.8534980101981 40.75728230556777, -73.85349784447699 40.757281734436035, -73.85361265327217 40.7572706519744)), ((-73.86552615125287 40.76809282435888, -73.86515304862004 40.767781976224356, -73.86471769580947 40.76739509080898, -73.86472413055503 40.76739809704515, -73.8645722448867 40.76726110222295, -73.86474477745298 40.76715890129322, -73.86500332996117 40.76722013268248, -73.86501576505046 40.76723009512815, -73.86535802480552 40.767504257155494, -73.86569817777516 40.76777672905063, -73.8658103179211 40.76786655628259, -73.8655618497123 40.76806651905367, -73.86556113614927 40.768065025184356, -73.86552615125287 40.76809282435888)), ((-73.88996275196313 40.76594441669689, -73.88995282287037 40.765898041132736, -73.88995201576091 40.76585106013671, -73.88996035023384 40.765804503004496, -73.88997764099773 40.765759394331475, -73.89000350976711 40.76571672340706, -73.89004934119977 40.76568272447825, -73.89010076766705 40.76565371876336, -73.89015685619297 40.76563023396164, -73.89021658870067 40.765612695034946, -73.89027887978193 40.76560142152362, -73.89034259921527 40.76559661766285, -73.8904065897332 40.76559837059885, -73.89064426589961 40.76560913864729, -73.89064926030328 40.76560994573734, -73.89071341672857 40.76562031558905, -73.89077757434788 40.76563069170967, -73.89084069482493 40.765641571994955, -73.89090381532996 40.76565244774313, -73.89096693702379 40.76566333336335, -73.89103006466753 40.7656742144521, -73.89113900482937 40.76569276067344, -73.89124865040039 40.76570873921841, -73.89135888535753 40.76572211395548, -73.89141289974249 40.765727622834994, -73.8914459125543 40.76573098761278, -73.89153342339057 40.76574253255632, -73.89130509008888 40.765777567617185, -73.89107822389933 40.76581773468776, -73.89085302380497 40.76586299974598, -73.89062968761662 40.76591332246658, -73.89040841315307 40.7659686589238, -73.89039577741374 40.765933800978715, -73.89004412786372 40.7660699202679, -73.89000891215858 40.76603130993835, -73.88998158681451 40.76598916724919, -73.88996275196313 40.76594441669689)), ((-73.85292509065685 40.75815670909973, -73.85275653651264 40.75812921654943, -73.85267929290411 40.75799680371694, -73.85260915298858 40.75786212524011, -73.85254622756416 40.7577254000966, -73.85249062267525 40.757586853560554, -73.85255851766824 40.75758575451267, -73.85263588762732 40.75759060998653, -73.85272977073795 40.75759650229134, -73.85282217642141 40.757692214527665, -73.85292191180164 40.75778357309393, -73.85302862351394 40.75787025423869, -73.85314193209557 40.75795195128682, -73.85326143790903 40.758028373747045, -73.85338671403063 40.758099250004555, -73.85339329789399 40.75810273703901, -73.85350176363234 40.75815701615852, -73.85350225620857 40.75815597219778, -73.85362495754849 40.75820938860813, -73.85375123241728 40.75825775038031, -73.85388071989779 40.758300920168104, -73.85401305430466 40.75833877322742, -73.85414785569684 40.75837120370838, -73.85428474055 40.7583981183652, -73.85442332056515 40.7584194401568, -73.85456319792962 40.75843510914153, -73.85431132299885 40.758436808012284, -73.85405965461983 40.75844476240997, -73.85386331008377 40.758381390725226, -73.8536642605763 40.758323101327406, -73.85346273447476 40.75826996023003, -73.85325896134768 40.75822202894724, -73.85309260584292 40.75818765351929, -73.85292509065685 40.75815670909973)), ((-73.88793360133732 40.76696669648714, -73.8880347950991 40.766953804194316, -73.88807555981053 40.76695957191127, -73.8881224300141 40.7669618948095, -73.88836759778658 40.76690384566373, -73.88860344959109 40.766850159839, -73.88884089874763 40.76680074886683, -73.88900179435709 40.766769373723804, -73.88934031661564 40.76670767531536, -73.88968050741884 40.7666514849954, -73.89002219623384 40.76660083860667, -73.89028590216941 40.766566176567636, -73.89033259878836 40.7665601480236, -73.89044117213606 40.76664764437959, -73.8904231249791 40.766650783485, -73.89038672534402 40.766656184305425, -73.8903656271808 40.76665931239454, -73.89029309682951 40.766668624809306, -73.8899818028168 40.76671950904577, -73.88970709562496 40.7667676079917, -73.88967167562498 40.76677428463846, -73.8893357323285 40.76683708241106, -73.8890015681069 40.76690512635661, -73.88869640813121 40.76697176915636, -73.88869507400132 40.76697206053144, -73.88869406813544 40.7669722423621, -73.88854968791152 40.7669982840556, -73.88840756652459 40.767027691140186, -73.88833375118018 40.767045022770695, -73.88833371563288 40.7670450317413, -73.88826719757053 40.76706155274348, -73.8881279751682 40.767098124006395, -73.88806504089467 40.76711542820848, -73.88806473991576 40.767115510762444, -73.88797861010126 40.76713916074706, -73.8879758640696 40.76713879427326, -73.88795612437895 40.767136159113065, -73.88793775896232 40.767118530085966, -73.88789600849142 40.7669735856951, -73.88793360133732 40.76696669648714)), ((-73.88774192773158 40.76645218944142, -73.88772933495315 40.76638348578345, -73.88776249368588 40.76635305672302, -73.88783160557527 40.76634533286387, -73.8878792566347 40.76634437878534, -73.88792692104875 40.766344637679666, -73.88797453956695 40.766346129300445, -73.88802207431404 40.76634884010325, -73.88806257185536 40.76635126849512, -73.88811671149497 40.76635215855209, -73.8881707977728 40.76635026597272, -73.88821120047096 40.76634710749006, -73.88825130995404 40.76634222784463, -73.88830460652045 40.76633451087358, -73.88834372446904 40.76632620651642, -73.88841073116345 40.76631237574932, -73.88848093426509 40.766297986122424, -73.88854950847595 40.76628378578407, -73.88861808384199 40.766269585405944, -73.8886866520634 40.766255390383144, -73.88875531340896 40.766241443048195, -73.88882398539437 40.76622749027958, -73.88890239636535 40.76621156214953, -73.88902134447946 40.76618703267941, -73.88911302587705 40.76616719999315, -73.88920669442844 40.76614036952283, -73.8892967504694 40.76610714912691, -73.88938244261132 40.76606781814919, -73.88944929743619 40.76603102826803, -73.88951231857013 40.765990515587646, -73.8895711503111 40.765946510302456, -73.88979878722851 40.76612996023231, -73.88960217529046 40.76617807506916, -73.88914760825583 40.766289314674495, -73.8890025370777 40.766323729162984, -73.88889784389714 40.766347675326166, -73.88879013401531 40.76637231097031, -73.88857714814733 40.76641934025309, -73.8885600357392 40.76639470300775, -73.88849647426962 40.766412859617645, -73.88843291986113 40.76643102250284, -73.88836935833126 40.766449173639536, -73.8883057967577 40.7664673301441, -73.88824224226494 40.766485481217416, -73.88817868062056 40.76650363855229, -73.8881151177586 40.76652179495036, -73.88805155604642 40.76653995131447, -73.88798799428896 40.76655811394702, -73.88791399638872 40.76657859869876, -73.88786092114758 40.76659048684145, -73.88780732099995 40.76660249241469, -73.88775863449416 40.766506517848775, -73.88774264156437 40.76645451073713, -73.88774192773158 40.76645218944142)), ((-73.85219941836526 40.753950431375046, -73.85224353605068 40.75403264840657, -73.85227910475076 40.75411722729243, -73.85230590887036 40.75420365447524, -73.85232378612258 40.75429140565816, -73.85233262752222 40.75437994940665, -73.85233454663626 40.75452491813185, -73.85233016238743 40.75466985536046, -73.85231947745243 40.75481460350654, -73.85230250516963 40.75495900319587, -73.85228694527426 40.755070422736615, -73.85226661044182 40.7551813967027, -73.85224152459452 40.755291807155864, -73.85217143835624 40.755599925504704, -73.85212566446046 40.75577897749903, -73.85208500571832 40.755958742036114, -73.85204948130537 40.756139134498206, -73.85201146284474 40.756382907686735, -73.85200293517083 40.75653006199163, -73.85200279974552 40.7566773594494, -73.85201105368807 40.75682452270042, -73.8520276846416 40.756971275271376, -73.85205266011084 40.75711734336297, -73.85205292130591 40.75711864402955, -73.85206369076077 40.75717248112308, -73.85201220289501 40.757031110239154, -73.8519697737075 40.75688800939075, -73.85193650423967 40.756743514606555, -73.85191247183988 40.75659796458432, -73.8518977313481 40.75645170069229, -73.85189231983564 40.75630506607468, -73.85196646408008 40.75603902480179, -73.85203259334355 40.75577176469696, -73.85209067070058 40.75550342440432, -73.85214066751121 40.75523414527865, -73.85217338364014 40.75507501822699, -73.8521988895606 40.75491512998857, -73.85221715411525 40.75475466963442, -73.85222815680524 40.754593826248055, -73.85223188541774 40.75443279072314, -73.85222833366298 40.7542717530592, -73.8522175070932 40.754110903269456, -73.85219941836526 40.753950431375046)), ((-73.8552449779245 40.75847815476863, -73.85534886105414 40.758463935692944, -73.85538307068282 40.758553390793296, -73.85542376885176 40.75864126103033, -73.85547082945818 40.75872727428614, -73.85554024469407 40.75883441891533, -73.85576196395334 40.759176650387396, -73.8554150633679 40.75902206600526, -73.85506503961241 40.75887160816541, -73.85498015800692 40.75878324634717, -73.85489988282752 40.75869243008451, -73.85482433692853 40.758599296418694, -73.85475363604077 40.7585039895859, -73.85490112981597 40.7584994550028, -73.8551403529316 40.75848877979848, -73.8552449779245 40.75847815476863)), ((-73.83704460599617 40.72504991127124, -73.8370061865448 40.72496816256298, -73.83635024636952 40.723573997894775, -73.83636151580664 40.72358844910088, -73.83638049741158 40.72361271422675, -73.83651205130002 40.72379284117462, -73.83663668411704 40.72397579565662, -73.83675429085659 40.72416142265837, -73.83686477361276 40.72434956627424, -73.83696803684757 40.724540068799854, -73.83706399686469 40.72473276894472, -73.83715256996453 40.72492750541724, -73.83716232876431 40.72495047323616, -73.83716235347813 40.724950531804275, -73.83717780689875 40.72498657408511, -73.83718691763396 40.7250083415051, -73.83718695175988 40.72500842349982, -73.8371870797578 40.72500835704304, -73.83720873611733 40.72505969425885, -73.83720878790139 40.72505981590098, -73.8374949923437 40.725733380693356, -73.83738116142639 40.725766033687236, -73.83704460599617 40.72504991127124)), ((-73.851577358947 40.75171379719283, -73.85156238649824 40.75168413680964, -73.85156205238407 40.75168422102673, -73.85128461948925 40.751148129899136, -73.85118268195544 40.75094122559745, -73.85107375293468 40.75073639233085, -73.8509579032219 40.75053376704844, -73.85083521071546 40.75033348580682, -73.85070575687271 40.75013568016394, -73.85083440272473 40.75009570672287, -73.85125698408014 40.75090058262659, -73.85165478752963 40.75168019365912, -73.85165409305218 40.75168045121025, -73.85168113446603 40.751731826640516, -73.85209029935253 40.75250919672264, -73.85207776605904 40.75251303659906, -73.85207806552283 40.75251362681564, -73.85199399806736 40.75253912924507, -73.851577358947 40.75171379719283)), ((-73.8529469590306 40.75768574165513, -73.85286441219343 40.75760333898688, -73.85295809665335 40.757618231411726, -73.85304996181266 40.75763864874683, -73.85313944663697 40.75766446601144, -73.85322600200317 40.757695525823195, -73.85337585239779 40.757766632416235, -73.85352156900122 40.75784254406109, -73.85366288567865 40.7579231226579, -73.85379954578859 40.758008219313346, -73.85393638500187 40.75808956632456, -73.85407797097638 40.75816607266057, -73.8542240079841 40.75823757854021, -73.8543741907985 40.758303933176386, -73.854494236708 40.758335717846066, -73.85461703678563 40.75836068903492, -73.854741923377 40.758378709015425, -73.85461718124589 40.758372634430884, -73.854493251119 40.75836024548743, -73.85437068240567 40.75834159691255, -73.8542500232643 40.75831677315113, -73.85413181113552 40.75828588475123, -73.85400547882881 40.75825979644297, -73.85388182207407 40.75822712688868, -73.85376143268844 40.75818803173519, -73.85364488938659 40.758142699033115, -73.85353274713209 40.758091344720604, -73.85344723760267 40.75804646460306, -73.85344323199543 40.7580439894187, -73.85343888809172 40.75804187130478, -73.8533308422672 40.757978782106925, -73.8532273417069 40.757911430198675, -73.85312867969405 40.75784000417182, -73.85303513171839 40.75776470430254, -73.8529469590306 40.75768574165513)), ((-73.83776833578912 40.726629678655506, -73.83792665992343 40.726581717104104, -73.83802152938023 40.72679347956072, -73.83812441126338 40.72700306495646, -73.83823521846662 40.727210299349046, -73.83835385914499 40.727415008788334, -73.83848023315699 40.72761702201281, -73.83861423680116 40.727816169555794, -73.83872821407921 40.72797515584821, -73.83888468989372 40.728208994275334, -73.83904713020362 40.72844046617274, -73.83921547489254 40.72866948498243, -73.83901117624971 40.72844909052532, -73.83881388596974 40.728225033227176, -73.83862371497587 40.727997440251166, -73.83848689110008 40.72781987940373, -73.83835695250411 40.72763935096713, -73.83823400886206 40.72745600820536, -73.83799999216647 40.727043228338076, -73.83776833578912 40.726629678655506)), ((-73.89495082632723 40.76673276737189, -73.8947310942217 40.76672405164584, -73.89393401092286 40.76673308207394, -73.89313697375152 40.76674422681795, -73.89309907460168 40.76670992476409, -73.89312042632561 40.766708140862924, -73.89329262739828 40.76668771404706, -73.893463688581 40.76666234755348, -73.89363336460725 40.76663207808148, -73.89380141256936 40.76659694953791, -73.89390242608418 40.76658832752139, -73.89400399677247 40.766585325076626, -73.89410558573407 40.76658795701543, -73.89420665293022 40.76659620933427, -73.89430665955175 40.76661003921652, -73.89456450361173 40.76665420927669, -73.89482418023107 40.766691662669125, -73.89508538737856 40.76672235678288, -73.89534781945639 40.76674625621048, -73.89576194577785 40.766807771376286, -73.89617550689628 40.766871450255984, -73.89668898819805 40.76694933359687, -73.89720365876931 40.76702254119035, -73.89771944509033 40.76709106124891, -73.89771939800248 40.76712172247908, -73.89720948245314 40.76705634051331, -73.89629794628054 40.76691615890642, -73.8953881091392 40.76676973923304, -73.89516994299616 40.76674800357177, -73.89495082632723 40.76673276737189)), ((-73.89239088598539 40.76603834282012, -73.89337304987282 40.76597432780314, -73.89346835473958 40.76600284489479, -73.89374907694159 40.766082778962975, -73.89403231324275 40.76615741158693, -73.89431788954963 40.76622669756346, -73.89460563176193 40.76629059439246, -73.89489536458815 40.76634906227574, -73.89489059713154 40.76636348670954, -73.89384231883635 40.76621388651913, -73.89359781488668 40.76618498620747, -73.89255689596243 40.766061944191456, -73.89243592059047 40.76606002759999, -73.89239088598539 40.76603834282012)), ((-73.90281610847553 40.767627532368735, -73.9021222332254 40.76751467373263, -73.90214251816741 40.76749813249167, -73.90221646831517 40.767509490301734, -73.90225694256866 40.767515702104305, -73.90231943058657 40.76752502128772, -73.90242991502936 40.76753982013858, -73.90254099598573 40.76755171075934, -73.90265255503931 40.76756066603322, -73.90276446190288 40.7675666768438, -73.90287656261381 40.76756972505022, -73.90309809539514 40.76757024477035, -73.90331956287194 40.7675659823324, -73.90344688185246 40.76756272931802, -73.90357406889139 40.76755979303002, -73.90363766240736 40.76755832438315, -73.90376630622373 40.76755541521594, -73.90383014334842 40.76755748564779, -73.90395743246688 40.767565876464126, -73.90397079793203 40.76756799838657, -73.90398686367239 40.76760476405351, -73.90400257985256 40.76765068935538, -73.90400856124468 40.767676934130286, -73.90401179807075 40.767696791143145, -73.90401340099041 40.76771705922561, -73.90401119778811 40.767736085043275, -73.90400463411673 40.767758001448314, -73.90399534445285 40.767784465829024, -73.90397768243118 40.76781645142655, -73.90364872848728 40.76776295160244, -73.90281610847553 40.767627532368735)), ((-73.85182488378655 40.75674192036909, -73.8518845709455 40.75674095434197, -73.85190505704095 40.75683995263418, -73.85193335686563 40.75693783172986, -73.85196936821713 40.757034234891364, -73.85199810487373 40.7571871579783, -73.852034736776 40.75733910243992, -73.85207920765892 40.7574898313633, -73.852131448217 40.75763911322024, -73.85219137730394 40.75778671466506, -73.85225890310052 40.75793240773996, -73.8523339195697 40.75807596626859, -73.85216806405069 40.75806107349681, -73.85208282395746 40.75788569405169, -73.85200488240444 40.757708363512975, -73.85193431711551 40.75752925489262, -73.85187119513952 40.757348547490956, -73.85181558115661 40.75716641970371, -73.85176753036653 40.75698305171395, -73.85179348531655 40.75690367305614, -73.85181262981334 40.75682318341111, -73.85182488378655 40.75674192036909)), ((-73.85058336732631 40.75017370927741, -73.85063809829774 40.75015670304142, -73.85082796953384 40.75048381340813, -73.85101088555074 40.75081320803975, -73.85118679909016 40.751144801359835, -73.85120276556952 40.75117567786275, -73.85151649771167 40.75178239322256, -73.85191482558108 40.75256314666659, -73.85185345220235 40.752581764074215, -73.85151161247141 40.75192453285888, -73.85151155705785 40.75192442472659, -73.85106584224177 40.75105876096188, -73.8509119600433 40.75076157283118, -73.85075111774765 40.75046652497297, -73.85058336732631 40.75017370927741)), ((-73.85276435051851 40.75846606086519, -73.85284504920179 40.758474166775635, -73.85292497367936 40.758485900680796, -73.85298215320684 40.75856905256182, -73.85304521705392 40.758649707612264, -73.85311397746817 40.758727625148076, -73.85318822891382 40.758802571666095, -73.85329672716993 40.758904901116814, -73.85341135590473 40.75900329044584, -73.85353186807903 40.75909752770204, -73.85362967145798 40.759176482308, -73.8537336839295 40.7592507071512, -73.85384350937672 40.759319921655035, -73.85395873269259 40.75938386142862, -73.85406874230391 40.75944760267397, -73.85418249828837 40.759507420548424, -73.85429976169446 40.75956318596643, -73.85483295653398 40.75977329425867, -73.85480421749826 40.75979507459769, -73.85463086061874 40.759740045780426, -73.85446060428983 40.75967967791683, -73.85429373491985 40.75961407133883, -73.85413052823101 40.759543337172396, -73.85398912770002 40.75947487447465, -73.85385197300722 40.759401587575155, -73.85371934924511 40.75932362813592, -73.85359153081933 40.759241158612234, -73.85346878264119 40.75915434865202, -73.85335136011739 40.759063379598146, -73.85323950679167 40.758968439982795, -73.85313034215069 40.7588761466703, -73.85302795199611 40.75877946832664, -73.85293263766803 40.75867869351636, -73.85284468389902 40.758574120688074, -73.85276435051851 40.75846606086519)), ((-73.83747392840377 40.724484749724134, -73.83748497985579 40.72448924986673, -73.83746387301046 40.724376628316115, -73.8374384268905 40.72426452743221, -73.83740866495718 40.72415304269935, -73.83814782208047 40.725544025928514, -73.83796964711748 40.725597220637034, -73.83763933509914 40.72477504658869, -73.83747392840377 40.724484749724134)), ((-73.89357668506032 40.76656537940589, -73.89355056517849 40.76648627927767, -73.89344738863053 40.76651293699026, -73.89334166777658 40.766533021274036, -73.89323412534789 40.76654639591503, -73.89312549703749 40.76655296793823, -73.89301652675141 40.7665526939065, -73.89290795832525 40.7665455745103, -73.89280053433158 40.76653165906891, -73.89274099383525 40.766521077657735, -73.89269276900835 40.76651864461435, -73.89204000725846 40.76643981337491, -73.89202978477255 40.7664164014848, -73.89265310353606 40.76639882706052, -73.89280037865686 40.76640762433797, -73.89309741590405 40.76643059934879, -73.89354521037397 40.7664700634487, -73.89390850408975 40.766519392298534, -73.89390994849082 40.76654651502171, -73.89378299660004 40.76655370114377, -73.8937672216848 40.76655586041731, -73.89367480205223 40.766569032391025, -73.89358300994533 40.76658453447524, -73.89357668506032 40.76656537940589)), ((-73.88919616882305 40.765433393039196, -73.88918894619947 40.765359523998434, -73.88984289577638 40.76546723012477, -73.88999187857283 40.76549475862265, -73.88964742964944 40.76577213853925, -73.88919616882305 40.765433393039196)), ((-73.83801585220739 40.72571392878304, -73.83820811042797 40.72565747593501, -73.8384981751072 40.72620331517776, -73.83827470782222 40.72627093693313, -73.83814097398378 40.72599359079368, -73.83801585220739 40.72571392878304)), ((-73.89166371143543 40.76651743483768, -73.89160661370724 40.76651683002518, -73.89154952064207 40.76651772632973, -73.89149249859898 40.76652010130127, -73.89143561625168 40.76652396581061, -73.89136497520435 40.76653044229015, -73.89131636457596 40.76653437577409, -73.89123548430261 40.76654089294312, -73.89116375942018 40.766546688395266, -73.8910920345341 40.766552478399745, -73.89101628568328 40.766558601341934, -73.89094860129435 40.76656406549439, -73.89094855391251 40.766564069051604, -73.8908768503097 40.76656985804173, -73.89078116271335 40.7665755684224, -73.89072779428672 40.76658310727016, -73.8906476203469 40.76652292612975, -73.89066326790497 40.766521205708095, -73.89074367072054 40.76651263083516, -73.89081387497302 40.76650530604735, -73.89088408038707 40.766497985720314, -73.89095428578425 40.76649066625104, -73.89102448287665 40.76648334583063, -73.89109468706738 40.76647602087163, -73.89116489241974 40.7664687003735, -73.89125606344065 40.766462434302596, -73.89134745792313 40.76645857451836, -73.89143897637898 40.766457126329435, -73.89148241581334 40.76645758328564, -73.89173134568534 40.76648300459075, -73.89199543354809 40.76650997312741, -73.89235404954931 40.76654659457514, -73.89279218182185 40.76659133403148, -73.89279211903585 40.76663033842312, -73.89246394935255 40.76660202329808, -73.89218060427906 40.76656888737095, -73.89183439323003 40.766528151819266, -73.89177767226782 40.76652308904755, -73.89172075582425 40.76651952270267, -73.89166371143543 40.76651743483768)), ((-73.89525137090196 40.766375134621455, -73.89526087983602 40.7663559274017, -73.89604416107225 40.76649355130965, -73.89780974019169 40.766788175688035, -73.89779388483701 40.766826593349364, -73.89755893363262 40.766785543209345, -73.89732327427262 40.76674690891241, -73.896630557598 40.76662975251507, -73.89593988518442 40.766505821101184, -73.89525137090196 40.766375134621455)), ((-73.83736363110287 40.72491727766579, -73.83730350532649 40.724695432960026, -73.83741993534242 40.724888231064604, -73.83777632835509 40.72565267652903, -73.83768931769134 40.72567695594221, -73.83736363110287 40.72491727766579)), ((-73.85238761907623 40.75757111494545, -73.85244431529425 40.75770659670592, -73.85250901476729 40.75783998870212, -73.85258158431958 40.75797101879726, -73.85266187536826 40.758099418435606, -73.85249839463536 40.75807521073889, -73.85241112965468 40.757917523892594, -73.8523320667459 40.757757354888994, -73.85226132965651 40.757594950642265, -73.85232409033435 40.757581854906945, -73.85238761907623 40.75757111494545)), ((-73.83743679922802 40.72588577299676, -73.8375440488939 40.725852708134575, -73.83779708349097 40.72641546610314, -73.83769538065211 40.72644624091572, -73.83743679922802 40.72588577299676)), ((-73.83774677022467 40.7257929389298, -73.83784393123888 40.72576857921513, -73.83810637293077 40.72632187548416, -73.83800471657624 40.72635263622714, -73.83791440004248 40.72616723719442, -73.83782840851401 40.72598065190108, -73.83774677022467 40.7257929389298)), ((-73.88925395297188 40.766037037033975, -73.88920710346711 40.765653124887706, -73.88949821601932 40.765887731976235, -73.88939888238863 40.765978412026385, -73.88935324127121 40.766001618330804, -73.88930476830411 40.766021225281015, -73.88925395297188 40.766037037033975)), ((-73.85445490260186 40.75859111202301, -73.85427741451782 40.75852218263117, -73.85451609568308 40.75853362086526, -73.8545587234442 40.75857466302737, -73.85459659667134 40.75861831874455, -73.85462944012335 40.758664268895004, -73.85445490260186 40.75859111202301)), ((-73.89550509003426 40.76701753632561, -73.89550206929889 40.76700124436232, -73.89549126425293 40.76694292960493, -73.89548669913292 40.76691828766397, -73.89549046570295 40.76691894214535, -73.89550811670276 40.7670141945974, -73.89586090855549 40.76697677748097, -73.89586145704192 40.76697973973559, -73.89582559433681 40.766983543463404, -73.89550509003426 40.76701753632561)))",Q084A,15508,Q084A,Q-03,Q-03,Q-03,Q-03,"Astoria Blvd. and 48 St. to Union Tp., Park Drive East.","401, 403, 404, 406","19,21,22,24,29",114,"11103, 11367, 11368, 11369, 11370, 11371, 11375",Q,249.389,False,Grand Central Parkway Ext,No,100000441,PARK,20110712000000.00000,19370601000000.00000,,DPR/CDOT/SDOT,True,Grand Central Parkway Extension,Y,Grand Central Parkway Extension,EXWY,Parkway,http://www.nycgovparks.org/parks/Q084A/,Yes,"27, 35, 36","13, 14, 15, 16","6, 14",{14567485-5E02-4AD0-B8B6-516D78FC8636} +"MULTIPOLYGON (((-73.99473152714648 40.64586087634265, -73.99487745088534 40.64595123910378, -73.99477514367953 40.64604797624165, -73.99473152714648 40.64586087634265)))",B172,6134,B172,B-12,B-12,B-12,B-12,"New Utrecht Ave., 9 Ave., 39 St.",312,38,66,11219,B,0.029,False,Heffernan Triangle,Yes,100004249,PARK,20100106000000.00000,,,DPR,False,Heffernan Triangle,Y,Heffernan Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B172/,No,51,21,7,{855910ED-C184-44CF-BA58-B267DAAF21AD} +"MULTIPOLYGON (((-73.87643341122411 40.74828456468814, -73.87646339699079 40.748234631316684, -73.87654842629415 40.74827312190587, -73.87643341122411 40.74828456468814)))",Q068,5880,Q068,Q-04,Q-04,Q-04,Q-04,"Elmhurst Ave., Roosevelt Ave., 90 St., Case St.",404,21,110,11373,Q,0.006,False,Triangle Ninety XC,Yes,100000151,PARK,20090423000000.00000,19371004000000.00000,,DPR,True,Triangle 90,N,Triangle 90,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q068/,No,34,13,14,{38A93DC5-9C55-4E34-8A31-459EE9A13C9F} +"MULTIPOLYGON (((-73.96245931414859 40.76013726622714, -73.96259332097789 40.75995340693919, -73.96306069605119 40.760150951990276, -73.96306849479734 40.76015908694879, -73.9630739606675 40.7601647879953, -73.96307843275433 40.76017079309361, -73.96308222728034 40.76017706902655, -73.96308531939927 40.76018357256197, -73.96308768545126 40.76019025686611, -73.96308930888205 40.76019707510749, -73.96308942561788 40.760197992759224, -73.96309018024354 40.76020397955634, -73.96309029127245 40.76021092158275, -73.96308964199596 40.760217851658986, -73.96308823717804 40.76022472115932, -73.96308608631956 40.76023148145952, -73.9630832048421 40.76023808573824, -73.9630796129042 40.760244487175655, -73.96307533540173 40.760250638953345, -73.96307375769194 40.76025320668709, -73.96306930746076 40.760259036929064, -73.96306914628035 40.760259248495984, -73.96306384934984 40.76026495779864, -73.96305790837434 40.76027029138411, -73.96305137074935 40.76027520604318, -73.96305123805524 40.760275303255135, -73.96304240329229 40.76028166518848, -73.9630338426339 40.76028706186807, -73.9630328853936 40.76028766670005, -73.96302713747343 40.760290829229014, -73.96302285851844 40.760293183575946, -73.96301236649805 40.76029819331747, -73.9630071769487 40.76030032404631, -73.96300145553221 40.76030267342674, -73.96299017300427 40.76030660320719, -73.96297856866293 40.76030996736619, -73.9629766107795 40.760310425994376, -73.96296669344187 40.76031274971092, -73.96295459827228 40.76031493855109, -73.96294233763676 40.760316524899096, -73.96292996246446 40.76031750066675, -73.96291752960363 40.76031786227035, -73.96291497512257 40.76031781011928, -73.96289090702619 40.76031533138406, -73.96288338604276 40.76031455632812, -73.96286452371616 40.760312730329396, -73.96285973743275 40.76031163647426, -73.9628505639213 40.76030953894247, -73.96274671124928 40.760263074483085, -73.96272658695584 40.760254068329644, -73.9627246392889 40.76025320051345, -73.96272275555944 40.760252357932, -73.96272085762216 40.760251509042426, -73.96265305760771 40.760221174292965, -73.9625804340853 40.760188682128515, -73.96251257886058 40.76015987723563, -73.96245931414859 40.76013726622714)), ((-73.96318250450996 40.76020243501699, -73.96318201359522 40.76020141458825, -73.96319839747353 40.76020915335778, -73.96338592829873 40.760288415202766, -73.96337696335942 40.760303274282755, -73.96336502299437 40.76031686990821, -73.96335040820033 40.76032885908178, -73.96333348390293 40.76033894205051, -73.96331467658686 40.760346864106324, -73.9632944588942 40.76035242638742, -73.96327334014786 40.760355489477185, -73.96325184977003 40.76035597610059, -73.96321329550739 40.760351201927016, -73.96317638066697 40.760341490797316, -73.96314218990689 40.760327127619554, -73.96313449327857 40.760322734295926, -73.96314366035872 40.760317211732236, -73.96315114198309 40.760309931744075, -73.96315797126536 40.76030228594188, -73.96316261345446 40.76029626034838, -73.96316411621056 40.76029430943524, -73.9631695507455 40.76028603643507, -73.96317424879474 40.76027750565487, -73.96317819138983 40.76026875310887, -73.9631813595602 40.76025981931375, -73.9631837390732 40.76025074298676, -73.96318532161631 40.76024156554853, -73.96318609650872 40.760232327518324, -73.96318606372807 40.760223070319405, -73.96318522088308 40.76021383537427, -73.96318357387369 40.76020466230689, -73.96318250450996 40.76020243501699)))",M177,4624,M177,M-08,M-08,M-08,M-08,"E. 59 St., bet. 1 Ave. and 2 Ave.",108,5,19,10022,M,0.295,False,Honey Locust Park,No,100003798,PARK,20100106000000.00000,19380919000000.00000,1130 2 AVENUE,DPR/CDOT,False,Honey Locust Park,N,Honey Locust Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M177/,No,73,28,12,{D9009DE5-F827-420C-BA5D-AF30E4DE5970} +"MULTIPOLYGON (((-73.89338129903841 40.77056367328951, -73.89366740597931 40.77053681000177, -73.89371489448652 40.770799841479224, -73.89338129903841 40.77056367328951)))",Q491,5937,Q491,Q-01,Q-01,Q-01,Q-01,"21 Ave., 20 Ave., bet. 76 St. and 77 St.",401,22,114,11370,Q,0.099,False,Carlos R. Lillo Park,Yes,100000473,PARK,20090423000000.00000,20051025000000.00000,,DPR,True,Carlos R. Lillo Park,N,Carlos R. Lillo Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q491/,No,36,13,14,{DBC7E4C6-93D9-4B40-B941-4BF805B412D0} +"MULTIPOLYGON (((-73.91943970833157 40.67590575594664, -73.91949258710007 40.67530824619108, -73.92115550697609 40.67540053711915, -73.92115481094582 40.67540801001788, -73.92114987883987 40.67546095513094, -73.92114494672182 40.675513903845534, -73.92114001341525 40.67556685075774, -73.9211350824643 40.675619799472045, -73.92113015032382 40.675672747284445, -73.92112521817657 40.675725694195805, -73.92112028365378 40.67577864290602, -73.92111535267364 40.67583158981708, -73.92111042168567 40.67588453672759, -73.92110548832427 40.67593748363594, -73.92110055613468 40.67599043324608, -73.92109994276255 40.675997011989125, -73.91943970833157 40.67590575594664)))",B153,5486,B153,B-16,B-16,B-16,B-16,Howard Ave. bet. Pacific St. and Dean St.,316,41,73,11233,B,2.264,False,South Pacific Playground,Yes,100004710,PARK,20100106000000.00000,19400930000000.00000,338 HOWARD AVENUE,DPR/NYCHA,False,South Pacific Playground,Y,South Pacific Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B153/,No,55,25,8,{6798B281-AD32-4B3C-A74E-64E85549DEAE} +"MULTIPOLYGON (((-73.94676240794124 40.81151028198245, -73.94751484846341 40.81047918425926, -73.94768522099038 40.81055107729509, -73.9474735474263 40.81084391387974, -73.94759249437202 40.810894660631284, -73.9472545209014 40.811349783744404, -73.9472544912394 40.81134982425321, -73.94725386922121 40.811349559222315, -73.94713630789066 40.81129945301464, -73.94693547535044 40.81158331198478, -73.94676240794124 40.81151028198245)))",M211A,4878,M211A,M-10,M-10,M-10,M-10,W/s 7 Ave. bet. W. 127 St. and W. 129 St.,110,9,32,10027,M,0.67,False,St. Nicholas Playground South,Yes,100004108,PLGD,20100106000000.00000,19531022000000.00000,2400 FRED DOUGLASS BLVD,DPR/NYCHA,False,St. Nicholas Playground South,Y,St. Nicholas Playground South,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M211A/,No,70,30,13,{D5A5D7F8-B604-4C0F-8DBD-BF7360663B64} +"MULTIPOLYGON (((-73.94124833839845 40.58331403140423, -73.9413312435427 40.58331375498259, -73.94146409965556 40.58331331124861, -73.94153372288157 40.58362862191477, -73.94133840755785 40.5836468561251, -73.94124833839845 40.58331403140423)))",B240,6191,B240,B-15,B-15,B-15,B-15,E. 27 St. and Emmons Ave.,315,48,61,11235,B,0.155,False,Tucker Place,Yes,100004232,PARK,20100106000000.00000,19530326000000.00000,,DPR,True,Tucker Place,Y,Tucker Place,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B240/,Yes,41,22,8,{CE7ADF44-E58D-4F84-A948-889F7E081BAB} +"MULTIPOLYGON (((-73.90512615406934 40.88815910755681, -73.90530792761089 40.88771436807807, -73.90565335584377 40.887795679381234, -73.90562042000226 40.88787626396931, -73.90538876048528 40.88801551008186, -73.90543304308211 40.888024661990706, -73.90506914445861 40.88829859009248, -73.90512615406934 40.88815910755681)))",X224,5740,X224,X-08,X-08,X-08,X-08,Greystone Av bet. W 236 St and W 240 St,208,11,50,10471,X,0.284,False,MacLaughlin Playground,Yes,100004267,PARK,20100106000000.00000,19680725000000.00000,,DPR,True,MacLaughlin Playground,Y,MacLaughlin Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X224/,No,81,34,16,{5D642BCD-D6B2-4187-BE14-7BEB41E5827D} +"MULTIPOLYGON (((-73.92203480919704 40.67136116029951, -73.92206118803851 40.67108106647518, -73.9222492723862 40.671091147139265, -73.92222288473975 40.671371351763334, -73.92203480919704 40.67136116029951)))",B505,5289,B505,B-16,B-16,B-16,B-16,Ralph Ave. and Sterling Pl.,316,41,73,11233,B,0.116,False,Sterling Community Group,No,100003904,PARK,20100106000000.00000,20021120000000.00000,535 RALPH AVENUE,DPR,False,Sterling Community Group,N,Sterling Community Group,Greenthumb,Garden,http://www.nycgovparks.org/parks/B505/,No,55,25,9,{610B6B6A-D23B-4F5D-989F-DA27984675DE} +"MULTIPOLYGON (((-73.85201282223838 40.581557400853754, -73.85211066320542 40.581538496939906, -73.85211891632858 40.58155261068726, -73.8504364506782 40.58212447615941, -73.85040508946538 40.58211860623102, -73.8503305968304 40.581993669416256, -73.85004234427895 40.58185456224899, -73.85023591709624 40.58184905587974, -73.85033023691079 40.581843315469534, -73.85042395780965 40.58183338676032, -73.85051675725273 40.58181930355382, -73.85201282223838 40.581557400853754)))",Q416,5994,Q416,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. B. 128 and B. 130 Sts.,414,32,100,11694,Q,0.704,False,Park,Yes,100000108,PARK,20090423000000.00000,,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q416/,Yes,23,15,5,{4B77B161-7634-42EE-A026-9E8EAECD675C} +"MULTIPOLYGON (((-73.83657995957529 40.863842971735515, -73.83658578877063 40.86365546623428, -73.83657760174289 40.86365561042389, -73.83620387852478 40.86366217366645, -73.83623798584078 40.86273874678269, -73.83695946244264 40.86275613315052, -73.83692036304855 40.863861499193824, -73.83657929740501 40.86386433494781, -73.83657995957529 40.863842971735515)))",X232,5543,X232,X-11,X-11,X-11,X-11,Mace Ave. bet. Lodovick Ave. and Gunther Ave.,211,13,49,10469,X,1.623,False,Burns Playground,Yes,100004421,PARK,20100106000000.00000,19751008000000.00000,,DPR/DOE,False,Burns Playground,Y,Burns Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X232/,No,80,34,14,{131F3FAC-0E41-4A94-B24D-5CE597EEDA14} +"MULTIPOLYGON (((-73.75613313055041 40.674993999442904, -73.75635710625255 40.673462872173694, -73.75708270343287 40.6734989683818, -73.75687106131689 40.67578974089978, -73.75686472586081 40.675858313684635, -73.75684535984057 40.676067926015094, -73.75681174342631 40.67606666898371, -73.75676381089991 40.676015667667635, -73.75672184874296 40.67597970590348, -73.75667326817454 40.67594653524124, -73.75663220424194 40.67592472788856, -73.75656943010847 40.675897100466095, -73.75651559911304 40.67587660422872, -73.7564712418404 40.67586207053885, -73.75641566582789 40.67584914752173, -73.75625762117073 40.67582710492113, -73.75614114996739 40.67581169879464, -73.75597092564524 40.675789183327204, -73.75599003456283 40.67573397615705, -73.75600769296067 40.6756766118676, -73.75603595149556 40.6755749465408, -73.75605887264601 40.675478286677254, -73.7560720412499 40.675408906246, -73.75608625004827 40.675314471995485, -73.75610339981156 40.67519723114517, -73.75611820456184 40.675096026253726, -73.75613313055041 40.674993999442904)))",Q396,4935,Q396,Q-12,Q-12,Q-12,Q-12,"Springfield Blvd., Sloan St. bet. 139 Ave. and Eastgate Plaza",412,27,113,11413,Q,4.427,False,Montbellier Park,Yes,100000284,PARK,20090423000000.00000,19590911000000.00000,138-02 SPRINGFIELD BLVD,DPR,True,Montbellier Park,Y,Montbellier Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q396/,No,29,14,5,{6089B296-51A7-4633-981B-7D07B706AF18} +"MULTIPOLYGON (((-73.91327313915222 40.84558496661907, -73.9134508930043 40.84533963748815, -73.91373991070007 40.845457851857965, -73.91356332890842 40.84570156322092, -73.91355532574552 40.84571079447863, -73.91354586271838 40.84572012639731, -73.9135357814539 40.84572887523296, -73.91352694157253 40.84573592036551, -73.91351851888699 40.845741300799006, -73.91350489853295 40.84574961924448, -73.91349813469314 40.84575233996418, -73.9134904881965 40.84575537879596, -73.91348007646843 40.8457592692203, -73.91347056741809 40.84576203470489, -73.91345969823944 40.84576480277031, -73.9134478929351 40.84576705955287, -73.91343992578567 40.84576864474533, -73.91342923506211 40.84577005139668, -73.91341903510639 40.8457706677827, -73.91340968175288 40.84577042393231, -73.91339801214215 40.84576955340022, -73.91338649871112 40.84576803913183, -73.91336786057403 40.8457649796691, -73.91335696665394 40.84576215834753, -73.91334443525838 40.845758329043896, -73.91332896432999 40.84575170150024, -73.91330839113643 40.84574031641859, -73.91329417046497 40.845729738447496, -73.91328483813743 40.84572064726114, -73.91327438127529 40.84570912659949, -73.91326598756736 40.84569681685552, -73.9132597690163 40.84568421518591, -73.91325524391823 40.84566970574472, -73.91325308402887 40.845656474080286, -73.91325288842381 40.845641884148876, -73.91325334201444 40.845634140251875, -73.91325418821147 40.84562631650629, -73.91325622425948 40.8456172104532, -73.91325961009724 40.8456078424712, -73.9132642278679 40.845598566365105, -73.91327313915222 40.84558496661907)))",X148C5,5118,X148C5,X-05,X-05,X-05,X-05,Jerome Av bet. E 174 St and the Cross Bronx Exwy Entrance Ramp,205,14,46,10453,X,0.287,False,Jennie Jerome Playground,Yes,100004942,PARK,20100106000000.00000,19480923000000.00000,1650 JEROME AvNUE,DPR,True,Jennie Jerome Playground,Y,Jennie Jerome Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148C5/,No,77,33,15,{676218F5-CD27-434C-A97D-BBA39A0ABA6A} +"MULTIPOLYGON (((-73.80138728806727 40.599810977913066, -73.80130838893827 40.59906059194163, -73.80141826245286 40.59907474989072, -73.80138176930699 40.598710921680635, -73.80174467054256 40.59869321632846, -73.80173864525794 40.59863314363821, -73.80137581090051 40.59865151097213, -73.80125250740046 40.59747610667859, -73.80394967567275 40.59731301782657, -73.80397648858406 40.597586308890605, -73.80433552135 40.597565253224325, -73.80430870579364 40.59729196314205, -73.8051513203014 40.597242544082064, -73.80557846595788 40.5980222646178, -73.80432009554032 40.59935882532587, -73.80348336179262 40.599709391006456, -73.80138728806727 40.599810977913066)))",Q464,5569,Q464,Q-14,Q-14,Q-14,Q-14,Beach 72 St. bet. Bayfields Ave. and Hillmeyer Ave.,414,31,100,11692,Q,19.556,False,Brant Point Wildlife Sanctuary,No,100000421,PARK,20090423000000.00000,19920922000000.00000,,DPR,False,Brant Point Wildlife Sanctuary,N,Brant Point Wildlife Sanctuary,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q464/,Yes,31,10,5,{1AEAE35B-1374-45AC-8866-7035922C15F1} +"MULTIPOLYGON (((-73.86954287127035 40.87830765431305, -73.86956208862111 40.878283975186825, -73.86976347107972 40.8783343805182, -73.86976481680452 40.878352974415115, -73.86974568742026 40.87839778722971, -73.8697264780827 40.87844282417205, -73.86970724499126 40.878487861084025, -73.8696880201768 40.87853289890233, -73.86966879535036 40.878577929513135, -73.86966172039739 40.87859451121524, -73.86964957048376 40.878622967324254, -73.86962948436947 40.87867279295453, -73.86960939823565 40.87872261317794, -73.8695893120735 40.87877243249693, -73.86956922588833 40.878822248210014, -73.86955556655052 40.8788653400353, -73.8695419060174 40.8789084273549, -73.8695282549684 40.87895150928032, -73.86951458727093 40.878994601990854, -73.86950092787107 40.8790376893059, -73.86948753933635 40.87908964763266, -73.86947415908726 40.87914160506629, -73.86946077051063 40.87919356338901, -73.86944738191313 40.87924552170963, -73.86943399447225 40.879297484531996, -73.86942067507658 40.87934801475296, -73.86940736394257 40.87939855668766, -73.86939405162666 40.87944908601218, -73.86938073214725 40.87949962793348, -73.86936742215131 40.879550163560104, -73.86935410264381 40.879600699173984, -73.86934079260563 40.87965123569709, -73.86932748017789 40.87970177041451, -73.86931416060966 40.87975230602238, -73.86928486499859 40.879871492039655, -73.86925145362812 40.879990053848765, -73.86921394682 40.88010790322143, -73.8691721609629 40.88023995832729, -73.869115934672 40.880409506858946, -73.86910010736375 40.88045487889648, -73.86897125816485 40.880803130499345, -73.86896448424928 40.880820868720434, -73.86894598471588 40.880869335377426, -73.86892749939094 40.880917802947685, -73.868908992685 40.880966269589806, -73.86889049187356 40.88101474163819, -73.86885848920888 40.8811017770357, -73.86882926163382 40.88118937117795, -73.86880281874616 40.88127747545153, -73.86878794047472 40.88132930771622, -73.86877306335577 40.88138114538276, -73.86875817790859 40.88143298303744, -73.86874330075212 40.881484816196696, -73.86872841525852 40.88153665384658, -73.86871353805927 40.88158848520006, -73.86869865250497 40.881640330048974, -73.86868377525754 40.88169216229812, -73.8686688884846 40.88174399993698, -73.86866179459192 40.88177407625413, -73.86865346121809 40.88180396565966, -73.86864389434878 40.88183364024504, -73.86863309758817 40.881863076601356, -73.8686211006707 40.88189223694169, -73.8686078976983 40.88192110324918, -73.86858915258946 40.88196987302453, -73.86857040745313 40.88201864279643, -73.86855166228747 40.882067413465386, -73.86853292421489 40.88211618323842, -73.86851417069086 40.88216495299043, -73.86849543255076 40.88221372905992, -73.8684766872876 40.882262493411545, -73.86845794198805 40.88231126226205, -73.8684391978421 40.88236003381195, -73.86842094194648 40.88240788201484, -73.86840267177453 40.88245573650158, -73.86838440988159 40.882503590994496, -73.86836613966953 40.88255143917121, -73.86834787772399 40.8825992936575, -73.86832961457637 40.882647142736204, -73.86831135139353 40.88269499631403, -73.86829308936912 40.8827428507904, -73.86827482732909 40.882790699860514, -73.8682565652521 40.882838554330235, -73.86823783462296 40.8828869413503, -73.86821910396655 40.88293532836693, -73.86820037446583 40.88298371718239, -73.8681816437531 40.883032105092546, -73.86816291302567 40.88308048669583, -73.8681441834449 40.8831288746004, -73.86812545263972 40.88317726790308, -73.86810672182864 40.88322565039645, -73.86808799216612 40.88327403829061, -73.86806926128982 40.883322426179916, -73.86805053869342 40.883370813174814, -73.86803088585583 40.883420999176764, -73.86801124841462 40.88347118429203, -73.86799160976801 40.88352136399925, -73.86797196514686 40.88357154999927, -73.8679523347356 40.88362173511126, -73.86793268887041 40.88367192020185, -73.86791304417098 40.88372210078754, -73.86790119984362 40.883752362514336, -73.86779019114236 40.884029025375995, -73.86777177643397 40.88407452931246, -73.86775137524174 40.88412493862476, -73.86773098112673 40.88417535334408, -73.86771057987083 40.884225763548656, -73.86769017857497 40.884276178251675, -73.86766978437792 40.88432658755582, -73.86764938184272 40.88437699774687, -73.8676296123544 40.884426473954214, -73.86760984875663 40.88447595646796, -73.86759006378324 40.88452543355045, -73.86757029420491 40.884574910646776, -73.86755052342315 40.884624381434534, -73.86753075377518 40.884673863926075, -73.867510975803 40.884723341001354, -73.86749120609618 40.884772823485264, -73.86747148016197 40.88482116509848, -73.86745175776038 40.884869505811466, -73.86743203412925 40.8849178537232, -73.86741231048201 40.88496619532772, -73.86739258560877 40.88501454232998, -73.86737286190416 40.88506288392689, -73.86735313817087 40.88511122552002, -73.86733341439806 40.88515957251226, -73.86731369179395 40.8852079140991, -73.86729396559076 40.88525626108103, -73.86727424292923 40.8853046026603, -73.86725297110314 40.88535628145991, -73.86723170041975 40.88540796565943, -73.86721043563587 40.88545964986131, -73.86718916489887 40.88551132774857, -73.86716789292797 40.885563012833956, -73.86714662923137 40.885614697023975, -73.86712535720687 40.88566637579711, -73.86710408632506 40.88571805997014, -73.86708321178378 40.88576733309114, -73.86706233839801 40.885816606209296, -73.86704146379485 40.885865879321905, -73.86702058916073 40.885915152430236, -73.86699971566952 40.88596443183915, -73.86697883266785 40.886013704929475, -73.8669579591274 40.886062978026544, -73.86693708435865 40.886112256520896, -73.86691734943797 40.886158760124296, -73.86689760497583 40.88620527451877, -73.86687786286996 40.88625178350933, -73.86685811953906 40.8862982978976, -73.86683837619138 40.88634480687922, -73.86681863992439 40.886391321268206, -73.8667988965233 40.886437829341766, -73.86677824592638 40.88648643990175, -73.86675759527763 40.88653506126337, -73.86673694462036 40.886583671815124, -73.86671628442797 40.88663228865512, -73.86669563371389 40.88668089739758, -73.86667498294432 40.88672951874271, -73.86665433097966 40.886778129276514, -73.8666336801605 40.886826745210485, -73.86661318428426 40.886875001124665, -73.86650737296308 40.88712143206821, -73.86648521293965 40.887172261424624, -73.86646325437296 40.88722261104997, -73.86644129576761 40.887272963372155, -73.8664193442519 40.88732331389696, -73.86639738558183 40.88737366530937, -73.86637543398693 40.88742402212824, -73.8663534752503 40.887474373531354, -73.86633151648228 40.88752472402934, -73.86630956479846 40.88757507543141, -73.8662928175156 40.88761294220744, -73.86627606666485 40.8876508035738, -73.86625931814456 40.88768867664645, -73.86623840776929 40.88773685906733, -73.86621749024431 40.88778504147578, -73.86619658099495 40.88783322388958, -73.86617566934211 40.88788140629642, -73.86615475884561 40.88792958870047, -73.86613384120116 40.887977770191526, -73.86611293064216 40.888025953487556, -73.86609202005471 40.88807413587894, -73.86607110112914 40.88812231915689, -73.86605019166755 40.88817050154121, -73.86602928098917 40.8882186839199, -73.86600663236503 40.888269607158946, -73.86598399795592 40.888320525006634, -73.86596134807408 40.88837144913492, -73.8659386910399 40.88842237234955, -73.86591605651583 40.88847329558539, -73.86589339941048 40.88852421969064, -73.86587075770849 40.88857513750549, -73.86584810765493 40.888626060708624, -73.86582545875328 40.88867698390827, -73.86580281574795 40.88872790801037, -73.86578016677684 40.88877883120012, -73.86575751658272 40.88882975528408, -73.8657348746726 40.88888067306938, -73.86571222559564 40.88893159714487, -73.86568958242049 40.88898251942135, -73.86566904028163 40.88902775126298, -73.86564848268928 40.8890729830826, -73.86562794049452 40.88911821491615, -73.86560739827179 40.88916344674565, -73.86558684890161 40.88920867856284, -73.86556629831689 40.889253910374556, -73.86554575601029 40.88929914219196, -73.86552403935971 40.88934651939673, -73.8655023143721 40.88939389658734, -73.86549006925374 40.889420633967276, -73.86542525990339 40.88956199151265, -73.86541544616817 40.889583396337095, -73.86539372933186 40.88963077351487, -73.86537201247559 40.889678145285195, -73.86535029438897 40.889725523353036, -73.86532857745982 40.88977290051726, -73.86530686050881 40.88982027317456, -73.86528391950971 40.889871472366025, -73.8652609725349 40.889922675147474, -73.86523803265167 40.8899738743302, -73.86521508561532 40.89002507259914, -73.86519214446565 40.89007627627283, -73.86516919736961 40.890127469128714, -73.86514625733402 40.890178673694166, -73.86512331134291 40.89022987194431, -73.86510037598492 40.890281075604726, -73.8650774228035 40.8903322738364, -73.86505500878424 40.89037972937224, -73.86503259473302 40.89042718490333, -73.8650101794522 40.89047464583116, -73.86498776533693 40.8905221013527, -73.86496535118971 40.89056955686948, -73.86494292987982 40.890617017776044, -73.86492051566859 40.890664473283266, -73.86489810142713 40.89071192788519, -73.86487568714817 40.890759385183856, -73.86485327165617 40.8908068397749, -73.86483085731872 40.89085429436257, -73.86480745276583 40.890904351091095, -73.8647840481868 40.89095440331201, -73.86476064238961 40.89100445372533, -73.86473723774198 40.89105450503534, -73.8647138330591 40.89110455634012, -73.86469042715616 40.89115460673785, -73.86466702240274 40.89120465803217, -73.86464361880074 40.89125470932275, -73.86462021160362 40.891304760603916, -73.86459680555792 40.89135481188123, -73.86457340185012 40.89140486315614, -73.86455000404212 40.891454913532314, -73.86452659670954 40.89150496209117, -73.86450319170389 40.89155501605051, -73.86447957587437 40.89159962001585, -73.86445594459805 40.89164421855498, -73.8644323215853 40.89168882250154, -73.86440870448689 40.8917334201465, -73.86438484509927 40.89177694502284, -73.86425383826156 40.89200256267691, -73.86411305841033 40.89222476843478, -73.86401013601821 40.89237576587213, -73.86390166783802 40.892524507261946, -73.86378774544227 40.89267088193704, -73.86366846515821 40.8928147765341, -73.86363042569468 40.89285883559611, -73.86359020763238 40.892903980758184, -73.86354997407416 40.8929491330915, -73.86350975588778 40.89299428542868, -73.86346952815539 40.89303943683973, -73.86342930156428 40.89308458373532, -73.86338907610703 40.89312972971753, -73.86335110006043 40.89316816072437, -73.86331312396811 40.89320659261896, -73.86327514071196 40.89324502449234, -73.86323716573143 40.89328345005942, -73.86319918832069 40.893321881914304, -73.86315902733192 40.89336092890121, -73.86311886510931 40.893399975872455, -73.86307870166395 40.89343901742513, -73.86303853934513 40.89347806526835, -73.86299837696984 40.89351711759968, -73.86295821458079 40.89355615370808, -73.86292008145404 40.893592257529164, -73.86288195303065 40.89362836224356, -73.86284381983407 40.89366445973558, -73.86284179498634 40.893666377165204, -73.86284058221771 40.89366752564443, -73.86281885106943 40.893688101133144, -73.86280568420786 40.89370056441581, -73.86276489967263 40.89373907833528, -73.86271627119072 40.893777030914116, -73.86271651558441 40.893770739511446, -73.86272634113935 40.89375467482548, -73.8627354350051 40.89373837334141, -73.8627438173331 40.89372184588909, -73.8627514738262 40.893705120366754, -73.8627584056343 40.89368821478564, -73.86276457357576 40.89367113990517, -73.86276999421982 40.893653917356744, -73.8627746675186 40.89363657055305, -73.8627782791184 40.893620195011614, -73.86278114329258 40.89360373483635, -73.86278326593224 40.89358721074555, -73.86278464106555 40.89357064164232, -73.86278525322373 40.89355404821949, -73.86278512372819 40.89353744941259, -73.86278423949469 40.893520860514315, -73.86278260759724 40.893504304045244, -73.86278022563894 40.89348779170873, -73.86277709708733 40.89347136853322, -73.86277322788743 40.89345502912274, -73.8627686239154 40.89343880139933, -73.86276327920508 40.89342270156449, -73.86275720914624 40.89340674764615, -73.86275042555022 40.89339096667285, -73.86274293195328 40.893375370354924, -73.86273473425375 40.893359975808494, -73.86272445930527 40.89334257250896, -73.86270661882894 40.89331510808827, -73.86268757055068 40.89328812038589, -73.8626673286518 40.89326163823369, -73.86264591563695 40.893235682368946, -73.86263147599455 40.89321921871469, -73.86261656121361 40.8932029886194, -73.86260863709713 40.8931947667582, -73.86259912383953 40.89318492393146, -73.86258109364785 40.8931671908144, -73.86256010417004 40.89314762708544, -73.86253841009014 40.893128511855906, -73.86251571639747 40.89310961965267, -73.86248660089804 40.89308653883948, -73.86246962040691 40.89307308426255, -73.86243705145938 40.89304728885991, -73.86240448966446 40.89302148985453, -73.86237023314561 40.892991206200875, -73.8623504108192 40.89297366721618, -73.86233599209383 40.89296091805292, -73.86233067663771 40.89295368081272, -73.86233964196414 40.89293813020922, -73.86270236022047 40.89230897579896, -73.86285994288771 40.89203563691699, -73.8628564537919 40.892035248264214, -73.8632461501182 40.89134299102225, -73.86505328198173 40.88809144735507, -73.86515689971344 40.88790500023372, -73.86516767624812 40.887885609137044, -73.86519824803955 40.88783059719725, -73.86525823867326 40.887722649368655, -73.86533293789634 40.887588235355764, -73.86537076792028 40.88752016397294, -73.86541894077122 40.88743348077113, -73.86550205177176 40.887283929362916, -73.86600065038512 40.886386723957315, -73.86603578176174 40.88632350553568, -73.86605421496255 40.88629033408211, -73.86608106149326 40.886242026198005, -73.86613732310481 40.88614078218483, -73.86614695704796 40.88612344547749, -73.86617027140262 40.88608149271358, -73.86622974443802 40.8859744694492, -73.86625948206948 40.885920958256314, -73.86631015454887 40.885829771519255, -73.86634310254023 40.885770481094795, -73.8663814449329 40.88570148425296, -73.8664355228438 40.88560416818301, -73.86644294900577 40.885600171410125, -73.86645990977237 40.88556028235214, -73.86647879624621 40.88552629821124, -73.86649017933419 40.88550581179243, -73.86649043893169 40.885505345640475, -73.86650451803064 40.88548000961423, -73.86651761707238 40.8854564374073, -73.86654277468976 40.885404495791896, -73.86656829214773 40.88534705171033, -73.86657848975695 40.8853183334604, -73.86658154226892 40.88530847935748, -73.8665852579227 40.88529927617264, -73.86658491962054 40.88529757476163, -73.86659201467576 40.88527467007014, -73.86660004197405 40.885245436932294, -73.86660934391169 40.88519829908205, -73.86661365026006 40.88516730479229, -73.86661689103748 40.88513102701376, -73.86661816205823 40.88507767012209, -73.86661742977107 40.88505471045772, -73.86661157449885 40.88499253676531, -73.86659976010512 40.88492942057853, -73.86687223068351 40.884394700840396, -73.86680825576894 40.88432127694909, -73.86644498382499 40.884206933832665, -73.8674256629478 40.8821474026632, -73.86747494956256 40.88204389239348, -73.86762916121884 40.88172001720277, -73.86786909637756 40.881216100103764, -73.86821248023003 40.88049490397589, -73.86858822240262 40.87970572523396, -73.86860350399422 40.879673629432894, -73.86861962190602 40.879639776829215, -73.86863660711381 40.87960410082172, -73.86864926171681 40.879577522015026, -73.86865338977022 40.87956885141229, -73.86868415534563 40.87950423318826, -73.86870769769115 40.87945478536335, -73.86873300200821 40.87940163763128, -73.86875004427824 40.879365841905674, -73.86876939893637 40.87932518977364, -73.86877714150373 40.87930892946089, -73.86880192509692 40.879256872511824, -73.86882231973134 40.87921403786894, -73.86883228532375 40.87919310654624, -73.86884245344055 40.8791717486214, -73.86885328750537 40.87914899479548, -73.86886888455216 40.87911623295364, -73.86887951607221 40.87909390392524, -73.86889609594287 40.87905908017795, -73.86891398388693 40.8790215078234, -73.86892528039006 40.87900126777747, -73.86893154060851 40.878990053005374, -73.86894740519537 40.87896537513698, -73.86896204044615 40.878942610308115, -73.86899097148468 40.878902561529856, -73.86901080208834 40.8788761177949, -73.86903649219273 40.878844915322965, -73.86905525967919 40.87882212005184, -73.86906515062915 40.878810107056715, -73.86909268529314 40.878780834609586, -73.86912517402365 40.8787462963166, -73.86914131653316 40.878730439016394, -73.8691666535994 40.87870555033691, -73.86919815221087 40.87867372317066, -73.86922370069327 40.87864688245984, -73.86924948781488 40.87862114961397, -73.86927191200095 40.87859877357455, -73.8692825428009 40.87858816525935, -73.86931702303578 40.87855375973783, -73.86933088834597 40.878539924129306, -73.86935447148531 40.87851639135803, -73.86937689560072 40.8784940152978, -73.86939548844167 40.87847546287245, -73.86942365881872 40.878447352693954, -73.8694543349968 40.87841674288645, -73.86946924011714 40.87839837808149, -73.86949484627041 40.87836682782192, -73.86952270130575 40.87833250569508, -73.86954287127035 40.87830765431305)), ((-73.87213909691577 40.871796308960825, -73.87216729710599 40.8715050256494, -73.8721711915614 40.871505678315685, -73.87325621777111 40.87168752496493, -73.87476776508845 40.871890032033704, -73.87441888713155 40.872364226845654, -73.87270389784987 40.87473226698935, -73.8726514026574 40.87481103875047, -73.87249969672555 40.875038391403535, -73.8724399476126 40.87511602493686, -73.87239924893917 40.87516315834309, -73.87234405512797 40.87521916532487, -73.87229009832284 40.8752709791729, -73.87227839959056 40.87528099766895, -73.87226480076524 40.87529573622286, -73.87225555966477 40.875305989762815, -73.87224551707915 40.87531475750913, -73.87223173579432 40.87532380927169, -73.87221823575808 40.87533219678339, -73.87221354007916 40.87533597993943, -73.87220944626299 40.8753407948212, -73.87219865432897 40.87535057388275, -73.8721860571946 40.875361373898976, -73.8721524356611 40.87538394792517, -73.87213392215396 40.875399110551754, -73.87210814747102 40.87541528988466, -73.87206556100686 40.87544017721049, -73.8720050931855 40.87547595771058, -73.87192446260757 40.875514012049756, -73.87190752653862 40.87552317643514, -73.87188003755442 40.87554178423264, -73.87186308339963 40.87555909531134, -73.87185276142174 40.87556997525907, -73.87183638837897 40.87558491869413, -73.87182036326999 40.875594761245715, -73.87179522473608 40.87560703039316, -73.87176204698757 40.87562019649364, -73.8717507557201 40.87562370665731, -73.87171695432069 40.875634214710054, -73.87169014401873 40.87564288632547, -73.87167015465725 40.87565060289752, -73.87164467029133 40.8756619315175, -73.8716201132458 40.87567284873963, -73.87156523792233 40.87568624998498, -73.87153750375826 40.87575062205558, -73.87152577872023 40.8757778361742, -73.87150585840709 40.87582407209119, -73.87099745324886 40.87700406953707, -73.87088003243099 40.87697293891272, -73.87087964863193 40.87692620944209, -73.87088283973281 40.87682613453825, -73.87089806078812 40.876703327654866, -73.87091027298504 40.87658734130231, -73.87092849508527 40.876462263132815, -73.87095271057292 40.87633719256017, -73.87098285202917 40.87624624541079, -73.8710431585448 40.876014741399, -73.87110719179269 40.87581095584403, -73.87119318400434 40.8755372817266, -73.87137780959509 40.875002527177315, -73.87182150578444 40.87333807742814, -73.87212382997463 40.871944135252676, -73.87213909691577 40.871796308960825)), ((-73.86950033745319 40.88043254439491, -73.86951894240039 40.88038329614154, -73.8695276223229 40.88036031560053, -73.86957448756537 40.88023625433723, -73.8695933523992 40.880186314789235, -73.86960276930428 40.8801613846179, -73.86961195602214 40.88013706651732, -73.86963056080397 40.880087818243325, -73.86964806357585 40.88004149170477, -73.869667093975 40.879842278456344, -73.86967594893551 40.8798177015347, -73.86969442351487 40.87976641259506, -73.86971289924332 40.87971512815575, -73.86973136545903 40.87966384010037, -73.86974983282383 40.879612556545304, -73.8697683144059 40.87956126850045, -73.86978678884276 40.87950997954366, -73.86980526442694 40.879458695987644, -73.86982373880502 40.87940740792444, -73.86984221315639 40.879356118957304, -73.86986068746866 40.87930483538965, -73.86987152609701 40.87927473349237, -73.86987915464455 40.8792535464076, -73.86988533008173 40.87923647831704, -73.86989588689187 40.87920729819906, -73.86991261082342 40.87916104367493, -73.8699293347317 40.879114789148, -73.86994605861676 40.87906853461826, -73.86996278365255 40.87902228639042, -73.86997950749102 40.87897603185504, -73.86999623130623 40.87892977731686, -73.87001242257938 40.878883433027745, -73.87001995684702 40.878861876626, -73.87002862095007 40.87883708784353, -73.8700448121675 40.87879074895199, -73.87006100218827 40.8787444037531, -73.87007720167414 40.87869806036314, -73.8700787419277 40.878693652407044, -73.87007925494947 40.87869218338805, -73.87009339165326 40.87865171335793, -73.87010958277865 40.87860537535626, -73.87012727938016 40.87855480495111, -73.87014497357148 40.87850423994305, -73.87014731909953 40.8784975447517, -73.8701477104186 40.878496427686265, -73.87015928654442 40.878463379290054, -73.87016267605112 40.8784536695382, -73.87016890855226 40.878435858591644, -73.87068001194987 40.878563782158245, -73.86990164079859 40.88041940189473, -73.86991887721393 40.880413350234434, -73.86958277062135 40.88121152883486, -73.86927347304307 40.88195078179862, -73.86775401733142 40.885471874931454, -73.86755451099512 40.88593416688168, -73.86705116645904 40.88693955355611, -73.86693125631315 40.88723606541988, -73.86682529214468 40.887498089288364, -73.86635369124086 40.88847594988727, -73.86617348407096 40.888912704853254, -73.86598627115622 40.88934775935779, -73.86579208098074 40.88978104946597, -73.86559094321964 40.890212510342586, -73.86538288517578 40.890642078049304, -73.86516794008763 40.89106968865353, -73.86494613882161 40.891495279119525, -73.8647175146238 40.89191878461226, -73.86460662620331 40.89212435440481, -73.86449161974149 40.89232861714705, -73.86437252378221 40.8925315260351, -73.86422634430836 40.89276982535158, -73.86407452185934 40.893006084532175, -73.86391710757368 40.893240226173454, -73.86375415140022 40.893472175571546, -73.86355387504683 40.89376635461048, -73.8633481379551 40.894058356653346, -73.86330279973512 40.89412424193273, -73.86325805423938 40.8939740617775, -73.86325292986061 40.893946535965995, -73.86324953208856 40.89391901129906, -73.86324442659195 40.89388231136156, -73.86323929953215 40.89385609485192, -73.86323762146456 40.89383250464237, -73.86323768347995 40.893802362759665, -73.86324292647059 40.89377222791526, -73.86324815597729 40.893748644988186, -73.86326202352687 40.89372376208648, -73.86327417137116 40.893694945625704, -73.8632880431043 40.89366744141183, -73.86331228603079 40.89363601795666, -73.86333307995034 40.893601969999594, -73.86336423577289 40.89356793340343, -73.863444947238 40.893478717837475, -73.86344755513494 40.893477172987495, -73.8634567310073 40.8934670596808, -73.86349576906976 40.89342408154371, -73.86353480590621 40.893381097988765, -73.86355047080528 40.89336385509558, -73.86357384979918 40.89333812073206, -73.86361288653465 40.89329513715001, -73.86365192440627 40.89325215355587, -73.86368780689058 40.89321264930103, -73.8638345570353 40.89303838580013, -73.86397387915336 40.892860646484785, -73.86410562814002 40.89267961310876, -73.86422967194146 40.89249547104244, -73.86434588087475 40.89230840925982, -73.86445413712276 40.892118619449434, -73.86455432998544 40.89192629690882, -73.86466786394489 40.89171921384236, -73.86475517100828 40.891555558287, -73.86615459913767 40.88855699530813, -73.86617604524768 40.88850808863889, -73.86619749131532 40.88845918736813, -73.86621893499094 40.88841027978679, -73.86624038099364 40.88836137940763, -73.866261832923 40.888312466424125, -73.86628328598377 40.88826356514389, -73.8663047247869 40.88821465753932, -73.86632616830295 40.88816575083635, -73.86634761416056 40.88811684413166, -73.86636905878918 40.88806794282408, -73.86637520607547 40.88805392936487, -73.86639051170489 40.888019035218285, -73.86641195628125 40.88797012849895, -73.86643399744959 40.887919558366384, -73.86645604689036 40.88786898823869, -73.8664780939244 40.88781841810358, -73.86649195992793 40.88778658753325, -73.8665001267007 40.88776784074345, -73.86652217484159 40.887717276903786, -73.8665881126161 40.8875649871948, -73.86660996958655 40.88751383239635, -73.86663181939315 40.88746268298799, -73.86663199583387 40.88746226896798, -73.86665366798144 40.887411532673156, -73.86667552485095 40.88736037786084, -73.86669737335754 40.88730923474062, -73.86671922302965 40.887258085313775, -73.86673924033641 40.88721122818792, -73.86676035678346 40.88716179153212, -73.86676228090431 40.88715728591671, -73.8667853822013 40.887103217642384, -73.86678720378683 40.88709895594007, -73.86680663324744 40.88705348757386, -73.86682848275326 40.8870023372234, -73.8668324561387 40.88699303887917, -73.86685033934289 40.88695118777705, -73.86687218640657 40.8869000383151, -73.86689403580793 40.88684888975177, -73.86691589229846 40.88679773939103, -73.86693774044787 40.88674658991663, -73.86695958975008 40.88669544043892, -73.86698144495148 40.88664429096348, -73.86700329418646 40.886593141476524, -73.86702514220137 40.88654199198364, -73.86704699848833 40.886490842495654, -73.86715034213265 40.88624334561745, -73.86721840176078 40.886080523156366, -73.86725652202854 40.88598929635355, -73.8673614486452 40.88573856383515, -73.86746647883 40.88548785834417, -73.86757161852168 40.88523717628525, -73.86759309021365 40.8851850870333, -73.86761456188093 40.885132993274404, -73.86763436669735 40.885084954293646, -73.86763437742968 40.885084927291345, -73.86763499145114 40.88508343678899, -73.86763603469208 40.88508090401482, -73.86765750629385 40.88502880934646, -73.86767897784944 40.884976720976994, -73.86770044937316 40.88492463170255, -73.86772192087399 40.884872537020705, -73.86774339234117 40.88482044233437, -73.86775007852907 40.8848042286213, -73.86775093099264 40.88480216207967, -73.86776487087045 40.88476835935799, -73.86778635058658 40.884716259269254, -73.86780781363476 40.88466417086331, -73.86782928614313 40.88461208156326, -73.8678507574528 40.88455998145153, -73.86790680763275 40.88442274383582, -73.8679144382716 40.884403505556165, -73.86792646084446 40.88437316299159, -73.86793516116863 40.884351202861275, -73.86794474983203 40.88432702584668, -73.86800034641847 40.88418678093442, -73.86801809273202 40.884142011896294, -73.86803954520414 40.884087893731916, -73.868123436051 40.88387627516456, -73.86814248434199 40.883828230719466, -73.8681546617179 40.88379750109553, -73.86816320805605 40.88377593338236, -73.8681839471743 40.88372362975527, -73.86820467674488 40.883671337819365, -73.8682254074818 40.88361903957724, -73.86824613818432 40.88356674223137, -73.86826686886667 40.88351443857787, -73.86828705731104 40.88346272502103, -73.86830724574712 40.8834109997539, -73.86832743413932 40.8833592807861, -73.86845362730702 40.883035979533894, -73.86845952550408 40.88302087337663, -73.86846876036223 40.882997221794426, -73.86848894969143 40.882945501895314, -73.8685091378116 40.88289377748842, -73.86852932589146 40.88284205757995, -73.86854951395064 40.88279033226449, -73.86856970197657 40.88273860784554, -73.8685898899622 40.882686887924955, -73.86861007910112 40.882635168902226, -73.8686302670346 40.882583443570724, -73.86865045492598 40.88253172363807, -73.86867064279491 40.88247999919899, -73.86869083062348 40.88242827925829, -73.86871049078577 40.88237758797058, -73.86873015211702 40.88232689037699, -73.86874980391416 40.882276199072194, -73.86876946399722 40.8822255023701, -73.86878919082778 40.88217463554798, -73.86882645253871 40.88207855266173, -73.86882794319483 40.88207470927418, -73.86882844047686 40.882073427545116, -73.86884809688064 40.88202273082367, -73.86886775679244 40.88197204490831, -73.86888741550918 40.88192134818194, -73.86890707419768 40.881870650551285, -73.86892672809796 40.88181995921481, -73.86894638790051 40.88176926788124, -73.86896604767313 40.881718576543854, -73.86897877657927 40.88168573760564, -73.86898569912299 40.88166787888982, -73.8690053588356 40.881617187544805, -73.86902501138894 40.8815665015908, -73.86904858134643 40.88151954089266, -73.869072152411 40.88147260360324, -73.8690957222789 40.88142565460094, -73.86911929210282 40.88137871099638, -73.86914286189347 40.88133176738657, -73.8691629734451 40.881281667244025, -73.86918308971394 40.88123156620238, -73.86920319882326 40.881181470551624, -73.86922331620549 40.88113137580683, -73.86924342052964 40.88108126933692, -73.86926352954802 40.881031173674266, -73.86928363854491 40.880981073505275, -73.86930375581835 40.88093097244118, -73.86932386593219 40.880880876768025, -73.86934397602461 40.88083077658842, -73.86936408608851 40.880780675504404, -73.86938419491261 40.880730586121366, -73.8694043049265 40.880680479626506, -73.86942441608412 40.88063037943239, -73.86944453196065 40.880580277438725, -73.86946312867317 40.8805310354897, -73.86948173366488 40.88048179264615, -73.86950033745319 40.88043254439491)), ((-73.87019731297733 40.87651747774527, -73.87041423186855 40.875987180736, -73.87040932716738 40.87581630933369, -73.87040667430048 40.87572389101712, -73.87040579561959 40.87569325180808, -73.87040341828786 40.87561042130051, -73.87046426816427 40.875573901866666, -73.87047399679017 40.87525325510122, -73.87047614435495 40.8751824592948, -73.87050348380635 40.87428137543127, -73.87052348524651 40.87362214549729, -73.87052797660779 40.87347409845521, -73.8705303648845 40.873395378592626, -73.87055289854852 40.8726526535434, -73.87080788593634 40.87167624807978, -73.8707978330619 40.871341278245424, -73.871901642059 40.871475162596965, -73.87190280907487 40.87147530436875, -73.87183875424039 40.871810046833126, -73.871835624413 40.87180965614673, -73.87183322307123 40.87182090058933, -73.87182680438454 40.87185092657461, -73.87181648448154 40.87189917862875, -73.87180616455322 40.8719474360845, -73.87179308649549 40.87199816321782, -73.87178000721946 40.872048896651314, -73.8717669208092 40.87209962827394, -73.87176226181909 40.87211770852005, -73.87175384861953 40.872150357208994, -73.87174076216766 40.872201089728215, -73.87172768399799 40.87225182315525, -73.87171600663913 40.872297111079114, -73.87161012231412 40.87270638085988, -73.87154932583218 40.87293249082689, -73.87148816249481 40.873156694909916, -73.8714261614883 40.87338075754235, -73.87135888770331 40.87362036209613, -73.87129707042523 40.87383731188487, -73.87129065874909 40.87385981335295, -73.87122146632028 40.87409910679937, -73.87115131041925 40.87433823613025, -73.87108019222242 40.874577201345254, -73.87106510692472 40.87462736422578, -73.87104976884223 40.874677565542505, -73.87103443193156 40.87472776235562, -73.87102611162668 40.87475497753187, -73.87102095037343 40.87477186493145, -73.87102001793686 40.8747749138445, -73.87101994151072 40.87477517219933, -73.87100485558643 40.87482622295146, -73.87099061734077 40.874874486735855, -73.87097637908487 40.87492274511512, -73.87096214198245 40.874971009796965, -73.87094790367476 40.875019273574836, -73.87093365822837 40.87506753734257, -73.87091995721964 40.875114003441276, -73.87082532663537 40.87542434730971, -73.87080977910385 40.87547530746511, -73.87080101857983 40.87550369276399, -73.87079541818883 40.87552184034366, -73.87079292185783 40.87552991493125, -73.87078105015841 40.875568361505785, -73.8707666820974 40.8756148880686, -73.87075231401451 40.87566141552972, -73.87073847478379 40.875706234453816, -73.87072852517662 40.875738437386126, -73.87072357661603 40.87575446324024, -73.87070841647663 40.87580074217322, -73.87069324920856 40.87584701569289, -73.87067808783006 40.87589330002265, -73.87066292051101 40.87593957804001, -73.87064776029945 40.87598585066003, -73.87063259293642 40.87603212957308, -73.87061743385672 40.87607840849308, -73.87060268061764 40.87612035381471, -73.87059140599251 40.87615242017397, -73.87058792855683 40.876162293732584, -73.87057318479413 40.876204227354144, -73.87055839452596 40.876246273482415, -73.8705436042496 40.87628831420555, -73.87053167943503 40.87632221322319, -73.87053116709178 40.87631177238536, -73.87042663584907 40.87658828871489, -73.87042915653521 40.876589066865485, -73.87042522074454 40.87659913170784, -73.8704207278996 40.87661013873596, -73.87038885713439 40.87668822571777, -73.87032831248428 40.87683656809467, -73.87032643526148 40.876841027905265, -73.87031173801651 40.87687537312547, -73.87029430050836 40.876915667491836, -73.8702771370381 40.876955957660954, -73.87020896605377 40.87711638135219, -73.87014041646424 40.87727671452397, -73.87012218252742 40.877318914299174, -73.87010354857378 40.877361209072745, -73.87008495135102 40.87740351559068, -73.87004202417303 40.87750031387187, -73.87003356469289 40.87751276620255, -73.87002568966285 40.87752543890991, -73.87001839319689 40.87753830857478, -73.87001169429857 40.8775513644128, -73.87000560367889 40.8775645893269, -73.86998402110984 40.87761432869631, -73.8699624561157 40.87766416443338, -73.86994088754065 40.87771399475899, -73.86991932129901 40.87776382868474, -73.8698995111383 40.877809281909585, -73.86987969976583 40.87785473422885, -73.86985988955264 40.87790018654567, -73.86984844290602 40.87792645888768, -73.86984008642898 40.87794563976722, -73.86982027616163 40.87799109207647, -73.86980046468084 40.87803654438058, -73.86979085770915 40.878056338878864, -73.86978178732073 40.87807474722992, -73.86977431704133 40.87808786881878, -73.8697081426304 40.87807217876413, -73.86957431753618 40.87804044928392, -73.86972205643916 40.87767929526005, -73.87019731297733 40.87651747774527)), ((-73.87116544251376 40.822416780971544, -73.87071433333769 40.820485158419515, -73.87231131236565 40.82027082041568, -73.87239589382504 40.82060136047989, -73.87277092249373 40.82219961405577, -73.87116544251376 40.822416780971544)), ((-73.87295458044152 40.827062712016975, -73.87294773600586 40.826901022192374, -73.87379875820717 40.82678995925405, -73.87380817584501 40.82682921138215, -73.87382098590965 40.82688368380524, -73.87383346560586 40.82693671687215, -73.87384593820916 40.826989749929396, -73.87385840964853 40.827042782083105, -73.8738708822916 40.82709581513674, -73.87388336206736 40.82714884819635, -73.87389582645356 40.82720188033679, -73.8739083062708 40.827254912492236, -73.8739207789951 40.82730794463811, -73.87393325886066 40.82736097228749, -73.87394573161279 40.82741401073317, -73.87395820321122 40.82746704287228, -73.87397067482789 40.8275200759101, -73.87398314883531 40.82757310894864, -73.87399480387032 40.82762354315945, -73.8740888604785 40.8280307376275, -73.8740996572411 40.82807748335556, -73.87411130652356 40.828127918444345, -73.87412296175113 40.828178353538014, -73.87413461104845 40.82822879942952, -73.87414654633396 40.828280358644506, -73.87415848162773 40.828331923260734, -73.87417041694002 40.82838348787534, -73.87418235228101 40.82843504708527, -73.87419428762858 40.82848661259698, -73.8742062796684 40.828539554126586, -73.8742182705401 40.82859249655368, -73.87423027802788 40.82864543899713, -73.87424226301196 40.82869838051385, -73.87425425512643 40.828751322937066, -73.87426625437294 40.828804265366344, -73.87427825364033 40.8288572068934, -73.87429023988447 40.828910149304996, -73.87430223089147 40.82896309081958, -73.87430531360731 40.82897669256727, -73.87431348523253 40.82901879785275, -73.87430802651893 40.82902790942359, -73.87430087766859 40.82903429605261, -73.87397424668688 40.82912804588572, -73.87364779282724 40.82922168152485, -73.87364294010638 40.8292237671592, -73.87363512828462 40.82922775319909, -73.87363079125996 40.82923046434206, -73.87362336138123 40.82923558902641, -73.87361855050474 40.82923998537778, -73.8736151262201 40.82924337649427, -73.8736086495471 40.8292509695808, -73.87359083270644 40.82927702751056, -73.87358861528567 40.82928228487592, -73.87358584641655 40.82929138225131, -73.87358479029301 40.829296907436344, -73.873583592757 40.82930572918147, -73.87358346386863 40.829309921748624, -73.87358358363018 40.829315524764745, -73.87358406148402 40.82932109305409, -73.87361550987282 40.82946518343565, -73.87362526048656 40.82950590823631, -73.87363501111048 40.82954663393635, -73.87364476174974 40.829587357834335, -73.87364739857375 40.82960097531862, -73.87364941642883 40.82961465966188, -73.87365081774048 40.829628382050885, -73.87365092677402 40.829630273211436, -73.8733686737483 40.82971442112445, -73.87336626030259 40.82970492905025, -73.87335734333946 40.82966975850164, -73.87331109678814 40.82948382647135, -73.87326698262898 40.82929759329277, -73.87322500791475 40.829111081488456, -73.87317234814476 40.82885754751231, -73.87312519781038 40.82860339551877, -73.87308357570957 40.82834868226649, -73.8730530116778 40.82814769754783, -73.87304983110397 40.82812340496846, -73.87304830620302 40.82811178419009, -73.87302662141445 40.82794637342021, -73.87300439886356 40.82774475760618, -73.87300015325366 40.82769277900038, -73.8729959242575 40.82764079500933, -73.87299167154798 40.82758881639453, -73.87298743426494 40.82753683329361, -73.87298319106287 40.82748484928503, -73.87297895141185 40.82743287158327, -73.87297470822297 40.8273808875735, -73.8729704709682 40.827328903569665, -73.87296623370797 40.827276925868674, -73.87296198817836 40.82722493645151, -73.87295458044152 40.827062712016975)), ((-73.86996664458543 40.875872548466795, -73.87023750013049 40.875709996384096, -73.87023021510457 40.875981541313706, -73.87019713281106 40.876058587725325, -73.87017629232228 40.876107123124726, -73.8701375775816 40.87619728509939, -73.86991444465744 40.87671693799856, -73.86972108205637 40.87716725221293, -73.86937308736782 40.8779776683818, -73.86933253892356 40.877967490186116, -73.86925432237976 40.877947856505216, -73.86908793347071 40.87790608964228, -73.86880987124603 40.87783628951858, -73.86856166550538 40.877773983275794, -73.86835178974702 40.877721297821125, -73.86832990470315 40.8777128487868, -73.86831485189552 40.87770506670175, -73.86830129926014 40.87769818771536, -73.86828925526805 40.87769092954268, -73.86827902810415 40.877684029135175, -73.86827821651849 40.8776834816125, -73.86826738531803 40.87767427256314, -73.86825810705061 40.87766568302045, -73.86825033856034 40.877656141583515, -73.86824330434406 40.87764485313656, -73.86823729439361 40.87763455099274, -73.86823279011435 40.87762596689837, -73.86822827895342 40.87761486953317, -73.86822603737731 40.87760435017126, -73.86822510266967 40.87759768549077, -73.86822294666378 40.877582301788834, -73.86822808329791 40.877320902205376, -73.86823320021523 40.877060451701475, -73.86832132037341 40.87699384410185, -73.86848797542117 40.876867873011335, -73.86863896068098 40.876753744175694, -73.86910162270586 40.876404020397246, -73.86914771905617 40.876364011742204, -73.86929077854896 40.87627815830245, -73.86937826742053 40.8762256544252, -73.86950872308724 40.876147364058085, -73.86996664458543 40.875872548466795)), ((-73.86131658018164 40.89717324044279, -73.86113686488565 40.897447393210115, -73.86110564314718 40.897390591772314, -73.861094718313 40.897353006787945, -73.86108108191883 40.89729663261925, -73.86106747608828 40.89722564721372, -73.86104564398401 40.89714212795712, -73.86103753987234 40.89707114916805, -73.86103493305758 40.89700226431964, -73.86103507706723 40.896933382781626, -73.86103523853224 40.89685615196518, -73.86103539563297 40.89678100846709, -73.86103827299627 40.89672047951523, -73.86103838209142 40.89666829652922, -73.86104678287585 40.89659733760087, -73.86104742019062 40.896584826125874, -73.86104887756626 40.89658592016864, -73.86105371608491 40.896555134800806, -73.8610537640437 40.89653219229596, -73.8610577949138 40.89650683948341, -73.86106182949163 40.896480279124376, -73.86106585909256 40.89645553053541, -73.86107228266555 40.896427765500185, -73.86107710349513 40.896405432964215, -73.86108432089402 40.89637827220853, -73.86109154333224 40.89634869725734, -73.86109956204638 40.89631912326359, -73.86110757696947 40.89629136014049, -73.86111720351913 40.896253336124936, -73.86112922394878 40.89621289898607, -73.8611436208154 40.896176691582106, -73.861156412347 40.89614772664956, -73.86115397235105 40.89614948866602, -73.86117158053796 40.89611322748951, -73.86120750200666 40.89603603966059, -73.86123514926801 40.895969278498605, -73.86127380829195 40.8958983559128, -73.86129062354485 40.89586611533121, -73.86132626029199 40.89580866395777, -73.86134835355197 40.89576694399475, -73.86137597444109 40.89571270671468, -73.8614091055219 40.89565430139276, -73.86143671326097 40.895606326056715, -73.8614753512954 40.895545839999535, -73.86151949828825 40.895481185887185, -73.86155262043236 40.89542695516145, -73.86158849327686 40.89537272772384, -73.86162988494779 40.895310157588995, -73.86169339979975 40.895191256164736, -73.86172779325435 40.895144129038016, -73.86173478257525 40.8951328606303, -73.8617359512801 40.895132950277656, -73.86173753766153 40.89513077660486, -73.86177616527806 40.89507446508039, -73.86182028996954 40.89502024744789, -73.86185970445021 40.894986668691736, -73.86250091869996 40.89519154095827, -73.8621868646114 40.895722989531244, -73.86216776033332 40.895754824993716, -73.86216823684974 40.89575451219378, -73.8621204645778 40.89583535294666, -73.86192139175274 40.896172222484566, -73.8617768247238 40.89641685359779, -73.86169168552675 40.896560924712276, -73.86158037319565 40.896749281759114, -73.86150061016373 40.89688425256445, -73.86147065726047 40.89693493735195, -73.8614025770379 40.89704205208917, -73.86135219090748 40.89711891732875, -73.86135154048017 40.89711498322853, -73.86131658018164 40.89717324044279)), ((-73.86152223442554 40.89735827586322, -73.86162310056173 40.89721353577547, -73.86163357784544 40.89726785929146, -73.86179634328703 40.89724754661591, -73.86181524567151 40.89724518746057, -73.86188653838697 40.89713555767119, -73.8619215472173 40.89708053758664, -73.86192247693248 40.897080292866214, -73.8624557489971 40.896260247085095, -73.86249117652535 40.89627715627977, -73.86252541734498 40.89629349854553, -73.86254602325647 40.89630333296885, -73.86251568558622 40.89639080689777, -73.86241700734558 40.89662443368345, -73.86232475258268 40.89685956554288, -73.86223895953985 40.89709610348362, -73.86222835911272 40.89712672983912, -73.8622296194271 40.89712672503982, -73.8621224769553 40.897477988014366, -73.86212101968263 40.897555775574844, -73.86213124674013 40.89761595819883, -73.86203610257591 40.89812193960654, -73.86179351146018 40.89904494538765, -73.86167262420632 40.89938716761113, -73.86158650033597 40.899581566383084, -73.86152353087267 40.899720260962894, -73.86150445951843 40.89977090385575, -73.86150339030567 40.89977257837505, -73.86150196539538 40.899774092181346, -73.86150022522408 40.89977540390081, -73.86149821971873 40.89977647397206, -73.86149600471951 40.89977727274605, -73.86149364554589 40.899777777789055, -73.86149120631539 40.89977797386972, -73.86148875943047 40.89977785657241, -73.86148637253163 40.89977742867987, -73.86148411561398 40.89977670198232, -73.86148205153135 40.899775698166835, -73.8614802383793 40.89977444431763, -73.86147872948376 40.89977297831907, -73.86147756748595 40.899771339843674, -73.86147678551589 40.89976957665694, -73.86147640483233 40.899767738310935, -73.86147643719215 40.899765877948404, -73.86147700062813 40.89976373547098, -73.86148525362019 40.89973233646787, -73.86149063607841 40.8996842885607, -73.86149645643323 40.89963226103584, -73.86150226133968 40.89958023889458, -73.86150808167628 40.899528211368164, -73.86151390199251 40.8994761892438, -73.8615197139923 40.89942416710866, -73.86153154403027 40.89932887489436, -73.86153941072777 40.899233348300235, -73.86154332222337 40.89913767648469, -73.8615432605114 40.89904196568381, -73.86154285116353 40.89903223995712, -73.86153959817146 40.8989547997656, -73.86153923730025 40.89894630055714, -73.86153125122148 40.89885077655402, -73.86152610654683 40.898805812777574, -73.86152308178285 40.898782323604394, -73.86152300289584 40.89878145364143, -73.86152299478555 40.898781359080786, -73.86151280347279 40.89866831529622, -73.86151206388203 40.8986627359053, -73.86150866676938 40.89864708590562, -73.86149761349466 40.8985968931261, -73.86149153668399 40.89856929137699, -73.86148788990596 40.89855272168182, -73.86148552385623 40.89854344925163, -73.86147568531999 40.89850489939511, -73.86146347243303 40.89845708249955, -73.86145125956182 40.89840926650274, -73.86143598628294 40.8983619231875, -73.86142072134237 40.89831457537732, -73.86140544810513 40.89826723295769, -73.86139018202138 40.89821988514119, -73.8613749171348 40.898172542726634, -73.86135964396281 40.89812520029962, -73.8613511920313 40.898098997743226, -73.86134437082573 40.89807785156683, -73.8613254992589 40.89802606992392, -73.86130662058979 40.89797429367182, -73.86130425001163 40.89796778211837, -73.86129793004582 40.89795042217972, -73.86128906832732 40.8979261209498, -73.86129913553354 40.89790617919874, -73.86133149403378 40.8978420792269, -73.86135728521151 40.89779099147115, -73.86138758678996 40.897730967308675, -73.86142454372313 40.897657760822085, -73.86145541360156 40.89759660991539, -73.86147389856069 40.897559992261996, -73.86147919952462 40.89753787100373, -73.86148134720278 40.89752890925202, -73.86152223442554 40.89735827586322)), ((-73.86090152898352 40.90046294070605, -73.86076746807566 40.90069818287292, -73.86062048715328 40.900653667460844, -73.86062015174556 40.900654582848695, -73.86002024590142 40.90047198256023, -73.86025351132301 40.90019368493921, -73.86028820570624 40.90014795529743, -73.86033625432485 40.90007538124484, -73.86038485168616 40.900001977588204, -73.86043731942239 40.899922730841716, -73.86045122508011 40.8999017267373, -73.86048887484331 40.899809350096184, -73.86049068530302 40.899806789504616, -73.86057037714333 40.899615060026754, -73.86056746769022 40.89961651349711, -73.86074947857156 40.89916993245974, -73.86095042754361 40.89867687557581, -73.86102499892084 40.898493903097865, -73.86107262184987 40.89837705136307, -73.86113387909775 40.898233529236016, -73.86115881123479 40.89827568210807, -73.86118066565083 40.89834876473151, -73.86120798264886 40.898440639833225, -73.86122433976246 40.89851162851276, -73.86123793730845 40.89858678852002, -73.8612515653858 40.89864733729384, -73.86126239466968 40.89873084326463, -73.86127051229379 40.89879556005984, -73.86127315427561 40.89884774633086, -73.86128127192447 40.898912463123885, -73.86128658205546 40.89900431175134, -73.86128641216493 40.89908571717384, -73.86128899318547 40.8991671259004, -73.86128645786384 40.899286163338296, -73.86125897516806 40.89948039909019, -73.86122160500162 40.89967534963445, -73.86118752988608 40.8998170800752, -73.86114676809161 40.89995323836546, -73.8610689140586 40.90014354587243, -73.86102532804163 40.90025720210564, -73.86097157198422 40.90035342709958, -73.86090152898352 40.90046294070605)), ((-73.85475447790392 40.90796731110827, -73.85484061382887 40.907948891085674, -73.85506363726454 40.90801590157855, -73.8551830467309 40.90819547541755, -73.85513626565834 40.908439779988846, -73.85502495264443 40.908686978718414, -73.85479692809868 40.90895873627292, -73.85419553928853 40.90941974799049, -73.85386371970354 40.90954886389998, -73.8535771165843 40.90996635017362, -73.85321752304009 40.91032705033464, -73.85306468865825 40.91038386912685, -73.85298559541904 40.91034089015112, -73.85348872156338 40.90970845225173, -73.85375241930487 40.90937256776693, -73.85475447790392 40.90796731110827)), ((-73.86137701424832 40.90014414945891, -73.86146926194802 40.8999526451645, -73.86146949768455 40.89995285255885, -73.86148233627684 40.89992550403647, -73.8616399079965 40.89958983652044, -73.86173895397732 40.89935344016993, -73.86179483961777 40.89920524227247, -73.86184476762558 40.89905582516217, -73.8618886890968 40.8989053256618, -73.86212489475764 40.897989250269205, -73.86234569049354 40.89712632411185, -73.86237299160457 40.8969982959729, -73.86240845130763 40.896871424766886, -73.86245198705748 40.896746008448666, -73.86250349495056 40.896622344946074, -73.86256285448881 40.89650072406141, -73.86262992500724 40.89638143377071, -73.86263895618653 40.89637210738575, -73.86264978162058 40.89636395556669, -73.86266214220089 40.89635717431045, -73.86267573734952 40.896351928047864, -73.86269023927088 40.89634834425748, -73.86270529770958 40.89634650806851, -73.86276996248864 40.89635993104836, -73.86275454698507 40.89638296604447, -73.86274090067968 40.8964313752136, -73.8614713734589 40.90093476928365, -73.86146768173393 40.90093571846692, -73.86145810491433 40.900937129740306, -73.86144486653114 40.900937546085665, -73.86139176539612 40.90092462522719, -73.86135169170612 40.90091171548783, -73.86125520133223 40.90088063280648, -73.86121041927652 40.900866212649795, -73.86114911159747 40.90084645884241, -73.86105338636379 40.90081562994811, -73.86104468784545 40.900791464882566, -73.86115844085735 40.900582907249685, -73.86126595023416 40.90037398720363, -73.86132941159121 40.90024297090251, -73.86136791165288 40.90016348724138, -73.86137678815177 40.90014501005069, -73.86137701424832 40.90014414945891)), ((-73.8727774853087 40.822392184445896, -73.87284632020454 40.82238337606894, -73.87285818888903 40.82238434548363, -73.87286739167976 40.82238714626998, -73.87287249756297 40.82238942385272, -73.87288268168346 40.8223966615672, -73.87288733537416 40.822402954866696, -73.87289149555755 40.82241006977569, -73.87289201047399 40.8224147961507, -73.87288757071612 40.82245350901871, -73.87288483059895 40.82246999319467, -73.87287606594097 40.822522653592, -73.87286730008208 40.82257531488744, -73.87285853421099 40.822627975281215, -73.87284976831403 40.82268064197732, -73.87284100361094 40.822733296967186, -73.87283867842018 40.82274540788594, -73.87283583652227 40.822757451598065, -73.8728324767556 40.822769415495245, -73.87282859085487 40.822781282458934, -73.87282419540156 40.822793059711266, -73.87281929637751 40.822804718442924, -73.87281388788826 40.822816241537964, -73.87280798416859 40.82282762360892, -73.87277963288848 40.82287165634205, -73.8727510683063 40.82290695401387, -73.87272854396716 40.82293447985424, -73.87269576799316 40.82297452298425, -73.87264523575224 40.82303626557659, -73.8725912188443 40.82309773504763, -73.87255522681605 40.82314019151653, -73.8725206322493 40.82318331318497, -73.87249522381256 40.82322063769711, -73.87247140620671 40.82325856009171, -73.87244921385553 40.82329705699485, -73.87242864924947 40.82333606717642, -73.87241978966344 40.823352668837444, -73.87241169185076 40.823369500967274, -73.8724043618029 40.82338653025431, -73.87239781850596 40.82340374681431, -73.8723920572758 40.82342112092573, -73.87238708881281 40.82343863639163, -73.87238294042345 40.82345627163045, -73.87237958489055 40.82347400229867, -73.87237703408786 40.82349181850405, -73.87237529756311 40.823509686938905, -73.87237438246413 40.82352758960115, -73.87237428882423 40.82354550938148, -73.8723749953689 40.82356341383847, -73.8723765222629 40.82358129669086, -73.87237887075793 40.8235991237212, -73.87238202547532 40.82361687870347, -73.87239254939645 40.82367014572268, -73.87239440317592 40.82367952914829, -73.87239926951867 40.823704149609426, -73.87240332928758 40.823724699833434, -73.87241847945627 40.82380047357834, -73.8724303661713 40.8238496718554, -73.8724422517185 40.82389887012954, -73.87245414439407 40.82394806931039, -73.87246031186368 40.82397357369364, -73.87246544308391 40.82399484999927, -73.87249914201008 40.82414099914152, -73.87250541545116 40.82416937081978, -73.87250515223019 40.82416940024515, -73.87247640176501 40.824172665172135, -73.8724349640644 40.823998261586134, -73.87243038330918 40.82397923983115, -73.87242446650103 40.82395469745404, -73.87241343969643 40.82390895083174, -73.87240241289496 40.82386321051151, -73.87239138611896 40.823817464786906, -73.87238044939723 40.82377112843472, -73.87236884457009 40.82372579089301, -73.87235544802067 40.823681369873, -73.87234014821215 40.82363730514172, -73.8723229462333 40.82359364892847, -73.87230386335068 40.82355043997729, -73.87228292316695 40.823507735044664, -73.87226014577315 40.82346556747025, -73.87223555474733 40.823424006617294, -73.87220918798901 40.82338307143715, -73.8721819493754 40.82334430548132, -73.87215294903706 40.82330627957486, -73.87212224497434 40.823269038805606, -73.87208985251287 40.82323262821403, -73.8720558237255 40.82319709288138, -73.87202019408902 40.82316247787038, -73.87198300147507 40.8231288156395, -73.8719443038688 40.823096158480496, -73.8719041332227 40.823064534342734, -73.8718625546493 40.823033987421354, -73.87181959653397 40.82300455106482, -73.87177532636275 40.82297626766999, -73.87172979742951 40.822949162508564, -73.87168305114602 40.82292327524703, -73.8716351633316 40.822898629381164, -73.87158617184463 40.82287526277267, -73.87153614777971 40.822853189907285, -73.8715000151248 40.822838051018024, -73.87146333333247 40.82282368773345, -73.87142612370936 40.822810115385344, -73.87138843362511 40.82279735743892, -73.87135027492926 40.822785415707955, -73.87128525316852 40.82276648404208, -73.87122023261975 40.82274755774379, -73.87117709412793 40.82273499715544, -73.87115300674557 40.82272767441794, -73.87114327728634 40.82272261896284, -73.87113879204665 40.82272000791284, -73.87113193345144 40.822715043913604, -73.87112676962799 40.8227108733448, -73.8711174038315 40.822701055566206, -73.87111306306997 40.82269484629136, -73.87111021671514 40.82269005877023, -73.87110593581679 40.82267987206752, -73.87110385708361 40.82267106828792, -73.87110317535412 40.8226613412596, -73.87110348120882 40.822657046231605, -73.87110447633175 40.822649406628344, -73.87110758146835 40.82264176488111, -73.87111028384263 40.822636429756514, -73.87111795503655 40.822626389686526, -73.87112357881709 40.822621363995715, -73.87112828686341 40.82261787532979, -73.87113828090895 40.82261239076647, -73.87114472385656 40.82260978292352, -73.87120796753803 40.82259981934192, -73.87121988370913 40.8225983099104, -73.87126565486062 40.82259250328676, -73.87132335640574 40.82258518181564, -73.87137908182021 40.822577891429816, -73.87143480012051 40.82257059560615, -73.8714905338083 40.82256330517572, -73.87154625918613 40.82255601470912, -73.87161316829422 40.822547129281155, -73.87168007855946 40.82253824921859, -73.87174698287988 40.822529369110654, -73.87181389073861 40.822520488967825, -73.87188079383789 40.822511608780886, -73.87194770283594 40.822502733964654, -73.8720157595905 40.822493697393625, -73.8722189907271 40.82246668275197, -73.87228821659434 40.822457444703886, -73.87235810879363 40.82244812360564, -73.87242800928323 40.822438796170715, -73.87249790262878 40.82242947498901, -73.87256780069637 40.82242015377016, -73.87263769401311 40.822410827100725, -73.87270758492917 40.82240150578926, -73.8727774853087 40.822392184445896)), ((-73.86216287134481 40.893244741791584, -73.86217742702465 40.89321949514241, -73.86217784913686 40.893220230442765, -73.86218247899409 40.893210732243595, -73.86223284379034 40.893123373203686, -73.86224043961548 40.89311819997304, -73.86224953343185 40.89311281781584, -73.8622603148384 40.8931073548269, -73.86226721544536 40.89310439235803, -73.86227548623417 40.89310105241902, -73.86228468929997 40.89309792160382, -73.86229348747419 40.89309548007699, -73.86230238834179 40.893093301613874, -73.86231011155395 40.89309193398352, -73.86231973125996 40.89309046055637, -73.86233080795502 40.893089667832285, -73.8623412163974 40.89308952806298, -73.86235161480761 40.89308964852113, -73.8623643755469 40.893090487681214, -73.8623730727341 40.893091541713765, -73.86238329750765 40.893092994680984, -73.86239568700245 40.89309546777675, -73.8624040247288 40.89309762267259, -73.86241380310523 40.89310032678025, -73.86242232600587 40.89310302849033, -73.86242420087906 40.893103622343986, -73.86242677067598 40.893104436744316, -73.86243667434711 40.89310795233711, -73.86244604961006 40.89311220929963, -73.86245205291597 40.89311564280149, -73.86245887560877 40.89311993634277, -73.86246406580716 40.893124064050205, -73.86247046661363 40.893129233260794, -73.86247109449268 40.89312974008186, -73.8624990625212 40.89315338863895, -73.86252357110364 40.89317491692765, -73.86254720997051 40.893196976362525, -73.86256345078478 40.89321293789985, -73.86257991978867 40.89322988123601, -73.8625938155892 40.89324478820991, -73.86260796816968 40.89326062298809, -73.86262938952778 40.89328598364861, -73.86264974425406 40.89331184190499, -73.86266902291963 40.8933381662296, -73.86268721243876 40.893364971915624, -73.86269865226731 40.893395214829, -73.86269930610639 40.89339694363879, -73.8627118730784 40.893430154091305, -73.86271203236228 40.8934305973197, -73.86271323346023 40.89343394945555, -73.86271500415289 40.89343902669896, -73.86271625293524 40.89344284804451, -73.8627180612112 40.89344926345436, -73.86272168654797 40.89346531081932, -73.86272457953362 40.8934814464613, -73.86272673190567 40.89349764875885, -73.86272814252145 40.893513896099044, -73.8627288125932 40.89353017587647, -73.86272874217617 40.89354646107676, -73.86272792300402 40.89356273187926, -73.86272636342198 40.89357896938382, -73.86272406345361 40.893595161883994, -73.86272103026673 40.89361128597568, -73.86271725561556 40.89362731193301, -73.86271276325701 40.89364322807787, -73.86270753896915 40.893659025388345, -73.86270159467958 40.893674674162575, -73.8626949411031 40.89369015730386, -73.86268758302694 40.89370545500718, -73.86267953710102 40.89372054928248, -73.862670802183 40.89373541851653, -73.86266211036862 40.89374895148047, -73.86266140202063 40.893750055533644, -73.86265132715202 40.893764445014114, -73.86264060851367 40.893778546472696, -73.86262925558388 40.893792367124405, -73.86261727079709 40.89380587725587, -73.86260994345314 40.89381375498869, -73.86260226747353 40.89382151344196, -73.86256070787272 40.89386231269919, -73.8625140862899 40.89390808109563, -73.86247655622326 40.89394557943838, -73.86246845017294 40.893955283319684, -73.86246668002177 40.89395740275487, -73.86242569136799 40.893996324229875, -73.86242449284856 40.893997461915816, -73.86235714686966 40.894059928465644, -73.86229936207563 40.894109083696534, -73.86226498554727 40.89414162405537, -73.86226156358686 40.894144863521554, -73.86222147387436 40.89418279546133, -73.86218253031255 40.89421964637169, -73.86214358550973 40.89425650267014, -73.86210464898345 40.89429335266175, -73.86206570409423 40.89433020893341, -73.86202676035032 40.894367064292624, -73.86199434792354 40.89440854963935, -73.86196194138026 40.89445003948613, -73.86192953598324 40.8944915293249, -73.861897130557 40.894533013751364, -73.86186471677233 40.894574503561365, -73.86179971510992 40.89464926601432, -73.86178956369379 40.8946609349591, -73.86160531540648 40.894602363654315, -73.86164376170392 40.89449909162957, -73.86172279361443 40.89428679689632, -73.86180042642866 40.894078259053146, -73.86192862362233 40.89373389294918, -73.86193239213897 40.89372377149503, -73.86195598295687 40.893660399212294, -73.86198227182396 40.893589780339504, -73.86200171934556 40.89353753849844, -73.8620156704187 40.89350006255199, -73.86202033656247 40.89349196916087, -73.86202935919933 40.89347631959798, -73.86203897730505 40.893459637888846, -73.8620491122808 40.89344205811177, -73.86206734092814 40.89341044132809, -73.86208872318782 40.8933733524552, -73.86210829280364 40.893339408610615, -73.86212778736554 40.893305597044225, -73.86214761537937 40.89327120325834, -73.86216287134481 40.893244741791584)), ((-73.86044407294997 40.8961014733355, -73.86046289091045 40.89606910112385, -73.8605771131444 40.89587261095642, -73.86068360038092 40.89568942411074, -73.86082164464163 40.89545195252921, -73.8608689068979 40.895401090652506, -73.8609241236091 40.89534167022062, -73.86100800049039 40.89525140662724, -73.86110954994318 40.89514212437125, -73.86124278722978 40.89499874001124, -73.86131005504555 40.89492634977556, -73.86139266778368 40.89483744501174, -73.86160053071173 40.89490386028056, -73.86156738274522 40.89494271340337, -73.86152325789892 40.89499693093993, -73.86145980264817 40.89508660979235, -73.86141290076213 40.895153347904426, -73.86136601184214 40.8952138240365, -73.86128048600474 40.89533478615825, -73.86122806917898 40.89540777954087, -73.86116737380344 40.89549328689391, -73.86110668263326 40.89557670689378, -73.86105701619181 40.895649703505, -73.86102114276417 40.89570393077465, -73.86098250977672 40.89576232935964, -73.86095765678384 40.89580822057907, -73.8609310446182 40.89584978554298, -73.86092454269898 40.89585827649068, -73.86092085907497 40.89586569385301, -73.86091625980238 40.89587287778681, -73.86091816815575 40.89587111333377, -73.86089968089398 40.89590834233637, -73.86087205953487 40.895962579500434, -73.86084718454202 40.896018907292905, -73.86083333449191 40.896064811746164, -73.86082805034148 40.89607942295385, -73.86082780233319 40.896079416351455, -73.86080292288797 40.896137831452805, -73.8607890552961 40.89619208517823, -73.86076414954032 40.896263024187625, -73.86074471470678 40.89634858196477, -73.8607253148141 40.89641744028055, -73.86071413229084 40.89650300710549, -73.8607030022308 40.89656352609426, -73.86068906447225 40.89665117691455, -73.86066696612905 40.89669498406392, -73.86063661094754 40.89674086856585, -73.86058424922089 40.89678672648486, -73.86054293885427 40.8968096371594, -73.8604823815181 40.89682834991033, -73.86041829765185 40.8968462866498, -73.86041524458805 40.89684610916463, -73.86038885673479 40.89683532456147, -73.86033362109264 40.896817655063714, -73.86025199521846 40.89679149443774, -73.8602297496903 40.89678436537945, -73.86017738650334 40.896767583560894, -73.8600757791787 40.89673501956951, -73.8601108026735 40.8966747718289, -73.86014897757013 40.896609101570974, -73.86043199848348 40.89612224283942, -73.86044407294997 40.8961014733355)), ((-73.86328826970936 40.89356764715531, -73.86331230281469 40.893555143555986, -73.8633003214761 40.8935757207746, -73.86327262688917 40.89360582993268, -73.86325356071752 40.8936398799256, -73.86323623190528 40.893668690246386, -73.8632240936483 40.89369226498759, -73.86321368855887 40.89371322046733, -73.86320325767859 40.893747281583885, -73.86319455759485 40.893778722536254, -73.86318930379156 40.893814099993136, -73.86319093598817 40.8938599690645, -73.86319258825344 40.89389666491208, -73.86319770181196 40.893929434241535, -73.86320796940105 40.893975313545056, -73.86326440405314 40.894180038272346, -73.86314012320248 40.894360638260004, -73.86297418028191 40.89460081251101, -73.86273975450814 40.894962987523556, -73.86204599697146 40.894742451981315, -73.86212286483241 40.89466104087219, -73.86220334635613 40.894580006825514, -73.86228636528364 40.89450046064951, -73.86232785810081 40.89446009454918, -73.86236934968284 40.894419727531705, -73.86241084833263 40.89437936140798, -73.86245233387864 40.89433899525349, -73.8624938276716 40.894298633596115, -73.86250841874956 40.894284435910315, -73.86253531903719 40.894258273721626, -73.86254167257374 40.89424848310366, -73.8626003836358 40.89419553510951, -73.86262066478483 40.89417731270781, -73.86268447444463 40.89411996916433, -73.86271093893629 40.894096178294774, -73.8627110007101 40.89409614595075, -73.86271929166148 40.89409171101388, -73.862723740513 40.894088831148615, -73.86279308942771 40.894024567596, -73.86280117190434 40.89401706715239, -73.86284179817072 40.89397941479862, -73.86286697287589 40.893956084309444, -73.86288243269775 40.89394176244018, -73.86292305888507 40.89390410375393, -73.86296368620008 40.8938664513579, -73.86300907821581 40.89382405994295, -73.86305447018482 40.893781663106886, -73.86309986208296 40.89373927255604, -73.86311324138399 40.893726773472466, -73.86314524681613 40.893696875675175, -73.86319063860033 40.893654484187486, -73.86323742498563 40.89361077962481, -73.86325189841062 40.8935970922796, -73.86326202851531 40.89358750330112, -73.86328826970936 40.89356764715531)), ((-73.87252692402083 40.82530724756723, -73.87253568689168 40.82530226940393, -73.87254998571655 40.825302902048286, -73.87255868805453 40.82530972212034, -73.8725650995486 40.825349642808696, -73.87256931344147 40.8253981193858, -73.87257205489911 40.825446655569024, -73.87257397366281 40.82549147539461, -73.87257596743657 40.82553612600936, -73.87257796830156 40.82558078923856, -73.87257896102612 40.82560776560478, -73.87257983320235 40.8256314550259, -73.87258170403327 40.82568212081935, -73.87258357606454 40.82573278031018, -73.87258543978842 40.825783446094896, -73.87258731181332 40.82583411188828, -73.87258919163203 40.82588008970593, -73.87259106433031 40.82592607291829, -73.87259294532764 40.82597205703998, -73.87259482395835 40.826018040258134, -73.87259670497467 40.82606401717506, -73.87259849858563 40.82611663965771, -73.87260029932426 40.826169255844285, -73.87260209411606 40.826221883730184, -73.87260389484142 40.82627450982119, -73.87260569557647 40.826327132309736, -73.87260748920167 40.8263797547899, -73.87260929112792 40.82643237727877, -73.87261621005591 40.82647853445366, -73.87262313729175 40.826524691637005, -73.87263005622687 40.826570855113815, -73.87263723453208 40.826617153050265, -73.87265131876687 40.82672076619093, -73.87265179043523 40.82672518004372, -73.87211022402789 40.82680061590917, -73.8721092342747 40.82679870485906, -73.87210766240419 40.82679496965859, -73.87209707616779 40.82675054724594, -73.87208640454742 40.8267049144704, -73.87207573178047 40.82665926908526, -73.87206506017898 40.82661364171002, -73.87205439571706 40.826568008037846, -73.87204233226834 40.82651505447907, -73.87203028306443 40.82646210093435, -73.8720182267669 40.82640914738004, -73.87200988988153 40.82637252755137, -73.8720061776013 40.82635619383187, -73.87199393753443 40.82630265564797, -73.87199024084352 40.826285000917004, -73.87198724846033 40.826267273127016, -73.87198497458557 40.82624948490078, -73.87198377493446 40.826235909488084, -73.87198349507081 40.826231645327475, -73.87198253482289 40.82621378832062, -73.87198238427041 40.82619591870516, -73.87198299083616 40.8261801012607, -73.87198432403433 40.826164312538204, -73.87198638145875 40.826148570544916, -73.87198915715217 40.82613289058266, -73.87199265818357 40.826117295171635, -73.87199686200441 40.826101796893596, -73.87200177450006 40.82608641736704, -73.8720073920495 40.82607118990619, -73.87201371109425 40.826056115407454, -73.87202071025403 40.826041215458915, -73.87203989203253 40.826006149806844, -73.87205893202035 40.82597144869512, -73.87209116406389 40.82593042181875, -73.87213650673021 40.82587854408208, -73.87220599785363 40.82579538733568, -73.87227284762972 40.82571098673683, -73.8723370073577 40.82562539626602, -73.87237478390072 40.82557175589013, -73.87241051822367 40.82551730369567, -73.87244416161991 40.82546209546136, -73.87247568793613 40.82540617168246, -73.87250508523759 40.82534957647179, -73.87252692402083 40.82530724756723)), ((-73.871250681662 40.82359628472094, -73.87123805030781 40.823542762203026, -73.87122541182835 40.82348925678476, -73.87121278050266 40.82343574056664, -73.8712001409011 40.823382223436845, -73.87118750249132 40.823328713510506, -73.87117487122835 40.82327519638631, -73.87116223287143 40.82322168015277, -73.87114960163856 40.823168168427834, -73.87113696332409 40.82311465129007, -73.87112433212837 40.82306114136238, -73.87111169266736 40.8230076251201, -73.87109906863866 40.822954107992715, -73.87108642328086 40.82290059714303, -73.87107185285763 40.82283423404973, -73.87107189586102 40.82282916970377, -73.87107674016805 40.82281960283893, -73.87108145635517 40.82281436812079, -73.87108485226328 40.82281144710376, -73.87109177207485 40.822807454832855, -73.87109876319896 40.82280397682492, -73.87110715079947 40.82280168453086, -73.87111212426066 40.82280071034948, -73.87112304725801 40.82280034524978, -73.87117707235089 40.82281115214665, -73.87122506527484 40.82282301666907, -73.8712725391641 40.822836026924506, -73.87131944780239 40.8228501765585, -73.8713657319392 40.8228654565007, -73.87141136436969 40.822881837005085, -73.87145628346518 40.822899312600725, -73.87150035070933 40.82291779308446, -73.87154363719274 40.82293729654639, -73.8715861085522 40.82295781664553, -73.87162772691164 40.82297932452486, -73.87166844014568 40.823001803918174, -73.8717082139218 40.82302523227597, -73.87174701509463 40.82304958614929, -73.87178480102834 40.823074845680836, -73.87182154095129 40.82310098562348, -73.87185977134202 40.82313000519816, -73.87189675056324 40.82315995088169, -73.87193241581944 40.82319080639658, -73.87196673399691 40.82322253118489, -73.87199968146305 40.82325508559977, -73.87203248238845 40.82328988838272, -73.87206127957529 40.82332255793981, -73.87207563800962 40.82334005611277, -73.87208987938853 40.823357401970135, -73.87211660584326 40.82339247354219, -73.8721418303632 40.82342818549664, -73.8721655281326 40.82346449638411, -73.87218767077408 40.823501367452714, -73.87220823819754 40.823538765362684, -73.87222720441001 40.823576644160745, -73.87224455050134 40.82361497320982, -73.87225898048307 40.82365824455338, -73.87224709502725 40.8236671318954, -73.87223671243267 40.823665650781734, -73.8722235796652 40.82365306079436, -73.8722130987066 40.82364292579661, -73.87220218810216 40.823633065873715, -73.87219084073087 40.82362348552007, -73.87217909213085 40.82361419738202, -73.87216693636472 40.82360520685579, -73.87215439710793 40.82359653107688, -73.87214148500831 40.823588180863005, -73.87212821073634 40.82358015532536, -73.87211459441798 40.823572467993536, -73.87210064550875 40.82356513328597, -73.87208639364036 40.823558153036295, -73.87207183523745 40.823551537145946, -73.87205699636505 40.823545292847676, -73.87204190426843 40.82353943007711, -73.8720287706398 40.82353471671081, -73.87201545380317 40.82353034442791, -73.87200194191985 40.82352630511072, -73.87198827407016 40.82352261861353, -73.87197442773622 40.82351928220974, -73.87196045508296 40.82351629235527, -73.87194636438028 40.82351366346718, -73.87193216157065 40.823511387447574, -73.87191786084239 40.82350948322257, -73.87190349422568 40.823507938220786, -73.87188905933729 40.82350675874304, -73.871874579887 40.823505943915094, -73.87186007719805 40.82350550096463, -73.87184556669445 40.823505422704876, -73.87183105428915 40.82350571634627, -73.87181656488941 40.82350637471258, -73.87180211863483 40.82350740412972, -73.87178771672107 40.82350879919595, -73.871773386414 40.82351055904122, -73.87175641464458 40.823513120090546, -73.87173955939475 40.82351611440598, -73.8717228514953 40.82351953661875, -73.87170630635981 40.8235233849451, -73.87168992993236 40.82352765038683, -73.87167375896396 40.82353233118379, -73.87165779702791 40.82353741833516, -73.87164207492911 40.8235429199798, -73.87162660574506 40.82354881632139, -73.87161140963966 40.823555101079, -73.87159649372703 40.82356177336021, -73.87158188054893 40.82356882328469, -73.87156759146694 40.82357623826948, -73.87155363597466 40.823584012922275, -73.87154003423099 40.82359214366361, -73.87152706830335 40.82360066232527, -73.87151447870447 40.823609507384624, -73.87150229507999 40.82361867347179, -73.8714905269585 40.823628137184606, -73.8714791790904 40.82363789402601, -73.87146827518393 40.823647944022596, -73.87145780698484 40.82365826465281, -73.8714478041528 40.823668843342936, -73.8714382738196 40.82367967019552, -73.8714292326021 40.82369073442329, -73.87142068645178 40.82370202342598, -73.8714126353898 40.82371352639788, -73.87140510198262 40.82372522085175, -73.87139808622882 40.823737107688174, -73.87139160239877 40.82374916351031, -73.87138565169731 40.82376137841409, -73.87138024836713 40.82377374341055, -73.87137539365125 40.82378622878468, -73.87137177132318 40.82379955839817, -73.87136876997991 40.82381297785341, -73.87136637543676 40.823826466423185, -73.87136460311845 40.82384001692075, -73.87136345190443 40.82385359602652, -73.87136292297866 40.823867204642326, -73.8713630152014 40.82388081935398, -73.87136372860611 40.82389442305212, -73.87136505493702 40.82390799411561, -73.8713670060591 40.823921527154624, -73.87136957727812 40.82393499785049, -73.8713727614888 40.82394840259334, -73.87137655521366 40.8239617008568, -73.87138095489681 40.82397489263691, -73.87138595344508 40.823987968020184, -73.87139154497882 40.82400090268657, -73.87139772954 40.82401367502416, -73.87140448223343 40.824026285905575, -73.87141182208346 40.82403870563553, -73.8714197076111 40.8240509287647, -73.87142815782511 40.82406293370222, -73.8714371478649 40.82407470331083, -73.87144667891603 40.8240862375917, -73.87145672139881 40.824097507695875, -73.87146727413669 40.82410850911943, -73.87147832411273 40.82411923014121, -73.87148985477808 40.824129646429306, -73.87150186020916 40.8241397561759, -73.87151431791955 40.824149540445404, -73.87152721132713 40.82415899201522, -73.87154052858303 40.82416810817051, -73.87155426028193 40.824176848378315, -73.87156837793361 40.82418523331815, -73.87158287329054 40.8241932368663, -73.87159771671692 40.82420085898965, -73.87161290943274 40.82420808167946, -73.87162842063607 40.82421489499589, -73.87164422897855 40.82422130431797, -73.87166032739258 40.824227286224826, -73.87167668505516 40.824232841582585, -73.87169328775322 40.82423796407175, -73.87171011415913 40.82424264826556, -73.87172856091586 40.824249245113144, -73.87173589458158 40.82425323256504, -73.87173939416665 40.82426235218444, -73.87173423815631 40.82427003578977, -73.87167215538295 40.82427963805078, -73.8716123772031 40.82428486733136, -73.87155493707638 40.82428989027008, -73.8714974898284 40.82429491317222, -73.87145537037196 40.824298598786335, -73.8714357698166 40.82429956658106, -73.87142524141011 40.824297432371964, -73.87141789736121 40.824293917649484, -73.87141285892274 40.8242910412481, -73.87140767175202 40.82428354423269, -73.87139407280122 40.82422881129235, -73.87138261991822 40.824177538650474, -73.87137116824866 40.82412626060542, -73.8713597165968 40.824074982558756, -73.87134826495215 40.82402370991353, -73.87133681214839 40.823972432762886, -73.87132451416898 40.82391869721222, -73.8713122090969 40.823864961651864, -73.87129990285925 40.823811226088395, -73.87128759782694 40.82375749052439, -73.87127529281273 40.82370375585911, -73.87126298664516 40.8236500148873, -73.871250681662 40.82359628472094)), ((-73.85883904941893 40.90223849695257, -73.8586660237485 40.90222704362023, -73.85911102871232 40.90169055758477, -73.85913436872517 40.90179740242201, -73.85925633041168 40.90181577156848, -73.85930938175436 40.90182376229363, -73.85953601591771 40.90190093061127, -73.8596652991395 40.90198066813518, -73.85969896742525 40.90202473013178, -73.85974363997164 40.90210700583242, -73.85975862049706 40.902257493154124, -73.85979041968484 40.90233083749975, -73.85980010438264 40.902490506919015, -73.85976151760994 40.902541498599966, -73.85951083652226 40.90269595644735, -73.85935484774124 40.902647434836034, -73.85924994890775 40.90257067399074, -73.85898700401927 40.90230009709205, -73.85883904941893 40.90223849695257)), ((-73.87338291701394 40.835102443414506, -73.87322568246553 40.83443288775026, -73.8738462194851 40.834366582158445, -73.87384502520393 40.83442618011512, -73.87384470659775 40.83447728195811, -73.87384436631167 40.83453168859364, -73.87384403745756 40.834584442832806, -73.87384239962228 40.834620349179524, -73.8738393272822 40.834656208932, -73.87383483356031 40.83469197798034, -73.87382891969798 40.834727625708915, -73.87382158455533 40.83476312690232, -73.87379356596112 40.83486758247653, -73.87376221079356 40.8349714949937, -73.87371745181652 40.835114279797594, -73.87367310034026 40.83525714967375, -73.87366423646809 40.835290945443354, -73.87365387085163 40.83532450363728, -73.87364201782215 40.83535776844018, -73.87362869164967 40.835390716454384, -73.87361389598473 40.835423297255645, -73.87359766170478 40.83545548296195, -73.87358777745325 40.835473409986356, -73.8735771159088 40.83549108221827, -73.87356569253548 40.83550847265965, -73.87355350143714 40.835525564194356, -73.87354057584173 40.835542340649674, -73.87352691934849 40.83555877951695, -73.873512545023 40.83557486820329, -73.87349748375298 40.83559057432457, -73.87348173434383 40.83560590238163, -73.8734613253738 40.835623738605435, -73.87344011710982 40.8356410399551, -73.87341814993856 40.83565776685272, -73.87339543452033 40.83567392471246, -73.87337200292883 40.83568948115138, -73.87334788366397 40.83570441278742, -73.87332309928705 40.835718701635074, -73.87329769485758 40.83573234504194, -73.87327167753767 40.83574531780155, -73.87324510663666 40.835757605570855, -73.87321798219287 40.83576918853858, -73.87319034925562 40.83578006945536, -73.8731713028417 40.83578650325923, -73.87306677759456 40.835311026039264, -73.8734203979024 40.83526204865202, -73.87341835973183 40.83525336834579, -73.87341883766557 40.835253301333225, -73.87341546488221 40.835240672693004, -73.8734147314747 40.83523792087614, -73.87339065333424 40.8351353875091, -73.87338725392176 40.83511869040248, -73.87338291701394 40.835102443414506)), ((-73.8573159148875 40.90530114562117, -73.85718187885398 40.90518794576804, -73.8568957256951 40.905059910041935, -73.85677730097481 40.905063817175694, -73.85660442890975 40.90510664392609, -73.85651652486885 40.905163132827084, -73.85734909630288 40.9039381079195, -73.857398894302 40.90409068981751, -73.8573722254518 40.904355735044945, -73.85725637484516 40.904612860130314, -73.85727610844323 40.90467160238051, -73.85736713456475 40.9047745906517, -73.85745705365984 40.90473368376051, -73.85761523666268 40.90477567220496, -73.85766357327894 40.90486526511587, -73.8574348595401 40.90528410321958, -73.8573159148875 40.90530114562117)), ((-73.87293254125179 40.83031434421104, -73.87289851256904 40.83013326115772, -73.87316480213285 40.830056730345014, -73.87316483742404 40.830056874463125, -73.87322550937319 40.830303873296664, -73.87328765581042 40.830550655787775, -73.87333982887915 40.830764351178374, -73.87339271381201 40.830977941060375, -73.87344151338165 40.83117236388236, -73.87344629520524 40.831191424515424, -73.8734983639163 40.831398808122835, -73.87350372457453 40.83142085453018, -73.87354884863328 40.83160640878279, -73.87359774814607 40.831814231898946, -73.87360991377065 40.831858242537635, -73.8736128028864 40.83186890576851, -73.87330451995467 40.831910500879864, -73.87329744763657 40.831882711025806, -73.87329366032033 40.831866231400795, -73.87328317908859 40.831820615195, -73.87327269786094 40.8317750043909, -73.87326222375926 40.83172939449377, -73.87325174256034 40.831683783687026, -73.87320023435339 40.831458784200876, -73.8731479782089 40.8312338910191, -73.87309497414628 40.831009097837224, -73.87304123165536 40.8307844055652, -73.87300917350917 40.83065575158293, -73.87298202959396 40.830526451943065, -73.87293254125179 40.83031434421104)), ((-73.87334000595393 40.82570904718668, -73.8733581961828 40.825708091927204, -73.87337139641319 40.82571545807516, -73.87341221537827 40.825749601085306, -73.87345868950243 40.82579096236156, -73.87350347593984 40.82583338975611, -73.87351228002521 40.82584227470508, -73.87354652024403 40.82587683818633, -73.87358779401751 40.82592127880717, -73.8736272463865 40.82596665753501, -73.87366484659552 40.82601293831807, -73.87367818948603 40.826043869674116, -73.87369032623523 40.82607508606515, -73.87370123198963 40.82610656495192, -73.87371091747825 40.82613827392867, -73.87371936853215 40.82617018236331, -73.87373123711045 40.826220922115155, -73.87374310690765 40.82627165376212, -73.87375498382038 40.82632239351969, -73.87376685365209 40.82637312606388, -73.87377873061298 40.82642385951471, -73.87379060047066 40.82647459745858, -73.87380086883508 40.826518430444175, -73.87380206463483 40.826523608705536, -73.8738109080378 40.82656371387716, -73.87293957735831 40.826685089526535, -73.87293965368488 40.82668112562632, -73.87294249176384 40.82661838938164, -73.87294748249064 40.826555735652086, -73.87295457245133 40.82649319679643, -73.87296012404721 40.82644970534241, -73.87296762184333 40.82640638532502, -73.87297705032867 40.8263632871546, -73.872988402313 40.8263204495441, -73.87300166225266 40.826277940013085, -73.8730168241535 40.82623579187263, -73.87303384997932 40.826194056408426, -73.87305274673157 40.82615279035866, -73.87306864393243 40.82611293118111, -73.87310433528995 40.8260466741236, -73.87314276209061 40.82598131335598, -73.87318390287982 40.825916906483656, -73.87322770655005 40.825853520084344, -73.87327413383863 40.825791226151594, -73.87330338729095 40.825752011063365, -73.87331014504078 40.82574294688771, -73.87333609714065 40.82571173447687, -73.87334000595393 40.82570904718668)), ((-73.87189408214823 40.872084037063146, -73.87193319544538 40.87191072461326, -73.87195969955938 40.87192658012076, -73.87195444582576 40.87195476770574, -73.87194439030566 40.872008685040804, -73.87189794594275 40.87225394563608, -73.87189790884885 40.87225411128493, -73.87184096338495 40.87250354566231, -73.87179286525128 40.87272324487747, -73.87175638877432 40.87288398035442, -73.87168263925557 40.87319870391159, -73.87163836696539 40.873380993776784, -73.87160120921345 40.8735298500798, -73.87153687378857 40.87378143720273, -73.87149703486203 40.87393134314859, -73.87149659749458 40.87393298695419, -73.87149362432145 40.87394417671944, -73.87147011140057 40.87403264967396, -73.87143213684502 40.87417039836737, -73.87140095758816 40.874283500135775, -73.8713293874668 40.874533960641116, -73.8712554188419 40.874784012295144, -73.87124801693905 40.87480872515309, -73.87124081801934 40.87483276016898, -73.87123312949153 40.87485845153715, -73.8712262302267 40.874881507154576, -73.87121163648106 40.87493025413133, -73.87119746857593 40.87497656756023, -73.87118330064064 40.875022886389964, -73.87117700641024 40.87504347263881, -73.87116914100035 40.87506919982389, -73.87115497422063 40.87511551414827, -73.87114007250543 40.875162124811155, -73.87112516959519 40.87520872916696, -73.87111027021089 40.875255339827824, -73.8710953696298 40.87530194508215, -73.87108046664298 40.8753485566349, -73.87106557313989 40.875395160992035, -73.87105067129933 40.875441771641015, -73.87103509290314 40.87549038241723, -73.87102171894567 40.87553214293669, -73.87102116990032 40.87553385865427, -73.87101952396095 40.87553900040542, -73.87100725290705 40.87557728536917, -73.87100394195144 40.87558761567503, -73.87098836941685 40.87563622735077, -73.87097279803713 40.875684843527715, -73.87095721951657 40.87573345969422, -73.87094163860931 40.87578207135307, -73.87092505660372 40.875832412628675, -73.87091530663731 40.87586203589996, -73.8709084888092 40.87588275391736, -73.87089190676565 40.87593308888386, -73.87087533061651 40.87598343015758, -73.87085874851051 40.87603377142181, -73.87084217468215 40.876084113593, -73.87082559846995 40.87613444855477, -73.87081557157377 40.87616489905503, -73.87081229333762 40.87617484488241, -73.8708090151023 40.87618478980915, -73.87080006947139 40.876211924118735, -73.8707824820047 40.87626430475138, -73.87076488859073 40.87631667907074, -73.87074729396099 40.8763690542861, -73.87073450093197 40.876407168438526, -73.87073293059599 40.87641184381646, -73.87073240794913 40.87641339837456, -73.8707271826478 40.8764289529615, -73.87071751480453 40.87645773975132, -73.8707026240058 40.876502084730376, -73.87068774150396 40.876546423413075, -73.87067782782513 40.87657593571716, -73.87067284473193 40.87659076928144, -73.87065670239949 40.87663931272892, -73.87064055887109 40.8766878489685, -73.87062441649151 40.87673639241063, -73.87060959748418 40.87678096978206, -73.87060910343388 40.87678245773542, -73.87060827883553 40.87678493495489, -73.87059254931927 40.87683223077777, -73.87056981608175 40.87689932768631, -73.87041140031451 40.87736696259575, -73.87039831412301 40.877405553634006, -73.87038237371718 40.8774525511248, -73.87036644159343 40.8774995486223, -73.87035050943663 40.877546551520105, -73.8703345689632 40.87759354900309, -73.87031870434089 40.877640574483834, -73.8702594263819 40.87781533044296, -73.87019932151003 40.877989927850955, -73.87018120821205 40.87804195929568, -73.87016292640855 40.8780939959505, -73.87014465050835 40.87814603260857, -73.87013363650584 40.87817739862538, -73.87007358938162 40.87816243696643, -73.87008174576286 40.878138171689415, -73.87009744917009 40.878091224406184, -73.87011315255513 40.87804427712045, -73.87011941764676 40.8780255603208, -73.87012374393868 40.8780124333705, -73.87019177799773 40.87780604688172, -73.87019253107755 40.87780375598628, -73.87019256926845 40.87780363986624, -73.87019325074006 40.87780156680841, -73.87021012810617 40.87774996260202, -73.87022651848812 40.87769985175504, -73.87024290883306 40.87764974720874, -73.87025930033093 40.87759964716338, -73.87027577111373 40.87754963815374, -73.87029225016762 40.877499633653024, -73.87030872207673 40.87744963004197, -73.87032519514916 40.87739962552899, -73.87033042718312 40.87738374769508, -73.8703416741269 40.87734962192033, -73.87035814477532 40.87729961829952, -73.87037461539892 40.87724961467597, -73.87038222230372 40.87722654820715, -73.87049197139345 40.87688232017995, -73.87077915803523 40.87598157466348, -73.87078246022664 40.87597089856741, -73.87079760293621 40.87592198297631, -73.87081274680632 40.87587306918506, -73.87082788947129 40.87582415358913, -73.87084302618227 40.875775237984136, -73.87085240735148 40.87574493353644, -73.87085816881147 40.87572631788094, -73.87087330429334 40.875677401369295, -73.87088844686569 40.875628487564626, -73.8709035894193 40.875579571956585, -73.87091882988248 40.87553032057342, -73.87093386853672 40.875481736224174, -73.87124419492599 40.87443851917368, -73.871254073171 40.87440434313935, -73.87126934982906 40.87435144205942, -73.87128463238052 40.87429854818751, -73.87129991610789 40.87424564711048, -73.87131519269306 40.87419274602298, -73.87133047518198 40.87413984674049, -73.87133576839679 40.87412152229234, -73.87134575884514 40.87408694115346, -73.87134985415459 40.87407276302038, -73.87136103415884 40.87403404636043, -73.87137631775246 40.873981151574185, -73.87139160134436 40.87392824507902, -73.87140687775928 40.87387535658313, -73.8714072300873 40.873874133211444, -73.87140733637766 40.873873766830926, -73.87142215299839 40.873822450073675, -73.87143744243672 40.873769549880976, -73.87144345214735 40.873748758885476, -73.87185636764407 40.87224176898466, -73.87186740637551 40.87219663792274, -73.8718758037842 40.87216230799517, -73.87189408214823 40.872084037063146)), ((-73.87216608632441 40.827036716806255, -73.87215957714 40.8270038738984, -73.87266703087538 40.82693765363907, -73.87266711385297 40.826939515056246, -73.87266806614316 40.826990748035996, -73.87266851631529 40.82699834331765, -73.87267143380454 40.827044789628204, -73.87267497709766 40.82709564185643, -73.87267853581606 40.82714648959864, -73.8726820862312 40.8271973427341, -73.87268564495186 40.82724819497772, -73.87268919539851 40.827299037306176, -73.87269275411798 40.82734989585216, -73.87269630575068 40.8274007435838, -73.87269986449131 40.82745159672573, -73.87270342204162 40.82750245526879, -73.87270697251543 40.827553297594534, -73.8727105300869 40.827604150733535, -73.87271408293223 40.827654998463785, -73.87271764051464 40.8277058516017, -73.87272286379404 40.82775294520552, -73.87272809536552 40.82780004602182, -73.87273331864772 40.82784714592786, -73.87273855617349 40.82789424044604, -73.87274377236787 40.82794133494006, -73.87274899567225 40.82798843484425, -73.87275423322023 40.82803552936061, -73.87275583132234 40.82804727899479, -73.87276039967821 40.828081039127845, -73.87276658038091 40.828126543507096, -73.8727727539774 40.828172048778306, -73.87278182692187 40.828226437938646, -73.87278640613317 40.82825391352021, -73.87279089868541 40.82828083249938, -73.87279997165957 40.82833522165731, -73.872809036338 40.8283896171083, -73.87281810814603 40.828444011665454, -73.87282718116292 40.828498401720196, -73.87283625301096 40.828552790871946, -73.87284532723444 40.82860718542807, -73.87284960642342 40.828632874090665, -73.87285439081356 40.82866157456831, -73.87286346387951 40.828715970021186, -73.87287254289984 40.82877035917595, -73.87288160770896 40.82882474831382, -73.8728137202225 40.82859491913763, -73.87279914366091 40.82854385664831, -73.87278248587972 40.82849315205911, -73.87276375620723 40.82844288912563, -73.87274297477892 40.828393079575534, -73.87272015806668 40.82834379096306, -73.87269533445412 40.82829506113919, -73.8726751596451 40.828257259458425, -73.87265497774774 40.828219456865554, -73.87262290083301 40.82817100087044, -73.87259082514016 40.82812255027024, -73.87255874949405 40.82807409966076, -73.87252665848496 40.82802564812441, -73.87249459006593 40.82797718669822, -73.87246251336413 40.82792874146244, -73.87243015106013 40.82787964934521, -73.87240357603086 40.82783753526225, -73.87237888961889 40.82779475239336, -73.8723561201383 40.827751371009775, -73.87233529241723 40.82770742445842, -73.87231643242762 40.82766296769946, -73.87230153761934 40.82762360853363, -73.87228818220254 40.82758393049387, -73.87227638153064 40.827543962413515, -73.87226615090688 40.827503759240265, -73.87225483449276 40.827454241031916, -73.8722438775055 40.82740276193971, -73.87223292766018 40.82735127655047, -73.87222198494469 40.8272997911676, -73.87221103630833 40.827248311179645, -73.87220008651386 40.82719682578592, -73.87218914503462 40.827145340399966, -73.87217819528269 40.827093850500795, -73.87216695898024 40.827040960911475, -73.87216608632441 40.827036716806255)), ((-73.87358774311726 40.833193925632855, -73.87338764160535 40.832113295478315, -73.8736661980584 40.832075067856294, -73.87366671928287 40.8320771647805, -73.8736988031089 40.83221268215081, -73.87373730569026 40.83239008857432, -73.87376603525541 40.83253840098598, -73.8737895307948 40.83268724795601, -73.87380779487212 40.83283650972465, -73.87383091879137 40.83308764982842, -73.87384668568895 40.83333911415227, -73.87385021626545 40.83359366638482, -73.87385007674294 40.83374916553261, -73.87384999086701 40.83384823250802, -73.87384786277887 40.8338782139657, -73.87384641068822 40.833898706745316, -73.87384512926012 40.83394924563076, -73.87384614552188 40.833999786128594, -73.87384946077705 40.834050268807516, -73.87384907338314 40.834141403887564, -73.87384907177241 40.83414162810909, -73.87377000858754 40.8341528887401, -73.87358774311726 40.833193925632855)), ((-73.87320562655438 40.83854764206823, -73.87337442857829 40.838485338603206, -73.87338039514115 40.83876494055463, -73.87355971567627 40.83883057349596, -73.87348910429911 40.839664284437006, -73.87293486761747 40.8396365721211, -73.8729814710237 40.83943753588034, -73.87302673717326 40.83925563995152, -73.87307227809153 40.839073777620186, -73.87312173172947 40.83887751256071, -73.87313285055947 40.83883365720902, -73.8731715027526 40.83868129284747, -73.87320562655438 40.83854764206823)), ((-73.85704223289366 40.90618603480068, -73.85692320714342 40.90622506470606, -73.8566828946145 40.90617193798419, -73.85650982504363 40.90617844243373, -73.85598951067105 40.90593854060667, -73.85626178440486 40.90553793860905, -73.85657009720613 40.90563749050686, -73.85679191985575 40.905624988895426, -73.85685864173956 40.90565571599742, -73.85709418207021 40.90608381587455, -73.85704223289366 40.90618603480068)), ((-73.87453095373857 40.83533244266892, -73.87451829824728 40.83533188410121, -73.87450560659481 40.835331639765435, -73.87449292024537 40.835331726816186, -73.8744802415803 40.835332139853016, -73.87446759195919 40.835332868993774, -73.8744549784787 40.83533392325114, -73.87444242367394 40.83533529814716, -73.87442992874229 40.835336987379726, -73.87441752569362 40.835338991884186, -73.87440520739362 40.83534132245872, -73.87439300468877 40.83534396833111, -73.8743809211799 40.83534690609229, -73.87436897696817 40.83535016458014, -73.87435718870476 40.83535371589749, -73.87434649442126 40.83535745300693, -73.87433597744767 40.83536147216348, -73.87432564492136 40.835365760768, -73.87431551820224 40.83537030893838, -73.87430559965289 40.83537512117979, -73.8742958940362 40.83538018669144, -73.87428642625191 40.83538550460008, -73.87427720107137 40.835391059602514, -73.87426823509496 40.83539685081649, -73.87425952715746 40.83540286743476, -73.8742511009611 40.835409114886254, -73.87424295537474 40.835415564353944, -73.87423511051998 40.83542223386971, -73.87422756407999 40.83542909461529, -73.8742203350248 40.83543614661144, -73.87421341624926 40.83544338534792, -73.87420683741782 40.83545079825028, -73.8742005914373 40.83545837450488, -73.87419468543331 40.835466107816096, -73.87418913482763 40.83547399369828, -73.87415572502535 40.83552163664998, -73.87411366500868 40.83551780146706, -73.87413247933925 40.8353525658862, -73.87414685509631 40.83518707151486, -73.87415270330877 40.83509078887676, -73.87415556572155 40.83509249753744, -73.87416917273259 40.834828142380424, -73.8741709843105 40.834640098495726, -73.87416393242886 40.83451841411791, -73.8741426473779 40.83433027838465, -73.8743958404817 40.83429656342099, -73.87437486960131 40.834447822842876, -73.87437159781568 40.83447142035259, -73.87435741203706 40.83457373444925, -73.87445310464277 40.834978597631505, -73.87445758960826 40.834997568737606, -73.8745340813048 40.83532118538293, -73.87455266594056 40.83531868601416, -73.87456520709989 40.835316999520074, -73.87491058147907 40.83527055609662, -73.87507667793184 40.83603392798888, -73.87500676898838 40.836028361029804, -73.87493541056715 40.83602250429829, -73.87486405335257 40.836016643021416, -73.87479269496492 40.83601078169915, -73.87472133659152 40.83600491943219, -73.87464998652845 40.835999058030595, -73.87457573286422 40.835986273124995, -73.87459257722784 40.83597493710314, -73.87460733705313 40.835969989623855, -73.87462186165466 40.8359646600772, -73.87463613324944 40.83595894754344, -73.87465014113262 40.835952870020954, -73.8746638663272 40.83594643109111, -73.87467729697147 40.835939633442656, -73.87469039629558 40.83593248514022, -73.87470317019023 40.835925006001126, -73.87471560325393 40.83591718970535, -73.8747276681764 40.835909057835224, -73.87473935546238 40.835900615783444, -73.87475066628392 40.83589187075545, -73.8747615543827 40.83588283260647, -73.87477203751102 40.835873518465334, -73.87478209194614 40.83586393370936, -73.87479170105706 40.835854095430044, -73.8748008683872 40.83584401083531, -73.87480956072376 40.83583368799356, -73.87481778277377 40.835823145820484, -73.87482570214375 40.835811524525525, -73.87483309546194 40.835799705450796, -73.87483994966458 40.83578770028856, -73.8748462552449 40.83577552073508, -73.8748520074199 40.835763188397124, -73.87485719669307 40.83575070956793, -73.87486182303405 40.83573810045644, -73.87486588047106 40.83572538446911, -73.87486936188219 40.83571256610078, -73.8748722636667 40.835699668760384, -73.8748745763197 40.83568670324362, -73.87487630337797 40.835673680360365, -73.87487744479796 40.83566062352339, -73.87487799462976 40.83564754443269, -73.8748779528466 40.83563445749619, -73.8748773265254 40.83562138253243, -73.87487610735018 40.83560832853736, -73.8748742964713 40.83559531442257, -73.87487190808952 40.83558235461137, -73.87486892794388 40.83556946709811, -73.8748653690545 40.83555666360337, -73.87486271542087 40.83554731268738, -73.87485963955612 40.83553804055671, -73.8748561485555 40.83552885712451, -73.87485225070495 40.835519769603664, -73.8748479448004 40.83551078789825, -73.87484322490366 40.83550191740481, -73.87483811942421 40.83549318246744, -73.87483261413634 40.83548458217011, -73.8748267315484 40.83547612644272, -73.87482047162489 40.835467834195526, -73.87481383909994 40.83545970993607, -73.87480684700367 40.835451759981936, -73.8747995048008 40.83544399514925, -73.87479180654297 40.835436426237436, -73.87478378303432 40.83542906498625, -73.87477542597566 40.83542191138663, -73.87476675786327 40.83541498167191, -73.87475777037406 40.83540828843986, -73.87474849554195 40.83540182001875, -73.87473892857349 40.83539560341817, -73.8747290896227 40.835389639560404, -73.87471899054394 40.83538392935882, -73.87470863959759 40.83537849353363, -73.87469805102806 40.83537332309532, -73.87468723191331 40.83536843696192, -73.8746761988689 40.83536382614647, -73.8746649720064 40.83535951408368, -73.87465355253319 40.83535548906826, -73.87464182892097 40.83535179330227, -73.87462995653196 40.835348402641095, -73.87461793656696 40.83534530898158, -73.87460578797372 40.83534252405075, -73.87459352970842 40.835340055073026, -73.87458115941328 40.83533789484191, -73.87456628798873 40.83533544913397, -73.87456684778074 40.83533535519085, -73.8745329099447 40.83533373970864, -73.87453301764049 40.83533258629187, -73.87453095373857 40.83533244266892)), ((-73.87394300640713 40.83203947970432, -73.87394243817648 40.832037158506644, -73.87418168348194 40.83200432475612, -73.87423186712368 40.83221326470168, -73.87427890323248 40.83241475589137, -73.87432520556374 40.83261634801102, -73.8743370616988 40.8326669966803, -73.87434891192406 40.83271764534147, -73.87436076809523 40.83276829400746, -73.87437261717271 40.8328189417635, -73.87438447337998 40.832869590426164, -73.87439633790433 40.83292023909623, -73.87440817992076 40.83297088774012, -73.87442003618388 40.83302153549736, -73.87443188416427 40.83307218414439, -73.87444374284316 40.83312282739842, -73.87445560034433 40.833173476052465, -73.87446744836866 40.83322413009748, -73.8744795916401 40.833276031648, -73.87449172662804 40.83332793498879, -73.87450387705091 40.833379836543585, -73.87451601326565 40.833431738081195, -73.8745281494858 40.83348364682097, -73.87454029166467 40.83353554926203, -73.87455243504814 40.83358745170263, -73.87456457133862 40.83363935323331, -73.87457671356246 40.83369126197266, -73.87458868210014 40.83374160636133, -73.87460065065419 40.833791951648855, -73.8746126192145 40.83384230323815, -73.87462458780648 40.833892647621845, -73.8746365647141 40.83394299291334, -73.87464891777894 40.83399506486109, -73.87465531240294 40.83402679985432, -73.87435093760025 40.83407015076665, -73.87433821415172 40.83387909237086, -73.87433592662511 40.83382474950174, -73.8743336391227 40.83377039582617, -73.8743313433027 40.83371605384742, -73.87432905579756 40.83366170557373, -73.8743267682961 40.833607357299485, -73.8743163997507 40.83337604571632, -73.87430817927836 40.833312444688815, -73.87429712360935 40.83324909360901, -73.87428323261554 40.83318606451559, -73.87426653582357 40.83312342137486, -73.87423577983867 40.83302093579796, -73.87420113743273 40.832919171771, -73.87416264404158 40.83281820767221, -73.8741059622182 40.83261856003965, -73.87405025675778 40.83241875585175, -73.87399232928487 40.83221300323124, -73.87394952774312 40.83206600732146, -73.87394300640713 40.83203947970432)), ((-73.87279584609928 40.823436340609994, -73.87278309684787 40.823435791650276, -73.87277031850118 40.82343558034333, -73.87275754663165 40.82343570132537, -73.87274478121844 40.82343616540235, -73.87273205311648 40.82343695459838, -73.87271935872278 40.82343809322297, -73.87270673245884 40.82343955790114, -73.87269417905584 40.823441354041165, -73.87268171392564 40.82344348075956, -73.87266935129641 40.82344593627109, -73.87265710658697 40.82344871609035, -73.87264500233715 40.82345181123725, -73.8726330527511 40.82345523253353, -73.87262124364675 40.823458957451116, -73.87260962478885 40.823462997751555, -73.87259819976803 40.82346733542884, -73.87258697923906 40.823471977698844, -73.87257597389458 40.82347691196642, -73.87256520509096 40.82348212834987, -73.87255467993367 40.82348763045903, -73.87254441267514 40.823493403901786, -73.87253441042951 40.82349944778554, -73.87252469100208 40.82350574952315, -73.87250979329806 40.82351410857282, -73.87250196684906 40.823514288123434, -73.87249357090542 40.82351287046318, -73.8724859338145 40.82350393179266, -73.87249285040139 40.823466972250884, -73.8725025537737 40.82343440210912, -73.87251364951678 40.82340208204286, -73.87252613516483 40.82337006067577, -73.87253607234913 40.823347226959605, -73.8725469857977 40.82332465816709, -73.8725588743002 40.823302366903555, -73.87257171881679 40.82328039096854, -73.87258550745996 40.82325874745808, -73.87260023070084 40.82323745977413, -73.87261586123313 40.82321654949816, -73.87263239425941 40.82319604544037, -73.87266501282312 40.82315718811011, -73.87269829012007 40.82311787584627, -73.8727315602963 40.82307854735579, -73.87276547498702 40.82303875941283, -73.87278428462015 40.8230160192098, -73.87280214676532 40.8229928349141, -73.87281900448257 40.82296922807529, -73.87283486366005 40.82294521941165, -73.87284970171572 40.82292084041614, -73.8728666836977 40.822889875748004, -73.87288226176122 40.82285849259954, -73.87289641095781 40.822826720660274, -73.87290911817593 40.82279459863758, -73.87292037623118 40.822762165245386, -73.87293016845247 40.82272946098812, -73.87293615047454 40.82270499207704, -73.87294405161212 40.822655090748, -73.87295047093846 40.8226145295393, -73.8729519468125 40.822605188510956, -73.87295984793664 40.82255528177702, -73.87296775022578 40.822505379545944, -73.872975652503 40.82245547731387, -73.87298810595462 40.822400988460565, -73.87299922805225 40.8224037130072, -73.87301026199044 40.822458225028754, -73.87301836278019 40.822505542451104, -73.87302677895775 40.822554691830355, -73.87303518803532 40.82260384120074, -73.87304359592791 40.82265299687227, -73.87305201214271 40.82270214624847, -73.8730604283683 40.82275129652413, -73.87307364386103 40.82280502570469, -73.87308686175109 40.82285875218439, -73.87310008559291 40.82291247686766, -73.8731133023437 40.82296620154105, -73.87312651911407 40.823019927112966, -73.87313973709294 40.823073651783695, -73.87315296103044 40.823127371055996, -73.8731661778443 40.82318110742786, -73.87317939470176 40.82323483209133, -73.87319261987847 40.82328855676189, -73.87320404605974 40.82333894131104, -73.87321547818708 40.823389324964694, -73.87322690321759 40.82343970950944, -73.87323833537958 40.823490093159975, -73.8732497687443 40.82354047681022, -73.87326119382496 40.82359086225083, -73.87327262722428 40.82364124589802, -73.87328405234302 40.823691629534494, -73.87329548459324 40.82374201227675, -73.87330691805307 40.823792391416795, -73.87324320026933 40.82380313635798, -73.87325239876043 40.82385373726982, -73.87326159490493 40.82390433277492, -73.87327079345825 40.82395491567454, -73.87328058296112 40.824008921109446, -73.8732806493359 40.82401328318792, -73.87328024699711 40.82401913777464, -73.87327574046319 40.82402699595853, -73.87326849531163 40.824033760631146, -73.87326083044125 40.82403807639171, -73.87322639703827 40.824051355085146, -73.87320052264988 40.82406138338243, -73.8731434070373 40.82408351330229, -73.87309625959631 40.82409198282503, -73.8730690708675 40.82409686600987, -73.87304507558491 40.824099929198574, -73.87303772141817 40.82409857756082, -73.87302907742345 40.824096028642984, -73.8730224899911 40.82409231584598, -73.87301633722817 40.82408818209485, -73.87301045349662 40.82408097434432, -73.87300862232621 40.82407708488397, -73.87300683642563 40.82406997259611, -73.87300822965602 40.82405984714573, -73.87302262331144 40.82404232852644, -73.87303506556842 40.82402925530945, -73.87304689320567 40.82401585723571, -73.87305810737269 40.824002153216995, -73.87306867957155 40.823988168436095, -73.8730786086085 40.823973907394354, -73.87308787073255 40.82395939257817, -73.87309646709845 40.82394464019793, -73.8731043751373 40.82392967454237, -73.87311159838677 40.82391450552097, -73.87311811666432 40.82389914932062, -73.87312393346996 40.82388363566157, -73.87312902388972 40.82386797532263, -73.87313339855164 40.82385218992739, -73.87313704675316 40.823836297474145, -73.87313996371189 40.82382031956958, -73.87314214583945 40.82380427331926, -73.87314359073126 40.823788176730524, -73.87314429478346 40.82377205501332, -73.87314425204211 40.823755922569056, -73.87314348380741 40.82373979923212, -73.87314196748659 40.82372372189797, -73.87313971970356 40.82370767617689, -73.87313013576632 40.823673393631005, -73.87312055182862 40.82363911648702, -73.87311845752379 40.823631485174964, -73.87311601459795 40.82362391111107, -73.87311323960745 40.823616415024894, -73.87311011596526 40.82360899239571, -73.87310666736077 40.82360165315505, -73.87310288429025 40.82359440809834, -73.87309878451943 40.82358726534962, -73.87309435854806 40.82358023390329, -73.8730896205787 40.82357332548148, -73.87308456468273 40.82356654097809, -73.87307921217872 40.82355989032201, -73.87307356422643 40.82355338702191, -73.87306763386192 40.82354703289314, -73.87306139972895 40.823540837817546, -73.8730548997556 40.82353480453833, -73.87304813272218 40.823528951064084, -73.87304109981403 40.82352327739606, -73.87303382118489 40.82351778265585, -73.87302629797384 40.82351249115812, -73.87301853850448 40.82350738940457, -73.87301054866948 40.823502495411475, -73.87300235216509 40.82349781550843, -73.87299393832419 40.82349334878315, -73.8729853332035 40.823489106970726, -73.87297690045327 40.82348461140746, -73.8729532198217 40.8234732372604, -73.87294205512298 40.823468518963445, -73.87293068240795 40.823464099401015, -73.87291910996592 40.82345998308477, -73.87290735913416 40.82345617003811, -73.872895444115 40.82345267198314, -73.87288337439166 40.82344948893022, -73.87287116298455 40.823446630799154, -73.87285883242491 40.82344409311217, -73.87284639812295 40.823441875886374, -73.87283385886037 40.82343999622967, -73.8728212454818 40.82343844156925, -73.8728085721878 40.82343722452755, -73.87279584609928 40.823436340609994)), ((-73.87183492545249 40.82357854831868, -73.87184811933557 40.82357843961426, -73.87186131966169 40.823578678507225, -73.87187449798648 40.823579262264424, -73.87188763771248 40.82358019176801, -73.8719007258022 40.82358146610292, -73.87191375396306 40.82358308255852, -73.87192669968287 40.82358503570689, -73.8719410643586 40.823587598264844, -73.87195529555515 40.823590531677404, -73.87196939326252 40.82359384134764, -73.87198332785592 40.823597521839666, -73.8719970827502 40.82360156773218, -73.87201064609309 40.8236059781116, -73.8720240013185 40.82361073765118, -73.8720371259089 40.82361584362448, -73.87205001273291 40.82362130592913, -73.87206264050342 40.823627098427174, -73.87207499499387 40.823633222003465, -73.87208707266721 40.82363966674871, -73.87209883204956 40.823646424512404, -73.8721102814441 40.8236534926025, -73.87212140309742 40.8236608565914, -73.87213216975007 40.82366851374744, -73.87214259566356 40.82367644517618, -73.87215264410894 40.82368464093143, -73.87216231388008 40.82369311181801, -73.87217158369484 40.823701828996484, -73.8721804606846 40.82371078256936, -73.87218890931115 40.82371995989049, -73.87219694142678 40.82372936187347, -73.87220453810798 40.82373896598503, -73.87221168868761 40.82374877131298, -73.8722183884654 40.823758756240274, -73.87222462916577 40.823768909051346, -73.87223039657387 40.823779224327524, -73.87223568953357 40.82378968675916, -73.87224050097018 40.82380027652757, -73.8722448249651 40.82381098912377, -73.87232006596479 40.82401113129133, -73.87236054852404 40.824185837328685, -73.87232564314492 40.8241898067975, -73.87229756257173 40.82419299677991, -73.87226908122746 40.82419623583885, -73.87222927659525 40.82420075725897, -73.87215879944428 40.824208772810415, -73.87214395226906 40.82421047089489, -73.87207703561738 40.82421813104597, -73.87205834841576 40.82422004998359, -73.87203958628793 40.8242214789649, -73.87202076700177 40.82422242521355, -73.87200191900962 40.82422288786059, -73.87198305655782 40.82422285611585, -73.87196420925115 40.8242223462212, -73.8719454020169 40.82422134109485, -73.87192664666463 40.82421986416281, -73.8719079669466 40.824217892939075, -73.87188938179705 40.824215444554255, -73.87187092559707 40.82421251724549, -73.87185260308539 40.824209112819176, -73.87183445098961 40.824205242122105, -73.87181647761857 40.82420089976061, -73.87179871257689 40.82419610197666, -73.8717811701004 40.82419084338319, -73.8717638726899 40.824185135711765, -73.87174684284794 40.82417898979348, -73.87173008769776 40.82417240023343, -73.87171365224394 40.82416538869364, -73.87169752701203 40.82415795066132, -73.87168175108822 40.824150103289455, -73.87166633156615 40.82414185649161, -73.87165129689426 40.824133211199985, -73.87163664702935 40.8241241899272, -73.87162241397787 40.824114792708976, -73.871608609575 40.824105029464086, -73.87159525038018 40.8240949191216, -73.87158235772233 40.824084466207914, -73.87156993274348 40.824073693236826, -73.87155799559393 40.82406260113145, -73.87154656283994 40.82405120521882, -73.87153564748625 40.824039523523524, -73.8715252613662 40.824027566864814, -73.87151541274442 40.82401535236151, -73.87150895485553 40.82400660404513, -73.87150290387004 40.823997699495386, -73.87149725267882 40.82398863690341, -73.87149202377869 40.823979429801774, -73.87148721002913 40.82397009259058, -73.87148282562896 40.8239606387931, -73.87147888480479 40.82395106752477, -73.8714753590541 40.82394140576871, -73.87147228512315 40.8239316544665, -73.87146966180015 40.823921827124224, -73.87146747602094 40.82391193633432, -73.87146574909514 40.82390199652853, -73.87146447389073 40.8238920176043, -73.87146364920137 40.823882010366376, -73.87146328330033 40.823871987430856, -73.87146336904368 40.82386196499876, -73.87146391354368 40.823851943077976, -73.87146491081907 40.82384194957732, -73.87146636562007 40.8238319799995, -73.87146826367103 40.82382206044303, -73.8714706227512 40.8238121918282, -73.87147342266319 40.82380239754537, -73.87147665985219 40.82379267669003, -73.87148034969717 40.823783045488305, -73.87148446015522 40.8237735228148, -73.87148901256711 40.82376410689223, -73.87149398198501 40.82375482560823, -73.87149937908451 40.82374567537261, -73.87150518369603 40.82373666516779, -73.87151139458881 40.82372781840528, -73.87151800463798 40.823719141380494, -73.87152500553691 40.8237106385867, -73.87153238539838 40.82370232711991, -73.87154014065378 40.82369421327963, -73.87154825824268 40.823686307857145, -73.87155673103169 40.823678621650444, -73.8715655518961 40.82367116095495, -73.87157469710678 40.823663936550126, -73.87158418206357 40.82365695385602, -73.87159395458403 40.82365022542143, -73.87160404548023 40.82364375578306, -73.87161441798351 40.823637555705815, -73.87162507682336 40.823631631498365, -73.87163598049828 40.82362598941799, -73.87164714202873 40.823620639384494, -73.87165854008781 40.823615575971104, -73.87167015921142 40.823610827075925, -73.87168198519372 40.82360638277766, -73.8716940109138 40.8236022475708, -73.87170621975335 40.82359843314324, -73.87171859155876 40.82359494037297, -73.871731110925 40.823591766541355, -73.87174377070342 40.8235889305508, -73.87175654719795 40.823586426071465, -73.8717694415821 40.82358425940804, -73.8717824171082 40.82358243051964, -73.87179546665537 40.82358094390082, -73.87180857955332 40.82357980044023, -73.871821738021 40.823579000117974, -73.87183492545249 40.82357854831868)), ((-73.87245176420043 40.82464188937718, -73.87246580545671 40.824640145336964, -73.87250355050935 40.82480304997241, -73.87250885293273 40.8248166812472, -73.87251353274598 40.824830446907846, -73.87251758288966 40.82484431903128, -73.87252100456088 40.824858291315394, -73.87252377526531 40.8248723484269, -73.87252590808035 40.82488647056938, -73.87252739829306 40.82490064242926, -73.87252823644899 40.82491484868765, -73.87252843209846 40.8249290542358, -73.8725279828615 40.824943263573466, -73.87252688285027 40.82495745598284, -73.87252513092365 40.82497160804964, -73.87252274371025 40.82498570268282, -73.87251971174518 40.82499972996641, -73.87251604455626 40.82501366649802, -73.87251174097844 40.82502750147027, -73.87250680935433 40.82504121147947, -73.87250125563139 40.82505478572618, -73.87249508695297 40.82506820800921, -73.87248831284545 40.8250814558266, -73.8724809404453 40.8250945165792, -73.87247296858574 40.82510738036011, -73.87246442694745 40.825120023789204, -73.87245530843646 40.82513243695297, -73.87244562849784 40.825144601858455, -73.87243540019193 40.82515650771407, -73.87242463423246 40.8251681311185, -73.87241334959492 40.8251794675902, -73.87240154749573 40.82519050092139, -73.87238925759675 40.825201217637336, -73.87237647992733 40.825211602429405, -73.87236323820656 40.82522164992076, -73.87234955144645 40.82523133671937, -73.87233542912887 40.825240663736054, -73.87232088552412 40.825249607573575, -73.87230594433929 40.82525816915854, -73.87229062457455 40.82526633140234, -73.8722749452195 40.82527408261945, -73.87225891695371 40.82528141741859, -73.87224256468379 40.825288329523694, -73.87222590977728 40.82529480364992, -73.87220897357422 40.82530083892025, -73.8721917596519 40.825306424532506, -73.87217430832774 40.825311554227916, -73.87216470201805 40.82531497176897, -73.87215495985366 40.82531814332311, -73.87214505935961 40.82532104365142, -73.87213504316706 40.825323696214106, -73.87212491487227 40.825326080303654, -73.87211468396231 40.825328194129604, -73.87210435754992 40.82533003769977, -73.872093958157 40.82533161193966, -73.87208349173684 40.825332903348404, -73.87207296655993 40.82533392634305, -73.87206240634922 40.825334673745985, -73.87205182297134 40.82533513926686, -73.87204121879556 40.8253353238088, -73.87203061514793 40.82533523369895, -73.87202002626604 40.82533486264966, -73.87200945332508 40.82533421606512, -73.87199891767526 40.825333287665664, -73.87198842641551 40.82533208466311, -73.87197801035894 40.82533061159418, -73.8719676541156 40.82532885763584, -73.87195738610505 40.82532683902853, -73.87194721581973 40.82532455128048, -73.87193716341393 40.825321993513455, -73.87192722413393 40.825319172025736, -73.87191742522425 40.825316097653605, -73.87190776789289 40.825312758691936, -73.87189827224566 40.825309179476534, -73.87188894898817 40.82530534110891, -73.87187980281882 40.82530126610666, -73.87187084204271 40.82529695087718, -73.8718620891661 40.82529240445043, -73.87185354417501 40.82528763403042, -73.8718452224925 40.825282633330836, -73.87183713592965 40.8252774248773, -73.87182929516756 40.82527200237819, -73.87182169899829 40.82526637753881, -73.87181436992967 40.82526055848854, -73.87180730677275 40.82525454702715, -73.87180051780133 40.82524835577092, -73.87179401842441 40.82524198563739, -73.87178781452755 40.82523545824515, -73.87178191442962 40.82522876279754, -73.87177631927429 40.82522192090781, -73.87177103498709 40.82521493348299, -73.87176607695785 40.8252078113463, -73.87176144990393 40.82520056710994, -73.87175715026373 40.82519320347146, -73.87175319106142 40.82518572854987, -73.87174957109237 40.8251781522493, -73.87174630100117 40.82517048718861, -73.87174337957093 40.82516274957538, -73.87174081866995 40.82515493221891, -73.87173860641583 40.82514704951387, -73.8717367641187 40.825139115891986, -73.87173527752886 40.8251311439444, -73.87173416087481 40.82512313188589, -73.87173340583242 40.82511509321469, -73.87173301473253 40.825107048644846, -73.87173299352116 40.825098988277446, -73.87173334214629 40.82509093912742, -73.8717340535054 40.82508289578375, -73.87173512635744 40.82507488706109, -73.87173657019967 40.82506690576593, -73.87173837670788 40.82505896539646, -73.87174054467742 40.82505107585677, -73.87174306814792 40.82504325424967, -73.87174594712104 40.82503549967468, -73.87174917327431 40.82502782472936, -73.87175105689036 40.8250143193772, -73.87175354735282 40.82500086512771, -73.87175665173059 40.82498748450107, -73.87176037708214 40.82497420542052, -73.87176470919047 40.82496102336768, -73.87176963968435 40.824947976154, -73.8717751709743 40.8249350430707, -73.87178129228685 40.824922278135524, -73.87178799885402 40.82490969485052, -73.87179525986973 40.82489728507678, -73.87180310492282 40.82488507316064, -73.8718114972212 40.82487308157338, -73.87182044504527 40.82486131932913, -73.87182991636735 40.82484979719808, -73.87183992063945 40.824838531399536, -73.87185043528791 40.824827548022725, -73.87186144372865 40.82481684074554, -73.8718729340552 40.82480643656955, -73.87188489676839 40.82479634358849, -73.87189731762395 40.82478657169192, -73.87191018237746 40.8247771307693, -73.87192346727362 40.82476804510747, -73.871937166399 40.824759307495775, -73.87195125717335 40.824750947625354, -73.87196571708554 40.82474295916768, -73.87198055440086 40.824735359241096, -73.87199570745786 40.824728157682586, -73.8720111940122 40.824721368019084, -73.87202697495866 40.82471498300318, -73.87204305262497 40.824709025149694, -73.872059379582 40.82470350070939, -73.87209279333054 40.8246980132306, -73.8721237263523 40.82469293721961, -73.87216848827897 40.8246855892699, -73.87218805294982 40.824682373671536, -73.87225239137261 40.82467181460318, -73.87231672385649 40.82466125098985, -73.87238105630951 40.824650692743596, -73.87243294923111 40.82464423506948, -73.87245176420043 40.82464188937718)), ((-73.87240964649185 40.82808691363937, -73.87240047579509 40.828041630155624, -73.87239563954087 40.82798570040013, -73.87241680890087 40.82800672428994, -73.8724324198899 40.82803124945919, -73.87245996955326 40.8280745685751, -73.87248752757165 40.82811787688737, -73.87251507612129 40.82816119598819, -73.87254262590261 40.828204509680454, -73.87259002531961 40.8282740290192, -73.87263423947297 40.828344746981784, -73.87267520922808 40.828416586063845, -73.87271288614498 40.828489455265284, -73.87274722295304 40.828563271691465, -73.87277819019097 40.82863793805935, -73.87279958143114 40.82869810217551, -73.87281832805407 40.82875877575261, -73.87283441715354 40.828819884937054, -73.8728478215762 40.82888136666538, -73.87287991150663 40.829042415204846, -73.87291557791521 40.82920304083717, -73.87293786883059 40.829299440963915, -73.87296373511087 40.82939533804419, -73.87298156068185 40.82943875347149, -73.87299939455409 40.829482179710745, -73.8730172213468 40.82952560053614, -73.87303227239676 40.829556836395746, -73.87304588824972 40.8295884542845, -73.87305805358322 40.82962040645966, -73.8730687364343 40.82965266767272, -73.87307794756174 40.8296851902097, -73.87310271803868 40.82978146965734, -73.8731055119098 40.82979287570904, -73.87283138181301 40.829874599905416, -73.87282847439204 40.829866181566835, -73.87277001043202 40.82960685715314, -73.87271038599603 40.82934769440688, -73.87264959873661 40.82908868792067, -73.87258764274101 40.82882983678572, -73.87251952373582 40.82857039527177, -73.87245490702762 40.8283104397941, -73.8724440205085 40.82825667804924, -73.87243313519416 40.82820291540376, -73.87242224041175 40.8281491536467, -73.87241135513088 40.828095391898614, -73.87240964649185 40.82808691363937)), ((-73.87168844690737 40.82547463573523, -73.87167633067185 40.82542226108846, -73.87166422153682 40.82536990265675, -73.87165930500957 40.825348638265524, -73.87165210531685 40.82531753971295, -73.87163999624079 40.82526517047184, -73.87162788717342 40.825212806631974, -73.87161577100024 40.825160449085956, -73.87160430736895 40.825111503345305, -73.87159283544433 40.82506256389734, -73.87158137182419 40.825013629860045, -73.87156989992287 40.82496469581197, -73.87155843516143 40.82491575636731, -73.87154696449143 40.82486681601404, -73.87153550687465 40.8248178774747, -73.87152655347822 40.82477969995561, -73.8715259286613 40.82476378388418, -73.871528267111 40.82475908769866, -73.87153514481864 40.82475182024955, -73.87154643137109 40.82474690080318, -73.87155168499956 40.8247457891391, -73.87160687602795 40.82473868174986, -73.87166684521661 40.82473112580163, -73.87172681320445 40.824723570721424, -73.87177824752713 40.82471709031931, -73.87178967953058 40.82471726602019, -73.87179533283117 40.82472097964967, -73.87180251789414 40.82472644644747, -73.87180930327298 40.82473570569184, -73.87181119856746 40.8247425875921, -73.87181171054488 40.82474819375199, -73.87180995652814 40.82475720126975, -73.87180811803456 40.824760831828875, -73.8718032614146 40.82476754143229, -73.87178524823727 40.824785625887706, -73.87177111475641 40.824800753822046, -73.87175761720903 40.824816213844535, -73.87174476274096 40.82483198885391, -73.8717325667926 40.824848063559195, -73.8717272245359 40.82485579198117, -73.87171757519594 40.8248710986925, -73.87170859044545 40.824886632167, -73.87170027268176 40.82490237890002, -73.87169263496247 40.82491832990129, -73.87168567735905 40.824934448250666, -73.87167941528794 40.824950731263876, -73.87167385587439 40.82496717264555, -73.87166900630791 40.8249837327819, -73.8716648523741 40.82500040625425, -73.87166141664034 40.82501717057537, -73.87165869794416 40.825034014037534, -73.87165670343879 40.8250509159374, -73.87165504583149 40.82506277993447, -73.87165393583238 40.8250746778593, -73.8716533651732 40.82508659439433, -73.87165334216627 40.82509852234483, -73.87165386684313 40.82511044550189, -73.87165493806205 40.825122341351836, -73.87165655108149 40.82513420988936, -73.8716587035865 40.82514602229602, -73.87166139677326 40.825157773170076, -73.87166462356062 40.825169446294716, -73.87166838990903 40.825181024567044, -73.87167268160393 40.82519250256829, -73.87167749276345 40.82520385687887, -73.87168281985241 40.82521507668889, -73.8716886593459 40.82522614578537, -73.87169500295654 40.82523705875607, -73.87170183412472 40.825247796672, -73.87170916235152 40.82525835053876, -73.8717169639752 40.82526869601648, -73.87172523899241 40.82527883490607, -73.87173396728717 40.825288748274616, -73.87174215243634 40.825296312543685, -73.87175064739776 40.82530366463959, -73.87175946163934 40.82531081267721, -73.87176857267592 40.8253177368206, -73.87177796391123 40.82532443705119, -73.87178763892764 40.82533089986546, -73.87179758706134 40.825337122550025, -73.87180779529672 40.82534309248336, -73.87181825532514 40.825348815059144, -73.8718296469621 40.82535461791314, -73.87184129878929 40.82536012209035, -73.87185318831081 40.82536531315777, -73.87186530722327 40.82537019380755, -73.87187764131863 40.82537475501893, -73.87189016808532 40.82537899046335, -73.87190288871908 40.82538289473906, -73.87191577358361 40.82538646781311, -73.87192881321947 40.82538969706794, -73.87194199338731 40.825392589691724, -73.87195529396726 40.82539512855264, -73.87196870545478 40.825397324445994, -73.87198220771782 40.82539916654347, -73.87199578298673 40.82540064852181, -73.87200941938428 40.82540178207433, -73.87202310152026 40.8254025563779, -73.87203681161445 40.825402970512336, -73.87205052357479 40.82540303075212, -73.872064229115 40.825402730784575, -73.87207791994541 40.82540206609806, -73.87209156759434 40.82540104746693, -73.87211730726304 40.825399793707525, -73.87214295807753 40.825397894187944, -73.8721685223993 40.82539535341335, -73.87219396227957 40.82539217854565, -73.87221925519937 40.8253883668586, -73.87224437268306 40.82538393092761, -73.87226927561893 40.82537886620696, -73.87229394264938 40.82537318257872, -73.87231835359867 40.825366891727064, -73.87234609588398 40.825359243007455, -73.87235885197998 40.82536135798578, -73.8723667490488 40.82536650045662, -73.87236702379022 40.825372209907904, -73.87236649910308 40.825380001322614, -73.87234738621639 40.825422595258395, -73.87232728571982 40.82546648030965, -73.87230718401123 40.82551036535578, -73.87228813270566 40.82554307009783, -73.87228318848454 40.825551564407405, -73.87225750716856 40.82559217086073, -73.87225161438711 40.82560076497372, -73.87223014608152 40.82563213609456, -73.87220113727669 40.82567143492925, -73.87217051524617 40.82571000706861, -73.87213831320146 40.82574784174221, -73.87212863379712 40.82575965182503, -73.87210947336759 40.825783054288145, -73.87208063469907 40.82581826142499, -73.87206404323847 40.8258385185948, -73.87205179598793 40.82585347485789, -73.87202295725838 40.8258886819799, -73.87200805884963 40.825905725347944, -73.87199385327462 40.825923107169245, -73.87198036663621 40.82594081576657, -73.87196760370948 40.825958834036, -73.87195557994744 40.82597714038304, -73.87194430248567 40.82599572310943, -73.87193234419995 40.82601572696222, -73.8719212495538 40.82603601813078, -73.87191104230031 40.8260565741293, -73.87190172958239 40.826077379657505, -73.8718933339938 40.82609839872087, -73.87188584962536 40.82611962230806, -73.8718792883898 40.8261410207161, -73.87187365980444 40.82616257684632, -73.87186897105747 40.82618425198548, -73.8718533395239 40.82617811394269, -73.87184236554796 40.8261314173178, -73.87183962120766 40.826119722223844, -73.8718305791593 40.8260812294648, -73.87181878330478 40.82603104159968, -73.87180699575404 40.825980860045604, -73.87179519993506 40.82593067217718, -73.8717834124425 40.82588047891344, -73.8717716249469 40.82583029645402, -73.87175983036671 40.82578010858204, -73.87174804290667 40.825729926119365, -73.87173624717664 40.825679738242805, -73.87172445976086 40.825629551274396, -73.87171266525355 40.82557936249544, -73.87170055488461 40.825526999565156, -73.87168844690737 40.82547463573523)), ((-73.87450684580651 40.83538871537886, -73.87451431174142 40.835388689283384, -73.87452427435966 40.83538879287349, -73.87453421957767 40.835389321477386, -73.8745416619941 40.83538982124355, -73.87455648794563 40.83539123763953, -73.87456384769538 40.8353921929648, -73.8745736275785 40.83539363358673, -73.87458093113419 40.83539483828683, -73.87459490911745 40.83539764411983, -73.87460176970654 40.83539923554979, -73.87461087225016 40.83540149037995, -73.87461979858045 40.83540413853414, -73.87462643416995 40.835406216885694, -73.87463950071196 40.835410750672615, -73.87464591151576 40.83541320248411, -73.8746543847199 40.835416596653324, -73.87466463509173 40.83542129576922, -73.87467064058524 40.83542428563483, -73.87468052854348 40.835429409389064, -73.8746862619962 40.835432682614105, -73.87469378935512 40.835437186963325, -73.8746993232529 40.835440657179305, -73.87470820041455 40.835446754168416, -73.8747134148603 40.8354505004886, -73.87472172682789 40.83545704260766, -73.87472659102421 40.835461049690224, -73.87473584691602 40.83546939472374, -73.87474021136588 40.83547372003812, -73.87474727810445 40.835481064944815, -73.87475127700866 40.83548558887119, -73.8747577077918 40.83549317892165, -73.87476370187309 40.83550097741242, -73.87476934947004 40.835508925909245, -73.87477464823844 40.83551701000174, -73.87477957566661 40.83552522156109, -73.87478414243182 40.83553355699698, -73.8747883450093 40.83554199919613, -73.8747921703587 40.835550547244, -73.87479561731465 40.83555919033343, -73.8747986799793 40.83556791224908, -73.8748013714064 40.83557670670175, -73.87480365723287 40.83558556284821, -73.87480555643033 40.83559447980858, -73.87480706430688 40.835603430562884, -73.87480817255292 40.83561242050521, -73.87480888949128 40.835621437037545, -73.874809211604 40.835630459444786, -73.87480913033194 40.83564214597835, -73.87480856890251 40.835653820284236, -73.8748075107234 40.835665478742456, -73.87480595701896 40.83567710064299, -73.87480391372222 40.83568868329073, -73.87480139035009 40.835700209586626, -73.87479837981067 40.83571166781648, -73.87479487975267 40.83572304717178, -73.87479091391226 40.835734335071294, -73.87478646689296 40.83574552249338, -73.87478154584215 40.835756591435725, -73.87477616737044 40.835767535612995, -73.87477108114338 40.83577691144532, -73.87476560035253 40.83578615267529, -73.87475972856814 40.83579525210269, -73.87475346580882 40.835804199822135, -73.87474682511466 40.83581299674814, -73.87473981483411 40.83582161677535, -73.87473244207756 40.83583006171245, -73.8747247139739 40.83583832346269, -73.87471663172738 40.8358463921218, -73.87470820840872 40.83585425239552, -73.87469946180235 40.835861904303066, -73.87469038125786 40.835869337026935, -73.87468099879926 40.83587654429833, -73.87467131327143 40.835883509907035, -73.8746602625594 40.835891379028524, -73.87464885789207 40.83589895510351, -73.8746371135259 40.83590622283887, -73.87462504370546 40.835913173245075, -73.87461267096303 40.83591980364506, -73.87459998820516 40.83592610322507, -73.87458703220192 40.835932063920495, -73.87457381126977 40.83593767673537, -73.87456033845433 40.835942939882855, -73.87454663748701 40.83594784348312, -73.87453271430809 40.835952381239174, -73.87451860093827 40.835956548683235, -73.87450753815251 40.835959488468546, -73.87406333226266 40.835923921909156, -73.87406641433053 40.83591358219139, -73.87408162680902 40.83586117559612, -73.8740932435204 40.83582365565508, -73.8741065325367 40.83578645811423, -73.87412147835677 40.835749627980825, -73.87413806668934 40.835713197656446, -73.87415628201833 40.83567722025259, -73.87417609461052 40.835641743462375, -73.87420299502057 40.83559615734018, -73.874230947709 40.83554959352093, -73.8742572518815 40.83550640655402, -73.87426124817459 40.83550037579441, -73.8742643321738 40.8354958883888, -73.87426976440166 40.83548852826294, -73.87427454137791 40.83548283784052, -73.87427822596828 40.83547862574013, -73.87428602157941 40.83547041001815, -73.87429015268268 40.83546644513964, -73.87429582743181 40.835461246464575, -73.87430017288185 40.835457414192064, -73.87430773582773 40.83545122793043, -73.87431414230338 40.83544655233885, -73.87431901463981 40.83544309884766, -73.87432736605646 40.83543752307893, -73.87433611511345 40.835432333154635, -73.87434151412852 40.835429368304574, -73.87435063712965 40.83542455519343, -73.8743562479246 40.835421826503065, -73.87436382363593 40.83541829310946, -73.87437165007981 40.8354150877686, -73.87437756717434 40.835412770036456, -73.87439084921441 40.83540802718824, -73.87439771937228 40.83540580414452, -73.87440695601495 40.835402965937874, -73.87441874335637 40.83539990628467, -73.87442589102754 40.83539826976361, -73.87443548661213 40.83539621897804, -73.87444271215469 40.83539478335103, -73.87445486751625 40.83539272634555, -73.87446470222606 40.835391499770644, -73.87447209614096 40.83539068476604, -73.87448447362152 40.835389668070746, -73.87449191670873 40.835389183599986, -73.87450684580651 40.83538871537886)), ((-73.8683458740922 40.87803004056951, -73.8683682422567 40.87802882341049, -73.86838654957593 40.87802992487568, -73.86838978233098 40.878028201425956, -73.86839215440234 40.878026158221786, -73.86839437390208 40.87802267766448, -73.86840132630132 40.87800820304068, -73.8685674422161 40.87804994536838, -73.86897827074691 40.87815317801893, -73.8691889747645 40.8782061235079, -73.86913777263587 40.87827058633769, -73.86910546527908 40.878308332381415, -73.86907060797328 40.87834686164914, -73.86903327724679 40.87838586715905, -73.86899714282788 40.878421625053385, -73.86896954570135 40.87844773039191, -73.86894980288143 40.8784658086868, -73.86890628058798 40.87850402730134, -73.86851832889639 40.87839394524163, -73.86845887890841 40.878377076189366, -73.86839459901576 40.87835308143902, -73.8683459216454 40.87832057773021, -73.86832103979978 40.8782970421001, -73.86830086369527 40.87827445284468, -73.8682773188486 40.87824258201118, -73.86825895184656 40.878211098890404, -73.86824629017242 40.87818322513314, -73.86823658008204 40.878154834262034, -73.86823199954176 40.87813682197016, -73.86823224770134 40.87812594345576, -73.86823387761048 40.87811526282536, -73.86823656011491 40.878105643271255, -73.86824506462838 40.8780874370051, -73.86825647283978 40.87807191480632, -73.86827102479937 40.87805887433819, -73.86828602831832 40.878049054529384, -73.86830079299958 40.878041817046245, -73.86832135282859 40.87803475456476, -73.8683458740922 40.87803004056951)), ((-73.87243331989254 40.84059167604244, -73.87204859229026 40.84042268910913, -73.87215102201074 40.83986591188394, -73.8726027414717 40.8398894409409, -73.87260078174779 40.839897360423784, -73.8725472558045 40.840120579722814, -73.87249330039174 40.840343737280556, -73.8724389285396 40.84056683761322, -73.87243331989254 40.84059167604244)), ((-73.87277289052749 40.82352626769968, -73.87278548094991 40.82352619694359, -73.87279176927294 40.8235263542637, -73.87280288760246 40.82352680326928, -73.8728139779242 40.8235276412575, -73.87282502383518 40.8235287673546, -73.87283601109344 40.82353019054987, -73.87284691365107 40.82353189460564, -73.87285774334342 40.823533889440455, -73.87286846816617 40.8235361741186, -73.87287908931515 40.823538743238366, -73.87288957717418 40.82354158686174, -73.87289993766694 40.823544706796255, -73.87291014354106 40.82354809670842, -73.87292018530488 40.82355176109027, -73.87293005587512 40.823555684625696, -73.8729397422141 40.823559866399755, -73.87295052446085 40.82356560543873, -73.87295505859646 40.82356875046614, -73.87296222549497 40.8235744026751, -73.87296632741767 40.823577926334984, -73.87297300409104 40.82358391929144, -73.87297679744313 40.823587633516325, -73.87298295430759 40.823593940172906, -73.87298642607 40.82359783414262, -73.87299203235969 40.8236044256497, -73.87299518020625 40.823608475948745, -73.87300326645385 40.82361938086418, -73.87301074767561 40.82363053004782, -73.8730177116951 40.823641869566735, -73.87302415734555 40.82365338951416, -73.87303006212963 40.82366507635811, -73.87303543439484 40.82367690399337, -73.87304026584651 40.823688870609885, -73.87304454229712 40.823700956381195, -73.87304825547776 40.82371314598984, -73.87305141369974 40.823725432240984, -73.8730540027859 40.82373778990524, -73.87305603579267 40.823750209991985, -73.87305748430582 40.823762673559564, -73.87305836375441 40.823775170719514, -73.87305867298524 40.82378768436117, -73.87305840491989 40.823800196466806, -73.87305756669117 40.823812696238235, -73.87305615952366 40.82382516296548, -73.87305417394748 40.823837589434085, -73.87305162778647 40.8238499531512, -73.87304851039225 40.823862243299146, -73.87304483957834 40.82387444278804, -73.87304060589382 40.823886534497944, -73.87303582476774 40.82389850854038, -73.87303048911303 40.8239103514, -73.87302462149027 40.82392204329069, -73.87301821361498 40.823933576999195, -73.87301128804428 40.8239449345404, -73.87300384481576 40.82395609610326, -73.8729958969843 40.82396705359766, -73.87298744929834 40.82397780342671, -73.87297851248144 40.82398831678624, -73.87296910314139 40.82399858739092, -73.87295922722583 40.82400860444126, -73.87294889306354 40.824018351737365, -73.87293812318951 40.82402782300048, -73.8729269247506 40.82403700022844, -73.87291531908947 40.82404588074306, -73.87290330861308 40.82405444563656, -73.87289024502866 40.8240632452981, -73.87287680630718 40.824071706858355, -73.87286300431161 40.82407982582781, -73.87284886395987 40.82408758962685, -73.87283439000247 40.8240949937581, -73.87281958483268 40.82410202651767, -73.8728014303591 40.82410992816208, -73.87278911721295 40.824114960962135, -73.8727734714023 40.824120840152744, -73.87275757977346 40.824126325552996, -73.87274146012864 40.82413140637646, -73.87273119940447 40.82413433967629, -73.87272508300128 40.8241359943418, -73.87270859729512 40.824140330045985, -73.87269188019488 40.82414416841819, -73.8726750169187 40.82414757889066, -73.87265801338366 40.82415056687291, -73.87264088501949 40.82415312247646, -73.872615801194 40.8241563329555, -73.87258163597122 40.82416070223939, -73.87254060434438 40.823986433314005, -73.87253259418823 40.8239494365614, -73.87252624989598 40.823912263351275, -73.87252156430415 40.82387493888978, -73.87251855033917 40.82383752082328, -73.87251721504512 40.82380004337852, -73.87251755358263 40.823762556077554, -73.8725195717984 40.823725099449156, -73.87252377454163 40.8236877442901, -73.87252491794392 40.82367997426794, -73.87252716474056 40.82367170478937, -73.87253055980752 40.82366240551138, -73.87253479611744 40.82365331607844, -73.8725398641298 40.82364446619625, -73.87254650663562 40.82363486073637, -73.87255235264888 40.82362767403035, -73.87256064378104 40.823618835813946, -73.87256951101166 40.82361000363651, -73.87257727977448 40.823602811850016, -73.87258535870698 40.823595832922955, -73.87259375610353 40.823589068665356, -73.8726024624602 40.82358252987262, -73.87261145170815 40.823576211112965, -73.8726223994275 40.82356918582512, -73.8726273281468 40.823566213326885, -73.87263397983423 40.82356232872738, -73.87264091902118 40.823558734404976, -73.87264618135309 40.82355611346815, -73.87265515809231 40.82355199100264, -73.87266059898614 40.823549597187444, -73.87266987015725 40.82354585865751, -73.87267939897356 40.823542524734286, -73.87268520628051 40.82354068692898, -73.87269301790363 40.82353834435658, -73.87269891613342 40.823536691252755, -73.87270891143979 40.823534270045215, -73.87271494066735 40.823532921453065, -73.87272512941219 40.82353100653681, -73.87273126121711 40.82352994711647, -73.87274157003267 40.823528471773635, -73.87274989441363 40.82352764259765, -73.87275614730969 40.823527109199674, -73.8727666109147 40.82352651471114, -73.87277289052749 40.82352626769968)), ((-73.87281632412258 40.82459985163488, -73.87283318111291 40.82459978647947, -73.87284925372971 40.824600140988586, -73.87286568826104 40.82460092903334, -73.87288206742517 40.82460215555646, -73.87289647239464 40.82460361673186, -73.87291462768941 40.824605901490465, -73.87293075428097 40.82460841003536, -73.87294676151564 40.82461134528188, -73.87296262806792 40.824614700903005, -73.87297833024674 40.82461846786781, -73.87299384670594 40.82462265065532, -73.87300916442841 40.82462723754483, -73.87302426564322 40.824632223113824, -73.87303912901277 40.82463760733891, -73.87305373915764 40.824643373994355, -73.87306807591534 40.824649528460945, -73.873082123908 40.824656053612564, -73.87309586536645 40.82466294312612, -73.87310929081755 40.824670191588496, -73.87312236590277 40.82467778905636, -73.87313509419917 40.824685724727914, -73.8731474508195 40.8246939949739, -73.87315942276189 40.8247025799692, -73.87317100172822 40.824711479704796, -73.87318215692999 40.82472067703751, -73.873192891944 40.824730161165434, -73.87320318781693 40.82473992486389, -73.87321302561102 40.82474995280375, -73.87322601609948 40.824763390786956, -73.87323840020494 40.8247771594848, -73.87325015306747 40.82479124086019, -73.87326126285824 40.824805621392954, -73.8732717130168 40.82482028215456, -73.87328150476091 40.82483520603713, -73.87329061322872 40.82485037590406, -73.87329903607812 40.82486577644451, -73.87330676861323 40.82488138334007, -73.87331377529969 40.824897181243394, -73.87332007276754 40.82491315216296, -73.8733256503781 40.82492927987823, -73.87333049631945 40.824945541863954, -73.87333463623042 40.824963414962575, -73.87333519448919 40.824967818102955, -73.8733356396466 40.824973721346176, -73.87333586356573 40.82497814843269, -73.87333587439556 40.82498553701798, -73.87333541861845 40.82499144017205, -73.87333497040794 40.82499585931632, -73.87333363661486 40.825004668308495, -73.87333270246525 40.82500903919261, -73.87333092113448 40.82501630874473, -73.87332959353203 40.82502061976391, -73.87332764680484 40.825026346583826, -73.8733260596817 40.825030609591565, -73.87332298079119 40.82503761657417, -73.87332100382953 40.82504178910394, -73.8733165487493 40.82504998413035, -73.8733140825074 40.8250539949336, -73.87330976674276 40.82506061874652, -73.8733069391965 40.825064494978676, -73.87330202761909 40.82507087410217, -73.87329885422533 40.82507459146681, -73.87329337771465 40.825080695317766, -73.87328987272608 40.82508423942245, -73.87328385029531 40.82509004370829, -73.87328003389858 40.82509339656522, -73.87327350590921 40.8250988716138, -73.87326939118013 40.82510201432684, -73.87326237427978 40.82510713314134, -73.87325798614008 40.82511005132991, -73.87325052304398 40.825114793245774, -73.8732458828556 40.82511747432625, -73.87323800562211 40.82512181236367, -73.87323313356165 40.82512424375122, -73.87322488134997 40.82512815724172, -73.87321982830561 40.82513038401707, -73.8732130337798 40.82513326714043, -73.87320685741365 40.82513586458518, -73.87319445266981 40.825140981073275, -73.87318810253836 40.82514331808245, -73.87317739446584 40.82514703075962, -73.87317084345706 40.82514902715927, -73.87316202609021 40.82515153524922, -73.87315536527394 40.825153301000185, -73.87314183707063 40.825156369418444, -73.87313498867132 40.82515766130072, -73.87312350629402 40.82515961625246, -73.87311656485716 40.82516058655401, -73.87310727351176 40.82516174517467, -73.87309557019859 40.82516268862302, -73.87308852679034 40.82516304917463, -73.87307676992718 40.82516347837868, -73.87306971770518 40.8251634877258, -73.87306030557555 40.8251633341864, -73.87305325738232 40.82516309590045, -73.87303918919916 40.82516212768726, -73.8730322047744 40.82516139689868, -73.87302290595484 40.825160259238366, -73.87301597059573 40.82515928626926, -73.8730045029253 40.82515726013067, -73.87299767376024 40.82515592617837, -73.87298642061336 40.82515330144411, -73.87297973082292 40.82515161284867, -73.87296654656139 40.82514776131019, -73.87296008407665 40.825145609208306, -73.87294941992349 40.825141834284885, -73.8729431679008 40.82513934832976, -73.87293492856791 40.82513588674794, -73.87292883699182 40.82513318575022, -73.8729169842138 40.825127354581056, -73.87291124432414 40.825124237940614, -73.87290371073223 40.82511994687657, -73.87289814782014 40.8251166494308, -73.87288915421605 40.82511088084291, -73.87288061654675 40.8251047336479, -73.87287564496341 40.82510092537086, -73.87286911473343 40.825095766431595, -73.87286298688812 40.82509033598566, -73.87285850077804 40.82508620046239, -73.87285137089417 40.825079087684195, -73.87284720640793 40.825074759808835, -73.87284062715379 40.825067342368804, -73.87283582364046 40.8250611929846, -73.8728323165075 40.825056542555394, -73.87282678134673 40.82504865350527, -73.87282283913426 40.82504215477723, -73.87282001056819 40.82503724665353, -73.87281485165036 40.82502725896055, -73.87281235166027 40.825022242238965, -73.8727958826536 40.824988585127684, -73.87278082981442 40.82495454326319, -73.87276728793624 40.824920137462065, -73.87275526168115 40.824885408252335, -73.87274476282899 40.82485039346837, -73.87273559625032 40.824814227518054, -73.87272549577725 40.82477174895608, -73.87271516708617 40.82472835883857, -73.87271065251936 40.824709371389105, -73.87270618145263 40.82469057399215, -73.8726878237859 40.824612514897474, -73.8727204511265 40.82460845905859, -73.87273458605048 40.824606697979576, -73.87275079045352 40.824604467322395, -73.87276708174916 40.82460266989758, -73.87278345165181 40.82460129939257, -73.87279987409252 40.82460035037554, -73.87281632412258 40.82459985163488)), ((-73.87377211975173 40.8306417382054, -73.87379497114387 40.83037730926536, -73.87381403697502 40.8304310518965, -73.87381998473201 40.830455477144035, -73.87382639596066 40.830481819152915, -73.8738387620784 40.83053258641531, -73.8738511199162 40.83058335366687, -73.8738539844055 40.830595116372194, -73.87386347896013 40.83063412001748, -73.87387584513442 40.830684887274614, -73.873880125994 40.83070246963002, -73.87388820421607 40.830735653621716, -73.87390056331314 40.83078642176803, -73.87391210363158 40.830835720309146, -73.87392364397564 40.830885014346215, -73.87393089652248 40.830916001122574, -73.87393518432658 40.83093431378469, -73.87394672469634 40.83098361232109, -73.87395766651233 40.83103033838655, -73.87396979719682 40.83108220487772, -73.87398133761616 40.831131504309944, -73.8739928780526 40.83118080374057, -73.87400441851807 40.83123009686622, -73.87401595898866 40.831279396293766, -73.87402749117926 40.831328694810146, -73.87403664235816 40.83137008257311, -73.87404578526152 40.83141146402253, -73.8740549281541 40.83145285717734, -73.87406413749164 40.83149422789132, -73.87409870427214 40.83164735886372, -73.87413263664128 40.83179876558098, -73.87389237088149 40.83183118478687, -73.87388941480066 40.83181892491137, -73.87384770255663 40.831644166969845, -73.87383402429901 40.83157501196659, -73.87382329987271 40.83150555042218, -73.87381553503583 40.831435866990375, -73.87377651771145 40.831163764793715, -73.87376848780664 40.831120737532984, -73.87376216066797 40.83107754824502, -73.87375755163765 40.83103423206631, -73.87375464404126 40.83099082770003, -73.87375346031368 40.83094738109622, -73.87375399445374 40.830903929168684, -73.87377211975173 40.8306417382054)), ((-73.8729016483042 40.838313759769356, -73.87252262695499 40.83776821093676, -73.87312051708366 40.837538637166055, -73.87310694614271 40.83764422503252, -73.87309078003605 40.83774716708855, -73.87307639160859 40.83783808589326, -73.87306077597133 40.83792030546785, -73.87303191332255 40.83806871481119, -73.87300797784141 40.83819868564149, -73.8729901912928 40.838268982966426, -73.8729016483042 40.838313759769356)), ((-73.86068884573334 40.8967555428858, -73.86070260854017 40.89675138484412, -73.86072735272248 40.89675767667307, -73.86073556142445 40.8967785598228, -73.86073270565004 40.89682865216956, -73.86073538211812 40.89686413991736, -73.86073800611003 40.896924675497004, -73.86074340279323 40.89697477779761, -73.86075703446231 40.897033239328906, -73.86075968471611 40.897081250990496, -73.86076508142843 40.89713135328859, -73.86077597543532 40.89718354954041, -73.86078136342434 40.89723782647529, -73.86079503015264 40.89727958944558, -73.86081687509963 40.89735684678995, -73.86084425673636 40.89741741220778, -73.86085791043254 40.89746543712664, -73.86087432372942 40.89750929072044, -73.8608907239425 40.89755940626883, -73.86090713728424 40.897603259857135, -73.86092079106402 40.89765128476691, -73.86093721318242 40.897690963712115, -73.86096187215371 40.89771434118958, -73.86086686591965 40.8978592696491, -73.86064894521154 40.89759358523903, -73.86062644901236 40.897584738731084, -73.86048723049915 40.89752998946838, -73.8606315820445 40.89731231037129, -73.86065214886152 40.8972683537053, -73.86066634094786 40.89721684417669, -73.86066706163486 40.89721045340315, -73.8606689504249 40.89719369945572, -73.86067226243033 40.897164333230194, -73.86067037717498 40.89714543337399, -73.86066978906726 40.89713952908364, -73.86066745051198 40.89711608663318, -73.86065902240979 40.897087199703215, -73.86065171129954 40.897062143884085, -73.8606432446152 40.89704543956966, -73.86062645308068 40.89701231026039, -73.86060486710456 40.89698148760519, -73.86058001886367 40.89695291852224, -73.86055263259779 40.89692700820218, -73.86052141859652 40.89690250251008, -73.86049356823993 40.896883437103305, -73.8605345594033 40.89687015945147, -73.860567608607 40.89685141345178, -73.86061166980575 40.89682850609002, -73.86063923922097 40.89679931682974, -73.86066404904865 40.89677429888138, -73.86068884573334 40.8967555428858)), ((-73.8729191773056 40.825284383763325, -73.87290309353764 40.825266817163396, -73.87288783327185 40.82524883453912, -73.87287340120312 40.825230460209326, -73.87285981389803 40.825211709501055, -73.87284709262686 40.82519261755739, -73.87283525276031 40.82517320510704, -73.87282431679522 40.825153485682456, -73.87281427637271 40.82513349079206, -73.8728051610816 40.82511324478219, -73.87279697917793 40.82509276927407, -73.87279229483981 40.82506954840791, -73.87280153634919 40.82507833303945, -73.87280453236453 40.82508618417063, -73.87280789129912 40.82509394475193, -73.87281160605922 40.82510160486997, -73.8728156695117 40.8251091753228, -73.8728200722265 40.8251166281846, -73.87282481657459 40.82512396345801, -73.8728298942907 40.82513116402432, -73.87283530537489 40.82513822988358, -73.8728410190367 40.82514514479286, -73.87284705187241 40.825151908770344, -73.8728533956081 40.82515850919996, -73.87286003604767 40.82516493075759, -73.87286696487422 40.8251711833394, -73.87287417620188 40.82517724532696, -73.87288166055914 40.825183110406364, -73.87288941321107 40.825188774970286, -73.87289741638301 40.82519423539711, -73.87290566417347 40.82519947817288, -73.87291415778344 40.825204495194335, -73.872922858088 40.82520928911984, -73.87293178051348 40.82521385186179, -73.87294091203879 40.825218173500474, -73.8729502265859 40.825222253106524, -73.87295972890509 40.82522608618263, -73.87296939412607 40.825229660094486, -73.872979222235 40.82523298204592, -73.87298919904089 40.82523603401133, -73.87299930199782 40.8252388276724, -73.87300953111435 40.82524135852655, -73.87301987219256 40.82524361215014, -73.87303030981805 40.82524559032723, -73.87304082858863 40.8252472885383, -73.87305141546598 40.82524870586853, -73.87306206924393 40.825249853122514, -73.87307276861699 40.82525071316736, -73.87308349697516 40.82525129318868, -73.87309424011866 40.825251579663444, -73.87310500038222 40.82525159150466, -73.87311574578284 40.82525131607019, -73.87312647631511 40.825250756061436, -73.87313717063756 40.82524991325603, -73.87314782874664 40.82524878945489, -73.87315842100784 40.82524738372494, -73.87316894740557 40.82524570417069, -73.87317938424637 40.82524374266159, -73.8731897338906 40.82524150460328, -73.8731999655013 40.82523899806631, -73.87321009330873 40.82523622036491, -73.87322006749677 40.82523318585223, -73.87322990114464 40.82522987383123, -73.87323957878321 40.82522631490197, -73.87324909686629 40.825222503657486, -73.87325842694672 40.82521843826559, -73.87326756662942 40.82521413133063, -73.87327649931822 40.82520958283449, -73.87328521906696 40.82520480267603, -73.87329372350128 40.825199792653784, -73.87330198414142 40.8251945680449, -73.87331000099414 40.82518912524745, -73.87331776694175 40.825183466955124, -73.87332528193782 40.82517761748139, -73.87333250806894 40.82517156597867, -73.87333944649133 40.82516532775668, -73.87334610312706 40.82515890552356, -73.87335247318647 40.82515232448788, -73.8733585234978 40.82514557380744, -73.87336426470601 40.82513866610079, -73.87336968612175 40.82513161216227, -73.8733747841784 40.825124417390974, -73.87337954937192 40.825117092582495, -73.87338397339414 40.82510964313067, -73.87338805858164 40.82510208704806, -73.87339180256372 40.82509442433212, -73.87339517687106 40.82508666485705, -73.87339819569478 40.82507882664839, -73.87340086021011 40.82507091511052, -73.87340316211913 40.82506293023422, -73.87340509426653 40.82505489452414, -73.8734079940716 40.82503982699915, -73.8734102052537 40.8250246965838, -73.87341173608738 40.82500951589424, -73.87341257943132 40.824994300231054, -73.8734127340457 40.82497907840883, -73.87341220704546 40.82496384953483, -73.87341098648922 40.82494865952125, -73.87340908424208 40.82493350297817, -73.87340650025325 40.82491840692035, -73.87340323568449 40.82490338395596, -73.87339929049519 40.824888455696865, -73.87339467888022 40.824873638367514, -73.87338939369303 40.82485894996982, -73.87338345742484 40.82484440763793, -73.87337686173852 40.82483003207392, -73.8733696220314 40.82481583049865, -73.87336174537363 40.82480182543209, -73.87335324001215 40.824788043898124, -73.87334412728339 40.824774486820495, -73.87333439884675 40.82476117670233, -73.87332407246333 40.82474812436898, -73.87331316587206 40.82473535235215, -73.87330011357233 40.8247213740129, -73.87326398234534 40.82468731535229, -73.873250372309 40.8246761423414, -73.87323625184492 40.82466533436934, -73.87322165770144 40.824654891476364, -73.87320660286686 40.8246448406914, -73.87319110392515 40.82463518833604, -73.87317517507734 40.824625947032686, -73.87315884596255 40.824617115012735, -73.87314211533 40.82460872649352, -73.87312502230898 40.82460077611498, -73.87310758821475 40.8245932756068, -73.87308477043337 40.82458238060244, -73.87307953966756 40.824573390591624, -73.87308026265589 40.82456848458183, -73.87308441843632 40.82456120864145, -73.87309157794672 40.82455650062073, -73.8731028204523 40.82455160078447, -73.87311428407702 40.824546992050834, -73.87312594744553 40.82454269420708, -73.87313780108988 40.82453869913834, -73.87314982600901 40.82453502483353, -73.87316201984255 40.824531665887086, -73.87317435413172 40.824528626770025, -73.8731868205564 40.824525919179706, -73.87319939778577 40.82452353949061, -73.8732120917439 40.824521489510225, -73.87326588872753 40.82451355584003, -73.87331979591244 40.82450563847478, -73.87337369835315 40.8244977156761, -73.87341241709335 40.82449201932208, -73.87342826358501 40.82449033838013, -73.87343911297239 40.82449640432628, -73.8734422757351 40.824503867510614, -73.87343332742657 40.82452042322348, -73.87342603506966 40.82453391186117, -73.87341933387631 40.824547592052525, -73.8734132476188 40.8245614305054, -73.87340778224694 40.82457541551995, -73.8734029377919 40.8245895308874, -73.87339871546341 40.82460376400218, -73.87339512833073 40.82461809957024, -73.87339218591033 40.824632520492706, -73.87338987877398 40.82464699794337, -73.87338820809545 40.82466153822701, -73.87338719646182 40.824676108050085, -73.87338682137602 40.82469069388048, -73.87338709590563 40.824705281324576, -73.87338801534355 40.82471985236732, -73.87338957971089 40.82473439620271, -73.87339115351591 40.824744603257365, -73.87339139356395 40.82474616228033, -73.87339464340829 40.82476331130146, -73.87339813328654 40.82477766634541, -73.87340224927964 40.82479191491749, -73.8734070103549 40.82480605703852, -73.87341939962782 40.82484330616794, -73.87343014055207 40.82488087226236, -73.87343919295378 40.82491868503934, -73.87344134005664 40.82492976080078, -73.8734465640215 40.82495670308443, -73.87345224195808 40.824994894867544, -73.8734562161926 40.82503320724803, -73.87345848205243 40.825071602400165, -73.87345904554738 40.82511003530577, -73.87345789136306 40.82514845371931, -73.87345503615101 40.82518682704213, -73.87345047171117 40.82522510213574, -73.87344421352326 40.82526324119618, -73.87343625930268 40.825301197394786, -73.87342661862259 40.825338922115, -73.87342327480958 40.82535058797749, -73.87341110173512 40.825389074437844, -73.87339729572412 40.825427232223724, -73.87338186156714 40.825465034324914, -73.87336480765578 40.825502430322274, -73.87334617080158 40.82553938603658, -73.87332201012923 40.825578620239035, -73.87331149221816 40.825580797791055, -73.87326082734434 40.82554899331841, -73.87321524326107 40.82551661719129, -73.87317126575556 40.825485354025396, -73.87313250034244 40.825456148808115, -73.87309372904645 40.825426938168214, -73.87305496487656 40.825397738328874, -73.87301360480963 40.825367192077074, -73.87300229992606 40.82535873657334, -73.87299121585946 40.82535011291884, -73.87297209494311 40.825334408812225, -73.8729537004937 40.82531819942374, -73.8729360466711 40.82530151898824, -73.8729191773056 40.825284383763325)), ((-73.87284773722054 40.82549798830517, -73.87283300644052 40.82534993855907, -73.87282507646621 40.825247248009106, -73.87284496989105 40.8252687143683, -73.87285825916511 40.8252895836176, -73.87287245716323 40.82531010537499, -73.87288754377646 40.82533025710557, -73.87290350482303 40.82535001628088, -73.87291902616178 40.825367869519, -73.8729352796593 40.82538534085077, -73.87295225230518 40.82540241495305, -73.87296992042697 40.825419072889126, -73.87298827101574 40.825435298435316, -73.87300728156721 40.82545108166111, -73.87302694264413 40.825466398242376, -73.87306434796349 40.82549454031277, -73.8730728461077 40.825500935086694, -73.87311990200872 40.825536024284276, -73.87316695085012 40.825571111653616, -73.873213998542 40.825606206206196, -73.87326171216458 40.82564459278544, -73.87326718803287 40.8256506780544, -73.87326752634463 40.82566101882579, -73.87323450612573 40.82570988308569, -73.87320180687489 40.82575638568675, -73.87316912063204 40.82580288108862, -73.87313642723936 40.825849371970556, -73.87311027067231 40.825887021759094, -73.87308410697331 40.82592466613065, -73.87306867902616 40.82594725160735, -73.87305877294993 40.82596174949969, -73.87303687136617 40.825995430064594, -73.87301650742087 40.82602966882509, -73.87299771203399 40.82606441538825, -73.87298050542572 40.82609963555822, -73.87296491257702 40.82613528523891, -73.87295093950691 40.826171317611816, -73.87293497920133 40.8262112766584, -73.87292817688346 40.826215071958714, -73.87292001047604 40.826217427662826, -73.87290976166501 40.826213959363, -73.87289356545617 40.826156465536336, -73.87288615840461 40.82610573151557, -73.8728808772002 40.82605483684747, -73.87287770275202 40.826003843645566, -73.87286931235627 40.82582500123011, -73.87285892440066 40.82564622054151, -73.87285518537949 40.82559664319379, -73.87285137462814 40.825546143658165, -73.87284773722054 40.82549798830517)), ((-73.87286472420108 40.839911265327366, -73.87286671028056 40.83990318828264, -73.87328672048316 40.839925062417315, -73.8727163928522 40.84071601201614, -73.87267664770184 40.840698555295795, -73.87268183428966 40.84067612250962, -73.87274565644931 40.840421571030724, -73.8728066225218 40.840166612034594, -73.87286472420108 40.839911265327366)), ((-73.87370476015548 40.83699278353962, -73.87370741172786 40.83698630108079, -73.87385297803198 40.83701945810779, -73.87403723385846 40.837070015145414, -73.87413580813718 40.837106968297114, -73.87433778666083 40.837191933180215, -73.87434343654067 40.83719746657154, -73.87434665940998 40.83720361145576, -73.87434664897243 40.83720913777967, -73.87434509170629 40.8372144228868, -73.87431833211429 40.83721529872731, -73.87429046257373 40.837216892846946, -73.87426267475128 40.83721916241992, -73.87423499590952 40.837222111077956, -73.8742074556974 40.83722573435097, -73.87418008494971 40.83723002777024, -73.87415290501093 40.83723498955822, -73.87412595504783 40.83724059814588, -73.8740992539994 40.83724686976297, -73.87407283272108 40.83725378913493, -73.87404873707435 40.83726041297683, -73.87402495799894 40.83726766030172, -73.87400151801833 40.83727553293532, -73.87397844680925 40.83728401199998, -73.87395578114528 40.83729308763064, -73.87393353764745 40.83730274813922, -73.87391173647835 40.83731298994611, -73.87389042273176 40.837323792389405, -73.87386961065084 40.83733514738055, -73.87384932279849 40.8373470360341, -73.87382958290492 40.83735944937133, -73.8738104182673 40.83737237301444, -73.87376168190488 40.83740348940097, -73.87371433277572 40.83743582655535, -73.87366843379284 40.83746934582695, -73.87362403365356 40.83750400224604, -73.87358118692914 40.8375397796653, -73.87353587106308 40.83757833688925, -73.87352572477944 40.83757924967109, -73.87351613751413 40.83757300233253, -73.8735237863354 40.83752555105581, -73.87353382972695 40.83748333067522, -73.87354548614238 40.83743646190808, -73.87360466516566 40.83726595869581, -73.87363560901866 40.837177045348376, -73.87363750576088 40.8371715904292, -73.87365236018425 40.837128871029726, -73.87370476015548 40.83699278353962)), ((-73.87344009907099 40.82999809804985, -73.87343118241938 40.82998017290225, -73.87369299887838 40.82990492546978, -73.87369900319594 40.829928235073574, -73.87370543182057 40.82996035018857, -73.87371048497315 40.829992604274096, -73.87371761433563 40.83002217985708, -73.87372360413494 40.830051900071965, -73.87372845442256 40.83008173700367, -73.87373216404391 40.830111673541616, -73.87373472001991 40.8301416763534, -73.87373612831767 40.83017172383372, -73.87373855502682 40.830199252841965, -73.87373992298166 40.830226821213245, -73.87374026305068 40.83025440466793, -73.87373956815023 40.830281986989384, -73.87373301605605 40.83041986100629, -73.87372075599825 40.83055750454633, -73.87371172581759 40.83073048166252, -73.8737049641689 40.83090749907944, -73.87369167424953 40.83091184382369, -73.8736654986545 40.830861228913996, -73.87364707380681 40.830812687326365, -73.8736304564876 40.830763759602405, -73.8736156833285 40.83071450701674, -73.87360273768195 40.8306649538652, -73.87359125262738 40.830617903889525, -73.87357967812275 40.83057114377385, -73.87356811075281 40.83052438096297, -73.87355653628758 40.830477617242245, -73.87354496302589 40.8304308526208, -73.87353338740773 40.83038408889578, -73.87352181298104 40.83033733057343, -73.87350926512748 40.830285022327686, -73.87349671017876 40.83023271497279, -73.87348415523948 40.83018041301904, -73.87347159914472 40.830128105659206, -73.87345905138034 40.83007579200318, -73.87344649649 40.83002349544693, -73.87344009907099 40.82999809804985)), ((-73.87408097639081 40.83279887134891, -73.87407576161847 40.83274656579068, -73.87407054684247 40.83269426653522, -73.87413266704915 40.832875026827345, -73.87419489906873 40.833055770993155, -73.87421063988748 40.83310289937093, -73.87422433015338 40.83315039651387, -73.8742359699592 40.833198211094626, -73.87424693764005 40.83325350715551, -73.87425566887575 40.833309037606654, -73.87426216496556 40.833364739415316, -73.87426641176185 40.83342056754175, -73.87426932892706 40.833466669770786, -73.8742722318573 40.83351277828729, -73.87427514903058 40.83355888051547, -73.8742768427067 40.83360684813586, -73.87427854349883 40.83365481576359, -73.874280243118 40.83370277798666, -73.87428194391674 40.83375074471307, -73.87428363642049 40.833798710529514, -73.87428533723262 40.833846672752614, -73.87428832699709 40.83389389977531, -73.8742913155904 40.83394112139333, -73.87429431366255 40.83398834842414, -73.87429729515243 40.83403556913293, -73.87429994535054 40.83407741352471, -73.8741247573958 40.8341023642761, -73.87412475629218 40.83410169430656, -73.87412477488982 40.83409750432331, -73.87412781723677 40.83393264140335, -73.87412958362002 40.833769162047645, -73.87412973589944 40.833563960085414, -73.87412458022568 40.83335879374569, -73.87411745530095 40.83318935779937, -73.87410466177587 40.833020112868404, -73.87408619118328 40.832851170603014, -73.87408097639081 40.83279887134891)), ((-73.87298393251781 40.836940382821375, -73.87291593803803 40.83690232325605, -73.87276508429065 40.83683080984587, -73.87278046701103 40.836833869586044, -73.87276406771475 40.836824857355175, -73.8727165715272 40.83679520298759, -73.87272791421546 40.836786133115375, -73.87279475136653 40.83679437883914, -73.87285913315414 40.83680319093011, -73.87292349123544 40.83681200836197, -73.8729878647473 40.836820825774865, -73.87305635345439 40.836830378882894, -73.87312484811285 40.836839930155776, -73.87319334279607 40.83684947868649, -73.87322222944391 40.83685351314106, -73.8732618291926 40.83685903076935, -73.8733522130951 40.83687498146028, -73.87344214865841 40.8368922868328, -73.87343356883339 40.83691744894469, -73.87342827619344 40.83693296856473, -73.87341695525241 40.83696616548219, -73.87341317476822 40.83697708433295, -73.87340696810256 40.836995031582674, -73.87340030840437 40.83701428225096, -73.87338366628687 40.837062392718735, -73.87336702650634 40.837110508589255, -73.87335037721645 40.837158624446545, -73.87333373620208 40.837206740310165, -73.87331709634934 40.83725485617229, -73.87329970327325 40.8373050000185, -73.87328230424266 40.83735514385519, -73.87326491941207 40.83740528860495, -73.87324751914163 40.8374554333347, -73.87323012003066 40.83750557806268, -73.87320464298486 40.83755695478903, -73.87320924971833 40.83750260510162, -73.87320990794736 40.83749690839614, -73.87321159780697 40.83748742444411, -73.87321248487153 40.837481726189196, -73.87321354524077 40.83747219111743, -73.8732138941804 40.83746453909821, -73.87321405451029 40.837458800422624, -73.87321398145312 40.8374492298861, -73.87320981726451 40.83740513259194, -73.87320565308141 40.83736103529729, -73.87320278078991 40.83733772103648, -73.87319895507041 40.83731449037374, -73.87319418064577 40.8372913541202, -73.87318845863922 40.837268345595234, -73.87318181273052 40.83724548283466, -73.87317805678617 40.83722732833565, -73.87317348017957 40.83720927288897, -73.87316808163472 40.83719136421926, -73.87316186826092 40.8371736050358, -73.87315484832241 40.83715601425789, -73.87314702888041 40.83713861980849, -73.8731384253078 40.837121443316214, -73.87312904231344 40.837104502795945, -73.87311889053082 40.83708781807011, -73.8731079829528 40.83707141526711, -73.87309409203621 40.83705451390847, -73.87307945585133 40.83703797102529, -73.87306410635445 40.83702181636888, -73.8730480458998 40.837006058946415, -73.87304315176851 40.83700157810096, -73.87304341287161 40.83699895704848, -73.87298393251781 40.836940382821375)), ((-73.87283297723974 40.838696560791576, -73.87291229226001 40.838665619877794, -73.87290658940633 40.83868967480378, -73.87286463277437 40.838851608590176, -73.87280763941862 40.83907348609135, -73.87273988706461 40.839339791979555, -73.8726686082481 40.83962325824418, -73.87255813043802 40.83961773506433, -73.87258622055553 40.83930340895289, -73.87257630787532 40.83918778624065, -73.87255519180702 40.83894147501058, -73.87278204266417 40.83884843423151, -73.87283297723974 40.838696560791576)), ((-73.87374784262444 40.8352693395704, -73.8737969598792 40.83512660995524, -73.87380947952147 40.83512875782711, -73.87381650369997 40.83518222429289, -73.8738174610378 40.83523194976811, -73.87381628545428 40.835281667506365, -73.87381297939966 40.83533133338601, -73.87380301034264 40.83542901356513, -73.87379047350176 40.83552652704183, -73.87376251917438 40.835705642691984, -73.87372971992357 40.83588427576367, -73.873727166805 40.83589700506433, -73.87314889528382 40.83585070010559, -73.873149543967 40.83584627308602, -73.87315622588562 40.83583586621243, -73.87316370619999 40.83583081185714, -73.87319487278319 40.83582157013055, -73.87322086454016 40.835813947199924, -73.87324649590224 40.83580567911311, -73.87327176566761 40.83579677397344, -73.87329662876465 40.83578724073656, -73.8733210721252 40.83577709289586, -73.87334505660755 40.83576633851304, -73.87336856203835 40.83575498657116, -73.87339156585432 40.83574305595612, -73.87341403603453 40.83573055113564, -73.87343595238026 40.83571749460014, -73.87345729353963 40.83570389172955, -73.87347802981519 40.83568977220782, -73.87349765605904 40.835675172401615, -73.8735166086322 40.83566006667564, -73.87353487443977 40.83564448293127, -73.87355242382233 40.83562843104164, -73.8735692413326 40.83561192900009, -73.87358530320702 40.83559500379575, -73.87360059045177 40.83557766801507, -73.87361508524002 40.83555994415111, -73.87362878279036 40.83554185291035, -73.87364164274574 40.835523418562246, -73.87365367573628 40.83550466273057, -73.87366485090536 40.835485601590676, -73.8736751598979 40.835466264849956, -73.87368459675557 40.8354466687111, -73.87369313890939 40.835426835661934, -73.87370078511128 40.83540679901957, -73.87374784262444 40.8352693395704)), ((-73.87436345890876 40.83728528030168, -73.87440982225854 40.837283129987156, -73.87445122296327 40.83728698235189, -73.87434713182449 40.83732700494123, -73.87434789474871 40.83732734435836, -73.87385924922147 40.837514589306245, -73.87373862718727 40.837879292677314, -73.87369212479688 40.837911356096434, -73.87359406187565 40.83797669390276, -73.87335524334644 40.838091553835355, -73.87337253417705 40.83803790425003, -73.87341322723324 40.837970830563044, -73.87345538583688 40.837894956135294, -73.87350188772206 40.83782018595864, -73.87353530800296 40.83776850810878, -73.87358031691832 40.83771684385198, -73.8736543377292 40.83764650538892, -73.8737268895229 40.837586068007795, -73.87378928769714 40.83753222189619, -73.87388795628934 40.83745090710727, -73.87401702482349 40.837382829394755, -73.87412288821551 40.837326828860995, -73.87418087588705 40.83730708665562, -73.87421131234153 40.83730051832844, -73.87423305555056 40.83729394051421, -73.8742605880101 40.83729066932, -73.8742939168512 40.837286304933, -73.87432724063933 40.837285240843485, -73.87436345890876 40.83728528030168)), ((-73.87083948596879 40.8764727550942, -73.87085140159158 40.87645756908539, -73.87084968324747 40.87653722436725, -73.87082602894067 40.87675496029858, -73.87080486021125 40.87695300802078, -73.87027942621627 40.878213724389155, -73.87024926862134 40.878206210132866, -73.87025017055909 40.87820363394983, -73.87026318301666 40.87816647462696, -73.87026885948247 40.87815026501748, -73.87028517681416 40.878103571436235, -73.8703014941212 40.87805687875275, -73.87030679002156 40.87804174029431, -73.87031782681957 40.87801019058639, -73.87033413577782 40.877963496987675, -73.87033559724652 40.87795931946406, -73.87035046842853 40.877916809716346, -73.87036639838288 40.87787098195623, -73.8703823366217 40.877825153302354, -73.87039828195508 40.8777793255544, -73.87041421896177 40.87773349779452, -73.87043015713468 40.87768766913288, -73.87043444668154 40.87767509142681, -73.87044575939187 40.87764191663313, -73.87052272803214 40.877414115549506, -73.8705991992424 40.87718621839617, -73.87067518844826 40.876958226091894, -73.87069106239271 40.87691046396775, -73.87070551946529 40.87686714146218, -73.87070644309475 40.876864373495266, -73.87070699560448 40.876862716315195, -73.87071382259998 40.87684224865929, -73.8707229216752 40.876814968652106, -73.87072645267826 40.87680439907311, -73.87073884770726 40.876767229090746, -73.87075478914966 40.87671948414116, -73.87077072226465 40.87667173917961, -73.87078898339743 40.87661890456017, -73.87080724568926 40.87656606903818, -73.87081174712138 40.87655305031351, -73.8708255138821 40.8765132344199, -73.87083948596879 40.8764727550942)), ((-73.86315581407855 40.895400777915164, -73.86272896812673 40.896071148015835, -73.86273317058112 40.89607673962362, -73.86273614507685 40.89608276830744, -73.86273781598443 40.8960890790941, -73.86273814091295 40.89609551164674, -73.86273711189553 40.8961019011672, -73.8627347553757 40.89610808469899, -73.86273112982738 40.896113904726676, -73.86272179546145 40.896124682340925, -73.86264722718414 40.896183359310974, -73.86264232793835 40.89618762358278, -73.86263661591127 40.89619125744805, -73.86263022775297 40.89619417462269, -73.86262332025969 40.896196302353864, -73.86261606086354 40.89619758951308, -73.86260862644936 40.89619800479381, -73.86260119623076 40.896197538504005, -73.86259395294067 40.896196200766504, -73.86258707095453 40.896194026007265, -73.86251754057557 40.89616639737765, -73.86251696442812 40.89616611033718, -73.86277772331403 40.895765114817415, -73.86279188648037 40.89574333360377, -73.86303892547737 40.895363433038206, -73.86315581407855 40.895400777915164)), ((-73.8631772530681 40.895563290509706, -73.86324836540813 40.89543034787025, -73.86336673189828 40.89546816523747, -73.86288962215012 40.896181123401355, -73.86288016195893 40.89618214592203, -73.86287060930533 40.896181968885756, -73.86286122644665 40.896180595305445, -73.86285227200565 40.89617806420934, -73.86284399149004 40.89617444432608, -73.86283661372838 40.89616983588156, -73.86283034138751 40.896164365184674, -73.86282534741444 40.89615818372264, -73.86281620500739 40.89614380561626, -73.86281010243906 40.89612852703444, -73.86280718609905 40.896112716450226, -73.86280752758991 40.896096753953636, -73.86281111781058 40.89608102314066, -73.86283340652335 40.89603216588248, -73.862860723759 40.8959848021951, -73.86289289801213 40.895939228131034, -73.86292972694366 40.89589573070079, -73.8631772530681 40.895563290509706)), ((-73.8595232462679 40.90157896760001, -73.8594453326002 40.90148571225577, -73.85931423034121 40.90147311778127, -73.85928763871146 40.901477639123634, -73.85953451553978 40.90118000367603, -73.85958620390272 40.9012295931981, -73.85966039013077 40.90136649580422, -73.8596798594786 40.90142165973255, -73.85967136820327 40.90152550407974, -73.8596241965965 40.90159163683882, -73.8595232462679 40.90157896760001)), ((-73.86355275588947 40.89432023658199, -73.8635844799829 40.89427250331645, -73.86357816652153 40.894316036133475, -73.86345151770345 40.89518923935379, -73.86335809821993 40.895159543364855, -73.86338433977765 40.89507628582457, -73.86340341358715 40.89499191219872, -73.863415239436 40.8949067780876, -73.8634197691498 40.8948212409292, -73.86341698302964 40.894735660895115, -73.863406893417 40.89465039819361, -73.86338954113715 40.894565811264364, -73.86355275588947 40.89432023658199)), ((-73.87353439341206 40.82525102944417, -73.87354590224268 40.82525075120484, -73.8735610723028 40.82530257519824, -73.87357199227021 40.825349559764504, -73.87358292249952 40.82539676676319, -73.87359413735737 40.82544516632964, -73.87360645314945 40.82549500609453, -73.87361877488719 40.82554484586413, -73.87363109782882 40.82559468563335, -73.87364372609294 40.825647308269026, -73.87365634604811 40.8256999471027, -73.87366898145461 40.82575257514551, -73.87368159554296 40.82580520316309, -73.87369278426563 40.82585183231208, -73.87369376792311 40.825856346677035, -73.87370350346045 40.82591600351401, -73.87369366761065 40.82591731196836, -73.87366560779078 40.82588549551249, -73.87364079146846 40.82585614275959, -73.87361469364052 40.82582744055605, -73.87358734506464 40.825799423153605, -73.87356831749774 40.82578124018321, -73.87343291545868 40.82567061785979, -73.87339602281168 40.8256451644545, -73.87339165571463 40.82563887689681, -73.8733896547681 40.82563446496929, -73.8733894749037 40.825624949226835, -73.87339102114393 40.82562099504402, -73.87341188822741 40.82558694587199, -73.87343086513233 40.82555443176866, -73.87344835400599 40.8255214378655, -73.87346433463252 40.825487998359854, -73.87347878555944 40.825454174462514, -73.87349168186198 40.82541998325616, -73.87350302464044 40.82538547066779, -73.87351278416682 40.82535068619263, -73.87352035629135 40.82531852426433, -73.87352657495234 40.82528619245812, -73.87353439341206 40.82525102944417)), ((-73.87024862844369 40.877143907954085, -73.87032827466648 40.876987961755745, -73.87032499721029 40.877006573868485, -73.87031434277371 40.877039855651475, -73.87029895546755 40.87708795505255, -73.8702835622161 40.8771360499421, -73.87026817487771 40.87718414303483, -73.87025278158347 40.877232237018966, -73.87023739419881 40.87728033100723, -73.87022200798883 40.877328419591464, -73.87020715219215 40.8773740126163, -73.87019229639616 40.87741959483299, -73.870177440571 40.87746518154983, -73.870162584722 40.87751077006533, -73.87014773598315 40.87755635228316, -73.87013287891052 40.8776019389918, -73.8701230793376 40.87763113530004, -73.87011632034479 40.877651274316726, -73.87010690855016 40.87767933464362, -73.87009976768817 40.87770060874504, -73.87008321619153 40.877749944072335, -73.87006666229942 40.87779927849369, -73.87005010482179 40.87784861380868, -73.87003354494861 40.87789794821771, -73.87001699335376 40.87794728353379, -73.87000000834114 40.87799801771745, -73.8699830161844 40.87804875189013, -73.8699660323187 40.87809947976579, -73.86995486363745 40.87813285548117, -73.86984395367051 40.8781052196383, -73.86984747199914 40.878095776584864, -73.86985619255397 40.87807485907416, -73.86985635346848 40.87807447474718, -73.86986186995806 40.87806124739376, -73.86987372301003 40.87803282784498, -73.86989140250125 40.87799040867039, -73.86990908909004 40.87794798860034, -73.86992747240211 40.87790539551832, -73.86993503782946 40.87788788144499, -73.86994586991666 40.87786280785196, -73.86996425197412 40.87782022556788, -73.86998263640196 40.87777763247741, -73.87000102553941 40.877735045692425, -73.87003334212855 40.877664255089286, -73.87006272736372 40.877592726377486, -73.87008913720977 40.877520535150644, -73.87014573435172 40.877382729590565, -73.87020339730093 40.877245183638394, -73.87024862844369 40.877143907954085)), ((-73.86043456784762 40.89728701815979, -73.8601123793359 40.89716219646062, -73.86025269314202 40.89695512154469, -73.86027289469784 40.89696192034767, -73.86027821695171 40.89696371155102, -73.86028459533483 40.89696609385013, -73.86029408944914 40.89696989458172, -73.86031127133545 40.896977567696624, -73.86032667755696 40.89698539714599, -73.86034403485873 40.89699543784368, -73.86036094941552 40.89700665673831, -73.8603736736157 40.897016197460836, -73.86038522513915 40.897025831314686, -73.86039541123037 40.89703523389239, -73.86040719122488 40.897047401085, -73.86041738979645 40.89705934034251, -73.86042868268883 40.89707459650841, -73.86043624571035 40.897086458737974, -73.86044371726052 40.89710006239466, -73.86045000189681 40.8971137564655, -73.86045588264474 40.89712990386979, -73.86045989241185 40.89714468927966, -73.86046224972691 40.897156900005946, -73.86046400516688 40.897172034780375, -73.86046449707493 40.897185880333815, -73.86046401463692 40.89719861531181, -73.86046261822321 40.8972114428355, -73.8604595439305 40.89722758751914, -73.86045532082763 40.89724262771976, -73.860450683667 40.89725535317293, -73.86044546097489 40.8972671729305, -73.86044047887891 40.89727687863963, -73.86043456784762 40.89728701815979)), ((-73.86325034109204 40.895125290969396, -73.86305827150079 40.89506423639136, -73.86329567252757 40.894707045749655, -73.86331032888145 40.89477705694208, -73.86331608833729 40.89484781040351, -73.86331289998611 40.894918657725604, -73.86330079124329 40.89498894878945, -73.86327987377086 40.89505803807662, -73.86325034109204 40.895125290969396)), ((-73.85606823135724 40.90617942090164, -73.8558232080725 40.90626236400586, -73.8559486611627 40.90607347395471, -73.85616443930661 40.90617233422505, -73.85606823135724 40.90617942090164)), ((-73.86274981828966 40.89619600888068, -73.86275953294043 40.896194744442646, -73.86276938852208 40.89619476876573, -73.86281244556396 40.89621392733867, -73.86285264059705 40.896236384574664, -73.86280373371656 40.89630946567369, -73.86278122355907 40.89630860236835, -73.86275898196331 40.8963058384536, -73.86274724227165 40.896302743936324, -73.86273626005446 40.89629833020717, -73.86272629142957 40.89629270022623, -73.86271756753769 40.896285983938476, -73.86271396445852 40.896282068846226, -73.86271384507329 40.896281839980986, -73.86270840173162 40.89627316993889, -73.86270428582012 40.89626244476699, -73.86270266990721 40.896251340762554, -73.86270360195658 40.896240192062706, -73.86270705516948 40.89622933271557, -73.86271292562775 40.89621908857301, -73.86271795039764 40.896212654278045, -73.86272436087526 40.89620697353586, -73.86273196564908 40.89620221631036, -73.86274053657739 40.89619852460666, -73.86274981828966 40.89619600888068)), ((-73.86113686488565 40.897447393210115, -73.86113027888591 40.89745744100458, -73.86112395385662 40.897445389408006, -73.86113686488565 40.897447393210115)), ((-73.86316493862125 40.895408255556056, -73.86315581407855 40.895400777915164, -73.86316741827123 40.89540448546151, -73.86316493862125 40.895408255556056)))",X004,53983,X004,X-09,,,X-14,Bronx River bet. Burke Ave. and the New York City-Westchester Line,"206, 209, 212","11, 12, 15, 18",48,"10460, 10466, 10467, 10470, 10472, 10473, 10704",X,206.717,False,,No,100005059,PARK,,19251231000000.00000,,DPR,True,Bronx River Parkway,,Bronx River Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/X004/,Yes,"78, 81, 83, 85, 87","36, 34, 32","14, 15, 16",{6052A771-DA4A-4508-B79E-BA6C114863B6} +"MULTIPOLYGON (((-74.02328071427831 40.62040292346347, -74.0235678594497 40.620063288592895, -74.02357068101718 40.62006501971533, -74.02356337463581 40.620073661707174, -74.0232875039009 40.62039996027653, -74.02330654635547 40.620406780561424, -74.02319182717414 40.62054254731275, -74.02318900559656 40.62054081708165, -74.02329975791514 40.62040974464977, -74.02328400365462 40.62040410067803, -74.02328071427831 40.62040292346347)))",B210S,6431,B210S,B-10,B-10,B-10,B-10,S/B Gowanus Exwy. bet. 85 St. and 86 St.,310,43,68,11209,B,0.004,False,Strip,No,100004175,PARK,20100106000000.00000,19651216000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210S/,No,46,22,11,{D9698A9B-B5AE-4869-99DF-B048670000D7} +"MULTIPOLYGON (((-73.85803031053408 40.81341857528419, -73.85813883161451 40.813402543114, -73.85817026439173 40.81355365209728, -73.85803031053408 40.81341857528419)))",X065,5823,X065,X-09,X-09,X-09,X-09,"Soundview Ave., Underhill Ave., Patterson Ave.",209,18,43,10473,X,0.1,False,Woodrow Wilson Triangle,Yes,100004417,PARK,20100106000000.00000,19270810000000.00000,,DPR,True,Woodrow Wilson Triangle,Y,Woodrow Wilson Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X065/,No,85,34,15,{02844FAC-9759-4DC4-92B3-7161E9F40605} +"MULTIPOLYGON (((-73.82502453424574 40.58452481306348, -73.82540009133335 40.58440663119864, -73.82570449887535 40.58497928270076, -73.8254927214679 40.58504116233354, -73.8253195388054 40.58509176444567, -73.82472716052787 40.585264848318474, -73.82465106939473 40.58499998766966, -73.82459866696246 40.58481758281409, -73.82474196186175 40.584771582913056, -73.82508474711278 40.58466138477209, -73.82502453424574 40.58452481306348)))",Q389,5372,Q389,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. Beach 104 St. and Seaside Ave.,414,32,100,11694,Q,1.21,False,Bayside Playground,Yes,100000248,PARK,20090423000000.00000,19560214000000.00000,320 BEACH CHANNEL DRIVE,DPR/DOE,False,Bayside Playground,Y,Bayside Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q389/,No,23,15,5,{82C7799A-698A-4749-A05F-656D4D076F83} +"MULTIPOLYGON (((-73.87476656738876 40.755532855959856, -73.87483980927878 40.75552590711097, -73.87501895252836 40.75651219451636, -73.87428230444657 40.75658838980718, -73.87410292087398 40.755595821763286, -73.87411475676171 40.75559469915998, -73.87476656738876 40.755532855959856)))",Q363,4921,Q363,Q-03,Q-03,Q-03,Q-03,Northern Blvd. bet. 93 St. and 94 St.,403,25,115,11372,Q,1.719,False,Northern Playground,Yes,100000238,PARK,20090423000000.00000,19511203000000.00000,93-11 34 AVENUE,DPR/DOE,False,Northern Playground,Y,Northern Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q363/,No,34,13,14,{D49F9277-EC5B-4CE9-BC0C-F7BEFDC221AF} +"MULTIPOLYGON (((-73.98398490449247 40.77210130857532, -73.98433508219162 40.77161849705168, -73.98601067084142 40.772325875033545, -73.98564565688899 40.77280503821027, -73.98564562727891 40.77280502559954, -73.98398345418612 40.77210330839098, -73.98398490449247 40.77210130857532)))",M231,69243,M231,M-07,M-07,M-07,M-07,Amsterdam Ave. and W. 62 St.,107,6,20,10023,M,2.443,False,Damrosch Park,Yes,100004521,PARK,,19601201000000.00000,60 LINCOLN CENTER PLAZA,DPR/Lincoln Center,True,Damrosch Park,Y,Damrosch Park,Neighborhood Park,Community Park,http://www.nycgovparks.org/parks/M231/,No,67,27,10,{6B968F99-1D62-4149-A6D4-5F12C425C8D4} +"MULTIPOLYGON (((-73.90808901928128 40.814532181263054, -73.908113150873 40.81446448848387, -73.90778645186747 40.81439745486041, -73.90795707103015 40.81391848414118, -73.90866696292976 40.814061678494035, -73.90846985948662 40.814610299821524, -73.90808901928128 40.814532181263054)))",X207,5626,X207,X-01,X-01,X-01,X-01,Jackson Ave. bet. E. 151 St. and E. 149,201,8,40,10455,X,0.913,False,Pontiac Playground,Yes,100004332,PARK,20100106000000.00000,19620517000000.00000,,DPR/DOE,False,Pontiac Playground,Y,Pontiac Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X207/,No,84,29,15,{F92AA5CD-DC42-4E99-93B5-5647A4E7673F} +"MULTIPOLYGON (((-74.19076173176678 40.53706788436864, -74.19128365313198 40.536791054178934, -74.1914482254987 40.53712814342178, -74.19052589702733 40.537390318781874, -74.1905161206994 40.537394197374994, -74.1905064830123 40.53739702391893, -74.19049631900697 40.537399062471515, -74.19048684872945 40.53740016332171, -74.19048020318058 40.537400496736474, -74.19047054638055 40.53740034525839, -74.19046286520496 40.53739968620579, -74.19045310999029 40.5373981354668, -74.19044640831345 40.53739658326422, -74.19044002203785 40.537394704546436, -74.19043232759964 40.53739187613848, -74.19042607204953 40.53738906605571, -74.19041979015293 40.53738570849446, -74.19041271167487 40.53738115995301, -74.19040821075099 40.53737774540569, -74.19040238276759 40.537372548209696, -74.19039940066858 40.53736945173176, -74.19039685810078 40.53736651121702, -74.19039486788334 40.53736396782024, -74.19039318746017 40.53736161572248, -74.19039130477944 40.53735870202976, -74.190389657147 40.5373558446806, -74.19038820311523 40.537352996015656, -74.19038650416996 40.5373491139491, -74.19038552639556 40.537346468914535, -74.19038439216861 40.537342767818465, -74.19038348880753 40.53733889794055, -74.19038273810816 40.53733392466099, -74.19038243699069 40.53732849226648, -74.19038257021992 40.53732429647913, -74.19038299671577 40.53732029111773, -74.19038414278275 40.537314475399626, -74.19038566284537 40.5373094281134, -74.19038761306743 40.537304562020815, -74.19039020588858 40.53729945532183, -74.19039322675957 40.53729461807174, -74.19039619449683 40.53729060309302, -74.19039906956446 40.53728720513054, -74.1904026730925 40.53728346015666, -74.1904058964038 40.53728049206954, -74.19040924421165 40.537277720991824, -74.19041529520543 40.537273366802886, -74.19042534819677 40.537267584040315, -74.19076173176678 40.53706788436864)))",R095,6077,R095,R-03,R-03,R-03,R-03,"Drumgoole Rd. W., Darlington Ave., Nippon Ave.",503,51,123,10312,R,0.735,False,Park,Yes,100004754,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R095/,No,62,24,11,{C1511B02-5B7B-41E9-AB2E-1282124411BA} +"MULTIPOLYGON (((-73.97803688309779 40.67663074470972, -73.97818582767178 40.67640953818336, -73.97872198947452 40.67661923249564, -73.97907028191987 40.676755448804144, -73.97890148483486 40.677006728216924, -73.97873157528795 40.67725966321549, -73.97838312942812 40.677123671890726, -73.97818617514665 40.67704680370586, -73.97829472082428 40.67688559608169, -73.97826263890697 40.676873074671605, -73.9783448706049 40.67675094796359, -73.97803688309779 40.67663074470972)))",B320,5175,B320,B-06,B-06,B-06,B-06,Berkeley Pl. and Lincoln Pl. between 5 Ave. and 6 Ave.,306,39,78,11217,B,0.955,False,Park Slope Playground (PS 282),Yes,100004316,PARK,20100106000000.00000,19581228000000.00000,40 LINCOLN PLACE,DPR/DOE,False,Park Slope Playground,Y,Park Slope Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B320/,No,52,25,7,{91F44EC1-D863-438A-945A-6675D6A5F066} +"MULTIPOLYGON (((-73.94807708003248 40.704095795950025, -73.94815371406794 40.70404475886909, -73.94845102505545 40.70431380772573, -73.94807708003248 40.704095795950025)))",B117,5429,B117,B-01,B-01,B-01,B-01,"Throop Ave., Lormer St., Broadway",301,33,90,11206,B,0.039,False,Lindsay Triangle,Yes,100004915,PARK,20100106000000.00000,18680728000000.00000,407 BROADWAY,DPR,False,Lindsay Triangle,Y,Lindsay Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B117/,No,53,26,7,{29594069-D930-4620-BF96-01391DDE2003} +"MULTIPOLYGON (((-73.9406885465869 40.81726604067757, -73.94086282156586 40.81702991545358, -73.94093763328537 40.81706144507646, -73.94102040844861 40.81709638350309, -73.94084616471028 40.81733246665516, -73.94076337272978 40.81729755150919, -73.9406885465869 40.81726604067757)))",M303,4978,M303,M-10,M-10,M-10,M-10,W. 139 St. bet. Adam C Powell Blvd. and Lenox Ave.,110,9,32,10030,M,0.118,False,Abyssinian Tot Lot,Yes,100004814,PLGD,20100106000000.00000,19971219000000.00000,128 WEST 139 STREET,DPR,False,Abyssinian Tot Lot,N,Abyssinian Tot Lot,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M303/,No,70,30,13,{0945AC10-F380-4757-9450-0B166C9CEBEF} +"MULTIPOLYGON (((-73.8749909791422 40.73037118693796, -73.87491946282974 40.7304031457976, -73.87491411025266 40.730398531176384, -73.87498536117697 40.73036669179963, -73.8749909791422 40.73037118693796)))",Q360W,6063,Q360W,Q-05,Q-05,Q-05,Q-05,LIE Srv. Rd. S. at 86 St.,405,29,104,11373,Q,0.001,False,N/A,No,100008316,PARK,20110712000000.00000,19531229000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q360W/,No,30,16,6,{B2E54ADC-FC8B-4456-88AA-FA361A1BFCDF} +"MULTIPOLYGON (((-74.0069323017119 40.67794843261157, -74.00868205878099 40.67645581530663, -74.01000797679963 40.67737170394819, -74.00826795010447 40.67885952550178, -74.0069323017119 40.67794843261157)))",B077,5455,B077,B-06,B-06,B-06,B-06,Verona St. bet. Richard St. and Dwight St.,306,38,76,11231,B,8.271,False,Coffey Park,Yes,100004314,PARK,20100106000000.00000,18921118000000.00000,85 RICHARDS STREET,DPR,Part,Coffey Park,Y,Coffey Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B077/,No,51,25,7,{F75E182D-5E88-4682-9DEE-6E7BF00DB3C5} +"MULTIPOLYGON (((-73.96203692828661 40.7996889039642, -73.96208450745364 40.79962321649364, -73.96232472176541 40.79972453659036, -73.96227739654894 40.79978987484835, -73.96203692828661 40.7996889039642)))",M347,5004,M347,M-07,M-07,M-07,M-07,Columbus Ave. and W. 107 St.,107,7,24,10025,M,0.043,False,Mobilization For Change,No,100004523,PARK,20100106000000.00000,20021120000000.00000,955 COLUMBUS AVENUE,DPR,False,Mobilization For Change,N,Mobilization For Change,Greenthumb,Garden,http://www.nycgovparks.org/parks/M347/,No,69,30,13,{EFDBA7C5-2C15-43E5-9AEB-E7A809794F64} +"MULTIPOLYGON (((-73.77844294960273 40.74250782748281, -73.77506558111723 40.74147577200072, -73.77499584517525 40.74137120273064, -73.77498352223625 40.741345359230884, -73.77498341878487 40.74134514110531, -73.77498330239528 40.74134489774019, -73.774939871236 40.74125381093253, -73.77493494716944 40.741243297760604, -73.77489889537709 40.74116632734433, -73.77486109104085 40.74108561547243, -73.7748034167175 40.74096002743739, -73.77477519196752 40.74089856646016, -73.77474337205663 40.74082927391126, -73.77471845468747 40.7407750144635, -73.77468066322201 40.740689576675074, -73.77465648925583 40.74063328081262, -73.77462986728226 40.74057128352689, -73.77460247593888 40.740507494514404, -73.77457858050283 40.74045184754635, -73.77454662154365 40.740368139298795, -73.77452079438066 40.74030049103859, -73.77449367990992 40.74022946964151, -73.77444963734146 40.74011411178397, -73.7744125644921 40.740017006494035, -73.77437446844311 40.73991722016808, -73.77434670297565 40.73984449459171, -73.77432046102766 40.739766251865376, -73.77430106764335 40.73970842991768, -73.77427989707127 40.739645759737655, -73.77427555300669 40.739632901842235, -73.77425116724014 40.73956071056265, -73.77424084279608 40.73953014951756, -73.77422151028608 40.739472921109865, -73.77422117153434 40.73947191727728, -73.7741996060922 40.73940807834414, -73.77418541358216 40.73936606242215, -73.77417382678915 40.73933176267758, -73.77415663358163 40.739280866338206, -73.77415327301514 40.73927091631288, -73.77413615836724 40.7392202542567, -73.7741323207333 40.73920889399641, -73.77411144938637 40.73914710596689, -73.77411120675063 40.73914638778423, -73.77408325916261 40.73906365620746, -73.77408119383641 40.73905754219316, -73.77402735834548 40.73889817230754, -73.7740024890125 40.738824550907964, -73.77398937159384 40.7387857194714, -73.77398650454211 40.73877723193733, -73.7739560735211 40.738687143684025, -73.77392206522705 40.73858646740145, -73.77388364162904 40.73847271963374, -73.77384379923095 40.73834659695186, -73.77381746106293 40.738262170998325, -73.773787728963 40.73816686470706, -73.7737546884546 40.73806095199814, -73.77370420268741 40.73789911661545, -73.77367744462899 40.73780980002669, -73.77366035349846 40.73775138633951, -73.77361719028085 40.73761959462767, -73.77357625983784 40.737497269851886, -73.77353886094318 40.73738682613646, -73.77353019310895 40.73736123188905, -73.77352907724888 40.737357937427966, -73.77352174565851 40.737336282839856, -73.7735131587106 40.73731092828588, -73.77349857129524 40.73727319972002, -73.7734915303043 40.73725591677975, -73.77347527861875 40.737216027313735, -73.77346062958125 40.73718006992567, -73.77345879566774 40.73717556736705, -73.77311413635779 40.73632956417306, -73.77348678284733 40.736210511811464, -73.77385686509062 40.73701961136874, -73.77390041064751 40.73711481150379, -73.7742574430585 40.73789535675834, -73.77427971996588 40.73794405680658, -73.77467775881377 40.73881422686639, -73.77469836045873 40.73885926567532, -73.774988916019 40.739494445870406, -73.77504779241208 40.739623153754714, -73.77508275732349 40.73969958801715, -73.77511415188397 40.739768218678556, -73.77512794743997 40.73978913565294, -73.7751643363135 40.73984431162232, -73.77539319197672 40.7401913096284, -73.77543412805265 40.740253376976, -73.77544927840725 40.74027634971498, -73.77545951568275 40.7402918719575, -73.77547201574642 40.74031082415124, -73.77547960272014 40.74032232675057, -73.7754909708105 40.74033956396502, -73.77549817614562 40.740350487691565, -73.77550234715484 40.74035681290102, -73.77551107200792 40.74037004129272, -73.77552168388759 40.74038613248155, -73.775522058469 40.74038669963252, -73.7755368425567 40.74040911513027, -73.77554499848512 40.740421481522716, -73.7755543874352 40.74043263372836, -73.7755548815305 40.74043322002287, -73.77557747776211 40.74046005873683, -73.77557863929381 40.74046143878079, -73.7755910706515 40.740476203454975, -73.77559314726 40.74047867039654, -73.77560502674882 40.74049277932301, -73.7756097401006 40.74049837797292, -73.77561699490128 40.740505171148094, -73.7756193317299 40.74050736033857, -73.77563208399235 40.74051930073311, -73.77564549599761 40.740531860161454, -73.77566488463958 40.740550016194035, -73.77568255297923 40.74056466949024, -73.7756980772725 40.74057754550348, -73.77570450470255 40.74058287643423, -73.77571612697332 40.74059251561627, -73.77572970439513 40.74060377682112, -73.77574258114196 40.740612160430686, -73.77575800252202 40.740622202329995, -73.77576095708629 40.74062412616928, -73.77577091353129 40.74063060941631, -73.77578119485119 40.74063730401429, -73.77580422180354 40.74065229731077, -73.7758238038893 40.74066365394084, -73.77584931898407 40.74067845125763, -73.77586768990501 40.74068910582655, -73.77589735264209 40.740704879252725, -73.7759138827445 40.740712658505466, -73.77592820119217 40.740719396965716, -73.77594778341323 40.74072861306232, -73.77597403253719 40.74074096599383, -73.77601688403803 40.74075616170139, -73.77605755614736 40.740770584119545, -73.77610752738246 40.740787352420185, -73.77619117608077 40.740814307883475, -73.77629887673272 40.74084901387015, -73.7759426036153 40.74146197026766, -73.77659757010991 40.7416730290228, -73.77783020025902 40.74207022129842, -73.77807455874401 40.74214895933441, -73.77808080507911 40.74213482706205, -73.77809413661085 40.74211419685414, -73.77844562909901 40.742222948249314, -73.77870408944177 40.742302915153466, -73.7787810464277 40.74217490333842, -73.77883438450665 40.742191947969616, -73.77906636050788 40.74174077040177, -73.77945369843383 40.74186557333557, -73.7795084268274 40.74188320745035, -73.77950797695142 40.74188355598691, -73.78036900548513 40.742160487051365, -73.7803706372351 40.74217298473658, -73.78036965702242 40.74218552066526, -73.78036608955205 40.742197783308036, -73.78036002345407 40.74220946395888, -73.78035161123938 40.74222027024251, -73.77884561564905 40.742446975007375, -73.77844294960273 40.74250782748281)), ((-73.78484314312729 40.74341111061688, -73.78485089598959 40.74341108367648, -73.78485862977475 40.74341146463073, -73.78486631250384 40.743412257021966, -73.78487390396218 40.74341344816792, -73.7848813698144 40.7434150380045, -73.7848886721993 40.74341701835642, -73.78493766787736 40.743432135758496, -73.78494931266592 40.74343573252503, -73.78496229759372 40.74343973972339, -73.78502547827543 40.743459029517616, -73.7850922228385 40.74347941194163, -73.78515718374587 40.74349924709186, -73.78522214588754 40.74351907860561, -73.78528711042416 40.74353891368911, -73.78535207380396 40.74355875233572, -73.78541703606452 40.74357858283885, -73.78548200072014 40.74359841691173, -73.7855450415487 40.743617843937415, -73.78557470317556 40.74362698350389, -73.78560808597179 40.74363726913414, -73.78567112687675 40.74365669519017, -73.78569526120738 40.74366413058115, -73.7857341713792 40.74367611851674, -73.78579028810299 40.74369341092573, -73.78579721472282 40.743695545408585, -73.78586025574099 40.743714970460445, -73.78592330153185 40.74373439548654, -73.78598634380178 40.74375382227247, -73.7860359480099 40.74376910783125, -73.78604938493022 40.74377324722064, -73.78611242845764 40.743792673939694, -73.7861596765426 40.743807229258806, -73.78617547322027 40.74381209612382, -73.78624007619548 40.74383187686657, -73.7863046803873 40.743851659376276, -73.78636928226388 40.743871437342726, -73.78643388653244 40.743891219779805, -73.78649848966685 40.7439109985764, -73.78656309401497 40.7439307800404, -73.78662769603926 40.7439505596627, -73.78669229928012 40.74397034105193, -73.78675690137824 40.74399012150214, -73.78682150706955 40.74400990102213, -73.78688372319132 40.744029031319464, -73.78694594052133 40.74404816518732, -73.78697231193252 40.74405627352646, -73.7870081602637 40.744067296324395, -73.78707037530286 40.74408642831952, -73.7870826390071 40.744090196210145, -73.78710766437568 40.744097891397494, -73.78713160862739 40.744105255895334, -73.78717344455485 40.744118120443524, -73.78719481023602 40.744124688615564, -73.7872570324778 40.74414382322435, -73.7873192476714 40.744162951482835, -73.78735335852325 40.74417343876342, -73.78738146408477 40.74418207970986, -73.78744368525267 40.744201213314916, -73.78750590054771 40.744220343273454, -73.78756652688382 40.744238748959475, -73.7876271496957 40.744257156408004, -73.78768777610455 40.74427556022912, -73.78774839898914 40.74429396581272, -73.78780902308834 40.744312372267075, -73.78786220464026 40.744328519111036, -73.78786964959194 40.744330777793294, -73.78793027139012 40.74434918417936, -73.78799089678247 40.744367587838504, -73.78805617229689 40.74438769928394, -73.78812144431022 40.74440780708379, -73.78818672109317 40.74442791665631, -73.78823273295458 40.74444204741012, -73.78825609779956 40.744449251217894, -73.7882634150681 40.74445183112167, -73.78827048485688 40.74445479058502, -73.7882772645849 40.74445811602198, -73.78828215303878 40.74446082563562, -73.78828682768571 40.744463750978284, -73.78829132186092 40.744466834478644, -73.78829556561674 40.744470104824444, -73.78830089557069 40.744474720726544, -73.78830578660857 40.74447959877033, -73.78831026583948 40.74448477772761, -73.78831325363186 40.74448870853917, -73.78831597562979 40.74449282076502, -73.78831916532461 40.7444984196907, -73.78833784202058 40.744536769785526, -73.78834147214697 40.7445442398778, -73.78836394372495 40.74459075915819, -73.7883761687599 40.74461607152412, -73.78838641650975 40.744637281137535, -73.78840888814763 40.74468380130903, -73.78843136336606 40.74473032238284, -73.7884538338827 40.74477684254276, -73.788476305609 40.7448233645012, -73.7884987797433 40.74486988375775, -73.78852125271642 40.744916405708985, -73.78854372690208 40.744962928558145, -73.78856667192322 40.745011454098965, -73.78858961697776 40.74505997963486, -73.78861256561494 40.74510850607288, -73.78863550955238 40.74515703159679, -73.78865845470719 40.74520555711798, -73.78868140226352 40.745254082638596, -73.78870434628689 40.74530261265032, -73.78872729629522 40.745351132762444, -73.78875024039402 40.74539966006285, -73.78877318452058 40.74544818915933, -73.78879613342806 40.74549671465759, -73.78881718336244 40.74554182283883, -73.78881917243964 40.7455474546681, -73.78882033620562 40.74555272658151, -73.78882075608823 40.745556603142774, -73.78882082072994 40.74556048985881, -73.78882021496648 40.74556632134595, -73.7888189145041 40.74557204980176, -73.78881721140137 40.7455766797986, -73.78881497200732 40.745581286299384, -73.78881191615895 40.745586100221225, -73.78880793149077 40.74559108443704, -73.78880452925557 40.74559460909494, -73.78880119396831 40.74559755754958, -73.78879760467527 40.74560032903858, -73.78879377209837 40.745602902869884, -73.78878813193283 40.74560608933451, -73.7887815640435 40.74560910029925, -73.7887764002993 40.745611026924216, -73.78877165132647 40.745612466233645, -73.78876678001154 40.74561365407642, -73.78876060653334 40.74561475668394, -73.78875423886743 40.74561548792526, -73.78874913839306 40.74561575772813, -73.78874402454989 40.74561576275663, -73.7887369703474 40.7456153103692, -73.78873134608659 40.745614600357136, -73.78872454574446 40.74561325062696, -73.78866798479994 40.7455986351549, -73.78860657525057 40.74558253572199, -73.78854121449162 40.74556274772062, -73.78847585730924 40.74554296419118, -73.78841050016285 40.7455231815251, -73.78834513714658 40.74550339520898, -73.78827978126755 40.74548361066975, -73.78821442069128 40.74546382608467, -73.7881490637087 40.745444040568486, -73.78808370320147 40.745424258610676, -73.78801655543856 40.745403920413516, -73.7879525989216 40.74538424632463, -73.78788685395176 40.74536402049637, -73.7878211030931 40.74534379732108, -73.78777363229896 40.74532919365156, -73.78775536293634 40.74532357232684, -73.78768961216612 40.7453033463749, -73.78762387091088 40.74528311950232, -73.78755812020616 40.745262897977696, -73.78749237428607 40.74524267372269, -73.7874266296014 40.745222445830294, -73.78736659917014 40.74520403577185, -73.78730656995899 40.745185624783765, -73.78724654314901 40.74516721376869, -73.78718651281729 40.74514880361625, -73.78712648370855 40.74513039163364, -73.7870664534403 40.74511198231902, -73.78700642320527 40.74509357297304, -73.7869489060979 40.74507571575415, -73.78692660590275 40.74506879010793, -73.78689139257628 40.745057857612515, -73.78683387552194 40.74504000303756, -73.7867763632431 40.74502214574112, -73.78671885099797 40.74500428751538, -73.78668691658119 40.7449943732015, -73.7866812401167 40.744992610297054, -73.78666895865314 40.744988797306114, -73.78666133286941 40.74498642744889, -73.786641877457 40.74498038951579, -73.7866176232702 40.74497285684858, -73.78660381830932 40.74496857186278, -73.78658513015692 40.74496290184887, -73.78653977897922 40.744949136368646, -73.78647573969225 40.74492969903789, -73.78641170043687 40.74491026347245, -73.78634766122471 40.7448908260703, -73.78628362441783 40.74487138863696, -73.7862195864586 40.74485195296673, -73.78615554617737 40.744832514554936, -73.78609150592195 40.74481307970949, -73.78605602238734 40.74480231034865, -73.78602746807769 40.7447936430318, -73.78596342908388 40.74477420721673, -73.78592395562535 40.74476191214154, -73.78589968746066 40.74475435768443, -73.78584550433892 40.74473748226218, -73.78583594943612 40.74473450542188, -73.78577220670486 40.74471465581671, -73.78570846519267 40.74469480707894, -73.78564472254028 40.744674956502614, -73.78558098229391 40.74465510589537, -73.78551723971749 40.744635255248326, -73.78546325313432 40.74461844214676, -73.78545570078916 40.74461608945593, -73.7853897594175 40.74459555295669, -73.78532468244512 40.74457574204023, -73.78525960552015 40.74455592838543, -73.78519452981497 40.744536115596524, -73.78512945414565 40.7445163036713, -73.78510230893198 40.74450804038029, -73.78506437495425 40.74449649440412, -73.78499930173321 40.744476681509184, -73.78493422262792 40.74445686946683, -73.7848691494843 40.74443705649825, -73.78480407045939 40.744417243481756, -73.78473899739318 40.744397430439484, -73.78467626790541 40.7443778639788, -73.78461353490547 40.74435829657678, -73.78455080430743 40.74433873004546, -73.78448807374623 40.74431916347992, -73.78442534321903 40.74429959778065, -73.7843626139155 40.744280031148875, -73.7842998787347 40.74426046267077, -73.78423714950202 40.74424089687111, -73.78417442031196 40.74422132923614, -73.78411168996897 40.744201763365794, -73.7840478345087 40.74418230521372, -73.78398397907993 40.74416284882714, -73.78392012487531 40.744143391506846, -73.78389397001985 40.74413542245362, -73.78385627188034 40.74412393775534, -73.78379241893143 40.74410448126689, -73.78372856602273 40.744085023842445, -73.78366471078046 40.74406556727863, -73.78364741422082 40.74406029652495, -73.78360085320745 40.74404611067489, -73.78354429483592 40.74402854081358, -73.7834877352957 40.744010975424764, -73.78345362902706 40.744000382547235, -73.78343117697798 40.7439934073088, -73.78337461276723 40.74397584005442, -73.78331805568442 40.743958274586596, -73.7832726724784 40.74394385218425, -73.78326801311245 40.743942131547854, -73.78326352027918 40.74394017349017, -73.78325921645408 40.74393798435699, -73.78325469642381 40.743935287830006, -73.78324897439879 40.74393120765914, -73.78324436855492 40.74392722954515, -73.78324119774733 40.74392397093735, -73.78323841430793 40.743920650923386, -73.7832359403481 40.7439171910123, -73.78323378527524 40.74391361103302, -73.78323195732756 40.74390992630978, -73.78323001599092 40.74390470150187, -73.78322889107109 40.743900371535936, -73.78322814404027 40.74389452672375, -73.78322817206418 40.74388809713858, -73.78322905547623 40.74388222928029, -73.78323125472467 40.743875142807674, -73.78323389331705 40.74386948717095, -73.78323606337827 40.74386591263038, -73.78323855508954 40.743862460263884, -73.78324135537717 40.74385914535556, -73.78324487032073 40.7438556138688, -73.78324960407468 40.74385157228578, -73.78325336498095 40.74384886342684, -73.783258928924 40.743845486180774, -73.7832654324638 40.743842261988206, -73.78327298393584 40.7438393729557, -73.78333691452497 40.74382099587304, -73.78340406355184 40.743802142134456, -73.78347121254072 40.743783288356674, -73.78353836148871 40.743764435440234, -73.78360618719931 40.74374571973311, -73.7836740140529 40.74372700488873, -73.78374183731934 40.74370828909715, -73.78380966291274 40.743689574170546, -73.783877488468 40.743670859203974, -73.7839453175401 40.74365214330356, -73.78398831729913 40.743640275998956, -73.78401313947597 40.743633425548815, -73.78408096609796 40.74361471136501, -73.78414780131045 40.74359647615526, -73.7842146364834 40.743578241807235, -73.78428147280086 40.74356000832307, -73.78434830672245 40.74354177209412, -73.78441514296675 40.743523538532294, -73.78448197917737 40.74350530403113, -73.78454881299217 40.7434870667852, -73.7845982503991 40.74347358137332, -73.78461564913539 40.74346883040537, -73.78468248641441 40.74345059759092, -73.78474816588272 40.743432678652695, -73.78477586113179 40.74342519404607, -73.78481087271577 40.74341573477785, -73.78481641808997 40.74341440518055, -73.7848220409758 40.743413271138344, -73.78482787741513 40.74341236892578, -73.7848354126244 40.74341154642987, -73.78484314312729 40.74341111061688)), ((-73.78866557942347 40.744585436301335, -73.78867356056676 40.744585151976615, -73.78868226200227 40.74458548402072, -73.78868873993196 40.74458616768584, -73.7886944178357 40.744587109229556, -73.78870205139673 40.744588901740094, -73.78875601070445 40.74460485688775, -73.78881340215223 40.74462203939396, -73.78887079244556 40.74463922186931, -73.78892818631768 40.744656405223076, -73.78898557666743 40.74467358854163, -73.78904985603185 40.744692891641115, -73.7891141295078 40.74471219649477, -73.78917840894955 40.744731498621846, -73.78924268368398 40.74475080340587, -73.78930712161464 40.744770556906005, -73.7893657173867 40.744788521180155, -73.78937156550067 40.74479031128138, -73.78943600350208 40.74481006651033, -73.78950044272851 40.74482982080485, -73.7895648843612 40.74484957506755, -73.7896206070868 40.7448666550652, -73.78962932366692 40.74486932838933, -73.789693764192 40.74488908257765, -73.78975820711482 40.74490883943573, -73.78978233893092 40.744916233439774, -73.78982264653517 40.744928592649174, -73.78988708718059 40.74494834492818, -73.7899515290454 40.74496809807372, -73.79001596975871 40.74498785298197, -73.79008237746352 40.74500826520882, -73.79014878402218 40.745028678295604, -73.79021519299803 40.74504908864689, -73.79028160200608 40.745069501661334, -73.79034800987081 40.74508991463523, -73.79041441778475 40.74511032486931, -73.79048083046975 40.745130736874636, -73.79054723727256 40.74515114973137, -73.79056673939843 40.745157144764924, -73.79061364648409 40.74517156255407, -73.79068005337395 40.745191973533096, -73.79074646266686 40.74521238627905, -73.79080261689322 40.74522949440263, -73.79085509472897 40.74524547919158, -73.79090941198454 40.7452620256115, -73.79096372689335 40.74527857380246, -73.79102742511844 40.74529817550977, -73.79103593714302 40.74530079522588, -73.79109112692457 40.74531777988979, -73.79115482285651 40.74533738152222, -73.79121852474044 40.74535698493115, -73.79127197458729 40.74537343505365, -73.79128222429378 40.74537658830048, -73.79134592269779 40.74539619253289, -73.79140961877972 40.745415794024204, -73.79147332080795 40.74543539909299, -73.79153275990369 40.74545364114445, -73.79159220257847 40.74547188497263, -73.79165164291491 40.74549012966631, -73.79171108328674 40.74550837342876, -73.79177052132023 40.7455266180567, -73.7918299629496 40.74554485905833, -73.79188940696835 40.74556310363557, -73.79194884510231 40.74558134727085, -73.79201316610418 40.745601141364496, -73.79207748831703 40.745620939026324, -73.79214181057654 40.74564073395068, -73.79220613168745 40.74566052973738, -73.79227045401498 40.74568032729132, -73.7923375028331 40.7457010041193, -73.79234251996021 40.74570315997861, -73.79234752368075 40.745706198312355, -73.79235139719047 40.74570944352638, -73.79235454473547 40.745713117874836, -73.79235740113259 40.74571827213518, -73.79235912254096 40.74572592596341, -73.79235615038539 40.74577994574472, -73.7923530724443 40.7458321949341, -73.79234999569093 40.74588444142363, -73.79234691892707 40.74593668971366, -73.79234383860629 40.74598893799683, -73.79234076065437 40.7460411844828, -73.79233768267797 40.74609343727184, -73.79233460590041 40.746145683758996, -73.79233152792558 40.74619793294504, -73.7923276779743 40.746250554449965, -73.79232383037935 40.746303177759636, -73.79231998159992 40.74635579926564, -73.79231613280879 40.74640842257214, -73.79231227928668 40.74646104226752, -73.79230843047776 40.746513667373975, -73.79230458286085 40.746566287979526, -73.79230073285856 40.7466189121823, -73.79229699202091 40.74666842172101, -73.79229619501555 40.74667226455638, -73.79229456311064 40.74667653362786, -73.79229217525652 40.74668059151748, -73.7922886289311 40.74668480040446, -73.79228430134852 40.74668856032939, -73.79227923433189 40.74669174889852, -73.79227360560573 40.74669432861081, -73.7922675054971 40.74669619066756, -73.79226110922761 40.74669734078776, -73.79225601547721 40.74669771071468, -73.7922501751583 40.746697519178234, -73.79224161884771 40.746696118762, -73.79217300282248 40.74667535800921, -73.79210852643116 40.74665568529803, -73.79208081765618 40.74664723173231, -73.792044051262 40.74663601255284, -73.79203580984101 40.74663349966079, -73.79197957376282 40.74661633976726, -73.79191509866976 40.74659666694977, -73.79185062124674 40.74657699409185, -73.79178614623271 40.74655732030156, -73.79172166888584 40.746537647371355, -73.79165788925077 40.746518266531425, -73.79159426934326 40.746498935473, -73.79153033599258 40.74647951105962, -73.7914665576529 40.746460130115686, -73.79140278289964 40.74644075004335, -73.79136181722541 40.746428301049335, -73.79133900817783 40.74642137173663, -73.79127522994949 40.7464019906866, -73.79120897292184 40.74638205579717, -73.79114272184272 40.7463621244823, -73.79107646607561 40.74634219041921, -73.79101020915843 40.74632225811679, -73.790943954649 40.746302325780505, -73.79087770137166 40.74628239070671, -73.79081144694717 40.74626245649306, -73.79074776472302 40.74624276464873, -73.790684082545 40.74622307006761, -73.79062040276422 40.746203378157006, -73.79055672183702 40.74618368620902, -73.79049303976635 40.7461639933231, -73.7904546135999 40.7461521105423, -73.79042935892011 40.74614429950361, -73.79036567336689 40.74612460834172, -73.79030199615094 40.74610491355758, -73.790240828205 40.746086266097514, -73.790181535191 40.74606819114216, -73.79011849595098 40.746048976489284, -73.79005733284393 40.74603032894023, -73.78999616620762 40.746011684954205, -73.78993500199071 40.74599303553697, -73.78987451558969 40.7459745989433, -73.7898126712659 40.74595574470504, -73.78977909114052 40.74594550856756, -73.78975150595913 40.745937097889524, -73.78971739472662 40.74592670137437, -73.78969034186208 40.74591845374518, -73.7896291742586 40.74589980595975, -73.78956883729816 40.74588059323918, -73.78950849445813 40.74586137867508, -73.78944815519928 40.74584216588681, -73.78938781716779 40.745822950367554, -73.78932747916258 40.745803737518116, -73.7892671364589 40.74578452372785, -73.78920679734208 40.74576530991243, -73.78919446722877 40.74576143947011, -73.78913449175069 40.74574256847569, -73.78912625242553 40.74573946284353, -73.7891190938446 40.745736071026656, -73.78911418185625 40.7457332749573, -73.78910953707509 40.74573022633389, -73.7891046765716 40.74572650193348, -73.78909923844658 40.745721596808245, -73.78909448118446 40.74571630390955, -73.78909005100573 40.74571017143457, -73.78908727307966 40.74570536843497, -73.78907991763438 40.7456901102463, -73.7890634263841 40.745655723820626, -73.78903941366869 40.74560542332618, -73.78901540217355 40.74555512282852, -73.78899139426953 40.74550482143154, -73.78896738165719 40.745454522722, -73.78894337382859 40.74540422041375, -73.78891936366247 40.745353919896836, -73.78889735973684 40.74530758259053, -73.78887535585041 40.74526124257823, -73.78885335079913 40.74521490616124, -73.78883134933909 40.74516856704481, -73.78880934554444 40.745122227018975, -73.78878734058213 40.74507589148897, -73.78876533566762 40.74502955055147, -73.78874333431858 40.744983215018955, -73.78872133064351 40.74493687587559, -73.78869983108396 40.74489175333999, -73.78867833510557 40.74484663080662, -73.78865683560142 40.74480150916292, -73.78863533612636 40.74475638751495, -73.78861384023534 40.744711264968664, -73.78859413238968 40.74466945146956, -73.78859246571444 40.74466521601674, -73.78859082933562 40.74465926875136, -73.78859000907487 40.74465433605693, -73.78858972471284 40.74464992123851, -73.78858990861245 40.74464495166534, -73.78859077435081 40.74463891083723, -73.78859189279883 40.74463457333596, -73.78859339938349 40.74463030498583, -73.78859529404184 40.74462612559789, -73.78859756250579 40.744622054056656, -73.78860019996493 40.74461811376653, -73.78860318386886 40.74461432179572, -73.78860696308591 40.74461026473379, -73.78861260198906 40.74460521332068, -73.7886183365581 40.744600983347325, -73.78862283520941 40.744598185616745, -73.78862758172443 40.744595633279374, -73.78863254648296 40.74459333258444, -73.78863770693467 40.74459130060016, -73.78864304292584 40.74458954539417, -73.7886485224626 40.74458807501226, -73.78865412421015 40.74458689661934, -73.78865981737007 40.74458601466146, -73.78866557942347 40.744585436301335)), ((-73.77070583707952 40.7318211240146, -73.77145438104195 40.731731543386765, -73.77298859909486 40.73509604380777, -73.7730781616275 40.735292447950144, -73.77340604440177 40.73601142204654, -73.77301933104476 40.73613881486975, -73.77299953834566 40.73614532977386, -73.772576552497 40.73527196326865, -73.77238511973253 40.734858502691075, -73.7721071462241 40.734450994012185, -73.77190522016191 40.734073272006874, -73.77163415504155 40.733630033626945, -73.77136755358184 40.73328010719955, -73.77112237120868 40.73290810525064, -73.77043889688588 40.73195376969282, -73.77041341168747 40.73192645860482, -73.77041673686794 40.73189624587438, -73.7704345685049 40.73187418197531, -73.77044888304535 40.73186038135864, -73.77045418160397 40.73185765256538, -73.770546815163 40.73184015024084, -73.77070583707952 40.7318211240146)), ((-73.78192038534465 40.74251673928427, -73.78192668024217 40.742516469344125, -73.7819319354673 40.74251660446546, -73.78193818355166 40.74251725295594, -73.78194732614712 40.74251908119095, -73.78201288003832 40.74253840325155, -73.78207723411228 40.74255751228516, -73.782137790161 40.74257549386421, -73.7821396744101 40.742576052142496, -73.78219824807003 40.74259344550888, -73.78220594237389 40.74259572934388, -73.78227029655277 40.74261484007049, -73.7823346495992 40.74263394625632, -73.78239900267086 40.74265305600819, -73.78246335934014 40.742672163029184, -73.78252267697158 40.7426905635046, -73.78258199582855 40.74270896125009, -73.78264130997364 40.742727361657586, -73.78270063008009 40.74274575934416, -73.78275994666743 40.74276415699338, -73.78281926801753 40.742782556422014, -73.78287858110673 40.74280095760539, -73.78293790134721 40.74281935426903, -73.78300275092748 40.74283916971714, -73.78306760528221 40.74285898513767, -73.78311623157795 40.74287384417533, -73.78313245611771 40.74287880231588, -73.78319730581077 40.742898618554825, -73.78326216028417 40.742918432965105, -73.78332700887042 40.742938249128635, -73.78338753120212 40.742956978308435, -73.7834185097422 40.742966565760725, -73.78344805356498 40.74297570835685, -73.7835085771487 40.74299443747512, -73.78356909483495 40.74301317015246, -73.7836302498279 40.74303144923779, -73.78368266014508 40.74304711299583, -73.78369140604715 40.74304972559131, -73.78375255993203 40.743068001907865, -73.78381371620377 40.7430862826989, -73.78387871991872 40.74310655630077, -73.7839437236586 40.743126834368475, -73.78400872982937 40.74314710519976, -73.7840737336542 40.74316738139294, -73.78413874225743 40.74318765665774, -73.78420374736001 40.7432079282771, -73.78426875130646 40.7432282034595, -73.78433375647356 40.743248479507905, -73.7843853938165 40.74326492584144, -73.784392855444 40.74326781243563, -73.7843980310358 40.74327025710223, -73.78440296896612 40.743272968775095, -73.78440765033505 40.74327593391114, -73.78441204795472 40.743279138951955, -73.78441614175284 40.74328256675021, -73.78442034224861 40.74328668363789, -73.78442529257762 40.74329251649908, -73.78442912695718 40.74329817887605, -73.78443144555922 40.743302461536686, -73.78443355833132 40.743307419194174, -73.78443560249046 40.74331418854848, -73.78443667724984 40.74332050313199, -73.78443692442862 40.74332571124136, -73.78443654864917 40.74333207263799, -73.78443576182715 40.74333666556503, -73.78443455722513 40.743341206381125, -73.78443268805687 40.74334622052181, -73.78442976324183 40.74335218632624, -73.78442715793928 40.743356373321795, -73.78442294643841 40.74336187655732, -73.78441760971548 40.74336751276289, -73.78441153090989 40.7433726964239, -73.78440654067317 40.74337626750866, -73.78440180004783 40.74337917178289, -73.78439680095731 40.743381819828386, -73.78439157422883 40.743384198195145, -73.78438544074334 40.74338652083354, -73.78437910941184 40.74338851441523, -73.78431598200574 40.74340587690507, -73.78425084076096 40.74342355436828, -73.78418569829473 40.743441232692845, -73.78412055579685 40.743458910080044, -73.78405541444545 40.74347658833307, -73.78399027069445 40.74349426564426, -73.78392879464376 40.74351129783057, -73.78386731621127 40.7435283245766, -73.78380583891375 40.74354535669501, -73.78374436159064 40.743562386979555, -73.78368288423907 40.74357941633073, -73.7836214068531 40.74359644654956, -73.78355992943284 40.74361347763605, -73.78349845198986 40.743630505988136, -73.78343697450667 40.74364753700893, -73.78337600016276 40.743664212341415, -73.7833150246043 40.743680887639414, -73.78325404902996 40.74369755840254, -73.78319307341344 40.743714232735385, -73.78313209540129 40.74373090613093, -73.7830711209077 40.74374758040133, -73.78303735993502 40.74375681456854, -73.78301014637768 40.74376425644042, -73.78294917183185 40.74378092794471, -73.78289082038984 40.74379705865268, -73.78288311983202 40.74379918734904, -73.78287692708876 40.74380077317867, -73.78286852328803 40.74380252233429, -73.78285998004175 40.74380382637476, -73.78285133763514 40.7438046763708, -73.78284263987314 40.74380507330554, -73.78283610416287 40.74380508529614, -73.78282957886681 40.743804808242466, -73.78282092271745 40.74380406250743, -73.78281448096337 40.74380321918992, -73.78280811590965 40.743802092356205, -73.78280182260893 40.743800746833635, -73.78279564386996 40.743799125970874, -73.78276592001421 40.7437902818386, -73.78272794236985 40.74377894122453, -73.78266156118934 40.74375908221271, -73.78263035778407 40.74374974897819, -73.78261882269501 40.74374629986783, -73.78259517766271 40.74373922856113, -73.78252879655547 40.74371937127371, -73.78246240956781 40.74369951393679, -73.78239602972363 40.74367965657497, -73.78232964872626 40.74365980187412, -73.78226326422822 40.743639943526176, -73.78220042486005 40.74362074561394, -73.78213758670324 40.74360155037112, -73.78207474741039 40.74358235148968, -73.78201190697573 40.74356315077072, -73.7819490689246 40.74354395632536, -73.78188623093328 40.74352475464166, -73.78182339059838 40.743505556521136, -73.78176055384576 40.743486360174046, -73.7816977135863 40.743467161084354, -73.78163395909905 40.743447668461805, -73.78157020465508 40.74342817400289, -73.78150645142944 40.74340868041134, -73.78144269705713 40.74338918678225, -73.78137894153221 40.74336969491656, -73.78131518842143 40.74335020031851, -73.78125143534206 40.74333070748613, -73.78122736767692 40.74332334873291, -73.78118767993496 40.74331121371336, -73.78112392693316 40.74329171990981, -73.78106017041377 40.74327222696461, -73.78102988505817 40.743262531234286, -73.78099557837557 40.74325155002613, -73.78093098281964 40.743230874845544, -73.78086638730382 40.74321019962871, -73.78080179419898 40.74318952347955, -73.7807658222902 40.743178009533715, -73.78073719758227 40.743168847287386, -73.7806940497428 40.74315439750356, -73.7806575982748 40.74314218921816, -73.78065089955993 40.74313994589802, -73.78064521887288 40.743135965632185, -73.78063971388973 40.74313184161922, -73.78063440117744 40.74312757659213, -73.78062928071213 40.74312317775507, -73.78062435839304 40.7431186514228, -73.780619642508 40.74311399761116, -73.78061513657035 40.74310922803351, -73.78061084295992 40.74310433909234, -73.78060677465595 40.74309934432006, -73.78060292926966 40.74309425001567, -73.78059931745686 40.743089056199544, -73.78059593444603 40.74308377366874, -73.78059279087508 40.743078407846525, -73.78058989265206 40.74307296234629, -73.78058723264634 40.74306744525902, -73.78058482622583 40.74306186381814, -73.78058288816334 40.7430567938584, -73.78058277899353 40.74305650818888, -73.78058076105124 40.74305052766162, -73.78057911291431 40.74304478467296, -73.78057772062951 40.74303900795234, -73.78057658893853 40.7430331957078, -73.7805757130729 40.74302735783583, -73.7805751012936 40.74302150245681, -73.78057475240182 40.74301563407094, -73.78057466283363 40.74300975627355, -73.78057483846149 40.74300388348398, -73.78057527572436 40.74299801839692, -73.78057597223659 40.74299216641096, -73.78057693507813 40.74298633474351, -73.78057815119257 40.742980533275464, -73.78057962884989 40.742974767425565, -73.78058115868203 40.742968977361244, -73.780582958324 40.742963229234384, -73.78058501827722 40.742957531131445, -73.7805873361412 40.74295189295347, -73.78058991307599 40.74294632190666, -73.78059274552959 40.74294081798431, -73.78059582872166 40.74293539468494, -73.7805991543465 40.74293005739571, -73.7806027271251 40.74292481062815, -73.78060653519101 40.74291966246424, -73.7806105808973 40.742914617410996, -73.78061485592355 40.742909685358136, -73.78061935079783 40.74290486628761, -73.78062406430361 40.74290017010269, -73.78062899168114 40.74289560399827, -73.7806341246338 40.742891170660165, -73.78063945840192 40.74288687728335, -73.78064498587577 40.7428827256552, -73.78065070111754 40.742878721167465, -73.78065659698204 40.74287487641366, -73.78066130570221 40.7428719920436, -73.78066611237466 40.74286920421442, -73.78067126961278 40.74286638373379, -73.78067652947088 40.74286368051458, -73.78071297990662 40.74285205590293, -73.78072723104935 40.74284751384998, -73.78076695149737 40.74283484815413, -73.7807779337842 40.7428313480658, -73.7808425054998 40.74281306723899, -73.78090707836392 40.7427947863782, -73.78097165355761 40.742776506386136, -73.78103622872179 40.74275822455685, -73.78110079792769 40.74273994358053, -73.78116537301804 40.74272166257923, -73.78122312252687 40.742705877396276, -73.78123260523616 40.742703285731906, -73.78129983742015 40.74268490794474, -73.78136707074214 40.74266653282206, -73.78140488776546 40.742656197414135, -73.7814343052169 40.742648155861296, -73.7815015349246 40.74262977705126, -73.78156876814124 40.742611400009714, -73.78163600250768 40.742593022030576, -73.78170323328222 40.74257464490588, -73.78177046756564 40.74255626954966, -73.781837697082 40.74253789234418, -73.78190806780206 40.74251874480843, -73.78191518340795 40.742517324671084, -73.78192038534465 40.74251673928427)), ((-73.79258555466599 40.746135465815875, -73.79258786845591 40.74610080038642, -73.79306084835474 40.746147247531454, -73.7940315147539 40.74624256292144, -73.79405152489952 40.74624452759332, -73.79405798898749 40.74624516230374, -73.79446106613247 40.74628473927549, -73.7945322000354 40.74689586327307, -73.79449189164009 40.746860062770736, -73.79437172750895 40.74678698092908, -73.79285733522897 40.746488576222674, -73.79278910970389 40.7464751313727, -73.79272974608433 40.746463434108826, -73.79272429216168 40.74646235989246, -73.7926631737064 40.74645031544172, -73.79256591434834 40.746431149486796, -73.792567486264 40.746406970950886, -73.7925687298997 40.74638783197225, -73.79257209580925 40.74633735910382, -73.79257546171654 40.7462868853344, -73.79257882643466 40.74623641156239, -73.79258219114207 40.746185939590944, -73.79258555466599 40.746135465815875)))",Q300A,69212,Q300A,Q-08,Q-08,Q-08,Q-08,"Underhill Ave., Peck Ave., 199 St. bet. Fresh Meadow La. and Francis Lewis Blvd., Union Tpke.","408, 411","20,23",107,"11365, 11366",Q,45.937,False,Kissena Corridor East,No,100000168,PARK,,19461010000000.00000,,DPR,True,Kissena Corridor Park,Y,Kissena Corridor Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q300A/,No,25,"11, 16",6,{1F6FED25-2CA8-488B-9647-B179A043D754} +"MULTIPOLYGON (((-73.7818354714279 40.69547846891879, -73.7820265654475 40.695396586929114, -73.78228279574653 40.69570881054498, -73.78231905252939 40.695753951721535, -73.78234992898962 40.695792392783076, -73.78236520166791 40.695811409030824, -73.78246760681309 40.695928807406084, -73.7825295743429 40.69599260355538, -73.7822884115911 40.696095940105074, -73.7818354714279 40.69547846891879)))",Q447,6317,Q447,Q-12,Q-12,Q-12,Q-12,"Merrick Blvd., 171 Pl. bet. 110 Ave. and 110 Rd.",412,27,113,11433,Q,0.396,False,Brinkerhoff Mall,Yes,100000290,PARK,20090423000000.00000,19770908000000.00000,,DPR,True,Brinkerhoff Mall,Y,Brinkerhoff Mall,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q447/,No,29,14,5,{4081E42E-8DAB-4F5D-B419-DC9C19C8CA2D} +"MULTIPOLYGON (((-73.91265543859022 40.845841981154805, -73.91266646364153 40.84582168248985, -73.91330667027148 40.84608262754137, -73.91329221390045 40.84610180167334, -73.91265543859022 40.845841981154805)))",X148C4,5709,X148C4,X-05,X-05,X-05,X-05,Cross Bronx Exwy bet. Townsend Av and Jerome Av,205,14,46,10453,X,0.037,False,Townsend Walk,No,100005179,PARK,20100106000000.00000,19480923000000.00000,,DPR,True,Townsend Walk,Y,Townsend Walk,STRIP,Strip,http://www.nycgovparks.org/parks/X148C4/,No,77,33,15,{2D45D1F5-0E4D-43B9-97DF-84A11124BA3C} +"MULTIPOLYGON (((-73.91666512979006 40.664216171242295, -73.9170198297427 40.664162242675495, -73.91708866175108 40.66442876232536, -73.91673386510273 40.66448232632452, -73.91671658236747 40.66441540184087, -73.91670465452722 40.66436921922462, -73.91669186875586 40.664319708577295, -73.91667937487112 40.664271329188345, -73.91666681744547 40.664222709313826, -73.91666512979006 40.664216171242295)))",B463,5258,B463,B-16,B-16,B-16,B-16,Legion St. and Blake Ave.,316,41,73,11212,B,0.23,False,Fantasy Garden,No,100004253,PARK,20100106000000.00000,20031031000000.00000,181 LEGION STREET,DPR,False,Fantasy Garden,N,Fantasy Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B463/,No,55,20,9,{FF3AAF60-DEED-4005-A53D-8374D61701D4} +"MULTIPOLYGON (((-73.87305888235448 40.8991139139172, -73.87329843057721 40.89909015033972, -73.87307209417287 40.89918062373593, -73.87305888235448 40.8991139139172)))",X096,4807,X096,X-13,X-13,X-12,X-12,"E 238 St, Oneida Av, Van Cortlandt Park E",212,11,47,10470,X,0.12,False,Rita Ley Triangle,Yes,100005204,PARK,20100106000000.00000,19240419000000.00000,4327 ONEIDA AvNUE,DPR,True,Rita Ley Triangle,Y,Rita Ley Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X096/,No,81,34,16,{5704558E-8032-48AC-8004-73DBDF775568} +"MULTIPOLYGON (((-73.95982612972409 40.75879964348495, -73.96068012615399 40.75915764299013, -73.96032423679681 40.759649236230196, -73.95947114526496 40.759291614445395, -73.95982612972409 40.75879964348495)))",M070,6571,M070,M-08,M-08,M-08,M-08,"West of York Ave., E 59 St. To E 60 St.",108,5,19,10022,M,1.239,False,Queensboro Oval,Yes,100004747,PARK,20100106000000.00000,19090202000000.00000,405 EAST 59 STREET,DPR/CDOT,False,Queensboro Oval,No,Queensboro Oval,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/M070/,No,73,28,12,{1435D373-2708-4EAB-B394-4D3A78BA3F4B} +"MULTIPOLYGON (((-74.12099740656076 40.63948244108408, -74.12098469264615 40.63947008222473, -74.12097709810227 40.63947440010084, -74.12088577857885 40.63938563918245, -74.12092448070067 40.63936212104768, -74.12086356876837 40.63930291379648, -74.12085585078461 40.63930760370891, -74.1207906757564 40.63924425310667, -74.12081688807352 40.63922832419688, -74.12079447781522 40.639206539860496, -74.12084236325732 40.63917744059178, -74.12071652548202 40.63905512552935, -74.12075213131409 40.6390334891856, -74.1211340810495 40.63940474445636, -74.12099740656076 40.63948244108408)))",R154,6120,R154,R-01,R-01,R-01,R-01,Richmond Ter. bet. Tompkins Ct. and Alaska St.,501,49,120,10310,R,0.124,False,Richmond Terrace Cemetery,No,100004538,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,Richmond Terrace Cemetery,N,Richmond Terrace Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/R154/,No,61,23,11,{FE9906A1-65CE-49D8-B543-C2921705632B} +"MULTIPOLYGON (((-73.95154745115224 40.81175488904593, -73.95127656040373 40.811640734965394, -73.95130989792118 40.81159514965052, -73.95158997697344 40.81171317604981, -73.95154745115224 40.81175488904593)))",M394,5512,M394,M-10,M-10,M-10,M-10,St. Nicholas Ave. bet. W. 126 St. and W. 127 St.,110,9,28,10027,M,0.038,False,St. Nicholas Miracle Garden,No,100008360,PARK,20140724000000.00000,20130419000000.00000,330 St. Nicholas Ave.,DPR,False,St. Nicholas Miracle Garden,,St. Nicholas Miracle Garden,,Garden,,No,70,30,13,{487AE8BC-A37F-4B61-B0E7-4D25C4403BB3} +"MULTIPOLYGON (((-73.7978571869964 40.77848029756745, -73.79792932750067 40.777985361780374, -73.79917399378964 40.77808710737604, -73.79910267878785 40.77857884946728, -73.7978571869964 40.77848029756745)))",Q334,5315,Q334,Q-07,Q-07,Q-07,Q-07,166 St. bet. 21 Rd. and 21 Ave.,407,19,109,11357,Q,1.439,False,Playground Twenty One,Yes,100000454,PARK,,19490310000000.00000,163-02 21 AVENUE,DPR/DOE,False,Playground Twenty One,Y,Playground Twenty One,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q334/,No,26,11,3,{72394AC0-7107-4E94-A5B5-F23C993FF86A} +"MULTIPOLYGON (((-73.99033676948099 40.69513965387348, -73.99065418682825 40.69512288372518, -73.99090704824266 40.69595239045383, -73.99090762959725 40.69595790974124, -73.9909078276109 40.69596344430702, -73.99090763873603 40.695968978842274, -73.99090706652413 40.69597449803848, -73.99090611216037 40.695979986587076, -73.99090477682978 40.69598542917943, -73.9909030652672 40.69599080960668, -73.99090098220687 40.695996114361456, -73.99089853238345 40.69600132813541, -73.99089572526422 40.69600643472006, -73.99089256676648 40.69601142150866, -73.99088906517416 40.69601627499414, -73.9908852311376 40.696020979868614, -73.99088107648984 40.69602552352583, -73.99087661069764 40.69602989516033, -73.99087184796069 40.69603407946449, -73.99086680129517 40.696038065633154, -73.99086148371681 40.696041844662176, -73.99085591179167 40.69604540304522, -73.99085010090161 40.696048732678804, -73.99084406524607 40.69605182275785, -73.9908378237563 40.69605466607973, -73.99083139299752 40.69605725454118, -73.99082479190135 40.69605958003905, -73.99081803821576 40.69606163627105, -73.99081115087206 40.69606341783572, -73.99080414998437 40.69606492023197, -73.9907970533009 40.69606613715766, -73.99078988330156 40.696067067714075, -73.99078265773427 40.696067708300575, -73.99077539671288 40.69606805621717, -73.99076812390034 40.696068112366326, -73.9902995371622 40.69605305327589, -73.99029228451434 40.69605276630139, -73.99028508517169 40.69605204348282, -73.99027798172695 40.696050889326436, -73.99027102150535 40.69604930923928, -73.99026424946476 40.696047315832345, -73.99025770464772 40.69604491901463, -73.99025142964501 40.69604213589953, -73.99024546349808 40.696038983600126, -73.99023984524804 40.69603548103051, -73.9902346103862 40.696031649806045, -73.99022978848733 40.69602751604422, -73.9902254138591 40.69602310406184, -73.99022151134336 40.69601844267736, -73.9902181045989 40.69601355980879, -73.99021521964995 40.69600848787689, -73.99021287068989 40.69600325750027, -73.99021107309444 40.69599790199925, -73.99020983869015 40.69599245469381, -73.9902091745707 40.69598694980411, -73.99020908664633 40.695981423351085, -73.9902095737291 40.6959759077531, -73.99025059666546 40.69521715733126, -73.99025098196486 40.695211812821384, -73.99025187245624 40.69520650347425, -73.99025325985382 40.695201255404086, -73.99025513705453 40.695196097426646, -73.99025749695572 40.69519105475563, -73.99026032535573 40.69518615440524, -73.99026360687036 40.69518142068792, -73.99026732729838 40.69517687701579, -73.99027146533972 40.69517254950188, -73.99027599969479 40.69516845885613, -73.99028076593528 40.695164421360055, -73.99028559364733 40.6951607314668, -73.99029104013381 40.69515705873529, -73.99029679656066 40.69515365618348, -73.9903023766261 40.69515076420717, -73.99030907121741 40.69514775435729, -73.99031527353516 40.695145367620334, -73.99032220937443 40.6951431124196, -73.99032797973005 40.69514154331117, -73.99033676948099 40.69513965387348)))",B113B,5061,B113B,B-02,B-02,B-02,B-02,"Cadman Plaza West, Cadman Plaza East bet. Tillary St. and Johnson St.",302,33,84,11201,B,1.195,False,Korean War Veterans Plaza,Yes,100004020,PARK,20100106000000.00000,19390616000000.00000,287 FULTON STREET,DPR,True,Korean War Veterans Plaza,Y,Korean War Veterans Plaza,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/B113B/,No,52,25,7,{23A1704B-F62C-4CB4-9CC0-77B29C4B6A3A} +"MULTIPOLYGON (((-73.89214609005658 40.65186766257076, -73.89271522456393 40.65150001627323, -73.89305880216514 40.65181285022485, -73.89307380529989 40.651826786182376, -73.89308433932071 40.65183985078471, -73.89310163081404 40.65186234648834, -73.89442100663 40.653640841725554, -73.89372584096937 40.65394584714579, -73.89427790920247 40.65468641670637, -73.89433527849172 40.65474928683711, -73.89362257956606 40.655057393089045, -73.89177771300555 40.652565033364624, -73.8917710002999 40.652555776927784, -73.89175950245036 40.65254219079969, -73.89175230804182 40.65253468811737, -73.89173926874409 40.652522336047056, -73.89156558035043 40.652367244615455, -73.89204526129159 40.651948228273035, -73.89208579405872 40.65191308217195, -73.89212379188992 40.65188226426997, -73.89214609005658 40.65186766257076)), ((-73.89021336650059 40.65115232553503, -73.89126820775927 40.6502037915625, -73.89203406950595 40.650889249052895, -73.89244526630617 40.651257266331214, -73.89254213756367 40.651343966006195, -73.89199290476184 40.6516927318731, -73.89192368907592 40.651738884139775, -73.89188861341192 40.65176424848426, -73.8918646913538 40.65178279737854, -73.89183229550157 40.65181069468095, -73.89138006343158 40.65220108698896, -73.89021336650059 40.65115232553503)))",B247,6400,B247,B-18,B-18,B-18,B-18,"Louisiana Ave., Stanley Ave., Flatlands Ave., Williams Ave.",318,42,69,11207,B,16.16,False,Breukelen Ballfields (PS 260 - Playground only),Yes,100003743,PARK,20100106000000.00000,19570627000000.00000,276 STANLEY AVENUE,DPR/NYCHA,True,Breukelen Ballfields,Y,Breukelen Ballfields,Large Park,Community Park,http://www.nycgovparks.org/parks/B247/,No,60,19,8,{F47EB047-1786-4E6E-808C-DE5C15BCAF3D} +"MULTIPOLYGON (((-73.98716119039365 40.78074378612356, -73.98722666835577 40.78072578516338, -73.98728106967694 40.78070840789227, -73.98732900833483 40.78068672638652, -73.9873701841836 40.78066298827395, -73.98741559557256 40.78063061839811, -73.987443404472 40.78060318223842, -73.9874710955462 40.7805722250967, -73.9875636051393 40.78044328954778, -73.98765502758435 40.78030411599913, -73.98776255074594 40.780148574761434, -73.98784987164306 40.78000670991654, -73.98804148719461 40.779688544783674, -73.98813123544028 40.77953308418783, -73.98820497433839 40.779370232360954, -73.98827656660323 40.77917222376258, -73.98834833029457 40.77899405409316, -73.98839747800437 40.77889786291311, -73.988446244282 40.778787115055316, -73.98851777121122 40.7786167138785, -73.98856026000009 40.77849805172889, -73.98858898015447 40.77842641602552, -73.98869934393686 40.77816377201897, -73.98870653750062 40.77814604093482, -73.98883674134066 40.77778382118702, -73.9888970874165 40.77763320360134, -73.98892789126928 40.777564294725906, -73.98926121802683 40.77770704688077, -73.98914872976209 40.77783102109892, -73.98885176214286 40.778158309110374, -73.98888986639416 40.77815694402706, -73.98903344735997 40.77815179700255, -73.98904352852135 40.778208367511255, -73.98963876356648 40.77817093286059, -73.99065625047089 40.77677414444869, -73.9918573480846 40.77518512688599, -73.99190485842504 40.77511444257768, -73.9920161301422 40.77495892272735, -73.99205839425667 40.77491414184953, -73.99211939143784 40.77488349923001, -73.99230203451552 40.77462651531321, -73.99309871887782 40.773517901879046, -73.99320889879982 40.77337531289624, -73.99324632614318 40.77332811163565, -73.99328517005084 40.77328157591675, -73.99332525524738 40.773235356332904, -73.99342839533112 40.77319380855527, -73.99345740928214 40.77315372161814, -73.99356490741033 40.773022024618236, -73.99380421956698 40.77312376484774, -73.99551262550064 40.77384768535305, -73.996132050055 40.77411214856017, -73.99550388555174 40.77487258590218, -73.99450024763395 40.776201101553546, -73.99313301462742 40.77813324060052, -73.9911615872722 40.78082238447133, -73.99094718145739 40.78072807627724, -73.99012245840852 40.78173964847355, -73.98994830571301 40.78195407619285, -73.98821296505895 40.781228352284316, -73.98814336790032 40.781199245428695, -73.98814221057393 40.781198761740136, -73.98794844690067 40.78111773159549, -73.9876140652118 40.780977902236565, -73.98758753454484 40.78096680790076, -73.98757757829154 40.780962644708374, -73.98709172649127 40.78075947140972, -73.98716119039365 40.78074378612356)))",M353,4610,M353,M-14,M-14,M-07,M-07,"12 Ave., Riverside Blvd. bet. W. 59 St. and W. 72 St.",107,6,20,"10019, 10023",M,66.693,False,Riverside Park South,No,100003968,PARK,20100106000000.00000,20010114000000.00000,400 RIVERSIDE DRIVE,DPR,True,Riverside Park South,Y,Riverside Park South,Large Park,Community Park,http://www.nycgovparks.org/parks/M353/,Yes,67,31,10,{783B8189-76B2-462F-B35E-1C262A542482} +"MULTIPOLYGON (((-73.90825630796442 40.86573666751369, -73.90825972453972 40.86573550589696, -73.90826303074937 40.865734382012995, -73.90826717654878 40.865733414581115, -73.90827007172659 40.86573273881402, -73.90827366647828 40.865732254506796, -73.90827732648144 40.86573176124645, -73.908280682332 40.86573162613907, -73.90828468112122 40.865731464527954, -73.90828819191725 40.86573165011788, -73.90829202888382 40.865731853976705, -73.9082947114462 40.86573224962272, -73.90829926065348 40.86573292140149, -73.90830251675611 40.865733726325445, -73.90830626495081 40.865734652305996, -73.90831010269204 40.86573601509502, -73.90831293742816 40.86573702139356, -73.90831917968376 40.86573999256648, -73.90832333484667 40.86574255776101, -73.9083267132989 40.865744957548685, -73.90832807946269 40.86574603561974, -73.90832999896234 40.86574755176834, -73.90833352169977 40.865751122307, -73.90833630508708 40.865754099736044, -73.90833868331625 40.86575670674193, -73.90833989631582 40.865758753618024, -73.9083416797204 40.86576176357066, -73.90834253573158 40.865766357648454, -73.90833357816152 40.86601736562394, -73.90807210396983 40.865998005092806, -73.90823450842989 40.86575140380172, -73.90823700987869 40.865748952857174, -73.90823902077636 40.86574698328447, -73.90824112607008 40.865745373982655, -73.9082442121699 40.86574301625331, -73.90824761571193 40.86574098475357, -73.90825000305786 40.86573956027627, -73.90825176681854 40.865738750337485, -73.908253873597 40.86573778398626, -73.90825630796442 40.86573666751369)))",X150M,6374,X150M,X-07,X-07,X-07,X-07,Bailey Ave. at Sedgwick Ave.,207,14,52,"10463, 10468",X,0.03,False,Park,Yes,100004401,PARK,20100106000000.00000,19610101000000.00000,,DPR,False,Park,N,Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/X150M/,No,78,33,13,{4913E962-FD69-4847-AAD1-6D0BC5730D8B} +"MULTIPOLYGON (((-73.84528369921858 40.72169362720844, -73.84528907484047 40.72169222963493, -73.84530869632965 40.72169541589218, -73.84535473715212 40.721705186149975, -73.84536616040755 40.72170761035943, -73.84538729745591 40.721712095374464, -73.84541803827861 40.72171861852922, -73.84548134179366 40.72173205267779, -73.84554464652622 40.72174548319111, -73.84560794891708 40.721758913666406, -73.84567125251284 40.72177234590951, -73.84573455613206 40.72178577901825, -73.84580115900921 40.7218000089604, -73.84586776784118 40.72181423526995, -73.8459128480527 40.72182386984209, -73.84592935948943 40.72182739672679, -73.84593437076897 40.72182846783649, -73.84600097847424 40.72184269406733, -73.846067582655 40.721856921155336, -73.8461341892273 40.72187115000896, -73.84620079346077 40.721885378820886, -73.84626451112332 40.72189899949711, -73.84632481105356 40.721911889764506, -73.84638681693836 40.72192514067973, -73.84644882284155 40.72193839426304, -73.84647317068128 40.721943602868606, -73.84651083113249 40.721951649617154, -73.84657283708707 40.7219649022331, -73.84663484661093 40.72197815752194, -73.84669685379225 40.72199141277416, -73.84676612212895 40.7220063481047, -73.84683539049469 40.722021284294016, -73.84690465889354 40.72203621954114, -73.84697392732136 40.72205115564707, -73.84704319577811 40.7220660926118, -73.84708706064964 40.722076291530165, -73.84713092316531 40.72208649132917, -73.84715754039979 40.72209259881119, -73.84718386249398 40.72209940829373, -73.84720985633446 40.722106908026475, -73.84723548760756 40.72211509346149, -73.84726073148295 40.722123953760025, -73.84728555602655 40.7221334789743, -73.84730992456974 40.72214365915038, -73.84733381466994 40.72215447444749, -73.84735837775143 40.72216654234183, -73.8473800365259 40.722177976023566, -73.84740230799056 40.72219063070542, -73.84742399342073 40.72220386993836, -73.84744505617003 40.72221767386289, -73.84746547141579 40.722232028038356, -73.84748521788609 40.72224691802865, -73.84750427078289 40.72226231858711, -73.84751600197745 40.72227249098571, -73.847522407338 40.72227833838073, -73.84753983149702 40.7222948182897, -73.84756443596278 40.72231832808485, -73.84758858058261 40.72234210922016, -73.84759168510028 40.72234526061495, -73.84759655910365 40.722350490929834, -73.84759747652339 40.722351474601474, -73.84761153770225 40.7223665614602, -73.84763342829042 40.722391579605926, -73.84765385272998 40.72241645082518, -73.84767332811417 40.72244175663238, -73.8476918438331 40.72246747810313, -73.84770938218116 40.72249359360224, -73.84774239873958 40.722538869924676, -73.84777541297369 40.72258414713475, -73.84780842843412 40.72262942523718, -73.84784144394153 40.72267470242933, -73.84787514569983 40.72272114577928, -73.84787700447302 40.722725599459814, -73.84787781931057 40.72273108194533, -73.84787697945556 40.72273655954305, -73.84787391170674 40.72274269427151, -73.8478678956799 40.72274877377525, -73.84786082514793 40.72275273388398, -73.84786048619914 40.7227529234439, -73.84781761365895 40.72276042026909, -73.8477880075485 40.7227651529398, -73.84771852363309 40.722776260712585, -73.84764531777894 40.72278815056482, -73.84763595310807 40.722789117928365, -73.847628957482 40.72278878088471, -73.84762215343409 40.722787482348735, -73.84761510564996 40.72278510918043, -73.84756669866002 40.72276353010029, -73.84755479053112 40.72275822473399, -73.84738024467396 40.72268043160482, -73.8471470521201 40.72257783324105, -73.84691310047518 40.72247623296029, -73.84685239725506 40.722449538536324, -73.8467913275341 40.722422682401046, -73.84673099568484 40.72239615410091, -73.84671783416898 40.7223903643053, -73.84667029734511 40.72236945958696, -73.84660959550104 40.722342765936666, -73.84659309367198 40.72233550834645, -73.84654893526057 40.72231601647797, -73.84648827031978 40.7222892732845, -73.84642763271303 40.72226250308003, -73.84636698923276 40.72223573463663, -73.84630634817464 40.722208963462826, -73.84624570479596 40.72218219315436, -73.84618506501683 40.72215542281857, -73.84612571316046 40.72212911973608, -73.84606636608532 40.72210281662924, -73.84600701432474 40.72207651258483, -73.84594766379038 40.722050210312375, -73.84588831212558 40.722023905306095, -73.84582896405215 40.721997602975414, -73.84576961602764 40.72197129971352, -73.84571026568281 40.72194499641782, -73.84565363213174 40.7219195567213, -73.84560659243105 40.72189842619972, -73.84559703541164 40.72189407562267, -73.84554059901794 40.72186838038958, -73.84548416385132 40.721842685130284, -73.84542772635899 40.72181699074062, -73.8453712901 40.72179129362324, -73.84531569689153 40.72176598573088, -73.84525784396483 40.721738750382706, -73.84525620955287 40.721734609437846, -73.84525512983747 40.721729117571634, -73.84525551296818 40.72172111524606, -73.84525736978244 40.72171511043333, -73.84526065317787 40.72170946954322, -73.845265091838 40.72170430927748, -73.84526888566629 40.7217010878455, -73.84527184564233 40.721699142217254, -73.84527323257448 40.72169823096306, -73.84527859700628 40.721695535738796, -73.84528369921858 40.72169362720844)))",Q207,5766,Q207,Q-06,Q-06,Q-06,Q-06,Queens Blvd. bet. Yellowstone Blvd. and 70 Rd.,406,29,112,11375,Q,1.415,False,MacDonald Park,Yes,100000310,PARK,20090423000000.00000,19350306000000.00000,,DPR,False,MacDonald Park,Y,MacDonald Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q207/,No,28,16,6,{739F94F7-1C99-44E3-87C4-77F8D33FB277} +"MULTIPOLYGON (((-73.84388490169677 40.67056207627354, -73.84444655176495 40.670480200226635, -73.8442938152913 40.67089194581627, -73.84425313609044 40.67088238940078, -73.84418843285526 40.670867187515796, -73.84407100775063 40.670839599582784, -73.8440737950731 40.67082910603663, -73.84413813827777 40.67058688217052, -73.84388490169677 40.67056207627354)))",Q481,4864,Q481,Q-10,Q-10,Q-10,Q-10,"Redding St, Albert Rd and 149th Av",410,32,106,11417,Q,0.226,False,Southside Burial Ground,No,100000314,PARK,20090423000000.00000,20130304000000.00000,139-03 REDDING STREET,DPR,False,Southside Burial Ground,N,Southside Burial Ground,Cemetery,Cemetery,http://www.nycgovparks.org/parks/Q481/,No,23,15,8,{E8180574-9180-4303-82AB-CF3C3C6ABDFD} +"MULTIPOLYGON (((-73.98931963848251 40.76127607104204, -73.98955687357737 40.761375625552986, -73.98950439267243 40.761447734983584, -73.98951646930976 40.76146122924225, -73.9893626053831 40.761615287849956, -73.98930104665897 40.76158945568166, -73.98922639513506 40.761558128279034, -73.98914208511145 40.76152274764788, -73.98931963848251 40.76127607104204)))",M288,5949,M288,M-04,M-04,M-04,M-04,47 St. bet. 8 Ave. and 9 Ave.,104,3,18,10036,M,0.174,False,Ramon Aponte Park,Yes,100003947,PLGD,20100106000000.00000,19900530000000.00000,,DPR,False,Ramon Aponte Park,Y,Ramon Aponte Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M288/,No,75,27,10,{721EAD98-9CDE-4470-A2E0-C4200280DAF0} +"MULTIPOLYGON (((-73.8390052243046 40.8413841200271, -73.83946705619572 40.841138197503504, -73.83988445147229 40.841613242830654, -73.83913474246992 40.84201009307305, -73.83892253915187 40.841780948870316, -73.8390052243046 40.8413841200271)))",X256,5341,X256,X-11,X-11,X-11,X-11,Westchester Ave. bet. Tan Pl. and Waters Ave.,211,13,49,10461,X,1.26,False,Pelham Bay Little League,Yes,100003767,PARK,20100106000000.00000,19880516000000.00000,2950 WESTCHESTER AVENUE,DPR,False,Pelham Bay Little League,Y,Pelham Bay Little League,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X256/,No,82,34,14,{E2E90F23-626A-4A18-A5DF-0E03F0E666E5} +"MULTIPOLYGON (((-73.92677516724928 40.663283323398005, -73.92705017979752 40.66310297249406, -73.9270822886972 40.663299900682375, -73.92708182716595 40.66330020296336, -73.92691533821147 40.66340938578501, -73.92677516724928 40.663283323398005)))",B404,4890,B404,B-17,B-17,B-17,B-17,E. 94 St. bet. Rutland Rd. and E. New York Ave.,317,41,67,11212,B,0.106,False,East Flatbush Children's Park,Yes,100004958,PARK,20100106000000.00000,19971124000000.00000,68 EAST 94 STREET,DPR,False,East Flatbush Children's Playground,N,East Flatbush Children's Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B404/,No,55,20,9,{1AF163FF-3739-49EB-A377-3E74BC189852} +"MULTIPOLYGON (((-73.86082992103245 40.72044651100563, -73.86080046737229 40.720790036471655, -73.86077841113556 40.720789510919964, -73.86071157610331 40.72078791722428, -73.86058183654727 40.72078482272614, -73.86046133121043 40.72078688299128, -73.86037547611875 40.72078972357539, -73.8602656493441 40.72079335717053, -73.86015742888522 40.720803664496245, -73.86006128932264 40.720812821143674, -73.86001709951576 40.72081703044278, -73.85993415818051 40.720827277339495, -73.85990979039543 40.72083125406468, -73.85988394379844 40.72083547212293, -73.85980975588105 40.72084757743062, -73.85972264462468 40.72086179305154, -73.85963934870959 40.72087625189333, -73.85956401610206 40.720893445334056, -73.85949007247658 40.720910320739335, -73.85941138151567 40.72092827991835, -73.85940605441971 40.72088608538428, -73.85940231287839 40.720856452209766, -73.85933934286273 40.7203576904202, -73.85939348269864 40.72034621830621, -73.85946310946947 40.72033146469972, -73.85952529456613 40.72031974749936, -73.85958056716096 40.72030933387923, -73.85967023917078 40.72029503233621, -73.85973676796802 40.720284421640656, -73.8597962465846 40.72027586359078, -73.85986190535876 40.72026753005589, -73.85989659226772 40.72026312825023, -73.859990823802 40.72025308962119, -73.8600493621602 40.720247557814616, -73.86012458516069 40.72024044964408, -73.86019685492249 40.720236256394045, -73.86023425460799 40.720234085644506, -73.86027142701458 40.72023192901517, -73.8603085994206 40.72022977147333, -73.8603086562229 40.72023034066509, -73.86048854262118 40.72022563659031, -73.86066853471114 40.720225846449985, -73.86084840173547 40.720230969964696, -73.8608446277195 40.72027498777553, -73.86066741112266 40.7202662212943, -73.86048985764342 40.72026348755456, -73.86031231992762 40.7202667923858, -73.86032952781754 40.72043799136472, -73.86082992103245 40.72044651100563)), ((-73.86080197637092 40.7207900725155, -73.86080046737229 40.720790036471655, -73.8608021548454 40.720787924112614, -73.86080197637092 40.7207900725155)))",Q306,6654,Q306,Q-06,Q-06,Q-06,Q-06,Alderton St. bet. Dieterle Cr. and Ellwell Cr.,406,29,112,11374,Q,1.699,False,The Painter's Playground,Yes,100000136,PARK,20090423000000.00000,19490112000000.00000,65-71 ELLWELL CRESCENT,DPR/DOE,False,The Painter's Playground,Y,The Painter's Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q306/,No,28,15,6,{17BBB0D5-D33B-4F48-A7F2-79DFBFF6656F} +"MULTIPOLYGON (((-73.97395410527756 40.693191116769654, -73.97326832557873 40.68973970523142, -73.97620037384215 40.689850497044866, -73.97671151231704 40.68986980326287, -73.97711580526519 40.68988507242565, -73.97747009100597 40.69165561966321, -73.97750854076375 40.69165204404266, -73.97759525531053 40.69164397975294, -73.97759943543787 40.691664078217364, -73.97759953718482 40.69166406923204, -73.97763068430658 40.69181431238689, -73.97738066447884 40.69180422910063, -73.97768929523377 40.693333503545084, -73.97704758627529 40.69330904999774, -73.9768382978091 40.69330107364839, -73.97395410527756 40.693191116769654)))",B032,6006,B032,B-02,B-02,B-02,B-02,"Myrtle Ave., De Kalb Ave. bet. Washington Park and St. Edward's St.",302,35,88,"11201, 11205",B,30.168,False,Fort Greene Park,No,100004617,PARK,20100106000000.00000,18471129000000.00000,,DPR,Unkwn,Fort Greene Park,Y,Fort Greene Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B032/,No,57,25,8,{5213D76F-C703-4A7D-AE7A-4EC4A2A367E1} +"MULTIPOLYGON (((-73.98030413929077 40.71108804282328, -73.98043922137141 40.71107544699789, -73.98047182473537 40.711353060200246, -73.98056472321122 40.71214404672707, -73.9779857386041 40.71231304593563, -73.97799359927365 40.712301409238634, -73.97800927205961 40.71227820877509, -73.97802323985736 40.712257531214775, -73.97803351736059 40.71224506290449, -73.97804366936607 40.712232745855125, -73.97810268470406 40.71216114848625, -73.97814780918931 40.712106403309164, -73.97823196746293 40.712023947782235, -73.97828792015274 40.71196912445089, -73.97837384005584 40.7118944198468, -73.9784468058872 40.71183097634142, -73.97854202274685 40.71175527198286, -73.97862653522886 40.71169461039085, -73.97870470650425 40.711638499645346, -73.97878525274778 40.71158991665346, -73.97885269233657 40.71154924128444, -73.97896653029196 40.71148588329243, -73.97904094193493 40.711450372615104, -73.97911691702923 40.711414116550195, -73.97919441769562 40.711377130396485, -73.9792901620945 40.711339356825476, -73.97935907740035 40.71131216837415, -73.97940395451744 40.71129446336485, -73.97949816414102 40.71126323515887, -73.97957362764252 40.71123822157789, -73.97979317436254 40.711177990037754, -73.97997171728413 40.711139005708475, -73.9801482873786 40.71110752291748, -73.98030413929077 40.71108804282328)))",M017,5398,M017,M-03,M-03,M-03,M-03,"Jackson St, Cherry St, FDR Drive",103,2,7,10002,M,4.355,False,Corlears Hook Park,Yes,100004346,PARK,20100106000000.00000,18930717000000.00000,397 FDR DRIVE W LANE,DPR,True,Corlears Hook Park,Y,Corlears Hook Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M017/,No,65,26,7,{588C8880-476E-419B-928B-1C62DF66B350} +"MULTIPOLYGON (((-73.99826871504614 40.74760581781113, -73.99863254037065 40.74710213890969, -73.9987037073191 40.74713188075547, -73.99851690285239 40.747390492210194, -73.99858901137269 40.74742077714304, -73.99900342942678 40.74759483943429, -73.9991422635113 40.747653151935076, -73.99896504215178 40.74789849881098, -73.99826871504614 40.74760581781113)))",M249,4947,M249,M-04,M-04,M-04,M-04,"W. 26 St., 8 Ave. To 9 Ave.",104,3,10,10001,M,0.6,False,Penn South Playground,Yes,100004408,PLGD,20100106000000.00000,19610922000000.00000,346 WEST 26 STREET,DPR,True,Penn South Playground,Y,Penn South Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M249/,No,75,27,10,{45236AB8-6006-4F63-AE5B-2153832B9690} +"MULTIPOLYGON (((-73.73810488579139 40.75816514791303, -73.73939862696376 40.75737020213683, -73.73940202308431 40.757375117593575, -73.73920946288253 40.757493438248176, -73.73908628932375 40.75756912537162, -73.73894814610101 40.757654008657894, -73.7388200050991 40.75773274506921, -73.73869260573433 40.757811026461965, -73.73852575234558 40.75791354992015, -73.73830086378413 40.75805173203844, -73.73817848709646 40.758126926521065, -73.73805813893381 40.758200872878184, -73.73796609516513 40.75825742802992, -73.7379615570868 40.75825321503226, -73.73810488579139 40.75816514791303)))",Q357D,6260,Q357D,Q-11,Q-11,Q-11,Q-11,Horace Harding Exwy. Sr. Rd. N. bet. Douglaton Pkwy. and 244 St.,411,19,111,11362,Q,0.023,False,Strip,No,100000053,PARK,,19540830000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q357D/,No,26,11,3,{BF39DE26-144D-4DEF-8473-0334C26831FB} +"MULTIPOLYGON (((-73.90678996935625 40.642417732371655, -73.90760524192204 40.641895804819725, -73.90792173381502 40.64217915117188, -73.90726452225472 40.64266670874857, -73.9073251134188 40.64271960633866, -73.90721760244496 40.642800638376414, -73.90716557465976 40.64275405217532, -73.90712673569995 40.642719276099875, -73.90701042451235 40.642615129864964, -73.90692611128804 40.64253963600475, -73.90684038729306 40.642462878411706, -73.90678996935625 40.642417732371655)))",B360,5201,B360,B-18,B-18,B-18,B-18,Remsen Ave. and Glenwood Rd.,318,46,69,11236,B,1.333,False,Remsen Playground (PS 114),Yes,100004647,PARK,20100106000000.00000,19560705000000.00000,1100 GLENWOOD ROAD,DPR/DOE,False,Remsen Playground,Y,Remsen Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B360/,No,59,19,8,{86712318-0CDF-47F1-A97D-EE069710E538} +"MULTIPOLYGON (((-73.86535730474067 40.83426487625433, -73.86569961151196 40.83423208131534, -73.86573062478448 40.8344281975439, -73.86536691244984 40.834319582646295, -73.86535730474067 40.83426487625433)))",X148K4,5647,X148K4,X-09,X-09,X-09,X-09,"S/B Cross Bronx Exwy Service Rd, McGraw Av, Taylor Av",209,18,43,10472,X,0.138,False,Park,Yes,100005141,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148K4/,No,87,33,15,{529CAF4B-62FB-4A23-9968-5DA53C10DAF9} +"MULTIPOLYGON (((-74.07826630071021 40.61275432288198, -74.07853097481552 40.612263060966626, -74.07869253725258 40.612100393727374, -74.07874880235913 40.61204964502421, -74.07879654420077 40.61200800460825, -74.0788652996891 40.61195961745717, -74.07894723120982 40.61190380181852, -74.07902818749155 40.61185676957842, -74.0790958512293 40.611822700431645, -74.08014564984462 40.61140268408194, -74.08025956640878 40.61135344872214, -74.08039168709048 40.61130507762657, -74.08051118313941 40.61126866874661, -74.08067529054199 40.61122907661364, -74.08080307872744 40.61120604966476, -74.08093530293414 40.611189052945285, -74.08105863568561 40.61117925931341, -74.08117502859027 40.61117527791453, -74.0812981632848 40.611176583995395, -74.08140446492709 40.61118228200435, -74.08153945213881 40.61119570405557, -74.08166158548477 40.611213954672955, -74.08183435658128 40.61125012282021, -74.08193458115882 40.611276976118056, -74.0826145909559 40.61146445616203, -74.08243212467463 40.61175271716289, -74.08241772665207 40.61175114437054, -74.08240322787626 40.611750274956, -74.0823886850671 40.61175010977906, -74.08237415849291 40.61175065239866, -74.08235970604974 40.61175189917124, -74.08234538799361 40.61175384374995, -74.08233126103558 40.61175647979061, -74.08231738306402 40.61175979734607, -74.08230381078003 40.61176378196752, -74.08229059969882 40.61176841560479, -74.08227780179388 40.61177368291206, -74.08226547021037 40.61177956043776, -74.08225365573044 40.61178602473224, -74.08224240558773 40.61179304964665, -74.08223176583121 40.61180060633152, -74.08222177777986 40.61180866323927, -74.08221248511708 40.61181718972105, -74.08220392443107 40.611826150630506, -74.08219612876047 40.61183550722179, -74.08210667447042 40.611956976775815, -74.08187245133823 40.61215846985473, -74.08186358149479 40.61216689694938, -74.08185445384966 40.612175163033584, -74.08184507194116 40.61218326270159, -74.08183544285374 40.61219119144572, -74.0818255724912 40.61219894565963, -74.0818154632103 40.61220651993839, -74.0818051244599 40.61221391067318, -74.08179455978055 40.6122211142593, -74.08178377507507 40.61222812618991, -74.08177277742787 40.61223494195733, -74.08176157156353 40.61224155975699, -74.08175064384719 40.612248552875265, -74.08173945231373 40.61225529763614, -74.08172800168116 40.61226178683199, -74.0817201334353 40.61226600956868, -74.08171036841806 40.6122710324158, -74.0816983225953 40.61227686104899, -74.08168605546476 40.612282416079616, -74.0816727674327 40.612288017760925, -74.08166090334232 40.61229268638925, -74.08164953610651 40.61229684496824, -74.08163857142722 40.61230068537609, -74.0816297808957 40.61230346882763, -74.08161617432295 40.612307560553965, -74.0816031567749 40.61231114216528, -74.0815913378684 40.61231411417172, -74.08158129898288 40.6123164770616, -74.08157355286886 40.61231815572813, -74.081530096438 40.612326235421484, -74.08148520460212 40.61233458267041, -74.08143297156236 40.61234429489042, -74.08138341082481 40.612353509907805, -74.08133299828663 40.612362883097795, -74.08128914248644 40.6123710377259, -74.08123950255639 40.61238026804605, -74.08119215451944 40.612389068978146, -74.0810959304173 40.61240658991437, -74.08109082409142 40.612407272510104, -74.08108288871259 40.61240783372984, -74.08107341954276 40.61240840323504, -74.08104849063825 40.612408961128196, -74.081031645351 40.61240939444875, -74.08102152240791 40.61240970686139, -74.08100704591035 40.61240977109584, -74.08097688309986 40.61240909804684, -74.08096365597481 40.61240847880035, -74.08095062828912 40.61240764328671, -74.08092172741627 40.612404953066815, -74.08090616526255 40.61240330886294, -74.08087426057955 40.61239864950373, -74.08087051633291 40.61239804428601, -74.08086357263255 40.61239687128895, -74.0808532366353 40.61239493883645, -74.08082598366835 40.612388886686915, -74.08081976660438 40.612387640234, -74.08081473030688 40.612386627986695, -74.08079914882867 40.61238268024784, -74.0807805028902 40.6123774198991, -74.08077328746931 40.6123753186498, -74.08076484848931 40.61237277340215, -74.08075571662724 40.612369874735705, -74.0807447947663 40.612366182165424, -74.08073386798065 40.61236232480209, -74.08072003630545 40.61235719163769, -74.08071039648847 40.61235344503303, -74.08069772274182 40.61234822460278, -74.08068760949936 40.61234384706303, -74.08067686588576 40.61233901790294, -74.08066633962343 40.61233412555286, -74.08064849166793 40.61232523101825, -74.08064017462291 40.61232090534478, -74.0806284022291 40.612314484779844, -74.08061997587998 40.612309667496824, -74.08061185330844 40.612304923842885, -74.08059982218818 40.61229756781457, -74.08058874615757 40.6122904632614, -74.08057788142285 40.61228317305163, -74.08056961814546 40.61227737228106, -74.08054783742944 40.61225948427703, -74.08054226272917 40.61225490362816, -74.08053414170669 40.612250454438204, -74.08052241700595 40.61224436882297, -74.08050997965184 40.61223916891839, -74.0804969455065 40.61223490417178, -74.08048343278226 40.61223161322262, -74.08046956913374 40.612229325698515, -74.08045548102525 40.6122280640239, -74.0804412984506 40.61222783801344, -74.080427152579 40.61222865207798, -74.08041317574494 40.61223049711968, -74.08039949554751 40.61223335683999, -74.08038803793818 40.612237101117465, -74.08035917940992 40.61224889291411, -74.08035641929044 40.612250076328, -74.08035288217141 40.61225072177309, -74.08034851850115 40.612250894121495, -74.08034449026438 40.61225093475916, -74.08033005449619 40.6122514302297, -74.08031563078704 40.612252127406855, -74.08030122740743 40.61225302538432, -74.08028684908376 40.61225412415875, -74.08027249817937 40.61225542372854, -74.08025818060017 40.61225692228857, -74.08024390225546 40.61225862073518, -74.08022966668793 40.6122605172649, -74.08021547862514 40.61226261277496, -74.08020134397212 40.61226490455972, -74.0801872662758 40.61226739441774, -74.08017325025843 40.612270078743656, -74.08015930301099 40.61227295843312, -74.08014542571385 40.61227603258472, -74.08013162427206 40.61227929849286, -74.08011790341423 40.61228275795529, -74.08010426786261 40.612286407366724, -74.08009072234266 40.61229024582331, -74.08007727276159 40.61229427242044, -74.08006392029976 40.61229848625687, -74.08005067204493 40.61230288552659, -74.08003753154097 40.61230746932666, -74.08002450232841 40.61231223405259, -74.08001159031659 40.612317180600805, -74.07999880022876 40.612322306266464, -74.07998095867117 40.6123295237552, -74.07995916827132 40.61233796239378, -74.07994957626724 40.61234154053429, -74.07992351024788 40.612351658911045, -74.07989870664659 40.61236113163088, -74.0798576859858 40.612376619390375, -74.07982881187331 40.612387365558924, -74.0798020445293 40.61239701432286, -74.07977293351006 40.61240630629953, -74.07973431161528 40.612418862053026, -74.0797101981282 40.61242740671623, -74.07968831289223 40.612436636927555, -74.0796698500133 40.61244509481673, -74.07965106385367 40.61245595281684, -74.07962010450834 40.61247502299764, -74.07959346209235 40.61246859371513, -74.07956165140624 40.61246343323655, -74.07953531216288 40.61246152164717, -74.07950486816362 40.61246188760835, -74.07948109923137 40.61246410221933, -74.07945377173407 40.61246881823245, -74.07941689956307 40.61247919610917, -74.07938621855214 40.61249191645736, -74.07936260177425 40.612504840841176, -74.07934109063616 40.612519685479604, -74.07931824707225 40.61253992695831, -74.07930352683289 40.61255665799856, -74.07928787266242 40.61258001121576, -74.07927713132611 40.61260291708539, -74.07924710786254 40.61261218074121, -74.07920579224961 40.61262632579323, -74.07916237982496 40.612643027053934, -74.0791185516925 40.6126619429667, -74.07908165607203 40.61267959246282, -74.07906151960243 40.61268987496142, -74.07904256106292 40.6126999981547, -74.07900255914929 40.612719947892195, -74.07896123891115 40.61273827488106, -74.07891855618803 40.6127546063343, -74.07888103738223 40.61276696743091, -74.07883968906674 40.61277858280859, -74.07879182661198 40.61278956146547, -74.0787558005145 40.612796167165634, -74.07873725164902 40.61279903182454, -74.07871426582903 40.61280208682743, -74.07868313382417 40.61280536442793, -74.0786480458747 40.6128078900898, -74.07861173229901 40.612809217084525, -74.07856313692291 40.612808959440365, -74.07850568959171 40.612805643347066, -74.07846682192702 40.61280152298488, -74.07842474239409 40.61279531469069, -74.07838323037232 40.612787349977175, -74.07834857780051 40.61277924729619, -74.07831262095957 40.61276937506816, -74.07826630071021 40.61275432288198)), ((-74.08131558233565 40.61096547588724, -74.08113335191814 40.61096322097996, -74.08096819092601 40.61097025795087, -74.08080500642652 40.61098578701531, -74.08072180308118 40.61099705337012, -74.08063728880143 40.61101086725959, -74.08052053401934 40.61103398535351, -74.0804616550475 40.611047551519576, -74.0804579249859 40.61081060166427, -74.08033393239678 40.61065256938921, -74.08034264431306 40.61060030872751, -74.08035550804271 40.61052315114034, -74.08036618497151 40.61045910757678, -74.08037517759092 40.610405471618606, -74.08038463330091 40.610395917674886, -74.0804442153011 40.61033571303486, -74.08050178733347 40.6102775404478, -74.08055829355668 40.61022044470196, -74.08058790199884 40.61019242132265, -74.08060723081883 40.61016190979935, -74.08066315915873 40.610073618531914, -74.08067955127179 40.610047743141884, -74.08077827650625 40.6099222932569, -74.08083877628769 40.60986147630965, -74.08102218213652 40.609677108520415, -74.08115079517113 40.609547819926, -74.08115085417845 40.60954775954937, -74.08129853703419 40.60939929962102, -74.0815059986376 40.60928813186012, -74.08183929135363 40.6094719499868, -74.08200257209941 40.60956203167808, -74.08259378979992 40.609888095241594, -74.0827311531107 40.60996339173928, -74.08274504305471 40.609971004657694, -74.08302531623805 40.61012461346991, -74.08330325185356 40.610276940047946, -74.08321406882006 40.61037858800466, -74.08309049921677 40.610519429847265, -74.08272643664078 40.61126829253266, -74.08204807067946 40.61108439064756, -74.08191388689121 40.61104864468876, -74.08174584479163 40.611013110866914, -74.0816275710961 40.61099395167321, -74.08147229109099 40.61097592893736, -74.08131558233565 40.61096547588724)))",R124,6203,R124,R-01,R-01,R-01,R-01,"Mosel Ave., Palma Dr., Hanover Ave.",501,49,120,10304,R,16.505,False,Eibs Pond Park,Yes,100003981,PARK,20100106000000.00000,19891220000000.00000,,DPR,False,Eibs Pond Park,N,Eibs Pond Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R124/,No,61,23,11,{00A5BB03-3D44-4B0C-8831-A8BB478BC661} +"MULTIPOLYGON (((-73.92268112946196 40.845591727475956, -73.92304307727684 40.845329991867985, -73.92401047011265 40.84576496335731, -73.9238393385831 40.84610483239681, -73.92268112946196 40.845591727475956)))",X158,5752,X158,X-05,X-05,X-05,X-05,Cross Bronx Exwy. Sr. Ramp bet. Undercliff Ave. and Dr. MLK Jr. Blvd.,205,16,46,10453,X,1.054,False,Sedgwick Playground,Yes,100005150,PARK,20100106000000.00000,19490428000000.00000,,DPR,True,Sedgwick Playground,Y,Sedgwick Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X158/,No,77,29,13,{09457B1B-734A-45D2-ADE2-0046A6D3CAE2} +"MULTIPOLYGON (((-73.95446701497883 40.6563722097988, -73.95485758029598 40.65634831994339, -73.9548724698205 40.65634801600828, -73.95488707331333 40.65634578665374, -73.95490096623143 40.65634169835165, -73.95491374291632 40.65633586891103, -73.95492503196553 40.65632846838434, -73.95493450214843 40.65631971366691, -73.95494187896645 40.65630985949797, -73.95494694583947 40.65629919305792, -73.95494955711764 40.656288025868975, -73.95494963454155 40.656276682987254, -73.95492392012441 40.65603323074708, -73.95498858437325 40.65602926858111, -73.9550263539288 40.65638685704425, -73.95506180452986 40.65672248006529, -73.95474568611085 40.65674171363822, -73.953624736681 40.65680990905393, -73.95359117363157 40.65646708311678, -73.95443286594185 40.656415602995004, -73.95447134309084 40.65641324987211, -73.95446701497883 40.6563722097988)))",B267,5144,B267,B-09,B-09,B-09,B-09,Winthrop St. between Rogers Ave. and Bedford Ave.,309,40,71,11225,B,1.252,False,Winthrop Playground,Yes,100004463,PARK,20100106000000.00000,19531203000000.00000,164 WINTHROP STREET,DPR/DOE,False,Winthrop Playground,Y,Winthrop Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B267/,No,43,20,9,{A49EC5BF-12C4-49B4-9830-DF56DCAE48FF} +"MULTIPOLYGON (((-74.00672402234832 40.73013812355249, -74.00548661153267 40.7300159442329, -74.00542077780071 40.73003677971446, -74.00546419696752 40.72976731760012, -74.00547994682357 40.72976882790497, -74.00547820643013 40.729779726842494, -74.00549850309224 40.729781673675014, -74.00550024584994 40.72977077473711, -74.00551570923903 40.72977225893599, -74.0055172366623 40.729762691860216, -74.00552618584773 40.72976355051622, -74.00552827407311 40.72975047143013, -74.00551932488945 40.729749612774285, -74.00552099192161 40.72973917760154, -74.00553602678472 40.72974061949433, -74.00553428640117 40.72975151843271, -74.00555146859814 40.72975316733728, -74.0055532101627 40.72974226839855, -74.00558041520651 40.729744877657545, -74.00562963071398 40.72949417188181, -74.00564395053918 40.72949554625739, -74.00564834461883 40.72946802650026, -74.00563402716696 40.72946665212508, -74.00563644190107 40.72945152796556, -74.00682758969505 40.72956913745493, -74.00672402234832 40.73013812355249)))",M038,4693,M038,M-02,M-02,M-02,M-02,"Hudson St, St Luke's Pl, Clarkson St, 7 Av",102,3,6,10014,M,1.67,False,James J Walker Park,Yes,100005219,PARK,20100106000000.00000,18950812000000.00000,410 HUDSON STREET,DPR,False,James J Walker Park,Y,James J Walker Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M038/,No,66,27,10,{31E223DB-BCA8-4FC7-8E29-85005C6E8B6B} +"MULTIPOLYGON (((-73.87883022499771 40.83748644018883, -73.87880359261537 40.83742657164678, -73.87880349512878 40.83742671562348, -73.87872850416444 40.83726682153717, -73.87872834295284 40.83726680065627, -73.87872286573958 40.83725480121068, -73.87872064769445 40.837250071282185, -73.8787207341374 40.837250131706206, -73.87871443617563 40.837236332209095, -73.87871423556986 40.83723645806737, -73.878515124981 40.837150407073594, -73.87851506803995 40.83715042322255, -73.87840112624988 40.83710119918358, -73.87840278221547 40.83710011853497, -73.87841100269574 40.83709475034845, -73.87851270756941 40.83713929062376, -73.87852896533903 40.837146410848256, -73.87870947504035 40.83722546252561, -73.87872258033225 40.83723120165077, -73.87873651667906 40.83726106049332, -73.87873990628204 40.8372683238438, -73.8788046608648 40.837407063556206, -73.87880960002161 40.83741764775538, -73.8788409735282 40.837484866610104, -73.878835932073 40.83752914493081, -73.87883364752197 40.83754920374664, -73.87882042396305 40.83759663780786, -73.87881278422343 40.83762099535999, -73.87880787670117 40.83763664529959, -73.87879270810461 40.83768500932495, -73.87873490050819 40.837869325696964, -73.87867575329574 40.83805791076982, -73.87865130242189 40.83813587056274, -73.87864715213448 40.83814910436403, -73.87835440110251 40.83860214715418, -73.87829112618697 40.83886903553764, -73.87828471975463 40.838865883350785, -73.87828202711194 40.83886455768316, -73.8783442772004 40.83859920086481, -73.8786368402552 40.838147189868856, -73.87882328938744 40.8375427885479, -73.87882356738011 40.83754248807484, -73.87883022499771 40.83748644018883)))",X148J,5652,X148J,X-06,X-06,X-06,X-06,E. 177 St. and Devoe Ave,206,17,48,10460,X,0.083,False,Strip,No,100004273,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148J/,No,87,32,15,{031A69B5-7F3C-42AF-873F-5503D1CB0356} +"MULTIPOLYGON (((-73.98194017160988 40.77337873710975, -73.98194803013996 40.77366558542642, -73.9817831596034 40.773596154121655, -73.98194017160988 40.77337873710975)))",M051,4750,M051,M-07,M-07,M-07,M-07,"Broadway To Columbus Ave, W. 66 St.",107,6,20,10023,M,0.051,False,Richard Tucker Park,Yes,100004575,PARK,20100106000000.00000,18720608000000.00000,134 COLUMBUS AVENUE,DPR,False,Richard Tucker Square,Y,Richard Tucker Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M051/,No,67,27,10,{4250D42A-6E75-4550-BD22-CB618AF54255} +"MULTIPOLYGON (((-73.85944191946082 40.82199019334706, -73.8601370293812 40.82189152192266, -73.86031476997786 40.82265880327961, -73.85998660947178 40.822702418879736, -73.85961081345243 40.82275659061952, -73.85944259871604 40.821997475594706, -73.85944350463318 40.82199734252488, -73.85944191946082 40.82199019334706)))",X221,6286,X221,X-09,X-09,X-09,X-09,Lafayette Ave. bet. Bolton Ave. and Underhill Ave.,209,18,43,10473,X,1.28,False,Space Time Playground,Yes,100004198,PARK,20100106000000.00000,19630708000000.00000,,DPR/DOE,False,Space Time Playground,Y,Space Time Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X221/,No,85,34,15,{A0B44DF0-2091-4680-8D48-A5C7F9D5371D} +"MULTIPOLYGON (((-73.97963918741115 40.71498948647703, -73.97979135632039 40.715035583398425, -73.97987503162123 40.71506092310856, -73.9797722279086 40.71526098858034, -73.97967605069087 40.715446969343134, -73.97943941948198 40.71537556098366, -73.97963918741115 40.71498948647703)))",M195,5835,M195,M-03,M-03,M-03,M-03,Lewis St. bet. Delancey St. and Broome St.,103,1,7,10002,M,0.245,False,Sidney Hillman Playground,Yes,100004373,PLGD,20100106000000.00000,19480610000000.00000,,DPR/DOE,True,Sidney Hillman Playground,Y,Sidney Hillman Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M195/,No,65,26,7,{3E48CA9D-4DF3-4A9D-9006-1097BFB0CFCC} +"MULTIPOLYGON (((-73.92097520289201 40.643968953374575, -73.92098166987898 40.643967766432354, -73.92098616844865 40.64402150076025, -73.92103256578332 40.644490211968105, -73.92102612320724 40.64449870033347, -73.92097272353001 40.644569057176604, -73.92100583583479 40.64484143091675, -73.92087568426429 40.644849445207456, -73.92012694885852 40.64489554565541, -73.92011771409027 40.64478518971434, -73.92010639765789 40.6446499636079, -73.92011403957846 40.64464309435893, -73.92011433897602 40.64464285052637, -73.92013881259723 40.644622960663845, -73.9201600389989 40.64460570525973, -73.92020633539796 40.644568074108605, -73.92025263292707 40.64453044293951, -73.92029892922066 40.64449281265132, -73.92034522546312 40.64445518144383, -73.92039316555275 40.644418040337015, -73.92044110322465 40.64438089920845, -73.9204890432086 40.644343757160854, -73.92053698313497 40.64430661869518, -73.9205849218289 40.644269477506995, -73.92063286165066 40.644232337200016, -73.92068080023786 40.64419519597156, -73.92072873877174 40.64415805472298, -73.92077667725114 40.644120914354794, -73.92079885729936 40.64410373062991, -73.92082461804272 40.644083773067564, -73.92087255641542 40.644046632659055, -73.92092049355355 40.6440094913291, -73.92097003736292 40.64397128216779, -73.92097520289201 40.643968953374575)))",B376,5384,B376,B-17,B-17,B-17,B-17,"E. 59 St.,Ditmas Ave., Clarendon Rd., Ralph Ave.",317,45,67,11203,B,1.13,False,M Fidler-Wyckoff House Park,Yes,100004644,PARK,20100106000000.00000,19690111000000.00000,5902 DITMAS AVENUE,DPR,True,Fidler-Wyckoff House Park,N,Fidler-Wyckoff House Park,Neighborhood Park,Historic House Park,http://www.nycgovparks.org/parks/B376/,No,58,21,9,{A8479AEE-AD93-4320-9FB0-329C74220914} +"MULTIPOLYGON (((-73.99316195276386 40.71079330523166, -73.9940276316131 40.71065870001429, -73.99407493842948 40.71098971672914, -73.9941343978495 40.711405776464844, -73.99415169161745 40.71152190090687, -73.99364024261497 40.71157508046441, -73.99356016091814 40.71158227559564, -73.99336124003393 40.711600147538455, -73.99328069910469 40.7116073829718, -73.99300891194251 40.711110011092956, -73.99311454836142 40.71107418703603, -73.99296758184738 40.71082352727207, -73.99316195276386 40.71079330523166)), ((-73.99251413846794 40.711277800071095, -73.99261566999303 40.711243369295836, -73.99284495387722 40.71164652983021, -73.9926585841272 40.711663272097724, -73.99257624658985 40.71167066901547, -73.99252664303205 40.71135706654255, -73.99251413846794 40.711277800071095)))",M019,4776,M019,M-03,M-03,M-03,M-03,"Cherry St, Pike St, Monroe St",103,1,5,10002,M,2.61,False,Coleman Playground,Yes,100004339,PARK,20100106000000.00000,19070920000000.00000,166 MARKET STREET,DPR,True,Coleman Playground,Y,Coleman Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M019/,No,65,26,7,{EB9D4A5D-B3E5-4BFE-AB58-7F305BDF29EF} +"MULTIPOLYGON (((-73.9158110343892 40.67888067854638, -73.91583079527211 40.67865644138194, -73.91590091976835 40.67866026761675, -73.91597104427488 40.67866409200785, -73.91606094686189 40.678668996095546, -73.91621420862023 40.678677356517966, -73.91625714493564 40.678829602708205, -73.91607709166529 40.67885021758345, -73.91598830656056 40.678860382640096, -73.91588221394363 40.67887252961693, -73.9158110343892 40.67888067854638)))",B561,12286,B561,B-16,B-16,B-16,B-16,Saratoga Ave. bet. Fulton St. and Hull St.,316,41,73,11233,B,0.181,False,,,100024467,PARK,20160222000000.00000,20160119000000.00000,1965 FULTON STREET,DPR,False,BSCAH Urban Farm,,Saratoga Farm,,Garden,,No,55,25,8,{A09AC67B-8F67-4A1C-97B2-DEEA48645474} +"MULTIPOLYGON (((-73.90080882118195 40.8309896258089, -73.90080565839462 40.831041145820706, -73.90080981642787 40.83109262440246, -73.90082124876821 40.83114346358465, -73.9008398199741 40.83119307252377, -73.90084070752248 40.831195746857006, -73.90084099625591 40.83119849631693, -73.9008406756184 40.83120124435245, -73.9008397563966 40.83120391262969, -73.90083826359833 40.83120642642912, -73.90083623882116 40.83120871644829, -73.90083374025356 40.831210717901556, -73.90083083555642 40.8312123741159, -73.90082760897353 40.831213638338006, -73.9008241494722 40.8312144764255, -73.90082055430372 40.83121486414865, -73.90081692425602 40.831214790788174, -73.90081336128371 40.83121425823272, -73.9007154499205 40.83119616317891, -73.90061596244436 40.83118400544919, -73.90051551994387 40.83117786121688, -73.90051181682136 40.83117750232681, -73.90050825075056 40.83117666629243, -73.90050492483812 40.831175377516, -73.90050193979633 40.83117367570635, -73.90049938328319 40.831171609565786, -73.90049733226779 40.8311692403944, -73.90049584591974 40.831166640282966, -73.90049496799251 40.8311638840103, -73.90049472681535 40.83116105444643, -73.90049512700507 40.83115823534135, -73.90049615895202 40.831155510432886, -73.90049779052505 40.83115296073778, -73.90049997300491 40.83115066095516, -73.90050264345518 40.83114867946829, -73.90077856648873 40.83097659393114, -73.90078120400894 40.83097521934319, -73.90078411247903 40.83097420698733, -73.9007872064942 40.83097358740692, -73.90079039473929 40.83097337943376, -73.90079358117718 40.83097358838827, -73.90079667571455 40.83097420878994, -73.90079958353601 40.83097522164679, -73.90080222051218 40.83097659717015, -73.90080450964173 40.83097829567206, -73.90080638105405 40.830980265764175, -73.90080778266974 40.830982450670525, -73.90080867072147 40.83098478461738, -73.9008090204135 40.83098720004622, -73.90080882118195 40.8309896258089)))",X031,5638,X031,X-03,X-03,X-03,X-03,"E. 169 St., Boston Rd., Clinton Ave.",203,16,42,10456,X,0.12,False,McKinley Square,Yes,100004213,PARK,20100106000000.00000,18820209000000.00000,,DPR,True,McKinley Square,Y,McKinley Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X031/,No,79,32,15,{368EF2A5-5F30-4F61-B083-6E681F038738} +"MULTIPOLYGON (((-73.93612549033715 40.68122671769393, -73.9368135993773 40.681147468728234, -73.93686875206008 40.681419034720854, -73.93688578749575 40.681417072840155, -73.93693896617971 40.68167891575371, -73.93640172711065 40.6817412067189, -73.93636384514481 40.68154391638923, -73.93619617945787 40.68156426521755, -73.93612549033715 40.68122671769393)))",B215,6089,B215,B-03,B-03,B-03,B-03,"Decatur St., Macdonough St. bet. Lewis Ave. and Marcus Garvey Blvd.",303,36,81,11233,B,1.5,False,Decatur Playground (PS 35),Yes,100004542,PARK,20100106000000.00000,19420923000000.00000,,DPR/DOE,False,Decatur Playground,Y,Decatur Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B215/,No,56,25,8,{367BAF82-747A-46F3-9E74-EA99378D4F2B} +"MULTIPOLYGON (((-73.93854175927676 40.627617927057415, -73.9392485926319 40.627574777893095, -73.93948187060798 40.62969437794621, -73.93877244178253 40.62973497419117, -73.93854175927676 40.627617927057415)))",B002,5030,B002,B-18,B-18,B-18,B-18,"E. 38 St., E. 38 St. bet. Ave. I and Ave. J",318,45,63,11210,B,3.557,False,Amersfort Park,Yes,100004500,PARK,20100106000000.00000,19050624000000.00000,1041 EAST 38 STREET,DPR,True,Amersfort Park,Y,Amersfort Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B002/,No,41,21,9,{EA1C11AA-1192-4BAF-8559-393179A0E27D} +"MULTIPOLYGON (((-73.95752709071726 40.68052141751149, -73.95762464940502 40.68025305696443, -73.9576427054727 40.68020338943618, -73.95772752925454 40.68022128773717, -73.95761201677703 40.68053903677508, -73.95752709071726 40.68052141751149)))",B479,5270,B479,B-03,B-03,B-03,B-03,Lefferts Pl. between Classon Ave. and Franklin Ave.,303,36,79,11238,B,0.068,False,Lefferts Pl Block Association,No,100004543,PARK,20100106000000.00000,20021120000000.00000,162 Lefferts Pl,DPR,False,Lefferts Pl Block Association,N,Lefferts Pl Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B479/,No,57,25,8,{20E01F56-FE3A-4E34-B5E8-9F80CB15EC06} +"MULTIPOLYGON (((-73.94363368593727 40.77872759852251, -73.94344836563326 40.77875848320428, -73.94339851054288 40.77864898015576, -73.94324449335154 40.778310694623926, -73.94313455464624 40.77805814315112, -73.94304069673284 40.777779040994055, -73.94299489398114 40.777634012232525, -73.94508475721656 40.778516854917335, -73.9446723870018 40.77908095833789, -73.94389262698634 40.77877329841311, -73.9437816421916 40.77873871636096, -73.94370311987603 40.77872754691705, -73.94363368593727 40.77872759852251)), ((-73.94361353877667 40.778816200796, -73.94369843798805 40.778814750175094, -73.94380086509508 40.778835402765985, -73.94460776814209 40.779169353015206, -73.94427252792448 40.77962793693572, -73.94374404809679 40.77940791709029, -73.94348484305394 40.77883860168179, -73.94361353877667 40.778816200796)))",M286,4662,M286,M-08,M-08,M-08,M-08,"E. 90 St., York Ave., FDR Dr.",108,5,19,10128,M,4.35,False,Asphalt Green,No,100004684,PLGD,20100106000000.00000,19890118000000.00000,1712 YORK AVENUE,DPR,False,Asphalt Green,Y,Asphalt Green,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M286/,No,76,28,12,{DDB3387A-5277-4A5A-BC94-72101397D58F} +"MULTIPOLYGON (((-73.77247196526618 40.61557165932934, -73.7724762953662 40.61557158235028, -73.77314270694743 40.62306757502976, -73.76798512686777 40.625097578444944, -73.76706991783179 40.61566721330431, -73.77247196526618 40.61557165932934)), ((-73.76572019586463 40.61463028415, -73.76575227302334 40.614592653580885, -73.76574057765637 40.614592656762646, -73.7657339486903 40.614592202896624, -73.76572848395723 40.61459100396796, -73.76572404638306 40.614589395592894, -73.765718171821 40.61458611291608, -73.7618967960902 40.61193197176051, -73.76173713308266 40.61182090521118, -73.762312103735 40.61131662307518, -73.76246135969376 40.611183936749136, -73.76271869584332 40.61095670038592, -73.76274615590731 40.61095607357169, -73.76278587746073 40.61095722717882, -73.76282128855117 40.610960328717766, -73.76285294071404 40.610964795790544, -73.76288430243946 40.610970857984995, -73.76292546877454 40.61098143491197, -73.76295914067802 40.61099247454757, -73.76300052579602 40.61100933215719, -73.76303431065865 40.61102617318292, -73.76305267141869 40.61103905161399, -73.76306642757713 40.611048527374024, -73.76313600818474 40.61109430216209, -73.76319720500709 40.6111317775114, -73.76323194938391 40.611151976710396, -73.76324254751735 40.61115798883016, -73.76328155068379 40.61118015722815, -73.76331997776973 40.61119917439162, -73.76336290937651 40.61121750831259, -73.7634044521678 40.61123262178448, -73.76344495860228 40.61124508736735, -73.76347442507006 40.61125283938637, -73.7635172218068 40.61126223436528, -73.76355527475384 40.611268814436066, -73.76360603502401 40.61127509824135, -73.76363932343511 40.61127771428209, -73.7636737526352 40.61127918899251, -73.76368337127401 40.61128018493695, -73.76378499245766 40.61129070572634, -73.76407612077533 40.611328601569596, -73.76425846476755 40.6113463017831, -73.76432377855902 40.61135152548397, -73.76440698440088 40.61136157931347, -73.76458532799384 40.611377464356394, -73.7646605867433 40.611379968837994, -73.76473586111457 40.61137871271201, -73.7647962899791 40.611376237467496, -73.7648713487032 40.61137246204449, -73.7649126724335 40.61137239348013, -73.76506668898273 40.611389106930325, -73.7651403576646 40.61139787819978, -73.76518847797485 40.61140360298939, -73.76521234424875 40.61140649199633, -73.76523573370724 40.61140854703935, -73.76524434234982 40.6114094651461, -73.76525060039197 40.611410131707906, -73.7652530290032 40.611410377107894, -73.7653029073392 40.61141551199435, -73.76535640591283 40.611420746102965, -73.7654036831387 40.61142563339463, -73.76543144601236 40.611429338079304, -73.76545311504672 40.61143238914925, -73.76548544449808 40.61143758450187, -73.76551634079422 40.611443064189025, -73.7655519107405 40.611451174827515, -73.76566686280964 40.61138322602604, -73.76571752955553 40.61135327610539, -73.76577217974898 40.611407814281485, -73.76604910478756 40.611684171974474, -73.76594811325862 40.61174386836145, -73.76581362855728 40.61182346195276, -73.76592434894498 40.61193158111276, -73.76598035578446 40.611986274136754, -73.76619889158647 40.612199674863774, -73.76610558483354 40.612255024878046, -73.76638289229273 40.61252581546975, -73.76587842395071 40.612823378628896, -73.76587578571927 40.61282493476445, -73.76584996591315 40.61301162660232, -73.76597802886332 40.61293622084523, -73.76603151362266 40.612982508611225, -73.76607536625272 40.613020461308736, -73.76612043474526 40.61305946467343, -73.76616164497888 40.61309513003244, -73.7662049511164 40.613132608792704, -73.76624644772302 40.61316852144698, -73.76629427201573 40.6132099113329, -73.76633589595795 40.61324593317673, -73.76637837524773 40.6132826978752, -73.76641898727416 40.61331784502379, -73.76647931987084 40.61337005843539, -73.76654128190336 40.6134236817432, -73.76681359499482 40.613237470264195, -73.76683694537375 40.6132576776685, -73.76691006559862 40.613320959020626, -73.76702763435941 40.613422705362346, -73.76728900178863 40.613648897168396, -73.76740162351467 40.61374636192011, -73.76754305869505 40.6136511114173, -73.7680049073133 40.61333991198518, -73.7679345096921 40.613300799694755, -73.76815793245585 40.61315025334399, -73.76821447746018 40.61319847608564, -73.7682819344142 40.613153022150684, -73.76848430591302 40.61301665830846, -73.7687541340746 40.61283484079743, -73.76930538604202 40.61330496310179, -73.76963089903771 40.61358256584393, -73.76995526360999 40.613859185582356, -73.76998031594636 40.61385323282317, -73.77004171053167 40.61384646575258, -73.77007688499964 40.61384538704678, -73.77010548266487 40.61384965149435, -73.77014369064364 40.61385815230709, -73.77020093038159 40.61387472743358, -73.77024757181306 40.613887443314695, -73.77027667186242 40.613891325100454, -73.7703052787722 40.613892912258486, -73.77034456252592 40.61390679758662, -73.77037917276971 40.61391413305885, -73.77041931937929 40.613917655052475, -73.77045896626765 40.61392079511248, -73.77048556682404 40.613921995496305, -73.77051619984547 40.61391823213093, -73.77055802139246 40.61391027303607, -73.77063560396233 40.61388425953927, -73.77074370932316 40.613848012078684, -73.77100344097052 40.61384661168961, -73.77127027193993 40.613882194956744, -73.77182957004551 40.61392927377453, -73.77209795404659 40.61388469625052, -73.77249132291286 40.613819357217835, -73.7727651818376 40.61387896699928, -73.77290985832863 40.613896194472126, -73.77291620046658 40.61409107680094, -73.77220458240491 40.614590626681505, -73.76636764528118 40.614592475935765, -73.76626101025084 40.6146849870243, -73.76572019586463 40.61463028415)), ((-73.75941763955376 40.61078214813942, -73.7557031394058 40.610385465868525, -73.75561851572584 40.610770832175035, -73.75514962853372 40.61071753362315, -73.75528661377675 40.610093731908215, -73.7555841427169 40.609992133787415, -73.75471963881998 40.609823676189144, -73.75484438842038 40.60945821934672, -73.7562994438741 40.609741527264, -73.75615818193072 40.61006509963819, -73.7561997943809 40.610068587390955, -73.7567070172406 40.61011110699403, -73.7567197412656 40.61007666723829, -73.75721332323526 40.61013818472352, -73.75831661354148 40.61026152420161, -73.75955992145808 40.610387292011005, -73.75941763955376 40.61078214813942)))",Q309,6343,Q309,Q-14,Q-14,Q-14,Q-14,Mott Basin to the City Line,414,31,113,"11096, 11430, 11691",Q,149.54,False,Jamaica Bay Park,No,100000114,PARK,20110712000000.00000,19540114000000.00000,,DPR,Part,Jamaica Bay Park,N,Jamaica Bay Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q309/,Yes,"23, 31",10,5,{F9A74B6F-C6B9-4332-81A8-ED8126BC829C} +"MULTIPOLYGON (((-73.74480569872354 40.71601393803998, -73.74478666317472 40.71589525942297, -73.74501056751365 40.71595507332548, -73.74480569872354 40.71601393803998)))",Q208,5892,Q208,Q-13,Q-13,Q-13,Q-13,"Jamaica Ave., Hempstead Ave. bet. 212 Pl and 213 St.",413,27,105,11429,Q,0.074,False,Litchhult Square,Yes,100000405,PARK,20090423000000.00000,19331212000000.00000,,DPR,False,Litchhult Square,Y,Litchhult Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q208/,No,33,14,5,{44A9AB77-4FE7-45A3-8F76-73B1775A3CC0} +"MULTIPOLYGON (((-73.92183130698453 40.68765103599328, -73.92188947094668 40.68764439997901, -73.92194326183208 40.68791728586659, -73.92185411301115 40.687927457900514, -73.92180032248237 40.687654571971656, -73.92183130698453 40.68765103599328)))",B499,5284,B499,B-03,B-03,B-03,B-03,Madison St. between Ralph Ave. and Howard Ave.,303,41,81,11221,B,0.057,False,Madison Community Greenthumb,No,100004076,PARK,20100106000000.00000,20021120000000.00000,894 Madison Street,DPR,False,Madison Community Greenthumb,N,Madison Community Greenthumb,Greenthumb,Garden,http://www.nycgovparks.org/parks/B499/,No,55,25,8,{EE66CE51-2049-4BED-BF9F-1975592CAED1} +"MULTIPOLYGON (((-73.99482484180102 40.700973904097886, -73.99496202071705 40.70101197932769, -73.9948834461269 40.70117530531793, -73.99486730181518 40.70120886217694, -73.99455939938933 40.70184885715808, -73.9939208769075 40.701662541714654, -73.99358184258416 40.70156361288271, -73.99349397379619 40.70153797307693, -73.99362170298444 40.70150953395518, -73.99374773567654 40.70147700717586, -73.99374819124742 40.70147676946545, -73.9937688748648 40.701471103665554, -73.99383755805682 40.70145101153937, -73.99387544194211 40.7014380398862, -73.99394330895589 40.70141437172053, -73.99399138089301 40.701397157352595, -73.99414079105604 40.701344671513475, -73.99428765908291 40.7012818997066, -73.99442989849709 40.70121323183619, -73.99456710222557 40.701138864211636, -73.99469887621544 40.701059012055055, -73.99482484180102 40.700973904097886)), ((-73.99314269733529 40.70120132151435, -73.99344761464981 40.70128152356163, -73.9934370597366 40.70130979273158, -73.99315310085471 40.701392407164946, -73.99313596140077 40.70139435575242, -73.99311863759553 40.70139402332963, -73.9931016476994 40.70139142163414, -73.9930855040498 40.701386626339975, -73.9930706905786 40.70137978335947, -73.9930576497977 40.70137109623561, -73.99304677569941 40.70136082794215, -73.99303839245938 40.701349284673476, -73.99303275325403 40.701336814043025, -73.9930300272464 40.70132378887337, -73.99303029485415 40.70131060179275, -73.99303701136859 40.70129502334276, -73.99307063294964 40.70121704463957, -73.99307518423674 40.70121172829096, -73.99308078144188 40.70120702705465, -73.99308728493078 40.70120305708828, -73.99309453022295 40.70119992013954, -73.99310233745827 40.701197693641646, -73.9931105078472 40.70119643431474, -73.99311883786991 40.701196173664584, -73.99312711690973 40.70119691708162, -73.99313513671893 40.70119864834418, -73.99314269733529 40.70120132151435)), ((-73.99419479874544 40.70095230768374, -73.99425970957728 40.70081704683503, -73.99442174579117 40.70086202186838, -73.99455464695724 40.700898910502104, -73.99459045432371 40.7009088484398, -73.9943652202153 40.70099052307514, -73.99413845821617 40.701069709977, -73.99419479874544 40.70095230768374)))",B223G,4833,B223G,B-02,B-02,B-02,B-02,"Columbia Hts., Hicks St., bet. Middagh St. and Vine St.",302,33,84,11201,B,1.371,False,Hillside Dog Park,Yes,100004195,PARK,20100106000000.00000,19460501000000.00000,4 VINE STREET,DPR,True,Hillside Dog Park,N,Hillside Dog Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B223G/,No,52,26,7,{11C07592-A07B-4D38-8EAF-4E0F4C236E43} +"MULTIPOLYGON (((-73.93920593381904 40.81262385640234, -73.93933753147495 40.81267934954147, -73.93960582905687 40.81279249022915, -73.93943149149217 40.81303174471001, -73.93911114048291 40.81289665263038, -73.93903159525931 40.812863109384544, -73.93920593381904 40.81262385640234)))",M131,6597,M131,M-10,M-10,M-10,M-10,"W. 134 St., Lenox Terrace Pl.",110,9,32,10037,M,0.29,False,Hansborough Recreation Center,No,100003783,PARK,20100106000000.00000,19250601000000.00000,35 W. 134 STREET,DPR,True,Hansborough Recreation Center,N,Hansborough Recreation Center,,Buildings/Institutions,http://www.nycgovparks.org/parks/M131/,No,70,30,13,{A34BECC6-00B4-4031-B33D-0E7879BC4DF5} +"MULTIPOLYGON (((-73.82175561954647 40.71727078025348, -73.82151745009007 40.717263365658795, -73.82080896085759 40.71722329004572, -73.81985565735106 40.71725792725569, -73.81952623366321 40.717264471335206, -73.81951114266789 40.717261796570284, -73.81900592199071 40.71675694902027, -73.81874642377488 40.71664783094753, -73.81842206814562 40.716508946243174, -73.81821471998737 40.716330722860896, -73.8181137283647 40.71624803861841, -73.8180332876156 40.71618218042114, -73.81797960581065 40.7161458913698, -73.81791397356943 40.71611156992231, -73.81777384728574 40.71605328858866, -73.81766858487151 40.716032219237604, -73.81758214746586 40.71601629002675, -73.81746110439897 40.71600556937991, -73.81726745314968 40.715981573296254, -73.81653070451193 40.71595671265838, -73.81652799141663 40.71568560373406, -73.81723710674015 40.71569462824734, -73.81748265224812 40.7157160744715, -73.81765902162911 40.71573477843014, -73.8178388348906 40.715758751961836, -73.81794348475121 40.7157669347612, -73.8205792882132 40.716146641287175, -73.82080199913948 40.71618451069962, -73.8210263313152 40.716216361377455, -73.82125200429799 40.716242153253354, -73.82147873407159 40.71626185436135, -73.82170623896604 40.71627543994526, -73.82193423374058 40.71628289244965, -73.82216243194624 40.7162842033247, -73.82239054830038 40.71627937032813, -73.82261829631304 40.71626840022322, -73.82308609743774 40.71619993821072, -73.82322844801298 40.716167081968045, -73.82363760622557 40.717324626894786, -73.8235567105145 40.71732927655649, -73.82328419477736 40.71733880022945, -73.8230114277327 40.71734220479345, -73.82273864853667 40.71733948701271, -73.82246609277817 40.71733064995189, -73.8222302265905 40.71730444309866, -73.8219933059638 40.7172844782811, -73.82175561954647 40.71727078025348)), ((-73.75190541139648 40.728486877130955, -73.75191121882733 40.72848368021762, -73.75197515795541 40.72850750683606, -73.75202676456618 40.72853305385476, -73.75207741426213 40.72855969021067, -73.75212706333743 40.72858739149718, -73.75218128207099 40.72862007252419, -73.75218687955837 40.72862399189369, -73.75221073942913 40.72864069911611, -73.75224731039563 40.72866818129757, -73.75224990689858 40.72867025355987, -73.75227761158366 40.728692367611686, -73.75230935222267 40.728719417041034, -73.75233989917443 40.72874724103612, -73.75236925252885 40.728775815284315, -73.75239734971203 40.728805095526816, -73.75242418721882 40.72883506914985, -73.75244972143122 40.72886568743291, -73.752473915743 40.728896925984216, -73.75249676317432 40.72892875147076, -73.75251822716884 40.728961125993216, -73.7525382924871 40.72899400899655, -73.75255693670023 40.72902738332355, -73.75257413158417 40.72906119848562, -73.75258649193214 40.729085812629684, -73.75259549874382 40.72910373506502, -73.75261685882496 40.72914627252543, -73.75263810145623 40.72918856839202, -73.75265958496773 40.729231352849375, -73.75267649286776 40.72926501699302, -73.7526765363383 40.729265105336566, -73.75268213360384 40.72928218386542, -73.75268030765245 40.7292884114878, -73.75267735113346 40.72929849177448, -73.75263984364365 40.72932417396004, -73.75260937644182 40.729342360987815, -73.75256452094904 40.72936912328501, -73.75252009369129 40.729395632540644, -73.75247566639484 40.729422142679525, -73.7524312402468 40.729448652803775, -73.75238207387353 40.72947975073249, -73.75233290151228 40.72951085493088, -73.75228372796487 40.72954194739908, -73.7522345614338 40.72957305066745, -73.75218015631125 40.72960618860415, -73.75212574403217 40.72963932649973, -73.75207133877454 40.72967247158876, -73.75203528530064 40.729694434891016, -73.75201693348967 40.72970560944791, -73.75196252812717 40.72973875358475, -73.7519070841568 40.72977105257874, -73.75185163893218 40.729803356045856, -73.75179572861742 40.72983592953794, -73.75174075780838 40.72986795841751, -73.75168732745398 40.729899232361525, -73.75163389588579 40.72993050087507, -73.75158047253358 40.729961774784556, -73.75152704206904 40.729993037847734, -73.75147361863664 40.730024306304315, -73.75141661764854 40.73005784891071, -73.75135962368199 40.73009139780756, -73.75130261547665 40.730124940341845, -73.75124562852132 40.73015848289379, -73.751197773556 40.73018649079057, -73.75115277029435 40.73021099283303, -73.75110707596461 40.730237955364224, -73.75106159630691 40.730265114652994, -73.75101593257973 40.7302921042295, -73.75096431341102 40.73032287026307, -73.75091407988228 40.730352818904294, -73.75088627057856 40.730369392104244, -73.75086108319333 40.730384408581834, -73.75080945559536 40.73041517452768, -73.75075386775202 40.73044829302095, -73.75069816779782 40.73048130408378, -73.75064265298404 40.73051449021985, -73.75058695293963 40.730547495825505, -73.75053908140272 40.73057598698733, -73.75049142323827 40.730604704620106, -73.75044376389621 40.7306334096234, -73.75039591457595 40.73066194129683, -73.7503482775791 40.730690663418734, -73.75030071511456 40.730719386583004, -73.75025314550645 40.73074810971214, -73.7502049637011 40.73077624075764, -73.75015741527825 40.730804974699296, -73.75010985971187 40.730833708605765, -73.75006230526797 40.730862447898076, -73.75001489271868 40.730890271658055, -73.74996775969109 40.730918359855416, -73.74992071741188 40.730946544585336, -73.74987230323494 40.7309734322802, -73.74982498015522 40.731001346207435, -73.74979073273884 40.73102239060553, -73.74975648413407 40.731043430488214, -73.74972105632013 40.73106577083868, -73.74968563674848 40.73108811659922, -73.74965183565499 40.73111196251854, -73.74961634775906 40.731134521530535, -73.74961622787401 40.73113460771902, -73.74958292457677 40.731158278200155, -73.74956610558534 40.73117022563713, -73.74954930080995 40.73118216860001, -73.74951662120202 40.731206813871914, -73.74948394038617 40.731231459131884, -73.74944030131097 40.7312639789298, -73.74939666929579 40.73129649872648, -73.74935303842183 40.73132901850906, -73.74930939919852 40.73136154365993, -73.74928827225507 40.731377288141836, -73.74926576705558 40.73139406340658, -73.74921962393968 40.73142819138571, -73.74917348786224 40.73146232386421, -73.74912735293819 40.731496451824114, -73.74908120968394 40.731530578846794, -73.74903477487278 40.73156541391846, -73.7489883483199 40.73160024358627, -73.74894191461581 40.7316350732197, -73.74889087156309 40.731672950021164, -73.74888145167752 40.7316799975977, -73.74885010071964 40.73170345239892, -73.7488333821158 40.731716018599215, -73.74881273638516 40.731731545218786, -73.74876322630641 40.731768762530635, -73.74871977781385 40.73180141124364, -73.74868053015093 40.7318313378557, -73.74864128247656 40.73186125815075, -73.74860698420684 40.73188740708739, -73.74857674851256 40.73191046081929, -73.7485758877894 40.73191111721425, -73.74855797670777 40.73192470375244, -73.74855258472049 40.73192873707834, -73.74851169843322 40.73195932012988, -73.74846061691906 40.731997533447476, -73.74840953651989 40.73203574944634, -73.74837102364195 40.732064754533184, -73.74833226642914 40.73209356276152, -73.74829378299026 40.732122591300104, -73.74825529949408 40.732151626129244, -73.74821020876652 40.73218641878011, -73.74816492790976 40.7322210768212, -73.74814829129909 40.73223380519317, -73.74811965293159 40.73225573305618, -73.74807438620984 40.73229038478886, -73.74802527684653 40.73232722624503, -73.74797618043006 40.732364073111555, -73.74792707804039 40.73240091994403, -73.7479023042501 40.732419505407506, -73.74788740885664 40.73243068236948, -73.74784774674353 40.73246044389624, -73.74780784145361 40.73249001486865, -73.74776823002261 40.73251981610144, -73.74772107540025 40.7325555540794, -73.74767391956398 40.73259128663225, -73.74762676365667 40.732627024568686, -73.7475875671988 40.732656613227235, -73.74754332510621 40.7326900134838, -73.74750916113307 40.73271579677891, -73.74747438224951 40.73274202176727, -73.7474394924409 40.732768146544984, -73.74740182521417 40.7327977556038, -73.74736392312649 40.732827166922895, -73.7473291854935 40.73285403402274, -73.74732659127254 40.73285604007402, -73.74732546596482 40.732856847165046, -73.74730229509646 40.73287345759153, -73.74728637166895 40.73288471056412, -73.74724663495422 40.73291277515501, -73.74720689704623 40.73294083342594, -73.74716716737078 40.732968897104286, -73.74712105993895 40.733002720845654, -73.74707496075033 40.73303654368613, -73.7470288532488 40.73307036108676, -73.7469851651736 40.73310361646233, -73.74698351253744 40.733104873547774, -73.74694482631212 40.73313431002093, -73.74690281218285 40.73316628671474, -73.74685061211177 40.73320117036657, -73.74682139246596 40.73322070216676, -73.74679841790501 40.73323605400756, -73.74675630022651 40.733258485894964, -73.74675464912399 40.733257779864665, -73.74673444701787 40.7332491508555, -73.74674752378174 40.73320326521692, -73.74676331714751 40.73316834117805, -73.74677762389031 40.73313303745389, -73.7467904473515 40.73309740988409, -73.74680176375126 40.73306148633265, -73.74681156699826 40.73302531271279, -73.74681984162353 40.73298891060311, -73.74682658743436 40.73295233133271, -73.7468317165445 40.73290349884408, -73.74683484302827 40.73285456649792, -73.746835960776 40.732805585610144, -73.7468350826257 40.73275660573713, -73.74683220131138 40.73270767098797, -73.74682246114544 40.73263222899826, -73.74681928458602 40.73260461051734, -73.74685598528423 40.7325823522032, -73.74689878117937 40.7325563971652, -73.74693975656355 40.73251947797975, -73.74698072480977 40.732482556062415, -73.74702170008604 40.732445641349955, -73.74706266705086 40.732408721201466, -73.74710364226024 40.73237180015596, -73.74714664232302 40.732333159061525, -73.74718964115563 40.732294517047755, -73.7472326399383 40.732255875017714, -73.74727563869166 40.73221722756836, -73.74731366258446 40.73218339773155, -73.7473516829078 40.73214956247126, -73.7473897055601 40.732115727203436, -73.74742772817376 40.732081891922896, -73.74746574956848 40.73204805572653, -73.7475054630768 40.73201252126019, -73.74754518368988 40.731976975089, -73.74758489713734 40.73194143429138, -73.74762461764516 40.731905893495465, -73.74766394485134 40.73187072913843, -73.74770326489629 40.731835569254756, -73.74774259320327 40.731800404873155, -73.74778192026449 40.73176524587835, -73.74782124731148 40.731730079665915, -73.74786004015796 40.73169561106757, -73.74789882467789 40.73166114243791, -73.74793761744759 40.731626672912604, -73.74797641017368 40.73159220427462, -73.74801520286309 40.73155773472285, -73.74806003148417 40.73151766367156, -73.7481048446862 40.73147758626537, -73.74814967320292 40.731437514278234, -73.74819449458346 40.73139743685487, -73.74823671468921 40.731359360968, -73.74827892764415 40.731321285049916, -73.74832114767723 40.73128320282815, -73.74836336645444 40.73124512689165, -73.74840277434988 40.73121001828889, -73.7484421822276 40.731174903368924, -73.74848159714254 40.731139794754355, -73.7485210049134 40.7311046861106, -73.74856108737858 40.731068953971146, -73.74860116264722 40.731033235309646, -73.74864123792385 40.730997503126446, -73.74868131904915 40.73096177814604, -73.74872139421606 40.73092605223812, -73.74875838847997 40.73089207919476, -73.74879538980866 40.730858106154884, -73.74883238399713 40.73082413308743, -73.74886937814782 40.73079016000791, -73.74890637226083 40.73075618691639, -73.74894353093842 40.73071968463319, -73.74898068957525 40.73068318233782, -73.74901784104851 40.73064668541779, -73.74905940116044 40.73060286882518, -73.74909268222181 40.73056967462926, -73.74912597151597 40.7305364858446, -73.74915925961693 40.73050329074411, -73.74919254886171 40.73047009743739, -73.74923163084554 40.73043296348802, -73.74927071271802 40.730395847535284, -73.74930979459097 40.73035871986255, -73.74934888352635 40.730321591291315, -73.74939167818428 40.73028367381855, -73.74943447989942 40.730245755444614, -73.74947728152178 40.73020784876113, -73.74952007487019 40.73016992583445, -73.74956286933671 40.73013200739675, -73.74960528546615 40.73009615749735, -73.7496476956143 40.73006031207173, -73.74969011167273 40.7300244567377, -73.74973252174993 40.729988605877466, -73.74977493059434 40.72995275589942, -73.74982002644097 40.72991566363371, -73.74986511513494 40.7298785713348, -73.74991021088113 40.729841479033446, -73.74995529947809 40.72980438579828, -73.74999289022823 40.72977452899179, -73.75003047382197 40.72974467756052, -73.75006806450811 40.7297148198287, -73.7501056480345 40.72968496837265, -73.75015328557821 40.72964804358405, -73.75020092185834 40.729611125976994, -73.75024855929647 40.729574201148566, -73.75029619547102 40.72953728350173, -73.75034038218132 40.72950415131365, -73.75038456884424 40.72947102000895, -73.75042875546322 40.72943788868716, -73.75047294202146 40.7294047618508, -73.75051695786945 40.729372006539066, -73.7505609653645 40.729339257496015, -73.750604979922 40.72930650755082, -73.75065579892613 40.72927018558323, -73.75070662499412 40.72923385910593, -73.75075745217356 40.72919753711104, -73.7508082710317 40.7291612096726, -73.75086030938856 40.729124801102635, -73.75091484364668 40.72908663830721, -73.75096437880912 40.72905198927919, -73.75101285309013 40.72901992870961, -73.75106134385298 40.72898787986185, -73.75110981091485 40.72895582553935, -73.75114761432506 40.72893215173143, -73.75118541775207 40.72890846620447, -73.75123506204298 40.72887970844679, -73.75128470749834 40.728850944366634, -73.7513343446012 40.72882218655059, -73.75138398876358 40.72879342872841, -73.75142751883543 40.728769767192844, -73.7514710559787 40.728746105656086, -73.75151458478484 40.728722449487954, -73.75156771573656 40.72869219255382, -73.75162083835738 40.72866193467667, -73.75166815156064 40.728632210857164, -73.751715464725 40.728602486117616, -73.75176277074488 40.72857276134319, -73.75181009092384 40.72854303748034, -73.75185756646299 40.72851322388157, -73.75190541139648 40.728486877130955)), ((-73.74633870806382 40.732456483092044, -73.74646864489608 40.73240089427825, -73.74644772066232 40.732440567989755, -73.74642085056583 40.73247236443311, -73.74639271736893 40.732503528630495, -73.74636334605698 40.73253402731706, -73.74633276396948 40.73256383083524, -73.7463010031882 40.73259290773676, -73.7462680933999 40.732621233772356, -73.74622572918116 40.732655924493535, -73.74618337201761 40.732690616115164, -73.74614101481343 40.73272530682049, -73.74609865164273 40.73275999839753, -73.74605629432969 40.73279469447441, -73.7460105927092 40.732830947348575, -73.74596491116696 40.73286719934829, -73.7459192153694 40.732903451298355, -73.74587353373113 40.73293970236099, -73.74582784491294 40.73297596059363, -73.74578215725285 40.733012212507056, -73.74573333448173 40.73304886271021, -73.74568451049711 40.73308550658633, -73.74563569472483 40.733122155862944, -73.74558687181327 40.7331588006004, -73.74553804883077 40.7331954498195, -73.74548922463141 40.73323209361212, -73.74544040153806 40.733268743689955, -73.74539158551792 40.73330538745907, -73.74534276113332 40.73334203749258, -73.745293937903 40.73337868120422, -73.74523902235055 40.73341975274167, -73.74512754953066 40.73350054223688, -73.74509306995775 40.73352553706939, -73.74504238277355 40.73356227290284, -73.74499170382698 40.73359900693105, -73.74494101771486 40.733635742722115, -73.74489034577667 40.733672472218586, -73.74483965124536 40.733709213349286, -73.74478897207189 40.73374594818808, -73.74473828457651 40.733782677583, -73.7447137266442 40.733800482094715, -73.74468760529123 40.7338194123768, -73.7444599792563 40.73398843964237, -73.74423508573955 40.73415956981768, -73.7440129473474 40.734332773251865, -73.74379361506476 40.734508029362416, -73.74357711149713 40.734685309399254, -73.7433722468881 40.73485690391954, -73.74334745420583 40.73487767480202, -73.74312066246068 40.735071985839, -73.74289676704677 40.7352682425957, -73.74267578829351 40.735466393805105, -73.74245774994766 40.73566642332771, -73.74224269588935 40.735868313268, -73.74218052356103 40.7359275691409, -73.74200521870091 40.736096972509486, -73.74183211821855 40.73626766828267, -73.74166122094047 40.73643965556714, -73.74149254947187 40.73661290740801, -73.74147559188054 40.73663696252882, -73.74143860927329 40.736675913076056, -73.74140162548086 40.736714852802514, -73.74136418869493 40.73675428047736, -73.74131065984007 40.73680062034034, -73.74123715519 40.736816521228555, -73.7411728592397 40.73683045263643, -73.74110856205759 40.736844389408745, -73.74104426605699 40.736858319844266, -73.7409818323977 40.736871912238286, -73.74091939991433 40.73688550009854, -73.74085695908339 40.736899096911316, -73.74079452655253 40.73691268380338, -73.7407288530811 40.736927044108604, -73.74066317960234 40.736941398973315, -73.74059750725462 40.736955760106746, -73.74053889938199 40.73696821993023, -73.74048029155404 40.73698066261436, -73.74042168366215 40.73699311607463, -73.74039119602327 40.73699959677098, -73.74034988782023 40.73699906509322, -73.74035991802897 40.73697891444708, -73.74037235137014 40.73695393707264, -73.74041031954383 40.7369110871725, -73.74044640000146 40.73687051039893, -73.74046031824638 40.7368548584575, -73.74048248278645 40.73682993271867, -73.74051520790093 40.73679152309741, -73.74054794124369 40.73675311888835, -73.74058066509537 40.73671471014596, -73.74061339007562 40.736676305899216, -73.7406461162231 40.7366378962426, -73.74067731097865 40.736601467855756, -73.74070851282775 40.73656503317276, -73.74073970753611 40.73652859936562, -73.74077091050086 40.73649216466801, -73.74081065373706 40.736448458641334, -73.7408695627821 40.73636999455588, -73.74090991627526 40.73632702108317, -73.7409502792117 40.736284041313866, -73.74096424510735 40.73626916475851, -73.74099064091226 40.736241061527465, -73.74103100255716 40.73619808262716, -73.7410713558666 40.73615510279333, -73.74111720954612 40.73610628378554, -73.74115207887871 40.73606914942327, -73.74119244031887 40.73602616956487, -73.74123279460038 40.73598319057665, -73.74127315593644 40.73594021068944, -73.74128690651258 40.735925565042336, -73.74131351719598 40.735897237091365, -73.74135387844882 40.73585425177232, -73.74139423250112 40.73581127812947, -73.74143459244509 40.735768298182, -73.74147494083451 40.73572675721201, -73.74151530337623 40.73568521716001, -73.74155566705501 40.73564367619582, -73.74159459019323 40.73560359441593, -73.74163639892708 40.73556061224495, -73.74167604911912 40.7355198512816, -73.74171716839702 40.73547756993357, -73.74175754598488 40.73543604063581, -73.74179788572673 40.735394488726115, -73.74183828564061 40.73535297655959, -73.74187866890941 40.73531146974454, -73.74191907585005 40.73526995126155, -73.74194575710058 40.735242522932495, -73.74195947563729 40.73522843274827, -73.74199986706293 40.735186920505484, -73.74204026556568 40.73514540196072, -73.74205746896394 40.735128341578495, -73.74205757828467 40.7351282364635, -73.74208147998418 40.735105335953484, -73.74210407346953 40.73508367161297, -73.74212306294969 40.73506546706828, -73.74216464347333 40.73502560446605, -73.74220622631495 40.73498574185389, -73.74224780082342 40.73494587830746, -73.74228363940654 40.734911566171675, -73.74228542890232 40.734909851999966, -73.74233121541934 40.734866315656596, -73.74237302599794 40.73482659397318, -73.7424148436297 40.73478687229022, -73.74245666121156 40.7347471505919, -73.74249833223422 40.73470735470858, -73.74252419610328 40.73468270159509, -73.74254019336846 40.73466767179911, -73.74258044833452 40.73462697941223, -73.74262256412443 40.734592447068884, -73.74278556160849 40.734458782677585, -73.74299481403705 40.73429356830391, -73.74312078173317 40.73419780978008, -73.7431208660343 40.73419774513131, -73.74320814147278 40.73413139285797, -73.74342546083648 40.733972311063525, -73.7436466984876 40.733816386670455, -73.74391649440972 40.73365609430153, -73.74409356261191 40.73354924056604, -73.74409363855196 40.733549194808674, -73.74418468382639 40.73349424704953, -73.7444512477723 40.73333084938608, -73.74471615780902 40.7331659066623, -73.74489151056096 40.73305531347236, -73.74493166837986 40.7330257620789, -73.74497309358463 40.73299725266893, -73.74501574114308 40.73296979774863, -73.74505957419261 40.73294344045961, -73.74510453342702 40.73291821128665, -73.74515056784774 40.732894135329886, -73.74519763947809 40.7328712377184, -73.7452456807433 40.7328495444162, -73.74529464183621 40.73282907872532, -73.74534447766774 40.73280986846063, -73.74539512780115 40.732791930597195, -73.74544653535116 40.732775282117935, -73.74549863984699 40.732759949002975, -73.74555138914934 40.73274594554439, -73.74560471691355 40.73273328600289, -73.74565933177921 40.73272023035278, -73.74571333176286 40.73270574600754, -73.74576664217958 40.732689859818485, -73.7458191896519 40.73267256622158, -73.74587092191513 40.732653911028585, -73.74592177263331 40.732633904900396, -73.74597169671358 40.732612575654585, -73.7460960308841 40.73256329199295, -73.74621840316229 40.73251125100835, -73.74633870806382 40.732456483092044)), ((-73.76803307836221 40.72548135106885, -73.76799073397449 40.725476832531335, -73.7679683256689 40.725474506379136, -73.76797342242246 40.72547624743441, -73.76787064523512 40.725462660467194, -73.76776941805194 40.72544348525393, -73.76767026610173 40.725418821014316, -73.76757370506606 40.72538878856271, -73.76757352768301 40.725388740477484, -73.76751113919869 40.7253706186854, -73.76745140391922 40.72534758632172, -73.767395144631 40.72531994672426, -73.76734297461489 40.725288001007925, -73.76729545964129 40.725252096118254, -73.76727983707632 40.72523868022964, -73.76722014918244 40.72516892926449, -73.76726095465891 40.72515070974212, -73.76726749687039 40.72515814318708, -73.76727074026756 40.725161829236036, -73.76731045310822 40.725202622559145, -73.76735639296558 40.72523943737978, -73.76740787758695 40.725271727502495, -73.76746414280923 40.725299013204626, -73.76752435436745 40.72532088936535, -73.76758761497838 40.72533703088343, -73.76765298799278 40.72534719902918, -73.76771950094748 40.72535124145163, -73.76778616566678 40.72534909852316, -73.76783699923598 40.72534478672083, -73.76791060715351 40.72533250624558, -73.7679385720971 40.72532516040041, -73.76797316336445 40.725316073703844, -73.76807496568557 40.725289330076926, -73.7682135911962 40.72525291424948, -73.76834997737757 40.72521708628709, -73.76848421901734 40.725181821173926, -73.76862891591435 40.72514380964017, -73.76875683545163 40.72511020465695, -73.76900931538368 40.725043878132134, -73.76919031101905 40.7249963293427, -73.76936832196122 40.724952321408225, -73.76953014552167 40.72491429171779, -73.76997409054466 40.72480995732755, -73.77099394392685 40.724560885129144, -73.77151257846397 40.72443283787026, -73.77169751416525 40.724390245778636, -73.77208549449047 40.724291981492016, -73.77248270708063 40.72419032120109, -73.77322339199632 40.72400655066085, -73.7733153597275 40.72398162998406, -73.7734696099105 40.72393783278114, -73.77356917363082 40.723909563433025, -73.77373658397873 40.72385962144265, -73.77390500711668 40.72380937682463, -73.7741566180014 40.723737702679855, -73.77431306273282 40.72366908513129, -73.7744674366115 40.72359742138332, -73.77457358992467 40.72354604972571, -73.7745745562957 40.72354554552989, -73.77477582847321 40.7234428289626, -73.77491413363907 40.72336831277747, -73.77502530031545 40.72330566258236, -73.77507525784404 40.72327694379339, -73.77507468005714 40.72327594309601, -73.77498431543185 40.723129785381296, -73.77498925946539 40.72312803093979, -73.7754561411844 40.722962356639236, -73.77551947827527 40.72293988088661, -73.77555730839421 40.72293139076492, -73.77557713536564 40.722926111887745, -73.77559260489457 40.722920631804705, -73.77560673444327 40.72291272402841, -73.77561805646273 40.722899883175636, -73.77563670129862 40.722867788329424, -73.775658609203 40.72283328286307, -73.7756917305073 40.72279779516754, -73.7757368151951 40.72274948945936, -73.77573182337676 40.72275138882237, -73.77575565754286 40.72272831549133, -73.77579657446542 40.722693419276034, -73.77583748422222 40.72265852933576, -73.77587840105909 40.722623633091004, -73.77592142993953 40.722591050756336, -73.77596445995545 40.722558470208796, -73.77600748993235 40.722525888744464, -73.77605051868356 40.72249330726162, -73.7760935485793 40.72246072486436, -73.77614359082014 40.72242125996141, -73.77619363183935 40.72238178873063, -73.77624366685998 40.72234232376993, -73.7762937160066 40.72230286421794, -73.77632886777465 40.72227514089856, -73.77634375684795 40.7222633929213, -73.77636647058263 40.72224571315674, -73.77638413836571 40.722231969632865, -73.77642451037651 40.72220054631174, -73.77646489067071 40.72216911218636, -73.77650526968887 40.722137694253526, -73.77655178272562 40.722108576413135, -73.77652360606878 40.72214515547078, -73.77652230321948 40.72214894590016, -73.77651469769656 40.7221710693342, -73.77650448291226 40.72220077451958, -73.77648660379833 40.72224895414562, -73.77647676201343 40.72227542811348, -73.77646562309327 40.72230539625158, -73.77644620792712 40.72235770894187, -73.77642631605481 40.72240675004199, -73.77640643247784 40.72245577944787, -73.77638654056511 40.72250481513743, -73.77636664862614 40.722553849922704, -73.77635117988628 40.722592646366365, -73.7763357028461 40.72263144189118, -73.77632022696851 40.722670238316496, -73.77630461211173 40.72270847164935, -73.77628899725208 40.72274670047734, -73.77627014957567 40.72279278089168, -73.77625210937313 40.72282961551097, -73.77622764174207 40.722861609088504, -73.77619983878705 40.722891792451556, -73.77616658897543 40.72292790049548, -73.77613333674235 40.72296401392807, -73.77608924604931 40.72299799367173, -73.77605220669969 40.72302653901452, -73.77600106332966 40.72306595760819, -73.77595697252292 40.72309993099717, -73.77591288875179 40.723133910686514, -73.7758687824499 40.723167889414526, -73.77581820885077 40.72320535222259, -73.77576763162266 40.72324282130489, -73.77571705672618 40.7232802840658, -73.77567196175701 40.72331148991602, -73.77562685962566 40.72334270113759, -73.77558176577384 40.72337390155143, -73.77553617759624 40.723400743405044, -73.77549060123337 40.72342758076103, -73.7754450200993 40.723454418089666, -73.77538941786013 40.72348558622627, -73.7753338096478 40.72351675522482, -73.77527820848829 40.72354792330974, -73.77509531690241 40.72365573483527, -73.77490803779067 40.723759095265564, -73.77471655617677 40.723857898681, -73.7746975278376 40.72386912415453, -73.77464294291627 40.723894318121765, -73.77463465273894 40.72389814708261, -73.77458835909466 40.723919524672446, -73.77453377529274 40.72394471318708, -73.77448400806567 40.72396769675031, -73.77442438736874 40.72399195412343, -73.7743695856617 40.724013993942584, -73.77431478983354 40.72403603464764, -73.77425997976543 40.72405807529876, -73.7742055295892 40.724078339918925, -73.77415107346168 40.724098604501684, -73.77409662321924 40.72411886907024, -73.77404216700411 40.72413913990492, -73.77398444557939 40.724161004514585, -73.77392672527291 40.72418287720208, -73.7738690108743 40.724204741767686, -73.77381129049205 40.724226614397246, -73.77374563598103 40.72424781223222, -73.77367998142519 40.72426901093019, -73.77361432683065 40.7242902086902, -73.77354867217292 40.724311412716226, -73.7734830245967 40.72433261041519, -73.77342830483074 40.72434778174108, -73.77337357675735 40.7243629521241, -73.77331885459262 40.72437811799021, -73.77326412767452 40.72439328201999, -73.77324124655426 40.72439916863344, -73.77319761447725 40.72441036431195, -73.77313110243263 40.72442744566735, -73.77306458208673 40.72444452156484, -73.77299806997392 40.72446160284326, -73.77293169926578 40.724476080981404, -73.77286533560921 40.72449056539882, -73.77279896482192 40.724505049763884, -73.77273260112601 40.72451952870168, -73.77266623028106 40.72453401299024, -73.77259986769275 40.72454849725684, -73.77253664399569 40.72456302190575, -73.77247342025571 40.72457755102241, -73.77241019648508 40.72459208100486, -73.77234697268695 40.72460661095257, -73.77228374886118 40.72462114086554, -73.77222052621303 40.724635664442545, -73.77203037176909 40.72468265144601, -73.77184181924157 40.72473323885622, -73.77165498708617 40.72478739269648, -73.77159544996569 40.724806089009, -73.7715323817712 40.724822765639466, -73.77146931233992 40.72483944853656, -73.77140623698034 40.724856125083804, -73.77134316632387 40.72487280160581, -73.77128009916515 40.72488948440387, -73.77121702962924 40.7249061608591, -73.7711539541434 40.72492283726795, -73.77108536249533 40.72493821044058, -73.77101677081556 40.72495358357226, -73.77094817200535 40.72496895574845, -73.77087958026235 40.72498432879839, -73.77083641900248 40.72499400175356, -73.77036147665368 40.725115396385156, -73.7703182842896 40.72512649189348, -73.77012188737811 40.72516130007663, -73.76992748310204 40.72520206879487, -73.76973538175925 40.72524873294148, -73.7695458936876 40.72530121660548, -73.76935932215447 40.7253594357591, -73.76917596691058 40.725423297364145, -73.76903129443214 40.72546135105708, -73.76899327805954 40.72546998814747, -73.76895489582657 40.72547762852477, -73.76891619980981 40.725484274094036, -73.76887722674824 40.72548991232158, -73.76883801925239 40.72549454419317, -73.76879864603599 40.72549815273682, -73.76875910710079 40.72550073795233, -73.76871949003987 40.725502300015535, -73.76866118526212 40.72550416671442, -73.76860288047799 40.725506034284294, -73.7685642281478 40.72550622044921, -73.76850653618511 40.7255064754842, -73.76845835988438 40.725506699197396, -73.76838863077406 40.725504675984794, -73.76831890166791 40.725502652729965, -73.76824916544525 40.725500634821664, -73.76819514752299 40.725495810102075, -73.76814112128528 40.72549099614654, -73.76808710335985 40.72548617677926, -73.76803307836221 40.72548135106885)), ((-73.75165941888487 40.72763649912456, -73.75156577719746 40.72751917287672, -73.75155881519903 40.72752092105877, -73.7514974599302 40.72744442520578, -73.75303376263467 40.72670846928897, -73.75284393635509 40.7264718008211, -73.75353367032818 40.726141375578166, -73.75479213689763 40.72534602286504, -73.75481435181126 40.72536345907063, -73.75483932157294 40.72538689134733, -73.754863209516 40.72541095617668, -73.7548859872916 40.7254356372898, -73.75490762541351 40.72546090580813, -73.7549280932481 40.72548672294506, -73.75494165727991 40.72550530777666, -73.75495438561668 40.725524222216684, -73.75496624749921 40.72554346169741, -73.7549772371409 40.72556299018622, -73.7549873462655 40.72558280496431, -73.75499655964022 40.725602863675334, -73.75500487141892 40.72562314649585, -73.75501226034115 40.7256436407736, -73.75501873008292 40.725664312297106, -73.75502426178086 40.72568514031461, -73.75502885315618 40.725706100507566, -73.75503250786171 40.72572716496797, -73.75503520819767 40.725748318349524, -73.75503696259794 40.725769520147225, -73.7550377639827 40.72579076404241, -73.7550376053881 40.72581201219877, -73.75503649281424 40.72583324211625, -73.75503442632977 40.72585443488426, -73.75503141551901 40.72587555900515, -73.7550278680305 40.725895844507455, -73.75502342721806 40.72591603265462, -73.7550181003088 40.72593608924248, -73.75501189444375 40.72595600347992, -73.75500480975123 40.72597574024712, -73.75499685335903 40.725995292354995, -73.75498804903927 40.72601463283854, -73.75497838033574 40.72603373014462, -73.75496787806311 40.726052573532435, -73.75495655653407 40.726071133315344, -73.75494441580781 40.72608939328402, -73.75493147843318 40.7261073372769, -73.75491775161773 40.72612493649272, -73.75490325671036 40.726142179269964, -73.75488801156519 40.72615903863096, -73.75487202689787 40.726175497488526, -73.75485532880877 40.72619153968871, -73.75354289523423 40.72706112113818, -73.75208082391077 40.72796201672023, -73.75205610116029 40.72797654818533, -73.75205156528733 40.72797937503207, -73.75200875983731 40.72800604787738, -73.75195668678988 40.72803850544581, -73.75191955021006 40.72806165055548, -73.75174038280026 40.72774729265889, -73.75165405081721 40.72763965735049, -73.75165941888487 40.72763649912456)), ((-73.774288608355 40.72438667789586, -73.77472458074415 40.724204716041434, -73.77476810543745 40.724179297785724, -73.77479423981295 40.72416792140636, -73.7748242386084 40.72415484880964, -73.77488037882478 40.7241304043226, -73.77493652019885 40.724105955307884, -73.77499042692737 40.72408006738281, -73.77504434073406 40.72405417404327, -73.7750982544958 40.7240282815789, -73.77515216108046 40.72400239898087, -73.77520607596027 40.7239765010651, -73.7752527553954 40.723952993368506, -73.77529943479152 40.72392948745394, -73.7753461141608 40.7239059797194, -73.77539279467776 40.72388247286864, -73.77544146051176 40.723854989606984, -73.77549011803842 40.72382750090551, -73.77553877670856 40.72380001218567, -73.77558743532036 40.723772528848194, -73.77563610101205 40.723745040100866, -73.77569191668486 40.72371167951456, -73.77574772401633 40.72367831888498, -73.77580353247255 40.72364495913092, -73.77585934087593 40.72361159844924, -73.77591514803981 40.72357823773799, -73.77596646358924 40.723544772805795, -73.77601778027076 40.72351130785286, -73.77606909571713 40.723477842874566, -73.77611594609085 40.72344729855752, -73.77614855622214 40.72342587754175, -73.77617746952106 40.72340807479263, -73.77620712607418 40.723390992990154, -73.77623748915015 40.723374643769056, -73.77626853616975 40.72335905410029, -73.77630021740013 40.72334423019028, -73.7763325303961 40.723330195447, -73.77639855120488 40.72330408275365, -73.77646717244765 40.723282192169954, -73.77654264740728 40.723263675558925, -73.7766199646959 40.72325026567571, -73.77669853098372 40.72324206582537, -73.77677773887467 40.72323913876402, -73.77685697873882 40.72324150762275, -73.77693564108519 40.72324915411084, -73.77732490639762 40.72324482961624, -73.77737817972296 40.72323444706963, -73.77743057426139 40.723221737677015, -73.77757585428893 40.723166135334736, -73.77772283322739 40.72311317909243, -73.7777446776228 40.72311480796438, -73.77776585112493 40.72311920911497, -73.77778574813247 40.72312625800556, -73.7778038035417 40.72313575363253, -73.77781950219443 40.72314742484894, -73.7778323954215 40.723160938501024, -73.77784211639086 40.72317591116417, -73.77784838837796 40.72319191366148, -73.77786587546022 40.72323023627989, -73.77770012563253 40.7232933313518, -73.77753703397093 40.723360316130844, -73.77737675809405 40.723431126096166, -73.77721945327073 40.723505692220456, -73.77721939873342 40.7235057191303, -73.77716239648662 40.72353422079682, -73.77713291957689 40.723548960059624, -73.77710538588457 40.72356272872258, -73.7770587507953 40.72359307214315, -73.77701211562741 40.72362342635077, -73.77696548041405 40.72365378143991, -73.77692456958438 40.72368474283955, -73.77688365755422 40.72371569791869, -73.77684273954371 40.72374666017578, -73.77680051937594 40.72378225032759, -73.77675829205818 40.72381784135054, -73.77671606467727 40.723853437760866, -73.77667466528985 40.72389342575842, -73.77663328005643 40.723933413768435, -73.77659187226607 40.72397340712281, -73.7765624484734 40.72400927686028, -73.77653303292246 40.724045150208184, -73.77650360906947 40.7240810190298, -73.77646773249568 40.72412836495108, -73.77643217216072 40.724175281930776, -73.77643200570766 40.724175503133566, -73.77639793381428 40.72422222848193, -73.77636400459029 40.72426875148195, -73.77634113055788 40.72430577393173, -73.77631825648191 40.72434280177986, -73.77629538239866 40.724379824220186, -73.77626530011159 40.7244178223122, -73.7762352190343 40.72445580238834, -73.776199953961 40.72448624680059, -73.7761727801107 40.724509707250654, -73.77616872617207 40.72451320686457, -73.77612466561023 40.724544612111075, -73.77608463520835 40.724572539295934, -73.77604461305852 40.72460046648288, -73.77599861042377 40.72462892773153, -73.77595260893337 40.724657388963955, -73.77590660622005 40.724685850175604, -73.77585529159732 40.72471876936919, -73.77580397690271 40.72475169484333, -73.77575265389305 40.72478461397479, -73.7757110795555 40.724812583048056, -73.7756695039994 40.72484055210393, -73.77562792957085 40.7248685274505, -73.77558560988895 40.72489600604788, -73.77554328305203 40.724923490018746, -73.77550096331854 40.72495096318177, -73.77546292377723 40.72497384035789, -73.77542488186077 40.72499671211371, -73.77538684106234 40.72501959556578, -73.77534871198102 40.7250447832434, -73.77531060415846 40.72506997635292, -73.77527247379632 40.72509517570939, -73.77522309475714 40.72512782284174, -73.77517370144442 40.725160476228574, -73.77509239497223 40.725212490406406, -73.77508691264228 40.72520184374961, -73.77465910857153 40.72441047022122, -73.77465896635127 40.7244105239736, -73.77438622819965 40.72451628182487, -73.77411199949886 40.72461978392513, -73.77377219772988 40.72474415829719, -73.7736849529068 40.724775412017564, -73.77322492950228 40.72493565534462, -73.77276120508292 40.7250896030552, -73.77229392788736 40.72523720406883, -73.77182324850808 40.72537841271477, -73.77144761838812 40.72548583362587, -73.77107001957152 40.7255891817849, -73.77069052675762 40.7256884375101, -73.77027739082432 40.72579131606726, -73.76986222140908 40.7258893443237, -73.7694451169226 40.7259824981406, -73.7693542749101 40.72600208514992, -73.77066467676023 40.7256429407814, -73.77124095783314 40.725484991880016, -73.77178624833732 40.72531267674246, -73.77213932864963 40.72519538731757, -73.77249018121441 40.725074291346935, -73.77283873488447 40.72494941212379, -73.77315139324241 40.72483202633346, -73.7734629224103 40.72471291659403, -73.77346296033615 40.72471290226042, -73.7738768235908 40.724551311122504, -73.774288608355 40.72438667789586)), ((-73.78474515753625 40.72004300128783, -73.7847571409173 40.72004200341116, -73.78472165278625 40.72017934354913, -73.7846791900941 40.7201839332999, -73.78461231657772 40.72018946883444, -73.78454544190448 40.72019499262131, -73.7844829670807 40.72019706843886, -73.7844204922006 40.72019916043162, -73.78435801735154 40.72020124158442, -73.78429367941392 40.72020372894588, -73.78424024373737 40.72020575222726, -73.78423636940795 40.72020589895425, -73.78416499082903 40.720208237972216, -73.78410063291793 40.7202103100522, -73.7840423938186 40.72021174070207, -73.78398414643182 40.720213171306966, -73.78392590024063 40.720214597382075, -73.78386766113385 40.72021602794358, -73.78380778998661 40.720217422092055, -73.7837479259559 40.72021881081973, -73.7836804214558 40.72022034185018, -73.78367624917682 40.720220391643686, -73.78363589821431 40.72022087143677, -73.7835982011475 40.720221255346594, -73.78353270081332 40.7202223073828, -73.78346604055876 40.72022336260327, -73.78341107347816 40.72022387065928, -73.78340185667054 40.720223955078005, -73.78335967620855 40.720224336778664, -73.78330441165008 40.720224239079634, -73.78324915538258 40.72022413956867, -73.78319389084494 40.720224035513056, -73.78313862749104 40.720223931433146, -73.78308254204065 40.7202240400998, -73.78302645069269 40.720224142424414, -73.78297036526246 40.72022424473285, -73.78291428099801 40.72022435241924, -73.78285156440424 40.7202257749248, -73.78278884782834 40.72022719109264, -73.78275192550926 40.72022808767814, -73.78270846965067 40.72022976527255, -73.78265313859572 40.720236265190266, -73.78265106298277 40.72023650981335, -73.78258297628395 40.720244520089516, -73.78251695925606 40.720252288395166, -73.78245094103222 40.72026005576022, -73.78239602346763 40.72026713626574, -73.78234521459864 40.72027370131483, -73.78228619416839 40.720281313418525, -73.78223127655119 40.720288399248524, -73.78216251316132 40.72029772904805, -73.7820937414996 40.72030704888524, -73.78202497096684 40.720316379489674, -73.78195619926957 40.7203256983442, -73.78189934762811 40.72033422477517, -73.78183027785387 40.720344560568954, -73.78176732065081 40.72035399748967, -73.78172628821181 40.72036014855053, -73.78170436461349 40.72036343437824, -73.78165023376796 40.720371297664734, -73.78159611828139 40.72037916545748, -73.78154198857621 40.72038703409836, -73.7814878647997 40.72039489552093, -73.7814363726397 40.720400431387624, -73.78138488049478 40.7204059600272, -73.7813333883236 40.72041149404679, -73.78129016003625 40.72042240269176, -73.78124693294203 40.72043330411871, -73.7812006176526 40.720459412017824, -73.78115431061494 40.72048551901352, -73.78112540284378 40.720513963480336, -73.781096495045 40.720542408840274, -73.78107033077076 40.720576980193094, -73.78104415823753 40.72061153531492, -73.78102929391852 40.72065177796258, -73.78101442248001 40.72069202059464, -73.78099681539688 40.72073705324976, -73.78098288106686 40.72077269153873, -73.78098104169885 40.72077739501823, -73.7809571505258 40.72082830056115, -73.78094770788982 40.720848092068564, -73.78093509274582 40.72087451071341, -73.78091305392003 40.720910265047465, -73.78089102213356 40.72094603109724, -73.78086898326046 40.72098178542257, -73.78083714698586 40.72101525540485, -73.78082133160034 40.721031873971874, -73.7808021170116 40.72105206470151, -73.78076490640625 40.72109079783224, -73.78076112006681 40.72109440167708, -73.78072930843764 40.72112466495146, -73.78070347249017 40.7211492537638, -73.78068993239154 40.72116212961425, -73.78064360547448 40.721198382438686, -73.78061170495523 40.72122217893149, -73.78060849251935 40.72122438266757, -73.78059271861027 40.72123520108167, -73.78057427002996 40.721247017566924, -73.78057027643148 40.721249576416085, -73.78054570143013 40.7212635829733, -73.78049577291836 40.721294370867476, -73.7804481934113 40.72131845170053, -73.78040062098918 40.72134252712429, -73.78035207677539 40.7213655317663, -73.78030469648633 40.72138982724199, -73.78025801125366 40.72141366746501, -73.78023096199234 40.721427438701504, -73.78021109964337 40.72143723258062, -73.78016391435366 40.721460509891074, -73.78011672904876 40.72148378177911, -73.78006256646437 40.72150989584429, -73.78000841210188 40.72153601620331, -73.779954242331 40.721562130203765, -73.7799273459158 40.72157509840395, -73.77992717283428 40.72157518182077, -73.77990008080285 40.72158824419449, -73.77985865491101 40.72160787901106, -73.77981722189614 40.72162751289859, -73.7797787204577 40.72164577099257, -73.77971820984202 40.721674419402454, -73.77966063790547 40.7217016848144, -73.77959598428319 40.7217322082026, -73.77954172231726 40.72175711334485, -73.77948039406544 40.72178527108591, -73.7794501598719 40.7217989009618, -73.77941875572078 40.72181305178603, -73.77936796972035 40.72183478739863, -73.77931717538365 40.72185652837597, -73.77926638929608 40.72187827024717, -73.77921559609463 40.7219000057788, -73.77915840146501 40.72192687273609, -73.77910118430387 40.72195373872121, -73.77904396709359 40.72198060557833, -73.77898675814033 40.72200746701974, -73.77893672565733 40.72202924891418, -73.77888668485637 40.72205103077092, -73.77883664402273 40.72207281260586, -73.77878661025798 40.72209459443256, -73.77872649188427 40.72212106833746, -73.7786663793838 40.72214754132171, -73.77860625973396 40.72217401426083, -73.77854614833956 40.722200481781364, -73.77849377258434 40.72222209058038, -73.7784413979998 40.72224369305427, -73.77838901509301 40.722265296388834, -73.77835566946798 40.722279060468345, -73.7783366475242 40.72228690423163, -73.77828299559278 40.72230996660626, -73.7782293459914 40.72233302896039, -73.77817569517237 40.72235609038667, -73.77812203721146 40.72237915267471, -73.7780683863181 40.722402214050845, -73.77801139195074 40.722424123503934, -73.77795439751286 40.722446042834335, -73.77789740305253 40.72246795763395, -73.77784040975934 40.722489866104, -73.77778754381872 40.722512097691, -73.7777371136004 40.7225333046702, -73.77770927667005 40.72254269280107, -73.77768852338697 40.722549692036154, -73.77766194778262 40.722551394917446, -73.77764342343208 40.722549825571384, -73.7774973312197 40.72239284518894, -73.77751867838596 40.72237635213381, -73.777569086097 40.72233740421286, -73.77761240031623 40.72230378260694, -73.77765085147936 40.72227392383953, -73.77769901798622 40.72223653482267, -73.77774232262652 40.722202906845595, -73.77778563548736 40.7221692851716, -73.7778289412209 40.72213565806443, -73.77787225399433 40.72210203635756, -73.77792169106345 40.72206405355925, -73.7779711351808 40.72202606985271, -73.77802058042245 40.72198808702753, -73.77807001732552 40.72195010326442, -73.77811946125287 40.72191212579713, -73.7781689063494 40.72187413570366, -73.77821818035716 40.721838457775064, -73.7782674614348 40.721802773535316, -73.77831674362525 40.72176709467963, -73.7783660234167 40.72173140949458, -73.77840862915129 40.72170167103457, -73.77845124905404 40.721671931685485, -73.778493853547 40.72164218778834, -73.77853645796898 40.72161245378093, -73.77857906950838 40.72158270356213, -73.77862795912476 40.72155144263221, -73.77867686408503 40.72152018081047, -73.77872576781284 40.72148891986611, -73.7787746643962 40.721457657986655, -73.77882356211724 40.721426396088575, -73.778872466891 40.721395135083725, -73.77892136213518 40.72136387854235, -73.77896806673377 40.7213343332508, -73.77901477012828 40.721304781634366, -73.7790614817277 40.72127524172138, -73.77910818620504 40.72124569547212, -73.77915489655597 40.721216150115666, -73.7792016009326 40.721186609231346, -73.77924908789431 40.72115698698135, -73.77929658308408 40.721127369230075, -73.77934406994648 40.72109775144321, -73.77939155676367 40.72106813453717, -73.7794390518268 40.72103851672681, -73.77949700879753 40.7210063443687, -73.77955496570932 40.72097417288177, -73.77961293797262 40.720941995091486, -73.77967090306056 40.720909822661284, -73.77972003131947 40.720884120586845, -73.77976916904484 40.72085840770339, -73.7798182960622 40.720832700181575, -73.77986743251324 40.7208069917563, -73.77992049321487 40.720783225112086, -73.77997354557279 40.720759464731124, -73.78002660621661 40.720735692634925, -73.78007966682253 40.720711920514134, -73.78013344989274 40.72068835146336, -73.78018723292196 40.72066478328787, -73.78024101709971 40.720641214189, -73.78029096683598 40.72062182693174, -73.78034090942688 40.72060244414181, -73.780390859108 40.720583055940644, -73.78044080874226 40.72056367312083, -73.78049982860755 40.72054271726698, -73.78055884250003 40.720521766774596, -73.7805828594679 40.720513240569694, -73.78061786227332 40.72050081626314, -73.78067615381524 40.72048139250391, -73.78073443701444 40.720461975903405, -73.78079272136326 40.72044255927557, -73.78084907157364 40.72042678150971, -73.78092224656974 40.72040626751859, -73.78098651504605 40.72039116122595, -73.78105076930814 40.72037604946737, -73.7811150223545 40.720360938571126, -73.78117928365975 40.720345826754276, -73.78124207030517 40.72033212320269, -73.78130486400555 40.720318425933876, -73.7813676577008 40.72030472232724, -73.78142659167817 40.72029427751777, -73.78148552561943 40.720283838081144, -73.78154445837626 40.72027339320905, -73.78160339228059 40.72026295371209, -73.78166233330319 40.72025250339228, -73.78172057320046 40.72024399051647, -73.78177881426649 40.720235477613464, -73.78183705413106 40.720226965579194, -73.78189529398661 40.72021845171448, -73.78195354092288 40.72020993963472, -73.78201537766961 40.72020214212513, -73.78207722033736 40.72019433919051, -73.78213906415947 40.7201865407274, -73.7822009067806 40.720178743129374, -73.78225593682788 40.72017344504382, -73.78231097513081 40.720168153251215, -73.78236600516054 40.72016285511303, -73.78242103516394 40.72015756235163, -73.78248897224843 40.72015258031205, -73.78255691641834 40.72014760004681, -73.78262485348252 40.72014261792706, -73.78268937190084 40.72013886661878, -73.78275389862922 40.72013510538438, -73.78281841705355 40.720131347700175, -73.78288294493625 40.72012759089823, -73.78294345440021 40.72012533844476, -73.78300396388062 40.72012307965594, -73.7830644887404 40.720120821764844, -73.78312500764305 40.72011857463684, -73.7831855230261 40.72011631666427, -73.78324155636535 40.7201143708041, -73.78329758611552 40.72011243571606, -73.78335361825005 40.72011049430163, -73.78340965746224 40.72010855917688, -73.78347053753423 40.72010588570384, -73.78353141758373 40.7201032176016, -73.78359230593097 40.72010054407975, -73.78365318715431 40.7200978759154, -73.78371406722427 40.72009519691053, -73.78377657930409 40.72009292526855, -73.78383321065674 40.72009087308263, -73.78390161765371 40.720088381909484, -73.7839641297207 40.72008611016566, -73.78402665715235 40.72008384381985, -73.78408337834932 40.72008108927969, -73.78414011372989 40.720078339240764, -73.78419684318207 40.720075590963816, -73.78425357855328 40.72007284086896, -73.784317075212 40.72006987378201, -73.78438057301076 40.720066918368786, -73.78444406257431 40.72006394579543, -73.78450022499783 40.720060121095564, -73.78455638741207 40.72005629726878, -73.78461255100632 40.720052472516294, -73.7846677989073 40.72004852355415, -73.78474515753625 40.72004300128783)), ((-73.71425164192391 40.76018947778854, -73.71408148592192 40.76019895940819, -73.71387920222467 40.76006704584075, -73.713865232392 40.76005793580938, -73.7138269060157 40.760032941522375, -73.71417885199925 40.76001610583745, -73.71453024778394 40.759993585499785, -73.71488093454498 40.75996539002702, -73.71523075343922 40.75993153344129, -73.71557954680864 40.75989202976958, -73.71592715697746 40.75984689754318, -73.71627342625952 40.75979615799674, -73.71661819933891 40.75973983237267, -73.71696131851371 40.7596779464117, -73.71698102059422 40.75967535632376, -73.71696632257614 40.75967700056413, -73.71701810817939 40.75966713663111, -73.71692271841648 40.75967784616512, -73.71699183114536 40.75966299457408, -73.71719711935235 40.759613930171994, -73.7174004450058 40.759560375152766, -73.71754245924167 40.75952016089545, -73.71773489319727 40.75946169331746, -73.71786981270071 40.75941740087632, -73.7178501396817 40.759427414986845, -73.7180851821921 40.75935076633005, -73.71831633901742 40.759267566392715, -73.71854329460326 40.7591779296923, -73.71876574047992 40.75908197706933, -73.71898337050645 40.7589798401778, -73.7191958891723 40.75887165880392, -73.71940300567616 40.75875758085162, -73.71960443748306 40.75863776145015, -73.71979990913222 40.7585123647524, -73.71998915342952 40.75838156213621, -73.72017191263517 40.758245531306805, -73.72013981455316 40.758261871422, -73.72015419303759 40.758251626135525, -73.72033057174666 40.75811762190904, -73.72050122382066 40.75797939903862, -73.72070092004485 40.75780955920686, -73.72089439150618 40.757635605726826, -73.72108150854802 40.75745767879502, -73.72126212616564 40.757275908665115, -73.72143186813604 40.75709805798366, -73.72159509508273 40.756916722541426, -73.72175169043803 40.756732031757515, -73.7217871855817 40.756688603061704, -73.72182268660019 40.75664517436896, -73.72185818285806 40.756601740250616, -73.72189367667866 40.7565583115183, -73.72192052147925 40.75652012447508, -73.7219473674145 40.75648194193078, -73.72195840360314 40.75646624567011, -73.72197422042427 40.75644375939713, -73.72199768763957 40.75640729496323, -73.72202114767884 40.756370841313185, -73.72204461600445 40.75633438227515, -73.72206769536959 40.75629691012091, -73.72209078302078 40.75625943257884, -73.72211386233022 40.7562219613154, -73.72213694992949 40.75618448376368, -73.72216987834676 40.756135939264496, -73.72220280432506 40.75608740015288, -73.72223324113354 40.75604451563354, -73.7222636838239 40.75600163112021, -73.72229412649753 40.75595874119553, -73.72230761302313 40.755938413182754, -73.72232200871443 40.75591844216072, -73.72233728146225 40.75589886047007, -73.72235343126226 40.75587966901097, -73.72237043066723 40.75586091814548, -73.72238825594387 40.75584261952262, -73.72240689990034 40.75582479383637, -73.7224263233789 40.75580745990276, -73.7224465156315 40.75579063930769, -73.72246744577501 40.75577435448907, -73.7224890960014 40.75575861620981, -73.72251143895392 40.75574345321989, -73.72253445329461 40.7557288708705, -73.72255809980254 40.75571490328621, -73.722582364275 40.75570154863143, -73.72260721108125 40.75568883203417, -73.7226326093951 40.755676762425026, -73.72265793937115 40.75566517621942, -73.72268377578489 40.75565425400265, -73.72271008308469 40.755644001992316, -73.72273683865131 40.755634448949976, -73.72276400459859 40.755625592983144, -73.72279155245393 40.755617446630104, -73.72281945254575 40.75561002602838, -73.7228476741043 40.75560332660114, -73.722876173229 40.755597368954284, -73.72291589880508 40.75559223075325, -73.72293837041943 40.755595921962524, -73.72295584881785 40.75560402536307, -73.72297020472075 40.75561633653779, -73.7229733592454 40.755622936755884, -73.72297913061833 40.75563500936108, -73.72297854045476 40.75565618342827, -73.722948703882 40.755708090895425, -73.72291732820979 40.75576018105803, -73.72288774000401 40.7558092957251, -73.72285406448756 40.75586537139645, -73.72283132048118 40.755904070109814, -73.7228044879906 40.755949728925444, -73.72277764954224 40.755995387720276, -73.72274750565725 40.756044804484645, -73.72273168483174 40.75606122592186, -73.72271033077709 40.756080055508335, -73.7226929126198 40.75609301603843, -73.72267524847305 40.756104473923585, -73.72265616133872 40.75611525479881, -73.72265234513944 40.75611711596941, -73.7226361239151 40.75612502751341, -73.72260721605797 40.75613665552678, -73.72258264903729 40.756144708157244, -73.72256015154974 40.75615060094154, -73.72253717114938 40.756155295780886, -73.7225108834241 40.75615908844272, -73.72247620105989 40.75616195586254, -73.72244229086937 40.75616594446597, -73.72241290261779 40.75617234921746, -73.72238869021488 40.75617998032205, -73.72236194968397 40.75619125959674, -73.72233707806576 40.756204758623824, -73.72232067226392 40.756215742217584, -73.72230565345058 40.756227797157, -73.72228942826938 40.75624345842899, -73.7222775054533 40.75625739298811, -73.72226730966979 40.75627207372982, -73.72223732240356 40.756322717231676, -73.7222110632356 40.75636734800755, -73.72218479694978 40.75641197335703, -73.72215556078577 40.75646166230706, -73.72213227964095 40.75650123037781, -73.72210565024474 40.75654600701886, -73.72207902081274 40.75659078365347, -73.72205239961185 40.75663556570468, -73.722025770112 40.75668034142591, -73.72199915596367 40.756725118978856, -73.7219703579491 40.75676708526661, -73.72194157410885 40.75680905158126, -73.7219127889993 40.756851029592056, -73.72188399916543 40.756892995877514, -73.72185296008129 40.75693504677561, -73.72182189964204 40.75697709761366, -73.72179084745306 40.75701914846304, -73.72175979998816 40.757061193011786, -73.72172874653658 40.757103243841044, -73.7216976930458 40.75714529466175, -73.72166664664373 40.75718734008792, -73.72163144452529 40.75722971225414, -73.72159624238462 40.7572720790063, -73.72156103899239 40.7573144511476, -73.72152583676218 40.75735681787774, -73.72149063446459 40.757399189999866, -73.7214554321448 40.75744155670795, -73.72141551828759 40.75748462611529, -73.72137560319449 40.75752769550564, -73.72133568918876 40.75757077569074, -73.72131585473977 40.757592173343795, -73.72129578230467 40.75761383966995, -73.72125585995506 40.75765690810028, -73.72121594465548 40.75769997743423, -73.72118933667475 40.75772551272323, -73.72117450716091 40.75773974360303, -73.72113306843643 40.75777950885329, -73.72109162965863 40.75781927498888, -73.72105019794063 40.75785904022608, -73.72100875195848 40.75789880631421, -73.72096731303607 40.75793857150392, -73.720925875222 40.75797834298484, -73.72088122940822 40.75801580767729, -73.72083659181132 40.75805327777531, -73.7207919470625 40.75809074693809, -73.72074730225964 40.75812821698384, -73.72070265624879 40.75816568070575, -73.72065801844722 40.75820315163425, -73.72061337352011 40.758240615323984, -73.72056872851638 40.75827808529975, -73.72051872074879 40.75831451926898, -73.72046871292648 40.75835095321631, -73.72041869675972 40.75838738712163, -73.72036868764754 40.75842382012174, -73.7203186808454 40.75846025400623, -73.72027227906123 40.7584969271532, -73.72022587720328 40.7585336056843, -73.72017947531698 40.75857027879344, -73.72013308046235 40.758606957304025, -73.7200929019609 40.75863513388202, -73.72005273881689 40.75866331138377, -73.7200125815375 40.75869149428882, -73.7199724183029 40.75871967716536, -73.7199283705346 40.75874478705084, -73.71988433097363 40.75876990864601, -73.7198402843004 40.758795023903474, -73.71979196235141 40.75882239982986, -73.7197436474909 40.75884977035015, -73.7196953254852 40.7588771408328, -73.71964699512719 40.7589045166779, -73.7195948554105 40.758929247439376, -73.71954269194718 40.75895398352258, -73.71949054386702 40.75897871331601, -73.71943347117917 40.75900887287058, -73.719376392541 40.75903902697929, -73.71931931974977 40.75906918647702, -73.71926682396165 40.75909404499538, -73.71921432815712 40.759118898086705, -73.71916183939621 40.75914375657438, -73.71910934230628 40.75916861501779, -73.71905684756851 40.75919346804, -73.71900435750582 40.759218326452725, -73.71895457749804 40.7592425115685, -73.71890480342479 40.75926668497068, -73.71885503047312 40.75929086465759, -73.7188052575119 40.75931503801944, -73.71875548448797 40.75933921766322, -73.71870279061213 40.759360124005795, -73.71865007422879 40.75938102396572, -73.71859737201977 40.75940192483675, -73.71854467094289 40.75942283018893, -73.71849196866772 40.75944373101156, -73.71843986106241 40.7594640254197, -73.71838776055378 40.75948431441857, -73.71833565998672 40.75950460969733, -73.71828355228615 40.7595249040346, -73.71823144457669 40.75954519294521, -73.7181662185503 40.759568001783244, -73.71810098539642 40.75959080516385, -73.71803575219795 40.7596136085074, -73.7179705189548 40.759636411814, -73.71790529277263 40.75965921510094, -73.71783532831505 40.7596836753894, -73.71777482606676 40.75970482062852, -73.71770959264497 40.75972762378706, -73.71764698187424 40.75974551475453, -73.71759482320499 40.75976041820649, -73.71753940617538 40.75977624657348, -73.71748004538884 40.75979320618756, -73.71742265997779 40.759809603295636, -73.7173652674558 40.75982599495465, -73.71730120584272 40.759839120281306, -73.71723713827924 40.75985224645828, -73.71717308255619 40.7598653672257, -73.71710900665606 40.75987849241052, -73.71704493783257 40.759891618477624, -73.71698087611621 40.75990473822302, -73.71691680724217 40.75991786421884, -73.71686022618351 40.7599291364237, -73.71680365455691 40.75994041402704, -73.71674706638109 40.75995167985533, -73.7166904864493 40.759962951979674, -73.71663390652128 40.759974218673214, -73.71656706208394 40.759984711762144, -73.71650021643741 40.75999520570984, -73.71643337195795 40.76000569872117, -73.71636652625017 40.76001619709379, -73.71631018412799 40.76002360282978, -73.71625382068018 40.76003100758519, -73.71619747140427 40.76003841865154, -73.71614112214273 40.76004582338678, -73.71607462681098 40.76005217470728, -73.71600814688898 40.76005851972385, -73.71594165982182 40.76006487098802, -73.71587517155771 40.76007122221089, -73.71580868448824 40.76007756799533, -73.71574219619878 40.76008391914146, -73.7156757162135 40.760090263966156, -73.71560922908289 40.76009661503844, -73.71554274077846 40.76010296066641, -73.71547625481067 40.760109310764385, -73.71541818929386 40.76011507017939, -73.7153601308765 40.76012082868216, -73.71530206655076 40.76012658173806, -73.71524400100378 40.76013234106525, -73.71517365013376 40.760136315797126, -73.7151032992553 40.760140290486035, -73.71502566438795 40.76014467935838, -73.71496259631594 40.760148233428566, -73.7148922454123 40.76015220798861, -73.714821893316 40.76015618250275, -73.71475154239941 40.76016015607637, -73.71468119028631 40.76016413050456, -73.7146577569714 40.76016545024458, -73.71461084055655 40.76016809949265, -73.714549522303 40.76017205119422, -73.71448821235913 40.76017599658018, -73.71442689413735 40.76017993741049, -73.71436557707327 40.76018388271357, -73.71430426710374 40.760187828902126, -73.71424834359227 40.76019142821526, -73.71425164192391 40.76018947778854)), ((-73.76134731306712 40.72578143426021, -73.76127746435868 40.72577146937755, -73.7612076298752 40.72576150448196, -73.76113779659941 40.72575153864591, -73.76106794795365 40.725741573636114, -73.760944093559 40.725726126715244, -73.76075856645348 40.72570298723004, -73.76044794227802 40.72567070459521, -73.7601362990152 40.725644736993736, -73.75970559942355 40.725612220160635, -73.75963816513682 40.7256070428432, -73.75865676032458 40.725525377441116, -73.75859842874425 40.72552017717018, -73.75852841034774 40.725514436367284, -73.7584583990587 40.725508697337794, -73.75838838068304 40.72550295735024, -73.7583183623227 40.72549721641965, -73.75723318879083 40.72538612550204, -73.75724123760259 40.72536472288118, -73.75726926449619 40.72536247125334, -73.75729365322829 40.72535717181953, -73.7573098628268 40.72535153635981, -73.75731673563394 40.72534914827842, -73.7573356173943 40.72533976691192, -73.75735453667866 40.725326905140534, -73.75737224826864 40.72531023615571, -73.75738592752425 40.72529149559749, -73.75739632394512 40.72526704247322, -73.75739988060518 40.72524793208602, -73.75740444543901 40.72522760632986, -73.75740449959211 40.725227362405086, -73.75740508411641 40.72522676929837, -73.75742330780618 40.72520825623432, -73.7574426078041 40.7252000499997, -73.75760378491948 40.7251803890413, -73.7576038500502 40.72518038107384, -73.75766924144976 40.7251726680498, -73.7578906432041 40.72515144676595, -73.75811274462801 40.72513504426848, -73.75833537528304 40.7251234710017, -73.75844044877589 40.72512006062206, -73.75855058224371 40.725116703081454, -73.7585556761287 40.72511654716839, -73.75879594926465 40.72511345861378, -73.75902633195462 40.725115851890806, -73.75925653348631 40.72512318003707, -73.75931701434398 40.725126404241266, -73.75948636336123 40.72513543725254, -73.75956514394734 40.72514122909015, -73.75978925463328 40.72515770616654, -73.7600913049709 40.72518576732886, -73.7603923297944 40.725219622162705, -73.7605354277952 40.72523853165117, -73.76069168558283 40.725259181988754, -73.76069190801084 40.7252592103669, -73.760901997944 40.72529340973691, -73.76111057296302 40.725331910029325, -73.76131767687866 40.72537471764657, -73.76158734715028 40.72543684617814, -73.76185431282106 40.72550538193185, -73.76238179801406 40.72563357543172, -73.76261607438423 40.72569050728603, -73.76278393676525 40.72573130425359, -73.76281685359011 40.72573797732226, -73.76286129275293 40.72574752963725, -73.76290574140104 40.72575708105414, -73.76295686025176 40.72576625446312, -73.76299636265097 40.72576806116166, -73.76304126899143 40.725767079275165, -73.76310800905739 40.72576587934416, -73.76316162603077 40.725762914393236, -73.7632320640134 40.72575901775819, -73.76329409148023 40.725755587365306, -73.7633561106582 40.7257521560215, -73.76341813811544 40.725748724661294, -73.7634677978301 40.72574681494182, -73.7635035400431 40.72574618596074, -73.76354525019511 40.725748272562356, -73.76349618872052 40.72578139890239, -73.76349583997367 40.72578160890593, -73.76344754031852 40.7258105187904, -73.7633961515953 40.725835321373914, -73.76334476993901 40.72586012304855, -73.76329337993643 40.72588493098666, -73.76323868185126 40.72590730972155, -73.76317476368135 40.72593345161848, -73.76311919557537 40.72594881891954, -73.76306362160861 40.7259641627684, -73.76301778857545 40.72597239368149, -73.76297195434734 40.72598062457393, -73.76290663535545 40.72598923136471, -73.76286844573404 40.725988365673096, -73.76283025489143 40.72598751077249, -73.76278302976208 40.725986109546845, -73.76273516010446 40.72598354891486, -73.7626874247593 40.72597983588408, -73.76263986513513 40.72597497684358, -73.7625925309326 40.72596897639855, -73.7625265823078 40.725959278763085, -73.76246062658089 40.725949586478215, -73.76239467091173 40.72593988334948, -73.76232871526173 40.725930180182935, -73.76226276671693 40.725920481495784, -73.76219670010043 40.72591070508292, -73.76213064179221 40.72590092774871, -73.76206458231653 40.72589115127468, -73.76199852404709 40.72588137386465, -73.76193246461337 40.7258715964143, -73.76186639809377 40.72586181981182, -73.76180033986002 40.725852048591626, -73.76173647621823 40.72584193787904, -73.76167261377631 40.72583182803396, -73.76160875015081 40.725821723554056, -73.76154488774763 40.72581161363811, -73.7614810170556 40.72580150997313, -73.76141714638617 40.7257914053722, -73.76134731306712 40.72578143426021)), ((-73.79080919493843 40.71979279462732, -73.79065221070202 40.71973515655518, -73.79081163677519 40.719311590482626, -73.7910290012122 40.719320419419546, -73.79124665814633 40.71932241448806, -73.79146423825236 40.71931757141557, -73.79168137098216 40.71930589853733, -73.79189768456511 40.719287416796234, -73.79211281075155 40.71926215705001, -73.79232638362132 40.71923016277031, -73.79253803840899 40.71919148733934, -73.7927474138605 40.719146197655796, -73.79295415460895 40.71909437143753, -73.79315790644671 40.71903609541207, -73.7936788578189 40.71887551247538, -73.79419657969777 40.71870899513773, -73.79471095586554 40.71853658105677, -73.79518103842125 40.71836965105342, -73.79565500442015 40.71820920791222, -73.79613270113698 40.71805530354463, -73.79661397230376 40.7179079889576, -73.79709866048483 40.71776731155616, -73.79758660707135 40.71763331694452, -73.7977141554453 40.71758528446563, -73.7978454400786 40.71754348364834, -73.7979799350031 40.71750808285335, -73.79798778106881 40.717529023628956, -73.79777856257564 40.7175913626087, -73.79745339913907 40.71772915833505, -73.79673794453879 40.7180639353089, -73.79643267706476 40.718200846554915, -73.79603553142519 40.718378960190755, -73.79546325789458 40.718615146178436, -73.79496698753786 40.7187453564305, -73.79392921135648 40.71901763756048, -73.79340023538431 40.71920174932175, -73.79310995760272 40.71930278153351, -73.79219361575585 40.7195492367728, -73.79150347817942 40.71973485434836, -73.79121182081583 40.71981329533025, -73.7909650107855 40.7198128474821, -73.79086292514066 40.719799710019764, -73.79080919493843 40.71979279462732)), ((-73.71620690299822 40.75928406802516, -73.71627544689046 40.75928398381783, -73.71634398488418 40.75928389415212, -73.71641252287772 40.75928380444563, -73.71647484728062 40.75928419918871, -73.71653718115451 40.75928459482193, -73.71659950674312 40.759284989500465, -73.71665208239199 40.7592850575935, -73.71670463417937 40.759283774839645, -73.71675709692926 40.75928115008379, -73.71680940909125 40.75927717507021, -73.71686151848192 40.75927186678049, -73.71691337061819 40.759265225981544, -73.71696488612463 40.759257258782334, -73.71701602348782 40.75924797948943, -73.71706672346117 40.75923739516192, -73.71711692443354 40.759225511952636, -73.71716657065002 40.75921235133759, -73.71721560048073 40.759197923972344, -73.71727657914738 40.75917942229004, -73.71733755067844 40.75916091965742, -73.71739852925064 40.75914242421397, -73.71745950071013 40.75912392241721, -73.71752048040268 40.75910542601151, -73.7175442485954 40.75909820367156, -73.71758145063309 40.75908691874424, -73.71764243028461 40.75906841597035, -73.71770121625775 40.759047486318664, -73.71776000929948 40.75902655665433, -73.7178188023081 40.75900562605942, -73.71787758817041 40.75898469631753, -73.71793638107843 40.758963771965995, -73.71799194059246 40.75894179958077, -73.71804750833681 40.758919832591936, -73.71810306777753 40.75889786015298, -73.71815862715879 40.758875893090114, -73.71831860842313 40.758809903325435, -73.71847600111295 40.75874042114058, -73.71863067361487 40.758667480444046, -73.71878251421016 40.75859117192537, -73.7188995802246 40.75853019147786, -73.71901425520484 40.75846663592572, -73.71912645835356 40.758400567214174, -73.71923608161426 40.758332052625306, -73.71934303242189 40.75826113696635, -73.71944722048642 40.75818788756303, -73.71964192008778 40.75803943710388, -73.7198301195159 40.757886232024575, -73.7200048748207 40.75772167905787, -73.7201723205549 40.75755278922471, -73.72028778429551 40.75741887300215, -73.72039941729714 40.757283086911805, -73.7204331792569 40.75724065579382, -73.72046693407208 40.75719822374791, -73.7205006959458 40.75715579260958, -73.72053444946808 40.75711336594348, -73.72056820415423 40.757070933867155, -73.72060196589895 40.75702850269835, -73.72063627546497 40.7569856108866, -73.72067058618984 40.75694271456471, -73.7207048968743 40.75689981733188, -73.72073920630775 40.75685692548867, -73.72077351690005 40.75681402913533, -73.72080783455726 40.75677113188823, -73.72084303119837 40.756723352396385, -73.72087822663114 40.756675566587106, -73.72091342201347 40.75662778076675, -73.72094861023616 40.756579995818555, -73.7209920371031 40.75652230899831, -73.72103404775231 40.75646401088772, -73.72110253166946 40.75636300534929, -73.72116675772132 40.75626039285925, -73.72122664966258 40.756156285803726, -73.72127406235319 40.75607533034391, -73.72131835165027 40.755993361438414, -73.72135947464942 40.75591044652516, -73.72139741448058 40.75582665760746, -73.72141774183706 40.755780994191, -73.72143808455645 40.75573533170841, -73.7214584035452 40.75568967366715, -73.72147873910369 40.755644011159575, -73.72149907342747 40.75559835404828, -73.72151718827742 40.755558418809834, -73.72153531139126 40.75551848448884, -73.721553426194 40.75547855014477, -73.72157154928696 40.7554386104146, -73.72159204496289 40.75539851792595, -73.72161254890347 40.755358425453444, -73.72163304452633 40.75531833385757, -73.72165990758702 40.75526889144084, -73.72168676352155 40.7552194444978, -73.72171362531455 40.75517000296548, -73.72179778518576 40.755024885573235, -73.72188767260293 40.75488176576889, -73.72198319815594 40.75474077930039, -73.72201582322255 40.75469923196678, -73.72204844116213 40.75465768010401, -73.72208106493683 40.75461613905206, -73.72211368163718 40.75457458086394, -73.7221463077477 40.754533028092204, -73.72218276112585 40.754488067106564, -73.72221922153358 40.7544431124297, -73.72225567365543 40.754398145113996, -73.72229213399102 40.754353184109995, -73.7223256694575 40.75431302296578, -73.72235920488731 40.75427286091109, -73.72239274738168 40.7542326988635, -73.72242934642459 40.75419163465625, -73.72246594545244 40.75415056323307, -73.72250254559307 40.75410949810438, -73.72255262580582 40.75405635717571, -73.722573295446 40.75403993122818, -73.72259181661605 40.75402842409136, -73.7226070882205 40.754021221668516, -73.72262066548932 40.754014816617584, -73.7226486314005 40.754005367366645, -73.72267385849113 40.75400411876293, -73.72270177922724 40.75401063903394, -73.72272847644753 40.754020635923624, -73.72275350634608 40.75403490081331, -73.7227567671532 40.754037849727, -73.72276910254655 40.754049003414764, -73.72279260112062 40.75408664905273, -73.7228149233211 40.75412441612528, -73.72278191231194 40.75416641121197, -73.7227421878711 40.75421074046135, -73.72270270119445 40.754254834335676, -73.72266322040886 40.754298922807415, -73.72262374075892 40.75434301036771, -73.72252916192107 40.75445248810818, -73.72243881719052 40.75456401562731, -73.72235278747624 40.754677503979416, -73.72232503012033 40.754716386826644, -73.72229726681105 40.754755269652634, -73.7222695022852 40.75479415246886, -73.72224174483206 40.75483303529531, -73.72221398021887 40.75487192350074, -73.7221842024245 40.75491677722439, -73.72215442461628 40.754961624636586, -73.72212464676801 40.75500647204076, -73.72209486885333 40.75505132574046, -73.72207203235635 40.75508916319833, -73.72204918751785 40.755127006934984, -73.72202635804781 40.75516485070399, -73.7220035214505 40.75520269355065, -73.72190241936299 40.755390076139385, -73.72180753428856 40.755579328700044, -73.72178679816957 40.7556237034696, -73.72176605491781 40.75566807821797, -73.72174531990142 40.75571245928587, -73.72172457661695 40.75575682862319, -73.72170383325965 40.75580120876251, -73.72168309700633 40.75584558261149, -73.7216272942767 40.75596746954711, -73.72156717866208 40.75608816456086, -73.72150279551508 40.75620757860527, -73.72143418898233 40.756325628032684, -73.72134983730459 40.75646477519509, -73.72120527649192 40.75668660006811, -73.72110013478434 40.756829682380875, -73.72098925966822 40.75697023828753, -73.72087274758914 40.757108137431516, -73.72075071634605 40.757243241402946, -73.72059497207523 40.757403924400315, -73.72043269999624 40.757560819108754, -73.72026404165017 40.757713774559036, -73.72011169238479 40.757842126043, -73.71996958939843 40.757953969777745, -73.7199547038413 40.7579656825399, -73.71979174295885 40.758085474573456, -73.71960496097556 40.75821098156374, -73.7194138611858 40.75833266587723, -73.71921858719664 40.758450455801814, -73.71905295345539 40.75854437674032, -73.7188838599287 40.75863466894964, -73.7187114538085 40.758721254429794, -73.71853586332223 40.75880405963759, -73.71834777932104 40.758886917780345, -73.71815660632942 40.7589655644806, -73.71796249499478 40.75903994786242, -73.717754623504 40.75911285188754, -73.71754389813542 40.759180847968146, -73.71736775996652 40.75923328937753, -73.71718991536756 40.759282291785645, -73.71698682023442 40.75933387398393, -73.71678181524156 40.75938083601825, -73.71657504031289 40.759423144903856, -73.71636672545473 40.75946074986843, -73.71609646640836 40.75950034412845, -73.71582498707252 40.75953470098385, -73.71555244387893 40.75956381000608, -73.71548939891042 40.75956902225851, -73.71542635390895 40.759574239879434, -73.7153633101242 40.75957944756332, -73.71530026512609 40.75958465971223, -73.71525771305379 40.75958817999511, -73.71523722009499 40.759589877229644, -73.71517418336317 40.75959509023053, -73.71510468135027 40.75959233841114, -73.71516566372448 40.759575130985695, -73.71521945509721 40.759565959908585, -73.71527405940996 40.759556662943275, -73.71532824303047 40.75954742614714, -73.71538963092662 40.75953728500268, -73.71545101764292 40.7595271384196, -73.71551240552476 40.75951699180668, -73.7155738004666 40.75950685148211, -73.71563518833416 40.759496699400756, -73.71570253812129 40.75948565068438, -73.71572622767972 40.75948139210174, -73.71575230641612 40.75947507634214, -73.71578326320294 40.75946542811941, -73.71580492297173 40.75945698794984, -73.71582578097494 40.759447438171804, -73.71584806969872 40.759435362387855, -73.71587582430047 40.75941735311592, -73.71589906327688 40.75939905624475, -73.7159161873423 40.75938281366051, -73.71593495914505 40.75936175290848, -73.71594684826557 40.75934560907418, -73.7159572548011 40.75932887805294, -73.71596612626843 40.75931164796573, -73.71598273652512 40.75929091326384, -73.71602413386898 40.75928429751751, -73.71606982824018 40.759284236349615, -73.71614245315533 40.75928415057304, -73.71620690299822 40.75928406802516)), ((-73.72881943890782 40.74855967357714, -73.72882509072274 40.74854043126811, -73.7288476637357 40.74859666995967, -73.72886752647122 40.748652603296904, -73.7288853984162 40.74870891916384, -73.72890126666927 40.748765586013086, -73.72890907172074 40.74880381754358, -73.72891521357992 40.74884223066414, -73.72891969008103 40.74888077494128, -73.72892264450853 40.74892497624438, -73.72892280664594 40.7489305255712, -73.72892361093231 40.748958099291926, -73.72892337797552 40.74897373700749, -73.72892304735454 40.7489967892959, -73.72892082025443 40.74903544746879, -73.72891868560131 40.749084268118835, -73.72891455487293 40.74913301202988, -73.72890845072747 40.74918163873206, -73.72890036623933 40.74923010318332, -73.72889030286319 40.74927833784831, -73.72887074270801 40.74934788324861, -73.72884808002657 40.749416881935716, -73.72882234594437 40.74948524843254, -73.72879356793243 40.749552922467686, -73.72876159211242 40.749620179232615, -73.7287102630418 40.749722370731, -73.7286760143092 40.749785085346595, -73.7286553037268 40.749823013780826, -73.72863252068592 40.749861583895, -73.72863248967936 40.74986163785256, -73.72859657902367 40.749922434043306, -73.72856602847197 40.749969935112716, -73.72853547788043 40.7500174352732, -73.72850491890519 40.750064948012735, -73.72847522934269 40.75011325434193, -73.72844553968935 40.75016157236968, -73.72841585118081 40.75020988949172, -73.72840583102692 40.75023084505331, -73.72839675595965 40.750252049582215, -73.72838864858777 40.75027347611679, -73.72838149482413 40.75029509490713, -73.72837532199216 40.75031688440558, -73.72837013249764 40.75033883561285, -73.72836592537769 40.75036089449624, -73.72836271604143 40.750383057490126, -73.7283605034488 40.75040528947222, -73.72835928176487 40.750427569717104, -73.728359065343 40.750449863138726, -73.72835850816277 40.75048690071128, -73.72835805014087 40.75051762504025, -73.7283572649098 40.7505382817936, -73.7283561293693 40.75056818415968, -73.72835037774647 40.75058830600395, -73.72834160651391 40.75060380561142, -73.72829440816521 40.75064978870336, -73.72827584236042 40.75066748585951, -73.7282504199702 40.75069169283404, -73.72820642343471 40.750733596027594, -73.72816820822271 40.75077160823578, -73.72812626796112 40.750813330746055, -73.72809178478728 40.75084762902822, -73.72806663662222 40.750873663744386, -73.72804148015233 40.75089969753492, -73.72800575931258 40.75094447660851, -73.72797934117428 40.750980497666035, -73.72794957275664 40.751020663957526, -73.7279160228435 40.75106212074506, -73.72787911434031 40.75110772274115, -73.72784221407173 40.75115332564519, -73.727811376375 40.75118939745578, -73.72778053739088 40.75122548636461, -73.72774969960533 40.7512615635613, -73.7277188617606 40.75129764705302, -73.72767898604339 40.75134052152888, -73.72763910198972 40.751383395070576, -73.72761490556972 40.75140941032518, -73.72759922614044 40.75142627672229, -73.72755934195828 40.75146915653935, -73.727519464848 40.75151203185666, -73.72748158900582 40.751548508367264, -73.72744693956209 40.751581883938705, -73.72740584190782 40.75162146766527, -73.72736796475711 40.75165794413517, -73.72733009580595 40.75169443231853, -73.7272922185944 40.75173090336012, -73.72725168340209 40.751768418990736, -73.72721114105937 40.75180593459006, -73.72717060695618 40.75184345109501, -73.72712541732587 40.751881984038945, -73.72708023590637 40.751920523288135, -73.72703504735198 40.75195905709952, -73.72701924273538 40.75197172944487, -73.72698922304161 40.751995812679866, -73.72694339046193 40.752032551112606, -73.7268975589899 40.752069295833216, -73.72685173457221 40.752106040552256, -73.72683011556643 40.752123370029345, -73.72680590181864 40.752142784332726, -73.72676348592368 40.75217388730038, -73.7267210771161 40.75220498486615, -73.72667865997998 40.752236082396465, -73.72663624396617 40.75226718531688, -73.72659508811422 40.75229735828422, -73.72655425317525 40.7523283856822, -73.7265146878233 40.75235849575873, -73.72647511299205 40.75238859859499, -73.72642557401156 40.75242087679853, -73.72637603382475 40.7524531486743, -73.72632510082379 40.752486333938776, -73.72627694733838 40.75251770405392, -73.72623595622468 40.75254546031518, -73.72619494968666 40.75257321562466, -73.72615396558732 40.75260097727642, -73.72610916008853 40.75263077668653, -73.7260705852245 40.75265144981913, -73.72602820197336 40.752674165242595, -73.72597955110217 40.752698856768376, -73.7259308989922 40.75272355277322, -73.72588225515744 40.75274824337414, -73.7258281439735 40.752775822384564, -73.72577403985332 40.752803400485874, -73.72571992857974 40.752830979445285, -73.72567013303195 40.75285695404305, -73.72562033741566 40.75288293582318, -73.72557054181246 40.752908904974674, -73.72551862194719 40.75294288088037, -73.72546670203637 40.75297685496143, -73.72543798172603 40.75299715784539, -73.72540926848085 40.75301746614207, -73.72538851149726 40.75304096409528, -73.72537725314515 40.75306090426297, -73.72537760099473 40.7530767738794, -73.72538285243344 40.753093802436034, -73.72541801904703 40.75313994645485, -73.7254398839657 40.75317258532776, -73.72546173945852 40.753205217870274, -73.72548684081087 40.75324502620318, -73.72549207287959 40.75326159274652, -73.72549373614024 40.75327952946565, -73.72549137749259 40.75329930444666, -73.72548414288812 40.75331839422598, -73.72547276752512 40.75333626475154, -73.72545329959799 40.753355269541466, -73.72538885605306 40.75339141728433, -73.72533361423338 40.75342048280964, -73.72527835694912 40.7534495536747, -73.72522310792803 40.75347861912982, -73.72516806740957 40.75350736447438, -73.72511301140499 40.753536120561854, -73.7250579625507 40.75356485412725, -73.72500291476248 40.753593604778615, -73.72494786695273 40.75362234910001, -73.72489130517332 40.753652085743326, -73.72483474450519 40.75368182776456, -73.72477819091391 40.75371156437186, -73.7247216301708 40.75374130003377, -73.72466506106205 40.753771041951495, -73.7246097085773 40.753800084352314, -73.72455434062778 40.753829132092584, -73.72449897262996 40.753858179806144, -73.7244436117149 40.75388722120644, -73.72440381204567 40.75390882557945, -73.72436402067333 40.75393042185392, -73.72432422808727 40.75395201901227, -73.72427072896363 40.75397953031622, -73.72421722275784 40.754007025369184, -73.72417425554008 40.75402255534396, -73.72410443109464 40.75403835867105, -73.72410802961701 40.754020682175764, -73.72413464648281 40.75398722624168, -73.72416794386345 40.753945337714434, -73.72420126365665 40.75390346003719, -73.72423146789868 40.75386757318813, -73.72426167215282 40.753831675524985, -73.72429187630735 40.75379579406272, -73.72432208163211 40.7537599080927, -73.72435622031925 40.75371983605116, -73.72439036012341 40.75367977030564, -73.72442449280389 40.75363969912977, -73.72445985483947 40.75360243687331, -73.72449521681692 40.753565179108314, -73.72453057877716 40.753527915929254, -73.72456594069776 40.75349065273917, -73.72465702736302 40.75340239179617, -73.72475201393421 40.753316546262255, -73.72485079694981 40.75323322124037, -73.72495627548466 40.753150351569644, -73.72506534112716 40.75307022161061, -73.72517786918898 40.752992916604086, -73.72535946874417 40.7528740726728, -73.7255402511409 40.75275451780633, -73.72559937476377 40.75272325247673, -73.72565849004208 40.7526919870969, -73.725717613528 40.752660728009886, -73.72577673698439 40.75262946258882, -73.72580598290912 40.75261229734759, -73.72583523712998 40.75259512671561, -73.72587666071202 40.75256822080684, -73.72591808542255 40.752541320288906, -73.72596529113693 40.75251039202016, -73.7260124897063 40.7524794628145, -73.7261874288789 40.75235835856282, -73.72635825559193 40.752233905183964, -73.72652484518672 40.75210618074446, -73.72659735597999 40.752050910269595, -73.72678128926943 40.75190431140812, -73.726958890624 40.75175326132988, -73.72712998881748 40.75159793525753, -73.72727295472129 40.75146400418247, -73.72741018985457 40.75132664193093, -73.72754153257245 40.75118599942649, -73.7276668627448 40.751042211481554, -73.72775578644028 40.75092246382598, -73.72783934649603 40.750800499878856, -73.7279174499766 40.750676465314804, -73.72805890373051 40.750457547630944, -73.72819285796047 40.750235918645664, -73.72827913565773 40.75008478154952, -73.72835904945092 40.74993163835014, -73.72843254073187 40.74977664200915, -73.72849951061741 40.7496199498948, -73.72851593997439 40.749578711026345, -73.72858125776588 40.74940687648727, -73.72863941035146 40.74923356349897, -73.72869035446665 40.749058941266135, -73.72873402907315 40.74888318255233, -73.72874631342236 40.7488362174452, -73.72875858944005 40.74878925862044, -73.72877087259249 40.74874228810427, -73.72878315688975 40.74869532299226, -73.7287954257987 40.74864835243936, -73.72880416491752 40.748615055929996, -73.72881309723356 40.748583164671025, -73.72881943890782 40.74855967357714)), ((-73.75097415578978 40.72832203534404, -73.75106843382198 40.72832195553819, -73.75116240589877 40.72832773012521, -73.75125544481368 40.728339320829825, -73.75134693060917 40.728356649771875, -73.75143625056951 40.72837960126731, -73.7513928643149 40.728405078550196, -73.75134646961602 40.728432292712064, -73.75130007488266 40.728459505954575, -73.75125368721031 40.72848672009415, -73.75120880024463 40.728515579091486, -73.75116390730798 40.72854444166042, -73.75111902737024 40.72857329973737, -73.75107414857393 40.72860215869978, -73.75102926380339 40.72863102213434, -73.75098126280506 40.72866258305056, -73.75093327002712 40.72869414936767, -73.75088526895468 40.72872570574111, -73.75083727610937 40.728757265714385, -73.75078927609268 40.72878883195565, -73.75074679002527 40.72881402458015, -73.75070429682346 40.72883921717353, -73.75065746622262 40.728866035689265, -73.75061063676442 40.728892855088915, -73.75056294091102 40.72892216791223, -73.7505152438117 40.72895148611614, -73.75046007963405 40.72898586970914, -73.75043285947775 40.72900518793939, -73.75040563812196 40.72902450616055, -73.75037022091513 40.729052259716426, -73.7503325217917 40.7290818129402, -73.75029511592297 40.729111440629495, -73.7502554293168 40.72914286708601, -73.75021746362484 40.729176243268846, -73.75017949077551 40.72920962392617, -73.75014151790843 40.729242999167724, -73.7501035592047 40.72927637532799, -73.7500655933234 40.72930976136572, -73.75002798631748 40.729342136894665, -73.74999037923102 40.72937452411777, -73.74995277215194 40.72940689962184, -73.74991933567365 40.729434146749156, -73.7498859015794 40.72946138216521, -73.74985246504643 40.729488629272865, -73.74980878862458 40.729523566109044, -73.74976511213657 40.729558508331486, -73.7497214356231 40.72959344513419, -73.74967775904018 40.729628388223695, -73.74963377523947 40.729664746233766, -73.7495897973298 40.72970109883671, -73.74954581224601 40.72973745771079, -73.74949580771842 40.72977886164998, -73.74945399267017 40.72981387534186, -73.74940615106281 40.729853934980824, -73.74935831059861 40.72989399009976, -73.74931046887622 40.72993404969852, -73.74926986238073 40.729969656690336, -73.74922926529143 40.730005269091265, -73.74918866697504 40.73004088147517, -73.74914806863897 40.73007648754103, -73.74910141475476 40.73011696657732, -73.74905476083423 40.7301574401915, -73.74900810684345 40.73019791738852, -73.74896144566634 40.73023840175497, -73.74892384091248 40.73027178279847, -73.74888622890978 40.730305192630254, -73.74884861572976 40.730338590740416, -73.74881100371613 40.73037198343768, -73.74877002515184 40.730408488151745, -73.74872904535547 40.73044499374891, -73.748688066698 40.73048149933392, -73.7486470951015 40.730518004019196, -73.74860230649209 40.73055746844449, -73.74855752609213 40.73059693917375, -73.74824806311922 40.73085626878046, -73.74793534147902 40.73111332653095, -73.7476193873007 40.73136808814241, -73.74706829094828 40.73125176381085, -73.74697677668148 40.73123244669131, -73.74704485179312 40.73118980661973, -73.74708582497183 40.73116414197284, -73.7472348208843 40.73107081496603, -73.74734623352101 40.73100102844499, -73.74751493434316 40.73089535956506, -73.74767299454527 40.730796354324696, -73.747837336033 40.73069341297606, -73.7479998781596 40.73059159939852, -73.74812946051428 40.730506634125675, -73.74818748846802 40.730460618794, -73.74839973334842 40.73029230874992, -73.74851288663845 40.73020257945709, -73.74862030730264 40.730117395030206, -73.74872772650855 40.73003221049956, -73.74883514662352 40.72994702587028, -73.74904998721671 40.7297766554102, -73.74915740532407 40.729691470474705, -73.74926482433706 40.72960628634112, -73.74937224426604 40.729521100307885, -73.74947966154944 40.72943591506878, -73.75022653133051 40.72884362090636, -73.75030605768622 40.7287805522068, -73.75039851970132 40.728766786626146, -73.7504808003565 40.728723631401785, -73.75063820586273 40.72864107302377, -73.75082407984814 40.72854358340982, -73.75072528105132 40.72835089136026, -73.75078719614943 40.728339715846005, -73.75088020152393 40.72832796820289, -73.75097415578978 40.72832203534404)), ((-73.74495303932687 40.73411298748916, -73.74500200206636 40.73407472511283, -73.74505094342028 40.734036468071366, -73.74509990010415 40.73399821194341, -73.74514885555145 40.733959954891375, -73.7453874396968 40.733786863974025, -73.74562361249819 40.73361187255745, -73.74585736084677 40.73343500314021, -73.74594149742909 40.73336999353753, -73.74600267248351 40.73332271833864, -73.74608865387398 40.733256279082205, -73.74612971081197 40.73322148917654, -73.74617077480646 40.73318670017218, -73.74621183876144 40.733151910252566, -73.74625193794726 40.73311647792838, -73.74629203474338 40.733081040181744, -73.74633212674458 40.7330456069131, -73.74637124564597 40.733009542929885, -73.7464103633212 40.73297347893057, -73.74644948803638 40.73293742033648, -73.74649156628246 40.73290230116145, -73.74653365040318 40.73286718198393, -73.74657573566331 40.73283206279345, -73.7466192371358 40.732795586030186, -73.74666263145072 40.732762060892746, -73.74666198538229 40.73281149307309, -73.74666083579261 40.732833942106986, -73.74665786944179 40.73286594337629, -73.7466535799295 40.732897856185716, -73.7466479756362 40.73292965533926, -73.74664106377926 40.73296131023512, -73.7466328469128 40.732992771350624, -73.74662631590141 40.73301953100021, -73.74661858045918 40.7330461087973, -73.7466096561282 40.733072464252764, -73.74659955127936 40.733098574872095, -73.74658827314094 40.7331244073518, -73.74657584195955 40.73314992931778, -73.74656226731757 40.7331751110738, -73.74654756354614 40.733199919332115, -73.74653175320168 40.73322433703218, -73.7465148494317 40.73324833088355, -73.7464765208215 40.73329259851645, -73.74643819917753 40.73333688866453, -73.74639987752718 40.733381167093036, -73.74636155580532 40.733425450911554, -73.74632319919262 40.7334692465629, -73.74630540123916 40.73348957873311, -73.74628484130456 40.73351305300464, -73.74624647745047 40.73355685851977, -73.74620811947868 40.73360066043287, -73.74616976262317 40.733644466838065, -73.74613497250643 40.73368331747228, -73.74610018000206 40.733722162687506, -73.74606764513396 40.733758488735845, -73.74606660130016 40.73375965349738, -73.74603059724276 40.73379985219048, -73.74601468634769 40.733815467093564, -73.74599944758258 40.73383146439348, -73.74598490110324 40.7338478360303, -73.74597106949855 40.73386455683981, -73.74595795401446 40.73388161061581, -73.74594558430846 40.733898981214736, -73.74593395926236 40.733916651524616, -73.74592309435208 40.73393459906704, -73.74591300384904 40.73395280676401, -73.7459037044131 40.733971252139675, -73.74589518666352 40.733989911760176, -73.74588749559621 40.73400878302351, -73.74588060173308 40.734027835247346, -73.74587452883364 40.734047046872014, -73.74586966122025 40.73407553012391, -73.7458509777173 40.73409517497911, -73.74581978830393 40.734094633371456, -73.7457867352448 40.73409013709615, -73.74575800277843 40.73408853288861, -73.74573400560786 40.734089103959846, -73.74570073040194 40.73409256679298, -73.74566367133593 40.734100151906986, -73.74563260494 40.73410987005109, -73.74560342623941 40.73412251001525, -73.74553700610396 40.73416908721904, -73.74549487464829 40.73420043908363, -73.745446606441 40.734236370878186, -73.74539833228668 40.73427229633573, -73.74535004976943 40.734308228058026, -73.74530178969621 40.73434415890918, -73.74525351538568 40.734380084305464, -73.74520523270884 40.73441601686704, -73.74515697246218 40.73445195215946, -73.74510672563869 40.73448944812388, -73.74505646455617 40.734526943134235, -73.74500621762296 40.73456443815391, -73.74495595642735 40.734601933120004, -73.74490570936035 40.73463943349843, -73.74485545515455 40.734676928435995, -73.74480520797104 40.734714429670724, -73.74475495367282 40.734751919161006, -73.74470732187397 40.734787463034266, -73.74466304818071 40.734822492937326, -73.7446213899853 40.734855554701916, -73.7445797317486 40.73488861645129, -73.74453807344977 40.734921683588425, -73.74429233388966 40.73510338554749, -73.74404696130904 40.73528535794967, -73.74380194972653 40.735467616993255, -73.74355730389462 40.73565015818856, -73.74351217893305 40.73568121089351, -73.74346706221979 40.73571226269863, -73.74342194425293 40.73574332168734, -73.74337477396558 40.735775779982525, -73.7433727251936 40.73577719102123, -73.7433495370501 40.73579315584523, -73.74333171655618 40.73580541981871, -73.74328182735158 40.73583406285149, -73.74334171152621 40.735716378791935, -73.74341098711017 40.735602663468505, -73.74348480790601 40.73549062687484, -73.74356311557983 40.73538034901784, -73.743645827911 40.73527196478221, -73.74373287000904 40.73516555053552, -73.74392566180708 40.73499333870037, -73.7441170532039 40.734820229220716, -73.74430704299459 40.73464622840436, -73.74435161817598 40.734608233020666, -73.74439619804869 40.73457023582905, -73.74444077905096 40.73453223952315, -73.74448061503661 40.73449829758143, -73.74452994088226 40.734456252261886, -73.74457452173199 40.734418255903584, -73.74461910253436 40.7343802586273, -73.7446636832617 40.734342267637075, -73.74471003556044 40.73430288116159, -73.74475722816332 40.73426600895778, -73.74480616979827 40.734227752021326, -73.74485512676321 40.73418949599848, -73.74490408249159 40.73415123905148, -73.74495303932687 40.73411298748916)), ((-73.76588832806874 40.72650744743089, -73.76613752711289 40.72648485119921, -73.76617144323605 40.72653314430565, -73.76620461184616 40.726579598839194, -73.76623778050252 40.72662605336293, -73.76627094922722 40.726672501573226, -73.76630411204181 40.72671896056772, -73.76632925730598 40.72676486477568, -73.76635439664848 40.726810779771874, -73.76637953487659 40.72685668485431, -73.7664047486177 40.7269046954814, -73.76643258244276 40.7269596498629, -73.76643980895739 40.72698058161589, -73.76644543175395 40.72700179647829, -73.76645077786517 40.72703035715657, -73.76645350604679 40.727059137652624, -73.7664536120907 40.72708798667199, -73.7664511023476 40.727116779956994, -73.76644597024847 40.72714536440701, -73.7664382612153 40.72717361314174, -73.76643088097534 40.72719450896145, -73.76642193353318 40.72721505940687, -73.7664106226609 40.72723548618941, -73.766397238198 40.727255499030974, -73.76637743998755 40.72728137289794, -73.7663553788045 40.72730615164956, -73.76633114849433 40.72732974002061, -73.76630486904216 40.727352014883124, -73.76627666507382 40.72737288013398, -73.76625436568281 40.727387596061156, -73.76623101148554 40.72740133188646, -73.76619856585789 40.72741825957258, -73.76617332981269 40.72742989427258, -73.76614725958291 40.727440420543594, -73.76611151147121 40.727452934392126, -73.76607473656661 40.727463568576034, -73.7660351496396 40.72747069404269, -73.76600470024388 40.72747464575014, -73.76597409846462 40.72747783260505, -73.76594337391445 40.727480249264566, -73.76591255498414 40.72748190118924, -73.76588168785811 40.72748278306996, -73.76585080094937 40.72748289406385, -73.7658199238452 40.727482236032145, -73.76578908735138 40.72748080093286, -73.7657583340347 40.72747860236034, -73.76572769469462 40.727475634073684, -73.76569719060073 40.727471906922446, -73.76566687503959 40.727467415612104, -73.76563675980803 40.727462171873455, -73.76560689225822 40.72745617490254, -73.76557730075868 40.727449436463914, -73.76552247202018 40.72743108945659, -73.76546765041407 40.72741274243761, -73.76540839617388 40.72738589813501, -73.76534914908365 40.727359053816315, -73.76528990204426 40.72733220856652, -73.76524071138138 40.727301118964505, -73.76519152788875 40.727270023052306, -73.7651423456067 40.727238932524415, -73.76509866401994 40.72720046089344, -73.76505498244231 40.727162000952355, -73.76502497774763 40.727132175099634, -73.76499066613484 40.72709749479299, -73.76497434813405 40.727077545761254, -73.76495984992894 40.72705680168763, -73.76494725407814 40.727035347389425, -73.76493663240758 40.727013290174845, -73.76492800702441 40.726990738151045, -73.7649228143809 40.7269735538834, -73.76491893749443 40.72695618139323, -73.7649154947953 40.72693283489144, -73.76491416662697 40.72690936303293, -73.76491447975613 40.72689173524692, -73.76491613027349 40.726874161520556, -73.76491882338519 40.72685665656067, -73.76492283697787 40.726839300179506, -73.76492952361005 40.726816502957945, -73.76493707232896 40.72679427481848, -73.76494395773709 40.72677787523999, -73.76495203755789 40.72676179237798, -73.76496105027508 40.7267460031856, -73.7649712192049 40.72673062158304, -73.76498228172696 40.72671560200829, -73.76499442912497 40.72670107902785, -73.76501203604668 40.72668243473791, -73.76503124472188 40.72666473384861, -73.76505195424791 40.72664805809982, -73.7650741099307 40.72663247671861, -73.76509758370051 40.726618055180225, -73.76512228054244 40.72660488424187, -73.76515455554612 40.72658998626377, -73.76518691188072 40.726577533332964, -73.76522072250295 40.7265675624684, -73.76525565323944 40.72656018014837, -73.76528238637935 40.726556305711995, -73.76533809347013 40.72655155649082, -73.76538782765469 40.72654747585987, -73.76545609580101 40.72654314029573, -73.76549905923183 40.7265404110011, -73.76552435565263 40.72653880467417, -73.76559262261647 40.72653446362356, -73.76564779864582 40.72652958439828, -73.7657029746892 40.72652469884301, -73.76575151285864 40.72652040760301, -73.76582075574719 40.726513875655606, -73.76588832806874 40.72650744743089)), ((-73.77369288824356 40.72445924338571, -73.77325838896782 40.72462577936409, -73.77281983472484 40.72478604624262, -73.77256895624907 40.72488882080238, -73.7723140042916 40.7249856226685, -73.77205522661127 40.72507635775081, -73.77179287213072 40.72516093916729, -73.77152719212599 40.725239285445554, -73.77115037462217 40.725350288871596, -73.77077035274962 40.72545478028673, -73.77038732090904 40.72555270691676, -73.77000147586637 40.72564401779549, -73.76961301437602 40.725728666461855, -73.76922213555086 40.72580661006379, -73.76916793773295 40.72581740662498, -73.76911373163054 40.72582819774095, -73.76905590529711 40.72583913915988, -73.76899807896659 40.725850074246225, -73.76894025259524 40.725861015607045, -73.76888242502119 40.72587195693644, -73.76882562290139 40.72588175754574, -73.76848825954454 40.725943493313096, -73.7684390012675 40.725951146769994, -73.76838973589899 40.72595879388802, -73.76834812991827 40.725966500520016, -73.76830653339107 40.72597420895707, -73.76825468847954 40.72598397513481, -73.76820285065493 40.725993741303505, -73.76815101281193 40.72600350834932, -73.76812688043627 40.72600913478172, -73.76810054383652 40.725957332911136, -73.76811011467898 40.72595472899477, -73.76816095996654 40.72593934977815, -73.76821181234828 40.72592396605079, -73.76826266469091 40.725908586803506, -73.76831364774182 40.725891353642254, -73.76836463311489 40.725874125866156, -73.76841561727795 40.72585689806507, -73.7684535004548 40.72584409692917, -73.76868277409905 40.72576441398125, -73.7687462002508 40.725742944402256, -73.76879805183242 40.72572538048202, -73.76885567820906 40.72570586681586, -73.76891331167269 40.725686347732015, -73.76897057458412 40.725667519469184, -73.76902783040487 40.72564867855649, -73.76908507668018 40.725629850203354, -73.76914233245492 40.72561100383063, -73.76919958693252 40.725592180840124, -73.76925684261757 40.72557334161437, -73.76931409115575 40.7255545059479, -73.76937997325238 40.725534339478955, -73.76944584820403 40.725514173858585, -73.76950635297625 40.725495665199006, -73.76955329744081 40.72548129693885, -73.76957760622354 40.72547385692924, -73.77000238309205 40.72534753858773, -73.77043018425266 40.725227274350935, -73.77086086051301 40.725113108013396, -73.7712942638864 40.72500507797101, -73.77136665847092 40.724987692376736, -73.77146811822531 40.72496365111113, -73.77190347761565 40.72486489883558, -73.77234130148754 40.724772667695134, -73.77278141939075 40.72468699334588, -73.77323771713463 40.72457442206684, -73.77369288824356 40.72445924338571)), ((-73.7401559918377 40.73730331764982, -73.74105573447046 40.737104408614954, -73.74023280015332 40.738048747041546, -73.74012399369805 40.738216690084116, -73.74000678321235 40.73838132988348, -73.73988134127615 40.738542420964436, -73.73974785464686 40.73869972688807, -73.73960651835814 40.7388530157357, -73.73945754163941 40.73900206012274, -73.73930114553774 40.73914663989498, -73.73908134684795 40.739326451513094, -73.73885673609679 40.73950278933237, -73.73862741064477 40.73967558150509, -73.73839346549885 40.7398447534767, -73.73814910880172 40.740014237190486, -73.73812351861501 40.740031575981234, -73.73810128921839 40.74004208482695, -73.73803372372412 40.74008143208427, -73.73801440548205 40.74006396684915, -73.73820532732913 40.739921262939696, -73.73839518646996 40.73976044251422, -73.73857844842601 40.73959525372737, -73.7387549361968 40.73942585199729, -73.7389244857894 40.73925239817459, -73.73907766915353 40.73906626564286, -73.73922568381933 40.73887772944254, -73.73936846318873 40.73868687319015, -73.73950594540882 40.73849377871159, -73.7396207034378 40.73833117353485, -73.73972834592129 40.73816577588349, -73.73982875498375 40.7379977674142, -73.73992182103733 40.737827330701904, -73.74000744395836 40.737654651043506, -73.74008552835167 40.73747991644693, -73.7401559918377 40.73730331764982)), ((-73.72818941919591 40.74811306080022, -73.7281936885928 40.74809371079907, -73.72819967446951 40.748094781223415, -73.7282541444404 40.74783844704048, -73.72825510182138 40.74783219165122, -73.72825678467868 40.74782602442255, -73.72825784223201 40.74782104619361, -73.72825872454808 40.7478210014487, -73.72826447130893 40.747810728474306, -73.72827229038293 40.74780127985319, -73.72828198423122 40.74779289645578, -73.72829330452191 40.7477857893157, -73.72830596515861 40.747780138760305, -73.72831964466668 40.74777608991355, -73.72833399688292 40.74777374461686, -73.72834865568798 40.74777316234071, -73.72836325159393 40.7477743575222, -73.72837741174064 40.74777730046578, -73.72839077766382 40.74778191558392, -73.72849725489783 40.74795748972507, -73.7284696957398 40.74805796406092, -73.72846103749177 40.74808243573516, -73.7284452493139 40.74812767798432, -73.72842945401018 40.74817292021427, -73.72841340564645 40.74821691373752, -73.72839735015715 40.748260907241516, -73.72838130885543 40.74830490077652, -73.72836525926606 40.74834888888642, -73.72835324668169 40.7483910143536, -73.72834124002456 40.748433134430215, -73.72832922861959 40.748475253593654, -73.72831899039177 40.74851722114972, -73.72830874505033 40.74855918778742, -73.7282985138828 40.748601159860435, -73.72828918686116 40.74863715377517, -73.72827985270666 40.74867315217469, -73.72827051856046 40.74870914607072, -73.72826140930924 40.748746028399765, -73.72825230715604 40.74878290984417, -73.72824319909444 40.74881978587065, -73.72822921998278 40.74887284068046, -73.72821523968679 40.74892589008244, -73.72820324891514 40.748969876036995, -73.72819125810186 40.74901386829352, -73.72814308986602 40.74917648405263, -73.72809164854314 40.74933852023761, -73.72804239664542 40.74947844593166, -73.72799507896555 40.74961875978738, -73.72797875488367 40.74966864373014, -73.7279440846885 40.74976017166475, -73.72790549991909 40.74985078532792, -73.72786304592472 40.74994039477184, -73.72781676805538 40.75002891004847, -73.72775587629873 40.75013380526762, -73.72769145597348 40.75023747192017, -73.7276235215706 40.75033983799378, -73.7276043936494 40.75036669640548, -73.72753943301102 40.75045788782472, -73.72745045748213 40.75057386386117, -73.72735673160398 40.750687652950944, -73.72725686358592 40.75080109513156, -73.72715220153982 40.75091201884825, -73.72704285612637 40.75102029017434, -73.72686905269428 40.75117580602361, -73.72668863780898 40.75132689972553, -73.72660005190373 40.751394037752746, -73.72646086184429 40.75149575580945, -73.7263433148354 40.75157763735146, -73.72622260637084 40.751656807027146, -73.7260988420713 40.75173320924614, -73.72597214778176 40.751806765953646, -73.72591690153146 40.751841031296635, -73.72586166117091 40.75187529032352, -73.72580642191171 40.75190955563006, -73.72575117549093 40.751943820893054, -73.7257043252005 40.75197075255778, -73.72565746897004 40.75199767968677, -73.72561062691503 40.75202460592988, -73.72556377058655 40.75205153842355, -73.72551691303606 40.7520784708952, -73.72546137464415 40.75210622013256, -73.72540584449494 40.75213396936286, -73.72535030598823 40.7521617239495, -73.72529476745751 40.75218947310621, -73.72523922888054 40.752217222236034, -73.72518817866016 40.752241412425306, -73.7251371330946 40.75226561340919, -73.72508606622215 40.75228980351347, -73.72503110189209 40.75230719984831, -73.72508337077444 40.75227123036296, -73.72513507526274 40.752242887728215, -73.72518675841854 40.752214538715776, -73.72523845452986 40.7521861960146, -73.72541121932981 40.75208341312947, -73.72558041899076 40.75197725988725, -73.72574593720717 40.75186779726124, -73.72588137064493 40.7517741433026, -73.72601330450408 40.75167762534248, -73.7261415750993 40.75157830964149, -73.7262661251933 40.75147629333073, -73.72634133948485 40.75141425039714, -73.7264141577259 40.75135057630239, -73.7264845145731 40.75128532402591, -73.72660095313991 40.75117444507966, -73.7267635040146 40.75101065606878, -73.72691900326586 40.75084295450156, -73.72706727263501 40.75067150297622, -73.72716571546466 40.75054872019086, -73.72725907440883 40.75042364879233, -73.72734727429088 40.750296434497464, -73.72743019862925 40.75016718960616, -73.72745920622712 40.750121080076894, -73.72748822205506 40.750074975062134, -73.72751723075669 40.75002886552045, -73.72754624652646 40.74998275508745, -73.72757078130624 40.74993902940619, -73.7275953148734 40.74989530281613, -73.72761985669341 40.749851577140724, -73.72764439019616 40.749807850539675, -73.72766589439236 40.74976391505659, -73.72768739856018 40.74971997956923, -73.72770891813703 40.74967603330797, -73.72772811330996 40.749634689426045, -73.72773580891615 40.74961814723109, -73.72774732977643 40.74959334469054, -73.72776653911077 40.749552000835315, -73.72778575670996 40.74951065699617, -73.72780330326569 40.74947111382758, -73.72782085690878 40.74943156977234, -73.72783840342287 40.749392026597945, -73.7278574267158 40.74934547103338, -73.72787644998218 40.749298915465324, -73.72789547442812 40.749252354493635, -73.7279140585719 40.74920313327122, -73.72793264150046 40.74915391294315, -73.72795168236986 40.749103310509376, -73.72796675387293 40.74905972988306, -73.72798228210979 40.74901477435315, -73.72799781743387 40.74896981793717, -73.7280083965295 40.74892795387481, -73.72801898861836 40.74888609434451, -73.72802955937676 40.74884423566316, -73.72803931597663 40.74880254255321, -73.7280490749729 40.74876083954228, -73.72805884577929 40.748719141060725, -73.72807063255988 40.748665384999725, -73.72808242645165 40.74861162265039, -73.72809422148265 40.74855786660574, -73.72810479898784 40.74850881825585, -73.72811536937664 40.74845976898738, -73.72812593974993 40.748410719717626, -73.72813670910394 40.74835991221916, -73.72814748673005 40.748309104738915, -73.72815825607691 40.748258290934224, -73.72816903248237 40.74820748434892, -73.72817980298412 40.74815666964375, -73.72818941919591 40.74811306080022)), ((-73.76379816894789 40.72579306536396, -73.76383589696358 40.725784541960046, -73.76383843233137 40.72578422837884, -73.76386611653028 40.72578079837358, -73.76388814941586 40.72577882550863, -73.76391029021865 40.72577779749809, -73.76393247327601 40.725777538607474, -73.76395463759647 40.725778225212075, -73.76397674000697 40.725779681623465, -73.76404115644804 40.725781506612336, -73.76410558118471 40.72578332978112, -73.76416999601538 40.725785946244876, -73.76422815120327 40.72578665517727, -73.76428630761426 40.72578735327669, -73.76434753667556 40.725788102660935, -73.76434937363649 40.72578813343587, -73.76440260297396 40.72578900239559, -73.76447138086394 40.7257902786507, -73.76454019062332 40.72579124605418, -73.76460897791722 40.72579220706703, -73.76467136823338 40.725792604751746, -73.76473840006241 40.72579291553161, -73.76478886582183 40.725790680003435, -73.7648304558679 40.72578522770583, -73.76487543839251 40.725775060935106, -73.76492757423902 40.72576244134758, -73.76497924623328 40.72574943807197, -73.7650223170766 40.72573859826126, -73.76502661409101 40.72573751651004, -73.7650825759572 40.72572343142214, -73.76514920642786 40.72570527523968, -73.76521584396109 40.7256871199336, -73.76528771634192 40.72566810356433, -73.76530879956165 40.725665200964166, -73.76533278273762 40.72566332094885, -73.76536222970645 40.72566280193076, -73.76538155005679 40.72566403898178, -73.76539479241613 40.725664886330954, -73.76542588461433 40.72566909833814, -73.76544656609491 40.72567339088776, -73.76546680704581 40.72567875054392, -73.76548651287911 40.7256851473972, -73.76550560201417 40.72569255516692, -73.76552397869183 40.72570094033943, -73.76554149527519 40.72570987487114, -73.76556196867479 40.725720832567944, -73.76558489549691 40.72573559091511, -73.76560577816183 40.72575201914862, -73.76562719128445 40.72577311401194, -73.76564308262641 40.725792506470526, -73.76567585490484 40.725838021121625, -73.7657062230514 40.72588020347841, -73.76573659837642 40.725922375035296, -73.76576695123741 40.72596455014022, -73.7657976601791 40.726006795300556, -73.76582837389762 40.72604903956156, -73.76585909004139 40.72609127841589, -73.76588978963049 40.726133523531686, -73.76592050464949 40.726175767769796, -73.76593431191334 40.726195436909656, -73.7659450828666 40.72621077111376, -73.76581348567665 40.72622347721501, -73.7657394370491 40.72622873956387, -73.76568542614005 40.72623257570911, -73.76563141404111 40.72623641182663, -73.76557740903482 40.72624024883378, -73.76551420473135 40.726244330031385, -73.7654510074968 40.72624841841277, -73.76538781742316 40.72625248786331, -73.76532461428012 40.726256568959236, -73.76526764470208 40.726258555529995, -73.7652106763043 40.72626054207496, -73.76515370792535 40.72626252228821, -73.76508998999992 40.72626118922659, -73.76506400525824 40.72626064182939, -73.76503455496588 40.726260013512366, -73.76497497494799 40.72625875636945, -73.7649153949101 40.72625750549925, -73.76486327272048 40.72625540893871, -73.76481115172109 40.72625331145648, -73.7647590295349 40.72625121574925, -73.76470518980072 40.726246108797824, -73.76465135009707 40.72624099551773, -73.76459750211275 40.726235883095946, -73.76453710685882 40.72622918226438, -73.76447671043017 40.72622248229923, -73.76441631521959 40.726215776001276, -73.76435591881841 40.726209075072234, -73.76429945506224 40.72620225338852, -73.764242990134 40.726195431674725, -73.76418652640096 40.726188609935626, -73.76412687845874 40.726181483576376, -73.76406723054835 40.72617435178319, -73.76400758263159 40.726167225362126, -73.76394792762557 40.72616009889559, -73.76388744046926 40.72614997468748, -73.76386522757598 40.72614625864746, -73.76382306977204 40.726139150888386, -73.76379450558204 40.726132330348385, -73.76376716335835 40.72612306021352, -73.76374181742962 40.72611095125108, -73.76371280712502 40.726092414110944, -73.76369177750098 40.72607413558033, -73.76367424808936 40.72605384077892, -73.7636634739703 40.72603755091091, -73.76365522993328 40.726020439564955, -73.7636474866558 40.72599530207987, -73.76364367267462 40.72596631036294, -73.76364509752807 40.7259416977848, -73.7636498804127 40.72592044290576, -73.76365668205906 40.725902693361945, -73.76366765784083 40.725882805564034, -73.76368154282565 40.7258639971466, -73.76369576698514 40.72584901119767, -73.76371935425884 40.72582995883694, -73.76374276989002 40.72581524568794, -73.76376681652879 40.72580383870885, -73.76379816894789 40.72579306536396)), ((-73.76564282705091 40.72758178842858, -73.76558505418237 40.72755607107207, -73.76552728727373 40.72753035459899, -73.76547599858165 40.727507741848896, -73.76542470165433 40.72748512455647, -73.76537341188306 40.727462501852564, -73.76532211615513 40.72743989982529, -73.76526867259156 40.72741613083552, -73.76526651048827 40.72741497197142, -73.76522143484569 40.72739079497634, -73.7651720361908 40.727364308338835, -73.76513402033792 40.727338760719284, -73.76509599863378 40.72731320226898, -73.76505797575925 40.72728764830612, -73.76502388152123 40.72725843276113, -73.76498978137242 40.727229223497396, -73.76495568720051 40.72720000613096, -73.76492224054401 40.72716139323258, -73.76488878564356 40.72712277940684, -73.7648553390646 40.72708416648861, -73.76482306026831 40.72703900652101, -73.76479077443273 40.72699384112649, -73.76475848862178 40.72694868112568, -73.76472513975038 40.726903226276875, -73.76469177673614 40.72685776688659, -73.76467207447146 40.72682916507787, -73.76465113817864 40.72680107763738, -73.7646290092465 40.726773516355586, -73.76460569578684 40.72674653077662, -73.7645812284714 40.72672015067937, -73.76455563450651 40.7266943815218, -73.76452894567738 40.72666927289635, -73.76450119031334 40.72664484737305, -73.76447237541176 40.72662113468225, -73.764442561328 40.72659813854873, -73.76441176918703 40.72657591034417, -73.76438003443565 40.72655446815053, -73.7643529883694 40.72653736070381, -73.76431824896594 40.72651538464361, -73.76518212977724 40.726539568794294, -73.76514252738757 40.7265542330103, -73.76509384372622 40.72657224480063, -73.76505814843121 40.72658899083796, -73.76502245195682 40.72660573055824, -73.76499460603324 40.726623724494786, -73.76496676721892 40.72664171213548, -73.76493717221592 40.72666729650681, -73.7649183770615 40.72668353129041, -73.76490082835963 40.726708481071014, -73.76488326545305 40.72673342721781, -73.76486802823767 40.72676515626597, -73.76485279100784 40.72679688531201, -73.76483663107288 40.726849243204384, -73.76483505846873 40.72689907253267, -73.76483721923883 40.72692978530958, -73.76483937882412 40.72696049898443, -73.76484739018584 40.72698731188489, -73.76485540157306 40.72701411938164, -73.76487613519312 40.72705171757891, -73.76489687714148 40.72708931038612, -73.7649250662676 40.72712475356246, -73.76495325658514 40.72716020303769, -73.76498483708797 40.72719161702655, -73.76501641880108 40.727223031909624, -73.76504799934435 40.72725445128395, -73.76508983700352 40.72728344128243, -73.76513167588281 40.727312431268004, -73.765181544828 40.72734148804316, -73.76523143038526 40.72737054573086, -73.76528131480552 40.727399602493904, -73.76530956357396 40.72741215557977, -73.76533404220864 40.727423037729466, -73.76538677676679 40.72744646845268, -73.76543950426307 40.72746989823676, -73.76549961529207 40.72748640098653, -73.76555972636984 40.727502898301886, -73.76561984457953 40.72751939560024, -73.76566969012973 40.72752625989651, -73.7657195345096 40.72753312326823, -73.76576938012147 40.7275399758147, -73.7658314246154 40.72754257571684, -73.76589346083146 40.72754517466816, -73.76595047775463 40.7275424854828, -73.76600749352745 40.72753978546074, -73.76604932412604 40.7275352157128, -73.76609116300169 40.72753064686702, -73.76612531819158 40.727519395008756, -73.76615949465761 40.72750814858667, -73.7662114602271 40.72748567286924, -73.76626343286053 40.72746319804321, -73.76631766076274 40.727427461427695, -73.76637188862892 40.72739171848293, -73.76640515295048 40.72735835086037, -73.76643841723872 40.72732498322808, -73.7664648819719 40.727281572792975, -73.76649135495336 40.72723816326882, -73.76650839469168 40.727193480196675, -73.76652544271194 40.72714879173548, -73.76652682632184 40.727108287707956, -73.76653355949891 40.727065298307714, -73.76654937193214 40.72707595460917, -73.7665695347579 40.727104102268974, -73.76658969642024 40.72713224902225, -73.76662077374532 40.72717235868634, -73.76665186059948 40.72721246205747, -73.7666829309004 40.72725257078947, -73.76671014809675 40.72728934971737, -73.76673738305968 40.72732613407765, -73.76676460035709 40.727362901285716, -73.7667918342122 40.72739968112786, -73.76682239909991 40.72744287485183, -73.76685295690291 40.72748607485662, -73.76688353013687 40.72752927398367, -73.76691409514025 40.727572468583055, -73.76694466016757 40.72761566767659, -73.76697153092077 40.727654789871735, -73.76699840170551 40.727693912060424, -73.76702527135701 40.727733028837164, -73.76705214222375 40.727772145609855, -73.76707901310314 40.727811267779074, -73.7671139789362 40.72785730963896, -73.76714893892103 40.727903345172415, -73.76718390486954 40.72794938160743, -73.76721886611585 40.72799542252453, -73.76725215319944 40.728042265104214, -73.76728543321182 40.72808911216218, -73.767318720411 40.72813594841849, -73.76735200761611 40.72818279637144, -73.76738528662288 40.7282296325912, -73.76741856684129 40.72827647420645, -73.76745173483972 40.72832190538341, -73.76748937848463 40.72837346096417, -73.76751806746516 40.72841275509363, -73.76755123323186 40.72845818623635, -73.76758440023063 40.72850361647109, -73.76761756727153 40.72854904759653, -73.76764360265263 40.72859915688835, -73.76761491201562 40.728582018080964, -73.76761074450268 40.72857952876004, -73.7675895193954 40.72855940991056, -73.76758012088955 40.72855050108747, -73.76753553350035 40.72850636254356, -73.76750698005351 40.728483510238185, -73.76747842666396 40.7284606471196, -73.76744085119371 40.7284336396271, -73.76740328283732 40.728406637539656, -73.76735370630007 40.72837333821287, -73.76730411554807 40.728340055945516, -73.76726355823646 40.728318522883825, -73.76722300684754 40.72829699612325, -73.76718244958829 40.728275463032865, -73.76713279124036 40.7282507300142, -73.76707547809198 40.728222187633044, -73.7670678197202 40.72821837378178, -73.76703347700034 40.72820127022075, -73.76697736648353 40.72817513008777, -73.76692125601073 40.72814898992742, -73.7668651526653 40.728122855157, -73.76681467898385 40.7281011613781, -73.76676420645593 40.728079485589575, -73.76671373280232 40.72805780257239, -73.76666325207616 40.728036120419155, -73.76660769949704 40.728010959191494, -73.7665521481625 40.7279857925363, -73.76649659684782 40.72796063215776, -73.76644104322979 40.727935465444, -73.76638929700144 40.72791251538372, -73.76633754962502 40.72788956529767, -73.76628581057021 40.72786661520511, -73.76623700023438 40.72784496597118, -73.76623549452293 40.72784429833652, -73.76617516717259 40.7278177836413, -73.76611625574084 40.72779190124821, -73.76605735143501 40.72776602514287, -73.76599844837753 40.727740143606646, -73.76593843093444 40.727713409691496, -73.7658784064341 40.72768667663109, -73.7658120684724 40.727657131907435, -73.76580597479057 40.72765441797764, -73.76575836702852 40.72763321583836, -73.76570059404865 40.72760750484354, -73.76564282705091 40.72758178842858)), ((-73.76704433908546 40.727277456976736, -73.76701337284722 40.72723494238531, -73.76698679787975 40.7271999640518, -73.7669602241082 40.727164990216906, -73.76693364917763 40.72713001727383, -73.76690348063283 40.7270875772078, -73.76687330385947 40.72704513171384, -73.7668731512917 40.727029191441105, -73.76687313119258 40.72702715444216, -73.76689429414942 40.727035399151596, -73.76690759783192 40.727047224592596, -73.7669214188061 40.72705870888456, -73.76693573703119 40.727069828573484, -73.76695055846349 40.727080572865, -73.76696581804069 40.72709092992063, -73.76698154418716 40.72710089529521, -73.76699770739548 40.72711044461492, -73.76701427807005 40.727119578720284, -73.76703124324672 40.727128281375606, -73.76704857807096 40.72713655163001, -73.76706627674047 40.72714435615259, -73.76708431789191 40.727151711109215, -73.76710267080244 40.72715860112883, -73.7671213130068 40.7271650189618, -73.76714023033797 40.72717095377316, -73.76715940744546 40.727176394725646, -73.76718799192807 40.72718373136324, -73.76722510778238 40.72719230543481, -73.76726292303339 40.72719889798053, -73.76729161025547 40.72720258142273, -73.76732054455282 40.727205001038215, -73.76735928778761 40.727206523743824, -73.76738838612101 40.727206374512875, -73.76741742972297 40.7272049491385, -73.76744634431961 40.72720250051458, -73.7674750337107 40.72719878080617, -73.76750346146005 40.727194054690415, -73.76753149463198 40.72718808596495, -73.76755911694178 40.727181131243114, -73.7675861740811 40.72717297319036, -73.76762135213214 40.72716053697894, -73.76765009800474 40.72714943674446, -73.7676698402206 40.72714116845673, -73.76768920894591 40.727132398727456, -73.7677081710149 40.72712313379335, -73.76772671457152 40.72711337903391, -73.76774479453792 40.727103162274254, -73.76776241807569 40.72709246641923, -73.76777954596278 40.727081337316164, -73.76779618297465 40.72706976326816, -73.76781228168824 40.72705776579215, -73.76782783493542 40.72704536378467, -73.76784282731889 40.72703255991635, -73.76785723744746 40.727019378458195, -73.76787105817836 40.72700583110262, -73.7678842586604 40.72699193939995, -73.76789683176655 40.72697771054013, -73.76790875730838 40.72696316339342, -73.76792003284983 40.72694831776635, -73.76793063702823 40.72693318982528, -73.76794055558327 40.726917795750886, -73.76794978726876 40.726902153551116, -73.76795830951986 40.72688628479285, -73.76796611637766 40.72687020117095, -73.76797320776427 40.7268539251982, -73.76797956111172 40.72683747934202, -73.76798502614386 40.726821188384626, -73.76798975299992 40.726804767166335, -73.76799374164608 40.72678822559275, -73.76799698369345 40.72677159336403, -73.76799946604686 40.72675489206607, -73.76800119456885 40.72673813791995, -73.76800216923498 40.726721338129806, -73.76800238993282 40.7267045251138, -73.76800185776516 40.72668772228754, -73.7680005715301 40.72667093505156, -73.76799851573062 40.726654194892596, -73.76799571517132 40.72663751716929, -73.76799216623273 40.72662092168558, -73.76798786409917 40.72660443184497, -73.76798283000228 40.72658806930246, -73.76797705683725 40.72657183494415, -73.76797055867405 40.726555767520274, -73.7679633437613 40.72653987785354, -73.76795541084991 40.726524184852025, -73.76794388019013 40.72650388028085, -73.76792654930892 40.72647749816873, -73.76791211121993 40.72645829986662, -73.76789628242203 40.72643974712799, -73.76787938047191 40.72642174603867, -73.76786117503636 40.72640449694802, -73.76784197665432 40.72638788161393, -73.76782158691086 40.72637211215669, -73.76779290541337 40.72635227276921, -73.76777032776491 40.72633833683569, -73.76774675122077 40.72632538314253, -73.76771450386778 40.72630708272194, -73.76768667518988 40.726290494075876, -73.76769432312668 40.726279930289806, -73.76770398338535 40.726270369230924, -73.76771543503531 40.72626203017804, -73.76772841344453 40.726255105306365, -73.76774261976767 40.726249754303744, -73.76775772688013 40.72624609988006, -73.76777338648336 40.72624422688118, -73.76885062118474 40.726081355817165, -73.76873356866969 40.72614865738137, -73.76866627893621 40.72619116505917, -73.76860085126124 40.726235318073314, -73.76856286920227 40.72627006003599, -73.76852489540826 40.726304796599585, -73.76848692039414 40.72633953224763, -73.76844970868432 40.72638248298881, -73.76841249575845 40.72642542921275, -73.76837527687569 40.726468372711054, -73.76834767666962 40.72650721660675, -73.76832005512513 40.72654606045274, -73.76829244775263 40.72658490432055, -73.76826608663401 40.726624470198885, -73.76823972546529 40.726664041473974, -73.76821337136748 40.72670361275714, -73.76818700305282 40.72674317860244, -73.76815997792916 40.726788818873814, -73.76813294449828 40.726834454619414, -73.7681059192974 40.726880095778064, -73.76808617101857 40.726921776726876, -73.76806643218137 40.72696345859165, -73.7680466826506 40.72700514493386, -73.76803031582416 40.727041133343754, -73.76801395724715 40.72707712717083, -73.76799759867122 40.72711311559241, -73.76797764439888 40.72716292502838, -73.76795768891304 40.7272127344582, -73.76793774407261 40.7272625376021, -73.76792206436721 40.727315661422026, -73.76790638464001 40.72736878433889, -73.76789071200879 40.72742190186452, -73.76788076507165 40.727462411155436, -73.76787081932491 40.72750291504461, -73.7678608652613 40.72754342431902, -73.76785092540894 40.72758392821801, -73.76784261771871 40.727629236035895, -73.76783431714135 40.7276745375637, -73.76782600944738 40.72771983997683, -73.76782090887123 40.72776501377918, -73.76781595241458 40.72780891094571, -73.76781092036516 40.72785343831767, -73.76780907958927 40.727894234099466, -73.76780723762744 40.727935029878594, -73.76780538858297 40.72797581933961, -73.76780806311906 40.72802900806557, -73.76781072939535 40.728082190470815, -73.76781591397962 40.728129784874305, -73.76782109026333 40.728177385564074, -73.76783096627993 40.72823134163663, -73.76784084943363 40.728285292319235, -73.76784736078874 40.72831256304106, -73.76785310092491 40.728346807572485, -73.76784521666711 40.7283520920896, -73.76783275491408 40.72836044352522, -73.76780178427296 40.728320942257966, -73.76777082077088 40.728281440996525, -73.7677398573055 40.72824193972655, -73.76770889387687 40.728202438447994, -73.76767792340458 40.72816293084306, -73.76764856485501 40.72812114458501, -73.76761919807515 40.728079352899485, -73.76758983131012 40.72803756750981, -73.76756046458509 40.72799578121187, -73.76753109791568 40.7279539895032, -73.76750174667451 40.727912196917345, -73.76747137565789 40.72787024647574, -73.76744101298743 40.727828289739136, -73.76741064206924 40.72778633297752, -73.76738027826957 40.72774438252552, -73.76735004703437 40.727702785333754, -73.76731980871266 40.727661194423, -73.76728957755289 40.72761959721488, -73.76725933814186 40.72757800088234, -73.76722910703555 40.7275364099614, -73.7671984693728 40.7274926137569, -73.76716783290884 40.727448824750404, -73.7671371953046 40.727405034832614, -73.76710623608776 40.727362509475206, -73.76707528401575 40.727319983223076, -73.76704433908546 40.727277456976736)), ((-73.76735736679282 40.726315063339996, -73.76738786478137 40.72631430999274, -73.76742625539725 40.72631497197559, -73.76742924348177 40.72631518062634, -73.7674690412214 40.726317958939006, -73.76750918277016 40.726322958595055, -73.76753896448037 40.72632801656724, -73.7675683143795 40.72633436589491, -73.76759725234704 40.72634173736539, -73.767625596496 40.72635035574002, -73.76766087084276 40.72636313675107, -73.76769024667959 40.72637665417629, -73.76771834608832 40.72639165126197, -73.76774503788845 40.726408068310576, -73.76777019449715 40.72642583212426, -73.76779372865799 40.72644484617328, -73.76781549975118 40.72646504173615, -73.76783541226499 40.726486313261354, -73.76785337897616 40.72650855431361, -73.76786932557188 40.72653169000141, -73.76787996996481 40.726549519086696, -73.76788927525074 40.72656779032446, -73.76789806932254 40.726588741355386, -73.76790552749328 40.72661125298174, -73.76791314997844 40.72664164622039, -73.7679171192617 40.72666465600074, -73.76791933736415 40.72668780903474, -73.7679199315413 40.726718750025825, -73.76791768857665 40.72674964027271, -73.76791263026502 40.72678033843874, -73.76790477369485 40.72681069507307, -73.7678941631388 40.72684057248594, -73.76788450915804 40.726862588554894, -73.76787318893577 40.72688414650531, -73.7678559407392 40.72691216178175, -73.76783654255993 40.726938244724245, -73.76781499127449 40.726962951841934, -73.76779131571158 40.72698650201616, -73.7677655979341 40.7270087837477, -73.76773797915871 40.72702969466159, -73.76771612270859 40.72704446849738, -73.76769321250389 40.72705829556594, -73.76766137291621 40.72707538247623, -73.76762808319374 40.72709079600146, -73.767593499796 40.72710447612183, -73.76755779106705 40.727116349334, -73.76752092206691 40.7271262525737, -73.76749232788661 40.72713220935765, -73.7674633319863 40.72713693522377, -73.76742427146672 40.727141543498576, -73.76738490197408 40.72714412318285, -73.76734538217404 40.72714466108927, -73.76731575596054 40.727143786260896, -73.76728624428729 40.72714163563085, -73.7672471719928 40.72713707120627, -73.76721817104715 40.72713239205288, -73.76718955916647 40.727126465569114, -73.76715207856607 40.72711693440456, -73.7671023111232 40.72709860378707, -73.76706181478318 40.72708288988113, -73.76702236662315 40.72706125271246, -73.76698292559404 40.72703961464408, -73.76693456176675 40.727002432773304, -73.76688620509245 40.72696525179694, -73.76685130306092 40.726932279121804, -73.76681640226334 40.72689930193584, -73.76678150858356 40.726866330156525, -73.76674719778987 40.726827136108255, -73.76671288703334 40.72678794295004, -73.76667857748512 40.72674875428631, -73.76664890339411 40.72671258902042, -73.76661867895693 40.72667573644097, -73.76658872676711 40.72663923200284, -73.7665587805222 40.72660272936978, -73.76652911966661 40.72656113401079, -73.76649944346332 40.72651953771224, -73.7664697743581 40.72647795312676, -73.7664500090902 40.72645059330056, -73.76650402229104 40.726438032639585, -73.76668537876026 40.72641647729748, -73.76671186418073 40.72641333234279, -73.76677127153336 40.726404785261764, -73.76683067887384 40.726396237249595, -73.76689007909705 40.726387689192364, -73.76695269669551 40.726378429007816, -73.76701531311495 40.72636916248328, -73.76707793070379 40.72635989502655, -73.76714054708526 40.72635062933437, -73.76719372241122 40.72634100682774, -73.76724690486473 40.72633137260428, -73.76729608169538 40.72632411301609, -73.76735736679282 40.726315063339996)), ((-73.73368522491637 40.74306871469937, -73.73375285075198 40.74303167004154, -73.73378057602163 40.74307378079215, -73.73380572867045 40.74311200168572, -73.73383562899701 40.743149666223644, -73.7338655305198 40.74318733615936, -73.73389542381366 40.74322499976445, -73.73392750756248 40.74326176430891, -73.73395959253065 40.74329852884697, -73.7339916775379 40.74333529247537, -73.73402371751732 40.74337207400083, -73.73405576582357 40.7434088546358, -73.73408781298124 40.74344563525897, -73.734124015843 40.74348779431273, -73.73416022467049 40.743529953368466, -73.73419642764907 40.743572106095456, -73.7342337145953 40.74361560127227, -73.73382095428101 40.74392648870108, -73.73363075632336 40.74404223199125, -73.73342673142852 40.744158132972714, -73.73338919089103 40.74417155374129, -73.7333573490842 40.744151811068896, -73.73330635971247 40.74412019674156, -73.73325537038554 40.74408858329196, -73.7331987224848 40.744056444320826, -73.73314208055866 40.744024305335415, -73.73308543989286 40.74399216092176, -73.73302879926001 40.74396002188309, -73.73297215157429 40.74392788370042, -73.73291550276285 40.74389574458652, -73.73285886110997 40.743863605461094, -73.7328030918222 40.7438356737175, -73.73278011511204 40.74382415870693, -73.73280641087428 40.74378924927187, -73.7328576801962 40.743730844895005, -73.73291788479177 40.743664828485066, -73.73297699349766 40.743606340475765, -73.73304045383514 40.74354535099756, -73.73312516503434 40.7434741512063, -73.73318337502035 40.743426235708384, -73.73322516686612 40.74339182944002, -73.73335774153958 40.74329464082337, -73.73353199318215 40.743173241893906, -73.73368522491637 40.74306871469937)), ((-73.72611220143821 40.75182079221008, -73.72616826621334 40.7517942073694, -73.726180974507 40.751806576369674, -73.7260292544064 40.751920457022834, -73.72587718758051 40.75202379617949, -73.725720846752 40.752123381537544, -73.72548628000607 40.75225641793739, -73.72524940950382 40.75238707011718, -73.7251930571377 40.75241828604817, -73.72513670711314 40.752449495653615, -73.72508036293411 40.752480710648484, -73.72502401161977 40.75251192019569, -73.72496765904245 40.75254313601585, -73.72491015408112 40.75257467414052, -73.72485265498237 40.75260621315094, -73.72479514872802 40.752637751215076, -73.7247376507045 40.75266929017061, -73.72470867500158 40.75268517976421, -73.72468494511318 40.75269820295809, -73.72455285410523 40.75277449446073, -73.72442817710974 40.75285071800045, -73.72430622488322 40.75292944504086, -73.72418707939269 40.7530106118507, -73.72414428028006 40.75304231988042, -73.72410148351733 40.75307402249674, -73.72405868669152 40.75310573050005, -73.72401588866317 40.75313743308144, -73.72396434863111 40.75317209988901, -73.72391280852301 40.75320677207632, -73.72386127667275 40.75324143885725, -73.72380973648343 40.75327610469461, -73.7237581962368 40.75331077140924, -73.72371599779389 40.753342312324506, -73.72367379938197 40.75337383611464, -73.72363159969737 40.75340537159288, -73.72358940238972 40.75343689535469, -73.72354720383184 40.75346842540151, -73.7235069036448 40.753500482285375, -73.72346660931734 40.75353254457219, -73.72342630784243 40.75356460772822, -73.72338759709069 40.75359628566968, -73.7233488874601 40.75362796990431, -73.72331017660855 40.753659654122934, -73.72315313418898 40.7538036816769, -73.72299757931266 40.7539486338142, -73.7229815134309 40.75396175613207, -73.7229745635488 40.75396743244229, -73.72293916977388 40.75391613171413, -73.72291436006196 40.7538651608068, -73.72288955041428 40.75381418359029, -73.72286276995078 40.75375874410191, -73.72286161098363 40.75375638467894, -73.72284023760966 40.75371287644341, -73.72281435739778 40.75365454396923, -73.72283025900008 40.75360092174187, -73.72284988689086 40.753547082449565, -73.7228641139029 40.7535102813169, -73.72287834206462 40.75347348468771, -73.72288633715182 40.753452812002465, -73.72289556435423 40.75343086085486, -73.72289650633562 40.753429017075376, -73.72290506671202 40.75341222154376, -73.72291588984935 40.753394331931766, -73.7229277380773 40.753376822098105, -73.7229408333842 40.75335984476262, -73.72296005324122 40.75333830486322, -73.72296081077458 40.753337531346, -73.72298085492686 40.75331710015243, -73.72300357723611 40.75329733997192, -73.72302795954825 40.75327876434709, -73.72305391035749 40.753261451401144, -73.72307428828287 40.75324930748717, -73.72309366799189 40.75323743762651, -73.72312058383784 40.753222695240055, -73.7231487149266 40.75320930563266, -73.72317773726776 40.75319772548387, -73.72317850232429 40.75319742024854, -73.7232080770587 40.75318684008528, -73.72323123504181 40.75317990236877, -73.72329889848073 40.75316276882888, -73.72336578500476 40.753143940424565, -73.72343182104606 40.75312345210047, -73.72349693193152 40.75310131988797, -73.7235610441425 40.75307756702546, -73.72362409953985 40.7530522203904, -73.72368602219626 40.753025313121285, -73.7237789107928 40.75297867696187, -73.72386961386191 40.75292961851948, -73.72395802691345 40.75287820508705, -73.72403120682635 40.75283192582114, -73.72410640361369 40.752787563122276, -73.72418354367798 40.75274516093526, -73.72426252255651 40.75270478204193, -73.7243432525406 40.75266644694032, -73.72443971058603 40.752623489269034, -73.72453807854397 40.75258311064266, -73.7246382318527 40.752545367490804, -73.72469752795463 40.75252056239379, -73.72475682522263 40.7524957509655, -73.72481950891071 40.75246869902304, -73.72488218546167 40.75244164252689, -73.7249398594317 40.752415894198805, -73.7249975274364 40.752390145827654, -73.72505520015538 40.75236439203578, -73.7251128668868 40.752338643603856, -73.72517102607586 40.75231177248142, -73.7252291781169 40.75228490041208, -73.72528735142183 40.752258029264596, -73.72533611031385 40.75223411993009, -73.72538486914495 40.752210216878396, -73.72543362917342 40.752186302102245, -73.72548239501705 40.752162404429065, -73.72553917255286 40.75213338751443, -73.7255959511973 40.752104376878044, -73.72565272861195 40.75207536531019, -73.7256984724956 40.75205114516942, -73.72574420923743 40.752026925893915, -73.72578995423866 40.75200270571945, -73.72583150061504 40.75198011716329, -73.72587303865208 40.75195753397534, -73.7259145778673 40.751934945372156, -73.72597112396579 40.75190279752072, -73.72602768547749 40.75187063166793, -73.72606993636704 40.751845712380145, -73.72611220143821 40.75182079221008)), ((-73.7336640517073 40.74228798927969, -73.73371214775781 40.74226293390915, -73.73376024258819 40.742237878515674, -73.73381141330583 40.74220897962577, -73.73386259112601 40.74218006992338, -73.73391330496214 40.742152598143036, -73.73396401992247 40.742125130845515, -73.73401331432846 40.74210145589929, -73.73406260867786 40.7420777863349, -73.7341118959568 40.742054099623374, -73.73416119026129 40.742030423713125, -73.7342104916309 40.74200674869861, -73.73425942415635 40.741982926028584, -73.73430837205977 40.741959097970216, -73.73435731990666 40.74193527529394, -73.73440625945238 40.741911447174665, -73.7344552072293 40.74188762445662, -73.73450867810325 40.74186192287219, -73.73456215602897 40.74183622398077, -73.73461562681688 40.74181052324698, -73.7346690963831 40.74178482158512, -73.73472256709209 40.74175911990101, -73.7347762084487 40.74173307098779, -73.73482985094734 40.74170702205222, -73.73488349930226 40.74168097850817, -73.7349371417385 40.741654924119395, -73.73499078293095 40.74162887420533, -73.73504007696305 40.741605108767715, -73.7350893567096 40.74158135408228, -73.73513864240877 40.74155758227969, -73.73518792921018 40.741533822165216, -73.73523721599798 40.74151005662653, -73.73528990282604 40.74148456719866, -73.7353425872459 40.74145907774115, -73.73539527403986 40.7414335765583, -73.73544795129686 40.74140808163306, -73.73550063680116 40.74138258670268, -73.73555147187473 40.74135795289051, -73.73560230570538 40.74133332445616, -73.73565818337562 40.74130625188237, -73.73570396735202 40.74128406300377, -73.73575480227524 40.74125942910151, -73.7358056359555 40.74123480057705, -73.73585989155784 40.7412085949787, -73.73591414591215 40.74118239475499, -73.73596841561148 40.74115619544141, -73.7360226627768 40.74112999515012, -73.73607251201089 40.74110606124708, -73.73612236002162 40.74108212822015, -73.73617220797516 40.74105820057462, -73.73622206420548 40.74103426662286, -73.73627190498736 40.74101033801726, -73.73632532340372 40.74098437252008, -73.7363787346998 40.740958400678245, -73.73643214474889 40.74093243421183, -73.73648554885804 40.740906462304, -73.7365376801091 40.74088080804155, -73.73658981013601 40.740855153752754, -73.73664194253344 40.74082948863964, -73.73669408076762 40.740803834322364, -73.73674621183672 40.74077818536822, -73.73680060518149 40.74075228851692, -73.73685499845904 40.74072639794336, -73.73690939882286 40.740700501056715, -73.73696379911945 40.740674610447805, -73.73701818400396 40.74064871437493, -73.73707317247616 40.74062196416874, -73.73712815969537 40.740595220237, -73.73718314099693 40.740568464558805, -73.73723812933669 40.74054171427356, -73.73729310931985 40.74051497024655, -73.73734809640864 40.74048821450281, -73.7374021721669 40.74046227161757, -73.73745624785822 40.74043633501034, -73.7374701143267 40.74042968392664, -73.73765032771 40.74033709069108, -73.7378278634689 40.740241550008264, -73.73791754427853 40.74019159475015, -73.73812563284385 40.74007110602907, -73.73832952425467 40.739946536183936, -73.73852908201084 40.73981797047555, -73.73872417079599 40.73968549506829, -73.7389146564603 40.73954920153269, -73.7389499085491 40.73956774732983, -73.73877002453817 40.73971804180705, -73.7385832780206 40.73986341534011, -73.73838990413071 40.74000368472568, -73.7381901427032 40.740138677577725, -73.73809100975272 40.74020576809276, -73.73795326954286 40.740287621014225, -73.73791860454692 40.74030761002662, -73.73772267617547 40.740420009758175, -73.73752206141718 40.74052752040627, -73.7373169702934 40.74063002986165, -73.73726151837658 40.74065843696787, -73.73720606520364 40.74068685034815, -73.73715060606735 40.74071526278756, -73.73709515282468 40.74074366981064, -73.73704810518628 40.74076796985672, -73.73700106341187 40.74079227530002, -73.73695401570482 40.740816575307434, -73.73690697506353 40.74084087621231, -73.73685197120591 40.74086966055857, -73.7367969601971 40.74089844486222, -73.73674194914078 40.74092722913944, -73.73669101474347 40.74095322392212, -73.73664007914748 40.74097921237597, -73.73658914350814 40.74100520170768, -73.73654825540021 40.74102685642774, -73.7365073577906 40.74104851201201, -73.73646646960813 40.74107017210595, -73.73642032723787 40.741091477966215, -73.73637419194176 40.74111278382422, -73.73632805663397 40.74113408516117, -73.73626978351324 40.74116164155182, -73.73621151034429 40.741189197912895, -73.73615323714499 40.741216749741845, -73.7360952059886 40.741244756854094, -73.7360491405735 40.74126869223467, -73.73600308338075 40.74129263572024, -73.73595701912262 40.74131656116101, -73.73591166544256 40.741340128008225, -73.73577575338176 40.74141053161588, -73.73572336453954 40.74143766898441, -73.735662564112 40.7414691608058, -73.73557202535724 40.74151605960415, -73.73520605109422 40.74170506541065, -73.73486000593321 40.74188864172853, -73.73460900212518 40.74202641453148, -73.73440633345056 40.74214147570886, -73.73418451620606 40.74226946329773, -73.7341258277704 40.7422617698393, -73.73406638939485 40.74225894728491, -73.73400689828694 40.74226103056255, -73.73394805307896 40.742267994270776, -73.7338905419711 40.74227975715366, -73.73391682925407 40.74227157461048, -73.7338469910023 40.74228501726067, -73.7337788122331 40.74230271321648, -73.73371273857632 40.7423245455442, -73.7336492027408 40.7423503720669, -73.73362278123749 40.742309488990124, -73.7336640517073 40.74228798927969)), ((-73.74225259652535 40.73681428954978, -73.74232772982998 40.73680147861168, -73.74234052533303 40.73681520942448, -73.74234069039167 40.73681538629401, -73.74233037993915 40.73683285656236, -73.7423005251882 40.73686707943781, -73.74227473738564 40.73689661794098, -73.74224348654425 40.736932433383494, -73.74221224283164 40.73696823352469, -73.74217225647148 40.73701159639129, -73.74213635260709 40.73705053966963, -73.74209228471271 40.73709833919431, -73.74205229821388 40.73714169751594, -73.74201231280844 40.73718506573163, -73.74197007527225 40.73723157707544, -73.74193268387044 40.737272748424125, -73.74189285867146 40.73731658882494, -73.7418530547298 40.737360429259475, -73.74181324362908 40.737404270564554, -73.74177342537267 40.737448111839704, -73.74173180770109 40.737492831566726, -73.7416901828948 40.737537544958975, -73.74164855802917 40.73758225923638, -73.74160524724553 40.737630942772434, -73.74155993026267 40.73767856639044, -73.74153727169953 40.73770086443274, -73.74153723010652 40.73770090486243, -73.74151354429306 40.737725545526395, -73.74146349394374 40.73777043173315, -73.7414124625579 40.73781458449987, -73.74135962576624 40.73785749138394, -73.74130503585846 40.73789910117112, -73.74125669670194 40.73793892035154, -73.74120836461195 40.7379787341244, -73.74115503582324 40.73802266278959, -73.74111168603109 40.73805836697965, -73.7410682796192 40.73809339654297, -73.74102488142432 40.73812843241193, -73.74098146781782 40.7381634619262, -73.74093806124449 40.738198497743475, -73.74089464870956 40.73823353263035, -73.74085124086105 40.738268568411904, -73.7407557796986 40.73835245321983, -73.74072252874754 40.73838344690777, -73.74069930513421 40.73840508703926, -73.74066356123922 40.738438408322025, -73.74057465322844 40.73852636724097, -73.74048914475823 40.73861625454208, -73.740407102449 40.73870798933691, -73.74037112445714 40.7387502646855, -73.74033514521469 40.73879254542291, -73.74029916713151 40.73883482074849, -73.74026318898163 40.73887710146559, -73.7402631628164 40.73887713202396, -73.7402329500309 40.738912491796924, -73.74017200173898 40.738877390151046, -73.74027802427663 40.73872593006175, -73.74037711793557 40.738571779733874, -73.74040808707859 40.7385312355818, -73.74043917632223 40.7384899388644, -73.74047027263066 40.738448642154374, -73.7405013617972 40.73840734541974, -73.74053184111801 40.73836698563539, -73.74056232868908 40.738326625861454, -73.74059280795707 40.73828626065751, -73.74062766609994 40.73824111638786, -73.74066252423766 40.738195961301344, -73.74069738349795 40.73815080980865, -73.74072551053969 40.73811461584467, -73.74075363755088 40.73807842187365, -73.74078177395708 40.73804223962341, -73.74081282450898 40.73800316247696, -73.74084388330819 40.73796408624106, -73.74087494089055 40.73792500909346, -73.74090704245732 40.73788536786433, -73.7409391369106 40.73784571940606, -73.74097123960934 40.73780607185779, -73.74100050236632 40.73776879526372, -73.741029765087 40.73773151956253, -73.74105902663662 40.73769423214453, -73.74108116994209 40.73766137994351, -73.74110331322221 40.737628528638595, -73.74112699921295 40.7375959500501, -73.74115069348866 40.7375633660722, -73.74117668692074 40.737526802493285, -73.74120267201617 40.73749024429273, -73.74122368733869 40.73746247111521, -73.74124470145628 40.737434698831564, -73.74126424100696 40.737410132654105, -73.7412837794467 40.73738554395799, -73.74130686835579 40.73735851294236, -73.74132995606573 40.737331481018785, -73.74135401824692 40.737301359823114, -73.74137807921907 40.73727123952016, -73.74141071726531 40.737234138795706, -73.74144336347149 40.737197061493504, -73.74147600973212 40.73715996076875, -73.74151170382882 40.73712393578294, -73.74154740383418 40.73708790359513, -73.74158310497431 40.737051874100274, -73.74161880606192 40.73701584819614, -73.74165422546218 40.736980098106, -73.74170257640796 40.736931194421445, -73.74172338288086 40.736926659284045, -73.74179810844096 40.73691036820006, -73.74186665836191 40.73689542840065, -73.74193098223613 40.7368819073016, -73.74199530726808 40.7368683861692, -73.74205963111096 40.73685485959519, -73.74212395609071 40.736841338390924, -73.74218827275729 40.736827817132124, -73.74225259652535 40.73681428954978)), ((-73.76645191759533 40.72615257987869, -73.76627914041171 40.72616758753374, -73.76583336947449 40.72553823145587, -73.76598994603171 40.72549572952508, -73.76599004581554 40.72550742648166, -73.76599018815747 40.72552419520981, -73.76599869951994 40.72556005289562, -73.76601515199404 40.725594275178885, -73.76603906977773 40.72562584351062, -73.76606973051764 40.725653836995605, -73.76610623874285 40.725677419034604, -73.76614752090515 40.725695901251456, -73.76619234907835 40.725708736337666, -73.766239400054 40.72571554338771, -73.76628728491876 40.72571611246185, -73.76633459625454 40.725710447006556, -73.7663799367886 40.72569869547352, -73.76642195940016 40.72568121983976, -73.76645944074299 40.72565852911858, -73.76649124335016 40.725631284685065, -73.76651645766846 40.725600302364604, -73.76653433241084 40.72556649826009, -73.7665443219941 40.725530862732676, -73.76654615522135 40.72549445153536, -73.76653977271013 40.72545833885925, -73.76652534591439 40.7254235930581, -73.7665033222405 40.72539123711766, -73.76647505200664 40.72536404734999, -73.76669565770173 40.72530416384284, -73.76675496640681 40.7252954499763, -73.76681528424224 40.725292975070886, -73.76687548065475 40.725296786364176, -73.76693443024442 40.725306811338335, -73.76699103050261 40.725322862258636, -73.76704422310367 40.725344639818104, -73.7670930104658 40.72537173587254, -73.76713648057213 40.725403643395616, -73.76717382113989 40.72543976641272, -73.76720433261518 40.725479427230674, -73.76722744467878 40.72552188538138, -73.76725184546312 40.725569860869044, -73.76726815615862 40.72561978401631, -73.76727612027051 40.72567086816108, -73.76727561275199 40.725722308894994, -73.76726664114845 40.72577329577223, -73.76724934673244 40.72582302672001, -73.76722400091948 40.72587071793729, -73.76719100521608 40.72591561920348, -73.7671508769819 40.7259570237557, -73.76710424821256 40.7259942781926, -73.7670518536529 40.726026796858925, -73.76699451894135 40.72605406722512, -73.76693314636792 40.72607566066545, -73.76686870184042 40.72609123603409, -73.76684559117605 40.72609609072688, -73.76681745289852 40.72610075062838, -73.76678903707446 40.726104217682796, -73.76671410518917 40.726115016118484, -73.76664029560473 40.72612609773982, -73.7665832593659 40.726134655863454, -73.76654034684555 40.7261405104426, -73.76649743313394 40.72614636500334, -73.76645191759533 40.72615257987869)), ((-73.72301307548325 40.75446438590615, -73.72301382212778 40.75446367089562, -73.72302231335455 40.754478339907365, -73.72304732682015 40.754521393092624, -73.72306697126747 40.75455787675222, -73.72307497930117 40.754573416291734, -73.72308490613759 40.75459483987229, -73.72310045095936 40.754632460919936, -73.72311428541089 40.75467046597375, -73.72312638241789 40.754708815346966, -73.723136741003 40.75474745860913, -73.72314534479808 40.754786344392315, -73.7231521844839 40.75482543485319, -73.72315724720347 40.754864688537644, -73.72316319968728 40.75491609223756, -73.72316678442482 40.754967626223554, -73.72316801114991 40.75501922658303, -73.72316633764984 40.755078549047944, -73.72316581171056 40.75508627956116, -73.72316336199879 40.75512237060934, -73.72315747837983 40.75517378008133, -73.7231506188558 40.755216383823544, -73.72314204422152 40.75525879253489, -73.7231317793869 40.75530099546883, -73.72311982101333 40.755342940387244, -73.7231061728561 40.755384577770606, -73.7230908610545 40.755425886069006, -73.72308402119491 40.75544237867218, -73.72307388933045 40.75546682386725, -73.72304300122359 40.75551904401037, -73.72303502846904 40.7555206268483, -73.72299843464697 40.755527886117534, -73.7229694540913 40.755530306335025, -73.72294059606197 40.75553344724774, -73.72291189135481 40.7555373071288, -73.72288336011898 40.75554188152424, -73.72285505564246 40.755547170562444, -73.72282698625872 40.755553163457456, -73.72279919230841 40.755559841395886, -73.72277170689202 40.75556721796521, -73.72274454308375 40.75557528149044, -73.72271392107827 40.75558512329637, -73.72268376110587 40.75559577036167, -73.72265409999208 40.755607194859564, -73.7226249685778 40.75561938425754, -73.72259640951218 40.755632334156246, -73.72256741049361 40.7556465653141, -73.72254113197894 40.75566042030072, -73.722514471611 40.75567553867724, -73.72248851062547 40.755691339517774, -73.72246327985991 40.75570781119056, -73.72243881373102 40.75572493576874, -73.722415136054 40.75574268179236, -73.72239196500975 40.75576132774076, -73.72236960517955 40.75578053215463, -73.7223480779468 40.75580027887675, -73.72232739170249 40.75582054361411, -73.72230758913823 40.75584131206186, -73.72228867275038 40.75586255360919, -73.72227067815196 40.755884247630654, -73.72225360662155 40.755906371616994, -73.72223749257674 40.75592890764144, -73.72220547030335 40.75597317692508, -73.72217346222419 40.75601743993025, -73.72214143868143 40.75606170919266, -73.72210941512247 40.75610597214238, -73.72208428226652 40.75614120788862, -73.72205915767715 40.75617644274865, -73.72203402476802 40.756211678483545, -73.72200240492859 40.75625479602822, -73.72197076376247 40.756297906308525, -73.72193913675467 40.75634101931562, -73.72190750968714 40.756384136816294, -73.72187195058757 40.75642904313249, -73.72183955576581 40.75646996151693, -73.72181158269369 40.756503817967484, -73.72177622931154 40.75653459845543, -73.72180668449424 40.75646587937302, -73.72190942001377 40.756280844862964, -73.72200451234886 40.756093459492725, -73.72202526936385 40.75604918559452, -73.72204602753544 40.75600491169516, -73.72206678449149 40.75596063868942, -73.72208754263049 40.755916359378986, -73.72210830663654 40.75587208638232, -73.72212905641214 40.755827811546325, -73.72215374721053 40.75577644209075, -73.72217842968149 40.755725072609486, -73.72220312629847 40.755673709460375, -73.72222781698261 40.755622339987774, -73.7222525064445 40.755570970506625, -73.72236745638193 40.75535790873727, -73.72249173624463 40.75514789413765, -73.72262903548105 40.75494615221542, -73.72277422261024 40.75474763222278, -73.72292186123059 40.75456223296611, -73.7229544786738 40.754525773229716, -73.72298732689048 40.754489054692044, -73.72301307548325 40.75446438590615)), ((-73.79109092312896 40.71905677802354, -73.79091275102306 40.71904294509733, -73.79093561380516 40.71898220202869, -73.79094195181334 40.718976523199785, -73.79095843102196 40.71896465195021, -73.79097708159364 40.71895481349498, -73.79099747318332 40.71894723578192, -73.79101913656187 40.71894209175726, -73.7910415742621 40.71893950118609, -73.79116235522314 40.718963984644155, -73.79126642899469 40.71897945687581, -73.79137156095022 40.718990002426516, -73.79147734997005 40.718995580043796, -73.79158338895121 40.71899616917768, -73.79157867103135 40.718997766250446, -73.79174697537954 40.71899394106071, -73.79218893850587 40.71889590211914, -73.79325515010291 40.71856178470545, -73.79464627381019 40.71816894138069, -73.79594639243511 40.717795682639256, -73.79753253897987 40.717333959078246, -73.7978766897623 40.717232532139064, -73.7978873076372 40.7172608700954, -73.79787862608903 40.71725006851598, -73.79605409678678 40.71779406525563, -73.79559420831357 40.71794828548056, -73.79510913945177 40.71814125853672, -73.79462068053218 40.7183292175533, -73.79462038319744 40.718328535335004, -73.79451473542099 40.71836915444039, -73.79442217345874 40.718403807508025, -73.79442210591912 40.718403832601794, -73.79417059105299 40.71849368029419, -73.79391601416434 40.71857838993617, -73.79365855775588 40.71865790059975, -73.79339840313312 40.718732156759195, -73.79313573751679 40.71880110470202, -73.79287074811366 40.718864696120235, -73.79260362094385 40.71892288450622, -73.79233454911456 40.71897562876988, -73.7921600058817 40.71900616175805, -73.79198377648264 40.71903044638186, -73.79180624578251 40.719048431099885, -73.79162780453508 40.7190600742891, -73.79144884107187 40.71906535233488, -73.79126974960629 40.719064253342246, -73.79109092312896 40.71905677802354)), ((-73.73606800023705 40.74181940252006, -73.73609787559113 40.74181721700154, -73.73613135611063 40.741818620167365, -73.7361521938345 40.74182162428527, -73.73617242524429 40.74182645414747, -73.73619973379704 40.741835921639726, -73.73622913332723 40.74185075015441, -73.73626531430686 40.74187792218778, -73.73628322362157 40.7418924155005, -73.73613429495978 40.74200031762, -73.73610400532937 40.74202547063438, -73.73607369910074 40.742050623602715, -73.73603945152419 40.742076645528144, -73.736005188533 40.742102666507535, -73.7359709326188 40.74212868749291, -73.73592516935025 40.74216584031599, -73.73587940721457 40.74220299312339, -73.7358336438011 40.74224015671572, -73.73578972939076 40.74227710030432, -73.73574581493178 40.742314043875986, -73.73570190038117 40.742350998236724, -73.73565857827487 40.74238782516739, -73.73561458133092 40.742425229561086, -73.73557091459513 40.74246235373661, -73.73552725138755 40.7424994716, -73.73548243978098 40.74253894794913, -73.73543763643052 40.74257841889662, -73.73539282355522 40.7426178898047, -73.73534712920267 40.74266017997073, -73.73530143362603 40.742702465613135, -73.7352635576272 40.742739231069145, -73.73522217238272 40.74277924379221, -73.73518671333957 40.74281230017137, -73.73514774501085 40.742848613722465, -73.73513101016329 40.74286420810823, -73.73506377918021 40.74291831286209, -73.73496492614264 40.74301172055522, -73.73496896589322 40.742946839029585, -73.73496514993244 40.74288195023195, -73.73495350925288 40.74281760264399, -73.73493414234684 40.74275434129917, -73.73490721286646 40.74269270057332, -73.73487294962617 40.742633203284186, -73.73483164307883 40.74257635347971, -73.73478364178453 40.74252263102693, -73.73472935241388 40.7424724907117, -73.73469102443133 40.74244402191864, -73.73543062528053 40.74201988601931, -73.73570294924518 40.741872303363394, -73.73577657935938 40.74186979779148, -73.73580404042269 40.74186826418333, -73.7358314249233 40.741866033397415, -73.73585869260593 40.741863105341494, -73.73588581614948 40.7418595024657, -73.73591277314729 40.74185520220609, -73.73593952443879 40.74185022698571, -73.73596604279226 40.741844576742274, -73.73599229740276 40.74183825680842, -73.73601825744032 40.74183127882028, -73.7360473071993 40.741822913015824, -73.73606800023705 40.74181940252006)), ((-73.78554679375492 40.71956811267465, -73.78555595319037 40.71956706983225, -73.78555592302189 40.719567249878544, -73.78596367229594 40.71952869496045, -73.78626346090448 40.71948792647968, -73.78656227353208 40.71944320306021, -73.78656146057926 40.719444632467436, -73.7869394972891 40.71937059554929, -73.7878420192751 40.71918510691105, -73.78798515024576 40.719142507085685, -73.78812560512534 40.71909502948472, -73.78826309597392 40.719042771744306, -73.78839734193289 40.71898583871863, -73.78858473612425 40.718896171361415, -73.78863925631599 40.718867156095506, -73.78869860839467 40.71884427765938, -73.78876160736571 40.718827994033276, -73.78882699291782 40.71881862888511, -73.78889346019633 40.718816370726756, -73.78895968350105 40.71882126395293, -73.7890243387654 40.71883321068331, -73.78908613432127 40.718851972619895, -73.78917436039272 40.718882920933254, -73.78926537573167 40.71890877288116, -73.78935867421104 40.71892938525011, -73.78945373304612 40.718944641812996, -73.78955002461632 40.718954457853485, -73.78964700937044 40.71895877835189, -73.78965282057894 40.718959920913484, -73.7896557007554 40.71896048629435, -73.79008430846264 40.71898103931916, -73.79011101001097 40.71897862599974, -73.79011176214284 40.718976940711116, -73.7901251137408 40.718977351370846, -73.79020892831446 40.718977416779246, -73.79029255529085 40.71897315752423, -73.79037560993758 40.71896459271704, -73.79045770982765 40.71895176128546, -73.79052530280347 40.7189378101794, -73.79054978092478 40.71893561153737, -73.79057442499013 40.71893597064721, -73.79059877462429 40.71893887946751, -73.79062237669439 40.71894428494452, -73.79064708785575 40.71895305134484, -73.7906697831359 40.718964548030186, -73.79068994258893 40.71897851470902, -73.79070710918246 40.71899463177034, -73.79070907760324 40.71899684070358, -73.79068545344005 40.71906177422849, -73.79003375621582 40.719064866790056, -73.78938218532417 40.71907515008772, -73.7887308802191 40.7190926225789, -73.78846669883887 40.7191281480841, -73.78820415487763 40.71917011375925, -73.78794351825323 40.71921847598761, -73.78768505771959 40.71927318574951, -73.78742904205936 40.719334185923124, -73.78712437901642 40.719406315074266, -73.78681752818466 40.719472861594625, -73.78650866729254 40.71953378707419, -73.78619797287612 40.719589056704756, -73.78588562619895 40.71963863839002, -73.78557180378372 40.71968250272835, -73.78525668923905 40.719720625736386, -73.78526999614931 40.71962767624567, -73.78529118848995 40.7196194256515, -73.78531390090457 40.7196139973925, -73.78533785732171 40.71961222032498, -73.78533552754035 40.71959217057346, -73.78539130115293 40.719585819677576, -73.7853911462649 40.71958282968741, -73.78554679375492 40.71956811267465)), ((-73.7361641337152 40.74174787816655, -73.73614349672931 40.741746509838784, -73.73612020178386 40.741746327694116, -73.73609179243545 40.74174785830405, -73.73606879791735 40.74175074037618, -73.73603870912477 40.74175660128428, -73.7359967720817 40.7417664269912, -73.73596689663268 40.74177252520402, -73.73593679541618 40.741777931298955, -73.73590649686949 40.74178263993793, -73.73587499120246 40.74178064509738, -73.73591612316835 40.74175827617042, -73.73644686568865 40.74148441911145, -73.7364699383075 40.74147493459507, -73.7365129443935 40.74145428521697, -73.73655729122576 40.74143290227156, -73.73658115447441 40.74142017950235, -73.73660570587337 40.74140708639093, -73.73665549910856 40.741380545128656, -73.73670526860738 40.741354008293136, -73.7367550463755 40.74132746605196, -73.73680897562265 40.74129928083856, -73.7368629060117 40.74127109470205, -73.73691683396237 40.74124291483823, -73.73697076546541 40.741214723250685, -73.73702469452648 40.74118653883632, -73.73708246273114 40.74115574807675, -73.73714023914516 40.74112496361048, -73.73719800722526 40.7410941772952, -73.7372557823947 40.741063381061466, -73.73731355038576 40.74103259018546, -73.7373709248918 40.74100219100598, -73.7374283005436 40.740971788198515, -73.73748567494137 40.74094138986217, -73.73754304931163 40.740910985193565, -73.73760042360468 40.740880586799754, -73.73765000837535 40.740854168002414, -73.73769959192633 40.74082774828045, -73.7377491611847 40.74080134021117, -73.7377987446783 40.7407749150433, -73.73784832098644 40.74074850064386, -73.73789833291399 40.740720288893606, -73.73794835306549 40.74069208254341, -73.73799836488708 40.74066387615249, -73.73804837668757 40.740635664336736, -73.7380983955245 40.740607458818836, -73.73815470682548 40.740572964908054, -73.73831426819991 40.74047523669258, -73.73852458714482 40.740337937077115, -73.73872915291984 40.740195693726264, -73.73887719670772 40.74008701629917, -73.73902083360106 40.73997496708636, -73.73915992350291 40.739859646644135, -73.73929434642135 40.73974116187796, -73.73933431852353 40.73970415759655, -73.7393742834955 40.73966714878249, -73.73941424014265 40.739630138134636, -73.73945080261208 40.739595503447276, -73.7394873662274 40.739560868750836, -73.73952392861734 40.739526234940435, -73.73956687127863 40.73949126074527, -73.73954226700202 40.73953335353395, -73.73951125710676 40.73957286267013, -73.73947897159925 40.739611588168906, -73.73944668605775 40.73965031275798, -73.7394072276663 40.73969402975135, -73.73936777038239 40.73973775303713, -73.73932831778234 40.73978147631985, -73.73929523204494 40.739817095892874, -73.7392621533263 40.7398527280794, -73.73922907578084 40.739888353955365, -73.7391952018631 40.73992084063712, -73.7391613302767 40.73995332821461, -73.73912746576076 40.73998581579812, -73.73909358579965 40.74001830873964, -73.73905682758718 40.74005172807929, -73.73902007760412 40.74008515282888, -73.73898331929674 40.74011857754777, -73.73894567477568 40.74014973636084, -73.7389080242821 40.74018089965054, -73.73887038798507 40.740212056656524, -73.73883274454582 40.740243214534445, -73.73878727802425 40.740279099450184, -73.73874181029444 40.740314978041575, -73.73869634365727 40.740350867423594, -73.73865679953514 40.7403805927205, -73.73861726010988 40.74041031891495, -73.73857772420467 40.74044004420327, -73.73853817166795 40.74046977484329, -73.73849090332887 40.74050494054507, -73.7384436289919 40.74054011341784, -73.73839635342466 40.74057528536787, -73.73835684999865 40.740603925537926, -73.73831734537595 40.7406325602886, -73.73827783359089 40.74066120131298, -73.73823172669886 40.74069268195423, -73.73818560432616 40.7407241742484, -73.73813948905588 40.740755655734084, -73.73808960801509 40.74078793729636, -73.73803973639393 40.74082021975899, -73.73798985525646 40.74085250127781, -73.73793514386145 40.74088621170118, -73.73788042412698 40.74091992117907, -73.73782570435493 40.74095362612823, -73.73776807692074 40.74098638429723, -73.73771044113876 40.74101914331886, -73.73765280643798 40.74105191402069, -73.7376089708621 40.74107681144648, -73.73756513518606 40.74110172596506, -73.73752129243744 40.741126624241666, -73.73747745553314 40.741151533320966, -73.73742712186421 40.74118074462224, -73.73737677984225 40.74120996128551, -73.73732406221117 40.74124021890242, -73.7372760968888 40.7412683846428, -73.7372274787403 40.74129695860625, -73.73717885463033 40.74132553253556, -73.73713022218392 40.7413541082263, -73.7370815968066 40.7413826821116, -73.7370368360583 40.74140969701058, -73.73699208237731 40.741436711908285, -73.73694732153508 40.741463732175255, -73.73690107776217 40.74149209800282, -73.736854832741 40.74152047011254, -73.7368118363789 40.741544368684295, -73.73676883881977 40.74156826273469, -73.73671513942917 40.741599641666625, -73.73666144235588 40.74163102057875, -73.73661605235698 40.741659590858916, -73.73657066466566 40.741688166529514, -73.7365272467405 40.741715622850585, -73.73636379143859 40.741834043322875, -73.73634617071825 40.74181962362467, -73.73632292524466 40.74180125040964, -73.73630675698868 40.74179138791529, -73.73628974226966 40.7417824059813, -73.73627194015657 40.74177433716105, -73.73625345465148 40.74176722851884, -73.73623435902347 40.741761114441616, -73.73621475739904 40.74175601047626, -73.73619219671247 40.741751590421586, -73.7361641337152 40.74174787816655)), ((-73.7132358252406 40.75961608287001, -73.71318529270651 40.75961452526044, -73.71269051058371 40.759291855448765, -73.71271046612719 40.75929366481193, -73.71277627196359 40.75929962998426, -73.71284207067903 40.75930560140485, -73.71290787656618 40.759311560198505, -73.7129736824379 40.759317525258076, -73.71303948002772 40.75932349115991, -73.71311071054294 40.759328209840746, -73.71318194580142 40.7593329293898, -73.71325317751725 40.75933764888596, -73.71332440690169 40.7593423620287, -73.713395644559 40.759347081451494, -73.71346260055815 40.75935026651838, -73.71352956364218 40.75935345786752, -73.71359651963095 40.75935664825956, -73.71366347681034 40.75935983861566, -73.71373043990975 40.759363030748496, -73.71379148498706 40.759365440905455, -73.71385253119891 40.75936786364001, -73.7139135763044 40.759370269229805, -73.71397462849664 40.75937268020787, -73.71403566645515 40.75937509742177, -73.71409977337888 40.75937739885001, -73.71416388743968 40.75937969395672, -73.71422799442249 40.75938198360715, -73.71429210020223 40.75938427862192, -73.7143562071707 40.75938657360396, -73.71442032124915 40.75938886856795, -73.71448442704221 40.75939116347571, -73.71455106797261 40.759392171497836, -73.7146177212773 40.759391673860115, -73.71468432295896 40.7593896803097, -73.71475081972125 40.75938619071464, -73.71481715352678 40.75938120583206, -73.71488326397362 40.75937472551266, -73.71494620038742 40.759367174700316, -73.7150091297083 40.75935961753249, -73.71507206490931 40.75935206664846, -73.71513499415158 40.75934452111836, -73.71519793053524 40.75933696386495, -73.71526085979518 40.75932940746011, -73.7153237949391 40.75932185643848, -73.71538432524406 40.75931531071327, -73.71544486143154 40.7593087712744, -73.71550538339979 40.759302230868116, -73.71556591958652 40.75929568596258, -73.71561720989945 40.75929057882776, -73.71568743062014 40.759287469795716, -73.71575765133804 40.75928435982035, -73.71581657428773 40.75928175053179, -73.71584675987467 40.75928656977608, -73.71586269486039 40.75931003853622, -73.71585359097608 40.759329830892234, -73.7158411870911 40.75934365643636, -73.71582433164686 40.75935911352744, -73.7158054654155 40.75937315365666, -73.71578837275358 40.759383696077016, -73.71577007383534 40.75939300452221, -73.71574282914115 40.7594039154102, -73.71570987690001 40.759413278639315, -73.71564300260182 40.75942559284889, -73.71558883305835 40.75943517202122, -73.71553465522872 40.75944474664508, -73.7154804856541 40.75945432576644, -73.71542008261339 40.75946404255058, -73.71535968076626 40.759473753002496, -73.71529927769411 40.75948346882278, -73.71518105606376 40.759505560559795, -73.71506203327267 40.759525002696144, -73.7149423041259 40.75954178375726, -73.7148219871104 40.75955589322816, -73.71470117113371 40.75956731421743, -73.71435221716197 40.75959455619461, -73.71400230096528 40.75961331733, -73.71378609845755 40.75961964946928, -73.7135697338595 40.7596204273576, -73.7132358252406 40.75961608287001)), ((-73.7257691454543 40.75252904845182, -73.72582256836499 40.75250523466385, -73.72577167634537 40.75254449642349, -73.72571805416707 40.752577005938946, -73.7256644402254 40.75260951544896, -73.72561081910426 40.75264203031996, -73.72555741225798 40.752676271053765, -73.72550401248019 40.752710507277094, -73.72545060552409 40.752744747960996, -73.7253971973252 40.75277898951767, -73.72534379857056 40.752813224768495, -73.72529038316073 40.752847465357895, -73.72523697598126 40.7528817068426, -73.72519595486284 40.75290940052709, -73.72515493373255 40.75293708879389, -73.72511391254965 40.75296478154845, -73.72507289132514 40.752992476089325, -73.72499112879986 40.75305002341738, -73.7249114799289 40.7531092767984, -73.7248340408665 40.75317017883375, -73.72475883663283 40.753232692666735, -73.72466631615627 40.753311821794604, -73.72457717304849 40.75339316157064, -73.72449150948962 40.75347663030058, -73.72444945417642 40.75352029088869, -73.72440738225222 40.75356394601847, -73.72436531853961 40.75360760655549, -73.72433034276786 40.75364995218555, -73.72429537287245 40.75369229781895, -73.72426040295493 40.753734638038445, -73.72422733037969 40.75377403722155, -73.72419425776533 40.75381343639491, -73.72416119342718 40.75385282927488, -73.7241235924452 40.75389708574055, -73.72408598314645 40.75394133677078, -73.72404837377908 40.753985592290945, -73.72403043350768 40.75400872573558, -73.72401153472688 40.75403140662593, -73.72399169760804 40.754053625104234, -73.72397095422032 40.754075357833585, -73.72394930467887 40.754096576897986, -73.72392679051902 40.75411726078423, -73.7239034224577 40.75413739510939, -73.72388359671197 40.75415342529208, -73.7238542315864 40.754175923478606, -73.7238284527363 40.754194282507164, -73.72377595020518 40.75422381491379, -73.72372344765364 40.754253340992896, -73.72367094502941 40.75428287335145, -73.72361844236237 40.754312404785416, -73.723566337792 40.75434044770746, -73.72351423312541 40.75436850321283, -73.72345243284393 40.75440098573802, -73.72341422545547 40.75441285097524, -73.723380725745 40.754416316742535, -73.72335815448268 40.75441532420681, -73.72333732288769 40.754411743277025, -73.7233162511936 40.754405526874805, -73.72324822850237 40.75438113524967, -73.72322378967367 40.75437048023208, -73.7232196979306 40.754366864759014, -73.72320228323848 40.75435148002639, -73.72317053200857 40.7542935378601, -73.72317338825896 40.754290405546705, -73.72320061364384 40.75426054522584, -73.72332983781929 40.75413342811655, -73.72346182383663 40.75401039139844, -73.72359794544975 40.75388998493552, -73.72363764948663 40.75385724040232, -73.72367734872171 40.75382450214742, -73.72371705386466 40.75379175758938, -73.7237567589425 40.753759019321, -73.72379646400744 40.753726274735264, -73.72384086194803 40.75369181060651, -73.72388526100444 40.75365735186632, -73.72392966003736 40.753622887705774, -73.72397266262091 40.75359191596157, -73.72401566281485 40.75356093969297, -73.72405866650264 40.7535299679192, -73.72410166067712 40.753498996106536, -73.72415284149085 40.75346361517461, -73.72420401396114 40.75342823419996, -73.72425518756492 40.753392852304664, -73.72429207516078 40.75336923017321, -73.72432896277891 40.75334559632335, -73.72436585747211 40.75332196337911, -73.72451382617727 40.75322814471971, -73.72466583683835 40.753138140186195, -73.72482169730112 40.75305202944902, -73.7249780757724 40.75296741368374, -73.72513325354247 40.75288154403255, -73.7251896636794 40.75285049126201, -73.72524608088716 40.75281943397819, -73.72530249091896 40.752788381152136, -73.72535890799924 40.752757329215775, -73.72541531794808 40.75272627093117, -73.7254692622029 40.75269641612745, -73.72552319812402 40.75266656037808, -73.72557714110162 40.752636704620215, -73.72563107692234 40.75260684972058, -73.72567710177329 40.75258091658785, -73.72572311948717 40.752554982519214, -73.7257691454543 40.75252904845182)), ((-73.73253369693812 40.744180823905715, -73.7325795437119 40.744108640951445, -73.73259949050657 40.744112808001866, -73.73265527213677 40.74414537209938, -73.73271126530555 40.7441768686546, -73.73276739880231 40.744208225028224, -73.73282353355762 40.744239575974085, -73.73287544276933 40.744270303844154, -73.73292508824615 40.74430161177332, -73.73297471127724 40.74433291872833, -73.73301676285845 40.7443594363036, -73.73298372040766 40.74438077655392, -73.73293046558844 40.74440568547861, -73.73287697944852 40.74443069379893, -73.73282350276216 40.74445569671331, -73.73277763953188 40.744476197603404, -73.73273177863777 40.7444966993812, -73.73268590826868 40.74451719481518, -73.73263429709881 40.7445449395245, -73.73258267759793 40.744572684191276, -73.73253544629341 40.74459357533178, -73.73248821609631 40.74461447816209, -73.73244098472894 40.74463537016422, -73.73239376160186 40.744656266668656, -73.73234204972373 40.74467925541518, -73.73229033901559 40.7447022387381, -73.7322386424581 40.74472522747384, -73.7321794908028 40.744753050803446, -73.73212033202299 40.74478086688201, -73.73200593673562 40.74483714563625, -73.73189391030219 40.74489611601498, -73.73178437960381 40.74495772879243, -73.73173959366595 40.74498428050931, -73.73169482187878 40.74501083764478, -73.7316500512363 40.745037395666024, -73.73160527345766 40.745063952752695, -73.73155928288051 40.745094116242626, -73.7315132922835 40.745124274311095, -73.73146730162306 40.745154437764086, -73.73141545308337 40.7451894160775, -73.73136359617942 40.7452243997511, -73.73131480120682 40.74525730496127, -73.73126272223571 40.745296240413275, -73.7312444327234 40.74530999806548, -73.73121369568048 40.74533310818821, -73.731164670255 40.74536997594486, -73.7311228668358 40.74540286407351, -73.73108107047946 40.74543575220347, -73.73103926579373 40.74546864029877, -73.73099227885044 40.745509375032825, -73.73094529185337 40.745550108846956, -73.73089830479518 40.745590843542224, -73.73085987679758 40.745626072684836, -73.73082144875937 40.745661301814515, -73.73078302781376 40.74569652374376, -73.73074512032603 40.74573447450756, -73.7307072128169 40.745772419855655, -73.73066930643046 40.745810369696386, -73.73063395352148 40.74584696572516, -73.73059860175408 40.745883562646135, -73.73056324876742 40.745920158652815, -73.73053230658232 40.7459522903302, -73.73050135489515 40.74598442197703, -73.73047041146633 40.74601655363471, -73.73043022701961 40.746058231582616, -73.73039003544388 40.74609990319608, -73.73034985089654 40.74614158111544, -73.73031509880414 40.746177965031016, -73.73028034548976 40.74621434893314, -73.73024559332144 40.746250732827356, -73.73020792415983 40.74628990956607, -73.73017024783152 40.746329090778154, -73.7301325785813 40.74636826749179, -73.73009624631544 40.74640592366194, -73.73006143600001 40.746441997588136, -73.73002358168601 40.74648122966373, -73.7299948053637 40.746510836737556, -73.7299660301743 40.74654045011045, -73.72993726208914 40.746570057189096, -73.7299087073317 40.74659960892912, -73.72988016204684 40.74662915438061, -73.72984054380943 40.7466603731167, -73.72982323716663 40.74664853853296, -73.72985354203114 40.74659912565331, -73.72988350943827 40.746558171371454, -73.72991347680485 40.74651721798207, -73.72994344413829 40.746476263684166, -73.72997309013996 40.74643804167494, -73.73000274326294 40.74639980706752, -73.73003237373479 40.7463616021161, -73.73006201132795 40.74632338456647, -73.73009165838124 40.74628516162816, -73.73012575005313 40.746242323172886, -73.73015984165565 40.74619949101075, -73.7301939403477 40.74615665165086, -73.73022802478388 40.74611381314788, -73.73025741680961 40.74607770396808, -73.73028680290888 40.74604158846328, -73.73031618897623 40.746005472950735, -73.7303455809319 40.745969357444416, -73.73037353647725 40.745936202148776, -73.73040149673821 40.74590304505628, -73.73042945931387 40.74586989426587, -73.73046054976196 40.74583272640596, -73.73049164609553 40.745795558551286, -73.73052275068613 40.745758389806966, -73.73055280820351 40.74572599221217, -73.73058288108753 40.74569359374488, -73.73061878001374 40.745655183578435, -73.73064743603747 40.74562559227444, -73.73068096207675 40.74559099290386, -73.73071496965139 40.745555889462715, -73.73075350681944 40.74551562946934, -73.73079204393368 40.745475371263886, -73.73083463440419 40.74543089371937, -73.73086551809716 40.74539878343486, -73.73090045393818 40.7453624619154, -73.73093539092513 40.74532614038789, -73.7309703195858 40.74528981883028, -73.73101227459155 40.745246953450525, -73.73105422836288 40.745204087151954, -73.7310961773405 40.7451612217273, -73.7311246552215 40.74513165870394, -73.73115279302161 40.745102448780365, -73.73130096580235 40.74495670378112, -73.73134404156991 40.74495643325649, -73.7313844385212 40.74495512718428, -73.731424759035 40.74495280964595, -73.7314649569113 40.74494948593697, -73.73150499071157 40.7449451550604, -73.73154481894302 40.744939829526764, -73.73158438716837 40.74493350200533, -73.73162366334516 40.744926190432, -73.73166260956175 40.74491790012176, -73.73170115357382 40.74490863540916, -73.73173929650952 40.744898409804996, -73.73177696845278 40.74488723755497, -73.73181413503343 40.744875126684065, -73.73185075830395 40.744862091512665, -73.73188679440408 40.7448481445463, -73.73192221245795 40.74483330822642, -73.73195696155223 40.744817582435125, -73.73198908033541 40.74480170913244, -73.73202049309255 40.74478503632548, -73.73205116182257 40.74476759184226, -73.73208106514403 40.74474939274329, -73.73211016631254 40.74473044884935, -73.7321384344242 40.744710789805985, -73.73216582560555 40.744690431721004, -73.73219234090658 40.74466940791636, -73.73221791165497 40.74464771823305, -73.73224254001272 40.74462541400574, -73.73226618690799 40.74460249514426, -73.73228883087336 40.74457900032125, -73.73231045048522 40.74455495740337, -73.73233101490938 40.74453037892668, -73.73235050149856 40.74450530266053, -73.73236890542708 40.744479751107036, -73.73238423997324 40.744448701103295, -73.73239958994414 40.744417639426636, -73.73241447046821 40.744391434913425, -73.73242935690422 40.744365229511395, -73.732447764563 40.744331066367934, -73.7324661721776 40.74429690952493, -73.73248609780408 40.74426036084565, -73.73253369693812 40.744180823905715)), ((-73.73398269848317 40.742951794530626, -73.73394883906573 40.74290430891602, -73.73459658573118 40.742494260865485, -73.73466345379715 40.74254048688552, -73.734723916269 40.74259156177238, -73.73477736897861 40.74264697535607, -73.73482327660082 40.74270617259941, -73.73486695908409 40.742757467219704, -73.73489209936334 40.742821834185385, -73.73489963405123 40.74286383425263, -73.73490161266899 40.74287390561947, -73.73490473707312 40.74289446967628, -73.73490696255303 40.74291510460525, -73.73490828450456 40.74293577707698, -73.7349086970286 40.74295648167475, -73.73490820857324 40.74297717789514, -73.73490681801823 40.74299784952632, -73.73490260198237 40.743050482793834, -73.73489980313587 40.74308527209582, -73.7348201467811 40.74316827792112, -73.7347924710631 40.743194744149115, -73.73437608202944 40.743508369975395, -73.73435873507721 40.743487644329825, -73.73432834520118 40.7434485235756, -73.73429795420208 40.743409396506856, -73.73426755610956 40.74337027571702, -73.73423717344811 40.743331154053955, -73.73421254834885 40.743295649514586, -73.73418793868913 40.743260139602256, -73.73416332787164 40.74322462968176, -73.7341406449202 40.743191416906974, -73.73411797737948 40.74315820506363, -73.73409530157713 40.743124992295996, -73.73406716818606 40.74308333093516, -73.73403904191966 40.7430416731856, -73.73401090983329 40.7429999992062, -73.73398269848317 40.742951794530626)), ((-73.7805740490359 40.720202585687396, -73.78063808761117 40.72020119575759, -73.78057683777632 40.72023055731909, -73.78055518363193 40.72023935277717, -73.78049987837274 40.720263109131494, -73.7804445718876 40.72028686635739, -73.78038926654955 40.720310622658424, -73.78033396118693 40.72033437443031, -73.78027864748502 40.720358130662255, -73.78022234412235 40.72037977777916, -73.78017385277171 40.720398432072784, -73.78012536021032 40.72041708634364, -73.7800768687846 40.720435746899824, -73.78002837616897 40.720454401129736, -73.77997654835765 40.7204744375559, -73.77992471224796 40.720494468539734, -73.77987289029218 40.720514504930435, -73.77982104700087 40.72053454125698, -73.7797692610801 40.72055977182604, -73.77971747393953 40.72058500146892, -73.7796656796553 40.72061023197538, -73.7796138924333 40.72063546247204, -73.77956210515426 40.720660698348325, -73.77951317286451 40.72068730034323, -73.77946423343418 40.7207139023036, -73.7794153010663 40.72074050425672, -73.77936636866234 40.72076710528842, -73.77931742911781 40.720793706285605, -73.77926849661186 40.72082031447958, -73.77921838875177 40.7208494265251, -73.77916828791071 40.720878550268885, -73.77911817994516 40.72090766767357, -73.77906806362984 40.72093679134401, -73.77901796977679 40.720965909632625, -73.7789718027552 40.72099190255518, -73.77892564279313 40.72101789727377, -73.77887947571445 40.721043885656556, -73.77883331570128 40.72106987403443, -73.77878431147558 40.7211001406667, -73.77873530720835 40.72113040637754, -73.77868630292951 40.72116066216181, -73.77863729977479 40.72119092242987, -73.77858828710389 40.72122118355928, -73.77853531368218 40.72125619175494, -73.77848233432287 40.72129118910857, -73.77842935368533 40.72132619814197, -73.77837637419975 40.721361199949065, -73.77832385927067 40.721398144130966, -73.77826765698323 40.72143769357414, -73.77824644809101 40.72145261654199, -73.77821884577826 40.72147204145933, -73.77816633186116 40.721508984670606, -73.77811382498736 40.72154592787143, -73.77806447956621 40.72158070690742, -73.77801512700998 40.721615480505385, -73.77796577438417 40.72165025948504, -73.77791642290556 40.721685033943146, -73.77786818207554 40.72172321626072, -73.77781993292604 40.721761392238406, -73.77777168490184 40.72179956909839, -73.77772344390601 40.72183775135478, -73.77770708730814 40.72185062051663, -73.77766092844624 40.72188695711421, -73.77761476245036 40.72192328827636, -73.77756859638609 40.721959624822844, -73.77752243028954 40.72199595594762, -73.77748073936105 40.72203051989247, -73.77743904959392 40.72206507752086, -73.77739735858196 40.72209964053475, -73.7773726200446 40.722120144196026, -73.777355669912 40.72213419813485, -73.77730835222269 40.722163000464136, -73.77733298517684 40.72212982640338, -73.777363244714 40.72210240758598, -73.7774007807074 40.72206623994292, -73.77743833204691 40.722030072317146, -73.77747589048639 40.72199389298612, -73.77751344056074 40.72195772533322, -73.77755850462646 40.721912903852996, -73.77759253750307 40.721879045496685, -73.77763208647796 40.72183971096187, -73.77766850696489 40.72180361942092, -73.77770491914517 40.72176752244921, -73.77774133838759 40.72173142547958, -73.77777775165458 40.72169533388983, -73.7778190455374 40.72165549657014, -73.77786466039713 40.72161149189616, -73.77790162482769 40.7215758344768, -73.77794291852642 40.721536007918125, -73.77797210450653 40.721506665175426, -73.77800129874612 40.72147732244114, -73.77804026761903 40.72144108350867, -73.77807923646458 40.721404840060316, -73.77812595578831 40.72136423774586, -73.7781687020494 40.721327090227796, -73.77818540482458 40.721312562922854, -73.7782193788814 40.72128303212924, -73.77826626101627 40.721248939875665, -73.7782703527432 40.721246085026664, -73.77829946699302 40.72122577060007, -73.77832546694397 40.72120801843156, -73.77835250362013 40.7211895820625, -73.77840554731209 40.721153387210386, -73.77845353351366 40.72112251183475, -73.77850152677235 40.72109163645267, -73.77854952114919 40.7210607673563, -73.77859751550247 40.72102989193621, -73.77864551687696 40.72099902731574, -73.77869673083435 40.7209659166686, -73.77874795422153 40.7209328024147, -73.7787991775279 40.72089969714293, -73.77885039960574 40.72086659004492, -73.77889615001209 40.72083701503248, -73.77895284480432 40.720800372180356, -73.7790012081642 40.7207691091792, -73.77905822007948 40.72073245517716, -73.77911235915202 40.72069765069092, -73.77916651240976 40.72066283449977, -73.77922065844676 40.72062803717997, -73.77927480448989 40.720593220923895, -73.77932895045558 40.72055841094577, -73.77938307226222 40.72052659149785, -73.77943720111865 40.72049477203797, -73.77949132163837 40.72046295253664, -73.77954545039144 40.72043113302558, -73.77959696463154 40.7204057336409, -73.77964849303827 40.72038033335973, -73.77969904377726 40.720360300940925, -73.77975023796722 40.72034002749299, -73.77979310539317 40.72032305018161, -73.77979663827422 40.72032165033813, -73.7798507170479 40.72030022430346, -73.7798923942608 40.72029133218225, -73.77995655582478 40.72028175900865, -73.78001943939162 40.7202724571133, -73.78008287427575 40.7202635785771, -73.78014631742805 40.72025470002176, -73.78020975346197 40.72024582141789, -73.78027319539684 40.720236942790336, -73.78033663139696 40.72022806411655, -73.78039598759312 40.72022169635955, -73.78045534376315 40.7202153330745, -73.78051469287372 40.72020895353616, -73.7805740490359 40.720202585687396)), ((-73.78167201064993 40.71984700204939, -73.7817310311606 40.71984360646054, -73.78178829768586 40.71984091081733, -73.78179279240592 40.71984069871064, -73.78182182960062 40.71984015219833, -73.78185562316247 40.71984009286305, -73.78191017078146 40.71983999989192, -73.7819646340409 40.71984109180962, -73.78201908903196 40.719842179183374, -73.78208821667054 40.71984329880605, -73.7821573230043 40.719844419247394, -73.78221386740684 40.719845746416695, -73.78227040591439 40.71984706724347, -73.78233700211592 40.719847395781976, -73.7824036278896 40.71984772974094, -73.7824548612035 40.71984482965379, -73.78250610042788 40.71984193045548, -73.78255733964774 40.719839031234415, -73.7826285161179 40.719835051197734, -73.78270702255419 40.719830674317805, -73.78271437737479 40.71983028026647, -73.78275411566688 40.71982814900123, -73.78280780122111 40.71982527679757, -73.78286184786957 40.71982237103045, -73.78291590277776 40.71981947155712, -73.78297804352869 40.719815215819864, -73.78305387772073 40.71981001690146, -73.78312286337875 40.71980529671234, -73.78319344433444 40.71980025800305, -73.78326402648058 40.71979521384972, -73.78333460739735 40.719790180456954, -73.78339376511559 40.71978567664374, -73.78345292988915 40.71978118452012, -73.78351208755632 40.71977669145221, -73.78357125233151 40.71977219386469, -73.7836319657464 40.7197682601765, -73.78369268861971 40.71976432737459, -73.78375339491892 40.71976039360898, -73.78381411067653 40.719756460729684, -73.78388342540585 40.71975205948431, -73.78395273420536 40.719747659086636, -73.78402204181211 40.719743258644975, -73.78409135769465 40.71973885817717, -73.7841579962004 40.71973303614213, -73.78423370339674 40.719726426006254, -73.78429128854881 40.71972139648771, -73.78435792700215 40.719715579739976, -73.78441692093593 40.71970897780092, -73.78445374210757 40.71970485935949, -73.78447590777121 40.719702371315826, -73.78453489458022 40.71969576930301, -73.78459046431071 40.71968773355448, -73.78464603400745 40.71967970408265, -73.78467401246512 40.719675658180805, -73.78471263388084 40.719670052675376, -73.78474983683564 40.71966461380142, -73.78479806760022 40.71965755389474, -73.78482707453364 40.71965608264232, -73.78480545595635 40.71980365243969, -73.78476127835826 40.7198071908187, -73.78470958374481 40.71981150667497, -73.78464146842512 40.719817231712994, -73.78457978988378 40.719822428447195, -73.7845266698339 40.71982649931641, -73.78447354977459 40.71983057106164, -73.78442837153202 40.71983279719406, -73.78438319210578 40.71983502240605, -73.78432282725956 40.719838035018626, -73.78426245652797 40.71984103588184, -73.78421251074393 40.71984365732601, -73.78416256495596 40.71984627874852, -73.78411261916402 40.71984890014935, -73.78405154034829 40.71985125930989, -73.7839904615282 40.719853618438044, -73.7839293909917 40.71985597664882, -73.78386319298622 40.71985803973906, -73.78379700208095 40.719860101904075, -73.7837308111716 40.719862164031035, -73.78366864769596 40.71986430662903, -73.78360648308535 40.71986643298212, -73.7835443267207 40.71986857012333, -73.78347902644434 40.71987153969555, -73.78341374273792 40.71987450746092, -73.78334845781872 40.71987748239108, -73.7832831728937 40.71988045728426, -73.78322039425463 40.71988286323301, -73.7831576097313 40.71988525742978, -73.7830948299172 40.7198876579048, -73.78303205246863 40.71989005744954, -73.7829692738291 40.719892457858336, -73.78290648927005 40.71989485732121, -73.78285165135038 40.71989540047321, -73.78279679094209 40.71989594355668, -73.78274194712039 40.7198964812422, -73.7826870949982 40.71989702338851, -73.78262510371113 40.71989824452389, -73.7825631195055 40.71989947104238, -73.78250113533583 40.71990068582087, -73.78243103974889 40.719901655607146, -73.78236095242727 40.71990263076944, -73.78229515533673 40.71990621017921, -73.7822293582362 40.719909790451865, -73.78217434707207 40.71991625742547, -73.78211933471073 40.719922725271005, -73.78206432352532 40.71992919219198, -73.78200103278411 40.719936879813595, -73.7819377349594 40.71994455748136, -73.7818744359394 40.71995223421154, -73.78181643281206 40.71996081425162, -73.78175842142022 40.71996938344069, -73.78170041114103 40.71997796971239, -73.78164240682068 40.71998653885642, -73.78158439536341 40.71999511426132, -73.7815290478432 40.7200048572537, -73.78147370740521 40.720014601133464, -73.78141835273348 40.720024349462186, -73.78136301226317 40.72003409328872, -73.78130426836098 40.720042948121524, -73.78124553983261 40.72005180205306, -73.78118681130636 40.720060650551616, -73.78112806735737 40.720069505294546, -73.7810647219314 40.720077912707794, -73.78100137651016 40.720086313782645, -73.78093802513733 40.72009472021436, -73.78087209833427 40.72010383131342, -73.78084171156934 40.72010802839678, -73.78080617273824 40.72011292976991, -73.78074023998428 40.72012203988169, -73.78067431433149 40.720131144566174, -73.78060838037572 40.72014024919712, -73.78053802629698 40.72015026208664, -73.78046767099877 40.72016027943345, -73.78039730977638 40.72017029222339, -73.78032695449228 40.72018029237455, -73.78025862440258 40.720190258526486, -73.78019029433408 40.72020021203077, -73.7801219725093 40.720210171813875, -73.78005364236135 40.720220136943624, -73.78001330783684 40.72022495056587, -73.7800078823695 40.72022529049853, -73.77995393905584 40.72022866519168, -73.78000870392489 40.720203013388236, -73.78007184293428 40.72017832759627, -73.78013498424623 40.72015364717712, -73.78018811456134 40.72013550154092, -73.78024124480896 40.72011736758677, -73.78027771284559 40.72010491106005, -73.7802860522576 40.72010206154406, -73.78034884191621 40.72008060687301, -73.78035015005499 40.72008016091347, -73.78040062604029 40.72006292593653, -73.7804623130464 40.72004418954886, -73.78052399997928 40.72002546483469, -73.78058569520095 40.72000672839665, -73.78063815312788 40.71999501813512, -73.7806906181555 40.71998330246016, -73.78074307722615 40.719971593053565, -73.78079554220216 40.71995988183328, -73.78084518115294 40.71994949796838, -73.78090074206227 40.7199378664353, -73.78096016360145 40.719927366960626, -73.78098777149899 40.71992129149387, -73.78101893913099 40.719915353365515, -73.78105994134626 40.71990933217311, -73.78110094355412 40.71990331096614, -73.7811479496997 40.719895946786615, -73.7811949487158 40.719888587977444, -73.78124921288675 40.71988255229843, -73.78130347704787 40.71987651659381, -73.78134037312523 40.71987238218018, -73.78137727629942 40.71986824776824, -73.78142856574182 40.7198634094407, -73.78147984925894 40.719858571079115, -73.78152454998546 40.7198558229001, -73.78152458904903 40.719855821173184, -73.78154641614205 40.71985448660733, -73.78161299013026 40.71985039850852, -73.78167201064993 40.71984700204939)), ((-73.74368340685596 40.73506791143136, -73.74390104982997 40.73489443389546, -73.74391252999229 40.734908793771375, -73.74382392503675 40.734993247502274, -73.743744265498 40.73507110411053, -73.74366814477516 40.73515098838819, -73.74359564493994 40.73523280146856, -73.74352684806554 40.73531644448501, -73.74346184215283 40.73540181678274, -73.74340068081696 40.73548883203844, -73.74334346750695 40.73557737522329, -73.74329024404726 40.735667348280465, -73.74323970184047 40.73575610259454, -73.74318546250288 40.73584357801895, -73.74312756898532 40.735929685493595, -73.74308263370038 40.735992194224565, -73.74303577181271 40.73605387917315, -73.74299433261392 40.736098813180774, -73.74297532785215 40.736119430303134, -73.74295290044147 40.736143752592085, -73.74292675552441 40.736172104472104, -73.74290752010458 40.73619296690791, -73.74287003592902 40.736233631369146, -73.74282858940352 40.73627856530014, -73.7427871570041 40.73632350555122, -73.7427457174491 40.73636844487072, -73.74270428492049 40.736413389593885, -73.74266284529544 40.736458318076984, -73.74262589467358 40.73649838841203, -73.74260106478509 40.73652182996515, -73.74260009046095 40.73652274901075, -73.7425683227813 40.73653002527514, -73.74254605938803 40.73653480404813, -73.74249293298317 40.736546192002976, -73.74243979822785 40.73655759162135, -73.7423866706237 40.736568974121475, -73.74231818099238 40.73658405394425, -73.74224969014269 40.73659913462415, -73.74218119924113 40.736614220666276, -73.74211270832942 40.73662930126466, -73.74204510068697 40.73664373633298, -73.74197382231209 40.736658962791424, -73.74201287727138 40.73661733409154, -73.74204475869594 40.73658467911719, -73.74207542423811 40.736553251509555, -73.74210798292049 40.73651750027457, -73.74216074601772 40.73645866733009, -73.7423401795744 40.73628038582059, -73.74252239268633 40.7361037338663, -73.74270734613863 40.73592874738712, -73.74289442565107 40.735756001325875, -73.7430841885458 40.73558495300675, -73.74327660394653 40.735415625761064, -73.74348011276764 40.735241847360456, -73.74368340685596 40.73506791143136)), ((-73.73345681893477 40.7449519731919, -73.73319452277256 40.744919173516834, -73.7329448455643 40.74490571846058, -73.73275011777878 40.74491170453521, -73.73255537584727 40.74492091047453, -73.7323690336857 40.74494623133384, -73.73217844678922 40.74497476134772, -73.73201739776661 40.745025894159895, -73.731953881648 40.745032184109114, -73.73192427886023 40.745025677459324, -73.7319159050427 40.74500312358572, -73.73197534371701 40.74495819225436, -73.73213645732268 40.74489096392039, -73.73237814592557 40.74478529250021, -73.73261558921182 40.744682829143166, -73.73283180316736 40.7445964117845, -73.73317520230141 40.74445878222097, -73.73423897886376 40.74517590602468, -73.73422624297666 40.745185533713766, -73.73418396704102 40.745172559749165, -73.73388386978485 40.74506563260472, -73.7337063291424 40.74500727708914, -73.73345681893477 40.7449519731919)), ((-73.76699959216006 40.725254427144755, -73.76693417572133 40.72523473021929, -73.76709945098645 40.72519455150073, -73.76710376955583 40.725193378763876, -73.7671079933663 40.72519764402882, -73.76712631907697 40.725217245623796, -73.76713182976471 40.72522313981569, -73.76716173591639 40.72525375197545, -73.7671747887396 40.725267499475464, -73.76719421489236 40.72528620187174, -73.76719801465909 40.72528953694728, -73.7672174925834 40.72530663743294, -73.76723285510151 40.72531893436791, -73.76725606579785 40.725335851484395, -73.76725887105655 40.7253378968151, -73.76728208454337 40.72535334069385, -73.76730739787664 40.72536844481586, -73.76732889311072 40.72538004002529, -73.76733094646923 40.72538114640158, -73.76735466861322 40.72539262273594, -73.7673737234335 40.725401418716565, -73.76738559111413 40.725406452242474, -73.76739935105445 40.72541228834409, -73.76740444514006 40.725414449057915, -73.76746660538574 40.72543421027952, -73.767520413213 40.725450710058006, -73.76757790871183 40.72546265345921, -73.76763541016845 40.7254745914406, -73.7676929069141 40.72548652848316, -73.76775040129105 40.7254984717958, -73.76780534496287 40.72550699159155, -73.76786028864554 40.72551551226159, -73.7679152394255 40.725524038322746, -73.76797018315823 40.72553255263676, -73.76801978531135 40.72554097241515, -73.76807559835264 40.72554595211878, -73.76813139601151 40.72555093266494, -73.76818721616836 40.7255559132293, -73.76824302212958 40.72556089373803, -73.76829726566683 40.72556246443792, -73.76835150916595 40.72556404681888, -73.76840575273023 40.725565611164136, -73.76845999627515 40.72556718178741, -73.76852840442972 40.72556887631565, -73.76855529047126 40.72556954361088, -73.76859681258459 40.725570571703805, -73.76863831012527 40.72557015441028, -73.76868587219928 40.725578440128416, -73.76867671906749 40.725599175844025, -73.76862709542607 40.72562281994245, -73.76857440682163 40.72564555374497, -73.768556396239 40.725653324984286, -73.76852189007279 40.72566821312632, -73.76846776109062 40.72568883678587, -73.76841363916127 40.72570946493667, -73.7683536227494 40.72573205962876, -73.7683040516917 40.72574868870391, -73.7682485920723 40.725767284330985, -73.76819314068577 40.72578588625151, -73.76813768100138 40.72580448272558, -73.76807271884574 40.725825420275164, -73.76800776375131 40.725846357802325, -73.76794280978092 40.725867300698184, -73.76789271403413 40.72588396275839, -73.76784261824346 40.72590063019981, -73.76779252951091 40.725917303036724, -73.76769642326919 40.72594503856375, -73.76751411664583 40.725993084844816, -73.76732954611154 40.72603583395279, -73.76714297469917 40.72607322427339, -73.76695467370104 40.726105202315246, -73.76702116731995 40.72608213788295, -73.76708377907232 40.726053465274795, -73.7671416956314 40.72601955926623, -73.76719416381943 40.72598085869191, -73.76724050125803 40.72593786736715, -73.767280107056 40.72589114420337, -73.76731246657502 40.72584129421206, -73.76733715853436 40.72578896761832, -73.76734998986417 40.72573634149786, -73.7673548151092 40.72568294366981, -73.76735156909903 40.72562947730343, -73.7673402967475 40.72557664488835, -73.76732114478806 40.72552514191407, -73.76729436535798 40.725475646971994, -73.76726031011361 40.72542881183797, -73.76721943026718 40.72538525066664, -73.76717226120174 40.72534553906015, -73.7671194237077 40.725310198762536, -73.76706161452593 40.72527969403892, -73.76699959216006 40.725254427144755)), ((-73.78895277062729 40.71935715974416, -73.78949485518807 40.71935251405956, -73.79003697317037 40.71935150935677, -73.79057908087434 40.71935414465518, -73.79046541034612 40.719666571410514, -73.79040160796144 40.71964314641355, -73.78987493955262 40.71946494215381, -73.78976166158647 40.71944995614581, -73.78942047456128 40.719404818476924, -73.78917015973622 40.7194198969083, -73.78878384609267 40.71944317668504, -73.78795211121782 40.71956024888985, -73.78702916198641 40.71976609631163, -73.78672418546756 40.719841487281144, -73.78614143495835 40.719974524105666, -73.78591581978478 40.72001866215629, -73.78568832979668 40.72005682677852, -73.7854592397881 40.72008897254705, -73.78522882216765 40.72011506033808, -73.7852021022872 40.720118557609254, -73.78519122221228 40.72011471373446, -73.78518130975026 40.72010957312513, -73.78519932111409 40.72002961421192, -73.78554823915346 40.719981106584086, -73.78589572838263 40.71992698685099, -73.78624163240582 40.71986727994962, -73.78658579719314 40.719802011723694, -73.78692806633538 40.719731212516635, -73.78726828815961 40.7196549126826, -73.78754425930615 40.71959083842245, -73.7878224166728 40.71953249118721, -73.78810255306811 40.719479912903765, -73.78838446368162 40.71943314190331, -73.78866793897657 40.719392214709124, -73.78895277062729 40.71935715974416)), ((-73.73397026896896 40.744083901697344, -73.73403688183568 40.744080751566834, -73.73410611640206 40.744083158199395, -73.73417458681578 40.7440913217937, -73.73424146824162 40.744105142292035, -73.734305956229 40.74412445484889, -73.73436727264907 40.74414902534174, -73.73442467986968 40.74417855850819, -73.7344774854868 40.74421269885697, -73.73452505414659 40.74425103519735, -73.73455918490744 40.74428299374797, -73.7345865478962 40.7443185207256, -73.73460650820604 40.744356792505556, -73.73461860521746 40.74439692462928, -73.73462255963942 40.744437988028984, -73.73461814896842 40.744479658909576, -73.7346053536012 40.74452031540489, -73.73458753538293 40.74455063236551, -73.73456409750695 40.744578649975196, -73.7345355396398 40.74460376964209, -73.73450247131579 40.74462545516255, -73.73446560006134 40.744643241699315, -73.73442571357363 40.744656751049476, -73.7343715842869 40.74466735580956, -73.73430008155641 40.74466944215712, -73.73421872741636 40.74466183334086, -73.73414550176636 40.7446440845677, -73.73352800580889 40.74426105348645, -73.73366373501867 40.744176836480136, -73.73371916364775 40.744148560729705, -73.73377820634931 40.74412489221558, -73.73384020494986 40.744106095962415, -73.73390446479816 40.744092381080165, -73.73397026896896 40.744083901697344)), ((-73.73339500083019 40.74255162806514, -73.73345858047416 40.742519363129766, -73.73346738433803 40.742535392790536, -73.73348722810073 40.74257083600182, -73.73350759854901 40.74260721876066, -73.73352797026838 40.742643585309445, -73.73353946001289 40.742668350732984, -73.73339414446802 40.74276947862352, -73.73325171924658 40.74286482273853, -73.73302594461958 40.74301807537251, -73.73279400917421 40.74318684528398, -73.73256317722411 40.743354728485045, -73.73242306040298 40.74346341620283, -73.73238095662741 40.7434960735642, -73.73233328485763 40.743533057532446, -73.73227714105498 40.743572225338205, -73.73224542405222 40.74355634493711, -73.73218965409849 40.74352841199203, -73.73213388421325 40.7435004736168, -73.73207982937636 40.74347268598731, -73.7320624369732 40.74346373587095, -73.73204052392758 40.74345246992615, -73.73205549953062 40.743437344664194, -73.7320908967381 40.74340541384205, -73.73212629391162 40.74337348300887, -73.73216168517837 40.74334154044439, -73.73219772108584 40.743308863650356, -73.73223352645157 40.743276388924, -73.73226944469106 40.74324380728802, -73.73230651922316 40.74321015401861, -73.73234360081811 40.74317650165417, -73.73238067524998 40.74314285466413, -73.73241774969142 40.74310919595543, -73.73245625542896 40.74308205035407, -73.73249475876715 40.74305490473422, -73.73253325615404 40.74302775908765, -73.73258200422825 40.74299506666834, -73.73261902056981 40.74297023366864, -73.73266189918468 40.742941467324755, -73.73271180424624 40.74291311169574, -73.73276171044927 40.74288475604773, -73.73281162376057 40.742856388687976, -73.73286603899636 40.742827610309405, -73.7329204612673 40.7427988373245, -73.73297635119229 40.74276928697351, -73.73302930805772 40.74274128587967, -73.73307842213491 40.74271671670829, -73.73312752788809 40.742692147496726, -73.73317664188923 40.74266757918381, -73.73322574875758 40.7426430090324, -73.73327486268627 40.74261844067745, -73.73331490638827 40.742596171015855, -73.73335495008153 40.74257389683774, -73.73339500083019 40.74255162806514)), ((-73.73995054010727 40.73732678319213, -73.73999514371995 40.73732204005208, -73.74004017994416 40.73732232722835, -73.7400490730109 40.73734910150073, -73.74005244162706 40.73737659721938, -73.74005020546878 40.73740415953161, -73.74004241681311 40.73743113208217, -73.74002926403435 40.73745687142948, -73.74001105851882 40.73748076322534, -73.73990293218503 40.7376762533536, -73.73978720149454 40.73786920746385, -73.7396639665096 40.73805945466251, -73.73953333676079 40.73824682587744, -73.73939543005606 40.73843115565627, -73.73933529137521 40.738401771841886, -73.73923504076845 40.738357300060024, -73.73916875147397 40.738330431767736, -73.73909786536375 40.738303808768386, -73.73902590349138 40.738278910468345, -73.73977922919381 40.73742813421826, -73.73986646138803 40.737350841376276, -73.73990733436511 40.73733645346911, -73.73995054010727 40.73732678319213)), ((-73.74637480689583 40.731900668442364, -73.74640485786196 40.73189991425967, -73.74642680322037 40.73190201485373, -73.74644918386745 40.731906695468545, -73.74647949815451 40.73191762869127, -73.74651499786845 40.73193498586696, -73.7465438966205 40.73195114342894, -73.74656386599904 40.73196607284441, -73.7465818702913 40.73198847398262, -73.74658352392659 40.73199286311531, -73.74659055449636 40.73201152909163, -73.74659630983682 40.73203618606921, -73.74659661851845 40.73203750689907, -73.74659887000719 40.732057450990574, -73.74660262341274 40.732110164416824, -73.74660595734589 40.732158317627274, -73.74660968377749 40.732210344803015, -73.74661006213765 40.7322141998269, -73.74661155409372 40.73222935512459, -73.74658244127146 40.73225015141987, -73.74649122030773 40.732305573458135, -73.74639797409871 40.732359028748206, -73.74630279166497 40.73241045624662, -73.74620572643215 40.73245981644382, -73.74613915411736 40.732488467173916, -73.7461069126013 40.732502336917456, -73.74600662080746 40.732542802680136, -73.74590491866374 40.732581179657814, -73.74561503650834 40.732676128992395, -73.74532357574454 40.73276823028984, -73.74526751053983 40.73278161486148, -73.7453669752139 40.73269975588067, -73.74539730245205 40.73267729482961, -73.74542481493188 40.7326569131336, -73.74542487072839 40.73265687183339, -73.74547731595402 40.73261801540705, -73.74568554232862 40.73245317657923, -73.74588594847373 40.73228281078396, -73.74590383137547 40.732267469500584, -73.7459039501351 40.73226736980583, -73.74592317021968 40.73224998550676, -73.74597211726444 40.73220570815805, -73.74597573438488 40.73220243737311, -73.74600930530988 40.732172074118715, -73.74605023644379 40.73213502997847, -73.74609117579813 40.732097991244785, -73.7461317171127 40.73206070487865, -73.74617224288642 40.73202344637975, -73.74620899421646 40.731987867107435, -73.74623805175084 40.731966046901846, -73.74626711634485 40.731944233007965, -73.74627852022341 40.73193665601267, -73.74628272620953 40.7319338619859, -73.74630464009196 40.73192122295289, -73.74632454379979 40.73191234002568, -73.74634387728115 40.731906160076605, -73.74637480689583 40.731900668442364)), ((-73.73490941741775 40.745297600810126, -73.73454553527782 40.745019744007664, -73.7341793486145 40.74474364391897, -73.73423561157722 40.7447469930847, -73.73429185803955 40.74474349650187, -73.73434393770152 40.744741544562345, -73.73439514661625 40.74473407316168, -73.73444448013505 40.74472123036998, -73.73449096753839 40.7447032669954, -73.73453369571315 40.744680537539026, -73.7345718257798 40.744653487625555, -73.73461377942465 40.74462781708726, -73.73464962051173 40.744597254384146, -73.73467837602239 40.74456263115345, -73.73469926551336 40.744524885735856, -73.73471172132267 40.74448504341042, -73.73471540526238 40.74444418671531, -73.73471021821092 40.744403424852365, -73.7346963002288 40.74436386397032, -73.73467322678688 40.74431050958263, -73.73464250982441 40.74425943298177, -73.73460452809178 40.744211265391975, -73.7345597504656 40.7441666013234, -73.73450873241447 40.74412599406171, -73.73445210183338 40.74408994482994, -73.73439056142988 40.744058898291776, -73.73432486979098 40.744033239806924, -73.73425583905514 40.744013285520545, -73.73418432307307 40.74399928233632, -73.73411120558691 40.743991403386985, -73.73403738958237 40.74398974620889, -73.73396378782877 40.74399433001887, -73.73414806261196 40.743874156402015, -73.73432808660478 40.74375031120719, -73.73442011144274 40.743855238455254, -73.73450488965025 40.74396364020375, -73.73458219740142 40.744075225988254, -73.73465182628253 40.74418969907547, -73.73471359159082 40.744306753780634, -73.73476732759204 40.744426077257486, -73.73481289224584 40.744547352210354, -73.7348501624814 40.74467025418171, -73.73487904009971 40.74479445606819, -73.73489944822961 40.74491962631124, -73.7349113301334 40.74504543159588, -73.73491465631882 40.74517153506589, -73.73490941741775 40.745297600810126)), ((-73.73226698634596 40.744077998030725, -73.73238290020235 40.74398550579428, -73.73243213765879 40.74401511462653, -73.73248580355745 40.74404643749021, -73.7324579563117 40.744097604673755, -73.7323746022952 40.74423142775366, -73.7323569694412 40.74426223107922, -73.73234188245189 40.744288548570054, -73.73232214929915 40.74432166852623, -73.73230496791098 40.7443503080646, -73.73227953843383 40.74440110981239, -73.73226095682898 40.744429033785075, -73.73224070452456 40.74445844151462, -73.7322204533609 40.74448785554672, -73.7322015922211 40.74450990302618, -73.73218178585445 40.74453145392408, -73.73216104375781 40.744552501958445, -73.73213941695155 40.74457302023214, -73.7321169126118 40.74459299075109, -73.73209354508035 40.74461238022926, -73.73206935231036 40.74463117254526, -73.73204435687028 40.74464934974084, -73.73201858844722 40.74466689027229, -73.73199207552986 40.744683776195174, -73.73196484069788 40.74469998684979, -73.73193692191582 40.744715503413225, -73.7319083405541 40.74473031152658, -73.73187914047583 40.744744397783826, -73.73184933836633 40.74475773520806, -73.73181897680703 40.74477033470399, -73.73179052692694 40.744781881443934, -73.7317615839221 40.744792685907996, -73.73173217147692 40.744802747250354, -73.7317023193302 40.74481203132062, -73.73167207837332 40.74482054363999, -73.73164147705972 40.744828275269434, -73.73161054741286 40.74483521277559, -73.7315793249722 40.74484135173844, -73.73154784767414 40.74484668053953, -73.73151615224585 40.74485119386123, -73.73148426712994 40.744854885466076, -73.73144336655184 40.744858073367084, -73.73139986147773 40.744860293434044, -73.73151487756627 40.74474735478295, -73.73167057400804 40.74460110904906, -73.73183838678722 40.74444872461578, -73.73193388748903 40.7443638072275, -73.73203358858248 40.74427629705585, -73.73214089969301 40.74418214251637, -73.73226698634596 40.744077998030725)), ((-73.77790609684271 40.72144004943065, -73.77794209345402 40.721428757997444, -73.77794007244549 40.721433556532396, -73.77792398191824 40.72147175945454, -73.77790040960346 40.72151038288931, -73.7778590422692 40.72155028223235, -73.7778176819539 40.72159019147955, -73.77779609700826 40.72161100479099, -73.77777631333699 40.72163009079016, -73.77773494585708 40.721669989187404, -73.7776984743592 40.721706148189796, -73.77766198743494 40.72174230715067, -73.77762552298047 40.72177845983977, -73.77758902889347 40.72181461336042, -73.777549561841 40.721853868793794, -73.77751008878496 40.721893135908516, -73.77747062753653 40.721932397629345, -73.7774332626967 40.721968385524, -73.77739590373156 40.722004374318345, -73.77735854591266 40.722040362202144, -73.77732117976518 40.72207635095811, -73.77729190676872 40.72210288286717, -73.77725649893146 40.72213406305184, -73.77694727462953 40.7218017876779, -73.77694977779777 40.72179723863599, -73.77695301333988 40.721791358254414, -73.77700181429043 40.72175149704818, -73.77704439743457 40.721719498761935, -73.7770869734362 40.721687500445995, -73.77712845664855 40.72166832779858, -73.77716993977984 40.72164917224576, -73.77723089307715 40.72162756983779, -73.77728224778788 40.72161715660813, -73.77733774599021 40.72160966452662, -73.77739073589086 40.721598343992845, -73.77744373407378 40.72158701894814, -73.7774967322236 40.72157569838159, -73.77754971616733 40.72156437326068, -73.77761679967755 40.72154757682068, -73.77766331154712 40.721535923967146, -73.77768387607045 40.72153077492485, -73.7777129624004 40.72152034191583, -73.77774653876163 40.72150829844566, -73.7778092073285 40.721485821943745, -73.77783505647261 40.72147361224916, -73.77785766334492 40.72146293616938, -73.77790609684271 40.72144004943065)), ((-73.77674344967014 40.72198004618322, -73.77676909731764 40.72197722417913, -73.77679181933843 40.721978564969504, -73.77706520959904 40.72228114541788, -73.77705952665164 40.72228551270506, -73.77700463397086 40.72232870123509, -73.7769567402492 40.72236649572083, -73.77690886895878 40.72240429113059, -73.77686098341383 40.722442085592206, -73.77681657143268 40.72247714380651, -73.77676525555938 40.72251779250633, -73.77671740496154 40.72255570584329, -73.77666956376311 40.72259362368114, -73.77662172134167 40.72263153699408, -73.77657386346371 40.72266945475957, -73.77653120252137 40.72270252072595, -73.77648854033492 40.72273559207711, -73.77644587930791 40.72276865801159, -73.7764032170368 40.722801729330804, -73.77636055590699 40.72283480063639, -73.77632129946936 40.722865922627776, -73.77626825613822 40.72289703492589, -73.77627940452025 40.72287523447393, -73.77630035164579 40.72284652811957, -73.77632028920257 40.7228058069657, -73.77633957596703 40.72275867019478, -73.77634668405084 40.72274126359163, -73.77635320246239 40.7227253344838, -73.77637086526204 40.72268207395986, -73.7763863411673 40.722643261318666, -73.77640181822302 40.72260445318004, -73.77641730119392 40.7225656405481, -73.77643722299152 40.72251651576091, -73.77645715188255 40.72246738468024, -73.7764770819248 40.72241825449859, -73.77649700363735 40.7223691287996, -73.77651189185266 40.72232904437639, -73.77652927158341 40.722282246964674, -73.77654167059674 40.72224887552818, -73.77655381652629 40.722216143863385, -73.77657783543361 40.72215900523692, -73.77660011905674 40.72210612356219, -73.77660748078873 40.72208786374804, -73.77661721382191 40.72207085844536, -73.77661923067113 40.72206733505133, -73.77663118170413 40.72205070776331, -73.77664305467317 40.72203759412197, -73.77665643969621 40.72202536501423, -73.77667418707362 40.72201185213122, -73.7766902544289 40.72200165887778, -73.77671077046074 40.721991265330935, -73.77671623318992 40.72198939025204, -73.77674344967014 40.72198004618322)), ((-73.7770143663824 40.72277103553102, -73.77730955740789 40.722538043674106, -73.77760288611258 40.72286215390236, -73.77760892585063 40.72288920344952, -73.77760937640508 40.72291663752558, -73.77760422577742 40.72294379333044, -73.77759359925709 40.72297001193036, -73.77757775461919 40.72299465896073, -73.77755707498387 40.72301713631891, -73.77750330534788 40.723050380194266, -73.7774449863662 40.72307884163546, -73.77738285072182 40.72310216364832, -73.77731767704972 40.7231200532652, -73.77726410976081 40.72312492047811, -73.77721019042428 40.723123564445224, -73.77715716294705 40.72311601638997, -73.77710624708689 40.72310244977215, -73.77705861597066 40.7230831775428, -73.7770255311736 40.72305698601276, -73.77699813263017 40.72302723585593, -73.7769770713304 40.722994635239466, -73.7769628489013 40.72295995867851, -73.7769558022779 40.72292402989663, -73.77695610021057 40.72288770470863, -73.77695854664259 40.72286227808024, -73.77696579680054 40.72283738755692, -73.7769776997924 40.722813556043164, -73.77699400301454 40.72279128283255, -73.7770143663824 40.72277103553102)), ((-73.73182134198866 40.743683314558226, -73.7318339362007 40.743661247144075, -73.73185031327631 40.74367065599236, -73.73187028964034 40.743682141691444, -73.7319126949723 40.74370674871294, -73.73194959333715 40.743728173103385, -73.73198924877863 40.743751188797056, -73.73202727374016 40.74377365047106, -73.7319592580376 40.74383536540819, -73.7317958868423 40.74397193028758, -73.73159234949324 40.74414945923182, -73.73141087217061 40.74431096874307, -73.73125476333384 40.744449404839244, -73.73110667916438 40.74458987750268, -73.73096255124234 40.74473008456007, -73.73092177258742 40.74477081666061, -73.73089234881968 40.74479654935334, -73.7308513512614 40.74478359245832, -73.73088887456196 40.74473801162988, -73.73092041775273 40.74470171099103, -73.73095149453556 40.744665964869114, -73.7309825618603 40.74463020700997, -73.73101516973159 40.74459205918226, -73.7310477775474 40.74455391584759, -73.73108039363565 40.74451576711982, -73.73111478902827 40.744474154669135, -73.73114918435607 40.74443254761092, -73.73118358676679 40.74439093515577, -73.7312179831927 40.74434932807927, -73.73125238551741 40.74430771560309, -73.73128678777734 40.74426610851937, -73.73130813003458 40.74424132311985, -73.73132330783355 40.74422370761244, -73.7313598349436 40.74418130761075, -73.73139634780284 40.74413890666354, -73.73143286653193 40.74409650661884, -73.73146938640218 40.74405410566458, -73.73150590622234 40.74401170559897, -73.73154666454955 40.74397023122071, -73.73157421205111 40.74394219408139, -73.731587421642 40.74392875682504, -73.73162817986774 40.743887282417475, -73.73166893093878 40.74384580797867, -73.73170968906302 40.74380433354175, -73.73174887043513 40.74376511570048, -73.73178806005262 40.74372589696445, -73.73182134198866 40.743683314558226)), ((-73.73332684975014 40.744368760874856, -73.73340311639886 40.74433211824879, -73.73342163207633 40.74434303297369, -73.73347505294646 40.744374522301236, -73.73352167632254 40.744405750037096, -73.73355147028421 40.744425707649995, -73.73355286723267 40.744426642009955, -73.73356829855837 40.74443697775119, -73.7336149220039 40.74446820995156, -73.73366154551114 40.744499437630424, -73.73370816075249 40.7445306706741, -73.73375478435074 40.7445618974144, -73.73379405402679 40.744589285370644, -73.73384644271141 40.7446258375115, -73.73389926005298 40.744662689588196, -73.73390624640749 40.74466756308464, -73.73393809411877 40.74468978382221, -73.7339839240576 40.744721750656055, -73.73402974004482 40.744755443718375, -73.73407555496267 40.74478911965003, -73.73412574857713 40.74482602139522, -73.73416719315706 40.74485648858686, -73.73421030909714 40.74488886510119, -73.73421421650065 40.74489179807668, -73.73424559142197 40.74491535039295, -73.73428477286062 40.74494477763282, -73.73432396851683 40.74497421119552, -73.73436757203967 40.74500846633968, -73.73438521789014 40.74502232987543, -73.73441116731568 40.74504272234855, -73.7344547709282 40.74507697745938, -73.7344964559334 40.7451104753037, -73.73453813389789 40.745143967713354, -73.7345798189905 40.745177464626664, -73.73461988175909 40.74521013291879, -73.73465994459207 40.7452427948933, -73.73470000623723 40.745275467657045, -73.73473447521833 40.74530411394992, -73.73476894420389 40.74533276653583, -73.73480341321917 40.74536141911135, -73.73485076899856 40.745402029508455, -73.73490055588361 40.74544466352587, -73.73491059181563 40.745452970422726, -73.73490680007083 40.74551260431841, -73.73489743790448 40.745505472337534, -73.73467752558369 40.745339869025116, -73.73445554096314 40.74518054517293, -73.73442546219626 40.74515940747165, -73.73440561432749 40.74514546592322, -73.7343556865819 40.74511038124597, -73.73430576005501 40.745075301052104, -73.73426690038927 40.74504800066839, -73.73426136756414 40.74504411390572, -73.73420922079569 40.745007921819074, -73.73416260924712 40.744975620984356, -73.73411600364214 40.74494332554735, -73.7340804015259 40.744918655807766, -73.7340748980242 40.74491484384606, -73.73402278076733 40.7448787246834, -73.73397225961892 40.74484438589127, -73.73392999362652 40.74481564751334, -73.73388022478967 40.74478181020176, -73.73388005711394 40.744781696349946, -73.73383291798234 40.74474964900559, -73.73377940469068 40.74471331848712, -73.73372588319089 40.74467698252143, -73.73367237005914 40.744640641146844, -73.7336188498853 40.74460429883026, -73.73356844478774 40.7445706517194, -73.73351804682353 40.74453701000578, -73.73346764893542 40.74450336196644, -73.73343198227454 40.7444795545638, -73.73342390756316 40.744474165228155, -73.73336683199273 40.744436067572764, -73.73331279482407 40.74440147811042, -73.73329282319399 40.74438869413806, -73.73332684975014 40.744368760874856)), ((-73.73490970917504 40.74425837604203, -73.73446973326429 40.743636805174596, -73.73489084620415 40.74328464441768, -73.7348678578878 40.74342327558837, -73.7348534093617 40.74356257117809, -73.7348475314793 40.7437022295898, -73.73485023854387 40.743841942882796, -73.73486152234163 40.74398140846585, -73.73488136046493 40.74412032011102, -73.73490970917504 40.74425837604203)), ((-73.80162278194278 40.71656773944808, -73.80150234869812 40.71661464847479, -73.80117146445684 40.71671764633287, -73.80075556736371 40.716795995901684, -73.80072273570545 40.716801432202494, -73.80048988240432 40.71684362404992, -73.80025895026418 40.71689153791436, -73.80003018081796 40.71694512379814, -73.7998038144365 40.71700432539981, -73.79966368815037 40.71705107398697, -73.79844162480332 40.71739485658867, -73.7981766446444 40.71747338712238, -73.79816658272401 40.71744236213891, -73.79976547202381 40.71697788361035, -73.79987073983794 40.71694730154274, -73.79990262565883 40.716938038464036, -73.79990938117757 40.716936467104496, -73.80010602267609 40.716884524047806, -73.80030472079089 40.7168373317244, -73.80050527777888 40.71679493480662, -73.800707494718 40.7167573770655, -73.80116444354125 40.71666061736157, -73.80162278194278 40.71656773944808)), ((-73.74074750837146 40.73844692526035, -73.7410935636055 40.73815812451617, -73.74112683890854 40.73817137200063, -73.740770196982 40.73854423246322, -73.74074554024668 40.7385678405971, -73.74072647238295 40.738594273605266, -73.74071353857417 40.73862277358678, -73.74070710901391 40.73865252461335, -73.74070736816218 40.73868267521766, -73.74071430992457 40.73871235999442, -73.74072773398699 40.73874072840879, -73.74074725637519 40.738766969133934, -73.74047592048265 40.73905242793481, -73.74031451494983 40.73895946811693, -73.74052709646939 40.73870128349221, -73.74074750837146 40.73844692526035)), ((-73.7353205801214 40.741310287033606, -73.73539958650467 40.74127783585319, -73.73542189041376 40.74130512395569, -73.73533852733344 40.74134823349564, -73.73528340134622 40.74137589297458, -73.73523760152844 40.74139814378506, -73.73519180286756 40.74142039367943, -73.73514600298859 40.741442644453315, -73.73508604245006 40.74147067453646, -73.73502608072002 40.74149869377952, -73.73496611179294 40.74152672378089, -73.73490614402081 40.74155474835068, -73.73484394617417 40.74158590513588, -73.73482393644615 40.74159592047676, -73.73478799077337 40.74161392177208, -73.73472892471759 40.74164351071291, -73.73467638728343 40.74166915781801, -73.73462384033371 40.74169480577772, -73.73457130045438 40.741720451928714, -73.73451535723652 40.74174743377322, -73.73445941276428 40.74177442189121, -73.73440346826833 40.741801404578915, -73.73435403458099 40.74182506316187, -73.7343046067819 40.74184872083665, -73.73425518012814 40.741872379393364, -73.73420575225528 40.74189603792609, -73.7341476949243 40.74192490938838, -73.7340896363339 40.74195378712212, -73.73403157771834 40.74198265852292, -73.73397352615257 40.742011530811276, -73.73393566003749 40.742029132980676, -73.7338977796913 40.742046736005314, -73.73386639112181 40.742061351714604, -73.73383501082624 40.742075967434445, -73.73379677157999 40.74209448541622, -73.73375853231248 40.742113003385235, -73.73371392365078 40.742134682717825, -73.73366931498164 40.74215635663005, -73.73361612457057 40.74218402519003, -73.73356293409367 40.74221169912832, -73.73350025136351 40.74223974460112, -73.73348197305529 40.74219952780132, -73.7334871277144 40.74218392936914, -73.73350493290226 40.74217252507374, -73.73353332999771 40.7421572451685, -73.73357528898714 40.742134682678426, -73.73363380188043 40.74210687426076, -73.73369233601093 40.74207907216608, -73.73375085586352 40.74205127541171, -73.73380937689804 40.74202346692369, -73.73385975989342 40.74199906334387, -73.73391013579129 40.741974648919474, -73.7339605198968 40.74195024529816, -73.73401089570285 40.741925835332026, -73.73406127975255 40.74190142716396, -73.7341216903217 40.74187208840936, -73.73418211504507 40.74184274965573, -73.73424253258639 40.74181341715741, -73.73430295836583 40.74178408374589, -73.7343633675597 40.741754739458315, -73.7344133280295 40.74173079032043, -73.73446329675103 40.74170684117995, -73.73451325596858 40.741682891095316, -73.73456322461826 40.741658941911275, -73.7346131849479 40.741634991785915, -73.73466924671725 40.74160793722549, -73.73472530960701 40.74158088714291, -73.73478137126737 40.74155383703024, -73.73483744116979 40.741526786909205, -73.73489350394453 40.74149973134145, -73.73495236885275 40.741472143689485, -73.7350112420285 40.741444548822386, -73.73507011396792 40.74141695482289, -73.73512897993888 40.741389360779536, -73.73516274702108 40.7413746097159, -73.73519651406681 40.741359864045386, -73.73525082708741 40.741337767898194, -73.73530514717561 40.741315671741724, -73.7353205801214 40.741310287033606)), ((-73.77654527388246 40.723207549025744, -73.77642401785582 40.72322553099562, -73.77694638712371 40.72278239079025, -73.77692181954066 40.72282171899387, -73.77690563804443 40.72286348581976, -73.77689824023406 40.72290666455719, -73.77689980841602 40.72295019115566, -73.77691030475926 40.722992996633316, -73.77692947004313 40.723034026886154, -73.77695683302792 40.72307227152265, -73.77699171983474 40.723106789997566, -73.77703327399357 40.7231367332634, -73.77709137444954 40.72315491814231, -73.77715222903416 40.72316679573156, -73.77721466078687 40.72317213591991, -73.77727746273301 40.72317083461215, -73.77733942035596 40.72316291917591, -73.77739933529591 40.72314854128335, -73.77745605020117 40.72312797875995, -73.77766560964419 40.72305492162953, -73.77767362099802 40.7230689499706, -73.77740737947927 40.72316477596134, -73.77735797578792 40.72318109767836, -73.77730562233289 40.72319072736557, -73.77725187420012 40.723193377161934, -73.7771396030617 40.723198702557205, -73.77702711473886 40.723198889099535, -73.77691481405735 40.723193937572645, -73.77679131065521 40.72319171078124, -73.77666791713423 40.723196255922645, -73.77654527388246 40.723207549025744)), ((-73.76294332093704 40.726051871791356, -73.76287270248257 40.72604219265598, -73.76280223364617 40.726027730264214, -73.7628460333623 40.72602609960602, -73.7628896764375 40.72602923682113, -73.76294733986323 40.72602715740134, -73.76300089446194 40.72602282091628, -73.76303871471825 40.726017716307844, -73.76307652786996 40.72601261077183, -73.76311449046351 40.72600242484061, -73.76315245422923 40.72599223889927, -73.76318702911948 40.72598138139754, -73.76322161109732 40.7259705248005, -73.76326794680423 40.72595173363173, -73.76331797584034 40.7259312003409, -73.76336615257631 40.72590827956557, -73.76341800607062 40.725883613027364, -73.7634698606686 40.72585895817468, -73.7635278633676 40.7258299367342, -73.76358587311819 40.72580091527893, -73.76362252449539 40.72578257955333, -73.76364986499334 40.72576859489032, -73.76366810513129 40.725759013958275, -73.76368700658838 40.72575019981611, -73.76371300257459 40.72573950465163, -73.76374763680255 40.72573455086199, -73.76371509208664 40.72575644037173, -73.76368663078473 40.725771058511654, -73.76366842987838 40.72578292772886, -73.76366367825494 40.725786026544334, -73.7636471412262 40.72579900049991, -73.763631691299 40.72581350485408, -73.76361344655906 40.725834722190655, -73.7636006775238 40.72585360042959, -73.76358760849782 40.725878295360474, -73.7635790666827 40.725899087760254, -73.76357285145001 40.72592036310871, -73.76356801255497 40.725946721973166, -73.76356663005222 40.72596606213801, -73.76356700404088 40.72598542842237, -73.76356912302425 40.72600472534835, -73.76357497079333 40.726030977382855, -73.76358198138725 40.72605209978515, -73.76359009671816 40.72607045267846, -73.76359984481016 40.726088343358576, -73.76360637825664 40.72610483254452, -73.76358542696131 40.72610985941252, -73.76355273718872 40.72611218134711, -73.76351110487093 40.72611511526444, -73.76346132863564 40.7261167609136, -73.76344108887737 40.72611474090763, -73.76340970511104 40.72611161288308, -73.76335138904139 40.7261057982032, -73.7632964204623 40.72610031095779, -73.7632258019244 40.72609062663598, -73.7631551834263 40.72608093686782, -73.76308456374582 40.72607125245698, -73.7630139464756 40.72606156170411, -73.76294332093704 40.726051871791356)), ((-73.80166015438463 40.71634322053571, -73.80134909374776 40.71639996941662, -73.80131259690695 40.71640662786013, -73.80005818395104 40.716635470893586, -73.79980781157445 40.716698033846164, -73.79955878942069 40.71676364503902, -73.79916330760332 40.716881075124476, -73.79808417989692 40.717188288448135, -73.79807917536634 40.717172855693526, -73.79883265734627 40.71695078553417, -73.7999658727596 40.71662619194853, -73.80055411601434 40.71651360748066, -73.8007347357098 40.71647275872274, -73.80091715478997 40.71643683679549, -73.80110114119394 40.7164058854145, -73.80128646050584 40.7163799446907, -73.80147287714938 40.71635904753038, -73.80166015438463 40.71634322053571)), ((-73.73268144941369 40.74395561146049, -73.7327026520647 40.743923267490594, -73.7327238780371 40.743934687502005, -73.73278058419135 40.74396520862499, -73.73283400445187 40.74399669915204, -73.73288742599026 40.74402817885081, -73.73294084756108 40.744059663027265, -73.73299426799475 40.74409114807651, -73.73304768966295 40.74412263310356, -73.73310111017236 40.74415412440649, -73.7331545248159 40.7441856147703, -73.7332079454768 40.74421709341636, -73.7332534484414 40.74424391156647, -73.73323037461441 40.74425570884767, -73.73315005158109 40.74429677607704, -73.73309664549788 40.74426312720713, -73.7330426086098 40.74422853761718, -73.73298856467386 40.744193947985224, -73.73293453499838 40.74415935926124, -73.73288049707303 40.744124774994994, -73.73285982644238 40.74411155077668, -73.73282645330177 40.744090186186966, -73.73277241669427 40.74405559646941, -73.73271881887177 40.74402379662682, -73.73266146901258 40.74398609060383, -73.73268144941369 40.74395561146049)), ((-73.73397506118907 40.742353859157305, -73.73404611147079 40.7423503059397, -73.73396559279087 40.74240311865683, -73.73382500174704 40.74249110964267, -73.73376054818539 40.74253146115028, -73.73371722482725 40.74255319478385, -73.7336915998903 40.74251471342808, -73.73365996401262 40.74246940039632, -73.73364425971249 40.74244690172926, -73.73364401131789 40.74244654545289, -73.73370493356192 40.742418512041, -73.73376909822008 40.74239503367326, -73.73383591837305 40.74237632601095, -73.73390478242432 40.742362558733625, -73.73397506118907 40.742353859157305)), ((-73.73012683013577 40.74564891072335, -73.73008806953645 40.74568224955822, -73.73009326672698 40.74566196872668, -73.7301291434197 40.74561975940487, -73.73016502121449 40.74557755907944, -73.73019679653918 40.745537052899046, -73.7302285647138 40.745496548494046, -73.73026033401928 40.745456047684826, -73.73029210919883 40.745415548681464, -73.73032813099611 40.74537223651083, -73.73036415272098 40.745328930632134, -73.7304001827127 40.74528561845785, -73.7304362043694 40.7452423062526, -73.73047222597565 40.745198994936324, -73.73050286503688 40.74516356759387, -73.73053349697967 40.74512813572401, -73.73056412766213 40.74509271464901, -73.73059475956525 40.745057276459, -73.73063937363209 40.74501098288475, -73.73067974292833 40.744969081064475, -73.73072223572406 40.744924979744056, -73.73076419220132 40.744881439973405, -73.73078066812687 40.74486466594857, -73.73081480351796 40.744876651388566, -73.73079861009838 40.744898525671644, -73.7307536394868 40.74493933706473, -73.73071169978877 40.74498252296973, -73.73066975769017 40.74502570345064, -73.73063260557005 40.745065499292394, -73.73059545217423 40.74510530682568, -73.7305582916772 40.74514510262364, -73.73052542756601 40.74518236181705, -73.73049255749436 40.745219621887536, -73.73045968618368 40.745256886448196, -73.73042449802797 40.74529319103521, -73.7303893098121 40.74532950101424, -73.73035608738014 40.74536953109235, -73.73032287324378 40.74540954947354, -73.73028965781423 40.745449584951665, -73.73025727999138 40.745488902873625, -73.73022490447283 40.74552822709531, -73.73019253483982 40.74556755042108, -73.73015967896309 40.74560822876768, -73.73012683013577 40.74564891072335)), ((-73.73008806953645 40.74568224955822, -73.7300664834459 40.74571964761197, -73.73003209378498 40.74575046713693, -73.73005738880116 40.74570417893482, -73.73008806953645 40.74568224955822)))",Q084,6426,Q084,Q-08,Q-08,Q-08,Q-08,"Union Tp., Park Drive East to Nassau County Line","408, 411, 413","23,24,29",112,"11004, 11005, 11362, 11364, 11367, 11423, 11426, 1",Q,171.2,False,Grand Central Parkway,No,100000442,PARK,,,,DPR/CDOT,True,Grand Central Parkway,N,Grand Central Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/Q084/,No,"24, 25, 26, 27","11, 14","3, 5, 6",{B326938F-8A08-4CEA-B001-529F3CCE201C} +"MULTIPOLYGON (((-73.9797664556247 40.72918418956288, -73.97995270614703 40.72892686217426, -73.98002874884347 40.72895895240693, -73.98010990824021 40.72899320199232, -73.97992361905965 40.729250584557064, -73.97984247957714 40.7292163069293, -73.9797664556247 40.72918418956288)))",M337,5975,M337,M-03,M-03,M-03,M-03,E. 13 St. bet. Ave. A and Ave. B,103,2,9,10009,M,0.119,False,Dias Y Flores,No,100003975,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Dias Y Flores,N,Dias Y Flores,Greenthumb,Garden,http://www.nycgovparks.org/parks/M337/,No,74,27,12,{F38E48EF-D68D-4F14-8069-CF3EE388BB5C} +"MULTIPOLYGON (((-73.93580269575675 40.699334528643476, -73.93582581548944 40.69931127679869, -73.93617479281912 40.699507251248406, -73.93638381762204 40.69962463349284, -73.93648096165245 40.69967918525294, -73.9365610494831 40.69972415958706, -73.93640388972253 40.699904831798996, -73.93617222023839 40.699937629891465, -73.93604613654807 40.699731848662985, -73.936008309346 40.69967011282437, -73.93592691731034 40.699537271685074, -73.93580269575675 40.699334528643476)))",B555,5524,B555,B-04,B-04,B-04,B-04,Beaver St. bet. Locust St. and Arion Pl.,304,34,83,11206,B,0.436,False,,No,100008384,PARK,20140724000000.00000,20140717000000.00000,90 BEAVER STREET,DPR,False,Beaver Noll Park,,Beaver Noll Park,,Playground,,No,53,18,7,{031DECA4-C277-4624-99A6-7C2B77B8D738} +"MULTIPOLYGON (((-73.91832844898371 40.84835935605262, -73.91833573783495 40.84835888485238, -73.91834303870026 40.84835925291905, -73.9183501820147 40.848360450227176, -73.91835700771912 40.84836245144973, -73.9183633581523 40.84836520964959, -73.9183690899011 40.848368663491826, -73.91837407024815 40.84837273273886, -73.91837818783688 40.84837732456123, -73.91838134792678 40.84838233443496, -73.91838347831873 40.84838764974746, -73.91838453054378 40.84839314709705, -73.91838448103584 40.84839870309961, -73.91838333113859 40.84840418898574, -73.9183811047202 40.84840948140486, -73.91837785647793 40.84841445972957, -73.91837365651845 40.84841900874639, -73.91751421152529 40.8490871470872, -73.91750901637127 40.84909085970374, -73.91750321000661 40.849094009075294, -73.9174968992321 40.849096536746146, -73.91749019913303 40.84909839777397, -73.9174832295235 40.84909955892616, -73.91747611850444 40.84909999868249, -73.91746899297392 40.8490997090293, -73.917461984557 40.84909869546378, -73.9174552189324 40.849096976986104, -73.91744881820904 40.8490945824995, -73.91744289854516 40.84909155801228, -73.91743756779003 40.849087955830235, -73.91743292310103 40.84908384355992, -73.91742904858316 40.84907929510194, -73.91742601291607 40.84907439154986, -73.91742387172366 40.84906922299279, -73.91742266520886 40.84906388311072, -73.91742241341052 40.849058469171226, -73.9174231209524 40.849053077530236, -73.91742477822307 40.84904780813558, -73.91742735190296 40.84904275371395, -73.91743079443872 40.84903800968352, -73.91743504643506 40.84903365794646, -73.91744002952194 40.84902978129191, -73.91830263511072 40.84836913603069, -73.91830827938318 40.84836560289404, -73.91831456199172 40.84836275368285, -73.9183213358075 40.84836065582968, -73.91832844898371 40.84835935605262)), ((-73.91715844828506 40.84923575612218, -73.91716562315484 40.849235479420344, -73.91717279128672 40.84923585196814, -73.91717985069943 40.84923687099077, -73.91718669942955 40.8492385193058, -73.91719324144968 40.849240774332, -73.91719938311441 40.84924360538552, -73.91720503909482 40.84924696918144, -73.91721012643492 40.849250821536266, -73.91721457523899 40.84925510566892, -73.91721832035907 40.849259761199676, -73.91722131088451 40.849264722356175, -73.91722350183942 40.8492699188678, -73.91722486367094 40.84927527507206, -73.91722537631212 40.849280716213755, -73.91722503274275 40.84928616574597, -73.91722383780247 40.849291546229836, -73.91722180937558 40.84929678023592, -73.91721897482883 40.84930179394337, -73.91721537457245 40.84930651444133, -73.91680652863008 40.84958776279541, -73.91668085955916 40.84967421119387, -73.91644606000747 40.84983572923214, -73.91643976417238 40.8498385486152, -73.91643306115265 40.84984076347274, -73.91642605416071 40.849842341461745, -73.91641884521323 40.8498432583428, -73.91641154342733 40.849843501588055, -73.91640425553709 40.8498430676728, -73.91639709300888 40.84984196208086, -73.91639016136597 40.84984020109752, -73.91638356374514 40.84983781271292, -73.91637739853175 40.84983483121703, -73.91637175816912 40.84983130080112, -73.91636672678813 40.84982727465532, -73.91636237902449 40.84982281226625, -73.91635878001567 40.849817982118566, -73.91635598303895 40.84981285358899, -73.9163540306863 40.849807505951674, -73.91635295132238 40.84980201576904, -73.91635276144402 40.84979646679894, -73.91635346331746 40.84979094278872, -73.91635504735353 40.849785524775655, -73.9163574897336 40.84978029288637, -73.91636075359551 40.8497753263373, -73.91636479022526 40.84977069893341, -73.91656236966183 40.84963478395133, -73.91713167987155 40.8492431515488, -73.91713788659199 40.849240403202586, -73.9171444803671 40.84923823685204, -73.91715136747848 40.84923668034502, -73.91715844828506 40.84923575612218)), ((-73.91921817450256 40.84770994231363, -73.91922540171637 40.847709385467255, -73.91923265157324 40.84770971291982, -73.91923974027529 40.847710918239244, -73.91924648405644 40.84771296887914, -73.91925270747427 40.84771581338868, -73.91925825171666 40.847719376915954, -73.9192629722199 40.847723569310666, -73.91926674934611 40.84772828152953, -73.91926948600445 40.847733391037735, -73.91927110883096 40.84773876721271, -73.91927157767492 40.84774427135043, -73.91927088203508 40.84774976206633, -73.91926903631392 40.84775509709266, -73.91926609048392 40.847760138689, -73.91926212059515 40.84776475813808, -73.91906127498693 40.847898365725754, -73.91888132469767 40.848027874207645, -73.918788182127 40.848097768824466, -73.9187050120564 40.8481601683919, -73.91856692188624 40.84827058751805, -73.9185619576872 40.848274634428144, -73.91855627439426 40.848278092808826, -73.9185499894985 40.84828088800208, -73.91854323825797 40.8482829624718, -73.91853616184571 40.848284270392526, -73.91852890971143 40.84828478575546, -73.91852163603085 40.84828449696309, -73.9185144949575 40.8482834104277, -73.91850763706742 40.848281548768036, -73.91850120698766 40.84827895080743, -73.91849534102197 40.84827567337338, -73.91849016241648 40.8482717840899, -73.91848578135416 40.84826736588025, -73.91848229021772 40.848262511560556, -73.91847976477489 40.848257324740985, -73.91847825588465 40.848251913516684, -73.91847779542248 40.848246394073726, -73.91847839510427 40.848240882583895, -73.91848004055825 40.84823549430002, -73.91848269606628 40.848230345360406, -73.91848630931925 40.84822554288651, -73.9184908007391 40.84822118947818, -73.91849607534719 40.848217375117486, -73.91860616551574 40.84813285789512, -73.918780931822 40.84799676989865, -73.91896053259111 40.847865155975825, -73.91915604862817 40.84774170508364, -73.91915731358525 40.84774100898904, -73.91921115849594 40.84771137098413, -73.91921817450256 40.84770994231363)), ((-73.92049095710827 40.84695389965246, -73.92049173506884 40.846953853363054, -73.9204925212603 40.84695386561133, -73.92049342238582 40.84695395448071, -73.9204942997043 40.84695411897501, -73.92049510342812 40.8469543446521, -73.92049588335355 40.8469546387502, -73.92049686343569 40.846955141000024, -73.92049753407964 40.846955589907516, -73.92049825432291 40.84695621084327, -73.92049889852022 40.84695695959654, -73.92049943343716 40.84695786225869, -73.92049975488632 40.846958780082126, -73.9204998702475 40.846959491550734, -73.92049987657035 40.84696015431755, -73.92049976538091 40.846960913356135, -73.92049946548619 40.846961804637054, -73.92049905548468 40.8469625490618, -73.92049856733885 40.84696319257752, -73.92049793331438 40.84696385400255, -73.91962609974476 40.847536720375764, -73.91961973218041 40.847539329168036, -73.91961286051821 40.847541051524104, -73.91960569946094 40.84754183356398, -73.9195984672318 40.84754165202688, -73.91959138913545 40.847540511572326, -73.9195846833233 40.84753844837212, -73.91957855842846 40.84753552470572, -73.91957319933105 40.84753183255238, -73.91956877665618 40.84752748459269, -73.91956324388379 40.847517377209606, -73.91956230535705 40.84751192857591, -73.91956263928587 40.84750644030727, -73.91956423242316 40.84750107988613, -73.91956703713136 40.84749601567129, -73.919570965472 40.84749140158553, -73.919575896315 40.84748738162307, -73.92048848753696 40.846954460758056, -73.92048955873132 40.84695413551815, -73.92049027040383 40.84695399012887, -73.92049095710827 40.84695389965246)))",X082,5695,X082,X-05,X-05,X-05,X-05,University Av bet. W 174 St and W Tremont Av,205,14,46,10453,X,0.743,False,University Malls,Yes,100005123,PARK,20100106000000.00000,19360429000000.00000,,DPR,False,University Malls,Y,University Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/X082/,No,"86, 77",29,15,{B1996228-822D-426E-A8F2-D9CA44F91C0D} +"MULTIPOLYGON (((-73.99871657392515 40.69436222465507, -73.99873032229709 40.69433306440421, -73.9987577467915 40.69434056687509, -73.99883256866596 40.69418186849646, -73.9988573417644 40.69418864600406, -73.99874156709097 40.69443420561502, -73.99872242228015 40.69447481132373, -73.9987042216142 40.6945134161005, -73.9986794484107 40.69450663856016, -73.9987141613681 40.694433009431194, -73.99868673802362 40.69442550875104, -73.99869907963694 40.694399331886736, -73.99870941542737 40.69439536524452, -73.99872108380526 40.69437061478239, -73.99871657392515 40.69436222465507)))",B223DB,6146,B223DB,B-02,B-02,B-02,B-02,BQE bet. Joralemon St. and Grace Ct.,302,33,84,11201,B,0.026,False,Brooklyn Heights Promenade,No,100003868,PARK,20100106000000.00000,19470514000000.00000,,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223DB/,No,52,26,7,{72DC02CD-A45B-4DAA-BA5E-3F274D2208FB} +"MULTIPOLYGON (((-73.95892335421298 40.70964031186033, -73.9589299601366 40.70963990358436, -73.9589365858577 40.709640014909894, -73.9589417392003 40.70964052193477, -73.95894365617261 40.70964071082532, -73.95897073392506 40.70964542204785, -73.95899592867008 40.70965052431561, -73.95900401953888 40.70965237774755, -73.95902089464475 40.709656245147485, -73.95904510827533 40.70966342543474, -73.95907002787855 40.709669518150505, -73.95909414307756 40.70967705769635, -73.95911792657088 40.70968518785452, -73.95917917887044 40.70970822485305, -73.95924061798185 40.709729663477916, -73.95930213769182 40.709750957116086, -73.95936366099076 40.70977225162317, -73.95942495332771 40.70979394043967, -73.95948267562274 40.70981333796738, -73.9599528147812 40.71001169415395, -73.95993069427696 40.710014480742, -73.95992112580576 40.71001568679728, -73.95868667066995 40.71012149807667, -73.95868530475128 40.710118129675266, -73.95868227225176 40.71010961245432, -73.95867962440308 40.710101020628926, -73.95867736948097 40.71009236680924, -73.95867550511524 40.71008365639754, -73.95867403721422 40.71007490290359, -73.95867296577066 40.710066118034035, -73.9586729425936 40.710059600127025, -73.9586729397223 40.71005850510461, -73.9586720193346 40.7100484874897, -73.95867214432955 40.710039661626126, -73.95867267048752 40.71003084851375, -73.95867359543979 40.71002205085321, -73.958674915626 40.71001328485245, -73.95867663340726 40.71000455951736, -73.95867784474098 40.709999578325224, -73.95889242732638 40.70965026857732, -73.95889758274342 40.70964741219612, -73.9589053642953 40.709644236170305, -73.9589115226108 40.709642375211224, -73.9589168390943 40.7096412325592, -73.95892335421298 40.70964031186033)))",B167A,5087,B167A,B-01,B-01,B-01,B-01,"S. 5 St., Broadway, Havemeyer St.",301,34,90,11211,B,0.773,False,La Guardia Playground,Yes,100004019,PARK,20100106000000.00000,19380201000000.00000,215 BROADWAY,DPR,False,La Guardia Playground,Y,La Guardia Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B167A/,No,53,18,7,{60DDEDCA-2D41-455F-8583-FA73F6CA37FD} +"MULTIPOLYGON (((-73.86172708468268 40.8658079031273, -73.86173256874352 40.86567877758889, -73.86190136821533 40.865678334985766, -73.86172708468268 40.8658079031273)))",X278,4636,X278,X-11,X-11,X-11,X-11,"Boston Rd., Bronxwood Ave., Allerton Ave.",211,13,49,10467,X,0.024,False,Boston Garden,Yes,100004403,PARK,20100106000000.00000,19970116000000.00000,2700 BOSTON ROAD,DPR,False,Boston Garden,Y,Boston Garden,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X278/,No,80,36,14,{82CC7375-BA6D-4E85-8A2D-0E4D71AA67DD} +"MULTIPOLYGON (((-73.89806215955596 40.86246015243326, -73.89806547111434 40.862456319270194, -73.89806569836092 40.86245663644357, -73.89806833078345 40.86245402194431, -73.8980766607393 40.862450978441764, -73.89811632950405 40.86244441018129, -73.89815448321751 40.86243809270719, -73.89816709077212 40.862436271337224, -73.89817397453281 40.862436537654155, -73.89817898466012 40.86243730659187, -73.89818433177997 40.862438760199346, -73.89819053340902 40.862441429322054, -73.89819592248611 40.86244491807414, -73.89820040064046 40.862449176842, -73.89820498990356 40.86245678733264, -73.89820585137394 40.86245965435334, -73.89820635220556 40.86246643638775, -73.8982059602661 40.86246910329427, -73.8982031379866 40.862475647368875, -73.89814685028435 40.86256996547639, -73.89814078556022 40.86258012665803, -73.89814001617016 40.86258141728189, -73.89813354950472 40.862592253476, -73.89812919904008 40.8625975508214, -73.89812417637722 40.862600311792455, -73.89811694813375 40.86260191638717, -73.89811116853393 40.86260170957378, -73.89810856107644 40.862601187688306, -73.8981059339311 40.862600355116264, -73.8981012537703 40.86259788183871, -73.89809895566914 40.862595954560895, -73.89809776210522 40.86259462618408, -73.89809614300955 40.86259156578856, -73.89806052567168 40.86247293344975, -73.89805968897895 40.862470155598395, -73.89805978570935 40.86246740648693, -73.89806027781586 40.86246362126045, -73.89806215955596 40.86246015243326)))",X035,5721,X035,X-07,X-07,X-07,X-07,"E. Fordham Rd., Creston Ave., E. 190 St.",207,14,52,10468,X,0.04,False,Muller Triangle,No,100004031,PARK,20100106000000.00000,19291217000000.00000,,DPR,False,Muller Triangle,Y,Muller Triangle,Type 2,Triangle/Plaza,http://www.nycgovparks.org/parks/X035/,No,78,33,13,{DCBD0EF1-E011-47F3-9C36-3F057BF46655} +"MULTIPOLYGON (((-73.8448450163566 40.6803889502315, -73.84488833509539 40.68037791338173, -73.84501384173436 40.680628096278184, -73.84484695364557 40.680603611472584, -73.8448450163566 40.6803889502315)), ((-73.8441250180997 40.680453320330095, -73.84430970483758 40.680414211534845, -73.84433387326769 40.68050542235074, -73.84414100098014 40.680490808837696, -73.8441250180997 40.680453320330095)))",Q190,6172,Q190,Q-10,Q-10,Q-10,Q-10,"Liberty Ave., Rockaway Blvd. bet. 94 St., Cross Bay Blvd. and 95 St.",410,32,106,11417,Q,0.084,False,Corporal Ruoff Square,Yes,100000102,PARK,20090423000000.00000,19380101000000.00000,,DPR,True,Corporal Ruoff Square,N,Corporal Ruoff Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q190/,No,23,15,8,{6A9E1C8C-8508-4E28-8D14-FA20C509D0B3} +"MULTIPOLYGON (((-73.9342530127425 40.76279815894281, -73.93464687280257 40.762385817772326, -73.93465409038926 40.762378261229834, -73.93510825686587 40.762629638051436, -73.9357185085488 40.76201143436655, -73.93579308924187 40.7619358803927, -73.93579130779489 40.76193489424775, -73.93575189935656 40.761913082766064, -73.93577095823959 40.761893774866984, -73.93591167616054 40.76175121959901, -73.93629583260557 40.76193149937614, -73.93540177245865 40.76333584806937, -73.9342530127425 40.76279815894281)))",Q333,4916,Q333,Q-01,Q-01,Q-01,Q-01,21 St. bet. 34 Ave. and 35 Ave.,401,26,114,11106,Q,2.758,False,Ravenswood Playground,Yes,100000453,PARK,20090423000000.00000,19501115000000.00000,34-00 21 STREET,DPR,True,Ravenswood Playground,Y,Ravenswood Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q333/,No,37,12,12,{21A6369F-9BD9-428F-9312-54F1595064E0} +"MULTIPOLYGON (((-73.96881026705002 40.67188946046116, -73.96867498940337 40.6717096547404, -73.96865136050928 40.671678249136754, -73.96843656414805 40.671390937726855, -73.96819930171347 40.67106164847737, -73.96796739803742 40.67073979217082, -73.96781608567109 40.67052978486502, -73.96763448821453 40.67027774358323, -73.96745289213094 40.67002570110667, -73.96720926254136 40.66968891026529, -73.96705899074875 40.669481744259706, -73.96701456426722 40.66942049557232, -73.96643171859606 40.66861696080657, -73.96561854438609 40.66747350966291, -73.96375717432979 40.664800968000165, -73.96358974462619 40.664557289510036, -73.9633447581005 40.664200730700394, -73.9627399925414 40.66332052408415, -73.96272830088654 40.66330926564483, -73.96268347407408 40.663240334605085, -73.9626649856918 40.663175128529204, -73.96266517946982 40.66310146906521, -73.96267705126334 40.66304854237371, -73.96269019309716 40.66302312056052, -73.96270286967076 40.66299860001171, -73.96271976897563 40.662976520328556, -73.96276956059802 40.66292792118361, -73.96279479477812 40.66290329122296, -73.96283312934817 40.662865879960165, -73.96287146624732 40.66282845607799, -73.96290980428104 40.66279104118842, -73.96294853509897 40.66275323288679, -73.96300761004676 40.66269075877094, -73.96303536829097 40.66265851750437, -73.96306188870774 40.662625674288606, -73.96308702339424 40.66259238216484, -73.96310367592866 40.662569193809546, -73.96311943599297 40.662545338783616, -73.96313409648721 40.66252109528052, -73.96316011754162 40.66247152479115, -73.96317170747362 40.66244413749773, -73.9631816230873 40.66242070473484, -73.9631906400746 40.66239491413176, -73.96320516457835 40.66234268883208, -73.96321058197688 40.66231670166373, -73.96321645290875 40.66228529803433, -73.96322098191273 40.66225340679617, -73.963224090732 40.662221409743246, -73.96322577697521 40.662189358204365, -73.96322487340328 40.66212520152927, -73.96322229537047 40.66209318194587, -73.96321829469046 40.662061251959, -73.96321288554572 40.66202942958347, -73.96320635685707 40.661999172847345, -73.96319755688104 40.66194681040901, -73.96318863434016 40.66189371310908, -73.96317971181293 40.66184061670862, -73.96317078930093 40.66178751850616, -73.9631618668031 40.661734420302615, -73.96315294431356 40.661681332904315, -73.9631440218432 40.66162823649978, -73.96313509938798 40.66157513829319, -73.96312617812904 40.6615220409865, -73.9631172545197 40.6614689427775, -73.96310833210069 40.6614158562746, -73.96309940970228 40.66136275806392, -73.96309048613855 40.66130965444877, -73.96308155194083 40.66125656073486, -73.96307263076562 40.66120346612358, -73.96296375219673 40.660533962856, -73.96256116726666 40.65793503332963, -73.96236240946239 40.656729623060095, -73.96212731680119 40.655253640871514, -73.96217112203966 40.65523278310248, -73.96223429956112 40.65519609968841, -73.96229168015277 40.655154254376356, -73.96234254341914 40.65510777644307, -73.96238624698003 40.65505725012266, -73.96242223947797 40.65500331190869, -73.9624500700424 40.65494664155146, -73.96246938592878 40.65488795305187, -73.96247994434694 40.65482798565945, -73.96248161246446 40.654767494867194, -73.96316628162302 40.65450153320791, -73.96550383526703 40.65359345700564, -73.96943042352741 40.65206792160184, -73.97143126427689 40.65129048802794, -73.97149294108989 40.65134730797141, -73.97156034581946 40.651400219251244, -73.97163305296131 40.6514488876606, -73.97171060507144 40.65149300600043, -73.97179251040033 40.65153229678114, -73.9718782523527 40.65156651042379, -73.97196729066786 40.651595430664074, -73.97205906260166 40.651618877254165, -73.97215298884127 40.651636699660855, -73.97224847586635 40.65164878697216, -73.9723248708826 40.651912867694556, -73.97245006296731 40.652345621550616, -73.97250607370955 40.652539233569, -73.97264229124544 40.65301009160513, -73.97322870980074 40.65503705776609, -73.97358216790086 40.65625873220156, -73.97367087541456 40.656565329918784, -73.97372618946065 40.656756508792284, -73.97376611618215 40.65689452301474, -73.97384516593758 40.65716782176219, -73.97380781069086 40.65719253334927, -73.97377629268962 40.65722158134307, -73.97375146716328 40.65725417709078, -73.97373400728553 40.657289435542445, -73.97372438879219 40.6573263986601, -73.97372287223209 40.657364063329545, -73.97372949822531 40.657401406573285, -73.9737440874508 40.65743741346651, -73.97376624418017 40.65747110595474, -73.97379536572512 40.657501570772304, -73.97383066253045 40.6575279792589, -73.9738711747171 40.657549614379384, -73.97391580281949 40.65756588874211, -73.97396333379395 40.657576359913925, -73.97400819636805 40.657731461561376, -73.97409032751386 40.65800411694025, -73.97413590859698 40.658109997348426, -73.97420816106475 40.658226818695255, -73.9742571619203 40.658290557438654, -73.9743116859743 40.65835187680543, -73.9744001969469 40.65843476478614, -73.9745004757164 40.658512707868596, -73.9746161555952 40.658586953139135, -73.97472666086495 40.65864331109378, -73.97488962799628 40.658722784962286, -73.97796738168442 40.660215079945914, -73.97835683854684 40.66040349240351, -73.97923235753177 40.66082689563526, -73.97921028964073 40.660882737174994, -73.97919602000577 40.6609400299522, -73.97918970375262 40.66099814633786, -73.97919141087037 40.66105644697932, -73.97920112265918 40.66111429160566, -73.97921873172805 40.66117104353038, -73.97924404553764 40.66122608045828, -73.97927678639877 40.66127879628675, -73.97931659265016 40.66132861371352, -73.97936302930086 40.661374983338185, -73.97863960767101 40.66225257823609, -73.97446744821376 40.667248826346665, -73.97401336084685 40.667801631422634, -73.97225004644172 40.66991169316003, -73.97152849989828 40.67077580185477, -73.97081539436712 40.67169451803046, -73.97077349445584 40.67174551888381, -73.97071908584184 40.67181859267086, -73.97038440326453 40.6722680802425, -73.97037871687942 40.672275717849324, -73.97035360801338 40.67230943927945, -73.9702679834272 40.672282868193335, -73.97017959816156 40.67226218749857, -73.97008915229509 40.672247561264555, -73.9699973589356 40.672239104037985, -73.96990494067222 40.6722368835432, -73.96986173958952 40.67198497740578, -73.96984832624231 40.67190675963723, -73.96983832906436 40.67184846756321, -73.96977001996255 40.67185384732328, -73.9696476078578 40.67186348752791, -73.96951529364749 40.671873906626196, -73.96951948617897 40.671900231599714, -73.96957623442601 40.67228085299616, -73.96949454770903 40.67230549017452, -73.96941588043092 40.67233528624876, -73.96934079447064 40.6723700279527, -73.96926982452436 40.67240946689385, -73.96922378856743 40.67243908784272, -73.96922067399016 40.67243494734106, -73.96920041919765 40.67240802642093, -73.96918566545467 40.672388416452804, -73.96899390422477 40.67213354073141, -73.96881026705002 40.67188946046116)))",B073,69238,B073,B-19,B-19,B-19,B-19,"Prospect Park W, Parkside Ave. bet. Flatbush Ave., Ocean Ave. and Prospect Park SW","306, 307, 314, 309, 308",39,78,11215,B,526.25,False,Prospect Park,No,100004003,PARK,,18640615000000.00000,,DPR,False,Prospect Park,Y,Prospect Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/B073/,No,44,21,9,{2E313F13-E826-45C6-8E10-C342CDE4D9A9} +"MULTIPOLYGON (((-73.90176447842659 40.658083372973394, -73.90181458911144 40.658061014491814, -73.90187327272403 40.65829185993487, -73.9018021251312 40.65830248655589, -73.90170110627434 40.65831757398596, -73.90154184613858 40.65841480169635, -73.90148885722121 40.65820635322579, -73.90174826432796 40.65809060828863, -73.90176447842659 40.658083372973394)), ((-73.90073333607342 40.65854117517621, -73.90096309868969 40.65843814964427, -73.9009799417126 40.65850522025942, -73.90073333607342 40.65854117517621)))",B486,6229,B486,B-16,B-16,B-16,B-16,"New Lots Ave. bet. Sackman St., Powell St. and Junius St.",316,42,73,11212,B,0.19,False,Powell St Block Association,No,100003700,PARK,20100106000000.00000,20021120000000.00000,93 NEW LOTS AVENUE,DPR,False,Green Valley Garden,N,Green Valley Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B486/,No,60,19,8,{1DEB5AE8-067C-40FD-B087-D3026A179216} +"MULTIPOLYGON (((-73.88749752664867 40.84268088206481, -73.88788910497894 40.842228260117906, -73.88791231022893 40.842238713988166, -73.88796681207783 40.84226327117003, -73.88758183510994 40.842701196552866, -73.88756783287133 40.84271712434269, -73.88749752664867 40.84268088206481)))",X329,5778,X329,X-06,X-06,X-06,X-06,Marmion Av bet. Fairmount Pl and Elsmere Pl,206,17,48,10460,X,0.11,False,Miracle Garden,No,100004921,PARK,20100106000000.00000,20011120000000.00000,,DPR,False,Miracle Garden,Y,Miracle Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X329/,No,79,33,15,{2464E5A7-E63A-4A7E-9C8D-514B0A6E9EE4} +"MULTIPOLYGON (((-73.8230171563259 40.876047483686044, -73.82334665126199 40.87503346112219, -73.82430923704668 40.87522951555218, -73.82430589481137 40.87526824861948, -73.82429380546071 40.875345230165074, -73.8242751365724 40.875459044313935, -73.824257685502 40.87555060291564, -73.8242167975832 40.87573391540056, -73.82417039137901 40.875900311869806, -73.82412426150128 40.87603570939199, -73.82408884749474 40.87613220047761, -73.82406806938025 40.87618881408346, -73.8240185541045 40.87629429844548, -73.8239521537262 40.8764305132388, -73.82389121438459 40.87654638796919, -73.82385451850385 40.876611529187585, -73.8228935245804 40.87634886879504, -73.8230171563259 40.876047483686044)))",X251,5607,X251,X-10,X-10,X-10,X-10,Co-op City Blvd. and the Hutch. River bet. Carver Loop and Bellamy Loop,210,12,45,10475,X,3.4,False,Co-op City Field,Yes,100004739,PARK,20100106000000.00000,19791212000000.00000,,DPR,True,Co-op City Field,Y,Co-op City Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X251/,No,82,34,16,{7B4600EE-6CA7-4FEA-AFBF-5EF38FA2CFE7} +"MULTIPOLYGON (((-73.91838568724249 40.668663876433094, -73.91909283163648 40.66855436259287, -73.91910243014834 40.66858552629482, -73.91843863422575 40.66887341091418, -73.91838568724249 40.668663876433094)))",B116,6058,B116,B-16,B-16,B-16,B-16,"Pitkin Ave., E. New York Ave. bet. Crafton St. and Legon St.",316,41,73,11212,B,0.213,False,Zion Triangle,Yes,100004478,PARK,20100106000000.00000,18960101000000.00000,,DPR,False,Zion Triangle,Y,Zion Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B116/,No,55,20,9,{F6757B00-65D5-44B5-8C6E-E83B89E8CF20} +"MULTIPOLYGON (((-73.8774569429821 40.841487432923586, -73.877519707835 40.84136550968113, -73.87769343503165 40.84109741257402, -73.87772710161961 40.84110696558839, -73.87795610674503 40.841173100866, -73.87783957643067 40.841391593115524, -73.87775704238312 40.84136703745462, -73.87740851858823 40.841740406735035, -73.87728274134442 40.841954445539045, -73.87716563146354 40.8422877305111, -73.87699810514479 40.84224999329239, -73.87706911767016 40.842082276388, -73.87713088218511 40.841951821924155, -73.87732168274853 40.841702163188174, -73.87739614388293 40.84159968781546, -73.8774238010135 40.84155216032766, -73.8774569429821 40.841487432923586)), ((-73.87797075344332 40.841145637790454, -73.87806308449312 40.840972503815, -73.87782391064515 40.8408989135926, -73.87803908549323 40.84054559206366, -73.87804141263105 40.84054259047626, -73.87812874192667 40.840429964342185, -73.87812889047079 40.84042978440033, -73.87834565105804 40.84017565337273, -73.87835050655711 40.840176943498896, -73.87813286112826 40.840431892149724, -73.87812805563878 40.84044213019192, -73.87804524197193 40.84061855389666, -73.87804517791591 40.84061727512747, -73.87803245027492 40.840645804628, -73.87804670409724 40.84064758736933, -73.87804669953597 40.840647488310175, -73.8782251769203 40.840668580045204, -73.8782444576585 40.84063243746091, -73.87827031561054 40.840583953340506, -73.87829296509126 40.84059049501755, -73.87849872906916 40.840212470237915, -73.87861534306424 40.84021872988697, -73.87861414131002 40.840220373824884, -73.8786144294029 40.84022039303846, -73.87842947862019 40.84055708657575, -73.87841873465482 40.840576646588005, -73.87833107148778 40.84074167593349, -73.87827772730459 40.840800524564656, -73.87822164109079 40.840860965950995, -73.87816627103197 40.840920716486664, -73.87810761111753 40.84098724063613, -73.87810016373622 40.84098456460208, -73.8780083515477 40.841156714915684, -73.87797075344332 40.841145637790454)), ((-73.87772223411898 40.84058513227308, -73.87784182110543 40.84039454695943, -73.87791790977613 40.84039833845508, -73.87779240554471 40.840598352954295, -73.87765943114331 40.8408102729232, -73.87759151069095 40.84079346608214, -73.87772223411898 40.84058513227308)))",X288,5410,X288,X-14,X-06,X-06,X-14,Bronx River bet. E 180 St and E Tremont Av,206,15,48,10460,X,1.016,False,West Farms Rapids,Yes,100004973,PARK,20100106000000.00000,19971124000000.00000,1089 EAST TREMONT Av,DPR,False,West Farms Rapids,Y,West Farms Rapids,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X288/,Yes,87,33,15,{7C2185F2-C7A2-4802-844C-1C964F18589C} +"MULTIPOLYGON (((-73.73320415943988 40.75444962830408, -73.7331990454059 40.7544394560099, -73.73297722457608 40.754482210611776, -73.7326312349842 40.75454889945637, -73.73034502785491 40.75498952699863, -73.73029036659186 40.75499883997157, -73.73027061828456 40.75500220486201, -73.73027293557685 40.755003420572926, -73.73012478549761 40.75503197273409, -73.72994860112884 40.75506592688063, -73.72975862169406 40.75510253911844, -73.72954840359951 40.75514305136244, -73.72950356897272 40.75515169093914, -73.72935422954976 40.75518047074841, -73.72925403976608 40.75519977906911, -73.72914662417918 40.75522047870999, -73.72894304327293 40.75525971052337, -73.72890810316511 40.75526644425895, -73.72862566544731 40.755320871510484, -73.72860887337852 40.755297919384, -73.72858323366509 40.755262875077385, -73.72860487086355 40.7550278786374, -73.72866076400328 40.75442084796422, -73.72872618520091 40.75371029993592, -73.72878254198037 40.75309820841895, -73.7287874990268 40.753044369599216, -73.72876246344053 40.75274307207556, -73.72876181009116 40.75274357842472, -73.7287351765702 40.75243170333075, -73.728727593634 40.752342919503036, -73.7287245317808 40.752307063890235, -73.7286854772394 40.751849739747236, -73.72868223453449 40.7518117810137, -73.72864385190908 40.751362322560084, -73.72863981026289 40.7513149876301, -73.72860029797417 40.75085230157467, -73.72859787026393 40.75082388025574, -73.72856738545481 40.750466885799206, -73.72856898769116 40.750422972591345, -73.72856903025705 40.750421825441606, -73.72856920217421 40.75041712158125, -73.72857021439746 40.75041106713466, -73.72857060762063 40.75040871863008, -73.72857217205917 40.750399365114745, -73.72857227521783 40.750398749408824, -73.72857423169474 40.75038704738601, -73.72857589929085 40.750377078164675, -73.7285777319387 40.750366124174036, -73.72858006868681 40.75035903005757, -73.72858363315866 40.750348208020114, -73.72859090116474 40.75032614463467, -73.72859816527088 40.7503059092753, -73.72860706128442 40.75028446207167, -73.7286131458255 40.75026979268741, -73.72861652246354 40.75026234802022, -73.72862019901085 40.750254241284, -73.72862876844785 40.7502353480567, -73.7286344176824 40.75022289200044, -73.72864119872439 40.750211358031216, -73.72864502744316 40.750204845555785, -73.72865103939105 40.750194621817585, -73.72866003586168 40.750179319027765, -73.72866806713839 40.75016579427237, -73.72867501700438 40.75015409050237, -73.72868331177328 40.750140121514484, -73.72869281314138 40.75012411931434, -73.72869883419904 40.750113981143514, -73.72870535363802 40.750103002169034, -73.7287106939056 40.75009400784316, -73.72871474411507 40.750087186111465, -73.72871987691279 40.750078543395986, -73.7287234275536 40.75007256246452, -73.72872806078247 40.75006476054923, -73.72873219444378 40.75005779943432, -73.72873698028776 40.75004973943163, -73.72874161351346 40.75004193751578, -73.72874748076238 40.750032055625546, -73.72875191964638 40.75002458013683, -73.728756705482 40.750016521033785, -73.72876389138544 40.750004420689045, -73.72876986473854 40.749994360746406, -73.72877893665495 40.74997883659913, -73.72878433711577 40.749969594771116, -73.7287953860448 40.749950689358904, -73.72880627996439 40.74993204652965, -73.72881729192103 40.74991320316345, -73.72882254928248 40.74990420593545, -73.72882468370675 40.749900553087706, -73.72882540631004 40.74989931658724, -73.72884834000952 40.74986007230781, -73.72887040082877 40.74982232351768, -73.72891688227118 40.74973839819891, -73.72896320790863 40.749648501210096, -73.72903570753319 40.74950224520345, -73.72934985439336 40.74948185602047, -73.72949181345643 40.74947264138832, -73.72964801741159 40.74946250277459, -73.72980137162558 40.74945254817236, -73.72982878130057 40.749450769122554, -73.72995477672053 40.749442590783794, -73.7301139415639 40.749432259467426, -73.73026691307216 40.74942232946376, -73.73041362965998 40.74941280515584, -73.73057357607081 40.74940242280429, -73.73073012910103 40.749392259226454, -73.73074193293694 40.749391492570275, -73.73088317385728 40.74938232407342, -73.73103848671468 40.749372240926554, -73.73119235809756 40.749362251461484, -73.73134699693026 40.74935221225185, -73.73150170085923 40.74934216848389, -73.73165661438311 40.74933211058836, -73.73181885342291 40.74932157696174, -73.7320676382495 40.749305423559065, -73.73215625678627 40.74929966918724, -73.73234381354712 40.74928749082712, -73.73315137181325 40.749030886598796, -73.73315195681587 40.74900781417938, -73.73402326715916 40.7487538306278, -73.73468247221288 40.74854435330826, -73.7348428840086 40.74940134385869, -73.73486459002586 40.749517302990505, -73.73510972868586 40.749492585181294, -73.73575808332424 40.7494272088177, -73.73576005758409 40.74943965479489, -73.73585895584036 40.750062949970214, -73.7359272265231 40.750493208105965, -73.73594548076875 40.75060825408465, -73.73617797538327 40.75207345173707, -73.73635635632506 40.753197582803416, -73.73674282629 40.7556329237864, -73.7354820366059 40.755777550690816, -73.73408044648001 40.75619240679579, -73.73320415943988 40.75444962830408)))",Q411,5327,Q411,Q-11,Q-11,Q-11,Q-11,"61 Ave. bet. Marathon Pkwy., Commonwealth Blvd. and 242 St.",411,23,111,11362,Q,104.6,False,Douglaston Park Golf Course,No,100000252,PARK,,19620907000000.00000,6320 MARATHON PARKWAY,DPR,True,Douglaston Park Golf Course,N,Douglaston Park Golf Course,Large Park,Managed Sites,http://www.nycgovparks.org/parks/Q411/,No,25,11,3,{F271B81B-C39A-4432-9A25-AEA6ABEFA518} +"MULTIPOLYGON (((-73.99442125447004 40.71360531673269, -73.99440764697044 40.713606458820266, -73.99413291381354 40.71312704126193, -73.99435402878659 40.713108451372804, -73.99442125447004 40.71360531673269)))",M067,4719,M067,M-03,M-03,M-03,M-03,"Henry St., Market St., E. Broadway",103,1,5,10002,M,0.122,False,Sophie Irene Loeb,Yes,100004756,PARK,20100106000000.00000,19241030000000.00000,10 MARKET STREET,DPR,False,Sophie Irene Loeb,Y,Sophie Irene Loeb,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M067/,No,65,26,7,{15B072EE-8468-4F73-93BD-83C3BD24356D} +"MULTIPOLYGON (((-74.16025193367476 40.63669457748139, -74.16026473304586 40.636420266540625, -74.16069493973404 40.6364339582866, -74.16067367369857 40.63669947762114, -74.1606727815717 40.63670797167532, -74.16025193367476 40.63669457748139)))",R036,6032,R036,R-01,R-01,R-01,R-01,Harbor Rd. at Richmond Terr.,501,49,120,10303,R,0.271,False,Mariners Harbor Playground,Yes,100003827,PARK,20100106000000.00000,19260421000000.00000,,DPR,False,Mariners Harbor Playground,Y,Mariners Harbor Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R036/,No,63,23,11,{A1388CE9-95AA-4FD2-BBE9-E7A88185168F} +"MULTIPOLYGON (((-73.95995782993347 40.75690506635917, -73.9602790176073 40.7564022273948, -73.96028216209335 40.75640356753027, -73.96034961238433 40.756432166498755, -73.9604839294653 40.75648911827868, -73.96045789632853 40.75652773021306, -73.96041320114124 40.75659402086159, -73.9604082969267 40.75660058746112, -73.96040267172387 40.75660681072009, -73.96039636819134 40.756612645627875, -73.96038943135527 40.75661804897552, -73.96038191216016 40.75662298205879, -73.9603738662865 40.75662740797593, -73.96036535178055 40.75663129432867, -73.96035643260713 40.75663461322325, -73.9603404254724 40.7566405690578, -73.96032514602474 40.75664754451272, -73.96031070916332 40.75665548919942, -73.96029721795126 40.75666434281998, -73.9602847719007 40.7566740423737, -73.96027346342456 40.7566845149518, -73.96026337427895 40.75669568584091, -73.96025457912033 40.75670747132014, -73.9602471419478 40.75671978676431, -73.96024111729147 40.75673253944059, -73.9602365490228 40.75674563841318, -73.96023347154306 40.756758986439664, -73.96023190741202 40.75677248537288, -73.96023186734779 40.75678603616097, -73.96023335259406 40.75679954064932, -73.9602355904934 40.75681985952006, -73.96023554516277 40.756840249643, -73.96023321668815 40.75686056333534, -73.96022862055122 40.756880652018864, -73.9602217911796 40.75690036982339, -73.96021277839453 40.75691957358546, -73.96020164741032 40.75693812374873, -73.96018847883317 40.756955886165194, -73.96017336747836 40.756972730293704, -73.96015995464484 40.75699097889516, -73.9601341947375 40.7569800297463, -73.95996098035843 40.75690640560488, -73.95995782993347 40.75690506635917)))",M108R,5581,M108R,M-06,M-06,M-06,M-06,E. River bet. E. 56 St. and E. 57 St.,106,5,17,10022,M,0.268,False,Sutton Place Park,No,100003780,PARK,20100106000000.00000,19951020000000.00000,,DPR,False,Sutton Place Park,Y,Sutton Place Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M108R/,Yes,73,28,12,{43F37FE9-AC34-4950-B216-4600CC857381} +"MULTIPOLYGON (((-73.99925426415518 40.73431535995805, -73.99933994000222 40.734197717219594, -73.9995164366602 40.73415221812939, -73.99981674046778 40.734650234114234, -73.99946499396863 40.73469870735835, -73.99925426415518 40.73431535995805)))",M278,4973,M278,M-02,M-02,M-02,M-02,W. 9 St. Ave. Of Americas and Greenwich Ave.,102,3,6,10011,M,0.361,False,Womens House Of Detention,No,100003889,PARK,20100106000000.00000,19740425000000.00000,421 6 AVENUE,DPR,False,Jefferson Market Garden,N,Jefferson Market Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M278/,No,66,27,10,{9568980A-DF8D-4C21-A348-77BCDC429C33} +"MULTIPOLYGON (((-73.85790357598778 40.828696561234736, -73.85777919315743 40.828134455066106, -73.85803475406469 40.8281006609601, -73.85815789145458 40.828662390715465, -73.85790357598778 40.828696561234736)))",X205,6666,X205,X-09,X-09,X-09,X-09,"Watson Ave., Blackrock Ave. bet. Virginia Ave., Pugsley Ave.",209,18,43,10472,X,0.322,False,Black Rock Playground,Yes,100004418,PARK,20100106000000.00000,19600825000000.00000,1951 BLACKROCK AVENUE,DPR/DOE,False,Black Rock Playground,Y,Black Rock Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X205/,No,87,34,15,{8C7D1E93-2DF1-480F-AB08-B36C04E6F2C0} +"MULTIPOLYGON (((-73.98899670881951 40.661314341930016, -73.98945393197448 40.66088014675396, -73.98989011517766 40.66114434429475, -73.98943739839999 40.66157923860461, -73.98899670881951 40.661314341930016)))",B288,5156,B288,B-07,B-07,B-07,B-07,6 Ave. between 18 St. and 19 St.,307,38,72,11215,B,0.689,False,Slope Park,Yes,100004734,PARK,20100106000000.00000,19521009000000.00000,544 7 AVENUE,DPR/DOE,False,Slope Park Playground,Y,Slope Park Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B288/,No,51,21,7,{A36DE7B5-31B0-4E23-8D1E-E1FC2D3505A5} +"MULTIPOLYGON (((-73.83864193945465 40.58182732889635, -73.8394657500142 40.58178975853815, -73.8391326129929 40.582673255428084, -73.83864193945465 40.58182732889635)))",Q028A,5861,Q028A,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. B. 116 St. and B. 117 St.,414,32,100,11694,Q,0.83,False,Tribute Park,Yes,100000401,PARK,20090423000000.00000,19300701000000.00000,,DPR,True,Tribute Park,Y,Tribute Park,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/Q028A/,Yes,23,15,5,{F3C6A927-A2F4-4AA7-B856-6B484EE10A9C} +"MULTIPOLYGON (((-73.96338200344834 40.803910611796574, -73.9634957798296 40.803755808931875, -73.96370301938873 40.80384346227666, -73.96364778983 40.804023028623575, -73.96338200344834 40.803910611796574)))",M368,4959,M368,M-09,M-09,M-09,M-09,Amsterdam Ave. bet. W. 111 St. and W. 112 St.,109,7,26,10025,M,0.109,False,West 111th St. People's Garden,No,100004141,PARK,20100106000000.00000,20060814000000.00000,1040 AMSTERDAM AVENUE,DPR,False,West 111th St. People's Garden,N,West 111th St. People's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M368/,No,69,30,10,{382D02F8-53B0-4215-8546-F6210558AFC4} +"MULTIPOLYGON (((-73.81725095998262 40.84431023404692, -73.81711423080048 40.8442915914255, -73.81711930894399 40.84432716991107, -73.81709416178406 40.8442815235929, -73.81707583690338 40.8442542653805, -73.81705766802601 40.84423668772876, -73.81703508077324 40.84421744075289, -73.81701424546888 40.844207052915664, -73.81698187311541 40.84420031718573, -73.81694604278196 40.844200994233226, -73.81691260381726 40.84419792360498, -73.81685537586829 40.84418357702674, -73.81676912198164 40.84416849633841, -73.81670075140138 40.84415281545977, -73.81665230391343 40.84413773442208, -73.8165792756765 40.84410225679913, -73.81646773941696 40.84403577417041, -73.81645607281425 40.84402878938091, -73.81643892586752 40.8440208242355, -73.81641494924894 40.844014854519806, -73.81640218872224 40.844012828808474, -73.81639252616175 40.8440126954636, -73.8163816777388 40.84401302128344, -73.81634573392606 40.84401703969909, -73.8163210105055 40.84402301113406, -73.81629186464707 40.844032654941444, -73.81626592715133 40.84404671987736, -73.81624963094667 40.84405831390087, -73.8162404530396 40.84406645415904, -73.81621705461802 40.84408082569506, -73.81618776091048 40.84410276459348, -73.81615201084337 40.84412375577934, -73.81613042351276 40.84413453631038, -73.81608993684429 40.84415272299043, -73.81607436129478 40.844164405486005, -73.816067774249 40.84417341793829, -73.81606636039476 40.844182139675176, -73.81607027836495 40.84420953626589, -73.8160692759757 40.844211396890266, -73.81606744395116 40.84421267897474, -73.816065309231 40.84421364810491, -73.81606255221071 40.8442145315962, -73.81606012632102 40.84421487892072, -73.81598315658113 40.844231336962764, -73.81593466132058 40.84423998718123, -73.81588097526424 40.84424457056502, -73.8158303007893 40.84424712271399, -73.81578889603985 40.84425251089417, -73.81575498512298 40.84425459090607, -73.81574748551255 40.84425398910288, -73.81567541112541 40.8442578370293, -73.81566260786659 40.84425795794701, -73.81563455807508 40.84425454977055, -73.8156096681808 40.844246088560524, -73.8155963950547 40.844239900755326, -73.8155907476074 40.84423503445916, -73.81557172181233 40.84421446015779, -73.8155502735547 40.844190007151354, -73.81553147061692 40.84418144039423, -73.81552262173155 40.84417694087909, -73.81550956143863 40.84417055259387, -73.81549428105598 40.84416641199254, -73.8154750821179 40.844166381281426, -73.81546227919621 40.84416766921838, -73.81545562528298 40.844170834617536, -73.81544264727616 40.84417240142553, -73.81543536046509 40.8441745995802, -73.81542951192847 40.84417554474635, -73.8154257041924 40.84417091011135, -73.8154198289505 40.84416652250532, -73.8153743207823 40.84413581935125, -73.81529925340745 40.84408933631047, -73.81523717387641 40.84405058315894, -73.8151763341316 40.844018452396575, -73.81515770774648 40.84400441895817, -73.81514765355219 40.84399245598416, -73.81513800200415 40.843981107791855, -73.81512472098854 40.84396883347617, -73.81509592877615 40.8439488854941, -73.81506691354988 40.84390082370479, -73.81504541679682 40.84384998783297, -73.81503190310288 40.8437981643087, -73.81503750848198 40.8437055448146, -73.81505816075132 40.84360758339719, -73.8150862024074 40.84350673782971, -73.81507846627451 40.843460725456964, -73.81506867177225 40.84344324916204, -73.81505008310316 40.843422113563335, -73.81500093730222 40.843371503491056, -73.81498116457801 40.843357014334345, -73.81495725542416 40.843349943117566, -73.81492817061499 40.84334833319667, -73.81481123826553 40.84273457900134, -73.81605450843358 40.842777322062496, -73.81608785628546 40.842856396356595, -73.81610071419328 40.842887881044696, -73.81612595421414 40.84294153584028, -73.81614213943155 40.8429674337548, -73.81616521565962 40.84299442684541, -73.81618619441062 40.843011506644075, -73.81622583897573 40.843041638233736, -73.81626099179086 40.843067946357955, -73.81631817475841 40.84311193204757, -73.81638410086073 40.84316264301364, -73.8163936189545 40.843169963878296, -73.81641767998404 40.84318863251062, -73.81644207048578 40.8432060787903, -73.81646496080481 40.84321844028561, -73.81648988324234 40.84323090856625, -73.81650206677789 40.8432378662605, -73.81653256698362 40.84325079905531, -73.81654707041359 40.84325369650211, -73.81656509324395 40.843255718860135, -73.8165880970008 40.843257916627586, -73.81661461024231 40.84326197588958, -73.81662722953614 40.84326657856925, -73.81664426486853 40.84327496674302, -73.81667233230435 40.843296366587154, -73.81668977683898 40.843315476694315, -73.81674533812354 40.843371531624015, -73.81678033907468 40.84341178530762, -73.81680048630271 40.843448023497146, -73.81680751293712 40.843476530810555, -73.81680949574687 40.8435040161561, -73.8168098825016 40.843568965847744, -73.81681896625543 40.84363458400999, -73.81682930082098 40.8436602248969, -73.81684346142595 40.84368000513553, -73.81686653676401 40.843700192141846, -73.81689633152007 40.84371922727153, -73.81692598231767 40.84373068720415, -73.81698204398704 40.84373134618141, -73.81705433466405 40.84372579494698, -73.81710204189795 40.84372755002459, -73.81712204569723 40.84373022469289, -73.81714258434107 40.843736329289044, -73.81719087374016 40.843761838499645, -73.8172406531889 40.843793143833075, -73.81726559044189 40.84381157324199, -73.81731607278374 40.84384948118184, -73.81734365663014 40.843876154290705, -73.81740752383145 40.84394311893152, -73.81743151129822 40.84396287322898, -73.81744600247615 40.84397203438294, -73.81747273517101 40.84397618564446, -73.81754097718768 40.843984698826425, -73.81763444073212 40.84398371110585, -73.81764774150282 40.8439846227226, -73.81772118680318 40.843989656408056, -73.81780920241675 40.84398667164472, -73.8179867976125 40.843978554003385, -73.81807633267007 40.84398059439249, -73.81816564748968 40.843982086864195, -73.81834434146249 40.84399061064338, -73.81843736532073 40.84399865714207, -73.81849617717084 40.84400666144388, -73.81852142753122 40.84401653187202, -73.81853973194407 40.84402366557087, -73.81860325627689 40.84405900904147, -73.81863033123675 40.84409075532714, -73.81865012344932 40.844175890382076, -73.81866296170533 40.84424513698134, -73.81867529348602 40.844338807794735, -73.81846382071 40.844350387815595, -73.81834878610273 40.84435612026482, -73.8183502822933 40.84437836663591, -73.8182062249984 40.84440249896426, -73.8180601430992 40.84441418938898, -73.81802648386889 40.84441572296492, -73.81801011904878 40.84441823564084, -73.817945651519 40.844425091131235, -73.81786167555296 40.84443621654485, -73.81777212840909 40.84443793373468, -73.8177514696262 40.84444138781101, -73.81773303827282 40.84444897957349, -73.81772155661334 40.84445751342665, -73.81771416237126 40.84446647787091, -73.81771087101149 40.84447628805951, -73.81770919002247 40.84448780362795, -73.8177105141905 40.844499185269406, -73.81771233540697 40.84450789682965, -73.81769097715542 40.84450999004308, -73.81768923441948 40.844500767125695, -73.81768644931536 40.8444924313488, -73.81768178644703 40.844483471262734, -73.81767189780525 40.84447148355836, -73.81765943826807 40.84445996815078, -73.81764686817304 40.84445071911165, -73.8176327402947 40.844442211416776, -73.81762173790833 40.844438552421785, -73.81760915352743 40.844436247068984, -73.81758511884875 40.84443579033287, -73.81758294635237 40.84442027137704, -73.8174923604812 40.8443770358223, -73.81741988814119 40.84436687611644, -73.81741681473808 40.84436638678564, -73.81737881671344 40.84435755671735, -73.81731081825119 40.844332765586906, -73.81725095998262 40.84431023404692)))",X294,5664,X294,X-10,X-10,X-10,X-10,"bet. Outlook Ave and Library Ave., Griswold Ave. and Lucerne St.",210,13,45,10465,X,7.49,False,Palmer Inlet,No,100005151,PARK,20100106000000.00000,19990222000000.00000,,DPR,False,Palmer Inlet,Y,Palmer Inlet,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/X294/,Yes,82,34,14,{08DB72D0-435F-4192-93D4-66AD2F766E0B} +"MULTIPOLYGON (((-73.79042152693965 40.70280531389375, -73.79042697136019 40.70280487535072, -73.7904323440148 40.702805058031636, -73.79043852586017 40.7028060463449, -73.79044337873131 40.70280746268413, -73.79044822593555 40.70280955259757, -73.79045199595721 40.702811772024866, -73.7904556858146 40.70281464958201, -73.79045872155983 40.70281782852111, -73.79046111277792 40.70282127103797, -73.79046267049455 40.70282448961043, -73.79046356450503 40.70282729724059, -73.79046408282665 40.70283029329484, -73.79045984400234 40.702923012439214, -73.79045850260052 40.70292965219085, -73.79045691713048 40.70293262730537, -73.79045455206389 40.70293592158375, -73.79045242434353 40.702938242838144, -73.79044935475213 40.70294093609122, -73.79044614814511 40.70294317523556, -73.79044216071833 40.70294536973354, -73.79043624763675 40.70294771381284, -73.79043132117205 40.702949002484374, -73.79042186653594 40.70294984706192, -73.79024231771743 40.70295179920117, -73.79023421198467 40.70295077135071, -73.79023148634339 40.702949822644385, -73.79022688400657 40.70294775387996, -73.79022245634808 40.70294507488501, -73.79021969891005 40.70294295004871, -73.79021611527159 40.702939408998525, -73.79021304032966 40.702935151165505, -73.79021056592256 40.70292956977034, -73.79020975855165 40.702925930220914, -73.79020966160556 40.702920264008036, -73.79021117197689 40.70291408382952, -73.79021435565912 40.70290822728384, -73.79022171796778 40.70290221355978, -73.79041041712449 40.70280835451262, -73.79041358258058 40.70280715899044, -73.79041696031904 40.70280618808278, -73.79042152693965 40.70280531389375)))",Q003,6115,Q003,Q-12,Q-12,Q-12,Q-12,Liberty Ave. bet. 168 St. and 168 Pl.,412,27,103,11433,Q,0.27,False,Ashmead Mall,Yes,100000390,PARK,20090423000000.00000,18980101000000.00000,,DPR,True,Ashmead Park,N,Ashmead Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q003/,No,29,14,5,{D98C037F-2A67-4F5A-AE1D-6F201ECC68B2} +"MULTIPOLYGON (((-73.96190253087026 40.653922572593174, -73.96181567904762 40.65347606284836, -73.96197541397687 40.65345997309566, -73.96188600262317 40.653741605481734, -73.96208103033466 40.65377752043522, -73.96220060827025 40.65343362704914, -73.96221577033381 40.65343316196106, -73.96227539098959 40.6537764938218, -73.96190253087026 40.653922572593174)))",B389,5213,B389,B-14,B-14,B-14,B-14,Woodruff Ave. and Ocean Ave.,314,40,70,11226,B,0.23,False,Umma Park,Yes,100004310,PARK,20100106000000.00000,19930517000000.00000,108 WOODRUFF AVENUE,DPR,False,Umma Park,Y,Umma Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B389/,No,"42, 43",21,9,{DB9BBADA-6822-42D5-9550-3628B945A972} +"MULTIPOLYGON (((-73.82002243372929 40.72294653442159, -73.82031405602089 40.7228590441732, -73.82049484947265 40.72377856262067, -73.82045804990942 40.72378960224187, -73.82002243372929 40.72294653442159)))",Q370,5918,Q370,Q-08,Q-08,Q-08,Q-08,"Vleigh Pl., Main St. bet. 73 Ter. and 76 Ave.",408,24,107,11367,Q,0.327,False,Freedon Square Playground,Yes,100000139,PARK,20090423000000.00000,19541123000000.00000,,DPR,True,Freedom Square Playground,Y,Freedom Square Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q370/,No,27,15,6,{541C119F-BB1D-45B4-9D47-4E384E4F0FA6} +"MULTIPOLYGON (((-73.91232998469353 40.825099846895164, -73.91215770041302 40.82504451988637, -73.91193394752682 40.82497266434293, -73.91203604931314 40.82479341119983, -73.9120800598611 40.82471622543051, -73.91222570980774 40.82446078282004, -73.91232068552027 40.82449121259615, -73.91243721286229 40.82452854745542, -73.91256539178691 40.824569614582764, -73.91269024120021 40.82460961646106, -73.91278013396274 40.82463841661379, -73.91264077660081 40.82489587549039, -73.91281223753197 40.82495080944057, -73.91295159552978 40.82469335126044, -73.9130348291608 40.82472001831506, -73.91311473317765 40.82474561841446, -73.9131979669394 40.824772285351045, -73.9132845304552 40.824800018217104, -73.9133604070434 40.824824328308374, -73.91322105035303 40.82508178697693, -73.91319206996242 40.82513532396117, -73.9129467765974 40.8250559080118, -73.91286319165697 40.82521031775548, -73.9131084854938 40.825289732079625, -73.91307866359435 40.82534482445648, -73.91283336840223 40.8252654118697, -73.91270869116768 40.8252250897055, -73.91258402596821 40.82518474490288, -73.91250068499286 40.825154664564266, -73.91232998469353 40.825099846895164)))",X350,5467,X350,X-03,X-03,X-03,X-03,Melrose Ave. bet. E. 162 St. and E. 163 St.,203,17,42,10451,X,1.381,False,A. Badillo Community Rose Garden,No,100008323,PARK,20110712000000.00000,20100429000000.00000,924 MELROSE AVENUE,DPR,False,A. Badillo Community Rose Garden and Park,Y,A. Badillo Community Rose Garden and Park,,Neighborhood Park,http://www.nycgovparks.org/parks/X350/,No,79,32,15,{4FE8535E-8BF5-4B10-A3E6-3FA0E8247900} +"MULTIPOLYGON (((-73.95192635084753 40.80829663882475, -73.95206815738852 40.808101439260774, -73.95215619965624 40.80813840706134, -73.95210688575234 40.80820629044744, -73.95205905464637 40.8082721311981, -73.95201439447919 40.80833360763339, -73.95192635084753 40.80829663882475)))",M365,5016,M365,M-10,M-10,M-10,M-10,W. 122 St. bet. Frederick Douglass Blvd. and Adam C. Powell Blvd.,110,9,28,10027,M,0.052,False,Our Little Green Acre Garden,No,100004274,PARK,20100106000000.00000,20050617000000.00000,275-277 WEST 122 STREET,DPR,False,Our Little Green Acre/garden Eight,N,Our Little Green Acre Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M365/,No,70,30,13,{1B8D70FD-3188-425A-B51A-B269F0CF5CD4} +"MULTIPOLYGON (((-73.90065494290118 40.901021709692834, -73.90064856415209 40.90102152230591, -73.90064218626407 40.901021552836504, -73.90038943627454 40.90099093019857, -73.90013803760674 40.900954434319154, -73.89988823950132 40.900912098740925, -73.89974058885912 40.90088482102005, -73.89959358454337 40.90085558151762, -73.89934329550428 40.900800917606965, -73.89909528823134 40.900740555983994, -73.8990774214539 40.900734845705976, -73.89905980576633 40.90072869170608, -73.89904247200762 40.900722105717726, -73.89902542967367 40.9007150868489, -73.89900870603493 40.90070765223266, -73.89899230821227 40.90069980187547, -73.89897625992394 40.900691547504515, -73.89896057420835 40.900682899937095, -73.89894527479305 40.90067386459712, -73.89893037708875 40.90066445320443, -73.8989158858276 40.90065467566869, -73.89890183303915 40.90064454102294, -73.89888192380745 40.90063183126474, -73.89886256361628 40.90061863752369, -73.89884378210672 40.900604978736176, -73.89882558638303 40.90059086571451, -73.8988080072783 40.90057631379417, -73.89879104952057 40.90056133558646, -73.8987495908004 40.900519697772744, -73.89870812144288 40.90047806533736, -73.89866666282798 40.900436426592734, -73.8986251947694 40.900394788725066, -73.89858373388482 40.90035314994792, -73.89854227541613 40.900311517461056, -73.89851392569315 40.90028109940532, -73.89848435138668 40.90025136013108, -73.89845359399087 40.900222328489434, -73.89843287828806 40.90020396740568, -73.89842897075738 40.900200507009515, -73.8984216629673 40.900194026099385, -73.89838860337014 40.90016648181507, -73.89835444125781 40.90013972897641, -73.89831920271199 40.900113785615126, -73.89829675819382 40.90009758684713, -73.8982736161688 40.90008196196896, -73.8982497991428 40.90006693891502, -73.89822532965749 40.90005252220721, -73.89820024565641 40.90003873349024, -73.89817457322903 40.900025585393436, -73.89814832896354 40.90001309504031, -73.8981215531865 40.90000127777421, -73.8980942779292 40.899990140826986, -73.89806651977148 40.89997970672505, -73.8980421717652 40.899968926240255, -73.89801736236805 40.89995875136853, -73.89799213784033 40.89994919745873, -73.89796651122762 40.89994026992496, -73.89794051218365 40.89993197869855, -73.897914173914 40.89992433911677, -73.89788752964905 40.89991735030836, -73.89783147896773 40.89990217978859, -73.8978260742598 40.899900719823016, -73.89781170126359 40.89989682781598, -73.8977646272101 40.89988408841181, -73.89770317782587 40.89986745156286, -73.89764172371565 40.899850820980284, -73.89758027438468 40.89983418946868, -73.89753271641911 40.89982131806976, -73.89785215940783 40.899856056380806, -73.89816736126615 40.89988997152646, -73.89845755569499 40.899963500427724, -73.8986753893356 40.90007905373857, -73.89885131162515 40.90023576526762, -73.89892923408411 40.90033597004108, -73.89899616596634 40.90044241540451, -73.8990314649857 40.90049211878146, -73.89910069787835 40.90056136439758, -73.89914368822778 40.90059568248779, -73.89928195123349 40.900679636451066, -73.89939429874173 40.90072430836617, -73.89949731909327 40.90074878050012, -73.8996431621973 40.900764824324966, -73.89974602019092 40.90076249319036, -73.89983611920533 40.90075292631221, -73.89993237502453 40.90074036698933, -73.90009227260562 40.90072376907844, -73.90027772778683 40.90071023756141, -73.90046685201511 40.900700164967226, -73.90059548632037 40.9006950908101, -73.90065053228518 40.90069333092184, -73.90076168583099 40.900697334622194, -73.900766996434 40.90069752468673, -73.90079474803092 40.90069852646266, -73.9008523212543 40.900695579110554, -73.90090989683544 40.90069263893559, -73.90096747003928 40.900689697829435, -73.90098310600341 40.900688899004464, -73.90105202166593 40.9006897343081, -73.90130577767587 40.90069366961541, -73.90144267429189 40.900702231302525, -73.90157986283351 40.90071564218223, -73.90168695349907 40.90073047344936, -73.90176104194039 40.90074368718502, -73.90177575755192 40.90079870036465, -73.90178274718843 40.90084968180611, -73.90178946599725 40.90092171452927, -73.90178941210188 40.900958188584234, -73.90178245841714 40.90104188354778, -73.90176785462329 40.90110790720825, -73.90175794526277 40.90114376775065, -73.90174732617369 40.90114350927978, -73.90151811251818 40.90113161669518, -73.90128904354684 40.90111825148795, -73.90108400650271 40.90110064983159, -73.90087961981479 40.90107914747313, -73.90086530199089 40.90107775924008, -73.90085106540838 40.901076009981, -73.90083690414156 40.901073894287876, -73.9008228537824 40.901071420295736, -73.90080891433249 40.901068587104064, -73.90079511071606 40.90106539383389, -73.90078145477571 40.901061857604624, -73.90076797026369 40.901057967630905, -73.90075465715599 40.90105374012146, -73.90074155106336 40.90104917060458, -73.90072699791327 40.90104324911608, -73.90072022951298 40.90103934330005, -73.90071312947444 40.90103578748663, -73.90070573693895 40.901032597017654, -73.90069808036128 40.90102979082775, -73.90069019533571 40.90102737525083, -73.90068415449953 40.90102581581906, -73.90067800883948 40.90102451473572, -73.90066970215312 40.90102312714724, -73.90066129039397 40.9010221644962, -73.90065494290118 40.901021709692834)), ((-73.90438762836405 40.901120386492174, -73.90439862544639 40.90112023801448, -73.90440962211555 40.90112037678975, -73.90442061599936 40.90112080191557, -73.90443157267183 40.90112151966678, -73.90444249926423 40.90112252284543, -73.90445336729874 40.90112380782603, -73.90446417083503 40.90112537910609, -73.90447490513388 40.90112723127878, -73.90448553933606 40.90112936611961, -73.90449606989426 40.901131774620815, -73.90450648967878 40.901134463079906, -73.90451916052184 40.90113818535429, -73.90453165288116 40.901142231653864, -73.90454395845448 40.901146598369884, -73.90455606420532 40.901151272884874, -73.90456795588057 40.90115626329143, -73.90457961569773 40.901161556067734, -73.90459102586019 40.901167147597185, -73.90460218044308 40.901173031571524, -73.90461306877437 40.90117920167865, -73.90462367663837 40.901185639897214, -73.90463398622153 40.90119235431697, -73.90464398567269 40.90119933322189, -73.90465367263515 40.901206564903795, -73.90466302576452 40.90121403673839, -73.90467203793625 40.90122175142132, -73.90468070205782 40.90122968913613, -73.90468900982557 40.90123784717465, -73.90469693988862 40.90124621741492, -73.90470449108086 40.901254785448394, -73.90471165747971 40.90126354316584, -73.9047184236723 40.90127247974877, -73.90472478848454 40.90128158619151, -73.90473074599268 40.90129085528534, -73.90473447064961 40.901297147337864, -73.90473791627383 40.9013035337108, -73.90474107576118 40.90131000269205, -73.9047439479339 40.901316547977274, -73.90474652448812 40.901323166858184, -73.90474880306829 40.901329846726114, -73.90475078724243 40.901336582181074, -73.90475246634476 40.90134336240845, -73.90475384156969 40.90135018200646, -73.90475492241929 40.901357035579906, -73.90475568992402 40.90136390960596, -73.90475615358856 40.90137079688862, -73.90475630747616 40.90137769922395, -73.9047561563637 40.90138459590472, -73.90475569312886 40.90139148782558, -73.90475492965902 40.90139836148906, -73.90475386002518 40.90140521328832, -73.90475248661123 40.90141203602147, -73.90475081062058 40.90141881798317, -73.90473759961587 40.901466503008024, -73.90472294483716 40.90151791844419, -73.90470829241063 40.90156933297952, -73.90469382604955 40.90162008761147, -73.90449244438084 40.901607386457556, -73.90423209323538 40.90159105842908, -73.90404913730515 40.90158054645302, -73.9039151144207 40.90157345984107, -73.90374540979803 40.90156422539206, -73.90367392828563 40.90156026938005, -73.90357375805827 40.90155472612604, -73.90349622553079 40.9015504353728, -73.90343384255368 40.90154698298369, -73.90335515576668 40.901541543053405, -73.90329219276707 40.90153461513524, -73.90323497299667 40.90152831963378, -73.90314439630836 40.901518354567855, -73.90303215622963 40.90150640818278, -73.90293983412525 40.90149704121244, -73.90283058598028 40.90148595620817, -73.9027277658346 40.90147552396443, -73.90277030253287 40.90145818045833, -73.90281213339833 40.90143979448258, -73.90285317649555 40.90142039658539, -73.90289337362924 40.90140001463371, -73.90293268324464 40.901378659399235, -73.90295366434059 40.90136835659262, -73.9029750896849 40.90135859894827, -73.90299695092706 40.90134941617486, -73.90301921840792 40.90134080104331, -73.90304185530421 40.90133277603465, -73.90306484617886 40.90132534743904, -73.9030881637202 40.901318526039184, -73.90311177469836 40.90131231180693, -73.90313565297937 40.90130672182949, -73.90315976770708 40.9013017560807, -73.90318410225765 40.90129742084989, -73.90320860795995 40.901293725100956, -73.90323327650312 40.90129067152831, -73.90349443297208 40.901256517758846, -73.90375480940634 40.901219112001705, -73.90401434759508 40.90117846862149, -73.90407841906716 40.90116794388957, -73.90414026151406 40.90115755594589, -73.90420690808193 40.9011463579179, -73.90427115434079 40.90113556307893, -73.90433308772191 40.90112544525244, -73.90434389104573 40.90112386394959, -73.904354758053 40.90112256274901, -73.9043656744842 40.901121554245634, -73.90437664035501 40.90112082763356, -73.90438762836405 40.901120386492174)), ((-73.90075733627232 40.901385628363656, -73.89710205948813 40.900978163300906, -73.8971052859162 40.900976166201644, -73.89711312150209 40.900972098494954, -73.89711864329097 40.90096927049325, -73.89712428709326 40.90096658847843, -73.89713004696677 40.90096405784799, -73.8971359181699 40.90096167499588, -73.89714189357625 40.900959443517614, -73.89714796249785 40.90095736790607, -73.89715412254715 40.90095545716393, -73.89716037136176 40.90095370408522, -73.89716668402187 40.90095210684681, -73.89717307355991 40.90095067986798, -73.89717952099144 40.90094942043034, -73.89718601920138 40.90094832492569, -73.89719257054792 40.90094740326137, -73.89719914893845 40.90094664460834, -73.89720576621446 40.90094606608639, -73.8972123974812 40.9009456496636, -73.89721905102681 40.9009454079542, -73.8972445757799 40.90094287420138, -73.89727020511599 40.90094101319752, -73.89729590579167 40.90093983391773, -73.8973216422095 40.9009393327285, -73.89734737994635 40.900939514101545, -73.8973730988247 40.900940379819865, -73.89739876800266 40.90094192085129, -73.89746058518705 40.90094999007988, -73.89752241069951 40.90095805568081, -73.89758422791115 40.90096612664414, -73.89765913840576 40.90097769945754, -73.8977344143521 40.90098779935431, -73.89781001066244 40.900996416388416, -73.89788818552735 40.901003730852516, -73.8979665883334 40.90100946061332, -73.89804516923788 40.90101360022349, -73.8981238653366 40.901016148726725, -73.89841792905025 40.9010181052562, -73.8987119375815 40.901013450535686, -73.89884743401268 40.901013496393425, -73.8989828616245 40.90101665590534, -73.89907266016662 40.90102081543673, -73.89911809940068 40.90102291725965, -73.89925302866972 40.901032287557314, -73.89933748773687 40.90103965785108, -73.89942161874119 40.901048944027025, -73.89950533742726 40.901060146012505, -73.89956839894363 40.901069650566484, -73.8996314652252 40.90107915509016, -73.89969452678032 40.90108865777421, -73.89975759429294 40.90109815682703, -73.89993009213974 40.901142040276596, -73.90009994841144 40.901169334268786, -73.90026863670106 40.901191298838725, -73.90038207074792 40.90120490493217, -73.90059220162463 40.901224920114686, -73.90108141286485 40.90127321904109, -73.90140673571281 40.90129840020454, -73.90166907893472 40.90131948635597, -73.90170882187904 40.901321539083845, -73.9016549636484 40.90151643806175, -73.90136686276132 40.90148553441382, -73.90076869520367 40.90142137022688, -73.90075238283256 40.90141962007208, -73.90075733627232 40.901385628363656)), ((-73.89726128054052 40.900008860192685, -73.8972764992108 40.899793454515816, -73.89733780835088 40.89980012220749, -73.89733881005975 40.89980084438606, -73.89735239162285 40.899809990073486, -73.89736637130368 40.8998187831234, -73.89738073013332 40.8998272109121, -73.89739546693467 40.89983526713493, -73.89741054730507 40.89984294275641, -73.89742596651811 40.899850224264895, -73.89744169728478 40.89985710713362, -73.89745772656707 40.899863580545016, -73.89747403064041 40.899869637274094, -73.89753670779618 40.899886589603724, -73.89759938499084 40.89990353739687, -73.89766205391139 40.8999204842481, -73.89772473234981 40.89993743647654, -73.89778740133296 40.8999543841601, -73.89781160270822 40.899960930492554, -73.8978243837394 40.899964382554835, -73.89785007983532 40.899971336320405, -73.89788304024417 40.899979807518335, -73.89791561486658 40.89998911131353, -73.89794776576144 40.89999922516066, -73.89797945616036 40.9000101355203, -73.89801065758846 40.90002183786527, -73.89804132972388 40.900034314150616, -73.89807143934864 40.90004755714365, -73.89810096157436 40.90006154521113, -73.8981298548753 40.90007627111301, -73.89815808486588 40.90009171500882, -73.89819560424499 40.90011383877625, -73.89823210629393 40.90013692335166, -73.89826754001615 40.9001609461789, -73.89830186154808 40.90018587660381, -73.89833504838778 40.90021168399114, -73.89836704005359 40.900238339473105, -73.89839780929191 40.9002658151117, -73.89842732530805 40.900294070359045, -73.89845554304775 40.90032307636088, -73.89857578719145 40.90045424481246, -73.89869993126145 40.9005832968178, -73.898710656807 40.90059384549328, -73.89872183613811 40.9006041127143, -73.89873346570002 40.90061409487571, -73.89874553365227 40.900623773957285, -73.89875801746379 40.9006331382329, -73.89877091714281 40.900642182299514, -73.89878420185475 40.90065089172214, -73.89879786330857 40.90065925568765, -73.89881189083394 40.900667266982644, -73.89882626664004 40.90067491838754, -73.89884096819273 40.90068219997715, -73.89886632298182 40.90069532423294, -73.89889219376103 40.900707848312194, -73.89891856511129 40.9007197658977, -73.89894540263302 40.900731065252735, -73.8989726861667 40.900741735553446, -73.89900038605984 40.900751765067355, -73.89902810097921 40.90076206473293, -73.8988260043022 40.90071549756807, -73.89859665778427 40.900657420443935, -73.89830699995866 40.900580145463444, -73.89801949777832 40.90049838094478, -73.89781087114666 40.90043675103816, -73.89771071854611 40.900407286753754, -73.89768157751625 40.900396181374795, -73.89765285042161 40.90038447573247, -73.8976245621962 40.900372162645446, -73.89759673417491 40.900359260142565, -73.89759235358439 40.900356289161905, -73.89758784582806 40.900353435131166, -73.89758320617416 40.90035068814087, -73.89757845358757 40.900348063515985, -73.89757359043912 40.900345563059645, -73.89756861554055 40.90034318767124, -73.89756354431728 40.90034093916539, -73.89755836964305 40.90033882113768, -73.89755310457382 40.900336832699274, -73.89754609310273 40.90033449152197, -73.8974806990389 40.90031518922464, -73.89741363359666 40.90029539374074, -73.89734656818456 40.90027560452113, -73.89727950875755 40.90025580806391, -73.89724028451053 40.90024422805072, -73.89722179219845 40.90023877176493, -73.89726128054052 40.900008860192685)), ((-73.90214818777802 40.90115781083758, -73.902243338515 40.90083481223133, -73.90239823006384 40.90084716374972, -73.90248105083054 40.90085334982447, -73.90254598935333 40.9008576846595, -73.90271735596373 40.90086281606832, -73.90276590956965 40.90086314422603, -73.90276632724003 40.90086319950732, -73.90283029822594 40.900863700007505, -73.90292787621594 40.900862992370264, -73.90299358091119 40.900860374961425, -73.9030366141607 40.90085866057162, -73.90306629019211 40.90085684940547, -73.90309141327816 40.9008553162615, -73.9031072014053 40.90085435248807, -73.9031537124021 40.90085151446793, -73.90321679534539 40.90084652465906, -73.90327659126052 40.90084044607828, -73.90334071366334 40.900833928050936, -73.90343636236238 40.90081900062816, -73.9034894157022 40.9008107200171, -73.90354025408114 40.90080189273823, -73.9035943213359 40.900792503529935, -73.90365132068776 40.900782606168924, -73.90374186363033 40.90076688360699, -73.90381533486496 40.90075339526055, -73.90387500477318 40.90074244014444, -73.9039216782242 40.90073387217104, -73.90394833824845 40.900728977712674, -73.90398092814145 40.900727729737184, -73.90404233327617 40.90072404198253, -73.90410353413866 40.90071880429275, -73.90416447730752 40.9007120247281, -73.90422508442983 40.90070371763175, -73.90428529616723 40.90069387935315, -73.90434712426884 40.900682409805015, -73.90435545827935 40.900682151967445, -73.90436379522309 40.90068232996588, -73.9043720994991 40.90068294196997, -73.90438032126114 40.90068398883882, -73.90438843441945 40.90068545704366, -73.90439639505902 40.90068734924954, -73.90440224945999 40.900689023594616, -73.90440796939406 40.900690948162655, -73.90441538623233 40.90069384125506, -73.9044225307489 40.90069711502623, -73.90442935075097 40.90070075142333, -73.90443583082855 40.90070473782692, -73.90444193303408 40.90070905349448, -73.90444763129452 40.90071367319093, -73.90445163740038 40.90071732256597, -73.90445536200463 40.900721133794974, -73.9044588550003 40.900725073601414, -73.9044620439673 40.900729159935, -73.90446587278103 40.900734782123074, -73.90446842289626 40.90073911826235, -73.90447064649848 40.9007435558861, -73.9044731538252 40.90074958850157, -73.90447511030719 40.90075574222651, -73.90447650175707 40.9007619792289, -73.90447607791278 40.900768696488164, -73.90447515077476 40.90077382757885, -73.90447398869101 40.90077893146061, -73.90447260354092 40.90078400003885, -73.90447098821016 40.90078902880535, -73.90446914507757 40.900794014160084, -73.9044670860251 40.900798946207594, -73.90446479681003 40.90080382583649, -73.9044623011797 40.900808644962126, -73.90445958253329 40.900813393665395, -73.90445665630553 40.900818067456655, -73.90445351655846 40.90082266903241, -73.90445017518725 40.90082717949229, -73.90444663574179 40.90083160604316, -73.9044428958667 40.90083593607628, -73.90443896980081 40.9008401714043, -73.904434845702 40.900844294007754, -73.9044305508511 40.900848314715056, -73.90442607101943 40.90085222450955, -73.90442142046919 40.90085600899526, -73.90441659800327 40.90085967537505, -73.90441173430605 40.90086312830583, -73.90440672242899 40.90086646315034, -73.90440156832159 40.90086966910762, -73.90439627436785 40.900872738975806, -73.90439084768718 40.90087567366123, -73.90438530133177 40.9008784749757, -73.90437963057522 40.90088112850748, -73.90437384727372 40.90088364237075, -73.90436795382037 40.90088600306026, -73.90436196563053 40.90088821959356, -73.9043558815304 40.900890282964795, -73.90434970746048 40.90089218867649, -73.90434345172699 40.900893937636, -73.90433712975965 40.90089552895565, -73.904330734439 40.900896961728975, -73.90432428832578 40.90089822787032, -73.90431778191407 40.90089933547621, -73.90426194815886 40.9009124137412, -73.90420611438044 40.900925492879686, -73.90415028057998 40.900938571991134, -73.9040944479379 40.90095165557893, -73.90382373965569 40.90100276876624, -73.90355126024748 40.90104816266693, -73.90327722820797 40.9010877978303, -73.90302020405062 40.90112241022516, -73.90295187046196 40.901130633652926, -73.90288324604383 40.90113726474011, -73.90281438421358 40.90114229902874, -73.90267577790715 40.901148877363774, -73.90253698599047 40.90115251979834, -73.90247720608767 40.90115310956032, -73.90241742618907 40.90115369568941, -73.90235764154357 40.90115428088307, -73.9022978616376 40.901154870552176, -73.90223808411211 40.90115545478944, -73.90217677338862 40.90116158377682, -73.90214818777802 40.90115781083758)), ((-73.89884248267894 40.90095268777763, -73.89877717111968 40.900952596314134, -73.89871188694976 40.90095400144203, -73.89843620020194 40.9009588010511, -73.89816044387557 40.900960187106364, -73.89809007974276 40.90095956941687, -73.89801977892317 40.90095713636473, -73.89794962806253 40.90095288532531, -73.897879707852 40.9009468271759, -73.89781009899774 40.90093896288893, -73.89779718922154 40.90093730447592, -73.89773548966608 40.90092835665941, -73.89767379249798 40.90091941061299, -73.89761209653612 40.90091046273367, -73.89755039703044 40.90090151481822, -73.89746343531415 40.90088880652675, -73.89737611643476 40.90087761696873, -73.89735489198823 40.90087673813787, -73.89733364537324 40.90087638156415, -73.8973123979502 40.900876548166984, -73.8972911651302 40.90087724876587, -73.89726997660055 40.90087847168099, -73.89724884303916 40.900880218722826, -73.89722780716446 40.90088249353132, -73.89720687492661 40.90088528530611, -73.8971860748068 40.90088859497304, -73.89717506337398 40.90089036182103, -73.89716413340433 40.9008924033882, -73.8971532979524 40.90089471968616, -73.89714256770334 40.90089730802296, -73.8971319533508 40.90090016030382, -73.89712147269788 40.9009032756442, -73.89711113286243 40.900906655851365, -73.89710094810404 40.900910289231874, -73.89709156916695 40.90091392963315, -73.89718436086719 40.90043301517173, -73.89718603220604 40.90042435310307, -73.89719664089552 40.9004274133903, -73.89723104469466 40.90043734484296, -73.89729084034228 40.900454598201925, -73.89735062770373 40.90047185782579, -73.89741042222661 40.90048911112165, -73.89742742560728 40.90049353860175, -73.89759359340145 40.90053677247781, -73.89772095828201 40.90056991513852, -73.89781063264198 40.900591877211035, -73.89794812649386 40.90062842881345, -73.89808409541895 40.90066811078888, -73.89838371180213 40.900749999267674, -73.89868527338992 40.90082766630477, -73.89879242543797 40.90085488196531, -73.89908701273008 40.90092581432091, -73.8993776034507 40.90099130621856, -73.89928048293943 40.90097974306123, -73.8991829580079 40.90097036674451, -73.89908510457694 40.900963193542395, -73.89898701402126 40.90095822263357, -73.898930698099 40.90095518283857, -73.89890776227851 40.90095428478539, -73.89884248267894 40.90095268777763)), ((-73.90834842054657 40.89365477011354, -73.9083923910128 40.893654054011385, -73.90839762159271 40.89365594828033, -73.90840262627509 40.893658155738564, -73.9084082444161 40.89366125876551, -73.90841426581399 40.893665375157816, -73.9084188575053 40.89366932922872, -73.90842227020686 40.89367288074777, -73.90842523878896 40.89367665523474, -73.9084286498893 40.8936822310428, -73.9084311919938 40.8936880664016, -73.9084326005685 40.89369323270126, -73.90843310278343 40.89384810752394, -73.90843007708438 40.89400121909546, -73.90842879293082 40.89404011002442, -73.90842121808586 40.89423155973139, -73.90841033368064 40.89442291585625, -73.90839614210479 40.89461414598253, -73.90837923099897 40.8947861206746, -73.90835860935991 40.89495785828713, -73.90834071026426 40.89509833862199, -73.90832276838204 40.895238811712545, -73.90830324066198 40.895395013205174, -73.90828449717237 40.895551276546044, -73.90826262391523 40.895722409797976, -73.90824552066329 40.89589385749897, -73.90824321638286 40.89591427235696, -73.90822550171342 40.89608927647732, -73.9082122735882 40.89626451017833, -73.90820356044307 40.896373007145016, -73.90819841672503 40.89648163661718, -73.90819684373164 40.89659033105999, -73.90818731049872 40.89672460013528, -73.90818335573117 40.89685906814802, -73.90817545930965 40.89700164908896, -73.90816984835686 40.89714432639446, -73.90815717956242 40.89729497817432, -73.90814635596637 40.89744571155991, -73.9081414769616 40.89755072667388, -73.90813237576491 40.89765557543812, -73.90811905960132 40.89776016780883, -73.90810513737112 40.89784301209564, -73.9081015368976 40.89786440293714, -73.9080787359851 40.89797601963074, -73.90805087438127 40.89808873988266, -73.90804483702999 40.89810960649952, -73.90801945335782 40.89819737089178, -73.90798304073458 40.89830688578922, -73.90795503793777 40.89838080313073, -73.90792432777224 40.89845410147352, -73.9078909506679 40.8985267169132, -73.90785491380136 40.898598603528626, -73.9078314234494 40.89864122720797, -73.9078079306875 40.8986838553827, -73.90778444145451 40.89872648445566, -73.90776094151182 40.89876911261445, -73.90773745103184 40.89881174167622, -73.90770894479546 40.89885985157246, -73.90768043139478 40.8989079632565, -73.90765192507456 40.898956074038274, -73.90758957930673 40.89906659099919, -73.9075477847402 40.89913428114917, -73.9075223699148 40.899175446237095, -73.90744962247527 40.89928372338584, -73.90744733300104 40.8992872793632, -73.90744478259151 40.89929072527226, -73.90744103216204 40.89929516705508, -73.90743797534353 40.89929836852673, -73.90743467424821 40.89930142842647, -73.90743119648782 40.899304371121474, -73.90742749345632 40.89930715965302, -73.90742363157882 40.8993098183873, -73.90741957175717 40.89931230046782, -73.90741391967282 40.89931536388451, -73.90740799980075 40.89931812452347, -73.90740340796765 40.89931999834996, -73.90739868350143 40.899321667659976, -73.90739222715553 40.89932361563109, -73.90738728134853 40.899324865137494, -73.90738224566098 40.899325889450566, -73.90737716037255 40.89932673902967, -73.90737201011942 40.89932736793782, -73.90736509527423 40.899327904480934, -73.90727936048077 40.89930186119013, -73.90730064013913 40.89927394616171, -73.9073394200016 40.89922205537879, -73.9074907227812 40.89899362843749, -73.90754537119795 40.898908804282605, -73.90759759259036 40.89882310288742, -73.90765978059338 40.89870808787237, -73.90771702165591 40.898591608281755, -73.90776925748709 40.89847378113918, -73.90781644164858 40.898354735183446, -73.9078704819859 40.89822675827145, -73.90791915379677 40.89809755599251, -73.90793628350237 40.89804597100165, -73.9079624213493 40.897967242686356, -73.90801538536644 40.897743610886536, -73.90806020352075 40.897518953217734, -73.90809645108826 40.897320702610195, -73.90812972729185 40.89712215155906, -73.90813962949707 40.896984644649734, -73.90814036244443 40.89697294703862, -73.90814510237934 40.89689726148424, -73.90814824295168 40.89684708718401, -73.90815193991175 40.89681164255156, -73.90816451731182 40.8966910074384, -73.90816775133324 40.89663931589351, -73.90817385537747 40.896541701016766, -73.90817429830497 40.896534624460706, -73.90817718282788 40.89647648696732, -73.90818129044251 40.89639372939582, -73.90818328876733 40.896353424393325, -73.90819311102575 40.896172251995154, -73.9082033590945 40.89600065027978, -73.90820539508869 40.895966563150644, -73.90822212692025 40.8957212772165, -73.90822647136153 40.89565428820826, -73.90822721337713 40.895642876955044, -73.90823803036315 40.89547595549133, -73.90825469008381 40.89524490793849, -73.90827578050252 40.89501406470204, -73.90829773871661 40.894769974207584, -73.90831188531172 40.89452555241865, -73.90832315366721 40.89427715268992, -73.90833582927432 40.89402879368741, -73.90833742312624 40.89400114556072, -73.9083444776433 40.89384382742279, -73.90834810275442 40.893686444423615, -73.90834842054657 40.89365477011354)), ((-73.9046531647205 40.90111140135193, -73.90463206949671 40.90110305715378, -73.90463298159247 40.901056295780606, -73.90466760393252 40.901050559477625, -73.90472081338449 40.90103522944226, -73.90477571162073 40.901019900775275, -73.90482723221486 40.901004569297825, -73.90486355157248 40.90099306853679, -73.90490916399483 40.900977091909844, -73.90494379634721 40.90096430924598, -73.90498433983402 40.9009508902922, -73.90502150477496 40.900938109689285, -73.90504937755631 40.90092916469765, -73.90507894096639 40.9009189397007, -73.90512371011889 40.90090168090697, -73.90518452751586 40.90087995086729, -73.90522929844052 40.90086141154588, -73.90528674180848 40.900837116805825, -73.90533404465086 40.900819860008944, -73.9053653019689 40.900805152818215, -73.9054126065917 40.90078661460194, -73.90547259245928 40.90075527556569, -73.90551905839587 40.90073225310965, -73.9055570753888 40.900714347476864, -73.90558918005516 40.90069707814126, -73.90561198835397 40.90068748862773, -73.90562972324737 40.90068365986066, -73.90564576479294 40.900683031827754, -73.90565840901118 40.900697134734166, -73.9056651457523 40.90070931117958, -73.90567101750004 40.90073558039137, -73.90569559445154 40.90079852628444, -73.90582902238256 40.901095558946665, -73.90583198637937 40.90110102459979, -73.9058448754731 40.9011308501321, -73.90584975017816 40.901146397358964, -73.90585272391712 40.90115588007783, -73.90585292591935 40.90115654389914, -73.90585562369667 40.90116563017995, -73.90585759151472 40.90117225844509, -73.90586160992548 40.901187404257826, -73.90586232463924 40.90119057184219, -73.90587360492287 40.90124605174328, -73.90588003176644 40.901301976126945, -73.90585891163089 40.90126749829207, -73.90583214853645 40.90123535530743, -73.90580018322812 40.90120607611278, -73.90576354196492 40.90118014199169, -73.90572282703438 40.90115798026104, -73.90568102488065 40.90113926467979, -73.90563655514589 40.90112450542994, -73.90559006669457 40.90111391915515, -73.90553588241436 40.90110712930815, -73.90548099750347 40.901105649915834, -73.90542631506615 40.90110950603, -73.90537273002606 40.90111863354971, -73.90532112200147 40.90113288281699, -73.9052723375016 40.90115202040324, -73.9052271768691 40.901175731799654, -73.90518186696254 40.901207555514574, -73.90514309678396 40.90124401577326, -73.90511168157562 40.90128434604007, -73.90508828004528 40.901327697706186, -73.90507338602687 40.90137316169388, -73.90506731184435 40.90141978194931, -73.90507018471646 40.901466578852165, -73.90508194435257 40.901512569023836, -73.90510234410951 40.90155678513932, -73.90513095451524 40.901598300243414, -73.90516717511886 40.90163623946709, -73.90504404771708 40.90164269738603, -73.90479175602786 40.90162628359814, -73.90480022057866 40.90159131308746, -73.90481463223868 40.90154968840184, -73.90482312561589 40.901514463075884, -73.90483499818828 40.901477319802666, -73.90484433811166 40.90144017444055, -73.90484774941235 40.901415835374245, -73.90484862926347 40.9013914942214, -73.90484868337028 40.9013537000603, -73.90484786496226 40.90133512330528, -73.90484028632723 40.9013216647312, -73.90482851468268 40.90128834523099, -73.9048192554973 40.90126912037256, -73.90480241219488 40.90124028019696, -73.90478134536107 40.901212077679844, -73.90476111922467 40.90118771911727, -73.90473835378265 40.901167201720774, -73.90471895836319 40.901151171510655, -73.90469618467905 40.901136419896964, -73.90467425141156 40.90112487109323, -73.9046531647205 40.90111140135193)), ((-73.90710351465765 40.89951869417373, -73.90718638456563 40.8994191240622, -73.90719119195224 40.899420973018984, -73.90721793682735 40.89943125823433, -73.90724504703877 40.89944168421251, -73.90726437866998 40.89945417775105, -73.90727582263828 40.89946696391212, -73.9072832415969 40.89948279137624, -73.90728537034492 40.8995034357833, -73.9072823373773 40.899519303479124, -73.90728023117585 40.89952588432629, -73.90727059009039 40.899549538603154, -73.90725893616006 40.89956984506327, -73.90724093647019 40.899600420947, -73.90722034464186 40.899635400813146, -73.90720162759162 40.899667195369325, -73.90718783901012 40.89969061938276, -73.90716491908745 40.89972955409373, -73.90713474854411 40.8997808051915, -73.90712543399472 40.899796628208094, -73.9071049300749 40.8998314586428, -73.90678457435683 40.900375647455135, -73.90675986001303 40.90041763057128, -73.90670730252637 40.90050690891465, -73.90665671610796 40.9005928399267, -73.90661875271577 40.900657326196715, -73.90659005409073 40.90070607679014, -73.90657802594328 40.90071791652508, -73.90656272271647 40.900731956191706, -73.90654681240905 40.90074559555001, -73.90653029503224 40.900758826495434, -73.90651320741325 40.90077162294347, -73.90649408210498 40.900785235377924, -73.90648913503941 40.90078813363057, -73.90648369120903 40.90078983203606, -73.90647746004166 40.90079019438592, -73.9064696708943 40.900788672561475, -73.90646313432701 40.90078509864808, -73.90645960319411 40.90078118588605, -73.90644790622629 40.900755011047835, -73.90643831721303 40.90073037684361, -73.9064297942591 40.90070551928201, -73.90642236343598 40.90068046449848, -73.90641601165102 40.90065523859657, -73.90641075905188 40.90062986050299, -73.90640660914188 40.90060436984205, -73.90640356900373 40.9005787927336, -73.90640235179124 40.9005498321838, -73.90640237004915 40.90052085462577, -73.9064036201724 40.90049189067307, -73.9064060890514 40.90046297813539, -73.90640978971014 40.900434137734266, -73.90641471142024 40.900405401878345, -73.90642084820314 40.900376801179114, -73.90642820119592 40.90034836985562, -73.90644364415326 40.900309214020346, -73.9064608334325 40.900270487327525, -73.90647974168806 40.9002322230722, -73.90650035936103 40.90019446536944, -73.90652265196655 40.90015726101567, -73.90654658739855 40.90012065320713, -73.90657549425632 40.90008402150155, -73.90660581361026 40.90004804828457, -73.90662253771512 40.900029449708725, -73.90663753353431 40.9000127740671, -73.90664139266721 40.900008741218564, -73.90667060888556 40.89997823032858, -73.90670502419444 40.89994444587076, -73.90674073195244 40.89991144676816, -73.90685510622633 40.89979126325184, -73.90700725448038 40.899628217295295, -73.90710351465765 40.89951869417373)), ((-73.90804185961218 40.8936636392185, -73.90807724303696 40.89366145670919, -73.90807669405643 40.893688594190685, -73.90807279912644 40.89390160893268, -73.90807217469607 40.8939515520367, -73.90807185865837 40.89397671313757, -73.90807155421201 40.8940012150925, -73.90807092464455 40.894051439142785, -73.90807030851803 40.89410138225201, -73.90806968408386 40.894151325354144, -73.90806905846213 40.8942012684548, -73.9080684352128 40.89425121155694, -73.90806780958914 40.89430115465671, -73.90806718515125 40.894351097756925, -73.90806202969988 40.894457866853074, -73.90806122227066 40.894474520679, -73.90805804965629 40.894540172508606, -73.90804297387888 40.894729024603755, -73.90803189548541 40.89491822295974, -73.90801705660539 40.89510727783603, -73.90800029826661 40.895306975804864, -73.90798601275256 40.89550678379313, -73.90798267872248 40.895544932873996, -73.9079779692545 40.895586546823885, -73.907960553299 40.89573649786697, -73.90794953657705 40.895886870930575, -73.90793865389544 40.89603724949868, -73.9079306562675 40.89623202605663, -73.90791984736263 40.896426733728674, -73.90790787714776 40.8966278969407, -73.90789483529849 40.89682902597096, -73.90787930556158 40.896986798279634, -73.90786434229827 40.89709799437376, -73.90785812151707 40.897144195969524, -73.90782753442552 40.89734644647845, -73.90779596466552 40.897548600735526, -73.90777194607058 40.89767282048314, -73.90774392756865 40.89779655166535, -73.90771192584238 40.897919729457826, -73.9076709929936 40.898049437612464, -73.9076348082019 40.89817996448677, -73.90760234226975 40.8982790953362, -73.9075664463017 40.89837754176182, -73.90752713698703 40.89847523983948, -73.9074844571403 40.89857211395939, -73.90745529686008 40.898632201512456, -73.90742387786847 40.898691627191354, -73.90739021565102 40.89875034598245, -73.90728944464063 40.89890352391075, -73.90718388126233 40.899054832090904, -73.90707359562084 40.89920419222431, -73.907052710926 40.899231370032815, -73.90702050666495 40.89922135502953, -73.90699442439886 40.89921256600594, -73.90698837023129 40.89920867283785, -73.9069830075186 40.899204238135134, -73.90697776394082 40.899198628396334, -73.90697358082924 40.899192528747946, -73.90697082713385 40.8991868822943, -73.90696921184427 40.899181869798376, -73.90696836807689 40.89917761523129, -73.90696804060886 40.899173319658, -73.90696817005174 40.89916901904997, -73.90696902100701 40.89916389868232, -73.90697116534781 40.899157215215915, -73.90697400008791 40.899151591275164, -73.90697655343827 40.89914775366818, -73.90698022542685 40.89914340998986, -73.90698440615742 40.8991393368666, -73.90705408881743 40.899056503421996, -73.90711973044507 40.89897277970612, -73.9071820261015 40.898887596278236, -73.9072366617327 40.89881300355889, -73.90728825256967 40.89873717110224, -73.90733673561921 40.89866017270144, -73.90738207756634 40.898582075869996, -73.9074242367734 40.89850295982068, -73.90746798921371 40.89841736244562, -73.90750842469588 40.898330829493524, -73.90754548379229 40.89824343385943, -73.90757914861979 40.89815524306862, -73.90760939414278 40.898066348052836, -73.9076483379827 40.89793846451153, -73.90768360718886 40.897809971989695, -73.90773337021292 40.897605145269644, -73.90777819229218 40.89739966172228, -73.90780948677858 40.8972214187094, -73.90783645487066 40.897042762507844, -73.90785806941552 40.896888148560215, -73.90787487932104 40.89673318228245, -73.9078868643067 40.89657796451473, -73.90789952296264 40.89636046165833, -73.90790084247575 40.89633741750858, -73.90791195844591 40.89614295050932, -73.9079149914777 40.89609255280219, -73.90791803163008 40.89604215149828, -73.90792106347214 40.895991749286694, -73.90792410360913 40.89594135248409, -73.90792713781295 40.895890952074225, -73.9079301708279 40.89584054986193, -73.90793320976431 40.89579015305671, -73.90793763475294 40.895714916584566, -73.90794584894955 40.895543647334705, -73.90795234720318 40.89537233438773, -73.90796517354939 40.89520824116457, -73.90797097138099 40.89504392441467, -73.90797304655212 40.89501674763537, -73.9079742329316 40.89498954223241, -73.90797451506997 40.89496232530256, -73.90798649498188 40.8946920714247, -73.90799843187156 40.89450255857943, -73.90800789577602 40.89431296181146, -73.90801487718936 40.894123305426824, -73.90802421717291 40.89400089643448, -73.90803127706721 40.89384022761455, -73.90803267750115 40.89367714548305, -73.90803449389627 40.89367142254656, -73.90803744601524 40.89366735290489, -73.90804185961218 40.8936636392185)), ((-73.90834763548668 40.89070927750131, -73.90839499895769 40.8906964651692, -73.90840116202588 40.89069660513284, -73.90840827466329 40.89069740320407, -73.90841618585308 40.89069908978721, -73.90842280658235 40.89070122198686, -73.90842816331386 40.89070354048444, -73.90843395546196 40.89070677151902, -73.90843922008074 40.89071049199901, -73.90844321286181 40.8907140601884, -73.90844615956735 40.89071725384645, -73.90844870967845 40.890720640794285, -73.90845125621246 40.8907249021107, -73.90845293612166 40.89072859093143, -73.90845415786278 40.890732378442195, -73.90845497013392 40.89073623046313, -73.90845530188327 40.89074090334582, -73.90845493839488 40.89074635279615, -73.90845414399325 40.89075020444335, -73.90845288334496 40.890753989084885, -73.90845122175337 40.890757677956884, -73.90844814637742 40.890762611979596, -73.90844096453375 40.890786208910164, -73.90843566042226 40.89080857096302, -73.9084312805309 40.890831040906505, -73.90842782844534 40.89085360073383, -73.90842529350796 40.89087623512838, -73.90842369236466 40.890898920690766, -73.90842301674846 40.890921629499495, -73.90842267292551 40.89096620506138, -73.90842243437099 40.89101102743939, -73.90842220174183 40.89105585522471, -73.90842196080479 40.89110068390353, -73.90842173055562 40.89114550628699, -73.90842512058634 40.89139885246011, -73.90842439421611 40.89165220706183, -73.90842620885397 40.89183375356081, -73.90842705658811 40.89191868351121, -73.90842865217869 40.89218517080734, -73.9084291904929 40.892451650948026, -73.90843128366903 40.892695480602875, -73.90843422887797 40.8929393091214, -73.90843383116184 40.893135856804975, -73.9084363977211 40.89333240142966, -73.90843572633362 40.893384761405564, -73.9084350537585 40.893437121379954, -73.90843407378102 40.893490383396106, -73.90843187108503 40.89349573503278, -73.90842847133311 40.89350174037249, -73.90842480733669 40.89350660728933, -73.90841971878619 40.89351188009512, -73.90841477060276 40.89351604361446, -73.90841020357698 40.89351917187812, -73.90840429648438 40.89352253590586, -73.90839905873578 40.893524990074035, -73.90839354974902 40.893527075728265, -73.90838666667186 40.89352911436705, -73.90837833755717 40.893530787161204, -73.90834832049813 40.89353196457983, -73.90834809225298 40.8935116035301, -73.90834798561322 40.89350202048303, -73.90834677375706 40.893435090064926, -73.90834372115704 40.89319965310236, -73.90834450502958 40.892964212872165, -73.90834657849325 40.8927126306568, -73.9083483312218 40.892467309249035, -73.90834837664902 40.89246104190759, -73.90834751077035 40.892212907994484, -73.90834184608971 40.89196481708479, -73.9083360822973 40.891697415175166, -73.90833511019156 40.89142997743573, -73.90833546155734 40.89118033342669, -73.9083328712956 40.89093069247296, -73.90833728887237 40.89083187039442, -73.90834525621783 40.89073259548687, -73.9083453151626 40.89073201472046, -73.90834763548668 40.89070927750131)), ((-73.91339056292337 40.88575459703611, -73.91347056164564 40.8856973545883, -73.91325225880774 40.88590143543422, -73.9130391143378 40.886108626424736, -73.91292971273141 40.886219155180754, -73.91282476652675 40.886332145523646, -73.9127243873909 40.886447504799754, -73.91272126414052 40.88645133940997, -73.9126286561752 40.88656511601889, -73.9125160142638 40.88670600991816, -73.9124086951451 40.88684927242037, -73.91230677849374 40.886994787437835, -73.91221034754295 40.88714244158677, -73.91213207229488 40.88727070129704, -73.91205987135437 40.8873930908083, -73.91199254240989 40.88751707064301, -73.91193013665132 40.887642530989424, -73.91187271240612 40.88776934943384, -73.91177776899339 40.887994420919355, -73.91177125170569 40.88800476882529, -73.91176426834072 40.8880149326754, -73.9117568260201 40.888024910674076, -73.91174893306629 40.88803469022082, -73.91174059425181 40.888044251508504, -73.91173182619906 40.88805358644532, -73.91172264552357 40.88806269234244, -73.91171304039302 40.888071543977105, -73.91170304521776 40.88808014137556, -73.91169266476429 40.88808846923306, -73.9116819073457 40.88809652215299, -73.91167079315044 40.88810428754385, -73.91165932456472 40.88811175550201, -73.91164753126941 40.88811891344331, -73.9116354132647 40.88812576136766, -73.9116229812512 40.88813228307441, -73.91161026963825 40.888138479490244, -73.91159727844857 40.88814433350587, -73.91158403497701 40.88814984244071, -73.91154274091532 40.88816082284514, -73.91152844722475 40.888164623647334, -73.91147286894275 40.888179403033476, -73.911444164038 40.88818703154319, -73.91141729064198 40.88819417789038, -73.91135916255212 40.88820971617552, -73.91135244003836 40.8882101738626, -73.91134553539712 40.88820839910473, -73.91134102761832 40.88820484772773, -73.91133855999833 40.888200069654786, -73.91133888046961 40.888195547660494, -73.91134150494756 40.88819125525881, -73.91134638845172 40.88818800015101, -73.91136848947676 40.88817551747807, -73.9113871106921 40.88816362645016, -73.91140517841337 40.888151255935874, -73.91142267601774 40.88813841402707, -73.9114395726258 40.888125122312, -73.91145585160515 40.88811139608637, -73.91147149751266 40.888097248845924, -73.91148648778203 40.88808269678241, -73.91150080102777 40.888067760590786, -73.91151442061303 40.88805245916873, -73.91152734415054 40.888036803320546, -73.91153953600775 40.88802082003374, -73.91155099260023 40.888004528215944, -73.91156170441536 40.88798794316843, -73.9115716512534 40.8879710864875, -73.91158082122394 40.88795397707447, -73.91158920006005 40.88793663653032, -73.91159678535084 40.88791909366889, -73.91160356403749 40.8879013538832, -73.91161001218038 40.887886799763464, -73.91161709016711 40.887872409113555, -73.91162479677254 40.887858210748, -73.91163311062499 40.88784421455566, -73.91164204120703 40.88783042774757, -73.91165156237112 40.88781688272101, -73.91166167411686 40.88780357947589, -73.91179402953648 40.88762965006272, -73.91192264637812 40.88745411117285, -73.91204747003087 40.88727700059733, -73.91211165656439 40.88718270285759, -73.91213910014203 40.88714238737544, -73.91225359584999 40.88697897410487, -73.91237088853586 40.88681670825809, -73.91249094848972 40.8866556141173, -73.91251091581383 40.88662928733093, -73.9125423301829 40.88658813190376, -73.9125611475888 40.8865682129975, -73.91256478226069 40.88656437157522, -73.91268421194883 40.886437968882035, -73.91282471530162 40.88628705903852, -73.91296382006425 40.88613541046737, -73.91302824811093 40.88606780369631, -73.91309544571041 40.88600176131752, -73.91316534631963 40.88593735531517, -73.91323788102586 40.88587465587054, -73.91331298331616 40.88581371335591, -73.91332398027038 40.88580533448481, -73.91339056292337 40.88575459703611)), ((-73.90640268466977 40.900165966947874, -73.90655291929373 40.90004353728051, -73.9065295953181 40.90007069590678, -73.90650749406082 40.90009844623591, -73.90648666066852 40.90012675408679, -73.90646710706463 40.90015558074894, -73.90644884872917 40.90018489021617, -73.90643192366704 40.900214663609674, -73.90641633906759 40.900244853210346, -73.90640212347213 40.900275418519975, -73.90638928639181 40.90030634874096, -73.90637784097048 40.90033758175104, -73.90636780148175 40.900369095950616, -73.9063616202976 40.90039802888965, -73.90635664469292 40.900427096077756, -73.90635288538459 40.90045627321063, -73.90635033887472 40.9004855170624, -73.9063490182386 40.900514814136415, -73.90634890810159 40.90054412750043, -73.90635001563054 40.90057342564336, -73.90635235272775 40.9006026851622, -73.90636254854871 40.9006539858964, -73.90637497476412 40.90070500298461, -73.90638960890604 40.90075568237887, -73.9064066693423 40.900807714463554, -73.90640673262986 40.90081165323138, -73.9064059616616 40.90081554990058, -73.9064039554922 40.90082011192645, -73.90640121688614 40.900823962876714, -73.90639759712032 40.90082736827346, -73.90639330275341 40.90083028776231, -73.90638784836122 40.90083273985973, -73.90635686912162 40.900841440424685, -73.90633972639544 40.900846141452156, -73.90632329602481 40.90085064224716, -73.90629476279734 40.900858466808316, -73.9062860117077 40.900859921190424, -73.90627721576591 40.900861200841526, -73.90626623484351 40.90086254715483, -73.9062552020841 40.900863622379305, -73.90624413291103 40.9008644301294, -73.90623303326603 40.90086496500715, -73.90622191501848 40.90086522612155, -73.90621079477842 40.90086521708813, -73.90619967491962 40.900864937908835, -73.9061885779963 40.90086438499994, -73.90617751112815 40.90086355926783, -73.90616648024158 40.90086246612019, -73.90615550433054 40.90086110197048, -73.90614445999802 40.90085944600738, -73.90613349912294 40.90085751996593, -73.90612262645014 40.90085532565092, -73.90611185147148 40.90085286487114, -73.90610118724308 40.900850136736665, -73.9060906491908 40.900847143061185, -73.90608023848371 40.900843896452315, -73.90606998243341 40.90084038612655, -73.90605987508313 40.90083662828777, -73.90604993779387 40.90083262385399, -73.9060401812469 40.9008283728338, -73.90602864349572 40.90082400149911, -73.90601731740865 40.90081933767829, -73.90600620416502 40.900814386775316, -73.9059953132554 40.900809151499374, -73.90598466128473 40.900803639067966, -73.9059742672303 40.900797857600914, -73.90596413463727 40.90079181790702, -73.90595427538256 40.90078551369258, -73.90594470605436 40.90077896388145, -73.90593543259057 40.90077216577703, -73.90592646326432 40.90076514369915, -73.90592019259098 40.900759877962415, -73.90591911518896 40.900754702903946, -73.90592002557409 40.90071856812741, -73.90593274181995 40.900627318947436, -73.90593243445473 40.90062730969217, -73.90594000454092 40.900578143134496, -73.90595405361469 40.9004851309876, -73.90595588140215 40.900474969614756, -73.90598689134602 40.90045790278554, -73.90604174261533 40.90042572182062, -73.90609527827161 40.90039228718623, -73.9061474294524 40.900357618638765, -73.90619816049369 40.900321758473915, -73.90624742506749 40.90028473727234, -73.90640268466977 40.900165966947874)), ((-73.90837504142353 40.89059223253127, -73.90839713179437 40.8904618840621, -73.90842727428262 40.890332468573504, -73.90846540199968 40.89020427146019, -73.90851143144795 40.89007757720163, -73.90856526015287 40.88995266575835, -73.9086267690365 40.88982981257403, -73.90863535333536 40.889815662833065, -73.90865793278651 40.889781326272335, -73.90871360088536 40.88969047618152, -73.90877421558012 40.8896014678634, -73.90883967340915 40.889514457012545, -73.90887016867327 40.88953185146259, -73.90886655094337 40.88964250569843, -73.90885519938956 40.8897528584661, -73.90883614881092 40.88986259912324, -73.9088094506196 40.88997141703915, -73.9087751811405 40.89007900700434, -73.90873343687008 40.89018506562475, -73.90868433447446 40.89028929312301, -73.90862801434474 40.89039139694312, -73.90856463229488 40.89049108904274, -73.90855042038551 40.89051172141667, -73.90853307650445 40.89053616846552, -73.90853155348599 40.890534016899075, -73.90851585453238 40.89055221047573, -73.90850142561195 40.890561514562734, -73.90837504142353 40.89059223253127)), ((-73.91033979446661 40.888641696994256, -73.91039883575176 40.888619039790115, -73.91040182368499 40.88862245855295, -73.91040583997078 40.88862706045197, -73.91027618934858 40.88869089424316, -73.91014907741081 40.88875761412067, -73.9100246205196 40.888827156248915, -73.90990292909868 40.888899462191, -73.9098920124436 40.888904805256956, -73.90988134458124 40.8889104339701, -73.90987093621038 40.88891633393112, -73.90986080395271 40.88892249794916, -73.90985095018016 40.88892892692664, -73.90984139508286 40.888935607372154, -73.90983214816329 40.88894253208926, -73.90982322129199 40.88894969748535, -73.90981462635557 40.88895708826154, -73.90980636217598 40.888964698113625, -73.90979845842519 40.88897252166191, -73.90979090444591 40.88898054268938, -73.90978371804555 40.88898875490665, -73.90977691465577 40.8889971538234, -73.90977048836943 40.88900572052489, -73.90976445460733 40.889014458625184, -73.90975882052817 40.889023339314384, -73.90975358613197 40.88903236259251, -73.90974877397255 40.88904152217391, -73.90974436865145 40.88905079823587, -73.9097403939101 40.889060183593145, -73.90973683908292 40.889069668332105, -73.90973051326417 40.88910385573249, -73.90972268902603 40.88913786456476, -73.9097133628652 40.88917165160246, -73.90970256210886 40.889205188951536, -73.9096902797002 40.88923842888042, -73.90968718978856 40.889245447550685, -73.90968378080122 40.88925238042502, -73.90968005274173 40.88925922480194, -73.90967602106141 40.88926596178336, -73.90967168576012 40.88927259136926, -73.90966705515241 40.88927910726264, -73.90966212925788 40.88928549505575, -73.90965691283499 40.88929174574743, -73.90965141536905 40.88929786474793, -73.90964565231747 40.889303828656736, -73.9096396141802 40.88930964286928, -73.90963331877549 40.88931529299164, -73.90962676254364 40.88932077902104, -73.90961997161034 40.88932608566963, -73.9096129352963 40.889331212929, -73.90960567615646 40.8893361536129, -73.90959819657132 40.88934090232015, -73.90959050130076 40.88934544914921, -73.90958260813379 40.88934980131782, -73.90957452184612 40.88935393721798, -73.9095662495537 40.88935785955673, -73.90955780075788 40.889361562038054, -73.90954919682208 40.889365041076736, -73.90954043656231 40.889368294870785, -73.90953153659936 40.88937131712986, -73.90952249575415 40.88937410245003, -73.90951334487305 40.88937665445742, -73.90950407566353 40.889378963240205, -73.90949470948303 40.889381029715494, -73.90926910383058 40.88939293802172, -73.90911189683854 40.88939861437342, -73.90909420867659 40.889399253296645, -73.90907244557049 40.889400037587414, -73.90902294201908 40.88937161887097, -73.90908656477319 40.88931848991008, -73.9091561372792 40.889264265202634, -73.90922813132592 40.889211900059415, -73.90930247090105 40.88916144664428, -73.90937905149191 40.889112974208125, -73.90947659051587 40.88905060565306, -73.90957671875242 40.88899065144494, -73.90967931630237 40.88893315470657, -73.90978429764421 40.88887818380152, -73.90989153931278 40.888825788153746, -73.91000094155629 40.888776031613716, -73.91011239159133 40.88872896361421, -73.9101696783648 40.8887069778242, -73.9102269639126 40.88868499290523, -73.91026851677681 40.8886690451927, -73.91028425772737 40.88866300886466, -73.91033979446661 40.888641696994256)), ((-73.91774485152426 40.88049996264567, -73.9177271428957 40.8804520089866, -73.91770159891912 40.88040613706671, -73.91766862683119 40.88036308016792, -73.91762875612082 40.880323527534564, -73.91758262311822 40.88028811355698, -73.91760455277478 40.880283518720596, -73.91771906705935 40.88033682011206, -73.91783786683926 40.880384413550416, -73.91796045759618 40.880426101464415, -73.91808633172653 40.880461710588285, -73.91816669436807 40.88039336929255, -73.91810660036252 40.88037431468133, -73.91804934037836 40.880350761416125, -73.91799549903429 40.88032295124705, -73.91794562174616 40.880291164618136, -73.9180263270984 40.88030470046105, -73.91810840086433 40.88031210670161, -73.91819103871082 40.88031331342928, -73.91827342674372 40.880308306559215, -73.91828578244368 40.88032064567911, -73.91776636496263 40.88076669776747, -73.91733245447897 40.88113931371166, -73.91707946512344 40.88135794517721, -73.91685424274455 40.88155111590725, -73.91682257549401 40.88158221752237, -73.91649649487276 40.881858500902304, -73.91624593537226 40.88207655145975, -73.91609627077051 40.882220453125086, -73.91599479182376 40.88233016577032, -73.91589968687164 40.88244312111983, -73.91581113654792 40.88255910410461, -73.91575498639324 40.88262702017383, -73.91569377434553 40.88269236793111, -73.91562770592913 40.88275493230239, -73.91561004042802 40.88274477000022, -73.91573117262087 40.88259159384557, -73.91585943062955 40.882441795978764, -73.91599465163698 40.88229556896203, -73.91614419576457 40.882146840732766, -73.91629935999008 40.882001466193444, -73.91646001244885 40.881859568592986, -73.91662601891419 40.88172126577556, -73.91721602417856 40.88118894254651, -73.91754512957459 40.88090237390157, -73.91755899898621 40.88089091970809, -73.91761688644664 40.88083535776489, -73.9176680690673 40.880776126026724, -73.91771214764024 40.8807136897696, -73.91774877513511 40.88064853861931, -73.91775575447697 40.88059902040169, -73.91775443981128 40.880549228828386, -73.91774485152426 40.88049996264567)), ((-73.90579232940213 40.89967771701481, -73.90584556682883 40.89952522924606, -73.90620790831996 40.89958532894249, -73.90622721278925 40.89959088980542, -73.90623384310562 40.89959437556182, -73.90623736814644 40.89959666385342, -73.90624059126544 40.89959929408369, -73.90624467498124 40.899603473845374, -73.9062502175431 40.899611644836625, -73.90625408727675 40.899619448872656, -73.90625757345565 40.89963246369851, -73.90625813643588 40.8996439246166, -73.90625754138259 40.89965352149273, -73.90625488581242 40.899663317503645, -73.9062513559381 40.89967034291549, -73.90623850419753 40.8996864601483, -73.9061158058194 40.899807710565256, -73.90600207530746 40.899908931481185, -73.9058989603206 40.89998658086184, -73.9058162085985 40.90003941141479, -73.90574047704743 40.90008268269874, -73.90572408929388 40.90008903663989, -73.90570865928507 40.90009370565491, -73.9056854829249 40.90009854303363, -73.90566688479798 40.90009945263551, -73.90564676724037 40.9000964303799, -73.90563000594588 40.90009086609649, -73.90561970435314 40.900085260266586, -73.90560776921474 40.900075020109874, -73.90560285617 40.900067343968956, -73.9055985502834 40.90005916585422, -73.90559481737938 40.90004613820087, -73.90559414344301 40.90003433230426, -73.90559554131595 40.90002357716569, -73.90560317209881 40.90000784204407, -73.90562153891133 40.899979258588175, -73.90566252964103 40.89992279752345, -73.90572715804018 40.89981812672293, -73.90576451161037 40.89973871921673, -73.90579232940213 40.89967771701481)), ((-73.90553176156182 40.90028403591621, -73.90555977511872 40.90028017865016, -73.90557872894249 40.90028121440181, -73.90558222225313 40.90028412762305, -73.905586461988 40.90028792032701, -73.9055905223684 40.90029181914122, -73.90559439982502 40.90029583036619, -73.90559809200984 40.90029993599038, -73.90560726474365 40.90030906719423, -73.90561601465812 40.900318428575545, -73.90562434294905 40.90032801383205, -73.90563222589591 40.900337812138595, -73.90563966470965 40.90034780638707, -73.90564664990366 40.90035799116691, -73.90565317081837 40.900368351161305, -73.90565921560365 40.90037887375377, -73.90566478664192 40.90038955264303, -73.9056698673487 40.90040036620396, -73.90567445180642 40.90041130272548, -73.90567854832875 40.90042235771201, -73.90568147879398 40.900433860186766, -73.90563507027785 40.90045842078278, -73.90561127141686 40.900470290417225, -73.9056022359479 40.90047479625514, -73.90555772483954 40.90049699640197, -73.90547867796296 40.900533548089214, -73.90546445998051 40.90053957869485, -73.9054499992065 40.90054525611014, -73.90543529327901 40.900550572228795, -73.90542037187305 40.900555523472995, -73.90540524567106 40.900560108951034, -73.9053534284452 40.90057406360423, -73.9053415845683 40.90057637534138, -73.90532984706914 40.900578990627636, -73.90531824206455 40.900581904081534, -73.90530676955446 40.90058511570311, -73.90529545091113 40.90058861830609, -73.90528428850287 40.900592415494394, -73.90527331082527 40.900596498286575, -73.90526251907015 40.90060086308174, -73.90519770697675 40.90062442957187, -73.90513290314354 40.90064799693281, -73.90506809095815 40.90067156334994, -73.90500327872681 40.9006951297306, -73.90493847357024 40.90071869608063, -73.9048736624338 40.900742262389265, -73.90485995617439 40.90074724337771, -73.90480708819484 40.90076629726034, -73.90479997570662 40.9007679870067, -73.90479272727245 40.90076930293972, -73.90478537256486 40.90077024328284, -73.90477795314088 40.90077079456308, -73.90477050103884 40.900770960408785, -73.90476491260902 40.90077084053701, -73.9047593387587 40.90077048475021, -73.90475195806327 40.90076968353388, -73.90474466810863 40.90076850238776, -73.90473750093314 40.9007669449402, -73.9047304897528 40.90076502112401, -73.90472366897818 40.900762735469975, -73.9047170718189 40.900760102413294, -73.90471072674885 40.90075712828088, -73.90470466459756 40.90075383200847, -73.90470031644924 40.90075117109123, -73.90469616795309 40.90074832123704, -73.90469093523234 40.90074429355517, -73.90468724057106 40.90074110909531, -73.90468379536708 40.90073776365466, -73.90468029343 40.90073425607993, -73.90467692467074 40.90073056941881, -73.90467281619742 40.90072546748653, -73.90466918510465 40.900720163339415, -73.9046667699197 40.90071607224762, -73.90466466700649 40.90071187965895, -73.90466229803887 40.9007061812414, -73.90466084214844 40.900701834303696, -73.9046597245718 40.90069743271587, -73.90465887525868 40.90069299713119, -73.90465836422952 40.90068852760747, -73.90465812499184 40.90068404660188, -73.90465823229776 40.90067956498203, -73.90465882118842 40.90067360426476, -73.9046599559371 40.900667689022505, -73.90466162819598 40.90066184716327, -73.90466382843064 40.90065610659421, -73.90466654473043 40.90065049702147, -73.9046697723119 40.90064504365454, -73.90467348621632 40.9006397716863, -73.90467656786173 40.90063594537315, -73.90467993769217 40.90063226157427, -73.90468352690226 40.90062870042227, -73.90468737697543 40.90062529977161, -73.90469285067415 40.90062100267876, -73.9046971963135 40.90061795812805, -73.90470176358866 40.90061511817003, -73.90470813101294 40.90061159623032, -73.90471480294514 40.900608420327444, -73.90471998637105 40.90060626254355, -73.90478377196297 40.90058440999621, -73.90484756106557 40.90056256281939, -73.90488689978527 40.90054579310578, -73.9048943084556 40.90054361553568, -73.904932093853 40.90053251037202, -73.9050012497049 40.90051218574529, -73.90505415237493 40.90049442129458, -73.9051188602203 40.90047066929918, -73.90517344515854 40.900449116939804, -73.90520991621847 40.900434177245266, -73.90524957564335 40.90041793085233, -73.90531355578533 40.90039172163005, -73.9053611161304 40.90036842368514, -73.90540493071406 40.90034696053926, -73.90544241886455 40.900328596163384, -73.90548220847042 40.900306680349786, -73.90551083948911 40.90029090929767, -73.90553176156182 40.90028403591621)), ((-73.91094385277789 40.88798426959711, -73.9110804425971 40.88789395079809, -73.91108071856462 40.887894325612876, -73.91109926756717 40.88788140171772, -73.91120253450632 40.887807296467784, -73.91129931843699 40.887728310911456, -73.91138921668292 40.88764477163207, -73.91147186096045 40.88755702324925, -73.91155993463026 40.8874425633452, -73.911642911088 40.887325929298484, -73.91172069406733 40.887207252517236, -73.91179319916732 40.88708666621935, -73.9118556615638 40.88698809269315, -73.91192303713305 40.886891400394354, -73.9119952271893 40.8867967306156, -73.9120721271209 40.8867042210426, -73.91230253073199 40.886439768643875, -73.91253683833256 40.88617729980191, -73.91277501781991 40.88591684598592, -73.91296426175339 40.885742755542616, -73.91315722845917 40.88557103496391, -73.91335386684784 40.88540173101831, -73.91335676640651 40.885406504872385, -73.91328678652125 40.88548404723235, -73.9132273473064 40.88554447832715, -73.91308471602063 40.88567770332615, -73.91293159913353 40.88582611054077, -73.91277475052819 40.88597225630906, -73.91264423317494 40.88611262626234, -73.9125193735412 40.88625593053532, -73.91240028454224 40.886402036860346, -73.91228707791241 40.88655081116749, -73.91185848614803 40.88712008450703, -73.91178360042723 40.887227622782916, -73.91170408947696 40.88733323042994, -73.91162003886348 40.887436794943454, -73.91156214235923 40.887507118182086, -73.91149932956242 40.8875749693892, -73.91143178583278 40.88764014969165, -73.91135071871305 40.8877124883378, -73.91126509559072 40.88778173835865, -73.91117511958775 40.88784773331058, -73.91108100686799 40.8879103166655, -73.91094652960714 40.88799759885511, -73.9108062143063 40.88807941582878, -73.91066044335516 40.88815554273994, -73.91080381265107 40.88807149239773, -73.91094385277789 40.88798426959711)), ((-73.90597054815689 40.90093184387136, -73.90594913801088 40.9008683675321, -73.90594568303335 40.90085762194478, -73.90595210957521 40.900860936458436, -73.90596845599238 40.90086882000266, -73.90598512816885 40.90087629769156, -73.90600211306254 40.90088336050958, -73.90601939406703 40.90089000213972, -73.90603694271687 40.90089620995185, -73.90605475901691 40.90090198034393, -73.90607280737069 40.90090730788401, -73.90609107591378 40.90091218986083, -73.90610954686443 40.90091661185215, -73.90612820241265 40.9009205792462, -73.90614700697085 40.90092408030776, -73.90616596053238 40.90092711953914, -73.90618030102166 40.90092848011868, -73.90619470138245 40.90092946434283, -73.90620913194465 40.90093007218745, -73.90622358559612 40.90093029734337, -73.90623804689946 40.90093014610149, -73.90625247907272 40.90092961212845, -73.90626689041427 40.900928701734465, -73.90628124176737 40.90092740948482, -73.90629553549135 40.900925745286784, -73.90630973835962 40.90092370641196, -73.90632384087502 40.90092129465366, -73.90633782404493 40.90091851269793, -73.90635167480924 40.90091536413616, -73.90636537060979 40.90091185525351, -73.90637889719353 40.90090799414281, -73.9063946218667 40.900903184802246, -73.90640017914603 40.900902680534564, -73.90640652218065 40.90090379237164, -73.90641314626475 40.900907589679115, -73.90641711706283 40.90091364234851, -73.90641745502221 40.90093069688635, -73.90641667154298 40.900945164325435, -73.90641525080217 40.900959597929976, -73.90641319992775 40.90097399230288, -73.90641052013399 40.90098832763443, -73.90640721144209 40.901002588616336, -73.90640327862661 40.90101675544184, -73.9063987264522 40.9010308155079, -73.90639356443822 40.901044750812524, -73.90638778904417 40.90105854694502, -73.90635987182769 40.9011184956278, -73.9063295902075 40.90117777962877, -73.90629696324821 40.90123634133055, -73.90626826809066 40.90128565464419, -73.90623949097717 40.901334984992914, -73.90621071383111 40.90138430813012, -73.90618403469111 40.9014279013854, -73.90615735314367 40.9014714937317, -73.90613068225012 40.901515080677285, -73.90612410403936 40.90152582800516, -73.90610405058918 40.90155859470909, -73.90607732135396 40.9016022653392, -73.90606980495456 40.90161091377343, -73.90606304112008 40.90161107215821, -73.90605677265631 40.90160837731271, -73.90605422910161 40.901605180326605, -73.90606117434871 40.90160514095381, -73.90607081453372 40.90149530238555, -73.90607296817657 40.9014443628702, -73.9060729027794 40.901396581346596, -73.90607268276618 40.90137674801219, -73.90607225660317 40.90133818894951, -73.90607154817451 40.90130789159576, -73.90607064500847 40.901269269110614, -73.90607001833455 40.90124242697939, -73.90606943637789 40.90121753443181, -73.90606766141083 40.9011953576732, -73.90606632112451 40.901182197812645, -73.90606107779978 40.90115871973404, -73.90605617286955 40.90113849177656, -73.90605180610306 40.901123758108646, -73.90604535675672 40.901106330299044, -73.90604101069238 40.90109458535332, -73.90603276078433 40.90107813580386, -73.90601916991918 40.901051040888554, -73.90601256029478 40.90103786323015, -73.90600231004053 40.90101261342212, -73.9059919467967 40.900986702565966, -73.90598637954987 40.90097243166675, -73.90598354153421 40.90096515524703, -73.90597054815689 40.90093184387136)), ((-73.90855926654515 40.88941445329135, -73.90864528537224 40.889389816574536, -73.90864843703869 40.88939234313055, -73.90863592395829 40.88940652488281, -73.9085681542223 40.889478202118006, -73.90851964619009 40.889536145062415, -73.90847372910766 40.889595300293244, -73.90843046360854 40.889655585917346, -73.90838987707248 40.889716941626915, -73.90835203724009 40.88977929543958, -73.90831697268517 40.88984258254583, -73.90828472980319 40.88990672194123, -73.90824414355568 40.8900003275917, -73.9082076887886 40.89009490093198, -73.90817539531749 40.890190344737306, -73.90814730839286 40.89028655549119, -73.90812344836613 40.89038341614971, -73.90810385691712 40.89048083219763, -73.90808853541616 40.89057868387365, -73.90807751843302 40.89067687035252, -73.90807532754458 40.8907029052477, -73.90803824099227 40.890712475784184, -73.90804073530896 40.8906867004713, -73.90805130782924 40.89059933387688, -73.90806514787892 40.89051222922246, -73.90808222923421 40.89042546302722, -73.908102556547 40.89033909472553, -73.90812610240727 40.89025320083519, -73.90814433568441 40.89018713320643, -73.90816000282933 40.89012068712935, -73.90817309546615 40.890053918428364, -73.90818359334439 40.8899868892218, -73.90819149402023 40.88991965623896, -73.90819678793292 40.88985227440238, -73.90820222757559 40.889709428374374, -73.9082017295633 40.88956652989463, -73.90819671783103 40.889451940895356, -73.90828865954272 40.88945193113753, -73.90838022546004 40.889445637418405, -73.9084706726812 40.88943311137802, -73.90855926654515 40.88941445329135)), ((-73.90951471638076 40.88868462766393, -73.9095947528169 40.88866054384867, -73.90960571867909 40.8886792123056, -73.90949036913429 40.88874555886319, -73.90937789419517 40.8888146945655, -73.90926843276733 40.88888656009804, -73.90922430519662 40.88891687898074, -73.9091801763917 40.888947203248335, -73.9091360487393 40.88897752299743, -73.90909192103919 40.8890078481324, -73.90899302905882 40.88908491752865, -73.90890093901585 40.88916669634569, -73.90881603703019 40.889252839118015, -73.90872702544084 40.8892017391374, -73.908701414211 40.88918703646163, -73.90867596156141 40.889171785509724, -73.90863503494244 40.88914857281621, -73.90862870664685 40.88914529634198, -73.9085949014488 40.889125889321306, -73.90859012670806 40.88912238535173, -73.90858794221046 40.88911375426602, -73.90859343756094 40.88910578211438, -73.90860384697228 40.889100955648566, -73.9086325685003 40.889091254040224, -73.90866964438533 40.889080090342816, -73.90869089928454 40.88907171282941, -73.90869842716674 40.889068974103274, -73.90871146354431 40.88906423074932, -73.90873170337102 40.88905624233597, -73.90875158790583 40.889047752968054, -73.90877108627262 40.8890387806311, -73.90879019609915 40.88902932442294, -73.9088088900802 40.889019394227496, -73.90882714088849 40.88900901613751, -73.90884493311059 40.88899818113613, -73.90886225010347 40.888986911722604, -73.90889685073252 40.888964456606544, -73.90893054704425 40.88894122274674, -73.90896330460907 40.8889172236242, -73.9089950996497 40.88889249253886, -73.90902588704915 40.88886704926666, -73.90904532676406 40.88885317999472, -73.9090653661953 40.88883981096165, -73.90908598396727 40.888826954757064, -73.90910714801312 40.88881463296702, -73.9091288500183 40.888802851888116, -73.90915105081137 40.88879162229506, -73.90917373849844 40.888780964889364, -73.90919687747159 40.88877088774714, -73.90922044991902 40.88876140075944, -73.90924442496568 40.888752521911385, -73.9092687753232 40.8887442493804, -73.90935163562939 40.888726508274665, -73.90943364684543 40.8887066268887, -73.90951471638076 40.88868462766393)), ((-73.9068567618972 40.89931185045949, -73.90688711503803 40.89931154626809, -73.90692237497419 40.89931836435189, -73.90695658040369 40.899330744766026, -73.90696997889887 40.89933589732808, -73.90691602084203 40.89940154505154, -73.90685555579294 40.899470462559975, -73.90673724967272 40.899601243405954, -73.90661575778789 40.899730334944294, -73.90653942874324 40.899805843599985, -73.90646033785579 40.89987969577743, -73.90637855402872 40.89995183929876, -73.90631966342505 40.900000930039376, -73.90629413430867 40.90002221477269, -73.90628096899717 40.9000325848657, -73.90620714404689 40.90009076551611, -73.9061228032008 40.900153778570136, -73.90603606282613 40.90021489769204, -73.9060342394036 40.900216109159864, -73.90604496118003 40.90018980664444, -73.9060755564219 40.90013604202879, -73.90609086354263 40.90010914261629, -73.90610729138166 40.90008027205309, -73.90613252421436 40.90004362846504, -73.9061721795532 40.899993801801365, -73.90619490228522 40.899972293295555, -73.90623183189531 40.899937334989374, -73.90625398023845 40.899916632838874, -73.90628590624738 40.89988679060416, -73.90631082339087 40.89986350089806, -73.90634446412402 40.89983205537586, -73.90637301279209 40.899805370175294, -73.90639167089756 40.8997879303225, -73.90641124044839 40.89976963844714, -73.90643846525603 40.899744190322465, -73.90647188560517 40.89971071939528, -73.90649225915358 40.8996903156217, -73.90651112930702 40.899671416236316, -73.9065434471025 40.899634547769175, -73.9065610514203 40.89961446321423, -73.90658861445861 40.89958301720275, -73.90660919400233 40.89955953932206, -73.90664473894194 40.899518986854524, -73.90667562186255 40.899483754269234, -73.906698478919 40.899457621785174, -73.90672034477643 40.899432498838785, -73.90674082936913 40.89940896142541, -73.90675998024268 40.899386958256514, -73.90677897301124 40.8993651350535, -73.90681612721443 40.8993278138679, -73.90683449547495 40.89931716425908, -73.9068567618972 40.89931185045949)), ((-73.90207646331065 40.90140128137839, -73.90210785095772 40.901294733933646, -73.90219974566538 40.901295866283164, -73.90247822997424 40.90129406676502, -73.90275650781834 40.901285740594766, -73.90306950316062 40.90126758801246, -73.9030543076851 40.90127143832915, -73.90303910280876 40.901274409763694, -73.90302403621892 40.90127777032143, -73.90300912454242 40.901281511911996, -73.90299439034008 40.90128562645006, -73.90297984191655 40.90129011574366, -73.90296549946834 40.90129496540204, -73.90295137842232 40.90130017633881, -73.90293749539873 40.90130574496602, -73.90292386227333 40.90131166589087, -73.90291050399375 40.90131792202522, -73.90289742530315 40.90132451607463, -73.90288464401257 40.90133144175079, -73.90285783005436 40.901348057431704, -73.9028302848707 40.901363958407266, -73.9028020215404 40.90137912847917, -73.90277309349634 40.90139354968233, -73.90274352923545 40.90140721303534, -73.90270195884547 40.90142278159202, -73.90265977748497 40.901437367190724, -73.90261701841352 40.90145095094864, -73.90258766337817 40.90145947897892, -73.9024826038031 40.90144743546255, -73.90216342124052 40.90141116317251, -73.90207646331065 40.90140128137839)), ((-73.90794904945578 40.89036788520463, -73.90795433633413 40.89036663144214, -73.90796104435982 40.890367385094606, -73.90796608685095 40.89037037782696, -73.90796878900004 40.89037534165717, -73.90796840598736 40.89037943856143, -73.90795146290924 40.89054791671588, -73.90793516494841 40.890714907775035, -73.90793395640434 40.89072731640276, -73.90793273955728 40.89073972232241, -73.90773592615226 40.890790650623735, -73.90751811283941 40.890850174910625, -73.90754470961417 40.89075206129996, -73.9075655979538 40.89074068238385, -73.90759033725479 40.890726446604745, -73.90762089501627 40.890707572573305, -73.90765058167769 40.89068792341922, -73.90767937112095 40.89066750812712, -73.9077072217582 40.89064636718626, -73.907734103918 40.890624505076005, -73.907759985497 40.890601968596684, -73.90778484037627 40.89057876763336, -73.90780862816537 40.89055493547242, -73.90783133576952 40.8905305027206, -73.90785293230266 40.8905054945674, -73.9078733821186 40.890479946104, -73.90789267570402 40.890453872631625, -73.90791078095418 40.89042732275148, -73.9079276764863 40.890400314456755, -73.9079450704301 40.89037069875052, -73.90794904945578 40.89036788520463)), ((-73.91136110173241 40.887994112507066, -73.91154648893985 40.88785520077332, -73.91155981853095 40.88786251212786, -73.91153299792722 40.88790766805717, -73.91152597555353 40.88791948425499, -73.91150617609937 40.887952824879406, -73.91147934830344 40.887997980789976, -73.91147414937296 40.88800822973628, -73.9114684760101 40.888018332439685, -73.91146235907365 40.88802828262041, -73.91145579265239 40.88803806406512, -73.91144878743347 40.88804767047855, -73.91144134580436 40.888057091056616, -73.91143348914585 40.88806630870631, -73.91142521865038 40.888075318926184, -73.91141654146011 40.8880841046123, -73.9114074706307 40.88809266307317, -73.9113980239858 40.88810097541217, -73.91138819796805 40.888109039825494, -73.91137801751688 40.888116840123466, -73.91136749093948 40.88812437541186, -73.91135663013033 40.888131624088075, -73.91134544338814 40.88813859156133, -73.91133394616114 40.888145260734106, -73.91111103554869 40.88825613451474, -73.91089020700251 40.88836938045004, -73.91081359040831 40.88840811871277, -73.91073542770404 40.88844502864279, -73.91065578539477 40.88848007066718, -73.91057473709708 40.8885132115219, -73.91049237421828 40.88854442426034, -73.91040877037238 40.88857367832035, -73.9106016854829 40.88847340660596, -73.91079013423641 40.888368359440975, -73.91097389933074 40.888258642036156, -73.91106683537839 40.88819708892203, -73.9110900248374 40.8881817228844, -73.91117017953728 40.88812863611488, -73.91136110173241 40.887994112507066)), ((-73.90753515583137 40.89101251278895, -73.90750988976416 40.891012099034945, -73.90748461567152 40.89101233632005, -73.90747405426514 40.8910127042578, -73.90749438332973 40.89093771190714, -73.90753722327196 40.89092609574882, -73.90765280815336 40.89089776625159, -73.90769760584739 40.89088793816324, -73.90775223525402 40.89087595224727, -73.90776948558151 40.890872165982664, -73.90792404552215 40.89082861942667, -73.90792304523777 40.8908388769602, -73.90792204020784 40.89084913358943, -73.90792053686235 40.890864484768336, -73.90791904237952 40.89088114706122, -73.90791936241506 40.890931941904874, -73.90791969723634 40.890984055971145, -73.90792003206562 40.891036164633995, -73.90792036807579 40.8910882777997, -73.9079204522497 40.89110203908642, -73.90792106774919 40.89114255872363, -73.90792031179052 40.89114690116214, -73.90791760288059 40.891150224494204, -73.90791119474872 40.89115307212015, -73.90790314834713 40.8911530233778, -73.90789635955362 40.891148843310404, -73.90788186567211 40.891135509061776, -73.90786902122674 40.891125578162, -73.90785572182882 40.891115994485006, -73.90784199594707 40.89110676525725, -73.90782785305193 40.89109790669487, -73.90781331686203 40.891089428722076, -73.90779839448565 40.89108133944866, -73.90778310845465 40.89107364879786, -73.90776748248506 40.8910663684948, -73.90775152962189 40.8910595039527, -73.9077352712091 40.8910530659943, -73.90771872503817 40.89104706003659, -73.90770191838361 40.89104149870807, -73.90768485836604 40.89103638111382, -73.90766758530641 40.89103172439523, -73.90765010158508 40.89102752315119, -73.90763243330109 40.8910237819049, -73.90761461009443 40.891020518689714, -73.90759664266182 40.89101772090737, -73.90757856538725 40.89101540839597, -73.90756038302935 40.89101357215439, -73.90753515583137 40.89101251278895)), ((-73.9080638858203 40.89224843892314, -73.9080734389367 40.89221277380539, -73.90807543116033 40.89241710361134, -73.90807652629282 40.89262143269507, -73.90807706709204 40.89267486071632, -73.90807760788957 40.89272829053807, -73.90807814868798 40.89278172035922, -73.9080786883031 40.892835148377905, -73.90807923028993 40.89288857819894, -73.90807925119505 40.892938678510745, -73.90807927684678 40.89298877882587, -73.90807930368271 40.89303888094243, -73.90807932221335 40.89308898215141, -73.90807935023854 40.893139082466966, -73.90807991524449 40.89318616568394, -73.90808047194464 40.893233248893864, -73.90808103696216 40.89328032490612, -73.9080816019705 40.89332740812183, -73.9080821586718 40.89337449223097, -73.90808272369051 40.89342156914244, -73.90808224318931 40.893441237155734, -73.90808148148419 40.893472894003686, -73.90808061049705 40.893508919918226, -73.90808032529593 40.89352122481998, -73.90807992395229 40.89353856964436, -73.90803875791026 40.89353823429404, -73.90803533342928 40.89353463953085, -73.90803315380462 40.89353101064043, -73.90803135788966 40.89352622223082, -73.9080306757885 40.89352176788808, -73.90803094542177 40.89351729089101, -73.90803572872093 40.89332097003619, -73.90803634650965 40.89312659810733, -73.90803316225227 40.892932233948265, -73.9080336618983 40.8926988907112, -73.90803760041429 40.8924655610095, -73.90803826543873 40.892429171128164, -73.90804041964287 40.89239282115377, -73.90804406180784 40.89235653269698, -73.90804918593811 40.89232034897613, -73.90805425909346 40.89229270361584, -73.90805579910133 40.89228430601604, -73.9080638858203 40.89224843892314)), ((-73.91725053143726 40.88153052652715, -73.91738909004079 40.88142703015902, -73.91739562795064 40.88143323829356, -73.91713639594555 40.88165363306062, -73.91688188630474 40.881877176039644, -73.91663216436824 40.882103808776996, -73.91638729429371 40.88233347191772, -73.91614734142982 40.8825661052072, -73.9162093668065 40.88248194842925, -73.91627657275913 40.88240011502908, -73.91634880717744 40.88232078858686, -73.91642591084187 40.88224414727433, -73.91670415463925 40.88199432012243, -73.91698861657827 40.88174856065999, -73.91711698169284 40.88163774983813, -73.91725053143726 40.88153052652715)), ((-73.90802027528727 40.890810528850125, -73.90808733208465 40.89079417271567, -73.90806980671448 40.89095825874273, -73.90806105642847 40.89103045540443, -73.90806231633644 40.8916835749125, -73.90806421964324 40.89187065046774, -73.90806614338625 40.8920429571725, -73.90800776195432 40.89203962929277, -73.90801239153139 40.89181973805731, -73.90801675648542 40.8917902038139, -73.90802111808188 40.89176395093628, -73.90802548421506 40.89173441669316, -73.90803635007636 40.891695041720766, -73.90804073208987 40.89165401999699, -73.90803299770435 40.89099269010263, -73.90802027528727 40.890810528850125)), ((-73.91806777317935 40.880799981620356, -73.91836673670346 40.88055670714918, -73.91853894917712 40.88058406226185, -73.9184863168716 40.88058974679621, -73.91843509606295 40.880600549772595, -73.91838614475276 40.88061628990114, -73.91834028782644 40.880636703025175, -73.91829829332097 40.88066144570588, -73.91826086885634 40.880690103324106, -73.91809384188278 40.88083340009124, -73.9179224577261 40.880973702096725, -73.91780976260495 40.88106881148681, -73.91769200195976 40.88116031610529, -73.91756937411435 40.881248062995695, -73.91744208925857 40.88133190101117, -73.91748402052632 40.881298484207605, -73.91754882406806 40.88124683896259, -73.91772246863592 40.881097002070774, -73.91806777317935 40.880799981620356)), ((-73.91547134492673 40.883000123104495, -73.91557891036581 40.88286301807287, -73.91559275279691 40.88287153509578, -73.91557757457798 40.88289184167823, -73.91549199506285 40.883013542872476, -73.91541401684992 40.88313815184057, -73.91534381354494 40.88326539587759, -73.91528439779276 40.88339796426113, -73.91523016392821 40.883531805202814, -73.91518115958587 40.883666803482456, -73.91513742647271 40.88380284117356, -73.91511740979091 40.88383492250003, -73.91509181250036 40.88386463053721, -73.9150611146466 40.88389141093497, -73.91514406923616 40.883649763324804, -73.91518363129413 40.883534540013784, -73.9152294371448 40.883420657595146, -73.91529717745172 40.883279640679916, -73.91537146557398 40.88314053665418, -73.91547134492673 40.883000123104495)), ((-73.90929799226663 40.88848258213231, -73.90933303880952 40.88846522038253, -73.90934090762714 40.88848822857582, -73.90935348527336 40.888509997795914, -73.90937045093887 40.888529979393425, -73.90939137696343 40.88854766695766, -73.90941573356132 40.88856261162875, -73.90944290422566 40.88857443741827, -73.90944717297639 40.888577448390116, -73.90945076473844 40.88858093068541, -73.90945359063527 40.888584798688235, -73.90945557841839 40.88858895508951, -73.90945668076327 40.888593298097305, -73.90945686934165 40.888597717830066, -73.9094561407421 40.88860210532637, -73.90945451053815 40.88860635163962, -73.9094568322769 40.88861273430404, -73.9093230668808 40.888643534875385, -73.90919117377764 40.88867867800717, -73.90921177765927 40.88860208717728, -73.90923762844703 40.888526418063684, -73.90926602650603 40.88850308538707, -73.90929799226663 40.88848258213231)), ((-73.91393385175405 40.88529089364719, -73.91429214832701 40.8850618405862, -73.91410539710532 40.88520626585286, -73.91391321740238 40.88534653012014, -73.91371577311006 40.88548251732111, -73.91363409843584 40.885536919453166, -73.91355049538826 40.885589607357595, -73.9136731994362 40.88548632786245, -73.9138010490269 40.885386708052835, -73.91393385175405 40.88529089364719)), ((-73.91555235814783 40.88341238291718, -73.91558995570176 40.883332694833314, -73.91559974413633 40.88333551961453, -73.91556727108535 40.88346185756233, -73.91552689641304 40.88358687590528, -73.9154787094242 40.883710291047265, -73.91542282315378 40.88383182120921, -73.91539643383429 40.8838267114175, -73.91555235814783 40.88341238291718)), ((-73.9045344817248 40.90067324937863, -73.90454238178795 40.900670220379695, -73.90455006950053 40.900670437449214, -73.90455848193518 40.90067424354578, -73.90460104736289 40.90075443170089, -73.90460477439564 40.90075903895485, -73.90460870212567 40.900763556326105, -73.90461282225456 40.900767977504394, -73.90461712768476 40.90077228627518, -73.90462161840601 40.900776489842244, -73.90462628613011 40.90078057469147, -73.9046311344085 40.90078454712916, -73.90463614427702 40.900788390030456, -73.90464132403281 40.90079211060603, -73.90464666063296 40.90079570074075, -73.90465214459587 40.90079915142193, -73.90465778540178 40.90080247256266, -73.90466355934713 40.90080564163135, -73.90466705601168 40.90080951750004, -73.90466043415815 40.90081582442395, -73.90461671774555 40.90082555856421, -73.9045402884742 40.900846924208636, -73.90453658472673 40.90084263034037, -73.90454000315383 40.9008365233837, -73.90454265397716 40.900832720130566, -73.90454512687204 40.90082885369644, -73.90454742896311 40.900824921385656, -73.9045495519209 40.90082093849963, -73.90455150643683 40.900816897843306, -73.90455326876358 40.90081280750149, -73.90455485312059 40.900808682794086, -73.90455625714985 40.90080451291342, -73.9045574737061 40.900800314962716, -73.9045585016116 40.90079608263764, -73.90455933609985 40.90079182944156, -73.90455998784942 40.90078755718422, -73.90456044617405 40.900783269458756, -73.90456071106219 40.9007789743695, -73.90456078369799 40.90077467371839, -73.90456067119192 40.900770374715215, -73.90456036641939 40.90076608005548, -73.90455986818465 40.90076179604166, -73.90455917886123 40.90075752267561, -73.90455830199151 40.90075327256716, -73.90455724112806 40.90074905112205, -73.90455598915419 40.90074485563292, -73.90455454961719 40.900740695107615, -73.90452880027853 40.90068418736108, -73.90453023036362 40.900677575389786, -73.9045344817248 40.90067324937863)), ((-73.90810613964496 40.88908875782218, -73.90808482123724 40.8890151405379, -73.90812337053785 40.8890480290565, -73.90816722360333 40.88907683897889, -73.9082156371207 40.889101080744226, -73.90813131903249 40.889161670392575, -73.90810613964496 40.88908875782218)), ((-73.90561470846653 40.900186062665206, -73.90574202880735 40.9001349534605, -73.90569538380208 40.900256092598, -73.90561470846653 40.900186062665206)), ((-73.90836224704147 40.890595072411706, -73.90836396070905 40.89059492519199, -73.90836220037642 40.89059535332615, -73.90836224704147 40.890595072411706)))",X110,69224,X110,X-08,X-08,X-08,X-08,Harlem River to the Saw Mill River Pkwy,208,11,50,"10463, 10471",X,54.1,False,Henry Hudson Parkway,No,100003937,PARK,,19350720000000.00000,,DPR/CDOT,True,Henry Hudson Parkway,Y,Henry Hudson Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/X110/,No,81,34,16,{435FD3AF-AA6D-432F-A13D-4857D5556272} +"MULTIPOLYGON (((-73.91605031503825 40.665830099721695, -73.91639975034737 40.665777486683744, -73.91641753415294 40.66584755527065, -73.91632489807074 40.66586150266214, -73.9162612284099 40.66587108915579, -73.91619539059178 40.665881002723154, -73.91613112474441 40.6658906787621, -73.91606809967344 40.66590016836302, -73.91605031503825 40.665830099721695)))",B565,12298,B565,B-16,B-16,B-16,B-16,Saratoga Ave. bet. Blake Ave. and Sutter Ave.,316,41,73,11212,B,0.06,False,,,100024471,PARK,20160222000000.00000,20160119000000.00000,615 SARATOGA AVENUE,DPR,False,Isabahlia Community Garden,,Isabahlia Community Garden,,Garden,,No,55,20,9,{9FBC6262-CAD5-4B72-A1EF-0C6EAC6B56E6} +"MULTIPOLYGON (((-73.9048767558845 40.84284985051043, -73.90488229369352 40.842849628152884, -73.90488735568823 40.842850462581836, -73.90489320636988 40.8428528456089, -73.90489786245026 40.84285643791372, -73.90490034048983 40.84285989244823, -73.90490161762173 40.84286399074578, -73.90490140211995 40.84286875327729, -73.9049013695664 40.84286912965663, -73.90487821572712 40.843137481881, -73.90486690459431 40.8432685843723, -73.90486519894705 40.843273920189084, -73.90486311030719 40.84327759067794, -73.90486037578732 40.8432810075954, -73.90485610160246 40.84328480235047, -73.90485162468667 40.843287743270594, -73.90484714067698 40.84328984042246, -73.90484171914187 40.84329164684192, -73.90483598554613 40.84329276682784, -73.90482812094103 40.84329318897387, -73.90472480061105 40.84326737028355, -73.90471849768853 40.8432636343337, -73.9047145089115 40.84326022627372, -73.90471131049996 40.84325636771944, -73.90470811175372 40.843250259732585, -73.90470681836422 40.843244269483385, -73.90470696434939 40.843239207931354, -73.90470832678096 40.8432342500405, -73.90470917044523 40.8432321859064, -73.90471434784841 40.843219522044215, -73.90486248663795 40.842857194872046, -73.90486972022839 40.84285189513142, -73.9048767558845 40.84284985051043)))",X130,6552,X130,X-04,X-04,X-04,X-04,E 173 St bet. Clay Av and Anthony Av,204,16,44,10457,X,0.09,False,Barry Plaza,Yes,100004996,PARK,20100106000000.00000,,,DPR,Unkwn,Barry Plaza,Y,Barry Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X130/,No,86,33,15,{5C239D74-6D61-4459-BFED-4042A41589C5} +"MULTIPOLYGON (((-73.88055188537409 40.66658896311584, -73.87990109206038 40.66571308687995, -73.88000801633501 40.66566652197507, -73.88014938958955 40.66560495423662, -73.88022701306548 40.66570931041688, -73.88023639850388 40.665705220135635, -73.88071222222821 40.666344908472524, -73.88076919680474 40.66632007545606, -73.88077220063676 40.666318765616, -73.88083614744785 40.66640473215697, -73.88087010295867 40.666450382095086, -73.88086709794166 40.66645169103591, -73.88055188537409 40.66658896311584)))",B149B,6101,B149B,B-05,B-05,B-05,B-05,Linwood St. bet. New Lots Ave. and Hegeman Ave.,305,42,75,11208,B,0.705,False,Linwood Playground,Yes,100004245,PARK,20100106000000.00000,19360414000000.00000,,DPR,False,Linwood Playground,Y,Linwood Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B149B/,No,60,19,8,{1C434B81-E933-4C07-9690-0580A0B57074} +"MULTIPOLYGON (((-73.88081129246667 40.719208598975236, -73.88421703858673 40.71763082082926, -73.88524733304537 40.71891483968877, -73.8851507345974 40.719168485644296, -73.88506198778909 40.71941765390644, -73.88498844407023 40.719648505587784, -73.88488680368789 40.71997766847614, -73.88482253947578 40.72019806898327, -73.884758473628 40.72044587938395, -73.88471016695345 40.72064909333621, -73.88460980861556 40.72113573757611, -73.87886683028356 40.721469753358306, -73.87788536728817 40.7214762826662, -73.87657159141567 40.72151891220527, -73.87551536980324 40.720202479475056, -73.88081129246667 40.719208598975236)), ((-73.87371023972132 40.72055689153772, -73.8752521382431 40.720264747628974, -73.87625125232657 40.72151259796081, -73.87541111366725 40.721654056297076, -73.87529353974651 40.721657631907824, -73.87438329326785 40.72194425641735, -73.87435870432527 40.72195026660916, -73.87433459705082 40.72195316785897, -73.87431509767255 40.72195349867417, -73.87429402545665 40.721951852949495, -73.87427468701593 40.721948436909706, -73.87426022347542 40.72194459574674, -73.87424588525238 40.721939577751655, -73.87423216216621 40.721933486117834, -73.87421666741365 40.72192478466872, -73.87420273736718 40.721914843123216, -73.8741911186116 40.72190443223419, -73.87418015597662 40.721891929274705, -73.874110348635 40.721693608297855, -73.87415393495577 40.72169228356935, -73.87407586834813 40.72159565268717, -73.87386869916895 40.72100708548964, -73.87371023972132 40.72055689153772)))",Q102,5493,Q102,Q-05,Q-05,Q-05,Q-05,"Juniper Blvd. bet. Lutheran Ave., 71 St. and Dry Harbor Rd.",405,30,104,11379,Q,55.639,False,Juniper Valley Park,No,100000000,PARK,20090423000000.00000,19370519000000.00000,71-01 JUNIPER BLVD SOUTH,DPR,True,Juniper Valley Park,Y,Juniper Valley Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q102/,No,30,15,6,{56863017-0FEA-417F-A169-327C9AB5056E} +"MULTIPOLYGON (((-74.08581316998756 40.64292595416275, -74.0863496607372 40.64273874087446, -74.086348008591 40.642853376342494, -74.0863450439646 40.64317704658831, -74.08634982495622 40.64328129334, -74.08635609131518 40.64335486280787, -74.08636683291225 40.64344346577381, -74.08637605463663 40.643503175839285, -74.08638267513109 40.643539770644416, -74.08633495635452 40.64356916068401, -74.08577436704299 40.644003322154944, -74.08576477436331 40.64401059379261, -74.08574203161452 40.643980923356125, -74.08573139149603 40.643967041690466, -74.0855698351397 40.643756270472444, -74.08511906104319 40.64316816562478, -74.08581316998756 40.64292595416275)))",R025,5042,R025,R-01,R-01,R-01,R-01,"Beechwood Ave., Crescent Ave. and Jersey St.",501,49,120,10301,R,2.21,False,Mahoney Playground,Yes,100004390,PARK,20100106000000.00000,19360812000000.00000,163 JERSEY STREET,DPR/NYCHA,True,Mahoney Playground,Y,Mahoney Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R025/,No,61,23,11,{4F8DAC26-74E9-461A-A41F-F193F964C5A8} +"MULTIPOLYGON (((-73.93799866513538 40.768812065961924, -73.9365236755528 40.76945555786719, -73.9362494969866 40.76932630668496, -73.93629623951766 40.76927116678345, -73.93590174622655 40.76907786919868, -73.93603393985401 40.768088694260584, -73.9360659384089 40.76784925364173, -73.93618726299408 40.76780780137037, -73.93631181958553 40.767765244038465, -73.93645242540605 40.76771720415227, -73.93819506064533 40.768726531775265, -73.93799866513538 40.768812065961924)), ((-73.93624705629858 40.76958194661146, -73.93623371607107 40.76958784923453, -73.93599571857466 40.76969315453911, -73.93560781682011 40.770087342767894, -73.93555528465924 40.77006538433476, -73.9350068111334 40.769836126822455, -73.93569052170697 40.76927676731231, -73.93624705629858 40.76958194661146)), ((-73.9365236755528 40.76945555786719, -73.93655580002245 40.769470701320344, -73.93642290082921 40.769616072006606, -73.93630102130066 40.76961153819169, -73.93624705629858 40.76958194661146, -73.9365236755528 40.76945555786719)))",Q465,4591,Q465,Q-01,Q-01,Q-01,Q-01,Vernon Blvd. bet. Broadway and 30 Dr.,401,26,114,11106,Q,6.28,False,Socrates Sculpture Park,Yes,100000262,PARK,20090423000000.00000,19931018000000.00000,31-30 VERNON BOULEVARD,DPR,False,Socrates Sculpture Park,Y,Socrates Sculpture Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q465/,Yes,37,12,12,{8484CBFB-8AB5-4137-ACE5-8E95D45F1303} +"MULTIPOLYGON (((-73.8207699164176 40.665158113359674, -73.82080671068184 40.665156795589525, -73.82083694571556 40.66515875448223, -73.82096627614402 40.665167135237944, -73.82122034585247 40.66518359921121, -73.82154940803426 40.665204921106444, -73.82207974413438 40.66523928325389, -73.8223600210829 40.66525744219194, -73.82214447047762 40.665950197128005, -73.82205072017231 40.66593854623131, -73.8219728162266 40.66592804813099, -73.82189162202663 40.66591631297552, -73.82181237579455 40.66590407018643, -73.82173648760903 40.66589161191957, -73.82165562614315 40.665877540269406, -73.82157385087554 40.66586246306771, -73.82148566451075 40.66584524613489, -73.82139825624184 40.66582718655727, -73.8213124722758 40.6658084882675, -73.82121593598994 40.66578628099576, -73.821121354315 40.66576330764002, -73.82104580979157 40.66574408206024, -73.82096339789109 40.6657222117286, -73.82087538964846 40.66569780396994, -73.82077091436578 40.66566739735479, -73.82027943279 40.665532424605445, -73.82022185442646 40.66551821721977, -73.82016805806765 40.66550532507039, -73.82009966572937 40.66548946087505, -73.82003118793308 40.66547416203048, -73.8199768504131 40.66546243601596, -73.8199158327253 40.665449701744755, -73.81992091231598 40.66518851720122, -73.82053394817879 40.665166564243805, -73.82063567115524 40.665162920908365, -73.8207699164176 40.665158113359674)))",Q096E,6158,Q096E,Q-10,Q-10,Q-10,Q-10,N. Conduit Ave. bet. Lefferts Blvd. and 122 St.,410,28,106,11420,Q,2.937,False,Lefferts Playground,Yes,100000156,PARK,20090423000000.00000,19430402000000.00000,,DPR,True,Lefferts Playground,Y,Lefferts Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q096E/,No,31,10,5,{C15F5C68-CAC7-46D0-AB7E-B08794C67751} +"MULTIPOLYGON (((-73.89092853766492 40.726234030510135, -73.89093181033948 40.72623271256251, -73.890981423231 40.72635283530511, -73.89090054009688 40.7263735154431, -73.89086679920543 40.72638214186847, -73.89082615689047 40.726392533043054, -73.89073383563468 40.726416137879625, -73.89050940905062 40.72647351678338, -73.8905092126961 40.72647055121844, -73.89092602153032 40.72636397617182, -73.89097683829718 40.72635098221765, -73.89092853766492 40.726234030510135)))",Q360Y1,5550,Q360Y1,Q-05,Q-05,Q-05,Q-05,Behind overpass at Mazeau St. and LIE Sr. Rd. N.,405,30,104,11378,Q,0.004,False,Strip,No,100008306,PARK,20090423000000.00000,19581125000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q360Y/,No,30,15,6,{E90A934B-E913-41CC-9A01-016EA785DBFD} +"MULTIPOLYGON (((-73.94009836206811 40.66232209782724, -73.94176801620439 40.66221714718456, -73.94179703690591 40.66251552187887, -73.94182592191878 40.66281248807908, -73.94016729290017 40.662915299367086, -73.94009836206811 40.66232209782724)))",B193,5099,B193,B-09,B-09,B-09,B-09,"Albany Ave., E. New York Ave., Lefferts Ave.",309,41,71,11203,B,2.112,False,Hamilton Metz Field,Yes,100003920,PARK,20100106000000.00000,19400725000000.00000,608 LEFFERTS AVENUE,DPR,True,Hamilton Metz Field,Y,Hamilton Metz Field,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B193/,No,43,20,9,{4B35D66C-264F-4721-BE25-B71B86B2326B} +"MULTIPOLYGON (((-73.89097464918332 40.829316190512706, -73.89097542409002 40.829227455512104, -73.8912683741404 40.829229856359525, -73.8912782322628 40.82916131452803, -73.89097602258363 40.82915883831513, -73.89097664711463 40.82908735306358, -73.89097719890061 40.829024087466216, -73.89129840292459 40.82902106694701, -73.89128076125527 40.82914372393016, -73.8912787814781 40.82915748974058, -73.89132114171565 40.829157835836625, -73.89131526689116 40.82957334775988, -73.89124453722863 40.829572770499276, -73.89124989085875 40.82951050538233, -73.8912489798778 40.829504283900185, -73.89098857324952 40.829502055149355, -73.89097302773516 40.829501922488745, -73.89097382734167 40.82941041578894, -73.89097464918332 40.829316190512706)))",X361,6412,X361,X-03,X-03,X-03,X-03,Hoe Ave. bet. Home St. and Freeman St.,203,17,42,10459,X,0.336,False,,No,100008647,PARK,,19950914000000.00000,1209 HOE AVENUE,DPR,False,Synergi Urban Garden UCFP,,Synergi Urban Garden UCFP,Greenthumb,Garden,,No,85,32,15,{F2559A6E-AD66-495F-99E5-45327104D1B5} +"MULTIPOLYGON (((-73.9638091050991 40.808084800697685, -73.96381893493273 40.808082075273916, -73.96382914472143 40.80808240175648, -73.96383254245357 40.80808251088223, -73.96384331379767 40.80808538775029, -73.96385238401818 40.808091277150524, -73.96385880704601 40.80809860291509, -73.96385899968621 40.80809959262285, -73.96386092373172 40.80810946448594, -73.96386163402029 40.80811311082528, -73.9638590869714 40.808117817830755, -73.9638584214406 40.808119047702455, -73.9638542538656 40.80812674835592, -73.96337483109812 40.80878299887206, -73.96329354542874 40.80889426466373, -73.96301903068043 40.809270020458996, -73.96300725046252 40.80927806983248, -73.96299334990874 40.80928200414917, -73.96298203628821 40.809282159905166, -73.96298062712266 40.80928217926361, -73.96297971113665 40.80928192322808, -73.96296758764997 40.80927854156683, -73.96296649865735 40.80927823774923, -73.9629661799783 40.8092780062189, -73.96295682574993 40.809271193648506, -73.9629554313824 40.809270178339304, -73.9629493141304 40.80926069052855, -73.96294885069594 40.80924798345358, -73.9629491010256 40.809247514374626, -73.96295412306513 40.809238061660906, -73.96295474474032 40.80923689031284, -73.96306448901785 40.80908783728718, -73.963064505623 40.80908781387959, -73.96326576920144 40.80881445548776, -73.96326598387479 40.80881416379483, -73.9633094640763 40.80875510857534, -73.96379832875684 40.80809111610928, -73.9638091050991 40.808084800697685)), ((-73.96150041933433 40.81124344326393, -73.96152276220882 40.81124005854819, -73.96153973539343 40.81124413626183, -73.96154135349998 40.811245640632656, -73.96155523889828 40.81125854309117, -73.96155581340979 40.81125907637732, -73.96155670037122 40.811268581425516, -73.9615540131852 40.81127944413278, -73.9614668391364 40.81140325506398, -73.9614636910333 40.811407726783365, -73.96146095092806 40.81141169706188, -73.96145326083915 40.81142283904935, -73.96137515462735 40.81153601266038, -73.96135237877954 40.81158476246944, -73.9613501015493 40.81158963609942, -73.96134739155049 40.811594802246034, -73.96131163828078 40.81166294801468, -73.96128144023564 40.811708253616175, -73.9612731828303 40.81172064168921, -73.9612500533015 40.81175167586947, -73.96122861042993 40.81178044676127, -73.96122119493947 40.81178597962574, -73.9612146341901 40.811789118354284, -73.96121293311477 40.8117896454736, -73.9612086786495 40.811790961470116, -73.96120126907832 40.81179243489237, -73.96119956352494 40.81179251086066, -73.96119106420197 40.811792892512436, -73.96118360750106 40.81179185533051, -73.96118212967127 40.811791649519485, -73.96117622824836 40.81179011578606, -73.96113912290816 40.81177413206061, -73.96111253125206 40.811762677770595, -73.96110889122275 40.811761108776544, -73.96110746038302 40.811759591855974, -73.96110530346353 40.81175730476506, -73.96110489719081 40.81175687328967, -73.96110143274218 40.8117509576529, -73.96109971671899 40.81174461486964, -73.96109990583751 40.811739410958054, -73.96110101437101 40.8117347251428, -73.9611028397148 40.811730445693726, -73.96112811581118 40.81169923306766, -73.96116688802282 40.811651354971474, -73.96121696956081 40.8115828043419, -73.96124827032483 40.81153461123127, -73.9612848328316 40.811487269048, -73.96129387559706 40.81147556111299, -73.96129672551677 40.81147231577595, -73.96132773423402 40.81143701226753, -73.9613350078644 40.81142873102966, -73.96133921419543 40.81142454062389, -73.96137432701669 40.81138956265799, -73.96139572745037 40.81136824424135, -73.96140068918045 40.81136330127022, -73.96141228473164 40.81135174906595, -73.96141332366058 40.811350547249354, -73.96142041707672 40.81134234248799, -73.96143961471284 40.811320140838205, -73.96147896225962 40.811268555478016, -73.9614864011522 40.8112572630215, -73.9614887985371 40.81125362311044, -73.96149226343236 40.81125058778976, -73.96149877700773 40.8112448817107, -73.96150041933433 40.81124344326393)), ((-73.96432415569829 40.80737697609856, -73.96433521668497 40.80737437528022, -73.96433902671139 40.807374660115755, -73.9643511026586 40.80737556254773, -73.96436247047002 40.80737982902079, -73.96437041225896 40.807385982778584, -73.96437114052803 40.80738707260642, -73.96437554921715 40.80739367642147, -73.96437788115401 40.80740326474611, -73.96437472873397 40.80741430658111, -73.96433295539842 40.807471810283744, -73.96398000210647 40.80795766967079, -73.96392120811379 40.80793250037431, -73.9639105976876 40.807927957642356, -73.96431298677744 40.80738415951764, -73.96431438742663 40.807382265303076, -73.96431577205504 40.807381516517154, -73.96432415569829 40.80737697609856)), ((-73.96287633096955 40.8093539469269, -73.96288913910736 40.80934950979485, -73.96290445079342 40.80935057190713, -73.96291614193869 40.80935353650543, -73.96292421065064 40.80935967419269, -73.96292921655518 40.80936644484513, -73.96293199579351 40.80937702118605, -73.96292809013367 40.809388653462484, -73.96255885934588 40.809902067357896, -73.96254878529302 40.80990856748109, -73.9625366981703 40.809912007057655, -73.96252461158564 40.80991238404006, -73.9625059826424 40.809908935379966, -73.96249390748038 40.80989745550807, -73.96248988426177 40.809888270922386, -73.96249039593546 40.80987411796459, -73.962497450715 40.80986455697276, -73.96286686179126 40.809361982622065, -73.96287633096955 40.8093539469269)), ((-73.96479580748364 40.806744733607125, -73.96479965465166 40.806744191781405, -73.96481225359956 40.80674644056983, -73.96481403205338 40.80674720293417, -73.96482000723167 40.80674976487428, -73.96482308190714 40.80675108324148, -73.9648271032167 40.80675516012361, -73.96483038422602 40.80675848756516, -73.96483134839298 40.80675946489993, -73.96483168105806 40.80676013137015, -73.96483508584701 40.80676694737959, -73.96483518284323 40.806769537242225, -73.96483547385111 40.806777270810045, -73.9648315309708 40.80678624757497, -73.96446677470169 40.80728857141238, -73.96446147199985 40.80729164587968, -73.96445593812716 40.807294853549195, -73.96445132381497 40.80729602097308, -73.96444412439723 40.80729784226169, -73.9644321119793 40.80729783855622, -73.96443146498147 40.8072976888739, -73.9644215099847 40.80729538322823, -73.96441852621153 40.80729469162524, -73.96441772891285 40.80729414927923, -73.96440930336831 40.80728842851488, -73.96440750144825 40.80728720598257, -73.96440041960895 40.80727747841546, -73.96439924007163 40.80726924929871, -73.96439983498472 40.80726042189862, -73.964555137999 40.80704961719578, -73.96477464122593 40.80675166638127, -73.96477891612264 40.806749070650426, -73.96477956458888 40.806748676430274, -73.96477971275961 40.806748617042636, -73.96478586955837 40.80674613354824, -73.96479580748364 40.806744733607125)), ((-73.96570734106541 40.80549026115528, -73.96572311491762 40.805489724646876, -73.96573746438015 40.80549361546379, -73.96574683743768 40.805500206295804, -73.96575294479283 40.805508302690804, -73.96575492737652 40.805519967436055, -73.96575065870968 40.80553141150311, -73.9653834799098 40.80603102621771, -73.96537246555356 40.80603790001589, -73.96536120544182 40.806041059183414, -73.9653501957497 40.80604124227796, -73.96533698578548 40.80603826215966, -73.96532524322238 40.80603026400383, -73.96531913313527 40.80602059531584, -73.96531840360407 40.806010554539526, -73.9653223243119 40.80600070246579, -73.96568630435661 40.805502024410245, -73.96569682503868 40.80549392755774, -73.96570734106541 40.80549026115528)), ((-73.96196939040198 40.81060833022495, -73.96197959092466 40.810606867579, -73.96199254781261 40.81060812894602, -73.96199833018494 40.810610444230754, -73.96200302125337 40.81061232241418, -73.96201073842701 40.81061777206799, -73.96201514514702 40.810623637561115, -73.96201763054513 40.81062974825695, -73.96201872412067 40.81063243660292, -73.9620176262803 40.81063722148608, -73.96201549594556 40.810646508517635, -73.96201540802562 40.810646887598196, -73.96186890014273 40.81084787084411, -73.96164709592387 40.811152141168215, -73.96164326137537 40.81115497736059, -73.9616371882274 40.81115946972367, -73.96163161196102 40.811161409340954, -73.9616313701334 40.811161493006765, -73.9616249960719 40.81116370971151, -73.96161178946711 40.811163705314904, -73.96159807738037 40.811160614742974, -73.9615871614684 40.81115289204075, -73.96158132421937 40.811144980124475, -73.96158037331129 40.811139484971015, -73.96158032605798 40.81113921750746, -73.96157955351887 40.81113475348321, -73.96158033033453 40.81113180911476, -73.96158184595315 40.81112606984781, -73.96194755784926 40.81062749731888, -73.96195808574183 40.810613145959124, -73.96195815924116 40.81061311446596, -73.96195833469103 40.81061303978255, -73.96196939040198 40.81060833022495)), ((-73.96662190126025 40.804238271108346, -73.96662851764488 40.80423799206832, -73.96663751901276 40.80423883483891, -73.9666474945385 40.804241982266646, -73.96665810017191 40.80424819517308, -73.96666489353605 40.804256576277325, -73.96666728193044 40.80426272107006, -73.96666819658363 40.80427026210992, -73.96666451622494 40.80428115527799, -73.96629790784016 40.80477674073366, -73.96629362313347 40.8047803540821, -73.96628458315674 40.8047854095389, -73.96626698280946 40.804786851491244, -73.96625901061863 40.80478483024043, -73.96625128726299 40.804782872096816, -73.96623987771294 40.80477274625192, -73.9662360770923 40.80476587793687, -73.966235604724 40.80475792639635, -73.9662379842904 40.80475105989135, -73.96660388999894 40.80424413173995, -73.96661050430029 40.80424091977633, -73.96662190126025 40.804238271108346)), ((-73.96615768846054 40.804862194787745, -73.96616780916904 40.804859632238056, -73.96618113745646 40.804860256592356, -73.966193216391 40.804863761273495, -73.96620230619438 40.80487030516014, -73.96620834108806 40.80487873469505, -73.96621025296119 40.80488974294946, -73.96620690356714 40.80489977712328, -73.96583768787313 40.80540769803334, -73.96582845041245 40.80541168990667, -73.96581949729523 40.805413524269326, -73.96580827121083 40.805412978840224, -73.96579690419055 40.80540995249494, -73.96578909118234 40.80540476780801, -73.96578256042362 40.80539731604602, -73.96578000479295 40.805389215303784, -73.96578071876918 40.80538122629337, -73.96614725212116 40.80486787116777, -73.96615768846054 40.804862194787745)), ((-73.9652454273539 40.806117377593665, -73.96525710426666 40.80611493445929, -73.96527105703281 40.806116159739226, -73.9652823263128 40.806120448605185, -73.96528930127637 40.80612605720829, -73.96529493187055 40.806134827055956, -73.96529586542282 40.80614451219677, -73.9652922375632 40.80615409600905, -73.96492040377744 40.80666288837931, -73.96491131881996 40.80666715937933, -73.96490071804398 40.80666929213421, -73.96489033526977 40.8066692889726, -73.96487887196233 40.806666490334194, -73.96486957414568 40.80666089990944, -73.96486308736175 40.806653171657295, -73.96486028043968 40.806645281536284, -73.96486071792177 40.80663821455914, -73.9652354958441 40.806122574977145, -73.9652454273539 40.806117377593665)), ((-73.96242428652583 40.809980173278454, -73.96243526372075 40.809977840964386, -73.96244689836443 40.809978177938916, -73.96245786889722 40.80998135126409, -73.96246599024106 40.80998669025836, -73.96247103478454 40.809992196643684, -73.96247498069545 40.81000186927452, -73.96247365894635 40.81001287923096, -73.96216032981933 40.8104449067883, -73.9621497444281 40.810452118101466, -73.96213861714732 40.81045561918499, -73.9621236932394 40.81045582049696, -73.96211094269378 40.810452312470645, -73.96210009185417 40.8104448870017, -73.96209467114907 40.81043601891883, -73.96209332034122 40.81042509183507, -73.96209712519322 40.810416022372266, -73.96241396384517 40.809986171731495, -73.96242428652583 40.809980173278454)))",M094A,6355,M094A,M-09,M-09,M-09,M-09,"Broadway, W 110 StTo W 122 St",109,7,26,"10025, 10027",M,1.3,False,Broadway Malls 110th-122nd,No,100005116,PARK,20100106000000.00000,19080409000000.00000,,DPR,False,Broadway Malls,Y,Broadway Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M094A/,No,69,"30, 31",10,{215FD272-09B0-4409-BEA3-7D9ED4F51D69} +"MULTIPOLYGON (((-73.97219014196395 40.65133354946292, -73.9721288999062 40.651329953280545, -73.97206909619545 40.65131927934793, -73.97201213183378 40.65130177745144, -73.97195934390513 40.65127785765672, -73.97191196892425 40.6512480812938, -73.97187111683064 40.65121314564135, -73.97183774498173 40.65117387041146, -73.97181263688046 40.651131175230994, -73.97179637971945 40.65108606072418, -73.97178935493365 40.65103958509632, -73.9717917275721 40.65099283801571, -73.9718034415824 40.65094691359674, -73.9718242221858 40.650902890589244, -73.97185358298795 40.65086179816067, -73.9718908354456 40.650824601491074, -73.9719351054332 40.650792172060406, -73.97198535689786 40.650765269644985, -73.97204041078412 40.65074452521327, -73.972098978146 40.65073042382451, -73.97215968497771 40.65072329743186, -73.97222110768753 40.65072331228376, -73.97228180856608 40.6507304680326, -73.97234036416053 40.650744597741465, -73.97239540074207 40.65076536879287, -73.97244562976934 40.65079229550428, -73.97248987271313 40.65082474633724, -73.97252709415412 40.65086196101448, -73.9725564206934 40.65090306763353, -73.9725771645925 40.65094710068159, -73.97258884031511 40.65099303075616, -73.97259117398194 40.65103977897474, -73.9725841104525 40.65108625119608, -73.9725678156844 40.65113135783188, -73.97254267199467 40.65117404086156, -73.97250926740999 40.65121329994503, -73.97246838619986 40.65124821583451, -73.97242098640491 40.65127796928107, -73.9723681785456 40.65130186354289, -73.97231119960456 40.65131933788809, -73.9722513870073 40.65132998289772, -73.97219014196395 40.65133354946292)))",B070,5747,B070,B-14,B-14,B-14,B-14,"Park Cir., Parkside Ave., Ocean Pkwy.","307, 314",39,72,11215,B,4.32,False,Machate Circle,Yes,100004350,PARK,20100106000000.00000,18660430000000.00000,,DPR,True,Machate Circle,Y,Machate Circle,Type 1,Triangle/Plaza,http://www.nycgovparks.org/parks/B070/,No,44,21,9,{8461BA59-4FCC-43DE-913E-D8EBC6118380} +"MULTIPOLYGON (((-73.99144035341237 40.75921570262193, -73.99136365843488 40.759183426408775, -73.99128734602913 40.75915131046324, -73.99120165363965 40.7591152468385, -73.99105018617632 40.7590515028449, -73.99097249448263 40.75901880575737, -73.99089353932739 40.75898557812009, -73.99107229190138 40.75874061517943, -73.99168269269379 40.75899750014864, -73.99154426358028 40.75918721562332, -73.9914806741701 40.75916045063791, -73.99144035341237 40.75921570262193)))",M161,4845,M161,M-04,M-04,M-04,M-04,W. 43 St. bet. 8 Ave. and 9 Ave.,104,3,14,10036,M,0.436,False,McCaffrey Playground,Yes,100004217,PLGD,20100106000000.00000,19380520000000.00000,341 WEST 43 STREET,DPR,True,McCaffrey Playground,Y,McCaffrey Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M161/,No,75,27,10,{83DDB79F-F603-424C-A7CF-264D2E08AC6F} +"MULTIPOLYGON (((-73.97196443282706 40.78931792033096, -73.97220086762854 40.789417202874844, -73.97228301482342 40.78945169652795, -73.9720889375361 40.789717462184846, -73.97177039850622 40.78958366115412, -73.97196443282706 40.78931792033096)))",M301,6609,M301,M-07,M-07,M-07,M-07,W. 90 St. bet. Amsterdam Ave. and Columbus Ave.,107,6,24,10024,M,0.231,False,St. Gregory's Playground,Yes,100003993,PLGD,20100106000000.00000,19971224000000.00000,136 WEST 90 STREET,DPR,False,St. Gregory's Playground,Y,St. Gregory's Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M301/,No,69,30,10,{4F6CEE2D-6703-4328-A789-BEC5DF159AB1} +"MULTIPOLYGON (((-73.95183615887888 40.71589194580915, -73.95183869408008 40.71590320865218, -73.95183743455478 40.7159117881879, -73.95182991076764 40.71592036510265, -73.95182145087638 40.7159239663055, -73.95178621056913 40.71592618481814, -73.95172600938754 40.715932862088934, -73.95157721374645 40.71594769674279, -73.95148128222144 40.7159565930177, -73.95146170585038 40.715955096222096, -73.95144898594002 40.7159513663477, -73.95143724212278 40.71594316945184, -73.95142942032837 40.71593348386489, -73.9514264905789 40.71592454596411, -73.95142992648235 40.71590964937048, -73.95147791498945 40.715873921146326, -73.95156997532065 40.715806183898806, -73.95166301313512 40.71573993733227, -73.95169729284518 40.71571090485749, -73.95172863627366 40.71568187204177, -73.95174038849802 40.71567517447011, -73.95175605184339 40.71567220034569, -73.95178052080963 40.715675191286365, -73.9517981296967 40.71568711511425, -73.95180301612132 40.715700523958546, -73.95180593783341 40.71572063357829, -73.95181373779526 40.7157638334252, -73.95183615887888 40.71589194580915)))",B226,5804,B226,B-01,B-01,B-01,B-01,"Union Ave., Meeker Ave., Jackson St.",301,33,94,11211,B,0.102,False,Mt. Carmel Triangle,Yes,100004703,PARK,20100106000000.00000,19380421000000.00000,,DPR/CDOT,False,Mt. Carmel Triangle,Y,Mt. Carmel Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B226/,No,50,18,12,{F520D054-04E0-430A-B139-3AC0A52E02F8} +"MULTIPOLYGON (((-73.75990571560354 40.752934999798235, -73.75990883051004 40.75293418682756, -73.75990606176131 40.752935550730705, -73.75997475608908 40.753045005774894, -73.75998166617386 40.753058344104, -73.75964482775329 40.75313008138934, -73.76010255559545 40.75418767917668, -73.76006156477744 40.75419762456956, -73.75969431686364 40.75428672169841, -73.75951909408828 40.7538901564547, -73.75918256737953 40.7531285161685, -73.75918317672266 40.75312832743503, -73.7591813219609 40.75312416860908, -73.75990571560354 40.752934999798235)))",Q400,5353,Q400,Q-07A,Q-07A,Q-11,Q-11,Springfield Blvd. bet. 53 Ave. and 56 Ave.,411,23,111,11364,Q,1.166,False,Oakland Gardens,Yes,100000418,PARK,20110712000000.00000,19590514000000.00000,53-11 SPRINGFIELD BLVD,DPR/DOE,False,Oakland Gardens,Y,Oakland Gardens,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q400/,No,26,16,6,{80EE6F41-8ECE-40CB-AB06-819401523580} +"MULTIPOLYGON (((-73.80766036651043 40.68333654128412, -73.80786919507476 40.682455089397706, -73.80798066191113 40.68242256601264, -73.80874259823557 40.68397643736506, -73.80806148670491 40.6841637929855, -73.80766036651043 40.68333654128412)))",Q119,4902,Q119,Q-10,Q-10,Q-10,Q-10,"134 St., 135 St., bet. 111 Ave. and Lincoln St., Linden Blvd",410,28,106,11420,Q,2.217,False,Frederick B. Judge Playground,Yes,100000117,PARK,20090423000000.00000,19360908000000.00000,111-01 134 STREET,DPR,False,Frederick B. Judge Playground,Y,Frederick B. Judge Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q119/,No,32,10,5,{3ED3B08E-7E9D-4A1B-81EF-91D0647BBB1E} +"MULTIPOLYGON (((-73.90382941160448 40.6003654863426, -73.90743590517783 40.59901926195645, -73.90924842426661 40.59931604843075, -73.90949458621895 40.59935635364261, -73.90958444033664 40.59937106597101, -73.9097991563106 40.59940622091017, -73.90988999920506 40.599421094969166, -73.9100486380302 40.59944706785365, -73.91012142322627 40.599458984685654, -73.91017513246014 40.599467777958495, -73.91024592978107 40.599479369870124, -73.91047636555957 40.59951709780649, -73.9091961826095 40.60034451403265, -73.90840430621269 40.60085630826486, -73.90988333188928 40.602185791617046, -73.90988437138037 40.602188576847865, -73.90916325719351 40.60268627457832, -73.90873733136635 40.60274592995696, -73.90860912533233 40.60276388625724, -73.9084590042045 40.60278491195231, -73.89980512880888 40.603996599205, -73.89985870554739 40.603851854487374, -73.8999122791869 40.60372242042425, -73.89996223806797 40.60361448676609, -73.9000046769718 40.60352279917354, -73.9000479414434 40.603435183545045, -73.9000704243144 40.60339177449505, -73.90008746951972 40.603358864408584, -73.90009267965002 40.60334880469772, -73.90011302129872 40.60330953077834, -73.90016023170585 40.60322428690972, -73.90027082495422 40.60303769109142, -73.90039487459735 40.60284649435007, -73.90052620966532 40.60266093474568, -73.9006165489646 40.60255456302313, -73.90085114750447 40.60230117127384, -73.90118106925092 40.6019611046893, -73.90153618731082 40.601652272656715, -73.9018607358273 40.60142092231052, -73.90220725237975 40.601187332129136, -73.90254083196521 40.60098766252706, -73.90292689167835 40.60077382154291, -73.90323560241774 40.600618789437235, -73.90356754295743 40.60047335665729, -73.90382941160448 40.6003654863426)))",B394,6438,B394,B-18,B-18,B-18,B-18,"Flatbush Ave., Belt Pkwy., Mill Basin",318,46,63,11234,B,64.665,False,Four Sparrow Marsh,No,100004883,PARK,20100106000000.00000,19940303000000.00000,,DPR,False,Four Sparrow Marsh,N,Four Sparrow Marsh,Large Park,Nature Area,http://www.nycgovparks.org/parks/B394/,Yes,59,19,8,{32CEAF16-0F33-45C7-9842-C6A55377B2F4} +"MULTIPOLYGON (((-73.95485764775498 40.70068373177407, -73.95551272358999 40.70025997708824, -73.95598399730686 40.70067915667433, -73.95532923253644 40.701103192399025, -73.95485764775498 40.70068373177407)))",B022,5987,B022,B-01,B-01,B-01,B-01,"Lynch St., Middleton St. bet. Lee Ave. and Bedford Ave.",301,33,90,11206,B,1.101,False,Middleton Playground,Yes,100003769,PARK,20100106000000.00000,19370506000000.00000,,DPR,False,Middleton Playground,Y,Middleton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B022/,No,50,26,7,{B5123652-99BA-4677-AEB6-58EB08A5F3CD} +"MULTIPOLYGON (((-73.94094711111056 40.76132336146748, -73.94109217344344 40.76108880923299, -73.94115837589183 40.76111165375068, -73.94122096208851 40.76110165047568, -73.94141024276605 40.76116815371414, -73.94159536016022 40.76085608234428, -73.9419525723461 40.76098852992261, -73.94160057053038 40.7615550261186, -73.94094711111056 40.76132336146748)))",Q429,5379,Q429,Q-01,Q-01,Q-01,Q-01,36 Ave bet. 9 St. and 10 St.,401,26,114,11106,Q,0.786,False,Spirit Playground,Yes,100000256,PARK,20090423000000.00000,19691114000000.00000,36-36 10 STREET,DPR/DOE,False,Spirit Playground,Y,Spirit Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q429/,No,37,12,12,{2D3DB42D-EC98-41DC-A61D-8F8351AC38EE} +"MULTIPOLYGON (((-73.96181739460218 40.681442757844295, -73.9619536326556 40.681054780370275, -73.96201255084377 40.68106709906112, -73.96187631429079 40.68145507660471, -73.96181739460218 40.681442757844295)))",B582,21498,B582,B-02,,,B-02,Lefferts Pl. bet. Grand Ave. and St. James Pl.,302,35,,11238,B,0.058,False,,,100024481,PARK,,20020220000000.00000,48 LEFFERTS PLACE,DPR,,Garden,,Brooklyn's Finest Garden,,Garden,,No,57,25,8,{B687C2C5-C8E0-4125-9E3C-18E61DE3771D} +"MULTIPOLYGON (((-73.91386363150042 40.62094894688595, -73.9133263649592 40.62046837996268, -73.91302473590937 40.6206641730278, -73.91295292178035 40.62065979617268, -73.91250910132678 40.620262802330366, -73.91216398924733 40.620486816584524, -73.9116146587761 40.61999428699807, -73.91328715322598 40.61989113361963, -73.9142146897437 40.62072106514365, -73.91386363150042 40.62094894688595)))",B330,5182,B330,B-18,B-18,B-18,B-18,Veterans Ave. between E. 66 St. and E 68 St.,318,46,63,11234,B,2.656,False,Hickman Playground (IS 78),Yes,100004387,PARK,20100106000000.00000,19610209000000.00000,1420 EAST 67 STREET,DPR/DOE,False,Hickman Playground,Y,Hickman Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B330/,No,59,19,8,{64838ABB-A393-40CE-8061-CF2C890B46BE} +"MULTIPOLYGON (((-73.90345266423574 40.8390185320065, -73.90367955070315 40.83861565160256, -73.90350720788123 40.83856024783523, -73.90357945956565 40.838431951842544, -73.90408794326582 40.8385954147418, -73.90378778645716 40.83912840214864, -73.90345266423574 40.8390185320065)))",X299,4731,X299,X-03,X-03,X-03,X-03,Claremont Pkwy bet. Park Av and Washington Av,203,16,42,10457,X,0.549,False,Little Claremont Playgound,Yes,100005126,PARK,20100106000000.00000,19990712000000.00000,438 CLAREMONT PARKWAY,DPR,False,Little Claremont Playground,Y,Little Claremont Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X299/,No,79,33,15,{613BAD36-6429-453E-BE92-1E8A6FC281AF} +"MULTIPOLYGON (((-73.89784646903031 40.63841294286446, -73.89750476386874 40.638105825563166, -73.89778243836045 40.63792885232718, -73.8981169912377 40.63822953456532, -73.89784646903031 40.63841294286446)))",B097,6044,B097,B-18,B-18,B-18,B-18,E. 95 St. bet. Ave. L and Ave. K,318,46,69,11236,B,0.328,False,Sledge Playground,Yes,100004714,PARK,20100106000000.00000,19240403000000.00000,,DPR,False,Sledge Playground,Y,Sledge Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B097/,No,59,19,8,{C239CCBB-9C2E-40CF-B992-63D64F39F531} +"MULTIPOLYGON (((-73.97094993164195 40.68581476662656, -73.97093653059926 40.68574786137466, -73.97087738057724 40.68575474525599, -73.97086542441548 40.685695050774626, -73.97085569920564 40.68564649351035, -73.97121869281987 40.6856042499198, -73.97124037476696 40.685712501597614, -73.97125377610742 40.68577940681445, -73.97117253193093 40.68578886169588, -73.97109928379395 40.68579738649669, -73.97102377961077 40.6858061718318, -73.97094993164195 40.68581476662656)))",B421,5231,B421,B-02,B-02,B-02,B-02,Carlton Ave. between Greene Ave. and Fulton St.,302,35,88,11238,B,0.14,False,Brooklyn Bears Carlton Av Garden,No,100004982,PARK,20100106000000.00000,19990712000000.00000,401 CARLTON AVENUE,DPR,False,Brooklyn Bears Carlton Ave Garden,N,Brooklyn Bears Carlton Av Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B421/,No,57,25,8,{FE1C43F0-54E6-470C-BA9D-6CDEC3963B3C} +"MULTIPOLYGON (((-73.76604641836396 40.743646467501506, -73.76605232371391 40.7436462507675, -73.7660926715713 40.74365040122195, -73.76612259632057 40.74365837387361, -73.76617544126857 40.743685128162646, -73.76619686315252 40.743695973268615, -73.76624564439601 40.743723146117425, -73.76629029295664 40.743749806273854, -73.76631070921762 40.74376314192947, -73.76635042780038 40.74378908695986, -73.76640705663053 40.7438260786111, -73.76643965208133 40.74384737063634, -73.76647061265558 40.74387130593604, -73.76648638578884 40.74388350020453, -73.76652316302426 40.743911932723044, -73.7665556456639 40.74394009987977, -73.76656419304639 40.74394751219172, -73.76659773809077 40.74397660181081, -73.7666283048474 40.74400652466043, -73.7666442956183 40.74402217910704, -73.7666764069805 40.744053614327825, -73.76669136556609 40.74407055170433, -73.7667022849587 40.74408291621229, -73.7667223028679 40.74410558477236, -73.76676106506439 40.74414947578512, -73.76679753253573 40.74419612220101, -73.76683154252315 40.74424331294083, -73.76685618879827 40.744281548055774, -73.76688182076865 40.74432131152453, -73.76689940515332 40.74435292709588, -73.76692521288372 40.7443993240659, -73.76694538836685 40.744441982422806, -73.76694957484527 40.744450834801434, -73.76694676129014 40.744451610750865, -73.76652955909222 40.744566692033025, -73.76626421256113 40.74463988489029, -73.76596106733987 40.743999101295344, -73.76594525989121 40.74396568816921, -73.76593024341672 40.74393394709422, -73.76591657499763 40.74390505436842, -73.76589644612544 40.7438625057834, -73.76588598621935 40.74384039591282, -73.7658735993437 40.74381138421762, -73.76587057995602 40.74379728780008, -73.76586951778265 40.74378182568548, -73.76587552894472 40.74374745913548, -73.76588077906507 40.743734914897566, -73.76588679394813 40.74372408318294, -73.76589011355115 40.743719121817044, -73.76589132997977 40.74371730525945, -73.76589609148846 40.743711053691975, -73.7658983512028 40.743708510742344, -73.76590049799191 40.74370609453503, -73.76590462277555 40.7437014517848, -73.76590653075472 40.7436999446071, -73.76590861495066 40.74369782003764, -73.76591275915679 40.743694051721846, -73.76591833584023 40.74368898057783, -73.76592144913342 40.74368679776553, -73.7659260709994 40.74368355811891, -73.76593165308115 40.74367964594154, -73.76593462750195 40.74367756100225, -73.76593575238421 40.74367686269157, -73.7659367603964 40.74367606598776, -73.76593924450815 40.743674693255834, -73.76594422695817 40.74367194241768, -73.76595025216747 40.74366861467043, -73.76595623269955 40.743665871263076, -73.76596219069422 40.74366313951621, -73.7659688690886 40.743660593837454, -73.76597467726499 40.74365837957879, -73.7659833934756 40.74365578851188, -73.76598895222077 40.74365413656441, -73.76599240599242 40.74365310979633, -73.76599943344294 40.743651638232905, -73.76600988160865 40.74364944960874, -73.76601585638494 40.74364868100504, -73.76602358308544 40.74364768632999, -73.76602771591614 40.743647154419854, -73.76603260052966 40.743646975235656, -73.76604641836396 40.743646467501506)))",Q021C,5436,Q021C,Q-11,Q-11,Q-11,Q-11,"210 St., Oceania St. bet. the Long Island Exwy. and 64 Ave.",411,23,111,11364,Q,1.297,False,Seven Gables Playground,Yes,100000296,PARK,20090423000000.00000,19300131000000.00000,61-15 FRANCIS LEWIS BLVD,DPR/DOE,False,Seven Gables Playground,Y,Seven Gables Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q021C/,No,25,16,6,{CB7EE2A2-9F32-4C61-A4DA-4CDD3C9DCD0A} +"MULTIPOLYGON (((-73.99236371147707 40.72757234194917, -73.99243820269905 40.72760894984634, -73.99218068829846 40.72791265354565, -73.99210575635546 40.72787758352219, -73.99236371147707 40.72757234194917)))",M318,4985,M318,M-02,M-02,M-02,M-02,E. 4 St. bet. Bowery and Lafayette St.,102,2,9,10003,M,0.072,False,Merchant's House Museum,No,100003686,PARK,20100106000000.00000,19990723000000.00000,29 EAST 4 STREET,DPR,False,Merchant's House Museum,N,Merchant's House Museum,Building,Historic House Park,http://www.nycgovparks.org/parks/M318/,No,66,27,12,{B6A291D8-C90B-4C6E-BAD3-770C4703865C} +"MULTIPOLYGON (((-74.00529330188084 40.72034735287185, -74.00530155156851 40.720245069900606, -74.00532925651977 40.71999092857279, -74.00533117368293 40.719973344230624, -74.00612618262157 40.720313378561194, -74.00612880672661 40.720314616622375, -74.00613111129577 40.720316180684975, -74.00613302767721 40.720318022125205, -74.00613449787059 40.7203200878161, -74.0061354792615 40.72032231562478, -74.00613594107067 40.720324638915116, -74.00613587145577 40.720326987448104, -74.00613526922686 40.72032929188446, -74.00613415568189 40.720331482883886, -74.00613256277147 40.720333495607875, -74.00613053783297 40.72033526881928, -74.00612814122411 40.72033675028527, -74.00612544632261 40.72033789587703, -74.00612253124159 40.720338671370904, -74.00611948474717 40.72033905334897, -74.00611639679035 40.7203390300998, -74.00559960100561 40.7202743160518, -74.00557806441758 40.72027161917023, -74.00553190469722 40.720268855031584, -74.00548563287406 40.720270138670834, -74.005451222479 40.720281299421266, -74.00541985303505 40.72029680317653, -74.00539246189405 40.72031618613268, -74.00536986804397 40.720338869226545, -74.00536820764898 40.72034091526198, -74.00534838022246 40.72036880316848, -74.00533236756502 40.72039807587877, -74.00532033417406 40.720428431716, -74.00531936261889 40.72043048132088, -74.00531795786155 40.720432380560666, -74.00531615895595 40.72043407630348, -74.00531401560858 40.72043552172043, -74.0053115869952 40.720436676285885, -74.00530893939393 40.72043750847893, -74.00530614855187 40.72043799488281, -74.00530328903363 40.720438122886954, -74.00530044132236 40.72043788888557, -74.00529768471844 40.72043729827809, -74.0052950949723 40.72043636817073, -74.00529274310078 40.72043512377452, -74.00529069538716 40.72043360020629, -74.00528900746296 40.720431839787445, -74.00528772667533 40.72042989114334, -74.00528688971932 40.72042780740238, -74.00528651672033 40.720425646196325, -74.00528662070263 40.72042346875916, -74.00529330188084 40.72034735287185)))",M006,6298,M006,M-01,M-01,M-01,M-01,"Walker St., Beach St. bet. St. John's La. and Ave. of the Americas",101,1,1,10013,M,0.32,False,Tribeca Park,Yes,100004603,PARK,20100106000000.00000,18100219000000.00000,,DPR/CDOT,False,Tribeca Park,N,Tribeca Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M006/,No,66,26,10,{79C7D463-53EE-4BEB-9672-997208244F38} +"MULTIPOLYGON (((-73.91514561771001 40.901152971861656, -73.91711376490727 40.895907291274135, -73.91721036771813 40.89564979227625, -73.91779409307509 40.894093818753944, -73.91783184214012 40.894003713393836, -73.91789951812599 40.89384217222651, -73.91801329497036 40.893570589382996, -73.9180792372018 40.89341318279412, -73.91813508064176 40.89327988579206, -73.91818373891323 40.893163737007306, -73.91824803045402 40.89301440379038, -73.91831237231047 40.892879897957016, -73.91835873274059 40.8927829809258, -73.91840463975727 40.89268701356564, -73.9184509999173 40.89259009739439, -73.9184811812998 40.89252700190672, -73.91852470144227 40.89243602419816, -73.91884452760739 40.891767413189946, -73.9191691427904 40.89108877496396, -73.91924565382368 40.89092252056663, -73.91929184861614 40.89080829568117, -73.91941623443412 40.89050073532573, -73.91941662242621 40.8904997801815, -73.91945780838145 40.89039794510621, -73.91946169428928 40.890388338736685, -73.91962563944595 40.889982928349056, -73.91967690434555 40.889862895086594, -73.91969266539907 40.88982599244689, -73.9198210926557 40.88952528170612, -73.91984722990924 40.88946408214217, -73.91990488639149 40.88932907992959, -73.92005959971426 40.88896681372007, -73.92016410252036 40.88874100369625, -73.92021740055836 40.88862583599788, -73.92059606697028 40.88780759147835, -73.92064725774965 40.887698070861305, -73.92086773114235 40.88722637837044, -73.92134982613916 40.886220526313075, -73.92282105523282 40.88658956433993, -73.92236988706956 40.887600644471284, -73.92247909445462 40.88762785311125, -73.92251055280333 40.88763569045272, -73.92472508970624 40.88818740230701, -73.92188802078638 40.89502986276085, -73.91892404522692 40.89435219078637, -73.91892185997754 40.89435169128344, -73.91891793435923 40.89435079344425, -73.91813686530095 40.89612726230837, -73.91788497262957 40.89607310566086, -73.91591714821463 40.90177864041068, -73.91505296158827 40.90159250725606, -73.91514561771001 40.901152971861656)), ((-73.9128816248605 40.90299150491999, -73.91294761089611 40.90284969343048, -73.91307706562355 40.902543714829505, -73.91323405831241 40.90211846160199, -73.91369964942152 40.900857262640876, -73.91487912586447 40.89766205113721, -73.91563564380107 40.89548174285658, -73.91605133580639 40.89443284696609, -73.91625522279826 40.89391837603864, -73.91742254416874 40.89403225485598, -73.91730721804286 40.89431801592149, -73.9172068465411 40.89456672362836, -73.91703976655486 40.895012734458845, -73.91692160198927 40.895332741183914, -73.91655477351739 40.89632615598206, -73.9165876441017 40.89633573477898, -73.91633571555583 40.89699587774295, -73.91571648092183 40.89861843858634, -73.91504887318945 40.90036765722975, -73.91461719794668 40.90149864716129, -73.91461018210819 40.90149729574932, -73.91418898588584 40.9026623577892, -73.91415386413588 40.902765292959735, -73.91408309253833 40.902972714402885, -73.91402808136708 40.90296199641974, -73.9139994897279 40.90305715622352, -73.91389652480835 40.903399854784766, -73.91380199930767 40.90371446085277, -73.91262897267636 40.90347418561415, -73.91276728318358 40.90322389008477, -73.9128816248605 40.90299150491999)), ((-73.91789368848504 40.89058212793438, -73.91794301587845 40.89048981552113, -73.91793985426266 40.890491175708156, -73.9179802647275 40.890414767616726, -73.91806260281373 40.89022459402138, -73.918114149445 40.890075766829085, -73.9181994781659 40.889835428292336, -73.91864028756265 40.88859379984335, -73.91868635006614 40.88846405518447, -73.91874610537626 40.888287732607246, -73.91878961754165 40.88811329859174, -73.91881593588872 40.88795660104009, -73.91882925411855 40.8877902213166, -73.91883269300237 40.88774726965435, -73.91883229538935 40.887607423003104, -73.91881957503239 40.88743971204797, -73.91873860629795 40.886700617148705, -73.91882439185329 40.88671625952406, -73.91879146070697 40.8863839848821, -73.91878707710299 40.88633975261768, -73.91878232869855 40.88627168242527, -73.91878100510873 40.88618088546911, -73.91878538063487 40.88608700115239, -73.9188061941288 40.885932053818436, -73.91882260710634 40.88585451728657, -73.91885127425192 40.885751880207714, -73.9188822081225 40.88566337244255, -73.91891110265337 40.88559304315326, -73.92072406924468 40.88606355769869, -73.92034500007813 40.886895800672875, -73.92029722034556 40.887000699531576, -73.92027490083855 40.88701998603622, -73.92024928642304 40.88704212029837, -73.92022246758502 40.88706529378367, -73.92019022721804 40.887096521063356, -73.9201220424256 40.887162562369284, -73.92006391335079 40.88721886463829, -73.92002544449586 40.88725612441587, -73.91986736470018 40.88755576225677, -73.91999559271547 40.8875868756496, -73.91923574149943 40.88924014995969, -73.91923314853041 40.88923940344371, -73.91919265416361 40.88933389458336, -73.91917305328504 40.88937654226972, -73.91917437751611 40.88937654319699, -73.91913735530615 40.88946293237516, -73.91904815160161 40.889678810811404, -73.91897111617045 40.88986524012747, -73.91892074818321 40.89000770390264, -73.91885443990296 40.89019525636594, -73.91879936688103 40.89035102955012, -73.91886383219503 40.89034859044131, -73.91846242433839 40.891374556631256, -73.91840196366246 40.891529086719316, -73.9180806348349 40.8923503484208, -73.91783875596543 40.89296853696162, -73.9177321659902 40.89324095143085, -73.91768606918265 40.89335876414607, -73.91720172465776 40.89331218505451, -73.91684303508926 40.89327768807749, -73.91653130929257 40.8932477074685, -73.9165752201343 40.893141037133596, -73.91658791569743 40.89311019749016, -73.91661657411105 40.89304057918067, -73.9166831558584 40.89287883619686, -73.91673103099998 40.892762537968345, -73.91675420435732 40.8927062437443, -73.91677923568146 40.89264543582192, -73.91681910478533 40.89254858225971, -73.91684953144264 40.89247466624333, -73.91688349666397 40.8923921567342, -73.9169386034559 40.892263687255266, -73.91696628235684 40.89220246156646, -73.91700031540145 40.892127179362376, -73.91703143901098 40.89205833352559, -73.9170781421573 40.89195502199286, -73.91711238534846 40.89188420450941, -73.91715154056722 40.891809070912466, -73.91718446166865 40.89174589757713, -73.91722562455374 40.891666909515486, -73.91726379820278 40.89159366079003, -73.91730559369616 40.89151345749599, -73.91734278804742 40.891448922938146, -73.91739008923727 40.8913668505442, -73.9174454016294 40.891272963187866, -73.91749683099853 40.89118979060543, -73.91755508630968 40.89109557842081, -73.91763300613397 40.89097737509819, -73.9177110830749 40.890861432951525, -73.9177935012226 40.89073904546506, -73.91780843467731 40.890715102285284, -73.91780968963886 40.89071356605018, -73.91781069252808 40.89071148304088, -73.9178318930176 40.890677493101165, -73.9178836605945 40.8905944970737, -73.91789368848504 40.89058212793438)), ((-73.92168514664506 40.88552089010351, -73.92250892384436 40.88380202848497, -73.92425806906375 40.88426316441155, -73.92342397613514 40.885979309328164, -73.92168514664506 40.88552089010351)))",X142,6290,X142,X-08,X-08,X-08,X-08,"Hudson River, W 254 St, Palisade Av, W 2",208,11,50,"10463, 10471",X,144.29,False,Riverdale Park,No,100004035,PARK,20100106000000.00000,19420409000000.00000,,DPR,Part,Riverdale Park,Y,Riverdale Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/X142/,Yes,81,34,16,{F883B0AA-D83C-481C-AA13-261DA55C619B} +"MULTIPOLYGON (((-73.95326774429552 40.809682754223715, -73.95320635534475 40.809606440041605, -73.95319123374409 40.809404324348186, -73.9534046419461 40.80949453623237, -73.95326774429552 40.809682754223715)))",M034,5682,M034,M-10,M-10,M-10,M-10,"St Nicholas Av, Manhattan Av, W 123 St",110,9,28,10027,M,0.067,False,Hancock Park,Yes,100004965,PARK,20100106000000.00000,18700816000000.00000,,DPR,False,Hancock Park,Y,Hancock Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M034/,No,70,30,13,{CF1B2ED5-D25D-4E56-AE82-FB6231B62E83} +"MULTIPOLYGON (((-73.87595052953806 40.68784498533887, -73.87593577929863 40.68778552288144, -73.87593371036655 40.68777718368874, -73.87648409356885 40.68769723104718, -73.87650091327988 40.68776503261751, -73.87595052953806 40.68784498533887)))",B569,13891,B569,B-05,,,B-05,Chestnut St. bet. Jamaica Ave. and Etna St.,305,37,,11208,B,0.086,False,,,100036999,PARK,,20160209000000.00000,9 CHESTNUT STREET,DPR,False,Cypress Hills Change Garden,,Chestnut Street Garden,,Garden,,No,54,18,7,{C224E089-37AE-4152-BA7B-CDDE453EA967} +"MULTIPOLYGON (((-73.90981104495481 40.84280052114409, -73.91023727629043 40.84282234299562, -73.91026394086052 40.842825535280134, -73.91028947192133 40.84283219087451, -73.91031309663369 40.84284210836858, -73.91033409920723 40.84285498734278, -73.91035184104666 40.842870436488155, -73.91036578563082 40.842887989834246, -73.91037551036193 40.842907113061564, -73.91038071957749 40.84292722692428, -73.91038125757353 40.842947722568645, -73.91037710502495 40.84296797863928, -73.91036839081701 40.84298738109944, -73.91035537660672 40.843005341229, -73.91033845798393 40.8430213145355, -73.91031814784763 40.84303481785119, -73.91029506097438 40.84304544192799, -73.9102698985877 40.84305286313215, -73.9102434222501 40.843056858732695, -73.91021643489194 40.84305730598596, -73.90979090516595 40.84303551972746, -73.90976421317878 40.84303238854581, -73.90973864051759 40.84302578773295, -73.90971496477441 40.843015916907234, -73.90969390411638 40.843003075595874, -73.9096760971409 40.842987653313344, -73.9096620839181 40.842970118740645, -73.90965229059788 40.842951003503906, -73.90964701401614 40.84293088685395, -73.90964641460047 40.842910381252466, -73.90965050929027 40.84289010715255, -73.90965917511188 40.84287068039488, -73.90967214802384 40.84285268969427, -73.90968903598052 40.84283668224215, -73.9097093248893 40.842823143000366, -73.90973239996899 40.84281248391195, -73.90975756000331 40.84280502590266, -73.90978404342839 40.84280099800136, -73.90981104495481 40.84280052114409)), ((-73.90881914886477 40.84277587554823, -73.90882635267806 40.842775627303446, -73.90883362471355 40.842775781632675, -73.9093245444383 40.842801174393124, -73.9093316578995 40.842801968817014, -73.90933870575654 40.842803047744745, -73.90934566904221 40.84280440755949, -73.90935252760491 40.84280604374296, -73.90935926366456 40.8428079517787, -73.90936585706946 40.8428101271485, -73.90937229004068 40.842812564435405, -73.90937854717453 40.84281525552289, -73.90938460595149 40.84281819318935, -73.90939045334049 40.8428213684197, -73.90939607512242 40.842824773998785, -73.90940144759432 40.84282840090313, -73.90940656365763 40.842832237420794, -73.90941140554077 40.842836272731894, -73.90941596139959 40.842840496921795, -73.90942021702222 40.842844897372345, -73.90942416056691 40.842849462367994, -73.9094277825661 40.84285417839387, -73.90943107236373 40.84285903373528, -73.90943401930886 40.84286401307545, -73.90943661867554 40.842869103803814, -73.90943885862573 40.84287429150321, -73.9094407356217 40.84287956176297, -73.90944224494001 40.84288490017152, -73.9094433818583 40.84289029141677, -73.90944414165432 40.84289572018666, -73.90944452553337 40.84290117207426, -73.90944452877316 40.84290663176746, -73.9094441525802 40.84291208395883, -73.9094434005312 40.84291751424327, -73.90944227027673 40.84292290641007, -73.90944076776628 40.84292824515551, -73.90943889775998 40.84293351787637, -73.90943666265379 40.84293870656465, -73.90943407076381 40.84294379952048, -73.90943113041124 40.84294878144196, -73.90942784754304 40.84295363882636, -73.9094242316638 40.842958358173675, -73.90942029346358 40.842962925984935, -73.90941604363134 40.84296732966151, -73.90941149404182 40.842971556605896, -73.90940665656733 40.842975596021354, -73.90940154545412 40.84297943531216, -73.90939617494237 40.842983066385095, -73.90939056164986 40.8429864766462, -73.90938471626069 40.84298965709891, -73.90937866131661 40.84299259875597, -73.90937240868506 40.842995294422735, -73.90936597853505 40.8429977360106, -73.90935938747707 40.842999916328594, -73.90935265330502 40.84300182998775, -73.90934579618529 40.843003470700424, -73.90933883627973 40.84300483578097, -73.90933178901061 40.84300591983853, -73.90932467691229 40.843006719288844, -73.90931752014163 40.84300723504824, -73.90931033649241 40.843007461727694, -73.90880974488218 40.8429789671681, -73.90880457071039 40.842978611885066, -73.90879763546216 40.84297755372508, -73.90879066868266 40.84297614254641, -73.9087838101928 40.84297445049908, -73.90877708132888 40.84297248300292, -73.90877050105814 40.8429702436749, -73.90876408596905 40.84296774153315, -73.90875785858354 40.84296498199843, -73.90875183311728 40.842961974987446, -73.90874602853495 40.842958725918216, -73.90874045905096 40.84295524560795, -73.90873514599407 40.84295154487941, -73.90873010002261 40.842947633646546, -73.90872533653655 40.842943522727516, -73.90872086856196 40.84293922473951, -73.90871670912735 40.84293475049881, -73.90871287244197 40.842930114424625, -73.90870936678883 40.84292532913043, -73.90870620282112 40.84292040813204, -73.90870339119094 40.84291536584585, -73.90870093662134 40.84291021668352, -73.90869885095016 40.842904975062304, -73.90869713534208 40.84289965629157, -73.90869579689041 40.842894275685296, -73.90869483913272 40.84288884765422, -73.90869426441688 40.84288338930956, -73.90869407628033 40.84287791506199, -73.9086942735149 40.84287244111951, -73.9086948560995 40.84286698279045, -73.90869582164032 40.84286155628174, -73.90869716774475 40.842856176899886, -73.90869889083562 40.84285085905003, -73.90870098733208 40.84284561983856, -73.90870344891522 40.842840472766355, -73.90870626844948 40.842835433136074, -73.9087094388016 40.84283051444952, -73.90871295283608 40.84282573200927, -73.90871679630521 40.842821099311564, -73.9087209620759 40.84281662985806, -73.90872543708872 40.84281233534479, -73.90873020591148 40.84280822836644, -73.90873525904092 40.842804321522344, -73.90874057867575 40.84280062560434, -73.90874615175915 40.8427971505074, -73.90875196167572 40.842793907024365, -73.9087579918125 40.842790904146895, -73.90876422437216 40.84278814996541, -73.90877064155603 40.84278565347066, -73.90877722675489 40.842783420952976, -73.90878395861658 40.842781458698894, -73.90879081816048 40.84277977299679, -73.90879778877989 40.842778368336056, -73.9088048467548 40.84277724829982, -73.9088119742941 40.84277641647597, -73.90881914886477 40.84277587554823)), ((-73.90796557015979 40.84273712478481, -73.9079728437971 40.842736973902305, -73.90798011701335 40.84273712738581, -73.90844918274436 40.84275554922477, -73.90845639113248 40.84275628434542, -73.90846353864949 40.84275730847567, -73.90847060395308 40.842758620698085, -73.90847756808128 40.84276021379372, -73.90848440969293 40.84276208594459, -73.90849111219626 40.84276423083425, -73.90849765544345 40.84276664124262, -73.90850402046611 40.84276931445334, -73.90851019067986 40.84277223874683, -73.90851614712007 40.84277540870504, -73.90852187438803 40.8427788126095, -73.90852735589313 40.84278244324307, -73.90853257505088 40.84278628888626, -73.9085375188304 40.84279034052381, -73.90854217302109 40.8427945846371, -73.90854652459456 40.84279901040989, -73.90855056052472 40.84280360522502, -73.90855427015711 40.842808356467145, -73.90855764165269 40.842813250619514, -73.90856066673093 40.84281827326769, -73.90856333829699 40.84282340999824, -73.90856564688215 40.84282864819669, -73.908567585394 40.842833971648616, -73.90856914910923 40.84283936594238, -73.90857033449153 40.842844815766874, -73.9085711380059 40.842850304910314, -73.90857155611347 40.84285581986257, -73.90857159002468 40.842861342614704, -73.90857123738763 40.842866858757034, -73.90857049940794 40.84287235388256, -73.90856937847917 40.8428778117843, -73.90856787936663 40.84288321625716, -73.90856600327577 40.842888552894145, -73.90856375852779 40.84289380639348, -73.90856114988549 40.84289896235105, -73.90855818329865 40.84290400546309, -73.90855486945757 40.842908922230734, -73.90855121786805 40.84291369825356, -73.9085472368477 40.842918320931204, -73.90854293827265 40.842922776765704, -73.9085383340177 40.842927053159464, -73.9085334395139 40.8429311384183, -73.90852826545031 40.8429350199438, -73.90852282844125 40.842938687843564, -73.90851714272938 40.84294213222356, -73.90851122374443 40.84294534228995, -73.90850508928524 40.842948309051955, -73.9084987559624 40.84295102531875, -73.9084922415747 40.842953482099496, -73.90848556510547 40.842955671304814, -73.90847874552938 40.84295759114866, -73.90847180064532 40.84295923264026, -73.90846475180194 40.842960592194544, -73.90845761679194 40.84296166532316, -73.90845025456585 40.84296241139197, -73.90844282176417 40.84296274317736, -73.9084346640948 40.8429624809618, -73.90795634787177 40.84293642540677, -73.90795046153679 40.84293573003116, -73.90794472493766 40.84293479614404, -73.90793766201718 40.84293346948346, -73.90793070503696 40.84293184844571, -73.90792387888814 40.842929940254635, -73.90791719898309 40.84292774672352, -73.90791069139614 40.842925276878184, -73.90790437153096 40.84292253883533, -73.9078982607213 40.842919539816, -73.90789237674107 40.84291628883937, -73.9078867385475 40.84291279672653, -73.90788136272754 40.84290907339616, -73.90787626705128 40.842905130568944, -73.9078714645472 40.84290097906118, -73.90786697061006 40.84289663329315, -73.90786279945154 40.842892105883124, -73.90785896409618 40.84288741034896, -73.90785547638167 40.842882561107984, -73.90785234577392 40.84287757257576, -73.9078495829211 40.84287246187018, -73.90784719610467 40.84286724250523, -73.90784519123089 40.84286193069457, -73.90784357776327 40.84285654265464, -73.90784235567804 40.84285109549485, -73.90784153325424 40.84284560453017, -73.90784111046548 40.84284008867099, -73.90784108847498 40.842834564127074, -73.90784146844726 40.84282904620779, -73.90784224917148 40.84282355292194, -73.90784342825354 40.84281810047662, -73.90784500211365 40.84281270507772, -73.90784696598375 40.84280738473132, -73.90784931154224 40.84280215473922, -73.90785203520933 40.84279703130724, -73.90785512866343 40.84279202973725, -73.90785857884124 40.84278716442659, -73.90786237741995 40.842782451577506, -73.90786651370647 40.84277790648981, -73.90787097226973 40.842773540857536, -73.90787574360503 40.84276936818043, -73.90788080990606 40.84276540285218, -73.90788615692992 40.842761654766726, -73.90789176805623 40.842758138318715, -73.90789762667313 40.8427548615993, -73.90790371379488 40.84275183449863, -73.90791001280724 40.84274906690891, -73.90791650235164 40.84274656961893, -73.90792316344995 40.842744347115975, -73.90792997593185 40.84274240838888, -73.90793691963461 40.842740757023456, -73.90794397202019 40.84273939930522, -73.90795111292597 40.842738338819956, -73.90795831981642 40.842737580052116, -73.90796557015979 40.84273712478481)), ((-73.91125961104039 40.842872591835224, -73.91156751049222 40.84288638432729, -73.91159421569976 40.842889401639695, -73.91161982658522 40.8428958904093, -73.91164356673923 40.842905655535674, -73.91166471680373 40.84291839930628, -73.91168263460962 40.842933736720106, -73.91169677769705 40.842951201808475, -73.91170671752253 40.84297026475467, -73.91171215129347 40.84299034901234, -73.9117129161816 40.84301084392308, -73.91170898691921 40.84303112902785, -73.91170048408033 40.843050589381555, -73.91168766456977 40.84306863445635, -73.91167091804144 40.8430847170493, -73.91165075146237 40.843098349479774, -73.91162777723467 40.84310911888871, -73.91160269065192 40.84311669802786, -73.91157625328127 40.84312085785384, -73.91154926687034 40.84312147201096, -73.9112418536546 40.84310770055708, -73.91121516021019 40.843104700281735, -73.91118955755769 40.84309823123967, -73.91116581855734 40.84308848853339, -73.91114466257417 40.84307576807997, -73.91112673177828 40.843060454886135, -73.91111256862803 40.84304301312547, -73.91110260166302 40.84302396991814, -73.91109713247646 40.84300390361425, -73.91109632744671 40.84298342037475, -73.91110021064003 40.84296314155852, -73.91110866502724 40.842943681211324, -73.91112143369284 40.84292562895724, -73.91113813053255 40.842909531096886, -73.9111582497604 40.842895875306255, -73.91118118134405 40.84288507534083, -73.91120623236523 40.84287745844502, -73.91123264126301 40.84287325455765, -73.91125961104039 40.842872591835224)), ((-73.91066355481419 40.84284720067211, -73.91078699157434 40.842852114747586, -73.91081236684938 40.84285473139338, -73.91083682844567 40.84286048464583, -73.91085971018087 40.842869217304894, -73.91088038629705 40.8428806902572, -73.9108982939781 40.84289459149863, -73.9109129451996 40.84291054154575, -73.91092393856964 40.842928106052156, -73.91093097591762 40.842946804825694, -73.91093386345842 40.84296612803834, -73.91093252481947 40.84298554884281, -73.91092699509429 40.8430045368756, -73.9109174243773 40.84302257536888, -73.91090407537963 40.84303917105428, -73.91088731154758 40.843053872163736, -73.91086758993633 40.84306627742896, -73.91084544815098 40.84307604777806, -73.91082149128859 40.843082917131404, -73.91079637177153 40.84308669868988, -73.91077077511322 40.84308728852582, -73.91063922665971 40.843081971032134, -73.91061257053167 40.8430785834341, -73.91058709415283 40.84307173164646, -73.91056357154775 40.84306162518463, -73.91054271613618 40.84304856987021, -73.91052516413971 40.843032962415165, -73.91051144732583 40.84301527779353, -73.9105019823581 40.84299605302388, -73.91049705658781 40.84297587184982, -73.91049682096191 40.84295534852553, -73.91050128175348 40.84293510529663, -73.9105103029545 40.842915757094, -73.91052361104377 40.842897893527535, -73.91054080213209 40.842882056379345, -73.91056135383856 40.842868726106204, -73.91058463953675 40.84285830924344, -73.910609955651 40.842851120416825, -73.9106365287732 40.84284738054722, -73.91066355481419 40.84284720067211)), ((-73.91224110225112 40.84328627382005, -73.91224914721089 40.843285725236726, -73.91225741174092 40.84328682021995, -73.91228074729459 40.84329605541661, -73.91290549058476 40.843554263473564, -73.91292890827721 40.843565205935484, -73.9129341497311 40.84356856512929, -73.91293804216716 40.84357162704244, -73.91294095693523 40.84357514206604, -73.91294309411455 40.843579351683424, -73.91294470340989 40.843584632489176, -73.9129449788177 40.84358983304479, -73.91294427684424 40.84359436109492, -73.91294238110518 40.84359865501633, -73.91293875748035 40.84360311422476, -73.91293408877866 40.84360698192081, -73.91292991748823 40.843609505555875, -73.91292409479385 40.84361174158739, -73.9129194470529 40.84361318337019, -73.91291415254815 40.84361411498542, -73.91291024378967 40.843614462326144, -73.91290646254642 40.84361432259621, -73.91290332116098 40.84361362774503, -73.91289951999464 40.84361240290569, -73.91289480529035 40.843610649687314, -73.9128751650889 40.84360270331095, -73.91224817388235 40.84334671039622, -73.91222398186359 40.84333682528577, -73.91222007402102 40.84333469084465, -73.91221736385543 40.843332516792614, -73.91221422237233 40.843328317203174, -73.9122123947962 40.84332405918108, -73.91221093128514 40.84331797793737, -73.91221079262917 40.843312527146665, -73.91221158834306 40.84330708697254, -73.91221453796223 40.84330122700681, -73.91221840900673 40.84329709939063, -73.9122229224038 40.843293223500694, -73.91222595692349 40.84329131676437, -73.91223303144103 40.843288440569324, -73.91224110225112 40.84328627382005)))",X081,5690,X081,X-04,X-04,X-04,X-04,Mount Eden Pkwy bet. Weeks Av and Walton Av,204,"14,15,16",44,"10452, 10457",X,1.682,False,Mount Eden Malls,Yes,100004919,PARK,20100106000000.00000,19260617000000.00000,,DPR,False,Mount Eden Malls,Y,Mount Eden Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/X081/,No,"86, 77","29, 33",15,{3C634FDA-9214-4D37-A1E0-97551C485A97} +"MULTIPOLYGON (((-73.97395740186487 40.59520494392324, -73.97400421264638 40.59486966919184, -73.97401548582793 40.594788934472554, -73.9740361473393 40.59464094813058, -73.97406127012393 40.59446101224117, -73.97407047133757 40.594461774358955, -73.97407123306321 40.59445631556162, -73.97449412304653 40.59448162213948, -73.97452327238732 40.59434333351842, -73.97457971738393 40.59407554223997, -73.97528983939853 40.59416892646039, -73.97523825652972 40.594553290006495, -73.9751706134416 40.59455082058574, -73.9751028333238 40.59454834659283, -73.97503085239394 40.59454571945892, -73.9749584686362 40.594543075982706, -73.97488434471248 40.59454055455169, -73.97481592794585 40.594537876732254, -73.97471845981059 40.59453430997203, -73.97470845074268 40.594685835135806, -73.97470387868057 40.59475506001643, -73.97469933393634 40.59482387246301, -73.9746916654872 40.59493995175991, -73.9746772827055 40.59493937765997, -73.97451210922432 40.594929945989634, -73.97436209585253 40.59492120186244, -73.9743199827417 40.595234972404164, -73.97395740186487 40.59520494392324)))",B434,5239,B434,B-15,B-15,B-15,B-15,Van Sicklen St. to McDonald Ave. between Village Rd. and Gravesend Neck Rd.,315,47,61,11223,B,1.649,False,Old Gravesend Cemetery,No,100004855,PARK,20100106000000.00000,20030304000000.00000,40 GRAVESEND NECK ROAD,DPR,False,Old Gravesend Cemetery,N,Old Gravesend Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/B434/,No,45,22,11,{6F91CDDE-3E0B-4194-B7A9-09BC186D3E36} +"MULTIPOLYGON (((-74.17491195173616 40.53728220667992, -74.17408852648363 40.53591829567102, -74.17440563918679 40.535787147620155, -74.17431514083874 40.53563724519082, -74.1742521981241 40.53553298471554, -74.1741617016517 40.53538308486205, -74.174634382094 40.535187595006256, -74.17445862691793 40.534888695594596, -74.17585423283921 40.5343114884535, -74.17577833567228 40.53418625730604, -74.17514462539329 40.53444768677707, -74.1750178612845 40.53449998110877, -74.17470095073718 40.53463071722443, -74.17437903045075 40.534763517780476, -74.17407063935921 40.534266693705, -74.17439267815266 40.53413385510306, -74.17464620932097 40.53402927487583, -74.1747095940546 40.534003129728255, -74.17483635865189 40.53395083933519, -74.1750309535576 40.53387056772606, -74.17522110198308 40.533792130646724, -74.17537681584061 40.5340431000445, -74.17556695962051 40.53396465879851, -74.17541124878201 40.53371369325378, -74.17547580130213 40.53368706501477, -74.17539792947996 40.5335585722112, -74.17514468818544 40.5336627439237, -74.17501785089246 40.5337149177016, -74.17488881926786 40.53376799340975, -74.17476198157775 40.533820167805054, -74.17463514368725 40.53387234115951, -74.17431804809694 40.534002774832175, -74.17399060300842 40.53413746390299, -74.17390027127128 40.533991861807415, -74.17377695931995 40.53379310629375, -74.17368136843598 40.53363902989828, -74.17400862800943 40.53350405201216, -74.1742621633121 40.53339948072367, -74.17439208449231 40.533345894667185, -74.17451885046141 40.533293608220504, -74.17464561741482 40.5332413225324, -74.17477525502123 40.53318785264029, -74.17509366893172 40.533056517851016, -74.17521862523732 40.533004977226014, -74.17537632733159 40.533259152188656, -74.17577529226256 40.53309459077452, -74.1755696975951 40.53286017067465, -74.17547188576181 40.53274863295528, -74.17527289637043 40.532521720745066, -74.17511594098254 40.53258686321289, -74.17498926608963 40.53263943655399, -74.17473591570827 40.532744583716756, -74.17465936103572 40.532776356516216, -74.17450576712503 40.53252285241936, -74.17443209698865 40.53240126052832, -74.17307843411453 40.532958245146624, -74.17273434176457 40.53309982228078, -74.17164940184954 40.5335462128078, -74.16983675808856 40.53056874004029, -74.17142594057798 40.52991172103219, -74.17081690949571 40.528921588887464, -74.16987147351837 40.527547703859014, -74.16970902656489 40.52730064607567, -74.16931507671424 40.526701495742884, -74.17274891455669 40.52680600126315, -74.17292523165516 40.52702855297575, -74.17176436596233 40.527562450294525, -74.1717965017522 40.52760096378878, -74.17196501405368 40.52752747500838, -74.17211571399906 40.5277180705028, -74.1722388879327 40.52766435377718, -74.17251689068527 40.52801595248465, -74.17219572003187 40.52815601677775, -74.17235452592298 40.528234771122726, -74.17282615170514 40.52846865995444, -74.17311310867015 40.5283744446361, -74.17327967807482 40.52831975631791, -74.17361281842214 40.52821037715116, -74.17380392200533 40.528147631747494, -74.17470832504982 40.52785068077138, -74.17522031021396 40.52768257212641, -74.17533216542623 40.52787513181698, -74.17481964165927 40.52805119885724, -74.17495535021688 40.528295652526964, -74.17547311901778 40.52811778391476, -74.17550956118812 40.52818051764044, -74.1756626193032 40.52844400546211, -74.17513779849844 40.52862429729867, -74.17500898972314 40.52866854674663, -74.17511327872123 40.528853044022846, -74.1752388542509 40.5290839067004, -74.17524810863478 40.529083191961476, -74.17525839575619 40.52908430372045, -74.17526974805736 40.529087461656644, -74.17529092653773 40.52909597624772, -74.17531433193219 40.529111195479494, -74.1753433542327 40.52912025010688, -74.17536352838758 40.52913281319878, -74.175390827384 40.52913548118879, -74.17550463677951 40.529146605301264, -74.17565618177022 40.52910384240851, -74.17568950511449 40.52916467352371, -74.17570537219159 40.52916622426628, -74.17597935390222 40.52908891197927, -74.17604350602986 40.529199272589345, -74.1761048388831 40.52920526610157, -74.176946577227 40.53193327971428, -74.17715834917627 40.532477254743114, -74.17772294605307 40.533605611796006, -74.17777666432899 40.533729151499685, -74.17821275441203 40.53462751257679, -74.17833888981473 40.534838063088216, -74.17763955340851 40.53515835246862, -74.17750440590267 40.53501499191281, -74.17687514708803 40.53532343616381, -74.17671743393488 40.535400741812715, -74.17654137741813 40.5354870384186, -74.17639061595379 40.53556093523016, -74.1767942702518 40.53598912746673, -74.17699502755472 40.536202087781575, -74.17673484065072 40.536338787281096, -74.17661111642164 40.53640379055082, -74.17654938858526 40.53643622078714, -74.17642917059939 40.5364993822892, -74.17625114888577 40.53620695221547, -74.17609173580136 40.53627088494576, -74.17612507912223 40.5363230095603, -74.1760010675097 40.536377254891455, -74.17616025286895 40.536641904109786, -74.17596232345895 40.536747561427426, -74.17516985174726 40.5371122934037, -74.17491195173616 40.53728220667992)), ((-74.17007797910608 40.53938230185084, -74.16978759661129 40.538883028174375, -74.16986137450186 40.538836693104265, -74.16680473732472 40.53414626670216, -74.16852039820802 40.53343692417078, -74.16882637057108 40.53331041496268, -74.16885982926557 40.53329658135573, -74.16878420911036 40.533187059423746, -74.16861865612567 40.53294728013227, -74.16880856666229 40.532868990905044, -74.16887187007711 40.53284289502639, -74.16893517462051 40.53281679821053, -74.16918838876123 40.53271241150329, -74.16925169187945 40.53268631541488, -74.16941372291937 40.53261951741059, -74.16924604155483 40.532376660541466, -74.16940430017115 40.53231141791984, -74.16946760282526 40.53228532171163, -74.17003630345523 40.532050870920635, -74.17036082509169 40.53191708176072, -74.17045281275816 40.532063587421256, -74.17048393599157 40.53211315407107, -74.17051643513948 40.53216491596032, -74.17105288210189 40.533019278593535, -74.16989378312269 40.533495443526306, -74.16947852060372 40.533666030369595, -74.16956538931055 40.533791842012576, -74.16940165807944 40.53385993408838, -74.16957288960936 40.53410523940711, -74.1696317058988 40.53408077969846, -74.16975806084683 40.53402823076867, -74.16992574861396 40.53426845821358, -74.16979949284638 40.53432114856285, -74.16967140465047 40.53437460152747, -74.16954068463735 40.53442915417906, -74.16929606301869 40.53453123802449, -74.16937870596523 40.53464963116976, -74.16944635221587 40.534746539952444, -74.16971762981271 40.53513516603945, -74.16979939882566 40.53525230573339, -74.16986376253779 40.53534451025531, -74.16989990997364 40.53539629392589, -74.17003520569868 40.53559011262621, -74.17013945063484 40.5357394478218, -74.1702261871159 40.53586370033037, -74.1703403350615 40.53581594797718, -74.17044050135505 40.535956289962506, -74.17051118339951 40.53605532245612, -74.17064047762847 40.53600123460156, -74.17076665894513 40.53594844889331, -74.17059580996529 40.53570907479254, -74.17226543420144 40.535010593454686, -74.17263666698136 40.535629553078195, -74.17273272726145 40.535789711787665, -74.17276272315547 40.53583972436792, -74.17279272027463 40.53588973693834, -74.17298020063616 40.536202317351666, -74.17268183636833 40.53632396689574, -74.17264018918657 40.536263829157114, -74.17247175300959 40.53602060175095, -74.17234090501839 40.53607395106562, -74.17228137220711 40.5360982232207, -74.17244980906716 40.536341450902896, -74.17253358308837 40.5364624227906, -74.17257186800094 40.53644685453964, -74.17269599849526 40.53639638235301, -74.17301999591987 40.53626464064094, -74.17308002800145 40.536362557441564, -74.1731105549865 40.53641234939976, -74.17396644208038 40.537808325628625, -74.17392974117448 40.53781816547878, -74.17386581924194 40.53783260682008, -74.17380565275563 40.537844173355474, -74.17376428128699 40.53784997324541, -74.17369469612156 40.537856295787805, -74.17250965560716 40.537963661329535, -74.17240105975719 40.537974610077256, -74.17237238376471 40.53797988520508, -74.17235056916302 40.537985624605064, -74.17232242880058 40.53799446861316, -74.17217682761704 40.537785017789105, -74.17195281017258 40.53746276061165, -74.17151120088322 40.53761411835746, -74.17141660274267 40.5376465399903, -74.17184688017834 40.538265513841424, -74.17095958428965 40.53896495274168, -74.17083796775239 40.539062040570506, -74.17038505171028 40.53849723007396, -74.17019098932009 40.53862165940017, -74.17050442005815 40.539012526403106, -74.17075049535835 40.53931939504414, -74.17067387960283 40.53940535096642, -74.17051355607958 40.53954777006241, -74.17020995455687 40.539223823033495, -74.1701443559787 40.53927089364452, -74.1700703118094 40.53932402467927, -74.17029655654973 40.539687204004025, -74.17026653432079 40.539706494629634, -74.17020230658778 40.539765488040715, -74.1698767987587 40.53989095178322, -74.16968037981253 40.53961873230487, -74.1700179482125 40.53947859244909, -74.17003280097181 40.5394744469335, -74.17004650398373 40.5394684228146, -74.17005865401147 40.539460698094274, -74.17006888925793 40.53945150024207, -74.17007691060097 40.53944110166133, -74.17008248038535 40.53942980888433, -74.17008543420573 40.53941795445013, -74.1700856832514 40.53940589059725, -74.17008322252268 40.539393971240926, -74.17007812256352 40.539382550184314, -74.17007797910608 40.53938230185084)), ((-74.17585853867392 40.52835730958671, -74.17616899649315 40.52823666059553, -74.17652610842913 40.5280978789078, -74.17663790646182 40.528257735578265, -74.17684219339432 40.528177114527, -74.17716173683326 40.52805100694784, -74.17749378288187 40.52791996495528, -74.17806025128455 40.528661832059086, -74.17851223364029 40.52931472198482, -74.17948894294842 40.530725528570514, -74.17705338785296 40.53168100550586, -74.17650252999469 40.52986559187737, -74.17628617647885 40.529079725011215, -74.17585853867392 40.52835730958671)), ((-74.18204376732221 40.53481866303025, -74.18197271916296 40.53472318356714, -74.1818624380603 40.534771617677634, -74.18173772132812 40.5348263926474, -74.18161302679012 40.53488115754027, -74.18143339519477 40.534643341582054, -74.18156010179169 40.534587692983266, -74.181684818224 40.53453291820538, -74.1817950990615 40.5344844842646, -74.18164856088518 40.53428755339664, -74.18147094310164 40.53404885448504, -74.18111226464829 40.53420638133785, -74.18104110032202 40.53411216402233, -74.18140057417205 40.53395428582744, -74.18111638892593 40.53357236699155, -74.18075369576825 40.53373165780004, -74.18068184543316 40.53363653000417, -74.18060999530505 40.53354140306313, -74.18053814538632 40.53344627787749, -74.18046523671558 40.53334974678323, -74.18029135812641 40.53311953665775, -74.18041976933849 40.53306778412243, -74.18054714167064 40.5330164500219, -74.18061084426752 40.53299077568837, -74.18067419665876 40.532965242353086, -74.18073181917562 40.53294201885577, -74.18078944047458 40.53291879623186, -74.1809167815839 40.53286747347577, -74.18111693785589 40.53313033132997, -74.18130981406736 40.533048404700864, -74.18111075055369 40.53278698360224, -74.18130823028395 40.53270560893864, -74.1814032681049 40.532666447872664, -74.18149830463173 40.53262728582922, -74.18175177806134 40.53252283855105, -74.18194615980575 40.53277810724463, -74.1821369249496 40.532697076791955, -74.18194359690322 40.53244319176356, -74.18207160041904 40.53239263032117, -74.18219843183088 40.53234253076627, -74.18232643378086 40.532291969041225, -74.18245443671738 40.532241407171384, -74.18258463353419 40.53218997806142, -74.18276648423948 40.53242965462439, -74.18283252480424 40.5324014340383, -74.1831924366034 40.532902569638225, -74.18342545133174 40.5332270104915, -74.18294344012446 40.53342333316051, -74.18269937729247 40.53311654939125, -74.18253236945863 40.53318902669832, -74.18276489747704 40.53348131264766, -74.18246771973087 40.53361894498957, -74.1826562540047 40.53385593020731, -74.18296273259666 40.53424113536938, -74.18306056101216 40.534364132231254, -74.18315044732954 40.534477116084844, -74.18283609210555 40.53457871866636, -74.18205344812894 40.53483167203646, -74.1821148168648 40.534914142446766, -74.18218586543007 40.53500962182049, -74.18238148902823 40.53527250895103, -74.18233037854405 40.535287716321825, -74.1821948963715 40.53532802566741, -74.18212742824602 40.53534810015029, -74.18200342799877 40.53539800420561, -74.18168487978373 40.53497628294307, -74.18204376732221 40.53481866303025)), ((-74.16928116127353 40.52619579387089, -74.16910422404021 40.52594169372672, -74.16896964704266 40.525748427486604, -74.16911370646281 40.52575278554012, -74.16918388381855 40.52575490914495, -74.16943619352037 40.52576254182505, -74.16972505809346 40.52612159666959, -74.17295364362498 40.52469777061145, -74.17360074977601 40.52542486232784, -74.17246814479051 40.52596872542115, -74.17259522255344 40.52611287044504, -74.17226355900998 40.52627212841973, -74.17217740060157 40.526313498338645, -74.17236465984837 40.5265239475932, -74.1699927447973 40.526454323639875, -74.16966419217881 40.52644467603646, -74.16959405909127 40.52644261659649, -74.16945008935053 40.52643838778712, -74.16930902536838 40.52643424546517, -74.16914915237494 40.52619651616943, -74.16928116127353 40.52619579387089)), ((-74.17940042634078 40.53423882789474, -74.17935488930306 40.53417663644065, -74.179198436201 40.534239356770115, -74.1790451437608 40.534300811215545, -74.17891956511954 40.5343511556646, -74.17888430883771 40.53436528947838, -74.17880885883571 40.534209498364405, -74.17866152039717 40.533905275871135, -74.17812846579719 40.534132680040784, -74.17810780496258 40.5340875100236, -74.17801405139232 40.533896432521786, -74.17847239136472 40.53368207484749, -74.1783491356269 40.53343009924266, -74.17841506245828 40.53339932567852, -74.17830573530202 40.533180355293005, -74.17836389547581 40.53315301312948, -74.17854356707532 40.53306854605861, -74.17854149641919 40.53306571801425, -74.17847523432312 40.53297521607346, -74.17835005978442 40.53280425056752, -74.17831008865001 40.532749658621846, -74.17827983936782 40.53270834338055, -74.17821201790365 40.53261571125416, -74.1782096203329 40.53261243614808, -74.1781078032081 40.532473370493214, -74.17807887022762 40.532433853314785, -74.1780375834843 40.532377462255056, -74.17799026858647 40.53231283707944, -74.1779221967999 40.53221986206665, -74.17785640546802 40.53213000201385, -74.1777866496191 40.53203472417335, -74.17720241950539 40.532168185354976, -74.17712197122903 40.53190356013566, -74.17788332188606 40.531603946620095, -74.1781396692352 40.53195407935349, -74.17817651252406 40.53200440140173, -74.17835769020482 40.53225186114206, -74.1784279102536 40.532347768284815, -74.17852972903339 40.53248683365529, -74.17859994721299 40.532582739794194, -74.1786701679618 40.53267864858738, -74.17886160548669 40.53294011460236, -74.17893862774373 40.53304531059993, -74.17901164511775 40.53314503757093, -74.1791823416513 40.53337817140844, -74.17905342001504 40.533427214559566, -74.17886003602435 40.53350077856603, -74.17900019608513 40.533692204489824, -74.179182641284 40.53362288800894, -74.17931170957546 40.53357385168907, -74.17950209070047 40.533824619085905, -74.1796464421721 40.534014755312775, -74.1797186182171 40.53410982380735, -74.17982076896608 40.534244374949836, -74.17989725466366 40.53434511802093, -74.17999636080269 40.53447565651495, -74.18006853784317 40.53457072478613, -74.1801389110964 40.534663415742656, -74.18031755050472 40.5348987101926, -74.17998293239921 40.53503437407807, -74.17984500095142 40.534845998668686, -74.17980919258927 40.53479709387545, -74.17974074968899 40.534703620738384, -74.17968072503504 40.534621643150786, -74.17967055252208 40.53460774949419, -74.17957416442852 40.534476108724434, -74.17951861691631 40.534400246747644, -74.17949977769436 40.534374514759946, -74.17940042634078 40.53423882789474)), ((-74.17924979666319 40.5310036075318, -74.1795681109954 40.53087572837585, -74.17963922226215 40.530977289620814, -74.1797385457035 40.53111914137614, -74.1798063519403 40.53121598081103, -74.179874158376 40.531312821105594, -74.17994196618596 40.53140966045708, -74.18011148421004 40.53165175866106, -74.18017929152995 40.53174859877216, -74.18024709904391 40.53184543794202, -74.18031490793702 40.53194227796972, -74.18041662045874 40.53208753568543, -74.1805183334275 40.53223279511037, -74.18062004683837 40.53237805444362, -74.18065395179951 40.532426473900216, -74.18083534110875 40.53268551831978, -74.18070810640651 40.5327368038975, -74.18032639876284 40.53289065798604, -74.18019706705059 40.532942787383604, -74.18001105320839 40.53268560610647, -74.17994151562577 40.532589463822546, -74.17966336611309 40.53220489335999, -74.17961121424828 40.53213278671468, -74.17955906131336 40.53206067914659, -74.1795069084934 40.53198857245495, -74.17941997118004 40.53186836969264, -74.17935043529788 40.53177222704463, -74.1792532787333 40.53163789550157, -74.17889703066201 40.53114532569975, -74.17924979666319 40.5310036075318)), ((-74.17975775743903 40.53080097129649, -74.18039475480947 40.53054421180631, -74.18066598358567 40.53093156776607, -74.18076769533724 40.5310768269831, -74.1808355030222 40.53117366581044, -74.18090331208384 40.531270504595106, -74.18093721551058 40.53131892487453, -74.18103892843861 40.531464182946415, -74.18110673690953 40.53156102161062, -74.18120845057689 40.53170628043012, -74.18131016468386 40.53185153825734, -74.18137797394321 40.53194837765896, -74.18147968878709 40.53209363533328, -74.18166108157608 40.532352679353544, -74.18153384695835 40.53240396494907, -74.18140661332565 40.5324552504015, -74.18127937950011 40.53250653661323, -74.1811521442991 40.53255782268561, -74.181024071832 40.53260944493365, -74.18084268199775 40.53235040081074, -74.18080877693846 40.53230198140964, -74.18077487310855 40.53225356199644, -74.18070706323319 40.532156722242746, -74.18063925473699 40.53205988334689, -74.18033411716296 40.53162410691331, -74.18026630974747 40.531527267793244, -74.18019850134824 40.531430428634245, -74.18013069432335 40.531333588532064, -74.18006288749733 40.53123674928963, -74.17999507968516 40.5311399091078, -74.17992727325209 40.53104306978382, -74.17983130600282 40.53090601275615, -74.17975775743903 40.53080097129649)), ((-74.17809274794543 40.531521518858405, -74.17873270088033 40.5312700582535, -74.1790762592276 40.53174573730993, -74.17912828965046 40.531817777749325, -74.17919775690558 40.53191395755996, -74.17926722436304 40.532010138228316, -74.17933669320071 40.532106318852065, -74.17944049939123 40.53225004325713, -74.17950823202155 40.5323438193744, -74.17957107931237 40.53243083381237, -74.17970827867308 40.53262078935137, -74.17977774759744 40.53271696880507, -74.17984721554387 40.532813149118375, -74.18002299914856 40.53305651906989, -74.17989428472552 40.53310578977691, -74.17970118090574 40.533179709574554, -74.17937936029631 40.533302899177805, -74.1792094839196 40.533067702138446, -74.17903581311177 40.53282725076995, -74.17887050122391 40.5325983705244, -74.17880277041306 40.53250459493144, -74.17873503978987 40.53241081839734, -74.17859610695388 40.53221845637793, -74.17852664024808 40.53212227620558, -74.17845717373979 40.53202609508992, -74.17836901884938 40.53190403833681, -74.17809274794543 40.531521518858405)), ((-74.1788858042994 40.5285912051275, -74.17901942772376 40.52854909968557, -74.17919242236499 40.52879727153698, -74.17932756543789 40.528991141781, -74.17939513785724 40.529088076391105, -74.17946270929482 40.529185011863085, -74.17953028092595 40.52928194639406, -74.17959785393569 40.52937888178321, -74.17966542595641 40.52947581533268, -74.17976678554241 40.52962121828065, -74.18027358653475 40.530348227156814, -74.17989135362555 40.53050130441536, -74.17963154964426 40.53060535047588, -74.1794626172207 40.530363013795885, -74.17939504459233 40.530266078332616, -74.17932747098219 40.53016914373121, -74.17925989874587 40.53007220818693, -74.17919232552772 40.529975273504526, -74.17912475368577 40.529878338779795, -74.17905718203738 40.52978140311404, -74.17898960940728 40.52968446831017, -74.17888825259864 40.5295390655754, -74.17882068045847 40.52944213067032, -74.17868553912167 40.52924825893387, -74.17861796756948 40.52915132390729, -74.17858418245821 40.52910285682821, -74.17890270583209 40.528975295247164, -74.17886892060089 40.528926827350666, -74.178937607245 40.52889932169349, -74.17875217834873 40.528633311317925, -74.1788858042994 40.5285912051275)), ((-74.1811857679143 40.53134200788185, -74.18111795955106 40.53124516926269, -74.18101624796235 40.531099910356, -74.18088063123218 40.530906231974335, -74.18081282257295 40.53080939317354, -74.18057549735119 40.53047045614354, -74.18095718941731 40.530316600299436, -74.18102080557392 40.530290957383535, -74.1811984508742 40.53052971733477, -74.18126955980858 40.53062528815679, -74.18134063222766 40.530720810363476, -74.1814827800381 40.530911855539514, -74.18158939084215 40.53105514043076, -74.1816604653556 40.53115066243441, -74.18178740638312 40.53132126765598, -74.1819475334652 40.53124500658879, -74.18210406057479 40.53146854092404, -74.18217187059331 40.531565378959115, -74.1822396808084 40.5316622169534, -74.18230749121996 40.53175905490695, -74.18248937802686 40.532018799257436, -74.18229852970545 40.53209572942412, -74.18216517494643 40.5321494838855, -74.18197273428993 40.532227055411205, -74.1818423205063 40.532279624240324, -74.18166043550423 40.53201987886992, -74.18159262576553 40.53192304053615, -74.18152481622089 40.53182620126112, -74.1814231005057 40.53168094362566, -74.18132138641039 40.53153568499605, -74.1811857679143 40.53134200788185)), ((-74.1800243754126 40.53330017766989, -74.18015299828232 40.533250553954346, -74.18032838848553 40.53348157328957, -74.18040055189564 40.53357662426979, -74.1804727166937 40.533671676102635, -74.18054488169702 40.53376672788938, -74.18057527693509 40.53380676265154, -74.18061704572534 40.53386177963194, -74.18068921113918 40.533956831326606, -74.18075776758448 40.53404712935963, -74.18086240778769 40.53418495448725, -74.1809654469596 40.534320668499774, -74.18114227012417 40.53455356642899, -74.18101547319198 40.53460559908334, -74.18082451697867 40.534683959682226, -74.18050676377358 40.53481435205281, -74.18032994095341 40.534581453151446, -74.18026298715573 40.53449326319133, -74.18019443092133 40.53440296486597, -74.18012226572945 40.53430791286365, -74.18005370987527 40.53421761445295, -74.17998154508365 40.534122562360814, -74.17990938167755 40.53402751022071, -74.17969289151299 40.53374235442648, -74.17950833982879 40.53349926694947, -74.17963831347494 40.53344912299551, -74.17976700176472 40.53339947439669, -74.17989568868543 40.53334982655579, -74.1800243754126 40.53330017766989)), ((-74.17920663560365 40.5284901083686, -74.17959089784951 40.52836906742362, -74.17980356830233 40.52865491748773, -74.18006045366653 40.52900019671469, -74.18012571628138 40.529087913094585, -74.18013086405168 40.52909483279283, -74.1803092207903 40.52933455658243, -74.1804934030024 40.52958210824391, -74.18051799090232 40.52961515684655, -74.18063809207051 40.52976413077394, -74.1808808884859 40.53010290597921, -74.18076976239195 40.53014795530847, -74.18061092518555 40.5302123473332, -74.1804520876755 40.530276740038346, -74.18028315192731 40.53003440456152, -74.17990745181748 40.529495460483446, -74.17967094811216 40.52915618888153, -74.17920663560365 40.5284901083686)), ((-74.17310100058732 40.53529097000465, -74.17300914298092 40.53513939361055, -74.17269161827383 40.53526946500037, -74.17263111775421 40.53516963146837, -74.1725705522131 40.535069687236614, -74.17248030106865 40.53492075826178, -74.17279782453264 40.53479068835334, -74.173119027727 40.53465910993236, -74.17356406726994 40.53447679946284, -74.17390666919233 40.534336451345226, -74.17399850262368 40.53448473023122, -74.17409084258426 40.53463382955727, -74.17374507144852 40.53477547617551, -74.17380557209502 40.53487530912536, -74.17386683156846 40.53497639352985, -74.1736788939338 40.535053592182656, -74.17352684911998 40.534802700512856, -74.17339685509273 40.534855952493054, -74.1735489706591 40.535106960394764, -74.17342203133789 40.53515910283448, -74.17322794158744 40.535238827018055, -74.17310100058732 40.53529097000465)), ((-74.18093079413309 40.53537284758732, -74.18064390417213 40.53499498156171, -74.18115346621376 40.53478735140489, -74.18133390053286 40.53502500173268, -74.18146091004803 40.53497324935841, -74.18153128091787 40.53506593316234, -74.18121299305736 40.53519562591542, -74.18124908102459 40.535243155622084, -74.18132125593513 40.535338215903245, -74.181639541904 40.53520852285524, -74.18183748556542 40.535469229755606, -74.18150652528583 40.53558223226335, -74.18117556270676 40.53569523381791, -74.18100296755307 40.53546790897, -74.18093079413309 40.53537284758732)), ((-74.17310492417937 40.53450544688176, -74.17295399937069 40.53425639974447, -74.17288521355945 40.534284691711605, -74.17273316517966 40.5340337863807, -74.17317485470923 40.53385161842639, -74.17351753076001 40.533710284367615, -74.1735804224685 40.53381191398673, -74.17367280116278 40.53396073893401, -74.17382619921526 40.53420876919573, -74.17347806844626 40.534351964798304, -74.17310492417937 40.53450544688176)), ((-74.1755128461523 40.52630787175949, -74.17532215261343 40.526063149696526, -74.17545798136182 40.526014339674234, -74.17564247182386 40.52594804510245, -74.17581748957669 40.526175414022326, -74.17594253830842 40.526121043855845, -74.17577320908498 40.52590106516864, -74.17590519945986 40.525853633800885, -74.17651955012622 40.526651737214365, -74.17626435415649 40.52664405338685, -74.17617955833737 40.52664150087685, -74.17609688932272 40.52663901168092, -74.17592595154012 40.52663360043272, -74.1757630479104 40.52662895828919, -74.1756231698474 40.52644945183071, -74.1755128461523 40.52630787175949)), ((-74.16972666275939 40.52826219742569, -74.17007096801616 40.52811928712145, -74.17013953736313 40.52822125694606, -74.17017239044957 40.52827011331194, -74.17020524476189 40.528318968765966, -74.17027095235282 40.52841668054755, -74.17040005089174 40.528608661108514, -74.1700557438155 40.5287515714939, -74.16992930920388 40.52880405066445, -74.1698028732113 40.528856528796744, -74.1696738103253 40.52891009761098, -74.16948015135665 40.52899047767067, -74.16931667989017 40.52874418902039, -74.16938222700576 40.5287169836865, -74.16950866306458 40.52866450601694, -74.16963772442861 40.5286109373891, -74.16976416008401 40.52855845853716, -74.16989059436294 40.52850598044805, -74.16986093758351 40.52846187947255, -74.16982808463048 40.52841302301827, -74.16979523172546 40.5283641665544, -74.16972666275939 40.52826219742569)), ((-74.17014086218535 40.528864119633226, -74.17047328702212 40.52872517185963, -74.17054514318495 40.52882711584614, -74.17020558542292 40.52896904434831, -74.17029469204356 40.529113494922576, -74.17011008422072 40.5291906576325, -74.17006553319904 40.52920927814919, -74.16992043362373 40.52926992574234, -74.16979913670501 40.52932062491921, -74.16973078375936 40.529349194437174, -74.16954016199007 40.52942886859066, -74.16947568821081 40.52932434477291, -74.16938633303869 40.52917949139752, -74.16957695428242 40.52909981839845, -74.16976660480184 40.529020549954495, -74.16995625369117 40.528941281198506, -74.17014086218535 40.528864119633226)), ((-74.18011750255438 40.53521815829183, -74.1804559153565 40.53508095535193, -74.18063974992951 40.53532308695465, -74.18070723571478 40.53541197286383, -74.18097443608738 40.53576390389815, -74.18095949014415 40.53576664615384, -74.18094619032061 40.53576879956873, -74.18092988103585 40.535771076594536, -74.18091536424888 40.535772771753116, -74.18089885471078 40.53577432506451, -74.18088164075371 40.53577552647581, -74.18086644615312 40.5357762339149, -74.18084841092492 40.53577664685079, -74.18082896627226 40.53577657481735, -74.18081492660149 40.53577618988969, -74.18080270176043 40.53577562379757, -74.18079179619073 40.53577494035895, -74.18077993978251 40.535774002666194, -74.18076784669218 40.535772835709885, -74.18075550153692 40.5357714251057, -74.18074068796295 40.53576943484311, -74.18072764358686 40.53576741117567, -74.18071453473961 40.535765115648395, -74.1807021597347 40.53576270459742, -74.18062935472066 40.535747474142454, -74.1804826039699 40.53571677534645, -74.18036192921393 40.53555197090493, -74.18029629480084 40.535462333547095, -74.18023207742836 40.53537463186602, -74.18023028976273 40.53537218973522, -74.18011750255438 40.53521815829183)), ((-74.1705257423806 40.52949337353067, -74.17087342915147 40.529348744810925, -74.17094078414557 40.52945669277305, -74.17103531522174 40.529607742778886, -74.17118957775817 40.529855427724996, -74.17084139841904 40.52999927106392, -74.170686902227 40.52975168235817, -74.17059260634812 40.52960053536187, -74.1705257423806 40.52949337353067)), ((-74.18213532193583 40.53115557259449, -74.18227864942311 40.531087312804836, -74.18241988798273 40.531244916195504, -74.18252530345566 40.531361861625456, -74.1826047406812 40.53145013399332, -74.18264549995928 40.53149542613179, -74.18281385780475 40.53168251155262, -74.18255798878525 40.531771037332284, -74.18242848196745 40.53158245796747, -74.18239529280035 40.53153412974728, -74.18233060907777 40.531439940739205, -74.18225031989343 40.531323026388584, -74.18213532193583 40.53115557259449)), ((-74.16857677584277 40.52396007383319, -74.16885142654789 40.523781864148305, -74.16887728966518 40.524212090264385, -74.16888388760857 40.52432184163746, -74.16852145531853 40.52432438516195, -74.1685164735083 40.52421462239116, -74.16850697718 40.524005364902266, -74.16857677584277 40.52396007383319)), ((-74.1685563272591 40.52509272092565, -74.16893007027171 40.525090098516564, -74.16893336932624 40.52514497374786, -74.16893666838617 40.525199848978815, -74.16895316259146 40.52547422693163, -74.16857376353111 40.52547688923717, -74.1685613092002 40.525202483687465, -74.1685588176341 40.52514760095676, -74.1685563272591 40.52509272092565)), ((-74.17219093915244 40.53444552678321, -74.17250820252103 40.53431503210813, -74.1725687080105 40.534414875608476, -74.1727196317436 40.53466392414973, -74.17240236713164 40.53479441940549, -74.17225144310576 40.5345453704515, -74.17219093915244 40.53444552678321)), ((-74.17892141888537 40.527995182624196, -74.179227026529 40.52787997931204, -74.1794465103931 40.528174994003486, -74.17910562475451 40.52829670163433, -74.17889906533067 40.52800360859809, -74.17892141888537 40.527995182624196)), ((-74.16853639966277 40.52465367166821, -74.16890368038634 40.524651094850135, -74.16891027841407 40.52476084531756, -74.16891357625599 40.5248157205525, -74.16891687528343 40.52487059578538, -74.16892017431627 40.52492547101796, -74.16892347335683 40.524980347150745, -74.16855134533662 40.52498295906323, -74.16854885496927 40.52492807723022, -74.16854636342819 40.52487319629921, -74.16854387189123 40.52481831536788, -74.16854138153616 40.52476343353401, -74.16853639966277 40.52465367166821)), ((-74.16933755947282 40.527633982650364, -74.16965685153961 40.527501947445366, -74.16982375428346 40.527750537712876, -74.1695044601787 40.52788257338137, -74.1694725114622 40.527834987036634, -74.16940688932677 40.52773724495272, -74.16933755947282 40.527633982650364)), ((-74.16910788067932 40.527291884919414, -74.16942717156563 40.52715985034976, -74.16946263355007 40.527212669903854, -74.16955841613422 40.527355334462996, -74.16959122828139 40.5274042054661, -74.16927193654962 40.52753623958904, -74.16923912575118 40.527487368493446, -74.16917350311815 40.52738962627526, -74.1691433424769 40.52734470277055, -74.16910788067932 40.527291884919414)), ((-74.16913074899666 40.52696925899508, -74.16926260429507 40.52691473390092, -74.16936154897915 40.527062108236706, -74.16904225843007 40.52719414262478, -74.1689766363728 40.52709640029188, -74.16894331424997 40.52704676621425, -74.16900422929366 40.52702157698889, -74.1690674974219 40.52699541439517, -74.16913074899666 40.52696925899508)))",R119,6635,R119,R-03,R-03,R-03,R-03,"Amboy Rd., Barclay Ave., Hylan Blvd. and Bertram Ave.",503,51,123,10312,R,217.45,False,Blue Heron Park,No,100005115,PARK,20100106000000.00000,19820407000000.00000,,DPR,True,Blue Heron Park,Y,Blue Heron Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R119/,Yes,62,24,11,{758C8052-27D8-4F08-84C5-80F27A7D385E} +"MULTIPOLYGON (((-73.90517576592276 40.85550762674265, -73.90499943339229 40.85541577023473, -73.90487423357386 40.85535054983912, -73.9051812633157 40.855010726611184, -73.90548279603632 40.855167801822105, -73.90533194156727 40.85533476971196, -73.90517576592276 40.85550762674265)))",X291,4788,X291,X-05,X-05,X-05,X-05,E. 181 St. bet. Walton Ave. and Jerome A,205,14,46,10453,X,0.344,False,Walton Park,Yes,100003721,PARK,20100106000000.00000,19971124000000.00000,2115 WALTON AVENUE,DPR,False,Walton Park,Y,Walton Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X291/,No,86,33,15,{27683D64-EB33-4AD8-B148-4B3EF9C85B41} +"MULTIPOLYGON (((-73.9219522436241 40.77358194315165, -73.92169193935477 40.77378058954125, -73.92116464782283 40.77340936674432, -73.92141702338519 40.7732024071841, -73.9219522436241 40.77358194315165)))",Q066D,5873,Q066D,Q-01,Q-01,Q-01,Q-01,"Hoyt Ave., bet. 24 St. and Crescent St.",401,22,114,11102,Q,0.46,False,Triborough Bridge Playground D,No,100000325,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Triborough Bridge Playground D,Y,Triborough Bridge Playground D,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q066D/,No,36,12,"12, 14",{A72CF430-905D-48E5-B91A-2D106DCF2DEA} +"MULTIPOLYGON (((-73.94302730985119 40.682964131929296, -73.94309095809382 40.68295681432904, -73.94314677454983 40.68323773480906, -73.94308313075771 40.68324507495516, -73.94302680521493 40.68325157130591, -73.94297097982627 40.682970607538806, -73.94302730985119 40.682964131929296)))",B473,5265,B473,B-03,B-03,B-03,B-03,Hancock St. between Tompkins Ave. and Throop Ave.,303,36,79,11216,B,0.081,False,Hancock T and T,No,100004181,PARK,20100106000000.00000,20021120000000.00000,322-324 Hancock St,DPR,False,Hancock T and T,N,Hancock T and T,Greenthumb,Garden,http://www.nycgovparks.org/parks/B473/,No,56,25,8,{59B82C5E-5DDD-4FC7-AB55-9D01635546F8} +"MULTIPOLYGON (((-73.9519755363393 40.81782527446414, -73.95197915025246 40.817820488928774, -73.9526304188311 40.81809328644482, -73.95210265682606 40.81881595558497, -73.95169405799345 40.818643337333924, -73.95188947223481 40.81840376357021, -73.95158743575908 40.81814115588534, -73.95159344875547 40.81813806070135, -73.95159943687797 40.81813494029268, -73.95160540131255 40.81813179375936, -73.95161134205986 40.8181286202009, -73.9516172591186 40.818125421418266, -73.95162315130342 40.818122197411, -73.95162901980038 40.81811894727906, -73.9516348634234 40.818115671922506, -73.95164068098786 40.8181123704403, -73.95164647604905 40.81810904373445, -73.95165224268105 40.818105690902, -73.9516579856238 40.81810231374592, -73.95166370250669 40.818098912265235, -73.95166939333095 40.818095484658905, -73.95167505809468 40.81809203362846, -73.95168069561456 40.81808855647195, -73.95168630944448 40.81808505589231, -73.95169189484453 40.81808153008655, -73.95169745299937 40.818077979955696, -73.95170298627963 40.81807440550075, -73.95170849112873 40.81807080762074, -73.9517139675479 40.81806718451464, -73.95171941790655 40.81806353798443, -73.951724839834 40.81805986802919, -73.95173023451554 40.81805617464932, -73.95173560076594 40.81805245784442, -73.95174093858577 40.818048716713946, -73.95174624915911 40.81804495305939, -73.95175152892996 40.8180411668793, -73.95175678145552 40.81803735637412, -73.9517620055493 40.818033523344454, -73.95176719884059 40.818029667789176, -73.95177236369999 40.81802578970939, -73.9517775001276 40.81802188910507, -73.95178260575334 40.8180179650747, -73.95178768057531 40.818014020319815, -73.9517927269661 40.8180100521399, -73.9517977437384 40.81800606323594, -73.9518027285229 40.81800205180599, -73.95180768368964 40.81799801875154, -73.95181260923853 40.817993964072535, -73.95181750279897 40.81798988776803, -73.95182236555628 40.8179857898386, -73.9518271975098 40.817981671184604, -73.95183199747423 40.81797753180561, -73.95183676663494 40.81797337170213, -73.95184150380715 40.81796918997317, -73.95184620899035 40.81796498751927, -73.95185088336905 40.817960765241324, -73.95185552575872 40.81795652223843, -73.95186013497332 40.81795225941057, -73.95186471219819 40.817947976758255, -73.9518692562493 40.81794367247995, -73.95187376830937 40.81793935017819, -73.95187824838044 40.81793500715151, -73.95188269409041 40.81793064519986, -73.95188710781011 40.81792626432426, -73.95189148716943 40.817921863623184, -73.95189583335369 40.81791744309723, -73.951900146361 40.817913005447814, -73.95190442619395 40.81790854707295, -73.95190867166461 40.817904071574205, -73.95191288277427 40.8178995771505, -73.95191706070764 40.81789506470287, -73.95192120309473 40.81789053332983, -73.95192531349083 40.81788598393334, -73.951929387154 40.81788141741203, -73.9519334252703 40.817876832865764, -73.95193743021026 40.81787223029559, -73.95194140078797 40.81786761060151, -73.95194533581817 40.81786297378305, -73.95194923530075 40.81785831984021, -73.95195309923584 40.817853648772974, -73.95195692880861 40.817848960581856, -73.95196072164795 40.81784425616636, -73.9519644789397 40.8178395346265, -73.95196820068267 40.81783479776322, -73.95197188687804 40.817830043775615, -73.9519755363393 40.81782527446414)))",M003,4814,M003,M-09,M-09,M-09,M-09,"Convent and Amsterdam Av, W 135 St",109,9,26,10031,M,1.24,False,Annunciation Park,Yes,100003894,PLGD,20100106000000.00000,18880424000000.00000,1501 AMSTERDAM Av,DPR,False,Annunciation Playground,Y,Annunciation Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M003/,No,70,31,13,{D915A294-A041-4F5A-A155-49248E233AA1} +"MULTIPOLYGON (((-73.83609486995667 40.57807101643347, -73.83601763989694 40.57793753836506, -73.8360130812349 40.577933121083134, -73.83600640206481 40.577928431516874, -73.83599754792233 40.5779244871823, -73.83599010664727 40.57792233510921, -73.83598173523032 40.57792092914406, -73.83597241388537 40.57792063126973, -73.83596037382725 40.57792126335795, -73.83593568064316 40.57787929511617, -73.83593158412768 40.57787233360519, -73.83598705528769 40.57785335858655, -73.83600227273043 40.577879035388044, -73.83600251149548 40.577879438263885, -73.83607993799751 40.57785246905404, -73.83612496758776 40.57783678490014, -73.83610855351948 40.57780781228464, -73.8361672313841 40.577788736392094, -73.8361794437284 40.5778098225071, -73.8362490979773 40.57793009336621, -73.83625877524113 40.57792877528164, -73.83627347955284 40.57792822800642, -73.83628467676645 40.577928383544844, -73.83629684901341 40.57793019653835, -73.83630861089003 40.57793464118255, -73.83631849689736 40.57793922993862, -73.83633226565672 40.57794597648186, -73.83634282760282 40.57795282381675, -73.83635528515971 40.57796400447905, -73.83636611267862 40.57797574204473, -73.83637470723205 40.577989240559, -73.83638351172435 40.578008644118704, -73.83638873138243 40.57802528876486, -73.83638958136015 40.57803894554726, -73.83638746798091 40.5780531177128, -73.83638471337602 40.57805953904079, -73.83637439487214 40.578053106298384, -73.83636165793588 40.57804700330486, -73.836351471629 40.57804301567598, -73.83634256181674 40.578040086181254, -73.83633014490658 40.57803785770173, -73.83631821610213 40.57803645930047, -73.83630756261202 40.57803611813125, -73.83629630974093 40.5780369792093, -73.83628263725626 40.578038169132206, -73.83626782164967 40.578040746034944, -73.83625621286029 40.578043223045526, -73.83624188535563 40.57804663002482, -73.83623022092836 40.5780501218459, -73.83621553750285 40.5780551447582, -73.83620816738058 40.57805816361936, -73.83619475926203 40.57806424466388, -73.83618787724357 40.57806809270341, -73.83618020801738 40.57807171268747, -73.8361727266158 40.5780767620732, -73.83616603241785 40.57808204041403, -73.83615958285995 40.57808773424574, -73.8361514464336 40.57809500069076, -73.83613872923685 40.57809337331346, -73.83612794355382 40.57809058701174, -73.83611903374502 40.57808765749971, -73.8361093923724 40.57808348331736, -73.83610350156391 40.57807902361502, -73.83609785422023 40.57807497760099, -73.83609486995667 40.57807101643347)))",Q494,69250,Q494,Q-14,Q-14,Q-14,Q-14,"Beach 116 St., Ocean Promenade",414,32,100,11694,Q,0.159,False,Flight 587 Memorial Park,Yes,100000090,PARK,,20060724000000.00000,11528 Ocean Promenade,DPR,True,Flight 587 Memorial Park,Y,Flight 587 Memorial Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q494/,Yes,23,15,5,{5F6C6C83-72E4-4EE8-8272-E3D4668B8DD8} +"MULTIPOLYGON (((-74.17170330510054 40.637681873597955, -74.17170101011295 40.63761873703088, -74.1716979175171 40.63753366947756, -74.1716955959152 40.63746983324469, -74.17169031522049 40.637324566458894, -74.17168622405164 40.63721203992055, -74.17168536663246 40.63718845476696, -74.17135029815394 40.637190936606, -74.17134679535866 40.63691647127009, -74.17167538939904 40.63691403692744, -74.17167267339623 40.636839319388194, -74.17167010001263 40.63676857383155, -74.17166760153695 40.63669983362182, -74.17166006313757 40.63649251982141, -74.17276084849537 40.63648941328213, -74.17262232654473 40.63537914695153, -74.1725439116005 40.6347506273143, -74.17130013323016 40.63475402418273, -74.1712833474136 40.63357206788379, -74.17793437953968 40.63332949105244, -74.17793417333756 40.63340909202788, -74.17791482543349 40.640860786386284, -74.17753768275013 40.64088317626788, -74.17753759291456 40.64091783653179, -74.17750410394046 40.64092834507143, -74.17747042779983 40.640938713408914, -74.17743293455659 40.64095002416736, -74.177386142979 40.6409638013739, -74.17733379951792 40.64097876950618, -74.17727620266453 40.64099470566797, -74.1772199545984 40.64100973469935, -74.17716605960662 40.64102364433331, -74.17711915724979 40.64103536481332, -74.17706723995441 40.64104792327587, -74.17703283413667 40.64105600798854, -74.17697950187151 40.64106816785823, -74.17694339105293 40.64107614530463, -74.17688979565288 40.641087610335845, -74.17682796013015 40.64110028300366, -74.17675684880017 40.64111412886576, -74.1766503374522 40.641133427688196, -74.17657842927724 40.64114549163385, -74.17647353871908 40.64116170982534, -74.17590350481322 40.64117451329057, -74.17552176334318 40.64116497384531, -74.17529254211853 40.64115924407544, -74.17400405962711 40.64090327306073, -74.17398328115688 40.64089713773742, -74.17396504383038 40.64089125341333, -74.1739467437058 40.64088485948693, -74.17393124566426 40.640879047558066, -74.17391643657949 40.640873139130036, -74.17389505203505 40.64086396725271, -74.17386674556987 40.6408505896017, -74.17383526109033 40.640833900131945, -74.17278329192821 40.640260541226944, -74.17251288942428 40.640233562381866, -74.17180019553359 40.64034666938208, -74.17179791438186 40.64028392724232, -74.17179027578722 40.640073825669674, -74.17178528491041 40.63993659924156, -74.1717827912529 40.63986798602402, -74.17178145801843 40.63983134044269, -74.17178004830447 40.639792538229415, -74.17177859551303 40.639752614932526, -74.17177708032177 40.639710952824, -74.17177573035333 40.639673774158965, -74.17177271530377 40.63959089207349, -74.1717676861745 40.63945255445255, -74.17176507305943 40.63938068873004, -74.17176272072088 40.639315983555015, -74.17175724141109 40.63916531307538, -74.17175470586176 40.639095558054244, -74.1717476643085 40.63890190986807, -74.17174263148178 40.638763473184, -74.1717403848356 40.63870169453761, -74.17173792950612 40.63863415827508, -74.17173518665906 40.63855871046916, -74.1717324426408 40.638483264465336, -74.1717297761657 40.63840992736387, -74.17172752951791 40.63834813880913, -74.17172528415371 40.6382863880739, -74.17172199298417 40.63819584115708, -74.17171700238823 40.638058614697734, -74.17171425959089 40.63798316778708, -74.1717115179795 40.637907719973455, -74.1717087740147 40.637832273963724, -74.17170604014562 40.6377570737803, -74.17170330510054 40.637681873597955)), ((-74.17170101011295 40.63761873703088, -74.17170543480886 40.63782457049473, -74.17135956390364 40.63782774027413, -74.17135631408499 40.63762189604261, -74.17170101011295 40.63761873703088)))",R142,6578,R142,R-01,R-01,R-01,R-01,Richmond Terrace bet. Catherine Pl. and Holland Ave.,501,49,120,10303,R,107.576,False,Mariners Marsh ParkCLOSED,No,100004381,PARK,20100106000000.00000,19970702000000.00000,3418 RICHMOND TERRACE,DPR,False,Mariners Marsh Park,N,Mariners Marsh Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/R142/,No,63,23,11,{F4C9516E-2C9C-48FB-8010-967C7407B9AC} +"MULTIPOLYGON (((-73.80556769476696 40.674970416926065, -73.80552377010325 40.67485073420355, -73.80584223366361 40.674872871869574, -73.80584139348267 40.674891702065565, -73.80556769476696 40.674970416926065)))",Q231,6184,Q231,Q-10,Q-10,Q-10,Q-10,"Rockaway Blvd., 120 Ave. bet. 132 St. and 133 St.",410,28,106,11420,Q,0.104,False,Sergeant Colyer Square,Yes,100000351,PARK,20090423000000.00000,,,DPR,False,Sergeant Colyer Square,N,Sergeant Colyer Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q231/,No,31,10,5,{03CB3A2D-9522-42AA-BDF7-E8B96E1B8645} +"MULTIPOLYGON (((-73.92331891257689 40.83819716279914, -73.92332070902381 40.83819703342185, -73.92353249200127 40.838222766059765, -73.92353381486643 40.8382230695027, -73.92353525015021 40.838223564825384, -73.92353706787704 40.838224521454414, -73.92353917075847 40.83822599425543, -73.92354044161203 40.8382271918542, -73.92354229556992 40.83822963702351, -73.92354283408228 40.83823048114322, -73.92354382564005 40.838232254872885, -73.92354462394013 40.83823402217098, -73.9235452585623 40.838235837086735, -73.92354573423161 40.8382377149317, -73.92354603562332 40.83823957825329, -73.92354617335046 40.83824147748608, -73.92354612139442 40.838243354981294, -73.92354590344291 40.83824523326698, -73.92354551595118 40.83824710153488, -73.92354496011636 40.83824894988025, -73.9235442288554 40.83825075128371, -73.92354333875018 40.83825252106455, -73.92354229103181 40.83825421960192, -73.92354106547972 40.838255902712994, -73.92353973217806 40.83825745788249, -73.9235376988084 40.83825946463575, -73.92339738164912 40.8383537621933, -73.92321441001496 40.8384761779252, -73.92320701514663 40.83848112481742, -73.92320630564375 40.838481528666705, -73.92320562348003 40.83848187310166, -73.9232047847911 40.838482230939775, -73.92320399716847 40.838482517672894, -73.92320318114153 40.83848275936241, -73.92320228451642 40.83848297668488, -73.92320189552423 40.83848305386835, -73.92320097883406 40.83848319193402, -73.9231996827567 40.83848330363274, -73.9231983180253 40.83848331533092, -73.92319696409595 40.838483213574044, -73.92319563044381 40.838483007373384, -73.9231948457248 40.838482833055544, -73.92319391526803 40.83848257129274, -73.92319232715748 40.83848196420284, -73.92319098576078 40.838481277133276, -73.92319019194102 40.83848076962663, -73.92318956644718 40.83848029735132, -73.92318894694203 40.838479772851386, -73.92318842227876 40.8384792592205, -73.92318790719348 40.83847866545204, -73.9231872809756 40.838477793357, -73.92318690348944 40.83847714745153, -73.92318661370399 40.83847653582322, -73.92318636667062 40.83847586569132, -73.92318618838475 40.83847521451559, -73.92318606468385 40.83847452555542, -73.92318599710804 40.83847349174352, -73.92318607294432 40.8384725057533, -73.92318619347668 40.8384718313637, -73.92318639943304 40.83847110930485, -73.92318679418679 40.83847014964133, -73.92318712577624 40.838469469989334, -73.92318963915207 40.83846353830943, -73.92327075652153 40.83827208968207, -73.92328933444594 40.83821797155357, -73.92328965223172 40.838216921789076, -73.92329030280067 40.838215183368185, -73.92329068438544 40.83821433085427, -73.92329110389312 40.83821349457447, -73.92329156370644 40.83821266462497, -73.92329206857016 40.83821183920789, -73.92329260781015 40.838211021017564, -73.92329316953953 40.838210236160535, -73.92329441745251 40.83820870254895, -73.9232957921433 40.83820724646412, -73.92329731735451 40.838205842708, -73.92329812676199 40.838205168776405, -73.92329983441324 40.83820389841466, -73.92330160359076 40.83820273975507, -73.9233035327585 40.83820164693791, -73.92330551395672 40.83820067482147, -73.92330760768284 40.83819979913265, -73.9233097688584 40.83819903965238, -73.92331197495466 40.838198397266105, -73.92331423665291 40.83819786297603, -73.9233165622354 40.83819745209606, -73.92331891257689 40.83819716279914)))",X067,5676,X067,X-04,X-04,X-04,X-04,Shakespeare Av at W 168 St and Wodycrest Av,204,16,44,10452,X,0.117,False,Martin Luther King Triangle 168th St,Yes,100005127,PARK,20100106000000.00000,19130501000000.00000,,DPR,True,Martin Luther King Triangle,Y,Martin Luther King Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X067/,No,77,29,15,{AB33C121-71AB-49AB-9248-A6CD18A30007} +"MULTIPOLYGON (((-73.90825521100632 40.74614586167407, -73.90839395472587 40.745823351974956, -73.90841323126591 40.745828148096535, -73.90893945281462 40.746230001435585, -73.909654178604 40.746326992368544, -73.90965054509951 40.746342475535855, -73.90959802513636 40.74656634176495, -73.90952381180502 40.74688267117756, -73.90944231152876 40.74719606455052, -73.90825521100632 40.74614586167407)))",Q031A,6127,Q031A,Q-02,Q-02,Q-02,Q-02,Woodside Ave. bet. 54 St. and 56 St.,402,26,108,11377,Q,1.71,False,Doughboy Park,Yes,100000022,PARK,20090423000000.00000,19570325000000.00000,,DPR,True,Doughboy Park,Y,Doughboy Park,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/Q031A/,No,30,12,14,{A6050FA3-FE86-41AE-8916-686231381CEC} +"MULTIPOLYGON (((-74.00576643156036 40.682895880170655, -74.00527048284508 40.68209657975322, -74.00526973981194 40.68209439694106, -74.00526971601207 40.68209260131701, -74.00527019613226 40.68209087050691, -74.00527093648479 40.68208907034527, -74.0052720766413 40.68208707025117, -74.00527359059525 40.682085088150274, -74.00527530211238 40.68208334827853, -74.00527786766179 40.682081348119056, -74.0052802357135 40.68207993600425, -74.00528294563628 40.682078693170425, -74.00528612281926 40.68207764302503, -74.00528922432669 40.6820769719995, -74.00529230929843 40.682076615254054, -74.00529547591361 40.68207655387342, -74.00529909324221 40.68207685808064, -74.00530182696154 40.682077364043685, -74.00547027459058 40.68211199173266, -74.00609957833363 40.68189294695529, -74.0063649842811 40.682534024776956, -74.00654205472814 40.68265389577992, -74.00603745973133 40.683081614394375, -74.00576643156036 40.682895880170655), (-74.0062207328276 40.68247591618953, -74.00602557709585 40.681992402734174, -74.00556894935572 40.6821504398523, -74.00577240233935 40.682602350115836, -74.0062207328276 40.68247591618953)))",B210H,5068,B210H,B-06,B-06,B-06,B-06,Hamitlon Ave. ber. Van Brunt St. and Woodull St.,306,"38,39",76,11231,B,1.816,False,Harold Ickes Playground,Yes,100005152,PARK,20100106000000.00000,19520124000000.00000,100 HAMILTON AVENUE,DPR,Unkwn,Harold Ickes Playground,Y,Harold Ickes Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B210H/,No,51,25,7,{DE77A405-57BA-403B-AC89-6720F6EED3B7} +"MULTIPOLYGON (((-73.96034144053077 40.74187176241027, -73.96041968685607 40.74180275285089, -73.96049236335195 40.74173030409156, -73.9605592070323 40.74165467719969, -73.960619978589 40.74157614225567, -73.96067446238898 40.74149498195461, -73.96072246055792 40.741411486201144, -73.96076380126509 40.741325955714174, -73.96078971774259 40.741267964674655, -73.96080809102004 40.74120833033801, -73.96081874555911 40.74114761906722, -73.9608215804055 40.741086408055054, -73.9608165680094 40.74102527631893, -73.9608172530848 40.74101996626101, -73.96080994762465 40.74091416678484, -73.96081170889344 40.74080822991296, -73.96082252948011 40.740702604995604, -73.96084236290571 40.74059773866603, -73.96087112480652 40.74049407754256, -73.96090869412492 40.7403920583235, -73.96095491192196 40.74029211499099, -73.96100958019902 40.740194670706096, -73.96107247018537 40.74010013871243, -73.96114331286915 40.740008919631634, -73.96122180847017 40.7399213996659, -73.96130762525712 40.73983794969731, -73.96140039836456 40.73975892438727, -73.9614150770772 40.7397479503203, -73.96151184322181 40.739681355060064, -73.96161460734328 40.73962017916968, -73.9617228471623 40.73956473493567, -73.9618360108252 40.739515304919244, -73.96185391182524 40.73950263530784, -73.9618687843696 40.739487872812276, -73.96188021385122 40.73947143062939, -73.96188787798302 40.73945376881283, -73.96189156337877 40.73943538347226, -73.96189116793171 40.73941678696302, -73.96188777282607 40.7394016555141, -73.9618816686354 40.73938702385048, -73.96148389719504 40.7386320006073, -73.96146540458844 40.73857885097042, -73.96145292415214 40.73855180095106, -73.96143501803488 40.738526576243224, -73.96141212865867 40.73850380104435, -73.96138482515485 40.7384840401606, -73.96135378324682 40.73846778279114, -73.9613197710495 40.73845543171781, -73.96128363250052 40.73844729429484, -73.96124626368929 40.73844357073447, -73.96120858917995 40.738444354099194, -73.96117154188983 40.73844962399158, -73.96116803204761 40.738450933947114, -73.96116771860449 40.73845043586075, -73.96104624935002 40.738262038377364, -73.96080291302515 40.73824298572056, -73.9603505185958 40.738426893697806, -73.96027261286015 40.738554683987736, -73.9602623410757 40.73858885650525, -73.96022558368034 40.73871114714405, -73.96018315698672 40.738852303241956, -73.9600775005988 40.73889346758296, -73.96000985524306 40.73891982177854, -73.95991091955442 40.73895924581796, -73.95987189804067 40.7389826364171, -73.9598372014844 40.739009684571606, -73.95980741738154 40.73903993123161, -73.95978305157305 40.73907286508927, -73.95992197783978 40.738649276978265, -73.96001550377122 40.73836134428998, -73.96015124784923 40.73831071257588, -73.96070609561124 40.73810375586954, -73.96303464790098 40.73841213210453, -73.96279006589006 40.73975883245888, -73.96329187883411 40.73982528164681, -73.96268458698039 40.741347897373146, -73.96268950818153 40.74134876165338, -73.96267679155294 40.741367441255434, -73.9626332727136 40.74143136405217, -73.96238881821377 40.74179042112894, -73.9612363594443 40.74347758281783, -73.96089620074451 40.74397554717939, -73.9608944077867 40.74397822017541, -73.96043899520113 40.74388783746337, -73.95968667480838 40.74373852469706, -73.95950316963457 40.743702103255586, -73.95957908400884 40.743604047614625, -73.95964807358698 40.74350307545613, -73.95970994641456 40.74339946948433, -73.95976452829642 40.74329351961302, -73.95981166634849 40.743185522966336, -73.9598512289988 40.7430757811773, -73.95988310598612 40.74296460218857, -73.95992261614185 40.74286298382685, -73.95995487283778 40.74275989510197, -73.95997978357646 40.742655634055595, -73.95999727480252 40.742550504137796, -73.96000729664041 40.742444810606486, -73.96002254371503 40.74236605125113, -73.96004576172959 40.742288425695314, -73.96007681185394 40.74221240034868, -73.9601155079076 40.74213843169758, -73.96016161636238 40.74206696360364, -73.96021486108043 40.74199842460401, -73.9602749233147 40.74193322791167, -73.96034144053077 40.74187176241027), (-73.96193173910095 40.74129703618014, -73.96105090763605 40.74112837023046, -73.96102449664836 40.74120643166656, -73.9614730368563 40.74129232167708, -73.96140176602236 40.74144047086332, -73.96110551445653 40.74192403897367, -73.96151342902725 40.742019019216144, -73.96193173910095 40.74129703618014)), ((-73.95973350429328 40.73999460805117, -73.95977660747556 40.73986134352318, -73.96077705343421 40.74004854386907, -73.96075762566993 40.740079863199256, -73.9607325417243 40.740128157862166, -73.9607124531427 40.74017778517332, -73.96064412778207 40.74016500075573, -73.95973350429328 40.73999460805117)))",Q471,4617,Q471,Q-02,Q-02,Q-02,Q-02,Center Blvd. bet. 50 Ave. and 2 St.,402,26,108,11101,Q,22.6,False,Hunter's Point South Park,No,100000265,PARK,20090423000000.00000,20131101000000.00000,52-10 CENTER BLVD,DPR,True,Hunter's Point South Park,Y,Hunter's Point South Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q471/,Yes,37,12,12,{906F07E6-3A5C-4FBD-8DD8-636590A2ED0B} +"MULTIPOLYGON (((-74.01276037951446 40.632594980895334, -74.01321664484205 40.63215439982335, -74.0142299362616 40.63276666801154, -74.01377411188437 40.63320682977884, -74.01276037951446 40.632594980895334)))",B146,6381,B146,B-10,B-10,B-10,B-10,8 Ave. bet. 65 St. and 66 St.,310,38,68,11220,B,1.65,False,Dust Bowl,Yes,100004073,PARK,20100106000000.00000,19360617000000.00000,,DPR,False,Quaker Parrot Park at the Dust Bowl,Y,Quaker Parrot Park at the Dust Bowl,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B146/,No,49,23,10,{A4E2561A-1677-4E60-9BD3-FA8829AD5976} +"MULTIPOLYGON (((-73.85846452585056 40.674597325060894, -73.85838697649488 40.674281494273345, -73.85911681915341 40.67450526892973, -73.85846452585056 40.674597325060894)))",Q424,5930,Q424,Q-10,Q-10,Q-10,Q-10,"N. Conduit Ave., Sutter Ave. bet. 77 St. and 78 St.",410,32,106,11417,Q,0.25,False,Judge Angelo Graci Triangle,Yes,100000176,PARK,20090423000000.00000,19590928000000.00000,,DPR,True,Judge Angelo Graci Triangle,Y,Judge Angelo Graci Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q424/,No,23,15,8,{FE5BA39D-4F64-4AA9-92F8-044EB95F2588} +"MULTIPOLYGON (((-73.80547989779006 40.771010440219115, -73.80566752948361 40.769659035943306, -73.80916629364366 40.7699361936782, -73.80896328634573 40.77148584493609, -73.80638395146141 40.77110310577909, -73.80547989779006 40.771010440219115)))",Q006,5322,Q006,Q-07,Q-07,Q-07,Q-07,"29 Ave., 32 Ave. bet. 155 St. and 159 St.",407,19,109,11354,Q,11.788,False,Bowne Park,Yes,100000028,PARK,,19250601000000.00000,155-01 32 AVENUE,DPR,True,Bowne Park,Y,Bowne Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q006/,No,40,11,6,{5DC86FC7-C5A3-4C4C-BC16-C4763D58BF02} +"MULTIPOLYGON (((-73.97023732560665 40.74884250487178, -73.97017115498679 40.74881438385744, -73.97051655173836 40.748325927460456, -73.97058272201967 40.748354046477324, -73.97023732560665 40.74884250487178)))",M203A,4871,M203A,M-06,M-06,M-06,M-06,"1 Ave., bet. E. 41 St. and E. 42 St.",106,4,17,10017,M,0.095,False,Trygve Lie Plaza,Yes,100004486,PARK,20100106000000.00000,19480819000000.00000,725 1 AVENUE,DPR,True,Trygve Lie Plaza,Y,Trygve Lie Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M203A/,No,74,28,12,{BE27D026-E689-420A-8795-80741C2C9BD6} +"MULTIPOLYGON (((-73.92490016530772 40.687760003095875, -73.92642313423043 40.68758782082069, -73.92686183326391 40.68753821831727, -73.9269155842741 40.68780876591279, -73.92647848702558 40.68786644635206, -73.92647135499743 40.687867255859686, -73.92652688822471 40.68814679009145, -73.92502546543226 40.688317353343045, -73.924970477119 40.688040532892536, -73.92495621180367 40.68804215352062, -73.92490016530772 40.687760003095875)))",B224,5125,B224,B-03,B-03,B-03,B-03,Monroe St. to Madison St. between Patchen Ave. and Ralph Ave.,303,41,81,11221,B,2.289,False,P.O. Reinaldo Salgado Playground (PS 309),Yes,100004983,PARK,20100106000000.00000,19440404000000.00000,750 MONROE STREET,DPR,Part,P.O. Reinaldo Salgado Playground,Y,P.O. Reinaldo Salgado Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B224/,No,56,25,8,{0AC184BD-46FC-47EA-A408-02EF77149C12} +"MULTIPOLYGON (((-73.96978157624022 40.75289389826505, -73.96818177165095 40.75221181257217, -73.96817063569598 40.75218014411165, -73.96779566391892 40.75201530856827, -73.96784985263433 40.751944019857646, -73.96787846757279 40.75174713134957, -73.96806878604178 40.75182744634668, -73.96807041055017 40.751825243259326, -73.96853790007563 40.75202252052715, -73.96869644523231 40.75208942447413, -73.96909160014974 40.752256173373354, -73.96917002496963 40.75228926726423, -73.96924892461766 40.752322561140545, -73.9693274999514 40.7523557179994, -73.9693257261825 40.75235810927028, -73.96956723847765 40.752460021427126, -73.96956901224019 40.752457631053105, -73.96964791347084 40.75249092555616, -73.96964865757433 40.75248992078785, -73.96972561369836 40.75252239346376, -73.96997719649495 40.75262855418945, -73.96985681676608 40.75279092444583, -73.96978157624022 40.75289389826505)))",M203C,4674,M203C,M-06,M-06,M-06,M-06,E. 47 St. bet. 1 Ave. and 2 Ave.,106,4,17,10017,M,1.59,False,Dag Hammarskjold Plaza,Yes,100004569,PARK,20100106000000.00000,19480921000000.00000,833 1 AVENUE,DPR,True,Dag Hammarskjold Plaza,Y,Dag Hammarskjold Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M203C/,No,73,28,12,{03D801EE-5061-4DFF-B14F-F4E5AB277A00} +"MULTIPOLYGON (((-73.90706058519979 40.82307904034658, -73.90727617275965 40.822560847690355, -73.90763825012209 40.82264687993651, -73.90742266628723 40.823165074163725, -73.90706058519979 40.82307904034658)))",X112,6661,X112,X-03,X-03,X-03,X-03,Cauldwell Ave bet. E. 161 St and E. 163 St.,203,17,42,10456,X,0.477,False,Hilton White Playground,Yes,100004847,PARK,20100106000000.00000,19300701000000.00000,895 CAULDWELL AVENUE,DPR,False,Hilton White Playground,Y,Hilton White Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X112/,No,79,32,15,{6174C3B5-6ABC-473F-975E-33D2187659F6} +"MULTIPOLYGON (((-73.88559613910786 40.84041662307333, -73.88504032192651 40.840107242433184, -73.88505957597917 40.84008018917048, -73.88557204115229 40.84036530883524, -73.88557234371179 40.84036519117071, -73.88557227333037 40.84036543783621, -73.88559787686232 40.84037968293366, -73.88559613910786 40.84041662307333)))",X148I2,5602,X148I2,X-06,X-06,X-03,X-03,N/B Cross Bronx Exwy bet. Crotona Pkwy and Daly Av,206,17,48,10460,X,0.023,False,Strip,No,100005071,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Park,Y,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148I2/,No,"79, 87",32,15,{62554866-6428-4EF7-96E6-A34EC5933DF3} +"MULTIPOLYGON (((-74.11309085641811 40.612324834773474, -74.11304995308384 40.61231713412338, -74.11289133750344 40.612287272017184, -74.11276502954176 40.612263492545495, -74.11267105276904 40.61224579939389, -74.1125328619458 40.6122197827111, -74.11238927287056 40.61219274904827, -74.11225026902657 40.61216657883153, -74.11210678774597 40.612139565422595, -74.11194329475886 40.61210878373036, -74.11179347448707 40.61208057570799, -74.11156850082031 40.61203821851841, -74.1114007802094 40.612006639594064, -74.11130664729153 40.611950141988785, -74.1112069327203 40.611890296162954, -74.11093325792555 40.61176318718971, -74.11066004773639 40.611636292341686, -74.11046235793144 40.61154447256465, -74.1103454490854 40.61149017351879, -74.11033030644553 40.61148313966936, -74.11013360379907 40.611391778545524, -74.11007399603862 40.61136409236302, -74.11002581295807 40.61134171279639, -74.10980598996194 40.611239611102214, -74.10970653419889 40.61119341653919, -74.10963004964083 40.6115191812904, -74.10962344631643 40.611516140222, -74.10970154084988 40.611183518264774, -74.11120816354456 40.6118850539345, -74.11140191832644 40.612001790981516, -74.11308815751435 40.612319264098694, -74.11309173562371 40.61231719027842, -74.11373755760819 40.611942823841424, -74.11568936831297 40.61179782532979, -74.11670749615818 40.61153295304348, -74.11671207296966 40.61153176240884, -74.11671264789705 40.61153753867392, -74.11669883127155 40.61154115118842, -74.11641007431905 40.611616647487224, -74.11627023284737 40.61165320883973, -74.11612114545089 40.61169218735866, -74.11597958632251 40.61172919945266, -74.11583267774841 40.61176760716898, -74.11570591418145 40.61180074978028, -74.11569041671385 40.61180480151899, -74.11551544556875 40.61181777571176, -74.11533638280783 40.61183105271703, -74.11517373579662 40.61184311350059, -74.11496590444496 40.61185852417145, -74.11482706580708 40.611868818138895, -74.11467756404132 40.611879903330085, -74.1145768265135 40.611887372761146, -74.11448356080678 40.61189428804546, -74.1143830252707 40.61190174089602, -74.11428455616985 40.61190904211749, -74.11418380910241 40.61191651211399, -74.11408932399748 40.611923516540784, -74.11387033280565 40.611939752179254, -74.11375047121217 40.61194863924081, -74.11373579983233 40.6119570061, -74.1135920206002 40.61203900842462, -74.11345895773863 40.61211489895481, -74.11333223395513 40.61218717198717, -74.11320559725613 40.61225939526457, -74.11309283497786 40.61232370807496, -74.11309085641811 40.612324834773474)))",R075E,6053,R075E,R-01,R-01,R-01,R-01,"SI Expressway, Slosson Ave. to Bristol Ave.",501,49,120,10301,R,0.113,False,Strip,No,100004389,PARK,20100106000000.00000,19530117000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/R075E/,No,63,24,11,{3B3C93FD-6A11-4389-8FBC-F81E6AB68DD4} +"MULTIPOLYGON (((-73.92191988464064 40.80690756995047, -73.92160950760659 40.80677628275115, -73.92178659558547 40.80653344491589, -73.92186821513752 40.80656796864563, -73.92204427841344 40.80632653268979, -73.92218834006547 40.806387357841054, -73.92201221542516 40.80662887952014, -73.92209697183752 40.80666473074311, -73.92209764725104 40.806663804586485, -73.92227313306027 40.80642316033378, -73.92239867031053 40.80647616450666, -73.92274296921711 40.806621533610354, -73.92256660975555 40.80686337924795, -73.92249941116772 40.806834955781945, -73.92232037879282 40.80707697303492, -73.92224127433492 40.80704351301291, -73.92213652243908 40.806999204420734, -73.92205605713846 40.80696516883392, -73.9220192643985 40.806949605850384, -73.92191988464064 40.80690756995047)))",X272,5151,X272,X-01,X-01,X-01,X-01,E. 136 St. bet. Brown Pl. and Willis Ave.,201,8,40,10454,X,0.972,False,Ranaqua Playground,Yes,100004097,PARK,20090728000000.00000,19950914000000.00000,452 EAST 136 STREET,DPR,False,Ranaqua Playground,Y,Ranaqua Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X272/,No,84,29,15,{348269A9-1C12-40D5-82C6-14BD7AFD7767} +"MULTIPOLYGON (((-73.86905996294475 40.82942792625453, -73.86881557970732 40.829460501308766, -73.86838243861251 40.8275124132328, -73.86882828181459 40.82745114628698, -73.86909953709315 40.827413869601806, -73.86955384080777 40.82936209329613, -73.86905996294475 40.82942792625453)))",X124,6307,X124,X-09,X-09,X-09,X-09,"Gleason Ave., Watson Ave. bet. Noble Ave., and Rosedale Ave.",209,18,43,10472,X,3.301,False,Watson Gleason Playground,Yes,100004402,PARK,20100106000000.00000,19380425000000.00000,,DPR,True,Watson Gleason Playground,Y,Watson Gleason Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X124/,No,85,32,15,{B5ED62D4-0372-4681-B78D-20A0AA424B2A} +"MULTIPOLYGON (((-73.99511484462207 40.57161058975795, -73.99588020452796 40.57154519843984, -73.9969245579338 40.571577390683764, -73.99728182188595 40.571619026445696, -73.99737069100318 40.57162825348885, -73.99738409740642 40.57177035028246, -73.99674628678324 40.571837826509274, -73.99675474273008 40.57192745146369, -73.99591567249816 40.571977025592446, -73.99589990055793 40.57180983362521, -73.99534208316285 40.5717912084225, -73.99512975208741 40.5717019071939, -73.99511484462207 40.57161058975795)))",B268,5856,B268,B-13,B-13,B-13,B-13,"Public Beach, W. 29 St. and W. 32 St.",313,47,60,11224,B,1.38,False,Nautilus Playground,Yes,100004329,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Nautilus Playground,Y,Nautilus Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B268/,Yes,46,23,8,{480530E3-64D2-453B-8579-AF47C40A0D3D} +"MULTIPOLYGON (((-73.86142591163686 40.83327871842415, -73.86138723831338 40.83332340045609, -73.86134151550054 40.8333640613922, -73.86128945943776 40.833400061833416, -73.86123188699003 40.833430837243064, -73.86116970140321 40.8334559060347, -73.86110360703333 40.8334752186215, -73.86103483252127 40.833488038070996, -73.86096447616848 40.83349416129003, -73.86089366570216 40.833493488780384, -73.86082353336083 40.83348603181311, -73.86075520285536 40.83347191061139, -73.86068976448085 40.833451348917784, -73.86062826799242 40.833424678487454, -73.86057169655287 40.83339232374811, -73.86056242556735 40.83338594243529, -73.86052282805488 40.83334408185168, -73.86049104660063 40.83329853957845, -73.86046766393663 40.83325015108622, -73.86045311092154 40.8331998056904, -73.86044765472424 40.83314842852637, -73.8604513953065 40.833096962535045, -73.86046426427139 40.83304635315302, -73.86048602371754 40.83299753030136, -73.86051627576329 40.83295139038728, -73.8605544637658 40.83290878099789, -73.86059988658141 40.83287048560942, -73.86065170927256 40.832837206491604, -73.86070898091022 40.83280955572474, -73.86077065001642 40.83278804081143, -73.86083558117852 40.83277305659255, -73.86090258470061 40.832764878980335, -73.86097042847253 40.832763657769206, -73.86103786642391 40.83276941576954, -73.86110440088117 40.83278089799251, -73.86116824413305 40.832799180180615, -73.86122819828996 40.83282391960911, -73.86128313684723 40.83285465117392, -73.86133202837125 40.83289079912584, -73.8613739554529 40.83293168429664, -73.86140813127568 40.83297653852622, -73.86143391262556 40.83302451998585, -73.86145081646025 40.833074727605414, -73.86145852580096 40.8331262190898, -73.86145689562632 40.83317802803506, -73.86144595521012 40.83322918104044, -73.86142591163686 40.83327871842415)))",X025,5996,X025,X-09,X-09,X-09,X-09,Westchester Ave. bet. Virginia Ave. and Metropolitan Ave.,209,18,43,"10462, 10472",X,1.11,False,Hugh J. Grant Circle,Yes,100004697,PARK,20100106000000.00000,19040502000000.00000,,DPR,True,Hugh J. Grant Circle,Y,Hugh J. Grant Circle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X025/,No,87,32,15,{59B83AE8-2AB8-4954-B98A-C198C3CDD2F6} +"MULTIPOLYGON (((-74.15439872286494 40.60609448147817, -74.15445601531852 40.60480494985027, -74.15446379670577 40.60306545882537, -74.15443281227297 40.60166147092083, -74.1543609167486 40.60030452979832, -74.15430368587425 40.59963680441446, -74.15428400181764 40.59946344220614, -74.15423305426366 40.599110856494065, -74.15408856898502 40.598332272846775, -74.15403009501418 40.598113707653866, -74.1539795349445 40.59792863221121, -74.15390188644793 40.59770244988956, -74.15380482825911 40.59742045650679, -74.15366529771609 40.59711500985818, -74.15350197135895 40.59678988235167, -74.15336644804276 40.596549082189405, -74.15317675591054 40.59622900801114, -74.1530142417414 40.59598824429803, -74.1529171319696 40.59586103496468, -74.15273112383765 40.59561736999953, -74.1524295416236 40.59526805552059, -74.1521666905324 40.59499215821892, -74.15164017772686 40.59450970412471, -74.15125388384583 40.594210456668634, -74.15082437506844 40.5939042918796, -74.15051156756888 40.593698986281666, -74.14968116390004 40.5931863651296, -74.14929845848344 40.592974163685405, -74.14887626297006 40.59273658313237, -74.14835005342358 40.59245433157487, -74.14801598616961 40.59228367987972, -74.14771532351726 40.592129166696964, -74.1471373809008 40.59185631000713, -74.14681855247406 40.59171568941165, -74.14625074385876 40.59146903677799, -74.14570344183767 40.591242373091866, -74.14576151077303 40.591062790735386, -74.14580256093652 40.59086116979782, -74.14582263822312 40.590645408410026, -74.14587236199658 40.59011118306607, -74.14598970210935 40.59018021052592, -74.14599028995814 40.5901805564809, -74.14631800519366 40.590373337245346, -74.14631859422519 40.590373682296644, -74.14639245189086 40.59041713037903, -74.14639304092312 40.59041747542994, -74.14646601395089 40.59046040408893, -74.14646660180264 40.59046074914096, -74.14653957728756 40.590503677750085, -74.14654016514008 40.590504022801746, -74.14661314071952 40.59054695136397, -74.14661372857083 40.5905472955147, -74.14668670306364 40.590590224031544, -74.14668729091768 40.59059056908245, -74.1467602666863 40.59063349755087, -74.1467608557224 40.59063384259991, -74.14683382922307 40.59067677102442, -74.1468344182599 40.59067711607305, -74.14690739303443 40.59072004354866, -74.14690798089073 40.59072038859847, -74.14698095694314 40.59076331692618, -74.14698154480023 40.590763661975565, -74.1470468586664 40.590802083031974, -74.14704744652416 40.590802428081034, -74.14721583005897 40.59090147817535, -74.14721641792046 40.59090182412407, -74.14803490163972 40.59138328163176, -74.14803549068898 40.5913836266742, -74.14804450302354 40.59138853192609, -74.14820805849347 40.5914851346572, -74.15046546672804 40.59281279397334, -74.15064040749336 40.59291507414549, -74.15089754752282 40.59306541247801, -74.15089774743045 40.59306552928365, -74.15196357600517 40.593688657179285, -74.1521748574777 40.593834727167504, -74.15319013843411 40.59442666331228, -74.15326736844294 40.594471690099056, -74.15333887197619 40.59451337812769, -74.1534103744153 40.59455506521268, -74.15347758761618 40.59459425092268, -74.15354480089808 40.594633437493755, -74.1536163035943 40.59467512445014, -74.15368780756116 40.59471681136029, -74.1537550210877 40.59475599690741, -74.15382223351384 40.59479518331718, -74.1538894471981 40.59483436878538, -74.15395666096333 40.59487355511465, -74.15405818501993 40.5949327437805, -74.1541986878203 40.59501327110901, -74.15420678397501 40.59501903080333, -74.15421533278145 40.595024361240185, -74.15428497671466 40.5950649642424, -74.15435057029626 40.595103205164946, -74.15442126840534 40.59514442172651, -74.15449874376341 40.59518958963794, -74.1545767385452 40.59523506027503, -74.15464821295635 40.59527672951671, -74.15471738422934 40.595317055531325, -74.15479732409854 40.59536365896058, -74.15487239026514 40.59540742144547, -74.15494677277908 40.595450786771465, -74.15502140617521 40.59549429669516, -74.15516013417287 40.595575172843425, -74.15516915942483 40.59558008382222, -74.15517857462987 40.59558452960333, -74.15518835022043 40.59558849581812, -74.15519844599216 40.59559196631146, -74.15520881819883 40.5955949258334, -74.15521942191913 40.59559736183721, -74.15523021105649 40.59559926447932, -74.15524114069784 40.59560062481512, -74.15528196847036 40.59561775525454, -74.15856284708563 40.59630953239816, -74.15962604253046 40.59653368408761, -74.16062746442252 40.59643078252461, -74.16187574821635 40.59630250009249, -74.16192992932822 40.59651222156566, -74.16195991415368 40.596664221099374, -74.16178065332545 40.59668444902743, -74.16181169044091 40.59684178362124, -74.16143941407879 40.596883789848, -74.16145786437562 40.59710825196926, -74.16149908527426 40.5976097382068, -74.16152342737908 40.597905876433416, -74.16158331706386 40.59863445660321, -74.1623291800953 40.59853980951602, -74.1623404530326 40.5985931856568, -74.16241821487478 40.59898734316748, -74.16251941229771 40.599500296099656, -74.16264503175367 40.60024070288322, -74.16220187794343 40.60028648956592, -74.16228816249307 40.60064649531569, -74.16238259770175 40.6010405004533, -74.16246639792736 40.60139012201467, -74.16248412872987 40.60146410558727, -74.16250904617272 40.60156805922926, -74.16243800688366 40.601760532227516, -74.16239119801932 40.601887359690174, -74.16233869627312 40.60202960403345, -74.16228862868759 40.60216525938395, -74.16225661095089 40.60225200520486, -74.16224004511827 40.602297136720054, -74.16219227710995 40.60242728477785, -74.16212539007039 40.6026095181541, -74.16209997331603 40.60270080766224, -74.16206009110482 40.60284404355212, -74.16198955833477 40.603097363906585, -74.16183751831925 40.60364341061691, -74.16163679859177 40.60436427483797, -74.16145246545742 40.60432419228472, -74.16090560624065 40.60420527873718, -74.16002695540008 40.604041254960855, -74.16000922067835 40.60409986500464, -74.15996483978154 40.60424653649685, -74.15988524205306 40.604509593780435, -74.15985354907988 40.60461433181135, -74.1597722011143 40.60477094958122, -74.15968390661024 40.60494093890726, -74.15957787216907 40.60514508262782, -74.15946970240195 40.60535333739555, -74.15937362522284 40.60533743864681, -74.15934744512928 40.60542081207315, -74.15931723464342 40.60551702533732, -74.15929083864471 40.605601086147615, -74.15926451176638 40.605684927127605, -74.1592416523251 40.60575772648372, -74.15922600577561 40.6058075606044, -74.15921395667327 40.6058290070479, -74.15917327843236 40.6059014267367, -74.1591388711608 40.60596268024504, -74.1591042332189 40.60602434379998, -74.15907039527508 40.60608458250958, -74.15906900693527 40.606087056367286, -74.15903436886215 40.6061487189999, -74.15900053079226 40.60620895768817, -74.15896589377418 40.60627062029777, -74.15893102373258 40.60633269835982, -74.15888416196594 40.60641612097979, -74.15883806133208 40.606498189942045, -74.1587994495227 40.606566927099166, -74.15876777005778 40.60662332200209, -74.15873049941608 40.60668967359758, -74.1586927568845 40.60675686331845, -74.15865548373266 40.60682321579244, -74.15861796695415 40.606890002642174, -74.15858356219549 40.60695125057022, -74.1585451734188 40.60701959110015, -74.15850253115161 40.60709550097619, -74.15846267615711 40.607166448712675, -74.15842940924736 40.607220344954136, -74.15834524065582 40.60735670828543, -74.15828699405888 40.60745107148136, -74.15824341804121 40.60745979721823, -74.15833742548557 40.60772926634652, -74.15722677405672 40.60795165779628, -74.15680163126909 40.608017308568954, -74.15550434308275 40.60827204506422, -74.15370345841283 40.60862563986394, -74.15367207377733 40.608564475990114, -74.15354931371694 40.6082001119838, -74.1535174307509 40.60807675591615, -74.15350144720246 40.607997020648696, -74.15349936897317 40.60795187750751, -74.15350311925087 40.60786705134191, -74.15351088435612 40.6078083511885, -74.15353045916653 40.607731577072634, -74.15355004887577 40.60766232770282, -74.15357164529463 40.60760661861302, -74.15358735187529 40.607565966929414, -74.15439872286494 40.60609448147817)))",R030,5405,R030,R-02,R-02,R-02,R-02,"Richmond Ave., Victory Blvd., Ashworth Ave., and Forest Hill Rd.",502,50,122,10314,R,214.947,False,Willowbrook Park,No,100003692,PARK,20100106000000.00000,19400130000000.00000,1953 RICHMOND AVENUE,DPR,True,Willowbrook Park,Y,Willowbrook Park,Flagship Park,Nature Area,http://www.nycgovparks.org/parks/R030/,No,63,24,11,{4476A962-DE7C-4E4A-ABF5-E268D1ECC7F9} +"MULTIPOLYGON (((-73.88995334913588 40.87692228882326, -73.8916908085442 40.874698028251686, -73.89380670841415 40.875656907601375, -73.89208229763489 40.87785260600117, -73.88995334913588 40.87692228882326)))",X136,4797,X136,X-07,X-07,X-07,X-07,Paul Ave. - Goulden Ave. bet. Bedford Par,207,11,52,10468,X,15.32,False,Harris Park,Yes,100004347,PARK,20100106000000.00000,19400404000000.00000,3034 GOULDEN AVENUE,DPR,False,Harris Park,Y,Harris Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X136/,No,81,34,13,{39105060-058D-4710-9A15-A7A1784CE9D4} +"MULTIPOLYGON (((-73.88822914546702 40.84190918772661, -73.88823731794596 40.8419026292457, -73.88880998173046 40.84222164587836, -73.88891037147492 40.842276540345026, -73.88892914521944 40.84228802801153, -73.88921913794952 40.84244957268594, -73.88920739935907 40.84246004315655, -73.88822914546702 40.84190918772661)))",X148H3,5659,X148H3,X-06,X-06,X-06,X-06,Marimon Av bet. N/B Cross Bronx Exw and Fairmount Pl,206,17,48,10460,X,0.023,False,Strip,No,100008322,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148H3/,No,79,33,15,{E1E6D3DC-8D0D-4E48-A0A5-E4CBBC0DDE8E} +"MULTIPOLYGON (((-74.18464800270051 40.52633017320642, -74.18368221251313 40.52499945863184, -74.18433588804855 40.52476332833279, -74.18458400414563 40.52510476456921, -74.1842698461482 40.52523844688805, -74.18462325398258 40.52572477135042, -74.18493741474151 40.5255910889679, -74.18530198050665 40.52609275820642, -74.18464800270051 40.52633017320642)), ((-74.18541580881102 40.52529851579368, -74.18513769950962 40.52490758976488, -74.184822036673 40.5250391912999, -74.18456846616127 40.52468275160671, -74.18502447634555 40.524518308334194, -74.1852026202328 40.52476872055238, -74.1853920166315 40.52468975892645, -74.18617210517121 40.52578627508227, -74.18552154533924 40.52602245580463, -74.18510014585843 40.52543011898823, -74.18541580881102 40.52529851579368)))",R138,6110,R138,R-03,R-03,R-03,R-03,Kingdom Ave. bet. Hylan Blvd. and Jansen St.,503,51,123,10312,R,4.22,False,Kingdom Pond Park,No,100003821,PARK,20100106000000.00000,19970116000000.00000,,DPR,False,Kingdom Pond Park,N,Kingdom Pond Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R138/,No,62,24,11,{39F9ED0F-8E88-4CEF-A7A9-C75141E86B44} +"MULTIPOLYGON (((-73.86481937522672 40.6750250974707, -73.86475293448912 40.67475890341008, -73.86468211765167 40.674769220201085, -73.8646112996095 40.67477953694706, -73.86458437875424 40.67467167657919, -73.86457091836208 40.67461774504163, -73.86455745798796 40.674563815303124, -73.8645439976375 40.67450988466219, -73.86453053730875 40.67445595401932, -73.86451707699999 40.67440202427505, -73.86450361671477 40.67434809362833, -73.86485769976998 40.67429650888503, -73.86483077753029 40.67418864766664, -73.86476347408262 40.6739189963901, -73.8656748752935 40.673787165015234, -73.86594320150662 40.674862939943004, -73.86481937522672 40.6750250974707)), ((-73.86440939414156 40.67397058084716, -73.86455102618298 40.67394994755533, -73.86461832880293 40.67421959895516, -73.86447669502513 40.67424023322828, -73.86440939414156 40.67397058084716)))",B380,5208,B380,B-05,B-05,B-05,B-05,"Belmont Ave., Sutter Ave., Sheridan Ave. and Grant Ave.",305,42,75,11208,B,2.939,False,Robert Venable Park,Yes,100004081,PARK,20100106000000.00000,19850621000000.00000,1411 SUTTER AVENUE,DPR,True,Robert E. Venable Park,Y,Robert E. Venable Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B380/,No,60,19,8,{A6ED17E2-8381-46C6-AD60-829E06AEDEC3} +"MULTIPOLYGON (((-73.88136169378862 40.74190332065522, -73.88138425436647 40.741881273346486, -73.88285356736351 40.741716963136426, -73.88301194508686 40.74252566394408, -73.88281969836113 40.7427520074297, -73.88136169378862 40.74190332065522)))",Q361,5545,Q361,Q-04,Q-04,Q-04,Q-04,"Broadway., 82 St., 45 Ave.",404,25,110,11373,Q,1.978,False,CC Moore Homestead Playground,Yes,100000236,PARK,20090423000000.00000,19540114000000.00000,,DPR,False,Moore Homestead Playground,Y,Moore Homestead Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q361/,No,39,16,6,{F30E1E00-B68D-451F-95C5-B7E74BBF3DAE} +"MULTIPOLYGON (((-73.95386934152293 40.68242790004166, -73.9538214823354 40.68218878981893, -73.95411094702344 40.68215533085073, -73.95461181578767 40.682097431933926, -73.9554815824192 40.68199688441784, -73.95553395582387 40.682258510354224, -73.95529514479159 40.682286215793795, -73.9552880840391 40.68225094080939, -73.95501362928893 40.68228278137849, -73.95502069108315 40.68231805547956, -73.95466425541399 40.68235940588885, -73.95472237426401 40.682649744640436, -73.95393191534833 40.68274051699623, -73.95386934152293 40.68242790004166)))",B237,5094,B237,B-03,B-03,B-03,B-03,"Bedford Ave., Hancock St., Jefferson Ave.",303,36,79,11216,B,1.547,False,John Hancock Playground,Yes,100004442,PARK,20100106000000.00000,19471003000000.00000,90 JEFFERSON AVENUE,DPR/DOE,Part,John Hancock Playground,Y,John Hancock Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B237/,No,57,25,8,{3D86A608-D970-4B1F-BCE5-8DD2C705437E} +"MULTIPOLYGON (((-74.19809191879783 40.515385483213656, -74.19807221839626 40.51535763316883, -74.19771259305759 40.515370931791864, -74.19721474095029 40.515405451952766, -74.19719996260243 40.51519923142094, -74.19683938124827 40.51522423225332, -74.19683532914682 40.51516767234497, -74.19673671952606 40.513791521928475, -74.19678072893547 40.513544386664655, -74.19678431328622 40.51352425995172, -74.1968581763378 40.513335554858074, -74.19702319557025 40.5134063200075, -74.19713603499396 40.51317636382509, -74.1969693811475 40.513104898327896, -74.19711611335607 40.512719353244336, -74.19721155815702 40.512509322283385, -74.19701175272111 40.51246737378475, -74.19738878245094 40.511371797923765, -74.19741842648628 40.51129411483399, -74.19744150067923 40.511243529219335, -74.1974647817328 40.511198277991355, -74.19748574627899 40.51116128771624, -74.197509632997 40.51112257779668, -74.19753874628687 40.511079389539326, -74.19757232352386 40.51103398008396, -74.19760651872869 40.51099168269132, -74.19781300055797 40.51075208282944, -74.19807457490154 40.510864982471105, -74.19869380005049 40.51018122466959, -74.19851642867795 40.51013096136718, -74.20005480494125 40.51023772628228, -74.20147570794401 40.510353361594014, -74.20249234944741 40.510319136136104, -74.20266972852905 40.51089857349639, -74.20284748724227 40.51147923461591, -74.20354686372542 40.511516600374826, -74.20477136548091 40.511535144302755, -74.20444807905061 40.510769507938875, -74.20694878829602 40.51030241028667, -74.20895289522649 40.50927478803809, -74.20920957276245 40.50914317148664, -74.20952277846732 40.509886740082294, -74.21023147740537 40.51156916270056, -74.20125078792422 40.51324913926445, -74.20037387193524 40.513170858566916, -74.20034361229348 40.51317020987703, -74.20031363802529 40.51317344377188, -74.20028480075149 40.51318046961304, -74.20025791519014 40.513191087862815, -74.20023374502273 40.51320499821396, -74.20021297341557 40.51322180594422, -74.20019619125871 40.51324103454437, -74.2001838736083 40.51326213926664, -74.20017636793031 40.51328452155368, -74.200173889437 40.51330754795764, -74.2001762186918 40.51332925570349, -74.20018301935157 40.51335040902804, -74.200315721126 40.51365248673483, -74.20087938024804 40.51495499348461, -74.20193999282021 40.51570625823228, -74.2026200820335 40.51654766682354, -74.20024120043256 40.51807478269995, -74.20008667331912 40.51816814365855, -74.199959943873 40.51823808990952, -74.19984190537168 40.5182983284745, -74.19972554099148 40.518353401260775, -74.19959181529981 40.518411737925355, -74.19946504044208 40.518462442062415, -74.19934108421057 40.51850792799059, -74.19918322663052 40.51856030044389, -74.19883798443144 40.517180475186635, -74.19883607282891 40.51715031431309, -74.19883728011285 40.51711744013989, -74.19884172859341 40.517085684214386, -74.19885124458666 40.517048204739936, -74.19891934003284 40.51690540211699, -74.19893856543236 40.51685702559203, -74.19894966817832 40.51681272813993, -74.19895535258472 40.516756579185056, -74.19895068548128 40.51669264327056, -74.19891696680703 40.516339404486494, -74.1989123714496 40.516278541056124, -74.19890187038705 40.516224823667415, -74.19887983281548 40.516157621904476, -74.19885260559984 40.51610026923077, -74.19881680989789 40.51604303945666, -74.1987841836557 40.51600089528125, -74.19874212706364 40.515955531817845, -74.19867504278513 40.5158972079951, -74.19816186871613 40.51545633512086, -74.19812416139695 40.51542185044144, -74.19809191879783 40.515385483213656)))",R079,4600,R079,R-03,R-03,R-03,R-03,Hylan Blvd. from Sharrott Ave. to Seguine Ave.,503,51,123,10309,R,104.545,False,Lemon Creek Park,Yes,100003787,PARK,20100106000000.00000,19620524000000.00000,91 TRENTON COURT,DPR,True,Lemon Creek Park,Y,Lemon Creek Park,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/R079/,Yes,62,24,11,{063E966B-79E9-4BFF-80E0-045133F3CB3C} +"MULTIPOLYGON (((-73.90744345023798 40.61993364201536, -73.90745179868681 40.61993347853824, -73.90745291062653 40.619933573988085, -73.90745931757235 40.61993412486154, -73.9074670350345 40.61993559892293, -73.90747544805572 40.619938300953756, -73.9074757386492 40.61993839394132, -73.90748264303413 40.61994157383445, -73.90749013363825 40.61994642556591, -73.90750705712587 40.61996082680679, -73.90751731114544 40.61996967907286, -73.90753265617928 40.61998292547275, -73.90757403226064 40.62001868781575, -73.90760180204978 40.620042692813215, -73.90761540720199 40.6200544519439, -73.9076332676808 40.62006987420922, -73.90765466462189 40.620088347576065, -73.9076596160671 40.62009283614773, -73.9076627106755 40.620096635229736, -73.90766497100299 40.62010123780673, -73.907665493746 40.6201035210472, -73.90766563236129 40.62010412630862, -73.90766618095698 40.62010651583131, -73.90766611166478 40.62010791068256, -73.90766593053645 40.620111554044826, -73.90766579161934 40.62011202130363, -73.90766465539598 40.62011580888261, -73.90766453191948 40.6201162203215, -73.90766437912718 40.620116466041004, -73.90766286542316 40.620118896231745, -73.90766114089024 40.62012166484896, -73.90766036097514 40.62012246568615, -73.90765747091663 40.620125428780135, -73.90765219990348 40.62012897439954, -73.90764419697727 40.62013222155255, -73.90763826850527 40.62013347661833, -73.90762387363237 40.620134712273575, -73.90761501505375 40.62013541656639, -73.90760448758702 40.620136253694824, -73.90757757379207 40.6201384113209, -73.90752494113082 40.62014263115975, -73.90748745374334 40.62014564565932, -73.90748701406488 40.62014568042576, -73.90747582508119 40.6201463044871, -73.90742444707058 40.620149115974456, -73.90740335621398 40.62015026966539, -73.90736231620681 40.62015251401867, -73.9073505599452 40.62015314571535, -73.90732604517926 40.62015446232842, -73.90730210530901 40.6201553894743, -73.90729659318893 40.6201555300133, -73.9072899613558 40.62015521308489, -73.90728285234424 40.62015470215927, -73.90727746464384 40.62015375406788, -73.9072721777882 40.620152524194474, -73.90726701659396 40.62015101345971, -73.90726200467971 40.62014923448989, -73.9072584388943 40.620147741251124, -73.90725753298248 40.620147359599905, -73.90725253028732 40.62014489984327, -73.90724811505126 40.62014236581718, -73.90724388809225 40.620139565388605, -73.9072433663083 40.620139153429534, -73.90724018010788 40.62013664741038, -73.90723651727131 40.62013355746902, -73.90723648540775 40.62013352502454, -73.90723326948228 40.62013029856448, -73.90723061069441 40.62012670604189, -73.90722811273429 40.62012303980635, -73.90722577677494 40.62011930616237, -73.90722361579488 40.620115520429366, -73.90722170169857 40.62011181594247, -73.90722165219815 40.62011171864625, -73.90722031317783 40.620107495923385, -73.90722021333694 40.62010705548804, -73.90721944169981 40.62010359776535, -73.90721888960944 40.620099482839585, -73.90721870981362 40.62009534840277, -73.9072189703633 40.6200906992234, -73.90722002244283 40.620084548613875, -73.90722189571507 40.62007851213278, -73.9072242987024 40.62007313255892, -73.90722678875848 40.62006887960694, -73.90723036237108 40.62006388730112, -73.90723335239785 40.620060434415116, -73.90723491098362 40.620058884075206, -73.90723682815 40.62005697741834, -73.90723728132343 40.62005658605742, -73.90724022991316 40.62005403636028, -73.90724115504229 40.62005334460611, -73.90724453376899 40.62005082227162, -73.90725324916761 40.620045140712534, -73.9072861963723 40.62002401495245, -73.90729226320845 40.62002013769938, -73.90729633930886 40.62001753217722, -73.9073279284844 40.61999734005075, -73.90733979600549 40.619989755523775, -73.90735035174522 40.61998300922383, -73.90735832414222 40.619977914197634, -73.90736965937514 40.619970669635514, -73.90739823815908 40.6199524021788, -73.90740247984648 40.61994969322637, -73.90741255649736 40.61994326982185, -73.90741740319372 40.61994061178533, -73.90742106663018 40.61993900730571, -73.90742343875738 40.619937969114325, -73.90742381000646 40.619937850544545, -73.90742987529721 40.61993592831391, -73.90743656985723 40.61993445955171, -73.90744345023798 40.61993364201536)))",B190,6364,B190,B-18,B-18,B-18,B-18,"Ave. U, E. 71 St., Veterans Ave.",318,46,63,11234,B,0.15,False,Barone Triangle,Yes,100003691,PARK,20100106000000.00000,,,DPR,False,Barone Triangle,Y,Barone Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B190/,No,59,19,8,{71A8EBAA-13A5-4B2C-BE0D-F8F2E1485B6B} +"MULTIPOLYGON (((-73.89579162165538 40.74284649598181, -73.89579844986132 40.74283122685068, -73.89596137766 40.74286120525667, -73.89607820507011 40.74290100690366, -73.89583979057268 40.7430987239806, -73.89579162165538 40.74284649598181)))",Q341F,5913,Q341F,Q-02,Q-02,Q-02,Q-02,"Woodside Ave., 69 St., the BQE",402,26,108,11377,Q,0.094,False,Winfield Plaza,Yes,100000435,PARK,20090423000000.00000,19551117000000.00000,,DPR,True,Crosson Park,N,Crosson Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q341F/,No,34,16,14,{22894D91-6163-442C-A152-340A61EC861E} +"MULTIPOLYGON (((-73.97066054945262 40.761682927990854, -73.97067700038374 40.761681045622375, -73.97068804215904 40.76168276209233, -73.97069798306433 40.761685942501536, -73.97070719663688 40.76169219254475, -73.97071620405909 40.761704015757104, -73.97071799952234 40.761717383302084, -73.97071529189299 40.76172612200982, -73.97071062053958 40.7617324666774, -73.97034541446622 40.76223367327145, -73.9703375008721 40.762238883353746, -73.9703253680044 40.762245698848645, -73.97030796130242 40.76224729636107, -73.97029372380234 40.76224368346907, -73.97027895769598 40.762235658867745, -73.97027263060497 40.76222603174359, -73.97027158103253 40.762216007057546, -73.97027369715296 40.76220598228789, -73.97027950035583 40.76219796299225, -73.9706362682697 40.76169996565301, -73.97064161597886 40.7616933753231, -73.97064972997964 40.761687379130144, -73.97066054945262 40.761682927990854)), ((-73.97019161902521 40.76233009111109, -73.97020892463904 40.762329488647474, -73.9702222338082 40.762332731202704, -73.97023021871776 40.76233759238806, -73.97023713938265 40.762344070603895, -73.97024139377216 40.76235135948504, -73.97024325519432 40.762360064241385, -73.97024138581305 40.76236917326103, -73.97023739065067 40.76237544694362, -73.97010765820326 40.76255293788976, -73.9698887675136 40.76285859221035, -73.96987931162664 40.762866820348144, -73.96986293786507 40.76287282513153, -73.96985023460529 40.762873036127786, -73.96983612453405 40.76287024087087, -73.96982483591616 40.76286401633022, -73.96981552411474 40.762852208279035, -73.96981327340717 40.76284018865793, -73.96981723019465 40.762829888825465, -73.97005630298187 40.76249584158065, -73.97008667245625 40.76245415071396, -73.97016951883677 40.7623422313942, -73.97017750991274 40.76233595964887, -73.97019161902521 40.76233009111109)))",M060A,82906,M060A,M-05,M-06,M-05,M-05,E 57 St To E 59 St and Park Av,105,4,18,"10017, 10022",M,0.23,False,Park Avenue Malls 57th-59th,No,100005046,PARK,20100106000000.00000,18880301000000.00000,,DPR,False,Park Avenue Malls,Y,Park Avenue Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M060A/,No,73,"28, 27",12,{E641E52F-4D7B-4C0B-A33C-037BF2A43CC6} +"MULTIPOLYGON (((-74.00558016086472 40.73708349257575, -74.00558225987501 40.73708348436947, -74.0055837787965 40.73708359685927, -74.0055855475283 40.73708386062225, -74.00558745360543 40.73708431168407, -74.00558930405488 40.73708493474556, -74.00559118767204 40.73708578653433, -74.00559277769491 40.73708671938302, -74.0055943606358 40.737087904374135, -74.00559556828506 40.73708905156216, -74.00559679845907 40.73709056885771, -74.00559766280979 40.73709201683198, -74.0055983188105 40.737093607997025, -74.00559866580255 40.73709499476189, -74.0055988245829 40.737096673300364, -74.0055987370987 40.73709813212692, -74.00553096859907 40.73745576928985, -74.00552971504501 40.737457900851496, -74.00552826614435 40.737459960381834, -74.00552660650739 40.737461956886776, -74.00552477519844 40.73746384533903, -74.00552258991233 40.73746577883356, -74.00552069108633 40.73746723774688, -74.00551771260112 40.73746919739408, -74.00551476368467 40.73747081664793, -74.0055113009586 40.73747238099534, -74.00550756355337 40.73747372383094, -74.00550366748496 40.737474790218144, -74.00549875326445 40.73747569726403, -74.00549460379125 40.737476112596056, -74.00549116935788 40.7374762235223, -74.00518880342484 40.7374759016534, -74.00518633144496 40.73747546952112, -74.00518352676599 40.737474674499246, -74.00518107013194 40.7374736678423, -74.00517894378922 40.7374725071837, -74.0051773288873 40.737471393328455, -74.00517577197257 40.73746998230307, -74.00517390720019 40.73746794814028, -74.00517266160107 40.73746595087044, -74.00517172497041 40.737463633006065, -74.00517125714936 40.73746121516424, -74.00517136701046 40.7374581237168, -74.00517212211798 40.73745542936426, -74.0051734135416 40.73745296191552, -74.00517490389919 40.73745103476236, -74.00517635049225 40.73744961099488, -74.00556890253505 40.73708737701005, -74.00557020353907 40.73708647914109, -74.00557118729296 40.73708592257975, -74.00557340696886 40.737084841863194, -74.00557521825236 40.73708429426691, -74.00557652759116 40.737083968219785, -74.00557819683088 40.73708367547393, -74.00558016086472 40.73708349257575)))",M001,5742,M001,M-02,M-02,M-02,M-02,"Hudson St, 8 Av, W 12 St",102,3,6,10014,M,0.222,False,Abingdon Square,Yes,100004667,PARK,20100106000000.00000,18310422000000.00000,,DPR,False,Abingdon Square,Y,Abingdon Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M001/,No,66,27,10,{D4618026-3E38-46A3-83F0-C1C87E1E4DF2} +"MULTIPOLYGON (((-73.99459582875232 40.57306887966727, -73.99481843995483 40.57304031808095, -73.9949524140502 40.57386354844027, -73.99481990420799 40.57387976278858, -73.99467358693387 40.573902195366735, -73.99454531977854 40.573923820846474, -73.99443841624638 40.573367414949566, -73.99464801995866 40.573340522636215, -73.99459582875232 40.57306887966727)))",B562,12290,B562,B-13,B-13,B-13,B-13,Surf Ave. bet. W. 29 St. and W. 28 St.,313,47,60,11224,B,0.687,False,,,100024468,PARK,20160222000000.00000,20160119000000.00000,2999 SURF AVENUE,DPR,False,Surfside Multi-Cultural Garden Coalition,,Surfside Multi-Cultural Garden Coalition,,Garden,,No,46,23,8,{CF34F338-9126-4E03-865D-AA449213EEC1} +"MULTIPOLYGON (((-73.98985510323615 40.7003933131295, -73.9899082786859 40.69950097515218, -73.98995377139421 40.6994490249839, -73.99013414680753 40.69645712259904, -73.99108277844691 40.69649164281017, -73.99110442861674 40.69657426290442, -73.99111272766432 40.696606830579476, -73.99112039051634 40.69663688397392, -73.99113275514337 40.69668548378446, -73.99114609502247 40.69674065020524, -73.99116128482012 40.69680900837325, -73.99117512290594 40.696881692496774, -73.99118734772117 40.6969592941929, -73.99120003783597 40.69706160868514, -73.99120359831011 40.697094964838136, -73.9912088302484 40.69714894195245, -73.99121296572908 40.69720041645841, -73.9912164113775 40.69724330272446, -73.99121916717856 40.69728667791575, -73.99122165316517 40.69733047452599, -73.99122414387641 40.697374356684946, -73.99122663459096 40.697418238843596, -73.99122913829501 40.697462338926954, -73.99123266143086 40.697509984404874, -73.9912379313616 40.69758139813888, -73.99124111105547 40.69765860290796, -73.99124335306772 40.69774047586088, -73.99124621801231 40.697845002148725, -73.99124815230908 40.697999751737605, -73.99124923422227 40.69808619649962, -73.99124893117376 40.698213564036266, -73.9912433287382 40.698421165911135, -73.9912368226422 40.69853621486301, -73.99122650801115 40.69864086530764, -73.99121619452916 40.69874552925775, -73.99119751506583 40.698882760490974, -73.99118803035991 40.698937976472756, -73.99116984312809 40.699029544563174, -73.9911529801136 40.699092365700736, -73.99113812402136 40.69914445198406, -73.99112140733213 40.699200888495945, -73.9910725102606 40.6993337255681, -73.99104330975295 40.69940561118545, -73.99099902821341 40.69951111263534, -73.99091914871585 40.69969304583281, -73.99089022498366 40.699754615163016, -73.990817873297 40.699741875271854, -73.99074437564396 40.699733780084514, -73.99067024551564 40.69973038637282, -73.99059600350623 40.69973171939232, -73.99052216666526 40.699737767478794, -73.99044867749558 40.69975332855679, -73.99037812763495 40.69977540413823, -73.99031150864381 40.69980368183425, -73.99024975885494 40.69983776640629, -73.9901937468103 40.69987717526167, -73.99014426060977 40.699921355561614, -73.99010199726244 40.69996968512068, -73.99006549678712 40.70002148663561, -73.99003547520535 40.7000756435388, -73.99001219290787 40.700131689392606, -73.98999585113009 40.70018913794207, -73.98998658958337 40.70024749392067, -73.98998487384232 40.70031097266749, -73.9899899486331 40.700374346644594, -73.99000178327417 40.700437196209876, -73.99002029620407 40.700499105317576, -73.98985510323615 40.7003933131295)), ((-73.99021464962888 40.69998095655758, -73.9902558943909 40.699955285556385, -73.9903022225773 40.69993525937862, -73.99035231719414 40.699921447031414, -73.99040475005555 40.69991424281513, -73.99045802792924 40.69991385191959, -73.99051063276461 40.69992028592509, -73.99056106783603 40.699933360104836, -73.99060789560191 40.6999527042339, -73.99064978266512 40.69997776529388, -73.99068553526456 40.70000782998792, -73.99071413476885 40.70004204275309, -73.99073476843674 40.70007942917508, -73.99073521925988 40.7000793067417, -73.99070872871552 40.700134946347106, -73.99065571926072 40.70024505667146, -73.990613909711 40.700332154397806, -73.99048719032542 40.700595992220165, -73.99047367720857 40.70061717294628, -73.9904640278084 40.70062668785774, -73.9904505031002 40.70063783147314, -73.99043528528772 40.700648277949945, -73.9904186821881 40.700656789109104, -73.99040326401457 40.700661698316615, -73.99038389156674 40.70066606598406, -73.99036867033918 40.700667274098976, -73.9903512224986 40.70066693494566, -73.99028842876446 40.70066549424832, -73.99021210318026 40.70060264915383, -73.99017331765008 40.70055798495513, -73.99014086994931 40.70051048467331, -73.99011511259273 40.7004606661383, -73.99009632709469 40.70040907328806, -73.99008472042046 40.70035627076491, -73.99007780346057 40.7002995280038, -73.9900796151683 40.700242559065515, -73.99009013174187 40.70018613748742, -73.99010920869266 40.700131031391514, -73.99013658676478 40.70007799177849, -73.99017189430447 40.70002773902034, -73.99021464962888 40.69998095655758)), ((-73.99039710398216 40.699849472844306, -73.99043868719522 40.69983063309034, -73.99048309175002 40.69981598814, -73.9905295887596 40.69980577836688, -73.99057741858569 40.69980017120152, -73.99064662896164 40.69979530417567, -73.9907160726171 40.69979752145582, -73.99078450365613 40.69980678331927, -73.99085069513036 40.699822922174995, -73.99083318738106 40.69987263895594, -73.99080982643372 40.69992094236323, -73.9907808063797 40.69996743438244, -73.99077816640236 40.69996903888354, -73.99077522948383 40.699970309270746, -73.99077206898765 40.69997121583309, -73.99076875945968 40.69997173606368, -73.99076538491023 40.699971855561095, -73.99076202816464 40.699971573431434, -73.99075876849776 40.69997089508413, -73.99075568991549 40.69996983853622, -73.99075286459066 40.69996842810733, -73.99074587151165 40.69996185650852, -73.99071261670372 40.69993160562861, -73.9906740428273 40.69990526523217, -73.99063093664446 40.69988337028211, -73.99057558607272 40.699865119586896, -73.99051731918571 40.699853238847474, -73.990457393688 40.6998479857101, -73.99039710398216 40.699849472844306)))",B113A,5462,B113A,B-02,B-02,B-02,B-02,"Cadman Plaza West, Cadman Plaza East bet. BQE and Tillary St.",302,33,84,11201,B,10.384,False,Cadman Plaza Park,Yes,100004616,PARK,20100106000000.00000,19500720000000.00000,172 CADMAN PLAZA EAST,DPR,True,Cadman Plaza Park,Y,Cadman Plaza Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B113A/,No,52,25,7,{BF5780E2-A921-4BEE-8F48-E6B26BE6860E} +"MULTIPOLYGON (((-73.93928519360402 40.70218709967027, -73.93926093294851 40.70203814307665, -73.93903721332799 40.70205965960407, -73.93894825365564 40.70151344376069, -73.93978799554179 40.70133050222361, -73.93989334672796 40.70197731588856, -73.93967604248616 40.701998216554806, -73.93970030405383 40.70214717396221, -73.93965643850004 40.70215884772435, -73.9396215049192 40.702167052880604, -73.93955676697676 40.70217842929103, -73.9394958686519 40.702185922874456, -73.93945445434039 40.702187617473115, -73.93934137537691 40.70218884026481, -73.93928519360402 40.70218709967027)))",B310,4854,B310,B-01,B-01,B-01,B-01,Flushing Ave. bet.. Beaver St. and Garden St.,301,34,90,11206,B,1.29,False,Bushwick Pool & Playground,Yes,100004086,PARK,20100106000000.00000,19620823000000.00000,817 FLUSHING AVENUE,DPR,True,Bushwick Playground,Y,Bushwick Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B310/,No,53,18,7,{A9927825-8606-4506-8FE0-28D7C09DCD97} +"MULTIPOLYGON (((-73.99396445493296 40.573158242401625, -73.99410484213598 40.57313822022477, -73.99415554058655 40.573414704559106, -73.99401442693583 40.57343006564467, -73.99396445493296 40.573158242401625)))",B586,39507,B586,B-13,,,,Surf Ave. bet. W. 28 St. and W. 29 St.,313,47,60,11224,B,0.091,False,,,100024487,PARK,,20161214000000.00000,2801 SURF AVENUE,DPR,False,Garden,,Garden,,Garden,,No,46,23,8,{B75F0F1A-2F7F-41F5-87B7-046256AAB9CE} +"MULTIPOLYGON (((-73.98387235417637 40.71972956875902, -73.98389528356839 40.71968487786771, -73.98414035628277 40.71975978657361, -73.98411742821307 40.71980447661291, -73.98387235417637 40.71972956875902)), ((-73.9839429734945 40.72000707881421, -73.98403028258684 40.71983690001905, -73.9840912354932 40.71985553099929, -73.98400392653231 40.72002570893972, -73.9839429734945 40.72000707881421)))",M408,13489,M408,M-03,,,M-03,"Attorney St., Stanton St.",103,1,,10002,M,0.061,False,,,100036972,PARK,,20160209000000.00000,137 ATTORNEY STREET,DPR,False,Siempre Verde Garden,,Siempre Verde Garden,,Garden,,No,65,26,12,{800C960B-1D99-4A9F-A390-91E072075F8C} +"MULTIPOLYGON (((-73.94009513965999 40.71483456502267, -73.94010248935453 40.71473416372064, -73.94078518865854 40.71476325939512, -73.94013890925679 40.71493103156906, -73.94009513965999 40.71483456502267)))",B024,5939,B024,B-01,B-01,B-01,B-01,Metropolitan Ave. and Orient Ave.,301,34,90,11211,B,0.149,False,Orient Grove,Yes,100004263,PARK,20100106000000.00000,18960731000000.00000,,DPR,False,Orient Grove,N,Orient Grove,Sitting Area/Triangle/Mall,Garden,http://www.nycgovparks.org/parks/B024/,No,53,18,12,{0C34ED77-1682-451F-8BFA-3C1E432B65D7} +"MULTIPOLYGON (((-73.9654948142079 40.67648312083599, -73.96553293899957 40.67637859780343, -73.96579677042008 40.67643377273342, -73.96589185372424 40.676453657311264, -73.96607505810097 40.67649196984692, -73.96590692046492 40.67695294588799, -73.96560504845107 40.676889678629806, -73.96536487963499 40.676839343451924, -73.9654948142079 40.67648312083599)))",B161,5488,B161,B-08,B-08,B-08,B-08,Underhill Ave. bet. Prospect Pl. and Park Pl.,308,35,77,11238,B,0.59,False,Underhill Playground,Yes,100004171,PARK,20100106000000.00000,19400307000000.00000,121 UNDERHILL AVENUE,DPR,True,Underhill Playground,Y,Underhill Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B161/,No,57,20,9,{3F5CAC02-C6E1-470F-A966-C1007D292BFD} +"MULTIPOLYGON (((-73.96535651528673 40.67215243584668, -73.96462701635878 40.67191642564717, -73.96535286788617 40.66991872524024, -73.96227547157204 40.66923926834305, -73.96190265427573 40.667312104928484, -73.96187664569551 40.66717765650635, -73.96147086079552 40.66507994325998, -73.96143601210306 40.66489978334703, -73.96142077028006 40.66482098758346, -73.9614066356367 40.66474791226666, -73.96141918508266 40.664748285687786, -73.9618940770615 40.66366795429448, -73.96206683258964 40.6633882165049, -73.96239676407268 40.66336324545246, -73.96347584053694 40.66494307770915, -73.96357228328742 40.665084272283025, -73.9650824371482 40.66729507218147, -73.96517282321413 40.66742738714975, -73.9652442249845 40.66753191269809, -73.96524587703603 40.667532100504445, -73.96590564079148 40.668477778189605, -73.96652056875863 40.66933468592753, -73.966515141946 40.66933374330936, -73.96666150079106 40.6695310725644, -73.96667466782097 40.66954942078142, -73.96675123119984 40.669652932881334, -73.96675169375544 40.66965267546756, -73.96765990688567 40.67087714550686, -73.96765458142258 40.670874220036225, -73.96600275871576 40.670507149341795, -73.96535651528673 40.67215243584668)), ((-73.96462701635878 40.67191642564717, -73.96451476256047 40.67188011201883, -73.96451485138267 40.67187988961896, -73.96462701635878 40.67191642564717)))",B010,5037,B010,B-19,B-19,B-19,B-19,"Washington Ave., Flatbush Ave. bet. Eastern Pkwy. and Empire Blvd.","309, 308",35,78,11238,B,47.57,False,Brooklyn Botanic Garden,No,100004650,PARK,20100106000000.00000,18640615000000.00000,1000 WASHINGTON AV,DPR,False,Brooklyn Botanic Garden,N,Brooklyn Botanic Garden,Garden,Buildings/Institutions,http://www.nycgovparks.org/parks/B010/,No,57,21,9,{8D4F35F8-7397-41BC-A1B2-A7AF3A243B3D} +"MULTIPOLYGON (((-73.95037939681437 40.694111509304314, -73.9504030054867 40.69410878192171, -73.95045707323311 40.69438330315076, -73.95039405853768 40.6943905836689, -73.95032937194033 40.694398056140706, -73.95026519529569 40.694405470263234, -73.95020536578627 40.69441238284419, -73.95015130023576 40.69413786149837, -73.95018220936348 40.694134290840815, -73.95021113068752 40.69413094894579, -73.95024736545803 40.69412676372327, -73.95027530589017 40.69412353575319, -73.95031548194105 40.694118893850955, -73.95033998986167 40.69411606240999, -73.95037939681437 40.694111509304314)))",B508,5291,B508,B-03,B-03,B-03,B-03,Vernon Ave. between Nostrand Ave. and Marcy Ave.,303,36,79,11206,B,0.165,False,Vernon New Harvest,No,100004556,PARK,20100106000000.00000,20050429000000.00000,42-48 VERNON AVENUE,DPR,False,Vernon New Harvest,N,Vernon Cases Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B508/,No,56,25,8,{7BB5703F-4813-48FB-9D79-EEA47B10A44B} +"MULTIPOLYGON (((-73.93709036893884 40.6202440788467, -73.93773458783194 40.619830869063016, -73.9378303233526 40.620342842564895, -73.93712372314413 40.62042079275461, -73.93709036893884 40.6202440788467)), ((-73.93667884669938 40.62048639373985, -73.93682224507353 40.620392533024095, -73.93685909531301 40.620468372605764, -73.93667884669938 40.62048639373985)))",B207,4840,B207,B-18,B-18,B-18,B-18,"E. 38 St., Ave. M, Flatlands Ave.",318,45,63,11234,B,0.579,False,Sarsfield Playground - Father Kehoe Tri*,Yes,100004386,PARK,20100106000000.00000,19400606000000.00000,3801 FLATLANDS AVENUE,DPR,True,Sarsfield Playground,Y,Sarsfield Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B207/,No,41,19,9,{99A7426D-23E9-483A-A771-6329F5FD7F86} +"MULTIPOLYGON (((-73.99652568050227 40.69886144497299, -73.99655696880002 40.6987956743016, -73.9965739474167 40.698800298938515, -73.9966989484674 40.698537543025616, -73.99677873234116 40.69855929986126, -73.99652824699486 40.699085984166686, -73.99644753248168 40.699066019149406, -73.99651152462165 40.69893150979809, -73.99649454715897 40.69892688695312, -73.99652568050227 40.69886144497299)))",B223DH,6407,B223DH,B-02,B-02,B-02,B-02,BQE bet. Clark St. and Pineapple St.,302,33,84,11201,B,0.093,False,Brooklyn Heights Promenade,No,100008309,PARK,20100106000000.00000,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DH/,No,52,26,7,{8EFFE0EB-DC3B-4954-9AB2-2E976C8DDF28} +"MULTIPOLYGON (((-74.11954154017475 40.61469434675812, -74.11955009263474 40.61469196138662, -74.11955620643575 40.61469242870241, -74.11956117658599 40.614694349749044, -74.11956573548288 40.614698238863355, -74.1195807033763 40.614832377624815, -74.11957790897623 40.614837844897885, -74.11957471707586 40.61484174387545, -74.11956931651179 40.614846274615076, -74.11956253071548 40.61484999542522, -74.11955552753354 40.61485242421227, -74.11954813459019 40.61485364670508, -74.11947159408932 40.61485692043304, -74.11947116752545 40.614856938886824, -74.11944790412005 40.614857438538486, -74.11944281623339 40.6148557652528, -74.1194376136026 40.61485204429964, -74.11943438901169 40.614846923681206, -74.1194339055634 40.61484222796247, -74.11943551401382 40.614837685860536, -74.11954154017475 40.61469434675812)))",R060,5799,R060,R-01,R-01,R-01,R-01,Dongan Ave. at Hodges Pl.,501,50,120,10314,R,0.033,False,Dodgers Triangle,Yes,100004057,PARK,20100106000000.00000,19400627000000.00000,,DPR,True,Dodgers Triangle,N,Dodgers Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R060/,No,63,24,11,{8BE4E834-10DB-47FE-8773-418F21115310} +"MULTIPOLYGON (((-73.75625201068374 40.68560974331511, -73.75686128164605 40.68530875296155, -73.75710685882217 40.685695744751655, -73.75637551416389 40.68596152444059, -73.7567156685703 40.68648187669208, -73.75669758706648 40.68648793586458, -73.75669803364865 40.68648842038649, -73.7564963522636 40.68655536327624, -73.75614940189327 40.686671615659, -73.75565899818032 40.68589090946349, -73.75588729233445 40.68578274749063, -73.75625201068374 40.68560974331511)))",Q330,5348,Q330,Q-12,Q-12,Q-12,Q-12,121 Ave. bet. Lucas St. and 192 St.,412,27,113,11413,Q,2.003,False,Locust Manor Playground,Yes,100000231,PARK,20090423000000.00000,19540521000000.00000,121-15 LUCAS STREET,DPR/DOE,False,Locust Manor Playground,Y,Locust Manor Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q330/,No,29,14,5,{0E51279E-DB81-4E09-A440-E1FCD91ABC53} +"MULTIPOLYGON (((-73.97361916110918 40.77967203384805, -73.97616327880195 40.780741994610985, -73.97448708857024 40.78304084989178, -73.97195760963203 40.78197031577605, -73.97361916110918 40.77967203384805)))",M053,4740,M053,M-07,M-07,M-07,M-07,"Central Park W, Columbus Av, W 77 To W 81 Sts",107,6,20,10024,M,17.581,False,Theodore Roosevelt Park,Yes,100005223,PARK,20100106000000.00000,18390311000000.00000,200 CENTRAL PARK WEST,DPR,False,Theodore Roosevelt Park,Y,Theodore Roosevelt Park,Large Park,Buildings/Institutions,http://www.nycgovparks.org/parks/M053/,No,67,29,10,{F214D6FC-E805-4ECF-A07D-0C8B2B252CBC} +"MULTIPOLYGON (((-73.83483617483797 40.855479654309796, -73.83490208784632 40.855337465446674, -73.8349464050779 40.85523541661688, -73.83498322271554 40.85513166321535, -73.83501242614976 40.855026522959015, -73.83502973109645 40.854889148759575, -73.83504414591778 40.85477753261263, -73.83505294208588 40.85465088100913, -73.83506170627638 40.85453711090252, -73.83506757922262 40.85444909795134, -73.83506904580459 40.85444928284797, -73.83506959229118 40.85444364204323, -73.83507493178328 40.85440431345921, -73.83508177948744 40.85436511760215, -73.83509013056332 40.854326092285476, -73.83509997781896 40.85428726721494, -73.83512203796046 40.85421309905443, -73.8351474859704 40.85413955977131, -73.83517628841274 40.85406673756386, -73.8352084130403 40.853994719731446, -73.83524381811422 40.853923595360385, -73.83528246309574 40.85385344813567, -73.83531128817175 40.85380346601977, -73.83533980913539 40.853753671665245, -73.83536194933286 40.85371501629692, -73.83536832886811 40.85370387820201, -73.8353968473722 40.853654084729584, -73.83542536702397 40.85360428945038, -73.83545388662864 40.853554495964694, -73.83548240619055 40.85350470247152, -73.83551092452608 40.85345490806869, -73.83553944282112 40.85340511275787, -73.83555260760569 40.853379860996824, -73.83555765760377 40.85337017258996, -73.83556359176421 40.853358788914775, -73.83558774066921 40.853312466867266, -73.83561251633232 40.85326493724615, -73.83563603720346 40.853219818251766, -73.83566018482381 40.85317349528574, -73.83568433241273 40.85312717141381, -73.835708481154 40.85308084753816, -73.83573262985941 40.85303452455757, -73.83575261901639 40.852985010606595, -73.8357726116992 40.85293549755728, -73.83579260316856 40.852885983601915, -73.83579991735414 40.852851191766476, -73.83580723390617 40.852816399033195, -73.83582298272366 40.85276996862406, -73.83582474718395 40.8527647698885, -73.83583033772783 40.85275033934232, -73.83583318671477 40.852742982768156, -73.83583691770532 40.8527333582071, -73.83584942273876 40.85270335176909, -73.83593469731467 40.85249280817487, -73.83601259536195 40.852280625934064, -73.83608306796762 40.852066949070746, -73.83614606263664 40.85185193240849, -73.83620379250569 40.85162540263025, -73.8362507044823 40.85140738512888, -73.83634289469349 40.85077029192889, -73.83634682298856 40.85073341960647, -73.83635232334757 40.85068178142633, -73.83635782370021 40.85063014234494, -73.83636332523025 40.85057850326452, -73.83636882556358 40.85052686508216, -73.8363743270721 40.850475227801255, -73.83637982739057 40.850423588717, -73.83638532888644 40.85037194963365, -73.8363908291834 40.850320312348884, -73.83639459415002 40.850269786512456, -73.83639835673695 40.85021926157256, -73.83640212050183 40.85016873753431, -73.83640588426098 40.85011821349544, -73.83640965038842 40.85006768855891, -73.83641341414058 40.85001716271796, -73.83641717669893 40.84996663777524, -73.83642094280478 40.849916114637985, -73.83642473720099 40.849865176412905, -73.83642569008204 40.84985238805813, -73.83642847026684 40.84981506385259, -73.83643196916161 40.84976324452498, -73.83643546805092 40.84971142519673, -73.83643896575337 40.84965960406528, -73.8364424658199 40.849607783837115, -73.83644596469509 40.849555963606676, -73.83644946237675 40.84950414427446, -73.83645296242915 40.8494523231441, -73.8364564600999 40.849400503810735, -73.83645996013918 40.84934868357969, -73.83646345780346 40.84929686244425, -73.83646695782957 40.84924504311257, -73.83647060439323 40.84919053511483, -73.83647424857476 40.84913602891403, -73.8364778963079 40.84908152271771, -73.83648154166777 40.84902701471638, -73.8364851882075 40.84897250671614, -73.83648883473685 40.848918000516186, -73.83649248007431 40.84886349431397, -73.83649612659393 40.84880898721232, -73.83649977310756 40.84875448011, -73.83650341843159 40.84869997210489, -73.83650706493106 40.848645465901825, -73.83651071142675 40.848590958797615, -73.83651448476701 40.848539844031485, -73.83651825690899 40.848488731964586, -73.8365220290518 40.848437617195636, -73.83652580237025 40.848386504228735, -73.83652957568509 40.848335390360795, -73.83653334899641 40.848284275591794, -73.83653712110934 40.84823316352199, -73.83654089440465 40.8481820505528, -73.83654466651488 40.848130934879904, -73.83654843979853 40.84807982190954, -73.83655224625132 40.84802872069205, -73.83657281247537 40.84778980386124, -73.836598799479 40.84755119185867, -73.83663019872643 40.847312956708215, -73.83666700169564 40.84707516503001, -73.83667517234998 40.84702435093314, -73.83668334180823 40.84697353593309, -73.83669151362118 40.84692272273631, -73.83669968305666 40.84687190683368, -73.83670785366547 40.846821090931705, -73.83675320743085 40.84658750400966, -73.83680305148367 40.84635444209798, -73.8368573773425 40.84612196010913, -73.8368819108142 40.84602520972492, -73.83688369612535 40.84601817128801, -73.83691617061498 40.84589010574277, -73.8369788140179 40.845661066320034, -73.83699522386038 40.84561000719165, -73.8370116324941 40.84555894715831, -73.83702804109816 40.84550788892319, -73.8370444496815 40.8454568288843, -73.83706085823745 40.84540576974312, -73.83707726795397 40.84535471060081, -73.83709367527155 40.84530365235289, -73.83711008375408 40.84525259230284, -73.8371264933907 40.845201534953176, -73.83714290182283 40.845150474897565, -73.83715931022763 40.84509941573967, -73.83717571979304 40.84504835658068, -73.83719212696388 40.84499729651506, -73.83720853529093 40.84494623824928, -73.83722494478296 40.84489517818146, -73.83724135305742 40.84484412081064, -73.83725776131104 40.84479306163602, -73.83727942284068 40.84474142094631, -73.83730108314866 40.8446897811509, -73.83732274460664 40.84463814225314, -73.8373444060332 40.844586502450305, -73.83736606505673 40.84453486173916, -73.83738772760398 40.8444832210285, -73.8374093877438 40.84443158121044, -73.83743104785003 40.84437994138784, -73.83745270910842 40.844328301562435, -73.83747105693209 40.844284557098796, -73.83747437033534 40.84427666083196, -73.8374960303385 40.8442250218963, -73.83751281823012 40.84419316175022, -73.83753104570759 40.844161761980736, -73.83755069370447 40.84413086038107, -73.83757173841785 40.84410049203625, -73.83759415129755 40.84407069382559, -73.8376179109038 40.84404150443935, -73.83764298513823 40.844012957149836, -73.83766934190696 40.84398508342829, -73.8376969562223 40.84395791835807, -73.83772578886513 40.84393149790276, -73.83775580775527 40.84390584813067, -73.83780453047356 40.84386829040304, -73.83785490418434 40.84383200917468, -73.83790686594324 40.84379704487731, -73.83796036109776 40.843763441556256, -73.83801532553838 40.84373123153713, -73.8380716951317 40.843700457051064, -73.8387737841849 40.84333297359809, -73.8388238349014 40.84330677612815, -73.83885485003671 40.84329054212772, -73.83887048015457 40.84330893134366, -73.83887974355503 40.843319136977684, -73.8388793233126 40.8433193353999, -73.8388894411003 40.843331238757706, -73.83827986083014 40.84364364244998, -73.83774135263961 40.844198700912976, -73.83733245874429 40.8457742542744, -73.83665364126392 40.851172455828156, -73.83662647286444 40.85140825017992, -73.83655046376708 40.85235914411156, -73.83539348852294 40.85457042212922, -73.8353906649906 40.85456935912132, -73.83524471392936 40.85485081223849, -73.83519360113284 40.854938760574704, -73.83515664746464 40.85501814112245, -73.83511685037875 40.85510395881625, -73.83509690329903 40.85516618945493, -73.83507971021133 40.85525847886244, -73.83507748350101 40.855322821267194, -73.83509054847293 40.85539210041801, -73.83511284027436 40.855460007796594, -73.83514412703919 40.8555258388813, -73.83518408197438 40.85558890702275, -73.83523228925296 40.85564855786069, -73.83528824994293 40.85570416933275, -73.83535137841962 40.85575516337643, -73.83542102132978 40.85580101045904, -73.83549645165512 40.85584123227128, -73.83557688647987 40.8558754107582, -73.83566148816834 40.85590319172333, -73.8357493762279 40.85592428394555, -73.83574556106377 40.855937659829856, -73.83570538754236 40.856078488251725, -73.8357013773533 40.85609254823066, -73.83563488965126 40.856325620695216, -73.83561624189758 40.85639099327785, -73.83504189669416 40.85630654118269, -73.83498628574226 40.85629675164772, -73.83493255360675 40.85628211202114, -73.8348814315626 40.8562628223609, -73.83483361514838 40.85623914480893, -73.83478975468205 40.85621140177631, -73.83475044697417 40.85617996962758, -73.83474748387006 40.856177299926145, -73.83474586041066 40.85617579918154, -73.8347202527811 40.856150334396915, -73.83469824220094 40.85612299993536, -73.83469822446929 40.85612297649719, -73.83467981483636 40.85609363459099, -73.83466554876243 40.85606299200545, -73.83466553343638 40.85606295506327, -73.83465228523663 40.856024567899574, -73.83464351481511 40.8559854478478, -73.8346392902061 40.85594589487048, -73.83463855742608 40.8559405818158, -73.8346388894561 40.85593153774656, -73.8346399924673 40.85590147008691, -73.83464498708055 40.85586410050938, -73.83465484878504 40.85582729261019, -73.83466947704349 40.85579141094349, -73.83469175095247 40.855735652855955, -73.83472135518875 40.85568189625402, -73.83475798593103 40.855630696300736, -73.83476442699978 40.85562020578469, -73.83483617483797 40.855479654309796), (-73.83488880698724 40.85537004426654, -73.83488943669569 40.855367675071676, -73.83488819675934 40.85537029913306, -73.83488880698724 40.85537004426654)), ((-73.83807981812434 40.835176468812705, -73.83794006264876 40.83363358303344, -73.83791130413955 40.83331608994486, -73.83594449191519 40.83080458286383, -73.83587142466254 40.830715567504654, -73.83579316211112 40.83062913632855, -73.8357098626981 40.83054546604799, -73.83570815539719 40.830476377542624, -73.83570306385587 40.83047335542759, -73.83570391630582 40.83030481615631, -73.83576460503822 40.830305794991645, -73.83582529140133 40.83030677379163, -73.83587460432278 40.83030799391602, -73.83601886796554 40.830310680002995, -73.83601943699651 40.83031069071754, -73.83606181447027 40.83031145695544, -73.83623750650999 40.83031084569942, -73.8362965953604 40.83030966169234, -73.83635819373502 40.830307616739496, -73.83641978973257 40.83030557265092, -73.83648138809741 40.83030352853277, -73.83654298646066 40.830301483481215, -73.83659510807026 40.83029974824763, -73.83660483567968 40.83029963145839, -73.83660971598017 40.83030178695697, -73.83661216718757 40.8303068106965, -73.83660955434165 40.830311124874356, -73.83659305440068 40.83031773995483, -73.83657923050787 40.830323269224564, -73.83656566064178 40.8303291491457, -73.83655236141084 40.83033537523937, -73.83653935061109 40.83034194212795, -73.83652663892997 40.83034884262262, -73.83651424299136 40.8303560659412, -73.83650217941035 40.830363604903276, -73.83649045769545 40.83037144961705, -73.83647909564299 40.83037959470485, -73.83646810395591 40.83038802667456, -73.83645749569497 40.83039673744025, -73.8364472827399 40.83040571711346, -73.8364374781581 40.83041495490689, -73.83642809145394 40.830424442729665, -73.8364191357104 40.830434163490956, -73.83641061923508 40.8304441136007, -73.83639873673079 40.8304589999577, -73.83638749845683 40.83047416998329, -73.83637691511659 40.830489610185346, -73.83636699860564 40.830505304371975, -73.83635775726738 40.8305212345453, -73.83634920299961 40.83053738361295, -73.83634134413919 40.830553736278375, -73.83633419021287 40.830570275445915, -73.83632774600763 40.83058698311254, -73.83632202106362 40.83060383677943, -73.83631702015009 40.83062082564762, -73.83631274924613 40.83063792901418, -73.83630921195338 40.83065512887442, -73.83630641187531 40.830672406323075, -73.83630481832654 40.830685971837795, -73.83630381983791 40.830699570614975, -73.83630341881185 40.830713190051064, -73.83630361530196 40.83072680853427, -73.83630441170847 40.830740414361586, -73.83630580213726 40.83075399401708, -73.83630778899747 40.8307675321958, -73.83631036640823 40.830781009978914, -73.83631353558428 40.83079441566167, -73.83631729182143 40.83080773392891, -73.8363216292322 40.830820948563236, -73.83632654428689 40.8308340487537, -73.83633203228571 40.83084701738407, -73.83633808497224 40.83085983733321, -73.83634469763123 40.830872497788235, -73.83635293443342 40.83088759188732, -73.83636185585989 40.83090245823111, -73.83637144772223 40.83091708149095, -73.83638170058285 40.830931442742845, -73.83639260499325 40.8309455275653, -73.836404145588 40.830959317025936, -73.83641630818744 40.83097279219394, -73.83642907741067 40.830985940440435, -73.8364424390755 40.8309987437352, -73.83645637899106 40.831011187649885, -73.836470877043 40.831023255946896, -73.83648591784804 40.83103493689775, -73.8365014812895 40.83104621516525, -73.83651755080528 40.83105707631784, -73.83653410627412 40.83106750681924, -73.83655112756817 40.83107749583486, -73.83656859456187 40.831087031629494, -73.83658648594835 40.83109610066531, -73.83660478159526 40.831104693908614, -73.83662345781573 40.83111280142024, -73.83664249211508 40.83112041056115, -73.8366618643586 40.83112751319822, -73.83668154729162 40.83113410388968, -73.83670151723166 40.831140170895395, -73.83672175522273 40.831145708785414, -73.83674223401238 40.83115071121755, -73.83676292635239 40.83115517004866, -73.83678381209693 40.831159081648075, -73.83680486162 40.831162440570836, -73.8368260535813 40.83116524678669, -73.83684735955147 40.83116749034983, -73.83686875463123 40.83116917212544, -73.83689021393027 40.83117028937687, -73.8369117137392 40.831170841170035, -73.83693247159185 40.83117082819948, -73.83695321653089 40.83117027941173, -73.83697392603048 40.83116919477494, -73.8369945740058 40.83116757515283, -73.83701513673884 40.83116542321326, -73.83703559169922 40.83116274072557, -73.83705591397906 40.83115953215701, -73.83707608223581 40.83115579837801, -73.83709607155487 40.83115154655747, -73.83711585702834 40.83114678116281, -73.8371354184904 40.831141506668, -73.83715473221437 40.83113572934328, -73.83717377565907 40.8311294554603, -73.83719252864778 40.83112269399574, -73.83721096745383 40.83111545121971, -73.83722906834403 40.831107736103824, -73.8372468158839 40.83109955763142, -73.83726418634029 40.83109092477412, -73.83728115953232 40.83108184830955, -73.8372977164624 40.83107233991758, -73.83731383814185 40.83106240767606, -73.83732950319776 40.83105206506242, -73.83734469856702 40.83104132106343, -73.83735940168461 40.83103019185636, -73.8373735994743 40.83101869183087, -73.83739125181336 40.83100336596397, -73.83740820695243 40.83098759156475, -73.83742444468464 40.830971390217044, -73.83743994719404 40.8309547754034, -73.83745469426724 40.830937771409054, -73.8374686716385 40.830920394423096, -73.83748186146788 40.8309026678336, -73.83749424711635 40.8308846087268, -73.83751515002277 40.83087807716414, -73.83752945148426 40.83089061150812, -73.83754643729343 40.83094528114567, -73.83756203899394 40.83099874036482, -73.83757764072391 40.83105219778037, -73.83758492076268 40.83107713916933, -73.83759324366234 40.831105656095495, -73.83760884544026 40.83115911440634, -73.83762444842884 40.83121257271634, -73.83764005025691 40.831266031022004, -73.83765565211003 40.8313194893251, -73.83766864576407 40.83137100518626, -73.83768164062155 40.83142252194765, -73.83769463431138 40.83147403960599, -73.83770762802578 40.83152555546142, -73.83772062294804 40.831577070416145, -73.83773361669822 40.83162858806872, -73.83774661047299 40.83168010391842, -73.83774898824215 40.831689531855275, -73.83775960308009 40.831731620665025, -73.83777259926177 40.8317831383152, -73.83778559309691 40.83183465415919, -73.83779858695429 40.831886169100784, -73.83781158201081 40.83193768674355, -73.83782457590411 40.83198920348228, -73.83783756981967 40.832040719318606, -73.83785056493657 40.832092236955695, -73.83786215427851 40.832143149282146, -73.83786778356668 40.832167876711054, -73.83787374364258 40.83219405980605, -73.83788533420997 40.832244970329995, -73.83789692241731 40.8322958835505, -73.8379085118324 40.83234679497008, -73.83792010244862 40.83239770729021, -73.83793169190136 40.83244861780611, -73.83794328136527 40.83249953102184, -73.83795487085129 40.83255044243503, -73.83796646035286 40.83260135474707, -73.83797805106211 40.83265226525821, -73.83798964059915 40.832703177567076, -73.83800123133949 40.83275408987598, -73.8380115591342 40.83280708145537, -73.83802188931435 40.83286007393713, -73.83803221951095 40.832913066417525, -73.83804254854064 40.83296605799433, -73.83805287758673 40.83301904956978, -73.83806320901827 40.8330720420476, -73.83807353809512 40.83312503452073, -73.83808386600501 40.83317802609027, -73.8380941974881 40.83323101766346, -73.83810452661209 40.83328401103289, -73.83811485575477 40.83333700350037, -73.83812518609946 40.83338999596816, -73.83813442630321 40.833443721709074, -73.83814366770095 40.83349745015193, -73.83815094626708 40.83353976475677, -73.83815290793461 40.83355117589037, -73.83814280122263 40.83356170200963, -73.83823828481188 40.83436654773737, -73.83824549886967 40.83441741604724, -73.83825271412839 40.83446828255689, -73.83825992939381 40.83451915086665, -73.83826714348906 40.83457001737286, -73.83827435996216 40.83462088568251, -73.83827601398174 40.83463255482268, -73.8382815752672 40.83467175128811, -73.83828879057457 40.8347226204948, -73.83830205087395 40.834767830456855, -73.83831531237696 40.834813040418645, -73.83832633252611 40.83485408784773, -73.83833735030886 40.83489513887406, -73.83834836929744 40.83493618719929, -73.838355746159 40.834989889584804, -73.83836312777272 40.835043592876445, -73.83836523528089 40.835058937572256, -73.83837050466035 40.83509729435956, -73.83837788511448 40.83515099674714, -73.83838467602568 40.83520042995898, -73.83840162419507 40.83540020431639, -73.83849542555497 40.837304319598346, -73.83848705787305 40.8373240503371, -73.83848708516147 40.837324531239744, -73.83848972177437 40.83737056284192, -73.83849774529028 40.83743106844153, -73.8384974526271 40.83743977942184, -73.83849646722875 40.837469130581965, -73.83849484523454 40.83751748580054, -73.838493219681 40.83756584101369, -73.83849159886556 40.837614197133576, -73.8384907643182 40.83763903882446, -73.83848997568079 40.837662551448716, -73.83848835130583 40.83771090666225, -73.83848791046319 40.83771716268496, -73.83848480622008 40.83776118444427, -73.83848125994339 40.83781146222404, -73.83847771247119 40.83786174180263, -73.83847416736943 40.83791201958298, -73.83846997995802 40.83795727800424, -73.83846579372 40.83800253912815, -73.83846160747848 40.83804779935104, -73.83845742123351 40.838093058672925, -73.83845323379276 40.83813831979362, -73.83844489847465 40.8381925242237, -73.83843656432649 40.83824672955481, -73.83842823016256 40.83830093578533, -73.83841989243025 40.83835514110925, -73.83841559882933 40.83838307205147, -73.83841155823916 40.838409347337524, -73.83840322285096 40.838463552662596, -73.83839300708715 40.83851233527251, -73.83838279249402 40.83856111788282, -73.83837808285288 40.83858361285202, -73.83837257788159 40.838609902292795, -73.83836236325412 40.83865868670145, -73.83835214624472 40.838707469304474, -73.83834193277514 40.838756252811685, -73.83833171692143 40.83880503541379, -73.83832150224062 40.83885381711575, -73.83830946299523 40.83890153007262, -73.83830942946557 40.838901666000325, -73.83829749197771 40.83894897117405, -73.83828548385627 40.838996548196604, -73.83827698354845 40.83903024000203, -73.83827347927472 40.839044125222486, -73.83825343223901 40.83909458065697, -73.83823338398939 40.83914503518534, -73.83821333688628 40.83919549331342, -73.83819346537126 40.83923029567991, -73.83817359264759 40.83926509894158, -73.83816744166467 40.83927857972468, -73.83816069467258 40.83929189668154, -73.83815336237954 40.83930503451874, -73.83814545312674 40.83931797613839, -73.83813697524883 40.8393307071442, -73.83812793588157 40.839343218541146, -73.83811835049136 40.83935548873886, -73.83810822621844 40.83936750694126, -73.83809942842794 40.83937721633497, -73.83810988796705 40.83873530421258, -73.83810955034785 40.838735180370904, -73.83758349406251 40.83778346940489, -73.83792683267953 40.837674119887026, -73.83750862832973 40.836917516222975, -73.83754970722134 40.836904593450456, -73.83762665712742 40.83688038573476, -73.83784481385689 40.836811756140975, -73.83780948353262 40.83632697794802, -73.83775604068683 40.8354946154043, -73.83780973626263 40.835477251931934, -73.83780611450433 40.835339480936135, -73.83780253173073 40.83524748848183, -73.83807981812434 40.835176468812705)), ((-73.83881767028241 40.83961426448274, -73.83881691712116 40.839660366063065, -73.83879010957456 40.83986391426132, -73.8387483636849 40.84011565135019, -73.83869881982446 40.840366571565966, -73.83864150788611 40.840616536264434, -73.83857150139382 40.84058983049145, -73.8386276312663 40.84031939682831, -73.83865111542151 40.84020553060765, -73.83870074586515 40.83992626024977, -73.83873160064584 40.83970896357529, -73.83875576550092 40.83949118027033, -73.8387732283571 40.83927302648592, -73.83880171771436 40.83885535373714, -73.8388241069036 40.83843746711495, -73.83884039473168 40.838019417048756, -73.8388505800014 40.83760125576806, -73.83885058007121 40.83760122695229, -73.83883413058645 40.837074407093795, -73.83881052678731 40.83654774377855, -73.83877977226517 40.83602129283789, -73.83878598600668 40.836024305576096, -73.838767007769 40.83566901020187, -73.83874057029894 40.83531398983064, -73.83870667942529 40.83495933451491, -73.83866534571662 40.83460513521279, -73.83861657855734 40.83425148197899, -73.83856039088789 40.83389846487163, -73.83849679565203 40.8335461721466, -73.83842581171156 40.83319469566853, -73.83842449443362 40.83318692164381, -73.83841390183993 40.83313394054031, -73.83840330926749 40.8330809576344, -73.83839271551979 40.83302797742682, -73.83839034354352 40.83301610736902, -73.83838212416664 40.83297499451969, -73.83837153164043 40.8329220134104, -73.83836093794554 40.83286903229801, -73.83835034545308 40.83281605118587, -73.83833975298185 40.832763068271234, -73.83832916052313 40.83271008715616, -73.8383185680834 40.832657105139155, -73.8383079756584 40.832604124021245, -73.83829738206691 40.83255114199964, -73.83828678967348 40.8324981617793, -73.83827523476175 40.832448533654556, -73.83826367986063 40.83239890822971, -73.83825212617113 40.83234927920297, -73.8382405724901 40.83229965377663, -73.83822901764731 40.83225002564559, -73.8382174640029 40.83220039931563, -73.83821000288064 40.832168357307125, -73.83820590681906 40.832150772979084, -73.83819435321135 40.8321011457455, -73.83818279962087 40.83205151851032, -73.83817124604543 40.83200189217408, -73.83815969130389 40.83195226493408, -73.83814746144925 40.831901886631854, -73.83813632042857 40.831852290586156, -73.83812725356255 40.831802452515284, -73.8381202725838 40.831752421062994, -73.83811537973834 40.83170224576014, -73.83811257963663 40.831651978842196, -73.83811187926892 40.83160166894595, -73.83811327613445 40.83155136739622, -73.83811677010365 40.831501125520944, -73.83812235749235 40.83145099374267, -73.8381337127333 40.83137692856992, -73.83813443409703 40.83137231814194, -73.83814955490483 40.83129472830707, -73.83816793116651 40.83121715384349, -73.83818946810878 40.83114004846672, -73.83821414775178 40.83106348869197, -73.83824194263825 40.830987548319385, -73.83827283006002 40.83091229845422, -73.83829357311231 40.83086663456546, -73.838314318505 40.83082097157645, -73.8383350614981 40.830775308580044, -73.83835599197437 40.830731029004525, -73.83841114564358 40.83062127187633, -73.83847080086532 40.83051288077443, -73.83853489808016 40.83040596456857, -73.8386033777453 40.8303006258247, -73.83865041233412 40.8302328212381, -73.83869975157093 40.83016596717713, -73.83875136451591 40.83010010952104, -73.83879758989296 40.83004518714122, -73.83884596668875 40.829991343841975, -73.83889645446617 40.82993863179286, -73.83891533540583 40.82991994225243, -73.83893497159674 40.829901709414806, -73.83895534640422 40.82988394856483, -73.8389764384452 40.8298666776821, -73.83899822752413 40.82984991384755, -73.8390206946379 40.829833671442174, -73.83904381365701 40.82981797024003, -73.83909186361903 40.829786863011186, -73.83909736694443 40.82978338576899, -73.83914247043731 40.82975489034971, -73.8391506262738 40.82974973737914, -73.83915130827118 40.82974960505688, -73.83915533607869 40.82974495330774, -73.84001152382719 40.82958534084665, -73.83902907241159 40.83038265177013, -73.8389319592055 40.83046146268133, -73.83885116717103 40.83052702840648, -73.83881026149542 40.83056022476355, -73.8387776448074 40.83058864205438, -73.838746335874 40.83061847314247, -73.83871691688371 40.83064968192274, -73.83869348233543 40.83067655147044, -73.83866548862818 40.830713499292024, -73.83864378763325 40.8307460984102, -73.83862280259538 40.8307821564313, -73.8386036507647 40.83082099144258, -73.83858314773818 40.83087238828159, -73.83857710665613 40.83088979001854, -73.83856429700225 40.830938579879586, -73.83855691408355 40.830983254864506, -73.83855390526618 40.831019367751345, -73.83855398504038 40.83106808560399, -73.83855796567747 40.83111077469249, -73.83856817770166 40.83116513933092, -73.83858016485203 40.831220342112864, -73.83858146511027 40.83122632682889, -73.83859030892592 40.831267056038385, -73.83883649712726 40.832400699769444, -73.83912942182924 40.83260796615359, -73.83917307717374 40.832638854615354, -73.83953369067206 40.83289401265248, -73.8390719794741 40.83330839252293, -73.83893479538784 40.833717622215126, -73.83921462403119 40.83630039696649, -73.83921677905316 40.83628391370248, -73.83922035216648 40.83635326132498, -73.83931185031015 40.83812897170459, -73.83933245785592 40.83852889133265, -73.83934962475668 40.838862042543816, -73.8393509329473 40.838887419412195, -73.83886177806433 40.83903137905973, -73.83885352909641 40.839249741146865, -73.83883843435842 40.83946789194937, -73.83881650238415 40.83968570720829, -73.83881691712116 40.839660366063065, -73.83883810050021 40.839451040522995, -73.8388528627903 40.839241397130955, -73.83886119428946 40.839031550238666, -73.83885949754148 40.83903204944385, -73.83885042715828 40.83922631133942, -73.83883648390636 40.83942040613113, -73.83881767028241 40.83961426448274)), ((-73.82144077083434 40.86833481504382, -73.82136019697472 40.86827220348766, -73.82128487616258 40.86820593141124, -73.82121509477854 40.86813625140582, -73.82115112137002 40.86806342954244, -73.8210931995337 40.867987745360324, -73.82104155148463 40.86790948827068, -73.82099637449723 40.8678289575508, -73.82099298204076 40.86782231387047, -73.8209957580691 40.86782440281295, -73.82096630193082 40.86776106432232, -73.82094569908107 40.8676957413726, -73.82093417296223 40.867629143902015, -73.82093184970479 40.86756199700403, -73.82092974924969 40.86756364524449, -73.82092532224216 40.86751435001194, -73.82093015821084 40.86746507635797, -73.82094416073441 40.867416823676606, -73.82096704484944 40.867370568554925, -73.82099834658507 40.867327248579464, -73.82103743369895 40.867287740741354, -73.82108351283874 40.86725284523952, -73.82113565212416 40.867223269307395, -73.82119279304756 40.867199612824535, -73.82119105153575 40.867198796982656, -73.8212419896859 40.86718357116382, -73.82130581107721 40.867171429644685, -73.82134906803012 40.867166562835855, -73.82138678615276 40.867162318681395, -73.82165809779949 40.86716382162064, -73.82197919006495 40.867112737329165, -73.82197919969424 40.867112685115565, -73.82210252434122 40.86706533209913, -73.8222217267136 40.86701224277659, -73.82233634362741 40.86695362265981, -73.82238937747914 40.866915688281765, -73.82241837069962 40.86689644349112, -73.82244652595588 40.86687649682191, -73.82247381710135 40.86685586714472, -73.82250021441645 40.866834578727776, -73.82252568937524 40.866812653139604, -73.82252957655581 40.866809080567556, -73.82257914056211 40.86676315251046, -73.82262515268276 40.86671514243998, -73.82266746067222 40.86666520681171, -73.8226750484918 40.86665683130063, -73.82269226205767 40.866637830380284, -73.82271473282769 40.866613027567546, -73.8227544159299 40.866569222017695, -73.82279410253594 40.86652541735978, -73.8228582534798 40.866454675142215, -73.82303199068599 40.8662622447776, -73.82320495930246 40.86606941675269, -73.82337716407265 40.865876192879064, -73.8235485978712 40.86568257765171, -73.82373650087932 40.86546959614981, -73.82392638680363 40.865257633115384, -73.8241182520444 40.86504670023973, -73.82431102785957 40.86483096430521, -73.82436941578337 40.864765544264074, -73.82450364369461 40.86461514675471, -73.82469609718531 40.86439924488395, -73.8248883895067 40.864183263197916, -73.82508052185769 40.86396719719682, -73.82527249304349 40.863751050481575, -73.82541670726877 40.86358994846309, -73.82556095278045 40.86342886161641, -73.82571710542273 40.863254522931236, -73.82584194689385 40.86311518389838, -73.82587329041506 40.86308020028825, -73.82602950656654 40.86290589548649, -73.8261857562516 40.862731607628916, -73.82618963191258 40.86272728390443, -73.82619350875684 40.862722961082085, -73.82620157563318 40.86271384044932, -73.82623083573942 40.8626807572408, -73.82626814253668 40.86263854345136, -73.8263054528472 40.86259632875443, -73.82634276073583 40.86255411494201, -73.82638006857943 40.86251190021673, -73.82641737874555 40.86246968638313, -73.82645468530828 40.86242747163131, -73.82649199419595 40.862385256870674, -73.82652930422226 40.86234304209944, -73.82656661182904 40.86230082731228, -73.82660391938612 40.86225861341321, -73.82664122926805 40.8622163995053, -73.82667179261328 40.862180984066825, -73.82667482808907 40.86217725338797, -73.826677692968 40.86217344501047, -73.82668038012169 40.862169563426164, -73.82668288716869 40.86216561223336, -73.82668521172494 40.86216159593103, -73.82668735021117 40.862157522618176, -73.82668930024579 40.86215339589319, -73.82669105944959 40.862149218454014, -73.82669262543395 40.8621449966005, -73.8266939969941 40.86214073753476, -73.82669517175309 40.86213644305426, -73.82669614968995 40.862132121263336, -73.82669692605081 40.86212777575686, -73.82669750438232 40.86212341104265, -73.82669788110519 40.862119035219706, -73.82669805739367 40.862114652792236, -73.82669803323854 40.862110267362254, -73.82669780506978 40.86210588342678, -73.82669737641753 40.862101511797086, -73.82669674728184 40.86209715247314, -73.82669591883241 40.86209281176011, -73.8266948910506 40.86208849686195, -73.82669366511303 40.86208421138234, -73.82669224337792 40.862079960727826, -73.82669062701736 40.86207575030303, -73.82668882076156 40.86207158551804, -73.82668682222916 40.862067469971244, -73.82668463614561 40.86206341087367, -73.82665344309719 40.862007795581476, -73.82662644883801 40.8619594823721, -73.82659945817629 40.861911169161324, -73.82657246518157 40.86186285594029, -73.8265454734169 40.861814540913294, -73.82651847931454 40.86176622767701, -73.82649148762128 40.861717915338026, -73.82646449716268 40.861669599392165, -73.8264375043664 40.86162128523694, -73.82641227531151 40.861575704919595, -73.82638704628884 40.86153012549683, -73.8263618173031 40.86148454516769, -73.8263365883543 40.861438963932166, -73.82631135943537 40.86139338449174, -73.82628613174185 40.86134780324629, -73.82626090171067 40.86130222199132, -73.826249256885 40.86127990197878, -73.82624944423124 40.861275837441546, -73.8262503003522 40.86127184144828, -73.82625201517129 40.861267402805694, -73.82625488361386 40.861262678643484, -73.82625863116772 40.861258324106046, -73.82626212270256 40.86125526409003, -73.8262693567909 40.86124976307339, -73.82627572601513 40.86124524859347, -73.82628229643748 40.861240901007044, -73.82628906091558 40.86123673020878, -73.82629600995134 40.861232739786324, -73.82630313523524 40.86122893242858, -73.82630976931853 40.861225640312696, -73.82631009947758 40.86122547692021, -73.82631788365514 40.86122188757194, -73.82632549016023 40.86121865995336, -73.82633323728636 40.86121563245507, -73.82634111790537 40.8612128095688, -73.82634912133784 40.861210193079415, -73.82635723926484 40.86120778927785, -73.82636546220009 40.86120559724925, -73.82637377826406 40.86120362417972, -73.82638217915888 40.86120186825571, -73.82639065538432 40.8612003339654, -73.8263991950795 40.86119902129092, -73.82640779111635 40.86119793472395, -73.82641642926902 40.8611970715417, -73.8264251035954 40.86119643623758, -73.82643379867653 40.861196028788406, -73.82644251095893 40.86119584738789, -73.82645122501654 40.861195894714285, -73.82645993017948 40.8611961689505, -73.82646861932663 40.8611966718869, -73.82648348858557 40.861196945486654, -73.82649833669694 40.86119759635871, -73.8265131494373 40.86119862087972, -73.82652790901813 40.861200018122474, -73.82654259883206 40.861201788962454, -73.8265572034674 40.861203930675124, -73.82657170395875 40.8612064387295, -73.82658608963393 40.86120931220909, -73.82660033915079 40.8612125483804, -73.82661444066267 40.86121614182276, -73.82662837520199 40.86122008890567, -73.8266421297267 40.861224387808676, -73.82665568646672 40.86122903040071, -73.82666903356859 40.86123401396252, -73.82668215444836 40.86123933036493, -73.82669503725005 40.86124497778915, -73.82670766301989 40.86125094720187, -73.82672001991834 40.86125723048097, -73.82673209490552 40.86126382490556, -73.82674387259306 40.86127071874612, -73.82675534350629 40.8612779065856, -73.82676582629529 40.86128468321665, -73.82677599050756 40.861291731316925, -73.82678582785692 40.86129904457058, -73.82679532295484 40.8613066112483, -73.8268044675198 40.86131442323323, -73.8268132485259 40.86132247240151, -73.82682165651029 40.861330748833645, -73.82682968082861 40.86133924080727, -73.82683731083179 40.861347938401146, -73.82684454060815 40.861356834402464, -73.82685135833415 40.86136591438576, -73.82685775454686 40.8613751684315, -73.82686372808817 40.86138458573206, -73.8268692623832 40.861394154556294, -73.82687435983449 40.86140386320147, -73.82687900860907 40.86141370084396, -73.82688320518376 40.861423653971215, -73.82688694365136 40.86143371356943, -73.82689021930717 40.861443864323284, -73.82689302861611 40.86145409722258, -73.82689536924812 40.861464396055005, -73.82689723767041 40.86147475090986, -73.8268986303597 40.86148514827456, -73.82689954734617 40.861495576442735, -73.82689998510662 40.861506021901796, -73.82689994722475 40.86151647475161, -73.82690031610356 40.86156477677451, -73.82690068498054 40.86161307969754, -73.82690105267201 40.86166138261832, -73.82690142036401 40.861709685538706, -73.82690145579332 40.861714301511725, -73.8269017892473 40.86175798665944, -73.82690215812177 40.86180629138177, -73.82689951430434 40.861847761355385, -73.82689521371323 40.86188915050024, -73.82688925762989 40.86193042099741, -73.82688165326631 40.8619715350368, -73.82687240901822 40.86201245571063, -73.82684390843139 40.862131713661576, -73.8268110303312 40.86225032208152, -73.82677379984963 40.862368186452976, -73.82675843866615 40.86240821635004, -73.82674142266609 40.86244785834955, -73.82672276855321 40.86248707375475, -73.82670249540352 40.862525823872375, -73.82668062348176 40.86256406911042, -73.82665717542024 40.862601771681334, -73.82663217384682 40.86263889559848, -73.82660564258737 40.862675400374634, -73.82657760782145 40.86271125272984, -73.82654107187193 40.86275539392857, -73.82650453706243 40.86279953421667, -73.82646800101831 40.862843674491046, -73.82645099186195 40.86286422243562, -73.82643146611174 40.862887814755325, -73.82639493115438 40.86293195590818, -73.82638011903803 40.862949172628085, -73.82635799125475 40.86297489788573, -73.82632105249586 40.86301783895243, -73.82628411250074 40.863060780905684, -73.82624717363939 40.86310372464955, -73.8262102335513 40.863146665677974, -73.82617329459917 40.86318960759653, -73.82613635559704 40.86323255040347, -73.82609941654958 40.86327549229772, -73.8260624774544 40.86331843417983, -73.82602553712542 40.863361376048005, -73.82598859675103 40.863404317003486, -73.82595165750803 40.863447260650126, -73.82591471941049 40.86349020158492, -73.82587777888598 40.86353314520541, -73.8258393465432 40.86357911401388, -73.82580091414017 40.863625085510606, -73.82576248168641 40.86367105609373, -73.825724047991 40.863717027562295, -73.82568561543565 40.86376299631806, -73.82564718163403 40.86380896776027, -73.82560875015147 40.86385493919288, -73.82555966884381 40.86391834153036, -73.82543640660545 40.86407522329911, -73.8253112316628 40.86423122585891, -73.8252812596246 40.86426667784163, -73.82527636462976 40.86427246599078, -73.82515200350886 40.8644195646485, -73.82498915312222 40.864606108443525, -73.82482271379256 40.864790821259696, -73.82465272358392 40.86497365631397, -73.82448502299025 40.865157359968016, -73.8243168215996 40.86534080236929, -73.82414812535256 40.865523979022235, -73.82397893305378 40.8657068926244, -73.82380924470347 40.86588954227309, -73.82378988971942 40.86591067065327, -73.82363611771773 40.86607851776383, -73.82346227785985 40.86626711459356, -73.82328772749669 40.866455333663254, -73.82316869392517 40.86658303181891, -73.82304933416171 40.866710554654105, -73.82301319074625 40.866748567472854, -73.82297704965472 40.86678658298511, -73.82294090734284 40.86682459578249, -73.822904766171 40.86686261037113, -73.82286862377889 40.86690062224491, -73.82283248252442 40.86693863681034, -73.82279124904724 40.866981942932526, -73.82275001670256 40.86702524904143, -73.82270878311797 40.86706855513348, -73.82266755066345 40.86711186211274, -73.82265835326332 40.867121521049825, -73.82262631815524 40.86715516907694, -73.82258508441195 40.867198474223244, -73.82254385061255 40.867241780255, -73.82250261675703 40.86728508717216, -73.82233319711729 40.867458702201596, -73.82216396610504 40.86763242172589, -73.82199492252761 40.86780624844544, -73.82188383858217 40.867918069257634, -73.82154601765947 40.86823582213147, -73.8215444990322 40.86823725066252, -73.82144077083434 40.86833481504382)), ((-73.82207818731251 40.86864316408917, -73.82207785466554 40.86864290963797, -73.82206188172336 40.86865993849863, -73.82198016727672 40.86863574685303, -73.82190217900663 40.868605279078224, -73.82182875233727 40.86856886244909, -73.8217606715184 40.868526884496156, -73.8216986636887 40.86847979479655, -73.82233977014691 40.86779868989439, -73.82250841709292 40.86762912678478, -73.8226767777407 40.8674593999961, -73.82284485209132 40.86728950952953, -73.8230434227629 40.86708746223437, -73.82324229780366 40.866885587952574, -73.82344147721001 40.866683887582994, -73.82352046589011 40.86660409255571, -73.8235235749086 40.86660095189615, -73.8236409621693 40.86648236022541, -73.82366674633629 40.866455913492516, -73.8238401705501 40.86627686903476, -73.82401232885242 40.86609712269991, -73.82418322124106 40.865916677194875, -73.8243528382029 40.86573554331674, -73.824539608529 40.86553328993991, -73.82472574400599 40.8653307012087, -73.82491124108329 40.86512777531972, -73.82509610094526 40.8649245140788, -73.8252511324673 40.86475205549007, -73.82526425083856 40.864737330715094, -73.82540522739502 40.86457911440953, -73.82555839046515 40.864405695350406, -73.8256637945185 40.864285449077954, -73.82576874805383 40.86416497510314, -73.825959122913 40.86395309497464, -73.82614686923539 40.86373986883337, -73.82633197038447 40.8635253137763, -73.82651440734983 40.86330944779718, -73.82669042725688 40.86310501622938, -73.8268716912876 40.86290324330269, -73.82705813397378 40.862704208137835, -73.82709697771143 40.8626628104293, -73.82711419439485 40.862644463501155, -73.82712394039956 40.86263407832849, -73.82712750862271 40.862630275496436, -73.82713582495673 40.862621413613155, -73.82717466978376 40.862580015879594, -73.82721351574384 40.86253861993542, -73.82725236047416 40.86249722217509, -73.82729120515377 40.8624558253019, -73.82733005097349 40.86241442751658, -73.82736889437025 40.862373030614854, -73.82739880105434 40.862343721135886, -73.82742997484371 40.86231518346444, -73.82746238007766 40.86228744726238, -73.82749598346314 40.86226054399614, -73.8275307457747 40.86223450602369, -73.82756662899165 40.86220935850094, -73.82760359508195 40.86218513108625, -73.8276416000949 40.86216184892673, -73.82768816915222 40.8621338339545, -73.82773598630172 40.862107057201634, -73.82778499333726 40.86208155279838, -73.82783513325056 40.86205735037444, -73.82788634666862 40.8620344768545, -73.8279385682788 40.86201296275644, -73.82799173871796 40.86199283140328, -73.82800173125032 40.86198930556698, -73.8280118713753 40.8619860383909, -73.8280221519764 40.861983029864376, -73.828032558809 40.861980284468615, -73.82804308118664 40.86197780669009, -73.82805370724148 40.861975599212585, -73.82806442392899 40.861973661116096, -73.82807522056032 40.861971997787656, -73.82808608526783 40.861970611911026, -73.82809700619283 40.86196950256805, -73.82810796791635 40.86196866973569, -73.82811896093344 40.86196811970323, -73.82812997102029 40.86196784884756, -73.82814098868373 40.86196785895547, -73.82814401066126 40.86196793909793, -73.82814467191287 40.86196587345483, -73.82820582523595 40.86196528105147, -73.82826670220648 40.861969737260345, -73.82832906421753 40.86197969404778, -73.828389539726 40.86199494738815, -73.82844735235795 40.86201529982281, -73.82850175911217 40.86204049000935, -73.82853989995081 40.86206236200148, -73.82851277047537 40.86207054677208, -73.82844889302166 40.86208982048642, -73.82830643072629 40.862132804257755, -73.82827628376435 40.862141900282374, -73.82808143996792 40.86220068777163, -73.8280683019106 40.86220465196933, -73.8280064480916 40.86222331341845, -73.82786430216272 40.86226620076272, -73.82788624876807 40.862311998280106, -73.82797386914741 40.86249484136706, -73.82793788269223 40.86250579531524, -73.82750715300632 40.862636905789465, -73.82242809867272 40.8682695024173, -73.82208076916528 40.868640708830334, -73.82207818731251 40.86864316408917)), ((-73.83073781246907 40.85772848037146, -73.83069785923999 40.857768859249624, -73.83066421191896 40.85780696642262, -73.83065826743938 40.85780887484538, -73.83060272409793 40.85786403219533, -73.83010650808687 40.85802092739816, -73.83024896203183 40.857838365996955, -73.82979295540454 40.85798874901617, -73.8297614864809 40.85793499903745, -73.82975894615309 40.857935868766425, -73.82963827998158 40.85773754275858, -73.8294988335499 40.857508347006274, -73.82900440653168 40.85664098509955, -73.82905665455326 40.85660371460625, -73.82905927838712 40.85659848663333, -73.82911719100312 40.8565707922366, -73.82923481512469 40.85650898820932, -73.82932649493371 40.85647133200853, -73.8294101847087 40.856444246507145, -73.82946597667053 40.856426188570204, -73.82952973763103 40.85640663135525, -73.82964328676422 40.85638110082692, -73.82976479203444 40.85635860578026, -73.82989978724467 40.856337787401735, -73.82991360621652 40.85633605091475, -73.82998068478416 40.856328791863476, -73.83004343065943 40.85632208289497, -73.83010617770806 40.85631537389408, -73.83016891527221 40.856308658541614, -73.83023165399351 40.856301949460224, -73.83029440102025 40.85629523405349, -73.83035714683228 40.856288524914326, -73.8304287526652 40.8562825032326, -73.83050008154446 40.85627485661129, -73.8305710884429 40.85626556697501, -73.8306416855277 40.85625465940911, -73.83071182768707 40.856242149156564, -73.83078143305751 40.856228046003494, -73.83085044946206 40.85621234537201, -73.83094626909207 40.85619302617743, -73.83104288184467 40.85617614119521, -73.8311401844891 40.85616171368514, -73.8312380714549 40.85614975429682, -73.83133642765212 40.856140286273416, -73.83138131070696 40.85613880573539, -73.83132787216242 40.856147654201074, -73.83127423861957 40.8561548220381, -73.83122059792407 40.85616199974515, -73.83119285250498 40.856167219828414, -73.83116534144824 40.85617308860253, -73.83113807303461 40.856179614184185, -73.83111109831351 40.856186775936976, -73.83108442796284 40.85619457207565, -73.83105807860872 40.85620299361999, -73.83103210126652 40.85621203344087, -73.83101970322248 40.85621608550791, -73.8310075071558 40.856220462947206, -73.83099551663591 40.85622516126163, -73.83098374590828 40.85623017506912, -73.83097221397846 40.85623549269121, -73.83096093862015 40.85624112045747, -73.83094992936938 40.85624703947155, -73.83093918623288 40.856253247032065, -73.83092874599707 40.856259735088656, -73.83091861580303 40.85626649374637, -73.83090878853473 40.856273522994854, -73.83089929983156 40.85628079947367, -73.83089014612179 40.85628832858057, -73.83088133811606 40.85629609592349, -73.83087290075224 40.856304088932156, -73.83086483996506 40.856312305814406, -73.83085715580489 40.8563207267595, -73.83084986252209 40.85632934458451, -73.83084297792041 40.85633815391262, -73.83083649965546 40.85634714393457, -73.83083043490062 40.85635629214868, -73.83082478483053 40.85636560305917, -73.83081852357965 40.85637646552188, -73.83081273512482 40.85638749166675, -73.83080744324575 40.85639865811583, -73.83080264086553 40.85640994955045, -73.8307983315722 40.85642135426957, -73.83079452605146 40.85643286778645, -73.83079123977411 40.856444469412516, -73.83078845618239 40.85645614111362, -73.8307861895016 40.85646788561217, -73.83078443505673 40.85647967588658, -73.83078320590778 40.85649150655306, -73.83078248669206 40.856503355977324, -73.83078230113662 40.856515221492614, -73.83078262674452 40.85652708865815, -73.8307834777961 40.85653893858448, -73.83078484601253 40.8565507622545, -73.83078673382798 40.85656253535856, -73.83078914003838 40.85657426509873, -73.83079205641758 40.85658592174668, -73.83079548417705 40.85659749539878, -73.83079942331932 40.85660898515443, -73.83080385849765 40.85662036307585, -73.83080871237762 40.8566331238668, -73.83081413702389 40.856645768430525, -73.83082011712175 40.85665825622232, -73.83082665978756 40.85667058725252, -73.8308337437285 40.856682739878025, -73.8308413677885 40.85669470239063, -73.83084952607223 40.85670646127421, -73.83085820320993 40.85671799759577, -73.83086739207428 40.856729315847176, -73.83087708443901 40.85674038630005, -73.83088725897915 40.856751199918065, -73.83089791574285 40.85676173779083, -73.83090904642357 40.85677200170706, -73.83092061548714 40.85678197360461, -73.83093262770501 40.85679164268453, -73.83094507126074 40.856800991819945, -73.83095792481767 40.85681001647699, -73.83097116824797 40.856818703118755, -73.83098479801427 40.85682704363537, -73.83099878566148 40.85683503438314, -73.83101312887011 40.85684265464716, -73.83102779918742 40.85684989988318, -73.83104208527328 40.85685666549272, -73.8310566617011 40.85686305602037, -73.83107152018705 40.85686906425, -73.8310866453289 40.85687468385538, -73.83110200988256 40.856879901289254, -73.83111760316467 40.85688472013778, -73.83113340624686 40.856889121462906, -73.83114939418851 40.856893118735364, -73.83116556230254 40.856896689435935, -73.83118187855266 40.85689983892059, -73.8311983227926 40.856902560856426, -73.83121488553165 40.85690485612989, -73.83123153833506 40.85690671299302, -73.83124827405916 40.85690814224117, -73.83126504768781 40.856909123097246, -73.83128186747254 40.85690967538404, -73.83129871091775 40.85690978376025, -73.83131553886662 40.85690945537266, -73.83133233946556 40.85690868750238, -73.83134909609423 40.85690748642861, -73.83136339395028 40.85690682115336, -73.83138235071596 40.85690511721399, -73.83140111069706 40.85690244045229, -73.83141959202632 40.85689880335562, -73.83143322293614 40.8568954905504, -73.83144658849261 40.85689158573253, -73.83146399405048 40.856885630090524, -73.8314808242565 40.856878791123066, -73.83151909759367 40.856859280224924, -73.83155247489138 40.85684077341859, -73.83158506193982 40.85682146761278, -73.83161682191762 40.856801384366356, -73.8316477251447 40.856780535343006, -73.83153393119791 40.85688402400055, -73.83142353662676 40.85698960755408, -73.83131662458106 40.857097237508235, -73.83115957189342 40.85725871096575, -73.83100675490452 40.85742251818269, -73.83094178419118 40.857496459663636, -73.83092670212308 40.85751443479908, -73.8309286409673 40.8575140864484, -73.83086011870603 40.857593789429615, -73.83083920656108 40.85761811348076, -73.83073536125318 40.857727431303914, -73.83073781246907 40.85772848037146)), ((-73.8358250324802 40.850011423670765, -73.83610507130248 40.84749916779769, -73.83610384687476 40.847500870692485, -73.83625055704697 40.846174665265835, -73.83625577740465 40.84605744908748, -73.83626267166758 40.846004487321835, -73.83626397411462 40.84595180487573, -73.8362707951235 40.84589728244878, -73.83627174708435 40.84588919286235, -73.83627258877594 40.84588206214541, -73.83627726488452 40.845842374111015, -73.83629053487563 40.84574522334874, -73.83630786649748 40.845648443947766, -73.83632924645626 40.84555213043925, -73.83635464958479 40.84545638364056, -73.83638405073201 40.84536129806537, -73.83639665101211 40.84531456138941, -73.83640925008656 40.845267825610534, -73.83642184914547 40.84522108892938, -73.83643444937245 40.845174352248165, -73.83644705076755 40.84512761556687, -73.83645964976897 40.84508088068146, -73.83647224875926 40.84503414309282, -73.83648630685437 40.84498812976699, -73.83650036374871 40.84494211463645, -73.83651442062134 40.8448961004043, -73.83652847866036 40.84485008617175, -73.83653745627633 40.844820666246186, -73.83654339669006 40.84480346352133, -73.83654750263626 40.84480027258568, -73.83655388580753 40.84479929108706, -73.83656076255211 40.84480157277742, -73.83656376542392 40.84480525464986, -73.83656544486777 40.84482924078801, -73.83657317372527 40.84498037805106, -73.83657509707125 40.84515366464011, -73.83657008712531 40.84532691348573, -73.83655761973539 40.84551796983345, -73.83653932231404 40.84570875316704, -73.83652822135092 40.84579922716808, -73.83651501831098 40.845889537899616, -73.83651381395352 40.84589660056726, -73.8364985328362 40.84598614563187, -73.83647964191843 40.846082497812105, -73.8364686942399 40.84613467941875, -73.83645759573758 40.846186945456495, -73.83645471882244 40.84620049831248, -73.83645244176573 40.84621122446816, -73.8364494748872 40.846225194125054, -73.83644649840363 40.846239211494364, -73.83643539987081 40.84629147572803, -73.83642430131617 40.84634374176114, -73.83641320393212 40.846396006893926, -73.83640210652837 40.846448272925635, -73.83639100674003 40.84650053715145, -73.83637990811337 40.84655280407889, -73.83636881065955 40.846605069205516, -73.83635910901675 40.846658253913866, -73.83634940736502 40.84671143591943, -73.83634674965755 40.84672600393903, -73.8363247062975 40.846932749440455, -73.83632383909855 40.847099642113285, -73.83632348999846 40.84709934895751, -73.83632101794748 40.847136769968046, -73.83631654899555 40.84717657985603, -73.83631151591283 40.847224446560595, -73.83630648282733 40.847272311463485, -73.83630144973452 40.84732017636582, -73.83629641426063 40.84736804216463, -73.83629138233694 40.84741590796793, -73.83628634803885 40.847463771966204, -73.83628120175761 40.847514250838486, -73.8362760602119 40.84756472971683, -73.8362709150987 40.84761520948997, -73.83626576998432 40.84766568656092, -73.83626062485322 40.84771616723321, -73.83625547972103 40.84776664520334, -73.83625033576685 40.84781712317449, -73.83624519180043 40.84786760294592, -73.83624004664037 40.84791808271503, -73.83623683486341 40.84794959272915, -73.83623490147465 40.84796856158295, -73.83623103434488 40.848020609123445, -73.83622716957625 40.84807265846767, -73.83622330243658 40.848124705106436, -73.8362194376603 40.848176752648506, -73.8362155716922 40.84822880018829, -73.83621170452987 40.84828084862626, -73.83620783736599 40.848332895262665, -73.83620397374919 40.848384943704495, -73.83620010656873 40.848436992140684, -73.83619623938446 40.84848903967575, -73.83619237456362 40.84854108811413, -73.83618850736505 40.8485931365485, -73.8361849106134 40.84864370945753, -73.83618131148458 40.84869428236267, -73.83617771471977 40.84874485617111, -73.83617411795171 40.8487954290785, -73.83617052118045 40.84884600108482, -73.83616692202969 40.84889657398775, -73.83616332524743 40.84894714599297, -73.83615972608136 40.84899772069577, -73.83615612928594 40.84904829360035, -73.8361525312992 40.849098866502736, -73.83614893449285 40.84914943940624, -73.83614533768103 40.8492000123092, -73.83614164098485 40.849254062775074, -73.8361379466521 40.849308114144236, -73.83613425112978 40.849362164610554, -73.83613055678723 40.84941621507796, -73.83612686243873 40.84947026554475, -73.83612316571246 40.84952431600751, -73.83611947135198 40.84957836647307, -73.83611577579734 40.849632417836744, -73.83611208142484 40.84968646830102, -73.83610838704855 40.84974051786417, -73.83610469029225 40.84979456832383, -73.83610047616924 40.84984682156369, -73.83609989750809 40.84985402018531, -73.8360965494154 40.84989554707863, -73.83609247837474 40.849946036454305, -73.83608840732792 40.84999652582938, -73.83608433746082 40.85004701520557, -73.83608026640162 40.85009750457954, -73.83607619533846 40.85014799305234, -73.83607212307884 40.850198483323915, -73.83606805200114 40.85024897269607, -73.83606398210088 40.8502994629698, -73.83605991101523 40.85034995053981, -73.83603722117553 40.85058862822923, -73.83600956180614 40.85082700257795, -73.8359769401138 40.85106501506074, -73.83593936331002 40.85130260535065, -73.83590836063303 40.85147350455157, -73.8358840633158 40.8515822603509, -73.83588310039984 40.851586566939595, -73.83587036171495 40.851643588744956, -73.8358254001248 40.85181268957966, -73.83577351890692 40.85198064411974, -73.8357147717784 40.85214729034383, -73.83564921364636 40.85231246533056, -73.83561083978492 40.8523881150931, -73.83556919396541 40.85246275973081, -73.83552432381394 40.8525363191643, -73.83547627339966 40.85260871330884, -73.83542509866061 40.85267985849441, -73.83537085431644 40.852749684556656, -73.83532880944158 40.85280041234509, -73.83528514410091 40.85285034807203, -73.83525854576824 40.85287720871346, -73.83523492207763 40.85290106415015, -73.8352296207483 40.852905446481046, -73.8352223826188 40.85290654284859, -73.8352223103504 40.8529065130291, -73.83521567222849 40.85290381107397, -73.83521314649724 40.852899374340105, -73.83521393294892 40.852895474528616, -73.83523936938109 40.85284886623155, -73.83526372013876 40.85280389887713, -73.83528807323098 40.85275893332159, -73.83529313900952 40.852749573627705, -73.8353003218603 40.85273631061808, -73.83531242273465 40.85271396685501, -73.83533677339354 40.85266899948416, -73.8353611240151 40.85262403390875, -73.83538547460819 40.85257906652691, -73.8354232123458 40.8525114213155, -73.8354579589848 40.85244285962568, -73.83548967877033 40.85237345614992, -73.8355183335696 40.85230328827879, -73.83554388999397 40.852232433409284, -73.83556632650796 40.8521609716566, -73.8355856109029 40.8520889831205, -73.8356017252062 40.85201654611985, -73.83563634701467 40.85180347578293, -73.83565704742438 40.851622448550785, -73.83568012431103 40.85130076047652, -73.83581986959028 40.85003189534065, -73.8358250324802 40.850011423670765)), ((-73.82839724227969 40.85916981641346, -73.82834123037648 40.85914571516938, -73.82828171625074 40.859127071069764, -73.82821961596417 40.85911417182959, -73.82815588968678 40.85910721698319, -73.82809151917742 40.85910631244767, -73.82802749710336 40.859111473209076, -73.82796481163277 40.85912261969715, -73.82788312780414 40.8591485031779, -73.82743220020947 40.85929138873468, -73.82742621533036 40.85929003895037, -73.8274191086069 40.85928085680964, -73.82781297154723 40.85914949169478, -73.8277937957975 40.859114099854764, -73.82778546919764 40.85909873133663, -73.8277747050554 40.8590788657243, -73.828518173787 40.85883701589338, -73.82855175109819 40.85885205088201, -73.82855978795205 40.85885564948423, -73.82860297728311 40.85884203878133, -73.82859998843384 40.8588365224296, -73.82858795631343 40.85881431553055, -73.82895735883825 40.858694147402275, -73.82937657971281 40.858557770880225, -73.82938984208512 40.858582246055406, -73.82952381270317 40.8585391169129, -73.82951034016399 40.85851425603178, -73.83025300690252 40.85827265227245, -73.8302676566023 40.858299685885655, -73.830279210951 40.85829597034366, -73.83011413800376 40.858508385795524, -73.82992999315039 40.858739537345386, -73.82974257505127 40.8589691664346, -73.82955190509189 40.85919725056671, -73.82938069494936 40.8593993164273, -73.8292117854181 40.85960249574021, -73.82909626449882 40.85974373251927, -73.82906313186074 40.85978388859626, -73.82902999799427 40.85982404556215, -73.82899686645995 40.85986420252176, -73.82896373132968 40.8599043585658, -73.82893059735014 40.85994451280083, -73.82889746332594 40.85998466882703, -73.82886058502953 40.86002844286871, -73.8288237078683 40.86007221780051, -73.82878682828874 40.86011599181618, -73.82877782342794 40.86012667899715, -73.82877775561369 40.86012675994077, -73.82875083509103 40.860123207168485, -73.82875578811809 40.860083129127304, -73.82875396434592 40.86004289965037, -73.82874539649217 40.860003175244316, -73.82873022166577 40.85996460536579, -73.82870868969864 40.85992782072741, -73.8286755887187 40.859895706866844, -73.82863746079315 40.8598669866881, -73.8285949037262 40.85984210951932, -73.82854858426099 40.859821466259355, -73.8284992298001 40.85980538036115, -73.82849678141552 40.85980505704714, -73.82849443223078 40.85980444032019, -73.82849224388141 40.85980354558027, -73.82849027086341 40.859802397221735, -73.82848856647732 40.859801023239, -73.82848717332607 40.85979946061562, -73.82848612807523 40.85979774902777, -73.82848545670653 40.859795931737644, -73.82848517688777 40.85979405649765, -73.8285276067923 40.85975828178971, -73.82856405874114 40.85971888991268, -73.82859399990765 40.859676453693915, -73.82861699698464 40.859631590232205, -73.82863271620631 40.85958495189246, -73.82864092693379 40.85953721550497, -73.82864151115855 40.85948907607576, -73.828631421714 40.85943509010785, -73.82861230748097 40.85938252971885, -73.82858448411046 40.85933226074604, -73.8285484096704 40.859285112316414, -73.82850467876051 40.85924185882873, -73.8284540118487 40.85920321543563, -73.82839724227969 40.85916981641346)), ((-73.82917329520673 40.86046515223021, -73.82918670927941 40.86046485511702, -73.82920012957581 40.86046490560132, -73.82921353948406 40.86046530635997, -73.82922692359244 40.86046605466867, -73.82924026529166 40.86046715230387, -73.82925355036288 40.86046859384153, -73.82926676456655 40.86047038196214, -73.8292798877513 40.86047251213341, -73.82929290806345 40.86047498163631, -73.82930580890064 40.86047778954594, -73.82931857604633 40.86048092953779, -73.82933119290034 40.86048439978634, -73.8293436476068 40.86048819847319, -73.82935592121413 40.86049231566488, -73.82936800423161 40.860496752247975, -73.82937987889144 40.86050149919134, -73.82938905905573 40.860506143095016, -73.82939802274672 40.860511024407685, -73.82940675930598 40.86051613681022, -73.82941526045181 40.86052147218594, -73.8294235167003 40.86052702871995, -73.82943151384407 40.86053279648585, -73.82943924596897 40.86053876917156, -73.82944670479317 40.86054493866039, -73.82945387846524 40.860551301333, -73.82946075989882 40.860557845472485, -73.82946734317498 40.860564566567774, -73.82947361764454 40.8605714546977, -73.82947957620934 40.86057850264789, -73.82948521177384 40.860585702303524, -73.82949051961896 40.86059304375227, -73.82949549027455 40.86060051977618, -73.82950012139153 40.86060812136701, -73.82950440587871 40.8606158386088, -73.82950833782873 40.86062366248801, -73.82953546635481 40.860672023857184, -73.82956259610879 40.86072038432089, -73.82958972353003 40.86076874477424, -73.82961685217911 40.86081710432205, -73.82964398086078 40.860865466564576, -73.82967110958646 40.8609138269993, -73.82969789911479 40.86096219413048, -73.82972469223573 40.86101056306122, -73.82975148302346 40.86105893198183, -73.82977827385247 40.861107299995325, -73.82980506471813 40.861155668902654, -73.82983185562738 40.86120403600242, -73.82985864775706 40.86125240489824, -73.82988543874194 40.861300772885166, -73.8299122297635 40.86134914176597, -73.82993902201238 40.86139750974136, -73.82996595460315 40.86144759875629, -73.82999288604844 40.86149768776275, -73.83001981753424 40.861547776762485, -73.83004675024443 40.8615978666577, -73.83007368181141 40.86164795564392, -73.83010061460506 40.86169804462521, -73.83012754624623 40.861748136299475, -73.83015447793491 40.86179822526554, -73.83018141085026 40.861848314226584, -73.83020887123156 40.861899949200456, -73.83021069612117 40.86190619139146, -73.83021194436658 40.86191251197704, -73.8302126148504 40.861918883940945, -73.83021275206096 40.86192367745902, -73.8302125263309 40.861928468642056, -73.83021173437056 40.861934833951395, -73.8302103649332 40.86194113897853, -73.8302089794863 40.86194581679396, -73.83020723838285 40.861950426549114, -73.83020445462421 40.86195645844692, -73.8302011256632 40.86196233195628, -73.83019726938082 40.861968011984324, -73.83019405518382 40.86197213960941, -73.8301905329761 40.861976120000975, -73.83018544109488 40.86198121018918, -73.83017989446465 40.86198602055549, -73.8301739228022 40.86199052592984, -73.83016919400183 40.86199370490836, -73.83016423090113 40.86199666922481, -73.83015732201432 40.862000324955716, -73.83015194138186 40.86200283390886, -73.8301463786995 40.86200510396351, -73.83013874399909 40.86200779870094, -73.83013088142559 40.862010084279255, -73.83012282777574 40.86201194994668, -73.83011669155377 40.86201308183468, -73.83011047774158 40.86201394256023, -73.83010212202888 40.862014725390694, -73.83009582066474 40.862015035786214, -73.83008950340374 40.862015068806606, -73.83008109477403 40.862014743953125, -73.83007273828098 40.8620139752335, -73.83006652172797 40.86201312321787, -73.83006038058495 40.862012002966495, -73.83001818877514 40.86200496741001, -73.82997833267221 40.86199736436839, -73.82993881709365 40.86198879288599, -73.82989968826875 40.86197926473778, -73.82986098058679 40.86196878357684, -73.82982273551639 40.861957367474524, -73.82979018736843 40.86194777785606, -73.82975806112702 40.86193740002038, -73.8297263887808 40.861926248422876, -73.82969520352057 40.86191433121733, -73.82966453971157 40.8619016610617, -73.8296344246025 40.86188825060365, -73.82960488899086 40.861874116097766, -73.82957596605334 40.86185927110099, -73.82954768421976 40.861843730063576, -73.82952007429209 40.86182750743939, -73.82948295060568 40.86180437748623, -73.82944681604441 40.86178036379994, -73.82941170494992 40.86175548804399, -73.82937765401738 40.86172977908935, -73.82934469521577 40.86170325859596, -73.82931286879591 40.86167595634056, -73.82928219958676 40.86164790297755, -73.8292527195615 40.861619118365894, -73.82913432871916 40.861502179062356, -73.82906750679892 40.861433821924194, -73.82901855390881 40.86138374419255, -73.8288034691557 40.86117883356179, -73.8287595490179 40.86114219041562, -73.82871562774017 40.8611055481512, -73.82867170651309 40.86106890496933, -73.82862778770665 40.86103226177408, -73.82858879009241 40.86099972761253, -73.82858386539031 40.86099561855654, -73.82853994667829 40.86095897622779, -73.82850474208847 40.86092926080994, -73.82850805395313 40.86092545575224, -73.82853400400347 40.86089564662283, -73.82857039517931 40.86085384404426, -73.8286067851256 40.86081204055167, -73.82864317739605 40.86077023795124, -73.82868272678478 40.86073264802473, -73.82871162159802 40.86070518630642, -73.82872055328289 40.86069669622272, -73.82876142116869 40.86065785384119, -73.82880083724991 40.860620393346586, -73.8288402509169 40.86058293193427, -73.82884913667743 40.86057522159818, -73.82885835986369 40.86056774588972, -73.82886791097324 40.86056051019777, -73.8288777781198 40.8605535244099, -73.82888795060798 40.86054679661466, -73.8288984189376 40.86054033130035, -73.8289091688411 40.860534141953124, -73.82892018726943 40.86052822945398, -73.82893146351799 40.86052260549342, -73.82894298334698 40.8605172727517, -73.82895473369126 40.86051223841333, -73.82896670267397 40.86050750876405, -73.82897887485782 40.86050309098488, -73.82899123719385 40.86049898595692, -73.82900377424248 40.86049520176162, -73.82901647294776 40.860491741981505, -73.82902931907013 40.86048860929698, -73.82904229717929 40.860485808187526, -73.82905539303324 40.86048334223404, -73.82906805592704 40.86047996974291, -73.82908086386367 40.86047692524427, -73.8290938025851 40.86047421862229, -73.82910685430507 40.8604718480497, -73.82912000596303 40.86046981891001, -73.82913324094977 40.86046813297955, -73.82914654383944 40.860466792936954, -73.82915990158794 40.86046579786239, -73.82917329520673 40.86046515223021)), ((-73.83333054590867 40.856748428593356, -73.83334274791177 40.85674071279275, -73.83340334992204 40.85670496522936, -73.83346650109462 40.856671859755956, -73.83353200429339 40.85664150144151, -73.83359822545928 40.85660573126639, -73.83367134022858 40.856572085347565, -73.83373319492041 40.85654558927288, -73.83373358790497 40.85654542234766, -73.8337467818451 40.85653987001564, -73.83377070865966 40.85653022960356, -73.83385403392677 40.85650070902711, -73.8339401750003 40.856476289229725, -73.83402859070213 40.856457121609765, -73.83404290617541 40.85648404350921, -73.83427230380113 40.85645224009616, -73.83427254011566 40.85645307158998, -73.83428421063176 40.856450589487785, -73.8343552116735 40.856439226382605, -73.83442744044437 40.85643395952741, -73.83449999188191 40.856434854258005, -73.83457195755445 40.856441900266255, -73.83464243515661 40.85645500801171, -73.83555566488302 40.85660334477596, -73.83555549021736 40.85660395506073, -73.83543800434076 40.85701579964087, -73.83380216746392 40.856744258900086, -73.83270285511287 40.85710153421256, -73.83270334077424 40.857101774447756, -73.8324645784139 40.85717945652922, -73.83176539260113 40.857406935390614, -73.83167324481663 40.8575250329046, -73.83121708729158 40.85767343844923, -73.83133837239909 40.857506507887344, -73.83134720661369 40.85750013991418, -73.83135627011237 40.857485201391036, -73.83139982153445 40.85744186582323, -73.83143420993906 40.857405461447144, -73.83147774806083 40.85736733427683, -73.83163345438818 40.85727555562104, -73.83175478654938 40.857214973711464, -73.83202254253789 40.85711641417985, -73.83224216078138 40.857066391710454, -73.83247089458267 40.85702853240142, -73.8325569505436 40.85701719496422, -73.8326652439122 40.85699607345242, -73.83266531036263 40.85699606004139, -73.83272638079877 40.85698414774186, -73.83272642588742 40.856984139702774, -73.83284236480023 40.85695616375682, -73.83295525868584 40.856921751970084, -73.83306449031873 40.85688109256173, -73.83319889003783 40.85681634705402, -73.83333054590867 40.856748428593356)), ((-73.8338174648771 40.82999165719372, -73.83389717580313 40.8299510533846, -73.83393758285564 40.82993179682941, -73.83397847415857 40.82991230862908, -73.83406128281662 40.82987545162876, -73.8341455269837 40.82984052639713, -73.83435117320852 40.82976154946753, -73.83455842040311 40.8296850310218, -73.83468324045397 40.82964412757199, -73.83473556874931 40.829627723488485, -73.8347923437289 40.829609963300456, -73.83484911985704 40.829592205787556, -73.83490589477155 40.82957444734443, -73.83496300704881 40.8295564047993, -73.83505677020834 40.82952764471502, -73.83515143230741 40.829500639106, -73.83524693759064 40.82947540499981, -73.83530574276257 40.82946065511735, -73.83535982344019 40.82944741039362, -73.83536531928979 40.82944606389296, -73.83542489222984 40.829431474433626, -73.83548906303513 40.82941526700704, -73.83555323617573 40.82939906134905, -73.8356174069163 40.82938285475144, -73.8356815799988 40.829366647220986, -73.8357455051196 40.82935050323686, -73.83580804656835 40.829335857474376, -73.83581125983378 40.829347181289464, -73.8358188999437 40.829371430829106, -73.83582752214164 40.82939548906006, -73.83583875784284 40.829420741466826, -73.83585111580217 40.829445691101974, -73.83586457949457 40.829470309125796, -73.83587913358485 40.829494564899136, -73.83589476509765 40.82951843228878, -73.83591145039237 40.82954188334522, -73.83592917293916 40.829564891029655, -73.8359479126493 40.82958742919857, -73.83596764587521 40.829609472604, -73.83598835371568 40.82963099420361, -73.8360116265339 40.829652722959004, -73.83603587302987 40.82967382995046, -73.83606106244243 40.829694289919686, -73.83608716520017 40.82971407580925, -73.83611415171391 40.8297331677655, -73.83614199003878 40.8297515396281, -73.83617064584325 40.82976917153666, -73.83620008479556 40.829786043631, -73.83622713204765 40.829801195074694, -73.83625482475537 40.829815654946785, -73.83628313568003 40.82982941150163, -73.83631203286065 40.82984244488256, -73.83634148432081 40.8298547415363, -73.83637145570835 40.82986628970718, -73.83640191505104 40.82987707404106, -73.83643283036112 40.82988708548725, -73.83646416491948 40.82989631048581, -73.83649588673386 40.82990474178709, -73.83652796026847 40.82991236673351, -73.83656034878419 40.829919179869684, -73.83660302590559 40.82992817236775, -73.83664607559088 40.82993607847869, -73.83667066466212 40.829939940415294, -73.83667416550553 40.8300123957056, -73.83656714780668 40.83001860069767, -73.83637644972806 40.83002562701223, -73.83607203967817 40.83002997634526, -73.83576760268453 40.830026973184395, -73.83546344589284 40.83001662066893, -73.83539216048108 40.830014475715714, -73.83532087389287 40.83001232891574, -73.83524958730251 40.83001018477319, -73.8351783019068 40.830008038787305, -73.83510701651565 40.830005892757306, -73.83503572993914 40.83000374848256, -73.83496444336946 40.83000160326326, -73.83489316036538 40.82999945620399, -73.83482187380265 40.829997311797044, -73.83475058724677 40.829995166445556, -73.83468128188417 40.829993430914406, -73.83460135107202 40.82999246533586, -73.8345225088742 40.829993287848765, -73.83444373105453 40.82999587087054, -73.83436508755517 40.830000213601345, -73.83428664477496 40.830006309833365, -73.83420847384615 40.83001415696779, -73.83403911491894 40.830035031811875, -73.83393772435777 40.83004752882723, -73.83366367040162 40.83008568952777, -73.83366140280899 40.83008034091068, -73.83373941260514 40.83003408144107, -73.8338174648771 40.82999165719372)), ((-73.82967345906658 40.85595903415601, -73.82993708758129 40.8558333568225, -73.83020349696493 40.855711112953955, -73.83025653839441 40.85568631129976, -73.83030957265244 40.855661515914015, -73.8303626140304 40.85563670340496, -73.8304156553252 40.855611907980716, -73.83044339305712 40.855601262605525, -73.83047158085841 40.85559131666721, -73.83050017367388 40.85558206559676, -73.83052100929562 40.85557593413642, -73.83052714057244 40.8555741799789, -73.83055847927207 40.85556572626143, -73.83058812561623 40.85555864780386, -73.83061806657358 40.855552306374044, -73.83064825586433 40.855546712709796, -73.83067867334144 40.85554186137834, -73.83083433353497 40.85551920010939, -73.83091469889591 40.85550963312449, -73.83099091677465 40.85550055978119, -73.83101379864426 40.85549843481906, -73.83114824396404 40.85548595633673, -73.83119342151012 40.855481822551866, -73.83122596062795 40.85547884720489, -73.83123860023431 40.85547768965156, -73.8312662401004 40.85547609478545, -73.8312939162788 40.85547514561886, -73.83132162638245 40.85547484845187, -73.83134934433191 40.855475198743754, -73.83137701559119 40.85547618921088, -73.83140464841959 40.85547783697479, -73.83143219779178 40.855480125760685, -73.83144972425974 40.855482004581155, -73.83145221178066 40.85548227115913, -73.83150438039657 40.85548855085554, -73.83154888697048 40.855495062474176, -73.83159311822614 40.855502581324814, -73.83163702080309 40.855511104628405, -73.83168057097677 40.855520635052216, -73.83172372848941 40.85553114732409, -73.83175031024086 40.85553854941985, -73.83177654878418 40.85554660386606, -73.83180244652395 40.85555529805958, -73.8318279418011 40.85556462740827, -73.8318530287181 40.8555745792969, -73.83187768358088 40.855585143785795, -73.83190187202607 40.85559630911875, -73.83192556203471 40.85560807434895, -73.831948747757 40.85562040795092, -73.83203804890272 40.855666491025836, -73.8321293770358 40.85571022129229, -73.83222264335609 40.85575153738294, -73.83226749809425 40.85577292986731, -73.83231235999307 40.85579431604102, -73.83235720766172 40.85581571298244, -73.83240723498014 40.8558378936551, -73.8324577361734 40.8558602947143, -73.8324775876455 40.85586769227066, -73.8324977296891 40.855874619287945, -73.83251814570451 40.8558810739409, -73.83253880964274 40.85588703908222, -73.83255970960951 40.85589252820191, -73.8325808267058 40.855897510655694, -73.83260198494372 40.85590311180354, -73.83241491684574 40.85588911941891, -73.83220595769443 40.85587422321784, -73.83203881235364 40.8558741988196, -73.83187173237918 40.85587787349725, -73.83170486480556 40.85588524746567, -73.83155472697577 40.85589629891793, -73.83140501091627 40.855910312510815, -73.83125582695902 40.855927266795454, -73.83092897171377 40.85596705828245, -73.83060176560394 40.85600522384022, -73.83027424427628 40.85604174640888, -73.82994640772463 40.85607663769213, -73.82977755775102 40.85609462365781, -73.82963279710111 40.85611004252865, -73.82931935469465 40.85614432384137, -73.82900607930716 40.85617948163001, -73.82898115981155 40.856181522129305, -73.82893171227686 40.85618557127453, -73.82899116186834 40.85617669951014, -73.82904846698695 40.85616374260539, -73.82910576612092 40.85615079827019, -73.8291285516618 40.85614565508851, -73.82916306404887 40.85613785300429, -73.82922036195455 40.856124907709884, -73.82927766695154 40.856111963298005, -73.82937909394632 40.85607752002604, -73.82947893459138 40.856040523225126, -73.82957709981555 40.856001016891874, -73.82960337403257 40.85598956091486, -73.82967345906658 40.85595903415601)), ((-73.83795462018266 40.840635131144, -73.83795983270451 40.84063509164128, -73.83796504370947 40.84063518811081, -73.83797024845467 40.84063542054604, -73.83797543982587 40.840635788936936, -73.8379806107066 40.84063629417403, -73.8379857551705 40.84063693534846, -73.83799086729341 40.840637710650974, -73.83799594233683 40.84063861827388, -73.83800097200094 40.84063965820553, -73.83800595272626 40.84064083134145, -73.83801087622379 40.84064213316749, -73.83801573893872 40.840643562778254, -73.83802053138955 40.84064511835933, -73.83802525239075 40.84064679990919, -73.83802989365101 40.8406486038141, -73.83803444924617 40.840650528264874, -73.83803891562563 40.84065257055498, -73.838043288051 40.840654728876736, -73.83808583698324 40.84067058419017, -73.83809289984427 40.84067321634499, -73.83814251047941 40.84069170379018, -73.83815211560236 40.84069528142619, -73.83819411135798 40.840710929710006, -73.83821342623068 40.840717973458126, -73.83820827961453 40.840741615930156, -73.83820638142116 40.84075033095624, -73.83819657861416 40.8407953635495, -73.83818487878058 40.840849111168886, -73.83817317655223 40.84090286058422, -73.8381614754929 40.84095660909904, -73.8381497755982 40.841010358514346, -73.83813807331539 40.84106410702411, -73.83812637338502 40.84111785553555, -73.83811392617507 40.84116829638041, -73.8380536463406 40.84139564427237, -73.8379887103196 40.84162225168159, -73.83791913361502 40.84184806369199, -73.83784493765937 40.84207302539529, -73.8377661344023 40.84229708096887, -73.83774819276158 40.842347180853764, -73.83773087087694 40.84239791645597, -73.83771354896807 40.842448651154584, -73.8376962258448 40.84249938674898, -73.83767890150938 40.84255012233866, -73.8376615783289 40.84260085972797, -73.83764425631429 40.84265159441441, -73.8376269330832 40.84270233089714, -73.83760903213896 40.84275413004734, -73.83759086249013 40.84280669963916, -73.83757322542385 40.84285772833137, -73.83757060655503 40.8428653041044, -73.83753143257765 40.84288570726442, -73.83748282395824 40.84291465091431, -73.83744829060609 40.84293521276785, -73.83743605234538 40.84294249942999, -73.83738560422324 40.84297253724828, -73.837329248859 40.84300246405742, -73.83727289226051 40.8430323899367, -73.83721653797618 40.8430623184931, -73.83715899181576 40.84309278563583, -73.83715384440727 40.8430947261381, -73.8371484563886 40.84309614131224, -73.83714284579547 40.84309692942783, -73.83713643857686 40.84309714820642, -73.8371283372454 40.84309625788508, -73.83711901172438 40.84309362698, -73.837112123532 40.843090273717664, -73.83710696748882 40.84308653929047, -73.83710310074186 40.8430826535998, -73.8370997349118 40.84307758536694, -73.83709736135697 40.8430716342499, -73.83711513136224 40.843017333423084, -73.83713327212025 40.842964633295, -73.83715141759473 40.842911932269814, -73.83716956066672 40.84285923213846, -73.83717140219892 40.84285388400062, -73.83718770489797 40.84280653110492, -73.83720584672453 40.84275383186566, -73.83722398971474 40.842701129923306, -73.83723086327869 40.84267991677171, -73.83724034867254 40.84265062266658, -73.83725670760109 40.84260011720809, -73.83727306532121 40.84254961084466, -73.83728942302095 40.8424991026775, -73.83730578187712 40.842448596310255, -73.83732214189651 40.84239808904142, -73.83733849951948 40.84234758176646, -73.83735485711546 40.84229707538924, -73.83737121587448 40.84224656811048, -73.83738757460871 40.84219606082892, -73.83740515296617 40.842145267105664, -73.83742293311326 40.84209389014333, -73.8374406117319 40.84204280479497, -73.83745829151138 40.84199171854462, -73.83746436388974 40.84197417286222, -73.83747597007793 40.84194063228945, -73.83749364980086 40.841889546933274, -73.83751133068239 40.841838461575605, -73.83752809056982 40.841788202471975, -73.83754485280338 40.84173794336884, -73.8375616161995 40.84168768336401, -73.83757837482518 40.84163742425013, -73.8375951381729 40.841587163339064, -73.83761189911937 40.84153690422281, -73.83762866004056 40.84148664510363, -73.83764542330786 40.84143638598494, -73.83766218536637 40.84138612596122, -73.83767894502581 40.84133586683181, -73.8376957070358 40.84128560590186, -73.83771246901388 40.84123534767055, -73.83772923097104 40.84118508763535, -73.83774605534127 40.841128673705036, -73.83776058145169 40.84107189273925, -73.83777279731888 40.84101479875176, -73.8377826885905 40.84095744485221, -73.83779024564824 40.84089988775881, -73.83779401981002 40.840856120922524, -73.8377977951504 40.840812354987975, -73.8378015704836 40.84076858995347, -73.8378053446283 40.84072482401631, -73.83780701344534 40.840720725510295, -73.83780886592987 40.840716675889226, -73.83781089852691 40.84071267424758, -73.83781311002863 40.84070872958865, -73.83781549924726 40.84070484281123, -73.83781806023431 40.84070102201137, -73.83782079061618 40.84069726808625, -73.83782369156098 40.840693588241415, -73.83782675476216 40.840689985166705, -73.83782997901854 40.84068646516388, -73.83783335958282 40.84068303002722, -73.83783689051333 40.84067968515128, -73.83784057299354 40.8406764314383, -73.83784439988719 40.84067327788315, -73.83784836407777 40.84067022537627, -73.83785246318949 40.84066727571531, -73.83785669483332 40.84066443610082, -73.837861051895 40.84066170652291, -73.83786552724487 40.84065909327484, -73.83787011851365 40.84065659545291, -73.83787481856737 40.84065422115144, -73.8378796238555 40.84065196766402, -73.83788452843396 40.840649841285654, -73.83788952400073 40.840647842905234, -73.83789419764128 40.8406460890067, -73.83789895042176 40.840644459487436, -73.83790377285862 40.84064295343365, -73.83790866137505 40.840641578944755, -73.83791360768423 40.840640330606114, -73.83791860940374 40.840639212916884, -73.83792365941494 40.840638227667995, -73.8379287506058 40.840637373948944, -73.83793387704112 40.840636654452915, -73.83793903279017 40.840636070072044, -73.83794421310793 40.840635621700144, -73.83794941088453 40.84063530752626, -73.83795462018266 40.840635131144)), ((-73.8273363586235 40.8604121064866, -73.82733603217272 40.8603583070168, -73.82733349480345 40.86030453935694, -73.82732936399726 40.86025783547103, -73.82735578942773 40.86026522843173, -73.82737438131161 40.86026788118366, -73.82748291772245 40.86039167834453, -73.82752240902626 40.86046263130324, -73.82759856106199 40.86058976488292, -73.82767909050756 40.86071533629033, -73.82776393949763 40.86083925538086, -73.82782209980248 40.86091910323966, -73.82788272293618 40.86099788765911, -73.82794577818066 40.8610755644655, -73.82796516311372 40.86109957616538, -73.8279583930746 40.86110777675366, -73.82794271951734 40.86112681498912, -73.82779329735476 40.86130830948124, -73.82762883442376 40.86150914097499, -73.827465010211 40.86171027304743, -73.82730358174932 40.86190697804909, -73.8271413669184 40.862103308837874, -73.82697836572099 40.86229926270899, -73.82681457696916 40.86249483875692, -73.82667451655344 40.862660412521265, -73.82669708598578 40.86262988914627, -73.8267186790445 40.862598980691054, -73.82673894260854 40.8625675569551, -73.82675785405179 40.862535653024324, -73.82677539669288 40.862503298590546, -73.82679155146207 40.862470529645385, -73.82680629810113 40.86243738307918, -73.82681962466873 40.86240389039175, -73.82683151565139 40.862370088480404, -73.82684195791727 40.862336010644135, -73.82685654183683 40.86228470541569, -73.82687112572684 40.86223340288636, -73.82688571078515 40.86218209855557, -73.82690029463248 40.86213079512117, -73.82691487964813 40.86207948988527, -73.82692946345516 40.86202818464528, -73.82694404841877 40.86197688210618, -73.82695808436847 40.86192733650095, -73.82697155165201 40.8618798080424, -73.82698530382572 40.86183127325955, -73.8269990547956 40.86178273757234, -73.82701280574537 40.86173420188307, -73.82701620906688 40.86172218812448, -73.82702655786359 40.861685665293045, -73.82704030996167 40.86163712870098, -73.82705406085356 40.86158859210506, -73.82706781291384 40.861540054608405, -73.82708290774848 40.86148690230159, -73.82709800375207 40.861433747292615, -73.82711309616859 40.8613805940768, -73.8271281921215 40.86132743996335, -73.82714328805037 40.86127428584743, -73.82715838158525 40.86122113082499, -73.82717347627978 40.86116797670235, -73.82722606201291 40.86098832452378, -73.82727343917946 40.86080783786716, -73.82731558624158 40.86062660495482, -73.82732408439477 40.86057319149791, -73.82733038282048 40.86051960275397, -73.82733447664407 40.860465890944546, -73.82733466627049 40.860460464864886, -73.8273363586235 40.8604121064866)), ((-73.83741776322348 40.84317778452218, -73.83747195952007 40.843150728105684, -73.83746580935018 40.8431685240129, -73.83746077099998 40.84318309681638, -73.83745449663353 40.843201249143604, -73.8374479046 40.84322032222845, -73.83743000218898 40.84327212224509, -73.83741209975453 40.84332392045749, -73.83739419610644 40.84337571866498, -73.83737729968438 40.84342487263723, -73.83736040561548 40.84347402390845, -73.83734350795991 40.84352317697272, -73.83732661146959 40.84357232823483, -73.83730971494984 40.84362148129499, -73.83729281722155 40.84367063345011, -73.83727592183988 40.84371978560569, -73.83725902643322 40.84376893775838, -73.8372421298158 40.84381808990646, -73.83722523317346 40.84386724205171, -73.83720833650608 40.84391639419405, -73.83719143981381 40.8439655463335, -73.8371742654748 40.844016697175235, -73.83715708992804 40.84406784621129, -73.83713991553846 40.8441189961465, -73.83712273993666 40.844170146077026, -73.83710556312269 40.844221296002864, -73.8370883910232 40.844272446832925, -73.83707121534438 40.84432359585394, -73.83705403963698 40.844374745772434, -73.83703686508667 40.844425896590074, -73.83701969051222 40.844477046504224, -73.83700251472553 40.84452819641373, -73.8369853400982 40.844579346321865, -73.83696816307291 40.84463049622365, -73.8369509883906 40.84468164702624, -73.83693381368624 40.84473279602487, -73.83691683402834 40.84478466659203, -73.83689985908708 40.84483653716292, -73.83688287938061 40.844888405923186, -73.83686590201484 40.844940276484806, -73.83684892343902 40.84499214614131, -73.83683194483447 40.84504401669532, -73.83681496501991 40.84509588634416, -73.83679798755045 40.845147755993466, -73.83678101123586 40.845199627442426, -73.83676403134183 40.84525149708242, -73.83674705260715 40.845303366721154, -73.83673007384813 40.84535523545638, -73.83671309505608 40.845407106890136, -73.83669771751808 40.84545831512285, -73.83669380079584 40.845471358635756, -73.83664291451588 40.84564509992299, -73.83663824120397 40.84566298071601, -73.83662489880459 40.84571402432721, -73.83661155757721 40.8457650652366, -73.8365985395391 40.84581486842276, -73.83657448929702 40.84581277222091, -73.8365761537775 40.845802316242924, -73.8365827771435 40.8457547660408, -73.83658939812626 40.84570721673507, -73.83659602028754 40.84565966652973, -73.83660264362294 40.845612117225826, -73.83661615980452 40.84541789892675, -73.8366251085701 40.84522352917128, -73.83662948506829 40.84502906828665, -73.83663075270411 40.84491994011131, -73.83663617636556 40.84481088535695, -73.83664575224691 40.84470199676858, -73.83665946944143 40.844593361677624, -73.83666270675604 40.844541161917896, -73.83668111281071 40.844402936020394, -73.83668199580586 40.844397792747706, -73.83670476356649 40.84426517229108, -73.8367336409261 40.844127984163556, -73.83676771967619 40.84399148596106, -73.83680697105095 40.843855790200074, -73.83681082855712 40.8438383188661, -73.83681739366408 40.843808569522, -73.83682781626463 40.84376134794212, -73.83683823885261 40.84371412546042, -73.83684703784269 40.843674260420265, -73.8368486602334 40.843666905677175, -73.83685125148773 40.843655164196086, -73.83685908279394 40.84361968229238, -73.83686967112662 40.843571098493875, -73.83687100134726 40.843565384037696, -73.83687334019044 40.84355986101217, -73.83687674779223 40.843554667277914, -73.83692601996529 40.84351412465683, -73.83697418135314 40.84347537783113, -73.83702030033353 40.84343826879989, -73.837041391699 40.843421297267206, -73.83706744102771 40.843400341743454, -73.8370739126721 40.84339513252042, -73.83708163420158 40.84338892011076, -73.83711457929886 40.84336241376366, -73.8371617210757 40.843324484868916, -73.83720886042508 40.843286556851766, -73.83721495821187 40.843280508732974, -73.83722131884913 40.84327461947175, -73.83722793402993 40.84326889175786, -73.83723479661322 40.84326333638708, -73.83724189948 40.84325795515041, -73.83724923311992 40.843252757939666, -73.83725678804026 40.84324774744297, -73.83726456065953 40.84324293356071, -73.83727254030589 40.84323831627771, -73.83728071628995 40.843233902782856, -73.83728908148164 40.84322969936946, -73.8372976263906 40.84322570782513, -73.83730634032514 40.8432219362392, -73.83731521616858 40.84321838550202, -73.83732424086432 40.843215060998176, -73.83733340728917 40.843211966319565, -73.83738957336777 40.84318920897793, -73.83741776322348 40.84317778452218)), ((-73.83718017601396 40.830257106996505, -73.8373293611502 40.83023586950505, -73.83733974155496 40.830263082735996, -73.83736147182829 40.830324434477475, -73.83738048092073 40.83038546990489, -73.83739704565357 40.830446914309384, -73.83741115193257 40.83050871094083, -73.83742038446411 40.830560325091945, -73.8374296170122 40.83061193834138, -73.83743755956193 40.83065633139364, -73.83743885075788 40.83066355249177, -73.83744808333462 40.83071516573883, -73.83744853454036 40.83072555539943, -73.83744852573922 40.830735951615594, -73.83744806289172 40.830746340888275, -73.837447140092 40.83075671420422, -73.83744576093382 40.83076705626, -73.83744393136885 40.83077735715855, -73.83744164667672 40.830787607888254, -73.83743891045133 40.830797793145685, -73.83743573219648 40.83080790483976, -73.83743210839069 40.83081792855755, -73.83742804379784 40.83082785530075, -73.83742354674742 40.83083767247407, -73.83741862081781 40.8308473710776, -73.83741326840865 40.83085693940824, -73.83740749903264 40.830866365772835, -73.83740131863716 40.830875642075306, -73.8373947319995 40.830884753914276, -73.83738774980915 40.830893693200416, -73.83738037800927 40.83090245363845, -73.83737145769003 40.83091420334064, -73.83736201393212 40.83092571727441, -73.83735206218711 40.83093697925255, -73.83734161078213 40.83094797758023, -73.83733067160571 40.83095869876659, -73.8373192553561 40.83096913112017, -73.83730738103289 40.83097926206066, -73.83729505815332 40.83098907809396, -73.83728230214928 40.83099857113718, -73.83726912727815 40.83100772860336, -73.83725555016402 40.83101653970984, -73.83724158624544 40.831024993672415, -73.8372272497689 40.831033082406435, -73.83721255854405 40.831040795131095, -73.83719753037406 40.831048123766855, -73.83718218543757 40.831055058436604, -73.83716653560782 40.831061591953016, -73.83715031933556 40.831068022010925, -73.83713381839505 40.83107402212784, -73.83711705415283 40.831079581527916, -73.83710004558453 40.831084697536305, -73.83708281404347 40.83108936478013, -73.83706538089855 40.83109357158304, -73.83704776393311 40.83109731797002, -73.83702998805954 40.83110059767274, -73.83701207344339 40.83110340621721, -73.83699403905386 40.831105743630104, -73.83697590980763 40.831107601842135, -73.83695770822601 40.831108982686075, -73.83693945447254 40.83110988258844, -73.83692116870186 40.83111030157771, -73.83690287462976 40.83111023788641, -73.83688459477973 40.83110969244687, -73.83686735192542 40.831108810785246, -73.83685015759522 40.83110747984212, -73.83683303430828 40.83110570235086, -73.83681600102923 40.83110348013931, -73.83679907791272 40.83110081323602, -73.83678228509565 40.831097708873536, -73.83676564272378 40.83109417068239, -73.83674916977058 40.83109019688854, -73.83673288636192 40.831085799227, -73.8367168102768 40.83108097952396, -73.83670096166092 40.83107574141004, -73.83668535826895 40.83107009661693, -73.83667002025106 40.83106404697429, -73.83665496418291 40.83105760151065, -73.83664020664466 40.83105076745352, -73.83662576776858 40.831043553836594, -73.83661166413704 40.83103596698682, -73.8365971750804 40.83102794825162, -73.83658304969967 40.831019565328894, -73.83656930101152 40.831010828142794, -73.83655594559166 40.83100174572188, -73.83654299764005 40.8309923288923, -73.83653047372779 40.830982588483714, -73.83651838450265 40.83097253351627, -73.83650674653343 40.830962175720025, -73.83649557164009 40.83095152951989, -73.83648487164928 40.830940606639125, -73.83647465839633 40.83092941519917, -73.83646494844113 40.83091797053207, -73.83645574530922 40.830906285249874, -73.83644706319367 40.830894372880245, -73.83643891035993 40.83088224694252, -73.83643129863657 40.83086991825951, -73.83642423390911 40.830857403949096, -73.83641773452045 40.830845440643294, -73.83641177258066 40.83083331691064, -73.83640635279843 40.83082104626539, -73.83640148581237 40.83080864132957, -73.83639717513458 40.83079612011824, -73.83639342429036 40.830783495243296, -73.83639023916949 40.83077078202171, -73.83638762448494 40.830757992166596, -73.83638558256554 40.830745142790796, -73.83638411100215 40.83073224919924, -73.83638322043332 40.83071932401405, -73.83638290370338 40.830706384334526, -73.83638316552316 40.8306934427743, -73.83638400466471 40.8306805164411, -73.8363854187256 40.83066761793835, -73.83638740884908 40.830654764377115, -73.83638997263034 40.830641969261464, -73.83639310410608 40.83062924699078, -73.83639656010696 40.83061616948438, -73.83640061693475 40.83060319008374, -73.83640526624822 40.830590325886426, -73.83641050088744 40.830577595792626, -73.8364163184633 40.830565007002846, -73.83642270706467 40.83055258201255, -73.83642966310164 40.83054033432393, -73.83643717587081 40.83052827742917, -73.83644523940448 40.830516427528636, -73.83645383944494 40.83050479720897, -73.83646296884349 40.83049340086783, -73.8364726133336 40.830482254693806, -73.83648276577534 40.83047136948256, -73.83649340953576 40.83046075961834, -73.83650453391175 40.83045043859332, -73.83651612465245 40.830440416292596, -73.83652816749374 40.830430708004215, -73.83654065055379 40.83042132451719, -73.83657519772163 40.830398400017906, -73.83660974368013 40.830375475506465, -73.83662103322955 40.83036933030531, -73.83663258761987 40.830363477239, -73.83664439025375 40.83035791628393, -73.83665643398498 40.8303526609374, -73.8366686998428 40.8303477120729, -73.83668117476671 40.83034307777642, -73.83669384926814 40.83033875983532, -73.83670670435652 40.83033476722772, -73.83671972817012 40.830331102638226, -73.83673290528836 40.83032776964689, -73.8367462226617 40.83032477183725, -73.83675966249629 40.83032211368644, -73.8367755077967 40.83031944993374, -73.83680712354794 40.83031466981763, -73.83683736712175 40.83031009666661, -73.83690152247998 40.830300395419926, -73.83696567663395 40.83029069413587, -73.8370298307692 40.830280992816114, -73.83707994625726 40.83027303119876, -73.83713006054775 40.83026506955795, -73.83714541445883 40.83026263018449, -73.83718017601396 40.830257106996505)), ((-73.83328591159125 40.85585091004861, -73.8333366728357 40.85581367058702, -73.83337967059532 40.85578208668953, -73.8334226671281 40.85575050277413, -73.83346566243404 40.85571891884082, -73.83350866007338 40.85568733399427, -73.83358161455713 40.85564057582692, -73.83365267785281 40.85559216968671, -73.83372178580598 40.85554215960882, -73.83378887308578 40.85549058602464, -73.8340166937268 40.85529620503995, -73.83424336930199 40.855101052934856, -73.83425048386736 40.85509634097396, -73.83425781142897 40.855091821123494, -73.8342653413042 40.855087496970114, -73.83427306517774 40.85508337390473, -73.83428097236238 40.85507945731492, -73.83428905691042 40.85507575439602, -73.83429730339967 40.8550722669269, -73.83430570707739 40.85506899850258, -73.83431425606595 40.85506595630998, -73.8343229385057 40.85506314033202, -73.83433174489768 40.85506055505746, -73.83434066336879 40.855058205872155, -73.8343496856173 40.85505609276428, -73.83435879858416 40.85505422111787, -73.83436799159793 40.8550525900172, -73.83437725516187 40.85505120305055, -73.83438657622382 40.85505006290057, -73.83439594174253 40.85504916774768, -73.83440534577261 40.855048523886694, -73.83441477290762 40.855048126793044, -73.83442421127688 40.85504798095215, -73.83443365258533 40.85504808365065, -73.83444308141097 40.855048436667346, -73.83445248945425 40.855049039089884, -73.8344618624882 40.855049889096875, -73.83447119221105 40.855050986676396, -73.83448086338241 40.85505212976964, -73.83449047343306 40.855053528514254, -73.83450001524953 40.85505518199956, -73.83450947461145 40.85505708570272, -73.83451883965698 40.85505924050722, -73.83452810209779 40.85506164099826, -73.83453724652531 40.855064283551734, -73.83454626463107 40.855067170857296, -73.8345551445824 40.85507029209207, -73.834563875701 40.855073649041756, -73.83457244851941 40.85507723358844, -73.83458084999862 40.855081043011886, -73.83458907065987 40.855085073696635, -73.83459710340762 40.85508931752808, -73.83460493401458 40.8550937726849, -73.83461255774813 40.85509843465793, -73.83461996040349 40.85510329262089, -73.8346270093822 40.855108253632984, -73.83463383257465 40.85511339622053, -73.83464041814345 40.855118711361584, -73.83464676016774 40.855124195445825, -73.83465285036577 40.855129840356916, -73.83465868400033 40.85513564338671, -73.83466425161281 40.855141592815194, -73.83466954609837 40.85514768412978, -73.83467456273777 40.85515390741837, -73.8346792979775 40.85516026087489, -73.83468414637316 40.85516737270806, -73.8346873253028 40.85517241822005, -73.8346917408302 40.855180002191155, -73.83469560842653 40.855188067140425, -73.83469911643603 40.855196227026546, -73.83470225538639 40.85520447553251, -73.83470502412732 40.85521279824883, -73.83470742267882 40.855221187071145, -73.83470944276577 40.85522963118167, -73.83471108558741 40.85523812517924, -73.83471234880756 40.855246654652596, -73.83471322888596 40.855255212392805, -73.834713728219 40.85526378849783, -73.83471384327558 40.85527237215674, -73.83471357408675 40.855280950762655, -73.83471292421484 40.855289522519705, -73.834711891328 40.85529807121571, -73.8346980154434 40.85534288685372, -73.83469372691674 40.85535434487823, -73.83468379273866 40.85537788122233, -73.83467467779516 40.8553972332506, -73.83467752731325 40.85539453135422, -73.83464427966413 40.85545980182462, -73.83460374178439 40.855522652115845, -73.83455621369468 40.85558261259351, -73.83450205110266 40.85563923711513, -73.8344490863392 40.85568868550488, -73.83439146708433 40.85573503669889, -73.8343295070669 40.85577803810241, -73.83426354131949 40.85581745606176, -73.83419392973633 40.85585307586977, -73.83419759956642 40.85584959623842, -73.83419337816483 40.85585168291587, -73.83415857683094 40.85586769407681, -73.8341231110977 40.85588284520225, -73.83408702133448 40.855897118339854, -73.83405034315346 40.85591050093325, -73.83401311691756 40.85592297773164, -73.83397537823684 40.855934537079364, -73.83394511467131 40.85594332105078, -73.83391448654302 40.85595133726989, -73.8338835223301 40.855958580374526, -73.83385226120274 40.855965037813945, -73.83382073401337 40.85597070332885, -73.83378897635401 40.8559755724679, -73.8337570250072 40.85597963898039, -73.83372490963953 40.855982896605525, -73.83369267295006 40.85598534450418, -73.83366109188435 40.855988357947844, -73.8336293918722 40.85599056076818, -73.83359761443548 40.85599194852259, -73.83356579160167 40.85599251945615, -73.8335339636888 40.855992276328514, -73.83350216272657 40.855991216484455, -73.83347042785152 40.85598934088093, -73.83343879463324 40.855986654071764, -73.8333760756203 40.855979118235474, -73.83331361927574 40.855970416606894, -73.833251462355 40.85596055464257, -73.83315715111759 40.855945366562224, -73.83318438537835 40.855925387098, -73.83323618044477 40.85588739186167, -73.83328591159125 40.85585091004861)), ((-73.83192759919442 40.85612400724031, -73.83204592884758 40.856121492494374, -73.83216430301532 40.85612201325158, -73.83227477459158 40.856125004155736, -73.83238515581277 40.85612949774461, -73.8323993372858 40.85613070609662, -73.8324670277579 40.85613646670815, -73.83243453991915 40.85616040864326, -73.83241924061151 40.85617168399837, -73.83238527460539 40.856196717870596, -73.83220908992827 40.856318937731245, -73.83202773180363 40.85643671666542, -73.8319867794713 40.85646147460246, -73.83194685178728 40.85648718223586, -73.83190798677354 40.85651381170682, -73.83187022125719 40.85654133875674, -73.83183359207241 40.856569736425605, -73.83179813368149 40.856598977749975, -73.8317588303162 40.85663146693511, -73.83171952454052 40.856663956103176, -73.83168022109844 40.85669644526116, -73.83164091642963 40.856728935304325, -73.83160161172479 40.85676142443338, -73.83158838750069 40.856769949000984, -73.83157480121125 40.856778135353885, -73.83156086354421 40.85678597810462, -73.83154659468909 40.85679346647664, -73.83153200771487 40.85680059148397, -73.83151711805574 40.85680734684557, -73.83150193996438 40.85681372447778, -73.83148649361911 40.85681971810644, -73.83147079445631 40.85682532055008, -73.83145486028228 40.856830525531166, -73.83143870889654 40.85683532947366, -73.83142235811209 40.856839723398515, -73.83140582335193 40.85684370552727, -73.8313891236038 40.85684727138508, -73.83137117113608 40.85684908125058, -73.83135314631333 40.856850426353475, -73.83133507167226 40.856851305826254, -73.83131696856131 40.85685171970003, -73.83129885834268 40.85685166260316, -73.8312807576117 40.85685113816185, -73.83126269364 40.856850149117385, -73.8312446830412 40.856848691892225, -73.83122674952426 40.856846771023484, -73.83120891324488 40.85684438924217, -73.83119119318171 40.85684154567562, -73.83117361066267 40.856838248459454, -73.83115618585242 40.856834496722875, -73.83113894007876 40.85683029860153, -73.83112507625104 40.856825851489134, -73.83111142087917 40.85682104898577, -73.83109798937453 40.85681589381555, -73.83108480069957 40.85681039140923, -73.83107186550345 40.85680455168798, -73.83105920037652 40.85679838007911, -73.83104681953492 40.856791882906926, -73.83103473956227 40.85678506830024, -73.83102297466777 40.85677794528492, -73.83101153550956 40.85677052018009, -73.83100043748283 40.856762802013336, -73.83098969360843 40.85675480070921, -73.83097931572351 40.85674652529013, -73.83096931684898 40.85673798568067, -73.83095970881968 40.856729191803616, -73.83095050228663 40.856720152679685, -73.83094170788947 40.85671088183191, -73.83093333390956 40.856701387376944, -73.83092539573963 40.856691679242864, -73.83091785556293 40.85668263715529, -73.8309107345437 40.8566734002747, -73.83090404451212 40.85666398032492, -73.83089778899856 40.85665438811711, -73.8308919774542 40.85664463807306, -73.83088661697211 40.856634739208125, -73.83088171225943 40.85662470593718, -73.8308772727765 40.85661454908006, -73.83087330086767 40.85660427944611, -73.83086980242611 40.85659391145198, -73.83086678216358 40.85658345771149, -73.83086424242205 40.856572929934444, -73.83086218672271 40.85656234253398, -73.8308606197818 40.85655170632293, -73.83085954037877 40.85654103480688, -73.83085895085102 40.85653034149673, -73.8308588535383 40.8565196390027, -73.83085924484797 40.85650894082704, -73.83086012949632 40.85649825778244, -73.83086150032129 40.85648760786833, -73.83086335967872 40.85647699739155, -73.83086570633645 40.856466444360095, -73.83086744515342 40.85645612996847, -73.83086965704778 40.85644586939939, -73.83087233844319 40.85643566985148, -73.83087548573087 40.85642555113029, -73.83087909415298 40.856415518631735, -73.83088316129614 40.8564055885611, -73.83088768119806 40.8563957735165, -73.83089264671976 40.85638608249237, -73.8308980554547 40.856376528992435, -73.83090389551303 40.856367124705706, -73.83091016687162 40.85635787863689, -73.83091685763152 40.85634880607695, -73.83092395828639 40.8563399142158, -73.83093146405997 40.85633121565321, -73.83093936306487 40.85632272117765, -73.83094764697373 40.856314440682205, -73.83095630390604 40.85630638225386, -73.83096532671372 40.856298558488945, -73.83097542197858 40.856290143770565, -73.83098589252842 40.85628199434578, -73.83099672291337 40.85627412279884, -73.8310079036225 40.856266538120614, -73.83101942039886 40.85625925019549, -73.8310312589967 40.85625226440548, -73.83104340752877 40.856245591539015, -73.8310558493729 40.85623923877556, -73.83106857027674 40.85623321419861, -73.83108155717836 40.85622752409237, -73.83109479226975 40.85622217563464, -73.8311082613077 40.856217173306916, -73.831121947661 40.85621252789074, -73.83113583591191 40.8562082393634, -73.83114991062438 40.85620431490623, -73.8311641539996 40.856200758095035, -73.83117854941788 40.85619757520891, -73.83119308026409 40.856194770725935, -73.83120772756486 40.85619234371782, -73.83122247826081 40.85619029956839, -73.83145685021871 40.85616321139942, -73.83169161067403 40.856138123314864, -73.83180944807042 40.85612955228205, -73.83192759919442 40.85612400724031)), ((-73.83328168560719 40.85499465087958, -73.83328983227409 40.854994572602784, -73.8332979772201 40.85499470773964, -73.8333061109508 40.854995058977934, -73.83331422517337 40.85499562270372, -73.83332230684002 40.85499639979861, -73.83333034883503 40.85499739025234, -73.83333834167739 40.854998591349776, -73.83334627351202 40.85500000127276, -73.83335413603945 40.85500161910888, -73.83336192214382 40.85500344484784, -73.83336961760719 40.85500547306621, -73.83337721769014 40.85500770195609, -73.83338471053537 40.85501013059995, -73.83339208903831 40.85501275448508, -73.83339934015785 40.85501557179168, -73.83340646153559 40.855018577113405, -73.83341344131412 40.85502176953265, -73.83342026883781 40.85502514183016, -73.83342847300517 40.85502957149214, -73.83343344579126 40.85503241882525, -73.83343977746077 40.85503631179084, -73.8334459248903 40.855040370180724, -73.83345188454004 40.85504458678585, -73.83345764930091 40.85504895889457, -73.83346320851491 40.85505348018804, -73.83346855982818 40.85505814345896, -73.83347369612935 40.85506294689605, -73.83347860676713 40.85506788147915, -73.83348329175287 40.855072942705775, -73.83348774280043 40.85507812426055, -73.83349195280981 40.855083419829796, -73.8334964757748 40.85508877258154, -73.83350075177178 40.85509423933929, -73.83350477725618 40.85509981469494, -73.83350854749537 40.8551054941392, -73.83351205777251 40.855111266859396, -73.83351530453861 40.85511712924846, -73.83351828307227 40.85512307229468, -73.83352099101717 40.85512908969124, -73.83352342127552 40.855135174223975, -73.83352557742319 40.85514131869408, -73.83352745236003 40.85514751678794, -73.8335290449225 40.85515375949894, -73.83353035275668 40.855160039619726, -73.83353137587373 40.85516635264786, -73.8335321095589 40.85517268687023, -73.83353255738588 40.85517903598844, -73.83353271818441 40.85518539369746, -73.8335325884167 40.85519175188767, -73.83353217166092 40.8551981024598, -73.83353146437481 40.85520443910536, -73.83353047251298 40.855210751927466, -73.83352919252873 40.855217036418566, -73.8335276303743 40.85522328358229, -73.83352578487948 40.85522948711347, -73.83352333494747 40.85523647320088, -73.83352057444921 40.85524339490514, -73.83351750934594 40.85525023962786, -73.83351414202089 40.855257002870054, -73.8335104748685 40.85526367563024, -73.83350651501797 40.855270252515645, -73.83350226131266 40.85527672181826, -73.83349772680943 40.85528307905439, -73.83349291033815 40.85528931791883, -73.83348781903933 40.85529542851649, -73.83348246123279 40.85530140365541, -73.83347683810904 40.85530724153622, -73.83347095918519 40.85531293046631, -73.83346483159278 40.855318464152404, -73.83334173975899 40.85543156385239, -73.83321491648024 40.855542264516146, -73.83312168313093 40.855629011905606, -73.8330257533396 40.85571404708216, -73.83292718058573 40.85579732509192, -73.83287942481205 40.855832522808704, -73.83282865336118 40.85586994035213, -73.8328015208649 40.855888090980116, -73.83279301234207 40.855886761228504, -73.83278795840255 40.85588598758463, -73.83272895782657 40.85587696376902, -73.83269124356477 40.855871193656874, -73.83265975810862 40.855866378084215, -73.83259055722219 40.85585579415706, -73.83257770026954 40.855853286539016, -73.83256496273953 40.855850452214085, -73.83255235768486 40.85584728849981, -73.83253990525851 40.85584379902745, -73.83252761373988 40.855839992814, -73.83251550210707 40.85583586898654, -73.83250358102289 40.85583143206312, -73.83249186706173 40.855826693774205, -73.83248037209039 40.855821651435676, -73.83246911030908 40.855816317675, -73.83245809357548 40.8558106934101, -73.83244733728476 40.85580478766823, -73.83243684971626 40.855798609466426, -73.83242664746703 40.85579216153043, -73.8324167388163 40.85578545287714, -73.83240713797322 40.85577849253225, -73.83239785440536 40.85577128861402, -73.83238890113803 40.85576384924592, -73.83238028408306 40.85575618164049, -73.83237201863551 40.855748294825176, -73.83236354407167 40.85574008983153, -73.83235543889151 40.85573167105679, -73.8323477113673 40.85572305021952, -73.83234037333618 40.855714236341846, -73.83233343070746 40.85570523753685, -73.83232689174663 40.855696068224624, -73.83232076354909 40.85568673651983, -73.83231505439387 40.85567725143955, -73.83230976898847 40.85566762739859, -73.83230491442811 40.8556578725117, -73.8323004966154 40.855647997593465, -73.83229652025778 40.85563801705865, -73.83229299007623 40.855627939919096, -73.8322899096013 40.855617776985845, -73.83228728354037 40.8556075426737, -73.8322851106869 40.85559724508531, -73.83228339931063 40.85558689683972, -73.83228214937063 40.85557651414564, -73.8322813608507 40.855566103306565, -73.83228103371881 40.85555567692939, -73.83228117149649 40.85554524942708, -73.83228177296559 40.85553483340468, -73.83228283811009 40.85552443516575, -73.8322843633264 40.85551407271479, -73.83228634622412 40.855503753252314, -73.83228840871209 40.85549385263446, -73.83229090986926 40.85548400938524, -73.83229384136857 40.85547423339797, -73.83229720672692 40.85546454088662, -73.8323009988123 40.85545493814416, -73.83230521285118 40.85544543687009, -73.8323098440677 40.85543604966423, -73.83231488888099 40.85542678552634, -73.83232034133387 40.855417655253525, -73.83232619428529 40.855408668740836, -73.83233244177568 40.855399837685944, -73.8323390778524 40.855391171085074, -73.83234609300708 40.85538267702875, -73.83235347890601 40.85537436811166, -73.83236122960328 40.85536625062855, -73.83236933320276 40.85535833897004, -73.83237778376775 40.85535063582878, -73.83242891921991 40.85530660939442, -73.83248615920343 40.85526715099451, -73.83254879921117 40.855232745863496, -73.83262325977006 40.855190347066916, -73.83270142456831 40.85515198419822, -73.83278291363783 40.85511784130024, -73.8328673328272 40.855088084386054, -73.8329542738103 40.85506285783739, -73.83305422985681 40.855032347057154, -73.83315620582754 40.85500597237218, -73.83321461990407 40.85499888081012, -73.8332735490745 40.854994944388174, -73.83328168560719 40.85499465087958)), ((-73.83773019171933 40.84339869968286, -73.83780290734008 40.843188812095626, -73.83787346631422 40.84298447027031, -73.83787539612972 40.84297888001259, -73.83787712176259 40.842973871187176, -73.8378877083965 40.842943153996416, -73.83790951024119 40.84293226794275, -73.83796055372923 40.8429059677833, -73.83796928595712 40.84290146857345, -73.83802906042976 40.84287067007185, -73.83805458865979 40.84285751727606, -73.83808883721633 40.842839872442894, -73.83814861158046 40.84280907297855, -73.8382083882586 40.84277827438683, -73.83826816250983 40.842747475760646, -73.83827361390944 40.842746306458054, -73.83827911712739 40.842745283107874, -73.8382846626777 40.84274440569693, -73.83829024581954 40.84274367331796, -73.83829585705156 40.84274309226117, -73.83830149401771 40.84274265621977, -73.8383071460287 40.842742372382745, -73.83831280835022 40.84274223714146, -73.83831847268002 40.842742251384756, -73.83832413427494 40.84274241510602, -73.83832978364694 40.842742729192366, -73.83833541605513 40.842743192736776, -73.83834102438725 40.842743804828736, -73.83834659916172 40.84274456365395, -73.83835213681911 40.842745470108, -73.83835763024925 40.84274652237981, -73.8383630711564 40.84274771865691, -73.8383692532449 40.84274985698891, -73.83837533653563 40.84275215186813, -73.83838131509972 40.842754603286366, -73.83838717827423 40.842757207626605, -73.83839292488214 40.84275996128529, -73.83839854188902 40.84276286064223, -73.83840402811562 40.84276590299423, -73.83840937526827 40.842769085628284, -73.83841429802645 40.84277222444385, -73.83874019671981 40.843155650844984, -73.83876519133321 40.84318505720718, -73.83877754025517 40.84319958683359, -73.83880992605458 40.84323768968391, -73.83881047941604 40.84323834061402, -73.83879503988216 40.84324701150844, -73.83879477560245 40.84324646183759, -73.83875479234854 40.84326961438999, -73.83870801061032 40.84329588754029, -73.83869432244207 40.84330357482888, -73.83866123002085 40.84332216067311, -73.83861444821304 40.84334843198425, -73.8385676675497 40.84337470507889, -73.83851230832481 40.843403207474935, -73.8384569478755 40.843431706240665, -73.83840158737435 40.84346020678063, -73.83834622919949 40.84348870639674, -73.83829086860348 40.84351720688332, -73.83806355791391 40.84363682301066, -73.83783965373587 40.84376008597682, -73.83779775082112 40.843787792898674, -73.83775705843088 40.84381652086734, -73.8377176157678 40.84384624022285, -73.83767946915827 40.84387691771347, -73.83764265780998 40.8439085218783, -73.83760722093731 40.843941018555, -73.83757238194762 40.843977283730204, -73.83756780760629 40.84398100623514, -73.83756230217573 40.843981432520536, -73.83755727863728 40.843978754580434, -73.83755562485143 40.843974229969746, -73.83755933340275 40.84395503845775, -73.83756070807485 40.84394760951576, -73.8375642456979 40.843928488901874, -73.83757235198406 40.8438846579571, -73.8375804582617 40.84384082611089, -73.83759709607057 40.84379170056419, -73.8376137326691 40.843742575013, -73.83763036923867 40.843693451259995, -73.83764700697382 40.843644325704844, -73.83766364349864 40.84359520014519, -73.83768028118465 40.843546074584424, -73.83769691765812 40.84349694991964, -73.83771355410704 40.84344782525209, -73.83773019171933 40.84339869968286)), ((-73.83898806758913 40.82978033092052, -73.83900158266184 40.82977785271282, -73.8389685724733 40.82980054505636, -73.83893560601238 40.82982475388724, -73.83890370572877 40.829849771943145, -73.83887290843055 40.829875575863525, -73.83884324501777 40.82990213417501, -73.83881474874886 40.829929420810586, -73.83878744933435 40.82995740609623, -73.83876137886712 40.82998605585885, -73.83873656349503 40.83001534312087, -73.83867857953224 40.83008169793822, -73.83862344804103 40.83014943897916, -73.83857122136276 40.8302184951818, -73.83849622005891 40.830330198487474, -73.83842568511905 40.830443569415756, -73.83835968083335 40.83055850360727, -73.83829826675591 40.83067489489464, -73.83824149887448 40.830792641607545, -73.83818942846015 40.83091163216323, -73.83817323632026 40.830954502776464, -73.83815704178836 40.830997373383774, -73.83814084960454 40.831040244892385, -73.83812529635615 40.831082651738704, -73.83810282191577 40.83114890300902, -73.83809249427239 40.83118410781406, -73.83807324751838 40.831255925973345, -73.83806655222392 40.83128291344559, -73.83805279884292 40.83135052499192, -73.83805110868609 40.831382489329094, -73.83805097350478 40.8313825008457, -73.83805054675824 40.83138394013967, -73.83804980957923 40.83138530425655, -73.83804878221409 40.83138655540391, -73.8380474943849 40.831387659404605, -73.83804598055153 40.83138858388923, -73.83804428582857 40.83138930280665, -73.83804245650073 40.83138979641101, -73.83804054357955 40.8313900512665, -73.83803860162021 40.83139005934521, -73.8380366851581 40.83138982072383, -73.83803484871316 40.831389341782284, -73.83803314323131 40.83138863609964, -73.83803161726975 40.831387724455496, -73.83803031344908 40.83138663122314, -73.83766376395944 40.8301823406506, -73.83779659194727 40.830159165974145, -73.83781935729003 40.83015497556421, -73.83783758948516 40.83015162073968, -73.83787858345937 40.830144074585064, -73.83803128306722 40.83010877717559, -73.83818259396577 40.83007018630151, -73.83833239512805 40.83002833601741, -73.83843204168345 40.82999843240653, -73.83853056926625 40.82996646860827, -73.83862790905606 40.82993246614115, -73.83872398628995 40.82989645281892, -73.83879210537198 40.82986962862423, -73.8388590901586 40.82984120802539, -73.83892487775917 40.82981121344888, -73.83898806758913 40.82978033092052)), ((-73.83292731975077 40.854979429596604, -73.83314690177703 40.854889228069304, -73.83336276239505 40.854793985193986, -73.83357469735793 40.85469379164647, -73.83381647780381 40.8545698550933, -73.83405313956843 40.8544403483265, -73.8341080793314 40.854405212676596, -73.83416141317448 40.854368676226905, -73.83421307813092 40.854330783013296, -73.83426301479481 40.85429157617623, -73.83431116375388 40.85425110155777, -73.83435746915201 40.85420940590552, -73.83439724663316 40.85417117586523, -73.8344354502052 40.85413203045279, -73.83447204182463 40.85409200743583, -73.83450699056168 40.85405114549266, -73.83454025955265 40.854009485094096, -73.83457181906121 40.85396706221859, -73.83460163814263 40.85392392184779, -73.83462297753816 40.85388986789172, -73.83463191240563 40.85387560969158, -73.83466218781057 40.85382729752875, -73.83469246199009 40.85377898355483, -73.83471470858903 40.85374348108774, -73.83474109659346 40.853744222175735, -73.83474014504696 40.85374916091559, -73.83473426154224 40.85377970260239, -73.83472488659565 40.85382837430894, -73.83471551281689 40.85387704781703, -73.83470613784291 40.85392571952129, -73.8347030429807 40.85393936295381, -73.83469934824191 40.8539529181789, -73.83469505009514 40.853966374385536, -73.83469015926288 40.8539797117782, -73.83468467578061 40.85399291594893, -73.83467861035741 40.85400597250518, -73.83467196896528 40.854018864345996, -73.83466475755836 40.85403158157445, -73.8346569856732 40.854044104393225, -73.83464866163597 40.85405642290873, -73.83462247876987 40.854090464522685, -73.83446331266069 40.85429091373217, -73.83429787562153 40.85448841089991, -73.83412626039564 40.85468284717298, -73.83394856448992 40.854874107401464, -73.83385712869939 40.85498170618271, -73.83356870423098 40.85525464396157, -73.83358281450643 40.85522120021477, -73.83358983340588 40.85518649005046, -73.83358958919409 40.85515137319259, -73.83358208681955 40.85511672042443, -73.83356751270911 40.85508339288431, -73.8335462277182 40.855052215040935, -73.83351876004767 40.85502396117579, -73.83351587249372 40.855021472550035, -73.83350850109638 40.85501553397017, -73.83350086830183 40.85500978861844, -73.8334929823983 40.85500424190973, -73.83348485522525 40.85499890196553, -73.83347649388722 40.85499377329847, -73.83346791023263 40.85498886042815, -73.83345911134799 40.85498417507105, -73.83345010909964 40.85497971454286, -73.83344091294387 40.85497549146399, -73.83343153355655 40.8549715049494, -73.83342198278149 40.85496776131953, -73.83341227009069 40.854964266891564, -73.83340240734141 40.85496102258292, -73.83339240400343 40.85495803561134, -73.83338227549643 40.85495530509844, -73.83337203129452 40.854952836460896, -73.83336168087422 40.85495063421475, -73.83334889640639 40.854948602246786, -73.83333602690047 40.8549469033368, -73.83332308895544 40.85494553930971, -73.83331009560773 40.854944513786315, -73.8332970658349 40.85494382589351, -73.83328401149417 40.85494347654891, -73.83327094799407 40.854943469376785, -73.83325789313514 40.85494379990033, -73.83324486232812 40.8549444708434, -73.83323186743915 40.854945479521575, -73.83321892626003 40.854946825060146, -73.83320605183616 40.85494850747797, -73.83319326196367 40.854950524099365, -73.8331805696994 40.854952870440734, -73.83313121621106 40.854961973284105, -73.8330822806624 40.85497229867947, -73.83303381644004 40.854983838600084, -73.83298587813695 40.85499657691677, -73.83293851321918 40.85501050199252, -73.83291032458567 40.85501960837295, -73.83289177746143 40.8550255995009, -73.83283035234857 40.85504676033422, -73.83276985444752 40.85506940919204, -73.83271034785443 40.855093523656365, -73.8326518931168 40.855119077702284, -73.8326301414354 40.85512930726042, -73.83259454959644 40.85514604530326, -73.83254686644895 40.85517135468313, -73.83249918207687 40.85519666494196, -73.83245149766626 40.855221976081474, -73.83243688652533 40.855228983204924, -73.83242260057645 40.85523636720473, -73.83240865525981 40.85524411909855, -73.83239506957362 40.85525222990916, -73.83238185659077 40.855260688849725, -73.83236903531177 40.85526948604264, -73.83235661880059 40.85527861430301, -73.83234462132057 40.855288061044845, -73.83233305950725 40.85529781368556, -73.83232194405947 40.85530786233535, -73.83231128805704 40.855318193506065, -73.83230153133205 40.85532887357304, -73.83229226615364 40.85533980469063, -73.83228349967864 40.85535097066051, -73.83227524499159 40.855362356193424, -73.83226751159862 40.855373954099306, -73.83226030903324 40.85538574638241, -73.83225364445013 40.855397717744744, -73.83224752617636 40.85540985829313, -73.83224196255497 40.8554221518309, -73.83223695718266 40.855434583055015, -73.83223251958634 40.85544713667107, -73.83222865454188 40.85545980007911, -73.83222536328104 40.85547255527115, -73.83222265413553 40.85548539055293, -73.83222052715118 40.85549828791477, -73.83221898710622 40.85551123385624, -73.83221803403966 40.855524213069046, -73.83221766918322 40.8555372075451, -73.83221789375736 40.85555020377886, -73.83221870779644 40.85556318826291, -73.83221988778193 40.855576380392435, -73.83222164899699 40.85558953464597, -73.83222398792033 40.855602636610534, -73.83222690340268 40.85561567187655, -73.83223038955086 40.855628626027496, -73.83223444284349 40.85564148465034, -73.83223905976155 40.85565423243155, -73.832244234405 40.855666857656054, -73.832249963257 40.855679344109774, -73.8322562380546 40.855691676472304, -73.83226305051885 40.85570384572654, -73.83227039476776 40.8557158329535, -73.8322782648966 40.85572762823916, -73.83223278245283 40.855696968778865, -73.83218608764601 40.85566737822245, -73.83213822071933 40.855638888144306, -73.83208922668021 40.85561152202116, -73.8320391552592 40.85558531144135, -73.83198804911164 40.855560271773975, -73.8319554521455 40.855545772294896, -73.83192227089002 40.855532058085295, -73.83188854088979 40.855519142703734, -73.83185429058003 40.85550703699722, -73.83181955668427 40.855495757227565, -73.83178437238836 40.85548531154725, -73.8317487732456 40.85547570991312, -73.83171279362313 40.855466962280346, -73.83167426128864 40.85546074849968, -73.83163548220125 40.85545550147499, -73.83160424255394 40.855452076332625, -73.83159649311105 40.85545122666257, -73.83155734262792 40.85544792953615, -73.83151806750631 40.85544561375123, -73.83147871518605 40.85544427847652, -73.83169314980711 40.85539680056825, -73.83190545190321 40.855344089994425, -73.83196796632896 40.855324802463805, -73.83203047952796 40.855305516698465, -73.83209299506493 40.85528623000212, -73.83234730521087 40.855198660447506, -73.83254286956074 40.855129014927705, -73.83273624454806 40.85505592421952, -73.83292731975077 40.854979429596604)), ((-73.8347428029041 40.85623880765135, -73.83379109948866 40.856083695842074, -73.83370343810384 40.85606934714249, -73.83346272514447 40.856029945569624, -73.83350673284183 40.856032716867155, -73.8335508393958 40.85603437438149, -73.83359499262951 40.85603491443524, -73.83363914629172 40.85603433516075, -73.83368325055503 40.85603264188911, -73.83372725442635 40.85602983184544, -73.83377111163647 40.856025910366064, -73.83381476999055 40.856020880978015, -73.83385818677961 40.856014748122426, -73.83390130742126 40.85600752162646, -73.83393237191427 40.85600192386092, -73.83396317741081 40.855995553992386, -73.8339936918702 40.855988419178814, -73.83402387969382 40.855980526573184, -73.8341183374317 40.8559508642331, -73.83420887345996 40.85591483510206, -73.8342947469623 40.85587273528757, -73.83437525140083 40.855824909574764, -73.83444972756477 40.855771750544015, -73.83451756476776 40.85571369406961, -73.83457820678493 40.855651216626605, -73.8346325116049 40.85559889932844, -73.83467957254179 40.8555426823976, -73.83471890429793 40.85548313966177, -73.83475010687766 40.85542088289061, -73.83477285850203 40.85535654917833, -73.83478692628606 40.855290799157935, -73.83479300214879 40.85528503750309, -73.83479349486994 40.85528004587853, -73.83479400045995 40.85527082826133, -73.83479409690798 40.85526160195377, -73.83479378773633 40.85525238136881, -73.83479307530594 40.8552431710123, -73.83479195602325 40.855233985286965, -73.83479043342408 40.8552248332027, -73.83478851104401 40.85521572376956, -73.83478618648228 40.855206668690506, -73.83478346920216 40.855197677884426, -73.83478035443761 40.85518876034938, -73.83477685046599 40.85517992600268, -73.83477296081622 40.85517118655568, -73.83476868665434 40.855162550114485, -73.8347640362532 40.85515402839728, -73.83475901434346 40.85514562681374, -73.83475362563543 40.85513735887796, -73.83474787604356 40.85512923090186, -73.83474177265687 40.855121253701384, -73.83473498425752 40.85511356007491, -73.83472787048 40.855106036174966, -73.8347204372296 40.855098691915416, -73.8347126927835 40.85509153721345, -73.83470464780663 40.85508457568621, -73.83469631057847 40.85507781635044, -73.8346876858204 40.855071268217856, -73.83467878538556 40.85506493400673, -73.83466962110458 40.855058825440445, -73.83466019534711 40.855052943422756, -73.83465052587584 40.855047298785045, -73.83464061861164 40.85504189513767, -73.83463048539406 40.85503674060197, -73.83462013807826 40.85503183699583, -73.83460892030948 40.85502691233009, -73.83459748595853 40.85502228361474, -73.83458584805324 40.85501795807241, -73.83457401962562 40.855013941124604, -73.83456201490058 40.85501023549318, -73.83454985046812 40.855006846604844, -73.83453753817439 40.85500377987946, -73.83452509462052 40.855001036241255, -73.83451253283421 40.85499862291292, -73.83450380173007 40.854996695040874, -73.83449498821848 40.85499499847651, -73.83448610297087 40.85499353413566, -73.83447715903064 40.85499230293744, -73.834468161137 40.85499130668967, -73.8344591247054 40.854990546314944, -73.83445005922341 40.85499002182686, -73.8344409753602 40.85498973504169, -73.83443188259682 40.85498968867454, -73.8344227939944 40.8549898764407, -73.83441372021107 40.85499030465887, -73.83440467074337 40.854990969740804, -73.8343956562717 40.854991869000294, -73.83438668865114 40.85499300425538, -73.83437777737176 40.85499437461921, -73.8343689331138 40.854995977405586, -73.83436016774368 40.8549978099302, -73.83435149075135 40.854999871306084, -73.83434291163572 40.855002157044495, -73.83433444106817 40.85500466806129, -73.83432608974039 40.85500739716791, -73.83431786951422 40.85501034348087, -73.83430978514022 40.85501350430554, -73.83430184967976 40.855016873357286, -73.83426007880021 40.8550409843757, -73.83421644084697 40.85506617328698, -73.83417373519491 40.85509082412678, -73.83428811476223 40.85497598567785, -73.83436408025909 40.85489971499307, -73.83454699255793 40.854704466122776, -73.83462115754239 40.854621835206274, -73.83473787817705 40.85448632705218, -73.83485037188892 40.85434877491187, -73.8349585780291 40.85420925165074, -73.83501345047317 40.85413548433942, -73.83511242974447 40.854002425877994, -73.83512018873647 40.853991240241726, -73.83517224497601 40.853916191929066, -73.83519803420249 40.853924568234625, -73.83517619499534 40.8539627764555, -73.83509631901221 40.85410075735784, -73.83507920238277 40.854142233893874, -73.83506385894864 40.854184106477504, -73.83505030185884 40.854226334606004, -73.8350481908727 40.85423397496901, -73.83503855021033 40.854268870581215, -73.83502861359236 40.85431167479573, -73.83502050042615 40.85435470043637, -73.83500546351225 40.85446898836079, -73.83499457320374 40.85458354875766, -73.83498783686335 40.854698290688866, -73.83498267811362 40.85477707280457, -73.83497493898143 40.85485573056197, -73.83496462312287 40.85493422074212, -73.8349516802378 40.85499983282095, -73.83494353196771 40.855033532900784, -73.83493590135755 40.855065086946475, -73.8349173044423 40.85512991110387, -73.8348992029504 40.8551843370796, -73.83490235796788 40.8551813447557, -73.83487449348834 40.855260121379736, -73.83484097024285 40.85533761749937, -73.83480189079386 40.85541359732764, -73.83473839301571 40.855533009835376, -73.83467262442419 40.85565171126479, -73.83462271721628 40.855762705565795, -73.83458125272469 40.85587568492765, -73.8345764884706 40.85589433179567, -73.83457280176039 40.8559417977647, -73.83457647176363 40.85598926437651, -73.8345874503127 40.8560360769034, -73.83459596001816 40.85605984409165, -73.83461245275983 40.856095020254784, -73.83461344445169 40.85609684787483, -73.83464213785402 40.8561414453641, -73.83467780530614 40.856183040692855, -73.83469738877127 40.8562029714347, -73.8347428029041 40.85623880765135)), ((-73.83033606502478 40.85884818343962, -73.8304079092754 40.8586948614427, -73.83040752703837 40.858696851868636, -73.83043374162547 40.85863471502878, -73.83048645526677 40.8585407018811, -73.8305721292201 40.858424622831876, -73.83066383738516 40.85832672540383, -73.83086170675772 40.858074626635215, -73.83109799928492 40.8579977538024, -73.8311141095377 40.858027484620024, -73.83118235139017 40.85800597628552, -73.83116592119433 40.85797565608733, -73.83137469463018 40.8579077356281, -73.83042375269288 40.85912642839223, -73.83055695626612 40.85937754976561, -73.82987798693657 40.8595878231248, -73.82994674019046 40.85950810578229, -73.83000467918193 40.85942453726976, -73.83010187382776 40.85928580117289, -73.8301261591439 40.85924830713083, -73.83019405104852 40.85912895861974, -73.83024403423033 40.85903623017529, -73.83029340123927 40.85894136393409, -73.83033606502478 40.85884818343962)), ((-73.83035379798736 40.85557230612947, -73.83042770887049 40.85556245984465, -73.83034111409826 40.85560150395634, -73.83014576944588 40.85568955483468, -73.82986393296277 40.855816785260586, -73.82964521190321 40.85591935187181, -73.82955450596762 40.85596008494859, -73.82942394610525 40.85601872205943, -73.82937981368596 40.85603643612323, -73.82933501019527 40.85605313792443, -73.82928955704273 40.85606880408112, -73.82924350759721 40.85608343557203, -73.82919689870258 40.85609700273476, -73.82914977424933 40.85610950293211, -73.82910217815817 40.856120921820654, -73.8290473003383 40.856134066949785, -73.82899188516646 40.85614585691575, -73.82893600737948 40.8561562855251, -73.82889800416083 40.85616240114498, -73.82887971800604 40.85616534204691, -73.82884806575403 40.856169629165095, -73.82882307163528 40.856173014855266, -73.82879662275958 40.85617622008374, -73.82879683361521 40.85617677870195, -73.82874099855363 40.85617888312827, -73.82851661917556 40.85578579284337, -73.82898756808892 40.855736280432126, -73.82898043706358 40.85573107852236, -73.82900136046862 40.855728702520175, -73.82907279331368 40.85572058417678, -73.82914422020903 40.85571246668081, -73.8292156459056 40.85570434733789, -73.82928707277995 40.85569622435052, -73.82935849723714 40.8556881121213, -73.82942993000887 40.85567998815375, -73.82946443215837 40.85567607068859, -73.82950135680318 40.85567187583957, -73.8295727824241 40.85566375177303, -73.82964420799757 40.85565563936866, -73.82971144819581 40.855647992600446, -73.82978706623815 40.855639402731306, -73.82985848465727 40.85563128478078, -73.82992991848133 40.855623165007785, -73.83000134397918 40.85561504787976, -73.8300727694481 40.855606935209956, -73.83014420204533 40.85559881080003, -73.83021562036576 40.85559069713083, -73.83028503483823 40.85558146295848, -73.83035379798736 40.85557230612947)), ((-73.83692801499369 40.82784337517644, -73.83691405247919 40.827793469718415, -73.83690009117112 40.82774356425999, -73.83688613107172 40.827693657900575, -73.83687217098664 40.82764375424062, -73.83682030924231 40.82743016229628, -73.83677347234672 40.82721590476195, -73.83674966696813 40.82709354938744, -73.83674104582938 40.82704923544359, -73.8368573380449 40.82705053284648, -73.83687004264989 40.82707380974984, -73.83688162255716 40.8270950247243, -73.8369114288555 40.82714492288383, -73.83694338281549 40.82719404694325, -73.83697744781882 40.82724234462013, -73.83701358842808 40.82728976543479, -73.8370517656556 40.82733625620088, -73.8370919381378 40.82738176552961, -73.83713406212892 40.827426246531346, -73.83717809033284 40.82746964960983, -73.83722397544648 40.82751192787037, -73.83727167135378 40.82755303351935, -73.83732112124933 40.827592926852496, -73.8373722742744 40.82763156006961, -73.83742507599132 40.82766889437034, -73.83747946604781 40.82770488554296, -73.83755614091086 40.82774965820881, -73.83763456051652 40.82779265299789, -73.83771465383366 40.82783382838381, -73.83779634507093 40.82787315003776, -73.83787956080954 40.827910582733764, -73.83796422763898 40.82794608764399, -73.8380021640141 40.82796046243971, -73.83804907337428 40.82797874987526, -73.83809644205341 40.82799634185257, -73.83807018893118 40.82799794209454, -73.83803228066328 40.828000252662285, -73.83796211620157 40.82800453411062, -73.83789195173958 40.828008811914245, -73.83782863256181 40.82801250317289, -73.83776530982269 40.82801619349129, -73.83770198944539 40.828019884678774, -73.83763866669001 40.82802357582814, -73.83757534748634 40.82802726604724, -73.83751202708791 40.82803095713037, -73.83744870549698 40.8280346481771, -73.83736746713296 40.82804140082545, -73.83728657337691 40.828050237651944, -73.83720612382913 40.828061147991995, -73.8371262026787 40.828074121159446, -73.83704690717079 40.828089140183344, -73.83700085405161 40.828099841436625, -73.83699392874443 40.828074045027215, -73.83698068669982 40.82802471061202, -73.83696751786277 40.82797937450342, -73.83695711048009 40.8279435425366, -73.83695435140581 40.82793404199828, -73.83694257095374 40.82789348768516, -73.83694118259803 40.82788870858747, -73.83692801499369 40.82784337517644)), ((-73.83281593076536 40.85619567863248, -73.83281989455924 40.856192772184144, -73.83283697197355 40.85619739754472, -73.83285393732073 40.856202255967894, -73.83290847777455 40.856216428577724, -73.83293036294539 40.856222114463485, -73.83296301825393 40.85623060026124, -73.83301755993803 40.85624477372164, -73.83307209927341 40.85625894715275, -73.83308277227394 40.85626217645201, -73.83309329872476 40.85626567388496, -73.83310366321932 40.856269434926965, -73.83311385983004 40.85627345866888, -73.83312387078739 40.85627773698071, -73.83313368779858 40.856282266248506, -73.83314330257066 40.85628704285836, -73.83315270089216 40.85629205868532, -73.83316187565393 40.856297311017705, -73.83317081382809 40.856302792632796, -73.83317950475652 40.85630849721176, -73.83318794133912 40.856314418440945, -73.83319611291553 40.85632055090209, -73.83320401002031 40.85632688557656, -73.83321162555103 40.85633341705125, -73.83321894884733 40.85634013990786, -73.83322597401072 40.85634704153096, -73.83323269156004 40.856354119205456, -73.83323881767117 40.85636104744346, -73.8332446314714 40.85636813281586, -73.83325012706679 40.856375360906334, -73.83325529498066 40.85638272719873, -73.83326013404721 40.85639022358698, -73.83326463481228 40.85639783655011, -73.83326879253401 40.85640556518082, -73.83327260369717 40.85641339236468, -73.83327606237846 40.85642131539175, -73.83327916386548 40.85642932164827, -73.83328191054575 40.856437404834274, -73.83328429296286 40.85644555232933, -73.83328631113476 40.85645375692944, -73.83328796033983 40.856462009622966, -73.83328924297929 40.85647029870693, -73.83329015432713 40.85647861697061, -73.83329069322421 40.85648695360642, -73.83329085969308 40.856495299609485, -73.83329065257232 40.856503645072685, -73.83329007663286 40.856511979197045, -73.83328912714875 40.856520294771755, -73.83328780651654 40.8565285818949, -73.8332861171375 40.85653682886348, -73.83328406258983 40.856545027578264, -73.83328164052392 40.85655316903087, -73.83327885808053 40.85656124332625, -73.83327571765179 40.85656924236338, -73.83327222163895 40.85657715443921, -73.83326839618448 40.85658543253923, -73.83326419266348 40.85659360293412, -73.8332596170308 40.85660165572711, -73.83325467404829 40.856609583720974, -73.8332493708613 40.85661737521971, -73.83324371104571 40.85662502302446, -73.83323770530933 40.85663251364322, -73.8332313595912 40.856639843482654, -73.83322467985278 40.85664699994434, -73.83321767678838 40.856653974939256, -73.83321035753431 40.8566607603733, -73.83320273041065 40.85666734905445, -73.83319480612066 40.856673729291714, -73.83318659415916 40.856679898397324, -73.83317810166926 40.85668584557559, -73.83316934290106 40.85669156364316, -73.83316032735397 40.85669704811123, -73.83310103163855 40.85672498476614, -73.83304173587106 40.856752922290944, -73.83298244123748 40.85678086068734, -73.83295127764009 40.8567936295737, -73.8329195988286 40.856805643093004, -73.83288743684848 40.85681689228634, -73.83285481901952 40.85682736098399, -73.83282178449429 40.85683704383935, -73.83278836295575 40.85684592828822, -73.83275458763558 40.856854005373556, -73.83272516413024 40.856860055447164, -73.83269549106654 40.856865357742876, -73.83266560166945 40.85686990600513, -73.83263552916839 40.856873692177615, -73.83260530678172 40.856876712706416, -73.832574970086 40.856878969443976, -73.83256650276869 40.85687912554808, -73.83255803364162 40.85687905832684, -73.832549575744 40.85687877050074, -73.8325411326386 40.85687826027386, -73.83253271854838 40.856877531268864, -73.83252434297293 40.85687657899711, -73.8325160153844 40.85687540977576, -73.83250774527096 40.856874023618616, -73.83249954567869 40.85687242054467, -73.83249142252868 40.85687060416444, -73.83248338530676 40.856868575392234, -73.832475445864 40.85686633784723, -73.83246761368396 40.85686389334423, -73.83245989706187 40.85686124459678, -73.83245230547688 40.85685839522063, -73.83244484721958 40.8568553497303, -73.83243753177138 40.85685211084105, -73.8324303686135 40.8568486812682, -73.83242336484845 40.85684506642499, -73.83241653114341 40.856841269028436, -73.83240987222203 40.856837297189905, -73.83240339757015 40.85683315182364, -73.83239711547388 40.85682883924517, -73.83239103422395 40.85682436396907, -73.8323851609182 40.85681973320956, -73.83237950029387 40.85681494967508, -73.83237405944203 40.8568100232814, -73.83236884547412 40.85680495583976, -73.83236386548572 40.85679975546504, -73.83235912658144 40.85679442667, -73.83235463111289 40.85678897756254, -73.83235038618247 40.85678341355598, -73.83234639651366 40.85677774276158, -73.83234241920267 40.856771874777195, -73.8323387066231 40.856765907222766, -73.83233526349629 40.856759849110055, -73.83233209218508 40.856753704044536, -73.83232919622466 40.85674748103623, -73.8323265827083 40.85674118910046, -73.83232425281514 40.85673483094038, -73.83232220533411 40.8567284164597, -73.83232044736077 40.85672195377316, -73.8323189776908 40.85671545008294, -73.8323178022383 40.85670891170114, -73.83231691979444 40.85670234763089, -73.83231633034549 40.856695763275205, -73.83231603386874 40.85668916763887, -73.83231603627819 40.85668256703398, -73.83231633161415 40.856675973158325, -73.83231692224183 40.85666938871671, -73.83231780694788 40.8566628245134, -73.83231898334878 40.85665628504728, -73.83232045260102 40.85664978202645, -73.83232221232795 40.85664331724845, -73.83232426012113 40.856636905117625, -73.83232659241799 40.85663054742978, -73.83232920682146 40.856624254086846, -73.83233210330873 40.85661803409367, -73.83233527475923 40.85661188924086, -73.83233871759217 40.85660582852812, -73.83234243177797 40.85659986366176, -73.8323464101961 40.85659399643246, -73.83235064927027 40.856588234038895, -73.83235514423377 40.856582585479, -73.83235988558492 40.85657705614194, -73.83236487331233 40.85657165053012, -73.8323701002705 40.85656638033951, -73.83240702436547 40.85653240347873, -73.83244394367193 40.85649842930051, -73.83248086650087 40.85646445421495, -73.8325178297113 40.85643044135538, -73.83255471086201 40.85639650310562, -73.83258597688999 40.856370325243134, -73.83261839006356 40.85634496758396, -73.83265476672173 40.85631682233754, -73.83269114453516 40.856288677081196, -73.832727519939 40.85626053451128, -73.83277365736696 40.85622669065514, -73.83277828418295 40.85622329440097, -73.83281593076536 40.85619567863248)), ((-73.83826278709876 40.82805927324665, -73.83828341638939 40.828057614646724, -73.8383502348203 40.82807651339817, -73.83841768486947 40.828094066753394, -73.83850954504084 40.82811523733039, -73.83860232166424 40.82813396246751, -73.83869590334835 40.828150219494326, -73.83879017157982 40.8281639893329, -73.83909035410292 40.8282055585647, -73.83909200338468 40.82822898458202, -73.83905524992376 40.8282385532985, -73.83901814634049 40.82824730296314, -73.83898072229101 40.82825522641307, -73.83894300742917 40.82826231738594, -73.83890503852852 40.8282685669278, -73.8387354278707 40.82829254602289, -73.83856516484971 40.82831368198829, -73.83841177481492 40.82833585170317, -73.83825758816802 40.828354546881656, -73.83810273537884 40.82836975059432, -73.83794735876168 40.82838145043145, -73.83779159232851 40.8283896357735, -73.83763557126373 40.828394301406206, -73.83749667503615 40.82839690991274, -73.83735773815589 40.82839626019819, -73.8372188934214 40.82839235154929, -73.83708027362215 40.82838518685543, -73.83707772738335 40.82837735073914, -73.83706262240035 40.82832769312739, -73.83704868985782 40.828278052478346, -73.83703908603796 40.82824226758159, -73.83703641104687 40.82823230881185, -73.83707371713683 40.8282222975743, -73.83731229866416 40.828166108425286, -73.83736299247214 40.828154169106384, -73.83737035989716 40.82815289538826, -73.83742303840927 40.82814378460008, -73.83748349444234 40.82813488375834, -73.83754429890104 40.82812747820011, -73.83760538775954 40.82812157323765, -73.83766563851727 40.82811515918296, -73.83772589045546 40.82810874239699, -73.83778614000443 40.828102328277666, -73.83784639191938 40.82809591142873, -73.83790664144956 40.82808949544543, -73.83796689333688 40.828083080334494, -73.8380341407513 40.82807767006614, -73.83810138696715 40.82807226065733, -73.83816863317642 40.82806684940834, -73.83823587937042 40.828061439921136, -73.83826278709876 40.82805927324665)), ((-73.83999299433071 40.82844546588827, -73.84030352974614 40.828403455934094, -73.84031033302617 40.82841445501422, -73.84031665577947 40.828425620920854, -73.84032249330724 40.82843693563775, -73.8403278408867 40.828448391053854, -73.84033269024715 40.82845997545136, -73.84033703669176 40.82847166991347, -73.84034087667679 40.82848346903226, -73.84034636658865 40.828495885474204, -73.84035130730277 40.82850843172756, -73.84035569409845 40.82852109878088, -73.84035951872012 40.82853386861291, -73.84036278119557 40.82854672951724, -73.84036547326487 40.82855966527354, -73.84036759733323 40.82857266147729, -73.84036914631976 40.82858570461125, -73.84037012144846 40.8285987784682, -73.84037052037182 40.828611873139394, -73.84037034076596 40.82862496881078, -73.84036958621739 40.828638052880365, -73.84036825557688 40.82865111003802, -73.84036635124752 40.828664126779714, -73.84036387563897 40.82867708689976, -73.84036082996874 40.82868997689236, -73.84035838664825 40.82869886681295, -73.84022390639856 40.82870571705118, -73.84003029864107 40.82871071475263, -73.83934601613585 40.82872856408056, -73.83919995870748 40.828733179073524, -73.83918877258716 40.82873353177858, -73.83892415052205 40.828741890984105, -73.83867970152087 40.828749056730466, -73.83843524672977 40.82875614360748, -73.83819078733286 40.82876315251715, -73.83792709717629 40.828775749379595, -73.83766408798738 40.8287949085157, -73.83748061039442 40.82881039977677, -73.83747279759332 40.828809549503475, -73.83746757036656 40.82880725217391, -73.83746327834157 40.8288030813285, -73.83746110159078 40.8287978067541, -73.8374615763001 40.82879323200052, -73.83746433318773 40.82878862714512, -73.83746960142724 40.828784811062, -73.83749353200152 40.828780972651415, -73.83778962599754 40.82874105087229, -73.8380857243342 40.82870114724968, -73.83838182464298 40.82866126087978, -73.83864182715905 40.8286257590932, -73.83890212857189 40.828591549350634, -73.83916272060209 40.82855862983747, -73.83943903519784 40.82851904724158, -73.83971579902958 40.828481325033984, -73.83999299433071 40.82844546588827)), ((-73.82822151279372 40.859268791824476, -73.82825430430964 40.85927953578473, -73.82825434762377 40.85928021572066, -73.82829960675018 40.85930205877965, -73.82833958972168 40.859329196067335, -73.82837323214173 40.8593609056122, -73.8283996395243 40.85939634502997, -73.82841810977807 40.85943457136677, -73.82842815211445 40.85947456814176, -73.82842950002416 40.859515273280856, -73.82842211714843 40.859555602537995, -73.82840619837475 40.85959448551656, -73.82838216978298 40.85963088728115, -73.82835711634753 40.8596576621582, -73.82832825211375 40.85968212700091, -73.82829594556678 40.85970396898355, -73.82825944285212 40.85972346163126, -73.82824837225596 40.859728477100454, -73.82819410812608 40.85974801712644, -73.82794081410455 40.85982228324286, -73.82786740603778 40.85984668243426, -73.82782957189386 40.859854899701816, -73.82780468326906 40.85985729748911, -73.8277795995595 40.859857624749104, -73.82774490006003 40.859855349634195, -73.82771115455078 40.85984880219905, -73.82767927110584 40.85983815849619, -73.82765010651266 40.859823704362334, -73.8276244413828 40.85980582817733, -73.82760663687594 40.85978910195378, -73.82759191922837 40.859770726136546, -73.82746408075309 40.85941230134392, -73.82782557325801 40.85927367753684, -73.82795696255342 40.859260548954154, -73.82802794834119 40.85925345625059, -73.82809310192405 40.85925293110639, -73.82815790641475 40.85925806589781, -73.82822151279372 40.859268791824476)), ((-73.83600523943404 40.829447613214214, -73.8359917123751 40.82942655928152, -73.8359791428707 40.82940516812239, -73.83596755221058 40.82938345957836, -73.83595694980914 40.829361461578515, -73.83594734864414 40.82933919935546, -73.83593876168865 40.82931669994278, -73.83593529073084 40.829306505887665, -73.83614443716957 40.82925946054109, -73.83616420158812 40.82926689700572, -73.8363244498462 40.82931964060566, -73.83637870203872 40.82933631284052, -73.83651373261098 40.829376850185476, -73.83681085878243 40.82945297845375, -73.83681990680562 40.82945776028576, -73.83688829904496 40.829495187117146, -73.83695523544067 40.82953410577287, -73.83696905050519 40.82954371198835, -73.83698242606692 40.82955367057548, -73.83699534674295 40.82956396980618, -73.83700779833559 40.82957459795409, -73.83701976665398 40.82958554059143, -73.83703123749595 40.82959678779274, -73.8370421966706 40.82960832513015, -73.83705263235777 40.82962013817928, -73.83706253273083 40.82963221521705, -73.83707984295857 40.82965481151478, -73.83709616581078 40.82967782874788, -73.83711148474895 40.82970124257995, -73.83712578205781 40.82972502507105, -73.83713904238653 40.82974915098595, -73.83715125394274 40.82977359419394, -73.83716239662891 40.82979833125411, -73.83717246577908 40.82982333064276, -73.83717586830548 40.82983250970344, -73.8370232407049 40.8298438060551, -73.83698506400303 40.829845878169024, -73.83694681849767 40.8298469992489, -73.83690854569042 40.82984716665188, -73.83687028352189 40.82984637953106, -73.83683207821583 40.82984464335487, -73.83679396771737 40.82984195547554, -73.83675599351255 40.82983831955389, -73.83671819589975 40.82983374014959, -73.83668061755054 40.82982822092522, -73.83664329756436 40.829821771841864, -73.83660627387954 40.82981439295348, -73.83656959150976 40.82980609963256, -73.83653328482767 40.82979689553019, -73.83649739529693 40.829786793312444, -73.83646196201678 40.82977580294052, -73.83643528627957 40.8297667223248, -73.83640901880655 40.829756982218164, -73.8363831868455 40.82974659076401, -73.8363578200195 40.829735554308186, -73.83633294436396 40.82972389179835, -73.83630859067637 40.82971161408448, -73.836284780272 40.82969873110261, -73.83626154274285 40.829685261805565, -73.83623890177503 40.82967121613269, -73.83621688221831 40.829656613030124, -73.8361955089354 40.82964146604095, -73.83617480559461 40.82962579230861, -73.83615220231239 40.82960753144847, -73.8361303863791 40.829588728703314, -73.83610937909395 40.829569400312764, -73.8360892017385 40.82954956972039, -73.83606987797623 40.8295292558707, -73.83605142316964 40.82950847859693, -73.83603511315185 40.829488594960495, -73.83601971345846 40.829468297487225, -73.83600523943404 40.829447613214214)), ((-73.82837985168307 40.859852175207074, -73.8283899724172 40.85985215244033, -73.82840008772399 40.85985239440925, -73.8284101857407 40.85985290199666, -73.82842025461605 40.859853671582954, -73.8284302824897 40.859854703150525, -73.82844025749645 40.85985599848278, -73.82845016897352 40.85985755306129, -73.82846000269068 40.85985936596455, -73.82846974798277 40.85986143357466, -73.8284793953614 40.85986375587762, -73.82848893060562 40.859866328349796, -73.82849834422933 40.859869150076634, -73.82850762438605 40.85987221563761, -73.82851676041282 40.85987552051446, -73.82852574045155 40.85987906378907, -73.828534553844 40.85988283914225, -73.82854319111338 40.85988684205742, -73.82855164277821 40.85989106981913, -73.8285598958128 40.85989551430356, -73.82856816732178 40.859900154221606, -73.8285762200376 40.859905010832506, -73.82858404567642 40.85991007692005, -73.82859163238933 40.859915347964254, -73.82859897189249 40.8599208167489, -73.82860605590199 40.859926476057765, -73.82861287732008 40.85993231867649, -73.82861942429312 40.859938341886, -73.82862569092788 40.85994453126974, -73.82863167011729 40.85995088321516, -73.828637352389 40.85995739140489, -73.82864273183823 40.85996404592474, -73.82864780136946 40.859970838659805, -73.82865255625688 40.859977762399154, -73.8286569917818 40.85998480723039, -73.82866109966483 40.859991964136405, -73.82866487636628 40.859999225908, -73.82866831597667 40.86000658443197, -73.82867141733757 40.860014028900785, -73.82867417097908 40.86002155209642, -73.82867658049167 40.86002914141739, -73.82867863877287 40.86003679145022, -73.8286803446642 40.8600444913873, -73.8286816946283 40.86005223311895, -73.82868268988594 40.8600600031396, -73.8286833233368 40.86006779513532, -73.8286835997436 40.86007560190924, -73.828683519141 40.860083409954, -73.8286828456044 40.86009117929771, -73.82868182105108 40.86009892560791, -73.82868044668088 40.86010664348339, -73.82867872845877 40.86011431942565, -73.82867666284729 40.86012194532497, -73.82867425460682 40.86012951488504, -73.82867150851173 40.86013701640637, -73.8286684245827 40.86014444178472, -73.82866500639413 40.860151784721815, -73.8286612610994 40.86015903082045, -73.82865718988909 40.8601661782813, -73.82865279872135 40.86017321630737, -73.82864809473791 40.860180135003716, -73.82856518738292 40.86030803205991, -73.82852585977834 40.86036869918082, -73.82844256376447 40.860494429885016, -73.82840147349548 40.86055645048148, -73.82839615169445 40.8605642183125, -73.82836456140149 40.860610313420175, -73.82832542889247 40.860663264446735, -73.82828411405865 40.86071524958606, -73.82827488626583 40.86072631370114, -73.82827052459261 40.860731545369575, -73.82823657002314 40.86070288260266, -73.8282108605704 40.860678555362966, -73.82818627249898 40.86065356792588, -73.82816283419501 40.860627950951134, -73.82814057760261 40.86060173510368, -73.82811952280979 40.860574949229914, -73.82810493031555 40.860554836619016, -73.82809970055794 40.86054763029639, -73.82808113211863 40.86051980805166, -73.82806383994205 40.86049151494755, -73.82804784410176 40.86046278523315, -73.82803316347804 40.8604336558574, -73.82801981815797 40.86040415566635, -73.82801209967872 40.860384706145645, -73.82800525345726 40.8603650670204, -73.82799928179297 40.86034526620944, -73.8279941929363 40.860325323535996, -73.82798999513062 40.86030526152478, -73.82798669069156 40.86028510179113, -73.8279842842949 40.860264870456405, -73.82798278062828 40.86024458913935, -73.82798217607208 40.86022428124753, -73.82798247769064 40.860203966602164, -73.82798367947824 40.86018367401017, -73.8279857813829 40.86016342328218, -73.82798878690366 40.860143236935656, -73.82799268530465 40.860123138367314, -73.82799747532916 40.86010315459002, -73.82800315100182 40.860083302704034, -73.82800836547892 40.860072092150205, -73.82801408485119 40.86006102372596, -73.82802030196468 40.86005011182844, -73.8280270084842 40.860039369052004, -73.82803419726527 40.860028806191856, -73.82804185759592 40.86001843763976, -73.8280499835177 40.86000827419272, -73.82805856551178 40.85999832754276, -73.82806759049409 40.8599886120782, -73.82807705013649 40.859979137691916, -73.8280869349178 40.859969916976524, -73.8280972282169 40.85996095621059, -73.82810792168937 40.85995227159041, -73.82811900108852 40.859943868497616, -73.82813045451884 40.85993576042177, -73.82814226772204 40.859927957246896, -73.8281544264515 40.859920464354666, -73.82816691762794 40.8599132943323, -73.8281797258188 40.859906452559756, -73.82819283438909 40.8598999507185, -73.82826235694938 40.859872757614056, -73.82827161389255 40.85986965118834, -73.82828100422947 40.85986678899375, -73.82829052083217 40.85986417552201, -73.82830014828663 40.85986180894924, -73.82830987945331 40.859859698269695, -73.82831969891829 40.8598578416594, -73.82832959718384 40.859856242706186, -73.82833956238021 40.85985490499432, -73.82834958264925 40.859853827605725, -73.82835964375374 40.85985301232009, -73.82836973856811 40.859852462728824, -73.82837985168307 40.859852175207074)), ((-73.83992513270712 40.828946570028315, -73.84016844811507 40.82893925599086, -73.84015145014358 40.82895064982521, -73.84012510238598 40.82896831075753, -73.84007504242935 40.82900157412219, -73.84002498124141 40.82903483566224, -73.840016114848 40.8290407270169, -73.83999276441455 40.82905624259198, -73.83987201381332 40.829083870612706, -73.83975228032597 40.82911394206658, -73.8396336493474 40.82914643636408, -73.83957207835492 40.82916318190589, -73.83953933546151 40.829172087286054, -73.83924257529888 40.829175795562925, -73.83894578013165 40.829177298612045, -73.83864898198928 40.82917660007997, -73.83845564161523 40.829172904822755, -73.83826252265699 40.82916494209938, -73.83806979347005 40.82915272205278, -73.83806428917673 40.8291483153988, -73.83804796084168 40.82913574675329, -73.83803115741193 40.829123545741226, -73.83801389071618 40.82911172318496, -73.83799617970507 40.829100286314834, -73.83782959783288 40.82902752169678, -73.83806952918236 40.82900995967881, -73.83822492298097 40.82900105213985, -73.83830362591323 40.82899654026967, -73.83830989221936 40.828996181653096, -73.83855057789154 40.82898619827016, -73.83883330914065 40.82897659282886, -73.83911608914896 40.828967870149555, -73.83939891439081 40.82896002212242, -73.8396817753759 40.82895305593797, -73.83992513270712 40.828946570028315)), ((-73.83352147036194 40.85625432408462, -73.83425087280524 40.85637702180557, -73.83425157001075 40.85637946674329, -73.83415955275255 40.85638525164372, -73.83406846299968 40.85639671360767, -73.83397890815313 40.85641377606902, -73.83389148265968 40.85643632642521, -73.83380677039119 40.856464213338896, -73.83372533514388 40.85649725212714, -73.83367973844831 40.85651464964997, -73.83362644939803 40.85653675284055, -73.83357418750997 40.85656023073894, -73.83352301808407 40.856585054624944, -73.8334729993024 40.856611196668716, -73.83342419054914 40.856638622738856, -73.83337664881859 40.85666730590432, -73.83324968432531 40.85673785883538, -73.83321480032642 40.85675629011382, -73.83312054194003 40.85680609240999, -73.83308320465939 40.85682379520365, -73.833045136709 40.8568405802268, -73.83300637965435 40.856856425927006, -73.8329669714804 40.85687131975171, -73.83292695374385 40.856885243750554, -73.83288636798797 40.856898185376224, -73.83284525338864 40.85691013027696, -73.83278470584644 40.856925434651075, -73.83272349104384 40.8569391288463, -73.83266168493006 40.85695119676298, -73.83262361454896 40.856957565649815, -73.8325993634501 40.85696162410241, -73.83253660136755 40.856970394763444, -73.83246942949425 40.85698206307441, -73.83240225759738 40.856993731346236, -73.8323350856792 40.85700539867847, -73.83228579676504 40.85701364128306, -73.83227913330833 40.857014756311095, -73.83225639497738 40.857018559349996, -73.8321783030783 40.857033640688314, -73.83210089186245 40.85705062210248, -73.83202424200412 40.85706949110438, -73.8319484318333 40.85709022439684, -73.83190273911258 40.85710350582752, -73.83185762238718 40.857117879476085, -73.8318131303158 40.8571333319068, -73.83176930681556 40.85714984877659, -73.83172619463137 40.857167410337574, -73.83168383649466 40.85718600224512, -73.83163836488494 40.857205593642526, -73.83163179234182 40.8572045160673, -73.8316269127214 40.85720231264563, -73.8316222429114 40.85719828063029, -73.83161971015664 40.857193837507296, -73.83161947838516 40.85718794434801, -73.83162171099899 40.85718258067286, -73.83165042909208 40.857148408379985, -73.83166034548829 40.8571366435108, -73.83169769136316 40.857092329844214, -73.8318063787282 40.85699060485251, -73.83191825815041 40.85689089520677, -73.83203326542899 40.8567932611373, -73.83218569073516 40.85666748066825, -73.83232593161688 40.85655817750613, -73.83232041875465 40.85656677009577, -73.83231405848578 40.85657465906954, -73.83230805599696 40.856582703447614, -73.8323024195948 40.85659090144119, -73.83229715286923 40.85659924044865, -73.83229226652156 40.85660770967967, -73.83228775938642 40.85661630102817, -73.83228364216278 40.856625004604375, -73.83227991843846 40.856633808707116, -73.8322765917942 40.85664270433667, -73.83227366581315 40.856651681592936, -73.83227114408753 40.85666072697377, -73.8322690290054 40.85666983417918, -73.83226732653105 40.856678989710495, -73.83226603312703 40.856688185458175, -73.83226515356925 40.856697408822264, -73.8322646878807 40.8567066507979, -73.83226463965813 40.85671589608194, -73.83226500535729 40.85672513926628, -73.83226578263368 40.856734369541606, -73.83226733060623 40.85674227181081, -73.83226923567514 40.85675013137551, -73.8322714966908 40.85675793382613, -73.83227411129275 40.85676567465678, -73.83227707358513 40.85677334035149, -73.83228038595365 40.856780925510705, -73.8322840401282 40.856788417515475, -73.83228803375052 40.85679581095948, -73.83229235973195 40.85680309502639, -73.8322970157209 40.8568102616083, -73.8323019934405 40.85681730078778, -73.83230728816493 40.856824205354016, -73.83231289516834 40.856830968096034, -73.8323188049901 40.856837578194245, -73.83232501289532 40.85684403203973, -73.83233150942998 40.85685031611127, -73.83233828866861 40.85685642859927, -73.83234534114828 40.85686235958448, -73.83235265977332 40.856868100952134, -73.8323602338833 40.85687364728369, -73.83236805756184 40.85687899316764, -73.83237611778777 40.85688412867953, -73.83238440863568 40.85688905200975, -73.83239291708212 40.85689375413441, -73.83240163483865 40.856898229638446, -73.83241054887043 40.85690247400039, -73.8324196544425 40.85690648361143, -73.8324289349666 40.856910252143905, -73.83243838096597 40.85691377508157, -73.83244798178006 40.856917047006, -73.83245772436729 40.85692006609716, -73.8324675992508 40.85692282783884, -73.83247759339577 40.85692532770962, -73.83248769731186 40.85692756659613, -73.83249789559666 40.85692953817255, -73.8325081752063 40.85693124151952, -73.83252783349933 40.8569325892781, -73.83254753931472 40.85693343372712, -73.83256727130852 40.8569337730347, -73.83258700932501 40.85693360446995, -73.83260672370666 40.85693293069143, -73.83262640021871 40.85693175257897, -73.83264601039207 40.85693007189225, -73.83266553880819 40.85692788860891, -73.83268495699338 40.85692520628976, -73.83270424359016 40.85692202850579, -73.83272338080339 40.85691835703225, -73.83274234252244 40.85691419903536, -73.83276140145766 40.85691005468361, -73.83277968728322 40.856904426997936, -73.83277972763459 40.85690441625055, -73.83282975621168 40.856891560384504, -73.8328792897312 40.85687747640884, -73.83292820239039 40.856862197460025, -73.83297644789677 40.856845737879844, -73.83302397283504 40.85682811470113, -73.83307073446197 40.85680934587276, -73.83311493500344 40.85679029056626, -73.83311583734479 40.856789901958344, -73.83313154455884 40.856783867966854, -73.83314537730817 40.856776642612616, -73.83315929591215 40.85676970463788, -73.83317290345717 40.85676242222361, -73.83318618806497 40.85675480255667, -73.83319913429266 40.85674685552031, -73.83321172552023 40.8567385873941, -73.83322395341852 40.8567300089719, -73.83323580254921 40.85672112833603, -73.8332472574648 40.85671195717062, -73.8332583098431 40.856702503568194, -73.83326894423895 40.85669277831251, -73.8332791487698 40.856682790391396, -73.83328891865564 40.8566725542059, -73.83329823252593 40.85666207873025, -73.83330709153523 40.85665137657307, -73.83331547787103 40.85664045671362, -73.83332170423924 40.856631529223904, -73.83332753367458 40.85662244987774, -73.83333295785708 40.856613225867015, -73.83333797201134 40.85660386979187, -73.83334256781285 40.85659439064522, -73.83334674405104 40.856584798330736, -73.83335049238563 40.856575108144874, -73.83335381162183 40.85656532368786, -73.8333566957779 40.85655546566243, -73.83335914247746 40.856545535866175, -73.8333611481267 40.85653554870177, -73.83336271269188 40.85652551767662, -73.83336383259045 40.85651545269093, -73.8333645066095 40.85650536454892, -73.83336473472214 40.856495264056456, -73.83336451571326 40.8564851629182, -73.83336385073078 40.85647507644411, -73.83336274094727 40.85646501003887, -73.83336118395937 40.85645497630588, -73.83335918803093 40.856444990565464, -73.83335674958607 40.85643506001631, -73.83335387452344 40.856425197273865, -73.83335056399984 40.85641541404608, -73.83334615095968 40.85640449910779, -73.83334124779287 40.85639370772925, -73.83333586040926 40.85638304802334, -73.83332999350796 40.856372538006596, -73.83332365300107 40.85636218489153, -73.83331685189634 40.856352004005096, -73.83330959016236 40.85634200795418, -73.83330188319694 40.85633220486531, -73.833293736894 40.85632260915477, -73.83328516190053 40.85631323164381, -73.83327616767984 40.856304082251455, -73.83326676487201 40.856295174500254, -73.83325696413306 40.85628651560956, -73.83324677966564 40.856278117306154, -73.8332362197468 40.856269989507304, -73.83322529858377 40.85626214213891, -73.83321403038349 40.856254585126806, -73.83320242699024 40.85624732479138, -73.83319050023665 40.85624037195567, -73.8331752507162 40.8562323148129, -73.83315964438484 40.85622466237367, -73.83314369901409 40.85621742186745, -73.83312743474325 40.85621060232815, -73.83311087170902 40.85620421369021, -73.83309402769206 40.85619825958119, -73.83307692401061 40.85619275173823, -73.83305958200326 40.856187693793984, -73.8330420182578 40.8561830920759, -73.8330242576661 40.85617895202279, -73.83298127554939 40.856171077135, -73.83291540746637 40.85615887013841, -73.83298766245812 40.85617000759119, -73.83325464884088 40.856211860549024, -73.83352147036194 40.85625432408462)), ((-73.82766053956728 40.861944531884305, -73.82783228569237 40.86173607415859, -73.82799307495489 40.86154131432409, -73.8281355877029 40.8613682432935, -73.82815356237532 40.861346412433505, -73.82815905343185 40.861339735362, -73.82816178101623 40.86134311176544, -73.82823723008079 40.8614401917474, -73.8282907679251 40.86150907799818, -73.82846191173444 40.86172928573911, -73.82867573597271 40.86202137799987, -73.8286357308727 40.862033448211264, -73.82859777864807 40.862004197903566, -73.82855612266245 40.86197801365631, -73.82851118802856 40.86195516534437, -73.82846343908871 40.86193588778214, -73.82839888289554 40.86191670587027, -73.82833159730927 40.861904040320326, -73.82826271567185 40.86189810443016, -73.82819357328013 40.86189898753294, -73.82812516179068 40.861906651483714, -73.82805863084673 40.86192096742582, -73.82803948319092 40.86192572680356, -73.82802056552161 40.86193098899517, -73.82800190040217 40.86193674322855, -73.82796808992597 40.86194755635188, -73.82793473524491 40.861959153572634, -73.8279018636755 40.861971520524065, -73.82786950844853 40.8619846491518, -73.8278376980692 40.8619985241904, -73.82780646458933 40.86201313488226, -73.82777583651658 40.86202846506153, -73.82774584234942 40.862044502164395, -73.8277019645536 40.86206797459753, -73.82765808554767 40.86209144431061, -73.82760457405793 40.86212639438908, -73.82755248978874 40.86216256494071, -73.82750187789553 40.862199923617254, -73.82745278947377 40.86223843447732, -73.82740526731916 40.8622780606668, -73.82735935540897 40.86231876713414, -73.82731509654184 40.86236051612469, -73.82748814436799 40.86215268040973, -73.82766053956728 40.861944531884305)), ((-73.83526867501261 40.828846800364374, -73.83527703566297 40.82884327335548, -73.8354979636085 40.82895649926671, -73.83549211225073 40.82896020186594, -73.83544884465516 40.82898655079826, -73.83540446060483 40.82901180671902, -73.83535900877328 40.82903594268162, -73.83531253783447 40.82905893173938, -73.83526509882905 40.82908074875007, -73.83521674278906 40.82910137217355, -73.83515787348601 40.82912059468547, -73.83509900296568 40.82913981626509, -73.83504013359014 40.829159040517744, -73.83498126418726 40.82917826203885, -73.83492239355597 40.829197487130074, -73.83486352408283 40.82921670949144, -73.83480465457565 40.82923593182265, -73.83468415882267 40.82927450031365, -73.83441262757076 40.829366546715484, -73.83414473567419 40.8294645517942, -73.83404419033633 40.829501192428395, -73.83394532788891 40.829540384703506, -73.83384825985684 40.829582090963655, -73.83375310136282 40.82962625734947, -73.83367348389382 40.82966326731434, -73.83361841509334 40.82968886553342, -73.83348642468734 40.82975469762746, -73.83335725477367 40.829823689885714, -73.83320106479972 40.82990986851722, -73.8331335492637 40.82994991137391, -73.83310682032186 40.82994612482978, -73.8332567733425 40.82985194270137, -73.83352616751323 40.82968297823551, -73.83355673792742 40.829663835483494, -73.83357209674844 40.82965421693463, -73.83361808986068 40.82962549622986, -73.83362939488747 40.82961843643851, -73.83366408055988 40.829596776403655, -73.8337100735904 40.82956805656244, -73.83372924897407 40.82955590229477, -73.83375639657625 40.82953869422393, -73.8338306428215 40.82949291102962, -73.83390682735518 40.829449001810566, -73.83398486823998 40.82940702227579, -73.83406468595769 40.82936700922745, -73.83414618910618 40.82932901115733, -73.83420280227044 40.82930383453708, -73.83426168649153 40.829278323466696, -73.83432057185966 40.82925280966641, -73.83437945599039 40.82922729853566, -73.83443834126379 40.82920178647602, -73.83449722530644 40.829176274384466, -73.83455610930397 40.82915076226272, -73.8346149944441 40.829125249212034, -73.8346738783491 40.829099737930456, -73.83468460457927 40.82909508963567, -73.8347327633989 40.82907422481941, -73.83479164721805 40.829048711676485, -73.83485053217531 40.82902319940556, -73.83490758425486 40.828999132479034, -73.83496463748315 40.828975063724904, -73.83502168948463 40.828950994940776, -73.8350787426326 40.828926925229474, -73.83513579573483 40.82890285729088, -73.83519284880025 40.82887878752294, -73.83524990181989 40.82885471952772, -73.83526867501261 40.828846800364374)), ((-73.83288833880096 40.85485162746572, -73.83287867992047 40.85486449502031, -73.83286623884989 40.854875903347555, -73.83262842571365 40.85497221294949, -73.83238636419111 40.85506221604259, -73.83214034517256 40.85514580406406, -73.8318906630913 40.85522287656259, -73.83163761710895 40.85529334120049, -73.83148362666944 40.85493580723652, -73.83241067461292 40.85499245418323, -73.83244292188105 40.85471353112847, -73.83268259076753 40.8547306947671, -73.83268255175973 40.85473064338245, -73.83281577316718 40.854733458750665, -73.8328340728619 40.854738588359496, -73.83285093169803 40.854746040049214, -73.8328658426438 40.85475558976366, -73.83287835812351 40.85476695049864, -73.83288810185427 40.854779781323685, -73.83289478305304 40.85479369730798, -73.83289819878358 40.854808279429065, -73.83289824696176 40.85482309080045, -73.83289492751707 40.85483768657874, -73.83288833880096 40.85485162746572)), ((-73.82660722139458 40.86101443974676, -73.82654464145021 40.86103391516936, -73.82648206146682 40.86105339145839, -73.82641948144914 40.86107286681295, -73.82635690020633 40.86109234303221, -73.8262943212991 40.86111181922099, -73.82625232345397 40.8611248869544, -73.82623173998769 40.86113129357125, -73.82622217826201 40.86111793928635, -73.82621588479415 40.86111797663286, -73.82620960522273 40.86111768892242, -73.8262033644507 40.86111707799359, -73.82619490889628 40.861115697409666, -73.82618591691605 40.86111352988779, -73.82617726476529 40.861110675802024, -73.82616904131781 40.861107166803535, -73.82616319233621 40.86110414134407, -73.82615769775111 40.8611007553211, -73.82614984575082 40.861094901100024, -73.82614528888666 40.8610907888921, -73.82614161385723 40.86108691124013, -73.82613829631151 40.861082853127925, -73.82613534806801 40.86107863078214, -73.8261131059627 40.86104213185175, -73.82609374576005 40.86100983175107, -73.82609082105022 40.861004776484684, -73.82608895584282 40.86100004879324, -73.82608807881283 40.860995709802694, -73.82608827058802 40.860989955049206, -73.82608990929504 40.86098378104655, -73.82609231835475 40.86097919757289, -73.82609524127912 40.860975410007924, -73.8260988251424 40.860971964725394, -73.82610445723599 40.860968117308516, -73.82611149115036 40.8609647726775, -73.8261748028256 40.8609444449258, -73.82618225052661 40.86094206534047, -73.82623553344756 40.86092506327095, -73.8262962640388 40.86090567978309, -73.82635699577601 40.86088629806598, -73.82641772866387 40.86086691631859, -73.82644164693598 40.86085928191167, -73.826478460335 40.86084753273642, -73.8265391907799 40.860828150921414, -73.82659992237784 40.86080876817567, -73.826660652752 40.860789386296574, -73.82671531416455 40.860771732319385, -73.82672082127141 40.860769857662056, -73.82672624216046 40.86076784239829, -73.82673156853159 40.86076568561509, -73.82673679562635 40.86076339270834, -73.82674191513512 40.86076096636703, -73.82674692349742 40.8607584074863, -73.82675181239652 40.86075572145661, -73.82675657945798 40.86075290917495, -73.8267612163675 40.86074997513127, -73.82676571837376 40.86074692201995, -73.82677008071836 40.86074375523682, -73.8267742974663 40.86074047657392, -73.8267783638662 40.860737088725664, -73.82678227633635 40.860733600691596, -73.8267860301349 40.86073001156409, -73.82678961931963 40.860726325836715, -73.82679304149745 40.86072255161034, -73.82679629073792 40.86071868887606, -73.82679936464777 40.8607147457347, -73.82680225847812 40.86071072398018, -73.82680517352429 40.86070629793662, -73.82680749753912 40.86070246713132, -73.82680983206701 40.86069824282689, -73.82681198053587 40.86069395881063, -73.82681393225465 40.86068962137002, -73.82681568720221 40.860685238609406, -73.82681724537635 40.86068081142937, -73.82681860320479 40.86067634522737, -73.82681975829422 40.86067184810436, -73.8268207106424 40.86066732096083, -73.82682145784914 40.860662774599014, -73.82682200228422 40.860658209923, -73.82682234037303 40.860653633230875, -73.82682247090615 40.86064905352572, -73.82682239744419 40.86064446991244, -73.82682211521467 40.860639893189735, -73.82682162895497 40.860635326066145, -73.82682093865577 40.86063077214371, -73.82682004073304 40.86062624132239, -73.82681893992647 40.86062173541035, -73.82681763859411 40.86061725981401, -73.82681551464762 40.8606112170277, -73.82682006804218 40.86060755525888, -73.82703492575467 40.86053506019002, -73.82714362048124 40.860498390270315, -73.82728351868194 40.86045061977524, -73.82728154400759 40.86047751180701, -73.8272814033155 40.86047870835, -73.8272787221476 40.86050133279397, -73.82727461171099 40.86052625855613, -73.82726936177066 40.86055106194616, -73.8272629783468 40.86057570785384, -73.82725546979933 40.860600173779126, -73.82724684570671 40.860624424617015, -73.82723711325215 40.86064843426373, -73.82722628793312 40.86067217212549, -73.82722038545282 40.86068380034143, -73.82721398520805 40.86069527832993, -73.82720709317569 40.86070658809014, -73.82719971767908 40.86071772152991, -73.82719186467884 40.86072866695174, -73.82718354488225 40.86073941176467, -73.82717476662911 40.86074994157323, -73.82716553824288 40.86076024828537, -73.82715586924247 40.86077032020882, -73.82714577270266 40.86078014655722, -73.82713525576796 40.8607897165352, -73.82712433269928 40.86079901935813, -73.82711301537839 40.860808046939276, -73.82710131332898 40.86081678578542, -73.827089239612 40.86082523051308, -73.82706874744123 40.860838558595496, -73.82704768611553 40.8608513644364, -73.82702607820791 40.860863633661474, -73.82700394391475 40.86087535369373, -73.82698131293272 40.860886507468116, -73.82695820663261 40.86089708691198, -73.82693465113901 40.860907080357826, -73.82691067257878 40.86091647523768, -73.82688629707195 40.86092526168503, -73.82686155192458 40.86093342983527, -73.82679432791538 40.86095499656997, -73.82673238117106 40.86097548970007, -73.82666980130232 40.860994964290185, -73.82660722139458 40.86101443974676)), ((-73.83546234234488 40.827973304298446, -73.83554778728018 40.827783670820146, -73.83569653905289 40.82782644032374, -73.83571943919307 40.82783076471568, -73.8357429496407 40.82783229843267, -73.83576648603638 40.827831004622325, -73.83578946029503 40.827826914865085, -73.83581130194108 40.827820131005666, -73.8358314664158 40.82781082156286, -73.83584945286873 40.827799218152784, -73.83617321355426 40.82752837510766, -73.83613446931872 40.82770125504632, -73.83608819964003 40.82787306438665, -73.83603445472112 40.82804361318624, -73.83597329542721 40.82821271511867, -73.83569901374658 40.828158918015596, -73.83542724150477 40.8280982143296, -73.835440376555 40.82803504342379, -73.83546234234488 40.827973304298446)), ((-73.83034967584398 40.85865857154842, -73.83035645113387 40.85865832847257, -73.83036240799063 40.8586613655858, -73.83036431993332 40.8586650685186, -73.83030439224979 40.85879683312972, -73.8302385494224 40.85892538145133, -73.83016699410737 40.85905215906142, -73.8300898096783 40.85917701839164, -73.83002096735653 40.85928575314334, -73.82994737217605 40.85939267626135, -73.82986910744079 40.85949767169603, -73.82978512148325 40.859601980565245, -73.8296882972722 40.859715117753844, -73.82958939647429 40.85982526756239, -73.82950712250111 40.85991193271542, -73.82942163872576 40.85999678487576, -73.82924371068525 40.86016509734795, -73.8291827911479 40.860220316277555, -73.82908519263158 40.86028878200976, -73.82904689726497 40.860267829362876, -73.8290844489371 40.86022418052889, -73.82933959157866 40.85990383364414, -73.82945469673196 40.859755817108606, -73.82956349807556 40.85962468887296, -73.82958195880317 40.85960304310396, -73.82959788957238 40.85958328192681, -73.82963285894405 40.85953990284578, -73.82966690733217 40.859497667819866, -73.82970095330036 40.85945543458108, -73.82973499922987 40.85941319953094, -73.82977261994955 40.85936723180297, -73.82981024061716 40.85932126406239, -73.82984786123284 40.85927529630919, -73.82988548298485 40.85922932764457, -73.82992310231042 40.85918335986433, -73.83006511852501 40.85900896373892, -73.83020657603417 40.85883430637004, -73.83034967584398 40.85865857154842)), ((-73.82659592402038 40.86117316954755, -73.8265815901316 40.86117045283254, -73.82656714141261 40.861168106945705, -73.82655259562158 40.8611661445206, -73.82653796819375 40.86116455927695, -73.82652327928285 40.86116335484693, -73.82650854548908 40.86116253305655, -73.82649378340791 40.86116209753264, -73.82647900965371 40.8611620446983, -73.82646424082658 40.86116237637941, -73.82644949590365 40.861163092604535, -73.82643479386657 40.86116419160125, -73.82642015013192 40.861165674293254, -73.82640558013252 40.86116753530085, -73.82639110284083 40.861169776453586, -73.82637673487814 40.861172391473076, -73.82636249641467 40.86117537768823, -73.82629273053828 40.86119091691619, -73.82629028221817 40.861191461629524, -73.82623435175664 40.86120392215903, -73.82622359476598 40.86120587803479, -73.82621629838624 40.86120526011383, -73.8262116573109 40.86120341251836, -73.82620794864941 40.86120060009963, -73.82620529146887 40.861196647441126, -73.82620469207296 40.86119090860529, -73.826206933271 40.86118565581124, -73.82621117943957 40.8611820332256, -73.82627232057142 40.8611599587996, -73.82635595147588 40.86113044861173, -73.82649956902225 40.86108303405799, -73.82664469388214 40.86103834737851, -73.82693607063563 40.86094409269626, -73.82695595001708 40.860937009528925, -73.82697550335124 40.86092942069344, -73.82699470808112 40.86092133426046, -73.82701354046378 40.86091275829906, -73.82703198267744 40.86090370448901, -73.82705000741387 40.86089418359556, -73.82706760160511 40.86088420370364, -73.82708474030109 40.86087378098502, -73.82710140450581 40.860862922615226, -73.82711757639288 40.86085164207528, -73.82713323575922 40.860839954643346, -73.82714836597158 40.86082787110066, -73.82716386513857 40.86081392769284, -73.82717881958189 40.860799645782514, -73.82719322095713 40.86078504156638, -73.82720705501272 40.86077012222716, -73.82722031103675 40.860754902156884, -73.82723297593826 40.86073939844551, -73.82718533021944 40.86091640158363, -73.8271369764401 40.86109329467658, -73.82712244645842 40.86114456671322, -73.82710791645201 40.861195839648055, -73.82709338523712 40.86124711257881, -73.82707885637197 40.86129838551087, -73.82706432511694 40.86134965663604, -73.82704979502326 40.861400928661254, -73.82703526490248 40.861452202485076, -73.82702073594771 40.86150347540794, -73.8270062057868 40.861554747426226, -73.82699167441508 40.861606020340915, -73.82697763980053 40.861655544343115, -73.82696261279517 40.861708564364214, -73.82694808372838 40.86175983727554, -73.8269478506884 40.86170581193378, -73.82694761357412 40.861651073396, -73.82694738460718 40.861597762149124, -73.82694907533833 40.861581598159205, -73.82695003789436 40.8615654006594, -73.82695027460119 40.86154918766308, -73.82694977829594 40.861532977169226, -73.82694855841159 40.86151679080387, -73.82694661016448 40.8615006438681, -73.82694393705485 40.86148455887946, -73.82694054379708 40.86146854755135, -73.82693643268884 40.86145263870293, -73.82693160844688 40.861436843147, -73.82692607813433 40.86142118160548, -73.82691984763285 40.86140567299736, -73.82691292164037 40.8613903353394, -73.82690531434577 40.86137518576212, -73.826897026891 40.861360241376445, -73.82688952274168 40.86134921260254, -73.82688151633712 40.86133839198857, -73.82687301358449 40.86132778854827, -73.82686403342143 40.8613174176182, -73.82685457938047 40.86130728910907, -73.82684466684104 40.86129741835215, -73.82683430526141 40.861287817067875, -73.82682350884886 40.86127849518295, -73.82681229180828 40.8612694635244, -73.82680066714674 40.86126073742003, -73.82678864670868 40.861252323190875, -73.82677624588733 40.86124423076542, -73.82676348480862 40.86123647458158, -73.82675037057241 40.86122906095337, -73.82673692569556 40.86122199711837, -73.82672316675018 40.86121529570827, -73.82670910439684 40.86120896214189, -73.82669476114988 40.86120300455742, -73.82668015241174 40.86119742928127, -73.82666529713367 40.86119224624728, -73.82665178281302 40.861187713580016, -73.82663807424271 40.861183533612106, -73.82662418207609 40.86117971446378, -73.8266101264764 40.861176256165365, -73.82659592402038 40.86117316954755)), ((-73.82945612825583 40.86006434032878, -73.82945601420346 40.86006626451113, -73.82945546497932 40.86006814392617, -73.82945098018781 40.8601246764749, -73.82945449176279 40.86018124875826, -73.82946595869332 40.860237210559895, -73.82948524862 40.86029191963112, -73.8304299210569 40.861988321636055, -73.83045449930836 40.862020010930635, -73.83048409899644 40.862049121385844, -73.8305182563351 40.86207519666799, -73.83025613659002 40.862024765630636, -73.83027610058909 40.86199102026577, -73.83028939152827 40.86195543078109, -73.83029572638456 40.86191875227492, -73.83029497033671 40.86188176437564, -73.8295277505937 40.86053703775537, -73.82949759850791 40.86050082855333, -73.82946063208959 40.86046846427614, -73.82941768564541 40.86044067735017, -73.82936973487968 40.86041809865549, -73.82931786373273 40.860401238567235, -73.82926324779591 40.860390479727904, -73.82920712350692 40.86038606439522, -73.8291193086374 40.860361306820884, -73.82943606978135 40.86005451692891, -73.82943849554252 40.860053955006116, -73.82944101297586 40.86005372099776, -73.82944354497354 40.86005382019284, -73.8294460168183 40.86005425067997, -73.82944835382291 40.86005499884126, -73.82945048487913 40.860056042959926, -73.82945234602268 40.86005735052364, -73.82945388160798 40.86005888272908, -73.82945504549637 40.86006059358292, -73.82945580105152 40.86006243170298, -73.82945612825583 40.86006434032878)), ((-73.83639644838715 40.82748040108876, -73.83639301450155 40.8273963195406, -73.836387684896 40.82731229563484, -73.83637584866796 40.82718372842908, -73.8363740772336 40.82716698838253, -73.83637284453053 40.82715533870791, -73.83637021110926 40.82713046235039, -73.83636500472015 40.827077340061734, -73.83636183721718 40.82704500413108, -73.83644052708534 40.827045882988656, -73.83644202270943 40.82705571133069, -73.83644837540756 40.82709874967798, -73.83645469341646 40.82714191764698, -73.83652107671458 40.827595484811, -73.83653900927402 40.82770467294066, -73.83656073644563 40.82781346212047, -73.83658624420752 40.827921776686736, -73.83661551498102 40.8280295409703, -73.83663054051436 40.82808097521091, -73.83664597335229 40.82813262524473, -73.83665790574896 40.82817255845932, -73.83666140621196 40.82818427617657, -73.83666440108263 40.828194294841005, -73.83660486048232 40.828214139385125, -73.83656100432019 40.828230475281174, -73.83654339658298 40.82823703565685, -73.83648193027031 40.82825993189228, -73.83645129499781 40.82827134096496, -73.83642046392201 40.82828282539345, -73.83641656954465 40.82828427597233, -73.83622975947831 40.82825640160514, -73.83628974305739 40.828103794067246, -73.83630314155329 40.82806234881986, -73.83631198746536 40.82803498627892, -73.83634699473916 40.82792670351721, -73.83634746972544 40.82792252678736, -73.83634830857935 40.82791838209125, -73.8363874355533 40.82770056154338, -73.83639644838715 40.82748040108876)), ((-73.83913474246992 40.84201009307305, -73.83854077218919 40.84233887834692, -73.83850454343293 40.84234007031112, -73.83846854380077 40.84233675380931, -73.83843374065681 40.842329017544714, -73.83840106906025 40.84231706904158, -73.83837140450565 40.84230122920404, -73.83834480446534 40.842281270289746, -73.83832300836951 40.84225819518829, -73.83830663831567 40.8422326639363, -73.83829616208986 40.842205402990366, -73.83851103381816 40.84105559333385, -73.83853330823025 40.84084726717324, -73.83873961967653 40.84089217260689, -73.83858247623101 40.84143531302963, -73.83838221141957 40.842127480440695, -73.838374747309 40.842153279052994, -73.83837327535896 40.84216029184204, -73.83837227247066 40.842167995967564, -73.83837195607454 40.84217962721076, -73.83837360535023 40.84219430938192, -73.83837524304572 40.842200092850916, -73.83837723108722 40.84220711409013, -73.83837825626341 40.84221073461366, -73.83838198833851 40.84221832740895, -73.83838721184051 40.84222894975602, -73.83839428725405 40.84223869041198, -73.83839808200354 40.842243914093714, -73.83840615337982 40.84225221895521, -73.83841037476697 40.84225656255067, -73.83842534572605 40.8422684061139, -73.83843289259069 40.842272976788884, -73.83844244279837 40.84227876053382, -73.83845185900594 40.84228308438887, -73.8384600327475 40.84228683829111, -73.83847609850413 40.842292195318706, -73.83848027607611 40.84229358793006, -73.83849007818371 40.84229574123033, -73.83850067550759 40.84229806853809, -73.83851705213628 40.84229992397248, -73.83852296858677 40.84230059411867, -73.8385350134184 40.84230060017417, -73.8385487123676 40.84230060764315, -73.83856608415593 40.84229842484561, -73.83857657412504 40.842297106794796, -73.83859268710452 40.84229277995538, -73.83862807127088 40.84227949494307, -73.83863268933183 40.842276740487925, -73.83864603052562 40.842268783472356, -73.83913474246992 40.84201009307305)), ((-73.83736852872644 40.82945453886645, -73.83736430115103 40.82944241672561, -73.83735143239474 40.829405529552766, -73.83733421127332 40.82935617246845, -73.83731699017751 40.82930681538118, -73.83729977029714 40.82925745649163, -73.83728288371145 40.82920755597044, -73.83728106522425 40.82920218464491, -73.83727303918691 40.82917846955248, -73.83754298404187 40.82921468179705, -73.83781416678248 40.82924509325164, -73.83808637163303 40.8292696801919, -73.83808835751299 40.82927157222152, -73.83809927694844 40.82928439080953, -73.83810961837015 40.8292974850375, -73.83811936640349 40.82931083957548, -73.83812851160567 40.829324437301004, -73.83813704215629 40.82933826378962, -73.83814494860827 40.82935230371984, -73.83815221914995 40.82936653906521, -73.83815884907605 40.82938095451081, -73.83816483012933 40.82939553293576, -73.83817015405668 40.82941025541818, -73.8381748137775 40.82942510844075, -73.83817880814973 40.829440073992046, -73.83818212773033 40.829455134949384, -73.83806905621672 40.829462478271054, -73.83795571926393 40.829466842266875, -73.8378577994339 40.829470465108095, -73.83775978079873 40.829471819376806, -73.83766175347431 40.829470902498066, -73.83756380875984 40.82946771279952, -73.83746603793263 40.829462257613926, -73.83736852872644 40.82945453886645)), ((-73.83404607199307 40.830130895158305, -73.83410617745618 40.83012228644268, -73.83412261362623 40.830119931874044, -73.83416628290597 40.83011367679522, -73.83422707439972 40.830108544018515, -73.83428786588408 40.830103411209755, -73.83434865617576 40.83009827746676, -73.83440944764138 40.8300931445939, -73.8344753117933 40.83009095008555, -73.83454117712421 40.83008875644175, -73.83460704245519 40.830086560959394, -73.83467290659189 40.83008436723867, -73.83468214539526 40.83008486404942, -73.83470753346973 40.83008585766813, -73.8347329502257 40.83008628220863, -73.83475837313523 40.830086138539166, -73.83504408117783 40.83009780736586, -73.83530399775091 40.83010959984321, -73.83532969484133 40.83011076576102, -73.83539249222625 40.83011854565012, -73.83545542829262 40.83012634191181, -73.83547179667099 40.83012837067034, -73.8355182979997 40.83013413174105, -73.8355811653527 40.830141920632066, -73.83561098187195 40.83014561374986, -73.83564403390815 40.83014970859002, -73.83570690129059 40.83015749741249, -73.83591866832137 40.83018108123664, -73.83613069018134 40.830203306184835, -73.8362811574526 40.83021179635304, -73.8364319214386 40.830216309253544, -73.83658280311502 40.83021683742765, -73.83673361631534 40.83021338511378, -73.8368770879549 40.830205872686754, -73.83702022328885 40.83019528531172, -73.83716290728555 40.83018162913097, -73.83730231223974 40.830164981201584, -73.83730475066982 40.830171370961274, -73.8371632499965 40.8301893423655, -73.8369355599702 40.83021108010307, -73.8367071538619 40.83022793388639, -73.8365365283217 40.830237033913065, -73.83636564790054 40.830242736653744, -73.83619463000525 40.830245036870934, -73.83597490995761 40.830243155009725, -73.83575537586923 40.8302360636236, -73.8355362387915 40.83022377291997, -73.83543242072408 40.83021546812336, -73.8354164369529 40.83021419002165, -73.8353177133343 40.83020629221245, -73.835185932684 40.83019345468407, -73.83505450185544 40.83017868864221, -73.8349932496127 40.83017217777829, -73.83493199856304 40.83016566868452, -73.83487074871758 40.830159156858414, -73.83480949650634 40.830152647697865, -73.83474824668268 40.83014613670719, -73.83468450322952 40.830139335751575, -73.83464592884035 40.830135322768086, -73.83460970957387 40.83013247929197, -73.83457338972646 40.83013051454464, -73.83453700486032 40.830129429477566, -73.8345005952753 40.83012922684986, -73.83446419298143 40.83012990580711, -73.83442783947078 40.830131466408794, -73.83439156912894 40.830133906002885, -73.83432828744283 40.83013878855301, -73.83426526595507 40.83014534366405, -73.8342025853017 40.83015356154692, -73.83416201691062 40.830159994894395, -73.83414031899659 40.83016343600442, -73.83408746186656 40.830170138009194, -73.83403460353581 40.83017684178905, -73.8339817451944 40.830183545544635, -73.83395498141384 40.830187011744876, -73.83392838312018 40.830191147245976, -73.8339019775979 40.830195944883414, -73.83387579686902 40.83020139930042, -73.83384986346461 40.83020750782822, -73.83378771868091 40.83022232239343, -73.83372557031512 40.83023713601946, -73.83366342666154 40.83025195051931, -73.83360127823822 40.830266764978795, -73.83353913452927 40.83028157941162, -73.83348191869608 40.83029512042065, -73.83342470402286 40.83030866230346, -73.83336749050966 40.830322205060064, -73.83331027697311 40.83033574778822, -73.83325306223001 40.8303492895858, -73.83320644090071 40.830361148340586, -73.83316039029096 40.83037422897518, -73.8331137321182 40.830388946715, -73.8331024488389 40.83038017305962, -73.83314461960784 40.830364566345516, -73.8331961802201 40.83034548557537, -73.83325103822821 40.83032764503088, -73.83330589383806 40.83030980355633, -73.83336075296839 40.83029196476224, -73.83341561088824 40.830274124139294, -73.8334704675954 40.83025628258801, -73.83352688146599 40.830241523856415, -73.83358329531383 40.8302267641967, -73.83363970913666 40.8302120045094, -73.83366698359633 40.83020486959622, -73.83369612293217 40.83019724569489, -73.83375355718847 40.83018496288782, -73.83381099142805 40.83017267825116, -73.83386842682526 40.83016039628901, -73.83392585983692 40.83014811159339, -73.83398596414338 40.830139503839185, -73.83404607199307 40.830130895158305)), ((-73.83638145626128 40.82849831201388, -73.83638478134516 40.82849504072504, -73.83657538043639 40.82851784230848, -73.83676671953846 40.82853672656367, -73.83676905360618 40.82854453627191, -73.83678487234269 40.8285974754396, -73.83680030660791 40.8286491245495, -73.83681573970719 40.82870077545623, -73.83683309611742 40.82875323322502, -73.83684983474195 40.82880382338748, -73.83685321331335 40.828814029892, -73.83675998835727 40.82883096147668, -73.83646967719264 40.82889220896834, -73.8364608047993 40.828894150464066, -73.83634746932553 40.828864040073796, -73.83623489664524 40.828832318766366, -73.83623455644982 40.82882700175189, -73.8362340790726 40.828812877686765, -73.8362342300265 40.82879874911089, -73.83623500808805 40.828784631331, -73.83623641084368 40.82877054145307, -73.83623843825092 40.82875649658644, -73.83624108552524 40.8287425138337, -73.83624435145414 40.82872860399913, -73.83624823362413 40.82871478418859, -73.83625272487753 40.82870107240185, -73.83625782279866 40.828687486645315, -73.83626352024972 40.82867403681419, -73.83626981007758 40.828660739107235, -73.83627668749996 40.828647609726495, -73.8362841418072 40.828634664865575, -73.83629216585051 40.82862191892213, -73.83629965992625 40.82860726317323, -73.83630778539022 40.82859280372774, -73.83631653035829 40.82857855227514, -73.83632588411402 40.82856452771052, -73.83633584069213 40.82855074533375, -73.83634638821059 40.82853721593371, -73.83635751594886 40.828523960206496, -73.83636920966075 40.828510986236154, -73.83638145626128 40.82849831201388)), ((-73.83725520800282 40.82873248792311, -73.83723648903194 40.82870865868093, -73.83721886783907 40.82868435102057, -73.83720236450415 40.82865959468718, -73.8371995967773 40.82865505768053, -73.83718753637557 40.82863529276563, -73.8371727964743 40.82860885318788, -73.83715976363368 40.82858293020213, -73.83715414373206 40.82857106813017, -73.83715085580084 40.828564017101904, -73.83729366009277 40.82857050683873, -73.83756280570209 40.8285766647457, -73.83783207272135 40.828576805077454, -73.83806010058039 40.82856922365279, -73.83828772142019 40.82855641562527, -73.83851472769426 40.82853839331375, -73.83874091658984 40.82851517264721, -73.83896607816915 40.8284867749492, -73.83953584913725 40.828409532137314, -73.83997962341843 40.828351158148095, -73.83998497263018 40.82837817506268, -73.83958665878507 40.82843354072375, -73.83927452318333 40.82847569329893, -73.83896235669441 40.82851770811085, -73.83865015576579 40.82855958425391, -73.83833792276828 40.82860132263163, -73.8380256588935 40.82864292144437, -73.83777061476366 40.82867363907665, -73.83751634315486 40.828707834050455, -73.83726185567726 40.8287439038934, -73.8372578597121 40.828737446196946, -73.83725520800282 40.82873248792311)), ((-73.83789366438434 40.839298079994975, -73.83788541297069 40.83929716970378, -73.83787747947717 40.839295223389215, -73.83787008668264 40.839292295394266, -73.83786344425515 40.839288467958774, -73.83785773926846 40.839283850305705, -73.83785313266077 40.83927857233273, -73.83743257399446 40.83888142939153, -73.83793420344922 40.83872370494879, -73.83794618630735 40.83925852121961, -73.83794591596543 40.83926485041831, -73.83794425510531 40.83927105519603, -73.83794124802068 40.8392769618194, -73.83793698167682 40.83928240201795, -73.83793157620148 40.839287222876216, -73.83792518369648 40.83929128773261, -73.83791798466359 40.83929448337816, -73.83791018326792 40.83929671734874, -73.83790199901432 40.83929792781854, -73.83789366438434 40.839298079994975)), ((-73.83534141459555 40.8529101851035, -73.83540249272697 40.852842653357534, -73.83541707177068 40.852847320700405, -73.83538875078914 40.85291999598847, -73.83535767541927 40.852990027993535, -73.83532413248963 40.85305939910742, -73.83528814227265 40.853128061630926, -73.83515162931036 40.85338416669474, -73.83503527189676 40.853573264130596, -73.83491224417267 40.85375990886222, -73.83478263536873 40.85394396952434, -73.83468179359478 40.854076539670515, -73.83469629166368 40.85405088830035, -73.83471058568121 40.85402525914823, -73.8347237017398 40.85399926991059, -73.83473562908652 40.85397295299016, -73.83474635104758 40.85394633717921, -73.83475585330572 40.85391945757674, -73.83476412748666 40.85389234388736, -73.83477382013777 40.853845149441156, -73.83478351040543 40.85379795408987, -73.83479320065936 40.853750758737334, -73.83480289208322 40.853703564285816, -73.83481072519177 40.85366540811905, -73.83481257993995 40.853656368027046, -73.83482214769217 40.853609774024726, -73.83482221011056 40.85360947244905, -73.83482896783622 40.853586479038015, -73.83483667311584 40.85356396964721, -73.83484537999814 40.85354166970345, -73.83485507654895 40.853519608905785, -73.83486575559365 40.85349781065647, -73.83487740046775 40.85347629924467, -73.83488810811836 40.853453959837935, -73.83489981835298 40.85343191092311, -73.83491251804939 40.85341018309784, -73.8349261964775 40.85338879885883, -73.83494083222912 40.85336778248837, -73.8349564110009 40.85334716278141, -73.83497291258429 40.85332695861903, -73.83500646966978 40.85328602699238, -73.8350117075243 40.85328000028142, -73.83504145168779 40.85324578807122, -73.8350778324747 40.85320627063263, -73.8351155858671 40.85316750345359, -73.83516133123517 40.85311535735391, -73.8352885744441 40.85297030581639, -73.83533504381741 40.852917335828685, -73.83534141459555 40.8529101851035)), ((-73.84052925955632 40.828372978526396, -73.84063803247084 40.828358299514115, -73.84067308238686 40.82836647762641, -73.84070568023591 40.828376827940495, -73.84076204006593 40.82839272209721, -73.84081839754975 40.82840861712361, -73.84087475506476 40.828424510321454, -73.84092211709265 40.82843937802482, -73.84094164308112 40.828445507622504, -73.84096947795193 40.828454247508034, -73.8409834622707 40.82845865941363, -73.84100708114816 40.828550897414104, -73.84099217485291 40.82855526137924, -73.84097486049735 40.82856024606588, -73.84092602099192 40.828574239959515, -73.8408762910424 40.82858827942964, -73.8408411896502 40.82859858850077, -73.84080651193999 40.82860969328447, -73.84077228639065 40.82862158211395, -73.84073854858784 40.82863424603378, -73.8407053258232 40.82864767427617, -73.84067264658019 40.828661853373454, -73.84064054290126 40.82867676896236, -73.84062293051736 40.82868538848845, -73.84044142617213 40.8286946359398, -73.84044283401451 40.828686456877485, -73.84044583751093 40.82867137231452, -73.84044815357849 40.82865621836266, -73.84044977624706 40.828641013023564, -73.84045070666154 40.828625773408305, -73.84045094240393 40.828610519324506, -73.84045048343792 40.828595266080505, -73.84044932970794 40.8285800370891, -73.84044748355518 40.82856484496054, -73.84044494729503 40.82854971311087, -73.84044172089764 40.82853465414691, -73.84043781379349 40.828519690594135, -73.8404332247566 40.82850483956013, -73.84042796204906 40.82849011636478, -73.84042203511004 40.82847553993143, -73.84041544389447 40.828461129170336, -73.84040820377538 40.82844690031164, -73.84040031827301 40.828432868668465, -73.84039179800952 40.82841905406631, -73.84038265599335 40.82840547003054, -73.84037489639911 40.82839381136805, -73.84048290211433 40.8283792358977, -73.84052925955632 40.828372978526396)), ((-73.83766992191968 40.829765291659, -73.83748733804049 40.829796261921025, -73.83748384809836 40.82978596703138, -73.8374719762023 40.829751035356125, -73.83745475371877 40.82970167739054, -73.83743753244626 40.82965231942366, -73.83742031238266 40.82960296235588, -73.83740309353232 40.829553604386376, -73.8373988247328 40.82954136692538, -73.83739729426063 40.82953698565359, -73.83750847223999 40.82954487852207, -73.8376199064424 40.82955029167704, -73.8377315008504 40.82955321597781, -73.83773737268874 40.829553238647726, -73.83780216444008 40.829553491882216, -73.83784316061436 40.829553649489526, -73.83795478967944 40.8295515983805, -73.83807244262279 40.82954652365057, -73.83818979829594 40.82953839480037, -73.83818935819845 40.82955849236111, -73.8381880420502 40.829578568881686, -73.83818585820832 40.82959860006037, -73.8381828031636 40.82961856608123, -73.83817888052437 40.82963844533743, -73.83817409745998 40.829658214426004, -73.83801312297534 40.8296953923457, -73.83785097500558 40.829729501300186, -73.83766992191968 40.829765291659)), ((-73.82791336758258 40.86031910578258, -73.82790044353746 40.8603220923471, -73.8278870657173 40.86032351407902, -73.82781542129189 40.86024509231135, -73.82775099154242 40.860163141435685, -73.82769407790914 40.8600780437227, -73.82764494620594 40.85999019669744, -73.8276038242623 40.859900007732485, -73.82763254955054 40.85988627582635, -73.82763898320727 40.8598893065879, -73.82764554775817 40.85989217275467, -73.82765223491715 40.85989486801075, -73.82765903757475 40.85989738964404, -73.82766594980761 40.859899734944214, -73.82767296213198 40.85990190209606, -73.82768006743845 40.859903888387485, -73.82768725861281 40.859905692907354, -73.82769452025039 40.859907310229715, -73.8277018547232 40.85990874035804, -73.82770924779841 40.85990998327113, -73.82771669237138 40.85991103445586, -73.8277241789535 40.85991189389812, -73.82773169805621 40.85991256158363, -73.82774300855407 40.85991386167163, -73.82775437317132 40.859914873681895, -73.82776577174246 40.85991559848483, -73.82777720071631 40.85991603337363, -73.82778863993185 40.859916177417716, -73.82780007870751 40.85991603330263, -73.82781150518953 40.859915598309215, -73.82782290632412 40.85991487511941, -73.8278342702551 40.859913861914606, -73.82784558037062 40.859912561371516, -73.82785682954717 40.859910976180906, -73.82786800118201 40.85990910541765, -73.82787908577734 40.8599069526695, -73.82789006790483 40.85990452151545, -73.82790093925733 40.85990181374411, -73.82791168322522 40.85989883113176, -73.82792229268505 40.85989557636923, -73.82793275101552 40.859892055735266, -73.82799982399797 40.8598737523932, -73.82806689575276 40.85985545081127, -73.82813396747765 40.85983714648886, -73.82814951052734 40.85987306594768, -73.82814602346767 40.85987491486645, -73.82813539956932 40.85988054962798, -73.82811647292772 40.85989134714644, -73.82809805026343 40.859902639782604, -73.82808015416029 40.859914408660174, -73.82806280718592 40.859926641206094, -73.82805142589447 40.8599362045776, -73.82804047559212 40.85994605224525, -73.82802997172344 40.859956174326776, -73.82801992261184 40.85996656273029, -73.82801034252736 40.859977203069306, -73.82800123981453 40.8599880791475, -73.82799262753412 40.85999918558155, -73.82798451165614 40.86001050707208, -73.82797690763684 40.86002202923437, -73.82796981788121 40.860033739465216, -73.82796325309656 40.860045625173846, -73.82793953959029 40.86009623977617, -73.82792484227626 40.860148789470045, -73.82791941619207 40.8602023525355, -73.82792335986143 40.86025598990782, -73.82793660220078 40.8603087622671, -73.82792551861347 40.860314625948895, -73.82791336758258 40.86031910578258)), ((-73.83377422305381 40.854473947588644, -73.83334097992507 40.85468500943766, -73.83338201777829 40.85433716069672, -73.83376187253948 40.8543614321522, -73.83377422305381 40.854473947588644)), ((-73.83669246948318 40.82916349757311, -73.83693449552216 40.829124539683605, -73.83695725490132 40.829128466510106, -73.83695822811671 40.829131407106416, -73.83696352725046 40.82914742182291, -73.8369719566808 40.82917289617704, -73.83698931452504 40.829225353019375, -73.83700370565266 40.82926885112903, -73.83700667239225 40.82927781165959, -73.83701933364064 40.82931607994028, -73.83702402910349 40.82933026939457, -73.83704252290711 40.82937782462982, -73.83705225519368 40.82940285147028, -73.83705670605082 40.82941430036686, -73.83692657771375 40.82939096556956, -73.83679748613528 40.82936451727527, -73.83676004139299 40.829345718644426, -73.83671292773111 40.829322994554964, -73.83665161923139 40.829294262039575, -73.83659030841363 40.82926552948812, -73.83652899764876 40.82923679690391, -73.8365140584911 40.82923022821703, -73.83649939047639 40.82922331682342, -73.83648500662319 40.829216071746636, -73.83647091759019 40.82920849750445, -73.83645664867551 40.82920031336933, -73.83657434294071 40.829181106034596, -73.83669246948318 40.82916349757311)), ((-73.83844466931949 40.838644295042535, -73.83845107553012 40.83864040667325, -73.83845821985129 40.838645054228735, -73.83846219308674 40.838688511377136, -73.83846645851901 40.83873517559675, -73.8384705772695 40.83878023582895, -73.83847443730191 40.838822466343224, -73.83841639253421 40.839397296103556, -73.8381993933403 40.839384559668034, -73.83821758116102 40.83935172702353, -73.8382994437079 40.839156747802335, -73.83831307891512 40.839117830418466, -73.8383267141151 40.83907890943079, -73.8383403492926 40.8390399911427, -73.83834300974065 40.83903033256112, -73.83835360840932 40.83899187557113, -73.83835525682477 40.8389858940926, -73.83836686750249 40.83894376179859, -73.8383801289478 40.83889564802751, -73.83839177891072 40.838845628350306, -73.83840342767263 40.83879560776932, -73.83841549429579 40.83874586242313, -73.8384275585252 40.83869611887292, -73.83843411497611 40.83867626223792, -73.83844466931949 40.838644295042535)), ((-73.83958387166922 40.829300454671056, -73.83960410324218 40.82929966966353, -73.83960036209965 40.82930198233775, -73.83955725641569 40.82932863289851, -73.83949763711972 40.82935892368042, -73.83949146247994 40.82936206142093, -73.83932537730695 40.82944644528186, -73.83910624582393 40.82955031458861, -73.83864270278441 40.829629576989795, -73.83851419948238 40.8296479806632, -73.83850524639632 40.829624538111744, -73.83873094402703 40.8295526512519, -73.83895590695613 40.82947945000049, -73.83913702292227 40.829421454172085, -73.83931829084091 40.829363732922225, -73.83942325612055 40.82932959182472, -73.83949868554535 40.829304685541864, -73.8395029247782 40.829303285766954, -73.83958387166922 40.829300454671056)), ((-73.83825644382277 40.82940468443628, -73.83825027937965 40.829388483964934, -73.83824344711348 40.82937243924283, -73.83823438664484 40.82935323425445, -73.83822448030956 40.829334274814684, -73.83821373637186 40.82931557534294, -73.83820216780282 40.82929716467298, -73.83819160351524 40.82928162079045, -73.83818851487706 40.82927738322316, -73.83846982672237 40.829294331418275, -73.83875166828629 40.82930506444154, -73.83903380122143 40.82930957385203, -73.8390128642343 40.829315267281096, -73.83896041675965 40.8293295308571, -73.83886691325976 40.829352729408605, -73.83877241034973 40.82937346182852, -73.83867702426986 40.82939170756554, -73.83858086415667 40.82940744245688, -73.83848404980343 40.82942064775798, -73.83837696744585 40.82943538834213, -73.83826930124617 40.82944741571305, -73.83826674331856 40.82943748595422, -73.83826193336864 40.82942102443821, -73.83825644382277 40.82940468443628)), ((-73.8383453089127 40.842448920541415, -73.83802845253304 40.842579765419224, -73.83823890109136 40.84193234141206, -73.83822228605433 40.84215972267485, -73.83822489702419 40.84220411260773, -73.83823028094844 40.84222579686047, -73.83825190319476 40.84227743992121, -73.83825808785119 40.842289719631125, -73.8382597139369 40.84229344725664, -73.83826080079662 40.842295104789855, -73.8382789571038 40.84233115452622, -73.83830737110863 40.84238487103087, -73.8383453089127 40.842448920541415)), ((-73.83602110711549 40.83011791484429, -73.83622318380279 40.83010913940351, -73.836422709906 40.830097171333485, -73.83646976209984 40.830093957555135, -73.83651676419164 40.83009086795502, -73.83667750047462 40.83008143247597, -73.83667896379626 40.83011170743314, -73.83687466978584 40.83010177639732, -73.83706967457535 40.83008575218139, -73.83726364965008 40.83006366314118, -73.83726801407067 40.83007510110033, -73.83727469087162 40.83009259906019, -73.83727637420017 40.83009701386722, -73.83727985397506 40.83010612729715, -73.83728360348834 40.83011595610162, -73.83721836730795 40.830123657833965, -73.83715295082212 40.830130427261146, -73.83699546535684 40.83014367889809, -73.83683748579226 40.83015292781541, -73.83667918763706 40.83015816525474, -73.83657155082025 40.830160523354614, -73.83646386899396 40.83016044995018, -73.83635623819993 40.83015794427715, -73.83624875210248 40.830153008269534, -73.83614150672784 40.8301456474672, -73.83608214025482 40.830137830539456, -73.83601974693568 40.83012913039286, -73.83601617649117 40.83012608974289, -73.83601652171122 40.830121186130874, -73.83602110711549 40.83011791484429)), ((-73.83588879985865 40.828416645631876, -73.83585242726555 40.82849649492573, -73.83566148691051 40.828575029941675, -73.83559131622131 40.8285546552441, -73.83546732490446 40.828356873440214, -73.83545525797065 40.828328474371666, -73.8354536830761 40.828324382069, -73.83567028172264 40.82837312592955, -73.83588879985865 40.828416645631876)), ((-73.82625652734917 40.86237052169039, -73.8261687917837 40.8622163703762, -73.8264945450384 40.86211084402462, -73.82650881841802 40.862135922564754, -73.82613943098471 40.86256161689843, -73.82609705272942 40.862544259095046, -73.82625652734917 40.86237052169039)), ((-73.83896692464758 40.82940276921015, -73.83921843253938 40.82933365944442, -73.83922575171275 40.82933473133366, -73.83923189790984 40.82933944409508, -73.8392330144267 40.82934494138093, -73.8392309105441 40.82934918608937, -73.83922709118498 40.82935197140306, -73.83892885946659 40.829442156891325, -73.83863463525192 40.82953427157634, -73.83845415448047 40.829586689831075, -73.83827138399641 40.82963430494675, -73.83827374962173 40.829622879164646, -73.83827681421457 40.829604826709506, -73.83827907163133 40.82958670558511, -73.83828051589693 40.82956853559402, -73.83828114814283 40.82955033925026, -73.83828092591789 40.829531047605116, -73.83836794486264 40.82952013491735, -73.83845464157763 40.82950862648443, -73.83846094852241 40.82950766278297, -73.8384939324903 40.82950262207654, -73.83854092266034 40.82949543977971, -73.83862766489987 40.8294812658113, -73.83871373194607 40.82946489182123, -73.83879902771601 40.82944633748764, -73.83888345612723 40.82942562248891, -73.83896692464758 40.82940276921015)), ((-73.83616002045504 40.82846520514509, -73.83616387027186 40.828463562705814, -73.83622024834939 40.8284721164604, -73.83628588287655 40.82848162434742, -73.83628335710085 40.82848429883846, -73.83627082388362 40.828498299975365, -73.83625893004886 40.828512619893985, -73.83624769341925 40.82852724241087, -73.83623712471322 40.828542147730595, -73.83622723819047 40.82855732236603, -73.83621804220296 40.828572744717384, -73.83620954983152 40.828588398594455, -73.83620177060486 40.82860426600091, -73.83619471643176 40.82862032534198, -73.8361869364379 40.82863794601305, -73.83617992893531 40.82865575148221, -73.83617369871534 40.82867372194548, -73.83616825293146 40.828691841204204, -73.83616360112377 40.828710086759585, -73.83615974334612 40.82872843699996, -73.83615668793306 40.82874687752928, -73.83615443494969 40.828765382233264, -73.83615298918298 40.82878393310889, -73.83615235186126 40.82880251304842, -73.83615231849826 40.82880787725874, -73.83599622343 40.828756026308696, -73.8360582872844 40.828624144087385, -73.83607187668515 40.82859529528716, -73.83609369618185 40.82854898674887, -73.83611954015534 40.82849412740699, -73.83612641642989 40.82847954373126, -73.83616002045504 40.82846520514509)), ((-73.82920694779453 40.856386986072174, -73.82927725467381 40.85637977093003, -73.82928118099555 40.85640215487627, -73.82920636185665 40.856430420454735, -73.8291561710757 40.85645180127318, -73.8291041532336 40.856475255898765, -73.82905851425005 40.8564994115306, -73.82902109005502 40.85651873557045, -73.82899005837902 40.856533916002874, -73.82897819126336 40.856540819596376, -73.82896541033315 40.856548413412106, -73.82895516750095 40.85655460351973, -73.82888157720207 40.85642550336372, -73.82894416386463 40.856418524609, -73.82894553885805 40.85641605659702, -73.82899037513864 40.85641072101113, -73.82904508458972 40.85640457338617, -73.82913664208834 40.85639420027271, -73.82920694779453 40.856386986072174)), ((-73.83756581472923 40.82904956831367, -73.83769988699832 40.829038325276834, -73.83772372187084 40.82904848219957, -73.83778207741143 40.82907335676785, -73.83783914331795 40.829097678389225, -73.83786000421684 40.829107654604435, -73.8378804775353 40.82911808592221, -73.83790054433385 40.8291289606097, -73.83792018921864 40.82914027144138, -73.8378754735805 40.82913604559237, -73.83769751329572 40.82911767008044, -73.83752018219332 40.82909606960193, -73.83734357985274 40.82907125600652, -73.83752356267046 40.82905311077884, -73.83756581472923 40.82904956831367)), ((-73.8330242084845 40.85481486167672, -73.83302135652126 40.85478639748161, -73.8330126417424 40.854758628085094, -73.83299828300834 40.8547322453809, -73.8329786356525 40.85470790634048, -73.83295419151884 40.854686217704824, -73.83295182758354 40.854684446615025, -73.83328865081432 40.85470698419316, -73.83302112824572 40.85484331188276, -73.8330242084845 40.85481486167672)), ((-73.83709788727475 40.82961387792769, -73.8370845072781 40.82959506656799, -73.8370703404631 40.829576591781205, -73.8370553974513 40.82955847339296, -73.83703969598618 40.829540727637, -73.8370232502413 40.829523376144905, -73.83700608033114 40.82950643515372, -73.83698820044233 40.82948992089213, -73.83698283928875 40.8294851740014, -73.83704997800194 40.82949571644598, -73.83706251599882 40.829497685536936, -73.83709086278216 40.82950213531471, -73.83709246264382 40.829506251042226, -73.83709800210546 40.829520490312085, -73.83711649482487 40.82956804733324, -73.83713689729207 40.829623902420586, -73.83713283844651 40.82963052434179, -73.8371266083981 40.829633479076676, -73.8371193219189 40.82963358044719, -73.83711215793706 40.82963061760112, -73.83709788727475 40.82961387792769)), ((-73.83425051303428 40.85637575969899, -73.83352147036194 40.85625432408462, -73.83366901779058 40.85627815411211, -73.83425051303428 40.85637575969899)), ((-73.82970107551026 40.85979122817603, -73.82970103592157 40.85979186656634, -73.82970008323704 40.85979243787291, -73.82970107551026 40.85979122817603)))",X101,6433,X101,X-10,X-10,X-10,X-10,Whitestone Bridge Approach to the NYC-Westchester County Line,"210, 211","12,13",49,"10461, 10462, 10465, 10469, 10475",X,229.14,False,Hutchinson River Parkway,No,100005201,PARK,20100106000000.00000,19601205000000.00000,,DPR,True,Hutchinson River Parkway,Y,Hutchinson River Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/X101/,No,82,"36, 34","16, 14",{79D85696-71F2-4548-9FBE-87C6A87654AD} +"MULTIPOLYGON (((-73.78353936174929 40.701440237367486, -73.78351778432865 40.70137420617043, -73.78354742191298 40.70137722370258, -73.783704838485 40.70139325702212, -73.78387862465895 40.70141095800011, -73.78423692934187 40.701447450899764, -73.78427530593132 40.7014513590257, -73.78445767154221 40.70202002805691, -73.78580562750632 40.70411368477555, -73.7850567180961 40.70437445814474, -73.78488694314632 40.70443535704742, -73.78410335562461 40.70328838166347, -73.78409389318436 40.70327588548593, -73.78408133829215 40.70326209757195, -73.78406894022892 40.70325067200015, -73.78405443683384 40.70323933432961, -73.7840382356292 40.70322866885759, -73.78402050618344 40.70321892984655, -73.78400696032223 40.703212628743, -73.78399746176599 40.70320873150211, -73.78398526178913 40.70320373866761, -73.78397482222651 40.7031984744789, -73.78396628134682 40.70319335793515, -73.78395770672292 40.703187335409865, -73.78394912745983 40.70318018903324, -73.78394136660422 40.703172442648516, -73.78393521257006 40.703165082898636, -73.78392945928259 40.703156746842566, -73.78325264578034 40.70217104986039, -73.78324293846524 40.70215353818358, -73.78323653280158 40.70213700888162, -73.7832326445486 40.70212101742493, -73.78323089717253 40.70210491473411, -73.78323156120325 40.70208592323125, -73.783234193087 40.70207090490274, -73.7832381196631 40.70205764141378, -73.78324316111151 40.702045394003605, -73.78324803602472 40.702035963989836, -73.78351682408805 40.70159120678607, -73.7835248306976 40.70157640027416, -73.78353395930533 40.70155494737214, -73.78353876639027 40.70153978093966, -73.78354321690747 40.70151927378446, -73.78354505804973 40.701503964895615, -73.78354562457537 40.70148545588216, -73.783544461399 40.701467612698195, -73.78354228602237 40.701453211178666, -73.78353936174929 40.701440237367486)))",Q121,5982,Q121,Q-12,Q-12,Q-12,Q-12,Liberty Ave. bet. 172 St. and 173 St.,412,27,103,11433,Q,7.683,False,Detective Keith L Williams Park,Yes,100000003,PARK,20090423000000.00000,19360916000000.00000,,DPR,True,Detective Keith L Williams Park,Y,Detective Keith L Williams Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q121/,No,29,14,5,{AB7F8051-B636-4348-A64D-F987E3391B87} +"MULTIPOLYGON (((-73.79991304979274 40.71596003427163, -73.79968155804715 40.71566814028719, -73.79935531261208 40.71580809894384, -73.79926594510545 40.715691452845746, -73.79927020534407 40.71568960611846, -73.79928735531298 40.715682174372276, -73.79932116367011 40.715668235742264, -73.79936793313679 40.71565015301909, -73.79941956531121 40.71563176266937, -73.7994631859119 40.715617456574165, -73.79950101556364 40.71560593106571, -73.7995508757437 40.71559194558025, -73.79958658937586 40.71558274778654, -73.79962290262202 40.71557407962627, -73.79965783536386 40.71556637800376, -73.79968452387935 40.715561033976215, -73.79970352569251 40.71555722905294, -73.79975292977076 40.715548489973436, -73.79979287008868 40.715542286467894, -73.80148244784563 40.715295441663166, -73.80153337144826 40.71549326311687, -73.80170541717828 40.71616160750627, -73.80016943259328 40.71647540524486, -73.79991304979274 40.71596003427163)))",Q391,5374,Q391,Q-08,Q-08,Q-08,Q-08,164 Pl. bet. Grand Central Pkwy. Sr. Rd. S. and 84 Ave.,408,24,107,11432,Q,3.814,False,Joseph Austin Playground,Yes,100000250,PARK,,19550928000000.00000,165-65 84 AVENUE,DPR/DOE,False,Joseph Austin Playground,Y,Joseph Austin Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q391/,No,24,11,6,{75534548-BB21-471B-B877-E99EDD3A40A2} +"MULTIPOLYGON (((-73.93435786750481 40.79991968997093, -73.93479386325046 40.799318436199485, -73.93524450932203 40.79950886762823, -73.93525775900075 40.7995145977449, -73.93527159171856 40.799521522249755, -73.9352800953718 40.799526198815805, -73.9352904781322 40.79953238477276, -73.93530345963903 40.79954093779947, -73.93531604228345 40.799550221806435, -73.93532538559624 40.79955785518008, -73.93533646734137 40.79956787224979, -73.93534427001667 40.799575669548986, -73.9353518991567 40.79958401155254, -73.93535774149855 40.7995909675854, -73.93536490278404 40.79960031158156, -73.93537018637035 40.79960791566008, -73.93537608559562 40.79961731297789, -73.93538025196973 40.79962468139923, -73.93538545468552 40.7996350310545, -73.9353890514907 40.799643199700235, -73.93539226186056 40.79965150230368, -73.93539507278977 40.799659908240585, -73.93539736029845 40.79966795998776, -73.93539891821062 40.79967442374543, -73.93540015066212 40.79968046408598, -73.9354010296971 40.79968558211703, -73.93540279427648 40.79970132203535, -73.93540319378775 40.79971457941213, -73.93540188601231 40.79973487143434, -73.9354002200223 40.79974575213605, -73.93539738378016 40.799758540340164, -73.93539378026648 40.799770706769515, -73.93538776065131 40.79978643692179, -73.93538082632855 40.79980083472229, -73.9353736580903 40.79981327470541, -73.93507474468724 40.80022205233162, -73.93435786750481 40.79991968997093)))",M225,4923,M225,M-11,M-11,M-11,M-11,E. 120 St. bet. 1 Ave. and 2 Ave.,111,8,25,10035,M,1.27,False,Wagner Playground,Yes,100004682,PLGD,20100106000000.00000,19571213000000.00000,2350 2 AVENUE,DPR/DOE,True,Wagner Playground,Y,Wagner Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M225/,No,68,30,13,{12917FE1-5540-4A53-A3F8-6D0CFAA75B32} +"MULTIPOLYGON (((-73.9227559934278 40.6845929375829, -73.92274692524092 40.68454880539968, -73.92276281194754 40.684546951999835, -73.9228279547665 40.68453935574396, -73.92291507014745 40.68452919600053, -73.92297171869215 40.684804859711114, -73.92287429336162 40.684816221978146, -73.92282671462553 40.68458469039843, -73.9227559934278 40.6845929375829)))",B574,14688,B574,B-03,,,B-03,Ralph Ave. bet. Halsey St. and Macon St.,303,41,,11233,B,0.065,False,,,100037069,PARK,,20160209000000.00000,774 HALSEY STREET,DPR,False,Halsey and Ralph Garden,,Halsey Ralph & Howard Community Garden,,Garden,,No,56,25,8,{FA03B053-85D2-4928-97FB-66A6B164098D} +"MULTIPOLYGON (((-73.90401794992815 40.84529011394577, -73.90404217958373 40.84501625997232, -73.90437573975987 40.84503340590694, -73.90435151147256 40.845307259049186, -73.9043605276457 40.84530772217441, -73.90432418489546 40.84571850230704, -73.90466680758544 40.84573611236167, -73.904662700437 40.84578954601522, -73.90431945971177 40.845771903918916, -73.90397688080297 40.84575429376972, -73.90401794992815 40.84529011394577)))",X258,4783,X258,X-05,X-05,X-05,X-05,Anthony Av bet. Prospect Pl and Ittner Pl,205,15,46,10457,X,0.618,False,Cleopatra Playground,Yes,100004904,PARK,20100106000000.00000,19891228000000.00000,1751 Anthony Av,DPR,False,Cleopatra Playground,Y,Cleopatra Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X258/,No,86,33,15,{2021ABB5-509D-4BD8-96F7-77453CD1BEC7} +"MULTIPOLYGON (((-73.94248043243698 40.809427643839335, -73.94265690317695 40.80918409120468, -73.9428355177061 40.80925934988078, -73.94265904623582 40.80950290188481, -73.94248043243698 40.809427643839335)))",M298,4975,M298,M-10,M-10,M-10,M-10,W. 128. St. bet. 5 Ave. and Lenox Ave.,110,9,32,10027,M,0.129,False,Unity Gardens,No,100004928,PARK,20100106000000.00000,19970715000000.00000,53 WEST 128 STREET,DPR,False,Unity Gardens,N,Unity Gardens,Greenthumb,Garden,http://www.nycgovparks.org/parks/M298/,No,70,30,13,{28D5C54E-9D0C-4EF0-8DC1-24AB2E1705B7} +"MULTIPOLYGON (((-73.7711620019294 40.60036281086813, -73.77122036886021 40.600044704838005, -73.77096550105126 40.600141718677975, -73.7707322387967 40.60023050823484, -73.76835000131571 40.601137246458705, -73.76833254537013 40.601046939011546, -73.76830837852606 40.600958737868346, -73.76829234912974 40.6009112055415, -73.76827428996829 40.600864023025935, -73.76823967137877 40.60078622617385, -73.76821299158124 40.600734158022874, -73.76818725666435 40.600688650297556, -73.76813698541734 40.60060974391004, -73.76808804445267 40.600542447956315, -73.76803871664315 40.600481788072386, -73.76799451297775 40.60043232573832, -73.76795266610519 40.600389061959255, -73.7679220822364 40.60035935400552, -73.76788839700247 40.60032830790259, -73.76785184025724 40.60029641760006, -73.76781459074664 40.600265681260225, -73.76776729721871 40.600228980243784, -73.7677284151384 40.60020058644534, -73.76768304159627 40.60016930863631, -73.76760168111004 40.60011833829451, -73.7675369724121 40.60007779904511, -73.767453080105 40.60002993839341, -73.76734277979673 40.59996828670546, -73.76713551701633 40.59984264615696, -73.76706244815364 40.59979658118368, -73.7670199622075 40.59976475243848, -73.76699012731629 40.599739662746025, -73.76695308476312 40.59970466975946, -73.76691493259462 40.59966298810849, -73.76687784836611 40.59961491487994, -73.76683323979684 40.599556971922624, -73.7667735466065 40.59947943261769, -73.76620631471914 40.59874261281914, -73.76659219883564 40.598555534061965, -73.76669079977005 40.59850094810504, -73.76676915770781 40.59845018603814, -73.76689954442278 40.59834721793048, -73.76698162701089 40.59826633348773, -73.76703600200074 40.59820295126958, -73.76706926114586 40.59815895686919, -73.76710326564199 40.5981085495256, -73.7671576251466 40.59801125522404, -73.7671712422919 40.597982068861356, -73.76719003675584 40.597936848320415, -73.76722028498762 40.59784384387225, -73.76722953671005 40.597791627622115, -73.76723890652136 40.59773874432069, -73.7672472362781 40.597691737543265, -73.76725226161237 40.59766337575997, -73.76726206037767 40.59760807991606, -73.7672765964492 40.59752603904718, -73.76729172896962 40.59744064402498, -73.76730971156508 40.59733915157085, -73.76733045255997 40.597222096409695, -73.76735015226346 40.59711092226995, -73.76736912770639 40.597003817035805, -73.767394518622 40.59690536712865, -73.76742890885264 40.59681417115247, -73.76746582310352 40.59673872866674, -73.76749528763317 40.59668799413006, -73.76753029447217 40.59663509242568, -73.7676109756285 40.5966308646459, -73.76761100005513 40.59663097455945, -73.76771857492228 40.59712477739651, -73.76775305172977 40.597283035220805, -73.76776339514768 40.5973305156281, -73.7677921963396 40.597462719665735, -73.76792735749514 40.59751464594686, -73.76832645577916 40.59766796963502, -73.76847999379648 40.597721141714956, -73.76890105187184 40.59766704995323, -73.76893125812396 40.59782681080396, -73.7691607493112 40.597800877607526, -73.76948851994462 40.597763836831454, -73.76962536276258 40.597748372750786, -73.76962387058842 40.597741197973704, -73.76959458117481 40.597591219753674, -73.76960423091539 40.597590188186985, -73.76971164851346 40.59757870746658, -73.76992760279792 40.59755562729471, -73.76998975979213 40.59787294654413, -73.77000321701932 40.597870954499506, -73.77019823029359 40.59784208745287, -73.77018424899035 40.59777152132657, -73.7705287347938 40.59772997056082, -73.77052022789525 40.59768653473386, -73.770514910359 40.597659384976275, -73.77050427646539 40.59760508996513, -73.77049364141699 40.59755079224875, -73.7704828937158 40.597495934179165, -73.77113225982589 40.59742249374576, -73.77126359463227 40.598063427823696, -73.77107545293327 40.598043175893274, -73.77110568774174 40.59831093443489, -73.77127369801816 40.59833142090821, -73.7715309415941 40.59836278641636, -73.77195658524761 40.598473655333265, -73.77293870832303 40.598727909228906, -73.7732429640401 40.59880667557923, -73.77326241259627 40.59884984641724, -73.77200895540604 40.59869748398315, -73.77204938340978 40.59887027685316, -73.77161585923898 40.59891244323016, -73.77155258800757 40.59864200675158, -73.77148126435912 40.598633336071096, -73.7714028381372 40.5990604578035, -73.77246320497379 40.59918847990895, -73.77238807729945 40.599600629471546, -73.77233904817147 40.59957409113033, -73.77229334877786 40.599554018834006, -73.77223593808836 40.599533513570464, -73.77220604690945 40.5995219555172, -73.77214091464752 40.59951245102713, -73.77210703190902 40.599506977087884, -73.77206445080381 40.59950929614327, -73.77204551155701 40.59951436455672, -73.77202341598702 40.59952032813164, -73.77200159086026 40.599528397667164, -73.7719873276884 40.599549396636355, -73.77197578648399 40.59957975476154, -73.771972906628 40.59961489475108, -73.7719742528545 40.59968530139494, -73.77197868122185 40.599775846298186, -73.7719797366343 40.59981309682196, -73.77197838423126 40.599867653366665, -73.77196986833283 40.59992993121014, -73.7719613524185 40.59999220905258, -73.77196046815799 40.600070198193876, -73.77195307277329 40.600171059464195, -73.77195099258739 40.60028648917242, -73.77195862569663 40.60032496305273, -73.77198102272725 40.60039617060313, -73.77202410601699 40.60047773470304, -73.77204414246198 40.60051472840298, -73.77205013655002 40.600528062663194, -73.77208077655351 40.60055676824131, -73.77210937435264 40.60059536203155, -73.77214901751545 40.60063434242645, -73.77219219912011 40.60066745929739, -73.77175119061478 40.60306905752904, -73.77068242066544 40.60293457170074, -73.77109558119253 40.60072480322738, -73.77115658560817 40.600392955073545, -73.7711620019294 40.60036281086813)))",Q007,6236,Q007,Q-14,Q-14,Q-14,Q-14,"Dwight Ave., Seagirt Blvd. bet. Beach 38 St. and Bay 32 St.",414,31,101,11691,Q,40.07,False,Bayswater Park,Yes,100000106,PARK,20090423000000.00000,19311014000000.00000,,DPR,Part,Bayswater Park,Y,Bayswater Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q007/,Yes,"23, 31",10,5,{D3E5C95B-C111-4AE8-AA47-7501BE707C76} +"MULTIPOLYGON (((-73.888342708587 40.826673853555015, -73.88870336487649 40.82648705211391, -73.88871752348014 40.826676677816906, -73.888342708587 40.826673853555015)))",X064,5628,X064,X-02,X-02,X-02,X-02,"Bryant Ave., Westchester Ave., Longfellow Ave.",202,17,41,10459,X,0.17,False,Bryant Triangle,Yes,100003725,PARK,20100106000000.00000,18930115000000.00000,,DPR,True,Bryant Triangle,Y,Bryant Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X064/,No,85,32,15,{D29B3FF6-7056-49CF-A2D6-F4C1B74A33CC} +"MULTIPOLYGON (((-73.87740831572681 40.874423392384266, -73.8775558572013 40.87422636001466, -73.87808260659916 40.87426303990854, -73.8780467006079 40.87453905036676, -73.87778302964756 40.874520876016724, -73.8777922675824 40.87444985705703, -73.87740831572681 40.874423392384266)))",X180,5177,X180,X-07,X-07,X-07,X-07,Perry Ave. bet. E. 205 St. and E. 208 St,207,11,52,10467,X,0.326,False,Whalen Playground,Yes,100003878,PARK,20100106000000.00000,19550127000000.00000,293 EAST 205 STREET,DPR,True,Whalen Playground,Y,Whalen Playground,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X180/,No,80,36,13,{D64911DA-EFF0-4DEE-97CF-450C343363E9} +"MULTIPOLYGON (((-73.91312507377751 40.822893298469246, -73.91299186100002 40.82314322081414, -73.91265308352172 40.82303937791028, -73.91278501527366 40.82278906416739, -73.91312507377751 40.822893298469246)))",X349,4726,X349,X-03,X-03,X-03,X-03,Elton Ave. at E. 160 St.,203,17,42,10451,X,0.227,False,Jardin de la Roca,No,100003876,PARK,20100106000000.00000,20081105000000.00000,843 ELTON AVENUE,DPR,False,Jardin de la Roca,Y,Jardin de la Roca,,Garden,http://www.nycgovparks.org/parks/X349/,No,79,32,15,{7A10EF3A-3F70-499B-8F21-DADAB024ACFF} +"MULTIPOLYGON (((-73.9972876730406 40.67600876309299, -73.99753072159417 40.67548825749955, -73.9977934658831 40.675561895234715, -73.99754997789537 40.67608334961121, -73.9972876730406 40.67600876309299)))",B118B,5431,B118B,B-06,B-06,B-06,B-06,Smith St. bet. Nelson St. and Huntington St.,306,39,76,11231,B,0.367,False,St. Mary's Playground,Yes,100004067,PARK,20100106000000.00000,19341204000000.00000,440 SMITH STREET,DPR,False,St. Mary's Park,N,St. Mary's Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B118B/,No,52,25,7,{315157C1-93D3-467C-9B50-937074AF86DD} +"MULTIPOLYGON (((-73.96157941135702 40.796902580828394, -73.96175890607248 40.79665691035607, -73.96183944916268 40.79669083546085, -73.96184133630923 40.79669163032635, -73.96190870024435 40.796720006642076, -73.96192465156489 40.796726725137674, -73.9619761424252 40.796748413561076, -73.96179664826474 40.79699408436812, -73.9617186731591 40.79696123888668, -73.96165995465299 40.79693650605727, -73.96157941135702 40.796902580828394)), ((-73.96188673536791 40.79703203153072, -73.96206623048265 40.796786361485744, -73.96212528189473 40.79681123469615, -73.96214583090057 40.796819890746015, -73.96221216800033 40.796847832505684, -73.96227574490672 40.79687461257953, -73.96217849008202 40.79700772589094, -73.96209625151117 40.79712028474876, -73.96203226769073 40.79709405915072, -73.96196633717416 40.79706556091406, -73.96188673536791 40.79703203153072)))",M306,4980,M306,M-07,M-07,M-07,M-07,"W. 104 St., Manhattan Ave., Central Park W.",107,7,24,10025,M,0.38,False,W 104th Street Garden,No,100004371,PARK,20100106000000.00000,19980812000000.00000,14 WEST 104 STREET,DPR,False,W 104th Street Garden,N,W 104th Street Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M306/,No,69,30,13,{0D045990-32E3-4C3B-95AC-1515D0EDB4C8} +"MULTIPOLYGON (((-73.72738293199147 40.756052094709176, -73.72796672835416 40.755921198083385, -73.72814081152288 40.75635588066137, -73.72866788750035 40.7570807961256, -73.7286248877282 40.75709013397567, -73.72783368054584 40.75726194410693, -73.72738293199147 40.756052094709176)))",Q346,6293,Q346,Q-11,Q-11,Q-11,Q-11,251 St. bet. 61 Ave. and 63 Ave.,411,23,111,11362,Q,2.035,False,Challenge Playground,Yes,100000009,PARK,,19490324000000.00000,,DPR/DOE,False,Challenge Playground,Y,Challenge Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q346/,No,26,11,3,{F083B449-6079-40A5-A938-1771F8B763F7} +"MULTIPOLYGON (((-73.93171714763652 40.855812557496336, -73.93217723495611 40.85518967645122, -73.93233194465462 40.85525489081623, -73.93306186603623 40.85556256599426, -73.93270794387354 40.85623019845865, -73.93223375013001 40.85603031807015, -73.93171714763652 40.855812557496336)))",M031,5685,M031,M-12,M-12,M-12,M-12,"Broadway To Wadsworth Terr, W 189 St To W 190 St",112,10,34,10040,M,1.89,False,Amelia Gorman Park,Yes,100005088,PARK,20100106000000.00000,19300423000000.00000,,DPR,True,Amelia Gorman Park,Y,Amelia Gorman Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M031/,No,72,31,13,{CE6F3988-7975-45BF-89A5-F0CED872D871} +"MULTIPOLYGON (((-73.94398552984758 40.70515125933327, -73.94407499632044 40.70514271375546, -73.94409820637463 40.70528446466512, -73.94410972373917 40.705354794814845, -73.94412030988389 40.70541945038682, -73.94403084304544 40.70542799599949, -73.94394697844083 40.70543600576494, -73.94390166440164 40.70515926996588, -73.94398552984758 40.70515125933327)))",B427,5234,B427,B-01,B-01,B-01,B-01,McKibbin St. between Manhattan Ave. and Graham Ave.,301,34,90,11206,B,0.115,False,Sunshine Community Garden,No,100004834,PARK,20100106000000.00000,19990712000000.00000,99 MC KIBBIN STREET,DPR,False,Sunshine Community Garden,N,Sunshine Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B427/,No,53,18,7,{5DF951F4-D174-4AD7-8B60-9B44ED3F84E1} +"MULTIPOLYGON (((-73.9399233237568 40.802819200323285, -73.93983616970242 40.80278242171565, -73.94001049689582 40.802541683115415, -73.94009774446536 40.80257833287002, -73.9399233237568 40.802819200323285)))",M388,6131,M388,M-11,M-11,NULL,M-11,E 122 St. bet. Park Ave. and Lexington Ave.,111,9,25,10035,M,0.063,False,Carolina Garden,No,100007944,PARK,20110712000000.00000,20110418000000.00000,,DPR,False,Carolina Garden,,Carolina Garden,,Garden,,No,68,30,13,{1B578E33-8381-4B27-9371-37BD710683AB} +"MULTIPOLYGON (((-73.85834289923423 40.71252483608782, -73.8583574659519 40.71201705269215, -73.85858951062401 40.71225201045265, -73.85865212786025 40.71231541224559, -73.85872374842577 40.712387930128116, -73.85855502065816 40.712495678994344, -73.85855064665259 40.71249847241064, -73.85848689020925 40.71251230696121, -73.85842432059859 40.712528989453816, -73.85842226454218 40.71252974425566, -73.8584199291262 40.712529973715476, -73.85841083129792 40.71253086934146, -73.85835414327163 40.71253645211734, -73.85834289923423 40.71252483608782)))",Q480,6319,Q480,Q-06,Q-06,Q-06,Q-06,"Trotting Course La., Alderton St.",406,29,112,11374,Q,0.247,False,Remsen Family Cemetery,No,100000125,PARK,20090423000000.00000,20030304000000.00000,,DPR,True,Remsen Family Cemetery,Y,Remsen Family Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/Q480/,No,28,15,6,{1066BC40-BD3B-4A4D-9308-C264AC788225} +"MULTIPOLYGON (((-73.90610144080462 40.74548706019599, -73.90609909666958 40.74547345252363, -73.9064842502021 40.74548129862846, -73.90637667416274 40.74556741137114, -73.90610144080462 40.74548706019599)))",Q057,5868,Q057,Q-02,Q-02,Q-02,Q-02,"Woodside Ave., 58 St., Roosevelt Ave.",402,26,108,11377,Q,0.044,False,Sohncke Square,Yes,100000173,PARK,20090423000000.00000,19220407000000.00000,,DPR,True,Sohncke Square,Y,Sohncke Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q057/,No,30,12,14,{3E1A6F5F-EEE7-4EB8-8E74-930308A51185} +"MULTIPOLYGON (((-73.94432155536188 40.68777739195377, -73.94438396457409 40.6877702531437, -73.94439772479487 40.687838872630124, -73.94440803909232 40.68789030324628, -73.94441794107003 40.687939675988304, -73.9444287325383 40.687993478785344, -73.94443991279323 40.68804922867911, -73.94437749154318 40.68805631078122, -73.94431176228426 40.68806376766337, -73.9442475190063 40.68807105593137, -73.94419160809753 40.68779225862259, -73.94425583933344 40.68778491004544, -73.94432155536188 40.68777739195377)))",B465,5260,B465,B-03,B-03,B-03,B-03,Quincy St. between Throop Ave. and Tompkins Ave.,303,36,79,11221,B,0.13,False,First Quincy St Block Association,No,100004179,PARK,20100106000000.00000,20021120000000.00000,397-401 Quincy Sreet,DPR,False,First Quincy St Block Association,N,First Quincy St Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B465/,No,56,25,8,{31578C12-2F1F-48E4-BBB7-7853939D864F} +"MULTIPOLYGON (((-74.00177474199378 40.750698285591184, -73.99924221028857 40.749630375062694, -73.9995934156011 40.74914831794115, -74.00039475743111 40.74948623468066, -74.00090004711411 40.74969930417203, -74.00185810027943 40.750103285798914, -74.00212577475335 40.7502161532868, -74.00177474199378 40.750698285591184), (-73.99982116038407 40.749396803261966, -73.99964446500843 40.74963947752048, -73.9997795361151 40.74969643486338, -73.9997569244383 40.749727488767434, -73.99986209847866 40.749771838861854, -74.00006140370651 40.74949811121432, -73.99982116038407 40.749396803261966)))",M011,4809,M011,M-04,M-04,M-04,M-04,"9 Av To 10 Av, W 27 St To W 28 St",104,3,10,10001,M,3.9,False,Chelsea Park,Yes,100004817,PARK,20100106000000.00000,19061010000000.00000,294 10 Av,DPR,True,Chelsea Park,Y,Chelsea Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M011/,No,75,31,10,{B238687C-7249-4646-942B-8B015C0AD425} +"MULTIPOLYGON (((-74.18045654659832 40.59616019487824, -74.1805501243531 40.59594724584147, -74.18064520080402 40.59576403959404, -74.18122370021469 40.59481002250792, -74.18135694122462 40.59469500171487, -74.18138132860254 40.594673949481155, -74.18146577679018 40.594601049260376, -74.18146662441109 40.59460170170274, -74.18235663900036 40.59383199030564, -74.18236775520111 40.59383840871511, -74.18271457349896 40.59403867390864, -74.18163537084033 40.59473147897061, -74.1820220518808 40.595028864245165, -74.18208546082549 40.5950776298592, -74.18212350599956 40.59510688885091, -74.18216155120696 40.59513614782992, -74.18219959644765 40.595165406796276, -74.18223764172174 40.595194665749936, -74.18227568702912 40.59522392469088, -74.18231373236742 40.59525318271869, -74.18238982197005 40.59531170143965, -74.18265035168858 40.59551206140773, -74.18280460514306 40.5956306898818, -74.18305528755717 40.59582347407204, -74.18334765216747 40.59604831203009, -74.18298268219796 40.5963056837392, -74.18269193011709 40.59608208411822, -74.1825596899975 40.596175336472754, -74.18242744832972 40.59626858957665, -74.1822952051136 40.59636184342994, -74.18258595708174 40.596585443148086, -74.18087256497881 40.597793638824974, -74.1803261223314 40.59745022980223, -74.18034187909483 40.597234298944976, -74.18039268604153 40.59653803995593, -74.18040642439284 40.596389816372, -74.18045654659832 40.59616019487824)))",R017A,69245,R017A,R-02,R-02,R-02,R-02,Victory Blvd. bet. Ridgeway Ave. and Travis Ave.,502,50,122,10314,R,12.247,False,Greenbelt Native Plant Center,No,100005023,PARK,,19920904000000.00000,3808 VICTORY BOULEVARD,DPR,False,Greenbelt Native Plant Center,N,Greenbelt Native Plant Center,Flagship Park,Buildings/Institutions,http://www.nycgovparks.org/parks/R017A/,No,63,24,11,{D0928490-B43C-48B9-8D5B-71DB1F8003B6} +"MULTIPOLYGON (((-73.94399726618308 40.80042702693883, -73.94404184045143 40.80036591999223, -73.94432477861194 40.80048468697016, -73.94428009850296 40.80054645764171, -73.94399726618308 40.80042702693883)))",M367,6573,M367,M-11,M-11,M-11,M-11,Madison Ave. bet. E. 116 St. and E. 117 St.,111,8,25,10035,M,0.052,False,Peaceful Valley Garden,No,100003815,PARK,20100106000000.00000,20070410000000.00000,1781 MADISON AVENUE,DPR,False,Peaceful Valley Garden,N,Peaceful Valley Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M367/,No,68,30,13,{B09BE960-241A-4637-A030-F8120885AD3A} +"MULTIPOLYGON (((-74.19211976511588 40.590949599258266, -74.19242863695611 40.59076985448927, -74.19245264370944 40.59079386911446, -74.19278117197422 40.59060278257337, -74.19279174057463 40.590596533206956, -74.1927982513395 40.59059473834243, -74.19280436957995 40.590594053583274, -74.19280862823378 40.59059410046903, -74.19281341291575 40.59059468048349, -74.19281877856537 40.59059600155567, -74.19282489210853 40.590598599217905, -74.1928289360133 40.59060118504405, -74.19283297521979 40.59060500729914, -74.19283505922513 40.59060753968096, -74.19283626284025 40.590609546732956, -74.19283746130513 40.590612224684904, -74.19283845061997 40.590616107890625, -74.19282687357764 40.590698985549004, -74.19281366926697 40.59079351603125, -74.19269639022237 40.5912839632024, -74.19261270211447 40.59163392783317, -74.19243865438784 40.5920484267952, -74.19239354120043 40.59203111589836, -74.19222000105141 40.5919645252247, -74.19204373651962 40.5918968897305, -74.19193260207135 40.5918542446348, -74.19187812408113 40.591833339872586, -74.19181486609631 40.59181428681234, -74.19169664542258 40.59177867921438, -74.19157542532088 40.591742167865696, -74.19126527167998 40.59164874985431, -74.1913499492781 40.591397576683605, -74.19211976511588 40.590949599258266)))",R156,6122,R156,R-02,R-02,R-02,R-02,Victory Blvd. and Glen St.,502,50,122,10314,R,2.476,False,Sylvan Grove Cemetery,No,100003830,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,Sylvan Grove Cemetery,N,Sylvan Grove Cemetery,Sitting Area/Triangle/Mall,Cemetery,http://www.nycgovparks.org/parks/R156/,No,63,24,11,{4ACABEE0-1073-4554-952A-027DA9159BC1} +"MULTIPOLYGON (((-73.91579423873893 40.82135884622243, -73.9157315036763 40.82148168213906, -73.91560080537876 40.82173759048166, -73.91550935431317 40.82170961082192, -73.91543977339718 40.82168832250955, -73.91533617467495 40.821656625558944, -73.9154669188582 40.82140073105331, -73.91552967566047 40.821277902498565, -73.91579423873893 40.82135884622243)))",X357,5514,X357,X-01,X-01,X-01,X-01,E. 157 St. and Melrose Ave.,201,17,40,10451,X,0.248,False,Garden,No,100008363,PARK,20140724000000.00000,20130620000000.00000,757 MELROSE AV,DPR,False,Garden,,Rainbow Garden of Life and Health,,Garden,,No,79,32,15,{B6268748-E5C4-4F4A-A528-EDD0C616A68D} +"MULTIPOLYGON (((-74.12480224365221 40.561083996986696, -74.12448473212217 40.56089395135952, -74.12410911938338 40.56126798084818, -74.12277971852234 40.56046430032608, -74.12276468823794 40.560451144392324, -74.12275572165288 40.56044086456103, -74.12274654881574 40.560426933314794, -74.12274059893339 40.5604140234227, -74.12273691707628 40.56040165322357, -74.12273514269006 40.560390233742915, -74.12273480291557 40.560381388234816, -74.12273573300962 40.56036963807251, -74.12273742930515 40.56036104613813, -74.12273919381232 40.560354877447445, -74.1227440010259 40.560342885402754, -74.12275024559342 40.56033174822227, -74.12302483380459 40.56009526074987, -74.12313968310637 40.56001640554469, -74.12343250796933 40.5598153476605, -74.12347629900171 40.55978528063922, -74.1238465158481 40.560096664113686, -74.12402260772876 40.56024477009813, -74.1241298261481 40.56033494915925, -74.12425721521383 40.56044209293037, -74.12432425783392 40.56049847978645, -74.12444338941359 40.56059867752246, -74.12456513135773 40.560701068687365, -74.12469695069025 40.56081193624399, -74.12486413771016 40.560952550116106, -74.12497844227832 40.56104868486468, -74.12510171972511 40.56115236694378, -74.12523138372872 40.56126141896992, -74.12525344442636 40.56127997277405, -74.12506034875116 40.56147682303022, -74.12470717095789 40.561271624069995, -74.12479036976133 40.56119072406853, -74.12473380591217 40.561156807748944, -74.12480224365221 40.561083996986696)))",R072,5063,R072,R-03,R-03,R-03,R-03,"Adelaide Ave., Clawson St.",503,50,122,10306,R,3.593,False,Clawson Playground,Yes,100004661,PARK,20100106000000.00000,19550421000000.00000,200 ADELAIDE AVENUE,DPR/DOE,False,Clawson Playground,Y,Clawson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R072/,No,64,24,11,{EB27DEB0-D928-4D42-B907-6A9DE8151275} +"MULTIPOLYGON (((-73.753459647807 40.59256150885239, -73.75456871654627 40.59251672153629, -73.75508506868859 40.59249586569054, -73.75555110908593 40.592477039258235, -73.75555573679323 40.592555967636926, -73.75562573312135 40.59255313937558, -73.75563081040949 40.59263255318979, -73.75457024004517 40.59267592796111, -73.75393567414092 40.59270187484543, -73.7533012927642 40.59296583767371, -73.75316440055838 40.5930227973742, -73.75304319173259 40.59307456036056, -73.75132575742933 40.59380797441481, -73.75131453468082 40.59328237676801, -73.75278511551127 40.5926626215273, -73.75315580162655 40.59260705625938, -73.753459647807 40.59256150885239)), ((-73.75574862952708 40.592469060064055, -73.75691552554005 40.59242191276778, -73.75694461013487 40.59258693901865, -73.75568806134046 40.59263075500323, -73.75568292206518 40.59255082956086, -73.75575325746733 40.592547988434895, -73.75574862952708 40.592469060064055)))",Q162I,5571,Q162I,Q-14,Q-14,Q-14,Q-14,Rockaway Boardwalk bet. Crest Rd. and B. 17 St.,414,31,101,11691,Q,3.809,False,Rockaway Beach and Boardwalk,No,100000433,PARK,20100106000000.00000,19500526000000.00000,,DPR,True,Rockaway Beach and Boardwalk,N,Rockaway Beach and Boardwalk,Mall,Waterfront Facility,http://www.nycgovparks.org/parks/Q162I/,Yes,23,"10, 15",5,{EB0864FC-F726-47CF-873E-30E00ECBBEF6} +"MULTIPOLYGON (((-73.9854448852634 40.575020601883516, -73.98538798797195 40.57473501495535, -73.98524050354382 40.574757487599584, -73.98523001975776 40.57475778162421, -73.98520542347235 40.574756137703766, -73.98518157547687 40.57475126189238, -73.98515919969353 40.57474330287067, -73.98513897632597 40.57473250116737, -73.98512152060201 40.57471918645539, -73.98511073350456 40.574707989738094, -73.98477464211544 40.57400173279434, -73.98444445168624 40.57332246344071, -73.9844388814347 40.57331568894072, -73.98442455176131 40.573289296226456, -73.9844196691423 40.57326097496789, -73.98441967164305 40.57326037972151, -73.98441967055011 40.57326000240161, -73.98442186570693 40.57324090347415, -73.98442837835732 40.573222385069776, -73.98443900760148 40.573205010888856, -73.98445343327126 40.57318930769386, -73.98447121593301 40.57317575270187, -73.9844739809853 40.57317402767058, -73.98450768611187 40.57316282249134, -73.98455540602137 40.57314042656756, -73.98459747630513 40.573112202572155, -73.98463268627953 40.57307896352301, -73.98466002245699 40.57304166474758, -73.98467869925643 40.57300137957205, -73.98468639062826 40.57297163807215, -73.98465103958584 40.57279170674269, -73.98464991426209 40.57278598285804, -73.9846453327611 40.57276266316162, -73.98463822578002 40.572726483636146, -73.98519668905347 40.57266083127101, -73.98625907196093 40.572639202984185, -73.98665302237255 40.57472739826951, -73.98662300301687 40.57473707541544, -73.98656567608975 40.5747552440102, -73.98643471062532 40.57479523531805, -73.98629046562567 40.574836294715496, -73.9862212065621 40.57485600791412, -73.98596729674215 40.57492135705279, -73.98566457494425 40.57498977213849, -73.9854471148306 40.57503220542289, -73.9854457004445 40.5750246948702, -73.9854448852634 40.575020601883516)))",B336,4612,B336,B-13,B-13,B-13,B-13,Surf Ave. to the Boardwalk between W. 19 St. and W. 20 St.,313,47,60,11224,B,8.807,False,Abe Stark Skating Rink,No,100003999,PARK,20100106000000.00000,19640423000000.00000,1904 SURF AVENUE,DPR,Part,Abe Stark Skating Rink,N,Abe Stark Skating Rink,Concession,Buildings/Institutions,http://www.nycgovparks.org/parks/B336/,Yes,46,23,8,{476F18E4-B924-4A78-8D30-64EFCC6AF8BC} +"MULTIPOLYGON (((-73.83156857685573 40.830721989380315, -73.83163307243422 40.83070714162194, -73.83162447019697 40.83071414302873, -73.83107833165559 40.83083514730415, -73.83107219330749 40.83083171822796, -73.83133284655784 40.83077497855338, -73.83156857685573 40.830721989380315)), ((-73.83201710008339 40.83116148601876, -73.83202189220711 40.8311581494563, -73.83210209416941 40.83133879142502, -73.83209637989549 40.83133969170646, -73.83201710008339 40.83116148601876)))",X195C,5925,X195C,X-05,X-05,X-05,X-05,N/B and S/B Bruckner Blvd bet. Brinsmade Av and Swinton Av,210,13,45,10465,X,0.007,False,Strip,No,100008321,PARK,20100106000000.00000,19660310000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/X195C/,No,82,34,14,{C64894EF-E80C-45DB-A6A5-05BDC96807E6} +"MULTIPOLYGON (((-73.83067260046143 40.75828239234851, -73.83143389715624 40.7580072334245, -73.83159232385945 40.75825962588713, -73.83083081291579 40.758535266407115, -73.83067260046143 40.75828239234851)))",Q326,5317,Q326,Q-07,Q-07,Q-07,Q-07,40 Rd. bet. Prince St. and Main St.,407,20,109,11354,Q,0.551,False,Bland Playground,Yes,100000228,PARK,,19491218000000.00000,135-10 40 ROAD,DPR,True,Bland Playground,Y,Bland Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q326/,No,40,11,6,{F160D319-C23F-4822-BEBC-A888F4A7D0A5} +"MULTIPOLYGON (((-73.95626156437389 40.815549771099384, -73.95519798823042 40.81510638661292, -73.95554849571005 40.81462518675354, -73.95556242973618 40.81464090760124, -73.95587763709996 40.81448443760179, -73.95612488645753 40.814763414124094, -73.95572612973919 40.81496209055751, -73.95581540190227 40.81506281478717, -73.95600707947317 40.81516074420055, -73.95633200617196 40.814997110523784, -73.95655347271345 40.81524698937879, -73.95626156437389 40.815549771099384)), ((-73.95562086725201 40.81452582766076, -73.95575324691676 40.81434408436568, -73.95582300470008 40.81442279295804, -73.95562086725201 40.81452582766076)))",M190,4866,M190,M-09,M-09,M-09,M-09,"W. 126 St. to W. 129 St., Amsterdam Ave. to Old Broadway",109,7,26,10027,M,1.43,False,Sheltering Arms Playground,Yes,100003806,PLGD,20100106000000.00000,19450104000000.00000,500 WEST 129 STREET,DPR,False,Sheltering Arms Playground,Y,Sheltering Arms Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M190/,No,70,31,13,{7BC708CE-49E0-4BFF-905E-7C09A93236DE} +"MULTIPOLYGON (((-73.8693318214911 40.75877123906044, -73.86924239711772 40.758280557310435, -73.86959595024722 40.758243554659344, -73.86973512001782 40.75900718077524, -73.86909523044685 40.75907270834265, -73.86905070388515 40.75882838112943, -73.86919373782099 40.758813397121486, -73.86918878415239 40.75878620882784, -73.8693318214911 40.75877123906044)))",Q441,4669,Q441,Q-03,Q-03,Q-03,Q-03,32 Ave. bet. 99 St. and 100 St.,403,21,115,11369,Q,0.817,False,Fisher Pool,No,100000148,PARK,20090423000000.00000,19700119000000.00000,32-23 99 STREET,DPR,False,Fisher Pool,Y,Fisher Pool,Building,Buildings/Institutions,http://www.nycgovparks.org/parks/Q441/,No,35,13,14,{E3DE9EB5-DF91-449A-86F8-E73AD1B3C9BB} +"MULTIPOLYGON (((-73.74135815925747 40.70849392663812, -73.7413635402498 40.70849418096697, -73.7413687824233 40.70849513918638, -73.74137372850271 40.7084967721266, -73.74137822957309 40.70849903082525, -73.74138214980991 40.70850184743861, -73.74138537238873 40.70850513705588, -73.74138779828778 40.70850880129848, -73.74138935693847 40.70851272834409, -73.74138999909002 40.70851680191565, -73.7413897074671 40.70852089950433, -73.74138848965518 40.70852489595559, -73.7413863827996 40.70852867248484, -73.74138345006213 40.708532114868525, -73.7413797794099 40.70853512064551, -73.74137548243536 40.70853759821394, -73.74069948311602 40.70868472546058, -73.74069468580309 40.70868500552045, -73.74068989804942 40.70868465344009, -73.74068525945388 40.70868367943967, -73.74068091191182 40.70868211175486, -73.74067698422452 40.70867999840308, -73.74067359212015 40.70867740178066, -73.74067083825025 40.7086743995632, -73.74066880509999 40.708671081988065, -73.740667553826 40.708667546448694, -73.74066711950866 40.708663901085906, -73.74066751711821 40.7086602521943, -73.74066873438998 40.70865671050952, -73.74067073423316 40.70865338040777, -73.74067345827028 40.70865036261508, -73.74067682449882 40.708647746998295, -73.74068073084808 40.70864561077163, -73.74068506346288 40.70864401851567, -73.74135815925747 40.70849392663812)), ((-73.7431538033433 40.70814035902461, -73.74253093166386 40.70827722630521, -73.74252588588959 40.70827750408455, -73.74252085089275 40.708277136218506, -73.74251596746186 40.70827613112667, -73.742511375122 40.708274517937575, -73.74250720150216 40.708272341962584, -73.74250356588149 40.70826966560403, -73.74250057092351 40.70826656383435, -73.74249830030926 40.708263124190815, -73.74249681875108 40.70825944317329, -73.74249616844621 40.70825562533592, -73.74249636672407 40.70825177967986, -73.7424974084405 40.70824801245433, -73.7424992647774 40.708244431656624, -73.7425018820939 40.70824113802446, -73.74250518784679 40.70823822414847, -73.74250908823083 40.70823577266623, -73.74251347292585 40.70823385267057, -73.7431309288713 40.70809490941904, -73.74313655748898 40.7080944645175, -73.74314220096645 40.708094769777794, -73.74314769011531 40.70809581671782, -73.74315285702771 40.70809757164396, -73.74315754569858 40.708099982878686, -73.74316161203969 40.70810297715896, -73.74316493451586 40.70810646326157, -73.7431674105845 40.70811033469706, -73.74316896732509 40.70811447513636, -73.7431695543423 40.70811875749446, -73.74316915674846 40.708123052964474, -73.74316778451343 40.70812723099398, -73.7431654807304 40.708131163805945, -73.74316231449193 40.70813473268652, -73.74315838206964 40.70813782888814, -73.7431538033433 40.70814035902461)), ((-73.74158825806549 40.70844135354886, -73.7422326525556 40.70829996044308, -73.74223750678011 40.70830056115034, -73.74224216580164 40.70830176026277, -73.74224650193585 40.70830352687693, -73.7422503982218 40.70830581120275, -73.74225374839403 40.708308551767246, -73.74225646043946 40.70831167362169, -73.74225846013024 40.70831509285208, -73.74225969576064 40.70831871568908, -73.74226013102579 40.70832244389531, -73.74225975566894 40.7083261756896, -73.74225857836679 40.70832980933315, -73.74225663263292 40.708333246744914, -73.74225397089705 40.70833639438862, -73.74225066567847 40.70833916597718, -73.74160525548447 40.70848209318244, -73.74160022873637 40.70848142632371, -73.741595418617 40.70848013049105, -73.74159095989361 40.708478241107095, -73.74158697898014 40.7084758115861, -73.74158358803066 40.708472910619015, -73.74158088140344 40.70846961856353, -73.74157893447054 40.708466029242494, -73.74157780364561 40.70846224273973, -73.74157751928418 40.70845836538418, -73.74157809042693 40.708454507059, -73.74157950127457 40.70845077489004, -73.74158170999745 40.708447275044044, -73.74158465705038 40.70844410464294, -73.74158825806549 40.70844135354886)), ((-73.74342506757579 40.70803491212261, -73.74404419152523 40.70789574526776, -73.74404862460776 40.707895999164506, -73.7440529395712 40.70789681291873, -73.7440570157933 40.707898165550496, -73.74406073627792 40.70790001627644, -73.74406399826351 40.70790231533983, -73.74406670851785 40.707904996795875, -73.7440687915932 40.707907985734, -73.74407018864694 40.70791119737509, -73.74407086097416 40.70791454158161, -73.74407078763385 40.707917924653444, -73.74406997372941 40.70792125024678, -73.74406843973367 40.70792442565418, -73.74406622859307 40.70792736091948, -73.74406340452316 40.70792997423868, -73.74406004591562 40.70793219014266, -73.74405624767031 40.70793394850793, -73.74343063575341 40.708079068679844, -73.74342573787919 40.708079356733904, -73.74342084356599 40.70807902704242, -73.74341608767845 40.708078089811664, -73.74341159911214 40.708076568742285, -73.74340750076979 40.70807450733311, -73.74340390485867 40.70807196076565, -73.7434009081505 40.70806899769484, -73.74339859197785 40.70806570114936, -73.7433970210889 40.70806215862361, -73.74339623770993 40.708058467467346, -73.74339626274946 40.70805472948533, -73.74339709582264 40.70805104463396, -73.74339871405384 40.70804751462035, -73.74340107447132 40.708044235703845, -73.74340411046394 40.708041296886854, -73.74340774125511 40.70803877813515, -73.74342506757579 40.70803491212261)))",Q281,6205,Q281,Q-13,Q-13,Q-13,Q-13,110 Ave. bet. 213 St. and 217 St.,413,27,105,11429,Q,0.185,False,Nakks Malls,Yes,100000359,PARK,20090423000000.00000,,,DPR,False,Nakks Malls,N,Nakks Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q281/,No,33,14,5,{2B1B4E76-59D3-4E7A-9CBE-BC0C94C77AFD} +"MULTIPOLYGON (((-73.84765476893402 40.81137193244101, -73.84761024901252 40.81129338792193, -73.84744350730276 40.81134814376393, -73.8456467214389 40.81158961092037, -73.845489753362 40.811548199237826, -73.84546272125785 40.811614055212665, -73.84574851344816 40.81168945489325, -73.8461336206136 40.81163770273646, -73.84617175976959 40.81180260435411, -73.84574488500726 40.8118599694032, -73.84525449104893 40.811730589528935, -73.84534148426691 40.81150908087486, -73.84574581133555 40.810667158047806, -73.84629790958869 40.81040923517045, -73.8471437003567 40.810497877357435, -73.84734949199887 40.81076605657686, -73.84768265142465 40.811200212624314, -73.84780827893272 40.81136954715158, -73.84743664186813 40.81149324917338, -73.84646692052725 40.811623572495385, -73.84645986481718 40.81159386014395, -73.8473273627086 40.81147727554551, -73.84765476893402 40.81137193244101)), ((-73.84752182792269 40.81160096067475, -73.84776307501622 40.81156301098123, -73.84833418797217 40.81257057264459, -73.85059066678137 40.813623668636914, -73.85030203276949 40.81397248774082, -73.84777021082145 40.81277877027896, -73.84752182792269 40.81160096067475)))",X007,5754,X007,X-09,X-09,X-09,X-09,"Barrett Ave., Hart St. bet. Olmstead Ave. and Zerega Ave.",209,18,43,10473,X,8.834,False,Castle Hill Park,Yes,100004115,PARK,20100106000000.00000,19310923000000.00000,,DPR,Part,Castle Hill Park,Y,Castle Hill Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X007/,Yes,85,34,15,{BF42B58C-35BE-4CF9-9F00-E572198E49A2} +"MULTIPOLYGON (((-73.91342067703167 40.64909603790231, -73.91397794781473 40.64873581569407, -73.91513885593294 40.64978089183206, -73.91506771709327 40.64982687649948, -73.9150065829808 40.6498663937926, -73.91494017599176 40.64990932011653, -73.91485864745114 40.649962021137156, -73.91478399024925 40.65001028133412, -73.9146973519316 40.650066284255196, -73.91464431122749 40.65010056994523, -73.91458414692805 40.650139460972255, -73.91342067703167 40.64909603790231)))",B271,5146,B271,B-17,B-17,B-17,B-17,Ditmas Ave. bet. E. 92 St. and E. 91 St.,317,42,67,11236,B,2.3,False,Railroad Playground,Yes,100004239,PARK,20100106000000.00000,19540922000000.00000,9101 DITMAS AVENUE,DPR,True,Railroad Playground,Y,Railroad Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B271/,No,58,21,8,{172AEE6C-9FBC-42A8-9B5B-54DFB9126F98} +"MULTIPOLYGON (((-73.9316174582867 40.78362827238274, -73.93158820596477 40.783632523399675, -73.93158899646026 40.7836322330069, -73.9315830801899 40.783633251564176, -73.93158299367698 40.78363328032884, -73.93158820596477 40.783632523399675, -73.93141003849155 40.78369801544612, -73.93140953357958 40.783698236669, -73.93137100743415 40.783725389974386, -73.93133707668648 40.783756031847034, -73.9313083697934 40.78378961786202, -73.9312853256291 40.783825635899404, -73.93089124237366 40.78437467566033, -73.93048390602607 40.784190844498724, -73.93042997917176 40.78423269158828, -73.93034970769554 40.78430403397385, -73.93027595021684 40.7843793307448, -73.93027171670536 40.784353807066154, -73.93025611067749 40.78425970510484, -73.93023423680346 40.78416632785169, -73.93022830423836 40.78414100035185, -73.93019260288816 40.7840235217938, -73.93014909875542 40.7839075729483, -73.93009790411114 40.7837934528412, -73.93004441934656 40.783690858642025, -73.92998471887883 40.78359026425655, -73.9299189316338 40.78349188767509, -73.92837203609233 40.781533498462025, -73.92790910846406 40.78094739986008, -73.92792416213294 40.7809471688423, -73.92695105377202 40.77967318920691, -73.92742913856404 40.77946113571541, -73.93486082713703 40.78198896688367, -73.93765342229244 40.78448296802125, -73.93306880266621 40.78987224049252, -73.93286192630374 40.79002564025484, -73.9324758784895 40.79031189375607, -73.9322808008577 40.79045654200818, -73.93099263498539 40.79141168017092, -73.93027847868778 40.791941187790506, -73.93016483297552 40.79202544906718, -73.92894082275372 40.791545248287925, -73.92603764671765 40.79083789211726, -73.92600213459525 40.79082434830352, -73.92596611446989 40.79081801536284, -73.92597118215333 40.79081254357314, -73.92596772272898 40.79081122391843, -73.92628207798501 40.790476831727176, -73.92638931603621 40.79036260149691, -73.9265544187602 40.79044746016397, -73.92724848181997 40.79060153210428, -73.927976230821 40.790592063856614, -73.92836812010377 40.79063337902511, -73.92877413855203 40.79069389666761, -73.92877399604976 40.79082709595212, -73.92946498585887 40.791109202032835, -73.92964320571546 40.79107750797896, -73.92987432710024 40.79082760319142, -73.93039563432554 40.79049972988695, -73.93103691570761 40.790098931462346, -73.93149132369936 40.79011570594261, -73.93197770131704 40.78958916949716, -73.93228652428759 40.789294394071916, -73.93251510741787 40.78880924816416, -73.93268849507545 40.78866046522261, -73.93285718145702 40.788508592360856, -73.93302107170052 40.78835371689283, -73.93318007568598 40.78819592613509, -73.93311397830266 40.78776844692545, -73.93327886588577 40.78758775158303, -73.9340989577574 40.78668901892346, -73.93422045745199 40.78654109184569, -73.9343187016056 40.78642147665494, -73.93460644543441 40.786071139042456, -73.93460658439729 40.786070785224304, -73.93461825863767 40.78605656572703, -73.9346183735076 40.786056617120764, -73.93461865581487 40.78605627328941, -73.93461854094495 40.78605622189568, -73.93435109869394 40.785936024921625, -73.93435122206353 40.78593586650364, -73.93382083112179 40.7856973535134, -73.93338888085643 40.785503106931564, -73.93338963411416 40.785502157337895, -73.9326248934733 40.785157053049986, -73.93315261758906 40.78445006770788, -73.933148371167 40.78444809944962, -73.93246735852823 40.784148008241935, -73.9323297553768 40.784087372389635, -73.93225552856414 40.78416179846739, -73.93213965160197 40.78409690768004, -73.93210085267147 40.78389439711722, -73.93208747645959 40.78385226286521, -73.93206683150896 40.78381185959368, -73.93203928317521 40.783773902512564, -73.93200532715669 40.78373907899219, -73.93196131450428 40.78370513291688, -73.93191123674862 40.78367645477848, -73.93185617252063 40.783653660249556, -73.93179734272549 40.7836372516251, -73.93179730600798 40.78363724349888, -73.93179726810581 40.78363723537191, -73.93173600515505 40.78362756913367, -73.93173581325358 40.78362754920892, -73.93167348645446 40.78362481256867, -73.93167311208292 40.78362481774969, -73.9316174582867 40.78362827238274)), ((-73.92481251144774 40.78996013584321, -73.92481333825653 40.78996135566083, -73.92483926361597 40.78992951644992, -73.92493466745617 40.789805403149984, -73.92502340600518 40.78967846506409, -73.92510533569404 40.78954891012993, -73.92518032124823 40.78941694899124, -73.92524947575929 40.789293719779764, -73.92531451308723 40.789169202841705, -73.92540103985453 40.78900892557116, -73.92547891293067 40.7888461050248, -73.92554800411149 40.78868101038705, -73.92560819822481 40.7885139153514, -73.92565939550045 40.78834509722169, -73.92570151157172 40.78817483511057, -73.92573447628813 40.78800341174014, -73.92575823608735 40.78783111074142, -73.92577275043932 40.78765821755276, -73.92577799658577 40.78748501852237, -73.92577396480065 40.78731180090506, -73.92576066313035 40.7871388510644, -73.92574930774173 40.786956656123834, -73.9257288102956 40.786774924446966, -73.92569919900704 40.78659391899359, -73.92566051985827 40.786413905434244, -73.92561282831247 40.78623514494096, -73.92555619286385 40.78605789779191, -73.92549069622063 40.785882424272316, -73.92541643649668 40.78570897837212, -73.92533351891036 40.785537814084066, -73.92524206526846 40.7853691800071, -73.92514221040825 40.785203322045575, -73.92503409864412 40.785040482506595, -73.92491788732218 40.7848808992021, -73.92479374682223 40.78472480364792, -73.92466185700009 40.78457242376313, -73.9245224119292 40.784423981171884, -73.92437561397405 40.78427969390126, -73.92422167616623 40.78413977007935, -73.92406082456579 40.784004415141176, -73.92389329234355 40.783873826422, -73.92198064399814 40.78233240553747, -73.92230006873265 40.781879138430845, -73.92652195410822 40.77986279541724, -73.92744764070149 40.78104794938131, -73.92747873236345 40.78104112153367, -73.9296266933996 40.783894083487986, -73.92968773691412 40.78400266902545, -73.92974168311999 40.78411340420203, -73.9297884031353 40.784226021500146, -73.92982778348224 40.784340248007304, -73.92985972845403 40.784455808119304, -73.92988416130211 40.78457242173957, -73.92990102304786 40.784689807880426, -73.92990294105637 40.78470786680578, -73.92990852212722 40.78477554019418, -73.92991174823595 40.784871103384965, -73.92991173290852 40.78496669702105, -73.92991170977022 40.78496729403953, -73.92976473630698 40.78494012377788, -73.92975295596156 40.784993477619494, -73.92974319097067 40.78503770700527, -73.92973784123672 40.78506193263883, -73.92981345906901 40.78507415529819, -73.92982486251269 40.785075998365194, -73.9298310185007 40.785076993565724, -73.92990664617741 40.785094527328056, -73.92990031624304 40.785176601492495, -73.9298822908859 40.785328168347604, -73.92985610215464 40.785479046747525, -73.9298222256758 40.785630914610636, -73.92981982456885 40.785639566067175, -73.92981703592257 40.785638224422776, -73.92981769919348 40.78563615007128, -73.92981351666214 40.78563653203832, -73.92980277060444 40.78563136381885, -73.92973199204917 40.78560543306902, -73.92972881344014 40.78560426858351, -73.92970793034081 40.78559726525521, -73.92957490060881 40.78555265604238, -73.92942440116761 40.78549552531127, -73.92927765502527 40.785433007184785, -73.92918062919816 40.7853869184679, -73.9291349961522 40.785365242360605, -73.92905898482199 40.785325183611846, -73.92899675020577 40.7852923859407, -73.92894767472107 40.7852637962886, -73.92887587155438 40.78505094006774, -73.92830559699014 40.78477543664835, -73.9281723660521 40.78471107228064, -73.9279992309095 40.78463308976218, -73.92782261041927 40.78455976219415, -73.92764272007676 40.78449117974613, -73.92745978248998 40.78442742538926, -73.92727402145263 40.78436857849453, -73.92708566313377 40.78431471033122, -73.92689493962816 40.78426588767108, -73.92664942425787 40.784580837914234, -73.92620352146125 40.785152838230964, -73.9259368858601 40.78549487038291, -73.92582302990645 40.785640920638556, -73.92574457798185 40.78574155519061, -73.9257643289337 40.78579775020299, -73.92579174494236 40.785852055492185, -73.92582652103064 40.78590386932148, -73.92586827162613 40.78595261601582, -73.92591653410328 40.78599775586995, -73.92595748742363 40.78602951585975, -73.92600166856043 40.786058669154656, -73.92661392535324 40.78635112117556, -73.92671092862355 40.786914619403696, -73.92698401950175 40.78745394987927, -73.92701551883553 40.78750707599166, -73.92705527496722 40.78755690068063, -73.92710269870095 40.78760268515409, -73.927149398817 40.78763852851728, -73.92720080091898 40.78767043784015, -73.92725633432869 40.787698059759826, -73.92731538210587 40.787721088611356, -73.927490063594 40.78777179240451, -73.92759347483226 40.787795443346766, -73.9278508572609 40.78785430753286, -73.92816435680366 40.78789819117811, -73.92610691497586 40.79024592389241, -73.92566841999272 40.790693582561374, -73.92563209641591 40.79068321957927, -73.92547474367686 40.79062320582083, -73.92536281369756 40.790621521495, -73.92447146681876 40.790345585680264, -73.92447498557233 40.79034051366374, -73.92481251144774 40.78996013584321)), ((-73.93038423352748 40.78512017583482, -73.93038144653174 40.785075342681665, -73.93084358543065 40.785276283286365, -73.93132552584436 40.785485830018445, -73.93199850790631 40.785778436399475, -73.93164170616973 40.786377566631266, -73.93150917597045 40.78660010448571, -73.93137818893018 40.78682004965573, -73.93132693392923 40.786906112452726, -73.93128156779461 40.786982288531796, -73.9302170874534 40.78652377910712, -73.93025727317487 40.78649321880462, -73.93055006034741 40.786270564748946, -73.9306064741089 40.786223295392965, -73.93065661270911 40.78617210235102, -73.93070000530871 40.786117466215764, -73.93073624738899 40.786059896435404, -73.93076499837825 40.78599993491389, -73.93078598877466 40.78593814160673, -73.93079902251459 40.78587509452237, -73.9308039781606 40.78581138612044, -73.93080080891211 40.78574761160533, -73.93078954379047 40.78568436802625, -73.93077028882774 40.785622248874986, -73.93073558567875 40.78554345845746, -73.93069205483475 40.78546724175626, -73.93064002271369 40.785394168975294, -73.93057987735862 40.78532478694132, -73.93051206962629 40.78525961460248, -73.93051105753325 40.78525879723735, -73.9304507036316 40.78521010853387, -73.93043710726677 40.7851991394232, -73.93038645328238 40.785164778116524, -73.93038417192459 40.78516323057735, -73.93038423352748 40.78512017583482)), ((-73.93037598304662 40.78538870941096, -73.93037962660658 40.78533271212461, -73.93038155964643 40.78533427115991, -73.93038909056962 40.785340346890244, -73.93044818025938 40.78539714027605, -73.93050059260439 40.785457601849565, -73.93052856469372 40.78549688598292, -73.93054593473431 40.78552127933126, -73.93058386829615 40.785587697060784, -73.93061410945332 40.7856563577977, -73.93063096724242 40.785711949597854, -73.93063995610174 40.78576858844515, -73.93064097360785 40.78582563222232, -73.93063400856562 40.78588243526329, -73.93061913863389 40.78593835375479, -73.93059653387263 40.7859927538433, -73.93056644844236 40.78604501973438, -73.9305292253383 40.78609455909918, -73.93048528572005 40.786140811172395, -73.93043512653911 40.78618325035363, -73.93011146494497 40.786429383084325, -73.93011061361314 40.78643003002857, -73.93007041481978 40.78646060017778, -73.93002298335351 40.78644016962895, -73.93005225616861 40.786405276762316, -73.93005337004705 40.786403948298315, -73.93006678876932 40.78638795363183, -73.93007537454604 40.78637566249515, -73.93010529184298 40.786332838389605, -73.93013522158523 40.7862747300735, -73.93015618150466 40.78621439477659, -73.9301664162802 40.78616043663141, -73.93016789711005 40.78615263018155, -73.93017021118423 40.78609025205016, -73.93016891509804 40.786078930161075, -73.93016309445537 40.78602808432402, -73.93016066453241 40.78601905712582, -73.93021514176235 40.7859182195578, -73.93026234552181 40.78581528479619, -73.93030213690794 40.78571055623471, -73.93033440071059 40.785604341782836, -73.93035903948854 40.78549695386198, -73.93037598304662 40.78538870941096)), ((-73.92929927265801 40.785680915002295, -73.92904605096244 40.78555542758259, -73.92900373321156 40.78542997967146, -73.92914590758 40.7855021532149, -73.92922695577147 40.785538596783304, -73.92931875633825 40.78557987627892, -73.92943523154842 40.78562788585142, -73.9295851751907 40.78568321522449, -73.92969567792566 40.78571942251325, -73.92973823922794 40.78573336842083, -73.92978152470067 40.78574929945911, -73.9297886481538 40.785751920656374, -73.92978040182214 40.78578163398139, -73.92973069950979 40.785930965359945, -73.9296731959503 40.78607866924992, -73.92960798256826 40.786224512465836, -73.9294873834045 40.78618755780674, -73.92929927265801 40.785680915002295)), ((-73.92999986592237 40.786252480296916, -73.930066855685 40.786164076420555, -73.93006657069398 40.78616695244907, -73.93005192752082 40.78621965261088, -73.93004518890194 40.78623408716015, -73.93002823249908 40.78627041479908, -73.92999590358255 40.78631834506409, -73.92995199243528 40.78635956494826, -73.92994965616666 40.78636175805011, -73.92991546242698 40.78639385634433, -73.9299074133145 40.786390389021484, -73.92989282378193 40.78638410455326, -73.92992706050738 40.78633818539671, -73.92999986592237 40.786252480296916)))",M107,84131,M107,M-11R,M-11R,M-11,M-11,East River and Hell Gate,111,8,25,10035,M,170.7,False,Wards Island Park,No,100003801,PARK,20100106000000.00000,19380420000000.00000,,DPR,False,Wards Island Park,Y,Wards Island Park,Flagship Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/M107/,Yes,68,29,12,{153DA4F1-72B1-4DD5-A707-F2B783FE3B7C} +"MULTIPOLYGON (((-73.94230650411055 40.80020263155645, -73.94201934369326 40.800081340597636, -73.94210294336213 40.799966237565165, -73.94239014489527 40.800087545448186, -73.94230650411055 40.80020263155645)))",M401,6630,M401,M-11,M-11,M-11,M-11,Park Ave. bet. E. 117 St. and E. 118 St.,111,8,,10035,M,0.104,False,Null,,100016517,PARK,,20150205000000.00000,1665 PARK AVENUE,DPR,False,Magic Garden,,Lydia's Magic Garden (El Girasol Magic Garden),,Garden,,No,68,30,13,{8CB531CE-7301-4527-971F-D362C102AE5A} +"MULTIPOLYGON (((-73.92969252236846 40.73090468938094, -73.92979022439746 40.73082388331379, -73.92989644825875 40.73089820667867, -73.92979874624952 40.73097901283517, -73.92969252236846 40.73090468938094)))",Q224,6179,Q224,Q-02,Q-02,Q-02,Q-02,"First Calvery, Greenpoint Ave., Gale St.",402,26,108,11101,Q,0.048,False,Calvary Park,Yes,100000344,PARK,20090423000000.00000,18630428000000.00000,,DPR,False,Calvary Monument,Y,Calvary Monument,Sitting Area/Triangle/Mall,Cemetery,http://www.nycgovparks.org/parks/Q224/,No,37,12,12,{B9210A8D-59BA-4B97-9F5C-9B326DF85640} +"MULTIPOLYGON (((-73.82316609851492 40.72171901355101, -73.82400561716065 40.72153853618144, -73.82422192993869 40.72208373361064, -73.8239342078262 40.72214840815433, -73.82392846719367 40.7221493467135, -73.82392288618743 40.7221498982966, -73.82391568335903 40.72215010520485, -73.82391115291342 40.72214994518914, -73.823906773338 40.722149576485364, -73.82389966263284 40.72214851471306, -73.82388823519064 40.722145700246195, -73.82329955054969 40.722004943480336, -73.82327744642878 40.72199966497676, -73.82316919776916 40.72172682574447, -73.82316609851492 40.72171901355101)))",Q212,5120,Q212,Q-08,Q-08,Q-08,Q-08,137 St. bet. 76 Ave. and 76 Rd.,408,24,107,11367,Q,0.876,False,Queens Valley Playground (PS 164),Yes,100000089,PARK,20090423000000.00000,19420916000000.00000,76-01 137 STREET,DPR/DOE,False,Queens Valley Playground,Y,Queens Valley Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q212/,No,27,15,6,{61016EE6-8988-472C-9480-EBF9B5F0DB1F} +"MULTIPOLYGON (((-73.98901995926714 40.74244069671793, -73.98902210225897 40.74244066540446, -73.98902412801323 40.74244078266342, -73.98902570266192 40.74244097732299, -73.9890273246529 40.74244127284379, -73.98902823390725 40.74244148545008, -73.98902935744503 40.74244179082897, -73.98903043480114 40.74244213762674, -73.98911886889165 40.742479743081034, -73.98912771135902 40.74248350353259, -73.98912930363771 40.74248450054404, -73.98913087693079 40.742485755999205, -73.98913238860379 40.74248734013358, -73.98913327993456 40.74248856400661, -73.9891338255929 40.74248949878427, -73.98913443985069 40.742490868513286, -73.98913484691789 40.74249221120753, -73.98913503500253 40.74249323420116, -73.98913512362282 40.7424943229224, -73.989135116386 40.74249513878102, -73.98913503810171 40.742496010464336, -73.98913486271529 40.74249698299528, -73.98907478390755 40.742940710195285, -73.98907447447442 40.74294323788872, -73.98907393193718 40.74294491278007, -73.98907324736588 40.74294632200837, -73.98907229520813 40.74294777443565, -73.98907152073087 40.74294871719287, -73.98907035076647 40.74294989134282, -73.98906934069375 40.74295073322088, -73.98906718680146 40.74295215581732, -73.98906573630408 40.742952901299304, -73.98906401941761 40.742953608034185, -73.98906144413715 40.74295436781742, -73.98906003633891 40.74295465044286, -73.98905786250809 40.74295491948792, -73.98905519735897 40.74295498587219, -73.98905349244615 40.74295487674883, -73.9890514371056 40.74295458388871, -73.98904952031496 40.742954143358645, -73.9890473951862 40.74295344526371, -73.9890455601508 40.74295263643401, -73.98875292605021 40.74282943059331, -73.98875107799313 40.74282865057385, -73.98874925717959 40.74282779941699, -73.98874758201539 40.742826829407406, -73.98874590688914 40.74282563517158, -73.98874488999907 40.74282476788407, -73.98874389799221 40.74282378443359, -73.98874299361202 40.742822728050626, -73.98874217804382 40.74282159063069, -73.98874124298298 40.74281992640255, -73.988740690291 40.742818592697795, -73.98874029033757 40.74281722658974, -73.9887400573117 40.74281593884211, -73.98873996411245 40.74281395681732, -73.98874008866463 40.74281256914837, -73.98874046546092 40.74281084381397, -73.98874090019218 40.74280959125139, -73.98874141896637 40.74280845396191, -73.98874752025772 40.74279991865328, -73.98900257482323 40.742449109396105, -73.98900558263938 40.74244589397297, -73.98900750563733 40.7424445019728, -73.98900913848901 40.742443554795365, -73.98901083998794 40.74244274720298, -73.98901220756213 40.742442212432344, -73.98901393625015 40.74244166058651, -73.98901510605934 40.74244137973989, -73.98901631848702 40.74244112591259, -73.98901790978405 40.74244087932543, -73.98901995926714 40.74244069671793)))",M101,4695,M101,M-05,M-05,M-05,M-05,"Broadway, 5 Ave., W. 24 St. to W. 25 St.",105,2,13,10010,M,0.269,False,Worth Square,Yes,100003991,PARK,20100106000000.00000,18471211000000.00000,952 BROADWAY,DPR,False,Worth Square,Y,Worth Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M101/,No,75,28,12,{A864D26F-C45E-461A-BF0B-52209E3FF834} +"MULTIPOLYGON (((-74.00405241030495 40.68137802781133, -74.00407763452769 40.68132577098204, -74.00432756028215 40.6813955922269, -74.00430234096056 40.681447850911326, -74.00405241030495 40.68137802781133)))",B560,11891,B560,B-06,B-06,B-06,B-06,Columbia St. bet. Rapelye St. and Woodhull St.,306,39,76,11231,B,0.032,False,,,100024466,PARK,20160222000000.00000,20160119000000.00000,,DPR,False,Pirates Cove Garden,,Pirate's Cove Garden,,Garden,,No,51,26,7,{3AAF9FAA-026D-487E-9B1E-3ED2E4D58B59} +"MULTIPOLYGON (((-73.85801220911559 40.66121072278668, -73.85806967055136 40.66120242248919, -73.85800788752117 40.66095991250626, -73.85794408008358 40.66096912886704, -73.85793007684612 40.660914049425784, -73.85772803092456 40.66011937566743, -73.8585387680125 40.6600059557957, -73.85883977372787 40.65996384275826, -73.85866398084487 40.660054831321865, -73.85865657617448 40.66002403892785, -73.85846100564244 40.66012549660934, -73.85846841136689 40.66015519758957, -73.85813863292167 40.66032627872978, -73.85813885443429 40.660327211038684, -73.85813863069255 40.660327326929554, -73.85814158538092 40.66033975591574, -73.8584129608929 40.66030178945328, -73.858501608361 40.66028938764298, -73.8585018626772 40.66028935193511, -73.85865334061573 40.660897535234824, -73.85865815041679 40.66091684553997, -73.85865806881894 40.66091684724076, -73.85870887030518 40.661120528377175, -73.85872960593227 40.66120373374935, -73.85876992973986 40.661191668602434, -73.85880718433737 40.66117482603064, -73.8588404014808 40.66115364520187, -73.85886871794214 40.661128675276764, -73.85889139918305 40.66110056463084, -73.85890785476147 40.66107004466407, -73.85888390626633 40.660969398660114, -73.85869462993445 40.660182291323274, -73.85879816351141 40.66016780666266, -73.85950144615259 40.66006941186899, -73.85950120469182 40.66006839759119, -73.85950144836029 40.660068363669154, -73.85950051665607 40.66006550248709, -73.85949065204558 40.66002401169453, -73.85947703961693 40.65999340538191, -73.8594757589642 40.65998947395834, -73.85946605233282 40.659990320293105, -73.85945587256128 40.659990108841214, -73.85944464615767 40.65998882809557, -73.85942242558993 40.65998211729953, -73.8593787765503 40.65997103350617, -73.85935277281769 40.659961115830875, -73.85933572496573 40.65995533347278, -73.85931652189274 40.65994763757782, -73.85930916676247 40.65994424083453, -73.85930305135487 40.659941189604915, -73.85927412958519 40.659927733810704, -73.85925826019447 40.6599165903002, -73.85924647084727 40.659906943937855, -73.85945585171012 40.65987764946953, -73.85984084478565 40.65982378468817, -73.86004892169673 40.65978392718123, -73.86024815067003 40.65972327640193, -73.86045306109712 40.659668330646085, -73.86149074470143 40.6592272208509, -73.86149020579164 40.65922707251708, -73.86171480620503 40.659131972525, -73.86196102431347 40.65902771816137, -73.8618917611518 40.65893514194507, -73.86338830349935 40.658290304207, -73.86240245724471 40.65696533366528, -73.86128828222678 40.65547354355531, -73.86136979337338 40.65547731774222, -73.86145145055623 40.65547796184632, -73.86199199741722 40.655471860514844, -73.86209281555549 40.65547379238051, -73.86219310904887 40.6554818524552, -73.86229223715594 40.6554959886436, -73.86238956512577 40.65551611013744, -73.86248447129009 40.65554208832435, -73.86257634942514 40.65557375769122, -73.86306004166747 40.655758564362024, -73.8631850594637 40.655810320023804, -73.863305337475 40.65586822585746, -73.86342035359921 40.655932030913746, -73.86352960942598 40.656001459958965, -73.8636326326052 40.6560762116764, -73.86372897683958 40.65615596226788, -73.86381822424728 40.65624036635694, -73.86389998890787 40.65632905789307, -73.86397391685485 40.656421653753384, -73.86687446280817 40.66033925564179, -73.86616523368335 40.66044268285288, -73.86560380736871 40.66052455169059, -73.86519291027626 40.6605844685843, -73.86366517839599 40.660807228273, -73.86346747486056 40.660836053480296, -73.8633571656796 40.660852137215194, -73.86293530517479 40.6609136440488, -73.8628618814817 40.660924347437486, -73.86275751125146 40.66093956417576, -73.86274653512089 40.66090849493262, -73.86265254963973 40.6609215041907, -73.86245656467032 40.660948631337085, -73.86214620128351 40.660991590009644, -73.8608182569438 40.66117538584888, -73.86081048722092 40.66114332342754, -73.86053099497525 40.66118419797766, -73.86037936716205 40.6612063729841, -73.85932107002657 40.661361136959, -73.85808953764798 40.66154122169396, -73.85808667854904 40.66152997610613, -73.85807601615036 40.66148804206019, -73.85804686233561 40.66137337650983, -73.85801693931134 40.66125568966516, -73.85800574341675 40.66121165674686, -73.85801220911559 40.66121072278668)), ((-73.85841762782009 40.6634554794094, -73.85833381633444 40.663123791338826, -73.85813468937954 40.66233573911061, -73.85812323347592 40.6622904010392, -73.85809230537654 40.66216796816138, -73.85813774838816 40.66206061049176, -73.8581971812411 40.66192019764523, -73.8582062605312 40.661899742776725, -73.85823789968894 40.66189518192942, -73.85831105642133 40.661884638752966, -73.85886232943113 40.66180518391429, -73.8591111716247 40.6627899778229, -73.85926288770585 40.6633903817519, -73.85913129194584 40.663352621377804, -73.85841762782009 40.6634554794094)), ((-73.8590828245442 40.661773403923576, -73.8598077864204 40.661668911192855, -73.86019453387199 40.66319937172101, -73.85946955715079 40.66330386687189, -73.8590828245442 40.661773403923576)))",B165,6008,B165,B-05,B-05,B-05,B-05,"Fountain Ave., 75 St. bet. Belt Pkwy., Flatlands Ave.,","305, 410","32,42",75,"11208, 11414",B,54.78,False,Spring Creek Park,No,100004114,PARK,20100106000000.00000,19380512000000.00000,,DPR,True,Spring Creek Park,N,Spring Creek Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/B165/,Yes,60,19,8,{81433AD1-3DCE-411A-B1FD-2BFA2F42FA51} +"MULTIPOLYGON (((-74.0038770189828 40.74660718418452, -74.00404916586088 40.746370499959816, -74.00408847819708 40.7463869958489, -74.00415167565129 40.74641351440322, -74.00421507326415 40.74644011666248, -74.00426879349158 40.746462657061336, -74.00432251375523 40.74648519653454, -74.00440809871569 40.74652110728784, -74.00446725161792 40.74654592836859, -74.00452590014706 40.74657053601866, -74.00452867883848 40.74656671686177, -74.00459608722178 40.74659500089892, -74.00465983922456 40.7466217505816, -74.0047290416014 40.74665078819201, -74.0045541200793 40.74689129168025, -74.0038770189828 40.74660718418452)))",M257,4949,M257,M-04,M-04,M-04,M-04,W. 22 St. and 10 Ave.,104,3,10,10011,M,0.489,False,Clement Clarke Moore Park,Yes,100003727,PLGD,20100106000000.00000,19650204000000.00000,480 WEST 22 STREET,DPR,True,Clement Clarke Moore Park,Y,Clement Clarke Moore Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M257/,No,75,27,10,{4E069686-FF06-4B23-88A8-DF0C72F613C6} +"MULTIPOLYGON (((-73.7360819268953 40.7594105356221, -73.73616722868458 40.7593649266307, -73.73617176408558 40.759369208131005, -73.73602457265002 40.759449900529525, -73.7358328034681 40.75955475923974, -73.73564719346989 40.75964968564445, -73.73563575121001 40.759655286666735, -73.73548258967708 40.7597303193823, -73.735447474323 40.7597473583202, -73.73532573684301 40.759806428526595, -73.73512778330247 40.75989616221695, -73.73489333587945 40.76000243768544, -73.73488992902676 40.7599975905112, -73.73512444169151 40.759891285482794, -73.73532196810696 40.75980174622721, -73.73544581885947 40.75974165159625, -73.73547828697112 40.75972589790998, -73.73564322300814 40.75964510014754, -73.73582533485457 40.759547729851086, -73.73601868154049 40.7594443516025, -73.7360819268953 40.7594105356221)))",Q357F,6262,Q357F,Q-11,Q-11,Q-11,Q-11,Horace Harding Exwy. Sr. Rd. N. bet. Overbrook St. and 248 St.,411,19,111,11362,Q,0.02,False,Strip,No,100000055,PARK,,19540830000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q357F/,No,26,11,3,{DEF63C8F-F699-4ADD-87F8-FA50ED62032D} +"MULTIPOLYGON (((-73.91761203826853 40.6953723016629, -73.91831782689769 40.694653819818036, -73.9184620138196 40.694736222654875, -73.91845121620064 40.6947472147717, -73.91873936531327 40.69491189189534, -73.9187501617283 40.69490089975087, -73.918894352084 40.69498330294565, -73.91842955151638 40.69545646780169, -73.91814167274464 40.6952919458959, -73.91790068694456 40.695537264892025, -73.91761203826853 40.6953723016629)))",B139,5811,B139,B-04,B-04,B-04,B-04,Linden St. bet. Central Ave. and Wilson Ave.,304,37,83,11221,B,1.24,False,Heckscher Playground,Yes,100004623,PARK,20100106000000.00000,19350809000000.00000,,DPR,Part,Heckscher Playground,Y,Heckscher Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B139/,No,53,18,7,{A1FEBF47-F6C3-49FF-AEA5-4243451BB50E} +"MULTIPOLYGON (((-73.904645369763 40.67198442282284, -73.90535615584386 40.67187728914754, -73.90549581027074 40.672424711288976, -73.90513881257989 40.67247836648342, -73.90478561523992 40.67253145098742, -73.904645369763 40.67198442282284)))",B363,5203,B363,B-16,B-16,B-16,B-16,Glenmore Ave. between Powell St. and Sackman St.,316,37,73,11212,B,0.918,False,Houston Playground (PS 332),Yes,100004840,PARK,20100106000000.00000,19660304000000.00000,145 GLENMORE AVENUE,DPR/DOE,False,Houston Playground,Y,Houston Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B363/,No,55,19,8,{28BB5D18-96CA-4A9B-BEF5-8195D15D2869} +"MULTIPOLYGON (((-73.88234391814649 40.84707387749117, -73.88258891934521 40.84686919023179, -73.8827266880881 40.84696057192451, -73.88247978327146 40.84716685050582, -73.88234391814649 40.84707387749117)))",X346,4752,X346,X-06,X-06,X-06,X-06,Hornaday Pl bet. Crotona Pkwy and Mohegan Av,206,15,48,10460,X,0.114,False,Volky Garden & Flowers,No,100005124,PARK,20100106000000.00000,20021120000000.00000,851 HORNADAY PLACE,DPR,False,Volky Garden & Flowers,Y,Volky Garden & Flowers,Greenthumb,Garden,http://www.nycgovparks.org/parks/X346/,No,87,33,15,{3B0E6113-1DE2-406E-BC5F-3521986A7C68} +"MULTIPOLYGON (((-73.90830549202809 40.820065087327414, -73.90855407790063 40.81947957912417, -73.90937542645742 40.81967517073608, -73.90913324526268 40.8202652908735, -73.90830549202809 40.820065087327414)))",X235,5614,X235,X-01,X-01,X-01,X-01,E 158 st bet. Eagle Av and Caildwell Av,201,17,40,10455,X,1.186,False,Grove Hill Playground,Yes,100004967,PARK,20100106000000.00000,19630708000000.00000,,DPR/DOE,False,Grove Hill Playground,Y,Grove Hill Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X235/,No,79,32,15,{C7422D70-6925-42F6-B60F-CB9A4B103CE3} +"MULTIPOLYGON (((-73.83222939679193 40.583694326502375, -73.83360343615105 40.583327319109095, -73.83361983361982 40.583356899897915, -73.83409409440121 40.58320437212362, -73.8347275489814 40.583176020705636, -73.8357109131348 40.583132002240475, -73.83610408029502 40.58311440106881, -73.83623611170418 40.58310849007707, -73.83663920604087 40.58309044195591, -73.83709690110986 40.58306994837877, -73.83744556061924 40.5830543345022, -73.838028538845 40.583028225822765, -73.83837030754289 40.58301291911246, -73.83865642037493 40.583000103341824, -73.83894395057159 40.58351866627235, -73.8361421610328 40.583678403934194, -73.83147871358435 40.584922271116405, -73.83110547680351 40.58425173407768, -73.83105890356931 40.58416806263846, -73.83121191253736 40.58412668955271, -73.83115249707643 40.584012872209335, -73.83149154958019 40.583933073730385, -73.83224700277461 40.58372738798086, -73.83222939679193 40.583694326502375)))",Q496,6065,Q496,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. Beach 116 St. and Beach 108 St.,414,32,100,11694,Q,13.826,False,Park,Yes,100008317,PARK,20110712000000.00000,20070514000000.00000,,DPR,False,Park at Beach 108 Street,N,Park at Beach 108 Street,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/Q496/,Yes,23,15,5,{125016CB-DF58-4CDD-81BC-F66C304AF2CC} +"MULTIPOLYGON (((-73.94735171527196 40.806769641291645, -73.94729167958153 40.80674436928773, -73.94747340976645 40.806496610766324, -73.94752009472201 40.806516262892906, -73.94753344530241 40.80652188267662, -73.94758060655117 40.80654173400551, -73.94759664171269 40.806548485128, -73.94764645084676 40.806569450649405, -73.94766046844514 40.806575351676784, -73.94747873874151 40.806823110489916, -73.94741491066044 40.80679624294054, -73.94735171527196 40.806769641291645)))",M349,5006,M349,M-10,M-10,M-10,M-10,W. 123 St. bet. Lenox Ave. and Adam C Powell Blvd.,110,9,28,10027,M,0.14,False,New 123rd St Block Association Garden,No,100005032,PARK,20100106000000.00000,20021120000000.00000,114 WEST 123 STREET,DPR,False,New 123rd St Block Association Garden,N,New 123rd St Block Association Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M349/,No,70,30,13,{A215B9FA-4DBC-4D71-8FF2-E58474A58CF3} +"MULTIPOLYGON (((-73.90282172309531 40.833270744474305, -73.9031478842024 40.83278693712369, -73.90384209381328 40.833020055511795, -73.90351880158632 40.83350509637877, -73.90282172309531 40.833270744474305)))",X021,5640,X021,X-03,X-03,X-03,X-03,Fulton Av bet. E 169 St and E 170 St,203,16,42,10456,X,0.94,False,Drew Playground,Yes,100005012,PARK,20100106000000.00000,18641108000000.00000,,DPR,False,Drew Playground,Y,Drew Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X021/,No,79,33,15,{E848978D-935A-4740-B50B-E3429FD6D481} +"MULTIPOLYGON (((-74.18620382694412 40.601693747454405, -74.18654929583543 40.59952795496871, -74.18573833359444 40.59888323142907, -74.18570376483109 40.598921817131185, -74.18568737022781 40.59893204026003, -74.18566852502425 40.59893577816698, -74.18565088646217 40.59893158860644, -74.18562359359355 40.59891816625195, -74.18558849566956 40.59889859420734, -74.18556588618101 40.59887460742833, -74.18555146263179 40.59882717218137, -74.18552260902347 40.59878266081748, -74.18549633004417 40.59875525525408, -74.18543999835133 40.598713512305146, -74.18539865859881 40.59869417630584, -74.18531590565192 40.598620503699, -74.1852785148817 40.59858945357063, -74.18526690472166 40.59857571227522, -74.18523895664174 40.598532146731394, -74.185206471139 40.59851512424614, -74.18504770129132 40.598419261635875, -74.18484722193242 40.598298214297074, -74.18513513523654 40.59810759969501, -74.18622234988469 40.597387785533215, -74.18712504694484 40.59679011789191, -74.18740478956599 40.596604898697805, -74.18760207574583 40.59647427358498, -74.1876792114831 40.59650732386384, -74.18903032703723 40.59708622598597, -74.18896150966613 40.59727621117658, -74.1889077797535 40.59743451628113, -74.18886058563626 40.59758047433072, -74.18882962139554 40.59768128400768, -74.18878075933418 40.597849165329706, -74.18935215111661 40.597958172117856, -74.18968170955198 40.598021041774274, -74.18968555004328 40.59802177476594, -74.18975494366414 40.59803501318291, -74.18974877449914 40.59806916315563, -74.18974895090508 40.59806929524146, -74.18974817432301 40.59807248257958, -74.18970789478301 40.59823782415032, -74.18961192631585 40.59850919170276, -74.18950868849804 40.598721296831286, -74.18941485140031 40.598878276971405, -74.18922835426453 40.599131548731876, -74.18893787813256 40.59943389775518, -74.18874335047613 40.59959631900016, -74.18854442052833 40.599739328226526, -74.18844525802862 40.599809489531516, -74.18843876242495 40.59981408565258, -74.18817378132904 40.60000156864987, -74.18795765720954 40.60015448375496, -74.18769954407685 40.60033710509203, -74.1871925189692 40.60069583193994, -74.18698971301889 40.600843437435906, -74.18685535798616 40.60094295226656, -74.18681360345498 40.60097996415392, -74.18671500417315 40.60106736537322, -74.18660272839165 40.601182397885694, -74.18652481244577 40.60126300331789, -74.18644000286535 40.601358573984555, -74.18636717823046 40.601453414639295, -74.18636875590036 40.60144721017084, -74.1863097074159 40.601527782154804, -74.18625470520914 40.60161000001183, -74.18620382694412 40.601693747454405)), ((-74.18933547431665 40.59575876899343, -74.18908315540196 40.59562644258607, -74.18905250894856 40.595658800233785, -74.18877996764155 40.5955170437138, -74.18921373930304 40.594939383886555, -74.18957176085007 40.59512469726778, -74.18964682975869 40.5951635544217, -74.18989252258876 40.594886988341436, -74.19019142277409 40.59506337601854, -74.19058591488353 40.595296171786096, -74.19082727666547 40.59508521592387, -74.19127270325144 40.594779795407234, -74.19127144161448 40.594782287458465, -74.19119407986584 40.59493510919502, -74.19113004293541 40.59504852155945, -74.19104027986108 40.59519352204281, -74.19091587365712 40.59536358938859, -74.19039064020784 40.59594338295631, -74.19025577469063 40.59607078652831, -74.19012113978413 40.59622169055186, -74.18994065128653 40.59612342748384, -74.18963245093751 40.59592505019108, -74.18954602639727 40.59587558016495, -74.18933547431665 40.59575876899343)), ((-74.18917976932676 40.597296119290576, -74.18958423563375 40.59617184830535, -74.18974289381173 40.59627913161332, -74.18982730348903 40.596339373293326, -74.18991418726684 40.59640381447178, -74.19002890515921 40.59649292896396, -74.19005744889762 40.59652125279071, -74.19001935704136 40.59660537345937, -74.18997398100845 40.596717027091195, -74.18993390122324 40.59683000472676, -74.18989048141852 40.596976185707376, -74.18985793832466 40.59711439616705, -74.18983910161387 40.5972164306118, -74.18982501037316 40.59730968340246, -74.18980743422885 40.597431707404084, -74.18978191644892 40.59762183768428, -74.18976093325597 40.59779260099003, -74.1897474742854 40.597911786028064, -74.18900742533648 40.59777515956599, -74.18915053306912 40.59737738482932, -74.18917976932676 40.597296119290576)), ((-74.22931028103953 40.52518861259176, -74.22770484082803 40.52512562562601, -74.22766563325999 40.52510787647664, -74.22762612206245 40.52508898244034, -74.22758957934919 40.52507056699095, -74.22755439189815 40.525051939920225, -74.22751668869036 40.52503095843324, -74.22748082764159 40.525009966079104, -74.2274394032561 40.52498438842553, -74.22739632837192 40.52495617096756, -74.22735557679759 40.52492783992775, -74.22731662134849 40.524899146004834, -74.22727874877675 40.52486960882864, -74.2272426940445 40.52483984831175, -74.2263277871224 40.524036508894966, -74.22604313863407 40.52378215099712, -74.22595032772293 40.523699217391126, -74.22593236459888 40.52368046946768, -74.2259115606356 40.52365847531414, -74.22589002838833 40.523635381240254, -74.22587292850147 40.52361679640601, -74.22585353935771 40.52359545414416, -74.22583565366239 40.52357550654568, -74.22581654455202 40.52355391157789, -74.22579853620704 40.523533282512744, -74.22577901872461 40.523510614908744, -74.22575512327413 40.52348240863927, -74.22573133391502 40.523453812226144, -74.22571177688279 40.523429902855895, -74.22569394647587 40.52340778034365, -74.22567422582905 40.523382938338365, -74.22565765895901 40.523361755292015, -74.2256360072234 40.52333362383359, -74.22561479826594 40.52330555904069, -74.22559508724838 40.523279006894, -74.22557655315222 40.52325360871324, -74.22555387822744 40.523221944664854, -74.22553279124216 40.523191885840895, -74.22551229280157 40.523162076204436, -74.22548866693715 40.523126958672954, -74.22546651860492 40.52309325116796, -74.2254464841211 40.52306207810464, -74.2254299487107 40.52303618158295, -74.22541571395476 40.52301327750898, -74.22539504102794 40.522978935820376, -74.22537384579596 40.522942278086546, -74.22535049923617 40.52290000345619, -74.22533201660626 40.522864958643936, -74.22530971559237 40.522820564803766, -74.2252837392293 40.52276548886647, -74.22526016898891 40.522711781511646, -74.22523943244332 40.52266095929695, -74.22521923103177 40.52260749116814, -74.22520300903317 40.522561073592534, -74.22518728561133 40.52251237038869, -74.2251716001212 40.52245915634701, -74.2251593562359 40.52241344057996, -74.22514933506521 40.52237246174898, -74.22513841774665 40.52232293052811, -74.22512971712169 40.52227845234222, -74.22512307092207 40.52224025313314, -74.22511632777675 40.522196041266376, -74.2251117091686 40.52216105837995, -74.22510787071064 40.52212751211182, -74.22510399044728 40.522086806701665, -74.22510067444038 40.52204159842885, -74.22509769984916 40.52197547374646, -74.22509692611352 40.521916014082635, -74.22509773697192 40.521863492606535, -74.2250999487712 40.52181103142014, -74.2251034151757 40.52176038144325, -74.22510883251026 40.52170385977805, -74.22511388084453 40.52166216518367, -74.22511998074249 40.52161945903101, -74.22512878178622 40.52156693899304, -74.22513617922468 40.521528286287435, -74.22514449974783 40.521489017608324, -74.22515359383553 40.52144993742327, -74.2251657349453 40.521402484423724, -74.22517560816041 40.52136700033102, -74.22518551334176 40.52133365223493, -74.2251957728529 40.52130110041299, -74.22532437666705 40.521042718830884, -74.2255097456578 40.52067028225452, -74.2256398414725 40.52040890040239, -74.22564838499235 40.520407157288915, -74.22551647719978 40.52067219616666, -74.22533112235315 40.52104461831767, -74.22520927119642 40.52128944176708, -74.22520293235223 40.52130217781087, -74.22519302636803 40.521333882440445, -74.22518197804536 40.52137153281686, -74.22517327912158 40.52140320175691, -74.22516133631751 40.52145031937059, -74.2251523109261 40.52148947326509, -74.22514387803787 40.52152971473899, -74.22513687970608 40.52156668717141, -74.22512795230148 40.52162057896703, -74.22512178342717 40.52166452708812, -74.22511697195354 40.52170507033932, -74.2251115909759 40.52176257441323, -74.22510841495145 40.52181009357411, -74.22510619449301 40.52186418654035, -74.22510546334333 40.52191339300452, -74.22510627870761 40.521975049883025, -74.2251092760261 40.52204091246608, -74.22511259860363 40.52208596763543, -74.22511620547009 40.522123980992916, -74.2251203084098 40.52216002211429, -74.22512512407687 40.522196401337936, -74.2251316907136 40.52223935911029, -74.22513837183755 40.52227776537258, -74.22514713970455 40.52232258562783, -74.22515804383039 40.52237205203553, -74.2251677708842 40.522411895872736, -74.22518029232796 40.52245873225585, -74.22519581693778 40.52251147833572, -74.22521129272924 40.52255953454228, -74.22522717337617 40.522605158517926, -74.22524723632412 40.52265850804691, -74.2252683079507 40.52271036071096, -74.22529108339694 40.52276248829113, -74.22531752895559 40.52281882134794, -74.22533868425063 40.522861156119724, -74.22535824476111 40.52289843753549, -74.2253816464803 40.52294097050846, -74.22540135497813 40.52297522944336, -74.22542130123216 40.52300859818309, -74.22543560301507 40.5230317812894, -74.22544529620083 40.523047159535665, -74.2254596641623 40.52307001561616, -74.22547199871367 40.5230893357006, -74.22549327273543 40.523122033625455, -74.22551671109801 40.52315719024727, -74.22553908283507 40.52318994364098, -74.22555849123948 40.52321775803625, -74.22558082760037 40.52324910846363, -74.2256005962101 40.52327629537411, -74.22561918598096 40.523301401669436, -74.22564158285029 40.52333108328165, -74.22566191421662 40.52335751262909, -74.2256773433364 40.523377256161154, -74.22568797538 40.52339070810578, -74.22569963210725 40.52340531431675, -74.22571685797665 40.5234266401462, -74.22573633421942 40.52345038847929, -74.22576011849715 40.52347887773818, -74.22577286241523 40.52349391946167, -74.22578371971088 40.52350661811025, -74.22580316336202 40.5235290886423, -74.22582168070643 40.52355017867795, -74.22583979075739 40.52357051936937, -74.2258580586167 40.52359076068903, -74.22587614434786 40.52361053318738, -74.22589532121332 40.52363121487325, -74.22591059831105 40.523647489826764, -74.22592493567734 40.523662604942515, -74.22593884145434 40.52367711664955, -74.22595512703639 40.52369393533405, -74.22604215267803 40.52377186166809, -74.22633796396221 40.52403674097824, -74.22641292537287 40.52403845274765, -74.22641296525993 40.52404012495537, -74.22641449373877 40.524103954292976, -74.22689333476723 40.52452450245625, -74.22724774995966 40.52483576520061, -74.22728275983847 40.5248647001965, -74.22732240972593 40.52489564138203, -74.22736012291955 40.524923415619526, -74.22740171082215 40.52495232944571, -74.22744495828783 40.52498063030916, -74.22748516928517 40.525005449416476, -74.22752218201838 40.52502710137696, -74.22755896409754 40.52504755067314, -74.22759352257891 40.52506584219089, -74.22763106890241 40.52508475274209, -74.22766933536231 40.5251030404863, -74.22770710928975 40.52512015940481, -74.22816389779548 40.525138082509116, -74.22846603274459 40.52514993773651, -74.22877363841471 40.52516200549862, -74.22905988694387 40.52517323523579, -74.22930416226558 40.525182817288666, -74.22940621008465 40.52467250839535, -74.22941343101286 40.524672791139885, -74.22940128018296 40.52473355625392, -74.22931028103953 40.52518861259176)), ((-74.1910443848243 40.59894632841136, -74.1915142022957 40.59762656969966, -74.1915209471034 40.59763115743847, -74.19146525531806 40.597787602926516, -74.19105967250404 40.598926920106784, -74.19040774911534 40.600563168936425, -74.19034732881023 40.600742825474136, -74.19032918698669 40.60080067548623, -74.1902852045527 40.60095027227644, -74.19023172123735 40.60115525621202, -74.19018480031063 40.60136592147243, -74.19002432511064 40.602251568838284, -74.19001667549057 40.60225174808314, -74.19007794690366 40.601905451937924, -74.19011351071339 40.60169426970932, -74.19015065595103 40.601468033485915, -74.190169868109 40.60136565351159, -74.19019869876867 40.60122643697806, -74.19022701494256 40.601115683257746, -74.19026709988859 40.60097103502272, -74.19030673553517 40.600839176761774, -74.19034661304117 40.60071554257341, -74.19039246205293 40.600582577149204, -74.1910443848243 40.59894632841136)), ((-74.22822998051964 40.526343427323724, -74.23020942786347 40.52622728217571, -74.23020897175014 40.52623328242888, -74.22939163278086 40.52628139230242, -74.22847149422606 40.52633554634321, -74.22823049179775 40.52634972912432, -74.22816980100066 40.52635336724447, -74.22813362581776 40.52635643880998, -74.22808889553544 40.52636117803604, -74.22805241179206 40.526365822516304, -74.2280108314377 40.526371982796064, -74.22797598641145 40.52637786582947, -74.22793879910647 40.52638488096806, -74.22789365802512 40.52639444417809, -74.22784840772309 40.526405206193985, -74.22777457329946 40.52642539493694, -74.2277359227508 40.526437314503596, -74.22768679291826 40.526453870063975, -74.22761577098395 40.52648073056398, -74.22757753662789 40.52649670974646, -74.22754037009193 40.526513324375536, -74.22750527387454 40.52653004295333, -74.22747484282317 40.52654538887214, -74.22745726524622 40.526554629830585, -74.22743653764316 40.526565893316274, -74.22741414359862 40.52657852620506, -74.22739440944937 40.526590072282815, -74.22737279591307 40.52660318269994, -74.22735544225091 40.526614074773114, -74.22733790603655 40.52662542467494, -74.22730700899676 40.526646744694204, -74.22724924493025 40.526688646399165, -74.22719599042095 40.52673201421979, -74.22714435708087 40.52677876840647, -74.22711308671727 40.52680973650052, -74.227092658034 40.526831214055605, -74.22704785714302 40.5268823357654, -74.22702350205843 40.52691285430024, -74.22699280426976 40.52695468883689, -74.22697036504482 40.52698813930295, -74.22695246778083 40.52701693944838, -74.22692774054266 40.52706057583272, -74.2269095703633 40.5270962520649, -74.22689385939302 40.52713012327208, -74.22685208391255 40.527272995827275, -74.22861276420252 40.5273801782996, -74.22861130138767 40.527385871668265, -74.22844952727249 40.527376024919214, -74.22684214090486 40.5272781728162, -74.22688582965942 40.52712875592672, -74.2269023812939 40.527093260302195, -74.2269209715186 40.52705720861998, -74.22694640208368 40.52701286212875, -74.22696316278906 40.52698612734786, -74.22698573295236 40.526952658613666, -74.22701652648036 40.52691086621453, -74.22704222177008 40.526878824033695, -74.22708432613727 40.52683086672306, -74.22710740901255 40.52680661658673, -74.22713984545062 40.526774630388, -74.22719106055659 40.526728435360305, -74.22724668833857 40.526683327520665, -74.22731875140164 40.52663144393355, -74.2273352068318 40.52662050861818, -74.22735117578443 40.526610193829256, -74.22736955522217 40.526598673855915, -74.22739084966193 40.52658577659684, -74.22741078996167 40.52657412024651, -74.22743340195802 40.52656137706176, -74.22745373495397 40.52655033228703, -74.22747198284836 40.52654074239586, -74.22750192615314 40.52652564238888, -74.22753660283635 40.52650910024725, -74.22757335797067 40.52649262421617, -74.22761307469214 40.52647598110612, -74.22768452074003 40.52644890453962, -74.22773354901607 40.526432331171065, -74.22777232435331 40.52642032220506, -74.22784681751553 40.52639985209087, -74.22789215484049 40.526389000750285, -74.227938937309 40.526379034445924, -74.22797501700052 40.526372180000386, -74.22800898544465 40.52636637615398, -74.22805114934695 40.526360033708926, -74.22808836418652 40.52635521577498, -74.22813248302081 40.52635043904138, -74.22816852337567 40.526347283094275, -74.22822998051964 40.526343427323724)), ((-74.19408355063686 40.59044897593422, -74.19410121307334 40.59018601882081, -74.19410806817362 40.59018770202956, -74.19410608758795 40.590217510062246, -74.19409065157215 40.59044988157544, -74.1940233005552 40.59077417812231, -74.1939658632689 40.590996739954555, -74.19394451777457 40.59109408134022, -74.19388576963603 40.59136130778655, -74.19379944046094 40.59175567183667, -74.19351627011011 40.59240077289263, -74.19345010468635 40.59255447606442, -74.19294383793047 40.59372673113326, -74.19282602632498 40.59405343673165, -74.19281948354332 40.594051215308944, -74.19293700245134 40.59372500369636, -74.19344326814065 40.59255275136102, -74.19350943827234 40.59239903737894, -74.19379261102613 40.59175393003209, -74.19387865110426 40.59136047690589, -74.19393773634118 40.59109176222653, -74.193958761088 40.590995831606044, -74.19401620190962 40.59077325896514, -74.19408355063686 40.59044897593422)), ((-74.2313396969926 40.52619203974227, -74.23099573518006 40.52618369375753, -74.23045590633777 40.52621305362694, -74.2304562814151 40.52620751640845, -74.23099528898739 40.52617820141523, -74.231339819647 40.5261865606634, -74.23135625552352 40.5261872452635, -74.23136766882921 40.52618796519906, -74.23137828481211 40.52618881641707, -74.23139609714373 40.52619064101116, -74.2314110054485 40.5261925543055, -74.23142866159714 40.52619528424327, -74.23144741309139 40.526198745002254, -74.2314700902982 40.52620372784514, -74.23149382554921 40.52620991526162, -74.23151575204736 40.5262165601888, -74.23153677550316 40.52622381839388, -74.23155788490182 40.52623203728849, -74.2315824068338 40.52624285092961, -74.23161774701121 40.52626111264479, -74.23164488974417 40.526277622247605, -74.23166790021048 40.52629362147741, -74.23168950632595 40.526310645639846, -74.23170406995692 40.52632342269943, -74.2317168650718 40.526335668411484, -74.23173017942722 40.52634960787357, -74.2317413728036 40.52636245116677, -74.23175433001872 40.526378898425826, -74.23177077772482 40.526402039488744, -74.23182375461286 40.526476913444554, -74.23189504174468 40.526577665875415, -74.2319077688028 40.52659680346861, -74.2319280192129 40.526625429166266, -74.23194997772656 40.526653831679425, -74.23197339045406 40.52668162519232, -74.23199556855921 40.526705960454294, -74.23201921521459 40.52673007751688, -74.23204804401566 40.52675727472251, -74.23207999253795 40.52678496991141, -74.2321189631285 40.5268157577255, -74.23215465527642 40.526841447045285, -74.23219246432906 40.526866363919176, -74.2322340289172 40.5268930508318, -74.23227660792632 40.52691856138416, -74.23232259020864 40.52694363638057, -74.23236060052918 40.52696259217613, -74.2324122713482 40.52698600224717, -74.23246602155976 40.52700769167178, -74.23253198818291 40.527030896234784, -74.23259486073337 40.52704976646883, -74.23267115194199 40.52706869592327, -74.23274327465991 40.52708282043944, -74.23279756031546 40.52709114113897, -74.23284116322976 40.52709642887929, -74.23288016440489 40.52709993658291, -74.23433290576921 40.527207149514595, -74.23427853290995 40.527753845090025, -74.23427135953843 40.52775342657362, -74.2342783021327 40.52768362574367, -74.2343251989437 40.52721209475381, -74.23388695169403 40.527179754366664, -74.23286883700099 40.52710461440693, -74.23283552626499 40.5271013617153, -74.23280456714933 40.52709764317306, -74.23274237200724 40.52708829209575, -74.23265947916602 40.527071800298124, -74.23258841464026 40.5270538184115, -74.23250563607037 40.5270280841202, -74.23243134259789 40.527000225346775, -74.23239209502069 40.52698352790983, -74.23234737249562 40.52696269459483, -74.232305065417 40.52694107741509, -74.23226403204538 40.52691818519226, -74.23223481172093 40.52690062721786, -74.23220686969455 40.52688277938089, -74.23217667903887 40.526863443904915, -74.23214885008329 40.526844842981134, -74.23212014349922 40.52682431578793, -74.23210069880291 40.5268095701831, -74.23207909398441 40.52679231646011, -74.2320501913803 40.52676766431247, -74.23202315379825 40.52674277515052, -74.23199827188479 40.526718084245246, -74.23197382145221 40.52669189668036, -74.23194912385308 40.52666317461449, -74.23192765346704 40.52663600214105, -74.23190590876406 40.52660595302071, -74.23188490876726 40.52657488659275, -74.23181536383179 40.52647659629185, -74.23177169554901 40.52641487740915, -74.23176477428986 40.52640509630527, -74.23175758737013 40.52639493751424, -74.23174692625899 40.526380059748725, -74.23173903372762 40.52636993299904, -74.23173083428132 40.52636012385532, -74.2317236332844 40.526352029108004, -74.23171501844597 40.526342905205325, -74.2317020955382 40.52633022209289, -74.23169258776203 40.52632156196329, -74.23168097384871 40.5263116615495, -74.23167111948189 40.52630378828133, -74.2316590399814 40.526294731702095, -74.23163911069008 40.52628106223115, -74.23162126520319 40.52627001900386, -74.23160226332436 40.526259358131036, -74.23157834274998 40.5262473761926, -74.23155942053468 40.52623892685659, -74.23154480979318 40.526232977701056, -74.23153089311292 40.52622774846934, -74.23151373347181 40.52622185938313, -74.23150177622334 40.526218104868384, -74.23148650055694 40.5262137113632, -74.23146901057639 40.52620921245606, -74.23145487894827 40.52620597832511, -74.23143628703964 40.526202254290446, -74.23141978595525 40.52619943917649, -74.23140516489738 40.526197321784196, -74.23139002912478 40.526195495398596, -74.2313711147382 40.52619372885768, -74.23135695796945 40.52619277581084, -74.2313396969926 40.52619203974227)), ((-74.19190529581446 40.59651914271177, -74.1927565095056 40.59418823227274, -74.19276307385647 40.59419055542214, -74.19275019504536 40.59422582357203, -74.1926212948231 40.594578805046375, -74.19191214915455 40.59652082875601, -74.19190529581446 40.59651914271177)), ((-74.22423327401901 40.52074451654805, -74.22424022500435 40.520742556020416, -74.22409249020667 40.52114388355602, -74.22355470510121 40.52260476270166, -74.22354659260913 40.52260528369864, -74.22357607458997 40.52252519967316, -74.2239501469052 40.521509045836936, -74.22408505848612 40.52114255447159, -74.22423327401901 40.52074451654805)), ((-74.1915678040143 40.5972152629813, -74.19187141210635 40.59661192542183, -74.19187845620893 40.596612980782275, -74.19185228667975 40.596664985651955, -74.19157290403426 40.597220177647905, -74.1915678040143 40.5972152629813)))",R112,6091,R112,R-02,R-02,R-02,R-02,"West Shore Exwy. Meredith Ave. to South Ave., and at Richmond Pkwy.","502, 503","50,51",122,"10309, 10314",R,32.153,False,Meredith Woods,No,100005016,PARK,20100106000000.00000,19670717000000.00000,,DPR,True,Meredith Woods,N,Meredith Woods,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R112/,No,"62, 63",24,11,{A7036B60-B3D0-4836-823A-D91368102DFC} +"MULTIPOLYGON (((-73.85384748688088 40.747516399059734, -73.85510999860246 40.74713942708005, -73.85537537386162 40.74764941184529, -73.85427262793331 40.74797654416158, -73.85421103167057 40.74799481675452, -73.85411050624329 40.74802463674816, -73.8538724311801 40.74756459885715, -73.85384748688088 40.747516399059734)))",Q450,5189,Q450,Q-04,Q-04,Q-04,Q-04,"109 St., 111 St. bet. 46 Ave. and 47 Ave.",404,21,110,11368,Q,1.722,False,Corona Golf Playground,Yes,100000291,PARK,20090423000000.00000,19340718000000.00000,109-02 46 AVENUE,DPR,True,Corona Golf Playground,Y,Corona Golf Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q450/,No,39,13,14,{D8E68FAE-623E-4AEA-BCC4-86FB64E01F7B} +"MULTIPOLYGON (((-73.82306256928159 40.61397456161816, -73.82254282743087 40.61365745355264, -73.82252374580143 40.61367512657153, -73.82230292806902 40.61341906483223, -73.82227555495182 40.61338909903659, -73.82227693308943 40.61338898860203, -73.82215248240442 40.6132450042179, -73.82141461196204 40.61361300076106, -73.82133463761389 40.61352251441035, -73.82142951090383 40.61347509351297, -73.8210101266334 40.6129896140785, -73.82151209811279 40.612736447153445, -73.82140400425203 40.61261026186593, -73.82132301275607 40.612515714357826, -73.82124664236309 40.612554230757304, -73.82118183430214 40.6124785751727, -73.82107711039718 40.612531391778425, -73.82100137227181 40.61243761316128, -73.82095477089904 40.61238649173172, -73.82088539621296 40.612310389409394, -73.82085948295607 40.61228196273908, -73.82083020597483 40.6122498458794, -73.82094233187642 40.612214537290825, -73.82103018117242 40.61218687405931, -73.8213025370638 40.61210110963639, -73.82124759996412 40.612037743559625, -73.82123936532248 40.61204026122324, -73.82107387878911 40.611837366236536, -73.82106859406291 40.61183088685113, -73.8210518494854 40.611810356773695, -73.82099651600815 40.61174251615847, -73.82095219254212 40.61168817259712, -73.82094315542702 40.61167709379225, -73.82087737528417 40.611596443112425, -73.820804256586 40.61150679463336, -73.82071448557774 40.61139672958865, -73.82062301770172 40.61128458431718, -73.82055287942825 40.61119858924527, -73.82048820194953 40.61111646049923, -73.82040990552336 40.61100207981305, -73.82037002215912 40.61093379205374, -73.82032916726442 40.610846738559616, -73.82029280938612 40.61076246839403, -73.82026150430964 40.61067423571057, -73.82023912247848 40.61056601815373, -73.82022196129753 40.61044415142148, -73.82021824304913 40.610338278292986, -73.82022057019256 40.61026525039821, -73.82022840573795 40.610177868672935, -73.82024541294577 40.610089644892525, -73.82026726255712 40.61000882557918, -73.82028853803784 40.60993890889933, -73.8203086140179 40.60986683808923, -73.820913670719 40.608111030650015, -73.82326973613903 40.60671408621683, -73.82327385445315 40.60671164402589, -73.82340427275732 40.61004683456611, -73.82343917377274 40.610939288624564, -73.82351986042478 40.613136834585575, -73.82348846236034 40.61319435500389, -73.82320590586079 40.61371197987746, -73.82314511539971 40.613823342277065, -73.82306256928159 40.61397456161816)))",Q478,6345,Q478,Q-14,Q-14,Q-14,Q-14,Jamaica Bay west of Cross Bay Blvd. bet. E 1 Rd. and E. 10 Rd.,414,32,100,"11693, 11693, 11693, 11693",Q,37.95,False,Broad Channel Wetlands,No,100000420,PARK,20090423000000.00000,20011127000000.00000,,DPR,False,Broad Channel Wetlands,N,Broad Channel Wetlands,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/Q478/,Yes,23,15,5,{8E399EF5-D2F7-4A91-B7B6-215B2B551847} +"MULTIPOLYGON (((-73.80811002560128 40.69002892017666, -73.80865582088516 40.68956687940654, -73.80941506681518 40.69088374809242, -73.80938159232826 40.690899426453385, -73.80811002560128 40.69002892017666)))",Q220B,5894,Q220B,Q-12,Q-12,Q-12,Q-12,"Van Wyck Exwy. Sr. Rd. E., 142 St., 106 Ave.",412,28,103,11435,Q,1.427,False,Norelli-Hargreaves Playground,Yes,100000178,PARK,20090423000000.00000,19460306000000.00000,,DPR,True,Norelli-Hargreaves Playground,Y,Norelli-Hargreaves Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q220B/,No,32,10,5,{88417BD5-E760-46B3-B70E-CA2217DF9852} +"MULTIPOLYGON (((-73.93371718774772 40.778251003676246, -73.93384370177341 40.77802414885245, -73.93388655210212 40.778034031245966, -73.93389112916167 40.77803786190804, -73.93389423718604 40.778043013664785, -73.93389551153281 40.77805046245195, -73.93389897565604 40.778054892209866, -73.93391069457743 40.77806361669617, -73.93392113534817 40.77806991899717, -73.93393182532915 40.778074582525534, -73.93448212991059 40.777078749995006, -73.93458838194293 40.776886471100475, -73.93543853454688 40.77716170021015, -73.93548097257049 40.77708207362322, -73.93584322446307 40.77720325210198, -73.9360779665914 40.77728177581095, -73.9356337719816 40.77767076897863, -73.93526295928656 40.77799549678016, -73.93516766992522 40.778016072819575, -73.93508531902518 40.77808496982866, -73.93476409327369 40.77824828365261, -73.9347291785206 40.77826603529748, -73.93455693217716 40.77832230635692, -73.93415447164185 40.778353802692585, -73.93406971022853 40.778337296645354, -73.93398975980976 40.77832172711278, -73.9338094942461 40.77828725153021, -73.93368988742188 40.7782544314912, -73.93371718774772 40.778251003676246)))",Q215,5443,Q215,Q-01,Q-01,Q-01,Q-01,"26 Ave., bet. 1 St. and 2 St.",401,22,114,11102,Q,3.622,False,Whitey Ford Field,Yes,100000361,PARK,20090423000000.00000,19431018000000.00000,1-09 26 AVENUE,DPR,False,Whitey Ford Field,Y,Whitey Ford Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q215/,Yes,37,12,12,{CE66CE7E-AB2E-43F5-9CAF-9953D6FEA2C0} +"MULTIPOLYGON (((-73.96849393627504 40.64951566082495, -73.97121085576443 40.648441279184965, -73.97177358720502 40.650379879220885, -73.97166817845797 40.650426902641975, -73.97160733418912 40.650462993887544, -73.97157883381595 40.650479899467726, -73.97154530557857 40.6505063988111, -73.97151799142343 40.650527986460126, -73.97148271409398 40.65055810092974, -73.97145211733893 40.65058610663789, -73.97143199095628 40.65060955651938, -73.97140060684468 40.650648297087194, -73.97138162427082 40.650673288930115, -73.97136710334617 40.65069668436264, -73.97134906814412 40.650729140825426, -73.97131601433708 40.650803915160985, -73.97129843727159 40.65085965911176, -73.97129134946577 40.65089455509668, -73.97128938234812 40.65091032897026, -73.97128597963491 40.65093761650182, -73.97128615151897 40.65098054061048, -73.97128791481649 40.65104001302517, -73.96626647808317 40.65299955795082, -73.96487379721609 40.65094705823066, -73.96849393627504 40.64951566082495)))",B068,4835,B068,B-14,B-14,B-14,B-14,"Parkside Ave., Caton Ave., bet. Parade Pl. and Coney Island Ave.",314,40,70,11226,B,39.5,False,Parade Ground,No,100005033,PARK,20100106000000.00000,18670508000000.00000,305 PARKSIDE AVENUE,DPR,False,Parade Ground,Y,Parade Ground,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B068/,No,42,21,9,{44B72531-5D71-4413-980A-CEF40F2B4B25} +"MULTIPOLYGON (((-73.92195465030149 40.844331798173, -73.9226581682429 40.8431902496946, -73.92267311986764 40.84329095915865, -73.92268806089852 40.84340082302428, -73.92269093828698 40.84351754506056, -73.92269985212438 40.84362740488061, -73.9226967448119 40.84370750435335, -73.92268759808982 40.84379904324213, -73.92267245212336 40.843865403024836, -73.92265125221465 40.843954644774264, -73.9226089386134 40.844059893024856, -73.9224759684789 40.84437563362044, -73.92195465030149 40.844331798173)))",X148A2,5697,X148A2,X-04,X-04,X-04,X-04,Plimpton Ave. bet. W. 172 St. and Edward L Grant Hwy.,204,16,44,10452,X,1,False,Plimpton Playground,Yes,100004092,PARK,20100106000000.00000,19570328000000.00000,1401 PLIMPTON AVE,DPR,True,Plimpton Playground,Y,Plimpton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148A2/,No,77,29,15,{E7E3F992-72D6-4127-BB35-08F4D7709E30} +"MULTIPOLYGON (((-73.88357183968009 40.74635179869053, -73.88360383824877 40.746296985638786, -73.8836208922461 40.746372068254416, -73.88357183968009 40.74635179869053)))",Q058,6148,Q058,Q-04,Q-04,Q-04,Q-04,"82 St., Ithaca St., Baxter Ave.",404,25,110,11373,Q,0.003,False,Dunningham Triangle,Yes,100000464,PARK,20090423000000.00000,19240910000000.00000,,DPR,True,Dunningham Triangle,Y,Dunningham Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q058/,No,39,16,6,{7630C489-246F-42CE-96A5-5D760DEDFAA1} +"MULTIPOLYGON (((-73.8783312795067 40.673782249101336, -73.87869291197754 40.6737328909695, -73.8787120876265 40.67380915426406, -73.87835046298304 40.673858541280936, -73.8783312795067 40.673782249101336)))",B443,5246,B443,B-05,B-05,B-05,B-05,Atkins Ave. between Belmont Ave. and Pitkin Ave.,305,37,75,11208,B,0.068,False,Atkins Gardeners,No,100004185,PARK,20100106000000.00000,20021120000000.00000,213 ATKINS AVENUE,DPR,False,Atkins Gardeners,N,Atkins Gardeners,Greenthumb,Garden,http://www.nycgovparks.org/parks/B443/,No,54,18,8,{33360BD1-214F-4530-A7B8-BE6DC751C1F4} +"MULTIPOLYGON (((-73.85014562237889 40.866470541052514, -73.8501694355847 40.86572426080878, -73.85037144978968 40.865477871392414, -73.85090551845609 40.86548366039181, -73.85087278855823 40.866492409625245, -73.85014562237889 40.866470541052514)))",X172,4638,X172,X-11,X-11,X-11,X-11,Allerton Ave. bet. Throop Ave. and Bouck Ave.,211,13,49,10469,X,1.597,False,Allerton Playground,Yes,100004422,PARK,20100106000000.00000,19550516000000.00000,1251 ALLERTON AVENUE,DPR/DOE,False,Allerton Playground,Y,Allerton Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X172/,No,80,36,14,{3C5FA2DA-F6CE-4A25-AF44-7BC6296DB1F0} +"MULTIPOLYGON (((-73.93854335327208 40.71863743430278, -73.93931036956545 40.71843955425982, -73.93947866634296 40.718817193419724, -73.9387116462032 40.719015074573896, -73.93854335327208 40.71863743430278)))",B257,6402,B257,B-01,B-01,B-01,B-01,Frost St. bet. Debevoise Ave. and Kingsland Ave.,301,34,94,11211,B,0.739,False,Frost Playground,Yes,100004610,PARK,20100106000000.00000,19570627000000.00000,60 KINGSLAND AVENUE,DPR/NYCHA,True,Frost Playground,Y,Frost Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B257/,No,50,18,12,{53FFCFE1-5571-498D-8834-838E1AEF90A9} +"MULTIPOLYGON (((-73.99445048386777 40.640141587209584, -73.99445444409015 40.64014156488769, -73.99446012666108 40.640142167608445, -73.99446444025686 40.64014324393583, -73.99446640259433 40.64014373301179, -73.99446814623758 40.64014416714564, -73.99447660542847 40.64014795333209, -73.99447790336866 40.640148757557455, -73.99449613955005 40.64016005453597, -73.99451661580652 40.640172769935035, -73.9945179669419 40.64017360838218, -73.99452387151005 40.64017727467435, -73.99456556877313 40.64020316475855, -73.99458305907878 40.64021402493645, -73.99459601604661 40.64022206987789, -73.99460836541938 40.640229736571584, -73.9946239584717 40.64023941877607, -73.99465038663001 40.64025599044955, -73.9946532306295 40.64025937563087, -73.99465353796123 40.64025974035514, -73.9946536703429 40.6402599898049, -73.99465559342394 40.640263600072984, -73.9946567788487 40.64026708783622, -73.99465687221732 40.640267360697656, -73.99465764615434 40.640272059639145, -73.99465755712454 40.64027665588147, -73.99465691732102 40.640279854493436, -73.99465667606397 40.64028106387856, -73.99465460333535 40.640286130999826, -73.99465162747134 40.64029077753691, -73.99464799556277 40.64029475585866, -73.99464558853599 40.64029666124375, -73.99464317205121 40.6402985738325, -73.99462708671182 40.64030969268447, -73.99461842101208 40.64031563029816, -73.99459136463065 40.64033416800303, -73.99458079199607 40.6403414130771, -73.99457016615922 40.64034869326784, -73.99454284375028 40.640367411952894, -73.99453118582193 40.64037539899807, -73.99451764933309 40.64038467549497, -73.9945031375038 40.64039461742682, -73.99449455572015 40.64040049740202, -73.99449319852381 40.640401426672106, -73.99448131949121 40.640409756799166, -73.99447952130667 40.64041119484089, -73.9944735923808 40.64041593578592, -73.9944727920052 40.640416576916635, -73.99447235576723 40.6404168281403, -73.99446669413051 40.64042009855116, -73.99446661137532 40.64042014627465, -73.99446620352332 40.640420227301696, -73.99445713265793 40.640422023399196, -73.99444665875896 40.64042152040456, -73.99444662329445 40.640421516800785, -73.99443874319958 40.64041928493514, -73.99443847367343 40.64041920837801, -73.99443770648702 40.64041878059464, -73.99443365895858 40.64041652189843, -73.99443222388277 40.64041572216854, -73.99443184442694 40.64041551052831, -73.99443162219707 40.64041531600554, -73.99443140587766 40.64041512508518, -73.99442733599795 40.64041155703377, -73.9944270972191 40.640411347201386, -73.99442632536078 40.640410243128336, -73.99442420127293 40.64040720377546, -73.99442408898118 40.64040704257719, -73.9944228846134 40.64040401137357, -73.99442223574414 40.64040237690104, -73.99442160364096 40.64039816154336, -73.99442143892252 40.64038878443635, -73.99442070461622 40.640348582553735, -73.99441982203614 40.64030028140041, -73.99441894063972 40.64025197754533, -73.99441821456948 40.64021227815182, -73.99441808879843 40.6402036745919, -73.99441803352678 40.64020021119504, -73.99441754192466 40.64016985919482, -73.99441757033097 40.64016944585819, -73.9944177206492 40.640167241396206, -73.99441863084364 40.640153892153954, -73.99442301222413 40.64015016151832, -73.99442797516758 40.64014711350375, -73.99443353978076 40.64014462924268, -73.99443956419094 40.64014287622463, -73.99444658509748 40.64014184907228, -73.99444828387546 40.64014160061119, -73.99445048386777 40.640141587209584)))",B191,5951,B191,B-12,B-12,B-12,B-12,"New Utrecht Ave., 45 St., Ft Hamilton Pkwy.",312,39,66,11219,B,0.097,False,Pigeon Plaza,Yes,100004638,PARK,20100106000000.00000,19370101000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B191/,No,48,17,10,{6D963C08-C9C9-42BA-B4C7-A0292B47B7D8} +"MULTIPOLYGON (((-73.85450464212849 40.75503424872067, -73.85475160454698 40.754841127070705, -73.85528444083504 40.75586943680733, -73.8553624412425 40.7560199634678, -73.85584649078561 40.756954086422425, -73.85579987513525 40.75696047390351, -73.8557267899928 40.7569704887762, -73.85564750826848 40.756979717800284, -73.8555653018163 40.75698660358755, -73.85548132755636 40.75699172931009, -73.85542075605765 40.756994125194566, -73.85538260428582 40.75699439788554, -73.85528149049044 40.756993591021015, -73.85522862179734 40.75699245208832, -73.85514061445139 40.75699029730362, -73.85508537942233 40.75698600625902, -73.85501113062085 40.75697889068374, -73.85488065518302 40.756745372787506, -73.85461197804891 40.75622227475277, -73.85430561362556 40.75562579113921, -73.85414588198091 40.75531479269184, -73.85450464212849 40.75503424872067)), ((-73.85397456764439 40.75499748658482, -73.85426930174579 40.75490992536321, -73.85428260544097 40.754933532763694, -73.8540402723609 40.75512303293367, -73.85399468888517 40.755036662513405, -73.85397456764439 40.75499748658482)))",Q410,5500,Q410,Q-03,Q-03,Q-03,Q-03,"114 St., 113 St. bet. 34 Ave. and 37 Ave.",403,21,115,11368,Q,3.735,False,Hinton Park,Yes,100000251,PARK,20110712000000.00000,19611026000000.00000,34-02 114 STREET,DPR,True,Hinton Park,Y,Hinton Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q410/,No,35,13,14,{D8A7017E-684C-48A6-8765-E9648B13F774} +"MULTIPOLYGON (((-73.91179808658565 40.66186604556486, -73.91207559356175 40.66182471267309, -73.91211598848601 40.66198228264242, -73.91183848206201 40.66202361563175, -73.91179808658565 40.66186604556486)))",B512,4892,B512,B-16,B-16,B-16,B-16,Livonia Ave. bet. Hopkinson Ave. and Amboy St.,316,42,73,11212,B,0.104,False,Hoparkinson R&L Block Association Garden,No,100004156,PARK,20100106000000.00000,20050429000000.00000,754 HOPKINSON AVENUE,DPR,False,Hoparkinson R&L Block Association Garden,N,Hoparkinson R&L Block Association Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B512/,No,55,19,9,{2E429D21-C7F3-4A61-B82A-8BA7228D1B42} +"MULTIPOLYGON (((-73.91856320847853 40.8447394345888, -73.91857437049252 40.84460562021914, -73.91895543804198 40.84463684302906, -73.91896078130128 40.84460951502252, -73.9189600581305 40.84460938304248, -73.91898665581817 40.84445129408023, -73.91860376085558 40.84440067256387, -73.91864398553449 40.844191841505854, -73.91892966143685 40.84380583019775, -73.91906030243221 40.84386381553897, -73.91929838836143 40.84396948862043, -73.91934189016699 40.843907585840114, -73.91953451581576 40.84399308260752, -73.91946256851999 40.84410195512689, -73.91960932556708 40.84416661294081, -73.91962460097359 40.84417334306423, -73.91961192262484 40.84419000055298, -73.91963941352958 40.844201016528444, -73.91975974600844 40.84427138827544, -73.92007994126979 40.84376164788316, -73.92030176512174 40.84385578491765, -73.92042393526144 40.84390763140314, -73.92023250152322 40.84415249270262, -73.92029960278461 40.84418096854886, -73.9200877144543 40.84451838523363, -73.9196934364455 40.8443769483397, -73.91968126353076 40.844392366208666, -73.91963150506506 40.84445660333286, -73.91958821414951 40.84452348608943, -73.91955163196423 40.8445926418497, -73.91952196295392 40.844663680849216, -73.91951845892027 40.844673500980875, -73.91951830543044 40.84467393311038, -73.91950876540528 40.84470067379394, -73.91935709792907 40.8447594096676, -73.91856320847853 40.8447394345888)))",X261,6585,X261,X-04,X-04,X-04,X-04,Jesup Av bet. W 172 St and Cross Bronx Exwy,204,16,44,10452,X,1.88,False,West Bronx Recreation Center,Yes,100004822,PARK,20100106000000.00000,19930820000000.00000,1527 JESUP AVENUE,DPR,True,West Bronx Recreation Center,Y,West Bronx Recreation Center,Neighborhood Park,Buildings/Institutions,http://www.nycgovparks.org/parks/X261/,No,77,29,15,{A73929CD-5DB6-46D6-A743-0F228D6BD642} +"MULTIPOLYGON (((-73.97958800019131 40.72843924649054, -73.9796648552685 40.72847167930307, -73.97947984123952 40.7287273117051, -73.9794029871419 40.728694876969385, -73.97958800019131 40.72843924649054)))",M339,5977,M339,M-03,M-03,M-03,M-03,E. 12 St. bet. Ave. A and Ave. B,103,2,9,10009,M,0.059,False,El Sol Brilliante Jr,No,100003976,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,El Sol Brilliante Jr,N,El Sol Brilliante Jr,Greenthumb,Garden,http://www.nycgovparks.org/parks/M339/,No,74,27,12,{DB8E15BA-EE36-435F-89CD-985818303102} +"MULTIPOLYGON (((-73.9506131078259 40.695841105911434, -73.95059292775522 40.6957394383699, -73.94965989940935 40.69584690556501, -73.94944708303812 40.69587141699171, -73.94936547916322 40.69546025022871, -73.94949465817028 40.6954453719855, -73.95226693694362 40.69512603566448, -73.95236970383242 40.695114196875565, -73.95245043010206 40.695525464715125, -73.95129668869959 40.69565837250984, -73.95131733811849 40.69576358814718, -73.95120414095815 40.69587684271812, -73.950766697849 40.695927231014025, -73.9506131078259 40.695841105911434)))",B217,5075,B217,B-03,B-03,B-03,B-03,Myrtle Ave. bet. Nostrand Ave. and Marcy Ave.,303,36,79,11206,B,3.201,False,Marcy Playground,Yes,100003931,PARK,20100106000000.00000,19450731000000.00000,753 MYRTLE AVENUE,DPR,True,Marcy Playground,Y,Marcy Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B217/,No,56,18,7,{AE2F4A63-115F-4086-9046-C3D89D68D420} +"MULTIPOLYGON (((-73.8961123248121 40.865804078805574, -73.89699376972834 40.86458485472025, -73.89754205084672 40.86374761518518, -73.89861966230636 40.86423494334222, -73.89869648555407 40.86413647829625, -73.89952785688469 40.86449437647175, -73.8984877990252 40.865832653079615, -73.89787250068474 40.86659169841718, -73.8961123248121 40.865804078805574)))",X044,6388,X044,X-07,X-07,X-07,X-07,"Jerome Ave., E. 193 St., Creston Ave., E",207,14,52,10468,X,11.39,False,St. James Park,Yes,100004349,PARK,20100106000000.00000,18970913000000.00000,2550 JEROME AVENUE,DPR,True,St. James Park,Y,St. James Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X044/,No,78,33,13,{D34EF1D3-18B3-45E9-B0AE-17F9579A426D} +"MULTIPOLYGON (((-73.89660809459158 40.90499905761868, -73.89659645758648 40.90475861815624, -73.89659747105954 40.90475868750067, -73.8966026063648 40.90475961149321, -73.89660822357679 40.904761272512424, -73.89661351951709 40.90476346002646, -73.89661776002977 40.904765844701515, -73.89662161070035 40.904768583817734, -73.89665809069481 40.90479951205853, -73.89681429946155 40.90493194987767, -73.89681727576492 40.90493447299039, -73.89681998633647 40.90494073737352, -73.89682081762936 40.90494577541991, -73.89682050551734 40.904950340591256, -73.89681917443362 40.904955318173776, -73.89681907683388 40.90495549638224, -73.89681646430076 40.90496023779339, -73.89681121873024 40.9049661087587, -73.89680510559572 40.90497042741565, -73.89679666020223 40.90497402360087, -73.89671398785363 40.904986978765045, -73.89671134880537 40.904987392427444, -73.8966746524859 40.90499170172288, -73.89660809459158 40.90499905761868)))",X060,5780,X060,X-08,X-08,X-08,X-08,"Mosholu Ave., Broadway, David Sheridan Plaza",208,11,50,10471,X,0.06,False,Sheridan Triangle,Yes,100004415,PARK,20100106000000.00000,19110717000000.00000,,DPR,True,Sheridan Triangle,Y,Sheridan Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X060/,No,81,34,16,{77A7DF4D-C140-45A7-8D84-234ACF33E39C} +"MULTIPOLYGON (((-73.7372493205531 40.77106299259955, -73.73742199016665 40.77084424868963, -73.73845635535308 40.77087089786436, -73.73813999383991 40.771271440818055, -73.73781879797883 40.77112835912029, -73.73772491162471 40.771126669515795, -73.73763833093756 40.771236286554064, -73.7372493205531 40.77106299259955)))",Q338,5329,Q338,Q-11,Q-11,Q-11,Q-11,Little Neck Pkwy. bet. 42 Ave. and 43 Ave.,411,19,111,11363,Q,0.759,False,Sy Seplowe Playground,Yes,100000273,PARK,,19510410000000.00000,42-33 LITTLE NECK PARKWAY,DPR,True,Admiral Playground,Y,Admiral Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q338/,No,26,11,3,{F1338440-ED4E-4171-AA19-C95C052F4A87} +"MULTIPOLYGON (((-73.90990239214358 40.66218445975032, -73.90988157377953 40.66210365628486, -73.90995438724072 40.66209269638385, -73.91002510714948 40.66208205088065, -73.91009582703445 40.66207140623441, -73.91016654689686 40.66206076154472, -73.91023726673791 40.662050115911065, -73.91025808551738 40.66213091841215, -73.91018736559398 40.662141564058516, -73.91011664683177 40.66215220876182, -73.91004592568065 40.662162854320336, -73.90997520569077 40.662173498935736, -73.90990239214358 40.66218445975032)))",B557,6642,B557,B-16,B-16,B-16,B-16,Chester St. bet. Livonia Ave. and Riverdale Ave.,316,42,,,B,0.068,False,Null,,100016518,PARK,,20150217000000.00000,386 Chester St,DPR,False,Garden,,MHBA Living Laboratory Community Garden,,Garden,,No,55,19,9,{538143C9-AE35-4CE4-9AC1-7135F2B1DFDF} +"MULTIPOLYGON (((-74.10012050684772 40.57600163558086, -74.10007723573635 40.57597583452288, -74.10001672772856 40.575941396213096, -74.09994621525945 40.57590135990761, -74.09989621196542 40.57587600859686, -74.09942796256658 40.57562908384421, -74.10004337192994 40.574889809323146, -74.10183436400528 40.57584960461574, -74.10209384313096 40.575988655802334, -74.10209185531869 40.57599087286013, -74.1015366917903 40.57661012092967, -74.1011023177397 40.577094627074295, -74.10107653870779 40.577059980452844, -74.10101067788182 40.576970074148186, -74.10096048530774 40.576901557711146, -74.10092926897022 40.57685911999089, -74.10087781330985 40.576789340289984, -74.1008401746145 40.576738298266356, -74.10081285570865 40.57670125123671, -74.10077878285784 40.57665504368297, -74.10075085342594 40.5766164302607, -74.10070516738743 40.57655285994328, -74.10066193856419 40.57649438082302, -74.10059225474048 40.576409216186406, -74.10052239128346 40.57633091816636, -74.10046275033042 40.576269485199724, -74.10034694537028 40.57616684732794, -74.1002440950505 40.576084438233046, -74.10018548099845 40.57604355510406, -74.10012050684772 40.57600163558086)))",R038B,6034,R038B,R-02B,R-02,R-02,R-02,"Boundary Ave., Midland Ave., Lincoln Ave., Poultney St.",502,50,122,10306,R,5.765,False,Park,No,100003752,PARK,20100106000000.00000,19950804000000.00000,,DPR,False,Park,N,Park,Neighborhood Park,Nature Area,http://www.nycgovparks.org/parks/R038B/,No,64,24,11,{9A07D0C0-B6D2-4BCA-B7A5-C4D434449616} +"MULTIPOLYGON (((-73.9399536627248 40.58945265780354, -73.93968541662007 40.58804676146843, -73.94005696160451 40.58801012988953, -73.94015006192335 40.58848694888091, -73.94053896681667 40.58844835443937, -73.94071391554857 40.58936653208858, -73.9399536627248 40.58945265780354)))",B239,5132,B239,B-15,B-15,B-15,B-15,Ave. Z between Nostrand Ave. and E. 29 St.,315,48,61,11235,B,2.087,False,Sheepshead Playground,Yes,100003832,PARK,20100106000000.00000,19481118000000.00000,2675 NOSTRAND AVENUE,DPR/DOE,False,Sheepshead Playground,Y,Sheepshead Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B239/,No,41,22,9,{8DD4EA09-C447-41BA-AB77-887C09C99179} +"MULTIPOLYGON (((-73.95637192378254 40.76044610921963, -73.958721451069 40.75833080757473, -73.95880239275864 40.75836660640842, -73.95882055424481 40.75837463910276, -73.9588241924625 40.7583762478046, -73.95836312457706 40.75899945572325, -73.95820892441938 40.75919666178555, -73.95807749489349 40.75934625092486, -73.95795211197004 40.75948037144527, -73.95784860981979 40.759579864618544, -73.95775866565398 40.75966333098253, -73.95763603860509 40.75977120785185, -73.95748873226614 40.75988598775944, -73.95733966942153 40.75999476226068, -73.95720808604966 40.76008522949636, -73.95716342429253 40.760114735946466, -73.95666893600932 40.76044366658549, -73.95655177943382 40.76052268587286, -73.95637192378254 40.76044610921963)))",M108Q1,5583,M108Q1,M-15,M-15,M-08,M-08,E. River bet. E. 59 St. and E. 63 St.,108,5,19,"10022, 10065",M,1.984,False,Andrew Haswell Green Park,No,100004685,PARK,20100106000000.00000,20070802000000.00000,555 EAST 60 STREET,DPR,False,Andrew Haswell Green Park,Y,Andrew Haswell Green Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/M108Q1/,Yes,76,29,12,{D044CB00-EF47-4E4F-B773-86922C3CF06B} +"MULTIPOLYGON (((-73.99530459994776 40.70059713694233, -73.99576983646512 40.699612169470946, -73.99609820866233 40.69970160102486, -73.99613610159578 40.69971192127158, -73.99621972142397 40.69973469439783, -73.99621991901738 40.69973474843505, -73.99622051416384 40.699734910546766, -73.99622066206307 40.69973495107467, -73.9962622951114 40.69974628898124, -73.99629048235079 40.699753965858434, -73.99629040071318 40.69975389291428, -73.99629312324377 40.699754634123494, -73.99632529193802 40.699763445765555, -73.9963021266728 40.69981203935867, -73.99628603427236 40.699845796337875, -73.99626379196592 40.69989245655306, -73.9962449896429 40.699931900172025, -73.99616464649651 40.7000218406703, -73.99607921782113 40.70010902447086, -73.99598886571864 40.700193284072874, -73.99588152426644 40.70028440399778, -73.99576842640049 40.700371398364354, -73.99573761463006 40.7004368248302, -73.99564667586628 40.70050431750492, -73.99555295525577 40.700570252114, -73.995456948595 40.70063425315671, -73.99545217638274 40.700637969381305, -73.99535207484806 40.70061027283706, -73.99534133963132 40.700607302514406, -73.99530459994776 40.70059713694233)))",B223E,69226,B223E,B-02,B-02,B-02,B-02,Columbia Heights and Orange St. To Cranberry St.,302,33,84,11201,B,0.92,False,Fruit Street Sitting Area,Yes,100007972,PARK,,19460501000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Fruit Street Sitting Area,N,Fruit Street Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223E/,No,52,26,7,{C7566D98-B21A-467F-86CD-A2219FEE8ACB} +"MULTIPOLYGON (((-73.87495052465177 40.65595810009271, -73.87563737729741 40.65565939738894, -73.8759862920753 40.65612473487794, -73.87554881044004 40.656314991127715, -73.8752994373833 40.65642343965057, -73.87495052465177 40.65595810009271)))",B547,6288,B547,B-05,B-05,B-05,B-05,Egan St. bet. Ashford St. and Clevland St.,205,42,75,11207,B,0.983,False,Park,No,100008361,PARK,20140724000000.00000,20130423000000.00000,,DPR,True,Park,N,Park,,Undeveloped,,No,60,19,8,{A7EB4061-11DF-4B28-B2A8-104CFEB35152} +"MULTIPOLYGON (((-73.9767598668579 40.71940900765733, -73.97676356089569 40.71940520374896, -73.97677085501486 40.71940229387257, -73.97677648567338 40.719400981164675, -73.97678159295069 40.71940037705218, -73.9767872788165 40.719400269237, -73.97679297494399 40.71940128255835, -73.97679531774929 40.71939633923162, -73.97721338086441 40.7194767923341, -73.97692390086485 40.72003260045402, -73.97662196218518 40.7199040106831, -73.976611716049 40.71989380402543, -73.97660140413085 40.71988218805574, -73.9765986831676 40.71986852316752, -73.9766007074962 40.719853829060554, -73.97675589570711 40.71942005521066, -73.97675767803844 40.719413589909976, -73.9767598668579 40.71940900765733)))",M201,5837,M201,M-03,M-03,M-03,M-03,E. Houston St. and FDR Dr.,103,2,9,10009,M,0.525,False,Wald Playground,Yes,100004298,PLGD,20100106000000.00000,19480422000000.00000,,DPR,False,Wald Playground,Y,Wald Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M201/,No,74,26,7,{2DEBAE14-6F7C-44A6-92A3-81ECF2F05F38} +"MULTIPOLYGON (((-73.92629817996828 40.84221575636964, -73.92641112109258 40.842035730736164, -73.9264859428701 40.841916465793986, -73.92656613455861 40.84178863782743, -73.92671197012011 40.841801255541625, -73.92669999815688 40.841874027600674, -73.92737756231352 40.84193922236737, -73.92736575860896 40.84200188566227, -73.92736161770247 40.842023872198794, -73.92735848101474 40.84204052394515, -73.92734967800246 40.8420872594021, -73.9273480476372 40.84209591481652, -73.92734354415008 40.842119826378116, -73.9272400374363 40.84223535114185, -73.92702122676629 40.84221376045939, -73.92701406457684 40.842212934677896, -73.92700689523062 40.842212147612614, -73.92699971754085 40.84221140016333, -73.92699253387805 40.84221069323198, -73.92698534305843 40.84221002501688, -73.92697814626575 40.84220939731977, -73.92697094350002 40.84220881014059, -73.92696373594893 40.84220826167915, -73.92695652242568 40.84220775283516, -73.92694930411504 40.842207284509875, -73.92694208220378 40.84220685580357, -73.92693485550613 40.842206466715496, -73.92692762639255 40.842206118147644, -73.92692039367827 40.8422058091987, -73.92691315736235 40.84220554076925, -73.92690591981717 40.842205311960306, -73.92689867985797 40.842205121870535, -73.92689143866758 40.84220497320223, -73.92688419624793 40.84220486415439, -73.92687695259804 40.84220479562752, -73.92686970771881 40.8422047667211, -73.92686246398083 40.842204778337155, -73.92685522020021 40.842204828673964, -73.92684797755983 40.84220492043368, -73.92684073487584 40.84220505181464, -73.92683349451971 40.84220522281829, -73.92682625530476 40.842205434344436, -73.92681901841762 40.84220568549329, -73.92681178385835 40.842205976264914, -73.92680455281167 40.84220630756047, -73.92679732527859 40.84220667847949, -73.92679010244379 40.842207089923235, -73.92678288193773 40.84220754008925, -73.92677566613001 40.84220803077992, -73.92676845502153 40.84220856109493, -73.92676124979702 40.842209131935334, -73.92675405164331 40.8422097424015, -73.92674685818974 40.84221039159143, -73.92673967062018 40.84221108130682, -73.9267324901203 40.84221181154844, -73.92672531669206 40.84221258051533, -73.92671815152028 40.84221338910873, -73.9267109934191 40.84221423732783, -73.92670384476008 40.842215125174256, -73.92669670435743 40.84221605264714, -73.92668957221213 40.84221701884605, -73.92668245069467 40.842218024672974, -73.92667533861928 40.84221907012716, -73.92666823598691 40.84222015430811, -73.92666114516815 40.842221278117854, -73.92665406379143 40.84222244155486, -73.92664699423021 40.84222364281965, -73.92663993766723 40.84222488461447, -73.92663289291974 40.842226164237125, -73.92662585880001 40.842227483487754, -73.92661883886726 40.84222884056774, -73.92661183311944 40.84223023727798, -73.92660483918604 40.842231672716586, -73.92659785943856 40.84223314688494, -73.92659089387806 40.84223465888264, -73.92658394368915 40.84223620961088, -73.92657700768618 40.84223779906899, -73.92657008824155 40.8422394263579, -73.92656318416954 40.842241091476915, -73.9265562954691 40.84224279532652, -73.9265494245128 40.84224453700771, -73.92654256892905 40.842246316519, -73.92653573108934 40.84224813386192, -73.92652893830467 40.84224995393458, -73.92652216207934 40.84225181093763, -73.92651540596948 40.84225370577378, -73.92650866641995 40.84225563663981, -73.92650194580014 40.84225760533827, -73.92649524174062 40.84225961006659, -73.92648855898227 40.842261652628814, -73.92648189515671 40.842263730321946, -73.92647525144663 40.84226584584824, -73.92646862904073 40.84226799650699, -73.92646202556556 40.842270184097586, -73.92645544458031 40.84227240682144, -73.9264488837115 40.8422746664779, -73.92644234533157 40.84227696216811, -73.92643582825585 40.842279292990746, -73.92642933366902 40.84228165984712, -73.92642286275779 40.84228406183745, -73.926416411964 40.84228649985995, -73.92640998721828 40.84228897211745, -73.92640358496145 40.842291480408704, -73.92639720638122 40.842294022933444, -73.92639085266138 40.84229660149338, -73.9263845249896 40.842299214288396, -73.9263782209944 40.84230186131685, -73.92637194186149 40.84230454257961, -73.92636568877661 40.84230725807742, -73.92635946055314 40.842310008709944, -73.92635326075016 40.84231279267854, -73.92634708699522 40.84231561088216, -73.92634093928831 40.84231846332085, -73.92633481881715 40.842321348194375, -73.92632872676558 40.84232426730445, -73.92632266194872 40.84232721974986, -73.9263166255534 40.84233020463085, -73.92631061757857 40.84233322284793, -73.92630463802521 40.84233627350059, -73.9262986880771 40.84233935839062, -73.92629276773722 40.8423424748165, -73.92628687700562 40.84234562277826, -73.92628101706592 40.84234880407764, -73.92627518554775 40.8423520178127, -73.92626938719602 40.84235526218537, -73.92626361845247 40.84235853809396, -73.92625788050188 40.84236184643968, -73.92625217571778 40.842365185423105, -73.92624650054184 40.84236855594246, -73.92624085853133 40.84237195799995, -73.92623524968828 40.84237538979468, -73.92622967282492 40.84237885312686, -73.92622412912796 40.84238234709676, -73.9262186197852 40.84238586990412, -73.92621314242217 40.84238942424893, -73.926207700599 40.842393007432, -73.9262022907565 40.842396621252085, -73.92619691645392 40.8424002639104, -73.92619157769026 40.842403936307456, -73.92618627328078 40.84240763754206, -73.92618100322547 40.84241136761418, -73.92617577108055 40.8424151274266, -73.9261705732908 40.84241891517606, -73.92616541222772 40.842422730864044, -73.92616028670454 40.842426575390355, -73.92615519790904 40.842430446954765, -73.92615014702493 40.84243434735898, -73.92614513168174 40.84243827570102, -73.9261401554387 40.842442230182165, -73.92613521592232 40.84244621260192, -73.92608071675991 40.84248647926103, -73.92605240948028 40.84247139586618, -73.92609780387603 40.842424178783965, -73.92629817996828 40.84221575636964)))",X120,4778,X120,X-04,X-04,X-04,X-04,Dr. MLK Jr. Blvd. at W. 170 St.,204,16,44,10452,X,0.82,False,Highbridge Park,Yes,100004595,PARK,20100106000000.00000,19370623000000.00000,1345 DR M L KING JR BLVD,DPR,False,Highbridge Park,Y,Highbridge Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/X120/,No,77,29,15,{2EDD89D2-61C3-48DE-B759-933031CC1250} +"MULTIPOLYGON (((-74.01133010727301 40.630785058025474, -74.01068409344207 40.6304101048482, -74.01021790714817 40.63012975967589, -74.01073689534142 40.629780470202576, -74.01100870860958 40.629944823530906, -74.01185455436116 40.63046925061101, -74.01185459691725 40.6304692767217, -74.0135401410126 40.63148559419839, -74.01313842233908 40.63187634733365, -74.01133010727301 40.630785058025474)), ((-74.01769261364554 40.63475831220816, -74.01788073261197 40.6342995766982, -74.0199747666972 40.63556176690131, -74.01994245376598 40.63566940794169, -74.01986527442374 40.63574349348938, -74.01965014865996 40.63594999873892, -74.01769261364554 40.63475831220816)), ((-74.0133411307816 40.63199956546474, -74.01374701457686 40.63160970444361, -74.01530023546243 40.632542422844665, -74.01508797066 40.63305535333746, -74.0133411307816 40.63199956546474)), ((-74.0164676779988 40.633316815272, -74.0176618654102 40.634095452936485, -74.01747908541077 40.63454273808734, -74.01744373853357 40.63462923380974, -74.01697405922386 40.63434851865119, -74.01650438504734 40.634067800664894, -74.01647917203846 40.63394363079775, -74.0164615630214 40.63381870159788, -74.01645159702845 40.633693285019994, -74.01644929299573 40.633567650318554, -74.01645465685753 40.63344207035049, -74.0164676779988 40.633316815272)), ((-74.01984870500986 40.63610833620023, -74.02025816410698 40.63570916469705, -74.02042475145345 40.63581217710989, -74.0205870353836 40.63591910100465, -74.02074485865643 40.63602983376869, -74.02089806638955 40.63614426648557, -74.0210466486683 40.636305917652635, -74.02120266216144 40.63646345368467, -74.02136591178365 40.636616675573165, -74.02147936212715 40.63672364958768, -74.02148318975351 40.63672733109429, -74.02148613804425 40.63673145582041, -74.02148812184967 40.636735903112395, -74.02148908320483 40.63674054240602, -74.0214889925137 40.63674523862886, -74.02148785446003 40.636749854000776, -74.02148570091734 40.63675425523893, -74.02148259567677 40.63675831265665, -74.0214786285392 40.63676190736854, -74.02147391531669 40.63676493579327, -74.02146859546745 40.63676730785281, -74.02146282146032 40.63676895597973, -74.02145676468332 40.63676983061341, -74.02145060007892 40.63676990740716, -74.02144450850692 40.63676918272513, -74.02143866847116 40.63676767904707, -74.0214332490254 40.63676543956642, -74.02121132498603 40.63668805770739, -74.02092815080235 40.63658641219645, -74.02064614599131 40.636482899001564, -74.02055169624968 40.636453751716395, -74.0204595669783 40.63642057231757, -74.0203700549274 40.63638346791981, -74.02028344857376 40.6363425564463, -74.01984870500986 40.63610833620023)), ((-74.02186960150468 40.63730891328082, -74.0206706977939 40.63659667605312, -74.02123027949757 40.6367835011053, -74.02137162390606 40.63683522323851, -74.02150933532536 40.636892350791555, -74.02164305673848 40.636954737960544, -74.02177244293937 40.63702222183072, -74.02189715935286 40.637094628680245, -74.02201688321549 40.637171771277984, -74.02186960150468 40.63730891328082)), ((-74.02112316415071 40.63623167835018, -74.02227759769343 40.63692900511923, -74.02212585954531 40.637070297007725, -74.02199631792209 40.63699170116259, -74.02187093988236 40.63690927987544, -74.02174991933839 40.636823162797896, -74.02163344310698 40.63673348138415, -74.0215216920944 40.63664037699554, -74.02136016200035 40.636490854340785, -74.02117944511146 40.63630823732024, -74.02112458816357 40.63625281686977, -74.02112247296597 40.636247677096364, -74.02112151851499 40.63624233989602, -74.0211217508642 40.63623695655119, -74.02112316415071 40.63623167835018)))",B052,6020,B052,B-10,B-10,B-10,B-10,"67 St., 66 St. bet. 4 Ave. and Ft. Hamilton Pkwy.",310,43,68,"11219, 11220",B,16.8,False,Leif Ericson Park,Yes,100004465,PARK,20100106000000.00000,18950101000000.00000,,DPR,Part,Leif Ericson Park,Y,Leif Ericson Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B052/,No,"49, 51, 64",23,10,{7F0B42CD-0BB3-4CF1-BA89-E6586431B7D0} +"MULTIPOLYGON (((-73.96579867120825 40.640169808335486, -73.96601944899145 40.64014522569338, -73.96606022661244 40.640356044630124, -73.96585175042617 40.64045082012141, -73.96579867120825 40.640169808335486)))",B391,5215,B391,B-14,B-14,B-14,B-14,Argyle Rd. and Cortelyou Rd.,314,40,70,11226,B,0.125,False,Lt. Federico Narvaez Tot Lot,Yes,100003848,PARK,20100106000000.00000,19930517000000.00000,1302 CORTELYOU ROAD,DPR,False,Lt. Federico Narvaez Tot Lot,Y,Lt. Federico Narvaez Tot Lot,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B391/,No,44,21,9,{A5D4F820-6198-45E2-AE6A-21A889855209} +"MULTIPOLYGON (((-73.89239779472493 40.85937697353771, -73.8926498103599 40.85902971876473, -73.8929549081092 40.85917916765688, -73.89337708539134 40.85938596369588, -73.89314910315329 40.85974047863744, -73.89239779472493 40.85937697353771)))",X174,4764,X174,X-06,X-06,X-06,X-06,E. 188 St. bet. Webster Ave. and Park Ave.,206,15,48,10458,X,0.744,False,Webster Playground,Yes,100004845,PARK,20100106000000.00000,19520819000000.00000,400 EAST 188 STREET,DPR,False,Webster Playground,Y,Webster Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X174/,No,78,33,15,{37A31993-CD77-4D82-BBFE-E79B4F5628A3} +"MULTIPOLYGON (((-73.88902699972355 40.762715535413676, -73.88934029778666 40.7623436499328, -73.88937351170759 40.762522913855435, -73.88940060932019 40.76267614909788, -73.88911788653557 40.762706287389136, -73.88902699972355 40.762715535413676)))",Q393B,5920,Q393B,Q-03,Q-03,Q-03,Q-03,25 Ave. bet. 79 St. and 80 St.,403,22,115,11370,Q,0.142,False,Laguardia Landing Lights,No,100000279,PARK,20090423000000.00000,19600728000000.00000,,DPR,False,Laguardia Landing Lights,N,Laguardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393B/,No,34,13,14,{34F21128-1274-4437-A6A2-2DA90D444FA3} +"MULTIPOLYGON (((-73.88200852229791 40.685145868699166, -73.88187538473619 40.685049483305015, -73.88198075212114 40.68503376307492, -73.88200852229791 40.685145868699166)))",B278,5469,B278,B-05,B-05,B-05,B-05,"Highland Pl. at Etna St., Forcetube Ave.",305,37,75,11208,B,0.011,False,Sam Leggio Triangle,Yes,100007077,PARK,20110712000000.00000,,23 HIGHLAND PLACE,DPR/CDOT,False,Sam Leggio Triangle,Y,Sam Leggio Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B278/,No,54,18,7,{C44EEDAC-2650-420C-938D-7CA6564F6688} +"MULTIPOLYGON (((-73.93432908751741 40.79426108391673, -73.93450908004665 40.79400788641341, -73.93466669917892 40.794074889336976, -73.93448395642173 40.79432619537037, -73.93440809304022 40.79429430153088, -73.93432908751741 40.79426108391673)))",M375,5018,M375,M-11,M-11,M-11,M-11,E. 114 St. bet. 1 Ave. and Pleasant Ave.,111,8,23,10029,M,0.116,False,Pleasant Park Garden,No,100003816,PARK,20100106000000.00000,20021120000000.00000,437 EAST 114 STREET,DPR,False,Pleasant Park Garden,N,Pleasant Park Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M375/,No,68,29,13,{745A5469-AEFE-45B9-8403-3A14C52DCFF6} +"MULTIPOLYGON (((-73.92859699803412 40.84688733011284, -73.92927738286077 40.84585945341672, -73.92981886872086 40.84599281480433, -73.9291101639934 40.84711948469849, -73.92894830511521 40.84736894307876, -73.92885183172645 40.84750816637421, -73.9287656907413 40.8476324775101, -73.9285365838161 40.84795555761794, -73.92828738570651 40.8482879745769, -73.92746837977757 40.84936244126254, -73.92721256566064 40.84970898668862, -73.92687123713382 40.850193458834966, -73.92637825272817 40.85092713622372, -73.92599528826622 40.85147708898064, -73.92563283293184 40.85201519146336, -73.92508371596088 40.85280785232763, -73.92482589229134 40.85316470519441, -73.92414868251645 40.85408417606963, -73.9237051387898 40.85466114716593, -73.92354789936324 40.85489549137822, -73.92336880841835 40.85519877686981, -73.92324773131564 40.85545108245091, -73.92317481171582 40.85563234600871, -73.92309824172415 40.855883969655615, -73.92305515161904 40.85605680279583, -73.92300431757481 40.856343650021444, -73.92298578964332 40.85655691624912, -73.92298630620361 40.856824706400154, -73.92301332984259 40.85732430868902, -73.92310083588917 40.85870447449632, -73.92310356268484 40.85874748194613, -73.92275614500352 40.85876283826536, -73.92274718158227 40.85858764810961, -73.92263402978134 40.858382850233596, -73.92259865282111 40.857818185485975, -73.92249001531891 40.855887638251, -73.92219564229157 40.85574731828317, -73.92287689791414 40.85490520591091, -73.92333476952317 40.854317130974316, -73.92372269405004 40.853818884187355, -73.92425413047617 40.85309828015309, -73.92473630620023 40.85242691005881, -73.92523291274031 40.85170521604598, -73.9258808599573 40.8507328985994, -73.92653079886009 40.84978046959796, -73.92686397336561 40.84932648841959, -73.9284425204323 40.84710295816099, -73.92859699803412 40.84688733011284)), ((-73.93979008216145 40.83071898868327, -73.93987600204616 40.83040660230711, -73.94022758772759 40.83053380077334, -73.94019531878169 40.83068391635018, -73.94018116251166 40.83074690582744, -73.94016791454192 40.83080044327917, -73.94015469322977 40.830838818210665, -73.94011561889295 40.83092838815827, -73.94007642265242 40.83100576352723, -73.94003463935023 40.831077993009956, -73.94000576839363 40.83112324046513, -73.93996119685818 40.83118721993713, -73.93994322256168 40.831209740057396, -73.93992564224257 40.83123051882307, -73.93964679345483 40.83150774723019, -73.93962772890048 40.831530861056066, -73.93960966332502 40.8315544508631, -73.93959262641951 40.831578459936054, -73.93957665019487 40.83160288829219, -73.93956171570257 40.83162771431013, -73.93954787398066 40.831652874081854, -73.93953512502029 40.83167837841378, -73.9395234783389 40.831704192191886, -73.9395129529476 40.831730270401756, -73.939487341842 40.831800067818165, -73.93945077787131 40.83189786936535, -73.93939196109851 40.83203693518103, -73.9393270531267 40.83217415984965, -73.93929650841923 40.83223365386496, -73.93926464223826 40.83229260958043, -73.93921004325749 40.83238726782308, -73.9391517425609 40.8324808497954, -73.93908990278027 40.832573114245186, -73.93902456903001 40.83266398104666, -73.93895604042049 40.832753063139606, -73.9388773667007 40.83285109523251, -73.93879410958583 40.83294751835566, -73.9387067022866 40.83304180413923, -73.9386152207875 40.83313382654503, -73.93851959146977 40.83322369898654, -73.93837045903634 40.83335286736287, -73.93821750910308 40.83347874759463, -73.93665117600298 40.83469572646085, -73.93644631622527 40.83486965408325, -73.9363111998955 40.83498732907675, -73.93617492501824 40.83511459803475, -73.93608051828664 40.83520032322834, -73.93596694635859 40.83531864009686, -73.93585668700727 40.835435372022985, -73.93576519744059 40.83553562444795, -73.935677717348 40.835637153234124, -73.9355892594761 40.83574660035168, -73.93552052345476 40.83583736867167, -73.93542406221765 40.8359710452815, -73.9353690405208 40.83604907379167, -73.93467217613701 40.837037282226476, -73.93410648911176 40.8378998856977, -73.93160583801037 40.84227696968929, -73.93153896317634 40.84241047765225, -73.93097637394064 40.84234821725598, -73.93102053031866 40.84226562072257, -73.9310665337298 40.84218440933306, -73.9312086828846 40.841956663117145, -73.93134827893395 40.841729327624115, -73.93149393563527 40.84148458991905, -73.9338697508548 40.83726087772752, -73.9341641542373 40.83669327391209, -73.9342738536031 40.836482412866474, -73.93446179351508 40.8360456541285, -73.93455775454863 40.83578976658058, -73.9356678069539 40.83498455146177, -73.9379294205823 40.83325574213635, -73.93803989565875 40.83317074533368, -73.9381805750298 40.83305315681145, -73.93831898865763 40.83292234854453, -73.93832111050965 40.83292015517413, -73.93832428617269 40.83291686646543, -73.9383285465116 40.83291243921106, -73.93833279974065 40.83290800745026, -73.93833704348948 40.83290357028126, -73.93834127894203 40.832899129505705, -73.93834550609998 40.83289468332257, -73.93834972377687 40.83289023263173, -73.93835393434391 40.83288577743447, -73.93835813543073 40.832881316829, -73.93836232703654 40.83287685171587, -73.93836651034691 40.832872382095665, -73.9383706865474 40.83286790796903, -73.93837485208128 40.83286342933407, -73.93837901050527 40.83285894619271, -73.93838315944916 40.83285445764311, -73.93838730009755 40.83284996458649, -73.93839143245044 40.83284546702281, -73.93839555413601 40.83284096585129, -73.93839966871246 40.83283645927287, -73.93840377380792 40.83283194818676, -73.93840787179353 40.832827432594215, -73.93841195911256 40.832822912493405, -73.93841603813694 40.832818386984975, -73.93842011005069 40.83281385787069, -73.9384241712978 40.83280932424806, -73.93842822425029 40.83280478521787, -73.93843226890655 40.83280024258116, -73.93843630408261 40.832795694536244, -73.93844033214803 40.83279114288544, -73.93844434954684 40.832786586726286, -73.93844835865022 40.83278202606012, -73.93845235827257 40.832777460886255, -73.93845634960033 40.832772890304895, -73.93846033263183 40.832768316117004, -73.93846430736791 40.83276373742199, -73.93846827143746 40.83275915421875, -73.93847222839625 40.83275456740956, -73.93847617469018 40.83274997429107, -73.93848011268702 40.832745378466555, -73.93848404238922 40.83274077723453, -73.93848796379523 40.832736172395926, -73.93849187453465 40.832731563049045, -73.93849577816422 40.83272694919575, -73.93849967231276 40.8327223308348, -73.9385035569795 40.83271770886665, -73.9385074321661 40.8327130814904, -73.93851130024203 40.83270845050823, -73.93851515765058 40.83270381591824, -73.93851900676536 40.83269917502024, -73.93852284639749 40.8326945314156, -73.93852667891979 40.8326898833045, -73.93853050077634 40.832685229784694, -73.93853431315026 40.83268057355819, -73.9385381172296 40.832675911924156, -73.93854191301273 40.832671246683596, -73.93854569812927 40.83266657693475, -73.93854947495042 40.83266190267889, -73.93855324347452 40.832657225716986, -73.93855700251842 40.83265254334698, -73.93856075208139 40.832647856469286, -73.93856449334812 40.83264316598506, -73.93856822631948 40.83263847099386, -73.93857194743785 40.83263377239422, -73.93857566144558 40.8326290701887, -73.93857936715877 40.83262436257566, -73.93858306220456 40.83261965135479, -73.93858674776938 40.83261493562636, -73.93859042503802 40.832610216291386, -73.93859409282562 40.83260549244877, -73.93859775231704 40.832600764999604, -73.93860140114197 40.83259603304222, -73.93860504285622 40.83259129747891, -73.93860867390393 40.83258655740735, -73.93861229665625 40.83258181282879, -73.93861590992594 40.83257706554359, -73.93861951252913 40.83257231375009, -73.93862310802251 40.83256755745025, -73.93862669403413 40.832562797543275, -73.9386302693792 40.832558033128, -73.93863383642807 40.83255326510624, -73.93863739518073 40.83254849347799, -73.93864094445243 40.83254371734205, -73.93864448305598 40.832538938498864, -73.93864801336495 40.832534154248215, -73.93865153419222 40.8325293663904, -73.93865504553845 40.83252457402498, -73.93865854858771 40.83251977895356, -73.93866204215601 40.8325149793745, -73.93866552624338 40.832510175287815, -73.93866899966264 40.83250536849388, -73.93867246597203 40.83250055719354, -73.93867592161413 40.83249574228551, -73.93867936777444 40.832490923770294, -73.93868280563939 40.83248610074808, -73.93868623520817 40.83248127411941, -73.93868965292403 40.832476443882335, -73.93869306115816 40.83247161003814, -73.93869646228251 40.832466771687606, -73.93869985273867 40.83246193062981, -73.93870323371394 40.83245708506438, -73.93870660639304 40.83245223589247, -73.93870996840481 40.832447383112815, -73.9387133221204 40.83244252672665, -73.9387166651703 40.83243766493175, -73.9387199999224 40.83243280133136, -73.93872332400805 40.83242793322275, -73.93872663979748 40.83242306150762, -73.93872994610518 40.83241818618542, -73.93873324293112 40.832413307256076, -73.93873653027539 40.832408424719624, -73.93873980813869 40.83240353767555, -73.93874307651947 40.83239864792489, -73.93874633541851 40.83239375456709, -73.93874958483661 40.832388856701705, -73.93875282477218 40.8323839561297, -73.93875605522604 40.832379051950554, -73.93875927619813 40.832374144164355, -73.93876248768936 40.832369231870516, -73.93876568969888 40.8323643159696, -73.938768882225 40.832359398262554, -73.93877206527024 40.832354476047875, -73.93877523883376 40.832349550226134, -73.93877840291555 40.832344620797265, -73.93878155633006 40.83233968776068, -73.93878470144841 40.83233475111762, -73.9387878382707 40.8323298108681, -73.93879096324008 40.83232486701025, -73.93879407991166 40.83231992134683, -73.93879718710318 40.83231497027542, -73.9388002836266 40.83231001649672, -73.93880336948277 40.832305059110304, -73.93880644941396 40.83230009811869, -73.93880951630587 40.83229513441858, -73.9388125760881 40.83229016621213, -73.93881562520221 40.83228519529843, -73.9388186648346 40.83228022077769, -73.93882169498532 40.832275242649835, -73.93882471446716 40.83227026271521, -73.93882772565448 40.8322652773732, -73.93883072735848 40.83226029022505, -73.93883371721049 40.83225529856808, -73.93883669876638 40.83225030330463, -73.9388396720253 40.83224530533523, -73.9388426334306 40.83224030465796, -73.93884558653976 40.83223530037427, -73.93884853016732 40.83223029248346, -73.93885146312671 40.83222528188541, -73.9388543866053 40.83222026677983, -73.93885730060059 40.83221524986817, -73.93886020511499 40.832210228448865, -73.9388631001461 40.832205205223495, -73.93886598451077 40.832200177489945, -73.93886885939297 40.83219514704981, -73.93887172479353 40.832190113002554, -73.93887458071157 40.83218507624875, -73.9388774271471 40.83218003678836, -73.93888026291626 40.83217499281975, -73.93888308920295 40.832169946144546, -73.9388859060063 40.83216489766327, -73.93888871332886 40.83215984467442, -73.93889150998417 40.832154788077865, -73.93889429834171 40.83214972967588, -73.93889707484651 40.832144667665546, -73.93889984305441 40.83213960294924, -73.9389026005951 40.83213453462526, -73.9389053486525 40.8321294644952, -73.93890808722988 40.83212438895709, -73.93891081513844 40.83211931161224, -73.9389135347501 40.83211423156145, -73.9389162436945 40.83210914790297, -73.93891894197097 40.83210406153728, -73.93892163195049 40.83209897246568, -73.93892431126197 40.83209388068683, -73.93892698109268 40.83208878440047, -73.93892964144091 40.832083685407504, -73.93893229112031 40.83207858460782, -73.93893493131813 40.832073480201075, -73.93893756084786 40.832068373087154, -73.93894018089522 40.83206326326668, -73.93894279146095 40.83205814983911, -73.93894539254418 40.83205303370498, -73.93894798177391 40.83204791486305, -73.9389505638923 40.83204279331578, -73.93895313415793 40.83203766816018, -73.93895569494036 40.83203254119857, -73.9389582450547 40.83202741152975, -73.93896078687392 40.832022277353985, -73.93896331802347 40.83201714227203, -73.93896583850668 40.832012002681864, -73.93896835069219 40.832006861286295, -73.9389708533953 40.832001717184156, -73.93897334306008 40.831996569473084, -73.93897582442722 40.83199141995657, -73.93897829631359 40.831986265932535, -73.93898075753037 40.83198111100225, -73.93898320926465 40.831975953365465, -73.93898565151743 40.831970792121595, -73.93898808310217 40.83196562817051, -73.93899050401897 40.83196046151231, -73.93899291545257 40.83195529304799, -73.93899531740455 40.83195012097665, -73.93899770868778 40.83194494709861, -73.93900009048943 40.83193976961354, -73.93900246162308 40.83193458942129, -73.93900482327354 40.83192940742296, -73.93900717544162 40.8319242227181, -73.93900951694256 40.831919034405566, -73.93901184777471 40.83191384428634, -73.93901416912368 40.83190865236107, -73.9390165056097 40.83190376030849, -73.9390187833769 40.83189825768936, -73.93902107272203 40.83189305764258, -73.9390233537703 40.83188785488985, -73.93902562652264 40.83188264853072, -73.93902788742061 40.831877440364266, -73.93903013883539 40.83187223039176, -73.93903237958311 40.83186701681159, -73.93903461084761 40.83186180142539, -73.93903683144418 40.831856583332005, -73.93903904255839 40.83185136253206, -73.93904124300467 40.83184613902499, -73.93904343396777 40.83184091371185, -73.93904561544855 40.831835685692155, -73.93904778389025 40.83183045496404, -73.93904994521988 40.83182522243115, -73.93905209351051 40.8318199871898, -73.93905423468905 40.831814750143685, -73.93905636401502 40.8318095094893, -73.9390584838569 40.83180426792934, -73.93906059421735 40.83179902276236, -73.93906269390905 40.83179377578871, -73.93906478293283 40.8317885261079, -73.93906686247342 40.83178327462103, -73.93906893134617 40.83177802042704, -73.93907099073577 40.83177276442695, -73.93907303827186 40.8317675057191, -73.93907507632488 40.83176224520524, -73.93907710608109 40.831756981985436, -73.93907912398384 40.831751716057816, -73.93908113240343 40.8317464483242, -73.93908312896964 40.83174117788282, -73.93908511723828 40.83173590563602, -73.9390870948373 40.83173063248303, -73.93908906295492 40.831725355723016, -73.9390910180327 40.83172007715508, -73.93909296599927 40.831714795881865, -73.93909490211163 40.83170951280138, -73.93909682874086 40.831704227914855, -73.93909874470303 40.83169893942068, -73.9391006499949 40.831693650920855, -73.93910254580526 40.831688358813985, -73.93910443213252 40.83168306490108, -73.93910630660551 40.83167776918092, -73.9391081727818 40.831672470754846, -73.93911002710306 40.831667171421955, -73.93911186142194 40.83166170548699, -73.93911364918984 40.83165658261586, -73.93911551298064 40.831651298596285, -73.9391174087746 40.831646021797546, -73.93911934012846 40.83164075222151, -73.93912130585731 40.831635488967024, -73.93912330477414 40.831630233834474, -73.93912533925072 40.83162498592465, -73.93912740691519 40.83161974613672, -73.9391295077675 40.83161451447072, -73.9391316441796 40.831609290027394, -73.93913381140926 40.83160407280426, -73.93913601538176 40.83159886550591, -73.93913825372844 40.83159366542962, -73.93914052289107 40.831588474374456, -73.9391428276118 40.831583292343005, -73.93914516552114 40.83157811753292, -73.9391475366166 40.8315729526458, -73.93914994089907 40.831567796781066, -73.93915238074047 40.83156264903944, -73.93915485139681 40.831557511219486, -73.93915735642574 40.83155238242256, -73.93915989463989 40.83154726444905, -73.93916246722824 40.83154215369754, -73.93916507063074 40.83153705376819, -73.9391677084049 40.83153196376232, -73.93917037936514 40.83152688367931, -73.93917308351224 40.83152181261872, -73.9391758196583 40.831516753281356, -73.93917858780488 40.83151170386627, -73.93918139032303 40.83150666437467, -73.93918422484091 40.83150163570577, -73.93918709254483 40.8314966169598, -73.93918999106205 40.831491609936364, -73.93919292395002 40.831486613736956, -73.9391958888377 40.83148162836028, -73.93919888453944 40.83147665380568, -73.9392019146103 40.83147169187607, -73.93920497549607 40.83146673986806, -73.93920806837984 40.83146180048375, -73.93921119444967 40.831456871022276, -73.93921435133103 40.831451955084404, -73.93921754021203 40.83144704996919, -73.93922076109098 40.831442157477746, -73.93922401396878 40.83143727670944, -73.93922729884447 40.831432408564865, -73.93923061453346 40.83142755214282, -73.93923396103398 40.83142270924441, -73.93923734071879 40.831417878069765, -73.93924075002964 40.83141306041802, -73.9392441913393 40.83140825448947, -73.93924766346043 40.831403462084495, -73.93925116639316 40.83139868320308, -73.9392547013238 40.83139391694529, -73.93925826706601 40.83138916421105, -73.93926186243499 40.831384424099255, -73.9392654886147 40.83137969841147, -73.93926914679147 40.83137498624781, -73.93927283459502 40.83137028670658, -73.93927655320844 40.83136560248986, -73.93928030144868 40.83136093089555, -73.93928408049881 40.83135627462574, -73.93928788917486 40.83135163187884, -73.93929172866154 40.8313470035559, -73.93929559777344 40.83134238965636, -73.9392994965096 40.83133779108071, -73.93930342487168 40.83133320602791, -73.93930738285809 40.831328636298984, -73.93931137046874 40.83132408189392, -73.93931539126122 40.831319541914105, -73.93931943693573 40.83131501725565, -73.93932351342093 40.831310507021186, -73.93932761834482 40.83130601210993, -73.93933175289132 40.83130153432347, -73.93933591706377 40.83129707005991, -73.93934010967409 40.83129262202007, -73.93934433072236 40.83128819020389, -73.9396512237468 40.83095760847036, -73.93965552534314 40.83095320640107, -73.93965977124692 40.83094877278516, -73.939663962642 40.830944309424225, -73.93966809715727 40.830939816317056, -73.93967217716309 40.830935294365396, -73.93967619791805 40.83093074266629, -73.93968016416433 40.83092616122217, -73.93968407234286 40.830921552732704, -73.93968792364001 40.83091691629803, -73.9396917168694 40.830912252818024, -73.93969545084637 40.8309075613915, -73.93969912675482 40.8309028438202, -73.93970274459632 40.83089809830304, -73.93970630199583 40.83089332934134, -73.93970980132681 40.83088853423479, -73.93971324021734 40.830883713882706, -73.93971661748036 40.83087887008539, -73.93971993548853 40.8308740010432, -73.9397231918683 40.83086910945631, -73.93972638780696 40.83086419352436, -73.9397295233019 40.83085925594884, -73.93973259598384 40.83085429492757, -73.9397356082222 40.83084931226275, -73.93973855645946 40.830844308852996, -73.93974144306684 40.83083928469961, -73.93974426685955 40.830834238901446, -73.93974702902152 40.830829173260106, -73.93974972599453 40.830824089574755, -73.93975236015213 40.83081898514513, -73.93975493149183 40.830813862672734, -73.93975743764263 40.83080872215633, -73.93975988097554 40.830803563597186, -73.9397622591196 40.83079838699402, -73.93976457207306 40.83079319414778, -73.93976682102162 40.83078798505924, -73.93976900596434 40.83078276062877, -73.93977112453109 40.8307775199547, -73.93977317790652 40.830772263938115, -73.93977516608982 40.83076699347954, -73.93977708908027 40.83076170947943, -73.93977894450676 40.83075641193661, -73.9397807347396 40.830751101752796, -73.93978245977955 40.83074577802744, -73.93978411725479 40.83074044165987, -73.9397857083484 40.83073509535219, -73.93978723424837 40.83072973640351, -73.93978869139573 40.83072436751344, -73.93979008216145 40.83071898868327)), ((-73.93413279154127 40.81416801815297, -73.93408254876691 40.81480839431777, -73.93408242431842 40.814808390644636, -73.93408223786699 40.81481235002453, -73.93408254876691 40.81480839431777, -73.93417448915574 40.81481088809292, -73.9341295410947 40.815292992245574, -73.9340876526069 40.815775254778686, -73.93398771574262 40.81577322821801, -73.93395729447109 40.81616856414489, -73.93395502494923 40.816214847493846, -73.93395249313257 40.816261477383584, -73.9339489755572 40.816355471952576, -73.9339474401329 40.81639655805158, -73.93394573307305 40.81644218615902, -73.93392388955513 40.81671303233915, -73.93390346696805 40.81698394145204, -73.9339043288149 40.817140144847386, -73.93390445787253 40.81714983336781, -73.93390653133592 40.817241354760256, -73.9339076248697 40.81728959770822, -73.9339101260649 40.81739322742488, -73.93391981845429 40.81761748912047, -73.93393767789378 40.817845148558575, -73.93393983278017 40.817872623951345, -73.93394940073183 40.81796208568693, -73.9339623957035 40.818051299945594, -73.93397880593515 40.81814018657525, -73.93399862084468 40.81822867262808, -73.93403006834122 40.818374758403095, -73.93403579469809 40.81839860683305, -73.93405828580292 40.81849230017441, -73.93406502736325 40.81852038331865, -73.93406986478193 40.81853941538154, -73.9340972039356 40.818642716182964, -73.93413124970945 40.81877481148768, -73.9341606532268 40.81890754798385, -73.9341853979587 40.81904083201396, -73.93421843752233 40.819261904780994, -73.93423832645372 40.81947526178026, -73.93423845829189 40.81947859189179, -73.93419311787153 40.81946413106396, -73.93414669194375 40.8194518181832, -73.93398999048624 40.81942490278821, -73.9338317507187 40.8194038125103, -73.93383079510866 40.81937423695211, -73.9338272116481 40.819263556658264, -73.93382415839058 40.819169216178004, -73.93382399050745 40.81916401121116, -73.93380227401393 40.81849309719932, -73.9337994752634 40.81685611387959, -73.93383032455513 40.815918306240285, -73.93384133549877 40.81558356085264, -73.93384281192449 40.815538678219596, -73.93385089821025 40.81534870767009, -73.93385673079851 40.81521167695335, -73.93388766885559 40.814484797092575, -73.93389224767037 40.8143772218044, -73.93389462505954 40.81432136351634, -73.93373565560086 40.81431325693484, -73.93373375600089 40.814340278867995, -73.9336825441786 40.814338630328685, -73.93368438445701 40.814311688506535, -73.93369787032142 40.8142854179487, -73.93370990870642 40.81425228926963, -73.93371742869114 40.8142146248879, -73.93371879928604 40.81417847160706, -73.93371591773861 40.81415012319374, -73.93371056114952 40.81412559596859, -73.93369797693073 40.814090366678144, -73.93369789474374 40.81406103022708, -73.93374675486852 40.814063827343574, -73.93374745678148 40.8140909624346, -73.93390997611898 40.81409727364254, -73.93402286943676 40.81279662372829, -73.93410671268595 40.81202267595817, -73.93427156508355 40.81094323533429, -73.93426799546658 40.81094305950307, -73.93426905881498 40.81064280800828, -73.93430207133584 40.81062919238668, -73.93430862554168 40.81058702400434, -73.93431830937588 40.81050205673919, -73.93432831535353 40.81025393744129, -73.93431867783171 40.80989210286392, -73.9343185898501 40.80988878267767, -73.93430974784958 40.809556795538974, -73.93412363531147 40.808819382214935, -73.93410108785824 40.80873433798959, -73.93407817088304 40.80864790858116, -73.93401764042738 40.80853571150192, -73.9341875304055 40.808487362707986, -73.93438740323141 40.808430481401466, -73.93446661359022 40.808588135250325, -73.93453743239415 40.808748077844726, -73.93459974843944 40.80891005069397, -73.93465345881685 40.80907379350941, -73.93469847839451 40.80923904240882, -73.93473473389302 40.80940552991283, -73.93476216625173 40.80957298944892, -73.93478073300474 40.80974114994931, -73.93479040234972 40.8099097421514, -73.93479115908012 40.81007849229752, -73.93478300220777 40.810247130237855, -73.9347177494466 40.810243982987416, -73.9347177458628 40.8102440118013, -73.9347023705471 40.810386573527786, -73.93468011925381 40.8105286108657, -73.9346510241286 40.810669931122796, -73.93461512323974 40.81081034611144, -73.93458402626707 40.81095869899854, -73.93471023099357 40.810964944350985, -73.93459723633377 40.81144722114552, -73.93460157917285 40.81145297508826, -73.93455293256237 40.81163631493961, -73.93446437371604 40.812043721836005, -73.9344291885071 40.81230227162826, -73.9343954581256 40.81263331588536, -73.93427434349724 40.8138268779585, -73.93417123446761 40.81382826983541, -73.93413279154127 40.81416801815297)), ((-73.9309394868701 40.842422079738505, -73.9309398322934 40.84242172335002, -73.93151002118782 40.84246825772177, -73.931466284922 40.84255557237241, -73.93143693664584 40.84260476327763, -73.9313947903634 40.842685109928276, -73.93137162421954 40.84273228198515, -73.93134437079058 40.84278859611152, -73.93132799916265 40.84283098338067, -73.93084110509874 40.84411703498744, -73.93074297226183 40.844359644526065, -73.93063669270147 40.844600767762316, -73.93053489469457 40.844811207497955, -73.93042379462662 40.84501940650317, -73.93030373698173 40.84522471750531, -73.93017396038857 40.84542828724342, -73.93000007015704 40.84570474025516, -73.92946602038262 40.84557446754432, -73.92960233333851 40.84536852799632, -73.9296352052257 40.845321211853516, -73.9296678169902 40.84527426024194, -73.92974614689925 40.84515689543141, -73.92982023393235 40.84503823397612, -73.92989018972445 40.84491813187316, -73.92995616281324 40.84479630826638, -73.9300568316266 40.84460481202234, -73.93014980592707 40.844411585681044, -73.93025147396996 40.84418657261525, -73.93031276738512 40.844011916743746, -73.93077799291878 40.842785112184586, -73.93084576290552 40.84262843011642, -73.93089519630836 40.84251493907849, -73.9309394868701 40.842422079738505)))",M039,6331,M039,M-11,M-11,M-12,M-12,Harlem River Dr. from E. 131 St. to W. 145 St. and W. 155 St. to Dyckman St.,"110, 111, 112","9,10",32,"10032, 10033, 10034, 10037, 10039, 10040, 10451",M,46.657,False,Harlem River Park,No,100005175,PARK,20100106000000.00000,18991208000000.00000,,DPR/CDOT,True,Harlem River Park,Y,Harlem River Park,Large Park,Parkway,http://www.nycgovparks.org/parks/M039/,Yes,"70, 68, 72","30, 31",13,{CFFF05EE-D571-4BE0-A6E3-2EF0A84B9816} +"MULTIPOLYGON (((-73.92697591102446 40.82785252799492, -73.92617981738697 40.82762374014849, -73.92723223204757 40.825846975780436, -73.92802552661628 40.82611224007574, -73.92814262244836 40.826156446391956, -73.92816208530914 40.82616306185264, -73.92930810529579 40.82659632223677, -73.92950024727783 40.82666896127201, -73.92954974453133 40.82668767320205, -73.92955013436764 40.82668784633536, -73.92971237388609 40.826759993083336, -73.92970714311868 40.826754825553145, -73.92992868389257 40.826841572742296, -73.93005666539044 40.826889839553765, -73.93052788220804 40.82706755172237, -73.93052789906872 40.82706956974292, -73.93056849268305 40.82708497645446, -73.93057181245283 40.827191358485436, -73.93058198457474 40.827297488898715, -73.93059898682206 40.82740311373951, -73.93062277681345 40.82750797994, -73.93065329794052 40.82761183442282, -73.9306904769902 40.82771443040288, -73.93068953237429 40.82771422092019, -73.93069608769454 40.82773170617672, -73.93064287415949 40.82771627481329, -73.93058743448904 40.82770634681364, -73.9305307500706 40.82770209836234, -73.93048998119723 40.827703176902716, -73.9304304339977 40.82771237827659, -73.93037289620713 40.827727222436486, -73.93031829037186 40.82774747131164, -73.93026749052605 40.827772801256266, -73.93022457911424 40.827802439419024, -73.93018709777323 40.82783606014213, -73.93015568252665 40.8278730929019, -73.9301308651378 40.827912911280734, -73.93011306480251 40.82795484106577, -73.93010258458017 40.82799817105258, -73.9300996007075 40.82804216834683, -73.93010416495879 40.828086087370224, -73.93012469900597 40.82813341363946, -73.93015266732236 40.82817848956742, -73.93018765333122 40.82822064222647, -73.9302291360778 40.82825924635145, -73.9302764985263 40.82829372524533, -73.93032903584023 40.828323567894216, -73.93038596486625 40.82834832897382, -73.93044644071945 40.828367640565915, -73.9302556058543 40.82842099942165, -73.93015503112532 40.82845074134374, -73.92997128913974 40.82851039128211, -73.92977232218111 40.82858165975201, -73.92957572739338 40.82865926881329, -73.92939382430193 40.82873783115411, -73.92923283780625 40.82881312013751, -73.92908806088822 40.82888573808957, -73.92899557568172 40.82893469873972, -73.92890437040046 40.82898504056364, -73.92889192931365 40.828989792010255, -73.92888076602274 40.82899249651747, -73.92886707403713 40.828994090954275, -73.92885406911196 40.82899396856901, -73.92884368891997 40.828992726685286, -73.92883389891321 40.82899056305776, -73.92882557237945 40.82898788344832, -73.92881727287465 40.82898431866822, -73.92767307196375 40.82827792911584, -73.92756997207758 40.82821427773129, -73.9275706244142 40.828213989982494, -73.92743970407611 40.828133507855675, -73.92738003015326 40.82809623300962, -73.92697591102446 40.82785252799492)), ((-73.9250769284993 40.82952709827481, -73.92589791392933 40.82809483721798, -73.92730903690395 40.82854537515752, -73.92742917215621 40.82862152646203, -73.92770678376772 40.828797498211195, -73.92800510181607 40.828986594325485, -73.9282987573763 40.82917273313807, -73.92835287709778 40.829207037819444, -73.92838593459577 40.82923291336984, -73.9283964394518 40.829246128355926, -73.92840276191102 40.82925925159547, -73.928405826016 40.82927289419852, -73.92840575429959 40.82928555781748, -73.92840224151269 40.8292999752657, -73.92839886898109 40.829307442779196, -73.9283924457804 40.829317423481356, -73.92838335347895 40.829328970287676, -73.92830978198515 40.82937911457361, -73.92819737743558 40.82946120221809, -73.92812279543129 40.82951917736076, -73.92803161766963 40.82959423889965, -73.92793390618577 40.82968033725342, -73.92786226557757 40.82974761347674, -73.92781239535965 40.829796735795746, -73.92775086052275 40.829860192070385, -73.92769063459741 40.82992564012692, -73.9276589956937 40.82995793094834, -73.92739992378358 40.83022594547728, -73.92726003509779 40.83037066233093, -73.92707056609885 40.83056666957951, -73.92684648026429 40.83079848525213, -73.92661490707997 40.83103804447591, -73.92636571239372 40.831304532982145, -73.92442781510577 40.83063818462386, -73.92460242012802 40.83035063757832, -73.92464832220587 40.83027480267299, -73.92482597843701 40.82996488446573, -73.92482624808386 40.82996441368256, -73.9249625306887 40.82972666817179, -73.9250769284993 40.82952709827481)), ((-73.9316437771377 40.828400578918824, -73.9320127321808 40.828377331018466, -73.93205711200564 40.82843708342286, -73.93209219612028 40.828484320656024, -73.9321254985512 40.82852915791015, -73.93218171859486 40.82860597441386, -73.93221102250018 40.82864493355942, -73.93226240809398 40.82871957068333, -73.93229329343885 40.828769136768685, -73.93233115246002 40.828829894689896, -73.932351433172 40.828865820137906, -73.93237323454521 40.82890444165596, -73.93240345333152 40.82895797129905, -73.93245130303681 40.82905476114461, -73.93250545939335 40.829175340338736, -73.93256109036541 40.82932201041251, -73.93258750203798 40.829392668796125, -73.93262539802858 40.829521731890374, -73.93265695552616 40.829642250072325, -73.93267849897835 40.82974053817976, -73.93269567253071 40.82983307947338, -73.93271417649646 40.8299734846509, -73.9327208907327 40.830036214349704, -73.93272665420155 40.830136450010194, -73.93272824505853 40.83025852203913, -73.93272701844954 40.830364810347284, -73.93272180432488 40.830441158472205, -73.93272020386738 40.83045638310719, -73.9327091047916 40.83056196146468, -73.93270173097287 40.83063557352294, -73.93269333481659 40.83070018993948, -73.93268486889673 40.83074234436904, -73.93266830402207 40.83082482543502, -73.93265315302537 40.830891339747865, -73.93263981207173 40.830949909148465, -73.93261980119448 40.83103775874322, -73.93260131097244 40.83111893295315, -73.9325752548596 40.831197435470195, -73.93254688377353 40.83127547377205, -73.93232169738991 40.831295615584025, -73.93233011384281 40.83124644179864, -73.93234754584468 40.83112318508762, -73.93235988029102 40.83099957418877, -73.93236336397096 40.83095005711823, -73.93236435190367 40.83093336252255, -73.93236868455476 40.83081024039696, -73.93236789688086 40.83068707564418, -73.93236198997059 40.83056399163263, -73.93235782265216 40.830510495286376, -73.93235434228929 40.830465813387065, -73.93233777842389 40.83025318420097, -73.93231461504445 40.830070635769616, -73.93229164853315 40.829876492669435, -73.93225848595675 40.8297237915565, -73.93221516691773 40.82959345005725, -73.93216667079957 40.82945388982679, -73.93199033223694 40.82909867931476, -73.9316711054685 40.828553947655855, -73.9316437771377 40.828400578918824)), ((-73.93035894376182 40.82860885835845, -73.93035996605308 40.82860848887222, -73.9303435051951 40.828683356010785, -73.93033637691158 40.82875906714508, -73.93033635360067 40.82875981814404, -73.93035803274701 40.82876002574486, -73.93035887183235 40.828790850203106, -73.93036240450768 40.82882156462634, -73.93038005154162 40.828908092159544, -73.93040524197656 40.8289935355426, -73.9304378636121 40.82907751649497, -73.93047777341758 40.829159661218625, -73.93052479159836 40.82923960579773, -73.93057871226485 40.82931699620515, -73.93063929513346 40.82939148829765, -73.93067188187949 40.82942409050734, -73.93070958055178 40.82945333963387, -73.93075180123807 40.82947877876703, -73.93079787809218 40.82950000588151, -73.93084708828644 40.82951668915709, -73.930898660312 40.8295285660835, -73.9309018345458 40.82952913439688, -73.93070940447454 40.82963152679811, -73.93061317397553 40.829675169965945, -73.9305124686228 40.82971253840886, -73.93040799765441 40.82974337049902, -73.93030049516365 40.82976744875023, -73.93019071535103 40.82978460431758, -73.93013542790625 40.82978845016985, -73.93007997353448 40.82978642826851, -73.93002542629657 40.82977857618531, -73.92997284234822 40.829765046746544, -73.9299232409761 40.829746102618216, -73.92987758326275 40.829722110889996, -73.92929045475171 40.829365247276954, -73.92906839316784 40.829148303190074, -73.9290954403338 40.82913192630804, -73.92913171910486 40.82910995851545, -73.92916934544833 40.82908830220993, -73.92924734212758 40.82904536044835, -73.92928437292252 40.829026262046575, -73.929352545162 40.82899110257174, -73.92939406099609 40.82897059220408, -73.92945995561745 40.828938917988474, -73.92948519347412 40.82892705318981, -73.92954739032697 40.82889881205224, -73.9296094583815 40.82887124257173, -73.92967400177386 40.828843627741605, -73.92969973656643 40.82883261776886, -73.92973437278961 40.828818751440494, -73.9297700930097 40.82880445172322, -73.92983277355026 40.82877935885711, -73.92990274432327 40.828753697673406, -73.9299563404343 40.82873404271147, -73.93001655300492 40.82871196040283, -73.93006901561833 40.828694644187166, -73.93011496396521 40.8286794779848, -73.93015204045298 40.82866724020443, -73.93019731397493 40.828652297783776, -73.93023380204913 40.828641546338595, -73.93026537942089 40.82863224170978, -73.93030419415092 40.82862080457132, -73.93035894376182 40.82860885835845)), ((-73.93086999138517 40.83053904030024, -73.93137474775209 40.82963988951974, -73.9314553124525 40.829726056279746, -73.93152678950787 40.829807240550494, -73.9315963113865 40.82990266854723, -73.9316513932904 40.83000428785149, -73.93169917274876 40.830146079288326, -73.93174450464171 40.830308323096325, -73.93178934076202 40.830476777302465, -73.93181881770326 40.83063206077293, -73.93184306341007 40.83076030648201, -73.93184550253251 40.83091610254625, -73.9318397620152 40.83093009464518, -73.93162553818408 40.83086021009773, -73.93166097610887 40.83079708029562, -73.93086999138517 40.83053904030024)), ((-73.9285838500365 40.82943431838184, -73.92874593297286 40.82932363252395, -73.9292758581231 40.82967692850332, -73.92929679342343 40.82969352575852, -73.92931345315972 40.829711780902194, -73.9293245362079 40.82973226045078, -73.9293304429795 40.829749658033656, -73.92933312173506 40.82976913288135, -73.92933200917209 40.82978750139874, -73.92932767192538 40.82980480445533, -73.9293228356641 40.82981643858936, -73.92931500149469 40.8298300330645, -73.92930639200829 40.82984137672661, -73.92929514555614 40.82985305195453, -73.92928338187154 40.829862815113174, -73.92927069237543 40.82987138004433, -73.92925540450643 40.82987965792324, -73.92924247468642 40.829885668899855, -73.92922095394024 40.82989223921317, -73.92919910461941 40.8298967498885, -73.92867704327288 40.82997219405174, -73.92788207466944 40.8302035672282, -73.92776738105984 40.830171215402466, -73.92781299736035 40.83011931781894, -73.9278869931881 40.83003863203007, -73.92799784339557 40.82992503990483, -73.92810421690794 40.82982330530111, -73.92821207846015 40.8297265710728, -73.92831000896636 40.829643780138916, -73.92843630040623 40.82954339484004, -73.9285838500365 40.82943431838184)), ((-73.93097435179855 40.82981468699441, -73.93102556762602 40.8297884465946, -73.93061999931072 40.830510553399996, -73.93018841256966 40.83046075942199, -73.92982790732135 40.83041916558554, -73.93010351980399 40.83006239204705, -73.93023290960024 40.83004782654553, -73.93030823913087 40.83003897970408, -73.93036381894755 40.83003122579707, -73.93041846422163 40.830020388904956, -73.93047261180077 40.83000818293439, -73.93052618106688 40.82999460693704, -73.93057913998898 40.82997967890438, -73.93063139488602 40.82996341949219, -73.93068291728392 40.82994584669429, -73.9307336360299 40.82992697847873, -73.93078350722999 40.829906840934584, -73.93083245855664 40.82988544212407, -73.93089365634701 40.82985604703186, -73.93093688822847 40.82983388653258, -73.93097435179855 40.82981468699441)), ((-73.92875026945785 40.83023158458787, -73.92982620969786 40.83010436230505, -73.92959517424472 40.83040388011505, -73.92881321295799 40.830320238470826, -73.9286179600234 40.830299352366616, -73.92862998537174 40.83027791091861, -73.92875026945785 40.83023158458787)))",X030,5386,X030,X-04,X-04,X-04,X-04,"River Ave. to the Harlem River bet. E. 157 St. , W. 161 St. and E. 164 St.",204,"8,16",44,"10451, 10452",X,44.174,False,Macombs Dam Park,No,100005060,PARK,20100106000000.00000,18970318000000.00000,40 - 44 EAST 161 STREET,DPR,Part,Macombs Dam Park,Y,Macombs Dam Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X030/,No,"84, 77",29,15,{03E888B6-F02C-4FE8-AE1A-29F1095738DC} +"MULTIPOLYGON (((-73.8676358281836 40.873977506312784, -73.86763993124227 40.8738424268805, -73.86765605791653 40.873310199683054, -73.86810692935772 40.873315818943894, -73.86807430860372 40.874182104209375, -73.86762965843583 40.874180573880814, -73.8676358281836 40.873977506312784)))",X214,5412,X214,X-12,X-12,X-12,X-12,Olinville Ave. at Rosewood St.,212,12,47,10467,X,1.205,False,Magenta Playground,Yes,100004084,PARK,20100106000000.00000,19660421000000.00000,3330 OLINVILLE AVENUE,DPR/DOE,False,Magenta Playground,Y,Magenta Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X214/,No,83,36,16,{3DAF319B-6664-4788-8EAE-0D310AF56161} +"MULTIPOLYGON (((-73.97170273649769 40.78840436586524, -73.97175619525069 40.78842685998203, -73.97181053418069 40.78844972529558, -73.9718679589756 40.788473888057936, -73.97192559940544 40.78849814179466, -73.97198574289516 40.7885234496969, -73.9720528245232 40.78855167687295, -73.97211318488826 40.78857707571161, -73.9721732148013 40.78860233396062, -73.97222903237866 40.78862582077872, -73.9722591137096 40.788638479159104, -73.97207949787145 40.78888467502811, -73.97152311804894 40.78865056087575, -73.97170273649769 40.78840436586524)))",M264,4961,M264,M-07,M-07,M-07,M-07,"W. 89 St., Amsterdam Ave. and Columbus Ave.",107,6,24,10024,M,0.402,False,Playground Eighty Nine LXXXIX,Yes,100004370,PLGD,20100106000000.00000,19670406000000.00000,116 WEST 89 STREET,DPR/DOE,False,Playground Eighty Nine LXXXIX,Y,Playground Eighty Nine LXXXIX,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M264/,No,69,29,10,{70923D07-CE34-404E-A9D7-979DB15FA6E2} +"MULTIPOLYGON (((-73.81368720720675 40.79521144497817, -73.81375943212959 40.79511028405423, -73.8138048872355 40.79521803680514, -73.81368720720675 40.79521144497817)))",Q168,6274,Q168,Q-07,Q-07,Q-07,Q-07,"Clintonville St., 7 Ave. and 151 St,",407,19,109,11357,Q,0.01,False,Alexander Grey Triangle,Yes,100000105,PARK,,19610101000000.00000,,DPR,False,Alexander Grey Triangle,N,Alexander Grey Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q168/,No,27,11,3,{AF1985EA-7060-4568-9E1F-8AD6847A64F4} +"MULTIPOLYGON (((-73.88575715253079 40.84650628414875, -73.88595429476212 40.84627514257193, -73.88596596452652 40.84628061019607, -73.88686455756805 40.846701611909154, -73.8868715685215 40.84670489657938, -73.88666165185016 40.84695008024664, -73.88575715253079 40.84650628414875)))",X236,5666,X236,X-06,X-06,X-06,X-06,E 180 St bet. Prospect Av and Mapes Av,206,15,48,10460,X,0.68,False,Mapes Pool,No,100004843,PARK,20100106000000.00000,19680501000000.00000,,DPR,False,Mapes Pool,Y,Mapes Pool,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X236/,No,79,33,15,{AB5DD1BF-C216-4F22-96D9-1A46553ED559} +"MULTIPOLYGON (((-73.91441859001917 40.86026357032069, -73.91442889026773 40.86025586255799, -73.91443732337385 40.86026219205639, -73.91448830221711 40.86022403734742, -73.91454932597154 40.860178368258445, -73.91461667743997 40.86012797534417, -73.91468180876964 40.86007921513878, -73.91474746472979 40.860030076177416, -73.9148156956317 40.85997901112925, -73.91459650174671 40.85981449515543, -73.91461551689063 40.859810628114865, -73.91483736148763 40.8599771324913, -73.91440353346597 40.86030181829067, -73.91436272537925 40.860332359660404, -73.91255376270021 40.86168616969611, -73.91253551696089 40.86168440801462, -73.91275486079412 40.861520257115586, -73.91333805405262 40.861083807534406, -73.91346208257976 40.86099098532842, -73.91390818017506 40.86065712815583, -73.91435462221021 40.860323102906996, -73.91434684318308 40.86031726375501, -73.91435201824895 40.86031339008471, -73.91438902130932 40.86028569864923, -73.91441859001917 40.86026357032069)))",X150D,5723,X150D,X-07,X-07,X-07,X-07,"Major Deegan Exwy, Cedar Ave., W. Fordha",207,14,52,10468,X,0.667,False,Gasoline Alley,No,100003746,PARK,20100106000000.00000,19501212000000.00000,,DPR,True,Gasoline Alley,Y,Gasoline Alley,EXWY,Strip,http://www.nycgovparks.org/parks/X150D/,No,86,33,13,{B3571249-2D54-4CA6-81F8-3D31D541FAFA} +"MULTIPOLYGON (((-73.912872970857 40.69468356973155, -73.91291103990115 40.69464485576837, -73.91319936161669 40.694809703595, -73.91316135766958 40.69484845462288, -73.91312382400693 40.69488672421853, -73.91308752712831 40.69492373401741, -73.91304950883375 40.6949625003058, -73.91276093028101 40.69479750602933, -73.91278513253721 40.694772894437904, -73.91279901485467 40.69475877770719, -73.91283157750588 40.69472566259104, -73.9128353732813 40.69472180226457, -73.912872970857 40.69468356973155)))",B481,5272,B481,B-04,B-04,B-04,B-04,Madison St. between Wilson Ave. and Knickerbocker Ave.,304,37,83,11221,B,0.165,False,Madison Square Garden Association,No,100003854,PARK,20100106000000.00000,20021120000000.00000,1262-1264 Madison St,DPR,False,Madison Square Garden Association,N,Madison Square Garden Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B481/,No,54,18,7,{2CB6219A-E855-4E6C-8515-9DAC44745AB7} +"MULTIPOLYGON (((-73.90720560327286 40.84358400882489, -73.90723006099898 40.843324667545346, -73.90758067853245 40.843342193446375, -73.90755762995536 40.843603041552306, -73.90720560327286 40.84358400882489)))",X297,4821,X297,X-04,X-04,X-04,X-04,E 173 St bet. Weeks Av and Monroe Av,204,15,44,10457,X,0.207,False,Garden Of Eden,No,100004920,PARK,20100106000000.00000,19980511000000.00000,1664 WEEKS AvNUE,DPR,False,Garden Of Eden,Y,Garden Of Eden,To Be Determined,Garden,http://www.nycgovparks.org/parks/X297/,No,86,33,15,{F92576C5-5E53-403F-92A7-8C0C866E830F} +"MULTIPOLYGON (((-73.98810669954692 40.57321436074716, -73.98811910588681 40.57321300854252, -73.98841189300087 40.57318109684458, -73.98858458817077 40.57417208372113, -73.98771189459964 40.574423767718606, -73.9875671122714 40.5736674493593, -73.98818063556682 40.57360058083539, -73.98810669954692 40.57321436074716)))",B336A,69252,B336A,B-13,B-13,B-13,B-13,Surf Ave. between W. 22 St. and W. 21 St.,313,47,60,11224,B,1.702,False,Lot,No,100003996,PARK,,19641223000000.00000,,DPR,True,Lot,N,Lot,Parking Lot,Lot,http://www.nycgovparks.org/parks/B336A/,No,46,23,8,{0E841F24-E4C2-4B64-BE09-18F8B1A03D71} +"MULTIPOLYGON (((-73.91284574336954 40.80461244398717, -73.91278805081915 40.80471694197948, -73.91278462369834 40.80472136713996, -73.91278032970305 40.80472533148956, -73.91277527443259 40.80472873785414, -73.91276958124371 40.804731503481094, -73.91276339006413 40.80473356093871, -73.91275685265134 40.804734859013394, -73.91275012903232 40.804735366308655, -73.91274338276578 40.80473506944091, -73.91273678093621 40.804733977541545, -73.91270145696501 40.804720665736305, -73.91266789720659 40.80470493651652, -73.9126637825835 40.80470134671209, -73.91266048270921 40.80469730007134, -73.9126580815847 40.804692902916855, -73.91265664423901 40.80468826966125, -73.91265620606593 40.8046835209984, -73.9126567787541 40.80467878030536, -73.91265834910443 40.804674171841086, -73.91266087429676 40.80466981533939, -73.91266428900288 40.80466582421358, -73.91266850420612 40.80466230195355, -73.9126734107564 40.80465934212846, -73.91274394349071 40.80462463987935, -73.91281620359327 40.80459205236436, -73.91281917875915 40.804590671448004, -73.91282242003618 40.80458969595732, -73.91282583257939 40.80458915553704, -73.91282931682248 40.804589065420394, -73.91283276966047 40.804589428230805, -73.9128360903761 40.80459023308627, -73.91283918182279 40.80459145740074, -73.9128419539831 40.804593064185845, -73.91284432396326 40.8045950065529, -73.91284622310299 40.8045972277186, -73.91284759578868 40.804599662805025, -73.91284840182205 40.80460223974191, -73.91284861641428 40.804604883769045, -73.91284823492758 40.80460751653958, -73.9128472681278 40.804610061519185, -73.91284574336954 40.80461244398717)))",X139,6357,X139,X-01,X-01,X-01,X-01,"Bruckner Blvd., Jackson Ave., E. 138 St.",201,8,40,10454,X,0.313,False,Gouverneur Morris Triangle,Yes,100004413,PARK,20100106000000.00000,19380308000000.00000,,DPR,False,Gouverneur Morris Triangle,Y,Gouverneur Morris Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X139/,No,84,29,15,{5FF77CFA-B984-4341-A839-BA1ABE1B0A52} +"MULTIPOLYGON (((-73.90235900334193 40.77793838025624, -73.90227798830053 40.777881125149705, -73.90182641123327 40.77756689805886, -73.90182963129797 40.77756426142827, -73.90238220606018 40.777111790512116, -73.90262482542008 40.77728325433361, -73.90291125455126 40.777485677827386, -73.90235958449621 40.77793790348217, -73.9023592827306 40.777937693409314, -73.90235900334193 40.77793838025624)))",Q332,5906,Q332,Q-01,Q-01,Q-01,Q-01,20 Ave. bet. 37 St. and 38 St.,401,22,114,11105,Q,1.033,False,Woodtree Playground,Yes,100000452,PARK,20090423000000.00000,19500823000000.00000,,DPR,True,Woodtree Playground,Y,Woodtree Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q332/,No,36,13,14,{97D157E5-6036-4AD2-B808-213A0567A01F} +"MULTIPOLYGON (((-73.9772696205897 40.65212301263443, -73.97763385003618 40.65208103348336, -73.97764644850578 40.65214703935061, -73.97765279968323 40.65218031379959, -73.97765959111756 40.652215897260035, -73.97767239618943 40.65228298918742, -73.97769800759286 40.65241717303664, -73.97771174636635 40.65248915494806, -73.97772522550058 40.652559777926335, -73.9777740634066 40.65281565404915, -73.97776422828673 40.65281945052995, -73.97773928015451 40.652826276127456, -73.97771790879247 40.65282933734993, -73.97769593756875 40.65283003729578, -73.97767807812401 40.65282881453067, -73.97766307449103 40.652826508094655, -73.97764782418123 40.65282288955514, -73.977634744928 40.652818659084, -73.9776235481322 40.652814110194505, -73.97760959487437 40.65280703931906, -73.97759653947445 40.6527986916833, -73.97758283354625 40.652787488379, -73.97757203399404 40.652776037997626, -73.97756244707635 40.65276252926929, -73.97739681622379 40.65246484345745, -73.9773869875663 40.65244617470239, -73.97737482556967 40.65242207356705, -73.97736476710536 40.65240121380616, -73.97735201048017 40.652373369100836, -73.97734152987685 40.65234916563389, -73.97733020508701 40.65232142656856, -73.97732094703892 40.65229731789488, -73.9773079179344 40.652260727306405, -73.97729712711954 40.65222746456964, -73.9772875019126 40.65219484413073, -73.97727929254438 40.652164126763765, -73.97726989441793 40.65212442469973, -73.9772696205897 40.65212301263443)))",B255L,4847,B255L,B-07,B-07,B-07,B-07,Vanderbilt St. bet. E. 4 St. and E. 5 St.,307,39,72,11218,B,0.48,False,"Captain John McKenna, IV Park",Yes,100004305,PARK,20100106000000.00000,19600915000000.00000,36 EAST 5 STREET,DPR,True,"Captain John McKenna, IV Park",Yes,"Captain John McKenna, IV Park",Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B255L/,No,44,21,9,{CF114F5D-A7C6-460D-B896-942EF094C266} +"MULTIPOLYGON (((-73.91805349469043 40.820685304175655, -73.91794111613336 40.82051147974883, -73.91806738290174 40.82022181584876, -73.91829449744615 40.820138341579074, -73.91892909115326 40.820297463305266, -73.91869041564283 40.820845009671885, -73.91805349469043 40.820685304175655)))",X154,6611,X154,X-01,X-01,X-01,X-01,Courtlandt Av bet. E 154 St and E 155 St,201,17,40,10451,X,1.001,False,Melrose Playground,Yes,100004886,PARK,20100106000000.00000,19511126000000.00000,705 COURTLANDT AVENUE,DPR,True,Melrose Playground,Y,Melrose Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X154/,No,79,32,15,{36C1A3DB-2755-46E6-A13C-2642A1EC8FD0} +"MULTIPOLYGON (((-73.831653936784 40.762911210721434, -73.83168110424815 40.7629074745953, -73.83170391741037 40.762907756463036, -73.83171303367013 40.762908527105346, -73.83172645958354 40.76291123112451, -73.83174708100903 40.76291695334078, -73.83176567965765 40.76292546236693, -73.83178784651831 40.76294014686667, -73.8317967496265 40.762949349528654, -73.83180692128872 40.76296459913825, -73.83181430080597 40.762980581284666, -73.83181737662238 40.76299555398441, -73.83181665899068 40.7630081870349, -73.8318113453303 40.76303192201682, -73.83180122536966 40.763048720588486, -73.83178619702178 40.763065709203346, -73.8317701065115 40.763077461624334, -73.83175383550223 40.76308611964119, -73.83174392911086 40.76309056627996, -73.83172658596297 40.76309559458876, -73.83042307429704 40.76340537629935, -73.83040955783652 40.76340472514873, -73.83039638333914 40.76340233652358, -73.83038393435568 40.76339828032762, -73.83037257418147 40.76339267416177, -73.83036263283516 40.76338568060335, -73.83035439877537 40.76337750449232, -73.83034811300408 40.76336838301697, -73.83034395841909 40.76335858119573, -73.83034205509287 40.76334838556652, -73.83034245911796 40.76333809247845, -73.83034515788619 40.76332800178144, -73.83035007485323 40.76331840602703, -73.83035706481334 40.76330958595898, -73.83036592459257 40.763301797021434, -73.831653936784 40.762911210721434)), ((-73.83005077089062 40.76339736340236, -73.83024729551234 40.76333777039672, -73.83021484207835 40.76345486218254, -73.83008862794445 40.76348485566255, -73.83006732928249 40.76348553654895, -73.83005401476956 40.76348232101373, -73.8300407009285 40.76347745034811, -73.83003262876858 40.76347220920172, -73.8300249199522 40.76346428238174, -73.83001851759005 40.763454452918836, -73.83001599806855 40.76344672736331, -73.83001584202599 40.76344150870135, -73.83001812818229 40.763427442570254, -73.83002075678945 40.763421660698135, -73.8300265597465 40.76341390329685, -73.83003415554775 40.76340578113383, -73.83005077089062 40.76339736340236)))",Q100A,6160,Q100A,Q-07,Q-07,Q-07,Q-07,Northern Blvd. bet. Main St. and Linden Pl.,407,20,109,11354,Q,0.658,False,Daniel Carter Beard Mall,Yes,100000158,PARK,20090423000000.00000,18751005000000.00000,,DPR,True,Daniel Carter Beard Mall,Y,Daniel Carter Beard Mall,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q100A/,No,40,16,6,{4A48662F-0062-42F0-A485-3F0BE8B11A8A} +"MULTIPOLYGON (((-73.89182024903091 40.7251038207383, -73.8922559818926 40.72492425161504, -73.89233121649161 40.72502024429541, -73.89182024903091 40.7251038207383)))",Q360Q,5552,Q360Q,Q-05,Q-05,Q-05,Q-05,"69 Ln., 58 Rd., Queens - Mid-Town Exwy. Sr. Rd. S.",405,30,104,11378,Q,0.17,False,Sitting Area 127 CXXVII,Yes,100000057,PARK,20090423000000.00000,19570508000000.00000,,DPR/SDOT,False,Sitting Area 127 CXXVII,N,Sitting Area 127 CXXVII,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360Q/,No,30,15,6,{9B7B08B7-182E-4616-AE86-78B69EC22941} +"MULTIPOLYGON (((-73.92943855562463 40.63239670833995, -73.92989886307238 40.63236758163539, -73.92961563932607 40.63265487065987, -73.9294676455049 40.632668096854154, -73.92943855562463 40.63239670833995)))",B206,5101,B206,B-18,B-18,B-18,B-18,Avenue H bet. Kings Hwy. and E. 49 St.,318,45,63,11234,B,0.197,False,Sunners Playground,Yes,100003837,PARK,20100106000000.00000,19400606000000.00000,4814 KINGS HIGHWAY,DPR,True,Sunners Playground,Y,Sunners Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B206/,No,41,21,8,{2A2EF341-CC27-487F-9092-0091410182B4} +"MULTIPOLYGON (((-73.96510179634521 40.756308831122894, -73.96527707464604 40.75638160708967, -73.96533940790871 40.75640748927166, -73.96516089236022 40.75665066637489, -73.96492329204293 40.75655199435742, -73.96510179634521 40.756308831122894)))",M130,4650,M130,M-06,M-06,M-06,M-06,E. 54 St. bet. 1 Ave. and 2 Ave.,106,4,17,10022,M,0.17,False,Recreation Center 54,No,100003730,PARK,20100106000000.00000,19151001000000.00000,348 EAST 54 STREET,DPR,False,Recreation Center 54,N,Recreation Center 54,,Buildings/Institutions,http://www.nycgovparks.org/parks/M130/,No,73,28,12,{26B901CA-AE06-4CFE-B1C8-F6C58567E5BB} +"MULTIPOLYGON (((-73.92117126127357 40.668661221733615, -73.92116844329027 40.66864295733944, -73.92124393529241 40.668645636750114, -73.92124484117286 40.6686456688883, -73.92126484063687 40.66877534876699, -73.92119353164153 40.668805638322596, -73.92117126127357 40.668661221733615)))",B554,6414,B554,B-16,B-16,B-16,B-16,Eastern Pkwy. bet. Pitkin Ave. and Howard Ave.,316,41,73,11233,B,0.025,False,,No,100008679,PARK,,20140716000000.00000,1416 EASTERN PARKWAY,DPR,False,Brownsville Green,,Brownsville Green,,Garden,,No,55,20,9,{36362F90-1CE3-4145-99AB-8610B7836692} +"MULTIPOLYGON (((-73.98077545284994 40.723725423124556, -73.98070781731859 40.723697097098054, -73.98088162342844 40.72345922593835, -73.98101455911866 40.72351512093635, -73.98084087648482 40.723752822119145, -73.98077545284994 40.723725423124556)))",M313A,5963,M313A,M-03,M-03,M-03,M-03,E. 5 St. at Ave. C,103,2,9,10009,M,0.096,False,5th St Slope Garden,No,100004783,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,5th St Slope Garden,N,5th St Slope Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M313A/,No,74,26,12,{64A3BAAD-7B32-4A92-A1BC-94631EEA146B} +"MULTIPOLYGON (((-73.78641454837448 40.69685814550598, -73.78629273014842 40.69662621772776, -73.78586129966911 40.69677776947347, -73.78575725597875 40.69661830262752, -73.78563495223693 40.69641127158181, -73.78576112393628 40.696377436424775, -73.7862035231871 40.69625879944701, -73.7863638398744 40.696215807579016, -73.78637947622492 40.69621180859836, -73.78639257532674 40.69620946365549, -73.78640482786443 40.6962080473722, -73.78641556349378 40.696207402715636, -73.78642430264846 40.69620728205508, -73.78643461397952 40.69620760376267, -73.78644338845078 40.69620827742061, -73.78645400540469 40.69620959206131, -73.78646457325367 40.69621146222779, -73.7864753023615 40.696213962152605, -73.78648536161694 40.69621689037946, -73.78649558081013 40.696220491587, -73.78650781677064 40.696225730069315, -73.78651790666697 40.69623091414068, -73.78652647760084 40.69623603415876, -73.78653411118407 40.696241246091226, -73.78654459783212 40.696249634028696, -73.78655435450193 40.69625912284197, -73.78655986542692 40.69626546998769, -73.78656535547215 40.696272795954464, -73.78656991491209 40.696279954500405, -73.78657310959102 40.696285817375504, -73.78662988170747 40.69641495565983, -73.78679867757178 40.6967451019551, -73.78641454837448 40.69685814550598)))",Q402,5355,Q402,Q-12,Q-12,Q-12,Q-12,167 St. bet. 108 Dr. and 109 Ave.,412,27,103,11433,Q,1.076,False,Latimer Playground,Yes,100000182,PARK,20090423000000.00000,19600128000000.00000,108-35 167 STREET,DPR/DOE,False,Latimer Playground,Y,Latimer Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q402/,No,32,14,5,{7247EFD4-5C17-4FCD-AE11-E507406BDFC1} +"MULTIPOLYGON (((-73.97854070956227 40.78200746697831, -73.97852902470369 40.78202345861287, -73.9779650653587 40.781783132515365, -73.97819849309721 40.781463695993104, -73.97860540541909 40.781636266073924, -73.97907840263072 40.78183685953774, -73.97885673370969 40.78214025033977, -73.97854070956227 40.78200746697831)))",M219,4904,M219,M-07,M-07,M-07,M-07,W. 78 St. and Amsterdam Ave.,107,6,20,10024,M,0.738,False,Tecumseh Playground,Yes,100004668,PLGD,20100106000000.00000,19520306000000.00000,361 AMSTERDAM AVENUE,DPR/DOE,False,Tecumseh Playground,Y,Tecumseh Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M219/,No,67,29,10,{BD74FF76-7CF3-456E-8DDC-765D5B50E79C} +"MULTIPOLYGON (((-73.96138753943508 40.73534886130217, -73.96278960229075 40.73522561379837, -73.96119810053605 40.736578933664504, -73.96063580372447 40.73694847600497, -73.96024863075112 40.73653427063821, -73.9601233537916 40.73640024527621, -73.96012338933174 40.73640020476564, -73.95969132681974 40.73593796776061, -73.95965332127935 40.73589730732794, -73.95957848395808 40.73581724214423, -73.95956050106987 40.735798002783675, -73.95948746343892 40.7357198625569, -73.959932674854 40.73547689829765, -73.96018934409479 40.73545413512536, -73.96019767525982 40.73545340319068, -73.9602168332688 40.73545171955734, -73.96025876967609 40.73544803385015, -73.96028398337371 40.735445817393526, -73.96051600447969 40.73542542683331, -73.96059313368573 40.7354186499151, -73.96138753943508 40.73534886130217)))",B135,6217,B135,B-01,B-01,B-01,B-01,"Commercial St., Dupont St.",301,33,94,11222,B,6.235,False,Newtown Barge Playground,Yes,100003859,PARK,20100106000000.00000,19420213000000.00000,5 COMMERCIAL STREET,DPR,False,Newtown Barge Playground,Y,Newtown Barge Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B135/,No,50,18,12,{9720118A-2A68-4CD0-8388-0AFDA7843B72} +"MULTIPOLYGON (((-73.98509027731775 40.75882972887764, -73.98510675588334 40.7588369845756, -73.98495819493742 40.759235619649864, -73.98483118717493 40.759182045474645, -73.98509027731775 40.75882972887764)))",M093,5609,M093,M-05,M-05,M-05,M-05,"Broadway, W. 46 St. To W. 47 St., 7 Ave.",105,4,18,10036,M,0.076,False,Father Duffy Square,Yes,100003803,PARK,20100106000000.00000,19340131000000.00000,,DPR,True,Father Duffy Square,Y,Father Duffy Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M093/,No,75,27,12,{77495F9F-20ED-4E13-A60C-F034E2EC4CCA} +"MULTIPOLYGON (((-73.96211619080259 40.692405720658925, -73.96282942648972 40.692324319926215, -73.96293548478417 40.69286730584749, -73.96222224460114 40.6929487072323, -73.96211619080259 40.692405720658925)))",B292,5158,B292,B-02,B-02,B-02,B-02,Willoughby Ave. between Stuben St. and Emerson Pl.,302,35,88,11205,B,0.918,False,Pratt Playground,Yes,100004192,PARK,20100106000000.00000,19590325000000.00000,233 WILLOUGHBY AVENUE,DPR,True,Pratt Playground,Y,Pratt Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B292/,No,57,25,8,{797188BA-6372-45BB-ADE4-333F60AB9D09} +"MULTIPOLYGON (((-73.89783962787203 40.81493886385305, -73.89805716809568 40.81472699461276, -73.89819742357338 40.8148103992599, -73.89830903516986 40.81487676987616, -73.89839007604293 40.81492496121534, -73.8985829872576 40.814737941020965, -73.89858342657996 40.81473820885519, -73.89883447449147 40.81449356788598, -73.89912591682665 40.814666873673005, -73.8984635355909 40.815309872481045, -73.89783962787203 40.81493886385305)))",X247,4707,X247,X-02,X-02,X-02,X-02,E 156 St bet. Fox St and Southern Blvd,202,8,41,10455,X,0.94,False,Fox Playground,Yes,100004895,PARK,20100106000000.00000,19790717000000.00000,724 FOX STREET,DPR,False,Fox Playground,Y,Fox Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X247/,No,85,32,15,{FACE1F9C-558C-442A-B893-ADE2F44C7CC3} +"MULTIPOLYGON (((-73.95874077445448 40.731289567367355, -73.9588438872232 40.73127955729414, -73.9588905313481 40.73156363573463, -73.95881319772995 40.731570987766865, -73.95878738512744 40.73157344142199, -73.95874077445448 40.731289567367355)))",B580,14695,B580,B-01,,,B-01,Java St. bet. West St. and Franklin St.,301,33,,11222,B,0.063,False,,,100024478,PARK,,20160229000000.00000,59 JAVA STREET,DPR,False,Java Garden,,Java Street Community Garden,,Garden,,No,50,26,12,{0716223C-DB65-4FE2-BE0D-91F57B099EF8} +"MULTIPOLYGON (((-73.93613975446817 40.7979300663934, -73.93631890921533 40.79768625165303, -73.93644487610355 40.797739184112174, -73.93657830542347 40.79779525157678, -73.93653410374795 40.79785540494229, -73.93648927433165 40.79791641612064, -73.93639893894911 40.7980393556593, -73.9362656196344 40.79798313946781, -73.93613975446817 40.7979300663934)))",M323,4987,M323,M-11,M-11,M-11,M-11,E. 118 St. bet. 1 Ave. and 2 Ave.,111,8,25,10035,M,0.186,False,Diamante Garden,No,100003900,PARK,20100106000000.00000,20021120000000.00000,306 EAST 118 STREET,DPR,False,Diamante Garden,N,Diamante Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M323/,No,68,29,13,{4D71EF50-63FA-4C6D-B831-1EBF5905CB69} +"MULTIPOLYGON (((-74.0017068596393 40.71592674601586, -74.00233471439851 40.71623003043023, -74.00189975259842 40.716725763861255, -74.00132580920564 40.716448534548746, -74.0017068596393 40.71592674601586)))",M242,4942,M242,M-01,M-01,M-01,M-01,Leonard St. bet. Centre St. and Lafayette St.,101,1,5,10013,M,0.994,False,Collect Pond Park,Yes,100004567,PARK,20100106000000.00000,19600428000000.00000,93 CENTRE STREET,DPR,True,Collect Pond Park,Y,Collect Pond Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M242/,No,65,26,10,{1ADEDC5B-CEC7-4A89-95B7-71D51045328A} +"MULTIPOLYGON (((-73.88736572860253 40.819704623639105, -73.8873657878728 40.81970462189604, -73.88736584713695 40.819704623754895, -73.8873659052112 40.81970462831413, -73.88736596446623 40.81970463557595, -73.88736602134597 40.81970464553702, -73.8873660782211 40.81970465819953, -73.88736613390492 40.819704674462855, -73.88736618721336 40.81970469342535, -73.88736623933345 40.8197047141877, -73.88736628907829 40.81970473764922, -73.88736633763318 40.819704763811075, -73.88736638262752 40.81970479267091, -73.88736642643343 40.81970482333063, -73.88736646667873 40.81970485668834, -73.88736650455179 40.81970489094419, -73.88736653886431 40.81970492789808, -73.88736656961926 40.81970496574901, -73.88736659681511 40.81970500539745, -73.88736662163873 40.81970504594408, -73.88736664290327 40.81970508828821, -73.88736665942498 40.81970513152818, -73.88736667239516 40.819705172063244, -73.8873833688826 40.819767687368206, -73.88740163670397 40.81983608445008, -73.8874212308736 40.81990944276078, -73.88743764948197 40.81997091680983, -73.88745542742217 40.820037472786744, -73.88747428669379 40.820108084753265, -73.88747429609893 40.82010813068779, -73.88747430195109 40.82010817481785, -73.88747430424569 40.82010821984495, -73.88747430179882 40.820108264867415, -73.88747429579743 40.82010830898591, -73.8874742862385 40.82010835400143, -73.88747427312657 40.820108397212465, -73.88747425645857 40.82010844042004, -73.88747423505065 40.82010848272256, -73.88747421008976 40.82010852322054, -73.88747418275968 40.82010856281572, -73.88747415187659 40.820108600606474, -73.88747411743896 40.82010863749325, -73.88747407944987 40.820108671675065, -73.8874740390916 40.820108704954066, -73.88747399518182 40.820108735528116, -73.88747395008971 40.820108764299974, -73.88747390144617 40.820108790366945, -73.8874738516218 40.82010881373125, -73.88747379943133 40.820108834391746, -73.88747374605857 40.82010885325009, -73.88747369031965 40.820108869404635, -73.88747363340143 40.82010888195606, -73.88747358241609 40.82010889091127, -73.88711145047911 40.82016512507406, -73.88711138882854 40.8201651322177, -73.88711133073863 40.82016513666329, -73.88711127146794 40.820165138406274, -73.8871112122034 40.820165136547246, -73.8871111541288 40.82016513198793, -73.8871110948734 40.820165124725925, -73.88711103799325 40.82016511476477, -73.88711098111774 40.820165102102145, -73.88711092543369 40.82016508583864, -73.88711087212488 40.82016506687604, -73.88711082000452 40.82016504611357, -73.88711077025947 40.820165022651935, -73.88711072170429 40.82016499649003, -73.88711067670981 40.820164967630056, -73.88711063290371 40.820164936970265, -73.88711059265826 40.82016490361248, -73.88711055478501 40.820164869356496, -73.88711052047242 40.82016483240254, -73.88711048971746 40.82016479455158, -73.88711046252155 40.82016475490305, -73.88711043769786 40.8201647143564, -73.88711041643334 40.82016467201224, -73.88711039991173 40.820164628772176, -73.88711038694463 40.82016458643613, -73.8870757036579 40.820032457671445, -73.88703893945244 40.819892401580496, -73.8870209743327 40.81982395701169, -73.88700455324509 40.81976139870051, -73.88700454384033 40.81976135276595, -73.8870045379885 40.81976130863586, -73.88700453569429 40.819761263608754, -73.8870045381414 40.819761218586315, -73.88700454414308 40.819761174467814, -73.88700455370227 40.81976112945232, -73.88700456681444 40.819761086241336, -73.8870045834827 40.8197610430338, -73.88700460489078 40.81976100073141, -73.88700462985182 40.81976096023352, -73.88700465718203 40.819760920638444, -73.88700468806525 40.819760882847824, -73.88700472250295 40.819760845961206, -73.88700476049208 40.819760811779524, -73.88700480085036 40.819760778500694, -73.88700484476018 40.819760747926814, -73.8870048898522 40.81976071915509, -73.88700493849568 40.81976069308836, -73.88700498831994 40.819760669724275, -73.88700504051029 40.81976064906397, -73.8870050938829 40.81976063020585, -73.8870051496217 40.819760614051496, -73.88700520653965 40.81976060150032, -73.88700525752479 40.819760592545315, -73.88736560767606 40.819704636127966, -73.88736567051302 40.81970462808485, -73.88736572860253 40.819704623639105)))",X315,6243,X315,X-02,X-02,X-02,X-02,Bryant Av bet. Seneca Av and Garrison Ave,202,17,41,10474,X,0.34,False,Bryant Hill Garden,No,100004968,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Bryant Hill Garden,Y,Bryant Hill Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X315/,No,85,34,15,{2371019B-66F3-4BDC-86FE-52C188D331E7} +"MULTIPOLYGON (((-73.96524813808884 40.604953759854794, -73.96529514462564 40.604948346612964, -73.96530938866668 40.60495160720039, -73.96531935290328 40.60496680921619, -73.96531649684411 40.604978748374215, -73.96529690738323 40.60498715963915, -73.96453657894065 40.60506970712271, -73.96447782025645 40.60507375933612, -73.96446464361509 40.60507185516164, -73.96445325701647 40.60505882288974, -73.96446038623809 40.60504579904522, -73.96446893749938 40.60503820038384, -73.96452733826419 40.60503170584909, -73.96461566011078 40.605020877283295, -73.96472961937641 40.60500679843182, -73.96485070327651 40.604994891904276, -73.96504443585785 40.60497432453535, -73.9651299030099 40.604965665864356, -73.96524813808884 40.604953759854794)), ((-73.96328331655853 40.60516941649884, -73.96330240786793 40.60516718209774, -73.96331415182135 40.60517457282801, -73.9633211963423 40.605187110341056, -73.96331883898395 40.605196063477884, -73.96330943730432 40.605205012564994, -73.96329210748291 40.605209710457224, -73.96321280376185 40.60521640029311, -73.96313056621327 40.60522532873104, -73.963045387179 40.60523537191103, -73.96298077109275 40.60524206720889, -73.96288384572647 40.60525322853542, -73.96280894904818 40.60525991951569, -73.96275314364152 40.605266617536316, -73.96270468155117 40.60527107831501, -73.96267530900668 40.60527442592554, -73.96265916357308 40.60526546679205, -73.962656230864 40.60525091610707, -73.96266505201815 40.60523860793818, -73.96267973748404 40.60523413621338, -73.9627179213585 40.60522967121105, -73.9627796007822 40.60522185576124, -73.96287065269958 40.60521069532691, -73.96291764490441 40.60520623220292, -73.96297639108812 40.60519953595033, -73.96304834920019 40.605192844816656, -73.9631114977639 40.605186149009754, -73.96316730008672 40.605180570162844, -73.96321282596315 40.6051761082493, -73.96324954111944 40.605171642600226, -73.96328331655853 40.60516941649884)), ((-73.96418413455028 40.60507143219555, -73.96421468149404 40.60506786213614, -73.96422642805119 40.605070549348184, -73.96423817077111 40.60508040201058, -73.96423933780002 40.6050920425197, -73.96423581324713 40.60509651791735, -73.96422405810301 40.60510323125163, -73.96389656922646 40.6051411821986, -73.96373796613659 40.605157919796724, -73.9636366356809 40.605167961019475, -73.96358846340263 40.60517421250003, -73.96355439470449 40.605176888859084, -73.96353795036998 40.60517419648601, -73.96353208164112 40.60516345049734, -73.96353091424582 40.60515270419921, -73.96353796650726 40.60514464856683, -73.96354971577829 40.60514017579933, -73.96362490530697 40.60513124573155, -73.96372476957924 40.60511874293006, -73.96383403077319 40.605108033236654, -73.96390686967054 40.60509999826397, -73.96405137721193 40.60508482203236, -73.96410307105617 40.60507946477542, -73.96414654093127 40.60507500184983, -73.96418413455028 40.60507143219555)), ((-73.96238916007883 40.605264796114994, -73.96242177048862 40.6052606643812, -73.96244079366608 40.605264122299786, -73.96245255990726 40.60527586264604, -73.96244983735562 40.605288978758374, -73.96244530033101 40.605299334178156, -73.96243986409038 40.605301401801, -73.96241857526108 40.605305363441744, -73.9623223260212 40.605315687930954, -73.96222041620274 40.605327738580506, -73.96211623946611 40.60533892118989, -73.96205849283893 40.60534321564095, -73.96201093245143 40.60534924243236, -73.96195771533759 40.60535440283087, -73.96194344628148 40.605355779507576, -73.9619280520043 40.60534748870733, -73.96192081546825 40.60533229900844, -73.96193078922855 40.6053171132099, -73.96194166056256 40.60531090410979, -73.96200416551989 40.605306092590006, -73.96212102120815 40.60529301325978, -73.9621590679048 40.60528888429261, -73.9622550926391 40.605278559866385, -73.96234658300513 40.60526961347404, -73.96238916007883 40.605264796114994)))",B184,5792,B184,B-15,B-15,B-15,B-15,Ave. R from E. 7 St. To Coney Island Ave.,315,"44,47,48",61,11223,B,0.258,False,Avenue R Mall,Yes,100005118,PARK,20100106000000.00000,,,DPR,False,Avenue R Mall,N,Avenue R Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/B184/,No,45,"17, 22",11,{0CBA6C94-0499-4FF7-91D6-2F242D30A894} +"MULTIPOLYGON (((-73.92774827695386 40.700990048770805, -73.92799168408334 40.70073447743056, -73.92806468616457 40.70077474896373, -73.92836100572234 40.700463616765596, -73.92840956628464 40.70031724888795, -73.92813553138782 40.700160739261435, -73.928297881797 40.69999608727293, -73.928882145413 40.70032840293964, -73.92802495564824 40.70119778119079, -73.9277566839166 40.7010445701604, -73.92774827695386 40.700990048770805)))",B334,5184,B334,B-04,B-04,B-04,B-04,"Central Ave., Troutman St. and Starr St.",304,34,83,11221,B,1.061,False,Fermi Playground (IS 111),Yes,100004811,PARK,20100106000000.00000,19610609000000.00000,125 CENTRAL AVENUE,DPR/DOE,False,Fermi Playground,Y,Fermi Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B334/,No,53,18,7,{BCA78460-0B0B-49D4-8ACB-F1927D4569D5} +"MULTIPOLYGON (((-73.90636032010167 40.83112522960323, -73.90645217715527 40.83096115199612, -73.9064971178458 40.83088087688293, -73.90653045219311 40.83082575127887, -73.9069543704793 40.830963246689976, -73.90678634218597 40.83126338739485, -73.90636032010167 40.83112522960323)))",X286,4733,X286,X-03,X-03,X-03,X-03,E 168 St bet. Washington Av and 3 Av,203,16,42,10456,X,0.342,False,Rev Lena Irons Unity Park,Yes,100004860,PARK,20100106000000.00000,19970715000000.00000,1216 WASHINGTON AvNUE,DPR,False,Rev Lena Irons Unity Park,Y,Rev Lena Irons Unity Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X286/,No,79,32,15,{3BFC5DFB-62C6-4808-A7E5-BB20D0EB874E} +"MULTIPOLYGON (((-73.86503445987383 40.87987393965168, -73.86504180663256 40.879873717718, -73.86504908010426 40.87987453125932, -73.86510461012863 40.87989223673597, -73.86511098951553 40.87989515637015, -73.86511656282609 40.87989890621226, -73.86512114641606 40.87990336268097, -73.86512458635079 40.87990837791644, -73.86512677026208 40.87991378339628, -73.86512762258239 40.87991939983511, -73.86512711640196 40.8799250408005, -73.86512518639992 40.87993073953417, -73.86490102616214 40.88053522160802, -73.86489838527972 40.880540420634894, -73.86489484928569 40.88054530254261, -73.86489048242457 40.880549780059056, -73.86488536434985 40.88055377313388, -73.86487958537826 40.88055720893327, -73.86487325360122 40.88056002545001, -73.86486647946107 40.880562171485494, -73.86485938761159 40.8805636084646, -73.86485210623857 40.8805643113238, -73.86484476588058 40.88056426490754, -73.86466196990716 40.88052175838632, -73.86465593961053 40.880518681551735, -73.86465069624758 40.88051486003575, -73.86464640330895 40.880510410193146, -73.86464318628819 40.88050546364245, -73.86464114216614 40.880500170878975, -73.86464033350413 40.88049468866101, -73.86464078369309 40.880489182705816, -73.8646424781564 40.880483819586495, -73.86464536911224 40.88047875863332, -73.86500215047718 40.8798942132698, -73.8650051138465 40.87988910556644, -73.86500927091306 40.87988450353252, -73.86501447780223 40.87988056368442, -73.86502055508714 40.87987742268638, -73.86502729373558 40.87987519015334, -73.86503445987383 40.87987393965168)), ((-73.86524520770108 40.87947969023545, -73.86525250604262 40.87947874964245, -73.86525991038731 40.879478776296864, -73.86526719769775 40.879479766336345, -73.86527415091604 40.87948169249291, -73.86528056609683 40.87948449689728, -73.86528625121154 40.87948809558002, -73.86529103800548 40.879492382087285, -73.86529478199387 40.87949722928172, -73.86529737550693 40.87950249205921, -73.86529873699781 40.879508014540214, -73.86529882883133 40.87951363369254, -73.86529764897544 40.87951918112258, -73.86520649615207 40.87976824152289, -73.86520335303824 40.87977306806931, -73.86519933039831 40.8797775018761, -73.86519451028114 40.87978145118924, -73.86518899488088 40.87978483598455, -73.86518289586483 40.879787585253816, -73.86517634148083 40.87978964241609, -73.86516946469715 40.87979096350265, -73.86516241030587 40.87979152436951, -73.8651553230809 40.87979130987739, -73.86511164130343 40.87977739672058, -73.86510607510422 40.87977424030799, -73.86510117447986 40.87977050205743, -73.86509704129753 40.87976626313187, -73.86509376435745 40.87976161278357, -73.86509141345687 40.87975665014784, -73.86509003702307 40.87975148153893, -73.86508966568141 40.87974621595173, -73.86509030632365 40.87974096505475, -73.86509194685883 40.87973584049444, -73.8650945514732 40.87973095118791, -73.86521475787177 40.879502204698696, -73.8652174130164 40.87949696065591, -73.86522121575082 40.87949213938162, -73.86522605307033 40.879487886622854, -73.86523178235191 40.879484327380666, -73.86523823016438 40.879481567710116, -73.86524520770108 40.87947969023545)))",X084,5595,X084,X-12,X-12,X-12,X-12,White Plains Rd. bet. E. 213 St. and E. 215 St.,212,12,47,10467,X,0.38,False,D'Onofrio Square,Yes,100004203,PARK,20100106000000.00000,19260318000000.00000,,DPR,True,D'Onofrio Square,Y,D'Onofrio Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X084/,No,83,36,16,{13EADA90-05FC-4CB2-BF40-B3D831DE6200} +"MULTIPOLYGON (((-74.11414704137226 40.612531968026445, -74.11416807533425 40.612509331429365, -74.1142662563211 40.613046312328855, -74.11436299075143 40.613575372665444, -74.11349239399571 40.61364332171412, -74.1133292389226 40.612986523199055, -74.1133264516167 40.61297415097578, -74.11332157104754 40.61295660101433, -74.11331863227757 40.612947584284626, -74.11331313829862 40.61293274549833, -74.11330811958928 40.612920829337206, -74.11330010181156 40.61290405061238, -74.11329000400892 40.61288571243218, -74.11327814482158 40.61286696354786, -74.11320646529438 40.612743391611524, -74.11395995286735 40.61267604985901, -74.11399240134739 40.61267179333595, -74.1140155882657 40.61266567830833, -74.11403220150339 40.61265676827403, -74.11404448980282 40.612647844518065, -74.11405981138508 40.61263404502685, -74.11407107512493 40.61262440366815, -74.11408857640194 40.61260617864634, -74.11412505858624 40.61255948368888, -74.11414704137226 40.612531968026445)))",R070,6046,R070,R-01,R-01,R-01,R-01,Little Clove Rd. bet. Windsor Rd. and Victory Blvd.,501,49,120,10314,R,2.056,False,Clove's Tail,Yes,100004303,PARK,20100106000000.00000,19540503000000.00000,,DPR,True,Clove's Tail,N,Clove's Tail,Neighborhood Park,Undeveloped,http://www.nycgovparks.org/parks/R070/,No,63,24,11,{2F1C60A4-DE49-4976-B826-0B573FAA9C2B} +"MULTIPOLYGON (((-73.93085595061291 40.80352366731962, -73.9307360382362 40.80334028976636, -73.93105968057847 40.80347824480241, -73.9310651886295 40.80348176634566, -73.93107056976359 40.80348540037513, -73.93107581924609 40.803489141484995, -73.93108093470599 40.803492990574405, -73.9310859114086 40.80349694223746, -73.93109074579971 40.80350099557167, -73.93109543432878 40.80350514607235, -73.93109997344347 40.803509391035895, -73.93110436077646 40.803513727759466, -73.93110859277628 40.8035181526389, -73.93111266470547 40.80352266296995, -73.93111657538275 40.80352725514989, -73.93112032125657 40.803531925574624, -73.93112389995959 40.80353667154127, -73.93112730912547 40.80354148944646, -73.9311305463887 40.803546374786244, -73.93113360819687 40.803551324857025, -73.9311364933686 40.80355633605614, -73.93113919953751 40.8035614047802, -73.93114172552318 40.803566526525955, -73.9311440665871 40.80357169948967, -73.9311462239209 40.80357691736855, -73.9311481963414 40.80358217836089, -73.93114997911285 40.803587477961344, -73.93115157461098 40.803592810768414, -73.93115297928153 40.80359817587943, -73.93115419312998 40.803603567891436, -73.93115521497595 40.803608982301235, -73.93115604482219 40.80361441640733, -73.93115668030498 40.80361986390485, -73.9311571226103 40.80362532389393, -73.93115737055865 40.80363079097097, -73.93115742415465 40.803636260633425, -73.93115728340196 40.80364172927935, -73.93115694830425 40.80364719330665, -73.9311564188661 40.80365264821293, -73.93115569746229 40.803658089497084, -73.93115478172359 40.803663516257195, -73.9311536740284 40.803668920390145, -73.93115237319356 40.80367430009432, -73.93115088396286 40.803679651770445, -73.93114920397093 40.80368497091465, -73.9311473355924 40.80369025302586, -73.93114528001519 40.80369549540326, -73.93114303961484 40.803700692645286, -73.93114061557738 40.80370584385216, -73.93113800909437 40.80371094272102, -73.93113522372465 40.803715985652026, -73.9311322582859 40.803720969942965, -73.93112911752212 40.80372589199465, -73.93112580380706 40.80373074820652, -73.93112231833133 40.80373553317622, -73.93111866346607 40.80374024600468, -73.93111484277101 40.80374488219155, -73.931110859805 40.80374943813688, -73.93110671457187 40.80375391023875, -73.93110241299959 40.803758295799106, -73.93109795746113 40.80376259211786, -73.93109335151532 40.80376679559516, -73.9310885975361 40.80377090263044, -73.9310836990814 40.80377491052423, -73.93107865971011 40.80377881567668, -73.93107348297741 40.803782618089926, -73.93106817481515 40.80378631146399, -73.93106273640934 40.80378989489902, -73.93105717250306 40.803793365696365, -73.93105148665512 40.80379672025617, -73.93104568479188 40.80379995768146, -73.93101221001888 40.803816272703564, -73.93097719757898 40.80383090376277, -73.93095163158033 40.803840657964834, -73.93094281696095 40.80384305881786, -73.93093367259053 40.80384460940168, -73.93092053424644 40.803846459258644, -73.93090947764325 40.80384756654967, -73.93089880335992 40.803847970779195, -73.93088623034518 40.80384748417651, -73.93087667241458 40.803846724728196, -73.9308669136811 40.80384533210795, -73.93085728249612 40.80384322096527, -73.93084589850949 40.8038400596891, -73.93083567369254 40.803836728012485, -73.930823967355 40.80383244181762, -73.93081270765525 40.80382714282836, -73.93080024807011 40.803820144776836, -73.93078813302442 40.80381231126779, -73.9307698656391 40.80379715931033, -73.93075380400107 40.80378054266267, -73.93063874836633 40.80360459524829, -73.93085595061291 40.80352366731962)))",M208G,5849,M208G,M-11,M-11,M-11,M-11,E. 127 St. and Harlem River Drive,111,8,25,10035,M,0.351,False,Harlem River Park,Yes,100003796,PARK,20100106000000.00000,19560112000000.00000,,DPR,True,Harlem River Park,N,Harlem River Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M208G/,No,68,29,13,{1416C9D0-72EB-499D-8D0B-259E5E5C9C5D} +"MULTIPOLYGON (((-73.91421720909678 40.683751920317356, -73.91451319502859 40.683718296560166, -73.91452544979573 40.683779496514774, -73.9145357698406 40.68383105322357, -73.91454600293581 40.683882164111935, -73.91425012207375 40.68391631933512, -73.91423988920239 40.68386520661962, -73.9142295681958 40.683813651684666, -73.91421720909678 40.683751920317356)))",B438,5241,B438,B-16,B-16,B-16,B-16,Hopkinson Ave. and Decatur St.,316,41,73,11233,B,0.115,False,700 Decatur St Block Association,No,100004001,PARK,20100106000000.00000,20021120000000.00000,47 HOPKINSON AVENUE,DPR,False,700 Decatur St Block Association,N,700 Decatur St Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B438/,No,55,25,8,{6B0567EC-26F8-439A-AE94-B2AAC839B4F3} +"MULTIPOLYGON (((-73.90767549102084 40.85487400098724, -73.90794940063682 40.855018138197366, -73.90774035239382 40.855247245319156, -73.90758815902865 40.85516715807689, -73.90746644228734 40.85510310761851, -73.90767549102084 40.85487400098724)))",X300,4790,X300,X-05,X-05,X-05,X-05,W. 180 St. bet. Davidson Ave. and Grand,205,14,46,10453,X,0.207,False,Davidson Playground,Yes,100004563,PARK,20100106000000.00000,19991006000000.00000,2081 DAVIDSON AVENUE,DPR,False,Davidson Playground,Y,Davidson Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X300/,No,86,33,15,{093E5953-E87E-4A6F-A050-6B5B284E5FF0} +"MULTIPOLYGON (((-73.96140516032709 40.730320045624694, -73.96137535226852 40.73016060509306, -73.96035539271466 40.73026103886721, -73.96035456956008 40.73025581833571, -73.96035382967106 40.73025589012165, -73.96026938461483 40.72973104551036, -73.96031064760905 40.7297270416707, -73.96028009427889 40.72952793317888, -73.96028314140152 40.729527643365635, -73.9602809980827 40.72951499498235, -73.96221369036806 40.729327864150875, -73.96349338812118 40.72920394104377, -73.96356960408774 40.72994451015834, -73.9635865129365 40.73010881149445, -73.96140516032709 40.730320045624694)))",B385,4593,B385,B-01,B-01,B-01,B-01,West St. bet. Kent St. and Greenpoint Ave.,301,33,94,11222,B,6.611,False,WNYC Transmitter Park,Yes,100003886,PARK,20100106000000.00000,19901026000000.00000,2 KENT STREET,DPR,False,WNYC Transmitter Park,Y,WNYC Transmitter Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B385/,Yes,50,26,12,{BF0FA841-10C0-4707-B313-9A3930A9A6EE} +"MULTIPOLYGON (((-73.92561018812562 40.83253481828005, -73.92609516300203 40.83201364097504, -73.92636772085253 40.832120728355825, -73.92583655266506 40.83281091255643, -73.92587408826562 40.8328256606759, -73.92583499169716 40.8328764603589, -73.9258341508391 40.8329064931154, -73.92644399385044 40.833089495883755, -73.92642510169118 40.8331140439228, -73.92571103053378 40.83289172860714, -73.9255402910516 40.83283706563349, -73.92546340178552 40.83281244867096, -73.92561018812562 40.83253481828005)))",X105,5678,X105,X-04,X-04,X-04,X-04,Jerome Ave. at E. 165 St.,204,8,44,10452,X,0.764,False,Jerome Slope,Yes,100003720,PARK,20100106000000.00000,19341128000000.00000,,DPR,False,Jerome Slope,Y,Jerome Slope,Neighborhood Park,Nature Area,http://www.nycgovparks.org/parks/X105/,No,77,29,15,{61AFD901-84F8-4F85-9114-53F4823EA62B} +"MULTIPOLYGON (((-73.91510277360271 40.74272865155067, -73.91523389772541 40.742740793318255, -73.91536569536402 40.742747511675816, -73.91549777698486 40.742748785623704, -73.91562975658195 40.74274461307713, -73.91576124339738 40.74273500455673, -73.91603307143167 40.74276592566392, -73.91628548704546 40.74279604677826, -73.91649473085415 40.74282101576103, -73.91648491371696 40.74285563855124, -73.91609885165218 40.74297680217152, -73.91571472377969 40.74290908450987, -73.91562730509122 40.74288163247301, -73.91549881724293 40.74284623028294, -73.91536828008633 40.74281547216059, -73.91523598121496 40.742789427649825, -73.91510221533932 40.74276815459426, -73.9150978726071 40.74276715092935, -73.91509381828118 40.74276559816741, -73.91509017306863 40.7427635423234, -73.91508704226749 40.74276104290836, -73.91508451813385 40.74275817383209, -73.91508267515133 40.74275501889662, -73.91508156766342 40.742751671794856, -73.91508122751452 40.74274822890457, -73.91508166522935 40.74274479289138, -73.91508286647168 40.742741464601465, -73.91508479915124 40.742738340365534, -73.91508740276576 40.74273551379164, -73.91509060380554 40.742733065871185, -73.91509430627556 40.74273106947451, -73.91509840354239 40.74272958395635, -73.91510277360271 40.74272865155067)))",Q034,6129,Q034,Q-02,Q-02,Q-02,Q-02,"Queens Blvd. bet. 48 St., Greenpoint Ave. and 50 St.",402,26,108,11377,Q,0.467,False,Joseph Sabba Triangle / SUNNYSIDE VETERANS TRIANGLE (old),Yes,100000197,PARK,20090423000000.00000,19331018000000.00000,,DPR,True,Sabba Park,Y,Sabba Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q034/,No,"30, 37",12,14,{0579D96D-117D-40DA-821F-5C6FB5C6043C} +"MULTIPOLYGON (((-73.89433215225341 40.660922189145396, -73.89440115123733 40.66089239676613, -73.89454890679825 40.661091143146926, -73.89448067604214 40.66112185754787, -73.89433215225341 40.660922189145396)))",B415,5227,B415,B-05,B-05,B-05,B-05,Georgia Ave. and New Lots Ave.,305,42,75,11207,B,0.037,False,Georgia Ave Garden,No,100004259,PARK,20100106000000.00000,19980812000000.00000,328 NEW LOTS AVENUE,DPR,False,Georgia Ave Garden,N,Georgia Ave Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B415/,No,60,19,8,{F2DF5377-8429-4AEE-8A79-552B6001A595} +"MULTIPOLYGON (((-73.80520991162142 40.69575003179894, -73.8054010048907 40.695589886030106, -73.80551121867066 40.69566430717101, -73.80520991162142 40.69575003179894)))",Q243,6186,Q243,Q-12,Q-12,Q-12,Q-12,"Liberty Ave., 101 Ave. bet. Waltham St. and 146 St.",412,28,103,11435,Q,0.036,False,Norelli-hargreAvs Memorial Tria,Yes,100000120,PARK,20090423000000.00000,,,DPR,False,Norelli-Hargreaves Memorial Triangle,N,Norelli-Hargreaves Memorial Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q243/,No,32,10,5,{67583070-22C9-47EA-B12C-AD906C9E81EA} +"MULTIPOLYGON (((-73.99089146557496 40.72847639700924, -73.99091781850206 40.72848717457781, -73.99078830253492 40.72901055522914, -73.9905672948257 40.72892017039515, -73.99089146557496 40.72847639700924)))",M016,5735,M016,M-03,M-03,M-03,M-03,"3 Av To 4 Av, E 6 St To E 7 St",103,2,9,10003,M,0.165,False,Cooper Triangle,Yes,100004049,PARK,20100106000000.00000,18281223000000.00000,,DPR,True,Cooper Triangle,Y,Cooper Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M016/,No,66,27,12,{189B8ABE-8BA4-4B3C-B2D2-0825E44A189E} +"MULTIPOLYGON (((-73.94552970219333 40.7008750965469, -73.94607409734951 40.70052193788506, -73.94631932966983 40.70073893547616, -73.9463880743674 40.700694533545295, -73.94645682015602 40.700650132474216, -73.94669670267146 40.70086239187521, -73.94655921088311 40.70095119606123, -73.94601380976036 40.70130346411924, -73.94586536771715 40.7011721141403, -73.94552970219333 40.7008750965469)))",B286,6623,B286,B-01,B-01,B-01,B-01,"Whipple St., Bartlett St., between Throop Ave. and Flushing Ave.",301,33,90,11206,B,1.032,False,Bartlett Playground (PS 168),Yes,100005155,PARK,20100106000000.00000,19560615000000.00000,38 BARTLETT STREET,DPR,False,Bartlett Playground,Y,Bartlett Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B286/,No,53,18,7,{519B1E99-8767-42DA-85FC-E5B8247D4CBD} +"MULTIPOLYGON (((-73.92596611446989 40.79081801536284, -73.92600213459525 40.79082434830352, -73.92603764671765 40.79083789211726, -73.92894082275372 40.791545248287925, -73.93016483297552 40.79202544906718, -73.92925361302551 40.79274413844261, -73.92823417409232 40.79355714006334, -73.92820357494354 40.79392484843208, -73.9276996991889 40.79997928861566, -73.92763232476312 40.80008537740394, -73.92629869206688 40.7995160290835, -73.92631167617877 40.79945374352662, -73.92631661614722 40.79939079275979, -73.9263134627468 40.799327776485256, -73.92630224733304 40.79926529265413, -73.92628307591839 40.799203935661595, -73.92625613154804 40.799144290045014, -73.9262216707533 40.79908692237747, -73.92599666142709 40.79893528798959, -73.92576608538758 40.79878856269948, -73.9255301273429 40.79864686545938, -73.92528897792727 40.79851030892264, -73.92504283132641 40.79837900394475, -73.92479188409632 40.79825305598078, -73.92453633871865 40.79813256508768, -73.92427640122564 40.79801763042557, -73.92401228002457 40.797908342152446, -73.92374419323905 40.79786767954023, -73.92347779271303 40.79782105791564, -73.9232133047951 40.797768517063055, -73.92295096056284 40.79771010397585, -73.92269098398054 40.79764586654515, -73.92243359899916 40.79757586166897, -73.92234104425091 40.79751945147069, -73.92225412158837 40.797458085043004, -73.92217328802607 40.797392086887065, -73.92209897092373 40.797321803096274, -73.92203156205505 40.79724760675516, -73.92197141761982 40.79716988803321, -73.92191885350107 40.79708905688316, -73.92187414763967 40.79700553944015, -73.9218375364812 40.79691977711855, -73.92180921142806 40.796832221206344, -73.9217893235777 40.79674333466904, -73.92177797662274 40.796653584940906, -73.92177523040391 40.79656344572801, -73.92178109973084 40.796473393405606, -73.9217955543877 40.79638390251537, -73.9218185167669 40.79629544396303, -73.92209790077854 40.79591039919087, -73.92236906692627 40.795521975812854, -73.92263194409898 40.795130276495556, -73.9227484501983 40.79495871929699, -73.92292799330778 40.79469433465188, -73.92302172850853 40.79456102689673, -73.92409962350234 40.79299234605577, -73.92453414076338 40.79242950606666, -73.9249504772509 40.79196879274359, -73.92548812733754 40.791356982121066, -73.92596611446989 40.79081801536284)), ((-73.91450874954563 40.7968807399748, -73.91317297974255 40.79628443080884, -73.91272763941753 40.79606680829751, -73.91270538673952 40.796075683886016, -73.911698294512 40.796166481435286, -73.91280888819553 40.79490724518216, -73.9135240038655 40.79409638624296, -73.91347625664136 40.79401867954509, -73.91347945658774 40.79396796035838, -73.9137801766951 40.79322476039482, -73.9148842172421 40.791760795098014, -73.91498851954935 40.791666054749, -73.9155220084899 40.79118146969295, -73.91583351173504 40.79089851798874, -73.92040330877028 40.792941958679066, -73.92140677448586 40.79262977377779, -73.92189095015462 40.792821539424956, -73.9216164108584 40.793150356316204, -73.92133418226949 40.793475392392786, -73.92104435449936 40.79379654230205, -73.92074701884533 40.79411370519403, -73.92044227135266 40.79442677842048, -73.9201302092536 40.79473566293565, -73.91981093097172 40.795040259694154, -73.91948453967561 40.795340470554244, -73.91915113853601 40.79563620097599, -73.9188108354711 40.79592735552224, -73.91846373721754 40.79621384145645, -73.91811117437723 40.796466811243334, -73.91775403369039 40.79671604680619, -73.91739238513756 40.79696149952604, -73.91702629514678 40.79720312168223, -73.91665583725607 40.79744086826105, -73.91628108026838 40.79767469334528, -73.91621757508535 40.79764548631542, -73.91614245585728 40.79761093894171, -73.91609080091305 40.79758783684655, -73.91504260419616 40.79711905489881, -73.91450874954563 40.7968807399748)), ((-73.92073273502844 40.80005162265179, -73.92064954648286 40.79994283009795, -73.92049589384034 40.79976559145927, -73.92042975167763 40.799700771986345, -73.92041611418021 40.79968842122498, -73.92029862311381 40.79958200905712, -73.92016828377344 40.799481402396005, -73.92003620073756 40.79939048825453, -73.91990762665739 40.799310521971414, -73.91973025890069 40.79921681417031, -73.91961810087112 40.7991644674111, -73.91948263299686 40.799102571572924, -73.91944083974798 40.799084158671505, -73.91922612061593 40.798990282602034, -73.92004214958 40.79782565706474, -73.9201281068181 40.79779164084366, -73.92021787084495 40.79776387666229, -73.92031065576582 40.79774260710347, -73.92040564968791 40.79772801890323, -73.92050202064857 40.7977202393534, -73.92059892727842 40.797719336308916, -73.92069552117032 40.79772531818972, -73.92079095754428 40.797738132187106, -73.9208843999844 40.797757666067724, -73.9210252983079 40.79776958174948, -73.92116509587507 40.79778748663111, -73.92130335080182 40.797811323683376, -73.92143962833194 40.797841018774385, -73.92157349847108 40.79787647706606, -73.92170454072186 40.79791758661901, -73.92183234171245 40.79796421929156, -73.92195649756901 40.798016228039295, -73.92207661865329 40.79807344871965, -73.92219232600723 40.79813570008864, -73.92233523143345 40.798246195034125, -73.92250911645148 40.79835111492523, -73.92268694062182 40.79845214883621, -73.92286855590834 40.79854921200297, -73.92305380834588 40.798642220558506, -73.92324254040292 40.79873109783817, -73.92408259201719 40.79914984620278, -73.92535968855505 40.799743597060846, -73.9254225802978 40.79976407190248, -73.92548806021736 40.79977914808713, -73.92555532982153 40.799788641392816, -73.9256235680249 40.799792436022706, -73.9256919394433 40.79979048551119, -73.92575960979893 40.79978281363418, -73.92582575421643 40.79976951441451, -73.92588956196666 40.79975074942351, -73.92595025661161 40.799726748694134, -73.92614191985088 40.79977639192792, -73.92618342894404 40.799793441559466, -73.92671623016058 40.800012281417565, -73.92747962252733 40.80032582644995, -73.92707068558981 40.80096973348408, -73.92623595240521 40.80099121146136, -73.92574146391912 40.80182031505309, -73.92551698981812 40.80197841856115, -73.92545472183541 40.80220644684071, -73.9254048908342 40.80220990674156, -73.9253977229986 40.8022105756764, -73.92539055161481 40.802211238305, -73.92538338142195 40.80221189553095, -73.925376210049 40.80221254825317, -73.92536903749793 40.80221319467068, -73.92536186376671 40.802213836584535, -73.9253546900414 40.8022144730949, -73.92534751513803 40.80221510330059, -73.92534034023956 40.8022157290033, -73.92533316297698 40.80221634930106, -73.92531880847056 40.802217572785814, -73.92531162885469 40.80221817777223, -73.92530444924567 40.802218776454716, -73.92529726845765 40.80221936973298, -73.9252900876755 40.8022199576078, -73.92528290571434 40.80222054007841, -73.92527572257404 40.802221117144846, -73.92526853943866 40.80222168970832, -73.92526135512517 40.80222225596708, -73.92525417081566 40.80222281862343, -73.92524698414402 40.802223374073805, -73.92523979747935 40.80222392322021, -73.92523261200363 40.802224468764955, -73.92522542416381 40.802225008904756, -73.92521823514488 40.80222554364028, -73.92521104613299 40.80222607207194, -73.92520385593993 40.80222659690035, -73.92519666693887 40.802227115425566, -73.92518947438872 40.802227628545104, -73.92518228303057 40.80222813536141, -73.92517509049127 40.802228638574526, -73.92516789677394 40.80222913548294, -73.92516070424765 40.80222962698866, -73.92515350935723 40.80223011308942, -73.9251463144728 40.802230593786746, -73.9251391184083 40.80223106998035, -73.92513192234972 40.8022315407705, -73.9251247262982 40.80223200525677, -73.92511752906654 40.802232465239264, -73.92511033065688 40.80223291891709, -73.92510313106817 40.80223336719071, -73.92509593266945 40.8022338109621, -73.92508873309171 40.80223424932934, -73.92508153233588 40.80223468139184, -73.92507433158504 40.80223510895139, -73.92506713084022 40.80223553110752, -73.92503111417061 40.802237560828054, -73.92502391109169 40.80223795056199, -73.92501670564869 40.80223833489091, -73.92500950021169 40.802238713816436, -73.9250022947807 40.80223908733851, -73.92499508816967 40.802239456356844, -73.92498788038066 40.802239819070515, -73.92498067378267 40.80224017638147, -73.92495183915355 40.802241553386544, -73.92491578622565 40.80224315350931, -73.92490136367479 40.80224375555332, -73.92487972515212 40.80224461944113, -73.92487251153334 40.80224489659635, -73.92485808312976 40.80224543379517, -73.92485086834397 40.8022456947393, -73.92484365237925 40.802245950279165, -73.92483643878961 40.802246201317665, -73.924829222838 40.802246445150175, -73.92482200689138 40.80224668447974, -73.92481478976578 40.802246918405096, -73.9248075738313 40.802247146927755, -73.9248003567168 40.80224737094676, -73.92479313960938 40.80224758866178, -73.92477870541275 40.80224800788145, -73.92475705060609 40.80224859798388, -73.92474983116495 40.80224878327673, -73.92474261291494 40.80224896316686, -73.92473539348497 40.802249138553286, -73.924728174061 40.80224930853626, -73.92472095582922 40.80224947221608, -73.92471373523244 40.80224963139142, -73.92470651582772 40.80224978426357, -73.92469929405804 40.802249932631234, -73.92469207466556 40.80225007469652, -73.92468485409304 40.80225021225809, -73.9246776335277 40.802250343515695, -73.92467041296737 40.80225047027037, -73.9246631912281 40.802250591620805, -73.92465597068096 40.80225070666806, -73.92464874895387 40.80225081721165, -73.92464152841795 40.80225092235252, -73.92463430670306 40.802251022089195, -73.92462708499426 40.80225111642243, -73.92461986329053 40.80225120625275, -73.92461264159495 40.80225128887858, -73.92460541871942 40.80225136700068, -73.92459819703502 40.802251439720145, -73.92459097535674 40.80225150703616, -73.92457652964838 40.80225162545633, -73.92456208514953 40.80225172226346, -73.92454763949009 40.80225179745604, -73.92451874824363 40.80225188390042, -73.92450430384166 40.802251895152956, -73.9244898582792 40.80225188479097, -73.92447541155721 40.80225185191391, -73.92441763201992 40.80225150877509, -73.9244104104938 40.802251441905554, -73.92440318778881 40.80225136963173, -73.92439596627602 40.802251291054795, -73.92438874358437 40.802251207073574, -73.92438152208184 40.802251119490755, -73.92437430058752 40.80225102470346, -73.92436707909731 40.80225092631374, -73.92435985761531 40.80225082071953, -73.92435263613844 40.80225071062241, -73.92433819320323 40.80225047421782, -73.92432375266276 40.80225021620105, -73.92430209189831 40.80224978865001, -73.92425155625507 40.80224860281484, -73.92424433724089 40.80224841166763, -73.92423712060199 40.80224821601905, -73.92422990159922 40.80224801496541, -73.9242226837887 40.80224780760865, -73.9242154659854 40.80224759394794, -73.92420824937024 40.802247377586085, -73.92420103276334 40.80224715401976, -73.92419381616267 40.802246925049985, -73.92417938416283 40.802246452701915, -73.92415773798828 40.80224570275467, -73.92415052379388 40.80224544226631, -73.92414330960571 40.802245176374505, -73.92413609542476 40.802244904178764, -73.92412888124895 40.80224462748011, -73.92412166826449 40.80224434537873, -73.92411445528619 40.80224405787395, -73.92410724349915 40.80224376496649, -73.92408560817537 40.80224285382349, -73.92407118702745 40.80224221937918, -73.92398280496135 40.80219328473625, -73.92213088436098 40.801410897040086, -73.92199882858402 40.80135184486452, -73.92187073312557 40.801287953236226, -73.92174690474022 40.801219376361935, -73.92162764068865 40.80114627654719, -73.9215132275462 40.801068829598535, -73.92140393646582 40.80098722211845, -73.92130003147639 40.800901648809514, -73.92120176118553 40.80081231426942, -73.92110936114945 40.80071943299247, -73.9210521447765 40.800611075444934, -73.92092239744366 40.80037356622581, -73.92086290044983 40.800262301101554, -73.92079786862857 40.80014896279383, -73.92073273502844 40.80005162265179)), ((-73.92434828382615 40.79048054399922, -73.92447146681876 40.790345585680264, -73.92536281369756 40.790621521495, -73.92547474367686 40.79062320582083, -73.92563209641591 40.79068321957927, -73.92566841999272 40.790693582561374, -73.92430452761987 40.79218280924195, -73.92328079613903 40.79321070659956, -73.9217152514679 40.79459251364005, -73.92023533840312 40.79592633928222, -73.92019477023051 40.7959629021231, -73.92018783453771 40.79596614992728, -73.91969295119371 40.796380880004634, -73.91961690776506 40.79646374414349, -73.91957667381925 40.796539905586, -73.91954387752929 40.796618099230955, -73.91951869124118 40.796697905571925, -73.91950125294923 40.79677889787321, -73.91949165444491 40.79686064306182, -73.91948994842443 40.79694270263301, -73.9194961425581 40.79702463714847, -73.91951020422677 40.79710600804065, -73.91953205814951 40.79718637941219, -73.91956158756294 40.797265321638626, -73.91960688533372 40.79730682036184, -73.91964625199843 40.79735167829964, -73.91967925919003 40.79739940618816, -73.91970554966919 40.79744948599645, -73.91972483495073 40.797501374526725, -73.91973690833534 40.797554506124634, -73.91974163778684 40.79760830438056, -73.91885470638609 40.798828782765334, -73.91765784636993 40.798292956103104, -73.91653850042134 40.79779308324043, -73.91653066053712 40.79778947736502, -73.9169823060345 40.79748374252402, -73.91742870592208 40.79717359329614, -73.91786978546993 40.796859081017004, -73.91830547232185 40.79654025792468, -73.9187356929403 40.79621717715741, -73.91905078622258 40.79595428354873, -73.91936134135011 40.795688289074675, -73.91966730495632 40.79541924056044, -73.91996862604965 40.79514718303171, -73.92020722724102 40.794924966316565, -73.92044064785463 40.79469959467453, -73.92066881554763 40.79447113832608, -73.92089165916647 40.79423966659163, -73.92110911111251 40.794005251495605, -73.92132110260445 40.79376796596164, -73.92238651805228 40.7926297452002, -73.9242634132794 40.7905735271068, -73.92434828382615 40.79048054399922)), ((-73.92597118215333 40.79081254357314, -73.92596611446989 40.79081801536284, -73.92597102108455 40.790812482235644, -73.92597118215333 40.79081254357314)))",M104,6300,M104,M-11R,M-11R,M-11,M-11,East River and Harlem River,111,8,25,10035,M,256.111,False,Randall's Island Park,No,100004488,PARK,20100106000000.00000,18350408000000.00000,,DPR,True,Randall's Island Park,Y,Randall's Island Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/M104/,Yes,68,29,12,{37B937EF-C98C-4D00-846D-C45D8975DB3B} +"MULTIPOLYGON (((-73.9735944822208 40.76383486434005, -73.97363541116064 40.76383450540735, -73.97367024772535 40.76383732925076, -73.97370133319521 40.76384380647345, -73.9737351923308 40.763853517130215, -73.97377108874608 40.76386877174458, -73.97380346250758 40.76388807511414, -73.97383362239292 40.76391427493326, -73.97385730155216 40.763940402134146, -73.97387162143015 40.76396790768076, -73.97388291970755 40.763999264897386, -73.97388932168907 40.7640310955689, -73.97388551885174 40.76406400453219, -73.97387818263641 40.7640859607625, -73.9738672330761 40.7641106059787, -73.97363231198322 40.76444411359215, -73.97362117333147 40.764458383132, -73.97361174906177 40.764462133374465, -73.97360331925054 40.76446391624247, -73.97359327801382 40.76446445874639, -73.97358749630261 40.76446359023562, -73.97358276875329 40.76446252115381, -73.973576674787 40.76446060348356, -73.97315921447851 40.76428706178393, -73.97315396746808 40.764281930389316, -73.97315078294378 40.7642755171573, -73.97314913239757 40.76427146360348, -73.97314873981702 40.76426697179736, -73.97314910198901 40.764261695828, -73.97315229225653 40.76425385948398, -73.97315491784981 40.764248303084734, -73.97315686119921 40.764245817245595, -73.97340260588736 40.76391702182713, -73.97342594268734 40.76389543762455, -73.97344973112929 40.76387874415945, -73.97348120683658 40.763862923246705, -73.9735128359986 40.763851327526275, -73.97355403695029 40.76384004376817, -73.9735944822208 40.76383486434005)))",M062,6554,M062,M-13,M-13,M-13,M-13,"5 Av, W 58 St To W 59 St",105,4,18,10019,M,0.625,False,Grand Army Plaza (part of Central Park for special event layer),No,100005222,PARK,20100106000000.00000,18700728000000.00000,1 GRAND ARMY PLAZA,DPR,True,Grand Army Plaza,N,Grand Army Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M062/,No,75,28,12,{714E1782-6A26-496A-AA4B-0588C4E296F5} +"MULTIPOLYGON (((-73.98222274690765 40.605531611728495, -73.98221236605096 40.60547773280358, -73.98243465506906 40.60550138857858, -73.98222274690765 40.605531611728495)))",B160,6103,B160,B-11,B-11,B-11,B-11,"Quentin Rd., Kings Hwy., W. 9 St.",311,44,62,11223,B,0.057,False,Ketchum Triangle,Yes,100003924,PARK,20100106000000.00000,19231025000000.00000,,DPR,False,Ketchum Triangle,Y,Ketchum Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B160/,No,47,17,10,{113ABACB-D752-494A-A919-A40F6595BFD1} +"MULTIPOLYGON (((-74.25204073763335 40.50292259164051, -74.25184883913407 40.50265464052713, -74.2505301627978 40.502941953221374, -74.24970060133089 40.50041199571503, -74.24953573959654 40.50044864763383, -74.24953175021463 40.500469284826515, -74.24897864723025 40.50059248329182, -74.2489728384188 40.50057378911631, -74.24862347687757 40.50065145483058, -74.24862928442512 40.500670150827254, -74.24799475800495 40.500811208304334, -74.2479889506259 40.50079251317624, -74.24777223720366 40.50084068886011, -74.24777804570599 40.50085938399656, -74.24711023420012 40.501007835177376, -74.24711287738111 40.50098726220656, -74.24687615605175 40.50103988288654, -74.24689291240114 40.50105614468653, -74.24621884611224 40.501205980141336, -74.24622233355322 40.501185219870585, -74.24529491564086 40.50139136504215, -74.2445034667973 40.49900296058738, -74.24550331315808 40.49878193765289, -74.24727851167617 40.49838949260386, -74.24717897364668 40.49811471747643, -74.2436103651378 40.49890360054408, -74.2436024727821 40.498894421053414, -74.24181588738958 40.4992643180106, -74.2412449173925 40.497687749570424, -74.23645032712909 40.50025924731088, -74.23620520189894 40.500382676695345, -74.23203845168328 40.50165831496761, -74.23166407099087 40.501772920332826, -74.22865380807792 40.50294712620763, -74.22859225000933 40.502965545868896, -74.22852823375408 40.502980634819636, -74.22842275564948 40.50299916435848, -74.22831453769074 40.503010651683304, -74.22822998465956 40.5030185293359, -74.2281168733149 40.50302385665735, -74.22799624667073 40.50302111831998, -74.223319881312 40.50254197686665, -74.22331985313706 40.50253919247499, -74.22331404841388 40.50196503324454, -74.22304531898861 40.501446005340796, -74.22251021998574 40.50041248172321, -74.2250953380772 40.50046947218372, -74.22540614381076 40.50132369721316, -74.22769082828185 40.501337273919404, -74.22841616229857 40.50127971123213, -74.22850999521002 40.50126843615942, -74.22724748307166 40.497653516576655, -74.22749127015842 40.49754366379244, -74.22878177139722 40.50123862552831, -74.22882953500881 40.501233386449385, -74.2275341173552 40.49752435696232, -74.22782047256266 40.497395321456246, -74.22914874428142 40.5011983725302, -74.22963612500514 40.50114460541582, -74.23019801962997 40.50108125279466, -74.23073008628663 40.50094730879959, -74.23076160051257 40.50093937567408, -74.23118188689496 40.50083356992625, -74.23150381487298 40.50071923854815, -74.23239173094628 40.50040389356986, -74.23242464493013 40.500392203730684, -74.23325730658867 40.5000964730784, -74.23343153747798 40.50003459077035, -74.23497969899636 40.49931120990896, -74.23503442013332 40.499285641572705, -74.23516804577031 40.4992131171326, -74.23357112198241 40.49480374942628, -74.23425710671746 40.494494573909655, -74.23583496043153 40.498851155168495, -74.23592782725274 40.49880075234539, -74.23642102502403 40.49843750681889, -74.2383717351043 40.49711218266546, -74.24006912934938 40.496220814466504, -74.24182911174384 40.49552649423341, -74.24366989060849 40.49493842650847, -74.2456198696785 40.49468521282187, -74.2476177852307 40.494705291553366, -74.24955673668717 40.49501046285954, -74.25069921998954 40.49538141015837, -74.25152934739077 40.49593639341042, -74.2516659200586 40.49590213752418, -74.2518063184053 40.495884889564245, -74.25189816569551 40.495878755251056, -74.25200843129767 40.49587666343385, -74.25213194036303 40.495881138820195, -74.25217274597237 40.49589504524345, -74.25220653546477 40.4959121297482, -74.25224122224037 40.49593692173961, -74.25226565583216 40.495961394060004, -74.25228585633974 40.49599007036852, -74.25229982227152 40.49602115760299, -74.25230706236862 40.496054514561585, -74.25230701409275 40.496087053651934, -74.25233921386396 40.49613828354734, -74.25238182376404 40.49618450518231, -74.25237435149617 40.49632438080346, -74.25237976430725 40.49646491248833, -74.2523738819823 40.4965000372344, -74.25236024243083 40.49652765238055, -74.25233651852704 40.496555020442536, -74.25231561822689 40.49657102926264, -74.2522882829145 40.49658574465284, -74.252254315767 40.496597337156764, -74.25222173144972 40.49660307314219, -74.25219953097144 40.49660433045537, -74.25217729672347 40.496603514810005, -74.2521554027335 40.49660064879797, -74.25213780230308 40.49659677285436, -74.25318211020613 40.49883937581456, -74.2533899973168 40.4992857851045, -74.25464943659567 40.50198479118698, -74.2547783169598 40.50224634691221, -74.25507597070245 40.502850410053824, -74.25544421491583 40.50359771893052, -74.25573821029266 40.50419433205267, -74.2559168764134 40.504995193153604, -74.25596786506206 40.5051721206723, -74.25609447490525 40.5056286219829, -74.25508422895821 40.505668299923464, -74.25504960462966 40.505673232554734, -74.2541944572515 40.50579503588667, -74.25396852794829 40.505827216854044, -74.25355803443553 40.505885683030506, -74.25327220835212 40.505926390619116, -74.25330694575945 40.505591239978045, -74.25332436505751 40.5054155669445, -74.25333570160498 40.50520944770006, -74.25322357071867 40.50460749242617, -74.25243712556839 40.50347620841027, -74.25204073763335 40.50292259164051)), ((-74.22567060787884 40.50537261637411, -74.22567868624076 40.504336704540975, -74.22647625522397 40.50435251537893, -74.22645015555031 40.503903528969005, -74.22640217154387 40.5030781099866, -74.22795365614229 40.50323713443492, -74.22807693891396 40.5032412993856, -74.22812577621848 40.503241541812216, -74.22827192916428 40.50323837127588, -74.22843552777489 40.50322786070666, -74.2285060016146 40.50322089256044, -74.22888315083104 40.50440019702411, -74.22928011234362 40.50564140552423, -74.22925987555527 40.505641750333616, -74.22928275259908 40.505713283451925, -74.22885820307529 40.50572052106329, -74.22761452814785 40.5057417147611, -74.2276010447231 40.506065868329785, -74.2275954871617 40.506199432807534, -74.22758171337922 40.50653053544679, -74.22757898911543 40.50659601405451, -74.22757079347492 40.506793025360786, -74.22565923619895 40.5068307329698, -74.22566119678642 40.506579321208534, -74.22566270192684 40.50638627744028, -74.22566803237243 40.505702932210866, -74.22567060787884 40.50537261637411)), ((-74.22565100902587 40.50788565514876, -74.22685082654895 40.50757333377513, -74.22719124552123 40.507484718890396, -74.22722757512257 40.50771302915686, -74.22724157418192 40.50780100775626, -74.2272707261136 40.507984205644604, -74.22728992855694 40.5081048803632, -74.22694109310586 40.50814062841829, -74.22564798677637 40.50827313308681, -74.22565100902587 40.50788565514876)))",R006,4619,R006,R-03,R-03,R-03,R-03,"Pittsville St., Hylan Blvd. Richard Ave.",503,51,123,"10307, 10309",R,286.382,False,Conference House Park,No,100004319,PARK,20100106000000.00000,19260429000000.00000,298 SATERLEE STREET,DPR,True,Conference House Park,Y,Conference House Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R006/,Yes,62,24,11,{B8C5AA3A-6C88-4233-8D87-DBCE89E60DB9} +"MULTIPOLYGON (((-74.19340377072457 40.598993772210214, -74.19463697331962 40.598256634295524, -74.19458597234818 40.59821960914162, -74.19462271536321 40.59812874792114, -74.19469562860077 40.59808697515035, -74.1946609686147 40.59798780595285, -74.19454816862469 40.59791605315081, -74.1944734704529 40.59782764900222, -74.19433636735215 40.597825829538735, -74.19421517566963 40.59785413258851, -74.19410963815385 40.59774284035272, -74.19404899804913 40.59765068851218, -74.19397261160445 40.59769166707111, -74.1938638449838 40.59768623583554, -74.19367598483227 40.59774042017845, -74.19345057329627 40.597801533031955, -74.19329883604078 40.597800484399826, -74.19315684697685 40.59775423715938, -74.19299415757926 40.597705157238856, -74.19293855782247 40.59763020447571, -74.19286701794853 40.59757381123616, -74.19272457917681 40.597532754840856, -74.19257743791093 40.59755781906835, -74.19245489659548 40.59754997816549, -74.19233228774117 40.59749694261388, -74.1922501741993 40.59747720903522, -74.19214377228866 40.59750470080105, -74.19205892850576 40.597429085990846, -74.19190160353749 40.597332889114085, -74.19189973148491 40.597332229454025, -74.1919115872633 40.59730031667409, -74.19216306572258 40.59662333042372, -74.19246989870656 40.59647353064241, -74.19279017641618 40.59639888058908, -74.19292347602504 40.59641787228001, -74.19298499378111 40.59652480626159, -74.19301062813847 40.596672977878086, -74.19292940253995 40.597224815341185, -74.1930200503033 40.59744149956295, -74.1931608231546 40.597559286697276, -74.19354269862463 40.597619029774194, -74.19404255010231 40.597384878016406, -74.19415993379444 40.596887880067115, -74.19405446688518 40.596531221668165, -74.19412890926787 40.59612761579854, -74.1942224215968 40.59608628129231, -74.19475226536487 40.59626379745406, -74.19479215922154 40.59636253452106, -74.19472119669888 40.596724978237, -74.19488722571344 40.59685371317548, -74.195344736529 40.596918813370884, -74.19574415932031 40.596824811428675, -74.1960135739421 40.59659927053365, -74.1967376812789 40.59671057263978, -74.19691082762786 40.596814576672, -74.19705181207902 40.59700098138654, -74.19727557470011 40.5971735180553, -74.19732299571454 40.59737930111088, -74.19729510737945 40.597689505034126, -74.19710472808208 40.5978462789859, -74.1971852557147 40.59828806434333, -74.19706680184885 40.5984172775987, -74.19686514871046 40.598417623218, -74.19674662474843 40.59852213306754, -74.19679710859029 40.59874517412597, -74.19674314651951 40.59873018183225, -74.19661633572903 40.59871006861561, -74.19642170280305 40.598691099598945, -74.19628611894827 40.59865331020588, -74.196194696881 40.59864166764515, -74.1961236597431 40.5986205824437, -74.19597241058189 40.59859005332853, -74.19579943991512 40.59855146080587, -74.19552115694171 40.598513465988866, -74.19531562637596 40.59845292471067, -74.19519973228695 40.598429784525955, -74.19499422492329 40.598396822101755, -74.19491289317672 40.59836589827792, -74.19474545031481 40.59833538420726, -74.1946765044959 40.59828533189435, -74.19343709940016 40.59902617552351, -74.19340377072457 40.598993772210214)))",R163,6383,R163,R-02,R-02,R-02,R-02,"Meredith Ave., W. Shore Exwy., Chelsea Creek",502,50,122,10314,R,15.368,False,Meredith Woods,No,100004992,PARK,20100106000000.00000,20060829000000.00000,,DPR,False,Meredith Woods,N,Meredith Woods,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R163/,Yes,63,24,11,{BE1F2C7D-7768-40EB-9E9C-FEBE089AFEC7} +"MULTIPOLYGON (((-73.85822959385838 40.74388692642062, -73.8582642042111 40.74364384447982, -73.8583775771734 40.74365291158019, -73.85843026303962 40.74365712499326, -73.85839764928582 40.74389975378057, -73.8583186870686 40.74389372682732, -73.85822959385838 40.74388692642062)))",Q483,5932,Q483,Q-04,Q-04,Q-04,Q-04,"Corona Ave. bet. 104 St. and 106 St., 50 Av.",404,21,110,11368,Q,0.101,False,Park,Yes,100000341,PARK,20090423000000.00000,20040426000000.00000,,DPR,False,Corona Health Sanctuary,N,Corona Health Sanctuary,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q483/,No,39,13,14,{C50B5EDD-573B-4343-ADBC-5F337802DF21} +"MULTIPOLYGON (((-73.91157450661304 40.674693649682666, -73.91162948923291 40.67409881774933, -73.91279738294652 40.67416248019839, -73.91274187664119 40.67475688273438, -73.91157450661304 40.674693649682666)))",B144,5481,B144,B-16,B-16,B-16,B-16,"Dean St., Bergen St. bet. Rockaway Ave.and Hopkinson Ave.",316,41,73,11233,B,1.595,False,Ocean Hill Playground (IS 55),Yes,100004061,PARK,20100106000000.00000,19631212000000.00000,275 HOPKINSON AVENUE,DPR/DOE,False,Ocean Hill Playground,Y,Ocean Hill Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B144/,No,55,19,8,{DD618FAB-3B23-454F-912A-182D938B4566} +"MULTIPOLYGON (((-73.97138027879109 40.74900978349614, -73.97123022853829 40.74921620425509, -73.97091819153626 40.749084683516834, -73.97106884196485 40.748877438447444, -73.97109887666366 40.74889020165731, -73.97133857338709 40.748992061971094, -73.97138027879109 40.74900978349614)), ((-73.97123022853829 40.74921620425509, -73.97123712579742 40.749219111010376, -73.97122962784721 40.749217030769664, -73.97123022853829 40.74921620425509)))",M203E,4873,M203E,M-06,M-06,M-06,M-06,E. 42 St. bet. 1 Ave. and 2 Ave.,106,4,17,10017,M,0.192,False,Tudor Grove Playground,Yes,100004409,PLGD,20100106000000.00000,19491231000000.00000,328 EAST 42 STREET,DPR,True,Tudor Grove Playground,Y,Tudor Grove Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M203E/,No,74,28,12,{447603FC-C05A-4A31-8563-7F1FC13B6DC9} +"MULTIPOLYGON (((-73.98344684488977 40.77725371273765, -73.98366015226244 40.776961173560686, -73.9844559215744 40.777296418219215, -73.98410394112702 40.77779091797113, -73.98370400840659 40.777622433058276, -73.98384925029038 40.77742324168118, -73.98344684488977 40.77725371273765)))",M233,4930,M233,M-07,M-07,M-07,M-07,W. 70 St. bet. W. End Ave. and Amsterdam Ave.,107,6,20,10023,M,0.947,False,Matthew P. Sapolin Playground,Yes,100004369,PLGD,20100106000000.00000,19600428000000.00000,22484 WEST 70 STREET,DPR/DOE,False,Matthew P. Sapolin Playground,Y,Matthew P. Sapolin Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M233/,No,67,27,10,{75836BEB-621B-424A-BBF9-F05DD7B78DF9} +"MULTIPOLYGON (((-74.1319134946225 40.63693843286623, -74.13239352866324 40.637144478433335, -74.13203203937188 40.63763158810651, -74.13114500834195 40.637250843134, -74.13150371111985 40.63676253902803, -74.1319134946225 40.63693843286623)))",R019,6015,R019,R-01,R-01,R-01,R-01,"Heberton Ave., Park Ave., Bennett St., Vreeland St.",501,49,120,10302,R,1.324,False,Veterans Park,Yes,100005041,PARK,20100106000000.00000,18980101000000.00000,,DPR,False,Veterans Park,N,Veterans Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R019/,No,61,23,11,{96B741B5-2D20-470C-8514-D3E1B0ABD76D} +"MULTIPOLYGON (((-73.92731637479535 40.825690387618444, -73.92816935079732 40.82426783794051, -73.92959717620639 40.82651976334972, -73.92834328822306 40.82604148971513, -73.92813311004862 40.82596131926545, -73.92731637479535 40.825690387618444)), ((-73.9243800422521 40.82865653270054, -73.92441920288893 40.82858987219339, -73.92443422089825 40.8285950508781, -73.92444225478478 40.82859842399452, -73.92445333964622 40.828604337605334, -73.92445822443261 40.82860702157976, -73.92447248568295 40.828616742762506, -73.92447687120526 40.82862061956542, -73.92448149815688 40.828624861226814, -73.92449043609557 40.828633892743845, -73.92450015650782 40.82864602517771, -73.9245107842525 40.82866405915034, -73.92451671901412 40.82867962629513, -73.92452076968969 40.82869025028832, -73.92452697986047 40.82870653890951, -73.92473425754733 40.829250229513626, -73.92476573092506 40.82933278583796, -73.92482785050832 40.829495723222294, -73.92418036817563 40.8305620240316, -73.92341385824129 40.830301162822984, -73.9243800422521 40.82865653270054)), ((-73.92821030084424 40.82192023410401, -73.9284074830147 40.82141185093566, -73.92910985058242 40.821604060878464, -73.9287207859032 40.82260728631327, -73.92821030084424 40.82192023410401)), ((-73.92717708849347 40.824447263434166, -73.92716020465363 40.824398311718596, -73.92713172296597 40.82440424149976, -73.92709236351283 40.82428815080226, -73.92691812686768 40.82432285638324, -73.92703692367071 40.82412362394502, -73.92753952727173 40.82424744658306, -73.92785020028002 40.82432398362634, -73.92734746084474 40.82516712462342, -73.9273157385711 40.825156109579396, -73.92731172624308 40.82510691386541, -73.92727719418332 40.82481200942749, -73.92716065710698 40.82445064072193, -73.92717708849347 40.824447263434166)), ((-73.92829028860882 40.82410121250351, -73.92855118473358 40.823646596067675, -73.92906094882774 40.824334014420224, -73.92894689746427 40.82458949322717, -73.92871755780179 40.82454297164806, -73.92867798407484 40.8245312344287, -73.92862818105392 40.82451307213038, -73.92859350518133 40.824497270373385, -73.92856508792408 40.824481911024705, -73.92851711513988 40.824451736296346, -73.9284932102567 40.82443362060749, -73.92848253292122 40.824416130858175, -73.92829028860882 40.82410121250351)), ((-73.92799374363872 40.82250668412024, -73.92814522390152 40.8221775698065, -73.9286236553451 40.82282195674188, -73.92849152808047 40.82316620748316, -73.92799374363872 40.82250668412024)))",X237,5127,X237,X-04,X-04,X-04,X-04,"Cromwell Ave. bet. E. 151 St. and E 153 St., Rover Ave. bet. E 150 St. and E. 164 St.",204,8,44,"10451, 10452",X,9.488,False,Yankee Stadium Garages/Lots,No,100005178,PARK,20100106000000.00000,19721229000000.00000,683 - 950 RIVER AVENUE,DPR/EDC,False,Yankee Stadium Garages/Lots,Y,Yankee Stadium Garages/Lots,Stadium,Lot,http://www.nycgovparks.org/parks/X237/,No,"84, 77",29,15,{54424293-2244-4D6B-B414-B763830767B0} +"MULTIPOLYGON (((-73.86160030527505 40.879945093034394, -73.86162476968309 40.87990100025831, -73.8624268630931 40.88010108315973, -73.86226094684277 40.88040273242132, -73.86221517875546 40.8804859414039, -73.8621618841576 40.880468845938246, -73.86210858721434 40.8804517504451, -73.86205237362513 40.88043371853568, -73.86204694352509 40.880436487348916, -73.86189350159135 40.880722556327946, -73.86156693411985 40.880617803045226, -73.86124510785281 40.880514570056555, -73.86156699622092 40.879934408417476, -73.86160030527505 40.879945093034394)))",X169,4676,X169,X-12,X-12,X-12,X-12,Barnes Ave. bet. E. 216 St. and E. 215 St.,212,12,47,10467,X,1.32,False,Agnes Haywood Playground,Yes,100004423,PARK,20100106000000.00000,19540505000000.00000,758 EAST 216 STREET,DPR/DOE,False,Agnes Haywood Playground,Y,Agnes Haywood Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X169/,No,83,36,16,{9AC1967D-4AA5-416A-9A38-F0F6C9DA1FAF} +"MULTIPOLYGON (((-73.89030083047577 40.649037068287086, -73.89025524960655 40.64897471793833, -73.88999725581239 40.64903790127281, -73.88990568966852 40.64898384559213, -73.88990407694901 40.64894303255726, -73.88985104557987 40.64888999798118, -73.88929050336876 40.64875968515609, -73.88919561890087 40.648669646401956, -73.88947476379019 40.64864196921849, -73.88966880936186 40.6486944972667, -73.88952928153323 40.648497494701715, -73.88945546568608 40.64822624526406, -73.8897047372158 40.64817175918811, -73.8896963172202 40.64794128053001, -73.88963278466422 40.64792030863917, -73.88929718477068 40.64799072361305, -73.8891778597117 40.64798759375594, -73.88910916395083 40.64800162335445, -73.88900918540217 40.648010203405825, -73.88839203259734 40.64796163192781, -73.88814289708073 40.647911543486565, -73.88783240627193 40.647845614895395, -73.88753907285427 40.647754112209896, -73.88758231981784 40.64759276266575, -73.8864382172912 40.64667567165857, -73.88600349486056 40.64632886067624, -73.885978933283 40.64632955314006, -73.88544901490899 40.64588650174219, -73.88538115643752 40.645832364285596, -73.88494330771667 40.64547913804463, -73.8848436797713 40.64539536752644, -73.88474244300664 40.64531024543087, -73.8844831863888 40.64547634084014, -73.88423540791959 40.64563508187503, -73.88399900716003 40.64578653244558, -73.88398971483332 40.645778252708126, -73.87914421307661 40.64146025204347, -73.87867114189784 40.64103864046486, -73.87915099234377 40.64074188072428, -73.87964207449934 40.6404381706184, -73.87954426091994 40.640353876846525, -73.87945712306886 40.64027449300708, -73.87872010901881 40.63957174518392, -73.87893787153804 40.63912838326909, -73.87914479268676 40.63872130767004, -73.87929558378993 40.63843005253246, -73.87929581716516 40.638429778118955, -73.88050303217958 40.63950083990059, -73.88056646348016 40.63955711622086, -73.88067738087943 40.639655521260245, -73.88077071300712 40.639739999437474, -73.88190986695845 40.64077106644583, -73.88200187959936 40.64071100981374, -73.88200489081242 40.64071956783666, -73.8820100552645 40.640729841756986, -73.88201903168482 40.640742416812806, -73.88202990235098 40.64075342240504, -73.88204354539012 40.640763653691906, -73.88206304711679 40.640773963927984, -73.88208195842498 40.640780556211766, -73.88210031300692 40.64078443195558, -73.88211521033328 40.64078597000639, -73.88205838482199 40.64082737164528, -73.88228351463029 40.641029754487185, -73.88251616672171 40.64123889936234, -73.88257197204719 40.641202891467934, -73.88257123982767 40.64121524044071, -73.88257221403757 40.641225261512815, -73.88257430245756 40.64123426973803, -73.88257811407088 40.641244860134016, -73.8825833219042 40.641254739644765, -73.8825917053827 40.64126645405367, -73.88259769929182 40.64127301685356, -73.88260310471478 40.64127810130036, -73.88261659419508 40.641288372885064, -73.88263479746352 40.6412983917307, -73.88265206335764 40.64130500025119, -73.88267076311507 40.64130966060798, -73.88268197785749 40.641311330806204, -73.88269173875828 40.64131219445606, -73.88269846363139 40.64131249758679, -73.88264000599368 40.64135022732964, -73.88287615642841 40.64156251244584, -73.88312377051552 40.64178510345714, -73.88318143455434 40.64174696112668, -73.88318049317786 40.64175931979571, -73.88318172590832 40.641772314638814, -73.88318458651273 40.641783281365356, -73.88318799181685 40.64179171188269, -73.88319776640081 40.64180776455983, -73.88320835344915 40.641819594626426, -73.8832179750579 40.64182781713251, -73.88322867525741 40.6418351158998, -73.8832419411856 40.64184219664398, -73.88325364466569 40.64184702180098, -73.88326955322238 40.64185182601084, -73.88328553694089 40.64185488869075, -73.8832945824395 40.64185590465144, -73.88330229419519 40.641856379847, -73.88324668643905 40.64189559684369, -73.88346974487933 40.642096109353375, -73.88370065985558 40.642303684036925, -73.88376215506742 40.64226375596039, -73.88375911430225 40.64227809995693, -73.88375872091352 40.642288795925055, -73.88376061274836 40.64230286124396, -73.8837653902384 40.64231697450553, -73.88377153216385 40.642328269620705, -73.88377915258945 40.64233845318813, -73.88378802094229 40.642347551089664, -73.8838023299384 40.642358584300425, -73.88381534237412 40.6423660483429, -73.88383281672607 40.642373336787436, -73.88384925071243 40.64237792982545, -73.88386377081694 40.64238043262453, -73.88387719979399 40.642381554724714, -73.88388218015021 40.64238169032901, -73.88388587332594 40.64238169315762, -73.88382868388334 40.64241876560105, -73.88405933049144 40.64262626904315, -73.88415175609263 40.642566355201915, -73.88422140568645 40.64252120488073, -73.88429899310742 40.642470909733774, -73.8843691644382 40.64242542035202, -73.88444325550557 40.6423773908998, -73.8845141036132 40.642331463556644, -73.88455862891763 40.64230259889869, -73.88462656445662 40.64236371686687, -73.88468415543021 40.64241552836326, -73.88473744052794 40.64246346598433, -73.88473910129794 40.64246496070951, -73.88481230395966 40.64253081607322, -73.88509324413415 40.642348835680174, -73.88526480140716 40.642503174936785, -73.88481959723659 40.64278610071456, -73.88482424317439 40.64279028017398, -73.88527724020777 40.64319781529521, -73.88572222800337 40.64291468672708, -73.8860075746407 40.64317138731047, -73.88686995597196 40.64394717957166, -73.88643099519734 40.644228422910395, -73.88624993416164 40.644344428002654, -73.88601802102195 40.644493012718826, -73.88611493473972 40.64458090481689, -73.88621259237192 40.64466947115632, -73.8866898596782 40.64436132108634, -73.88706885063807 40.64410871202173, -73.88760307551009 40.64458928847676, -73.88784681370325 40.64480854521579, -73.8882354578395 40.645158151057274, -73.88841980113092 40.64532397508125, -73.88868852601807 40.64556570328411, -73.888881956588 40.64573969945506, -73.88910316518252 40.645938681761386, -73.88930869922673 40.646123561737866, -73.88951740643165 40.64631129543247, -73.88973398175791 40.646506104457835, -73.88995110492618 40.646701407078304, -73.88941781615182 40.647044471277894, -73.89005964138445 40.647606722907476, -73.89025737326547 40.647779937376825, -73.89056173309605 40.64804655573063, -73.89074975355624 40.64821126100815, -73.8907555668596 40.64821635355875, -73.89106340876462 40.648486017627626, -73.89157688082756 40.648935803867154, -73.89165094309506 40.64900067856479, -73.89130439091048 40.64922759284871, -73.89131020525346 40.649238659409946, -73.89131425782624 40.64924544414249, -73.8913174517481 40.64925022891288, -73.89132183393909 40.64925571540927, -73.89132555871007 40.649259782067475, -73.89133760270289 40.649271568624584, -73.89141589845212 40.64933241855195, -73.89152017769867 40.64947065375966, -73.89153136984744 40.64947992794722, -73.89155249403363 40.649495422373946, -73.8915827147677 40.64951543606818, -73.89160556066868 40.649530061306926, -73.89146317351114 40.64965582037365, -73.8912096193902 40.64987976392528, -73.89114484556796 40.64993697289375, -73.89113105913854 40.64991624432307, -73.89110456604867 40.64978696605884, -73.89111429923292 40.64954555893855, -73.89074639429485 40.64937247622105, -73.89055431355304 40.64922032122458, -73.89030083047577 40.649037068287086), (-73.88912116554408 40.64783152428853, -73.88916552826186 40.64780830665856, -73.88923086327779 40.6477817358708, -73.88928685622838 40.647763442623905, -73.88936306606823 40.64774102641533, -73.88943783461437 40.647726476600525, -73.88950948694301 40.64771243974039, -73.88957760996551 40.64770705973314, -73.88962935419848 40.64770770644708, -73.88967481375435 40.647716704820894, -73.88972574947029 40.64773227590887, -73.88977510585586 40.64775560612867, -73.88982842611792 40.6477891916266, -73.88986531664902 40.647818872928426, -73.88998538227169 40.64774269412064, -73.88995134690983 40.647727379759196, -73.88992354825105 40.64771701790512, -73.88988080472457 40.64770637968462, -73.88985742978142 40.64770057777309, -73.88984179080232 40.647693201055965, -73.88986259700647 40.64767800132058, -73.88958421308907 40.64743413332921, -73.88926394713589 40.64715356962957, -73.88825153969063 40.64777010741011, -73.88829841940195 40.647781006000976, -73.88834177004271 40.64779045851575, -73.88839747040302 40.647798805455636, -73.88844432518556 40.647803426448476, -73.88850037817234 40.64780736113999, -73.888553134268 40.64781098733367, -73.888599862029 40.647813096593964, -73.88864870350432 40.64781534205911, -73.88870621358599 40.64781756617542, -73.88877923162892 40.64781421934552, -73.88885367016435 40.647806983602266, -73.88888988437274 40.64780236381527, -73.88891867807585 40.64779729559588, -73.8887425963601 40.64789337550414, -73.88885544501547 40.64789272277991, -73.888901253724 40.64788872821592, -73.88895107635264 40.64788328947583, -73.88899229469757 40.64787757675642, -73.8890390815847 40.64786407540778, -73.88907583430255 40.647850592278616, -73.88912116554408 40.64783152428853)))",B384,6440,B384,B-18,B-18,B-18,B-18,"Flatlands Ave, Louisiana Ave., E 108 St. and Belt Parkway",318,"42,46",75,"11236, 11239",B,77.044,False,Fresh Creek Nature Preserve,Yes,100003745,PARK,20100106000000.00000,19900417000000.00000,,DPR,False,Fresh Creek Nature Preserve,N,Fresh Creek Nature Preserve,Large Park,Nature Area,http://www.nycgovparks.org/parks/B384/,Yes,60,19,8,{AB462236-C5A9-4606-A1F3-9C5CB782FCDA} +"MULTIPOLYGON (((-73.93636813561982 40.716657368751655, -73.9357602233205 40.71528428401339, -73.93862482114672 40.7153939792359, -73.93889717045302 40.71600486110742, -73.93636813561982 40.716657368751655)))",B025,5989,B025,B-01,B-01,B-01,B-01,"Maspeth Ave., Sharon St. bet. Olive St. and Morgan Ave.",301,34,90,11211,B,6.401,False,Cooper Park,Yes,100004909,PARK,20100106000000.00000,18951010000000.00000,,DPR,False,Cooper Park,Y,Cooper Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B025/,No,53,18,12,{05247BC9-D000-4EA6-A99C-FB66DFA983C9} +"MULTIPOLYGON (((-73.86105361973188 40.846730772853505, -73.86173215251863 40.84650909067451, -73.8619494889733 40.84710287601552, -73.86160393655346 40.847212377963885, -73.86126568310135 40.84731956528291, -73.86105361973188 40.846730772853505)))",X178,5538,X178,X-11,X-11,X-11,X-11,Mathews Ave. bet. Morris Park Ave. and Rhinelander Ave.,211,13,49,10462,X,1.02,False,Matthews Muliner Playground,Yes,100003768,PARK,20100106000000.00000,19540720000000.00000,,DPR,True,Matthews Muliner Playground,Y,Matthews Muliner Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X178/,No,80,33,14,{E4BFEA78-45C1-48EF-8D32-DBC065BB0E9F} +"MULTIPOLYGON (((-73.76139575823794 40.66033865512946, -73.76150735960078 40.65955408173758, -73.762567149814 40.65963526058681, -73.76267473556472 40.65964350083843, -73.76350330666688 40.659791852522645, -73.76363162197315 40.659814826476996, -73.76342044854296 40.6604566547427, -73.76237392278836 40.662122918285746, -73.76191255748112 40.662984237873815, -73.76181768173461 40.663161359158266, -73.76198101604753 40.66320896370178, -73.76209225225008 40.66324138558086, -73.76222413370796 40.663279822273154, -73.76235810984076 40.66331886919066, -73.76245773497546 40.663347905088706, -73.76253878471717 40.663371526455784, -73.76262780505988 40.663397471344034, -73.76271431628538 40.663422686069374, -73.76273545295878 40.66342884599516, -73.7623760936186 40.66429439398252, -73.76073252483356 40.663889199723975, -73.76059671213935 40.663862292399834, -73.7600774623467 40.663759414069986, -73.75995162648778 40.663714738829434, -73.7600338902969 40.66358944919006, -73.75969136992727 40.66345859108614, -73.7599157113081 40.66313326506781, -73.76035740215109 40.66250532354229, -73.76091531070286 40.66167623328877, -73.76102638378063 40.661485959157936, -73.76113347006766 40.66127483320918, -73.76116767534417 40.66119179977249, -73.76124988458609 40.66097452013404, -73.76130024560479 40.66081042388136, -73.76134028705212 40.66065311322254, -73.76136431805041 40.660541782291794, -73.76139575823794 40.66033865512946)), ((-73.76153212891768 40.65935610336569, -73.76166451297001 40.658358328790996, -73.76403373977872 40.65861605429888, -73.76377303118784 40.65960808566942, -73.76366851260853 40.65959054767574, -73.76268090277323 40.65943463438333, -73.76153212891768 40.65935610336569)))",Q107,5113,Q107,Q-13,Q-13,Q-13,Q-13,"149 Av, Springfield Bl, 145 Rd, 184 St",413,31,105,11413,Q,23.543,False,Springfield Park,Yes,100000394,PARK,20090423000000.00000,19360415000000.00000,146-02 SPRINGFIELD BLVD,DPR,True,Springfield Park,Y,Springfield Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q107/,No,31,10,5,{B34AD5A1-877F-4C0A-B9E3-749620646303} +"MULTIPOLYGON (((-74.00115016345597 40.70746262758386, -74.00134970251622 40.7073625966306, -74.00142697134197 40.70746311706487, -74.00161588125965 40.707708872179495, -74.00146579577562 40.707782712503445, -74.00115016345597 40.70746262758386)))",M167,5564,M167,M-01,M-01,M-01,M-01,Peck Slip bet. South St. and Front St.,101,1,1,10038,M,0.187,False,Peck Slip,No,100004929,PARK,20100106000000.00000,19120508000000.00000,,DPR,True,Peck Slip,Y,Peck Slip,Parking Lot,Triangle/Plaza,http://www.nycgovparks.org/parks/M167/,No,65,26,10,{AD168945-2AA6-45FE-8B64-49E3014D2C1F} +"MULTIPOLYGON (((-73.93881087687468 40.81729786641657, -73.93917517058962 40.8168084571979, -73.93937147597705 40.81689109293267, -73.93966255401568 40.81701362315278, -73.9392982663162 40.81750303569774, -73.93900718325337 40.81738050276494, -73.93881087687468 40.81729786641657)))",M160,5818,M160,M-10,M-10,M-10,M-10,"Lenox Ave., W. 139 St. To W. 140 St.",110,9,32,10030,M,0.688,False,Fred Samuel Playground,Yes,100003731,PLGD,20100106000000.00000,19371104000000.00000,,DPR,Part,Fred Samuel Playground,Y,Fred Samuel Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M160/,No,70,30,13,{F2CA9DA9-CC1B-47B7-94FD-8D746525DDF6} +"MULTIPOLYGON (((-73.81134737138704 40.76145949632424, -73.81216436354697 40.76126137539378, -73.81228074652688 40.761944265198586, -73.81160695101583 40.76201180732965, -73.81149522362225 40.76202300697167, -73.81145850092926 40.76183907605962, -73.81139287482628 40.76183387537416, -73.8114082053465 40.761624073447145, -73.81136400442188 40.76162196413526, -73.81137634625685 40.76152114472007, -73.81134737138704 40.76145949632424)))",Q437,5367,Q437,Q-07,Q-07,Q-07,Q-07,Murray St. bet. Barclay Ave. and Sanford Ave.,407,20,109,11355,Q,1.206,False,Murray Hill Playground,Yes,100000067,PARK,20090423000000.00000,19710920000000.00000,153-33 SANFORD AVENUE,DPR/DOE,False,Murray Hill Playground,Y,Murray Hill Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q437/,No,40,16,6,{CC678385-2B01-411E-9D0B-F86AF4D8B726} +"MULTIPOLYGON (((-73.89474376384989 40.85632163085622, -73.89464129107724 40.85628202736362, -73.89481190556602 40.85604106297798, -73.89489820550656 40.856077131567964, -73.89510498842169 40.85616356252028, -73.89495493231419 40.85640333669388, -73.89493899865515 40.856397170928965, -73.89474376384989 40.85632163085622)))",X302,4759,X302,X-06,X-06,X-06,X-06,E 183 St bet. Park Av and Webster Av,206,15,48,10458,X,0.201,False,Thorpe Family Playground,Yes,100005027,PARK,20100106000000.00000,19991029000000.00000,407 EAST 183 STREET,DPR,False,Thorpe Family Playground,Y,Thorpe Family Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X302/,No,86,33,15,{C88846C4-58A6-4413-8296-ABC4EB9AF6A4} +"MULTIPOLYGON (((-73.83397453352568 40.85434255339508, -73.83393487387131 40.85393920527963, -73.83432869265091 40.85394718615058, -73.8343120671559 40.853882737426545, -73.83429217627682 40.85380562938535, -73.83425614164526 40.85366594001834, -73.83424891547921 40.85363792521344, -73.83426422154679 40.85352981783772, -73.8342648046309 40.85352569621966, -73.8343206854078 40.85343142825841, -73.83431976652132 40.853429434148296, -73.83430036615567 40.85338731635331, -73.83426963844046 40.85332060783516, -73.83423618717133 40.85324798816197, -73.8342091504335 40.853189291210654, -73.83420413729576 40.85317840965526, -73.83415826228159 40.85310482028118, -73.8341098005028 40.85302708310016, -73.83411326778382 40.85302391925168, -73.83416996024101 40.85297217919696, -73.83419120012977 40.85295279420032, -73.83418532308654 40.852908838101236, -73.8341760709515 40.852839638136714, -73.83416676528195 40.8527700373744, -73.83415765057482 40.85270186056418, -73.83414837753685 40.85263250568006, -73.8341390637832 40.85256284096624, -73.83379759541626 40.85254304745956, -73.83379221289552 40.85248829874129, -73.83379215993025 40.85247959540106, -73.83381304704135 40.852271503566875, -73.83415360573144 40.85229124349442, -73.8341605727348 40.85222145360088, -73.83416736704794 40.85215337799647, -73.83417424398336 40.85208450287184, -73.83418102848941 40.85201654431504, -73.834186928746 40.8519574390336, -73.8354412883705 40.85203013724249, -73.83542988454832 40.85208573091679, -73.83541591593509 40.85214212777202, -73.835399624948 40.85219816921881, -73.83538102359677 40.85225379223875, -73.83535894071403 40.85231165521538, -73.83533697924598 40.85236357240596, -73.83531129960427 40.8524213374879, -73.83528019398409 40.85248209615907, -73.83520798168018 40.852618896761705, -73.83510213866333 40.85280960498031, -73.83495653044855 40.8530677031248, -73.83472642248302 40.8534584577067, -73.83460524371004 40.85365340280472, -73.83445220464078 40.85388649465135, -73.83439709448942 40.85396506458617, -73.83438135636526 40.8539852544521, -73.83435499811857 40.85401586217562, -73.8343312443328 40.8540445177631, -73.83428802011676 40.854092417723585, -73.83425604110522 40.85412271478477, -73.83423028777852 40.85414705952153, -73.8341975693228 40.85417519342097, -73.83416207989423 40.85420592124907, -73.83410965409023 40.854246477904255, -73.83397453352568 40.85434255339508)))",X122,5621,X122,X-10,X-10,X-10,X-10,Hutchinson River Pkwy. E. bet. Wilkinson Ave. and E. 197 St.,210,13,45,10461,X,4,False,Colucci Playground,Yes,100005082,PARK,20100106000000.00000,19380425000000.00000,,DPR,True,Colucci Playground,Y,Colucci Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X122/,No,82,34,14,{59F9157C-5AD8-499D-832F-1FDD7891D6AC} +"MULTIPOLYGON (((-73.88457250288049 40.844356292181736, -73.88485039839931 40.84403867866501, -73.88477725768202 40.84445733143467, -73.88457250288049 40.844356292181736)))",X334,6072,X334,X-06,X-06,X-06,X-06,"Mohegan Ave., Crotona Pkwy., E. 179 St.",206,17,48,10460,X,0.096,False,Mohegan Triangle,Yes,100007370,PARK,20110712000000.00000,20021120000000.00000,,DPR,False,Mohegan Triangle,Y,Mohegan Triangle,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X334/,No,87,32,15,{694C7473-101B-4CE9-8511-98D450B2BBF0} +"MULTIPOLYGON (((-73.93101016219778 40.683130951175286, -73.93096535015904 40.682905425615886, -73.93070613443675 40.682935274944185, -73.93069750643558 40.682891852351545, -73.92984191137764 40.68299037152832, -73.92980568807435 40.682978075426945, -73.92974736722714 40.68270931915857, -73.9309825324313 40.68256668314814, -73.93104025141633 40.682844475092615, -73.93109928673498 40.68312068828456, -73.93101016219778 40.683130951175286)))",B313,5170,B313,B-03,B-03,B-03,B-03,Macdonough St. between Malcolm X Blvd. and Stuyvesant Ave.,303,36,81,11233,B,0.89,False,El Shabazz Playground (PS 262),Yes,100004620,PARK,20100106000000.00000,19581121000000.00000,538 MACON STREET,DPR/DOE,False,El Shabazz Playground,Y,El Shabazz Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B313/,No,56,25,8,{B9B72EB4-4768-4CA9-B186-E64CF2F0626C} +"MULTIPOLYGON (((-74.07281172138995 40.627097490416574, -74.07278577636441 40.62695713827437, -74.07263894206363 40.626969662818944, -74.07263275760542 40.626974505220666, -74.07260825741785 40.626837511064075, -74.07258658869752 40.626716350759196, -74.07257987713896 40.62667882041686, -74.07312452542897 40.62662227383131, -74.0731312372891 40.62665980504257, -74.07322809735503 40.62664974851693, -74.07331662228412 40.62664055722208, -74.07342762703773 40.62662903266469, -74.07394016998269 40.62657581752902, -74.07406735977293 40.62724812701829, -74.07387045647552 40.62726939701128, -74.07300552698669 40.62736282462536, -74.07286753881269 40.62737772932092, -74.07280285800313 40.62745492865674, -74.07331264319458 40.630071171655864, -74.07327044409773 40.63011626236804, -74.07332820658245 40.630151042340586, -74.07329015361573 40.6301647247872, -74.07324993885656 40.63017415724446, -74.07320837412337 40.63017915008411, -74.07317822743175 40.63017779057959, -74.07314881053341 40.630172583582265, -74.0731209651656 40.63016367804367, -74.07309548471859 40.630151328307676, -74.07307309649698 40.63013588601687, -74.07305444043544 40.63011779292157, -74.07304004898859 40.63009756558379, -74.07302406172626 40.630035067957266, -74.07291395826138 40.630000481329155, -74.07293873368073 40.629952910964164, -74.0725298845902 40.62778072833294, -74.07247250570882 40.62771489147605, -74.07243957023957 40.627677101197136, -74.0723413570479 40.627147965219365, -74.0727198575737 40.627107348017525, -74.07281172138995 40.627097490416574)))",R170,24295,R170,R-01,,,R-01,Front St. bet. Wave St. and Canal St.,501,49,,10304,R,4.605,False,,No,100024484,PARK,,20160517000000.00000,,DPR,False,Stapleton Esplanade,,Stapleton Esplanade,Neighborhood Park,Waterfront Facility,,Yes,61,23,11,{4D1D3109-4ED8-4CD7-AA34-05B6A44E16DF} +"MULTIPOLYGON (((-73.74700351200937 40.76803098380262, -73.74695950529487 40.76762302395744, -73.74719885039677 40.76801669377865, -73.74743645387008 40.7684074947419, -73.7475335937834 40.76854541681389, -73.74706271931248 40.76857986314166, -73.74700351200937 40.76803098380262)))",Q059,6255,Q059,Q-11,Q-11,Q-11,Q-11,"Douglaston Pkwy., 240 St. bet. 42 Ave. and 43 Ave.",411,19,111,11363,Q,0.101,False,Catharine Turner Richardson Park,Yes,100000465,PARK,,,,DPR,False,Catharine Turner Richardson Park,N,Catharine Turner Richardson Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q059/,No,26,11,3,{B02DC169-6D3E-4993-BBFC-0FAB4CDAE400} +"MULTIPOLYGON (((-73.92093487400602 40.869987148661956, -73.9217217617516 40.8694439375192, -73.92192869619122 40.86935420170872, -73.9220439126934 40.86930639610254, -73.92221100553851 40.86956858896554, -73.92247748308766 40.869472384463364, -73.92301794703899 40.86927795702136, -73.92305329991977 40.86933563260493, -73.92360416054856 40.86913722738443, -73.9234005722695 40.86881776911423, -73.92342455064487 40.86885270329189, -73.92344355663919 40.868876097100234, -73.92346940237319 40.8689036421937, -73.92348907483968 40.868922068438465, -73.9235178737998 40.86894592887691, -73.9235624245678 40.86897708109743, -73.92358608169043 40.86899130738262, -73.92360941082302 40.86900399270916, -73.923631623337 40.869014951955066, -73.92365832706362 40.86902680655262, -73.92367678332894 40.86903422078095, -73.92370083702863 40.869042987640015, -73.9237219585577 40.86904953645249, -73.92374374651256 40.869056291913445, -73.92377505968376 40.86906423780578, -73.92380660216841 40.869070830406024, -73.92383707522897 40.86907591127131, -73.92386288010961 40.869079257408195, -73.92389804213157 40.86908243771736, -73.92394317477748 40.86908423783501, -73.92397680107729 40.86908392591214, -73.92400508699457 40.86908257039784, -73.92403841256781 40.869079677457584, -73.92407420280118 40.86907498154953, -73.92411262781793 40.86906804784703, -73.92598881369793 40.86865504782038, -73.92609320079387 40.86863058990705, -73.92619173796345 40.8685992024964, -73.92634161236315 40.86853225685408, -73.92645573833498 40.868461344996426, -73.92699117331613 40.86809164342949, -73.92712179721111 40.86796298127147, -73.92788949556035 40.867428975530075, -73.92865666994932 40.86689532270853, -73.93126013956318 40.8691125618358, -73.93134470600891 40.86918457925458, -73.93013845808171 40.87153125376674, -73.93001163649139 40.87177234845358, -73.92987979766676 40.87201188659994, -73.92974297602579 40.8722498105786, -73.92960120599315 40.872486058259355, -73.92770042852675 40.875587992190944, -73.92759756481145 40.87574775529518, -73.92748669615274 40.87590440388937, -73.92736798647961 40.876057705728044, -73.92724161039682 40.87620743487497, -73.92710775437045 40.87635337260446, -73.9269666155489 40.87649530109762, -73.92681840175291 40.876633012447144, -73.92615993399352 40.87722138769646, -73.92589045608334 40.8772721879669, -73.92436852949848 40.87755908200579, -73.92431833142065 40.87756854473972, -73.9240026006799 40.8775136929702, -73.92310777706889 40.87735823078519, -73.923071338102 40.877349601441466, -73.92296262970193 40.877323856024375, -73.92284629490412 40.8772831888285, -73.92275081950491 40.87723598623256, -73.92269499130435 40.87720838582292, -73.92254455001995 40.877116712559754, -73.92244014161541 40.87702790207832, -73.92235553028785 40.87694120115717, -73.9221374821285 40.87670618453722, -73.92190001507463 40.87645379475053, -73.92152688533729 40.87612023507011, -73.92123744804175 40.87589655751628, -73.92089928175152 40.875670476652815, -73.92088886668283 40.87566462894885, -73.92061487337351 40.875510796842306, -73.92020945423592 40.875286651431686, -73.91978198525469 40.875102689748466, -73.91958427310328 40.87501950013506, -73.91950718356499 40.8749875862236, -73.91946267812793 40.87496916090323, -73.91909983556353 40.8748558202187, -73.91861543413671 40.874721767048165, -73.91815610008774 40.87462660189208, -73.91752709756254 40.8745291129825, -73.91678393069455 40.87447661681253, -73.91624641269183 40.87447583444595, -73.91651814385139 40.87442628296588, -73.91687497888114 40.874324517037714, -73.91713152021684 40.87422190090791, -73.91732866665151 40.874123121876295, -73.917543182701 40.87399166359374, -73.91780967554165 40.87379829285004, -73.91800074071878 40.87366516641116, -73.91805113406872 40.87362651092718, -73.91810166386479 40.87359068034957, -73.91816402459452 40.873550061238916, -73.91823796009379 40.873506491291074, -73.91836673572037 40.87344089003373, -73.9187170144326 40.87327588777143, -73.91907106209254 40.873161048789825, -73.9196164408213 40.87303405859171, -73.9203869088762 40.872890865750506, -73.92074027814051 40.872815534606374, -73.92054887200845 40.8721703912072, -73.92070332856832 40.8721352289133, -73.92097372983345 40.87210782613787, -73.92144000262778 40.872094113994244, -73.92145026457611 40.870811206552844, -73.92093487400602 40.869987148661956)), ((-73.93142619351948 40.869253974358, -73.93152269282437 40.86933615354796, -73.93200636628171 40.869748045801494, -73.9320441814685 40.86978024794487, -73.93204448725092 40.8697805092667, -73.93219715046696 40.869910515287565, -73.93224091797696 40.869947785211586, -73.93194918215804 40.870485605124415, -73.9309853967607 40.87226229996952, -73.93068224337176 40.87282112973682, -73.92995717882505 40.87415588452283, -73.92986675053018 40.87432473865574, -73.9294178353915 40.875162983191416, -73.92904117012468 40.875828301003814, -73.92708606782776 40.87704679117312, -73.92695877741531 40.87707078791989, -73.92680077612785 40.87710057499762, -73.9269700736234 40.87694261065006, -73.92713223307425 40.876780388539984, -73.92728706685385 40.87661409407931, -73.92743439919866 40.87644391899052, -73.92757406028018 40.87627005770078, -73.92770589094893 40.87609270824516, -73.927829740359 40.8759120749665, -73.92794546715771 40.87572836491419, -73.9298207620533 40.872617053660846, -73.9299621198497 40.87237751688246, -73.93009845923241 40.872136309176845, -73.93022974696392 40.871893493575605, -73.93035595099933 40.871649128608226, -73.93142619351948 40.869253974358)))",M042,6326,M042,M-12,M-12,M-12,M-12,"Dyckman St, Hudson River, Harlem River S",112,10,34,"10033, 10034",M,196.398,False,Inwood Hill Park,No,100004337,PARK,20100106000000.00000,19150521000000.00000,,DPR,True,Inwood Hill Park,Y,Inwood Hill Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M042/,Yes,72,31,13,{B2B11A75-EF65-4990-B9C7-C19591B33336} +"MULTIPOLYGON (((-73.91639421872728 40.77164916253638, -73.9172252111516 40.770965723802796, -73.9180225775977 40.77153486551225, -73.91722220984586 40.77219106379819, -73.916739299884 40.77185472270729, -73.9167224119667 40.77187981924136, -73.91639421872728 40.77164916253638)))",Q066F,5875,Q066F,Q-01,Q-01,Q-01,Q-01,Hoyt Ave. North bet. 29 St. and 31 St.,401,22,114,11102,Q,2.2,False,Hoyt Playground,Yes,100000304,PARK,20090423000000.00000,19370507000000.00000,24-57 29 STREET,DPR/TBTA,False,Hoyt Playground,Y,Hoyt Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q066F/,No,36,12,14,{ACF27057-99D4-45B9-B00F-6D82B40F3C13} +"MULTIPOLYGON (((-73.94641731127383 40.70568896256749, -73.947871423759 40.70555067503364, -73.94807039675958 40.706764788685796, -73.94661720301383 40.7069024469903, -73.94641731127383 40.70568896256749)))",B055,5424,B055,B-01,B-01,B-01,B-01,Lorimer St. bet. Montrose Ave. and Boerum St.,301,34,90,11206,B,4.044,False,Sternberg Park (Lindsey Park),Yes,100003863,PARK,20100106000000.00000,19190505000000.00000,286 LORIMER STREET,DPR,True,Sternberg Park,Y,Sternberg Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B055/,No,53,18,7,{9C9563A8-39F5-4CBB-A164-34D22770097D} +"MULTIPOLYGON (((-73.94742443828993 40.79624973770967, -73.94718375243963 40.796147895503395, -73.94723204280945 40.79608224866679, -73.94747314485373 40.79618352274765, -73.94742443828993 40.79624973770967)))",M382,4816,M382,M-11,M-11,M-11,M-11,Madison Ave. bet. E. 110 St. and E. 111 St.,111,8,23,10029,M,0.048,False,110th Street Block Association Garden,No,100004518,PARK,20100106000000.00000,20090304000000.00000,1651 MADISON AVENUE,DPR,False,110th Street Block Association Garden,N,110th Street Block Association Garden,,Garden,http://www.nycgovparks.org/parks/M382/,No,68,30,13,{EA019088-20ED-4C41-ABFA-C0FCEADD4716} +"MULTIPOLYGON (((-73.77142843518415 40.71026597791925, -73.77142897151762 40.71027280668096, -73.77127189167066 40.71032408872401, -73.7712254792518 40.71034147276957, -73.77122365197968 40.71034150065612, -73.77122184202614 40.71034130975212, -73.77122009553445 40.71034090285092, -73.77121845388008 40.71034029264189, -73.77121695962218 40.7103394918168, -73.77121565055519 40.710338522063125, -73.77121455854734 40.71033740775811, -73.77121371072407 40.71033617597101, -73.7712131294648 40.7103348573639, -73.77119719211338 40.71028327306517, -73.77120622705873 40.71028302717211, -73.77121839683427 40.710282093212335, -73.77131081100637 40.71027731140696, -73.77140278535005 40.71026895901673, -73.77142843518415 40.71026597791925)))",Q245,5901,Q245,Q-12,Q-12,Q-12,Q-12,"Jamaica Ave., Hollis Ave., 187 Pl.",412,27,103,11423,Q,0.018,False,Hollis Veterans Square,Yes,100000403,PARK,20090423000000.00000,19320614000000.00000,,DPR,False,Hollis Veterans Square,Y,Hollis Veterans Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q245/,No,29,14,5,{1174F908-FA2E-49E8-A6B2-B8D8B14C30E0} +"MULTIPOLYGON (((-73.9529195300737 40.804615006327616, -73.95291077494593 40.80461134762772, -73.95290564213182 40.80452292466908, -73.95290094955503 40.80444208228647, -73.95319167643285 40.80456355820148, -73.95327399253193 40.804597952822725, -73.95318142258344 40.804724433520256, -73.9529195300737 40.804615006327616)))",M387,5450,M387,M-10,M-10,M-10,M-10,St. Nicholas Ave. bet. W. 118 St. and W. 117 St.,110,9,28,10026,M,0.123,False,TRUCE Garden,No,100008338,PARK,20110712000000.00000,20100922000000.00000,143 - 145 St. Nicholas Ave.,DPR,False,TRUCE Garden,N,TRUCE Garden,,Garden,http://www.nycgovparks.org/parks/M387/,No,70,30,13,{C30A2836-2E1C-42F2-96E2-7E85D75FAE7F} +"MULTIPOLYGON (((-73.97893754532485 40.728344810064186, -73.9789702893822 40.728299824831886, -73.97917155160852 40.728385809568266, -73.97913953113179 40.728430050267676, -73.97893754532485 40.728344810064186)))",M342,4999,M342,M-03,M-03,M-03,M-03,Ave. B bet. E. 12 St. and E. 13 St.,103,2,9,10009,M,0.023,False,Community Garden Association,No,100004237,PARK,20100106000000.00000,20021120000000.00000,200 AVENUE B,DPR,False,Community Garden Association,N,Community Garden Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/M342/,No,74,27,12,{B4C54281-57CF-467D-B376-CD88957CD1A0} +"MULTIPOLYGON (((-73.72256641457663 40.74886592739364, -73.72255161945115 40.748837475242894, -73.72188612942455 40.74908976117077, -73.7218313197319 40.74911053867373, -73.7214535464025 40.74925374974634, -73.72076093522081 40.74951630685312, -73.72075445380227 40.74951876394212, -73.72027175750095 40.749700778171714, -73.7202215335403 40.74971349476929, -73.72021035793132 40.74972393065608, -73.72004431683872 40.74937450009813, -73.71990181737102 40.749074610492684, -73.71982438765592 40.748884708882976, -73.7197938329994 40.74880428378519, -73.71975509462972 40.74870231656023, -73.71970920554801 40.74858152565299, -73.71945406416798 40.74790992398026, -73.71933994291854 40.74760952369217, -73.71921660521568 40.74728485635207, -73.71913903961806 40.747080677191065, -73.71915323994803 40.7470759238005, -73.71906991591928 40.746801177308235, -73.72288244005445 40.74552497619556, -73.72282660134033 40.745393730123766, -73.7238703016026 40.745044331767254, -73.7238768237108 40.7450602063042, -73.72569231710102 40.74953526598026, -73.72334287165474 40.750359055701885, -73.7229087910885 40.74952432778681, -73.72290873000276 40.74952421057348, -73.72290273195121 40.74951267681332, -73.72256641457663 40.74886592739364)))",Q453,69207,Q453,Q-13,Q-13,Q-13,Q-13,Little Neck Pkwy. bet. 73 Rd. and 74 Ave.,413,23,105,11426,Q,47.08,False,Queens Farm Park,No,100000409,PARK,,19810623000000.00000,73-50 LITTLE NECK PARKWAY,DPR,False,Queens Farm Park,Y,Queens Farm Park,Large Park,Managed Sites,http://www.nycgovparks.org/parks/Q453/,No,24,11,3,{3E95BF1D-4CB2-4847-90C6-8CD434811E17} +"MULTIPOLYGON (((-73.98181770672083 40.71150340209309, -73.98200810258639 40.71149028184926, -73.98222206479859 40.713319359381984, -73.98203268980626 40.713341254711366, -73.98181770672083 40.71150340209309)))",M182,4859,M182,M-03,M-03,M-03,M-03,Madison St. To Water St. bet. Jackson St. and Gouverneur St.,103,2,7,10002,M,0.789,False,Vladeck Park,Yes,100004673,PARK,20100106000000.00000,19400613000000.00000,656 WATER STREET,DPR,True,Vladeck Park,N,Vladeck Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M182/,No,65,26,7,{44045102-1F6B-4604-9D3D-C31E2D3DC59B} +"MULTIPOLYGON (((-73.83937245017086 40.66605368858582, -73.83937420805185 40.66604807361303, -73.83937983139126 40.66604905672498, -73.83942830699198 40.66602492299389, -73.83947037065234 40.66600314775517, -73.83951162150662 40.66598101476222, -73.83955082199792 40.66595924090272, -73.83960579900699 40.6659274374528, -73.83966030475676 40.66589437709796, -73.83971743081898 40.66585799835958, -73.83976010386054 40.66582960055849, -73.83981956574992 40.66578818122499, -73.83986070869678 40.66575818373807, -73.83991261654936 40.665718482833796, -73.83991915419577 40.66571348235322, -73.83992241116985 40.665710991551755, -73.8399759891216 40.665667703480416, -73.84002971128609 40.66562194816684, -73.84008650459882 40.66557077147994, -73.84012812776636 40.66553125879711, -73.84016271119702 40.665497020554184, -73.84018885897628 40.665470222363716, -73.84094986468718 40.66467677752598, -73.84095076410493 40.66468047359275, -73.84019227532296 40.66547129422282, -73.84012834949013 40.66553545911845, -73.84008719595687 40.66557441953646, -73.84004798407335 40.66560998858936, -73.83999708765447 40.665654069277394, -73.8399468788946 40.66569542323229, -73.83991710996209 40.665718694404774, -73.83991081612652 40.66572361417793, -73.83988861352177 40.66574097046782, -73.83982137420908 40.665790541297625, -73.83974376076294 40.66584411394401, -73.83970508399811 40.66586945825002, -73.83966453909882 40.6658951178219, -73.83959869719476 40.66593490274544, -73.8395620703742 40.66595607236143, -73.83951598233777 40.665981778181006, -73.83947456919574 40.66600402351373, -73.83942433545789 40.666029963949626, -73.83937948087649 40.666052194538594, -73.8393779042053 40.66605278667865, -73.83937608536085 40.666053269517896, -73.83937448817895 40.66605353924406, -73.83937245017086 40.66605368858582)))",Q417,6312,Q417,Q-10,Q-10,Q-10,Q-10,"Belt Pkwy., Cross Bay Blvd. Ramp bet. 155 Ave. and 156 Ave.",410,32,106,11414,Q,0.082,False,Strip,No,100000312,PARK,20090423000000.00000,19630507000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/Q417/,No,23,15,8,{0027751E-6A06-43DC-8CC6-B143744C64DA} +"MULTIPOLYGON (((-73.9217424145366 40.84521621120906, -73.92170678034559 40.84520387368991, -73.92165858146016 40.8452801190073, -73.92163704274444 40.845314190730015, -73.92162784393632 40.8453287418466, -73.92162081520215 40.84532613374631, -73.9215538834337 40.845301292279025, -73.92134646508127 40.84522431018507, -73.9213768082728 40.84518339086681, -73.92145846864129 40.84518616958776, -73.92157398747736 40.84519169346562, -73.92165345710417 40.845195977984005, -73.92165353335483 40.845195672768725, -73.92197372592233 40.8452205029685, -73.92206573038699 40.84522910724037, -73.92210724213354 40.845232790379534, -73.92205201770686 40.84536781798527, -73.92204464542594 40.84537805971033, -73.92203665944173 40.845387836365845, -73.92202567276577 40.845398130576754, -73.92173866101055 40.84522366474272, -73.9217424145366 40.84521621120906)))",X148A4,5704,X148A4,X-05,X-05,X-05,X-05,Cross Bronx Exwy bet. Dr MLK Jr Blvd and Plimton Av,205,14,46,10452,X,0.167,False,Park,No,100005171,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,STRIP,Parkway,http://www.nycgovparks.org/parks/X148A4/,No,77,29,15,{9D4D548D-43A9-4121-8BC3-45F3D6204639} +"MULTIPOLYGON (((-73.87796280492904 40.673832538978004, -73.8783312795067 40.673782249101336, -73.87835046298304 40.673858541280936, -73.87835839494767 40.67389008933564, -73.87798973050636 40.67394040521274, -73.87796280492904 40.673832538978004)))",B453,5253,B453,B-05,B-05,B-05,B-05,Montauk Ave. between Pitkin Ave. and Belmont Ave.,305,37,75,11208,B,0.091,False,Concerned Residents of Montauk Avenue,No,100004312,PARK,20100106000000.00000,20121120000000.00000,212 MONTAUK AVENUE,DPR,False,Concerned Residents of Montauk Avenue,N,Concerned Residents of Montauk Avenue,Greenthumb,Garden,http://www.nycgovparks.org/parks/B453/,No,54,18,8,{3FD74222-C683-4779-BBF2-5B6CE81ED1BA} +"MULTIPOLYGON (((-73.89441231340214 40.86442015397411, -73.89468061723038 40.86407746915373, -73.89540573213775 40.864219403025984, -73.89421872174341 40.865775121265216, -73.89412323678702 40.865726495486676, -73.89411913243914 40.8657236488741, -73.89411525190354 40.86572029188904, -73.89409774833638 40.86570421829074, -73.89408533245137 40.86568875809095, -73.89407690479707 40.86567457574415, -73.89407064184167 40.865659683997, -73.89406858281215 40.865652886109835, -73.89406669007137 40.865644457588125, -73.89406384545572 40.86562447400716, -73.89405884049795 40.86558236610815, -73.89405570872457 40.86553639322499, -73.8940565944216 40.86546961370902, -73.89406104034732 40.86539801353667, -73.89406583691759 40.865339353725055, -73.89407582915415 40.865273802730655, -73.89408477732249 40.865229249300704, -73.894103403504 40.86515553698292, -73.89441231340214 40.86442015397411)))",X040,4802,X040,X-07,X-07,X-07,X-07,Grand Concourse bet. E. 192 St. and E. K,207,15,52,10458,X,2.331,False,Poe Park,Yes,100003936,PARK,20100106000000.00000,18961002000000.00000,2640 GRAND CONCOURSE,DPR,True,Poe Park,Y,Poe Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X040/,No,78,33,13,{696064A0-F002-43C6-827B-7AC8144B7B52} +"MULTIPOLYGON (((-73.9817026011856 40.65690754092282, -73.98176725329722 40.65684140822788, -73.98200756895464 40.6569898836624, -73.98194493781975 40.6570514016598, -73.9817026011856 40.65690754092282)))",B255O,6566,B255O,B-07,B-07,B-07,B-07,18 St. bet. 10 Ave. and Prospect Park West,307,38,72,11215,B,0.058,False,Park,Yes,100004633,PARK,20100106000000.00000,,,CDOT,False,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B255O/,No,44,21,9,{B74A5EEA-DF8E-42A8-AFE0-CBB85EB66D6B} +"MULTIPOLYGON (((-73.94095712590331 40.80846787933352, -73.9411986029925 40.8085696302693, -73.94116285207723 40.8086189719337, -73.94092149708392 40.808517051692846, -73.94095712590331 40.80846787933352)))",M305,5958,M305,M-10,M-10,M-10,M-10,"5 Ave., E. 128 St.",110,9,32,10027,M,0.034,False,Collyer Brothers Park,No,100003879,PARK,20100106000000.00000,19980511000000.00000,,DPR,False,Collyer Brothers Park,Y,Collyer Brothers Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/M305/,No,70,30,13,{E14D200B-36BC-444B-A206-3848157E46D7} +"MULTIPOLYGON (((-73.99137621108147 40.766231206299445, -73.99130916687433 40.76638881284461, -73.99127653543985 40.766380788690526, -73.99124042980527 40.766465664738995, -73.99110622538325 40.766432643788725, -73.99115061995997 40.76637158044136, -73.99107164652231 40.76633836556849, -73.9912026277303 40.76615820103574, -73.99137621108147 40.766231206299445)))",M393,5507,M393,M-04,M-04,M-04,M-04,W. 52 Street bet. 11 Ave. and 10 Ave.,104,3,18,10019,M,0.122,False,Oasis Garden,No,100008353,PARK,20130114000000.00000,20121018000000.00000,505 WEST 52 STREET,DPR,False,Oasis Garden,,Oasis Garden,,Garden,,No,67,27,10,{CE4413D5-D30B-445E-AA20-FFA72B82C2B6} +"MULTIPOLYGON (((-74.07090104369 40.597426594507965, -74.07156021804396 40.597813040611385, -74.07076260141908 40.59807764433051, -74.0706246544993 40.59784471532703, -74.07059170932477 40.59785657113948, -74.07043223265238 40.59758357285508, -74.07090104369 40.597426594507965)))",R062,5056,R062,R-02,R-02,R-02,R-02,"Sand La., Major Ave. and Mcfarland Ave.",502,50,122,10305,R,0.892,False,Arrochar Playground,Yes,100004058,PARK,20100106000000.00000,19451024000000.00000,200 MC FARLAND AVENUE,DPR/DOE,False,Arrochar Playground,Y,Arrochar Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R062/,No,64,23,11,{385179D7-E7F1-4A5F-9CDC-011BCC4FE13F} +"MULTIPOLYGON (((-73.94136391242778 40.85137541410035, -73.94137197664331 40.851374035944254, -73.9414021653239 40.85138596838913, -73.94142891168472 40.8513988310873, -73.94145505262522 40.85141239405449, -73.94148055495693 40.85142663836397, -73.94150538667257 40.85144155049252, -73.94152951932956 40.85145710881442, -73.9415541676767 40.85147423604891, -73.94155540968778 40.851475174089934, -73.94172315622744 40.851601801439166, -73.94185115971818 40.8516986778847, -73.94185426821366 40.85170250654084, -73.9418568159052 40.851707538871544, -73.94185793787179 40.8517128622429, -73.94185758569071 40.8517182479057, -73.9418555362535 40.85172387404481, -73.94185118830525 40.85172973495413, -73.94184597956857 40.85173402497202, -73.94183903185578 40.8517374415366, -73.94183124565505 40.851739552865624, -73.94182301130776 40.851740159246695, -73.94181539367003 40.85173937197719, -73.94180979268488 40.85173790495274, -73.94180323130271 40.85173485978231, -73.94167277949968 40.85164000274956, -73.94161773022067 40.85159982558397, -73.9415261557885 40.85153298973943, -73.94151044659674 40.85152152662169, -73.94150422434237 40.85151722181823, -73.941483871057 40.85150314131411, -73.94145655496226 40.851485393172666, -73.941428524388 40.85146829841882, -73.94139980778316 40.85145187147448, -73.94137043477764 40.85143613216495, -73.94133914409217 40.85141913478645, -73.94133622295422 40.85141268397978, -73.94133511557348 40.85140701121967, -73.94133523920866 40.851402636694075, -73.94133561065561 40.85140100068961, -73.9413363071075 40.85139794567557, -73.94133634282142 40.85139779080915, -73.94133640342508 40.85139765216427, -73.94133725900664 40.85139569493046, -73.94133838433362 40.85139312099704, -73.94134099796005 40.85138922229667, -73.94134296604436 40.85138712965427, -73.94134315952947 40.85138692354005, -73.94134476319797 40.85138521792374, -73.94134606383375 40.85138422174076, -73.94134983045436 40.851381338480465, -73.94134991232104 40.85138129439803, -73.94135224018207 40.85138004029611, -73.94135261629398 40.85137983787668, -73.94135569875051 40.85137817893708, -73.94135785537438 40.85137745333661, -73.94136391242778 40.85137541410035)))",M061,5761,M061,M-12,M-12,M-12,M-12,"Riverside Dr., W. 181 St. To Haven Ave.",112,10,34,10033,M,0.092,False,Plaza Lafayette,Yes,100004139,PARK,20100106000000.00000,19180223000000.00000,,DPR/CDOT,False,Plaza Lafayette,Y,Plaza Lafayette,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M061/,No,71,31,13,{6C3BAC26-27B4-40C7-8273-6EFEC9702F39} +"MULTIPOLYGON (((-73.73595423266357 40.65238075147569, -73.73595439764786 40.65237670761299, -73.73677771705567 40.652398191960714, -73.7367456966764 40.652887615046374, -73.73655409201126 40.65294004053091, -73.73593202451423 40.65292341588434, -73.73593205204952 40.65292273245192, -73.73595393954693 40.652387892837744, -73.73595423266357 40.65238075147569)))",Q430,5310,Q430,Q-13,Q-13,Q-13,Q-13,253 St. bet. 149 Ave. and 149 Rd.,413,31,105,11422,Q,1.025,False,Sunrise Playground (PS 196),Yes,100000257,PARK,20090423000000.00000,19620226000000.00000,253-50 149 AVENUE,DPR/DOE,False,Sunrise Playground,Y,Sunrise Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q430/,No,29,10,5,{D7B8DE90-155B-49EB-BF4B-4519E29FE74F} +"MULTIPOLYGON (((-74.01468269078622 40.71853323216632, -74.0131879135945 40.718328703776294, -74.01321814938221 40.7182085182523, -74.01438926255052 40.71836876226073, -74.01476869542488 40.71842067723744, -74.01477008138261 40.718420803131025, -74.0149212722515 40.71822629420087, -74.01498433647954 40.71825467188471, -74.01504037801493 40.71823232292536, -74.01512953847568 40.71819415843742, -74.01521679869195 40.7181535321372, -74.01529476512069 40.71811571929827, -74.0154287978346 40.71804646750637, -74.01555731955513 40.71797141071478, -74.01567989360244 40.717890801144016, -74.01579610816245 40.71780491082344, -74.01590557036899 40.717714029790585, -74.01600791103779 40.71761846609032, -74.0161027834818 40.7175185403715, -74.01618986942974 40.71741459128896, -74.01626887310695 40.71730697010096, -74.01633952951939 40.7171960388666, -74.016401598536 40.71708217314806, -74.01645487198796 40.7169657557056, -74.01649916893514 40.716847181901194, -74.01653434158091 40.71672685069237, -74.01656026935446 40.716605167334315, -74.01657686482763 40.716482544279415, -74.01658407371285 40.71635939487368, -74.01658187131181 40.716236135158155, -74.01657026369746 40.716113180266575, -74.01657824764881 40.71602293988953, -74.01659391973803 40.71593328463507, -74.01661721138612 40.715844593624794, -74.01664802679397 40.71575724148026, -74.01668623347474 40.71567159652336, -74.01673167172208 40.715588020775094, -74.01678414869265 40.71550686725516, -74.01684344314043 40.71542847908078, -74.0172901798298 40.71487992012143, -74.01743660297006 40.713791590672656, -74.01721282835717 40.71377415894783, -74.01692300346785 40.713653194018896, -74.01676247165851 40.71385904178442, -74.01674568233355 40.713851461029094, -74.01668691423349 40.71393298557141, -74.01668642657489 40.71393742786023, -74.01562237979812 40.71345772754952, -74.01562334756196 40.713456435185606, -74.0156212715613 40.71345549893637, -74.01562462766056 40.71345472674343, -74.01624508674344 40.71262644218833, -74.01603934411706 40.71250252295411, -74.01612239321513 40.712224051847265, -74.01582300579875 40.71215440826941, -74.0158420422799 40.71208877193041, -74.0158652873029 40.71209400970137, -74.01593131720642 40.71181321504253, -74.01597065406197 40.71182702342633, -74.01636383528174 40.71199857673179, -74.01681185182728 40.71207677916158, -74.01683012890433 40.71206806134847, -74.01772017027533 40.71222180074665, -74.01778347251063 40.71179289665074, -74.01782146912905 40.71142684486367, -74.01786593149251 40.711436061003035, -74.01798980029999 40.71114321991939, -74.017869069475 40.71111655298615, -74.01792615418492 40.71097268390673, -74.01784474602952 40.71095025222328, -74.01796004807719 40.71061618439177, -74.01774039985098 40.71056755664496, -74.01784288761807 40.71031193439283, -74.01801620796753 40.71034987834013, -74.01808698592741 40.71007059809596, -74.01817172884967 40.7097362160299, -74.01793132146764 40.709681226205326, -74.01807094001303 40.7093319528898, -74.0182681684737 40.709392482925765, -74.01837804892581 40.708953734658735, -74.01827828695892 40.708911159971535, -74.01845559994555 40.7086918293168, -74.01858559119383 40.70815812318685, -74.01796247702607 40.70790007527161, -74.01766696033505 40.70777769110678, -74.01750848599517 40.7077121860204, -74.01760606710246 40.707575477136785, -74.01777064814009 40.70764408881152, -74.01812425037265 40.70716510307922, -74.01796673873865 40.70709826751143, -74.01807523124253 40.70695019926677, -74.01824272409543 40.70702126911105, -74.01852784936686 40.70663503209124, -74.0188347580164 40.706769661855674, -74.0190114116806 40.70653035974996, -74.0191053479671 40.70607956531333, -74.01899306600532 40.705718840820815, -74.01808258791678 40.705514431772926, -74.01808095598683 40.70550955666023, -74.01804951592086 40.705428748794795, -74.01801045593004 40.705349889918786, -74.01796398204563 40.70527339422768, -74.01791033934184 40.70519966600409, -74.01784980956685 40.70512909331481, -74.01778271350908 40.705062047110246, -74.0177094027137 40.70499888212651, -74.01763026539727 40.70493993058111, -74.01754571698132 40.70488550217472, -74.01745620364238 40.70483588499159, -74.01750680681124 40.70470679347829, -74.01813334044022 40.7046580301351, -74.01817034765571 40.70456945718529, -74.01897238594222 40.704669712309745, -74.01926340355092 40.70500697758918, -74.0194406168259 40.7058192883941, -74.01914086373927 40.707029681728045, -74.01856696601574 40.70689966355193, -74.01819413630248 40.707845789393836, -74.01889919201263 40.70800552193331, -74.0181171907695 40.711162912122454, -74.01789220106107 40.7123575468318, -74.01781222662466 40.712799705450465, -74.01775403479874 40.713121423646776, -74.01765875043627 40.71364819554069, -74.01667335874296 40.71880558054864, -74.01468269078622 40.71853323216632)), ((-74.01386898443607 40.7154464943223, -74.01458567499819 40.715550866744834, -74.01457096920883 40.715822890241476, -74.01456297958549 40.71590491602785, -74.01454792550126 40.71598636457809, -74.0145258707634 40.716066885583004, -74.01449691350238 40.71614612962825, -74.01446117552206 40.71622375539995, -74.01441881413501 40.71629942698193, -74.0143843968961 40.71636664176472, -74.01434186722958 40.716431111892, -74.01429159661762 40.71649227088788, -74.01423402519829 40.71654958378485, -74.01416966058198 40.716602547124374, -74.0139820961453 40.71677580389233, -74.01362573255487 40.7165951844776, -74.01353704461283 40.71655276740465, -74.01350684492434 40.716523335075955, -74.01348643595156 40.71649150083266, -74.01347776229092 40.716457774141055, -74.0134879339718 40.716425672464126, -74.0137441232199 40.71542662602958, -74.01386898443607 40.7154464943223)), ((-74.01638130014021 40.71485810579863, -74.01672853423248 40.71501254652019, -74.01675803891902 40.71502844704269, -74.01678346743846 40.71504800422383, -74.0168040456427 40.715070623842486, -74.01681914847637 40.71509561890322, -74.01682831891779 40.715122229444226, -74.0168312762703 40.71514964775018, -74.01682793155464 40.71517704086256, -74.01681838633249 40.71520357489335, -74.01680293034842 40.71522844564306, -74.01678203443437 40.71525089571151, -74.0167563315817 40.71527024331738, -74.0167266039281 40.715285901211026, -74.01669375435826 40.71529739378908, -74.01665878047015 40.71530437150649, -74.01662274617338 40.715306621687304, -74.01658674618554 40.715304076634546, -74.01655187289327 40.71529681363505, -74.01651918794722 40.71528505316254, -74.01617194700341 40.71513061361698, -74.01616636970455 40.71512766342797, -74.0161614668406 40.715124085488355, -74.0161573615155 40.71511996803088, -74.01615415198299 40.715115412799555, -74.01615191874708 40.71511053144644, -74.0161507174604 40.715105443731645, -74.0161505753737 40.71510027662334, -74.01615149843457 40.71509515619211, -74.01615346300372 40.71509020851274, -74.01615642058748 40.71508555516087, -74.01632208403295 40.714869923502235, -74.01632644519553 40.71486523842899, -74.016331808924 40.71486119977974, -74.01633801311192 40.71485793184789, -74.01634486842663 40.714855532815704, -74.0163521665938 40.71485407655457, -74.016359687497 40.71485360632016, -74.01636720036142 40.71485413655337, -74.01637447795532 40.71485565197792, -74.01638130014021 40.71485810579863)), ((-74.0161449442296 40.70885072957104, -74.01615063029983 40.70885055857684, -74.01615777441046 40.708850897967444, -74.01616220982375 40.708851425044294, -74.01616692577156 40.708852260956824, -74.01675540937636 40.70903125243246, -74.01664393896331 40.70917408425141, -74.01657968535754 40.709256412838656, -74.01604916964538 40.70913829685415, -74.0160425836699 40.70913633916065, -74.01603695966627 40.70913390045991, -74.01603397478843 40.70913225384104, -74.0160318349113 40.70913088986487, -74.01603011753448 40.70912966721004, -74.01602730645635 40.709127365895256, -74.01602443252624 40.709124510774885, -74.01602280491633 40.709122580305774, -74.016021526449 40.70912083979586, -74.01602040536888 40.70911909025898, -74.01601869696403 40.70911580543245, -74.0160174026938 40.709112320634844, -74.01601666589303 40.70910924369116, -74.01601642053643 40.70910759038703, -74.01601625076243 40.709105297709556, -74.01610763546228 40.708863196069835, -74.0161122664783 40.70886025705412, -74.01611931972066 40.70885673957094, -74.01612470475791 40.70885468114896, -74.01613147792078 40.70885273959864, -74.0161381707717 40.708851450029215, -74.0161449442296 40.70885072957104)), ((-74.01695798083213 40.709300164891026, -74.01708729723047 40.709133872710645, -74.01781496723306 40.70935832733278, -74.01782291702526 40.70936210104437, -74.01783135590313 40.709367174117006, -74.01784060831557 40.709374298427065, -74.01784737444645 40.70938144113205, -74.01785136858045 40.709386663476586, -74.01785703140314 40.70939674111746, -74.01786082856944 40.70940882718708, -74.01786134427357 40.70942555499948, -74.01783743457138 40.709485190545315, -74.01783099129769 40.70949500531238, -74.01782550781522 40.709500646962496, -74.01781981102219 40.70950516570815, -74.01781267164458 40.70950954689859, -74.01780564439518 40.70951283304991, -74.0177953865269 40.70951621245282, -74.017788869998 40.709517622759755, -74.01778152734927 40.70951859734659, -74.01777362242865 40.70951895877178, -74.01776130434402 40.70951812589933, -74.01774997043428 40.70951578181639, -74.01693409970288 40.709330873130654, -74.01695798083213 40.709300164891026)), ((-74.01431195953786 40.71711805445121, -74.01439254387894 40.71715456729299, -74.01439808932122 40.7171575517905, -74.0144029531905 40.71716116042647, -74.0144070147481 40.71716530316511, -74.0144101745563 40.71716987826139, -74.01441235566159 40.71717477316109, -74.0144135024124 40.71717986810355, -74.01441358874362 40.717185036120036, -74.01441261107709 40.71719015113964, -74.01441059305557 40.717195086187445, -74.01440758554428 40.71719972058869, -74.01409506634973 40.71759934529884, -74.01409013821781 40.71760534059728, -74.01408621570975 40.717609559966725, -74.01408147408941 40.71761326164296, -74.01407602932282 40.71761635195867, -74.01407001750047 40.7176187570553, -74.01406358418375 40.717620416580786, -74.01405688914107 40.71762129089316, -74.0140500968783 40.71762135655901, -74.0140433742732 40.71762061265745, -74.01403688702412 40.71761907807901, -74.0140307960993 40.71761679062551, -74.01395020666415 40.71758028113542, -74.01394466120675 40.717577296616504, -74.01393979614859 40.71757368886202, -74.01393573459508 40.71756954610707, -74.01393257361704 40.717564970998225, -74.01393039253423 40.717560076089676, -74.01392924463042 40.71755498204335, -74.01392915833611 40.717549813126226, -74.01393013604519 40.71754469901146, -74.01393215292917 40.71753976307195, -74.01393516048887 40.717535128683345, -74.01425261670698 40.71712950099264, -74.01425653917627 40.71712528161725, -74.01426128193587 40.71712158083392, -74.01426672665326 40.71711848960878, -74.01427273960714 40.717116085402054, -74.01427917286996 40.71711442586477, -74.0142858678592 40.717113553340425, -74.01429266006994 40.717113487660654, -74.01429938262667 40.71711423154771, -74.01430586864915 40.71711576611161, -74.01431195953786 40.71711805445121)), ((-74.01480583071331 40.716493898862176, -74.01488641457037 40.716530411361255, -74.01489195998276 40.716533395835235, -74.01489682383324 40.71653700445064, -74.01490088538357 40.716541147172244, -74.01490404519602 40.71654572225528, -74.01490622631715 40.716550617146076, -74.01490737309497 40.716555712084, -74.01490745946367 40.71656088010053, -74.01490648184419 40.716565995124775, -74.01490446387821 40.71657093018165, -74.01490145642941 40.71657556459619, -74.01458894312258 40.716975190680266, -74.01458401508124 40.71698118600038, -74.01458009264124 40.716985405386964, -74.01457535109266 40.716989107083855, -74.01456990640003 40.716992197423195, -74.01456389465174 40.71699460254579, -74.01455746140756 40.71699626209906, -74.01455076643407 40.716997136440234, -74.01454397423542 40.7169972021352, -74.01453725168777 40.7169964582624, -74.01453076448809 40.71699492371167, -74.0145246736033 40.716992636284104, -74.01444408465228 40.7169561271367, -74.01443853922471 40.71695314264131, -74.01443367418538 40.7169495349074, -74.01442961263926 40.71694539216956, -74.01442645165686 40.716940817073855, -74.01442427055821 40.71693592217425, -74.01442312262745 40.716930828132426, -74.01442303629565 40.71692565921524, -74.0144240139577 40.71692054509587, -74.01442603078615 40.716915609147286, -74.01442903828334 40.71691097474537, -74.01474648852296 40.71650534565909, -74.01475041092426 40.71650112626656, -74.01475515361207 40.71649742546256, -74.0147605982555 40.71649433421377, -74.01476661113527 40.71649192998108, -74.01477304432555 40.71649027041602, -74.01477973924563 40.7164893978629, -74.01478653139233 40.71648933215403, -74.01479325389158 40.7164900760123, -74.01479973986467 40.71649161054851, -74.01480583071331 40.716493898862176)), ((-74.01475177759767 40.71545713577996, -74.01536039473811 40.715548200431336, -74.01522889181133 40.715717800193005, -74.01473280751627 40.71549506410003, -74.0147291702132 40.7154931068561, -74.01472600384554 40.715490721809445, -74.01472339482254 40.715487973785784, -74.01472141298657 40.71548493661809, -74.01472011516353 40.71548169404651, -74.01471953332697 40.71547833341658, -74.01471968406551 40.7154749447771, -74.0147205638493 40.71547162178168, -74.01472214784442 40.71546845268346, -74.01472439464798 40.71546552573773, -74.0147272427356 40.71546291839617, -74.01473061401246 40.715460701809036, -74.0147344173631 40.7154589363222, -74.01473855101811 40.715457670576086, -74.01474290136959 40.71545693700371, -74.01474735007326 40.71545675723238, -74.01475177759767 40.71545713577996)), ((-74.01519632602097 40.71620258967094, -74.01503769697933 40.7164054414131, -74.01503377696925 40.716409662616215, -74.01502903667038 40.716413364331885, -74.01502359441346 40.71641645739411, -74.01501758273368 40.71641886344112, -74.01501115074028 40.71642052482072, -74.01500445583096 40.71642140098933, -74.01499766369184 40.71642146851214, -74.0149909411976 40.71642072646677, -74.0149844540439 40.716419193742524, -74.01497836201308 40.71641690813994, -74.01489775812871 40.71638042002103, -74.01489221036212 40.71637743734863, -74.01488734534047 40.71637383053411, -74.01488328025084 40.71636968871291, -74.01488011808132 40.716365114530014, -74.01487793460134 40.716360220539435, -74.01487678427881 40.71635512650203, -74.01487669554558 40.71634995758511, -74.01487767079713 40.71634484256129, -74.0148796852076 40.71633990660469, -74.01488269028009 40.71633527129038, -74.01504132317596 40.71613241525691, -74.0150499535572 40.71612315418262, -74.01506047307998 40.716115103146265, -74.01507259301908 40.716108481009115, -74.01508598203546 40.71610347061767, -74.01510027327501 40.7161002088971, -74.01511507620276 40.71609878414844, -74.0151299848877 40.71609923604722, -74.0151445910199 40.7161015529405, -74.01515849574545 40.716105670044186, -74.0151713191353 40.7161114748448, -74.01518270728667 40.7161188088996, -74.01519235125984 40.71612747143602, -74.01519998589589 40.71613722565524, -74.01520540283676 40.71614780413372, -74.01520845289392 40.7161589169272, -74.01520905315193 40.716170261475355, -74.01520718696909 40.7161815244029, -74.01520290516507 40.716192400429996, -74.01519632602097 40.71620258967094)))",M283,6369,M283,M-01,M-01,M-01,M-01,"Hudson River, Liberty St. West St, and Pier A",101,1,1,"10007, 10013, 10280",M,28.434,False,Battery Park City,No,100004688,PARK,20100106000000.00000,19820427000000.00000,,DPR/BPC Authority,True,Battery Park City,N,Battery Park City,Large Park,Community Park,http://www.nycgovparks.org/parks/M283/,Yes,"66, 65",26,10,{EB22BC03-E374-425B-A4D0-9256840A89CF} +"MULTIPOLYGON (((-74.0721115411988 40.58693503262064, -74.07265165894411 40.58633622231024, -74.07322299506563 40.58662051338945, -74.0740484914946 40.58703126255063, -74.07394238863255 40.58715379760179, -74.07361101748211 40.58742547233649, -74.0734615209298 40.58754803563025, -74.0729648898574 40.58795518974471, -74.07262422394942 40.58778485719802, -74.07171440173533 40.58732993568332, -74.0721115411988 40.58693503262064)), ((-74.07046798233831 40.587440930054434, -74.07066413958118 40.587166156172565, -74.07082751875856 40.58723093200547, -74.07088695276536 40.58715839599388, -74.07090946005316 40.58713092603965, -74.07128484908468 40.58731841602592, -74.07082788285777 40.5877557677693, -74.0704128604812 40.587518143225864, -74.07045112992914 40.587464535909206, -74.07046798233831 40.587440930054434)))",R147,6395,R147,R-02B,R-02,R-02,R-02,"Qunitard St., Pearsall St., Frank Capodanno Blvd.",502,50,122,10305,R,5.188,False,South Beach Wetlands,No,100003831,PARK,20100106000000.00000,19991230000000.00000,,DPR,False,South Beach Wetlands,N,South Beach Wetlands,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R147/,No,64,23,11,{E6E6FE02-62B9-41F4-8A39-FBD3E2610457} +"MULTIPOLYGON (((-74.0055067518635 40.72210890708079, -74.00551354339511 40.72210868162839, -74.00552027472388 40.72211040307994, -74.00566997012888 40.72221695849281, -74.00578032256547 40.72229453099402, -74.00578922744829 40.72230103672735, -74.00579214888954 40.72230431623582, -74.00579484195941 40.7223083503826, -74.00579035993543 40.72232563228476, -74.00576887229204 40.722349168177615, -74.00528348041804 40.722928567517364, -74.00526052050814 40.72295888781847, -74.00525554938676 40.72296017037084, -74.00524827014986 40.722960848786435, -74.00523793939564 40.72295983078079, -74.00521272081738 40.722956300127564, -74.00519793596033 40.72295367130866, -74.00519335506112 40.72295016673293, -74.00518985703111 40.72294476923752, -74.00518935115582 40.722938761962354, -74.00519135337065 40.722932637507895, -74.00525895844702 40.72276798800706, -74.0053563816085 40.722523836506674, -74.00536381047199 40.72250045173223, -74.0053672825434 40.7224922722434, -74.00544882982469 40.72230016994013, -74.00548132671672 40.7222236097859, -74.00546818545617 40.72221377144451, -74.0054640567615 40.722210613553834, -74.00546158036101 40.722207123296684, -74.00546053601657 40.72220224798804, -74.00546189671303 40.72219668187455, -74.00547683919332 40.72216048968962, -74.00549419446747 40.72211738417631, -74.00549721708896 40.72211353975711, -74.00550186723343 40.72211042827479, -74.0055067518635 40.72210890708079)))",M279,5944,M279,M-02,M-02,M-02,M-02,"Ave. Of Americas, Canal St. and Grand St.",102,1,1,10013,M,0.448,False,Juan Pablo Duarte Square,Yes,100004407,PARK,20100106000000.00000,19770526000000.00000,,DPR,True,Duarte Square,Y,Duarte Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M279/,No,66,26,10,{ADD7A5D5-9E7A-48B5-A58B-3B3C7476BAF1} +"MULTIPOLYGON (((-73.98384053517334 40.719412212941606, -73.98381508170723 40.71940648932793, -73.98378097381782 40.71940656557394, -73.98374925228389 40.719415136655705, -73.98371862334777 40.719427821412026, -73.98369236979596 40.71944145681787, -73.98367319195303 40.719458353066806, -73.98365895337928 40.71948379315011, -73.98364788735717 40.719511557898024, -73.98364574387521 40.719535874059495, -73.98365524375055 40.7195624107306, -73.98367858942181 40.71958227748738, -73.98370173141477 40.71959779114629, -73.98373853925537 40.71961653595961, -73.98373099507312 40.71963164904999, -73.98355744895458 40.71957860237964, -73.9835054222158 40.719562699138876, -73.983634148963 40.71930264127255, -73.9838519837321 40.71936837682991, -73.98411846864008 40.71885053428943, -73.98437489864673 40.71892891463601, -73.98423750530458 40.71919672014347, -73.98431992943118 40.71922191415603, -73.9844049702808 40.71924790811669, -73.98448985616204 40.719273852465484, -73.9844582348462 40.71933548899881, -73.98435695999649 40.71952702632532, -73.98432453679675 40.71959022599588, -73.98429093534622 40.71965572269643, -73.98425818875947 40.71971954905793, -73.9842251350929 40.71978537359864, -73.98414038831437 40.71975947049911, -73.98389531560106 40.719684561793265, -73.9839617341715 40.719555099370425, -73.98396701409054 40.71954509274052, -73.98396770722916 40.71954195906297, -73.98396911920537 40.719532181524286, -73.98396941977687 40.719522563221034, -73.98396853578971 40.71951216220982, -73.98396753465647 40.719506571705615, -73.98396588634193 40.719500035575955, -73.98396383198597 40.719493830777324, -73.9839613136529 40.71948771236301, -73.98395634617077 40.71947816626702, -73.98395201003667 40.719471426247345, -73.9839455379693 40.71946304249931, -73.98393863722798 40.7194555970223, -73.98393194685583 40.71944942219355, -73.98392249671654 40.719442011479636, -73.98391266879098 40.71943556245659, -73.98390287612192 40.719430158029006, -73.98389251756396 40.71942536586809, -73.9838825091139 40.71942151568852, -73.98387528640602 40.719419165247096, -73.98386800917793 40.719417132677556, -73.98386035907082 40.71941533778979, -73.98385322134392 40.71941396531257, -73.98384615219379 40.71941288190811, -73.98384053517334 40.719412212941606)))",M241,5336,M241,M-03,M-03,M-03,M-03,Rivington St. and Attorney St. bet. Clinton St. and Ridge St.,103,1,7,10002,M,0.851,False,Nathan Straus Playground,Yes,100004674,PLGD,20100106000000.00000,19631121000000.00000,178 RIVINGTON STREET,DPR/DOE,False,Nathan Straus Playground,Y,Nathan Straus Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M241/,No,65,26,12,{BFFF1FA2-1C2A-4852-A5B3-48D564D1B193} +"MULTIPOLYGON (((-73.93319466418113 40.63679878588845, -73.93352787352549 40.63678575306945, -73.93355784903218 40.637054161102945, -73.93322572207815 40.637076906735984, -73.93319466418113 40.63679878588845)))",B375,4885,B375,B-17,B-17,B-17,B-17,Farragut Rd. between E. 45 St. and E. 46 St.,317,45,67,11203,B,0.206,False,A Chiarantano Park,Yes,100004120,PARK,20100106000000.00000,19960131000000.00000,4052 FARRAGUT ROAD,DPR/DOE,False,Chiarantano Playground,N,Chiarantano Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B375/,No,58,21,9,{7781EA64-C58E-403F-BB53-F2E8E551C6B1} +"MULTIPOLYGON (((-73.9919677686699 40.57404512057698, -73.99187887684727 40.57358067332331, -73.9927095461368 40.573392089868705, -73.99281602407785 40.573950790082755, -73.9926535883885 40.573968789398975, -73.99263914503624 40.57389300213512, -73.99210182974855 40.57395254064711, -73.99211633623813 40.57402865937553, -73.9919677686699 40.57404512057698)))",B315,6649,B315,B-13,B-13,B-13,B-13,Surf Ave. between W. 25 St. and W. 27 St.,313,47,60,11224,B,0.933,False,Surf Playground (PS 288),Yes,100004163,PARK,20100106000000.00000,19580227000000.00000,2501 SURF AVENUE,DPR/DOE,False,Surf Playground,Y,Surf Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B315/,No,46,23,8,{768E7E07-9208-48B9-908E-8432AB0170FA} +"MULTIPOLYGON (((-73.94306677581775 40.7463041939934, -73.94360081552986 40.74609155174993, -73.94382646143694 40.74641933747485, -73.94332202990562 40.74662006091537, -73.94310070983474 40.74631177321692, -73.94306677581775 40.7463041939934)))",Q267,6198,Q267,Q-02,Q-02,Q-02,Q-02,Jackson Ave. bet. Court Sq. and Thomson Ave.,402,26,108,11101,Q,0.492,False,Court Square Park,Yes,100000356,PARK,20090423000000.00000,,,DPR,True,Court Square Park,Y,Court Square Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q267/,No,37,12,12,{8E7285BD-8F01-49AB-B638-DE667D77FF55} +"MULTIPOLYGON (((-73.84383398063673 40.8853750770895, -73.84458984653484 40.88484696278914, -73.8445586754595 40.884201100165185, -73.84536339374259 40.883640815337984, -73.84598642045873 40.883906093682505, -73.84400490379724 40.88549267954987, -73.84383398063673 40.8853750770895)))",X165,5590,X165,X-12,X-12,X-12,X-12,Schieffelin Ave. bet. E. 266 Dr. and E. 229 St.,212,12,47,10466,X,2.537,False,Edenwald Playground,Yes,100004205,PARK,20100106000000.00000,19570627000000.00000,1915 SCHIEFFLIN AV,DPR/NYCHA,True,Edenwald Playground,Y,Edenwald Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X165/,No,83,36,16,{038896C8-F336-44DF-8427-A8E5E7EB454F} +"MULTIPOLYGON (((-73.94476149765043 40.68173690927945, -73.94486891096288 40.68228118661046, -73.9438459760511 40.68239887454301, -73.94373842838172 40.681853868579765, -73.94476149765043 40.68173690927945)))",B262,5139,B262,B-03,B-03,B-03,B-03,Tompkins Ave. between Halsey St. and Macon St.,303,36,79,11216,B,1.315,False,Potomac Playground (IS 258),Yes,100003704,PARK,20100106000000.00000,19521120000000.00000,446 TOMPKINS AVENUE,DPR/DOE,False,Potomac Playground,Y,Potomac Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B262/,No,56,25,8,{51F5480A-48DE-4575-BDCC-B0973EB18174} +"MULTIPOLYGON (((-73.92374333032465 40.8110722430971, -73.9233597614344 40.81091006392145, -73.92307546012623 40.8112899477327, -73.92291681501341 40.81122202077439, -73.9227422431164 40.811462852842865, -73.92220370012022 40.811235142904906, -73.92250279425146 40.81080801845175, -73.92201658214192 40.810599424328394, -73.92205953548033 40.810540793133995, -73.92275909574558 40.81083658855339, -73.92303916501041 40.81045536182797, -73.9239222218265 40.810828734270245, -73.92374333032465 40.8110722430971)))",X217,4688,X217,X-01,X-01,X-01,X-01,E 141 St to E 140 St bet. Willis Av and Alexander Av,201,8,40,10454,X,1.882,False,Willis Playground,Yes,100005063,PARK,20100106000000.00000,19370602000000.00000,388 EAST 141 STREET,DPR/DOE/NYCHA(?),Part,Willis Playground,Y,Willis Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X217/,No,84,29,15,{793BC8CB-8319-42D3-B289-589355D301ED} +"MULTIPOLYGON (((-74.15046757766655 40.610421938406255, -74.14817400747096 40.61005622600683, -74.14816871668005 40.610056461559985, -74.14816345269901 40.6100559991733, -74.14815837153209 40.610054852153496, -74.14815362568636 40.610053055424416, -74.14814935707436 40.610050661934, -74.1481456934691 40.61004774265896, -74.14814274495915 40.610044386609154, -74.1481406003878 40.61004069362821, -74.14813932262665 40.61003677439938, -74.1481389497452 40.610032745041046, -74.14813949383121 40.61002872800875, -74.14814093860568 40.61002484219242, -74.14814559878472 40.61001732222497, -74.14815174570016 40.61001044961789, -74.14815922730035 40.6100043947657, -74.14816785839874 40.60999930559254, -74.14817742776526 40.60999530844365, -74.1481877004738 40.60999250087819, -74.14954301736809 40.609711253013046, -74.14957316285246 40.60971443495807, -74.14960227183182 40.6097212059268, -74.1496296101462 40.609731396676935, -74.14965449306618 40.609744750551734, -74.14988770014938 40.60989229809607, -74.15010087129339 40.61002925867302, -74.15032006853572 40.61019722947697, -74.1505145836818 40.61037929114505, -74.15051659310932 40.61038429902185, -74.15051748985694 40.610389491161804, -74.15051724878936 40.61039472531522, -74.15051587785284 40.610399857388124, -74.15051341335885 40.610404745950845, -74.15050992235739 40.61040925673761, -74.15050550264723 40.61041326714919, -74.1505002745026 40.61041666536322, -74.15049438187494 40.61041935933777, -74.15048798648085 40.61042127501816, -74.15048126308166 40.6104223590447, -74.15047439712808 40.61042258235779, -74.15046757766655 40.610421938406255)))",R126,6001,R126,R-01,R-01,R-01,R-01,"N. Gannon Ave., Willow Road E., Victory Blvd., Wyona Ave.",501,50,120,10314,R,1.43,False,Gaeta Park,Yes,100004383,PARK,20100106000000.00000,19910903000000.00000,,DPR,False,Gaeta Park,Y,Gaeta Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R126/,No,61,24,11,{FC587093-11BB-451E-959B-CB5B128F7594} +"MULTIPOLYGON (((-73.91987771815732 40.87205126799584, -73.91976019190714 40.87194151673675, -73.91970931389763 40.87197866882418, -73.91966140889284 40.87184379182387, -73.91964561707778 40.871797754156226, -73.9195789436876 40.87161240066525, -73.9195053732593 40.871428398454434, -73.91942498376814 40.87124605373119, -73.91934658255344 40.8710835481014, -73.92093487400602 40.869987148661956, -73.92145026457611 40.870811206552844, -73.92144000262778 40.872094113994244, -73.92097372983345 40.87210782613787, -73.92070332856832 40.8721352289133, -73.92054887200845 40.8721703912072, -73.92074027814051 40.872815534606374, -73.9203869088762 40.872890865750506, -73.9196164408213 40.87303405859171, -73.91907106209254 40.873161048789825, -73.91863254309594 40.87296050512947, -73.91987771815732 40.87205126799584)), ((-73.91832886800366 40.86957348516043, -73.91817905109029 40.86944834163369, -73.91787901450616 40.869588948765056, -73.91760925562791 40.86936361712068, -73.91736355401476 40.86915837666786, -73.91768688804633 40.868994087516256, -73.9190258892115 40.86844117918083, -73.91929644501464 40.86837042368505, -73.91945652280864 40.86862349462931, -73.9196128072279 40.86887056904146, -73.91974638668039 40.8690817465562, -73.92012148423218 40.86894555481739, -73.92013836416967 40.86897224078712, -73.9201310583942 40.868975056062325, -73.92012467702651 40.86897758832289, -73.92011833473553 40.86898017734098, -73.9201120327075 40.868982823117406, -73.92010577331591 40.868985524753306, -73.92009955537452 40.86898828224789, -73.92009338125582 40.86899109560279, -73.9200872509608 40.86899396391754, -73.92008116686198 40.86899688719383, -73.92007512658797 40.868999864529485, -73.9200691348825 40.86900289682826, -73.92006318937756 40.86900598048661, -73.92005729244221 40.869009118207664, -73.92005144645118 40.869012308192055, -73.92004564784568 40.86901555043736, -73.9200399001845 40.86901884494602, -73.9200342058421 40.869022189918745, -73.92002856244616 40.86902558535388, -73.92002297355423 40.869029032154344, -73.9200174379822 40.869032528518446, -73.9200119569174 40.869036073546425, -73.92000653154497 40.869039668139685, -73.92000116068081 40.86904331049638, -73.91999585025502 40.86904700152113, -73.91999059433863 40.86905073940888, -73.91998539886382 40.86905452326322, -73.91998026145708 40.869058353983, -73.91997518449193 40.86906223066943, -73.91997016796941 40.86906615242201, -73.9199652118907 40.86907011834023, -73.91996031862712 40.86907412932628, -73.91995548818078 40.86907818357917, -73.91995072055282 40.869082280198405, -73.91994601811464 40.869086420086134, -73.91994137849595 40.869090601439744, -73.91993680525641 40.86909482336124, -73.91993229839511 40.869099086751085, -73.91992785672785 40.86910338980754, -73.91992348381336 40.869107732533024, -73.91991917728033 40.86911211402546, -73.91991493950228 40.869116533385956, -73.91991077047912 40.86912099061456, -73.91990667258344 40.86912548571291, -73.91990264344598 40.86913001597795, -73.91989868425082 40.86913458321138, -73.91989479855988 40.86913918471435, -73.91989098281454 40.86914382048426, -73.91988723938616 40.86914849142337, -73.91988356946527 40.86915319393046, -73.9198799730508 40.86915792890613, -73.91987645014171 40.86916269725077, -73.91987300074238 40.869167495362476, -73.91986962722305 40.869172325043905, -73.91986632839861 40.86917718539374, -73.91986310545856 40.86918207371131, -73.91985995958908 40.86918698999749, -73.91985688960405 40.8691919342514, -73.91985389668965 40.86919690647394, -73.91985098084804 40.86920190486412, -73.91984814326557 40.86920692942279, -73.91984538394433 40.869211978348886, -73.91984270288435 40.869217051642536, -73.91984010127189 40.86922214930449, -73.91983757910913 40.86922726953377, -73.91983513521095 40.86923241142911, -73.91983277313605 40.869237574993, -73.91983049051193 40.86924276022377, -73.91982828971337 40.869247965322074, -73.91982616955507 40.86925318938665, -73.91982413122453 40.86925843151783, -73.91982217472057 40.86926369261605, -73.91982029767404 40.86926896997826, -73.91981850482775 40.86927426540874, -73.91981679262838 40.86927957440251, -73.91981516463139 40.86928489966363, -73.91981361965387 40.86929023848974, -73.9198121565096 40.86929559087998, -73.91981077638589 40.86930095593474, -73.91980948047008 40.86930633275439, -73.91980826994839 40.869311721339685, -73.91980714126336 40.869317120787734, -73.91980609678947 40.869322529299154, -73.91980513652688 40.86932794687399, -73.91980426047667 40.86933337261171, -73.91980346863876 40.86933880651237, -73.91980276220166 40.8693442467758, -73.91980213879401 40.86934969249986, -73.9198016007883 40.8693551436862, -73.91980114818668 40.86936059853383, -73.91980077980082 40.86936605884292, -73.91980049682125 40.869371521012376, -73.9198002968756 40.86937698504046, -73.91980018352253 40.869382450929734, -73.91980015439074 40.86938791777801, -73.91980020948341 40.86939338288382, -73.9198003511699 40.86939884895033, -73.91980057826822 40.869404312374726, -73.91980088840492 40.86940977405584, -73.91980128514086 40.869415232195166, -73.91980176491845 40.8694206858898, -73.91982613015686 40.86964202589421, -73.91982677974471 40.86964930229608, -73.91982711003115 40.86965478019966, -73.91982731813003 40.869660262520796, -73.91982740523072 40.86966574655885, -73.919827368963 40.86967123051121, -73.91982721288653 40.86967671347978, -73.91982693463103 40.869682193662065, -73.9198265341987 40.86968766925696, -73.91982601277567 40.86969314026537, -73.91982537036732 40.869698602184776, -73.91982460578639 40.86970405591494, -73.9198237214074 40.869709499656466, -73.91982271604844 40.86971492980657, -73.91982158970846 40.86972034726578, -73.9198203435769 40.869725749333384, -73.91981897765585 40.86973113420846, -73.9198174931316 40.869736501891865, -73.91981588882108 40.86974184968122, -73.9198141659127 40.86974717577637, -73.91981232440749 40.869752479276876, -73.91981036668119 40.8697577574829, -73.91980829154645 40.86976301129411, -73.91980610138005 40.86976823711016, -73.9198037938106 40.86977343402893, -73.91980137121156 40.86977860115159, -73.91979883595657 40.86978373757921, -73.91979618567852 40.86978883880781, -73.91979342274765 40.869793906639956, -73.91979054835348 40.869798938375, -73.91978756131194 40.869803932211106, -73.91978446518384 40.86980888634979, -73.91978125878187 40.869813801690704, -73.91977794448285 40.869818674633585, -73.91977452228777 40.86982350427782, -73.91977099101156 40.869828289722186, -73.91976735777273 40.86983303007109, -73.91976361783054 40.869837721719314, -73.91975977474269 40.86984236556976, -73.91975582851131 40.86984695982147, -73.91975178151002 40.869851503575546, -73.91974763374196 40.86985599413058, -73.9197433863945 40.869860430586876, -73.9197390418401 40.86986481294606, -73.91973460126826 40.86986913850749, -73.91973006586522 40.86987340727201, -73.91972543444692 40.869877617437716, -73.91972071176153 40.869881766306555, -73.91971589662171 40.8698858547781, -73.91971099140105 40.86988988195352, -73.91970599847426 40.86989384603347, -73.91970091784448 40.86989774431648, -73.91969575069695 40.86990157770384, -73.91969049940629 40.86990534439628, -73.91968516515874 40.86990904439453, -73.91967975033118 40.869912674098295, -73.91967425492136 40.86991623530857, -73.91966868130619 40.86991972442504, -73.9196630318559 40.86992314325032, -73.91965730657492 40.86992648818243, -73.91965150902195 40.869929759223815, -73.91964563801072 40.8699329563737, -73.91963969710218 40.8699360778335, -73.91963368866995 40.86993912270442, -73.91962761271503 40.86994209008601, -73.91962147279624 40.86994497998064, -73.91961526891573 40.869947790587396, -73.9196090034471 40.86995052100735, -73.91960267876283 40.86995317124223, -73.91959629486398 40.8699557403915, -73.91958985649673 40.869958227557944, -73.91958336247697 40.869960630939815, -73.91957681636124 40.869962952340494, -73.91957022052533 40.86996518906019, -73.91956357496927 40.869967341098935, -73.91955688206663 40.86996940755784, -73.9195501465624 40.8699713884402, -73.91954336608414 40.86997328374438, -73.9195365441928 40.869975091671826, -73.91952968444815 40.86997681132458, -73.91952278684911 40.8699784436031, -73.91951585495774 40.86997998580843, -73.91950888877084 40.869981440641986, -73.91950189184817 40.86998280720577, -73.91949486419422 40.869984081897826, -73.91948781055054 40.869985267422905, -73.91948073210467 40.86998636288139, -73.91947363004383 40.86998736737357, -73.91946650555437 40.86998828090024, -73.91945936338124 40.86998910346482, -73.91945220234047 40.86998983326542, -73.91944502598743 40.86999047300595, -73.91935790190415 40.869997762843894, -73.91935071234344 40.86999853223976, -73.91934353103274 40.86999934576491, -73.91933636034342 40.87000020432147, -73.91932920027331 40.870001109710415, -73.91932204845097 40.87000206102967, -73.91931490843729 40.87000305648064, -73.9193077790427 40.87000409876401, -73.91930066264305 40.87000518518004, -73.91929355686355 40.87000631752792, -73.91928646526407 40.87000749490976, -73.91927938547215 40.87000871732388, -73.91927232104642 40.870009984772715, -73.91926526961437 40.87001129725471, -73.91925823354852 40.87001265477145, -73.91925121284886 40.87001405732293, -73.919244205144 40.87001550400703, -73.91923721873644 40.87001699573011, -73.91923024532366 40.870018531585785, -73.91922329083683 40.87002011157821, -73.91921635290343 40.870021735705826, -73.91920943389488 40.87002340487066, -73.91920253381332 40.87002511727182, -73.91919565265762 40.87002687380974, -73.91918879042788 40.870028674484495, -73.91918194949749 40.87003051839723, -73.91917512749413 40.87003240554624, -73.91916832916154 40.87003433683542, -73.9191615497581 40.870036309559914, -73.91915479521164 40.8700383264254, -73.91914806077837 40.87004038652808, -73.91914135001691 40.87004248987039, -73.91913466292736 40.870044636452356, -73.91912799951295 40.87004682357255, -73.91912136095658 40.87004905393323, -73.91911474725936 40.87005132663392, -73.91910815842346 40.87005363987368, -73.91910159562971 40.87005599815571, -73.91909506007083 40.87005839607803, -73.91908854937215 40.87006083543987, -73.9190820670913 40.87006331714427, -73.91907561204427 40.870065839389376, -73.9190691854172 40.87006840217603, -73.91906278720907 40.8700710064048, -73.91905641741981 40.870073652075604, -73.91905007842415 40.870076337389214, -73.91904376784956 40.87007906234384, -73.91903748806742 40.870081827841815, -73.91903124026504 40.870084632983335, -73.91902502325509 40.87008747866815, -73.91901883703872 40.87009036399572, -73.91901268280316 40.87009328806644, -73.91900656173472 40.87009625088115, -73.91900047264713 40.87009925243896, -73.91899441909801 40.870102293642944, -73.91898839753081 40.87010537268959, -73.91898240913073 40.87010849048019, -73.91892435093038 40.870138530533744, -73.91883084009913 40.87019129377514, -73.91869949359194 40.87027429211767, -73.91802719229328 40.869712723671235, -73.91832886800366 40.86957348516043)), ((-73.92022596855341 40.86912799953687, -73.92023060653342 40.869126160342596, -73.9207055449622 40.86986379902352, -73.91921062092443 40.87088489163084, -73.91873341307523 40.870466532552626, -73.91882378863454 40.87040541605368, -73.91891438169642 40.870347710687916, -73.91899709318034 40.87029973760443, -73.91902533565411 40.870284885853096, -73.91910825000915 40.87024066426835, -73.91911416131806 40.87023753921331, -73.91912012001274 40.870234466419554, -73.91912612609204 40.87023144678751, -73.91913217836867 40.870228481216856, -73.91913827684259 40.87022556970762, -73.91914441913922 40.87022271405907, -73.9191506052617 40.87021991156969, -73.91915683402065 40.870217164940186, -73.91916310660123 40.87021447507184, -73.91916941944679 40.870211840161204, -73.91917577255528 40.87020926200918, -73.91918216473928 40.87020674151546, -73.91918859599888 40.87020427868006, -73.91919506396367 40.870201871700296, -73.919201571003 40.87019952327927, -73.91920811237188 40.87019723341376, -73.91921468688402 40.870195002102804, -73.91922129928442 40.870192829349776, -73.91922794364193 40.870190715150535, -73.91923461995428 40.87018866130599, -73.91924132703647 40.8701866669149, -73.91924806607354 40.87018473287849, -73.91925483350576 40.87018286009482, -73.91926162815015 40.87018104586158, -73.91926845237593 40.870179292881886, -73.91927530262441 40.870177601153195, -73.91928217889554 40.87017597067554, -73.9192890800032 40.870174401448104, -73.91929600475994 40.87017289437053, -73.91930295198071 40.8701714485415, -73.91930992047823 40.87017006486065, -73.9193169114376 40.87016874422927, -73.91932392248744 40.870167485745306, -73.91933095125421 40.870166290307466, -73.91933799892637 40.87016515611569, -73.91934506312705 40.87016408677019, -73.91935214385957 40.87016307956957, -73.91935923874928 40.87016213631316, -73.91936634898353 40.87016125610119, -73.91937347218978 40.87016043893208, -73.91938060718084 40.870159685705495, -73.91938775395666 40.8701589964214, -73.91947408000723 40.87015162225861, -73.91948122678123 40.87015093296871, -73.91948836413928 40.8701501824386, -73.91949548970773 40.870149371567024, -73.91950260348773 40.87014849945356, -73.91950970310455 40.87014756789749, -73.91951678855924 40.87014657599837, -73.91952385985294 40.870145522855715, -73.91953091460984 40.8701444111693, -73.91953795283206 40.8701432391382, -73.91954497333339 40.870142006761526, -73.91955197492537 40.87014071583946, -73.91955895642391 40.87013936457026, -73.91956591782794 40.87013795385429, -73.91957285913523 40.87013648549267, -73.91957977797655 40.870134956782195, -73.91958667434858 40.870133370424384, -73.91959354469374 40.87013172551626, -73.91960039257178 40.870130021159746, -73.91960721442072 40.87012826005397, -73.91961400905532 40.870126441297465, -73.91962077647676 40.8701245639899, -73.91962751786899 40.870122629932965, -73.91963422730193 40.87012063822213, -73.91964090833318 40.87011858976029, -73.91964755859026 40.87011648454588, -73.91965417807207 40.87011432347932, -73.91966076440715 40.870112105658514, -73.91966731759334 40.87010983288443, -73.9196738376328 40.870107503356095, -73.91968032333601 40.87010511977418, -73.91968677233271 40.870102680336004, -73.91969318580685 40.87010018684345, -73.91969956138595 40.87009763929483, -73.91970589907116 40.87009503678968, -73.91971219767399 40.87009238112812, -73.91971845719445 40.87008967231022, -73.91972467763253 40.870086910335914, -73.91973085542952 40.87008409520277, -73.91973699176943 40.87008122871259, -73.9197430854671 40.8700783099641, -73.91974913533629 40.87007533895646, -73.91975514137484 40.870072317490624, -73.91976110239757 40.870069244665295, -73.91976701721714 40.87006612138016, -73.91977288701865 40.87006294853654, -73.91977870824454 40.8700597252315, -73.91978448326402 40.87005645416808, -73.91979020733419 40.87005313354215, -73.91979588401281 40.8700497642565, -73.91980151092733 40.87004634630965, -73.9198070857031 40.870042881500844, -73.91981260952635 40.87003936983096, -73.91981808121193 40.87003581039868, -73.91982350075652 40.870032205905424, -73.91982886697505 40.87002855544997, -73.919834177495 40.87002485903063, -73.91983943350158 40.87002111754871, -73.91984463499139 40.870017333705725, -73.91984977959642 40.87001350389806, -73.91985486731338 40.87000963082717, -73.9198598981422 40.8700057144931, -73.91986486970939 40.87000175579465, -73.91986978438635 40.86999775563402, -73.91987463980057 40.86999371400954, -73.91987943476578 40.86998963092038, -73.91988416928099 40.869985507267046, -73.91988884215769 40.869981344849705, -73.9198934533981 40.86997714186741, -73.9198980030001 40.8699729001211, -73.91990248977632 40.869968620510456, -73.91990691254156 40.86996430213419, -73.91991127129263 40.869959947693765, -73.91991556603172 40.86995555538824, -73.91991979675663 40.86995112701855, -73.91992395990759 40.869946663482764, -73.91992805904333 40.86994216478332, -73.91993208941884 40.869937630916965, -73.91993605459074 40.8699330636871, -73.91993995100025 40.869928463091355, -73.91994377983367 40.86992382913047, -73.91994753871639 40.869919163603825, -73.9199512312071 40.86991446651387, -73.91995485256187 40.869909736956885, -73.91995840396271 40.869904978535594, -73.91996188541182 40.86990018944906, -73.91996529572069 40.869895371497435, -73.91996863488944 40.86989052468067, -73.9199719029169 40.86988564989938, -73.91997509861584 40.86988074805311, -73.91997822198731 40.86987581824149, -73.91998127184182 40.8698708631651, -73.91998424936676 40.86986588192422, -73.91998715218861 40.869860875417864, -73.91998998149239 40.86985584454719, -73.91999273727609 40.8698507911133, -73.91999541716827 40.86984571421404, -73.91999802235411 40.869840614750615, -73.9200005528347 40.86983549182267, -73.92000300741836 40.869830349931796, -73.92000538492117 40.869825187276135, -73.92000768771437 40.8698200047579, -73.9200099122394 40.86981480237462, -73.92001206086755 40.869809581028406, -73.92001413241053 40.869804342519394, -73.92001612686936 40.86979908594718, -73.92001804424196 40.869793813112686, -73.92001988215478 40.86978852491475, -73.9200216429803 40.86978322135507, -73.92002332553116 40.869777903333265, -73.92002492862123 40.86977257084853, -73.92002645462186 40.86976722480303, -73.92002790115954 40.869761866095594, -73.9200292682332 40.86975649562667, -73.92003055584178 40.86975111429684, -73.9200317651715 40.86974572210683, -73.9200328926626 40.869740319954715, -73.920033943059 40.86973490874429, -73.92003491161574 40.86972948847227, -73.92003580188937 40.86972406094205, -73.92003661032234 40.86971862525071, -73.92003733928381 40.86971318410132, -73.920037988775 40.869707736593455, -73.92003855760848 40.869702283626786, -73.92003904578111 40.86969682790271, -73.92003945211097 40.86969136581852, -73.92003978015136 40.86968590187905, -73.92004002634472 40.86968043518144, -73.9200401918751 40.86967496752743, -73.92004027792986 40.869669498017366, -73.92004028213543 40.869664027550094, -73.92004020686217 40.869658557928226, -73.92004004855143 40.86965308914929, -73.92003981194483 40.869647623918084, -73.92003949467437 40.86964215863094, -73.92003909554829 40.869636697789524, -73.9200205193912 40.86941355906404, -73.92002000756641 40.86940810624859, -73.92001962623357 40.8694026481207, -73.92001937895132 40.86939718468273, -73.92001926215772 40.869391718633814, -73.9200192805933 40.86938625357902, -73.92001943070147 40.86938078771504, -73.9200197136631 40.86937532554512, -73.92002012829076 40.86936986796885, -73.92002067576746 40.86936441768858, -73.92002135609202 40.86935897560478, -73.92002216807502 40.8693535444181, -73.920023110529 40.86934812502815, -73.92002418582432 40.86934271923762, -73.92002539158416 40.86933733064681, -73.92002672780839 40.86933195925566, -73.92002819449381 40.86932660776565, -73.92002979045301 40.86932127707647, -73.92003151568284 40.86931596988957, -73.92003337018099 40.86931068800591, -73.92003535038769 40.86930543232351, -73.92003746104352 40.869300206447576, -73.92003969621835 40.86929500947356, -73.9200420570941 40.86928984500421, -73.92004454248233 40.86928471483961, -73.92004715237974 40.869279621681315, -73.92004988678848 40.86927456372827, -73.92005274095933 40.8692695445792, -73.92005571844658 40.86926456783843, -73.9200588156926 40.869259632603026, -73.92006203150687 40.86925474247417, -73.92006536707551 40.86924989745259, -73.92006881883663 40.86924510023732, -73.92007238560397 40.869240350827525, -73.92007606855832 40.86923565372643, -73.92007986295586 40.869231008030305, -73.92008377116466 40.86922641734265, -73.92008778962715 40.8692218807606, -73.92009191715275 40.8692174018852, -73.9200961525552 40.86921298071566, -73.92010049464504 40.86920861995259, -73.92010494223388 40.86920432139613, -73.92010949413545 40.869200085045485, -73.92011414678785 40.86919591359959, -73.92011889900483 40.869191807057646, -73.92012375315447 40.86918776902321, -73.92012870212166 40.869183797690404, -73.92013374708824 40.86917989666195, -73.92013888686472 40.869176068638495, -73.92014411670952 40.869172310915296, -73.92014943780231 40.86916862889607, -73.9201548477728 40.86916502077819, -73.92016034424427 40.869161490161986, -73.92016592484744 40.86915803434429, -73.92017158957485 40.86915465962851, -73.9201773336837 40.86915136421042, -73.92018315835912 40.86914814899128, -73.92018906003814 40.86914501757059, -73.92019503516649 40.86914196634391, -73.92020108492274 40.86913900161546, -73.92020720337904 40.8691361206797, -73.92021339290463 40.86913332623968, -73.9202196487536 40.869130619192596, -73.92022596855341 40.86912799953687)), ((-73.91782852414859 40.86979585688629, -73.9178549377152 40.86978370378343, -73.91853551774818 40.870383478707836, -73.91819281662863 40.87062043131947, -73.91794678831579 40.87041228154799, -73.9174385753133 40.86998231023092, -73.91748215337014 40.86995914750906, -73.91753708884899 40.8699299389005, -73.91759537719365 40.8699031189557, -73.91765366785258 40.86987630798787, -73.91771194424084 40.869849487975515, -73.9177702348169 40.869822667943666, -73.91782852414859 40.86979585688629)), ((-73.9193101327857 40.87157486345011, -73.91941448415642 40.871498582137804, -73.91950568354187 40.87174437112062, -73.9193101327857 40.87157486345011)))",M043,5393,M043,M-12,M-12,M-12,M-12,"Broadway, Park Terrace, Seaman Ave. and Indian Rd. bet. Isham St., W 214 St., and W 218 St.",112,10,34,10034,M,20.132,False,Isham Park,No,100004338,PARK,20100106000000.00000,19110615000000.00000,570 WEST 214 STREET,DPR,True,Isham Park,Y,Isham Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M043/,No,72,31,13,{B9BEEEAA-981D-49C7-86A8-7FFE3E61C8BC} +"MULTIPOLYGON (((-73.91716451896379 40.6407281703084, -73.91743052663675 40.640552258850924, -73.91796266590961 40.64102795246902, -73.91735615741547 40.64133058779114, -73.91688732326085 40.64091147983001, -73.91716451896379 40.6407281703084)))",B352,5196,B352,B-18,B-18,B-18,B-18,Foster Ave. between E. 81 St. and E. 82 St.,318,46,69,11236,B,1.003,False,Curtis Playground,Yes,100004064,PARK,20100106000000.00000,19670814000000.00000,8102 FOSTER AVENUE,DPR,True,Curtis Playground,Y,Curtis Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B352/,No,58,19,8,{B451EA54-E79C-4386-961C-BA61E781A5AE} +"MULTIPOLYGON (((-73.89857993272076 40.8450404835373, -73.89861644513006 40.84497556397054, -73.89900954797717 40.845104747748884, -73.89890648277336 40.8452875539057, -73.8985424297476 40.84516705357613, -73.89860823260581 40.84505005274191, -73.89857993272076 40.8450404835373)), ((-73.89874056389522 40.844932531271496, -73.89888750043292 40.844671269533706, -73.89894714404399 40.84469110113122, -73.8990011651332 40.844709063754216, -73.89905718685982 40.84472769086551, -73.89891056475805 40.844988397487775, -73.8988544394095 40.844969953915985, -73.89880031827286 40.844952167634105, -73.89874056389522 40.844932531271496)))",X281,4745,X281,X-06,X-06,X-06,X-06,W 175 St bet. Washington Av and Bathgate Av,206,15,48,10457,X,0.316,False,Stop & Go Playground,Yes,100004844,PLGD,20100106000000.00000,19970404000000.00000,483 - 487 EAST 175 STREET,DPR,False,Stop & Go Playground,Y,Stop & Go Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X281/,No,86,33,15,{D0DEB2D8-C8D9-4149-A7FE-A3569F569636} +"MULTIPOLYGON (((-73.75543638382298 40.73637164883878, -73.75591795024305 40.73619454940668, -73.75609652832648 40.73657734515111, -73.75617472641876 40.73674496439468, -73.75547853114318 40.736866388229146, -73.75526748368638 40.73690319676743, -73.75503884887816 40.73694307157225, -73.75481021379959 40.73698294502241, -73.75459916441719 40.73701975323328, -73.75437052880912 40.73705962671061, -73.75414189292735 40.7370994997338, -73.75394823219723 40.73713327313131, -73.75376357457272 40.73716547605179, -73.75355253943764 40.73720227877455, -73.75335909016341 40.737236013813124, -73.75317443197275 40.73726821488801, -73.7529633961836 40.7373050174311, -73.7526900155173 40.737352689965874, -73.75248444399917 40.737388538018365, -73.75227356382663 40.737425310816505, -73.75206252942345 40.73746210811101, -73.75185149477377 40.73749890862065, -73.75164046108162 40.73753570694497, -73.75143294322454 40.737571892019254, -73.75121487218689 40.73760991617955, -73.75100383660764 40.73764671333409, -73.75079280079528 40.73768351010177, -73.75058188987794 40.73772072008811, -73.75034592156047 40.73776142878805, -73.75011725480003 40.73780129826306, -73.74990618246827 40.737838099631595, -73.74967760888751 40.73787823588858, -73.74944885827958 40.73791783550293, -73.74923781956585 40.73795462941706, -73.74900216071342 40.7379957160555, -73.74859955696962 40.738065907122866, -73.7483419176514 40.73781815227915, -73.74842925253677 40.73780303170083, -73.74857645451193 40.73777754631525, -73.7487316706395 40.737750672529614, -73.7488735011162 40.737726116078974, -73.74905153244157 40.73769529154081, -73.74921691022345 40.737666657132586, -73.7493664524883 40.737640765201256, -73.74951599464032 40.73761487217513, -73.74967433277314 40.73758745639968, -73.74981507859226 40.73756308644055, -73.7499646203956 40.73753719283162, -73.7501141644471 40.737511299933985, -73.75026370601796 40.7374854059365, -73.75047482228211 40.73744885074891, -73.75065075410565 40.73741838660004, -73.75086187112902 40.73738183070518, -73.75103780259857 40.73735136596471, -73.75124539960609 40.73731541770722, -73.75137910745957 40.73729226433607, -73.75151985202822 40.73726789319293, -73.7516605964973 40.73724352097723, -73.75180134086675 40.73721914768893, -73.75194208394268 40.737194776026996, -73.75208282810284 40.737170403294996, -73.75222357097613 40.73714603038839, -73.75236336603032 40.73712182186633, -73.75257042259518 40.73708596461374, -73.75276393612063 40.737052453463555, -73.75295744945804 40.737018940186964, -73.75313337071752 40.736988474026845, -73.75330929062888 40.7369580084958, -73.75348521156654 40.736927541797904, -73.75366113115949 40.736897074828676, -73.75383705177545 40.73686660759307, -73.75396383245915 40.73684465120556, -73.75405781200126 40.7368199726265, -73.75426451674468 40.73676569162261, -73.75446238563966 40.7367137309373, -73.75461555888481 40.73667350650025, -73.7546585241591 40.736657706721395, -73.7548487350304 40.736587757555675, -73.75504084700039 40.73651710882054, -73.7553074084243 40.73641908124682, -73.75543638382298 40.73637164883878)), ((-73.75648489876042 40.7366297132001, -73.75622307803413 40.73607810404862, -73.7562950095879 40.736058333384534, -73.75629874368823 40.73605730749981, -73.7563343671113 40.736047962632654, -73.75636189379156 40.736041291352436, -73.7563886972056 40.73603524619192, -73.7564174562066 40.736029241182074, -73.75644546824891 40.73602386674416, -73.75647361956881 40.73601892934189, -73.75650189713463 40.736014431649174, -73.75653029147608 40.73601037364589, -73.75655878719044 40.7360067589014, -73.75660344181564 40.73600206257041, -73.75664477598396 40.73599858660213, -73.75667356587739 40.73599675456264, -73.75670239911155 40.73599537286317, -73.75673126267118 40.7359944396751, -73.75676014471844 40.735993954973445, -73.75678903577644 40.735993920539165, -73.75681792045903 40.73599433543931, -73.75684678811211 40.735995199651356, -73.75687562689781 40.735996513150305, -73.75690442261366 40.73599827500568, -73.7569331657961 40.736000483396545, -73.75696184460058 40.736003140098916, -73.75699044483461 40.73600624148095, -73.75701895702457 40.736009788423075, -73.75715533435076 40.7360321701338, -73.75731416567393 40.73605823616878, -73.75755898711827 40.73610280034571, -73.75760779643728 40.736111952328315, -73.7576640952983 40.73612066529285, -73.75773728312929 40.7361290616606, -73.75776853399756 40.736132197241595, -73.75780104202885 40.736134709602844, -73.75782512628419 40.736136082203586, -73.75785141852064 40.73613710824269, -73.75788685999456 40.73613771406214, -73.75791778795174 40.73613751613184, -73.7579500255496 40.73613658702935, -73.75796810739257 40.73613574163194, -73.75799085802174 40.73613434592535, -73.75803236750167 40.73613084461318, -73.75806765271498 40.736126882655974, -73.7580951140737 40.73612316450124, -73.75812655768559 40.73611821289915, -73.75814812854482 40.73611438240287, -73.75817641466593 40.736108811808386, -73.75818815817549 40.7361063141361, -73.75835231283588 40.73607783424778, -73.75854228703113 40.736044875091636, -73.7586810718864 40.736020795467134, -73.75882179464804 40.735996381141895, -73.75896057811093 40.73597230297891, -73.759101300671 40.735947887411456, -73.75924202312794 40.73592347167197, -73.75938274666557 40.73589905576286, -73.75952627760086 40.73587415296474, -73.75966786924363 40.735849585433364, -73.75988068829407 40.7358126599676, -73.76002141017982 40.73578824327526, -73.76016315308716 40.73576364843525, -73.76030387594648 40.73573923230053, -73.7604445987059 40.73571481509327, -73.76058532017836 40.735690397711465, -73.76074192219757 40.73566322426985, -73.76079714143272 40.735653133488846, -73.76085413543703 40.73564233046062, -73.76091006463761 40.73563133698667, -73.76097209075881 40.735618667682346, -73.76102155043513 40.73560825776464, -73.76107709399201 40.73559617649238, -73.76111097948046 40.73558856633073, -73.76113249912964 40.73558373380131, -73.76118775873763 40.7355709314778, -73.76124069520012 40.73555824227824, -73.7612510166046 40.7355557683608, -73.76129784727114 40.73554425064835, -73.76135266079866 40.73553037391187, -73.7613880045153 40.73552117008444, -73.76140731575498 40.73551614201939, -73.7614618097748 40.735501554065735, -73.76151613692542 40.7354866136409, -73.76152570264863 40.73548391030454, -73.76157127909967 40.73547085541275, -73.76162429181882 40.73545566997796, -73.76167807096786 40.735439681948456, -73.76173251944688 40.73542289742583, -73.76177723659033 40.735409110360116, -73.76183928848425 40.73538945717835, -73.76199456738198 40.73534027981077, -73.76204794102127 40.73532342357835, -73.76221473554116 40.73527074780908, -73.76241488909179 40.735207536207355, -73.76255710715274 40.735162622070675, -73.76259987266066 40.73545494771837, -73.76260290449395 40.73547654822519, -73.76260346893449 40.73549855067649, -73.76260272996404 40.735520550440775, -73.76260069129322 40.73554250250005, -73.76259735544248 40.73556436363508, -73.76259272849663 40.73558608703154, -73.76258682244047 40.73560763129057, -73.76257964572655 40.73562894960286, -73.7625712162558 40.735650001482, -73.76256154838735 40.73567074373283, -73.76255066239631 40.73569113407286, -73.76253858210639 40.73571113112732, -73.76252533134125 40.73573069352142, -73.76251093509896 40.73574978258443, -73.76249542430006 40.73576835875716, -73.76247882984921 40.735786386983, -73.76246118503497 40.73580382770761, -73.76244252667827 40.73582064678708, -73.76241426774939 40.73584329577695, -73.76229183816753 40.735550541812245, -73.76198474381243 40.73564584345922, -73.76193157500973 40.73566294592518, -73.76187821564211 40.73567969947474, -73.7618246668973 40.73569610320964, -73.76177093942745 40.73571215805211, -73.76171702969135 40.73572786129306, -73.76166294362186 40.735743209342466, -73.7616086894906 40.7357582067198, -73.76155426494981 40.735772848016786, -73.76149967947441 40.73578713235244, -73.76144493306514 40.73580105972641, -73.76139003282583 40.735814630153264, -73.761334979954 40.73582784003319, -73.76127978036328 40.73584069117923, -73.76122443880281 40.73585317999903, -73.76116895763782 40.73586530739776, -73.76111334042717 40.73587707158159, -73.76105759427486 40.73588847256507, -73.76100172037191 40.73589950854943, -73.7609457234579 40.73591017864385, -73.76088960944973 40.73592048376096, -73.76082634423868 40.73593163668838, -73.75971830337723 40.736117630561274, -73.75848568090956 40.73633517753957, -73.75749614270241 40.736509799927425, -73.7566781417344 40.736654143698054, -73.7565105334867 40.73668371972784, -73.75648489876042 40.7366297132001)), ((-73.74546105720827 40.73834604290558, -73.74808524956802 40.73787953187804, -73.74821073456425 40.738007851795565, -73.74832197121545 40.7381216007817, -73.74828666638712 40.73812781189089, -73.74812461310005 40.73815632166173, -73.7479628890205 40.73818477249148, -73.74780116361897 40.73821322309142, -73.74763943807588 40.73824167436459, -73.7474917758647 40.738267651024856, -73.74734762851882 40.73829300935184, -73.74718941875916 40.738320840950855, -73.74703120886727 40.73834867233242, -73.74687299765938 40.73837650349396, -73.74672885102639 40.73840186104862, -73.7465706407498 40.73842969179716, -73.74642649388666 40.738455048973215, -73.74626828335747 40.73848287930615, -73.74611007269607 40.738510709421654, -73.74595186071862 40.73853853931712, -73.74579364978949 40.7385663698982, -73.74563543873165 40.73859419936133, -73.7454772275416 40.73862202860705, -73.74531901503205 40.73864985853313, -73.74517486721976 40.73867521324128, -73.7450307181104 40.73870056866677, -73.74488657007866 40.73872592301386, -73.74472835825965 40.73875375213076, -73.7445842088139 40.73877910609659, -73.74444006043895 40.73880446078505, -73.74429591077033 40.73882981529032, -73.74415176217936 40.738855168717215, -73.74399354738563 40.73888299501786, -73.74384939974156 40.73890834986976, -73.74364727914936 40.73894389987163, -73.7435643425294 40.73884237079199, -73.74346645283697 40.738722533367316, -73.74350602769562 40.73870922731053, -73.74354177114691 40.738698142374005, -73.74357831601026 40.73868769407123, -73.74361659835972 40.738677678268346, -73.74365592344 40.738668350963295, -73.74369476026271 40.73866007075334, -73.74373193380728 40.73865298991216, -73.74377250527623 40.73864618677242, -73.74546105720827 40.73834604290558)))",Q130,6281,Q130,Q-11,Q-11,Q-11,Q-11,"Winchester Blvd., 210 St. bet. 77 Ave. and Kingsbury Ave.",411,23,111,11364,Q,13.894,False,Motor Parkway,No,100000393,PARK,,,,DPR,True,Motor Parkway,Y,Motor Parkway,EXWY,Nature Area,http://www.nycgovparks.org/parks/Q130/,No,24,11,6,{DFD1D644-A20F-4C1C-9E65-57616CD667A4} +"MULTIPOLYGON (((-73.8232753447066 40.66641455750793, -73.82332592592616 40.66624964685904, -73.82375497691129 40.66625150717924, -73.82353330466177 40.666484655367654, -73.8232753447066 40.66641455750793)), ((-73.82240945123536 40.66619211093753, -73.82241412005459 40.666162410966926, -73.8231253935109 40.66622117411947, -73.82308370469569 40.66636440488706, -73.82240945123536 40.66619211093753)))",Q096A,5830,Q096A,Q-10,Q-10,Q-10,Q-10,N Conduit Av bet. 118 St and Lefferts Blvd,410,32,106,11420,Q,0.315,False,Locust Grove,Yes,100000155,PARK,20090423000000.00000,19150313000000.00000,,DPR,False,Locust Grove Civic Triangle,Y,Locust Grove Civic Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q096A/,No,31,15,5,{D4EC7F77-19D4-4C0A-B76C-890EC2A9471D} +"MULTIPOLYGON (((-74.00230389555124 40.684822183748715, -74.00232868715416 40.68477082964857, -74.00266635827938 40.68486480174173, -74.00264156808446 40.6849161550135, -74.00262213972726 40.68495640212092, -74.00235863386257 40.684882919594294, -74.00228454745225 40.68486226060085, -74.00230389555124 40.684822183748715)))",B408,5222,B408,B-06,B-06,B-06,B-06,Sackett St. and Columbia St.,306,39,76,11231,B,0.073,False,Human Compass Garden,No,100003841,PARK,20100106000000.00000,19980513000000.00000,207 COLUMBIA STREET,DPR,False,Human Compass Garden,N,Human Compass Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B408/,No,51,26,7,{1A19447A-7986-47DA-9DA4-5C8D1C57CCCC} +"MULTIPOLYGON (((-73.95902859147257 40.687879027855395, -73.95897221134827 40.68758971778028, -73.95904307667952 40.68758155915639, -73.95911438091542 40.68757335111658, -73.9591856863173 40.6875651421325, -73.95923649632617 40.687825862426905, -73.95923669445038 40.687826876475334, -73.95931961325887 40.68781733155747, -73.95933297720484 40.68788589958284, -73.95932784726511 40.687886626285305, -73.95925009956377 40.687897632772845, -73.95917952618511 40.68790762327213, -73.95917437612987 40.68790835176165, -73.95910857774102 40.68791766672514, -73.95910396599606 40.68791832066018, -73.95903806702464 40.6879276481548, -73.95902859147257 40.687879027855395)))",B448,6224,B448,B-03,B-03,B-03,B-03,Greene Ave. between Classon Ave. and Franklin Ave.,303,35,79,11238,B,0.177,False,Cedar Tree Garden,No,100004446,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Cedar Tree Garden,N,Cedar Tree Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B448/,No,57,25,8,{141F2F82-FC62-4BAD-85C5-5BCF39D02A00} +"MULTIPOLYGON (((-73.91160011332084 40.837748129576816, -73.9118526509576 40.837320379260646, -73.91219560980011 40.83743560784001, -73.91251293096661 40.83689811171059, -73.91266744725058 40.83663637951583, -73.91315173109005 40.83581604644521, -73.91348303117289 40.83592735520546, -73.91226065292582 40.83800552147849, -73.91160011332084 40.837748129576816)), ((-73.91289244516598 40.837307413296756, -73.913043753316 40.83705142604751, -73.91321840629323 40.83675594067197, -73.91342090103774 40.83641334855683, -73.91360590149972 40.83610035031576, -73.91383306714886 40.83571601189353, -73.91424071833409 40.83587388692667, -73.91397193954218 40.83622533877522, -73.91374382575316 40.83652361559883, -73.91350191694896 40.836839445751245, -73.91327822364116 40.837131489019406, -73.91321721323376 40.83711065612342, -73.91291879508832 40.837615526432636, -73.91274533530554 40.83755629591389, -73.91289244516598 40.837307413296756)))",X271,4771,X271,X-04,X-04,X-04,X-04,E 170 St bet. Sheridan Av and Morris Av,204,16,44,10456,X,3.85,False,Grant Park,Yes,100005005,PARK,20100106000000.00000,19950914000000.00000,250 - 265 EAST 170 STREET,DPR,False,Grant Park,Y,Grant Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X271/,No,77,33,15,{96D0DD61-1231-42DB-9271-4E175E171B1C} +"MULTIPOLYGON (((-73.90505397494762 40.82623449265209, -73.9050762625875 40.82618064243778, -73.90551300828743 40.82628467790622, -73.90547008589267 40.826388385251974, -73.90503333957781 40.82628435052328, -73.90505397494762 40.82623449265209)))",X318,5633,X318,X-03,X-03,X-03,X-03,Cauldwell Av bet. E 166 St and E 165 St,203,16,42,10456,X,0.12,False,Franklin Memorial Garden,No,100004951,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Franklin Memorial Garden,Y,Franklin Memorial Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X318/,No,79,32,15,{946F22A2-4408-4724-8526-86F08FA40179} +"MULTIPOLYGON (((-73.99564511522784 40.66628722038167, -73.99612627986326 40.66580482584547, -73.99628300788684 40.66590664063922, -73.99626204693969 40.66599697160664, -73.99624349011347 40.66608870745248, -73.99622540664633 40.66619491910199, -73.99621029355272 40.66630654924893, -73.9962000546086 40.66640732203436, -73.99619479975232 40.666477780018624, -73.99619414138678 40.66649228460493, -73.99607582636138 40.66646482120137, -73.99596001656577 40.666431740346425, -73.99584717205681 40.66639317353952, -73.99573774106042 40.66634927209255, -73.99563215642321 40.66630021253268, -73.99564511522784 40.66628722038167)), ((-73.99555049703315 40.66638207979903, -73.99557418767935 40.66635832870774, -73.99565178111642 40.666404250769254, -73.99573362647308 40.666445672157955, -73.99581927435847 40.66648236591849, -73.99590825645434 40.66651412940972, -73.99600008196761 40.66654078970787, -73.99609424827405 40.666562199104554, -73.99619023737117 40.666578241410285, -73.9961889221605 40.66662196320951, -73.99618840184516 40.666683357657064, -73.99618917974624 40.66675012462434, -73.9961912291456 40.6668138893136, -73.99619458651004 40.66687812321433, -73.99619952250048 40.66694572689659, -73.99620610816126 40.6670152784481, -73.99621301823105 40.66707859844041, -73.99608947501436 40.66694871742331, -73.99601118033675 40.6668664048932, -73.99555049703315 40.66638207979903)))",B210D,6084,B210D,B-07,B-07,B-07,B-07,"Hamilton Ave., bet. Prospect Exwy. and 18 St.",307,38,72,"11215, 11232",B,1.08,False,Backhoe Gulch,No,100003917,PARK,20100106000000.00000,19400627000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/B210D/,No,51,25,10,{AFB1560F-1E12-4FD8-B2BB-A33AAC692F32} +"MULTIPOLYGON (((-73.8597496702838 40.741611998767674, -73.86004164009086 40.74143389033384, -73.86021260301489 40.74159869105556, -73.85991786216921 40.741774130143924, -73.8597496702838 40.741611998767674)))",Q474A,5025,Q474A,Q-04,Q-04,Q-04,Q-04,102 St. bet. Radcliff Ave. and Strong Ave.,404,21,110,11368,Q,0.18,False,Corona Taxpayers Association Garden,No,100008334,PARK,20110712000000.00000,19971219000000.00000,52-01 101 STREET,DPR,False,Corona Taxpayers Association,N,Corona Taxpayers Association,,Garden,http://www.nycgovparks.org/parks/Q474A/,No,39,13,14,{CB67C35D-54AD-45EA-80BB-5801CA6DC001} +"MULTIPOLYGON (((-73.84923959202746 40.805759623428685, -73.84910874806327 40.80518440212962, -73.84911291185114 40.805184672326455, -73.84911853952795 40.80518428527331, -73.84912347392472 40.80518337682369, -73.8491296408724 40.805181396591216, -73.8491346890556 40.80517891151492, -73.8491391270838 40.80517583040959, -73.84914294914789 40.80517210193924, -73.84914533497819 40.80516885515769, -73.8491483299313 40.805162476334516, -73.84915080485348 40.80515495319611, -73.849153175293 40.805146469988124, -73.84920622173816 40.80513934439501, -73.8491547760873 40.804910743753396, -73.84916976039615 40.80490964764027, -73.849171026343 40.80491423194003, -73.84917251611462 40.80491940816101, -73.84917390658751 40.80492342891082, -73.84917664288888 40.8049281610152, -73.84918032476362 40.80493399386683, -73.8491863390933 40.804940257507205, -73.8491926052065 40.804945234662426, -73.84919965781052 40.80494986795469, -73.84920629761426 40.8049531049319, -73.84921432789392 40.80495513165473, -73.84922355938104 40.80495631888126, -73.8492324224532 40.80495639530901, -73.84923968387938 40.80495568890817, -73.84924645962 40.80495437133292, -73.8492534409339 40.80495228589972, -73.84926038536027 40.80494869658325, -73.84926773541902 40.804943389643135, -73.84927394512881 40.80493716720432, -73.84927757557121 40.804932222804105, -73.84928042100428 40.80492696850605, -73.84928270276615 40.80492047798525, -73.84928378851221 40.80491358157635, -73.84928376959816 40.80490885032573, -73.84928374930607 40.80490263414911, -73.84928345040646 40.80489437437421, -73.84929964431497 40.80489343921406, -73.84935115918127 40.805111045679915, -73.84941976688138 40.805159479546084, -73.84945133979348 40.80529474882898, -73.84948513242361 40.805317381090035, -73.84956559939569 40.80535281632867, -73.84960622578012 40.80537367718336, -73.84964820710658 40.80540644709856, -73.84965780600804 40.80541289638918, -73.84967072544512 40.805417813756556, -73.84969643533664 40.805436487623986, -73.84981113306293 40.80550594677079, -73.84987541408337 40.80553522289743, -73.84993027298746 40.805566897360634, -73.84985575334994 40.8058021171023, -73.84982193746914 40.80590885700485, -73.84977494047338 40.80605720711617, -73.84958746719765 40.805952547032724, -73.84930197313705 40.805794218441775, -73.84923959202746 40.805759623428685)))",X301,6338,X301,X-09,X-09,X-09,X-09,Soundview Ave. at Pugsley Creek Park,209,18,43,10473,X,1.13,False,Park,No,100003766,PARK,20100106000000.00000,19990930000000.00000,,DPR,False,Park,N,Park,Building,Managed Sites,http://www.nycgovparks.org/parks/X301/,Yes,85,34,15,{B0C7AF36-8898-4210-A47C-9817CCBB2474} +"MULTIPOLYGON (((-73.79439428703527 40.69251673437339, -73.79471713745751 40.692379901967435, -73.79476091624466 40.6924398868391, -73.79443805495747 40.69257672475084, -73.79439428703527 40.69251673437339)))",Q489,5887,Q489,Q-12,Q-12,Q-12,Q-12,156 St. bet. 109 Ave. and 110 Ave.,412,28,103,11433,Q,0.057,False,George W. Carver Botanical Garden,No,100000209,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,George Washington Carver Botanical Garden,N,George Washington Carver Botanical Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q489/,No,32,10,5,{DC36D197-8399-4416-8C8C-6B092A9B1723} +"MULTIPOLYGON (((-73.87829126928358 40.67745132554499, -73.87864616910461 40.67739929761462, -73.87865888577429 40.67745054225302, -73.87867160246508 40.67750178598928, -73.87868391759402 40.67755141197454, -73.87869583115913 40.67759942020905, -73.87834080726418 40.67765146707208, -73.878328923524 40.67760345432985, -73.87832465073413 40.67758619233282, -73.87831663941108 40.677553823836824, -73.87830769346027 40.67751768029121, -73.87830395492901 40.67750257469241, -73.87829126928358 40.67745132554499)))",B491,5279,B491,B-05,B-05,B-05,B-05,79-85 Montauk St,305,37,75,11208,B,0.172,False,Shield Of Faith,No,100003705,PARK,20100106000000.00000,20021120000000.00000,79-85 Montauk St,DPR,False,Shield Of Faith,N,Shield Of Faith,Greenthumb,Garden,http://www.nycgovparks.org/parks/B491/,No,54,18,8,{F2E0832D-F834-4C23-875B-95DCC2E40BD7} +"MULTIPOLYGON (((-73.89368590039986 40.8534955982107, -73.89397885552846 40.85314602313649, -73.89406559176516 40.853042522839495, -73.89361912257293 40.85280270362838, -73.89409467722989 40.852293054812655, -73.89436469797639 40.852003670835664, -73.89495687944499 40.8523206822679, -73.89415071616243 40.853745270035745, -73.89368590039986 40.8534955982107)))",X252,6592,X252,X-06,X-06,X-06,X-06,Washington to Bathgate Av bet. W 181 St and E 183 St,206,15,48,10457,X,2.5,False,Bathgate Playground,Yes,100005161,PARK,20100106000000.00000,19800129000000.00000,2130 WASHINGTON AVENUE,DPR,False,Bathgate Playground,Y,Bathgate Playground,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X252/,No,86,33,15,{A3C524A6-B264-4430-B59F-5B0ACF8D9A21} +"MULTIPOLYGON (((-73.73618265220543 40.71788113273799, -73.73619343116994 40.717881612197225, -73.73620403066684 40.71788317906518, -73.73621426262594 40.71788580499513, -73.7362239437861 40.717889442740464, -73.73623610431368 40.71789700610308, -73.73624648277885 40.717905977387844, -73.73625479964007 40.71791611461699, -73.73626083463867 40.717927148933285, -73.73626442443542 40.71793878369378, -73.73626547439616 40.717950707104016, -73.73626395618554 40.717962602118234, -73.7362599101202 40.717974150046686, -73.73625629361196 40.71797943408285, -73.73625184539779 40.71798433709714, -73.73624663324172 40.71798878270098, -73.73566112041658 40.718211557966185, -73.73565151978583 40.718215364007605, -73.73564547300982 40.71821776169995, -73.73562302101247 40.71821809466376, -73.73560079178112 40.718215677064386, -73.73557936146054 40.7182105705597, -73.73555928933615 40.718202909710776, -73.73554109774946 40.718192892930766, -73.73552525908617 40.7181807806538, -73.73552366112195 40.718179334359405, -73.73551124923254 40.718165926908654, -73.73550188446875 40.718151155874715, -73.7354958185292 40.71813541896325, -73.73549321543042 40.718119138892725, -73.73549414325795 40.71810275437018, -73.73549857895797 40.71808670569389, -73.73550640245956 40.718071424834356, -73.73551740382943 40.7180573219431, -73.7355312856754 40.718044776352926, -73.73554324440425 40.718036668579416, -73.73614292020956 40.71788934892705, -73.73615547865366 40.7178848886459, -73.73616885413416 40.717882122301674, -73.73618265220543 40.71788113273799)))",Q047,6141,Q047,Q-13,Q-13,Q-13,Q-13,Springfield Blvd. bet. Jamaica Ave. and Amboy La.,413,27,105,11429,Q,0.32,False,Queens Village Veterans Plaza,Yes,100000318,PARK,20090423000000.00000,19320113000000.00000,,DPR,True,Queens Village Veterans Plaza,Y,Queens Village Veterans Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q047/,No,33,14,5,{C555410A-20BD-4561-9909-1519CEFE45CD} +"MULTIPOLYGON (((-73.90439763867242 40.81723051593661, -73.90437400221998 40.81729675041707, -73.90419965078424 40.81726085504752, -73.90428809054079 40.81699987165108, -73.90493293460088 40.8170342746349, -73.90486697173343 40.81774558147576, -73.90446775490152 40.81766339081069, -73.90460686092248 40.81727359161065, -73.90439763867242 40.81723051593661)))",X216,5773,X216,X-01,X-01,X-01,X-01,E 156 St bet. Tinton Av and Union Av,201,17,40,10455,X,0.529,False,Abigail Playground,Yes,100005008,PARK,20100106000000.00000,19641008000000.00000,,DPR,False,Abigail Playground,Y,Abigail Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X216/,No,84,29,15,{0AC0817C-A8F9-4EEB-88FD-84B892908C69} +"MULTIPOLYGON (((-73.92910623570125 40.798704891877996, -73.92911631368545 40.79844245195142, -73.92912312645761 40.798287381088514, -73.9291241159524 40.798279543747526, -73.92912747549788 40.7982727038164, -73.92913312211813 40.79826688735849, -73.92913924975026 40.79826337467421, -73.92914573927334 40.798261639798476, -73.92915368119019 40.798261367326106, -73.9291609098834 40.798262091268015, -73.92916719477867 40.798264461643484, -73.92917369538998 40.79826901045997, -73.92917703310081 40.7982737779552, -73.92917939337543 40.798279510185466, -73.92919924191673 40.79847634099397, -73.92945154362579 40.798581815426395, -73.92942192552603 40.798280970068475, -73.92942191659463 40.798274864675, -73.92942347891871 40.79826988316676, -73.92942719764632 40.79826623661879, -73.92943191961359 40.79826410802688, -73.92943592117403 40.79826304878743, -73.92944264046622 40.79826364993187, -73.92944774959768 40.798265175804104, -73.92945089459768 40.79826731191334, -73.92945333893822 40.798269774475024, -73.92945551566382 40.79827429721624, -73.92946179918303 40.79830146103307, -73.92953876778559 40.79861675953699, -73.92955176437461 40.79866282083389, -73.92956647760829 40.7987047778, -73.92958459132898 40.79875495660194, -73.92961082412948 40.79882230928467, -73.92963862511199 40.79889600333567, -73.92966245244408 40.79895894298915, -73.9296832250289 40.79901283345422, -73.92969787979018 40.799050840774306, -73.92970711987063 40.79907476277793, -73.92972571692454 40.79912863569865, -73.92975026856362 40.79920830615465, -73.92976869356139 40.79927819344652, -73.92978133223872 40.79933355935626, -73.92979192198081 40.79938566780989, -73.92979952740679 40.79943267131378, -73.92980804857136 40.79949228867135, -73.92981304840247 40.79953688625318, -73.92981672081164 40.799592953589084, -73.92981753673575 40.799635044333414, -73.92981861916158 40.79967612668028, -73.9298072236468 40.80001613573685, -73.92979987372674 40.80025715083515, -73.92979955240992 40.80026855996707, -73.92979762401349 40.80035096619518, -73.92980388815246 40.80047323981781, -73.92981207082425 40.80056405836187, -73.92982717495785 40.80068989703524, -73.92984142610695 40.800773979030524, -73.92986464807548 40.80088705805722, -73.92988177406502 40.800955474006294, -73.92989267545745 40.80099328269758, -73.92990245165635 40.80102718703882, -73.92992742446978 40.80110500266009, -73.92992791883023 40.801108180822624, -73.92992626403849 40.801110918235025, -73.92992335887415 40.80111270305957, -73.92991940924713 40.80111380377014, -73.92991564781923 40.801113986085646, -73.92991186011255 40.801113240870826, -73.92990845022932 40.801111556664836, -73.92990669579326 40.801109889674336, -73.9299059484181 40.801107288577924, -73.92985121257047 40.8009206565167, -73.92982226361127 40.80082205042882, -73.92978954686654 40.800719644631506, -73.92977084691385 40.80066623813099, -73.92972449935425 40.80054349703487, -73.92967200690103 40.800413688651524, -73.92962540257527 40.80030886188908, -73.92958244917712 40.800217665494614, -73.92955727215848 40.80016778495587, -73.92949534620085 40.80004952232569, -73.92947573695332 40.80001255653428, -73.92943742396218 40.799938527340515, -73.92940704793266 40.79988033197382, -73.92936029086289 40.799792887342946, -73.92932721074801 40.799731411577994, -73.92930597477796 40.79968544336533, -73.9292747873982 40.79961262065011, -73.92924607718625 40.7995382334774, -73.92922056316036 40.79946698559962, -73.92920134811142 40.79940953273489, -73.92918013960231 40.799335703057274, -73.92915126552879 40.79921507960658, -73.92913477736187 40.79912635495434, -73.92912290019397 40.799041887093864, -73.92911222722309 40.79894607457698, -73.92910743775364 40.798871333765405, -73.92910561683684 40.79878863166027, -73.92910623570125 40.798704891877996)))",M108B,5533,M108B,M-11,M-11,M-11,M-11,"E. 122 St. To E. 125 St., FDR Dr. To Harlem River Dr.",111,8,25,10035,M,2.13,False,Park,No,100004785,PARK,20100106000000.00000,19341221000000.00000,,DPR/TBTA,False,Park,N,Park,Undeveloped,Parkway,http://www.nycgovparks.org/parks/M108B/,No,68,29,13,{333D915E-4392-4913-B94A-5B8E9A7AC5B9} +"MULTIPOLYGON (((-73.96348799692701 40.70855957451477, -73.96358924947764 40.70806352397462, -73.96352044361676 40.70807538713728, -73.96351433692956 40.708054768897895, -73.96367240606008 40.70802751539056, -73.96367887069266 40.70804934312112, -73.963709894192 40.70804617860375, -73.96390554510974 40.7080196975502, -73.963972813233 40.70800643698312, -73.96396080242494 40.707948999517555, -73.96408714447196 40.70792549243582, -73.96401900548004 40.70769544456341, -73.96428493312636 40.70764959229949, -73.96423569789428 40.707897852468285, -73.96409090308815 40.70862793736666, -73.96348799692701 40.70855957451477)))",B142,5082,B142,B-01,B-01,B-01,B-01,Bedford Ave. bet. S. 9 St. and Division Ave.,301,33,90,11211,B,0.996,False,Bedford Playground,Yes,100004188,PARK,20100106000000.00000,19560425000000.00000,449 BEDFORD AVENUE,DPR,Part,Bedford Playground,Y,Bedford Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B142/,No,50,26,7,{C47E814C-32B5-4A76-8773-4DF079A7502B} +"MULTIPOLYGON (((-73.93049123888036 40.80130019314546, -73.93002719185762 40.800359994605884, -73.93001283916045 40.800321639926494, -73.93000417313112 40.800282312556895, -73.93000129990035 40.800242497031576, -73.9300016058793 40.80022986411103, -73.93101622675444 40.80064830838174, -73.93116996733578 40.80044636604703, -73.93178392519636 40.8007114345967, -73.93115031996986 40.80158292490564, -73.93049123888036 40.80130019314546)))",M108A,4631,M108A,M-11,M-11,M-11,M-11,"E.125 St., FDR Dr., 1 Ave., Paladino Ave.",111,8,25,10035,M,2.752,False,Louis Cuvillier Park,No,100004123,PARK,20100106000000.00000,19360225000000.00000,2412 1 AVENUE,DPR/TBTA/NYPD,True,Louis Cuvillier Park,Y,Louis Cuvillier Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M108A/,No,68,29,13,{49DF6EA2-AA88-4820-8D15-B1116E1B6A07} +"MULTIPOLYGON (((-73.98365299179076 40.71471132298123, -73.98368415810306 40.71488774188491, -73.9832203541172 40.714747137068606, -73.98365299179076 40.71471132298123)))",M002,5716,M002,M-03,M-03,M-03,M-03,"Grand St, E Broadway and Willet St",103,1,7,10002,M,0.094,False,Ahearn Park,Yes,100003740,PARK,20100106000000.00000,18250224000000.00000,,DPR,False,Ahearn Park,Y,Ahearn Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M002/,No,65,26,7,{44F21C8F-0EFB-4231-91E9-6E7A5D749156} +"MULTIPOLYGON (((-73.85252681394502 40.68252297194106, -73.85278379138774 40.6824495352905, -73.85286172038312 40.68260757004702, -73.85252681394502 40.68252297194106)))",Q147,6167,Q147,Q-09,Q-09,Q-09,Q-09,"Rockaway Blvd., 101 Ave., 87 St.",409,32,102,11416,Q,0.054,False,Ruoff Triangle,Yes,100000389,PARK,20090423000000.00000,19350225000000.00000,,DPR,False,Ruoff Triangle,Y,Ruoff Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q147/,No,38,15,7,{E5E28575-D4B9-41E5-99A3-C6FC769A32A1} +"MULTIPOLYGON (((-73.97937993443009 40.72811989352427, -73.97946074943957 40.728007404707064, -73.97954665937633 40.72804368708925, -73.97958126583265 40.727995516012165, -73.97961590421242 40.72794730170566, -73.97974429692177 40.72800152598615, -73.9798059759165 40.728027574130216, -73.97986605596442 40.72805294748052, -73.97986121016488 40.72805969144372, -73.97994308442935 40.72809426996185, -73.97994793140681 40.72808752599546, -73.98002679357413 40.72812083241102, -73.98010414677209 40.728153500050965, -73.9799189180289 40.728411329472834, -73.97943021467381 40.728205768728046, -73.97934420630057 40.728169623119456, -73.97937993443009 40.72811989352427)))",M113,4657,M113,M-03,M-03,M-03,M-03,E. 12 St. bet. Ave. A and Ave. B,103,2,9,10009,M,0.403,False,Joseph C. Sauer Park,Yes,100004130,PLGD,20100106000000.00000,19340228000000.00000,532 EAST 12 STREET,DPR,True,Joseph C. Sauer Park,Y,Joseph C. Sauer Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M113/,No,74,27,12,{5B7300D1-7909-4D39-A5B5-895ACEA022E8} +"MULTIPOLYGON (((-73.8857990173886 40.89972966712303, -73.88575683129876 40.89969575276628, -73.88571167609078 40.899656924213026, -73.88567435627459 40.89962483542224, -73.88566777536174 40.89961878035173, -73.88559505481803 40.899551868058786, -73.88551901104842 40.899476930908946, -73.88544631264709 40.89940010240822, -73.88537703658832 40.89932147538917, -73.88531126697666 40.8992411363879, -73.88524907248411 40.8991591737261, -73.88518305202476 40.899064158304334, -73.88512097560826 40.89896762404844, -73.88506290002567 40.89886966377123, -73.88500889154827 40.89877037749834, -73.88495899153219 40.89866986072811, -73.88491325557831 40.89856820627108, -73.88487172621186 40.89846551863079, -73.88482534959645 40.89834542517392, -73.88478297515015 40.89822447842858, -73.88474463118604 40.89810276397341, -73.88470740692046 40.89796846904958, -73.88470346550157 40.89795424556043, -73.8846999545387 40.8979415821404, -73.8846624264601 40.897779355661115, -73.88465791619373 40.89775511641108, -73.88464223849569 40.89767083879308, -73.88463208693139 40.89761626738089, -73.88463006233627 40.89760192333789, -73.88462032037864 40.89753290135476, -73.8846089723798 40.89745249563769, -73.88459311209738 40.897288226865534, -73.88458452112805 40.897123651084655, -73.88458320860843 40.89695894300001, -73.88458778931427 40.89682227829774, -73.88459775148726 40.89668577745687, -73.88461308301159 40.896549564730904, -73.88463376940751 40.89641375896728, -73.88465980094115 40.89627847991794, -73.88469114294413 40.89614385541355, -73.8847541491495 40.89591373726597, -73.8847662632985 40.89587525272564, -73.88482610713757 40.895685135417935, -73.88490696068769 40.8954582569085, -73.88499663343963 40.89523329074505, -73.88509504901496 40.895010438540055, -73.88509801011462 40.89500408046048, -73.8850982245168 40.895003618725, -73.88509824238089 40.895003581822905, -73.88509827216016 40.895003517017614, -73.88511476187766 40.894968110145435, -73.88512156023225 40.894953796495884, -73.88513496517902 40.89492557242209, -73.88515517201606 40.894883033797946, -73.88517537645546 40.89484049426708, -73.88519558205256 40.89479795653448, -73.88520877103085 40.89477243999542, -73.885220520486 40.894749709925584, -73.88524545769349 40.89470146511064, -73.88527039842323 40.894653221193906, -73.88529533555831 40.89460497636728, -73.88532027384072 40.894556733337055, -73.88534521090806 40.894508485797324, -73.88536946810983 40.89446428705877, -73.88539372290286 40.89442009011334, -73.88541798122372 40.89437589316597, -73.88544223476404 40.89433169710894, -73.88546648946031 40.89428750014715, -73.88549074650389 40.894243299580275, -73.88551545282166 40.89419797834941, -73.88554015199655 40.89415265080242, -73.88556485113472 40.894107325050754, -73.88558955142888 40.894061997493615, -73.88561425049961 40.894016671730604, -73.88563375569339 40.893980877856066, -73.88568567738074 40.893885596706816, -73.88572026282243 40.89382210981637, -73.8857434094684 40.89377959560317, -73.88577091666242 40.89372903986354, -73.88579842855667 40.89367848682302, -73.8858259380419 40.89362793017124, -73.88585344985086 40.89357737801714, -73.88588095925549 40.89352681955029, -73.88590846504903 40.89347626647578, -73.88593597673713 40.89342571159914, -73.88596348719979 40.893375154913315, -73.8859909988011 40.89332460182361, -73.88601765324755 40.89327563453577, -73.88604430527674 40.89322666994049, -73.88607096439124 40.89317770264413, -73.88609761871987 40.893128735336525, -73.88612427181792 40.8930797707226, -73.88615092725463 40.89303080340292, -73.88617758146236 40.892981837876455, -73.88620423682053 40.89293287054361, -73.88623049483695 40.892884464715515, -73.88625675637662 40.89283605798401, -73.88628301432118 40.89278764944165, -73.88630927341875 40.892739238192576, -73.88633553128217 40.8926908323388, -73.88636179504827 40.8926424219821, -73.88638805164706 40.892594017014844, -73.886414310587 40.89254560844156, -73.8864165509117 40.89254147741741, -73.88644057067387 40.892497200763565, -73.8864668283507 40.89244879217627, -73.88647755138966 40.89242902625879, -73.88649308954763 40.89240038448659, -73.88651989759977 40.89235136859993, -73.88654670560622 40.89230235630851, -73.88657351358083 40.892253339507974, -73.8866003203277 40.89220432360009, -73.8866271305934 40.89215530858952, -73.88665393606848 40.892106296269084, -73.88668074744173 40.8920572812463, -73.88670755640527 40.89200826441356, -73.88671461706407 40.89199562672413, -73.88673462900627 40.89195980073108, -73.88678104687608 40.89188020912022, -73.88687768228569 40.89171450734541, -73.88702923165118 40.891472174780084, -73.88718917707433 40.89123296769326, -73.88733557341051 40.89102825916939, -73.88749020867313 40.8908270685773, -73.88765294008417 40.890629593852196, -73.88768660588534 40.89059069050678, -73.88772402989218 40.8905495296869, -73.88776145741245 40.890508368858086, -73.88777754922731 40.89049066924566, -73.88779888133116 40.89046720531185, -73.88783630875874 40.890426044458096, -73.88787373258171 40.89038488268795, -73.88791225838065 40.890342511722466, -73.88799372982119 40.890256426914, -73.88802908816693 40.89021773131999, -73.88803795301 40.89020802907897, -73.88807840551839 40.89016361852408, -73.8881188591547 40.89011921065725, -73.88815931154893 40.89007480367525, -73.88819937421695 40.89003208561285, -73.88827158304039 40.88995827786233, -73.88834682524173 40.88988623525099, -73.88842503067494 40.88981603694786, -73.88850611617292 40.889747744099765, -73.88859000685328 40.88968143136871, -73.88867661361526 40.88961716169682, -73.88878537692406 40.88954113945473, -73.8888340037011 40.88950905155252, -73.88890979889409 40.88945903679062, -73.88903742191418 40.889379812320584, -73.88916812958254 40.889303538861704, -73.88921845471651 40.88927600888654, -73.88926998083936 40.88924978034333, -73.8893226414469 40.8892248873851, -73.88937637716552 40.88920135786856, -73.88943113099788 40.88917921785164, -73.88955183280395 40.88913349956943, -73.88967455934952 40.88909099783128, -73.88979915868852 40.88905175931093, -73.88992548243307 40.88901583248724, -73.89025087201064 40.888936575377585, -73.8905766780526 40.88885830287682, -73.89088230487452 40.8887855150532, -73.89118574303194 40.88870762040147, -73.89148683933287 40.88862465661512, -73.89171028198253 40.88855624311168, -73.89193343552299 40.88848729131432, -73.89222146297392 40.88839505727682, -73.89251012140639 40.888303964923786, -73.89280127863067 40.88820288957816, -73.89308890573669 40.88809615157219, -73.8932558499102 40.888033866367614, -73.89342056244404 40.88796824706164, -73.89358293051036 40.8878993475889, -73.8936952561607 40.88785275007699, -73.89383226736264 40.88779468946192, -73.89394185620536 40.887748248578184, -73.89408015893706 40.887688079916074, -73.89413178779556 40.887665398108304, -73.89424433678508 40.88761515869923, -73.8942912418082 40.88759399521404, -73.89441006868881 40.88753997844935, -73.89457458285374 40.88746327592722, -73.89481566601206 40.887349118806995, -73.89505541601153 40.887233353501905, -73.89525323942239 40.88712829966241, -73.89536165645086 40.88707041478413, -73.8954576848382 40.88701914526253, -73.89552723564901 40.88698201094562, -73.89571576684082 40.88687323069123, -73.89589977285966 40.88676007778673, -73.89592817931101 40.88674147504125, -73.89607908028744 40.886642661056236, -73.89623767662631 40.88653629150588, -73.896297352133 40.88649383407409, -73.89639209298889 40.886426429499544, -73.89654218919814 40.88631317938459, -73.89668784052917 40.88619663021417, -73.89678536087753 40.88611453006153, -73.89678526370801 40.88611444893086, -73.89678648480555 40.88611358285437, -73.89680676775262 40.88609650705535, -73.89680972009575 40.88609710581687, -73.89681576975165 40.88609281500427, -73.89749889826152 40.886221671858564, -73.89890452629231 40.88648658208718, -73.89898958729411 40.886502612276, -73.89905475966694 40.88656626434081, -73.89905973853284 40.88657007144897, -73.89907814500901 40.88658511305983, -73.89909588871963 40.88660060613245, -73.89911294476788 40.88661653713809, -73.89912930012754 40.8866328889564, -73.89914493109922 40.88664964085586, -73.89915982821756 40.886666774818686, -73.89917319674583 40.886684128963864, -73.89918580896834 40.886701803920545, -73.89919765541136 40.8867197870738, -73.8992087147536 40.88673805409213, -73.8992189810933 40.88675658425943, -73.89922844259043 40.886775360456376, -73.89923708503866 40.88679436105901, -73.89924490371713 40.8868135689542, -73.89925188798055 40.88683296162065, -73.89925803193222 40.88685251474022, -73.8992633261025 40.88687221299658, -73.89926776934897 40.886892026672705, -73.89927135219367 40.88691194585513, -73.89927428169507 40.88692609234998, -73.89927657154594 40.88694030762401, -73.89927821465794 40.886954570959894, -73.89927921341737 40.886968873354796, -73.89927956193202 40.88698318778909, -73.89927933275423 40.88699426717243, -73.89927929944696 40.88699588891919, -73.89927832608494 40.88701181226939, -73.89927673822547 40.88702608089001, -73.89927450377063 40.88704030122053, -73.89927163224374 40.887054452558054, -73.89926811654011 40.88706852499099, -73.89926397330791 40.88708249422067, -73.89925919900612 40.887096347637154, -73.89925380077825 40.887110069037796, -73.89924739243857 40.88713185521204, -73.8992306521413 40.887183049451366, -73.89921166518492 40.88723378698058, -73.89918409671272 40.8872855381625, -73.89914245801445 40.88736704261632, -73.89911370430386 40.887423328493696, -73.8990902226503 40.887469291296156, -73.89902794987309 40.88759118518225, -73.89898977159366 40.88766591644522, -73.89891760274999 40.88780718006928, -73.89889156686193 40.887858141891535, -73.8988649311197 40.88791027831636, -73.89882804255089 40.887982484788104, -73.89840735416769 40.888805925865555, -73.89835459883166 40.888909186776296, -73.8983042843197 40.88900767003208, -73.89821980283364 40.889173026546494, -73.8981372953957 40.88933451985091, -73.89806691769355 40.889472269886745, -73.89798268733854 40.889637134770894, -73.89793599342057 40.88972852612557, -73.89788969807847 40.8898191397928, -73.89780037049333 40.88999397830813, -73.89770059854295 40.890189259326256, -73.89760089742316 40.89038439713716, -73.8975122393589 40.89058270176368, -73.89746939852628 40.89067852582484, -73.89741489405593 40.89080606541495, -73.89735537769815 40.890977027340945, -73.89734070719136 40.89102029073426, -73.89731871043956 40.89108893319912, -73.89729263693472 40.89117029589344, -73.89726904350114 40.89124391841266, -73.89724702778456 40.891310148443296, -73.89721694735718 40.89139503655345, -73.89718592292823 40.89148258654948, -73.89715795308165 40.89156151530712, -73.89711995084495 40.891649242764956, -73.8970815638508 40.891737858645094, -73.89705527976525 40.89179853423495, -73.89703241571286 40.891842223408965, -73.89700254874921 40.89189929294722, -73.8969621012157 40.891976580638755, -73.8969345109114 40.89202929924348, -73.89689541286853 40.89210400642296, -73.89685330970889 40.8921736573787, -73.89682261206461 40.89222443713453, -73.89678327241849 40.89228951516685, -73.89674741165175 40.89234636766101, -73.89671195289878 40.892402582959576, -73.89666332905568 40.89247967142004, -73.89664592619783 40.89251601023636, -73.89662816378397 40.89255310153361, -73.89659222459824 40.89262814911444, -73.8965586441755 40.89270562020198, -73.89652657085216 40.892783767993656, -73.89651817172137 40.89280741621476, -73.89649870484195 40.89286222030993, -73.89647602343175 40.89292607769942, -73.89646384958859 40.89296035095906, -73.89644760784596 40.8930060765423, -73.89643072399417 40.89304806273175, -73.89641344223118 40.89309104179667, -73.89639064604809 40.89314773120092, -73.89637376092922 40.893189722782786, -73.89632522136802 40.89333464742296, -73.89628685044056 40.893455775047045, -73.89626338523846 40.89357754278949, -73.89625333564393 40.8936579714011, -73.89624777773892 40.89373372152475, -73.89624884458115 40.89382721715954, -73.8962541623248 40.893949445691874, -73.89628437724396 40.894159400243126, -73.89634522511672 40.894520873594516, -73.89650686480141 40.89559426703961, -73.89650729094079 40.89559419358189, -73.89651361732712 40.89563910553377, -73.89664916251884 40.8966013346311, -73.89668347051636 40.89684488341521, -73.89689294857108 40.89833188863901, -73.89690132379499 40.89839134519904, -73.89695186661997 40.8987501153844, -73.89694210585382 40.89877364983445, -73.89691099728245 40.89883877570299, -73.8968798886488 40.898903902462855, -73.89684881219853 40.89895972273705, -73.89684897764336 40.89896093943917, -73.89684481235065 40.89896690682879, -73.89684161937396 40.89897264186171, -73.8968414558513 40.898971716017726, -73.89684049243485 40.89897309559927, -73.89682652163866 40.89899161328041, -73.89679893235888 40.89902873359795, -73.89676988078207 40.89906520335195, -73.89674019202485 40.89910005345772, -73.8967397913564 40.89910052315211, -73.89670749061347 40.89913606608683, -73.89667421027396 40.89917039248181, -73.89663957819975 40.8992039405388, -73.89661429764634 40.89922461283139, -73.89659018190645 40.899244128138974, -73.89655141480607 40.89927021555503, -73.89653517827995 40.8992811427889, -73.89651357905633 40.89929492605191, -73.89647441005673 40.89931842328894, -73.89643431795974 40.899341008394444, -73.89639334907805 40.89936266339935, -73.8963515307404 40.89938336761611, -73.89630890333017 40.89940310036903, -73.89625418924808 40.89942702210348, -73.89619850049495 40.899449612920414, -73.89614189407305 40.89947085035759, -73.89608442816755 40.89949071465531, -73.89602616334301 40.89950918245432, -73.89596715065593 40.89952623939172, -73.89590745659677 40.89954186751656, -73.8958471381606 40.89955604977001, -73.89578642247422 40.89956849910173, -73.89572517525063 40.89957933425373, -73.89566346534232 40.899588545382, -73.89560136754687 40.8995961154443, -73.89553896377001 40.899602035509254, -73.89551888501312 40.899603405886026, -73.89547632284889 40.89960630563872, -73.89541352550837 40.89960891329859, -73.89535064414594 40.899609858554264, -73.8952877594724 40.89960913787697, -73.89522494744 40.899606754937416, -73.89506383923748 40.8995965384941, -73.8949031576371 40.89958300212889, -73.8947441450056 40.899566275745485, -73.89451386476992 40.89953819107327, -73.89449778715924 40.89953622593277, -73.89439962829061 40.89952424889486, -73.89432056412012 40.8995155436043, -73.89407713872129 40.89948874632576, -73.89405542821946 40.899486357230145, -73.89402936140608 40.8994837705276, -73.89391157013567 40.89947318701107, -73.89371424668862 40.89945947393675, -73.89351642877102 40.899450739746946, -73.89347595957017 40.899450252170354, -73.89343548780444 40.89945062453967, -73.89339504432954 40.89945185598295, -73.89335466473679 40.899453952836396, -73.89328302666163 40.8994576461592, -73.89321129340345 40.89946000753324, -73.89315793061529 40.89946058939939, -73.89310452991774 40.89946112888301, -73.89305105951881 40.899461470170806, -73.89287530908629 40.89946412213642, -73.89269970850798 40.899470241738726, -73.89252437881679 40.89947982278766, -73.89236557673375 40.89949189351156, -73.89235349631112 40.89949281244822, -73.8921831809102 40.89950952408697, -73.89201356908615 40.89952994432683, -73.89189454210968 40.89954667468715, -73.89177606584562 40.899565523380005, -73.89170080678743 40.89957864670025, -73.89160076215941 40.89959748908965, -73.89150123837192 40.89961784379492, -73.89143517503811 40.89963197151949, -73.89136882759084 40.899646372686156, -73.89130248010886 40.89966077741653, -73.89123408291512 40.899675985210635, -73.89119985016723 40.899683419769275, -73.89116533625636 40.89969006252701, -73.89113057204705 40.899695909010305, -73.89109559196129 40.89970095655, -73.89106042686662 40.89970519887155, -73.89102510881749 40.89970862970175, -73.8910107551492 40.899709864223, -73.89099645788856 40.89971143827831, -73.8909822348341 40.89971335368544, -73.8909680943033 40.89971560414892, -73.89095405884757 40.89971818788906, -73.89094013202401 40.89972110671027, -73.89092633282819 40.899724356128104, -73.89085090854694 40.89974537598497, -73.89077630278588 40.89976802644344, -73.89070258440867 40.89979228595862, -73.89042531264911 40.89988786886448, -73.89014941894743 40.899985714431, -73.8898749365143 40.90008582089879, -73.88960189502308 40.90018817299788, -73.88934727615707 40.90027921311752, -73.8890922565218 40.90036961654786, -73.88883685036735 40.90045938149906, -73.8887933160996 40.90047391030644, -73.88878424280038 40.900476936197734, -73.88876706871275 40.9004826683428, -73.8887316352011 40.90049449357379, -73.88867902638725 40.90051205092467, -73.88862641873538 40.90052960645171, -73.88857998799008 40.90054450698563, -73.88853294439421 40.90055825879192, -73.88848533663226 40.90057084750899, -73.88843721339641 40.90058225427318, -73.88838863403427 40.90059247553915, -73.8883396389278 40.90060149423629, -73.88829028742946 40.90060930411805, -73.88824062584614 40.90061589352252, -73.88819070996699 40.90062125800095, -73.88814058726791 40.90062539669851, -73.8880903194887 40.90062829526705, -73.88807253327555 40.900628882249485, -73.8880399529123 40.90062995645265, -73.88798954451039 40.90063037850956, -73.88793913938223 40.90062956238191, -73.88788427562677 40.90062796028224, -73.88782951389692 40.900624976012445, -73.88777491352768 40.90062061413278, -73.8877205362309 40.900614877404976, -73.88766643540619 40.90060777128418, -73.88761267987817 40.90059930304161, -73.88755932184739 40.900589485335416, -73.88750642657793 40.90057832543354, -73.88745404981968 40.9005658423012, -73.88740224734538 40.900552041396324, -73.88735107846942 40.90053693898633, -73.88730060012202 40.90052055763968, -73.88725086449958 40.90050291181596, -73.8871936093079 40.900479739556005, -73.88713635652661 40.90045656907083, -73.88712651415227 40.90045258561171, -73.8870791061573 40.900433399459985, -73.88703248448999 40.90041453012808, -73.88702185227368 40.90041022621525, -73.88696460079437 40.90038705834719, -73.88694686700417 40.90037988213333, -73.8869086088616 40.90036439505515, -73.88666052441864 40.9002433986367, -73.88657967177973 40.900204868555875, -73.88656507318272 40.900197911479346, -73.8864253295077 40.90013131654982, -73.88638254072947 40.90010875423683, -73.88635415362067 40.90009378636206, -73.88634365652365 40.900088251557456, -73.88633038437138 40.90008084911665, -73.88626351856198 40.90004355904304, -73.88618497492263 40.8999972633814, -73.88609850233014 40.8999434687146, -73.88601379973478 40.899888071967396, -73.88593091929127 40.8998311110156, -73.88584238272476 40.89976453444211, -73.8857990173886 40.89972966712303)), ((-73.8889368386798 40.90166724655974, -73.88896436057229 40.90162188954199, -73.88899188480086 40.90157653251961, -73.88901940661523 40.901531177288945, -73.88904693077018 40.90148581935215, -73.88907658643613 40.90143829869295, -73.88910623968613 40.901390778023384, -73.88913589526427 40.901343259149016, -73.88916555080453 40.90129573756517, -73.88919419216211 40.9012521429112, -73.88924322297805 40.901181318265344, -73.88929512731792 40.90111168409168, -73.88934986471045 40.90104330878449, -73.88940737214217 40.900976257114195, -73.88946760202553 40.900910595667014, -73.88953049491049 40.9008463883162, -73.88959115008102 40.90078819132276, -73.88965399133912 40.900731348913475, -73.88971896402512 40.900675900653944, -73.88978602058107 40.90062189782284, -73.8898656516617 40.90055749825277, -73.88994799940409 40.90049509128679, -73.89003296637256 40.90043474886508, -73.89012047533015 40.90037652943985, -73.89021042648636 40.90032049504394, -73.8903027295444 40.9002667086198, -73.89044553907351 40.90019014999083, -73.89059151118316 40.90011711057235, -73.8906242297013 40.900101858557115, -73.89074071415672 40.900047932601154, -73.8907479127009 40.9000446004182, -73.8908370788267 40.90000782704618, -73.89093516729476 40.899970179560015, -73.89103468209574 40.899934741323946, -73.89113552823927 40.89990154646307, -73.89123166266192 40.899872776556805, -73.89132877290186 40.899845957037364, -73.89142679247487 40.89982110765031, -73.89152564302937 40.89979824813046, -73.89163784129204 40.899774581614686, -73.89173393598418 40.89971312727663, -73.89176677999633 40.89975025172035, -73.89182691303883 40.89973978952402, -73.89191715021165 40.89972539515449, -73.89200774830572 40.89971234997746, -73.89215014060215 40.89969350358126, -73.89229316993875 40.89967769493712, -73.89243672831084 40.89966494105128, -73.89257253647847 40.89965471733992, -73.89270865923467 40.89964735009718, -73.89284500045976 40.899642844635686, -73.8929814569079 40.89964120986371, -73.89313447566404 40.899639742444755, -73.8932874805428 40.89964173987346, -73.89344033745449 40.89964720742908, -73.89364217440755 40.899660359624804, -73.89384387434515 40.89967464054875, -73.89388608613605 40.89967793280532, -73.89400435570643 40.89968872209667, -73.89411697129857 40.899701146763555, -73.89422915758459 40.8997156429414, -73.89429530307018 40.899727144175976, -73.89436144383446 40.899738643567346, -73.8944209808606 40.89974899686862, -73.8944275858055 40.89975014472282, -73.89449372661554 40.899761644038335, -73.89455986744704 40.89977314421641, -73.89462683958195 40.89978954464978, -73.89469301500395 40.89980770836607, -73.89475831068638 40.899827608276304, -73.89482265783053 40.89984922540917, -73.89488596985164 40.8998725308719, -73.89494816964864 40.899897502083896, -73.89500918726634 40.89992410026249, -73.89502859910883 40.89993328394286, -73.89509337562673 40.899965699920664, -73.89515672557499 40.89999970031894, -73.89521858611066 40.90003525086455, -73.8952788789722 40.90007231096709, -73.89533869000773 40.900113931553136, -73.8953965832348 40.90015708929751, -73.89545247803336 40.90020173280244, -73.89550631751844 40.900247810691724, -73.89555803768928 40.900295267980816, -73.89571139660939 40.90043795504898, -73.89585887249862 40.900584169201224, -73.89598120421641 40.90071691177953, -73.8960980134083 40.90085248577896, -73.89619806933833 40.900976497688504, -73.89624061513913 40.90103023449459, -73.89626961072635 40.90106991876464, -73.89630947010033 40.90111961716149, -73.89635142967099 40.90117648348078, -73.8963933644469 40.90124930183461, -73.89642348994433 40.90131114258435, -73.8964444367997 40.90136001352757, -73.89646539729662 40.90140090889287, -73.89647979234104 40.90143880786013, -73.89649025534628 40.90147072138561, -73.89650593626857 40.9015265663447, -73.89651898999568 40.901581413011044, -73.89652682080003 40.90161631467984, -73.89653107266862 40.90164557971343, -73.89653230624899 40.901645266550105, -73.89653153766857 40.901648775947365, -73.89653206137241 40.90165238105357, -73.89653065314643 40.90165281292421, -73.89642535696674 40.902133525535284, -73.89632894419921 40.90257367739371, -73.89623895683191 40.90297735001585, -73.89619377046883 40.903317865090365, -73.89622904972826 40.90413087312093, -73.8962415460204 40.90444565102747, -73.89640671950731 40.908751746994305, -73.89648320915575 40.911328799949864, -73.88763933227018 40.90872341952211, -73.88682981750061 40.90848489425899, -73.88620563651851 40.908300973094036, -73.88633475662 40.9080398566914, -73.88645697585206 40.9077768351282, -73.8865722430692 40.90751201373234, -73.88668051424997 40.907245497837586, -73.88678174655928 40.90697739457873, -73.88687589716449 40.90670781108957, -73.88696293154479 40.906436853610316, -73.88745702453728 40.904981056726264, -73.88812731949365 40.903352354357814, -73.88835653996723 40.90285817466771, -73.88845396976268 40.90262515340533, -73.88854639053831 40.902423244334614, -73.8885668401003 40.902380396541766, -73.888585824701 40.90234061888162, -73.88871808278049 40.902089658222536, -73.88883178214004 40.90186113940192, -73.88883705242307 40.90185141204647, -73.88886200022706 40.90180537000924, -73.88888694680813 40.90175932886559, -73.88891189335764 40.90171328591516, -73.8889368386798 40.90166724655974)), ((-73.88704971691027 40.89031048530769, -73.88699335986502 40.890507572619946, -73.88699330285282 40.890507604981615, -73.88699315821563 40.890508227075735, -73.88699222515173 40.8905112481928, -73.88697684067067 40.89055806649905, -73.88696066893473 40.89060727842375, -73.88694449598978 40.8906564894441, -73.88693641010394 40.89068109360309, -73.88692832421208 40.89070569776141, -73.8869121559642 40.89075490968144, -73.88689598175772 40.89080412249345, -73.88688547686577 40.89083608214748, -73.88687980990517 40.890853332603584, -73.8868636356523 40.89090254450967, -73.8868474625637 40.8909517555137, -73.88683129300793 40.89100096831947, -73.88681511987141 40.89105017931806, -73.88679590131048 40.89109831124687, -73.88677668508413 40.89114644947777, -73.88675746290616 40.89119458229629, -73.88673824543908 40.89124271961831, -73.8867190255771 40.89129085333238, -73.88669980687388 40.891338987043966, -73.88668058813823 40.89138712345343, -73.88666136937935 40.89143525715777, -73.88664214821482 40.89148339355759, -73.88662282179607 40.89152852222824, -73.88660349061067 40.89157364728868, -73.886584160578 40.891618776849064, -73.88656483052678 40.89166390190343, -73.8865455051912 40.89170902966031, -73.88652617508134 40.89175415830937, -73.88650684613494 40.89179928515501, -73.88648402209358 40.89184953142287, -73.88646119920594 40.89189977678641, -73.88643837390892 40.891950023043144, -73.8864155521358 40.89200027019887, -73.88639272676983 40.89205051644565, -73.88636990255448 40.892100763589056, -73.88634527866272 40.89215072530264, -73.88632064998896 40.89220068610537, -73.88629602483816 40.89225064690586, -73.88627139727697 40.89230060769831, -73.8862467732403 40.89235056758803, -73.8862221479753 40.892400530172345, -73.88619989861718 40.89244547488634, -73.88617764923205 40.89249041779474, -73.88615540218862 40.892535361601276, -73.88613315274338 40.89258030450032, -73.88611090563977 40.89262524829752, -73.88608865613429 40.89267019118723, -73.88606640659413 40.89271513677374, -73.88604067022315 40.892764484088424, -73.88601493143452 40.89281383499652, -73.88598919498712 40.89286318229878, -73.88596346087175 40.892912531398245, -73.88593772316439 40.892961876886, -73.88591198896795 40.893011228674474, -73.88588624881082 40.89306057414751, -73.88586051216933 40.893109923219804, -73.88583477548957 40.8931592722859, -73.88580918058305 40.89320550940847, -73.8857835832676 40.89325174652262, -73.88575798592117 40.893297980929226, -73.88573239090938 40.8933442171331, -73.88570678992711 40.8933904542255, -73.88568119602921 40.89343669131887, -73.8856555997255 40.893482926602864, -73.88562999863795 40.89352916277656, -73.88560281086383 40.89357958372823, -73.88557562304999 40.89363000377256, -73.88556311839669 40.89365319778483, -73.88554843756982 40.89368042291187, -73.88552124492377 40.8937308447387, -73.88549406054466 40.893781265666426, -73.8854668713792 40.89383168568204, -73.88543968217405 40.89388210479032, -73.88541496968602 40.89392760159608, -73.88539026072723 40.89397309659876, -73.88538543701537 40.893981983201314, -73.88536555291822 40.894018593397874, -73.88535681500447 40.8940346808949, -73.88534084270357 40.894064089288484, -73.88531613364175 40.89410958517464, -73.88529142335946 40.8941550810539, -73.88526671185667 40.89420057692629, -73.88524156607019 40.89424534296826, -73.88511610106478 40.89447409180374, -73.88499774797968 40.89470501234562, -73.88488657354542 40.894937981315444, -73.88478264095592 40.89517286372392, -73.88468823384567 40.89540739805202, -73.88460355094648 40.895644059054526, -73.88452867700565 40.895882619014564, -73.88446368255292 40.8961228393929, -73.88442772493349 40.896282060463804, -73.88439884682731 40.89644210985071, -73.88437707233358 40.89660280658541, -73.88436242436894 40.8967639678965, -73.88435492822401 40.89692541101332, -73.88435458545874 40.89708695133952, -73.88435930244619 40.89723374858994, -73.88436818842705 40.897357360729046, -73.88437056821218 40.89738033087643, -73.88437969740914 40.89746852719088, -73.8843861968492 40.897526690605, -73.88439660868525 40.89759525042988, -73.88440834870626 40.89767256339351, -73.88443627869108 40.8978178701502, -73.88446995860491 40.89796246946658, -73.88450936259335 40.89810623614441, -73.88455709488576 40.89825504844403, -73.8845829903548 40.89832506810209, -73.88461163337175 40.89840251049239, -73.88463676452889 40.89846236560329, -73.88464188167809 40.89846243465111, -73.88470296020293 40.89861224714634, -73.8847408395831 40.89869266492021, -73.88481535253534 40.898835003232556, -73.88489635856345 40.89897528945925, -73.88493212920262 40.89903189175072, -73.8849530384372 40.89906497837847, -73.88501356846828 40.89915321141787, -73.88507785981824 40.89923989753405, -73.88514585570371 40.899324937611034, -73.88521748032397 40.89940824872243, -73.88529265908548 40.899489735336054, -73.8853263661966 40.89952384044928, -73.88537130906573 40.89956931361773, -73.88541233174124 40.89960810578589, -73.88545335446308 40.89964689883961, -73.88553869099808 40.89972240264381, -73.88562724522423 40.89979574930958, -73.885718911657 40.89986685948255, -73.88581359192462 40.89993565741752, -73.88590093744703 40.8999965390715, -73.88599073028098 40.90005533755388, -73.88608287913661 40.90011199783938, -73.8861074092146 40.90012623888696, -73.88613294943572 40.90014106624037, -73.8861817559319 40.90016939767792, -73.88623303089744 40.900196388004694, -73.88628430353263 40.90022337740569, -73.88631057778068 40.90023720770597, -73.88633557857996 40.900250368587166, -73.88635306432843 40.90025957074054, -73.88638690347832 40.900277380505834, -73.88653405427794 40.90035432392049, -73.88658569859415 40.90038132886018, -73.8868562155625 40.90053399313799, -73.88693401051889 40.90058152757066, -73.88700991802743 40.90063078993315, -73.88708387170479 40.90068173604051, -73.88715579923583 40.90073431990107, -73.88722564491228 40.900788500041905, -73.88729334235923 40.90084422597476, -73.88730597597589 40.9008553052573, -73.88737238457816 40.90091390423014, -73.88743572887344 40.90097327369212, -73.88749284293837 40.90103033991241, -73.88754768579848 40.90108867447454, -73.8876002029452 40.90114822600098, -73.88762996982055 40.901184267135825, -73.88765035173105 40.9012089467278, -73.88766384814627 40.90122642474897, -73.88769808834716 40.90127077358147, -73.88771777746157 40.90129811882039, -73.88778544580298 40.9013941293833, -73.88775699219708 40.90141662012704, -73.88770927712795 40.901454339125934, -73.88766220967055 40.901491550862076, -73.8876191349511 40.901527135688994, -73.88746352283654 40.90166134802439, -73.88740736692765 40.9017130287771, -73.88736909794449 40.90174824449539, -73.88724443053523 40.901867294651204, -73.88716966961914 40.901940760531666, -73.88703172455007 40.90208567108104, -73.88689996018726 40.9022338571741, -73.88677451566946 40.90238516678653, -73.8866555087847 40.902539443369946, -73.88654307038169 40.90269652948797, -73.88649292301082 40.90277251164501, -73.88644603608803 40.90284968202285, -73.88640245129355 40.90292796322473, -73.88636221863607 40.903007266155704, -73.8863253809764 40.903087517922295, -73.88629197172152 40.903168622208774, -73.88626202779623 40.90325050791624, -73.88623558379075 40.903333081431086, -73.88620982625909 40.90342573382866, -73.88618783116893 40.903518946426814, -73.88616962005761 40.90361262649911, -73.88615520614401 40.90370668761389, -73.88614461334133 40.90380103614583, -73.8861378370587 40.90389559014745, -73.88613489645623 40.90399025958988, -73.88613578815784 40.90408494631739, -73.88613743907044 40.9041396730332, -73.88613911993468 40.90419423769086, -73.88614079961332 40.90424880324727, -73.88614247810632 40.904303369702376, -73.88614397183449 40.904318916222635, -73.88614721571126 40.90435274698564, -73.88615177382552 40.904400210563736, -73.88615669569124 40.90445150065437, -73.8861614321351 40.90450087523299, -73.88616617569475 40.9045502570219, -73.88617100676669 40.9045998270974, -73.88619208566256 40.90477572310383, -73.8862208079699 40.90495099629468, -73.88625713728224 40.9051254557259, -73.88626762406585 40.90517007510297, -73.88627891913735 40.90521537964218, -73.88629021541111 40.90526068418108, -73.88630151288866 40.905305987819155, -73.88631280800479 40.90535129325437, -73.88632409435219 40.905400346491085, -73.88633538427226 40.90544940243123, -73.88634667183375 40.90549845926793, -73.88635795704273 40.90554751339931, -73.88636924701127 40.90559657023518, -73.88637275193042 40.905611802658235, -73.88638053462579 40.90564562526622, -73.88639181869938 40.90569467849125, -73.88640310990482 40.905743735323654, -73.8864143940102 40.90579278944604, -73.88642643108486 40.90584573619615, -73.88643846699492 40.90589868114239, -73.88645050292106 40.90595162788779, -73.88646253886793 40.90600457373092, -73.8864746127497 40.90605755742982, -73.88648594559959 40.90611218468071, -73.88649509418681 40.90616705021165, -73.8865020562291 40.9062220972904, -73.88650681162247 40.90627727997302, -73.88650936994263 40.90633254784212, -73.88650971703066 40.906387848655896, -73.88651181886445 40.9064921951084, -73.8865096811151 40.90659654009305, -73.88650331461231 40.90670078546752, -73.88649272543385 40.90680483578599, -73.88647791492514 40.90690858659257, -73.88645890459249 40.90701194335606, -73.88643798889117 40.90710507235498, -73.8864132830735 40.90719766183256, -73.88638480270171 40.90728962535534, -73.88635257401464 40.90738088010195, -73.88631663751761 40.90747132975752, -73.8862963553601 40.90751932173728, -73.8862754920417 40.90756774087004, -73.88625463225057 40.907616161803034, -73.88624811393197 40.90763129249992, -73.88623377362211 40.90766457913111, -73.88621641366578 40.907704867641414, -73.88621291020792 40.90771300095267, -73.88619204795488 40.907761420069725, -73.8859725482577 40.90823229113184, -73.88595496098608 40.908227108592, -73.88489627751618 40.9079151438113, -73.88466568983127 40.9078440655108, -73.8841399437763 40.907687153169114, -73.88357678454311 40.90751907073719, -73.88344135750906 40.907478650993696, -73.88270618472441 40.90725922237762, -73.88261919819266 40.90723325859563, -73.88166539242162 40.9069485652654, -73.88159568592611 40.90692775837678, -73.8807749317235 40.9066827693701, -73.87990493389444 40.90642307243814, -73.87939077267727 40.906269589400694, -73.87873999441582 40.90607532095208, -73.8784982744231 40.906003162336866, -73.87942001999943 40.900461880448994, -73.87942139865856 40.900453589329175, -73.87952969818474 40.89980246221409, -73.87953469195816 40.89977243807152, -73.87954203053575 40.89976154536525, -73.87955767219417 40.89973536119071, -73.87960124145317 40.89966567762698, -73.8796336249262 40.89962176055158, -73.87965930764271 40.89958713398389, -73.87968665705392 40.899554200257015, -73.87970786623623 40.89952971117213, -73.87972923691952 40.899503846311234, -73.87980140722455 40.89942810968956, -73.87984150899688 40.899391517026174, -73.87988299760399 40.89935583077845, -73.8799233369424 40.899322355810625, -73.87996582849944 40.89928786191691, -73.88000832475944 40.89925336801224, -73.88003391554354 40.89923398286393, -73.88005584607099 40.899217372802205, -73.88010337089304 40.899181376675564, -73.88015089447514 40.899145381428376, -73.88019841800418 40.89910938706185, -73.88024393188981 40.899075593176, -73.8802894409853 40.89904179746611, -73.88033495240636 40.89900800264101, -73.88038046496794 40.898974207798986, -73.88042597392136 40.89894041383558, -73.88047143414882 40.89890663241044, -73.88051764280976 40.89887107328483, -73.88056221107175 40.89883433280871, -73.88060509139704 40.89879644875506, -73.88064622791346 40.898757474196685, -73.88068557783431 40.89871744511041, -73.88072308647335 40.89867641547072, -73.88075871459353 40.89863442756163, -73.88079242292433 40.89859154257726, -73.88082416512025 40.89854779649077, -73.88085390428168 40.89850325229957, -73.880881654346 40.89845808111175, -73.88090745809423 40.89841225235626, -73.88093030125948 40.89836554256865, -73.88095215278587 40.898318545399434, -73.88097299360987 40.898271304052805, -73.88099079764312 40.898223331079386, -73.88100655050309 40.89817494716862, -73.88102023548616 40.89812620453212, -73.88103183708519 40.898077149979876, -73.88103895748678 40.898035410848316, -73.88104446059103 40.89799353677774, -73.8810483416073 40.897951553877554, -73.88105059809422 40.8979095017667, -73.88105122760886 40.897867420964566, -73.88105023009798 40.89782534298809, -73.88104721545672 40.897777778980945, -73.88104216656656 40.89773031823385, -73.88103508572794 40.897683003972126, -73.88102598590086 40.89763589113839, -73.88101486463238 40.89758902655481, -73.88100175150292 40.897542461578944, -73.88098664524276 40.89749624483494, -73.88096956713309 40.897450423169225, -73.88095053726339 40.89740504612832, -73.880929574533 40.897360165058345, -73.88090544148048 40.89731097909767, -73.88088157616212 40.89726207345858, -73.8808577120737 40.89721316331284, -73.88083384564374 40.89716425496025, -73.88080998161907 40.89711534840572, -73.88078743687181 40.8970706331641, -73.8807648897831 40.897025917014716, -73.88074234628648 40.896981199963825, -73.88071980044514 40.89693648380611, -73.88070934464297 40.89691575194499, -73.88069635119278 40.89688997654605, -73.88062757277085 40.89678333035941, -73.88063558628401 40.8967729866712, -73.88068834236678 40.89670664125281, -73.88079053019041 40.896582569952294, -73.88089605058744 40.89646011746712, -73.88092397922688 40.89642738573591, -73.88092875509675 40.89642178964574, -73.88096145838811 40.8963834582116, -73.88096510688517 40.8963791810683, -73.88099415927148 40.89634512496452, -73.8810268660411 40.89630679711695, -73.88107197691502 40.89624158545369, -73.88111957202206 40.89617740018187, -73.88116961566095 40.896114294390216, -73.88121071169061 40.89607096302492, -73.88125180766663 40.896027631644586, -73.88129290003222 40.89598429844467, -73.88133399708944 40.895940966135164, -73.88137509290151 40.89589763651087, -73.88141618628983 40.89585430506821, -73.8814572831847 40.89581097361418, -73.8815236333367 40.89574418341547, -73.88159251785473 40.89567889058268, -73.88160769855479 40.89566532953937, -73.8821715158807 40.89507200585712, -73.88217146848113 40.895071298027425, -73.88217413869344 40.89506652187817, -73.88221198588532 40.8950249544855, -73.88224813804725 40.89498494769294, -73.88228428542052 40.89494493998343, -73.88232043987199 40.89490493136909, -73.88236250194568 40.894860707288906, -73.88240457108822 40.89481648049883, -73.88244663542169 40.8947722572902, -73.8824887008859 40.89472803406708, -73.88253076866589 40.8946838117311, -73.88257283402605 40.894639583974175, -73.88261111359392 40.89459951349411, -73.88343918431049 40.89378099472447, -73.88426265759077 40.89295981517177, -73.88508151923861 40.89213599112761, -73.8858957562519 40.89130953618325, -73.88613795159415 40.89108458546313, -73.88638475982103 40.89086254103319, -73.88663612030481 40.890643459535255, -73.88689197361664 40.8904273922095, -73.88704971691027 40.89031048530769)), ((-73.88054845860704 40.89261928680522, -73.88051973172155 40.89249085413136, -73.88043866701808 40.892251530073516, -73.88029739899964 40.891950888893604, -73.88015005818691 40.89168563120839, -73.87984256687054 40.89113809802299, -73.87965151162625 40.89079788902587, -73.87935638685046 40.8902635162357, -73.87926350984526 40.890065065468306, -73.87909297268105 40.889676925146595, -73.87892302008032 40.88929011067167, -73.87874668723859 40.888888767072935, -73.8783650268397 40.88802007068298, -73.87827104986998 40.88780616732254, -73.87822941021663 40.88769975884365, -73.87809545596534 40.887237799349705, -73.87936205959325 40.88551215879346, -73.88130971256288 40.88285844468997, -73.8820469678807 40.88321395282301, -73.88231264281247 40.883342060782724, -73.88250299513733 40.88343176043782, -73.88257742289701 40.88345341725594, -73.88263546168969 40.88346439019169, -73.88269468686946 40.88347072139253, -73.88277440236857 40.88347181543184, -73.88283608077847 40.88346627612947, -73.88369676584298 40.88325761498307, -73.88384112412346 40.883236260328246, -73.8839455925359 40.883231428049335, -73.88402395275376 40.88323663418881, -73.88412476618963 40.883251892444896, -73.88419861707692 40.883270469773876, -73.88429229554166 40.88330388895221, -73.88462174783211 40.88346045777221, -73.88632602694783 40.88426698342721, -73.88636027985561 40.88422885452169, -73.886570971539 40.88432230268867, -73.88669149572351 40.884377479541214, -73.88672203518948 40.88440802341654, -73.88674384171564 40.88443457946316, -73.8867603948399 40.88446577326181, -73.88676908606476 40.884494969269355, -73.8867774584193 40.88453583797446, -73.8867864305614 40.88458262886852, -73.88679449265055 40.884620371677535, -73.88680506499517 40.88467298128379, -73.8868150483545 40.884723791138335, -73.88681638367382 40.88475694927315, -73.88682820773586 40.884806821723, -73.88684053258207 40.88485526468911, -73.88685285389593 40.88490370224704, -73.8868651740381 40.88495214160306, -73.88686887494853 40.88496667368444, -73.88687749775939 40.88500058006029, -73.88688981912402 40.885049019413984, -73.8868998226403 40.88509293425016, -73.88690982261633 40.88513684547967, -73.88691982259951 40.8851807603099, -73.88692982733886 40.88522467694452, -73.88693982379652 40.88526858726637, -73.88694970915991 40.88531503865174, -73.88695959216865 40.885361487332084, -73.88696947993574 40.8854079369163, -73.88697936178102 40.88545438829447, -73.88698924720119 40.88550083877434, -73.88699913145167 40.88554728745088, -73.8870430912012 40.88576704292397, -73.8870530253264 40.88582119530554, -73.88705488753422 40.88583134741318, -73.88708348505475 40.88598719289773, -73.88712030354802 40.88620770044679, -73.88715354550695 40.88642853765823, -73.88716052873173 40.886480694362, -73.88716750603932 40.886532848357575, -73.88717449165752 40.88658500596233, -73.8871814725421 40.88663716266101, -73.88718845225414 40.8866893175566, -73.88719543671715 40.88674147605788, -73.88720241882565 40.88679363005348, -73.88720940094365 40.886845784948655, -73.88721454256168 40.88689874578081, -73.8872196877537 40.88695170301379, -73.88722482820316 40.88700466294283, -73.88722997578616 40.88705761927612, -73.88723512218778 40.88711057740847, -73.88723610638628 40.887120745762225, -73.88723788948667 40.88713909941742, -73.8872402626648 40.88716353553429, -73.88724540671127 40.88721649276234, -73.88724816066157 40.88725219073357, -73.8872493274955 40.887267313741496, -73.88725312983406 40.887316615483805, -73.88725717145662 40.887368954799754, -73.88726441286063 40.88746278805029, -73.88726501780869 40.887470599459846, -73.8872689386229 40.88752142043595, -73.88727246049079 40.887583596154606, -73.88727656990795 40.88765615235218, -73.88728223121085 40.88775608484821, -73.88729037161254 40.88799087929076, -73.88729336817089 40.888225749743704, -73.88729121740003 40.888460620563244, -73.88728470622608 40.88871632076238, -73.88726996996436 40.88897181841147, -73.88724702774536 40.88922697214989, -73.88721588567523 40.88948162439381, -73.88720817311977 40.889528314261945, -73.88720028909871 40.88957604852542, -73.88719249138559 40.88962326149086, -73.88718469247637 40.88967047355373, -73.88717689474416 40.889717684716295, -73.88716463549613 40.889770433107536, -73.88715237742908 40.88982317339371, -73.88715156222518 40.88982667548719, -73.8871507505948 40.88983016947974, -73.88698903695752 40.88993737260703, -73.8868317389243 40.89004829614077, -73.88667900618206 40.890162834888876, -73.8865309836795 40.890280880953455, -73.88653018349284 40.89028042902343, -73.88645982593486 40.89034029978271, -73.88641964570857 40.8903746642174, -73.88641951617791 40.89037477575018, -73.8860725509049 40.89067688721624, -73.88573197356762 40.89098315698972, -73.88539787213237 40.891293508672476, -73.88507033101885 40.89160786136037, -73.8847494322744 40.891926136848106, -73.88443525914475 40.892248253329576, -73.88412789013299 40.89257412989407, -73.8838274049388 40.89290368293017, -73.88369161888298 40.89303926556836, -73.8834426590971 40.89329902152856, -73.88322390873445 40.89350737718211, -73.88309567457677 40.89363010781445, -73.88294107168969 40.89375852604581, -73.88270728344179 40.89395258015595, -73.88249614763136 40.8941109408983, -73.88244737901522 40.89414578505197, -73.88239621075327 40.894181378645456, -73.88234411913815 40.894217009095335, -73.88232371091331 40.89423096652631, -73.88229202271727 40.894252641317564, -73.88223992861076 40.894288275319504, -73.88220288314206 40.89431361409847, -73.88218783801636 40.894323904798895, -73.88213574261458 40.8943595369511, -73.88211070338474 40.8943751149916, -73.88208667156574 40.894390061914976, -73.88203759929631 40.89442058055326, -73.88198853528061 40.89445110368136, -73.8819394605397 40.89448162677755, -73.88189039524876 40.89451214896193, -73.88184132279912 40.89454266751605, -73.88179314762102 40.89457174709207, -73.88173156880391 40.894607510725535, -73.88167633930412 40.89463958614331, -73.88158714175516 40.89468652972661, -73.8815147576096 40.894712505591514, -73.88112430962781 40.894891295331405, -73.88093074042091 40.89497365502024, -73.88069284676004 40.89505596858239, -73.88063135999045 40.89506897105863, -73.88056840947534 40.895076986001314, -73.8805046967262 40.89507992228472, -73.88046274288044 40.89508101616171, -73.88042529443472 40.895076429927414, -73.88039234935266 40.89506729999642, -73.88036091329664 40.89505248775742, -73.88033697581211 40.89503313583288, -73.88032596488765 40.895009203029396, -73.8803304578892 40.89497745477819, -73.88035453473215 40.89480729433334, -73.88057327409012 40.893230714248645, -73.88058383500865 40.89302480845209, -73.88058017290244 40.89286237057997, -73.88054845860704 40.89261928680522)), ((-73.87051496441173 40.900630669781414, -73.87076869629495 40.90048122514174, -73.8710951187269 40.900288964751276, -73.87133113155038 40.90016474956735, -73.8713597300704 40.90014969742249, -73.87149093514225 40.90008499425798, -73.87174724706571 40.89996224429083, -73.87200170033077 40.89984217063342, -73.87219498328227 40.899761352869774, -73.8724572995219 40.899656217843656, -73.87265310017895 40.8995794884916, -73.87284781605088 40.89950318354132, -73.87314700224209 40.89938419937454, -73.87319957913792 40.899363289351534, -73.87319474661294 40.8993744914744, -73.87333744895405 40.899345474230856, -73.87341744108733 40.89931717058946, -73.87356041630767 40.89926312350044, -73.87374778670632 40.89917921970054, -73.87385133722184 40.89913073734659, -73.87397461499334 40.89907106090062, -73.87415213540388 40.898985276283405, -73.87425569946706 40.89892931685663, -73.87439132091006 40.898854700861236, -73.87451459768315 40.89879502473606, -73.87468722097668 40.89869241201634, -73.87483274080368 40.89859350846648, -73.87497578363143 40.89850207787315, -73.87510157559825 40.898414367251576, -73.87521336160222 40.89833593885785, -73.87521010977753 40.898334113662244, -73.87536552714214 40.89821092235503, -73.87550861973672 40.898091455458484, -73.87577016447278 40.89785623162547, -73.87594291016046 40.897686331121456, -73.87610085680488 40.89752575880335, -73.87622182603542 40.89738010007509, -73.876332900803 40.897256858994346, -73.87639439692498 40.89715932400108, -73.87639200507132 40.89715900717083, -73.87640111700954 40.89714866495271, -73.87641402617889 40.89713401257589, -73.87643267459501 40.89711284683034, -73.87645475157146 40.89708267810102, -73.87648785510369 40.8970374398441, -73.87650446277195 40.89701474378029, -73.87653117849518 40.896978236982406, -73.87656067581402 40.896937925902236, -73.87659191011784 40.89689524209235, -73.87662176427983 40.89685444601608, -73.87665068208774 40.896814925818965, -73.8766713633034 40.89678666458346, -73.87672001519374 40.8967201788157, -73.87674766288382 40.896676932831255, -73.876793366593 40.89660544259013, -73.87682798737413 40.896551289249125, -73.87686547996569 40.8964926437394, -73.87689438904079 40.89644742339954, -73.87692183060588 40.896404499525225, -73.87695364557342 40.89634982087195, -73.87696982526516 40.89631773942756, -73.87699145175502 40.896274861566376, -73.87700970865502 40.89623866170987, -73.87703372440218 40.896191044431454, -73.87705225520152 40.89615430276745, -73.8770758397163 40.89610754138162, -73.8770949195551 40.89606971070793, -73.87711623776931 40.89601953946478, -73.87713368496428 40.89597062567687, -73.87715720273069 40.89590469287443, -73.8771774221286 40.895848006340046, -73.87717916612826 40.895843114959575, -73.87718989730432 40.89581302946292, -73.8772917093967 40.89552758849457, -73.87749812918517 40.89551432206202, -73.87977754059635 40.895367805197296, -73.87974216463022 40.89550192982843, -73.87970943282652 40.89562603210024, -73.87968318802783 40.89572553896842, -73.8796438015631 40.895874872175355, -73.87956860449934 40.8961599755603, -73.87943138978854 40.896680209987124, -73.87933472724052 40.897046687385924, -73.87921598903378 40.89749686145697, -73.8791008258062 40.89793347241072, -73.87895274656708 40.898581222256176, -73.87888811496018 40.898907443256505, -73.87882334268627 40.89931372793064, -73.87873327245394 40.89987867563238, -73.87861982981016 40.900590217285824, -73.87863371604332 40.900554030616036, -73.87848523071573 40.90143444081614, -73.87839104370936 40.901867661791606, -73.8784151229261 40.90187415172777, -73.87819432683018 40.90325894162786, -73.87778844685334 40.90580438426925, -73.87560013437044 40.90515892640882, -73.87213978809969 40.90413816151309, -73.86800506199604 40.902918285599576, -73.86801691713741 40.902904594686305, -73.86802090810305 40.9028999869694, -73.86803102269972 40.90288960964718, -73.86804541202007 40.90287815482804, -73.86805374644749 40.90287371416132, -73.86806184800722 40.90286939839519, -73.8680707289502 40.9028646674955, -73.86808084550374 40.90285927705164, -73.86809185282084 40.90285356254989, -73.86810121943259 40.902848700732065, -73.86811645565649 40.90284107212777, -73.8681271367658 40.902835866924, -73.86814425789736 40.902827524584175, -73.86816395693617 40.90281792540834, -73.86818972835911 40.90280324902918, -73.86819861621073 40.902796820715075, -73.86821873926728 40.902782263048316, -73.86823935757553 40.902765731181674, -73.8682635000607 40.90274415882099, -73.86828100828768 40.90272851397675, -73.86829254568794 40.90271820489041, -73.8683116703648 40.902696567363115, -73.86832431433702 40.90267943656797, -73.86833608483039 40.90266348801131, -73.86834698303483 40.90264872079434, -73.86835788123436 40.90263395357626, -73.86837108449278 40.90261606430546, -73.86837799850095 40.90260669544735, -73.86838391051032 40.902598685177495, -73.86839512166567 40.902583495085075, -73.86840396230562 40.90257151521673, -73.8684124268924 40.902560047294536, -73.86841734761312 40.902553378514845, -73.86842432464128 40.902542144823144, -73.86842929608659 40.90252963556095, -73.86843408623129 40.90251758173685, -73.86844079911313 40.90250068820055, -73.86844671403068 40.902485803635045, -73.86845280785967 40.90247046903101, -73.86846075760408 40.902447476122894, -73.86846481344779 40.90242924684122, -73.8684660561998 40.90242077560213, -73.86846868727707 40.90240283825477, -73.8684706906223 40.90238185295392, -73.86846924555503 40.90235102503483, -73.8684649531205 40.90231849285698, -73.86847456081811 40.902282911267136, -73.86848039396713 40.90227574825762, -73.86853807725929 40.902214982649426, -73.86859053825741 40.902159717528406, -73.86866227164067 40.90208415038152, -73.86873056424736 40.90201220822827, -73.86878860743768 40.90195106199677, -73.86886141072695 40.901874366732514, -73.86892220089028 40.901819366656014, -73.86897129544214 40.90177494837108, -73.86904831429791 40.901705265339345, -73.86914548765756 40.90161734688269, -73.86924007128792 40.90153177117139, -73.86929873384771 40.901478694619804, -73.86941511310327 40.901391718870066, -73.86949417290313 40.9013326329434, -73.86951630719516 40.90131609175293, -73.86961443223983 40.90124275731514, -73.86971558665908 40.90116715789192, -73.86985491071862 40.90106303354898, -73.86996784771537 40.900978627841084, -73.87015483000272 40.90085762499474, -73.87034457676634 40.90073483118344, -73.87051496441173 40.900630669781414)), ((-73.88755071765966 40.884372142508056, -73.88757406767519 40.88434775575698, -73.88785798703971 40.88440137950648, -73.88800198465366 40.88442857535317, -73.89436310620081 40.88562977325697, -73.89448382231448 40.88565256513192, -73.89454568683469 40.88566424515117, -73.8945457352754 40.88566587147416, -73.89454561029554 40.88567434854056, -73.89454509734618 40.88568281084467, -73.89454419879893 40.88569125928918, -73.89454290993174 40.8856996785615, -73.89454124500269 40.885708056067756, -73.89453920045787 40.88571638820283, -73.89452328045512 40.88576152585274, -73.89451759161003 40.885777639363276, -73.89445957404564 40.88594212592947, -73.89437241517959 40.886166252932775, -73.894326475211 40.88626768220161, -73.89427618834799 40.88636791972718, -73.8942216164467 40.886466856601785, -73.89416281780069 40.88656438661542, -73.89409985069754 40.88666040806031, -73.89403278529869 40.88675481473669, -73.89394362098614 40.88687782392936, -73.89384983201182 40.886998830618474, -73.89375149563277 40.887117742113944, -73.89374365211964 40.88712691985437, -73.89364943640238 40.88723312739068, -73.89355082910632 40.88733701744898, -73.89344792770315 40.88743847484591, -73.89339189649812 40.887490120926515, -73.89333379208483 40.88754041793625, -73.8932736548687 40.887589326287866, -73.8932115489995 40.88763679831187, -73.89314753743996 40.88768278723813, -73.89307222306316 40.887733671507476, -73.89299472246732 40.887782630261974, -73.89291512473615 40.887829607749836, -73.89283351657537 40.887874551818996, -73.89277687537711 40.88790366596571, -73.89271914454375 40.88793150848568, -73.89266036088966 40.88795806140189, -73.89260058378737 40.88798329865381, -73.89253985599336 40.88800719686716, -73.89247823448561 40.888029743486626, -73.89242741460338 40.88804766263645, -73.89237688316271 40.88806549918805, -73.89232651804134 40.888083195396796, -73.89205220158212 40.888169645193784, -73.89191031876479 40.88821141113816, -73.8917752736819 40.888251162628336, -73.89149589226928 40.88832770910935, -73.89121421291425 40.88839923884109, -73.89089423229683 40.88847973474814, -73.89087842893213 40.88848371076378, -73.89054208732219 40.88856690519143, -73.89020520708691 40.888648822137405, -73.88994613722387 40.88871052616265, -73.88968687660477 40.88877176927548, -73.88964565847179 40.88878033852357, -73.88960407310196 40.88878782412087, -73.88956217508877 40.88879422071636, -73.88952001072552 40.88879951934912, -73.88943454985821 40.88881375885083, -73.88934854768799 40.88882597167666, -73.88926208373809 40.88883614889676, -73.88917524584254 40.888844278888115, -73.88908811826057 40.88885035902942, -73.88900078171004 40.88885437589039, -73.88891332400576 40.88885632955494, -73.88884454362497 40.888859360112484, -73.88878651325243 40.88886191652554, -73.88877576205279 40.8888623897274, -73.88870698284752 40.8888654193036, -73.88863820245238 40.88886844703671, -73.88856942204349 40.8888714792313, -73.88852310997342 40.888872112579705, -73.88847685517985 40.88887396882502, -73.88843071223828 40.888877050721504, -73.88838474048563 40.888881352023226, -73.8883389956991 40.88888686648108, -73.88829353246196 40.88889359234705, -73.88824840300383 40.88890151616482, -73.88820366785156 40.888910629888954, -73.8881593792305 40.88892092276476, -73.88811558699764 40.88893238133374, -73.88807235168609 40.88894499394882, -73.88802972078734 40.88895874264699, -73.88798775009325 40.88897361307527, -73.88794648947326 40.888989584571576, -73.8879059864164 40.889006640974074, -73.88787064270419 40.889022227378135, -73.88783603429064 40.88903873388212, -73.88780219917734 40.88905614161348, -73.88776918011847 40.88907442810227, -73.88777161689629 40.88905010293926, -73.88778427069286 40.888889787292364, -73.88779103579887 40.888729263305564, -73.88779190136209 40.888568658838444, -73.88778484104834 40.888357192603586, -73.88777190311131 40.888183335756544, -73.88776921253029 40.88814716330964, -73.88774476991003 40.88793527043196, -73.88771179890188 40.88772522334568, -73.88767024545314 40.887516053067735, -73.88765877601347 40.88746350843183, -73.88764759012606 40.88741099468679, -73.88763640543976 40.8873584827423, -73.88762521958465 40.887305970795055, -73.88761403730986 40.88725345704871, -73.88760285267965 40.88720094329845, -73.88759166569098 40.88714843134529, -73.88758591445297 40.88712108697665, -73.88758032450342 40.88709449557127, -73.88756898214773 40.88704055979446, -73.88755764099854 40.88698662311666, -73.88754629630809 40.88693268643372, -73.88753495519722 40.886878748852155, -73.88752361173015 40.886824812167056, -73.88751226827839 40.88677087728133, -73.88750206568292 40.886721512574255, -73.88749186309805 40.88667215056729, -73.88748165934484 40.88662278675687, -73.88747145797836 40.886573423847864, -73.88746125425541 40.886524060034745, -73.88745105173115 40.88647469802237, -73.88744084922813 40.886425332406695, -73.88743091407208 40.88637715479218, -73.88742097656036 40.88632897537308, -73.887411037875 40.886280796852, -73.88740110513672 40.88623261833542, -73.88739116885324 40.88618443981411, -73.88738123140065 40.88613625948939, -73.8873712951475 40.886088080065015, -73.88736135890724 40.88603990153983, -73.88735073241486 40.88598944951153, -73.88734424448923 40.885958635731306, -73.8873401106863 40.885938996585864, -73.88732948542341 40.885888538252416, -73.8873188613525 40.88583808622202, -73.88730823611424 40.885787632388066, -73.88729760970861 40.885737176750546, -73.88728698806065 40.88568672381768, -73.88727577412294 40.885634308144446, -73.88726456019374 40.8855818978725, -73.88725334984791 40.88552948400052, -73.88724213477369 40.88547707012232, -73.8872309232797 40.885424654445, -73.8872197118004 40.88537224056705, -73.88720849796113 40.88531982938669, -73.88719783997334 40.88526849573004, -73.88719146138162 40.88523346686546, -73.88718669314534 40.88519829099394, -73.88718354587341 40.88516300774755, -73.88718201947931 40.885127666652984, -73.8871821186467 40.885092302833954, -73.88718383972656 40.88505696761465, -73.8871871814701 40.88502169611269, -73.8871921426027 40.884986538754, -73.88719871238821 40.884951527945425, -73.88720688954598 40.8849167177146, -73.88721665859251 40.8848821413641, -73.88722800995687 40.88484784390854, -73.88724092813902 40.88481386855567, -73.88725539645228 40.884780258512, -73.88726988872111 40.88475000550457, -73.88728560721209 40.884720112986905, -73.88730253764913 40.88469060255625, -73.88732066811397 40.884661504816975, -73.88733997601311 40.88463284856204, -73.88736044469155 40.88460465898826, -73.88738205749306 40.88457696219288, -73.88738929136224 40.884567996799994, -73.88741700098669 40.88453364054253, -73.88742040393204 40.88452940256871, -73.88741985992482 40.88452904994771, -73.88745895445484 40.88447760183728, -73.88748614315682 40.88444673624236, -73.88751842824844 40.884410726623706, -73.88755071765966 40.884372142508056)), ((-73.88625456088566 40.90391863241571, -73.88626330533754 40.90379463363211, -73.88627683112746 40.90367088178475, -73.88629411489366 40.90357390051084, -73.8863155030803 40.9034773924262, -73.88634097888327 40.90338145746572, -73.88637051719124 40.90328619555572, -73.88640407984262 40.9031917039079, -73.88642600523225 40.90314320561467, -73.88647543407805 40.90308161611724, -73.88646084094611 40.903132233265644, -73.88646071308598 40.903207078645366, -73.88646660562169 40.903259941032864, -73.88646712822332 40.90327152176721, -73.88646914756706 40.90329413669967, -73.88647216634754 40.90331668237704, -73.88647617865612 40.90333914438569, -73.88648118455541 40.90336148670625, -73.88648717339092 40.903383694019844, -73.88649403959565 40.90340225613721, -73.88650173691006 40.90342063177052, -73.8865102594499 40.903438792098406, -73.88651959892316 40.90345672810759, -73.88652973996008 40.90347440556449, -73.88654067309093 40.903491810051804, -73.88655238173587 40.903508920841915, -73.88656485881121 40.90352571631598, -73.88657808416873 40.9035421802453, -73.88659204597566 40.90355829190689, -73.88660672409767 40.903574026967625, -73.88662210549195 40.903589378210484, -73.8866381664726 40.90360431589608, -73.88665489637671 40.903618829207865, -73.88667227149516 40.90363290191348, -73.88669026575586 40.903646511475046, -73.88670886849421 40.903659647976426, -73.88672805125661 40.903672293379785, -73.88674779270283 40.90368443415661, -73.88676806675595 40.90369605047045, -73.88678885917369 40.90370714230704, -73.88681013320965 40.90371768261557, -73.88683187581908 40.90372766507963, -73.88685387472076 40.9037369931391, -73.8868762686199 40.903745757878674, -73.88689904091574 40.90375395027696, -73.88692215957677 40.90376156219809, -73.8869455996926 40.90376858551301, -73.8869693328045 40.90377500488555, -73.88699333991623 40.90378082389879, -73.88701759019695 40.903786026313725, -73.8870420527788 40.90379061750292, -73.88706670751549 40.90379457943684, -73.88709152116088 40.903797920187195, -73.88711646644298 40.903800624419006, -73.88714151961491 40.903802697511885, -73.8871666486374 40.90380413583254, -73.8871918238493 40.903804933048484, -73.88721702387747 40.903805094541816, -73.88724221668413 40.903804615778704, -73.88726737616098 40.90380349493276, -73.88729247024568 40.903801741878006, -73.88731747164624 40.903799352985935, -73.8873423589942 40.90379633093715, -73.88736709192854 40.90379268019485, -73.88739165620339 40.90378840254614, -73.88741923225544 40.903782279136216, -73.8874465305364 40.903775480986724, -73.88747352138049 40.90376800446695, -73.8875001774515 40.903759872062615, -73.88752646908223 40.90375108104357, -73.88755237726127 40.90374164399828, -73.88757786160645 40.903731577996936, -73.8876028995657 40.903720883918275, -73.88762746618431 40.90370957974805, -73.88764008814884 40.90370333547234, -73.88768605234677 40.90372575361149, -73.88767735353696 40.903747775480355, -73.88765786882145 40.90379709131753, -73.88763838288563 40.90384640985125, -73.88761890048141 40.903895728384676, -73.88759941923209 40.90394504871646, -73.88757993439937 40.903994365439125, -73.88756045190692 40.90404368486178, -73.88753993891227 40.90409387494502, -73.88751942826343 40.90414406322547, -73.88749891165237 40.90419424969505, -73.88747839975164 40.90424443976711, -73.8874578807064 40.904294625325655, -73.88743736874522 40.90434481448893, -73.88741685794301 40.904395001848286, -73.88739821838132 40.90444472637908, -73.88737957642564 40.904494446401664, -73.88736094156016 40.90454416822869, -73.88734230429161 40.904593890950395, -73.88732366580979 40.90464361276699, -73.88730502729854 40.9046933354806, -73.88728639232463 40.90474305549275, -73.88726775375457 40.90479278000033, -73.88725030920328 40.90484106939944, -73.88723286699889 40.904889359698295, -73.88721542240148 40.90493764638981, -73.88719798014485 40.904985937582964, -73.88718053905278 40.905034226973264, -73.88716309674697 40.90508251725978, -73.88714565442042 40.905130804841775, -73.88712821087555 40.905179096021456, -73.88711076849978 40.905227382696815, -73.88709332371582 40.90527567476964, -73.88707614442114 40.905326963907704, -73.8870589639055 40.90537825754389, -73.88704178455473 40.90542954847677, -73.88702460518056 40.905480837605595, -73.88700742339692 40.90553213213196, -73.8869902439666 40.905583423055674, -73.88697306451134 40.905634713075834, -73.88695588146435 40.905686005790876, -73.88693873475971 40.90573754797236, -73.88692158922147 40.90578908655002, -73.8869044436505 40.905840628726565, -73.88688729449694 40.90589216819508, -73.88687015006272 40.90594370856572, -73.8868530032297 40.90599524803049, -73.88683585755088 40.90604679109527, -73.88681870947627 40.90609833145325, -73.88680156374573 40.90614987361148, -73.88678441561639 40.90620141486383, -73.88676727102414 40.90625295431566, -73.88675110375804 40.90629999680961, -73.88673493527597 40.90634704290161, -73.88671876202808 40.90639408628482, -73.8867025935079 40.906441127869066, -73.88668642733404 40.90648817215438, -73.88667025876195 40.906535217335176, -73.88665306304146 40.90658322862383, -73.8866482628504 40.90658623782838, -73.88664228936855 40.90658753316191, -73.88663692211404 40.9065869029569, -73.88663043922915 40.906583459447376, -73.8866273494399 40.90657876489633, -73.88662876283814 40.90647312250236, -73.88662781586734 40.906433364340735, -73.88662633658063 40.90637099182232, -73.8866195753161 40.90626567097377, -73.88661742254423 40.906245351257475, -73.8864263459082 40.905341347497874, -73.88642149728194 40.9053206577252, -73.88640917725562 40.9052680474715, -73.88639686199929 40.905215435419706, -73.88638454201352 40.90516282426188, -73.8863722232325 40.90511021400387, -73.88635990447412 40.90505760194304, -73.88635032488547 40.905010624199946, -73.88634074768407 40.90496364645796, -73.8863311693125 40.90491666691261, -73.88632158975986 40.90486969186728, -73.88629224247086 40.90467734581755, -73.88627072488781 40.90448440414209, -73.88625706630143 40.90429104967233, -73.88625143938019 40.90416694579029, -73.88625060747813 40.90404277008825, -73.88625456088566 40.90391863241571)), ((-73.88786362464008 40.9015977894665, -73.88788923874277 40.90157641974386, -73.88790531833403 40.90160483211928, -73.88794266263477 40.90168704923999, -73.88797647598024 40.90177014179348, -73.88800673121537 40.901854018807626, -73.88803339167607 40.90193859740508, -73.88805642664856 40.90202378480871, -73.88807581846747 40.90210949185564, -73.88809154352835 40.90219563207833, -73.88810112913916 40.90226349012681, -73.88810791948163 40.90233154267053, -73.88811190279122 40.90239972306273, -73.88811308272744 40.9024679673729, -73.88811145346887 40.902536203556814, -73.88810701155697 40.902604365875696, -73.88809977013973 40.902672394009564, -73.88808973289201 40.90274021502226, -73.88807690941054 40.90280776318704, -73.88806343080688 40.90286965387549, -73.8880472942996 40.902931175487495, -73.88802851660942 40.902992261402325, -73.88800712393542 40.903052854913696, -73.8879831306388 40.90311288129395, -73.88795656648414 40.903172281138495, -73.88792746124395 40.903230990540074, -73.88789584112155 40.90328895099085, -73.88788012793309 40.90331537033127, -73.8878632796109 40.90334138515023, -73.88784531757176 40.90336696305062, -73.88782625252503 40.903392086933145, -73.88781268506283 40.903408678669024, -73.88780611302249 40.90341671630325, -73.88778491690235 40.90344082956613, -73.88776268675493 40.90346440243007, -73.887739447549 40.90348740790429, -73.88771522424416 40.90350982440084, -73.88769004656123 40.90353162223206, -73.88766393589515 40.903552782508, -73.88763692433753 40.90357327734427, -73.88760903684101 40.903593089655324, -73.88758030667832 40.90361219515991, -73.88755076948839 40.903630574081454, -73.88753394503853 40.90363955262455, -73.8875167225568 40.903648086838956, -73.88749912816758 40.903656168645604, -73.88748117375788 40.90366378725015, -73.88746289020104 40.90367093367762, -73.8874442941207 40.90367760344162, -73.88742540809164 40.90368378215643, -73.88740624873914 40.90368946443508, -73.88738684811896 40.903694644005306, -73.88736722166803 40.90369931637973, -73.88734739787861 40.90370347708358, -73.88732739457062 40.903707116228794, -73.88730723903873 40.90371023564291, -73.88728695978142 40.90371282724934, -73.88726657104577 40.903714888360426, -73.88724610012973 40.90371641900285, -73.88722557315188 40.90371741469958, -73.8872050126628 40.903717875472665, -73.88718444477499 40.90371780044711, -73.88716389322583 40.90371718964608, -73.88714337819057 40.903716043989824, -73.8871229293408 40.90371436350737, -73.88710256802489 40.90371215722445, -73.88708232155592 40.903709416163, -73.8870622029683 40.90370615294262, -73.88704055992781 40.90370181485068, -73.88701913147385 40.9036969168639, -73.88699793183991 40.90369146439915, -73.88697699424873 40.90368546289206, -73.88695633767655 40.90367892046564, -73.88693598702899 40.90367184795022, -73.88691596960386 40.903664245372724, -73.88689630435574 40.90365613346304, -73.88687701739548 40.90364751224691, -73.88685813362244 40.90363839615661, -73.88683967557462 40.9036287924184, -73.88682165627989 40.90361871725384, -73.88680410183515 40.90360817879314, -73.88678703476447 40.90359719236683, -73.8867704704829 40.90358576609455, -73.88675443982247 40.90357391531503, -73.8867389486866 40.903561658043884, -73.88672402079513 40.90354900420997, -73.88670967036109 40.90353597093665, -73.88669591872734 40.90352256995133, -73.88668278366578 40.90350881928134, -73.88667026989584 40.90349473514026, -73.88665840112337 40.90348033556122, -73.88664719512465 40.90346563587008, -73.8866366518656 40.903450655877634, -73.88662679743629 40.90343540731601, -73.88661762823594 40.90341991359436, -73.88660917153686 40.90340418914742, -73.88660142848858 40.90338825558808, -73.88659440855311 40.9033721318359, -73.88658811882637 40.90335583230569, -73.8865825699556 40.90333937681881, -73.88657890991982 40.90331702141702, -73.88657626358645 40.90329458326596, -73.88657463328364 40.90327208848195, -73.88657401658128 40.903249569480096, -73.88657441582747 40.90322704067044, -73.88657583452026 40.903204538075784, -73.88657826430921 40.90318208600091, -73.8865817039604 40.90315971145912, -73.88658615224297 40.9031374396626, -73.88659160437021 40.90311529311865, -73.88659805316478 40.903093304237466, -73.88660548672064 40.90307149461882, -73.88661390261703 40.903049891274684, -73.88662328656667 40.90302852030483, -73.88663363141389 40.90300740151266, -73.88664492286216 40.90298656640071, -73.88665714900716 40.9029660356683, -73.88669561283783 40.90289304148862, -73.88673725081911 40.90282105534905, -73.8867820094051 40.902750153734864, -73.88682984334912 40.902680418542154, -73.8868807026672 40.902611926259354, -73.88693452906678 40.90254475426693, -73.88697139382003 40.90250099983546, -73.8870082561419 40.90245725079239, -73.88704511961123 40.902413496335484, -73.88708198540414 40.902369742769245, -73.88711884758189 40.90232599278934, -73.88715208934812 40.90228886681981, -73.88718533107715 40.90225174084048, -73.8872185739528 40.90221461665347, -73.88725181442075 40.902177490653315, -73.88728505722365 40.90214036554612, -73.88732730930812 40.902097521243924, -73.8873695601513 40.902054676924756, -73.88741181093997 40.902011832589764, -73.88745406404782 40.90196898824129, -73.88749279028553 40.901931521732095, -73.88753151528968 40.9018940570094, -73.88757024262382 40.90185659227581, -73.88760896872898 40.9018191266273, -73.88764394308231 40.901785290767144, -73.88764769360368 40.90178166096437, -73.88767138354282 40.901761280850955, -73.88769524700297 40.901740746018206, -73.88774280034369 40.90169983105209, -73.88779035599188 40.90165892057086, -73.88783902310269 40.901618316413604, -73.88786362464008 40.9015977894665)), ((-73.88312193990204 40.89368764751171, -73.88232596394154 40.894532207260085, -73.88160168672853 40.89528291616882, -73.88054115229421 40.89640690220125, -73.88053557086948 40.89639650933146, -73.88052292358638 40.89637036416922, -73.88052208502076 40.896371439380836, -73.88048175409838 40.896299760451484, -73.88042739269216 40.89616677996673, -73.88037756698483 40.896042435301794, -73.88034817214677 40.895942280808754, -73.88032558036508 40.89585421606746, -73.88031440786902 40.895741995941826, -73.88031006632747 40.895626330435555, -73.88032175164308 40.89545371325291, -73.88033082921172 40.89522206115567, -73.88047762940687 40.89519678984472, -73.88047755624261 40.89519920126823, -73.88048354393568 40.89519808006017, -73.88055227633798 40.89518335172638, -73.88062032945864 40.89516689912058, -73.88068762018901 40.89514874196873, -73.88075407730068 40.89512889280541, -73.88081963427327 40.895107385781756, -73.88088420801688 40.89508423071894, -73.88100609607113 40.89503677208723, -73.8811260794296 40.89498659550192, -73.88124405830378 40.89493375489526, -73.8813599186966 40.894878287076175, -73.88154149716681 40.894785746984624, -73.88171922943783 40.89468901000633, -73.8818929491993 40.89458816513672, -73.881941352583 40.89455886333269, -73.881990835023 40.894527995767014, -73.88204031504533 40.89449712727705, -73.88208979976513 40.894466260571505, -73.8821432345908 40.89443087924256, -73.88219667054146 40.89439550059125, -73.88225010406344 40.8943601210121, -73.88230353990035 40.894324742310864, -73.88235697449689 40.89428936178252, -73.88239956087689 40.89425977560687, -73.88244214959069 40.89423019031831, -73.88248473707995 40.89420060501262, -73.88249600296395 40.89419277865671, -73.88251397260343 40.894181462538256, -73.88264226707298 40.89408358601867, -73.88273728485548 40.89402118349433, -73.88284663856211 40.89392986374785, -73.88296732808695 40.89381569746937, -73.88312193990204 40.89368764751171)), ((-73.89015695038104 40.90020465361856, -73.89018515473691 40.90019286519736, -73.89002084779165 40.90033452514159, -73.88994946694949 40.900379284121705, -73.88984153320345 40.90045185475665, -73.88975905600401 40.9005128612708, -73.88967919936019 40.90057584499133, -73.88960205000798 40.90064074567414, -73.88952769469803 40.900707494970824, -73.88945620713783 40.90077601821702, -73.88938765152068 40.900846253346174, -73.88932169487833 40.900918602560544, -73.88925884604753 40.900992534166555, -73.88918360293101 40.90108736218017, -73.88911206206011 40.90118382447586, -73.88904429715205 40.90128184639106, -73.88898035584575 40.90138133522831, -73.88892030356367 40.901482210013214, -73.88889257409356 40.9015303556207, -73.88886449754365 40.9015780857639, -73.88885065326073 40.90160161739023, -73.88883641620478 40.90162581679576, -73.88880834076409 40.9016735451246, -73.88878025934453 40.90172127614195, -73.88876494468022 40.90175040014712, -73.88875546155799 40.901768434906856, -73.88873066255546 40.901815590063, -73.88870643499267 40.90186166698452, -73.88868106799775 40.901909904863835, -73.88865627007497 40.901957060904294, -73.88863147329627 40.90200422144261, -73.88860680864005 40.90204971440652, -73.88858214868674 40.902095213672744, -73.88855748514223 40.902140711128915, -73.88853281919484 40.90218620587565, -73.88850816033163 40.902231702424565, -73.88848349549896 40.90227719986259, -73.88845665834565 40.90232789008748, -73.88842981521873 40.90237857939943, -73.8884029779805 40.90242927141184, -73.88837613833216 40.90247996071376, -73.88834931237565 40.9025302466055, -73.88834468073266 40.90253417093709, -73.88833891937426 40.9025351856132, -73.88833371466167 40.90253406578032, -73.88832973620615 40.902530667108294, -73.88832132656351 40.902476169797914, -73.8883141512707 40.90242376640489, -73.88830697836435 40.90237136211272, -73.88830004197293 40.90231876354383, -73.88829145611845 40.902261100857835, -73.88828287145814 40.90220344267415, -73.88826136486195 40.90208854083018, -73.88823554459374 40.90197415438298, -73.88821529996201 40.90189863280915, -73.88819192961365 40.901823640389594, -73.88816544057056 40.90174924196405, -73.88815059536986 40.90171221499129, -73.88813587662379 40.9016755150145, -73.88810276832686 40.90160144603906, -73.88810123599961 40.9015937868382, -73.88810345667133 40.90158593947179, -73.88810668584975 40.90158037220771, -73.88810294254709 40.901568456977685, -73.88807955434997 40.90152605663044, -73.88806748105462 40.90150416586629, -73.88805408376189 40.90148129228943, -73.88803679481742 40.901452859851105, -73.88810400205162 40.901398752792296, -73.8881270307254 40.90138115714028, -73.88817169650872 40.90134702524466, -73.88821636461215 40.9013128978362, -73.88826103148142 40.901278771309585, -73.8883056994916 40.90124464476661, -73.88835482543652 40.90120959681975, -73.8884039572636 40.90117454885742, -73.88845308191809 40.901139500867124, -73.88850221245173 40.90110445466235, -73.88855134412343 40.901069406636665, -73.88860046981232 40.901034356783114, -73.88865479189906 40.90100103994923, -73.88870911630947 40.900967720390376, -73.88873247981122 40.900953393696426, -73.88876487578054 40.90093352421652, -73.88881776377102 40.90090108659713, -73.88887208682824 40.9008677687608, -73.8889085296385 40.900845793301464, -73.88912358642493 40.9007203626996, -73.88934303558707 40.900599391500535, -73.88951975923952 40.90050650112287, -73.88969709839571 40.90041429182759, -73.88984758452897 40.900340918181826, -73.89000091167243 40.90027101841265, -73.89015695038104 40.90020465361856)), ((-73.88703644960425 40.88449933387054, -73.8870416773254 40.884496542975185, -73.88704882027065 40.88449921450617, -73.88704816797359 40.88455003014213, -73.8870461140739 40.88459476161733, -73.8870439985973 40.88464081674753, -73.88704252895452 40.88469223580887, -73.88704105574696 40.88474365666724, -73.88703958965613 40.88479507753205, -73.88703815556637 40.88482347388053, -73.88703682938413 40.88484981272216, -73.8870356326825 40.884880251606724, -73.88703572925833 40.88491069986124, -73.88703711204192 40.884941129563764, -73.8870397751498 40.88497151279325, -73.88704372220144 40.88500181533482, -73.88704895088675 40.88503200116649, -73.88705545412053 40.88506205137096, -73.88706321773974 40.88509192271079, -73.8870722477215 40.88512158997803, -73.88708755194865 40.88516735057819, -73.88709647987059 40.88519564450094, -73.88710426010779 40.885224134506835, -73.88711089033627 40.885252790877814, -73.88712131532755 40.88530224589955, -73.88712878765953 40.88533739109946, -73.88713168691048 40.88535102009966, -73.8871420549429 40.88539979789685, -73.88715242418168 40.8854485729924, -73.88716207387199 40.885494166864135, -73.88717172476203 40.885539760735796, -73.8871813744788 40.88558535460512, -73.8871910277729 40.885630945775304, -73.88720067632507 40.885676542342544, -73.88721011697879 40.885722298091544, -73.88721955645292 40.88576805744021, -73.88722899831457 40.88581381588953, -73.88723843662657 40.88585957613517, -73.8872478761412 40.88590533457985, -73.88725731804031 40.88595109392619, -73.88726695618587 40.8859972838956, -73.88727659314915 40.8860434792656, -73.88728623368999 40.886089671936396, -73.88729587186963 40.88613586550417, -73.88730550531803 40.88618205816559, -73.88731514470948 40.88622825263264, -73.88732608102634 40.886280729258225, -73.8873370149828 40.886333208581426, -73.88734794896111 40.886385685201645, -73.88735888058052 40.88643816361897, -73.88736406043064 40.88646300859484, -73.88736981933648 40.88649064204168, -73.88737957613031 40.886536927564265, -73.88738933649735 40.886583213089146, -73.88739909450793 40.88662949680949, -73.88740885371556 40.88667578233074, -73.88741861175488 40.886722065148156, -73.88742836742556 40.88676835336498, -73.88743843619068 40.886815440617376, -73.88744850023305 40.88686252246095, -73.88745856546556 40.88690961060775, -73.8874686283423 40.88695669695001, -73.88747869479593 40.88700378149351, -73.88748875770425 40.8870508660322, -73.88749907209414 40.88709940059792, -73.88750366781427 40.887121006845874, -73.88750939006633 40.88714793066323, -73.88751970686405 40.887196462527065, -73.8875238411197 40.88721591165916, -73.8875300213022 40.88724499528766, -73.88754033812998 40.88729352714873, -73.88755112760826 40.88734182984491, -73.88761838999348 40.88767434771093, -73.88766982794152 40.888008214354386, -73.88770865290685 40.88867660560495, -73.88768903524651 40.889048141501746, -73.8876864908107 40.88907506806257, -73.88768377313798 40.88910199085272, -73.88768067999916 40.88913061609649, -73.88766008082091 40.88914540814579, -73.88763995207817 40.889160572550054, -73.88760877661471 40.88918532987923, -73.88759392650958 40.88919795734285, -73.88757872703924 40.88921088252517, -73.88754984730578 40.88923720081547, -73.88752216714494 40.88926424605915, -73.88749572218835 40.88929199848111, -73.88747053742811 40.88932041488311, -73.88744664138436 40.88934947098077, -73.88742407447674 40.88937912269038, -73.88740284979394 40.88940934931436, -73.88738850308671 40.889431562916, -73.88736541719354 40.88946984976851, -73.88734748848924 40.88950306290818, -73.88733187900445 40.88953519952643, -73.88731772836904 40.88956771577066, -73.88730504138161 40.88960058193008, -73.88729179218001 40.88963610397261, -73.88728555849822 40.88963780340619, -73.88728043658814 40.88963464310168, -73.88731536188989 40.889371958603654, -73.88734292392988 40.88911151270854, -73.88736214247301 40.88885062822055, -73.88737122265856 40.88865564490997, -73.88737619977316 40.8884605738431, -73.88737706545085 40.88826547174285, -73.88737305147909 40.887995018486826, -73.88736381180564 40.88772464116155, -73.88734935589511 40.88745439380412, -73.8873296765925 40.887184334937174, -73.88732422524157 40.88712083181618, -73.88730298565686 40.88690687261168, -73.88727735553667 40.886693191859784, -73.88724733721664 40.88647983638506, -73.88721293300776 40.88626686741946, -73.88720399986 40.88621496544994, -73.88719501330648 40.886163078735336, -73.8871860279504 40.88611119382164, -73.88717703666963 40.88605931250289, -73.88717208286243 40.88603067668903, -73.88716805728343 40.88600742218968, -73.88715906485336 40.88595553546444, -73.88715007954727 40.8859036541479, -73.88714109426444 40.88585176742728, -73.88713210899863 40.88579987890447, -73.8871231249288 40.88574799308304, -73.8871141396834 40.88569610906028, -73.88710905791721 40.88567158834067, -73.887103292408 40.88564375676288, -73.8870924475074 40.88559141347116, -73.88708160382113 40.88553906387568, -73.88707076252189 40.885486716082, -73.88705992124129 40.885434367386274, -73.88704907997314 40.88538202139048, -73.88703859203244 40.88532983512507, -73.88702466196192 40.88525185374807, -73.88701389565644 40.885173585508504, -73.8870062977225 40.88509510605276, -73.88700187872026 40.8850164784258, -73.88700063374411 40.884937789970465, -73.88700257334187 40.88485911093512, -73.88700769145042 40.884780511551654, -73.88701175458037 40.88473482032565, -73.88701645620806 40.88468833459423, -73.88702115901413 40.88464184976387, -73.88702585943604 40.884595367632095, -73.88703052485835 40.884549229451395, -73.88703644960425 40.88449933387054)), ((-73.88048440800253 40.896972726192644, -73.88051380034213 40.896932703952295, -73.88054893556081 40.89700011729164, -73.88055917967405 40.8970197593613, -73.88056570908323 40.89703228105512, -73.88057298829516 40.89704624069802, -73.88059912134474 40.89709635539844, -73.88062461223491 40.897145248370975, -73.88065011147134 40.89719414044554, -73.88067560480359 40.89724303701033, -73.88070110411503 40.897291929072715, -73.88072697884579 40.89734127356025, -73.88074993081369 40.8973872445078, -73.88077081569523 40.89743378242185, -73.88078960629028 40.8974808323459, -73.88080627778166 40.897528333922835, -73.88082081956534 40.89757624211837, -73.88083320564012 40.89762449477303, -73.88084343134511 40.89767304145552, -73.88085147542414 40.897721820911514, -73.8808573379661 40.89777078091349, -73.8808610000834 40.89781986291076, -73.88086247255193 40.89786901108457, -73.88086174122266 40.89791817139135, -73.88086047635672 40.89794057054317, -73.88085826454588 40.8979629272953, -73.88085682947965 40.89797302294904, -73.88085509870919 40.89798521912829, -73.88085098245428 40.89800741903121, -73.88084591937276 40.89802950899799, -73.88083992374494 40.89805146653118, -73.88083299563293 40.898073256511665, -73.88082513386037 40.89809487263484, -73.8808163657813 40.898116281610704, -73.88080668193805 40.898137462718246, -73.88079610135335 40.89815839616612, -73.88078893944392 40.89816892804306, -73.88078130199213 40.89817926762525, -73.88077319615378 40.89818939510931, -73.88076462906209 40.89819930329861, -73.88076030929084 40.898203942636215, -73.88075561615918 40.89820898410462, -73.88074616104078 40.89821841772034, -73.88073628270597 40.89822759786181, -73.88072598830259 40.89823650922819, -73.8807189371116 40.89824220561258, -73.88071529445159 40.898245148234544, -73.88070420830887 40.898253495077434, -73.88069275005238 40.89826154797673, -73.88068092564168 40.89826929253072, -73.88066875764122 40.89827671975771, -73.88065625437272 40.89828382156185, -73.88064343957934 40.898290593465184, -73.88063031447543 40.89829702016065, -73.8806169039875 40.898303098972384, -73.88060322593637 40.89830881911296, -73.88058929457442 40.898314174293645, -73.88057512652277 40.89831916092957, -73.88056073723034 40.898323767330304, -73.88054614212015 40.898327996213254, -73.88053136851352 40.89833183319885, -73.88051642826994 40.898335282801646, -73.88050133445853 40.89833833693086, -73.88048611082742 40.89834098840705, -73.88047077399608 40.89834323454591, -73.88045534769336 40.89834507897396, -73.8804398449882 40.89834651360032, -73.88042428486409 40.89834754114606, -73.88040868632211 40.89834815442702, -73.88039306952759 40.898348358866905, -73.88037745348007 40.89834814818207, -73.8803618595299 40.898347528697975, -73.88034629835819 40.898346500425745, -73.88033079608815 40.89834505528806, -73.88031536811857 40.89834320950969, -73.88030003582587 40.89834095500845, -73.88028481106635 40.89833829810001, -73.8802697246924 40.89833524061747, -73.88025478144324 40.89833178706812, -73.88024000860607 40.89832794198284, -73.8802254215959 40.89832371258153, -73.88021103822064 40.898319095280804, -73.88020517940545 40.898317030693434, -73.88019702449986 40.89831415959027, -73.88018324760752 40.898308855845656, -73.88016971701991 40.89830319396217, -73.88015645764088 40.898297183871044, -73.88014347183118 40.89829083277879, -73.88013078213251 40.89828414431073, -73.88011840870509 40.89827712659234, -73.8801133646312 40.89827405700504, -73.88010635627157 40.89826979313589, -73.88009464856047 40.89826214756798, -73.88008328792581 40.898254200697075, -73.88007230045481 40.89824596425666, -73.88006168851624 40.8982374409507, -73.88005146988021 40.898228647907, -73.88004166352012 40.89821959324976, -73.88003226467255 40.898210285978976, -73.88002329822832 40.89820074322978, -73.88001477011281 40.89819096951089, -73.88000668861042 40.89818097743778, -73.87999906793917 40.898170779632125, -73.87999191281828 40.89816039140715, -73.87998523272522 40.89814982177767, -73.87997903831616 40.89813908426206, -73.87997333194329 40.898128190569174, -73.87996812307425 40.89811715511671, -73.87996342356168 40.89810598602135, -73.87995922861765 40.89809470579035, -73.87995875537034 40.89809324561261, -73.88001121819804 40.89774459015248, -73.88001261719161 40.89774139758721, -73.88002645617007 40.89771288911608, -73.88004148599421 40.897684727666686, -73.8800576852398 40.89765694743476, -73.88008339006872 40.89761280986391, -73.88010909485543 40.89756867678938, -73.88013479842287 40.897524542807034, -73.8801605031494 40.8974804052179, -73.8801862066486 40.89743627122339, -73.88021191605213 40.89739213452745, -73.88023761948308 40.89734800052078, -73.88026570376023 40.89730435884114, -73.88029379038052 40.89726071355481, -73.88032187814416 40.89721707186448, -73.88034995875216 40.89717342925909, -73.88037804406693 40.89712978845238, -73.88040613290661 40.89708614674173, -73.88043421696902 40.89704250141703, -73.88048440800253 40.896972726192644)), ((-73.87959769807107 40.89939361957362, -73.87961364146018 40.89929776071862, -73.87967615355133 40.898921905124375, -73.87967927667314 40.89890312967483, -73.87970129929066 40.898770712959326, -73.87974666761797 40.89849793770949, -73.87975132165066 40.89846995549555, -73.87977226296262 40.89834403912876, -73.87978601501412 40.89826135834314, -73.87979757382996 40.89819185476458, -73.87980781283649 40.89813029568658, -73.8798160541888 40.898080741590086, -73.8798222690883 40.89804337254277, -73.87984198745413 40.89801151591007, -73.87985938479204 40.898013000906126, -73.87987387629498 40.89801815055001, -73.87987965866434 40.89802769179913, -73.87987961359472 40.89805263067557, -73.87988053188023 40.89807903834434, -73.87988338985964 40.898102513351645, -73.87988913645006 40.89813185892228, -73.87989682936542 40.898154605064285, -73.87990686451771 40.89817626135434, -73.879918982163 40.89819937139088, -73.87993344337355 40.898220658581046, -73.87994884303897 40.89824143887189, -73.87995224017017 40.898245671980945, -73.8799615545485 40.89825640643856, -73.87997134764181 40.89826689015789, -73.87998161590784 40.898277113229824, -73.87999233800801 40.89828706302527, -73.88000303882636 40.89829631312102, -73.88001511295978 40.8983060851232, -73.88002714211555 40.898315135789154, -73.8800395694196 40.89832386269311, -73.88005238775793 40.89833226222559, -73.88006558291556 40.89834031996393, -73.8800791371026 40.89834802958615, -73.88009303610555 40.898355375769114, -73.88010726213294 40.898362353091336, -73.88011562779043 40.89836615462031, -73.88012178790241 40.898368954320496, -73.88013661580189 40.89837517135457, -73.88015171380525 40.8983809951553, -73.8801684443923 40.89838703316312, -73.88018543805707 40.898392625701625, -73.88020268056151 40.898397770954986, -73.88021141081113 40.89840011677169, -73.88022014224639 40.89840246348941, -73.88023780294812 40.89840669698047, -73.88025565318691 40.89841046331396, -73.88027366210697 40.89841376245768, -73.88029180835626 40.89841658898661, -73.8803100705827 40.8984189374756, -73.88032843098622 40.89842080700563, -73.88034686583315 40.89842219665157, -73.8803653525798 40.89842310368865, -73.88038386630721 40.89842352628996, -73.8804023927773 40.89842346263981, -73.88042090587152 40.8984229181141, -73.88043937711873 40.898421886379865, -73.88045779582988 40.898420371928516, -73.88047613470438 40.89841837743329, -73.88049437000042 40.89841590647158, -73.88051248035947 40.89841295722033, -73.88053045152715 40.89840953686875, -73.88054825026616 40.898405649884914, -73.88056586945075 40.898401298963, -73.88058327347008 40.8983964885687, -73.88060045399887 40.89839122859878, -73.88061737780787 40.89838551901901, -73.88063404249901 40.89837937333426, -73.88065041008807 40.898372796007855, -73.88066646988281 40.89836579333219, -73.88068220288054 40.898358373392135, -73.88069759481904 40.898350547879396, -73.8807126160263 40.89834231856443, -73.8807272605232 40.89833371065478, -73.88074149864744 40.89832472051796, -73.88075532206742 40.89831536165278, -73.88076871058107 40.89830564934682, -73.88078165586816 40.898295590795485, -73.88079412704425 40.89828520217572, -73.88080612528157 40.89827449159329, -73.88081762800297 40.89826347523374, -73.88082862688516 40.89825216209348, -73.88083909934784 40.89824057015903, -73.88084904418506 40.8982287102351, -73.88085844119809 40.898216595808236, -73.88086728442595 40.898204242180746, -73.88087556315752 40.89819166645077, -73.88088325956763 40.898178882107395, -73.880890373626 40.89816590625991, -73.88089689938451 40.898152747006584, -73.88090753166287 40.8981248015288, -73.88091706898082 40.89809662529684, -73.8809247245341 40.89807086492432, -73.88094489164004 40.89805652209315, -73.88093436213116 40.89810329861594, -73.88092088350666 40.89815274653486, -73.88090515548622 40.89820180672383, -73.8808871852872 40.898250422458815, -73.88086701334964 40.89829854065204, -73.88084464454053 40.89834609196998, -73.88082011810229 40.898393029626746, -73.88080154701525 40.89842525680711, -73.88079345905618 40.89843929601572, -73.8807647007437 40.89848482633505, -73.88073387646982 40.89852957649391, -73.88070102432212 40.898573482595545, -73.88066618234498 40.89861650505621, -73.88062939812096 40.89865857998903, -73.88061251757587 40.898676503787755, -73.8805907073362 40.89869965970335, -73.88056724508519 40.89872283371629, -73.88055016347043 40.89873970102931, -73.88050781528277 40.898778646384535, -73.88046371032178 40.89881645169252, -73.88041789731486 40.89885307738038, -73.88039388433029 40.89887095503755, -73.88037545895754 40.8988846728382, -73.88035886030909 40.89889689952567, -73.88033196829419 40.89891671112834, -73.88029530576324 40.89894372187326, -73.88028848114917 40.89894874940562, -73.88024498327165 40.89898079305812, -73.88019738903893 40.89901657395637, -73.88014979238633 40.899052352130816, -73.88010219805437 40.899088131188364, -73.88005460367117 40.899123910226095, -73.88000593871328 40.89915972415057, -73.8799320163663 40.899215594393546, -73.8798606159819 40.89927331770881, -73.87979181955002 40.8993328374559, -73.87976905602005 40.899353922908, -73.87976935271325 40.89935195385745, -73.87974866094515 40.899370592145296, -73.87970799150588 40.899408691596136, -73.87966925673085 40.899445326159764, -73.87963729535673 40.89947903399393, -73.87960630662216 40.89950907516029, -73.87958111479492 40.899541322248346, -73.8795711696558 40.8995531154244, -73.87959769807107 40.89939361957362)), ((-73.895518274104 40.88588024057556, -73.8955803277002 40.885879817671714, -73.89564237189784 40.885880846310265, -73.89570434737895 40.885883323736174, -73.89573855242935 40.88588945273348, -73.89580403403836 40.885901815211916, -73.89630632314021 40.88599506809027, -73.89630626612652 40.885995106759964, -73.89617419145657 40.88608239375183, -73.8960400748659 40.886167877779386, -73.89580611961344 40.88632068018247, -73.89580012028185 40.88632460358903, -73.89578684123886 40.88633327589169, -73.89552887049206 40.886494391846476, -73.89551223561824 40.8865047233778, -73.89549513749883 40.886514612348506, -73.89547759750728 40.886524048872346, -73.8954596441447 40.88653301766662, -73.89544128573539 40.886541507032426, -73.89542255669764 40.88654951159784, -73.89540346535593 40.886557019663854, -73.89538404969673 40.8865640204589, -73.89536432752692 40.88657050859605, -73.89534431903787 40.88657647148661, -73.89532404915151 40.886581906451624, -73.8953035451699 40.886586806311854, -73.89528282964623 40.88659116568464, -73.89526192750957 40.88659497738863, -73.89524086487418 40.886598235144014, -73.89522762627202 40.886599988081166, -73.89521431582263 40.88660140326924, -73.8952009501491 40.886602473519275, -73.89518754942 40.88660320065063, -73.8951808807733 40.886603390000396, -73.8951741219412 40.886603584670816, -73.89516238108253 40.88660362083267, -73.89514471774348 40.8866031995691, -73.89513383800636 40.88660267730824, -73.89512046490283 40.886601687229344, -73.89510714217563 40.88660035410933, -73.89509388405487 40.88659868336408, -73.89508071309056 40.886596671412235, -73.89506763757738 40.88659432546518, -73.89505466582258 40.88659164463, -73.8950418310381 40.886588636140885, -73.8950291332283 40.886585297296385, -73.89501658661482 40.88658163891537, -73.89500421611787 40.88657765921952, -73.89499203003479 40.88657336361939, -73.89498003784949 40.88656875752656, -73.89496825615801 40.88656385086156, -73.8949567027599 40.886558642740134, -73.89494538594677 40.88655314217483, -73.89493432231605 40.88654735818565, -73.8949235189898 40.88654128897818, -73.89491299374194 40.88653494987693, -73.89490275486831 40.886528347192915, -73.89489281660882 40.88652148003876, -73.89488238736016 40.88651371375114, -73.89487231924646 40.88650567854604, -73.89486262055777 40.886497384336415, -73.89485330669628 40.88648884554426, -73.89484437884278 40.88648006577262, -73.89483586426755 40.88647105765327, -73.89482775465055 40.88646183018361, -73.89482007487747 40.886452403197055, -73.8948128225781 40.886442774890526, -73.89480601433242 40.88643296508999, -73.89479965131395 40.886422981900985, -73.89479374773678 40.886412840644724, -73.8947905737722 40.88640683150706, -73.89478831070564 40.88640255033267, -73.89478333901528 40.886392122670124, -73.89477884094711 40.88638157297291, -73.89477482834906 40.8863709120578, -73.89477130001872 40.88636014982903, -73.89476826304656 40.886349304302854, -73.89476565624018 40.886338054850334, -73.89476354075164 40.8863267473141, -73.89476192012461 40.88631539160272, -73.89476079314957 40.88630400212293, -73.89476016099414 40.88629259058211, -73.8947600319454 40.88628116869409, -73.89476039767162 40.88626975266013, -73.89476126172363 40.88625834788633, -73.89476262051298 40.88624697237914, -73.89476447521045 40.886235636044994, -73.89476682223035 40.88622435508929, -73.8947696674895 40.8862131394228, -73.89477298605057 40.88620200162956, -73.89477679807437 40.886190948031306, -73.89478108810302 40.8861799993251, -73.89478585136871 40.88616916901376, -73.89479108549399 40.886158459796626, -73.8947967833367 40.886147886074866, -73.8948029603357 40.88613743885763, -73.89480961167637 40.88612716136381, -73.89481673022075 40.886117065293085, -73.89482431001335 40.88610716504781, -73.89483233324044 40.886097470516965, -73.89483637578324 40.88609294745467, -73.89484080344288 40.88608799341002, -73.89484969925175 40.88607874091132, -73.89485901469867 40.886069735527485, -73.89486873435165 40.88606098174677, -73.8948788522751 40.88605248136467, -73.89488935181345 40.88604426228095, -73.89490022347883 40.88603632178546, -73.89491145538031 40.88602867607601, -73.89492321024143 40.88602121814276, -73.89493492629424 40.88601428965898, -73.8949415196291 40.886010663998384, -73.89494714510174 40.88600757054454, -73.89495966239492 40.886001178577004, -73.89498865901079 40.88598750405948, -73.89501825125984 40.88597457567918, -73.89504839639224 40.88596241590904, -73.89507906591083 40.88595103823, -73.8951102265766 40.88594045341721, -73.89514183921526 40.8859306740416, -73.89516893027755 40.88592297067457, -73.89519632404621 40.88591592583171, -73.89522399560207 40.88590954129111, -73.89525192357002 40.88590382873956, -73.8952593675665 40.88590249376994, -73.89528007591612 40.885898787247235, -73.89530842059642 40.88589442218788, -73.8953369350579 40.88589073984434, -73.89536559438015 40.88588774289528, -73.89539435465274 40.88588543760427, -73.89545625974985 40.885882116866895, -73.895518274104 40.88588024057556)), ((-73.8874994645472 40.89000935808862, -73.88742249813517 40.890270704916645, -73.8874127428792 40.8903016387987, -73.88740549413896 40.89032462203344, -73.88731853940635 40.890572603028154, -73.88722068777838 40.89081823113692, -73.88711206538018 40.89106123901154, -73.88699278055128 40.89130135478141, -73.88696710997526 40.891350418725864, -73.88694117698151 40.89139956255041, -73.88691524513136 40.89144870907131, -73.88688931799402 40.89149785288911, -73.8868633884374 40.89154700120073, -73.88683745291394 40.891596146798776, -73.88681152447337 40.89164529149709, -73.88678559361665 40.89169443888823, -73.88675990542194 40.89174252123669, -73.88673421600647 40.89179060177687, -73.88670852654924 40.89183868501228, -73.88668283942965 40.891886767343465, -73.88665714870689 40.89193485326688, -73.88663145913667 40.891982937384384, -73.88660576953386 40.89203101879428, -73.88658008107592 40.89207910290064, -73.88655439139724 40.89212718519875, -73.88653980008813 40.89215384594242, -73.88652889885375 40.892173765674535, -73.88650340270536 40.892220351543685, -73.8864779124575 40.89226693561172, -73.88645241862328 40.89231351426724, -73.88642692711737 40.89236009832202, -73.88640143675771 40.89240668507335, -73.88637594043371 40.89245326911139, -73.88635045120007 40.89249984954842, -73.88633526533533 40.89252782979097, -73.88632493627046 40.892546863087695, -73.8862994284277 40.89259387482699, -73.88627391579922 40.892640888356524, -73.88624840550791 40.89268790188231, -73.88622289399235 40.8927349163014, -73.88619738481864 40.89278192801531, -73.88617187323091 40.8928289424223, -73.88614636161171 40.89287595412177, -73.8861208487682 40.892922966714494, -73.88609533706912 40.892969982904305, -73.88606759295746 40.89302062494061, -73.88603985355938 40.89307126157154, -73.88601210580632 40.89312190178908, -73.8859843603827 40.8931725429023, -73.88595661966964 40.89322318041112, -73.88592887179277 40.893273818806236, -73.88590112861877 40.89332445809937, -73.88587338540093 40.89337509828587, -73.88586718109308 40.89338641845701, -73.88584563739421 40.89342573846053, -73.88581992382932 40.893473297378456, -73.8857928447977 40.89352337539789, -73.88576644904 40.89357219070577, -73.8857400508656 40.89362100870627, -73.88571365502577 40.8936698267026, -73.88569254118885 40.89370887245319, -73.88568725795272 40.89371864919369, -73.88566085847845 40.89376746537259, -73.8856344625238 40.89381628244903, -73.88560806533913 40.89386510221923, -73.88559613576115 40.8938871648939, -73.88558166574691 40.893913919279136, -73.88555557045285 40.8939617280908, -73.88554515543817 40.89398079814776, -73.88552947631561 40.89400953239486, -73.88550337620285 40.894057339388155, -73.88547728080698 40.894105141877404, -73.88545118298785 40.89415295156186, -73.88542508632554 40.89420075673872, -73.88539899199601 40.8942485637126, -73.88537289763045 40.894296369779674, -73.88534680085715 40.8943441740371, -73.88532070523296 40.894391978289356, -73.88529460362855 40.89443978793231, -73.88526850792775 40.894487593072384, -73.885242413373 40.894535400008316, -73.88521772641697 40.89458238529407, -73.88509100904703 40.894836355432595, -73.88497343454708 40.89509284418348, -73.88486508640877 40.895351660754685, -73.8848423129871 40.89541168148282, -73.88479774243028 40.895529124197694, -73.88478320663408 40.89556742172734, -73.88476605167119 40.8956126242611, -73.88470532514441 40.89579160706226, -73.884652067425 40.89597195431975, -73.88460632397029 40.896153490494555, -73.88456814501268 40.8963360247428, -73.88454957538443 40.89644736193691, -73.88453756058253 40.8965193833084, -73.88451461140598 40.896703384339936, -73.88450353617732 40.896837685075795, -73.88449779133069 40.896972180242344, -73.88449738304942 40.89710674467918, -73.88450231632423 40.897241256825765, -73.88451258189696 40.897375599609184, -73.88452817290795 40.89750964155037, -73.8845354645998 40.89755654878865, -73.88447582009505 40.89757317419863, -73.88446872159342 40.89752779797401, -73.88445213358439 40.89738298252839, -73.88444154037288 40.8972378462014, -73.88443929417157 40.89716669845266, -73.88443694998418 40.897092528577865, -73.8844376660159 40.89701992500703, -73.88443837874732 40.89694717105095, -73.88444825104507 40.896762208743525, -73.88446642492137 40.89657761403088, -73.88449288334294 40.89639358860077, -73.88450509030488 40.89632914500499, -73.8845143521383 40.89628023092535, -73.88452759142963 40.896210361135886, -73.88457050366952 40.896028133292084, -73.88462157807953 40.8958471256372, -73.88468075253586 40.8956675407077, -73.88477193062663 40.89542092316664, -73.88487104275912 40.89517607480468, -73.88497802807701 40.894933143220676, -73.88509282454379 40.89469227420989, -73.88511612920753 40.89464593862682, -73.88514178913043 40.89459769995548, -73.88515182426072 40.894578837571, -73.88518193083672 40.89452223150307, -73.8851931100651 40.89450121449113, -73.88521876988709 40.89445296949796, -73.88524443085235 40.89440472810177, -73.88527009178966 40.89435648129654, -73.88529575031326 40.89430823628374, -73.8853191254604 40.89426559541766, -73.88534249583087 40.89422295454177, -73.88536587210936 40.89418031096525, -73.88538924598292 40.89413766828177, -73.88541261507989 40.894095025588506, -73.88543598889814 40.894052380193465, -73.88546110251427 40.894006194010494, -73.88547529972982 40.89398008952047, -73.88549090881509 40.893951378623704, -73.88551133082068 40.89391382613055, -73.88553644433055 40.8938676408305, -73.88556155543064 40.893821456422685, -73.88558666768249 40.89377527201022, -73.88561178464762 40.89372908669607, -73.88563689683431 40.89368289957041, -73.88566344253869 40.89363391695127, -73.88568998583054 40.89358493432326, -73.88571653145507 40.89353595259152, -73.8857430758554 40.89348696995154, -73.88575407549055 40.89346667579357, -73.88576962495857 40.893437990011215, -73.88578443160041 40.893410664125014, -73.88579616335048 40.89338900555131, -73.8858227123785 40.893340023796846, -73.88584640972745 40.89329731920115, -73.88587010586704 40.89325461009665, -73.88589380315824 40.89321190368956, -73.8859175051609 40.893169199983426, -73.88594119883433 40.89312649176142, -73.885964909129 40.89308376103854, -73.88606629969102 40.89289658899597, -73.88616542910835 40.8927087293591, -73.8862623056897 40.89252019024622, -73.88637863147007 40.892293059171365, -73.88649127020993 40.89206486177195, -73.88660020883671 40.8918356286622, -73.88669503160575 40.89162737640933, -73.88678716251252 40.89141842895745, -73.88687658374201 40.89120880880765, -73.88697204573775 40.890992056345254, -73.88706097750593 40.89077371345221, -73.88710215335828 40.89066380351239, -73.88715281649378 40.89053963283186, -73.88719717615577 40.89041408002414, -73.88723516561265 40.89028733053137, -73.88726673118738 40.890159569807274, -73.88738216555332 40.890083631948904, -73.8874994645472 40.89000935808862)), ((-73.88805165515451 40.889696222370006, -73.88805142294717 40.88969530094767, -73.88805119192796 40.88969437862597, -73.8883876138967 40.88954314181629, -73.88872785271165 40.88939690540021, -73.88907178017712 40.889255726852305, -73.88909471451585 40.88927279689196, -73.88904010867111 40.88930071170826, -73.8889703115834 40.889338873826084, -73.88890758061883 40.88937486442676, -73.88884597262043 40.88941196277185, -73.88878552917484 40.889450134684715, -73.88870919846222 40.889501027723234, -73.8886349282248 40.88955364622901, -73.88856278380256 40.889607943443835, -73.88849283173207 40.889663867207744, -73.888425138543 40.88972136986319, -73.88838400319052 40.88975863362586, -73.88834286778581 40.88979590097549, -73.88830173352314 40.889833167410885, -73.8882605992174 40.88987043203043, -73.88821946486249 40.88990769843599, -73.88817700913891 40.88995169287805, -73.88813455098595 40.889995687301806, -73.88809209752019 40.89003968351516, -73.88804964400583 40.89008367521012, -73.88800718330958 40.89012767048414, -73.88796498098016 40.89016970563519, -73.88791985432454 40.890214841906, -73.887838647075 40.89030115024026, -73.88780183524541 40.890343204976006, -73.88778773491156 40.890359312668224, -73.88777524552711 40.890373581331815, -73.887763909368 40.89038653370452, -73.88772597987979 40.89042986331719, -73.88768804797046 40.89047319201429, -73.88765012312676 40.89051652340701, -73.8876121934963 40.890559849379315, -73.8875747199819 40.89060498035675, -73.88753724285529 40.890650112218644, -73.88749977280197 40.890695241373486, -73.88746229676475 40.89074037051001, -73.88742509826294 40.890785547630394, -73.88734478528595 40.8908867262034, -73.88732367470456 40.89091513753687, -73.88726662132875 40.89099122600818, -73.88726229350144 40.89099346309052, -73.88725619402517 40.890993618320174, -73.88724947205912 40.89098999000073, -73.88724763979636 40.89098516701018, -73.88733009070917 40.89076813318953, -73.88741077263897 40.89055273465956, -73.88748999741787 40.89033702667864, -73.88749779922736 40.89031045554146, -73.88752519797579 40.89021715948596, -73.88752916272065 40.890203655160114, -73.8875290688893 40.89020370819737, -73.88759873247245 40.88994868009827, -73.8877470406371 40.88986157813755, -73.8878979639867 40.88977710254119, -73.88805142294717 40.88969530094767, -73.88805071687923 40.88969673653801, -73.88805165515451 40.889696222370006)), ((-73.89433581438514 40.88678802062643, -73.89436714697099 40.88661878307574, -73.89440778120961 40.886450689534506, -73.89445764537612 40.886284032585664, -73.89451665232339 40.88611910479588, -73.89451866501055 40.88614432115755, -73.89452022130233 40.88616254392391, -73.89452258688958 40.886180716102054, -73.8945257558703 40.88619881877628, -73.89452973658801 40.88621682854146, -73.89453451365127 40.88623472467235, -73.89453745208488 40.88624408251126, -73.89454009065035 40.88625248826185, -73.89454645100149 40.88627010218551, -73.89455359711975 40.88628754033121, -73.89456151123639 40.88630478467293, -73.89457018863423 40.88632181719644, -73.89457962341835 40.88633861448351, -73.89458979899773 40.88635516391206, -73.89460070829632 40.88637143846079, -73.89461233827569 40.88638743001321, -73.89462466762707 40.886403107933155, -73.8946376868699 40.88641846500782, -73.89465021156236 40.88643218004279, -73.89466575364501 40.88644812653399, -73.89468075969614 40.88646240123113, -73.89470460625735 40.88648365825877, -73.89472264739221 40.886498741654435, -73.89472933297765 40.88650433436995, -73.89475489836406 40.88652440701402, -73.8947812799025 40.88654385725973, -73.89481497160337 40.886566379417054, -73.89484865620064 40.88658890606042, -73.89485926728625 40.88659573961266, -73.89487017425895 40.88660229698415, -73.89488137120448 40.886608566463, -73.8948928474497 40.88661454443753, -73.89490458521354 40.88662022008556, -73.8949165690837 40.88662558528866, -73.8949287895664 40.88663064093856, -73.89494122887766 40.88663537801412, -73.89495387042574 40.88663978389342, -73.89496670708411 40.88664386307237, -73.89497972225396 40.88664760743129, -73.89499289221713 40.88665100884428, -73.89500621340528 40.88665407271094, -73.8950196597414 40.88665678189822, -73.89503322527563 40.8866591472065, -73.89504688747903 40.886661158709956, -73.89506063093083 40.88666281369302, -73.8950744402142 40.88666410673881, -73.89508830226005 40.88666504864116, -73.89510220047505 40.88666562767873, -73.89511611112536 40.88666584563086, -73.89513002352908 40.88666570428884, -73.89514392345464 40.88666519913729, -73.8951596442453 40.88666424179288, -73.89519953178579 40.886662219504224, -73.89521966779272 40.886661196822956, -73.89524364164517 40.88665980842192, -73.89525258277857 40.886658702634726, -73.89526382316232 40.88665701091557, -73.8952749809432 40.886655030064226, -73.89528604306204 40.88665276457135, -73.89529700358185 40.88665021713297, -73.89530783877156 40.88664738772765, -73.89531854506734 40.88664427905362, -73.895329102278 40.88664090369945, -73.89533950686092 40.88663725085605, -73.89534974098804 40.88663333941763, -73.89535979280673 40.88662916126903, -73.89536965043169 40.88662472900632, -73.89537930674075 40.88662004442416, -73.89539412359434 40.88661366890226, -73.89540958754424 40.886607016614974, -73.89543935323746 40.886593323772296, -73.8954685800694 40.8865789784817, -73.89549724429173 40.886563991528, -73.89552532570747 40.886548379102024, -73.89555278870182 40.886532152878374, -73.89559990329847 40.88650296391289, -73.89564701785372 40.886473774928014, -73.89567762229993 40.886455557837635, -73.89570359966498 40.88644009474808, -73.89572579556426 40.886426878552115, -73.89576017904871 40.88640641273708, -73.89559490699949 40.886525496767675, -73.89542502588591 40.88664077903264, -73.89522537879039 40.8867672342794, -73.89502553781902 40.886893505303, -73.89482690030891 40.88701235436599, -73.8946247352434 40.88712772758957, -73.89451754862601 40.88718592176692, -73.89440089210963 40.8872492525597, -73.89435744599649 40.8872712657135, -73.89429809236123 40.887299619016275, -73.89430125687116 40.88712873662597, -73.89431383857642 40.886958104183584, -73.89433581438514 40.88678802062643)), ((-73.87996044981854 40.89585325975512, -73.87999548324942 40.895695098061886, -73.88027193828641 40.89653911075285, -73.88031159232732 40.89663142636398, -73.88023651160323 40.896741767757284, -73.88019360618307 40.896808677891485, -73.88013942280098 40.89690018835255, -73.87966374351691 40.897669305440964, -73.87987060943254 40.89643029884771, -73.87996044981854 40.89585325975512)), ((-73.88792912206867 40.901280391034085, -73.88791579825059 40.90125974710992, -73.88788620303842 40.901215401952435, -73.88780527567516 40.9011194803155, -73.88779206157523 40.901104889536775, -73.88772025537136 40.90102561494694, -73.88769562593097 40.90100024326482, -73.887808808834 40.90068845353197, -73.88786899994938 40.90069157545617, -73.88792740165705 40.900693131470966, -73.88798583424217 40.900693268323224, -73.88800148502041 40.90069292871664, -73.88804424665082 40.90069199676917, -73.88810257955507 40.90068930774648, -73.88816076409768 40.90068521289489, -73.88821874806091 40.90067970946259, -73.88827647089074 40.90067281179904, -73.88833387918412 40.90066451625103, -73.88839090051482 40.90065483985823, -73.88844636310476 40.900644736002164, -73.8885013450225 40.90063322059654, -73.88855578572802 40.90062029988708, -73.88860961634526 40.90060599722062, -73.88866278225952 40.90059032425167, -73.88871521935285 40.900573298028455, -73.88876691336907 40.9005549257422, -73.88883240365999 40.90053235785547, -73.88889793308994 40.900509778262844, -73.88896346603572 40.900487198636405, -73.88902899300459 40.900464618066444, -73.88908972028652 40.90044718361768, -73.88915044872338 40.90042974913805, -73.88921492741197 40.90041300169275, -73.88921700210513 40.90041715851752, -73.88916412362722 40.90044993311245, -73.88911238175316 40.90048145620125, -73.8890606362712 40.900512978362805, -73.88900888836203 40.900544503200116, -73.8889571487233 40.90057602081815, -73.88890540547064 40.90060754111087, -73.88885365979233 40.90063906317888, -73.88879801511021 40.90067363140775, -73.88876671419726 40.90069308322773, -73.8887423751113 40.90070820321606, -73.88868673743417 40.90074277139767, -73.88863109495502 40.90077733774671, -73.88857545241497 40.900811905869695, -73.8885206604416 40.90084594890426, -73.88846417072006 40.900881042938394, -73.88844314335093 40.900895746437065, -73.88841281839284 40.90091695054511, -73.8883614624558 40.90095285452332, -73.88831010764407 40.90098876208152, -73.88825875278285 40.901024666014706, -73.8882073990454 40.901060574428364, -73.8881636073277 40.90109519074615, -73.8881198119995 40.901129809745086, -73.88807602018754 40.90116442783012, -73.8880494384747 40.90118544186666, -73.88803223070515 40.9011990450002, -73.8879884387974 40.90123366575302, -73.88798358663223 40.901237498908195, -73.88794500812126 40.90126799598334, -73.88792912206867 40.901280391034085)), ((-73.8962995902371 40.90093158903722, -73.89628501680698 40.90092296191616, -73.89627084867003 40.90091395515317, -73.8962637876383 40.900909140224265, -73.89625710004667 40.9009045822684, -73.89624379704222 40.90089484598696, -73.89623095029985 40.90088477063158, -73.89621856694869 40.90087435080596, -73.89620667542542 40.90086361625177, -73.89619528521162 40.900852575082006, -73.89618646261256 40.90084344344512, -73.89618217259738 40.90083873005608, -73.89616257721947 40.900816094076106, -73.89607902141456 40.900717971493364, -73.89598457214437 40.900613135830824, -73.89588655984124 40.90051019599635, -73.89579391440722 40.900417902841525, -73.89575926666745 40.90038507052954, -73.89572145375756 40.900349244840385, -73.89569834345744 40.90032734580228, -73.8955999062605 40.90023857265068, -73.89557277237579 40.900213197681545, -73.89554918926144 40.90019241748698, -73.89554085767048 40.90018511152498, -73.89550967494172 40.900159477139695, -73.89547744072438 40.900134613508726, -73.89545154854073 40.900115876202754, -73.89530061276383 40.90000355980509, -73.8951283015583 40.8999106274247, -73.89513389831961 40.89990390589195, -73.89513808845042 40.8998966220796, -73.89514077438547 40.899888934384386, -73.89531735470402 40.89991159143114, -73.89548891311787 40.89995058924993, -73.89623110112234 40.9001466016689, -73.896226045396 40.9001975555202, -73.8961802733689 40.90021366364929, -73.8961386298118 40.90023529454146, -73.89610227633463 40.90026184502174, -73.89607220266096 40.90029258929525, -73.89604923730478 40.90032668165791, -73.89604692906329 40.900332718225755, -73.89604426404257 40.90033771261224, -73.89603978788931 40.90034580573441, -73.89603568421285 40.900354009050936, -73.89603195776743 40.9003623180636, -73.89602861213339 40.90037072016896, -73.8960256485158 40.90037920366188, -73.89602308473215 40.90038775865303, -73.89602090892457 40.90039637882837, -73.89601912230533 40.900405047980364, -73.89601773675511 40.90041375801531, -73.89601675228394 40.9004225026299, -73.89601616417161 40.90043126471064, -73.89601597598424 40.90044004065885, -73.89601619249589 40.90044881336965, -73.89601680777987 40.90045757833521, -73.89601782304847 40.90046631934791, -73.89601924068664 40.90047502920611, -73.8960210500333 40.90048369529331, -73.89602436315589 40.90049759724868, -73.89602830186374 40.90051140521648, -73.8960328768692 40.90052509939565, -73.89603806920101 40.9005386689632, -73.89604387890036 40.90055208780506, -73.89605029529211 40.90056535230968, -73.89605711014289 40.90057805256912, -73.89606492337103 40.90059132913623, -73.89607311729361 40.90060401802942, -73.89607817601392 40.90061120754529, -73.8960847177914 40.90062019035909, -73.8960912140166 40.9006287057803, -73.89610245198115 40.90064448427026, -73.89611437637758 40.90065996711754, -73.89612697655754 40.90067513360121, -73.89614023828403 40.90068998100674, -73.89615415448723 40.900704476910185, -73.8961686943235 40.900718613179166, -73.89618385663992 40.90073236820082, -73.89619961415741 40.900745731144546, -73.89621595502916 40.90075868849221, -73.89623285791696 40.900771224916184, -73.89625030386165 40.900783321488994, -73.89626827270175 40.90079496918745, -73.89628674902865 40.90080615539064, -73.89630570794483 40.900816863867355, -73.89632512810621 40.90082708289179, -73.89633577193958 40.90083197577435, -73.89634193676228 40.90083462152881, -73.89634854286403 40.900837400950735, -73.89635761616529 40.9008410335446, -73.89636681322234 40.900844455535584, -73.896373267012 40.900846733249786, -73.8963801206147 40.90084909866939, -73.8963915959572 40.900852751426164, -73.89640468985733 40.90085655151256, -73.89641794092911 40.90086002216137, -73.89642498909456 40.90086167366911, -73.89643133374823 40.9008631606572, -73.89644485053095 40.900865955277766, -73.89645849364635 40.900868408726666, -73.89647223105653 40.900870517373114, -73.89648605208296 40.900872279406556, -73.89649720142796 40.90087341410729, -73.89650240954106 40.90087387892368, -73.89651389041096 40.900874750978666, -73.89652787685543 40.90087546048961, -73.89654188520633 40.9008758206307, -73.8965559012401 40.900875819682874, -73.89656991188224 40.900875470241274, -73.89658198958068 40.9008749002488, -73.89659403570207 40.90087403036566, -73.89660549593171 40.90087291322394, -73.89660532636228 40.900873584833086, -73.89663967113822 40.900869667865024, -73.89667253238538 40.90086271852988, -73.8967069055263 40.900850471189806, -73.89666766463502 40.90102729832992, -73.89654893194827 40.90100953710903, -73.89652453183803 40.90100622127177, -73.896507383063 40.9010036611326, -73.89649034889187 40.90100067066226, -73.89647345543722 40.90099724808334, -73.89645672641564 40.90099340602388, -73.89644017013072 40.900989147192846, -73.89642380557002 40.900984472507815, -73.89640766477031 40.900979386500126, -73.89639603330129 40.90097537881428, -73.89639388872648 40.900974640293825, -73.89637607931974 40.90096801745904, -73.89636067619726 40.900961740766576, -73.89634555850499 40.90095508162263, -73.8963298782786 40.90094765926159, -73.89632322803632 40.90094425936554, -73.89631454761907 40.90093982298974, -73.89630667169126 40.90093548819006, -73.8962995902371 40.90093158903722)), ((-73.89424292264798 40.886543952361556, -73.89428606726251 40.88645085277178, -73.89427399409392 40.88649945087206, -73.89426784643841 40.886524200513314, -73.89426192209282 40.88654804987225, -73.89425640376078 40.88657026792137, -73.89424985126055 40.886596648871844, -73.89422227524467 40.88673067001045, -73.894200863428 40.8868347322049, -73.8941911909544 40.88691734116244, -73.89418374142072 40.88698095999813, -73.89416848795668 40.88712731016334, -73.89415418260275 40.88728476148676, -73.89415173741305 40.88732631038392, -73.8941510203728 40.887338461788964, -73.89414878000402 40.88737656651344, -73.89409184509357 40.88740521728738, -73.893796604426 40.887542708706476, -73.89349898188041 40.88767675911383, -73.8932997626242 40.887760865140926, -73.89314907968246 40.88782101150277, -73.89310987547728 40.8878366598735, -73.89309799512993 40.88784139803545, -73.89284441462245 40.88793891788579, -73.89258727430189 40.888030910283035, -73.89273205153847 40.88796780917508, -73.89287904488016 40.887907726570525, -73.8929327571113 40.88788333811009, -73.8929853573212 40.88785758345647, -73.89303677781469 40.88783049946843, -73.89308696516024 40.88780210770966, -73.89313585403926 40.88777244324021, -73.8931833981128 40.88774154473981, -73.89320905683309 40.88772420440567, -73.8932500494637 40.88769650194515, -73.89331484622551 40.88764992386948, -73.89337772661874 40.88760185908511, -73.8934386300627 40.887552348961464, -73.89349750070326 40.88750144747942, -73.89355428271007 40.88744919421184, -73.8936451320949 40.88735741755017, -73.89373265471632 40.88726379625838, -73.89381679350738 40.8871684050318, -73.89385498933217 40.88712702229428, -73.89389548149786 40.88708017300124, -73.893933969886 40.887032356530916, -73.8939704128854 40.8869836259759, -73.89400477838345 40.88693403083521, -73.89403702713278 40.88688363050685, -73.89409292804336 40.88680215987955, -73.89414613820117 40.88671965569952, -73.89419662311104 40.88663617647043, -73.89424292264798 40.886543952361556)), ((-73.89692591847995 40.89985499539663, -73.89692169613691 40.89988470850419, -73.89691458202367 40.89992640177184, -73.89687774244312 40.900092169610645, -73.89687638322766 40.90009086719699, -73.89686959289118 40.90012884175015, -73.89677759288453 40.900101847660785, -73.8967162219102 40.90008060438099, -73.89665484978691 40.90005936196788, -73.89664225178804 40.90005500135153, -73.89663302005658 40.900051806272856, -73.89659347770284 40.90003811952208, -73.89653210922253 40.90001687434528, -73.89650145052889 40.90000509824738, -73.89647133897775 40.899992542812655, -73.89644180422114 40.89997921977445, -73.8964128806481 40.89996514717376, -73.89638459672078 40.89995033854387, -73.89635699750767 40.899934812835795, -73.89633010079115 40.89991858267282, -73.89630394568738 40.89990167870702, -73.89627856185739 40.89988410636846, -73.89627283806925 40.89987800224667, -73.89626739458846 40.899871752498036, -73.89626224208618 40.89986536343558, -73.89625719462818 40.899858585458055, -73.89625280402251 40.89985220608465, -73.89624854336496 40.899845449524975, -73.89624458549854 40.89983858878109, -73.89624094584705 40.89983162656833, -73.89623761846248 40.89982457188624, -73.89623461519132 40.89981743825278, -73.89623193365863 40.89981022656629, -73.89622957977139 40.899802953941304, -73.89622755827517 40.89979562128263, -73.89622587033843 40.899788240297546, -73.89622451950588 40.89978082089467, -73.8962234974559 40.899773372071344, -73.89622282080185 40.89976589474294, -73.89622247645396 40.89975841140989, -73.8962224727209 40.89975092117912, -73.89622280958709 40.89974343395596, -73.89622365391035 40.89973473513727, -73.89622449793013 40.899728510848824, -73.8962258470121 40.899721088469875, -73.89622753188391 40.89971370871554, -73.89622955134888 40.899706377887995, -73.89623189828065 40.89969909958292, -73.89623531700089 40.89969173579458, -73.89623906905533 40.8996844668566, -73.89624314968412 40.89967730086895, -73.89624755175531 40.89967024502911, -73.89625226932375 40.89966330653559, -73.89625730237532 40.89965649439313, -73.89626156051254 40.89965117185548, -73.89626827807719 40.89964328784904, -73.89627420883856 40.89963690694391, -73.89628042416784 40.89963069018226, -73.89628692288794 40.899624631259535, -73.89629368360758 40.89961874906674, -73.89630071344445 40.89961304541116, -73.89630799576278 40.899607533785044, -73.89631552344609 40.89960221148052, -73.89632329053954 40.89959709199943, -73.89633128873577 40.8995921753343, -73.8963477643784 40.899582471201875, -73.89636467014493 40.89957319608369, -73.8963819739731 40.899564362557584, -73.8963996592483 40.89955597060843, -73.89641771051475 40.899548038231856, -73.89643610045735 40.89954057801005, -73.89645481839962 40.89953358723173, -73.89647383464893 40.89952708117841, -73.89649312783244 40.89952106703462, -73.89650326124841 40.89951751830647, -73.8965135473441 40.89951423445659, -73.89652397780661 40.89951121907954, -73.89653453601862 40.89950847396129, -73.89654521603786 40.89950600449941, -73.89655599412774 40.89950381157308, -73.8965668631594 40.89950190057875, -73.8965778148242 40.89950027240949, -73.89658883843714 40.89949892975714, -73.89659991145543 40.89949786899952, -73.89661102555499 40.89949710093502, -73.89662216651013 40.89949661564553, -73.89663332955996 40.899496422131634, -73.89664448741733 40.899496514966025, -73.89665563413743 40.89949690134718, -73.89666676379635 40.899497574966475, -73.89667785266026 40.8994985349022, -73.8966888924219 40.89949978114684, -73.89670109331833 40.899501485875405, -73.89671321538916 40.899503512005, -73.89672523133468 40.89950586221271, -73.89673328432401 40.89950766408142, -73.89673520978177 40.89950809443422, -73.89674890929382 40.89951150511483, -73.89676053809637 40.89951478607324, -73.89677200739071 40.89951837755499, -73.89677816224892 40.89952049469376, -73.89678331007309 40.899522268747845, -73.89679442716663 40.89952645243101, -73.89680533968034 40.89953093038864, -73.89681604763103 40.899535691814876, -73.89682652609952 40.899540734886614, -73.89683677152973 40.89954605689924, -73.89684676140396 40.89955163802204, -73.8968564909709 40.89955748095232, -73.89686813203521 40.899563575924006, -73.8968931525466 40.899578982145, -73.89690982533594 40.89959438090653, -73.8969264953276 40.899611588735915, -73.89694553950964 40.89963603857504, -73.8969543601762 40.89965480083278, -73.89694762380816 40.89969246927712, -73.8969490675679 40.89969205364168, -73.89693988018698 40.89975671641294, -73.89693184585434 40.89981326955127, -73.89692591847995 40.89985499539663)), ((-73.8965568308901 40.900815327802405, -73.89654605795221 40.90081559910027, -73.8965352818912 40.90081558944331, -73.89652451102315 40.9008152934361, -73.89651376789163 40.90081471470072, -73.89650305130716 40.90081385503718, -73.89649237669826 40.90081271445923, -73.89648176661956 40.90081128938525, -73.89647122936192 40.90080959062848, -73.8964607732401 40.90080761369393, -73.89645041249004 40.900805362196344, -73.89644007356449 40.90080281445817, -73.89643998222091 40.90080278916269, -73.89642600570096 40.900798767669826, -73.89641204526359 40.90079432746464, -73.89639828715369 40.90078952094236, -73.89638475745981 40.90078436163366, -73.8963714715992 40.90077885675641, -73.89635843669409 40.90077300541658, -73.89634568240176 40.900766815745214, -73.89633321108042 40.900760297649875, -73.89632104763868 40.90075346015783, -73.89630919800085 40.900746309577926, -73.89629768114852 40.90073885042968, -73.8962865029862 40.90073110162871, -73.89627568250538 40.900723061391155, -73.89626524222828 40.900714746846575, -73.89625518096395 40.90070616069549, -73.89624551055496 40.900697319157274, -73.89623624997155 40.90068823395544, -73.8962264989068 40.90067936622904, -73.89621713034767 40.90067027012279, -73.89620814190637 40.900660954639356, -73.89619955019089 40.90065142429624, -73.89619136823184 40.900641694413444, -73.89618359127778 40.90063176768822, -73.89617623473296 40.900621659442784, -73.89616930333028 40.90061137868633, -73.89616280891494 40.90060093983721, -73.89613856227577 40.90056103738947, -73.89611431685242 40.90052113493739, -73.89611097597664 40.9005135867752, -73.89610798769931 40.90050596058809, -73.89610534608502 40.90049825727124, -73.89610306179358 40.90049049034152, -73.89610112531933 40.90048266699427, -73.8960995508909 40.90047479534669, -73.89609833492946 40.9004668871018, -73.8960974809771 40.90045895396917, -73.89609698783265 40.90045100495254, -73.89609686142296 40.900443044559665, -73.89609709342065 40.9004350853898, -73.89609769092947 40.900427138255196, -73.89609895704761 40.90041738535129, -73.89609997174107 40.90041131700185, -73.89610164908295 40.90040345998695, -73.89610368594093 40.90039565372261, -73.89610607993859 40.90038790000773, -73.89610956333729 40.900378670479256, -73.89611214827559 40.900373278005304, -73.89611578224162 40.900366424089086, -73.89611971867889 40.90035967129915, -73.89612395165621 40.900353017829104, -73.8961284763996 40.90034648078392, -73.8961332952812 40.90034006106605, -73.89613839760159 40.90033377037219, -73.89614377385526 40.90032761589762, -73.89614942048176 40.90032159763914, -73.89615533507938 40.90031573360419, -73.89616150578023 40.90031002378204, -73.89616792902122 40.90030446997044, -73.89617459291333 40.90029908566592, -73.89618311681205 40.90029273771471, -73.8961886236301 40.900288846271934, -73.89619300261543 40.900285963257474, -73.89619743258837 40.900283108203695, -73.8962035313949 40.9002793541661, -73.89621129516625 40.90027489834691, -73.89621925562442 40.90027064621342, -73.89622739615456 40.90026659775065, -73.8962363390334 40.9002624950789, -73.89624420314316 40.90025914154021, -73.89625284110767 40.900255740970735, -73.8962600812732 40.900252952374295, -73.89626744338423 40.90025035118764, -73.89627491320225 40.900247935596965, -73.89628248833968 40.90024571460501, -73.89629015099487 40.900243688195786, -73.89629790472962 40.900241855471904, -73.89630573410462 40.900240223623385, -73.89631362962288 40.90023879444269, -73.89632158417642 40.90023755981905, -73.89632958824716 40.90023653505207, -73.8963376359168 40.90023571023119, -73.89634571649306 40.90023509255064, -73.89635381810824 40.90023468199974, -73.8963619348328 40.900234475871734, -73.89637004885934 40.90023447775253, -73.89637618071964 40.900234633637396, -73.89638627001563 40.90023509923836, -73.89639434747316 40.90023572061774, -73.89642730323648 40.900237237788076, -73.89646017696334 40.9002396130368, -73.8964929235616 40.90024284362206, -73.89652550505838 40.90024692770898, -73.89655787875031 40.90025185265262, -73.89659236403588 40.90025810859307, -73.89659471429515 40.90025859515867, -73.89662186625023 40.9002642213867, -73.89664609186794 40.90026815117804, -73.8966838529436 40.90027577155563, -73.8967321623043 40.900286351342665, -73.89676381331657 40.90029354480196, -73.89679046311564 40.90030157663471, -73.89682810852358 40.90031339671941, -73.89682612481458 40.90032218907411, -73.8967245858679 40.90077212508917, -73.89671076494142 40.900780999601324, -73.89668841632783 40.90078795835535, -73.89664897538076 40.900801881456495, -73.89662207635604 40.900807465587356, -73.8966205983156 40.90080777673178, -73.89659639892405 40.90081280047154, -73.896596352943 40.90081184231539, -73.89658897432567 40.900812816333456, -73.89657829857202 40.90081393597728, -73.89656960782176 40.90081461436036, -73.8965568308901 40.900815327802405)), ((-73.88907079126345 40.888923231326146, -73.88910722814312 40.88892289713791, -73.88914722325902 40.88892346504058, -73.88915319558909 40.88892899525826, -73.88895202072337 40.88899058154144, -73.8887534623247 40.889056876836094, -73.88872067353212 40.889066772188976, -73.88869906816817 40.88907602276279, -73.8884926782652 40.88915265484047, -73.88828972040116 40.889234394725506, -73.88809041183572 40.889321154398765, -73.88789497102943 40.889412839540114, -73.88770360696033 40.889509352219235, -73.8877134257714 40.88945609802302, -73.88771343175601 40.88945606741232, -73.8877232553509 40.889402781702415, -73.88774491280336 40.88926796578697, -73.88775705100763 40.88917975877208, -73.88775868190046 40.889166797860966, -73.88778476089612 40.88914978692095, -73.88781145595898 40.889133334875126, -73.88783874808415 40.88911745341096, -73.88786661705896 40.88910216682153, -73.8878950320388 40.889087471474454, -73.88792805456991 40.88907133171197, -73.88796177689115 40.88905606068781, -73.8879961787997 40.889041677292035, -73.88803120568951 40.88902819587877, -73.88806682430706 40.88901563442498, -73.88810298835564 40.88900400549205, -73.88812258249605 40.8889982964931, -73.88813965034763 40.88899332434171, -73.888176780594 40.88898360625299, -73.88821433162238 40.88897485748287, -73.88825224645589 40.88896709148307, -73.88829049304468 40.888960316326575, -73.88829596337368 40.88895949677532, -73.88832902627772 40.88895454547675, -73.88836779396085 40.8889497707784, -73.88840675334112 40.88894601470216, -73.88844586527367 40.88894327090659, -73.8885107039974 40.88894091304452, -73.88857554034037 40.88893855694473, -73.8886403790564 40.88893619810934, -73.88867331697995 40.88893499981766, -73.8887052225111 40.88893384104305, -73.8887700600268 40.88893148483513, -73.88878639549029 40.88893088914533, -73.88883489991565 40.888929125891636, -73.88889387423745 40.888927653647606, -73.88895284618353 40.888926181371176, -73.88901181812848 40.88892470816413, -73.88907079126345 40.888923231326146)), ((-73.89612135591983 40.899872504560506, -73.89611629963578 40.89987517895118, -73.8961118643314 40.89987842300637, -73.89610815574922 40.899882160280264, -73.89610527491574 40.89988629451195, -73.89610328845228 40.89989072220583, -73.89610224875301 40.899895330848516, -73.8952001087217 40.89967198507995, -73.89521290639057 40.89966250469266, -73.8952281931642 40.8996542458185, -73.89526834099664 40.89965842897686, -73.8953073904398 40.89966150533054, -73.89534654462439 40.899663636257564, -73.89538576914508 40.89966481362225, -73.89542502483116 40.89966504099103, -73.89546427133496 40.89966431562586, -73.89550346711644 40.89966263838958, -73.89554256588279 40.899660013742896, -73.89558153915695 40.89965643715762, -73.89559072619221 40.8996555323757, -73.89562593011398 40.89965205772308, -73.89564155994401 40.89965051671655, -73.89570128876261 40.899643091271415, -73.89576065912851 40.89963417426985, -73.89581961406732 40.899623769263, -73.8958780775994 40.89961189059062, -73.89593599511007 40.89959855081113, -73.89599329655385 40.899583764269856, -73.89604992612118 40.89956754892719, -73.89610581494821 40.89954992273183, -73.89616389276998 40.89953037954637, -73.89619573287689 40.899518810843716, -73.89626810716186 40.8994912166234, -73.8962776700426 40.89948748010169, -73.89633326736895 40.899464160672856, -73.89638795393645 40.89943961934321, -73.89640051638999 40.89943395936754, -73.89641332399665 40.899428623784786, -73.89642635420255 40.899423616176584, -73.89643959988153 40.89941894013837, -73.89645303848242 40.89941459745085, -73.89646666879761 40.89941060162015, -73.89648046115806 40.89940695261955, -73.89649441436467 40.899403658552316, -73.89650849638191 40.89940071488721, -73.89652270719179 40.8993981333305, -73.89653701712678 40.89939591295508, -73.89655142025187 40.89939405465605, -73.8965658975748 40.89939256111776, -73.8965804312874 40.899391436826775, -73.89659500358839 40.899390681767024, -73.8966096037957 40.89939029682943, -73.89662421529353 40.89939028289964, -73.89663881435231 40.89939063635445, -73.89665339265939 40.89939136078832, -73.89672124615866 40.89939435708895, -73.89674362823727 40.89939534603092, -73.89678910084943 40.899397354251235, -73.8968569602906 40.899400353178876, -73.89686786356073 40.8994008347734, -73.89686838758284 40.89939888119072, -73.89698554550122 40.8994071369753, -73.89698003841772 40.899474062352, -73.89696828219051 40.89955680906102, -73.89694926914453 40.89953831145369, -73.89692782555358 40.8995229084383, -73.89690042105632 40.89950659510901, -73.89688501704464 40.899498783158116, -73.8968849988925 40.899499009163435, -73.89687495641265 40.89949368103295, -73.89686699826743 40.899489646057965, -73.8968581387349 40.89948525278491, -73.89684071151062 40.899477300345914, -73.896834666533 40.89947473486749, -73.89683004948527 40.89947277488977, -73.89682438492385 40.89947055553675, -73.89681794824732 40.899468032930656, -73.89680563645847 40.899463609553436, -73.8967931378539 40.899459504779315, -73.89678046073108 40.899455724919015, -73.8967676205024 40.89945227989161, -73.89675463735394 40.89944916251124, -73.89674024535273 40.899446148325445, -73.89673896994253 40.89944591305875, -73.8967282873451 40.89944394224856, -73.8967149501437 40.89944184569608, -73.89670152339964 40.89944009394744, -73.89668803321605 40.899438690627846, -73.89667448553067 40.89943763304114, -73.89666089813227 40.89943692930757, -73.89664728408474 40.89943657313551, -73.89663366593233 40.899436567246504, -73.89662005316193 40.899436916151494, -73.89660646358043 40.8994376162645, -73.89659539207706 40.8994384726142, -73.89657942045186 40.899440063870756, -73.8965659965778 40.89944180868915, -73.89655265524127 40.89944389756494, -73.89653942254822 40.89944633232246, -73.89652630088447 40.89944910485959, -73.89650692758578 40.89945323422369, -73.89649903261844 40.899455134371486, -73.89648774577945 40.899457852719145, -73.89647576509076 40.89946106931176, -73.89646877209796 40.8994629486547, -73.89645003621013 40.89946852205707, -73.8964319584598 40.89947442652456, -73.89639430173477 40.89948848891625, -73.8963778257019 40.899495417762694, -73.89636055548117 40.899503258984865, -73.89635209804808 40.89950739542047, -73.8963436394272 40.89951153185434, -73.89632709654917 40.899520222881186, -73.89631093397726 40.89952932576846, -73.8962951837668 40.89953883244085, -73.89627986374165 40.899548728506716, -73.89626497747894 40.89955900316371, -73.89625054635019 40.899569650127745, -73.89624178492845 40.899576169863714, -73.89623443680158 40.89958202361055, -73.89622517366325 40.89958987741189, -73.89622065152562 40.89959402457904, -73.89621734994702 40.89959705354141, -73.89620985584305 40.89960442717277, -73.89620270322465 40.899611994714775, -73.89619590515757 40.89961974897532, -73.89618946403935 40.89962767464846, -73.89618338462978 40.89963576363412, -73.89617768117729 40.89964401144275, -73.89617235845284 40.89965240277055, -73.89616742122209 40.89966092591545, -73.89616427402122 40.899666927513415, -73.89615983196924 40.89967602020935, -73.89614066600423 40.89972284885769, -73.8961330200949 40.8997643173799, -73.89613171305798 40.899771407516866, -73.89613319943217 40.89982042941156, -73.89614508324713 40.89986862951284, -73.89613891932473 40.899868507805216, -73.89612914514272 40.89986996139781, -73.89612135591983 40.899872504560506)), ((-73.89468155626489 40.88569145944497, -73.89468335341097 40.88569023642304, -73.89535915243562 40.885817825082064, -73.89532860786403 40.88582150649059, -73.89527760632481 40.885829009907425, -73.89522696815838 40.88583782383946, -73.8951767538973 40.88584793393436, -73.89512701812893 40.885859333938875, -73.89507782494564 40.88587200950412, -73.8950557753405 40.885878273953786, -73.8950340238325 40.88588511047931, -73.89501259178851 40.88589251279682, -73.89499903358119 40.88589762783387, -73.89499151126711 40.88590046652791, -73.89497080007285 40.885908967186566, -73.89495048907911 40.885917999492754, -73.89493059846656 40.885927557161686, -73.89491114723354 40.885937631206005, -73.89489216744435 40.88594820364539, -73.89487367691676 40.885959261889475, -73.89485570058176 40.88597079695638, -73.89483825150961 40.88598279715184, -73.8948213605784 40.8859952444946, -73.8948050373131 40.88600811828234, -73.8947893125662 40.88602141674246, -73.89477418874941 40.886035115564304, -73.89475970385722 40.88604919857391, -73.89474585910067 40.886063650464365, -73.89473479744953 40.88607616164153, -73.89472431911824 40.88608895610239, -73.89471443243261 40.8861020212479, -73.89470514691222 40.88611533997765, -73.89469648038806 40.886128891596876, -73.89468844118039 40.886142667108444, -73.8946810364415 40.88615664580778, -73.89467427925062 40.88617081059777, -73.89466748922338 40.88618697623831, -73.89464901338192 40.88625159539504, -73.89464769565086 40.886258762965106, -73.89464476048333 40.886275784883196, -73.8946393383908 40.88627929903501, -73.89463153764478 40.886278103271955, -73.8946193480709 40.88625809504053, -73.89461064595692 40.88624018452365, -73.89460270472763 40.88622207659379, -73.89459555048187 40.88620377397648, -73.89458917130092 40.886185309978906, -73.89458763575027 40.886180184808445, -73.8945835920799 40.88616669813125, -73.89457880447388 40.88614796273914, -73.89457481796018 40.88612911281623, -73.89457164079954 40.88611017628515, -73.89456927058403 40.88609117475554, -73.89456770422457 40.886071811063985, -73.89456691407152 40.886049318890784, -73.89456714840003 40.886026507080146, -73.89456842447571 40.88600371062871, -73.89457073986304 40.88598096825519, -73.89457408860119 40.88595829706337, -73.89457846708241 40.8859357267659, -73.89458387526147 40.88591328527769, -73.89459030360365 40.885890998703964, -73.89459773900917 40.88586889674871, -73.89460618025913 40.88584699922136, -73.89462495794353 40.885800755670765, -73.894642786561 40.88575589709927, -73.8946576456337 40.885719805653146, -73.89466095535164 40.885713496262966, -73.89466386340021 40.885709078428384, -73.89466716631452 40.885704815837784, -73.89467084150066 40.88570073998754, -73.89467542004391 40.8856964029199, -73.89468155626489 40.88569145944497)), ((-73.89699287425204 40.899231477048296, -73.89698784666403 40.899351990672706, -73.89689714479972 40.899348726492335, -73.89689709035045 40.89934940000591, -73.89684310129435 40.899346780894085, -73.89683149774145 40.89934636350628, -73.89683146104261 40.899346304941986, -73.89678963220439 40.8993448240778, -73.8967484145182 40.89934336535663, -73.8967410676518 40.899343105749516, -73.89669250191778 40.899341385598795, -73.8966714924739 40.89934146404877, -73.896650498806 40.899342081899114, -73.89662955176522 40.89934324187888, -73.89662209080095 40.899343853830764, -73.89659989658361 40.899296879103865, -73.8966152784933 40.89928909288515, -73.89664051474621 40.89927631870035, -73.89665254430521 40.899269885604504, -73.89666428713271 40.89926315148905, -73.89667572897082 40.89925612714704, -73.89668685438312 40.8992488179677, -73.89669765979804 40.8992412311518, -73.89670812739325 40.89923338019073, -73.89671824647655 40.89922527227891, -73.89672800279986 40.89921691190606, -73.89673739515267 40.899208314379486, -73.89674640217052 40.899199481481105, -73.89675197509735 40.89919420782652, -73.89677564782227 40.89917182044457, -73.89680362002176 40.89914341536267, -73.89682681501809 40.89911454315565, -73.8968351017859 40.89910409143626, -73.89685112346754 40.89908318930353, -73.8968748795139 40.8990514162275, -73.89691024848344 40.89899789961733, -73.89693015021298 40.89896361343786, -73.89694507333606 40.89893936321063, -73.89695778550707 40.89891971248281, -73.8969723832118 40.89890326465797, -73.89698051592349 40.89900978660223, -73.89698646313151 40.899087663089134, -73.89699290350919 40.89917201269552, -73.89699287425204 40.899231477048296)), ((-73.89665728840338 40.90107466800545, -73.89656860869304 40.90147953080495, -73.89655730658129 40.9014468529245, -73.89653505240004 40.90139299575224, -73.89651803943656 40.90134811569474, -73.89649833445881 40.90130347455068, -73.89649783278054 40.90130554341293, -73.89648452538125 40.901277218466674, -73.89647212360308 40.901253412959136, -73.89645722870029 40.90122482274405, -73.89642852290183 40.901172703099284, -73.8963974696253 40.90112136836328, -73.8963695957998 40.90107918448884, -73.8963636780323 40.90106878308951, -73.8963635595035 40.90106335846776, -73.896364687044 40.90105873819624, -73.89636702104389 40.9010544467839, -73.89637066400263 40.90105020517255, -73.8963753143837 40.90104759344088, -73.89637810976926 40.90104576346503, -73.89638101564032 40.901043860649146, -73.89638782358337 40.90104203157294, -73.89639502493203 40.90104135546889, -73.89641264251753 40.901043902538134, -73.89641208302783 40.901041944384, -73.89646725894069 40.90104996946439, -73.89656710474293 40.901061025955244, -73.89665728840338 40.90107466800545)), ((-73.88764706889631 40.88925202924068, -73.88766780925741 40.88923446203327, -73.88766532759253 40.88925232075921, -73.88763762254501 40.889423284387306, -73.88762372541294 40.88949125215062, -73.88762331741594 40.88949324542947, -73.88762283642666 40.88949559973213, -73.88760950164183 40.88955939608864, -73.8874856857735 40.88962796453803, -73.88736388102126 40.889698578019164, -73.88737139982071 40.88967234699498, -73.88738259524563 40.88963877789493, -73.88739526745968 40.88960550829516, -73.88740939858558 40.88957258320197, -73.88742498500834 40.88954003412843, -73.88744199580762 40.88950790066507, -73.88746041549508 40.8894762188157, -73.88748022977062 40.889445023684665, -73.88750140772655 40.88941434765858, -73.8875239326807 40.88938423124236, -73.88754777253756 40.88935470772193, -73.8875729035233 40.889325801386505, -73.8875992982739 40.88929755453135, -73.8876269282663 40.889269993242, -73.88764706889631 40.88925202924068)), ((-73.8995318594092 40.88660480539999, -73.89938541364789 40.88689146922602, -73.8993582392708 40.88681554174262, -73.89932284397679 40.88674159175326, -73.89927947500574 40.88667012824097, -73.89922843063243 40.88660164852577, -73.89917006374716 40.88653662386019, -73.8995318594092 40.88660480539999)), ((-73.88717284638636 40.88444262224956, -73.88717435291024 40.88443862285907, -73.88717488783912 40.88443873053993, -73.88717409391924 40.88443742135646, -73.88718429017418 40.88442584655951, -73.88720635296932 40.884416857850766, -73.88743030560619 40.884369451540664, -73.88744387102216 40.884370751566095, -73.88745064015896 40.88437976843872, -73.88745062054662 40.884391353183254, -73.88743533664262 40.88440292214158, -73.88736225272802 40.884495527149596, -73.88735876331216 40.88449617749771, -73.88728494128264 40.88458942378215, -73.88727551169235 40.88460088587504, -73.88718050459507 40.88471218687103, -73.88717291990129 40.884711114181066, -73.88716962813056 40.88470785750432, -73.88717232678059 40.88445306108591, -73.8871720882042 40.88444752105748, -73.88717284638636 40.88444262224956)), ((-73.88681113662417 40.88443796197007, -73.88682527296692 40.88443495199737, -73.8868317704523 40.884435525675016, -73.88685173506492 40.884437288590995, -73.88687348194627 40.884438966803685, -73.88688101997927 40.88443954870231, -73.88691037717916 40.88444116592938, -73.88692213948556 40.88444155295666, -73.88694300218091 40.884442678291514, -73.88695008900187 40.88444555508468, -73.88695049995732 40.8844460021287, -73.8869543098856 40.884450144497976, -73.88695576857486 40.884455444391406, -73.88695408540963 40.884466326927665, -73.88695131772342 40.88448422139332, -73.88694912708759 40.88449838480652, -73.88693725442947 40.88459078564046, -73.8869274472202 40.88470006001634, -73.88692298556276 40.88478051594392, -73.88692162318617 40.88480508799386, -73.8869213807669 40.884809492037384, -73.88691975726887 40.884885735565064, -73.88691958997009 40.884893409349665, -73.88691795133934 40.884921348048515, -73.88691097011248 40.88492193282835, -73.8868537006054 40.8846606652872, -73.88684728650445 40.884633394959245, -73.88680445448283 40.884453855313595, -73.8868034661009 40.88444759956246, -73.88680348159892 40.88444755635431, -73.88681113662417 40.88443796197007)), ((-73.88619459881716 40.90820767939581, -73.88617602542323 40.908291763484236, -73.8861557621213 40.90828627757571, -73.88619459881716 40.90820767939581)))",X092,6421,X092,X-13,X-13,X-13,X-13,"NYC - Westchester County Line, Van Cortlandt Park S. bet. Broadway and Jerome Ave.","207, 208, 212",11,50,"10467, 10470, 10471, 10705, 10705",X,1146.43,False,Van Cortlandt Park,No,100005066,PARK,20100106000000.00000,18881212000000.00000,3545 JEROME AVENUE,DPR,True,Van Cortlandt Park,Y,Van Cortlandt Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/X092/,No,81,34,16,{07994A1D-F2A5-48C7-8471-43C849E974B2} +"MULTIPOLYGON (((-74.08140685797821 40.64079988036357, -74.08213599075624 40.64069151394578, -74.08212134568082 40.64074785636192, -74.08208325395418 40.64080075031797, -74.08204036480451 40.640840083168534, -74.08185817946315 40.64096326349544, -74.08183656311813 40.640990924808676, -74.08182933236375 40.64101646596639, -74.0818482982254 40.641098619407494, -74.08193962929774 40.64149424142178, -74.08155758979103 40.64155102056043, -74.08156031967668 40.64154443853368, -74.08156267033195 40.641535159722146, -74.08156336885226 40.6415224655142, -74.08152820003859 40.64128917864565, -74.08149400149298 40.6411512767263, -74.08140685797821 40.64079988036357)))",R158,5970,R158,R-01,R-01,R-01,R-01,Sherman Ave. bet. Fort Pl. and Hendricks Ave.,501,49,120,10301,R,0.845,False,Fort Hill Park,No,100003747,PARK,20100106000000.00000,20030305000000.00000,,DPR,True,Fort Hill Park,N,Fort Hill Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R158/,No,61,23,11,{00178495-72FE-44A7-9981-76A812B5707D} +"MULTIPOLYGON (((-73.91001677083831 40.838291681531416, -73.90960099435898 40.838149366517015, -73.90961975471272 40.838117495627415, -73.90967507066041 40.83802353278896, -73.90971194826727 40.83796089088145, -73.9097488246202 40.83789824806006, -73.9098041390176 40.837804285155286, -73.9098222538695 40.83777351322942, -73.91023803084336 40.837915828357694, -73.91001677083831 40.838291681531416)))",X358,5519,X358,X-02,X-02,X-02,X-02,College Ave. bet. E. 170 St. and E. 171 St.,204,16,44,10456,X,0.43,False,,No,100008369,PARK,20140724000000.00000,20021120000000.00000,1420 COLLEGE AVENUE,DPR,False,College Avenue Greenthumb,,College Avenue Garden,,Garden,,No,77,33,15,{A30CD958-54F1-4F61-B935-A743D3192F8F} +"MULTIPOLYGON (((-73.82582804746403 40.75623230419283, -73.82548600052436 40.755950167375154, -73.82592634549212 40.75578110067407, -73.82584907197953 40.755666603279415, -73.82633008730112 40.75548192048451, -73.8266289813001 40.75592479160371, -73.82582804746403 40.75623230419283)))",Q211,4911,Q211,Q-07,Q-07,Q-07,Q-07,Kissena Blvd. bet. Maple Ave. and Franklin Ave.,407,20,109,11355,Q,0.978,False,Maple Playground,Yes,100000366,PARK,20090423000000.00000,19430414000000.00000,136-50 MAPLE AVENUE,DPR,True,Maple Playground,Y,Maple Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q211/,No,40,16,6,{47C1BDAB-7C90-4BD5-B1A9-8F1432F8F9D7} +"MULTIPOLYGON (((-73.91147878525365 40.82122716003685, -73.9117725110074 40.8207149836964, -73.91240012841534 40.82087038904249, -73.91207425310046 40.82137478918026, -73.91147878525365 40.82122716003685)))",X146,6594,X146,X-01,X-01,X-01,X-01,Brook Av to 3 Av bet. E 157 St and E 158 St,201,17,40,10451,X,0.82,False,Flynn Playground,Yes,100004995,PARK,20100106000000.00000,19450322000000.00000,3080 3 AVENUE,DPR,False,Flynn Playground,Y,Flynn Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X146/,No,79,32,15,{EDC69CA2-700B-4AC3-AB00-20131E6DBA29} +"MULTIPOLYGON (((-73.93812935209951 40.590579765699104, -73.93853915077382 40.59053458483687, -73.93868861858843 40.59132242984518, -73.93863941426338 40.59132756447962, -73.9383997484864 40.59135257525641, -73.93845109675452 40.59163852250074, -73.93847202237784 40.59175505240623, -73.93835429930802 40.59176733728563, -73.93812935209951 40.590579765699104)))",B306,5165,B306,B-15,B-15,B-15,B-15,Ave. Y between Brown St. and Haring St.,315,48,61,11235,B,0.868,False,Playground 286,Yes,100004581,PARK,20100106000000.00000,19580228000000.00000,2525 HARING STREET,DPR/DOE,False,Playground 286,Y,Playground 286,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B306/,No,41,19,9,{48AAEFB7-8FB1-4158-9FCE-4819B43DFB7A} +"MULTIPOLYGON (((-73.95841958165919 40.76474824380862, -73.95937816597973 40.765151910763784, -73.95902231129622 40.765640739529985, -73.95806488896484 40.765236660338594, -73.95841958165919 40.76474824380862)))",M079,4714,M079,M-08,M-08,M-08,M-08,"1 Ave., bet. E. 67 St. To E. 68 St.",108,5,19,10065,M,1.383,False,St Catherine's Park,Yes,100003979,PARK,20100106000000.00000,19140625000000.00000,1245 EAST 67 STREET,DPR,False,St. Catherine's Park,Y,St. Catherine's Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M079/,No,76,28,12,{C1DA2AF3-5E8C-42BC-B121-84147206D4FC} +"MULTIPOLYGON (((-74.03051362651304 40.63968915050582, -74.03101350312126 40.63844462333887, -74.03538813882341 40.63980389000776, -74.03529296414618 40.639929393918926, -74.03519060104247 40.6400515707323, -74.03508124796438 40.64017018083036, -74.0349651199241 40.64028499359508, -74.03484244258198 40.640395784708666, -74.03471345697507 40.64050233615197, -74.03457841479127 40.64060444070903, -74.03443757955003 40.640701899265125, -74.03429122660198 40.640794520807106, -74.03413964312999 40.64088212332405, -74.03398312342162 40.64096453741097, -74.03382197477708 40.64104159996365, -74.03365651278412 40.64111316228481, -74.03348705895021 40.64117908288098, -74.03330091832491 40.64123067810996, -74.03311190624687 40.641275810843105, -74.03292041047439 40.641314390903524, -74.03272681995647 40.641346338022046, -74.03253153192811 40.64137158813903, -74.0323349448143 40.64139008800328, -74.03213746177832 40.641401800574165, -74.03193948480927 40.641406702322136, -74.0317414194494 40.6414047823264, -74.03154367006682 40.64139604587877, -74.03134664221635 40.641380509079596, -74.0311507367312 40.641358205143234, -74.03095635563082 40.641329178993075, -74.03076389502817 40.641293489964994, -74.03057374867589 40.64125121180642, -74.03038630560017 40.64120242997523, -74.03020194891927 40.64114724434149, -74.03002105465988 40.64108576738653, -74.02984399412178 40.641018125102875, -74.02967112678381 40.640944456995655, -74.02950280857736 40.640864911577864, -74.02933938124875 40.64077965267656, -74.03051362651304 40.63968915050582)))",B066,6027,B066,B-10,B-10,B-10,B-10,"Shore Rd., 68 St., Colonial Rd.",310,43,68,11220,B,24.218,False,Owl's Head Park,Yes,100003761,PARK,20100106000000.00000,19280907000000.00000,,DPR,True,Owl's Head Park,Y,Owl's Head Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B066/,No,64,22,10,{C8D56EA2-4438-4F93-B5F7-37F11612C289} +"MULTIPOLYGON (((-73.98739691311997 40.72273833277975, -73.98837405052042 40.72303300661824, -73.98833470026612 40.72313119868068, -73.98739691311997 40.72273833277975)))",M123,5576,M123,M-03,M-03,M-03,M-03,"E. 1 St., E. Houston St., 1 Ave. and Allen St.",103,2,9,10003,M,0.192,False,Peretz Square,Yes,100005040,PARK,20100106000000.00000,19340509000000.00000,,DPR,False,Peretz Square,Y,Peretz Square,Type 1,Triangle/Plaza,http://www.nycgovparks.org/parks/M123/,No,65,26,12,{699E74FB-BDF2-46FC-91CA-8C458E70BFA4} +"MULTIPOLYGON (((-74.0016459156729 40.70932680472401, -74.00098833771662 40.70879507039175, -74.00099960334362 40.70878952584789, -74.00101171034044 40.70878356706042, -74.00117387177642 40.708936336320384, -74.00121032168734 40.7089132675515, -74.00122671644164 40.70892831491748, -74.00126161258908 40.70890685446162, -74.00138574985006 40.70902314683076, -74.00138872482171 40.709021319658035, -74.00167338737218 40.709306008827475, -74.0016459156729 40.70932680472401)))",M291,4968,M291,M-01,M-01,M-01,M-01,Dover St. bet. Pearl St. and Water St.,101,1,1,10038,M,0.1,False,Fishbridge Garden,No,100003958,PARK,20100106000000.00000,19960314000000.00000,388 - 340 PEARL ST,DPR,False,Fishbridge Garden,N,Fishbridge Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M291/,No,65,26,10,{7F617B93-7110-48AC-903A-21FC3607E180} +"MULTIPOLYGON (((-73.80235910794437 40.67780424677842, -73.80228450497187 40.6773864471609, -73.80247512191667 40.67777228764401, -73.80235910794437 40.67780424677842)))",Q220D,5896,Q220D,Q-12,Q-12,Q-12,Q-12,"Van Wyck Exwy. Sr. Rd. E., 139 St., Fooch Blvd.",412,28,113,11436,Q,0.051,False,Foch Sitting Area,Yes,100000180,PARK,20090423000000.00000,19460306000000.00000,,DPR,True,Foch Sitting Area,N,Foch Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q220D/,No,32,10,5,{8758F1B7-890D-4336-9F4F-223765FCAE3B} +"MULTIPOLYGON (((-73.89683255958211 40.77289183296944, -73.89751696527901 40.77233445658186, -73.89751866915367 40.77233563235404, -73.89804840087919 40.7727011133162, -73.89806128302736 40.772710000977504, -73.89737251602898 40.773272379879145, -73.89683255958211 40.77289183296944)))",Q298,5445,Q298,Q-01,Q-01,Q-01,Q-01,20 Ave. bet. 47 St. and 48 St.,401,22,114,11105,Q,1.31,False,Paul Raimonda Playground,Yes,100000451,PARK,20090423000000.00000,19410221000000.00000,20-02 48 STREET,DPR,True,Paul Raimonda Playground,Y,Paul Raimonda Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q298/,No,36,13,14,{E854984B-BF3F-4235-A517-41B6C8099F0D} +"MULTIPOLYGON (((-73.98023261302485 40.72240368422081, -73.98052283975848 40.72252619756439, -73.9804810068557 40.72258392213983, -73.98019077994753 40.72246140869175, -73.98023261302485 40.72240368422081)))",M332,4994,M332,M-03,M-03,M-03,M-03,E. 4 St. and Ave C.,103,2,9,10009,M,0.05,False,The Secret Garden,No,100003974,PARK,20100106000000.00000,20021120000000.00000,53 AVENUE C,DPR,False,The Secret Garden,Y,The Secret Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M332/,No,74,26,12,{0DF09729-E0E6-46F7-BFF9-6B7766232437} +"MULTIPOLYGON (((-73.91501374144904 40.84485802998677, -73.91466351021143 40.844715593490314, -73.91467282589467 40.84470256844806, -73.91487706225175 40.844785630430444, -73.91493079897205 40.844797562882945, -73.91497827359895 40.84481687023429, -73.91498689905488 40.844804810887055, -73.9150149340583 40.84480999947427, -73.91517536855406 40.84458568951272, -73.91577087347291 40.84482787312025, -73.91569053946976 40.8449401932437, -73.91501374144904 40.84485802998677)))",X148C3,5699,X148C3,X-04,X-04,X-04,X-04,W Mount Eden Av bet. Inwood and Jerome Av,204,14,44,10452,X,0.36,False,Inwood Park,Yes,100004952,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Inwood Park,Y,Inwood Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148C3/,No,77,29,15,{859EED3E-D77A-4862-8B4B-22007F0C2C2E} +"MULTIPOLYGON (((-73.91362408531764 40.74392521321401, -73.91363317823605 40.743923527079474, -73.91364253517432 40.74392367637581, -73.91365152626119 40.743925649824696, -73.91365954901242 40.743929316400965, -73.91366606147892 40.74393442805911, -73.91367062721075 40.74394064137899, -73.91367293890846 40.74394753919572, -73.91367283970324 40.74395465582966, -73.91361676298494 40.744256157612675, -73.91296057557129 40.744175290623936, -73.9129494555834 40.74417245102527, -73.91294011968365 40.74416704903028, -73.91293355576697 40.74415965630771, -73.91293045545515 40.74415105231956, -73.91293114671048 40.74414214682628, -73.91293555726163 40.74413388080317, -73.91294321947125 40.74412712648775, -73.9129533249179 40.74412259737063, -73.91362408531764 40.74392521321401)), ((-73.91374935169794 40.74464357409669, -73.9137854328528 40.74446636240243, -73.91395814618845 40.74448756162363, -73.91374935169794 40.74464357409669)))",Q065,6150,Q065,Q-02,Q-02,Q-02,Q-02,"43 Ave., Roosevelt Ave. bet. 50 St., 51 St. and 52 St.",402,26,108,11377,Q,0.254,False,John (Vincent Daniels Jr. Square),Yes,100000322,PARK,20090423000000.00000,19340720000000.00000,,DPR,True,John Vincent Daniels Jr. Square,Y,John Vincent Daniels Jr. Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q065/,No,30,12,14,{3C25B1C4-1112-4186-B116-5F91310BB60C} +"MULTIPOLYGON (((-73.95011661796708 40.70966249160159, -73.9502060955999 40.709653975485445, -73.95025039765893 40.70993047135507, -73.95020561960865 40.709934732123536, -73.95016091966126 40.70993898660483, -73.95007415417217 40.70994724361431, -73.95002985283304 40.709670747677464, -73.95011661796708 40.70966249160159)))",B445,5248,B445,B-01,B-01,B-01,B-01,Ten Eyck St. between Union Ave. and Lorminer St.,301,34,90,11206,B,0.114,False,Ten Eyck Houses Garden,No,100004941,PARK,20100106000000.00000,20021120000000.00000,15 TEN EYCK STREET,DPR,False,Ten Eyck Houses Garden,N,Ten Eyck Houses Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B445/,No,53,18,7,{8E6063D3-DC63-4B5F-8F6F-60562C3D8142} +"MULTIPOLYGON (((-73.97760933302072 40.69801949359827, -73.97746017427833 40.69646492067684, -73.98027276660659 40.69658224801766, -73.98038109531359 40.69737395566261, -73.98033253120828 40.698126971124495, -73.97760933302072 40.69801949359827)))",B021,4640,B021,B-02,B-02,B-02,B-02,"Nassau St., Park Ave., bet. Navy St. and N. Elliot Pl.",302,35,88,11201,B,10.391,False,Commodore Barry Park,Yes,100004435,PARK,20100106000000.00000,18360525000000.00000,65 PARK AVENUE,DPR,True,Commodore Barry Park,Y,Commodore Barry Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B021/,No,50,26,8,{D23C0332-C83C-4375-A9CB-AFEB03C8B3D8} +"MULTIPOLYGON (((-73.89585313733564 40.763859491954115, -73.8960990644909 40.763684120073485, -73.89620667478965 40.76360333643126, -73.89630869042601 40.76351846026109, -73.89640484339073 40.76342971646298, -73.89649487988055 40.7633373371536, -73.8965785638423 40.763241567072605, -73.89665567342814 40.763142658176015, -73.89672600691593 40.76304087054197, -73.89716790738532 40.76235940079213, -73.89725194345533 40.76223740331684, -73.89734370662175 40.76211866798951, -73.89744297850565 40.76200347825658, -73.89754224886182 40.761888288435145, -73.8976340098455 40.76176955286943, -73.89771804313183 40.76164755594301, -73.89803730118555 40.761155198728574, -73.89878867105132 40.76001181987787, -73.89881331224255 40.75997842917661, -73.89905063584888 40.759949260200365, -73.89641960418236 40.76396793534005, -73.89597203189409 40.76377619731945, -73.89588933541998 40.76383477879939, -73.89559301147881 40.76435554899579, -73.89556515837789 40.764420815746156, -73.89522642658598 40.76538417875039, -73.89493260728607 40.76618204996285, -73.89487587102857 40.76617396030557, -73.89486009996385 40.76617075902902, -73.89484514062951 40.766165791701326, -73.89483133276782 40.7661591720966, -73.89481899119275 40.766151049085785, -73.89480839512788 40.7661416084283, -73.895254957978 40.76465237537865, -73.895289423384 40.76455271363452, -73.89533244739255 40.764454993938614, -73.89538384454065 40.76435964205179, -73.89544339148974 40.76426707109191, -73.89551082820785 40.76417768333634, -73.89558586271173 40.76409186752471, -73.89566816988598 40.76400999705748, -73.89575739030595 40.76393242549232, -73.89585313733564 40.763859491954115)))",Q174,5953,Q174,Q-01,Q-01,Q-01,Q-01,30 Ave to Astoria Blvd. on BQE,401,22,114,11377,Q,3.4,False,St. Michael's Park,No,100000446,PARK,20090423000000.00000,19410404000000.00000,,DPR,True,St. Michael's Park,Y,St. Michael's Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/Q174/,No,36,13,14,{9B9C641A-5AD8-42F9-A38F-39C156B72E2D} +"MULTIPOLYGON (((-74.01821884592034 40.6788971590147, -74.01705636134861 40.67810606500573, -74.01720420718165 40.677979876399746, -74.01767360560716 40.67828703831205, -74.01800826060061 40.67800231845849, -74.01792600656927 40.67794849403862, -74.02008140057448 40.67788019781899, -74.02006542516615 40.677966079981275, -74.02005240555833 40.67803608015026, -74.02004496812994 40.67807606069144, -74.02002598112195 40.67815792977738, -74.01999998904382 40.67825457572013, -74.0198462866333 40.67874933781274, -74.01841174879921 40.67873081949113, -74.01821884592034 40.6788971590147)))",B418,5502,B418,B-06,B-06,B-06,B-06,Ferris St. between Coffey St. and Van Dyke St.,306,38,76,11231,B,4.525,False,Valentino Pier,Yes,100004043,PARK,20100106000000.00000,19990222000000.00000,104 FERRIS STREET,DPR,False,Valentino Pier,Y,Valentino Pier,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B418/,Yes,51,25,10,{1F25B4E9-7593-4E65-89AB-81F995645B35} +"MULTIPOLYGON (((-74.14057884079445 40.58872237819681, -74.14037541510307 40.588638810587724, -74.14026616787585 40.588593931287896, -74.13992824663715 40.5884551105193, -74.1394811455 40.58826627113685, -74.13903046659817 40.58809162931016, -74.13864587466841 40.58792010465458, -74.13820988174805 40.58771975712896, -74.13777336383987 40.58751273298999, -74.13746739617251 40.587360275048574, -74.13691953523696 40.58707658139111, -74.13648677531674 40.58684095352889, -74.13605152686293 40.586598161508306, -74.13556071937234 40.5863172016311, -74.13517539957022 40.58609115476015, -74.13475826638371 40.585840869371715, -74.13434587513403 40.585587582678116, -74.13427491280804 40.58554297979889, -74.13394104780996 40.58533312761003, -74.13372268314862 40.5851951505331, -74.13374663360871 40.5851176820431, -74.13380350633376 40.5849337214963, -74.13382304613724 40.58484802552844, -74.13382998770035 40.58478897274485, -74.13383175793591 40.58473221421725, -74.13382934356416 40.58468208842486, -74.1338234469408 40.58463365427131, -74.13381372100739 40.58458406380083, -74.13378846945146 40.5845001228853, -74.13376647471893 40.58444698331963, -74.13374159377744 40.58439765002477, -74.13370610227189 40.58433820807576, -74.13366417830383 40.58427646285257, -74.13359805499758 40.58419244516148, -74.13355017750128 40.58413923658832, -74.1335233264157 40.58411164420106, -74.1334434080772 40.58403739333218, -74.13336818786516 40.58397638817488, -74.13330098911895 40.58392784052594, -74.13324120921328 40.5838887010212, -74.133179856286 40.58385203795049, -74.13312729855636 40.58382318571357, -74.13308551375368 40.58380180163331, -74.13304424346822 40.58378194783404, -74.1329759074689 40.58375167475883, -74.13289910115834 40.58372125655061, -74.13283814822626 40.5836996514088, -74.1327867148197 40.58368307006681, -74.13274871811323 40.5836717520538, -74.13270930953038 40.58366082378516, -74.13181488756732 40.583474558672464, -74.13169383728695 40.58343515364427, -74.13156000522119 40.5833870091243, -74.1314437648168 40.58333615986013, -74.13134160678653 40.58328797884507, -74.13122616597539 40.58323212513119, -74.13113418135387 40.58318146667494, -74.13106486177762 40.583143980382644, -74.13096487899465 40.58308926954775, -74.13082615584852 40.58300917102566, -74.13082025495584 40.58300741811932, -74.13077222573322 40.58297890995254, -74.13063246125927 40.58288853559314, -74.13058367996544 40.58284016983083, -74.13055120152681 40.582804835028384, -74.13145435868029 40.58225247154904, -74.1314894083421 40.582227055553076, -74.13158791402408 40.582247085714684, -74.13170436948717 40.58226474754879, -74.13184378223353 40.58228098350732, -74.13200756554603 40.58229253198307, -74.13221250737182 40.582297272630015, -74.13236040808229 40.58229451242933, -74.13250657423404 40.582287260419854, -74.13265357335365 40.58227421328592, -74.13279676615886 40.582255493454845, -74.13292341975199 40.58223393521582, -74.13306053650446 40.5822020969357, -74.13318890801222 40.58216847028181, -74.13342824164988 40.58209455126575, -74.13363510825191 40.582019621307204, -74.1337637759689 40.58196672603506, -74.13388265883319 40.58191490914295, -74.1340376395575 40.581839798467406, -74.13422387568433 40.5817398452129, -74.13438783827199 40.58164019146985, -74.13458275802653 40.581507968869424, -74.13470192537062 40.58141930761609, -74.1348343650536 40.581310981208496, -74.13497803186397 40.58118156196908, -74.13507670316031 40.58108808407913, -74.13519505990226 40.58096376247337, -74.13530447142821 40.58083115474198, -74.135431730001 40.580668747306994, -74.13552124271234 40.5805368003911, -74.13556839914162 40.58045754718356, -74.13561302356943 40.58038022947141, -74.13571951378793 40.58016516100384, -74.13591826454036 40.57974651058065, -74.13604326820486 40.579494708187255, -74.1360920366236 40.579405014860136, -74.13613842064987 40.57933808600995, -74.1361993736207 40.57925456840647, -74.136364731282 40.5790454927474, -74.13652263060334 40.57885605355485, -74.13662476297561 40.57875402691342, -74.13673005212202 40.5786555057696, -74.13690716187344 40.578519075104246, -74.13708431667416 40.57840552105212, -74.1372206027659 40.57832424984653, -74.13731370157267 40.578272721322, -74.13743092728777 40.57821447025853, -74.13753111382594 40.57816777610287, -74.13764632944333 40.57812062619859, -74.13778949396418 40.57806742264955, -74.1379081325849 40.57803088556922, -74.13801041295258 40.57800268707057, -74.13869577638035 40.57783413076945, -74.13954880152234 40.57761959944099, -74.14010882469768 40.57747707697929, -74.14047644199218 40.57738368843964, -74.14314141734963 40.57674837503034, -74.14337865259513 40.576647493204526, -74.14353987702053 40.576565247702945, -74.14344577382171 40.575957694238504, -74.1434450917091 40.5759392379191, -74.14344271976466 40.575914279213784, -74.14343625576453 40.575878953364565, -74.1431395188984 40.57428418287822, -74.14441163367188 40.574113410818065, -74.14461127488012 40.57408660948077, -74.14491746900822 40.57404550185798, -74.14505666138577 40.574071081219834, -74.14522693349805 40.5740970029499, -74.14538975011534 40.5741163924449, -74.14554337663989 40.574129942637285, -74.14569857244595 40.57413901682227, -74.14571333818695 40.574139483477595, -74.14582523514973 40.574143016537256, -74.14598843981184 40.57414367375665, -74.14602207557175 40.5741490818894, -74.14647803399875 40.57427554848534, -74.14657570180115 40.574317982756185, -74.14671113420728 40.574390468793005, -74.14681282841975 40.5744560457332, -74.14692252145453 40.57454029556018, -74.14699904686245 40.57460970654098, -74.14706483358249 40.57467856838978, -74.14711978930862 40.574744666850556, -74.14718380583913 40.57483544519003, -74.14758121856897 40.575377396687955, -74.14783015730985 40.575647653954796, -74.14839156352627 40.57622647332179, -74.14863932601277 40.576472628675766, -74.14934641676199 40.577069874935276, -74.14974343609784 40.57740521002776, -74.14983382634404 40.5774815557961, -74.14985692417525 40.57750106527171, -74.1499741909438 40.57760015916323, -74.15007837560992 40.57770506220495, -74.15020203894939 40.57786003772032, -74.15028371453526 40.57799219738834, -74.15034884995026 40.57813023656234, -74.1503964260334 40.57827213762611, -74.15041875393557 40.57837122022538, -74.1504317525896 40.57846292712487, -74.15045852215614 40.5787211951808, -74.15047700360714 40.57885804723573, -74.1505065617808 40.57900142259, -74.15053733152234 40.579114252327535, -74.15060682005078 40.57930955905287, -74.15069146806333 40.57949224299811, -74.15080372806644 40.57968594638766, -74.15089211601179 40.57981146352508, -74.15092455242026 40.57985752601514, -74.15099698027828 40.579935830581775, -74.15105316627354 40.57998818170567, -74.15106159932958 40.57999603940804, -74.15113202593383 40.580053638040106, -74.15126703910211 40.58014593980341, -74.15225740692422 40.580709874206654, -74.15114779335134 40.58207433918863, -74.14619005596765 40.586047718775404, -74.14574481281392 40.58835203892362, -74.1443298852417 40.58848583280945, -74.14229525192687 40.58867056369562, -74.14196271833134 40.58869672101266, -74.14097331781413 40.58868642053992, -74.14066416637932 40.58875742934627, -74.14057884079445 40.58872237819681)), ((-74.14590277214837 40.573933942088566, -74.14582988675933 40.57393299632835, -74.14575109059686 40.57393911183923, -74.14566053622801 40.57394184001935, -74.1455428793122 40.57393855813968, -74.14543143448758 40.57392826938954, -74.14530723881238 40.57390830520251, -74.14517464310276 40.57387649427477, -74.1450595060151 40.57383925169196, -74.14493849419387 40.57378919021808, -74.14491365101549 40.573776113506895, -74.1448103116817 40.57372171968742, -74.14473373810378 40.57365526373393, -74.14468130488724 40.57359635525255, -74.14466014142403 40.573567854149864, -74.14463868018011 40.57353490121895, -74.14465605023443 40.5735066496667, -74.1446786409413 40.57348365060723, -74.14470257828795 40.573466805840965, -74.14472734234286 40.57345433838436, -74.14475595845674 40.5734444676874, -74.14482312415029 40.573442294713736, -74.14490255625338 40.573438853597764, -74.14500787160163 40.57343912504443, -74.14534354352186 40.573451888140475, -74.1455857148248 40.57346824211617, -74.14577670525452 40.57347440715382, -74.14591186371396 40.573470242630435, -74.14605421219831 40.57345971289607, -74.14616836306709 40.57344838227846, -74.14630858877659 40.57343224465412, -74.14640251838058 40.57341906916382, -74.14661702424992 40.5733869899222, -74.1470074564754 40.57332819541646, -74.14721655420671 40.57329670731675, -74.14808066312014 40.57316657476473, -74.14850803651589 40.57310221180923, -74.14848466364198 40.57301548896474, -74.14847021381794 40.572969496173364, -74.14829313846714 40.57262755208337, -74.14775564272789 40.572699234031276, -74.14774576616097 40.572575823360935, -74.14772999314377 40.57237874374639, -74.14770862164082 40.57240130508729, -74.14768735519388 40.572421180020406, -74.14767449577668 40.57243027925613, -74.14766033155979 40.5724367812499, -74.14763485512304 40.57244550587, -74.14761551719559 40.57245204332403, -74.14759788966444 40.57245661092814, -74.14758273080677 40.57245818471167, -74.14756060692923 40.57245988450842, -74.14753856507387 40.572460223501025, -74.14751205412026 40.57245880049592, -74.14748670807893 40.57245599278137, -74.14745515132194 40.57245262570221, -74.1474317928358 40.57244981632479, -74.14741224558414 40.57244659771594, -74.14736030043892 40.57243559059515, -74.14729671863547 40.57242052169168, -74.14724869796659 40.57240581553122, -74.1472229104599 40.57240094702063, -74.14717160336384 40.57239649212366, -74.14713163712283 40.57239101409008, -74.14709336958016 40.57238307002874, -74.14702773802955 40.572370276528396, -74.14694173543374 40.57235500108516, -74.14684368717185 40.572522397338766, -74.14665722059854 40.5724594546499, -74.14662579209019 40.572463384140256, -74.14584330201305 40.5725350282872, -74.14596172182242 40.5733300944038, -74.14582325694892 40.57333373097265, -74.14570376664082 40.5733335133738, -74.14559356043748 40.573331340549906, -74.14515555011313 40.57331076400457, -74.14498039524753 40.57330647806006, -74.14484241859915 40.57330598121834, -74.14467766793393 40.57330977471877, -74.14466299783959 40.573307033082024, -74.14464898088528 40.57330268318257, -74.14463597396491 40.57329683533587, -74.14462571918158 40.573290657132105, -74.1446110327966 40.573278206040555, -74.14460278154885 40.57326794052775, -74.14459813251348 40.573259968621976, -74.14459528988671 40.57325341096932, -74.1445929655262 40.57324567837869, -74.14445541076725 40.57237535457254, -74.14440581355456 40.57206155305674, -74.14438534538759 40.57195287540803, -74.14427088122677 40.57134678969757, -74.14423775580462 40.57119198496376, -74.14471998041623 40.571132441739664, -74.14467489326378 40.570774663741254, -74.14457679687605 40.570377395938685, -74.14416200621008 40.570298073004146, -74.14425464265898 40.57013032739746, -74.14425922895464 40.57012522556129, -74.14426564612928 40.570118694992374, -74.14427682551225 40.570108684212606, -74.14428433043568 40.57010275923098, -74.1442934484576 40.57009627209543, -74.14430451747418 40.570089294423184, -74.1443175995499 40.57008213051347, -74.14432928810596 40.57007659020052, -74.14434139709681 40.57007161038579, -74.14435696293882 40.5700662272926, -74.14437074900101 40.57006242055366, -74.1443930119183 40.570057630589886, -74.14440911709444 40.5700553689354, -74.14442646996723 40.570053954005445, -74.14444133332212 40.570053564300316, -74.14454529340682 40.57005486446816, -74.14468648077559 40.57006219080585, -74.14479393812235 40.570070826531264, -74.14491567801348 40.57008241677543, -74.1450652778566 40.570099310029434, -74.14519079318131 40.570115762557414, -74.14533082449982 40.570136597454905, -74.14546982799203 40.57015990722838, -74.14562306884723 40.570188682989354, -74.14573399643075 40.57021156155921, -74.14587154043934 40.570242366875924, -74.14599207474893 40.570271621328715, -74.1461080150276 40.57030179373121, -74.14622437345365 40.570334122244304, -74.14633807419327 40.57036773727488, -74.14643484262892 40.57039796168582, -74.14648304789914 40.570413580184535, -74.14652209514382 40.570426512368705, -74.1465601336884 40.570439350370755, -74.14662642680119 40.57046230663016, -74.14670952425357 40.570492134917544, -74.1467885834571 40.57052162610522, -74.14685697218094 40.57054802766788, -74.14692747265126 40.5705761293835, -74.14700694079599 40.57060890591733, -74.14706365238864 40.57063302505817, -74.14712366338392 40.570659221060936, -74.14770895703455 40.570939619576706, -74.14788452500514 40.57103613899876, -74.14794155916603 40.571067493917745, -74.14795639707627 40.57105765637264, -74.14796686249765 40.57105071694731, -74.14828650564675 40.57121387451519, -74.14841365873183 40.571257103953016, -74.14854148909632 40.57128778444533, -74.14864585597856 40.57130063682856, -74.14872677971877 40.57130377938206, -74.14880344383035 40.5713069264959, -74.14890564655825 40.5713035476645, -74.1491051731192 40.571278091236216, -74.1492737429786 40.57124495718445, -74.14938841403098 40.57122472638695, -74.1494918066723 40.571203792433366, -74.14959029466559 40.57118279003001, -74.14965237577829 40.571171394961326, -74.14972059245883 40.571156590575676, -74.1498309998801 40.571127335318344, -74.15017246073087 40.57103137244397, -74.15071657353369 40.57087845563205, -74.15256467376375 40.57035904107814, -74.15297086288295 40.57054842365216, -74.1529721717207 40.570544976496286, -74.15298347643568 40.57051649220863, -74.15299625388111 40.570489094694416, -74.15301215742144 40.57045508225237, -74.15302333926492 40.57043174283002, -74.15303701852761 40.57041552144004, -74.15305281559776 40.57040051383757, -74.15306869715795 40.570387851990915, -74.15310397834703 40.57036618694233, -74.15315500765904 40.57033806662822, -74.15319123953664 40.57032005011762, -74.15321410188857 40.57031220125854, -74.15323527739321 40.5703072291246, -74.15324665870044 40.57030344614036, -74.15325857243512 40.57029856110117, -74.153275320434 40.57029194690393, -74.15329901459185 40.57028378263436, -74.15331181542626 40.570280029267686, -74.15332385655132 40.570277655619115, -74.15333700758093 40.57027675554963, -74.1533513385113 40.57027644014595, -74.15336528057527 40.57027494647095, -74.15338926661617 40.57027150325168, -74.15340749459632 40.57027016504268, -74.1534268673897 40.57027161603229, -74.1534435337197 40.57027572718602, -74.15346408260592 40.570282785975735, -74.15348385869724 40.57029220697392, -74.15350130836296 40.57029956527045, -74.15352246194198 40.57030407565322, -74.15355773676514 40.57031465651397, -74.15358933241457 40.5703249703242, -74.15361395329192 40.57033465858216, -74.1536492490234 40.57035380249001, -74.15367421059204 40.57036681682291, -74.15370558473099 40.570381436313056, -74.15376651083804 40.57040808959469, -74.15381265747713 40.5704289893613, -74.15383437341383 40.570438703974816, -74.15384131107666 40.57044217881953, -74.15384639782765 40.570445477838504, -74.15385138148838 40.57045016290512, -74.15385639373318 40.57045597809352, -74.1538684559972 40.570468415313165, -74.15388095573181 40.57048056737927, -74.15391008357318 40.57051300493133, -74.15393812326961 40.570548282392586, -74.15394880422481 40.57057367822492, -74.15395449626182 40.57059313726999, -74.15395763311015 40.570609666725794, -74.15395805175847 40.570623248800395, -74.15395576005653 40.57063421577756, -74.15395112636446 40.57064970293243, -74.15394865671237 40.57066544293637, -74.15394695609177 40.57068897686381, -74.15394660294908 40.57070432950653, -74.1539489083071 40.57071107135772, -74.15395322094737 40.570718196844396, -74.15395788943498 40.570723953054234, -74.15396254218926 40.57072851878945, -74.15397218304646 40.57073558490343, -74.15398279387438 40.57074129892719, -74.15401720300505 40.57075581430537, -74.15402275777936 40.57075874977696, -74.15402782665015 40.57076196236136, -74.154032432863 40.57076580233211, -74.1540370875309 40.57077068234533, -74.15404098096542 40.570775764196526, -74.15404810584371 40.57078922110971, -74.15405189195744 40.570804093624446, -74.15405243485773 40.57081214450047, -74.15405192872556 40.570820036489636, -74.15405031041793 40.57082957793304, -74.15404964397261 40.570836573213185, -74.15405009262541 40.57084216217715, -74.1540516086117 40.570848676351126, -74.15405366950885 40.57085438382344, -74.1540562800739 40.570859298996126, -74.15406172177761 40.57086696778274, -74.15406321470702 40.57086962863624, -74.15406444798707 40.57087286887622, -74.15406505151469 40.570876996078496, -74.15406502792847 40.570880082213165, -74.15406477872361 40.570883654033985, -74.15406457591881 40.57088686288052, -74.15406456386053 40.5708893150293, -74.15406509611189 40.570893771919735, -74.15406652169122 40.5708984644504, -74.15406930676514 40.57090377381916, -74.15407274235555 40.57090849427178, -74.15408046589826 40.57091679306682, -74.15409176886992 40.57092766076358, -74.15411546055833 40.57095420080495, -74.1541262400337 40.57096440281128, -74.15413797251806 40.5709730663398, -74.154157754679 40.570983964076476, -74.1541928733392 40.57100394464321, -74.15421421732107 40.571017151924266, -74.15423428055873 40.57102906776541, -74.15425740675708 40.571040814693774, -74.15426820729415 40.571045292014, -74.15427908527028 40.57104903980306, -74.15429284785607 40.57105260811412, -74.15430467013864 40.5710546301249, -74.15431952672915 40.57105584028638, -74.15433522106572 40.57105571744227, -74.15434913813257 40.57105458839481, -74.15436376549597 40.57105267763503, -74.15437573652267 40.571050587636456, -74.1543844296478 40.57104814813525, -74.1543920955181 40.57104475545636, -74.1543986885746 40.57104062488698, -74.15440717640118 40.57103315712213, -74.15441440544836 40.57102522097414, -74.15444681570798 40.570990284717894, -74.15446646141486 40.57097074840431, -74.15450083557812 40.57093430921524, -74.15451888782412 40.57090951596311, -74.15453419213871 40.570883238735654, -74.15454519880265 40.57086196610855, -74.15455726195738 40.57084203654441, -74.15457247154356 40.570820255766044, -74.15457476561174 40.570815455576444, -74.15457638822836 40.57081087061556, -74.15457801092764 40.57080274928838, -74.15457929310327 40.57078985563089, -74.1545836715308 40.57076771390605, -74.15458806415957 40.5707511995497, -74.15459295065617 40.570735810186186, -74.1545966802354 40.570728245250024, -74.15460223007305 40.57071934328421, -74.15461610134412 40.570699992119444, -74.15462779037684 40.5706812049182, -74.15463167544426 40.570671942279766, -74.15463365306512 40.5706620626469, -74.15463284068899 40.570653944596735, -74.15463066830709 40.57064855967311, -74.15462562121256 40.57064149913772, -74.15462137272523 40.570637628991804, -74.15461755039212 40.57063521982611, -74.15461415791928 40.570633832178856, -74.15461083434963 40.57063313154021, -74.15460756898379 40.570633087306724, -74.1546044821717 40.570633654290106, -74.15459637422165 40.57063735375722, -74.15459085932314 40.57063991867332, -74.15458788359167 40.57064000732733, -74.15458586902497 40.57063800726824, -74.15458494068915 40.57063591119213, -74.15458373385063 40.57063185864748, -74.15458625817776 40.57062909333676, -74.15458969735762 40.57062617010329, -74.15459190753393 40.57062492530338, -74.15459441464708 40.57062390703639, -74.15459916378104 40.570622647112565, -74.15460476514421 40.570621724639366, -74.15461029372767 40.570620991374376, -74.15461491185671 40.57062027554397, -74.15462504762372 40.570617669286335, -74.15463516781368 40.570613435797995, -74.15464314860233 40.570608881900014, -74.15464913460804 40.57060475303376, -74.15465589587836 40.570599343475756, -74.15466548340416 40.57058998310598, -74.15467078653612 40.57058368669101, -74.15467660550286 40.57057576142999, -74.15468483803065 40.57056313847575, -74.15469519720713 40.57054737162184, -74.15470594002123 40.57053459579815, -74.1547228226615 40.57052088686347, -74.15473689832062 40.57051129260932, -74.15475652612467 40.570497888852266, -74.15477376300524 40.57048723041541, -74.15479139544775 40.57047859222365, -74.15480671395328 40.570473304403315, -74.15482479266973 40.57046971485519, -74.1548391921351 40.57046838338009, -74.15485509287062 40.5704682070555, -74.15486971650385 40.570469842508096, -74.15488188624187 40.570473033774526, -74.15489582572151 40.57047806152778, -74.15492071224728 40.57048863616591, -74.15494314298365 40.570503510521455, -74.15496435594576 40.57052336732559, -74.15497603996468 40.570538104883234, -74.15498745268397 40.570555520069945, -74.15499969360889 40.57057462172405, -74.15501058045794 40.57058729724836, -74.15502685483567 40.57060003213988, -74.15503680005953 40.570606923051855, -74.15504707282149 40.570615012121216, -74.155055549868 40.57062432202542, -74.15506251084821 40.57063577092407, -74.15506633330048 40.5706448376647, -74.1550689300046 40.57065291007794, -74.15507377707188 40.57067349046305, -74.15507773350622 40.570691434409206, -74.15508560456583 40.57071490680346, -74.15509540565824 40.57073142633052, -74.1551085363374 40.570745128117245, -74.15511882826335 40.570752303120194, -74.15512911621242 40.57075522224106, -74.15514111520739 40.570750462064716, -74.15514976309954 40.57074281302278, -74.15516762384588 40.570723656319686, -74.15518066367659 40.570710954794244, -74.15519284187197 40.57070251211895, -74.15521193509349 40.57069386018248, -74.15522938020509 40.570686427080744, -74.15523851583322 40.57068133216564, -74.15524286765175 40.570677817834635, -74.15524688414332 40.57067280368005, -74.15524892620745 40.570671382591556, -74.15525141150526 40.57067012750136, -74.15525434034015 40.57066916898523, -74.15526926765853 40.57066476504816, -74.15529091731153 40.57065854286471, -74.15530579068434 40.57064871602727, -74.15531999582853 40.570643537706914, -74.1553288852937 40.570643806651255, -74.15533691602351 40.570641449921304, -74.15534426364732 40.57063480310742, -74.15535538774249 40.57064079367255, -74.15537162308621 40.570646359479326, -74.15539307054074 40.57065069261718, -74.15541935434949 40.57065471302878, -74.15544666628067 40.570660561912305, -74.15547206350737 40.57066724276535, -74.15550734769992 40.57067757446979, -74.1555348910787 40.570682395518645, -74.15555413120624 40.57068309529047, -74.1555712739334 40.5706822426909, -74.1556044645139 40.57067844434329, -74.15562963664306 40.57067466855667, -74.15565631071493 40.57066776860511, -74.15568684107168 40.5706530027281, -74.15570918482926 40.570638066033816, -74.15573486634473 40.570625356314004, -74.15575409019142 40.57062009279011, -74.1557663034733 40.57061863178566, -74.15577790342647 40.57061901318766, -74.15578746742659 40.57062089852677, -74.15579944187533 40.57062387203357, -74.15581259026244 40.57062587408015, -74.155829676116 40.570626972959296, -74.1558435129582 40.57062744497499, -74.15585781322486 40.570627625490246, -74.15587358534009 40.5706279832113, -74.15588529982887 40.57063038162564, -74.15589538768808 40.57063560449541, -74.15591281332698 40.57064465904981, -74.15593326154435 40.570650926872766, -74.15595543214891 40.570655424620846, -74.155978904654 40.57066014302687, -74.15599987725489 40.570663394263796, -74.15602253413249 40.57066473949699, -74.15604171012279 40.57066477648698, -74.15605935459425 40.57066436979393, -74.15607834575378 40.57066263119132, -74.1561028934584 40.570656970447544, -74.15612228617026 40.57065070164527, -74.15615034927171 40.57064040200584, -74.15616941400052 40.57063073595622, -74.15619143495873 40.57061365455343, -74.15620552772945 40.57060135941787, -74.15623088439317 40.570582090596034, -74.15625733331298 40.570560260987385, -74.15627524776289 40.57053796750554, -74.15629021364222 40.57051172652367, -74.15630105768253 40.57049036119383, -74.15631941219166 40.570456293626734, -74.15633404354958 40.57042589446415, -74.15634242894359 40.570402033516054, -74.15635176848751 40.57036756487103, -74.15636513956751 40.57031488299815, -74.15637359186125 40.57027622721139, -74.15638112149205 40.57022934907459, -74.15638491387128 40.57020078732503, -74.15639293815777 40.5701271196597, -74.15639477642809 40.57003413332174, -74.15639766265025 40.56991512665162, -74.15640177299751 40.56983072013395, -74.15640647538314 40.56980196803308, -74.15641819781766 40.56976192097813, -74.15643319926781 40.56972373714792, -74.15644916672713 40.56968657950037, -74.15646631936896 40.56965074941292, -74.15648487219359 40.56961678330571, -74.15650435522022 40.569583682234324, -74.15652668200906 40.56954762355842, -74.15655980847592 40.56950413702712, -74.15658771905191 40.569477366861314, -74.15663036511312 40.56944512481115, -74.15664742695358 40.56943459600582, -74.15666447814073 40.56942909395018, -74.15667775483705 40.569428996595896, -74.15668964401316 40.569430428425306, -74.15672001205493 40.569434901335896, -74.15675169504127 40.56944012978669, -74.15678998301873 40.56944744653935, -74.15681740977075 40.56945357050138, -74.15684360809098 40.569460575047835, -74.15686546388442 40.56946844101844, -74.1568960846129 40.56948294540023, -74.15696361797178 40.56952049243688, -74.157036529346 40.569562595948994, -74.1571061395345 40.569610453790055, -74.15711866261572 40.56962080171928, -74.15713596456295 40.56963554938514, -74.15715687498324 40.56965263888302, -74.1571814827959 40.56966970800899, -74.15720044833452 40.56967979586685, -74.15721196275852 40.56968454479332, -74.15723125635425 40.569690514991024, -74.15724312266548 40.5696937469465, -74.15745466828253 40.5693965149348, -74.15751629035472 40.56918520930499, -74.15755580935395 40.56919427563809, -74.15755864000623 40.569191785402374, -74.15756383689067 40.56918866965723, -74.15756938757073 40.56918685468712, -74.15757670455105 40.569185901798974, -74.15758233290738 40.56918597782693, -74.15758820141117 40.569186734323, -74.15759329990203 40.56918796375102, -74.15760384672244 40.56919204757635, -74.1576144808386 40.56919759373571, -74.15762241653107 40.5692021115936, -74.15763539568992 40.56921006164001, -74.15765385775076 40.569222502288994, -74.15767344843283 40.5692373052674, -74.1576912970383 40.569253001254516, -74.15771135789156 40.5692673695273, -74.15772740519787 40.56928287977184, -74.15774256894746 40.56929528441172, -74.15775540095719 40.569305917314445, -74.15777259574516 40.56931476838578, -74.1577893673266 40.56932343002479, -74.1578116607098 40.56933554389759, -74.1578338325068 40.56935617060831, -74.15785212360932 40.56937319153707, -74.15787020094578 40.56938969945671, -74.15789057479878 40.56940206089539, -74.15790859388039 40.569413400768546, -74.1579201811936 40.5694220055776, -74.157930475815 40.56942728201647, -74.1579384496391 40.56942942691331, -74.15795027885228 40.56943195733682, -74.15795954027813 40.56943527564852, -74.15796957653949 40.56944015980968, -74.1579775554649 40.569444460556795, -74.15798770024574 40.56945178769501, -74.15800031336224 40.569459215898306, -74.15801447023674 40.56946677525455, -74.15802733044879 40.56947132683395, -74.15804121984216 40.5694746387723, -74.15805674146469 40.56947754232569, -74.15806917906971 40.56947916416934, -74.15808270985485 40.56948064222404, -74.1581019569379 40.56948192059761, -74.15811734166954 40.56948336547867, -74.1581333664725 40.56948431959021, -74.15814939299027 40.569486496611894, -74.15816060978538 40.56948672521112, -74.15816990057594 40.56948597939023, -74.15818050374693 40.56948839170823, -74.15819360993444 40.56949258452086, -74.15820439676364 40.56949525683583, -74.15821710690341 40.56949776530646, -74.15823393680063 40.56950059138981, -74.15825524445385 40.56951029222334, -74.15828352431708 40.569524033112735, -74.15830473950227 40.56953706511128, -74.1583204227238 40.56954635674001, -74.15834569456196 40.56956247014402, -74.15836547972289 40.56956953811584, -74.15839264062207 40.56957601507476, -74.15842193607388 40.56957878071622, -74.15844686146026 40.56957726587291, -74.15846010875862 40.56957671178632, -74.15847381588641 40.56957684776757, -74.15848340810906 40.569577717950196, -74.15849193329261 40.56957929741797, -74.15850573120365 40.56958385035163, -74.15852204267294 40.56959163450544, -74.15858093851574 40.56957935828674, -74.15866874908234 40.56952142954403, -74.15871843000025 40.56947775112222, -74.15875619047557 40.56942251288804, -74.15877704569947 40.56937599169032, -74.15878399836224 40.56931069842388, -74.15879057001074 40.56930370936018, -74.15880891718176 40.569282624287794, -74.15882406998132 40.56926153192227, -74.15884167607013 40.56924464972509, -74.15885840285003 40.569228959237, -74.15886326078844 40.569222380477456, -74.15886924615873 40.569216656558964, -74.15888702336056 40.5692042029066, -74.15890143658454 40.56919589632615, -74.15891023842485 40.569192168578425, -74.15895371544997 40.56918264119106, -74.15895805608163 40.569192910190125, -74.15896274516811 40.56920023848826, -74.15896658227372 40.56920336520887, -74.15897397085038 40.569206701339596, -74.15898182368572 40.56920960997784, -74.15899079633449 40.56921116357457, -74.15900107623351 40.569212217370016, -74.159013195211 40.5692124527419, -74.15903410528296 40.56920940883227, -74.15904854945234 40.56920716273276, -74.15907874696987 40.56919603994083, -74.15911597584189 40.56918156284664, -74.15919975137702 40.56914985810849, -74.1592192243786 40.569143889446124, -74.15922561936293 40.569140591859785, -74.15923090177196 40.56913771996319, -74.15923771900678 40.56913569423455, -74.15924684782496 40.56913439922991, -74.15925846564033 40.56913395177116, -74.15926781649442 40.56913415403235, -74.15927744746334 40.569131981216366, -74.15929415063147 40.56912526174079, -74.15937182829592 40.56910067588885, -74.15941478249373 40.569087867534066, -74.15942322867718 40.5690845661895, -74.15943059237776 40.56908044416612, -74.15944262456848 40.56907302423856, -74.1594629268392 40.569064222228334, -74.15948206547476 40.56905770736595, -74.15950579257661 40.56905246487644, -74.15953138813744 40.569046350779246, -74.15964304755524 40.569019951612376, -74.15974102464212 40.56899241598927, -74.1597632324121 40.56898640650982, -74.15978022248804 40.56898463855884, -74.1598298537702 40.568973001350784, -74.15985063255802 40.56896942526388, -74.15986211357014 40.5689680801096, -74.15987795827377 40.568967836528266, -74.15988857058132 40.568968154051575, -74.1599093591817 40.56896867893754, -74.15993400259886 40.56896886345685, -74.15995828168441 40.568970270492564, -74.15997805300582 40.568970575253175, -74.16001380071505 40.56896940970991, -74.16003564489004 40.56896937927887, -74.16006397167226 40.56897060955294, -74.16010023992854 40.5689713199544, -74.16011297602539 40.56896988927683, -74.16011934344007 40.568968909633895, -74.16012710309369 40.568968898817296, -74.16014412685969 40.56896887508511, -74.1601582742245 40.568966499583894, -74.16018193227733 40.56896303018726, -74.16021798803664 40.56895982986181, -74.16024954259177 40.568957280581444, -74.1602709805048 40.56895379265108, -74.16028142729247 40.56895304504633, -74.16030012538329 40.56895343679901, -74.16033858190214 40.568954174689374, -74.16035285843235 40.56895395754558, -74.16036174560948 40.56895286630856, -74.16037923341317 40.56895232949422, -74.16039391088175 40.568952860122984, -74.16041799416519 40.56895583515137, -74.16046112995976 40.568960246016744, -74.16048651114889 40.56896375142882, -74.16051101469363 40.568966665515305, -74.16052850924359 40.568970900558135, -74.16053714711836 40.568974667995775, -74.16054251010155 40.56897783485609, -74.16055075447018 40.56898296443857, -74.16057976109425 40.56899976013442, -74.16058823460959 40.56900490920545, -74.16059212160062 40.56900812855637, -74.16059637265488 40.56901542137955, -74.16060349116701 40.56902526768843, -74.16061069534882 40.56903292559797, -74.16062024059413 40.56903981748777, -74.16062945584325 40.56904649010978, -74.16063524885449 40.569053656502646, -74.16064115517028 40.56906570719186, -74.16065323886156 40.56908221315071, -74.16066530077129 40.56909015153079, -74.16068137037458 40.569095026116045, -74.16069984458892 40.56909806026128, -74.16072875527297 40.56910046744309, -74.16081910225807 40.569099426957706, -74.1609400680956 40.56910299562574, -74.16116844715053 40.56910105447784, -74.16124845868296 40.56910384098418, -74.16129288070118 40.56910583632112, -74.16131270301243 40.56910767617798, -74.16132996754911 40.56911002752061, -74.16135127536806 40.56911379511252, -74.16138729186795 40.56912170607043, -74.1614140634716 40.56912830263233, -74.16142551140672 40.56913037486594, -74.16144180204549 40.56913237635509, -74.16145422117678 40.56913416445561, -74.16146503806914 40.56913507589324, -74.16147214222654 40.569135017278754, -74.16147975782985 40.569135006573305, -74.16148957853439 40.56913563304158, -74.16150579278765 40.56913681064737, -74.1615165423627 40.56913820755853, -74.16154148422704 40.56914311457439, -74.16155902319984 40.56914565190564, -74.16159624874169 40.569150045442555, -74.16161071563216 40.56915186216382, -74.16161500851764 40.56915199030254, -74.16161818254237 40.56915140409677, -74.16162928009155 40.56914775665942, -74.16164553908273 40.56914350761049, -74.16166299495698 40.56914000791382, -74.16166902788292 40.56913793361567, -74.1616734569218 40.569135767019304, -74.1616765321994 40.56913341501864, -74.16167985105882 40.56913021798129, -74.16168205764484 40.5691256131856, -74.16168383582408 40.56911623710351, -74.16168488062047 40.56910684314254, -74.1616883612148 40.56909289359205, -74.16169695559532 40.569078171395695, -74.16170123663967 40.5690753611302, -74.16170683929897 40.56907360442095, -74.16171601839164 40.569074563166836, -74.16172290887617 40.56907843833697, -74.1617265658804 40.56908711786492, -74.16173511063842 40.569107018274174, -74.16174195155405 40.56911578066975, -74.1617494989142 40.56912270139417, -74.16175957478708 40.56913068117869, -74.16177044631195 40.569136595835275, -74.16178149250527 40.56914002839408, -74.16180194841999 40.56914358547856, -74.16183449306916 40.56914610523239, -74.1618502151293 40.569146404569246, -74.16187918131328 40.569143424434486, -74.16192377965216 40.56913386012212, -74.16199853595592 40.569110718353436, -74.16203494918769 40.56909764358201, -74.16205602702553 40.56908788816257, -74.16211624251447 40.5690568367944, -74.16218107596809 40.569029480938774, -74.16221931713149 40.56901153528205, -74.16222844711845 40.56900588959557, -74.16225705938153 40.56898995849428, -74.16236695811048 40.56894558916004, -74.16238670374916 40.568938241769345, -74.16239264998514 40.56893695641677, -74.1623992561393 40.56893655895046, -74.16240891419359 40.56893683706636, -74.1624231496172 40.568937687747734, -74.16244207549506 40.56893996633309, -74.1624623825884 40.5689415801744, -74.1624700968951 40.568942347318476, -74.16248091633847 40.568942372538785, -74.16249569471275 40.56894165822876, -74.16251088086511 40.56894109552892, -74.16252826183592 40.568942281245555, -74.16254010794503 40.56894395387158, -74.16254885396451 40.5689465007918, -74.1625572117891 40.568950149604476, -74.16256478062581 40.56895276662936, -74.16257253963879 40.56895443422974, -74.16258211823158 40.568956026311575, -74.16259286040186 40.56895583910649, -74.16260923897438 40.56895370238671, -74.16262922576864 40.56894986396436, -74.16266877413098 40.568937783236706, -74.16269643475414 40.56893021656229, -74.162731319144 40.56891741029077, -74.16281051957347 40.56888641450916, -74.162868601024 40.56886278070471, -74.16299011926172 40.56882426572997, -74.1629973211208 40.56882118921835, -74.16304250545429 40.56880318030331, -74.16308157394903 40.56879195921649, -74.16311088527937 40.568785812029724, -74.16315155486713 40.56877693541746, -74.16319036446855 40.568769481563436, -74.16321758882317 40.56876513836721, -74.16325066980352 40.56876151356617, -74.16328538589764 40.56875530101985, -74.16331034088167 40.56875157158445, -74.16332979971511 40.56874773289009, -74.16338322083767 40.568734631704835, -74.16345378124689 40.568715665292856, -74.163528507569 40.568691777833486, -74.16359189415341 40.568671440141344, -74.16360885884843 40.568663240099845, -74.16363251826078 40.568651282528165, -74.1636460618482 40.568645471048065, -74.16368305137256 40.56863311985569, -74.16373198944423 40.568617517830184, -74.16375442750986 40.568607378336054, -74.16379019430475 40.56859242903218, -74.16381420426661 40.568582831203, -74.16382914953867 40.56857509237666, -74.16384032194591 40.56856931397281, -74.1638754136083 40.568549704480134, -74.16391018777611 40.56853305816192, -74.16397045092346 40.568508024869374, -74.16402231409091 40.56849105784875, -74.16406102453591 40.56847795663993, -74.16408611668089 40.568468109563234, -74.16412906726076 40.56844811234622, -74.16414648341703 40.5684396288146, -74.16416191622461 40.56843329046737, -74.16418548542671 40.56842458110928, -74.16422165343886 40.56840623251005, -74.16424444338215 40.56839325936036, -74.16427773234739 40.56837106510911, -74.1642969936422 40.568359477502476, -74.16431905201895 40.56834675392954, -74.16434234769098 40.56833152241691, -74.16436541071035 40.568318687533456, -74.16438224259615 40.568309858999775, -74.16439871428267 40.568301980134024, -74.16441312343854 40.568293816950145, -74.16442948472944 40.568283309601085, -74.16445652842607 40.56826325758465, -74.164465427971 40.568257181597794, -74.16449268843581 40.56824699993363, -74.16451994051569 40.56823437604701, -74.16453302402033 40.5682269000473, -74.1645399960095 40.56822116541356, -74.16454679257058 40.56821516447487, -74.16455348113352 40.568206069481285, -74.16455465192777 40.568201494029886, -74.16455509752029 40.568197821044336, -74.16458016433181 40.56817201206283, -74.16460375032128 40.56815196406491, -74.16464343058391 40.56812474191368, -74.16467845429216 40.56810697745057, -74.16468554912868 40.56810366234661, -74.16469098784361 40.568102529791375, -74.16469606020244 40.568102240654014, -74.16470422910015 40.56810253782191, -74.16472345741528 40.56810301814667, -74.16474234860615 40.56810230845567, -74.16475704543494 40.56810069524584, -74.16476438956929 40.56809839287177, -74.16477235086157 40.568093995887764, -74.16477811028095 40.568090748432084, -74.16478584233724 40.568087729581535, -74.16479054071695 40.56808471508268, -74.16479856684022 40.56807787847744, -74.16480840702589 40.56806826294553, -74.16481172946169 40.568060854049335, -74.16482150143601 40.56804130310481, -74.16483333496892 40.56802739190051, -74.16484693493378 40.56801054424442, -74.16487271236153 40.56796364654831, -74.16487882975643 40.5679523406621, -74.16488076982222 40.56795037833156, -74.16489093035975 40.56794425907726, -74.16489446027626 40.567941018418146, -74.16490150672223 40.567930549587246, -74.16491432363523 40.56789548809647, -74.16492295036012 40.56786647515353, -74.16492709149112 40.56785778092751, -74.16493615562872 40.56784953529904, -74.16494615611164 40.56784412318291, -74.16495273146687 40.5678418237017, -74.16496130603423 40.56783999682711, -74.16496783036196 40.56783998745734, -74.16497673689243 40.56784060683548, -74.16502748464178 40.56784566964178, -74.16505782704449 40.567848432086436, -74.16507969832328 40.56785043854833, -74.16509481730424 40.56785051857892, -74.16510966772378 40.56785039547456, -74.16514198332756 40.567847882477686, -74.16517074344381 40.56784590319337, -74.16517863556832 40.56784507596777, -74.16518505363095 40.567843639403904, -74.16525782296961 40.56782171857859, -74.16526559671138 40.567818864432034, -74.16527070700371 40.567816257259274, -74.16527474998446 40.567813731768894, -74.16528092060209 40.56780917433052, -74.16528999097208 40.56779821808008, -74.16529698723139 40.56778611033857, -74.16529939804403 40.56778112065368, -74.1653001210751 40.56777600642328, -74.16529749680063 40.56776488239283, -74.1652902235518 40.56774569993604, -74.16527058687959 40.567713292123976, -74.16526781724659 40.56770689336486, -74.16526581959683 40.567698460106, -74.1652614554073 40.567675680360786, -74.1652593732439 40.567669838938876, -74.1652575548465 40.56766655823506, -74.16525323047502 40.56766225903878, -74.16524226073265 40.56764960621179, -74.16522842297537 40.567624194345946, -74.1652174643535 40.567591205809144, -74.16521248324338 40.56756868990302, -74.16521161953561 40.56755751020713, -74.16521342732234 40.567542178843375, -74.16521606743595 40.56753106885158, -74.16522380971483 40.56751121010931, -74.16523359526971 40.567452832004086, -74.16523824859952 40.567432108695876, -74.16524114520602 40.56741394000691, -74.16524239195773 40.56738901613965, -74.16524210640426 40.56735139074771, -74.16523946413191 40.567319613163654, -74.16523888841765 40.567312674533774, -74.16523775263376 40.5672707494496, -74.16524883793832 40.567214144410016, -74.16525087517799 40.56720374129729, -74.16525399723139 40.56718506078419, -74.16525482203066 40.56717717008383, -74.16525457571358 40.567165432073665, -74.16525354481759 40.5671568398312, -74.16525178741499 40.56713858958536, -74.1652476293326 40.56710363892467, -74.16524407365812 40.56709071337796, -74.16524221715954 40.567083957596296, -74.16523918265248 40.567070240637335, -74.16523916527782 40.567063216554615, -74.16524338445474 40.567037894880436, -74.16525665237593 40.566977643168286, -74.16526132258753 40.56696566935073, -74.16526483378158 40.56696061684717, -74.16526995001747 40.56695662015302, -74.16527442804347 40.56695335830616, -74.1652883372896 40.566945192128124, -74.16529789265915 40.56693987517649, -74.16530964298266 40.56693301876677, -74.16532844571756 40.56692342360972, -74.16536414560935 40.56691343761087, -74.16541432907415 40.5669045338898, -74.16545486813249 40.56689932359096, -74.16550021694019 40.566887483875014, -74.16553108917196 40.56687787129421, -74.16556631671388 40.56687266951071, -74.1656044329484 40.56686378309935, -74.16562691601506 40.56685261837243, -74.16564167385312 40.5668442978383, -74.16565001637848 40.566836576399005, -74.16565738265382 40.5668270805285, -74.16566919023626 40.56680571921638, -74.1656806766711 40.56677866613717, -74.16568053595586 40.566770970439286, -74.1656788200551 40.56676568772325, -74.16567688077801 40.56676318345419, -74.1661184711727 40.566564657641244, -74.16616684689187 40.56655548244483, -74.16620041882926 40.56655035040091, -74.16624491182611 40.56654542587228, -74.16627974208649 40.56654248206488, -74.16631947926477 40.56653640631449, -74.16635408833481 40.56653331691949, -74.16639813751452 40.566532267940595, -74.16645290293468 40.566531212421566, -74.16649506465126 40.56653140256378, -74.16650730096634 40.56653199538397, -74.16652499370495 40.56653388605629, -74.1665380560685 40.56653615265529, -74.16654620901201 40.56653628131664, -74.16655594770513 40.56653493351582, -74.16656655122887 40.56653234353426, -74.16657580776926 40.56652942951451, -74.16659329405813 40.56652145610625, -74.16660427421945 40.566516004601645, -74.166609348931 40.56651244916584, -74.16661114435195 40.56650934424712, -74.16661298960314 40.56650349264966, -74.16661687078378 40.56649816940976, -74.16662288754857 40.56649261343756, -74.16662994679295 40.56648791865733, -74.16663403441554 40.566483933300056, -74.1666375764805 40.566479946933, -74.16664024985911 40.566474236416894, -74.16664368531708 40.5664663311121, -74.16664665421808 40.56645743140208, -74.16670678650749 40.566398628904466, -74.16672076298346 40.56650031770774, -74.16925151729234 40.56611175215249, -74.16928156006843 40.566080393863025, -74.16929301090293 40.56608325326937, -74.1692968694598 40.56608354115412, -74.1692985601754 40.56608343960424, -74.16930465536731 40.566082373401976, -74.16931593833998 40.56608050168575, -74.16932533339667 40.56607966385457, -74.16934121823815 40.56607876692619, -74.16934913796817 40.566079149680895, -74.1693612310985 40.56608057719642, -74.1693749223862 40.56608265613658, -74.16938534159236 40.56608382136298, -74.16939412283826 40.56608400562873, -74.16942051504843 40.56608178742958, -74.16942804232842 40.56608154309048, -74.16943055078988 40.5660812124992, -74.16943354882814 40.56608069477668, -74.16945844937169 40.56607372128603, -74.16950438832608 40.56605947921198, -74.16923722326561 40.56704402912087, -74.16912339205959 40.56869259278644, -74.16937009901402 40.570221898762206, -74.1694497696107 40.570715750637746, -74.16932495867896 40.570837913684045, -74.1692878773769 40.57086258422597, -74.16845731135825 40.57132696845122, -74.16749875390985 40.57187165675729, -74.16497173485897 40.57330752125404, -74.16481349932062 40.57339738495112, -74.16436967922745 40.573649428813205, -74.16090013259097 40.575619655735885, -74.15722900381445 40.577704111168785, -74.1538528734778 40.57962088668283, -74.15367451113285 40.57969041812644, -74.15342049103418 40.57982147518554, -74.15306663711624 40.58002680678608, -74.15278807167152 40.5802096186124, -74.15252221326342 40.58040429442063, -74.15151713176004 40.57989676718644, -74.15138504282581 40.57981996530628, -74.15136288342644 40.579803377108774, -74.15135024914288 40.57979391932628, -74.15128775096026 40.579747134701336, -74.15119486095917 40.57965905953101, -74.15116962266839 40.57962946996078, -74.15114257490133 40.57959775932665, -74.15106709566592 40.57947417954624, -74.15098201447024 40.57930616780485, -74.15091096112764 40.57912446309489, -74.15087394377699 40.5789994899717, -74.15084128424583 40.5788471117277, -74.15082194283498 40.57869483575922, -74.1507943349158 40.57844198374543, -74.15076797374132 40.57827150474933, -74.15072397659252 40.57811282595562, -74.15063724507418 40.577907357848495, -74.15053502564442 40.57773379757571, -74.15040943420601 40.577568819201694, -74.15032444807053 40.57747586382585, -74.1502391860324 40.57739350973396, -74.15013534292044 40.57730489419423, -74.15010212786224 40.57727627927185, -74.15002187058256 40.57720713729304, -74.14963863350572 40.57687697403376, -74.14851801362786 40.575911520389404, -74.14826791960861 40.57564817133628, -74.14812147599801 40.575453771064545, -74.14722398709331 40.57448933698885, -74.14716679449627 40.574426911084366, -74.14712559996251 40.5743865707688, -74.14707836977229 40.574344242600915, -74.14698360941755 40.57426970039479, -74.14688487090315 40.574203925312155, -74.14678095895408 40.574145265504804, -74.14671745236325 40.574114579267885, -74.14628466969376 40.57397329747936, -74.14615142887276 40.573950800836535, -74.14597386593272 40.57393486396392, -74.14590277214837 40.573933942088566)))",R013,5051,R013,R-02,R-02,R-02,R-02,"Forest Hill Rd. and Arthur Kill Rd. bet. Richmond Ave., Richmond Hill Rd., and Rockland Ave.","502, 503","50,51",122,"10306, 10314",R,760.79,False,LaTourette Park & Golf Course,No,100005173,PARK,20100106000000.00000,19280726000000.00000,1001 RICHMOND HILL ROAD,DPR,True,LaTourette Park & Golf Course,Y,LaTourette Park & Golf Course,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/R013/,No,63,24,11,{ED70220C-95BB-4569-A622-BEA6F2EB5192} +"MULTIPOLYGON (((-73.87498589510204 40.70510512196661, -73.87538854999443 40.705009630591675, -73.87542393387498 40.7050960388383, -73.87561254226733 40.70555661715353, -73.87568874755182 40.7057427057036, -73.87571047731682 40.70579577024508, -73.87502950709943 40.70595726563628, -73.87500586227559 40.70589901823997, -73.87491515032617 40.7056755692297, -73.8749056342801 40.70565212935814, -73.87519140823659 40.70558059579711, -73.87518169622408 40.70555812738859, -73.87516684250429 40.7055237621374, -73.87513886236624 40.70545902727488, -73.87510834324817 40.70538841740891, -73.87501630439256 40.705175476003156, -73.87498589510204 40.70510512196661)))",Q289,6207,Q289,Q-05,Q-05,Q-05,Q-05,"74 St., 75 St. bet. Cooper Ave. and 78 Ave.",405,30,104,11385,Q,1.016,False,Pinocchio Playground,Yes,100000267,PARK,20090423000000.00000,19410908000000.00000,,DPR/DOE,False,Pinocchio Playground,Y,Pinocchio Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q289/,No,28,15,6,{B90282E5-1A26-41E7-8969-453B4A4C5831} +"MULTIPOLYGON (((-74.01078297167567 40.72569074073238, -74.01009770352238 40.72520876306822, -74.01003390844262 40.725175295821714, -74.00997992544096 40.725146033967654, -74.00989766272038 40.72510287966716, -74.00989494189237 40.72509768306298, -74.00989841418867 40.72509385109827, -74.00990382679838 40.725091979374895, -74.009912596536 40.725091868758156, -74.01094130189533 40.725199025334014, -74.01095394997344 40.72520283418542, -74.01096107156837 40.725214107881534, -74.01096393798896 40.72522597631848, -74.01086801089606 40.72570896804503, -74.01086524900592 40.725721154894394, -74.01086262867064 40.725723104743686, -74.01085901753727 40.72572466656697, -74.01085253595717 40.725725994528375, -74.01084472013228 40.72572582056604, -74.01083616538548 40.725723742096115, -74.01083154283671 40.72572187397483, -74.01078297167567 40.72569074073238)))",M379,5756,M379,M-01,M-01,M-01,M-01,Canal St. bet. West St. and Washington St.,101,1,1,10013,M,0.669,False,Canal Park,Yes,100003805,PARK,20100106000000.00000,,,DPR/CDOT,False,Canal Park,Y,Canal Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/M379/,No,66,26,10,{4AFACBD3-C30E-4948-BE9B-35EECBA0E49B} +"MULTIPOLYGON (((-73.90614212686357 40.659676410464016, -73.90578849409115 40.659729686824264, -73.90571337204321 40.659436019791436, -73.9060669089355 40.659383429777236, -73.90614212686357 40.659676410464016)))",B533,5305,B533,B-16,B-16,B-16,B-16,Newport St. and Osborn St.,316,42,73,11212,B,0.249,False,Abib Newborn Garden,No,100003834,PARK,20100106000000.00000,20071101000000.00000,495 OSBORN STREET,DPR,False,Abib Newborn Garden,N,Abib Newborn Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B533/,No,60,19,9,{AD2ED4D0-A6E0-4F5E-ABBE-A732A0935378} +"MULTIPOLYGON (((-73.94741273033296 40.69295205842137, -73.9475107832102 40.692940797242734, -73.94756697008349 40.693221284039545, -73.94746891680323 40.69323254526565, -73.9473828209523 40.693242434090834, -73.94729010977913 40.69325308165597, -73.94723903674321 40.69325894760805, -73.94719225400046 40.693264320223996, -73.94711207764504 40.69327352807328, -73.94706715014783 40.69327868806938, -73.94701096532889 40.69299820103062, -73.94701987009745 40.69299717854544, -73.94705589264139 40.692993041056305, -73.94712720768095 40.692984850356986, -73.94713606985034 40.69298383324633, -73.94718285121846 40.69297845975198, -73.947202763291 40.69297617348092, -73.94723392404383 40.69297259472517, -73.94727775567917 40.69296756023368, -73.94732663483593 40.692961947204914, -73.94734355458817 40.692960003535866, -73.94741273033296 40.69295205842137)))",B474,4697,B474,B-03,B-03,B-03,B-03,Hart St. bet. Marcy Ave. and Tompkins Ave.,303,36,79,11206,B,0.332,False,Hart to Hart,No,100004887,PARK,20100106000000.00000,20021120000000.00000,104 -114 HART STREET,DPR,False,Hart To Hart,N,Hart to Hart,Greenthumb,Garden,http://www.nycgovparks.org/parks/B474/,No,56,25,8,{0C4AC031-EFE8-4859-A210-22187EE1918E} +"MULTIPOLYGON (((-73.81909067370539 40.822444158027416, -73.81909675842425 40.822443693011124, -73.81910286127274 40.82244397183414, -73.81911076979738 40.82244544214652, -73.81911696248885 40.822447556324256, -73.81912205745498 40.82245012443163, -73.81912653084142 40.822453287693385, -73.8191311203842 40.82245776406292, -73.81916089549017 40.822504322374236, -73.81916131570593 40.82250497949613, -73.8191614950315 40.82250529405109, -73.81923856401866 40.82264043822966, -73.81923809823576 40.822645209237244, -73.81923693371886 40.82264930377612, -73.81923482923875 40.82265381287145, -73.81923192532842 40.822658058668665, -73.8192282731848 40.82266195840215, -73.8192227376837 40.8226662045761, -73.819216372033 40.822669713741575, -73.81921000831555 40.82267207477511, -73.81920247397615 40.82267379551994, -73.81919544857972 40.82267449409679, -73.81918993657614 40.82267445393658, -73.81886857138565 40.82257455623943, -73.81886235097964 40.82257173511411, -73.81885731685514 40.82256858987176, -73.81885346021674 40.82256530329982, -73.81884989753638 40.822561153612185, -73.81884719643269 40.822556645078805, -73.81884526242673 40.82255077709831, -73.81884471635018 40.822545843313506, -73.8188451230492 40.822541449523165, -73.81884632610675 40.82253713982971, -73.81884830750649 40.822533000652605, -73.81885206820252 40.82252798538477, -73.81885684928483 40.82252349400848, -73.81886182717794 40.82252029605601, -73.81893387587381 40.82249494943787, -73.81905809896094 40.82245594666211, -73.81909067370539 40.822444158027416)))",X133,5782,X133,X-10,X-10,X-10,X-10,Dewey Ave. bet. E. Tremont Ave. and Edison Ave.,210,13,45,10465,X,0.017,False,Derosa O'Boyle Triangle,Yes,100004699,PARK,20100106000000.00000,19380101000000.00000,,DPR,False,Derosa O'Boyle Triangle,Y,Derosa O'Boyle Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X133/,No,82,34,14,{9115D6A7-E44A-4E30-875D-52452ECC5285} +"MULTIPOLYGON (((-73.75764301047239 40.745721372989784, -73.7580624556228 40.74561797487661, -73.75811931683099 40.7457342717951, -73.75838762930972 40.74565727223829, -73.75874435505672 40.74641110472614, -73.75805944397196 40.746598554495314, -73.75764301047239 40.745721372989784)))",Q317,5331,Q317,Q-11,Q-11,Q-11,Q-11,64 Ave. bet. 218 St. and 219 St.,411,23,111,11364,Q,1.48,False,Tall Oak Playground,Yes,100000223,PARK,20090423000000.00000,19481002000000.00000,64-45 218 STREET,DPR/DOE,False,Tall Oak Playground,Y,Tall Oak Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q317/,No,25,16,6,{A3A77053-66AC-461F-B112-CFFDF191FF21} +"MULTIPOLYGON (((-73.94895711388925 40.79266284680027, -73.94943281516383 40.79200955613898, -73.94992304529173 40.792216064918634, -73.94944706624663 40.79286974197252, -73.94895711388925 40.79266284680027)))",M213,4880,M213,M-11,M-11,M-11,M-11,"N/s E. 104 St., Madison Ave. and Park Ave.",111,8,23,10029,M,0.97,False,Mae Grant Playground,Yes,100004528,PLGD,20100106000000.00000,19510111000000.00000,55 East 104 STREET,DPR,False,Mae Grant Playground,Y,Mae Grant Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M213/,No,68,30,13,{08742DA6-5A01-4969-A710-9BAC756736A7} +"MULTIPOLYGON (((-73.85629498777283 40.73569155224559, -73.85823111150931 40.73511296792292, -73.8583943595379 40.73542446123792, -73.85645018238863 40.73599933265673, -73.85629498777283 40.73569155224559)))",Q357B,4918,Q357B,Q-06,Q-06,Q-06,Q-06,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 99 St. and 102 St.",406,29,112,11374,Q,1.598,False,Real Good Park,Yes,100000235,PARK,20090423000000.00000,19540830000000.00000,99-02 HOR HARDING EP SR S,DPR,True,Real Good Playground,Y,Real Good Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q357B/,No,35,16,6,{0431E3CF-D1C4-4A37-B3D8-FF6B2BC0F5D2} +"MULTIPOLYGON (((-73.98158112112017 40.69756187748082, -73.98201148160082 40.697579302024536, -73.98275192851239 40.69826017928903, -73.9823197083881 40.69823315506788, -73.98233666826675 40.697924638547185, -73.98155639498975 40.697878984449055, -73.98158112112017 40.69756187748082)), ((-73.98292492050315 40.69809559773647, -73.982375130928 40.69759402403138, -73.9829599181526 40.69761769651676, -73.98292492050315 40.69809559773647)))",B243,6644,B243,B-02,B-02,B-02,B-02,Gold St. between Nassau St. and Concord St.,302,"33,35",84,11201,B,1.5,False,Golconda Playground (PS 287),Yes,100004191,PARK,20100106000000.00000,19460501000000.00000,233 GOLD STREET,DPR,False,Golconda Playground,Y,Golconda Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B243/,No,57,25,8,{36279526-9408-4B1D-8CC4-F5ADF2ABD77B} +"MULTIPOLYGON (((-73.98320073051605 40.59579936034923, -73.9831697884438 40.595619744775284, -73.98341494073556 40.59577791760103, -73.98320073051605 40.59579936034923)))",B242,6193,B242,B-15,B-15,B-15,B-15,"Ave U, 86 St. and W. 12 St.",315,47,61,11223,B,0.045,False,Meucci Triangle,Yes,100004207,PARK,20100106000000.00000,19400220000000.00000,,DPR,False,Meucci Triangle,Y,Meucci Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B242/,No,47,22,11,{2F8DFD83-925F-4265-BC3F-E4C9FF6CA45F} +"MULTIPOLYGON (((-73.94644652231321 40.63861773199601, -73.94633050200319 40.63754221431621, -73.94727662257291 40.637486513663106, -73.9473465955912 40.638154100388185, -73.94807796494773 40.638107330413796, -73.9481222607321 40.638512569480795, -73.94644652231321 40.63861773199601)))",B250,5134,B250,B-17,B-17,B-17,B-17,Nostrand Ave. between Foster Ave. and Farragut Pl.,317,45,67,11210,B,3.023,False,Nostrand Playground (PS 269),Yes,100004713,PARK,20100106000000.00000,19510426000000.00000,3002 FOSTER AVENUE,DPR,True,Nostrand Playground,Y,Nostrand Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B250/,No,42,21,9,{CB8A6C62-D969-4E56-BD01-569CC7FBD655} +"MULTIPOLYGON (((-73.88650853733353 40.766474081727424, -73.88634733702654 40.76559753371878, -73.88675298342108 40.765554408169116, -73.88656784531895 40.76508581050378, -73.88698452964177 40.76515897448067, -73.88738174452739 40.766290720558125, -73.88650853733353 40.766474081727424)))",Q393H,5585,Q393H,Q-03,Q-03,Q-03,Q-03,82 St. bet. Astoria Blvd. and 23 Ave.,403,22,115,11370,Q,1.993,False,LaGuardia Landing Lights,Yes,100000282,PARK,20090423000000.00000,19600728000000.00000,,DPR,False,LaGuardia Landing Lights,Y,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393H/,No,35,13,14,{5F73DD18-0906-47A5-8C4D-1BE29CDEC8D6} +"MULTIPOLYGON (((-73.91821137155662 40.809554963577376, -73.91836016375039 40.809299341958386, -73.91867216219491 40.80943105322162, -73.91885403953282 40.809184224248426, -73.91909087025097 40.8092842019221, -73.91890899233415 40.8095310303636, -73.91897643738366 40.80955950200784, -73.91904493793248 40.809588418299256, -73.91910598293094 40.80961418748062, -73.91916696756273 40.80963993227376, -73.91919738704583 40.80965277399021, -73.9190180169216 40.809896201364595, -73.91821137155662 40.809554963577376)))",X246,4683,X246,X-01,X-01,X-01,X-01,Brook Ave. bet. E. 141 St. and E. 140 St.,201,8,40,10454,X,0.76,False,Brook Park,No,100004222,PARK,20090728000000.00000,19790717000000.00000,480 - 494 EAST 141 STREET,DPR,False,Brook Park,Y,Brook Park,Neighborhood Park,Garden,http://www.nycgovparks.org/parks/X246/,No,84,29,15,{9802D77D-D467-497E-8D92-67B8C379E635} +"MULTIPOLYGON (((-73.97420991818656 40.596763188743424, -73.97422101798327 40.59668191546733, -73.97463473796708 40.596716692058884, -73.97420991818656 40.596763188743424)))",B211,5839,B211,B-15,B-15,B-15,B-15,"Village Rd. N., Ave. U bet. Van Sicklen St. and Lake St.",315,47,61,11223,B,0.052,False,Lady Moody Triangle,Yes,100004477,PARK,20100106000000.00000,19380101000000.00000,,DPR,True,Lady Moody Triangle,Y,Lady Moody Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B211/,No,45,22,11,{CBCC6AE5-0AF9-4798-AC9A-ED887AEA0C57} +"MULTIPOLYGON (((-73.88194534559439 40.68559413498345, -73.88747057995819 40.68299624341771, -73.88761756999581 40.68318804092225, -73.88830110488323 40.68288563283584, -73.8881407538157 40.68268110524057, -73.88850124413514 40.68251158741057, -73.88850238804591 40.68251297891387, -73.8887202267015 40.682777897908736, -73.88870146848117 40.6827868714063, -73.88887835400556 40.68307087470362, -73.888918590967 40.6831354804593, -73.88888471428191 40.683152677299375, -73.88893799005434 40.68321762612661, -73.8891480153587 40.683473664872594, -73.88929061673046 40.683699640431804, -73.88932768921165 40.68375838694731, -73.8895529488213 40.68411534224699, -73.88919410658178 40.68438860331043, -73.88878982324206 40.68472856007599, -73.88867050815439 40.684828890795224, -73.88821721563274 40.6851864571991, -73.88801203320605 40.68534851329975, -73.88774096158541 40.685560253694405, -73.8875799256792 40.68568336340441, -73.88750895549742 40.68573633434928, -73.8874380815894 40.68578126104879, -73.88732323525672 40.68584596137671, -73.88721024224083 40.68589747447191, -73.88715575868753 40.685923112733136, -73.88693951194686 40.68601113557644, -73.88671978602538 40.686089806347866, -73.88657493654422 40.686132583081694, -73.88648482514762 40.68616159795095, -73.88641164508061 40.68618672843529, -73.88633723174118 40.686213574935906, -73.88618184713265 40.68627935701603, -73.8860213901029 40.68637184672111, -73.88577534725324 40.68652332412258, -73.88566193511173 40.686596440420345, -73.88519592708212 40.686896867114854, -73.88443608344556 40.68738989187507, -73.88374582508361 40.687831760666505, -73.88194534559439 40.68559413498345)), ((-73.89388891039266 40.68528091131496, -73.89308835712535 40.684105105163084, -73.89303708076318 40.68413586141202, -73.89267128399752 40.68358155844769, -73.89258180937975 40.68344597271926, -73.89216823516307 40.68281925902885, -73.89252975608511 40.68258934464002, -73.89294785730893 40.682390544120445, -73.89295046287583 40.68239446108211, -73.89309243488744 40.68260787818907, -73.89313363454391 40.68266980973716, -73.8931732813029 40.682729408395645, -73.89322052189829 40.682800420006316, -73.89325780394384 40.68285646390972, -73.89329262559562 40.68290880800564, -73.89332208974885 40.6829530992242, -73.8933533984033 40.68300016392864, -73.893386720325 40.68305025171628, -73.89341930002003 40.68309922667089, -73.89345306574985 40.68314998303159, -73.89348445129617 40.683197162135606, -73.8935168269816 40.683245828896695, -73.89354908824566 40.68329432354421, -73.8935817802893 40.683343466050786, -73.89362738024236 40.683412011262405, -73.89366728750365 40.68347200080858, -73.8936991265119 40.68351986015945, -73.89373217162728 40.68356953245046, -73.89376801009234 40.68362340280801, -73.89379779232407 40.68366817146666, -73.8938303714428 40.68371714449901, -73.89383200116818 40.68371959360134, -73.89368623695339 40.68377535486123, -73.89372533257591 40.6838341225367, -73.89377400010616 40.68390727935227, -73.89381773842997 40.68397302576635, -73.89385394419433 40.68402744844855, -73.8938955820789 40.68409003478982, -73.89393823375482 40.68415414842205, -73.89397580511229 40.684210622794765, -73.89401588900465 40.68427087532641, -73.89405642967621 40.6843318144562, -73.8943169571582 40.68472342392933, -73.89432318473501 40.68473278329253, -73.8943476194541 40.68476951250074, -73.89391214024766 40.685315028010365, -73.89388891039266 40.68528091131496)))",B047,5388,B047,Q-05A,Q-05A,B-05,B-05,Jamaica Ave. and Highland Blvd. from Highland Pl. to Bulwer Pl.,"305, 405",37,75,"11207, 11208, 11385",B,45.059,False,Highland Park (BOOKED BY QUEENS),No,100004357,PARK,20100106000000.00000,18910101000000.00000,375 JAMAICA AVENUE,DPR,True,Highland Park,Y,Highland Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/B047/,No,54,18,7,{B51EBA00-81F3-4D7A-B92A-7920877A001A} +"MULTIPOLYGON (((-73.98348653140829 40.71405476319778, -73.98428059303313 40.71397150690531, -73.98430485630382 40.714198204715444, -73.98433350785017 40.714445922824744, -73.98357246405395 40.714506244592116, -73.98354106231486 40.71450873362021, -73.9835303599464 40.71450958217143, -73.98352415294092 40.714455631705256, -73.983467324434 40.71405677668394, -73.98347902566984 40.714055550067506, -73.98348653140829 40.71405476319778)))",M235,4937,M235,M-03,M-03,M-03,M-03,"E. Broadway, Henry St., Gouverneur St.",103,1,1,10002,M,0.891,False,Sol Lain Plgd,Yes,100004280,PLGD,20100106000000.00000,19570618000000.00000,271 HENRY STREET,DPR/DOE,False,Sol Lain Plgd,Y,Sol Lain Plgd,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M235/,No,65,26,7,{03F6D229-687D-4750-B62B-9608592B4104} +"MULTIPOLYGON (((-73.861930260025 40.83443550794011, -73.86184212510614 40.83391951497552, -73.86186868322908 40.83393745853868, -73.86193845387122 40.833987524071425, -73.86198705986835 40.83402014595654, -73.86204065250824 40.83405336271, -73.8620853024735 40.83407901178871, -73.86214220199842 40.83410929953585, -73.86219007550508 40.834132751616416, -73.86224046867933 40.834155522310276, -73.86229132274362 40.834176741078515, -73.8623388026869 40.83419505710273, -73.86239535030344 40.83421502552926, -73.86244703396963 40.834232431621096, -73.8626089250826 40.834282261687854, -73.86278163066923 40.83433194230475, -73.86278499744259 40.83435165815035, -73.861930260025 40.83443550794011)))",X148L,5642,X148L,X-09,X-09,X-09,X-09,McGraw Av bet. White Plains Rd and Virginia Av,209,18,43,10462,X,0.461,False,Virginia Playground,Yes,100005182,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Virginia Playground,Y,Virginia Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148L/,No,87,33,15,{7DA09220-3082-4303-BE89-2778E425D027} +"MULTIPOLYGON (((-73.9487268450287 40.721050621997264, -73.9475548855732 40.719981051184654, -73.94820265615748 40.71991937764896, -73.94826178640403 40.720278882371446, -73.94859469188988 40.720247184960364, -73.9487268450287 40.721050621997264)))",B346,5191,B346,B-01,B-01,B-01,B-01,Manhattan Ave. and Leonard St.,301,33,94,11222,B,1.06,False,Ericsson Playground (JHS 126),Yes,100004426,PARK,20100106000000.00000,19630328000000.00000,438 LEONARD STREET,DPR/DOE,False,Ericsson Playground,Y,Ericsson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B346/,No,50,26,12,{A86FED50-9EFB-43B5-99AD-A6D9DBF78C86} +"MULTIPOLYGON (((-73.82307458131865 40.782415314042375, -73.82391388809077 40.7818271974943, -73.82427869976894 40.781829949775165, -73.82443154209336 40.78183110214647, -73.8242053829034 40.78270307327976, -73.82388738303476 40.784217796232234, -73.82366471105716 40.78529808201175, -73.8231871335163 40.785413701590784, -73.82316843143238 40.78534449264911, -73.82314183371523 40.78524607277489, -73.82285673117391 40.78419109977584, -73.82284050343392 40.78415173274502, -73.82281058704767 40.784105423398, -73.8227797000386 40.7840717213967, -73.82276215194227 40.78405708104342, -73.82271660075884 40.784022433455576, -73.82268492318822 40.78399201254657, -73.82261654965586 40.78391473329545, -73.82258997450859 40.7838763912819, -73.8225480127583 40.78379745969846, -73.82251811926649 40.78370580816545, -73.82251212900529 40.78367439748909, -73.82250800401447 40.78364056282859, -73.82250622012211 40.783593796043355, -73.82251411855756 40.78353112687304, -73.82252113711264 40.783475430744936, -73.82252559829534 40.7834400262219, -73.82253042256038 40.7834017415475, -73.82253573697328 40.783359573756485, -73.82254380724694 40.783295528877474, -73.82255135221986 40.78323565882256, -73.82255788174429 40.78318384670833, -73.82256707872769 40.783110870567256, -73.82257324395954 40.783061938600675, -73.8225821673941 40.78299112954762, -73.82258749989086 40.782948819499964, -73.8225891745552 40.78292766204892, -73.8225969842623 40.78287511438861, -73.8226179079496 40.78282365761197, -73.82264134159182 40.782778566750835, -73.82265680037848 40.7827555259467, -73.82271157305988 40.78268577167832, -73.82273812726196 40.782657959054454, -73.8228168502336 40.782595907558516, -73.82285665528326 40.7825680162241, -73.82291571771779 40.78252663070822, -73.82293676971534 40.782511879490336, -73.8229685417522 40.78248961652811, -73.8230276040476 40.7824482309544, -73.82307458131865 40.782415314042375)))",Q089B,6276,Q089B,Q-07,Q-07,Q-07,Q-07,"144 St., Whitestone Exwy. bet. 15 Ave. and 20 Ave.",407,19,109,11357,Q,9.154,False,Harvey Park,Yes,100000190,PARK,,18921006000000.00000,,DPR,True,Harvey Park,Y,Harvey Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q089B/,No,26,11,3,{DFA16550-4866-43B5-BAA0-7E1DDF7EB582} +"MULTIPOLYGON (((-73.79154584261555 40.84752306408818, -73.79154869074875 40.8475114177351, -73.79151236785398 40.847513088245954, -73.79143988304479 40.847513873920654, -73.7914482968546 40.8474858063072, -73.79146268868014 40.84746146133896, -73.79152318381328 40.847360267740946, -73.79172937223366 40.84728481494381, -73.79177295552583 40.84726886752124, -73.79175980754138 40.84724064299598, -73.79173397863832 40.84724864138547, -73.79153208804706 40.847311157347626, -73.79153469283898 40.847288991876674, -73.79152712007414 40.847262880955604, -73.79149433017555 40.84721907566126, -73.7914786768367 40.847189276112246, -73.7914692276959 40.84716102762262, -73.79145283000587 40.84712355811148, -73.79144399177119 40.8470944957762, -73.79143868347182 40.84704019085166, -73.79142510087696 40.84700767734529, -73.79141651434004 40.846975502452146, -73.79140784952749 40.84694900593628, -73.79140595833138 40.84691566169981, -73.79252417729582 40.84668088606595, -73.79254132674188 40.84738468500917, -73.79261546482824 40.84794443066667, -73.79225084502569 40.84849689791942, -73.79121644030761 40.84897451216003, -73.7904094825434 40.84912067138814, -73.79010117034139 40.849176513277975, -73.79010690972451 40.849164565155384, -73.79015018020566 40.849114091923326, -73.790188540476 40.84907585106512, -73.79020491724847 40.849056337419796, -73.79022257308397 40.84903547265499, -73.79024736414985 40.849015781598766, -73.79028033936459 40.84899782175864, -73.79030615003231 40.84898797944977, -73.79034318255245 40.84897777031833, -73.79037534859357 40.84897046272982, -73.79038740989749 40.8489678858198, -73.79040238305554 40.848966641527966, -73.790419277187 40.84896393471935, -73.79049942576238 40.848948003778176, -73.79056326092281 40.84893300309176, -73.79061433402933 40.848915270519015, -73.79066255583835 40.848902200012134, -73.79072153119786 40.84889474736822, -73.7907470342703 40.848889162840834, -73.79075608037795 40.84888718195309, -73.79078476151072 40.84887332223526, -73.79082792320106 40.84884402187589, -73.79086278803715 40.8488182715162, -73.79090287004428 40.848782908819736, -73.79092562113135 40.84875831072753, -73.79094529271013 40.848738553511076, -73.79096959342748 40.84872271912881, -73.79102252958307 40.84869695644017, -73.79103905886058 40.848688809893424, -73.79105816664014 40.84867939201403, -73.79110802338809 40.84865011898404, -73.79115091200731 40.84862082971514, -73.7911726410933 40.84861084835049, -73.791190725779 40.84859754206293, -73.79120233848255 40.84858899847991, -73.79122564206789 40.84855946841943, -73.79125827851193 40.84851855588319, -73.79129316268761 40.84848615617643, -73.79132890476728 40.848439213224104, -73.79135948121102 40.848393398242166, -73.79137635356349 40.84835333874274, -73.79138239408069 40.848317875586964, -73.79138045262992 40.84828012874955, -73.79137567607877 40.84824229213803, -73.79136985220225 40.848209818778194, -73.79135682088199 40.84817199425061, -73.79134791446988 40.8481351479154, -73.79134438866427 40.84810952336921, -73.79134215954772 40.848080699910255, -73.7913466346588 40.848049418521214, -73.79135264804556 40.84802260096414, -73.79135329943128 40.84798128024866, -73.79135057540508 40.8479461605366, -73.79134474482143 40.847915837542644, -73.79132919963737 40.84786060280332, -73.79131780959625 40.847795193685975, -73.7913123046363 40.84774348903473, -73.79131240519007 40.84771143791272, -73.7913124279547 40.84770418176848, -73.79131566518132 40.84766189049323, -73.79132125128638 40.84764728196939, -73.79132554848034 40.84763604166492, -73.7913317626925 40.84762647074302, -73.791375573633 40.84759059683762, -73.79153133522703 40.84758239667517, -73.79154584261555 40.84752306408818)))",X279,5825,X279,X-15,X-10,X-10,X-10,"Bay St, Tier St, Echester Bay",210,13,45,10464,X,8.005,False,City Island Wetlands,No,100004287,PARK,20100106000000.00000,19970116000000.00000,,DPR,False,City Island Wetlands,Y,City Island Wetlands,Large Park,Nature Area,http://www.nycgovparks.org/parks/X279/,Yes,82,34,14,{EB3A9287-2B74-40C5-B20F-23A3E893E749} +"MULTIPOLYGON (((-73.90548435927123 40.662262504936905, -73.90537945086804 40.66185471871624, -73.90500498587897 40.661908152928284, -73.90493220006435 40.6616420585125, -73.90565795897562 40.661528888335575, -73.9059563989264 40.66268891818787, -73.90576860079464 40.662715716967604, -73.90582057744682 40.66291774183037, -73.9053014101539 40.662991825259624, -73.90519113343024 40.66258867754682, -73.90552303222343 40.662541317784, -73.90550144768717 40.66245741601863, -73.90548852615076 40.66240719348902, -73.90547770863294 40.66236514487619, -73.90545247369006 40.66226705515999, -73.90548435927123 40.662262504936905)))",B396,5217,B396,B-16,B-16,B-16,B-16,"Watkins St., Mother Gaston Blvd., Livonia Ave., Riverdale Ave.",316,42,73,11212,B,1.648,False,Nehemiakh Park (PS 284),Yes,100004571,PARK,20100106000000.00000,19970116000000.00000,405 WATKINS STREET,DPR,True,Nehemiah Park,Y,Nehemiah Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B396/,No,55,20,9,{8DE99113-A557-4CA2-8C97-D3DED6889204} +"MULTIPOLYGON (((-73.9507062319248 40.823131840901794, -73.95134837570185 40.82275454106747, -73.95176848155639 40.82293087527309, -73.95158495208904 40.8231794360959, -73.95140235627743 40.823426733614696, -73.9507062319248 40.823131840901794)))",M041,4766,M041,M-09,M-09,M-09,M-09,"Hamilton Pl., W. 140 St. To W. 141 St.",109,7,30,10031,M,0.811,False,Alexander Hamilton Playground,Yes,100004143,PLGD,20100106000000.00000,19230510000000.00000,66 HAMILTON PLACE,DPR,False,Alexander Hamilton Playground,Y,Alexander Hamilton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M041/,No,70,31,13,{68801EF2-FF0A-4927-8563-489DBC5E1321} +"MULTIPOLYGON (((-74.18723267552771 40.53810092915181, -74.18796620079038 40.5376710246616, -74.18809714400777 40.53775420553603, -74.18731691528744 40.538494373463294, -74.18669393801174 40.53912782798021, -74.1864238144405 40.53854419355231, -74.18723267552771 40.53810092915181)))",R097,6079,R097,R-03,R-03,R-03,R-03,"Drumgoole Rd. E., N. Railroad St., Ida Ct.",503,51,123,10312,R,1.6,False,Ida Court,Yes,100003817,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Ida Court,N,Ida Court,Neighborhood Park,Playground,http://www.nycgovparks.org/parks/R097/,No,62,24,11,{C3CE3189-A7F8-4EF4-85E7-7B99D501502E} +"MULTIPOLYGON (((-73.91759480772673 40.680177330704794, -73.91751278932617 40.680186636388505, -73.91745761433182 40.679909672330346, -73.91750739965268 40.67990402398505, -73.91753963358232 40.67990036668645, -73.91759480772673 40.680177330704794)))",B525,5471,B525,B-03,B-03,B-03,B-03,Sumpter St. bet. Howard Ave. and Saratoga Ave.,303,41,81,11233,B,0.057,False,Sumpter Community Garden,No,100008332,PARK,20110712000000.00000,20021120000000.00000,182 SUMPTER STREET,DPR,False,Sumpter Community Garden,N,Sumpter Community Garden,,Garden,http://www.nycgovparks.org/parks/B525/,No,55,25,8,{37113A38-371E-4705-9AC0-749D61D39DAA} +"MULTIPOLYGON (((-73.94416361727798 40.79923127148557, -73.94434697152583 40.79897639003279, -73.94442254146803 40.799008495981965, -73.94423940689221 40.79926307959449, -73.94419179687205 40.79924309788404, -73.94416361727798 40.79923127148557)))",M383,5020,M383,M-11,M-11,M-11,M-11,E. 115 St. bet. Park Ave. and Madison Ave.,111,8,25,10029,M,0.057,False,La Cuevita Garden,No,100004286,PARK,20100106000000.00000,20090304000000.00000,71 EAST 115 STREET,DPR,False,La Cuevita Garden,N,La Cuevita Garden,,Garden,http://www.nycgovparks.org/parks/M383/,No,68,30,13,{B8007E81-A179-4151-8341-F4F0A5E64879} +"MULTIPOLYGON (((-73.87465994738922 40.75870545123218, -73.87516621102482 40.75872165623969, -73.87496272096689 40.7587883440292, -73.87487730659083 40.75881453344962, -73.87468922812582 40.758864142293014, -73.87465994738922 40.75870545123218)))",Q080,5882,Q080,Q-03,Q-03,Q-03,Q-03,"Jackson Mill Rd., 32 Ave. bet. 93 St. and 94 St.",403,21,115,11369,Q,0.09,False,Veterans Plaza,Yes,100000018,PARK,20090423000000.00000,19281213000000.00000,,DPR,True,Veterans Plaza,Y,Veterans Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q080/,No,34,13,14,{D6A2B018-86C0-4FB3-AF86-18FBAA9E1F4E} +"MULTIPOLYGON (((-73.87857041022092 40.6747524635502, -73.87855332242412 40.67468508783399, -73.8781974683576 40.67473578080577, -73.87817926181228 40.67466399852579, -73.87816530042302 40.6746083120546, -73.87852099766799 40.6745576415295, -73.87859187085935 40.67454754591387, -73.87869378785922 40.67453302723769, -73.87874408283713 40.674731326105125, -73.87864216554524 40.67474584482554, -73.87857129333187 40.674755941373704, -73.87858370611538 40.67480488129682, -73.87858749923502 40.67481983926462, -73.87859694448477 40.67485707385192, -73.87859849578172 40.6748631962945, -73.87824264198196 40.674913889406206, -73.87823164447549 40.674870532341295, -73.87821455699063 40.67480315657571, -73.87857041022092 40.6747524635502)))",B483,5274,B483,B-05,B-05,B-05,B-05,Montauk Ave. and Pitkin Ave.,305,37,75,11208,B,0.28,False,Manley's Pl,No,100004453,PARK,20100106000000.00000,20021120000000.00000,2539 PITKIN AVENUE,DPR,False,Manley's Pl,N,Manley's Pl,Greenthumb,Garden,http://www.nycgovparks.org/parks/B483/,No,54,18,8,{41857EBF-5ABA-44D8-9CDF-755D8BD8C264} +"MULTIPOLYGON (((-73.91482361169206 40.88688609065393, -73.91489608283045 40.88664833111871, -73.9154857938891 40.88675673540889, -73.91650965708479 40.88698134860236, -73.91655140993804 40.88699497073333, -73.91657372609258 40.88700568464008, -73.91658543371048 40.88701421800342, -73.91660002768457 40.88702599790255, -73.91661176533559 40.88703802607147, -73.91662575389482 40.88705760283901, -73.91663461587174 40.88707679769806, -73.91663956611083 40.8870976430238, -73.91668133572759 40.887402815491484, -73.91668054618181 40.88741929921891, -73.91667514533668 40.887432277627305, -73.91666551057767 40.887444539793805, -73.91665337328416 40.88745403385938, -73.91663275751132 40.88746207291824, -73.91661506034298 40.88746468595214, -73.91659986690031 40.887464383217704, -73.9165817931581 40.88746072318876, -73.91644475351735 40.88742090993288, -73.9162440259219 40.88736690548276, -73.91604760510903 40.887319111766175, -73.91584934441356 40.88727492912347, -73.9156904621488 40.88724373290408, -73.91553653996908 40.88721614654217, -73.91544399777754 40.88720093711278, -73.91538803646526 40.887192619736396, -73.91546964238383 40.88694267396956, -73.91482361169206 40.88688609065393)))",X171,4823,X171,X-08,X-08,X-08,X-08,Douglas Av bet. W 235 St and W 236 St,208,11,50,10463,X,1.51,False,Spuyten Duyvil Playground,Yes,100003939,PLGD,20100106000000.00000,19500720000000.00000,660 W 235 STREET,DPR/DOE,False,Spuyten Duyvil Playground,Y,Spuyten Duyvil Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X171/,No,81,34,16,{346D7BAC-CBA7-43A1-8868-E1524BCDE15F} +"MULTIPOLYGON (((-73.9577346065369 40.80026634044716, -73.94991168879837 40.79696847977631, -73.9499160455142 40.79695629250488, -73.9499227498714 40.7969279855067, -73.94992618167367 40.79689934210046, -73.94992631587749 40.79687058019657, -73.94992314995208 40.79684191951582, -73.94991671099255 40.7968135761897, -73.94990704505234 40.796785767258086, -73.94989422662547 40.79675870617106, -73.94987835272698 40.79673259648265, -73.9498595452589 40.79670763635459, -73.94983794745612 40.79668401765428, -73.94981372270625 40.79666191965068, -73.94978705573361 40.79664150991568, -73.94975815022951 40.79662294432281, -73.94972722411511 40.79660636344345, -73.94969451546488 40.79659189435028, -73.94966027066053 40.79657964610999, -73.94964041300456 40.79657409305862, -73.97266137523127 40.76505142406692, -73.97293477688835 40.76516528531251, -73.97298178026452 40.765179173111825, -73.97304836939523 40.765182033400656, -73.97310026726039 40.76517386985363, -73.97316291266091 40.76515556460942, -73.97325945618215 40.765119097734214, -73.97331754093388 40.76508484161984, -73.97335532572414 40.765055899159925, -73.97339437472814 40.765019721429454, -73.97342915132073 40.764975493995195, -73.97348442714967 40.764898039968884, -73.97356371467146 40.76479090811194, -73.9811007331707 40.76798859251124, -73.98109252005135 40.768039777590275, -73.9810896032976 40.768104805178666, -73.98109414963447 40.76816977725948, -73.98110612842798 40.76823420215189, -73.98112544508446 40.76829758816311, -73.98115195644431 40.76835945259611, -73.98118545775202 40.76841932444921, -73.98123808195332 40.7684870535996, -73.98133009614402 40.76857054522524, -73.95871570591389 40.7995678752417, -73.95831347378017 40.80011890808565, -73.95831001262665 40.800118554738674, -73.95824434513213 40.8001162310952, -73.95817866068457 40.80011826492404, -73.95811346053362 40.800124641999275, -73.95804923765644 40.80013531297374, -73.95798648386584 40.80015019698333, -73.95792567677705 40.80016917984136, -73.9578672786202 40.80019211854045, -73.95781173150353 40.800218836748186, -73.95775946096337 40.80024913291275, -73.9577346065369 40.80026634044716)), ((-73.98152649705183 40.76802307430979, -73.98154066659129 40.76797940665795, -73.98156386552373 40.76793803403197, -73.98159549303688 40.76790002522829, -73.98163473041323 40.76786636616108, -73.9816805611749 40.767837929248955, -73.98173179833218 40.76781544910691, -73.98178711518193 40.76779950904451, -73.98183401685236 40.767791671261264, -73.98183388540097 40.767791600100736, -73.98184423753341 40.767790532834674, -73.98188834356667 40.76778848572771, -73.9819041140721 40.767788715132625, -73.98192664498482 40.76778993524958, -73.98196333956771 40.767794197680566, -73.98202075689449 40.767806851526956, -73.98207476126761 40.76782634503938, -73.98212395284952 40.767852171922414, -73.98216705975771 40.76788366291106, -73.98220296293158 40.76792000468445, -73.98223073403047 40.767960253378256, -73.98224965319162 40.76800336790527, -73.98225124515936 40.76800743482485, -73.98225793615617 40.76802454452354, -73.98226289740279 40.76807018551183, -73.98225791183916 40.76811582406787, -73.98224311243193 40.76816021751579, -73.98221890456071 40.768202152936134, -73.98218594824343 40.76824048678554, -73.98214514273278 40.76827417371122, -73.98209760045229 40.76830229536411, -73.98204461856403 40.768324083808615, -73.98198764224419 40.768338944930775, -73.98192822559146 40.76834647374195, -73.9818944714222 40.76834740136433, -73.98188401526387 40.76834740332279, -73.98184492721799 40.768345388146706, -73.98178696836203 40.76833638296867, -73.98173165981596 40.7683204253936, -73.98168043464203 40.76829792898434, -73.98163461925162 40.76826947658346, -73.98159540024457 40.76823580499885, -73.98156379361802 40.768197786987734, -73.98154061753208 40.768156406037306, -73.98152647218144 40.76811273474855, -73.98152172440834 40.76806790331573, -73.98152649705183 40.76802307430979)), ((-73.97304071226627 40.76442457081189, -73.97305075704291 40.76442405717307, -73.97305653399968 40.764424941918826, -73.973061256795 40.76442602452867, -73.97306734126109 40.76442796023405, -73.97348394426174 40.76460268712888, -73.97348916762942 40.76460783381131, -73.97349232022077 40.7646142560314, -73.97349394947568 40.764618314978165, -73.97349432076263 40.7646228076785, -73.97349393256032 40.764628082742135, -73.97349070441938 40.76463590918095, -73.97348805160128 40.76464145837719, -73.97348609522722 40.764643937915245, -73.97323873188421 40.76497203250887, -73.97321528926402 40.76499355000832, -73.97319141867068 40.765010175865434, -73.97315986421941 40.76502590842873, -73.97312817762493 40.7650374130861, -73.97308692024221 40.7650485796114, -73.97304645055472 40.765053642689836, -73.97300551972523 40.765053885247916, -73.97297069443596 40.76505096305186, -73.97293964167237 40.76504439649109, -73.9729058282767 40.7650345901597, -73.97287000845722 40.76501923263903, -73.97283772920368 40.76499983718138, -73.97280769834984 40.76497355158832, -73.97278414954339 40.76494735666866, -73.9727699625696 40.76491981140005, -73.97275881982605 40.76488842079658, -73.97275257583085 40.76485657209347, -73.97275654034252 40.764823674916094, -73.97276398714631 40.764801740397694, -73.97277505802141 40.764777125934586, -73.97301162228216 40.76444429044431, -73.97302283211106 40.764430052497616, -73.97303227297947 40.76442632932231, -73.97304071226627 40.76442457081189)))",M010,6587,M010,M-13,M-13,M-13,M-13,"5 Av To Central Park W, 59 St To 110 St","110, 111, 107, 105, 108, 106",6,18,"10023, 10024, 10025",M,840.01,False,Central Park,No,100004894,PARK,20100106000000.00000,18560205000000.00000,1000 5 AVENUE,DPR,True,Central Park,Y,Central Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/M010/,No,"69, 68, 67, 75",29,"10, 13",{9B51C8B1-5896-4A38-BAC1-FD5E6DFD83D6} +"MULTIPOLYGON (((-73.8716073628971 40.73256814380419, -73.87175272046257 40.73254210636792, -73.87181354060796 40.73252658537359, -73.87217502020125 40.73256767309979, -73.87247185250507 40.732508238121696, -73.87289193169816 40.73217437864665, -73.87299840639666 40.732207324187755, -73.87306057081416 40.73222655826819, -73.87312909794419 40.7322477615347, -73.87313075545929 40.732248273949565, -73.87306475241985 40.73241523395367, -73.87305362677068 40.732443383311534, -73.87303413636738 40.732492683609465, -73.87301697265126 40.73253610074179, -73.87301288066708 40.73254645208438, -73.87299172009259 40.73259998112451, -73.87294040476316 40.73272978693442, -73.87275025592969 40.73321077660294, -73.87252707917966 40.73320612628059, -73.87224564268143 40.73317794544135, -73.87207759072622 40.73315876174073, -73.87187716250583 40.733147193402566, -73.87177449842261 40.73314208220664, -73.87164366314063 40.733135830995195, -73.87159547193718 40.73313133685903, -73.87101245914162 40.73309525025719, -73.87094496296866 40.7330031119866, -73.87102921281533 40.73284852952768, -73.87104925525374 40.73281208585621, -73.8710651591807 40.73278845089178, -73.87109195274901 40.73276059572294, -73.87112717808976 40.73272989086791, -73.87118947512002 40.73268355913499, -73.87126746905939 40.73264159977925, -73.87130529498079 40.732628097501234, -73.87134223316475 40.73261759561589, -73.87139113806194 40.73260662531186, -73.8714451817347 40.73259691873527, -73.8716073628971 40.73256814380419)))",Q360N,6136,Q360N,Q-04,Q-04,Q-04,Q-04,Hoffman Dr. bet. 58 Ave. and Woodhaven Blvd.,404,25,110,11373,Q,2.857,False,Hoffman Park,Yes,100000277,PARK,20090423000000.00000,19530601000000.00000,,DPR,True,Hoffman Park,Y,Hoffman Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q360N/,No,35,16,6,{F238F2D6-9EFE-46DA-9D7B-AFDEE2A7FB34} +"MULTIPOLYGON (((-73.93869677362001 40.838058127494726, -73.93884989168603 40.838128720137924, -73.9388673911428 40.838136354795395, -73.93909076583414 40.838231256241905, -73.9391362603433 40.83825054452022, -73.93939257287448 40.83835700978711, -73.93967822666521 40.83847698102739, -73.939682917513 40.83848057554987, -73.93968718654133 40.83848516669804, -73.93969067093165 40.83849075518281, -73.93969226055454 40.838495091891055, -73.93969300518468 40.838498990517515, -73.93969309290993 40.8385029311237, -73.93969244147173 40.83850740623664, -73.93969097675826 40.838511769263086, -73.93965184268939 40.838573955796974, -73.93964872225685 40.838578873561076, -73.93960650140443 40.83864408232138, -73.93960148295236 40.838647401614615, -73.93959639301195 40.838649796963736, -73.93959149469302 40.838651391874116, -73.93958569566486 40.838652535165146, -73.93958040353873 40.838653000649735, -73.93957507994872 40.838652860985896, -73.93956854175241 40.83865193005196, -73.93956290760745 40.83865038185271, -73.9395518097528 40.83864500999534, -73.93932204028985 40.83850799629988, -73.93866037910558 40.83811246194751, -73.9386549090323 40.83810921365879, -73.93865025294306 40.838105302138956, -73.93864654945604 40.838100841824435, -73.9386439063445 40.83809596604583, -73.9386424017305 40.83809081802315, -73.93864208171391 40.83808555086503, -73.93864295563696 40.838080319461255, -73.93864499727171 40.83807527868283, -73.93864814482433 40.838070578879304, -73.93865230686993 40.838066358677935, -73.93865735998403 40.83806274228118, -73.93866315467311 40.838059836768124, -73.9386695189352 40.83805772849462, -73.93867626419134 40.83805647949437, -73.93868319121408 40.838056127482105, -73.93869009605896 40.83805668225487, -73.93869677362001 40.838058127494726)))",M156,5528,M156,M-12,M-12,M-12,M-12,"W. 165 St., Amsterdam Ave. To Audubon Ave.",112,10,33,10032,M,0.345,False,McKenna Square,Yes,100004138,PARK,20100106000000.00000,19370416000000.00000,,DPR/CDOT,True,McKenna Square,Y,McKenna Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M156/,No,72,31,13,{97131B0D-C5EE-42A3-B639-0C8C074B9AA0} +"MULTIPOLYGON (((-74.11861893340144 40.63686354103743, -74.1196868763786 40.636750072965484, -74.1198415703872 40.63761308874259, -74.11990738492048 40.63770215896488, -74.11993524896685 40.63783395426682, -74.12048422229559 40.63812334767355, -74.12029668954105 40.63826043199154, -74.12027141281433 40.63827782495146, -74.11954775183662 40.63877575819534, -74.11929301186467 40.63895103510569, -74.1191545139998 40.639046330288885, -74.1185926242324 40.63924060207334, -74.11857507550107 40.639246670760286, -74.11784308218847 40.639557923224196, -74.1178183738938 40.639428557413844, -74.11782983896624 40.63875543891075, -74.11783257410053 40.63848078397129, -74.11778303981885 40.63801687986227, -74.11770111561817 40.63724960580573, -74.11806457184885 40.637210993534865, -74.11819219148305 40.63719743478192, -74.11834581245729 40.63718111425143, -74.1186530529966 40.63714847167543, -74.11861893340144 40.63686354103743)))",R109,5077,R109,R-01,R-01,R-01,R-01,"Broadway, Henderson Ave., Chappell St.",501,49,120,10310,R,10.5,False,Cpl. Thompson Park,Yes,100004148,PARK,20100106000000.00000,19681127000000.00000,799 HENDERSON AVENUE,DPR,True,CPL. Thompson Park,Y,CPL. Thompson Park,Large Park,Community Park,http://www.nycgovparks.org/parks/R109/,No,61,23,11,{3FBD063C-C8B2-48BB-93D0-31592C3BA4E2} +"MULTIPOLYGON (((-73.94547037883957 40.791753600429814, -73.945648747149 40.791509595908245, -73.94572996032883 40.79154391533201, -73.9459132508662 40.791293175166146, -73.94630016458683 40.791456678970064, -73.9461181074397 40.79170724382284, -73.94608299683765 40.79175556537033, -73.94616064773506 40.7917883789867, -73.94601784445344 40.79198495178132, -73.94547037883957 40.791753600429814)))",M148,4626,M148,M-11,M-11,M-11,M-11,E. 105 St. To E. 106 St. bet. Lexington Ave. and 3 Ave.,111,8,23,10029,M,0.684,False,White Playground,Yes,100004530,PLGD,20100106000000.00000,19361020000000.00000,167 EAST 105 STREET,DPR,True,White Playground,Y,White Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M148/,No,68,29,13,{CA4A11D8-A947-4F5F-A54F-BEEB04F97272} +"MULTIPOLYGON (((-73.97875922976267 40.725228895779956, -73.97893120971068 40.72499499581887, -73.9790105186562 40.725028394878926, -73.97908698371798 40.72506059569057, -73.97891501125314 40.72529448417692, -73.97883854245339 40.7252622886545, -73.97875922976267 40.725228895779956)))",M324,5972,M324,M-03,M-03,M-03,M-03,E. 8 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.106,False,Earth People,No,100004296,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Earth People,N,Earth People,Greenthumb,Garden,http://www.nycgovparks.org/parks/M324/,No,74,27,12,{5DCD7975-4A83-4371-90B5-8AAB3D03CB5D} +"MULTIPOLYGON (((-73.89959001936431 40.86801678694594, -73.89959767566788 40.86801644061612, -73.89960379348794 40.86801686196523, -73.89963841295639 40.86802628418524, -73.8996953258833 40.86804051367786, -73.89975019813934 40.86805423349352, -73.89978908467546 40.86806428521547, -73.89979649160323 40.868068058394876, -73.89980114378993 40.86807207501535, -73.89980386551117 40.86807563971473, -73.8998058939728 40.86808033302578, -73.89980671925785 40.86808605365101, -73.89980606243127 40.86809055642812, -73.89980340399075 40.86809616506915, -73.89972580857388 40.86820444814955, -73.89972238631256 40.868207623903054, -73.89971671735682 40.868211593736554, -73.89971091715972 40.868214492773845, -73.89970457362622 40.868216639429974, -73.89969787773472 40.86821803477131, -73.89969251526803 40.868218561398685, -73.89968633993247 40.868218510105486, -73.89967872826182 40.868217562476765, -73.8996728539569 40.86821611568602, -73.89966733413165 40.86821401364689, -73.89966162111634 40.868211018154106, -73.89965764320189 40.86820823848629, -73.89965416760444 40.86820509455701, -73.89965083200184 40.86820115021431, -73.89964803033229 40.868196328358664, -73.89964779005238 40.86819598326228, -73.89956110023901 40.86807136205198, -73.89955603426797 40.868064079887056, -73.89955415278364 40.86806025837323, -73.89955257334925 40.86805515302445, -73.89955207890759 40.868051089585876, -73.89955226537269 40.868047010531214, -73.8995532545034 40.86804240899093, -73.8995547835033 40.868038496794966, -73.89955695159999 40.86803476255169, -73.89956058575825 40.86803030288953, -73.89956505430577 40.86802630680504, -73.89956968277045 40.86802324196566, -73.89957482408393 40.8680206926523, -73.89958256555548 40.868018148302994, -73.89959001936431 40.86801678694594)))",X001B,6613,X001B,X-07,X-07,X-07,X-07,W. Kingsbridge Ave at Reservoir Ave.,207,14,50,10468,X,0.009,False,Barnhill Square,Yes,100003945,PARK,20100106000000.00000,19660729000000.00000,,DPR,True,Barnhill Square,Y,Barnhill Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X001B/,No,78,33,13,{E953A0C4-45F0-4E5B-8655-128E93F3FBA9} +"MULTIPOLYGON (((-73.9049142919392 40.84524919589095, -73.90492575480005 40.84511581261584, -73.90562223644221 40.84514977394426, -73.90561893174812 40.84518729298079, -73.9052705951929 40.84517030780129, -73.9052647121625 40.84523878005589, -73.90526330349057 40.845266215118, -73.9049142919392 40.84524919589095)))",X148E,5711,X148E,X-05,X-05,X-05,X-05,Cross Bronx Exwy Service Rd N bet. Topping Av and Clay Av,205,15,46,10457,X,0.141,False,Peace Park,Yes,100005054,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Peace Park,Y,Peace Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148E/,No,86,33,15,{82870A96-2C94-43C8-AE4B-52AC3CE9144C} +"MULTIPOLYGON (((-73.88830572126575 40.6992367164019, -73.8883346698058 40.69924786042254, -73.88836066136494 40.69926263423676, -73.88838291813512 40.69928059674145, -73.88840077487285 40.69930120968758, -73.88841369661732 40.69932385570712, -73.8884212975872 40.69934785904312, -73.88842334944118 40.69937249906489, -73.88841979069471 40.69939703999421, -73.88840975316417 40.699417769975085, -73.88839535572811 40.6994369540495, -73.88837699327495 40.69945406489812, -73.88835516945488 40.69946863203947, -73.88833048482198 40.699480257127014, -73.88830361552778 40.69948861933204, -73.88827530146594 40.69949348883992, -73.88824631904775 40.69949473312758, -73.88821746463496 40.69949231784789, -73.88818953087211 40.69948630860792, -73.88816328538952 40.69947687004761, -73.88813944714332 40.699464263115026, -73.88812238761783 40.69945158892474, -73.88810467097531 40.699434244033256, -73.8880909533645 40.699414914694934, -73.88808161134124 40.69939412807733, -73.88807689833563 40.699372453552094, -73.8880769458674 40.69935048378524, -73.88808175055422 40.699328821216575, -73.88809118242757 40.69930805825658, -73.88810498259309 40.69928876197564, -73.88812277271761 40.699271461505965, -73.88814871267721 40.69925631757768, -73.88817755283047 40.69924459841032, -73.88820851883897 40.69923661752863, -73.8882407809201 40.699232590248265, -73.88827347397903 40.6992326228894, -73.88830572126575 40.6992367164019)))",Q139,6162,Q139,Q-05,Q-05,Q-05,Q-05,"Cypress Hills St., Cooper Ave., 65 Pl.",405,30,104,11385,Q,0.166,False,Drumm Triangle,Yes,100000130,PARK,20090423000000.00000,19260204000000.00000,,DPR,False,Drumm Triangle,N,Drumm Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q139/,No,38,15,6,{A32DD58F-EA5C-4540-8803-70672D49448A} +"MULTIPOLYGON (((-73.94636121718139 40.5978698110159, -73.94711225119354 40.597787193956734, -73.94715295405014 40.598003776665045, -73.94644496958864 40.59828359699063, -73.94636121718139 40.5978698110159)))",B209,5103,B209,B-15,B-15,B-15,B-15,"Bedford Ave., Gravesend Neck Rd., Ave. V, E. 24 St.",315,48,61,11229,B,0.565,False,Galapo Playground,Yes,100004881,PARK,20100106000000.00000,19400606000000.00000,2401 AVENUE V,DPR,False,Galapo Playground,Y,Galapo Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B209/,No,41,19,9,{0B75DEC0-20AD-4F74-A927-B6EB8A964978} +"MULTIPOLYGON (((-73.98966020021557 40.71349250569513, -73.9899440097314 40.71346816392233, -73.9899735496374 40.71368282028583, -73.9898787472532 40.7136916784162, -73.98978081692226 40.71370077572671, -73.98969002174846 40.7137092108174, -73.98966020021557 40.71349250569513)))",M122,4652,M122,M-03,M-03,M-03,M-03,Rutgers St. and Henry St.,103,1,7,10002,M,0.135,False,Captain Jacob Joseph Playground,Yes,100003898,PLGD,20100106000000.00000,19610323000000.00000,13 HENRY STREET,DPR,False,Captain Jacob Joseph Playground,Y,Captain Jacob Joseph Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M122/,No,65,26,7,{7CBED419-691D-4396-82C5-73DB064A4C5F} +"MULTIPOLYGON (((-73.76373180584224 40.5957100735211, -73.76350002468158 40.5957348943175, -73.76345160327249 40.595462905161156, -73.76368338232574 40.595438084459346, -73.76373180584224 40.5957100735211)))",Q505,6416,Q505,Q-14,Q-14,Q-14,Q-14,Seagirt Blvd. bet. Beach 31 St. and Beach 30 St.,414,31,115,11691,Q,1.492,False,,,100008660,PARK,,20141226000000.00000,30-15 SEAGIRT BOULEVARD,DPR,False,Culinary Kids Garden,,Culinary Kids Garden,,Garden,,No,23,10,5,{46DDA6F2-9170-482B-837C-F5322739DDFB} +"MULTIPOLYGON (((-73.9420996730531 40.82623766663961, -73.94215160468087 40.82616664180469, -73.94246964744113 40.8263020373269, -73.94241771604716 40.82637306230345, -73.9420996730531 40.82623766663961)))",M319A,5965,M319A,M-09,M-09,M-09,M-09,Edgecombe Ave. and W. 150 St.,109,9,30,10031,M,0.069,False,Sugar Hill Garden,No,100004790,PARK,20100106000000.00000,20010209000000.00000,,DPR,False,Sugar Hill Garden,Y,Sugar Hill Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M319A/,No,71,30,13,{4FDC4495-6538-4F74-AAE3-6C3A7BBE4B1C} +"MULTIPOLYGON (((-73.75264707467772 40.7063082243546, -73.75332697205774 40.706126554645955, -73.75358101537027 40.70669282114709, -73.75288872340381 40.7068450963543, -73.75264707467772 40.7063082243546)))",Q405,5357,Q405,Q-12,Q-12,Q-12,Q-12,Hollis Ave. bet. 204 St. and 205 St.,412,27,113,11412,Q,0.98,False,Hollis Playground,Yes,100000185,PARK,20090423000000.00000,19590108000000.00000,204-08 203 STREET,DPR/DOE,False,Hollis Playground,Y,Hollis Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q405/,No,33,14,5,{FD5DD63B-D1C4-479F-8884-95E9EEB41CE6} +"MULTIPOLYGON (((-73.98978681107555 40.763355870551806, -73.98992347376323 40.76316638497709, -73.99062522886689 40.76346137556199, -73.99040638505998 40.76376214665687, -73.98970566520545 40.76346739257783, -73.98974477460854 40.76341364316834, -73.98978681107555 40.763355870551806)))",M221,4906,M221,M-04,M-04,M-04,M-04,W. 49 St. bet. 9 Ave. and 10 Ave.,104,3,18,10019,M,0.551,False,Gutenberg Playground,Yes,100003946,PLGD,20100106000000.00000,19590311000000.00000,409 WEST 49 STREET,DPR/DOE,False,Gutenberg Playground,Y,Gutenberg Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M221/,No,75,27,10,{15E98D6A-9C62-47E9-A76F-E6EA006449C4} +"MULTIPOLYGON (((-73.96881369408898 40.672722655909396, -73.96870502751472 40.6728525257176, -73.96847283598532 40.67285106382444, -73.96824077560285 40.67284494223326, -73.96811756691528 40.672839201591174, -73.96803402037717 40.672835312496915, -73.96803383705713 40.67283530434134, -73.96801392025446 40.67283435776746, -73.96800720957881 40.6728340191089, -73.96800662532469 40.672833983826315, -73.96786868974822 40.672824781743664, -73.96785979830483 40.672824041738195, -73.96775148968963 40.672813595171114, -73.96765305878617 40.67280178159605, -73.96742149534717 40.67277397228517, -73.96719124183224 40.67274044911269, -73.96696254074037 40.67270124907719, -73.96673563220202 40.67265641187987, -73.96651075634144 40.67260598532848, -73.96628815209517 40.67255002263525, -73.96606805366287 40.67248858331625, -73.96604388822782 40.672481456713115, -73.96583987389029 40.672418233279714, -73.96563848920202 40.67235029877359, -73.96544973796405 40.67229538195535, -73.96539384515528 40.672278601164734, -73.96528830987161 40.67224590318096, -73.96519921780988 40.672218298887, -73.96503460613197 40.672166691775985, -73.9649494784212 40.672139745869224, -73.96493813686833 40.67213605570384, -73.9646352182436 40.67203515210439, -73.96458327203696 40.672019423934266, -73.96454193669535 40.672006908447855, -73.96435899730831 40.67194449123648, -73.96407245908988 40.67186701452942, -73.96387879484033 40.671814828460484, -73.96356825249903 40.67174539086249, -73.96319333516944 40.6716661225349, -73.96272604979812 40.671568240061, -73.96270617851899 40.671465537950574, -73.96303074923004 40.67151993567636, -73.9634083806648 40.671589134935765, -73.96363169275867 40.67163805599994, -73.96378725634406 40.67167497036714, -73.96392863532492 40.6717105761311, -73.96406922107978 40.67174795909062, -73.96451476256047 40.67188011201883, -73.96462701635926 40.671916424746655, -73.96535651528673 40.67215243584668, -73.96537404266113 40.672158106264725, -73.9658528650647 40.672295613975606, -73.96626768812574 40.67240344247487, -73.96660983799973 40.67248637887904, -73.96698553634178 40.67257037749938, -73.96714709402475 40.67260102865636, -73.96729952675012 40.67262994800389, -73.9673378984752 40.67263643180716, -73.96735963882908 40.67264010577553, -73.96739378088375 40.67264464865033, -73.96743562340579 40.67264981234885, -73.96747223993525 40.67265396597762, -73.96750711813362 40.67265754457511, -73.96753547225828 40.67265895738326, -73.96783340327111 40.67268904443259, -73.96795567795083 40.67269835025872, -73.96805187784044 40.6727058116661, -73.96814810912626 40.67271196725473, -73.9682500119547 40.6727174489417, -73.96834912752651 40.67272202835599, -73.96842259492487 40.672725421873736, -73.96849829510182 40.67272679610036, -73.96857476163063 40.672725792225904, -73.96863087437933 40.67272505560894, -73.96871201391069 40.67272399078174, -73.96871846477374 40.67272348464532, -73.96871814641882 40.67272391050245, -73.96873171599783 40.672723732287096, -73.96874127963537 40.67272360701279, -73.96874898045729 40.67272350554555, -73.96876656543931 40.672723274385824, -73.9687899967058 40.67272296736521, -73.96881369408898 40.672722655909396)), ((-73.96120381909722 40.67141651326437, -73.96116919871207 40.67151419939638, -73.96096243882133 40.671468783073855, -73.96094802082065 40.67146603521091, -73.9600324890669 40.671270841166525, -73.95913137951341 40.67108387926711, -73.95841049576798 40.67093540509285, -73.95802018023952 40.67085154421221, -73.95805403526687 40.67075900698638, -73.959070167283 40.67096857712458, -73.95997127464256 40.67115828427681, -73.96081471568586 40.671334240883915, -73.96116795337448 40.671408468567144, -73.96120381909722 40.67141651326437)), ((-73.96129200916451 40.671167673838625, -73.96126020968555 40.67125740219498, -73.95811179331596 40.67060113885415, -73.95814632575275 40.670506748584245, -73.95888290213406 40.67066109599057, -73.95974795991195 40.67084255589676, -73.96105997350178 40.67112023112728, -73.96124740508316 40.67115872120755, -73.96129200916451 40.671167673838625)), ((-73.96537846717523 40.6725273125438, -73.96514922895807 40.67245338667415, -73.96514405479738 40.67245286010629, -73.96506181564841 40.67242674003078, -73.96475080902906 40.67232619629033, -73.96443832350491 40.67222834739321, -73.9644191431179 40.67222197482001, -73.96437552066769 40.672208758866475, -73.9641380045412 40.67213679874235, -73.96411241546065 40.67212963706973, -73.9638532564083 40.67205711128422, -73.9635649007115 40.671985655389236, -73.9632729349888 40.67192243373132, -73.96321165881339 40.67190868849948, -73.96314497489549 40.67189563039698, -73.96313956746327 40.67189357008665, -73.96313416197273 40.671890137391365, -73.96312875724138 40.67188533231068, -73.96312335407245 40.67187984193814, -73.96311975138072 40.67187366504934, -73.9631179515756 40.67186886022322, -73.96311795461125 40.67186337068287, -73.96311795764689 40.67185788114255, -73.96311795992362 40.67185376398727, -73.96312156830538 40.67184964798799, -73.96312427384952 40.67184415931389, -73.96313058469376 40.671837986503, -73.96313419387779 40.671834555795705, -73.96314140443413 40.6718311271427, -73.96314861541367 40.67182907177521, -73.9631558287592 40.67182701460701, -73.96316303661493 40.6718263307224, -73.96317024645701 40.67182633303067, -73.96317565502129 40.67182633476196, -73.96347482857603 40.67189230552788, -73.96377399855965 40.671963762353684, -73.96406595902153 40.672037964521785, -73.96435791308419 40.67212314322734, -73.96464986498339 40.67221380983074, -73.96493460607816 40.67230996483658, -73.96525179113576 40.672408873710374, -73.96550256017244 40.67248189991573, -73.96574704599861 40.67255706332742, -73.96599438799264 40.67262659974336, -73.96624436259633 40.67269044604374, -73.96649674506295 40.67274854451298, -73.96675130590911 40.67280084283926, -73.96700781564617 40.67284729411567, -73.96713335135568 40.67287329279955, -73.96719463192645 40.672881544600216, -73.96725069694118 40.672891605819764, -73.96722686839648 40.672961332228155, -73.96706843194066 40.67293366008192, -73.96703238366177 40.67292816021743, -73.96700354771548 40.67292266150985, -73.96670436193803 40.672864934237914, -73.96640878461663 40.672798973830616, -73.96611321303408 40.67272752402479, -73.96582124964006 40.67265332976044, -73.96553649729172 40.6725736446723, -73.96537846717523 40.6725273125438)), ((-73.92548404872633 40.66831603496132, -73.92547529976731 40.66840994950346, -73.92275354035094 40.668260890968625, -73.92276204806329 40.668165150220965, -73.92306780972044 40.66818065486621, -73.9233814009131 40.66820007665538, -73.92369859778493 40.66821675790998, -73.92401219009369 40.66823343230695, -73.92436543262053 40.66825287939806, -73.92548404872633 40.66831603496132)), ((-73.95314189743976 40.67008155882331, -73.95313260941369 40.67017805248448, -73.95223590863512 40.6701315313682, -73.95201962678014 40.6701204613837, -73.9512049672846 40.67007345852679, -73.95093822025221 40.670059619421814, -73.9508949643679 40.67005685799653, -73.95060122623465 40.67003820323626, -73.95061011932383 40.6699417303186, -73.95123387814002 40.669974658112835, -73.95209179432729 40.67002168058863, -73.95223598136234 40.6700299748563, -73.9527514528981 40.67005763542716, -73.95289203645049 40.67006592649199, -73.95314189743976 40.67008155882331)), ((-73.92290169858666 40.668435809319206, -73.9229413506906 40.66843583588615, -73.92298099844466 40.66843860540807, -73.92546016470536 40.66857240267489, -73.92545125408341 40.6686680497002, -73.92544638861791 40.66866804654723, -73.92520127797387 40.668656908352006, -73.9249093118659 40.66864024951554, -73.92461734900597 40.66862084516763, -73.92433619507304 40.66860419286115, -73.92405143577759 40.66859028045883, -73.92379551650896 40.668573641686315, -73.92363331362932 40.66856530071132, -73.92348913332411 40.66855697149521, -73.92323320800442 40.66854582191318, -73.92273085580169 40.66851616210114, -73.9227374439373 40.668442025247415, -73.92274668855163 40.668441193075395, -73.92278634383622 40.66843847492528, -73.92282599911545 40.66843575856255, -73.92286204648266 40.6684357827386, -73.92290169858666 40.668435809319206)), ((-73.95783739504414 40.67071141299789, -73.95780417589381 40.670804169219075, -73.95737243037952 40.67071544256097, -73.95714895661817 40.670668696631054, -73.95710210170294 40.6706577009855, -73.95640285202266 40.67051196345431, -73.95587301172841 40.670401971500596, -73.95535706146157 40.67029558275647, -73.9553857640843 40.67021613870513, -73.95561359090605 40.67025405118331, -73.95583703480311 40.67029216684522, -73.95592478934526 40.670300915687505, -73.95761038434433 40.67066337893101, -73.95783739504414 40.67071141299789)), ((-73.95316658156645 40.66982513896356, -73.95315744015059 40.66992011081807, -73.95248121420235 40.66988460262279, -73.95223609536735 40.66987077725903, -73.95186121044185 40.669848662832976, -73.95115829667343 40.6698126854328, -73.95099248220714 40.66980163583145, -73.950934807245 40.669798865576205, -73.95062502017417 40.66978007615661, -73.95063389889108 40.669683753614095, -73.95147918484389 40.669730475369576, -73.95223616612842 40.669771965514684, -73.95250291346424 40.66978579890958, -73.95293547523725 40.66980793485468, -73.95316658156645 40.66982513896356)), ((-73.94763274005092 40.66952158286004, -73.94762347026044 40.6696179374152, -73.9466957231537 40.66956916351282, -73.94607211946567 40.66953318995162, -73.94595316562067 40.669527645486745, -73.94587746712334 40.66952486422709, -73.94554223557292 40.669505493527616, -73.94508680259435 40.66947939622063, -73.9450961517835 40.66938009271564, -73.94623440730399 40.66944543321611, -73.94763274005092 40.66952158286004)), ((-73.94760787228478 40.669780079857254, -73.94759865368812 40.669875912131715, -73.94696586599316 40.6698437664258, -73.94694063330058 40.66984100821848, -73.94660539765512 40.669824385388296, -73.94583400226675 40.669780108436164, -73.94553481647843 40.66976349855301, -73.9450623521367 40.66973907074711, -73.94507136254575 40.66964337635213, -73.94578001148969 40.669678526452564, -73.9469803626128 40.66974496042964, -73.94760787228478 40.669780079857254)), ((-73.94483855393494 40.66962707639099, -73.94482887803547 40.66972622572746, -73.9437505134265 40.66966657297098, -73.94349097917463 40.669652721023326, -73.94322423424228 40.669638865832304, -73.94229175962423 40.66958700853684, -73.94230072585489 40.66949090189681, -73.94275931955355 40.66951512162395, -73.94319908595804 40.669540040735555, -73.94323513156311 40.669540058526735, -73.94345501373039 40.66955389156956, -73.94410745689919 40.66958714766001, -73.94483855393494 40.66962707639099)), ((-73.95039495975502 40.669672750995296, -73.95038591133104 40.669767806421, -73.94937038141364 40.669713099812164, -73.947860252762 40.669628892583304, -73.94786912048214 40.669532051548686, -73.94897394508718 40.66959215381153, -73.94987871394986 40.66964195743797, -73.95025359705677 40.66966407742418, -73.95039495975502 40.669672750995296)), ((-73.9281922574225 40.66871979258417, -73.92818313655854 40.668817708985685, -73.92568466018443 40.6686822136405, -73.92569419798738 40.6685838114239, -73.9281922574225 40.66871979258417)), ((-73.93100996029507 40.66861523525637, -73.93100094671139 40.66870949224785, -73.93066605377727 40.66869326982479, -73.9303272284457 40.668673851716456, -73.92998479331708 40.66865717428503, -73.92993793446406 40.66865440098475, -73.92988746968277 40.66865162636836, -73.9292855115848 40.66861832066316, -73.92848192302657 40.66857450188847, -73.92849068172245 40.66847529839838, -73.92977583229055 40.66854725512615, -73.93012907816001 40.6685666836184, -73.93042825591971 40.66858333536965, -73.93073103739484 40.66859998581111, -73.93100996029507 40.66861523525637)), ((-73.95037053574848 40.66992932527034, -73.95036133825518 40.67002594482246, -73.94949995286537 40.66997940050104, -73.9478381955696 40.669890826367336, -73.94783626779719 40.66989082549326, -73.94784479681293 40.669797683628076, -73.9497199131558 40.66989166415631, -73.95027142870978 40.66992209635934, -73.95037053574848 40.66992932527034)), ((-73.95792643039553 40.670462800665156, -73.95789342593805 40.670554959051024, -73.95544337884682 40.67005667162843, -73.95547750561572 40.669962212655356, -73.95792643039553 40.670462800665156)), ((-73.93098520666904 40.66887407458862, -73.9309760531366 40.66896978762544, -73.93069461917275 40.66895678607535, -73.93039544085504 40.668940134117705, -73.93009626149838 40.66892348678442, -73.92979708229582 40.66890683417043, -73.92945825494778 40.6688874153036, -73.92911942370039 40.66887073750704, -73.92899326585199 40.66886242449188, -73.92889594318243 40.66885687663779, -73.92878059673595 40.66885131394277, -73.92845909956056 40.66883298077746, -73.92846783197744 40.66873408345117, -73.9298007881655 40.668810770302514, -73.93040995895932 40.66884407677229, -73.93098520666904 40.66887407458862)), ((-73.94486344849909 40.66937196773551, -73.9448542450126 40.66946627973338, -73.94373991896043 40.669405814474786, -73.94328933772472 40.66938363416947, -73.94324968738488 40.66938087074579, -73.94322445620296 40.66937811262436, -73.94231561300137 40.669331341584694, -73.94232482627093 40.66923258124395, -73.94313442192366 40.66927925547002, -73.9432245356411 40.66928479042166, -73.94333627925826 40.66929033505779, -73.94414372096337 40.669329156727066, -73.94486344849909 40.66937196773551)), ((-73.96295588351606 40.671962975038745, -73.96301139849359 40.67196209328563, -73.96306639882582 40.671967909373315, -73.96311949728022 40.67198027607386, -73.96348507403474 40.67206807315616, -73.96380171901347 40.67214050891015, -73.9640377579144 40.672205247134436, -73.96493008476178 40.67248719566436, -73.96492632092675 40.672487941044096, -73.96525763530435 40.67258991415667, -73.96559202179048 40.67268590150784, -73.96592929109772 40.67277585078506, -73.9662692574827 40.672859710579424, -73.96661173046523 40.672937433985126, -73.96695651837707 40.67300897860081, -73.96730342954555 40.673074304728594, -73.967287893705 40.6731212657799, -73.96718817920095 40.67310215006577, -73.96700128029582 40.67306632004453, -73.96682211870186 40.67303122226883, -73.96667257433275 40.67300066058743, -73.96654332081367 40.672973112334525, -73.96640578005962 40.672943025666015, -73.96632345310834 40.67292465450116, -73.96624783655406 40.672907258703056, -73.96622834385154 40.672902639643574, -73.96614064268742 40.672881859693035, -73.96596271378799 40.67283879138128, -73.96562852825133 40.672749686006355, -73.96547818545517 40.67270784808217, -73.96539271106029 40.672684061408674, -73.96528409173482 40.67265140031676, -73.96512827667567 40.6726054287195, -73.96506589199178 40.672585793870624, -73.96495381616869 40.6725525577886, -73.96482691966018 40.67251262263692, -73.96481756593352 40.672509472476214, -73.96478334738447 40.67249794711871, -73.9647587604587 40.67248966655659, -73.96473736633844 40.67248246038198, -73.96470421090017 40.67247129373184, -73.96464590924501 40.67245165720583, -73.96461052479401 40.67243973881393, -73.96447183963524 40.672396917093856, -73.96440989094745 40.67237881560077, -73.96432743820186 40.67235472289423, -73.96423312108496 40.672327163058995, -73.9641337356811 40.67229812201984, -73.96407760172106 40.67228171963143, -73.96401689491279 40.67226398032126, -73.96394668644568 40.672243465315425, -73.96388983123009 40.67222685188864, -73.96384573088258 40.672213965172766, -73.96376857187731 40.67219521648564, -73.96369163760292 40.67217652274901, -73.9636432800869 40.67216477286319, -73.963622044743 40.672159612501694, -73.96356867435503 40.67214664440315, -73.963514383952 40.67213345266025, -73.96347147575793 40.67212302638657, -73.96342347638591 40.672111820433145, -73.9633625941096 40.67209760623886, -73.96331570608365 40.67208721646117, -73.96324828695636 40.67207299291772, -73.9631545825771 40.67205322365111, -73.96303881835875 40.672028801464755, -73.96284887439941 40.67198457271187, -73.96290124949842 40.67197053166848, -73.96295588351606 40.671962975038745)), ((-73.93375601301382 40.66902324664808, -73.93374704277072 40.6691205854379, -73.93122416594039 40.668981281819946, -73.93123292593526 40.66888609082769, -73.93375601301382 40.66902324664808)), ((-73.93654424957364 40.66891808474262, -73.93653566175837 40.66901056657764, -73.93630360416553 40.66900119903585, -73.93602965616498 40.668987322271136, -73.93575570855518 40.66897070188314, -73.93566199111558 40.66896515996559, -73.93561152467846 40.66896238785955, -73.93548175961035 40.66895682471353, -73.9351681598549 40.668940179781245, -73.93485816738561 40.66892353513612, -73.9345445667587 40.66890688940378, -73.93423457612349 40.66888749830699, -73.93421294755437 40.668887485940786, -73.93401757988683 40.66887518107054, -73.93402645809815 40.66877838701634, -73.93415176686878 40.66878589526831, -73.93421304501484 40.668788674198055, -73.93441129850672 40.668797022614946, -73.93475733366667 40.66881917665416, -73.93510337023744 40.66884133145416, -73.93545301445451 40.66886074246521, -73.93579905293298 40.66888014860024, -73.93654424957364 40.66891808474262)), ((-73.93377979367543 40.66876517431046, -73.93377093467606 40.66886131818466, -73.93124794490284 40.66872287410525, -73.93125668449537 40.66862790552349, -73.93377979367543 40.66876517431046)), ((-73.93932392653193 40.66906782908495, -73.93931509826119 40.669163636601546, -73.93880880031041 40.669137053547054, -73.93813473927709 40.669101010105635, -73.93811311182074 40.66910099847332, -73.9377166049123 40.66907882631565, -73.93677834509029 40.66902679871973, -73.93678510015786 40.66895352386138, -73.93678735168173 40.668930101782685, -73.93679031780637 40.66893010341244, -73.93734542287348 40.66896334523711, -73.93762297068186 40.66898271036461, -73.9379005261302 40.66899658258086, -73.93817808050974 40.66901045592784, -73.93845563871997 40.66902158383513, -73.93932392653193 40.66906782908495)), ((-73.94209505472621 40.6692201008414, -73.94208566050861 40.66931574618911, -73.94180062953811 40.66930054752686, -73.94148702659037 40.66928391982012, -73.94117702976394 40.66926729310226, -73.94116982019948 40.66926728941572, -73.94086703190943 40.66925066554846, -73.94062912855756 40.669236819159664, -73.94035517632433 40.66922295269432, -73.94008122785186 40.6692063426076, -73.93981088547729 40.6691897328546, -73.93954824060987 40.669175120253115, -73.9395575277996 40.66908020176907, -73.94010293786684 40.669115775538295, -73.9404057278057 40.66912965754669, -73.94070490947307 40.66914628076977, -73.94100409128879 40.66916290411533, -73.94130327202245 40.66918226965307, -73.94209505472621 40.6692201008414)), ((-73.93930018772672 40.66932545501334, -73.93929109302614 40.66942414673638, -73.93897798101467 40.66940613015778, -73.93863914356945 40.669389482200756, -73.9383039159863 40.66937008950918, -73.93810566166759 40.66935900393031, -73.9380696175268 40.669356240661315, -73.93796868741629 40.66935069493955, -73.93762985800413 40.66932855356942, -73.93675460124665 40.6692843727972, -73.93676281780293 40.66919524516605, -73.93708925032692 40.66921023491875, -73.93743168888925 40.669226889400335, -73.93777773102396 40.6692462913845, -73.93812016739601 40.66926568948778, -73.93842295760352 40.669279575813995, -73.93872574541638 40.66929620521331, -73.93902492741043 40.66931283460607, -73.93930018772672 40.66932545501334)), ((-73.93652010040009 40.66917813497026, -73.93651142410098 40.66927156139286, -73.93576266577502 40.66923145911356, -73.93518954158797 40.669195455632405, -73.9351318678055 40.66919267925562, -73.93491559214999 40.669178833243635, -73.93421269307198 40.669145495275195, -73.93399389695476 40.669133384984825, -73.93400254329 40.66903912485374, -73.93412627604951 40.66904663493044, -73.93422359943088 40.66905217835971, -73.9345155696657 40.6690688144571, -73.9348147507742 40.669085452998914, -73.93511393470212 40.66909934599204, -73.93541671968808 40.669115985000666, -73.93571590123206 40.66913262209934, -73.93652010040009 40.66917813497026)), ((-73.92821637735926 40.66846088140486, -73.92820712974559 40.66856015300855, -73.92712278776933 40.668498944834475, -73.92581902867602 40.66842665380128, -73.92582806437707 40.66833075738284, -73.92821637735926 40.66846088140486)), ((-73.94206970711517 40.66947815606728, -73.94206022572678 40.66957467936893, -73.9417679600416 40.6695585395461, -73.9413714515639 40.669536379987605, -73.94069017551828 40.66950035054785, -73.94032610724965 40.66948094797693, -73.9395227639791 40.66943548918186, -73.93953066531306 40.66935473868859, -73.94206970711517 40.66947815606728)), ((-73.96115210952044 40.67156326270867, -73.96113217217894 40.67161867368919, -73.95822436712288 40.67101068288176, -73.9582239390405 40.67101059357531, -73.9579806063712 40.67095971138589, -73.95799877792857 40.67091004288862, -73.96115210952044 40.67156326270867)), ((-73.95518497740417 40.66993166795282, -73.95514999671788 40.67002732059031, -73.9540348354843 40.66996757789208, -73.95360227231173 40.669945445180424, -73.95352297011453 40.669939923627574, -73.95340041010718 40.66993438450643, -73.95339504427321 40.669934382332855, -73.95340470411654 40.66983325924786, -73.9544458386857 40.66989088687011, -73.9548459596097 40.66991300368149, -73.95518497740417 40.66993166795282)), ((-73.92822895713005 40.668325841585236, -73.92822147556251 40.668406150329055, -73.92583501288848 40.66825699880142, -73.92584079809599 40.668195607155006, -73.92780672561254 40.66830281955578, -73.92787670509018 40.66830663571041, -73.92822895713005 40.668325841585236)), ((-73.95509171430582 40.670186694507166, -73.95505661841634 40.67028266585101, -73.9542545443421 40.670239397830194, -73.95372825509479 40.67021173964507, -73.95372104733205 40.670208991974505, -73.95364534892116 40.6702062149263, -73.95337062764007 40.67019001439522, -73.95337981576382 40.67009382684993, -73.95444926542338 40.67015164150899, -73.95486741207063 40.67017376538012, -73.95509171430582 40.670186694507166)), ((-73.96133156795834 40.671056056551386, -73.96131547222481 40.67110147313712, -73.960700682552 40.67096882416952, -73.95816865307243 40.670445723367564, -73.95818586536579 40.670399542185535, -73.95821548910509 40.670405725081764, -73.95897991261005 40.670565270749954, -73.95932385796552 40.67063705499064, -73.95935970328921 40.670644535633336, -73.96002037642157 40.67078242081187, -73.96004473223695 40.670787503677666, -73.96054368669283 40.67089163318319, -73.96089410991438 40.67096476391898, -73.96105944331183 40.67099926741519, -73.96133156795834 40.671056056551386)), ((-73.95796748057526 40.670348178247615, -73.95795003165401 40.670396158540804, -73.95550080256984 40.66989773214819, -73.95552127001463 40.66984107962416, -73.95563757547662 40.66986519080984, -73.95796748057526 40.670348178247615)), ((-73.94924230030144 40.6695411826696, -73.94787521359471 40.669465511606724, -73.9478791428592 40.6694226011148, -73.94808214652112 40.66943331719035, -73.94925223556812 40.66949507614974, -73.94946420872775 40.6695062629111, -73.9504060762547 40.66955596701746, -73.95040131187561 40.66960601832306, -73.9492415490118 40.669544671836164, -73.94924230030144 40.6695411826696)), ((-73.93379012076709 40.668653103855995, -73.9337859244142 40.668698647730345, -73.93126296019788 40.66855970690392, -73.93126725880968 40.668512997012925, -73.93313302000672 40.668616617619534, -73.93379012076709 40.668653103855995)), ((-73.95777983905806 40.670872123091435, -73.9577646097017 40.67091464704458, -73.9575331456973 40.67086629781234, -73.95746563199808 40.670852161794386, -73.95641891552498 40.670632997920286, -73.9553184116314 40.670402559800614, -73.95533458772474 40.67035778614746, -73.95777983905806 40.670872123091435)), ((-73.93102070506112 40.66850287893218, -73.93101657907727 40.668546030979506, -73.93086266010866 40.66853748814064, -73.92849627260713 40.66841198660093, -73.92850037658486 40.66836550181926, -73.93087275693577 40.66849481605958, -73.93102070506112 40.66850287893218)), ((-73.9448746319663 40.66925736356369, -73.94487056698632 40.66929902487442, -73.94417342122361 40.66926157843587, -73.94417590849608 40.669264268582666, -73.94233126168879 40.669163605867226, -73.94233538006748 40.66911945924812, -73.94401285603594 40.66921056814023, -73.94413225187108 40.6692170513629, -73.9448746319663 40.66925736356369)), ((-73.92819937129806 40.66888553606769, -73.92819556663726 40.66892730682223, -73.92567426331733 40.66878948538162, -73.92567849982726 40.66874578158014, -73.92819937129806 40.66888553606769)), ((-73.96246245096694 40.6717794431692, -73.96245649835713 40.67177944122685, -73.96238981510375 40.6717656955934, -73.96232132941884 40.671751950231474, -73.96225644749619 40.671738205110564, -73.96218796186805 40.67172445786821, -73.96212308118285 40.67171071177193, -73.96205459324345 40.67169696715088, -73.96198971379472 40.67168322188026, -73.96192122946071 40.67166947447936, -73.96185634888403 40.67165572823258, -73.96178786342197 40.67164198255295, -73.96172298171624 40.671628237131024, -73.96165449749317 40.67161449047181, -73.96158961584219 40.671600744074105, -73.96153554854153 40.6715897469272, -73.96152833872505 40.67158974451649, -73.9615211304916 40.67158699823556, -73.96145625007703 40.671573252663514, -73.96140745569431 40.67156370885352, -73.9614420166685 40.671467985754106, -73.96150316773871 40.67147994436458, -73.96157165297357 40.67149369381604, -73.96164013666069 40.671510183494405, -73.96170862195645 40.67152393016273, -73.96177710728044 40.67153767679025, -73.96184559381484 40.67155142427791, -73.9619140791953 40.67156517082386, -73.9619825634218 40.67157891642809, -73.96205104847864 40.67159540946417, -73.96211953394713 40.67160915498721, -73.96218801944383 40.67162290046949, -73.96225650496768 40.671636647711985, -73.96232499051982 40.671650394913705, -73.96239347728392 40.671664140274004, -73.96244204776308 40.67167472278723, -73.96246245096694 40.6717794431692)), ((-73.95035462845838 40.670096426181075, -73.95035093323206 40.670135247613274, -73.95030577058772 40.67013281293125, -73.9491553786389 40.67007132915045, -73.94915521418173 40.67007141282571, -73.94905751536253 40.67006609798762, -73.94782635025943 40.669999120603435, -73.94783027123123 40.66995630826834, -73.94922689752151 40.67003471065291, -73.95035462845838 40.670096426181075)), ((-73.95317705489464 40.6697163465361, -73.95317356418265 40.66975261157953, -73.95063990187018 40.669618637204636, -73.95064380171767 40.6695763290522, -73.95160530461042 40.669629479835734, -73.95208444529655 40.66965596194152, -73.9523123751334 40.66966855940611, -73.9526213638828 40.66968563747652, -73.95288589642205 40.66970025612221, -73.95307289324386 40.669710590323945, -73.95317705489464 40.6697163465361)), ((-73.93655429156442 40.66880994193728, -73.93655076061374 40.66884797417484, -73.9359597976396 40.66881565950408, -73.93595968285729 40.66881572607833, -73.93403255304014 40.668711933344554, -73.93403610861768 40.66867316547555, -73.93587367451123 40.66877297931132, -73.93602007585352 40.668780929531074, -73.93655429156442 40.66880994193728)), ((-73.95312584353994 40.67024832866184, -73.95312234801176 40.67028463602371, -73.95300343188384 40.67027822716632, -73.95287531125514 40.67027132363504, -73.95262810074945 40.67025799983813, -73.95203233580423 40.6702258891377, -73.95126425936327 40.67018448751032, -73.9510467397039 40.67017276139825, -73.95083464725914 40.670161327160315, -73.95059108719637 40.6701481959576, -73.95059464850333 40.67010955906598, -73.95059956118504 40.6701098277282, -73.95312584353994 40.67024832866184)), ((-73.94210544523888 40.66911432519132, -73.94210183457322 40.66915108422691, -73.94164188077124 40.66912597868109, -73.94164229452255 40.669126187810654, -73.93956414580164 40.66901256300573, -73.93956783201182 40.66897489006467, -73.94142176299538 40.66907676439043, -73.94155929717263 40.66908432032558, -73.94210544523888 40.66911432519132)), ((-73.93928493550811 40.66949097165775, -73.9392816124726 40.66952703645815, -73.9386012247909 40.669489565997665, -73.93852056447983 40.66948512390199, -73.93674511082358 40.66938732894648, -73.93674837547856 40.66935190895514, -73.93869446636663 40.669456750501475, -73.93868927984047 40.66945857578443, -73.93928493550811 40.66949097165775)), ((-73.94637493110012 40.66937981429094, -73.94510261242915 40.66931148731047, -73.94510575148185 40.669278145414204, -73.94637533523773 40.66934639994504, -73.94674002053158 40.669365998881325, -73.94764303887011 40.66941451803818, -73.94763938892115 40.669452456001885, -73.94637489941704 40.66938244648349, -73.94637493110012 40.66937981429094)), ((-73.93933319911353 40.66896720134007, -73.93933019863083 40.668999769611524, -73.93879777440664 40.6689706512822, -73.93879799422224 40.668970826099184, -73.93679397005906 40.668861271793794, -73.93679752948091 40.66882424994326, -73.9385831530583 40.668924922179514, -73.93875224777769 40.66893445513626, -73.93933319911353 40.66896720134007)), ((-73.9624078986863 40.6714994587415, -73.96240618612066 40.67149945818192, -73.96240077876564 40.67149945641484, -73.96233589943769 40.67148571133911, -73.96226741286969 40.67147196414323, -73.96220253359597 40.67145821899224, -73.9621376519831 40.671444474704366, -73.9620727715801 40.67143072947976, -73.96200789002172 40.67141698331766, -73.96194300967176 40.671403238920384, -73.96187452563431 40.67138949239177, -73.9618096441564 40.6713757470183, -73.9617447638879 40.671362001608614, -73.96173034706284 40.671359250242006, -73.96160058543367 40.67133176109713, -73.96155012324292 40.671320765159855, -73.96149879713958 40.671310726159184, -73.9615323011893 40.671217930251615, -73.96159343412637 40.67123020038681, -73.96166191912398 40.6712439488844, -73.96173040375915 40.67126043941045, -73.96179528274318 40.67127418482803, -73.9618637666454 40.67128793230449, -73.9619322541244 40.671301678840855, -73.9620007392668 40.671315424435086, -73.96206922443689 40.67132917088908, -73.96213770963523 40.671342917302276, -73.96220619448965 40.6713594075449, -73.962274678564 40.67137315477663, -73.96234316384984 40.671386901067464, -73.96238766429263 40.671395604697246, -73.9624078986863 40.6714994587415)), ((-73.95522797473255 40.66981409086973, -73.95521034287341 40.66986230391346, -73.95520729993785 40.66986214603903, -73.95349376769869 40.669766325743346, -73.95341119126104 40.66976533958713, -73.95341591632224 40.669715871676935, -73.95348302021533 40.66971950989668, -73.9544719002548 40.66977311245196, -73.95519382250046 40.66981224052189, -73.95522797473255 40.66981409086973)), ((-73.92513516647855 40.6682266114471, -73.92315257566378 40.6681165902808, -73.92300589959892 40.66810844429704, -73.92276826106972 40.668095236530526, -73.92277145923669 40.668059246854675, -73.92300936266732 40.668072354834706, -73.92305825270519 40.66807505487187, -73.92395253726676 40.66812431879395, -73.9251002487475 40.668187540546086, -73.92513516647855 40.6682266114471)), ((-73.9448222306023 40.66979435014909, -73.94481887646226 40.66982872662493, -73.94420930323433 40.66979491903906, -73.94412864102735 40.66979044575484, -73.94228233496898 40.669688026357484, -73.94228552108994 40.66965387680003, -73.94247089153947 40.66966376185294, -73.94419283418269 40.66976125337888, -73.9448222306023 40.66979435014909)), ((-73.94759220507156 40.669942942675, -73.94758933609977 40.66997276554401, -73.94639688584941 40.66990862801543, -73.9463101267827 40.66990396251075, -73.9450531937533 40.6698363382705, -73.94505599042384 40.66980664060088, -73.94631594458063 40.66987288212837, -73.94631624152827 40.66987129555843, -73.94759220507156 40.669942942675)), ((-73.95504866897987 40.67034318909447, -73.95503225412479 40.67039098114217, -73.95485984291055 40.670381656323535, -73.95430418416672 40.67035160198007, -73.9533600729301 40.67030052318364, -73.95336374009462 40.670262131190825, -73.95504866897987 40.67034318909447)), ((-73.94205366175633 40.66964151143527, -73.94205113329798 40.66966725050137, -73.94163178936176 40.66964458955509, -73.94142861837487 40.66963360986793, -73.94136883918887 40.66963037898499, -73.94074890306793 40.66959687376619, -73.94060546180799 40.66958912110329, -73.93951350772338 40.669530095196414, -73.93951610530573 40.66950354305582, -73.94205366175633 40.66964151143527)), ((-73.9365051794437 40.66933880485983, -73.93650294971275 40.66936282038384, -73.93593133770113 40.6693318679244, -73.93579386976738 40.66932442326572, -73.93398535938208 40.66922646910299, -73.93398776127668 40.669200291587295, -73.93579019124671 40.669300276584565, -73.9365051794437 40.66933880485983)), ((-73.92544519833817 40.66873305491878, -73.92544324360483 40.66875402936858, -73.92543888860433 40.668753361064844, -73.92315266027532 40.66862824819098, -73.92292325043073 40.66861569101249, -73.92272298548686 40.668604728860345, -73.92272498301868 40.66858225512552, -73.92544519833817 40.66873305491878)), ((-73.93375514887826 40.669189557907686, -73.93375315709231 40.66921116103462, -73.93363505485702 40.66920474703127, -73.93301245992758 40.66917093203079, -73.93120080877621 40.66907251532012, -73.93120255739709 40.669048966076474, -73.93375514887826 40.669189557907686)), ((-73.93096965305914 40.66903671102121, -73.93096770302719 40.66905709842957, -73.9307688899614 40.66904630154318, -73.92843999509012 40.66891979573321, -73.92844178450036 40.66889881662806, -73.93073792779015 40.66902458677903, -73.93073794441854 40.66902451834988, -73.93096965305914 40.66903671102121)), ((-73.96865596178435 40.67318967063993, -73.96864848344646 40.67322712462908, -73.96856304546587 40.6732276632368, -73.96846500451377 40.673227508532726, -73.96837006675213 40.67322554456287, -73.96827163048043 40.673223507508716, -73.96813935368935 40.673218820693556, -73.96805461397746 40.673213492260935, -73.96797159670517 40.673207425822994, -73.96787686776725 40.673199266860564, -73.96781110136084 40.67319206056734, -73.96772587067888 40.67318224178667, -73.96765735772573 40.673173122841405, -73.96751957254841 40.67315247213393, -73.9675294854301 40.67311048931356, -73.96775305951427 40.673138245737775, -73.96797776733563 40.67316006404605, -73.9682033356337 40.67317591984235, -73.96842949114532 40.6731857923349, -73.96865596178435 40.67318967063993)), ((-73.96248571879146 40.67189885908913, -73.96171386459974 40.671736699368246, -73.96158337601257 40.67170928560684, -73.9613710039777 40.67166466600238, -73.96138672261688 40.671621131362414, -73.9624770567372 40.67185440052507, -73.96248571879146 40.67189885908913)), ((-73.96237372030976 40.67132403798268, -73.96155670932406 40.67115118500554, -73.961574819914 40.671100164251555, -73.96208779756486 40.67120662767452, -73.96236192856222 40.67126351949255, -73.96237372030976 40.67132403798268)), ((-73.9686816188335 40.67302880509786, -73.96867981376295 40.67303429324636, -73.968676206842 40.67303841122072, -73.9686707968908 40.67304115271683, -73.96866538930382 40.67304389601438, -73.96860770951261 40.67304388029051, -73.9685536347084 40.67304386552313, -73.96849595362035 40.67304659541361, -73.96836617408509 40.673046559803105, -73.96823999966178 40.673043779370744, -73.96822197472709 40.67304377439349, -73.96811022157328 40.67303825573252, -73.9679804473254 40.673027240607546, -73.96785428061192 40.673013480673426, -73.9677245091115 40.672996974819476, -73.96759564092108 40.6729763528187, -73.96758933268447 40.672972920979504, -73.96758573155203 40.672967430424485, -73.96758393139528 40.67296262656939, -73.96758753652941 40.67295988191433, -73.96758934102091 40.67295576616786, -73.96759294733721 40.67295302151294, -73.96759835614323 40.672950279166635, -73.96760376361605 40.67295028068942, -73.96772812855895 40.67296952993351, -73.96784708387405 40.67298603005963, -73.96796964805088 40.672997043328046, -73.96809221358095 40.67300531259658, -73.96821478044988 40.6730108360641, -73.96833734982494 40.67301361463157, -73.96840223956048 40.673013632471374, -73.96846712929613 40.67301365027458, -73.96853201903174 40.673013668041186, -73.96859690758463 40.67301368577087, -73.9686617996858 40.67301370346492, -73.96866720598103 40.67301370493741, -73.96867441434021 40.67301713786306, -73.96867982085178 40.673019197912645, -73.96867981891877 40.67302331416693, -73.9686816188335 40.67302880509786)), ((-73.92549394080346 40.66820984802604, -73.92549368224333 40.668212629552315, -73.925490542499 40.6682463284275, -73.9253844319126 40.668240441420245, -73.92535325285364 40.6682073011175, -73.92549394080346 40.66820984802604)), ((-73.96537846717523 40.6725273125438, -73.96525535200995 40.67249121699844, -73.96512356275757 40.67245077280537, -73.96514405479738 40.67245286010629, -73.96537846717523 40.6725273125438)), ((-73.9624874962072 40.67189923248201, -73.96248571879146 40.67189885908913, -73.96248720255063 40.67189773843138, -73.9624874962072 40.67189923248201)), ((-73.95318141147914 40.66971692734068, -73.95317705489464 40.6697163465361, -73.95318144601448 40.66971658876087, -73.95318141147914 40.66971692734068)))",B029,69228,B029,B-08,B-08,B-08,B-08,Eastern Pkwy. bet. Grand Army Plaza and Ralph Ave.,"308, 309","35,41",78,"11213, 11216, 11225, 11233, 11238",B,63.636,False,Eastern Parkway,No,100005048,PARK,,18980101000000.00000,,DPR,True,Eastern Parkway,Y,Eastern Parkway,Large Park,Parkway,http://www.nycgovparks.org/parks/B029/,No,"55, 43, 56, 57","20, 21",9,{3CC7E10E-352E-427C-B9C1-35A428020204} +"MULTIPOLYGON (((-73.9868716433124 40.701205410200885, -73.98687969861639 40.70109811331805, -73.98693981178091 40.70120669127997, -73.9868716433124 40.701205410200885)))",B223JA,6670,B223JA,B-02,B-02,B-02,B-02,Jay St. bet. York St. and Prospect St.,302,33,84,11201,B,0.09,False,N/A,No,100003927,PARK,20100106000000.00000,19470729000000.00000,,DPR,True,Park,N,Park,Type 1,Parkway,http://www.nycgovparks.org/parks/B223JA/,No,52,26,7,{AF8FA2A4-07B1-49DA-8CDC-A597DC3B6A64} +"MULTIPOLYGON (((-73.88708824273517 40.670670353827006, -73.88778261818848 40.670568676061635, -73.88805947994523 40.67164414212918, -73.8873644294765 40.67174905915769, -73.88708824273517 40.670670353827006)))",B419,6219,B419,B-05,B-05,B-05,B-05,Belmont Ave. to Sutter Ave. between Schenck Ave. and Barbey St.,305,42,75,11207,B,1.836,False,Sutter Ballfields,Yes,100004449,PARK,20100106000000.00000,19990331000000.00000,,DPR,False,Sutter Ballfields,Y,Sutter Ballfields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B419/,No,60,18,8,{C669A6D4-DB10-44E6-B1AC-5BF7CAEB1575} +"MULTIPOLYGON (((-73.93853846452424 40.75821807830516, -73.9385459731836 40.75821752940083, -73.93855243911244 40.758217619298435, -73.93855886075798 40.758218214355466, -73.93856620185886 40.758219577132834, -73.93857431272887 40.75822221813691, -73.93858097726147 40.75822525729311, -73.93858705855125 40.75822893819811, -73.9385918669289 40.7582324482288, -73.93859682575476 40.75823719113099, -73.93860226924915 40.75824416844446, -73.938606010744 40.75825139609156, -73.93860809424132 40.75825867328322, -73.93860870486151 40.75826302034678, -73.93860865874169 40.75826808836502, -73.93860800038694 40.75827313084274, -73.93860658419236 40.75827808466716, -73.93860457361518 40.758282916606554, -73.93856795665468 40.75834184865238, -73.93847676383564 40.75848862644084, -73.93841237712525 40.758592255479435, -73.93833497000465 40.7587168466723, -73.93833151394794 40.75872110060916, -73.9383278045793 40.75872522473757, -73.93832378745775 40.75872918120715, -73.93831804387348 40.75873421195522, -73.9383118552968 40.75873892908892, -73.9383052525411 40.758743308311104, -73.93830006027349 40.75874637175, -73.93829464202696 40.758749202737334, -73.9382871460128 40.75875265305931, -73.9382793554901 40.758755700697236, -73.93827126939058 40.758758220480296, -73.93826294216882 40.758760235850744, -73.93825654257283 40.75876135174873, -73.93825019372532 40.75876265587909, -73.93824159484554 40.75876389126502, -73.93823293830904 40.75876472499414, -73.93822424686009 40.7587648950317, -73.93822419948883 40.75876489590678, -73.93821542438668 40.75876460303919, -73.93820888655038 40.75876409795129, -73.93820232530474 40.758763295683785, -73.9382021619019 40.75876326858099, -73.93819383902684 40.75876187283566, -73.9381854313333 40.7587599943735, -73.93817744952686 40.758757321893846, -73.93816957334003 40.75875441263745, -73.9381621117294 40.7587514126521, -73.93815462437927 40.75874807496302, -73.93814834296364 40.7587443534053, -73.93814212123422 40.758740123093936, -73.93813630245337 40.758735570617766, -73.93813220588802 40.75873196999965, -73.93812838897071 40.7587281948335, -73.93812369470085 40.75872294687027, -73.9381194921195 40.758717462338126, -73.93811665976342 40.75871321403482, -73.93811415436956 40.758708851542956, -73.93811191906663 40.75870440364815, -73.93811002846792 40.75869986498746, -73.9381079712033 40.75869371343264, -73.9381067829988 40.75868903737202, -73.93810606261779 40.75868431743798, -73.93810559716437 40.75867798753779, -73.93810555450902 40.758671638954226, -73.9381058384114 40.758666885340524, -73.93810631414269 40.758662154342524, -73.93810729670977 40.758657452432956, -73.9381085109554 40.758653219811045, -73.93810859412375 40.75865292899259, -73.93811028377812 40.7586481356114, -73.93811031344646 40.75864806898998, -73.93811222654804 40.75864368185655, -73.93811527196702 40.758637841015734, -73.93811872207712 40.75863234978815, -73.93812264690182 40.75862704431949, -73.93812587876663 40.75862319459521, -73.93813069633232 40.7586180922194, -73.93830238517143 40.758438038258056, -73.93843733916985 40.758298554679065, -73.93849654747132 40.758237836429096, -73.93849982375012 40.758234579250214, -73.93850347639673 40.75823156450802, -73.93850827210694 40.75822826671675, -73.93851348905002 40.75822535906884, -73.93851907035206 40.75822287395205, -73.93852395107174 40.75822113588035, -73.93853005856593 40.75821951642925, -73.93853846452424 40.75821807830516)))",Q284,5768,Q284,Q-01,Q-01,Q-01,Q-01,"37 Ave., 14 St., 21 St.",401,26,114,11101,Q,0.22,False,sixteen Oaks Grove,Yes,100000449,PARK,20090423000000.00000,19390216000000.00000,,DPR,False,Sixteen Oaks Grove,N,Sixteen Oaks Grove,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q284/,No,37,12,12,{45B7F06B-C5B9-449F-8533-FCEC089C89F3} +"MULTIPOLYGON (((-73.97606754205428 40.69711945257271, -73.9764241059448 40.69707835023288, -73.97660286272954 40.69797662351901, -73.97586758545884 40.697947561648945, -73.97580278254402 40.69762190385741, -73.97615934810214 40.69758080143975, -73.97606754205428 40.69711945257271)))",B295,5160,B295,B-02,B-02,B-02,B-02,Flushing Ave. between N. Portland Ave. and N. Oxford St.,302,35,88,11205,B,1.033,False,Oxport Playground (PS 265),Yes,100004437,PARK,20100106000000.00000,19560308000000.00000,34 NORTH PORTLAND AVE,DPR/DOE,False,Oxport Playground,Y,Oxport Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B295/,No,50,25,7,{D1018456-2051-40FB-B04F-FD9C74E694F2} +"MULTIPOLYGON (((-73.85801299970566 40.88777834546929, -73.8583312101526 40.88720436817, -73.85911655600115 40.88745394931275, -73.85880992541203 40.888033271989116, -73.85801299970566 40.88777834546929)))",X141,5414,X141,X-12,X-12,X-12,X-12,E. 226 St. bet. White Plains Rd. and Barnes Ave.,212,12,47,10466,X,1.23,False,Rienzi Playground,Yes,100004608,PARK,20100106000000.00000,19411127000000.00000,759 EAST 225 STREET,DPR/DOE,False,Rienzi Playground,Y,Rienzi Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X141/,No,83,36,16,{C1C8959D-31C9-41A4-9B82-E9DA37028410} +"MULTIPOLYGON (((-73.97524106885247 40.724993869732685, -73.97608683668004 40.7253509193588, -73.97567162289063 40.72592805778877, -73.9748227125527 40.725569678905416, -73.97524106885247 40.724993869732685)))",M270,4963,M270,M-03,M-03,M-03,M-03,"Szold Pl., E. 10 St., Ave. D",103,2,9,10009,M,1.5,False,Dry Dock Playground,Yes,100004781,PLGD,20100106000000.00000,19681010000000.00000,149 EAST 10 STREET,DPR,True,Dry Dock Playground,Y,Dry Dock Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M270/,No,74,27,12,{8831997F-A3F5-44A5-A1D7-C4BB2CC3A9AE} +"MULTIPOLYGON (((-73.80786502743729 40.79228486304605, -73.80794246046179 40.79165356697405, -73.80917339493493 40.79175068660852, -73.80915450545058 40.791893493933394, -73.80880725813657 40.79186796100606, -73.8087685523612 40.79209077745259, -73.80888787335674 40.79209819289068, -73.80885319580669 40.79236036528977, -73.80786502743729 40.79228486304605)))",Q343,6656,Q343,Q-07,Q-07,Q-07,Q-07,"11 Ave., 12 Ave. bet. 152 St. and 154 St.",407,19,109,11357,Q,1.479,False,Whitestone Playground,Yes,100000006,PARK,,19510612000000.00000,,DPR/DOE,False,Whitestone Playground,Y,Whitestone Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q343/,No,26,11,3,{ECEC7A03-EDAF-411C-A6F1-3C7B78C51608} +"MULTIPOLYGON (((-73.91888645045692 40.80902538205771, -73.91925197911145 40.80854227999351, -73.91985539707477 40.808796831578015, -73.9195017016929 40.8092848154918, -73.91888645045692 40.80902538205771)))",X238,5597,X238,X-01,X-01,X-01,X-01,E. 139 St. bet. Brook Ave. and Willis Ave.,201,8,40,10454,X,0.92,False,Saw Mill Playground,Yes,100004414,PARK,20090728000000.00000,19731011000000.00000,,DPR/DOE,False,Saw Mill Playground,Y,Saw Mill Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X238/,No,84,29,15,{0E838AB5-4164-4484-8C2B-96B789F535F4} +"MULTIPOLYGON (((-73.98379553233681 40.593756607215724, -73.98452221318361 40.593676627497565, -73.984883178013 40.595574653329564, -73.98415400569583 40.59565389924791, -73.98379553233681 40.593756607215724)))",B106A,6048,B106A,B-13,B-13,B-13,B-13,"W. 13 St., Stillwell Ave. bet. Ave. U and Ave. V",313,47,60,11223,B,3.214,False,Scarangella Park,Yes,100004164,PARK,20100106000000.00000,19291031000000.00000,,DPR,True,Scarangella Park,Y,Scarangella Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B106A/,No,47,22,11,{247351A1-5E34-4D40-AB5A-957430245398} +"MULTIPOLYGON (((-73.9915495407541 40.72406974355355, -73.99123135080849 40.72397351295611, -73.9912749405419 40.723912263628655, -73.99234628103464 40.72423626560559, -73.99229874790154 40.72437143517068, -73.99183385009329 40.724230838153126, -73.99186724739198 40.72416691967143, -73.9915495407541 40.72406974355355)))",M326,4989,M326,M-03,M-03,M-03,M-03,"E. Houston, bet. Bowery and 2 Ave.",103,2,9,10003,M,0.267,False,Liz Christy Garden,No,100003812,PARK,20100106000000.00000,20021120000000.00000,285 BOWERY,DPR,False,Liz Christy Garden,N,Liz Christy Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M326/,No,65,26,12,{69507217-F9F9-431A-968E-F5AFFC9738A8} +"MULTIPOLYGON (((-74.00943849246845 40.70462457109888, -74.00944939742358 40.704622261292535, -74.00946491170318 40.704622602212254, -74.0094749182737 40.70462679146925, -74.00948446375347 40.70463375433896, -74.00955937782639 40.704712158383884, -74.00956302331056 40.70471856341965, -74.00956453319853 40.70472678586506, -74.00956352870962 40.70473596396219, -74.00955799691243 40.704745154141904, -74.00955183287543 40.70475186346457, -74.00954378845947 40.70475779039829, -74.00953082593665 40.70476158442694, -74.00900901229932 40.704873648284085, -74.00900048798164 40.70487512488931, -74.00899690958292 40.70487446239261, -74.00899441961725 40.70487227254314, -74.00899410806507 40.704869726821435, -74.00899558689063 40.70486747812857, -74.00900165676819 40.70486401338623, -74.00942674665704 40.70463020476119, -74.00943849246845 40.70462457109888)))",M212,5851,M212,M-01,M-01,M-01,M-01,"Hanover Sq., Pearl St. and Stone St.",101,1,1,10005,M,0.117,False,The Queen Elizabeth II September 11th Garden,Yes,100004584,PARK,20100106000000.00000,19520320000000.00000,,DPR,True,The Queen Elizabeth II September 11th Garden,Y,The Queen Elizabeth II September 11th Garden,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M212/,No,65,26,10,{48BA5EE8-EFF2-4AAB-BE2D-8B54E794193A} +"MULTIPOLYGON (((-73.95759297011574 40.72756678342138, -73.95733376178678 40.727591290469164, -73.9573220621909 40.72752264934461, -73.9575812702566 40.727498143223464, -73.95759297011574 40.72756678342138)))",B553,5400,B553,B-01,B-01,B-01,B-01,Franklin St. bet. Oak St. and Calyer St.,301,33,94,11222,B,0.04,False,,No,100008378,PARK,20140724000000.00000,20140520000000.00000,61 FRANKLIN STREET,DPR,False,61 Franklin St Garden,,61 Franklin Street Garden,,Garden,,No,50,26,12,{1BDA5171-0DB5-4B90-BB85-CC719D0B2F33} +"MULTIPOLYGON (((-73.89825077067158 40.856933584829335, -73.89893717210425 40.85716718753067, -73.89873465603748 40.857653701086804, -73.89802470651989 40.85747664884685, -73.89825077067158 40.856933584829335)))",X085,4792,X085,X-05,X-05,X-05,X-05,E. 183 St. bet. Valentine Ave. and Ryer,205,15,46,10458,X,0.911,False,Slattery Playground,Yes,100004208,PARK,20100106000000.00000,19360824000000.00000,2300 Ryer Avenue,DPR,False,Slattery Playground,Y,Slattery Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X085/,No,86,33,15,{01AD9F2D-AD1B-4FBE-BB15-41DC9DC485FD} +"MULTIPOLYGON (((-73.96535651528673 40.67215243584668, -73.96600275871576 40.670507149341795, -73.96765458142258 40.670874220036225, -73.96765990688567 40.67087714550686, -73.96785157373549 40.67113554628218, -73.96785070906422 40.67113578287609, -73.96741368982092 40.67241464559443, -73.9673378984752 40.67263643180716, -73.96729952675012 40.67262994800389, -73.96714709402475 40.67260102865636, -73.96698553634178 40.67257037749938, -73.96660983799973 40.67248637887904, -73.96626768812574 40.67240344247487, -73.9658528650647 40.672295613975606, -73.96537404266113 40.672158106264725, -73.96535651528673 40.67215243584668)))",B159,6556,B159,B-08,B-08,B-08,B-08,"Eastern Pkwy., Flatbush Ave. bet. Underhill Ave. and Washington Ave.","309, 308",35,78,11238,B,7.79,False,Mount Prospect Park,Yes,100004388,PARK,20100106000000.00000,19400307000000.00000,,DPR,False,Mount Prospect Park,Y,Mount Prospect Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B159/,No,57,21,9,{E5888225-F6A3-426B-BCEE-34A6D129668B} +"MULTIPOLYGON (((-73.89758761382461 40.84409910203903, -73.89771844636161 40.843892788156325, -73.89850799276797 40.84398658304987, -73.89833414710202 40.84431700911375, -73.8977255318046 40.84412080562696, -73.89758761382461 40.84409910203903)))",X148F2,5654,X148F2,X-06,X-06,X-06,X-06,E. 175 St. bet. Bathgate Ave. and 3 Ave.,"203, 206",15,42,10457,X,0.511,False,Park,No,100004336,PARK,20100106000000.00000,19590226000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/X148F2/,No,86,33,15,{3303D605-7CDA-49FE-A875-5CD45F0077EB} +"MULTIPOLYGON (((-74.15511140866296 40.64163985783126, -74.15973538570799 40.64131578210028, -74.16026691778384 40.641329541811785, -74.16127433565724 40.64184739926271, -74.16144439034629 40.644304344046816, -74.15514257615253 40.64347910832853, -74.15511140866296 40.64163985783126)))",R128,6105,R128,R-01,R-01,R-01,R-01,Kill Van Kull and Newark Bay,501,49,120,10303,R,34.689,False,Shooters Island,No,100003966,PARK,20100106000000.00000,19940303000000.00000,,DPR,False,Shooters Island,N,Shooters Island,Large Park,Nature Area,http://www.nycgovparks.org/parks/R128/,Yes,61,23,11,{466461A5-2BBB-489F-80C9-7B8C72A8FCEF} +"MULTIPOLYGON (((-73.88747057995819 40.68299624341771, -73.88779243637941 40.68284489663086, -73.8881407538157 40.68268110524057, -73.88830110488323 40.68288563283584, -73.88761756999581 40.68318804092225, -73.88747057995819 40.68299624341771)))",B047A,5046,B047A,Q-05A,Q-05A,B-05,B-05,Jamaica Ave. bet. Warwick St. to Ashford St.,305,37,75,11207,B,0.41,False,Highland Park Childrens Garden (BOOKED BY QUEENS),No,100003695,PARK,20100106000000.00000,19060706000000.00000,375 JAMAICA AVENUE,DPR,True,Highland Park Childrens Garden,N,Highland Park Childrens Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B047A/,No,54,18,7,{2F47626E-33F8-4E15-98C3-A5D942B66483} +"MULTIPOLYGON (((-74.00342102840533 40.671791123628346, -74.00393590364736 40.670725184322194, -74.00465252346898 40.67092544029021, -74.00472265210212 40.67078043285097, -74.00534918643322 40.670955303514496, -74.00605163905219 40.67115135681979, -74.00608847679436 40.67107393757491, -74.006970890944 40.66954763546207, -74.00910378157373 40.670142883854126, -74.0083556475662 40.67170666658824, -74.00834833920766 40.67172266117013, -74.00833583517422 40.671757562445656, -74.00832502107748 40.671800721322114, -74.0083191672093 40.67184328910081, -74.00831791186687 40.67186789577033, -74.00831864688894 40.67190078793644, -74.00832052289124 40.67192144111754, -74.00832375329128 40.67194356204032, -74.00832674630271 40.67195890029954, -74.00833113174613 40.67197719755082, -74.00833766194721 40.67199936596143, -74.00848355652049 40.67249327977341, -74.00849145251503 40.67252191017, -74.00849503195387 40.672544406575454, -74.00849635669181 40.67257289247363, -74.00849382126395 40.67260346875236, -74.00848839346922 40.67262943640785, -74.0084824408343 40.67264843951753, -74.0084756906588 40.6726644844934, -74.00846585768366 40.67268514843788, -74.0082499871143 40.673138847238945, -74.00547448985574 40.67236425909177, -74.00414179771073 40.671992300253955, -74.00342102840533 40.671791123628346)), ((-74.00139361247379 40.67122521201729, -74.0019162524296 40.670143265917446, -74.0036917226995 40.67063885370608, -74.00316910766193 40.67172080690688, -74.00139361247379 40.67122521201729)), ((-74.00277824663644 40.67314765627596, -74.00332635737726 40.671994589715034, -74.00491994194297 40.672436818838854, -74.00436249605725 40.673590277805665, -74.00277824663644 40.67314765627596)), ((-74.00456260892514 40.67366148457411, -74.00513485882068 40.672481069767834, -74.00651201326299 40.672863123756045, -74.0059439040935 40.6740445510203, -74.00456260892514 40.67366148457411)), ((-74.00877586099494 40.67262919961615, -74.0091685870203 40.671838550869325, -74.01089149117877 40.672315260390484, -74.01050755353823 40.67311069140513, -74.00933795460445 40.672785492, -74.00877586099494 40.67262919961615)), ((-74.00105736627373 40.67194434817328, -74.00131030165649 40.67141594483554, -74.00305709746448 40.67190186753077, -74.00280265425529 40.67242985237345, -74.00105736627373 40.67194434817328)), ((-74.00250036706265 40.67373036343191, -74.00271183453212 40.67329193838697, -74.00430584500646 40.67374033276002, -74.00409775468694 40.674172190433836, -74.00250036706265 40.67373036343191)))",B126,4595,B126,B-06,B-06,B-06,B-06,"Halleck St., Bush St. bet. Otsego St. and Court St.",306,38,76,11231,B,58.503,False,Red Hook Recreation Area,No,100003858,PARK,20100106000000.00000,19340627000000.00000,825 HENRY STREET,DPR,Part,Red Hook Recreation Area,Y,Red Hook Recreation Area,Large Park,Community Park,http://www.nycgovparks.org/parks/B126/,Yes,51,25,"10, 7",{EADBFC13-8229-44D0-8C58-4071C89D2007} +"MULTIPOLYGON (((-73.80368540246127 40.69081387843998, -73.8035519852166 40.69072085085531, -73.80379591948515 40.69051455639046, -73.8039293354717 40.69060758459326, -73.80368540246127 40.69081387843998)))",Q487,5934,Q487,Q-12,Q-12,Q-12,Q-12,Inwood St. bet. Shore Ave. and Lakewood Ave.,412,28,103,11435,Q,0.115,False,Block Association #81,No,100000127,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,Block Association #81,N,Block Association #81,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q487/,No,32,10,5,{7A6260F9-CB4B-43DD-AAB7-7854099B1AB2} +"MULTIPOLYGON (((-73.95771811717395 40.620606603318, -73.95756993970416 40.619816196966205, -73.95806555909259 40.619433801658886, -73.95827233511278 40.61958942562572, -73.95844879108029 40.62052296734111, -73.95771811717395 40.620606603318)))",B150,5483,B150,B-14,B-14,B-14,B-14,Ave. L bet. E. 17 St. and E. 18 St.,314,44,70,11230,B,1.581,False,Kolbert Playground,Yes,100004473,PARK,20100106000000.00000,19360820000000.00000,1706 AVENUE L,DPR,False,Kolbert Playground,Y,Kolbert Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B150/,No,48,17,9,{94060D7A-8E7F-412B-964A-C68D6B29BC46} +"MULTIPOLYGON (((-73.91204660623697 40.6965359781882, -73.911103812957 40.69600372605301, -73.91165076245717 40.695449409577364, -73.91173305574831 40.69549124482051, -73.9118114190351 40.69553108145623, -73.91188512161241 40.69556854972285, -73.91196286198324 40.695608070598425, -73.91201827145939 40.695636238694135, -73.91208058353004 40.695667915031926, -73.91214093650602 40.69569859657443, -73.9122026894402 40.69572998965789, -73.91226026164158 40.69575925521072, -73.91232385324626 40.69579158256201, -73.91251333234787 40.69559954556506, -73.91321624434902 40.69599897259025, -73.91275288504245 40.69647103496541, -73.9123354894383 40.69623700676552, -73.91204660623697 40.6965359781882)))",B017,5032,B017,B-04,B-04,B-04,B-04,Knickerbocker Ave. bet. Woodbine St. and Putnam Ave.,304,37,83,11237,B,2.783,False,Bushwick Playground,Yes,100004622,PARK,20100106000000.00000,19070920000000.00000,617 KNICKERBOCKER AVENUE,DPR,False,Bushwick Playground,Y,Bushwick Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B017/,No,54,18,7,{FCE52CC2-90EF-4E74-A929-AAFE5F7A332C} +"MULTIPOLYGON (((-73.91243016359473 40.7560561033748, -73.91239500773976 40.75598776248593, -73.91246066227626 40.75601881050257, -73.91243016359473 40.7560561033748)))",Q254,6188,Q254,Q-01,Q-01,Q-01,Q-01,"48 St., Newtown Rd., Broadway",401,26,114,11377,Q,0.004,False,Corporal Frank F. Fagan Sq.,Yes,100000379,PARK,20090423000000.00000,,,DPR,False,Corporal Frank F. Fagan Sq.,N,Corporal Frank F. Fagan Sq.,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q254/,No,30,13,14,{81688284-3280-4FB9-BFA6-6CE8D9D7E511} +"MULTIPOLYGON (((-73.91598050092 40.6692737240951, -73.91605127926891 40.66926327304745, -73.91612205759566 40.66925282195619, -73.91619283590138 40.669242369920916, -73.91626715221126 40.66923139541641, -73.91634430033558 40.66922000328274, -73.91641429597678 40.66948674284638, -73.91605049516156 40.669540464778926, -73.91598050092 40.6692737240951)))",B510,6231,B510,B-16,B-16,B-16,B-16,Strauss St. bet. E. New York Ave. and Pitkin Ave.,316,41,73,11212,B,0.23,False,Marcus Garvey Tenant's Assoc. Garden,No,100004498,PARK,20100106000000.00000,20050429000000.00000,,DPR,False,Marcus Garvey Tenant's Assoc. Garden,N,Marcus Garvey Tenant's Assoc. Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B510/,No,55,20,9,{BC73715A-F04E-4E79-BCF8-70DF2F17E804} +"MULTIPOLYGON (((-73.89910115669812 40.82332051379485, -73.89901883523831 40.82351934516692, -73.89898805295736 40.82351195664886, -73.89899151031528 40.82329440156156, -73.89910115669812 40.82332051379485)))",X332,5623,X332,X-02,X-02,X-02,X-02,Rev James Polite Av bet. E 164 St and E 165 St,202,17,41,10459,X,0.032,False,Schomberg Academy Garden,No,100005121,PARK,20100106000000.00000,20060814000000.00000,,DPR,False,Schomberg Academy Garden,Y,Schomberg Academy Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X332/,No,79,32,15,{00715DD7-8AD6-4175-A96C-099D84349F84} +"MULTIPOLYGON (((-73.96116055481573 40.634138851637374, -73.96116814367004 40.63413868220137, -73.96117503900848 40.63413994795829, -73.96118177986786 40.6341426112684, -73.96118590943266 40.634145529444126, -73.9611875541693 40.634146691669045, -73.96118870259991 40.634149620545095, -73.96119078818407 40.63415494601901, -73.96120319111938 40.634218508848726, -73.96120338439981 40.63421949948504, -73.96120364603648 40.63422083864533, -73.96122276905378 40.63431882338353, -73.96122347971301 40.634322468924815, -73.96126866167893 40.634554001325434, -73.96127644130105 40.63459386722677, -73.96128682671949 40.634647080598945, -73.9613095928976 40.634763746012915, -73.96131251816763 40.634780625427204, -73.96131114531555 40.63478756976878, -73.9613077462647 40.634792727699136, -73.96130341189229 40.63479638324869, -73.96129717718945 40.63479930783749, -73.96129695844871 40.634799410423035, -73.96128743352199 40.63480124157402, -73.96128647726732 40.6348011854199, -73.96127956835936 40.63480077515839, -73.96127288850013 40.63479879536879, -73.96126746345303 40.63479570386034, -73.96126736655806 40.63479564529399, -73.9612601501174 40.6347691045642, -73.96124618571099 40.634697079940466, -73.96124303314737 40.634680818203854, -73.9612414987003 40.63467290932757, -73.96121383752728 40.63453023255317, -73.96121378802904 40.63452997768961, -73.96120087968184 40.63446339164982, -73.96118442165599 40.63437851036309, -73.96117141908408 40.63431144160886, -73.96116822884072 40.63429499164827, -73.96114207704154 40.63414694016138, -73.96114758775109 40.63414288698566, -73.96114829834391 40.63414257564615, -73.96115324057365 40.63414040436316, -73.96116055481573 40.634138851637374)), ((-73.96087651985736 40.63266760313888, -73.96088296877657 40.63266592586448, -73.96089070027297 40.63266612480771, -73.96089961609898 40.63266843947315, -73.96090033332149 40.632668892678275, -73.96090761662354 40.63267348240024, -73.96091123833507 40.63267753146597, -73.96091338931967 40.632682076217726, -73.96091676348439 40.63269909718011, -73.96091679412677 40.63269925117931, -73.96091988483852 40.632715877617734, -73.9609254170148 40.63274563986062, -73.9609325246015 40.63278387832639, -73.9609460834769 40.632856824096905, -73.96094609525869 40.63285688983881, -73.96095722211184 40.632916753837854, -73.96099328113422 40.633110738834226, -73.9610127376748 40.63321541819281, -73.96101350595983 40.63322559702275, -73.96101079607546 40.633230781293875, -73.96101011564632 40.633232082313505, -73.96100580353553 40.633236220538315, -73.96100525003314 40.63323675255753, -73.96099934276556 40.633239883460554, -73.96099469182242 40.63324129389713, -73.96099066510305 40.63324251543625, -73.96098603149451 40.63324258050254, -73.96098201254837 40.633242636772046, -73.96097879422882 40.63324202602833, -73.96097369313817 40.63324105984092, -73.96096795592685 40.633238392356425, -73.96096734498117 40.63323810938599, -73.96096198702804 40.63323372023706, -73.96096103268559 40.63323245468346, -73.96095821572351 40.63322871657199, -73.96095211800511 40.633197747444285, -73.96094925833637 40.63318215488226, -73.96093821792833 40.63312195952242, -73.96093819082543 40.63312181633063, -73.9609222500237 40.63303489549333, -73.96090272615882 40.63292844297188, -73.96089939756109 40.63291029907747, -73.9608957520152 40.63289042247596, -73.96087921866041 40.63280026856457, -73.96086755861313 40.63273669783817, -73.96086750558523 40.63273641955963, -73.96085928973918 40.63269340615891, -73.96085925792227 40.632693239552026, -73.96085820184257 40.632688101729734, -73.96085918207841 40.63268147874373, -73.96086112715065 40.63267836540997, -73.96086332659804 40.6326748424265, -73.96086522935441 40.63267334010733, -73.96086930567428 40.63267012393911, -73.96087651985736 40.63266760313888)), ((-73.96042354777695 40.63027900847814, -73.9604296036358 40.63027804520556, -73.96043672853023 40.630278189939524, -73.96044312220809 40.63027960415413, -73.96044859447757 40.63028210768002, -73.96045396311266 40.630285965551494, -73.96045650835111 40.63028922360615, -73.96045723117533 40.630290148688346, -73.96046029024056 40.63030195285035, -73.96046438682026 40.630324182684, -73.9604659573481 40.63033271384585, -73.96047085156884 40.630359273651514, -73.96047292636794 40.63037053806343, -73.96047737404993 40.63039468792487, -73.96048262173625 40.63042317046061, -73.96049060755793 40.63046651701208, -73.96050962252978 40.63056972398494, -73.96050964020039 40.630569823948704, -73.96051592355884 40.630603920676826, -73.96054438076251 40.63075838125167, -73.96054865412493 40.63078157829988, -73.96056296938436 40.63085927913411, -73.96056441045009 40.63086891068454, -73.96056435950742 40.63086910878137, -73.9605632388173 40.63087338406363, -73.96056001508374 40.630878134098765, -73.96055952413116 40.63087885524647, -73.96055525039083 40.63088227845609, -73.96055458106657 40.630882814936086, -73.96054953257878 40.63088515635574, -73.96054457694291 40.63088638656597, -73.96053782284052 40.63088672914701, -73.96053154718656 40.63088550949057, -73.96052935248115 40.63088508189092, -73.960528416621 40.63088461329949, -73.96052178052513 40.63088128540259, -73.96051731175976 40.63087670742795, -73.96051695855856 40.63087634529784, -73.9605111771113 40.63085092975122, -73.9604868158083 40.630723955333806, -73.9604809087277 40.63069317174516, -73.96045190839324 40.63054201227129, -73.96040529632921 40.630295759062406, -73.96040735022977 40.63029042689285, -73.9604115100649 40.630285693393326, -73.9604124976854 40.63028456988496, -73.9604128145753 40.6302843691782, -73.96041837314993 40.630280858165115, -73.96042354777695 40.63027900847814)), ((-73.96100902708329 40.63340187035032, -73.96101696658259 40.63340025300821, -73.96102465913572 40.633400488850526, -73.96102491799739 40.6334004961424, -73.96103101162146 40.63340212994872, -73.96103459691035 40.63340385745916, -73.96103700167679 40.63340501724238, -73.96103802835763 40.63340588839241, -73.96104067008413 40.63340812617739, -73.96104189458222 40.63341030764993, -73.96104404365424 40.63341413468441, -73.96104683243423 40.6334236496152, -73.96105175754096 40.63344870643094, -73.96105595903357 40.63347007357394, -73.96106012045733 40.63349123898687, -73.96107624643632 40.63357326554127, -73.96108774077562 40.63363172753895, -73.9611177359861 40.633784299151756, -73.96114933652713 40.63394503450326, -73.96115036658539 40.63395027317154, -73.96115063060155 40.63395767372761, -73.96114907905059 40.63396294844488, -73.96114892981555 40.63396345898885, -73.96114545438213 40.63396789377212, -73.96114535383376 40.63396802161184, -73.96114103976655 40.633971392598404, -73.96114057627972 40.633971606765314, -73.96113452612202 40.63397440083259, -73.96112459238469 40.63397612196871, -73.9611139569907 40.633974991822896, -73.96110998054041 40.6339730435555, -73.96110588828337 40.63397103761558, -73.96110080202948 40.63396682596767, -73.96110052089884 40.633966489078375, -73.96109741310055 40.63396277518627, -73.96109723722086 40.63396235458429, -73.96109576172411 40.633958819547175, -73.96109531254143 40.63395477336238, -73.96109395392756 40.63394539579615, -73.9610917761764 40.63393395666426, -73.96107902314982 40.633866966325925, -73.9610790137229 40.633866915893655, -73.96106744858 40.633806167454324, -73.96099420096323 40.63342182172907, -73.96099427722386 40.63341673292059, -73.96099443346681 40.63341636646227, -73.96099629534967 40.6334120211879, -73.960998322971 40.63340926448569, -73.96099973071271 40.633407350459265, -73.96100359057571 40.63340444669328, -73.96100902708329 40.63340187035032)), ((-73.96057372590293 40.631052677490764, -73.96057884421474 40.63105221097561, -73.96058268909474 40.63105246173769, -73.96058511563592 40.631052620160496, -73.96059101287696 40.631054163871305, -73.96059128351219 40.63105423420457, -73.96059712908078 40.63105721242492, -73.96059812856043 40.63105803854382, -73.96060203432424 40.63106127454825, -73.96060522159931 40.631066235701695, -73.96061061485334 40.63109459130612, -73.96061062428112 40.63109463903691, -73.96061792474048 40.63113592855509, -73.9606223401264 40.63116090147261, -73.96062786760523 40.63119217210345, -73.96064730454576 40.631302111473396, -73.96066359727209 40.631394267205316, -73.96067979933434 40.631485905104334, -73.96069206783487 40.631555294322645, -73.96070884722727 40.63165021120458, -73.96070900201397 40.63165231397035, -73.96070973487366 40.631662324394824, -73.960707959684 40.63166803758398, -73.96070524015437 40.631671602711556, -73.96070515971546 40.63167170894537, -73.96070387388261 40.63167339517879, -73.96069739210388 40.631676832947555, -73.9606931635038 40.63167779415733, -73.96069085119053 40.63167832107117, -73.96069049181266 40.63167840289561, -73.9606834566292 40.63167820958002, -73.96067675573812 40.63167637563195, -73.96067086907964 40.63167282377097, -73.96066690976161 40.631668133411914, -73.96065755790909 40.63162172194323, -73.96065754494899 40.63162165079778, -73.9606565598576 40.63161645266249, -73.96062979517883 40.63147512948722, -73.9605686058924 40.63115204355785, -73.96056860118146 40.631152014739634, -73.96055394669794 40.63106818305545, -73.96055795535781 40.631061310765396, -73.96056357871916 40.631056273387216, -73.96056404099973 40.63105606912786, -73.96056428337245 40.63105596114865, -73.96056884469944 40.63105394374831, -73.96057372590293 40.631052677490764)), ((-73.9607154444295 40.63184224472354, -73.96072513793169 40.63184049022121, -73.9607325642181 40.63184095382361, -73.96073850281613 40.6318426443255, -73.96074306758715 40.63184490168526, -73.96074749327214 40.63184850437337, -73.96074789011071 40.631849042118944, -73.96075064907964 40.63185278832103, -73.96075160156909 40.63185716426997, -73.96075479382161 40.631871834820856, -73.96075882638287 40.631894718395465, -73.96076050161439 40.631904218546424, -73.96076968592197 40.6319563401416, -73.96079463889143 40.632097957128984, -73.96081741957303 40.63222723805406, -73.96084415167287 40.63237894325067, -73.96084418819342 40.63237915128309, -73.96085178573513 40.63242226713506, -73.96085226573601 40.63242813958522, -73.96085154656977 40.63243100479297, -73.96085115795739 40.632432556255466, -73.96084811766146 40.63243682998564, -73.96084305656566 40.63244033128252, -73.96083484832529 40.63244285624467, -73.96083463906989 40.6324429210108, -73.96082681072897 40.63244262837673, -73.96082299467352 40.63244146270507, -73.96081872480431 40.6324401581986, -73.96081337042301 40.6324358509908, -73.96081016449163 40.63243031620668, -73.9608076401528 40.63241746763658, -73.96079093904926 40.63232956134697, -73.96074555888238 40.63209070831212, -73.96072619013381 40.63198875749914, -73.96070132676104 40.631857893628144, -73.96070198870007 40.63185385502479, -73.96070496391484 40.63184967222842, -73.96070931516238 40.631845191830294, -73.96071006595076 40.63184483007806, -73.96071383407838 40.631843018620025, -73.9607154444295 40.63184224472354)))",B179,6359,B179,B-14,B-14,B-14,B-14,E. 17 St. bet. Foster Ave. and Ave. H,314,45,70,11230,B,0.8,False,Flatbush Malls,Yes,100005051,PARK,20100106000000.00000,,,DPR,False,Flatbush Malls,N,Flatbush Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/B179/,No,"44, 42",17,9,{E6E68BA8-8BC7-497D-B24C-2CB0B6445F17} +"MULTIPOLYGON (((-73.83911008399201 40.69025646677935, -73.8401849176339 40.68995201277481, -73.84039534495308 40.69038055268181, -73.83932536525835 40.69068602759921, -73.83911008399201 40.69025646677935)))",Q337,5908,Q337,Q-09,Q-09,Q-09,Q-09,106 St. bet. Atlantic Ave. and 94 Ave.,409,28,102,11416,Q,1.201,False,Maurice A FitzGerald Playground,Yes,100000272,PARK,20090423000000.00000,19510403000000.00000,,DPR,True,Maurice A FitzGerald Playground,Y,Maurice A FitzGerald Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q337/,No,38,10,5,{FD9F608F-A47D-4B59-B619-0E2EE0A11D44} +"MULTIPOLYGON (((-74.01923281094766 40.645829030538515, -74.01967731172948 40.64539087405329, -74.02026285443186 40.64574475699214, -74.01981005763432 40.646177635615146, -74.01923281094766 40.645829030538515)))",B098,5457,B098,B-07,B-07,B-07,B-07,2 Ave. bet. 55 St. and 56 St.,307,38,72,11220,B,0.913,False,Martin Luther Playground,Yes,100004630,PARK,20100106000000.00000,19240515000000.00000,5501 2 AVENUE,DPR,True,Martin Luther Playground,Y,Martin Luther Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B098/,No,51,20,7,{3BE05402-0034-434D-8244-FE25C6A249D4} +"MULTIPOLYGON (((-73.96596041573984 40.68828641638906, -73.9667449386069 40.68819671599593, -73.9668765667157 40.68886908901228, -73.96609707580896 40.68895874135135, -73.96596041573984 40.68828641638906)))",B259,4849,B259,B-02,B-02,B-02,B-02,Lafayette Ave. bet. Waverly Ave. and Washington Ave.,302,35,88,11205,B,1.187,False,Underwood Park,Yes,100003926,PARK,20100106000000.00000,19520612000000.00000,336 WAVERLY AVENUE,DPR,True,Underwood Park,Y,Underwood Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B259/,No,57,25,8,{E8E52DBC-2759-46DA-8E07-95164395E654} +"MULTIPOLYGON (((-73.80540028506893 40.5892243664061, -73.80531743015561 40.58874474848319, -73.8055252988295 40.58872336810743, -73.80576681228499 40.58869852588082, -73.8058886140703 40.588685997379116, -73.8058858312385 40.58866033130429, -73.80629368085347 40.58863328790489, -73.80635164462888 40.58916773218452, -73.8061622745176 40.58918137282879, -73.80615139475891 40.58909157479205, -73.80561339414004 40.58912221040917, -73.80562109677325 40.58920957620725, -73.80540028506893 40.5892243664061)))",Q403,5172,Q403,Q-14,Q-14,Q-14,Q-14,"B 80 St., B 79 St., Rockaway Beach Blvd., Beach Channel Dr.",414,31,100,11693,Q,1.051,False,Beach Channel Playground,Yes,100000183,PARK,20090423000000.00000,19640319000000.00000,245 BEACH CHANNEL DRIVE,DPR/DOE,False,Beach Channel Playground,Y,Beach Channel Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q403/,No,31,10,5,{7157C66C-2BFA-4C22-9F0E-DA5B821B5C1A} +"MULTIPOLYGON (((-73.86100123257201 40.75710823967319, -73.86131598437709 40.75707557225353, -73.86132639344689 40.75713318296009, -73.86167044115146 40.75709747280519, -73.86172006707618 40.757372111118315, -73.86106248110508 40.75744036529895, -73.86100123257201 40.75710823967319)))",Q468,4956,Q468,Q-03,Q-03,Q-03,Q-03,"107 St., 108 St. bet. Northern Blvd. and 34 Ave.",403,21,115,11368,Q,0.452,False,Louis Armstrong Community Center,No,100000263,PARK,20090423000000.00000,19950113000000.00000,33-12 108 STREET,DPR,False,Louis Armstrong Community Center,N,Louis Armstrong Community Center,Building,Buildings/Institutions,http://www.nycgovparks.org/parks/Q468/,No,35,13,14,{63676E72-5A1C-484A-BD8B-9D323E4858FC} +"MULTIPOLYGON (((-73.91974259523117 40.88058808696556, -73.91976667625742 40.88058019382977, -73.91978344175153 40.880575245600504, -73.91982181319948 40.88056549027194, -73.91984487527306 40.88056037621574, -73.91988318598503 40.88055374911695, -73.91991945345379 40.88054926014514, -73.91994487531417 40.88054711030904, -73.9199624820885 40.880546002314446, -73.91998207003745 40.88054601589679, -73.9200048843852 40.88054660442192, -73.92003624606579 40.88054793996583, -73.92005522348975 40.88054952266182, -73.92008035928032 40.8805524207286, -73.92011312330712 40.88055673423316, -73.92012815745308 40.8805589607374, -73.92015977820732 40.88056488350847, -73.92018808925546 40.88056945955486, -73.92022428089355 40.88057476413297, -73.92024925984495 40.88057786826611, -73.92027373276107 40.88058049838803, -73.92030185456247 40.880582621348786, -73.9203594077646 40.880581113140224, -73.92040029034872 40.88057669383798, -73.92047425884817 40.88056638652637, -73.92052565758608 40.880558290532555, -73.92057857405919 40.8805489474851, -73.92062392865381 40.88053923361513, -73.92065041222484 40.88053320595569, -73.92068422923319 40.880526084735926, -73.92072410995331 40.880517077548944, -73.92077799677043 40.880502835525995, -73.92087870472209 40.88047471125821, -73.92098017262421 40.88044897461425, -73.92103320869128 40.88043670575739, -73.92110722088522 40.88042135624237, -73.92114451844654 40.88041350517072, -73.921211460666 40.88040115928565, -73.92129658491945 40.88038575870282, -73.9213903051582 40.880371057287476, -73.92150751021295 40.88035473918723, -73.92161906740913 40.88034279440054, -73.9217499657981 40.880329749618916, -73.92183379732622 40.880322839357206, -73.92185384312877 40.88032187860492, -73.92186977817227 40.880321749817966, -73.92188308353946 40.880322093805674, -73.9219030708924 40.88032342024263, -73.9219196526954 40.880325178407055, -73.92195249071042 40.88033115283842, -73.92198248081071 40.88033856161241, -73.92200589517313 40.88034544275194, -73.92202872376946 40.880355082583606, -73.92205636433806 40.88036791428561, -73.92208328559306 40.88038306875215, -73.92210837593784 40.88040148714315, -73.92211923343368 40.880410179668814, -73.9221357941361 40.88042592595518, -73.92214954902629 40.88044058796094, -73.92216315104322 40.88045814492809, -73.92217346053249 40.88047282711942, -73.92218224433745 40.880487458754274, -73.92218985117489 40.88050414630755, -73.92219638221712 40.880519569751634, -73.92220037171094 40.88053315178685, -73.92220351938732 40.880547280750626, -73.92220465370443 40.8805563296098, -73.92220572487454 40.880569662043655, -73.9222057115247 40.88058107120643, -73.92220569946664 40.88059137637284, -73.92220433241968 40.880605809359324, -73.92220085816017 40.88062540521884, -73.92219838110651 40.88063637328304, -73.92219414323498 40.88064949862764, -73.92218967525537 40.88066155764024, -73.92217537937503 40.88068939916678, -73.92201221446385 40.88096614287871, -73.92198972774257 40.88100470724846, -73.92195297315735 40.88106324647492, -73.92191846231442 40.88111349282103, -73.92189538259701 40.88114470789565, -73.91987364468083 40.88159827235916, -73.91987619112795 40.881246542104314, -73.9198765653898 40.88122444171098, -73.91987575520942 40.88120068179814, -73.91987453434635 40.88117706657853, -73.9198726135351 40.88116522203943, -73.91986994346834 40.881146994327935, -73.91986623166547 40.881128801912496, -73.91986207299043 40.88110928186868, -73.91985683349684 40.88109269306002, -73.91985317783208 40.88107911567911, -73.91984869090192 40.88106616806174, -73.91984425086336 40.88105270719907, -73.91984003486509 40.88104236307755, -73.9198343593346 40.88102826020956, -73.91982622470334 40.881008919300754, -73.9198157005456 40.8809876478879, -73.91979890376257 40.880957470800524, -73.91977902863411 40.88092594264129, -73.91975657097379 40.880894147939706, -73.9197364984776 40.88086889603049, -73.91970691761142 40.88083602478523, -73.91966482614166 40.880795030535396, -73.91964130351226 40.88077374375378, -73.91960918945472 40.88075088683719, -73.91960207190925 40.88074412462398, -73.91959536579944 40.880735613951, -73.91959254395364 40.88073112755925, -73.91958938270211 40.88072573143895, -73.91958688567755 40.88071950012933, -73.91958608712973 40.880715640985635, -73.91958512302607 40.88071133148305, -73.91958427856923 40.8807071733456, -73.91958392491058 40.88070235279167, -73.91958413927672 40.88069579919577, -73.91958585046831 40.880687658183476, -73.91958807984771 40.88068171291981, -73.91959027708097 40.88067586038387, -73.91959440142452 40.880668742205074, -73.91960099212669 40.88066083601709, -73.91961162515832 40.88065083811129, -73.91961893780591 40.880645380849565, -73.91962801500183 40.880639654670055, -73.91964586263586 40.88062972481908, -73.91966311198298 40.88062104172359, -73.91970196534608 40.880603278738285, -73.91974259523117 40.88058808696556)), ((-73.91931300830807 40.880889506449016, -73.91933544093342 40.88088797599343, -73.91935501486851 40.880889844675714, -73.91937621827648 40.8808932624303, -73.9193929316489 40.88090007908539, -73.91940719359486 40.880909060598164, -73.91941579416562 40.88091485943702, -73.91944282655595 40.88093883486683, -73.91947622930012 40.8809713378451, -73.91949985339313 40.88099702901259, -73.91951708563974 40.8810192281316, -73.91952726241776 40.881035319727836, -73.91953540270687 40.88104893626537, -73.9195415050716 40.88106224251456, -73.9195541092085 40.8810941132342, -73.91957027141984 40.88114664000278, -73.91957645507365 40.88117612805869, -73.91958057030092 40.881202075758814, -73.91958364620163 40.88122999029869, -73.91958558050383 40.88127380034042, -73.9196006103519 40.88173591371891, -73.9189019271837 40.882478702985956, -73.9186992266466 40.88269323193405, -73.91774984069767 40.88238617763193, -73.91793746400451 40.88205490409827, -73.91900670807881 40.881133222146886, -73.91912542336863 40.88103079665008, -73.91925712106102 40.88091405786557, -73.91926537393562 40.8809081798563, -73.91927392159596 40.880902825235644, -73.91928328487987 40.880898000671166, -73.91929505977595 40.88089351547496, -73.91931300830807 40.880889506449016)))",X080,5737,X080,X-08,X-08,X-08,X-08,"Palisade Av, Kappock St, Independence A",208,11,50,10463,X,8.972,False,Henry Hudson Park,Yes,100003938,PARK,20100106000000.00000,19351016000000.00000,,DPR,Part,Henry Hudson Park,Y,Henry Hudson Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X080/,No,81,34,16,{7601046E-AF9F-4F8C-A7FA-6940D4D97FA0} +"MULTIPOLYGON (((-73.92171592645872 40.67330448321622, -73.92205630198804 40.67332300558395, -73.92203774595366 40.67352432394441, -73.92203183770629 40.67358842493052, -73.92168934120416 40.67357002171738, -73.92169583902567 40.67350571763321, -73.92171592645872 40.67330448321622)))",B501,5286,B501,B-16,B-16,B-16,B-16,St Mark's Ave. and Ralph Ave.,316,41,73,11233,B,0.211,False,St Mark's Block Association,No,100003903,PARK,20100106000000.00000,20021120000000.00000,455-457 RALPH AVENUE,DPR,False,St. Mark's Block Association,N,St Mark's Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B501/,No,55,25,9,{05043508-D2A2-41B5-95BA-2F5CD278E54C} +"MULTIPOLYGON (((-73.99601102624779 40.70986334565201, -73.99609762101893 40.71018556583359, -73.99432330735873 40.71045743278885, -73.99428024867102 40.71013332418326, -73.99601102624779 40.70986334565201)))",M206,4678,M206,M-03,M-03,M-03,M-03,"Cherry St. To Water St., W. Catherine Slip To Market Slip",103,1,5,10002,M,1.254,False,Tanahey Playground,Yes,100004672,PLGD,20100106000000.00000,19491017000000.00000,312 WATER STREET,DPR,True,Tanahey Playground,Y,Tanahey Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M206/,No,65,26,7,{85651B2C-68E3-4A82-A072-941697B2DC60} +"MULTIPOLYGON (((-73.94324227632016 40.69515265354633, -73.9432539435036 40.69521204181697, -73.94294057411162 40.695248333335186, -73.94292890601709 40.69518894593297, -73.94324227632016 40.69515265354633)))",B495,6599,B495,B-03,B-03,B-03,B-03,Throop Ave. and Vernon Ave.,303,36,79,11206,B,0.039,False,Vernon/throop Av Block Association,No,100004619,PARK,20100106000000.00000,20021120000000.00000,253 THROOP AVENUE,DPR,False,Vernon/Throop Ave Block Association,N,Vernon/throop Av Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B495/,No,54,18,8,{7B26157F-0DA8-44C4-971C-25E1A4565DE5} +"MULTIPOLYGON (((-73.90371887405493 40.65691905912704, -73.90400099560829 40.65687633395375, -73.90373855719258 40.65699443719678, -73.90371887405493 40.65691905912704)))",B027,5991,B027,B-16,B-16,B-16,B-16,"Hegeman Ave., New Lots Ave. bet. Watkins St. and Mother Gaston Blvd.",316,42,73,11212,B,0.025,False,Veterans Triangle,Yes,100004278,PARK,20100106000000.00000,19280402000000.00000,,DPR,True,Veterans Triangle,Y,Veterans Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B027/,No,60,19,8,{2A0153E3-B483-4B39-88D2-B9E20D9CFDB6} +"MULTIPOLYGON (((-73.86776530558117 40.868754040614675, -73.86784169023686 40.86835277894082, -73.8678134296693 40.86835288614639, -73.867823938739 40.86800356576914, -73.86826013311196 40.86801144950619, -73.86823784969185 40.86875224619286, -73.86776530558117 40.868754040614675)))",X162,5540,X162,X-11,X-11,X-11,X-11,Arnow Ave. bet. Olinville Ave. and White Plains Rd.,211,15,49,10467,X,0.817,False,Parkside Playground,Yes,100004701,PARK,20100106000000.00000,19481209000000.00000,,DPR,True,Parkside Playground,Y,Parkside Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X162/,No,80,36,14,{B0AE47D3-4A77-4EB4-A806-1E28036C6134} +"MULTIPOLYGON (((-73.89615856782297 40.82745647610998, -73.89643431666379 40.82717510392977, -73.89684211063378 40.82671946645051, -73.89720591966538 40.826893751811824, -73.89741440181037 40.8266731088632, -73.89745734402564 40.82658942525256, -73.89754376911294 40.82660964796443, -73.89759847936101 40.8266360531734, -73.89765531847613 40.826568610565076, -73.89799370421866 40.82673734363488, -73.8976943867695 40.82709059783808, -73.89743015509447 40.82695793350506, -73.89692473146133 40.82754250435098, -73.89669028643043 40.827425581305725, -73.89650872373576 40.827647359195325, -73.89615856782297 40.82745647610998)))",X116,4721,X116,X-02,X-02,X-02,X-02,Rev James Polite Av to Interval Av bet. E 167 St and Home St,202,17,41,10459,X,1.815,False,Rev J Polite Playground,Yes,100005185,PARK,20100106000000.00000,19360821000000.00000,1148 REV JAMES POLITE Av,DPR,Part,Rev J Polite Playground,Y,Rev J Polite Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X116/,No,79,32,15,{C81F8FDD-AFD6-4CE8-AC02-DD043066BA6A} +"MULTIPOLYGON (((-73.92192580261036 40.774877246739294, -73.92227976649428 40.77459736834837, -73.92285118722178 40.77535016043289, -73.9227259959776 40.775449393016025, -73.92192580261036 40.774877246739294)))",Q066H,5877,Q066H,Q-01,Q-01,Q-01,Q-01,Hoyt Ave. bet. 21 St. and 23 St.,401,22,114,11102,Q,1.226,False,Chappetto Square,Yes,100000149,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Chappetto Square,Y,Chappetto Square,Sitting Area/Triangle/Mall,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q066H/,No,36,12,14,{4CFA9421-3D04-46C8-A0BE-9C8080CDD298} +"MULTIPOLYGON (((-73.9966593914142 40.69862069428496, -73.99628992628078 40.698520073237, -73.99632954880644 40.69843699504713, -73.99638941426979 40.6983124371825, -73.99681516426283 40.69842958658669, -73.99683738424886 40.698435954721646, -73.99677873234116 40.69855929986126, -73.9966989484674 40.698537543025616, -73.9966593914142 40.69862069428496)))",B036,5426,B036,B-02,B-02,B-02,B-02,Clark St. at Columbia Heights and the Brooklyn-Queens Exwy.,302,33,84,11201,B,0.214,False,Fort Stirling Park,Yes,100004439,PARK,20100106000000.00000,18670415000000.00000,154 COLUMBIA HEIGHTS,DPR,True,Fort Stirling Park,N,Fort Stirling Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B036/,No,52,26,7,{083083FE-D12A-43C7-8570-CDE42B0937F4} +"MULTIPOLYGON (((-73.78439768325394 40.67917896073571, -73.7841661020638 40.67771932031404, -73.78256164479636 40.67828415660749, -73.7823735820767 40.67821825149827, -73.78208475636471 40.67774951506583, -73.78207345174114 40.67772102920103, -73.78206249726017 40.67766141041078, -73.78217549786878 40.67724365374439, -73.78172763959583 40.676911922463766, -73.7838023413103 40.67543328165115, -73.78386516348417 40.675388100946556, -73.78390600825401 40.67535716564347, -73.78394600226737 40.675325592062244, -73.7839851289159 40.675293395481496, -73.78402337278284 40.67526058848036, -73.78406071607725 40.675227186335114, -73.78409714219693 40.67519320252322, -73.78413263808524 40.67515865142935, -73.78416718594863 40.675123549230314, -73.78420077155077 40.67508790940798, -73.78423338182955 40.67505174814801, -73.78426500136024 40.67501508073111, -73.78429561708377 40.6749779224424, -73.7843252159382 40.67494028946751, -73.78435378486475 40.67490219709152, -73.78438131197287 40.67486366510435, -73.78440778658101 40.674824705193394, -73.78443319443048 40.67478533804461, -73.78579617280363 40.672609894223925, -73.78613995374523 40.67274739447489, -73.78728015332779 40.67316720804695, -73.7873188605034 40.67318182837183, -73.78737018011493 40.67320175893354, -73.7874211599068 40.673222186830714, -73.78747179634303 40.673243108455125, -73.78752207524298 40.673264520178975, -73.78757199306794 40.6732864192947, -73.78762153919112 40.67330880037999, -73.78767070770809 40.673331660722866, -73.78771948679794 40.673354998501, -73.78776787293587 40.67337880650418, -73.78781585548079 40.6734030838128, -73.78786342735688 40.67342782411068, -73.7879105802911 40.67345302558205, -73.78795730839035 40.673478681912925, -73.788003601019 40.67350479038261, -73.78804945345794 40.673531347380944, -73.78809485744834 40.673558346589616, -73.78813980354015 40.67358578438963, -73.78818428937957 40.673613657175125, -73.78822830197385 40.67364195951958, -73.7882718377864 40.67367068781504, -73.78831488855829 40.673699835743136, -73.78835744720173 40.673729400589885, -73.78839950664327 40.673759375138594, -73.78844106098066 40.67378975577696, -73.78848210312894 40.673820538890396, -73.78852262601451 40.67385171726232, -73.78856262255218 40.67388328727818, -73.78860208803097 40.67391524262618, -73.78864101300307 40.67394757878704, -73.78910196285575 40.674351325239506, -73.78913844079825 40.67438565319129, -73.78917379182765 40.67442065805655, -73.78920799353907 40.67445631818285, -73.78924102707862 40.674492611023716, -73.78927287003835 40.674529515827224, -73.78930350356686 40.67456700914641, -73.78933290998982 40.67460506933736, -73.7893610692814 40.67464367024939, -73.78938796731512 40.67468279024517, -73.78967430291408 40.675108555515955, -73.78779871073935 40.67481593012975, -73.78680375628599 40.67504812806955, -73.78665365089374 40.677268869811826, -73.78695441487773 40.67860229527433, -73.7870045788829 40.678590157323384, -73.78702569619391 40.6786786605168, -73.78704464952165 40.67875809689566, -73.78739474560636 40.68022537142031, -73.78720549780941 40.680540256550785, -73.78823997428364 40.681939699621495, -73.78609216259899 40.68282116087865, -73.7860424529646 40.68284327430024, -73.7859930990591 40.68286584852602, -73.78594411154536 40.68288887817319, -73.78589549634304 40.68291236145212, -73.78584726174638 40.68293629387616, -73.78579941367806 40.68296067275531, -73.78575195925241 40.68298549270013, -73.7857049055721 40.68301075192337, -73.78565825856286 40.683036446834436, -73.78561202889071 40.68306257115008, -73.78556622010977 40.68308912307641, -73.7855208393287 40.683116099025085, -73.785475894845 40.68314349360901, -73.7854313914045 40.68317130233489, -73.78538733847307 40.683199524320464, -73.78534373844248 40.68322815146601, -73.78530596763139 40.68325353050142, -73.78526361501973 40.6832834134632, -73.78522043655275 40.683312604171554, -73.78517645474673 40.683341090060416, -73.78513168738638 40.68336885855474, -73.78508615344244 40.68339589618141, -73.78503987778866 40.68342219308022, -73.7849928770418 40.68344773217158, -73.78494517487846 40.68347250809569, -73.7848967926385 40.68349650648341, -73.78484774928452 40.68351971656301, -73.78479807087373 40.683542128476795, -73.78474777873475 40.68356373145764, -73.78469689419057 40.683584516539405, -73.78443080179217 40.68315589019974, -73.78499643026242 40.68295252126376, -73.78445415888714 40.6795349185011, -73.784431236084 40.6793904425157, -73.78440409495015 40.67921937445213, -73.78439768325394 40.67917896073571)), ((-73.78921452831233 40.666957082244934, -73.78932679564346 40.6669500063046, -73.78919285338343 40.66791564426967, -73.78917327044896 40.66799702603979, -73.7891442165348 40.668117764706786, -73.78882025529606 40.66946404218846, -73.78846412986377 40.67093988448802, -73.78800110374054 40.67286792704054, -73.78676630283199 40.67266858387362, -73.78629016778176 40.6724921687788, -73.78589890267452 40.672326958129396, -73.78707940141882 40.6671754405333, -73.78881997588282 40.6669823827157, -73.78892962098824 40.66697244680539, -73.78921452831233 40.666957082244934)), ((-73.78597856258976 40.683156531692724, -73.78606756014938 40.683112508836686, -73.78723902390651 40.6847179866513, -73.78658650981816 40.68499315133656, -73.78505175953697 40.684062444784594, -73.78489034933496 40.68377920713951, -73.78492923595601 40.683763044413105, -73.78496867762952 40.68374606234012, -73.78501801326817 40.683723960390914, -73.78506539365442 40.68370180704103, -73.78511360168562 40.68367830174066, -73.78515715624827 40.683656198841405, -73.78520666809462 40.68363003220816, -73.78525096334957 40.683605650547804, -73.78529554729214 40.6835801401612, -73.7853336014409 40.683557567668316, -73.78537514047807 40.68353205247085, -73.7854141600232 40.68350721785311, -73.78544810378222 40.683484899707324, -73.78547826547381 40.68346449080013, -73.78550510451132 40.68344585691331, -73.78553566331651 40.68342407454286, -73.78558729527747 40.683388145593895, -73.78563273477994 40.683357671221785, -73.7856704163189 40.683333179822704, -73.78570842989927 40.68330915999985, -73.78574928229447 40.68328409004461, -73.78579536707738 40.683256701979715, -73.78585345002398 40.68322347746463, -73.78590836223864 40.68319333849466, -73.78597856258976 40.683156531692724)))",Q005,5089,Q005,Q-12,Q-12,Q-12,Q-12,"N. Conduit Ave., 116 Ave. bet. 150 St., Suptin Blvd., and Baisley Blvd. S.",412,28,113,11434,Q,109.609,False,Baisley Pond Park,No,100000118,PARK,20090423000000.00000,19140719000000.00000,116-01 116 AVENUE,DPR,Part,Baisley Pond Park,Y,Baisley Pond Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q005/,No,32,10,5,{ABB59F12-A38E-4196-B8E8-0D0A94F82E7A} +"MULTIPOLYGON (((-73.84374321952677 40.8290180470818, -73.84381286551877 40.82900715897456, -73.84383590476256 40.8290117097666, -73.84384828702423 40.82901340415807, -73.8438598478766 40.829014529222846, -73.84388253871812 40.82901548655348, -73.84389476411515 40.82901532120263, -73.84390836366673 40.829014588596785, -73.84392692193944 40.82909332429729, -73.84376615823462 40.82911337858733, -73.84374321952677 40.8290180470818)))",X195E,6245,X195E,X-09,X-09,X-09,X-09,Chatterton Ave. at Zegra Ave.. Cross Bronx Expressway to Westchester Creek,209,13,43,10462,X,0.042,False,Park,No,100008357,PARK,20140724000000.00000,19691009000000.00000,,DPR,False,Park,N,Park,,Undeveloped,,No,87,34,15,{5BF2B2E9-AFA1-411C-A57E-8E10DCC388F1} +"MULTIPOLYGON (((-73.99571005686569 40.72811754277504, -73.99662940445604 40.7270112109489, -73.99675901144433 40.727073542490324, -73.99629104486186 40.72762765106951, -73.99629064941124 40.727629310694475, -73.99597603542487 40.72800104455686, -73.99597622367325 40.728000416908834, -73.9958289942569 40.72817474295659, -73.99571005686569 40.72811754277504)))",M295,5794,M295,M-02,M-02,M-02,M-02,Mercer St. bet. Houston St. and W. 4 St.,102,1,6,10012,M,0.446,False,Mercer Playground,Yes,100004831,PLGD,20100106000000.00000,20151101000000.00000,,DPR,True,Mercer Playground,Y,Mercer Playground,Neighborhood Plgd,Triangle/Plaza,http://www.nycgovparks.org/parks/M295/,No,66,26,10,{C0798A1C-F8C5-4C52-8679-4DB134E785D7} +"MULTIPOLYGON (((-73.81560317974835 40.729705118164105, -73.81736854552932 40.72939013068302, -73.81745001753573 40.72967192875464, -73.81740850119509 40.72971123955192, -73.81724797547002 40.72973461068782, -73.81731983776446 40.72996715457526, -73.81569627762374 40.73025391043292, -73.81561416278228 40.72998482260963, -73.815685921359 40.72997214934298, -73.81560317974835 40.729705118164105)))",Q320,5343,Q320,Q-08,Q-08,Q-08,Q-08,"70 Rd., 71 Ave. bet. 150 St. and Kissena Blvd.",408,24,107,11367,Q,2.243,False,Vleigh Playground (PS 165),Yes,100000225,PARK,20090423000000.00000,19481021000000.00000,70-35 150 STREET,DPR/DOE,False,Vleigh Playground,Y,Vleigh Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q320/,No,27,16,6,{5BBD41CC-7F1D-425D-8F8D-00346AF6902D} +"MULTIPOLYGON (((-73.90289209598981 40.82847250079597, -73.90324458884467 40.82855782096509, -73.90264603278224 40.829082078265955, -73.90289209598981 40.82847250079597)))",X242,4735,X242,X-03,X-03,X-03,X-03,Home St bet. Boston Rd and Jackson Av,203,17,42,10456,X,0.27,False,Youth Village,Yes,100004971,PARK,20100106000000.00000,19790717000000.00000,705 HOME STREET,DPR,False,Youth Village,Y,Youth Village,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X242/,No,79,32,15,{3329492C-4C9D-47AB-80CC-F00F91A1F1CB} +"MULTIPOLYGON (((-73.91665189609022 40.8214388985361, -73.91636402705677 40.821971095993874, -73.91560080537876 40.82173759048166, -73.91587562605712 40.821199869845245, -73.91665189609022 40.8214388985361)))",X354,6428,X354,X-01,X-01,X-01,X-01,E 157 St bet. Melrose Ave and Cortlandt Ave,201,17,40,10451,X,1.107,False,P.S. 29 Ball Field,No,100007914,PARK,20110110000000.00000,20080101000000.00000,,DPR/DOE,False,P.S. 29 Ballfield,Y,P.S. 29 Ballfield,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X354/,No,79,32,15,{DB913C77-D022-44C9-A84F-AC9F9F24632F} +"MULTIPOLYGON (((-73.9527206629128 40.80262216166704, -73.95271507695684 40.802498252524224, -73.9527158661502 40.80249497593229, -73.95271735204504 40.80249184190497, -73.95271949428988 40.802488935072546, -73.95272223476073 40.80248633555557, -73.95272549993607 40.8024841126623, -73.95272920089447 40.80248232759009, -73.95273323805887 40.802481028024545, -73.95273750001083 40.80248024903942, -73.95274187297144 40.80248001219998, -73.95274623724741 40.8024803237607, -73.95275047552583 40.80248117556895, -73.95275447168967 40.80248254416427, -73.95275811911179 40.802484392582386, -73.95279863256133 40.8025003534125, -73.95280445137044 40.80250331843644, -73.95280959187569 40.80250693514363, -73.95281392970999 40.802511116134916, -73.95281735710691 40.80251575960979, -73.95281979237966 40.802520751171635, -73.95282117517664 40.80252597012889, -73.95282147122141 40.80253128949726, -73.95282067468109 40.802536578702, -73.95275902770045 40.802621786579024, -73.95275709207651 40.802624092864, -73.95275468381477 40.802626126104066, -73.95275186931715 40.802627830495496, -73.9527487232732 40.802629161043896, -73.95274533340226 40.80263008086474, -73.95274179097035 40.80263056478149, -73.95273819078977 40.80263060022596, -73.9527346335904 40.802630185438524, -73.95273121298221 40.80262933216396, -73.95272802375182 40.80262806385419, -73.95272515238311 40.80262641476364, -73.95272267587231 40.802624429048414, -73.9527206629128 40.80262216166704)))",M169,5820,M169,M-10,M-10,M-10,M-10,"7 Ave., St. Nicholas Ave., W. 115 St.",110,9,28,10026,M,0.03,False,Samuel Marx Triangle,Yes,100006991,PARK,20100106000000.00000,,,DPR,False,Samuel Marx Triangle,Y,Samuel Marx Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M169/,No,70,30,13,{D25516B8-D7E8-41BD-8864-41C5EA87F12C} +"MULTIPOLYGON (((-73.85303918043705 40.73648677478302, -73.8529202573281 40.73625731015082, -73.85217776816418 40.736460763303405, -73.85204416902924 40.73619039671401, -73.85240809011783 40.736081988556805, -73.85345638577358 40.73576970432878, -73.85372386676289 40.73628420441749, -73.85303918043705 40.73648677478302)))",Q377,5369,Q377,Q-06,Q-06,Q-06,Q-06,Yellowstone Bl bet. 62 Av and 62 Rd,406,29,112,11375,Q,1.48,False,Playground Sixty Two LXII,Yes,100000142,PARK,20090423000000.00000,19540525000000.00000,105-00 62 AVENUE,DPR/DOE,False,Playground Sixty Two LXII,Y,Playground Sixty Two LXII,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q377/,No,35,16,6,{BB6AF923-8978-4CC0-8B02-C040AEC43656} +"MULTIPOLYGON (((-73.88512436772514 40.67451570902044, -73.88519786113025 40.67450477717458, -73.88525001091386 40.67470867083411, -73.88517651729416 40.67471960181251, -73.8851042611432 40.674730349374016, -73.88503368848197 40.67474084642799, -73.88496430951882 40.67475116633011, -73.88489067857016 40.67476211679998, -73.88482085945947 40.674772501912884, -73.88475113734046 40.6747828717718, -73.88468145897154 40.67479323622926, -73.88460802431949 40.6748041578985, -73.88455556291004 40.674600310462594, -73.88462931086154 40.67458934141357, -73.88469898902237 40.67457897878849, -73.88476871093789 40.674568608060376, -73.8848385310245 40.67455822388057, -73.88487705652241 40.674552493732264, -73.88491216057692 40.674547271641565, -73.88498153933449 40.67453695267119, -73.88505211178821 40.674526455648966, -73.88512436772514 40.67451570902044)))",B417,5229,B417,B-05,B-05,B-05,B-05,Glenmore Ave. between Ashford St. and Cleveland St.,305,37,75,11207,B,0.3,False,P.S. 4 Paradise Garden,No,100004818,PARK,20100106000000.00000,19980812000000.00000,696 GLENMORE AVENUE,DPR,False,P.S. 4 Paradise Garden,Y,P.S. 4 Paradise Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B417/,No,54,18,8,{8069143B-AFBB-47F2-A30C-2A5B9421C5B1} +"MULTIPOLYGON (((-73.82090383591581 40.59881280403957, -73.82094299893694 40.59854101299786, -73.82122296885774 40.59856254365593, -73.82127299085789 40.598232178577284, -73.82127460485584 40.59822151707863, -73.82130800788144 40.5980009126499, -73.82134047504704 40.59778647624439, -73.82136804118072 40.5976044105607, -73.82139095410736 40.597453079736304, -73.82144755648089 40.59707924025369, -73.82164395634824 40.595782046195296, -73.8212964895622 40.595983897464684, -73.82132940743546 40.59577771232832, -73.82154082020918 40.595642350702924, -73.82388428977181 40.59414182807697, -73.82376174565253 40.59515064015148, -73.82479873960607 40.59530921067948, -73.82422714202117 40.597019700707094, -73.82364272673243 40.597109008153915, -73.82363893764885 40.59710958677929, -73.82361929038466 40.597279334281296, -73.82183431086484 40.59753757255079, -73.82191498919562 40.59785860755414, -73.82191199178342 40.5978582309926, -73.82218300936414 40.59892072358114, -73.82090383591581 40.59881280403957)))",Q467,4621,Q467,Q-14,Q-14,Q-14,Q-14,Cross Bay Blvd. bet. W. 20 Rd. and Beach Channel,414,32,100,11693,Q,18.768,False,Broad Channel American Park,Yes,100000050,PARK,20090423000000.00000,19940819000000.00000,20-15 CROSS BAY BOULEVARD,DPR,False,Broad Channel American Park,Y,Broad Channel American Park,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q467/,Yes,23,15,5,{89466E0C-CDE8-4081-B5E4-8F1EABEB3E77} +"MULTIPOLYGON (((-73.88965660125358 40.736047768629554, -73.88960946259402 40.73602978802587, -73.89088912881692 40.73603539666135, -73.8908864096923 40.73606419414604, -73.88999669273457 40.736219930816276, -73.88977179922838 40.736132735664015, -73.88977101048033 40.736091409675865, -73.88965660125358 40.736047768629554)))",Q434,6314,Q434,Q-02,Q-02,Q-02,Q-02,"51 Ave., 51 Rd., 72 Pl.",402,30,108,11373,Q,0.323,False,Long Island Mews,Yes,100000258,PARK,20090423000000.00000,19651101000000.00000,,DPR,True,Long Island Mews,Y,Long Island Mews,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q434/,No,39,15,6,{AD746637-8DBC-4865-9FD0-A13002437365} +"MULTIPOLYGON (((-74.15301081589939 40.625034869500446, -74.15306171779368 40.62490253856912, -74.15308724561991 40.62483617307608, -74.1531144652128 40.624765406276836, -74.15316552178862 40.62463267615829, -74.15326292428715 40.62437945480968, -74.15331467695867 40.62424491094105, -74.15357655280214 40.62426518875683, -74.1547025973614 40.62430715709388, -74.15506641164926 40.62430644272456, -74.15505437189196 40.624372588756295, -74.15504214306307 40.624439775143514, -74.15503001807464 40.62450639225933, -74.15467387003685 40.624464985114315, -74.1546633528277 40.62452276411143, -74.15465585703163 40.62456394513445, -74.15464891206211 40.62460209966384, -74.15463690569081 40.624668063698905, -74.15462455852386 40.624735900374596, -74.15461140490441 40.6248081641957, -74.15459853600444 40.62487885982407, -74.1549546873838 40.624920266298496, -74.15494231363184 40.62498824172303, -74.15492994103647 40.62505621714412, -74.15457379012888 40.62501481059202, -74.15456141598604 40.62508279227847, -74.15454904415253 40.62515076135269, -74.15453766078097 40.625213298952545, -74.15452565535497 40.62527925576603, -74.15451328227927 40.625347230239655, -74.15450043885207 40.625417787138254, -74.15458947736077 40.62542813961106, -74.15467851471314 40.625438491116014, -74.15464514434917 40.625621826319374, -74.15455590018513 40.62561260792232, -74.15455443546125 40.62561245680276, -74.15437741074497 40.62559416912085, -74.15436188160336 40.625592565431674, -74.15420606059973 40.62557646879998, -74.15411681655698 40.62556725006204, -74.15402757135494 40.6255580303559, -74.15393832617755 40.62554881058044, -74.15358134808243 40.62551193258369, -74.15329999903302 40.6254828664399, -74.15340190672364 40.62521793401342, -74.15296015582553 40.62516656881989, -74.15301081589939 40.625034869500446)))",R150,5863,R150,R-01,R-01,R-01,R-01,"Forest Ave. Wilcox Ave., bet. Van Name Ave. and Eunice Pl.",501,49,120,10303,R,4.465,False,Graniteville Quarry Park,No,100005209,PARK,20100106000000.00000,20000605000000.00000,,DPR,True,Graniteville Quarry Park,Y,Graniteville Quarry Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R150/,No,61,23,11,{F00ABC99-8CE3-44FC-9273-ED9CB74AFAD6} +"MULTIPOLYGON (((-73.95348165085545 40.677538264668634, -73.9535807379952 40.67727306166884, -73.95368504941091 40.67729483672861, -73.95380674575453 40.677320240545114, -73.95370766062629 40.67758544373853, -73.95362160409083 40.67756747983417, -73.95358596265359 40.677560039817585, -73.95348165085545 40.677538264668634)))",B456,5255,B456,B-08,B-08,B-08,B-08,Dean St. between Bedford Ave. and Franklin Ave.,308,35,77,11216,B,0.149,False,Walt L Shemal Garden,No,100003698,PARK,20100106000000.00000,20121120000000.00000,1097 DEAN STREET,DPR,False,Walt L Shemal Garden,N,Walt L Shemal Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B456/,No,57,25,8,{F68C20DE-BFF8-4709-83E6-B33376219494} +"MULTIPOLYGON (((-73.90036065437914 40.87755774647541, -73.90064659999797 40.87737102830634, -73.90101802180028 40.87756458224968, -73.90078913704414 40.877804247753645, -73.90036065437914 40.87755774647541)))",X250,4804,X250,X-08,X-08,X-08,X-08,Kingsbridge Ter bet. Perot St and Summilt P,208,14,50,10463,X,0.329,False,Kingsbridge Heights Community Center,No,100004832,PARK,20100106000000.00000,19790918000000.00000,3101 KINGSBRIDGE TERRACE,DPR,False,Kingsbridge Heights Community Center,Y,Kingsbridge Heights Community Center,,Buildings/Institutions,http://www.nycgovparks.org/parks/X250/,No,81,33,13,{B0FC8E8D-EC5C-4EDF-A0E5-464651B426B1} +"MULTIPOLYGON (((-73.76978071602167 40.77272750475264, -73.76996097693632 40.77318958753831, -73.7701467376822 40.773665761286814, -73.77031126175466 40.77408749190588, -73.77041635268473 40.77435687154691, -73.77043885676771 40.77441455505947, -73.76758859413754 40.775027069249965, -73.7676661039315 40.775182319673696, -73.76710943008122 40.77530720638917, -73.76709339070369 40.7752771916301, -73.76709328520627 40.77527721212851, -73.7670654536243 40.77522550826048, -73.76705600269185 40.77520940612129, -73.76700961712707 40.775130373999794, -73.76699448579333 40.77510459253888, -73.76694388008461 40.77502514302602, -73.76687072198943 40.77491823196322, -73.76686700983483 40.7749127520787, -73.76681019085665 40.77482772300583, -73.76658215163339 40.774486463032595, -73.76651021738256 40.77437881219213, -73.76647917620643 40.77433361592999, -73.76614561620119 40.773847931426964, -73.76611310348187 40.77379994140687, -73.7658402579798 40.7734052240496, -73.76972599804441 40.77258688224434, -73.76978071602167 40.77272750475264, -73.76977394442171 40.772729484943106, -73.76977429652305 40.77273042577497, -73.76978071602167 40.77272750475264)))",Q012B,69240,Q012B,Q-07A,Q-07A,Q-11,Q-11,"215 Pl., Cross Island Pkwy. bet. 31 Rd. and 33 Ave.",411,19,111,"11360, 11361",Q,17,False,John Golden Park,Yes,100000012,PARK,,19541117000000.00000,,DPR,Part,John Golden Park,Y,John Golden Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q012B/,No,26,11,6,{1E3420C9-9612-4286-B6BF-B3E0AB5EB13B} +"MULTIPOLYGON (((-73.90157017222514 40.66372269703786, -73.90228706955719 40.663612329449506, -73.9024253508018 40.66415590951801, -73.9017070201717 40.66426167059871, -73.90157017222514 40.66372269703786)))",B367,6568,B367,B-16,B-16,B-16,B-16,Livonia Ave. between Powell St. and Junius St.,316,42,73,11212,B,0.918,False,Livonia Park,Yes,100004252,PARK,20100106000000.00000,,393 POWELL STREET,DPR/NYCHA,False,Livonia Park,Y,Livonia Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B367/,No,55,19,8,{01AD13F4-0459-44AD-976B-9A84F11D1D1D} +"MULTIPOLYGON (((-73.95202629912528 40.74861897826871, -73.95208815204731 40.74863035129368, -73.95208244039542 40.74890971387546, -73.95182417375182 40.74885867711205, -73.95202629912528 40.74861897826871)))",Q018,6117,Q018,Q-02,Q-02,Q-02,Q-02,"10 St., Vernon Blvd. bet. 44 Rd. and 45 Ave.",402,26,108,11101,Q,0.08,False,Gordon Triangle,Yes,100000295,PARK,20090423000000.00000,19120101000000.00000,,DPR,True,Gordon Triangle,Y,Gordon Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q018/,No,37,12,12,{C3853538-6469-4F20-9993-6820A50026A8} +"MULTIPOLYGON (((-73.94138212223424 40.70380282980316, -73.94129346559423 40.70381115037473, -73.94124763864957 40.70353535784187, -73.94133629492933 40.7035270364048, -73.94138212223424 40.70380282980316)))",B545,5509,B545,B-01,B-01,B-01,B-01,Moorse St. bet. Graham Ave. and Humbold St.,301,34,90,11206,B,0.057,False,Oko Farms Aquaponics Education Garden,No,100008356,PARK,20130114000000.00000,20121128000000.00000,104 MOORE STREET,DPR,False,Oko Farms Aquaponics Education Garden,,Oko Farms Aquaponics Education Garden,,Garden,,No,53,18,7,{FEFB64B7-E81C-41F8-B16D-E9BE5ACEC1FA} +"MULTIPOLYGON (((-73.96011017205772 40.71030022838598, -73.95993375459453 40.710681804560814, -73.95922611994075 40.710415068787896, -73.95936930526068 40.71038074781199, -73.95951473289645 40.710352405038336, -73.95966197089255 40.71033012405468, -73.95981058493845 40.710313973141275, -73.95996013245558 40.71030399716442, -73.96011017205772 40.71030022838598)))",B167,5096,B167,B-01,B-01,B-01,B-01,S. 4 St. bet. Roebling St. and Williamsburg Bridge Ramp,301,34,90,11211,B,0.406,False,La Guardia Playground,Yes,100003941,PARK,20100106000000.00000,19380201000000.00000,215 BROADWAY,DPR,False,La Guardia Playground,N,La Guardia Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B167/,No,53,18,7,{FDF87D75-4AC9-4A80-ABF4-EE4F81DEF678} +"MULTIPOLYGON (((-73.88496438272014 40.84470309713254, -73.8849695412972 40.84470287535263, -73.88497469426687 40.84470315334067, -73.88498118465246 40.844704207986766, -73.88498739037034 40.84470599354921, -73.88510796385633 40.84476033780983, -73.88511225619172 40.844763906237375, -73.88511597873988 40.84476782619018, -73.88511901889431 40.8447720723423, -73.88512139578305 40.84477655466347, -73.88512283673228 40.844780552487656, -73.88512372613182 40.84478464071235, -73.88512403321552 40.844789468562546, -73.88510505528028 40.84487077140626, -73.88508323927186 40.844949569848154, -73.88505854612657 40.845027879151694, -73.88504400256323 40.84506410680967, -73.88502781379394 40.84509993030533, -73.88501000004659 40.84513530823547, -73.88499058274108 40.84517019559607, -73.88496958447713 40.84520455098617, -73.88494703141362 40.84523833210778, -73.8849229497033 40.84527150026494, -73.88476557778203 40.8454607826113, -73.88452810785667 40.84573710099107, -73.88442444958099 40.845856935657714, -73.88442000675812 40.84585942647262, -73.88441354215821 40.84586189815208, -73.88440526799604 40.84586369444898, -73.88439770530158 40.84586413711669, -73.88439153045312 40.84586364106004, -73.88438488045061 40.84586225754112, -73.88437983303675 40.84586055415207, -73.88426684299664 40.84580393670226, -73.88426303413179 40.84579986985579, -73.88426074703463 40.84579627099153, -73.88425880585451 40.845791504534695, -73.8842580182361 40.845787553281106, -73.88425801333149 40.84578355688773, -73.88425927063865 40.84577790485346, -73.8842625045635 40.84577164516853, -73.88439410490776 40.84561114896933, -73.884526961321 40.84545421172209, -73.88466267125494 40.84529868734378, -73.88472492354241 40.84522818242252, -73.88474839906854 40.84519725412777, -73.88477052849086 40.84516575627223, -73.88479128684332 40.84513372665244, -73.8848106515443 40.845101195863286, -73.88482860355414 40.84506820350823, -73.88484512384875 40.84503478018566, -73.88486019101863 40.84500096459601, -73.88487379196133 40.844966791846005, -73.88488591119801 40.844932299741465, -73.88493355989016 40.844717810166074, -73.88493903313545 40.84471253963563, -73.88494524758524 40.844708590867846, -73.88495231654838 40.84470558306698, -73.8849585827733 40.844703921603056, -73.88496438272014 40.84470309713254)), ((-73.88349882998253 40.84667929831866, -73.88350678498716 40.84667902539871, -73.88351399595136 40.84667973056275, -73.88351930155383 40.84668096329228, -73.88352551714013 40.84668329103936, -73.88363767633294 40.84673745182291, -73.8836417339053 40.84674306418617, -73.88364404851755 40.846747880556414, -73.88364529544745 40.84675226901594, -73.88364587699358 40.84675673424674, -73.88364561188801 40.846761860485834, -73.88364450377797 40.846766918337686, -73.88364274362888 40.8467712029088, -73.88358349740297 40.84683684850216, -73.88352740532196 40.84690184439181, -73.88347358681915 40.84696793845023, -73.88342207991941 40.847035088395764, -73.88338766727513 40.84708568652968, -73.88335531419658 40.84713706205993, -73.88332505278538 40.84718916909563, -73.88329691396889 40.84724195544108, -73.88327091799415 40.84729537339212, -73.88324709578754 40.84734937165342, -73.88317200615974 40.847586328766575, -73.88314351000612 40.847686428404394, -73.88313037126865 40.8477280340719, -73.88312463087405 40.84773327182578, -73.88311896534036 40.84773707246866, -73.88311266648093 40.84774024572648, -73.88310585535002 40.847742735891366, -73.88309957942771 40.84774432790631, -73.88309167857737 40.84774542660505, -73.88308271198999 40.847745657949005, -73.88297766956413 40.84772689592648, -73.88297177245882 40.847723466270274, -73.88296722442718 40.84772027481205, -73.88296232129504 40.84771603842165, -73.88295668754273 40.84770985982719, -73.88295269440242 40.847704021482414, -73.88295005331607 40.847698749118486, -73.88294792171358 40.84769237326721, -73.88294677462082 40.84768585073408, -73.88294671978915 40.8476792725782, -73.88297758297229 40.84756041632259, -73.8830117675496 40.84744495107905, -73.88304949061364 40.84733012425821, -73.88307569351852 40.847268381510005, -73.88310432623338 40.847207267960606, -73.88313536376131 40.847146834010545, -73.88316877991035 40.847087135461855, -73.88320453782109 40.847028225404316, -73.8832537745442 40.84695742536115, -73.88330582189879 40.84688779607886, -73.88336063470511 40.84681940144304, -73.88341816185678 40.84675230443267, -73.88347996672395 40.84668556830925, -73.88348608252721 40.846682578546556, -73.88349341742854 40.846680226663345, -73.88349882998253 40.84667929831866)), ((-73.8859082224753 40.84002002237216, -73.88593990679541 40.84001804830864, -73.88597418475146 40.84004414880003, -73.88604539836983 40.840084319076574, -73.88605327768066 40.84010838896041, -73.88603110701527 40.84021097834342, -73.88601602017064 40.840280786835976, -73.88596011024015 40.84056439076026, -73.88589350880665 40.84090223522086, -73.88586947293884 40.84106261550805, -73.88585360638766 40.84107663580462, -73.88581928213705 40.8410786072313, -73.88570321763444 40.841018341091555, -73.88568742804439 40.84098824894983, -73.88579907673483 40.84049599830816, -73.88581246280575 40.84043697968179, -73.88587373936257 40.840114224953076, -73.8858949944967 40.84003604978626, -73.8859082224753 40.84002002237216)), ((-73.88414527862504 40.84592021691417, -73.88415385691833 40.84591946731435, -73.88416074198491 40.845920013624045, -73.88416727873431 40.84592174283152, -73.88422133463841 40.84594728645757, -73.88423085826636 40.84595185071006, -73.88426579522002 40.845968599820324, -73.884286683514 40.845979405081124, -73.88428993268086 40.84598347496722, -73.88429216843738 40.84598727999221, -73.884293763539 40.84599126627415, -73.88429485003395 40.84599655415889, -73.88429481850372 40.84600309170706, -73.88429351800472 40.846008350182686, -73.88429061272632 40.84601450393968, -73.88407865192907 40.84626146837123, -73.88386477896606 40.84650788478047, -73.88385883433058 40.84651473424869, -73.88373106725629 40.84666154708606, -73.88372568648099 40.846665328235474, -73.88371951850702 40.846667643489035, -73.88371187978332 40.846668787519235, -73.88370637196029 40.8466685919626, -73.88370106738995 40.84666744569011, -73.88369537820594 40.84666517521428, -73.88357481856558 40.846605670586825, -73.88357155489416 40.84660041021464, -73.88356935307576 40.84659484204501, -73.88356835284021 40.84658907878071, -73.88356839627784 40.84658390909423, -73.88356944637512 40.84657879985629, -73.8835710359009 40.846574437671514, -73.88357339585032 40.84657028247724, -73.88411140989018 40.845947176074134, -73.88412789452818 40.84592842815904, -73.88413291208822 40.84592480421188, -73.8841387630426 40.845921994246886, -73.88414527862504 40.84592021691417)), ((-73.885214514376 40.84373507102387, -73.88522061212849 40.84373478082935, -73.88522672119637 40.843734804917986, -73.88523281549284 40.843735143263835, -73.88523886537828 40.84373579313586, -73.88524484239738 40.84373675270485, -73.8852507204709 40.84373801744235, -73.88525647352297 40.843739581019, -73.88526207192159 40.84374143620138, -73.88526946474992 40.84374446200881, -73.8853096594663 40.843769609538796, -73.88531322206188 40.84377343027261, -73.88531571541351 40.843777062640626, -73.88531786951908 40.843781449284734, -73.8853192205445 40.843786016129584, -73.88531971088446 40.84379185001344, -73.88530771965507 40.843852072995865, -73.88528022556112 40.84399342491922, -73.8851946596986 40.84441120112255, -73.88519194747833 40.844424444679845, -73.88517601042207 40.844497312043885, -73.88517249664974 40.844500910519294, -73.885168558818 40.84450424652892, -73.88516243881892 40.84450845294396, -73.8851567285188 40.84451162329876, -73.8851505697038 40.844514272721575, -73.88514188255257 40.84451705830255, -73.88513277132978 40.84451890154451, -73.88512268785423 40.84452000361203, -73.88511606443828 40.84452045986911, -73.88510942589322 40.84452075041998, -73.88510277577645 40.844520875268124, -73.88509612594578 40.84452083442547, -73.8850894811492 40.844520625195194, -73.88508284849674 40.84452025028584, -73.8850762362874 40.84451971060619, -73.88506965044867 40.844519007062665, -73.8850630980999 40.84451813696089, -73.88505658753543 40.84451710391107, -73.88505012587008 40.844515907920325, -73.88504371902657 40.84451455259654, -73.88503737530851 40.844513036147, -73.88503109944985 40.844511363979436, -73.88502490093838 40.844509535202775, -73.88501702842285 40.84450683037808, -73.88501074195148 40.84450375252873, -73.88500255059476 40.844498226139685, -73.88499723150802 40.84449321769587, -73.88499361558354 40.844488681007434, -73.88499063403364 40.844483471382404, -73.88498826721522 40.844477290737906, -73.88498728852949 40.84447204168706, -73.88498717923846 40.844465983959545, -73.88505397763507 40.844116327745034, -73.88511916599026 40.84378878418545, -73.88512109696627 40.843785041856925, -73.88512403779932 40.843780171315366, -73.88512651390387 40.84377661863326, -73.88512925305541 40.84377317877475, -73.88513323777893 40.84376875771822, -73.88513761106378 40.84376455226644, -73.88514234916026 40.84376058220648, -73.88514743306654 40.843756864628844, -73.88515283665662 40.84375342201975, -73.88515707758391 40.84375101562125, -73.88516149131038 40.8437487966973, -73.88516758610942 40.84374609678225, -73.88517390802444 40.84374371676814, -73.88518042857218 40.84374167103447, -73.8851871181006 40.843739964054116, -73.88519366724596 40.84373852438024, -73.88519950599064 40.84373715513795, -73.88520770679506 40.84373578734556, -73.885214514376 40.84373507102387)), ((-73.88630493309249 40.83922635394823, -73.88631319110237 40.83922586411488, -73.88632143776944 40.83922646116616, -73.88632787162682 40.839227684074665, -73.88633325304015 40.83922933638182, -73.88633835028877 40.839231447660694, -73.88633849129383 40.83923150182929, -73.88635021848121 40.83923596632854, -73.88644842381086 40.839273354314216, -73.88645340697684 40.83927978784733, -73.8864565093649 40.83928568283431, -73.8864583769428 40.83929187196771, -73.88645912618492 40.8392981932733, -73.88645883981269 40.83930341945912, -73.88645756525531 40.83930893913373, -73.88637169366345 40.83943734877129, -73.88629211056436 40.83956444621876, -73.88626150106734 40.83961753528226, -73.8862177814497 40.839693365088415, -73.88619058874048 40.83974385147287, -73.88616571997922 40.83979502542007, -73.88614321203062 40.83984682663482, -73.88612309109594 40.83989919030873, -73.88610395908513 40.839954279850076, -73.88610012140457 40.839958863176854, -73.88609491747965 40.83996293457418, -73.88608881022562 40.83996620814199, -73.88608285457023 40.83996819685425, -73.88607461269919 40.83996959348452, -73.88606681664572 40.83996961009728, -73.88606104949145 40.8399688443835, -73.88605494244594 40.8399671490238, -73.88604980369658 40.83996501067689, -73.8859385155546 40.839902102026954, -73.88593482320641 40.839896604461565, -73.88593252717945 40.83989136401727, -73.88593124165044 40.83988527090396, -73.88593130377117 40.83987877660254, -73.88593284665332 40.83987239002389, -73.88593320185814 40.83987130257837, -73.88593725209374 40.83985893289554, -73.88594768207668 40.83982612380446, -73.88596354348134 40.839782409696724, -73.8859812408201 40.83973910352419, -73.8860007562255 40.8396962511936, -73.88602206946817 40.83965389320625, -73.88604515556212 40.83961207816317, -73.88606999546867 40.83957084386525, -73.88609655709271 40.83953023620488, -73.88618399758083 40.83938613901331, -73.88624689072195 40.83928407242098, -73.88627301014128 40.839241912730714, -73.8862765755451 40.83923843223449, -73.88628383723176 40.83923328676689, -73.88629082436785 40.839229911399535, -73.88629768857572 40.83922769844849, -73.88630493309249 40.83922635394823)), ((-73.88553235673753 40.8418446772624, -73.88553944769272 40.84184385674549, -73.88554768223378 40.84184410534841, -73.88555705955717 40.84184589042636, -73.88556292068868 40.84184794936719, -73.88562303468554 40.841878003537296, -73.88568170692787 40.84190733675247, -73.88568309779323 40.841908032411574, -73.88568828178023 40.84191152696234, -73.88569217063235 40.8419158892058, -73.8856939778362 40.84191995222332, -73.88569462036088 40.84192486865519, -73.88566493391886 40.84206365843925, -73.88564874170504 40.842139354995325, -73.8855650270953 40.8425493540728, -73.8855626014654 40.84255393427829, -73.88555841323634 40.84255815613947, -73.88555178184077 40.84256198746365, -73.88554346835939 40.84256415030468, -73.88553467944563 40.84256421362273, -73.88552756649375 40.8425626126902, -73.88538721777098 40.842494809329025, -73.88538224473878 40.84248860809094, -73.8853804269393 40.84248381475806, -73.88538005357788 40.84247959827592, -73.88550675744604 40.84185865183077, -73.88551013576406 40.841855124348264, -73.88551412051669 40.84185198287887, -73.88551985801543 40.841848712577345, -73.88552620845557 40.841846181288695, -73.88553235673753 40.8418446772624)), ((-73.88568335067575 40.84109845364798, -73.88569198772652 40.84109832983521, -73.88570043248366 40.84109970605394, -73.88583276330868 40.84116459882543, -73.88583632644429 40.841168732016804, -73.8858388299688 40.84117261472253, -73.8858406809885 40.841176703895954, -73.88584201968219 40.84118153727069, -73.88584242055832 40.84118769794562, -73.88583079898146 40.84124173318084, -73.88582614818733 40.841263361139916, -73.88579565323543 40.841405152418766, -73.88571759017314 40.84180223156551, -73.8857144848918 40.84180558282792, -73.88570969863187 40.84180939077589, -73.88570426588053 40.84181266138886, -73.88569958699856 40.84181470357465, -73.885693158089 40.841816672887006, -73.88568488049371 40.84181801992665, -73.88567718820791 40.841818246431174, -73.8856695700922 40.841817402321674, -73.88566222982921 40.841815641784464, -73.88553881521165 40.84175385807382, -73.8855344277303 40.84174848857825, -73.88553142272507 40.84174179672868, -73.88553061238231 40.84173449742279, -73.88559131953346 40.84144164864702, -73.88565636878967 40.84111332467312, -73.885659227889 40.84110969491526, -73.88566276696456 40.8411064323324, -73.88566850134677 40.84110286395661, -73.88567616752756 40.84109984049302, -73.88568335067575 40.84109845364798)), ((-73.88284524800542 40.848028851641, -73.88285673351002 40.84802450582039, -73.88287011899875 40.84802742440225, -73.88300567565915 40.848178638537654, -73.88300565266529 40.84819171186828, -73.88286515768014 40.84867239819076, -73.88283050379485 40.84879729194925, -73.88281709905358 40.84880454170704, -73.88280561597084 40.84880743503099, -73.88279031241264 40.84880741948272, -73.88277693189147 40.84880159500734, -73.8827134458851 40.84863656742104, -73.88271402468756 40.848565891939174, -73.88269702301439 40.84855311016775, -73.88284524800542 40.848028851641)), ((-73.8854328488687 40.842691843038956, -73.88544059290595 40.84269123209131, -73.88544889167169 40.8426921174139, -73.88545617930372 40.84269419668677, -73.88546215146042 40.84269723908158, -73.88552387742506 40.84273636557075, -73.88552804900219 40.84274182850281, -73.88553008851828 40.84274664366502, -73.88553064199455 40.842752314622345, -73.88548897560321 40.84295626117079, -73.88546293391543 40.84308023507557, -73.88546015588815 40.843084931092214, -73.88545612014467 40.84309009591748, -73.88545133921437 40.843094878193334, -73.88544665615673 40.84309859978482, -73.88544239678018 40.843101421303324, -73.88543781777197 40.84310393813744, -73.88543198641202 40.84310656268719, -73.88542688563312 40.84310841083642, -73.88542049969357 40.843110138843706, -73.8854128194143 40.843111568401945, -73.88540609501739 40.84311221818145, -73.8854004469621 40.8431123719575, -73.8853948031358 40.84311213582378, -73.8853881617891 40.84311138181534, -73.88538282879647 40.843110362560545, -73.88537764347447 40.843108974249866, -73.88537164829616 40.84310688635119, -73.88536688274789 40.84310480237571, -73.88536153645146 40.84310187045846, -73.88535580050711 40.84309797912806, -73.8853520979479 40.84309489125768, -73.88534878592651 40.84309155884114, -73.88534583707731 40.84308803588087, -73.88534332610628 40.84308432065015, -73.88534053590293 40.84307887709472, -73.8853385867628 40.84307322636131, -73.88533759122117 40.84306743339732, -73.88533747678497 40.84306159178204, -73.88533813398843 40.843056607303154, -73.88534919432576 40.84300251754623, -73.88536230759331 40.84294338076074, -73.88541216831443 40.842702045799975, -73.88541566456696 40.842698918257014, -73.8854207853547 40.84269576171085, -73.88542654640011 40.84269332259332, -73.8854328488687 40.842691843038956)))",X011,5680,X011,X-06,X-06,X-06,X-06,Crotona Pkwy bet. Bronx Park South and E 175 St,"203, 206","15,17",42,10460,X,8.75,False,Crotona Parkway Malls,No,100005225,ZONE,20100106000000.00000,18881212000000.00000,,DPR,True,Crotona Parkway Malls,Y,Crotona Parkway Malls,Large Park,Mall,http://www.nycgovparks.org/parks/X011/,No,"78, 79, 87","32, 33",15,{34CF03CE-1B4A-428B-B449-2F7FAF44EC0B} +"MULTIPOLYGON (((-73.98024719483584 40.72056777195089, -73.98112084610541 40.720832053314986, -73.98106318110672 40.72090934269153, -73.98024719483584 40.72056777195089)))",M254,4645,M254,M-03,M-03,M-03,M-03,"E. Houston St., Ave. C and E. 2 St.",103,2,9,10009,M,0.095,False,Gustave Hartman Square,Yes,100004494,PARK,20100106000000.00000,19690327000000.00000,10 AVENUE C,DPR,True,Gustave Hartman Square,Y,Gustave Hartman Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M254/,No,74,26,12,{FDFB931B-477F-405D-B011-81F26D6751E2} +"MULTIPOLYGON (((-74.0981168771601 40.61353155076536, -74.09940172881905 40.61314887962354, -74.09945685990884 40.61346527254261, -74.09915651905818 40.61355956088437, -74.09925119807794 40.61374873369686, -74.09770553529927 40.614209118588484, -74.09766391095135 40.61412009598179, -74.09772751623785 40.61404943112663, -74.09778036841615 40.61398793458823, -74.0978308613377 40.613919644697134, -74.09786480640666 40.61387033385774, -74.09789666613405 40.61382290147103, -74.09792549050576 40.613784636269365, -74.09795385751093 40.61373910964389, -74.09798521236688 40.61368190430118, -74.0980149047248 40.613622413042265, -74.09804394002197 40.61355327324659, -74.0981168771601 40.61353155076536)))",R069,5058,R069,R-01,R-01,R-01,R-01,"Foote Ave., Howard Ave., Martha St., Clove Rd.",501,49,120,10301,R,1.922,False,Terrace Playground,Yes,100004051,PARK,20100106000000.00000,19510426000000.00000,60 FOOTE AVENUE,DPR/DOE,False,Terrace Playground,Y,Terrace Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R069/,No,63,24,11,{146CDE6C-E762-4E48-8AFC-10C804E41162} +"MULTIPOLYGON (((-73.99150900764111 40.571769715955945, -73.99238042861448 40.5716954036309, -73.99265441435584 40.573073284460705, -73.99181194747146 40.57326148575969, -73.99150900764111 40.571769715955945)))",B169B,4607,B169B,B-13,B-13,B-13,B-13,"Surf Ave. bet. W. 25 St. to W. 27 St., Boardwalk",313,47,60,11224,B,2.944,False,Poseidon Playground,Yes,100004511,PARK,20100106000000.00000,19530515000000.00000,3001 WEST 27 STREET,DPR,True,Poseidon Playground,Y,Poseidon Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B169B/,Yes,46,23,8,{4BF0DC33-7675-4918-946D-83A63FACCD9A} +"MULTIPOLYGON (((-73.80384370023768 40.762335533879806, -73.8039191593248 40.76238150262499, -73.80392198987359 40.762384317023184, -73.80392414676531 40.76238745715863, -73.80392556631698 40.76239083107134, -73.80392620618177 40.76239434053406, -73.80392604771801 40.76239788105634, -73.80392509715196 40.76240134909045, -73.8039233808382 40.76240464292403, -73.80392094880709 40.762407664486936, -73.80391787474376 40.76241032655542, -73.80391424652137 40.76241255003445, -73.80391017329373 40.762414268472185, -73.80390577245204 40.762415433441085, -73.80383764242828 40.76242158047895, -73.80383370481007 40.76242229147802, -73.80382966913818 40.76242251693696, -73.8038256384648 40.76242225162816, -73.8038217134388 40.762421502026534, -73.8038179946693 40.76242028811462, -73.80381457800173 40.76241863887184, -73.80381154976168 40.762416598570105, -73.80380898678425 40.76241421686804, -73.80380695402143 40.76241155691184, -73.80380550457677 40.76240868362841, -73.80380467375701 40.76240567272046, -73.80380868165062 40.762348134472184, -73.80380975051746 40.762345115092735, -73.8038114867977 40.76234228145372, -73.80381383931604 40.76233971811554, -73.8038167379748 40.76233750060136, -73.80382009611944 40.762335696301605, -73.80382381292367 40.76233435907488, -73.80382777694462 40.76233352835375, -73.80383186967335 40.76233323005102, -73.80383596910097 40.7623334720635, -73.80383995207674 40.762334247878, -73.80384370023768 40.762335533879806)))",Q213,6174,Q213,Q-07,Q-07,Q-07,Q-07,"162 St., Northern Blvd., Crocheron Ave.,",407,19,109,11358,Q,0.024,False,Studley Triangle,Yes,100000397,PARK,20090423000000.00000,19431028000000.00000,,DPR,Unkwn,Studley Triangle,N,Studley Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q213/,No,40,16,6,{44EED58E-5B53-4B7D-AC6E-494430EE5B03} +"MULTIPOLYGON (((-73.98559911557678 40.70143550361623, -73.98563035080458 40.70090852071564, -73.9848746478054 40.70087951385112, -73.98488987506416 40.700622647501184, -73.98542943820553 40.700641624220864, -73.98547323901187 40.700668477622806, -73.98548087100123 40.70067315584523, -73.98555680942664 40.70071690957171, -73.98555856630324 40.700717921967666, -73.98563800854546 40.700760887231404, -73.98573407841275 40.700811362070716, -73.98583237107297 40.70085930756493, -73.98593275756053 40.70090466065682, -73.98603512310387 40.70094737630137, -73.9860408577761 40.70094957874882, -73.98613935529873 40.700987399548595, -73.98624531807208 40.70102469075471, -73.9863147966063 40.701046975901896, -73.98635289310141 40.70105919496964, -73.98642847968351 40.701080931459884, -73.98645891665164 40.70108968441907, -73.98647228525712 40.70109352757512, -73.98659313590987 40.70112474535554, -73.986606639568 40.701127847390374, -73.98666648138716 40.70114159705132, -73.98665842678334 40.7012495666012, -73.98655952763112 40.701246116940325, -73.98654269666444 40.70147171482675, -73.98559911557678 40.70143550361623)), ((-73.98592558555639 40.70067130019823, -73.98589928043097 40.700658146801544, -73.98656654676336 40.70068160840877, -73.9866850582504 40.70089256801727, -73.98668143258146 40.7009411718319, -73.98668109342306 40.70093902137009, -73.98663278907173 40.70092735774207, -73.9865321487351 40.70090020457864, -73.98649570618744 40.70088931672074, -73.98647843795433 40.70088415656071, -73.98647837643007 40.70088413764275, -73.98643276322365 40.7008705111307, -73.98633472720157 40.70083829722393, -73.98632164513306 40.700833792209494, -73.9862544518127 40.70081066085746, -73.986175357747 40.700781132601, -73.98609750889997 40.70074973137552, -73.98602177013933 40.700716829200054, -73.98602099519444 40.70071649321495, -73.98594588998769 40.70068145235026, -73.98592558555639 40.70067130019823)))",B223JB,5115,B223JB,B-02,B-02,B-02,B-02,"Prospect St., York St. bet. Jay St. and Bridge St.",302,33,84,11201,B,2.117,False,Bridge Park,Yes,100004759,PARK,20100106000000.00000,19470729000000.00000,114 BRIDGE STREET,DPR,True,Bridge Park,Y,Bridge Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223JB/,No,52,26,7,{A7984DB4-EB96-407A-A161-D7D01DEE5DA7} +"MULTIPOLYGON (((-73.75866543638791 40.673133160523484, -73.75867478116315 40.67313187797538, -73.75868249729139 40.673132231854616, -73.75868879759068 40.67313358954345, -73.75869565358722 40.67313630818035, -73.75870077545267 40.67313941670639, -73.75870429479626 40.67314249845779, -73.75870718006679 40.67314594088767, -73.75870948903916 40.673150120534004, -73.75870946688329 40.67315036002543, -73.75870803836827 40.67316598552811, -73.7587051161828 40.67317961144859, -73.75870159818675 40.67319315597314, -73.7586974868072 40.673206601997094, -73.75869279036533 40.67321993783101, -73.75868751128489 40.673233147270565, -73.75868165435524 40.67324621411644, -73.75867921436692 40.67325111232178, -73.75867522790723 40.67325912397775, -73.75866823790655 40.673271862458506, -73.75866069385718 40.67328441787193, -73.75865643727997 40.67329091879109, -73.75865260527607 40.67329677492895, -73.7586480236429 40.67330322023429, -73.75864572093349 40.67330646087232, -73.75864397577323 40.67330891652727, -73.75863481956733 40.67332083549241, -73.7586251450058 40.67333251293085, -73.75861496513448 40.673343938964166, -73.75860428828781 40.6733550983009, -73.75859312869437 40.67336598106502, -73.75858149705094 40.67337657287057, -73.7585699330775 40.673387093675956, -73.75855791127618 40.67339731544783, -73.75854544706829 40.67340722561107, -73.75853255587496 40.673416811590656, -73.75851924837681 40.67342606350322, -73.75850809601042 40.67343330998059, -73.7585055411713 40.67343497057712, -73.75849144967005 40.673443522939, -73.75847699282963 40.673451711623194, -73.75846218250682 40.67345952854988, -73.758447036482 40.67346696295002, -73.75843157252591 40.673474006756116, -73.75841580722638 40.673480651898196, -73.75839975716488 40.673486892107356, -73.75838344483972 40.67349272022654, -73.75836983202471 40.67349645850648, -73.75836441081316 40.67349794738446, -73.75835716746539 40.67349669125696, -73.75835038802855 40.673494380695686, -73.7583453369388 40.67349164781904, -73.75834137136358 40.673488657872966, -73.75834118639095 40.67348845937037, -73.75833778738226 40.6734848087331, -73.75833487114657 40.67348012081198, -73.75833329687943 40.67347555818014, -73.75833295173295 40.67346897016246, -73.75833503753158 40.67346162090979, -73.75833859501846 40.673456134319, -73.75834374048252 40.67345142640995, -73.7583495711249 40.67344792303251, -73.75835509403865 40.67344578419446, -73.75837443829052 40.67343784622839, -73.75839112521756 40.67343014671921, -73.75840578107996 40.6734228508775, -73.75840745532305 40.67342201781156, -73.75842341202883 40.67341346487382, -73.75843897163752 40.673404499563205, -73.75845411990716 40.673395135357715, -73.75846883788122 40.67338538122288, -73.75848310659663 40.67337524792528, -73.75849691299763 40.67336474804501, -73.75851023574918 40.67335389414462, -73.75852306415777 40.6733426997097, -73.75853537926054 40.673331175506775, -73.75854716916821 40.67331933862088, -73.75855841964565 40.67330720072909, -73.75856911409225 40.67329477350345, -73.75857924652611 40.673282075842494, -73.75858879678862 40.6732691221123, -73.75859776128306 40.67325592581326, -73.7586061269375 40.67324250402795, -73.75861311291276 40.67323022660792, -73.75861388305219 40.67322887204285, -73.75862101893074 40.673215044243975, -73.75862752977405 40.67320103953222, -73.75862807147192 40.67319973221529, -73.75863340488236 40.67318687319402, -73.75863863946978 40.67317256052835, -73.75864119971493 40.67316449995516, -73.75864322518903 40.67315812042857, -73.758648590089 40.67314211416046, -73.75865263175967 40.67313878171532, -73.75865786795698 40.67313578856969, -73.75866543638791 40.673133160523484)), ((-73.7586237732576 40.6728242664079, -73.75863168704949 40.67282326272342, -73.75863847256778 40.672823549816016, -73.75864449474577 40.67282462145949, -73.75864961235328 40.67282628464681, -73.75865483210549 40.672828809844404, -73.75865898632229 40.67283163087827, -73.7586840033284 40.672880745404925, -73.75870483493478 40.67292291625462, -73.758748019287 40.6730108397922, -73.75874862539281 40.673016575565086, -73.75874732088926 40.673023097986814, -73.75874448040396 40.67302820157252, -73.75874095254024 40.67303205379704, -73.75873620740458 40.67303531543024, -73.75873513316992 40.67303605340375, -73.75872932368671 40.67303862751004, -73.75872345910916 40.673040083957034, -73.75871481844561 40.67304061155024, -73.75870628671355 40.673039471610934, -73.75869918162253 40.6730369541683, -73.75869384809154 40.673033835292436, -73.75869014826506 40.67303062348751, -73.75866090678568 40.672972262582576, -73.75859797588853 40.67284666491054, -73.75859977926976 40.67284119174069, -73.75860261948722 40.67283648978914, -73.75860625363461 40.67283268191717, -73.75861114308171 40.672829086499725, -73.75861630564995 40.67282649663376, -73.7586237732576 40.6728242664079)))",Q277,5763,Q277,Q-12,Q-12,Q-12,Q-12,Southgate Plaza bet. 140 Ave. and 139 Ave.,412,27,113,11413,Q,0.145,False,South Gate Mall,Yes,100000016,PARK,20090423000000.00000,,,DPR,False,South Gate Mall,N,South Gate Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q277/,No,29,"10, 14",5,{C112B8BA-2729-44D1-85FE-30BFE62A7D06} +"MULTIPOLYGON (((-73.78472799933617 40.77294911466974, -73.78651836416849 40.77240663389634, -73.7865260967647 40.77242174159841, -73.7865293434521 40.77242877696077, -73.78653259022393 40.772435786208554, -73.78653687358484 40.772444967595284, -73.78654174022596 40.772455840311515, -73.78654986735926 40.772474986610206, -73.78655703847194 40.772494172560506, -73.786563347873 40.77251353881624, -73.7865687542313 40.77253304567875, -73.78657958620771 40.772592294701035, -73.78658228481294 40.772632121860184, -73.78658132549846 40.77267199627423, -73.78657669363953 40.77271204398672, -73.78657270764761 40.772737210238596, -73.78656764988123 40.77276194046128, -73.78655418133171 40.772810921028494, -73.78654579321919 40.77283511918534, -73.7865257299203 40.77288278450007, -73.78650104268995 40.772929940562314, -73.78647407715954 40.772976125254054, -73.7864531620949 40.7730053223086, -73.78642982938908 40.773033418062354, -73.78640423003641 40.77306023719517, -73.786378466425 40.77308434369482, -73.78635159713072 40.773107870013945, -73.78632373027033 40.773130714595155, -73.78629490264152 40.77315285319228, -73.78626572330997 40.77317384748766, -73.78624756851023 40.7731851799917, -73.78622832892374 40.77319643753937, -73.78620860760734 40.77320720881748, -73.78618844480567 40.77321750290558, -73.7861678571976 40.77322729011764, -73.78613563394222 40.77324042362096, -73.78608625717568 40.773257749542914, -73.78603782006789 40.7732720145691, -73.78599889691007 40.773282260278606, -73.78597571431273 40.773288990823374, -73.78593739040298 40.77329816242152, -73.78587903081304 40.77331122027946, -73.7858237889797 40.773323137559416, -73.78578679349967 40.77332880230654, -73.78483306878942 40.77342922368214, -73.78472799933617 40.77294911466974)))",Q387A,5312,Q387A,Q-11,Q-11,Q-11,Q-11,29 Ave. bet. 204 St. and Clearview Exwy. Sr. Rd. W.,411,19,111,11360,Q,2.69,False,Bayside Fields,Yes,100000383,PARK,,19571015000000.00000,204-10 29 AVENUE,DPR,True,Bayside Fields,Y,Bayside Fields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q387A/,No,26,11,6,{07629159-F005-4B5F-B074-102DBDF6768B} +"MULTIPOLYGON (((-73.98652618484202 40.7739658918536, -73.98688685299044 40.77347377174301, -73.98726579143491 40.77363328429577, -73.987381503201 40.77368199171683, -73.98720060588812 40.773928822101105, -73.98702083639591 40.77417411245969, -73.98652618484202 40.7739658918536)))",M184,4861,M184,M-07,M-07,M-07,M-07,"W. 64 St., bet. Amsterdam Ave. and West End Ave.",107,6,20,10023,M,0.749,False,Samuel N. Bennerson 2nd Playground,Yes,100004792,PLGD,20100106000000.00000,19410115000000.00000,200 WEST 64 STREET,DPR,True,Samuel N. Bennerson 2nd Playground,Y,Samuel N. Bennerson 2nd Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M184/,No,67,31,10,{B03A1B94-918E-438D-92D4-399626075CD8} +"MULTIPOLYGON (((-73.74453299244061 40.76409724954151, -73.74454987884097 40.76409668724633, -73.74456490831626 40.764102570269536, -73.74460528248133 40.76412622336942, -73.74464413045764 40.76415131028291, -73.7448081557363 40.764266737022325, -73.7449686401028 40.76438500669473, -73.74498679789626 40.764398542799874, -73.7450070755794 40.76441366038339, -73.74501508390998 40.764419630465135, -73.74506440112965 40.76445639657957, -73.74507943945204 40.76446649933456, -73.7450877004887 40.76447204943316, -73.74516490399216 40.76452391388231, -73.7451680204718 40.76453247469997, -73.74517053921392 40.764539391669054, -73.7451660327163 40.764543099898155, -73.74516363896497 40.76454468490023, -73.74516134495113 40.764546204385844, -73.74515493191936 40.76455045320454, -73.74515425630344 40.76455090016301, -73.74515230793119 40.764550613093654, -73.74513839944052 40.76454856428864, -73.7451354650457 40.764548131857026, -73.74512875201323 40.7645438071757, -73.74508638617728 40.76451652170871, -73.7450391997635 40.76448249156011, -73.74499169974864 40.76444871644197, -73.74496506851104 40.76443035466958, -73.74490295145101 40.764387527669165, -73.74489487999921 40.764381961767846, -73.74480233368824 40.764311791845756, -73.74472588814768 40.764256364619875, -73.74464911721711 40.76420119866922, -73.74459182443486 40.76416672179517, -73.74453544935031 40.76413138153915, -73.74452543510735 40.764125328631394, -73.74452083551543 40.76411625301825, -73.74452184085528 40.76410487642915, -73.74453299244061 40.76409724954151)), ((-73.73976267600135 40.7656685043416, -73.73977016896254 40.76566746226905, -73.7397707215992 40.76566758328481, -73.73977435573192 40.765668383039646, -73.73977718635447 40.76566900628097, -73.7397823486674 40.76567184643599, -73.73978261977965 40.76567217843521, -73.73978474975162 40.76567479381831, -73.73978636580111 40.76567677678462, -73.73978718791354 40.76567946755799, -73.73978762175905 40.76568089134028, -73.73978448056833 40.76569518791282, -73.7397844443896 40.76569535352455, -73.73977213835816 40.76574815582521, -73.73975068466387 40.765840209509435, -73.73972557377485 40.76594795348001, -73.73970459564745 40.766036480938446, -73.73968073208421 40.76613717763875, -73.73967675800671 40.766153952324125, -73.7396743506891 40.76616411091653, -73.73965905537844 40.76622864906928, -73.7396570405988 40.766232921028106, -73.73965243537185 40.76623662971895, -73.73964932941068 40.7662376582843, -73.73964514662724 40.76623904191781, -73.73963781836238 40.76623914152282, -73.73963295777433 40.76623788243471, -73.73962854712117 40.766235446499046, -73.73962503951338 40.7662319653134, -73.73962385159126 40.766228019305025, -73.73962408196327 40.766223321876396, -73.73962762638793 40.76620405541735, -73.73965070653628 40.76609836994615, -73.73965534957672 40.76607710774162, -73.7396840991421 40.765963289079025, -73.73970330755598 40.7658872467686, -73.73970528696172 40.76587868831142, -73.73975489147861 40.76567262909408, -73.73976095507453 40.765669416270924, -73.73976267600135 40.7656685043416)), ((-73.74070372060639 40.76454492276002, -73.74074683383138 40.764536140775796, -73.74075539845539 40.764537849401236, -73.74076089587751 40.76454130351301, -73.74076414696033 40.76454587010041, -73.74076466944729 40.76454977948081, -73.74076492953093 40.76455172786482, -73.74076311104118 40.76455672069189, -73.74075720773384 40.764561390950625, -73.74071318095969 40.764572705812746, -73.74070832022977 40.76457394297737, -73.74067390266835 40.76458271120182, -73.74063509418825 40.764593724403134, -73.74059679702313 40.76460573200297, -73.74055704103526 40.76461947788741, -73.74051985516402 40.764633515007766, -73.74048542641478 40.76464757183425, -73.74047443784275 40.76465243053638, -73.74044780732618 40.764664268956615, -73.74044600253808 40.76466513117936, -73.74041453448423 40.76468015099424, -73.74040509270839 40.76468500507036, -73.74038021844463 40.76469779206506, -73.74035634814584 40.76471097844106, -73.74034670554211 40.76471630572699, -73.74031404085189 40.764735674072135, -73.74028225881484 40.764755872865074, -73.74025139268055 40.764776879668865, -73.74023762668301 40.764786909106896, -73.740221481631 40.76479866935838, -73.74019255892662 40.764821216795056, -73.74016237181831 40.76484575419698, -73.74015610421077 40.764847550082266, -73.74014968079514 40.76484738881194, -73.7401472893601 40.764846525234084, -73.74014388907189 40.76484529827699, -73.74013958983876 40.764841644224155, -73.74013745904072 40.76483681539677, -73.74013818430846 40.76483154455843, -73.74016602761291 40.76480607885615, -73.7401936090101 40.764783685089704, -73.7402221528867 40.76476200038563, -73.74025163308478 40.76474105079901, -73.74028201398242 40.76472085966195, -73.74031326115599 40.76470144670734, -73.74034534253337 40.76468283617597, -73.74037821893639 40.76466505229259, -73.7404118607074 40.764648107596756, -73.7404462215729 40.76463202359574, -73.7404833406337 40.7646159872209, -73.74048541296239 40.76461515711802, -73.74051696292422 40.76460250940627, -73.74053086727692 40.76459737900992, -73.74055326392316 40.764589114157424, -73.74059020627239 40.76457677573655, -73.74060476842551 40.76457212858417, -73.74062752379166 40.76456511262898, -73.74065168987397 40.76455836549485, -73.74066540201174 40.76455453588365, -73.74070372060639 40.76454492276002)), ((-73.74232688797144 40.76421928746116, -73.7425014404774 40.764185300835344, -73.7425077499267 40.76418643516911, -73.74251117104603 40.76418809704848, -73.74251322206378 40.76418909309173, -73.74251657134946 40.76419248648725, -73.74251844614987 40.764196480828176, -73.74251841967325 40.764201185022756, -73.74251492995482 40.764207157497104, -73.74251196862902 40.76420910408054, -73.74250912248121 40.7642109743781, -73.74240301310341 40.76423301214161, -73.74240282701027 40.764233050447395, -73.74232936701284 40.76424802011123, -73.74232319516723 40.764249277824746, -73.74224831988346 40.76426453693666, -73.74202358248245 40.764309094442964, -73.74184155747207 40.76434516178503, -73.74182952689488 40.764346331601665, -73.74182212463256 40.764345410003294, -73.74181955424962 40.76434396252987, -73.74181536245084 40.7643416037107, -73.74181257895148 40.76433708322626, -73.74181266488388 40.76433110854825, -73.74181635285782 40.764325339153736, -73.74182098658078 40.76432246340967, -73.74189738208989 40.76430676403057, -73.74207071923904 40.76427202791242, -73.74230069387126 40.76422468054863, -73.74232688797144 40.76421928746116)), ((-73.74390312775316 40.76396614737502, -73.74389055920861 40.763965874497586, -73.74388744414108 40.76396592790677, -73.74385183762621 40.76396653583429, -73.74381151848507 40.76396777623425, -73.7437712423384 40.76396953901033, -73.74375230386488 40.76397061441922, -73.74373650564465 40.76397186250349, -73.74372959740272 40.76397244687531, -73.74372810451068 40.76397260294441, -73.74369110910168 40.76397650179104, -73.74365134894742 40.763981747937585, -73.74360882124519 40.763987837990925, -73.74360120831379 40.76398565172473, -73.74359851151513 40.7639828865664, -73.74359703570545 40.76398137403055, -73.74359583569334 40.76397559550157, -73.74359758512719 40.76397156061672, -73.74360164297414 40.76396811529889, -73.7436143014119 40.76396534198941, -73.74363282262175 40.76396128589375, -73.74363779875377 40.763960195645474, -73.74365013007419 40.76395809788564, -73.74367152818725 40.76395463081375, -73.74370540246099 40.763949589489556, -73.74373697750633 40.76394587939499, -73.74373823941526 40.76394573181707, -73.7437439501125 40.763945188005465, -73.74374795470804 40.76394480699278, -73.7437515481304 40.7639444781954, -73.743767202574 40.76394304248365, -73.74377379658284 40.76394255556611, -73.74377515891179 40.76394247304766, -73.74380820195411 40.763940458252975, -73.74384379006732 40.76393878049449, -73.74384436333658 40.76393877006249, -73.74385471293827 40.76393859226014, -73.74386703571159 40.76393840623656, -73.74387715128334 40.76393841341655, -73.74391166406637 40.763938873754014, -73.74393887314456 40.763939582597594, -73.74394614381 40.76393991843739, -73.74398055936264 40.76394194902405, -73.74398616068737 40.76394243603903, -73.74401485520346 40.76394492846981, -73.74402439462817 40.763946003259704, -73.74404769488335 40.76394867730619, -73.74405121797629 40.76394908225719, -73.74405342800476 40.76394938613567, -73.74408823683014 40.763954175819784, -73.74412722878354 40.763960514652595, -73.74416593883562 40.763967786672936, -73.74420432674077 40.76397598638877, -73.74422044404777 40.76397985023201, -73.74424011944534 40.76398456754892, -73.74424954699407 40.76398702074948, -73.74424959905699 40.763987033472155, -73.74427958874007 40.7639958385714, -73.74429258713022 40.76399983506038, -73.74431799945188 40.764007669148, -73.7443186744305 40.764009239330846, -73.74432353663734 40.76402054699383, -73.74430543809719 40.76402742452943, -73.74429499574855 40.764024609778495, -73.74426631134712 40.764017312329514, -73.74424719314912 40.76401244857076, -73.74424538974701 40.7640120420403, -73.74420388671658 40.76400267016454, -73.74415565282557 40.763993032085, -73.74410837502762 40.76398485673275, -73.74409403580579 40.763982749211884, -73.74406077057236 40.76397785849979, -73.74401289037742 40.763972039299944, -73.74399099808903 40.76397034902836, -73.74397272817977 40.763969116156126, -73.74392997441454 40.763966859917566, -73.74392867412149 40.763966825509684, -73.74390312775316 40.76396614737502)), ((-73.74131519715924 40.764422629693335, -73.74162091056238 40.76436157058829, -73.74162890245445 40.76436284472005, -73.74163292148585 40.764365163536176, -73.74163440926685 40.76436602325575, -73.74163782016332 40.76437092786743, -73.74163849707907 40.76437564714682, -73.74163643325353 40.76438070247305, -73.7416300480218 40.76438536359112, -73.74147002184849 40.76441907892517, -73.74145212941325 40.764422794792004, -73.74138467036038 40.764436802070755, -73.7411440950525 40.76448424715988, -73.74095577590745 40.76452047546123, -73.7409527878341 40.76451953941833, -73.740947361752 40.76451783876524, -73.74094272767549 40.76451348429466, -73.74094115104401 40.7645095869529, -73.74094109912875 40.76450527340283, -73.74094372222382 40.764500168918126, -73.74094925009987 40.76449579497332, -73.74131519715924 40.764422629693335)), ((-73.74000261550395 40.76497187823169, -73.74000784987557 40.76496990082199, -73.7400136692164 40.76497007604561, -73.74002005563113 40.76497274065213, -73.74002425139322 40.76497771912305, -73.74002442887681 40.76498170787334, -73.74002449318655 40.76498313442308, -73.7400199947653 40.76499106405089, -73.74001415594542 40.76499982272313, -73.7400008092412 40.76501983701072, -73.7399896092191 40.76503818119659, -73.73998357294118 40.7650480659571, -73.73997925671817 40.76505513330783, -73.73995932346592 40.76509097265989, -73.73994102977913 40.765127314590714, -73.73992440188141 40.76516411683636, -73.73990945535145 40.76520133350678, -73.73989831477806 40.76523294860314, -73.73989621049475 40.76523892142414, -73.73988758998532 40.765267274265355, -73.73988489595753 40.76527686579654, -73.73987261045849 40.76532536102774, -73.739870728532 40.76533292734876, -73.73986273520292 40.76536505203052, -73.73984296418088 40.76544452133589, -73.73983955168444 40.76545823827117, -73.73982577819851 40.76551075990907, -73.73982161579849 40.76551421476323, -73.7398158452915 40.765516382761845, -73.73981115105204 40.76551651534136, -73.73980935650854 40.76551656621962, -73.73980364908641 40.76551501616298, -73.73980337631183 40.76551480662907, -73.73980005335807 40.765512270498206, -73.73979777665463 40.76551053187859, -73.73979559063538 40.76550528688602, -73.73980154872591 40.76547875066762, -73.73980865877297 40.76545020621625, -73.73980866597768 40.76545018101827, -73.7398400865327 40.765324044888494, -73.73984669837645 40.76529750654137, -73.73986328275392 40.76523092981482, -73.73987087843953 40.765207819219604, -73.73987306353742 40.76520116939953, -73.73988415673682 40.76517167849675, -73.7398912823694 40.76515489560866, -73.73989654919936 40.765142488594215, -73.73990043518344 40.765134291038336, -73.73991022658794 40.765113631176916, -73.7399251733673 40.76508514132911, -73.73994137165084 40.76505704962721, -73.73995880592109 40.765029386652984, -73.73997745353668 40.76500218747458, -73.74000011369996 40.76497349800267, -73.74000087427466 40.76497253527505, -73.74000261550395 40.76497187823169)), ((-73.74336765489399 40.76401461614335, -73.74336859118198 40.76401444893347, -73.74336921395177 40.76401450164967, -73.7433759460329 40.7640150686568, -73.7433824520858 40.76401866176744, -73.74338573237692 40.764025216667584, -73.74338466109617 40.76403029584799, -73.74338452597877 40.76403093670872, -73.74338141080672 40.76403439762622, -73.7433758122965 40.76403686785638, -73.74332661442664 40.764047206853185, -73.74332646389279 40.764047238035566, -73.74329074502461 40.764054551622515, -73.74317638889795 40.76407796300677, -73.74315646999746 40.76408204112738, -73.74308080719393 40.764097378268865, -73.742975440061 40.76411837542611, -73.74297506314556 40.76411845022792, -73.74286902329705 40.76413942957796, -73.74270386143681 40.76417200502451, -73.7426984659722 40.76417187861018, -73.74269824096277 40.76417187360509, -73.74269720718917 40.764171521899215, -73.74269110628029 40.764169443408726, -73.74268572787197 40.76416459566846, -73.74268458166782 40.76415901085938, -73.74268435729759 40.76415792074357, -73.7426847209099 40.764156997634515, -73.74268658560983 40.76415226602767, -73.74269009740874 40.764149157212884, -73.74269497119154 40.764146976261536, -73.74280984394812 40.76412357551313, -73.74300929039816 40.76408335364034, -73.74304593256034 40.76407618357959, -73.74314068590134 40.76405811996309, -73.74324494473747 40.764038244919405, -73.74335153886392 40.76401750059047, -73.74336765489399 40.76401461614335)), ((-73.74528126234695 40.76462546032418, -73.74529599176844 40.76461167729716, -73.74531915770392 40.76461393295303, -73.7454205949079 40.76465341658474, -73.74552124142603 40.76469404742817, -73.74558839781257 40.764728727519504, -73.74564510028456 40.764772898357386, -73.74565109449824 40.76478620668846, -73.74563971414479 40.76479729653159, -73.7456193407374 40.76479476974985, -73.74556786232976 40.76475809185556, -73.74551338157474 40.764727619009186, -73.74550892128698 40.76472512465565, -73.7453986080028 40.764684155460856, -73.74528890960369 40.764642241085575, -73.74528126234695 40.76462546032418)))",Q262,6371,Q262,Q-11,Q-11,Q-11,Q-11,"Alameda Ave. bet. Northern Blvd., Hanford St. and Northern Blvd., 247 St.",411,19,111,11362,Q,0.553,False,Alameda Malls,Yes,100000376,PARK,,,,DPR,False,Alameda Malls,N,Alameda Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q262/,No,26,11,3,{178C3F6A-2C23-417C-A965-1A17FE90B1C7} +"MULTIPOLYGON (((-73.96866126614377 40.78926268735439, -73.96924203844749 40.78950734326372, -73.9688887811262 40.78999632206912, -73.96830587054774 40.789752244634016, -73.96866126614377 40.78926268735439)))",M244,4944,M244,M-07,M-07,M-07,M-07,"Columbus Ave., W. 91 St. To W. 92 St., Central Park W.",107,6,24,10025,M,0.837,False,Sol Bloom Playground,Yes,100004146,PLGD,20100106000000.00000,19590309000000.00000,59 WEST 91 STREET,DPR/DOE,False,Sol Bloom Playground,Y,Sol Bloom Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M244/,No,69,30,10,{C53F27F2-EB90-4A4A-A074-7365312E98A5} +"MULTIPOLYGON (((-73.9225101872722 40.84041021588336, -73.9225174606616 40.840341821082426, -73.92273064864663 40.84035382449691, -73.92289031629929 40.840362467127804, -73.92289939658137 40.84028872998181, -73.92342281329098 40.8403170651103, -73.92331289425238 40.840463038622154, -73.92314597756545 40.84068470196143, -73.92263700928535 40.840464968175816, -73.92254955810672 40.84042721302771, -73.922545399524 40.84042541735262, -73.92253330893908 40.840420198076956, -73.9225101872722 40.84041021588336)))",X269,5407,X269,X-04,X-04,X-04,X-04,W. 170 St. bet. Nelson Ave. and Shakespeare Ave.,204,16,44,10452,X,0.44,False,Cpl Fischer Park,Yes,100004961,PARK,20100106000000.00000,19950914000000.00000,1340 NELSON AvNUE,DPR,True,Cpl Fischer Park,Y,Cpl Fischer Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/X269/,No,77,29,15,{07B2D1B1-518F-4C25-B8A0-16C17BD89DAD} +"MULTIPOLYGON (((-73.98042162941599 40.710573568603515, -73.98041999559801 40.71055990397367, -73.98041958139832 40.710559931819034, -73.98041805896983 40.71054978910609, -73.9804180140878 40.71054949192985, -73.98037777399468 40.71055222263078, -73.98037507196545 40.710529184400436, -73.98036950619318 40.710481726528116, -73.98035772654312 40.71038152377167, -73.98034595876278 40.71028132011424, -73.9803273315314 40.71012271264643, -73.98029725074682 40.70986657787661, -73.98028749930262 40.709783539191044, -73.98028768746858 40.709783515809974, -73.98103583041139 40.709692270245704, -73.98126258496015 40.70966461306393, -73.98220469100605 40.70954970156807, -73.98269949469784 40.709489345504075, -73.98281364408022 40.70947542089179, -73.98297441904386 40.70945580914074, -73.98307128681328 40.70944399251343, -73.98315144109723 40.70943421481801, -73.98317011429306 40.709431936555234, -73.98320846540456 40.709427258598154, -73.98324817862758 40.70942241423196, -73.98330599343927 40.709415361724126, -73.98337890630886 40.709406467121724, -73.9834669858625 40.709395722301224, -73.98353929869573 40.70938690045241, -73.98357226962447 40.709600210101655, -73.9836145617104 40.70987383188306, -73.98362690499113 40.70995369365126, -73.98364410316613 40.71006495692323, -73.98364653591594 40.7100806963988, -73.98366176063183 40.71007935229677, -73.98367012186748 40.71013509510913, -73.98373156016436 40.71013070030981, -73.98385244740975 40.710122053515015, -73.98423913940395 40.71009439298406, -73.98426776876899 40.710131755496185, -73.98428107156256 40.710150846343815, -73.98429794744362 40.710168224905544, -73.98431802373378 40.71018350751139, -73.98434085555527 40.710196355507115, -73.98436593884618 40.7102064851616, -73.98465639148395 40.710301476813115, -73.98466859364878 40.71031119855349, -73.98467846300751 40.71032234819237, -73.98468571561678 40.7103346069117, -73.98469014209493 40.71034762078336, -73.98469161826903 40.71036101697966, -73.98469009807316 40.71037441007591, -73.98468562892968 40.71038741646067, -73.98467833518046 40.710399660637115, -73.98466842991728 40.71041079143385, -73.98465619604565 40.71042049010704, -73.98464198510044 40.71042847574348, -73.98462620540813 40.71043452146825, -73.98460931143657 40.71043845174181, -73.98459133060277 40.71043941288305, -73.98458480879309 40.71043976140811, -73.98446407186994 40.710446215347496, -73.98445476429521 40.71044671297399, -73.98444955628634 40.710390294363364, -73.98435735517037 40.71039515633678, -73.98435085229947 40.710395499448126, -73.9843511150628 40.710395294167384, -73.98431903976915 40.71039692513032, -73.98432719646222 40.71039398697362, -73.98433457116636 40.71039002753054, -73.98434094374082 40.7103851656388, -73.98434612835798 40.71037954445451, -73.98434996877019 40.71037332965051, -73.98435235369443 40.710366706717146, -73.98435321089804 40.710359870154996, -73.98429344104821 40.71036417096003, -73.98424032320027 40.71036799267258, -73.98351620744968 40.710420091175756, -73.98343756307821 40.71042574950401, -73.98080349850716 40.71061522301117, -73.98075193528587 40.710618931709895, -73.98050166109641 40.71063693132561, -73.98049241987378 40.71063695857633, -73.98048910633523 40.71063696792037, -73.98047673430382 40.71063534760475, -73.98046491776127 40.710632119970185, -73.98045401643512 40.71062738233311, -73.98044498517599 40.710621673361395, -73.98044435927054 40.710621277930834, -73.98043623851443 40.710613992318606, -73.98042990143387 40.71060574526346, -73.98042553848292 40.71059678804057, -73.98042441089463 40.71059208898307, -73.98042162941599 40.710573568603515)))",M369,6625,M369,M-03,M-03,M-15,M-03,South Side of FDR Dr. at Gouverneur St.,103,2,7,10002,M,7.782,False,Pier 42,No,100003896,PARK,20100106000000.00000,20060714000000.00000,42 SOUTH STREET,DPR,False,Pier 42,N,Pier 42,Pier,Waterfront Facility,http://www.nycgovparks.org/parks/M369/,Yes,65,26,7,{D0C31FD6-94FB-4998-8F2D-DDAD44F2622A} +"MULTIPOLYGON (((-74.02691153290087 40.61648448332796, -74.02690853185983 40.61648296485186, -74.0270959457856 40.61626456523809, -74.02709894563938 40.61626608370962, -74.02691153290087 40.61648448332796)))",B210U,5566,B210U,B-10,B-10,B-10,B-10,92 St. bet. Gowanus Exwy. and Ft. Hamilton Pkwy.,310,43,68,11209,B,0.002,False,Strip,No,100004247,PARK,20100106000000.00000,19651216000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210U/,No,46,22,11,{750DD357-07FB-4A83-8564-200518E53B2A} +"MULTIPOLYGON (((-73.95827002036043 40.759601934525506, -73.9586199009342 40.75912260583862, -73.95906366395977 40.75931087174542, -73.95871454599573 40.759790043550524, -73.95827002036043 40.759601934525506)))",M108Q,4664,M108Q,M-08,M-08,M-08,M-08,"FDR Dr., E. 60 St. To E. 61 St. and York Ave.",108,5,19,10065,M,0.622,False,Twenty-Four Sycamores Park,Yes,100004042,PARK,20100106000000.00000,19430211000000.00000,501 EAST 60 STREET,DPR,True,Twenty-Four Sycamores Park,Y,Twenty-Four Sycamores Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M108Q/,No,73,28,12,{BB0E2D5B-1628-47D0-85F7-4D7E7E6BE6C5} +"MULTIPOLYGON (((-73.9684607135703 40.795882426300324, -73.96790601994869 40.79564910316514, -73.96799248693742 40.79552824590921, -73.96809234553334 40.79557047101887, -73.96819508750778 40.79541602946843, -73.96824614341516 40.79543757629808, -73.9686007573267 40.794952260771105, -73.96886914092201 40.795065521908946, -73.96898618075089 40.795114913462804, -73.96889374981708 40.79524141329493, -73.96897748637183 40.79527663550298, -73.96921347103364 40.795375907748166, -73.96910125730837 40.79552948138713, -73.96889976406442 40.795805242192834, -73.96863867728199 40.79569541042824, -73.9681337054198 40.79638648926229, -73.96810210496474 40.79637319815052, -73.9682914711711 40.79611404424499, -73.9684607135703 40.795882426300324)))",M229,6651,M229,M-07,M-07,M-07,M-07,W. 97 St. and Amsterdam Ave.,107,7,24,10025,M,1.7,False,Happy Warrior Playground,Yes,100004047,PLGD,20100106000000.00000,19550922000000.00000,163 WEST 97 STREET,DPR/DOE,False,Happy Warrior Playground,Y,Happy Warrior Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M229/,No,69,30,10,{EE5DE726-ACEC-4B1B-B70E-AC704065753A} +"MULTIPOLYGON (((-74.21993693130825 40.54809702175686, -74.21989887632063 40.548000706479925, -74.22016966407185 40.5479406266086, -74.22007317360469 40.54806679382136, -74.21993693130825 40.54809702175686)))",R168,6200,R168,R-03,R-03,R-03,R-03,Lucille Ave. at Vetrands Rd. E. and Bloomingdale Rd.,503,51,123,10309,R,0.049,False,Park,No,100008345,PARK,20130114000000.00000,20111117000000.00000,,DPR,False,Park,N,Park,,Undeveloped,,No,62,24,11,{321D6F3D-094B-4FDA-B48A-D0C41A516FDE} +"MULTIPOLYGON (((-73.92689836185761 40.84017561945001, -73.92679100056854 40.83965408904473, -73.92644595487316 40.83969124811125, -73.92642519131577 40.83958791763524, -73.92647093356769 40.83958226108796, -73.92647541815644 40.839573431905436, -73.92648462498748 40.83955530543456, -73.92652802929123 40.83954080812911, -73.92655247437584 40.83953264361396, -73.92670983686286 40.83932914300288, -73.92679513519175 40.839133564023165, -73.92677458973928 40.83908273972492, -73.92644820063643 40.83897588297994, -73.92626073906682 40.83930696215875, -73.92592886311678 40.83919830755753, -73.9260802174026 40.83893100125368, -73.92611679292355 40.838866403458304, -73.92626541446818 40.83860392179332, -73.92696658842961 40.838688722563404, -73.92700946308463 40.83889699788338, -73.92701633545823 40.83893038533505, -73.92708696554284 40.83927348658081, -73.92728091482913 40.84021562616307, -73.92689836185761 40.84017561945001)), ((-73.92643967756395 40.840399168905904, -73.9265458041913 40.840229084691394, -73.9266120066497 40.84023602731433, -73.92730080824562 40.84030825896237, -73.92690415996329 40.84094830054033, -73.92657775689615 40.84083164862568, -73.92677322651043 40.840518375955796, -73.92643967756395 40.840399168905904)))",X153,5749,X153,X-04,X-04,X-04,X-04,W. 168 St. bet. Dr. MLK Jr. Blvd. and Merriam Ave.,204,16,44,10452,X,2.944,False,Merriam Playground,No,100004812,PARK,20100106000000.00000,19450823000000.00000,,DPR,True,Merriam Playground,Y,Merriam Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X153/,No,77,29,15,{E48CFAA9-2B5F-402E-A3D4-A6E66F23A807} +"MULTIPOLYGON (((-73.9609452576999 40.70647158614926, -73.96139145958492 40.706184506845226, -73.96157076596899 40.70634590157657, -73.96160634856578 40.70634816923156, -73.96240326469072 40.70583543521441, -73.962435593759 40.70583619949741, -73.96262188691615 40.70600388044814, -73.96134112876922 40.706827913464, -73.9609452576999 40.70647158614926)))",B264,5141,B264,B-01,B-01,B-01,B-01,Lee Ave. between Wilson St. and Taylor St.,301,33,90,11211,B,1.23,False,Roebling Playground (PS 16),Yes,100004857,PARK,20100106000000.00000,19540527000000.00000,525 BEDFORD AVENUE,DPR/DOE,False,Roebling Playground,Y,Roebling Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B264/,No,50,26,7,{86508025-B561-4001-8AB8-D635CD365EF3} +"MULTIPOLYGON (((-73.91110273250362 40.81723264770508, -73.91111085364396 40.81720466021197, -73.91105070364578 40.81719010951786, -73.91105303758711 40.81718206537645, -73.91130609920306 40.81720971917618, -73.91127886712113 40.817275349868375, -73.91110273250362 40.81723264770508)))",X345,4690,X345,X-01,X-01,X-01,X-01,St Ann's Ave. at Rae St.,201,17,40,10455,X,0.029,False,St. Ann's Block Association Garden,No,100004512,PARK,20100106000000.00000,20021120000000.00000,668 ST ANN'S AVENUE,DPR,False,St. Ann's Block Association Garden,N,St. Ann's Block Association Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X345/,No,79,32,15,{A4C95315-8D35-43BA-A2F2-52D44F69CE5D} +"MULTIPOLYGON (((-74.14285371089184 40.605635240473106, -74.14278867412236 40.607111495350615, -74.14262690203549 40.60711891570322, -74.14205950144502 40.607144937504465, -74.14096324156897 40.60721306010637, -74.14092380849 40.606730911813905, -74.14083736575972 40.60574205093563, -74.14285371089184 40.605635240473106)))",R075B,6003,R075B,R-02,R-02,R-02,R-02,"SI Expressway, Woodward Ave., Wooley Ave. and Westwood Ave.",502,50,122,10314,R,6.563,False,Westwood Park,Yes,100004384,PARK,20100106000000.00000,19580117000000.00000,,DPR,True,Westwood Park,N,Westwood Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R075B/,No,63,24,11,{54021779-5022-40C4-9CFE-74881467333E} +"MULTIPOLYGON (((-74.1216524045854 40.637893106600956, -74.12178571504325 40.6378566214177, -74.12177771243974 40.63783930839833, -74.12181860771304 40.637828288647945, -74.12184677768956 40.63788923298411, -74.12195226393244 40.637860807921676, -74.12231489514645 40.63864532192593, -74.12202025983039 40.6389181096442, -74.12184016129405 40.638561216704616, -74.1217864010633 40.63845467825584, -74.12173500909775 40.638352838886306, -74.12169355584051 40.638270688741166, -74.1216469192754 40.63817827003614, -74.12158139529201 40.63804842227569, -74.121521149842 40.637929029333726, -74.1216524045854 40.637893106600956)))",R134,5395,R134,R-01,R-01,R-01,R-01,Richmond Ter. bet. Alaska St. and Taylor St.,501,49,120,10310,R,0.96,False,Richmond Terrace Storehouse,No,100004005,PARK,20100106000000.00000,19950404000000.00000,1684 RICHMOND TERRACE,DPR,False,Richmond Terrace Storehouse,N,Richmond Terrace Storehouse,Facility,Undeveloped,http://www.nycgovparks.org/parks/R134/,No,61,23,11,{B775B0B1-F026-469B-A7F4-FD038C1AC907} +"MULTIPOLYGON (((-73.78505941869885 40.77900671345127, -73.78505055335185 40.77896292517671, -73.78533334256771 40.77886865617862, -73.78602419707593 40.77863835194695, -73.78643275216805 40.7785196020608, -73.78715130403513 40.77827401040693, -73.78816625008733 40.777918495484116, -73.78823122728616 40.77789637964725, -73.78853464944034 40.77782551871821, -73.78869498986737 40.77778418971254, -73.78869064052716 40.77778402594963, -73.78898562792114 40.777698769103914, -73.7891386006882 40.7776544615272, -73.7892973686997 40.777607035990215, -73.78944549149848 40.777561916788116, -73.78961024407977 40.777511732702536, -73.78977214541355 40.77746782420151, -73.78993092310746 40.77742493005078, -73.79009814425402 40.77737944860272, -73.79025575459337 40.77732681021602, -73.79034333607858 40.777297559107254, -73.79058981575467 40.77724780865012, -73.79064487359925 40.777231121480604, -73.79064903559096 40.77723585489193, -73.79065583926491 40.777243589982675, -73.79067318525742 40.77726808371024, -73.79068082638001 40.777281869012235, -73.79068286603739 40.77727967548527, -73.79076790553242 40.77783239412439, -73.79077321063501 40.77785901907775, -73.79077199653074 40.7778589826541, -73.79077286370955 40.77786462228938, -73.79085191975513 40.77839894794699, -73.7908973585072 40.77872357771693, -73.79090460281951 40.778715538548994, -73.79119545013835 40.780576187802986, -73.79133815596207 40.781390008780015, -73.79152782501862 40.78243042186276, -73.79160701309152 40.78285090421699, -73.79167215282686 40.78321609895941, -73.79175478063571 40.78360631873471, -73.79182798707203 40.784004977139745, -73.79190451061909 40.78446270461204, -73.79198822380931 40.78482384252722, -73.79203971186854 40.78514707854246, -73.79207082814521 40.78527364556371, -73.79206360894898 40.78530380751945, -73.79207992962476 40.785413908242056, -73.79207602562339 40.78545687053622, -73.79204241404726 40.7855624921092, -73.79199620909942 40.78566680052046, -73.79197845847574 40.78572242321362, -73.79197414883404 40.78573592839336, -73.79197056222338 40.78575842550709, -73.79196364787181 40.78578995586985, -73.79195645956214 40.78588451469291, -73.79196528323166 40.78594680225221, -73.79199673686357 40.786139146275964, -73.79201319380294 40.78623979015029, -73.79201735572497 40.78626523778963, -73.79202151801987 40.78628525719342, -73.79202189081195 40.786292972480844, -73.792036507526 40.78638235763363, -73.79204154484391 40.78641316574817, -73.79186959278677 40.786525399383166, -73.79177423364426 40.7865876410363, -73.7916216797558 40.78671621746614, -73.7915005231967 40.78682382554118, -73.79143538605098 40.786886625865904, -73.7913603604714 40.78695896079417, -73.79130223437122 40.787015001948234, -73.79124844925292 40.7870668572906, -73.79116991759923 40.78714257163633, -73.79108871669874 40.78722085923104, -73.79100945977892 40.78729727184284, -73.79096298450459 40.78733772552318, -73.79090161733072 40.787391142830806, -73.79084945961407 40.787436542526535, -73.79077961961642 40.78748365077332, -73.79069917105312 40.7875379149241, -73.79065249932363 40.78756537475682, -73.79052273106045 40.78764172498493, -73.79044045157272 40.787683956701144, -73.79040860184175 40.787700304156736, -73.79039607869093 40.78769203727233, -73.79038406867105 40.787684109008666, -73.7903473694345 40.78765988264657, -73.7897059860057 40.78723648241622, -73.78964884218632 40.787197097266365, -73.78942919725027 40.78705264350669, -73.78856052368748 40.78648552508228, -73.78845046878077 40.786310785687846, -73.78844482399322 40.78630576042087, -73.78843369849221 40.786254142935235, -73.78829290834031 40.78613789861069, -73.78818811041307 40.78605137025357, -73.78810092632649 40.78597938490444, -73.78792121379139 40.785825169044024, -73.78780463257633 40.785720676109264, -73.78769684699066 40.78562406695959, -73.78756440323556 40.785493076945414, -73.7874807344952 40.78541032487037, -73.78744897125178 40.785378909847694, -73.78744683952849 40.785376802339016, -73.78735309946487 40.78528408913042, -73.7872936642434 40.78522530531529, -73.78722282260632 40.78515351604387, -73.78722114642427 40.7851515948758, -73.78699523937068 40.78489264197992, -73.78660385856206 40.784378734214094, -73.78639854790977 40.784059633955025, -73.78639372940287 40.784051226022335, -73.78613221135349 40.78359484007264, -73.78590732395612 40.783110523970876, -73.78578916129683 40.7828110722318, -73.78561666804258 40.78226128084878, -73.78561264305166 40.7822390309034, -73.78562067070062 40.78225183299921, -73.78547679816332 40.781407218106594, -73.78539174879816 40.78088777932195, -73.78537223312948 40.78076858190969, -73.78536587308916 40.780676218817774, -73.78536182053892 40.780617370499236, -73.78535709238015 40.7805487126256, -73.78535303984835 40.78048986340518, -73.78534961426753 40.78044011945348, -73.78534111468717 40.78039814010617, -73.78532853502226 40.78033600256533, -73.78531379812974 40.78026321253633, -73.78529173949934 40.780154256302865, -73.78525910469574 40.77999306279091, -73.78522835558466 40.77984117859544, -73.78519085980484 40.77965597214225, -73.78513984508783 40.779403985147695, -73.78512480426828 40.77932969247477, -73.78511350182866 40.779273859914134, -73.78509697320702 40.77919221634248, -73.78509226357187 40.77916895472465, -73.78508096000513 40.77911312125679, -73.78507722285848 40.77909466204288, -73.78506914107898 40.77905473929791, -73.78505941869885 40.77900671345127)), ((-73.78505055335185 40.77896292517671, -73.78504886713742 40.77895684002179, -73.78504889570489 40.77895679775136, -73.78505055335185 40.77896292517671)))",Q010,6257,Q010,Q-07,Q-07,Q-07,Q-07,"202 St., Clearview Exwy., bet. Cross Island Pkwy. and 23 Ave.",407,19,109,11360,Q,110.93,False,Clearview Park Golf Course,No,100000364,PARK,,,,DPR,True,Clearview Park Golf Course,Y,Clearview Park Golf Course,Large Park,Managed Sites,http://www.nycgovparks.org/parks/Q010/,No,26,11,3,{3F9B79B9-3E10-40F6-BF1E-C9C52BDC5DD7} +"MULTIPOLYGON (((-73.80403404910797 40.59419731947673, -73.80399383539344 40.59315803144346, -73.80358266254908 40.592902312351114, -73.80359019662622 40.592894012481125, -73.80371582476135 40.59275560930249, -73.80388154193544 40.592854386290014, -73.80375497412687 40.59299382454791, -73.80376061199814 40.59299723996221, -73.80407022770746 40.59318478484612, -73.80443823282496 40.593051912476604, -73.80456775191092 40.593365999144204, -73.80509709660758 40.593098041919745, -73.80519895678965 40.59304647947388, -73.80423762489013 40.59250594360911, -73.8040091222094 40.592377459798506, -73.80399504512003 40.59226697736732, -73.80415637368085 40.59184670355905, -73.80426876131813 40.59189197264128, -73.80746368121581 40.593178785997104, -73.80863737678979 40.593897240248296, -73.80862978506987 40.59395757268316, -73.80861488528905 40.593974308439215, -73.80874880744162 40.594289621476875, -73.80714782211126 40.59633513106711, -73.80443545537467 40.59483765071519, -73.80403404910797 40.59419731947673)))",Q472,5806,Q472,Q-14,Q-14,Q-14,Q-14,"Amstel Blvd., Jamaica Bay",414,31,100,11692,Q,27.484,False,Vernam Barbadoes Peninsula,No,100000085,PARK,20090423000000.00000,19961025000000.00000,,DPR,False,Vernam Barbadoes Peninsula,N,Vernam Barbadoes Peninsula,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q472/,Yes,31,10,5,{F15AD6D9-4A80-4719-91A7-1C9ED7993038} +"MULTIPOLYGON (((-73.98195273092512 40.685332751685436, -73.9820815537634 40.68514326229427, -73.98232029643808 40.6852360467394, -73.98216571096295 40.68546343412921, -73.98208796674069 40.68543321882246, -73.98201010667069 40.68540296022028, -73.98194254323099 40.68537670236319, -73.98192696768949 40.68537064846543, -73.98195273092512 40.685332751685436)))",B356,5198,B356,B-02,B-02,B-02,B-02,Pacific St. between Nevins St. and 3 Ave.,302,33,84,11217,B,0.155,False,North Pacific Playground,Yes,100004434,PARK,20100106000000.00000,19900420000000.00000,473 PACIFIC STREET,DPR,False,North Pacific Playground,Y,North Pacific Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B356/,No,52,25,8,{4835131F-BEB9-4194-8293-1D02CD44567B} +"MULTIPOLYGON (((-73.74359032932361 40.75154024903239, -73.74344383722163 40.751529822727015, -73.74334276514533 40.751514776076256, -73.74328804561372 40.75149771555177, -73.74325278244346 40.75147855875955, -73.74318470584478 40.751433257246276, -73.74295390770067 40.75127753779474, -73.74274956020507 40.75115226285027, -73.74242461727505 40.750955285896524, -73.74209322559915 40.75072852722667, -73.74157599019432 40.750318850765844, -73.74155502525666 40.75032255705281, -73.74110542752352 40.75001076792635, -73.740838802091 40.7498660183096, -73.7407623866326 40.749814659565665, -73.74064690791545 40.74974133132916, -73.7405180785485 40.749659524315945, -73.74049412297988 40.749644315664916, -73.74028554452987 40.7495218525661, -73.74007696805185 40.749399383687084, -73.73987796770807 40.74928248229436, -73.73987403368976 40.749280170805775, -73.73981308624138 40.74924338238916, -73.73975774454844 40.749209882661134, -73.73970239342793 40.74917638558644, -73.73964705894731 40.74914288672152, -73.73959171743894 40.74910938241073, -73.73953636769767 40.74907587805445, -73.73948088605067 40.74904250844948, -73.73947974499832 40.74904179716721, -73.739429800987 40.749010654416516, -73.7393785686564 40.74897892519839, -73.73935133894773 40.74896206186568, -73.73932750747773 40.748947044158285, -73.73927663174825 40.74891498881616, -73.73922575606768 40.74888293345138, -73.73917488045721 40.748850872661, -73.73915312201264 40.74883716535103, -73.73912399895413 40.74881881723756, -73.7390707327534 40.748783434407414, -73.73901746893152 40.74874806326432, -73.73896419692353 40.74871268037114, -73.73892801775308 40.74868865380841, -73.73892795515937 40.748688612243086, -73.73891091904824 40.74867729834021, -73.73885765305612 40.748641919913304, -73.73880438711711 40.74860654236207, -73.73875698443871 40.748573376229785, -73.73870957946058 40.748540204669496, -73.73866217571724 40.74850703219169, -73.7386147719964 40.74847386599771, -73.73856736715983 40.74844069437838, -73.73851996353338 40.74840752814507, -73.73847255997535 40.748374356489116, -73.73842604837542 40.74833960104051, -73.73837953090369 40.748304845559524, -73.73833301229286 40.748270090957405, -73.7382864949182 40.748235335438515, -73.7382399846965 40.7482005799168, -73.73819345912688 40.74816582524164, -73.738146948981 40.74813107508501, -73.73810043063763 40.748096314084535, -73.73805504707086 40.748060853247765, -73.73800966232587 40.74802540319628, -73.73796427883093 40.747989948626866, -73.7379189024922 40.74795449315509, -73.73787351791336 40.747919037646405, -73.73782813458814 40.74788357671928, -73.73778275010594 40.74784812117446, -73.73773783155016 40.74781102504212, -73.73769292012396 40.747773935211754, -73.73766852708619 40.747753788372215, -73.73764800877254 40.74773683906014, -73.73760309747118 40.74769974289083, -73.73755818619502 40.74766265300734, -73.73751327380965 40.74762555679991, -73.73746836263345 40.747588466881005, -73.73742738800817 40.74755210992872, -73.73738642054964 40.7475157484753, -73.73734544601021 40.747479392394, -73.73730447151549 40.747443036297874, -73.73717782916619 40.74733066446714, -73.73713373158208 40.74729153571528, -73.7371296259037 40.74728777031634, -73.73708928643313 40.74725078073163, -73.73708749037431 40.74724923946068, -73.73704370294982 40.74721165395597, -73.73699899431867 40.7471719834502, -73.7369972520654 40.74717031082618, -73.73695507228294 40.747129831115586, -73.73691114201446 40.747087678744975, -73.73686721299278 40.74704552455903, -73.73682486146244 40.7470024023097, -73.73678079841642 40.74696033333231, -73.73677483677982 40.746954617675975, -73.73673945270521 40.74692069382223, -73.73669787082405 40.74688120414228, -73.73665657746578 40.746841525099015, -73.73661504672873 40.746802002186584, -73.73657351608367 40.74676246845292, -73.73653226085139 40.74672276693848, -73.73648775681146 40.74668032582738, -73.73644324342348 40.746637867567614, -73.73639873951834 40.74659542101858, -73.73635422740654 40.74655296812965, -73.7363083611698 40.74650922529345, -73.73630794242617 40.74650882270707, -73.73630768881692 40.74650857988915, -73.73626536710307 40.74646797352377, -73.73622669501815 40.74643086858101, -73.73618573346442 40.74639156113528, -73.73614592086837 40.74635335222808, -73.73611486890223 40.74632355433578, -73.73611051867785 40.746319380408195, -73.7361030312556 40.74631118931907, -73.73609722735132 40.74630484092936, -73.73607284503015 40.74627656756282, -73.73603956757961 40.74623798997542, -73.73601876127219 40.74621386083733, -73.7360156544112 40.74621025797793, -73.73599173772494 40.746182522365224, -73.73596370406612 40.74614674025292, -73.73593567043385 40.74611095903411, -73.7358530942348 40.746005539621, -73.73581666225559 40.745959029338785, -73.73578518056938 40.745918843880446, -73.73575370600393 40.745878663832535, -73.73572430251487 40.745832474017575, -73.73569490612789 40.745786295017155, -73.73566550267391 40.74574011689311, -73.73566009223687 40.7457316099592, -73.7356534933374 40.745721235339836, -73.73563610639346 40.7456939315735, -73.73560994087367 40.74564757536125, -73.73558377541173 40.745601213739754, -73.73555760288926 40.74555485029463, -73.73553143746082 40.74550849856617, -73.73550522857116 40.745462068387056, -73.7354766596006 40.74540111384789, -73.73544806251626 40.74534009620065, -73.73543890800157 40.74531525169569, -73.73542896161022 40.74528826215543, -73.73542701826281 40.74528298610182, -73.73542507489788 40.74527771455071, -73.735402090871 40.745215333804275, -73.73538950603606 40.74517325824662, -73.73538868338846 40.745170512500515, -73.73538785958557 40.745167759547684, -73.73537362832397 40.745120184388526, -73.73535939706845 40.74507261282933, -73.73534516585829 40.7450250349645, -73.73533159929002 40.74497229329538, -73.7353180244551 40.744919551605186, -73.73531282050844 40.744899331284664, -73.73530444962027 40.744866815316065, -73.73529751072643 40.74483983357475, -73.73529738946442 40.744839361428426, -73.73529087483196 40.74481407272139, -73.7352802299181 40.74476237244615, -73.7352696003913 40.74471067760794, -73.73526627116874 40.74469452920081, -73.73525895551406 40.74465897642948, -73.73524884850507 40.74460987896213, -73.73523874034488 40.74456077698834, -73.73522863928572 40.74451167953215, -73.73521653820247 40.74445072675467, -73.73521049126724 40.74441472754081, -73.73520547034079 40.744384820839855, -73.73520245849465 40.74436687754117, -73.7351944233656 40.744319027535184, -73.73518560745826 40.74426654440594, -73.73518032972025 40.74423512425458, -73.7351767927309 40.744214065780895, -73.73516702385115 40.74415589193126, -73.73516633797165 40.744151807438016, -73.73515916096775 40.744109104019586, -73.73515431186459 40.7440645788171, -73.73514947101653 40.7440200635387, -73.73514754626754 40.744002380283504, -73.73514462901238 40.74397554285402, -73.73513978819511 40.74393102307214, -73.73513483882172 40.7438855178812, -73.73512988701555 40.743840030694344, -73.73512493410014 40.743794526394765, -73.73511998708993 40.74374902751125, -73.73511416832504 40.74369557331011, -73.73511496999676 40.74364194342636, -73.73511502324259 40.743638378426176, -73.73511507649556 40.74363481162494, -73.73511539597386 40.74361342072321, -73.73511577415333 40.74358828383107, -73.73511657462059 40.7435346584463, -73.73511685749655 40.743532598727896, -73.73511923873718 40.74351526936931, -73.73511963255622 40.7435124048493, -73.7351200275915 40.74350953222746, -73.73512390372855 40.74348130652261, -73.7351311644847 40.743428466831595, -73.73514361953781 40.7433761892971, -73.73515606630498 40.743323906338794, -73.73516692486751 40.74329407666878, -73.73518207848618 40.74325244577182, -73.73518228199262 40.74325188522143, -73.7351827332888 40.74325064445451, -73.73519332484366 40.74322155798985, -73.73523654001112 40.743117099015805, -73.73526320060977 40.74306983394765, -73.73531479973154 40.74298912537956, -73.73535373614901 40.742941468863044, -73.73538187893712 40.74290702324478, -73.73540842261895 40.74287454246282, -73.73543747670728 40.742838982290785, -73.73547323805492 40.74280251989599, -73.73548347471738 40.74279209477809, -73.73548980858644 40.74278564365605, -73.73550900644217 40.74276606380979, -73.73554030733257 40.74273415674128, -73.7355712896203 40.742702568614085, -73.73560228612915 40.742670969704996, -73.73563328258359 40.74263937709097, -73.7356663320877 40.742609261516044, -73.73567159495708 40.74260446576663, -73.73567685782572 40.74259967001695, -73.73572043181403 40.74255996742604, -73.73575157046696 40.74253160073667, -73.7357827102988 40.742503228638505, -73.73581392259383 40.74247478915974, -73.73585401380855 40.742440298791365, -73.73600119242855 40.74230978479599, -73.73615348935368 40.7421827132843, -73.736168067518 40.742170174646, -73.73616814830541 40.742170104591175, -73.73620649630888 40.742137119362646, -73.73625247673104 40.74210398590621, -73.7362545997244 40.74210245629713, -73.73640942880652 40.74198540572839, -73.73656868224822 40.741871841043604, -73.73673222587742 40.741761860073595, -73.73677353236103 40.741733600996966, -73.73681454951503 40.74170784286408, -73.73685555833194 40.74168208920011, -73.73689656713486 40.74165633101896, -73.7369438308107 40.74162456629272, -73.73699109327887 40.74159279614121, -73.73702104532263 40.74157474715496, -73.73705100441123 40.74155670898316, -73.73706590027025 40.74154909314983, -73.73707737468317 40.7415432264009, -73.73713521734898 40.741508639230936, -73.73716587141621 40.741494188450694, -73.73739407227218 40.74134944036266, -73.73738060328508 40.74134230731894, -73.7377151313504 40.74114109941876, -73.73805000960749 40.740917760380114, -73.73838077102768 40.74069089992094, -73.73870735267217 40.74046056385954, -73.73902968924793 40.74022679530785, -73.7391496588695 40.740131195072266, -73.73937043819866 40.73994526838491, -73.73958440164606 40.73975478728355, -73.73961547396921 40.73972445898201, -73.73973683464087 40.73960599909697, -73.73990950608653 40.73941445421342, -73.73999501205806 40.73931960282425, -73.73999471205833 40.739319419343154, -73.74031451494983 40.73895946811693, -73.74047592048265 40.73905242793481, -73.74047885947249 40.73905412031495, -73.74074725637519 40.738766969133934, -73.7408346965452 40.73880164201842, -73.74093170974112 40.73883392390164, -73.74102541615845 40.73885498870184, -73.74109241001972 40.738868741557134, -73.74117911758869 40.73888057466444, -73.74124574982618 40.73888533321116, -73.74130147008906 40.73888517743147, -73.74138402598754 40.738884134552606, -73.74147485756616 40.73887909030984, -73.74152339859828 40.738873741266886, -73.74155643083503 40.738870104392895, -73.74162217138948 40.73885904233914, -73.7420583153551 40.73876967983025, -73.74304116818752 40.738568293907534, -73.74328720048553 40.7388666885067, -73.74328859176303 40.73886602703068, -73.7435452748689 40.73917968415322, -73.7435894501381 40.73946893035529, -73.74358928673391 40.73946893629504, -73.74371240649204 40.7402780890559, -73.7437844327668 40.74074968035051, -73.74380357612982 40.74083862408451, -73.74382310900215 40.740905413408846, -73.74385115165973 40.74096462944832, -73.74405387250096 40.740918322014714, -73.74415471853035 40.74089528588896, -73.74514693186342 40.74071459923721, -73.74832825611608 40.74013520049908, -73.74915579469138 40.73998446928144, -73.74956172195353 40.739910530162106, -73.74970924828395 40.73988365724545, -73.74972553038717 40.73988031931615, -73.74974285515361 40.73987676662714, -73.74975585774826 40.73987501006842, -73.74977222559413 40.739872798858, -73.74979152278472 40.73987019148115, -73.7498178816105 40.73986803348788, -73.74983915000814 40.73986764204003, -73.74986175752382 40.73986722558097, -73.7498891364356 40.73986928958127, -73.74991868493834 40.73987307826218, -73.74993891048102 40.73987736898925, -73.74995134364588 40.73988159416663, -73.74996792237863 40.73988722953801, -73.74998874822573 40.73989624113735, -73.75001098785604 40.7399061554122, -73.75002565388876 40.73991417657937, -73.75004104773383 40.73992259554911, -73.75006061359205 40.739932320306835, -73.75008058360716 40.73994224585169, -73.75010577923234 40.7399547680988, -73.75013068172817 40.73996400644157, -73.75015039635424 40.739971320839004, -73.75017215397895 40.73997939249202, -73.75019326303241 40.7399864586644, -73.75021601687357 40.7399940759109, -73.75023375122807 40.740000012719854, -73.75025370514166 40.74000540232617, -73.75028490687218 40.74001382852708, -73.75030775376662 40.74001999883612, -73.75034626620906 40.74002971149131, -73.7503779928738 40.74003644314281, -73.75038963825226 40.740038913270475, -73.75042661150297 40.740046756704125, -73.75046062609394 40.74005397326318, -73.7505076835168 40.74006323791423, -73.7505399307885 40.74006943214332, -73.75056963444065 40.74007513728006, -73.75061840347341 40.74008450554954, -73.75064758539588 40.74009011138067, -73.75069727370922 40.74009965540565, -73.75073847222647 40.74010756912008, -73.75092440457078 40.74014328402598, -73.75096235320554 40.74015057378152, -73.75098320508575 40.740154578416146, -73.75101543114869 40.74016076886391, -73.75103011442327 40.74016358948955, -73.75104817422626 40.74016705857598, -73.75107085398284 40.7401714147431, -73.75110095798902 40.74017899637197, -73.7511153341158 40.74018353990065, -73.75113506714486 40.740189777157745, -73.7511476123148 40.7401944806188, -73.75117203821844 40.74020363846085, -73.75119801256444 40.74021473934324, -73.75122599040735 40.740227670783526, -73.75124939152832 40.74024145592165, -73.75127010151616 40.740253670155056, -73.75129254342383 40.74026974051023, -73.7513121065974 40.740283749679044, -73.75132809209676 40.74029739451722, -73.75134158978388 40.74030891688076, -73.75135261028795 40.74031832309708, -73.75137083577913 40.740333880947816, -73.75182171995803 40.740801641329014, -73.75292197852306 40.74194435880536, -73.7533060979415 40.74234328983544, -73.75115748143146 40.742804986076905, -73.75062516638951 40.74291042364332, -73.75055359004989 40.742921435872006, -73.74996984022538 40.743011244103954, -73.74900750858052 40.743159289451896, -73.74878906511314 40.74319289391744, -73.74860537748614 40.74321863943975, -73.74847749915502 40.74322438825748, -73.74840300354374 40.74322318365322, -73.74758389585516 40.743096669761755, -73.74723243870294 40.74304238341276, -73.7472322978918 40.74304236149144, -73.7464701786969 40.742922661822526, -73.74607462319803 40.74285852412247, -73.74596465429026 40.7428422174056, -73.74590074899326 40.74283906962615, -73.74578853594214 40.74284215118764, -73.74569986524435 40.74285111272913, -73.74560438928681 40.74286743795537, -73.74548900501557 40.74289140316774, -73.74543335286967 40.74290911388553, -73.74535185840276 40.74293504943793, -73.74513690439127 40.74299676593712, -73.74501572172603 40.743028780116504, -73.7449509954026 40.743042744198135, -73.74485913931365 40.74305512898449, -73.74476159515132 40.743055813364066, -73.74471666878776 40.74305210454495, -73.74476256985885 40.74329216445396, -73.74477933320716 40.74337983479594, -73.74482193737208 40.74347736895107, -73.74486646536505 40.74357930724542, -73.74573726742807 40.74557278839267, -73.74609177916746 40.7463843178691, -73.74609360151156 40.746383981493544, -73.74624093237917 40.74672123747669, -73.7445591728206 40.74719931543905, -73.74439054688156 40.74724724920996, -73.74431663631496 40.74727879482583, -73.74428907674123 40.74729343447209, -73.74422141115207 40.74733167837806, -73.74415893453909 40.74737472808632, -73.74410223575654 40.74742217698244, -73.74405184579055 40.74747358050222, -73.74400824131831 40.7475284543384, -73.74397183046777 40.747586282512906, -73.74394295635545 40.74764652098667, -73.74392189114491 40.74770860304897, -73.74390883246922 40.74777194561286, -73.74390390341988 40.74783595191644, -73.74390714895881 40.74790002051999, -73.74391854063968 40.7479635489182, -73.74397859811134 40.74811419548209, -73.74396461944073 40.748143324726385, -73.7439574012371 40.74817384317563, -73.74395715773444 40.74820485079736, -73.7439638948268 40.74823543268634, -73.74398747686973 40.748272732000665, -73.74399561334398 40.74828981384995, -73.74407894938702 40.74846475021789, -73.74438752346018 40.749095895953225, -73.74461719099169 40.74957540191498, -73.74488515156997 40.7501488181122, -73.74489294551243 40.750165485799826, -73.74513528580603 40.75068334980069, -73.74514615599416 40.75070657728523, -73.74514634793746 40.7507065470926, -73.74538627605232 40.75120966743903, -73.74550524924561 40.75146446029963, -73.74549343326866 40.751484161655995, -73.7454814793038 40.751493178160075, -73.7454001536623 40.75150101206764, -73.7453199950751 40.751509592319145, -73.74526191942208 40.7515126021741, -73.74512938140379 40.75151723387405, -73.74509346394282 40.75151791082295, -73.74506650630856 40.75151841848402, -73.74412913491896 40.75153607923335, -73.74410720959483 40.75153542088231, -73.74394952737512 40.75153946226157, -73.74394947408591 40.7515394630436, -73.74378406932559 40.75154370225136, -73.74359032932361 40.75154024903239)), ((-73.74730605537948 40.76401542703602, -73.74710793070636 40.763785327673304, -73.74680869242405 40.76394026288913, -73.74680812274563 40.76394119816535, -73.7467724820388 40.76390034663591, -73.74677499429342 40.76388626731361, -73.7467754805105 40.76387582159005, -73.74677438659273 40.76386231426849, -73.74677009144253 40.76384504749411, -73.74676106209705 40.76382568653806, -73.74675085730888 40.76381114701834, -73.74673590321663 40.76379568484277, -73.74671938795461 40.76378307744521, -73.74670512008787 40.763774654243626, -73.74668891583295 40.763767157907886, -73.74667068063677 40.76376084847608, -73.74665758015148 40.76375751300379, -73.74664594750524 40.7637553117959, -73.74661365314437 40.76375265991714, -73.74659588542575 40.76375329171626, -73.74657673490621 40.76375565304815, -73.74655445560968 40.76376073963501, -73.74653567548748 40.763767226101244, -73.74652226319463 40.763773935093525, -73.74650259981881 40.76378377040108, -73.74648539865944 40.76379237472598, -73.746466577769 40.76380178864253, -73.74644477371743 40.76381269623677, -73.74642504268074 40.763822565601515, -73.74639660899561 40.763836788672855, -73.74639330550184 40.763838429330434, -73.74639092521545 40.76383960285562, -73.74637863922788 40.76384568665649, -73.74637859208036 40.76384562711915, -73.74611363086699 40.763975046252, -73.74609314912527 40.763949737364655, -73.74589023279663 40.76369899289718, -73.74580617431398 40.76359135975164, -73.74580627232255 40.7635960912368, -73.7457750114233 40.76354332723319, -73.74566944255797 40.76336514214242, -73.74563324064785 40.76330404019257, -73.74555367530508 40.763169743726756, -73.74546943033535 40.76302755021422, -73.74538841825036 40.76289081185503, -73.74526277863113 40.762678746318954, -73.7451367373687 40.7624660016663, -73.7450116830056 40.762254921389726, -73.74494834124133 40.762148006119006, -73.74493458152749 40.76203394520255, -73.74491124280145 40.7618404805707, -73.74488823362866 40.7616497524022, -73.7448648549906 40.76145595627396, -73.74484151666614 40.761262492512074, -73.74481644716337 40.76105075359069, -73.74478562783139 40.761015860860816, -73.74446152803084 40.76064891466005, -73.74426699157381 40.76042865626778, -73.74422432336222 40.76038034651916, -73.7442024828326 40.7603556168904, -73.74420165928876 40.76034956904802, -73.74419737681525 40.76031813269438, -73.7441969868556 40.76031852625119, -73.74417956629884 40.76018737443555, -73.74416591619315 40.76008715805156, -73.74389120535295 40.75985388507663, -73.74369634822426 40.759685123256425, -73.74369156545592 40.759680980181656, -73.74369625037133 40.759680391766764, -73.74315270853796 40.75920963439221, -73.74309597003474 40.75916049409077, -73.7430597280243 40.759129104378246, -73.7430268181114 40.75910060101317, -73.74299437877784 40.75904191633952, -73.74298555217672 40.7589990081212, -73.74297266161076 40.7589363453809, -73.74296157054347 40.758882434195044, -73.74294526818758 40.758803190875874, -73.74292699667996 40.75871437255261, -73.74289941280904 40.758580288282005, -73.7426427450541 40.758633665545425, -73.74262070936429 40.75855186092821, -73.74260914227935 40.75852376892833, -73.74259161923123 40.758488712591884, -73.74257325513662 40.758458008332966, -73.74250370770709 40.758360735730854, -73.74176561587672 40.757337800252564, -73.7416984679461 40.75724473789884, -73.74166318962223 40.75719584400131, -73.74125202839699 40.7566259922324, -73.74118204674235 40.756528998781285, -73.74101742474431 40.75661011045652, -73.74073098037928 40.75675124316117, -73.74041573581043 40.75690656441566, -73.7402823041989 40.75697230789442, -73.74026699817354 40.75697984936737, -73.73996298540166 40.757129634963675, -73.73965511386882 40.757281321016315, -73.7397214071994 40.757231416928036, -73.73976572859895 40.75719805234492, -73.74009167052004 40.75695268899366, -73.74012969781027 40.75692406295554, -73.74040142159801 40.756762634417676, -73.74046025846485 40.756730224398034, -73.7404646072636 40.756729233730375, -73.74047063564211 40.756724507933036, -73.74094012504969 40.75646589031672, -73.74107100778423 40.75640165590246, -73.74108147819116 40.75634176676713, -73.74111746157539 40.7563226758013, -73.74130006701303 40.756234677653566, -73.74150296548888 40.75614404754211, -73.74204281528665 40.75594992557163, -73.74214599588011 40.7559141659325, -73.74217879979682 40.755902852419304, -73.74244772314923 40.75581648642666, -73.74246257151938 40.75581569205591, -73.74255387491127 40.755794103824506, -73.74264648979099 40.755776032237314, -73.74274018270002 40.75576152449673, -73.74273736738716 40.75576010531057, -73.74277119057187 40.755754966895054, -73.74280221020136 40.755753950143806, -73.74281918684812 40.75575339371083, -73.7428855328791 40.75574742465657, -73.74295413753912 40.75574289961763, -73.74307810613136 40.75574245306734, -73.74308025787478 40.755742445259315, -73.74308101801425 40.75574247757198, -73.74360108393381 40.75576425346276, -73.74361711203628 40.75576492399584, -73.7436128647972 40.755765093744174, -73.74359976894785 40.75576561660813, -73.74370038143739 40.75577253489273, -73.74371799312502 40.75577374563853, -73.74379029988104 40.7557833104988, -73.7439092458537 40.75579776341232, -73.74395232529307 40.755804812906014, -73.74396474106533 40.755806844135115, -73.74399917353507 40.755810774839674, -73.74401779659131 40.755812900903365, -73.74402635267575 40.75581378800693, -73.744026292905 40.755813933756606, -73.7441009566353 40.75582341991169, -73.74411155617388 40.75582567041646, -73.74414951834322 40.75583372874564, -73.74415219721821 40.75583429751362, -73.74419755425313 40.755837259160394, -73.74427774071506 40.75585150044559, -73.74441024372278 40.75587461431503, -73.74451120002259 40.75589662428449, -73.74466141650824 40.75592812666926, -73.74481841039342 40.755963959110595, -73.74494837853045 40.75600157574547, -73.74506759057455 40.756036715443344, -73.7452084951274 40.75607838756484, -73.74532598955733 40.75611682626216, -73.74539893323957 40.756143016715626, -73.74559616717261 40.75621498349753, -73.74578914116198 40.75629334585946, -73.74597749461263 40.756377958945876, -73.74616088000138 40.75646866442433, -73.74633895456974 40.756565294969356, -73.74647183407959 40.75664250445971, -73.74660004298558 40.75672415383607, -73.74672332494335 40.75681007865754, -73.74684143310196 40.75690010820127, -73.746954131305 40.75699406096187, -73.74706119525094 40.75709175095781, -73.74717316419664 40.75721357714816, -73.74730035641817 40.757360518492334, -73.74740587790413 40.75746270912139, -73.74752331041542 40.75757251074244, -73.7476481268967 40.75769861771859, -73.74773435625109 40.75777689149018, -73.74780319531189 40.75784791675258, -73.7478958561378 40.7579341631762, -73.74805355233914 40.75805809938744, -73.7483446477346 40.75828658325644, -73.74861740288452 40.758499484480694, -73.74887586991511 40.758683940157006, -73.74913886660138 40.75885970079412, -73.74926393470038 40.75893960774496, -73.74947500758408 40.75904742467874, -73.74987128852264 40.759231194362144, -73.74994825165675 40.75927232467067, -73.75018709169889 40.759394762678625, -73.75043115210916 40.7595110952439, -73.7506801834519 40.75962119212055, -73.75093388057046 40.75972493735196, -73.75117695681787 40.75981848784044, -73.75122883655851 40.75983693153148, -73.75142375993804 40.75990621146172, -73.75156187708102 40.759951346609974, -73.75156256549722 40.75995157142061, -73.75156326574285 40.75995179985883, -73.75167407353416 40.75998800686884, -73.75192762662736 40.76006379961399, -73.75199111230292 40.76008269389196, -73.75205459680677 40.76010159443585, -73.752118074261 40.760120489526386, -73.75218155175466 40.76013938368142, -73.75224370669882 40.76015788773844, -73.75230851394902 40.76017717370264, -73.75235729298522 40.76019169750818, -73.75237109719481 40.76019580738423, -73.75243547629074 40.760214962683236, -73.75249895396446 40.76023385666306, -73.75255828821786 40.76025169171573, -73.75261761540067 40.76026952582198, -73.7526423986509 40.760276976713264, -73.75346736839269 40.76051246119405, -73.75379166147546 40.76061574511296, -73.75411465726792 40.76072135586136, -73.75425621789209 40.76077976410289, -73.75439341238891 40.76084391350582, -73.75452583999576 40.76091361592594, -73.75465311066624 40.760988666133514, -73.7547748521624 40.761068845430074, -73.7548907077024 40.76115391714078, -73.75488688773572 40.761154716768985, -73.75480964502015 40.76117106771494, -73.75447005307551 40.761242037500985, -73.75450642873365 40.76137196017412, -73.75450787308579 40.76137691784707, -73.75450788244402 40.76137694938478, -73.75450789063125 40.76137697731795, -73.75483300778109 40.762492506587456, -73.75483303657707 40.76249272727317, -73.75449454213795 40.76256775985736, -73.75429815771483 40.76261129137938, -73.75342373465509 40.7628051143332, -73.75312623936664 40.76287105446841, -73.75281498807878 40.76294510401281, -73.75238251808112 40.76304928888465, -73.75239997464676 40.76304850243855, -73.75031982633676 40.763543015990045, -73.75032805087952 40.76354037821646, -73.75001137695433 40.76361293791153, -73.74985511521315 40.76364877033406, -73.74925269531583 40.76296586991985, -73.74905036163715 40.76307237819097, -73.74905022754294 40.76307244813853, -73.74898335007846 40.763107652783276, -73.74893701310475 40.76313204382865, -73.74883713103779 40.76318462109898, -73.7487025342187 40.763255472216045, -73.74860630683227 40.76330612476785, -73.74854029756726 40.76334087179066, -73.74844702288652 40.76338295871905, -73.74843887614233 40.76338724715945, -73.74843569101206 40.76338892595536, -73.74842366848686 40.763395252786054, -73.74840811075065 40.76340344225029, -73.74839704707739 40.76340926508669, -73.7483897196314 40.76341425050499, -73.74838442026333 40.76341785627154, -73.74837296541615 40.76342564856263, -73.74836287963359 40.76343251091672, -73.7483586577218 40.763436195578635, -73.74834670601618 40.76344226861272, -73.74832251305827 40.76345456262854, -73.74830843253748 40.7634617170207, -73.74830370382526 40.763464120051104, -73.74830149788123 40.763465241767115, -73.74830141482093 40.763465283009026, -73.74825964432061 40.76348650856734, -73.74844132800187 40.76369259763447, -73.7484082123276 40.76370920813018, -73.74823781252343 40.763794681301164, -73.7481982652641 40.76374875271778, -73.7478969370653 40.763899898651175, -73.74778818447687 40.76377359672372, -73.74760738662282 40.76386428355372, -73.74730605537948 40.76401542703602), (-73.74830273484486 40.76346322823234, -73.74830290044466 40.76346297014834, -73.7483026203621 40.7634631226228, -73.74830273484486 40.76346322823234)), ((-73.74906892477541 40.7673021058431, -73.74896360488027 40.76725977048893, -73.74851581508793 40.76752601230916, -73.74835182143754 40.767358272425746, -73.74853618402871 40.767186167455684, -73.74840772019249 40.767127793466855, -73.74824644723051 40.7670994777258, -73.74787621934891 40.76703447187212, -73.74779346193927 40.766994472104585, -73.74772131388053 40.76707847827654, -73.74762761835548 40.76703319187318, -73.74764486487595 40.76701311051208, -73.7475477634428 40.76696617855987, -73.74753051690861 40.766986259006075, -73.7474531567068 40.76694886878414, -73.74753456766317 40.76685407698612, -73.74740195802767 40.766725311819705, -73.7470088985134 40.76718297249791, -73.74696421836066 40.76716501101249, -73.74646998980882 40.76689448186709, -73.7466686555175 40.76666316784874, -73.74674115897548 40.76657874977713, -73.74670492615992 40.76634007163998, -73.74603258397805 40.76578895588909, -73.74593824160702 40.765596699312184, -73.74593624485634 40.765592630017196, -73.74593814358607 40.765591967828534, -73.74580602946564 40.76532273528155, -73.74530348322462 40.765497980837445, -73.74516043057925 40.765272693351676, -73.74515795357112 40.7652687913755, -73.74655628831117 40.76478116225822, -73.7467968485481 40.76470360366814, -73.74694038642832 40.764660175973205, -73.7470077867125 40.764640498419304, -73.74721221396099 40.76458302018011, -73.74738503612453 40.76453362638192, -73.74758460955626 40.76448136158594, -73.74781586045023 40.76442671820812, -73.74792938888963 40.764401729025224, -73.74806725093562 40.76437242998406, -73.74878745768345 40.764222296791516, -73.74890194789984 40.76419835423774, -73.74890392005034 40.76420050354562, -73.75236458758037 40.763466778904075, -73.75426728115019 40.76302148338508, -73.75537100390798 40.76275840222966, -73.75546441711234 40.76300682461659, -73.75574005841182 40.76373984541222, -73.75596195824588 40.76432993653487, -73.75561563073487 40.76439752212729, -73.75503335230347 40.764529696615, -73.75469510090618 40.76462956810434, -73.75464486415856 40.7646374270192, -73.75409515723895 40.7648098620865, -73.75369567018083 40.76495730881665, -73.7532114699791 40.76512902331332, -73.75299159168794 40.76522344219312, -73.75268978658018 40.76539285018376, -73.75257708589092 40.76545138163234, -73.75242966970337 40.76554203512391, -73.75235713702322 40.76558240838221, -73.75220543217822 40.76566685147328, -73.75165688009622 40.76597218689949, -73.75162425548255 40.76594818198293, -73.7513644555851 40.7661048277045, -73.75109072845288 40.76627569418231, -73.75091003435921 40.766395348511416, -73.75069285292902 40.76655549146816, -73.75061534015325 40.76660943430519, -73.74929469042512 40.76763396872672, -73.7492486756306 40.76759400403093, -73.74921100140078 40.767544653473436, -73.74917855196733 40.76748925836565, -73.74909818946662 40.767352065789915, -73.74906892477541 40.7673021058431)), ((-73.75469291116028 40.76966874343545, -73.75463115422866 40.76960166554951, -73.75345164747714 40.769734370460895, -73.7534183270363 40.76969608614421, -73.75324339569256 40.7694939620588, -73.7531091931691 40.76936746310979, -73.75262625124394 40.76883169265436, -73.75210124676998 40.76824924548488, -73.75164190251297 40.767739633558804, -73.75146161423473 40.76753551312243, -73.75233938671157 40.76708733154516, -73.75191556770731 40.7666209744965, -73.75191822237902 40.76661927195018, -73.75191546926021 40.766616243018674, -73.75220548779191 40.76643564542971, -73.75224930092683 40.7664099248067, -73.75231217374458 40.766373603847576, -73.75236691373308 40.76634287823672, -73.75249547376494 40.76627230886611, -73.75254146761549 40.766247740063015, -73.75260060258653 40.7662167248122, -73.75266557007072 40.76618363557649, -73.7529125990097 40.76606349762994, -73.75313125672041 40.76595405762791, -73.7536625964039 40.76595065096182, -73.75405901364964 40.76594817139395, -73.75377353261692 40.76567096626394, -73.75387336061826 40.76563617414324, -73.7544390960932 40.76543290400707, -73.75444381769796 40.76543850982404, -73.75444077767436 40.765439394847014, -73.75450005246441 40.765505284329315, -73.75460803710624 40.76562531969277, -73.75466476437734 40.765688377869395, -73.75478061493943 40.76581715573308, -73.75502427472904 40.766088003704205, -73.75512827192857 40.76620360499393, -73.75561026973485 40.766739373972605, -73.75571391745092 40.76685458315671, -73.75631061804822 40.76751783483913, -73.75673461187021 40.767989106225805, -73.75696187295276 40.76822022370458, -73.75716154222768 40.76842328040693, -73.75754375917344 40.76881197873614, -73.75781349826906 40.76908628663767, -73.75802033708148 40.769296625776, -73.75833810481608 40.76953804591455, -73.75861542909614 40.76974873799606, -73.75895407233263 40.7700013565208, -73.7562895827856 40.77139829784525, -73.75469291116028 40.76966874343545)), ((-73.75400198750735 40.76042287063458, -73.75396747593076 40.76041326325506, -73.75390623865513 40.76039621190872, -73.75384500142744 40.76037915602724, -73.75378358509715 40.76036250315802, -73.75376298460678 40.76035729651436, -73.75375875352778 40.76035622667201, -73.75374251900156 40.76035212437466, -73.75374226816633 40.760352060802894, -73.75371569273362 40.76034562389145, -73.75364590916656 40.760328723430845, -73.75362370695774 40.760323352146074, -73.75357955222158 40.760312667730176, -73.75351263452153 40.76029645860546, -73.75344342491466 40.760279699729196, -73.7533753559708 40.76026321880872, -73.75330728587635 40.76024673784542, -73.75323921581558 40.76023025684184, -73.75317277788987 40.76020990080605, -73.75310634119245 40.760189543833924, -73.75303990453229 40.7601691877239, -73.75297346791606 40.760148830675, -73.75290702425146 40.76012846907003, -73.7528406019278 40.760108111974866, -73.75277415834444 40.760087750293124, -73.75270772189066 40.76006739309075, -73.75264127836847 40.76004703673527, -73.75257483372606 40.76002667403531, -73.75250840449641 40.760006317633554, -73.752442544299 40.75998613621426, -73.75237666876599 40.75996594932114, -73.75231080156284 40.759945762408144, -73.75224493319527 40.759925580857846, -73.75217911691203 40.75990541649144, -73.75212757281118 40.75988962144574, -73.75184972033547 40.75980447454732, -73.75140977755382 40.75964937432849, -73.75136152715024 40.75963235505111, -73.75108023313291 40.759533185150126, -73.75105519020386 40.75952435648253, -73.75065903925113 40.75935672828221, -73.75030400911331 40.75918697349747, -73.75025717218773 40.75916457808189, -73.74987235357764 40.758960820812995, -73.74942774789417 40.758693947051604, -73.7490850052858 40.758464752824544, -73.74898005278314 40.75838645548985, -73.74898002090005 40.75838643110664, -73.74888174801926 40.75831311634169, -73.74888168424637 40.75831306937621, -73.74869713151605 40.758175378988206, -73.74855492360265 40.75805967029842, -73.74841746567812 40.75794065432983, -73.74839305333647 40.757919700207026, -73.7483759986895 40.75790409316169, -73.74834513134364 40.75787584611743, -73.74811463436829 40.757664910587685, -73.74785276033508 40.75740852027227, -73.74729424306489 40.75682900858412, -73.74715126740794 40.756675172500415, -73.74677327668016 40.75626844863529, -73.74661943559947 40.75609568900716, -73.74652795485925 40.755992961205166, -73.74602645603467 40.7554096118121, -73.74569061005982 40.75500555445745, -73.74563828133606 40.754896745668425, -73.74554763120261 40.75475100607776, -73.74546361573357 40.75460298567453, -73.74538633369667 40.75445285939028, -73.74531587556389 40.75430080303779, -73.74525232468218 40.754146996915765, -73.74519575610333 40.753991622203955, -73.74501504859754 40.753626045106714, -73.74500850167435 40.75361202589346, -73.74524534355457 40.753461242757865, -73.74546805957752 40.753319451925805, -73.74569858545301 40.75317268728136, -73.74593688664798 40.75302097211468, -73.74618125016455 40.75286539492071, -73.74640481805507 40.752723057541935, -73.7465625415726 40.752622639471895, -73.74669925777164 40.752535596184224, -73.74674100454693 40.75250959211618, -73.74674461529737 40.75250734247784, -73.74676813453074 40.752494063944454, -73.74678028113841 40.752487327821406, -73.74678960824788 40.75248215598766, -73.74681131135533 40.752472826689484, -73.74683981486076 40.75246448218193, -73.74686807842434 40.752458824260124, -73.74688719754413 40.75245701302532, -73.74690442725598 40.75245538133979, -73.74692296244535 40.75245703577725, -73.74693114558814 40.75245842523175, -73.7469324307505 40.75245864327695, -73.74694137954889 40.752460162285196, -73.74695958009266 40.75246325229405, -73.74698242073364 40.75247117742175, -73.74700734491145 40.752483932050424, -73.74701790920008 40.752491920258294, -73.74703129787709 40.75250204437268, -73.7470496322727 40.75252290261215, -73.74705601895624 40.7525346115524, -73.74706220219366 40.75254594903571, -73.74707030080451 40.75256461546778, -73.74716974843513 40.75280862418989, -73.74725060913553 40.75300702356063, -73.74766203619882 40.75400386449763, -73.74768793055216 40.754066426461584, -73.74768153921534 40.75406775782269, -73.74769067186416 40.75409114333829, -73.74729907495055 40.75417063737211, -73.74744056866334 40.754473515158814, -73.7476868396123 40.75506850250497, -73.74769127253612 40.75507994777888, -73.74769742454752 40.75509461793874, -73.7477099814163 40.75512442437424, -73.74775185650952 40.75522559461572, -73.74777469571033 40.755280773788385, -73.74779520562126 40.75533032237651, -73.74783855250429 40.75543504921373, -73.74787662828177 40.75552703580166, -73.74788754636614 40.7555399468814, -73.74794689149672 40.75561012373927, -73.74804645857004 40.75572786247778, -73.74814700334906 40.75584675411544, -73.74820651407983 40.75591712570721, -73.7482243220529 40.75593818340935, -73.748453403976 40.75620906797392, -73.74939067626649 40.75731734624846, -73.74956380864646 40.75752206169283, -73.74969272912898 40.75767453865945, -73.74970663671334 40.75769098064772, -73.74984600183932 40.757855729749195, -73.74994362317604 40.7579711572676, -73.75003929357173 40.75808427696649, -73.75012775454908 40.758188872040485, -73.75045421268102 40.75806421898736, -73.75047373183337 40.75810618534551, -73.7509546815425 40.75914017867509, -73.75096758174574 40.75914494954048, -73.75096711746848 40.759144644165, -73.7511564216702 40.759212621983714, -73.75117731974905 40.75922012603471, -73.75136527493157 40.75928761882282, -73.75164154686959 40.759386824032234, -73.75197156741075 40.75951610872461, -73.75197119418488 40.75951615654851, -73.75198009244177 40.759519448153526, -73.75205495049589 40.759548774057066, -73.75209547466024 40.75956136933019, -73.75216148496754 40.759573213466695, -73.75218850525344 40.75957550665552, -73.75221560658724 40.7595763880153, -73.75228325926334 40.75957238126498, -73.75233609810664 40.75956287113997, -73.75238669506493 40.75954795312216, -73.75242264597702 40.75953336561162, -73.75245644222963 40.759516028710635, -73.75249748076575 40.75948901248702, -73.75251607421913 40.75947395541049, -73.75254674629547 40.759436216158214, -73.75257579172089 40.75939385739824, -73.75311555744207 40.758606668975375, -73.75311895362182 40.75860227276753, -73.75312141567335 40.75859908574154, -73.75312425375758 40.75859541144575, -73.75312635167504 40.758592696406204, -73.75312889583648 40.758589402395465, -73.75313186124235 40.75858556447986, -73.75313548113742 40.75858087788669, -73.75313677344344 40.75857920571034, -73.75314138916517 40.75857391700981, -73.7531438724472 40.758571072222004, -73.75314600607703 40.75856862651067, -73.7531498820419 40.758564186304575, -73.75315203945307 40.758561714529286, -73.7531556229647 40.758558855889646, -73.75315815291731 40.7585568387688, -73.75316016144131 40.75855523656547, -73.75316342900342 40.758552630291476, -73.7531676360918 40.7585492750064, -73.75317044042352 40.7585470378486, -73.7531747625768 40.75854395026084, -73.75317640882166 40.75854295872626, -73.7531842127535 40.75853825948393, -73.75318932239976 40.7585351825879, -73.75319195377874 40.758533597927624, -73.75319531036047 40.75853157627339, -73.75320145736399 40.75852787484541, -73.75320631538338 40.7585249495955, -73.75321080901968 40.758522244189315, -73.75321401011632 40.758520315854284, -73.7532145321412 40.75852005942721, -73.75321541660068 40.75851946968791, -73.75321874038197 40.7585179900688, -73.75324370430279 40.758506882642706, -73.75327264798732 40.758497835993694, -73.75329769065635 40.75849168152092, -73.75334053767888 40.75848419729381, -73.75337990255892 40.75848258051313, -73.7534070800316 40.7584842118802, -73.75343506486166 40.7584872065376, -73.75346069399367 40.75849281662631, -73.75348520566689 40.758500217230285, -73.7535249400811 40.758515872041855, -73.75357177335773 40.75853110347785, -73.75360137864854 40.75854040241859, -73.75363347274978 40.758550481111506, -73.753674403029 40.758563336046635, -73.75371296286961 40.75857318990787, -73.7538050679069 40.758595550998, -73.75389302680574 40.75861248930022, -73.75394290036952 40.75862063197427, -73.7540005271002 40.75862819144463, -73.75404487403263 40.758634007966016, -73.75409969417528 40.758638976034916, -73.75416861395624 40.75864303763804, -73.75424456974015 40.75864477468926, -73.75430826777442 40.75864218742178, -73.75439190545258 40.758637937069835, -73.75443553883728 40.75863493864393, -73.75452044529517 40.75863056573262, -73.75461285088328 40.7586264086458, -73.75463657916164 40.7586253389548, -73.75472345331977 40.758621428443696, -73.7547759911613 40.75861907019821, -73.75481218938592 40.75861744798826, -73.75482852898585 40.75861671553082, -73.75484300780519 40.75861606556, -73.75485024839564 40.758615741476866, -73.7548773961527 40.75861453042919, -73.75490278616525 40.758613400283146, -73.75492108957332 40.75861258554201, -73.75492812524416 40.75861227272469, -73.75494984462121 40.75861130675648, -73.75497146687235 40.758610345080115, -73.75502688166812 40.758607878474976, -73.75506929346571 40.75860438913583, -73.75509003380401 40.75860268354324, -73.75512546769319 40.7585973234007, -73.75515070058968 40.758593506649575, -73.75517488531217 40.75858875023616, -73.7551916215578 40.75858545932546, -73.75522335322941 40.758578541510325, -73.75522869803171 40.75857719039774, -73.75524089422396 40.758574109557294, -73.75524743742673 40.75857245571771, -73.75525788283834 40.75856981690738, -73.755283576707 40.758562369356284, -73.75528780366518 40.7585609906521, -73.75529937356102 40.75855721508363, -73.75531099088181 40.758553424306086, -73.75532574314506 40.758548610904725, -73.75533417927741 40.75854585795787, -73.7553732677276 40.75853179668441, -73.75537937102882 40.758529320639575, -73.75539363894154 40.758523533651996, -73.75542595553428 40.75850921214274, -73.75544755404782 40.75849857706583, -73.75545381233667 40.75849549530395, -73.75547360038813 40.75848575148416, -73.75549959648467 40.758472092819744, -73.75550433666903 40.75846930049825, -73.75552225654415 40.75845874765063, -73.75552544435564 40.75845687055228, -73.75553933139304 40.75844869278915, -73.75556346696466 40.75843407292169, -73.75556427168397 40.75843358475265, -73.75558164311659 40.75842306224983, -73.7556045180067 40.758408608994515, -73.75562692520897 40.758394450109314, -73.75562991884713 40.75839255908857, -73.75564401696528 40.75838365144826, -73.75566113223098 40.75837386770744, -73.75567870794802 40.75836382109171, -73.75569442583803 40.75835725009773, -73.75569682527252 40.7583562466169, -73.75571474095695 40.758348757259924, -73.755743615864 40.758340593243545, -73.75575743938968 40.758337772443774, -73.75576931927743 40.75833534824794, -73.7557739413396 40.758334405309135, -73.7557822563129 40.758332708368954, -73.75579422862897 40.758331560386836, -73.75580284120807 40.758330734867656, -73.75580918632018 40.75833012696707, -73.75581659408583 40.75832941685956, -73.75582626000659 40.758329413934504, -73.75583103138274 40.75832941324166, -73.75583459244719 40.75832941268486, -73.75584368044815 40.75832941033446, -73.75584818536848 40.75832940907616, -73.75585876790073 40.75832940719053, -73.75587501194175 40.75833113727276, -73.75588279421038 40.75833196692344, -73.75589584200634 40.758333356140945, -73.75590054522344 40.75833385778442, -73.75590567489124 40.758334973577554, -73.75591338773427 40.75833665135797, -73.75591915166149 40.758337904471155, -73.75592968552638 40.758340196070755, -73.75594107729592 40.75834267409114, -73.75595208791214 40.75834639670597, -73.75596407433726 40.758350448271486, -73.75597962569866 40.758355705963865, -73.7559878443684 40.758359607265405, -73.75599733509064 40.758364111899795, -73.75599833996384 40.75836458859612, -73.75600870787966 40.7583695102219, -73.75601541451717 40.75837269331532, -73.75602663980958 40.758379239471445, -73.75602920772114 40.758380736151715, -73.75603574507615 40.75838454834078, -73.75604181919556 40.75838808939595, -73.75605225509645 40.758394174618594, -73.75605794991594 40.75839910165258, -73.75606342752364 40.75840384002011, -73.75606909165651 40.758408739072784, -73.75606941511865 40.758409018915316, -73.75607575922693 40.75841450743948, -73.75608365689914 40.75842134010965, -73.75608732635472 40.75842569823499, -73.75609549420106 40.758435397794486, -73.75610085099699 40.75844175952099, -73.75610928528266 40.758454699672676, -73.75611358132639 40.758461291483904, -73.75611584768849 40.75846493433573, -73.75612059116128 40.75847255727553, -73.75612234656288 40.75847537868236, -73.75612622940722 40.75848161842015, -73.75612856951464 40.75848711467401, -73.75613424659466 40.75850044881252, -73.75613570608441 40.758503875634865, -73.75613945400835 40.75851268063482, -73.75614332758333 40.7585217767648, -73.75614424342704 40.75852392911742, -73.75615279487702 40.7585440123459, -73.75616388839296 40.75857006862315, -73.75617418700836 40.75859425736348, -73.7561752778079 40.7585968198174, -73.75618087388867 40.758609963774674, -73.75618238387102 40.75861350957031, -73.75619384375287 40.758640425704705, -73.75622449427998 40.75871241687028, -73.75622957961221 40.75872436206806, -73.75631585683428 40.75892700228392, -73.75635669718557 40.75902292255919, -73.75638562436261 40.759090864949165, -73.7563918264152 40.75910542937757, -73.75639342800203 40.75910919148583, -73.75651201011839 40.759385578532296, -73.7565120472016 40.75938320937356, -73.75655634269253 40.759490459863365, -73.7565557724048 40.75949031367641, -73.75656204075322 40.75950425688407, -73.75656202191402 40.75950390294453, -73.75657146772924 40.759526259110125, -73.75657727699287 40.75953976640132, -73.75658168200206 40.75954995145177, -73.75658668946544 40.75956152725917, -73.75659074805307 40.759570908323965, -73.7565974888694 40.75958649235321, -73.75660146407118 40.75959568323418, -73.75660596079685 40.75960540201415, -73.75660967157503 40.75961241490733, -73.75661354112835 40.75961972980612, -73.75661921020969 40.7596304443229, -73.75662977328273 40.759650410193366, -73.75663524894625 40.7596586370971, -73.75664345833036 40.75967096888871, -73.7566513673665 40.759682851592174, -73.7566625472076 40.759699647172496, -73.75667589423792 40.75971969906422, -73.75670183568691 40.759751541792355, -73.75671075174036 40.759762354113086, -73.75673940024251 40.75979296885322, -73.75673936675662 40.75979240956696, -73.75674204165091 40.75979576240409, -73.75674619191908 40.75980015484142, -73.75675151012408 40.75980578073935, -73.75675988690959 40.759813468955166, -73.75676824598553 40.75982114272487, -73.7567750741851 40.759827409369606, -73.75677743720196 40.75982957827973, -73.75678691759816 40.759838280094264, -73.75679495799791 40.75984565962352, -73.75679767392681 40.75984783017875, -73.75680449327785 40.75985327824111, -73.7568089521282 40.75985684105903, -73.75681861966562 40.7598645653141, -73.75682580862006 40.75987030952205, -73.7568334935317 40.759876449199, -73.75684191528629 40.75988317846248, -73.75685042760803 40.75988910556378, -73.75685767595739 40.75989415290176, -73.75686604652378 40.759899982447806, -73.7568726439893 40.759904576356064, -73.75688158866386 40.759910805137174, -73.75688756123675 40.75991496278037, -73.75689697055148 40.75992108267883, -73.75692181279085 40.75993615377401, -73.75692841596253 40.75994015965926, -73.75693771098022 40.75994579844185, -73.75694467574417 40.75995002391256, -73.75695196664991 40.75995444728216, -73.75696029744549 40.75995917181389, -73.75697278315153 40.759965400854206, -73.75698113375117 40.759969567111135, -73.75699254253561 40.759975258975686, -73.75701920889371 40.759988956120004, -73.75702491812548 40.75999193713698, -73.757030757382 40.75999498596597, -73.75703082338951 40.75999507165345, -73.7570694227358 40.760015562172136, -73.75709472437799 40.76002743379254, -73.75710996030192 40.760034886103746, -73.757138915429 40.76004904730487, -73.75716515391754 40.76006187992587, -73.75719241854884 40.760075214485624, -73.75722536120658 40.76009132646521, -73.75725992228807 40.76010822979005, -73.75726930763284 40.76011281964402, -73.75727984087716 40.76011797113126, -73.75731231306696 40.76013385336551, -73.75733167486271 40.76014332247181, -73.75734692502803 40.76015078108494, -73.7573670883525 40.76016064269403, -73.75740062337006 40.76017704403331, -73.75744049491824 40.76019654384532, -73.75747063473455 40.760211284682484, -73.75749403373798 40.76022272897023, -73.75776384104732 40.76035468614196, -73.75778031724141 40.76036274431215, -73.75778427123741 40.76036544874669, -73.75779244740161 40.760371040081864, -73.75779822304695 40.76037499104698, -73.75780936771527 40.76038365755334, -73.75781708525672 40.760389658554224, -73.75782316632566 40.76039494741464, -73.75783008512774 40.76040109351834, -73.75783524586592 40.760406094081844, -73.7578352815189 40.7604060599375, -73.75784079065953 40.760411325982474, -73.75784251669515 40.76041313783082, -73.75784361304297 40.76041420003332, -73.75784575050204 40.76041653324006, -73.75784772311731 40.76041860315193, -73.75785237698388 40.76042360264922, -73.757854078588 40.76042561976185, -73.75785593294214 40.7604276434991, -73.75785574953174 40.76042760078971, -73.75786411840106 40.76043752306792, -73.75787378362766 40.760450500792416, -73.75787897207739 40.76045797961029, -73.75788236446415 40.760463362773024, -73.75788688759565 40.760470771753624, -73.75789202177762 40.760479822743875, -73.75789739825893 40.760490635636785, -73.7579016723465 40.760500094550196, -73.75790498841526 40.760507903520505, -73.7579103338898 40.760523012671406, -73.75634442869276 40.760850304110754, -73.7561214335605 40.76084137738835, -73.75589893833701 40.76082693658217, -73.7556771787018 40.760806995702296, -73.75545639029743 40.760781578666304, -73.75523680758069 40.76075070939099, -73.75501866259914 40.76071442259569, -73.75492133980462 40.76069140482512, -73.7549212889232 40.76069139301027, -73.75492125579287 40.76069138483524, -73.75491233275378 40.76068927487252, -73.75490336475191 40.76068715400734, -73.75487820015843 40.760681202138294, -73.75476795499564 40.760648370019574, -73.7546814245169 40.760622560930955, -73.7544595710599 40.760556389920154, -73.75415118203114 40.760464415284915, -73.75408995176713 40.76044736405153, -73.75405573594738 40.760437835674054, -73.75404099241193 40.76043373299996, -73.75403485104664 40.76043202423101, -73.75402870613874 40.76043031275267, -73.75400198750735 40.76042287063458)), ((-73.75690438125905 40.75960518204412, -73.75641418886012 40.75848888692341, -73.75780463395512 40.75838099664269, -73.75874714873093 40.75765244235529, -73.7587402900614 40.757461039339304, -73.7593119698104 40.75742762145877, -73.75936382968047 40.75742315071572, -73.75941300433767 40.75741718760193, -73.75945448167498 40.757410825678456, -73.7594978869207 40.75740283154131, -73.75955170615875 40.7573909590233, -73.75960520754299 40.75737691649214, -73.7596670632967 40.7573577395574, -73.75972516477103 40.75733664928324, -73.75976276055223 40.757321293879905, -73.75980282771869 40.75730334024763, -73.75984552565578 40.757282264620244, -73.75989882289431 40.7572528660579, -73.75996550704826 40.75721055686101, -73.76003264777883 40.75716048439298, -73.760079503392 40.75712001408473, -73.76012068346786 40.75707971744373, -73.76019640477601 40.75698955140032, -73.76026056656697 40.75688557266472, -73.76030375458289 40.756782492184385, -73.76032768405211 40.75668711959444, -73.76033745336245 40.75657306800861, -73.76032631061851 40.756454355105205, -73.76029800128954 40.75634983271259, -73.76026357241965 40.75627118719592, -73.76021707264489 40.7561922788082, -73.76015821513806 40.756114503626314, -73.7601436184094 40.756097747188456, -73.76013707093402 40.756090494367, -73.7599904147586 40.75593807949639, -73.75990653653591 40.75584977913329, -73.75960237326916 40.75552242854691, -73.759497750193 40.755411109907044, -73.75938693087829 40.75528756462803, -73.75930342069745 40.75519027570507, -73.75926303450363 40.755141831292406, -73.75919642955026 40.755059821428844, -73.75913162763801 40.75497733802598, -73.75905453183914 40.75487546162978, -73.75867212310274 40.7543821845737, -73.75866009357306 40.75436762966135, -73.75864673624417 40.75435087832613, -73.75863578788599 40.75433665076015, -73.75862141122386 40.75431721917284, -73.75860407183805 40.75429253140854, -73.75857933447087 40.754254554636724, -73.75855562216547 40.75421442058765, -73.75853643817572 40.754178541924965, -73.75851806977533 40.75414046862751, -73.75849449906838 40.754084163523835, -73.75846965897506 40.75400989150171, -73.75845309931253 40.75395407025383, -73.75843909702519 40.75391209608809, -73.75841669112579 40.75385203018227, -73.75838704510663 40.75378219837523, -73.75837583118481 40.75375797637815, -73.75835913071377 40.75372370940039, -73.75833603081905 40.75367936760839, -73.75831348386636 40.75363896939961, -73.75830405960353 40.75362281790892, -73.75829349209705 40.7536051781787, -73.75824696386317 40.753532656206666, -73.75850632389184 40.753432628700786, -73.75850865951772 40.75343152687182, -73.7585062249961 40.753427897219396, -73.75853984979446 40.75341311831571, -73.7586713177977 40.753349307302095, -73.75881216221009 40.753271316546126, -73.7588798981843 40.75322965582739, -73.7589457704551 40.75318628740566, -73.75900966406023 40.75314123805893, -73.7590715289712 40.753094588731564, -73.75913128689677 40.75304637708449, -73.7591887798763 40.75299673246399, -73.75924109391725 40.752948868102564, -73.75929132889081 40.752899583772496, -73.75933931731578 40.7528490223075, -73.75938500447316 40.752797252935224, -73.75942836058644 40.75274432422371, -73.75946929779138 40.75269030262975, -73.75950780286138 40.75263524486029, -73.75953790691845 40.752597070293824, -73.7595541342715 40.75260568691958, -73.75958567640059 40.752626748124335, -73.7596133978497 40.75264469729252, -73.75964820766926 40.75266954023299, -73.75968187513496 40.752695275885515, -73.75971434829373 40.752721862719206, -73.75974560464972 40.7527492997877, -73.7597756195239 40.75277753481095, -73.75980432439087 40.75280652442269, -73.7598317062729 40.752836255089015, -73.7598577309652 40.75286668891832, -73.75988232303469 40.7528977275988, -73.75990883051004 40.75293418682756, -73.75990571560354 40.752934999798235, -73.7591813219609 40.75312416860908, -73.75918317672266 40.75312832743503, -73.75918256737953 40.7531285161685, -73.75951909408828 40.7538901564547, -73.75969431686364 40.75428672169841, -73.76006156478068 40.75419762366906, -73.76010255559545 40.75418767917668, -73.76046224666447 40.754100413777806, -73.76062048301226 40.75445004016614, -73.76061915833253 40.754450250833905, -73.76062121094962 40.7544547477376, -73.76062058205963 40.75445477164494, -73.76064078319465 40.754498255065506, -73.760656624739 40.75453235152598, -73.76067029939239 40.75456178875242, -73.76069242424325 40.754609411295974, -73.76073238488564 40.754691471216866, -73.76078077662382 40.75476937387345, -73.76081573635878 40.754814237771534, -73.76086553925346 40.75487317320477, -73.76090536814745 40.75491451088519, -73.7609472548388 40.754953646575665, -73.7610024804318 40.755000360691554, -73.76107119468722 40.755052201438964, -73.76114482793471 40.7551077534351, -73.7612402343582 40.75517973166722, -73.7612974117022 40.755222868361884, -73.7613060816006 40.755224752181164, -73.76130789316076 40.755230775835095, -73.76141772363873 40.7553136358347, -73.76150153544621 40.7553768666055, -73.76153737105965 40.755406528805665, -73.76159135396229 40.75545524549468, -73.76162897995044 40.75549688453345, -73.7616748852609 40.755552621941675, -73.76170268325203 40.755593698515796, -73.76172844405723 40.75563819190118, -73.76174274664518 40.75566575363311, -73.76176182279556 40.75571715539356, -73.76178332689065 40.755784041913245, -73.7617981015957 40.75586173052118, -73.76180012849434 40.75594365937643, -73.76179887267578 40.755952754617255, -73.7617992703815 40.75595313905624, -73.76179622610968 40.75597191826948, -73.76179124659417 40.75600798234378, -73.7617696326283 40.75614132546938, -73.76174108470995 40.756317448211114, -73.76173471516675 40.75635673772915, -73.76159244060706 40.75723445978576, -73.76174462382922 40.757762431091756, -73.7617468419325 40.75776573964419, -73.7617717806484 40.75785225892556, -73.76177102003939 40.7578540043387, -73.76183727404978 40.75808385738719, -73.76185299540508 40.758138399453344, -73.76208184373851 40.75892960314544, -73.7620826778293 40.75893082685756, -73.76222137993845 40.7594120088627, -73.76222238013358 40.75941547157959, -73.76220008593417 40.75942016943798, -73.76190448692202 40.75948245306062, -73.76120516606562 40.75962979923944, -73.76114665633368 40.759425472428596, -73.76105959135158 40.75913146508774, -73.76100924202835 40.75922949802059, -73.7606610218955 40.75922058496686, -73.76028620317246 40.75921098786177, -73.76001971776432 40.759204164601734, -73.75984563919155 40.75919987382056, -73.75970829501273 40.75925943069077, -73.75982836919157 40.759674070607566, -73.75989475150838 40.75990606909939, -73.75875887552243 40.76014852441784, -73.75809502980664 40.76030645115154, -73.75708669877169 40.75977827868693, -73.7570322663401 40.75974300175586, -73.75698423674042 40.759702706266054, -73.75694340338094 40.759658057573866, -73.75691044096995 40.759609793726355, -73.75690438125905 40.75960518204412)), ((-73.74129006284872 40.75204159275299, -73.7405943536475 40.751603895051836, -73.74043108009712 40.751509025045976, -73.74038719210314 40.751473559518644, -73.74032892194697 40.751426472892916, -73.74026264511585 40.75137291603065, -73.74012873776107 40.75125197991282, -73.74007579113957 40.75120416134591, -73.73997617502292 40.75109764754242, -73.73990504645373 40.75102159378818, -73.73975825171823 40.750836275896035, -73.73968949484554 40.75074947437498, -73.73962062385645 40.750662528471835, -73.73954905001784 40.750572169785684, -73.73946609162259 40.750467440180984, -73.73925619719338 40.75019969569351, -73.73916547662199 40.750083187633166, -73.73906084084595 40.749948809773926, -73.73875537292541 40.749556508070555, -73.73856297871183 40.749309420041094, -73.73839884153669 40.74909862067867, -73.7382491000766 40.7489596244458, -73.73807901387245 40.74880174308022, -73.73783004037652 40.748570632540606, -73.73766473422587 40.748417185636626, -73.73745653382 40.74822392011912, -73.7372941203201 40.74809314060599, -73.73713589935815 40.747994699647904, -73.73699265812672 40.74791976447704, -73.7368792196314 40.747867784582425, -73.73671308193883 40.7478017000993, -73.73659419162428 40.747754409024246, -73.73637416353435 40.74766688751626, -73.73602722779124 40.74752465696289, -73.73563847426915 40.7472533492786, -73.73550578824913 40.74709232515833, -73.73544335723732 40.74696330432184, -73.73539409076083 40.74681073742793, -73.73530994413198 40.746549845390675, -73.73523647572016 40.746322062585485, -73.73519130693776 40.74618201670211, -73.73516502191733 40.746100521293535, -73.73514568334627 40.74604056405492, -73.73512505005172 40.74597658935869, -73.73512154649256 40.74597122596488, -73.73512102173969 40.74591648632039, -73.73512240328073 40.74588497702925, -73.73515875395279 40.7459145775576, -73.7352089840228 40.74595548077441, -73.7352563482012 40.745994145916235, -73.73525856665245 40.74599604388876, -73.73529597714563 40.74602803226166, -73.73533786946116 40.74606384638423, -73.73537976059481 40.74609967129472, -73.73542165181642 40.746135485383725, -73.73544777192002 40.74615781140661, -73.73546355019086 40.74617129857315, -73.73550403500961 40.74620767132002, -73.73554451991548 40.746244033246455, -73.73558500484768 40.746280399660996, -73.73562548982049 40.74631676696158, -73.73565103922937 40.7463397210844, -73.73566596773334 40.746353134231484, -73.73568190766942 40.746368573144856, -73.7358061124536 40.74648900692724, -73.73594466502037 40.746625820433934, -73.73596835280888 40.74664860722447, -73.73598454450817 40.746664192554874, -73.7360244300263 40.7467025484663, -73.73606431673521 40.74674091427193, -73.7361042023238 40.746779275558346, -73.73614408914243 40.746817636833455, -73.73618397598557 40.74685600349753, -73.73622795681888 40.7468980896263, -73.73627210052858 40.74694032199351, -73.73627254055543 40.746940732733336, -73.73631657858573 40.7469818581138, -73.7363610937219 40.747023613125485, -73.73639786852476 40.747056441655424, -73.73643453177483 40.747089342859454, -73.73647118796036 40.74712224313496, -73.73650100930952 40.74714897817683, -73.73650547277742 40.7471529803506, -73.73654809983127 40.7471901779885, -73.73658830215504 40.74722523405435, -73.7366285057016 40.747260291009226, -73.73666870808864 40.7472953524497, -73.73671417499759 40.747335772240135, -73.73675964194032 40.747376197415356, -73.73680510064986 40.747416622553516, -73.73684887826373 40.74745459354387, -73.73689255088439 40.74749247872895, -73.7369364229241 40.74753055075828, -73.73698019950359 40.74756852169541, -73.73701967387053 40.74760303113669, -73.73705914826061 40.74763754506677, -73.73709862981372 40.74767205449689, -73.73713810307311 40.747706575600894, -73.7371845557148 40.74774638960711, -73.73723101549152 40.747786209914125, -73.73727746821945 40.74782603018597, -73.73730347962501 40.74784832131236, -73.73732392931258 40.74786584505475, -73.73736461270754 40.74790072183944, -73.73741684215038 40.74794548551977, -73.73746329510038 40.74798530571577, -73.73750301554594 40.74801939320979, -73.73754273600728 40.748053486993435, -73.73758245537137 40.74808756905406, -73.7376169093233 40.74811710683803, -73.73761877268959 40.74811870408541, -73.73766219217035 40.748155543804565, -73.73767932195024 40.7481694443725, -73.73767944117222 40.748169538297084, -73.73771085942157 40.748194216289036, -73.73775981641462 40.74823269310107, -73.73780877467318 40.748271163591234, -73.73783368645428 40.74829073795473, -73.73785773772097 40.74830963497166, -73.73790670317221 40.74834811173947, -73.73795426149131 40.74838490943531, -73.73799826188016 40.74841895066095, -73.73804404602924 40.748454373706885, -73.73808982196337 40.74848979041211, -73.7381356061886 40.74852521882436, -73.738184302058 40.74856066464256, -73.73823299795804 40.74859611584309, -73.73825470293838 40.748611910589034, -73.73828170103201 40.74863156253646, -73.73833039824099 40.74866700829511, -73.73837997259481 40.74870253436952, -73.73842955532893 40.748738050535785, -73.73847912980972 40.74877357116418, -73.73852871383723 40.74880908638955, -73.73855661366674 40.748828615147744, -73.7385727487536 40.74883990634604, -73.73861678489483 40.74887072628822, -73.73866083528225 40.74890154714615, -73.73870487860947 40.74893236707051, -73.73874891371007 40.74896318155606, -73.73879369295939 40.748992963026, -73.73883845683093 40.749022750747024, -73.73888322197254 40.74905252674671, -73.73892799304984 40.749082309045775, -73.73897665818389 40.749114628784156, -73.73902532215641 40.74914695480268, -73.7390739873391 40.74917928620619, -73.7390947178462 40.74919305423751, -73.73912264432624 40.7492116058637, -73.73917480429945 40.749244130644485, -73.73922696548304 40.74927666170767, -73.73927911724843 40.74930919182516, -73.73933128566306 40.74934171655338, -73.73938225444418 40.74937277701558, -73.7394332232729 40.749403837455084, -73.73948419214908 40.749434897871886, -73.73953515989223 40.74946595736286, -73.73958612886354 40.74949701773428, -73.73963554922709 40.749527130847945, -73.73968279131991 40.74955501205596, -73.73972846821721 40.749581945973226, -73.73977416171111 40.74960888441222, -73.73981984697095 40.74963581831171, -73.73986132890104 40.74966027440205, -73.73991622611648 40.749692479040704, -73.73996775288505 40.749722697623646, -73.74001885910786 40.7497526729969, -73.74006997366531 40.74978264836606, -73.74012108712684 40.74981261290369, -73.74017580588304 40.749845097973825, -73.7402305247172 40.74987757671432, -73.74028524360119 40.749910056329135, -73.74033996962208 40.749942541336814, -73.74039468863386 40.74997501549637, -73.74044789520708 40.75000698013494, -73.74050110067189 40.750038938442664, -73.74055430616315 40.750070903029176, -73.74060751291417 40.75010286129008, -73.74066071850753 40.750134825827146, -73.74070310788188 40.750161768161085, -73.74074550439158 40.75018871139582, -73.74078726073178 40.75021524704415, -73.74083029160045 40.75024259600384, -73.7408718376127 40.750269643538005, -73.74091338482182 40.750296696462826, -73.74095493092258 40.750323738563786, -73.74099647822018 40.75035078605541, -73.74104698759922 40.75038619510308, -73.7410975041121 40.750421610447866, -73.74114801477914 40.75045702035404, -73.74119852431576 40.750492430235234, -73.74121942774238 40.75050762557623, -73.74124055317544 40.75052297990187, -73.7412825737814 40.7505535304349, -73.74132459558902 40.75058408635819, -73.74136661627207 40.7506146368603, -73.74140970830747 40.75064740410569, -73.74145280746548 40.75068017765427, -73.74149590669037 40.750712944883006, -73.74153557576558 40.75074413120796, -73.74155348191478 40.7507582130353, -73.74157522830386 40.75077531658139, -73.74159726280006 40.750792634190475, -73.74161489743238 40.75080650828173, -73.74164973061905 40.75083403935561, -73.74165754202869 40.75084021366096, -73.74166182532738 40.75084379558986, -73.74170161669636 40.750877074915685, -73.74174867511464 40.75091645616569, -73.74179572532069 40.7509558319747, -73.74183919744628 40.750993603141055, -73.7418529875443 40.75100558561269, -73.74187439554076 40.751024188592226, -73.74191373486445 40.75105836463858, -73.74195584489894 40.75109503588724, -73.74199796089691 40.751131708034116, -73.74204006981557 40.751168385552454, -73.7420805268928 40.75120598688141, -73.74212096982727 40.75124358276116, -73.742161418707 40.75128118404274, -73.74219944039123 40.75131780732702, -73.74221492684012 40.75133271030202, -73.74223747042709 40.75135442521406, -73.74227549813644 40.7513910430831, -73.7422950040636 40.75141041076234, -73.742313030794 40.751428305497235, -73.74235055520117 40.75146556878091, -73.74242977688279 40.75155299903955, -73.74238452010023 40.75155458898876, -73.74238428527691 40.75157397373502, -73.74228611081928 40.75159752848133, -73.74218157531182 40.75161796845178, -73.74211508682139 40.75163364156873, -73.7420515451938 40.751649119532395, -73.7419840382732 40.751671520702345, -73.74190585005692 40.75169827978011, -73.74190585390936 40.75169820234494, -73.74190121629476 40.751699865100505, -73.74188107577908 40.751706758396956, -73.74188133774173 40.7517069949175, -73.74179894321657 40.75173654418146, -73.7416653509422 40.751795137077394, -73.74156295282384 40.75185664992356, -73.7414439647876 40.75192850201377, -73.74141131839546 40.751954005904594, -73.74135517950528 40.7519978643554, -73.74133062161525 40.75201704949881, -73.74133119308067 40.75201717235089, -73.74129006284872 40.75204159275299)), ((-73.74240727595598 40.75172202211099, -73.74249906939592 40.75171006326768, -73.74258233072008 40.751712291724196, -73.74268687870659 40.75183240386084, -73.74270762184031 40.751855572581704, -73.74278344979216 40.751949063543755, -73.7427816100267 40.75194957452697, -73.7428278226751 40.75200227467667, -73.74297532752391 40.7522258591401, -73.74309474069861 40.75240763493507, -73.74319557537498 40.75258381483957, -73.74325685946546 40.752712119166496, -73.74327608424501 40.75275944506609, -73.7432891960757 40.75280685999692, -73.74328803846394 40.75280703841949, -73.74330193803414 40.752862376885865, -73.74332078817045 40.75296577036188, -73.74333111690645 40.753056310785354, -73.74332711591178 40.75320682292142, -73.74330303411755 40.75330499952655, -73.7432717873223 40.75343316152756, -73.74323276954424 40.75358598285463, -73.74318111930128 40.753720857666806, -73.74310388420402 40.75387888332438, -73.7430450861631 40.75398203249511, -73.74300654898255 40.754046283412904, -73.74293771027645 40.75412326473846, -73.74283170820786 40.75424562617258, -73.7427712484522 40.7543032741586, -73.74268779438748 40.75437585342435, -73.74253993071733 40.75447146239416, -73.74216501585722 40.754710829274885, -73.7419976587401 40.75482113795149, -73.74184979309098 40.75491674602924, -73.74166111837727 40.75502577724563, -73.74145082535142 40.75513086763177, -73.74127251333817 40.755207018663754, -73.74108399898267 40.75528652519934, -73.74083838073916 40.755391260407556, -73.7407270618729 40.75543536539095, -73.74061965029644 40.75548475514834, -73.74051657781978 40.75553923075015, -73.7404182609436 40.75559857252181, -73.74032509730354 40.75566254093575, -73.74023746092982 40.75573087750117, -73.74015570579307 40.75580330657272, -73.74008016342889 40.75587953714583, -73.74001113702714 40.75595926014173, -73.73975045604017 40.756231320457715, -73.7394726365791 40.756400588826345, -73.73932057926056 40.75640861056076, -73.73929129569377 40.75639743470921, -73.73927303753601 40.75636107675351, -73.73928174283628 40.75628269542961, -73.73930767444187 40.75613878791866, -73.73938400978487 40.75597277618055, -73.73949536504422 40.755804455439, -73.73961423945156 40.755677946917565, -73.73964096917932 40.755658023234254, -73.7397602166963 40.755558938611294, -73.73987549635918 40.755486946630036, -73.74000599867249 40.75542468197334, -73.74017030470254 40.75534945674901, -73.74032303219748 40.75529645857405, -73.74043814957425 40.755253988858954, -73.74061265782174 40.75517540728115, -73.74076325804963 40.755103767693925, -73.74104543210919 40.75494832790618, -73.74120578717846 40.75483848214999, -73.74127614833668 40.754774816608816, -73.74127317482026 40.75477359784475, -73.7413548879981 40.75469181699226, -73.74141132259575 40.75463673436913, -73.74185024612161 40.75394548382554, -73.74194581438745 40.75371189510803, -73.7419564448604 40.75366417481463, -73.74196876560428 40.75353501533465, -73.74195922262781 40.75339585354478, -73.7419406226474 40.75328922938041, -73.7419029925341 40.753175434140495, -73.74171813106301 40.75277566813896, -73.74149174076587 40.75228569732738, -73.74148573746169 40.75226913248814, -73.74149460805768 40.75222119215522, -73.74151854976147 40.75216367270179, -73.74155146536867 40.7521133558429, -73.74157953540548 40.75207249966369, -73.74160762364879 40.75203609923996, -73.74163758594537 40.75200530238157, -73.74167400795181 40.751973836515546, -73.74171675980975 40.751942512703806, -73.74173030054526 40.75193333895627, -73.74176981291191 40.75190802686768, -73.74181566335443 40.75188592848275, -73.74186089388377 40.75186886794222, -73.74189231033601 40.751856351019654, -73.74196761818817 40.75182549808568, -73.74204941869615 40.751799212619055, -73.74209861595462 40.7517855233713, -73.74215758237995 40.751768463751006, -73.74220737299993 40.75175473526213, -73.7422543665518 40.75174654312977, -73.74225412095745 40.751745748330734, -73.74240727595598 40.75172202211099)), ((-73.74526739144747 40.75168536172743, -73.74559130083183 40.751677668629185, -73.74592809203342 40.75173123228017, -73.74620657129643 40.751815104602294, -73.74643790319797 40.75192765005465, -73.74654406452389 40.75199071314561, -73.74653963801624 40.75201534494692, -73.74650237511263 40.75206269818419, -73.74641273889063 40.75212643615568, -73.74606694618062 40.75236881102414, -73.74579590223799 40.752536648976196, -73.7456784884323 40.75259902023238, -73.74560612111034 40.7526318866153, -73.74551525253591 40.752669378519556, -73.74543935951642 40.752700774581086, -73.74536037704038 40.752724713848615, -73.74530738297715 40.752740978753735, -73.74523067248249 40.752755404571374, -73.74516942002465 40.75276795815812, -73.74511667076891 40.752776546674326, -73.74506696349147 40.752782380036514, -73.74502160524423 40.75278707485469, -73.74497729658292 40.75279320468918, -73.74490946889769 40.75279480599297, -73.74484133211166 40.75279641557721, -73.7447670423001 40.75279280474209, -73.74470830562794 40.75278816753016, -73.74464575355711 40.75277952626992, -73.74454185630167 40.7527616954437, -73.74440936765262 40.75272872565762, -73.74424891526799 40.75267631917387, -73.7441315042583 40.752618519476236, -73.74400497008408 40.75255256508088, -73.7439148088833 40.752498868104276, -73.74376955230986 40.752355076806786, -73.74353342653023 40.752102250154486, -73.74316873039169 40.7517045307718, -73.74526739144747 40.75168536172743)), ((-73.7346814163727 40.73883350420559, -73.73781623069321 40.738226203380385, -73.73794036467696 40.73820673860272, -73.73801985470226 40.73819635555786, -73.73813236720332 40.738187485668824, -73.73824039328557 40.73818177977569, -73.73830353042804 40.738180336563985, -73.73839451306091 40.73817975622909, -73.73851933000385 40.73818560485665, -73.73859802718385 40.73819169537095, -73.73870586120903 40.73820567108471, -73.7388438426836 40.738230378923454, -73.73896818022705 40.73826102065981, -73.73897305438152 40.738262221283186, -73.73901791662627 40.73827625747239, -73.73902265471516 40.73827773964541, -73.73902590349138 40.738278910468345, -73.73914572292826 40.73832208049521, -73.73916875147397 40.738330431767736, -73.73923504076845 40.738357300060024, -73.73933529019133 40.7384017718392, -73.73939543005606 40.73843115565627, -73.739090905597 40.73876628126068, -73.73862592941448 40.73848170538226, -73.73378358401631 40.739505769499324, -73.7338934381658 40.73899288852138, -73.73391208949359 40.73898252890752, -73.73392532050183 40.73897996600371, -73.7346814163727 40.73883350420559)), ((-73.74363337618266 40.75549103343181, -73.7436437526932 40.75548752292674, -73.74369384630538 40.755488636662626, -73.74380457113035 40.75548611120523, -73.74391375785109 40.75548846478244, -73.74392873303074 40.755488236925025, -73.74392451277868 40.7554909407774, -73.74395274542267 40.755487872464926, -73.74397648661582 40.75548751189961, -73.74404716974348 40.755482849449855, -73.74412752752414 40.755471177271744, -73.74418501600148 40.75546101303448, -73.7442604943383 40.755443292014114, -73.74431933980274 40.75542666686818, -73.74439391642785 40.755401040891265, -73.7444800630026 40.755366687582416, -73.74456512915803 40.755322848552034, -73.7446178324593 40.75528910806523, -73.74469024338089 40.7552445114728, -73.74473481239782 40.75521290061779, -73.74483154367668 40.75514280678144, -73.74487566923078 40.75509832391256, -73.74490121273021 40.75507505549493, -73.7449450961819 40.755036562249806, -73.74497646915478 40.75499945058855, -73.7450063052697 40.75496721897773, -73.7450337016411 40.75493196345232, -73.74505425336616 40.754901957148356, -73.74508703852575 40.754853819145936, -73.74510187749505 40.75483189756944, -73.74510958998677 40.75481708865269, -73.74511674737612 40.754804680165066, -73.74676267745399 40.756654506815046, -73.74665945462746 40.756634781133286, -73.74649922331196 40.75653099798911, -73.74633330104083 40.75643252049332, -73.74616199145241 40.75633953029301, -73.74598561007272 40.756252195554765, -73.74580447718228 40.75617067815343, -73.74561892613737 40.756095125585986, -73.74542929505634 40.75602567725697, -73.74524693956593 40.755956392387894, -73.74510269376879 40.75590379064506, -73.74493052063887 40.75584506736068, -73.74475680976806 40.75579122387102, -73.74462440242355 40.75575058310391, -73.74439691478432 40.75568435940774, -73.7442214868363 40.75563381346445, -73.74419343282898 40.755627664628605, -73.74419337840017 40.75562611112959, -73.74363337618266 40.75549103343181)), ((-73.7433359631671 40.75511682194447, -73.74333566821674 40.75511469248362, -73.74333577967009 40.75511803722299, -73.74331339476046 40.75507469626662, -73.74329777340503 40.755029672918184, -73.74328912758693 40.75498357549662, -73.74328757449354 40.75493702741697, -73.74329313300997 40.75489065547607, -73.74330572964811 40.75484508806462, -73.74332519387333 40.754800938947554, -73.74334044831873 40.75477767406204, -73.74336801759141 40.75473924411982, -73.74340229544454 40.754695547628195, -73.74345157259737 40.75463177165902, -73.74362901582907 40.75444892568997, -73.74364861195089 40.754437190640424, -73.7439837710315 40.7542364813002, -73.74440193234817 40.75398355545271, -73.74450151847519 40.75411320387799, -73.7445583289789 40.754198301925186, -73.74460968121849 40.75428538246961, -73.74465545516084 40.75437424443891, -73.7446756322099 40.7544188175434, -73.74469351601657 40.754465421612736, -73.74470598090838 40.75450123367371, -73.7447219658394 40.754549555303164, -73.74473009215777 40.754584060112435, -73.74473821848109 40.75461856582145, -73.74474012380247 40.75463526458344, -73.7447451419797 40.754700582430424, -73.74474138391626 40.754765948367506, -73.74472888771388 40.75483068349444, -73.74470778618934 40.75489411452195, -73.74467829619432 40.754955580051806, -73.74464072449575 40.75501444139622, -73.74459546420717 40.755070087072774, -73.74454298530557 40.75512193548534, -73.74448383220518 40.75516945022783, -73.74441862259393 40.75521213467898, -73.74434803317175 40.755249545478875, -73.74427279964691 40.755281293430045, -73.7441937048726 40.75530704887451, -73.74411157055381 40.75532654257642, -73.74402725248507 40.75533957201546, -73.74394162752 40.75534600225845, -73.74385558646483 40.7553457659441, -73.74378608070747 40.755342387547294, -73.74372000966969 40.7553324106152, -73.74364734255947 40.75531968321957, -73.74358696847843 40.75530455266803, -73.74352759186304 40.75527979966384, -73.74348972503925 40.75525999870129, -73.74344679910584 40.75523256725094, -73.74341408621032 40.75520286943956, -73.74338101487216 40.75517000913247, -73.74335246082475 40.755140036907484, -73.7433359631671 40.75511682194447)), ((-73.74430326341559 40.75321956947959, -73.74296028482895 40.75171040540247, -73.74306567262161 40.75170782373272, -73.74346588580603 40.7521546570943, -73.74368229699411 40.75238182682391, -73.7438389947763 40.75253084411749, -73.743970771565 40.75262838671341, -73.74409405932339 40.752707174297505, -73.74419515766161 40.75275845143766, -73.74432722344532 40.752802856100914, -73.74445764884182 40.75283288304138, -73.74461328441386 40.75286124575724, -73.74477988451659 40.7528743986388, -73.74495224188775 40.752882342873306, -73.74510980469965 40.75287194675725, -73.74520955184968 40.7528557070228, -73.74538849772767 40.75281009657486, -73.74463668141289 40.75330257334649, -73.7445573208309 40.75327415561066, -73.74447474955883 40.753248641143976, -73.74442593914033 40.75323974568707, -73.744361011363 40.75322922144046, -73.74430326341559 40.75321956947959)), ((-73.74343495138513 40.753738589718395, -73.74345057612383 40.75371472860242, -73.74344817303175 40.75371483221192, -73.74349165813396 40.753646001366214, -73.74354392839153 40.753576591224174, -73.74358182864141 40.75353639761498, -73.74361697627309 40.75350311738058, -73.74365945723623 40.75347204529481, -73.74370896681414 40.753440509760786, -73.7437555714379 40.753414550901425, -73.7437887305211 40.7533948629819, -73.74383273490167 40.753377151476165, -73.74387689279457 40.75336077755138, -73.74388354626682 40.753368575447645, -73.74388649183943 40.7533672024165, -73.74394320594085 40.753438502060014, -73.7441139324806 40.75363860451079, -73.74321917049342 40.7542320148543, -73.74316912371522 40.75426261424963, -73.74238257623382 40.75474351374284, -73.74197106517056 40.754995108999566, -73.7419157433544 40.75502893246365, -73.74206374568867 40.754922224931754, -73.74286520232214 40.75439271809035, -73.74290592760613 40.75436176213305, -73.74293160163508 40.75433852955998, -73.74296881247619 40.75430780617324, -73.74299754262668 40.75428033360278, -73.74301316962301 40.75426670413898, -73.74301183211352 40.75426592941859, -73.74306638850354 40.75421656092937, -73.74311743162927 40.75416742411493, -73.74317848682233 40.75409743399349, -73.74323121361422 40.75403203228067, -73.74328257036483 40.75395460569066, -73.74334691441939 40.75386689808306, -73.74339972279294 40.753786683094866, -73.74343495138513 40.753738589718395)), ((-73.74164894218185 40.755677414218184, -73.74166418960311 40.75566593450334, -73.74167331097472 40.755659066964256, -73.74168115915218 40.755653158313095, -73.7416787511214 40.75565634882012, -73.74174967571736 40.755603848772374, -73.74185866376192 40.75552977133632, -73.74200033991222 40.75543686712682, -73.74222245085748 40.75529121714036, -73.74235573620292 40.755211404228994, -73.7425738666501 40.75508078316419, -73.74282495050294 40.75493042766051, -73.74305209389615 40.75479440744661, -73.74327231417136 40.754662532608116, -73.7432458335001 40.75470056422774, -73.74314994215071 40.754828962081284, -73.74305978683023 40.754967760921964, -73.74298343174236 40.75507742028789, -73.74298417955282 40.755077576843945, -73.7429550349613 40.755126432875386, -73.74292194163826 40.75516684231585, -73.7428821561506 40.75522202857317, -73.7428393903371 40.75526944757519, -73.74280765523265 40.75530339615964, -73.74277004329771 40.755340918340295, -73.74273360868959 40.755370398889674, -73.74266708320717 40.75537478706152, -73.7423960970276 40.75540624761252, -73.74227786953976 40.75542336299011, -73.74227832505498 40.75542316139465, -73.74227653304183 40.75542354730587, -73.74218677985279 40.75544552960814, -73.74208392268899 40.75547747004891, -73.74198486710763 40.75551573418355, -73.74189028672032 40.75556006328412, -73.74180081977518 40.75561015802201, -73.74171707271736 40.755665676674845, -73.74169727075174 40.75568023042781, -73.74169669294128 40.75567715479391, -73.741615508445 40.7557228788779, -73.74152487706554 40.75577081857252, -73.74153007673434 40.75576690492018, -73.7415401257138 40.755759338876906, -73.74154642755227 40.755754594725815, -73.74155568315422 40.75574762664019, -73.74156313229382 40.75574201787189, -73.7415698248773 40.755736979229155, -73.74156985575385 40.755736956785675, -73.74157141755578 40.755735780622516, -73.74158384545096 40.75572642339652, -73.74159905132537 40.75571497511496, -73.74161703161312 40.75570143847017, -73.7416315771254 40.75569048758517, -73.74164894218185 40.755677414218184)), ((-73.74237160033293 40.75570513754939, -73.74254047830215 40.75561537955649, -73.74258241969521 40.75558743323506, -73.74261513655564 40.75556732863295, -73.74264082121756 40.75554854016384, -73.7426652487873 40.755532980807985, -73.74270995613391 40.755497434918745, -73.74281877045459 40.75549440816004, -73.74281753785525 40.755494979932955, -73.74284194751019 40.755493861064146, -73.74290883391953 40.75549263528428, -73.74296360827336 40.75549539330771, -73.74304667069728 40.75550743562193, -73.7431186162348 40.75551383931228, -73.74318676617837 40.75552367894316, -73.7432550947857 40.755535099325435, -73.743254942144 40.75553260997801, -73.74342176055096 40.755563924957706, -73.74352443519844 40.75558263745521, -73.74363822570045 40.75560698657238, -73.74363297595029 40.755634409799114, -73.74399279353872 40.75568553496975, -73.74396791703775 40.755748020937034, -73.74380150015295 40.755720811263565, -73.74363351372 40.75569991222587, -73.74346437078094 40.75568537606621, -73.74329448681068 40.75567723792478, -73.74312428207193 40.75567551944729, -73.74295417453487 40.75568022246566, -73.74293183101601 40.75567588167992, -73.74277103080207 40.75568011622133, -73.74265984985294 40.7556970063895, -73.74263540024259 40.755701090507074, -73.74263590298304 40.75570153918332, -73.7425213291866 40.7557248656808, -73.74240865968765 40.755753049166316, -73.74229824889245 40.75578599948694, -73.74219044534063 40.755823612970104, -73.74213650273315 40.75584515487888, -73.74211833510873 40.755821450630634, -73.74237160033293 40.75570513754939)), ((-73.73507997653344 40.74473333249693, -73.73511768198641 40.74472547851517, -73.73513604788852 40.74477118655317, -73.73515507649388 40.74481847740867, -73.73517094902581 40.74485789954495, -73.73517243686308 40.744861593258996, -73.7351955715027 40.74491906211541, -73.73521218495036 40.74496035450856, -73.73522891478689 40.74500215865666, -73.73524565174493 40.745043963718956, -73.73526238280746 40.74508576786444, -73.73527911270342 40.74512757290497, -73.73528577410725 40.745143642520276, -73.73529818217038 40.745173570694504, -73.73531726229828 40.7452195739081, -73.73533633179645 40.74526557709374, -73.73535540250494 40.74531158027863, -73.73537922924815 40.745373738742565, -73.73540566571916 40.74543528004291, -73.7354347003381 40.745496140215046, -73.73546628833294 40.74555626512344, -73.73550041343012 40.74561557998633, -73.73553703322818 40.74567402977294, -73.7355652770089 40.74571821694053, -73.73558134878712 40.74574335197017, -73.73559352795982 40.745762396913236, -73.73562177184043 40.74580657776292, -73.73565149187625 40.74585294212948, -73.73568301584908 40.745899452007976, -73.73571283424475 40.74594342842957, -73.7357458274376 40.74600134662786, -73.73571622737573 40.74598619155752, -73.73571039195801 40.74598123706592, -73.7356950051111 40.745968171369526, -73.73564799964812 40.74592826542768, -73.73559598414003 40.74588459193547, -73.73554957852598 40.74584662072602, -73.73550286188154 40.74580886760737, -73.73545613700185 40.74577111445052, -73.7354137163721 40.74573658238317, -73.7353712946094 40.74570204849635, -73.73533731969057 40.745674393193276, -73.73533305084328 40.74567091911947, -73.73528660913455 40.74563286937486, -73.73527100244858 40.745619746383355, -73.73526284448853 40.74561288735342, -73.73522879095943 40.74558388197165, -73.73517565367716 40.745539874319554, -73.73513890751686 40.74550943541012, -73.73514192063197 40.745440698255386, -73.73514194017513 40.745440249846034, -73.73514439087772 40.74540010261124, -73.7351466910028 40.745362389110305, -73.73514847087621 40.745284881746, -73.73514732268174 40.74520736674712, -73.73514323431388 40.745129913425046, -73.73513621619905 40.745052582137596, -73.73512498534666 40.74495857540855, -73.73510982346781 40.74486668214004, -73.73510967779157 40.7448657993045, -73.7350898667634 40.74477170979982, -73.73507997653344 40.74473333249693)), ((-73.74338214024125 40.75277134298401, -73.74337091606512 40.752721426151254, -73.74382284493848 40.75327424808533, -73.74371103135097 40.7533274157788, -73.74363819948091 40.753366684315004, -73.74357882834153 40.75340709219801, -73.74351047866519 40.753462282631666, -73.74347181572388 40.75349727047566, -73.74343867405896 40.753533920337325, -73.74337687295395 40.753623142918315, -73.74330344819359 40.753727324038856, -73.74326995574019 40.75378426964965, -73.7432409374683 40.753777820360575, -73.74329038902832 40.753670495308896, -73.743331621643 40.75356118070638, -73.74336449776902 40.753450240061106, -73.74338890944568 40.75333804324886, -73.74340477357492 40.75322496200015, -73.74341203901182 40.75311137351795, -73.74341068066371 40.752997655061286, -73.74340070303523 40.75288418575426, -73.74338214024125 40.75277134298401)), ((-73.7409346863081 40.756285226059255, -73.740974064278 40.756249841756656, -73.7410078366586 40.7562194930916, -73.74105204528513 40.7561797665618, -73.74106383511317 40.756169172459366, -73.74108355493263 40.75615145244106, -73.74108393885665 40.756152000813515, -73.7410932956505 40.75614400821328, -73.74128450544151 40.756034593708584, -73.74141432424258 40.75596072917044, -73.74147914305317 40.7559230055459, -73.7415850965943 40.75586027067664, -73.74168933069087 40.755800834921644, -73.74173308477593 40.755780428434264, -73.74180016302725 40.75574414960865, -73.74187573747943 40.75570890195464, -73.74192744595392 40.755684786009866, -73.74200753869023 40.75565242641894, -73.74208139489185 40.755620477849284, -73.74218489624818 40.75559135294379, -73.7422500694935 40.75557505999501, -73.74224930781915 40.75557573097106, -73.74226080105902 40.75557254367047, -73.74232878252488 40.7555555095378, -73.74239786865068 40.755541275717285, -73.74241942776011 40.75553744723494, -73.74242128582249 40.75553713080844, -73.7425322873906 40.7555221720618, -73.74241700401836 40.75559860889842, -73.74237389004352 40.75561954837732, -73.74225918350606 40.75567658127461, -73.74109198440249 40.756227569808786, -73.74106449237752 40.75624319398333, -73.74103705608776 40.75625970888004, -73.74103738369045 40.75625860018932, -73.74082523501869 40.75637916770664, -73.74086038750484 40.75634933728134, -73.74089340367756 40.7563213192674, -73.7409346863081 40.756285226059255)), ((-73.74122109077739 40.755316385264784, -73.74143331733954 40.75523052280894, -73.74145283838273 40.75524439214274, -73.74143810473514 40.755254100781315, -73.74143957136111 40.75525364571406, -73.74105873953985 40.75555743884333, -73.7409928334801 40.7555882249673, -73.74096177566899 40.7556021175261, -73.74091444826405 40.75562172323647, -73.74089886177852 40.75562809440175, -73.74088816674858 40.75563246663112, -73.74081800785962 40.75565964555473, -73.74076783035895 40.75567823982397, -73.74068810728741 40.755708865906264, -73.74064091277735 40.755728363742335, -73.74055836830897 40.75576428287892, -73.74050137661787 40.75579080057379, -73.74047944977745 40.75580142671318, -73.74042544575371 40.75582856254702, -73.74034336929921 40.75587255835033, -73.7402986215738 40.75589802473305, -73.74025298396433 40.75592513882457, -73.74023484724614 40.75593618859821, -73.74020461105387 40.755954611466194, -73.74017735193543 40.7559712202116, -73.7401446431118 40.75599114944164, -73.74009557568613 40.75602104551104, -73.74007078911983 40.75603614695444, -73.74007060394082 40.75603626000073, -73.74009990709527 40.755982313578905, -73.74017347019611 40.7559107737842, -73.74023292207339 40.75585532123581, -73.74030028643254 40.75579934618962, -73.7403479487672 40.755762858740404, -73.7404055029445 40.75572571908205, -73.74049875698972 40.75566955281885, -73.74062375445563 40.75559462110829, -73.74072543718586 40.75554244668605, -73.7408409667017 40.75548935779222, -73.74096750828963 40.75542796473599, -73.74110411207562 40.755367424425344, -73.74122109077739 40.755316385264784)), ((-73.75451713023686 40.760642837996, -73.75453976017104 40.76063470780068, -73.75459301390855 40.760651589616636, -73.75464627833163 40.76066847143057, -73.75470345230742 40.76068659794194, -73.75475280842653 40.760702239489525, -73.75481089670423 40.760717158482876, -73.75486898619224 40.760732077449475, -73.75492708281195 40.76074699640184, -73.75498517237517 40.76076190900625, -73.75504326194122 40.76077682788486, -73.75515906939907 40.76080115635609, -73.75527580369193 40.7608227356274, -73.75536077710225 40.760836346281096, -73.75539336767764 40.76084156999226, -73.75551163831138 40.76085762226624, -73.75563051015364 40.7608708985271, -73.75574985064804 40.76088137147672, -73.75582188689395 40.760884969526956, -73.7558587628624 40.76088681898059, -73.75589392428572 40.76088858014166, -73.75593379366144 40.76089057008973, -73.75596596881745 40.76089218352237, -73.75603799795786 40.76089578772592, -73.75609974004954 40.76089847590139, -73.75611149475247 40.76089898796188, -73.75610919781336 40.76089946847301, -73.75542269919691 40.761042849889755, -73.75534858409478 40.7610083669539, -73.75515739880274 40.76092088165647, -73.75510426581188 40.76089586426918, -73.75507018491808 40.760879815902385, -73.75482320507818 40.76076768607269, -73.75479232053893 40.76075491056841, -73.7547528001702 40.76073857587412, -73.7546948045148 40.76071458442966, -73.75463784711249 40.76069102831152, -73.75457606399647 40.76066547176169, -73.75453735785955 40.760650604754865, -73.75451713023686 40.760642837996)), ((-73.7430515906426 40.755366945559096, -73.74299889638628 40.75536404993756, -73.74293200892001 40.75536527666761, -73.74285056978636 40.75536746233628, -73.74289477893706 40.75533269060117, -73.7429230780409 40.7553053395595, -73.74294911731215 40.755276544454475, -73.74296702115676 40.75524987890536, -73.74300011449365 40.75520946945243, -73.74302597387279 40.75517909353482, -73.74304713378896 40.755144249608286, -73.7430784227043 40.755097288505226, -73.74307954205582 40.75509752243263, -73.74316366046416 40.7549722384685, -73.74318564396012 40.75498021466367, -73.74319621749589 40.75502572025368, -73.74321231898571 40.75507028002363, -73.74323380902082 40.755113504640484, -73.74325961082599 40.7551634719701, -73.74327417236348 40.75518820629051, -73.74332793929767 40.75523722195201, -73.74336760909041 40.75527283182076, -73.7434022186057 40.75530081209638, -73.74344442405729 40.755321919483684, -73.74348454954169 40.755343164504154, -73.74353678823503 40.755360424711476, -73.74358279052707 40.75537809695394, -73.74363846636518 40.75538875863096, -73.74371474039245 40.755405551750776, -73.7434969180375 40.75539650308699, -73.74324555253305 40.755379309789475, -73.74324537758963 40.755376461989655, -73.74311901876123 40.755370462046415, -73.7430515906426 40.755366945559096)), ((-73.7448319337504 40.75453955746024, -73.7448195990278 40.754487366339724, -73.74504713109549 40.75471923618168, -73.74501033133625 40.75479310724187, -73.7449659620011 40.75486453285781, -73.74491430306857 40.75493306608796, -73.74485567826734 40.754998278096686, -73.74479045388955 40.75505975905289, -73.74471903876649 40.7551171244336, -73.74464187953582 40.75517001411335, -73.74455946180501 40.75521809777014, -73.74454798509919 40.75520929865968, -73.74461164581322 40.755153918025414, -73.74466889592918 40.75509462934503, -73.74471932172044 40.75503185855246, -73.74476255909434 40.75496605960696, -73.74479829598432 40.7548977081944, -73.74483185446114 40.75477386977412, -73.74483701212026 40.75473849929315, -73.74483889264391 40.754702941450894, -73.74484018255743 40.75469049026623, -73.74484081113249 40.75464510599579, -73.74484017911163 40.75459431767865, -73.74483974651244 40.75459225005182, -73.7448319337504 40.75453955746024)), ((-73.73513082322637 40.7456934172596, -73.73513602721086 40.74564483317027, -73.73516139095145 40.74566583647185, -73.73518559228627 40.74568587084721, -73.73522838573113 40.74572129806327, -73.7352678725255 40.7457536667329, -73.73530352975314 40.74578286669604, -73.73533296148892 40.74580696535794, -73.735375524291 40.74584296651413, -73.73541185452459 40.74587386004881, -73.73544818597588 40.74590475357468, -73.73548451627687 40.74593564708617, -73.73552992378937 40.74597570161196, -73.73557533846059 40.746015756135954, -73.73562074610368 40.746055805222504, -73.73565761199075 40.746089622965066, -73.73570558287315 40.74613363024118, -73.73572160740753 40.746148327323105, -73.7357461379143 40.7461708342353, -73.73578272219518 40.746204933150686, -73.73581742826832 40.74623732938327, -73.73585214976764 40.74626972564058, -73.73588686301251 40.746302121868254, -73.73592936510695 40.74634224251228, -73.73597186845802 40.74638235774013, -73.73601437183531 40.74642247925557, -73.7360487198302 40.74645565533886, -73.73608306903974 40.74648883231497, -73.73612230625632 40.74652673645282, -73.7361517663347 40.746555197039264, -73.7361956346938 40.746597524261894, -73.73623950426774 40.74663985777371, -73.73628338102665 40.746682184981346, -73.73632646990269 40.74672375213836, -73.73636955881105 40.74676532468208, -73.73641264779819 40.74680689090588, -73.73644781423441 40.746840699998266, -73.7364829747718 40.74687451266821, -73.73651814128297 40.7469083208383, -73.73654626107003 40.74693535454853, -73.73648408345811 40.7469378697163, -73.73646795791402 40.74692227650394, -73.73642957620471 40.74688470583255, -73.73639120162159 40.746847140567425, -73.73635282709955 40.74680957078676, -73.73631444549876 40.74677200547938, -73.73627607106687 40.74673443477226, -73.73623768148929 40.74669711165777, -73.73619929078852 40.74665978402504, -73.7361609013006 40.74662245998405, -73.73612251069302 40.74658513052432, -73.73608412128756 40.74654780735786, -73.736045913852 40.74651118699348, -73.7360077136055 40.74647455582652, -73.73596950506995 40.74643793543373, -73.73593129896942 40.746401308729965, -73.73589309763993 40.74636468382521, -73.73584992072361 40.74632484257954, -73.73582919760814 40.74630572223787, -73.73581235582292 40.746290179518454, -73.73577198437579 40.74625293094421, -73.73573161418287 40.74621567605481, -73.73569209510049 40.74617997918633, -73.73565219970885 40.7461439401468, -73.7356130641777 40.746108582722925, -73.7355735369306 40.74607288669467, -73.73553417167051 40.746037556631855, -73.73549479814251 40.74600223193937, -73.73545542584034 40.74596690723598, -73.73534084998879 40.74586795165536, -73.73531006764878 40.74584136538311, -73.73516136073624 40.74571811464689, -73.73513082322637 40.7456934172596)), ((-73.74250199781872 40.75107745996454, -73.74251179774785 40.75106549248545, -73.74309189471057 40.75146390534381, -73.74309564925646 40.75146706640203, -73.7431024837549 40.75147452255627, -73.74310755209068 40.75148275281146, -73.74311070834851 40.75149151910793, -73.74311185878373 40.751500565492, -73.74311097125405 40.75150962894323, -73.74310807164272 40.75151844566996, -73.7431032450118 40.751526759216574, -73.74309662965007 40.7515343285546, -73.74308841942072 40.7515409334913, -73.74307885308338 40.751546380048765, -73.74306820832838 40.75155051215745, -73.74305679468576 40.75155320803813, -73.74304494519815 40.75155439008922, -73.74302995278396 40.75155440256963, -73.74294457063256 40.75146569466219, -73.74274910113391 40.75128616581534, -73.74250199781872 40.75107745996454)), ((-73.74480644999623 40.75373649259352, -73.74492251494075 40.75366560402729, -73.74492899399722 40.75367724214847, -73.74511564047194 40.75407422157113, -73.74480644999623 40.75373649259352)))",Q001,69209,Q001,Q-07A,Q-07A,Q-11,Q-11,"Little Neck Bay, L.I.E., Union Tpk, bet. Springfield Blvd, Douglaston Pkwy, Hanford St",411,"19,23",111,"11361, 11362, 11363, 11364, 11426",Q,635.514,False,Alley Pond Park,No,100000043,PARK,,19340816000000.00000,,DPR,Part,Alley Pond Park,Y,Alley Pond Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/Q001/,Yes,"24, 25, 26","11, 16","3, 6",{6C233F68-A713-423B-B8DF-E8816161CCCD} +"MULTIPOLYGON (((-73.90723047893958 40.82715605029864, -73.90738374566581 40.82702591318884, -73.90732317187798 40.82719068135083, -73.90723047893958 40.82715605029864)))",X078,5635,X078,X-03,X-03,X-03,X-03,3 Ave. at Franklin Ave.,203,16,42,10456,X,0.12,False,Franklin Triangle,Yes,100004331,PARK,20100106000000.00000,18641108000000.00000,,DPR,False,Franklin Triangle,Y,Franklin Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X078/,No,79,32,15,{1DAC6F70-B882-44B3-B203-4F667C66D01D} +"MULTIPOLYGON (((-74.18385833679561 40.54435008897801, -74.18381356372166 40.544328035568164, -74.18372173627327 40.544282802182565, -74.18372368832065 40.54428049640729, -74.18385712800136 40.54434622764518, -74.18416960448089 40.54398414208303, -74.18403608077888 40.543918184408454, -74.18403808234154 40.54391586323939, -74.18417468243477 40.54398315056102, -74.18415152623821 40.54401000904878, -74.18409559664394 40.54407488457213, -74.18407665885331 40.544096850912716, -74.1839990483831 40.544186875088485, -74.18392518550228 40.5442725490574, -74.18385833679561 40.54435008897801)))",R102,6086,R102,R-03,R-03,R-03,R-03,W/s Drumgoole Rd. W. bet. Belfield Ave. and Jefferson Blvd.,503,51,123,10312,R,0.006,False,Strip,No,100003990,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/R102/,No,62,24,11,{7F17C4C5-B768-40A8-AD61-F44F592BC11B} +"MULTIPOLYGON (((-74.00485666946543 40.72236375079552, -74.00506067909532 40.722124415413866, -74.00518764987098 40.72221873362622, -74.00508191612516 40.72247516740906, -74.00485666946543 40.72236375079552)))",M222,5889,M222,M-02,M-02,M-02,M-02,"Thompson St., Canal St., Ave. of the Americas",102,1,1,10013,M,0.134,False,Grand Canal Court,Yes,100004229,PARK,20100106000000.00000,19551020000000.00000,,DPR,True,Grand Canal Court,Y,Grand Canal Court,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M222/,No,66,26,10,{8B7E9D3B-5498-4D2C-9F0A-50AD71F89714} +"MULTIPOLYGON (((-73.8610437236353 40.74833219081376, -73.86236684325111 40.74793828293022, -73.86280674392037 40.74879391504876, -73.86147341774499 40.74919328355965, -73.8610437236353 40.74833219081376)))",Q026,5438,Q026,Q-04,Q-04,Q-04,Q-04,"41 Ave., 42 Ave. bet. 103 St. and 104 St.",404,21,110,11368,Q,3.076,False,Park Of The Americas / Linden Park,Yes,100000339,PARK,20090423000000.00000,18980101000000.00000,103-02 41 AVENUE,DPR,True,Park Of The Americas,Y,Park Of The Americas,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q026/,No,39,13,14,{F11F1EC5-E576-4AAE-91C7-5A7264E0D133} +"MULTIPOLYGON (((-73.91930427982197 40.637273833913234, -73.91924244019704 40.636704500268074, -73.92010651079288 40.63626172781928, -73.92047624648795 40.63667328908099, -73.91930427982197 40.637273833913234)))",B236,4830,B236,B-18,B-18,B-18,B-18,Ralph Ave. and Farragut Rd.,318,45,63,11234,B,1.43,False,Glenwood Playground,Yes,100003763,PARK,20100106000000.00000,19510111000000.00000,5818 FARRAGUT ROAD,DPR,True,Glenwood Playground,Y,Glenwood Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B236/,No,59,21,8,{7589970B-1096-49C0-8E33-3B8AB05349AE} +"MULTIPOLYGON (((-74.00273402302695 40.68521366639795, -74.00275558405566 40.68516854384034, -74.0030854265392 40.685260501337666, -74.003038264127 40.68535663153535, -74.00299764324066 40.685345285226916, -74.0027095781695 40.68526482606347, -74.00273402302695 40.68521366639795)))",B559,11889,B559,B-06,B-06,B-06,B-06,Columbia St. bet. Sackett St. and De Graw St.,306,39,76,11231,B,0.083,False,,,100024465,PARK,20160222000000.00000,20160119000000.00000,204 COLUMBIA STREET,DPR,,South Brooklyn Children's Garden,,South Brooklyn Children's Garden,,Garden,,No,52,26,7,{F9E0F402-B606-4C84-87BD-982AD6C63003} +"MULTIPOLYGON (((-73.95194430353968 40.82760315030141, -73.95217802138325 40.82736499081834, -73.952189011576 40.82736555998589, -73.95219819668627 40.82736556379362, -73.95220738307133 40.827363792724945, -73.95221498323457 40.82736043612653, -73.95222109835429 40.82735657013252, -73.95222618495981 40.827352029241176, -73.95235558684384 40.8271822565666, -73.95236544307994 40.8271687748205, -73.95236848850622 40.82716224478588, -73.95237039079421 40.82715452922722, -73.95237071690711 40.82714609982528, -73.95236907942326 40.82713829275501, -73.95236563076652 40.82713181136623, -73.95235786698923 40.82711868343971, -73.95278368872052 40.82655982024759, -73.9526576470981 40.826501999990356, -73.95306295497076 40.825970284431655, -73.95315220893303 40.82586459895226, -73.9532624471514 40.8257611029089, -73.95338944193159 40.82566189899096, -73.95348600741977 40.82560283125569, -73.95361337738758 40.82554098699966, -73.95374383393984 40.82548438202327, -73.95386377206458 40.825444487689744, -73.95397802459503 40.825420087590565, -73.95408173369024 40.825407695791235, -73.95416318291421 40.825408366646386, -73.95422947893297 40.825413682490144, -73.95511685391828 40.82443604169689, -73.95539667277596 40.82387280282955, -73.95569735802532 40.823262055685575, -73.95583076409527 40.82298854791397, -73.95595952301944 40.822728288999386, -73.95602111271778 40.822604660001126, -73.95607533952196 40.822513626118074, -73.95614010768026 40.82243189383942, -73.95620510857259 40.82236732776726, -73.9562991757861 40.82229455835238, -73.95647012743754 40.822147126265605, -73.9566273673811 40.822011793233514, -73.9569512820748 40.82173394768343, -73.95710909383482 40.82159670064511, -73.9573871281568 40.82135956802048, -73.95748315459356 40.82127914593621, -73.9575710087557 40.82122674960831, -73.95764655828575 40.82119350855136, -73.95773417147316 40.821159936882744, -73.95782718027505 40.82113775209419, -73.95791422227677 40.8211149085912, -73.95797604137621 40.82109667357728, -73.95803982290127 40.82107549192024, -73.95813504515581 40.82103729866713, -73.9582853546224 40.82096554937537, -73.95841662940481 40.82088011358594, -73.95815817695676 40.821243861977784, -73.95797896789837 40.821472357141396, -73.95721461855551 40.82228636045077, -73.9566665390965 40.822870031076064, -73.95586626086475 40.82375910320949, -73.95519559574392 40.824482313673144, -73.95445454487421 40.82527782198379, -73.9539791241789 40.82577220159718, -73.95294503610396 40.826917821402866, -73.95259900719468 40.82729691789163, -73.952518602592 40.827387424212276, -73.95212304955768 40.82782115980424, -73.95193486439072 40.82803191176343, -73.95180820914393 40.8281801344405, -73.95159696852767 40.82844657272384, -73.95146940263898 40.82862380318617, -73.95132169254774 40.828845560785965, -73.951128108284 40.82916711052655, -73.95100199831477 40.829384093419975, -73.95086672579117 40.82963642389556, -73.9506839392484 40.83002397111879, -73.95053094951092 40.83040608191905, -73.95039912248086 40.8308054784893, -73.95025831324037 40.83126842072188, -73.94996038589022 40.832229313221696, -73.94989561515777 40.83244442495422, -73.94987878881074 40.83241860586752, -73.94986768073684 40.83238773568867, -73.9498599213718 40.83234656800837, -73.94986320783119 40.8322961453443, -73.9498741531687 40.83224872555613, -73.9498837007557 40.832191795936495, -73.94989842402866 40.83207567905519, -73.94990624927375 40.831939578999375, -73.9499112074765 40.8318180828171, -73.94990464081187 40.831706074641176, -73.94988641922465 40.83152445316116, -73.94988245743664 40.8314264190863, -73.94988693409162 40.8312973432214, -73.94990982618894 40.83118831676401, -73.94994763825191 40.831107765017045, -73.95002062811393 40.83097468013599, -73.95009741209404 40.83085334740397, -73.95016696085868 40.83076152070656, -73.95021431079843 40.83069580503741, -73.9502410954495 40.830643866151696, -73.9502618698909 40.83059440823205, -73.95027207115173 40.83055991917747, -73.95027902240102 40.8305038096409, -73.9503371368395 40.8300090838946, -73.95035331153998 40.82990351053265, -73.95037068974797 40.82979124340518, -73.95040458660954 40.82963970468884, -73.95045871103065 40.82949084281661, -73.95051832574968 40.82936852896318, -73.95063541134292 40.829181129399345, -73.9508610468502 40.82886147438076, -73.9511120138877 40.82850861038109, -73.95126088864126 40.82832655996279, -73.95136557073714 40.82822252582841, -73.95145083933201 40.828134059291095, -73.95152072713468 40.82805042908781, -73.95160377002802 40.82793113934957, -73.95167660618641 40.827840364856904, -73.9517831474344 40.82773068320856, -73.95190810215465 40.82761490558351, -73.95194430353968 40.82760315030141)), ((-73.9499160239726 40.829750728084726, -73.94993731953898 40.829750737331196, -73.94996286134284 40.829766924006755, -73.94997560730326 40.829808986251706, -73.94996275429665 40.82990926789479, -73.94994131264467 40.830103363867515, -73.94993694225006 40.8302521759524, -73.94993684488406 40.830381579722165, -73.9498813489338 40.830549779758776, -73.94981738213414 40.83065651010442, -73.94973638503758 40.830753527458675, -73.94967667138897 40.83086672963136, -73.94960416502238 40.83099933634593, -73.9495657125992 40.831157839028585, -73.94956559489238 40.83131312298763, -73.94958672672783 40.83152988309964, -73.94959507093706 40.831759578619994, -73.94959059552981 40.8320442644348, -73.94956497692165 40.83212836483167, -73.9495139273426 40.83204746547453, -73.94946711550367 40.8319956836426, -73.94940754787893 40.83191478050384, -73.94937777765846 40.83185653605521, -73.94933951140835 40.83176917127294, -73.94933106214229 40.831678585904285, -73.94934821190499 40.83152977859029, -73.94938242378294 40.831348629388415, -73.94946784277947 40.83103809792374, -73.94956609269096 40.83065640048486, -73.94969418706269 40.83023266014889, -73.94978806133368 40.83000301002826, -73.9498904590728 40.82976365799207, -73.9499160239726 40.829750728084726)), ((-73.95513198246155 40.82382585815317, -73.95513229304727 40.82382584926905, -73.95513260362625 40.82382585029041, -73.95513291538524 40.82382585941669, -73.95513322595396 40.82382587574641, -73.95513353414573 40.8238259010802, -73.955133842332 40.823825934518446, -73.95513414814206 40.82382597606025, -73.9551344527612 40.82382602570607, -73.95513475500462 40.8238260825549, -73.95513505368636 40.82382614750678, -73.9551353499912 40.823826221462724, -73.95513564273489 40.82382630262126, -73.95513592954663 40.823826390981424, -73.95513621516754 40.82382648744559, -73.95513649367102 40.82382659111098, -73.95513676861346 40.82382670197892, -73.9551370376239 40.82382682004854, -73.95513730070176 40.823826946220294, -73.95513755903377 40.82382707869368, -73.95513781024957 40.82382721656728, -73.95513805553281 40.823827362542985, -73.95513829369936 40.82382751481948, -73.9551385259351 40.82382767249655, -73.9551387486827 40.82382783737395, -73.9551389654995 40.82382800765203, -73.95513917401477 40.82382818332981, -73.95513937304369 40.823828363506394, -73.95513956495579 40.82382854998369, -73.95513974856698 40.823828740960245, -73.95513992269174 40.823828936435554, -73.95514008733011 40.82382913640969, -73.95514024248156 40.82382934178309, -73.95514038933321 40.82382954985473, -73.95514052551303 40.82382976242472, -73.95514065220772 40.82382997769252, -73.95514076941605 40.82383019745908, -73.95514087713978 40.82383041902297, -73.95514097300695 40.82383064418418, -73.95514105820406 40.823830871142285, -73.95514113391604 40.82383110079816, -73.95514120014408 40.82383133135085, -73.95514125451612 40.82383156460043, -73.95514129821937 40.82383179784584, -73.95514133006724 40.82383203288764, -73.95514135361655 40.82383226882667, -73.95514136412628 40.823832504760674, -73.95514136515203 40.82383274159148, -73.95514135550965 40.82383297751761, -73.95514133401304 40.82383321343915, -73.95514130303376 40.823833448456504, -73.95514126020085 40.82383368256874, -73.95514120670036 40.823833914875834, -73.95514114253176 40.82383414627829, -73.95514106769558 40.823834375875634, -73.9551409833779 40.823834602767754, -73.95508640282873 40.823935166902054, -73.95506534099081 40.82397097051347, -73.95506371628322 40.82397373350191, -73.95493890758729 40.82417566960004, -73.95474163632012 40.82444575907301, -73.95456095253137 40.824686177999, -73.95447552278128 40.824792253310925, -73.9543799377812 40.824885250244385, -73.95415462524475 40.82505210107244, -73.95394313008524 40.82518157380112, -73.95383368659287 40.82523603253398, -73.95382722668228 40.82523323120727, -73.95389792391592 40.82517714871152, -73.95409095125326 40.82501147599457, -73.95430856732729 40.8248282764434, -73.95438018778863 40.82477476312847, -73.9544029304918 40.824752097642666, -73.95444749415668 40.8247041980795, -73.9546588979113 40.82440770944239, -73.95478918648287 40.82423434583164, -73.95501996165288 40.82395201269371, -73.95512613821097 40.82382781805943, -73.9551263623656 40.82382765425639, -73.95512659481389 40.82382749676007, -73.9551268343698 40.823827346470495, -73.95512707866438 40.82382720068526, -73.95512733125203 40.82382706210721, -73.95512758976129 40.823826931635885, -73.955127854194 40.8238268065699, -73.95512812454898 40.82382668871011, -73.95512839964012 40.82382657895671, -73.95512867946809 40.823826476409074, -73.95512896403288 40.823826381067235, -73.95512925333448 40.8238262929312, -73.95512954618687 40.823826212901054, -73.95512984140527 40.82382614007573, -73.95513014135979 40.82382607535679, -73.95513044367976 40.82382601874319, -73.95513074717968 40.82382597023451, -73.95513105423034 40.82382592983165, -73.95513136246099 40.82382589753372, -73.95513167187102 40.823825874241265, -73.95513198246155 40.82382585815317)), ((-73.9576160330949 40.82221074095902, -73.95820888725491 40.82157031472301, -73.95827113974237 40.821596837067894, -73.95790088298358 40.82211596814477, -73.95782170025349 40.822201966296305, -73.957718933685 40.82229585759974, -73.9576160330949 40.82221074095902)))",M072,4747,M072,M-14,M-14,M-14,M-14,"Riverside Dr to Henry Hudson Pkwy, W 153 St",109,7,30,"10027, 10031",M,13.35,False,Riverside Park,No,100005045,PARK,20100106000000.00000,19000922000000.00000,675 RIVERSIDE DRIVE,DPR,False,Riverside Park,N,Riverside Park,Flagship Park,Neighborhood Park,http://www.nycgovparks.org/parks/M072/,No,"70, 71",31,13,{7DF7CC7E-9717-4314-B32D-6A44E171A621} +"MULTIPOLYGON (((-74.17754923637835 40.541654639381186, -74.17754354057207 40.54163319939335, -74.17748215390819 40.54127483249673, -74.1774816022543 40.541262235851626, -74.17748440329493 40.54124932064014, -74.17749007759268 40.54123779320474, -74.17749531995614 40.5412307465677, -74.177503708393 40.54122247485035, -74.17751468694419 40.54121476105805, -74.17752592608156 40.541209163104575, -74.17753893314175 40.54120477542879, -74.17755805510183 40.54120231173112, -74.17758041915738 40.54120144325591, -74.17759497512903 40.541202024997965, -74.17761420148368 40.54120419885296, -74.1776392061345 40.541209556140124, -74.17765766829666 40.54121554851188, -74.17767764287677 40.54122432207497, -74.17769764078358 40.54123609526005, -74.17771045847884 40.54124572639027, -74.17772701612962 40.54126172837493, -74.1777354604835 40.54127227130302, -74.17774526364364 40.54128819728948, -74.17775284842394 40.54130663738372, -74.17786368800365 40.54159680794215, -74.177867036563 40.54160557390571, -74.17767474292414 40.541647993854376, -74.17767108062777 40.541643754428506, -74.17754923637835 40.541654639381186)))",R080,6060,R080,R-03,R-03,R-03,R-03,"Annadale Rd., Jefferson Blvd., N. Railroad St.",503,51,123,10312,R,0.3,False,Annadale Green,Yes,100003820,PARK,20100106000000.00000,19620920000000.00000,,DPR,True,Annadale Green,N,Annadale Green,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R080/,No,62,24,11,{E9E290EC-D8EC-499B-B273-0D8092EF020D} +"MULTIPOLYGON (((-73.95692550408418 40.60362571763368, -73.95812491904896 40.60349537268124, -73.95835595554293 40.60472858373897, -73.95799965029505 40.60476986278511, -73.95716481540369 40.60486657780917, -73.95692550408418 40.60362571763368)))",B051,5452,B051,B-15,B-15,B-15,B-15,Ave. S bet. E. 14 St. and E. 15 St.,315,48,61,11229,B,3.449,False,Kelly Park Playground,Yes,100004168,PARK,20100106000000.00000,19240612000000.00000,1301 AVENUE S,DPR,False,Kelly Park Playground,Y,Kelly Park Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B051/,No,45,17,11,{00F958D3-4F6E-4813-B588-F9DC236352F7} +"MULTIPOLYGON (((-73.9393568469474 40.791443473412656, -73.93944649986419 40.791320315858016, -73.93953780973762 40.791194879033036, -73.93969232707994 40.791259978833814, -73.93951123894018 40.79150874538317, -73.9393568469474 40.791443473412656)))",M344,5001,M344,M-11,M-11,M-11,M-11,E. 108 St. bet. 1 Ave. and 2 Ave.,111,8,23,10029,M,0.11,False,Humacao Community Garden,No,100004784,PARK,20100106000000.00000,20021120000000.00000,335 EAST 108 STREET,DPR,False,Humacao Community Garden,N,Humacao Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M344/,No,68,29,13,{48CF5D4C-74BB-4F63-824C-A3C0B148C8A3} +"MULTIPOLYGON (((-73.93204581404675 40.77209429321651, -73.9320957513545 40.772091917412446, -73.93209657172636 40.77209239336164, -73.93213433259497 40.77209098020647, -73.93240415800146 40.772244710649545, -73.93253618587397 40.77232084363529, -73.9325765865273 40.77235277211417, -73.93260986504565 40.772389141297616, -73.93262486124864 40.77242153666748, -73.93263339228098 40.77245526100033, -73.9326352729158 40.772489573075106, -73.93263046126239 40.77252372004689, -73.93261906230593 40.77255695185708, -73.9326013267087 40.77258853654119, -73.93249169725323 40.77255678275291, -73.93196535612579 40.772402413274, -73.93144863156468 40.772251947187286, -73.93144868606646 40.77225193281165, -73.93144606643972 40.77225145758835, -73.93112295310817 40.772159121793315, -73.9311249031295 40.77213474633416, -73.93154050614928 40.772118328398214, -73.93204448971437 40.77209435547069, -73.93204454895486 40.77209434019707, -73.93204581404675 40.77209429321651)))",Q477,5027,Q477,Q-01,Q-01,Q-01,Q-01,"Astoria Blvd., 30 Ave. bet. Main Ave. and 8 St.",401,22,114,11102,Q,0.778,False,Two Coves Community Garden / GOODWILL PARK (old),No,100000075,PARK,20090423000000.00000,20000209000000.00000,8-00 ASTORIA BOULEVARD,DPR,True,Two Coves Community Garden,Y,Two Coves Community Garden,Undeveloped,Garden,http://www.nycgovparks.org/parks/Q477/,No,37,12,12,{98848974-2EE8-4FA0-96EF-22E18B4274AE} +"MULTIPOLYGON (((-73.75086893086917 40.607023977075336, -73.75113087814213 40.60720986366233, -73.75078808537712 40.60749113750139, -73.75052749621268 40.60730413463415, -73.75086893086917 40.607023977075336)))",Q509,40302,Q509,Q-14,,,Q-14,Nameoke Ave. bet. Brunswick Ave. and Augustina Ave.,414,31,101,11691,Q,0.318,False,,,100041792,PARK,,20171121000000.00000,20-06 NAMEOKE AVENUE,DPR,False,Park,,Park,,Undeveloped,,No,31,10,5,{6C54FE84-DC9F-4456-AB3B-6080E46F0017} +"MULTIPOLYGON (((-73.91670534798169 40.85357397894145, -73.91670959508153 40.853569071627525, -73.91705744250127 40.85374198247959, -73.91701131929143 40.853791680753545, -73.91693244450158 40.853869080663166, -73.91687597864775 40.85391762600939, -73.91685302043805 40.853934141588034, -73.91679925941612 40.853969591197355, -73.9167936681024 40.85397300723141, -73.91678800216299 40.85397635117203, -73.91678226278623 40.85397962121911, -73.91677644997085 40.85398281827312, -73.91677056727936 40.853985938734645, -73.91676461471171 40.85398898260368, -73.91675859701064 40.85399195078414, -73.91675251299468 40.85399483967317, -73.91674636503352 40.85399765107349, -73.91674015550359 40.854000381384786, -73.91673388558748 40.854003033309404, -73.91672755766272 40.85400560234661, -73.9167211729131 40.85400809029824, -73.91671473371161 40.85401049626547, -73.91670824243249 40.854012818449, -73.91670169907569 40.8540150568489, -73.91669510720143 40.85401720966666, -73.91668846799337 40.85401927870422, -73.91668178264092 40.85402126126087, -73.91667505588563 40.854023159141015, -73.91666828773427 40.85402496694171, -73.91666147818131 40.85402668916542, -73.91665463315991 40.85402832311496, -73.9166477514841 40.854029868789425, -73.91664083552581 40.854031326190565, -73.9166338888441 40.85403269442042, -73.91662691262721 40.85403397167889, -73.91661991042962 40.854035160670016, -73.91661287988398 40.85403625779008, -73.91660582691789 40.85403726484436, -73.91659875390431 40.85403818093405, -73.91659166084334 40.854039006059246, -73.91658454892325 40.85403973841967, -73.91657742288446 40.85404038072035, -73.91657028272924 40.854040931160256, -73.9165631320166 40.85404138884145, -73.9165559719315 40.8540417546653, -73.91654880484586 40.854042028633536, -73.91654163194785 40.854042208945955, -73.91653445679201 40.854042298306695, -73.9165272805666 40.85404229491556, -73.91652010564243 40.85404219967482, -73.91651293320777 40.854042010784326, -73.91650576681819 40.85404173004764, -73.91649860766087 40.85404135656513, -73.91649145810551 40.85404089213947, -73.91648431934027 40.854040334970556, -73.91647719373488 40.85403968686111, -73.9164700836636 40.85403894601184, -73.91646299149602 40.85403811422547, -73.9164559184193 40.85403719060233, -73.91663680651057 40.853828140886854, -73.91653095619405 40.85377552247383, -73.9165471145126 40.85375684896496, -73.91658698947548 40.85371076633439, -73.91658730895924 40.85371039736387, -73.9166266684181 40.853664909571435, -73.91666614777664 40.85361928407662, -73.91670534798169 40.85357397894145)))",X283,5692,X283,X-05,X-05,X-05,X-05,Billingsley Ter bet. Phelan Pl and Sedwick Av,205,14,46,10453,X,0.267,False,Beanstalk Playground,Yes,100005090,PARK,20100106000000.00000,19970715000000.00000,,DPR,False,Beanstalk Playground,Y,Beanstalk Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X283/,No,86,29,15,{3EEB103B-5798-4471-9374-9491F1B1127E} +"MULTIPOLYGON (((-73.96344411176511 40.69695233754152, -73.96359572717304 40.69679163870973, -73.96363641614647 40.696802297431866, -73.9638276352567 40.69777214208625, -73.96301805848555 40.69790347307666, -73.9631605008782 40.6974484934278, -73.96317076997254 40.69741145233319, -73.9631839267363 40.697370919073364, -73.96320146541542 40.69732705621737, -73.96322125958355 40.69728248177384, -73.96324061948623 40.69724222874738, -73.96327214391543 40.69718405399838, -73.96329690248514 40.697146061169974, -73.96332252736413 40.697105444518705, -73.96335429477197 40.69706130791312, -73.96339160097301 40.69701205184581, -73.96344411176511 40.69695233754152)))",B221,6143,B221,B-02,B-02,B-02,B-02,"Flushing Ave., Steuben St., Williamsburg Pl.",302,33,88,11205,B,1.171,False,Steuben Playground,Yes,100003718,PARK,20100106000000.00000,19420209000000.00000,,DPR,True,Steuben Playground,Y,Steuben Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B221/,No,50,26,7,{0FD89D84-2EBD-4064-A438-B72021DCFE59} +"MULTIPOLYGON (((-73.96319254851623 40.712676957656484, -73.963347467695 40.71243462022397, -73.96383334215791 40.712611393759374, -73.96367950929582 40.7128520338193, -73.96319254851623 40.712676957656484)))",B154,5084,B154,B-01,B-01,B-01,B-01,S. 3 St. bet. Berry St. and Bedford Ave.,301,34,90,11211,B,0.327,False,Berry Playground,Yes,100003860,PARK,20100106000000.00000,19361208000000.00000,106 SOUTH 3 STREET,DPR,True,Berry Playground,Y,Berry Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B154/,No,50,18,7,{DD571D1C-CB51-4FD2-947F-4619889C6CA4} +"MULTIPOLYGON (((-73.84300675794019 40.86761829624457, -73.84301400255308 40.867618091784216, -73.84302124001697 40.867618403294685, -73.84302840628149 40.86761922888777, -73.8430354396838 40.867620560375265, -73.84304227856929 40.86762238596692, -73.84304886129416 40.86762468937013, -73.84305512977947 40.86762745159561, -73.8430610318943 40.8676306464583, -73.8430665131351 40.86763424776989, -73.8430715261328 40.86763822214792, -73.84307602589041 40.8676425362131, -73.84307997454093 40.86764715119289, -73.84308333659405 40.867652026517064, -73.84308608130836 40.86765711982074, -73.8430881862543 40.867662385148535, -73.8430896325568 40.86766777835078, -73.84309040610015 40.86767324898082, -73.84309050106175 40.86767875110576, -73.84307161259532 40.86854606681429, -73.84307137977898 40.868556757116956, -73.8430708203006 40.86856210977013, -73.8430695943207 40.86856739758208, -73.84306771381377 40.868572572843085, -73.84306519430888 40.86857758964926, -73.84306205845232 40.86858240210628, -73.84305833600143 40.86858696703115, -73.84305406026574 40.86859124394694, -73.8430492692976 40.86859519328391, -73.84304400588151 40.86859878088145, -73.84303831873517 40.86860197168672, -73.84303225655715 40.86860473875118, -73.84302587871575 40.86860705784231, -73.84301923864382 40.868608906520485, -73.84301239687886 40.868610267758676, -73.84300541631376 40.868611131737055, -73.84299835984363 40.86861148773526, -73.8429912891539 40.86861133493681, -73.84298427067488 40.868610672531474, -73.84297736725708 40.8686095087093, -73.84297063819002 40.86860785255586, -73.84296414868173 40.86860571856773, -73.84295795324714 40.86860312843097, -73.84295210996402 40.8686001020354, -73.8427122719181 40.868475251983874, -73.84270630510387 40.868472304650496, -73.84270054523009 40.86846912977493, -73.84269500770043 40.86846573458205, -73.84268970553988 40.868462128995084, -73.84268465414577 40.86845832294042, -73.842679865361 40.86845432453866, -73.84267535220415 40.868450146414474, -73.8426711277022 40.86844579759051, -73.84266720131498 40.86844129068657, -73.8426635836928 40.86843663652316, -73.84266028666792 40.868431847723194, -73.84265731376696 40.86842693779891, -73.84265467800832 40.86842191937498, -73.84265238411133 40.86841680326371, -73.84265043559392 40.8684116065792, -73.84264884192025 40.86840634014034, -73.84264760661478 40.86840101835972, -73.84264672964112 40.86839565654566, -73.84264621690046 40.86839026731307, -73.84264606717242 40.86838486506814, -73.84264628279735 40.868379463321446, -73.84264686136439 40.86837407827849, -73.84264780284576 40.86836872164559, -73.8426491036444 40.868363409626674, -73.84265076254414 40.868358154826964, -73.84265277239358 40.86835297164445, -73.84293868711778 40.86766126956086, -73.84294092716308 40.86765603715913, -73.84294380377095 40.86765098572183, -73.84294729073648 40.86764616113824, -73.84295135711626 40.867641606589785, -73.8429559696053 40.86763736075212, -73.84296108304088 40.867633460483795, -73.84296665700502 40.86762994264984, -73.84297264042333 40.86762683599644, -73.84297897985093 40.86762416836595, -73.84298562185387 40.86762196309839, -73.84299250588931 40.86762023992206, -73.84299957261142 40.867619014064594, -73.84300675794019 40.86761829624457)), ((-73.84170191323095 40.867890257227415, -73.84252320343369 40.86772883348244, -73.84234647327726 40.86818519746112, -73.84234440013225 40.86819055254561, -73.84234106326463 40.86819557902549, -73.8423375238581 40.8682004773589, -73.84233345715869 40.86820513454082, -73.84232889526866 40.86820951909796, -73.84232386673375 40.86821359865157, -73.84231840720435 40.86821734623557, -73.84231255707763 40.868220733989915, -73.84230635436147 40.86822374125529, -73.8422998418128 40.86822634557772, -73.84229306692487 40.86822852811184, -73.84228607599192 40.868230275413474, -73.84227891768282 40.86823157314127, -73.84227164302172 40.868232414161064, -73.84226429828796 40.868232791332126, -73.84225694042398 40.86823270293129, -73.84224961687829 40.86823214902347, -73.84224237983345 40.86823113418247, -73.84223527909765 40.86822966387929, -73.84222836446173 40.86822775078892, -73.84222168334858 40.86822540578213, -73.8422152653216 40.868222667620444, -73.84220921012708 40.86821949231633, -73.84169788301891 40.86795133015448, -73.84170191323095 40.867890257227415)), ((-73.84259896864252 40.868753651514304, -73.8426088420288 40.86875295359446, -73.84261857485424 40.86875300468986, -73.84263153332601 40.868754929601074, -73.84264437693572 40.86875676970815, -73.8426627934195 40.86876311986327, -73.84314514970208 40.86901077108035, -73.84315854696342 40.869019813101865, -73.84317132089113 40.869033119896244, -73.8431793993149 40.86904761255684, -73.84318302589418 40.8690630852036, -73.84318234246528 40.869077238177994, -73.84317705373931 40.86909204765436, -73.84317053900584 40.86910310132106, -73.84315663076437 40.86911656275413, -73.84314178732521 40.869126189528025, -73.8431247482626 40.86913276155417, -73.84274609607732 40.869258606528916, -73.84256704629564 40.86896707095243, -73.84255002875122 40.86893549095812, -73.84253518696158 40.868901821191095, -73.84252680916968 40.868878564506325, -73.8425202726365 40.868856711496356, -73.84251480935757 40.86883397566935, -73.84251529916104 40.868817992637915, -73.84252070346874 40.86880151474045, -73.84252611519807 40.86879242087202, -73.8425312252905 40.868785973132205, -73.8425366704816 40.86878078113271, -73.84254272258403 40.868775271187616, -73.84254974718652 40.868770346987226, -73.84255809284872 40.86876558757761, -73.84256884005258 40.86876106286985, -73.84257747012376 40.86875792562958, -73.84258887979924 40.86875516768488, -73.84259896864252 40.868753651514304)))",X187,4633,X187,X-12,X-12,X-12,X-12,E. Gunhill Rd. and Eastchester Rd. bet. Arnow Ave. and Adee Ave..,"211, 212",12,49,10469,X,1.82,False,Givan Square,No,100004044,PLGD,20100106000000.00000,19551203000000.00000,2910 EASTCHESTER ROAD,DPR,True,Givan Square,Y,Givan Square,Sitting Area/Triangle/Mall,Playground,http://www.nycgovparks.org/parks/X187/,No,83,36,16,{0C07D2BA-9DCB-4861-8F44-C57F66011A13} +"MULTIPOLYGON (((-73.93163164085813 40.80146853550344, -73.93181188791822 40.80122033230021, -73.93185852124124 40.80115611735763, -73.93359329530767 40.8018895237897, -73.93354666314438 40.80195373942661, -73.93336642056693 40.80220194531333, -73.93163164085813 40.80146853550344)))",M273,6397,M273,M-11,M-11,M-11,M-11,E. 124 St. bet. 1 Ave. and 2 Ave.,111,8,25,10035,M,1.64,False,Wagner Houses Pool,No,100004352,PARK,20100106000000.00000,19690313000000.00000,2435 1 AVENUE,DPR/NYCHA,False,Wagner Houses Pool,Y,Wagner Houses Pool,Building,Community Park,http://www.nycgovparks.org/parks/M273/,No,68,30,13,{8604CEA7-161C-4B26-A519-96323C424954} +"MULTIPOLYGON (((-73.99205855629361 40.76275832903541, -73.99188364257355 40.76299943497219, -73.9914092043623 40.76279994427555, -73.9915836963971 40.76255942164746, -73.99164298075044 40.762584240260345, -73.99182207518156 40.762659280430874, -73.99188117378209 40.76268402236479, -73.99194164736137 40.76270936950336, -73.99200123752343 40.76273431762538, -73.99205855629361 40.76275832903541)))",M281,5946,M281,M-04,M-04,M-04,M-04,"W. 47 St., W. 48 St., 9 Ave., 10 Ave.",104,3,18,10036,M,0.35,False,Clinton Community Garden,No,100004484,PARK,20100106000000.00000,19841116000000.00000,,DPR,False,Clinton Community Garden,N,Clinton Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M281/,No,75,27,10,{718BF506-1130-45C8-8894-02EB474EC6AC} +"MULTIPOLYGON (((-73.94777056105885 40.74730949818856, -73.94794916379887 40.74677663407416, -73.94987431818015 40.74714900275294, -73.94969886192257 40.747679992735684, -73.94777056105885 40.74730949818856)))",Q141,5495,Q141,Q-02,Q-02,Q-02,Q-02,"45 Ave., 45 Rd. bet. 11 St. and 21 St.",402,26,108,11101,Q,2.524,False,Murray Playground,Yes,100000131,PARK,20090423000000.00000,19410312000000.00000,11-01 45 ROAD,DPR,True,Murray Playground,Y,Murray Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q141/,No,37,12,12,{DA15E3BE-EA30-48CD-811E-1B26B53C001A} +"MULTIPOLYGON (((-73.89752469742209 40.66518067404603, -73.89738780923231 40.664641704509435, -73.89703381671828 40.66469344256561, -73.89702063526666 40.66464154119779, -73.89701439130154 40.66461695780787, -73.89696498752184 40.66442243349338, -73.8976799025971 40.66431364352701, -73.89789572774411 40.66512644436687, -73.89752469742209 40.66518067404603)))",B383,4887,B383,B-05,B-05,B-05,B-05,Livonia Ave. ber. Williams Ave. and Alabama Ave.,305,42,75,11207,B,0.918,False,Success Garden,No,100004727,PARK,20100106000000.00000,19900221000000.00000,461 WILLIAMS AVENUE,DPR,Part,Success Garden,Y,Success Garden,Sitting Area/Triangle/Mall,Garden,http://www.nycgovparks.org/parks/B383/,No,60,19,8,{1558A70B-2FC5-422D-A4D2-AE1823C4601F} +"MULTIPOLYGON (((-73.80459102744793 40.81610194891693, -73.80453915908824 40.816029421251685, -73.80441206437023 40.81608199208102, -73.8043207036852 40.81595427686758, -73.804341417904 40.815961451177444, -73.80434823168923 40.81596360232584, -73.8043567499621 40.8159657356545, -73.8043635828926 40.81596621280663, -73.80437061570926 40.81596643185425, -73.80438212618654 40.815965554486425, -73.80438762029779 40.8159642319695, -73.80439235405619 40.81596149617974, -73.80439739401187 40.81595660961695, -73.80440698038196 40.81594296080574, -73.80441947256838 40.81592625162395, -73.80442075941976 40.8159227454623, -73.80442149854203 40.815918879972955, -73.80442186054101 40.815910647323705, -73.80442065554368 40.81586371486837, -73.80442120713253 40.815831704861665, -73.80441738191085 40.81581326335511, -73.80438521937832 40.81572212690894, -73.80436013981088 40.81565529433574, -73.80435279615786 40.81563744658877, -73.80434157627468 40.81559957146599, -73.80432244659715 40.81556548482553, -73.80430514281944 40.815527580462884, -73.80429024551175 40.8155068896217, -73.80423643110944 40.815432154086615, -73.80423161369616 40.81542546330271, -73.8042000544962 40.81538603358562, -73.80418119217155 40.81535740529996, -73.80417386101364 40.81534057512589, -73.80414068218833 40.815284038559234, -73.80413738807661 40.815270832545636, -73.80412294149913 40.815234764622524, -73.80409951523856 40.81518222481736, -73.80409386209621 40.81515464642856, -73.80407189070995 40.815097105014814, -73.80406364502889 40.81506482521451, -73.8040517853115 40.81503703186219, -73.80399470381701 40.814907955430506, -73.80397824027928 40.81487986788445, -73.80394612894848 40.81483930162537, -73.80393802348051 40.81482906177268, -73.8039217109019 40.814811302301045, -73.80389556171662 40.81479399165493, -73.80386407482625 40.81477604337431, -73.80385722951398 40.81477056029572, -73.80383719240095 40.814758594591574, -73.80379375310861 40.814735111297985, -73.80375890679025 40.81471088709488, -73.80371941473622 40.81467646222081, -73.80370481954459 40.81466437878712, -73.80368554012365 40.81465152375249, -73.80364643146203 40.81461291848745, -73.80358793092181 40.81455782625231, -73.80353698035894 40.8145052097177, -73.80352145186374 40.814496533960465, -73.80351226386435 40.81448927378564, -73.80350091087234 40.81447743988624, -73.80348400012879 40.81446644118136, -73.80346860388563 40.814451517077444, -73.80343361789795 40.814417286187656, -73.80342619496774 40.81440714741715, -73.8034043491719 40.8143815981224, -73.8033729318551 40.81434622966454, -73.80334966377403 40.81432309487379, -73.80334296484465 40.81431663767347, -73.80332654912178 40.814296577163816, -73.80329627573552 40.81426719625505, -73.80325543351968 40.814214151991166, -73.80580238080904 40.81316062096767, -73.80580530561329 40.81317292581635, -73.80581287105028 40.81319523222419, -73.8058198268661 40.8132258059908, -73.80582874775716 40.81324258381253, -73.8058358662349 40.81326250134129, -73.80584483478872 40.81327716396874, -73.80586046787255 40.81330118680303, -73.80588618459952 40.813333454476066, -73.80591800030211 40.81337394316393, -73.80594078313503 40.813404753379935, -73.80594631042399 40.81341635841425, -73.80594991942567 40.81342978733307, -73.80597007432252 40.813499321799064, -73.80598483397543 40.8135383904908, -73.80599759324019 40.813586715649784, -73.80600267086004 40.81359401553728, -73.80601131487535 40.813623270197546, -73.80604291829722 40.8136903097161, -73.80607999438486 40.81376658854856, -73.80610829673391 40.81384715880165, -73.8053111701467 40.814177096635724, -73.80530394089584 40.81427731000353, -73.80528078923867 40.814598198950435, -73.80631770053509 40.814169012439685, -73.80632917641175 40.81419294267526, -73.80635732539098 40.81425713972493, -73.8063721415593 40.814290770341245, -73.80639606618499 40.81433669996136, -73.8064112738037 40.814371456853586, -73.8064457349223 40.81442692153028, -73.80646208767963 40.81445633317291, -73.80649065944915 40.81449912692968, -73.80654652858867 40.81457301299631, -73.806583543852 40.814643263610094, -73.80659009234209 40.81468202938091, -73.80659601620562 40.81469510105929, -73.80660947080084 40.81472054922345, -73.80661858528842 40.814749564188, -73.80663475798836 40.81478633708344, -73.8066477699368 40.8148058646185, -73.80665004164916 40.81481335697955, -73.80666201266568 40.814839101614794, -73.8066947293803 40.81488359970924, -73.80679836050196 40.81500074465068, -73.80681372382502 40.81502241028931, -73.80686062661998 40.81506914102791, -73.80687297552404 40.815087650762216, -73.80687683793215 40.81509227228998, -73.80688122991909 40.81509615809632, -73.80691500844272 40.81512120622202, -73.80691936034133 40.81512502082034, -73.80692823537456 40.81513490965558, -73.80696341399874 40.8151651794045, -73.80700833436046 40.81519790490125, -73.80703209168453 40.81523516679704, -73.80705676884944 40.81528018082301, -73.80706724580955 40.81530049740637, -73.8070716606439 40.815313682698026, -73.80707397413848 40.8153231391085, -73.80707744574563 40.815337057628916, -73.8070815350388 40.815350512525136, -73.80708548672395 40.81536646157353, -73.80709209339712 40.81538650693185, -73.80710035185899 40.81540958163075, -73.80710462628674 40.81542582207951, -73.80710824125241 40.81544303666529, -73.80711005382588 40.81546624555966, -73.80710665138558 40.81546771668598, -73.80694989461789 40.81553545191517, -73.80713940549298 40.81578459767225, -73.80716314985165 40.815774481558485, -73.80716502266796 40.815785499595215, -73.80717788859334 40.815811774261846, -73.80719133959886 40.81583125203799, -73.80719930804752 40.815846862006445, -73.8072183853748 40.81587214209771, -73.80723650242587 40.81591877501442, -73.8072357213773 40.8159285783421, -73.80726185113974 40.81597433045461, -73.80726611671638 40.81599610894996, -73.80726562087534 40.81601629911019, -73.8072667523697 40.816050424511374, -73.8072699115029 40.816092867609065, -73.80728190060648 40.816134631180816, -73.80729018659407 40.81616913053983, -73.80729102078504 40.81617494735661, -73.80729333398608 40.81619107555781, -73.8073187722429 40.81623008446357, -73.80732454604727 40.81624186183296, -73.80733347217654 40.816255053750524, -73.80733998945055 40.81626468377083, -73.80736539487816 40.81628475151538, -73.80740716809007 40.816314602601395, -73.80745768207042 40.81634512923503, -73.80748727328141 40.816378148614824, -73.80750346870575 40.81640163095098, -73.80754436759295 40.81645351663664, -73.80755639339552 40.81648349090605, -73.80757883289726 40.816520121031786, -73.80759311536247 40.8165554804447, -73.80761693164871 40.816615678916875, -73.80764913032412 40.81667384543418, -73.80766884825553 40.81672450617674, -73.80769731589223 40.81677810002576, -73.80720963286063 40.81683011429026, -73.80711097631736 40.816870852650055, -73.80701189258225 40.81689986301321, -73.80598292194446 40.81721303341902, -73.80522860584429 40.816965411285196, -73.8051789986132 40.8168982285991, -73.80520529346855 40.816864144115904, -73.80521225549477 40.81684363170571, -73.80521883897597 40.81682650633258, -73.80522293219374 40.81681462936263, -73.8052264140263 40.81679983914616, -73.8052273451442 40.816788273810026, -73.80522738373055 40.81677508966999, -73.80522740005746 40.81676951110656, -73.80522437231232 40.81675186251582, -73.80521764528952 40.81673379974963, -73.8052078930869 40.816711388765754, -73.80520286906247 40.81670030504112, -73.80519820179029 40.816684370030586, -73.80519265669994 40.816665435775576, -73.80518855626974 40.81665143419306, -73.80518839070469 40.81665090081796, -73.80518829091207 40.81665057376821, -73.80518462627207 40.81663873321885, -73.80518416951044 40.81663725833026, -73.80518131019835 40.81663091128477, -73.80518115709688 40.81663057423946, -73.80518108398869 40.81663044444405, -73.80517613943313 40.81662177509018, -73.80516708759052 40.81660590290837, -73.80515072634259 40.816578596444565, -73.80514507464561 40.816569766505935, -73.80513407920776 40.81655258801469, -73.80513289518584 40.816550939901454, -73.805120541459 40.81653374470525, -73.80511413427492 40.81652466855237, -73.80511322891866 40.816523383811024, -73.80511316045423 40.816523287341916, -73.80511313448082 40.81652325217854, -73.80509834296215 40.81650229777854, -73.80508992607153 40.816494251099435, -73.80507643179776 40.816481211574136, -73.80506795906292 40.81647483162263, -73.80504530090558 40.81645748212068, -73.80502393044277 40.81643997630391, -73.80501299825677 40.81643035489534, -73.8050034106225 40.81642341834617, -73.8049975891241 40.816417939770176, -73.80499149661206 40.816413128005244, -73.80498771066075 40.81641115221066, -73.80497608242719 40.81640607984281, -73.80495774109686 40.81639845130781, -73.80493370501293 40.81639063303584, -73.80490490486228 40.81638456717343, -73.80486426754966 40.816377990499056, -73.80483242471796 40.816372348106505, -73.80478869900975 40.81636965813456, -73.80464789059388 40.81617895869989, -73.80459102744793 40.81610194891693)))",X310,5521,X310,X-02,X-02,X-02,X-02,Longstreet Ave. bet. Harding Ave. and Giegerich Pl.,210,13,45,10465,X,22.07,False,Locust Point Marina,No,100004853,PARK,20100106000000.00000,20030722000000.00000,3104 HARDING AVENUE,DPR,False,Locust Point Marina,Y,Locust Point Marina,Building,Managed Sites,http://www.nycgovparks.org/parks/X310/,Yes,82,34,14,{A3406E9F-89F4-40C6-BBFF-992B4900D8F4} +"MULTIPOLYGON (((-74.08538230221099 40.6420611591626, -74.08605799317944 40.641958229588084, -74.0861960614189 40.6419814847375, -74.08618174556504 40.6420431584893, -74.08606247328258 40.642029420348095, -74.08607809829066 40.64233184427122, -74.0860249746017 40.64235156395959, -74.0859411261203 40.642382685543694, -74.08586014656534 40.64241274411348, -74.08577916457305 40.64244280262788, -74.08571187646271 40.64246777825745, -74.08554615099064 40.64252929092031, -74.08537777125407 40.64259178868077, -74.08526979900225 40.642631865329854, -74.08519151416328 40.64266092185362, -74.08513778879318 40.64256620816428, -74.08508908027761 40.642480339233806, -74.08504126052469 40.642396032024664, -74.08500980375429 40.64234057612596, -74.08543450786101 40.642270862009624, -74.08538230221099 40.6420611591626)))",R086,5070,R086,R-01,R-01,R-01,R-01,"Jersey St., Crescent Ave., Layton Ave., Beechwood Ave.",501,49,120,10301,R,0.949,False,Davis Playground,Yes,100003980,PARK,20100106000000.00000,19621001000000.00000,55 LAYTON AVENUE,DPR/DOE,False,Davis Playground,Y,Davis Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R086/,No,61,23,11,{71D7F33C-0E74-44EE-B680-4B4AAEE286E3} +"MULTIPOLYGON (((-73.95915817899227 40.67012686327602, -73.95912651054472 40.67004907630496, -73.95950879576891 40.67012920518261, -73.9594520645429 40.670284995095415, -73.95933975162077 40.67059341262463, -73.95932385796552 40.67063705499064, -73.95897991261005 40.670565270749954, -73.9591044163634 40.670223379439804, -73.9591378397889 40.67013159816833, -73.95915817899227 40.67012686327602)))",B459,6226,B459,B-09,B-09,B-09,B-09,Eastern Pkwy. to Union St. between Franklin Ave. and Classon Ave.,309,35,71,11225,B,0.44,False,Eern Parkway Coalition,No,100004635,PARK,20100106000000.00000,20121120000000.00000,,DPR,False,Eastern Parkway Coalition,N,Eern Parkway Coalition,Greenthumb,Garden,http://www.nycgovparks.org/parks/B459/,No,57,"20, 21",9,{522841F1-2688-435B-942F-C95E6D59294F} +"MULTIPOLYGON (((-73.88775245883497 40.83636145063211, -73.88779517543954 40.836288885322965, -73.887882907548 40.83631810343959, -73.88784438241733 40.836383548144106, -73.88810171148393 40.83646919018496, -73.88799271554574 40.83664995050604, -73.88764981969567 40.836535810701726, -73.88775245883497 40.83636145063211)))",X282,5775,X282,X-03,X-03,X-03,X-03,Southern Blvd bet. E 174 St and E 173 St,203,17,42,10460,X,0.186,False,Seabury Playground,Yes,100004865,PARK,20100106000000.00000,19970404000000.00000,1712 SOUTHERN BLVD,DPR,False,Seabury Playground,Y,Seabury Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X282/,No,79,32,15,{3DA31C1F-718F-4ABC-988F-AF010AD59F8F} +"MULTIPOLYGON (((-73.71326879448377 40.74156103682618, -73.71304171325748 40.74092984905584, -73.71299719909453 40.74093919621091, -73.71272317911765 40.740996729316294, -73.71271538758532 40.740998365021795, -73.71260193146601 40.74069380525614, -73.71329848873357 40.740544290494356, -73.71364706276242 40.741478172723994, -73.7136379637508 40.74148016634622, -73.71326879448377 40.74156103682618)))",Q352,5324,Q352,Q-13,Q-13,Q-13,Q-13,82 Ave. bet. 256 St. and 257 St.,413,23,105,11004,Q,1.16,False,Hillside Park (JHS 172),Yes,100000194,PARK,,19481104000000.00000,81-14 256 STREET,DPR/DOE,False,Hillside Playground,Y,Hillside Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q352/,No,24,11,3,{59908CB0-9877-472B-B877-9D0DD1A625F4} +"MULTIPOLYGON (((-73.98441469542125 40.71237532065284, -73.98437571099032 40.71209621739611, -73.98410958933746 40.71213034634472, -73.98409809362464 40.712060282324664, -73.98384113499158 40.71209073243157, -73.98381394443433 40.71189594364561, -73.98459111400679 40.711801283249685, -73.98464531526858 40.711794682544294, -73.98465013194819 40.71179409605363, -73.98467977566202 40.71191220918636, -73.98467615780454 40.71191271929439, -73.98470207615134 40.71206188873614, -73.98471978919012 40.71220885803319, -73.98473232149092 40.71232366039721, -73.98473191613891 40.71233668713057, -73.98471730148192 40.71233846730188, -73.98441469542125 40.71237532065284)))",M064,4716,M064,M-03,M-03,M-03,M-03,"Cherry St, Montgomery St and Gouverneur St",103,1,7,10002,M,0.68,False,Lillian D Wald Playground,Yes,100004990,PARK,20100106000000.00000,19311216000000.00000,356 CHERRY STREET,DPR,False,Lillian D Wald Playground,Y,Lillian D Wald Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M064/,No,65,26,7,{24849D6F-2872-4431-8383-17543FD62DCD} +"MULTIPOLYGON (((-74.18164990647155 40.523697642526365, -74.1826317382945 40.52334144415383, -74.18359623967228 40.52473529147969, -74.18261439251552 40.52509149806448, -74.18164990647155 40.523697642526365)), ((-74.18279037650088 40.52328389091538, -74.18374888559735 40.52293614095203, -74.18375761870135 40.522948762312055, -74.18377451129558 40.522942633276045, -74.18473029609724 40.524323849759426, -74.18375488035616 40.52467773691438, -74.18279037650088 40.52328389091538)), ((-74.18133122868785 40.52380842078768, -74.18149305198334 40.52374831041285, -74.18183237874682 40.52423281154756, -74.18246831571308 40.52514079393032, -74.18151142717613 40.52548837562911, -74.18079503816662 40.52446549992181, -74.18054054384706 40.52410212232887, -74.18133122868785 40.52380842078768)), ((-74.1815630039631 40.52357597340285, -74.18055159699625 40.52212348439269, -74.18120408580943 40.52188685861297, -74.18145750887831 40.522250802914286, -74.18178270188372 40.5221328691529, -74.18254069915504 40.52322140510184, -74.1815630039631 40.52357597340285)), ((-74.1827013143316 40.52316620372833, -74.18169001676668 40.52171390460697, -74.18201511833163 40.52159600184094, -74.18226854589598 40.521959945258175, -74.18251243803259 40.521871493074265, -74.1822590106583 40.52150755109174, -74.18230592238534 40.52149053762107, -74.18264604789942 40.521367182604976, -74.18328617941881 40.52228644570023, -74.18338755416455 40.5224320220051, -74.18365736216708 40.522819472438584, -74.1827013143316 40.52316620372833)), ((-74.18489529867 40.52426398522209, -74.18393728864278 40.5228795596755, -74.18488013142354 40.522537478868394, -74.18508260512075 40.52283007347454, -74.18462651623025 40.5229955527539, -74.1847538285413 40.52317953246838, -74.18520991837444 40.52301405358594, -74.18583815607522 40.52392189658158, -74.18489529867 40.52426398522209)), ((-74.18356569417236 40.52229981318721, -74.18402294502252 40.52213281615283, -74.18407934242067 40.52221446325889, -74.18453390119676 40.52204844647813, -74.18454332276724 40.52206208697337, -74.1847776203364 40.522401274823764, -74.18386775658851 40.522733578048545, -74.18356569417236 40.52229981318721)), ((-74.18012196081825 40.52562372288969, -74.18110718244037 40.52520983899019, -74.1813446821376 40.52554894315501, -74.1803057388947 40.525926314129535, -74.18022872032115 40.52578435035682, -74.18012196081825 40.52562372288969)), ((-74.1805598225627 40.525012341489585, -74.18087587400369 40.52487956958002, -74.18097998064442 40.52502821718523, -74.1809792050076 40.52502854349941, -74.17999983209349 40.52543997039846, -74.17989987752452 40.525289578282226, -74.18024469167993 40.52514472565345, -74.1805598225627 40.525012341489585)))",R132,6637,R132,R-03,R-03,R-03,R-03,"Hylan Blvd., Chester Ave., Arbutus Ave., Huguenot Ave.",503,51,123,10312,R,36.691,False,Bunker Ponds Park,No,100004989,PARK,20100106000000.00000,19941230000000.00000,,DPR,False,Bunker Ponds Park,N,Bunker Ponds Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R132/,No,62,24,11,{CE57A32B-7860-4EA4-8505-5CAD00DEA7AC} +"MULTIPOLYGON (((-74.12876980301016 40.633720081802934, -74.12920572330538 40.633679485418675, -74.12929785781328 40.63371010759648, -74.12898660414949 40.63419051814127, -74.12861862530187 40.63410016242689, -74.12876980301016 40.633720081802934)))",R033,6029,R033,R-01,R-01,R-01,R-01,Jewett Ave. and Castleton Ave.,501,49,120,10302,R,0.49,False,Levy Playground,Yes,100004243,PARK,20100106000000.00000,19340627000000.00000,133 JEWETT AVENUE,DPR,False,Levy Playground,Y,Levy Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/R033/,No,61,23,11,{739ACFEB-7CA1-484F-BF29-58E062CA50DB} +"MULTIPOLYGON (((-73.94028372866029 40.83222617107353, -73.94015895593297 40.83217074218853, -73.94026841777479 40.83202858831667, -73.94039319032747 40.8320840161841, -73.94036582288021 40.83211955446517, -73.94042820866325 40.832147268812655, -73.94041699333899 40.83214578800871, -73.94040402547525 40.83214593439237, -73.94039198176162 40.832148065041935, -73.94038190056067 40.83215239571262, -73.94035699954779 40.832186067640365, -73.94035663783494 40.83219545330882, -73.94035975470986 40.83220337026854, -73.94036532934649 40.832211200250526, -73.94037347965181 40.83221834628756, -73.94031109263936 40.8321906319102, -73.94028372866029 40.83222617107353)))",M127,5578,M127,M-12A,M-12A,M-12,M-12,"Edgecombe Ave., W. 157 St.",112,7,33,10032,M,0.08,False,Bushman Steps,Yes,100004664,PARK,20100106000000.00000,19341108000000.00000,,DPR/CDOT,False,Bushman Steps,N,Bushman Steps,Undeveloped,Triangle/Plaza,http://www.nycgovparks.org/parks/M127/,No,71,30,13,{1DCDBEA8-6803-4E48-8AA6-55FFF8962B2E} +"MULTIPOLYGON (((-73.98194087171696 40.724225697923806, -73.9819830134284 40.72416756224693, -73.98207089861224 40.724046321495976, -73.98239309332045 40.724181569170796, -73.98230498012546 40.724302715576925, -73.982262728542 40.72436080632812, -73.982091342632 40.72459644305481, -73.98206015215185 40.72458334929836, -73.98176992528387 40.72446151975034, -73.98184464766949 40.72435844126325, -73.98189247555919 40.72429246128069, -73.98194087171696 40.724225697923806)))",M293,4970,M293,M-03,M-03,M-03,M-03,Ave. B bet. E. 5 St. and E. 6 St.,103,2,9,10009,M,0.39,False,6th St and Ave B Community Garden,No,100004675,PARK,20100106000000.00000,19961231000000.00000,84 AVENUE B,DPR,False,6th St and Ave B Community Garden,N,6th St and Ave B Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M293/,No,74,27,12,{2B66F547-2EE0-4713-9D0D-2FE2CCB5FF52} +"MULTIPOLYGON (((-73.94198090658357 40.77699912103212, -73.94194720794599 40.77660320529415, -73.94201534713613 40.77620338490453, -73.94213037069379 40.775958790551975, -73.94214060994258 40.77594668843472, -73.9423489635676 40.7754894320216, -73.94257010451771 40.77514411137612, -73.94281571874266 40.77480099336086, -73.94328252849813 40.774162308259434, -73.94380056849195 40.77357804829762, -73.94427519745692 40.77312138067059, -73.94464897201595 40.77327615919653, -73.94544448213547 40.773605569795066, -73.94283309614445 40.77718799873053, -73.9427413132897 40.776876359461006, -73.94246102585765 40.77689930242762, -73.94251810568572 40.77711534167135, -73.94255195963028 40.777226997457035, -73.94262620228912 40.777456936343, -73.94253780695387 40.77742237873755, -73.94245463269912 40.777388623317776, -73.94201590227563 40.77721056764368, -73.94199012103425 40.777003702925825, -73.94198090658357 40.77699912103212)))",M081,69221,M081,M-08,M-08,M-08,M-08,"East End Av To East River, E 84 St To E 90 St",108,5,19,10028,M,14.938,False,Carl Schurz Park,No,100005113,PARK,,18760401000000.00000,97 EAST END AVENUE,DPR/CDOT,True,Carl Schurz Park,Y,Carl Schurz Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M081/,Yes,76,29,12,{8A27AE25-4BE8-4B3B-BDB3-11510964F2DA} +"MULTIPOLYGON (((-73.84272246194284 40.66930591177669, -73.84539563453298 40.67011606335726, -73.84304136300298 40.670453253719565, -73.84272246194284 40.66930591177669)))",Q095,5832,Q095,Q-10,Q-10,Q-10,Q-10,"N. Conduit Ave., 149 Ave., Cross Bay Blvd.",410,32,106,11417,Q,3.258,False,Vito Locascio Field / Loring Field,Yes,100000315,PARK,20090423000000.00000,19150303000000.00000,,DPR,True,Vito Locascio Field,Y,Vito Locascio Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q095/,No,23,15,8,{AD3F6CB3-EDFD-4F47-99BE-DEC6100897D4} +"MULTIPOLYGON (((-73.91805175769134 40.76082984232673, -73.9181017409316 40.76076824280944, -73.91816350616656 40.760796668817, -73.91839715842168 40.76050871349222, -73.91833539335518 40.7604802867082, -73.91838319961012 40.76042136992818, -73.91842989916965 40.760363815708885, -73.91873671821831 40.76050909219363, -73.91821260292875 40.76115501909548, -73.91790338018626 40.76101270397928, -73.917954431193 40.76094978784956, -73.91800165812111 40.76089158491929, -73.91805175769134 40.76082984232673)))",Q444,5381,Q444,Q-01,Q-01,Q-01,Q-01,38 St. bet. 31 Ave. and Broadway,401,22,114,11103,Q,0.582,False,Sean's Place,Yes,100000289,PARK,20090423000000.00000,19721012000000.00000,31-19 38 STREET,DPR,True,Sean's Place,Y,Sean's Place,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q444/,No,30,12,12,{D4C96DA9-3CE5-4B47-A3A0-0275FB125234} +"MULTIPOLYGON (((-73.98781632794064 40.74990449647913, -73.98781699697719 40.749904396593756, -73.98782193583625 40.7499045898243, -73.98782278242966 40.74990481053779, -73.98782369650219 40.749905112303914, -73.98782452531115 40.74990545818582, -73.98782531029967 40.7499058517899, -73.9878260455466 40.749906295817084, -73.9878267298681 40.74990678936668, -73.98782736208014 40.74990733153811, -73.98782792560743 40.74990791062299, -73.9878284263714 40.7499085221195, -73.98782884661242 40.74990915521962, -73.9878291875137 40.74990981442599, -73.98782945972928 40.74991051594894, -73.98782965852931 40.74991122376765, -73.98782977089017 40.749911929776204, -73.98782979799262 40.74991265198489, -73.98782975404903 40.74991337328553, -73.98782960826316 40.74991414590426, -73.98782853935855 40.749918761785025, -73.98770026360523 40.75047379481273, -73.98769410603057 40.75050043922449, -73.9876924868042 40.75050337740229, -73.9876904306329 40.75050635245408, -73.98768802753978 40.75050919869644, -73.98768532726535 40.75051187471135, -73.98768233099864 40.750514353483744, -73.98767905650172 40.75051663321448, -73.9876755357507 40.750518686891816, -73.98767368718184 40.75051958810042, -73.98767180545492 40.75052050461405, -73.98766787745883 40.750522068372334, -73.98766528764804 40.750522895659984, -73.98766378491875 40.7505233727672, -73.98765956691228 40.75052440789714, -73.9876552447569 40.7505251557544, -73.98765085042338 40.75052561814343, -73.98764641233062 40.75052579416667, -73.98764199323811 40.75052567662686, -73.98763758604161 40.75052526372226, -73.98763324639131 40.750524572568374, -73.9876292205752 40.75052364551551, -73.98760608953468 40.75051389415195, -73.98751168044062 40.75047430942155, -73.98749555913491 40.750465886141214, -73.98748459687822 40.75045818382404, -73.98747335929485 40.750447454875506, -73.98746393978676 40.75043428845417, -73.98745834877636 40.75042603741027, -73.98745407578262 40.75040468955153, -73.98745667029932 40.75038514795501, -73.98746405794218 40.75037272357846, -73.98747261056886 40.75036125026241, -73.98758152986576 40.75021513785863, -73.98759709649426 40.750194255902365, -73.98763211533127 40.750175029363206, -73.98763862283063 40.750170577960326, -73.987646634714 40.75016306409767, -73.98765262523575 40.750156025484905, -73.98777176535661 40.74998860171723, -73.98777419695826 40.74998514313191, -73.98777635035687 40.74998134772775, -73.98777824927583 40.74997699038079, -73.98777903118307 40.74997481934384, -73.98780665393124 40.74991681437737, -73.98781180079663 40.74990623217574, -73.98781288199285 40.74990563075216, -73.9878136836971 40.74990526793305, -73.98781454696697 40.74990494744423, -73.98781541851353 40.74990469269327, -73.98781632794064 40.74990449647913)))",M036,4773,M036,M-05,M-05,M-05,M-05,"Broadway, Ave of the Americas, bet. W. 34 St. and W. 35 St.",105,4,14,10001,M,0.21,False,Herald Square,Yes,100005089,PARK,20100106000000.00000,18461019000000.00000,1 HERALD SQUARE,DPR,True,Herald Square,Y,Herald Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M036/,No,75,27,12,{7DE29D05-C675-42E1-93C0-F33E0BF2B595} +"MULTIPOLYGON (((-73.89082774316519 40.72834405034177, -73.89094873460766 40.728328277304634, -73.89087381525842 40.728404471368165, -73.89082774316519 40.72834405034177)))",Q019,5858,Q019,Q-05,Q-05,Q-05,Q-05,"Grand Ave., 57 Ave. bet. 72 Pl and Mazeau St.",405,30,104,11378,Q,0.008,False,Garlinge Triangle,Yes,100000167,PARK,20090423000000.00000,19221110000000.00000,,DPR,False,Garlinge Triangle,N,Garlinge Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q019/,No,30,15,6,{89955BC8-61D4-4528-B0E3-58C5CAE00730} +"MULTIPOLYGON (((-73.82491051650112 40.66599969856347, -73.82469772254177 40.66599787693032, -73.8243390289736 40.666008737528635, -73.82436845222092 40.66533602188898, -73.82643609883796 40.6653659171516, -73.82794998845411 40.665446823598224, -73.82800059510527 40.665446603004355, -73.82805061968082 40.66545243659884, -73.82809882083596 40.66546417754415, -73.82814400371407 40.665481535891836, -73.82818504714086 40.665504080423986, -73.82822093315325 40.66553125220448, -73.82825077061645 40.66556237812151, -73.82827220957056 40.665594286650695, -73.8282738212062 40.66559668443345, -73.82828187484544 40.665615490258396, -73.8282886894743 40.66563139996973, -73.82829394567045 40.66565456552651, -73.82829717689508 40.66567005565042, -73.82829745376272 40.665671380725094, -73.82829745149729 40.66569615035936, -73.82829745089857 40.6657092465862, -73.82829745035652 40.665709916570485, -73.82828950103244 40.66574797408737, -73.8282700918642 40.66578891326287, -73.82824366044545 40.66582750600796, -73.82821068042286 40.665863056024534, -73.82817174829022 40.66589492483046, -73.82812756208996 40.66592253623087, -73.82807891899989 40.66594539522593, -73.8280266952234 40.665963089782316, -73.82718317556187 40.66600339988609, -73.82607952315858 40.66601958397965, -73.82561795610337 40.666020552991355, -73.82491051650112 40.66599969856347)))",Q096B,69235,Q096B,Q-10,Q-10,Q-10,Q-10,N Conduit Av-Belt Pkwy bet. 114 and 117 Sts,410,32,106,11420,Q,5.593,False,Southern Fields,Yes,100007898,PARK,,19430402000000.00000,114-30 NORTH CONDUIT AVENUE,Unknown,False,Southern Fields,Y,Southern Fields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q096B/,No,31,10,5,{A7BB8755-91DC-405B-9CB3-7BC56D6E433C} +"MULTIPOLYGON (((-73.76564327191497 40.773231742692296, -73.76423841193169 40.77199447272572, -73.76414292634992 40.77191037533357, -73.76402151391873 40.7718034428546, -73.76385133690272 40.7716535615172, -73.76373227874541 40.7715487020157, -73.7636869938132 40.77150881667066, -73.76333194862524 40.771196109294344, -73.7632068712706 40.771085947300556, -73.76317796327241 40.77106048640084, -73.76312333782023 40.77101237441527, -73.76316733514862 40.771001463370986, -73.76329214394086 40.77097051099052, -73.76342606457192 40.77093729800203, -73.76353454251766 40.77091039562403, -73.76366874031619 40.77087711448402, -73.76383078709095 40.77083692575639, -73.76397806250876 40.770814315948165, -73.76411454626282 40.77079766232166, -73.76422983520783 40.77078359464455, -73.76434079533342 40.770770055600885, -73.7644337814916 40.77075870935842, -73.76455450821337 40.77074397889511, -73.76486120694172 40.770706554304816, -73.76503363683862 40.77068551363456, -73.76514348867373 40.770672109335756, -73.7653185869815 40.77065074229199, -73.76549534652642 40.7706291721474, -73.7656921926241 40.77060515087946, -73.76580592146036 40.77059127296308, -73.76596903679447 40.77057136731066, -73.76612293879438 40.77055258546904, -73.76628660732459 40.77053261205171, -73.76653068855272 40.77050282465854, -73.76663948097944 40.77049445692226, -73.7668210468803 40.7704804920525, -73.76700474296145 40.770466362809714, -73.76705763325006 40.77046229410276, -73.76718105653374 40.7704528000841, -73.76728871850668 40.77044451860094, -73.76732545058074 40.770441693152634, -73.7674491486592 40.77043217778971, -73.76758517681439 40.770421713718726, -73.76765307595001 40.77041649084661, -73.76776341630963 40.77037853993243, -73.76792200574717 40.770323994319575, -73.76801742255479 40.770291175705395, -73.76815923377531 40.77025426482082, -73.76828146679426 40.77022244997789, -73.76841319943685 40.77018816239834, -73.76853543102871 40.77015634728329, -73.76863385095476 40.7701307301389, -73.7687784866285 40.77009308304742, -73.76887631834225 40.770067618502225, -73.76902071281346 40.77003454969832, -73.76914760250641 40.77001259301185, -73.76930110521626 40.76998603115519, -73.76937562661817 40.76997313650653, -73.769467900713 40.76995716878267, -73.76956995954988 40.76993950869142, -73.76985210402167 40.76989068523963, -73.77011813688242 40.7698446493392, -73.77032340537963 40.769796885210084, -73.77048632478476 40.76975897525436, -73.77057013093707 40.769739474202865, -73.77087053224083 40.7709365567822, -73.77131163530622 40.770850005668, -73.7717413585812 40.77076568609098, -73.77190721703161 40.77143638920808, -73.77127775853276 40.77157271984867, -73.77100237333319 40.77163236269741, -73.76948265408656 40.7719614885294, -73.76957106794882 40.77218866137044, -73.76957102785671 40.77218860906089, -73.76972599804441 40.77258688224434, -73.76963725144822 40.77260557405511, -73.76955789297465 40.77262228815175, -73.7693748638356 40.77266083732738, -73.76927567386818 40.77268172860455, -73.7658402579798 40.7734052240496, -73.76583999110542 40.773404988475185, -73.76579175383574 40.773362508118346, -73.76571464684599 40.773294600886686, -73.76564327191497 40.773231742692296)))",Q012,6269,Q012,Q-11,Q-11,Q-11,Q-11,"214 Pl., 214 La., 215 Pl, Cross Island Pkwy. bet. 33 Ave. and 35 Ave.",411,19,111,11361,Q,45.79,False,Crocheron Park,No,100000011,PARK,,19240917000000.00000,,DPR,True,Crocheron Park,Y,Crocheron Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q012/,No,26,11,6,{701B0F2F-422F-4240-AF89-51F0B349C711} +"MULTIPOLYGON (((-73.89348004672237 40.8439112059214, -73.89319448539857 40.843742847678, -73.89316597574468 40.84376947858004, -73.8931545752044 40.84378012625937, -73.89288179998034 40.84361930540306, -73.89289241511918 40.84360819236653, -73.89315183809613 40.84376114312584, -73.89319331539981 40.843723421152674, -73.89347832360268 40.84389354925863, -73.89349068075288 40.84390010995724, -73.89349021039865 40.84390060119224, -73.89348777785311 40.84390314554111, -73.89348004672237 40.8439112059214)))",X148G1,5661,X148G1,X-06,X-06,X-06,X-06,N/B Cross Bronx Exwy bet. Belmont Av and Crotona Av,206,17,48,10457,X,0.025,False,Strip,No,100005138,PARK,20100106000000.00000,19610126000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148G1/,No,79,33,15,{9BDF4C00-F1A4-4E8D-AEC3-A64BB51FE04D} +"MULTIPOLYGON (((-73.96761394640824 40.70580895476399, -73.96782025336648 40.70567443928874, -73.96788737455529 40.70584175685691, -73.96826816652168 40.706730467311466, -73.9674415239687 40.70687921526225, -73.96738957673143 40.70688856227326, -73.96735818113926 40.70680725791145, -73.96716811092267 40.70631502125369, -73.96710167263191 40.70614296137797, -73.96735343106042 40.705978813087945, -73.96761394640824 40.70580895476399)))",B382A,5210,B382A,B-01,B-01,B-01,B-01,Division Ave. between Wythe Ave. and Kent Ave.,301,33,90,11211,B,1.93,False,Roberto Clemente Ballfield,Yes,100003864,PARK,20100106000000.00000,19860620000000.00000,513 KENT AVENUE,DPR,False,Roberto Clemente Ballfield,Y,Roberto Clemente Ballfield,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B382A/,No,50,26,7,{AA2F0155-AA55-41D0-A42E-FE1D73E4884D} +"MULTIPOLYGON (((-73.9170937251771 40.880519590220246, -73.91740065668141 40.88025052140034, -73.91745182642224 40.88028459012376, -73.91747649250554 40.880300604018174, -73.91750043054772 40.88031724142445, -73.91752361209475 40.88033448611399, -73.91754600988354 40.88035231825695, -73.91756759902802 40.88037071442348, -73.91758835463544 40.88038965658637, -73.91760825063335 40.880409121314884, -73.91762726925171 40.88042908698504, -73.91763379743641 40.88043829552365, -73.91763989829819 40.88044767394903, -73.91764556592258 40.88045720784922, -73.9176507943929 40.880466884613234, -73.91765557422988 40.88047669432897, -73.91765990188968 40.88048662438719, -73.91766377027018 40.880496661275565, -73.91766717819719 40.88050679508791, -73.91767011619453 40.88051701321071, -73.9176725854653 40.88052730213755, -73.9176745800915 40.88053765015792, -73.91767610127279 40.88054804646683, -73.91767714309802 40.8805584739508, -73.91767770439051 40.88056892450466, -73.91767778635659 40.88057938192054, -73.91767739138004 40.88058983719519, -73.91767651473374 40.880600275017, -73.91767515999366 40.880610681881194, -73.91767332954464 40.88062104788408, -73.91767102340313 40.8806313595184, -73.91766824751788 40.88064160328099, -73.91766500190312 40.88065176746556, -73.91766129369175 40.880661840370735, -73.91765712289924 40.88067180938976, -73.91765250021882 40.88068166192334, -73.91764742685127 40.88069138626598, -73.91764190874419 40.88070096981501, -73.91763595658874 40.880710401772184, -73.9176295763292 40.880719672236296, -73.91762277391432 40.88072876770417, -73.91761555766348 40.880737676475434, -73.91760793707705 40.880746391352844, -73.91759992166313 40.88075489883583, -73.91759152092749 40.880763187224716, -73.9175827455537 40.880771252024665, -73.91756790686803 40.88078652269389, -73.9175378753926 40.88081366173313, -73.9170937251771 40.880519590220246)))",X110B,5718,X110B,X-08,X-08,X-08,X-08,Kappock St at the Henry Hudson Pkwy,208,11,50,10463,X,0.5,False,Phyliss Post Goodman Park,Yes,100003871,PARK,20100106000000.00000,19350720000000.00000,,DPR,True,Phyllis Post Goodman Park,Y,Phyllis Post Goodman Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/X110B/,No,81,34,16,{07A80CCF-B95B-47EC-865B-E4A59A53AA50} +"MULTIPOLYGON (((-73.86234428805405 40.74973583049712, -73.86267088200422 40.74965265148371, -73.86263972566465 40.749746401248366, -73.86234957461862 40.749762981701316, -73.86234428805405 40.74973583049712)))",Q172,6169,Q172,Q-04,Q-04,Q-04,Q-04,Roosevelt Ave. bet. National St. and 104 St.,404,21,110,11368,Q,0.041,False,Corona Plaza,No,100000382,PARK,20090423000000.00000,19280221000000.00000,,DPR,True,Corona Plaza,Y,Corona Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q172/,No,39,13,14,{5407EF6B-C9A6-45A2-82D9-1F80341BEEE0} +"MULTIPOLYGON (((-73.91592305902948 40.67570857551631, -73.9159496247946 40.67542108562409, -73.9161630762703 40.675432639179625, -73.91616071165934 40.67545822649799, -73.91615599443301 40.67550926336429, -73.91615117645311 40.67556140779037, -73.91614654072725 40.67561158112086, -73.91614147213714 40.675666424207414, -73.9161365078712 40.675720130018675, -73.91592305902948 40.67570857551631)))",B476,5267,B476,B-16,B-16,B-16,B-16,Pacific St. between Saratoga Ave. and Hopkinson Ave.,316,41,73,11233,B,0.145,False,Sh'ma Yisrael,No,100004809,PARK,20100106000000.00000,20021120000000.00000,2084 PACIFIC STREET,DPR,False,Sh'ma Yisrael,N,Sh'ma Yisrael,Greenthumb,Garden,http://www.nycgovparks.org/parks/B476/,No,55,25,8,{C7366751-77D6-4390-959E-43234C75B54D} +"MULTIPOLYGON (((-74.0018714077467 40.72849670723872, -74.00210784994128 40.728218590946874, -74.00259472007045 40.728458758382544, -74.00236650018144 40.72894085601205, -74.00205516008248 40.72878749996578, -74.00209675119181 40.728738578183034, -74.0021359843463 40.72869242909489, -74.00217517246672 40.7286463340244, -74.0018714077467 40.72849670723872)))",M120A,4659,M120A,M-02,M-02,M-02,M-02,"W. Houston St., Ave. of Americas, Macdougal St.",102,3,6,10012,M,0.607,False,William F. Passannante Ballfield,Yes,100004230,PARK,20100106000000.00000,19340509000000.00000,244 6 AVENUE,DPR,False,William F. Passannante Ballfield,Y,William F. Passannante Ballfield,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M120A/,No,66,26,10,{08281F0C-4311-46FD-84E3-1ED55833A778} +"MULTIPOLYGON (((-73.89569888902945 40.72417811847204, -73.89570969041274 40.72417319346218, -73.89573873731715 40.724281249431954, -73.89594012416643 40.7250304099215, -73.89560669480794 40.725000214776465, -73.8951905159628 40.72496252407068, -73.8950056971203 40.7249457863071, -73.89480330962313 40.72493259371291, -73.8947961421158 40.724932125202656, -73.89478455276462 40.72491946425165, -73.89478154686192 40.72491009170065, -73.89469379428743 40.72463641318909, -73.89504815099063 40.72447483767815, -73.89528618116788 40.724366303430756, -73.89555685169378 40.72424288405902, -73.89559039301618 40.72422759050349, -73.89569888902945 40.72417811847204)))",Q360M,5547,Q360M,Q-05,Q-05,Q-05,Q-05,58 Ave. bet. Brown Pl. and 69 St.,405,30,104,11378,Q,1.47,False,Frontera Park,Yes,100000461,PARK,20090423000000.00000,19550825000000.00000,,DPR,True,Frontera Park,Y,Frontera Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q360M/,No,30,15,6,{FDC80590-FB33-438A-A179-BD4799020F5A} +"MULTIPOLYGON (((-74.10086903940999 40.644686463358624, -74.10064138463811 40.64467802233597, -74.09980384687553 40.644691444154, -74.09967502960805 40.64322843359362, -74.10003319739798 40.643214548173546, -74.10006720838402 40.64360079431041, -74.10025317217885 40.6435935848828, -74.10021916130219 40.64320733879959, -74.10040119690991 40.643200281140196, -74.10037468279151 40.64303714648738, -74.10030788618022 40.64262617105349, -74.10029826392653 40.64256696762978, -74.1002863781387 40.642493844157215, -74.10026863599244 40.642384676217645, -74.10025089390552 40.64227550917451, -74.10022991110846 40.64214641376718, -74.10022853174513 40.64213792577774, -74.10021522379522 40.642056050490154, -74.10017124796705 40.64178546395778, -74.10014622649149 40.641631517723404, -74.10011787968071 40.64145710017692, -74.10010091366406 40.64135270697587, -74.10008466242103 40.64125271218429, -74.10006254195955 40.641116605381065, -74.10000731935864 40.64077682275672, -74.09997411590145 40.6405725157521, -74.09995135397949 40.640432464301284, -74.09991988093287 40.640238801706126, -74.1049357437257 40.63904345401715, -74.10534695929374 40.638998418573166, -74.10644920871724 40.64417741498933, -74.10521482044265 40.64431121719185, -74.10519561698477 40.6443146531288, -74.10517656878883 40.64431908759583, -74.10516035352096 40.644323716682784, -74.10514613286226 40.64432846551385, -74.10513142416494 40.64433410720338, -74.10512035418313 40.644338879265916, -74.10510135510094 40.64434823230893, -74.10508044534738 40.64436047325723, -74.10506269818046 40.644372794160155, -74.10504757425429 40.644385036120056, -74.10503242613079 40.64439918359771, -74.10501659052251 40.644419709174784, -74.10500337585115 40.644438692469535, -74.10499220500539 40.64445601604181, -74.10497787935817 40.644480473700625, -74.1049655462244 40.64450372104284, -74.10495824029827 40.64451892846703, -74.10495113192962 40.644534968690245, -74.10494609717725 40.644547238349844, -74.10494269555193 40.64455604402449, -74.10493665489807 40.644572940566206, -74.10493301929083 40.64458406709075, -74.10492968733516 40.644595078071724, -74.10483716049994 40.644797237954414, -74.10474953559509 40.64498868432473, -74.10469188376203 40.64511464464071, -74.1046799986486 40.64513121599779, -74.10466501702389 40.6451484097287, -74.10464882912044 40.64516385304649, -74.10463286895971 40.64517676479687, -74.10461636153187 40.64518824431763, -74.10459838340564 40.64519898314635, -74.10457786407306 40.64520936857824, -74.1045544898122 40.64521912894061, -74.10453199054389 40.6452267128498, -74.1045113430388 40.64523226890476, -74.10448895735445 40.645236895399094, -74.10446987800832 40.64523975476954, -74.10445689912781 40.64524115155672, -74.10444402123198 40.645242108797625, -74.10428739581633 40.64526088807078, -74.1041168612658 40.64527821097809, -74.10401926221415 40.64528667231994, -74.10385575451834 40.64529849171817, -74.10375002375007 40.64530457289989, -74.10361480993618 40.64531056978805, -74.10354394373499 40.64531291733057, -74.1034476544194 40.6453152318689, -74.10341939074914 40.64531620733651, -74.1033819905198 40.64531708835182, -74.10333111554112 40.6453175375073, -74.10331166629337 40.64531748113858, -74.10329648011556 40.64531734979653, -74.10327703997882 40.64531706918458, -74.10325624237544 40.6453166294959, -74.10323194846893 40.64531593359261, -74.10320958380629 40.64531511798486, -74.1031873252943 40.645314139283606, -74.10316567189109 40.64531302946005, -74.10312238681888 40.64531033700894, -74.10307675252257 40.645306813667425, -74.10305149860162 40.64530456429134, -74.10301649987021 40.645301078222076, -74.10297485741695 40.645296387794225, -74.10291657157063 40.64528881347741, -74.10283982790514 40.64527702230031, -74.10277819122632 40.64526613339916, -74.10275096167419 40.64526073390758, -74.10271898242208 40.6452541643757, -74.10269133759839 40.645248561723655, -74.10265799922968 40.645241519715675, -74.10261822198785 40.6452327022179, -74.10257081693364 40.645221596988456, -74.1025274214505 40.64521085557649, -74.10248104345656 40.645198757923374, -74.10243717310739 40.64518671565106, -74.10239657343516 40.64517504506568, -74.10230056949021 40.6451505598559, -74.10220838331522 40.64512622606222, -74.10204948127178 40.64508055059063, -74.10190285345375 40.645034076070075, -74.10175949348019 40.644984450257894, -74.10162518139337 40.644934036422626, -74.10153633394258 40.6448985173997, -74.10144102814223 40.64485841946464, -74.10139485625334 40.64483773294527, -74.10134081600951 40.644814327471394, -74.10125862129499 40.64478034676049, -74.1012180390381 40.64476427040634, -74.1011476746779 40.644737811141034, -74.10112119715434 40.64472914442093, -74.10109497643458 40.644721423914056, -74.10106636558692 40.6447139342335, -74.10103856862968 40.64470755867283, -74.10100641405214 40.64470124906866, -74.10097548267989 40.64469622702369, -74.10095909948788 40.644694045943154, -74.10093781767519 40.64469145852343, -74.10092277380826 40.644689958855274, -74.10090693691818 40.6446886291785, -74.10089104365458 40.64468754629113, -74.10086903940999 40.644686463358624)), ((-74.10626350914644 40.64590930127106, -74.10626414983837 40.645850599473555, -74.105500045825 40.64587650759071, -74.10417101599846 40.64581025496861, -74.10396058735263 40.64580117184436, -74.10381626627782 40.645811385323896, -74.10381358508204 40.64579021385094, -74.10290289131021 40.6457829465752, -74.10267773527565 40.64573142203436, -74.1026225674737 40.645728200593, -74.10079890547671 40.64565287587072, -74.1007411820811 40.64529199860571, -74.10071812338717 40.64515014569943, -74.10071515319267 40.645131869573994, -74.10071224743758 40.64511398871966, -74.10118229587167 40.64521373539851, -74.10209014097862 40.645434425521714, -74.1022067950095 40.64546005422503, -74.10228791902799 40.6454764832013, -74.10235038957366 40.645488316266885, -74.1024213262147 40.645500901796645, -74.10249206165619 40.64551255902731, -74.10255588631124 40.645522319581765, -74.10260792744732 40.645529751067585, -74.10265400576658 40.645535937932806, -74.10268303094003 40.645539590639004, -74.10270572984257 40.64554244662585, -74.10280100759054 40.6455532334573, -74.10290999660538 40.64556367925184, -74.10298347088212 40.64556958842082, -74.10308587024105 40.64557631450408, -74.103203508249 40.64558188316339, -74.1033013713013 40.6455847625081, -74.1034017347536 40.64558606901695, -74.10348520268936 40.64558588497584, -74.10470184813917 40.645567709908065, -74.10470654210506 40.64560489525201, -74.10625342480449 40.64558655841389, -74.10625389116348 40.64554384548381, -74.10747501717601 40.64554703055817, -74.10747475558306 40.64557105573963, -74.10747475144152 40.645571420453585, -74.10747184445998 40.64583796768045, -74.10626350914644 40.64590930127106)), ((-74.10661640035684 40.64434376602797, -74.10710134207415 40.644296711771055, -74.10746055908008 40.645028573143456, -74.10727105361609 40.64503432607797, -74.10681736983247 40.64504809945955, -74.10676388538391 40.6450497232319, -74.1067204837952 40.64505104045185, -74.10668912986215 40.64505199257536, -74.10661118834399 40.645054358477815, -74.10635307101009 40.64506219244781, -74.105492711692 40.64511716279066, -74.10511732776597 40.64514114513756, -74.10502564798826 40.64514700212593, -74.10490852292565 40.645154484278784, -74.10514017984886 40.644617760796855, -74.10515007094742 40.64460008357628, -74.10517282786056 40.64456937488963, -74.1051989803542 40.64454330796777, -74.10522616824507 40.64452234963575, -74.10525619430094 40.64450416049619, -74.10528541606347 40.6444902396434, -74.1053166395543 40.64447870512563, -74.1053442892282 40.64447096775857, -74.10538773548498 40.64446297367027, -74.10608330363533 40.64439549043603, -74.10610941983133 40.64439295659622, -74.10654265950151 40.64435092145178, -74.10661640035684 40.64434376602797)), ((-74.10265721554072 40.645464450100576, -74.1026148684338 40.64545825090225, -74.10257012845241 40.64545127757549, -74.10252665432263 40.64544407797315, -74.10247792536475 40.64543551064669, -74.10242053423845 40.64542473934075, -74.10237735474745 40.64541614541682, -74.10233691123085 40.64540770663277, -74.10230090800779 40.64539987893893, -74.10226318946447 40.64539135485723, -74.10220198578914 40.645376810057336, -74.10213259161361 40.64535923595041, -74.1012223058151 40.64513293357593, -74.10082478920982 40.64505244141804, -74.10069807312863 40.645026782302025, -74.10069465307495 40.64500574648016, -74.10023286994002 40.644876375248096, -74.0998294273789 40.64488059480071, -74.09982785518899 40.64486254707073, -74.10066541677075 40.64482587907102, -74.10073957712552 40.64482488029365, -74.10075818695576 40.644825015277334, -74.10077604189256 40.64482551923163, -74.10079013280954 40.644826175067664, -74.10080466155334 40.644827094370164, -74.1008211333494 40.64482843250962, -74.10083687251947 40.64483000992649, -74.10086030769145 40.64483290255319, -74.10088759658281 40.64483710565114, -74.10091487859656 40.64484223087972, -74.1009413862203 40.644848119520795, -74.10097223235915 40.64485614758099, -74.10116693376924 40.644936153242924, -74.10128289311939 40.644983154603, -74.10141966281499 40.645035826972034, -74.10152456850433 40.645074259495495, -74.1016484330165 40.645117501046585, -74.1017574035014 40.64515204222573, -74.10185182207553 40.645183640688394, -74.1019903847042 40.64522534517518, -74.10210080126262 40.64525668610425, -74.10225816568361 40.64529852215984, -74.10241016187612 40.645335843077696, -74.10250795409307 40.64535828332505, -74.10260363114614 40.64537906482009, -74.10266689218332 40.64539217574503, -74.10272190734989 40.64540317418002, -74.10276439353176 40.64541141288931, -74.10283052895346 40.64542239953384, -74.10289954402516 40.64543240379957, -74.10295432239002 40.64543929687097, -74.103003582109 40.64544471440665, -74.10305200236989 40.645449322206716, -74.10313807070823 40.64545577741187, -74.10320102122347 40.64545910148531, -74.10327321664543 40.64546146897658, -74.10336256528359 40.64546227031373, -74.10344913211932 40.645460803876354, -74.10352652083849 40.6454576184418, -74.10357159707688 40.64545494383786, -74.10361758613958 40.645451592104344, -74.10396675528602 40.64543932168644, -74.10426791458933 40.64542873629283, -74.10433038911718 40.64542628515376, -74.10436041788736 40.645423776978866, -74.10439285924478 40.64542026883151, -74.10442234664563 40.64541631760049, -74.10619050906068 40.645348231231296, -74.1064316555517 40.64533100651688, -74.10674533612335 40.645321014497995, -74.10678150870356 40.64531986157208, -74.10682006457563 40.64531863437966, -74.10688434366492 40.64531658631069, -74.1074777354841 40.6452976816045, -74.1074775017246 40.64531916819853, -74.10747610383119 40.64544731511206, -74.1074755847229 40.64549496023828, -74.10625483702542 40.64549265823006, -74.10625532927504 40.645447644450414, -74.10497558495405 40.64543500037825, -74.10491511547225 40.645434402683634, -74.10489127996803 40.64548543880611, -74.10348487996886 40.64550968068077, -74.10342948066912 40.64551108669945, -74.10336113723635 40.64551194870602, -74.10327790990262 40.645511700192166, -74.10319645499953 40.645510074935764, -74.10311433587653 40.64550704991079, -74.10302719427904 40.645502312938326, -74.1029285159217 40.6454950395594, -74.10285095987254 40.645487890389674, -74.10277405342008 40.645479546499544, -74.10273594948674 40.6454749455763, -74.10269810995689 40.64547006794509, -74.10265721554072 40.645464450100576)), ((-74.09965494861304 40.64511474769001, -74.09977448363453 40.645103335332095, -74.09984932922784 40.645108922927676, -74.1002749092149 40.645140695745106, -74.10033120460297 40.64562294458429, -74.10036024728649 40.64587173972037, -74.09991213915713 40.64582953087082, -74.09989167512337 40.645594761851825, -74.0996956908555 40.64558219498302, -74.09965494861304 40.64511474769001)))",R116,4602,R116,R-01,R-01,R-01,R-01,"Richmond Ter., Tysen St., Kissel Ave., Henderson Ave.",501,49,120,"10301, 10310",R,83.3,False,Snug Harbor Cultural Center,No,100003741,PARK,20100106000000.00000,19720922000000.00000,1000 RICHMOND TERRACE,DPR,True,Snug Harbor Cultural Center,Y,Snug Harbor Cultural Center,Large Park,Historic House Park,http://www.nycgovparks.org/parks/R116/,Yes,61,23,11,{9ECB689F-8F80-476C-BE30-7DD8ECA84BE7} +"MULTIPOLYGON (((-73.77433588525628 40.70528115835975, -73.77446286011863 40.705261777807934, -73.77540232591781 40.705412918237826, -73.77540567213293 40.70548497942768, -73.77540597458773 40.70554693540883, -73.77540517344862 40.70558909142719, -73.77539922126664 40.70566919227501, -73.77539547577113 40.705695968065406, -73.77539049958591 40.705731533176106, -73.77538169012685 40.70579006923151, -73.77536950728297 40.70585870337453, -73.77535188301206 40.70594503370985, -73.77534011600274 40.70599524773849, -73.77531960534883 40.706077064459194, -73.77530490817391 40.70613049570479, -73.77528892462531 40.70618359664979, -73.77528179122662 40.70620860351449, -73.77525696153758 40.706278407934306, -73.77523189729347 40.70633739311128, -73.77521591822033 40.70636807935202, -73.77517124538744 40.70643673376597, -73.77514715747475 40.706471098068064, -73.77512188015791 40.706503395162116, -73.77508154884352 40.706549240790935, -73.77506041723824 40.70657331166911, -73.77501481401633 40.70661882188644, -73.77496928246761 40.70665885619829, -73.77493974311521 40.706683992134806, -73.77492083004782 40.7067003913411, -73.77485202799335 40.70676004733357, -73.7747236106924 40.706871393214534, -73.77464560803485 40.7069390267425, -73.77436885147264 40.70674628782892, -73.77426087226968 40.70635053961829, -73.77457763544405 40.70630219131959, -73.77459713025749 40.70629921637474, -73.77461057097172 40.70628789171019, -73.77433588525628 40.70528115835975)))",Q351,5915,Q351,Q-12,Q-12,Q-12,Q-12,Liberty Ave. bet. 183 St. and 183 Pl.,412,27,103,11423,Q,2.872,False,Peters Field,Yes,100000193,PARK,20090423000000.00000,19520626000000.00000,,DPR,True,Peters Field,Y,Peters Field,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q351/,No,"33, 29",14,5,{9187C0EE-706F-414B-BC2E-5EAC7964E1E9} +"MULTIPOLYGON (((-73.96361355028422 40.71534674227394, -73.96398864513604 40.71481931421581, -73.96413910177102 40.71487496950062, -73.96429369174085 40.71493215313602, -73.9646807967238 40.715075345640095, -73.96443524262534 40.71562540262522, -73.96419109023994 40.715554691812265, -73.96394666976235 40.715483902052284, -73.96393370072472 40.715480146463975, -73.96367508367318 40.71537238302658, -73.96367535479733 40.715372190402924, -73.96361355028422 40.71534674227394)))",B124,5464,B124,B-01,B-01,B-01,B-01,Wythe Ave. bet. Grand St. and S. 1 St.,301,34,90,11211,B,1.17,False,William Sheridan Playground (PS 84),Yes,100004561,PARK,20100106000000.00000,19340714000000.00000,289 BERRY STREET,DPR/DOE,False,William Sheridan Playground,Y,William Sheridan Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B124/,No,50,18,7,{009A5EBA-1F66-44DE-8156-E70D64179FB5} +"MULTIPOLYGON (((-73.97961759777417 40.7244846396334, -73.97982689750928 40.7245727552982, -73.97965717622007 40.72481585841149, -73.97945537697835 40.72473091627352, -73.97944364255353 40.72472597668735, -73.97961759777417 40.7244846396334)))",M361,5013,M361,M-03,M-03,M-03,M-03,E. 7 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.15,False,Lower East Side Ecology Center,No,100003808,PARK,20100106000000.00000,20021120000000.00000,215 EAST 7 STREET,DPR,False,Lower East Side Ecology Center,N,Lower East Side Ecology Center,Greenthumb,Garden,http://www.nycgovparks.org/parks/M361/,No,74,27,12,{78B799A1-4216-4643-AD02-B5E98A723324} +"MULTIPOLYGON (((-74.12362180687407 40.58475747254524, -74.12263471229335 40.584139420665906, -74.12226040739077 40.58390416941399, -74.12210758195471 40.58380806135837, -74.12189894579525 40.58367685404606, -74.12096157251989 40.58308734556737, -74.1207208565044 40.582844533648235, -74.11908640830501 40.58119579201383, -74.11931326185177 40.5811300650916, -74.11942139804938 40.581098735152, -74.12065479420455 40.58074137180386, -74.12062707556925 40.58070318804161, -74.12080011184703 40.58059595815197, -74.12108337750358 40.58042041783942, -74.12137372853842 40.58024048648463, -74.12160579540969 40.58009667221204, -74.12218520323175 40.57964595712998, -74.12223311790753 40.579608738798406, -74.12332797714951 40.57875826654511, -74.12334499807712 40.57873424928171, -74.12456195725676 40.57939367936725, -74.12463973717102 40.57904548268093, -74.12470066274123 40.57877273580124, -74.12476118840365 40.57850177325625, -74.12479669539886 40.57834281723954, -74.12479913280526 40.57833190743266, -74.12480051606396 40.57832571211884, -74.12481238149665 40.57832596848583, -74.12488449113233 40.578320843580876, -74.12493986327317 40.57830968890791, -74.12499010623519 40.57828980109365, -74.12501384736782 40.578276875240874, -74.12510475663822 40.57822738068168, -74.12512810695488 40.578213909512556, -74.12516422362896 40.57818798637886, -74.12520611240906 40.57815088052679, -74.12524131202213 40.57810579789643, -74.12526124494187 40.578066226905484, -74.12539830988895 40.5781182447968, -74.12542780068628 40.57812943674801, -74.12596277695037 40.57833246015137, -74.12608515876713 40.5783863222874, -74.12674014492731 40.578674594481804, -74.12674260855675 40.57868202109546, -74.12675743570085 40.57871438491581, -74.12678604632478 40.578764369406024, -74.12684313322492 40.5788519878122, -74.12691449501061 40.57897331868489, -74.1261992160958 40.579196857778925, -74.12605576219428 40.579269353538464, -74.12569797502756 40.57968077575446, -74.12566629402203 40.579726842544886, -74.12566186750706 40.57974327025975, -74.12566215164418 40.5797630896021, -74.12566688411276 40.579786235120544, -74.12567853078775 40.57982136446528, -74.12569262997953 40.579849261711566, -74.12570580492226 40.579869911642255, -74.12572403991456 40.579891322380945, -74.12575879472736 40.579921459132, -74.12582391201325 40.579961695330496, -74.12588634693584 40.57999306245977, -74.12593086220755 40.58001494145637, -74.12631985870638 40.5802061272045, -74.12633755803759 40.580219562485425, -74.12634403777929 40.580227186407804, -74.12634961035678 40.58023539036498, -74.12635333690059 40.58024422852062, -74.12635619638264 40.580252993786715, -74.12635737844408 40.58026161951517, -74.12635756184595 40.58026928638245, -74.12635494375792 40.580279488606784, -74.1263444883923 40.58029619043351, -74.12632493549518 40.58031438902918, -74.12627670614535 40.580344158469735, -74.12604773375676 40.580468087995406, -74.12592065456239 40.58042116771726, -74.1257089547938 40.580343002553946, -74.12566844407776 40.58049415854834, -74.1255931961628 40.58077492362196, -74.1255539926873 40.58092120089795, -74.12551387652628 40.58107087863664, -74.12547585145207 40.58121275372951, -74.12537716144907 40.581580977992125, -74.12532821365119 40.581763603787394, -74.12526961247575 40.581982249366845, -74.12524231392023 40.58208410055881, -74.12521329812208 40.58219236084815, -74.1251820642107 40.582308892163645, -74.12511595878607 40.58255552963338, -74.12508686985377 40.58266406012266, -74.12499332601081 40.583013069307405, -74.12495034648082 40.58317341754744, -74.12489632796611 40.58337495785951, -74.12483030605772 40.583621275361175, -74.12479066170971 40.5837691800614, -74.12472582960699 40.58401105571431, -74.12521927325548 40.58435239053341, -74.12520469335209 40.5843601896559, -74.12518051125778 40.584369632790086, -74.12515621827949 40.58437537578466, -74.1251322888029 40.584381592054086, -74.12510642642219 40.58439195193552, -74.12508829288694 40.58440444844642, -74.1250714512932 40.584423117544254, -74.12505451632224 40.584453742104834, -74.12505146532678 40.58447454213898, -74.12505667620867 40.58450710483736, -74.12507062780874 40.58453338046468, -74.12509125988116 40.584552585102855, -74.12512013651119 40.58457491998794, -74.1251244663682 40.584577269243844, -74.12514539205061 40.58458862638186, -74.12517012275943 40.58459644751375, -74.12520153540032 40.584597982902324, -74.12522676521274 40.58459795540699, -74.12525610611621 40.58459321368118, -74.1252864659581 40.584582586809624, -74.1253101250238 40.58456882710923, -74.12532278801544 40.584559192093884, -74.12533255365524 40.58454770515716, -74.12534078463764 40.584531017563556, -74.12534559737797 40.58451625721887, -74.12534435552624 40.584499660105564, -74.12534250490397 40.58448029634448, -74.12534437878219 40.58446799763774, -74.12534489451384 40.584464616506025, -74.1253540897611 40.58444564773125, -74.1255403379817 40.584574481440846, -74.12562383237633 40.584501448595276, -74.12586700225044 40.584288200305416, -74.12602441868096 40.58415102284427, -74.12615615141252 40.5840358137495, -74.12628054895835 40.583926999985145, -74.12635225553876 40.583864274356486, -74.1264441967684 40.58377989491429, -74.12659030052008 40.5836560451755, -74.12662711399545 40.583623842372106, -74.12676152256306 40.583506269351176, -74.12682218626611 40.58345320292914, -74.12693602434484 40.583353622374894, -74.1269602885483 40.58333239721493, -74.12728108355614 40.58357487235641, -74.12757718259336 40.58380113846547, -74.12781347863611 40.58359643874311, -74.12806579492904 40.5833778588975, -74.12820815392416 40.583254534471244, -74.12844386593935 40.583050334781156, -74.12863911666619 40.58288118600819, -74.12872099770931 40.582938520763065, -74.12887805020917 40.58282492811722, -74.12891867202852 40.5827955470506, -74.12903166985248 40.58271381735431, -74.12906437793878 40.58274496398711, -74.12914448150956 40.58283647715221, -74.12923605429127 40.58296709795533, -74.12928156768875 40.58304965188336, -74.12929251702812 40.583068014769076, -74.12930528209702 40.583096293989335, -74.1293450936138 40.583192538681644, -74.12936819830641 40.5832725431988, -74.12938366281692 40.58338274820574, -74.12938654217012 40.58340454396418, -74.12939024786981 40.583509623816504, -74.1293807531531 40.58363491279869, -74.12936991468978 40.58369214073783, -74.12935971485382 40.58368820252104, -74.12925673577296 40.583795678066515, -74.12916930487737 40.583940256565434, -74.12912810738956 40.584077839999615, -74.12903485561554 40.584436063587916, -74.12891273011073 40.58492031998161, -74.12886404286384 40.58496795201065, -74.12879514826857 40.585034759027955, -74.1287149038931 40.58511032191119, -74.12860057007815 40.585202908591086, -74.12856301145695 40.58523332351367, -74.1283884380034 40.58536774459609, -74.12831449678511 40.58541380617476, -74.12811430535241 40.58553193974113, -74.12775979582415 40.585720173078016, -74.12748297968201 40.58585261810047, -74.12745645236045 40.585861886010335, -74.12709901565992 40.58598675964704, -74.12682594942055 40.58606490361389, -74.12647634954985 40.58614645503639, -74.12596549264303 40.58626953167267, -74.12511087029362 40.586486665114315, -74.12451055115523 40.5866391834393, -74.12399796944554 40.586776285152986, -74.12351030819855 40.58692303302395, -74.12306133094947 40.5870820124425, -74.12267996523421 40.58722783151476, -74.12234110133844 40.58736115702555, -74.12181598481256 40.587642492991215, -74.12140910935149 40.58790076982083, -74.12048463395284 40.588586407829666, -74.12032714610476 40.58849020957431, -74.1207642433973 40.587995023760705, -74.1207942891038 40.58796098478368, -74.12362180687407 40.58475747254524)), ((-74.12483477782163 40.57817232898878, -74.12489149818607 40.577918403025016, -74.12506313411691 40.57798855182231, -74.12506752510379 40.57799034719183, -74.12506407107018 40.578002628710685, -74.12505384305028 40.57803160883517, -74.12504986935032 40.57804199981655, -74.12504275904088 40.578056325904114, -74.12503548893237 40.578067939783736, -74.1250259785445 40.57807839352306, -74.1250134867455 40.57808862447403, -74.12498978827526 40.578105378412694, -74.12496304382485 40.57812086051607, -74.1249317888419 40.57813757583443, -74.1248987222241 40.5781549901202, -74.12489041767184 40.578159131657706, -74.12487710593784 40.57816481043042, -74.12486082357158 40.578169084009055, -74.12484462555308 40.57817172664287, -74.12483477782163 40.57817232898878)))",R088,69247,R088,R-02,R-02,R-02,R-02,"Richmond Pkwy., Manor Rd., Summit Ave., Rockland Ave., and Moravian Cemetary",502,50,122,"10304, 10306",R,94.1,False,High Rock Park,No,100004808,PARK,,19650524000000.00000,132 ALTAMONT STREET,DPR,True,High Rock Park,N,High Rock Park,Flagship Park,Nature Area,http://www.nycgovparks.org/parks/R088/,No,62,24,11,{F92F99BD-A37C-4B40-89DD-0989C91D6F7C} +"MULTIPOLYGON (((-73.94162339331957 40.83846673927279, -73.94163055388819 40.838466455639264, -73.9416306356937 40.83846646288459, -73.94163883516285 40.838467251363795, -73.94164546648416 40.83846881437405, -73.94164634133453 40.83846902102968, -73.94164651557092 40.83846908775441, -73.94164929268456 40.8384701526424, -73.9416515316808 40.83847101104505, -73.94165716108756 40.83847394409915, -73.94165830573354 40.83847476592836, -73.94166011275584 40.83847606535423, -73.94166185934803 40.83847731972488, -73.9416653175312 40.83848053173384, -73.94166791606546 40.83848377932772, -73.94166815886291 40.83848408381741, -73.94166902464478 40.83848516754911, -73.94167128675576 40.83848941452074, -73.94167195376266 40.8384913725313, -73.94167273784873 40.838493676390556, -73.94167302760047 40.838494520299655, -73.94167357653485 40.83850132290638, -73.94167320615351 40.838501835099976, -73.94139713740319 40.83888374759574, -73.9413971041619 40.83888379530499, -73.94122673927275 40.83911668161794, -73.9412264567379 40.839117066885215, -73.94122182632606 40.8391187340407, -73.9412172368036 40.83911974925951, -73.9412154092952 40.8391201544507, -73.94121481989148 40.83912028472189, -73.9412072522771 40.83912088689685, -73.94120475647271 40.83912080097821, -73.94120115919415 40.8391206775778, -73.94120098846025 40.83912067118732, -73.9411941444931 40.839119506961914, -73.94119164799345 40.839118866338616, -73.9411890779977 40.83911820676745, -73.94118811558533 40.83911778934822, -73.94118410356015 40.83911604754883, -73.94117870293036 40.83911314610594, -73.94117795999833 40.83911258471956, -73.94117630824826 40.839111336693584, -73.94117449061233 40.83910996341437, -73.94117060742289 40.83910599836163, -73.94117048309417 40.83910580739355, -73.94116863234598 40.83910299510863, -73.94116660279914 40.83909991078345, -73.94116628222801 40.839099061454476, -73.94116542342516 40.83909678997163, -73.94116475743996 40.83909502736597, -73.94116398507425 40.83909020843088, -73.94116396620673 40.839090091357086, -73.94116395323663 40.83909000940557, -73.94116434476653 40.83908436170962, -73.94116461424557 40.8390839917442, -73.94146190326441 40.83867614826772, -73.94150109005629 40.83862226369975, -73.94150693661095 40.83861422435619, -73.94161610722648 40.83846819438456, -73.94161625798476 40.8384679927503, -73.94162339331957 40.83846673927279)), ((-73.9410615926182 40.83923715002188, -73.9410684549928 40.83923628455205, -73.94107587847401 40.83923644863256, -73.9410765222933 40.8392364624689, -73.94108185256563 40.83923714596493, -73.94108354554369 40.839237362948175, -73.94108850165225 40.83923880356788, -73.9410904160536 40.83923936105066, -73.94109235277892 40.83924014907119, -73.94109650713462 40.83924184322026, -73.9410969243487 40.8392420127261, -73.94110132806786 40.8392446309087, -73.94110280444085 40.839245761782, -73.94110430806815 40.8392469115796, -73.94110509246521 40.839247512609326, -73.94110941635265 40.839251911927086, -73.94110953238955 40.839252093885996, -73.94111201180596 40.83925596457269, -73.94111292826595 40.83925739592487, -73.9411137671944 40.83925934862319, -73.94111500487905 40.83926223083441, -73.94111507942469 40.83926240376726, -73.94111600163546 40.83926805483505, -73.94111578676194 40.83926835188824, -73.94078509507702 40.83972309930401, -73.94070201014675 40.839833972201035, -73.94070191280184 40.83983410362303, -73.94070040421373 40.83983452157689, -73.9406977582549 40.839835254118675, -73.94069555704486 40.83983586352151, -73.94069484197568 40.839835964009076, -73.94068885222909 40.839836810995024, -73.94068879293587 40.83983681996946, -73.94068118887583 40.83983697634689, -73.940680783358 40.83983698424275, -73.94067821776441 40.83983668125797, -73.94067479262651 40.83983627607526, -73.94067380859532 40.83983616030594, -73.94067041462462 40.83983537513088, -73.94066882492301 40.83983500781232, -73.94066798206046 40.839834813772676, -73.94066561258118 40.83983398049782, -73.94066469987617 40.83983365855213, -73.94066319094708 40.839833129186225, -73.9406607435054 40.83983196629055, -73.94065811828304 40.83983071955751, -73.9406529065965 40.83982731211024, -73.9406480787193 40.83982297825247, -73.94064520070842 40.8398193360764, -73.94064455878272 40.83981852260046, -73.9406440900878 40.83981757684113, -73.94064165903067 40.83981266970166, -73.9406402752799 40.83980739299833, -73.94064014412693 40.83980421959185, -73.94064007100167 40.839802455487515, -73.9406406153172 40.83979838193522, -73.94064090379808 40.83979798406554, -73.94066780845658 40.83976091378646, -73.94080477921501 40.83957218669902, -73.9408106259389 40.83956414559107, -73.94085775582198 40.83949932883151, -73.94095118314509 40.83937348770515, -73.94104969925816 40.839240790942696, -73.94104977517202 40.83924075766324, -73.94105506987826 40.83923875947257, -73.94105551584882 40.83923859040772, -73.94105656066847 40.83923833790298, -73.94106081703144 40.8392373117144, -73.94106137086811 40.839237178724375, -73.9410615926182 40.83923715002188)), ((-73.9425452104692 40.83722036588827, -73.94254638666423 40.837220339459364, -73.94255164113282 40.837220762607316, -73.94255183080294 40.83722080322404, -73.94255725183655 40.83722193604383, -73.94255804015616 40.837222101226835, -73.94256341085521 40.837223856262526, -73.9425663085273 40.837225316505545, -73.94256986277058 40.83722710485518, -73.94257662729936 40.837232191511035, -73.94258052656343 40.83723673464278, -73.94258094231105 40.83723721931545, -73.94258125723887 40.83723774896259, -73.94258331728508 40.83724122319293, -73.94258470006073 40.837244998751466, -73.9425853739681 40.837248594758904, -73.94258547900277 40.83724916122179, -73.94258547527949 40.837249353925614, -73.94258532949088 40.83725479463688, -73.94258436593904 40.837258466371104, -73.94258386036914 40.83726039587774, -73.94258332619447 40.83726112411132, -73.94222410163337 40.83775235680245, -73.94222363511048 40.83775299681982, -73.94221535566707 40.83775701247628, -73.94221530348368 40.83775702865905, -73.94221135061291 40.83775822883776, -73.9422092953083 40.83775885455162, -73.94220363175666 40.83775978192377, -73.94219495954876 40.837760056730836, -73.94218762927258 40.8377592471149, -73.94218721794331 40.837759135247516, -73.94218397590433 40.83775826014343, -73.94218145339676 40.83775757900616, -73.94217511226286 40.837755065250555, -73.94217377197222 40.83775426133812, -73.94216865848823 40.83775119079204, -73.94216789294697 40.83775073115636, -73.9421667081698 40.837749707601354, -73.94216386114975 40.83774724872625, -73.94216377703088 40.837747175744084, -73.94216218991168 40.837745249692524, -73.94216042868293 40.83774311283809, -73.9421594342718 40.837741331162725, -73.94215826820685 40.837739241432374, -73.94215716613326 40.8377358280083, -73.9421564176242 40.83773350706048, -73.9421562639002 40.83773303242317, -73.94215579810846 40.83772737618818, -73.94215605163608 40.83772488464901, -73.94215622144905 40.837723218820685, -73.94215806033809 40.837717855501474, -73.94237438290841 40.83742478821764, -73.94242255190476 40.837358650291286, -73.94243299100165 40.83734431603835, -73.94251831243302 40.83722747088984, -73.94252029233496 40.837226267916286, -73.94252239323838 40.83722499026201, -73.94252321874039 40.83722466109268, -73.94252774240232 40.83722285065275, -73.94253158007675 40.83722182420104, -73.94253289646093 40.83722147186333, -73.9425332735504 40.83722141351913, -73.94253920025888 40.83722049616723, -73.9425452104692 40.83722036588827)), ((-73.94436015666858 40.83472540774628, -73.94436333081464 40.834725096806054, -73.9443642342348 40.834725117052706, -73.94437089251727 40.83472526074153, -73.94437287222067 40.83472558407336, -73.94437833003771 40.8347264754934, -73.94437893810111 40.83472666218898, -73.94438200923884 40.834727601985, -73.94438535892408 40.83472862746225, -73.9443863212463 40.83472910068572, -73.9443925656786 40.83473216717797, -73.94440020090363 40.834737989852655, -73.94440550813837 40.834744569620824, -73.94440802555181 40.83474981891457, -73.94440812496873 40.83475002787716, -73.94440819585118 40.834750332278354, -73.94440879128808 40.83475286025264, -73.94440918114918 40.834754525454336, -73.94440952234183 40.834759098328405, -73.94440940008448 40.834759264860935, -73.94428293022602 40.83493394383216, -73.94428279372252 40.8349341319695, -73.94425544696813 40.834971525283564, -73.94425162252728 40.8349767544057, -73.94404872944169 40.83525395342687, -73.94404862503573 40.8352540380227, -73.944045093121 40.835256792721765, -73.94404083949917 40.83525914635066, -73.94403869519162 40.83525998096882, -73.94403627217118 40.83526092441146, -73.94403082165827 40.835262578675795, -73.94403068885197 40.83526259842219, -73.94402381140661 40.83526359013055, -73.94402276318938 40.8352637409048, -73.94402126455697 40.83526374738136, -73.94401376428186 40.83526377886003, -73.94400671903227 40.83526270295134, -73.94400038585343 40.835260798933334, -73.94399452397559 40.835258172047084, -73.9439944860493 40.83525815581976, -73.94398905529566 40.835254646658306, -73.94398455575316 40.83525054722471, -73.94398349345431 40.83524911672408, -73.94398103607617 40.83524580531405, -73.94398083356458 40.83524553236595, -73.94398053413454 40.83524490007361, -73.94397835174232 40.835240274075645, -73.94397829374998 40.835240151580294, -73.94397812721805 40.835239390581826, -73.94397743274766 40.83523621330118, -73.94397716227911 40.8352349794928, -73.94397721689532 40.83523347929612, -73.94397732378843 40.83523044108078, -73.94397738326244 40.8352288040113, -73.94397765745337 40.83522843314088, -73.94415661193545 40.83498658145966, -73.94433042725694 40.834748276759164, -73.9443477222876 40.83472785019068, -73.94435572211398 40.834725840545566, -73.94436015666858 40.83472540774628)), ((-73.94344999281134 40.83597333178453, -73.94345571400419 40.8359727402635, -73.94345948414205 40.835972954628396, -73.94346222638205 40.83597311265864, -73.94346854502642 40.83597404416526, -73.94346870860272 40.83597409287209, -73.94347165297347 40.8359749722969, -73.94347345705215 40.83597551167659, -73.9434774014156 40.83597719573254, -73.94348006931266 40.835978335264414, -73.94348530110693 40.835981614725945, -73.94349018675682 40.83598621864435, -73.94349038341544 40.83598640334195, -73.94349090563492 40.835987163614796, -73.9434922840146 40.83598916518786, -73.94349427698182 40.83599205855112, -73.94349432074095 40.83599218734321, -73.9434961421825 40.83599741200143, -73.9434964331367 40.835998250503906, -73.94349649998296 40.835999115911434, -73.94349689870073 40.83600429484796, -73.94349681652865 40.83600472254234, -73.9434956756806 40.836010620219355, -73.94349547982057 40.836010891172094, -73.94319675612797 40.83642512475913, -73.94313263099812 40.836510670702566, -73.9431324505731 40.83651091284646, -73.94312644759906 40.836512363283724, -73.94312444243734 40.836512639647054, -73.94312194636032 40.836512984205854, -73.94312093607275 40.8365131223837, -73.94311552697758 40.836513336735024, -73.94311280012022 40.83651318951007, -73.94311159556095 40.836513124080376, -73.94310999620063 40.836513036844075, -73.94310314177524 40.836511898840506, -73.94310110180962 40.83651128009531, -73.9430964363227 40.83650986401806, -73.94309438806002 40.83650924256713, -73.94309024942002 40.8365073350799, -73.94308773565838 40.836506176704795, -73.94308619642779 40.836505098954454, -73.94308304686977 40.83650289479202, -73.94308079110665 40.836500902686666, -73.94307937533043 40.83649965300283, -73.94307838606646 40.8364987772345, -73.9430753787433 40.836495237709485, -73.94307436638759 40.836493636131564, -73.94307307814822 40.83649160037937, -73.94307097543985 40.836486713261316, -73.94306994389802 40.83648259299227, -73.94306992617575 40.83648252004352, -73.94306984755725 40.83647879105921, -73.94306980200321 40.8364766037369, -73.94306996821447 40.836476345377186, -73.94308181782897 40.836457994656165, -73.94319113933508 40.836310345930954, -73.94325576412899 40.83622249763486, -73.94342213760551 40.83599411683412, -73.94342216253146 40.835994084428556, -73.94343548753281 40.83597777041057, -73.94343579493152 40.83597739505532, -73.94344052128552 40.835975516241156, -73.94344183541442 40.835974992798036, -73.94344708404284 40.83597380852062, -73.94344852723745 40.83597348324945, -73.94344999281134 40.83597333178453)), ((-73.94390387889749 40.83535319316032, -73.94391084808778 40.83535308488853, -73.94391744777256 40.83535389764213, -73.9439190374002 40.83535424690633, -73.94392273467676 40.835355060049274, -73.94392364969669 40.83535539457747, -73.9439282176798 40.83535707081695, -73.94392978681124 40.8353578243929, -73.94393338727933 40.835359555091934, -73.94393571800889 40.835361208631696, -73.94393791958377 40.83536276935769, -73.9439401777402 40.835364720025105, -73.94394176058421 40.83536608504305, -73.94394251145415 40.83536705343918, -73.94394444785073 40.83536954514712, -73.94394699699036 40.83537371117134, -73.94394777062915 40.8353757997932, -73.94394877967466 40.835378520676336, -73.94394903755578 40.83537921508263, -73.94394965187098 40.83538465256468, -73.94394957176574 40.8353854458611, -73.94394917244209 40.83538939253277, -73.94394904212041 40.835390684678494, -73.94394884621242 40.835391016865586, -73.94394583635282 40.83539612120447, -73.94389037617026 40.83547227783964, -73.94375722753475 40.83565511054113, -73.94375637646122 40.835656266360495, -73.94375634559908 40.83565630866866, -73.94358636273202 40.83588741849616, -73.94358468443183 40.83588815968235, -73.94358046080727 40.83589002614144, -73.94358006115874 40.83589013220422, -73.9435736513644 40.835891834604205, -73.94357352091495 40.83589186965967, -73.94357278337998 40.83589195304478, -73.94356468947478 40.83589285948406, -73.94355894297132 40.835892548703065, -73.94355759852427 40.8358924760056, -73.94355583932938 40.835892139260444, -73.94355027368253 40.835891073953505, -73.94354253630759 40.83588819578925, -73.94353875840021 40.83588596521711, -73.94353672250263 40.83588476206088, -73.94353202125325 40.835880820998234, -73.94353055127515 40.83587917957839, -73.94352926015648 40.835877739956736, -73.94352835992683 40.835876736365584, -73.94352620070153 40.83587276593054, -73.94352466149675 40.8358688732416, -73.94352390858079 40.835864728799294, -73.94352413952836 40.83586083427561, -73.94352425979396 40.835858828934256, -73.94352427063049 40.83585863353236, -73.94352632957192 40.83585224283376, -73.94352643165628 40.835852101506184, -73.94357010602293 40.83579153854336, -73.9437097927185 40.83559783128429, -73.94376420166992 40.835524351393836, -73.94388820420565 40.83535688206379, -73.9438882789835 40.83535678304581, -73.94389397864052 40.835354948810625, -73.94389617026853 40.835354243889356, -73.94390255562372 40.835353332093305, -73.94390348645068 40.835353199272895, -73.94390387889749 40.83535319316032)), ((-73.94299291067229 40.836596905968115, -73.94299704182359 40.83659648657879, -73.94300266882634 40.83659657400614, -73.94300901366859 40.83659743441176, -73.94300928989246 40.83659747146848, -73.94300940368825 40.836597502141494, -73.94301314116424 40.836598514342455, -73.94301512903196 40.83659905291952, -73.94301998731092 40.83660102109803, -73.94302206481738 40.83660210902057, -73.94302386500773 40.83660305092605, -73.943024546448 40.836603408758776, -73.94302847796767 40.83660627607257, -73.94302998014696 40.83660770139598, -73.94303138755095 40.83660903752369, -73.9430319372435 40.83660956008168, -73.9430349239571 40.83661363268998, -73.94303624627143 40.836616030457925, -73.94303721699478 40.83661779050252, -73.94303786460328 40.83662027348418, -73.94303846612584 40.83662257634424, -73.94303877115438 40.83662497541075, -73.94303898902945 40.83662669185976, -73.94303845873826 40.836631204873505, -73.94303625681488 40.836635565778636, -73.94285334830698 40.8368880737458, -73.94267831543328 40.837128749235816, -73.94267767798145 40.83712962509951, -73.94267271271445 40.83713207557696, -73.94267199400241 40.837132312950104, -73.94266583988038 40.83713434770863, -73.9426655267781 40.837134451109804, -73.9426588706921 40.83713561033842, -73.94265328240373 40.83713594884718, -73.94264814629946 40.837135766194564, -73.94264237523748 40.83713494117384, -73.9426354514064 40.83713310252388, -73.94263031580414 40.83713096309757, -73.94262601507597 40.8371286241767, -73.94262163090126 40.83712543334692, -73.94262145320445 40.83712525766224, -73.94261900335934 40.83712283321444, -73.94261730339335 40.837121152047125, -73.94261407768744 40.83711649128695, -73.94261396290881 40.837116224683655, -73.94261257494954 40.83711296150378, -73.9426115253964 40.83711049993185, -73.94261090255614 40.83710680669655, -73.9426105439518 40.83710467955161, -73.94261079649493 40.837101932270514, -73.94261102510434 40.83709944071772, -73.94261218729058 40.83709503427901, -73.94261254580653 40.83709451487241, -73.94261829626346 40.83708623318991, -73.94278902396292 40.836859556532964, -73.94284516224894 40.8367794160946, -73.9429765988881 40.83660204422744, -73.94297681017773 40.83660175887533, -73.94298434285676 40.83659868020856, -73.94298467727376 40.83659860473235, -73.94298631852793 40.83659823183871, -73.94299155061847 40.83659704307145, -73.94299291067229 40.836596905968115)), ((-73.9420837179031 40.8378458458962, -73.94208613320778 40.83784573364677, -73.94208769823092 40.83784580196965, -73.94209245258135 40.83784600966932, -73.94209342704067 40.837846193859285, -73.94209909004623 40.83784726648893, -73.94210117985726 40.83784786726683, -73.9421047999811 40.83784891095533, -73.94210497778666 40.83784896237272, -73.94211024244277 40.837851357627166, -73.94211151398773 40.837852136291964, -73.9421157647162 40.8378547399518, -73.94211579908102 40.83785476248138, -73.94211609881921 40.837855033680455, -73.94212167179225 40.83786010625698, -73.94212421783398 40.837863723017044, -73.94212535940908 40.837865343578116, -73.94212669537404 40.83786839602185, -73.94212696162226 40.83786900218771, -73.94212745388045 40.83787012895239, -73.94212851316153 40.83787503087139, -73.94212849559321 40.83787614477336, -73.94212845402532 40.837878950691035, -73.94212842383732 40.83788094166758, -73.94212751053864 40.83788541396178, -73.94212702621232 40.83788607288021, -73.94176514993768 40.838378341031685, -73.94176489352789 40.838378687592254, -73.94175761414616 40.838380617276584, -73.94175740426151 40.838380639682924, -73.9417524429313 40.83838115676235, -73.94174810888207 40.83838160842234, -73.9417460494499 40.83838150472592, -73.94174294311003 40.83838134827209, -73.94174008812362 40.838381203651515, -73.94173338533611 40.8383800197184, -73.94173305818292 40.83837991239437, -73.94173104784943 40.8383792540184, -73.94172668343542 40.83837782363046, -73.94172512971646 40.8383770187046, -73.94171979539797 40.838374257797184, -73.94171956310929 40.83837413881463, -73.94171325475064 40.83836935490594, -73.94171317894224 40.83836926932071, -73.94171054341751 40.83836629185719, -73.94170932693083 40.83836491708906, -73.94170703340305 40.83836134457199, -73.9417066346496 40.838360408757545, -73.94170487278531 40.83835628900894, -73.9417047745761 40.83835605843295, -73.9417046955555 40.83835557933035, -73.94170363990499 40.83834926723659, -73.9417036186733 40.83834914115673, -73.94170400721988 40.83834413460824, -73.94170420551279 40.83834380963025, -73.94170837676016 40.83833700490664, -73.9418893241606 40.83809268241276, -73.94190421026083 40.83807234415662, -73.94206082240936 40.837858365668225, -73.94206886493839 40.83784867679324, -73.94206904179036 40.83784846166404, -73.94207386388922 40.837847117847794, -73.94207628659107 40.837846680524045, -73.94207993783868 40.83784602139527, -73.9420837179031 40.8378458458962)), ((-73.94054820826598 40.839942167460265, -73.94055525519352 40.83994185772062, -73.94056186151634 40.83994234018768, -73.94056235592254 40.83994237736272, -73.94056259183445 40.83994242611092, -73.94056822052387 40.83994359334938, -73.94056853112157 40.839943657444444, -73.94056947228856 40.83994397490306, -73.94057438082143 40.83994562713612, -73.94057929703993 40.8399479673499, -73.94058414610814 40.83995114858975, -73.94058441866039 40.83995132792835, -73.94058509988464 40.8399519514207, -73.94058831289988 40.839954885082406, -73.9405891090451 40.8399556121907, -73.94059122317202 40.839958253526405, -73.94059199065372 40.83995921204674, -73.94059443385834 40.83996379591625, -73.94059454039255 40.839963996781165, -73.94059457704815 40.83996411026222, -73.94059608216027 40.83996891697092, -73.94059621103156 40.83996933216475, -73.94059627069765 40.839970233589405, -73.94059653269673 40.839974264332994, -73.94059654320647 40.839974445337575, -73.94059652183566 40.839974476843864, -73.94045156152113 40.84017778483897, -73.94026484040155 40.84043420643788, -73.94026458278462 40.84043455929787, -73.94026189648527 40.840435289107226, -73.9402564218899 40.84043677658828, -73.94024859046631 40.84043784862117, -73.94024241048292 40.840437890444214, -73.9402422670107 40.840437891270376, -73.9402421188094 40.840437876785685, -73.9402360093551 40.84043728199614, -73.9402291667512 40.840435788133966, -73.94022344745679 40.84043380768664, -73.94022293064639 40.8404336282206, -73.94021803340748 40.840431252882425, -73.94021323407891 40.8404281193794, -73.94020836222712 40.84042388363465, -73.94020805430648 40.84042347735251, -73.94020512314135 40.840419607313464, -73.94020416385108 40.840418340722486, -73.94020285376844 40.84041555571779, -73.94020118155439 40.84041199520053, -73.94020099220279 40.84041159168131, -73.94019979586017 40.840406267344235, -73.94019967935776 40.84040396562276, -73.94019958382427 40.8404020799401, -73.94022995129511 40.84035968784507, -73.9403541499817 40.84019047108537, -73.940357735206 40.84018558686209, -73.9403932930089 40.84013714158814, -73.94052201250872 40.83996068340857, -73.94053512702092 40.839945420503234, -73.94054308884711 40.839942979768004, -73.94054820826598 40.839942167460265)), ((-73.9447998585608 40.83411293984587, -73.94480737427399 40.83411272102067, -73.94481300864894 40.83411367553939, -73.94481817387936 40.83411563298402, -73.94482411633358 40.834119661036674, -73.94482773839248 40.834123896893686, -73.94482956403655 40.83412840744252, -73.94483000682689 40.83413345042245, -73.94472692176087 40.83427675075167, -73.94472479324034 40.83428146471966, -73.94472465418286 40.83428615712871, -73.944726733801 40.83429178531415, -73.94473089621546 40.83429636272041, -73.94473192578572 40.83429723038976, -73.94473580236752 40.83430050374311, -73.94473820944067 40.8343058592355, -73.94473821888435 40.83430590876724, -73.94473866608442 40.834309917982026, -73.94473869080036 40.83431013681399, -73.94473864909851 40.83431038442995, -73.94473795317326 40.83431463623046, -73.94473557661094 40.834319650844826, -73.94473555167136 40.83431970126057, -73.9447354875843 40.834319778672366, -73.9447317077683 40.83432418658159, -73.94473167691189 40.834324223487044, -73.94454441011291 40.83457926072795, -73.944543750164 40.83458016000439, -73.94449818151914 40.834639502266256, -73.94449807707191 40.83463963819062, -73.94449480161049 40.83464060014315, -73.94449237169776 40.83464131306559, -73.94448663257775 40.83464222430497, -73.94448137180214 40.834642484716966, -73.94448043868717 40.8346425310935, -73.94447857497875 40.83464244374886, -73.94447472900453 40.83464226449997, -73.94446871293418 40.83464117650793, -73.94446704977219 40.83464087584252, -73.94446495768287 40.83464025889712, -73.9444613223069 40.834639187359414, -73.9444609287818 40.834639070105645, -73.94445553750255 40.83463659385164, -73.94445409420653 40.83463566114502, -73.94445052270369 40.83463334965717, -73.94444920501567 40.83463249715495, -73.94444748956091 40.83463092766772, -73.94444557744448 40.834629178887376, -73.9444448346327 40.834628500457406, -73.94444123668143 40.83462378733842, -73.94444083424305 40.834622985704684, -73.94444005777738 40.83462143467956, -73.94443895817469 40.834619243247346, -73.94443750831826 40.83461480941578, -73.9444373940059 40.834613980906006, -73.94443719013385 40.834612497693776, -73.9444369544482 40.834610777636236, -73.94443742509776 40.834605144371054, -73.94443764825274 40.83460483290753, -73.94445867592553 40.83457539327225, -73.94456575236975 40.83442548007718, -73.94471702483256 40.83421621838394, -73.94472991767724 40.83419838487073, -73.94479193223614 40.83411506121843, -73.9447998585608 40.83411293984587)), ((-73.94526286983734 40.83349414899814, -73.94527032787032 40.833493340291625, -73.94527612639754 40.83349358167416, -73.94528231063494 40.833494786768405, -73.9452881266893 40.833496782321774, -73.94529327453898 40.83349965013693, -73.94529868417544 40.833504238920796, -73.94530186758988 40.83350844123704, -73.94530359665848 40.83351218811376, -73.94530466815446 40.833518295774915, -73.94530401495089 40.8335239946942, -73.94530259265645 40.83352781571786, -73.94517210737159 40.833716591933666, -73.94499977153066 40.83395194412513, -73.94498724931984 40.833969043943085, -73.94496289689121 40.83400083418216, -73.9449580409329 40.83400338656714, -73.94495306279607 40.834004580047676, -73.94494546438531 40.834004458456015, -73.94493836436023 40.83400238032758, -73.94493440541083 40.833999794018744, -73.94493115048076 40.833996050010185, -73.94492951865533 40.833992284264234, -73.94492935616788 40.83398805996774, -73.94493088702865 40.833983459172686, -73.94494839218996 40.83396653013197, -73.94496418902023 40.83395088167681, -73.94497931036322 40.83393485649058, -73.9449937419831 40.833918465372626, -73.94500746845016 40.83390172902728, -73.9450204767091 40.833884664557935, -73.94503274896141 40.83386728996622, -73.94504427570782 40.8338496232578, -73.94505504744987 40.833831681537696, -73.94506504757261 40.833813485509545, -73.94507426776173 40.833795054080085, -73.94508269733191 40.833776406154655, -73.94509033152711 40.833757558840645, -73.94511977507935 40.83367937662572, -73.94513548227458 40.83365152460389, -73.9452509154762 40.8334985278311, -73.94525633099708 40.83349596129124, -73.94526286983734 40.83349414899814)), ((-73.94010500728528 40.840594821994, -73.94010666493236 40.8405948066459, -73.94010820011333 40.84059516583939, -73.94011458741716 40.84059665767135, -73.9401158582392 40.84059695459343, -73.94011769527319 40.84059787495087, -73.9401219429698 40.840600003220864, -73.94012424497042 40.84060205754072, -73.94012598065297 40.84060360638979, -73.9401269340807 40.8406048009389, -73.94012849746727 40.84060675762196, -73.9401287544786 40.84060707923149, -73.94013045815213 40.84061125750441, -73.94013062184116 40.84061250837465, -73.94013097981865 40.8406152649706, -73.94013117412572 40.840616749984974, -73.94013097754227 40.84061779445523, -73.94013040683961 40.84062084322948, -73.94013035322865 40.84062112505607, -73.94012857738379 40.840624676580504, -73.94012839089224 40.84062504748696, -73.94012829348756 40.84062524284347, -73.93992548539781 40.84089888736312, -73.93992287956539 40.8409023979298, -73.93992014796314 40.84090600028119, -73.93986380047518 40.840980269718706, -73.9398634716373 40.84098070358506, -73.93986163184108 40.840981519373244, -73.93985695109775 40.84098359256972, -73.93985617532243 40.840983937054155, -73.93985440593156 40.84098425760763, -73.93984969190096 40.840985115120496, -73.93984924362319 40.840985196831596, -73.9398477816588 40.840985159148964, -73.9398422480109 40.840985016686524, -73.93983802884968 40.84098409598281, -73.93983539231901 40.84098352009286, -73.93983498105112 40.84098332267033, -73.93983015844061 40.84098099778249, -73.93982899338222 40.84098043526687, -73.93982853010537 40.84098005771853, -73.93982435824464 40.840976657980924, -73.93982351581563 40.840975971365516, -73.93982150260615 40.84097318328843, -73.9398212693118 40.84097285898913, -73.93982100522692 40.840972492350566, -73.9398194889096 40.84096831237008, -73.93981940329509 40.8409672695542, -73.9398192895409 40.840965875531225, -73.93981905501923 40.840962975820425, -73.939819220045 40.84096274357926, -73.93985641478072 40.84091055507979, -73.93990325449087 40.84084483447758, -73.94000552049957 40.84070694834732, -73.9400848205005 40.84060002356518, -73.9400850330026 40.840599736418206, -73.94008844698234 40.84059808848772, -73.9400915501694 40.84059658987763, -73.94009478433921 40.840595792819784, -73.94009847036693 40.84059488523583, -73.94009890434346 40.84059488095876, -73.94010500728528 40.840594821994)))",M095A,6352,M095A,M-12A,M-12A,M-12,M-12,"Broadway, W 156 St To W 168 St",112,"7,10",33,10032,M,1.139,False,Broadway Malls 156th-168th,No,100005101,PARK,20100106000000.00000,19080409000000.00000,,DPR,False,Broadway Malls,Y,Broadway Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M095A/,No,"71, 72",31,13,{E935F70F-6B1E-4429-857B-6340689FE542} +"MULTIPOLYGON (((-74.17614474609623 40.62590099484859, -74.17692380051355 40.625531448291, -74.17776910105219 40.625982452118585, -74.17775907508799 40.62599005361585, -74.1761584941447 40.62592790928919, -74.17614474609623 40.62590099484859)))",R127,5744,R127,R-01,R-01,R-01,R-01,"Forest Ave., Goethals Rd. N., Meeker Ave.",501,49,120,10303,R,0.85,False,Joseph Manna Park,Yes,100004225,PARK,20100106000000.00000,19910903000000.00000,,DPR,True,Joseph Manna Park,N,Joseph Manna Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R127/,No,63,23,11,{4A47EC3A-B0A1-4F0B-95C8-68F41DE846AC} +"MULTIPOLYGON (((-73.91118717548993 40.67866155247877, -73.91113362327236 40.67839997456865, -73.91120412356088 40.67840366077488, -73.91127788943652 40.67840751695182, -73.9113479663154 40.67841118113107, -73.91141804438605 40.67841484436802, -73.9114881212816 40.678418507561354, -73.91155819936525 40.67842217251395, -73.91162827627616 40.678425835621965, -73.91170388611188 40.67842978839659, -73.91178134105067 40.67843383799077, -73.91185141798607 40.678437500962886, -73.91192149611203 40.678441163893154, -73.91199894989441 40.67844521333998, -73.91209115853651 40.678450034043315, -73.9122149940285 40.67845650693789, -73.91271737717304 40.67848276723333, -73.91223198271021 40.678539481639774, -73.91211233337185 40.67855346175537, -73.91202324374366 40.678563870261435, -73.91194840829081 40.67857261464985, -73.91188070051535 40.678580525168606, -73.91181299154098 40.67858843564663, -73.91173815721707 40.67859717899864, -73.91166510331936 40.67860571474941, -73.9115973954767 40.67861362510145, -73.911529687618 40.67862153541365, -73.91146197855915 40.67862944658556, -73.91139427066831 40.67863735681805, -73.91132656276015 40.67864526791119, -73.91125529157355 40.67865359405518, -73.91118717548993 40.67866155247877)))",B517,5293,B517,B-16,B-16,B-16,B-16,"Somers St., Rockaway Ave. and Fulton St.",316,41,73,11233,B,0.475,False,"Saratoga Square Urban Renewal Area, Sit*",No,100004251,PARK,20100106000000.00000,20061129000000.00000,2037-2053 FULTON STREET,DPR,False,"Saratoga Square Urban Renewal Area, Site 164",N,"Saratoga Square Urban Renewal Area, Sit*",Greenthumb,Garden,http://www.nycgovparks.org/parks/B517/,No,55,25,8,{79C79611-0953-4E22-A17E-2C307341EA1F} +"MULTIPOLYGON (((-74.0300932735937 40.61284150120088, -74.03126880481494 40.61141187201522, -74.03137089496957 40.61140561709277, -74.03150330588741 40.61117594434043, -74.03224782294294 40.61140004512718, -74.02889052512802 40.615295780991154, -74.02840830968461 40.6150516357684, -74.02809273980024 40.615386169504404, -74.0279061355427 40.61529168997649, -74.02844916703165 40.61465993505882, -74.02851260483959 40.61458613065002, -74.02895080484446 40.614130544790065, -74.02950768139075 40.61355156174654, -74.0300932735937 40.61284150120088)))",B210W,4842,B210W,B-10,B-10,B-10,B-10,Ft. Hamilton Pkwy. bet. 94 St. and 101 St.,310,43,68,11209,B,8.565,False,John J Carty Park,Yes,100004805,PARK,20100106000000.00000,19650623000000.00000,9941 FT HAMILTON PARKWAY,DPR,False,John J Carty Park,Y,John J Carty Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B210W/,No,46,22,11,{99B7DEEA-EC46-4CC4-8F25-2B92FC14B962} +"MULTIPOLYGON (((-73.87240187835147 40.73592692924334, -73.87258653125383 40.735857088522444, -73.87262207656687 40.735940033179276, -73.87240187835147 40.73592692924334)))",Q152,6606,Q152,Q-04,Q-04,Q-04,Q-04,"Justice Ave., 90 St., 56 Ave.",404,25,110,11373,Q,0.03,False,Libra Triangle,Yes,100000092,PARK,20090423000000.00000,19350315000000.00000,,DPR,True,Horsebrook Island,N,Horsebrook Island,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q152/,No,35,16,6,{C3EF29F0-C590-4FBD-91CD-016368BE40C6} +"MULTIPOLYGON (((-73.83355278732994 40.67890316516038, -73.83352595049571 40.67884459098792, -73.8336577774866 40.67887388992723, -73.83355278732994 40.67890316516038)))",Q079,6155,Q079,Q-10,Q-10,Q-10,Q-10,"109 Ave., 106 St., Rockaway Blvd.",410,32,106,11417,Q,0.008,False,Wellbrock Triangle,Yes,100000187,PARK,20090423000000.00000,19301217000000.00000,,DPR,True,Wellbrock Triangle,N,Wellbrock Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q079/,No,31,10,5,{44B4BA15-C0EB-460A-9BC3-E70BF357ED04} +"MULTIPOLYGON (((-73.93704406814761 40.774104831358265, -73.9370243480207 40.77410108259415, -73.93702431075447 40.77409289159843, -73.93701887883793 40.77405243803436, -73.93700485081554 40.77401319725057, -73.93698260120617 40.773976217634385, -73.93734343613092 40.77395043129613, -73.93763887675856 40.77392931718513, -73.93763834783107 40.77388697974899, -73.93763688336855 40.773841853848865, -73.93763408272461 40.77379044171393, -73.93763090833114 40.77374855309652, -73.93762679697873 40.77370540236679, -73.93762146238595 40.773659327941445, -73.93761643107605 40.773622065102295, -73.93761074008734 40.77358470014865, -73.93760392274673 40.77354467449854, -73.93759607972441 40.773503270522525, -73.93758689457528 40.773459416450386, -73.93757319483448 40.773400817795135, -73.93756181496722 40.773356783331096, -73.9375505442513 40.773316367146286, -73.93753966555484 40.773279814330984, -73.93752579909574 40.773236132412336, -73.93750864355485 40.77318581380091, -73.93749313801919 40.77314564655298, -73.93747456421762 40.77310336955993, -73.93745407539461 40.773062017241365, -73.93743507159628 40.77302737537419, -73.93741368434182 40.77299172184455, -73.93739092939441 40.772956905936034, -73.93736326960122 40.77291810172963, -73.937330797387 40.772876547463866, -73.93729624406554 40.77283621043694, -73.93726323076679 40.77280077837827, -73.93722920204382 40.77276695765744, -73.93718563072613 40.77272709295022, -73.9371401779295 40.772689046216286, -73.93709492226864 40.77265427920449, -73.93705479796562 40.77262575186324, -73.93700901687575 40.77259556629061, -73.93696840589338 40.772570708203496, -73.93691956532899 40.772542994603725, -73.93687075114369 40.772517485429404, -73.93682993054095 40.77249643900847, -73.93678000603096 40.772473964783174, -73.93673041037154 40.772453237692986, -73.93667807187292 40.77243453790784, -73.93663155540968 40.7724193937862, -73.93467039882215 40.771849148939964, -73.9342625931209 40.77262303824508, -73.93307720619383 40.77227234555348, -73.93310154237408 40.77225052158042, -73.93312843866818 40.772229454610226, -73.93315713276547 40.772209817775384, -73.93317211886757 40.77220056749321, -73.93320329572224 40.77218322116612, -73.93323591125257 40.77216752988873, -73.93326712489558 40.77215362889123, -73.93329103337655 40.77214361923341, -73.93331575913474 40.77213481221551, -73.93334117183217 40.772127251886275, -73.9333672003984 40.77212094000518, -73.93339332080933 40.77211635353563, -73.93342027931352 40.77211229523938, -73.93344072439257 40.772110472726155, -73.93351288460246 40.772102782665954, -73.9335596943392 40.77209610812147, -73.93360618429422 40.77208820328617, -73.93365228693517 40.77207908162916, -73.93374466907302 40.772056860838276, -73.93376824640474 40.77204861317592, -73.93378994274852 40.77204036622888, -73.93381130085893 40.77203157788096, -73.93383225794383 40.77202226160385, -73.93385280214447 40.77201243089848, -73.9338729109409 40.772002100160236, -73.93389255352884 40.77199127657567, -73.93391173936521 40.77197997906101, -73.93393042226263 40.77196819948544, -73.93394860100159 40.77195597296822, -73.93396624479763 40.77194328688488, -73.93398332992781 40.7719301745406, -73.93399983031631 40.77191665303032, -73.93401662798061 40.7719019619341, -73.93403314291567 40.771884503426804, -73.93404811757436 40.77186747447601, -73.93406234872852 40.771850076791964, -73.93407579965732 40.771832312154814, -73.93408845255995 40.77181421477382, -73.93410029792612 40.77179581976346, -73.9341113357582 40.771777125322934, -73.9341215328696 40.7717581530456, -73.93413088448811 40.77173893804856, -73.93413938823295 40.77171949293775, -73.93424109806442 40.77142687662843, -73.93493134920249 40.77154071841582, -73.93489471643633 40.771689847193485, -73.93752517404853 40.77248573647742, -73.937901831207 40.77359344188887, -73.93790336567419 40.77421407570548, -73.93778583607791 40.77477825214613, -73.93772524137594 40.774760998196044, -73.93701129241916 40.77454280098423, -73.93701111309524 40.77454328535677, -73.93687049544587 40.77450030934243, -73.936997076872 40.77426095019216, -73.937012518091 40.77422630727902, -73.93702280996314 40.77419057644325, -73.93702782770374 40.774154197964016, -73.93703979509891 40.77411782058038, -73.93704078703642 40.77411480443732, -73.93704406814761 40.774104831358265)), ((-73.9370243480207 40.77410108259415, -73.93702398153924 40.774101569566014, -73.93702402002596 40.7741009545435, -73.9370243480207 40.77410108259415)))",Q226,6409,Q226,Q-01,Q-01,Q-01,Q-01,"Vernon Blvd., Main Ave. to Astoria Blvd., 1 St.",401,22,114,"11102, 11106",Q,5.84399754,False,Hallets Cove Playground,No,100000350,PARK,20110712000000.00000,19490214000000.00000,,DPR,True,Hallets Cove Playground,Y,Hallets Cove Playground,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q226/,Yes,37,12,12,{CAE11DE6-F5C1-4155-B3F9-836BD18CFEDA} +"MULTIPOLYGON (((-73.98849779554693 40.662796018821, -73.98867518322513 40.66262532466274, -73.98877338762945 40.66273535935999, -73.98891220628309 40.662879993024504, -73.98903342045651 40.662997664288156, -73.9891563719256 40.66311000723203, -73.989284046176 40.66321993890075, -73.98941799337929 40.663328608479915, -73.98955316083706 40.66343350935247, -73.98849779554693 40.662796018821)))",B255D,5801,B255D,B-07,B-07,B-07,B-07,"Prospect Ave., 6 Ave., Prospect Exwy.",307,38,72,11215,B,0.281,False,Park,Yes,100003914,PARK,20100106000000.00000,19520618000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B255D/,No,52,21,7,{D72DF938-3CC1-4728-87B1-9973B9DC7094} +"MULTIPOLYGON (((-73.75874581450415 40.59877217620337, -73.75876647293786 40.598762040926744, -73.75896989492021 40.59898614304894, -73.75905666868891 40.599081739317384, -73.75913929110959 40.59917276025222, -73.75922402956387 40.59926611431933, -73.75929664288773 40.599346107041775, -73.75937052728023 40.59942750359681, -73.75949827501964 40.59956823500993, -73.75954767005956 40.599622650875766, -73.75954792189071 40.599622927864054, -73.75954525013496 40.59962438292659, -73.75954465196733 40.59962481032528, -73.75948223609245 40.5996593220372, -73.7594229211112 40.59969687677933, -73.75936696278838 40.59973731479836, -73.75930942756521 40.59976912155088, -73.75929458618303 40.59976094791332, -73.75922562870088 40.59972296787444, -73.75921451684025 40.5997168480345, -73.75836159923963 40.59924708253006, -73.75837522524738 40.59921005094233, -73.75838680505359 40.599167126512945, -73.75839263245054 40.59913497468539, -73.75839488173844 40.599116735662506, -73.75839673841769 40.599103823324675, -73.75840041211488 40.59908602044914, -73.7584063350185 40.599065345122, -73.75841959608643 40.59903250741035, -73.75843337731018 40.599007086620354, -73.7584469753594 40.59898657601073, -73.75845919685877 40.59897068580563, -73.75848245628454 40.59894504539058, -73.75850849899801 40.59892140458359, -73.75852729046937 40.598906802420935, -73.75854208705843 40.59889657472076, -73.7586258841551 40.598842469760704, -73.75864331304201 40.59883090579275, -73.75866426392965 40.59881766073257, -73.75868395858947 40.598805823254104, -73.7586995208188 40.59879686958429, -73.7587153671085 40.598788098415014, -73.75873011373803 40.59878023806804, -73.75874581450415 40.59877217620337)))",Q353,5350,Q353,Q-14,Q-14,Q-14,Q-14,"Grassmere Terr., Briar Pl. bet. Hanson Ct. and Brookhaven Ave.",414,31,101,11691,Q,1.239,False,Grassmere Playground,Yes,100000232,PARK,20090423000000.00000,19510614000000.00000,535 GRASSMERE TERRACE,DPR/DOE,False,Grassmere Playground,Y,Grassmere Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q353/,No,31,10,5,{89D7AD7A-1833-456F-8DA1-EE6F2583B4A1} +"MULTIPOLYGON (((-73.87343435566332 40.70983090721454, -73.87378813342855 40.70981517647912, -73.87380794979902 40.71008934733231, -73.87378959613227 40.710090162886026, -73.87380962939612 40.71036733087008, -73.87347420127526 40.71038224526808, -73.87343435566332 40.70983090721454)))",Q101,4899,Q101,Q-05,Q-05,Q-05,Q-05,79 St. bet. 68 Rd. and 69 Ave.,405,30,104,11379,Q,0.448,False,Middle Village Playground,Yes,100000159,PARK,20090423000000.00000,19380429000000.00000,78-38 68 ROAD,DPR,True,Middle Village Playground,Y,Middle Village Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q101/,No,28,15,6,{FE1F591F-3FCF-4BA7-BFD8-27D710894E60} +"MULTIPOLYGON (((-73.90524044430829 40.872409525787, -73.90535096470103 40.87225693323628, -73.90542229821865 40.872285312089424, -73.90557932882662 40.87206815186651, -73.90567943625142 40.87209847844574, -73.90574203549414 40.871964269433064, -73.90577411618557 40.87189548929086, -73.90580218331186 40.87183531633589, -73.90589535491341 40.8716355612973, -73.90624151886348 40.87174042943242, -73.90605998964833 40.87212816910674, -73.90578049934028 40.87205385894647, -73.90555765050979 40.87254273306277, -73.90524044430829 40.872409525787)))",X175,6663,X175,X-07,X-07,X-07,X-07,Bailey Ave. bet. W. Kingsbrodge Rd. and W. 193 St.,207,14,52,"10463, 10468",X,0.637,False,Riverbend Playground,Yes,100004398,PARK,20100106000000.00000,19541120000000.00000,2700 BAILEY AVENUE,DPR/DOE,False,Riverbend Playground,Y,Riverbend Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X175/,No,86,33,13,{0D7AF47F-EA00-4F52-A13C-E4055A304862} +"MULTIPOLYGON (((-73.88472344576967 40.767074245440014, -73.88500632411332 40.767007758416845, -73.88502047771756 40.76704141809225, -73.88502965986028 40.767076058857384, -73.8850337587429 40.767111259165645, -73.88503822810522 40.76715346306666, -73.88503347093668 40.76719564965643, -73.88501961832276 40.76723665921476, -73.88499705001675 40.76727536738751, -73.8849663849211 40.76731071129172, -73.8849284644547 40.76734172011701, -73.88488433118431 40.76736754392128, -73.88387483622098 40.76768509152576, -73.88379708893314 40.76725921950975, -73.88472344576967 40.767074245440014)))",Q393I,6212,Q393I,Q-03,Q-03,Q-03,Q-03,23 Ave. bet. 85 St. and Ditmars Blvd.,403,21,115,10021,Q,1.035,False,Planeview Park,Yes,100000045,PARK,20090423000000.00000,19370601000000.00000,,DPR,True,Planeview Park,N,Planeview Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q393I/,No,35,13,14,{2AB5315D-ADB5-4778-8B02-5DBEE062AB57} +"MULTIPOLYGON (((-74.01418137250747 40.61929874343455, -74.01412380979843 40.619263987727116, -74.01388996924265 40.61948813236394, -74.01334148173763 40.61915685800386, -74.0138031552481 40.618717936600916, -74.01473810369288 40.619282444225746, -74.01451251585502 40.61949868159983, -74.01445894304335 40.61946633535, -74.014347693875 40.619399165054915, -74.01429239913611 40.61936577884086, -74.01423233296482 40.619329512425765, -74.01418137250747 40.61929874343455)))",B282,5153,B282,B-10,B-10,B-10,B-10,"80 St. To 81 St., 11 Ave. To 12 Ave.",310,43,68,11228,B,1.23,False,Patrick O'Rourke Park (PS 201),Yes,100004738,PARK,20100106000000.00000,19560214000000.00000,8010 12 AVENUE,DPR/DOE,False,Patrick O'Rourke Playground,Y,Patrick O'Rourke Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B282/,No,46,22,11,{2712493A-8A66-4A2B-BC9B-FCA2FCB4A634} +"MULTIPOLYGON (((-73.95803901771242 40.803574439213634, -73.95805045759337 40.80374473579405, -73.95794601392227 40.803700800227595, -73.95803901771242 40.803574439213634)))",M090,4702,M090,M-10,M-10,M-10,M-10,"Manhattan Av, W 114 St, Morningside Av",110,9,28,10026,M,0.018,False,Lafayette Square,Yes,100004964,PARK,20100106000000.00000,18700816000000.00000,351 WEST 114 STREET,DPR,False,Lafayette Square,Y,Lafayette Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M090/,No,70,30,13,{DCA7A0CF-A49A-4D79-981C-AA01022D4A15} +"MULTIPOLYGON (((-73.89933356724846 40.66116833123179, -73.89937611580403 40.66116206844297, -73.89939190605821 40.661224043224394, -73.89940591064341 40.66127901132025, -73.89903083238795 40.66133421668114, -73.89901682928274 40.66127924854098, -73.89900103936262 40.66121727460897, -73.89907882338173 40.66120582616755, -73.89916542509198 40.661193079653835, -73.89925111128886 40.66118046735065, -73.89933356724846 40.66116833123179)))",B564,12295,B564,B-05,B-05,B-05,B-05,Snediker Ave. bet. Newport St. and Riverdale Ave.,305,42,75,11207,B,0.11,False,,,100024470,PARK,20160222000000.00000,20160119000000.00000,558 SNEDIKER AVENUE,DPR,False,Positive Seeds of Life Garden,,Positive Seeds of Life Garden,,Garden,,No,60,19,8,{E3B2DAC6-69F9-4763-90F6-8C1B7DB9FA18} +"MULTIPOLYGON (((-74.08514293232253 40.61095090228783, -74.08519639516248 40.61089779853042, -74.0854870175666 40.61107380674604, -74.08548771409347 40.61107422857267, -74.0854342796664 40.61112730362692, -74.08537807889832 40.61118312730194, -74.08532325998505 40.61123757662782, -74.08526844334669 40.611292026826014, -74.08521362425451 40.61134647609895, -74.08515435118144 40.61140535020655, -74.085399094704 40.61153897264315, -74.08534211885865 40.611597005853504, -74.08517486740924 40.61198084758419, -74.08460506139622 40.61182587889504, -74.08486813058069 40.61125316480863, -74.08488133650438 40.61124004886469, -74.08494060848868 40.611181173997196, -74.08499542766664 40.611126723953, -74.08505024557473 40.61107227478378, -74.08503194195868 40.61106114707131, -74.08508674915983 40.61100670689736, -74.08514293232253 40.61095090228783)))",R125,6098,R125,R-01,R-01,R-01,R-01,Palma Dr. bet. Targee St. and Oder Ave.,501,49,120,10304,R,1.115,False,Lopez Playground,Yes,100003829,PARK,20100106000000.00000,19930517000000.00000,,DPR,False,Lopez Playground,Y,Lopez Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R125/,No,61,23,11,{BC847290-BAC8-4C43-AAEE-EF5C8D387296} +"MULTIPOLYGON (((-73.73905463825886 40.652849621998435, -73.73698708044799 40.64917621327012, -73.7399694451077 40.64799988064105, -73.74017300779714 40.647967643675585, -73.74033162014665 40.64785741874632, -73.74068069006525 40.64773021702155, -73.7408535359409 40.64760778447561, -73.74138320081533 40.64723259921708, -73.7414652118617 40.64672504153111, -73.74143117250898 40.64668091147874, -73.7414757564351 40.646659784610584, -73.74150396325331 40.64648521252582, -73.74135400570508 40.64653594665906, -73.74136607397739 40.646476264702244, -73.7414098038002 40.646260005468974, -73.7415478999938 40.64621328524844, -73.74155653903213 40.6461598181691, -73.74157438032077 40.6460493984527, -73.7414434323775 40.64609370066588, -73.74146484444535 40.64598781321505, -73.74159124039801 40.64594505144797, -73.74159952930158 40.64589375113332, -73.7414033489524 40.6459615859337, -73.7415264094979 40.64526852917126, -73.74169873440484 40.64429800869274, -73.7417412594891 40.644304391645, -73.74178546090943 40.644094200098365, -73.7440814576676 40.64390990409229, -73.74409910220251 40.64406192805197, -73.74410843490709 40.644142338414255, -73.74421257188112 40.644133978207236, -73.74431056051961 40.64412611122982, -73.74443498803919 40.64490669725025, -73.74335484901871 40.64527858291855, -73.74286999098031 40.64544551202364, -73.74241970429235 40.64560053688203, -73.74247651336204 40.64562156161813, -73.74287366536349 40.64547896832244, -73.74308309745463 40.64581232238898, -73.74304206542693 40.645830866114345, -73.74316964121003 40.645878079086756, -73.74334449434264 40.645799060531395, -73.74342946211428 40.64576066096489, -73.74396812237683 40.645517226598535, -73.74409977365396 40.64545772947492, -73.7443750732509 40.64581204508521, -73.74375203752778 40.64609361238115, -73.74382933655767 40.64612221856609, -73.74441326980147 40.64585832314606, -73.7443984223409 40.646143646582075, -73.74443773512242 40.646246419543616, -73.74453780679906 40.64650803001578, -73.74456138769132 40.64656967447658, -73.74456488649035 40.64657882164248, -73.74428919600093 40.646618473103366, -73.74432262410384 40.646684996020994, -73.7445868238912 40.64664699843353, -73.74481100173992 40.647311119311404, -73.74496541488251 40.64749842813458, -73.74502350582517 40.647568894881395, -73.74517418015127 40.64775166730449, -73.74558588340824 40.64826489450101, -73.74561246838849 40.648303428088965, -73.74563622946744 40.648342425497084, -73.74565745487189 40.648382262882045, -73.7456683586882 40.648402579346744, -73.74568490914568 40.64843562996373, -73.74569452230098 40.64845646137157, -73.74570107528066 40.64847149565902, -73.74570879296336 40.64849021925622, -73.74571679834501 40.64851101108625, -73.74572721484273 40.64854069909489, -73.74573388568939 40.6485617275117, -73.74573976148368 40.648581968015144, -73.74574884850003 40.648617704586485, -73.74575764420459 40.648660701417384, -73.74576192935555 40.64868726546674, -73.74576582428409 40.64871818987862, -73.74576802840716 40.6487420045379, -73.74576986485543 40.64877015709662, -73.7457700692381 40.64877609378572, -73.74577096400648 40.64880191101168, -73.7457710769549 40.648830292094836, -73.74576993262713 40.64886841674207, -73.74576825029553 40.64889507386056, -73.74576511772656 40.64892843485664, -73.74575951756262 40.64897019856611, -73.74574021196406 40.649092006339814, -73.74563235222959 40.649969403348635, -73.74563067216316 40.64999699520812, -73.74562974611342 40.65002466888157, -73.7456297200323 40.65006314089538, -73.74563096233581 40.6500979604984, -73.7456337461466 40.65013657020262, -73.74563639909007 40.65016205812136, -73.74564054688074 40.650193341498934, -73.74564610924249 40.650226977464776, -73.74565124120225 40.65025317957561, -73.74565899481604 40.65028733998733, -73.74566787173298 40.650321171490624, -73.74567610560382 40.65034907343952, -73.7456850514532 40.65037661225092, -73.74569471496004 40.65040384917276, -73.74570508661495 40.65043079769155, -73.7457143920719 40.6504533330988, -73.74572750259165 40.650482931601324, -73.74573861362327 40.65050636611645, -73.74575017433922 40.650529389185785, -73.74576266949578 40.65055293301976, -73.74577403231797 40.65057328380253, -73.7457826964728 40.65058819667487, -73.74627166028979 40.65131814658085, -73.74629258058091 40.65135150931256, -73.74630647154972 40.651374978718685, -73.74632802945266 40.651413863945244, -73.74635277266661 40.651463010426745, -73.74637915303533 40.651522539919405, -73.74640065167529 40.65157890591706, -73.74642312894012 40.651650000289905, -73.74643419588331 40.65169261663697, -73.74644089985766 40.65172249179662, -73.74644478488133 40.65174184085349, -73.74644842156094 40.65176182513067, -73.74645075640925 40.651775910826, -73.74645361055889 40.651794910909295, -73.74645550444149 40.651808982124585, -73.7464566836665 40.65181852034214, -73.74645841833758 40.651834040144834, -73.74645975246067 40.651847621143034, -73.74646070290314 40.651858558266014, -73.7464617081827 40.65187186658185, -73.74646264329792 40.65188683710501, -73.74646339300233 40.6519023718461, -73.7464640572521 40.65192359228896, -73.74646430030343 40.651943329545595, -73.74646311670845 40.651995299610704, -73.74645735735938 40.65216548990131, -73.7462915434337 40.65216493244158, -73.74613886196349 40.6521644190387, -73.74598426743849 40.652163899406936, -73.74583088010544 40.652163383135694, -73.7456866938857 40.65216289781165, -73.74554250766805 40.652162412306765, -73.74538661492765 40.65216188629793, -73.74523269790512 40.65216136805631, -73.74507946074388 40.65216085111558, -73.74492551416701 40.65216033239736, -73.74478132559574 40.652159845933, -73.74463714057713 40.65215935839529, -73.74448574435444 40.652158847452455, -73.7443415581543 40.65215836044202, -73.74418883887857 40.65215784436635, -73.74403485093288 40.65215732436391, -73.7438927977157 40.652156843338915, -73.74373649471782 40.65215631508038, -73.74359230853209 40.65215582623019, -73.74344091232543 40.652155313912, -73.74329672732294 40.6521548255944, -73.74315254114019 40.65215433709342, -73.74308451063385 40.652154105902426, -73.74286582763308 40.652153364158316, -73.74286294032309 40.65215335230002, -73.74272198837869 40.652152748919654, -73.74255428095069 40.65215203144914, -73.74247545696889 40.65215169469051, -73.74245395325005 40.652188422024444, -73.74238804622003 40.65216370280123, -73.74235464879119 40.65215117738559, -73.74224514746288 40.65215070870737, -73.74208158065268 40.65215000703112, -73.74185113282185 40.652149019948766, -73.74184850091657 40.65214900503619, -73.74169327055488 40.652148119802064, -73.74152908982119 40.65214718542779, -73.74144605476555 40.65214671152652, -73.74142708496191 40.65217869411661, -73.74136155005714 40.65215720801207, -73.74132747126154 40.65214603514936, -73.74120640719389 40.652145344963756, -73.74104323147185 40.6521444148589, -73.74081293154815 40.652143101841666, -73.74064925216105 40.652142167341204, -73.7404903163516 40.65214126042094, -73.74004688896197 40.652138729959646, -73.7399612728681 40.65213823924696, -73.73984323475432 40.65217508639341, -73.73950993945164 40.652279127471125, -73.7395658921538 40.6523783934686, -73.7396257564418 40.65248459960465, -73.73969324065571 40.65260432176717, -73.73960158809915 40.652639528195834, -73.73941064723614 40.65271287274128, -73.73905463825886 40.652849621998435)), ((-73.74181026852112 40.6439577123427, -73.74183998995653 40.64372634760146, -73.7417888264879 40.643731939342224, -73.7419096168534 40.64298827297757, -73.74194438359305 40.642774223042586, -73.7419955923117 40.64245894176049, -73.7426537474242 40.6424902435936, -73.74268664175214 40.642356390644, -73.74288746730278 40.64236667803469, -73.74286750122269 40.64250040956174, -73.74317604682743 40.64251508236153, -73.74322158349386 40.64258620012648, -73.74332844403172 40.64275309201304, -73.74372125928062 40.6433665734523, -73.74386100331614 40.64350546612816, -73.74376038962812 40.643516462489735, -73.74380955728346 40.64378734369468, -73.74241762875148 40.64390595975578, -73.74211117847351 40.6439320724783, -73.74181026852112 40.6439577123427)), ((-73.74292892962688 40.645457553189395, -73.74333185900606 40.64531883086416, -73.74350694251422 40.645620778340614, -73.74313440935828 40.64578913510609, -73.74292892962688 40.645457553189395)), ((-73.74260481094 40.6422365956535, -73.74267602960444 40.6418075445415, -73.74284150308395 40.64182227352625, -73.74281895696043 40.641957379783705, -73.7430295157971 40.64228622951012, -73.74292530330442 40.642323798710365, -73.74270895114036 40.642312522994565, -73.7426517903061 40.64230954403674, -73.7426263195073 40.64230135261657, -73.74261556253617 40.642293728133694, -73.74260746267883 40.64228438689819, -73.74260247895592 40.64227385674356, -73.74260140263884 40.64225713523948, -73.74260481094 40.6422365956535)), ((-73.74206430866725 40.64227185303215, -73.74217616230247 40.642030160561106, -73.74257732794777 40.642059898506886, -73.74253633772427 40.64230684339413, -73.74206430866725 40.64227185303215)), ((-73.74222448949658 40.64192573538079, -73.74227969399787 40.641806448064465, -73.74261563579269 40.6418291155714, -73.74259503740792 40.641953203753324, -73.74222448949658 40.64192573538079)), ((-73.74349933151485 40.64526117218733, -73.74372655209376 40.645182941628356, -73.74380175474359 40.645312633947434, -73.74369116954932 40.64535687421523, -73.74363842265561 40.64537797564057, -73.74358049658743 40.64540114930142, -73.74349933151485 40.64526117218733)), ((-73.74400807876782 40.643770423717065, -73.74397818072983 40.64362149546893, -73.74411876881395 40.643760990352504, -73.74400807876782 40.643770423717065)))",Q454,6238,Q454,Q-13,Q-13,Q-13,Q-13,"Brookville Blvd., Huxleyy St. bet. 149 Ave. and Hook Creek Basin",413,31,105,"11559, 11422",Q,111.163,False,Hook Creek Park,No,100000424,PARK,20090423000000.00000,19671018000000.00000,,DPR,Part,Hook Creek Park,N,Hook Creek Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q466/,Yes,31,10,5,{177ABC89-5B49-4989-9288-CA915E5F0F5B} +"MULTIPOLYGON (((-73.94825476732194 40.71715135024089, -73.94825335195655 40.71714356559435, -73.94825037304287 40.71712678594889, -73.94824771700212 40.71711182637962, -73.94824784325779 40.71710774442351, -73.94824831494964 40.71710385803342, -73.94824912746728 40.717100007816974, -73.94825046224366 40.71709573729693, -73.94825262139867 40.717090631473916, -73.94825263917735 40.717090598163026, -73.94825459002189 40.71708703031784, -73.94825719444114 40.71708311246792, -73.94826122819266 40.71707813355868, -73.94826550759561 40.7170738247393, -73.9482730666189 40.717072453957265, -73.94827871716528 40.717071910786714, -73.94843721648172 40.71705668851885, -73.94867356353944 40.717034496596895, -73.94868246865879 40.717035619000406, -73.9486888123243 40.71703715449629, -73.9486948466307 40.717039288693314, -73.94869974349936 40.71704152143928, -73.9487042423968 40.71704415563527, -73.94870734488818 40.71704659920135, -73.9487097424291 40.71704848773894, -73.94871472831169 40.717053473383714, -73.94871701615381 40.717056421772824, -73.94871859813347 40.71705846213317, -73.94872046982475 40.71706236667873, -73.94872089402793 40.71706325116869, -73.94872245018487 40.71706808940278, -73.94872322999335 40.71707287506146, -73.94872340586504 40.71707656633121, -73.94872350251208 40.71707862674167, -73.94872279715362 40.717083216328106, -73.94872266788944 40.71708355486237, -73.94872114044318 40.7170875479449, -73.94871902672685 40.717092096381094, -73.94871620070849 40.71709641396927, -73.94871385855339 40.71709944854591, -73.94871286221996 40.71710073853323, -73.94870900950262 40.71710427942404, -73.94869423169465 40.7171139839416, -73.94869414762174 40.71711403973579, -73.94864510192555 40.71714553032303, -73.94860172806021 40.71717338085775, -73.9484359337009 40.71727983797837, -73.94839850390794 40.71730387113394, -73.94834444098568 40.717338396764475, -73.94833959652134 40.71734030727438, -73.9483342743938 40.71734159711826, -73.94833205723577 40.717342133727826, -73.94832504903235 40.717342846487995, -73.94832040980704 40.71734259856631, -73.94831789373808 40.7173424632608, -73.94831095451995 40.71734121023736, -73.94830533660142 40.71733933105167, -73.94830263806423 40.717337934949654, -73.94829855890532 40.717335827725016, -73.94829417409134 40.71733258932216, -73.94829004466887 40.7173281479522, -73.94828624003081 40.71732153919992, -73.94825476732194 40.71715135024089)))",B223V,5787,B223V,B-01,B-01,B-01,B-01,"Leonard St., Withers St., Meeker Ave.",301,34,94,11211,B,0.067,False,Bedame Sessa Triangle,Yes,100004552,PARK,20100106000000.00000,19460514000000.00000,,DPR/CDOT,False,Badame Sessa Triangle,Y,Badame Sessa Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223V/,No,50,18,12,{79C80D2D-D977-40DE-A763-9CDA14377A83} +"MULTIPOLYGON (((-73.94563033934269 40.68538037999032, -73.94655685446328 40.68527380325382, -73.94661120381275 40.68555055730745, -73.9465769787904 40.68555449467934, -73.94663158672799 40.68583224029937, -73.94574026535429 40.6859346747604, -73.94563033934269 40.68538037999032)))",B323,5179,B323,B-03,B-03,B-03,B-03,Monroe St. to Madison St. between Marcy Ave. and Tompkins Ave.,303,36,79,11216,B,1.195,False,Hattie Carthan Playground (PS 305),Yes,100004999,PARK,20100106000000.00000,19600128000000.00000,308 MONROE STREET,DPR/DOE,False,Hattie Carthan Playground,Y,Hattie Carthan Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B323/,No,56,25,8,{A701F9C2-71F7-4E78-9143-413860CD327D} +"MULTIPOLYGON (((-73.90065552689464 40.82590522654478, -73.90124489634754 40.82448207283204, -73.90216145165867 40.82470283632385, -73.90157025106834 40.82612162748655, -73.90065552689464 40.82590522654478)))",X166,4728,X166,X-03,X-03,X-03,X-03,Tinton Av bet. E 166 St and E 165 St,203,16,42,10456,X,3.348,False,Behagen Playground,Yes,100004824,PARK,20100106000000.00000,19510201000000.00000,1050 - 1054 TINTON AvNUE,DPR,True,Behagen Playground,Y,Behagen Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X166/,No,79,32,15,{5C613809-F731-42CF-9FBB-720A3E3E4841} +"MULTIPOLYGON (((-74.05679295042127 40.607875050461175, -74.06032655123909 40.6064442237033, -74.06101645281565 40.60737754581347, -74.06071644904127 40.607501642603594, -74.06055185321456 40.60756972783737, -74.06036362129161 40.607647588708076, -74.06016989662432 40.607727723261284, -74.05953020800423 40.60799232258074, -74.0589181499112 40.608245487355404, -74.05734935706617 40.6088940377906, -74.05731976122578 40.60890613575353, -74.05642011270207 40.60927385953843, -74.05568301359538 40.608350713312326, -74.0562923841581 40.608089570457736, -74.05679295042127 40.607875050461175)), ((-74.06509896061013 40.604876597980336, -74.06542652066474 40.60472287296197, -74.06543613145081 40.60473637081941, -74.06542485328788 40.604757593540754, -74.065392784356 40.60481442573066, -74.06536073118478 40.60485724037537, -74.06532638698287 40.604900055412664, -74.06528516931108 40.6049472418762, -74.06523241909463 40.604999737144766, -74.0651877533233 40.605038192266726, -74.0651544348309 40.605065617648336, -74.06512051526082 40.605090980264706, -74.06509969559968 40.605105693982495, -74.0650801883549 40.60511892829607, -74.06505218117596 40.60513705635194, -74.0650314246103 40.60514986091477, -74.06501105840856 40.60516192952652, -74.06498861809477 40.60517469000787, -74.06496554024238 40.605187964142765, -74.06493448308983 40.60520328606596, -74.06466469197443 40.60532392802568, -74.06446008299822 40.60541625912107, -74.06102309622469 40.60696712134831, -74.06100179300668 40.606939173253885, -74.0612719313465 40.60681563284914, -74.06133370009287 40.60678738475194, -74.06141507096692 40.60675017135917, -74.06149682913953 40.60671278029852, -74.06156817140982 40.60668015401782, -74.06164951249508 40.60664295308176, -74.061697207377 40.60662114116262, -74.06172007380057 40.60661053964855, -74.06187784968523 40.60653739457153, -74.06202819523413 40.606467693281196, -74.06215821344537 40.60640741594439, -74.06241537686282 40.60628819155858, -74.06257707464503 40.606213227035916, -74.06264895989325 40.60617990008096, -74.06272355201101 40.6061453171766, -74.06280062423252 40.606109585603605, -74.0628852195742 40.606070364842765, -74.06302807762525 40.60600413334615, -74.06311130033971 40.60596554893958, -74.06315011025268 40.60594755590508, -74.06326214288967 40.60589561522323, -74.06334219427067 40.6058585011458, -74.06342438676614 40.60582039435617, -74.06353966797855 40.605766946837946, -74.06365433959759 40.605713781404674, -74.06377546059532 40.6056576252466, -74.06380743794173 40.60564280021484, -74.06395398248549 40.60557485722659, -74.06403411458746 40.60553770479877, -74.06418506031366 40.60546772028092, -74.06426613342745 40.605430132213144, -74.06434220722075 40.605394859427406, -74.06442148974456 40.605358101632895, -74.06454859008467 40.60529917310092, -74.06463986079116 40.605256854902365, -74.06475659505608 40.60520273085116, -74.06491202944358 40.60513066444132, -74.06511297452863 40.605037495327096, -74.06519323879405 40.60500028077804, -74.06509896061013 40.604876597980336)), ((-74.06569732218753 40.60462911551574, -74.06574686266814 40.604518975844556, -74.06576720021499 40.604520132185804, -74.0657147487275 40.60463532005616, -74.06565491165935 40.604741240344836, -74.0655949272752 40.60482608936872, -74.06550461923278 40.60493554350224, -74.06541619041724 40.605022987734316, -74.06531798829158 40.60510861209405, -74.06522130440634 40.60517873572165, -74.0650821366298 40.605264295767235, -74.06507046311468 40.605252256993936, -74.0652110423284 40.60516498697071, -74.06530602630322 40.605098822112, -74.0653999761719 40.60501569372784, -74.06548871375857 40.604928636556714, -74.06557516653535 40.60482043726158, -74.06563464547656 40.60473582357289, -74.06569732218753 40.60462911551574)))",R059,6041,R059,R-01,R-01,R-01,R-01,"Tompkins Ave., Bay St. bet. School Rd., North Rd.",501,50,120,10305,R,13.938,False,Von Briesen Park,Yes,100004124,PARK,20100106000000.00000,19450628000000.00000,,DPR,True,Von Briesen Park,Y,Von Briesen Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/R059/,Yes,64,23,11,{739DD489-6DCD-49ED-9153-18383BB88071} +"MULTIPOLYGON (((-74.0061927210609 40.72228864543381, -74.0055169536098 40.7218112747001, -74.00626877606577 40.72188189289708, -74.0061927210609 40.72228864543381)))",M145,5433,M145,M-01,M-01,M-01,M-01,"Laight St., Canal St., and Varick St.",101,1,1,10013,M,0.366,False,Albert Capsouto Park,Yes,100004104,PARK,20100106000000.00000,20031010000000.00000,68 VARICK STREET,DPR/CDOT/MTA,False,Albert Capsouto Park,Y,Albert Capsouto Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M145/,No,66,26,10,{64A34F0F-159E-4EEB-A181-B809222BA95D} +"MULTIPOLYGON (((-73.98353466849754 40.72251216406489, -73.9835492105929 40.7224922423724, -73.98362165223621 40.72252276466122, -73.98369533898335 40.72255380937611, -73.98350618488237 40.72281299496874, -73.98343249793655 40.72278195103436, -73.98336005373025 40.72275143132879, -73.98340580089614 40.72268873546126, -73.9834478538248 40.72263111791711, -73.98349072957632 40.72257236493278, -73.98353466849754 40.72251216406489)))",M314,4982,M314,M-03,M-03,M-03,M-03,"E. 3 St., bet. Ave. A and Ave. B",103,2,9,10009,M,0.117,False,Miracle Garden,No,100004524,PARK,20100106000000.00000,19990712000000.00000,196 EAST 3 STREET,DPR,False,Miracle Garden,N,Miracle Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M314/,No,65,26,12,{35A8085C-2B75-410A-BCE6-960AB499A9C0} +"MULTIPOLYGON (((-73.83701365562236 40.722913597411164, -73.83655065521316 40.72226512337479, -73.83691313442043 40.722154465700434, -73.83696768388205 40.722248681476195, -73.8370741894127 40.72228627998865, -73.83724623578964 40.7222330797914, -73.83738508914898 40.7224954696669, -73.83722729411701 40.7225457815687, -73.83731279381223 40.72271508950866, -73.8373823734849 40.722689682631625, -73.83759476736175 40.72310396619717, -73.83738296276941 40.72316561068749, -73.83754931403355 40.72350052037987, -73.83741375083656 40.72354086102431, -73.83723573284607 40.72325209753436, -73.83701365562236 40.722913597411164)))",Q348,6295,Q348,Q-06,Q-06,Q-06,Q-06,72 Ave. bet. 112 St. and Grand Central Parkway,406,29,112,11375,Q,1.277,False,Willow Lake Playground,Yes,100000369,PARK,20090423000000.00000,19510614000000.00000,,DPR/DOE,False,Willow Lake Playground,Y,Willow Lake Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q348/,No,27,15,6,{F33004AE-5878-4ECC-8476-8B5CA3B76A7E} +"MULTIPOLYGON (((-73.9029487010649 40.81094598295335, -73.90309302928635 40.81090003037043, -73.90312945842798 40.81109465682932, -73.9029487010649 40.81094598295335)))",X063,5844,X063,X-02,X-02,X-02,X-02,Austin Pl. at E. 149 St.,202,8,41,10455,X,0.16,False,Martin Luther King Triangle 149th St,Yes,100004277,PARK,20100106000000.00000,19060608000000.00000,,DPR,True,Martin Luther King Triangle,Y,Martin Luther King Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X063/,No,84,32,15,{58A5BBD1-CDC8-4AA2-9954-8F836214F2F7} +"MULTIPOLYGON (((-73.9171135097753 40.69704845653344, -73.91716747123503 40.69699348575515, -73.91745199304313 40.69715461541918, -73.91774561081478 40.69732089370514, -73.91770308519445 40.69736413384512, -73.91764721788594 40.69742094055419, -73.91758930101972 40.697479829554844, -73.91753138405008 40.6975387194264, -73.91747780641045 40.69759319536475, -73.91737009051437 40.697702721290334, -73.91731821024385 40.69775547208911, -73.91710252471698 40.69797477639701, -73.91688145589 40.6978492367689, -73.91680919591768 40.69780820042543, -73.91673498399183 40.69776605589398, -73.91652573516832 40.69764722664544, -73.91679240584972 40.697375569346576, -73.91684589752457 40.69732107655362, -73.91689999092556 40.69726597092078, -73.9169535037462 40.69721145828115, -73.91700700818934 40.69715695191392, -73.91705954822436 40.697103429087036, -73.9171135097753 40.69704845653344)))",B429,5236,B429,B-04,B-04,B-04,B-04,Knickerbocker Ave. between Grove St. and Menahan St.,304,37,83,11237,B,1.363,False,Hope Ballfields,Yes,100004257,PARK,20100106000000.00000,20000714000000.00000,506 KNICKERBOCKER AVENUE,DPR,False,Hope Ballfield,Y,Hope Ballfield,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B429/,No,53,18,7,{8AA1C01E-5D4D-4045-9C4B-09BE90FA4DF2} +"MULTIPOLYGON (((-73.91079350398927 40.846935399620556, -73.91091662492201 40.846762989194474, -73.91123666869387 40.84689578482222, -73.91111436335268 40.847067053488814, -73.91079350398927 40.846935399620556)))",X331,4785,X331,X-05,X-05,X-05,X-05,E. 175th St. at Walton Ave.,205,14,46,10453,X,0.15,False,Townsend Garden,No,100004037,PARK,20100106000000.00000,20021120000000.00000,1735 WALTON AVENUE,DPR,False,Townsend Garden,Y,Townsend Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X331/,No,77,33,15,{851E032C-7A4D-47FC-9AD8-2D18BF5160D3} +"MULTIPOLYGON (((-73.94597694244223 40.80958808047774, -73.94593205896558 40.809569219218815, -73.94611021051833 40.809326311357005, -73.94615505472983 40.80934522385736, -73.94597694244223 40.80958808047774)))",M409,20296,M409,M-10,,,M-10,W. 127 St. bet. Lenox Ave. and Adam Clayton Powell Jr. Blvd.,110,9,,10027,M,0.033,False,,,100024479,PARK,,20160325000000.00000,,DPR,False,Harlem Grown,,Harlem Grown 127th Street Learning Annex,,Garden,,No,70,30,13,{5FFA29FE-9505-49AB-90A5-93C377138D22} +"MULTIPOLYGON (((-73.91056836793909 40.710629024629, -73.9113166875441 40.70989796870241, -73.91188342736868 40.71023109514135, -73.91227798927453 40.71046301250443, -73.91223562052299 40.710507473573514, -73.9122641788158 40.710524260161925, -73.91200827291595 40.71079280352245, -73.91089812657377 40.711957745123904, -73.91053924354675 40.71175118669466, -73.91041202307383 40.71167796354853, -73.9103866657615 40.71165777056024, -73.91036919189133 40.71163974222998, -73.91035054491493 40.711614049633134, -73.91033710506747 40.711586558265616, -73.91032906277506 40.71155734211949, -73.91032684127353 40.711530234101225, -73.9103291423882 40.71150519988107, -73.91033621447761 40.71147883571985, -73.91033965524784 40.71145026247739, -73.91034089247826 40.71141993602422, -73.91033944316133 40.71138710675877, -73.91033405217627 40.711348776802005, -73.91032200012967 40.7113022379986, -73.91029631363628 40.711240983221295, -73.9102788297417 40.711210280172615, -73.91025049283041 40.71116985394487, -73.91022655617402 40.71114151870408, -73.91020256489465 40.71111685029741, -73.9101696757848 40.71108761025106, -73.91012972047173 40.71105754341264, -73.91056836793909 40.710629024629)))",Q002,5490,Q002,Q-05,Q-05,Q-05,Q-05,Stanhope St. bet. Fairvier Ave. and Grandview Ave.,405,34,104,11385,Q,5.1,False,Grover Cleveland Playground,Yes,100000316,PARK,20090423000000.00000,19231005000000.00000,3-96 GRANDVIEW AVENUE,DPR,True,Grover Cleveland Playground,Y,Grover Cleveland Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q002/,No,37,12,7,{D21F2776-C7BE-48F8-80C7-31F94817A6E9} +"MULTIPOLYGON (((-73.93462145633255 40.82460151284591, -73.9346245438235 40.82403257680956, -73.93640702728683 40.824781471393706, -73.9360916248119 40.82521538820593, -73.93602375492881 40.82530875989257, -73.93490901936082 40.82483462298004, -73.93495325788975 40.82477479649016, -73.9348703890457 40.824739437673934, -73.93471329574307 40.8246724086848, -73.93462405456451 40.82463433108799, -73.93462145633255 40.82460151284591)))",M159,69242,M159,M-10,M-10,M-10,M-10,7 Ave. bet. W. 150 St. and W. 151 St.,110,9,32,10039,M,2.445,False,Frederick Johnson Playground,Yes,100004107,PLGD,,19370601000000.00000,2619 ADAM C POWELL BLVD,DPR/DOT,False,Frederick Johnson Playground,Y,Frederick Johnson Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M159/,No,71,30,13,{6DB4DBBA-098A-4206-858B-FA6CBF46E86F} +"MULTIPOLYGON (((-74.11593668159789 40.62210455289453, -74.11558924389794 40.62172915854117, -74.11542762698629 40.62179656373614, -74.1149609582627 40.6215309561903, -74.11413384836575 40.6212786015237, -74.11325672811267 40.62179743159574, -74.11285739713185 40.621513901733245, -74.1124530301376 40.62122679223147, -74.11237217963988 40.62116938742744, -74.11231633572521 40.62112973622489, -74.11226046347998 40.62109006521131, -74.11219524969502 40.62104376014362, -74.11213650234934 40.621002048593134, -74.11207537215188 40.62095870128773, -74.11201390225473 40.6209149976743, -74.11195461676881 40.62087290383339, -74.11189416588205 40.6208299817162, -74.11182769602478 40.62078278434488, -74.11177165634267 40.620742993486445, -74.11171090633762 40.62069985904036, -74.11165027354726 40.620656806395665, -74.11158473877764 40.62061027436077, -74.11106628762016 40.620242146295624, -74.11063078759082 40.62006497444788, -74.10947669814912 40.619595449824544, -74.10771942564088 40.618880494920774, -74.10695213945988 40.61856830632613, -74.10616940548519 40.61896208149943, -74.10613047081641 40.618944427612746, -74.10609307781658 40.61892566825104, -74.10605516748195 40.61890558738929, -74.10601970014604 40.61888491171901, -74.10598510790234 40.61886309607163, -74.10595700589506 40.618844184916384, -74.10593675202173 40.61883043911609, -74.1059087965025 40.61880998792276, -74.10587868539653 40.61878653096709, -74.10585410522705 40.618766178410446, -74.10582714084285 40.6187424754029, -74.10579977624262 40.618716779903814, -74.10577424619737 40.6186958221534, -74.10573556622815 40.618663473192875, -74.10569324150156 40.618628012667386, -74.10564522168481 40.61858498217557, -74.10555983172124 40.61850672787704, -74.10547266199475 40.618422354304634, -74.10538675586585 40.61833427926531, -74.10529235885559 40.618231156123585, -74.10523682334072 40.618167009716615, -74.1051723861837 40.618089676088665, -74.10475601572205 40.61762497754588, -74.1051905075194 40.6174778408278, -74.10513189869835 40.617286705657406, -74.10511374833412 40.617227519279986, -74.1051006047776 40.61718465657516, -74.10508848160153 40.617145123063885, -74.10506956276835 40.61708342402607, -74.10502772694284 40.61694699184438, -74.10439554248967 40.61722111187746, -74.10388388840296 40.6166478559354, -74.10416804172067 40.61652464700148, -74.10400692732081 40.6163359301327, -74.10474173019855 40.616014526019384, -74.10617349571314 40.615393675312326, -74.1061914749657 40.6153858781983, -74.1062339889712 40.6153765545387, -74.10640219258376 40.61533966218965, -74.10652481307723 40.615312768912155, -74.11180051696316 40.61415553143539, -74.11207528825183 40.614104706768344, -74.112474737394 40.614035683343076, -74.11269117460469 40.61400447449955, -74.1128310233575 40.613984231361925, -74.1132348772586 40.613939429507276, -74.1140307262195 40.61388364249391, -74.11419577111073 40.614780508168614, -74.11434398677949 40.617109549135506, -74.11444898720343 40.61797644508422, -74.11445249502685 40.6179911218918, -74.11445591872956 40.61800291531344, -74.11446301652768 40.61802297186321, -74.1144716086226 40.61804265500911, -74.11448536575254 40.6180682674466, -74.1145012665141 40.61809244231609, -74.11451879264213 40.61811479921248, -74.1145409586705 40.61813869227522, -74.11456235407516 40.618158379766136, -74.1145836694013 40.61817547022918, -74.11460778518276 40.61819235978158, -74.1146318274773 40.61820705122948, -74.11469277488547 40.61859982487643, -74.11526176250851 40.61854418439837, -74.11556466605785 40.61851456201487, -74.11584044989024 40.61848759118442, -74.11605756256671 40.618466358528984, -74.11634576076425 40.618438172656134, -74.11650294152379 40.61842279915799, -74.11663965388422 40.618409429163115, -74.11685222764494 40.61838863816538, -74.11708492928668 40.6183658784476, -74.11731668196963 40.618343210179646, -74.11756996263867 40.618318437423135, -74.11790236427949 40.61828592315085, -74.11826928600915 40.61916636872434, -74.11877644340973 40.619905704248794, -74.11888831370162 40.62009618844025, -74.11905505047685 40.620430763048546, -74.11925608892386 40.62091032716518, -74.11934259268634 40.62113746230653, -74.11945482704503 40.62144941324536, -74.11951349666222 40.621656147943135, -74.11952257840889 40.6216881466246, -74.11928953638781 40.6217552739832, -74.11920286142121 40.6217866605998, -74.11910707963794 40.62183022712934, -74.11900002514253 40.62189618319752, -74.11871273930726 40.622117524825256, -74.11850250114225 40.62231991231262, -74.11842279295954 40.62241910129231, -74.1183749991018 40.62249565428016, -74.11837135632972 40.622502799162866, -74.11832268590892 40.622598292789036, -74.11828865671748 40.62271482190904, -74.11821027499035 40.62297818515634, -74.11818049456117 40.62307824474479, -74.11817147190736 40.6231214204928, -74.11816555271082 40.623327434256495, -74.11816878906141 40.623468524552834, -74.11816413305046 40.62351688461163, -74.11672289472044 40.62305385652077, -74.11617586088313 40.6228781039285, -74.11593668159789 40.62210455289453)), ((-74.12004101033584 40.62629656979048, -74.11934229295217 40.62581415973942, -74.12010440660312 40.62550301963366, -74.11945109334178 40.62500141949796, -74.11924049804843 40.62472261623826, -74.11854144931834 40.623769601090835, -74.11856160141238 40.62375501348353, -74.1185836741937 40.62373320081323, -74.11860825465638 40.62370062162478, -74.1186247211775 40.62366847314783, -74.1186361198283 40.623628998757326, -74.11863884430852 40.62359258878471, -74.11863441939217 40.62355667157057, -74.1186210164697 40.62351709940032, -74.11834306865128 40.62303458054182, -74.11846891062083 40.622614084121494, -74.11852763670315 40.62251234485863, -74.11877411382069 40.62230510751052, -74.1193781453062 40.6219164878491, -74.11958259731173 40.621858820312426, -74.12007998712266 40.62176497004198, -74.12139199012037 40.62287246229902, -74.12145624268389 40.622929654966704, -74.12151383104847 40.62299082954222, -74.12156433364846 40.62305553712126, -74.12160737732133 40.62312330263271, -74.12164264794976 40.62319362752862, -74.12166988456275 40.62326599519317, -74.12201143100869 40.6242688739141, -74.12210407713583 40.6245409057684, -74.12219402663602 40.62480501582355, -74.12224237903213 40.62479550174786, -74.12228817108787 40.62492189608488, -74.12237725913698 40.625183475539586, -74.12245892045827 40.6251678537008, -74.12255118939915 40.625438768027664, -74.1223686605435 40.62547595854839, -74.12238418971519 40.62552506993141, -74.12238932787366 40.62553756098895, -74.12239699859515 40.62554927310115, -74.12240700750964 40.62555991200413, -74.12241910355858 40.625569206907784, -74.1224329802033 40.62557692490312, -74.12244828605985 40.62558287005012, -74.12246463436979 40.62558689147278, -74.12248161364681 40.62558888875064, -74.12249879358323 40.625588810111736, -74.12251573924455 40.625586658721026, -74.12269114968029 40.62555328836942, -74.12275636028963 40.62586461074698, -74.12293407025133 40.62584221041685, -74.12294932091547 40.62591501742333, -74.12296315623871 40.62598106573162, -74.12297687355203 40.626046555841114, -74.12299163424491 40.62611702921481, -74.12300703645631 40.62619055196356, -74.1230240687386 40.62627186787302, -74.12303655559862 40.626331477989226, -74.12304214082374 40.626358138232135, -74.12305775422091 40.62643267833473, -74.12306573979436 40.626470802337465, -74.12307338195049 40.62650728055524, -74.12309005547445 40.626586881344444, -74.12310690550979 40.62666732122691, -74.12312490270041 40.62675324044675, -74.1231487499696 40.62686708574788, -74.12317582641059 40.626996341795696, -74.12282040038568 40.62704114382352, -74.12286665134789 40.627261940794114, -74.12268247120052 40.62728495666885, -74.1222784858672 40.62733543977972, -74.1221351642847 40.627356323907506, -74.12201858688279 40.6273840720609, -74.12185211566569 40.627441773873414, -74.12126915766834 40.62767996288653, -74.12114375734716 40.62753449171352, -74.12075911639857 40.62699836077217, -74.12065184209943 40.626864031968076, -74.12056018695768 40.626758307933244, -74.12045305451477 40.62665040817362, -74.1203521075075 40.626555030782725, -74.12026040029524 40.62647369626325, -74.12017391295696 40.626401730634576, -74.12004101033584 40.62629656979048)), ((-74.11634310995098 40.62407518546165, -74.11756003464642 40.62341071025826, -74.11813166707944 40.623594886880454, -74.1181249463092 40.62360718229482, -74.11811673227014 40.62362115781403, -74.1181066565512 40.623637001124564, -74.1180951734068 40.623653614024306, -74.11808309606945 40.623669723241456, -74.11807163464366 40.62368392181987, -74.11805870780948 40.623698850423374, -74.11804386219667 40.623714773369656, -74.11802947709167 40.62372912623328, -74.11801297815899 40.62374445112594, -74.1179973801226 40.62375795243721, -74.11798373620121 40.62376905995743, -74.11796916940142 40.62378026027606, -74.1179550158191 40.62379054794127, -74.11794194729968 40.62379956205546, -74.1179287328059 40.62380823592098, -74.11791584932139 40.623816291688165, -74.1179019498146 40.62382456642192, -74.11789142523028 40.62383055757424, -74.11788067708544 40.6238364435939, -74.11786536238708 40.623844442413805, -74.11698716352872 40.624312301811315, -74.11634310995098 40.62407518546165)))",R005,5039,R005,R-01,R-01,R-01,R-01,"Forest Ave., Victory Blvd., bet. Clove Rd. and Brookside Ave., Royal Oak Rd.",501,49,120,"10301, 10310",R,193.423,False,Clove Lakes Park,No,100003983,PARK,20100106000000.00000,19230901000000.00000,1321 VICTORY BOULEVARD,DPR,True,Clove Lakes Park,Y,Clove Lakes Park,Large Park,Community Park,http://www.nycgovparks.org/parks/R005/,No,"61, 63",24,11,{A09E7699-8418-46A2-B565-EBE4D6E624E0} +"MULTIPOLYGON (((-73.78243845176827 40.84408898320969, -73.78326074999309 40.843904767139755, -73.78323624408144 40.84383871567912, -73.78377787893109 40.8437173720382, -73.78397226589922 40.844255519284694, -73.78514210956894 40.8440101653001, -73.78522578777277 40.84423568539278, -73.78490158435383 40.84430832217042, -73.78501216461709 40.844606349118045, -73.78185255580371 40.84531419275899, -73.78243845176827 40.84408898320969)))",X253,4588,X253,X-15,X-10,X-10,X-10,City Island Ave bet. Centre St. and Winter St.,210,13,45,10464,X,6.1,False,Ambrosini Field,Yes,100004813,PARK,20100106000000.00000,19810505000000.00000,200 CITY ISLAND AV,DPR,True,Ambrosini Field,Y,Ambrosini Field,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/X253/,Yes,82,34,14,{0A4EA237-4E52-4AEA-8B1F-A05089FF2FC1} +"MULTIPOLYGON (((-74.07558896216143 40.64195599346441, -74.07568843049306 40.641843627057135, -74.0757601857174 40.64176144259713, -74.0758310605723 40.64166100335705, -74.07589487241118 40.641538338528804, -74.07590216453207 40.64153663893972, -74.07591015432007 40.64154029427435, -74.07591057712767 40.64154200948339, -74.07594991058514 40.64170190662837, -74.0759551144783 40.64172364711569, -74.07595811137284 40.641736160544994, -74.07595851048184 40.64173782534042, -74.07595967965179 40.64174300885424, -74.07596071353224 40.64174773499393, -74.07596288746679 40.64175595259199, -74.07596542663097 40.641764112315556, -74.07596832509974 40.64177220156124, -74.075971576953 40.64178021222822, -74.07597518572516 40.641788133507966, -74.07597914431705 40.64179596000203, -74.0759834408905 40.64180367730984, -74.07598808489698 40.64181128002204, -74.07599305741438 40.64181876184745, -74.07599835960968 40.64182610927747, -74.07600398320245 40.64183331781496, -74.07600992463192 40.64184037485494, -74.0760161768029 40.641847278601034, -74.07602272669607 40.64185401555399, -74.07602817306693 40.64185923766325, -74.07602887368814 40.641859910788, -74.07603670780058 40.641866965674694, -74.07604412008163 40.641873165347086, -74.0760529311088 40.64188163069942, -74.07605204730513 40.6418882681066, -74.076047598188 40.64189193615993, -74.07604122043026 40.641893096643365, -74.07602514313363 40.64189037419917, -74.07601268054681 40.641888322050896, -74.0760001320284 40.64188659234374, -74.07598751885347 40.64188518146158, -74.07597484575358 40.64188409210277, -74.07596213519531 40.641883328755114, -74.07594939663593 40.64188289141223, -74.07593664898506 40.641882775559175, -74.07592390051992 40.641882982991405, -74.07591117016246 40.64188352000012, -74.07590079963815 40.64188422294637, -74.07589963409208 40.6418843020608, -74.07588581221884 40.64188556470463, -74.0758732165463 40.64188706787682, -74.07586069453623 40.641888894285216, -74.07584825682508 40.641891041221314, -74.07583592349857 40.641893498766166, -74.07581576898968 40.641897143847395, -74.07579578765983 40.64190130120605, -74.07577599723928 40.64190596902953, -74.07575643319117 40.64191114549354, -74.07573710259395 40.64191681798622, -74.07571803736425 40.6419229846857, -74.07569925404408 40.641929638377015, -74.07568077626775 40.64193677094015, -74.07566262649033 40.64194437695728, -74.07564482360512 40.641952437505246, -74.07562738771213 40.641960955272616, -74.07561033416223 40.6419699149406, -74.07559180958816 40.64197958518175, -74.07558645622184 40.6419792167864, -74.07558379236775 40.64197783444011, -74.07558072633238 40.641976242537226, -74.0755784560328 40.64197058426956, -74.07558896216143 40.64195599346441)))",R004,6575,R004,R-01,R-01,R-01,R-01,"Hyatt St., Bay St., Stuyvesant Pl. and Richmond Ter.",501,49,120,10301,R,0.159,False,Barrett Triangle,Yes,100004651,PARK,20100106000000.00000,,,CDOT,False,Barrett Triangle,N,Barrett Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R004/,No,61,23,11,{E656A3A6-C163-45E9-8999-E5686C0E6012} +"MULTIPOLYGON (((-73.92296438335553 40.82717885077623, -73.92298988633868 40.82717801774212, -73.92300368565454 40.827178745551876, -73.92301923938926 40.827180575837176, -73.9230301068057 40.82718251105208, -73.92304468415244 40.827186006599014, -73.92305284809962 40.82718844248411, -73.92306185413297 40.82719156150608, -73.92383519002999 40.82743964809052, -73.92236630309179 40.82993975737919, -73.92150746965851 40.829642485395084, -73.92270441942296 40.827480155514365, -73.92283994931245 40.82723530609676, -73.92285260019307 40.827223518969916, -73.92285985627983 40.827217585055955, -73.92286932923014 40.82721061255197, -73.92287836884095 40.82720521292306, -73.92288844220715 40.827199796875306, -73.92290821164124 40.827191279698866, -73.92292261592162 40.82718657253171, -73.92294063905408 40.82718222167583, -73.92295188316929 40.82718030482992, -73.92296438335553 40.82717885077623)))",X028,5673,X028,X-04,X-04,X-04,X-04,Grand Concourse to Walton Av bet. E 161 St and E 164 St,204,8,44,10451,X,6.882,False,Joyce Kilmer Park,Yes,100005035,PARK,20100106000000.00000,19240328000000.00000,,DPR,True,Joyce Kilmer Park,Y,Joyce Kilmer Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X028/,No,77,29,15,{B6C34CC4-631F-4CEB-BBE2-60F9F3F83BDC} +"MULTIPOLYGON (((-73.95625740881648 40.80103498225306, -73.95614554979309 40.80098781483128, -73.95612283943063 40.800978230281345, -73.95630564307646 40.80073065344534, -73.95646336223255 40.80079678544636, -73.95628034431275 40.80104465421016, -73.95625740881648 40.80103498225306)))",M405,13486,M405,M-10,,,M-10,W 111 St. bet. Fredrick Douglass Blvd. and Adam C. Powell Blvd.,110,9,,10026,M,0.115,False,,,100036966,PARK,,20160209000000.00000,237 WEST 111 STREET,DPR,False,W. 111th St. Harlem Garden,,Electric Ladybug Garden,,Garden,,No,70,30,13,{C6F9DDBA-CCCE-4E30-BB3E-71B8E597CC2A} +"MULTIPOLYGON (((-73.7357248182306 40.6706159703011, -73.73591690075936 40.67028588291107, -73.73609109577946 40.66998653121528, -73.73637175278954 40.67008227945627, -73.73645325320655 40.66994161052906, -73.73652881185312 40.66981701031321, -73.73656659047745 40.66975471063483, -73.7366043690312 40.66969241094364, -73.73664075826836 40.66963240438413, -73.73675409330222 40.669445505196144, -73.73682507804133 40.66931834674482, -73.73690165325 40.66919262835719, -73.73697849124305 40.66906647826875, -73.73734945604365 40.66919672776282, -73.73655491878493 40.670446030730965, -73.73647184513653 40.67048398737351, -73.7364241621334 40.67046696548315, -73.73641710202249 40.670478485862574, -73.73631838511203 40.67064706922288, -73.7362773973997 40.67071706450178, -73.73620763398148 40.67079165487722, -73.73605158210486 40.67073487130861, -73.73594118679434 40.67069470155248, -73.7357248182306 40.6706159703011)))",Q108,6124,Q108,Q-13,Q-13,Q-13,Q-13,Brookville Blvd. bet. 136 Ave. 137 Ave.,413,31,105,11422,Q,1.785,False,Laurelton Playground,Yes,100000330,PARK,20090423000000.00000,,,DPR,False,Laurelton Playground,Y,Laurelton Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q108/,No,29,14,5,{1B8CAEC9-8BB0-48CE-BFA8-31FADB108026} +"MULTIPOLYGON (((-74.14513986569457 40.62340561265923, -74.14517717567134 40.62304148025088, -74.14620414385011 40.62311789199402, -74.14624868343182 40.62286500404614, -74.14611034362217 40.62265741344286, -74.14615848976072 40.6226401612875, -74.14620710441193 40.62262153071823, -74.14625491380191 40.6226016404227, -74.14630164598461 40.62258043581627, -74.14635139313644 40.62255496968709, -74.14639982488814 40.62252790138265, -74.146454990228 40.622496824363296, -74.14655728728782 40.62243606819006, -74.14695645407714 40.62222634316925, -74.14671634567644 40.62258714391142, -74.14646563917618 40.62298555530817, -74.14623768962511 40.62339838335657, -74.14615151709687 40.6235696919581, -74.14603416500294 40.62382134769483, -74.1458986580561 40.62414310401338, -74.1457657249697 40.62450700309315, -74.14571984213462 40.624658087680665, -74.14567124136939 40.624814868786366, -74.14544540078795 40.62482572503985, -74.1455411196597 40.6239814327432, -74.14554225972962 40.62383760453599, -74.14554328111907 40.623708727832835, -74.14554333044302 40.62370045378024, -74.14554468684885 40.62353063985046, -74.14554482602468 40.62351370807155, -74.14554551302194 40.623427144585165, -74.14520869338415 40.62340926561029, -74.14513986569457 40.62340561265923)))",R076,5065,R076,R-01,R-01,R-01,R-01,"Willowbrook Pkwy., Forest Ave. to Houston St.",501,50,120,10302,R,2.836,False,Markham Playground,Yes,100004986,PARK,20100106000000.00000,19471230000000.00000,20 HOUSTON STREET,DPR/DOE,True,Markham Playground,Y,Markham Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R076/,No,61,24,11,{3483912E-D35D-47E7-8BEA-BC0140025A1A} +"MULTIPOLYGON (((-73.8260497433326 40.79563781596518, -73.82721302926338 40.79765791346717, -73.82465833462244 40.798798550381136, -73.82325806150985 40.79631695614404, -73.8260497433326 40.79563781596518)))",Q126,4614,Q126,Q-07,Q-07,Q-07,Q-07,3 Ave. bet. Parsons Blvd and 147 St.,407,19,109,11357,Q,16.831,False,Francis Lewis Park,Yes,100000163,PARK,,,301 3 AVENUE,DPR,True,Francis Lewis Park,Y,Francis Lewis Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q126,Yes,27,11,14,{7C59AC21-DE95-4D93-94CB-F299CC91545E} +"MULTIPOLYGON (((-73.99803558081696 40.71325478355647, -73.99808248629796 40.71323598348844, -73.99828233879504 40.71339515818237, -73.99828717656098 40.71340280178771, -73.99829042264574 40.71340792934281, -73.99829501764927 40.71342167030087, -73.99829593446492 40.713435829941716, -73.99829314115148 40.713449847246864, -73.99828674541534 40.713463165702244, -73.99828438434564 40.713466095027755, -73.99827700526176 40.713475250407896, -73.99808780364901 40.71356243574767, -73.99807150255096 40.71356774758716, -73.99805413759653 40.71357050015552, -73.99803978698644 40.713570571052415, -73.99803640466385 40.71357058720393, -73.99801899489441 40.7135680051421, -73.9980026041603 40.71356285393885, -73.99798787389085 40.71355533982274, -73.99797187864829 40.713543244785626, -73.9977746983526 40.71339413551403, -73.99778886364315 40.71334269952677, -73.99779556871327 40.71331835255236, -73.9978622103257 40.713312797659256, -73.99792438674716 40.71330761545853, -73.99798327078452 40.71330270782223, -73.99803558081696 40.71325478355647)))",M246,5927,M246,M-03,M-03,M-03,M-03,"Chatham Sq., Oliver St. and E. Broadway",103,1,5,10038,M,0.242,False,Kimlau Square,Yes,100004527,PARK,20100106000000.00000,19610427000000.00000,,DPR/CDOT,Part,Kimlau Square,Y,Kimlau Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M246/,No,65,26,7,{34DEA123-AB39-4800-AECC-DFE2EF99C915} +"MULTIPOLYGON (((-73.93765819876536 40.63702433934285, -73.93838064165966 40.63698227558381, -73.9386104475145 40.639096291070544, -73.93788598198672 40.63914058847008, -73.93765819876536 40.63702433934285)))",B218,5476,B218,B-17,B-17,B-17,B-17,"Albany Ave., E. 40 St. bet. Farragut Rd. and Foster Ave.",317,45,67,11203,B,3.56,False,Paerdegat Park,Yes,100004956,PARK,20100106000000.00000,19410227000000.00000,4002 FOSTER AVENUE,DPR,True,Paerdegat Park,Y,Paerdegat Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B218/,No,58,21,9,{CB50B9B3-EEFF-42B6-9493-D7092FDEC7CC} +"MULTIPOLYGON (((-73.9204737673532 40.86264738798367, -73.92091332136818 40.862045757505825, -73.92143786463872 40.86261915533174, -73.92064214897637 40.862911692381665, -73.9204737673532 40.86264738798367)))",M199,4868,M199,M-12A,M-12A,M-12A,M-12A,W. 204 St. bet. 10 Ave. and Nagle Ave.,112,10,34,10034,M,1,False,Monsignor Kett Playground,Yes,100004492,PLGD,20100106000000.00000,19480728000000.00000,500 WEST 204 STREET,DPR,False,Monsignor Kett Playground,Y,Monsignor Kett Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M199/,No,72,31,13,{A22E82D3-73E7-4BEE-9313-E770D0699A4D} +"MULTIPOLYGON (((-73.73807952226866 40.594590566926975, -73.737743354804 40.593473774615845, -73.7448398472429 40.59372769123603, -73.74906812311359 40.592005846119555, -73.75103406110304 40.59037810420129, -73.75311104424954 40.590443222551976, -73.75737763025838 40.590130670362804, -73.76334482245504 40.58907183074747, -73.78174652809537 40.585623638680474, -73.78484587686405 40.58502535625094, -73.78795933681866 40.584377222631865, -73.79237439720988 40.5834623175798, -73.79712092716734 40.58241273996605, -73.8002804896524 40.5817126396249, -73.80080578765156 40.58634398047684, -73.80030385584705 40.5864445480409, -73.80004480801625 40.58649644959025, -73.79993262742617 40.58651892504946, -73.79934291396891 40.58663707499497, -73.79922304094497 40.58666109153595, -73.79860603898864 40.58678470393456, -73.79842999307091 40.586819973205266, -73.79806200014886 40.586893696069, -73.79768461831026 40.586969297730974, -73.79752432071288 40.5870014108852, -73.79741613385774 40.58702136585267, -73.79657199689618 40.58717706302123, -73.79647905461705 40.587194204738076, -73.79642446212834 40.58720427406302, -73.79573081309009 40.587332208121246, -73.79555890584963 40.5873639133712, -73.79514684341008 40.58744150719723, -73.7948145341922 40.58750638428567, -73.79461559890227 40.58754522335144, -73.7937589974701 40.58771274742016, -73.79356170713801 40.587751348075486, -73.7928574525146 40.58788914522656, -73.79271443637477 40.587917128703374, -73.7919929499064 40.58805871670713, -73.79178941867731 40.58809868803254, -73.79108804022576 40.58823644714021, -73.7909083954559 40.58827173167197, -73.79059891269569 40.58833392032669, -73.79059059978438 40.58833559096123, -73.79025729750805 40.58843775465243, -73.79018675064992 40.58845976258233, -73.79007302708943 40.58849523910479, -73.78937539341136 40.588712869451236, -73.78928422351493 40.588741309300794, -73.78923825366098 40.58875564961321, -73.788719836308 40.58891736763082, -73.78858754127576 40.58895863583734, -73.78811517862538 40.5891059842174, -73.78665822752846 40.58956044571167, -73.78613093286997 40.58972491730145, -73.78555504149617 40.589904543493304, -73.7853955035027 40.589954304973666, -73.78477979112317 40.590146344999575, -73.78463880247394 40.59019031917279, -73.78460411370052 40.59020113880863, -73.78400018127725 40.5903894991833, -73.78388575112012 40.59042518798787, -73.78230073877283 40.59061780462765, -73.78215421103695 40.59065338136517, -73.78153171673527 40.590804525282095, -73.78139416009006 40.59083792352575, -73.78076506668305 40.59099066358056, -73.78070966022291 40.59100411437261, -73.78060484099949 40.591017383453085, -73.77998621815395 40.59109568285848, -73.77984119434988 40.59111403787167, -73.77919970449682 40.59119522674652, -73.77905610076742 40.591213401592, -73.77871810450333 40.59125617726098, -73.77863079979797 40.591267226953995, -73.77828688812345 40.59131075000315, -73.77820181686556 40.59132151551157, -73.77785814335391 40.59136500712021, -73.77777362385318 40.59137570313742, -73.77753111851723 40.59140639118651, -73.77742186695686 40.59141293266171, -73.77733567652801 40.59141809318965, -73.77699796961357 40.59143831249198, -73.7769120402353 40.591443457899906, -73.77659631905414 40.59146235890995, -73.77649913904807 40.591468176440905, -73.77604906408952 40.591495120097726, -73.77590771818895 40.59150358143788, -73.77521046998702 40.59154531693675, -73.77504678454503 40.59155511492133, -73.77438195905397 40.59159490519279, -73.77422915180364 40.59160404977797, -73.77351126235115 40.59164701045802, -73.77332492509017 40.59165816075855, -73.7729763845557 40.591679015965454, -73.77261523083627 40.59170062501253, -73.77246263532389 40.59169324751836, -73.77173704736705 40.59165816119676, -73.77158854221932 40.59165097977719, -73.77153076489746 40.591648185850104, -73.77079667396657 40.59161268315205, -73.77079711413249 40.59161557021614, -73.7707955873508 40.591612630555204, -73.77058840280085 40.59160260939215, -73.77058744374327 40.59160256335163, -73.76976989238501 40.591563016973616, -73.76976994095291 40.591563320548204, -73.76976550931461 40.59156280467276, -73.76896453213867 40.59152405481933, -73.76878457841745 40.59151534768753, -73.76792769858186 40.591473886390865, -73.76774626403514 40.59146510530118, -73.76773125698863 40.59146437976166, -73.76693077846961 40.591536247279045, -73.76668983009631 40.5915578788366, -73.76577165116892 40.591640305559366, -73.7655969844895 40.59165598415884, -73.76487852505213 40.59172047536952, -73.76470599205919 40.59173596156703, -73.76397935013891 40.591801181442406, -73.76383674394118 40.59181397939441, -73.76376023317194 40.59182134331804, -73.7637593380964 40.591821577415715, -73.76375931143953 40.59182143237621, -73.76322037009884 40.59187329566532, -73.76316941246421 40.591878199378925, -73.76231814872041 40.591960114152364, -73.7614541510959 40.59204324792073, -73.76027131318666 40.592157049679706, -73.76015846851071 40.59216790508614, -73.75996165081712 40.59218683922321, -73.75961028878955 40.59222064080161, -73.75886307297111 40.59229252033656, -73.75874257144862 40.592304111125344, -73.75837251448193 40.59233970674284, -73.75801401322317 40.59237418904049, -73.75795431004742 40.59237993202813, -73.7579083194647 40.59238179108805, -73.75754634114728 40.59239642060257, -73.75742169651267 40.59240145804047, -73.75709408866668 40.592414698028776, -73.75691552554005 40.59242191276778, -73.75574862952708 40.592469060064055, -73.75555110908593 40.592477039258235, -73.75508506868859 40.59249586569054, -73.75456871654627 40.59251672153629, -73.753459647807 40.59256150885239, -73.75315580162655 40.59260705625938, -73.75278511551127 40.5926626215273, -73.75131453468082 40.59328237676801, -73.75069089062431 40.59354519306584, -73.7483980888788 40.593902938708446, -73.74726942578391 40.59422624543905, -73.74700517044927 40.59430194035252, -73.74663260639723 40.5944086567833, -73.74633032778095 40.59449524012117, -73.74626324492259 40.594514455139056, -73.74511831270873 40.59484239478639, -73.74378349699317 40.594794672023816, -73.74351778118437 40.594785170358705, -73.7431130033895 40.594770694367945, -73.74275026328834 40.594757721289916, -73.74255268140249 40.59475065453463, -73.74093712715461 40.5946928562012, -73.74070763930308 40.59468464451358, -73.7404239041155 40.59467449077866, -73.7400620332395 40.59466153909227, -73.73970486009769 40.594648754499254, -73.7395624605201 40.594643657264825, -73.73941721429632 40.59463845794297, -73.739348924973 40.594636014829135, -73.73897197899176 40.59462252031883, -73.73859878580282 40.59460915828167, -73.73844710224773 40.59460372786384, -73.73807952226866 40.594590566926975)))",Q162,6181,Q162,Q-14,Q-14,Q-14,Q-14,Lands underwater bet. B. 2 St. and B. 73 St.,414,31,100,"11691, 11692",Q,498.154,False,Rockaway Beach and Boardwalk,No,100000470,PARK,20100106000000.00000,19470130000000.00000,,DPR,True,Rockaway Beach and Boardwalk,N,Rockaway Beach and Boardwalk,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/Q162/,Yes,23,15,5,{67C0610B-9532-43D5-9696-185B54E45C44} +"MULTIPOLYGON (((-73.90748201777147 40.8775374006811, -73.90847092354228 40.876904710448834, -73.90848501472952 40.87692400917308, -73.908524048012 40.876962334265365, -73.90855679199204 40.8769914720864, -73.908618103734 40.877043051967775, -73.90864795514578 40.87706462427474, -73.90867774257495 40.87708615149887, -73.9087248273307 40.87712060899426, -73.90878483296916 40.87716452189991, -73.90888383948429 40.877236975016196, -73.90804570385271 40.87811350776974, -73.90799521627413 40.87807041521629, -73.9079496820015 40.87803154897801, -73.90789497956075 40.87798485827129, -73.90783552677613 40.87792714177527, -73.90777275550579 40.877866203352525, -73.90771253168045 40.87780599812801, -73.90764812003775 40.87773554557178, -73.90759403752786 40.877673356020644, -73.9075312913655 40.877598960594476, -73.90748201777147 40.8775374006811)))",X202,5730,X202,X-08,X-08,X-08,X-08,Marble Hill Av bet. W 230 St and W 228 St,208,"10,11",50,"10463, 10463",X,1.646,False,Marble Hill Playground,Yes,100003777,PARK,20100106000000.00000,18500705000000.00000,,DPR,True,Marble Hill Playground,Y,Marble Hill Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X202/,No,"81, 72","33, 31",13,{F5DC90BF-C5AD-46DF-9D55-CA6DB5B0BEFE} +"MULTIPOLYGON (((-73.80273892755633 40.59133130379286, -73.80309856583344 40.5913087609045, -73.8032079172053 40.592319234009814, -73.80284827470162 40.59234177814081, -73.80283643262517 40.592232357515755, -73.8024774261311 40.59225485925222, -73.80242061211166 40.59173665607734, -73.80278035074542 40.591714108050695, -73.80273892755633 40.59133130379286)))",Q455,5122,Q455,Q-14,Q-14,Q-14,Q-14,Amstel Blvd. bet. Beach 75 St. and Beach 74 St.,414,31,100,11692,Q,1.285,False,Rockaway Garage,No,100000068,PARK,20090423000000.00000,19790924000000.00000,3-70 BEACH 75 STREET,DPR,False,Rockaway Garage,N,Rockaway Garage,Facility,Managed Sites,http://www.nycgovparks.org/parks/Q455/,No,31,10,5,{73F1C4D9-4F47-4E9E-A962-5EEED5A079A4} +"MULTIPOLYGON (((-73.93732949281154 40.815534491028416, -73.93750830513333 40.815294723555034, -73.93758742473243 40.81532814153737, -73.93770614752167 40.815378290494216, -73.93782487167682 40.81542843752806, -73.9381406243431 40.815561808903254, -73.93795749733914 40.81580736341966, -73.93764140802061 40.81567444161521, -73.93752255895319 40.815624462719924, -73.93740370887903 40.81557448370104, -73.93740869686599 40.81556779661571, -73.93732949281154 40.815534491028416)))",M110,4671,M110,M-10,M-10,M-10,M-10,"W. 138 St., bet. Lenox Ave. and 5 Ave.",110,9,32,10037,M,0.456,False,William McCray Playground,Yes,100003952,PARK,20100106000000.00000,19340712000000.00000,53-41 WEST 138 STREET,DPR,False,William McCray Playground,Y,William McCray Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M110/,No,70,30,13,{758663FA-F393-41B5-82E3-D76FFDC4AAF1} +"MULTIPOLYGON (((-73.87409161778498 40.679255504389296, -73.87393014180567 40.67906737831334, -73.87354406879476 40.67852350800994, -73.87348527905964 40.678454494516686, -73.87339846763659 40.678363292080036, -73.87329011726234 40.67826763082, -73.87317787257109 40.678185425169104, -73.87337310924649 40.67824783970438, -73.87357677111044 40.678329235224886, -73.87371189424476 40.67838806660426, -73.87387526049119 40.678456116746, -73.8740512195224 40.67853921454527, -73.87415477953073 40.67859675462863, -73.87446305389128 40.678552406010084, -73.87459332474812 40.67908757308139, -73.874757471514 40.679215673678804, -73.87619376904192 40.67900903526353, -73.87644982042617 40.68006079086488, -73.8763659611464 40.68006915122404, -73.87622257420549 40.68007240461588, -73.87610481066858 40.680072362521045, -73.8760137142082 40.680069462892746, -73.8759369972133 40.68006499108909, -73.87585798896518 40.680058642790016, -73.87576376072047 40.68004726843792, -73.87566089576197 40.680032440205075, -73.8754897007945 40.680002816336554, -73.87528488339527 40.6799534308887, -73.87510179037062 40.67989602795832, -73.87489717940963 40.67981952572704, -73.87477610588363 40.67976132159481, -73.87465446920883 40.679697623577795, -73.87444104174423 40.67956741680153, -73.8742980079517 40.679457884939076, -73.8741945695019 40.679365230430065, -73.87409161778498 40.679255504389296)), ((-73.87359422193855 40.679245698126934, -73.87359776790147 40.6792451905297, -73.87362335844207 40.67934652751788, -73.87377709542953 40.67959807242501, -73.87381427836448 40.67965441072484, -73.87387569680226 40.679735839622765, -73.87393537949353 40.679806970093395, -73.87402095349319 40.6798914952314, -73.87413965770554 40.67999650364851, -73.87426804109387 40.68008927280945, -73.8744495136658 40.68019617391886, -73.87464933870476 40.68029254699995, -73.87449010186346 40.68038508866251, -73.87441078932336 40.68044471798758, -73.87434249086566 40.68049403668048, -73.87431229842717 40.68051769085634, -73.87423010506471 40.68057805803342, -73.87413721267963 40.6806389321455, -73.87404194993803 40.68068837695029, -73.87396709698692 40.68072812387238, -73.87392844250097 40.68057444642873, -73.87389996715046 40.68046124207515, -73.87388270048002 40.68039259758699, -73.87386574849262 40.680325201554716, -73.87384851594017 40.68025669217489, -73.87383156401849 40.680189297937524, -73.87379766028296 40.68005450675203, -73.87378070846574 40.67998711160494, -73.87376240068427 40.6799143244826, -73.87373073255704 40.67978842471184, -73.87371748960177 40.67973577505875, -73.87370488768678 40.679685670963664, -73.8736928422577 40.67963778814851, -73.87368037891763 40.67958823261608, -73.87366820556863 40.67953983456255, -73.87365542644098 40.67948903146629, -73.87364346327676 40.67944146841804, -73.87363066071073 40.679390569838034, -73.87361890420863 40.679343827383036, -73.87360601833272 40.679292593716454, -73.87359422193855 40.679245698126934)))",B141,6435,B141,B-05,B-05,B-05,B-05,Atlantic Ave. bet. Fountain Ave. and N. Conduit Ave.,305,37,75,11208,B,6.05,False,City Line Park (IS 292),Yes,100004730,PARK,20100106000000.00000,19370113000000.00000,79 FOUNTAIN AVENUE,DPR,False,City Line Park,Y,City Line Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B141/,No,54,18,"8, 7",{E9E2968A-39F0-4A15-B269-A45FCD4968C6} +"MULTIPOLYGON (((-74.12775582176802 40.588722580559214, -74.12775603389119 40.588751956323485, -74.1274453709765 40.58900898222612, -74.12730948988516 40.5889107920146, -74.12718260978274 40.58901576614433, -74.12711466168668 40.58896666640931, -74.12685866528909 40.589178460837324, -74.12624370149504 40.588775864500825, -74.12696097011684 40.58818244462479, -74.12775582176802 40.588722580559214)))",R166,5984,R166,R-02,R-02,R-02,R-02,Manor Rd. and Rockland Ave.,502,50,122,"10304, 10306",R,1.78,False,Manor Park,No,100008337,PARK,20110712000000.00000,20100910000000.00000,,DPR,False,Manor Park,N,Manor Park,,Nature Area,http://www.nycgovparks.org/parks/R166/,No,62,24,11,{F735BE09-E4CA-4C17-9210-4877753B7B5B} +"MULTIPOLYGON (((-73.7938787926504 40.766056190288886, -73.79391816516163 40.76577226802833, -73.79435285922217 40.765804945193224, -73.79439763755616 40.765496437780016, -73.79467852848609 40.76551713886604, -73.79462627932392 40.765893949982996, -73.79460668725541 40.76603524142339, -73.79459655685176 40.766108301252864, -73.79459558293576 40.76611532526689, -73.79423651625451 40.76608570265568, -73.7938787926504 40.766056190288886)))",Q397,5376,Q397,Q-07,Q-07,Q-07,Q-07,"171 St., 172 St. bet. 33 Ave. and 35 Ave.",407,19,109,11358,Q,0.686,False,Auburndale Playground,Yes,100000285,PARK,,19581216000000.00000,171-11 35 AVENUE,DPR/DOE,False,Auburndale Playground,Y,Auburndale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q397/,No,26,11,6,{A2315AF9-FF34-48F8-9ECB-88F1014F59FA} +"MULTIPOLYGON (((-73.9810875609532 40.73619466771919, -73.9814143311074 40.73574882459053, -73.98206473006718 40.73602463618987, -73.9817399669622 40.73647132974294, -73.9810875609532 40.73619466771919)))",M227,4925,M227,M-06,M-06,M-06,M-06,"E. 20 St. To E. 21 St., 1 Ave. To 2 Ave.",106,2,13,10010,M,0.882,False,Peter's Field,Yes,100004410,PARK,20100106000000.00000,19631121000000.00000,344 2 AVENUE,DPR/DOE,False,Peter's Field,Y,Peter's Field,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M227/,No,74,27,12,{0FB50FF2-9A66-4091-9188-E248E567533F} +"MULTIPOLYGON (((-73.98472205000172 40.62439683282924, -73.98285431450154 40.62346996128497, -73.98278865993643 40.62343737876037, -73.98254685330436 40.623317376811315, -73.98258326009142 40.62328241243322, -73.98263013479306 40.623237395317894, -73.98266366650329 40.623205192374975, -73.98328202802496 40.62356151262167, -73.98413259657755 40.62274461102372, -73.98563389403405 40.62347854056257, -73.98472205000172 40.62439683282924)))",B042,6010,B042,B-12,B-12,B-12,B-12,"18 Ave., 19 Ave., bet. 55 St. and 58 St.",312,44,66,11204,B,6.379,False,Gravesend Park,Yes,100003847,PARK,20100106000000.00000,19170607000000.00000,,DPR,False,Gravesend Park,Y,Gravesend Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B042/,No,48,17,10,{845ED524-BD7D-4AF1-80AA-149A391BB2AB} +"MULTIPOLYGON (((-73.95139649191465 40.74174182262776, -73.95159712271911 40.741714664979526, -73.9514498399447 40.74213331359233, -73.95106610284773 40.742055604918676, -73.95113571184521 40.74185675837233, -73.95139649191465 40.74174182262776)))",Q360U,5559,Q360U,Q-02,Q-02,Q-02,Q-02,50 Ave. bet. 11 St. and 11 Pl.,402,26,108,11101,Q,0.318,False,Bridge and Tunnel Park,Yes,100000059,PARK,20090423000000.00000,19570425000000.00000,,DPR,True,Bridge and Tunnel Park,Y,Bridge and Tunnel Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q360U/,No,37,12,12,{475B381D-8D6A-44A2-9BAC-A2D838CAE7BE} +"MULTIPOLYGON (((-73.9978368902687 40.69602978348727, -73.99791217762593 40.695872070009905, -73.99803437414513 40.69590300296713, -73.99792737545792 40.69612712245298, -73.99790988383145 40.69616376038942, -73.99778844536095 40.696130691299864, -73.9978368902687 40.69602978348727)))",B223DF,5108,B223DF,B-02,B-02,B-02,B-02,BQE at Montague St.,302,33,84,11201,B,0.08,False,Brooklyn Heights Promenade,No,100004438,PARK,20100106000000.00000,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223DF/,No,52,26,7,{733E447E-E98C-4822-9FD9-BD5F02FF2FB7} +"MULTIPOLYGON (((-73.88192848676557 40.67098187752179, -73.88224843570286 40.67093400170939, -73.88226267727094 40.67099058220616, -73.88223770854026 40.67099431810668, -73.88216628158057 40.67100500613945, -73.88209472801542 40.67101571290895, -73.88201761661311 40.671027251414465, -73.88207177319919 40.671242313269076, -73.88199775513024 40.67125338936516, -73.88192848676557 40.67098187752179)))",B558,11888,B558,B-05,B-05,B-05,B-05,Sutter Ave. bet. Elton St. and Linwood St.,305,42,75,11208,B,0.082,False,,,100024464,PARK,20160222000000.00000,20160119000000.00000,,DPR,,Pagan's Garden,,Linwood Street Garden (Pagan's Garden),,Garden,,No,60,19,8,{8DE5E506-216D-4127-9923-05945F92FF91} +"MULTIPOLYGON (((-73.84142459671561 40.78324844821673, -73.84142371773598 40.783247922914505, -73.8414227560208 40.78324731645313, -73.84142187720211 40.783246723613374, -73.8414210103204 40.78324609296893, -73.84142022867022 40.78324549035731, -73.84141931357426 40.78324470926251, -73.84141842224291 40.78324389848378, -73.8414175192406 40.783243013847745, -73.84141646644485 40.783241850750144, -73.84141560771165 40.78324078337288, -73.84141485669986 40.78323975216401, -73.84141397141791 40.78323839118625, -73.84141315869832 40.78323690603893, -73.84141254341733 40.783235591358334, -73.84141203945677 40.78323429394054, -73.84141157387624 40.78323279936533, -73.84141127134801 40.78323148781667, -73.8414110458979 40.78323014575694, -73.84141093170817 40.783228846173955, -73.84141088056458 40.783227438617416, -73.84141095894942 40.78322586464604, -73.84141120021214 40.78322404956396, -73.84141157859045 40.783222364343075, -73.84141201913762 40.783220939453095, -73.8414125556257 40.783219522799655, -73.84141331760877 40.78321793716191, -73.84141448325413 40.783215988276474, -73.84141561493227 40.783214373430894, -73.84141711657364 40.783212616814914, -73.84141933713435 40.78321044335483, -73.84142194006994 40.78320838838675, -73.84142424546162 40.78320690843058, -73.84142687415438 40.78320547934743, -73.8414299918359 40.78320417250492, -73.84143154038586 40.78320361182129, -73.84143298913413 40.78320317166772, -73.84143424343185 40.78320279878431, -73.84143538016401 40.78320254370504, -73.84143600821021 40.78320247793191, -73.84143666346147 40.78320243020633, -73.84143778532965 40.78320244705846, -73.84143974349698 40.78320250468341, -73.84156778643106 40.783202643864016, -73.84198509378807 40.783203094343456, -73.84210602737498 40.78320322497881, -73.8421107229466 40.78320346464238, -73.84211366763539 40.783203662284926, -73.84211618299751 40.78320405654934, -73.84211853073708 40.78320469552087, -73.84212038568484 40.78320531670769, -73.84212242156399 40.78320607591925, -73.84212486256965 40.783207351674044, -73.84212734920622 40.78320886882608, -73.84212956317762 40.7832104639483, -73.84213151621982 40.78321218388297, -73.84213323199027 40.78321404397101, -73.8421345904595 40.78321570275744, -73.84213573991455 40.78321757557722, -73.84213672175991 40.78321968770121, -73.84213748531857 40.78322192739757, -73.84213804289192 40.783224602655196, -73.84213818919717 40.783227352991744, -73.84213780129949 40.78323006297437, -73.84213697883679 40.78323268051041, -73.84213584727783 40.78323525169742, -73.84213414447849 40.783237913953144, -73.84213240977792 40.78324004036587, -73.84213062984139 40.78324175878877, -73.84212847447202 40.783243428070186, -73.84212632786935 40.78324489745189, -73.8421237311533 40.783246336500355, -73.84212135815251 40.783247357121304, -73.84211944318882 40.78324806409423, -73.84211775740704 40.783248545354816, -73.84211603732673 40.78324900225482, -73.84211402366853 40.78324936329925, -73.84211199876133 40.78324947218741, -73.84210792127008 40.78324937114765, -73.84199176182815 40.783249783760034, -73.84159131153743 40.78325120340926, -73.84144039038264 40.783251738773835, -73.84143665140607 40.78325176784855, -73.8414342701449 40.783251775378126, -73.84143338641013 40.78325175435112, -73.84143275269095 40.78325171475753, -73.84143203146303 40.78325160840632, -73.84143132344049 40.78325142913247, -73.84143065222067 40.78325121749123, -73.84142970532093 40.783250856887655, -73.84142891942813 40.78325054333173, -73.84142799391509 40.783250156642936, -73.8414268897835 40.783249656245026, -73.84142564733006 40.78324903498934, -73.84142459671561 40.78324844821673)))",Q033,6264,Q033,Q-07,Q-07,Q-07,Q-07,18 Ave. bet. 126 St. and 127 St.,407,19,109,11356,Q,0.09,False,Mall Eighteen,Yes,100000035,PARK,,,,DPR,True,Mall Eighteen,N,Mall Eighteen,Type 1,Mall,http://www.nycgovparks.org/parks/Q033/,No,27,11,14,{799D8911-55A1-47C2-91C6-2AC5F2DA6E64} +"MULTIPOLYGON (((-74.02126458949637 40.62304581710584, -74.02168264500611 40.62254727586371, -74.02189021336864 40.62267325713055, -74.02164608777805 40.622903066586716, -74.02159124632523 40.622869992687605, -74.02136377595731 40.6230884968816, -74.02135531763747 40.623096524789545, -74.02126458949637 40.62304581710584)))",B210P,5813,B210P,B-10,B-10,B-10,B-10,7 Ave. bet. 81 St. and 82 St.,310,43,68,11209,B,0.256,False,Dan Ross Playground,Yes,100004466,PARK,20100106000000.00000,19651216000000.00000,,DPR,Part,Dan Ross Playground,Y,Dan Ross Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B210P/,No,46,22,11,{FCE50A16-DC83-44F7-B0B9-D8C8AB04A645} +"MULTIPOLYGON (((-73.84339592195943 40.65722833315175, -73.84334937159112 40.65705631310701, -73.8440576416542 40.656954303970885, -73.84407209238329 40.657013517326384, -73.84409764650826 40.65711822730292, -73.84411942110061 40.657207451341876, -73.84376297310213 40.657259060002644, -73.84375368705732 40.65721925348929, -73.84369605630536 40.657227337486646, -73.84370800502984 40.65727429053312, -73.84388534397542 40.65801834045514, -73.84367578969544 40.65805205311098, -73.84360459445963 40.658061978196976, -73.84360385056162 40.65805900367466, -73.84341734003789 40.65731389893339, -73.84341328439294 40.65729769399022, -73.84339593016685 40.65722836288002, -73.84339592195943 40.65722833315175)))",Q421,5362,Q421,Q-10,Q-10,Q-10,Q-10,160 Ave. bet. 88 St. and 89 St.,410,32,106,11414,Q,0.935,False,Walter Ward Playground,Yes,100000169,PARK,20090423000000.00000,19601026000000.00000,159-15 88 STREET,DPR/DOE,False,Walter Ward Playground,Y,Walter Ward Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q421/,No,23,15,8,{DC75990B-A387-41E5-960B-C17785083F30} +"MULTIPOLYGON (((-73.94339642114842 40.78677182848157, -73.94357114246192 40.786532609561135, -73.94360619987697 40.78654738233443, -73.94378129703395 40.786307647284424, -73.94431049272342 40.7865306441024, -73.9439712429545 40.78701492231185, -73.94339642114842 40.78677182848157)))",M271A,4754,M271A,M-11,M-11,M-11,M-11,E. 100 St. to E. 101 St. bet. 2 Ave. and 1 Ave.,111,8,23,10029,M,0.9,False,Harlem RBI,No,100004870,PARK,20100106000000.00000,19690131000000.00000,313 EAST 100 STREET,DPR,True,Harlem RBI,Y,Harlem RBI,Undeveloped,Recreation Field/Courts,http://www.nycgovparks.org/parks/M271A/,No,68,29,13,{1CDBEF90-7493-46A8-92CE-E568A302E05E} +"MULTIPOLYGON (((-73.93916001222117 40.82735275944574, -73.93890001529618 40.8272424274641, -73.93894305187476 40.82718417289782, -73.93920276779414 40.82729438486961, -73.93916001222117 40.82735275944574)))",M377,5616,M377,M-10,M-10,M-10,M-10,W. 152 St. and Fredrick Douglas Blvd.,110,9,32,10039,M,0.046,False,Bradhurst Gardens Association,No,100003733,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Bradhurst Gardens Association,N,Bradhurst Gardens Association,Bradhurst Gardens Association,Garden,http://www.nycgovparks.org/parks/M377/,No,71,30,13,{B9B38436-B1B7-497F-B30F-9B3BDF0644BA} +"MULTIPOLYGON (((-74.15994254988424 40.52882680167541, -74.15990199568618 40.52879006253967, -74.15987420547253 40.52873170281583, -74.15964208035562 40.528786528583794, -74.15964565922485 40.52876946037667, -74.1596501960929 40.52875176767084, -74.15965722731254 40.52873087551715, -74.15966543694805 40.52871023207119, -74.1596748192266 40.52868989137253, -74.15968539234909 40.52867006231837, -74.15969730315744 40.528650460136774, -74.15971225281186 40.52863376964039, -74.15973244701513 40.52861700160355, -74.15976064362314 40.528600552921226, -74.15984951263762 40.52854870910932, -74.16039351797302 40.52823134851551, -74.16075768541744 40.52872102070179, -74.16059650773018 40.528689266690506, -74.16045265471367 40.52868823231328, -74.16026679815155 40.52868689529022, -74.160122932933 40.52878323295642, -74.16006008367562 40.528825318588964, -74.15999156200154 40.52887120332093, -74.15994254988424 40.52882680167541)))",R165,6067,R165,R-03,R-03,R-03,R-03,Arden Ave. at Blueberry Lane,503,51,123,10312,R,0.724,False,Blueberry Park,Yes,100008319,PARK,20110712000000.00000,20100115000000.00000,,DPR,False,Blueberry Park,Y,Blueberry Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R165/,No,62,24,11,{27F6C418-1325-43E4-A105-FB4B8296FFF9} +"MULTIPOLYGON (((-73.90881041140518 40.745172182720886, -73.90949077849297 40.745056437807754, -73.9094281734574 40.74533956654802, -73.90881041140518 40.745172182720886)))",Q061,5870,Q061,Q-02,Q-02,Q-02,Q-02,"Skillman Ave., Roosevelt Ave. bet. 55 St. and 56 St.",402,26,108,11377,Q,0.214,False,Steinmann Triangle,Yes,100000467,PARK,20090423000000.00000,19270901000000.00000,,DPR,False,Steinmann Triangle,N,Steinmann Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q061/,No,30,12,14,{70F8B525-9702-496F-B4AA-CDBF8084773A} +"MULTIPOLYGON (((-74.00507859354515 40.7092704828585, -74.00502358943568 40.70923185875291, -74.00502061881627 40.70919600143453, -74.00482514300637 40.709060208229666, -74.00484184860818 40.70900940429779, -74.00504665894704 40.708943972473435, -74.00509841906789 40.70891900712592, -74.00514624094781 40.708971573230556, -74.00519975824065 40.70902085849617, -74.00525858277518 40.709066507230695, -74.00527685279145 40.7090795286846, -74.00528389093958 40.70908708995287, -74.0052891576351 40.709095445552805, -74.00529250138605 40.70910435505518, -74.00529382986814 40.70911356632134, -74.00529310282478 40.70912281550352, -74.00529034153507 40.70913184055188, -74.0052856240808 40.70914038301615, -74.00527908653072 40.709148200652315, -74.00527091465723 40.7091550701248, -74.00510715924928 40.70927128665153, -74.00507985390767 40.70927128785972, -74.00507859354515 40.7092704828585)))",M385,5419,M385,M-01,M-01,M-01,M-01,Fulton St.bet. Ryders Alley and Gold St.,101,1,1,10038,M,0.209,False,DeLury Square,Yes,100003895,PARK,20100106000000.00000,20090409000000.00000,60 GOLD ST,DPR,True,DeLury Square,Y,DeLury Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M385/,No,65,26,10,{90AF1507-8FEF-4091-9DAC-84D829406EFC} +"MULTIPOLYGON (((-73.91871011502643 40.78349954848927, -73.91996804286025 40.78252743750561, -73.92007073931973 40.78260065565588, -73.91935898992823 40.7832061913105, -73.91860772265629 40.783850247803535, -73.91851919235752 40.78392727630425, -73.91575669224153 40.78626612613149, -73.91543049932855 40.786033198534106, -73.91544057822016 40.78602740039612, -73.91616409406107 40.78524483388053, -73.9163100473939 40.78507215080182, -73.91666573815638 40.784532032781854, -73.91669301889004 40.784497787513374, -73.91670985282303 40.78447768967568, -73.91674207106263 40.78444372711918, -73.91679671729999 40.78439827053452, -73.91752005021773 40.78388539910812, -73.91757452602397 40.78385049230894, -73.91763363743247 40.78381853794069, -73.91771703487808 40.78378210107687, -73.91779926855337 40.783754542270664, -73.91787289359765 40.78373602911577, -73.91795984465382 40.783720963517275, -73.91817683631815 40.78369212432829, -73.91826086754322 40.783678507138035, -73.91833398380534 40.78366219595515, -73.91842791337142 40.78363486831221, -73.91850035835738 40.78360843760924, -73.91857378526055 40.78357631188011, -73.91863648832778 40.78354405786613, -73.91871011502643 40.78349954848927)))",Q004A,6347,Q004A,Q-01,Q-01,Q-01,Q-01,Shore Blvd. bet. Ditmars Blvd. and 20 Ave.,401,22,114,11105,Q,5.82,False,Ralph Demarco Park,Yes,100000112,PARK,20090423000000.00000,19691022000000.00000,,DPR,True,Ralph Demarco Park,Y,Ralph Demarco Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q004A/,Yes,36,"12, 13",14,{601BB55B-25D2-41FC-9F33-81F018A0A520} +"MULTIPOLYGON (((-73.75809451059692 40.65427203071482, -73.75772807426667 40.654167267328816, -73.75736494975953 40.65405601880608, -73.75700533441159 40.65393834412821, -73.75664942434904 40.653814308580145, -73.75629741450398 40.653683979247404, -73.75594949505741 40.65354742770998, -73.75560585617859 40.653404727350875, -73.75521405011054 40.653233764173876, -73.75482654210978 40.65305721027924, -73.75444347153136 40.65287512814341, -73.75406497298226 40.65268758383608, -73.75369118107105 40.652494641627165, -73.75332222801289 40.652296372086255, -73.75295824484179 40.65209284398053, -73.7525993613873 40.65188413057811, -73.75224570510541 40.65167030604366, -73.75189739989598 40.65145144543539, -73.75155457082234 40.651227627417015, -73.75121733821254 40.65099893064262, -73.75088582356469 40.65076543557062, -73.75056014244265 40.650527227149645, -73.75024041159342 40.65028438853032, -73.74992674538355 40.65003700556006, -73.74961925225216 40.64978516677528, -73.74931804299366 40.64952896161824, -73.74910359392129 40.64933808146911, -73.74889577225348 40.64914299554061, -73.7486947205319 40.64894383655655, -73.74850057654956 40.64874074083225, -73.74831347216875 40.648533848271924, -73.74813353569583 40.64832329967199, -73.74796088950994 40.64810923851711, -73.74779565360333 40.64789181278852, -73.74763793969026 40.64767116954827, -73.74748785473389 40.64744746034952, -73.74734550213876 40.64722083853797, -73.74721097938978 40.646991458345695, -73.74708437804243 40.64675947759266, -73.74698717823559 40.64656618745463, -73.74689767661494 40.64637075291965, -73.74681595520975 40.6461733506885, -73.74674208775662 40.64597416104445, -73.74667614207786 40.64577336425653, -73.74661817770016 40.645571145076374, -73.74656824588253 40.64536768553453, -73.74652639432128 40.64516317125418, -73.74649266006747 40.64495778873387, -73.74646707307716 40.64475172445492, -73.74644965856945 40.64454516668754, -73.74644042994726 40.644338301873184, -73.74643939587018 40.644131320043215, -73.74634389832782 40.6441239791108, -73.74634910522948 40.64392174148163, -73.746350151423 40.643918962977516, -73.74713351716582 40.64471083663489, -73.74722620505429 40.64480160317763, -73.74740352947762 40.64496466665921, -73.74764215917777 40.64516490376634, -73.74772494433675 40.64522980589653, -73.74784730591367 40.64532182300735, -73.74798489296154 40.64542008154899, -73.74805727591435 40.64546969319596, -73.74818150281462 40.645551684022585, -73.74831530550485 40.64563576777117, -73.74843770729579 40.64570906519034, -73.74858009187925 40.64579021639063, -73.75450155958707 40.649162677115875, -73.7534485183849 40.65119105174698, -73.75438244189512 40.65170728076713, -73.75453910391431 40.65179923421604, -73.75481465000054 40.65195358679261, -73.75497497914496 40.65203925912328, -73.75519956425246 40.65215438356668, -73.75548934317248 40.65229487607483, -73.75569868815906 40.652390905813014, -73.75578769912376 40.65243051604387, -73.75592717723922 40.65249092367824, -73.75602057701003 40.652530335021, -73.75620193236946 40.65260453166942, -73.75671549171362 40.65279244835419, -73.75774436905559 40.65316891608684, -73.75922716829346 40.651853592730106, -73.763483399966 40.654276878041564, -73.7631232943441 40.654709860894485, -73.76183949907094 40.65430158929383, -73.76171761823488 40.65494059826356, -73.76171051664801 40.654940587153156, -73.76134131449484 40.65490101914564, -73.7609733372807 40.65485531545121, -73.76060675884155 40.654803498055564, -73.76024175536648 40.654745591653146, -73.75987850185057 40.65468162363954, -73.75951717091218 40.654611624109116, -73.759157935151 40.65453562766082, -73.75880096597832 40.65445366979368, -73.75844643478656 40.65436579051132, -73.75809451059692 40.65427203071482)), ((-73.74591383631268 40.649963868698485, -73.74597933842267 40.649493198323995, -73.7460917178719 40.64954276443388, -73.74833880069124 40.65111543608386, -73.75313667569876 40.65389433351749, -73.75355980473095 40.65413569974216, -73.7539875124454 40.654372340153614, -73.7544197067512 40.65460420587643, -73.75485629674196 40.65483124623762, -73.75529718912885 40.6550534141622, -73.75574228943954 40.65527066167283, -73.7560085139721 40.65539489970416, -73.75627885706062 40.65551386699167, -73.75655314040267 40.65562748478399, -73.75683118095189 40.65573567702255, -73.75711279327967 40.65583837124716, -73.75739778957204 40.6559354994968, -73.75768598199791 40.65602699741393, -73.75797717679723 40.65611280423233, -73.7582711825613 40.656192861893814, -73.7585678007607 40.65626711863085, -73.75960345637749 40.656474504698195, -73.7606219936327 40.65661381239681, -73.76135998666304 40.65671427165272, -73.76120109509685 40.658075066317714, -73.76119911683453 40.658076050981656, -73.76114837598472 40.65807790786087, -73.76109818882317 40.65807902293859, -73.76104839909148 40.65807944451914, -73.76099095088573 40.65807908472278, -73.7609237350343 40.65807751140716, -73.76080768447305 40.658071860714934, -73.76069983082172 40.65806325524288, -73.76059346164193 40.65805156307502, -73.76046757717359 40.65803353733646, -73.76036317288943 40.65801506272802, -73.76026445888908 40.65799457191342, -73.76017035975055 40.657972219355486, -73.7591097353601 40.65774767450855, -73.75904107532321 40.65773485407356, -73.75897983951337 40.65772152775329, -73.75891990868207 40.65770670206792, -73.75884857993857 40.6576866708627, -73.75877800627032 40.6576641800751, -73.75871618942195 40.6576421821876, -73.7586583362227 40.6576195388057, -73.75860276915706 40.65759580966255, -73.75857511058032 40.65758323888503, -73.75594047583051 40.65659367039303, -73.75588659343238 40.65657537364333, -73.75584324414042 40.65655939195225, -73.7557877147306 40.65653719510836, -73.75570353302379 40.65649960422577, -73.75563923577482 40.65646741992686, -73.75557665337375 40.65643291229129, -73.75554762800887 40.656415754228775, -73.75552310499286 40.65640064900934, -73.75116879163403 40.65364926399563, -73.75107671230255 40.653590629956746, -73.75097814070136 40.65353069854502, -73.75084844797126 40.653456056267764, -73.75069420220284 40.6533731118543, -73.75057062845583 40.65331094393156, -73.75046476924908 40.65326055079766, -73.7503512243184 40.65320929979712, -73.75024908391461 40.65316557748909, -73.75014776198284 40.65312434770852, -73.7500140778817 40.65307309854902, -73.7493051319963 40.6527998205847, -73.74913687162763 40.652740692917305, -73.74902052157371 40.65270328358906, -73.74890370899995 40.65266847743946, -73.74875837421548 40.65262889284127, -73.74861529866133 40.65259382640794, -73.74844331616174 40.652556634382265, -73.7482819237524 40.6525265154553, -73.7481037006956 40.652498489173546, -73.74792753288567 40.652476062957064, -73.74780724059694 40.65246371336186, -73.747650375746 40.65245117263965, -73.74742885351112 40.652440265561445, -73.74672614154372 40.652427741108, -73.74673703713977 40.65193095663631, -73.74673622919518 40.65187001119191, -73.74673223102421 40.6518084958963, -73.74672490270466 40.651746207823756, -73.74671323172365 40.6516788969857, -73.74669877215565 40.651616103322034, -73.74668301680217 40.651560456939784, -73.74666524164691 40.65150708352399, -73.74664099250852 40.65144452403601, -73.74661349802952 40.65138315958827, -73.74658535334241 40.651327699318514, -73.74654670283518 40.65126026417328, -73.74651453402946 40.65120995860548, -73.74603623193514 40.65047192587776, -73.74600844480965 40.650424637578695, -73.74598417745426 40.650376754597715, -73.74596281426791 40.65032692839757, -73.74594249193711 40.650268312703105, -73.74593116982545 40.65022702580686, -73.74592360777089 40.65019282531328, -73.74591684372461 40.65015305685786, -73.74591194717935 40.65011003083946, -73.74590954021144 40.65006711748291, -73.74590945970985 40.65002926929519, -73.74591187731349 40.649984014435404, -73.74591383631268 40.649963868698485)), ((-73.7454668625799 40.64644246172846, -73.7454676838146 40.64643978899668, -73.74757341853548 40.64860268582713, -73.74786113875369 40.64889231049491, -73.74815615484351 40.64917764501208, -73.748458358466 40.64945858372494, -73.74876763536375 40.64973502096655, -73.74908387126261 40.65000685377155, -73.74940694833144 40.65027398006721, -73.74973674399281 40.6505363004723, -73.75007313683801 40.65079371740928, -73.7504160007189 40.65104613419124, -73.75076520710917 40.651293455927465, -73.75112062627987 40.65153559132733, -73.75148212494818 40.65177244909312, -73.75184956744988 40.652003940624176, -73.7522228192863 40.65222998002481, -73.75260173767232 40.65245048228285, -73.75298618335307 40.652665365096375, -73.75337601114563 40.65287454885326, -73.75377107704274 40.65307795394526, -73.75417123228154 40.653275506158195, -73.75457632691369 40.65346713037635, -73.75498621097148 40.65365275508742, -73.75540073092414 40.65383231147474, -73.75574473291537 40.65397417122035, -73.75609282188684 40.654110126681, -73.75644482183675 40.654240110808786, -73.75680055675187 40.654364058358595, -73.75715984823935 40.654481906783616, -73.75752251670646 40.654593597138486, -73.75788837781658 40.65469907317138, -73.75825725076308 40.654798282242055, -73.75862894881341 40.654891174401456, -73.7590032864041 40.654977702406725, -73.75938007440118 40.65505782441287, -73.75975912484991 40.65513149857972, -73.76014024740817 40.65519868846751, -73.7605232505356 40.65525936123846, -73.76090794268596 40.65531348495778, -73.76129412992664 40.65536103309128, -73.76168161949225 40.655401982711936, -73.76145881767393 40.656237315322045, -73.76113869709111 40.65620880599436, -73.76081972521784 40.65617362080617, -73.76050213853465 40.65613178817525, -73.76018617942589 40.65608333833539, -73.75987208315648 40.65602830781158, -73.75956008615492 40.65596673763648, -73.75925042482417 40.65589867514874, -73.75894333082142 40.65582417128149, -73.75863903578394 40.655743281472795, -73.7583377677786 40.65565606655854, -73.75803975484865 40.65556259277993, -73.75774521910787 40.655462929969744, -73.7574543838251 40.655357154268884, -73.75716746753152 40.65524534271073, -73.75688468517002 40.655127582228495, -73.75660624931349 40.65500395975208, -73.756161684087 40.65479693582155, -73.75572112194287 40.65458500902581, -73.75528465737713 40.654368221935925, -73.75485238013201 40.65414662251695, -73.75442438468536 40.653920256043264, -73.75400075958517 40.65368917137979, -73.74912618229988 40.65098882842249, -73.74882483356868 40.65081772096017, -73.74852884481857 40.650641269021925, -73.74823838004879 40.650459572065024, -73.74795359970868 40.65027272863938, -73.74767466067766 40.6500808417905, -73.7474217623522 40.64989879471262, -73.74717411764435 40.64971260451631, -73.74693184444979 40.64952236064619, -73.74669505711604 40.64932815163892, -73.74646386642547 40.64913006962557, -73.7462383819702 40.64892820763509, -73.74612482231879 40.648818983115824, -73.74601836769679 40.64870568310423, -73.74591927008126 40.64858857563147, -73.74582776248876 40.648467938592056, -73.7457440625398 40.648344055248906, -73.745668367706 40.648217220526256, -73.74560085534108 40.64808773290469, -73.74554168739371 40.6479558989343, -73.74549100214195 40.64782203051443, -73.74544892010864 40.647686444006105, -73.74541553933648 40.647549459320985, -73.74539094129638 40.6474114008349, -73.74537518144025 40.64727259466506, -73.74536829865642 40.64713336959171, -73.7453703081903 40.64699405344024, -73.7453812051781 40.64685497669086, -73.74540096466492 40.64671646797643, -73.7454295404193 40.64657885498003, -73.7454668625799 40.64644246172846)), ((-73.75111551022717 40.646693916076316, -73.75110084313634 40.64668498087787, -73.75111441252398 40.646691211235776, -73.75105254581162 40.646655556260434, -73.74914640131618 40.64555698244332, -73.7485771023882 40.645159468255414, -73.74851136031184 40.6451069708762, -73.74767255939899 40.64443715706089, -73.74766945947752 40.64443468192886, -73.74762405715843 40.64439022259444, -73.74742928700515 40.644199497618416, -73.74363703519329 40.6404857142955, -73.74414995736672 40.63935166804504, -73.74430250409269 40.639430595943935, -73.74445021056536 40.63951469628944, -73.7445927748241 40.63960379823057, -73.74472990677266 40.63969771833628, -73.74486132343316 40.63979626508721, -73.74498675722792 40.63989923709294, -73.74510595243295 40.64000642308385, -73.74521866516778 40.64011760461244, -73.74532466339912 40.640232555152686, -73.74542373167944 40.640351037408664, -73.74551566639161 40.640472810508186, -73.7456002804945 40.64059762551038, -73.74567739997008 40.64072522719864, -73.74683532021814 40.64246840056509, -73.74709718189395 40.642742129395394, -73.74736590898445 40.64301197073724, -73.74764140259867 40.64327782436777, -73.74792356028658 40.64353959185722, -73.74821227722457 40.643797175671025, -73.74850744738765 40.64405048187389, -73.74880896238379 40.64429941562487, -73.74911670907615 40.644543884774464, -73.74943057312974 40.6447837998722, -73.74975044138921 40.645019070569916, -73.75007619240087 40.64524961100438, -73.75040770706981 40.64547533531803, -73.75074486274156 40.645696159447006, -73.75108753437814 40.645912002925115, -73.75160394245232 40.64622877839421, -73.75111551022717 40.646693916076316)), ((-73.74472143572808 40.64296200701835, -73.74479040499176 40.64234220287542, -73.74509370495291 40.642648977448744, -73.74520612269916 40.642799255359115, -73.74531054247892 40.64295284557335, -73.74540679732445 40.64310950009999, -73.74549473091646 40.643268967367845, -73.74557420231318 40.64343099223647, -73.74564508478214 40.643595312391156, -73.74570726341226 40.643761664641254, -73.74576063867137 40.64392978222641, -73.74580512404543 40.64409939391052, -73.74584064838986 40.64427022758921, -73.74586715475488 40.6444420084858, -73.7458845991966 40.64461446094981, -73.74589295551026 40.6447873075669, -73.7459017961997 40.64518905258471, -73.7452152132416 40.64449637399212, -73.74502543069929 40.644317017867536, -73.7448305569095 40.64414085688582, -73.74463068495243 40.64396797677759, -73.74442591147199 40.64379845787808, -73.74442107462417 40.64379454066422, -73.74472143572808 40.64296200701835)), ((-73.74334862001015 40.64098199987682, -73.74335904624112 40.640963394942105, -73.74342851268112 40.640965377114, -73.74397336201531 40.6415162099181, -73.74389365870698 40.6415751463189, -73.743895959405 40.64157725956528, -73.74396853889671 40.64164894966205, -73.74403426405911 40.641724378732455, -73.74409280414149 40.641803166932306, -73.74414386628338 40.6418849173912, -73.74418719195138 40.64196922070692, -73.74422256286745 40.642055650455646, -73.74424980215781 40.64214377219968, -73.74426877198519 40.6422331443825, -73.74427937828926 40.6423233156374, -73.74428156603057 40.64241383198129, -73.74427532391033 40.64250423952641, -73.74426068437769 40.642594082679416, -73.74423772124923 40.642682908638776, -73.74420654969252 40.64277027189736, -73.74398707210254 40.64330909175373, -73.74398485665769 40.64330692736981, -73.74375316566855 40.64302376537498, -73.74350297416166 40.64274208081775, -73.74337253974299 40.64258111325447, -73.74321960239674 40.64242515532763, -73.74330749396492 40.6423938990129, -73.74324289130824 40.64229039826013, -73.74335738685896 40.64225084625918, -73.74322709807177 40.64203916503671, -73.74320710469217 40.64200509686259, -73.74318973283529 40.641967806167166, -73.74317588290626 40.641927710103275, -73.74316637465179 40.641885602061976, -73.7431620255965 40.64184745883508, -73.74316136559166 40.641818984649625, -73.74316344786915 40.641785085539354, -73.74316772182115 40.641756127086126, -73.74317424887691 40.64172751316156, -73.74325717495807 40.641245986472576, -73.74326073075463 40.64121992249056, -73.74326717068321 40.64118750545912, -73.7432748060323 40.64115871209604, -73.74328357205574 40.641131934824394, -73.74329246701083 40.64110882386604, -73.7433052523806 40.64107437501054, -73.74332523865633 40.64102817420135, -73.74334862001015 40.64098199987682)), ((-73.75570912172299 40.65728511294957, -73.75587029602141 40.65703960950774, -73.75601913265275 40.657095416271176, -73.75603594531226 40.6570694295976, -73.75621062444245 40.65713602062107, -73.75625859337008 40.65706222468654, -73.75632258348585 40.6569637812139, -73.75664464678557 40.65708383512936, -73.75658065702662 40.6571822796803, -73.7563562799336 40.6575274693146, -73.75611330193333 40.65743650972745, -73.75599103323309 40.65739073721836, -73.75585795876725 40.65734091991999, -73.75570912172299 40.65728511294957)))",Q392,6321,Q392,Q-13,Q-13,Q-13,Q-13,"149 Ave., Rockaway Blvd., Jamaica Bay bet. James Brown Pl. and Brookville Blvd.",413,31,105,"11413, 11422",Q,180.85,False,Idlewild Park,No,100000423,PARK,20090423000000.00000,19560426000000.00000,,DPR,Part,Idlewild Park,Y,Idlewild Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q392/,No,31,10,5,{705DDA8A-6606-45EA-A34F-C7F258CA9170} +"MULTIPOLYGON (((-73.99974544634283 40.71518119983202, -73.99964288313357 40.71406182014754, -74.00036527290688 40.71440316579833, -74.00046254883208 40.715484703567654, -74.00008214459376 40.71610123699351, -73.99944967194737 40.71588183810307, -73.99974544634283 40.71518119983202)))",M015,4811,M015,M-01,M-01,M-01,M-01,"Baxter St, Mulberry St, Bayard St and Park",103,1,5,10013,M,3.233,False,Columbus Park,Yes,100004962,PARK,20100106000000.00000,18940719000000.00000,55 MULBERRY STREET,DPR,True,Columbus Park,Y,Columbus Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M015/,No,65,26,7,{BBF38112-BD77-4504-BA4B-8D99D00B076C} +"MULTIPOLYGON (((-73.90965644470499 40.881359970743546, -73.91012892244096 40.880989775656005, -73.91122432767091 40.88144835454316, -73.91088001214247 40.88214082034814, -73.91043376991932 40.883208793644194, -73.91007256484741 40.88339272896113, -73.90977302654221 40.88331610779554, -73.90930468108502 40.88319630555383, -73.90930423826545 40.883158230822374, -73.90929770032139 40.88311073310921, -73.90929030711482 40.88305701866241, -73.90927226838119 40.882979320384585, -73.9092514237196 40.88290159468302, -73.90921909824452 40.88282949789518, -73.90919923821126 40.882795391640464, -73.90916394420039 40.88274854935652, -73.90911226061799 40.88269370503644, -73.90905146864742 40.882643167748235, -73.90899131199528 40.88260355743672, -73.90891861405258 40.88256164905989, -73.90883279128124 40.88250866508691, -73.90877132677052 40.8824738343116, -73.90925850578633 40.8818028107647, -73.90936474830087 40.88165369524707, -73.90938567296433 40.88162465566107, -73.90942989105969 40.88156869628175, -73.90945403841869 40.881543750124656, -73.90951039488185 40.88148696548442, -73.90956927074107 40.881433179611314, -73.90960244604861 40.881404461151554, -73.90965644470499 40.881359970743546)))",X019,5739,X019,X-08,X-08,X-08,X-08,"Johnson Av, W 232 St, Riverdale Av",208,11,50,10463,X,7.84,False,Ewen Park,Yes,100004268,PARK,20100106000000.00000,19160828000000.00000,,DPR,True,Ewen Park,Y,Ewen Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X019/,No,81,34,16,{8DE6EE45-7789-420B-B41B-4FBED9A6B861} +"MULTIPOLYGON (((-73.8969728966756 40.64908720119678, -73.89702909113878 40.649050282548, -73.89707571495471 40.64909214795132, -73.8970907426422 40.64910564305747, -73.89712233764541 40.649134014234974, -73.89712920330783 40.64914017721935, -73.89713037218117 40.64914122736863, -73.89716766873153 40.64917471857663, -73.8972236154006 40.64922495536736, -73.89695030319845 40.649404516371554, -73.89684893322918 40.64931363525222, -73.8968022667928 40.64927179853638, -73.8967556004164 40.649229960900854, -73.8969728966756 40.64908720119678)))",B504,5288,B504,B-18,B-18,B-18,B-18,E. 105 St. between Farragut Rd. and Glenwood Rd.,318,42,69,11236,B,0.191,False,Ponderosa Garden,No,100003690,PARK,20100106000000.00000,20021120000000.00000,664 E 105 Street,DPR,False,Ponderosa Garden,N,Ponderosa Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B504/,No,58,19,8,{B08C758B-6A02-43A7-935A-AB1FC45CD4CA} +"MULTIPOLYGON (((-73.93670785540392 40.72354751067518, -73.9372423969765 40.72341166424414, -73.93725095220523 40.72341802290225, -73.93725806013224 40.72342534161473, -73.9372635374723 40.723433431174975, -73.93728798934372 40.723503469017274, -73.93730577394464 40.7235746612787, -73.9373168004602 40.723646640505, -73.93731688877826 40.72367229246689, -73.93731115276654 40.72369757024778, -73.93729976476025 40.72372171481114, -73.937283067509 40.72374399963086, -73.93726156350063 40.72376375680042, -73.93723589719251 40.72378039233215, -73.9372068407903 40.723793405060626, -73.93717526700722 40.72380240463847, -73.93704057897924 40.72382421524965, -73.93700528453147 40.72382993038917, -73.9368449737429 40.723855890705806, -73.93670785540392 40.72354751067518)))",B096,4837,B096,B-01,B-01,B-01,B-01,Vandervoort Ave. bet. Cherry St. and Anthony St.,301,34,94,11222,B,0.429,False,Sgt William Dougherty Playground,Yes,100004424,PARK,20100106000000.00000,19240403000000.00000,510 VANDERVOORT AVENUE,DPR,False,Sgt. William Dougherty Playground,Y,Sgt. William Dougherty Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B096/,No,50,18,12,{503190A0-FC89-4BA0-9702-96C06D34789E} +"MULTIPOLYGON (((-73.92243126809124 40.668419676425316, -73.92235734090345 40.66844853491825, -73.92236317224585 40.668445780573364, -73.9223540563454 40.66844982404131, -73.92235734090345 40.66844853491825, -73.92229769821076 40.66847500673964, -73.92227942273622 40.668483006284916, -73.9222681638106 40.668488097399305, -73.92225395711279 40.66849470569092, -73.92219876442209 40.66852241507558, -73.92214566351952 40.668552399652015, -73.9221399579117 40.66855583215947, -73.92214012939407 40.66855583497708, -73.92206447919963 40.668602564655174, -73.92200503652695 40.66863779307698, -73.92196760218162 40.66865866236284, -73.92188762115383 40.66870108542097, -73.9217998933691 40.66874066473162, -73.92171089018655 40.668778554639964, -73.9216206636766 40.668814730864625, -73.92144042946373 40.66888983432696, -73.92126044161496 40.66896528257271, -73.92105436652653 40.66904633725997, -73.92074294294682 40.6691746006348, -73.92046898386805 40.66928715345677, -73.92019955955165 40.669397619574305, -73.92019783304092 40.669398445950804, -73.92019594715049 40.66939903718202, -73.92019395748538 40.66939937709734, -73.9201919196453 40.669399454028564, -73.92018989513026 40.66939926711782, -73.92018794188498 40.669398821808436, -73.92018611548102 40.66939812984568, -73.92018447029548 40.66939721287964, -73.92018305360635 40.66939609525711, -73.92018190558238 40.66939481212603, -73.92018106047907 40.66939339863027, -73.92018054189926 40.66939189711055, -73.9201803663497 40.66939034990249, -73.92018053732448 40.669388802034305, -73.92018105122062 40.669387299429886, -73.92018189261269 40.669385884402715, -73.92018303661385 40.66938459925977, -73.92018445006619 40.66938347999866, -73.92039230468957 40.66929658285429, -73.9206117219198 40.66920357791011, -73.92083324256967 40.66911350877555, -73.92105769081232 40.66902152042246, -73.92128178894943 40.66892903790864, -73.9214502872683 40.66885946215386, -73.92165524279223 40.66877513622055, -73.92166631596352 40.66876918414655, -73.92170736902813 40.66874763573112, -73.92180515154183 40.66870026665876, -73.92192032208548 40.66864119989712, -73.92197790181203 40.66861330856002, -73.92210547612723 40.66854685948986, -73.92219579943449 40.66850016312241, -73.92228903149191 40.66845690771924, -73.9222958542347 40.668453870384894, -73.92236330778887 40.668424840967475, -73.922433416532 40.6683997215399, -73.92250578885336 40.668378650513084, -73.92250537969852 40.66837861241578, -73.9225070343119 40.66837854599168, -73.92250867921607 40.668378692983275, -73.92251026829271 40.668379048856934, -73.92251175661139 40.66837960457722, -73.92251310043484 40.66838034210445, -73.92251426075734 40.66838124250139, -73.92251520567865 40.66838227873118, -73.92251590684846 40.66838342195818, -73.92251634656671 40.668384637950886, -73.92251650949757 40.66838589337988, -73.92251639213588 40.66838715132163, -73.9225159980705 40.66838837665842, -73.92251533798604 40.668389534277324, -73.92251443084471 40.66839058997156, -73.92251330388221 40.66839151404239, -73.9225119878778 40.66839228039556, -73.92251052070274 40.66839286654374, -73.92250894495133 40.668393256306274, -73.92250730557825 40.66839343800674, -73.92250697775457 40.668393634098365, -73.92243126809124 40.668419676425316)), ((-73.9054260425449 40.680078934751165, -73.90543203315612 40.68007768615822, -73.90543931697138 40.68007787044636, -73.90544418034126 40.680079104546394, -73.90544845096495 40.68008126568941, -73.90545294962088 40.68008527937868, -73.90545559782352 40.680090447808425, -73.90545597083025 40.6800951686138, -73.90539344209935 40.680151143650654, -73.90535480314443 40.6801857798952, -73.90529750119876 40.680238517325144, -73.90500217642465 40.68053549600237, -73.90456181488976 40.68098727826766, -73.90426386271147 40.68128310919509, -73.90414475596735 40.68140136558608, -73.90411588978479 40.6814278157678, -73.90410774045003 40.681427284877046, -73.90410329777065 40.681422177057094, -73.90423232702406 40.68128308295244, -73.90424936027996 40.68126516337686, -73.90444605118063 40.681058245413155, -73.90495403515574 40.6805418237865, -73.9050486525528 40.68043670556465, -73.9051477031881 40.68033397998441, -73.90525107807598 40.68023375410585, -73.90535866941336 40.68013613679115, -73.9054260425449 40.680078934751165)), ((-73.91299266853866 40.67233453831164, -73.91299784951619 40.672334051448686, -73.9130041111826 40.67233562578242, -73.91300962189484 40.67234076829142, -73.91301050331535 40.67234598744589, -73.91300795086639 40.67235061686777, -73.91300333302918 40.672353698542494, -73.91278596596317 40.67244293445968, -73.91273601127592 40.67246355981151, -73.91251840602112 40.672553501946666, -73.912356204321 40.672620759576866, -73.91204288123635 40.672748798009195, -73.91173007520517 40.672877564500965, -73.91141660590681 40.67300790463227, -73.91141018191087 40.67301009424232, -73.91140258598303 40.673009490450795, -73.91139720756591 40.673006309289995, -73.91139483338172 40.673001289788814, -73.91139631728088 40.67299538715158, -73.91170077494718 40.672866202725054, -73.91200610817502 40.67274214209509, -73.91233293569435 40.67260603102584, -73.91259086576005 40.67250044280953, -73.91299266853866 40.67233453831164)), ((-73.90775780234719 40.678223168028936, -73.9077632813932 40.67822218815838, -73.90777024754658 40.678223565226965, -73.9077755494456 40.67822751643414, -73.90777726152616 40.678231414334974, -73.90777678060904 40.678235332990944, -73.90777436846037 40.67823901146246, -73.90770924922639 40.67829345031293, -73.9077008792953 40.67830043879973, -73.90760508559023 40.67838044111454, -73.90743235107377 40.67851718596136, -73.90716641473531 40.67873162746387, -73.90711678616805 40.67877164682068, -73.90663138241017 40.6791519619625, -73.90662332118553 40.67915035700673, -73.90661881195861 40.67914712950374, -73.90661676957528 40.67914346905393, -73.90661710601013 40.67913803922183, -73.90691179027085 40.67889968927218, -73.90710073318431 40.6787525843667, -73.90716645892032 40.67869988614723, -73.90733468999082 40.67856500304154, -73.90754667048175 40.67839556426741, -73.90775780234719 40.678223168028936)), ((-73.92246136705468 40.66828712906032, -73.92244881032039 40.668291618673585, -73.92239329608046 40.66830418125678, -73.92233969527327 40.66832087757267, -73.92228853554425 40.66834154498688, -73.92222104593388 40.66837415568831, -73.92215703351928 40.66841060490094, -73.92211380702021 40.668434233098395, -73.9220678735469 40.668454687828635, -73.92201963423368 40.66847179015767, -73.92197543817338 40.66838293509864, -73.9224296821335 40.668232576055274, -73.92246136705468 40.66828712906032)), ((-73.91858676715788 40.67005598683693, -73.91858639002082 40.67005781011459, -73.91858561913753 40.670059561072314, -73.9185844734936 40.67006118839414, -73.91845582119696 40.6701170436228, -73.91809609019133 40.67026258699419, -73.91764904183695 40.670447376084674, -73.91735469318932 40.670563821426015, -73.91735272432828 40.67056451250823, -73.91735062807103 40.67056493334421, -73.91734846829861 40.67056507137252, -73.91734631006491 40.670564922137395, -73.91734421722875 40.670564491087774, -73.91734225482368 40.67056378997711, -73.91734048077507 40.67056284045941, -73.91733895063267 40.67056167229155, -73.91733770811373 40.67056031972462, -73.91733679337969 40.670558823310664, -73.91733623239283 40.670557228994696, -73.9173360428344 40.67055558451667, -73.91733622937258 40.670553940308935, -73.91733678721529 40.670552345896326, -73.91733769974671 40.67055084809374, -73.91733893970572 40.67054949460895, -73.91734046801538 40.67054832413603, -73.9178403706938 40.670344748721156, -73.9181977942165 40.670195247642994, -73.91856708655428 40.6700449415893, -73.91856941117322 40.670044416433015, -73.9185718182107 40.67004419390827, -73.91857424142644 40.6700442820729, -73.91857660986497 40.67004467637407, -73.91857885849063 40.67004536686014, -73.91858092464541 40.67004633367532, -73.91858274922804 40.67004754976245, -73.91858428142373 40.67004898176638, -73.91858547752476 40.670050587332014, -73.9185863032861 40.670052323210356, -73.91858673747983 40.670054139858024, -73.91858676715788 40.67005598683693)), ((-73.91661937862759 40.67085227626348, -73.91661935737955 40.670852243829515, -73.91662940468505 40.67084824561691, -73.91662948375591 40.67084838165207, -73.91663097674433 40.67084804504058, -73.9166325227076 40.67084790568039, -73.91663407788042 40.6708479680424, -73.91663559614078 40.670848229391616, -73.91663703492165 40.67084868159253, -73.91663835284223 40.67084931380904, -73.91663951089801 40.670850106201506, -73.91664047600284 40.67085103533253, -73.916641220985 40.6708520768685, -73.91664172459633 40.67085319837554, -73.91664197150007 40.670854369224855, -73.91664195464385 40.6708555542914, -73.91664167525202 40.670856720256836, -73.91664114046246 40.67085783380733, -73.9166403656907 40.67085886253547, -73.91663937344633 40.67085977583998, -73.91663819332717 40.670860549428426, -73.91663685847922 40.670861159010855, -73.91663692102613 40.670861268018584, -73.9166278230882 40.670864591533054, -73.91517009700478 40.671461927614935, -73.9151683306644 40.671462362162124, -73.91516649247653 40.67146256252224, -73.915164636855 40.67146252153121, -73.91516281820098 40.671462241930804, -73.91516108736306 40.67146173006207, -73.91515949635983 40.671461002172634, -73.91515809010798 40.67146007900755, -73.91515691115072 40.6714589876136, -73.91515599256377 40.67145775953327, -73.91515536150483 40.67145642990675, -73.91515503566407 40.6714550383697, -73.91515502563433 40.671453625453154, -73.91515533136521 40.671452230779835, -73.91515594334112 40.671450896666855, -73.9151568449561 40.67144966092375, -73.91515800896185 40.67144855955094, -73.91515940101868 40.67144762494166, -73.91661937862759 40.67085227626348)), ((-73.90607831639765 40.67956322005821, -73.90627702670858 40.67940908696254, -73.9062837267547 40.679409664246855, -73.90628958847266 40.67941254346466, -73.90629250829134 40.679416368528436, -73.9062932300835 40.67942039802005, -73.90620521205479 40.6794949780901, -73.90609999352425 40.67957909041503, -73.90607184654596 40.679601592921095, -73.90583734096602 40.679789055045084, -73.90569719294771 40.67989733704486, -73.90555843049592 40.680009167138195, -73.90555270664092 40.68001082479046, -73.90554561533935 40.680010852288504, -73.90553918914812 40.68000896853905, -73.90553384591512 40.68000496406539, -73.90553088909267 40.67999971793971, -73.90553102586985 40.67999417988558, -73.9056548646412 40.67989707721691, -73.90607831639765 40.67956322005821)), ((-73.91004040530083 40.67396831631882, -73.91004731177436 40.67396629285744, -73.91005552559729 40.67396747715332, -73.91006123579533 40.67397197068688, -73.91006301611263 40.673977910077625, -73.91006043424055 40.67398311033722, -73.90990238550145 40.674104393272216, -73.90985087362903 40.67414406205136, -73.90975192855853 40.67422025904004, -73.9096935990618 40.674265177808536, -73.90948406487585 40.67442539675219, -73.90924140291771 40.67460983376068, -73.90923591856956 40.6746123364692, -73.90922833268871 40.67461205222526, -73.9092225802825 40.6746090246565, -73.90922021876311 40.67460433741151, -73.90922211612664 40.67459810373983, -73.9094465322752 40.67442536721789, -73.90947936332981 40.674400169615964, -73.90966561896752 40.67425696475463, -73.90985170129444 40.67411363248149, -73.91004040530083 40.67396831631882)), ((-73.90806540966585 40.676352469760154, -73.90807252653448 40.67635163076331, -73.90807856300562 40.676353731085136, -73.90808189293803 40.67635776355113, -73.90807657497758 40.676423054761514, -73.90807179133648 40.67647311508362, -73.90806836401615 40.67650883848556, -73.90805169661049 40.67668254175518, -73.9080318146461 40.676891981195254, -73.90801214662923 40.67710143250446, -73.90799226664869 40.67731354015523, -73.9079868873564 40.67731943242656, -73.90797817103035 40.677320407017184, -73.90797151559273 40.677316787926834, -73.9079694271201 40.67731222784873, -73.90798722447725 40.67710680846346, -73.90800632531695 40.6769030038358, -73.90802677433065 40.67669927592095, -73.90806019923683 40.67635690783835, -73.90806540966585 40.676352469760154)), ((-73.91102869450212 40.67321387109456, -73.9110375733579 40.67321386355222, -73.911044455067 40.67321791128754, -73.91104633831293 40.6732238786591, -73.91104330149727 40.67322973596575, -73.91092073073777 40.67332419436057, -73.9109099661423 40.673332493281265, -73.91083055406844 40.67339372445008, -73.91063904119304 40.673540539993375, -73.91047337100593 40.673666768831914, -73.91044693669829 40.673686909000246, -73.91025253152353 40.67383457623421, -73.91024831413898 40.6738369800222, -73.91024291753712 40.6738376349895, -73.91023685219716 40.67383601203119, -73.91023275100312 40.673832055568404, -73.91023179236794 40.6738281114631, -73.91023341196207 40.67382429544159, -73.91044042546085 40.67366503491294, -73.91048850757753 40.67362819171893, -73.91074084524817 40.6734334540712, -73.91102869450212 40.67321387109456)), ((-73.90903404608223 40.67473993946187, -73.90904181194051 40.67473922248778, -73.90904849369825 40.67474160873272, -73.90905154902097 40.674744909735864, -73.90905236020194 40.67474939224228, -73.90905009447346 40.674754260438505, -73.90892016985146 40.67485714330176, -73.9087921618924 40.67495585634947, -73.90875081109624 40.67498774322969, -73.90874161715625 40.67499483379981, -73.90856195188196 40.67513168475511, -73.90838015412085 40.67526967468297, -73.90837690887318 40.675272902247265, -73.90837150451061 40.67527480343386, -73.90836535069995 40.675274667057586, -73.90835999749152 40.67527204949836, -73.90835683366056 40.675267671374264, -73.90835673967392 40.6752637657643, -73.90835905727475 40.6752599314149, -73.90853890669679 40.67511872783306, -73.90871851110708 40.67498055400817, -73.90902952389797 40.67474287606915, -73.90903404608223 40.67473993946187)), ((-73.91986569951352 40.66952601629278, -73.91986562576801 40.669527349905394, -73.91986526230043 40.669528655400235, -73.91986461743392 40.6695298958619, -73.91986370894863 40.66953103798367, -73.91986256408717 40.669532047565, -73.91986121363054 40.66953289851228, -73.9198440832904 40.669541145209095, -73.91920568601307 40.66980872817762, -73.91920489563657 40.669809013086066, -73.91920216750975 40.669809725279116, -73.91919931919129 40.66981007267883, -73.91919643466464 40.6698100445379, -73.91919359908175 40.66980964181667, -73.91919089521618 40.66980887628006, -73.91918840227906 40.669807771397075, -73.91918619474238 40.66980635783758, -73.91918433523577 40.66980467887032, -73.9191828804701 40.66980278226256, -73.91918187058769 40.669800724774994, -73.9191813386316 40.66979856586482, -73.91918129753269 40.66979637037835, -73.91918174839824 40.66979420045193, -73.91918268050453 40.669792121815654, -73.91918406421135 40.66979019478327, -73.91918585923882 40.66978847605899, -73.91918638247232 40.66978807299545, -73.91982420519234 40.66952905904195, -73.91985038247444 40.669519287774385, -73.91985199744994 40.66951877020235, -73.91985370441867 40.66951846521614, -73.91985545369864 40.66951838088579, -73.91985719679688 40.66951851987899, -73.9198588840464 40.66951887765863, -73.9198604705154 40.669519446088785, -73.91986191010108 40.669520207126965, -73.91986316261631 40.669521140933895, -73.91986419261328 40.66952222046934, -73.91986497292721 40.6695234150969, -73.9198654799436 40.66952469238153, -73.91986569951352 40.66952601629278)), ((-73.90818522696793 40.67543155262179, -73.90819081736132 40.67543028105261, -73.9081961272835 40.67543083820601, -73.90820214698145 40.67543389575609, -73.90820548188567 40.67543858469863, -73.90820538055036 40.67544346180882, -73.90819793869606 40.675455339972096, -73.90819241365276 40.675464127294724, -73.90818728228683 40.67547305090905, -73.90818255288791 40.67548210361759, -73.9081807675815 40.67548589426289, -73.90817667686531 40.67549496008814, -73.90817432252862 40.675500549508804, -73.90817082987788 40.67550992108583, -73.90816775581433 40.67551937764528, -73.90816510863134 40.67552890928811, -73.9081628883451 40.67553850430772, -73.90816109734006 40.67554814919826, -73.90815973799174 40.67555783675757, -73.90815881386624 40.67556755438124, -73.9081583237994 40.67557728856069, -73.90814633347537 40.675696979987016, -73.90811676932431 40.67601750020155, -73.90811389623512 40.67602271459205, -73.90810571198472 40.67602651993677, -73.90809778358128 40.676025768878, -73.90809196405884 40.6760216119535, -73.90809002367327 40.67601604431858, -73.90811450690295 40.67577092560262, -73.90813279968329 40.67554954581921, -73.90813677802345 40.675534484274856, -73.90814139964628 40.67551953130574, -73.90814665743856 40.67550469861287, -73.90815255018866 40.675490006906976, -73.90815906960047 40.67547546788809, -73.90816620855229 40.67546109956072, -73.90817395992715 40.6754469163273, -73.90818522696793 40.67543155262179)), ((-73.91404549082964 40.671903744079046, -73.91405222867054 40.67190291073271, -73.9140598927024 40.67190565402553, -73.91406375536056 40.671912158633845, -73.9140617395611 40.67191801228094, -73.91405663641004 40.67192146464795, -73.9139312283279 40.67197341890113, -73.91389575247486 40.671988202236285, -73.91383812178329 40.67201221726613, -73.91362132083442 40.67210075098428, -73.91340049508761 40.672188831906645, -73.91339282094988 40.67218840198705, -73.91338730504818 40.67218451030866, -73.9133862124184 40.67217979708775, -73.91338792038633 40.67217606573626, -73.91339176295705 40.67217340940633, -73.91360097307371 40.672086300439666, -73.91380807758549 40.67200087888195, -73.91404549082964 40.671903744079046)), ((-73.90795642609494 40.67746014596911, -73.90796194501888 40.677459363333774, -73.90796996663707 40.67746125903093, -73.90797494278787 40.677465517944974, -73.90797625157718 40.67747023138737, -73.90795639718958 40.67769619977136, -73.90795298183959 40.677735157824436, -73.90794668830537 40.6778069481555, -73.90794437920258 40.67784053461994, -73.90794057629563 40.67787404424574, -73.9079352843734 40.677907433811896, -73.907928510579 40.677940668203775, -73.90792025851097 40.67797370960237, -73.90790916792507 40.67800740790543, -73.90790364612833 40.67800938101682, -73.90789681268765 40.67800956015257, -73.90789087672945 40.6780073752538, -73.90788687178542 40.67800387084505, -73.9078852852443 40.67799900048997, -73.9078865865768 40.677993701100185, -73.90789442281923 40.677973993297705, -73.90790025437165 40.6779558498857, -73.90790530425907 40.67793757167095, -73.90790956299462 40.6779191766563, -73.90791302818585 40.677900684651235, -73.90791569507367 40.67788211636383, -73.90791756126436 40.677863492504166, -73.90791862200378 40.677844830178124, -73.90794834281634 40.67746778847784, -73.90795221689932 40.677462389387, -73.90795642609494 40.67746014596911)), ((-73.91482871291646 40.671584532745904, -73.91483001341054 40.671583990697705, -73.91483141657741 40.671583623425526, -73.91483287982574 40.67158344170406, -73.91483436293639 40.67158345090663, -73.91483582333173 40.67158365100163, -73.91483721725952 40.67158403565318, -73.91483850688671 40.671584594027024, -73.91483965320454 40.67158530988499, -73.91484062548774 40.67158616339306, -73.91484139420083 40.67158712931486, -73.91484193690775 40.671588179717865, -73.91484223945287 40.67158928577506, -73.91484229241696 40.6715904141604, -73.91484209347486 40.671591533354146, -73.91484164976418 40.67159261094299, -73.91484097433386 40.67159361631906, -73.91484008496252 40.671594519778495, -73.91483900770201 40.67159529612614, -73.9142862175001 40.67182766350938, -73.91428083667944 40.67182908051413, -73.91427468895066 40.67182813129256, -73.91426957843159 40.671824447977464, -73.91426801076895 40.67182028462587, -73.91426926732055 40.671816210728885, -73.91427358185862 40.67181254164098, -73.91482871291646 40.671584532745904)), ((-73.92193629199474 40.66839527622822, -73.9219628142992 40.668444766767834, -73.92195542110765 40.66845319418392, -73.92191955747741 40.66843562419567, -73.92188031168025 40.66842292098932, -73.92183881035427 40.66841544913541, -73.9218642933676 40.66841418050928, -73.92188932879671 40.66841034240159, -73.92191347069637 40.66840400384966, -73.92193629199474 40.66839527622822)), ((-73.92239905252316 40.66854063361313, -73.92246627188962 40.66851369407508, -73.92246879129162 40.66851543737087, -73.9224708928711 40.668517476654756, -73.92247251519483 40.66851975605338, -73.92247361339813 40.6685222097989, -73.92247415681244 40.66852476853085, -73.92247413014692 40.66852736019775, -73.92247353348526 40.668529912758366, -73.92247238465299 40.668532352382385, -73.92247071447778 40.66853461155182, -73.92246857152283 40.66853662636281, -73.9224660161707 40.66853833922297, -73.92246312062007 40.66853970155309, -73.92245996533576 40.66854067558571, -73.92245664141379 40.66854123436674, -73.9224368314117 40.66854264742954, -73.92241749669199 40.668546219346126, -73.9223990394416 40.66855187744628, -73.92239905252316 40.66854063361313)))",B030,5993,B030,B-16,B-16,B-16,B-16,Eastern Pkwy. bet. Ralph Ave. and Bushwick Ave.,"316, 304","37,41",83,"11207, 11233",B,2.064,False,Eastern Parkway Extension,No,100005092,PARK,20100106000000.00000,18980101000000.00000,,DPR/CDOT,False,Eastern Parkway Extension,N,Eastern Parkway Extension,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/B030/,No,55,"20, 19, 18","9, 8",{152983D7-CEE0-4C08-BA2E-C8AE0166FE4F} +"MULTIPOLYGON (((-73.85224130463885 40.869554428118306, -73.85334967547834 40.8695749117091, -73.85334955116946 40.8695758759757, -73.85335151525537 40.86957494556431, -73.8533294230116 40.8697544769549, -73.8533290052163 40.869754585383106, -73.85331575897068 40.86980330125219, -73.85329440847416 40.86985032920392, -73.85326530654265 40.86989489706225, -73.85322893046548 40.86993627152929, -73.85318587841776 40.869973771688564, -73.85313685875732 40.87000678159875, -73.85308267695999 40.870034757481484, -73.85302422491367 40.870057241215804, -73.8529624631222 40.870073861216426, -73.85289840762766 40.87008434502436, -73.85283311102772 40.87008852018379, -73.85276764704484 40.87008631782426, -73.85270309391557 40.87007777354048, -73.85264051065799 40.87006303006315, -73.85258092760256 40.87004232734151, -73.85252532502831 40.87001600701802, -73.85247759710018 40.86998900786027, -73.85243424218794 40.86995804761736, -73.85239582878843 40.869923532241806, -73.85236285886327 40.86988591352608, -73.85233576192424 40.869845681890816, -73.8523148950352 40.86980336548418, -73.85224130463885 40.869554428118306)))",X156,5542,X156,X-11,X-11,X-11,X-11,Adee Ave. at Tenboeck Ave.,211,12,49,10469,X,1.025,False,Eastchester Playground,Yes,100004202,PARK,20100106000000.00000,19481118000000.00000,,DPR,True,Eastchester Playground,Y,Eastchester Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X156/,No,83,36,16,{E1F500FF-D2D7-437A-8FE4-74EE73524E9C} +"MULTIPOLYGON (((-73.75535912566508 40.72452458093825, -73.75538576733977 40.724507832173856, -73.75563351419548 40.72471624249424, -73.75563096462874 40.724717846299285, -73.75535912566508 40.72452458093825)), ((-73.75565706828995 40.724887547472875, -73.75565987869895 40.72488582625368, -73.75575739835608 40.724973024479695, -73.75578416243505 40.724985234568315, -73.75586496987933 40.72502147236497, -73.75594898616099 40.725057433244565, -73.75595774911854 40.72506091338853, -73.75601745401585 40.72508462884589, -73.75610507685646 40.72511742024474, -73.75616738055164 40.72513872235196, -73.75618900621791 40.725145824563, -73.75628125232082 40.72517352241204, -73.75635489795383 40.72519484752383, -73.75645256604977 40.7252217192316, -73.75644709733962 40.72522273424833, -73.75635208754969 40.72519656875991, -73.75627844309605 40.72517524454935, -73.75618619581488 40.72514754489454, -73.756164570145 40.725140443583484, -73.75610226763283 40.72511914147725, -73.75601464360767 40.72508635007377, -73.75594617693254 40.72505915537378, -73.75586215946983 40.72502319358914, -73.75578135202505 40.72498695579052, -73.75575458794262 40.724974746601745, -73.75565706828995 40.724887547472875)))",Q387D,5091,Q387D,Q-08,Q-08,Q-08,Q-08,Clearview Exwy at Whitehall Terr.,408,23,107,11427,Q,0.012,False,Clearview's Tail,Yes,100000343,PARK,20090423000000.00000,19651004000000.00000,209-86 WHITEHALL TERRACE,DPR,True,Clearview's Tail,N,Clearview's Tail,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/Q387D/,No,"24, 33",14,5,{B0DF43CB-BBD1-4855-A983-57F7C26D5226} +"MULTIPOLYGON (((-73.90852481321426 40.67263053196347, -73.90927123389841 40.67252810492819, -73.90944065394383 40.672756412859336, -73.90875463020396 40.67305561104413, -73.9085773989174 40.672825342684476, -73.90852481321426 40.67263053196347)))",B260A,6404,B260A,B-16,B-16,B-16,B-16,E. New York Ave. between Mother Gaston Blvd. and St. Mark's Ave.,316,41,73,11212,B,0.67,False,Howard Pool,No,100008344,PARK,20100106000000.00000,19681024000000.00000,1560 EAST NEW YORK AVENUE,DPR/NYCHA,False,Howard Pool,Y,Howard Pool,,Community Park,http://www.nycgovparks.org/parks/B260A/,No,55,20,8,{E35569BB-36FD-4B5A-BCE8-384FC7C16DF6} +"MULTIPOLYGON (((-73.94414048279089 40.61319274431994, -73.94413920510952 40.6131973237502, -73.94413312806124 40.61320258434356, -73.94412573047283 40.61320433136126, -73.94411772839241 40.61320262458554, -73.94407397041348 40.613165044362795, -73.94403405109334 40.61312966056264, -73.94399413181482 40.613094277649004, -73.94395421376028 40.61305889472196, -73.94391429574729 40.61302351268143, -73.94388479238708 40.61299736335328, -73.94387200930889 40.61298578541352, -73.94386810429975 40.612981062974015, -73.94386559675804 40.612976880629134, -73.94386380076013 40.612972489710785, -73.94386267724241 40.612967971246775, -73.9438623339673 40.6129630515313, -73.94386302456336 40.61295683827165, -73.94386464893321 40.612951731308215, -73.94386718064416 40.61294684361445, -73.94387056998765 40.61294226791984, -73.94387417601206 40.61293858024492, -73.94387773525577 40.61293571922557, -73.94388231794034 40.61293272542864, -73.9439129693979 40.61291582319586, -73.9439271383116 40.612908017185845, -73.94397126822118 40.612883703917795, -73.94401709688246 40.612858531462294, -73.94402342327741 40.61285604640297, -73.94403253443843 40.61285408049897, -73.94403963191407 40.61285366161003, -73.94404570056054 40.612854166154705, -73.9440536056723 40.61285590620761, -73.94405979446778 40.612858276690176, -73.94406427801357 40.61286076250978, -73.94406826487943 40.612863699248784, -73.94407204542851 40.61286747877513, -73.94407503511111 40.612871649643346, -73.94407724892228 40.612876649514135, -73.94408132432807 40.612895207638644, -73.94408387118358 40.612907486584916, -73.94408973225 40.61293574419202, -73.94409986132038 40.61298682938746, -73.94410998922616 40.61303791278015, -73.94412011596347 40.61308899887267, -73.94412675848415 40.61312250419468, -73.94413024626357 40.61314008226421, -73.94413143944205 40.613146107331424, -73.94414048279089 40.61319274431994)))",B273,5796,B273,B-18,B-18,B-18,B-18,"Ave. P, Madison Pl., Nostrand Ave.",318,45,63,11229,B,0.11,False,Aimee Triangle,Yes,100004715,PARK,20100106000000.00000,19691126000000.00000,,DPR/CDOT,False,Aimee Triangle,Y,Aimee Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B273/,No,41,22,9,{7B36294E-3A9A-44FD-A296-3CCB946D78CA} +"MULTIPOLYGON (((-73.91101385359487 40.76076801709333, -73.91186101625699 40.75972660476662, -73.91186943571687 40.75973075893466, -73.91190540128892 40.759748501180475, -73.91190542969137 40.759748516510825, -73.91216175166343 40.75987496575713, -73.91225466388141 40.75976300922118, -73.91255466002922 40.75991597380453, -73.9114828352379 40.76124383692243, -73.91101385359487 40.76076801709333)))",Q014,4894,Q014,Q-01,Q-01,Q-01,Q-01,30 Rd. bet. 45 St. and 46 St.,401,22,114,11103,Q,2.2,False,Astoria Heights Playground,Yes,100000293,PARK,20090423000000.00000,19360820000000.00000,45-02 30 ROAD,DPR,False,Astoria Heights Playground,Y,Astoria Heights Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q014/,No,36,12,14,{A9A13A6E-1AB3-4966-9DD8-BA9BD34BB42E} +"MULTIPOLYGON (((-73.90921821127671 40.850553806837205, -73.90906779595385 40.85052249802708, -73.90924940844036 40.85000026465985, -73.90987349796293 40.85012323526803, -73.90977110486989 40.85040646895584, -73.90956226103998 40.85036531952187, -73.9094585544056 40.85066354058212, -73.90921821127671 40.850553806837205)))",X257,4780,X257,X-05,X-05,X-05,X-05,E. 177 St. at Walton Ave.,205,14,46,10453,X,0.7,False,Mount Hope Playground,Yes,100003775,PARK,20100106000000.00000,19891219000000.00000,25 EAST 177 STREET,DPR,False,Mount Hope Playground,Y,Mount Hope Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X257/,No,77,33,15,{9F1222E2-0F5D-4AAC-8252-CE8B24E517E0} +"MULTIPOLYGON (((-73.81068254111658 40.70995732656201, -73.81172775652938 40.70988750942985, -73.81175770742774 40.71013629811072, -73.81168117897661 40.71014355174496, -73.81145138991567 40.710165334521626, -73.81113725130787 40.71019511191627, -73.8110919831953 40.710242118258314, -73.81115022684222 40.71064012078248, -73.8108942749412 40.71065999996584, -73.81084753419519 40.71066362968448, -73.81088203798998 40.71092086926261, -73.81082579520358 40.710930000804424, -73.81071478377778 40.71094921717118, -73.810609286844 40.71097306933896, -73.81050307878134 40.71099935612685, -73.81046808413917 40.71100847114008, -73.81043459837473 40.71073794064327, -73.81076719922596 40.71064127569613, -73.81076325197883 40.71060938294457, -73.81075830402034 40.71056941274745, -73.81075428734741 40.71053696696619, -73.81074865338233 40.7104914520827, -73.81068254111658 40.70995732656201)))",Q379,6658,Q379,Q-08,Q-08,Q-08,Q-08,148 St. bet. 85 Ave. and 85 Rd.,408,24,107,11435,Q,1.29985643,False,Briarwood Playground (JHS 217),Yes,100000242,PARK,20090423000000.00000,19570827000000.00000,,DPR/DOE,False,Briarwood Playground,Y,Briarwood Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q379/,No,24,14,6,{44DBEB6C-F918-4B97-9E82-20DF55C65571} +"MULTIPOLYGON (((-73.92103020994116 40.8133850434868, -73.92103577442256 40.81337721026741, -73.92185252419608 40.81371953529708, -73.92118033534949 40.814063376650836, -73.92105282637118 40.814009678293345, -73.92105899548508 40.81400175363684, -73.92106272114363 40.81399638922253, -73.92110854383712 40.813930417720435, -73.92118633001768 40.81381842201297, -73.92082985798152 40.81366714453699, -73.92101154925952 40.81341132163162, -73.92103020994116 40.8133850434868)))",X200,5599,X200,X-01,X-01,X-01,X-01,"3 Ave. bet. E, 145 St. and E. 144 St.",201,8,40,10454,X,0.722,False,Clark Playground,Yes,100004566,PARK,20100106000000.00000,19611109000000.00000,,DPR/DOE,False,Clark Playground,Y,Clark Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X200/,No,84,29,15,{0D1F88A4-7103-44EC-B3F0-1C4B6EE35E12} +"MULTIPOLYGON (((-73.98890532672436 40.69886003874775, -73.98897688177924 40.69756443175205, -73.98983278471746 40.697596110423824, -73.989755568131 40.698891507621745, -73.98890532672436 40.69886003874775)))",B113E,6050,B113E,B-02,B-02,B-02,B-02,"Cadman Plaza East, Adams St. bet. Red Cross Pl. and Tillary St.",302,33,84,11201,B,2.913,False,Walt Whitman Park,Yes,100004615,PARK,20100106000000.00000,19550101000000.00000,,DPR,True,Walt Whitman Park,Y,Walt Whitman Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B113E/,No,52,25,7,{71BCDE69-3869-4CA8-83F0-36D2F681F93D} +"MULTIPOLYGON (((-73.96437357512889 40.58233322595349, -73.96449536249125 40.58224504023065, -73.96460492866649 40.58224770536771, -73.96474689757584 40.582251159300306, -73.96481717750078 40.58225286842481, -73.96499224247833 40.582257127346814, -73.96490872178059 40.58262013184882, -73.96537963530041 40.582686249789624, -73.96515344577003 40.58366934356499, -73.965146753658 40.583686842313675, -73.96513749893346 40.583703382127084, -73.96511962209249 40.5837260698997, -73.96508954474828 40.5837516248327, -73.96506088717841 40.583768061486204, -73.96503555422572 40.5837783566719, -73.96500428711666 40.58378641854685, -73.9649675948162 40.58379021477937, -73.96435758340161 40.58385882087338, -73.96409189079883 40.582534671899154, -73.96433921904385 40.58248235375247, -73.96437357512889 40.58233322595349)))",B275,5148,B275,B-13,B-13,B-13,B-13,"Shore Pkwy., Brighton 3 St., Brighton 4 St.",313,48,60,11235,B,3.403,False,Grady Playground (Grady HS - DOE Books Fields),Yes,100004472,PARK,20100106000000.00000,19420507000000.00000,2801 BRIGHTON 3 STREET,DPR/DOE,False,Grady Playground,Y,Grady Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B275/,No,45,23,8,{CADDFAE4-D610-4296-8765-C980C3115016} +"MULTIPOLYGON (((-73.88736814737095 40.673966728998636, -73.88738540881154 40.67403379559623, -73.88740199228035 40.67409822931968, -73.88722470325901 40.674124497519216, -73.8872962798713 40.67440259738109, -73.88720648087684 40.67441590275043, -73.88711491553751 40.67442946926722, -73.88704411691778 40.67415125569102, -73.88702771242497 40.67408679417586, -73.88701063825296 40.6740196997926, -73.88736814737095 40.673966728998636)))",B522,6233,B522,B-05,B-05,B-05,B-05,Jerome St. and Glenmore Ave.,305,37,75,11207,B,0.229,False,Garden Party,No,100004762,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Garden Party,N,Garden Party,Greenthumb,Garden,http://www.nycgovparks.org/parks/B522/,No,55,18,8,{80286330-C583-4353-864E-B8EFE75052C6} +"MULTIPOLYGON (((-73.89623462374813 40.81887169354044, -73.89742741674515 40.81772955988521, -73.89775289562556 40.81792574132662, -73.89773493183101 40.81794294290144, -73.8980462611765 40.81813059495433, -73.89840104765953 40.81779086418135, -73.89906616648707 40.81819175083049, -73.89714641226549 40.82003218035706, -73.89712490209783 40.82004954976251, -73.89709975885197 40.82006382811805, -73.89707174182088 40.82007458476114, -73.89704169666867 40.820081493564395, -73.8970105305154 40.82008434732166, -73.89697918467198 40.82008305862446, -73.89694860617979 40.82007766704029, -73.89691971699476 40.820068336383905, -73.89689339147888 40.820055345691955, -73.89687042202307 40.82003909009247, -73.89685150485613 40.820020059180116, -73.89683721042618 40.819998827083666, -73.89623462374813 40.81887169354044)))",X255,5625,X255,X-02,X-02,X-02,X-02,Beck St bet. Interval Av and Longwood Av,202,17,41,10459,X,7.738,False,Rainey Park,Yes,100004878,PARK,20100106000000.00000,19840507000000.00000,,DPR,True,Bill Rainey Park,Y,Bill Rainey Park,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X255/,No,85,32,15,{2BE986B6-4F4A-444D-A3D6-719C4A3E1D7F} +"MULTIPOLYGON (((-73.97711409680471 40.63310667218838, -73.97706074832205 40.63282779956343, -73.97700368034094 40.632833998144704, -73.97694363234972 40.6328405202871, -73.9769203526536 40.63284304787674, -73.97689077634273 40.63268843808695, -73.97687518886652 40.63260695506827, -73.97685896311256 40.63252213459378, -73.97684760321972 40.63246275566676, -73.97683742676793 40.63240955273807, -73.97682703441183 40.63235523041914, -73.97681183762955 40.63227578804438, -73.97680733287527 40.63225224125728, -73.97726394706129 40.632202649003034, -73.97743333959039 40.63307200045962, -73.97711409680471 40.63310667218838)))",B316,5174,B316,B-14,B-14,B-14,B-14,Ave. F bet. McDonald Ave. and E. 2 St.,314,44,70,11218,B,0.826,False,DiGilio Playground,Yes,100004309,PARK,20100106000000.00000,20120406000000.00000,102 AVENUE F,DPR,True,DiGilio Playground,Y,DiGilio Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B316/,No,44,17,10,{663C34B2-15A5-474A-A47A-CA554E2B8895} +"MULTIPOLYGON (((-73.8874305585425 40.82587678326071, -73.8873891018788 40.825327658946854, -73.88768333968328 40.82531398911601, -73.88772470016973 40.825861829121905, -73.8874305585425 40.82587678326071)))",X290,4723,X290,X-02,X-02,X-02,X-02,"Longfellow Ave., Lowell St., E. 165 St.",202,17,41,10459,X,0.367,False,Longfellow Playground,Yes,100003955,PARK,20100106000000.00000,19971219000000.00000,1070 LONGFELLOW AVENUE,DPR,False,Longfellow Playground,Y,Longfellow Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X290/,No,85,32,15,{CEFB9F66-8954-4E29-993C-6D6108AC2115} +"MULTIPOLYGON (((-74.08504603600146 40.618057093653455, -74.08515160494406 40.61786125573019, -74.08523846656762 40.61788793683139, -74.0853219884719 40.61791359285123, -74.08518485761887 40.61816798368862, -74.08505190901442 40.61812730023347, -74.08504603600146 40.618057093653455)))",R049,6036,R049,R-01,R-01,R-01,R-01,"Waverly Pl., Targee St.",501,49,120,10304,R,0.11,False,Bedford Green,Yes,100003911,PARK,20100106000000.00000,19380502000000.00000,,DPR,False,Bedford Green,Y,Bedford Green,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/R049/,No,61,23,11,{83778DDB-7932-4A83-9CB2-234BBBA4F7B6} +"MULTIPOLYGON (((-73.98558138430056 40.67381484602875, -73.98344665271549 40.67278456394308, -73.98384952950475 40.67230209005531, -73.9848505438925 40.67278405406669, -73.98486812213044 40.672792516719724, -73.98487787597516 40.67279845509852, -73.98488868551038 40.67280656925973, -73.98489886790459 40.672815983681446, -73.98490853051587 40.67282789606303, -73.9849190040987 40.67284152493197, -73.98492815356053 40.67285277176396, -73.98493711541238 40.67286206265173, -73.98494762085394 40.672870833243046, -73.98495411183127 40.67287552307441, -73.98496474431063 40.672882161260894, -73.9849774111253 40.672888677242014, -73.98499085285256 40.672894224368534, -73.98500380996173 40.672898430563315, -73.98501629659 40.67290153986794, -73.98502673852978 40.67290348634003, -73.9850372350019 40.67290487179738, -73.98504888120435 40.67290576482142, -73.98506148084311 40.67290598528328, -73.98507284467607 40.672905520291366, -73.98508162666911 40.67290472807662, -73.98598096271728 40.67333771968798, -73.98558138430056 40.67381484602875)))",B111,5428,B111,B-06,B-06,B-06,B-06,"3 St., 4 St. bet. 4 Ave. and 5 Ave.",306,39,78,11215,B,3.03,False,Washington Park (MS 51),Yes,100004629,PARK,20100106000000.00000,19260726000000.00000,1 4 AVENUE,DPR,True,J.J. Byrne Playground,Y,J.J. Byrne Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B111/,No,52,20,7,{57F3CB91-18A9-4A16-B84F-B6FE965DC9D7} +"MULTIPOLYGON (((-73.93495122934803 40.802541217526304, -73.93501758326244 40.80256915871375, -73.93507983748951 40.802595373998926, -73.93514377620373 40.802622297990325, -73.9352047926698 40.80264799112239, -73.93530040062701 40.80268825030318, -73.93512224474667 40.802931575768255, -73.93503899031653 40.80289651838227, -73.93502663773273 40.802891316441915, -73.93496562111332 40.802865622316055, -73.93490168105147 40.80283869912671, -73.9348824675355 40.80283060719689, -73.93483942666705 40.80281248374633, -73.93480124131653 40.80279640445722, -73.93477307376985 40.80278454245809, -73.93495122934803 40.802541217526304)))",M302,4977,M302,M-11,M-11,M-11,M-11,E. 124 St.bet. 2 Ave. and 3 Ave.,111,8,25,10035,M,0.252,False,Dream Street Park,Yes,100004132,PARK,20100106000000.00000,19971224000000.00000,227 EAST 124 STREET,DPR,False,Dream Street Park,N,Dream Street Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M302/,No,68,30,13,{1EE04C45-F31E-4F0C-B983-326E6E75DED1} +"MULTIPOLYGON (((-73.9193215298684 40.67709959137613, -73.91932692834813 40.67704863771665, -73.91965673199101 40.67706670859108, -73.91963927983014 40.67726383985531, -73.91962165884864 40.67744589727376, -73.91929174979431 40.677431287806655, -73.91930828208577 40.67724843091747, -73.9193215298684 40.67709959137613)))",B093,6093,B093,B-03,B-03,B-03,B-03,Howard Ave. bet. Atlantic Ave. and Herkimer St.,303,41,81,11233,B,0.295,False,Weeksville Playground,Yes,100003714,PARK,20100106000000.00000,19890616000000.00000,,DPR,False,Weeksville Playground,Y,Weeksville Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B093/,No,55,25,8,{032F982C-7211-4B22-AB8C-7330B25623E6} +"MULTIPOLYGON (((-74.00002850281535 40.636961379144516, -74.00057952088886 40.63659126264198, -74.00138212206446 40.63707500460996, -74.00115329473905 40.637294802160184, -74.00081705314174 40.63709217480263, -74.0005967207959 40.637303808881825, -74.00002850281535 40.636961379144516)))",B152,5485,B152,B-12,B-12,B-12,B-12,Ft. Hamilton Pkwy. bet. 52 St. and 53 St.,312,38,66,11219,B,1.148,False,Rappaport Playground,Yes,100004470,PARK,20100106000000.00000,19360925000000.00000,5202 FT HAMILTON PARKWAY,DPR,True,Rappaport Playground,Y,Rappaport Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B152/,No,49,17,7,{4DF8407F-287D-4C2C-8106-4CDD198E21B4} +"MULTIPOLYGON (((-74.01372299622705 40.61098490451227, -74.01625472601266 40.60850782709545, -74.01632108625185 40.60844289549238, -74.01696422398436 40.607813600748194, -74.01704422401156 40.60777567785417, -74.01711939581244 40.60773239481844, -74.01718912268475 40.607684107448726, -74.01725283284233 40.60763121116966, -74.01731000414092 40.607574140121216, -74.01765043332672 40.607238237904646, -74.01770922274908 40.607190251769715, -74.0177735725349 40.60714660796068, -74.01784293453615 40.60710767666772, -74.01791671688189 40.607073792067766, -74.01799428752047 40.60704524331857, -74.01807498485307 40.60702227455807, -74.01815811891355 40.60700508040134, -74.01824298200276 40.60699380954154, -74.01832884632253 40.606988557546266, -74.01841498169877 40.606989368655796, -74.01850064967292 40.606996236684765, -74.01858512122372 40.60700910231765, -74.01886555319012 40.60703704394252, -74.01936632892782 40.607100569001986, -74.01954385546517 40.60713394470376, -74.01971998675687 40.60717136371284, -74.01989456803666 40.6072127927431, -74.02006743862832 40.60725819580883, -74.02004043842744 40.60724614433596, -74.02018453023574 40.60728969806566, -74.02032591200584 40.60733813652324, -74.02046429897312 40.607391361612486, -74.02059941345699 40.60744926713234, -74.02073098131463 40.607511735175365, -74.02085873903167 40.60757863972846, -74.02183244625715 40.608145964904914, -74.02183131196252 40.608146058774615, -74.02393293715443 40.60937994020141, -74.02393294619439 40.60937878843258, -74.02420902920291 40.60954731723701, -74.0242723514683 40.60959818424481, -74.02432866024976 40.60965363545591, -74.02437738579796 40.609713111777445, -74.02441803751049 40.60977601267545, -74.02445020511688 40.6098417042786, -74.02447356340755 40.6099095238794, -74.02448787814592 40.60997878713689, -74.0244930037088 40.61004879528075, -74.02395027411103 40.61134395480213, -74.02378724285818 40.61173299763559, -74.02242278236142 40.61498884118528, -74.02215221838769 40.6156344158555, -74.02186348359746 40.61632332906627, -74.021084489265 40.618181917052766, -74.01626679932453 40.615276561608944, -74.0159181503282 40.61506628835484, -74.01590622160131 40.615059093943344, -74.01565070186871 40.61490498594823, -74.01530297624709 40.61469526451546, -74.01505846835215 40.614547795074124, -74.01483575145288 40.6144134672051, -74.01474469289872 40.61435854624066, -74.01454078525033 40.61423556194806, -74.01436096204775 40.61412710239126, -74.01422494804866 40.614045066530394, -74.01404948332167 40.61393923546632, -74.01391897509205 40.61386051878982, -74.01369419811509 40.61372494352896, -74.01352424003574 40.613622432125354, -74.01332148325528 40.613500136225326, -74.01310335999463 40.613368571755, -74.01283592395663 40.61320726187103, -74.0124102356531 40.61295049620937, -74.01197946416877 40.612690660518716, -74.01208703964633 40.61258541885874, -74.01372299622705 40.61098490451227)), ((-74.01837764273351 40.60674818791078, -74.01837757892157 40.60674816090534, -74.01824951971739 40.606756425586106, -74.01812250561396 40.606771361924565, -74.01799713442651 40.60679289868932, -74.01787399451224 40.606820935836375, -74.0177568144428 40.60687167318176, -74.01764404880552 40.606927922723465, -74.01753614533966 40.606989461977285, -74.01743352933474 40.60705604865196, -74.0174350381066 40.60705569451808, -74.01707110883041 40.607397850116214, -74.01705616378656 40.60740986349244, -74.0170395972816 40.60742057045025, -74.0170108590064 40.60743454720073, -74.0169795356656 40.60744480517158, -74.01694645193498 40.607451074082675, -74.01691247387436 40.60745319081065, -74.01687849238452 40.60745109939157, -74.01684540075726 40.607444853725745, -74.01681406513566 40.60743461938321, -74.01674884902067 40.6073961640244, -74.01665882925603 40.60734308415278, -74.01632588677103 40.60714675967542, -74.01622371852402 40.60709265098995, -74.01607164995573 40.60701211348802, -74.01593322703746 40.60693880328138, -74.01572317839944 40.606827557446394, -74.01762563569518 40.60493350308071, -74.01762960719735 40.604930441597816, -74.01769249285803 40.60488511857528, -74.01775734375464 40.60484143596539, -74.01782408546397 40.60479943970291, -74.01789264474645 40.60475918112575, -74.01793265724703 40.60473727599882, -74.01796294008912 40.60472069896588, -74.01803489589047 40.60468404366113, -74.01811596044323 40.60464465289143, -74.01819870205394 40.60460734560644, -74.01828303094194 40.60457215963878, -74.01836885378421 40.60453913822504, -74.01845607134796 40.604508314697036, -74.01854458912808 40.60447972508777, -74.01863430671021 40.604453398227236, -74.01868910805581 40.60443623798893, -74.01874459739271 40.604420406782545, -74.01876600976071 40.60441488038754, -74.0188007180164 40.60440592532845, -74.01885740849342 40.604392802641, -74.01891461448184 40.60438105673866, -74.01897228045657 40.604370698436185, -74.01903035443597 40.60436173494564, -74.01912457848279 40.60434537483277, -74.01921945062062 40.604331319870305, -74.01931485743773 40.60431958628512, -74.01941071269651 40.604310187598344, -74.0195069088902 40.60430312923014, -74.01960335741857 40.604298424702655, -74.01969995077367 40.60429607493427, -74.01979659208139 40.604296080841685, -74.01983658566698 40.60429705911692, -74.01989318801199 40.60429844334159, -74.01996594056645 40.604299825634435, -74.02003860265359 40.60430289637555, -74.02008923418443 40.60430621856719, -74.02011111047595 40.604307652874766, -74.02018339078397 40.60431409244364, -74.020255385686 40.60432220698808, -74.02032701484221 40.60433199111978, -74.02039822626762 40.60434343404232, -74.02044665317744 40.604350776397546, -74.02048812415524 40.604357063660416, -74.02057742842175 40.60437279513255, -74.02066605636563 40.604390618569305, -74.02075391819301 40.60441051507748, -74.02084093592417 40.604432463060405, -74.02092702212764 40.60445644362498, -74.02101210354948 40.604482436975175, -74.02106248620234 40.604497751934154, -74.02107328755218 40.60450103505807, -74.02108794340589 40.604505489953304, -74.02108684512093 40.60451091760031, -74.0203728835674 40.60593014180917, -74.02193374774822 40.60689182426547, -74.0222714864678 40.60709990589729, -74.02227844616642 40.60710419373318, -74.02164510948016 40.607743265469345, -74.02149729653574 40.607656961104254, -74.0211958871926 40.60748189354388, -74.02106847704107 40.60740856227823, -74.02093718934208 40.60733931814445, -74.02080224980125 40.60727427995741, -74.02066388884505 40.607213560228054, -74.02052234634667 40.60715726156076, -74.02037786335617 40.607105482057946, -74.02020282982024 40.60704944107572, -74.02002489041725 40.606998997975694, -74.01984434997956 40.60695424004244, -74.01966152396777 40.6069152455552, -74.01947672783591 40.60688208018771, -74.01929028176001 40.60685480331126, -74.01910250827333 40.6068334607908, -74.01892283607998 40.60680505744056, -74.018741992067 40.60678136012684, -74.01856019006814 40.60676239582523, -74.01837764273351 40.60674818791078)))",B028,5034,B028,B-10,B-10,B-10,B-10,"86 St., Belt Pkwy. bet. Bay 8 St., 14 Ave., and 7 Ave.",310,43,68,"11209, 11228",B,216.655,False,Dyker Beach Park,No,100004636,PARK,20100106000000.00000,18950724000000.00000,9001 7 AVENUE,DPR,True,Dyker Beach Park,Y,Dyker Beach Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B028/,No,46,22,11,{DF0691F6-FD6D-4089-8B61-70BC34854E0C} +"MULTIPOLYGON (((-73.93258729410877 40.86936892154688, -73.93224091797696 40.869947785211586, -73.93142619351948 40.869253974358, -73.93159703353787 40.86893402218502, -73.93169557583491 40.86873271501838, -73.9319808486276 40.86817252992626, -73.93205078440614 40.8680328071218, -73.93212342736656 40.86789021420439, -73.9325459095001 40.86703888825232, -73.9329103652403 40.86633668576481, -73.93297590569074 40.866206603141, -73.93307135200362 40.866050245338144, -73.93320283197835 40.86581527668068, -73.93325961514749 40.86571466633637, -73.93334019736703 40.86557852469322, -73.93351067514634 40.865307998948225, -73.93368296637148 40.86504697054416, -73.93380257976968 40.864866564011365, -73.93396263673404 40.86463344693097, -73.93415275709128 40.86436742397767, -73.93443254860054 40.863982762644696, -73.93474762827351 40.86356974793872, -73.9350212502754 40.86322840690559, -73.93513038945414 40.863091596562356, -73.9355383647027 40.86257255141215, -73.93582030917952 40.86220843068085, -73.93602979882019 40.86190496662149, -73.93622389164327 40.86160585382992, -73.93688530756863 40.86053867293813, -73.93714704753441 40.86012986806597, -73.9373278072281 40.859857083606556, -73.93758488996417 40.85949264322782, -73.9380510936437 40.85886233505277, -73.9384438490565 40.858365642881544, -73.93872383895884 40.85802282116872, -73.9397721373315 40.85679833388362, -73.94035596792384 40.856106759433786, -73.9405114982858 40.855923471864664, -73.94070238898497 40.85566858981414, -73.94090854846118 40.85537551552854, -73.94109073402811 40.85509043128563, -73.94129002263195 40.854748321940306, -73.94137186548107 40.85459062362619, -73.94153948001791 40.85428363398716, -73.94165763073929 40.854076230525976, -73.94178921299319 40.85386458879878, -73.9419124201874 40.85368443918168, -73.94207445917321 40.85347593895248, -73.94223043232493 40.853296000838185, -73.94243268216634 40.85308483585665, -73.94260925019424 40.85291657966361, -73.9428128923623 40.85273297153444, -73.94347425104867 40.852173316947805, -73.94370348737905 40.85197203500922, -73.94398456829086 40.85168901045617, -73.94412233937096 40.85153686897453, -73.94427009141769 40.85136374348755, -73.94444233790404 40.85113345468742, -73.94526299732667 40.85000966137043, -73.94546351321894 40.84971115233315, -73.94563045014198 40.849413023327905, -73.9457724297804 40.84912259775246, -73.94583758324995 40.848966020195846, -73.94593187091313 40.848702704726456, -73.94599483607215 40.84850183263987, -73.94602856629378 40.84834878998362, -73.94603998125704 40.84817201251162, -73.94605035736771 40.84803177291706, -73.94606277476362 40.8479055594383, -73.94607112204751 40.84774015283128, -73.94606755303249 40.847553938377324, -73.94606333507238 40.847388582616496, -73.94605659745842 40.847206862827235, -73.94604643487875 40.84706501072697, -73.94603429451814 40.846943448490734, -73.94601867786704 40.846819790979175, -73.945779278093 40.84544349750573, -73.94577417019643 40.84541373292494, -73.94576881408368 40.84538153509614, -73.94576460086044 40.845355435940036, -73.94575683085979 40.84530530276515, -73.94574928848309 40.845253791042175, -73.94573971240536 40.84518346166826, -73.94573061427492 40.84511016359344, -73.94572467929396 40.845057918721835, -73.9457171850302 40.84498529316647, -73.94571139523696 40.844922265862515, -73.94570706381484 40.84486961201887, -73.94570317611233 40.84481668103165, -73.94569985969859 40.84476553238779, -73.94569803086468 40.84473399447262, -73.94569570203778 40.84468888229522, -73.94569356126277 40.84464001515146, -73.94569143646146 40.84457884818502, -73.94568928706467 40.84447809644742, -73.94568888535558 40.84436302409451, -73.94569080362476 40.84424287675406, -73.94569499050776 40.84412536171899, -73.94570261010223 40.84399053902501, -73.94571201838491 40.84386954873876, -73.94572617745426 40.84372746213774, -73.94574283551638 40.84359186745954, -73.9457605286216 40.84346944116969, -73.94578438300039 40.84332652885599, -73.94581010433637 40.843191530942725, -73.9458372803885 40.84306394836248, -73.94586535592342 40.84294414825531, -73.94589115184898 40.84284243527175, -73.94591464958319 40.84275545146725, -73.94594053115313 40.84266489651818, -73.94597044739025 40.84256604901089, -73.94600736879366 40.84245132998195, -73.94604851199138 40.842331415267935, -73.94609183226008 40.84221273072738, -73.94613415015246 40.842103163192526, -73.94618622681371 40.84197570019172, -73.94622086485575 40.84189485476767, -73.94625796180325 40.841811363028064, -73.94630359404607 40.84171262629839, -73.94634824551031 40.841619819740714, -73.94639260907515 40.84153098240443, -73.94644494086253 40.84143009204657, -73.94650135429123 40.84132561238967, -73.94654664428839 40.84124466013804, -73.9465993496498 40.84115345108114, -73.94666387193888 40.841045814362644, -73.94673783034423 40.840927391353226, -73.94792106624475 40.839091603227544, -73.94797221423819 40.83900712940039, -73.94801885890163 40.838927154186706, -73.94804828086383 40.83887514142747, -73.9480798992843 40.83881778431926, -73.94811119118097 40.83875942750705, -73.94814018893959 40.83870383687111, -73.94816651355525 40.83865201539276, -73.94819150556245 40.83860153774636, -73.9482185590964 40.83854539691484, -73.94824878146721 40.83848067669463, -73.94828820964108 40.838392751270675, -73.94832759010414 40.83830047732678, -73.94838531917262 40.83815573531221, -73.94845201787464 40.83797084606161, -73.94852451541124 40.83773984867302, -73.94853671436906 40.837698938382914, -73.94856461089893 40.8376695659151, -73.94866538659376 40.83756346150958, -73.94872173416204 40.837501808155274, -73.94873286506143 40.83748962852229, -73.94873862749562 40.83748332312463, -73.94873900368967 40.8374828829504, -73.94879147389898 40.837421373717866, -73.94880846670634 40.83740145423436, -73.9488748330382 40.83731792685276, -73.94890322709645 40.83727947304181, -73.94893765527691 40.83723284901351, -73.94899688595714 40.83714628373589, -73.94905244201038 40.83705833904799, -73.9490551393726 40.837053696392765, -73.94910428782309 40.8369690869788, -73.94915235219926 40.83687861755128, -73.94915707916225 40.836868056842114, -73.94918144281007 40.83681101498971, -73.94920394279939 40.836758338805645, -73.94920465190022 40.83675667770674, -73.94921166806967 40.83674025128567, -73.94929507131086 40.83676986560409, -73.94930227455306 40.836772423471764, -73.94904151348331 40.837554136198605, -73.94882968246718 40.83822830238479, -73.94855669009762 40.838916900969224, -73.94687681767641 40.843097787864295, -73.94692267362947 40.84795282891589, -73.94695530936723 40.84885548099225, -73.94711981432958 40.849955582158444, -73.94707992796177 40.85033012794273, -73.9470767603233 40.85035860184092, -73.94707388770104 40.85038443203034, -73.9470726547433 40.850410793361505, -73.94707211306952 40.85042236533282, -73.94706713848653 40.85042802804411, -73.94704103348586 40.85045774309732, -73.94698098584232 40.85052609435758, -73.94679877208064 40.850733503578134, -73.94678446067216 40.850749793175986, -73.9467432647883 40.850798842859575, -73.94665790169134 40.85090047883951, -73.94661060720907 40.85094867739126, -73.94654506326611 40.85101547522866, -73.93935889279834 40.85833794300631, -73.93774686327616 40.86000226330511, -73.93609556307284 40.86302587711649, -73.93609432024505 40.863028113244965, -73.93440736487209 40.86606173556297, -73.9331059558374 40.8685021155812, -73.93258729410877 40.86936892154688), (-73.94665535632842 40.850602304140374, -73.94634888200699 40.850541607545686, -73.94627887961578 40.850751828084434, -73.94658535602636 40.85081252666437, -73.94665535632842 40.850602304140374), (-73.94678653274109 40.85020835814739, -73.94647936587874 40.85014974711401, -73.94641047937422 40.85035662203676, -73.94671453998967 40.850416841895594, -73.94678653274109 40.85020835814739)), ((-73.94320701035554 40.85075920401058, -73.94323909874025 40.85060316548196, -73.94323930374496 40.850603347482156, -73.94323996260341 40.85060393312597, -73.9432533016857 40.850614908578606, -73.94326717356766 40.85062549978173, -73.94328155691622 40.85063569141624, -73.94329643395437 40.850645469965954, -73.94331178216233 40.85065482101161, -73.94332398273549 40.85066170316141, -73.94332758020379 40.85066373283625, -73.94334380793077 40.85067219102188, -73.94336044163268 40.85068018655176, -73.94337745760302 40.85068770590676, -73.94339483331704 40.85069474007067, -73.94341254506506 40.850701279126326, -73.94342030455672 40.85070387634853, -73.94343056557949 40.850707313154786, -73.94344887352075 40.85071283404103, -73.94346744043314 40.85071783456705, -73.94348624141773 40.85072230841703, -73.94350525157712 40.8507262474743, -73.9435244424525 40.85072964812283, -73.94354378914481 40.85073250404695, -73.94356393025657 40.8507341203793, -73.94358413351644 40.850735170329195, -73.94360437046382 40.850735652081745, -73.94361666946202 40.850735597760675, -73.94362461263742 40.850735564722534, -73.94364483276036 40.850734909138666, -73.94366499999872 40.85073368531519, -73.94368508825997 40.85073189594078, -73.9437050678946 40.850729542802014, -73.94372491043761 40.85072662948707, -73.9437361318941 40.85072465117721, -73.94374458979486 40.85072316048573, -73.94385642982165 40.85069605974078, -73.94393101904703 40.85067798532746, -73.94396501854982 40.8506697461389, -73.94399195275146 40.8506625804984, -73.94400413368317 40.85065907089185, -73.94401863716267 40.85065489244519, -73.94403359879037 40.85065024596328, -73.9440450528033 40.85064668827364, -73.94407118306654 40.85063797247836, -73.94409701134481 40.85062875045447, -73.94412251865718 40.850619029396874, -73.9441262246605 40.85061752556965, -73.94414769076873 40.850608813801315, -73.94417250869724 40.85059811266384, -73.94418182392639 40.85059385334293, -73.94419695820697 40.85058693138063, -73.94422102268904 40.85057527714791, -73.94424468553304 40.850563158962764, -73.94426793250194 40.850550584022514, -73.94429074698621 40.85053756042375, -73.94431311593401 40.850524096264955, -73.94431600749436 40.85052226245849, -73.94433502273357 40.8505102023442, -73.94435645314883 40.850495884958335, -73.94437369789158 40.85048375554622, -73.94437739412503 40.85048115580773, -73.94439783142458 40.850466022990155, -73.94441775199293 40.85045049820612, -73.94438505297994 40.85048640756641, -73.94437915485682 40.85049288466162, -73.94434303932516 40.850531526255516, -73.94433987845694 40.850534908778585, -73.9442999287275 40.850576564255576, -73.94425931160255 40.85061784479145, -73.94421803301643 40.85065874408488, -73.94417610008844 40.85069925673569, -73.94413928915806 40.850733938465766, -73.9441335187544 40.85073937464158, -73.94412611540582 40.850746176972685, -73.94409029494729 40.850779093302286, -73.94404643460066 40.850818407317036, -73.94400194602166 40.8508573094852, -73.9439707882961 40.85088331586593, -73.94396276240352 40.85089001522798, -73.94393897072084 40.8509098730184, -73.94384507959163 40.850988240370185, -73.94380281978813 40.85102351366337, -73.94373913481847 40.85107489169332, -73.94368412701684 40.851119269899655, -73.94364339060299 40.851152134161595, -73.94355731555724 40.851221574918334, -73.94355341955743 40.85122471752901, -73.94353564012115 40.8512390608644, -73.94353296881467 40.85124121533395, -73.94351561184232 40.85125521758669, -73.94350115995574 40.851266876379285, -73.94348510480279 40.85127982929163, -73.94347174468919 40.85129060793446, -73.94345674096114 40.85130271219436, -73.94344152599122 40.851314986541674, -73.9434372656555 40.851318424331055, -73.9434252928062 40.85132808343699, -73.94340850185615 40.85134162850126, -73.943394529368 40.851352901204564, -73.94333295495419 40.851402574512086, -73.94333140033984 40.851403832635754, -73.94333032516292 40.8514047037835, -73.94331161519385 40.85141984806442, -73.94326811561108 40.85145505661519, -73.94325010341186 40.851469635720406, -73.94323307381782 40.85148342017219, -73.94321132102388 40.8515010266844, -73.94321073833846 40.85150149825517, -73.94321008207575 40.851502029222175, -73.94320941750557 40.851502567389026, -73.9432087232675 40.85150312895401, -73.9432080385229 40.851503683319784, -73.94320728494854 40.851504292581645, -73.94320650526562 40.851504923442434, -73.9432055392654 40.85150570549407, -73.94320314681282 40.851507642174234, -73.94320308510315 40.851507691670854, -73.94320129432364 40.8515091414812, -73.94319985481698 40.85151030690911, -73.9431738012838 40.85153139529868, -73.94313067063035 40.85156630411505, -73.94310663450354 40.85158575909148, -73.94306166789774 40.8516221545884, -73.94298560222698 40.8516885030627, -73.94298259130846 40.851691129209065, -73.94296245481985 40.851708693249044, -73.94286059134517 40.851797542972854, -73.9428427310882 40.85181312163462, -73.94274395537334 40.85189927851302, -73.94266444731254 40.851968628203466, -73.94261295503472 40.852013541631464, -73.94258370123748 40.852039057812036, -73.94254968050711 40.85207361074544, -73.94253324936669 40.85209029947586, -73.9423667487367 40.852259408868804, -73.94227647597056 40.85235109500431, -73.94220639104911 40.8524222770864, -73.94198278192027 40.85267102017029, -73.94192672891404 40.852733372612136, -73.94184022576115 40.85282959877369, -73.94182272742552 40.85285248134341, -73.9418015776932 40.852880655157, -73.94168953237184 40.853029914462795, -73.94163534652236 40.853105920953666, -73.94153304329154 40.85324942098498, -73.94138137826849 40.853470872998535, -73.94134968044527 40.85351909440776, -73.94123457416241 40.85369420210371, -73.94108994726062 40.853923349299215, -73.94104207346784 40.85399999086808, -73.94103949272129 40.85400412280402, -73.94094653813775 40.85415293636779, -73.94093890619975 40.85416528269814, -73.9408799741518 40.854260611832075, -73.94086922218177 40.85427800471243, -73.94081895756943 40.85435931310517, -73.94080434087941 40.85438295700745, -73.94071800921287 40.85451940012656, -73.94066824946248 40.854598041455034, -73.94062078929063 40.854672582207364, -73.94053146715673 40.85481287234027, -73.94039398684036 40.855027450557564, -73.94032524694622 40.85513407458938, -73.94025581800256 40.85524176890547, -73.94024895418299 40.85525163383232, -73.94010985097927 40.85545153555264, -73.93996302469867 40.85566095036926, -73.9398974459124 40.85575377575565, -73.9398153237305 40.855870020547925, -73.93966965271565 40.856074660276015, -73.93966675519796 40.856078731681286, -73.93951732146301 40.8562870882696, -73.93941491852753 40.85643070245854, -73.93938033088065 40.85647920994258, -73.93924189905616 40.856670735463425, -73.9391697699387 40.85676917423276, -73.93910200582766 40.856861654910844, -73.93898240100388 40.85702271383418, -73.9389821623193 40.85702303698416, -73.93896068202933 40.857051961092125, -73.93890876816674 40.85712145330381, -73.93879768819129 40.85727014470004, -73.93863320304875 40.85748768792825, -73.93862900659745 40.857493172386036, -73.93846724557747 40.85770458087516, -73.93828870757231 40.85793985756777, -73.93826660459231 40.85796816527349, -73.93810632715068 40.85817342818551, -73.93792011736531 40.8584052575983, -73.93790028211238 40.85843066236977, -73.9377673508557 40.85860091583176, -73.93760999425105 40.858794470530256, -73.93744808673607 40.85898584695573, -73.93728169594138 40.85917499289764, -73.93712498034398 40.85935375400816, -73.9369684772916 40.85953262307553, -73.93681219983178 40.859711600107865, -73.936679537137 40.85985825958068, -73.93667818953847 40.85985975005315, -73.93662999299015 40.85991303081938, -73.93645970444786 40.8601125614628, -73.9364549738673 40.86011810317637, -73.93628727666571 40.860326672306314, -73.93627930193077 40.8603373999455, -73.9361442903887 40.8605190352338, -73.9360277231102 40.860689229052504, -73.93602742022965 40.86068967732869, -73.93601007441386 40.860714997599416, -73.93588477608769 40.86091433439267, -73.93578362697612 40.86108652390211, -73.93568877465609 40.861260769044925, -73.93562931305426 40.86137916384581, -73.9356219653078 40.861393794511685, -73.93560029876627 40.86143693570776, -73.93547372431006 40.861687283180665, -73.9353406521652 40.8619356800035, -73.93520114048165 40.86218203163534, -73.93506846710648 40.86237103112914, -73.9349308619557 40.862557979068704, -73.93478838317378 40.86274282053959, -73.9346401849817 40.86292802148661, -73.93449624460388 40.86311515170321, -73.93435660601243 40.863304148195844, -73.93422130605562 40.863494956971564, -73.93411890578888 40.863643057033244, -73.9340303647839 40.863794972195805, -73.93402785896694 40.86379927240261, -73.93395063203066 40.86392376865333, -73.93391655584489 40.863978426877964, -73.93378323013474 40.86419228158137, -73.93377794712933 40.864201755302865, -73.93368106445367 40.864375468951415, -73.93364120905676 40.86445139423476, -73.9336294676387 40.8644737628482, -73.9336277575276 40.86447701983605, -73.93359614122372 40.86453724980481, -73.9335530888144 40.864619265928475, -73.93354905963113 40.86462742024305, -73.93348555412578 40.8647559222404, -73.93347709518335 40.86477304017358, -73.93338882734479 40.86495242710816, -73.93335497917029 40.86502121577129, -73.93329606643128 40.865141901357696, -73.93324748599235 40.865241420579856, -73.9331999011557 40.865336839527075, -73.93315279160225 40.86543130781153, -73.9331443064969 40.86544832214687, -73.93310485168969 40.86553040501027, -73.933076450065 40.865589491266945, -73.93307570750714 40.86559068938775, -73.93285732362654 40.865958925732976, -73.93262202948475 40.86639280284522, -73.93261803134928 40.8663981926407, -73.93260240820862 40.8664192522654, -73.9325832347252 40.86644275104023, -73.93254989487725 40.86648360926943, -73.93252534246356 40.866513696471856, -73.93247989374662 40.8665641630238, -73.93247383502272 40.86657088883498, -73.93246061811273 40.866584211042884, -73.93238597303059 40.86664476755627, -73.93235305660518 40.86666796017632, -73.93232245131345 40.866689523356264, -73.9323199146218 40.86669131024019, -73.93230488406729 40.8666998884891, -73.93225906482755 40.86672603792247, -73.93225901973152 40.866726058607206, -73.93220223455457 40.866751844085385, -73.93219358686764 40.866755730918754, -73.93215348731384 40.86677375585464, -73.93214870477885 40.86677592322165, -73.93221764072247 40.8667250698835, -73.93231072287757 40.86662722873136, -73.93238722696016 40.866518636753106, -73.93250722438373 40.86631771418211, -73.93273969936106 40.86590976164544, -73.93291151447698 40.86561493246827, -73.93301605297351 40.865435250099395, -73.93309809296039 40.865295751539236, -73.93317196049469 40.865162833464524, -73.93323259820004 40.865033823013476, -73.93328547011812 40.864896356943284, -73.93343011230091 40.86445382372526, -73.93356154914046 40.86405576688099, -73.93368762231005 40.86368824418629, -73.93374053432696 40.86354541908404, -73.93380853353096 40.86339672331206, -73.93389443735411 40.86324641417248, -73.93426185875258 40.86267757482167, -73.93476410954334 40.861882943345215, -73.935116251907 40.861339947377296, -73.93519648902497 40.861178589517976, -73.93524335253932 40.861038381595414, -73.93526872077982 40.86093325999932, -73.9352896374693 40.86079778577699, -73.93531438661064 40.86057661403975, -73.93534198607053 40.86033067590056, -73.93535894746917 40.8602348723363, -73.93539256032996 40.8601326260803, -73.93545981485917 40.8600117927048, -73.93555851638155 40.85989218621468, -73.93564990104089 40.859812727522375, -73.93580691633396 40.859712086135474, -73.93638132329123 40.8594045896582, -73.93658021201888 40.85927576603309, -73.93670303168855 40.85917797628089, -73.93681352481367 40.8590672756178, -73.93686652281684 40.859005339178744, -73.93690573358873 40.8589527314613, -73.93693075493138 40.85892339815639, -73.9370534789377 40.858854022051155, -73.93713651444054 40.85879564800163, -73.93721318677034 40.85873090396113, -73.93726561275919 40.858678711232244, -73.93731694499839 40.85861911585259, -73.93735128287157 40.85857287810459, -73.9373819485365 40.858525581177105, -73.9374107372641 40.85847386361519, -73.93743443321648 40.858423294110985, -73.9374575650364 40.85836214983468, -73.93748667699897 40.85824148186223, -73.93749381349791 40.858174446003666, -73.93826221880296 40.85725251955318, -73.93876161355755 40.856663038973316, -73.9393852799307 40.855921078366954, -73.93998530201674 40.85522091630533, -73.94010963515561 40.855053748916895, -73.94020473735644 40.854892788636825, -73.94029229209336 40.85470880421249, -73.9404341338432 40.85438455483327, -73.94053383929457 40.85413349709017, -73.9405998183544 40.8540040107231, -73.94067505027425 40.85388083521443, -73.94078452872581 40.8537296116252, -73.94097228191029 40.85346989898878, -73.94132340456993 40.85299885187479, -73.94165901239543 40.8525470330103, -73.94175566532981 40.85242562265622, -73.94185091661889 40.85233080212608, -73.94267296440587 40.85160145969151, -73.9428699762225 40.8513935420559, -73.94300887505379 40.851199426934706, -73.94312106338269 40.85099790273514, -73.94317567264898 40.85086231379313, -73.94320701035554 40.85075920401058)), ((-73.94814869219107 40.83810353561854, -73.94814924992463 40.83810293614047, -73.9481322491688 40.83814777578304, -73.94808181478358 40.83827155566198, -73.94803800005546 40.83837230567257, -73.9479844056168 40.83848833713405, -73.94792721098031 40.83860472624, -73.9478742140947 40.83870669310632, -73.94782825243996 40.838791110708236, -73.94777833839714 40.83887902942123, -73.94774205891704 40.83894069949972, -73.94769854115243 40.83901239868273, -73.946519482853 40.84086257186964, -73.94639601496029 40.84106099317389, -73.94629288670983 40.8412383864897, -73.94619491832997 40.841418570942615, -73.94607413860047 40.841659746751944, -73.94593567485016 40.841969731621774, -73.94581235204826 40.84228815383936, -73.94569944418808 40.84263360820856, -73.9456442955509 40.84283146916839, -73.94559606262402 40.84303284798122, -73.94555821282435 40.84320709081193, -73.94551517155652 40.84345080239745, -73.9454786781981 40.843724424220014, -73.94545401986633 40.844006632411144, -73.9454425988168 40.84428089099171, -73.94544577505353 40.84462704549622, -73.94546339098203 40.84491507010245, -73.94553562395232 40.84546796346468, -73.9457742672998 40.84683947366939, -73.94579206782568 40.846983474361686, -73.94580169733136 40.84708321741511, -73.94581125041242 40.84721858390493, -73.9458176260339 40.84739404151534, -73.94581571633559 40.84762466658619, -73.94580002300187 40.84787921845366, -73.94577157871466 40.848122811628436, -73.9457579072689 40.84845844562782, -73.94561083318636 40.84891148236945, -73.94553262590023 40.84908602475569, -73.94538473597156 40.849383806060466, -73.94519798776824 40.84969936963149, -73.94503985028756 40.849929486238715, -73.94496018639191 40.85004098948225, -73.94486694562748 40.850173193890974, -73.94469142745093 40.85041657404332, -73.94423890036417 40.85104740099953, -73.94410419943006 40.85122666602897, -73.94399480933083 40.851361465202565, -73.94373955016272 40.85164520207377, -73.94352899623713 40.851856968660066, -73.94330387952829 40.85205702310974, -73.94298052572869 40.852324392569834, -73.94263203401948 40.85261179715654, -73.94236265036733 40.852857253914934, -73.94218052216348 40.85303645421986, -73.94199785155901 40.85323405550062, -73.94184990291625 40.85340891587507, -73.94173534418604 40.85355501322055, -73.9415545398027 40.85381075404456, -73.9413181226383 40.8542137425412, -73.94119703912037 40.854438347139094, -73.94106445182332 40.854683313934636, -73.94080072040515 40.85513282473479, -73.94054251091187 40.85551601658136, -73.9403488373208 40.85577926609856, -73.94016048036033 40.856010688383755, -73.93976665583176 40.85647069283068, -73.93942914390314 40.85686772984179, -73.9390588124823 40.857299296736905, -73.93872995211716 40.85768382930348, -73.93853141246315 40.85791557753123, -73.93815178186169 40.85837868967668, -73.93781949879212 40.85880495548127, -73.93745645345064 40.859293210498926, -73.9372513122799 40.8595829732817, -73.93703512889282 40.85989964531682, -73.93684661330029 40.86018375323931, -73.93667176259548 40.860462272695116, -73.93629124297571 40.861073173688936, -73.93600778684794 40.86153062609849, -73.93583412396043 40.86180127819996, -73.93565900851466 40.862059006285676, -73.93534251512646 40.862481418504075, -73.93454490466809 40.863479578733326, -73.93425643720064 40.863855632149665, -73.93390771357517 40.864332526777225, -73.93373742996448 40.86458254551438, -73.93375115242766 40.86455640407579, -73.9337721395642 40.864516422677795, -73.93377307721158 40.86451463574407, -73.93377410993057 40.864512667866485, -73.93377513670806 40.86451071079133, -73.93377615516546 40.864508770820706, -73.93377719620167 40.864506788540034, -73.933778224166 40.86450483056505, -73.93377927946453 40.86450281947684, -73.93378032882144 40.86450081919111, -73.93378145898849 40.86449866586852, -73.93381539010069 40.864434026578145, -73.9338229031371 40.864419714902965, -73.93382942669838 40.86440801768175, -73.93392372814311 40.864238930048145, -73.93401917946349 40.86407840934872, -73.93404415866046 40.86403858956743, -73.93408563931395 40.86397246599832, -73.93412845520751 40.86390421351761, -73.9342412181733 40.86372943965004, -73.93435811620247 40.86355624117536, -73.93451017687059 40.863349911008, -73.9346644311699 40.86314453009117, -73.93467267460908 40.863133757696254, -73.93467332306062 40.86313291250342, -73.93482087078135 40.862940101113004, -73.93497948618499 40.862736642069095, -73.9351183707174 40.862550373766176, -73.93525035768516 40.862361238762205, -73.93537536869331 40.862169395522834, -73.93547922559056 40.86199640738147, -73.93557530483379 40.861820847501924, -73.9356802242412 40.861613883371525, -73.93576574334132 40.86144865776269, -73.93578705323662 40.8614074866096, -73.93587802030126 40.86123527704062, -73.93587866433491 40.86123405813488, -73.93589577875636 40.861201659004514, -73.93602170244249 40.8609815842671, -73.93608218095224 40.86088508433823, -73.9361109518959 40.86083917887504, -73.93612768701897 40.86081247419819, -73.93615749374749 40.860764914195215, -73.93630300052754 40.86055191071304, -73.93645804219344 40.86034282222023, -73.93662500422202 40.86014722760401, -73.9367292614531 40.86002792843398, -73.93679473579249 40.859953005704014, -73.93692823111745 40.85980375944755, -73.93692835103583 40.85980362624056, -73.93701097127327 40.85971170879704, -73.93712893267282 40.859579162420175, -73.93719429085667 40.859505724303375, -73.93724548317003 40.85944684297659, -73.93724690560047 40.8594452129621, -73.93725383374866 40.8594372374845, -73.93725796569767 40.85943248604264, -73.93737467285814 40.85929825030691, -73.93755210066125 40.85908931562788, -73.9376351063509 40.858989221481785, -73.9377265540959 40.85887894548266, -73.93791518088605 40.858649413952115, -73.93803415028556 40.85850159484934, -73.9380350657792 40.85850045802149, -73.93803628406361 40.85849894405064, -73.938037648399 40.85849724915966, -73.938039365394 40.85849511772012, -73.93804134599594 40.85849265684254, -73.93804405923179 40.85848928416146, -73.93804808455457 40.858484283197406, -73.93804968755775 40.85848229307352, -73.93805338515716 40.858477696253544, -73.93805569823056 40.85847482493056, -73.9380573380465 40.85847278529936, -73.93805842690018 40.8584714342476, -73.93805923315361 40.85847043063344, -73.9380597805501 40.85846975015648, -73.93806056780174 40.85846877354688, -73.93809141551718 40.858430445414086, -73.93810097771939 40.85841856496959, -73.93826466549353 40.8582108716733, -73.93827388469566 40.858199179233026, -73.93828311696092 40.858187465187235, -73.93828394697492 40.85818641115674, -73.9384640590023 40.85795297232182, -73.93861781259729 40.85775442489647, -73.93864472864938 40.857719243535314, -73.93872847138705 40.85760978386891, -73.9387359060185 40.857600063417955, -73.93877018294182 40.85755526149047, -73.93892114750732 40.85735548479881, -73.93907071934589 40.857155097535355, -73.93916348815196 40.85702925787963, -73.93921888184875 40.85695411410449, -73.93928549016385 40.856863541791554, -73.93937045552386 40.8567480039741, -73.93939444968235 40.85671537919119, -73.93956750644394 40.856475596315676, -73.93958182323586 40.85645537788855, -73.93973804621905 40.856234769087926, -73.9398223012244 40.856113480019644, -73.93990604884415 40.85599292092127, -73.93996196818743 40.8559142975533, -73.9400716678017 40.85576005996318, -73.94007951386958 40.85574868813595, -73.94008260146906 40.85574421339887, -73.94010069717274 40.85571798338863, -73.94023339934785 40.85552563709419, -73.9403912257024 40.85528967483344, -73.94052684530476 40.85509153683609, -73.94065828499399 40.85489177563885, -73.94067921374845 40.85485864742843, -73.94076422902323 40.85472408119429, -73.94078548427201 40.85469043805038, -73.94092706178688 40.85446599116906, -73.94092956419266 40.85446196275236, -73.94106691925498 40.8542409209876, -73.94116159259644 40.854086235201976, -73.9412050460067 40.85401523831262, -73.94125424016546 40.85393660366109, -73.94125442662285 40.85393630659393, -73.94134287177714 40.85379493214424, -73.94148498837541 40.85357621104332, -73.94159189741842 40.853417655378294, -73.94163136964454 40.85335911370213, -73.94168250305053 40.8532858521721, -73.94175126378026 40.853187333533036, -73.9418780569472 40.853018431079036, -73.94199927681721 40.85286985877549, -73.94201337606455 40.85285257732829, -73.94219623264509 40.85264304819369, -73.94230593013333 40.85251734857201, -73.94232260011735 40.85250030339988, -73.9423481024225 40.85247422710798, -73.94238144233873 40.852440136748896, -73.94249429784274 40.85232474194504, -73.94250422927009 40.85231458664949, -73.94269783093671 40.852128350568556, -73.94274035659632 40.85208744254224, -73.94290384385907 40.85194429228618, -73.94292393420835 40.85192669941856, -73.94293830292868 40.851914120355985, -73.94298091060327 40.85187681244551, -73.94302415673431 40.851838943828085, -73.94303004805005 40.85183378511984, -73.94305645689279 40.85181066182814, -73.94306151031792 40.85180623660531, -73.94307139472221 40.851798177581294, -73.94307626631165 40.85179420611583, -73.9431490434082 40.85173486448853, -73.94316061533982 40.851725429436726, -73.94318742147942 40.85170357330211, -73.94331812667717 40.85159699867884, -73.94331906064002 40.851596237321814, -73.94332070427247 40.85159489729737, -73.94332123949148 40.851594460821865, -73.94332135697825 40.85159436542751, -73.94332147327981 40.85159426913204, -73.94332164298204 40.85159413234068, -73.94332191355822 40.851593911853186, -73.94332238706679 40.85159352577491, -73.94332272054164 40.851593252189296, -73.94332292940662 40.85159308299946, -73.94332406630176 40.85159215605168, -73.94332633653116 40.85159030575619, -73.94332902805336 40.851588110779375, -73.94335198430731 40.851569392729054, -73.94336646724747 40.85155758358887, -73.94338020491296 40.85154638101241, -73.94339034913567 40.85153810957221, -73.94339370045688 40.851535402537934, -73.94340703453076 40.8515246373991, -73.94345797835177 40.85148349820542, -73.94352275694307 40.85143119066157, -73.94353300193359 40.85142291835752, -73.94354289565224 40.85141492863502, -73.94355340053085 40.851406445741304, -73.94356537575662 40.85139677581745, -73.94358013740401 40.851384856025994, -73.94359524912991 40.851372652748935, -73.94361190240107 40.85135920574388, -73.94362791602339 40.8513462744056, -73.94364296008843 40.851334126019125, -73.94365703934385 40.85132275698522, -73.94366815654067 40.851313780010074, -73.94369057249345 40.85129567936499, -73.94371592067768 40.851275374842075, -73.94385138723482 40.85116686317187, -73.9438696376207 40.85115224446636, -73.94395042862044 40.85108753029111, -73.9439901761216 40.85105569110036, -73.94403611523302 40.85101815928959, -73.94406997286191 40.850989849842556, -73.94408148777195 40.85098022196442, -73.94412595195384 40.85094217071925, -73.94412628661937 40.8509418836245, -73.94415788449881 40.85091420520201, -73.94416829250737 40.85090508915905, -73.94417050702732 40.85090314967115, -73.94421414068941 40.85086402640446, -73.94425718285783 40.850824519225725, -73.94429962641293 40.8507846335351, -73.94434146660697 40.85074437473395, -73.94435095924955 40.85073502050281, -73.94438269513304 40.8507037500228, -73.94442330724422 40.85066276390255, -73.94446329819213 40.85062142267491, -73.94450265967082 40.85057973264, -73.94453550832617 40.850543538763446, -73.94456316700628 40.85051217262135, -73.94456771802739 40.850507010487924, -73.94457533413554 40.850498117288545, -73.94459928165442 40.850470154113914, -73.9446232844532 40.85044129136938, -73.94462330700918 40.8504412625645, -73.94463019564432 40.850432976844125, -73.94466045287624 40.85039548587967, -73.94469004504519 40.85035768661997, -73.94471897332805 40.8503195907725, -73.94472449395607 40.85031208781866, -73.94474722467855 40.85028120103296, -73.94475198208352 40.850274527965674, -73.94477479790342 40.85024252730679, -73.94477854270336 40.85023710183523, -73.94478034861221 40.85023448677096, -73.94479488849545 40.85021342402224, -73.94480168706943 40.850203574994424, -73.94480868183078 40.850193102019226, -73.94481813443066 40.850178950809685, -73.94482788505404 40.850164353998444, -73.94484807700645 40.85013308867185, -73.94484926679222 40.85013124773488, -73.94485148131326 40.85012782152164, -73.94485338829594 40.85012486972055, -73.94485628093894 40.8501202605851, -73.944860414498 40.85011364394591, -73.9448607256146 40.85011314432165, -73.94487819323093 40.85008513116436, -73.94488976916756 40.85006592560205, -73.94489741085081 40.85005324582475, -73.94490229392468 40.85004514553147, -73.94491786425225 40.85001836693645, -73.94492028571926 40.85001420511881, -73.94492568444272 40.85000492002337, -73.94494081861659 40.84997781433833, -73.94495070457516 40.84996010908289, -73.94495416437184 40.8499536866249, -73.94497116409333 40.84992206856059, -73.94497493863824 40.84991505012648, -73.94497875023147 40.84990768502049, -73.94498557166342 40.849894503271855, -73.94499651825546 40.849873351435136, -73.94499838069844 40.84986974945514, -73.94502102837733 40.849824216973744, -73.94502823678825 40.849809118259586, -73.9450322104404 40.849800796006086, -73.94504153574823 40.8497812660786, -73.94504287574166 40.84977845898327, -73.94504449264488 40.8497749262234, -73.94505373072883 40.849754744297165, -73.94505374973863 40.849754701082624, -73.945057252035 40.84974705037061, -73.94505726747971 40.849747016159284, -73.94506269318697 40.849735162867, -73.94506391922775 40.849732484487475, -73.9450652095157 40.84972955219984, -73.94507259250074 40.84971269040266, -73.94507657982717 40.84970359192998, -73.94507928160874 40.84969742664775, -73.94508204873657 40.849691111914886, -73.94508415645865 40.84968630159003, -73.94508624060106 40.84968132376243, -73.94509477321834 40.849660951493, -73.9451030955145 40.849641082497776, -73.94510358031529 40.84963991659142, -73.94511059266108 40.849622375644266, -73.94512099175257 40.84959635457453, -73.94512219553243 40.849593342101244, -73.94512353373084 40.849589827217365, -73.94513823609158 40.849551193201556, -73.94513999024906 40.8495465826166, -73.94514204412869 40.84954090329027, -73.9451448670249 40.84953309646717, -73.9451523123313 40.84951251206029, -73.9451569644593 40.84949964714289, -73.94516120756087 40.849486657762874, -73.94517291798597 40.849450812944156, -73.94518808536968 40.84940183879306, -73.94520025347325 40.84936028416899, -73.94520246542173 40.84935273009226, -73.94521404682823 40.84931077717026, -73.94521605576394 40.84930349674632, -73.94522885402169 40.849254144157364, -73.94524085781684 40.84920468222994, -73.94525088289787 40.84916035036507, -73.9452520659601 40.849155117267145, -73.94526247726128 40.84910545647259, -73.94527208934231 40.84905570975074, -73.94527377518905 40.84904617704173, -73.94528008847604 40.84901047372757, -73.94528089982876 40.84900588250371, -73.94528890990085 40.84895598373706, -73.94529160425708 40.84892273975003, -73.94529540797095 40.84887581781494, -73.94530208931442 40.84879339984757, -73.94531125532195 40.84868032850608, -73.94531300921456 40.84865868871234, -73.94531749778119 40.84851866522312, -73.94532407729393 40.8483133552423, -73.94532614142956 40.848248964730445, -73.94532313695343 40.84815460974057, -73.94531860078666 40.848012139826416, -73.94531723669901 40.84796930276741, -73.9453141270515 40.847871644717515, -73.94531175596293 40.84782763654015, -73.9453109663743 40.84781298785927, -73.94530025214426 40.84761411537797, -73.94529755520803 40.84756404673109, -73.94529537336379 40.847523545157586, -73.94529307237504 40.847480844525144, -73.94529255844247 40.84747131527245, -73.94527954220015 40.847229699819394, -73.94527382717051 40.84712362992186, -73.94527318594132 40.84711172600988, -73.94525172341476 40.84675167647854, -73.94523786745921 40.846519237510115, -73.94523545677897 40.84647878804799, -73.94523286363645 40.84643527412329, -73.94523281032457 40.84643377297713, -73.94523249153767 40.84642488946815, -73.94523224928972 40.8464181014413, -73.94523200007968 40.84641112790974, -73.94523174739523 40.84640405352137, -73.94523148775238 40.84639678912575, -73.94523069257703 40.84637456549585, -73.9452300735927 40.84635726584202, -73.94522938623872 40.84633803099752, -73.94522873016743 40.84631968855574, -73.945228113509 40.84630244563393, -73.94522749916177 40.84628527655349, -73.94522729284853 40.846279492592615, -73.9452271247746 40.846274792842785, -73.9452190097515 40.84604784868224, -73.94521707400224 40.84599373987158, -73.9452058638288 40.84589378888602, -73.94519105744767 40.84576178585944, -73.94517966770582 40.84550427199966, -73.94516852381626 40.84537442558052, -73.94516069329386 40.84528317674565, -73.94515714976603 40.84522032067783, -73.94514648997809 40.845031267090256, -73.94514070957797 40.84492874325458, -73.94513471033285 40.84476953149843, -73.9451339003648 40.84474805346249, -73.94513568477612 40.8447454266736, -73.94513596377641 40.84474501528115, -73.94514720417746 40.844727415995074, -73.94514882962487 40.844724870174716, -73.94516235003192 40.84470327468427, -73.94516505601264 40.84469895180485, -73.94517739469894 40.844678160791226, -73.9451805817871 40.84467278906607, -73.94519234548939 40.84465183568882, -73.94519540100956 40.84464639456277, -73.94520718235677 40.844624162492714, -73.94520950537272 40.84461977729625, -73.94522230218494 40.84459413193906, -73.94522289130889 40.84459295077238, -73.94523555169587 40.84456592489352, -73.94524313244621 40.84454863182852, -73.94524748178169 40.84453871136399, -73.94525599628032 40.84451788070545, -73.94525867681433 40.844511321888184, -73.94526913085677 40.844483767269466, -73.94527884034143 40.844456061013645, -73.94528446339805 40.844440133064396, -73.94528856866688 40.84442850514812, -73.94529661579857 40.84440351939109, -73.94529749196361 40.844400794015094, -73.94530560666416 40.84437294112053, -73.94530751824416 40.84436561471759, -73.94531290682946 40.844344959969106, -73.94531939126277 40.84431686496836, -73.94532182139099 40.84430476800035, -73.94532505402522 40.84428866962292, -73.9453298939216 40.844260386539275, -73.94533390975383 40.84423203192581, -73.94533709677025 40.844203617486826, -73.94533754709192 40.84419818052498, -73.94533945495935 40.84417515853071, -73.94534098312522 40.84414666856433, -73.94534168125718 40.84411816199561, -73.94534569800015 40.84393569614565, -73.94535125524646 40.84377030166217, -73.94535277599437 40.84373061586278, -73.94535497170358 40.8436732933302, -73.94535797688705 40.843594808698015, -73.9453619735444 40.84349445246317, -73.94536466742078 40.84342682852553, -73.94536620626424 40.84338819090593, -73.9453736811022 40.84326429833058, -73.94537648248988 40.843239005712064, -73.94537977965241 40.84320922527144, -73.9453894549115 40.84312181810465, -73.94539203290651 40.843098527175144, -73.94541045387858 40.84297117917852, -73.94541637118857 40.842930267181146, -73.94541865606158 40.842914473615956, -73.94541969116844 40.84290732149021, -73.94542060583525 40.842900995959994, -73.94542150016522 40.84289488833942, -73.94542256515406 40.84288744536853, -73.94542318407466 40.84288316471787, -73.94542340811415 40.84288180327848, -73.94542409929342 40.84287761091028, -73.94542547092595 40.84286929190482, -73.94542568542836 40.84286799259495, -73.94542647074758 40.842863232960696, -73.94542711306886 40.84285933503055, -73.94542756709997 40.842856583338865, -73.94542797108403 40.84285413058719, -73.94543164624545 40.84283184062249, -73.94545823508528 40.84267057580581, -73.94547582131537 40.84255880862538, -73.9454844296586 40.842504094236226, -73.94549401159838 40.842446351947906, -73.94551867957155 40.8422976904003, -73.94552013336114 40.84228892658809, -73.94552094264938 40.84228528807794, -73.94557331302096 40.84204972220222, -73.94566397601264 40.84171745507263, -73.94566604063252 40.841709889201354, -73.9456666658997 40.84170796784353, -73.94574513424314 40.84146687072151, -73.9457581791607 40.8414267878009, -73.94576943051472 40.841399226293525, -73.9457904825252 40.84134765233749, -73.94579351931692 40.84134021118846, -73.94586500844734 40.84116507542089, -73.9459925963125 40.840886108395466, -73.94599958412257 40.840872535830684, -73.94602922171907 40.840814966759595, -73.94606057533267 40.84075406485675, -73.94610380944066 40.84067457601166, -73.94611855921873 40.84064746004467, -73.94622652038284 40.84045785032625, -73.94624197859852 40.84043284723018, -73.94627253406624 40.84038342528347, -73.94634065682857 40.840273240211594, -73.94638667613842 40.84020328697374, -73.94639544097525 40.84018996374562, -73.94646990619754 40.84008062170172, -73.94655793916328 40.839952154912666, -73.94659470416595 40.839899215725, -73.94659987388786 40.839891771038, -73.94666841918341 40.83979306544963, -73.94677560287806 40.83964675145724, -73.94686673415028 40.83952860730934, -73.9468668362239 40.83952847768532, -73.9469323648276 40.83944550666816, -73.94696887509137 40.83940053390558, -73.94702993667904 40.839325323031375, -73.94712776913649 40.839209481608954, -73.9471285488664 40.83920856346298, -73.94719401638646 40.839131531920266, -73.94720631160675 40.8391170954335, -73.94721772596482 40.83910401288456, -73.94737097321067 40.83892834979601, -73.94755212826648 40.838727154891146, -73.94757096224028 40.8387068798358, -73.9476548469118 40.83861658492096, -73.9477371423885 40.838527996559684, -73.94775982645315 40.838504320251985, -73.9479259633562 40.83833091708275, -73.94796840151537 40.838287957474385, -73.94796958813157 40.838286755850625, -73.94799332993406 40.8382627215768, -73.94801006001464 40.83824578633105, -73.94811795275342 40.83813656721174, -73.94811856267125 40.83813594974747, -73.9481190397143 40.838135433979154, -73.9481190966744 40.83813537277123, -73.94811915126168 40.838135313363196, -73.94811924263513 40.83813521525047, -73.9481193280745 40.838135124339054, -73.94811940876838 40.83813503702747, -73.94811950844854 40.838134929913544, -73.94811960575518 40.838134825500035, -73.94811968407565 40.83813474088887, -73.9481197932496 40.83813462297331, -73.94811993208994 40.8381344735538, -73.94812002821023 40.838134370040294, -73.9481201504378 40.8381342377227, -73.94812028690397 40.83813409190409, -73.94812040082412 40.83813396948818, -73.94812053729034 40.83813382366962, -73.9481206737572 40.838133676950534, -73.94812077343731 40.8381335698366, -73.94812089803767 40.83813343571908, -73.94812102382438 40.83813330070163, -73.94812115317157 40.83813316118327, -73.94812129794592 40.8381330045625, -73.94814107615422 40.83811172848794, -73.94814869219107 40.83810353561854)), ((-73.94977065860965 40.8352298039463, -73.94998079132418 40.83455143145361, -73.95178036611034 40.835345869104344, -73.95273200871512 40.83576596080905, -73.95250953033248 40.83655073273939, -73.95242307978468 40.836916035575314, -73.95235826081057 40.83716683776977, -73.95227651132834 40.8374787503248, -73.952242379821 40.837620593677435, -73.95221500522347 40.83778728353703, -73.95220506667387 40.83787019958017, -73.94931194501676 40.836742452982435, -73.94949846275487 40.836127373182656, -73.9495498273651 40.83595797942508, -73.94971927260377 40.83539918880839, -73.94977065860965 40.8352298039463)), ((-73.94325437740537 40.85050496176303, -73.94331852008524 40.85007490759731, -73.94338570452082 40.84962718720548, -73.94345240096263 40.849180504768206, -73.94345614770201 40.849171459361706, -73.94348506566682 40.849103860090636, -73.94351127636347 40.849044489082466, -73.94351481349818 40.849036475535044, -73.94354538881602 40.84896931289701, -73.94357678924105 40.848902378478215, -73.9435851457714 40.84888591256586, -73.94364506321237 40.84876785852935, -73.94370293022615 40.84865384306616, -73.9437299025339 40.848600700178785, -73.94375317526014 40.848555566258426, -73.94379865753169 40.848467361812546, -73.94384454947415 40.848378362412355, -73.94387923441849 40.84831109542089, -73.94388816191041 40.848293782399644, -73.9439316970286 40.84820935271389, -73.9439397241447 40.84819378620547, -73.94395057464436 40.84817274247411, -73.94395455018935 40.84816503259095, -73.94398438884285 40.84810561370148, -73.94398986480056 40.8480947086989, -73.94403120524953 40.848012386859835, -73.9440788280646 40.847917555711554, -73.94411677108877 40.84784199849077, -73.94415063857757 40.847774556320246, -73.94415617852621 40.84776363963372, -73.94422875953522 40.847620603642916, -73.94423282776887 40.84761258582591, -73.94427436407632 40.84753073044281, -73.94428600215949 40.847507794223326, -73.94432565686358 40.84742964613867, -73.94433325283431 40.847414676419156, -73.94437777087349 40.84732904847184, -73.94442329957154 40.84724147322821, -73.94446270177546 40.8471656833607, -73.94446669496513 40.84715800138235, -73.94450167305921 40.84708039127649, -73.94452448801853 40.847029768468225, -73.94456592410711 40.846937815703455, -73.94457360826046 40.84692077307593, -73.94460383163484 40.8468537090188, -73.94462174277386 40.846810526403615, -73.94462822328694 40.8467949032707, -73.94462972875503 40.84679127050664, -73.94463029246307 40.846789317609314, -73.9446365003855 40.84676781052793, -73.94465143981955 40.84671605109239, -73.94466223349558 40.84667865161866, -73.94466378190215 40.8466732890289, -73.94467051110759 40.846682271966706, -73.94467187803292 40.84668409701993, -73.9446823937263 40.846698612597315, -73.94469485431908 40.8467158134739, -73.94469577701913 40.846717087212475, -73.94469641779123 40.84671800151943, -73.94469784975433 40.84672004812464, -73.9446993279123 40.84672215778641, -73.94470085107635 40.84672433410615, -73.94470240148387 40.84672654735916, -73.94470393057054 40.84672873178614, -73.94470543359981 40.8467308792804, -73.9447069295232 40.846733015965356, -73.9447088080151 40.84673569853204, -73.94471904970518 40.84675032653616, -73.9447334872032 40.84677167512312, -73.94473633917175 40.84677589349521, -73.94474169135304 40.84678380778509, -73.94476369485531 40.84681752105079, -73.94478505547309 40.846851460028, -73.94481118304107 40.84689839178431, -73.94483660133415 40.84694554651721, -73.94486130917048 40.84699291792317, -73.94486300449513 40.84699627937087, -73.94486330520145 40.84699687654103, -73.94488503425065 40.84703997098008, -73.94488530062486 40.847040499696334, -73.94490857570277 40.84708828373278, -73.9449311284773 40.84713626552761, -73.944931836314 40.84713782641869, -73.94495295776805 40.84718443697622, -73.94497405883551 40.847232791773344, -73.9449778495978 40.84724182281769, -73.9449866560528 40.84726280308518, -73.94499442931102 40.84728132451532, -73.94501027754625 40.84732062775324, -73.9450140668282 40.8473300270969, -73.94503490184489 40.84740340013138, -73.94505206200509 40.84746383313805, -73.94506269770046 40.84750129057682, -73.9450796285256 40.8475609148271, -73.945079652151 40.847561025598885, -73.94509746184293 40.84766072486978, -73.94509762945742 40.84766166416292, -73.94512672135195 40.847824594154915, -73.9451293146734 40.84783912122811, -73.94513056825129 40.84784614206149, -73.94513560776282 40.84790549859992, -73.94515226136669 40.84810162921077, -73.94515768787146 40.84815478784218, -73.94516479657418 40.84822442087556, -73.94518711326037 40.84844303224604, -73.94517764432322 40.84853207650876, -73.94516240409384 40.8486753969862, -73.94515502059586 40.84874482501555, -73.94514769443869 40.84879646925354, -73.94512633377661 40.84894703937201, -73.94510998638273 40.849062276562165, -73.94510713915216 40.84908234627352, -73.94509991705458 40.849108397672076, -73.94509812223596 40.849114869554334, -73.94506494832378 40.849234531847394, -73.94500806437867 40.84943971875751, -73.94500620888087 40.84944641032912, -73.94496010370449 40.84956192415709, -73.94490272690645 40.84970568101252, -73.94488881961193 40.84973345454445, -73.94483960114411 40.849831744023625, -73.94479244345511 40.849925918318064, -73.94478948292598 40.849932311293976, -73.94478285618545 40.84994662144046, -73.94477036448284 40.84997184454115, -73.94476304569517 40.84998553121472, -73.94476080563729 40.84998972013072, -73.94475825201877 40.84999449511671, -73.94474543175926 40.85001692112943, -73.94474179918372 40.85002288154601, -73.94473408277621 40.85003554596893, -73.94473191320215 40.85003910907623, -73.94471770228593 40.850061047253355, -73.94470312908699 40.85008225405563, -73.94470280732254 40.85008272215716, -73.94470278832665 40.8500827482623, -73.94469815807636 40.85008911342054, -73.94469274424608 40.85009655339018, -73.94469022728909 40.85010001277358, -73.94468890707292 40.85010182843266, -73.94468723780834 40.8501041220855, -73.94467100205455 40.85012523443521, -73.94465410955686 40.85014604840469, -73.94465310057176 40.85014722666443, -73.94464136902867 40.850160940028395, -73.94463656862733 40.850166550490286, -73.94461838994678 40.85018673079136, -73.94460587731214 40.85019993589928, -73.94460350582158 40.850202439028244, -73.9445995841985 40.85020657670593, -73.9445801620642 40.85022607743287, -73.94456824387042 40.850237469231644, -73.94456301586246 40.85024246624997, -73.94456013422626 40.850245221270626, -73.94453951255107 40.85026399921968, -73.94451830772262 40.85028239777745, -73.94449653279239 40.850300408845534, -73.94447419844235 40.850318021622826, -73.94445132009726 40.85033522621098, -73.94442790725331 40.85035201180837, -73.94440397651972 40.85036837031829, -73.94437556397484 40.85038793961699, -73.9443466916088 40.850407124176826, -73.94431737010078 40.850425916798606, -73.9442876136892 40.85044430848402, -73.94425743542665 40.8504622902341, -73.94424807659495 40.85046766344846, -73.94422684955008 40.850479854851486, -73.94419586911128 40.850496994237716, -73.94416450834821 40.85051370029497, -73.944136040553 40.850528296091404, -73.94413278149788 40.85052996582587, -73.94412629552428 40.850533164833394, -73.94410070279746 40.850545783633144, -73.94406828648344 40.850561147419874, -73.9440600935519 40.85056487958767, -73.9440355456086 40.85057604818725, -73.94400312179741 40.85058619540317, -73.94397041263899 40.8505957922709, -73.94395896135542 40.85059893122578, -73.94393743474036 40.8506048342958, -73.94390420352195 40.850613317883166, -73.94387073677744 40.85062123763853, -73.94383705111325 40.850628589967826, -73.94381916595752 40.85063216881827, -73.94380316194903 40.85063537217681, -73.9437690882638 40.85064157977216, -73.9437348442914 40.850647210059165, -73.94370927910924 40.85065096344391, -73.94370044900928 40.850652260345484, -73.94366591902322 40.85065672793757, -73.9436460216369 40.85065720808688, -73.94362611290494 40.85065708219628, -73.943613498914 40.85065661588016, -73.94360622484864 40.85065634848038, -73.9435863894862 40.85065500875586, -73.94356663883512 40.8506530657399, -73.94354700254175 40.850650521248006, -73.94352751499305 40.85064738070008, -73.94351436318213 40.8506448411778, -73.94350820701821 40.850643649514154, -73.94348910707618 40.850639331306276, -73.9434702483649 40.85063443509773, -73.94346368132514 40.85063250392663, -73.94345166052528 40.85062896900761, -73.94343337319896 40.850622940254446, -73.94341541602535 40.85061635875841, -73.94340626524335 40.850612655049396, -73.94339781745634 40.850609236239976, -73.94338060594525 40.850601582618616, -73.94336380994162 40.85059341231642, -73.94334745434031 40.85058473615168, -73.94333156758984 40.85057556944689, -73.94331617339694 40.85056592572128, -73.9433045605753 40.850556813341235, -73.94329349122357 40.85054731761764, -73.94328298548507 40.85053745837142, -73.94327306468888 40.850527255423984, -73.94326815033557 40.85052170057495, -73.9432637489782 40.85051672859619, -73.94325951035317 40.850511446928174, -73.94325505612434 40.85050589770784, -73.94325437740537 40.85050496176303), (-73.9443065133975 40.85030110519484, -73.94431998334316 40.85027488847491, -73.94433218654001 40.85027725995632, -73.94434389849518 40.850254459751625, -73.94446132285846 40.8502772717722, -73.9445005301209 40.85018139096374, -73.94435256832892 40.85015264622365, -73.94442907328488 40.84996555999601, -73.94456069612828 40.84998936389371, -73.9445980077274 40.849898125072585, -73.94447731967095 40.84986770606415, -73.94448622470169 40.84985037227914, -73.94446587449504 40.84984524318798, -73.94447986217395 40.84981801544425, -73.94381641312627 40.84968912740036, -73.94381047752583 40.8497006805221, -73.94365657089413 40.84967078026125, -73.94364502867147 40.84969324459797, -73.94356870616825 40.84967841670808, -73.94342436155291 40.850081994195904, -73.94349634960042 40.8500959789977, -73.94348067114892 40.850126494388945, -73.94372171178955 40.85017332254531, -73.94371509074278 40.850186209855686, -73.9443065133975 40.85030110519484)), ((-73.9485444774215 40.83676777091389, -73.94858052012121 40.836666335545644, -73.94837656979458 40.83737835407036, -73.9483689706231 40.837390930567075, -73.94834920741769 40.83741921433256, -73.94834466721868 40.83742571296385, -73.94834024334428 40.837432043254765, -73.94833566278703 40.83743859859873, -73.94833110240675 40.83744512603625, -73.9483249562197 40.83745392200747, -73.94831777498294 40.83746419972723, -73.94831510546149 40.8374680202266, -73.94825464410535 40.837554545876465, -73.94822831752043 40.8375897370648, -73.94819935005344 40.837628460598395, -73.94818942638446 40.83764172041397, -73.94817168695884 40.837665438653204, -73.9481317156481 40.83771887129179, -73.94811351838048 40.83774124037627, -73.9481106688622 40.83774474381596, -73.94810139991598 40.83775613809522, -73.9480901015309 40.83777002492754, -73.94806329870227 40.83780297093181, -73.94806317764818 40.83780311945875, -73.94801183247236 40.83786511152816, -73.94798947811128 40.837892102753884, -73.94798719591618 40.837894856334984, -73.94798239438886 40.83790036699212, -73.94797725345371 40.83790626831019, -73.94797272724583 40.83791146481878, -73.94796949457887 40.83791517609609, -73.94796652062139 40.83791858852613, -73.94796375671443 40.83792176151948, -73.9479611221621 40.837924785089214, -73.94795904537443 40.83792716956004, -73.94795726883008 40.83792921017765, -73.94795169947976 40.837935602070345, -73.94794497662006 40.83794331896886, -73.94794220087972 40.83794645953862, -73.9477916845926 40.83811288018191, -73.94777250034684 40.8381340898291, -73.94765542022564 40.838263158540585, -73.94760245989289 40.83832154231262, -73.94744377334408 40.8384959902827, -73.94743209492104 40.83850882870118, -73.94735344008338 40.83859618122894, -73.94727169242618 40.838686967671045, -73.94724658599505 40.83871484988026, -73.9470640045561 40.838922376822616, -73.94703364132103 40.83895829797915, -73.94688734094798 40.83913139110817, -73.94683686461518 40.8391910660717, -73.94681306771677 40.83922078849618, -73.9468106073172 40.839223862546945, -73.94666271236463 40.83940858632279, -73.94651431776883 40.8395943398364, -73.94649542952735 40.839617983437265, -73.94649228026198 40.83962246283175, -73.94647080046694 40.839652972389246, -73.94643469015148 40.83970426213969, -73.94625131370434 40.839964720197344, -73.94611695728526 40.840171718760786, -73.94609537408768 40.8402079535342, -73.94588980536827 40.840553058701175, -73.94588621841869 40.8405590813187, -73.9458822936218 40.8405664599205, -73.94584542423938 40.84063577339678, -73.94578577422071 40.84074791352157, -73.94570622703397 40.840913025671114, -73.94562289174796 40.84108599638103, -73.94549113046699 40.84138387227423, -73.94544053224205 40.84150615063416, -73.94539520183261 40.84161570029114, -73.94531612626089 40.841800383689055, -73.94528591726235 40.84187093380544, -73.945216876111 40.842016644943826, -73.94515131123028 40.84215376698659, -73.94509322960204 40.842263268125905, -73.94508525964683 40.84227829536188, -73.9450441248411 40.84235584694361, -73.9450269711571 40.8423881880816, -73.94497284660646 40.8424911885818, -73.94494527480825 40.84254218925518, -73.9449552794967 40.84245274175458, -73.94496425385317 40.84242622381562, -73.94497715670153 40.842388103996655, -73.94499184014077 40.842344718941774, -73.9450146646283 40.842277282894955, -73.94502664503014 40.84224188482027, -73.94504049872775 40.842200952305845, -73.94505638023968 40.8421540270735, -73.94507106476125 40.84211064200743, -73.94509084735493 40.84205219051475, -73.94512144296885 40.84196179106599, -73.94517316886059 40.84180895875892, -73.94538510104711 40.84152265835632, -73.94474720857035 40.84119944039472, -73.94573145017824 40.84022933078795, -73.94580781686057 40.84015391795544, -73.9459081888963 40.84004682346681, -73.94597366928011 40.83996838876354, -73.94603573003447 40.83988837115586, -73.94609431181581 40.8398068525663, -73.94614933629995 40.839723927515394, -73.94620040692976 40.83964026759126, -73.9462311387617 40.83958787680431, -73.94626015215708 40.83953440281497, -73.94628717283578 40.83948032455926, -73.94631217467371 40.83942569515548, -73.94633471692592 40.83937157608177, -73.94636150840455 40.83930749411818, -73.94638185620738 40.83925882560141, -73.94643059396743 40.83915450536207, -73.94646099530947 40.83909384872606, -73.94650097672513 40.83902022581636, -73.94654375182192 40.83894771989826, -73.9465893787724 40.83887623014032, -73.94663781959292 40.838805799745394, -73.94668901135982 40.83873652323262, -73.9467429386172 40.83866844561597, -73.94680812500188 40.83859146908558, -73.94687648868639 40.838516194112756, -73.94694799171346 40.8384426332815, -73.9470225901457 40.838370864908704, -73.94710018670285 40.83830095287894, -73.9471273106473 40.83827806576237, -73.94717377643005 40.83823884624115, -73.94724990789915 40.83817849578054, -73.94732850397986 40.83811997799876, -73.9474094614618 40.83806336488329, -73.94743912340451 40.8380438872184, -73.94749384563997 40.8380079455242, -73.94753643919479 40.837980021686455, -73.94757945147323 40.83795182157159, -73.94766391632353 40.837892968541304, -73.9477459815547 40.83783219450886, -73.94782559020058 40.83776956789113, -73.94790265686032 40.83770513097776, -73.94797849970529 40.837637737139275, -73.94804432721378 40.83757019195861, -73.94810591016217 40.83750233235864, -73.94816443399192 40.83743293420736, -73.94821985358418 40.837362086638024, -73.9482720965724 40.837289850856166, -73.94832111191268 40.83721631419104, -73.94836682602937 40.83714157026518, -73.94840922467053 40.8370656613993, -73.9484587875411 40.83696754053536, -73.94850388010829 40.836868213692426, -73.9485444774215 40.83676777091389)), ((-73.93175107989471 40.866964706824895, -73.93184734515593 40.86693443794575, -73.93184142059579 40.8669525198726, -73.93186830766068 40.86694581900187, -73.93189496749979 40.86693860291093, -73.93190235968211 40.86693642088579, -73.93192764378897 40.866928958141756, -73.93195990569488 40.866918539598736, -73.93199172116935 40.86690736707405, -73.93199435669074 40.866906388895025, -73.9320045831305 40.86690259305594, -73.93203165204524 40.866892019249974, -73.93205833956904 40.86688088781019, -73.93206160069037 40.86687943814159, -73.93211046244853 40.86685700149364, -73.93220659399384 40.866814466671336, -73.93228519534875 40.86677255362608, -73.9322895783075 40.86677021672693, -73.9322964607275 40.86676654676908, -73.93229997745243 40.86676452273153, -73.93230033470363 40.86676431672911, -73.93231128842137 40.8667580071234, -73.93232546688877 40.866749840798064, -73.93232648760488 40.86674925337719, -73.93234175206389 40.866740460946225, -73.93236011308484 40.8667298864592, -73.93240300806363 40.86670518145852, -73.93240478600772 40.86670415684274, -73.93248745939384 40.866648102959424, -73.93237679449548 40.86686392325953, -73.93220853200523 40.867117206893305, -73.93215429198592 40.86719885298877, -73.93211337546677 40.867260444897994, -73.93193149605311 40.867550556409164, -73.93190079802666 40.86759959514462, -73.93178478386055 40.86778492382498, -73.93170391762202 40.86792741261171, -73.93166555865355 40.86799500042412, -73.93154017871669 40.86821882460965, -73.93150291556489 40.86828862641688, -73.93145970385676 40.86836956913036, -73.93143232656334 40.86842085012347, -73.93141631971 40.86845083409913, -73.93141612478553 40.8684512076862, -73.93140071037811 40.868480668827566, -73.93138682800857 40.868507203387885, -73.9313680725311 40.86854305060689, -73.93133313475246 40.86860982899596, -73.93132941336032 40.86861694244541, -73.93113144356069 40.86855585685486, -73.93020126142152 40.867779414053985, -73.93061705600446 40.8674908590325, -73.93100271480762 40.867227952929454, -73.9312674293467 40.86704754571179, -73.93131419867585 40.86702433193338, -73.93134825282753 40.86701298532334, -73.93138140573899 40.867009419295, -73.93149290863246 40.86700714787846, -73.93162435103407 40.86699133941014, -73.93175107989471 40.866964706824895)), ((-73.94378773900931 40.84593626264037, -73.94379987833761 40.84593607044697, -73.94381199343691 40.845936485172494, -73.9438240321348 40.845937503189475, -73.94384241377 40.845939897544376, -73.94386063479213 40.845942919461464, -73.94387865726031 40.84594656351937, -73.9438964432365 40.845950820694874, -73.94391270048528 40.845955334665156, -73.9439139583387 40.84595568376733, -73.94392546594969 40.845959334555516, -73.94393116462975 40.845961142813024, -73.94393257650773 40.84596164777509, -73.94394293501644 40.845965359236516, -73.94394803010357 40.84596718520972, -73.94394977740222 40.84596788574143, -73.94396451800951 40.84597380013376, -73.94398059515719 40.84598097316126, -73.94398150548403 40.84598142204863, -73.94398688224497 40.84598390371542, -73.944006931307 40.845993158805534, -73.94401043046979 40.845994774186536, -73.944025653306 40.84600399271202, -73.9440419618519 40.84601380608717, -73.94405979360002 40.84602712221397, -73.94409844897743 40.84606075183521, -73.94413653014328 40.84609475757101, -73.94413792832906 40.84609603964892, -73.94417402998774 40.84612913311513, -73.94421094258671 40.846163872161725, -73.94424726083032 40.84619896840457, -73.94428297997936 40.846234416438925, -73.94428681045918 40.8462383210233, -73.94431809173813 40.84627020995787, -73.94435259136885 40.84630634175573, -73.9443864717614 40.8463428055262, -73.94441972699072 40.84637959586405, -73.9444436270322 40.84640678243757, -73.94445235113318 40.84641670556293, -73.944455607775 40.84642051531353, -73.94445509637639 40.8464223061467, -73.94445455405247 40.846424209526525, -73.94445400340591 40.84642613901665, -73.94445342897524 40.84642814953959, -73.94445274512717 40.84643054542062, -73.94445200300385 40.84643314478484, -73.94445070309924 40.84643769704853, -73.94444889536202 40.846444029341164, -73.94444621229916 40.84645342738884, -73.94444461744662 40.84645901327569, -73.94444366124753 40.84646236354739, -73.94442586214234 40.8465247131723, -73.9444114656094 40.846575141914236, -73.94439303254445 40.84663971004062, -73.94438510275134 40.84666261744539, -73.94437750884885 40.846682321059646, -73.9443763430231 40.84668534705238, -73.94436676167405 40.84670788175601, -73.94436116044358 40.84671990693109, -73.94435916229457 40.84672419681347, -73.94435636464766 40.846730203549065, -73.94435193776812 40.8467389325876, -73.94434933295165 40.84674406954045, -73.94434603327936 40.84675057670736, -73.94434516144342 40.8467522962271, -73.9443426899742 40.84675679299407, -73.94433979451712 40.8467620630793, -73.94433936459292 40.8467628453997, -73.94433886578452 40.846763754656315, -73.94433538482188 40.84677009064187, -73.94433315919134 40.846774140883, -73.94433190280988 40.84677626273717, -73.94432860867266 40.8467818198868, -73.94432525753382 40.846787474261966, -73.9443218185188 40.84679327717587, -73.94432099557798 40.84679466533787, -73.94432036976266 40.846795721313356, -73.94431793324223 40.846799545428766, -73.94431458005782 40.846804808088464, -73.94431336417047 40.846806718346286, -73.94431162702163 40.84680944419854, -73.94430680028532 40.846817021312425, -73.9442969624438 40.84683143074343, -73.94429246263284 40.84683802197543, -73.94427736986084 40.8468587089005, -73.94426826992722 40.84686847304537, -73.9442585738018 40.846877899216764, -73.94424830521776 40.84688696761517, -73.94423748435142 40.84689565753893, -73.94422613730694 40.84690395009016, -73.94422446791296 40.846905060490535, -73.94421428900172 40.846911827270816, -73.9442019643534 40.84691927108309, -73.94418919064984 40.84692626533102, -73.94417599873545 40.84693279472115, -73.94416241471156 40.84693884395753, -73.94414847060712 40.84694439954817, -73.94413419726298 40.846949450701956, -73.94411962433581 40.84695398482625, -73.94411728060298 40.84695461673698, -73.9441047874091 40.84695799203274, -73.94408971613568 40.846961464231335, -73.94407444609844 40.84696439243419, -73.94405901050472 40.846966772154914, -73.9440434437501 40.84696859620618, -73.94402778022706 40.84696986100262, -73.94401205432727 40.84697056385949, -73.94399630044107 40.846970703892886, -73.94399534942605 40.846970678217424, -73.94398055414528 40.846970279319144, -73.94396485101296 40.846969292856976, -73.9439492254328 40.846967745423676, -73.94393371060544 40.84696564063726, -73.94391834328748 40.84696298391873, -73.94390315549282 40.84695977978609, -73.94388638119274 40.84695219848695, -73.94386999981434 40.84694413381217, -73.94385593272358 40.84693661145732, -73.94385403625037 40.846935597480396, -73.94383851302045 40.8469266030102, -73.94382345383131 40.8469171621197, -73.94380888120106 40.84690729012835, -73.9437948152781 40.846896999653154, -73.94378127739293 40.846886307813904, -73.94376828650586 40.84687522992852, -73.94375586276382 40.846863780414814, -73.94374463057214 40.846852581817735, -73.94374402393808 40.846851978192014, -73.94373525562914 40.84684250523843, -73.9437327878023 40.84683983947783, -73.94372216975607 40.8468273831902, -73.94371415865942 40.84681714518588, -73.94369780152645 40.84667822454867, -73.94366795121819 40.84645920121885, -73.94365839867605 40.846401278681945, -73.94364819459685 40.846286600488455, -73.9436524811723 40.846198596554736, -73.94366336109216 40.84613553677975, -73.94367851810114 40.8460642224759, -73.94371174252092 40.84595181490766, -73.9437153962387 40.84595014447593, -73.94372183829677 40.845947890084354, -73.94372856922799 40.845946185133776, -73.94374002329262 40.84594302999209, -73.94375171996116 40.84594045038227, -73.943763607049 40.845938457084735, -73.9437646186467 40.8459383396134, -73.94377563118726 40.84593705907832, -73.94378773900931 40.84593626264037)), ((-73.94435416470104 40.843718197905304, -73.94436138792408 40.843710298664526, -73.94437038427648 40.84371893602841, -73.94437470632604 40.84372330280152, -73.94438539060324 40.84373410036001, -73.94438697938342 40.84373570580426, -73.9444030418118 40.84375280400082, -73.94441855853069 40.843770215303614, -73.94443351532033 40.843787927999685, -73.94444790270788 40.84380592587573, -73.9444521217757 40.84381150916207, -73.94446170766078 40.84382419541832, -73.94447394619353 40.84384674874996, -73.9444854458131 40.8438695214449, -73.94449619822961 40.8438924999919, -73.94450619871212 40.84391566908052, -73.9445132155817 40.84393339685597, -73.94451543897075 40.843939015199574, -73.9445239142737 40.84396252393908, -73.94453161989057 40.84398617908809, -73.94453854990232 40.844009968036985, -73.94454222812804 40.84402426242704, -73.94454470076418 40.84403387457534, -73.94455006774508 40.84405788339262, -73.94455464729812 40.84408198097985, -73.94455758192888 40.844100685625435, -73.94455843943514 40.844106152028765, -73.94456143824007 40.844130380327684, -73.9445636437231 40.844154652369284, -73.94456712568754 40.84417253782901, -73.94456821313572 40.84417812590919, -73.94457203781478 40.84420167833436, -73.94457511539994 40.84422529523577, -73.9445774447152 40.8442489640061, -73.94457879973719 40.8442692833756, -73.9445790257709 40.84427267113793, -73.94457985502181 40.84429640132124, -73.94457993366332 40.84432014194977, -73.94457928619202 40.84434295472179, -73.94457926051938 40.84434388041602, -73.9445778367884 40.84436760051165, -73.9445756624794 40.844391290530254, -73.9445727411609 40.84441493606567, -73.94456907165767 40.844438523609796, -73.94456640722747 40.84445271589572, -73.9445646575382 40.84446203875649, -73.94455949999721 40.8444854697998, -73.9445536328093 40.844510974336366, -73.94454697360477 40.844536365930175, -73.94453952476705 40.844561629273876, -73.94453129342352 40.844586748161895, -73.94452228195549 40.84461170998828, -73.94451299895546 40.844635225491984, -73.94451249630535 40.84463649764635, -73.94450194359676 40.84466109943294, -73.94449062858642 40.84468549824081, -73.94447855721235 40.84470968236616, -73.94446573897372 40.84473363560439, -73.94445808775097 40.844747012341266, -73.94445217862419 40.844757344450294, -73.94443788566011 40.844780796301166, -73.9444297385607 40.84479441773118, -73.94442092168771 40.844807796605366, -73.9444114481004 40.84482091401946, -73.944401330858 40.844833751069345, -73.94440105429885 40.844834073312384, -73.94439058420554 40.844846288851286, -73.94437922357176 40.84485851116373, -73.94436726675833 40.844870400005185, -73.94435472800909 40.84488193827303, -73.94434162631009 40.84489310976732, -73.94432797946101 40.844903899188175, -73.94431380763386 40.84491429033615, -73.94429913099849 40.844924269713495, -73.94429687917179 40.84492568870302, -73.94428396972633 40.844933822021375, -73.9442729003337 40.844942311021306, -73.94426132019875 40.84495039635265, -73.94424925542485 40.84495805911763, -73.94423673211305 40.84496528311968, -73.94422377636464 40.84497205216246, -73.94421042020824 40.84497835185351, -73.9441966897444 40.84498416689685, -73.9441826169988 40.84498948650197, -73.94416823281374 40.8449942971763, -73.94415977719629 40.8449967721396, -73.94415356921432 40.844998589029785, -73.94413865703973 40.845002352171875, -73.9441235318711 40.84500557851521, -73.94410822454466 40.84500826177127, -73.94409276945491 40.84501039475268, -73.94407720099332 40.84501197387405, -73.94407421591889 40.84501247940419, -73.94407323631148 40.84501264552036, -73.94407297184112 40.84501269041677, -73.94407271804448 40.845012733517386, -73.94407248678094 40.84501277302694, -73.94407223179851 40.84501281612693, -73.94407195784026 40.84501286281975, -73.94407170285783 40.84501290591973, -73.94407142178407 40.84501295350957, -73.94407120000847 40.845012991222745, -73.94407098416254 40.84501302803829, -73.94407076357275 40.845013065752, -73.94407057263233 40.84501309807715, -73.94407034255538 40.84501313668679, -73.9440701919381 40.84501316182759, -73.94407004962216 40.84501318607188, -73.94405789822106 40.845015245008994, -73.94405750092265 40.84501531235329, -73.94403764363231 40.84501806453215, -73.94401766351696 40.845020223223344, -73.94401170094129 40.845020687685114, -73.94399759378089 40.84502178664195, -73.94397746644424 40.84502275120146, -73.94396241252818 40.84502302304194, -73.94397737155381 40.84494534210623, -73.94408141193578 40.8439693016986, -73.9440888877517 40.84396285779399, -73.94412744632449 40.84392962307912, -73.94414615746247 40.843914593010496, -73.9441548871076 40.843907582398245, -73.94418178629336 40.84388515963971, -73.94420813438737 40.843862364704755, -73.94423392308398 40.843839203893175, -73.94425914289047 40.84381568530519, -73.944267169987 40.84380790982641, -73.94428378549972 40.84379181704159, -73.94430784141905 40.84376760720259, -73.9443313035265 40.84374306479001, -73.94435416470104 40.843718197905304)), ((-73.94501049699798 40.84489629143355, -73.94502474901435 40.84488199750305, -73.94502581266903 40.84489921903142, -73.94502758310203 40.84492786634729, -73.94504524557694 40.845160323427756, -73.94505318336775 40.845368419341135, -73.94505840523024 40.84550531200691, -73.94505909175382 40.84551973912513, -73.94507030703085 40.84575533312443, -73.945072937539 40.845852524533576, -73.94508114540129 40.84599367523658, -73.94509812127893 40.84628561937012, -73.94509835395846 40.84628961586632, -73.94509965414414 40.84631196490629, -73.94510087716138 40.846332987484104, -73.94510206042403 40.846353328370164, -73.9451032355012 40.84637353057636, -73.94510493088167 40.846402684825236, -73.94510563592921 40.84641480578869, -73.9451062100109 40.846424689866595, -73.94510671745807 40.8464334140786, -73.94510880219333 40.846469266374875, -73.94511110674244 40.84650890354508, -73.94511144349421 40.84651467856308, -73.94511288048335 40.84653938695723, -73.9451208675002 40.84667677257691, -73.94512696508157 40.84678163331112, -73.94514017829911 40.84701944071206, -73.94514860750427 40.84727360416971, -73.94514944883315 40.847275788263545, -73.94514952048087 40.84727806114012, -73.94514881901378 40.847280272415624, -73.94514739080421 40.847282270829375, -73.94514533201402 40.84728392405465, -73.94514278147817 40.847285120496515, -73.94513991121043 40.847285778291884, -73.94513691335139 40.84728585520896, -73.94513398949923 40.84728534413969, -73.94513133647384 40.8472842802969, -73.94512913446376 40.847282734905235, -73.94512752923997 40.847280813391656, -73.94509985130787 40.84721245465893, -73.9450573357089 40.847107451422694, -73.94500946387642 40.84700957841526, -73.94498408611013 40.84695769255368, -73.94496769956463 40.84692417741758, -73.94495095535581 40.84689156260053, -73.94495059781136 40.846890866349334, -73.94493278795808 40.84685776925753, -73.94492374981182 40.84684171996994, -73.94491427355634 40.84682489424796, -73.94491362937185 40.84682379984214, -73.94490261547877 40.84680508775386, -73.94489505934294 40.846792250327454, -73.94487515124032 40.84675984650341, -73.9448545539859 40.846727690882204, -73.94483327350133 40.84669579337168, -73.94481531309363 40.846669921739405, -73.9448151034528 40.84666961997418, -73.94481415118693 40.8466682480687, -73.94481297033025 40.84666654647368, -73.9448116722166 40.846664676430485, -73.94481131452473 40.846664161177685, -73.9448103243126 40.84666278925407, -73.94480894796456 40.84666088315366, -73.94480756332699 40.84665896354191, -73.94480618224254 40.84665704933481, -73.94480481181711 40.846655151341665, -73.944803385723 40.84665317497901, -73.94478868535003 40.84663280330874, -73.9447653895287 40.84660172787058, -73.94476349423111 40.84659929293213, -73.9447414341688 40.846570943871136, -73.94472058512632 40.84654511766533, -73.94471682519334 40.84654045941726, -73.94470791191048 40.8465298077231, -73.94470589090267 40.8465273934347, -73.94471058605244 40.84651112829002, -73.94473205433154 40.84643674529809, -73.94473880329564 40.84641336184295, -73.94474860742056 40.84637939366181, -73.94476656021598 40.84631719444153, -73.94478213277809 40.84624531108325, -73.94478444449453 40.84623464045386, -73.9448036250492 40.84614610150915, -73.94480469876706 40.8461411466129, -73.94482540175402 40.84604558004789, -73.94483667218816 40.84599355858475, -73.94484902646484 40.84591432925764, -73.9448559528619 40.84586990497066, -73.94487293520423 40.84574930742446, -73.94489129281004 40.84561894558924, -73.94490773855033 40.84544309985624, -73.94490850471728 40.84543577471512, -73.9449283868555 40.84524555965346, -73.94493755932648 40.84515780562507, -73.94493768602366 40.84515659452299, -73.94493803199688 40.84515120253839, -73.94494780468749 40.84499869076723, -73.9449497351839 40.8449685756128, -73.9449509220684 40.844950064752, -73.94495376041941 40.84494773383055, -73.94497322372123 40.84493094352617, -73.94498668547295 40.84491873746589, -73.94499213947411 40.844913792760295, -73.94501049699798 40.84489629143355)), ((-73.94454734356377 40.84346097420169, -73.94457673369823 40.843405861953876, -73.94462301311032 40.84342427854941, -73.94488621136661 40.843070233542754, -73.94492025759723 40.84276585166822, -73.94493716007636 40.84273491159529, -73.94494898430749 40.84271500283675, -73.9449707103411 40.84267841356663, -73.94505632837956 40.84254989189566, -73.94505801732595 40.84254792962536, -73.94506027631921 40.84254633052524, -73.94506068198838 40.84254615872431, -73.9450629748515 40.84254518548295, -73.94506534794483 40.84254469764546, -73.9450659527831 40.842544570963966, -73.94506904052936 40.84254451390246, -73.94507205548082 40.84254501871383, -73.94507482454073 40.84254605740037, -73.94507718412528 40.842547569551186, -73.94507684252736 40.84255200071465, -73.94507674656911 40.84255333069714, -73.94506797693572 40.84266797548944, -73.94503423016174 40.84282751146142, -73.94501282660632 40.84292869595785, -73.9449780641043 40.84311314896203, -73.94497336684167 40.84313807146498, -73.94493892708151 40.84335208688598, -73.94493201439967 40.84340038062151, -73.94490504579284 40.843588774264305, -73.94490348743513 40.84360483020802, -73.94490314299162 40.84360838158729, -73.94490237397163 40.84361631276101, -73.94487954743923 40.84385152769243, -73.94486997474294 40.84395016850255, -73.94486534744722 40.84399785458831, -73.94486149486826 40.844070797164875, -73.94485652432728 40.84416490979089, -73.94485623399838 40.844170405359456, -73.94485455225094 40.84420224778051, -73.94484702288617 40.84439061375557, -73.94483953866707 40.84451161388623, -73.9448310881003 40.84464822359253, -73.94482660849378 40.84475936836122, -73.94482318338738 40.8448443651262, -73.94482272331355 40.84485578495403, -73.94482009122135 40.8449210973276, -73.9448186875306 40.8449393307317, -73.94481731618723 40.844957164332506, -73.94481493376195 40.84495878948245, -73.94479627657094 40.84497151262059, -73.94477449486118 40.84498559130224, -73.94475222614957 40.844999224903106, -73.94474810352399 40.84500161373643, -73.94472948467349 40.84501240442488, -73.9447062882281 40.84502511997031, -73.94468535227182 40.84503596537137, -73.9446826522358 40.84503736344214, -73.94465859449127 40.84504912584365, -73.94463413160344 40.84506039817775, -73.94460928136569 40.84507117324866, -73.94458406157273 40.84508144205983, -73.94455849001724 40.84509119831609, -73.94448401233753 40.84511830784568, -73.94439475023374 40.845148045042485, -73.94418039975895 40.84521535149155, -73.94412752878408 40.84523053791619, -73.9440749857248 40.845246351218435, -73.9440227824408 40.84526278780243, -73.94397913762319 40.84527714477971, -73.94397093316435 40.84527984317319, -73.9439194509411 40.84529751373545, -73.9439011912057 40.845304045134334, -73.94390393795422 40.84529228333536, -73.94390741822302 40.845290945995295, -73.94397375411235 40.84526725835828, -73.94403841628692 40.84524416869865, -73.9441000845594 40.84522214733708, -73.94421105136463 40.845170270550675, -73.9444005552253 40.8450779210773, -73.94441959875613 40.84506843816199, -73.94442838945812 40.84506371751253, -73.94442900397618 40.84506338822826, -73.9444295698555 40.84506308413438, -73.94443016776563 40.845062762946554, -73.94443127698356 40.84506216735481, -73.94443254398317 40.84506148719272, -73.94443361286598 40.84506091319335, -73.9444349913808 40.84506017275194, -73.9444362144863 40.84505951598148, -73.94443666410486 40.84505927486605, -73.944436895439 40.84505915070948, -73.94443726438723 40.845058952778814, -73.94443746250403 40.845058846616126, -73.94443819446927 40.84505845345342, -73.94443872596271 40.84505814664144, -73.94443949947592 40.845057699469194, -73.94444264691519 40.845055880189065, -73.94444557013048 40.845054190471814, -73.94445445603836 40.845049055639585, -73.94445631982471 40.845047978647365, -73.94446231357887 40.845044256195315, -73.94447395109493 40.84503702724, -73.9444910669243 40.84502561272866, -73.94450764714362 40.84501374771079, -73.94452367039432 40.8450014492857, -73.94453911769304 40.84498873005136, -73.94455397005298 40.84497560710828, -73.94456820848788 40.844962096656396, -73.94458181638326 40.8449482148968, -73.94459477475235 40.84493397892999, -73.94460707053665 40.844919406759765, -73.94461806035152 40.8449053202272, -73.944618687121 40.844904515487684, -73.94462961381704 40.844889324919706, -73.9446398268958 40.84487385125347, -73.9446493239688 40.84485811519933, -73.94465809079043 40.84484213656151, -73.9446723841653 40.84481526191123, -73.94468601839154 40.84478819063554, -73.94469898634468 40.844760935338186, -73.94471128446129 40.84473350412212, -73.94472290917496 40.84470590869225, -73.94473385454926 40.84467815895137, -73.94474374384008 40.84465127767887, -73.94474411702019 40.84465026390285, -73.94475369302138 40.8446222352516, -73.94476257780235 40.844594082900926, -73.94477077016906 40.84456581765634, -73.94477801794535 40.844538391218016, -73.9447782665568 40.84453744942166, -73.94478412443662 40.84451020061496, -73.94478926497962 40.844482868619195, -73.94479368343458 40.84445546423807, -73.9447973809776 40.84442800007909, -73.94479827002816 40.84441977450353, -73.94480035404482 40.84440048514559, -73.94480260262661 40.84437293204456, -73.94480412552996 40.84434535068079, -73.94480492156016 40.84431775276022, -73.94480492702353 40.84431545560583, -73.94480499070924 40.844290149088714, -73.9448043341556 40.84426254957233, -73.94480294951742 40.84423496771723, -73.94480141816473 40.84420842766186, -73.9448014064205 40.84420829078139, -73.94479912315312 40.844181907952326, -73.9447960656587 40.844155421195886, -73.94479224685553 40.84412898270151, -73.94479079528887 40.84412061642888, -73.94478767147719 40.84410260507825, -73.9447823383275 40.8440763018328, -73.94477625213855 40.84405008737532, -73.94476941645802 40.844023974314155, -73.94476183364564 40.84399797795883, -73.94475350843494 40.8439721109182, -73.94474755567015 40.843956599780014, -73.94474205134807 40.84394225589496, -73.94472993014027 40.843912516715775, -73.94472675481475 40.84390515906855, -73.9447171483607 40.84388290418812, -73.94470371311584 40.843853429120976, -73.94469951798754 40.84384469503099, -73.94468962676835 40.84382410322172, -73.94467489761033 40.84379493729998, -73.9446595280051 40.84376594216261, -73.94465068944318 40.84375002711401, -73.94464352624408 40.843737129519695, -73.94462689706282 40.84370850927869, -73.94460964756757 40.84368009224864, -73.94459178367808 40.84365189013856, -73.94457141470257 40.843624590016134, -73.9445708177132 40.84362382250935, -73.94455037793577 40.843597552512875, -73.94452868641187 40.84357078934111, -73.94451093281926 40.84354974708974, -73.94450634723485 40.84354431401125, -73.94449951183853 40.84353652596173, -73.94451411268791 40.84351464650701, -73.94453107605241 40.8434879343407, -73.94454734356377 40.84346097420169)), ((-73.94373479603432 40.84707603059287, -73.94372991141468 40.8469612856767, -73.9437341659469 40.846964361132315, -73.94374709731926 40.84697291221087, -73.94376051526176 40.846981018681944, -73.94377439488554 40.846988664324414, -73.94378234014985 40.84699264567146, -73.9437887065568 40.84699583471578, -73.9438034230143 40.847002514534275, -73.94381851462188 40.84700869205883, -73.94382725031282 40.84701189486187, -73.9438339529315 40.84701435286764, -73.94384970711889 40.8470194879406, -73.94386574398959 40.847024086455576, -73.94388203509084 40.84702813939359, -73.94389854604083 40.84703163773297, -73.94391524482627 40.84703457605511, -73.94393209824871 40.8470369480403, -73.94394907429489 40.84703874826995, -73.94396613739168 40.847039974025336, -73.94398325552271 40.8470406234898, -73.94399894103266 40.84704284271485, -73.9439995931842 40.847042909667906, -73.94401475630717 40.84704445867093, -73.94403066221706 40.847045466836455, -73.94403083890228 40.847045471424664, -73.9440466160751 40.847045863588804, -73.94406257874749 40.84704564980936, -73.94407850872983 40.84704482547809, -73.94409436451667 40.84704339147538, -73.94411010697135 40.847041352284705, -73.94412569695653 40.84703871329017, -73.9441410917758 40.84703548167508, -73.94415625347679 40.84703166372454, -73.94417114410196 40.84702727202723, -73.94418572451109 40.8470223155692, -73.94419995911741 40.84701680784074, -73.94421380877704 40.847010762330434, -73.9442159416374 40.84700847250942, -73.9442186836706 40.84700659360745, -73.94422190079993 40.8470052183103, -73.94422543762718 40.84700441137833, -73.94422912217212 40.84700421415098, -73.94423277299511 40.84700463554544, -73.944236213424 40.84700565566547, -73.94423927511387 40.84700722310163, -73.94424180989839 40.84700926304151, -73.94424369334911 40.847011675470355, -73.94424483306992 40.847014342378976, -73.9442451758064 40.84701713497136, -73.94424470269975 40.847019916363486, -73.94424343757971 40.84702255149305, -73.94424323799393 40.84702298813532, -73.9442416044787 40.847026562300286, -73.94423988067703 40.847030330927915, -73.94423928429488 40.84703163635351, -73.94423870929849 40.847032893162826, -73.94423791689474 40.84703462712804, -73.94423732526418 40.84703592265046, -73.94423705083426 40.8470365222457, -73.94423495043257 40.84704111464167, -73.94423138996355 40.84704890217897, -73.94423103593707 40.847049675530734, -73.9442290163176 40.84705409327014, -73.94419158916129 40.84713595603458, -73.94418456680775 40.84715131503572, -73.94418024837289 40.847160760911365, -73.94417275199551 40.84717715704948, -73.94414508902453 40.847237661243156, -73.94408753417169 40.84736499088471, -73.9440521226953 40.84744250339804, -73.94402942661223 40.84749218335183, -73.9440190398779 40.84751467711059, -73.94399150661518 40.84757431235198, -73.94397076397311 40.84761923684159, -73.94395587848278 40.84765114035382, -73.94391154981064 40.84774614955386, -73.9438517829384 40.847872918785775, -73.94384462630774 40.84788841997674, -73.94382486833274 40.847931217954546, -73.94380036655784 40.8479842882334, -73.94379681793122 40.84799197490673, -73.94378513371446 40.84801728204845, -73.94375750498779 40.848077127897646, -73.94375184997895 40.84808937723675, -73.94374944303485 40.84809459171371, -73.94369639633523 40.84820948844409, -73.94369310667463 40.8482166151342, -73.94368048593653 40.848244272091755, -73.94361714447851 40.84838307452353, -73.94360329996387 40.8484134215441, -73.94357724895654 40.84846666570941, -73.94355285149645 40.848516523926676, -73.94356681413356 40.84843366027084, -73.94358789018402 40.84828147300302, -73.94361803484264 40.848111913363034, -73.94363541483489 40.84804456054006, -73.94364967507639 40.84797690812689, -73.94366083221124 40.84790891741154, -73.94366887550828 40.847840668533564, -73.94367379066982 40.84777225243629, -73.9436755693329 40.84770375376225, -73.94368318771501 40.84762190363869, -73.94371251736945 40.847353998995246, -73.94372321154933 40.84726815307964, -73.94373479603432 40.84707603059287)), ((-73.9461488624004 40.83858238335207, -73.94670462641453 40.83832261585383, -73.94659344535226 40.83845864972724, -73.94653374647626 40.838529356743926, -73.94647676976042 40.838601585925915, -73.94642270275779 40.8386750762211, -73.94637161191397 40.838749777236835, -73.94632322854258 40.83882512244147, -73.94628523680392 40.83888384575155, -73.9462496760085 40.838943603948046, -73.94624534666676 40.838951429020454, -73.94621673600678 40.839004229629914, -73.94618633993431 40.839065476028324, -73.94618080453509 40.83907793897767, -73.94615901281138 40.83912764865753, -73.94614069492306 40.83917029558334, -73.94610550843699 40.83925650590446, -73.94610251270092 40.83926319156946, -73.94606087609266 40.83935505486106, -73.9460157530203 40.83944594937448, -73.94597298409714 40.83952581032464, -73.94594564978422 40.839453343812295, -73.94592748302541 40.83941188918375, -73.94590838101817 40.839374510647446, -73.94589280158628 40.839344601552895, -73.9458765263101 40.83931742962987, -73.94585757718025 40.839284585141115, -73.94584677978862 40.83925747431692, -73.94583487906138 40.83922096722401, -73.94583337430456 40.83921382380271, -73.9458302077049 40.83919878767569, -73.94582662297249 40.839173048986545, -73.94582519826879 40.839150596312194, -73.94582628990818 40.839126313215765, -73.94582812794297 40.83909838527197, -73.94583283890299 40.839070458677234, -73.94584007091827 40.839048010968234, -73.94585199879307 40.83901762401074, -73.94586464510377 40.83899025044046, -73.94589038508327 40.83894960793597, -73.9459007726459 40.83893387938508, -73.9461488624004 40.83858238335207)), ((-73.94414634326584 40.845376729393415, -73.94416444500452 40.84537618345354, -73.94418256642632 40.84537620393016, -73.94420067551644 40.84537678900677, -73.94421874144459 40.84537793866857, -73.94423673338103 40.845379652000126, -73.94425462049921 40.845381924484045, -73.94427237434323 40.84538475250482, -73.9442899617141 40.84538813244438, -73.94430457753326 40.845391429902165, -73.94430735534489 40.845392057085675, -73.94432452440948 40.84539652101107, -73.94434144045587 40.845401516102406, -73.9443580738469 40.84540703334061, -73.94437439613029 40.845413064607676, -73.94439024361661 40.84541966835678, -73.94439853512343 40.84542348413881, -73.94440570410674 40.84542678339696, -73.94442074796638 40.8454343971072, -73.94443534793504 40.84544249416619, -73.94444947793643 40.845451061054064, -73.94446310952569 40.845460080648024, -73.94447622018619 40.845469536728494, -73.94447738625294 40.84547045309072, -73.9444887838452 40.84547941127329, -73.94450077798606 40.84548968806282, -73.9445121800964 40.8455003454747, -73.94452296884668 40.84551136548892, -73.94453312646695 40.8455227273858, -73.94454263163061 40.845534409543404, -73.94454918173197 40.845543291548864, -73.9445514677534 40.845546391242664, -73.94455961825264 40.84555864996338, -73.9445682785619 40.84557528532228, -73.94457619519945 40.84559213103841, -73.94458336106342 40.845609170899685, -73.94458976549912 40.84562638328922, -73.94459540377768 40.845643750195116, -73.94459725047723 40.845650392214544, -73.94459880279086 40.84565597781483, -73.94459910297573 40.84565719092246, -73.9445904824686 40.84566392966997, -73.9445815551641 40.84567027385375, -73.94457853312134 40.845672421877524, -73.9445660671273 40.8456804716937, -73.94455311296164 40.84568806022165, -73.94453674785406 40.845699157228054, -73.9445198886247 40.845709815454605, -73.94451760244773 40.84571116239233, -73.94450255544369 40.84572002140341, -73.94448476966619 40.84572976247764, -73.94446655383337 40.84573902608102, -73.94444793048471 40.8457478014183, -73.94442892216071 40.845756076793755, -73.9444095525861 40.84576384231323, -73.94439431973544 40.84576944323862, -73.94438984548563 40.84577108808252, -73.9443698269543 40.84577780600964, -73.94435468834685 40.8457813070267, -73.94433934742928 40.845784252340245, -73.94432383978301 40.84578663386301, -73.94430819980138 40.84578844620844, -73.944292465433 40.845789686693486, -73.94427667225635 40.845790350832765, -73.94426085821846 40.84579043774406, -73.94424505889475 40.84578994654412, -73.94422931104434 40.845788879051696, -73.94422782891205 40.84578872345041, -73.94421391820914 40.84578726603035, -73.94421365142534 40.845787237986045, -73.94419811679532 40.845785026967, -73.94418274272518 40.84578225051423, -73.94416756596925 40.845778915849536, -73.94415046061508 40.84577473198517, -73.94413359286428 40.845770025047194, -73.94411699235567 40.84576480315446, -73.94410068516906 40.84575907622517, -73.94408469975734 40.845752852377665, -73.94406906101372 40.8457461424301, -73.94406459820728 40.84574404211852, -73.94405379501707 40.84573895720109, -73.9440389278448 40.8457313093104, -73.94403701129599 40.84573023409305, -73.94402448320425 40.845723209575574, -73.94401048598375 40.84571467421773, -73.94399695751896 40.845705714053246, -73.94398361038004 40.845692655833716, -73.94397092643068 40.845679220628355, -73.9439589246262 40.84566542915791, -73.94394762273753 40.84565130034159, -73.94393703734742 40.845636855799505, -73.94393279631886 40.84563051066873, -73.94392718385521 40.84562211444965, -73.94391807528461 40.845607099711295, -73.9439097270325 40.84559183320402, -73.94390214856745 40.84557633564388, -73.94389535291305 40.84556063045014, -73.94388934953636 40.845544740139914, -73.94387980217235 40.845494662705995, -73.94387837484875 40.84548717801788, -73.9438779674175 40.84547816929201, -73.94387794296311 40.84547763888998, -73.94387613045815 40.84543758589956, -73.94389509044753 40.8454303542621, -73.94391725731306 40.845422568576815, -73.94393974506687 40.84541532784125, -73.94396252761341 40.84540864194789, -73.94398558360497 40.84540251538874, -73.94400888813334 40.84539695625595, -73.94403241747916 40.84539196904025, -73.94404311153713 40.84538998233886, -73.94405614673597 40.84538756003301, -73.94408005218516 40.845383732824494, -73.94410410773591 40.845380491904415, -73.94412828966978 40.845377840863144, -73.94414634326584 40.845376729393415)), ((-73.94399522756095 40.84585062317121, -73.9439788839222 40.84583606957953, -73.94397168466445 40.845829266464015, -73.94396856609247 40.8458263194382, -73.94396310740692 40.84582116146694, -73.94395601158563 40.84581404052678, -73.94395417987089 40.845812202632125, -73.94394790867796 40.84580590964476, -73.94393330195287 40.84579032852802, -73.94391930026384 40.845774431630616, -73.94390644744261 40.84575735204301, -73.94390563021841 40.845756184607325, -73.9438942885745 40.84573997833041, -73.94388283550053 40.84572233030958, -73.94387210125045 40.84570442419601, -73.94386209410933 40.845686278003676, -73.9438528247329 40.84566791064842, -73.94384430496281 40.845649341046425, -73.94383919506649 40.845636997308404, -73.94383654071233 40.845630587210614, -73.94382954026554 40.84561166805557, -73.94382331190658 40.84559260249569, -73.94382318448815 40.84559183431353, -73.9438213770723 40.845580893349265, -73.94383785348573 40.84552514827631, -73.94383825764353 40.84552679187202, -73.94384033695935 40.845541533047054, -73.94384321557519 40.845556196268284, -73.94384688758299 40.845570757219534, -73.94385134707564 40.84558519068396, -73.94385658577413 40.84559947144371, -73.94386259539816 40.84561357608184, -73.9438693664829 40.8456274793798, -73.94387688600466 40.84564115791836, -73.9438851409405 40.84565458737772, -73.94389411707999 40.84566774523849, -73.94390177948776 40.8456779245308, -73.94390380021358 40.8456806080808, -73.94391417257185 40.84569315518447, -73.94392521638763 40.84570536312794, -73.94393691389001 40.84571721299199, -73.94394893509897 40.84572768345756, -73.9439614973553 40.84573778048031, -73.94397458051401 40.845747487841415, -73.94398816324338 40.84575679022197, -73.9440022242109 40.84576567320352, -73.94401674089909 40.84577412146664, -73.94403168960146 40.84578212329326, -73.94404704661376 40.8457896642638, -73.9440627870437 40.84579673265967, -73.94407888599889 40.84580331676218, -73.94409531858459 40.845809407554235, -73.94410960833766 40.84581417718372, -73.94411205635019 40.845814994216035, -73.94412907440167 40.84582006682991, -73.94414634547041 40.84582461907907, -73.9441638411026 40.84582864374574, -73.9441815328452 40.84583213271162, -73.94419939461386 40.84583508146154, -73.94421739558149 40.84583748457753, -73.94423526294868 40.84583941666856, -73.94424768947485 40.8458403402771, -73.94425322568208 40.84584075177634, -73.94425812884302 40.845840952254164, -73.9442712493942 40.845841488083266, -73.94428930088262 40.84584162467283, -73.9443073445741 40.84584115972676, -73.94432534607732 40.84584009593, -73.94434327337191 40.84583843686908, -73.94434332792824 40.84583842608949, -73.94436108495782 40.84583617802156, -73.94436527262046 40.84583550377149, -73.94437875473686 40.84583333108127, -73.94439624475976 40.84582989963202, -73.94441352300316 40.84582589086238, -73.94443055625862 40.84582131105982, -73.94444731012985 40.845816169212924, -73.94446375614793 40.84581047611394, -73.94447985991654 40.845804240751356, -73.9444955905923 40.84579747751842, -73.94449666892102 40.84579696565706, -73.94450416739933 40.84579340421494, -73.94451092089164 40.8457901981085, -73.94453329661344 40.84577801890279, -73.94455520671535 40.845765345999, -73.94457663339941 40.845752191995736, -73.9445917001674 40.84574238026347, -73.94459755531196 40.84573856768897, -73.94461157014754 40.84572889232373, -73.94461188875218 40.845732194582766, -73.94461282014889 40.8457500644036, -73.94461286608517 40.84575613374524, -73.94461289066409 40.84575937012716, -73.94461295585604 40.845767948250185, -73.94461229826263 40.84578582451189, -73.94461084738371 40.84580367427834, -73.94460860679483 40.84582147503887, -73.94460557532462 40.84583920878311, -73.94459833221156 40.845867899498266, -73.94459117950801 40.845896237263204, -73.94456765263931 40.845993429621714, -73.944547286107 40.84607757175527, -73.9445223502464 40.84618058690895, -73.9445125857827 40.846220925174755, -73.9445073112676 40.84623940074248, -73.94450577945624 40.846244767841014, -73.94450348173982 40.84625281713805, -73.94450194992933 40.84625818243557, -73.94449869958572 40.846269570300144, -73.94449657907222 40.84627699924295, -73.9444953552878 40.84628128589864, -73.94449432298128 40.84628489997855, -73.94449338343749 40.846288191726806, -73.94449238799707 40.84629167885501, -73.94449130335936 40.84629547841117, -73.94448285222455 40.84628671525417, -73.94447976934387 40.84628357555423, -73.94443125606297 40.8462341790941, -73.9444068805943 40.846209808127924, -73.94437905729892 40.846181988408944, -73.94433416476147 40.846137904757356, -73.9443315024192 40.84613529114393, -73.9443262618597 40.84613014590229, -73.94427287211307 40.84607865697741, -73.94427240173533 40.84607819029509, -73.94422586639254 40.846031985147015, -73.94422003940758 40.84602620026724, -73.94419620225062 40.84600348282014, -73.94418581480882 40.845993245498434, -73.94408066615959 40.84591585757677, -73.94406596880873 40.845905040939044, -73.94405587285873 40.84589792485379, -73.9440475071694 40.84589202977432, -73.94404696085336 40.8458916215862, -73.94404180936743 40.84588777128285, -73.94403407917478 40.84588199627617, -73.94402955458975 40.845878615432994, -73.94402894311797 40.845878131571816, -73.9440121217331 40.84586480872634, -73.94399522756095 40.84585062317121)), ((-73.94535204224378 40.842626093418076, -73.94535512805257 40.84262551226103, -73.94535830702472 40.84262555338869, -73.94536136809843 40.84262621399963, -73.9453641038032 40.84262744987138, -73.94536633278759 40.84262917717225, -73.94536790218403 40.84263128056673, -73.94536870894814 40.84263361862865, -73.9453686986645 40.84263603374601, -73.94536787027893 40.842638365630506, -73.94533097809594 40.842857461506455, -73.94532623801972 40.84288560596832, -73.94532485579067 40.84289381780893, -73.94532410629044 40.84289826859037, -73.94532340628032 40.84290309850277, -73.94532163299463 40.842915340764435, -73.94531945306039 40.8429303860678, -73.94531625351411 40.84295247094164, -73.94531249109437 40.8429784393745, -73.94530219242502 40.843049520304575, -73.94529998505101 40.843064758299704, -73.94529546417326 40.843095956434816, -73.94528972660675 40.84315466044924, -73.94527567204362 40.843298451693656, -73.9452740191704 40.84334014913339, -73.94527222096865 40.84338553492271, -73.94527033436609 40.84343315389203, -73.94526899147955 40.843467027995786, -73.94526351616909 40.84366376597728, -73.94525661938583 40.843875983649134, -73.94525218192211 40.844086692353756, -73.94525214926225 40.84411340905834, -73.9452513909062 40.84414012361737, -73.94524990567632 40.84416682522436, -73.94524769476787 40.844193501272954, -73.9452447581881 40.84422014185773, -73.94524109713232 40.84424673437225, -73.94523671398012 40.84427326801167, -73.94523161111341 40.844299729269714, -73.94522942109822 40.84430965616232, -73.94522578972439 40.844326109141825, -73.94521984943421 40.84434999549272, -73.94521925338084 40.84435239412227, -73.94521200327661 40.84437857340557, -73.94521077478035 40.844382920400975, -73.94520456687822 40.84440489847964, -73.94519636575133 40.8444310908173, -73.94519580590803 40.8444327150402, -73.94518740465014 40.8444571360129, -73.94517768714152 40.84448302146091, -73.94517270029687 40.844495272095024, -73.94516721916322 40.84450873545768, -73.9451560054696 40.8445342635973, -73.94514685298303 40.84455365675867, -73.94514666173629 40.84455406278991, -73.94514405081252 40.844559594175465, -73.94513136231656 40.844584714588464, -73.94512972223093 40.84458775927462, -73.94512798238736 40.84459098761379, -73.94512733140034 40.844573723958554, -73.94512649126402 40.84455144897143, -73.94512623743786 40.84448396862859, -73.9451258094366 40.84437032534283, -73.94513052195018 40.844134310235795, -73.9451333917418 40.8440894967771, -73.94513920940425 40.84399863892194, -73.94514420060099 40.84392067843046, -73.94514652261242 40.84388441218699, -73.94516212727443 40.84374938530575, -73.94517116687081 40.84367116018845, -73.94519946995901 40.84344099235564, -73.94520227650177 40.84341816799552, -73.94523032106673 40.84323097784756, -73.9452353848333 40.843197179349964, -73.94527548264209 40.84295788788172, -73.94527703357909 40.8429507251961, -73.9453219570527 40.842743245905716, -73.94533155641355 40.842696261831215, -73.94534441903743 40.84263330365559, -73.94534531499838 40.84263098801214, -73.94534696607631 40.842628925764984, -73.94534926069493 40.84262725733816, -73.94535204224378 40.842626093418076)), ((-73.94420996392867 40.845301831093586, -73.94420203221512 40.84530169668571, -73.94418619674788 40.845302023107386, -73.94417040228396 40.845302944772385, -73.94415468677009 40.845304459898045, -73.94413909171344 40.84530656310151, -73.94412365150485 40.84530925079764, -73.94410840765224 40.845312516703025, -73.9440933957377 40.845316350929664, -73.94407865134163 40.84532074539046, -73.94406421241852 40.84532568929793, -73.94405011455271 40.84533117006263, -73.94401825107185 40.84534078897337, -73.94401445784949 40.84534200910085, -73.94398667884019 40.845350941108364, -73.94395541209198 40.84536162017134, -73.94392446743171 40.84537282166803, -73.94389386027949 40.84538453930283, -73.94387797221563 40.84539096199143, -73.94387745265632 40.8453911724539, -73.94388031743367 40.845381479144564, -73.94394249480334 40.845356396440565, -73.94400959646023 40.845333081058754, -73.94407785456538 40.84530936277779, -73.9442796554466 40.8452513552489, -73.94449213976678 40.84518513641336, -73.9445155879311 40.84517782849053, -73.94454504524798 40.84516824250416, -73.94457417810825 40.84515810345187, -73.94460297109222 40.845147415829025, -73.94463140284824 40.84513618773, -73.94465945914027 40.84512442635219, -73.94466984582954 40.84511981090717, -73.9446871198047 40.845112137089146, -73.94471436941824 40.84509932893868, -73.94474119018693 40.84508600999702, -73.9447675655031 40.845072187460424, -73.94477562906688 40.84506773208165, -73.94479347994296 40.845057871227205, -73.94480474215332 40.84505131742846, -73.94481032046428 40.84504807112011, -73.94480877651407 40.84506813155615, -73.94480803330852 40.84507778718298, -73.944802755428 40.84511481741659, -73.94479673528556 40.84515178245902, -73.94478997288908 40.84518867150432, -73.94478247298647 40.84522547735061, -73.9447768349922 40.84525060379808, -73.9447742355855 40.84526218919183, -73.94476526306329 40.84529879892461, -73.94475555661202 40.84533529754439, -73.94474855089717 40.845363846107276, -73.9447407069178 40.845392269099584, -73.94473202587142 40.84542055121329, -73.94472595505472 40.84543850412628, -73.94472251369723 40.84544867894371, -73.94471521170514 40.845468425947715, -73.94471217514872 40.84547663878551, -73.94470101498085 40.84550441543238, -73.94468903913295 40.845531995379574, -73.94468152910224 40.845548070072816, -73.94467790594547 40.84555582427757, -73.94467625235859 40.8455593651217, -73.94467241304764 40.845567523543764, -73.94467202125372 40.8455666723904, -73.94467152401671 40.84556570862485, -73.94466402875507 40.845551189990104, -73.94465529019243 40.84553594316029, -73.94464581503605 40.845520951716196, -73.94463767677112 40.845508227452754, -73.94463421355007 40.84550333341446, -73.94462885645281 40.845495765805055, -73.94461937066397 40.84548358929335, -73.9446092359889 40.845471718636695, -73.94459846901243 40.84546017365375, -73.94458708868973 40.84544897596529, -73.94458062618392 40.84544313046486, -73.94457511397867 40.84543814359009, -73.9445625673939 40.84542769544906, -73.94454946907834 40.84541765046213, -73.94453584154871 40.845408024848794, -73.94452170969195 40.84539883663063, -73.94451333261279 40.84539382766363, -73.94450709721191 40.8453901002268, -73.94449182697976 40.84538092676566, -73.94447610814426 40.84537220153189, -73.94445996203916 40.8453639371424, -73.9444434135549 40.84535614711644, -73.94442648521311 40.845348841370146, -73.94442218572344 40.84534714727307, -73.94440920309157 40.845342031622216, -73.94439159208414 40.845335726889516, -73.9443736770849 40.84532993618877, -73.94435548535944 40.84532466853794, -73.94433704180312 40.845319931152865, -73.94431837368299 40.84531573125051, -73.94429950945262 40.84531207514798, -73.9442804751954 40.84530896736016, -73.94426501336186 40.84530633495451, -73.9442493992564 40.84530428779336, -73.94423367319212 40.84530283039861, -73.9442281215238 40.84530252695, -73.94421787074045 40.84530196548892, -73.94420996392867 40.845301831093586)), ((-73.94394170684338 40.84513054710961, -73.94394739034263 40.8451010335243, -73.94395940534461 40.84510185070601, -73.94399739159007 40.84510279125893, -73.9440006240081 40.845102871171086, -73.94404842771105 40.845102122646246, -73.94404952104968 40.8451020835549, -73.9440590266975 40.84510173697308, -73.94405924370525 40.84510172897391, -73.94405932908492 40.84510172631383, -73.94405946427041 40.84510172097642, -73.9440595899687 40.845101716534906, -73.94405970025166 40.84510171208593, -73.94405984018033 40.84510170675084, -73.94405992911814 40.84510170319201, -73.9440600880203 40.84510169696562, -73.94406022083342 40.84510169252755, -73.94406032992983 40.845101688978495, -73.94406049831835 40.8451016827567, -73.94406061690188 40.84510167831173, -73.94406077580403 40.845101672085356, -73.94406087304247 40.84510166853054, -73.94406091098948 40.84510166674797, -73.94406112681145 40.8451016587482, -73.944064060566 40.84510155121128, -73.94409060784166 40.84510057894259, -73.94410948804605 40.845097839788586, -73.94412821456869 40.845094536848684, -73.94414675894465 40.8450906764126, -73.94416509271073 40.845086262969104, -73.94418318621388 40.84508130550891, -73.94419920218058 40.84507636775223, -73.94420101217592 40.84507580942185, -73.94421854331408 40.8450697855008, -73.9442357511621 40.845063241836534, -73.94425260843802 40.84505618832144, -73.94426909141517 40.84504863755108, -73.94428517281159 40.84504059941793, -73.94430082652906 40.84503208651636, -73.94431603121097 40.84502311324415, -73.94433076075768 40.8450136939968, -73.94434499262837 40.84500384137043, -73.94436355017355 40.84498986116954, -73.9443672060615 40.84498693092877, -73.94438153058856 40.844975450251845, -73.94439891726017 40.84496062301755, -73.94441569357619 40.844945392966274, -73.94443184292267 40.84492977539863, -73.94444734987177 40.84491378561586, -73.94446220136865 40.844897437119315, -73.94447637961237 40.844880747010016, -73.94447840352107 40.84487819508752, -73.94448987391753 40.844863731491955, -73.944502671228 40.84484640586747, -73.94451475730034 40.84482878723927, -73.94452612263433 40.844810892712395, -73.9445367553583 40.84479273939068, -73.94454664597282 40.844774343478655, -73.9445597868807 40.84474878120626, -73.94457218801918 40.844723009662474, -73.94457468872888 40.84471746563016, -73.9445838434503 40.8446970405511, -73.9445947472353 40.84467088647639, -73.9446048934356 40.844644560042646, -73.94461427848337 40.84461807475566, -73.94461999089526 40.84460042423951, -73.94462289762728 40.84459144141934, -73.9446307461124 40.84456467533992, -73.94463781918665 40.844537788221615, -73.94464411565464 40.84451079267101, -73.94464712800583 40.844495999921755, -73.94464963194795 40.84448370309428, -73.94465436331463 40.84445653119574, -73.94465928807192 40.84443207617616, -73.94466339945046 40.84440753251787, -73.94466409866435 40.84440231089595, -73.94466669506676 40.84438291552803, -73.94466874088835 40.84436254556275, -73.94466917372245 40.844358241415094, -73.94467083066266 40.84433352548525, -73.94467119777273 40.844322700838084, -73.94467166824703 40.84430878304789, -73.94467167335931 40.84430121080686, -73.94467168409149 40.84428403031088, -73.94467087936998 40.84425928258314, -73.94466925288344 40.844234556973426, -73.94466680817811 40.844209867891244, -73.94466354405634 40.84418523064448, -73.94466274410438 40.84418041262441, -73.94465946406227 40.84416066234397, -73.94465457055546 40.84413617829918, -73.94464886708226 40.84411179291969, -73.94464512077708 40.8440895039257, -73.94464065701068 40.84406729563156, -73.9446375305519 40.84405394162403, -73.94463548051563 40.84404518154677, -73.94462959246708 40.84402317517923, -73.94462299878347 40.84400129003911, -73.9446157018249 40.84397954053529, -73.94460910358421 40.843961714813524, -73.9446077063247 40.84395793927673, -73.94459901820112 40.84393649977362, -73.94458964100086 40.84391523553483, -73.94457958301435 40.843894159171136, -73.94457758270218 40.84388977821298, -73.94456752433149 40.843867749126574, -73.94455475759668 40.84384152334134, -73.9445412899162 40.84381549262448, -73.94453726321666 40.8438081507714, -73.94452712602425 40.84378966868449, -73.94451227065474 40.843764063229706, -73.94449673328698 40.84373868526949, -73.94448051746768 40.843713548312564, -73.94447484222513 40.84370518270379, -73.94446363267684 40.84368866046763, -73.94444608364829 40.84366403344318, -73.9444355032063 40.84365243180008, -73.9444227823549 40.84363952431057, -73.94442579734982 40.84363577250905, -73.944432003017 40.84362804836956, -73.9444362121384 40.843622810429316, -73.94444830873202 40.8436363659716, -73.94446752160627 40.84365789610148, -73.94448228404987 40.84367829126615, -73.9444853836414 40.843682575501916, -73.94450253754763 40.84370753731354, -73.94451897384872 40.843732768925165, -73.94453468425262 40.84375825952725, -73.9445496604711 40.84378399380772, -73.94455185792673 40.84378800295762, -73.94456389539774 40.84380996095747, -73.94457738192929 40.84383614656553, -73.94459011296073 40.843862538021845, -73.944595763402 40.843875088202836, -73.94460208257296 40.84388912271684, -73.94461328603404 40.84391588624074, -73.94462399745176 40.843942595497566, -73.94462712441542 40.84395105983007, -73.94463392374959 40.84396947727107, -73.94464306019411 40.843996518952295, -73.94465140086668 40.844023707031106, -73.94465878971864 40.84405047052043, -73.94465894340615 40.844051027999214, -73.94466568189308 40.84407846924702, -73.94467161515281 40.8441060163662, -73.94467673845317 40.844133654946766, -73.94468030990828 40.84415660931981, -73.94468105061713 40.84416137328179, -73.94468454809915 40.84418915606133, -73.94468685678531 40.84421771449532, -73.94468841722247 40.844246299585166, -73.94468901509838 40.84426740111851, -73.94468922704552 40.84427490232473, -73.94468928745049 40.84430350920729, -73.9446885984447 40.84433211032744, -73.94468715885108 40.84436069397809, -73.9446859336888 40.84437667713662, -73.94468496986421 40.8443892484535, -73.94468203267796 40.844417762948225, -73.94467834967253 40.84444622575693, -73.94467391967106 40.844474625172644, -73.94467344437567 40.844477230070105, -73.94466874623815 40.84450295129152, -73.94466268708071 40.84452977586376, -73.94465587265621 40.844556498317516, -73.9446483053466 40.84458310514645, -73.94464304785832 40.844599845484254, -73.94463998871818 40.84460958464564, -73.94463092633721 40.84463592511027, -73.94462112295719 40.844662113035064, -73.9446105821437 40.84468813761564, -73.94459931102126 40.8447139862483, -73.94458731197115 40.844739646327106, -73.94458696989247 40.844740331437706, -73.9445745921156 40.84476510794982, -73.94456378116327 40.84478513331373, -73.94455227551784 40.84480493321939, -73.9445400846757 40.84482449506439, -73.94452721694893 40.84484380444458, -73.94451368183543 40.844862846956374, -73.94449948764584 40.844881609996726, -73.94448464506331 40.84490008006311, -73.9444691635842 40.84491824455296, -73.94445305626265 40.84493609086536, -73.9444449941056 40.84494453450428, -73.94443633259587 40.84495360549733, -73.944419005638 40.844970775847905, -73.94438048451138 40.84500547847556, -73.94436053634436 40.84502191365177, -73.94434807853244 40.8450316365645, -73.94434001340588 40.845037930718625, -73.94431893112254 40.84505351617579, -73.94429730729263 40.84506865652425, -73.94427515852644 40.845083340965694, -73.94425250262087 40.84509755780212, -73.94422964803746 40.845111123481836, -73.94422935855941 40.84511129443547, -73.9442057441367 40.84512454186915, -73.94418167833643 40.84513728750515, -73.94415717895332 40.84514952234689, -73.9441362122652 40.84515868461255, -73.94413552069064 40.84515898684315, -73.94413309839996 40.84516004554984, -73.94413114585794 40.84516089917163, -73.9441110130863 40.84516969623658, -73.94411079363256 40.84516979248296, -73.9441107426243 40.845169814970575, -73.94411068805718 40.84516983925743, -73.94411063467653 40.8451698626444, -73.94411056706105 40.84516989232789, -73.94411050893572 40.84516991751351, -73.94411044962384 40.84516994359907, -73.94411041284215 40.8451699696955, -73.9441103819917 40.84516999309337, -73.94411033337322 40.84516999397032, -73.94411025745411 40.845170027251754, -73.94411018153501 40.84517006053322, -73.94410984583067 40.845170207150865, -73.94406996935595 40.845187631265304, -73.94400536012013 40.84521130088578, -73.94395517224997 40.8452296870836, -73.94391512963719 40.84524435735731, -73.94394170684338 40.84513054710961)), ((-73.94870528002261 40.83713364745754, -73.94885983861629 40.836615322486516, -73.94897333337387 40.83665562213025, -73.94893000588144 40.83674570276986, -73.94891956498924 40.83676740995418, -73.94891784423696 40.836770986854255, -73.94889540911876 40.836817630602795, -73.94883262455333 40.83693124509193, -73.94882848492199 40.836938086108155, -73.94876488501613 40.83704320043511, -73.94870528002261 40.83713364745754)), ((-73.94422378580181 40.84354939067885, -73.94421449443897 40.84354899357082, -73.94420067664024 40.843549014802576, -73.94418688678775 40.84354964658041, -73.94417317231417 40.843550886225756, -73.94415958065368 40.8435527292591, -73.94414615686895 40.84355517119991, -73.94413645030332 40.843556403776596, -73.94412686189237 40.84355813888474, -73.9441255098446 40.843558459705775, -73.94412519673855 40.843558534294964, -73.94412606444789 40.84355039065783, -73.9441331978956 40.84337407220437, -73.94414762951914 40.843381548781736, -73.9441688863976 40.84339329429588, -73.94418967212447 40.84340552764524, -73.94420996536833 40.84341823441189, -73.94422974005363 40.84343140107613, -73.94424897485032 40.843445011418964, -73.94426764724092 40.8434590510219, -73.94428573471089 40.84347350186451, -73.94430553913267 40.8434894285406, -73.9443247325349 40.84350578265246, -73.9443432983295 40.84352254888395, -73.9443612187412 40.84353971371946, -73.94437025137384 40.8435488958993, -73.94437735104289 40.8435568515756, -73.94438098676545 40.84356092625794, -73.94437818873199 40.84356472048613, -73.94437703604214 40.84356628318592, -73.94437110639672 40.843574320827145, -73.94436772667498 40.843578903606286, -73.9443602078165 40.843588691038576, -73.94434698667216 40.84357994537719, -73.94433166033679 40.84357315636982, -73.94431420841325 40.84356719208621, -73.94430806620258 40.843565678994324, -73.94429535939187 40.84356154229783, -73.9442823568509 40.843557972767535, -73.94426910362881 40.84355498213164, -73.9442556435889 40.84355258211754, -73.94424202534147 40.84355077995265, -73.94422829275346 40.84354958286211, -73.94422378580181 40.84354939067885)), ((-73.94498362204861 40.84415229694564, -73.9449856827986 40.84407933820314, -73.94500792320412 40.8440808679396, -73.94500586041276 40.84436000260104, -73.94500688821911 40.84442774355711, -73.94501231742295 40.84468083502277, -73.9450164761017 40.844748127221045, -73.9450175046539 40.84476477331839, -73.94501167155742 40.84477217078664, -73.94500324715743 40.84478285561832, -73.94498727173934 40.84480200958393, -73.94497067047061 40.844820852578714, -73.94497013638798 40.844821427738715, -73.9449583533472 40.84483410375498, -73.94495859361874 40.84483034161129, -73.94495918799812 40.84482138379389, -73.94496759706715 40.84469451018947, -73.94497846871067 40.84448481944196, -73.94497880193359 40.84447763096756, -73.94498424737273 40.844359690629744, -73.94498172849714 40.84422094510811, -73.94498320139833 40.8441992457362, -73.94498362204861 40.84415229694564)), ((-73.94420574549284 40.84363987248142, -73.94421628125151 40.843639663259815, -73.94422680942286 40.84364001774208, -73.94423727902122 40.843640933202146, -73.94424763787599 40.843642406012805, -73.94425783382023 40.84364442804443, -73.944267941333 40.84364726767995, -73.9442777828144 40.8436506078601, -73.94428657117471 40.843654134833216, -73.94429649579975 40.843658726737004, -73.94430116918659 40.84366125037372, -73.94429057709488 40.84367350186671, -73.94426997049099 40.843696446375645, -73.94426189984515 40.84370526640538, -73.94424739878856 40.8437211134743, -73.9442240993346 40.84374538670118, -73.94420008281116 40.843769253454084, -73.9441753634578 40.843792701132664, -73.94414995195606 40.84381571803511, -73.94413888893739 40.843825290319685, -73.94412386254412 40.84383829336201, -73.94410351591708 40.84385511641637, -73.94409710827661 40.843860413611836, -73.94409261575036 40.84386419620578, -73.94411332491359 40.84366990870397, -73.94411905071983 40.84366601774695, -73.9441273765888 40.84366111409412, -73.94413003503776 40.8436597646425, -73.9441361372506 40.8436566681016, -73.94413619656187 40.843656641115544, -73.94414528762933 40.84365269955837, -73.9441547838335 40.8436492300549, -73.94416457841803 40.843646276677454, -73.94417462156935 40.84364385290927, -73.94418486465969 40.84364197223419, -73.94419525669434 40.84364064273181, -73.94420574549284 40.84363987248142)), ((-73.94416404124917 40.843243667851155, -73.94416078200742 40.843240335350146, -73.94444424328758 40.84335313739357, -73.94450219737058 40.843376199900014, -73.94449162409944 40.84339583726376, -73.9444784796735 40.84341879980956, -73.94446477112652 40.84344138657668, -73.94446467613655 40.843441540515244, -73.94445022061083 40.84346404947854, -73.94444304380276 40.843474629514816, -73.94443555870876 40.84346673489034, -73.94442928301606 40.843460360879995, -73.94441074147139 40.843441530744165, -73.9443835502132 40.84341648483513, -73.94435568391326 40.84339186993004, -73.94432715442044 40.84336769683997, -73.94429797358346 40.84334397637618, -73.94426815562335 40.84332071845037, -73.94423771120448 40.84329793207222, -73.94420665454624 40.84327562895451, -73.94417499868582 40.843253816306934, -73.94416404124917 40.843243667851155)), ((-73.9316549936808 40.86824720764807, -73.93168138783147 40.868200088979535, -73.93165801013711 40.86824728327473, -73.93168170012187 40.86825404646838, -73.93147906285672 40.86866311753159, -73.93144085387446 40.86865132814687, -73.9314943889185 40.868549005860345, -73.93150617107617 40.86852648532116, -73.93151906452324 40.868501842087106, -73.93152796204117 40.86848483712972, -73.93153345413305 40.86847454960009, -73.93155137205804 40.86844098459668, -73.93157372783938 40.86839910800683, -73.93159666714902 40.86835613676357, -73.93162630600787 40.86830061756866, -73.93165127639341 40.8682538429511, -73.9316549936808 40.86824720764807)), ((-73.94372796581351 40.845896928800194, -73.94376907810275 40.84575783536198, -73.94378375574523 40.8457806519916, -73.94378617399205 40.8457844118259, -73.94379339151111 40.84579483584238, -73.94381299631056 40.84582315327613, -73.9438143824354 40.845824661375765, -73.94384049489732 40.84585308282942, -73.943876370691 40.845892131237285, -73.94382736017019 40.84588899527912, -73.9437998579336 40.84588723582822, -73.94379250753306 40.84588810932653, -73.94378741751731 40.84588871377815, -73.94374276246765 40.84589401752123, -73.94373956519672 40.84589439777069, -73.94372796581351 40.845896928800194)))",M028,6570,M028,M-12,M-12,M-12,M-12,"Riverside Dr., Hudson River, W. 155 St. to Dyckman St.",112,"7,10",33,"10032, 10033, 10034",M,184.143,False,Fort Washington Park,No,100004279,PARK,20100106000000.00000,18960807000000.00000,,DPR,Part,Fort Washington Park,Y,Fort Washington Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M028/,Yes,71,31,13,{BC28E9F2-D730-4ABD-A7F0-54E3E35D3F8A} +"MULTIPOLYGON (((-73.89008304568574 40.85220651378999, -73.89027957154816 40.852273221117365, -73.8902843439765 40.85227522024609, -73.89028861024913 40.852277796108645, -73.89029225070654 40.852280876551966, -73.8902951623143 40.85228437593133, -73.89029726340846 40.85228819421452, -73.89029849486636 40.852292225987846, -73.89029882366914 40.85229635775794, -73.89029823933635 40.852300472450835, -73.89029675865939 40.85230445572003, -73.89029442214525 40.85230819504246, -73.89029129756385 40.852311586025515, -73.89028747046063 40.852314532397784, -73.89028304888849 40.85231695321775, -73.89020453696847 40.85235573475251, -73.89012989130077 40.852398692795866, -73.89005949648576 40.85244560620068, -73.89005529645966 40.8524481514909, -73.89005060163984 40.85245013710386, -73.89004554138327 40.85245150823276, -73.8900402521328 40.852452228087444, -73.89003487860309 40.85245227789549, -73.89002956785374 40.85245165509565, -73.89002446454137 40.852450376034646, -73.89001970854443 40.85244847776597, -73.89001542904593 40.85244601084046, -73.89001174215645 40.85244304200527, -73.89000874973038 40.85243965330231, -73.89000653225887 40.85243593665855, -73.89000515124324 40.85243199298779, -73.8900046432668 40.852427931284524, -73.89000162638038 40.85237407718474, -73.88999427809547 40.852320462987564, -73.8899826253636 40.85226729132852, -73.88998127552289 40.852258125733805, -73.88998196554515 40.8522489179603, -73.88998467483833 40.852239928230595, -73.8899893294559 40.85223140951218, -73.88999579617463 40.85222360300976, -73.89000389199843 40.85221672826857, -73.89001339009418 40.85221097957826, -73.89002402098791 40.85220651967072, -73.89003548561877 40.85220347432938, -73.89004746008756 40.85220192969261, -73.8900596051509 40.85220192776001, -73.89007158044524 40.85220347090873, -73.89008304568574 40.85220651378999)))",X069,5668,X069,X-06,X-06,X-06,X-06,E. 182 St. at Quarry Rd. and Arthur Ave.,206,15,48,10457,X,0.1,False,Hutton Triangle,Yes,100004028,PARK,20100106000000.00000,18970601000000.00000,,DPR,True,Hutton Triangle,Y,Hutton Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X069/,No,86,33,15,{85453AC3-8555-4EB6-BFDE-E5BE207A7C73} +"MULTIPOLYGON (((-73.8889360654048 40.88212802759597, -73.88876393047369 40.882093925160795, -73.88980573737712 40.88071291690441, -73.88992606896309 40.88055746531867, -73.890054967196 40.880405593998596, -73.8901754835685 40.88027548834342, -73.890339065916 40.88011417656997, -73.89043199118103 40.88002930922973, -73.89050769733556 40.879963390647596, -73.8906494048792 40.87984706764319, -73.8908558489191 40.87970027466971, -73.89094414599737 40.87963489539033, -73.89103746842589 40.879561628013384, -73.8912143066661 40.87940948545582, -73.89133261534613 40.87929635428597, -73.89142731849363 40.879197990398076, -73.89152147007557 40.87909211404415, -73.89168649925682 40.87888221047359, -73.89186054870731 40.87866212789428, -73.89210725489306 40.87835016868498, -73.89229975327446 40.87810675392113, -73.8926452584392 40.87766985384675, -73.89285793628729 40.87740091455409, -73.89319841151189 40.87697036554993, -73.89345012888693 40.87665205057712, -73.89359890667464 40.876463884976936, -73.89412716689377 40.87669114882636, -73.89415307888066 40.87674141262439, -73.89415891721615 40.87674498571264, -73.8941346542728 40.87675730644781, -73.89402601981479 40.87680368903579, -73.89390065442869 40.87686907174666, -73.89378364636705 40.87693023602259, -73.89368331490805 40.87700620605932, -73.89357462342319 40.87708850593339, -73.89351886955639 40.87713916278519, -73.89344358784618 40.877217268265554, -73.89325419724672 40.87746522270236, -73.89325615248217 40.87746516778007, -73.89277065090147 40.878101377955325, -73.89258648763906 40.87802083815651, -73.89226738092279 40.87843147563486, -73.89242451189664 40.878500194352014, -73.89222022924862 40.878765001995724, -73.89214292075951 40.878863222511164, -73.89205181518666 40.878973976564325, -73.89198829630381 40.87906384433935, -73.89191099732533 40.879155790105465, -73.89180887605727 40.87926235177957, -73.89170676127478 40.87936473060253, -73.89155499151785 40.87950261483855, -73.89140602157313 40.879613314885084, -73.89132050668299 40.87967388223039, -73.89125982769578 40.87971146905855, -73.89102814988159 40.879849277278176, -73.89071374679519 40.88002674253979, -73.89064478296874 40.880074776758356, -73.89058410548834 40.880110272298595, -73.8905316846021 40.88015204843456, -73.8904627079166 40.88020844896087, -73.89033854583643 40.88031080563179, -73.89026403716504 40.88037974817444, -73.89018400928957 40.88045286818124, -73.8900349449995 40.88061794048804, -73.88995764843585 40.88070570216203, -73.88956279936352 40.8812030586254, -73.88904364489386 40.88188223951849, -73.88901008301228 40.88193237069242, -73.88898838519529 40.88197211264044, -73.8889360654048 40.88212802759597)), ((-73.8889367331771 40.88212814980432, -73.88893775250516 40.88212734394867, -73.88893706053996 40.8821282095515, -73.8889367331771 40.88212814980432)))",X137,5725,X137,X-07,X-07,X-07,X-07,Goulden Av bet. W 205 St and Sedgwick Av,208,11,50,10468,X,4.359,False,Jerome Park,Yes,100003786,PARK,20100106000000.00000,19400404000000.00000,,DPR,False,Jerome Park,Y,Jerome Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X137/,No,81,34,13,{7386F1CA-0BF8-4EB9-9CC5-ED1FA3E5C40D} +"MULTIPOLYGON (((-73.91288368811945 40.85235060927864, -73.91278070157162 40.85242161087859, -73.91268079745582 40.852490485956544, -73.91257353121152 40.852565418379086, -73.91245648410454 40.852646835824615, -73.91216354175 40.8528482593604, -73.91212228893637 40.8528769950511, -73.91208308594315 40.852905309958494, -73.91204742513709 40.852931067455245, -73.91203417266725 40.85294063948282, -73.91200527607923 40.85296216981306, -73.9119615517991 40.8529952574379, -73.91193476810915 40.85301619323724, -73.91190602721092 40.85303921487542, -73.91187929028742 40.85306063065948, -73.91184346343157 40.853089858460564, -73.91182190162795 40.8531079121479, -73.911771549152 40.85315424536812, -73.91170954508806 40.85321191494354, -73.91165927102642 40.853264273363465, -73.91159753350392 40.853331830479796, -73.9115488451423 40.85338933727577, -73.911481977172 40.85347279307678, -73.9114460123278 40.85351896159497, -73.91142788223769 40.85354338071515, -73.9114108344759 40.853566341867094, -73.91137952640857 40.85361099210899, -73.91135359056287 40.85364859382018, -73.91132108880565 40.85369987975115, -73.91127750785452 40.85376803956814, -73.91121311208126 40.85388599133825, -73.91115324852426 40.85399705239758, -73.91109035186845 40.85411373735726, -73.91104810042759 40.85419212228796, -73.91104295750196 40.85423513480045, -73.91102513798745 40.854377317666135, -73.91101194670497 40.85447468033344, -73.91092542256942 40.854625853797806, -73.91049353597491 40.85449167588901, -73.91058290608817 40.85433076523458, -73.91067858149995 40.854247581709174, -73.9108362387399 40.85411024994354, -73.9109977804347 40.85381433989541, -73.91103976968373 40.853739438777744, -73.91107481363426 40.85367450073218, -73.91111197136928 40.853612745740726, -73.911157444172 40.85354266399124, -73.9111676301236 40.853528578241146, -73.91120563640904 40.853476021492604, -73.9112676402318 40.85339148692339, -73.91136221478733 40.85327572398646, -73.91142673866102 40.85320609710334, -73.91148947149841 40.85314102349601, -73.91154354764504 40.85308337587476, -73.91160492210516 40.85302473427432, -73.91167177607896 40.85296654438054, -73.91167339070918 40.85296522369499, -73.91174014371563 40.85291064105344, -73.9118127864817 40.85285478057506, -73.91188139671614 40.8528071492655, -73.91195965601135 40.85275384497726, -73.91204115213932 40.85269743820804, -73.91213111217877 40.85263650655346, -73.91219679697895 40.852591030404746, -73.9122793511439 40.85253327893664, -73.91235517236572 40.85248023726865, -73.91243779154215 40.85242243981053, -73.91251711303292 40.85236694955345, -73.91260015450555 40.852308856937064, -73.9126833893161 40.85225062933294, -73.91268018555695 40.85225106634801, -73.91273584018184 40.85221286097257, -73.91276441376353 40.852193946141284, -73.91284913086407 40.852134681270506, -73.91292889323685 40.85207888129193, -73.91300845961993 40.85202321798469, -73.91308822291134 40.851967417895736, -73.91317085259618 40.85191149564076, -73.91325849269991 40.85184916829332, -73.91334638072473 40.851786665469014, -73.91343689307688 40.85172229422485, -73.91352806641787 40.85165745424831, -73.91358386072606 40.851617774460024, -73.91364490273662 40.851574363332595, -73.91368687322613 40.851531550239486, -73.91375032538211 40.85146853354875, -73.913796138012 40.85142303441888, -73.91384648540463 40.85137303079476, -73.91386396091981 40.85135567425614, -73.91396447118112 40.85128625379656, -73.9140368346884 40.85123627370958, -73.91410768826731 40.85118733612281, -73.9141650589464 40.85115879540913, -73.91444509233399 40.85102740643764, -73.91452146340427 40.8509784627817, -73.91466296346458 40.851036320592506, -73.91431694425594 40.851429170253915, -73.9142611493423 40.85146886210352, -73.9141945633307 40.851516228896756, -73.9141939425286 40.85151667057653, -73.9141416206415 40.85155389039936, -73.91381245556022 40.85171086632427, -73.91360656767328 40.85185223812071, -73.91346986637498 40.85194648469646, -73.91336996368652 40.85201536037698, -73.91327005960517 40.85208423596922, -73.91313505593946 40.85217731188161, -73.91300005071119 40.85227038673311, -73.91288368811945 40.85235060927864)), ((-73.90436098963208 40.862188696907346, -73.90438975182846 40.86215460476969, -73.90437446239794 40.86217314850247, -73.90485857942983 40.861634462076594, -73.90554885330357 40.86086636337853, -73.9068132897703 40.859449471867904, -73.907101483241 40.85944346117362, -73.90679468748968 40.859781372299466, -73.90579306150829 40.86088452241593, -73.90575829828873 40.86092498548112, -73.90568638459308 40.861092573729586, -73.90565359737865 40.86116887339403, -73.90563660754421 40.861208411741266, -73.90562581767071 40.86123352389764, -73.90557255164606 40.861295401639694, -73.90495970414206 40.86197586367558, -73.90436557423445 40.86263552667082, -73.90426572226512 40.86263745015718, -73.90404549739743 40.862641298717044, -73.90394862311933 40.86264200604201, -73.90433359613279 40.862221165688055, -73.90436098963208 40.862188696907346)), ((-73.91030769293384 40.85484861602297, -73.91038706855073 40.85468424167289, -73.91077638740745 40.854803909861516, -73.9107824098039 40.854806536749926, -73.91078823737682 40.85480940571954, -73.91079385234639 40.8548125095527, -73.91079923931068 40.85481583653116, -73.91080438167212 40.85481938213967, -73.91080926284533 40.854823132858044, -73.91081387335942 40.85482707607217, -73.91081819780639 40.85483120456615, -73.91082222078923 40.854835503019835, -73.91082568418273 40.8548396605642, -73.91075703856012 40.854961036944616, -73.91074128908026 40.85498470678289, -73.91072717438371 40.85499473453937, -73.91072172696913 40.85499844214938, -73.91070558373909 40.85500973352374, -73.91067936902351 40.85502910621259, -73.91064909423264 40.855053239350234, -73.91062015713908 40.85507830102232, -73.91060163278895 40.855095503163454, -73.91057936373294 40.85511753803765, -73.91055397809512 40.85514472940607, -73.91050463588265 40.855199096125084, -73.91047848493375 40.85523267316738, -73.91045666247122 40.85526295866541, -73.91043171161442 40.85530099135877, -73.91016862432988 40.8557919345611, -73.91009713727878 40.85592996920634, -73.90993991705584 40.85622897985425, -73.90985907090848 40.85635434432926, -73.90985594025109 40.85635931439534, -73.90985279892284 40.85636428175151, -73.90984964811348 40.85636924369724, -73.90984648781813 40.85637420383448, -73.9098433168532 40.85637916036132, -73.90984013759191 40.85638411237917, -73.90983694647505 40.85638906078565, -73.90983374706062 40.856394005583624, -73.9098305369754 40.85639894767165, -73.90982731740904 40.856403884349305, -73.90982408835784 40.85640881831789, -73.90982084863708 40.8564137486761, -73.9098176006187 40.85641867542577, -73.90981434193074 40.85642359856505, -73.90981107376047 40.85642851719438, -73.90980779492055 40.856433432213294, -73.90980450778302 40.85643834362366, -73.90980120997476 40.85644325232409, -73.90979790268526 40.85644815561407, -73.90979458591096 40.856453056195086, -73.90979125846708 40.85645795316568, -73.90978792154081 40.85646284562634, -73.90978457631816 40.85646773357789, -73.90978121923868 40.856472618818614, -73.9097778538616 40.85647750045081, -73.90977447900217 40.85648237757302, -73.90977109347432 40.85648725018431, -73.90976769964765 40.856492120087545, -73.9097642939653 40.85649698637945, -73.90976088117384 40.85650184726274, -73.90975745771156 40.85650670543612, -73.90975402358085 40.85651155909855, -73.90975058115133 40.856516410052926, -73.9097471292406 40.85652125559684, -73.90974366666025 40.85652609753034, -73.9097401945963 40.85653093585435, -73.90973671304995 40.85653576966836, -73.90973322320595 40.85654059987383, -73.90972972269356 40.856545425568385, -73.9097262126963 40.85655024855391, -73.90972269203188 40.856555066128045, -73.90971916306862 40.856559880994105, -73.90971562581012 40.8565646904506, -73.90971207669604 40.856569496295755, -73.90970851928428 40.85657429853236, -73.90970495120413 40.856579096258, -73.9097013748263 40.85658389037508, -73.90969778896614 40.8565886799822, -73.90969419243748 40.85659346507838, -73.90969058761124 40.85659824656595, -73.90968697211528 40.856603024443125, -73.90968334832418 40.856607796910744, -73.9096797150494 40.85661256576886, -73.90967607110623 40.856617330116045, -73.90967241886293 40.856622092655584, -73.90966875714088 40.8566268479837, -73.90966508474794 40.85663160060189, -73.90966140405864 40.856636348710964, -73.90965771388564 40.85664109321052, -73.90965401423017 40.85664583320011, -73.90965030509352 40.856650567779184, -73.90964658528596 40.856655299648295, -73.90964285836925 40.856660026108806, -73.9096391195968 40.85666474895792, -73.90963537489996 40.85666946729982, -73.90963161834743 40.85667418203034, -73.90962785231494 40.85667889044984, -73.90962407798357 40.85668359616129, -73.90962029416973 40.85668829736269, -73.90961650087222 40.8566929949546, -73.90961269690871 40.856697686234575, -73.90960888583228 40.856702374807384, -73.90960528216164 40.85670716980049, -73.90960123286014 40.856711738421055, -73.9095971847465 40.856716305241456, -73.90951105647085 40.856813479052356, -73.90931809871154 40.857031183353456, -73.90908482335308 40.85694704878309, -73.90924480890186 40.85676193382319, -73.90942102143563 40.856556066952386, -73.9095507050833 40.856385862408445, -73.90962062510472 40.85628417521008, -73.90973822229138 40.856091347844114, -73.90988011013995 40.85583821452118, -73.9100588275399 40.855515022694114, -73.91026992471609 40.85512710142955, -73.91027112912604 40.85512486644627, -73.91030769293384 40.85484861602297)), ((-73.90919462480662 40.85715155032718, -73.90892971736424 40.85744050719799, -73.90846232339229 40.85795033207286, -73.90724273342143 40.859280585101054, -73.90701785101005 40.85928142794375, -73.90899124876881 40.857073313001635, -73.90919462480662 40.85715155032718)), ((-73.91476286187151 40.85092047051707, -73.91467623258833 40.8508846713534, -73.91466222266232 40.85087888163303, -73.9150185406972 40.85063122841854, -73.91497392559155 40.85068170143854, -73.91476213048311 40.850923927865765, -73.91476286187151 40.85092047051707)), ((-73.91278070157162 40.85242161087859, -73.91279179099365 40.85242085744605, -73.91277295211262 40.85243382469238, -73.91278070157162 40.85242161087859)))",X001A,6119,X001A,X-05,X-05,X-05,X-05,Dr. MLK Jr. Blvd. bet. W. Tremont Ave. and E. Fordham Rd.,"205, 207",14,46,"10453, 10468",X,8.607,False,Aqueduct Walk Tremont Ave - E. Fordham Rd,No,100005117,PARK,20100106000000.00000,19300219000000.00000,,DPR,False,Aqueduct Walk,Y,Aqueduct Walk,Large Park,Community Park,http://www.nycgovparks.org/parks/X001A/,No,86,"29, 33",15,{F7FD205D-7B8D-4633-B002-A1F12EDAD544} +"MULTIPOLYGON (((-73.96510672856029 40.71163139713142, -73.96534569685421 40.71124972657268, -73.96627067211534 40.71152979001863, -73.96607983813216 40.71195799616028, -73.96510672856029 40.71163139713142)))",B112,5060,B112,B-01,B-01,B-01,B-01,S. 5 St. bet. Wythe Ave. and Berry St.,301,34,90,11211,B,0.975,False,Williamsburg Bridge Playground,No,100004187,PARK,20100106000000.00000,19030523000000.00000,375 WYTHE AVENUE,DPR,False,Lot,N,Lot,Neighborhood Plgd,Lot,http://www.nycgovparks.org/parks/B112/,No,50,18,7,{726514ED-530B-4311-AD86-26F439C822B7} +"MULTIPOLYGON (((-73.99176843871128 40.58665370706595, -73.99167005429773 40.58653357375149, -73.99158696512592 40.58643637510308, -73.99149881027385 40.586337153443225, -73.99136596227432 40.58619456455815, -73.99127451889233 40.58610085548148, -73.99116210231186 40.58599019416636, -73.99107323677043 40.58590601896815, -73.99097967995361 40.58582034396073, -73.99089867875144 40.58574847039439, -73.99081512991246 40.585676462388804, -73.99073809920955 40.58561189407238, -73.99065199909265 40.58554170029643, -73.99059045305476 40.58549275181901, -73.9905038366456 40.5854255287161, -73.99044035473464 40.58537745260505, -73.99035853681316 40.58531692608406, -73.9902909246203 40.585268086799786, -73.99020363233274 40.58520655382035, -73.99012341453174 40.585151470031725, -73.99003897435519 40.58509494948575, -73.98997689639826 40.58505432236971, -73.98991375544173 40.58501378517902, -73.9898660946872 40.58498369809488, -73.98980495809079 40.58494469010991, -73.99500710124309 40.582449937682476, -73.99510993742112 40.58247225888568, -73.99538622032043 40.582333160100156, -73.99529872048429 40.581935939104696, -74.00034126594154 40.58306712236033, -74.00038343991014 40.58430161861445, -73.99771672852985 40.585550887513556, -73.99772246746517 40.58573762018251, -73.99761120082441 40.58578974202436, -73.99757918482902 40.58575030382811, -73.99552118858317 40.586714328046746, -73.99544180143398 40.586616532583456, -73.99260651210822 40.58794455714299, -73.99255421063788 40.58784999611527, -73.99251695024032 40.587783954716905, -73.99247831039288 40.58771658134169, -73.99244393390536 40.58765755608492, -73.9924123221039 40.58760401428676, -73.99238637317353 40.58756056592075, -73.99236289251762 40.58752163924057, -73.99234473107947 40.58749177667751, -73.9923241509416 40.58745818668378, -73.99229493766325 40.58741096218394, -73.99226548934676 40.5873638799433, -73.99224393012032 40.587329738748615, -73.99220958414587 40.587275898635156, -73.99216135306331 40.587201409464214, -73.99211036783173 40.58712403120435, -73.99206991242451 40.587063590692495, -73.99201611868239 40.58698448769363, -73.99200095801726 40.58696291189952, -73.99195696874997 40.586901371561865, -73.99186992292574 40.58678395339213, -73.99176843871128 40.58665370706595)), ((-73.98872055141702 40.580461306899046, -73.98870713017725 40.58039388695432, -73.98860117795743 40.5804046467576, -73.98856294567881 40.5801916213127, -73.98775128546383 40.579839666902735, -73.98758620391784 40.57976808274033, -73.9876086123147 40.57973184267004, -73.98803296696545 40.57929765406773, -73.98839548571912 40.57925854817795, -73.98846121792609 40.579624794321596, -73.98867609648448 40.5796017956064, -73.9886054025488 40.57922890862867, -73.98892106050039 40.57919511221653, -73.98931245626716 40.5795201583254, -73.98965884474319 40.57982122619913, -73.9898775027967 40.58053210128602, -73.98979612790563 40.580737182110056, -73.9895850866986 40.58064870560764, -73.98872055141702 40.580461306899046)), ((-73.9897660088224 40.58787315108924, -73.98980823735629 40.58785283723532, -73.99103757098142 40.587267248316586, -73.99109461798936 40.58734684821215, -73.99112881255148 40.58739582221859, -73.99118303653691 40.58747631517042, -73.99123095613227 40.58755029052759, -73.99127120502659 40.587614672907094, -73.99130349161715 40.58766792780329, -73.99132739911694 40.587708350500975, -73.99136045424459 40.587765721730904, -73.99014191645759 40.58833696246372, -73.98986806453871 40.58799907220509, -73.9897660088224 40.58787315108924)))",B125,4609,B125,B-13,B-13,B-13,B-13,"Gravesend Bay, Bay 44 St. to Bay 49 St., Shore Pkwy.",313,"43,47",60,11214,B,85.527,False,Calvert Vaux Park,No,100004490,PARK,20100106000000.00000,19331117000000.00000,2000 SHORE PARKWAY SR S,DPR,Part,Calvert Vaux Park,Y,Calvert Vaux Park,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B125/,Yes,"46, 47",23,11,{2CCE0DF2-4348-4B97-BE33-F56A66D67953} +"MULTIPOLYGON (((-73.77653112491065 40.594687530155085, -73.77687174760923 40.59466408047073, -73.7769279479957 40.595142230013714, -73.77727203742279 40.595118540926215, -73.77731223860933 40.5954605457036, -73.77662981769727 40.59550752634891, -73.77653112491065 40.594687530155085)))",Q484,6176,Q484,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. Beach 46 St. and Beach 45 St.,414,31,101,11691,Q,0.961,False,Edgemere Urban Renewal Park,No,100000107,PARK,20090423000000.00000,20040510000000.00000,,DPR,True,Edgemere Urban Renewal Park,Y,Edgemere Urban Renewal Park,Undeveloped,Garden,http://www.nycgovparks.org/parks/Q484/,No,31,10,5,{91694E7F-9908-4C07-8B1F-888393181BB6} +"MULTIPOLYGON (((-73.78431284394776 40.71646381514062, -73.78441693194344 40.71662102172356, -73.78451421657802 40.71678073060663, -73.78460459539781 40.71694277141842, -73.78468797068577 40.71710697199442, -73.78476425420128 40.71727315658473, -73.784785008251 40.717321624960015, -73.78485696126594 40.71750334783981, -73.78492046074554 40.71768688651997, -73.78491777485573 40.71769436116082, -73.78491351390744 40.7177013988119, -73.78490779449615 40.71770781058318, -73.78490077104411 40.71771342206354, -73.78489263340975 40.717718080520285, -73.78488360213332 40.717721661193956, -73.78487392133582 40.71772406728521, -73.78486385279243 40.71772523264511, -73.78485367000033 40.71772512626662, -73.7848436475299 40.71772375136448, -73.78483405629622 40.717721143564994, -73.78482515762383 40.717717376298204, -73.78481719145242 40.71771254816866, -73.78481037275377 40.71770679285422, -73.78479562923204 40.71764785015156, -73.78473543259074 40.7174744456434, -73.78466680484028 40.717302864177064, -73.78458983877265 40.71713334274593, -73.78450464257062 40.71696611566918, -73.78441133388996 40.716801414580715, -73.78431004104522 40.71663946753101, -73.78420090419627 40.71648049808902, -73.78420164022222 40.716472858616946, -73.78420410348953 40.71646543130139, -73.78420821752458 40.71645844112725, -73.78421385856593 40.71645209678129, -73.78422085792874 40.71644659155742, -73.78422900323214 40.716442089851185, -73.78423804904457 40.71643872898088, -73.78424772283388 40.71643660929294, -73.78425773324838 40.7164357950782, -73.78426777722976 40.716436310982985, -73.78427755303149 40.716438142033745, -73.78428676496145 40.716441230944085, -73.78429513518775 40.71644548714241, -73.78430241086035 40.71645078048121, -73.78430837354357 40.71645695206126, -73.78431284394776 40.71646381514062)), ((-73.78329391750441 40.71519384252945, -73.78330325037594 40.71519315499539, -73.78331259936748 40.71519369759166, -73.78332168760006 40.715195452687524, -73.78333024422058 40.71519836934452, -73.78333801624503 40.71520236063732, -73.78334477209441 40.7152073081631, -73.78335031105371 40.71521306476071, -73.7833751789186 40.71526575374828, -73.78340423810462 40.71531718539489, -73.78343737917592 40.715367168582794, -73.78348397393462 40.71544421136557, -73.78353619729192 40.715519134098095, -73.78359388670918 40.71559169963229, -73.78365685595477 40.71566167707877, -73.78376589586335 40.71577164726444, -73.78386965178916 40.7158845385944, -73.78396798808959 40.716000204945246, -73.78406077742096 40.71611849480571, -73.78414789717625 40.716239254872036, -73.78414778726632 40.71624651550158, -73.78414613086666 40.716253666070415, -73.78414297119521 40.71626051755194, -73.78413839286935 40.71626688820104, -73.78413251715436 40.716272608948486, -73.78412549957584 40.71627752970008, -73.78411752637247 40.716281518429426, -73.78410880736551 40.716284470169796, -73.78409957477561 40.71628630701188, -73.78409007375147 40.71628697898665, -73.78408055406507 40.71628647035318, -73.78407127013202 40.71628479329539, -73.78406246561126 40.71628199239544, -73.78405437578382 40.71627814103632, -73.7840472133448 40.716273343176134, -73.78365939893573 40.715808729323626, -73.78349995566764 40.715624620480796, -73.78342564399277 40.715533517187865, -73.78335906468243 40.71543901635263, -73.78330048513558 40.71534149670739, -73.78325013956734 40.71524134952779, -73.78324940171301 40.715234236787005, -73.78325028047387 40.71522713429405, -73.78325274913337 40.715220250917596, -73.78325673364448 40.715213792735554, -73.7832621174018 40.715207951337625, -73.78326873888626 40.715202900218536, -73.78327640115357 40.715198788492415, -73.78328487775757 40.7151957391031, -73.78329391750441 40.71519384252945)), ((-73.78489061668066 40.72031473261866, -73.78490047307636 40.720314510596744, -73.78491023418682 40.7203155743277, -73.78491961131637 40.72031789355534, -73.78492833009716 40.720321399328164, -73.78493613047753 40.72032598760177, -73.78494278445781 40.72033152467454, -73.7849480960964 40.720337845386936, -73.78495190738987 40.72034476483902, -73.78495410537424 40.720352078403515, -73.7849546280169 40.7203595698418, -73.78489496126318 40.720546602863294, -73.78482838520506 40.72073228207435, -73.78475495234653 40.72091645897684, -73.7846747234728 40.72109898688799, -73.78458775936869 40.72127972002451, -73.78449413146215 40.72145851622419, -73.78439313989392 40.721438270036536, -73.78441167427562 40.72140559003304, -73.78451611161724 40.721196932430615, -73.7846117443049 40.72098584578519, -73.78469847703293 40.72077254426206, -73.78477621921958 40.7205572465362, -73.78484489330617 40.72034017130506, -73.78484970321975 40.72033362186172, -73.78485591452575 40.72032779544691, -73.78486334558191 40.720322863718714, -73.784871774592 40.720318971245064, -73.78488095617855 40.72031623463383, -73.78489061668066 40.72031473261866)), ((-73.78506842159833 40.71881834359869, -73.78505844314819 40.718816845427725, -73.78504894577468 40.71881407482926, -73.78504020853113 40.71881011427116, -73.78503248551159 40.71880507859306, -73.7850260022973 40.71879911590047, -73.78502095006517 40.71879239944898, -73.7850174749386 40.71878512672392, -73.78501568038658 40.71877750953909, -73.7850045257326 40.718610096926334, -73.78498501977673 40.71844312707296, -73.78495719257458 40.71827684136826, -73.78492108246841 40.71811148031456, -73.7848767431906 40.717947282640296, -73.78487645454699 40.717938805575066, -73.7848780036809 40.7179304084874, -73.78488134842974 40.7179223200286, -73.78488639813251 40.717914760654786, -73.78489301483069 40.71790793722585, -73.78490101684213 40.71790203580826, -73.78491018706048 40.71789721718791, -73.78492027533657 40.71789361237191, -73.78492700365116 40.71789217601648, -73.78492694972017 40.717892017425505, -73.78493852591909 40.71789054600059, -73.78495026162784 40.7178906246548, -73.78496180298596 40.717892248224544, -73.78497279863385 40.71789537012757, -73.78498291749135 40.71789989429129, -73.7849918522795 40.71790568416465, -73.78499933371404 40.7179125654461, -73.78504394140613 40.7181117890145, -73.78508199709405 40.718311797282695, -73.7851134786335 40.718512465945125, -73.78513836624647 40.718713670699564, -73.78513435089354 40.71877190655855, -73.78513383891239 40.71877946180408, -73.78513167878754 40.71878684737883, -73.78512793154998 40.71879385537823, -73.78512270316504 40.71880029058861, -73.7851161386058 40.718805973177915, -73.7851084206523 40.71881074409631, -73.78509976632644 40.71881446957232, -73.78509041740597 40.718817046498074, -73.78508063450697 40.71881840241838, -73.78508063485543 40.71881829435751, -73.78507858892486 40.71881852647256, -73.78506842159833 40.71881834359869)), ((-73.78284523909802 40.7141119310592, -73.78285591446841 40.71411178910336, -73.78286647059261 40.71411301300014, -73.7828766057936 40.71411556976207, -73.78288603273074 40.71411938500537, -73.7828944831043 40.714124351963584, -73.78290171713466 40.71413032790372, -73.78307019574879 40.71454279416536, -73.78323411775668 40.7149563222844, -73.78325125386088 40.71499841211173, -73.78325216194058 40.71500558460706, -73.78325142138641 40.71501276840663, -73.78324905657321 40.715019746532654, -73.78324513683638 40.71502630569395, -73.78323978234539 40.71503224980481, -73.78323315464782 40.71503739636507, -73.78322545543615 40.71504159176648, -73.78321691590786 40.715044707670906, -73.78320779673648 40.71504665001509, -73.78319837268035 40.71504736078308, -73.78318892903478 40.71504681709866, -73.78317975214986 40.71504503571037, -73.78317112115161 40.71504207117487, -73.78316329493255 40.715038013130595, -73.78315651215748 40.715032984497086, -73.78315097825968 40.715027136947676, -73.78303931596676 40.71474508487479, -73.78292161306098 40.71446445760953, -73.78279790249871 40.7141853317392, -73.78279304662227 40.714178095959106, -73.78278985639746 40.71417034192437, -73.78278842341489 40.714162290433755, -73.78278878953046 40.71415417119713, -73.78279094216346 40.71414621292102, -73.78279482139757 40.71413864332218, -73.7828003164689 40.71413167741416, -73.78280727051711 40.7141255121131, -73.78281548769255 40.714120324450406, -73.78282473437758 40.7141162598682, -73.78283474627574 40.714113435834875, -73.78284523909802 40.7141119310592)), ((-73.78243163520467 40.71316302043017, -73.7824336084878 40.713162515369504, -73.78243357091142 40.713162425247155, -73.78243971255787 40.7131611221047, -73.78244605395466 40.713160621696744, -73.78245241635452 40.71316093809378, -73.78245861871973 40.713162061948445, -73.78246448600324 40.71316396141209, -73.7824698503262 40.713166583937735, -73.78247456045442 40.71316985359661, -73.78247848414158 40.71317367828651, -73.78248150694594 40.7131779497297, -73.78248354642287 40.71318254620117, -73.78259322348381 40.71341245361171, -73.7826952885961 40.71364438260155, -73.78278967826394 40.713878185386974, -73.78280176533214 40.713907867495664, -73.78280319324764 40.713914567306524, -73.78280318532977 40.71392135536024, -73.78280173979209 40.71392805335183, -73.78279889625773 40.713934486656406, -73.78279472864665 40.71394048791797, -73.78278934516709 40.71394589975064, -73.78278288592507 40.71395058193857, -73.78277552056042 40.71395441053086, -73.78276744111393 40.71395728773379, -73.78276738004647 40.71395714263593, -73.78276313216409 40.71395835931809, -73.78275387778089 40.71395970793303, -73.78274445694433 40.71395983963974, -73.78273514304621 40.713958751352074, -73.7827262093696 40.71395647330282, -73.7827179136922 40.71395307261654, -73.78271049948722 40.713948647908836, -73.78270418172491 40.71394332835908, -73.78269914452012 40.71393726920326, -73.78269553523273 40.71393064631978, -73.78254936059729 40.71356673765404, -73.78241200840402 40.7132008454177, -73.78240993512894 40.71319609039073, -73.78240897614242 40.713191133953885, -73.78240915935608 40.71318612654564, -73.78241048072832 40.71318121854405, -73.78241289835329 40.713176558454606, -73.78241633957896 40.71317228752055, -73.78242070220547 40.71316853522246, -73.78242585331637 40.713165414773776, -73.78243163520467 40.71316302043017)), ((-73.78505717346025 40.71948909187298, -73.78501606052099 40.71949220652646, -73.78503168490361 40.719334747770716, -73.78503793425612 40.71917691310173, -73.78503479576955 40.7190190248805, -73.78503694447211 40.71901225073444, -73.7850405584027 40.719005848534216, -73.78504553637543 40.718999999093846, -73.78505173463724 40.718994870540534, -73.7850589787416 40.71899060663044, -73.78506706235002 40.71898733124887, -73.78507575437717 40.7189851349161, -73.78507712426466 40.718984976281625, -73.78507712806788 40.718984897944146, -73.78508605725852 40.7189840294088, -73.78509505380329 40.718984295644304, -73.78510386681035 40.718985689878785, -73.78511225733074 40.718988172043666, -73.7851199924174 40.71899167596691, -73.7851268605285 40.718996103998464, -73.78513267268507 40.71900133511709, -73.78513726838875 40.71900722494142, -73.78514052152197 40.71901361114397, -73.78514046122596 40.71903231467702, -73.78514208868806 40.71925771510063, -73.78513654978327 40.719483079630564, -73.78505717346025 40.71948909187298)), ((-73.78438379436975 40.72168442557148, -73.78438683271794 40.72168404944426, -73.78438991118692 40.721684076821546, -73.78439293745313 40.72168450843102, -73.78439582160684 40.72168533059659, -73.7843984749598 40.72168651793788, -73.78448167918715 40.72178634060925, -73.78448217752582 40.721787792267264, -73.78448234313021 40.72178928742754, -73.7844821725922 40.72179078195863, -73.78448166960234 40.7217922326428, -73.78448084968137 40.72179359808556, -73.7844797366381 40.72179483600742, -73.78447836253754 40.721795913149435, -73.78447676891628 40.72179679536981, -73.78447499964327 40.72179745933745, -73.78447310804754 40.72179788444029, -73.78447114979907 40.721798058175445, -73.78446918054173 40.72179797614449, -73.78430406801324 40.72176301702856, -73.78430296568827 40.72176277092459, -73.78430193482515 40.721762387176156, -73.78430100380122 40.7217618748415, -73.78430020096742 40.72176125108348, -73.78429954757615 40.72176053215112, -73.78429906486511 40.721759738796, -73.78429876577526 40.72175889535625, -73.78429865851301 40.72175802616095, -73.78429874655346 40.721757154630055, -73.78429902744188 40.721756307774285, -73.78429949400099 40.7217555089935, -73.78430013076809 40.72175478167204, -73.78430091991939 40.721754147388864, -73.78437580355818 40.721687808239274, -73.78437819566261 40.72168633317759, -73.78438088613065 40.72168519456563, -73.78438379436975 40.72168442557148)))",Q030,6373,Q030,Q-08,Q-08,Q-08,Q-08,Midland Pkwy. bet. Surrey Place and Hillside Ave.,408,24,107,11432,Q,1.803,False,Midland Malls,Yes,100000020,PARK,,19330516000000.00000,,DPR,True,Midland Malls,Y,Midland Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q030/,No,"24, 29","11, 14",5,{2DE3B6AC-CF25-4878-AD71-E9ADC79FE5CD} +"MULTIPOLYGON (((-73.88751791493587 40.76569365693528, -73.88735810232572 40.76524267663752, -73.88772348982604 40.76530441980271, -73.88775026706492 40.76545642497134, -73.8876598152088 40.76546597220917, -73.887696604088 40.76567479638491, -73.88751791493587 40.76569365693528)))",Q393F,5922,Q393F,Q-03,Q-03,Q-03,Q-03,Astoria Blvd. bet. 81 St. and 82 St.,403,22,115,11370,Q,0.249,False,LaGuardia Landing Lights,Yes,100000311,PARK,20090423000000.00000,19600728000000.00000,,DPR,False,LaGuardia Landing Lights,N,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393F/,No,35,13,14,{67BD55DB-60A3-4495-914A-AC47EB177611} +"MULTIPOLYGON (((-73.78157988844221 40.708748157868044, -73.78181359665318 40.709241721553155, -73.78188583654881 40.70939428302053, -73.7815419037719 40.70949220287082, -73.78139756933949 40.70918982089686, -73.7812436810384 40.70886742286071, -73.781233787393 40.70884669404094, -73.78157988844221 40.708748157868044)))",Q120,5314,Q120,Q-12,Q-12,Q-12,Q-12,179 Pl. bet. 90 Ave. and Jamaica Ave.,412,27,103,11432,Q,0.581,False,Harvard Playground,Yes,100000332,PARK,,,90-73 179 PLACE,DPR,False,Harvard Playground,Y,Harvard Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q120/,No,29,11,5,{3A29A6E3-5EA8-4E90-BA6E-75490FF39DFE} +"MULTIPOLYGON (((-73.77295885791341 40.6752429893385, -73.77368164362703 40.67358920643644, -73.77447765181864 40.67378910230901, -73.77500658980881 40.673921926916265, -73.77566706111115 40.67363561189976, -73.7760274378816 40.674107489324996, -73.77533758321518 40.67440654178463, -73.77493465534756 40.67532852395598, -73.7757386875432 40.67552867255131, -73.7755762942803 40.675900263437576, -73.77477294587925 40.67569853915663, -73.7746902503336 40.675677773398014, -73.77295885791341 40.6752429893385)))",Q413,5117,Q413,Q-12,Q-12,Q-12,Q-12,Guy R. Brewer Blvd. bet. 130 Ave. and 137 Ave.,412,28,113,11434,Q,8.833,False,Rochdale Park,Yes,100000062,PARK,20090423000000.00000,19620927000000.00000,133-39 GUY R BREWER BLVD,DPR,Part,Rochdale Park,Y,Rochdale Park,Large Park,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q413/,No,32,10,5,{B0118C26-BFF6-4BA3-9BED-A46A98D1B354} +"MULTIPOLYGON (((-73.99022507209253 40.735168837026485, -73.99029591704775 40.735117732893414, -73.99038616799949 40.73506241325982, -73.99067422685593 40.73491054918382, -73.99069337559527 40.734900782023345, -73.99071433407244 40.73489347159114, -73.99073656006563 40.73488880875029, -73.99075948058392 40.734886912321116, -73.99078250488897 40.73488783178386, -73.99080503870115 40.73489154277732, -73.99082650077277 40.734897949801606, -73.99120352238259 40.73505584185176, -73.99121364140255 40.735086099688715, -73.99138790008337 40.73516073703861, -73.99144650043972 40.73515903404322, -73.9916143588764 40.735230965448494, -73.99161980191596 40.73523309554577, -73.99162472635291 40.73523586136364, -73.99162900552527 40.735239190852276, -73.9916325293464 40.73524299845558, -73.9916352054889 40.735247186011506, -73.9916369653033 40.73525164545414, -73.99163776500167 40.73525626151545, -73.99163758210571 40.73526091622725, -73.99163642254965 40.73526548802137, -73.99163431594398 40.73526985983392, -73.99163131557589 40.73527391820482, -73.9914461413408 40.73553098337506, -73.99120199674473 40.73586923172838, -73.99085924632395 40.73634312064471, -73.99083774646479 40.73635843567186, -73.99083122630242 40.7363630277422, -73.99082552055542 40.73636820970967, -73.99082072157647 40.736373898734946, -73.99071759457053 40.73651506576213, -73.99071505488976 40.73651714573016, -73.99071298989904 40.73651951119735, -73.99071145288123 40.736522098231966, -73.99071048528096 40.736524840199834, -73.99071011196952 40.736527665062354, -73.99071034242816 40.73653049897862, -73.99071117193196 40.73653326720618, -73.99071231974857 40.736537090854405, -73.9907126483177 40.736541004487314, -73.9907121493661 40.736544908147856, -73.99071083356262 40.736548700079624, -73.99070873762052 40.73655228303063, -73.99035206621589 40.7370499201575, -73.99031247472244 40.73705235901051, -73.99030132950486 40.73702134008731, -73.99028349632368 40.73699218374904, -73.99025948294667 40.73696571850269, -73.99022996881115 40.73694269542537, -73.99019579318781 40.73692376655189, -73.99015792558626 40.73690947046458, -73.98943950254952 40.73660841484092, -73.98940132280421 40.736593769078546, -73.98936696534888 40.73657440769772, -73.98933742572879 40.73655089181031, -73.98931356095369 40.73652390318383, -73.98929606463925 40.73649422532791, -73.98928544451843 40.736462719178036, -73.98928200705589 40.73643029968044, -73.98928585390253 40.7363979060748, -73.98929687124574 40.73636647938026, -73.98931474165464 40.7363369308792, -73.99005200188336 40.73534928758059, -73.99008148070801 40.7353101117288, -73.99014707496634 40.7352391411323, -73.99022507209253 40.735168837026485)), ((-73.99001943310891 40.73455911790864, -73.99002304380264 40.73455904618087, -73.99002665446126 40.73455920858507, -73.99003022956863 40.73455961412323, -73.99003374545075 40.7345602456836, -73.99009093271664 40.734584356315516, -73.99055972544002 40.73478199415274, -73.99056410522059 40.73478486713191, -73.99056815348834 40.73478801924122, -73.99057181105417 40.734791432465684, -73.99057507792303 40.73479507078507, -73.99057790674543 40.73479890718022, -73.99058028568543 40.734802923640096, -73.99058220291107 40.73480707513834, -73.99058363474808 40.73481134366289, -73.9905837175618 40.73481173088806, -73.99058456936437 40.7348156841874, -73.99058500676236 40.73482007870172, -73.9905849469484 40.734824482180485, -73.99058437808914 40.734828858602356, -73.99058330018691 40.73483318995725, -73.9905817487631 40.73483743122258, -73.99057970014601 40.73484154637611, -73.9905772016916 40.73484551741153, -73.99057425340474 40.734849308308505, -73.99057087896607 40.73485289205373, -73.99056711389566 40.73485623262966, -73.9905629818727 40.73485931202813, -73.99055850657658 40.73486211224088, -73.99055373536576 40.73486459725138, -73.99055098865959 40.73486605584885, -73.9905470935469 40.734868117692244, -73.99048444021062 40.73490128724306, -73.99032313007584 40.73498669597915, -73.9903089583765 40.73499465527708, -73.99029492871334 40.73500275866649, -73.99028104108768 40.735010997142346, -73.99027007658478 40.73501767078086, -73.99023873629027 40.73503748200342, -73.99022688728547 40.735045283899154, -73.99021372168663 40.735054188803964, -73.99020070996484 40.73506321979144, -73.9901878521201 40.735072376861645, -73.99017514815247 40.73508166001466, -73.99016913358092 40.73508617104577, -73.99016259806315 40.735091060245416, -73.99015021368793 40.73510059556514, -73.99013799503082 40.735110238958676, -73.99012594208914 40.73512000843619, -73.99011404302586 40.73512989499165, -73.99010232151774 40.735139898627175, -73.99009077756486 40.73515001934278, -73.99007939933016 40.73516024813243, -73.99006818681363 40.73517058499619, -73.99005716369213 40.73518102993616, -73.99004631812596 40.73519159195636, -73.9900356382794 40.7352022530458, -73.99002515966768 40.73521301320752, -73.99001484677437 40.73522388144353, -73.99000473511606 40.735234848751986, -73.99000096986862 40.73523903578662, -73.9899948010159 40.73524591513078, -73.98998505631245 40.735257080581086, -73.9899842512262 40.735257566785315, -73.989983398793 40.73525800795998, -73.9899824990156 40.735258386095005, -73.98998155189389 40.73525870119036, -73.98998058110344 40.735258962253184, -73.98997957480853 40.735259151272274, -73.98997856852309 40.73525927725581, -73.98997753857164 40.73525933119663, -73.98997650862835 40.735259331107, -73.9899754786972 40.735259249971655, -73.98997447245104 40.73525911480786, -73.98997347805417 40.73525890760448, -73.98997250734364 40.735258637367615, -73.9899715721579 40.73525830409827, -73.9899706843354 40.73525790779749, -73.98996984387473 40.735257457470404, -73.98996905077456 40.73525696212201, -73.98996831687604 40.73525640374319, -73.98996765401353 40.73525580935028, -73.98996705034993 40.735255169937105, -73.98996652956079 40.73525449451085, -73.98996607980628 40.735253792075525, -73.9899657129262 40.735253053627154, -73.98996544075497 40.73525230618191, -73.98996523961833 40.73525153172762, -73.98996513318912 40.7352507572816, -73.98996510963023 40.73524997383772, -73.9899651807788 40.73524919040207, -73.98997165829586 40.735236583856434, -73.9899754596171 40.73522869573864, -73.98997779251252 40.7352238692196, -73.98998354791226 40.73521105549361, -73.98998894817078 40.735198151685616, -73.98999398144854 40.73518516679978, -73.98999864774561 40.735172100836124, -73.99000293522249 40.73515896279872, -73.99000685571782 40.735145752688666, -73.99001039739073 40.73513248851514, -73.99001217427018 40.73512502706111, -73.9900135720811 40.73511916127408, -73.99001521879731 40.73511129998318, -73.99001636794813 40.73510578897469, -73.9900187731522 40.73509238062103, -73.99002081137179 40.73507892721009, -73.99002245892758 40.73506544675002, -73.99002372765818 40.73505193924183, -73.99002461756244 40.73503841369065, -73.99002511680096 40.7350248791005, -73.99002523721094 40.73501134447751, -73.99002497879265 40.734997809821714, -73.9900243297079 40.734984275132014, -73.98999020376176 40.734681136897414, -73.989980219631 40.73459245130706, -73.989980220044 40.73458970475791, -73.98998037415191 40.734588308984016, -73.98998052825306 40.734586958235504, -73.98998114425271 40.73458424776024, -73.98998206804023 40.73458159134224, -73.98998328777449 40.73457900699054, -73.98998479161591 40.734576503709306, -73.98998656772206 40.73457410851263, -73.98998861609019 40.73457183941075, -73.98999091304093 40.73456971441168, -73.9899934348964 40.734567742518486, -73.98999616981413 40.73456595074529, -73.98999909411765 40.734564339090106, -73.99000219596581 40.73456292556198, -73.9900054516808 40.73456171916395, -73.99000881390931 40.734560719891896, -73.99001229448571 40.7345599547621, -73.99001583421979 40.734559414764284, -73.99001943310891 40.73455911790864)))",M089,4666,M089,M-05,M-05,M-05,M-05,"Broadway To 4 Ave., E 14 St. To E 17 St.",105,2,13,10003,M,6.51,False,Union Square Park,Yes,100003802,PARK,20100106000000.00000,18330404000000.00000,69 EAST 17 STREET,DPR,True,Union Square Park,Y,Union Square Park,Neighborhood Park,Community Park,http://www.nycgovparks.org/parks/M089/,No,"75, 74",28,12,{4EEDB32D-B086-4D64-A79E-9EA5FA1BD4DD} +"MULTIPOLYGON (((-73.77809413661085 40.74211419685414, -73.77809042987451 40.742113049666635, -73.77808080507911 40.74213482706205, -73.77807455874401 40.74214895933441, -73.77783020025902 40.74207022129842, -73.77659757010991 40.7416730290228, -73.7759426036153 40.74146197026766, -73.77629887673272 40.74084901387015, -73.77637451301416 40.740873387182525, -73.77665943690282 40.74096520046533, -73.77693819038153 40.74105502537071, -73.77740722569482 40.741206163140326, -73.77717330258734 40.741661108588914, -73.7787810464277 40.74217490333842, -73.77870408944177 40.742302915153466, -73.77844562909901 40.742222948249314, -73.77809413661085 40.74211419685414)))",Q300A1,69211,Q300A1,Q-08,Q-08,Q-08,Q-08,Peck Ave. bet. 61 Rd. and 67 Ave.,408,23,107,11365,Q,2.7,False,Holy Cow Playground (P.S. 179),Yes,100008307,PARK,,19461010000000.00000,,DPR,True,Holy Cow Playground,Y,Holy Cow Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q300B/,No,25,16,6,{732E9FA6-A75A-4F6B-A53B-22A365E95501} +"MULTIPOLYGON (((-73.92687195479087 40.84657975690091, -73.9269243347498 40.846481782288855, -73.92699925330051 40.846515773791225, -73.92722077015993 40.846616278158635, -73.92726714730304 40.84663732040259, -73.9273214679434 40.84666196600093, -73.92706230400184 40.84703228754312, -73.92692420485213 40.84724229043009, -73.92681048335977 40.847402688781834, -73.92672738668942 40.84751373427798, -73.92660191297277 40.8476823419444, -73.92646243897379 40.84785696483939, -73.92630032908137 40.848033411906606, -73.92607868894245 40.84824785920375, -73.92605961949005 40.8482678865373, -73.9257253976709 40.84864647109173, -73.92512686861315 40.84946922314363, -73.92509812224668 40.84945934229294, -73.92456217061637 40.84927512967668, -73.92515036417706 40.848672684645166, -73.92568422609435 40.84812182048933, -73.92577317269576 40.84803415179701, -73.92593750547013 40.84786374559849, -73.92604629745496 40.84774430565389, -73.92618262494199 40.84759118410208, -73.92634796754494 40.8473850275045, -73.92645525779999 40.847236742533575, -73.92650943234908 40.847157656192955, -73.92659396279458 40.84703784726638, -73.92670283612486 40.84686919212348, -73.92674197348876 40.846805443206755, -73.92675367883756 40.84678602611633, -73.92681034063395 40.84668960042374, -73.9268521523533 40.84661566589273, -73.92687195479087 40.84657975690091)), ((-73.92947987674313 40.84228235946495, -73.92948395428255 40.842275881108485, -73.92949529747803 40.84227668587945, -73.9294923294439 40.84228349989803, -73.92948992601349 40.842289017551494, -73.92941345214088 40.84246581322615, -73.92938811951092 40.842544239678105, -73.92912274080211 40.84336574712446, -73.92902029125962 40.843682889984, -73.92896233475523 40.84386229553479, -73.92887638648857 40.84409710372985, -73.92881256455796 40.84425304593608, -73.92873350142581 40.84442005474956, -73.92867671436113 40.84452491175802, -73.92862078444024 40.844620930930205, -73.92856157335962 40.84471576569467, -73.92851194991195 40.84479011925822, -73.92849595865195 40.84481407416113, -73.92846837947067 40.84485378050004, -73.92843553073529 40.84490106391114, -73.9283375442831 40.845048103973554, -73.92786078831838 40.844940122273776, -73.92864390761584 40.8435539097795, -73.92880044595522 40.84328355694515, -73.92880375727154 40.84327850992468, -73.92897501684703 40.84301581111297, -73.92914135834056 40.842801528528675, -73.92919430900601 40.84272847432332, -73.92925128122933 40.84264688138236, -73.92931021540247 40.842558905118274, -73.92935137338094 40.84249255948814, -73.92941000665758 40.84239400489353, -73.92945308112894 40.84232492830191, -73.92947987674313 40.84228235946495)), ((-73.92737543972639 40.84560505581977, -73.92749954791793 40.8453794389054, -73.92801272173712 40.84553525918189, -73.92745590326439 40.846371087079085, -73.92705405959536 40.8461892835566, -73.92723822870224 40.84585448956234, -73.92737543972639 40.84560505581977)), ((-73.92459279436767 40.846144461007555, -73.92469439052488 40.84595790208131, -73.92514690659345 40.846163227073774, -73.92507666962874 40.84629994648963, -73.92459279436767 40.846144461007555)))",X094,6430,X094,X-05,X-05,X-05,X-05,Harlem River bet. W 175 St and Alexander Hamilton Br,"204, 205",16,44,"10452, 10453",X,7.156,False,Bridge Park,Yes,100005208,PARK,20100106000000.00000,18950101000000.00000,,DPR,Part,Bridge Park,Y,Bridge Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X094/,Yes,77,29,"15, 13",{F8111307-D73A-4764-A342-A841625EC74C} +"MULTIPOLYGON (((-73.96324214187145 40.798087038698654, -73.96328213564786 40.79810389799027, -73.96330194003176 40.7981122474251, -73.96311473540673 40.79837489669399, -73.96305495605483 40.7983496626636, -73.96324214187145 40.798087038698654)))",M373,5979,M373,M-07,M-07,M-07,M-07,W. 105 St. bet. Columbus Ave. and Manhattan Ave.,107,7,24,10025,M,0.04,False,La Perla Garden,No,100004145,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,La Perla Garden,N,La Perla Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M373/,No,69,30,13,{72CE235F-850E-4622-B763-E8C81841C5B8} +"MULTIPOLYGON (((-73.7836542778031 40.760426949998546, -73.78349048928567 40.76007339035839, -73.78373510199668 40.760007951591035, -73.78376101313069 40.76006700687831, -73.78395418848186 40.760011049781625, -73.78410789244666 40.760337644882206, -73.7843649354287 40.76027160041973, -73.78438026495618 40.760301213480496, -73.78446929690256 40.76027801461973, -73.78465021563973 40.76063133651874, -73.78454233822268 40.76066018607791, -73.78384830931805 40.76084578537302, -73.78371739055858 40.76056318379119, -73.7836542778031 40.760426949998546)))",Q381,5371,Q381,Q-11,Q-11,Q-11,Q-11,"Francis Lewis Blvd., 201 St. bet. 42 Ave. and Station Rd.",411,19,111,11361,Q,1.206,False,Francis Lewis Playground,Yes,100000243,PARK,,,200-01 42 AVENUE,DPR/DOE,False,Francis Lewis Playground,Y,Francis Lewis Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q381/,No,26,11,6,{1C18DA71-02AA-4386-9109-FE1985CF8EA2} +"MULTIPOLYGON (((-73.87815752485392 40.7569849825903, -73.87887598808877 40.756909293613, -73.87900876045225 40.75764656383994, -73.87828948706019 40.75772389080959, -73.87815752485392 40.7569849825903)))",Q362,4920,Q362,Q-03,Q-03,Q-03,Q-03,"89 St., 90 St. bet. Northern Blvd. and Jackson Mill Rd.",403,25,115,11369,Q,1.25,False,Playground Ninety,Yes,100000237,PARK,20090423000000.00000,19560726000000.00000,89-02 32 AVENUE,DPR/DOE,False,Playground Ninety,Y,Playground Ninety,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q362/,No,34,13,14,{4D43C793-D700-452B-BC4E-EFDBDD9D995B} +"MULTIPOLYGON (((-74.13602320349565 40.60842986622413, -74.13706145200291 40.608373861235634, -74.13720445919914 40.60992446159948, -74.13615870506878 40.609980667644685, -74.13602320349565 40.60842986622413)))",R075C,6005,R075C,R-01,R-01,R-01,R-01,"SI Expressway, Warwick Ave., Purdy Ave., and Ingram Ave.",501,50,120,10314,R,3.77,False,Ingram Woods,Yes,100003826,PARK,20100106000000.00000,19580117000000.00000,,DPR,True,Ingram Woods,N,Ingram Woods,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R075C/,No,63,24,11,{7F171D41-2A6A-4EB1-B893-987F407495D0} +"MULTIPOLYGON (((-73.88701305337115 40.728346652342296, -73.8870480259114 40.7283441535205, -73.88705600222704 40.72855064725793, -73.88681535742737 40.72856497850667, -73.88681527695195 40.72853848453968, -73.88691782592471 40.72853467168149, -73.88691985456391 40.72851878328433, -73.8869251814802 40.728503342977746, -73.88693367105797 40.72848874505124, -73.88694510722874 40.72847536030188, -73.88695919821232 40.72846353243691, -73.88697558483237 40.72845356097249, -73.88699384880196 40.72844570124181, -73.88701352457949 40.72844015360076, -73.88701456088894 40.72843912983789, -73.88701305337115 40.728346652342296)))",Q360T,5554,Q360T,Q-05,Q-05,Q-05,Q-05,74 St. at 57 Ave.,405,30,104,11373,Q,0.047,False,Sitting Area,Yes,100000086,PARK,20090423000000.00000,19570508000000.00000,,DPR/CDOT,False,Sitting Area,N,Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360T/,No,30,16,6,{06F36C19-B2E3-4DB9-9BAF-F16F723BD76F} +"MULTIPOLYGON (((-73.99842801890317 40.71267570545922, -73.9986869143414 40.71262624995955, -73.99868617586003 40.71262697216065, -73.99860270014064 40.71270865919577, -73.99850438705535 40.71280486490986, -73.99842801890317 40.71267570545922)))",M247,4946,M247,M-03,M-03,M-03,M-03,St James Pl. and Oliver St.,103,1,5,10038,M,0.043,False,St. James Triangle,Yes,100004372,PARK,20100106000000.00000,19610928000000.00000,51 ST JAMES PLACE,DPR,True,St. James Triangle,N,St. James Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M247/,No,65,26,7,{82425E98-B4D8-4D64-9318-806328DD7372} +"MULTIPOLYGON (((-73.77544860706601 40.75343908245898, -73.77545225444891 40.75343868974337, -73.77558775098761 40.75373317062055, -73.77569092258798 40.753997521307475, -73.77568750676878 40.753998416064796, -73.77558433635568 40.75373406807864, -73.77544860706601 40.75343908245898)), ((-73.7759689798065 40.7548122984656, -73.77597241237856 40.754811363209676, -73.77611370075421 40.75535824190591, -73.77611026934318 40.75535917626775, -73.7759689798065 40.7548122984656)), ((-73.77573057617859 40.7541258588279, -73.77573397081596 40.75412492620669, -73.7758522952828 40.75437519706706, -73.77585673634651 40.75438459080665, -73.77593012734826 40.754653243560156, -73.77592669362686 40.75465417070803, -73.77585330264401 40.75438551615135, -73.77584734831191 40.75437291906025, -73.77573057617859 40.7541258588279)), ((-73.77614827961773 40.755524887815454, -73.7761517620299 40.75552393193941, -73.77624261481056 40.755967996838436, -73.77625959247092 40.7560509756183, -73.77625611353389 40.75605194681302, -73.77623913587458 40.75596896893313, -73.77621650064319 40.75585833085707, -73.7761938643028 40.755747692772474, -73.77617122803765 40.75563705468166, -73.77614827961773 40.755524887815454)))",Q387C,6259,Q387C,Q-11,Q-11,Q-11,Q-11,Clearview Exwy. bet. 46 Ave. and 48 Ave.,411,19,111,11361,Q,0.02,False,Strip,No,100000472,PARK,,19571015000000.00000,,DPR,True,Park,N,Park,Type 1,Strip,http://www.nycgovparks.org/parks/Q387C/,No,25,11,6,{E8B41257-0D38-4978-A476-F9EDC6183CFE} +"MULTIPOLYGON (((-73.98958343495762 40.70140111396508, -73.98958340766555 40.70140161014469, -73.9895765036736 40.70140018220826, -73.98948822922534 40.70138446114754, -73.9894025223447 40.701361971107296, -73.98932027518087 40.70133294630912, -73.98924234673694 40.701297689412634, -73.98916954985339 40.70125656791186, -73.98910264174239 40.70121001053185, -73.98904232162123 40.7011585036258, -73.98898921769818 40.70110258306872, -73.98894388362291 40.70104283245536, -73.98890679257237 40.70097987499482, -73.98887833133617 40.700914367205506, -73.98885879676925 40.70084699171065, -73.98884839224444 40.70077845093379, -73.98906075969661 40.700785438574925, -73.98961580329603 40.70080370104342, -73.98959082429968 40.70126472129446, -73.98958343495762 40.70140111396508)), ((-73.98875929933348 40.70127192192886, -73.98879050655611 40.70077654613104, -73.98881816678495 40.70077745653764, -73.98882099474271 40.70084074479567, -73.98883193266983 40.700903519647945, -73.98885087301498 40.700965181340806, -73.98887763722912 40.701025140918226, -73.98891196866488 40.7010828229229, -73.98895353967279 40.7011376780044, -73.98900195160076 40.70118918111834, -73.98905674070879 40.701236838731504, -73.98911738526685 40.701280195126515, -73.98918330437077 40.70131883690465, -73.98907224684395 40.701295860658185, -73.98875929933348 40.70127192192886)))",B223IA,5808,B223IA,B-02,B-02,B-02,B-02,"BQE, Prospect St. bet. Washington St. and Adams St.",302,33,84,11201,B,0.947,False,Clumber Corner,Yes,100004506,PARK,20100106000000.00000,19470729000000.00000,,DPR,True,Clumber Corner,Y,Clumber Corner,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223IA/,No,52,26,7,{CB6830B4-C13B-4541-9FAE-D2D89B1B5627} +"MULTIPOLYGON (((-74.01217155257838 40.71632572475649, -74.01195033304006 40.71625499664865, -74.01196296890735 40.71620650196247, -74.01193498868713 40.71620097303247, -74.01196564518311 40.71608331909398, -74.01224968327236 40.71621155609277, -74.01217155257838 40.71632572475649)))",M366,4749,M366,M-01,M-01,M-01,M-01,Warren St. bet. Greenwich St. and West St.,101,1,1,10007,M,0.096,False,Tribeca Dog Run,No,100004227,PARK,20100106000000.00000,20050630000000.00000,114 WARREN STREET,DPR,False,Tribeca Dog Run,Y,Tribeca Dog Run,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/M366/,No,66,26,10,{EF9A8A19-2561-4549-8583-22EA08792D9F} +"MULTIPOLYGON (((-74.02065160817055 40.63807104940813, -74.0206547959488 40.638069770098994, -74.02073765914602 40.63815416710986, -74.02084165311877 40.63826550735459, -74.02083930849265 40.63826776267841, -74.02074664063848 40.63816854947543, -74.02065160817055 40.63807104940813)))",B210N,5611,B210N,B-07,B-07,B-07,B-07,4 Ave. bet. BQE and 64 St.,307,38,72,11220,B,0.002,False,Strip,No,100004069,PARK,20100106000000.00000,19581230000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210N/,No,51,23,10,{4ECDC948-6BD1-4C4C-BD60-03C169459989} +"MULTIPOLYGON (((-73.88979677073556 40.725891749735865, -73.88977749236541 40.725890922625084, -73.88975215754814 40.725889835768555, -73.88973746510656 40.72566272305132, -73.88974146405019 40.725663139314186, -73.88975590954357 40.725886416523544, -73.8898016117369 40.7258890312277, -73.88979677073556 40.725891749735865)))",Q360Y2,6062,Q360Y2,Q-05,Q-05,Q-05,Q-05,Behind overpass at 58 Rd. and LIE Sr. Rd. S.,405,30,104,11378,Q,0.002,False,Strip,No,100008314,PARK,20110712000000.00000,19581125000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q360Y2/,No,30,15,6,{CB5AE960-81BC-441A-A154-15D847FAC342} +"MULTIPOLYGON (((-73.93833661623387 40.802554565807675, -73.93835981610772 40.80252220077297, -73.93856062929784 40.80260698370004, -73.93853742830707 40.802639348774086, -73.93833661623387 40.802554565807675)))",M346,5003,M346,M-11,M-11,M-11,M-11,Lexington Ave. bet. E. 122 St. and E. 123 St.,111,8,25,10035,M,0.02,False,Life Spire Garden,No,100003795,PARK,20100106000000.00000,20021120000000.00000,2015 LEXINGTON AVENUE,DPR,False,Life Spire Garden,N,Life Spire Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M346/,No,68,30,13,{22C1355C-AB60-406C-B569-7F9BF19DF3BA} +"MULTIPOLYGON (((-73.95422946374332 40.74202958324348, -73.95426087471552 40.74203586415239, -73.95426622170478 40.74203728277349, -73.95427121189674 40.742039319901004, -73.95427572100938 40.74204192595785, -73.95427963897792 40.7420450369643, -73.95428286877066 40.742048575438375, -73.95428533112123 40.74205245489988, -73.95428696452953 40.74205657897027, -73.9542877299933 40.74206084767779, -73.95428760745838 40.742065153854135, -73.9542866005483 40.74206939304193, -73.95411423092008 40.74256771193805, -73.95409193607229 40.74263564901098, -73.9540909755711 40.742637799939395, -73.95408956052687 40.74263980120251, -73.95408773123255 40.7426415978853, -73.95408553744979 40.742643139579314, -73.95408303958918 40.74264438578572, -73.95408030516208 40.742645300511185, -73.95407740995898 40.7426458603727, -73.95407443331736 40.74264604919275, -73.9540714569352 40.742645861600906, -73.95406856131909 40.74264530303227, -73.95406582578474 40.742644388827145, -73.95406332727373 40.74264314332993, -73.95406113206383 40.742641602587284, -73.95405930287833 40.74263980624667, -73.95405788704072 40.74263780565577, -73.95405692476888 40.742635654861104, -73.95402653919518 40.74251563666488, -73.95418538553527 40.74204915624987, -73.95418724952329 40.74204508850024, -73.9541899278908 40.74204129302763, -73.95419335308806 40.742037862557375, -73.95419744217874 40.742034882604635, -73.95420209447649 40.74203242516979, -73.95420719391022 40.74203055234169, -73.95421261613295 40.74202930909614, -73.95421822851998 40.742028725997635, -73.95422389016936 40.74202881829879, -73.95422946374332 40.74202958324348)))",Q435,6316,Q435,Q-02,Q-02,Q-02,Q-02,Vernon Blvd. bet. 50 Ave. and 51 Ave.,402,26,108,11101,Q,0.135,False,Vernon Mall,Yes,100000398,PARK,20090423000000.00000,19670727000000.00000,,DPR,True,Vernon Mall,Y,Vernon Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q435/,No,37,12,12,{D7EA04DC-BA6C-4BC5-BB60-FBC6DCDEC0BD} +"MULTIPOLYGON (((-73.90607424555895 40.83855450553742, -73.9060970321968 40.83851235756054, -73.90637774908507 40.8386026423639, -73.90635858590515 40.83863393698223, -73.90625940394781 40.83875059465034, -73.90624454655243 40.838768802268085, -73.90619869256841 40.83882596345996, -73.9061463254769 40.83889576496958, -73.90606065444858 40.83900600933193, -73.90597796236504 40.8391165469167, -73.90582623981098 40.839321105393935, -73.90576852233097 40.839396586275264, -73.9057644881998 40.83940104762789, -73.9057595489901 40.83940494813366, -73.90575383764788 40.83940818344384, -73.90574750724896 40.8394106681365, -73.90574072744629 40.8394123330122, -73.90573367971272 40.839413134995354, -73.90572655379182 40.83941305172879, -73.9057195429496 40.83941208517135, -73.90571283330226 40.83941026249008, -73.90570660619252 40.83940763245989, -73.90570102870669 40.839404263655055, -73.90569625010963 40.83940024984906, -73.90569239830835 40.839395695603834, -73.90568957865229 40.83939072617425, -73.90568786565487 40.83938547219297, -73.90568730653936 40.83938007777765, -73.90568791296086 40.839374685215866, -73.90600937322971 40.83869223096821, -73.90607424555895 40.83855450553742)))",X057,6145,X057,X-04,X-04,X-04,X-04,Clay Av bet. E 171 St and Claremont Pkwy,204,16,44,10456,X,0.28,False,Michel Triangle,Yes,100004852,PARK,20100106000000.00000,19400522000000.00000,,DPR,False,Michel Triangle,Y,Michel Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X057/,No,77,33,15,{DED05168-F609-4B28-AF17-04A6F430425A} +"MULTIPOLYGON (((-73.78617328376548 40.697786934522824, -73.78618728814591 40.69778648776971, -73.78620393732848 40.69778665647708, -73.7862234406799 40.69778782735359, -73.78623965519387 40.69778960987183, -73.7862556213277 40.69779210333344, -73.78627022417724 40.697795047220225, -73.78628525756709 40.69779877265115, -73.78629970468957 40.69780305260928, -73.78631138408934 40.697807045565725, -73.78632558696725 40.697812592992285, -73.78634047358665 40.69781929164405, -73.78635420539882 40.697826367267076, -73.78636707564061 40.69783387984002, -73.78638061211156 40.69784283987517, -73.7864011607573 40.69785898822629, -73.7865269734571 40.697990107903145, -73.78653046628732 40.69799452060136, -73.78653254600778 40.69799868483797, -73.78653364052188 40.69800272837928, -73.78653382685556 40.69800809219213, -73.78653245267647 40.698013791704305, -73.78653011580525 40.69801825122284, -73.7865264041354 40.69802269108156, -73.78652196519779 40.6980262695994, -73.78651828804688 40.698028427616926, -73.78651321357079 40.69803058034092, -73.78650816160757 40.698031983877925, -73.78650112931992 40.69803291547344, -73.7864973287693 40.6980329651558, -73.78649311289347 40.69803265386158, -73.78649076892111 40.69803231001919, -73.78648798554481 40.69803173482976, -73.78648496757252 40.69803089175209, -73.78599891417596 40.69785496042788, -73.78599572203203 40.697853460538006, -73.78599275906197 40.69785170532796, -73.78599000169768 40.69784966503688, -73.78598747486099 40.697847316297725, -73.78598473597921 40.697843941477615, -73.78598257975653 40.697840031934476, -73.78598120856793 40.69783557183536, -73.78598086535607 40.69783117668385, -73.78598122705294 40.697827970622406, -73.78598210805937 40.697824797945195, -73.78598323919432 40.697822213769385, -73.785985000784 40.6978193173867, -73.78598746190137 40.69781633765635, -73.78599074288617 40.69781338196324, -73.78599485728309 40.697810653849025, -73.78599803451594 40.69780905774049, -73.78600258928732 40.69780736333552, -73.7860084101051 40.697806024286244, -73.78614546151348 40.69778943849137, -73.78615199163517 40.69778865547, -73.78615971554754 40.69778788457199, -73.78617328376548 40.697786934522824)))",Q043,5865,Q043,Q-12,Q-12,Q-12,Q-12,"Merrick Blvd., 169 Pl., 108 Rd.",412,27,103,11433,Q,0.13,False,Proctor-Hopson Circle,Yes,100000302,PARK,20090423000000.00000,19240930000000.00000,,DPR,Unkwn,Proctor-Hopson Circle,N,Proctor-Hopson Circle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q043/,No,32,14,5,{91C33599-933B-4444-AEFD-7BC2C3BD6C4A} +"MULTIPOLYGON (((-73.8816660797557 40.668625788911825, -73.88198468130544 40.66857917586947, -73.88200136783915 40.66864380773884, -73.88201777719134 40.668707368606995, -73.88169917269022 40.66875397993679, -73.88168700626024 40.66870685060683, -73.88168276481134 40.668690419925305, -73.88166962348784 40.66863951822778, -73.8816660797557 40.668625788911825)))",B460,5257,B460,B-05,B-05,B-05,B-05,Elton St. between Dumont Ave. and Blake Ave.,305,42,75,11208,B,0.097,False,Elton St Block Association,No,100003759,PARK,20100106000000.00000,20121120000000.00000,583 ELTON STREET,DPR,False,Elton St Block Association,N,Elton St Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B460/,No,60,19,8,{21927C6E-E778-4638-BD15-C8E0C0FB97FA} +"MULTIPOLYGON (((-73.90044104098514 40.87436475618061, -73.90055188227552 40.87399366683457, -73.90143739386093 40.87416281516215, -73.90135665026503 40.87440145303117, -73.9013377225865 40.874451772348, -73.90130781767411 40.87452617754076, -73.90126794263631 40.874617486266416, -73.90121261246054 40.8747324582867, -73.90116023248157 40.87483147705326, -73.90109376838528 40.87494634312374, -73.9010267489654 40.87505236858439, -73.9009852531428 40.87511389936983, -73.90090557651949 40.875224598236464, -73.90084347413907 40.87530499901315, -73.90076540094067 40.87539982715244, -73.90071984784933 40.87545230174241, -73.90065933609554 40.875519083001336, -73.90057721502949 40.87560488463425, -73.90055301511235 40.87563087078156, -73.90054451771789 40.875637754894655, -73.9005338355545 40.87564432015227, -73.90052526256531 40.875647808458, -73.90051733636929 40.87565034550464, -73.90050802538917 40.87565230414396, -73.90049997971808 40.875653023901314, -73.90049185543116 40.8756531627755, -73.90048223378652 40.875652637598584, -73.90047119556597 40.875650582170294, -73.90045913172546 40.875647356122165, -73.90044758567593 40.87564218186314, -73.90043693883514 40.875635450534176, -73.90042817540427 40.87562747185219, -73.90042135704951 40.87561667722044, -73.90041708453512 40.87560750206186, -73.9004161729339 40.87559990835906, -73.90041688596023 40.87559038000858, -73.90046607179859 40.875431027929444, -73.90049069310783 40.875349365878144, -73.90052010492127 40.87524620249039, -73.90055562257957 40.87511853396567, -73.90057543868589 40.8750251929208, -73.90059070618877 40.87494147867495, -73.9006035659187 40.874858214397165, -73.9006064256156 40.874799849911035, -73.90060397064293 40.874743812210994, -73.90059620009971 40.87468674517614, -73.90058826080876 40.87464971746181, -73.9005787152386 40.87461507285587, -73.90056310784416 40.874569926933965, -73.90054397639648 40.87452524532597, -73.90052418381947 40.874486364090465, -73.9005039968346 40.87445182916844, -73.9004678364662 40.87439879164016, -73.90044104098514 40.87436475618061)), ((-73.89820261947256 40.8728250121048, -73.8980021534897 40.87179586013315, -73.89837874340968 40.87188748753573, -73.89849034430344 40.87219625349702, -73.89850508802144 40.87223704509775, -73.89855527066597 40.87237588515175, -73.89858428694332 40.872456162208884, -73.89868416994842 40.872732504561945, -73.89846031952925 40.873379373707444, -73.89840317612205 40.873391273796926, -73.89838187150137 40.873352334122615, -73.89835867119048 40.87330718930875, -73.8983312185307 40.87324929883026, -73.89830780903105 40.87319515343765, -73.89827951282963 40.87312186744935, -73.89825500450665 40.87304860100164, -73.89823881508873 40.872992805959896, -73.89822242500532 40.872927072045385, -73.89820648248525 40.87284796986828, -73.89820261947256 40.8728250121048)), ((-73.8986215276441 40.8736990042643, -73.89881931349686 40.87313473542391, -73.8988470631851 40.87320895190529, -73.89903856687367 40.87372114458699, -73.89943447049458 40.87378995801446, -73.89936470796296 40.874023788268396, -73.89932025042388 40.874024060159385, -73.89926791566732 40.87402204241949, -73.89921648708547 40.874017790434934, -73.89914423553354 40.874007021405966, -73.89906489316174 40.87398938080612, -73.89902404147921 40.87397752165499, -73.89894009114332 40.87394608865807, -73.89886992970754 40.873912890120074, -73.89879276418546 40.873867334296996, -73.89875898763253 40.87384311034584, -73.89873912428708 40.87382736858845, -73.89871879849525 40.8738099344039, -73.89870298352294 40.87379531459984, -73.89867494713576 40.87376671928815, -73.89865255106275 40.87374085920415, -73.89863078300102 40.87371237834534, -73.8986215276441 40.8736990042643)), ((-73.89957961093869 40.87401844017083, -73.89963808939503 40.87382254745879, -73.90035241467254 40.87395463058946, -73.90026506089755 40.87424937953476, -73.90024262285645 40.87423278575152, -73.90020462699377 40.8742070151412, -73.9001776919878 40.87419019863761, -73.90011451783009 40.87415492317214, -73.90006956093247 40.874132983472705, -73.90001185420293 40.874108237593425, -73.89996275284983 40.87408993133384, -73.899901350249 40.87407029696941, -73.89985343079735 40.87405732257979, -73.89981662535081 40.874048680163526, -73.89974342819445 40.87403475177557, -73.89969896270296 40.87402849526449, -73.89967483170444 40.87402546845817, -73.89963541730475 40.874021733178836, -73.89960251552236 40.874019736091824, -73.89957961093869 40.87401844017083)), ((-73.89792426932358 40.87100796615648, -73.89792644943762 40.87100270832902, -73.89809331383371 40.87107684448105, -73.89818055443 40.871324400154535, -73.89831454895501 40.87170461555069, -73.89798464365306 40.87162293549256, -73.89790407229485 40.871187826354735, -73.89790318981139 40.87118235510385, -73.89790239986765 40.87117687673092, -73.89790170483737 40.871171390337516, -73.89790110234527 40.87116589772259, -73.8979005935777 40.87116039888712, -73.89790017971661 40.87115489653366, -73.89789985838955 40.87114939066012, -73.89789963078266 40.87114388126756, -73.89789949689323 40.871138370156906, -73.89789945553355 40.87113285822765, -73.89789951144594 40.87112734728495, -73.89789965988668 40.87112183642409, -73.89789990203921 40.87111632744713, -73.89790023671586 40.87111082125346, -73.89790066628645 40.87110531964625, -73.8979011895646 40.8710998226243, -73.89790180655032 40.87109433018777, -73.89790251723805 40.87108884593852, -73.89790332044569 40.871083367174016, -73.89790421616765 40.871077897496264, -73.89790520677643 40.87107243690735, -73.89790628871052 40.871066987205076, -73.89790746434232 40.87106154839155, -73.8979087324856 40.871056120465724, -73.89791009313483 40.87105070702954, -73.89791154629131 40.87104530718252, -73.8979130919551 40.87103992092461, -73.89791472656319 40.8710345509542, -73.89791645367431 40.87102919727436, -73.89791827209953 40.87102386168507, -73.89792018065522 40.87101854238424, -73.89792218051798 40.87101324567639, -73.89792426932358 40.87100796615648)))",X038,4806,X038,X-08,X-08,X-08,X-08,Resevoir Av bet. Sedgwick Av and Goulden Av,208,14,50,10468,X,4.637,False,Washington's Walk,Yes,100004945,PARK,20100106000000.00000,19130723000000.00000,2890 SEDGWICK AvNUE,DPR,True,Washington's Walk,No,Washington's Walk,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X038/,No,"78, 81",33,13,{BE7924A6-D7E2-432B-8B37-C1CD7393219A} +"MULTIPOLYGON (((-73.98623518828349 40.67825130680225, -73.98640342927028 40.67800259748124, -73.98647141161015 40.67802895274993, -73.98630317081057 40.67827766126904, -73.98623518828349 40.67825130680225)))",B570,13892,B570,B-06,,,B-06,President St. bet. Nevins St. and 3 Ave.,306,39,,11215,B,0.052,False,,,100037094,PARK,,20160209000000.00000,503 PRESIDENT STREET,DPR,False,President Street Garden,,Dolly's Park,,Garden,,No,52,25,7,{238819CA-BB4A-4C37-B8F3-96F1DF7B4C51} +"MULTIPOLYGON (((-73.82708342453387 40.70731481074666, -73.8270388687595 40.70709237202679, -73.82726525863892 40.707296271135085, -73.82708342453387 40.70731481074666)))",Q206,5891,Q206,Q-09,Q-09,Q-09,Q-09,"125 St., Austin St., 84 Dr.",409,29,102,11415,Q,0.045,False,Eight Oaks Triangle,Yes,100000377,PARK,20090423000000.00000,19411030000000.00000,,DPR,True,Eight Oaks Triangle,N,Eight Oaks Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q206/,No,27,14,6,{F10496A8-78E4-4FC7-8903-A8D7F0DBC20C} +"MULTIPOLYGON (((-73.92213790719099 40.740933928839304, -73.92288867134796 40.74060327503102, -73.92271061728131 40.74148440038538, -73.92204137830255 40.74140405089872, -73.92213790719099 40.740933928839304)))",Q044,5440,Q044,Q-02,Q-02,Q-02,Q-02,"47 Ave., Greenpoint Ave. bet. 42 St. and 43 St.",402,26,108,11104,Q,1.05,False,L/Cpl Thomas P. (Noonan Playground),Yes,100000303,PARK,20090423000000.00000,,42-01 GREENPOINT AVENUE,DPR,True,L/CPL Thomas P. Noonan Jr. Playground,Y,L/CPL Thomas P. Noonan Jr. Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q044/,No,37,12,14,{338E4CA0-688F-44E9-B1E5-D36E77BB68AB} +"MULTIPOLYGON (((-73.97272908330662 40.6811016649885, -73.97282350690563 40.68083733235722, -73.97277529042579 40.68078530905438, -73.97262832361432 40.68075456124665, -73.97273716507082 40.680449871051486, -73.9735827844019 40.680626611434825, -73.9734828218754 40.680903982865715, -73.97355799936742 40.6809197096379, -73.97354845960061 40.68094617896302, -73.9736249074619 40.68096217343614, -73.97363438799123 40.68093586978585, -73.97378652797101 40.68096769900396, -73.97366706467812 40.68129918254237, -73.97272908330662 40.6811016649885)))",B232,4832,B232,B-08,B-08,B-08,B-08,Dean St. to Bergen St. between 6 Ave. and Carlton Ave.,308,35,78,11217,B,1.3,False,Dean Playground,Yes,100004462,PARK,20100106000000.00000,19480726000000.00000,500 DEAN STREET,DPR,True,Dean Playground,Y,Dean Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B232/,No,57,25,9,{FCDB51BD-289C-47FF-8CBE-D3D683922588} +"MULTIPOLYGON (((-73.91372888545921 40.84489616478916, -73.9139170347717 40.84463648162629, -73.9142452597811 40.84477022418336, -73.91412636666524 40.84493253512789, -73.91327388111898 40.84494310037039, -73.91340303119324 40.844763386973085, -73.91372888545921 40.84489616478916)))",X148C7,5694,X148C7,X-04,X-04,X-04,X-04,S/s Cross Bronx Exwy bet. Townsend Av and Jerome Av,204,14,44,10452,X,0.345,False,Jerome Playground South,Yes,100005156,PARK,20100106000000.00000,19480923000000.00000,,DPR,True,Jerome Playground South,Y,Jerome Playground South,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/X148C7/,No,77,29,15,{7D4BA24A-F448-49C2-BA1D-DD02B290FC59} +"MULTIPOLYGON (((-73.91394888499298 40.665088245111974, -73.91430600902744 40.665036150272414, -73.91432508855624 40.66511019233367, -73.91434243949949 40.66517752875955, -73.91398531473764 40.66522962281081, -73.9139855359585 40.665230482068836, -73.91399185254953 40.66525499614573, -73.9140026653689 40.66529695928702, -73.91402001603642 40.665364294859515, -73.91403349534053 40.66541660152007, -73.91367765005961 40.66546850826463, -73.9136358578824 40.66530692246106, -73.91359273741429 40.665140194593306, -73.91394888499298 40.665088245111974)))",B440,5243,B440,B-16,B-16,B-16,B-16,Blake Ave. between Herzl St. and Amboy St.,316,41,73,11212,B,0.391,False,Amboy Neighborhood Center,No,100004002,PARK,20100106000000.00000,20021120000000.00000,212 AMBOY STREET,DPR,False,Amboy Neighborhood Center,N,Amboy Neighborhood Center,Greenthumb,Garden,http://www.nycgovparks.org/parks/B440/,No,55,20,9,{7B77AEE2-CC1E-4636-B081-0AD78E3BC628} +"MULTIPOLYGON (((-73.9263203878427 40.75604544216794, -73.92601453652284 40.75590253402352, -73.92601687735868 40.75589964850624, -73.92625038113826 40.75561189670978, -73.92625170095906 40.755610270341236, -73.92625255068987 40.755612886853896, -73.92655979440279 40.75575311625657, -73.92654835367703 40.75576716495309, -73.92632710611092 40.75603881063977, -73.92632612606958 40.75603837056628, -73.9263203878427 40.75604544216794)))",Q470,4635,Q470,Q-01,Q-01,Q-01,Q-01,35th St. bet. 35 Ave. and 36 Ave.,401,26,114,11106,Q,0.29,False,A.R.R.O.W. REC CENTER,No,100000264,PARK,20090423000000.00000,19951129000000.00000,35-38 35 STREET,DPR,False,A.R.R.O.W. Field House,Y,A.R.R.O.W. REC CENTER,Greenthumb,Buildings/Institutions,http://www.nycgovparks.org/parks/Q470/,No,30,12,12,{EAD0701F-4051-4CB3-8B48-04F61A3DAD25} +"MULTIPOLYGON (((-74.16375018086438 40.63095323297965, -74.16376522140392 40.6303389463627, -74.16519171551263 40.630354853984095, -74.16516745159434 40.63134675781611, -74.16435697551225 40.6313352470902, -74.16375018086438 40.63095323297965)))",R068,6399,R068,R-01,R-01,R-01,R-01,"Grandview Ave., at Continental Pl.",501,49,120,10303,R,3.014,False,Grandview Playground (The Big Park),Yes,100004652,PARK,20100106000000.00000,19570627000000.00000,110 CONTINENTAL PLACE,DPR/NYCHA,True,The Big Park,Y,The Big Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R068/,No,63,23,11,{0B3306BE-7D3F-437C-9A98-A4B67AF177F9} +"MULTIPOLYGON (((-74.00192654219055 40.732966207806435, -74.00210477229002 40.732903783263986, -74.00231923153225 40.733160767052404, -74.00192654219055 40.732966207806435)))",M287,5948,M287,M-02,M-02,M-02,M-02,"Washington Pl., W. 4 St., Barrow St.",102,3,6,10014,M,0.07,False,Sheridan Square Viewing Garden,Yes,100003726,PARK,20100106000000.00000,19890615000000.00000,,DPR,True,Sheridan Square Viewing Garden,Y,Sheridan Square Viewing Garden,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M287/,No,66,27,10,{D7F2B419-0A7C-444D-8873-F1476886F817} +"MULTIPOLYGON (((-73.93262684386723 40.67434885921112, -73.93259139770304 40.67470340280377, -73.93250525668881 40.67469872275376, -73.93254071285347 40.67434409724618, -73.93262684386723 40.67434885921112)))",B540,5497,B540,B-08,B-08,B-08,B-08,St Mark's Ave. bet. Schenectady Ave. and Utica Ave,308,36,77,11213,B,0.073,False,Neighborhood Community Garden,No,100008343,PARK,20130114000000.00000,20021120000000.00000,1123 ST MARK'S AVENUE,DPR,False,Neighborhood Community Garden,,Neighborhood Community Garden,,Garden,,No,56,25,9,{A0189D84-FDF4-46BD-8FB5-F72A1CB27FBB} +"MULTIPOLYGON (((-73.93487583980645 40.67791854941076, -73.93486864729394 40.67791829499641, -73.93486153372642 40.677918352204394, -73.93485443173113 40.67791867146835, -73.9348473590486 40.67791925459927, -73.93484033224368 40.677920096203536, -73.9348333655065 40.677921199891145, -73.93482648013496 40.67792255847015, -73.93481968795813 40.67792417104671, -73.9348130079064 40.6779260322285, -73.9348064541762 40.67792813932203, -73.93480004215037 40.67793048603237, -73.93479378839376 40.67793306696592, -73.93478770592172 40.677935877627526, -73.93478181011976 40.677938909020746, -73.93477611518797 40.67794215485001, -73.93477063414434 40.6779456079187, -73.93476538119167 40.67794925922972, -73.93476036698236 40.67795310158497, -73.93475560335527 40.67795712418508, -73.93475110214655 40.67796131893211, -73.9347468751951 40.67796567502666, -73.93474293079034 40.677970182567826, -73.93473927958838 40.67797483075544, -73.9347359286967 40.6779796087874, -73.93473288640674 40.6779845049618, -73.93473016219244 40.67798950757727, -73.93472781171378 40.6779945482263, -73.93472568459586 40.677999786214734, -73.93472394306575 40.67800503792964, -73.9347227703241 40.67801044395522, -73.9347219157282 40.6780158852814, -73.93472137928954 40.678021350201384, -73.93472116575101 40.67802682701134, -73.93472127157396 40.678032305803455, -73.93472169913366 40.67803777667349, -73.93472244725986 40.678043227013525, -73.93472351359837 40.678048645115595, -73.93472489697437 40.67805402287432, -73.93472659503377 40.67805934858169, -73.93472860187391 40.67806461052764, -73.93473096960538 40.67806974120311, -73.93473353247207 40.678074904407765, -73.93473644442217 40.67807991562337, -73.93473970191702 40.678084764942206, -73.93474318893645 40.678089557658694, -73.93474527291572 40.6780921433181, -73.93441715876766 40.67807520808852, -73.93408581464817 40.67805810527862, -73.93408947188115 40.678054586360794, -73.93409359362563 40.678050214020885, -73.9340974458247 40.678045700145574, -73.93410102018711 40.67804105643694, -73.93410431078892 40.678036292797145, -73.93410730815864 40.67803141822605, -73.9341100087364 40.678026444428234, -73.93411240305058 40.67802138040352, -73.93411448990696 40.67801623785789, -73.93411626337985 40.678011028494716, -73.93411771872911 40.67800576131638, -73.93411885357682 40.67800044892877, -73.93411966673033 40.677995101236874, -73.93412015462609 40.67798973354743, -73.93412031607518 40.677984352163314, -73.93412015342916 40.67797897149415, -73.93411966312883 40.677973602344046, -73.93411872815204 40.67796816630128, -73.93411743946787 40.67796277328064, -73.93411579824767 40.67795743498953, -73.93411381157425 40.67795216584021, -73.93411148180085 40.67794697844121, -73.9341088171949 40.677941885404486, -73.93410582129161 40.67793690023975, -73.93410250354202 40.67793203465907, -73.93409887339631 40.677927301275055, -73.93409493675892 40.67792270999669, -73.93409070426199 40.67791827433778, -73.93408618772301 40.67791400511125, -73.93408139896138 40.67790991132895, -73.93407634624533 40.67790600470231, -73.93407104612554 40.677902294245904, -73.93406550923847 40.67789878897096, -73.93405974976817 40.67789549879124, -73.93405378308607 40.67789242911858, -73.93404762219251 40.67788959076658, -73.93404128364158 40.677886989147844, -73.93403478280372 40.6778846305747, -73.93402813741416 40.677882522261456, -73.9340213616641 40.67788066691769, -73.93401447210573 40.677879071757076, -73.93400748647967 40.67787773859078, -73.93400042370567 40.67787667283267, -73.93399329915941 40.677875875392125, -73.93398613176336 40.677875348981516, -73.93397893925713 40.6778750963126, -73.93397182451152 40.67787515256441, -73.93396472251659 40.67787547177342, -73.93395764983177 40.67787605394917, -73.93395062301832 40.677876897300095, -73.93394365863837 40.677877999134225, -73.93393677206949 40.6778793585598, -73.93392997987642 40.67788097018336, -73.93392329862044 40.67788283221331, -73.93391674486642 40.67788493925616, -73.93391033399625 40.677887285917635, -73.93390407902645 40.67788986680217, -73.93389799770456 40.677892676516905, -73.93389210186598 40.67789570786453, -73.93388640689457 40.67789895364982, -73.93388092580842 40.67790240667614, -73.93387567162675 40.677906058846325, -73.93387065618745 40.67790990026167, -73.93386589487457 40.67791392372684, -73.9338613936128 40.6779181184391, -73.93385716660592 40.677922474500974, -73.93385322214274 40.677926982912176, -73.93384957088203 40.67793163017109, -73.93384621992878 40.67793640817717, -73.93384317757636 40.67794130342751, -73.93384045211425 40.67794630602126, -73.93383804946747 40.67795140515567, -73.93383597438257 40.677956585524704, -73.93383423515004 40.677961836327015, -73.93383319366107 40.67796721180155, -73.93383248096703 40.67797261808269, -73.93383209944625 40.67797804256456, -73.93383204674204 40.67798347624067, -73.93383232641727 40.677988904704875, -73.93383293493339 40.6779943180494, -73.93383387348577 40.67799970366771, -73.93383513853678 40.67800505075166, -73.9338367265487 40.678010348493025, -73.93383863398746 40.678015582481436, -73.93384085967827 40.67802074461165, -73.93384339890157 40.67802582317418, -73.93384624338924 40.67803080645766, -73.9338493872388 40.67803568275189, -73.93385282454422 40.67804044394881, -73.93385743909906 40.67804605951046, -73.9335327041028 40.67802738840876, -73.93314833813713 40.6780052886192, -73.93317787191447 40.67773518464299, -73.93571084034174 40.677872781163614, -73.93568358122275 40.67814602084268, -73.9353066044596 40.678124855422, -73.93496997792506 40.67810595476091, -73.93497485508384 40.67810195022647, -73.93497923684953 40.67809772748726, -73.93498335853923 40.67809335421497, -73.9349872106797 40.678088841210446, -73.93499078498245 40.67808419747414, -73.93499407433998 40.6780794338083, -73.93499707164666 40.67807455921401, -73.93499977215886 40.67806958629588, -73.93500216759075 40.67806452135285, -73.93500425319702 40.67805937879045, -73.93500602660244 40.67805416851304, -73.93500748306435 40.678048902224695, -73.93500861784192 40.67804358982832, -73.93500942973998 40.67803824393054, -73.9350099175662 40.678032874436276, -73.93501008012646 40.67802749305164, -73.93500991622568 40.6780221123831, -73.93500942703628 40.678016743237485, -73.93500849198635 40.67801130720197, -73.93500720322939 40.6780059141913, -73.93500556193686 40.67800057591294, -73.9350035751919 40.67799530677902, -73.93500119206354 40.67799017790145, -73.9349985262051 40.67798508488469, -73.9349955302325 40.677980100643644, -73.93499221359954 40.67797523418877, -73.93498858220727 40.677970499031176, -73.93498464550433 40.67796590958427, -73.93498041294636 40.67796147305761, -73.9349758963475 40.677957203866036, -73.93497116081146 40.677953052517964, -73.93496610804095 40.67794914502988, -73.93496080786734 40.67794543551503, -73.93495527092988 40.677941930282906, -73.93494951259571 40.67793863924786, -73.9349435446851 40.677935570521235, -73.93493738611528 40.677932732218245, -73.9349310463427 40.67793013064786, -73.93492454546922 40.677927772124995, -73.9349178988653 40.67792566296196, -73.93491112308516 40.67792380857114, -73.93490423350111 40.67792221346379, -73.93489724903556 40.677920880352204, -73.93489018624277 40.67791981464871, -73.93488306168128 40.677919017263285, -73.93487583980645 40.67791854941076)))",B403,4889,B403,B-03,B-03,B-03,B-03,Troy Ave. to Schenectady Ave. between Atlantic Ave. and Herkimer St.,303,36,81,11213,B,1.56,False,Harmony Park,Yes,100004255,PARK,20100106000000.00000,19971124000000.00000,1589 ATLANTIC AVENUE,DPR,False,Harmony Park,Y,Harmony Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B403/,No,56,25,8,{68A1BEC2-2949-4F3F-8297-A0013A452D96} +"MULTIPOLYGON (((-74.18977570007709 40.530170301494046, -74.18990816200673 40.53011696739657, -74.19008123990507 40.530357590711745, -74.19025431904964 40.530598213761515, -74.18945555021017 40.53092082935217, -74.18938090900193 40.53081705837929, -74.18931329559894 40.530723057323605, -74.18928191384275 40.53067942886899, -74.1894171876117 40.53062496234241, -74.1892441114142 40.5303843389316, -74.18964164293064 40.53022427835005, -74.18977570007709 40.530170301494046)), ((-74.18938194995008 40.529863194724186, -74.18951819574967 40.52980792859934, -74.1896929775379 40.53004837948899, -74.18968848489921 40.5300501924747, -74.1895565761804 40.53010343265089, -74.18942601587736 40.530156130132184, -74.18929677451426 40.53020829307653, -74.1891642969579 40.53026176247288, -74.18903363229245 40.530314500202046, -74.18896536866065 40.5302205882621, -74.18889437184035 40.5301229147625, -74.1888595998037 40.53007507819033, -74.1889901160348 40.5300221364818, -74.18912244278353 40.52996846041146, -74.18925153808286 40.529916096183975, -74.18938194995008 40.529863194724186)))",R131,6202,R131,R-03,R-03,R-03,R-03,Billiou St. and Comely St. bet. Huguenot Ave. and Kingdom Ave.,503,51,123,10312,R,1.53,False,Huguenot Ponds Park,No,100004839,PARK,20100106000000.00000,19941230000000.00000,,DPR,False,Huguenot Ponds Park,N,Huguenot Ponds Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R131/,No,62,24,11,{F6EED441-ED59-44DB-A63C-7FB0BC1B3597} +"MULTIPOLYGON (((-73.8535066027878 40.83719626453498, -73.85447813696408 40.83709069302436, -73.85455386585424 40.83747908824684, -73.85357912288015 40.83758500751488, -73.8535066027878 40.83719626453498)))",X160,5998,X160,X-09,X-09,X-09,X-09,St. Raymond's Ave. bet. Odell St. and Purdy St.,209,18,43,10462,X,1,False,Caserta Playground,Yes,100003940,PARK,20100106000000.00000,19460109000000.00000,,DPR/DOE,False,Caserta Playground,Y,Caserta Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X160/,No,87,32,14,{C8909627-C160-4B69-9A1F-BCA4F5B8B15E} +"MULTIPOLYGON (((-73.88061462489688 40.84386799816928, -73.88095193586153 40.84349354789217, -73.88126053254155 40.84366161800965, -73.88133175821402 40.84357795441698, -73.88144949538692 40.84344580469236, -73.88148771682759 40.84340290393489, -73.88118763864074 40.843231891373875, -73.8811988616321 40.84321943199812, -73.88146241568109 40.84334856376887, -73.88149341713887 40.843312864039795, -73.88160794853664 40.843371855918335, -73.88171870573477 40.84342890324869, -73.88183343063466 40.84348799505495, -73.88195009625892 40.84354808557879, -73.88192036156117 40.843582325224816, -73.88219267057538 40.84373225216977, -73.8820967624504 40.84386155688837, -73.88179684243306 40.84369024262483, -73.88173095042697 40.843778141589226, -73.88203135871723 40.84394973477312, -73.88165428513403 40.84445810297817, -73.8812711777612 40.84424065525881, -73.88061462489688 40.84386799816928)))",X266,5751,X266,X-06,X-06,X-06,X-06,E. 180 St. bet. Daly Ave. and Vyse Ave.,206,17,48,10460,X,2.136,False,Vidalia Park,Yes,100003944,PARK,20100106000000.00000,19931230000000.00000,,DPR,True,Vidalia Park,Y,Vidalia Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X266/,No,87,32,15,{7D41912F-014D-4C25-977D-07413D8B08B8} +"MULTIPOLYGON (((-73.89572969728754 40.66077634969751, -73.89580850974066 40.66074093713794, -73.89588289625124 40.66103565096308, -73.89589586289712 40.66108702098518, -73.89590946537258 40.6611409148295, -73.89592312663385 40.66119504105846, -73.89561673420003 40.661239042753365, -73.895514165665 40.66125377214212, -73.8954962880679 40.66125383784888, -73.89548202626378 40.66125339444415, -73.89546748728955 40.661252488820544, -73.89545614606934 40.66125146092952, -73.89544589537095 40.66125028724431, -73.89543460229672 40.66124872088576, -73.8954242270713 40.661247023885075, -73.89541425653658 40.66124515795418, -73.89540243755022 40.66124263836735, -73.89539000561763 40.66123961753439, -73.89536830530584 40.661233395937145, -73.89534784794824 40.66122634969254, -73.89532957638163 40.6612190028595, -73.89531279537373 40.66121129447178, -73.89530331783489 40.66120649599607, -73.89529515702125 40.66120208864196, -73.89529066385148 40.66119954689506, -73.89528537926495 40.661196446107006, -73.89528125026212 40.661193938010435, -73.89527709421131 40.661191334434236, -73.8952714238571 40.661187648858814, -73.89526463040168 40.661183018518656, -73.89525747944597 40.66117787545844, -73.89524927899086 40.661171606696314, -73.89524074618889 40.66116462171988, -73.89523414726193 40.6611588632073, -73.89522607649167 40.66115134194243, -73.89521816013207 40.661143387668986, -73.89521087044274 40.6611354789917, -73.89520257267583 40.66112567200621, -73.89519802079116 40.66111986312642, -73.89519017524862 40.66110898853885, -73.89518469675501 40.6611006096392, -73.89517801321009 40.66108925703454, -73.89517254751816 40.66107875382633, -73.89516629966363 40.661064815333056, -73.89516207082679 40.661053605445176, -73.89515848194534 40.661042263764365, -73.89515628953345 40.661033992318266, -73.8952566622445 40.660988893113355, -73.89532308660863 40.66095904830879, -73.89540445199836 40.66092248838932, -73.89548445406967 40.66088654222664, -73.89556653521129 40.660849661358114, -73.8956473796573 40.66081333582856, -73.89572969728754 40.66077634969751)))",B527,5300,B527,B-05,B-05,B-05,B-05,"Alabama Ave., Newport St., Georgia Ave., New Lots Ave.",305,42,75,11207,B,0.546,False,United Community Centers - E New York F*,No,100003707,PARK,20100106000000.00000,20070410000000.00000,599 Alabama Av,DPR,False,United Community Centers - E New York Farms Project,N,United Community Centers - E New York F*,Greenthumb,Garden,http://www.nycgovparks.org/parks/B527/,No,60,19,8,{10896725-21DB-4325-A472-FC68387D4FA5} +"MULTIPOLYGON (((-73.91592928828673 40.82256846898328, -73.9160653100641 40.82231200497014, -73.916090090466 40.82231970063675, -73.91615809351855 40.82234082081477, -73.91622253352949 40.82236083525601, -73.91623752289077 40.8223654909053, -73.91631101937445 40.822388317821755, -73.91627563679596 40.82245502611686, -73.91624143165761 40.82251952273631, -73.91620973047887 40.82257988248358, -73.91617526499913 40.82264486426052, -73.91608651107286 40.82261729945168, -73.91600871073689 40.82259313652381, -73.91592928828673 40.82256846898328)))",X338,4692,X338,X-01,X-01,X-01,X-01,E 158 St bet. Melrose Av and Courtlandt Av,201,17,40,10451,X,0.171,False,Courtlandt Avenue Association Garden,No,100004934,PARK,20100106000000.00000,20041217000000.00000,366 EAST 158 STREET,DPR,False,Courtlandt Avenue Association Garden,Y,Courtlandt Avenue Association Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X338/,No,79,32,15,{E710A323-68D6-4D91-8F1D-20A76A64D08A} +"MULTIPOLYGON (((-73.90158526597187 40.815124117812616, -73.9014275283083 40.814803438349514, -73.90212779897205 40.81460616047001, -73.90235122420017 40.815058596002984, -73.90198862028981 40.81516074874583, -73.90201838718545 40.815221025434816, -73.90238099137717 40.81511887349983, -73.90244633895875 40.81525120288987, -73.9020837506937 40.81535338655952, -73.90097575826286 40.81566562970987, -73.90081599565748 40.8153408297228, -73.90158526597187 40.815124117812616)))",X179,6385,X179,X-02,X-02,X-02,X-02,Kelly St bet. Av St John and Leggett Av,202,17,41,10455,X,1.793,False,Playground 52 LII,Yes,100005015,PARK,20100106000000.00000,19580214000000.00000,680 Kelly Street,DPR/DOE,Part,Playground 52 LII,Y,Playground 52 LII,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X179/,No,84,32,15,{133B5C6D-8A19-4E44-83B9-33C253E75075} +"MULTIPOLYGON (((-73.90465323644139 40.852644601815804, -73.90460872975746 40.85262793023809, -73.90449557676162 40.85258553601708, -73.90425114303095 40.852490065871045, -73.9040350640224 40.85240880604418, -73.90396025160958 40.852379566050715, -73.90395646360838 40.852375561111415, -73.90395472400702 40.85236970466514, -73.90395637689032 40.85236334226532, -73.90395959019263 40.85235962500865, -73.90396365201993 40.85235714393304, -73.90397004082303 40.85235535547155, -73.9039774823806 40.852355451714935, -73.90430898444413 40.852435630505774, -73.90461238546848 40.852498461448995, -73.90483959814266 40.852534729099695, -73.90484696113612 40.85253670274758, -73.90485198090965 40.85253855109505, -73.90485678797054 40.852540700931605, -73.90486131349884 40.85254317741431, -73.90486713670451 40.85254712456964, -73.90487232356219 40.85255155386351, -73.90487557876502 40.852554995525885, -73.90487840198833 40.85255864754707, -73.90488082650384 40.85256246402944, -73.9048827788031 40.85256643140503, -73.90488473331337 40.85257217004979, -73.90488580767565 40.85257803944066, -73.90488595813791 40.85258312103997, -73.90488541366688 40.85258818675792, -73.90488417908581 40.85259318076806, -73.90488264933673 40.85259725513269, -73.90488015569223 40.85260197165371, -73.9048771013816 40.85260649230565, -73.9048727076098 40.852611392761055, -73.9048108613276 40.85268425546808, -73.90480630603062 40.852688486722215, -73.90479999692583 40.85269175750513, -73.90479406611074 40.85269338700336, -73.90478868490149 40.852693825604305, -73.90478198408725 40.85269319873452, -73.90477401140878 40.85269046636522, -73.90465323644139 40.852644601815804)))",X129,5777,X129,X-05,X-05,X-05,X-05,E. Burnside Ave. bet. Creston Ave. and G,205,14,46,10453,X,0.12,False,Devanney Triangle,Yes,100003877,PARK,20100106000000.00000,18880201000000.00000,,DPR,Unkwn,Devanney Triangle,Y,Devanney Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X129/,No,86,33,15,{1CD748DD-31A4-4F8E-B3BE-2D84413AFA24} +"MULTIPOLYGON (((-73.73453593160808 40.76171141229605, -73.73544978126986 40.76124717977285, -73.73619274848788 40.76242477200817, -73.735210215823 40.762783373279284, -73.73520895640043 40.762783491953286, -73.73453593160808 40.76171141229605)))",Q369,5326,Q369,Q-11,Q-11,Q-11,Q-11,248 St. bet. Van Zandt Ave. and 52 Ave.,411,19,111,11362,Q,3.673,False,Louis Pasteur Park,Yes,100000241,PARK,,19540126000000.00000,51-60 MARATHON PARKWAY,DPR/DOE,False,Louis Pasteur Park,Y,Louis Pasteur Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q369/,No,26,11,3,{A6D11FFC-FBF3-4EEE-9C2C-3CB359532674} +"MULTIPOLYGON (((-73.95639650870265 40.81139255563689, -73.95469926328491 40.81067553822041, -73.95505103435879 40.810192914543, -73.95569146788938 40.81046347568289, -73.95548508007379 40.81073171479233, -73.95633513370295 40.81108839022657, -73.95635250925358 40.811065730378935, -73.95657002997162 40.81115447912647, -73.95639650870265 40.81139255563689)))",M205,4875,M205,M-09,M-09,M-09,M-09,"Morningside Ave., W. 123 St. and W. 124 St.",109,7,26,10027,M,1.691,False,Playground one Twenty Five CXXV (PS 125),Yes,100004046,PLGD,20100106000000.00000,19480624000000.00000,413 WEST 123 STREET,DOE,False,Playground One Twenty Five CXXV,Y,Playground One Twenty Five CXXV,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M205/,No,69,30,13,{9149E438-8827-471D-8D75-203B171E051F} +"MULTIPOLYGON (((-74.22665486323866 40.51353637172166, -74.2259636416869 40.513712537802235, -74.22571106284808 40.51311012149848, -74.22550937662749 40.51314541176375, -74.22576688666682 40.513759595962306, -74.22546086958228 40.51383758651066, -74.22518897465136 40.513201475791845, -74.22488557416953 40.51249163566136, -74.22482483990589 40.51234953994694, -74.22517303715136 40.51226669010534, -74.22538494259797 40.5122157237079, -74.2257283059437 40.5121340226448, -74.22569784357516 40.51206277663139, -74.22566875491512 40.51199475001201, -74.22564012298228 40.511927786915926, -74.22561448214061 40.51186781956875, -74.22555575336422 40.51173046609398, -74.22549427882484 40.51158669448838, -74.22543456940777 40.511447048320996, -74.2253695537781 40.51129499240401, -74.22530818944642 40.51115147533002, -74.22524653162685 40.511007268990724, -74.22518427469545 40.510861660763936, -74.22518202227158 40.51085639256831, -74.22510641883902 40.510679571027715, -74.22519912480846 40.5106575116326, -74.22508198886501 40.51038355012132, -74.22501589435755 40.5102304541964, -74.2249245473044 40.51025367336889, -74.22489184595574 40.51017958043888, -74.22486152134606 40.510110877029724, -74.22478802607127 40.509944357732465, -74.22471453116555 40.50977783928672, -74.22461462400346 40.509551477198116, -74.22456524432282 40.50943959716675, -74.22448830512461 40.50926527229523, -74.22442514668064 40.50912216978838, -74.224361988507 40.50897906724528, -74.22401858075082 40.50906077876265, -74.22387067993142 40.508732901753554, -74.22563208025039 40.5085500005642, -74.22593211297549 40.509279404187716, -74.22585421734156 40.509293761601946, -74.22588178650385 40.50935618626402, -74.22592449811961 40.50945289768966, -74.22600613990366 40.50943643461126, -74.22622202746983 40.50996126174163, -74.22615495920807 40.50997473530541, -74.22622504405086 40.510133424926444, -74.22629102942959 40.510119627464675, -74.22682464006198 40.511416800940594, -74.22695387667778 40.51138391737597, -74.2270666464805 40.511647642962856, -74.22693339763495 40.51168117576511, -74.22699372648293 40.511827826971476, -74.2269598551805 40.51183611401323, -74.22702159743938 40.511983372068855, -74.22704525238399 40.512039787731986, -74.22707580580973 40.512032511322964, -74.22760274456142 40.51329454470241, -74.2269278581282 40.51346655526951, -74.22670545224601 40.512936117717416, -74.22642384599658 40.51298539599479, -74.22665486323866 40.51353637172166)), ((-74.22823779944156 40.51907341244702, -74.22777521316391 40.519051544280494, -74.22714382096682 40.51902169291472, -74.22710152156709 40.51901911644264, -74.22708044827422 40.51901722019084, -74.22705246170241 40.519014064258876, -74.22701769811401 40.51900911795914, -74.22699620665232 40.51900535211489, -74.2269607936692 40.51899785677689, -74.22693983064124 40.518992635518785, -74.22691910888267 40.51898687886415, -74.22689114350779 40.518978141356506, -74.22678950679412 40.51894315394595, -74.22664746443984 40.51889713007511, -74.22675217675305 40.51852109992813, -74.22674220037914 40.518517797575, -74.22658334168966 40.51846521765361, -74.22632806777783 40.51838072461519, -74.22644592462301 40.517833512879385, -74.22608420172384 40.5169801599391, -74.22676727856276 40.516813111005426, -74.22639642997723 40.51602419295274, -74.22667384796061 40.5159563477821, -74.22720068372924 40.517083997459295, -74.22692617610352 40.51715113121828, -74.22700609321564 40.51732983408704, -74.22728531869757 40.517261546221235, -74.22823779944156 40.51907341244702)), ((-74.23117914699682 40.512590611883645, -74.23148817818472 40.512514319093725, -74.23151936854542 40.51261881425936, -74.231535687171 40.51267348326089, -74.23155163695546 40.51272691747403, -74.23156866711946 40.51278397144506, -74.23161652627472 40.512944310964805, -74.23163266719128 40.512998385058495, -74.23169748540981 40.51321553820176, -74.23171309760642 40.51326783840204, -74.23174457995503 40.51337330999, -74.23183995873585 40.51369283865725, -74.23187301966593 40.51380359224125, -74.23190583957856 40.513913543928105, -74.23193756964695 40.514019841647325, -74.23196941800661 40.51412653625269, -74.23200007981937 40.51422925559724, -74.23200273963614 40.514238167288596, -74.23204923871923 40.51439394096582, -74.23179527900656 40.514456636765914, -74.23165563609214 40.51449111009509, -74.23131686918491 40.51457474133892, -74.2312730109614 40.514469037929466, -74.23122956100528 40.51436432066322, -74.23116569337625 40.514210395311764, -74.23109928452341 40.51405034061659, -74.23105541152454 40.513944601129836, -74.23099005383125 40.51378708105199, -74.23092483566236 40.513629898354516, -74.2308813499087 40.5135250909712, -74.2307952580996 40.513317599640125, -74.23070813166531 40.513107605942615, -74.23066628258216 40.51300674401826, -74.23062163638512 40.51289913550945, -74.23055732061925 40.51274412196611, -74.23089747855366 40.51266014703527, -74.2310339750913 40.512626450905586, -74.23117914699682 40.512590611883645)), ((-74.22921426711551 40.519011475951146, -74.22898464687623 40.51905537950325, -74.22891347679301 40.51906409722272, -74.22887051497858 40.51906625051428, -74.22883032308769 40.51906921685096, -74.22877917546028 40.51907033010359, -74.22847008416608 40.51906318676881, -74.22749189379468 40.51720351826206, -74.2281749441509 40.51703563251467, -74.22921426711551 40.519011475951146)), ((-74.23000423826265 40.51287963428056, -74.23034954350517 40.51279439171809, -74.23041366609829 40.5129489428908, -74.23045791221206 40.51305558511147, -74.2308249314823 40.51394016328764, -74.23089008309904 40.51409718857929, -74.230933966643 40.514202953321444, -74.23097663073388 40.514305777561916, -74.23101895942816 40.51440779558446, -74.23110887991355 40.51462451218046, -74.23076356618657 40.51470975701623, -74.23041928786644 40.51479474478216, -74.23035265893135 40.51463416149373, -74.23026658397798 40.514426705770525, -74.23018019425568 40.51421848876199, -74.23007274446309 40.51395951219533, -74.22996447932813 40.513698573998866, -74.22992090698774 40.51359355300249, -74.22987751919398 40.51348897468114, -74.22976833469345 40.513225814721814, -74.22965996722475 40.512964620682894, -74.23000423826265 40.51287963428056)), ((-74.22911185915272 40.51309664898423, -74.22945585924134 40.51301173231111, -74.22952075332164 40.513168148336455, -74.22962846026046 40.51342775258407, -74.22969314097567 40.513583648428266, -74.22975911054061 40.513742654793816, -74.22980125377772 40.51384422697256, -74.22984660125245 40.51395352558648, -74.22991017886547 40.51410676244169, -74.2299760447527 40.5142655140358, -74.23003928028598 40.51441792211274, -74.23008269391252 40.514522557949924, -74.23012703334949 40.51462942523305, -74.23017066141846 40.51473457751124, -74.23021531643064 40.51484220237423, -74.22987130789103 40.51492712221291, -74.2295286212526 40.51501171328278, -74.22948396841872 40.51490408995265, -74.22944034013929 40.51479893741709, -74.22939600168449 40.514692068969445, -74.22887966301602 40.513447539869894, -74.22883407476026 40.513337656008105, -74.2287691809421 40.51318123959881, -74.22911185915272 40.51309664898423)), ((-74.2274929118705 40.51556850273178, -74.22680526678764 40.51574395891132, -74.22605368095782 40.51392728773749, -74.2267440718043 40.51374913348749, -74.2274929118705 40.51556850273178)), ((-74.23016910508244 40.517730308666295, -74.23011678368862 40.51762803122259, -74.2297807821819 40.517725964484015, -74.22970229986902 40.51757254849628, -74.22962381791636 40.51741913245317, -74.22954533750085 40.51726571545178, -74.22949301624499 40.51716343772264, -74.22938837539348 40.51695888218811, -74.22933804799247 40.516860501505775, -74.22928376726391 40.516754391329364, -74.22962619500781 40.51666903158302, -74.2299704268724 40.51658322143486, -74.2300118119878 40.51666412063007, -74.23006214023249 40.51676250101841, -74.23021910379114 40.51706933336744, -74.23027142608112 40.51717160986575, -74.23040223074581 40.517427303709084, -74.2305591986032 40.51773413467528, -74.23061152193691 40.517836411914146, -74.23069000664923 40.51798982817778, -74.23081550879907 40.51823514726666, -74.23079494451534 40.518259652461644, -74.23071828566249 40.51835097550361, -74.23070452202046 40.51836737213287, -74.23067030679165 40.51840813322326, -74.23065770129402 40.51841956829139, -74.23061756507329 40.51845598179014, -74.2305923234631 40.51847888259285, -74.23055378933162 40.51851384299449, -74.23051208142236 40.51855168245281, -74.23051158030687 40.51855213732712, -74.23049629390594 40.51856600649509, -74.23048219794384 40.51857879533421, -74.23045829521791 40.518597491537875, -74.23043927870796 40.518612365976416, -74.23037229869077 40.51865714518444, -74.23031826572581 40.518687211604046, -74.23028266575656 40.518707022685746, -74.23012087597556 40.51839076705872, -74.23004239210174 40.51823735131097, -74.22999007050493 40.51813507381331, -74.22993774788824 40.51803279629338, -74.22988542543474 40.51793051964935, -74.22983310431829 40.51782824207779, -74.23016910508244 40.517730308666295)), ((-74.22845260498038 40.5153230585501, -74.22777337121734 40.515496176826375, -74.22701787279154 40.5136812351653, -74.22769709124844 40.51350812043448, -74.22845260498038 40.5153230585501)), ((-74.22830810816204 40.513518472157834, -74.2282654284533 40.513415598331136, -74.22792112651167 40.51350058677025, -74.2278790743731 40.51339922264734, -74.22812026834706 40.513339685726415, -74.22822337584924 40.5133142352343, -74.22856809968268 40.51322914238384, -74.22861015157592 40.51333050535734, -74.22900064794948 40.514271729222095, -74.22906662368457 40.51443075307363, -74.22910921366348 40.51453340614743, -74.2291523998548 40.51463749796503, -74.2291953934352 40.51474112457554, -74.2292841472363 40.514955045161095, -74.22932598236632 40.51505587608277, -74.22898125125818 40.515140971195976, -74.22863693898091 40.51522596177657, -74.22857187840307 40.51506914306866, -74.22852801230678 40.51496341252234, -74.22844360942193 40.514759973893476, -74.22838289605139 40.51459952628432, -74.22831161181516 40.51444181207189, -74.22826698392726 40.514334243151396, -74.22822493073377 40.51423287736018, -74.22818159634818 40.51412842527582, -74.22811680322573 40.51397224965041, -74.22807319554487 40.513867137977115, -74.22800744045944 40.51370864262827, -74.22796380456191 40.513603459826165, -74.22830810816204 40.513518472157834)), ((-74.22977858109265 40.51803104561408, -74.22972685084422 40.518044715669696, -74.22972882749784 40.5189038927533, -74.22949225290263 40.518945721107116, -74.22846492740112 40.516983207567264, -74.22913857108254 40.516813965087906, -74.22977858109265 40.51803104561408)), ((-74.22776702417327 40.509832178279886, -74.22811601434695 40.509756670733346, -74.22818185505633 40.509911587172304, -74.2282262414465 40.51001602278201, -74.22829282247619 40.51017267751139, -74.22835940263496 40.510329331302245, -74.22839269342128 40.510407658181364, -74.22842598428868 40.51048598595097, -74.22847037144459 40.51059042236251, -74.22851475873917 40.51069485875613, -74.2287145044545 40.51116482050218, -74.22875889251179 40.51126925679712, -74.22880883071453 40.51138674692918, -74.22846451091446 40.51147326437084, -74.22812426088157 40.51155875868893, -74.22812120641763 40.51155952661025, -74.22807127047412 40.51144203617809, -74.2280046886994 40.51128538133425, -74.22796030180957 40.51118094474772, -74.22791591505838 40.51107650814322, -74.22787152844585 40.51097207152081, -74.22780494761028 40.510815417456406, -74.22776056134443 40.51071098078916, -74.2277161752203 40.510606545004435, -74.22767178923178 40.51050210830131, -74.22762740338197 40.510397671580186, -74.22758301649397 40.510293235744044, -74.22753862973853 40.51018879808893, -74.22741906247184 40.50990746299539, -74.22776702417327 40.509832178279886)), ((-74.2286709133333 40.509635781263356, -74.22901719625803 40.509561016602945, -74.22905266823594 40.50964463677404, -74.22909697918698 40.50974909201357, -74.22916344646157 40.50990577438797, -74.22922991168798 40.510062456726814, -74.22929637840888 40.51021913992361, -74.22936284661492 40.51037582127677, -74.22942931395889 40.51053250439311, -74.22949578279109 40.51068918656635, -74.22956224957512 40.51084586870404, -74.22962871903046 40.5110025507968, -74.22969527088593 40.51115942990156, -74.2293536147224 40.51124511889776, -74.2290118574802 40.51133083229125, -74.22896754443391 40.51122637703288, -74.22890107748543 40.511069694557364, -74.22883461084844 40.51091301204158, -74.22876664817278 40.51075280148175, -74.22872075151975 40.51064460847143, -74.22865428572793 40.510487925846526, -74.2285003173915 40.51012497133454, -74.22843385381273 40.50996828857384, -74.22838954493533 40.50986383397807, -74.22832452942114 40.509710566690664, -74.2286709133333 40.509635781263356)), ((-74.22717031115504 40.508394577081965, -74.22752513315261 40.50835711535944, -74.22762642178353 40.508601863779106, -74.22769340229426 40.50876370694065, -74.22775554370882 40.508913856348556, -74.22737337206829 40.508996622906714, -74.22647918385141 40.50919026917083, -74.22627089347132 40.50923537523266, -74.22615557968305 40.50926034644666, -74.22600579361816 40.5088983970484, -74.22585477441773 40.508533460108495, -74.22602799103761 40.50851517418733, -74.22616544665891 40.50850066417359, -74.22630958947056 40.508485446498206, -74.22659216184518 40.50845561533504, -74.22666806860154 40.50844760199237, -74.226810350081 40.50843258097821, -74.22695462469329 40.508417348723576, -74.2270934043847 40.50840269719765, -74.22717031115504 40.508394577081965)), ((-74.22752905876376 40.5115891309489, -74.22748477380186 40.51148466966532, -74.22746263019143 40.511432438568924, -74.22744048779543 40.51138020746573, -74.22739620193045 40.51127574614879, -74.22737405845834 40.51122351503453, -74.2270313083648 40.511309421709186, -74.2269427381426 40.51110049784011, -74.22680988502847 40.51078711235043, -74.22674345894154 40.51063042044584, -74.22671024542336 40.51055207402934, -74.22667703198303 40.510473727602836, -74.22663274909117 40.510369265982284, -74.22651683543853 40.51009583301846, -74.22686422450577 40.51002088717325, -74.22721052930218 40.50994617475844, -74.22727288450137 40.51009326398382, -74.22693121047122 40.51017890078869, -74.22697549605999 40.51028336139031, -74.22731717056726 40.51019772445424, -74.2273614555947 40.51030218580967, -74.22740573958069 40.510406647149544, -74.22747216700056 40.51056333957385, -74.22753859473173 40.51072003195793, -74.2275828804511 40.51082449322407, -74.22762716631196 40.51092895537286, -74.2276935947666 40.511085646762645, -74.22773788215024 40.51119010796388, -74.22778216613263 40.51129456915431, -74.22782645261313 40.5113990303222, -74.22787073923507 40.511503492372704, -74.22791502599242 40.51160795350486, -74.22759631674465 40.51168783458576, -74.22757334504396 40.511693592212225, -74.22723059161062 40.51177949768046, -74.22718630580904 40.51167503628552, -74.22752905876376 40.5115891309489)), ((-74.22941533701848 40.51144707314047, -74.22975781580003 40.51136323651248, -74.22980882862684 40.51149076319296, -74.22987019804089 40.5116441801177, -74.22993321130102 40.51180170734587, -74.23007504843416 40.51215627776797, -74.23011705906366 40.512261295542785, -74.23015906864522 40.512366313303744, -74.23026933459948 40.51264195841602, -74.229926848726 40.51272579566459, -74.22958544070508 40.5128093685786, -74.22958436317344 40.51280963188832, -74.22953710104044 40.51269148656472, -74.22949509223153 40.51258646857852, -74.22945308355462 40.51248145057615, -74.22939008149683 40.512323950086596, -74.22934807196994 40.51221893204617, -74.22930799648455 40.512118747783944, -74.22926644062758 40.51201485897397, -74.22922443148906 40.51190984088598, -74.22918523583951 40.511811852120395, -74.2291423058275 40.511704530478134, -74.22907285619507 40.51153090784784, -74.22941533701848 40.51144707314047)), ((-74.22763888641916 40.511882729753204, -74.22798136966294 40.51179889932934, -74.22805277434523 40.51197741311857, -74.22809478050891 40.51208243253775, -74.22813678798143 40.51218745103794, -74.22819927760277 40.512343675374815, -74.22826176039379 40.51249988708264, -74.22832287250864 40.51265266775359, -74.2284051431892 40.5128583422575, -74.22844530226425 40.512958739187056, -74.22849256029696 40.51307688496266, -74.22815007115041 40.5131607178048, -74.22782606797475 40.51324002287719, -74.22780757995892 40.513244547825764, -74.22769837278737 40.5129715269308, -74.22761690740457 40.512767856714134, -74.22729640113958 40.51196656005746, -74.22763888641916 40.511882729753204)), ((-74.2285268111053 40.51166585960364, -74.22886929212177 40.51158202562834, -74.2289414677426 40.5117624635724, -74.22900158106214 40.51191274330552, -74.2290636856737 40.51206800167567, -74.22912482897975 40.51222085660903, -74.22916503754485 40.51232137476574, -74.22927005810351 40.51258392045818, -74.22933306606006 40.51274143180521, -74.22938032668793 40.5128595772148, -74.22903783858793 40.51294341270975, -74.22869671128414 40.51302691307317, -74.22869534962585 40.51302724628163, -74.22864809008999 40.51290910059146, -74.22860608254082 40.5128040822815, -74.22856407512363 40.512699063955395, -74.22852206665847 40.512594045615444, -74.22848006545699 40.512489042554215, -74.22843985782092 40.51238852415873, -74.22839785092593 40.512283505768686, -74.22835584298304 40.51217848736477, -74.22827600217235 40.51197888117265, -74.22823399578907 40.511873861819005, -74.228184328047 40.51174969165825, -74.2285268111053 40.51166585960364)), ((-74.22750834212304 40.50914046669359, -74.22782127812988 40.50907269412847, -74.22803703944496 40.509594028572316, -74.22768690194819 40.50966985694564, -74.22727016628171 40.50976010669503, -74.22713075347052 40.50979029926353, -74.22699490343273 40.509819719163374, -74.22685332456322 40.50985037855186, -74.22643706178411 40.50994052347625, -74.22632813122331 40.509677304782656, -74.22622131300344 40.50941918513442, -74.22660078036772 40.509337009505934, -74.22674344056634 40.50930611505169, -74.22688027647709 40.5092764818726, -74.22729753194315 40.50918612083549, -74.22750834212304 40.50914046669359)), ((-74.23184858771734 40.514615964676366, -74.23208358742993 40.51455833296899, -74.23211276951999 40.51466737970903, -74.23212733967205 40.514721822520706, -74.2321564860377 40.514830734241116, -74.23217105625784 40.514885176146095, -74.23218562532492 40.514939618951864, -74.23220010233746 40.51499370983385, -74.23222924894024 40.5151026215337, -74.232003370366 40.5151574056255, -74.23070084527987 40.51547330902127, -74.23060920954713 40.515259392617544, -74.23056450352036 40.5151550315393, -74.23047760650886 40.514952173945694, -74.23082001533416 40.51486820556693, -74.23095697933329 40.51483461846816, -74.23109394319168 40.51480103030534, -74.23129938813435 40.5147506486562, -74.23150483276741 40.51470026663916, -74.23164179489845 40.51466667872515, -74.23184858771734 40.514615964676366)), ((-74.2290371358704 40.51663293912961, -74.22835373492168 40.516803787168406, -74.22783086392121 40.51567569359608, -74.22851425585127 40.51550484775367, -74.2290371358704 40.51663293912961)), ((-74.22807924055941 40.51686514225101, -74.22740057946936 40.51703111951671, -74.22687541428787 40.51590705246157, -74.22755406645072 40.51574107828519, -74.22807924055941 40.51686514225101)), ((-74.2314607225285 40.51601053586585, -74.23143194739497 40.51601788459589, -74.23132429286821 40.51604537512146, -74.23098321691234 40.516132471652455, -74.23093851090093 40.516028111624614, -74.23087257032556 40.51587418219275, -74.23080439371039 40.51571503323299, -74.23075666205669 40.51560360733974, -74.2312361056805 40.515486207260544, -74.23157856505287 40.515402348189824, -74.2318525324042 40.51533526019618, -74.23198951587055 40.51530171505351, -74.23226450926035 40.51523437455318, -74.23229339545318 40.515342310585574, -74.23233574163412 40.51550054018784, -74.2323796051017 40.515664442753774, -74.23239043739203 40.5157049150404, -74.232413758576 40.51576716301464, -74.2322110854875 40.515818919756605, -74.23200644093694 40.515871179920154, -74.23193822640584 40.51588859899221, -74.23180179724324 40.5159234388157, -74.23159715440958 40.5159756973438, -74.23148650453034 40.515717408475375, -74.23135007429863 40.515752246864196, -74.2314607225285 40.51601053586585)), ((-74.23013285169083 40.51557344564365, -74.23011107250024 40.51552112698446, -74.23008929216064 40.51546880742272, -74.22975013288598 40.51555151806768, -74.22968479514712 40.51539455915975, -74.23002395252634 40.51531184870934, -74.22998039451383 40.51520720954224, -74.22964123525169 40.515289919869275, -74.22961945653506 40.51523760021521, -74.22959223230457 40.5151722013187, -74.22993138985018 40.51508949113805, -74.23027146850556 40.515006556574306, -74.23036430807487 40.515228846679534, -74.23040799756757 40.515333453919474, -74.23045168719699 40.51543806114195, -74.2304953757801 40.515542667448884, -74.23053906568607 40.51564727553703, -74.2305827557225 40.51575188180674, -74.2306264458988 40.515856488959535, -74.23067013502882 40.51596109519677, -74.23071382666164 40.51606570321285, -74.2307616779972 40.51618027713939, -74.23042026759374 40.51626386869694, -74.23008122843392 40.51634687724253, -74.22996792952216 40.516074711440396, -74.22990258958372 40.51591775356527, -74.22979369311926 40.515656156414295, -74.23013285169083 40.51557344564365)), ((-74.23230771041864 40.5160027037963, -74.23248047261818 40.51595963186707, -74.23250545501539 40.51601635079344, -74.23264030945934 40.51632249071758, -74.23264500759103 40.51633319482272, -74.23256544925677 40.516408149726225, -74.23238431740775 40.51657880446556, -74.2322937523149 40.51666413127467, -74.2321579012922 40.51679212135925, -74.23202205210926 40.51692011127703, -74.23197676736253 40.516962775450686, -74.23169018850913 40.51679176335256, -74.23165094430678 40.51669865913254, -74.23161821649306 40.516621012885935, -74.23155914054259 40.51648085894152, -74.23151499732894 40.51637613058619, -74.23144794222509 40.51621704638758, -74.23187436326633 40.51611073975096, -74.23208040057665 40.516059373939115, -74.23230771041864 40.5160027037963)), ((-74.22663046240079 40.51579290499637, -74.22632949498845 40.515869697359186, -74.22555416287604 40.51405584701764, -74.22585825643026 40.5139775196077, -74.22663046240079 40.51579290499637)), ((-74.23051902460692 40.51644646304671, -74.23086519121891 40.51635777993059, -74.23093936308874 40.516503320556595, -74.23099151275676 40.516605647509344, -74.23104366140441 40.51670797444, -74.23109581021177 40.51681030134617, -74.23114795917871 40.51691262822795, -74.23080966511021 40.51701459541098, -74.23088814811686 40.517168007048106, -74.23054885276899 40.51727027444782, -74.23047037041779 40.51711686167937, -74.23041804905249 40.51701458707001, -74.23031340797903 40.5168100368745, -74.23023492670838 40.51665662393989, -74.2301717076302 40.51653304468153, -74.23019705648402 40.51652672524371, -74.23051902460692 40.51644646304671)), ((-74.22962772620059 40.51581180419824, -74.22928402455787 40.51589601742946, -74.22926224238655 40.5158436986175, -74.22891980398266 40.515927602052564, -74.22881089483468 40.51566600580332, -74.22915333203531 40.51558210269159, -74.22913155007164 40.51552978475418, -74.22910976813588 40.51547746501133, -74.22876733141662 40.515561367993726, -74.2286965411515 40.51539133106591, -74.2290389770887 40.5153074282937, -74.22938462600747 40.515222736414785, -74.2294764631714 40.515445273276846, -74.22951968100963 40.51554999616128, -74.22956289898323 40.515654719028674, -74.22962772620059 40.51581180419824)), ((-74.2293711535871 40.51610529353455, -74.2294147183078 40.516209932011385, -74.22975738153995 40.51612597172065, -74.22982220966819 40.51628305587448, -74.22986940280695 40.51639740905499, -74.2295280186282 40.516482066831436, -74.22918596039223 40.516566890634024, -74.22911584141204 40.51639847358979, -74.22902871398303 40.51618919819351, -74.2293711535871 40.51610529353455)), ((-74.23051563786073 40.51175098364712, -74.23017241540677 40.511832968026894, -74.23010940750878 40.51167545712803, -74.23006832435777 40.511572754556745, -74.23002632969981 40.51146777274929, -74.22996329512695 40.51131019608209, -74.23030542499178 40.51122548589993, -74.23036845911123 40.51138306238247, -74.23041045425632 40.51148804496594, -74.23045153787773 40.51159074651487, -74.23051563786073 40.51175098364712)), ((-74.2307240904729 40.51218633226783, -74.2303501368283 40.512277239282014, -74.23022187149265 40.51195660014092, -74.23061562396728 40.51186213177713, -74.23063822412719 40.511919059427335, -74.2307240904729 40.51218633226783)), ((-74.22971416178022 40.51602124983297, -74.2293711535871 40.51610529353455, -74.22932758900582 40.51600065594094, -74.22967094450958 40.515916526122425, -74.22971416178022 40.51602124983297)))",R027,6639,R027,R-03,R-03,R-03,R-03,"Page Ave., Hylan Blvd., and Amboy Rd.",503,51,123,10309,R,91.086,False,Long Pond Park,No,100004536,PARK,20100106000000.00000,19311013000000.00000,,DPR,True,Long Pond Park,N,Long Pond Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R027/,No,62,24,11,{575E0AB2-325C-4E06-8B43-3964CEFF39A3} +"MULTIPOLYGON (((-74.07413817418916 40.614218743566326, -74.07437209451336 40.61411577813662, -74.0745280417808 40.61404713215004, -74.07465030201358 40.614206549551064, -74.07480624802623 40.614137904088935, -74.07496744965911 40.61406694514985, -74.0750620116437 40.61402531987666, -74.07509728738583 40.61405878452281, -74.07516428063751 40.61412233915423, -74.07522947354933 40.61418418483454, -74.0752864781138 40.61423826344135, -74.07535152101588 40.61429996686773, -74.07335791462191 40.61515374929645, -74.07316348383874 40.61486699866649, -74.07347788923333 40.614728607732864, -74.07343505003291 40.614672746958014, -74.07339107839073 40.614615410035114, -74.07335219662184 40.614564711191576, -74.0736615284439 40.61442855267842, -74.07374206707196 40.61439310154736, -74.07382628009235 40.61435603336516, -74.07390425314625 40.61432171122048, -74.07413817418916 40.614218743566326)))",R035,6031,R035,R-01,R-01,R-01,R-01,"Tompkins Ave., bet. Chestnut St. and Shaughnessy La.",501,49,120,10305,R,2.335,False,De Matti Playground,Yes,100004884,PLGD,20100106000000.00000,19350312000000.00000,,DPR,False,De Matti Park,Y,De Matti Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R035/,No,64,23,11,{C735F1AB-4B61-4D7A-8369-676052014A67} +"MULTIPOLYGON (((-73.9874808027048 40.684212010294644, -73.98849078199471 40.68460389960875, -73.98825275546214 40.68495609622754, -73.98724277223694 40.68456420394081, -73.9874808027048 40.684212010294644)))",B230,5129,B230,B-06,B-06,B-06,B-06,Wyckoff St. between Hoyt St. and Bond St.,306,33,76,11217,B,1.041,False,Nicholas Naquan Heyward Jr. Park,Yes,100004068,PARK,20100106000000.00000,19460709000000.00000,160 WYCKOFF STREET,DPR,True,Nicholas Naquan Heyward Jr. Park,Y,Nicholas Naquan Heyward Jr. Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B230/,No,52,25,7,{FB605D8E-9451-40F0-AC67-111776B6C32C} +"MULTIPOLYGON (((-74.08925952264646 40.63823557502708, -74.08921538387528 40.63808739913357, -74.08913429566212 40.63781516932748, -74.08905426968435 40.6375465118943, -74.08900854542007 40.6373930060649, -74.08892376248437 40.63710837519842, -74.0888272831523 40.63678446904308, -74.08904112341837 40.636677412911524, -74.08935638382715 40.63659391984619, -74.08956170071603 40.636539543444165, -74.08963013960542 40.6365214184956, -74.09031059150148 40.63634120275417, -74.09051590683649 40.6362868255473, -74.090858097133 40.63619619395363, -74.090994974647 40.63615994156979, -74.09153159545454 40.63601781082737, -74.09180534650608 40.635945304293614, -74.09187740939164 40.635925294827366, -74.0918793548172 40.63593024252761, -74.09198539216887 40.6359027414358, -74.09191043771311 40.63564620556326, -74.09234789846992 40.63572328802484, -74.09237079361257 40.63573145085401, -74.09240823634161 40.63574369845138, -74.09243737436414 40.63575720533555, -74.09246676711821 40.635775391106534, -74.0924896696201 40.63579395760725, -74.0925276244602 40.6358293778205, -74.09258111789684 40.63587680654515, -74.09321910862892 40.636542362077186, -74.09332044412754 40.63670595828112, -74.09293792888023 40.636771399046445, -74.0926915546176 40.636813547706446, -74.0925685121426 40.636834597407855, -74.0924454684079 40.63685564697846, -74.09217685168439 40.63690159999899, -74.0923036992494 40.63733154124136, -74.0923360919438 40.637441338964216, -74.0923760775919 40.63757686561679, -74.09237974040829 40.63758928083488, -74.09227639309835 40.63760716888251, -74.09225615976278 40.637612066832524, -74.09223729169523 40.637619481535665, -74.09222032291785 40.637629202743405, -74.09220573653222 40.63764095451025, -74.09219394345237 40.6376544033155, -74.09218528005566 40.637669168871234, -74.09217999164575 40.63768483314059, -74.09217822655496 40.63770095024809, -74.09217902029101 40.63771160905817, -74.09218136123012 40.63772213515213, -74.09117586304089 40.63789617060205, -74.09117585472919 40.63789614359307, -74.09116931742635 40.63788042300921, -74.09115934637836 40.637865785770174, -74.09114623652381 40.6378526638906, -74.09113037375917 40.637841442485794, -74.09111222547314 40.637832453475895, -74.09109232634158 40.63782596118888, -74.09107126295301 40.63782215696989, -74.09104965606824 40.63782115289168, -74.09102814170357 40.6378229790681, -74.09100735457768 40.63782758096571, -74.09098790683886 40.63783482302264, -74.09097037152094 40.63784449226364, -74.09095526481877 40.63785630371725, -74.09094303309793 40.63786990943099, -74.09093403517457 40.63788490749038, -74.09092853760848 40.637900857331566, -74.09092670171103 40.63791728875642, -74.09092751314833 40.63792807003134, -74.09092990725236 40.63793871317582, -74.09094172806076 40.6379783482855, -74.09094095513701 40.6379784812731, -74.09099277636956 40.63815413967897, -74.09078191415571 40.63819046489043, -74.09069440682576 40.63820554019398, -74.09067708935862 40.63814683819916, -74.09058717346217 40.63816232775826, -74.09051228350269 40.63817522903514, -74.0904478363014 40.63818633181761, -74.09037438104794 40.63819898513385, -74.09030556333289 40.6382108405033, -74.09023217420967 40.63822348287048, -74.0901662247862 40.63823484332165, -74.09015040164915 40.63818027345937, -74.09007928049374 40.63819252492662, -74.09000898660585 40.63820463432082, -74.08993757466601 40.63821693725761, -74.09006293114767 40.6386492774476, -74.08986518545476 40.63869562248371, -74.08991126830679 40.63885256495388, -74.0889566797727 40.63908530811668, -74.0889128665234 40.63892140610415, -74.08893314855959 40.63891620162895, -74.08881128791694 40.63865570899395, -74.0893454579146 40.63852406614383, -74.08932451105929 40.638453747369574, -74.08925952264646 40.63823557502708)), ((-74.08904935570585 40.63652252711814, -74.08931149683427 40.63612009423158, -74.08939202579178 40.636304983024644, -74.0894417342556 40.63641911221354, -74.08904935570585 40.63652252711814)))",R048,5580,R048,R-01,R-01,R-01,R-01,"Arnold St., Brighton Ave., Lafayette Ave.",501,49,120,10301,R,16.93,False,Jones Woods,Yes,100004892,PARK,20100106000000.00000,20050809000000.00000,,DPR,True,Jones Woods Park,Y,Jones Woods Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R048/,No,61,23,11,{504E3ED1-DFDD-4BFF-BD10-87A9775AC829} +"MULTIPOLYGON (((-73.9435859165921 40.69011342503653, -73.9436572136616 40.690105161734394, -73.9437113829973 40.690382360859815, -73.94370862149684 40.69038268099233, -73.9436400856374 40.690390625095716, -73.94363982060916 40.690390655583386, -73.94356878826055 40.690398888386945, -73.9435627825259 40.69039958514066, -73.94350449755683 40.69040634010932, -73.94349749086525 40.69040715253446, -73.94344332240016 40.69012995150823, -73.94351461950494 40.69012168829446, -73.9435859165921 40.69011342503653)))",B572,14286,B572,B-03,,,B-03,Van Burnen St. bet. Tompkins Ave. and Throop Ave.,303,36,,11221,B,0.137,False,,,100037002,PARK,,20160209000000.00000,49 VAN BUREN STREET,DPR,False,Hattie Carthan Herb Farm,,Hattie Carthan Herban Farm,,Garden,,No,56,25,8,{23260735-0CDF-40ED-8E7C-A27FC87C48DB} +"MULTIPOLYGON (((-73.89240703299603 40.62913092951022, -73.8922140097806 40.6285092726433, -73.89005533065719 40.628818169307195, -73.88945324736025 40.62916696324739, -73.889328249942 40.629107933658595, -73.88932322792178 40.62911355617582, -73.88927116984777 40.629171842657534, -73.88920236649234 40.629136343601665, -73.88907412019157 40.62907017398172, -73.8896233768824 40.62874084649611, -73.89039586748639 40.628277659934604, -73.89133317115272 40.627715637058586, -73.89574908640238 40.625067548193655, -73.89720607605946 40.62290711518421, -73.89729710023083 40.622948347635905, -73.90152223266199 40.624862146995426, -73.90128239800218 40.62517655167096, -73.90057155488292 40.62610838935761, -73.89997785573883 40.62688664263939, -73.89271584296563 40.631656503484734, -73.89102825740959 40.630817611075045, -73.89240703299603 40.62913092951022)), ((-73.88265191719367 40.633772605010606, -73.88280020201061 40.633633389982485, -73.88280341918838 40.63363627492557, -73.88563958269856 40.63617884780199, -73.88050303217958 40.63950083990059, -73.87929581716516 40.638429778118955, -73.87929597353941 40.6384295936766, -73.879301978005 40.63842607894786, -73.87929907594143 40.63842343377742, -73.87947319768149 40.638077599882, -73.87958799503596 40.63785720361759, -73.87964416984214 40.63774935406562, -73.87978230115385 40.6374881470585, -73.87983817942786 40.63738247815656, -73.879995048245 40.63709676751284, -73.88017327037538 40.63679258763039, -73.88027510369555 40.63662765996318, -73.88041549957802 40.63640748940901, -73.88055128359191 40.63620361779811, -73.88069199324586 40.636004627448614, -73.88081111292442 40.6358378612588, -73.88099288712037 40.63558675228544, -73.88117380117319 40.63535456295219, -73.88137292544786 40.63511608037479, -73.88161607425778 40.634832279094894, -73.88186701563232 40.634557075359666, -73.88202167329318 40.63438746183703, -73.88212129479459 40.634287577485104, -73.88221866138264 40.63418995374284, -73.88254585565352 40.63387217977269, -73.88255252513537 40.63386591806607, -73.88265191719367 40.633772605010606)), ((-73.88663168059493 40.63075073429603, -73.88679485873864 40.630645000205064, -73.8871412810137 40.63091802007781, -73.88711322586313 40.630936511733246, -73.88692248382627 40.63106221521781, -73.88668974070892 40.6308533175526, -73.88659902407758 40.63077189493373, -73.88663168059493 40.63075073429603)))",B018,6442,B018,B-18,B-18,B-18,B-18,"Seaview Ave. bet. Paerdegat Basin and E. 93 St., E. 102 St. and Fresh Creek Basin",318,46,75,"11236, 11239",B,132.2,False,Canarsie Park,No,100005093,PARK,20100106000000.00000,18980101000000.00000,9006 SEAVIEW AVENUE,DPR,True,Canarsie Park,Y,Canarsie Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B018/,Yes,59,19,8,{98F773D8-4BD1-44EC-960C-8DFBCB30EE9D} +"MULTIPOLYGON (((-73.93682693707335 40.81184552631012, -73.93683948686855 40.81184464169322, -73.93685976715348 40.811845644249495, -73.93687632918626 40.81184817381155, -73.93689837229464 40.81185748261634, -73.93780779868516 40.81224148971855, -73.93756747293517 40.81257020804607, -73.93656292464375 40.81214603320332, -73.93675228301538 40.81188703524391, -73.93677073955455 40.81186654013463, -73.93678551568965 40.81185762250422, -73.93680332187 40.811850502125246, -73.93682693707335 40.81184552631012)))",M193,5834,M193,M-11,M-11,M-11,M-11,5 Ave. and E. 135 St.,111,9,25,10037,M,0.991,False,Abraham Lincoln Playground,Yes,100004131,PLGD,20100106000000.00000,19440801000000.00000,,DPR,False,Abraham Lincoln Playground,Y,Abraham Lincoln Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M193/,No,70,30,13,{5D62AD38-AE30-4E43-8DE0-E28780CD8E3C} +"MULTIPOLYGON (((-73.84511898846291 40.73360194885925, -73.84526586600386 40.733557938501185, -73.84552471025188 40.73406669202627, -73.84518745326871 40.734168026401356, -73.84490546275457 40.73366592813406, -73.84511898846291 40.73360194885925)))",Q451,5383,Q451,Q-06,Q-06,Q-06,Q-06,Grand Central Pkwy. Sr. Rd. W. bet. 64 Ave. and 64 Rd.,406,29,112,11375,Q,0.457,False,Underbridge Dog Run,Yes,100000292,PARK,20090423000000.00000,19381019000000.00000,64-02 GRND CNTRL PKWY SR W,DPR,True,Underbridge Dog Run,N,Underbridge Dog Run,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/Q451/,No,27,16,6,{1107219C-5BEF-478E-BB02-E5F2E9935B9C} +"MULTIPOLYGON (((-73.88925772282207 40.76385530321237, -73.88888976094297 40.76389520960014, -73.88871942445277 40.762943514050114, -73.88942156179887 40.76286918165387, -73.88964940163562 40.76408301059, -73.88964822072784 40.7640880775001, -73.88946017271243 40.76410845845364, -73.88925772282207 40.76385530321237)))",Q393C,4932,Q393C,Q-03,Q-03,Q-03,Q-03,"79 St., 80 St. bet. 24 and 25 Ave.",403,22,115,11370,Q,1.754,False,LaGuardia Landing Lights,Yes,100000280,PARK,20090423000000.00000,19600728000000.00000,79-01 25 AVENUE,DPR,False,LaGuardia Landing Lights,N,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393C/,No,34,13,14,{C108AC85-6168-4652-A4FC-DFCFC89F00B9} +"MULTIPOLYGON (((-73.89365609249225 40.83093467746681, -73.89370093683843 40.830787081706845, -73.89446757494186 40.83100502307188, -73.89440533386598 40.83113415655079, -73.89395980669163 40.83101289949441, -73.89365609249225 40.83093467746681)))",X342,5637,X342,X-03,X-03,X-03,X-03,Rev. James Polite Ave. bet. Bristow St. and Intervale Ave.,203,17,42,10459,X,0.272,False,Model T Senior Citizen's Garden,No,100005158,PARK,20100106000000.00000,20050705000000.00000,,DPR,False,Model T Senior Citizen's Garden,Y,Model T Senior Citizen's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X342/,No,79,32,15,{7A35AABC-1FEB-47F7-A724-5DBBFE729054} +"MULTIPOLYGON (((-73.96929270370008 40.595136850854416, -73.96924859339958 40.59492295859922, -73.96956277906025 40.59495235246144, -73.96929270370008 40.595136850854416)))",B213,6088,B213,B-15,B-15,B-15,B-15,"Gravesend Neck Rd., E. 2 St., Ave. V",315,47,61,11223,B,0.06,False,GrAavesend Triangle,Yes,100004112,PARK,20100106000000.00000,,,DPR,False,Gravesend Triangle,N,Gravesend Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B213/,No,45,22,11,{5B155B3C-402C-43C2-8872-D7951E9A650F} +"MULTIPOLYGON (((-73.93774918226296 40.70109060447609, -73.93799264429202 40.70083947588039, -73.93819566758978 40.70095347915876, -73.93839114907105 40.70075184040844, -73.93880410608396 40.70098372558059, -73.9388385430344 40.7010790658013, -73.9386612236641 40.70112234190822, -73.93864482614288 40.701076299886395, -73.93855726590087 40.70109767005911, -73.9386528433704 40.70136602683923, -73.93836408862958 40.701436497939774, -73.93774918226296 40.70109060447609)))",B340,5186,B340,B-04,B-04,B-04,B-04,Flushing Ave. between Beaver St. and Garden St.,304,34,83,11206,B,0.915,False,Garden Playground (PS 120),Yes,100003757,PARK,20100106000000.00000,19621121000000.00000,40 BEAVER STREET,DPR/DOE,False,Garden Playground,Y,Garden Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B340/,No,53,18,7,{523F57A9-4F17-4692-8881-8825D19F4777} +"MULTIPOLYGON (((-73.92187037689251 40.88012220946845, -73.92183705723077 40.88012033100342, -73.9218148551542 40.880120796825096, -73.92177656716028 40.88012160022955, -73.92176314736471 40.8801227509607, -73.92173940108768 40.88012478797172, -73.92171488474393 40.880126890191036, -73.92167689330118 40.88013075722101, -73.92164989300908 40.88013350519114, -73.9216132824511 40.88013746048486, -73.9215837280162 40.880141018043695, -73.92156502851859 40.88014326916172, -73.9215337974247 40.88014702817791, -73.92150953636826 40.880149948169525, -73.92149626552415 40.88015154561261, -73.92149626947757 40.88007384257484, -73.92149627211275 40.880008308719326, -73.92154093326381 40.880010719077035, -73.92157596393146 40.88001137953062, -73.92162156134385 40.88001062618129, -73.92164765458313 40.88000937601272, -73.92169857475388 40.880005195390105, -73.92173685952466 40.880002034533824, -73.92177198148093 40.88000073192768, -73.92180533752784 40.880000875197375, -73.9218426900785 40.8800024934605, -73.92187397128444 40.880005488949266, -73.921908437093 40.88001029476266, -73.92194055957404 40.880016239898175, -73.92196238992454 40.880021118192566, -73.92199331750668 40.8800292416845, -73.9220224845683 40.88003827347068, -73.922039217928 40.88004428111956, -73.92206650500182 40.88005492980016, -73.9221021525457 40.88007085737059, -73.92212284371611 40.88008100901921, -73.92213274853287 40.88008660412586, -73.92215242656938 40.880097716805906, -73.9221735168533 40.8801115300955, -73.92218928537336 40.880121857609446, -73.92221605697587 40.880142162731595, -73.92223401469832 40.88015735884802, -73.92224422104965 40.88016687306844, -73.92226792421557 40.880193591181694, -73.92227349223074 40.88020160116322, -73.92228038207261 40.88021151386353, -73.9222954679423 40.88024053861867, -73.922298598863 40.88024769149524, -73.92230456588004 40.88026555037194, -73.92230830133323 40.88028129340226, -73.92231092543845 40.88029675293132, -73.92231129799914 40.880298763969954, -73.92231133834551 40.88029977254269, -73.92231117705647 40.880300732353476, -73.92231081765757 40.880301672220135, -73.92231029938299 40.88030252193114, -73.92230970416745 40.88030322030852, -73.92230892982072 40.88030390235653, -73.92230824945615 40.880304366549915, -73.92230743742894 40.880304804540536, -73.92230665993961 40.88030512999347, -73.92230593001453 40.88030536362878, -73.92230473379077 40.88030562576574, -73.92230359587126 40.88030574296351, -73.92230222200986 40.88030572582986, -73.92229931482915 40.88030508452676, -73.92229784234155 40.88030418304826, -73.92229062811299 40.880296711351455, -73.9222798496983 40.88028633588446, -73.92226567870756 40.88027443450719, -73.92224174773058 40.880254808477304, -73.92223162515499 40.88024669096893, -73.92221589539444 40.88023565390326, -73.92219950534276 40.88022415353992, -73.9221785132544 40.880211555979294, -73.92217049628506 40.88020674467314, -73.92216375975471 40.8802027023456, -73.92215015983886 40.88019454106234, -73.92212869126033 40.88018461221513, -73.92210310684094 40.8801727805581, -73.92207166789042 40.88016156898002, -73.92204692232458 40.88015274460358, -73.92202154514685 40.88014631959344, -73.92200092530297 40.88014109994335, -73.92197703546572 40.88013505233222, -73.9219406295696 40.88012942038102, -73.92190759013673 40.88012430847636, -73.92189600785846 40.88012365498943, -73.92187037689251 40.88012220946845)))",X091,5720,X091,X-08,X-08,X-08,X-08,Palisade Av at Independence Av,208,11,50,10463,X,0.187,False,Park,No,100004038,PARK,20100106000000.00000,18821230000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X091/,No,81,34,16,{11158A1A-F590-45AC-B060-C3B51201AD5C} +"MULTIPOLYGON (((-73.88824009681908 40.67228304378365, -73.88825730262532 40.67235040107617, -73.88789013569959 40.67240451878445, -73.88787600051258 40.672349179113034, -73.88787293143443 40.67233716053806, -73.88824009681908 40.67228304378365)))",B478,5269,B478,B-05,B-05,B-05,B-05,Schenck Ave. between Belmont Ave. and Pitkin Ave.,305,37,75,11207,B,0.057,False,Jerry and The Senior Gents,No,100003857,PARK,20100106000000.00000,20021120000000.00000,349 Schenck Av,DPR,False,Jerry and The Senior Gents,N,Jerry and The Senior Gents,Greenthumb,Garden,http://www.nycgovparks.org/parks/B478/,No,55,19,8,{FA4E9E1B-09ED-429C-BDCB-453E45478E3A} +"MULTIPOLYGON (((-73.96997037009415 40.74898466512722, -73.96997617690629 40.74898455407769, -73.96998391719859 40.74898473979829, -73.96999162297067 40.74898532893614, -73.96999925514986 40.7489863169785, -73.97000678413619 40.74898769941524, -73.97001416967359 40.748989469932255, -73.97002137742815 40.74899161861508, -73.97002837661655 40.74899413915227, -73.97004596415398 40.74900138919983, -73.97010880258034 40.74902754811818, -73.9700628806291 40.74908962879176, -73.97006284626987 40.749089674708664, -73.96978536136322 40.749464796324894, -73.96971543189277 40.74955932839723, -73.96965920713056 40.74963533792545, -73.96965302161325 40.74964266821632, -73.96963120414283 40.74965924888734, -73.96962792221329 40.7496609850982, -73.96960371753612 40.74966989102182, -73.96958474090897 40.74967304408719, -73.96957325017884 40.74967355253989, -73.96954278735768 40.74966987492663, -73.96953906736809 40.749668891490806, -73.96939457040246 40.74960741345916, -73.96942648954436 40.749562250750195, -73.96945632572199 40.74951987904863, -73.96948605996052 40.74947765769659, -73.96951579179358 40.74943543543546, -73.96954552358858 40.74939321406694, -73.96957525771484 40.74935099089012, -73.96960468220308 40.74930997790386, -73.96963506314026 40.74926953788388, -73.96966719850265 40.749229890763104, -73.96970105274603 40.749191079754965, -73.9697365879573 40.74915314987336, -73.96977376741023 40.74911614072937, -73.96981254608951 40.74908009373287, -73.96985288253286 40.749045049394205, -73.96989473291083 40.74901104642207, -73.96989887151292 40.749007946160546, -73.96990468832117 40.74900406019549, -73.96991084363648 40.749000486794145, -73.96991730429838 40.74899723945553, -73.96992232464689 40.748995017416895, -73.9699275035627 40.74899301694399, -73.96993459612597 40.74899065496689, -73.9699400424366 40.748989115622344, -73.96994559165535 40.74898781403803, -73.96995311124343 40.7489864040062, -73.96995882009247 40.74898559233824, -73.96996458211365 40.748985028323034, -73.96997037009415 40.74898466512722)))",M203B,4818,M203B,M-06,M-06,M-06,M-06,"1 Ave., bet. E. 42 St. and E. 43 St.",106,4,17,10017,M,0.423,False,Ralph Bunche Park,Yes,100004411,PARK,20100106000000.00000,19480819000000.00000,741 1 AVENUE,DPR,True,Ralph Bunche Park,Y,Ralph Bunche Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M203B/,No,74,28,12,{F2FE76AD-43EB-4089-B685-4F302ADFEE2F} +"MULTIPOLYGON (((-73.85895173410294 40.740403941570854, -73.85885453971001 40.74031134028425, -73.8585338903204 40.74045508403148, -73.85852250729731 40.740444798850184, -73.85884355484245 40.74030087642132, -73.85893227071823 40.74026110520886, -73.85900838340746 40.74022698449816, -73.85916593300192 40.740156355885304, -73.85920114446107 40.74018989785084, -73.8592566692493 40.740242790441954, -73.85926437417115 40.7402501308964, -73.8592818151204 40.74026674407491, -73.85936560409864 40.74034656122434, -73.85907637869147 40.740522692909344, -73.85895173410294 40.740403941570854)))",Q473,6582,Q473,Q-04,Q-04,Q-04,Q-04,Lewis Ave. bet. 101 St. and 102 St.,404,21,110,11368,Q,0.205,False,Corona Mac Park,No,100000072,PARK,20090423000000.00000,19971219000000.00000,54-01 101 STREET,DPR,False,Sparrow's Nest Community Garden,N,Sparrow's Nest Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q473/,No,35,13,14,{21949FCE-131E-4E85-8C92-5EBA1D23E860} +"MULTIPOLYGON (((-73.9590490218458 40.71368336024278, -73.95897559517745 40.713789255755444, -73.95897122126802 40.71378706505548, -73.95887950686543 40.713924654659365, -73.95883132046511 40.71390051546132, -73.95881924222185 40.713894466014025, -73.9589822287339 40.71365614824825, -73.9590490218458 40.71368336024278)))",B552,5523,B552,B-01,B-01,B-01,B-01,Grand St. bet. Driggs Ave. and Roebling St.,301,34,90,11211,B,0.045,False,,No,100008377,PARK,20140724000000.00000,20140520000000.00000,239 GRAND STREET,DPR,False,Grand St. Community Garden,,Grand Street Community Garden,,Garden,,No,50,18,7,{13B5F1C0-3C48-4BCF-B196-9C7C0807373A} +"MULTIPOLYGON (((-73.96817181919647 40.684095566764846, -73.96813582984053 40.683901950805996, -73.96819886310819 40.68392760767717, -73.96826307912706 40.68395374661489, -73.96833134122686 40.68398153186927, -73.96851453400647 40.68405609786935, -73.96834875094315 40.684075191011196, -73.96828697591312 40.68408230517262, -73.96822886343602 40.684088997971116, -73.96817181919647 40.684095566764846)))",B388,5212,B388,B-02,B-02,B-02,B-02,"Vanderbilt Ave., Gates Ave. and Fulton St.",302,35,88,11238,B,0.07,False,Gateway Triangle,Yes,100003712,PARK,20100106000000.00000,19921021000000.00000,879 FULTON STREET,DPR,False,Gateway Triangle,N,Gateway Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B388/,No,57,25,8,{7D7EE88A-F7E0-43C5-974D-B53928929451} +"MULTIPOLYGON (((-73.88884501236019 40.85335805363074, -73.88897425958446 40.853091343429895, -73.88926843627888 40.85317584467242, -73.88931003415772 40.85318881835722, -73.88931284101376 40.85318969362692, -73.8893286082433 40.85319461103162, -73.88932896384134 40.85319472213326, -73.88935908302629 40.853204115238235, -73.88936736308032 40.853211365835215, -73.88937393261448 40.85321956481031, -73.8893786081922 40.853228480561434, -73.8893812585868 40.853237864427335, -73.88938180833595 40.85324745249159, -73.88938024365527 40.85325697549395, -73.88937660649655 40.85326616602847, -73.88937100164891 40.85327476755526, -73.88936358368711 40.85328253798996, -73.88935456169926 40.853289259613746, -73.8893441897917 40.85329474356666, -73.88933275759236 40.853298835241574, -73.88932058549523 40.85330142148358, -73.88930801636143 40.85330242878108, -73.88930770535771 40.85330402595527, -73.88930664538893 40.85330244097304, -73.88929682535063 40.85330197770235, -73.88907168825247 40.85330962003622, -73.88885275168649 40.85336027629739, -73.88884501236019 40.85335805363074)))",X068,4761,X068,X-06,X-06,X-06,X-06,Adams Pl bet. Cresent Av and E 183 St,206,15,48,10458,X,0.31,False,D'Auria-Murphy Triangle,Yes,100004977,PARK,20100106000000.00000,19310516000000.00000,2291 ADAMS PLACE,DPR,True,D'Auria-Murphy Triangle,Y,D'Auria-Murphy Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X068/,No,78,33,15,{6B461045-B4E6-454D-8B32-704C047D6B8A} +"MULTIPOLYGON (((-73.97728942442488 40.687032992576604, -73.9773518531971 40.68736329704942, -73.97669967387986 40.687106647449895, -73.97728942442488 40.687032992576604)))",B592,66400,B592,B-02,,,B-02,"Lafayette Ave., Fulton St., bet. St. Felix St. and Ft. Greene Pl.",302,35,88,11217,B,0.231,False,,No,100042532,PARK,,20180823000000.00000,624 - 640 FULTON STREET,DPR,False,Betty Carter Park,,Betty Carter Park,Sitting Area/Triangle/Mall,Neighborhood Park,,No,57,25,8,{DEA17F77-94BD-4B98-BB40-9E247328B845} +"MULTIPOLYGON (((-73.96177552604453 40.68258646362164, -73.96176451486433 40.68252574549858, -73.9619589771587 40.682566013405996, -73.96177552604453 40.68258646362164)))",B537,5466,BZ252,B-02,B-02,B-02,B-02,Grand Ave. bet. Putnam Ave. and Fulton St.,302,35,88,11238,B,0.013,False,Park,No,100008301,PARK,20110712000000.00000,20100820000000.00000,22 PUTNAM AVENUE,DPR,False,Park,N,Park,,Triangle/Plaza,http://www.nycgovparks.org/parks/B537/,No,57,25,8,{5FC21AA0-2A92-4CC7-8722-68BB9F59C096} +"MULTIPOLYGON (((-73.77450857177826 40.761993558338965, -73.774949796004 40.761908288473606, -73.7749525670925 40.7619087045182, -73.77495555716932 40.7619091534088, -73.77496054677675 40.761910886726604, -73.77496121552173 40.761911354495766, -73.77496129350382 40.76191140867853, -73.77496268651652 40.76191238574858, -73.77496491722634 40.761913950685255, -73.7749692692754 40.76191965669639, -73.77497377486662 40.76192829145728, -73.77497631190418 40.76193523662314, -73.77497780221547 40.76193931432993, -73.7749788900221 40.76194229173105, -73.77498097323017 40.76195491551035, -73.77498009338129 40.76195804035342, -73.77497949043398 40.76196018148278, -73.77497858315803 40.761961258518504, -73.77497723710887 40.76196285609097, -73.77497490411206 40.76196562599728, -73.77496952833116 40.761970226094626, -73.77496617572622 40.7619722672997, -73.7749643979549 40.76197334983897, -73.77496404121474 40.761973426585776, -73.77492867544953 40.761981004607236, -73.77472603089019 40.76202442361789, -73.77443333447883 40.762081242939786, -73.77398834300412 40.76216734811379, -73.77398296856248 40.76216838756164, -73.77386600357042 40.762191019213994, -73.77342142822529 40.76227447552488, -73.77313924204505 40.762328755691094, -73.77313376015054 40.76232969313036, -73.77308683224595 40.76233771518109, -73.77308113840793 40.76233516093333, -73.77307748120816 40.762331683174345, -73.77307609765813 40.762330367509385, -73.77307219952876 40.76232008774343, -73.77307183096272 40.762319115369955, -73.77306111668969 40.76227904239815, -73.77306635486276 40.762273164298726, -73.77307628356438 40.7622698925015, -73.77320612508342 40.76224409560171, -73.7735058272762 40.76218660698254, -73.77396273664085 40.762098271284046, -73.77450857177826 40.761993558338965)), ((-73.77295480642546 40.76228990737269, -73.77295487634636 40.76228989400289, -73.77295506074408 40.76228999882518, -73.7729564011868 40.76229075699256, -73.77296151473293 40.76229364779317, -73.77296188589708 40.76229385744236, -73.77296460997138 40.7622990335241, -73.77296572077712 40.762301145601974, -73.77297429996241 40.76232688189979, -73.77298206156942 40.76235169266524, -73.77298218927606 40.762352099045714, -73.77298177434255 40.76235291678928, -73.77297992506134 40.76235655119497, -73.77297665896904 40.76235889958568, -73.7729764998772 40.76235901453709, -73.77297590982111 40.76235943841383, -73.77297556969704 40.762359503480624, -73.77252967620285 40.7624457651391, -73.77250432280286 40.76245074981358, -73.77216787136365 40.76251612994829, -73.77213277998054 40.76252294942743, -73.77167718408202 40.76260970819058, -73.77161610997646 40.762621227992824, -73.77161313419357 40.76262178851274, -73.77160994503899 40.76262205954672, -73.77160980406413 40.76262207097384, -73.7716035762105 40.76262259983226, -73.77159628688318 40.76262252864896, -73.7715955798626 40.762622520943694, -73.77158791383647 40.762621782637595, -73.77158277974334 40.76262109437636, -73.77157812928128 40.76262028280382, -73.771576359762 40.76261997402333, -73.77157585198917 40.762619884766835, -73.77153251787063 40.7626014005721, -73.77151844490096 40.762595397796424, -73.77151607973123 40.76259299775604, -73.77151459264407 40.7625914900589, -73.77151216709682 40.76258666663336, -73.77151216375893 40.762586258696906, -73.77151214528155 40.762584049715656, -73.7715121234632 40.76258143369843, -73.77151390175112 40.762576424100686, -73.77151457945111 40.76257565731195, -73.77151479940684 40.76257540830761, -73.77151780626171 40.76257200404955, -73.77152198521361 40.76256940446799, -73.77164338049528 40.762544178807545, -73.77167747683099 40.76253709275615, -73.7716827532155 40.76253600189255, -73.77170153424663 40.7625322308658, -73.77173924326293 40.76252500427193, -73.77201457480469 40.76247226374111, -73.77205451055576 40.762464614610174, -73.77221093428062 40.76243422120329, -73.77251604605138 40.762374937634334, -73.77295480642546 40.76228990737269)), ((-73.78310290863472 40.759730086649554, -73.78311140316174 40.759741460742994, -73.78311765320338 40.759753646470024, -73.7831215257593 40.75976639053802, -73.78312188420288 40.759768693810365, -73.78312172152151 40.75977100960927, -73.78312104267216 40.75977327040598, -73.78311986799855 40.75977541140227, -73.7831182320558 40.7597773678266, -73.78311618120938 40.75977908483533, -73.78311377602449 40.759780511213556, -73.78294258139968 40.75982687559197, -73.78294253350042 40.75982703759302, -73.78291922448152 40.759833201771194, -73.78291918773664 40.75983321160756, -73.78246759524723 40.75995263333638, -73.7823251349801 40.75999110767641, -73.78232093428372 40.759991842657705, -73.78231663226194 40.75999205515305, -73.78231234025175 40.75999174087031, -73.78230817192346 40.75999090632785, -73.78230423260146 40.759989575137894, -73.78230062521206 40.75998777991318, -73.7822974431574 40.759985568557205, -73.78229084269009 40.75997483374161, -73.78228611403419 40.759963541446965, -73.78228333710157 40.75995188093101, -73.78228348364668 40.75994907612728, -73.78228422452565 40.75994632557664, -73.7822855417329 40.759943703086805, -73.78228740069774 40.759941277931354, -73.78228975147431 40.7599391130515, -73.78229253229188 40.75993726596285, -73.78229567074456 40.75993578695709, -73.78229908144377 40.7599347127935, -73.7824761685815 40.75988799489109, -73.78289347950616 40.75977538300089, -73.78307666628258 40.75972567968271, -73.78308004468684 40.75972469638651, -73.78308358982682 40.75972415285178, -73.78308720572949 40.759724063305946, -73.78309079053547 40.75972443115922, -73.78309424480118 40.75972524541829, -73.78309747503933 40.75972648429497, -73.78310038898799 40.75972811339633, -73.78310290863472 40.759730086649554)), ((-73.78405550472627 40.75947427616597, -73.78406214546507 40.75948106313153, -73.78406747195565 40.759488488794624, -73.78407138163614 40.759496407981445, -73.78407379684641 40.759504665659286, -73.78407478931769 40.75950684314558, -73.78407531014587 40.75950911340057, -73.78407534412507 40.75951141786284, -73.78407489026665 40.75951369619656, -73.78407396060298 40.75951588989125, -73.78407258137474 40.75951794136361, -73.78407078472954 40.759519797543945, -73.78406862056134 40.7595214107989, -73.78406614348684 40.75952273800639, -73.78406341756451 40.75952374596774, -73.78335214515093 40.759714144786436, -73.78334819562068 40.75971522247037, -73.7833440688818 40.75971580274073, -73.78333987393736 40.759715870494006, -73.78333571856228 40.75971542413173, -73.78333171285894 40.759714474667135, -73.78332795977727 40.759713047508086, -73.78331967764042 40.759701174948994, -73.78331357580822 40.75968856177059, -73.78330976603559 40.759675438713465, -73.78330988377006 40.7596734677241, -73.78331041587124 40.75967153713646, -73.78331135033523 40.759669696455866, -73.78331266094985 40.759667994260475, -73.78331431441471 40.759666473711896, -73.7833162679642 40.7596651752526, -73.78331846938197 40.75966413210306, -73.78332086410055 40.75966337207646, -73.78402232528921 40.75947012025919, -73.7840279834994 40.75946910608954, -73.78403378158526 40.75946878197054, -73.78403957504561 40.75946915393484, -73.7840452182388 40.7594702145054, -73.784050572696 40.75947193550687, -73.78405550472627 40.75947427616597)), ((-73.78208918023624 40.760003397472474, -73.78209466918081 40.76000925755136, -73.78209900406691 40.76001565214957, -73.78210209650041 40.76002245052648, -73.78210388416207 40.76002951568711, -73.78210433081594 40.760036701680804, -73.78210447943454 40.760039781697344, -73.7821039507217 40.760042837019604, -73.78210275916568 40.76004578302719, -73.78210094056872 40.760048536040706, -73.78209854254648 40.76005102140801, -73.78209563520414 40.76005316812156, -73.78209229690155 40.7600549159956, -73.78208862254027 40.76005621658221, -73.78208471527057 40.76005703405609, -73.78144698116365 40.76022742755483, -73.781441674918 40.76022870071117, -73.78143616950706 40.76022931431799, -73.7814306059109 40.76022925333404, -73.78142512505929 40.76022851802679, -73.78141987018564 40.760227128479094, -73.78141497263329 40.760225119159585, -73.78141056013637 40.760222541639465, -73.78140530556844 40.76021817231261, -73.78140095283523 40.76021326259128, -73.78139759869913 40.76020791891907, -73.78139531501692 40.76020225849842, -73.78139415112626 40.760196403892, -73.7813941338458 40.760190483022804, -73.78139443009975 40.76018790183012, -73.78139523894096 40.760185384645666, -73.78139653886033 40.7601829899615, -73.78139830244184 40.760180771756175, -73.78140048687405 40.76017878397877, -73.78140304227529 40.76017706975897, -73.78206235960855 40.75999980684176, -73.78206695585155 40.75999907441917, -73.78207164507192 40.75999888157625, -73.78207631949157 40.759999230810635, -73.78208086899029 40.76000011651098, -73.78208518942537 40.76000151596756, -73.78208918023624 40.760003397472474)), ((-73.77582540964258 40.761676952432396, -73.77583318846601 40.761675475428085, -73.77583928131696 40.761676314849765, -73.77584364435498 40.76167806942296, -73.77584643083122 40.761679190573275, -73.77585268822037 40.761684981304015, -73.77585552928093 40.761689942323834, -73.77585988093726 40.76169754296818, -73.77586074278766 40.76169904939281, -73.7758645375337 40.76170567820653, -73.77586646264908 40.76171289051348, -73.77586412061976 40.76171800624197, -73.7758638151911 40.761718672923706, -73.77585987638915 40.761723177702976, -73.77585691641158 40.761725398898854, -73.77585541682863 40.76172652521751, -73.77585466406721 40.76172709107257, -73.7758545892709 40.76172714585799, -73.77553912978381 40.76181395201582, -73.77541054079404 40.761848137708725, -73.77535440346182 40.76186306132668, -73.77525573455358 40.761889291570974, -73.77520325439538 40.76190279314458, -73.77519765637173 40.7619027164841, -73.77519615098385 40.761902400170044, -73.77519142062071 40.761901403082824, -73.77518980504428 40.7619007497639, -73.77518649464889 40.76189941145354, -73.77518222929899 40.76189643505765, -73.77516885178494 40.76187205833118, -73.77516536998382 40.76186571376519, -73.77516564764292 40.7618652064209, -73.77516735769365 40.76186208049508, -73.77517024446416 40.76185804825373, -73.77517322559704 40.76185483115564, -73.7751781981525 40.76185073994906, -73.77519953427762 40.76184213761405, -73.77534437376158 40.761803631694754, -73.77549226305509 40.76176431657771, -73.77580177825182 40.76168314966382, -73.77582540964258 40.761676952432396)), ((-73.77758782136392 40.76120458802752, -73.77762043220379 40.76119757209264, -73.77763142801122 40.7611998472875, -73.77764199254341 40.761205016780224, -73.7776466319115 40.761209853354906, -73.77765126494928 40.76121694118564, -73.77765249906831 40.76122756325135, -73.77764695802784 40.76123881430233, -73.77763677986654 40.76124490910243, -73.77697410015018 40.761429132636074, -73.77696462254501 40.76142829302509, -73.77696359582943 40.76142791462525, -73.77695731962206 40.761425599876894, -73.7769530026119 40.76142106016559, -73.77693875132118 40.76138972643317, -73.77694175141986 40.76138293611265, -73.77694664838108 40.76137697342898, -73.77697919295957 40.761364679673314, -73.77758782136392 40.76120458802752)), ((-73.77669362411382 40.761444024913224, -73.77672038707028 40.76143699789751, -73.77672743350803 40.76143776978135, -73.7767332729618 40.761439652352784, -73.77673351905368 40.761440078769716, -73.77675495628937 40.761477178894005, -73.77675570987721 40.761478483388515, -73.77675467954973 40.76148306947706, -73.77675153720098 40.76148671224366, -73.77675089042167 40.761487462013456, -73.77674943004466 40.76148785090415, -73.77652080399871 40.76154866734728, -73.77645190642335 40.76156669510874, -73.77629838453522 40.76160877678403, -73.77615652686733 40.76164766070474, -73.77613269305644 40.761654193499936, -73.77608640404574 40.761666882641386, -73.77607680452556 40.761666367803635, -73.77607231102633 40.76166255352533, -73.77607129659368 40.761661692469474, -73.77605583396323 40.76162230123509, -73.77610686932995 40.761603023312574, -73.77647492674299 40.761503287323926, -73.77647500260804 40.76150326675944, -73.77669362411382 40.761444024913224)), ((-73.7803140275987 40.76048086635696, -73.78031997446358 40.760486812941664, -73.78032473746511 40.76049334710096, -73.78032821519685 40.76050033446609, -73.7803303370823 40.76050762902026, -73.78033105861695 40.76051507939351, -73.78032842676248 40.76051877636105, -73.78032509966296 40.76052213341205, -73.78032114981232 40.760525074141455, -73.7803166662491 40.76052753298208, -73.78031174981594 40.76052945609558, -73.78030651080024 40.76053079866695, -73.77967638466139 40.76070021622522, -73.77967166728853 40.76070138416639, -73.7796667752405 40.76070201236939, -73.77966181515116 40.76070208662999, -73.77965689360992 40.76070160625151, -73.77965211954186 40.760700580447384, -73.7796475947188 40.76069903282553, -73.77964212068659 40.76069444057331, -73.77963773000144 40.760689219137326, -73.77963454416255 40.760683514632404, -73.77963265383566 40.76067748572134, -73.7796321117535 40.76067130180045, -73.77963199801677 40.76066773557346, -73.77963268355715 40.76066420689572, -73.77963414790484 40.76066081748536, -73.77963634691328 40.760657666313676, -73.77963921987673 40.76065484601687, -73.77964268007379 40.76065243747459, -73.7802791550106 40.760480817861385, -73.78028593388558 40.76047903157641, -73.78029301065233 40.76047813015745, -73.78030018507738 40.76047814023779, -73.78030725701943 40.76047906053526, -73.7803140275987 40.76048086635696)), ((-73.78052833365467 40.76041701101734, -73.7811861361197 40.76023546561181, -73.7811890195454 40.760235924043734, -73.7811917787289 40.76023671002436, -73.78119434740658 40.76023780631817, -73.78119666882165 40.76023918580212, -73.78120383069005 40.76024877900256, -73.78120887139552 40.76025912369982, -73.7812116627406 40.760269948597916, -73.78121211525124 40.76027243845983, -73.78121204778438 40.76027495074746, -73.78121146172249 40.76027742512936, -73.78121037148686 40.76027979769689, -73.78120880450828 40.76028200996922, -73.7812067988613 40.76028400798809, -73.7812044056357 40.76028574142219, -73.78120168300347 40.76028716715754, -73.7811986997714 40.760288249304615, -73.7811955294509 40.76028896188816, -73.78056274484221 40.760464355910386, -73.78055762011871 40.76046551950986, -73.78055232209941 40.7604660821406, -73.78054697399782 40.7604660296291, -73.78054169778676 40.76046536490925, -73.78053661303485 40.76046410171649, -73.78053183807602 40.76046226909244, -73.78052639176944 40.76045787594706, -73.78052195176265 40.76045287057257, -73.78051863486375 40.760447385566124, -73.78051652705062 40.760441565172876, -73.7805156846644 40.76043556258644, -73.78051612968979 40.76042953453705, -73.7805180509406 40.760425841614385, -73.78052078359987 40.76042245731059, -73.7805242468007 40.7604194832289, -73.78052833365467 40.76041701101734)), ((-73.7793802728289 40.7607260830307, -73.77940314410654 40.76072069226587, -73.77940989523161 40.76072086278187, -73.77941416614635 40.76072183540316, -73.7794160075324 40.76072225316238, -73.7794173617303 40.76072280416433, -73.77942339945201 40.76072525790092, -73.77942908979405 40.76072961464477, -73.77942932486876 40.76072979609682, -73.77942948294358 40.76072998370501, -73.77943240967305 40.760733461665176, -73.77943347474519 40.760735848248004, -73.77943428589191 40.76073766612449, -73.7794346747206 40.76073934001172, -73.7794354745874 40.76074277607841, -73.77943510363151 40.76074679163126, -73.77943502992895 40.76074759024022, -73.77943398630862 40.76075052749837, -73.77943353681313 40.7607517954527, -73.77943309524888 40.760752456480226, -73.77943187289141 40.76075429297608, -73.7794306731577 40.760756092594406, -73.77942941986157 40.7607572581529, -73.77942599496622 40.76076044659579, -73.77942395990868 40.7607616493793, -73.7794210325096 40.76076337995254, -73.7790504592429 40.76086366532976, -73.77887079846724 40.760912128118015, -73.77874950756129 40.76094295554162, -73.77874875963361 40.76094314591329, -73.77874327045797 40.76094098585984, -73.77874260973795 40.76094059287017, -73.77873873049894 40.7609382918273, -73.77873362761305 40.76093357417379, -73.77873005474584 40.76092781757165, -73.77872995814813 40.76092766249884, -73.77872989023084 40.760927430037476, -73.77872847819678 40.76092254297319, -73.77872865758118 40.760917028610336, -73.77872866159777 40.760916889039386, -73.77872871789084 40.76091669914045, -73.77873019747824 40.7609115898017, -73.77873114987723 40.760910097689184, -73.7787329166058 40.76090732121607, -73.77873571910202 40.760904337814594, -73.77873680182972 40.76090318544363, -73.77887453770794 40.76086135298076, -73.77890017763177 40.76085356687712, -73.77890519780406 40.760852164516166, -73.7789077049234 40.76085146513096, -73.77924841793521 40.76076102497781, -73.77925085974128 40.76076037678889, -73.77937828994574 40.760726551099246, -73.7793802728289 40.7607260830307)))",Q178,6271,Q178,Q-11,Q-11,Q-11,Q-11,"42 Av, Bell Bl To Francis Lewis Bl",411,19,111,11361,Q,1.429,False,Mall Forty Two XLII,Yes,100000047,PARK,,,,DPR,False,Mall Forty Two XLII,N,Mall Forty Two XLII,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q178/,No,26,11,6,{6DEFAB47-61B8-4FFB-983B-7B64D8AE9980} +"MULTIPOLYGON (((-73.8832005050552 40.839402689893895, -73.88334202351001 40.83927040644843, -73.88348204862925 40.839351364634815, -73.8832005050552 40.839402689893895)))",X148I3,5663,X148I3,X-06,X-06,X-06,X-06,Cross Bronx Exwy Srvc Rd N bet. Bryant Av and Boston Av,206,17,48,10460,X,0.03,False,Strip,Yes,100005061,PARK,20100106000000.00000,19541231000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/X148I3/,No,87,32,15,{F6B401C2-248D-420B-A194-103ADE0CC659} +"MULTIPOLYGON (((-73.93964584301888 40.80319053640984, -73.9398204065183 40.80294989819094, -73.93989934322589 40.80298322271406, -73.93985555806043 40.80304358013326, -73.93981196503216 40.803103673789415, -73.93972477992527 40.803223860150695, -73.93964584301888 40.80319053640984)))",M364,5015,M364,M-11,M-11,M-11,M-11,E. 122 St. bet. Park Ave. and Lexington Ave.,111,9,25,10035,M,0.058,False,Jackie Robinson Community Garden,No,100004285,PARK,20100106000000.00000,20021120000000.00000,103 EAST 122 STREET,DPR,False,Jackie Robinson Community Garden,N,Jackie Robinson Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M364/,No,68,30,13,{B18945D4-E4A8-4CC2-A7FF-65FFD2AC8F44} +"MULTIPOLYGON (((-73.89721950602699 40.74113481189623, -73.89724532204889 40.74100812448979, -73.89726569423495 40.741034211462654, -73.8972923526766 40.74107215471987, -73.89731881353667 40.74111079658845, -73.8973465693085 40.741161197534254, -73.89736759310593 40.74120396427311, -73.89738769320324 40.74125457810957, -73.89739755761167 40.74128088982749, -73.89740461013184 40.741304902745064, -73.89741058477037 40.74132923438212, -73.89741599279073 40.74135170956777, -73.89742106649561 40.74137447351832, -73.89742677940163 40.74140424758968, -73.89743340720283 40.74146652179757, -73.89743336570045 40.74149348115938, -73.89743329429749 40.74154140161151, -73.89743185709366 40.741574394932414, -73.89742887402731 40.741604830335206, -73.89742454215997 40.741633134835844, -73.89741960020372 40.74166166482027, -73.89741538595285 40.741678167371845, -73.89740316196279 40.741717904890585, -73.89739946637302 40.74172819530128, -73.89739912392484 40.741729148633794, -73.89739328328031 40.741745407498975, -73.89738549360288 40.7417618177136, -73.89737686087426 40.74177827220179, -73.89736749206475 40.741794501806986, -73.89735740379228 40.74181047862805, -73.8973466114675 40.741826190071414, -73.8973351269739 40.74184160733123, -73.89732686724689 40.74185186575506, -73.89729151034285 40.74184743975205, -73.89725590249272 40.74184298199653, -73.89731117819791 40.741571734455434, -73.89722215480218 40.741560590507376, -73.8971349638464 40.74154967505505, -73.897149190282 40.74147986509708, -73.89716300869217 40.74141205299894, -73.89719186822458 40.74127043610802, -73.89721950602699 40.74113481189623)), ((-73.8969052323605 40.740867371964384, -73.89692965298582 40.7407506492939, -73.89699804899571 40.740791418839166, -73.8970338297929 40.740815361116745, -73.89707889759185 40.74084841761731, -73.89710266356619 40.740867138797604, -73.89710934708494 40.74087240283359, -73.89711739521476 40.74087874239401, -73.89713362397588 40.74089378996679, -73.89716433973287 40.740920949696005, -73.89719337922233 40.74094876439072, -73.89722607204128 40.74098294622637, -73.89723771304132 40.740998007700334, -73.8972291961972 40.74099694110351, -73.89722051861952 40.74098571393382, -73.89718809885247 40.74095181780131, -73.89715922723636 40.74092416354557, -73.89715414794348 40.74091967268024, -73.89712899162119 40.74091652364992, -73.89707906960979 40.740910274549314, -73.89708327011958 40.740889660277524, -73.8969052323605 40.740867371964384)))",Q341D,6328,Q341D,Q-02,Q-02,Q-02,Q-02,BQE bet. 43 Ave. and Queens Blvd.,402,26,108,11377,Q,0.375,False,Sperge Park,Yes,100000109,PARK,20110712000000.00000,19551117000000.00000,,DPR,True,Spargo Park,N,Spargo Park,Undeveloped,Strip,http://www.nycgovparks.org/parks/Q341D/,No,34,12,6,{BDD87E27-A60D-4814-81DD-99A7F6F32FDA} +"MULTIPOLYGON (((-74.13543274125965 40.551861199762, -74.13671029092258 40.55106125237871, -74.13741940959402 40.551641823393936, -74.13692267395488 40.551956583683655, -74.13698548453678 40.55201325190349, -74.13621690863643 40.55250212581532, -74.13543274125965 40.551861199762)))",R089,5072,R089,R-03,R-03,R-03,R-03,Greencroft Ave. bet. Ainsworth Ave. and Redgrave Ave.,503,51,122,10308,R,3.23,False,Inwood Park (Greencroft),Yes,100004907,PARK,20100106000000.00000,19630708000000.00000,125 AINSWORTH AVENUE,DPR/DOE,False,Greencroft Playground,Y,Greencroft Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R089/,No,64,24,11,{FD0430E8-6FD7-4D57-91FA-7A8613F12373} +"MULTIPOLYGON (((-73.90565830783797 40.82906999202178, -73.90596722367032 40.828613875029546, -73.90630497143546 40.82872676589589, -73.90627120581406 40.82878737692125, -73.9066426515108 40.82891152965899, -73.90647249699757 40.82934212935438, -73.90565830783797 40.82906999202178)), ((-73.9060548664558 40.82849323503904, -73.90617752126659 40.828383681554826, -73.90642231687578 40.828476937659644, -73.90637379916768 40.828599836625564, -73.9060548664558 40.82849323503904)))",X243,6608,X243,X-03,X-03,X-03,X-03,3 Av to Fulton Av bet. E 167 St and E 168 St,203,16,42,10456,X,0.903,False,Estella Diggs Park,Yes,100005187,PARK,20100106000000.00000,19790717000000.00000,3436 3 AVENUE,DPR,False,Estella Diggs Park,Y,Estella Diggs Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X243/,No,79,32,15,{F5F49745-8FA5-4380-997B-A84547B49149} +"MULTIPOLYGON (((-73.91555106656773 40.84555266317813, -73.91547533771114 40.84550577308192, -73.91548668960566 40.845495365399366, -73.91555179444613 40.84553601269878, -73.91588029909167 40.8453056302159, -73.9161871538626 40.84549474275341, -73.91617453547413 40.84550433914099, -73.915879638344 40.84532458690893, -73.91555106656773 40.84555266317813)))",X148C,5706,X148C,X-05,X-05,X-05,X-05,Cross BX Exwy bet. Featherbed La and Inwood Av,205,14,46,10452,X,0.029,False,Strip,No,100005128,PARK,20100106000000.00000,19570128000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/X148C/,No,77,29,15,{BA5CF20C-E124-4107-B47F-4B239160BD97} +"MULTIPOLYGON (((-73.90050056269719 40.72683274077444, -73.90051162167842 40.72672905576381, -73.9006150608102 40.726830765785515, -73.90050056269719 40.72683274077444)))",Q090,6157,Q090,Q-05,Q-05,Q-05,Q-05,"55 Ave., Jay Ave., 65 Pl.",405,30,104,11378,Q,0.062,False,Federalist Triangle,Yes,100000172,PARK,20090423000000.00000,19270203000000.00000,,DPR,False,Federalist Triangle,N,Federalist Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q090/,No,30,15,6,{983F1A6C-259A-480E-A188-885ACC312E72} +"MULTIPOLYGON (((-74.03571621333731 40.626933707042696, -74.03619722311123 40.625725692825576, -74.0366425593279 40.62582863247274, -74.03664521091356 40.62582968793754, -74.03616436902067 40.62703729873124, -74.03571621333731 40.626933707042696)))",B192,5098,B192,B-10,B-10,B-10,B-10,Colonial Rd. from 83 St. to 85 St.,310,43,68,11209,B,1.37,False,Russell Pederson Playground,Yes,100003922,PARK,20100106000000.00000,19380713000000.00000,8301 SHORE ROAD,DPR/DOE,False,Russell Pedersen Playground,Y,Russell Pedersen Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B192/,No,46,22,11,{5DF03722-EE7C-4163-9A45-553A4FAB2BEC} +"MULTIPOLYGON (((-73.95643659889264 40.70864112342091, -73.95659052761508 40.70839663424652, -73.95668555926112 40.70841809230565, -73.95677310135292 40.708437859915996, -73.95693722877058 40.708177170302285, -73.95702574043143 40.70820879871744, -73.95669741258662 40.70873029589197, -73.95643659889264 40.70864112342091)))",B223PA,4647,B223PA,B-01,B-01,B-01,B-01,"Broadway, Rodney St., S. 5 St.",301,34,90,11211,B,0.237,False,Rodney Park Center,Yes,100004551,PARK,20100106000000.00000,19520206000000.00000,322 SOUTH 5 STREET,DPR,True,Rodney Park Center,Y,Rodney Park Center,Neighborhood Plgd,Recreation Field/Courts,"http://www.nycgovparks.org/parks/B223PA +/",No,53,18,7,{52504282-6A43-4969-93DE-A40993000920} +"MULTIPOLYGON (((-73.8830141506112 40.872029236735486, -73.8830843692378 40.87208972890705, -73.88278313037185 40.87230958655629, -73.88284929063566 40.87253311816579, -73.88297839952253 40.87263937988061, -73.88294683343223 40.87266235085443, -73.88311281514493 40.872792857652875, -73.88311966049916 40.87282702282929, -73.88296776743918 40.87293221257254, -73.88289070636985 40.87285976751158, -73.88282039277179 40.87278346975459, -73.88278232313618 40.872730492252416, -73.88274974261567 40.87267544648857, -73.88272284517585 40.87261865864172, -73.88270179154354 40.872560466562476, -73.88268670446679 40.8725012170671, -73.88260000148333 40.87219528503591, -73.88274232793343 40.872146232430254, -73.88288054187034 40.872090817122555, -73.8830141506112 40.872029236735486)))",X197,6665,X197,X-07,X-07,X-07,X-07,Mosholu Parkway South bet. Bainbridge Ave. and Briggs Ave.,207,11,52,10458,X,0.412,False,Mosholu Playground,Yes,100007977,PARK,20111019000000.00000,19620118000000.00000,,DPR/DOE,False,Mosholu Playground,,Mosholu Playground,JOP,Jointly Operated Playground,,No,78,36,13,{2865BCCE-F5FC-412B-8A52-CF3D1ED7595A} +"MULTIPOLYGON (((-74.13517001562607 40.61940161638317, -74.13488552077861 40.62046115207358, -74.13379582433417 40.62025797919907, -74.13396858872824 40.61921278849687, -74.13517001562607 40.61940161638317)))",R029,6017,R029,R-01,R-01,R-01,R-01,"Willard Ave., Springfield Ave., Maine Ave., Neal Dow Ave.",501,50,120,10314,R,2.889,False,Westerleigh Park,Yes,100004940,PARK,20100106000000.00000,19070716000000.00000,,DPR,True,Westerleigh Park,Y,Westerleigh Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/R029/,No,63,24,11,{CDC76461-5B0C-4D89-8A92-1E3EA3848A0A} +"MULTIPOLYGON (((-73.97272645885994 40.683296002108825, -73.97281630800784 40.683753452060984, -73.9728766696957 40.68406076939274, -73.97216209204784 40.68414370987158, -73.97208119794784 40.683745893638296, -73.9720349308536 40.68351835853968, -73.97238877592967 40.68347728779912, -73.97236054857761 40.68333847309136, -73.97272645885994 40.683296002108825)))",B407,5409,B407,B-02,B-02,B-02,B-02,S. Oxford St. bet. Commos and Atlantic Ave.,302,35,88,11217,B,1.187,False,South Oxford Park,Yes,100004998,PARK,20100106000000.00000,19980427000000.00000,187 SOUTH OXFORD STREET,DPR,False,South Oxford Park,Y,South Oxford Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B407/,No,57,25,8,{35F25DC1-BAE0-4F34-A414-6B696116D61C} +"MULTIPOLYGON (((-73.93158050831211 40.80153894491662, -73.93163164085813 40.80146853550344, -73.93336642056693 40.80220194531333, -73.93354666314438 40.80195373942661, -73.93373931406907 40.80203518250566, -73.93373766023184 40.802053761553594, -73.93373661187994 40.80207121532554, -73.93371866582052 40.80210805073092, -73.93368163175204 40.802140796793, -73.93362537447749 40.80217072401984, -73.93356545843362 40.80219404755161, -73.9335648562032 40.8021942813343, -73.93349940951003 40.80221172678801, -73.93341500671744 40.80222350522184, -73.93337715526002 40.80222378501927, -73.93332919775436 40.80222414090517, -73.93331169065767 40.802222360397224, -73.93326350143472 40.802217440998, -73.93319179723379 40.80220461057564, -73.93309951223947 40.802179150372794, -73.9330125087016 40.80214457381059, -73.93158050831211 40.80153894491662)), ((-73.93145792765513 40.8017077382095, -73.93152778428718 40.80161154607664, -73.9317708811365 40.801715616830506, -73.93227727585463 40.801928492682045, -73.93272349580093 40.8021140802922, -73.93287327784189 40.802178821645875, -73.93289362075204 40.802186428299585, -73.93290658973433 40.80219233141631, -73.93296193558385 40.80222288693365, -73.93298144696774 40.802232505703735, -73.93300052178442 40.80224260148134, -73.93301916003412 40.802253174266575, -73.93303732500269 40.802264202426414, -73.93305500722177 40.802275674249096, -73.93307218655139 40.80228758432013, -73.93308883456781 40.802299915513736, -73.93310495484353 40.80231265072277, -73.93312051301149 40.802325790827965, -73.93313549369972 40.80233930250225, -73.93314987439418 40.80235318393172, -73.9331636645968 40.802367413510105, -73.93317682402784 40.80238197950785, -73.93318596637573 40.80239163635632, -73.93319468426802 40.802401507276855, -73.93320297415127 40.802411590466455, -73.93321083485041 40.80242187601911, -73.93321681553873 40.80243034057342, -73.93322716241425 40.802443026494736, -73.93324159866334 40.802461817465634, -73.93145792765513 40.8017077382095)), ((-73.93235825716367 40.802713334200625, -73.93228156099059 40.80268090992723, -73.93220069415668 40.8026467217736, -73.93212308249475 40.80261391054177, -73.9320435827703 40.802580300302324, -73.93191515739143 40.80252600637436, -73.93178306848529 40.80247016307734, -73.93165405126997 40.80241561816826, -73.93149238412359 40.80234726797447, -73.93120435533477 40.80222549664278, -73.9312530299223 40.802158471814536, -73.9326738613342 40.80275318684129, -73.9327315298284 40.80278062179267, -73.93279124690947 40.802819018783545, -73.93284168515956 40.80286445674279, -73.93284355169232 40.802866720784195, -73.9328437435833 40.80286680644342, -73.93285190078721 40.80287684905779, -73.93287461403027 40.80290440314777, -73.93287452840002 40.80290470746655, -73.93289260517446 40.80292696391876, -73.93289765111047 40.802935185710545, -73.93290329446039 40.802944435319226, -73.93290851461323 40.802953820656604, -73.93291332105645 40.80296333452437, -73.93291769720474 40.80297297150986, -73.9329213877502 40.802982074100335, -73.93292515631191 40.80299254909656, -73.9329282309869 40.8030024779865, -73.93293245958246 40.80301272182183, -73.93293624487445 40.80302306175252, -73.93293957738398 40.803033495972045, -73.93294245949558 40.80304401007388, -73.93294448884471 40.80305287936841, -73.93294468233537 40.80305373045253, -73.93294684651005 40.803065221178, -73.93294834550908 40.803075896564934, -73.93294938467515 40.803086605903324, -73.9329499580955 40.80309733658273, -73.93295007289021 40.803108078701875, -73.93294970656662 40.803118808834704, -73.9329488899286 40.80312953420308, -73.93294759931028 40.80314021967374, -73.93294585128587 40.803150881465385, -73.93294297566058 40.80316333189251, -73.93294080977101 40.803168832681344, -73.93293823039915 40.80317423327416, -73.93293425812351 40.80318127466623, -73.93293088739722 40.80318641635531, -73.932927138798 40.80319140023711, -73.93292309525665 40.803196248872304, -73.93291868097626 40.803200916291296, -73.93291235035312 40.80320687210944, -73.93290549509247 40.8032124890343, -73.93290491874463 40.803212898425855, -73.93289370692372 40.8032211719877, -73.93287822564857 40.80323033185503, -73.93286348335606 40.80323644846416, -73.93284704461972 40.80324084142868, -73.93265629249204 40.80316019942889, -73.93283457395819 40.80291470224576, -73.9327574710243 40.80288210605801, -73.93267455681787 40.802847053465314, -73.9326025487368 40.80281661144117, -73.93251935751296 40.80278144060905, -73.93235825716367 40.802713334200625)), ((-73.93131283701156 40.8020761198995, -73.93137764239748 40.80198688300997, -73.93304916064709 40.802693547448, -73.93304147899362 40.80269375370314, -73.9330103418565 40.802695073754485, -73.93297916163054 40.80269564005464, -73.93294797386154 40.80269545892778, -73.93291275012103 40.80269264508605, -73.93287766825972 40.802688982145554, -73.93284275672447 40.8026844656205, -73.93280806054008 40.80267910364182, -73.93277360222447 40.80267289532231, -73.93273942679686 40.80266585419587, -73.9327055543968 40.802657987478625, -73.93267203833587 40.80264931141085, -73.93253789856487 40.80259333540917, -73.93210782501855 40.8024083311254, -73.93161759510862 40.802204194476836, -73.93131283701156 40.8020761198995)), ((-73.93290749842751 40.80279099273334, -73.93289215871384 40.80277738356755, -73.93287766404032 40.80276720309158, -73.93291636271846 40.802776724082, -73.93295055149726 40.802779997475604, -73.93300902737644 40.80278129667381, -73.93306751880675 40.80278127481923, -73.93316123319525 40.80277664029558, -73.93320765585034 40.8027733569682, -73.93323313609682 40.802771561725784, -73.93332986725073 40.802812217609805, -73.93306076438454 40.80318278178959, -73.9330625829702 40.80316557070824, -73.93306347848498 40.80314238337959, -73.93306334657757 40.803119179245314, -73.93306218601955 40.80309600242909, -73.9330600133856 40.80307287005005, -73.9330568025893 40.80304979830195, -73.9330521312603 40.803024922005974, -73.93305169942576 40.80302303971227, -73.93304733629867 40.80300396911203, -73.93304107127075 40.80298126659487, -73.93303382249361 40.80295872739665, -73.93302480227624 40.80294070046973, -73.9330149724291 40.80292291980829, -73.93300433767384 40.80290540432541, -73.93299291931007 40.80288818555065, -73.93298073036738 40.80287126979491, -73.93296777911246 40.802854685878735, -73.93295407382568 40.80283844911509, -73.93293964173881 40.802822583833034, -73.93292450061239 40.80280710535119, -73.93290808686956 40.80279151356429, -73.93290749842751 40.80279099273334)), ((-73.9332610044984 40.802317974874086, -73.93326352494192 40.802312192427614, -73.93327011258614 40.80230861585679, -73.93327625242236 40.802308450116946, -73.93329840423021 40.80231087987627, -73.93331810291632 40.80231222581241, -73.93331816216445 40.80231222944866, -73.93333811852433 40.80231305594248, -73.93335803393765 40.80231335381618, -73.93337793921403 40.80231312398812, -73.9333978307933 40.80231237095872, -73.93341767194433 40.802311089303814, -73.93342345070315 40.80231056494894, -73.93343744014565 40.80230928441336, -73.93345711169421 40.80230695807479, -73.93347668066623 40.80230410848365, -73.93349608779872 40.802300746411866, -73.9335153390146 40.80229687366389, -73.93353439876337 40.80229248931886, -73.93355325281338 40.80228760417456, -73.93357185494786 40.80228221820452, -73.93359021344472 40.8022763485231, -73.933623076489 40.80226481584825, -73.93365540118229 40.802252429180975, -73.93368714129197 40.80223920380368, -73.93371826717444 40.80222515680928, -73.93374874562912 40.80221030708964, -73.93377850816265 40.802194414172725, -73.93350382225056 40.802572673679016, -73.93342682480859 40.80254012302296, -73.93340567341265 40.80251013049053, -73.93340542376951 40.80250973052472, -73.93337282632639 40.80246175651129, -73.93333897090461 40.802415665604876, -73.93333866318459 40.80241527641129, -73.93330157231465 40.80236834705882, -73.93326224952409 40.802321966606875, -73.9332610044984 40.802317974874086)))",M108F,6411,M108F,M-11,M-11,M-11,M-11,"1 Ave. To 2 Ave., bet. E. 124 St. and E. 126 St.",111,8,25,10035,M,2.3,False,Triboro Plaza,Yes,100004786,PARK,20100106000000.00000,19330915000000.00000,,DPR/NYCHA/TBTA,False,Triboro Plaza,Y,Triboro Plaza,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/M108F/,No,68,30,13,{2C57FDDF-EDBF-4242-B944-4DEDB9667C75} +"MULTIPOLYGON (((-73.97776205372425 40.724331527521635, -73.97794023705924 40.72409076472739, -73.9780099452282 40.724120097742464, -73.97809457598174 40.72415571010468, -73.97817350361983 40.72418892326739, -73.97799625345205 40.72443007921966, -73.97783208397395 40.72436099668248, -73.97776205372425 40.724331527521635)))",M310,5960,M310,M-03,M-03,M-03,M-03,E. 8 St. bet. Ave. C and Ave. D,103,2,9,10009,M,0.169,False,Firemen's Memorial Garden,No,100004128,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,Firemen's Memorial Garden,N,Firemen's Memorial Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M310/,No,74,27,12,{C863B91A-CE0F-4717-9C7E-08CBE77D5116} +"MULTIPOLYGON (((-73.73111436548254 40.732481243602244, -73.73169864285143 40.730987915950166, -73.73245491608836 40.73101002626469, -73.73216913039805 40.731729056929495, -73.73198496846953 40.73168676992025, -73.73177678325055 40.732223794777155, -73.73226909873941 40.73233717672875, -73.73212585968504 40.73271196195294, -73.73199989483567 40.73268103252973, -73.73184871300757 40.73264768580801, -73.73180723096073 40.732639559335006, -73.73169626839983 40.73261782092806, -73.73154272660476 40.73259146708739, -73.7313882142394 40.73256863088067, -73.73123285901339 40.73254934141848, -73.73109322616408 40.73253527271249, -73.73111436548254 40.732481243602244)))",Q358,5352,Q358,Q-13,Q-13,Q-13,Q-13,235 Ct. bet. Hillside Ave. and 87 Ave.,413,23,105,"11426, 11427",Q,2.719,False,(Detective William T.) Gunn Park,Yes,100000027,PARK,,,235-90 HILLSIDE AVENUE,DPR/DOE,False,Detective William T. Gunn Playground,Y,Detective William T. Gunn Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q358/,No,33,11,3,{1CD1A053-ED45-4B23-832F-F020FF5EB7DC} +"MULTIPOLYGON (((-73.75747795499024 40.699360090567446, -73.75817935437956 40.699178173666354, -73.7587143573497 40.700375516098994, -73.75801946535097 40.70056001460512, -73.75747795499024 40.699360090567446)))",Q106,4901,Q106,Q-12,Q-12,Q-12,Q-12,"197 St., 196 St. bet. 113 Ave. and Murdock Ave.",412,27,113,11412,Q,2.043,False,Daniel M O'Connell Playground,Yes,100000329,PARK,20090423000000.00000,19340712000000.00000,113-01 196 STREET,DPR,False,Daniel M. O'Connell Playground,Y,Daniel M. O'Connell Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q106/,No,33,14,5,{80EE5B34-89D3-4170-AA97-8509DAC41F6D} +"MULTIPOLYGON (((-73.90559007025497 40.90111391915806, -73.90563655751822 40.901124506332344, -73.90568102606743 40.90113926468078, -73.90572282703438 40.90115798026104, -73.90576354196492 40.90118014199169, -73.90580018322812 40.90120607611278, -73.90583214853645 40.90123535530743, -73.90585891163089 40.90126749829207, -73.90588003176644 40.901301976126945, -73.90588109677061 40.90131926268224, -73.90588275231858 40.901346110155394, -73.90588449024612 40.901374288610555, -73.90588507045875 40.90139868859228, -73.90588451259715 40.90144063987601, -73.9058836063565 40.901454550711094, -73.90588216272488 40.901476678923025, -73.90588055894035 40.90150127432979, -73.90587825125968 40.90152427800774, -73.90587568114194 40.90154990277983, -73.90587466153785 40.90156005670393, -73.90587401199618 40.9015628242614, -73.90587323709397 40.9015661184997, -73.90587286809041 40.90156689081395, -73.9058727500012 40.90156731124359, -73.90587201876674 40.90156910170959, -73.90587138757326 40.90157064552461, -73.90587058436451 40.901572138772266, -73.90586962051368 40.901573930849565, -73.90586956458466 40.90157403616057, -73.9058685971657 40.901575833637864, -73.90586676619749 40.9015781544926, -73.90586567250841 40.90157944489456, -73.90586564740309 40.901579573643254, -73.90586553579627 40.90157960687016, -73.90586463588019 40.90158066870723, -73.90586220751406 40.90158329613973, -73.90585924317496 40.90158559625955, -73.90585769751318 40.901586744916926, -73.9058576808086 40.90158680793717, -73.90585760009314 40.90158681687618, -73.90585680884698 40.90158740514734, -73.90585342910028 40.90158972293792, -73.90585020654738 40.90159166265344, -73.90584764107298 40.901593055410565, -73.90584494019805 40.90159452189692, -73.90584224003996 40.901595482311926, -73.90583911241514 40.901596595460425, -73.90583390636942 40.901597936536994, -73.90582898108691 40.90159879968549, -73.90582400862554 40.901599455684014, -73.90581939713782 40.90159998140664, -73.9058194729913 40.901600053507224, -73.90581806888738 40.90160013250486, -73.9058078532361 40.90160070318169, -73.90576175520681 40.90160328146784, -73.90545625048756 40.90162036510159, -73.9054526292523 40.901620567446386, -73.90539635589104 40.90162371446323, -73.90534681700377 40.901626484268554, -73.90525477516893 40.901631630675574, -73.90517956714629 40.90163583632342, -73.9051674393846 40.90163651433172, -73.90516717511886 40.90163623946709, -73.90513095451654 40.90159829934295, -73.90510234410951 40.90155678513932, -73.90508194435385 40.90151256812335, -73.90507018471776 40.90146657795165, -73.90506731184563 40.90141978104882, -73.90507338721493 40.901373160794364, -73.90508828123464 40.901327695906225, -73.90511168276625 40.901284343339604, -73.90514309916009 40.90124401397422, -73.90518186933873 40.901207553715544, -73.90522718043206 40.901175730001654, -73.90527234106457 40.90115201860519, -73.90532112556443 40.90113288101891, -73.90537273358902 40.90111863175164, -73.90542631862783 40.90110950513243, -73.90548100106388 40.901105649918755, -73.90553588597476 40.90110712931107, -73.90559007025497 40.90111391915806)))",X110A,69223,X110A,X-08,X-08,X-08,X-08,"W 254 St, Riverdale Av, Henry Hudson Pkw",208,11,50,10471,X,1,False,Hackett Park,Yes,100004212,PARK,,19370601000000.00000,,DPR,True,Hackett Park,Y,Hackett Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X110A/,No,81,34,16,{3A15432E-D8E2-4426-B9C1-D67BE9145990} +"MULTIPOLYGON (((-73.95073552024594 40.811037515599516, -73.95078309450682 40.8109724668538, -73.9511100677541 40.81111025695318, -73.95106249371436 40.81117530583235, -73.95073552024594 40.811037515599516)))",M374,4958,M374,M-10,M-10,M-10,M-10,W. 126 St. and Frederick Douglass Blvd.,110,9,28,10027,M,0.057,False,CEP Community Garden,No,100004275,PARK,20100106000000.00000,20021120000000.00000,2351 FRED DOUGLASS BLVD,DPR,False,CEP Community Garden,N,CEP Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M374/,No,70,30,13,{E4BD9841-C383-4A6A-931B-BB9D7582A677} +"MULTIPOLYGON (((-74.17026427795108 40.608845929879934, -74.17031300671181 40.60865210471756, -74.17066259368777 40.60870756089789, -74.17070884491527 40.60852357745796, -74.17035925886438 40.60846812141728, -74.17053943294563 40.607751425840476, -74.17085570363471 40.60777436253517, -74.17342438909657 40.608188681547844, -74.17346870174133 40.60819618267574, -74.173513722052 40.60820318382835, -74.1735600799777 40.60820974709025, -74.17361324194916 40.60821647475761, -74.17368496583799 40.60822421445705, -74.17375711360874 40.60823046670697, -74.17380819589229 40.608233970853156, -74.17384750252239 40.60823615010812, -74.17388221348916 40.60823770233385, -74.17388802150376 40.60823788896067, -74.17393386405949 40.60823936489482, -74.17397838032973 40.60824018003313, -74.17403114258413 40.608240406334055, -74.1740767402527 40.60823995366109, -74.17414110437832 40.608238295554735, -74.17421366444755 40.60823498693795, -74.17427815893171 40.60823076296627, -74.17432211901813 40.60822718606201, -74.17440183805718 40.60821924768429, -74.17447772039901 40.60820993457321, -74.17454876389466 40.608199639085385, -74.17461831048332 40.608188061681545, -74.17469047722535 40.60817445137422, -74.17476916287806 40.608157719801234, -74.17486459289874 40.6081347031631, -74.1749698085668 40.60810574160301, -74.1750429032232 40.6080833189411, -74.17515837810419 40.6080438576905, -74.175298306709 40.607988982593795, -74.17538555702572 40.607950548429834, -74.17548586324067 40.60790202011137, -74.17556684643705 40.60785918191249, -74.17565435588911 40.607808885453636, -74.17573060845733 40.60776135903925, -74.17587405873356 40.60766134722324, -74.1759646785665 40.60758989247191, -74.17602629685419 40.60753701303906, -74.1760783833493 40.607496270121295, -74.17612999776182 40.60743874034535, -74.17617480412326 40.60739206598506, -74.17621949417288 40.60734253352394, -74.1763046785031 40.607256968428054, -74.17633489643076 40.60723114188631, -74.17636516765387 40.607207160427336, -74.17641107977124 40.60717394710233, -74.17644509471184 40.6071515132789, -74.17648342832808 40.6071282038089, -74.17654574685046 40.60709647541439, -74.17661584309003 40.607065893107745, -74.17665537399286 40.60705079631536, -74.17672857914985 40.60702657676277, -74.17681577018487 40.60700357296774, -74.17686343997742 40.60699350021035, -74.17695677416319 40.60697861678095, -74.17699951197169 40.60697386554941, -74.17705440591729 40.606969615178556, -74.1771311824537 40.60696711409603, -74.17720778403891 40.606968591744746, -74.1772765864337 40.606973316953095, -74.17737370156291 40.60698557633545, -74.17745738161618 40.60700159175144, -74.17754427222832 40.60702389860741, -74.17760756475883 40.607044064399965, -74.17770052090142 40.60708028836063, -74.17778849111704 40.60712280291113, -74.17783503110772 40.60714904420771, -74.17789281356461 40.607185834828016, -74.17807614000755 40.607345924263925, -74.17863251346718 40.60805494534348, -74.17870890319023 40.60815203629774, -74.17851422969744 40.60840994794544, -74.1768661666049 40.61034863252642, -74.17543909093858 40.61219138066604, -74.17186718243254 40.61665004272268, -74.16906645020369 40.620464840638874, -74.16901959012392 40.620459174119794, -74.16892337084509 40.620446591169866, -74.16881146490856 40.620430520039996, -74.16869858441105 40.620412727532596, -74.16860276934864 40.62039636603113, -74.16848493790067 40.62037464079112, -74.16836882835418 40.620351482879435, -74.16824933493022 40.620325803838654, -74.16813939270945 40.62030049612792, -74.16802183198318 40.620271636081554, -74.16789763566453 40.620239073654524, -74.16781465837724 40.62021588569973, -74.16864519221453 40.61679358982887, -74.16867935276744 40.616602271444684, -74.16877464380579 40.6160685918268, -74.16904427334667 40.61455846955137, -74.16966788138173 40.61127705158314, -74.1696944767395 40.6111627134465, -74.16985088750565 40.61049023840795, -74.1700236608388 40.60980302345548, -74.17019684003233 40.60911418214511, -74.17026427795108 40.608845929879934)), ((-74.16954596432556 40.62047779085033, -74.17190343045269 40.617273839871714, -74.17197207209246 40.617298887894535, -74.17228826477606 40.61727617062577, -74.1726038245703 40.61731635222904, -74.17276302979782 40.61738963352451, -74.17284575327345 40.617376190443125, -74.17286283058637 40.61735922053373, -74.17322138212215 40.617410306850296, -74.17353219090793 40.61677121274211, -74.17445647957074 40.6164685375971, -74.17469168484037 40.61635938016075, -74.17425177020105 40.61540818554188, -74.17349716567608 40.6152128014004, -74.1741083782635 40.614421966646006, -74.17440709303283 40.61403545789083, -74.17442347336237 40.61405613425419, -74.1747841993944 40.614513920892364, -74.17564824542177 40.61561042387389, -74.17607796269756 40.61667716402825, -74.17634502465542 40.617340108378826, -74.17608299964635 40.61774441059247, -74.17606627836709 40.6177683991076, -74.17597618008654 40.617897650378644, -74.17587503396346 40.61803170475691, -74.17576858687677 40.61816339157087, -74.17566186343495 40.618287671909165, -74.17555041779697 40.61840947121426, -74.17543431953179 40.61852873533486, -74.17531366758442 40.6186453452372, -74.17518854682278 40.61875922063117, -74.1750559979044 40.61887345660146, -74.17491893515896 40.618984480818426, -74.17477744590593 40.61909224360454, -74.17463166810433 40.619196626765486, -74.1744817563369 40.61929754089885, -74.17430454787329 40.61940915120673, -74.1741390129542 40.619506868309365, -74.17396977267302 40.619600522219805, -74.17379678452859 40.619690123792424, -74.17362023384693 40.6197755835788, -74.17344017729842 40.61985687266044, -74.17324218986018 40.61994127817376, -74.17304062013474 40.62002031081827, -74.172835556758 40.62009395693421, -74.17262725948665 40.62016210895089, -74.1724153882642 40.62022486821938, -74.17221272389583 40.62028205348061, -74.17200489855594 40.620333861883914, -74.17181328177546 40.620375720131925, -74.17158434571492 40.62041853789205, -74.17137060966706 40.62045164111862, -74.17111238091822 40.62048300733646, -74.17087991312174 40.62050333300581, -74.17057748478531 40.62051872811568, -74.17048336766425 40.62052099116029, -74.17035263169754 40.62052215122661, -74.1702483587359 40.62052142498609, -74.17015118521238 40.62051942651185, -74.17008300462182 40.62051726349335, -74.17001504109157 40.62051448055419, -74.16994458200627 40.620510934919785, -74.16986981279996 40.62050643385354, -74.16980790456154 40.62050213076803, -74.16972768251439 40.620495774483544, -74.16963608525471 40.62048743577008, -74.16954596432556 40.62047779085033)), ((-74.18018074792542 40.6091257481783, -74.18017722137567 40.60912332589551, -74.17913621590247 40.60890270298421, -74.17973626008201 40.608089198742455, -74.1794157950293 40.607733493776216, -74.18017142460485 40.60675959235645, -74.18437728138423 40.602599693728465, -74.18464242056722 40.60237592819291, -74.18480730483518 40.60229452505272, -74.18507763411772 40.60219099893932, -74.18534741335655 40.60212243772406, -74.18549902848387 40.60210071380754, -74.18565829997229 40.6021203627091, -74.18578032694622 40.602184361178615, -74.18585580131892 40.602247978245174, -74.18587475211064 40.602308147633096, -74.18582193635166 40.60241396087279, -74.1852946143514 40.603470395725836, -74.18520391382769 40.60362130224156, -74.18512079985037 40.60374382275464, -74.18502825290925 40.60387294122222, -74.18493761658806 40.60398985714111, -74.18487658439102 40.60406335163504, -74.18481368965739 40.60413587472408, -74.18470944861689 40.60424854295115, -74.18462428039467 40.60433892849978, -74.18455978588506 40.60440737374316, -74.18452747482462 40.60444161311314, -74.18446321224222 40.60451025604418, -74.18440255433534 40.60457546396023, -74.18434218756416 40.60464088840298, -74.18428271908543 40.60470690301721, -74.1842236721662 40.60477501154281, -74.18416574403668 40.60484354779456, -74.18410787232034 40.60491201818784, -74.18404379230633 40.6049914902867, -74.18394670752106 40.605111860235354, -74.18385852161362 40.60522016955802, -74.18378232454312 40.605315180517664, -74.18368546889421 40.60543629190547, -74.18360051496029 40.60554765133703, -74.18343441703313 40.60579627919805, -74.1833088861398 40.60597634107991, -74.18323334175629 40.60607556597627, -74.18318160740013 40.60614016736288, -74.1830140467699 40.60633346245008, -74.18294139402542 40.60641070346413, -74.18285359194861 40.606499461917394, -74.18278698954678 40.60656372746668, -74.18272567355169 40.60662073265554, -74.18265309413428 40.60668571093725, -74.18140663528675 40.60766129328695, -74.1813057573803 40.60774124694804, -74.1812861857003 40.60775737647827, -74.18126188238222 40.6077776504722, -74.18123296105928 40.60780214619274, -74.18120906138053 40.60782269690016, -74.18118062654052 40.60784752053145, -74.18114779265478 40.60787670692102, -74.18111532685975 40.6079061313597, -74.18108779390292 40.607931538886845, -74.18106506004146 40.60795284326631, -74.18104251790437 40.60797426620833, -74.1810024279779 40.60801312119866, -74.18097168294214 40.60804360010091, -74.18094132250364 40.6080743035202, -74.18090709902809 40.60810965971279, -74.18087757281927 40.608140830974634, -74.18083607289135 40.608185731537795, -74.18080345745105 40.60822196047774, -74.1807673871321 40.6082630396581, -74.18073198528326 40.60830445637259, -74.18069725660474 40.608346200708674, -74.18065945985832 40.608392962169916, -74.18063350550318 40.608425927899845, -74.18060796518873 40.60845908118259, -74.18057574327447 40.608501977814115, -74.18055302581806 40.60853297529885, -74.18052892937841 40.60856658105975, -74.18050311777505 40.608603446702126, -74.180481285402 40.60863536761989, -74.18045832052236 40.60866972172465, -74.18043801363197 40.60870079734892, -74.18041878278986 40.60873086089313, -74.18039877134407 40.60876284107246, -74.18037986770057 40.60879506535254, -74.18018184074263 40.60912393371163, -74.18018217515068 40.609124376244914, -74.1801816419412 40.60912426361484, -74.18018074792542 40.6091257481783)))",R143,6214,R143,R-02,R-02,R-02,R-02,"SI Expwy., W. Shore Expwy., Graham Ave., South Ave.",502,50,122,10314,R,210.928,False,Staten Island Industrial Park,No,100003791,PARK,20100106000000.00000,19970820000000.00000,,DPR,False,Staten Island Industrial Park,N,Staten Island Industrial Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R143/,No,63,24,11,{575E53FB-70B3-47C6-8905-BF788C3C31F7} +"MULTIPOLYGON (((-73.91676430531 40.80246062214814, -73.91678720876496 40.80238366761173, -73.9174983464531 40.80268261229777, -73.91726767624993 40.80299859422478, -73.9172612672473 40.80335441464484, -73.91833456098603 40.80336557174719, -73.91846081707622 40.803370113188244, -73.91858638627278 40.8033810925742, -73.91871070103237 40.80339845907918, -73.91871012330499 40.80339895484678, -73.91837693225557 40.80385486899811, -73.91764751523294 40.803615263232004, -73.91754955558844 40.803580094458525, -73.91745489774537 40.80354004545995, -73.91736396100815 40.80349529394319, -73.91727714924619 40.8034460383166, -73.91719484852335 40.8033924976879, -73.91711742591616 40.80333490916187, -73.91704522240128 40.80327352963589, -73.91698187869936 40.80321101461187, -73.91692530037602 40.80314485830714, -73.91687584951893 40.80307548242613, -73.91683383959803 40.80300332934923, -73.91679954020971 40.80292885943406, -73.91677316878543 40.80285254830804, -73.9167548941553 40.80277488056701, -73.9167448329907 40.802696352474065, -73.91674304862771 40.80261746565521, -73.91674955344513 40.80253872169782, -73.91676430531 40.80246062214814)))",X138,5606,X138,X-01,X-01,X-01,X-01,E. 133 St. and Bruckner Blvd. bet. St Ann's Pl. and Cypress Ave.,201,8,40,10454,X,1.95,False,Playground One Thirty Four CXXXIV,Yes,100004836,PARK,20100106000000.00000,19430211000000.00000,,DPR,True,Playground One Thirty Four CXXXIV,Y,Playground One Thirty Four CXXXIV,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X138/,No,84,29,15,{C154CF77-A2E0-4D4D-A7E4-1E1606D84808} +"MULTIPOLYGON (((-73.9234266846367 40.64263670163956, -73.92345465998798 40.642632780495155, -73.92360503157302 40.64406246897014, -73.92324104873805 40.64408550320014, -73.92324914942623 40.64416251914451, -73.92289504297291 40.64418492760718, -73.92274682323028 40.64283532908135, -73.92278296144316 40.64281845332013, -73.92283643740038 40.64279581235563, -73.92289354146462 40.64277320261561, -73.92295158722288 40.64275203430784, -73.92301051909392 40.64273232540418, -73.92307136791217 40.642713092325934, -73.92312998138799 40.64269673397772, -73.92319165462487 40.64268118180644, -73.92325340730325 40.64266745680733, -73.92330551523726 40.64265710318844, -73.92336249994865 40.64264656008512, -73.9234266846367 40.64263670163956)))",B285,5155,B285,B-17,B-17,B-17,B-17,"Ave. D, Ditmas Ave. bet. E. 56 St. and E. 57 St.",317,45,67,11203,B,2.427,False,Harry Maze Playground,Yes,100004712,PARK,20100106000000.00000,19561205000000.00000,5601 AVENUE D,DPR,True,Harry Maze Playground,Y,Harry Maze Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B285/,No,58,21,9,{8CC6A024-C487-4B31-930C-649949AF4706} +"MULTIPOLYGON (((-73.84346594277106 40.83286426779981, -73.84333884482707 40.83231596432777, -73.84318262128721 40.83233690735799, -73.84349922591859 40.83207633590508, -73.84350865303706 40.83211687911616, -73.84458860773694 40.8319720070978, -73.84475587599916 40.83269132871779, -73.84346594277106 40.83286426779981)))",X239,4704,X239,X-09,X-09,X-09,X-09,Zerega Av bet. Commerce Av and Gleason Av,209,13,43,10462,X,1.707,False,Castle Hill Little League,Yes,100004833,PARK,20100106000000.00000,19760205000000.00000,1188 ZEREGA AvNUE,DPR,True,Castle Hill Little League Field,Y,Castle Hill Little League Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X239/,No,82,34,14,{1ADE393A-30A4-41DF-842F-BFCE5B75B91D} +"MULTIPOLYGON (((-73.97235607616123 40.79395390803257, -73.97225830840902 40.793912167976465, -73.9722544026747 40.793910165224695, -73.97225097700924 40.79390770693528, -73.97224812262152 40.79390485886682, -73.97224591531338 40.79390169487856, -73.97224441310809 40.79389830143257, -73.97224365743985 40.79389476678779, -73.9722436672268 40.79389118640184, -73.97224444361474 40.793887653926994, -73.9722459640509 40.79388426481079, -73.97224818939645 40.793881109093874, -73.97265724843115 40.793402561332556, -73.97265869577299 40.79340108305467, -73.97266042286321 40.79339931848404, -73.97266403315622 40.793396498073385, -73.97266919810383 40.79339344210022, -73.97267501915957 40.79339114900604, -73.97268176535621 40.793389458565365, -73.97268426435993 40.793389217823616, -73.97268846728326 40.79338881359454, -73.9726957742924 40.79338911879429, -73.97269760717974 40.79338940378652, -73.9727014625228 40.79339000263178, -73.97270672042428 40.793391420363676, -73.97270792638832 40.79339200687486, -73.97271370890361 40.79339412441927, -73.9727189733522 40.7933969154149, -73.9727235846869 40.79340030959078, -73.972727423271 40.79340421957028, -73.97273039080069 40.7934085453746, -73.97273241267425 40.793413175324176, -73.97273343562037 40.793417991440926, -73.97273343480697 40.79342287035054, -73.9727324091006 40.79342768598263, -73.97273038461847 40.793432315875414, -73.97272741472898 40.79343664027488, -73.97239375429794 40.793948376286124, -73.97239316788851 40.79394811229915, -73.9723901015131 40.79395070140285, -73.97238653528144 40.793952889664205, -73.97238255926828 40.79395462127374, -73.97237827183665 40.79395585393143, -73.97237378200974 40.79395655524543, -73.97236920354385 40.7939567081335, -73.97236465018966 40.793956309020814, -73.97236023806217 40.793955367840795, -73.97235607616123 40.79395390803257)), ((-73.97175065304035 40.79477327208233, -73.97159473442724 40.79498945820692, -73.97154209709859 40.79505942667382, -73.97150350028657 40.79510571634096, -73.97141903173626 40.79522179507807, -73.97139393475834 40.795256279799055, -73.97137556641292 40.79528078414435, -73.97137174121131 40.79528426272587, -73.97136619193813 40.79528780301349, -73.97135965955398 40.795290493885204, -73.97135397018975 40.79529190895768, -73.97134742442765 40.79529264393963, -73.97134131504464 40.79529260730128, -73.97133578300962 40.795291881923774, -73.97132925253898 40.79529012612579, -73.97132255194545 40.795287200535746, -73.97131648106215 40.79528306302919, -73.9713127703635 40.79527929081223, -73.97130926657422 40.795273814000346, -73.97130738953815 40.795268636559236, -73.97130676321723 40.79526473543784, -73.97130689778318 40.79526042928087, -73.97130890390027 40.79525478094444, -73.97132296991131 40.795235651523726, -73.97142781008131 40.79507974429534, -73.97151725838084 40.7949281528636, -73.97156157709723 40.79486216796727, -73.97158965329233 40.79482348130883, -73.97162812520506 40.7947805846639, -73.97167213630435 40.794740882540225, -73.97167773426443 40.794736947830536, -73.97168411038173 40.79473376973176, -73.97169108806901 40.794731435548805, -73.9716984777156 40.794730008270044, -73.97170607668707 40.79472952746769, -73.97171367525088 40.79473000569713, -73.97172106605488 40.79473143120111, -73.97172804531321 40.79473376430759, -73.97173442228433 40.79473694103444, -73.97174002164016 40.79474087399024, -73.97174469057403 40.79474545597816, -73.97174829998565 40.794750559996174, -73.97175075158691 40.79475604734331, -73.9717519767175 40.79476176671879, -73.97175194463613 40.794767561428145, -73.97175065304035 40.79477327208233)), ((-73.97641536143044 40.78837265646205, -73.97642329733048 40.78837210787973, -73.9764306120203 40.78837263706932, -73.9764388207568 40.78837448837646, -73.97644645919755 40.788377508416595, -73.9764507413111 40.78838003339547, -73.97645497691573 40.78838341384052, -73.97645835339127 40.78838724255932, -73.97645890291234 40.78838786581813, -73.97646137188875 40.788391559276356, -73.97646326364145 40.78839590998224, -73.9764643566663 40.78840077290999, -73.97646428060777 40.7884047810237, -73.97646386562063 40.78840901329288, -73.97646224434833 40.78841372888465, -73.97645915135588 40.788419046610834, -73.97619509410204 40.78872709062172, -73.97618857264563 40.788734700307245, -73.97617360483017 40.78875213451116, -73.97603662794597 40.788911433515715, -73.97603500665441 40.78891279293478, -73.97603241116572 40.78891496890537, -73.97602735093956 40.78891814301865, -73.97602146269737 40.78892087931609, -73.97601621818198 40.78892255405677, -73.9760107155915 40.78892364341798, -73.97600360067432 40.78892422636179, -73.97599641975289 40.78892385386016, -73.97598670154964 40.788921946376135, -73.9759801718284 40.78891950555886, -73.97597584574872 40.7889172903258, -73.97597177224851 40.78891447271021, -73.97596718032285 40.788910227692675, -73.97596511147361 40.78890748253493, -73.97596304144072 40.78890473467537, -73.97596080991347 40.78889970851516, -73.97595950979466 40.78889424490581, -73.97595940000895 40.788889854941644, -73.97596030461217 40.78888490237614, -73.9759620902928 40.78888108822732, -73.97596358310288 40.78887789896492, -73.97605969585832 40.78876669181494, -73.97616760891209 40.78864200202413, -73.97616853224677 40.78864093602209, -73.97621570881545 40.788586429448586, -73.97638529113063 40.788390475718735, -73.97638536343307 40.788390390185995, -73.97638893115838 40.788386119841476, -73.97639238724246 40.78838261309868, -73.97639475981846 40.78838083239398, -73.97639709921104 40.788379077796975, -73.97640345316451 40.78837590933511, -73.97640955556435 40.78837380791488, -73.97641536143044 40.78837265646205)), ((-73.967962265675 40.80056333816393, -73.96796897546874 40.80056271688316, -73.96797657947312 40.80056306748902, -73.96798325875244 40.800564294923696, -73.96799005601365 40.80056660118872, -73.96799686681695 40.80057031853927, -73.96800134085946 40.80057389566341, -73.9680048145777 40.80057784891839, -73.96800828843926 40.800583970575175, -73.96800986810997 40.800591244345156, -73.96797131746742 40.800869676973356, -73.96797129130533 40.80086986787192, -73.9679440823105 40.80110360465694, -73.96794316840581 40.80111152429206, -73.9679300035927 40.801225687701844, -73.96792975369681 40.80122785153157, -73.96792826355224 40.80123397270952, -73.96792469475912 40.801240362558254, -73.96792134289204 40.80124415092556, -73.96791773905827 40.80124702161408, -73.96791304025516 40.80124992081369, -73.96790763897519 40.80125232544355, -73.96790119524633 40.80125397066219, -73.96789303475867 40.80125493012252, -73.96788718438896 40.80125481052752, -73.96788017916002 40.8012535883996, -73.9678710608111 40.8012503989924, -73.96786445627677 40.801246394433136, -73.96786082572154 40.801243245276275, -73.96785768382212 40.80123920836352, -73.96785472056821 40.80123332277596, -73.96785339992157 40.80122707654627, -73.96786111461978 40.80112103502788, -73.96790646080099 40.80079080402893, -73.96793220824357 40.800585051646465, -73.96793490320617 40.800579588167366, -73.96793801937194 40.800575490862535, -73.96794248992144 40.80057155152164, -73.96794860157947 40.80056786567714, -73.96795554117858 40.80056496169575, -73.967962265675 40.80056333816393)), ((-73.98210427059489 40.769794264065844, -73.98211116910535 40.76979339344983, -73.98211816567915 40.76979344046156, -73.98211895449613 40.76979355674893, -73.98212228742528 40.76979404984148, -73.98212379754796 40.76979427250012, -73.98212919472388 40.76979574025734, -73.98213146033393 40.769796694241826, -73.98213420677959 40.769797849113026, -73.98213966267825 40.769801183622384, -73.98214489667718 40.769806035445264, -73.98214880612682 40.76981210724477, -73.98215001912466 40.769816102065654, -73.98215051970813 40.76981775096488, -73.98215065860958 40.769820976589486, -73.9821508669644 40.769825805120824, -73.98215177571116 40.76984690315502, -73.98215273545763 40.76987658929767, -73.98215441216233 40.769927033954595, -73.98215448971506 40.76992935366329, -73.98215625700477 40.769982116229436, -73.98215755888698 40.7700213063367, -73.98215801008425 40.77003487699194, -73.98215977856279 40.770087644059984, -73.98216153164903 40.77014040031908, -73.98216329894896 40.770193166485484, -73.98217210167553 40.770481548627224, -73.98217209809728 40.77048164137852, -73.98217180943898 40.770489174944295, -73.98217173667894 40.77049107049248, -73.98216932354 40.77049689547477, -73.98216908056634 40.770497483465824, -73.98216813739003 40.77049874852697, -73.98216578181909 40.770501907127894, -73.98216326896262 40.770504135484536, -73.982160049995 40.77050698778054, -73.98215946951233 40.770507333483906, -73.98215852889352 40.77050789345134, -73.98215789154715 40.770508273364996, -73.98215595463046 40.77050942660978, -73.98215375600336 40.77051036549414, -73.98215370151176 40.77051038799831, -73.98215099231957 40.770511545625844, -73.98214844432137 40.7705123070569, -73.98214600648795 40.77051303428581, -73.98214139991 40.77051368913828, -73.98213802996531 40.77051416858416, -73.98213333714034 40.77051400576598, -73.98212986549187 40.77051388636117, -73.98212890608067 40.770513851993215, -73.98212663557814 40.77051338337933, -73.98212112810045 40.770512243388204, -73.9821174672511 40.770510954199914, -73.98211641791023 40.770510584830696, -73.98211421037173 40.77050942013733, -73.98211302370164 40.770508793202815, -73.98211207862872 40.77050829507778, -73.98210779401799 40.77050531734869, -73.9821073475565 40.770505006605696, -73.98210440968032 40.77050205700124, -73.98210347420213 40.7705011167305, -73.98210223220663 40.7704992083711, -73.98210220379119 40.77049916424206, -73.98209984530253 40.77049553934996, -73.9820988240472 40.77049203623354, -73.98209774007194 40.77048832148907, -73.98209772011678 40.77048764881003, -73.98209745597094 40.770478870663005, -73.98209744188661 40.770478389792075, -73.982097427794 40.77047793953822, -73.982096575489 40.7704495969654, -73.98209531186895 40.77040036175167, -73.982089148561 40.770160079495675, -73.98208744402386 40.7701119896514, -73.98208573593487 40.77006390340824, -73.98208397494561 40.77001433762944, -73.98208284174522 40.76998229844465, -73.98208232687217 40.76996772641933, -73.98208061405367 40.769919636572304, -73.98207912461758 40.769877742222796, -73.98207890360537 40.769871551227794, -73.982078070133 40.76984810919451, -73.98207784677366 40.76984183805434, -73.98207718812935 40.76982015112921, -73.98207734000594 40.769819162400104, -73.98207785377477 40.76981582251306, -73.98207906508938 40.76981285194081, -73.98207992557323 40.76981074129477, -73.98208044338742 40.7698099741464, -73.9820831142206 40.76980600874491, -73.982086619957 40.76980255856107, -73.98209127102389 40.76979925353624, -73.98209774845756 40.76979619103038, -73.98210297114245 40.76979464837894, -73.98210427059489 40.769794264065844)), ((-73.98215347704797 40.77144524267504, -73.98216159562291 40.77144484500936, -73.98216964752655 40.77144571704217, -73.98217729281906 40.77144783170591, -73.9821825785613 40.771450148617525, -73.98218442012757 40.77145130694933, -73.98218728018064 40.77145310659684, -73.98219230711496 40.77145763240216, -73.98219517254637 40.7714614689884, -73.98219615768662 40.77146278747725, -73.98219841268784 40.771468195347104, -73.98219929745692 40.77147278534834, -73.98219988770467 40.77150684066747, -73.98219998892026 40.771513705218595, -73.98220027396442 40.77153299313942, -73.98220117599881 40.77158378345667, -73.98220207922078 40.77163456747021, -73.98220298244149 40.771685361388904, -73.98220331264179 40.77170411081533, -73.98220342231888 40.77171034141334, -73.98220387737527 40.771736143599355, -73.98220478178591 40.77178692761189, -73.98220671205436 40.77183739210387, -73.98220864351117 40.771887852993586, -73.98221057497139 40.77193831208189, -73.98221250525053 40.771988769368576, -73.98221443671612 40.77203923025708, -73.98221636818373 40.77208969474713, -73.98221749147994 40.77211927644614, -73.9822175067399 40.77211979513824, -73.9822180856577 40.77213866977173, -73.98221779508043 40.772140074511654, -73.98221681304554 40.77214483081723, -73.98221451853523 40.77214977692638, -73.98221427088505 40.77215011367628, -73.98221195197851 40.77215326778056, -73.98220880273476 40.77215643436358, -73.98220878022308 40.77215645777319, -73.98220454835187 40.77215960617887, -73.9821985812014 40.77216270929116, -73.98219196992086 40.772164922606585, -73.9821838735395 40.772166158646165, -73.98217435021455 40.77216598247563, -73.98217149926346 40.77216546694682, -73.98216893968514 40.77216500369217, -73.98216803595606 40.77216484056127, -73.9821600354398 40.772161949608524, -73.98215837029296 40.77216098401141, -73.98215770589236 40.772160598493215, -73.98215403333181 40.772158469135235, -73.98215004956961 40.77215514115935, -73.98214712830192 40.77215181785051, -73.98214442298631 40.77214710329782, -73.9821441056887 40.77214655124026, -73.98214380626311 40.772145609267646, -73.98214248073928 40.77214145234014, -73.9821421788462 40.77213646080488, -73.9821421660147 40.77213572239038, -73.98214145334425 40.77209448644374, -73.98214112193196 40.7720803142751, -73.98214069688466 40.77206194844915, -73.9821398795679 40.77202666661214, -73.98213975660427 40.772021414859175, -73.98213974840698 40.7720210636617, -73.98213862773183 40.77197301174323, -73.98213800120548 40.7719462468935, -73.98213737352732 40.77191936227655, -73.98213612169354 40.771865713710255, -73.98213550574341 40.77183927034132, -73.98213550223197 40.771839113653236, -73.9821349015117 40.771813300638705, -73.98213310277798 40.771758417396974, -73.98213135109344 40.77170477685637, -73.98212959822645 40.77165113901662, -73.98212813203637 40.771606225295216, -73.98212765156312 40.77159138492911, -73.98212764804275 40.77159126155965, -73.98212590303426 40.77156132496272, -73.98212328552007 40.77151643627615, -73.98212324543267 40.771515746484525, -73.9821209505622 40.77147355755609, -73.98212178102929 40.771468616624176, -73.98212214018353 40.77146766754957, -73.98212368110887 40.77146359661389, -73.98212695867622 40.77145883616219, -73.98213263857724 40.7714533457749, -73.98213533017076 40.77145170367451, -73.98213818524974 40.77144996254408, -73.98214629036808 40.771446742700455, -73.98215336688449 40.771445266071076, -73.98215347704797 40.77144524267504)), ((-73.9821962193325 40.77309748506202, -73.98219846406454 40.77309720445195, -73.98220681959957 40.773097346220965, -73.98221370249512 40.773098561161554, -73.98221728179935 40.773099691845225, -73.98221845673977 40.77310006303372, -73.98222286615209 40.7731020835422, -73.9822278094837 40.77310521895543, -73.98223070613192 40.773107757019424, -73.98223077955461 40.77310782186697, -73.98223160141654 40.77310854149553, -73.98223435097896 40.773111852168256, -73.98223645728018 40.773115422987104, -73.98223801615721 40.77311966099418, -73.98224402661901 40.77329206590492, -73.98225003592789 40.773464469009646, -73.98226318428075 40.77379298077992, -73.98226285338731 40.77379452058881, -73.98226233273263 40.77379694916482, -73.9822601282198 40.77380179443117, -73.98225785773097 40.77380529613712, -73.98225481735405 40.77380858970831, -73.98224943377473 40.77381265284838, -73.98224638438029 40.773814222855464, -73.98224628131217 40.773814275969265, -73.98224336815686 40.77381577665861, -73.98224314780431 40.773815890088024, -73.98223771151508 40.77381772177339, -73.98223619879245 40.77381802140764, -73.98223195914106 40.77381886182361, -73.9822237289269 40.77381927658649, -73.98221461901329 40.773818173865735, -73.98220813421636 40.77381631692831, -73.9822057962436 40.77381524586939, -73.98220304136788 40.773813983839474, -73.98219799969955 40.77381073404644, -73.98219654546652 40.77380935875395, -73.9821934605512 40.77380643884709, -73.98218994260942 40.77380160980717, -73.9821880213247 40.773797106996014, -73.98218704140841 40.773784986976885, -73.98217767874407 40.77348460389102, -73.98217619756952 40.77343787026398, -73.98217285240369 40.77333196160163, -73.98217285004934 40.773331906670556, -73.98217190217777 40.77330189006077, -73.9821687484795 40.773202040909894, -73.98216807533352 40.77316349838036, -73.98216795516112 40.773156653639056, -73.98216723418128 40.77311538347848, -73.98217152380953 40.77310910583589, -73.98217516829563 40.773105685389105, -73.9821800292201 40.773102484853105, -73.98218729113985 40.77309934952421, -73.98219275569352 40.77309791676821, -73.9821962193325 40.77309748506202)), ((-73.98208838954481 40.7689657768297, -73.98209495503706 40.768965294279795, -73.98210170621317 40.76896582932733, -73.98210829018835 40.76896708925379, -73.98211326084018 40.768968771265584, -73.98211840182971 40.76897128086627, -73.9821229978247 40.76897435499786, -73.98212379948107 40.768975141261784, -73.98212757330563 40.76897884111553, -73.98212777934427 40.7689790437608, -73.98212782196747 40.76897910590217, -73.98213125311202 40.76898420958758, -73.98213256461747 40.768987402976315, -73.98213292326967 40.76898827471929, -73.9821338541924 40.76899287283446, -73.98213382408348 40.76899472876748, -73.98213377832549 40.76899752122166, -73.98213378296565 40.76899788502577, -73.98213432920319 40.76904125696006, -73.98214006242252 40.76933084445203, -73.9821412737903 40.76937621920687, -73.98214149659167 40.76938458761978, -73.98214294497724 40.76943832808774, -73.98214438152044 40.76949206945393, -73.98214520125727 40.76952263536833, -73.98214582398766 40.76954581262159, -73.98214726527355 40.7695995530871, -73.98214842019271 40.769652290347025, -73.98214693913833 40.76965852340204, -73.98214414362704 40.76966368285327, -73.98214014957671 40.769668359448886, -73.98213844833435 40.769669722547256, -73.98213555645899 40.76967203999466, -73.98213019599166 40.769675058551265, -73.98212484880355 40.7696771432877, -73.9821197837266 40.769678441027665, -73.98211386124306 40.769679221745356, -73.98210651997759 40.769679276436726, -73.9821012481419 40.76967863445945, -73.98209613991185 40.769677431493776, -73.98209562235888 40.76967723150163, -73.98208959647839 40.769674906365815, -73.98208473975416 40.76967221310559, -73.98208009769499 40.76966848520022, -73.9820766969325 40.769664802512864, -73.98207650631551 40.76966450441657, -73.98207406736607 40.769660689504796, -73.98207235108576 40.76965631099026, -73.98207183424164 40.76965347882665, -73.98207152555409 40.76965178853373, -73.98207129968611 40.76963724176673, -73.9820708394728 40.769591242180496, -73.98207022508203 40.76953718396491, -73.9820698446341 40.76950287562623, -73.98206962371998 40.769483130253434, -73.9820690116991 40.76942907563936, -73.9820684032326 40.76937502102545, -73.98206779121394 40.769320965509955, -73.98206772878737 40.769315269816005, -73.98206742351184 40.769287717965184, -73.98206741528908 40.76928746402194, -73.98206676345403 40.769266914431896, -73.98206339159495 40.76916039155253, -73.98206031871841 40.769074027388704, -73.98206028462762 40.76907306924769, -73.98205835790701 40.76901893788273, -73.98205881498804 40.76899298094105, -73.98205881739207 40.76899285036843, -73.98205889918474 40.768988208285734, -73.98205898096134 40.76898362563623, -73.98206261270359 40.768978330340694, -73.98206644179848 40.76897470100719, -73.98207040688801 40.76897187314285, -73.98207523060252 40.76896939930982, -73.98207679540468 40.76896882683302, -73.98207877243365 40.768968102235256, -73.9820809958507 40.768967287625394, -73.98208495684278 40.76896647868873, -73.98208838954481 40.7689657768297)), ((-73.98222775932805 40.77392785713714, -73.98223421030704 40.773927757275615, -73.98223691688143 40.773928047654806, -73.98224060303433 40.773928443543724, -73.98224554221268 40.77392961856053, -73.98225136121094 40.77393186801254, -73.98225652145183 40.77393471349568, -73.98225859155279 40.77393643377481, -73.98226195487499 40.77393922855284, -73.98226456464731 40.7739427319105, -73.98226639764525 40.77394519326679, -73.98226860654557 40.77395057861355, -73.98226926397552 40.77395496956644, -73.98226874477179 40.77396084256587, -73.98226871268491 40.77396123518018, -73.98226837756081 40.77396531530682, -73.98226836924368 40.77396541075886, -73.98226790577917 40.773971034327566, -73.98225651998749 40.77421584056275, -73.98224271570852 40.77458342816206, -73.98224173027897 40.774609669560135, -73.98224161530295 40.77460995230027, -73.98224037901512 40.774612989505414, -73.9822393999411 40.77461539639827, -73.98223478834855 40.77462046731872, -73.98222904584937 40.774624292669294, -73.98222375632295 40.77462632698952, -73.98222371960021 40.77462633418786, -73.98222171998415 40.77462673820511, -73.98221850022313 40.77462738877176, -73.98221110626713 40.77462753801448, -73.98220368185778 40.77462639683157, -73.98220348050069 40.7746263400688, -73.98219863371536 40.774624979561054, -73.98219707260532 40.774624540775044, -73.98219050741268 40.77462181934178, -73.9821835481307 40.774617741690136, -73.98217838818005 40.77461362559474, -73.98217527725605 40.774610377900736, -73.98217261651781 40.77460690875261, -73.98217014789678 40.77460261387315, -73.98216809418024 40.77459714480233, -73.98216798535937 40.77459655855819, -73.98216704736733 40.77459151739876, -73.98216724033692 40.774583084220595, -73.98217459144618 40.77440224189542, -73.98217705730758 40.774341581709706, -73.98218658566137 40.77410713908648, -73.9821896167778 40.774049954926014, -73.98219235431641 40.774000914866974, -73.98219510733202 40.773951567738436, -73.98219646239875 40.7739472734499, -73.98219897003479 40.77394290009515, -73.98220172026161 40.77393941557411, -73.98220669167048 40.77393522900383, -73.98221401313623 40.77393123280216, -73.98221866161717 40.77392979631714, -73.9822219927915 40.77392876665593, -73.98222775932805 40.77392785713714)), ((-73.98215621008106 40.77554162617347, -73.9821633460076 40.77554109328024, -73.98217154052156 40.775542085101264, -73.98218098751634 40.77554600284832, -73.982181971724 40.775546604536245, -73.98218507002348 40.77554850057326, -73.9821851031861 40.77554851948893, -73.98218664996713 40.77554946615627, -73.98218891438444 40.77555118556579, -73.98219033201423 40.775552260985016, -73.98219195565044 40.77555373625919, -73.98219331400973 40.775554971058185, -73.98219366573835 40.775555290790926, -73.98219624257999 40.775558131374304, -73.98219720652743 40.77555919321578, -73.98219974174943 40.775562633527386, -73.98220221039304 40.77556698423672, -73.98220439094088 40.775572263319674, -73.98220555056545 40.77557691819667, -73.98220607406445 40.7755816369111, -73.98220595434303 40.77558637263571, -73.9822053882805 40.77559021769438, -73.98220537641228 40.775590302339786, -73.98220459771824 40.775600807482725, -73.98220087918074 40.775659181087924, -73.98220086371693 40.77565942242026, -73.98218987222604 40.77583195971559, -73.98217742897096 40.77621480374118, -73.98217667931218 40.776218576730734, -73.98217665796147 40.776218682986695, -73.98217409194484 40.77622398835056, -73.98216952755703 40.7762292898031, -73.9821644388197 40.77623303690697, -73.98216231460741 40.77623406675305, -73.98215864906815 40.77623584107595, -73.9821515352559 40.776237560834566, -73.98214450240579 40.77623774524853, -73.98214076761595 40.776237134129076, -73.98213889015238 40.776236827667226, -73.98213270121032 40.77623517428566, -73.98212618795559 40.77623255371377, -73.98212463758576 40.776231681786825, -73.98212025888677 40.77622921913367, -73.9821200539968 40.77622906691694, -73.98212002083507 40.77622904349872, -73.98211615516554 40.77622617209687, -73.98211239277487 40.77622247855209, -73.98210846018554 40.77621737389339, -73.98210825891395 40.77621698124302, -73.9821082340508 40.77621693351252, -73.98210821037196 40.77621688668274, -73.98210627934928 40.776213117779896, -73.98210572785318 40.77621120502693, -73.9821057183848 40.77621117440837, -73.98210441065194 40.77620664197618, -73.98210433864868 40.77620569103436, -73.98210433510803 40.77620564240666, -73.98210413208108 40.77620296608168, -73.98210393967757 40.77620043023675, -73.98210452250936 40.77619593681974, -73.98210452607059 40.776195908904725, -73.98210458304854 40.77619546766736, -73.98210513925434 40.776179853940725, -73.98211076815777 40.77602176619426, -73.98211570466334 40.77587908953692, -73.98212376419184 40.77564615868913, -73.98212509413871 40.77560761558379, -73.9821263822931 40.77557030706078, -73.98212638705165 40.775570231419316, -73.98212667816274 40.775566900505375, -73.98212699541656 40.775563262524116, -73.98212779194996 40.77556136438819, -73.98212877931891 40.775559013329044, -73.98213030445592 40.77555674339853, -73.9821320417138 40.77555415742448, -73.98213516980367 40.77555097643381, -73.98213884624636 40.77554816023162, -73.98214519757036 40.77554479513726, -73.98215117423756 40.77554268168309, -73.98215217050767 40.7755424729208, -73.98215621008106 40.77554162617347)), ((-73.97700666994996 40.78768966948326, -73.97701329765572 40.78768945738663, -73.97702047954719 40.787690082865986, -73.97702670619954 40.78769160775491, -73.9770334419064 40.78769428988866, -73.9770400597723 40.78769856318367, -73.97704425246381 40.78770266219858, -73.97704754923902 40.78770741840061, -73.97704972843425 40.787713152324024, -73.9770504513273 40.78771950460153, -73.97704953960775 40.787724760643925, -73.97704731864704 40.78773020102822, -73.97704577055987 40.787732433962226, -73.97704573025732 40.78773249248674, -73.97704447732637 40.78773429864208, -73.97677607905382 40.788047644399704, -73.97675121338241 40.78807667873885, -73.97661028116033 40.78823861971289, -73.97660423763337 40.78824181706529, -73.97659393513769 40.78824406352406, -73.97658425293251 40.788244465882215, -73.97657676896029 40.7882435701641, -73.97657051980475 40.788241905668755, -73.97656474485075 40.78823942541577, -73.97655793499091 40.78823525291087, -73.97655128114273 40.78822879766766, -73.97654760701263 40.78822238985644, -73.97654632199021 40.788217695283954, -73.9765456291914 40.78821347989844, -73.97654590317327 40.78820927461514, -73.97654694019552 40.78820495782503, -73.97654879821951 40.78820079338665, -73.97698159621129 40.78770093604833, -73.97698704769923 40.78769653548842, -73.976991781809 40.78769383763235, -73.97699218349419 40.78769370353788, -73.97700089497151 40.78769078135015, -73.97700666994996 40.78768966948326)), ((-73.96786167514036 40.801445001420994, -73.96787021947557 40.80144429601063, -73.96788002734309 40.80144542256665, -73.96789008651331 40.80144884366338, -73.96789497450162 40.801451756338146, -73.96789939637881 40.80145549554104, -73.96790274562308 40.80145962886361, -73.96790526490679 40.80146468856857, -73.96790651244739 40.801470197268344, -73.96788743311701 40.80173652443847, -73.96786511539517 40.80203137939825, -73.9678644330034 40.80204572235504, -73.96786314033349 40.80206003812668, -73.96786125279739 40.802074312309514, -73.96786084641714 40.802076589557984, -73.96785887156241 40.80208763362671, -73.96785564693063 40.802102690870605, -73.96785195586887 40.8021167664405, -73.96785191077855 40.80211688889575, -73.96784619278608 40.80213204900131, -73.96784363973659 40.802135516110525, -73.96783970253918 40.80213904496792, -73.96783541133429 40.8021419163622, -73.96782871567918 40.802144826707284, -73.9678225147283 40.8021466070639, -73.9678153614569 40.8021474650434, -73.9678076908156 40.802147310717224, -73.96780192847598 40.80214633116603, -73.9677959970307 40.8021446203622, -73.96779064188085 40.802142146096, -73.96778437158059 40.80213785526748, -73.96777975804847 40.802133373995915, -73.96777717780364 40.80212936515402, -73.9677751245896 40.802123546456535, -73.96778078011575 40.8021003700956, -73.96778651430401 40.802081153250036, -73.96779143088204 40.802061802901896, -73.96779552983674 40.80204234786714, -73.96779705700929 40.80203323614509, -73.96779880642332 40.802022798950624, -73.96780486620767 40.801906147308436, -73.96781068912959 40.80179405752541, -73.96781115812989 40.80178726429213, -73.96783311585448 40.80147014889522, -73.9678343922125 40.801465056028974, -73.96783664243374 40.80146042539039, -73.96784132842255 40.801454653598555, -73.96784673054697 40.80145053982498, -73.96785398812919 40.801447011892904, -73.96786167514036 40.801445001420994)), ((-73.98213268316813 40.770616087615906, -73.98213885319609 40.770615654529934, -73.98214447220789 40.77061610475199, -73.9821505197829 40.77061735918955, -73.98215777272836 40.770620187893144, -73.98216410031439 40.77062409075344, -73.98216847695784 40.770628436359104, -73.98217186206675 40.77063327618748, -73.9821734801377 40.77063739263823, -73.98217407034599 40.770640542689954, -73.98217427733277 40.770641647639486, -73.98217487049584 40.77066473573429, -73.9821749150582 40.77066640797574, -73.98217777257281 40.7707882167908, -73.98218014760683 40.77088942111461, -73.98218152997158 40.770942242145985, -73.98218290760045 40.7709950640767, -73.98218406836925 40.771039414039286, -73.9821842911562 40.77104787700285, -73.98218567352542 40.77110070613746, -73.98218704997801 40.77115352176314, -73.98218773116915 40.771179664376575, -73.9821884252476 40.77120634008976, -73.98218980170262 40.7712591629186, -73.98219115581234 40.771311395914005, -73.98219093507261 40.77131298796949, -73.98219092795365 40.77131303299354, -73.98219079859426 40.77131397039736, -73.98219052445226 40.771315937954405, -73.9821884169636 40.77132145771307, -73.982185051745 40.7713262577752, -73.98218449253652 40.77132675116445, -73.98218038496003 40.771330376855566, -73.98217696598269 40.771332454688064, -73.9821752553092 40.77133349450458, -73.98217412637622 40.77133394097952, -73.9821699577357 40.77133558645429, -73.98216193476814 40.77133728806396, -73.98215455654805 40.77133753996288, -73.9821454541392 40.7713362238181, -73.98213694922715 40.77133298248948, -73.98213106099864 40.77132915533854, -73.98212682527578 40.77132477013165, -73.98212346171397 40.77131896856842, -73.98212206663926 40.77131363467168, -73.98212124402352 40.77128492560241, -73.98212121236402 40.77128372792827, -73.98212085736711 40.77126919555296, -73.98212046371613 40.77125304766889, -73.98211905108403 40.771198412120626, -73.98211764556113 40.771143776573, -73.98211624122574 40.77108913832355, -73.98211520015941 40.77104910269007, -73.98211482267742 40.77103450547449, -73.98211341597742 40.77097986812427, -73.98211277939369 40.77095534101932, -73.9821118268681 40.77092523884982, -73.98211008851743 40.77087060955169, -73.9821097631756 40.77086034286385, -73.98210835846147 40.770815978453385, -73.98210368021897 40.77066891023802, -73.98210300198637 40.77063630831266, -73.98210298678062 40.770635592410216, -73.98210499909212 40.77063157917971, -73.98210891153121 40.77062669005461, -73.98211400707439 40.77062248009245, -73.98211853363135 40.77061990625621, -73.98212413083985 40.77061774321535, -73.98213166568785 40.77061615949833, -73.98213268316813 40.770616087615906)), ((-73.98169641634146 40.77958847812387, -73.98170183617357 40.779587950389896, -73.98170894981317 40.779588204560355, -73.98171853650003 40.779590143061476, -73.981719188011 40.77959027463814, -73.98171985729049 40.77959040981962, -73.98172699148694 40.77959345825005, -73.98173271458657 40.779597242166474, -73.9817366039456 40.77960077815398, -73.98173973737453 40.77960480929768, -73.98174238348746 40.77961041894419, -73.98174368378366 40.779616304831514, -73.98174348926611 40.779621493493444, -73.98174252030016 40.77962558522122, -73.9817424645674 40.77962578602435, -73.98159052784932 40.78017210271997, -73.9815833951376 40.78019774967719, -73.9815815808305 40.78020427532491, -73.9815815583011 40.780204351863986, -73.98157688080052 40.78021912655242, -73.98157355191648 40.780223549285765, -73.98157120812452 40.78022560655794, -73.98156863327135 40.78022786550558, -73.98156510594352 40.78023020354492, -73.98156469835173 40.78023047363031, -73.98155864170921 40.7802331822716, -73.98155010692037 40.78023543486188, -73.9815434668121 40.78023610827454, -73.98153809804667 40.780235983145296, -73.98153215966273 40.78023515643347, -73.98152995165644 40.78023455274329, -73.98152586021104 40.78023343546501, -73.98152057258483 40.78023120857637, -73.98151650639251 40.780228739648365, -73.98151094694683 40.78022418041565, -73.98150742857969 40.780219840332144, -73.98150448655642 40.78021331392229, -73.98150350525856 40.78020627544148, -73.98167082583086 40.77960179068059, -73.98167521372547 40.77959741223699, -73.98168032280267 40.77959396862901, -73.981686099828 40.77959119149844, -73.98169113614274 40.77958956239004, -73.98169641634146 40.77958847812387)), ((-73.9821203849945 40.776346315094685, -73.98212945072724 40.77634559699949, -73.98213602853482 40.776346075285744, -73.98214132327304 40.776347211640086, -73.98214842173087 40.77634978727661, -73.98215534919784 40.776353903645976, -73.98215959251418 40.77635767560743, -73.98216285249474 40.77636197060848, -73.98216515761749 40.776366608553026, -73.98216619899738 40.77637051059151, -73.98216651658807 40.77637446744856, -73.98216494008491 40.776413657972995, -73.98215674330365 40.77661524318564, -73.9821508478737 40.77676027719563, -73.9821402187494 40.7770204207902, -73.98213700695808 40.7770262546474, -73.98213310964854 40.777030756555156, -73.9821282127955 40.777034337093795, -73.98212200829236 40.777037422153064, -73.98211687622977 40.77703905126604, -73.98211146359377 40.77704003377453, -73.98210591726831 40.77704038771134, -73.98209795231227 40.77703964986321, -73.98209091397439 40.777037900894435, -73.98208457130187 40.777034987683734, -73.98207863412868 40.77703069766761, -73.98207314890514 40.77702409793285, -73.98207073273144 40.77701828481397, -73.9820708938712 40.77699615229115, -73.9820726205684 40.776944940087695, -73.98208397537553 40.77660820797562, -73.98209133393767 40.776410134597285, -73.98209232433787 40.776383348404416, -73.98209396565805 40.77636317920485, -73.98209628127175 40.77635962077887, -73.98209927556522 40.77635636232558, -73.98210326964318 40.77635308601742, -73.98210790680236 40.77635033750341, -73.9821142449555 40.77634778646334, -73.9821203849945 40.776346315094685)), ((-73.97588123682863 40.789003718638874, -73.97588719054097 40.78900344433142, -73.97589261082943 40.78900390021816, -73.97590182656091 40.78900615699934, -73.97590915337871 40.789009367915796, -73.97591395179606 40.78901269086597, -73.97591741254132 40.78901610989002, -73.97592056132136 40.789020533807594, -73.97592281537905 40.789025509545176, -73.97592366444455 40.78902998971376, -73.97592357407235 40.78903417162036, -73.97592259613089 40.7890387810794, -73.97592083520375 40.789042929318455, -73.97591829597918 40.78904675681662, -73.9759178182644 40.789047422186826, -73.97575464561845 40.789274357384734, -73.97575439312678 40.78927471032794, -73.97566379251143 40.7894008000534, -73.9755696329331 40.7895318669187, -73.9755682993435 40.789533721667425, -73.975564200555 40.78953841420802, -73.97555887329517 40.7895426292226, -73.9755530297846 40.789545955333274, -73.97554696391755 40.78954822510917, -73.9755426615154 40.78954921384649, -73.9755394859611 40.78954994347861, -73.97553268965717 40.789550605705024, -73.97552625502354 40.789550441348226, -73.97551979106936 40.78954946203172, -73.97551491013706 40.78954816247289, -73.97550965268401 40.78954618835886, -73.97550530407227 40.78954396139706, -73.97550087523315 40.78954081230533, -73.9754964538238 40.78953679243087, -73.97549341620035 40.789532963756656, -73.97549125773153 40.78952906232872, -73.97549040088009 40.78952648311253, -73.97549036655809 40.78952638134868, -73.97548967657934 40.78952430554788, -73.97548905838896 40.789517110415936, -73.97548960093178 40.78951416139158, -73.97549005799799 40.78951167520643, -73.97549235384619 40.78950607728188, -73.97567155666053 40.78925781478704, -73.97585661157821 40.78901461314405, -73.9758624258252 40.78901013347017, -73.97587221268198 40.7890057068567, -73.9758780968617 40.78900441046679, -73.97588123682863 40.789003718638874)), ((-73.9821829920903 40.774739110459436, -73.9821921253285 40.7747376224398, -73.98219493506421 40.77473763908307, -73.98219895777201 40.77473766221715, -73.98220542742175 40.7747389113132, -73.98220905407646 40.77474048865346, -73.98221043272659 40.77474108770058, -73.98221134705851 40.77474159932727, -73.98221584528864 40.77474411242419, -73.98221806470919 40.774745672437376, -73.98221937457002 40.774746592953264, -73.98222078272991 40.77474758192255, -73.98222234357567 40.774749022067176, -73.98222535868453 40.77475180418518, -73.9822256239327 40.77475214101408, -73.98222781341306 40.77475492660669, -73.9822287145459 40.7747560730856, -73.98223076903444 40.774758685760794, -73.98223371108588 40.77476447014328, -73.9822339335997 40.77476514735564, -73.98223534325412 40.77476941685628, -73.98223611066993 40.77477449310832, -73.98223602737922 40.774780330154, -73.98223532142568 40.77478463714954, -73.98223524311761 40.77478511710543, -73.98221812011681 40.77511042555901, -73.98220948363414 40.77527417522872, -73.98220706539283 40.77540929257254, -73.98220702932126 40.775411294384256, -73.98220398842227 40.77541625748506, -73.98220301799522 40.775417286609674, -73.98219980219625 40.77542069721686, -73.98219558670583 40.77542382761316, -73.98219076487204 40.77542639600196, -73.98218773566413 40.77542750135099, -73.9821842799741 40.775428761520374, -73.98217795410422 40.77543001404181, -73.98216890637784 40.77543031070844, -73.98215983299933 40.77542908371996, -73.98215601433672 40.77542778010138, -73.98215297977922 40.77542674405342, -73.98214583795412 40.77542281405415, -73.98214304659776 40.77542041108063, -73.98214103213168 40.775418676400406, -73.98213758032777 40.77541427961162, -73.98213458746935 40.77540793870876, -73.98213378329504 40.775403002929195, -73.98213393967248 40.77539852835597, -73.98213394681336 40.775398403187204, -73.98213451918193 40.7753887237733, -73.98214458707857 40.77517977360368, -73.98215356895426 40.774965382421236, -73.98215358328662 40.77496494297809, -73.98215438462024 40.77494068265964, -73.98215519432209 40.77491613508196, -73.9821569177006 40.77486360272368, -73.98215692128103 40.774863502768454, -73.9821590112994 40.77479982134261, -73.98216036065142 40.77475945021445, -73.98216165623728 40.77475617258519, -73.98216199761781 40.774755308155434, -73.98216217304966 40.77475486333426, -73.98216369940884 40.77475237998408, -73.9821650954113 40.77475010823185, -73.98216996157734 40.774745477699526, -73.98217053736307 40.77474511578651, -73.98217335823878 40.774743344033624, -73.9821759741536 40.77474170102088, -73.9821829920903 40.774739110459436)), ((-73.96850525825147 40.79913600108778, -73.96851181865586 40.7991352383561, -73.96855477392616 40.79915074857634, -73.96855902489106 40.79915482539594, -73.96856139051756 40.79915898004463, -73.96856298575682 40.79916345416042, -73.96856341286905 40.799167372349565, -73.96856332892598 40.79917198738578, -73.96856255792824 40.799176107860504, -73.96856075109115 40.799180581948946, -73.9684411146851 40.799407327404595, -73.96843285977889 40.799422972220256, -73.96842507928787 40.79943772026786, -73.96834367334746 40.79959197237985, -73.96834352271922 40.79959225599575, -73.96826983175843 40.79972933945048, -73.9682638314717 40.799733261273936, -73.96825866619703 40.799735547119845, -73.96825160038092 40.79973745063043, -73.96824453615922 40.7997384950647, -73.96823891460102 40.79973842597844, -73.96823283473643 40.79973776063516, -73.96822788676214 40.79973662374186, -73.96822293075876 40.799734930337635, -73.9682162455404 40.79973141564691, -73.96821102519282 40.799727434000644, -73.9682073726615 40.79972329609967, -73.96820456417879 40.79971845514152, -73.96820265241291 40.7997118044271, -73.9682030014583 40.799705464108044, -73.9683502193104 40.79942229669736, -73.96835101043449 40.79942074085178, -73.96848718788556 40.79915233300821, -73.96848744526604 40.79915182609743, -73.96849020774599 40.79914619963217, -73.96849375267144 40.79914231674748, -73.96849915444808 40.79913845598212, -73.96850525825147 40.79913600108778)), ((-73.98149118067928 40.78033255985626, -73.98149705187447 40.78033220690184, -73.98150292880545 40.78033252842403, -73.98150804741167 40.780333399130356, -73.98151098272054 40.78033426228223, -73.98151102062617 40.780334273094326, -73.9815114731233 40.78033440644119, -73.98151354134343 40.780335014611836, -73.98151614960642 40.780336181180225, -73.98151918310386 40.780337538723195, -73.98152372305171 40.78034040034581, -73.98152795829031 40.780344184933966, -73.9815310704789 40.780347996357, -73.98153308927809 40.780351673429955, -73.98153467773383 40.78035649587237, -73.98153516456964 40.78036095973849, -73.98153482228821 40.78036493990223, -73.9815331492794 40.78037025799857, -73.98153304967154 40.780370610078855, -73.9814618437282 40.78062341365953, -73.98145241333108 40.78065954568134, -73.98145132940978 40.78066367791009, -73.98145073289685 40.78066595338235, -73.98137341028941 40.780959902543806, -73.98136929682492 40.78096535441759, -73.98136616497224 40.78096824182063, -73.98136579052485 40.78096858575182, -73.98136056168148 40.780972008614235, -73.9813553105858 40.78097451476192, -73.98135023742415 40.780976178068435, -73.98134406977837 40.78097734862305, -73.98134355205607 40.780977447594424, -73.98133669633086 40.780977884128234, -73.98132975203806 40.7809773156872, -73.98132706420982 40.780976760542586, -73.98132319297929 40.78097596026955, -73.98131694572524 40.78097374942538, -73.98131136448866 40.78097068141102, -73.98130933323125 40.78096916013398, -73.98130646104548 40.78096700836917, -73.98130288328238 40.7809631572428, -73.98129964591534 40.78095788337861, -73.98129785019334 40.78095289790895, -73.98129721564565 40.78094715800713, -73.98129831209059 40.78094066556664, -73.9812987022364 40.780939261747584, -73.9812987152805 40.78093921582411, -73.98133356738799 40.78081402830206, -73.98133410220585 40.78081210401616, -73.98146324477769 40.78034821599524, -73.98146871834813 40.7803421177759, -73.98147863671852 40.78033596443968, -73.98148545618258 40.78033362242947, -73.98149118067928 40.78033255985626)), ((-73.97496690857446 40.790252123680496, -73.97497457116917 40.790251169913425, -73.97498207816578 40.79025124448376, -73.97498866061389 40.79025235262759, -73.97499648421149 40.790254906343776, -73.97500444090913 40.79025955195113, -73.97500937996628 40.79026393755947, -73.9750126840198 40.79026819314109, -73.9750147534942 40.790272437648966, -73.97501533681447 40.790274560255256, -73.97501592841834 40.7902767098784, -73.97501621336457 40.79028145467773, -73.97501528824998 40.790287153745325, -73.9750128087273 40.79029264536083, -73.97484004367519 40.79053171138604, -73.97482970552687 40.79054568399666, -73.97481503107291 40.79056549000189, -73.97464735868377 40.79079081250189, -73.97464377659146 40.79079484235415, -73.97463882741842 40.79079830999319, -73.97463123009963 40.790801905820736, -73.97462548186358 40.79080353986428, -73.97461633329193 40.790804836371514, -73.97460870064543 40.79080475094372, -73.97460302088723 40.790803912226814, -73.9745958546025 40.79080193134739, -73.97458975380873 40.79079909162491, -73.97458347695465 40.79079499746607, -73.97457816149624 40.79078960049475, -73.97457538938423 40.79078547378994, -73.97457340080165 40.79078041433942, -73.97457248620566 40.790773966554006, -73.9745733252334 40.790767321945815, -73.97457632310199 40.79076046529574, -73.97475876168255 40.79052384845297, -73.9747604153267 40.790521705623796, -73.97476088120858 40.79052105826594, -73.97494894824008 40.79026060159312, -73.97494938318285 40.79026030001999, -73.97495544393904 40.7902560950989, -73.97496039257943 40.79025389264921, -73.97496690857446 40.790252123680496)), ((-73.97752754493281 40.78708120376019, -73.97753549473171 40.787081115259944, -73.97754199527009 40.78708189726124, -73.9775491244727 40.78708400132012, -73.97755176015197 40.78708525172894, -73.97755441123086 40.787086509344675, -73.97755862578883 40.787088983841734, -73.97756297379576 40.787092733474026, -73.97756588599898 40.78709609561121, -73.97756798533084 40.787099823193564, -73.97756961038237 40.787104662802314, -73.97757040756352 40.78710867108749, -73.9775701988017 40.787112909705115, -73.97756874085078 40.78711847451759, -73.97756600227837 40.787123713099476, -73.97724610904459 40.78749676576604, -73.97724568591275 40.787497258256536, -73.97723437394255 40.78751044295865, -73.97714793538391 40.787610433686524, -73.97714301605117 40.787614327377604, -73.9771381552578 40.78761680549257, -73.9771327483721 40.78761902505526, -73.97712813565022 40.78762018038314, -73.97712707518633 40.78762044582045, -73.97712035252023 40.78762119820535, -73.97711354128593 40.787621106802874, -73.97710589401872 40.78761980135865, -73.97709606643222 40.787616027207555, -73.97709192652333 40.7876134815691, -73.97708954563156 40.78761201778179, -73.97708569280256 40.787608414111524, -73.97708211529616 40.78760348946103, -73.97708020911702 40.78759969437094, -73.97707915984053 40.78759499534834, -73.9770790961348 40.78758732216711, -73.97708102100736 40.78758155484132, -73.97750471864035 40.78709005753554, -73.9775111462421 40.78708579761911, -73.97751883874378 40.78708280405354, -73.97752754493281 40.78708120376019)), ((-73.97848007791583 40.78582334049259, -73.97848560956668 40.78582306056898, -73.97849086736053 40.785823342506774, -73.97849726457665 40.78582455217314, -73.97850273634961 40.78582625694217, -73.97850831206824 40.78582892796812, -73.97851261529965 40.78583183018534, -73.97851639346257 40.785835439198, -73.9785195863055 40.78583922730115, -73.97852244659157 40.785845586273076, -73.97852352374323 40.7858522474811, -73.97852335256317 40.78585403674507, -73.97852304943889 40.7858571830397, -73.97852163585324 40.78586143764439, -73.97851947481622 40.7858653157002, -73.97823344313805 40.786250748568634, -73.97823129779688 40.78625363697106, -73.97822025936392 40.78626849225367, -73.9781419058903 40.78637326243174, -73.97813686103255 40.786377432595934, -73.97813238535555 40.78638007922009, -73.97812699401823 40.78638225921069, -73.97812127589968 40.78638379798218, -73.97811562676321 40.78638452541502, -73.97811508293897 40.786384595550835, -73.97810796377217 40.786384571686206, -73.97810062812123 40.78638355812928, -73.978093528667 40.78638123528815, -73.97808714749675 40.78637792833542, -73.97808114363846 40.786372919507016, -73.97807673823165 40.786367241009565, -73.97807472086619 40.78636283357333, -73.97807372378874 40.78635776806487, -73.97807373235393 40.78635334480499, -73.97807474796892 40.78634888751769, -73.97807701949809 40.78634419363746, -73.97845299747061 40.78583678711946, -73.97845741442158 40.7858324088079, -73.97846292585886 40.78582869437008, -73.97846833146824 40.78582617127532, -73.9784744346829 40.78582428946743, -73.97848007791583 40.78582334049259)), ((-73.98208628503926 40.77717722770463, -73.98209132089886 40.777176575623145, -73.98209499666972 40.77717659870693, -73.98209866296382 40.77717662178909, -73.98210707790281 40.77717801797425, -73.98211400589457 40.77718049182932, -73.98211870803323 40.77718301126422, -73.98212279640639 40.77718608621365, -73.98212657415961 40.77719012285132, -73.98212982684053 40.77719527783137, -73.98213113480139 40.777199039432595, -73.98213178389028 40.77720369873249, -73.98212450573061 40.77738480033433, -73.98212445803509 40.77738596197495, -73.98212221154887 40.77744077160198, -73.98211930089668 40.777511756848725, -73.98211336007826 40.777639943332396, -73.98211303003269 40.7776470626524, -73.98211280007348 40.77765202168293, -73.98211203392758 40.77766858810494, -73.98210699042725 40.77777689073343, -73.98210631611893 40.777782309851496, -73.98210569948333 40.77778470689285, -73.98210516941393 40.777786767159775, -73.98210316366898 40.77779198886108, -73.98209995301553 40.777797846129765, -73.98209590611603 40.77780339979916, -73.9820925053129 40.77780713005171, -73.98209049046231 40.7778109658783, -73.98209038853425 40.77781116127146, -73.98208767322735 40.77781632703103, -73.98208511224335 40.77782028343996, -73.98208504706322 40.7778203842861, -73.98208495581733 40.777820502237695, -73.98208224925814 40.777823972352714, -73.98207774649406 40.777828747916594, -73.98207182922754 40.77783385644609, -73.98206836953659 40.777836305273965, -73.98206601291784 40.777837974438455, -73.98206597144886 40.777838004148585, -73.98206588614407 40.777838054563446, -73.98206163394198 40.77784055279544, -73.98205711644233 40.777842853775915, -73.98205707379073 40.777842876281866, -73.98204994537241 40.777845399279556, -73.98204111545657 40.7778450548124, -73.9820351421964 40.77784254238047, -73.98203165933622 40.77783865707057, -73.98203032299563 40.77783468204511, -73.98203279038718 40.777786870260904, -73.98203522014187 40.77774243445355, -73.98203765107813 40.77769799774554, -73.98204008556472 40.7776535619382, -73.98204566425791 40.777520172299766, -73.98204693523002 40.77748977784268, -73.98205127395269 40.77738594969847, -73.98205396843935 40.777321723589026, -73.98206024299957 40.77719501487862, -73.98206231580072 40.77719146632144, -73.98206536119324 40.77718775222322, -73.982068690681 40.77718480179505, -73.98207410516632 40.77718139603702, -73.98208082726843 40.77717861453022, -73.98208628503926 40.77717722770463)), ((-73.97990173485134 40.783916836973184, -73.9799110088643 40.78391644507106, -73.97992031078307 40.78391780104634, -73.97992805206361 40.783920411147626, -73.97993229613196 40.78392286935518, -73.97993532134838 40.78392462225776, -73.97994003881816 40.78392868163901, -73.9799438674256 40.7839338421787, -73.97994624004382 40.78393894663378, -73.97994722181618 40.783944045443825, -73.97994700567563 40.783949717664825, -73.97994556236829 40.783954753918266, -73.97994330419624 40.78395907593223, -73.97974505972262 40.784220129041806, -73.9797410217856 40.78422544759387, -73.97972470159377 40.78424740435107, -73.97965519309538 40.78434093618668, -73.97960947741042 40.78440243685448, -73.97960759411956 40.78440497053217, -73.9796053125999 40.78440803903716, -73.97955481695391 40.784475732485134, -73.97955003186472 40.784479632608104, -73.97954290222476 40.78448350980215, -73.9795345219326 40.78448604952913, -73.97952391014617 40.78448691302603, -73.97951506533278 40.78448596142522, -73.97950900839136 40.784484262903334, -73.97950398113133 40.784482041372975, -73.97949945517506 40.78447927512823, -73.97949520435773 40.78447558681884, -73.97949178891402 40.78447142139226, -73.97948961621744 40.78446732822683, -73.97948836040587 40.78446351708153, -73.97948788061588 40.78445960431764, -73.9794882363564 40.78445470295195, -73.97948882103496 40.784452713848495, -73.97948950414768 40.78445039157701, -73.97964044592679 40.78424738949692, -73.97988251204275 40.78392380350041, -73.97988739388403 40.78392101099701, -73.9798943678752 40.78391836473962, -73.97990173485134 40.783916836973184)), ((-73.97800141433494 40.78645614213589, -73.97800965348715 40.78645499737036, -73.9780165973085 40.7864550500237, -73.97802459990065 40.78645631045046, -73.97803258543532 40.78645899906811, -73.97803840400336 40.78646184936254, -73.97804261245473 40.78646481281303, -73.97804589439045 40.786467894052564, -73.97804732852289 40.78646972594499, -73.97804904450771 40.78647191899203, -73.97805134725581 40.786476765027025, -73.97805147275237 40.78647702979823, -73.97805211917961 40.78647838967802, -73.97805327833514 40.786484163011316, -73.97805320332026 40.78648889603076, -73.97805320211147 40.78648896897116, -73.97805209188084 40.78649291565606, -73.97778241031027 40.78685028276408, -73.97777778770744 40.78685638817044, -73.97777119279259 40.78686509834579, -73.97777090240062 40.78686547469922, -73.97766345838046 40.787004562425224, -73.97765630589144 40.78700831522755, -73.9776477097015 40.787010500877656, -73.97763925035365 40.787010915268176, -73.97763187660381 40.78701027268051, -73.97762519871944 40.78700841184964, -73.97761736153129 40.78700482903525, -73.97761108386624 40.78700013350403, -73.97760788974621 40.78699660832247, -73.97760499122607 40.7869913182162, -73.97760348615745 40.78698552229909, -73.97760354780435 40.78697836152687, -73.97760476952607 40.786974151021454, -73.97760661898812 40.786970486341616, -73.97798326206895 40.7864653075718, -73.97798670131226 40.786462014195735, -73.97799321145047 40.786458676380924, -73.97800141433494 40.78645614213589)), ((-73.96940001977165 40.79788726738382, -73.96940707667648 40.79788620666755, -73.96941538315755 40.79788634934979, -73.96942048646602 40.797887002665405, -73.96942655153045 40.79788859005391, -73.9694331042946 40.797891272578795, -73.96943824200342 40.79789442839097, -73.96944318951657 40.79789889798121, -73.9694466865758 40.797903513968265, -73.96944915460026 40.79790920307784, -73.96945009114691 40.79791601110244, -73.96944903678585 40.797923210316625, -73.9694462530411 40.79792898358166, -73.96944392180251 40.79793249581235, -73.96944381627603 40.797932638063266, -73.96941686084573 40.797968782367995, -73.96939194822434 40.79800241661601, -73.96938330331379 40.79801410550523, -73.9692511476927 40.79819262766986, -73.96924969638071 40.79819461558556, -73.96908019478384 40.79842647496883, -73.96907534044895 40.798430560133106, -73.96906905136477 40.79843411631898, -73.9690633174473 40.79843637503384, -73.96905756268639 40.79843758736243, -73.96904998807557 40.79843824269348, -73.96904284172622 40.79843784725619, -73.96903517935118 40.79843611984114, -73.96902908610484 40.79843389216953, -73.96902490069905 40.79843156955732, -73.96902024774984 40.79842813380202, -73.96901677401767 40.79842432195471, -73.96901341108209 40.79841923322885, -73.96901170465317 40.79841430883914, -73.96901112924749 40.798408169979716, -73.96901265014523 40.798401819165996, -73.96932717966652 40.79796875763825, -73.96937880028861 40.79789857742575, -73.96938438002101 40.79789392422584, -73.9693900254919 40.797890615488924, -73.9693951075217 40.79788858170948, -73.96940001977165 40.79788726738382)), ((-73.98103478143679 40.781795317573064, -73.98103966583714 40.78179530126729, -73.98104615052682 40.781795988516315, -73.98105113527387 40.781797203212406, -73.98105641359852 40.78179919418906, -73.98106123447788 40.7818017578094, -73.98106545693891 40.7818048841448, -73.98106934507577 40.78180888121028, -73.98107258247205 40.78181413346822, -73.98107267128114 40.781814278463564, -73.9810742752843 40.781818590329316, -73.9810745162786 40.78182097759901, -73.98107485060211 40.781824278893275, -73.9810741975553 40.781829478283065, -73.98107258517882 40.781833784217575, -73.98107248439966 40.781834073262075, -73.98098610312219 40.78208231205764, -73.9809858790344 40.78208295677992, -73.98093982203339 40.78221669708599, -73.98092672755615 40.78225473301103, -73.98092568536042 40.78225774681767, -73.98087278823503 40.78241048834709, -73.98086828343683 40.78241683883749, -73.98086331125698 40.782421211748485, -73.98085770562113 40.7824243697773, -73.98085087165106 40.782426898151066, -73.98084409727178 40.78242818474257, -73.98083649508959 40.78242846443516, -73.9808283981038 40.782427377983936, -73.9808251582846 40.782426388694105, -73.98082075165668 40.782425043511815, -73.98081503644302 40.78242200786995, -73.98080970538456 40.78241786917719, -73.98080550723817 40.78241249518463, -73.98080252144294 40.78240565897923, -73.98080193919573 40.78239941390324, -73.98080273905168 40.78239462426813, -73.98080441894055 40.78239047593682, -73.98080450193727 40.7823902364172, -73.98094163371191 40.781992124868786, -73.98094173330516 40.7819918430282, -73.98100990559898 40.7818040825625, -73.98101552674272 40.78180034010291, -73.9810224045729 40.78179746863518, -73.98102798122933 40.78179601884509, -73.98103313592821 40.78179532270525, -73.98103478143679 40.781795317573064)), ((-73.96894481918748 40.79851602386242, -73.9689540055113 40.79851505379757, -73.96896114353208 40.79851553838758, -73.96896800742408 40.798516883780785, -73.96897305808476 40.79851872396025, -73.96897986276957 40.79852252499874, -73.96898452862955 40.79852623631196, -73.9689881360778 40.798530453420874, -73.96899075267041 40.79853514842834, -73.96899219243605 40.79854017360247, -73.96899257394132 40.7985453785918, -73.96899176593425 40.79855016272792, -73.9689895523586 40.79855536701909, -73.96898706448027 40.79855926100979, -73.96884123197734 40.79875331712629, -73.96875489605397 40.79887457661639, -73.96874657678327 40.798886271848026, -73.96862526769596 40.79905657825457, -73.96862130778551 40.799061002230516, -73.96861503346612 40.7990657380495, -73.96860874453813 40.79906878362682, -73.96860121294222 40.79907103552539, -73.96859417017981 40.79907196652413, -73.96858621076719 40.7990717896584, -73.96857644871766 40.79906970774461, -73.96856684175121 40.799065433156294, -73.96856142121364 40.79906136682395, -73.96855787281855 40.79905756034583, -73.9685553306049 40.79905346778329, -73.96855382991258 40.79904953219172, -73.96855270077387 40.79904420903197, -73.96855300665365 40.79903886285072, -73.96855410354543 40.799034686633895, -73.96855639825478 40.79903092137158, -73.96870814420225 40.79881885273871, -73.96870930503219 40.79881727627942, -73.96892292630224 40.79852746781236, -73.96892734341094 40.798523360024234, -73.96893163546792 40.798520601150386, -73.96893726525865 40.79851804524927, -73.96894481918748 40.79851602386242)), ((-73.96986756685327 40.79725400437459, -73.96987339563722 40.797253922151704, -73.969879520327 40.797254570311026, -73.96988772156786 40.797256674219895, -73.9698956199107 40.797260408853866, -73.96990025631038 40.79726367617673, -73.96990441120079 40.7972678762913, -73.969907603723 40.7972725029913, -73.96990940055943 40.79727673130601, -73.9699103294292 40.797282257014075, -73.96990994253419 40.797288833261675, -73.96990877241906 40.79729272311456, -73.96976505672775 40.79748989581783, -73.9697648788753 40.797490138005536, -73.96965657505882 40.79763963659859, -73.96965567393156 40.79764087274727, -73.96954039340821 40.79779898446993, -73.96953676828736 40.797802323464694, -73.96953167874493 40.79780526135001, -73.96952641653048 40.79780747428729, -73.96951873130081 40.79780920931886, -73.96951007601226 40.79781002738482, -73.96950436584675 40.797809734112406, -73.96949927093084 40.79780887819031, -73.96949440378403 40.79780746041658, -73.96948954516648 40.79780553116113, -73.96948530766429 40.797803168929654, -73.96948014662654 40.797799216171306, -73.9694750444363 40.79779355337973, -73.96947268726612 40.7977890277453, -73.96947124050705 40.797783705409884, -73.96947124361135 40.79777693635571, -73.96947400595954 40.79776870742201, -73.96969045195647 40.79747763123141, -73.96984125174832 40.797264104700055, -73.9698450330131 40.79726126101107, -73.96984936866595 40.79725878397032, -73.96985551607753 40.79725635693068, -73.96986115355487 40.797254829356525, -73.96986756685327 40.79725400437459)), ((-73.97078057346994 40.79599819364021, -73.97078737867542 40.795997755921235, -73.97079452354872 40.795998241300175, -73.97080041801759 40.79599943505528, -73.97080763538538 40.79600213478073, -73.97081350761697 40.79600540238051, -73.97081766995332 40.79600878751259, -73.97082170716583 40.79601378630844, -73.97082458878621 40.796019452082, -73.9708256890676 40.79602332541003, -73.9708259083866 40.79602848622978, -73.9708250637236 40.79603346577978, -73.97082266421364 40.79603896272354, -73.97081920093221 40.796043796630144, -73.97081851445513 40.796044723070594, -73.97064879154082 40.796273919301115, -73.97064478641556 40.7962794491506, -73.97061988062804 40.79631386170621, -73.97046019984047 40.79653503225391, -73.97045667061032 40.79653883055768, -73.97045129849724 40.79654333167918, -73.97044543044555 40.79654659628717, -73.97043980109379 40.79654866959499, -73.97043256636051 40.796550285937386, -73.9704245109225 40.79655088000155, -73.97041647857269 40.79655018095351, -73.97040952604428 40.7965487005484, -73.97040397199387 40.79654664238111, -73.97039797536155 40.796543273872835, -73.97039160873872 40.79653789805535, -73.97038746155272 40.79653239403627, -73.97038517807131 40.79652732813873, -73.97038413074954 40.796521644815975, -73.97038438456072 40.796515788031044, -73.97038579199344 40.79651106076918, -73.9703878509258 40.796506811839976, -73.97050401615223 40.79635881748001, -73.97075556739456 40.79601044670253, -73.97076014057647 40.7960064676537, -73.97076870026561 40.79600151797648, -73.97077464832216 40.79599940601175, -73.97078057346994 40.79599819364021)), ((-73.9681674219435 40.79982981773807, -73.96817326642199 40.799829605933574, -73.96818149932393 40.79983047988971, -73.96818700883443 40.79983194292063, -73.96819391592314 40.799834895762736, -73.96820043127536 40.79983929289708, -73.96820470452492 40.79984389832851, -73.96820808261272 40.799849537286015, -73.96820972933467 40.79985537207478, -73.96820959245852 40.7998615953873, -73.96820838504298 40.799866366799804, -73.96820634142813 40.799870289711365, -73.96820577559002 40.79987153944823, -73.96820455731554 40.79987423520696, -73.96812172152929 40.80012683297798, -73.96806713809119 40.8002975372089, -73.96805835120874 40.80032493156148, -73.968050615328 40.80035250630439, -73.9680439007656 40.80038038569854, -73.96804329854781 40.800383348173845, -73.96804325103753 40.80038357778799, -73.96804284718438 40.80038556237614, -73.96803829662214 40.80040810240972, -73.96803285837703 40.80043828113123, -73.9680294899556 40.80044455937769, -73.9680238798173 40.80045019584684, -73.96801775275574 40.80045390960659, -73.96801320245672 40.800456146084436, -73.96800683337916 40.80045796512622, -73.96800078949144 40.800458745081905, -73.96799470094673 40.80045874879456, -73.96798701559737 40.80045754899663, -73.96798062585829 40.80045551299428, -73.96797589275575 40.80045347114839, -73.96797108675963 40.80045023161816, -73.96796590373548 40.800444940645825, -73.96796285124046 40.80043986908674, -73.96796146918692 40.80043565346602, -73.96796430227374 40.80040663206583, -73.96796660621214 40.80039370604057, -73.9679688649892 40.800381051052874, -73.96797097053287 40.800371622511115, -73.96797115579072 40.800370795904364, -73.96797454864668 40.80035560542598, -73.96798132361211 40.80033031138569, -73.9679891969774 40.800305204053224, -73.96799815924838 40.80028031044076, -73.96813829173067 40.79984625190576, -73.96814141633544 40.79984175567614, -73.96814506417336 40.79983837260813, -73.96815019912918 40.79983508540378, -73.96815981717764 40.79983123212307, -73.9681674219435 40.79982981773807)), ((-73.98127472099759 40.78107500940774, -73.98128469747199 40.781073324388416, -73.98129277323736 40.78107348328752, -73.98129998978214 40.78107486672913, -73.9813037566338 40.7810761460529, -73.98130620153394 40.78107697581174, -73.98130887254703 40.78107836391835, -73.98131047515486 40.78107919714245, -73.9813160490002 40.78108330703619, -73.98131978902292 40.78108732117921, -73.98132161732926 40.7810901913749, -73.9813223325481 40.78109131261563, -73.9813238620696 40.78109507876219, -73.98132434831713 40.78109738502619, -73.9813246819464 40.78109896906303, -73.98132473993695 40.78110339864094, -73.98132391062971 40.78110778845301, -73.98132241571783 40.781111560412945, -73.9813223433961 40.7811117657156, -73.9812708905453 40.781257728710685, -73.98121898100781 40.781404988327736, -73.98115088895047 40.78160577830167, -73.98114489427338 40.78162343886214, -73.98111978260424 40.781695442473506, -73.98111554397218 40.781699224786884, -73.98111094306067 40.781702197489636, -73.98110548458101 40.78170470359167, -73.98109939842898 40.78170649639312, -73.98109636912581 40.781706866902994, -73.98109110072055 40.78170751259889, -73.98108037135985 40.78170686427765, -73.98107211129324 40.781704653089925, -73.98106590799857 40.781701785773805, -73.98106064320345 40.781698069438434, -73.9810566804267 40.78169411738537, -73.98105422679345 40.78169060322419, -73.98105226736548 40.78168639215581, -73.98105110778204 40.78168150224061, -73.98105101309731 40.78167702763177, -73.9810511388441 40.781676423415796, -73.98105203567782 40.78167212006534, -73.98113095203439 40.78145165145808, -73.98114245474544 40.78141952343701, -73.98114350761183 40.78141639796759, -73.98118577625665 40.78129115498098, -73.98118950988052 40.78128009202524, -73.98125385511747 40.78108943565681, -73.98125638533024 40.78108599525083, -73.98126042491182 40.78108214536192, -73.98126657795817 40.781078167044704, -73.98127472099759 40.78107500940774)), ((-73.97543048407049 40.78962570913155, -73.97543402915896 40.78962533527898, -73.97543961313524 40.7896254211161, -73.97544505587679 40.78962616428838, -73.97545174936492 40.789628026148584, -73.97545813797801 40.78963091721579, -73.97546046437861 40.78963245216427, -73.97546210849488 40.78963353671713, -73.9754639313061 40.789635194926916, -73.97546553973882 40.78963665768243, -73.9754684814661 40.78964029543081, -73.9754707062474 40.78964430313228, -73.97547205781537 40.789648334060914, -73.97547257378389 40.78965320227728, -73.97547176620972 40.78965836827771, -73.97546892376549 40.78966502867618, -73.97535609880123 40.78982244273777, -73.97530217611097 40.78989767522738, -73.97530033158492 40.7899002484629, -73.97521888246533 40.79001226946551, -73.97520212412628 40.79003532498024, -73.97520164284711 40.790035978640155, -73.97510386235506 40.79016883002588, -73.97510158819021 40.79017015777298, -73.97509837425879 40.79017203282138, -73.97509093246222 40.79017505509425, -73.9750842009353 40.79017657188325, -73.97507830624656 40.790177137924154, -73.97507631931992 40.79017709607147, -73.9750729366872 40.79017702420037, -73.9750644917135 40.79017590395186, -73.9750636802158 40.79017562732261, -73.97505558774851 40.790172866437636, -73.97504944212551 40.790169610698264, -73.97504700922265 40.790167700209786, -73.97504533911899 40.790166388719335, -73.97504370122118 40.79016450181592, -73.97504338619531 40.790164138846, -73.97504044437494 40.790160749625194, -73.97503742983172 40.7901553981978, -73.97503621806747 40.79015142312573, -73.97503573893442 40.7901463469001, -73.97503676870369 40.79013959607015, -73.975038909154 40.79013465548695, -73.9750420981302 40.79012981688735, -73.9750426114132 40.79012913261803, -73.97521691008448 40.78989677623456, -73.97541196431207 40.789632121249326, -73.97541883632276 40.78962860355859, -73.97542834185103 40.78962593560104, -73.97543048407049 40.78962570913155)), ((-73.97184969586552 40.7944779107099, -73.97197519477642 40.79430467788639, -73.97211117764927 40.794361681903084, -73.97194162750408 40.794595288084956, -73.9719378742927 40.79459961497415, -73.97193327527464 40.79460344097927, -73.97192794305539 40.794606670674675, -73.97192201037669 40.79460922574907, -73.9719156241934 40.79461104140216, -73.97190894093082 40.79461207354752, -73.9719021288558 40.79461229611162, -73.9718953550416 40.79461170373215, -73.97188878655247 40.7946103117584, -73.97188258689074 40.794608153548744, -73.97182264177606 40.79458277362655, -73.97181640346301 40.79457956271942, -73.97181099016652 40.79457557938474, -73.97180656772156 40.79457094342966, -73.97180326759212 40.79456579536447, -73.97180119161327 40.79456029100072, -73.97180040132922 40.79455459604547, -73.97180092036425 40.79454888340054, -73.97180273324123 40.79454332595814, -73.97180578538402 40.79453809029734, -73.97184969586552 40.7944779107099)), ((-73.98077904656584 40.782522022392016, -73.98078184724837 40.78252170588251, -73.9807876083336 40.782521807699304, -73.98079575028692 40.78252310667927, -73.98080165064587 40.78252500862134, -73.9808059919106 40.78252708860277, -73.98080997641873 40.782529748447665, -73.98081538182447 40.782534917326586, -73.98081912141029 40.78254062622896, -73.98082042229066 40.78254439954738, -73.9808210341564 40.78255065003104, -73.98082032312054 40.7825555459401, -73.98081931420289 40.78255815542594, -73.98081869533723 40.78255975461387, -73.98081665431798 40.78256320319539, -73.9808161565084 40.78256404418104, -73.98074363616128 40.782707128098, -73.98068714878255 40.78281857823203, -73.9806436937045 40.782906576061826, -73.98057999439094 40.78303556850009, -73.98057027772845 40.78305523561757, -73.98054583860926 40.78310420977472, -73.9805417321924 40.783109183452076, -73.98053606690202 40.78311352741541, -73.98052847786511 40.78311719747827, -73.98052088930633 40.78311923042886, -73.98051451544303 40.78311994885208, -73.98050935256211 40.78311989755092, -73.98050737892966 40.7831196666887, -73.98050425736848 40.78311930055707, -73.98050204687645 40.783118799504194, -73.9804993187075 40.783118181298505, -73.98049440037752 40.78311641008008, -73.98048924771247 40.78311384007691, -73.9804850109461 40.78311082628132, -73.9804839225262 40.78310975630112, -73.98048107060566 40.783106952556764, -73.98047775138458 40.78310192089229, -73.98047546101687 40.78309505147835, -73.9804753810647 40.7830889415617, -73.9804767735166 40.78308341001651, -73.98062378761567 40.78279169752888, -73.98075488901294 40.782532561433506, -73.98075875794488 40.78252930676609, -73.9807640828113 40.7825261937204, -73.98077061353709 40.782523592360526, -73.98077659656069 40.78252230023837, -73.98077904656584 40.782522022392016)), ((-73.96777705404902 40.802250372362245, -73.9677844063524 40.802249649515595, -73.96779034560547 40.802249937533894, -73.96779783909858 40.802251311087275, -73.96780497662482 40.8022536291641, -73.96780938376185 40.80225609235888, -73.96781399802727 40.80225907880115, -73.96781750297065 40.80226233418276, -73.9678212357319 40.80226743925255, -73.96782369662287 40.80227322384393, -73.96782448688339 40.80227845326163, -73.96782417276604 40.802283528385715, -73.96778136879082 40.80248289678885, -73.96778070367036 40.80248599341858, -73.96777106755611 40.80252632136766, -73.96776457893242 40.802549446165166, -73.96776430946444 40.8025504042206, -73.96775981870745 40.802566408431474, -73.96774694292577 40.8026062032771, -73.96771643467825 40.80268554309357, -73.96771586989551 40.802686991838065, -73.96771498356411 40.802689269851875, -73.96764721222564 40.80286229340794, -73.96764316857713 40.802872608387446, -73.96763957942058 40.80287677128646, -73.96763385871837 40.8028802104864, -73.96762864232211 40.802882288273445, -73.96762351630036 40.80288372583097, -73.96761728726865 40.802884612873655, -73.96761158362565 40.802884649992755, -73.96760326035 40.80288365260271, -73.96759621274165 40.80288150923568, -73.96759078410312 40.80287896109899, -73.96758457316827 40.80287432178377, -73.96758052842817 40.802869824455755, -73.9675780822028 40.80286555720435, -73.9675762140531 40.80285932252562, -73.96768859581246 40.80256806341788, -73.9676936477472 40.80255563074558, -73.96769812854826 40.802543079947604, -73.96769982819113 40.80253758557978, -73.96770204651123 40.802530411026424, -73.96770538266222 40.80251765189219, -73.96770812633365 40.80250480794493, -73.96771028699426 40.802491903500915, -73.96771078432046 40.80248782167883, -73.96771186701105 40.802478945764726, -73.96774877110553 40.80226937578573, -73.96775180606569 40.80226430592545, -73.9677560032034 40.80225993967983, -73.96776105682123 40.802256191415864, -73.96776546631422 40.8022537865159, -73.96777037204458 40.80225198418827, -73.96777705404902 40.802250372362245)), ((-73.98042799455708 40.783205680848944, -73.98043692868183 40.783204535126934, -73.98044436848915 40.78320480654012, -73.98045029874723 40.78320592056621, -73.98045761941712 40.783208468426196, -73.98046434025095 40.78321231380681, -73.98046909441327 40.78321642360118, -73.98046933718634 40.78321672891236, -73.98047211071834 40.783220224228856, -73.98047451304635 40.78322506483175, -73.98047583954025 40.783230351000554, -73.98047590935703 40.783230624764855, -73.98047581905968 40.783235553194515, -73.98047435313833 40.78324113605571, -73.98047242923424 40.7832450312994, -73.98047089446652 40.783247030152765, -73.98046949243457 40.783248858833794, -73.98046913214563 40.78324934054107, -73.98017917344374 40.78363791056902, -73.98017680427706 40.78364108532976, -73.98008809956592 40.7837601379452, -73.98008504684039 40.78376322973974, -73.98008445904853 40.783763824869645, -73.98007965164634 40.78376734319853, -73.9800750874801 40.783769618877216, -73.98007277707042 40.78377040101351, -73.98007194413816 40.78377068272645, -73.98006954131219 40.78377149546375, -73.98006202636705 40.783772691830826, -73.98005639184085 40.78377291508072, -73.98005224671134 40.783772397475445, -73.98004922582524 40.78377202054292, -73.98003978346013 40.78376894369535, -73.98003652135314 40.78376703676869, -73.98003618614011 40.7837668413018, -73.98003354944808 40.783765300087, -73.98003193751671 40.78376379056726, -73.98002896592496 40.78376101020431, -73.98002873027859 40.78376064365938, -73.980024996653 40.78375480956371, -73.98002342286185 40.78374858772624, -73.98002341457837 40.78374855620728, -73.98002327494741 40.78374800867815, -73.98002330947516 40.783747437766195, -73.98002331185805 40.78374739274153, -73.98002359764212 40.783742543590655, -73.98002362503028 40.783742077135656, -73.98002593350903 40.78373588298609, -73.98022904041608 40.78346084812166, -73.98022933196964 40.783460452851536, -73.98041185676782 40.78321328734515, -73.98041224076253 40.78321276602004, -73.98041614628427 40.78321016423431, -73.98042051725224 40.78320803439036, -73.98042799455708 40.783205680848944)), ((-73.97895180803619 40.78519305333656, -73.97895864990383 40.78519290330173, -73.97896541562044 40.78519379243104, -73.9789745785787 40.7851967513493, -73.97898117396717 40.78520053015519, -73.97898353090162 40.78520268458412, -73.97898529919438 40.78520430220685, -73.97898807142549 40.785208181171306, -73.97899104924291 40.78521382605617, -73.97899203193488 40.78521959304547, -73.9789909647242 40.78522636642149, -73.97898849279954 40.78523194277523, -73.97883692446071 40.78543605777637, -73.9788330617554 40.785441259262676, -73.9788288802249 40.785446872219325, -73.97861236654255 40.785737468110646, -73.97861056998232 40.785739004932786, -73.97860855655485 40.785740727217856, -73.97860435578649 40.785743413533666, -73.97859976187168 40.785745515351024, -73.97859484349146 40.785747138941794, -73.97858869789694 40.78574821119761, -73.97857835863513 40.785748304729374, -73.97857011335797 40.78574669580185, -73.97856075160597 40.78574280389545, -73.9785553314809 40.78573892983138, -73.9785508298888 40.78573394291849, -73.97854838355715 40.78572977764508, -73.97854703899466 40.78572573504494, -73.97854655290469 40.78571945666007, -73.97854827780765 40.78571234662359, -73.97855066769415 40.785707843661896, -73.97886148753172 40.78529065564549, -73.97886786529416 40.785282095749594, -73.97886808574556 40.78528180853013, -73.97892921932142 40.78520255580078, -73.97893490856791 40.78519827855927, -73.97894001201952 40.785195699555814, -73.9789452786384 40.7851941489544, -73.97895180803619 40.78519305333656)), ((-73.97124293677008 40.79536916130852, -73.97124808524558 40.79536908424941, -73.97125442304007 40.79536977741406, -73.97126237406609 40.795371903675864, -73.97126907338883 40.795375041787, -73.97127461237027 40.795378905411475, -73.97127816790945 40.795382537113, -73.9712807624729 40.79538619739095, -73.97128272749165 40.79539068417092, -73.97128377618122 40.79539608022738, -73.97128347852156 40.79540214592035, -73.97128136800899 40.795408064380126, -73.97110165800478 40.7956515407382, -73.97091835104703 40.79590992457425, -73.97091451132086 40.79591396504851, -73.97090826014863 40.79591830297947, -73.97090229633588 40.79592124700891, -73.97089620859009 40.79592308339204, -73.97088780576259 40.79592433476578, -73.97088140717584 40.79592435566202, -73.97087324950904 40.79592316764267, -73.9708658613612 40.79592082717754, -73.97086028509412 40.795918178298535, -73.97085632147844 40.79591559196152, -73.97085214390441 40.79591183582103, -73.97084847028447 40.79590725314904, -73.97084648250238 40.79590336879067, -73.97084506387431 40.79589859037992, -73.97084462297398 40.79589342950404, -73.97084510461494 40.79588943861075, -73.97084661625225 40.795884762697675, -73.97085005740104 40.79587903548874, -73.97101833200225 40.79565761349948, -73.97113265733397 40.79549686424487, -73.97113272965666 40.79549676520799, -73.97121625836861 40.79538311780044, -73.97122070668077 40.79537728457254, -73.97122817956722 40.795372620047786, -73.97123727020367 40.795369896503516, -73.97124293677008 40.79536916130852)), ((-73.97405901579344 40.7915083075081, -73.97406468883504 40.791508275466285, -73.97407140415768 40.7915092216021, -73.97407712044568 40.79151071231558, -73.9740819574008 40.79151266388725, -73.97408986191196 40.79151766884475, -73.97409399436884 40.79152142486035, -73.97409854034703 40.7915281994461, -73.97410030630304 40.79153290495758, -73.9741009342016 40.79153917258145, -73.97409922853723 40.791546996646176, -73.97409642303406 40.79155255480469, -73.97380836705662 40.79194174179842, -73.97379466882062 40.79196024666841, -73.97378504863534 40.79197324320317, -73.97373331416361 40.79204308143503, -73.97372905989124 40.792047734251135, -73.97372379999742 40.79205157818854, -73.97371626177541 40.79205505600305, -73.97370570613 40.792057526369334, -73.97370067990524 40.79205772513361, -73.97369819878458 40.792057822722, -73.97369240037911 40.792057152326905, -73.97368621726743 40.792055543522366, -73.97367820906486 40.79205199462297, -73.97367190864249 40.79204741774176, -73.97367021857856 40.792045594743016, -73.97366796121183 40.79204316107542, -73.97366573638548 40.792039338843715, -73.97366427352004 40.79203526284495, -73.97366347026875 40.79202907352262, -73.97366427821682 40.792023389749076, -73.97372962715043 40.79193735825264, -73.97373375494544 40.79193192287283, -73.97380405063764 40.7918393791411, -73.97403041753726 40.79151967889056, -73.97403828243274 40.791513845419765, -73.97404488789904 40.7915108959676, -73.9740518933862 40.79150911545467, -73.97405901579344 40.7915083075081)), ((-73.97942086953853 40.78456273669846, -73.97942605998752 40.784562113577735, -73.97943159140826 40.784562226227266, -73.97943704918183 40.78456296921436, -73.9794422698083 40.784564370425365, -73.97944817011908 40.78456688927954, -73.97945335462013 40.78457018423797, -73.97945693977434 40.784573400567446, -73.97946050900715 40.78457830353304, -73.97946293471426 40.78458408698509, -73.97946353971126 40.784589208244135, -73.9794630347679 40.78459386824867, -73.9794616284327 40.78459794366721, -73.97945944616978 40.78460181093158, -73.97926847809511 40.784858816739415, -73.97925602971121 40.78487556832649, -73.9792364616864 40.78490190446619, -73.97915259991021 40.78501474645396, -73.97908472551265 40.78510579734924, -73.97908320743696 40.78510719014924, -73.97908222501353 40.78510809047222, -73.97908076737652 40.78510942745205, -73.97907499780807 40.785112995991746, -73.97906873337008 40.78511545772518, -73.97906764689571 40.785115704265195, -73.97906126311786 40.78511715381309, -73.97905967673802 40.78511723997295, -73.9790544662088 40.78511752358448, -73.97904963622585 40.78511701842583, -73.97904648731837 40.78511669007088, -73.97903949209305 40.785114777935114, -73.97903416749955 40.78511234831458, -73.97903076569727 40.7851099973873, -73.97902874380436 40.785108600341914, -73.97902866681373 40.78510854719831, -73.97902454881209 40.78510441404852, -73.979024416186 40.78510421231205, -73.97902241258693 40.785101156546496, -73.979022057339 40.785100614380056, -73.97902033601467 40.78509657801993, -73.97901948670071 40.785092384230815, -73.97901962028023 40.785089560283105, -73.9790197144952 40.7850875882024, -73.97901975504473 40.78508673543505, -73.97902168436609 40.78508112566322, -73.97902210058837 40.78507991186324, -73.97914780273003 40.78490952200821, -73.9792364963511 40.784790745688454, -73.97939929258794 40.78457310301717, -73.97940061269497 40.7845720388605, -73.97940136992003 40.784571427555456, -73.97940476735968 40.78456868523547, -73.97941188154918 40.78456502236662, -73.97941937436714 40.784562915631234, -73.97942086953853 40.78456273669846)), ((-73.97314477321882 40.7927620385085, -73.9731516288637 40.79276200588666, -73.97315692494655 40.792762665385865, -73.97316073862638 40.79276366312775, -73.97316079667863 40.792763678449774, -73.97316304887038 40.792764267901354, -73.97317035456223 40.79276767709508, -73.9731763138927 40.7927719666642, -73.97318009306612 40.79277626833276, -73.9731827144408 40.79278102988744, -73.9731840454336 40.79278594872938, -73.97318430883081 40.792790945666425, -73.97318325715777 40.79279561721691, -73.97318005897242 40.79280207486046, -73.97301615320161 40.79302928503706, -73.9730053280666 40.793044291139026, -73.97297539967732 40.79308452657875, -73.97296159076004 40.79310308445009, -73.97281771693515 40.793296559091715, -73.97281742292478 40.79329695434196, -73.97281413813278 40.7933006357124, -73.97281079323359 40.793303529130895, -73.97280998723392 40.793304225927876, -73.97280555590433 40.79330687325343, -73.97280278283792 40.79330799552281, -73.97279975616578 40.79330922128979, -73.97279256561525 40.793311001682476, -73.97278971350626 40.793311281064774, -73.972786145704 40.793311630516975, -73.97277800944019 40.79331095862352, -73.9727685587121 40.793308460204635, -73.97276194609364 40.793305148403576, -73.97276043943407 40.7933039224668, -73.97275657210318 40.79330077880722, -73.97275209200554 40.79329519644821, -73.97275002979643 40.79329069345987, -73.97274909341218 40.79328571797507, -73.97274925559387 40.793283180403954, -73.97274944996768 40.793280152968386, -73.97275153903485 40.79327403816568, -73.97297317434952 40.792973962642755, -73.97311770443136 40.79277510115823, -73.97312213641844 40.792770706850206, -73.97312925332639 40.79276627264545, -73.97313711016822 40.79276334064712, -73.97314477321882 40.7927620385085)), ((-73.97032415510793 40.796628612357374, -73.97033136689552 40.79662799016755, -73.97033850360607 40.79662832428867, -73.9703440805758 40.796629482865775, -73.97035010861218 40.79663152494883, -73.97035607572168 40.79663468003352, -73.97036182886522 40.79663935870839, -73.97036538522367 40.796643851315274, -73.97036765354908 40.79664836520288, -73.97036881283374 40.79665274913343, -73.97036872117827 40.79665900668221, -73.97036617362514 40.796666864688085, -73.97020346730508 40.796885116471486, -73.97017437147993 40.79692400783026, -73.97016551925513 40.7969362037077, -73.97016292026021 40.7969397888246, -73.97016265941282 40.79694014715592, -73.97015728238436 40.796947566781526, -73.97015557383637 40.796949907638286, -73.96999488205076 40.79717006239517, -73.96998999834106 40.79717392336664, -73.96998496708324 40.79717651909755, -73.96997913032179 40.797178541000186, -73.96997299767904 40.79717977578875, -73.96996703604052 40.79718018486343, -73.96995892180767 40.79717959832471, -73.96995220627791 40.7971779729735, -73.96994627439322 40.797175468938576, -73.96994157136372 40.79717281484035, -73.96993688423662 40.79716905853456, -73.9699334828529 40.79716512786705, -73.96993102134796 40.79716071477681, -73.96992947838773 40.79715583006435, -73.96992926655652 40.79714997766204, -73.9699302085092 40.79714490269188, -73.96993268147028 40.79713969124515, -73.9701056179617 40.79690766035874, -73.97020351702022 40.796774045253215, -73.97030505967194 40.796637073037196, -73.97030901742643 40.79663425189071, -73.97031318350052 40.796631943182035, -73.97031807338684 40.796630043486466, -73.97032415510793 40.796628612357374)), ((-73.97451389062547 40.79088179034798, -73.97452125694262 40.79088122466131, -73.97452772837401 40.79088154126689, -73.9745340821633 40.79088275654562, -73.97454019746408 40.790884854261776, -73.97454640104928 40.790888464837984, -73.97455138525604 40.79089256411634, -73.97455477815872 40.7908968593523, -73.9745570987091 40.79090136236704, -73.97455802836542 40.79090560663108, -73.97455851479371 40.79091011464387, -73.97455793620352 40.790914240609425, -73.97455661517442 40.79091718585492, -73.97455543526068 40.790919815956336, -73.97441127772865 40.79110817504432, -73.97440027695231 40.7911224725488, -73.97436382901387 40.791174790728135, -73.9743613525172 40.79117835255707, -73.97435689506048 40.79118476132761, -73.97435534443922 40.79118697801476, -73.97425892242539 40.79132472498368, -73.97425806531238 40.791325950373334, -73.97425439857706 40.79133118776536, -73.97419432709934 40.79141700462881, -73.97419076778259 40.791420197006325, -73.97418644796721 40.791422950669705, -73.9741794502897 40.79142601260466, -73.9741724968587 40.79142802276465, -73.97416348812145 40.79142901579851, -73.97415598821318 40.79142865481738, -73.97415067097565 40.7914277990501, -73.97414423681903 40.79142594797902, -73.97414105723578 40.79142457850505, -73.97413811339662 40.79142331084043, -73.97413372936161 40.79142057233538, -73.97412956602204 40.791417024329796, -73.97412658746549 40.791413627874114, -73.97412421448533 40.79140991727963, -73.97412208587954 40.791405443115664, -73.97412103785618 40.79140095118426, -73.9741208617927 40.791396673767714, -73.9741217355488 40.791392266914784, -73.9741234755222 40.79138760631528, -73.97430976987624 40.79114037687226, -73.97433341267995 40.79110815592977, -73.97434457139667 40.79109296246881, -73.9744900408663 40.79089487744839, -73.97449393927826 40.790890965636514, -73.97449798065159 40.79088810564075, -73.97450034621784 40.790886431233204, -73.97450627135306 40.790883885928544, -73.97451389062547 40.79088179034798)), ((-73.97359530854307 40.79213544483725, -73.97360415509928 40.79213435095469, -73.97360718947739 40.79213443629662, -73.97361178073645 40.79213456611939, -73.97362052190473 40.792136299782484, -73.97362675569526 40.79213860468889, -73.97363168831934 40.79214140637344, -73.97363542179379 40.79214440319209, -73.97363939190535 40.792148243833516, -73.97364270398066 40.7921532018452, -73.97364445474037 40.792157345447556, -73.9736453552429 40.79216329886106, -73.97364470967936 40.79216882418337, -73.97349202097057 40.792374170774394, -73.97348559799774 40.79238273035328, -73.97345704670676 40.7924207366002, -73.97327392630639 40.79267255070027, -73.97327031564288 40.792676456233025, -73.97326566141649 40.79267960780496, -73.97326104557871 40.79268158063074, -73.97325194727863 40.7926838549843, -73.97324520866324 40.79268458462645, -73.97323807126834 40.7926840210573, -73.9732311866363 40.79268249581216, -73.97322637207924 40.7926806792854, -73.97322041243308 40.79267718666139, -73.97321565804049 40.792673081977036, -73.97321250914315 40.7926689668596, -73.97321006229822 40.792663329159375, -73.97320916332725 40.79265659410902, -73.97321032707028 40.79265019092228, -73.97340572571535 40.79237918739341, -73.97344579245377 40.79232385638588, -73.97357024941297 40.79215199389159, -73.97357096190092 40.79215101070859, -73.97357112430677 40.792150807232794, -73.97357463914251 40.79214641900011, -73.97357836801335 40.7921430970088, -73.97358281474892 40.79214016960103, -73.97358955303481 40.79213713555869, -73.97359530854307 40.79213544483725)), ((-73.96754946632062 40.8029761574211, -73.96755570334155 40.80297591784299, -73.96756508943763 40.80297728023749, -73.9675735586955 40.802980278579625, -73.96758060623375 40.80298501898652, -73.96758535203291 40.80299053497572, -73.96758799061321 40.8029964718057, -73.96758881620782 40.80300212717028, -73.96758711781519 40.80300987818636, -73.96758490440538 40.80301421166468, -73.96740232309764 40.80326541554741, -73.96733244355555 40.80336312689559, -73.96732072480418 40.80337951445227, -73.9672176381677 40.80352133624587, -73.96721050462877 40.803525123515634, -73.96720582877076 40.803526762894215, -73.96719876275729 40.803528189074854, -73.96719107742432 40.803528670455634, -73.96718126799077 40.803527717637245, -73.96717200112114 40.80352475235784, -73.96716541872779 40.80352113588131, -73.96715999818183 40.80351652468426, -73.96715583547493 40.8035109142918, -73.96715314669616 40.80350347630671, -73.96715294347005 40.80349745011131, -73.96715367694628 40.803492796542905, -73.96715512946903 40.80348871589652, -73.96729650545332 40.80330312728008, -73.96752706288483 40.80298611152958, -73.96753068819639 40.80298316701919, -73.96753473638599 40.802980599036296, -73.96754166205871 40.80297764464896, -73.96754946632062 40.8029761574211)), ((-73.96707930666257 40.803607183690765, -73.96708843584868 40.80360580853449, -73.9670948493125 40.8036059562461, -73.9671028087106 40.80360725163394, -73.96711146142847 40.80361082367974, -73.96711757648983 40.803615300002285, -73.96712358705537 40.803622603860646, -73.96712605363061 40.80363125475466, -73.96712509599303 40.803638675491385, -73.96712249669422 40.80364441362835, -73.96685685245372 40.804016050808336, -73.96684812429002 40.804028256358855, -73.9667990744389 40.80409471345081, -73.96679490869134 40.80409756232918, -73.96678843435129 40.804100573532565, -73.9667773881978 40.804103229522184, -73.96676791242581 40.80410317546254, -73.96675871705914 40.80410166087412, -73.96675064823087 40.80409869680712, -73.96674443679176 40.80409495614504, -73.96673794466905 40.804088490492774, -73.96673456642002 40.80408299287426, -73.96673343681125 40.804078730488236, -73.96673282538771 40.80407384600709, -73.96673360480943 40.80406743738319, -73.96673586382505 40.80406213770001, -73.96687035287302 40.80388241618493, -73.9670689176039 40.80361126718661, -73.96707408328739 40.80360884542012, -73.96707930666257 40.803607183690765)), ((-73.98207497710722 40.768529426760196, -73.98208423389652 40.76852780999512, -73.98208868851789 40.768527943962226, -73.98209305430747 40.76852807521384, -73.9820984669395 40.76852894143887, -73.9821047723268 40.768530955043815, -73.98210927501485 40.768532933248835, -73.98211392076747 40.768535850701106, -73.9821179315316 40.76853925972959, -73.98211967798832 40.768541435617166, -73.98212176663216 40.76854403839651, -73.98212402894887 40.76854827741774, -73.9821343720092 40.76871390773602, -73.98213490830277 40.76880758810023, -73.98213487452819 40.76885401715517, -73.98213349827573 40.76885818267096, -73.98213069460544 40.768862971113826, -73.98212678953041 40.76886729292491, -73.98212284096736 40.7688703603277, -73.98212015780379 40.768871872757245, -73.9821183038739 40.7688729179541, -73.98211154715514 40.76887541400145, -73.98210302350333 40.76887696964835, -73.98210093655985 40.768876818039544, -73.98209185207874 40.768876157459374, -73.98208372578951 40.76887557357024, -73.98208359076597 40.76887556364369, -73.98207437244533 40.768874895837314, -73.98206907302482 40.76887136503895, -73.98206371344965 40.76886690130942, -73.98205908012943 40.76886172359339, -73.9820556656291 40.768856433504105, -73.98205489856763 40.768854742239064, -73.98205345559276 40.76885155963496, -73.98205204509925 40.76884651659562, -73.98204927149274 40.7687924787491, -73.98204571435036 40.768714405440605, -73.98204261997758 40.76864642774828, -73.98204516610424 40.76861280784572, -73.98204895515279 40.7685599344704, -73.98204895753352 40.76855989034613, -73.98204882597396 40.76855582004963, -73.98204992905717 40.76855003628721, -73.98205331005616 40.76854333166454, -73.98205825658776 40.76853769978523, -73.98206139711601 40.7685355003441, -73.98206390740614 40.76853374205151, -73.98207497710722 40.768529426760196)), ((-73.98176889920843 40.779250876980896, -73.98179428023616 40.77925361491791, -73.98181885258327 40.77925916679077, -73.98184208083524 40.77926741094784, -73.98178716739744 40.779471447947415, -73.98178320340206 40.77947660719762, -73.98177946380859 40.77947991144897, -73.9816648301141 40.77943078438665, -73.98171987036066 40.779253685083766, -73.98174425306318 40.779250954124265, -73.98176889920843 40.779250876980896)), ((-73.98217451488611 40.772267664603795, -73.98218282672028 40.77226694728791, -73.98218490903697 40.77226708088436, -73.98218888178464 40.77226733544037, -73.98219221362227 40.77226794559591, -73.98219259619749 40.77226801499378, -73.9821948774345 40.77226843227921, -73.98220020840228 40.77227019268583, -73.98220180015839 40.77227098987689, -73.98220613011478 40.77227315625546, -73.98220859693495 40.772275009871635, -73.98220934420497 40.772275571900906, -73.98221162272766 40.77227728320849, -73.98221530189645 40.772281311726516, -73.98221802380743 40.772286019076, -73.98221855878336 40.772287586934354, -73.98221972342125 40.77229100002057, -73.9822199147882 40.772292955942696, -73.98222010615498 40.772294912765354, -73.98222014735045 40.77229589432002, -73.98222309638467 40.7723682925173, -73.98222576349742 40.772431874745706, -73.98222902961423 40.7725190016175, -73.98222760294361 40.772525412078366, -73.98222568038425 40.772530251084945, -73.98222544095314 40.772530854385025, -73.98222290372983 40.77253533849858, -73.98218131726138 40.77259162431859, -73.98217489964897 40.77260030957786, -73.98217483921741 40.77260039061379, -73.98216622488403 40.77260263243375, -73.98216227840378 40.77260152600521, -73.98216151919216 40.77260131246847, -73.98216064982937 40.77260106919805, -73.9821591660557 40.772599526406715, -73.98215713874463 40.77259741981625, -73.98214584100471 40.77229225380276, -73.98214589672986 40.77229205389973, -73.98214751394102 40.77228626661728, -73.98214978569797 40.77228228134278, -73.98215321714406 40.77227806121659, -73.98215663403408 40.772275116200326, -73.98216189171502 40.77227188420849, -73.98216883602188 40.77226903609176, -73.98217451488611 40.772267664603795)), ((-73.97221295314588 40.79399496703753, -73.97230847919856 40.79403382049035, -73.9723143919055 40.79403924202056, -73.97231901161614 40.794045346719486, -73.97232220569657 40.794051957156945, -73.97232388061964 40.79405888240455, -73.97232398907201 40.794065923440506, -73.97232252758283 40.794072877651494, -73.97231953770691 40.79407954243489, -73.97231510720468 40.79408572780612, -73.9723093629342 40.79409125279506, -73.972140050773 40.79402281001071, -73.97214408705315 40.79401582760828, -73.9721496432796 40.79400947592302, -73.97215655348776 40.79400394582063, -73.97216461262408 40.79399940024186, -73.97217357891472 40.79399597510361, -73.97218318690204 40.793993773899096, -73.9721931498174 40.79399285959403, -73.97220317142708 40.79399326183333, -73.97221295314588 40.79399496703753)))",M094,6354,M094,M-07,M-07,M-07,M-07,"Broadway, Columbus Circle To W 110 St","104, 107",6,18,"10023, 10024, 10025",M,5.605,False,Broadway Malls 59th-110th,No,100005069,PARK,20100106000000.00000,19080409000000.00000,,DPR,Part,Broadway Malls,Y,Broadway Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M094/,No,"69, 67, 75","29, 30, 27",10,{D9C0E977-22E7-46EB-899D-4448C038B015} +"MULTIPOLYGON (((-73.82697299551421 40.694034119983996, -73.82768357783482 40.69383415435127, -73.82774909160469 40.69385649513392, -73.82777402558074 40.6939091936392, -73.82773753778196 40.69395936072466, -73.82701213124012 40.69411683974531, -73.82697299551421 40.694034119983996)))",Q217,5903,Q217,Q-09,Q-09,Q-09,Q-09,"94 Ave., Atlantic Ave. bet. Leffers Blvd. and 120 St.",409,28,102,11419,Q,0.207,False,Lt. Frank McConnell Park,Yes,100000348,PARK,20090423000000.00000,19220502000000.00000,,DPR,True,Lt. Frank McConnell Park,Y,Lt. Frank McConnell Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q217/,No,24,10,5,{772926C7-8F7E-4EC4-978E-A022EC421078} +"MULTIPOLYGON (((-73.82843918961844 40.88131734275495, -73.82842737282115 40.88100969224001, -73.82842280421914 40.88089047338734, -73.82841929368965 40.880769050808624, -73.82842118178594 40.880654852767755, -73.82842146636158 40.88054090447735, -73.82842163321823 40.88047440995306, -73.82843791092137 40.88040273455439, -73.8284477742939 40.880301811656146, -73.82845623624468 40.880215229653906, -73.82859859170394 40.88016793138098, -73.82883631222555 40.88030064518941, -73.82946590022074 40.88138091522128, -73.8294834448384 40.881374657535915, -73.829256380645 40.880985056926654, -73.83015672108078 40.880444537180445, -73.82976487902069 40.87974800019575, -73.82902959845529 40.87844066255511, -73.82909132501972 40.878432955748764, -73.82927463190659 40.87841745770065, -73.82938350842736 40.878416092382274, -73.82944566264734 40.878419706964195, -73.82956040339445 40.87843088404893, -73.82967587713819 40.87844817281844, -73.82975075830248 40.87846273435024, -73.82981476604888 40.878477350037805, -73.82992080825734 40.878506169820426, -73.82999662556568 40.87853049116906, -73.83007507362471 40.87855974111432, -73.83014451676023 40.87858769095477, -73.8302846950025 40.87865621456063, -73.83040848421768 40.87872535686185, -73.8304812130165 40.878772768186884, -73.83054087643895 40.87881166056888, -73.83060770603366 40.87886256785319, -73.83063648213991 40.878884487459146, -73.8307153781489 40.878948227241864, -73.83079897791723 40.879022880585026, -73.83088860269571 40.87910862951159, -73.83095977199747 40.87917989128985, -73.83102550965961 40.8792457133231, -73.83114122127184 40.879361575660305, -73.8312796984705 40.87950023191197, -73.83136290270016 40.879583542456686, -73.83139879789339 40.8796194838734, -73.83108365425647 40.879942022904636, -73.83101478473219 40.87987859522988, -73.83064593342124 40.88018383166141, -73.83097084990074 40.88049059382829, -73.83084276483191 40.880587721054766, -73.83051087001952 40.88083939250048, -73.83020860320205 40.8810598155045, -73.829824374812 40.88130802302331, -73.82956179447388 40.88146110848422, -73.8293621195318 40.88156805349591, -73.82873648201455 40.88185027004676, -73.82865008129954 40.88169538929123, -73.82843918961844 40.88131734275495)))",X268,5592,X268,X-10,X-10,X-10,X-10,New England Thruway bet. Co-op City Blvd. and Rombouts Ave,210,12,45,10475,X,10.735,False,Givans Creek Woods,Yes,100005095,PARK,20100106000000.00000,19950810000000.00000,,DPR,False,Givans Creek Woods,Y,Givans Creek Woods,Large Park,Nature Area,http://www.nycgovparks.org/parks/X268/,No,82,36,16,{6CDB9629-A5D7-48E8-B52B-2400618450A7} +"MULTIPOLYGON (((-73.96082329434068 40.60784928743215, -73.96084064298503 40.60784418018218, -73.96084070161876 40.60785702614364, -73.9608270563374 40.6078576248434, -73.96082183832783 40.60785785539946, -73.96078935811448 40.607859279755, -73.96080739692884 40.60785396832709, -73.96082329434068 40.60784928743215)))",B094,6043,B094,B-15,B-15,B-15,B-15,"E. 12 St., Kings Hwy., Quentin Rd.",315,48,61,11229,B,0.001,False,Sgt. Joyce Kilmer Triangle,Yes,100003699,PARK,20100106000000.00000,19340720000000.00000,,DPR,False,Sgt. Joyce Kilmer Triangle,Y,Sgt. Joyce Kilmer Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B094/,No,45,17,11,{9103CDC0-D772-4BB7-AB3B-503997E4E80F} +"MULTIPOLYGON (((-73.9498918427289 40.8240931465309, -73.9499465623925 40.82411610232131, -73.94995032255542 40.82411768072152, -73.94999535565366 40.82413657374958, -73.95000428975129 40.82414032188484, -73.94982106402404 40.82439107899697, -73.94976709550303 40.82436843594732, -73.9497086178939 40.8243439025663, -73.9498918427289 40.8240931465309)))",M317,4984,M317,M-09,M-09,M-09,M-09,W. 143 St. bet. Hamilton Pl. and Broadway,109,7,30,10031,M,0.086,False,Frank White Neighborhood Service Center,No,100004142,PARK,20100106000000.00000,19990712000000.00000,506 WEST 143 STREET,DPR,False,Frank White Memorial Garden,N,Frank White Memorial Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M317/,No,71,31,13,{6196F845-CC50-4A6C-8F9E-1E4B84D417BD} +"MULTIPOLYGON (((-73.72649336739991 40.76275501673787, -73.72649345258365 40.76275532671513, -73.7265053037474 40.762798423478635, -73.72659454394423 40.76311744507724, -73.72659458366819 40.763117577546275, -73.72659541821926 40.763120562911915, -73.7265962124282 40.76312702864766, -73.72659565405924 40.763133508283225, -73.72659375917 40.763139840665595, -73.72659057460707 40.763145865615336, -73.72658618033412 40.763151433837734, -73.72658068588619 40.76315640511326, -73.72657422797171 40.76316065549598, -73.72657339825967 40.76316110738313, -73.72657212116314 40.76316177523105, -73.72655561317073 40.76316942099112, -73.72653803255433 40.763175527935054, -73.72636830089412 40.76323453778346, -73.7260986916539 40.763326118200716, -73.72582596342849 40.76341219566132, -73.72569340820938 40.76345171322488, -73.72556302404391 40.763490583839534, -73.72554876290806 40.76349441034753, -73.72553385930566 40.76349635776271, -73.72551873627687 40.76349637126121, -73.72550382611432 40.76349445007185, -73.72548955377418 40.76349064923784, -73.72547632504042 40.76348507778736, -73.72546451825627 40.76347789331079, -73.72545446774735 40.763469301020834, -73.72544646267053 40.763459545644764, -73.72544073045928 40.76344890508175, -73.72543743329668 40.76343768409057, -73.72543666580621 40.76342619987596, -73.72543844913032 40.76341478207447, -73.72544273455789 40.76340375475304, -73.7254493976175 40.76339343279286, -73.72545824996921 40.76338411021091, -73.72569505244947 40.76321926884576, -73.72593549834036 40.76305750549402, -73.72617951876524 40.762898866795844, -73.72642704248464 40.762743398485505, -73.72643364563632 40.762740400162805, -73.72644081952731 40.76273829379806, -73.72644836019884 40.76273714104193, -73.72645604723344 40.76273697378935, -73.7264636615016 40.76273779872408, -73.72647098282272 40.76273959010908, -73.72647779940613 40.76274229791365, -73.7264839161601 40.762745843330435, -73.72648915585374 40.76275012418126, -73.72649336739991 40.76275501673787)))",Q357J,6297,Q357J,Q-11,Q-11,Q-11,Q-11,"Horace Harding Exwy. Sr. Rd. S., 254 St., 57 Ave.",411,23,111,11362,Q,0.834,False,Nassau Mall South,Yes,100000171,PARK,,19540830000000.00000,,DPR/SDOT,False,Nassau Mall South,N,Nassau Mall South,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q357J/,No,26,11,3,{FCC02C83-AA9D-4B13-8CCD-23BB40B01B31} +"MULTIPOLYGON (((-73.93460087596726 40.80802669412075, -73.93438500702017 40.80763929236049, -73.93444053936486 40.80765665044164, -73.93449373901217 40.80766717779135, -73.93455224051178 40.80767333350567, -73.93461306231549 40.807674861044525, -73.93467245195606 40.80767209596483, -73.93472762892166 40.80766522489865, -73.93477551196547 40.80765656219049, -73.9348066744074 40.80764989001494, -73.93485786807675 40.80767091046953, -73.93460087596726 40.80802669412075)))",M208C,5846,M208C,M-11,M-11,M-11,M-11,"Lexington Ave., E. 130 St. to E. 131 St.",111,9,25,10037,M,0.203,False,Harlem River Park,Yes,100003788,PARK,20100106000000.00000,19470116000000.00000,,DPR,True,Harlem River Park,N,Harlem River Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M208C/,No,68,30,13,{82EABC88-6F81-4725-BADC-1BF1EFF137C0} +"MULTIPOLYGON (((-73.93246287843549 40.61015741465662, -73.93273503674209 40.60997858566833, -73.93310993941682 40.610315731019064, -73.93283901281308 40.610493752039964, -73.93255528862893 40.610680179384985, -73.93218015259089 40.61034318518813, -73.93246287843549 40.61015741465662)))",B433,5238,B433,B-18,B-18,B-18,B-18,E. 35 St. to E. 36 St. between Fillmore Ave. and Ave. S,318,46,63,11234,B,0.734,False,Hendrick I Lott House,No,100003764,PARK,20100106000000.00000,20020627000000.00000,1940 EAST 36 STREET,DPR,False,Hendrick I. Lott House,N,Hendrick I. Lott House,Building,Historic House Park,http://www.nycgovparks.org/parks/B433/,No,59,22,8,{EBB6E691-7113-4140-98B2-2E57A9C069FB} +"MULTIPOLYGON (((-73.90354686121479 40.854786079588685, -73.90381639080616 40.85448846885388, -73.90408106780814 40.854545019462094, -73.90419585504375 40.8542025858738, -73.9044717907233 40.85425667759129, -73.90418831735178 40.85456793514087, -73.90393030422148 40.85485123401329, -73.90354686121479 40.854786079588685)))",X292,4787,X292,X-05,X-05,X-05,X-05,E. 181 St. bet. Morris Ave. and Creston,205,14,46,10453,X,0.436,False,Morris Garden,Yes,100004216,PARK,20100106000000.00000,19971219000000.00000,2096 - 2116 Morris Ave.,DPR,False,Morris Garden,Y,Morris Garden,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X292/,No,86,33,15,{FF38A16F-CB3C-4574-B876-6FB6EACB8A52} +"MULTIPOLYGON (((-74.01337738570275 40.704807707675464, -74.01336268937149 40.70470875757208, -74.01334305562386 40.70457656025063, -74.01333714139685 40.704534642122596, -74.01336382745578 40.70454223214096, -74.0133896142778 40.70454424538959, -74.01341551649895 40.70454344812242, -74.01406243785853 40.70456971537168, -74.01408732244614 40.70455772291785, -74.01410616026043 40.704539598715996, -74.01412302701802 40.70451184468213, -74.01412918920306 40.70449308987181, -74.01414560406633 40.704438142241244, -74.0141394105202 40.70447635981316, -74.01414079722542 40.70451485201009, -74.01414973442921 40.7045527543443, -74.01416601961866 40.704589212253566, -74.01416709694462 40.70459168042314, -74.01416762760824 40.704594249517335, -74.0141675997618 40.70459685019814, -74.01416701339025 40.70459941222572, -74.01416588267844 40.70460186625889, -74.01416424074485 40.704604147456756, -74.01416212899125 40.70460619187782, -74.014115782275 40.7046487197267, -74.01407592548863 40.70469490103907, -74.01405468249646 40.704726735817616, -74.01404420231937 40.70474509222367, -74.01404260484523 40.70474500777049, -74.01402795902726 40.70477264355408, -74.01401520561222 40.70480177845701, -74.01391898209266 40.705046599594, -74.01389099374364 40.70510529111099, -74.01385434412227 40.705161151554826, -74.01380951703234 40.70521344424096, -74.01375710279108 40.705261478396935, -74.01371712528879 40.705299057910075, -74.01363223490735 40.705393304719955, -74.0135497632314 40.7054887875835, -74.01339822616227 40.70566799269176, -74.01339618886686 40.70566986959473, -74.01339376930281 40.705671462881014, -74.01339103372685 40.70567272751734, -74.01338806141398 40.70567362747403, -74.0133849316418 40.705674138428016, -74.01338173552273 40.70567424596048, -74.01337855943837 40.70567394645935, -74.0133754933227 40.7056732489193, -74.01337262356175 40.70567217224106, -74.01337002826085 40.70567074793347, -74.01336778079326 40.70566901380945, -74.01336594506803 40.7056670193898, -74.0133645707957 40.70566482050043, -74.01336369703793 40.70566247837162, -74.0133633474741 40.70566005783745, -74.0133635327675 40.70565762643508, -74.0133642470152 40.70565525260402, -74.0133865183231 40.70559090667249, -74.0134000221273 40.70552516506388, -74.013404614227 40.705458715788744, -74.01340246579498 40.70537863265373, -74.01339575100113 40.705298696832735, -74.01337820794464 40.705143035556425, -74.01337549795969 40.7050889142296, -74.01337871968174 40.704827376493434, -74.01337738570275 40.704807707675464)))",M007,6551,M007,M-01,M-01,M-01,M-01,Broadway and Whitehall St.,101,1,1,10004,M,1.016,False,Bowling Green,Yes,100004045,PARK,20100106000000.00000,16860427000000.00000,,DPR,True,Bowling Green,Y,Bowling Green,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M007/,No,65,26,10,{FB62ED3C-2E38-44F7-AF86-BB341B28B705} +"MULTIPOLYGON (((-73.95499939126604 40.69140412770466, -73.9549994539733 40.69140412052508, -73.95500102687035 40.69141198982432, -73.95500905170812 40.69145215134736, -73.95463984849093 40.69149460789439, -73.95463025219846 40.691446577942564, -73.95499939126604 40.69140412770466)))",B519,5295,B519,B-03,B-03,B-03,B-03,Spencer St. between De Kalb Ave. and Willoughby Ave.,303,33,79,11205,B,0.043,False,Spencer St Block Association,No,100004197,PARK,20100106000000.00000,20021120000000.00000,230 Spencer St,DPR,False,Spencer St Block Association,N,Spencer St Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B519/,No,57,25,8,{E230C324-F591-45AA-9067-6E0D03931CBF} +"MULTIPOLYGON (((-73.8894818682877 40.83925997936319, -73.88861527150868 40.83894054012642, -73.88814570517766 40.83972352995295, -73.88685740399329 40.83924706287925, -73.88747351692281 40.83819762907132, -73.88847273861835 40.838594003005355, -73.88887002964023 40.83795755336703, -73.8905173907443 40.83700142973442, -73.89063712157571 40.83693440696631, -73.89074353258172 40.836886859956465, -73.89084614581161 40.83685303278889, -73.89095891655043 40.83681767258655, -73.89106303169406 40.836791864648134, -73.89114370317918 40.83677602997953, -73.8912269127088 40.836761161177236, -73.89130828482759 40.836748960549315, -73.89139276806569 40.836744019878154, -73.8914420355827 40.836741706965434, -73.8929552886052 40.836659822024, -73.89313864586877 40.83664927707126, -73.8932542674594 40.836637718234144, -73.89334365591903 40.83662433943931, -73.89345095505888 40.836601871323154, -73.89354417320041 40.83658174220262, -73.89364227826951 40.836555836339144, -73.89378294873875 40.836510125404466, -73.8938687143605 40.836482884256895, -73.89397898421365 40.83643667414574, -73.89409098994513 40.83639030703592, -73.89426299832641 40.83630451986662, -73.89438079762708 40.83623515015251, -73.89450962589716 40.83614833071825, -73.8946343076999 40.836051003082964, -73.89476117886396 40.835947769164974, -73.89516369364598 40.83556111310111, -73.89701965285892 40.836423551648245, -73.89706262131055 40.83644224464771, -73.8971029126117 40.8364609307402, -73.89713759438467 40.83650049338018, -73.89717740956132 40.836530396480285, -73.89743859901036 40.83666345825952, -73.89748124657052 40.83668436423177, -73.89749824731135 40.83669377600058, -73.89750969183855 40.83670259210526, -73.89752108634323 40.836713865613454, -73.89753130975924 40.83672492556341, -73.89754044975277 40.83673966757189, -73.8975447386357 40.836754813194275, -73.8975452503762 40.83677281993369, -73.8975430627967 40.83679287289985, -73.8974963302405 40.83691378487419, -73.89743952181745 40.83705623399504, -73.89739832888588 40.837165220201676, -73.89734433351431 40.83726316304234, -73.89729034616366 40.837361951427475, -73.89719047176324 40.8375247915693, -73.89711036760991 40.83764332783423, -73.89693724472987 40.83786394112528, -73.89632718593731 40.83857979059398, -73.89616359670707 40.83879974669738, -73.89603502559076 40.8390046319462, -73.89483654048507 40.841018876843805, -73.89478126820671 40.84111013019595, -73.89465452365039 40.84128670487828, -73.89408733839826 40.841983394464165, -73.8894818682877 40.83925997936319)), ((-73.8978888991215 40.836861701814435, -73.89790333048066 40.83685886722704, -73.89792130449085 40.83685917219505, -73.89794004506956 40.83686215320722, -73.89796090927199 40.836868148248676, -73.89977388095105 40.83771584323486, -73.89658977140027 40.843416213301914, -73.89635488209073 40.84327493119544, -73.89619445701898 40.84318097533692, -73.89606645893633 40.84310556352067, -73.89577829022319 40.84294350465343, -73.89545703777225 40.84277851909333, -73.89536396463755 40.842738246578165, -73.89434325293284 40.842134716678956, -73.89491678325302 40.84142049902326, -73.89500838486218 40.8412911589871, -73.8951151365171 40.841130009205614, -73.89532029045068 40.84079059507733, -73.89550990317312 40.840463459129346, -73.89563961337619 40.840252576453615, -73.89577774978738 40.84001356170668, -73.89596920591131 40.839679254195886, -73.89631540569773 40.839103516342675, -73.89646575853155 40.83887341399446, -73.89658639357417 40.83871651657994, -73.89670925911916 40.83857208387112, -73.89693670174445 40.83830322599866, -73.89719520892008 40.83799332472207, -73.89723716702119 40.83793835092467, -73.89731980660297 40.837831886158234, -73.89741095907085 40.83770539020571, -73.89747268462128 40.837609386673456, -73.8975450894608 40.8374901571411, -73.89764166399522 40.83731989639238, -73.89769135412233 40.837214066668125, -73.89770931726997 40.83719065264029, -73.89773376343236 40.83716347669, -73.89775619240658 40.83714193964242, -73.89778347060246 40.837118922873536, -73.89785921750226 40.83688719734258, -73.8978660393038 40.83687821645037, -73.89787692615225 40.8368688222283, -73.8978888991215 40.836861701814435)), ((-73.89746361655733 40.83460381271507, -73.89747073621763 40.83460377131837, -73.89747783381263 40.834604199959855, -73.89748485481137 40.83460509408855, -73.90099366323886 40.83553183917014, -73.89987387683757 40.83753680828542, -73.89839387903395 40.83681964265142, -73.8983539446375 40.836792801549, -73.8983302217296 40.83677522820403, -73.89831403264299 40.836758306250495, -73.8982915626927 40.8367339469763, -73.89825283908726 40.83669925459542, -73.8981018657768 40.836634946680654, -73.89804998366301 40.836611317784914, -73.8980198605745 40.83659310386936, -73.89799127495631 40.83657046537591, -73.89797324877235 40.83654702036878, -73.89796049273988 40.83652129276571, -73.89795676982514 40.83649500224007, -73.89796364797317 40.836409048031804, -73.89797364584888 40.83619454289953, -73.89796974031141 40.83612189655892, -73.89796019756193 40.8360589840775, -73.89795361968432 40.836015671678666, -73.89794385188532 40.835961909820284, -73.89792832756001 40.83588592316513, -73.8979102584329 40.83581101484771, -73.89785666175207 40.835628856789164, -73.89777673738722 40.83541657633785, -73.8977356978997 40.835328794866534, -73.89755050449251 40.83499853440849, -73.89754399076405 40.8349900270526, -73.89754025700579 40.834980178628015, -73.89753835235332 40.8349628289072, -73.89753949349044 40.83494859940449, -73.8975372164351 40.834931327695756, -73.89753653755676 40.834916388787285, -73.89753298479273 40.834898338818114, -73.89752791795311 40.83488647660311, -73.8975179055169 40.83486948167653, -73.89750872165904 40.834853368169064, -73.89749966738079 40.83483626243093, -73.89740732203964 40.834707936378074, -73.897402751965 40.83470379093782, -73.8973986731785 40.83469935777612, -73.89739511644903 40.83469467384074, -73.89739210780718 40.83468977337359, -73.8973896720966 40.83468469151621, -73.89738782585309 40.834679468805575, -73.8973865832442 40.83467414397553, -73.89738595487786 40.834668757557864, -73.89738594424684 40.83466335097844, -73.89738655129119 40.834657962958474, -73.89738777239015 40.834652634917475, -73.89738959680909 40.83464740826861, -73.89739201263214 40.83464232172256, -73.89739500083105 40.83463741308312, -73.89739853882075 40.83463272015096, -73.89740259927667 40.83462827892141, -73.89740715250849 40.83462412178587, -73.89741216408348 40.834620281131535, -73.89741759483343 40.83461678483878, -73.89742340559297 40.83461365898701, -73.89742955245434 40.834610929651554, -73.89743598559426 40.83460861479788, -73.89744266230164 40.834606733298415, -73.8974495256452 40.83460529951034, -73.89745652818537 40.83460432329686, -73.89746361655733 40.83460381271507)), ((-73.89581527345798 40.8349827440431, -73.89682605281229 40.83450902266557, -73.89702615903308 40.83477623959616, -73.89709824990523 40.83488459472365, -73.89720257250822 40.83504636526044, -73.89726932686695 40.83516893793046, -73.89730015939647 40.83522241604681, -73.89734614454039 40.8353049008658, -73.89738095215344 40.83537634466214, -73.89743903538768 40.83550129312003, -73.89746429578058 40.83556321647475, -73.89749102227789 40.835653209540304, -73.89750334462157 40.835693170030154, -73.89751412759577 40.835727255224924, -73.89752928841045 40.835774117822524, -73.8975378043109 40.835826789908005, -73.89754815027864 40.83588598860106, -73.89755910683458 40.8359475183146, -73.89756271516863 40.83598881099164, -73.89756691091335 40.836028228460016, -73.89757122836619 40.836079468627666, -73.8975348033696 40.83619098682255, -73.89754520371898 40.83637581803822, -73.89754533440414 40.83638411530975, -73.89754465565525 40.83639294855686, -73.8975418131472 40.83640329541386, -73.89753789286088 40.836410580532885, -73.89753479728887 40.83641510636911, -73.897529847024 40.83641985658156, -73.8975224936325 40.83642372397506, -73.8975114862242 40.836426731751, -73.89750534097465 40.83642753853603, -73.89749821574394 40.83642799055553, -73.89748966690227 40.83642821708618, -73.89748008076444 40.836427581821496, -73.89747115795817 40.83642581612477, -73.89531894053606 40.83540167657042, -73.89555504851992 40.83515992503005, -73.89560490835021 40.835110240356826, -73.89563513848086 40.835085821088015, -73.89568613854053 40.835049132448916, -73.8957230230952 40.83502572322684, -73.89577077253023 40.83500162232692, -73.89581527345798 40.8349827440431)))",X010,5649,X010,X-03,X-03,X-03,X-03,"Crotona Park North to South, Fulton Av to Southern Blvd and Crotona Park East",203,17,42,"10456, 10457, 10460",X,127.5,False,Crotona Park,No,100005136,PARK,20100106000000.00000,18881208000000.00000,,DPR,True,Crotona Park,Y,Crotona Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/X010/,No,79,33,15,{308C0683-6CB1-4620-836B-6E76DF2CE6D3} +"MULTIPOLYGON (((-73.88041233354778 40.66549117563524, -73.88052936451615 40.66544016589498, -73.88124241708104 40.66639877121634, -73.88120839502459 40.66641360001709, -73.88092565155021 40.66629425399825, -73.88087861251798 40.66625867541463, -73.88064951688328 40.666085396477094, -73.88033246646246 40.665659158722086, -73.88048713884147 40.66559174293907, -73.88041233354778 40.66549117563524)))",B149A,6100,B149A,B-05,B-05,B-05,B-05,Elton St. bet. New Lots Ave. and Hegeman Ave.,305,42,75,11208,B,0.622,False,Elton Playground,Yes,100004244,PARK,20100106000000.00000,19360414000000.00000,,DPR,False,Elton Playground,Y,Elton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B149A/,No,60,19,8,{7D129868-1FD0-47FB-82D4-255AA5DBDE94} +"MULTIPOLYGON (((-74.09734236135799 40.62183259706267, -74.09792254864138 40.62136297078196, -74.09799028196807 40.621302236870115, -74.0993493126434 40.621480771170525, -74.09964692652 40.62119383455613, -74.1001710017305 40.62068855065166, -74.10036104138361 40.62073545423267, -74.10056283053247 40.620785256805355, -74.10076844575983 40.62083600391868, -74.10097406129985 40.62088675066403, -74.10117967715252 40.62093749704131, -74.10141956231585 40.620996701133585, -74.10191335439477 40.62111856689527, -74.10198590604129 40.62104570444002, -74.10222034316767 40.62081026663433, -74.10225761459597 40.62077283665134, -74.10248179549288 40.62062145755559, -74.10274700527121 40.62044237104659, -74.1030239918123 40.620254306879524, -74.10308406400469 40.62021139813167, -74.10314915973133 40.620164516248494, -74.10321642391834 40.620116070877614, -74.10328399847674 40.62006740275954, -74.10346878493206 40.61993100035784, -74.10356620598445 40.61985908887085, -74.10372234081447 40.619743835390096, -74.10382853787692 40.619665443714986, -74.10393473587308 40.619587052840615, -74.10404093125486 40.61950866096908, -74.10414712757039 40.61943026989826, -74.10426213906403 40.619345370772116, -74.10443574239893 40.61923501101133, -74.10459916831971 40.61913112058638, -74.1047374751881 40.61904319834506, -74.10486808888896 40.61896016558039, -74.10491926323895 40.61892763438446, -74.10497556606137 40.618891841297284, -74.10503067169823 40.61885681021657, -74.10509125878932 40.618818294484385, -74.10514508453738 40.61878407588814, -74.10538663151357 40.618630521152305, -74.10568457948095 40.61888054389255, -74.10571390899808 40.61890225190483, -74.1057482970523 40.61892651183607, -74.10578347939712 40.618950094734664, -74.10584414720236 40.61898803998624, -74.10589270626431 40.619016130250095, -74.10593196229694 40.6190374697543, -74.10597590363483 40.619059990011834, -74.10603031759612 40.61908599731738, -74.1061051502916 40.61911858927434, -74.10731308463497 40.61964483302192, -74.10716414262218 40.61976517442722, -74.10699332378572 40.619903189817144, -74.10682089080967 40.62004250950448, -74.10662147238219 40.62020363036338, -74.1065152860078 40.62028942508884, -74.10666987628468 40.62050362557829, -74.10677808023767 40.62065355193547, -74.10667049622192 40.620694836242784, -74.10643522798799 40.62078511541677, -74.10621702710363 40.62086884415908, -74.10600013196662 40.620952072393415, -74.10562377189046 40.62111711509225, -74.10536249413902 40.62123169040224, -74.10541200468673 40.62149841714986, -74.1045089034936 40.62158562506336, -74.1042768724854 40.6216080408097, -74.10406554736919 40.62162844809513, -74.10394719442296 40.62163987651935, -74.10384003167985 40.62165022849774, -74.10394276491577 40.622215120671925, -74.10402243821507 40.62265320423612, -74.10390115969268 40.62266623908482, -74.10377988230617 40.622679274705014, -74.10360862580157 40.62269768093119, -74.10343233655371 40.62271662904113, -74.10326866960484 40.62273421926436, -74.10298331129536 40.62276488943126, -74.10269795272087 40.622795557088715, -74.10274739434989 40.62306743957423, -74.10215171628607 40.623131457126185, -74.10236787415319 40.62433828860291, -74.10200495684835 40.624374808507255, -74.1016428048841 40.624411249144096, -74.10129471945316 40.624446272335014, -74.10090950231165 40.62448503181115, -74.10056295350498 40.62451989924879, -74.10022865976222 40.62455353205094, -74.10012872316734 40.624560381142516, -74.10072355452631 40.628336354293104, -74.09896417467615 40.628588465423135, -74.0989854804149 40.6287350175519, -74.09916413378481 40.62996391600638, -74.09871699500148 40.630010480355374, -74.09825145148034 40.630058959691596, -74.09807932042999 40.63007688382233, -74.09828075716435 40.63146739294473, -74.0982786593901 40.63147962289793, -74.09827183396676 40.63149531038579, -74.09826336509695 40.63150988353363, -74.09825356231207 40.631523238516685, -74.09824192556697 40.63153613940287, -74.0982282432865 40.63154858907384, -74.09821150197148 40.63156103685361, -74.09818592324686 40.63157780296677, -74.09815849331801 40.63159364852225, -74.09813074255308 40.63160754652039, -74.09810736205768 40.63161689765989, -74.0980788271007 40.631625628230836, -74.09805217705325 40.63163329457373, -74.09802296847903 40.63164292532459, -74.09799450376997 40.63165362795325, -74.09795851224791 40.63166850009126, -74.09792370265203 40.63168091189146, -74.09789069870376 40.63169060257374, -74.09784293146963 40.63170431492515, -74.09779460887619 40.631717359543266, -74.09771784154286 40.63173624657817, -74.09765352911475 40.63175037904544, -74.09758323393316 40.63176411132048, -74.09752375727925 40.63177436017115, -74.09747535113765 40.631782073648026, -74.09744855179368 40.63178634321633, -74.09738197867982 40.63179521751086, -74.097305358723 40.63180345009445, -74.09721286162254 40.63181060642295, -74.09719820799843 40.63181123656809, -74.09710962672828 40.631815045872806, -74.0970124242051 40.63181582853223, -74.08921212590413 40.630327462508575, -74.08924267492507 40.630313837347806, -74.08927386146844 40.63029877895667, -74.08930489278829 40.630282560807906, -74.08933563413734 40.63026518300633, -74.08936579726078 40.63024675744071, -74.08939789030259 40.63022550633601, -74.08942902435608 40.630203087993806, -74.08945123198859 40.630185893300336, -74.08946840372086 40.63017173547251, -74.08950026432606 40.63014379275603, -74.08952706176264 40.63011795038374, -74.08955544329758 40.63008790404455, -74.08957754373435 40.63006222741232, -74.08960237225256 40.63003045933369, -74.08970902819465 40.62985302686001, -74.08987136070269 40.62958022352943, -74.09019239234865 40.629030545051144, -74.09052820798313 40.62852148276693, -74.09089163299592 40.62798524156024, -74.09234194427869 40.62587972841954, -74.09734236135799 40.62183259706267)))",R022,5041,R022,R-01,R-01,R-01,R-01,"Victory Blvd., Clove Rd., Forest Ave.",501,49,120,10301,R,205.977,False,Silver Lake Park,No,100004242,PARK,20100106000000.00000,19010625000000.00000,927 VICTORY BOULEVARD,DPR,False,Silver Lake Park,Y,Silver Lake Park,Large Park,Managed Sites,http://www.nycgovparks.org/parks/R022/,No,63,24,11,{B9F29BF6-EDDF-4A9A-BC1A-86AC4130CB81} +"MULTIPOLYGON (((-73.87623969625949 40.84198786955525, -73.87641092296744 40.841715002702664, -73.87697845712002 40.84189551006415, -73.87691011415956 40.842169986007576, -73.87685601718104 40.84218389492448, -73.87623969625949 40.84198786955525)))",X245,4590,X245,X-06,X-06,X-06,X-06,E 180 St bet. the Bronx River and Devoe Av,206,15,48,10460,X,0.44,False,River Garden,No,100004905,PARK,20100106000000.00000,19790717000000.00000,1086 EAST 180 STREET,DPR,False,River Garden,Y,River Garden,Neighborhood Park,Garden,http://www.nycgovparks.org/parks/X245/,Yes,87,33,15,{7773338A-D84F-4706-B9F0-F8879C8B5FDD} +"MULTIPOLYGON (((-73.85834953138522 40.808413785960795, -73.85829402350053 40.808342724194986, -73.85828534227858 40.808331610369564, -73.85776540088514 40.80725113190941, -73.85779830310261 40.80725465022685, -73.8578634463999 40.80726161577943, -73.8579342154021 40.80726918255745, -73.85831403388327 40.80730979514346, -73.85840578939012 40.80696240428943, -73.85821446801569 40.80687579234757, -73.8583310585925 40.80685916838336, -73.85833941858094 40.80685797648979, -73.85838138922885 40.80685199200845, -73.85841062073132 40.80684782348226, -73.85841099181097 40.80685890098061, -73.85842206835126 40.80686148550966, -73.85841112998038 40.8068630308403, -73.85841662977785 40.80702754351622, -73.85842072792914 40.80715011551182, -73.858462746732 40.808406742629856, -73.85844425102161 40.80839296659796, -73.85834953138522 40.808413785960795)))",X118A,6380,X118A,X-09,X-09,X-09,X-09,Bronx River Ave. bet. C St. and Cornell Ave.,209,18,43,10473,X,1.16,False,Harding Park Beautification Project,No,100004769,PARK,20100106000000.00000,20010410000000.00000,,DPR,False,Harding Park Beautification Project,Y,Harding Park Beautification Project,Greenthumb,Garden,http://www.nycgovparks.org/parks/X118A/,Yes,85,34,15,{279BCA9F-1F0B-49C7-9E2C-30F4E841D67B} +"MULTIPOLYGON (((-73.85900593218396 40.70762233840129, -73.85900953000396 40.70762213749122, -73.85901858859813 40.70769318640405, -73.8590149919558 40.70769338821637, -73.85900593218396 40.70762233840129)))",Q409,5929,Q409,Q-06,Q-06,Q-06,Q-06,Woodhaven Blvd. bet. 76 Ave. and 78 Ave.,406,29,112,11385,Q,0.001,False,Strip,No,100000025,PARK,20090423000000.00000,19620131000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/Q409/,No,28,15,6,{84C1655B-5979-4674-9108-8C29A0544537} +"MULTIPOLYGON (((-73.93418260743378 40.70586979292326, -73.935253094416 40.705665023047025, -73.935349917584 40.70595361310957, -73.9336649937116 40.70627706195672, -73.93364097584951 40.70619131580498, -73.93390375978773 40.70614105185491, -73.93383506032782 40.70593627205997, -73.93418260743378 40.70586979292326)))",B132,5478,B132,B-01,B-01,B-01,B-01,Mc Kibbin St. bet. White St. and Bogart St.,301,34,90,11206,B,1.034,False,Gilbert Ramirez Park,Yes,100004549,PARK,20100106000000.00000,19340510000000.00000,62 WHITE STREET,DPR,False,Gilbert Ramirez Park,Y,Gilbert Ramirez Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B132/,No,53,18,7,{B643E1EE-51C8-4AE5-AF7A-FB927E02205A} +"MULTIPOLYGON (((-73.96263452668934 40.80125912674885, -73.96247769146369 40.80119295936198, -73.96240252487429 40.80116124720824, -73.96258616789879 40.8009123621817, -73.96329133400863 40.801209865260006, -73.96310769398546 40.801458750498064, -73.96303060277462 40.80142622678977, -73.96295243470944 40.80139324883213, -73.9628731009374 40.801359779673874, -73.96279265359166 40.801325839140404, -73.96263452668934 40.80125912674885)))",M200A,4870,M200A,M-07,M-07,M-07,M-07,"W. 108 St. to W. 109 St., Columbus Ave. and Amsterdam Ave.",107,7,24,10025,M,0.517,False,Anibal Aviles Playground,Yes,100004671,PLGD,20100106000000.00000,19500720000000.00000,111 WEST 108 STREET,DPR,False,Anibal Aviles Playground,N,Anibal Aviles Playground,JOP,Playground,http://www.nycgovparks.org/parks/M200A/,No,69,30,13,{1ADAACC1-D186-44F3-9A7F-A97DC7E24385} +"MULTIPOLYGON (((-73.8188135085339 40.61024670641109, -73.81883551185584 40.610291039634795, -73.81884988058394 40.610337155564885, -73.81888663487456 40.610631700798976, -73.81891554320185 40.61092675325338, -73.81897134662765 40.611124853600245, -73.81903435475866 40.61132169462054, -73.81910451961758 40.61151712493906, -73.81918178731917 40.61171099226946, -73.8192660980578 40.61190314791716, -73.81935738611725 40.612093443176974, -73.81945558222849 40.61228173113831, -73.8188284579997 40.61128098000775, -73.81878058083622 40.61120059047325, -73.81873992272519 40.61111792407286, -73.81870666813874 40.61103335752393, -73.81868096844063 40.61094727469453, -73.81866999402149 40.61085263040181, -73.81866756382487 40.610757635775315, -73.81867368841746 40.61066273749191, -73.81868833936969 40.610568383065434, -73.81870364890017 40.610487351115665, -73.81872458096872 40.61040705205143, -73.81875107703752 40.61032771360987, -73.81878306085765 40.61024955899664, -73.81879033722693 40.610247419118274, -73.81879797500345 40.61024621275129, -73.81880576849215 40.61024597379125, -73.8188135085339 40.61024670641109)))",Q225,6183,Q225,Q-14,Q-14,Q-14,Q-14,Cross Bay Blvd. bet. E. 4 Rd. and E. 6 Rd.,414,32,100,11693,Q,0.565,False,Broad Channel Veteran's Park,Yes,100000378,PARK,20090423000000.00000,19480510000000.00000,,DPR,False,Broad Channel Veteran's Park,Y,Broad Channel Veteran's Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q225/,No,23,15,5,{0902490E-D278-419B-8C45-28335D558FCB} +"MULTIPOLYGON (((-73.89255036392316 40.882398752331476, -73.89254833844551 40.88239079104002, -73.89253115582815 40.88239314782547, -73.89252794430546 40.88238052540824, -73.89252135439587 40.88238290736361, -73.89251207268627 40.88238584601428, -73.89250466470511 40.882387863410024, -73.8924928740976 40.882390508865086, -73.8924861033477 40.882391729922055, -73.89248024790581 40.88239261414873, -73.8923510238314 40.88234008984407, -73.8923063454227 40.88217881503651, -73.89245601466006 40.882185605592895, -73.89252000104564 40.88219037384478, -73.89258941544954 40.882192233136344, -73.89266130104753 40.882190545864496, -73.8927128583639 40.88218706029048, -73.89276640887579 40.88218140006783, -73.89361132913359 40.88208388931852, -73.8936403649017 40.88208044560205, -73.89366447133546 40.88207675060341, -73.89369833257342 40.88207024425874, -73.89372807882629 40.882063210031745, -73.89375039639368 40.882057085654516, -73.8937761422778 40.88204907250479, -73.89379511476459 40.882042485791736, -73.89381630123701 40.88203511858913, -73.8938417230421 40.88202497637484, -73.89387180214248 40.88201157327106, -73.89389032177759 40.88200250888566, -73.8939498327671 40.88196860350962, -73.89397259044529 40.881958022982644, -73.89399601702678 40.88196471440993, -73.8940283809053 40.881972327132836, -73.89407024420379 40.88197953614251, -73.89411491291867 40.88198411828822, -73.89415259245794 40.88198557291851, -73.89418970947949 40.88198487845835, -73.89422681089228 40.88198206242414, -73.89425107040684 40.88197905271401, -73.89429281618087 40.8819713962928, -73.89432295638699 40.881963516715814, -73.89441628276994 40.881937524921284, -73.89447514297602 40.88192173558076, -73.8945588497926 40.88189703337782, -73.8946668242782 40.881861102577275, -73.89474616762217 40.881831618270844, -73.89481468284653 40.881803935822155, -73.8948972556089 40.88176767908901, -73.89494643629149 40.88174449579717, -73.89501657091375 40.881709258714096, -73.89509935318765 40.88166414483411, -73.89513052012867 40.881645297144246, -73.89518448130949 40.88161579937529, -73.89522558781599 40.881595738724755, -73.89528015916088 40.88157200548362, -73.89532461145905 40.8815549194413, -73.89537228956148 40.881538667455914, -73.89541135534097 40.8815268596556, -73.8954486113917 40.88151680345134, -73.89548143269258 40.8815088818763, -73.896056546783 40.881387406850685, -73.89608972100261 40.88138132691687, -73.89613099441405 40.88137567298937, -73.89616649057369 40.88137258113888, -73.89620947206393 40.88137097731078, -73.89624543608993 40.88137142207024, -73.89628923181054 40.881374169198295, -73.89640538313323 40.88137753777904, -73.89639738793588 40.88145731557395, -73.89637900707928 40.88154436628346, -73.89634124264812 40.88165303918949, -73.89629110729943 40.88175236381381, -73.89624176580378 40.881827951385674, -73.89618437711468 40.88190008823444, -73.89611154345296 40.88197574106213, -73.89602565370218 40.88204921010685, -73.89595640493405 40.882099240001224, -73.89592863592071 40.88211740120336, -73.89588774464151 40.882142389762265, -73.89578617803676 40.8820400576878, -73.8955420206567 40.881965220801646, -73.8954116413485 40.88198310166457, -73.89535086623961 40.88199143641378, -73.89526775598814 40.88200283503401, -73.89510611255704 40.88202500321233, -73.89437012809947 40.88212593664531, -73.89295450172166 40.88232006329414, -73.89285817646845 40.88233327140845, -73.89264546780485 40.88236243863898, -73.89263102289708 40.882364468407445, -73.8926347072097 40.8823789489666, -73.89261950524673 40.88238103295911, -73.89262153191906 40.8823889942505, -73.89255036392316 40.882398752331476)))",X020,5732,X020,X-08,X-08,X-08,X-08,Jerome Park Resevoir and Sedgwick Av bet. W,208,11,50,"10463, 10468",X,3.02,False,Fort Independence Playground,Yes,100004980,PARK,20100106000000.00000,19151118000000.00000,,DPR,False,Fort Independence Playground,Y,Fort Independence Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X020/,No,81,34,13,{FC04B98E-2806-40E6-BC4E-225A521603DD} +"MULTIPOLYGON (((-73.87770626594677 40.6742032665093, -73.87785296893954 40.674181680297515, -73.87791554552146 40.674432213489595, -73.87777132055685 40.67445343590373, -73.87775306842265 40.67438036126465, -73.87775059104743 40.674380726042784, -73.87770626594677 40.6742032665093)))",B493,5281,B493,B-05,B-05,B-05,B-05,Pitkin Ave. and Montauk Ave.,305,37,75,11208,B,0.081,False,Upon This Rock Comm Garden,No,100004546,PARK,20100106000000.00000,20021120000000.00000,2556 Pitkin Av,DPR,False,Upon This Rock Comm Garden,N,Upon This Rock Comm Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B493/,No,54,18,8,{80E5813D-EC91-4C57-BC3B-030B69A729E6} +"MULTIPOLYGON (((-73.85136679666141 40.84863603391859, -73.85199263534477 40.84835312830334, -73.85287005123826 40.84948005262756, -73.85224975805696 40.8497645324145, -73.85136679666141 40.84863603391859)))",X163,4673,X163,X-11,X-11,X-11,X-11,Morris Park Ave. bet. Haight Ave. and Tomlinson Ave.,211,13,49,10461,X,2.181,False,Loreto Playground,Yes,100004914,PARK,20100106000000.00000,20101021000000.00000,1100 MORRIS PARK AVENUE,DPR,True,Loreto Playground,Y,Loreto Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/X163/,No,82,34,14,{5B6047C6-8189-4F79-808C-766CF89366CF} +"MULTIPOLYGON (((-73.91730797173041 40.70982592368706, -73.91773586460229 40.70940807421555, -73.91830624029191 40.70974133642582, -73.917873078789 40.71016527349682, -73.91730797173041 40.70982592368706)))",Q291,4913,Q291,Q-05,Q-05,Q-05,Q-05,Onderdonk Ave. bet. Starr St. and Willoughby Ave.,405,34,104,11385,Q,0.9,False,Starr Playground,Yes,100000269,PARK,20090423000000.00000,19400606000000.00000,210 ONDERDONK AVENUE,DPR,False,Starr Playground,Y,Starr Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q291/,No,37,12,7,{5A6FDE82-AE51-4D9E-AED0-B810A57A1F3D} +"MULTIPOLYGON (((-73.88162513303396 40.82480807645133, -73.8815944761306 40.82467568011524, -73.8812447992716 40.824722658730806, -73.88123672586285 40.824687788599476, -73.8809883057576 40.823614907919925, -73.88169430748744 40.82352687966453, -73.8819844179524 40.824759806199665, -73.88162513303396 40.82480807645133)))",X195A,5618,X195A,X-09,X-09,X-09,X-09,N/B Bruckner Blvd bet. Colgate Av and Close Av,209,17,43,10472,X,1.871,False,Colgate Close,Yes,100005199,PARK,20100106000000.00000,19580917000000.00000,,DPR,True,Colgate Close,Y,Colgate Close,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X195A/,No,85,32,15,{E19973AE-133A-4DC7-A193-69CDA64DC6F8} +"MULTIPOLYGON (((-74.00020282563159 40.59646464786879, -74.00015667374713 40.59646008049048, -74.00028855848369 40.59645351902743, -74.00042634069594 40.5964538022635, -74.00049777768405 40.59645440622692, -74.00069503313284 40.59646469907681, -74.00084297892079 40.59647452458918, -74.00100400389108 40.59648791136436, -74.00117872360545 40.5965064244493, -74.00137433868447 40.59653190436376, -74.00152108359087 40.59655650569234, -74.00164090002353 40.59657659200102, -74.00169261060661 40.59658526058181, -74.00182100167115 40.59660678471055, -74.0019102912941 40.59662679647454, -74.00198967253273 40.596641472744906, -74.00196479130565 40.59663901114429, -74.00196749078866 40.59663961624924, -74.00203549296747 40.596654856409316, -74.00213894065291 40.59668130197762, -74.00223884304928 40.596706840695646, -74.00235066073454 40.59672512537444, -74.00246096884227 40.59674812961545, -74.00256942478921 40.59677578138891, -74.00267569189666 40.59680799515811, -74.0027794405715 40.59684467007861, -74.00267590529859 40.59694467736578, -74.00259792711951 40.59696239963759, -74.00252314836102 40.596986855893775, -74.0024525672681 40.59701772013013, -74.00238712420008 40.597054579895435, -74.00232769099891 40.597096944395936, -74.00227506035763 40.597144248997644, -74.0019873117116 40.597421452272705, -74.00114726110931 40.59823073174869, -74.00064426459241 40.597952071701926, -74.00028448337666 40.598272281824755, -73.99887183696816 40.5972954429983, -73.99967268718922 40.59652709251886, -73.99971081400251 40.59651955794875, -73.9997387454645 40.596514038712755, -73.99979441935315 40.596503036240975, -73.99979541407478 40.596503903446, -73.99984034444614 40.59649541339035, -73.99995074821342 40.59647708695564, -74.00009144019836 40.59646332604426, -74.00015667374713 40.59646008049048, -74.00015315324428 40.59646688664491, -74.00016686200067 40.59646602122358, -74.00019890816871 40.59646471901694, -74.00020282563159 40.59646464786879)), ((-74.00361293299328 40.59603957070103, -74.00309341486584 40.59654139487346, -74.0028942784352 40.59648528309644, -74.00290189657902 40.596498849277005, -74.00266779186845 40.596421464939894, -74.00075963761574 40.59579069531526, -74.00072443499512 40.59577672123224, -74.00069276936588 40.595758483142404, -74.00066551849359 40.595736486236824, -74.00064344318582 40.59571134377027, -74.00062715539522 40.595683754547906, -74.00061710876867 40.59565448581508, -74.00061358210893 40.595624351644425, -74.00070924470975 40.59553256622229, -74.00082999065025 40.59541671317236, -74.00207275284235 40.59422428832026, -74.00245956178861 40.59491943472406, -74.00290903308245 40.595436029780544, -74.00322423520727 40.59570629433462, -74.0034440645659 40.59589478085305, -74.00361293299328 40.59603957070103)))",B007,6437,B007,B-11,B-11,B-11,B-11,Cropsey Ave. bet. 21 Ave. and Bay Pkwy.,311,43,62,11214,B,17.5,False,Bensonhurst Park,Yes,100004816,PARK,20100106000000.00000,18980101000000.00000,2122 CROPSEY AVENUE,DPR,True,Bensonhurst Park,Y,Bensonhurst Park,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B007/,Yes,"46, 47",23,11,{7C0440BF-F293-4975-B484-32B0A659096F} +"MULTIPOLYGON (((-73.91526347063268 40.6286081794995, -73.91503296676592 40.628903138620295, -73.91437819013389 40.629730231647, -73.91438441554018 40.629733025193175, -73.91438169253607 40.629736509078256, -73.91380204280684 40.62947767536523, -73.91381094319672 40.629475707197294, -73.91107262954708 40.628246956817776, -73.90234767141327 40.62433110989102, -73.89995589060712 40.623257459025574, -73.8988332378439 40.62275347990392, -73.89856476327583 40.62263295356652, -73.9016938751334 40.620583094865296, -73.90188983138428 40.620759722951334, -73.90363052867572 40.622335956866614, -73.90522827087396 40.6237826532336, -73.90556242795974 40.62408521046617, -73.90572922612262 40.62423623318618, -73.90587106848201 40.62436465918079, -73.90592790331178 40.624416119120816, -73.90622621952473 40.62455009553855, -73.90651136014611 40.62467815305128, -73.9066970531718 40.6247615480204, -73.90714505345923 40.62496274301045, -73.90730130194972 40.62503291338547, -73.90762619734096 40.625178818769406, -73.90815888564924 40.625418040148716, -73.90898691434147 40.6257898841397, -73.90982514948739 40.626166302092756, -73.91054663441358 40.626490283091016, -73.91526347063268 40.6286081794995)), ((-73.90128239800218 40.62517655167096, -73.90152223266199 40.624862146995426, -73.91482336179267 40.630885240436434, -73.91331747217777 40.63186070621347, -73.90057155488292 40.62610838935761, -73.90128239800218 40.62517655167096)), ((-73.9152651374123 40.62860986199888, -73.91526347063268 40.6286081794995, -73.91526568316729 40.62860917260272, -73.9152651374123 40.62860986199888)))",B406,5986,B406,B-18,B-18,B-18,B-18,"Bergen Ave., E. 76 St., Paerdegat Ave. North",318,46,63,"11234, 11236",B,118.795,False,Paerdegat Basin Park,No,100004302,PARK,20100106000000.00000,19981006000000.00000,,DPR,True,Paerdegat Basin Park,N,Paerdegat Basin Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/B406/,Yes,59,19,8,{F98B15ED-A5DC-4E90-B3C9-68FBB9F3A22E} +"MULTIPOLYGON (((-73.93708260848376 40.82535683101325, -73.93726763178238 40.82510403660155, -73.93750276760586 40.8252025713489, -73.93731774611115 40.82545536703492, -73.93708260848376 40.82535683101325)))",M138,5535,M138,M-10,M-10,M-10,M-10,"W. 150 St., W/s 7 Ave.",110,9,32,10039,M,0.172,False,Bill Bojangles Robinson Playground,Yes,100004692,PARK,20100106000000.00000,19341213000000.00000,,DPR,False,Bill Bojangles Robinson Playground,Y,Bill Bojangles Robinson Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M138/,No,71,30,13,{E40CAEF1-D800-41B2-85EF-E5EA7609A817} +"MULTIPOLYGON (((-73.94319197216295 40.79331732385121, -73.94284520379831 40.79317000976649, -73.9429020578631 40.79309367011402, -73.94303997533476 40.79290579402542, -73.94216754737865 40.79252931961895, -73.9423334690411 40.792294534228844, -73.94174364802403 40.79204697189425, -73.94175297013828 40.79203378247244, -73.94164246409714 40.7919886808375, -73.94169219151007 40.79192062546512, -73.94327156480512 40.792590310773214, -73.94330371984474 40.79260394486249, -73.94340061262427 40.79264502828689, -73.9434610532657 40.79267065467491, -73.94361848886295 40.79273740844618, -73.94361810215013 40.79273793595025, -73.9432270071189 40.79327360111213, -73.94322538442552 40.79327291503211, -73.94319297834778 40.793317059600035, -73.94319236006662 40.793316797249695, -73.94319197216295 40.79331732385121)))",M230,4927,M230,M-11,M-11,M-11,M-11,E. 109 St. bet. 2 Ave. and 3 Ave.,111,8,23,10029,M,1.58,False,Poor Richard's Playground,Yes,100004680,PLGD,20100106000000.00000,19550922000000.00000,2095 2 AVENUE,DPR/DOE,Part,Poor Richard's Playground,Y,Poor Richard's Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M230/,No,68,29,13,{09D5A07E-EC9B-4DD5-AA36-B2A04B02BF11} +"MULTIPOLYGON (((-73.82996978266254 40.57925545175201, -73.82997101306307 40.57925509966634, -73.82986526327797 40.57906616950155, -73.8297831848597 40.57891952968008, -73.829698722452 40.578768629478226, -73.84399445508201 40.57410350497084, -73.84439086203197 40.57482491535736, -73.84017659934219 40.57628642128007, -73.8401256193054 40.57630361432564, -73.84021389360808 40.57645633573285, -73.83985486000017 40.57657818123681, -73.83957188541326 40.576672270490086, -73.83930641500746 40.57675275227359, -73.83915476139585 40.57680342965861, -73.83902287750776 40.57684749947322, -73.83874261214152 40.57694115192493, -73.83848349958801 40.5770294383844, -73.83826797666454 40.577101455498884, -73.83792154308124 40.57721721524109, -73.83765806905208 40.577311364213784, -73.8370918390504 40.577500791544345, -73.83688598103296 40.57757286659928, -73.83622270290593 40.57779749385086, -73.8361794437284 40.5778098225071, -73.8361672313841 40.577788736392094, -73.83610855351948 40.57780781228464, -73.83612496758776 40.57783678490014, -73.83607993799751 40.57785246905404, -73.83600251149548 40.577879438263885, -73.83600227273043 40.577879035388044, -73.83598705528769 40.57785335858655, -73.83593158412768 40.57787233360519, -73.83593568064316 40.57787929511617, -73.83590018633309 40.57788941045727, -73.83523523332921 40.57811242578181, -73.83507879268821 40.578166892042454, -73.83441054255965 40.578390852420135, -73.83424905510329 40.57844959227698, -73.83358429300871 40.57867210934048, -73.8334269667184 40.578724972736275, -73.83276390033514 40.57894825115955, -73.8325974644592 40.579005287603806, -73.83193891363538 40.57922717563476, -73.83177498242445 40.57928240989844, -73.83112090271987 40.57950278330436, -73.83094878886122 40.579560783383684, -73.83025587785562 40.57978854927455, -73.83016545625256 40.57961845942883, -73.83011337623475 40.579520491682445, -73.83001954487561 40.57934557165765, -73.82996978266254 40.57925545175201)), ((-73.82996978266254 40.57925545175201, -73.82986472667207 40.579066325398365, -73.82986526327797 40.57906616950155, -73.82996978266254 40.57925545175201)))",Q050,69249,Q050,Q-14,Q-14,Q-14,Q-14,"Ocean Promenade, bet. Beach 126 St. and Beach 110 St.",414,32,100,11694,Q,31.5,False,Rockaway Beach,No,100000100,PARK,,19220615000000.00000,,DPR,False,Rockaway Beach,N,Rockaway Beach,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/Q050/,Yes,23,15,5,{3FCD2CED-C888-4326-A29A-2C77A6C0EFEA} +"MULTIPOLYGON (((-73.91681910118025 40.664808618968024, -73.91680377490168 40.66474783473511, -73.91645912049876 40.66479770950164, -73.91644088446577 40.66472537848664, -73.91678509721122 40.66467376095587, -73.91686075694913 40.66466241512424, -73.91692830754074 40.66493032342509, -73.91685255101478 40.66494128651156, -73.91683619970561 40.6648764357116, -73.91681910118025 40.664808618968024)))",B578,14692,B578,B-16,,,B-16,Blake Ave. bet. Legion St. and Saratoga Ave.,316,41,,11212,B,0.103,False,,,100036968,PARK,,20160209000000.00000,83 BLAKE AVENUE,DPR,False,Saratoga Blake Garden,,Saratoga Blake Garden,,Garden,,No,55,20,9,{53E75414-72F7-49EE-90CC-A13467FDD854} +"MULTIPOLYGON (((-73.98043580838919 40.69602817787951, -73.98042864329157 40.695967595578814, -73.98041902454648 40.69588625604474, -73.98041873421458 40.695883799397016, -73.98042135825969 40.69588437076841, -73.98042863412918 40.69588595420656, -73.98042871930997 40.69588597313179, -73.9804302167439 40.695887425012685, -73.98044440097219 40.69590117374825, -73.98046487136584 40.695914534527745, -73.98047434535776 40.69592071815428, -73.98048452675322 40.69592730713066, -73.9805028667551 40.695939177193736, -73.98052055723119 40.695946948911285, -73.98053994057481 40.69595546473571, -73.98057353922961 40.695968670125104, -73.98058415201128 40.695972841289176, -73.98060370914298 40.69597780551059, -73.98061783012464 40.69598139102908, -73.98063121051372 40.69598478731354, -73.98066829077149 40.69599130785578, -73.9806765227472 40.69599252222864, -73.98069887141541 40.69599581825272, -73.98071250185617 40.69599782868085, -73.98072082883593 40.695997830076024, -73.98074387888131 40.69599783393492, -73.98075375555344 40.69599862713752, -73.98077097584182 40.696000010501706, -73.98078442789435 40.69599700053391, -73.98079522242904 40.69599458535993, -73.98079864709585 40.69599646079854, -73.98080377877332 40.69599927035327, -73.98080663088851 40.696000831417216, -73.9808060443338 40.696003948893896, -73.98080544829834 40.696007120399756, -73.98080484515387 40.696010327024425, -73.98075670416887 40.69603067237024, -73.98064972724943 40.69606864615827, -73.98062384866968 40.69607542626598, -73.98050207929745 40.696107328871136, -73.98048926600823 40.6961106856115, -73.98048713526774 40.696110314239114, -73.9804710133351 40.696107506408005, -73.98046430877892 40.6961063391064, -73.98045147385464 40.69609873840209, -73.9804492522921 40.69609337817401, -73.98044292219862 40.696078111609644, -73.9804411192464 40.69606545279819, -73.98043580838919 40.69602817787951)))",B223MA,5789,B223MA,B-02,B-02,B-02,B-02,"Tillary St., Park Ave., Navy St.",302,35,88,11201,B,0.068,False,Arbor Place,Yes,100003711,PARK,20100106000000.00000,19380506000000.00000,,DPR/CDOT,False,Arbor Place,Y,Arbor Place,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223MA/,No,57,25,8,{3BAD455D-04D8-4067-81A0-7AB4579390C0} +"MULTIPOLYGON (((-73.91979846532999 40.664053674186356, -73.91987333591393 40.66373545322838, -73.91996126058939 40.664033829425165, -73.91979846532999 40.664053674186356)))",B182,6069,B182,B-16,B-16,B-16,B-16,"Blake Ave., Tapscott St., Howard Ave.",316,41,73,11212,B,0.191,False,Howard Malls,Yes,100007391,PARK,20110712000000.00000,20081202000000.00000,,DPR,False,Howard Malls,N,Howard Malls,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B182/,No,55,20,9,{0C4D8E10-0477-4176-AE81-A32C47AACC1D} +"MULTIPOLYGON (((-73.93430532603055 40.807425480384204, -73.933764898871 40.80677985059013, -73.93364810015132 40.80669512216277, -73.9336322980573 40.806678268342516, -73.93259041608717 40.8055690285482, -73.93271585592377 40.80561940908573, -73.93303742086317 40.80517985220967, -73.93433031610456 40.805724111718504, -73.93441734075407 40.80576074581507, -73.93442360369241 40.80576345627658, -73.93442982391372 40.80576622164387, -73.93443600260474 40.80576904011663, -73.93444213976653 40.80577191079431, -73.93444823184285 40.80577483457551, -73.93445428120475 40.805777810560954, -73.93446028548205 40.8057808387494, -73.93446624348974 40.80578391914017, -73.93447215641466 40.805787049932874, -73.93447802188568 40.805790232026744, -73.93448383990379 40.80579346452126, -73.93448960691455 40.805796746513934, -73.93449532765833 40.80580007800744, -73.9345009950254 40.805803458097245, -73.9345066149405 40.80580688768726, -73.93451218266489 40.80581036497373, -73.93451769701267 40.80581389085656, -73.93452315917155 40.80581746263492, -73.93452856558444 40.80582108210778, -73.93453391980765 40.805824748376686, -73.93453921828753 40.80582845963859, -73.93454446102324 40.80583221679403, -73.93454964801566 40.80583601894252, -73.93455477689554 40.805839865182236, -73.93455984766277 40.805843755513116, -73.93456486150345 40.80584768903544, -73.93456981486132 40.80585166664759, -73.93457471011011 40.80585568474902, -73.93457954369104 40.805859746939646, -73.93458431679271 40.805863849618206, -73.93458902941518 40.80586799278469, -73.93459367800216 40.80587217733757, -73.93459826492654 40.805876400576715, -73.93460278781725 40.80588066340127, -73.93460724786033 40.80588496491146, -73.9346116426863 40.80588930420541, -73.93461597229445 40.80589368218366, -73.93462023668644 40.805898097045166, -73.93462443467807 40.80590254788881, -73.93462856626931 40.8059070347146, -73.93463263027687 40.80591155572082, -73.93463662669893 40.805916112708594, -73.93464055553727 40.805920703876815, -73.93464441442265 40.805925328323646, -73.93464820454003 40.805929986049854, -73.93465192470521 40.80593467615423, -73.93465557491913 40.80593939773624, -73.93465915399746 40.80594414989483, -73.93466266193946 40.80594893353041, -73.93466609874672 40.805953746842015, -73.93466946323427 40.80595858982894, -73.93467275421865 40.805963460689604, -73.93467597406926 40.80596836032585, -73.9346791204176 40.80597328693525, -73.93468219207861 40.805978240517234, -73.93468518905307 40.80598322017125, -73.93468811252615 40.80598822589801, -73.93469096131535 40.80599325499537, -73.93469373423375 40.8059983092636, -73.93469643128232 40.806003387802264, -73.93469905246273 40.806008488810356, -73.93470159777587 40.80601361138736, -73.93470406722086 40.80601875643383, -73.93470645843017 40.806023921246876, -73.93470877258699 40.80602910762817, -73.9347110096941 40.80603431287623, -73.93471316856625 40.80603953699046, -73.93471524920353 40.80604477997078, -73.9347172516067 40.80605004091674, -73.93471917577855 40.806055317126855, -73.93472102053117 40.806060611301895, -73.93472278586809 40.806065919839924, -73.93472447178848 40.80607124364143, -73.93472607829318 40.806076581805925, -73.93472760538306 40.80608193343289, -73.93472905305804 40.80608729852235, -73.93473042013568 40.80609267437215, -73.93473170542917 40.80609806278256, -73.93473291249636 40.8061034610542, -73.93473403778106 40.80610887008551, -73.93473508128498 40.80611428807547, -73.93473604537837 40.80611971502542, -73.93473692769189 40.80612515003357, -73.93473772941233 40.8061305912996, -73.93473844935282 40.806136040623784, -73.93473908751693 40.80614149440413, -73.9347396450879 40.80614695444239, -73.93474011969823 40.80615241803564, -73.93474051490226 40.80615788608643, -73.93474082714648 40.80616335679178, -73.93474105761588 40.80616883015228, -73.9347412063123 40.80617430436699, -73.93474127442082 40.806179779436604, -73.93474125957023 40.806185256260214, -73.93474116413351 40.80619073213773, -73.93474098574121 40.80619620616729, -73.93474072557842 40.80620167834955, -73.93474038483033 40.806207148685175, -73.93473996112921 40.80621261447136, -73.93473945684353 40.80621807751043, -73.93473887079094 40.806223535100195, -73.93473820415632 40.806228987241326, -73.93473745456959 40.80623443393252, -73.93473662440265 40.80623987337413, -73.93473571365637 40.806245304665595, -73.93473472114478 40.806250728706765, -73.93473364805463 40.80625614369732, -73.9347324943869 40.80626154873678, -73.9347312577704 40.806266944724236, -73.9347299441342 40.80627232806111, -73.93472854873613 40.80627770054571, -73.93472707394807 40.80628306037831, -73.93472551858495 40.80628840755832, -73.93472388264847 40.80629374028473, -73.93472216850802 40.80629905945931, -73.93472037498019 40.80630436328044, -73.9347185020658 40.806309650847645, -73.93471655095092 40.80631492126103, -73.93471452044952 40.8063201754204, -73.93471241174746 40.80632541242603, -73.93471022603177 40.80633063047754, -73.93470796093298 40.80633582867304, -73.93470562000554 40.80634100791512, -73.9347031996968 40.806346165500166, -73.93470070593051 40.80635130323262, -73.9346981327837 40.80635641840756, -73.93469548499769 40.80636151012723, -73.93469276020055 40.80636658019126, -73.93468995957997 40.806371625898755, -73.93468708432106 40.80637664725044, -73.93468413560977 40.8063816433465, -73.93468111107596 40.806386614185584, -73.93467801309144 40.80639155796796, -73.93467484165544 40.8063964755942, -73.93467159558456 40.80640136526257, -73.93466827843591 40.80640622517415, -73.9346648878366 40.806411058029056, -73.93466142615945 40.806415861127064, -73.93465789340539 40.8064206335678, -73.93465428838925 40.80642537535048, -73.93465061348212 40.80643008557599, -73.93464686868406 40.806434764244294, -73.93464305399675 40.80643940955444, -73.93463916941937 40.80644402240686, -73.93463521732293 40.80644860190241, -73.93463119652415 40.80645314623945, -73.93462710820812 40.806457655418626, -73.93462295355901 40.806462130341096, -73.93461873139529 40.806466567404165, -73.93461444408541 40.80647096841018, -73.93461009044418 40.80647533335848, -73.93460567284457 40.80647965954889, -73.9346011901005 40.806483947881226, -73.93459664458399 40.80648819655589, -73.93459203629419 40.80649240647326, -73.93458736286253 40.80649657583108, -73.93458263139975 40.80650070463337, -73.93457783716636 40.80650479197686, -73.9345729801613 40.80650883876211, -73.93456806512694 40.806512843190845, -73.93456308969293 40.806516805261616, -73.93455805504622 40.8065207231741, -73.93455296355525 40.80652459873067, -73.93454781285247 40.80652842922848, -73.9345426076774 40.80653221557073, -73.93453734329057 40.80653595685417, -73.93453202561827 40.80653965218172, -73.9345266534755 40.80654330155263, -73.93452122686314 40.80654690406642, -73.93451574459606 40.80655045972245, -73.93451021259985 40.806553968524014, -73.93450462613579 40.80655742866748, -73.93449898994345 40.806560841055976, -73.93449330283951 40.80656420388787, -73.93448756600817 40.8065675180643, -73.93448177945129 40.80657078178428, -73.93447594553726 40.806573996850105, -73.93447006308365 40.806577160559655, -73.9344641344607 40.806580272914225, -73.93445815848239 40.80658333481368, -73.93445213870496 40.80658634535947, -73.93444607275997 40.80658930274931, -73.934439965387 40.80659220788634, -73.9344338130307 40.806595060768565, -73.93442761924732 40.806597860497476, -73.93442138403867 40.80660060527208, -73.93441510858804 40.806603296894096, -73.9344087941977 40.80660581649836, -73.93440243847265 40.8066081892975, -73.93439532280742 40.80661084892285, -73.93438591674071 40.80661428347387, -73.93437000296811 40.80662037799397, -73.93404665994383 40.806763200723324, -73.93418947815951 40.80695377467953, -73.93452244724176 40.80680861572541, -73.93456113178006 40.806791752444276, -73.93458189960344 40.80678345533182, -73.93461195074806 40.806773627231046, -73.93464730305988 40.80676484670596, -73.93468486104486 40.80675829435228, -73.9347072680902 40.80675579915687, -73.93471981361495 40.80675469414599, -73.93473240505233 40.806753901632675, -73.93474500446038 40.806753440505915, -73.93475762725714 40.80675329906795, -73.93477024973085 40.806753487210855, -73.9347828612236 40.806753996824156, -73.93479542618307 40.806754826987174, -73.93480796830197 40.806755987618835, -73.93482043663914 40.80675745977988, -73.93483282762261 40.80675926057777, -73.93484516022586 40.80676137831681, -73.93485737045992 40.8067638057568, -73.9348694583215 40.80676654649987, -73.93488142618354 40.8067695978458, -73.93489324205252 40.806772955274155, -73.93490490829973 40.806776617885774, -73.93491640360202 40.80678057666369, -73.93492773151132 40.80678483521192, -73.93493945947597 40.80678962077641, -73.93495156777703 40.80679449570367, -73.93496292174929 40.80679998164252, -73.9349738963784 40.806805578127594, -73.934984706142 40.80681131409591, -73.93499525593361 40.80681749386232, -73.93500553880979 40.806823946328336, -73.93502536821943 40.806838466336714, -73.93503228086328 40.806843466197776, -73.93504130107745 40.80685045194454, -73.93504999397217 40.806857672536296, -73.9350583631177 40.80686511266657, -73.93506639310394 40.80687277592886, -73.93507407447812 40.80688063350186, -73.93508138590357 40.8068886898762, -73.93508834279298 40.8068969387571, -73.93509491554643 40.80690535131201, -73.93510111007622 40.806913941051775, -73.9351069086345 40.80692267825008, -73.93511231121761 40.806931566508915, -73.93511731191741 40.8069405878151, -73.93512189415175 40.80694973225376, -73.93512607332445 40.80695900253528, -73.93512983050415 40.80696836713146, -73.93513316569155 40.80697782514192, -73.93513853104048 40.80699695924934, -73.9351421729752 40.807016353531445, -73.93514339433084 40.80702659918889, -73.93514258885786 40.80705780190574, -73.9351384613862 40.80709397620608, -73.93512949845037 40.807127886633786, -73.93511341004428 40.80716110146759, -73.93508248357551 40.80720800092285, -73.93501373634554 40.80730574010414, -73.93494669507864 40.807395418043946, -73.9349321606173 40.80741125230894, -73.93491502822285 40.80742964162015, -73.93488107111108 40.807459589228245, -73.9348493688837 40.80748145342646, -73.93481798384353 40.80749889184586, -73.93477495773486 40.80751706568176, -73.93472424306934 40.80753102081628, -73.93467668183298 40.80754032664142, -73.93463653474923 40.80754359971, -73.93459562293704 40.80754357650685, -73.93455108808311 40.807540041990435, -73.93450443884545 40.80753301502351, -73.93446028704997 40.80752080168666, -73.93442344653253 40.807507176908516, -73.93438522846208 40.80748799706079, -73.93434992003789 40.807465074585146, -73.93432657966883 40.80744633092581, -73.93430532603055 40.807425480384204)))",M208D,5338,M208D,M-11,M-11,M-11,M-11,"E. 128 St., 2 Ave., 3 Ave., Harlem River Drive",111,"8,9",25,10035,M,5.756,False,Harlem River Playground,No,100005148,PARK,20100106000000.00000,19470116000000.00000,175 EAST 128 STREET,DPR,True,Harlem River Park,Y,Harlem River Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/M208D/,No,68,"29, 30",13,{C639A475-055F-4E5B-9D79-9292D50F4A5D} +"MULTIPOLYGON (((-73.90324849746916 40.83802580491359, -73.90338795241361 40.83777697121203, -73.90386907450639 40.837931640463616, -73.9037290462514 40.83818029055977, -73.90324849746916 40.83802580491359)))",X320,4730,X320,X-03,X-03,X-03,X-03,E. 171 St. at Washington Ave.,203,16,42,10457,X,0.32,False,Jardin De La Familia,No,100003785,PARK,20100106000000.00000,20021120000000.00000,1507 - 1517 WASHINGTON AVENUE,DPR,False,Jardin De La Familia,Y,Jardin De La Familia,Greenthumb,Garden,http://www.nycgovparks.org/parks/X320/,No,79,33,15,{F5BEBB75-C1EA-4F3B-872D-EC424973B80C} +"MULTIPOLYGON (((-73.92676581151952 40.682125944912286, -73.92670947550283 40.681843242964334, -73.92679930177009 40.6818328469719, -73.926855635797 40.682115545272694, -73.92676581151952 40.682125944912286)))",B593,67200,B593,B-03,,,B-03,Decatur St. bet. Malcom X Blvd. and Patchen Ave.,303,36,81,11233,B,0.06,False,,No,100042700,PARK,,20180820000000.00000,406 DECATUR STREET,DPR,False,Bed-Stuy Farm,,Bed-Stuy Farm,,Garden,,No,56,25,8,{005B5EEB-7C1E-4F14-8345-9F389E95BCAC} +"MULTIPOLYGON (((-73.91393735494913 40.82194688710375, -73.9140709055123 40.821693314161244, -73.91413867542799 40.821714064355064, -73.91422531751542 40.82174059262645, -73.91417494106932 40.82183624189173, -73.91409176744692 40.82199416484529, -73.91400512508147 40.82196763737519, -73.91393735494913 40.82194688710375)))",X352,6423,X352,X-01,X-01,X-01,X-01,E. 158 St. bet. Melrose Ave. and Elton Ave.,201,17,40,10451,X,0.101,False,Family Group Garden,No,100008320,PARK,20100106000000.00000,20041217000000.00000,420 EAST 158 STREET,DPR,False,Family Group Garden,Y,Family Group Garden,,Garden,http://www.nycgovparks.org/parks/X352/,No,79,32,15,{D57C0CDC-3AE6-4AC8-9650-B0D88854B25C} +"MULTIPOLYGON (((-74.02263251784636 40.61963394177467, -74.02269896515146 40.619546636716734, -74.02270181621721 40.619548361551054, -74.02233669706374 40.62002809622108, -74.02233384244273 40.620026374980505, -74.02240177421223 40.61993711928229, -74.02252324224143 40.619777521514784, -74.02263251784636 40.61963394177467)))",B210T,5815,B210T,B-10,B-10,B-10,B-10,N/B Gowanus Exwy. bet. 85 St. and 86 St.,310,43,68,11209,B,0.004,False,Strip,No,100003845,PARK,20100106000000.00000,19651216000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210T/,No,46,22,11,{DA325033-0817-46CC-8608-C462EC026AB6} +"MULTIPOLYGON (((-73.77468422849847 40.67974949232713, -73.77528494086022 40.67956141345779, -73.77557243255775 40.68007586288148, -73.77470451282849 40.68033262421232, -73.7743941464919 40.6801342886051, -73.77482680913207 40.6800007600306, -73.77468422849847 40.67974949232713)))",Q426,5364,Q426,Q-12,Q-12,Q-12,Q-12,Baisley Blvd. 168 St. and Bedell St.,412,28,113,11434,Q,1.071,False,North Rochdale Playground,Yes,100000254,PARK,20090423000000.00000,19601021000000.00000,126-10 BAISLEY BOULEVARD,DPR/DOE,False,North Rochdale Playground,Y,North Rochdale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q426/,No,32,10,5,{75DC70F6-8C39-4CD5-A052-DC9AE2D41FC3} +"MULTIPOLYGON (((-73.93570590982004 40.59250991895734, -73.93566551865698 40.59229873897474, -73.93724788522779 40.592124018278135, -73.93727913561054 40.59228864377309, -73.93690862387056 40.59233013966689, -73.93689421566978 40.5922511468673, -73.93597220565917 40.59235134593327, -73.9359679927254 40.592313555832064, -73.93589451727418 40.59232258043237, -73.9359158916462 40.59244099584344, -73.93589222271898 40.592443639184474, -73.93589330857726 40.59246185377194, -73.93588350325392 40.59246599971309, -73.9358726063841 40.59247138956733, -73.93586225567613 40.59247636548465, -73.93585135800441 40.592482586519296, -73.93584427362019 40.59248756335786, -73.9358382775901 40.592494617410146, -73.93570590982004 40.59250991895734)))",B308,5167,B308,B-15,B-15,B-15,B-15,Ave. Y between Coyle St. and Batchelder St.,315,48,61,11235,B,0.444,False,Yak Playground,Yes,100004167,PARK,20100106000000.00000,19530219000000.00000,3000 AVENUE X,DPR/DOE,False,Yak Playground,Y,Yak Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B308/,No,41,19,9,{ACD74A2F-EE06-4171-8B9E-92D4C5F500DD} +"MULTIPOLYGON (((-73.92203078403303 40.77401856926656, -73.92195206501447 40.77396174285221, -73.92184928028114 40.773887540163805, -73.92192595898727 40.77382849662451, -73.92210651709352 40.773689463167955, -73.92262306568848 40.77406236106276, -73.92237819934027 40.77426936971931, -73.92225584858727 40.77418104513264, -73.92203078403303 40.77401856926656)))",Q066C,5872,Q066C,Q-01,Q-01,Q-01,Q-01,Hoyt Ave. bet. 23 St. and 24 St.,401,22,114,11102,Q,0.46,False,Triborough Bridge Playground C,Yes,100000324,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Triborough Bridge Playground C,Y,Triborough Bridge Playground C,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q066C/,No,36,12,"12, 14",{A8CC01CB-7BDA-4671-8763-FE2E7549F1EB} +"MULTIPOLYGON (((-73.90982839101922 40.8114624530198, -73.90999410591958 40.81100031095086, -73.91055233037139 40.811115245522785, -73.9104266097007 40.81158562119758, -73.90982839101922 40.8114624530198)))",X228,5421,X228,X-01,X-01,X-01,X-01,Jackson Av bet. E 147 St and E 145 St,201,8,40,10455,X,0.712,False,I-Am-Park,Yes,100004798,PARK,20100106000000.00000,19710517000000.00000,479 JACKSON AvNUE,DPR/DOE,False,I-Am-Park,Y,I-Am-Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X228/,No,84,29,15,{AA64427B-C5C8-467A-B0A1-A47569DF4ECD} +"MULTIPOLYGON (((-73.8909566166126 40.858169043576474, -73.8909666877542 40.85850149818536, -73.89076030811333 40.8583915105931, -73.8909566166126 40.858169043576474)))",X061,5675,X061,X-06,X-06,X-06,X-06,E. 188 St. at 3 Ave. and Washington Ave.,206,15,48,10458,X,0.072,False,Flood Triangle,Yes,100004564,PARK,20100106000000.00000,18490331000000.00000,,DPR,True,Flood Triangle,Y,Flood Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X061/,No,78,33,15,{816DD1B6-2859-4871-95BB-D935CC8EAA9B} +"MULTIPOLYGON (((-73.85529572655885 40.743502649151814, -73.85575138692576 40.743664401774076, -73.85575644860673 40.74366818034148, -73.85576061747206 40.74367254492178, -73.85576377893582 40.743677374703395, -73.85576584330498 40.74368253539853, -73.85576675523792 40.74368788555803, -73.85576648900818 40.74369327656602, -73.85576505204298 40.743698558947386, -73.85576248491171 40.74370358777117, -73.85575885658774 40.74370822354488, -73.85575426917119 40.743712338524155, -73.85574884959856 40.7437158176029, -73.85574274607353 40.74371856641324, -73.85573612807475 40.74372050772369, -73.85544453292738 40.74381368507774, -73.85543020949306 40.7438172484196, -73.85541530522737 40.74381893887447, -73.85540023818085 40.74381871104104, -73.85538543458458 40.74381656905641, -73.85537130988857 40.74381257467698, -73.85535826167312 40.74380684006527, -73.8553466589948 40.743799526876074, -73.8553368270062 40.743790840834116, -73.85532904341568 40.74378102632629, -73.85532352784497 40.74377036008484, -73.85520667720462 40.7435572232866, -73.85520575943592 40.74354913196872, -73.85520658096414 40.74354103473285, -73.85520912001097 40.74353314587249, -73.85521330981466 40.743525676022564, -73.85521903865126 40.7435188222536, -73.85522615575674 40.743512767179034, -73.85523447015866 40.74350767174949, -73.85524376252792 40.74350366986478, -73.8552537863585 40.74350087017626, -73.85526427391326 40.74349934438805, -73.85527494923161 40.74349913447705, -73.85528552695948 40.74350024638818, -73.85529572655885 40.743502649151814)))",Q029,6126,Q029,Q-04,Q-04,Q-04,Q-04,"108 St., Corona Ave. bet. 51 Ave. and 52 Ave.",404,21,110,11368,Q,0.23,False,William F Moore Park,Yes,100000300,PARK,20090423000000.00000,19240718000000.00000,,DPR,True,William F Moore Park,Y,William F Moore Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/Q029/,No,39,13,14,{36822A21-CD24-433F-BFF8-05A5695FFC22} +"MULTIPOLYGON (((-74.00533072358304 40.6831672260513, -74.00562574644847 40.68306356734688, -74.00565358188702 40.683108200859685, -74.005684509933 40.68315779514437, -74.00571693935512 40.68320979371816, -74.00574738598034 40.683258614467725, -74.00577831416575 40.68330820782575, -74.00581167364042 40.68336169667584, -74.0058390100645 40.683405529610425, -74.0058187963295 40.68344668322208, -74.00567989065723 40.683408001380975, -74.0056020277003 40.683386317219586, -74.005611625468 40.68336677559879, -74.00555489510229 40.68332647494801, -74.00555348852606 40.68332547544539, -74.00549862498809 40.68328650113366, -74.0054389171781 40.683244086160705, -74.00542878133771 40.683236886129535, -74.00538197290064 40.68320363414784, -74.00536225606712 40.68318962757327, -74.00533072358304 40.6831672260513)))",B410,5224,B410,B-06,B-06,B-06,B-06,"Hamilton Ave., Van Brunt St., Summit St.",306,39,76,11231,B,0.225,False,The Backyard,No,100004008,PARK,20100106000000.00000,19980513000000.00000,71 HAMILTON AVENUE,DPR,False,The Backyard,N,The Backyard,Greenthumb,Garden,http://www.nycgovparks.org/parks/B410/,No,51,26,7,{C24D8231-7630-4CC8-84E3-CC4A7296080A} +"MULTIPOLYGON (((-73.91996804286025 40.78252743750561, -73.91815996354653 40.78123833438933, -73.91906001292656 40.780501797328604, -73.91985181456033 40.78109359440233, -73.91972423783203 40.78119454915213, -73.92054895978255 40.7818015863781, -73.92097395310631 40.78143646565088, -73.92016809379699 40.78084331583709, -73.92005306123347 40.7809343444025, -73.9192519714475 40.780344054132506, -73.9239367905557 40.77650515033451, -73.92323678347692 40.775378289421816, -73.92568034844079 40.778610133244534, -73.92207592810111 40.78080868806568, -73.92118576920326 40.78160420856347, -73.92111271744285 40.78155057690217, -73.92069281940202 40.78191174303425, -73.92077199403364 40.781973983465626, -73.92007073931973 40.78260065565588, -73.91996804286025 40.78252743750561)), ((-73.9236373503859 40.77504806198249, -73.9240137234824 40.77473777593405, -73.92525759647997 40.77542282676091, -73.92520057389214 40.77546955377661, -73.928154332606 40.77710095162603, -73.92596710223847 40.77843521421751, -73.92570968349115 40.77807564178043, -73.92349640817145 40.775164254945196, -73.92357761739125 40.77509730690983, -73.9236373503859 40.77504806198249)))",Q004,4616,Q004,Q-01,Q-01,Q-01,Q-01,19 St. bet. Astoria Park S. and Ditmars Blvd.,401,22,114,11105,Q,59.956,False,Astoria Park,No,100000413,PARK,20090423000000.00000,19131009000000.00000,24-02 19 STREET,DPR,Part,Astoria Park,Y,Astoria Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q004/,Yes,36,12,"12, 14",{748390C6-EEB0-40EE-B62D-E336C4708DC3} +"MULTIPOLYGON (((-73.8736671937653 40.8237982472948, -73.87416520788358 40.823730906985496, -73.87419021992112 40.823837644927124, -73.8741866627508 40.8238381264138, -73.87416228336537 40.82373408975113, -73.87367138356117 40.82380046890759, -73.87369576220513 40.823904504772365, -73.87369220502767 40.8239049862438, -73.8736671937653 40.8237982472948)))",X195B,6309,X195B,X-09,X-09,X-09,X-09,S/B Bruckner Exwy. West of Morrison Ave.,209,18,43,10473,X,0.102,False,Strip,No,100004605,PARK,,19660310000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/X195B/,No,85,32,15,{1F6DE91E-3F36-45A1-BA01-E9B0D977D533} +"MULTIPOLYGON (((-73.90294527819808 40.86394106084367, -73.90319654500657 40.86361372046958, -73.90332961374757 40.86344036162432, -73.90347046650179 40.86326278853602, -73.90362591764334 40.863093133768636, -73.9038113485337 40.862881469802986, -73.90381670507922 40.86288143644777, -73.90393500693116 40.862880695747556, -73.90402541465177 40.86288012983495, -73.90408611228396 40.862879749872896, -73.903946618485 40.863042011118566, -73.903851973649 40.86315010546969, -73.90376412316375 40.86325044228306, -73.90367388079048 40.86335351001864, -73.90359780756837 40.86345250489808, -73.9033362086608 40.86379039934555, -73.90314995092929 40.86403111973473, -73.90294527819808 40.86394106084367)), ((-73.90106930850982 40.866434132459425, -73.90134694149754 40.86606824817055, -73.90150942011803 40.86585421089542, -73.90155880126512 40.865780649705364, -73.90186867231645 40.86538094941462, -73.90204919913451 40.86514312945899, -73.90228781619683 40.86482877985932, -73.9024045220639 40.864891448269425, -73.90225088603626 40.86509384649255, -73.90192759277724 40.86551263040511, -73.90132885343174 40.86630736043992, -73.90132989406804 40.86630711819757, -73.90117337935736 40.86651377449618, -73.90105088060609 40.86645846139581, -73.90106827211217 40.86643551022048, -73.90106930850982 40.866434132459425)), ((-73.89998299971472 40.86786574336014, -73.90095058511415 40.86659018181358, -73.90107503927179 40.866643619174575, -73.90101912899159 40.86671744019111, -73.90083854659221 40.866956967556476, -73.9005623404921 40.86732332815808, -73.90010918783535 40.86792438087706, -73.89997081284116 40.86789085104821, -73.89998299971472 40.86786574336014)), ((-73.9023783297831 40.864699734327125, -73.9028935082893 40.8640100308408, -73.90302196764745 40.864066368177255, -73.90250233490133 40.8647697991357, -73.9023783297831 40.864699734327125)))",X001,5701,X001,X-07,X-07,X-07,X-07,Aqueduct Ave. W. bet. W. Fordham Rd. and W. Kingsbridge Rd.,207,14,52,10468,X,4.926,False,Aqueduct Walk W. Fordham Rd - W. Kingsbridge Rd,No,100005096,PARK,20100106000000.00000,19300219000000.00000,,DPR,False,Aqueduct Walk,Y,Aqueduct Walk,Large Park,Community Park,http://www.nycgovparks.org/parks/X001/,No,78,33,13,{28C60098-30E9-49CF-BF65-8379A9D085B7} +"MULTIPOLYGON (((-73.88680853686338 40.66592256841416, -73.88753115156754 40.665820082459355, -73.88755907184996 40.665928817416486, -73.88721287306245 40.66597879577829, -73.88722699470587 40.666034027499705, -73.88724174257149 40.66609170563591, -73.88725606163915 40.66614770838866, -73.88725723884025 40.66615231208263, -73.88688117018357 40.666206636679206, -73.88680853686338 40.66592256841416)))",B449,5250,B449,B-05,B-05,B-05,B-05,Livonia Ave. between Hendrix St. and Schenck Ave.,305,42,75,11207,B,0.321,False,New Vision Garden,No,100005026,PARK,20100106000000.00000,20060814000000.00000,590 SCHENCK AVENUE,DPR,False,New Vision Garden,N,New Vision Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B449/,No,60,19,8,{20AAFCEB-C4F2-4B32-B82A-CC8A3F30779D} +"MULTIPOLYGON (((-73.8795093106913 40.876955531851294, -73.8795924202229 40.876949755513365, -73.87961024845372 40.87705616949505, -73.87961145085126 40.877064352585066, -73.87961274542741 40.87707404408891, -73.87961396537797 40.877084327135634, -73.87961522309524 40.87709668494649, -73.87961663127821 40.87711439721695, -73.87961761292927 40.87713311038533, -73.87961811749284 40.877157813103295, -73.87961764536873 40.87718464985982, -73.87961662752882 40.87720427043529, -73.8796142019704 40.87723212990943, -73.87961162770956 40.877253005042064, -73.87960824267617 40.877274799627735, -73.87960487732377 40.87729293104789, -73.87960167987355 40.8773080964351, -73.87959275910013 40.87734829752589, -73.87958198730108 40.877393233251944, -73.87955881322348 40.87746299780007, -73.8795390189364 40.87752302258913, -73.87946336330305 40.877747688316084, -73.87917885063577 40.877697146275636, -73.87918497919928 40.87768750486205, -73.87919143842647 40.87767739464001, -73.87919983286106 40.87766389610552, -73.87920684766256 40.877652285350415, -73.87921513290452 40.877638155458264, -73.87922237875203 40.87762539952312, -73.87923366796034 40.87760470371259, -73.87924116346329 40.87759035327301, -73.87924771329868 40.877577375988274, -73.87925462003606 40.87756319962643, -73.87926290349625 40.87754546597538, -73.87926997937234 40.87752960857812, -73.87928385408757 40.87749626450944, -73.8792890259681 40.87748293909291, -73.87929624980869 40.87746333671851, -73.87930440059559 40.87743959757009, -73.87931315809548 40.87741167178561, -73.87932120732563 40.877383090604816, -73.87932498451791 40.877370141032564, -73.87932907111886 40.87735339802709, -73.87933300719244 40.87733592186672, -73.87933693677671 40.8773167906021, -73.87934061159456 40.87729683692522, -73.87934365041278 40.87727824682284, -73.87934616873474 40.877260786288794, -73.87934771624252 40.87724875468332, -73.87935113549963 40.87722383724797, -73.87935269052134 40.87720308712374, -73.87935552612076 40.877182069992664, -73.87935720374924 40.87716763061753, -73.87935881817955 40.87714813673616, -73.87935989644716 40.87712729246241, -73.87936039829201 40.87710832510388, -73.87936014694041 40.87709516060432, -73.87935917705242 40.87707458163433, -73.87935794686653 40.87705884611817, -73.87935687697721 40.87704761230998, -73.87935540745397 40.87703366851501, -73.8793532709124 40.87701791764334, -73.8793509862154 40.87700470509297, -73.8795093106913 40.876955531851294)))",X215,4799,X215,X-07,X-07,X-07,X-07,Bainbridge Ave. bet. Van Cortlandt Ave.,207,11,52,10467,X,0.455,False,Valentine Varian House,No,100004557,PARK,20100106000000.00000,19640715000000.00000,3266 BAINBRIDGE AVENUE,DPR,True,Valentine Varian House,Y,Valentine Varian House,Historic House,Historic House Park,http://www.nycgovparks.org/parks/X215/,No,81,36,13,{F73430F0-025F-40EC-9879-B5237BE73240} +"MULTIPOLYGON (((-73.90291956363713 40.83613415114713, -73.90321753096303 40.83571213813057, -73.90361110352808 40.83512458350674, -73.90393059269957 40.835228046745605, -73.90351375789342 40.8359194027907, -73.90343944949676 40.83607211127658, -73.9034872151155 40.836085297574314, -73.90339085294973 40.83628333376214, -73.90291956363713 40.83613415114713)))",X222,6563,X222,X-03,X-03,X-03,X-03,3 Av bet. E 170 St and St Paul's Pl,203,16,42,10456,X,0.977,False,Gouverneur Playground,Yes,100005011,PARK,20100106000000.00000,,,DPR/NYCHA,False,Gouverneur Playground,Y,Gouverneur Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X222/,No,79,33,15,{0773369F-9BE4-4F62-B8F8-33B54D294070} +"MULTIPOLYGON (((-73.94060097472858 40.79981824984742, -73.94038699642141 40.799727920152044, -73.9404163942428 40.7996875371467, -73.94044839389919 40.799643586798666, -73.94047986910421 40.799600357470645, -73.94069371088572 40.79969065090536, -73.94066227960549 40.79973389832371, -73.94063032506044 40.79977786676371, -73.94060097472858 40.79981824984742)))",M392,5504,M392,M-11,M-11,M-11,M-11,Lexington Ave. at E. 118 St.,111,8,25,10035,M,0.082,False,El Gallo Garden,No,100008350,PARK,20130114000000.00000,20120508000000.00000,1895 LEXINGTON AVENUE,DPR,False,El Gallo Garden,,El Gallo Garden,,Garden,,No,68,29,13,{FBEDAAAD-D609-4CA5-9074-2527FACD3DB2} +"MULTIPOLYGON (((-74.09877666294912 40.5742396953028, -74.09879905234538 40.574215872471434, -74.09909252426996 40.57437482262128, -74.09877800132507 40.574709480938054, -74.0994974000167 40.57509849386457, -74.09914362655388 40.575474915671386, -74.09914336714202 40.57547519235642, -74.09813033498939 40.57492739391176, -74.09836093867207 40.57468203237685, -74.09840404129332 40.574636171349475, -74.0984459788579 40.574591549525934, -74.09848791636644 40.57454692768685, -74.0985298526379 40.57450230583337, -74.09856780571305 40.57446192345163, -74.09877666294912 40.5742396953028)))",R038,5053,R038,R-02B,R-02,R-02,R-02,"Lincoln Ave., Mason Ave., Midland Ave., Poultney St.",502,50,122,10306,R,1.681,False,Midland Playground,Yes,100005197,PARK,20100106000000.00000,19360415000000.00000,421A LINCOLN AVENUE,DPR,False,Midland Playground,Y,Midland Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R038/,No,64,24,11,{191E8598-3DA7-4CDF-805E-A316BEC418B7} +"MULTIPOLYGON (((-73.95251968347203 40.786673255047425, -73.95229630156538 40.78705946428815, -73.95219767367978 40.78720443561919, -73.95219688952473 40.787207512306196, -73.95219545029461 40.78721044824334, -73.95219339632703 40.78721316600419, -73.95219078336092 40.78721558906925, -73.95218768252815 40.78721765353238, -73.95218417680248 40.78721930359697, -73.95218036218368 40.78722049247675, -73.95217634295328 40.78722118959784, -73.95217222812413 40.78722137519454, -73.95216812788289 40.787221044809954, -73.95216415477654 40.787220206595435, -73.952160417787 40.78721888400917, -73.95202508431571 40.78716121099095, -73.9520201246278 40.78715828049665, -73.95201588451928 40.787154758672514, -73.95201248239546 40.78715074462302, -73.95201001769333 40.787146353653824, -73.95200855903963 40.78714171006268, -73.95200814780551 40.787136946240544, -73.95200879574104 40.78713219726747, -73.9520104849772 40.787127598211136, -73.95201316684293 40.787123281424996, -73.95211072106909 40.78699554089305, -73.95244126693383 40.7866398375338, -73.95244578304343 40.78663511716914, -73.95245129032705 40.78663105007659, -73.95245762638885 40.78662775415468, -73.95246460870828 40.78662532478116, -73.95247203345555 40.78662383481238, -73.95247968260617 40.78662332558141, -73.95248733459961 40.78662381320592, -73.9524947655275 40.78662528318563, -73.95250175979552 40.786627692207595, -73.95250811249045 40.78663097084889, -73.9525136388592 40.7866350226799, -73.95251817785847 40.78663973056923, -73.9525215968944 40.78664495578515, -73.95252379655437 40.78665054790317, -73.95252471297823 40.78665634300576, -73.95252431903691 40.78666217178764, -73.95252262551429 40.78666786405842, -73.95251968347203 40.786673255047425)), ((-73.95711369227197 40.780255818788284, -73.9571205823271 40.780255553002654, -73.9571282110594 40.780256125858784, -73.9571334074252 40.78025715616523, -73.95713841395903 40.78025863575133, -73.9571431370632 40.78026058169185, -73.95714811910437 40.78026330486172, -73.95715306263469 40.7802669645392, -73.9571572322588 40.78027114441891, -73.95715985987556 40.78027470598081, -73.95716187844288 40.7802784897403, -73.95716356328685 40.78028357730259, -73.95716419570726 40.78028938037279, -73.95716327432159 40.78029633100551, -73.95716106018844 40.780301907892024, -73.95715719577149 40.78030760032977, -73.9571566894848 40.780308289926076, -73.9570090514153 40.7805092621127, -73.95679681100279 40.780799786436084, -73.95679357124591 40.78080302432706, -73.95678814880702 40.780807111473315, -73.95678254935228 40.78081014676662, -73.95677637699798 40.780812453338704, -73.95676831901412 40.780814238712914, -73.95676072734389 40.78081487612158, -73.95675461942953 40.7808146351966, -73.95674935411918 40.78081390831649, -73.95674425143156 40.780812680818094, -73.9567387037869 40.780810726447335, -73.95673417152736 40.78080856083955, -73.95673003876865 40.780805975747704, -73.95672632560144 40.780803045921026, -73.95672273499514 40.78079928317593, -73.95671980089269 40.780795203700585, -73.95671770452589 40.780790838180174, -73.95671620971515 40.78078503118205, -73.95671595871214 40.780779343517345, -73.95671662592609 40.780775306817624, -73.95671814876131 40.780770804879715, -73.9567208410484 40.780765994508826, -73.95690928703809 40.78050815505475, -73.95707856151837 40.780276289428656, -73.957078683644 40.7802761228813, -73.95708146786585 40.78027196630036, -73.95708548063465 40.78026769761411, -73.95708970133136 40.78026431149714, -73.95709453415672 40.78026143979463, -73.95710050645313 40.780258808950116, -73.957106952116 40.780256939205735, -73.95711369227197 40.780255818788284)), ((-73.96095521140992 40.774996713333024, -73.96096331510385 40.774996387395134, -73.96096919373873 40.77499687205602, -73.96097490970418 40.7749980158295, -73.96098038844278 40.77499970072449, -73.96098547711311 40.77500198612254, -73.9609901449934 40.7750047414403, -73.96099422149115 40.775007996336704, -73.96099889738822 40.775013245148905, -73.9610023266895 40.775019262568364, -73.96100357415342 40.775023081122164, -73.96100419546546 40.77502811154068, -73.96100390229562 40.77503315785879, -73.96100269740083 40.77503755730741, -73.96100077357161 40.77504180702921, -73.96062355169558 40.77555976586012, -73.96061917484167 40.775563614013286, -73.96061341458547 40.77556718523906, -73.96060697602088 40.775570004312954, -73.960600684981 40.775571741933256, -73.96059412666517 40.775572744651605, -73.9605881824152 40.775572963241814, -73.96058225512053 40.77557255418712, -73.96057716912917 40.775571696069164, -73.96057226821337 40.775570358046366, -73.96056634326287 40.77556799129889, -73.9605604272255 40.775564576369064, -73.96055443751051 40.77555955941945, -73.9605499858593 40.77555369022011, -73.96054752039323 40.775548363803225, -73.96054642731067 40.77554391674675, -73.96054618800443 40.77553996075659, -73.96054667042156 40.77553545300538, -73.96054797131431 40.77553103738572, -73.96054974443554 40.77552731441426, -73.96093118456477 40.77500586060044, -73.96093742590269 40.77500191401191, -73.96094187388132 40.77499990289608, -73.96094732146129 40.77499816136918, -73.96095521140992 40.774996713333024)), ((-73.96043482673531 40.77570888929013, -73.9604413695002 40.77570816843283, -73.96044725319231 40.7757082154777, -73.9604523500444 40.775708752125674, -73.96045731867463 40.77570977590136, -73.96046275361654 40.775711483318304, -73.96046841783671 40.775714078709306, -73.9604735071786 40.77571729074712, -73.96047784990269 40.775721082452286, -73.9604810566583 40.775724829643174, -73.96048372867065 40.77572942942653, -73.96048560313146 40.775734604357496, -73.96048625509798 40.775739822993906, -73.96048597881314 40.77574429029277, -73.96048502414317 40.77574813511166, -73.96048260095353 40.77575340582314, -73.96010245735623 40.776272692835946, -73.96009838643506 40.77627589001149, -73.96009315117584 40.77627892559367, -73.96008805146792 40.77628110934719, -73.96008328152575 40.776282534090974, -73.96007688294783 40.77628370612964, -73.96006959284102 40.776284120536346, -73.9600623163418 40.776283572310085, -73.96005664171145 40.776282478934036, -73.9600518995659 40.776281008570436, -73.96004740760839 40.77627913306721, -73.96004271356097 40.77627647135503, -73.96003757370424 40.77627251996832, -73.96003412401808 40.776268925766665, -73.96003170599816 40.776265492212154, -73.96002961890909 40.776261333867865, -73.96002830782228 40.77625699659267, -73.96002779959836 40.77625312065325, -73.9600279417146 40.776249227829936, -73.96002923381205 40.776243757724984, -73.96003135230063 40.7762390200153, -73.96040996624424 40.775720988009425, -73.9604143549153 40.77571722541613, -73.96042067208862 40.77571340315138, -73.96042712243174 40.775710733575465, -73.96043482673531 40.77570888929013)), ((-73.96141671675045 40.77436270501277, -73.96142267526534 40.7743622081292, -73.96142941279514 40.77436242110239, -73.96143603024284 40.774363400362844, -73.96144369051112 40.77436568840249, -73.96144948731128 40.7743683045017, -73.96145411006896 40.77437120656782, -73.96145860555083 40.77437502530305, -73.9614622952752 40.774379313831076, -73.96146478751471 40.77438345877859, -73.9614666135885 40.77438839054269, -73.96146746186871 40.7743963188532, -73.96146670910973 40.77440141004443, -73.96146486193162 40.7744063369781, -73.96118709967527 40.77478793266757, -73.9610962656226 40.774910814358904, -73.961090173674 40.7749145583934, -73.9610840030284 40.774917158762534, -73.96107738860739 40.77491902237014, -73.96107046550755 40.77492005020654, -73.96106341731459 40.774920275652306, -73.96105718334091 40.77491975755754, -73.96105036470212 40.77491838198621, -73.96104321738196 40.77491594190906, -73.96103794647082 40.77491335748502, -73.96103324566266 40.77491020053382, -73.96102911132007 40.77490661423415, -73.96102609987263 40.774903124667965, -73.96102364056749 40.774899391252184, -73.96102182577762 40.77489545093879, -73.96102044174985 40.77489019333553, -73.96102011202733 40.77488483703356, -73.9610207615669 40.77488009340478, -73.96102227220408 40.77487546623211, -73.96118717957293 40.77465085005706, -73.96139332961629 40.774372252414786, -73.96139894295735 40.77436848659154, -73.96140401892386 40.7743660632378, -73.96141020221388 40.77436401846585, -73.96141671675045 40.77436270501277)), ((-73.96374127542784 40.771176224006936, -73.96374854012898 40.771175716608, -73.96375436760728 40.77117603001541, -73.96375937991505 40.77117679792034, -73.96376422376542 40.77117804574024, -73.96377070267735 40.771180594400775, -73.96377707791389 40.771184293871514, -73.96378195928929 40.77118841700935, -73.96378516840107 40.77119212809145, -73.96378735778231 40.77119564074221, -73.96378916300489 40.77119986466975, -73.96379026514595 40.77120534637937, -73.96379018513855 40.77121089345417, -73.96378935746833 40.771214730238405, -73.96378762463435 40.771218970163574, -73.96378555578626 40.771222512993575, -73.96341247262116 40.771735021888006, -73.96340911173615 40.77173805641694, -73.96340531276373 40.771740772929, -73.96340044425266 40.77174338464287, -73.96339377655322 40.77174589672963, -73.96338444881367 40.77174781093706, -73.96337702302334 40.7717481966939, -73.9633696297917 40.77174753247394, -73.96336316795 40.771746178764204, -73.96335775823614 40.77174428148481, -73.96335270651848 40.771741876435186, -73.9633487138177 40.77173932403973, -73.96334423497237 40.77173553419811, -73.96334022453986 40.7717307665589, -73.96333736213116 40.77172554272972, -73.96333573531109 40.77172002122712, -73.96333550925401 40.771713238565276, -73.96333669563508 40.771707654022094, -73.96333916586893 40.77170231482423, -73.96371379284838 40.77118970759539, -73.96371690261019 40.77118662074905, -73.96372050375298 40.77118386184055, -73.96372698719284 40.77118026997335, -73.96373353752074 40.77117782896998, -73.96374127542784 40.771176224006936)), ((-73.95903047575939 40.77763305248103, -73.95903936755548 40.77763270174461, -73.95904672935893 40.7776334544797, -73.95905310390837 40.77763499660413, -73.95905909776533 40.77763724998978, -73.9590650838464 40.77764059117928, -73.95907028056074 40.77764462547493, -73.95907332063045 40.777647837746194, -73.95907579903795 40.77765131636664, -73.95907773004087 40.777654992002674, -73.95907902837263 40.777658825001915, -73.95907976598971 40.77766330976573, -73.9590796779208 40.77766783025644, -73.9590785707954 40.77767284386054, -73.95907648767427 40.77767767431606, -73.95889556052609 40.777927263395654, -73.95871325558676 40.778176727419144, -73.9587088704486 40.77818010723414, -73.95870329841641 40.778183355150276, -73.95869854450463 40.77818540569127, -73.95869348762507 40.778186986061264, -73.9586866895297 40.77818831546715, -73.95867892173246 40.778188853883925, -73.95867191620452 40.77818847766314, -73.95866508060135 40.77818725413026, -73.95865719508208 40.778184694775355, -73.95865065687684 40.7781814650291, -73.95864551320555 40.77817782965641, -73.95864113749546 40.77817365335728, -73.9586383535223 40.77817007916483, -73.95863618806288 40.77816626476021, -73.95863445070952 40.778161704893314, -73.95863355806618 40.778157006652265, -73.95863352429322 40.77815225829142, -73.95863418431122 40.77814813422769, -73.95863552304866 40.778144105860875, -73.95883161052812 40.77788011367627, -73.95900355787934 40.77764507902252, -73.9590091578814 40.777640557791194, -73.95901455201634 40.77763754933039, -73.95902187451321 40.77763480180031, -73.95903047575939 40.77763305248103)), ((-73.96424451105571 40.77047617692496, -73.96426231583888 40.77046984470633, -73.96428731559689 40.770473596750655, -73.9643009474455 40.77048281762671, -73.96430434739366 40.77049952301698, -73.96430547974974 40.770506146569815, -73.96429915277179 40.77052075797769, -73.96427253054932 40.7705562304575, -73.9642386794322 40.770602804794045, -73.96420483418963 40.77064938002261, -73.96417099008418 40.77069595524134, -73.96413714119304 40.77074253134876, -73.96410329462496 40.7707891047452, -73.96406945037701 40.7708356808336, -73.96403560134381 40.77088225691028, -73.96400175226425 40.77092883117565, -73.96396790550628 40.7709754054315, -73.96395403086252 40.77099448996012, -73.96393448795477 40.771021107223746, -73.96392942051277 40.77102592783251, -73.9639232685192 40.77102995115601, -73.96391822374041 40.77103229088482, -73.96391347550261 40.77103385267149, -73.96390852021307 40.771034985753545, -73.96390341476057 40.77103562801403, -73.96389824914506 40.771035817302305, -73.96389236250712 40.77103540662925, -73.96388450788432 40.77103385440139, -73.96387843143306 40.771031807453724, -73.96387407132987 40.77102969080455, -73.96386953515294 40.77102681227427, -73.96386557014233 40.7710234782683, -73.96386190409913 40.77101926276325, -73.96385911358678 40.77101467742586, -73.9638573620177 40.771009806054245, -73.96385656494597 40.77100310696041, -73.96385759077889 40.7709964219459, -73.96385984774057 40.77099107906742, -73.96387973120532 40.77096337231413, -73.96389495715013 40.77094247640521, -73.96392887144192 40.77089593100776, -73.96396279042416 40.77084938560156, -73.96399670580463 40.770802841984896, -73.96403062113865 40.77075629655689, -73.96406453879372 40.77070975201987, -73.96409845284896 40.7706632056704, -73.96413236922523 40.77061666021191, -73.96416628437011 40.7705701138422, -73.9642002006506 40.77052357016406, -73.96420284159923 40.77051994285665, -73.96422212470782 40.7704935974169, -73.96422745851079 40.77048452109887, -73.96424451105571 40.77047617692496)), ((-73.9623371114488 40.77309515816495, -73.9623424846566 40.773094724978186, -73.9623478812599 40.773094813190056, -73.96235398349081 40.77309550947174, -73.96236061352808 40.773097068607356, -73.9623668593664 40.7730993642286, -73.96237194891602 40.77310201697155, -73.96237699883311 40.77310563233909, -73.96238175442936 40.77311024176558, -73.96238437492006 40.773113831125485, -73.96238686909916 40.77311875408904, -73.9623884116521 40.77312449169711, -73.96238865439395 40.77313093217373, -73.96238794730753 40.77313500311695, -73.96238657102681 40.77313897208485, -73.96238459901716 40.773142794076286, -73.96202193109059 40.773638816219886, -73.96201768986896 40.773641981890655, -73.96201350123089 40.77364433262349, -73.96200898825097 40.77364630053551, -73.96200417821493 40.77364781269491, -73.96199770642691 40.77364908387179, -73.96198956845879 40.77364957106112, -73.9619814524705 40.7736489047129, -73.96197434506718 40.773647268855285, -73.96196898027667 40.77364532560046, -73.96196406120742 40.773642788160565, -73.96195910354766 40.77363937812038, -73.96195576847518 40.7736363405234, -73.96195262930705 40.77363250244397, -73.96194970531005 40.77362731368106, -73.96194810428261 40.773622379296874, -73.96194757414138 40.773617312892334, -73.96194805677031 40.77361224412077, -73.96195011179933 40.773606237544385, -73.96231338043363 40.773104288710044, -73.96231806928961 40.77310123663791, -73.96232468650778 40.77309823562426, -73.96233110889386 40.7730962440104, -73.9623371114488 40.77309515816495)), ((-73.96280289860373 40.77246095371211, -73.96281019904818 40.77246033742304, -73.96281752381503 40.772460709893714, -73.96282467988115 40.77246198011107, -73.96282944431502 40.77246346207521, -73.96283515932055 40.77246599343182, -73.96284030778524 40.77246914865411, -73.96284382653873 40.77247200528412, -73.96284757081497 40.77247614880563, -73.9628507744658 40.77248117374519, -73.96285258405977 40.77248601093064, -73.9628533894216 40.772490439864384, -73.96285338368456 40.77249435434938, -73.96285245462504 40.77249933203083, -73.96285025913323 40.77250466140071, -73.96284767940845 40.77250867951414, -73.96284747077681 40.77250896400586, -73.96283630427918 40.77252412127447, -73.96248113943443 40.77300621384419, -73.96247573859063 40.77300945929931, -73.96246899952828 40.77301220273811, -73.96246176582534 40.77301408243298, -73.96245496388613 40.773014896072546, -73.96244808065812 40.7730149244466, -73.96244277078614 40.77301438331471, -73.96243759031377 40.773013332539996, -73.96243261027686 40.77301183428044, -73.96242728244222 40.77300953986263, -73.96242182007646 40.773006353902694, -73.96241757667094 40.77300299994602, -73.96241360030034 40.772998726662706, -73.9624105137292 40.77299404754273, -73.9624086198208 40.77298962185309, -73.96240762353543 40.77298561879216, -73.96240730245839 40.77298155291631, -73.96240771729106 40.77297690825716, -73.96240920555492 40.772971799288605, -73.96241102120946 40.77296796463861, -73.96277736094125 40.77247321932202, -73.96278117576466 40.77246981395119, -73.96278561929276 40.77246688604992, -73.96279182776286 40.772463902887225, -73.96279721588945 40.772462111725396, -73.96280289860373 40.77246095371211)), ((-73.95297992434467 40.7859158160368, -73.95298877052103 40.785914570650355, -73.9529959950533 40.78591462042317, -73.95300308263076 40.78591567509919, -73.95301112887766 40.78591810883305, -73.95301914663503 40.78592230123371, -73.95302486690747 40.785926872708984, -73.95302842769904 40.785931009262164, -73.9530313692259 40.785936320717035, -73.9530332837873 40.785943017624774, -73.9530334437953 40.78594796054149, -73.95303226214381 40.785953653028976, -73.95302924715091 40.78596011289685, -73.95285713914872 40.78619626481472, -73.95267231101708 40.786449907082485, -73.95267201098142 40.7864503193888, -73.9526681293045 40.7864559171112, -73.95266389092687 40.786459973929354, -73.95265834586397 40.786463892433964, -73.95265393579966 40.78646613737282, -73.95264780072405 40.78646839601076, -73.95264128941152 40.78646993049081, -73.95263453699317 40.786470643614315, -73.95262847579718 40.78647063842161, -73.95262174936641 40.78646979458842, -73.95261454851438 40.78646801674011, -73.95260852814161 40.78646558651334, -73.95260252156184 40.786462088297554, -73.95259688782164 40.78645742948868, -73.95259293542492 40.78645252103189, -73.95259007685515 40.78644719249083, -73.95258856438565 40.78644155473106, -73.95258826636864 40.786435804007745, -73.95258901128001 40.78643123156902, -73.9525903291383 40.786427323935904, -73.95259228783401 40.786423575955105, -73.95259568297897 40.78641908475114, -73.95259608973886 40.78641853741369, -73.95279621818572 40.78614946964479, -73.95295607628728 40.785929725352766, -73.9529594375646 40.785926147232196, -73.95296589306126 40.78592136100117, -73.95297219815737 40.78591816319263, -73.95297992434467 40.7859158160368)), ((-73.96517746393214 40.76920779202209, -73.96518345383093 40.769207499367624, -73.96519018007164 40.769207940845654, -73.96519884808916 40.76920975167516, -73.96520495158268 40.769211940841544, -73.9652110604174 40.76921524303156, -73.9652159159706 40.76921880869043, -73.96521950411761 40.76922246761884, -73.96522245368273 40.76922644333167, -73.96522437528299 40.7692301611901, -73.965225847609 40.7692345858082, -73.96522650230908 40.76923969546265, -73.96522625237908 40.76924425463647, -73.96522467652292 40.76924982827752, -73.96522229090863 40.769254628141624, -73.96486266230643 40.769745523047796, -73.96485812425057 40.76974853474826, -73.96485308306623 40.769751042913676, -73.96484763353652 40.76975299714464, -73.96484114312156 40.76975447379092, -73.96483443516442 40.76975519664905, -73.96482916196103 40.769755204945085, -73.96482246070887 40.76975444557593, -73.96481390297212 40.76975228085409, -73.96480611463211 40.76974882144271, -73.96480094387039 40.76974549520449, -73.9647974702715 40.769742477456745, -73.96479447889689 40.76973917529717, -73.96479205975268 40.76973561216637, -73.96478981540929 40.76973075236399, -73.96478854953219 40.76972569294882, -73.96478837577126 40.76972054291654, -73.96478921351421 40.769715432815545, -73.96479141594038 40.769709962029665, -73.96514897261108 40.76922034272996, -73.96515515209848 40.769215377421595, -73.96516060450422 40.76921235247817, -73.96516662625933 40.76921003280082, -73.96517230408523 40.769208553188975, -73.96517746393214 40.76920779202209)), ((-73.96608801116594 40.767957795435734, -73.96609681063458 40.767957047005346, -73.96610416329706 40.76795752463461, -73.96611405209886 40.767959766195574, -73.96611994223375 40.76796210833678, -73.96612524453595 40.767965155399274, -73.96612989037774 40.76796877228729, -73.9661333434887 40.767972420342254, -73.96613637569716 40.76797691834882, -73.96613848864203 40.76798171235085, -73.96613956156395 40.767986699655474, -73.96613964071943 40.767991754205816, -73.96613898967085 40.76799565589686, -73.9661376931579 40.767999464646316, -73.96613479698156 40.76800462908408, -73.96613299895978 40.76800708512957, -73.96613169400028 40.768008869544246, -73.9657781284382 40.768491478240534, -73.96577467902034 40.76849445788288, -73.96577020387481 40.76849745252891, -73.96576522915335 40.76849994994834, -73.9657598460843 40.76850189793902, -73.9657541589173 40.76850325871072, -73.96574753280026 40.7685040239701, -73.96573934721135 40.76850395760059, -73.96573348231375 40.76850314270172, -73.9657285094955 40.76850193814982, -73.9657231355437 40.76849997705538, -73.96571755002039 40.768497157717796, -73.96571364511288 40.76849452528431, -73.9657093523721 40.76849060951767, -73.96570549479566 40.76848576816263, -73.96570287755708 40.76848046972093, -73.9657012894115 40.76847322109466, -73.96570152092 40.768467565100444, -73.96570283110842 40.768462566794916, -73.96570518466613 40.76845779392589, -73.96605474456886 40.76798039278404, -73.96606046453552 40.767972674451194, -73.96606339763764 40.76796943350197, -73.96606739083678 40.767966119023576, -73.96607251274493 40.7679628967288, -73.96607691748656 40.76796083136986, -73.96608162995398 40.7679592064476, -73.96608801116594 40.767957795435734)), ((-73.9647223699104 40.76983402127783, -73.96472762307447 40.76983384278544, -73.96473286293953 40.76983417397367, -73.96474016086863 40.769835493643775, -73.9647477341589 40.76983798045007, -73.96475337897556 40.769840801653196, -73.9647583483035 40.769844280917475, -73.96476257232891 40.76984828764864, -73.96476589118181 40.76985276146409, -73.9647682871696 40.76985756187999, -73.96476954980822 40.769862027862494, -73.96476996165653 40.76986715455441, -73.96476949257107 40.76987170825677, -73.96476835816449 40.769875610691734, -73.96476632572877 40.76987990907356, -73.96440869434136 40.770366680625294, -73.96440232288914 40.77037149364841, -73.96439547362336 40.77037497467907, -73.96438999565342 40.770376832525585, -73.96438349456467 40.77037820198281, -73.96437754940254 40.770378801681126, -73.96437229867142 40.770378778445554, -73.96436635059997 40.77037817416942, -73.96436127333602 40.770377151428285, -73.964355742818 40.77037538743243, -73.96435054896557 40.770373106651604, -73.96434640582875 40.77037065239848, -73.9643421766442 40.770367417382175, -73.96433897553962 40.77036425292319, -73.96433632417894 40.770360806776715, -73.96433354825318 40.77035551546028, -73.96433192614208 40.770349956150895, -73.96433158390131 40.77034540219948, -73.96433220374341 40.770340295636835, -73.96433381965362 40.77033531635348, -73.96469241293981 40.76984680105138, -73.96469639808346 40.76984338306102, -73.9647027974365 40.76983942730908, -73.96470934777562 40.769836648561, -73.96471572934351 40.7698349602705, -73.9647223699104 40.76983402127783)), ((-73.96326722496748 40.77182625968087, -73.96327316071991 40.77182579241085, -73.9632805932059 40.771826169389, -73.96328924618928 40.77182784348009, -73.96329535701656 40.77182994269879, -73.96330091427168 40.771832793660906, -73.96330735176748 40.77183750084014, -73.96331162878693 40.77184213799233, -73.96331454366411 40.77184673058604, -73.96331630498803 40.771851063467494, -73.96331726196236 40.77185553927286, -73.96331739449661 40.77186007424895, -73.96331653887559 40.771865131202254, -73.96331441445739 40.77187055875894, -73.96294964890114 40.77236784214838, -73.96294459242684 40.77237179823344, -73.96293876995165 40.77237508409756, -73.9629329587043 40.772377349695034, -73.96292674158416 40.77237887494809, -73.96292029744087 40.77237967882475, -73.96291449097714 40.77237973368776, -73.96290626636528 40.77237869906375, -73.9628984356387 40.77237653353414, -73.96289164428588 40.77237335527277, -73.9628862141941 40.7723696983818, -73.96288136752464 40.77236488183056, -73.9628782819649 40.77236050709302, -73.96287586998639 40.772354726887095, -73.96287491564556 40.77234981703673, -73.96287495837998 40.77234540188384, -73.96287579707466 40.77234103201255, -73.96287769729577 40.77233628066994, -73.96324123449205 40.771837585124985, -73.96324484404231 40.77183471547237, -73.96324943555037 40.77183182181927, -73.96325387499768 40.77182973496835, -73.9632600153601 40.771827678376226, -73.96326722496748 40.77182625968087)), ((-73.96654779267078 40.767330833471846, -73.9665542917027 40.76733052018231, -73.96656324661829 40.76733138006105, -73.96657273481667 40.76733400868322, -73.96657919545639 40.76733703444902, -73.96658354316341 40.76733994073523, -73.96658773408599 40.76734372856894, -73.96659113597349 40.767347947515, -73.96659338669298 40.76735200403653, -73.96659488165902 40.76735625574817, -73.96659558893111 40.76736062519743, -73.96659541352489 40.76736557341468, -73.96659405584748 40.76737097244151, -73.9665911571329 40.76737659974939, -73.9662376879457 40.767864528302155, -73.96623459142506 40.76786773228733, -73.96622932107428 40.767871753292596, -73.9662232705432 40.76787507437755, -73.96621722530007 40.767877309456324, -73.96621080851058 40.7678788294259, -73.96620490499622 40.767879521082214, -73.96619818220492 40.767879535319175, -73.96619226040242 40.7678789212392, -73.9661872235992 40.76787784365924, -73.96618238481467 40.767876332994895, -73.96617783407463 40.76787437036207, -73.96617250456886 40.76787125755722, -73.96616784455189 40.7678675749299, -73.96616402337142 40.767863371157105, -73.96616059024099 40.767857704179626, -73.96615868255446 40.76785221955192, -73.9661581083285 40.767847127034884, -73.96615867498885 40.76784146843615, -73.96616016267129 40.76783671151217, -73.9661625124392 40.767832296132184, -73.96651919763528 40.7673444732007, -73.96652372780085 40.76734018901969, -73.966529804616 40.76733628980291, -73.96653538803278 40.76733374750168, -73.96654144721663 40.76733193474638, -73.96654779267078 40.767330833471846)), ((-73.96188064637938 40.77372859383157, -73.96188971182798 40.773728132170795, -73.96189692280535 40.77372887026644, -73.9619031916767 40.773730320347944, -73.9619099774927 40.77373298357742, -73.96191714856374 40.773737222813885, -73.96192186649647 40.77374143332371, -73.96192621279144 40.77374718537148, -73.96192821581818 40.77375134455571, -73.96192937654243 40.77375568536327, -73.96192978354657 40.77376065717428, -73.96192887645648 40.77376642189416, -73.96192646838506 40.77377250939864, -73.96156090319356 40.774272901030294, -73.96155689165562 40.77427616041275, -73.9615523260173 40.774278963955744, -73.96154729159488 40.77428126035904, -73.96154118302266 40.77428316648592, -73.96153477162227 40.77428435661157, -73.96152892333535 40.77428475268138, -73.96152305882381 40.77428452739855, -73.96151729298329 40.7742836889059, -73.96151241102572 40.77428247249705, -73.96150713860227 40.774280510341164, -73.96150166885306 40.77427769804444, -73.96149785141847 40.7742750835097, -73.96149450326209 40.77427212063707, -73.9614912728167 40.77426839417726, -73.96148850837615 40.77426383490801, -73.96148667513233 40.77425901480407, -73.9614859429568 40.77425514689964, -73.96148586703616 40.77425124139345, -73.9614865246495 40.774246806636775, -73.96148851303496 40.774241441204914, -73.96185291240529 40.77374212821696, -73.96185831781096 40.77373727899718, -73.96186605421087 40.77373269889853, -73.96187257406652 40.77373024718566, -73.96188064637938 40.77372859383157)), ((-73.95573246662158 40.78214907632485, -73.95573876710495 40.78214851593125, -73.95574426986711 40.78214860809479, -73.95575011457525 40.782149340646164, -73.95575647529147 40.78215084242383, -73.95576180740426 40.782152802161676, -73.95576730595972 40.78215566066397, -73.9557726664155 40.78215953938155, -73.95577669400654 40.782163574274705, -73.9557797948854 40.78216805366, -73.95578238780452 40.782173916021016, -73.95578336146134 40.78217949050066, -73.95578314804024 40.78218511225136, -73.95578203150755 40.782189533286704, -73.9557798177274 40.78219430959923, -73.9557774946086 40.78219782606772, -73.95560297994137 40.78243739869581, -73.95542446245726 40.782681818704866, -73.95542338814673 40.78268328970913, -73.95541943547487 40.78268766281748, -73.95541508655008 40.782691113658586, -73.95541006392432 40.78269398791781, -73.95540517334479 40.78269604637328, -73.95539993366972 40.782697526571425, -73.9553930973029 40.7826986099305, -73.95538751608805 40.782698843701496, -73.95538183105593 40.78269842817026, -73.95537518701946 40.78269712977573, -73.95536818357324 40.78269473533105, -73.95536248610198 40.78269166961751, -73.9553570807867 40.78268752611631, -73.95535316123615 40.78268313285099, -73.95534980438113 40.78267701894479, -73.95534812145762 40.78266918392779, -73.95534875732451 40.78266257899408, -73.95535035027211 40.78265795733595, -73.95535258127825 40.782654061729374, -73.95535357261963 40.78265265372877, -73.95552496744016 40.782409044232836, -73.9557021428331 40.782166309281756, -73.95570282583056 40.78216537212192, -73.95570650469128 40.78216115108311, -73.95571042229379 40.78215777570712, -73.95571496034775 40.78215487963633, -73.95572060238445 40.782152187502994, -73.95572603177028 40.78215038768493, -73.95573246662158 40.78214907632485)), ((-73.9599580989983 40.77636409510175, -73.95996381966346 40.776363499155806, -73.95997030753264 40.776363568047024, -73.9599780954298 40.776364691877845, -73.95998547519162 40.77636688446297, -73.95999241828532 40.77637031778855, -73.95999885949799 40.7763750944893, -73.96000338377202 40.77638036850223, -73.96000673585738 40.77638671730821, -73.96000797438184 40.77639156154134, -73.96000800258345 40.77639785876547, -73.96000650748587 40.77640405010215, -73.96000420427124 40.77640866347783, -73.9596412711412 40.77690642838063, -73.9596359961466 40.77691041035597, -73.95962923479519 40.77691390373801, -73.95962102876739 40.77691654563861, -73.9596130249564 40.77691780533816, -73.95960410978236 40.77691780131267, -73.95959751692116 40.77691692551385, -73.9595912041169 40.77691523395759, -73.95958467870611 40.77691252385816, -73.95957993966711 40.77690978196686, -73.95957579677994 40.77690653600309, -73.95957112432505 40.776901436619276, -73.9595679882904 40.77689631256032, -73.9595661460351 40.77689083595826, -73.95956548727128 40.77688520668603, -73.95956607908627 40.77688013886566, -73.95956783323535 40.77687464551547, -73.95993312204932 40.776376257612284, -73.95993820643271 40.77637200090349, -73.95994601186553 40.77636760466191, -73.95995254381538 40.77636528633714, -73.9599580989983 40.77636409510175)), ((-73.95482370626993 40.78340211937504, -73.95483005511988 40.78340204892301, -73.95483633828911 40.783402748373796, -73.95484266713653 40.78340422227357, -73.95484871581274 40.78340655514173, -73.95485443222664 40.78340969472887, -73.95485886776848 40.7834131480891, -73.9548622228659 40.78341660012542, -73.95486486809767 40.78342039317379, -73.95486736284718 40.783425971857845, -73.95486847961975 40.78343180394366, -73.95486801460409 40.78343795238656, -73.95486582325528 40.78344443333896, -73.95486312391739 40.783448801515576, -73.95486260572143 40.7834495127089, -73.95469095045202 40.78368535065228, -73.95451124261803 40.783933431074225, -73.95451051333401 40.78393443844762, -73.95450764165679 40.783937824100356, -73.95450374866905 40.78394134352456, -73.9544974005817 40.783945422991785, -73.95449087914773 40.78394832273321, -73.95448378730914 40.78395030733934, -73.95447635255853 40.78395133547696, -73.95447030215615 40.78395147356502, -73.95446429487446 40.78395092278612, -73.95445771353589 40.78394960185122, -73.95445149999615 40.78394749312247, -73.95444577028299 40.78394470470594, -73.95444020007052 40.78394082134233, -73.95443513649941 40.7839358125518, -73.9544314511908 40.78393015234292, -73.954429317748 40.78392464223085, -73.95442856265785 40.78392007909092, -73.95442883788564 40.78391433760186, -73.9544305658646 40.78390815904352, -73.95443384081567 40.78390235480494, -73.95443544639183 40.783900189733515, -73.95462272885014 40.783647719764474, -73.95479163537016 40.78341769358098, -73.95479525613398 40.783413728291656, -73.95480063991751 40.78340948633923, -73.95480576212476 40.78340663195697, -73.95481076290802 40.78340463840642, -73.95481675974763 40.783403050471875, -73.95482370626993 40.78340211937504)), ((-73.956190369077 40.781522455211466, -73.9561976114169 40.781521726757006, -73.95620491833168 40.78152188261942, -73.95620995150416 40.7815225995306, -73.95621618297727 40.78152420028915, -73.9562232938376 40.781527047676015, -73.95622739361825 40.781529377931186, -73.9562315580331 40.7815325033539, -73.95623517251968 40.781535999574416, -73.95623806648793 40.78153986382643, -73.95624030162027 40.78154397456572, -73.95624159161565 40.78154774095437, -73.95624230935958 40.7815515953749, -73.95624232776076 40.78155604296062, -73.95624126861173 40.7815615383213, -73.95623929537678 40.78156630843092, -73.95623594308175 40.78157124280858, -73.95623538697613 40.78157199901898, -73.95605948753548 40.78181100721954, -73.9558768774814 40.78205976320772, -73.95587253588872 40.78206297363521, -73.95586636745104 40.78206629772673, -73.95585885244611 40.78206900445837, -73.95585152073797 40.78207041813918, -73.95584398587688 40.7820709096278, -73.9558372039151 40.78207045047458, -73.95582987527627 40.78206902217152, -73.95582234370357 40.78206634299318, -73.95581559231742 40.782062654650936, -73.95581039317871 40.78205848063257, -73.95580517058448 40.78205216431121, -73.95580227917375 40.78204623609949, -73.95580103428898 40.78204056786368, -73.95580110719689 40.7820342454685, -73.95580199360182 40.782030271894, -73.95580354216003 40.782026418340195, -73.95580566517809 40.78202272619651, -73.95599679608064 40.781767779921964, -73.9561636086688 40.78153684676152, -73.95616847492306 40.781531984101385, -73.95617217403617 40.78152929300772, -73.95617628753715 40.78152697397874, -73.95618273739103 40.78152436227442, -73.956190369077 40.781522455211466)), ((-73.95949703463857 40.77699868377979, -73.95950455224497 40.776998306409865, -73.95951275153485 40.776998977463876, -73.95951826858706 40.77700020318503, -73.95952350928631 40.77700199612542, -73.95952837533413 40.777004320230496, -73.95953327164467 40.77700752773885, -73.95953786173466 40.77701171938871, -73.9595420670983 40.77701742734948, -73.95954448711981 40.777023419242056, -73.95954539987265 40.77703019494311, -73.95954427751816 40.77703695282011, -73.95954084615981 40.77704411511252, -73.95935638175634 40.77729366677579, -73.95929362970158 40.77738015949581, -73.95917653134772 40.77754096581195, -73.95917261888175 40.77754442145454, -73.95916867730415 40.77754705582849, -73.95916237100364 40.77755013241148, -73.95915549422944 40.777552391135686, -73.95914819042983 40.77755364924997, -73.95914071305641 40.77755399149131, -73.9591340133436 40.77755341099296, -73.95912750007814 40.77755207143687, -73.95912137229769 40.777549931470546, -73.95911511126386 40.77754680540643, -73.95911072662061 40.77754369261485, -73.95910648348088 40.77753970638598, -73.95910254926706 40.77753420472108, -73.95910032401741 40.77752936463137, -73.95909931477827 40.7775254497892, -73.95909897250829 40.77752146584505, -73.95909923438303 40.77751747941386, -73.95910058079782 40.77751245688933, -73.95910388144117 40.777506078001224, -73.9591978175627 40.777380125609895, -73.9592982797944 40.77724550270604, -73.95947157217796 40.77701004006884, -73.9594765119396 40.77700607959522, -73.95948169983605 40.777003150284, -73.95948909451887 40.777000377535295, -73.95949703463857 40.77699868377979)), ((-73.95764315686104 40.77953474666245, -73.95765209639869 40.77953424656725, -73.9576620133824 40.779535410958445, -73.95767097096638 40.77953820220379, -73.95767854878953 40.77954233378934, -73.95768302680854 40.77954587890975, -73.95768700783222 40.77955042430537, -73.95768974505246 40.779554878293446, -73.95769159783791 40.77956043507189, -73.95769206684963 40.77956805349209, -73.95769010982484 40.77957553414531, -73.95768584668967 40.779582437630324, -73.95768516730851 40.77958336219656, -73.95751172029473 40.77981983236611, -73.95731747840293 40.78008535556889, -73.95731199592956 40.780090835794674, -73.95730650281386 40.78009443666842, -73.95729864527523 40.780097851162395, -73.95729074006717 40.78009985995445, -73.95728499296673 40.780100499882295, -73.95727918702532 40.780100530148104, -73.95727097341923 40.78009945550543, -73.95726380641284 40.78009750506173, -73.9572567078117 40.78009418317838, -73.95725101215609 40.780090345827325, -73.95724700348077 40.780086427156206, -73.95724292377449 40.780080590389176, -73.95724056331925 40.780074227466265, -73.9572398959822 40.78006929246732, -73.95724033392477 40.78006434076899, -73.95724239695257 40.78005791825319, -73.95724603508513 40.78005222032545, -73.95725150334853 40.78004673469451, -73.95725159464551 40.7800466104591, -73.95747566089354 40.779744229117604, -73.95761793811346 40.779546447519905, -73.95762176062719 40.77954317830195, -73.95762614082452 40.77954034423146, -73.95763099219418 40.779537997505685, -73.95763622586104 40.779536182216525, -73.95764315686104 40.77953474666245)), ((-73.96974592652293 40.76295181011596, -73.96975589873327 40.76295157229965, -73.96976341638893 40.76295268279374, -73.96976901043372 40.76295434569228, -73.96977363671104 40.76295637394136, -73.96977880014194 40.762959581091344, -73.96978322072718 40.76296337877709, -73.9697867692847 40.76296796417527, -73.96978958056435 40.76297391994759, -73.96979063544306 40.76297994549862, -73.96979002169142 40.76298575359052, -73.96978719623706 40.762992768678735, -73.9697724725016 40.76301380239842, -73.96975444009001 40.76303923781316, -73.96972303505392 40.76308348124635, -73.96969163116118 40.763127722870024, -73.96966022722637 40.76317196538534, -73.96962882206505 40.76321620879199, -73.96943206976084 40.763485206720986, -73.96942766095472 40.76348925782027, -73.96942368739586 40.76349201681129, -73.96941928410594 40.76349436956066, -73.96941313033477 40.763496764168885, -73.96940657422095 40.763498429261475, -73.96939897980593 40.7634992899276, -73.96939130292151 40.76349920414134, -73.96938599499693 40.763498530954855, -73.9693801307654 40.763497129112274, -73.96937388793836 40.763494868988204, -73.96936879646003 40.763492249868776, -73.96936271215905 40.76348779975991, -73.96935857007247 40.76348359240298, -73.96935484795947 40.76347783088723, -73.9693527068747 40.763472226479685, -73.96935190273794 40.76346700694311, -73.96935202660784 40.76346291598522, -73.96935283145575 40.76345886843266, -73.96935452121359 40.7634543753659, -73.96935701504005 40.76345010133552, -73.96951177775887 40.763243679278126, -73.96954677754273 40.76319671192776, -73.96958178082981 40.7631497454679, -73.96961678169923 40.76310277809596, -73.96965178251892 40.763055811613505, -73.96968678329002 40.76300884331914, -73.96970344877812 40.762986489981714, -73.96972040799889 40.762964073683726, -73.96972462365048 40.762960144090265, -73.96972906268873 40.76295720961264, -73.96973364827677 40.76295495145207, -73.96973851428481 40.76295328139427, -73.96974592652293 40.76295181011596)), ((-73.96928805392783 40.76357149165737, -73.9692953225087 40.76357095329229, -73.96930261199523 40.76357131003347, -73.96930831179642 40.763572302106695, -73.96931443165394 40.76357413356151, -73.96932070975001 40.76357697272237, -73.96932575121669 40.76358018616342, -73.96932962249497 40.76358351815928, -73.96933351564682 40.76358821712626, -73.96933636638367 40.763593330047634, -73.96933775481816 40.76359764923547, -73.96933834850813 40.76360207267033, -73.969338218807 40.76360596461514, -73.96933744365714 40.763609812263454, -73.9693355417618 40.76361459703676, -73.96933240803843 40.763619613812224, -73.96933223146041 40.763619853299346, -73.9693030971704 40.76365956227959, -73.9690296518604 40.76403298402288, -73.96901483920328 40.76405321346848, -73.96897552187079 40.764107265556284, -73.96897522322193 40.76410767610578, -73.96897207561602 40.764111877010606, -73.96896856835066 40.76411525115557, -73.96896390637757 40.76411854034206, -73.96895582491968 40.764122362605924, -73.96894820260181 40.76412447943807, -73.96894192042494 40.7641252350687, -73.96893485572429 40.764125270985176, -73.9689275748011 40.76412420372526, -73.96891875498662 40.764121483624606, -73.96891342543114 40.76411884641095, -73.96890921520118 40.76411597626855, -73.96890517118415 40.764112243487865, -73.96890190903821 40.76410809128312, -73.96889957203581 40.764103593534394, -73.96889799966922 40.76409754082137, -73.96889804069849 40.764090838379865, -73.96889986872671 40.76408454975217, -73.96890234255595 40.76408009562579, -73.96890573290628 40.76407600464991, -73.96890589171201 40.76407578587024, -73.96920756295253 40.76365953678517, -73.96925634909077 40.76359177696485, -73.96925640360605 40.763591700436514, -73.96925851693295 40.76358815391423, -73.96926205178353 40.763583939597055, -73.96926685505598 40.76357975263326, -73.96927078231498 40.763577258383584, -73.96927506234388 40.76357512172801, -73.96928103714981 40.76357303325092, -73.96928805392783 40.76357149165737)), ((-73.96837910690301 40.76482459357668, -73.96838497195282 40.764824473618226, -73.968391518847 40.76482509496139, -73.96839787233937 40.76482645376398, -73.96840321652067 40.76482829586006, -73.96840931455384 40.764831384460315, -73.96841514556483 40.76483561122418, -73.9684201315176 40.764841111969375, -73.96842288301394 40.76484567017469, -73.96842448106139 40.7648499624151, -73.96842528078423 40.76485438140777, -73.96842500547636 40.76486050476002, -73.96842372284074 40.764865424762796, -73.968421709795 40.764869615157004, -73.96841934651897 40.764873081449885, -73.96841915571216 40.76487334164328, -73.96836805861615 40.76494284653964, -73.96806212207842 40.76535899311277, -73.9680567723152 40.765363781410464, -73.9680517253857 40.76536686423729, -73.96804612327708 40.76536933276618, -73.96804007145093 40.765371078965835, -73.96803194489013 40.76537220774427, -73.9680229709123 40.765372090889876, -73.96801426534647 40.76537042794389, -73.96800717449494 40.7653679189719, -73.96800267026136 40.76536554399247, -73.96799680142392 40.765361121788196, -73.96799211377203 40.76535595069244, -73.96798924643409 40.76535093678998, -73.96798777628644 40.76534670491315, -73.96798715539569 40.765342352604726, -73.96798746832732 40.765336892035336, -73.96798902361188 40.76533155427968, -73.96799177497961 40.765326503216585, -73.9683468503376 40.76484015443451, -73.96834976659352 40.764836946739614, -73.96835417658602 40.76483321716264, -73.96835994490917 40.764829781522884, -73.96836705012399 40.764826892855865, -73.968373320913 40.764825330401855, -73.96837910690301 40.76482459357668)), ((-73.95390050776732 40.78465872784947, -73.95390902766944 40.78465790369637, -73.95391688444906 40.784658326472034, -73.95392314369633 40.78465951223366, -73.95392968893665 40.7846617237804, -73.9539362274744 40.78466506185144, -73.95394131320194 40.78466889461727, -73.953945871001 40.78467377985811, -73.95394881278523 40.784678744597606, -73.95395083190243 40.78468508853662, -73.95395124435605 40.78468998112578, -73.9539503045029 40.78469565300881, -73.95394787761131 40.78470163136865, -73.95394448954046 40.78470643058792, -73.95394421205391 40.78470680868764, -73.95377115359047 40.784942511382944, -73.95358839920188 40.78519358056402, -73.95358271753122 40.7851982500769, -73.95357523676675 40.78520218315519, -73.95356756149732 40.78520471587496, -73.95356044636429 40.785205895366374, -73.9535517147531 40.785206099863366, -73.9535445240572 40.78520520817016, -73.95353667319606 40.78520300598087, -73.95352948415244 40.78519974776978, -73.95352507779597 40.785196842776465, -73.95352123804415 40.78519350396986, -73.95351770455478 40.78518930350682, -73.9535150361668 40.78518474859508, -73.95351362183332 40.78518101814791, -73.9535127932158 40.785176630570945, -73.95351284091686 40.7851710934072, -73.95351375147827 40.78516671373576, -73.95351608313564 40.78516146835522, -73.95369469075486 40.78491610409884, -73.95387810206944 40.784669345702326, -73.95388447916982 40.78466458370112, -73.95389175221074 40.78466111067563, -73.95390050776732 40.78465872784947)), ((-73.95435644400699 40.78403173525379, -73.95436453503538 40.784030798334456, -73.95437271887133 40.78403100598871, -73.95437829705267 40.784031909599136, -73.95438366040739 40.78403338854472, -73.9543898806967 40.784036029476184, -73.95439546193002 40.784039396859185, -73.95439972439219 40.78404304017404, -73.95440384727186 40.78404810262394, -73.95440668085254 40.78405365353595, -73.95440803669969 40.78405978828877, -73.95440789027366 40.78406601069639, -73.95440657671503 40.78407078373535, -73.95440464994905 40.784074865846975, -73.95440194382451 40.78407868290276, -73.95440157266346 40.784079188837794, -73.95428333817813 40.78424011924861, -73.95424276991398 40.784295436264046, -73.95404515507391 40.78456613572623, -73.95403897582024 40.78457093023333, -73.95403419484957 40.784573553288276, -73.95402963122743 40.78457538668995, -73.95402267801813 40.78457722994416, -73.95401542568075 40.784578195089644, -73.9540073270219 40.78457806938966, -73.95399870324776 40.78457664045391, -73.95399257364727 40.78457472264044, -73.953986365427 40.78457171068598, -73.95398087801529 40.78456797771734, -73.95397717817895 40.7845644867967, -73.95397354326958 40.784559619035136, -73.95397082360711 40.78455382142105, -73.95396971222029 40.78454885381107, -73.9539695573632 40.78454493296585, -73.95397006119993 40.784541026791715, -73.95397115616088 40.784537193794314, -73.95397288248412 40.784533495223755, -73.9541703531654 40.78426425644015, -73.95418819501144 40.78424008146664, -73.95433339668634 40.784043779336386, -73.95433884479942 40.784039136708245, -73.95434532185169 40.78403533015283, -73.9543503783872 40.78403332223649, -73.95435644400699 40.78403173525379)), ((-73.95527540989855 40.78277893859677, -73.95528333598864 40.78277815283305, -73.95528958977503 40.78277842270851, -73.95529638438205 40.78277955907609, -73.95530221068847 40.78278130740882, -73.95530759820319 40.78278373725088, -73.95531245459014 40.78278674500884, -73.95531620558164 40.78278987480625, -73.95532001256954 40.782794299546616, -73.9553228478413 40.78279913003647, -73.95532427856888 40.78280322157035, -73.95532498194207 40.782809012969444, -73.95532406177463 40.7828155754691, -73.95532167902923 40.7828213737763, -73.95531915784738 40.782825149502926, -73.95531900725298 40.78282535655993, -73.95513634459991 40.7830753693185, -73.95496227280017 40.7833119424479, -73.95495842380615 40.78331531512321, -73.95495455402872 40.783317887244344, -73.95494967612969 40.78332037612509, -73.9549437026174 40.78332252148617, -73.95493809691129 40.783323853837786, -73.95493302478563 40.78332449661357, -73.95492789135979 40.78332469001482, -73.9549220392207 40.78332429510715, -73.95491491178643 40.783322978487114, -73.95490947516919 40.783321287919534, -73.95490384252308 40.7833186661563, -73.95489773100958 40.78331466463683, -73.95489354099556 40.78331078183491, -73.9548905356473 40.78330694632264, -73.95488804145536 40.783302296956876, -73.95488648688396 40.78329741833097, -73.95488597218552 40.78329296965142, -73.95488626782641 40.78328851138356, -73.95488717791176 40.78328466299583, -73.95488900048115 40.78328041964506, -73.95489229257608 40.78327543575667, -73.95489272894334 40.783274846999404, -73.9550720610111 40.783032883820525, -73.9552489293299 40.782793670430145, -73.95525251208078 40.78278976724596, -73.95525729013879 40.782785927560894, -73.95526168589431 40.78278332681757, -73.95526717727743 40.782781036271906, -73.95527540989855 40.78277893859677)), ((-73.96791610352518 40.76545271391975, -73.9679251086003 40.765452222950906, -73.96793227849305 40.76545293274293, -73.96794015602244 40.76545493585516, -73.96794882497274 40.76545887076808, -73.96795489402734 40.765463185870445, -73.96795835782626 40.76546671230697, -73.96796114400004 40.76547057174145, -73.96796378820807 40.76547656172881, -73.96796492246932 40.765482265836525, -73.96796480783644 40.76548666656765, -73.96796370283171 40.76549154519102, -73.96796083733258 40.76549747331249, -73.96760440814961 40.76598557105826, -73.9676006342139 40.765988975702896, -73.96759631683511 40.765991985773866, -73.96759209222651 40.76599419802426, -73.9675855082087 40.76599662663216, -73.9675777721471 40.765998300293205, -73.96757121867034 40.76599881443751, -73.96756609507138 40.765998671616146, -73.967561035672 40.765998030833984, -73.96755542702981 40.76599674603657, -73.96754948837325 40.7659945786521, -73.96754289303234 40.7659910747345, -73.96753826973145 40.76598750653592, -73.9675340484139 40.76598296410515, -73.96753095132388 40.76597792581338, -73.96752876690731 40.76597146498254, -73.96752835152522 40.765965912358254, -73.9675290480066 40.765960929165786, -73.96753079851806 40.765956101157045, -73.96753278649611 40.765952494298524, -73.96788976163654 40.765465204676026, -73.96789636836452 40.7654597575675, -73.96790223496143 40.765456545303316, -73.96790809749517 40.76545439022938, -73.96791610352518 40.76545271391975)), ((-73.95664563227508 40.780895097319814, -73.95665381671346 40.78089379827282, -73.95666145061098 40.78089382185555, -73.9566703713955 40.78089512463441, -73.95667739136117 40.78089740104113, -73.95668494814748 40.78090123461712, -73.95668910782231 40.780904334807765, -73.95669266187326 40.780907843598555, -73.95669622197546 40.78091297779754, -73.95669864338275 40.78091848437638, -73.95669947808403 40.78092286653253, -73.95669925834727 40.780929216789694, -73.95669724242426 40.78093594998578, -73.95669460952531 40.78094050823776, -73.95669354357581 40.78094196034682, -73.95651717970804 40.78118247022994, -73.95633462825943 40.78143019411255, -73.9563294883988 40.781435008949494, -73.95632404496476 40.781438472918296, -73.95631789478976 40.78144116849084, -73.95631191584631 40.781442887983914, -73.95630564598343 40.7814438329348, -73.95629713525703 40.78144398369335, -73.95628877588669 40.781442757641344, -73.95628092320004 40.78144026477479, -73.95627554536536 40.78143763777144, -73.95627034354732 40.78143396625245, -73.95626598678483 40.7814297016232, -73.9562627344789 40.781424905216376, -73.95626013873982 40.78141790553051, -73.95625955604157 40.7814122573615, -73.95626006945842 40.78140795405785, -73.95626136706072 40.78140374470406, -73.95626341206935 40.781399712132256, -73.95626658500052 40.781395491783606, -73.95626682214605 40.78139516769291, -73.9564485968622 40.78114706541198, -73.95662344868309 40.780907448361226, -73.95662752643501 40.78090354892156, -73.95663184288372 40.78090057528764, -73.95663790793495 40.780897520365826, -73.95664563227508 40.780895097319814)), ((-73.96746104539382 40.766079204678164, -73.96746618935025 40.76607890356156, -73.9674742583584 40.76607940832098, -73.96748069019137 40.76608062401585, -73.96748612451394 40.76608235901961, -73.96749119021874 40.76608465223155, -73.9674952538691 40.76608706852959, -73.96749888029582 40.76608986111482, -73.96750284129654 40.76609390189271, -73.9675062072769 40.76609887812618, -73.96750883913917 40.76610586407726, -73.96750946177708 40.7661114410736, -73.9675088754231 40.76611646121753, -73.96750730253068 40.76612135861473, -73.96750539861915 40.76612500421811, -73.9671498654196 40.76661036143411, -73.9671464869883 40.76661382020657, -73.96714196918536 40.76661723452931, -73.96713497468453 40.76662088407743, -73.96712850915081 40.766623064153784, -73.96712234256306 40.76662427717388, -73.96711493630447 40.76662468659043, -73.96710615789596 40.766623941168845, -73.96709942302394 40.76662229402529, -73.96709171893644 40.76661901128953, -73.96708601428193 40.76661539593805, -73.96708154404669 40.76661122712908, -73.96707747724385 40.76660556990239, -73.96707502977193 40.76659939624912, -73.96707436416034 40.7665921659135, -73.96707586359591 40.76658500823691, -73.96707803566622 40.7665804568106, -73.96743231855159 40.76609259786069, -73.96743703334529 40.76608829928714, -73.96744331962068 40.76608441899131, -73.96744906869428 40.766081913612815, -73.96745528523255 40.7660801638889, -73.96746104539382 40.766079204678164)), ((-73.95810432053099 40.77890186851985, -73.95811141680754 40.7789012182355, -73.95811784323524 40.77890142498537, -73.95812515627641 40.77890269104769, -73.95813395019617 40.77890567490528, -73.9581402868737 40.77890920447447, -73.95814578651702 40.778913837755056, -73.95815035548596 40.77891966296231, -73.95815271439383 40.77892479127859, -73.95815383320166 40.77892960757073, -73.95815383926397 40.778935041203304, -73.9581519298874 40.7789422148111, -73.95814867095257 40.77894794262265, -73.95814783626334 40.77894908325582, -73.9579650114659 40.779198755687005, -73.95778452080069 40.7794456128041, -73.95777958782239 40.779449640743955, -73.95777500396882 40.779452336968845, -73.95776996791119 40.77945452154262, -73.95776388489807 40.779456301407016, -73.95775751684441 40.779457363466356, -73.95774992324912 40.77945755969346, -73.95774168590272 40.77945667328041, -73.95773486716618 40.779454827451836, -73.95772853109291 40.77945216414394, -73.95772346049029 40.779449049247845, -73.95771804622942 40.77944425208745, -73.9577138916632 40.779438771907934, -73.95771160627731 40.77943354995782, -73.9577104677461 40.77942811681052, -73.95771049305294 40.779423709762284, -73.95771132506215 40.77941934893568, -73.95771294950498 40.77941511807216, -73.95771533078859 40.77941110180589, -73.95791232708997 40.779145324970926, -73.9580758223056 40.77891855977001, -73.95807685382556 40.77891712834673, -73.95808092698691 40.77891266513846, -73.95808731979909 40.778907936225146, -73.95809650794726 40.77890378554991, -73.95810432053099 40.77890186851985)), ((-73.95344787335445 40.785285330901424, -73.95345358387266 40.78528517742122, -73.95345926671901 40.78528562906646, -73.95346481290333 40.785286678589195, -73.953470112262 40.78528830253185, -73.95347564203907 40.7852907919491, -73.95348111188532 40.785294275495396, -73.95348665509889 40.78529957898431, -73.95349039616656 40.785305123080015, -73.95349247727972 40.785310873621036, -73.9534930029413 40.785318173297206, -73.95349174400803 40.78532433041746, -73.953489920197 40.78532844767416, -73.95348730042431 40.7853323079667, -73.95348681777683 40.7853329678394, -73.95332107424562 40.7855601423404, -73.95313094723622 40.78581981567895, -73.95312612124083 40.78582394971863, -73.9531198596478 40.78582764282904, -73.95311269235104 40.785830448576846, -73.95310643942716 40.785831923755346, -73.95310068466615 40.78583258778456, -73.95309486280804 40.785832636743805, -73.95308908639961 40.78583207608188, -73.95308346917191 40.7858309121486, -73.95307748290456 40.78582889709107, -73.95307139427467 40.78582587523111, -73.95306656526328 40.78582251709635, -73.95306290446672 40.78581907569048, -73.95305959614002 40.78581478165338, -73.953056748675 40.785808811971, -73.95305540109383 40.78580116166358, -73.9530565189741 40.785793491648924, -73.95305949845581 40.78578697323309, -73.95325321024951 40.78552451531402, -73.95341862023639 40.78529845199319, -73.9534226912515 40.78529467423437, -73.95342693818348 40.785291765530296, -73.95343294445634 40.78528883772593, -73.95344087439125 40.78528640057119, -73.95344787335445 40.785285330901424)), ((-73.9669980872344 40.76670767332978, -73.96700647344758 40.76670636729959, -73.96701432010153 40.766706385755406, -73.96702134787053 40.76670733959981, -73.96702802339314 40.76670926138457, -73.96703477416249 40.76671230521828, -73.96704013891613 40.76671588625584, -73.96704381839362 40.76671920926704, -73.96704680243724 40.76672291659434, -73.96705003983875 40.76672922915162, -73.9670514687441 40.76673536829487, -73.96705134406652 40.76674079379481, -73.96705019637034 40.76674560215704, -73.96704804440084 40.76675020761865, -73.96669328435654 40.76723696568804, -73.96668987267016 40.767240496477505, -73.96668557274783 40.76724388112839, -73.9666795151779 40.767247226549195, -73.9666723967361 40.76724984945876, -73.96666687438423 40.76725109776042, -73.9666611664023 40.767251701247396, -73.96665540658397 40.76725175000879, -73.96664829817944 40.767250882567204, -73.9666421293305 40.76724938234304, -73.9666363671135 40.767247126713684, -73.9666311180628 40.767244240879954, -73.96662700850874 40.767241170772856, -73.9666231208764 40.76723722994271, -73.96661970167676 40.767232112289776, -73.96661717150687 40.76722555678975, -73.96661665679092 40.767219827635664, -73.96661772497471 40.7672130480523, -73.9666202222062 40.76720733778094, -73.96697465505562 40.76672194320325, -73.966979481626 40.7667169008647, -73.96698544602822 40.7667126206782, -73.96699147844126 40.76670972008279, -73.9669980872344 40.76670767332978)), ((-73.96883105977591 40.76419902035664, -73.96883812951306 40.76419836219952, -73.96884524263363 40.764198639677545, -73.96885352884453 40.7642002168998, -73.96885939049045 40.76420219148893, -73.96886474371529 40.76420487643817, -73.96886950804384 40.764208141152686, -73.96887312587361 40.764211493806684, -73.96887609925041 40.764215194781585, -73.96887858548588 40.76421968896897, -73.96888025296997 40.764224954667235, -73.96888072917842 40.764229817518306, -73.96888029723608 40.764234141622595, -73.96887886075831 40.764238893194985, -73.96887534509192 40.76424501387252, -73.96887428085877 40.764246467899255, -73.96878687732946 40.76436580337588, -73.96851638908848 40.76473510846047, -73.96851105105324 40.76474031641776, -73.9685044106624 40.764744574887516, -73.96849894489158 40.764746902997246, -73.96849373296888 40.76474839820991, -73.9684882974678 40.76474932874507, -73.96848204740199 40.76474966742594, -73.96847443812561 40.76474907011082, -73.96846583231633 40.76474698579021, -73.96846031304794 40.76474473301915, -73.96845586932754 40.764742179773975, -73.96845193154284 40.76473918181815, -73.9684482191862 40.76473534375361, -73.96844481896822 40.76473013430669, -73.96844251983327 40.76472322410901, -73.96844214583267 40.764717677801876, -73.9684429818624 40.76471295938942, -73.9684452111086 40.76470739308366, -73.96844907821692 40.76470207216358, -73.96844952856992 40.76470145183957, -73.96880234406389 40.76421625633844, -73.96880273515369 40.76421571884337, -73.96880558884496 40.76421196541422, -73.96880914824206 40.76420857688027, -73.96881380670517 40.76420522556439, -73.96881911390766 40.76420248946821, -73.96882490284678 40.76420038655661, -73.96883105977591 40.76419902035664)), ((-73.9656368956046 40.768582856230196, -73.9656435024625 40.76858270601538, -73.96564933788986 40.76858325976399, -73.96565570115979 40.76858461962036, -73.96566108704803 40.768586411426824, -73.96566605926229 40.76858879744211, -73.9656711103917 40.76859204166065, -73.9656749829476 40.76859540349377, -73.9656782074232 40.76859914244475, -73.96568096598912 40.768603709720125, -73.9656827946375 40.76860854056603, -73.96568357853171 40.76861353048987, -73.9656833686658 40.76861855613789, -73.96568249848792 40.76862241093453, -73.96568098995738 40.76862615207761, -73.9656782018144 40.76863071049674, -73.9656773021954 40.768631936714606, -73.96532408114449 40.769113552622954, -73.96525008840962 40.76908040080582, -73.96560466139645 40.76859852257839, -73.9656098993851 40.768593132826965, -73.9656141388947 40.768590035459454, -73.96561830810751 40.76858774132001, -73.96562279573693 40.768585827287936, -73.96562827222218 40.768584199010355, -73.9656368956046 40.768582856230196)), ((-73.95857218682185 40.778268048958346, -73.95857967240309 40.77826797600706, -73.95858738114033 40.77826908459449, -73.95859405522003 40.77827098975422, -73.95860132302803 40.77827441517473, -73.95860612341167 40.77827765870748, -73.95861015937963 40.77828145577442, -73.95861310318679 40.77828517680679, -73.95861528511064 40.77828918842767, -73.95861678695908 40.778293378103704, -73.95861744765942 40.77829769084652, -73.95861721329358 40.778303109084696, -73.95861538877612 40.77830918231748, -73.95861212991717 40.7783149020382, -73.9586114588675 40.77831580500099, -73.95842516143755 40.778566207245056, -73.95824230876975 40.77881454287418, -73.95823725465004 40.77881729567893, -73.95823168681561 40.77881939543316, -73.95822406749207 40.77882106670482, -73.95821617046568 40.7788216500686, -73.95821072142977 40.77882132391184, -73.95820526447125 40.77882040882352, -73.95819823394913 40.778818230660015, -73.95819292722074 40.77881577396579, -73.95818824045116 40.77881267453762, -73.95818214107823 40.778806662372496, -73.9581783448804 40.77880020709529, -73.95817685074064 40.778795086297286, -73.9581766138855 40.778789319394996, -73.9581775861654 40.77878412385001, -73.95836214463506 40.778524737974884, -73.95854121466088 40.77828232068642, -73.95854513811834 40.778278457142065, -73.95855174986632 40.77827392549129, -73.95855878842275 40.77827073394109, -73.95856412840563 40.778269197803446, -73.95857218682185 40.778268048958346)))",M060C,6366,M060C,M-08,M-08,M-08,M-08,E. 59 St. To E. 97 St. and Park Ave.,"108, 111",4,19,"10021, 10022, 10028, 10029, 10065, 10075, 10128",M,4.623,False,Park Avenue Malls 59th-97th,No,100003799,PARK,20100106000000.00000,18900604000000.00000,,DPR,False,Park Avenue Malls,Y,Park Avenue Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M060C/,No,"68, 73",28,12,{DC410D17-B9F4-412F-9022-747ABD8894F6} +"MULTIPOLYGON (((-73.99001995402244 40.71413503905792, -73.99005328564542 40.71413210447761, -73.99005857100919 40.71413212384486, -73.99006508114034 40.71413295918005, -73.99007132605728 40.71413458423962, -73.99007501587721 40.71413614514235, -73.9900765187866 40.71413678103229, -73.99008377747519 40.714141503934435, -73.99008834142536 40.71414611223935, -73.99009039902431 40.71414915073869, -73.99009076226919 40.71414968747413, -73.99009279708497 40.71415472780615, -73.9900942835819 40.71416228051504, -73.9900958395944 40.714171915209974, -73.99010161907482 40.71420769208572, -73.99010970538944 40.714257764762074, -73.99011224868339 40.71427360495874, -73.9901172335282 40.714305071021634, -73.99011709683352 40.71430908728633, -73.9901157647306 40.7143137959409, -73.99011443655215 40.71431598136561, -73.99011288937774 40.71431852877669, -73.99010831934321 40.714322929178465, -73.99010299205253 40.71432621198155, -73.99009777029141 40.71432814042585, -73.99008929524503 40.71432954899533, -73.99008218734028 40.7143293934954, -73.99007609384017 40.71432809713581, -73.99002779503309 40.71431338492565, -73.99001490288424 40.7143094927027, -73.98995757934912 40.71429218170738, -73.9899002593942 40.714274870683845, -73.98984293710197 40.71425756053199, -73.98978561720645 40.714240250351736, -73.98976127672529 40.7142329495526, -73.98971664309232 40.714219328956226, -73.98970955584421 40.71421577220727, -73.98970492899575 40.71421243180045, -73.9897010916048 40.71420855295882, -73.98969782951978 40.714203770956594, -73.98969537359528 40.71419758062813, -73.98969468547858 40.714193297738994, -73.98969503425127 40.714187910916834, -73.98969528883637 40.714187009528686, -73.98969652268595 40.71418264126306, -73.98969956740997 40.71417718714387, -73.9897027064909 40.71417380510753, -73.98970507500516 40.71417125417334, -73.98971047222174 40.71416736264978, -73.98971581953978 40.71416471652745, -73.98972230883022 40.71416255047886, -73.98972848790349 40.7141613452469, -73.98977699065792 40.71415692895852, -73.98979587433435 40.714155235873264, -73.98985998367978 40.71414945665891, -73.98992409064734 40.71414367650813, -73.9899881999708 40.714137895421366, -73.99001995402244 40.71413503905792)))",M224,5758,M224,M-03,M-03,M-03,M-03,"Canal St., Rutgers St. and E. Broadway",103,1,7,10002,M,0.12,False,Staraus Square,Yes,100004360,PARK,20100106000000.00000,,,DPR/CDOT,False,Straus Square,N,Straus Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M224/,No,65,26,7,{C5A63629-FE4B-45DC-9480-7B89EA7A1A5F} +"MULTIPOLYGON (((-73.89485957920876 40.65917724781102, -73.89516645068397 40.65904017110638, -73.89520240289197 40.65908775297804, -73.8952203784225 40.65911154480951, -73.89523835514984 40.659135335738696, -73.89493149048239 40.65927241083914, -73.89491965708493 40.659256752642484, -73.89490759594844 40.65924079166269, -73.89489553481923 40.65922482978108, -73.89487702245256 40.659200331402936, -73.89485957920876 40.65917724781102)))",B506,5307,B506,B-05,B-05,B-05,B-05,Malta St. between New Lots Ave. and Hegeman Ave.,305,42,75,11207,B,0.091,False,Prophecy Garden,No,100003706,PARK,20100106000000.00000,20050201000000.00000,67 MALTA STREET,DPR,False,Prophecy Garden,N,Prophecy Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B506/,No,60,19,8,{D3DBB351-F3CE-434A-9D68-EEDF9D857C18} +"MULTIPOLYGON (((-73.84922408877432 40.81901922236694, -73.84990065400497 40.81892887835335, -73.84998447614997 40.81930688400201, -73.84964707305681 40.819718580701085, -73.8493957473672 40.8197521411396, -73.84922408877432 40.81901922236694)))",X203,4856,X203,X-09,X-09,X-09,X-09,Randall Ave. bet. Olmstead Ave. and Castle Hill Ave.,209,18,43,10473,X,1,False,Randall Playground,Yes,100004696,PARK,20100106000000.00000,19600211000000.00000,2180 RANDALL AVENUE,DPR/NYCHA,True,Randall Playground,Y,Randall Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X203/,No,87,32,15,{5B80963B-6E88-4252-B4FB-CB2C7A3D5A70} +"MULTIPOLYGON (((-73.84557241051095 40.5699316493136, -73.86218562025249 40.565147919570336, -73.86301483823833 40.56660407631133, -73.86348189448002 40.567424224599215, -73.84878253979862 40.57312289597285, -73.84763298069379 40.57358086764, -73.84587104047083 40.574256266475786, -73.84439086203197 40.57482491535736, -73.84222601613943 40.57088496997147, -73.84233795869555 40.57085308204378, -73.84326704541381 40.570588414559865, -73.84557241051095 40.5699316493136)))",Q164,6620,Q164,Q-14,Q-14,Q-14,Q-14,Atlantic Ocean bet. B. 149 St. and B. 126 St.,414,32,100,11694,Q,166.71,False,Rockaway Beach,No,100000387,PARK,20090423000000.00000,19680122000000.00000,,DPR,False,Rockaway Beach,N,Rockaway Beach,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/Q164/,Yes,23,15,5,{1DA2DEC2-236A-447A-8906-8A7D45CA3DCE} +"MULTIPOLYGON (((-73.9152042383218 40.80538934245822, -73.91538277344013 40.805143232237725, -73.91562770860365 40.80524675300876, -73.91573669382994 40.80529280318677, -73.91585507906034 40.80534282411859, -73.91567654397022 40.805588933260786, -73.91555815843628 40.8055389121476, -73.91544917411338 40.80549286360452, -73.9152042383218 40.80538934245822)))",X277A,4685,X277A,X-01,X-01,X-01,X-01,E. 137 St. bet. Cypress Ave. and St. Ann's Ave.,201,8,40,10454,X,0.344,False,United We Stand Garden,No,100004223,PARK,20100106000000.00000,19961231000000.00000,627 - 631 EAST 137 STREET,DPR,False,United We Stand Garden,Y,United We Stand Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X277A/,No,84,29,15,{1061623A-B4B0-4B5C-9BA9-C3F777C62C82} +"MULTIPOLYGON (((-74.20254412410371 40.57959078792085, -74.20248582224474 40.579577974439964, -74.20240543748028 40.57954289469752, -74.20235668050242 40.57951970738054, -74.20231957443322 40.579501803626684, -74.2022622188999 40.57947110120955, -74.20217605564777 40.57941076270816, -74.20215074190378 40.579394122298055, -74.20211534424227 40.579384558849604, -74.20199376923718 40.57933450167781, -74.2018680420042 40.5792775005099, -74.20177458257777 40.57925467064686, -74.20170856618235 40.57923398260954, -74.20162066296741 40.57920577302707, -74.20152873522503 40.57915972920739, -74.20147998167789 40.57915079684602, -74.20139974197892 40.57913606083916, -74.20131351578861 40.579106162296526, -74.20123970081778 40.579086580894064, -74.20116135346966 40.579078555731236, -74.20107415328113 40.57907461909048, -74.20098177495514 40.57907529133125, -74.20089659439398 40.579061135450885, -74.20072048624301 40.57904460792463, -74.20065951072758 40.579025328807106, -74.2006420127368 40.57902128448533, -74.20062335215698 40.579021821367974, -74.20050201602152 40.57903736375077, -74.20039408357134 40.57903194178514, -74.20029739352378 40.57901067156557, -74.20021235207496 40.57900265832687, -74.20011657318764 40.57898548016042, -74.200024893061 40.57896448465081, -74.19996830371574 40.57895604437077, -74.19996011871821 40.57895244570501, -74.1999366971404 40.57893716851343, -74.19987891193014 40.57893324641049, -74.1998136671137 40.578935659848575, -74.19978863580823 40.57893184552566, -74.19977556698184 40.57892426600767, -74.19976837765275 40.57891514176788, -74.19976769668588 40.57889754396427, -74.19977660353682 40.57887358077751, -74.19981004294877 40.578830830468476, -74.19982359669487 40.578823246075295, -74.19984861436929 40.578813044621036, -74.19986817542616 40.57880203587684, -74.19988414862901 40.57878913776349, -74.19992500787649 40.57874219876986, -74.19998754430522 40.57868535315982, -74.20005123331569 40.57864071934845, -74.20009535310159 40.578601997322544, -74.20012762641359 40.57856987426193, -74.2001544516757 40.57852049308906, -74.20018560333621 40.57846250614443, -74.20021352525582 40.57841887921138, -74.20023823943488 40.57838512403021, -74.20024775121995 40.57831089326394, -74.20026487668277 40.578264818593496, -74.20027662559868 40.57822533073858, -74.20028194916138 40.57820147641735, -74.2002806557819 40.57812896647838, -74.20030638401046 40.57807383191513, -74.20032978509711 40.57796421955043, -74.20034131451011 40.577857883285915, -74.2003519603485 40.57781017553812, -74.20037737874505 40.57777425963391, -74.20038775119895 40.577748422546364, -74.20038768845025 40.577727507927285, -74.20037252250836 40.577703483117006, -74.20034774171296 40.57767633763801, -74.20031312991613 40.57762479602119, -74.2002923929925 40.57757359221653, -74.20027986330214 40.57751296359807, -74.20027555752708 40.577464628137975, -74.20028088669096 40.57741233427637, -74.20027390804594 40.577372608907176, -74.20026687806248 40.57731615274404, -74.20027488066327 40.57725110636762, -74.2002733264338 40.57719045771245, -74.20025382095518 40.57709219473634, -74.20023019901748 40.57701028168712, -74.20015571975662 40.576882834772036, -74.20010334338164 40.57680449825158, -74.2000647635055 40.57675123355691, -74.2000481723001 40.576709433888674, -74.20003329475493 40.57666131043794, -74.20001350343779 40.57663977458295, -74.20000229071641 40.57661887757247, -74.19999621709546 40.57659535828631, -74.19999096958611 40.57656137794503, -74.19998229707288 40.57652936491258, -74.19995296811722 40.576485449552344, -74.19991161015923 40.5764221190512, -74.19989779079961 40.57639011496814, -74.1998804249986 40.576337648083566, -74.19986565045387 40.576272963745865, -74.1998526221156 40.576227037940114, -74.19983710167523 40.57619961328494, -74.19982751319415 40.57614799196512, -74.19982214854043 40.576081130889364, -74.19981089218132 40.57604520054347, -74.19978677451806 40.57601125391074, -74.19977377292874 40.57596594400889, -74.19977951210464 40.575877693222395, -74.19976036466818 40.57578425725355, -74.19974991691262 40.57570433206524, -74.19976760159071 40.57568225732212, -74.19977642209847 40.57566076352194, -74.19978689144008 40.575632209426026, -74.19979184240788 40.57559948738297, -74.19979288184226 40.575567158468296, -74.19979218191808 40.57552623615068, -74.19977760191804 40.575421079988175, -74.19979706011357 40.57529823321732, -74.19980058473459 40.575236015099954, -74.19978547521579 40.57514649300062, -74.19978897425844 40.57507927610341, -74.19979869950646 40.575022702508996, -74.19981715713755 40.574990621560225, -74.19982942421939 40.57495666567376, -74.19983915223345 40.574901034021394, -74.19985507521434 40.574849162996735, -74.19989082984505 40.57479423169441, -74.19990555293163 40.57475461621757, -74.19992513972572 40.57468671393311, -74.19995215409934 40.574617734294414, -74.19997542608117 40.57454134172334, -74.19999874721057 40.574477042235564, -74.20001598102913 40.57444967584007, -74.20003942672457 40.57443172533972, -74.2000579274766 40.5744023053316, -74.20013544790777 40.57425210742149, -74.20016627526813 40.57422094681426, -74.20020210632336 40.57418304243863, -74.20023041424982 40.574136805082006, -74.20026129879734 40.57409126923948, -74.20028718736681 40.574062944862725, -74.20030937375033 40.57403745549027, -74.20032918977552 40.57400602676985, -74.20035251930585 40.57394942849704, -74.20038456147222 40.57391072560008, -74.20040425099046 40.57387769955232, -74.20044211212496 40.573850909463026, -74.2004837665953 40.57382019905145, -74.20052201203886 40.57379241318273, -74.20055969839068 40.57377076896987, -74.20063370474003 40.57373577584489, -74.20069336946823 40.573699706383586, -74.20074518685027 40.57366964541161, -74.20077816947766 40.573652804651665, -74.20083003482334 40.573638328075326, -74.20087720142249 40.573631053100605, -74.2009225625268 40.573616396943976, -74.20096162617689 40.573611406334635, -74.20101259887193 40.573616239434024, -74.20109461476441 40.57362222217806, -74.20119271585266 40.573630628828305, -74.20123012993254 40.573629256632046, -74.201276715394 40.573615695932986, -74.20134736462659 40.57358493800356, -74.20140838725918 40.57356032499412, -74.20147104671494 40.5735455104162, -74.20153211362968 40.573535601066304, -74.20156102380221 40.57352574720917, -74.2016290409672 40.57349243622758, -74.20171095685609 40.57346533514964, -74.2018057605563 40.57344678889253, -74.20191666416916 40.57343556436048, -74.20203241425827 40.573431685801296, -74.202088690082 40.57343281243357, -74.2021578513014 40.57344126826544, -74.2022306384685 40.573452172508986, -74.2022966470276 40.573481464795876, -74.20232881857423 40.57348630970603, -74.20241083813906 40.573493517121, -74.20255234821933 40.57350184521613, -74.20263433555363 40.573498024675686, -74.20273925859416 40.5735027384188, -74.20281642908253 40.573501375682476, -74.20288715310721 40.57349512451265, -74.20292573276211 40.57349260513567, -74.2030013170993 40.57349859877989, -74.20306563560061 40.57350093543778, -74.20315041466331 40.57351145678922, -74.20323787944182 40.57352202465669, -74.20335249461483 40.5735379061375, -74.20342680001772 40.57355203532514, -74.20350112126356 40.57357212952708, -74.20354207961222 40.57357548166766, -74.20358918072762 40.5735716303988, -74.20367898916311 40.57355600735418, -74.20374274691304 40.57355258035429, -74.20381377470588 40.57355687324578, -74.20389637370127 40.57355341183079, -74.20409096388869 40.57353643715701, -74.20418514413808 40.573528537873784, -74.20423296326 40.57352624477731, -74.20425760528005 40.57352730501134, -74.20427356074862 40.57353169462594, -74.20430402145944 40.573540477328194, -74.2043429288463 40.57355553427813, -74.20440189248096 40.57358166533163, -74.20444452297289 40.57359884987148, -74.20446093250494 40.573599942723334, -74.2044864105669 40.573599033768936, -74.20451358144406 40.57359596413263, -74.2045376882416 40.57358883766837, -74.20457912286929 40.573575315417635, -74.20462218752019 40.57356458548414, -74.20466643174034 40.57355918095055, -74.20471302079622 40.57355821001828, -74.20475263291634 40.57356080318105, -74.20477343318413 40.573557226134206, -74.20478870852828 40.573550085641806, -74.20481197601221 40.573541166766375, -74.20483292123734 40.573534027866096, -74.20485737066672 40.57353043349098, -74.204918953128 40.573525518444626, -74.20496259646201 40.57351212359227, -74.205015079027 40.57350591536362, -74.20507840687335 40.57350136273072, -74.20512791273056 40.573500720518496, -74.20518192171598 40.57350009635734, -74.20521904926748 40.573498919688305, -74.20524961796313 40.57349553582759, -74.20530432248462 40.57348375103572, -74.2053465232211 40.57347479731296, -74.20541025118833 40.57346058562984, -74.20542651942588 40.573457213783534, -74.20544738865843 40.57345611474144, -74.2054936290906 40.57345854900848, -74.20552168681701 40.57345472380605, -74.20556885691582 40.57344265249176, -74.2056092866821 40.57343503101928, -74.2056356856424 40.57342869088431, -74.20566618884558 40.57341479337708, -74.20571482124828 40.57339016783935, -74.20574548943553 40.573380000898936, -74.20579251537303 40.57336984967432, -74.20581807910226 40.57336036635325, -74.20582715688391 40.57335909115205, -74.20583624048169 40.57335970344438, -74.20586184104428 40.573362174543604, -74.20589321621857 40.57336337725133, -74.20592291324056 40.57335577400338, -74.20594351619752 40.573343782573644, -74.20597329324222 40.573322304749446, -74.20599638625588 40.573314713323136, -74.20601947420313 40.57330586386504, -74.20604833210102 40.573293857611766, -74.20610025967494 40.57326670812624, -74.20613572269728 40.57325469000052, -74.20618191522121 40.57324202313859, -74.20621407504852 40.573230010917165, -74.20625114822339 40.57320477643217, -74.20627935497171 40.57320221781827, -74.20632035330905 40.573200573672985, -74.20633783211132 40.57319611168652, -74.2063625448493 40.573184922373166, -74.20640747464455 40.57316340820935, -74.20643894306252 40.57315392134436, -74.20652573499369 40.573137450494166, -74.20660444527637 40.573127020440275, -74.20663047253989 40.573120850043765, -74.20666192764116 40.57310707573219, -74.20671605345677 40.573092029598726, -74.2067439520388 40.57307692258066, -74.20678435827664 40.57304770069406, -74.2068192085627 40.57304077864174, -74.20683830537443 40.57303217124143, -74.20687982520063 40.57299951810888, -74.2069056738584 40.57299175674012, -74.20691958504788 40.572990025184886, -74.20692937623795 40.57299033083744, -74.20694283643577 40.572993599818076, -74.20697125600897 40.573009834650556, -74.20699456986034 40.57303432480238, -74.20700002122562 40.57304956900746, -74.20700623080913 40.57308616334259, -74.20701590953355 40.5731141928166, -74.20702585329208 40.57313171086021, -74.20704144392536 40.57315095854414, -74.20704602199433 40.573178208346484, -74.20704743123935 40.57320346468989, -74.20704656585575 40.57323669839939, -74.2070534099606 40.57325662463322, -74.20707293617458 40.57330385359976, -74.2070749733115 40.57333126647359, -74.20707316125835 40.57337188711161, -74.20708105361933 40.57341413551928, -74.20708906840042 40.5734954854899, -74.20709014669234 40.57353092919045, -74.20707648334619 40.573616068933255, -74.20707499781898 40.57367478146994, -74.2070816631748 40.573701411546736, -74.20709771945256 40.573740145787426, -74.20710204450688 40.57375699945801, -74.20710458129055 40.57378595673378, -74.20710298763309 40.57380978845195, -74.20709448664496 40.5738268453503, -74.20707636773665 40.57384391148068, -74.20704378788133 40.57386143322325, -74.20700425904872 40.57387398846468, -74.20695775418774 40.57388275513579, -74.20690824614667 40.57388773507796, -74.20683119226756 40.573893694841104, -74.20677633602881 40.57389273457359, -74.20674163888526 40.57389967704806, -74.2067218950537 40.57391414442404, -74.20669027494219 40.573950660955724, -74.20666193589037 40.57400101897938, -74.20665229918477 40.574028553717895, -74.20665514944305 40.57405086545012, -74.20670532345224 40.57409694249741, -74.20672832860394 40.57412653474211, -74.20674647284767 40.57415613663095, -74.2067604697956 40.574191567888164, -74.20678432567175 40.57425141089316, -74.20683315088122 40.574308055294345, -74.20685629798808 40.57435522374259, -74.2068744669337 40.57439276281094, -74.20688721133558 40.5744611051645, -74.20691875648156 40.57454635706868, -74.20692307384081 40.57459503448013, -74.20693011249551 40.57462588105877, -74.20694483028983 40.57466977594707, -74.20697286363249 40.57475398864943, -74.20698020915061 40.574811818060496, -74.20698392526769 40.57489054713504, -74.20699352689401 40.57490771729167, -74.20700310017858 40.57491802728453, -74.20702881382194 40.574933913070176, -74.20704273926891 40.574945795641206, -74.20704406958946 40.57495472286847, -74.2070431472644 40.57496616572515, -74.20703083254973 40.57498166707577, -74.20700258042001 40.57500335044415, -74.20699202085446 40.57501548335888, -74.20698234258823 40.57502694199118, -74.20697615908104 40.57505407970385, -74.20695543641087 40.57524595087815, -74.2069477626837 40.575271262303204, -74.20693460541221 40.57530073323316, -74.20691699734114 40.57532310431953, -74.20689992597663 40.57534336180047, -74.20686516471788 40.57536454265585, -74.20672458395042 40.575440808285165, -74.20671356465988 40.57545058982471, -74.20670998287204 40.57546745413248, -74.20671274868712 40.57548115337353, -74.20671847103654 40.575488512088086, -74.2067295713931 40.575501104892595, -74.20678619776191 40.57554811043936, -74.20680528818738 40.575571918424004, -74.20681712672673 40.57559023814248, -74.20682554381929 40.5756051095985, -74.20683571121815 40.575645163837585, -74.20685156332353 40.57570481411058, -74.20685675621289 40.57576009350634, -74.20686082494089 40.57581161162422, -74.20686980069748 40.57582953485679, -74.20688435292635 40.57584354426262, -74.20691458372086 40.57587411043148, -74.20692861773657 40.575895820269416, -74.20693593149055 40.57591630398659, -74.2069402398805 40.57594146955281, -74.20693581033255 40.57598583928431, -74.20659947559014 40.577037174765195, -74.20656625379443 40.577188311370016, -74.20614274103717 40.57750870863026, -74.20617218671967 40.577516659671815, -74.20619916908257 40.57752893045098, -74.20621768962266 40.57754706713491, -74.20623000147631 40.57756791023763, -74.20623726422481 40.57759254011247, -74.20623735385307 40.57762156662789, -74.2062345963899 40.57766220604297, -74.20622614773809 40.577718629299106, -74.20621402567198 40.57774931939442, -74.20619830122105 40.57778340193436, -74.2061954929964 40.57780531318605, -74.20620057876232 40.57782410435301, -74.2062115323556 40.577880493682116, -74.20621097158397 40.57793374102835, -74.20620327879415 40.5780050963579, -74.20620571319375 40.578095454433296, -74.20619088383417 40.57818651888836, -74.20619045432302 40.57828305611303, -74.2061806315588 40.57836536026187, -74.20617141955593 40.57840754665389, -74.20614993310963 40.578438381419716, -74.2061055123114 40.57848172601922, -74.2060782853862 40.57852352057245, -74.20605823798482 40.578547653722076, -74.2060008636639 40.57860152435451, -74.20595976064284 40.57862545119649, -74.20593402188334 40.57865159459648, -74.20592279677615 40.57867106158843, -74.20590509566883 40.57868165829239, -74.20585532468257 40.57870711801876, -74.20581288337236 40.57872299019448, -74.20577169113267 40.57873908885104, -74.20573351139495 40.578751992433034, -74.20570617983934 40.57876912976599, -74.20567187215946 40.578796396997255, -74.20561139290129 40.578844717643165, -74.20551135969764 40.57890734724359, -74.20546005184987 40.578938577419365, -74.20541587375479 40.578964316020844, -74.20537091111527 40.57897921006605, -74.2052972110886 40.57900082564947, -74.20521602615712 40.57903346709453, -74.20512682346212 40.5790590140413, -74.20505359370021 40.579078439448395, -74.20500036868948 40.579103921176596, -74.20493489891601 40.57913771496992, -74.20480980220806 40.57919074312176, -74.20470170920832 40.57922253974611, -74.2046404748838 40.57924295930928, -74.2046005009908 40.57924404539821, -74.20455522297478 40.57925326636785, -74.2044860293106 40.579276013472324, -74.20444606310853 40.57928116266933, -74.20439610576726 40.579286964499225, -74.20436443665615 40.57928130789722, -74.20432695718176 40.57928200853107, -74.20428533147626 40.57928906613757, -74.2042649190615 40.57929531606449, -74.20424965326883 40.57931143471315, -74.20423756088451 40.579331365950715, -74.20421430027145 40.57937836795404, -74.2041824683461 40.579415661301134, -74.20415390814333 40.579429435178724, -74.20407851283234 40.5794450167614, -74.20398531983973 40.5794540623565, -74.20391225721973 40.5794638790204, -74.20384977288597 40.57946883293696, -74.20375938789428 40.57948040654718, -74.20368950841927 40.579491832067724, -74.20363867538786 40.57949676611231, -74.20356028354524 40.579496097262755, -74.20349250565863 40.57950186813621, -74.20340021176564 40.579514164365364, -74.20331341938679 40.57953772897778, -74.20321069130208 40.57954678991704, -74.20310799128362 40.57956392393427, -74.20300926036879 40.5795762384329, -74.20296265385207 40.57957712764969, -74.20288530173715 40.579569999728115, -74.20284822771814 40.579570871163796, -74.2027571838326 40.57958959983072, -74.20270195398832 40.579588088047636, -74.20265217778899 40.57959221201858, -74.20258544446581 40.579593137482945, -74.20254412410371 40.57959078792085)))",R151,6112,R151,R-03,R-03,R-03,R-03,Arthur Kills Near Fresh Kills Landfill,503,51,123,10314,R,87.516,False,Isle Of Meadows,No,100003744,PARK,20100106000000.00000,20010823000000.00000,,DPR,False,Isle Of Meadows,N,Isle Of Meadows,Isle,Nature Area,http://www.nycgovparks.org/parks/R151/,Yes,63,24,11,{43DFDB31-5668-4ECB-B1F2-D2CCEB3F9329} +"MULTIPOLYGON (((-73.8516848947621 40.81615351856339, -73.85128016665371 40.81442493569783, -73.85127435939448 40.81442366030528, -73.85125227620922 40.814333310028765, -73.85112993887843 40.814305955280574, -73.85104302267354 40.81428397531944, -73.85095699148584 40.814260066668595, -73.85087191994407 40.8142342510385, -73.85075945350052 40.81419641605569, -73.85066325527163 40.81416097394802, -73.85054269427647 40.814112384421556, -73.85083749503686 40.81374531959811, -73.85083743702481 40.81374529070714, -73.85086102396056 40.81371591274059, -73.85086126808304 40.81371592926533, -73.85102438911491 40.813512614885035, -73.85102422101939 40.81351252191648, -73.851015872673 40.81352290558338, -73.85088818973152 40.81346196047359, -73.85078138108476 40.813399559118444, -73.8506178965922 40.813289879211, -73.85053275780581 40.813228647529826, -73.85046433946115 40.813179442018836, -73.85039789262471 40.813131653708126, -73.8503737825528 40.81311431303759, -73.8503614280534 40.81311100207929, -73.85034598075748 40.81310582037168, -73.85033264153662 40.813100311816065, -73.8503145899224 40.81309108078328, -73.85030375424304 40.81308437060749, -73.85029329013864 40.81307686847438, -73.85028041480129 40.81306589178708, -73.85027003619825 40.81305515787343, -73.85026178166328 40.81304489047422, -73.85025054296523 40.813028195941996, -73.8501772902148 40.81297700828532, -73.84996281988917 40.81282714125708, -73.84987341401423 40.81278653125216, -73.84966591290785 40.81269227943255, -73.84942794959463 40.81254208810217, -73.84937963871384 40.81250183123983, -73.84934043061149 40.8124640833352, -73.84931566911995 40.81243891985795, -73.84928575789996 40.81240589639424, -73.84925789830753 40.81237915748404, -73.84923254098622 40.81235544391288, -73.84920903760346 40.81233842346619, -73.84919073243182 40.81232408699698, -73.84917471745446 40.81231168779212, -73.84914823234497 40.812287762009994, -73.84913451234297 40.81227362513818, -73.84911493779818 40.81225773903843, -73.84909224780661 40.8122353724706, -73.84907345208795 40.812213684569244, -73.84905034084616 40.81218580278724, -73.84903634788233 40.812166619151135, -73.84902237849472 40.81215376514976, -73.84900585934726 40.81213846385385, -73.84899563634247 40.81212773633066, -73.848979657438 40.81209947666088, -73.84895675591298 40.81206591388754, -73.84892908151839 40.81203185138223, -73.84889475037824 40.81198554056644, -73.8488851359133 40.81197355493343, -73.84887855044158 40.81196383532283, -73.84887112517099 40.811950758452085, -73.84886610323615 40.81193988825181, -73.84886171889171 40.81192799772148, -73.84885835344338 40.81191575463072, -73.84885526233104 40.81189596211762, -73.84885393853375 40.811892273740106, -73.84885304175143 40.81188739186099, -73.84885331056748 40.81188070691044, -73.84885561209911 40.811873462713436, -73.84885794366605 40.811869171291264, -73.84886226480305 40.81186400899343, -73.84886418628335 40.81186180709124, -73.84886702855968 40.81186017551129, -73.84887546974052 40.81185959404804, -73.84894633767306 40.8118618355095, -73.84900167146256 40.811861826948416, -73.8490507306735 40.8118602910044, -73.8491065399925 40.81185755270325, -73.84910737919016 40.811857521383615, -73.84901922399484 40.811697945646515, -73.84901854056626 40.81169670926711, -73.84885023242752 40.81139282341807, -73.8482728520615 40.81032084047095, -73.84827192020097 40.81032097612044, -73.84822388037402 40.81022991475833, -73.84821642635036 40.810216075080795, -73.84821664532008 40.81021620143892, -73.84794409220868 40.80969956004985, -73.84794259416621 40.809700074060025, -73.84792643972644 40.809666097631876, -73.84787661064493 40.80956129754009, -73.84783880265923 40.80946435393745, -73.84781546373027 40.80940244713259, -73.84778962126833 40.80931588945398, -73.84778774867601 40.80931227778094, -73.847775608596 40.80926895404473, -73.84775446019503 40.80919347779377, -73.84773936227742 40.809114286865274, -73.84754017029675 40.8075543776938, -73.84747773140937 40.80610485103206, -73.84745825582263 40.805652709585495, -73.8474551986091 40.805581720047414, -73.84744234405225 40.805283301733326, -73.84744018475303 40.80523317615778, -73.84809221077909 40.80470066214856, -73.84873878651462 40.80468511064306, -73.84874003379983 40.80468954814184, -73.8488241797084 40.80468305695551, -73.84899360198034 40.804678981822796, -73.84917552809297 40.80547819471104, -73.84923959202746 40.805759623428685, -73.84930197313705 40.805794218441775, -73.84930328576284 40.80579494686087, -73.84931827859276 40.805803260960985, -73.84917777665356 40.80595289245636, -73.84913848748592 40.80600233611042, -73.84947997100892 40.80618746954803, -73.84937263501884 40.80619101960099, -73.8495188398618 40.8068554064037, -73.84941745036025 40.806888532162596, -73.84963914032438 40.80781845661112, -73.84968955742585 40.80781151737195, -73.84994318866934 40.80777660853863, -73.849964514671 40.807773672751416, -73.85017230704182 40.80774507208061, -73.85018549634164 40.80780248795093, -73.85019588537428 40.80784771012071, -73.85019489866124 40.80784801230685, -73.85021983890285 40.807961658913314, -73.84968963788852 40.80802883588555, -73.84971742284323 40.808144588973256, -73.84978622170094 40.80843120310414, -73.85007537310076 40.80963577922925, -73.85014885171852 40.809941876050225, -73.85001283033998 40.809961974807976, -73.85006653410683 40.81015557991432, -73.85002821342356 40.8101599479203, -73.84972642431869 40.81037324066299, -73.84969025966754 40.810478219616044, -73.84965898504082 40.8105690022633, -73.84963556270631 40.81063699630969, -73.84963273630197 40.8107003553316, -73.8496317202059 40.81077029846069, -73.84963124579245 40.81080297244577, -73.85005647101202 40.811416467936894, -73.85021746400645 40.811648597072974, -73.85350092554458 40.811216138078336, -73.85364638254323 40.81182773535826, -73.85339533190141 40.81272099291665, -73.85346190307202 40.8127120248352, -73.85347784614032 40.81277956538176, -73.85385915405851 40.81272819953106, -73.8539761159827 40.8132281415251, -73.85410806170133 40.81324119649663, -73.85424434276364 40.813260335162745, -73.85447790083992 40.81330703827974, -73.85466885025295 40.81335909561571, -73.85486601932841 40.813427800775116, -73.85503832301369 40.813500104244554, -73.85515359541218 40.813561155232, -73.85530164180938 40.813639846581204, -73.85541888642356 40.813715315855546, -73.85549207696394 40.813769542875754, -73.85556410795203 40.813822910221276, -73.85617263354003 40.81373907902231, -73.85632311371776 40.814381580402106, -73.85553380103447 40.81448645037747, -73.85560821043428 40.814629419346204, -73.8556232153689 40.81466457557886, -73.85563340854576 40.81468316832307, -73.85563969439642 40.814703187065845, -73.8556736454638 40.81478273095844, -73.85571059033283 40.81489409679105, -73.85572457628727 40.81493625400782, -73.85573683409633 40.81498882332219, -73.85590070879492 40.815691570798286, -73.85471580574803 40.81584899293677, -73.85461697041713 40.81542511914663, -73.85406939962178 40.81549786302696, -73.8541017966638 40.81563680946904, -73.85414966130867 40.81563045127568, -73.85421609760583 40.81591537726129, -73.85170716880248 40.81624864791752, -73.8516848947621 40.81615351856339)), ((-73.85379768666894 40.81618309053944, -73.85558818222152 40.81594078614886, -73.85581812309884 40.816914536570316, -73.85582331683938 40.81693652782124, -73.85601694857264 40.81775649388592, -73.8559840358328 40.81776095887282, -73.85534846302302 40.817847184682165, -73.85422654077797 40.81799938135169, -73.85379768666894 40.81618309053944)), ((-73.85321757910373 40.810806343376285, -73.85338980564238 40.810748905376364, -73.85345057644 40.81100443255312, -73.85262504844175 40.811118609880225, -73.85258794171693 40.810950355560244, -73.85268399386963 40.81092860971863, -73.85297709822675 40.81086224879797, -73.85310312075491 40.810833715941676, -73.85321757910373 40.810806343376285)), ((-73.85184597385714 40.81122048165508, -73.8521769074682 40.81092392462437, -73.8523321197813 40.810940587350004, -73.85238072985604 40.81114815335165, -73.85184597385714 40.81122048165508)), ((-73.85093855804672 40.811156588671615, -73.85133430504963 40.81110306522451, -73.85137666407923 40.81128395621481, -73.85098091603477 40.81133747980568, -73.85093855804672 40.811156588671615)), ((-73.84735547670682 40.80610712777351, -73.84735600528671 40.80610711766738, -73.84735560178767 40.80610891362991, -73.84735547670682 40.80610712777351)))",X088,6012,X088,X-09,X-09,X-09,X-09,"Randall Ave., Lacombe Ave., Soundview Ave. bet. White Plains Rd. and Olmstead Ave.",209,18,43,10473,X,83.615,False,Pugsley Creek Park,No,100004771,PARK,20100106000000.00000,19060801000000.00000,,DPR,Part,Pugsley Creek Park,Y,Pugsley Creek Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/X088/,Yes,"85, 87",34,15,{24BBADDD-B5F3-4A96-91D5-DCC24378DAE3} +"MULTIPOLYGON (((-73.89868804397167 40.72512780133309, -73.89891304978791 40.72501255645221, -73.89917111839955 40.7253046379225, -73.89869610224552 40.72526569716852, -73.89868804397167 40.72512780133309)))",Q360G,5561,Q360G,Q-05,Q-05,Q-05,Q-05,"55 Dr., Hamilton Pl., Perry Ave.",405,30,104,11378,Q,0.185,False,Whitefish Triangle,Yes,100000196,PARK,20090423000000.00000,,,DPR,True,Whitefish Triangle,N,Whitefish Triangle,Neighborhood Plgd,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360G/,No,30,15,6,{701560BB-5002-4774-A52E-13F431B4CAA7} +"MULTIPOLYGON (((-73.99681516426283 40.69842958658669, -73.99682958285517 40.69839940631606, -73.9968331110768 40.69840037806597, -73.99688882726052 40.69827700039833, -73.99689360845426 40.69827832698207, -73.99690298735315 40.698257558719995, -73.99683991490427 40.698240180720404, -73.99685112906255 40.698216707373874, -73.99688299772382 40.698149999190996, -73.99691261687278 40.69808799971727, -73.99694642009858 40.69801724016275, -73.99697707924409 40.69795306145913, -73.99701273063245 40.69787843153043, -73.99704485929351 40.6978111811982, -73.9971196405367 40.69765464343059, -73.99714985443521 40.697591401199716, -73.99718148465999 40.697525188204814, -73.99721190669786 40.69746150561114, -73.99724191926505 40.697398680286895, -73.99727280857931 40.697334021531915, -73.99730522070024 40.69726617318882, -73.99733466275727 40.697204542805444, -73.99736603821313 40.69713886465503, -73.99740308497883 40.69706131426781, -73.99744781692087 40.69696764216445, -73.99747642806749 40.696907783932545, -73.99750952487764 40.69683850102691, -73.99753793239557 40.69677903359672, -73.997569664792 40.69671261067104, -73.99760258510473 40.69664369424182, -73.9976628524578 40.696517533683064, -73.99772954727234 40.696541485948664, -73.99772665780044 40.69654753823604, -73.99753722467655 40.69694431453666, -73.99753274132607 40.69695370498437, -73.99728763182885 40.697467089696886, -73.99710511452221 40.69784936715411, -73.99699305334475 40.69808464653801, -73.99699287585052 40.69808501934546, -73.99692315241369 40.698231408383975, -73.99693332531291 40.69823421195023, -73.99692482448405 40.69825208689233, -73.99683738424886 40.698435954721646, -73.99681516426283 40.69842958658669)))",B223DG,5110,B223DG,B-02,B-02,B-02,B-02,BQE bet. Clark St. and Pierrepoint St.,302,33,84,11201,B,0.32,False,Brooklyn Heights Promenade,No,100004717,PARK,20100106000000.00000,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DG/,No,52,26,7,{474F024F-07B4-446F-AEF8-8E2EF52D3694} +"MULTIPOLYGON (((-73.86263713398635 40.675342575073294, -73.86307351284678 40.675342493692035, -73.86320604651569 40.67538078009017, -73.86325737291838 40.6755869169704, -73.86254501122616 40.67568724018672, -73.86246202872923 40.67535656972084, -73.86263713398635 40.675342575073294)))",B283,6646,B283,B-05,B-05,B-05,B-05,Belmont Ave. between Forbell St. and Drew St.,305,37,75,11208,B,0.682,False,Belmont Playground (PS 214),Yes,100004078,PARK,20100106000000.00000,19550511000000.00000,265 FORBELL STREET,DPR/DOE,False,Belmont Playground,Y,Belmont Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B283/,No,60,19,8,{8E03F4BE-D299-4BEA-BA01-0DB977D22CAE} +"MULTIPOLYGON (((-73.9887167979584 40.66213202325105, -73.98772104084948 40.6607429108259, -73.98830299464981 40.661093630760504, -73.98813341137944 40.66125689862194, -73.98817887790665 40.66132007812814, -73.98822896235744 40.66138967246653, -73.98826193629311 40.66143549410778, -73.98828422231507 40.66144890596869, -73.98835472698546 40.661491337353304, -73.98842390035036 40.661532969802565, -73.98849393578047 40.661575120093126, -73.98856579458132 40.66161836825153, -73.98861435398197 40.661647592121355, -73.9886625114036 40.66167657459255, -73.98871070788672 40.66170558136128, -73.98886553971242 40.66179876477062, -73.98884169943886 40.66182166619224, -73.9888070596351 40.66185494320787, -73.98876952683433 40.661890998023345, -73.98873325242135 40.66192584355624, -73.9889312054659 40.662044976765316, -73.98876728195827 40.66220244766349, -73.9887167979584 40.66213202325105)))",B255E,6195,B255E,B-07,B-07,B-07,B-07,"S/B Prospect Exwy. bet. 6 Ave., 7 Ave., and 18 St.",307,38,72,11215,B,0.736,False,Park,Yes,100004009,PARK,20100106000000.00000,19530722000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B255E/,No,51,21,7,{F43ADC15-A267-4A88-82F3-61DD63B6DE26} +"MULTIPOLYGON (((-73.94420747204322 40.659691968702035, -73.94413665858598 40.65896535420129, -73.94378980379297 40.65898495787223, -73.94377682352652 40.65885176329459, -73.94339208523071 40.658873506682305, -73.94327388062763 40.65766043783358, -73.94425364498096 40.65760506408965, -73.94459985076328 40.65756791663822, -73.94463203142787 40.657874353722306, -73.94465934357237 40.658134433438256, -73.9446765838925 40.6582985960484, -73.94470531715896 40.6585722012861, -73.94474708881413 40.658969952612004, -73.94511324051349 40.6589471935497, -73.94513061224137 40.65911134803376, -73.94518562268512 40.65963117142895, -73.94420747204322 40.659691968702035)))",B254,5136,B254,B-09,B-09,B-09,B-09,"Winthrop St., Brooklyn Ave., Rutland Rd.",309,40,71,11203,B,5.888,False,Wingate Park,Yes,100004464,PARK,20100106000000.00000,19520228000000.00000,600 KINGSTON AVENUE,DPR/DOE,True,Wingate Park,Y,Wingate Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B254/,No,43,20,9,{2DDE023B-FBCD-444C-9D00-EAF654CDBE32} +"MULTIPOLYGON (((-74.00430982349425 40.738821037632825, -74.00532311593798 40.73882293945005, -74.00524488604957 40.73932265168559, -74.00430208876485 40.73933025232346, -74.00430982349425 40.738821037632825)))",M237,4939,M237,M-02,M-02,M-02,M-02,Hudson St. bet. Gansevoort St. and Horatio St.,102,3,6,10014,M,1.143,False,Corporal John A. Seravalli Playground,Yes,100004482,PLGD,20100106000000.00000,19591117000000.00000,638 HUDSON STREET,DPR,True,Corporal John A. Seravalli Playground,Y,Corporal John A. Seravalli Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M237/,No,66,27,10,{EE1A49F0-7986-4D69-8404-392C8224265F} +"MULTIPOLYGON (((-73.94591164848372 40.80390727753458, -73.9442076503982 40.8062405695578, -73.94142727273162 40.80506372284653, -73.94313133933686 40.80273047148268, -73.94591164848372 40.80390727753458)))",M058,4742,M058,M-11,M-11,M-11,M-11,"Madison Ave, E. 120 St. to E. 124 St.",111,9,25,10027,M,20.165,False,Marcus Garvey Park,No,100004516,PARK,20100106000000.00000,18390904000000.00000,18 MT MORRIS PARK WEST,DPR,False,Marcus Garvey Park,Y,Marcus Garvey Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M058/,No,68,30,13,{89508D60-46E0-4241-82B7-E680445B646F} +"MULTIPOLYGON (((-74.07791983658133 40.6041284763553, -74.07881981783973 40.603820179419714, -74.07901945566185 40.604276371192086, -74.07930535697521 40.60435731762746, -74.07940882113425 40.60456148013079, -74.08000587828364 40.60554073155176, -74.08129030689203 40.605742695403165, -74.08116872745273 40.60589766663522, -74.08087403817363 40.60588580557577, -74.0807818728615 40.605880162882336, -74.08068385349496 40.60587298343139, -74.08055506874341 40.60586169296787, -74.08042327166433 40.605847939738815, -74.08025762347296 40.60582746869307, -74.08007941358039 40.605801432830056, -74.07993922439012 40.60577798176693, -74.07982674463967 40.605757245275825, -74.07921148452107 40.60564154142278, -74.07914132351922 40.60562885457188, -74.07906577409958 40.60561565988857, -74.0789795940365 40.605601196421325, -74.07885738521745 40.605581755214516, -74.07874129464392 40.605564437620096, -74.07862499273205 40.605548206082716, -74.07852744132255 40.60553544663869, -74.07801182771928 40.605476789257956, -74.07802164052526 40.605397001738055, -74.07802942131487 40.60531844300793, -74.07803510562273 40.60524357243787, -74.07803939464452 40.605161730071224, -74.07804146363505 40.605092088585074, -74.07804205450745 40.60501333751923, -74.07804083481653 40.60493621942838, -74.07803794103592 40.60486124031334, -74.07803327114233 40.6047850106777, -74.07802522513842 40.60469218220636, -74.07801524637136 40.60460457357183, -74.0780025114472 40.604514200402065, -74.07798517415378 40.60441238381491, -74.07797304781216 40.60435035596588, -74.07795545747791 40.604269546927334, -74.07793588131771 40.604188965263226, -74.07791983658133 40.6041284763553)))",R075G,6055,R075G,R-02,R-02,R-02,R-02,"SI Expressway, Hylan Blvd., Narrows Rd. S.",502,50,122,10305,R,6.402,False,Bradys Pond Park,No,100004534,PARK,20100106000000.00000,19530117000000.00000,,DPR,True,Bradys Pond Park,N,Bradys Pond Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R075G/,No,64,24,11,{4E03694D-18E3-42F1-B189-80C053DC378E} +"MULTIPOLYGON (((-73.8918483849886 40.76260682700348, -73.89247532254424 40.76254111056127, -73.89257793187842 40.763640942525406, -73.89204381493904 40.76369693013665, -73.8918483849886 40.76260682700348)))",Q366,5447,Q366,Q-03,Q-03,Q-03,Q-03,25 Ave. bet. 76 St. and 77 St.,403,22,115,11370,Q,1.502,False,Bulova Park,Yes,100000240,PARK,20090423000000.00000,19531201000000.00000,76-01 25 AVENUE,DPR,True,Louis C. Moser Playground,Y,Louis C. Moser Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q366/,No,34,13,14,{10AE9C9E-C348-45FF-88D1-9D3282A1DEC7} +"MULTIPOLYGON (((-73.97974062578366 40.725335854110064, -73.97980543154948 40.72536314371597, -73.97986854138821 40.72538971978561, -73.97974056004357 40.7255637828525, -73.97967744772207 40.72553721211595, -73.97961263828728 40.72550992604007, -73.97974062578366 40.725335854110064)))",M336,4996,M336,M-03,M-03,M-03,M-03,E. 8 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.066,False,De Colores Cmty Yard and Center,No,100004282,PARK,20100106000000.00000,20021120000000.00000,313 EAST 8 STREET,DPR,False,De Colores Community Yard and Cultural Center,N,De Colores Cmty Yard and Center,Greenthumb,Garden,http://www.nycgovparks.org/parks/M336/,No,74,27,12,{9E995177-1CEB-4800-B92A-5012E2DD1646} +"MULTIPOLYGON (((-74.18843647511935 40.53678894445008, -74.18895057411254 40.53644381724499, -74.18893274774645 40.536446345549905, -74.18920419369235 40.53624947596838, -74.18956226514837 40.53598065092696, -74.19014462516832 40.535500001992745, -74.19091686380204 40.534805503613725, -74.19129525145958 40.534445654318155, -74.19139720556015 40.53434494566913, -74.19140949297275 40.53435958850826, -74.19174366583242 40.53399403272109, -74.19177710680069 40.53395745048278, -74.19176068823276 40.53394439411173, -74.1918249505887 40.533875600660075, -74.1920168379027 40.533670184257, -74.1923648415144 40.53441102398015, -74.19233183923713 40.534419962995855, -74.19224496328958 40.534441421334094, -74.19215604297106 40.534466144746425, -74.19205010084394 40.53449839797628, -74.19201006998242 40.53451148929142, -74.19191389479343 40.534545037231574, -74.19183340844782 40.53457547366343, -74.19175168006133 40.534608684843775, -74.19170688177567 40.534627913019705, -74.19163218815095 40.53466165628789, -74.19156131120798 40.53469570292137, -74.19149073830916 40.53473166983344, -74.19145297347278 40.53475180381823, -74.191411032312 40.53477343963252, -74.19136874746597 40.53479624489169, -74.1913092265695 40.53483012385228, -74.19125042119573 40.53486576572741, -74.19118793156045 40.53490618651424, -74.1911154734383 40.53495664675508, -74.19105231682127 40.53500410531585, -74.19100162832832 40.535044791829876, -74.19097055977636 40.53507097778033, -74.19092028947716 40.53511554664596, -74.1908904931326 40.53514335321315, -74.19087344216106 40.535159763995296, -74.19083821257522 40.53519491529512, -74.19053512003774 40.535485391003405, -74.19026553681923 40.535754908184096, -74.19010201754843 40.53591381452365, -74.18988210653762 40.53611837619214, -74.18970835679218 40.53627311952536, -74.18962105519464 40.5363487119005, -74.18938758853282 40.53652361264675, -74.18915555722991 40.53668896403683, -74.18893132291285 40.53684126065734, -74.18877582960876 40.536942784553965, -74.18865831617485 40.5370173848477, -74.18857029253213 40.53707210243103, -74.18836666614197 40.53720495318163, -74.18809690339592 40.537375989918445, -74.18786194947116 40.537519980203946, -74.18758366039422 40.53768495380572, -74.18731726704023 40.537837422383845, -74.18695638516525 40.53803581093392, -74.18666431217726 40.538189771452764, -74.18638401447646 40.538340843024045, -74.18615676037695 40.538456136343136, -74.1859911028728 40.538538002662136, -74.18582434822126 40.53829802587992, -74.18664014297455 40.537870153475154, -74.18663496727126 40.537865127029306, -74.18694015399038 40.53770028664609, -74.18730922726303 40.537491934827415, -74.1876745904871 40.53727548761829, -74.1881044531936 40.53700707300009, -74.18843647511935 40.53678894445008)))",R098,6081,R098,R-03,R-03,R-03,R-03,"Drumgoole Rd. E., from Huguenot Ave. to Ida Ct.",503,51,123,10312,R,5.848,False,Park,No,100004136,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Neighborhood Park,Parkway,http://www.nycgovparks.org/parks/R098/,No,62,24,11,{8D86B192-F3A2-47BD-978B-1DE8567FF1F0} +"MULTIPOLYGON (((-73.89108161224057 40.82524839248551, -73.89122501021002 40.82517403519362, -73.89122695539025 40.8251741162721, -73.89122823231455 40.825174718107526, -73.89122889269883 40.825175386898565, -73.89122933131274 40.82517611221172, -73.89122951022811 40.82517689040919, -73.89122955779787 40.82517752260236, -73.89122951759639 40.82517818442915, -73.89122933531559 40.825178739863354, -73.89122882631558 40.82517973713299, -73.89116986059194 40.82524604536501, -73.89092450933713 40.82552720779242, -73.89092164588129 40.825529739980496, -73.89091981265327 40.82553078192142, -73.89091804395454 40.82553150965022, -73.89091622471553 40.825531972585345, -73.8909144092956 40.8255322752357, -73.89091301496663 40.82553242159807, -73.890911150059 40.82553254050039, -73.8909095947881 40.825532516516674, -73.89090861695433 40.82553241743755, -73.89090713663683 40.82553222873394, -73.89090635687039 40.825532070409466, -73.89090572880289 40.82553193564135, -73.89090486978266 40.82553167278431, -73.8909036672114 40.82553127002534, -73.89090207265401 40.82553062466206, -73.89090054225254 40.82552989291179, -73.89089972393478 40.825529387859795, -73.8908989387948 40.825528891844094, -73.89089753227358 40.82552779821157, -73.89089659842132 40.825526903135355, -73.89089569241904 40.82552565148907, -73.89084021518475 40.825398086933106, -73.89083915568466 40.82539501974077, -73.89083841863764 40.82539194564973, -73.89083816424875 40.82538876125453, -73.89083829074892 40.82538607969674, -73.89083862514889 40.825383848583854, -73.89083906709935 40.825381815681894, -73.89083935283385 40.82538106764008, -73.89083957549008 40.82538047172242, -73.89083997194665 40.825379433825624, -73.89084044806737 40.82537825012391, -73.89084115055344 40.82537709995481, -73.89084149051703 40.825376535665534, -73.89084191712591 40.825375905722055, -73.89084271293565 40.82537495465093, -73.89084437816345 40.82537298504114, -73.8908481200473 40.82536972068253, -73.8908485224893 40.82536936986996, -73.89084870527827 40.825369229565574, -73.89085359596075 40.82536662635784, -73.89087698693803 40.825354497199854, -73.89108161224057 40.82524839248551)))",X022,5630,X022,X-02,X-02,X-02,X-02,"Hoe Ave., Westchster Ave., W. Farms Rd.",202,17,41,10459,X,0.2,False,Benjamin Gladstone Square,Yes,100004036,PARK,20100106000000.00000,18780731000000.00000,,DPR,True,Benjamin Gladstone Square,Y,Benjamin Gladstone Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X022/,No,85,32,15,{3BAB43C6-1E22-4295-BE7F-84E3A0B686DD} +"MULTIPOLYGON (((-74.07494471814765 40.63763524739454, -74.07494208924992 40.637634299960794, -74.07494241205222 40.63763542900134, -74.0738304023005 40.63772312679742, -74.0738001925701 40.6375150119166, -74.07362350048223 40.63661299772223, -74.07361940401897 40.63659431997519, -74.07361924718677 40.63657538305774, -74.07362303642337 40.63655666784304, -74.07363067413256 40.636538646265265, -74.07364196577232 40.6365217768125, -74.07365662810783 40.63650648471011, -74.07367428920688 40.63649315741843, -74.0736945002489 40.63648213381889, -74.07371675087725 40.63647369069679, -74.07374047865677 40.636468043635695, -74.07376508088161 40.636465335303406, -74.07463536977704 40.636303135916975, -74.07469701145415 40.63667321918667, -74.07477820483513 40.6370593513552, -74.07486879077133 40.63741156018398, -74.07492984289853 40.63759142432186, -74.07494471814765 40.63763524739454)), ((-74.07494471814765 40.63763524739454, -74.07494253785347 40.637635871974766, -74.07494241205222 40.63763542900134, -74.07494471814765 40.63763524739454)))",R043,6335,R043,R-01,R-01,R-01,R-01,Murray Julbert Ave. bet. Victory Blvd. and Hannah St.,501,49,120,10301,R,3.195,False,George M. Cromwell Recreation Center,Yes,100004866,PARK,20100106000000.00000,19340801000000.00000,,DPR,True,Lyons Pool,N,Lyons Pool,Recreation Center,Buildings/Institutions,http://www.nycgovparks.org/parks/R043/,No,61,23,11,{EEA890BD-F0DC-4A5B-8855-517A930D54B2} +"MULTIPOLYGON (((-73.9954797752875 40.688193804919436, -73.99559916546544 40.687944406044764, -73.99656786297727 40.688259589000836, -73.99646913350682 40.688466620351, -73.9954797752875 40.688193804919436)))",B326,4882,B326,B-06,B-06,B-06,B-06,Clinton St. between Verandah Pl. and Congress St.,306,39,76,11201,B,0.585,False,Cobble Hill Park,Yes,100003840,PARK,20100106000000.00000,19630307000000.00000,172 CONGRESS STREET,DPR,True,Cobble Hill Park,Y,Cobble Hill Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B326/,No,52,26,7,{2E33AF23-CA19-444F-B221-2A10214252C0} +"MULTIPOLYGON (((-73.76696059493914 40.755312890535286, -73.7668981072229 40.75516457552889, -73.76689878349941 40.75516522436299, -73.7668204253601 40.75497802745661, -73.76665346939143 40.75459792331064, -73.76664144862531 40.754570555917226, -73.76664166652425 40.75457055365714, -73.76663300819831 40.754550475487214, -73.76659328548456 40.75447078734651, -73.76653493163893 40.75436452434402, -73.76645506827673 40.75423399131923, -73.76643573492667 40.75420031992427, -73.76638328938986 40.754115684628765, -73.76632630374127 40.754032764572315, -73.76626487697723 40.75395169862738, -73.76626216584997 40.75394645306631, -73.76626062800324 40.7539409388328, -73.766260306717 40.7539353082007, -73.76626121093044 40.753929713374106, -73.76626331523211 40.753924309189024, -73.76626656226658 40.753919242311774, -73.76627086273105 40.75391465213999, -73.76627610013765 40.75391066360786, -73.76628212963199 40.75390738628347, -73.76628878748608 40.75390490898483, -73.76629589227866 40.75390330068293, -73.766303247283 40.75390260510347, -73.76631065230835 40.75390284075101, -73.76631790488092 40.75390400181167, -73.76632480735503 40.753906056366816, -73.76633117046282 40.75390894730046, -73.76633681803473 40.75391259681159, -73.76634159884769 40.75391690463715, -73.76645517830056 40.754073248050524, -73.76656056169111 40.754232876903075, -73.76657158145746 40.75425052128753, -73.76664720897867 40.754384168613754, -73.76674070408806 40.75456948903205, -73.7667535639587 40.75459497785219, -73.76689924648606 40.75493816658425, -73.7668997513537 40.754938052340805, -73.76691197352713 40.75496814955431, -73.76705145501468 40.75531162359262, -73.7670516450371 40.75531180497908, -73.76706237643431 40.75533851594974, -73.76713180381319 40.75551131080485, -73.76713184986679 40.75551676797907, -73.767130696563 40.75552215519057, -73.7671283775913 40.755527320321534, -73.76712495622387 40.755532117617435, -73.76712053003081 40.75553641400024, -73.76711522259697 40.75554008725041, -73.76710918348715 40.75554303591286, -73.76710258115371 40.75554517568019, -73.76709560172078 40.75554644839557, -73.76708844071698 40.75554681573248, -73.7670812994878 40.75554626909286, -73.767074379294 40.75554482419235, -73.76706787302489 40.755542520142825, -73.76706196400474 40.755539422151735, -73.76705681771618 40.75553561790309, -73.76705257944407 40.75553121395077, -73.76696059493914 40.755312890535286)), ((-73.762104464558 40.74905008440461, -73.76169202183944 40.74812383045064, -73.7616919736857 40.74812372048882, -73.7616747828461 40.74808511429506, -73.7616748728867 40.748085100073254, -73.76162874701232 40.7479809228283, -73.76161597818508 40.74795141101727, -73.76160771211684 40.74792098460151, -73.76160351325693 40.747891905660886, -73.76160168541588 40.74786268574502, -73.76160342911967 40.74785949794813, -73.76160583379252 40.74785656906503, -73.76160883402738 40.747853978205086, -73.76161234906317 40.74785179363983, -73.76161628633358 40.747850073710815, -73.76162053910217 40.747848865924055, -73.7616249947737 40.747848200663825, -73.76162953250295 40.747848097491236, -73.76163403150602 40.7478485588578, -73.76163837105706 40.747849571006114, -73.76164243639226 40.74785110848434, -73.7616461175422 40.747853129641605, -73.76168399212028 40.74790385717381, -73.76171025649795 40.747949737544836, -73.76177518901966 40.748084410690026, -73.76219867573317 40.74904376736428, -73.7621998897177 40.74904368612325, -73.7622258323663 40.74910528769703, -73.7623449437527 40.74938811336285, -73.76234479568821 40.749393438669706, -73.76234351238999 40.74939867518538, -73.76234112632613 40.74940368339781, -73.76233770191268 40.74940833016448, -73.76233332958049 40.749412492302135, -73.76232812576872 40.749416058387716, -73.76232222935647 40.749418933253786, -73.76231579691357 40.74942104158045, -73.7623090003358 40.749422326990285, -73.76230201854618 40.74942275473261, -73.76229503748584 40.749422314385, -73.76228824420268 40.749421017139596, -73.76228181855977 40.749418896686436, -73.76227593204474 40.74941601101215, -73.76227073950679 40.74941243517876, -73.76213564743165 40.7491201129826, -73.76210332045028 40.74905016128644, -73.762104464558 40.74905008440461)), ((-73.76244465660675 40.74960396943089, -73.76277379806808 40.75035242978374, -73.76291593532008 40.750672953408376, -73.76292905195281 40.75070253241504, -73.76306265789039 40.75101772527646, -73.76304892819643 40.75102564132524, -73.76303366331105 40.751031717175465, -73.76301728538371 40.75103578439939, -73.76300024833688 40.75103773046634, -73.76298302127871 40.75103750141025, -73.76283900091926 40.750712776736954, -73.76265829738846 40.75031279186874, -73.76265899619071 40.750312742880126, -73.76235603346036 40.7496209548301, -73.7623569696688 40.74961476485953, -73.76235929169576 40.74960878936776, -73.76236293022738 40.7496032065126, -73.76236777573256 40.74959818266219, -73.76237368558681 40.74959386700664, -73.76238048171668 40.74959038795132, -73.76238796363805 40.74958784954156, -73.76239590847189 40.74958632696025, -73.76240407923596 40.749585865644384, -73.76241223195943 40.74958647859842, -73.76242012514535 40.749588149115, -73.7624275233363 40.74959082718049, -73.76243420658011 40.749594431295556, -73.76243997395366 40.749598856586886, -73.76244465660675 40.74960396943089)), ((-73.76317692781195 40.751227107116364, -73.76325752432773 40.75135477137396, -73.7633449167186 40.751479821849294, -73.76343896128745 40.751602050214274, -73.76353950011094 40.75172125171297, -73.763646363398 40.75183722786812, -73.76377785447778 40.7519636697167, -73.76391613446762 40.75208585241121, -73.76391641443864 40.75208737844722, -73.76391638293032 40.752088918252994, -73.76391604006723 40.75209043670891, -73.76391539426905 40.752091896911345, -73.76391446105093 40.75209326467279, -73.76391326184539 40.75209450671835, -73.76391182636112 40.75209559339201, -73.76386404919336 40.752111744242185, -73.76385876467168 40.75211298871827, -73.76385328592598 40.75211357182235, -73.76384775510728 40.75211347853714, -73.76384231668058 40.75211270915889, -73.76383711029447 40.75211128648662, -73.7638322731847 40.752109245921545, -73.76382792950062 40.75210663994782, -73.76382419267368 40.752103538137256, -73.76380094318213 40.75208616017012, -73.76370200388385 40.751999457956565, -73.76360715345697 40.751910151671275, -73.76351650991305 40.751818353229645, -73.76342145990422 40.751709365753456, -73.76333187373923 40.751597733821725, -73.76324787635534 40.75148361619346, -73.76316958675365 40.75136717521709, -73.76309711800208 40.751248575929885, -73.76310585937146 40.75124155192673, -73.76311594188981 40.75123565901888, -73.76312711637289 40.75123104257614, -73.76313910532664 40.75122781729264, -73.76315161124559 40.75122606450275, -73.76316432374328 40.75122582499153, -73.76317692781195 40.751227107116364)), ((-73.7648745104312 40.75277319989574, -73.76478665936014 40.75272544845747, -73.76469683029158 40.75267987304303, -73.76460071948082 40.75263594976171, -73.76459632870792 40.752631236530306, -73.76459302553303 40.75262603474406, -73.76459090181032 40.75262048867223, -73.7645900162026 40.752614752421785, -73.76459039183887 40.75260898272858, -73.76459201867598 40.7526033407631, -73.76459485234966 40.752597982222746, -73.76459881537137 40.752593053732014, -73.76460379712539 40.75258869374308, -73.76460965864638 40.752585020839, -73.76461624089593 40.7525821373527, -73.76462336004849 40.75258012305366, -73.76463081933541 40.75257903427187, -73.76463841261366 40.75257889940224, -73.76464593027063 40.752579723419565, -73.7646531651605 40.75258148338793, -73.76465991615049 40.75258413026889, -73.76483779240544 40.75267615724605, -73.76501304441254 40.75277105211656, -73.7650133335008 40.75277100858139, -73.7650171383346 40.752773320745355, -73.76518422642715 40.752878191645074, -73.76534697683867 40.75298693645755, -73.76535058567028 40.7529894301139, -73.76536718030724 40.75300092109078, -73.76536725354401 40.75300097256896, -73.76553776234002 40.75311904507311, -73.76554091166842 40.753124584209324, -73.76554281887327 40.753130441398426, -73.76554343122507 40.75313645804346, -73.76554273390938 40.75314246932133, -73.76554074289993 40.75314831047133, -73.76553751440959 40.75315382311832, -73.76553313659826 40.753158856156084, -73.76552772954729 40.753163272951674, -73.76552143933903 40.7531669513331, -73.76551443802505 40.753169792594484, -73.7655069177179 40.75317171788197, -73.76549908346087 40.753172675383404, -73.76549114731341 40.75317263851518, -73.76548332834187 40.75317160862381, -73.76547583959649 40.75316961405879, -73.76528468223941 40.753032802126974, -73.76516705444594 40.7529535688494, -73.76504664734954 40.75287678726991, -73.76494759595775 40.75281669865114, -73.76489683230507 40.7527861470476, -73.7648745104312 40.75277319989574)), ((-73.76573995827127 40.7532857723201, -73.76586450531754 40.753398002004346, -73.76598397939523 40.75351337842896, -73.76609824241875 40.7536317671533, -73.76620716222001 40.75375303374882, -73.76621452941306 40.75376336943122, -73.76621692997384 40.75376870081211, -73.76621813964051 40.753774259405766, -73.76621812578387 40.753779894760996, -73.76621688895042 40.7537854510909, -73.7662144628338 40.7537907753774, -73.76621091425912 40.75379572187359, -73.76620633962104 40.75380015479822, -73.76620086486807 40.75380395283814, -73.76619464194347 40.7538070109421, -73.76618783929325 40.7538092457046, -73.76618064541529 40.75381059627352, -73.76617325701774 40.753811024326296, -73.7661658766316 40.75381051946784, -73.76615870670888 40.753809093815775, -73.76615194604796 40.75380678829659, -73.76614577797687 40.75380366541766, -73.76614037271577 40.75379981107303, -73.76606043316423 40.753701838199966, -73.76597479633935 40.75360669029733, -73.76588363447146 40.75351455861046, -73.765787130464 40.753425629003, -73.76568547908364 40.75334008015855, -73.76568017289794 40.75333568298668, -73.76567594890315 40.75333065225679, -73.76567293681808 40.7533251413194, -73.76567122605584 40.75331931605013, -73.76567086927923 40.75331335395635, -73.76567187769597 40.753307435162654, -73.76567422106814 40.75330173970922, -73.76567782655988 40.75329643854453, -73.76568258702648 40.75329169354201, -73.76568835749678 40.753287647587584, -73.76569496228126 40.75328442369342, -73.76570220209297 40.753282120509965, -73.76570985762204 40.75328080602968, -73.76571769781211 40.753280521206044, -73.76572548343485 40.75328127365693, -73.76573297891596 40.75328304219166, -73.76573995827127 40.7532857723201)), ((-73.76398520842287 40.752153939163584, -73.7639883256288 40.75215412385132, -73.76399135614739 40.75215471178938, -73.7639942088576 40.75215568658188, -73.76399679860654 40.75215701833763, -73.76399904974352 40.75215866908024, -73.76400089613531 40.75216058824573, -73.7641184780309 40.75225199751576, -73.76424122907896 40.75233938836698, -73.76436891541917 40.75242259010833, -73.76450128656757 40.75250144372196, -73.76450562011449 40.75250358228521, -73.76450943913142 40.7525062276834, -73.76451264083968 40.752509311267815, -73.76451514027687 40.752512749117464, -73.76451687144909 40.75251645104659, -73.76451778615642 40.75252031790073, -73.7645186607587 40.752526485473055, -73.76451819125401 40.75253267911397, -73.76451639126601 40.75253872955546, -73.76451330992056 40.75254447390593, -73.7645101176218 40.75254844222594, -73.76450619492749 40.7525520110277, -73.7645016261826 40.752555103940324, -73.76449651109097 40.75255765452988, -73.76449095997563 40.752559607190356, -73.764485091401 40.752560919840185, -73.76447993751638 40.75256104527928, -73.76447481890195 40.752560572852374, -73.76446985393417 40.752559513607565, -73.76446666390596 40.75255848500717, -73.76432275880939 40.75247266573336, -73.76418407554873 40.75238201042931, -73.7640508964951 40.75228670249535, -73.76392349095369 40.75218693521125, -73.76392171363948 40.75218557270064, -73.76392024727204 40.752184012715304, -73.7639191272414 40.7521822931492, -73.76391838298821 40.752180459988644, -73.76391803329288 40.7521785600985, -73.76391808864022 40.7521766421279, -73.76391854648635 40.752174755599476, -73.76391939481755 40.752172949116165, -73.76392061334067 40.752171268562336, -73.76394120330599 40.75216358169154, -73.76396283337664 40.7521577790121, -73.76398520842287 40.752153939163584)))",Q268,6252,Q268,Q-11,Q-11,Q-11,Q-11,Bell Blvd. bet. 48 Ave. and Horace Harding Exwy. Sr. Rd. N.,411,23,111,11364,Q,1.652,False,Bell Malls,Yes,100000357,PARK,,,,DPR,False,Bell Malls,Y,Bell Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q268/,No,"25, 26",11,6,{645F958E-5115-4E5F-AEE5-419A40651CA7} +"MULTIPOLYGON (((-73.85437304470948 40.83215036213171, -73.8542757129994 40.83171573830232, -73.85531628055648 40.832017919361334, -73.85437304470948 40.83215036213171)))",X148M,5644,X148M,X-09,X-09,X-09,X-09,"Olmstead Av, Ellis Av, N/B Cross Bronx Exwy Service Rd",209,18,43,10462,X,0.52,False,Chief Dennis L. Devlin Park,Yes,100005053,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Chief Dennis L. Devlin Park,Y,Chief Dennis L. Devlin Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148M/,No,87,34,14,{0EF0EE5C-9293-4918-A737-4F3EFB9E1941} +"MULTIPOLYGON (((-73.94681447373296 40.694806169299774, -73.9467583433475 40.694523907306184, -73.94663721870548 40.69453768938945, -73.94651732812012 40.69455133143872, -73.9463913474082 40.69456566482188, -73.94626334450211 40.69458022945524, -73.94620833370136 40.69430358510647, -73.94717588676384 40.694193490809944, -73.94728379684469 40.6947523427527, -73.94681447373296 40.694806169299774)))",B348,5193,B348,B-03,B-03,B-03,B-03,"Tompkins Ave., Willoughby Ave., Vernon Ave.",303,36,79,11206,B,0.907,False,Willoughby Playground (PS 23),Yes,100004256,PARK,20100106000000.00000,19630715000000.00000,545 VERNON AVENUE,DPR/DOE,False,Willoughby Playground,Y,Willoughby Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B348/,No,56,25,8,{6F41D8A8-70A5-410E-8E9D-A91465F326DA} +"MULTIPOLYGON (((-73.88722954312396 40.804269741978885, -73.88829337302496 40.80369580802807, -73.89017158953105 40.804587678845124, -73.8894210392075 40.805514822168035, -73.88934253383417 40.80561179632608, -73.88916869256369 40.80582653612991, -73.88902015898294 40.80600872628013, -73.88730955208865 40.80626465096882, -73.88691900554622 40.80466405187172, -73.88736457386453 40.804431419061125, -73.88722954312396 40.804269741978885)))",X307,69204,X307,X-02,X-02,X-02,X-02,Viele Ave. bet. Tiffany St. and Barretto St.,202,17,41,10474,X,12.224,False,Barretto Point Park,Yes,100003965,PARK,,20010821000000.00000,,DPR,True,Barretto Point Park,Y,Barretto Point Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X307/,Yes,84,32,15,{64FEBFC0-EF7F-41B3-A8E7-860583ACAB09} +"MULTIPOLYGON (((-73.98558059554601 40.72417079663412, -73.98575077477548 40.72393579841674, -73.98614519355037 40.72410214449556, -73.98597504725434 40.724337100970615, -73.98580336766098 40.72457417229387, -73.98540894576223 40.724407824154056, -73.98558059554601 40.72417079663412)))",M259,4951,M259,M-03,M-03,M-03,M-03,"Ave. A, E. 3 St. to E. 4 St.",103,2,9,10009,M,0.563,False,McKinley Playground,Yes,100004677,PLGD,20100106000000.00000,19591217000000.00000,162 EAST 4 STREET,DPR/DOE,Part,McKinley Playground,Y,McKinley Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M259/,No,74,27,12,{E3EF0D2D-5DCC-4B39-BC1A-9A425F817457} +"MULTIPOLYGON (((-73.82979219391672 40.76343816720938, -73.82979759064203 40.763437836592125, -73.82981281279767 40.76343932240169, -73.82982289020518 40.76344171552389, -73.82983246692285 40.76344538662408, -73.82984298213542 40.76345071964243, -73.82985036613024 40.76345736817704, -73.8298551033012 40.76346162466063, -73.82986041344084 40.76346969022956, -73.82986522075565 40.763478479062485, -73.82986826116189 40.76348675109705, -73.82986924375162 40.763491551344025, -73.82986739534151 40.763504394330994, -73.82986449379557 40.763512235253486, -73.82985836619417 40.763521424872, -73.82985126689984 40.7635289660298, -73.82984349782876 40.76353443143235, -73.82983631944798 40.763539086351024, -73.82983273053641 40.76354060920862, -73.82982711116485 40.76354278643625, -73.82857148583197 40.76385746174601, -73.8285691324703 40.76385748165739, -73.8285624259521 40.763855916504234, -73.82855616232305 40.76385345420537, -73.82855266956547 40.76385119233996, -73.82854960152817 40.763848650148674, -73.82854689124642 40.76384423633798, -73.828546111293 40.76384080785189, -73.82854617918275 40.763836979001915, -73.8285478330249 40.76383126955436, -73.82855072948435 40.76382639042142, -73.82856095237344 40.76382012190428, -73.82925389240997 40.76360434877465, -73.82958402742831 40.763501546856205, -73.8297787576118 40.76344090830892, -73.82979219391672 40.76343816720938)))",Q100,5884,Q100,Q-07,Q-07,Q-07,Q-07,Northern Blvd Bet. Linden Pl. and Union St.,407,20,109,11354,Q,0.421,False,Flushing Greens,Yes,100000157,PARK,20090423000000.00000,18751005000000.00000,,DPR,True,Flushing Greens,N,Flushing Greens,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q100/,No,40,16,6,{813D0F32-8C30-4F03-9825-C14E65925BFA} +"MULTIPOLYGON (((-73.89059698784907 40.66602983900571, -73.89094642931558 40.66597993818471, -73.89095608749417 40.66601769699397, -73.8909652439196 40.66605349039957, -73.89061611554851 40.66610334654949, -73.89059698784907 40.66602983900571)))",B485,5276,B485,B-05,B-05,B-05,B-05,Bradford St. between Dumont Ave. and Livonia Ave.,305,42,75,11207,B,0.061,False,Ps 53,No,100004082,PARK,20100106000000.00000,20040408000000.00000,522 Bradford St,DPR,False,P.S. 53,N,Ps 53,Greenthumb,Garden,http://www.nycgovparks.org/parks/B485/,No,60,19,8,{64F849CE-71DF-4116-AB9C-C21D728B3D2D} +"MULTIPOLYGON (((-73.99290679345019 40.665141246099935, -73.99113617170701 40.664081146615636, -73.99089394124486 40.66393611399085, -73.9908943445565 40.66393572680085, -73.99104735655251 40.664027342007515, -73.99112489324419 40.6640737660169, -73.99115199699712 40.66408999360323, -73.99130335658131 40.66418061687236, -73.99134761007163 40.66420711339164, -73.99141189145087 40.664245599960886, -73.99147303693353 40.66428220868569, -73.99153068584845 40.664316725221695, -73.99158544243997 40.6643495098248, -73.99160982904186 40.664364110772006, -73.9920220840173 40.664610935521715, -73.99205465691253 40.66461376989893, -73.99209242644301 40.66461377250141, -73.99213760161228 40.6646115198053, -73.99215611649181 40.66460926527666, -73.99217537173688 40.664606447072366, -73.99219166466122 40.664603064040314, -73.99220499644714 40.664599117982796, -73.9922168465137 40.66459460719996, -73.99245160803689 40.664511758261106, -73.99247906702571 40.66452835026619, -73.9923152804799 40.664686923011686, -73.99230181636642 40.66469995798105, -73.99225174457818 40.664748436599446, -73.99239630888684 40.66483498853368, -73.9924671473324 40.66487740029271, -73.99253578757207 40.664918496211456, -73.99260662737763 40.66496090788426, -73.99290719557494 40.66514085800237, -73.99290679345019 40.665141246099935)), ((-73.99216060523004 40.66455203688973, -73.99229907082994 40.66441958754011, -73.99238600025389 40.66447211412272, -73.99216060523004 40.66455203688973)))",B255B,4825,B255B,B-07,B-07,B-07,B-07,Prospect Exwy. bet. 4 Ave. and 5 Ave.,307,38,72,11215,B,0.113,False,Strip,No,100004012,PARK,20100106000000.00000,19520618000000.00000,604 5 AVENUE,DPR,True,Park,N,Park,Mall,Strip,http://www.nycgovparks.org/parks/B255B/,No,52,20,7,{DBF833AF-AF5F-40A8-A78F-93DF149D6D00} +"MULTIPOLYGON (((-73.8845285251959 40.83656695396707, -73.88460288051562 40.83659164070253, -73.88487053239054 40.83668050604113, -73.88480550117696 40.83679461390636, -73.88446322451821 40.83668097312375, -73.8845285251959 40.83656695396707)))",X339,6589,X339,X-03,X-03,X-03,X-03,Bryant Ave. at E. 174 St.,203,17,42,10460,X,0.131,False,Angie Lee Gonzales Garden,No,100004102,PARK,20100106000000.00000,20021120000000.00000,1768 BRYANT AVENUE,DPR,False,Angie Lee Gonzales Garden,Y,Angie Lee Gonzales Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X339/,No,85,32,15,{07504955-5B9D-4761-8EF9-16220D8ACE0E} +"MULTIPOLYGON (((-74.00926104306279 40.71705513782387, -74.00927240762807 40.71705808698013, -74.00962540081542 40.71723138638597, -74.00963092368326 40.71723519868368, -74.0096339776648 40.71723860775925, -74.00963598112095 40.717245078656845, -74.00963615235025 40.71725062578447, -74.00963331163956 40.71725704755942, -74.00962950013032 40.717261330704126, -74.00962520676892 40.71726452247077, -74.009620128511 40.717266188838856, -74.00961318728221 40.717267128650654, -74.00960718798602 40.71726701478666, -74.00922501497263 40.717222032247776, -74.00921542208638 40.71721887852928, -74.00920401091706 40.71721287484104, -74.00919626137616 40.71720548317322, -74.00918991313559 40.71719815262775, -74.00918444274959 40.717188498695904, -74.0091855435412 40.71718075422148, -74.00920044617749 40.717075911146374, -74.00920157938451 40.71707152827328, -74.00920702879884 40.717066499389325, -74.00921971777962 40.71706130693327, -74.00923386981057 40.71705771636588, -74.00924784212593 40.71705542974976, -74.00926104306279 40.71705513782387)))",M025,5687,M025,M-01,M-01,M-01,M-01,"Hudson St., Duane St.",101,1,1,10013,M,0.115,False,Duane Park,Yes,100004491,PARK,20100106000000.00000,17970620000000.00000,,DPR,False,Duane Park,Y,Duane Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M025/,No,66,26,10,{337F7BA2-EA6A-41B5-B430-E3729DEDA06C} +"MULTIPOLYGON (((-73.94328104323746 40.74758079295649, -73.94315807128933 40.74740870498013, -73.94352736494127 40.74748292357808, -73.94328104323746 40.74758079295649)))",Q036A,6138,Q036A,Q-02,Q-02,Q-02,Q-02,"44 Dr., Hunter St. Crescent St.",402,26,108,11101,Q,0.1,False,Rafferty Triangle,Yes,100000399,PARK,20090423000000.00000,,,DPR,False,Rafferty Triangle,Y,Rafferty Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q036A/,No,37,12,12,{5E9FE19B-4D05-4ED3-B00F-A6B992070F6A} +"MULTIPOLYGON (((-74.08041544162526 40.643755620070365, -74.0801364156012 40.6438878056465, -74.07979867581511 40.64404780599148, -74.07926883154082 40.64338359246172, -74.07989008691861 40.643089279214266, -74.08041544162526 40.643755620070365)))",R111,5079,R111,R-01,R-01,R-01,R-01,Wall St. bet. St Marks Pl. and Belmont Pl.,501,49,120,10301,R,1.37,False,Lt . Lia Playground,Yes,100004380,PARK,20100106000000.00000,19690805000000.00000,49 BELMONT PLACE,DPR,True,Lt. Lia Playground,Y,Lt. Lia Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/R111/,No,61,23,11,{70DA7CB8-9AFB-4904-876C-8D0212C3FC1E} +"MULTIPOLYGON (((-73.94033555877915 40.81015473063938, -73.94028238577972 40.81013239507439, -73.94010271959162 40.81037820893586, -73.93969052653142 40.810205054330126, -73.94004995935963 40.80971329976944, -73.94056328208495 40.809928937649815, -73.9403835118924 40.810174875270725, -73.94033555877915 40.81015473063938)))",M155,4628,M155,M-10,M-10,M-10,M-10,"5 Ave., W. 130 St. To .W 131 St.",110,9,32,10037,M,0.653,False,Courtney Callender Playground,Yes,100004591,PLGD,20100106000000.00000,19360826000000.00000,2122 5 AVENUE,DPR,False,Courtney Callender Playground,Y,Courtney Callender Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M155/,No,70,30,13,{55D102C6-B4E3-4F91-A52E-5A48DDBD22D4} +"MULTIPOLYGON (((-73.986906922506 40.60741900577, -73.98691744214159 40.60741867557588, -73.98693956933013 40.60741961913748, -73.98695771191778 40.60742223811344, -73.98697480974197 40.6074261465151, -73.98699711882021 40.60743354862727, -73.98702109425918 40.60744531485104, -73.98703608429506 40.60745461532899, -73.98705975524044 40.60747682575999, -73.98707342131728 40.60749535372895, -73.98708233844356 40.60751490235414, -73.98718139604249 40.6080377941, -73.9871835542327 40.60805306808686, -73.98718376652201 40.60806128807137, -73.9871829430882 40.60807290650873, -73.98718067330587 40.60808496694085, -73.98717730366947 40.608095959231655, -73.9871726224722 40.60810693516657, -73.98716721836144 40.60811676645769, -73.98716142573515 40.60812540811616, -73.9871561167341 40.608132194754, -73.98672963286873 40.608542833654376, -73.98583995762858 40.60939943320064, -73.98550192509775 40.60757492634381, -73.986906922506 40.60741900577)), ((-73.98761458363025 40.60734941354888, -73.98801437608338 40.607299267162944, -73.98751312683201 40.60778371063388, -73.98747246961408 40.607488551250206, -73.98747156600805 40.607480653577134, -73.98747242208681 40.60746477207126, -73.98747741220649 40.60744416327735, -73.98748874549241 40.60742105172373, -73.98750398318462 40.6074016435384, -73.98751628790544 40.60739011909929, -73.98753574513887 40.60737622796339, -73.98756056765541 40.607363628753, -73.98758451498391 40.60735540327622, -73.98761458363025 40.60734941354888)))",B100,6392,B100,B-11,B-11,B-11,B-11,W. 12 St. bet. Bay Pkwy. and Ave. P,311,44,62,11204,B,4.945,False,Seth Low Playground,Yes,100004510,PARK,20100106000000.00000,19241208000000.00000,7217 BAY PARKWAY / 33 AVENUE P,DPR,True,Seth Low Playground/ Bealin Square,Y,Seth Low Playground/ Bealin Square,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B100/,No,47,17,10,{4E87687B-E185-4A5A-BBE7-9E3418416A91} +"MULTIPOLYGON (((-73.9777477446379 40.65414552104441, -73.97788644142913 40.6540894428756, -73.97813701738038 40.65434917920348, -73.97820185878905 40.65441259241683, -73.97830048537429 40.65450487624634, -73.97840021004852 40.6545954978419, -73.97857597732198 40.6547482268924, -73.97842878406568 40.654884823127, -73.97837096032737 40.65485204785565, -73.97831564072055 40.65481650033517, -73.97826905234152 40.65478391443744, -73.97821885825913 40.65474582387769, -73.97818213015282 40.654716765335635, -73.97814768313985 40.654687138088335, -73.97812733409435 40.65466823596925, -73.97809732706061 40.65463869510008, -73.97806504163829 40.654605277062494, -73.97803066878525 40.6545626283169, -73.97799251866675 40.65450773720894, -73.9777477446379 40.65414552104441)))",B255I,5941,B255I,B-07,B-07,B-07,B-07,18 St. bet. 11 Ave. and Seeley St.,307,39,72,11218,B,0.438,False,Park,No,100004011,PARK,20100106000000.00000,19600915000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B255I/,No,44,21,9,{76F776A2-EFFA-43A4-9CA7-78A499F6F42C} +"MULTIPOLYGON (((-74.03456961994544 40.60855657806537, -74.03451553604248 40.60847910083519, -74.03450978010059 40.60841890809858, -74.03450826130376 40.60840661013124, -74.03449435083273 40.60832054155228, -74.03447477854793 40.60823511584061, -74.03444959538949 40.60815054730231, -74.03441886529437 40.60806705113916, -74.03439972562798 40.608015997293066, -74.03437433907017 40.6079651821491, -74.03437700680513 40.607964627530436, -74.03434546438542 40.60790722960668, -74.03430826208266 40.60785183612368, -74.03426561630269 40.6077987693982, -74.03421777770848 40.607748340029566, -74.03418713290445 40.60771279565341, -74.03395815016592 40.607502622344505, -74.03323423838874 40.60690331973204, -74.03275648091561 40.606536579827385, -74.03248430788067 40.60634352577472, -74.03216426476484 40.606118941904015, -74.03195483622281 40.60597197843205, -74.03190487180484 40.605939428543834, -74.03185490980339 40.605906888538854, -74.03180495375362 40.60587433860469, -74.03179956067393 40.60587082626088, -74.03177157615399 40.6058519293458, -74.03176281848083 40.60584688434165, -74.0317546446565 40.60584218137378, -74.03173902536611 40.60583138663056, -74.03171628652917 40.60581657572174, -74.03170502762089 40.605809236873796, -74.03149482636952 40.60567564732296, -74.03127983454775 40.605546555896055, -74.03117160611423 40.605485209333786, -74.03112829234152 40.605460658439185, -74.03107770193287 40.60543198240445, -74.03092921233153 40.605359200860136, -74.03075109491415 40.60528153722073, -74.03068818043533 40.60525597921596, -74.03064025981116 40.605233209698724, -74.03026584050515 40.60506995243864, -74.0301629452116 40.605025086671986, -74.03007744217592 40.60499323600828, -74.02998128592758 40.60495742486357, -74.02979669304223 40.60489454800101, -74.02966277983613 40.60485284435156, -74.02952733449918 40.60481414237903, -74.02950485448365 40.60480828125206, -74.0292262259057 40.60474031351069, -74.02883412926985 40.60466539187018, -74.0285811019822 40.60463303448161, -74.02850856645941 40.60462375911067, -74.02825175538382 40.60459775151544, -74.0278431989985 40.604577865034756, -74.02732411594927 40.60457257387635, -74.0272657947258 40.60457273000942, -74.02697719591427 40.60458016798411, -74.02691008098701 40.60458424777339, -74.02684296605408 40.6045883338271, -74.0267758581974 40.60459240813322, -74.02670875033465 40.604596487803256, -74.0266416424659 40.60460057283719, -74.02657452749547 40.60460464702739, -74.02651356339477 40.60460834874455, -74.02641222041657 40.60461451093649, -74.0263731978995 40.60461688106598, -74.02630608289843 40.60462096050252, -74.02623671062625 40.60462665415041, -74.02616733243674 40.6046323531609, -74.02609796131993 40.604638040421136, -74.02602858192097 40.604643728541895, -74.02595921078512 40.604649427425144, -74.02588983963284 40.604655114559726, -74.02582046020055 40.60466080795795, -74.02577243264079 40.60466474771478, -74.02575108902707 40.60466650131244, -74.02570679253135 40.604666875940154, -74.02544438952177 40.604697947405846, -74.02525218673262 40.60472265058831, -74.02505900009254 40.604742402594404, -74.02486504940006 40.60475718175917, -74.02467055563723 40.60476697002092, -74.02447573978978 40.604771757424096, -74.02428082284528 40.60477153851721, -74.0240315921361 40.60477117305798, -74.02378251514122 40.60476448986552, -74.02353386841179 40.60475149698886, -74.02328592613777 40.60473220878352, -74.02303896251021 40.60470664591123, -74.02279325054036 40.60467483714069, -74.02254906323985 40.60463681754669, -74.02230667007626 40.60459262941121, -74.02206633933555 40.60454232132209, -74.02182833694019 40.604485949074125, -74.02159292644924 40.60442357566864, -74.02136036787518 40.60435526861233, -74.02113091886731 40.60428110531989, -74.02090483352731 40.60420116591003, -74.0208404699102 40.60418106444194, -74.02077609806122 40.604160962939254, -74.02071174160908 40.604140855994544, -74.0206473769287 40.604120760722076, -74.02058300519572 40.6041006582106, -74.02051864177074 40.604080551158944, -74.02045428547551 40.60406045037357, -74.02038992094958 40.604040353155725, -74.02032555055177 40.604020245997056, -74.02026118610199 40.604000144204406, -74.02019682996321 40.60398004777734, -74.0201339047622 40.603960232026374, -74.02007097960207 40.60394042794773, -74.02000804620705 40.60392061843287, -74.01994512112154 40.60390081428521, -74.0198821960734 40.60388101010311, -74.01981926987922 40.603861199583015, -74.01975635199486 40.60384139533067, -74.01969342705712 40.603821585641946, -74.0196305021564 40.60380177501819, -74.01956757729494 40.60378197066359, -74.01950465246922 40.603762160871355, -74.01946878194818 40.603750558324734, -74.0194374559609 40.60374043455595, -74.01938565365879 40.60372368008896, -74.01932615903182 40.60370444235225, -74.01929506940908 40.60369438514351, -74.01928946262113 40.603692576035556, -74.01928188370712 40.603690122484394, -74.01927851963366 40.6036890334172, -74.01930700146968 40.603620808693734, -74.01932850956499 40.603551116384466, -74.01934291645655 40.60348036805322, -74.01935013603854 40.60340898516147, -74.0193501259221 40.6033373900625, -74.01934288625361 40.603266007802716, -74.01932846089453 40.60319526251915, -74.01930693387489 40.603125572937834, -74.01926251765887 40.603059751330555, -74.0192104605636 40.60299726651676, -74.0191511904524 40.602938634413896, -74.0190851942481 40.60288433670936, -74.01901301438723 40.60283481906027, -74.0189352464567 40.602790489293426, -74.0188525273774 40.6027517120045, -74.01876554131152 40.60271880675643, -74.01867499957633 40.60269204358069, -74.01858165009658 40.60267164207535, -74.01848625968317 40.60265777140845, -74.0183896116696 40.60265054491533, -74.01829250355061 40.60265002280085, -74.01819573162315 40.60265620763939, -74.01810009335176 40.60266904977744, -74.01806974644234 40.60267671169181, -74.01796289373686 40.60270400795673, -74.01785498519455 40.602728775620335, -74.0177461330607 40.60275098584563, -74.01763642358827 40.602770609800075, -74.01752596194135 40.602787643862996, -74.01741487218365 40.602802067301525, -74.01733033738235 40.60281091149947, -74.01725424243355 40.602816960048585, -74.01722000680391 40.60281904448867, -74.01716036343204 40.60282230249322, -74.01707509915924 40.602824845659605, -74.01698977526686 40.60282527344532, -74.01690447919441 40.60282358853883, -74.01681929365702 40.60281980083394, -74.01673432263311 40.60281390581312, -74.01664963702285 40.60280591337228, -74.0165653431715 40.60279583520353, -74.0164815273344 40.60278366589219, -74.0163982580541 40.602769438748886, -74.01633991671522 40.60275830579966, -74.01385368390883 40.602128673976246, -74.01375507932536 40.602103650405255, -74.0135984066546 40.60206353818305, -74.01349984002901 40.60203830996996, -74.01346595577435 40.60202963471311, -74.0131770855866 40.60195503922838, -74.01305327795464 40.60191663978535, -74.0128972768075 40.60186825523479, -74.01262027144655 40.60177643273067, -74.01234619243674 40.601679617649694, -74.0120752194221 40.60157787303024, -74.01189117452878 40.601505926993205, -74.0118584856264 40.601492883605964, -74.01183675801802 40.601484217419625, -74.01176333018489 40.60145401424172, -74.01154031533416 40.60136228174927, -74.01147811700989 40.60133537317174, -74.01135155827075 40.60128063939755, -74.0112473476233 40.60123557760847, -74.01114174486571 40.601187614377224, -74.01095797898951 40.60110415003799, -74.01067233590123 40.60096807289584, -74.0104241616326 40.60084734375206, -74.01017950483308 40.60072249837302, -74.00993849904276 40.60059360520916, -74.00976836500797 40.60049832113069, -74.00956392001345 40.60038023393422, -74.00946786830009 40.60032392772878, -74.00936364239273 40.60025985690566, -74.0092351086861 40.600180843776656, -74.00916043245967 40.600134503474436, -74.00915898562373 40.60012907434106, -74.00642403239635 40.59838126485445, -74.00642399931459 40.598381243243765, -74.00631960898691 40.59831452842513, -74.00631917653298 40.59831393590517, -74.00486500184918 40.59738018018121, -74.00458127260794 40.59722672839836, -74.0042926953968 40.597078622496184, -74.00399944266698 40.59693595248468, -74.00370169277123 40.59679880297163, -74.00339962287549 40.59666725766568, -74.00309341486584 40.59654139487346, -74.00361293299328 40.59603957070103, -74.00531938061755 40.59743925233372, -74.0059808617349 40.59785098101411, -74.00597910713107 40.59784858031253, -74.00628245470956 40.59803870044059, -74.00898801491226 40.59973429887091, -74.00898833622736 40.59973402688802, -74.00906694300092 40.59978376196282, -74.00936018895102 40.599964426448935, -74.00965824076484 40.60014046379702, -74.00996097081074 40.600311800138215, -74.0102682526342 40.60047836340533, -74.01057995741364 40.60064008333313, -74.0108959527786 40.600796890558264, -74.01121610635514 40.60094872112142, -74.01139500986376 40.60102900668806, -74.0129096063484 40.601603640826255, -74.01377618649208 40.601874571262464, -74.01385208565212 40.601896584407825, -74.01385224988732 40.60189663121514, -74.0141837402043 40.60198845214239, -74.01451807036823 40.602074080664536, -74.01485504297821 40.602153466353364, -74.01519445826753 40.602226561484514, -74.01553611174116 40.60229332283896, -74.01587980126486 40.60235370990136, -74.0162253211584 40.60240768756223, -74.0162252889359 40.602406361097785, -74.01627892595137 40.602415463194156, -74.01655196633838 40.60245764066984, -74.0168266334837 40.60249315789781, -74.0171026472854 40.60252197798686, -74.01727522128354 40.6025301856495, -74.01744810685483 40.60253240813601, -74.0176209459605 40.60252864189787, -74.01779338174627 40.60251889419467, -74.01796505854345 40.60250318579578, -74.0181356218687 40.602481549179366, -74.01830471960615 40.602454027631424, -74.01831272899135 40.602419848841116, -74.01912593259905 40.60260932040875, -74.01911888487061 40.602645980933964, -74.01918571324349 40.60270649928784, -74.01925604891287 40.60276466214977, -74.01932974888574 40.60282035246952, -74.01933119123976 40.60281948592474, -74.01938543339409 40.602859274459426, -74.01952014607035 40.6029514137848, -74.01966065048363 40.60303838386496, -74.01980660628955 40.6031199740153, -74.01995765659971 40.603195984361264, -74.02011343625392 40.60326623124029, -74.02027356709432 40.603330545401846, -74.02043766032723 40.60338876840513, -74.02060531770742 40.603440759823265, -74.02077613153757 40.60348639454184, -74.02098036429376 40.603531269173736, -74.02118632905488 40.60357128480717, -74.02139382491062 40.60360640364839, -74.02160265331304 40.60363659150664, -74.02181261098877 40.603661819596574, -74.02193061226887 40.6036737713812, -74.0235247260654 40.60388058159758, -74.02352479577787 40.603880590588524, -74.02409135369541 40.60395207642729, -74.02500045638124 40.60406677716296, -74.02499994548486 40.60406549222927, -74.02514256059955 40.60408470527288, -74.0251426019547 40.60408471066699, -74.02628107049979 40.60423807961366, -74.02668427756637 40.60428949926197, -74.02719179440383 40.604354690661026, -74.02733491742879 40.60437627103748, -74.02767210535052 40.60441714248215, -74.0285313521416 40.60452962190091, -74.02853191795069 40.6045292912689, -74.02859201384858 40.60453756293698, -74.02944640991959 40.60465515168507, -74.02944693768703 40.60464894335184, -74.02955835580066 40.60467055789467, -74.02969971989779 40.604702998774016, -74.02983884863937 40.60474063517067, -74.02997541354978 40.6047833798277, -74.0301090932325 40.604831129278395, -74.03023957219287 40.604883773752114, -74.03036654083292 40.60494118636783, -74.03056217135668 40.605030463582544, -74.0307537957184 40.60512465568351, -74.03094120003551 40.60522365558615, -74.03112417632903 40.60532735620513, -74.03112410314682 40.60532497884724, -74.03122387648145 40.60538697792926, -74.03135497116398 40.60546843856654, -74.03152341517523 40.60558085055752, -74.03157873789176 40.60562184693579, -74.03162265758927 40.60565037780009, -74.03166314254938 40.605681351808954, -74.0317074270091 40.60571648156408, -74.03174099941822 40.605741257359455, -74.0318060900433 40.60578181777871, -74.03187653167743 40.60581680064596, -74.03189341790527 40.60582327521582, -74.03191560704597 40.605832477792354, -74.03192619936087 40.605836870297516, -74.03195002931191 40.60584530156493, -74.03199166406165 40.6058562835538, -74.03203322886934 40.60586921877882, -74.03206641525993 40.60587954751502, -74.03211945425471 40.60589767641833, -74.0321602359282 40.605925707263296, -74.03216208880728 40.60592614169686, -74.03246335394361 40.60612927144892, -74.03277724452963 40.60637544174839, -74.0332091615686 40.60673856572393, -74.03394774648487 40.60741221394223, -74.03418760499537 40.60763098041902, -74.0342627339154 40.60770568963829, -74.03433129406633 40.60778398214481, -74.0343929922302 40.607865522143356, -74.03444756471806 40.607949962122596, -74.03444930264367 40.60794960049255, -74.03446943590694 40.6079797943498, -74.03450776996188 40.6080641058911, -74.0345150556442 40.60808013118726, -74.03453891262978 40.608150056728434, -74.03492782301034 40.6082761797249, -74.0349743178706 40.60826571773477, -74.03503144182872 40.60838945001663, -74.0351497927275 40.608362818779845, -74.03537567140027 40.60857815874736, -74.03533394305055 40.608593282334965, -74.03529616393995 40.60861355747916, -74.03526341728087 40.608638402114536, -74.03523664324776 40.60866710274406, -74.03521661181225 40.60869883695977, -74.03520389557568 40.60873269236142, -74.03519886151324 40.6087676971763, -74.03520165326304 40.608802848180346, -74.03521219113722 40.608837135012315, -74.0352132714036 40.60883767139222, -74.03521330555097 40.60883968584846, -74.03530654550995 40.60888400793161, -74.03541358274666 40.608927535030844, -74.03552439693999 40.60896517505414, -74.03559949427105 40.60899053481993, -74.03567051601532 40.60902198512812, -74.03573661359275 40.60905914983215, -74.03579699982501 40.609101586128915, -74.03585095366391 40.60914878815923, -74.03595189857002 40.60923481947116, -74.03590051452285 40.60925122052115, -74.03587473607735 40.609259132447356, -74.03587497607259 40.60925937191115, -74.03573862991847 40.609302892466, -74.0356297334482 40.609248765307896, -74.03551708212458 40.609199303007685, -74.0354010198596 40.60915465583559, -74.03528190000743 40.60911496055207, -74.03516600453248 40.60905213966612, -74.03505548037951 40.60898392830396, -74.03495075662086 40.60891059470596, -74.03485224106197 40.60883242242853, -74.03477229766344 40.60876925794442, -74.03469831345926 40.60870200864073, -74.03463064427532 40.60863100131104, -74.03456961994544 40.60855657806537)), ((-73.89764764405572 40.605597844193156, -73.89770061687922 40.60516715347736, -73.89847453063952 40.60519279589628, -73.89846531685046 40.6054547200068, -73.89842952737315 40.60574477996154, -73.89833099115138 40.60616059908629, -73.89816859806616 40.6066588511944, -73.89814214041297 40.606775075270974, -73.89803871773464 40.6072293843989, -73.89782535813275 40.60791221580763, -73.89765003448309 40.60834998104318, -73.89748115172857 40.608862432036936, -73.89726509943236 40.6093952149187, -73.89710016364894 40.61022883999962, -73.89704982260433 40.61096761914483, -73.89695319159304 40.613150894513886, -73.89694481160424 40.61372696873349, -73.89694573374778 40.614303078274304, -73.89695595839945 40.61487913578564, -73.89697548475304 40.61545505391344, -73.89700430845855 40.61603074439774, -73.89704242634289 40.616606121678856, -73.89710189190954 40.61709646918605, -73.89710229121557 40.617110349278924, -73.89710523746538 40.617124050646865, -73.89710763504834 40.617415500217426, -73.89710218699217 40.61770692564674, -73.89708889220118 40.617998204461884, -73.89707783523556 40.618266703884224, -73.8970590379499 40.61853495322631, -73.89703250990533 40.61880282281797, -73.89699826420895 40.61907018299064, -73.89695631632938 40.61933690587745, -73.89690668646487 40.619602862713634, -73.8968493995448 40.61986792293626, -73.89678448167477 40.620131960484436, -73.89671196487383 40.62039484750023, -73.89663640591148 40.62063916568649, -73.89655467793135 40.620882327400565, -73.8964668081904 40.62112424350242, -73.89637283222261 40.6213648230575, -73.89627278319873 40.621603976028865, -73.89622643117231 40.621583165482605, -73.89626315124019 40.62149223430164, -73.89627543176955 40.62106319577103, -73.89639845580454 40.616764854339486, -73.89640496944338 40.61653725883027, -73.89641014231104 40.61635652704317, -73.896414740398 40.61619587276048, -73.89641977325637 40.61602004057766, -73.89642182617975 40.61594828437522, -73.89641552375106 40.61578473139033, -73.89640672792903 40.61555644757092, -73.89639230007897 40.615181998622674, -73.8963747371783 40.61472618921076, -73.89635924869975 40.61432422473279, -73.89633621114369 40.613726331433995, -73.89632079928943 40.613263917657925, -73.89631409047126 40.612886075203264, -73.89631409051321 40.61288604818766, -73.89631740651447 40.61232746563019, -73.89631740775904 40.61232742510781, -73.89633965042461 40.61181362993277, -73.89633965527007 40.611813553392786, -73.89634971491085 40.61165283282231, -73.89637583069491 40.61123560766328, -73.89646742807544 40.610338162506146, -73.89651715367727 40.60998654804519, -73.89655382181556 40.609727255925876, -73.8966412140463 40.60932289658671, -73.89673118014677 40.608955063753946, -73.89680141645249 40.60869861761765, -73.89686942230765 40.60848898577601, -73.8969449915781 40.60828287540981, -73.89704001435813 40.6080237029394, -73.89718248635266 40.60765485321476, -73.89720628254581 40.60759324456019, -73.89727603083179 40.60738384634997, -73.8973212339739 40.60724813661592, -73.8973747213535 40.60708755373025, -73.8973960585406 40.607023495218115, -73.89749586455609 40.606579459290074, -73.89755326324065 40.6063240899197, -73.89757521970773 40.60615723549623, -73.8976306818309 40.60573575849761, -73.89764764405572 40.605597844193156)), ((-73.90556475840486 40.599020056649366, -73.905650269515 40.598978712738116, -73.90573685139712 40.59893868440488, -73.90588670197651 40.59887358054646, -73.90603938449094 40.598812423098195, -73.90619472401055 40.59875528214686, -73.90635253379864 40.59870222416822, -73.90651263421411 40.598653312042664, -73.90667483499391 40.59860860233906, -73.90683894824477 40.5985681480271, -73.90700477899537 40.598531995767964, -73.90717213582536 40.59850018862481, -73.90727503868222 40.59848310322969, -73.90741088505197 40.59846366420688, -73.90754467522507 40.59844796324098, -73.90767953594288 40.5984355039613, -73.90768472302541 40.598435027248925, -73.90782242045282 40.59842586149149, -73.90796043562091 40.598420140323725, -73.90809862439835 40.59841787803752, -73.90823683795193 40.598419071811875, -73.90837492272145 40.59842371972313, -73.90851273341538 40.59843182075565, -73.90865012121124 40.59844336398571, -73.90878693965419 40.598458334890246, -73.90889088227819 40.59846938210955, -73.90899427785041 40.59848309524989, -73.90909700827305 40.5984994508057, -73.90919895897619 40.5985184369814, -73.90930001068095 40.598540029370824, -73.90940005119415 40.59856420537479, -73.90949896951187 40.598590936091725, -73.90959664754372 40.59862019081381, -73.90969297901512 40.598651937041936, -73.90978785174865 40.598686138670395, -73.90988115947681 40.59872275689704, -73.90997279475367 40.598761750217335, -73.91006265722447 40.59880307443114, -73.91015244991459 40.59884717213028, -73.91024018388512 40.59889361851562, -73.91032574934474 40.59894235677325, -73.91034130659067 40.59895187032805, -73.91057743684703 40.599163826658, -73.91089053190994 40.59944486457083, -73.91104972844687 40.599585515379616, -73.91051411444657 40.59949269872466, -73.91047636555957 40.59951709780649, -73.91024592978107 40.599479369870124, -73.91017513246014 40.599467777958495, -73.91012142322627 40.599458984685654, -73.9100486380302 40.59944706785365, -73.90988999920506 40.599421094969166, -73.9097991563106 40.59940622091017, -73.90958444033664 40.59937106597101, -73.90949458621895 40.59935635364261, -73.90924842426661 40.59931604843075, -73.90743590517783 40.59901926195645, -73.90382941160448 40.6003654863426, -73.90356754295743 40.60047335665729, -73.90323560241774 40.600618789437235, -73.90292689167835 40.60077382154291, -73.90254083196521 40.60098766252706, -73.90220725237975 40.601187332129136, -73.9018607358273 40.60142092231052, -73.90153618731082 40.601652272656715, -73.90118106925092 40.6019611046893, -73.90085114750447 40.60230117127384, -73.9006165489646 40.60255456302313, -73.90052620966532 40.60266093474568, -73.90039487459735 40.60284649435007, -73.90027082495422 40.60303769109142, -73.90016023170585 40.60322428690972, -73.90011302129872 40.60330953077834, -73.90009267965002 40.60334880469772, -73.90008746951972 40.603358864408584, -73.9000704243144 40.60339177449505, -73.89994494384116 40.60339641648003, -73.89982015202172 40.603407455340005, -73.89969661247115 40.603424842940996, -73.89957487821877 40.60344850052415, -73.89945549761212 40.603478321412844, -73.8993390060458 40.60351417190537, -73.89922592832657 40.60355589037659, -73.8991167715809 40.60360328997305, -73.89910419848904 40.6036013761318, -73.89910520378155 40.60354285205365, -73.89911339922521 40.60348465847511, -73.89912871432244 40.60342730502857, -73.89915101477978 40.603371298587525, -73.8991801025262 40.60331713156009, -73.89920473757127 40.60326189620236, -73.89927814284815 40.60311409654947, -73.89935813164107 40.60296829366863, -73.89944461267588 40.60282466216772, -73.8995374852458 40.60268336583927, -73.89963664154995 40.602544573872045, -73.89974196317505 40.60240844373808, -73.89988451320458 40.602237497516604, -73.90003398197955 40.60207001784298, -73.90019022036147 40.601906167555526, -73.90035307804071 40.601746105888985, -73.90052239526527 40.60158998936813, -73.90069801230176 40.60143796551224, -73.90080733590472 40.60134907206668, -73.90090894342573 40.601267886642205, -73.90106744663869 40.601146793024995, -73.90128028656413 40.60099333336025, -73.9014997453671 40.60084538837123, -73.9017255711652 40.60070312260058, -73.9019575156387 40.60056669339061, -73.90219531866457 40.60043625537305, -73.90243871068895 40.60031195416753, -73.90266363551693 40.60020565086459, -73.90289238990235 40.600104205975875, -73.90312479417405 40.600007704876866, -73.90336066514126 40.59991621853281, -73.90359981488466 40.59982982240871, -73.90365239923275 40.5998113175363, -73.9037049835504 40.599792813540304, -73.90375756665614 40.59977431041973, -73.9038101509142 40.5997558072761, -73.90410930845192 40.599647134539595, -73.90419675917593 40.59961295788915, -73.90432817801407 40.599561598886034, -73.9044041999854 40.599531889061836, -73.90469457367054 40.59941016432105, -73.90498019065237 40.59928206281338, -73.90503800283042 40.599255514556674, -73.90509743557645 40.59922918463512, -73.90515686709674 40.59920285288073, -73.90521630093299 40.599176521097526, -73.9052757323608 40.599150188381, -73.90533516610074 40.59912385833722, -73.90539459743354 40.599097526459616, -73.90545403108099 40.59907119545372, -73.90551346232003 40.59904486351454, -73.90556475840486 40.599020056649366)), ((-73.89873294208537 40.60572809176287, -73.89880021095458 40.60527920098226, -73.89908742786187 40.605413543107176, -73.89908445547779 40.60543361944504, -73.89906362004717 40.605574375309914, -73.89903901232108 40.60574060363304, -73.89900595715164 40.605943819784564, -73.89896583077442 40.60616147678647, -73.89893142257664 40.606348113103365, -73.89890857857844 40.60647202469311, -73.89884433095125 40.606727225709925, -73.89877648694349 40.60699670129773, -73.89873635107959 40.607137908354474, -73.89869064134102 40.607298725657515, -73.89863914145326 40.60747990854674, -73.89858888622926 40.60765671597021, -73.89855145093944 40.60778841582225, -73.89851315186473 40.607923157762194, -73.89847228743855 40.60803923229889, -73.89844251274471 40.60812380734909, -73.89840507532766 40.608230143939785, -73.89835260553835 40.608379180789825, -73.89831630471774 40.60848229088297, -73.89823405931008 40.60871590267991, -73.8981323949535 40.609039272951435, -73.89808194201402 40.60924409699475, -73.89804997746658 40.60937386269097, -73.89801300002038 40.609523980229355, -73.89798218496027 40.609649078617075, -73.89795454796774 40.60976127803784, -73.89791052276777 40.609966346336726, -73.89787257279424 40.610143111204025, -73.89783256003022 40.61042453288393, -73.89780919461181 40.610588865472174, -73.89778515243678 40.61080925043795, -73.8977742383177 40.61095697765465, -73.89776470096315 40.611086056284364, -73.89775639555513 40.61119846914852, -73.89774364700058 40.61144982407918, -73.89773638384621 40.611593014099626, -73.8977265472636 40.611786950735585, -73.89771736616527 40.61196795825801, -73.89770944735386 40.61212407737784, -73.89769820329751 40.61234574431663, -73.89769450460852 40.61255166874026, -73.89769078396029 40.612758798938536, -73.89768729962384 40.612952822249085, -73.89768506594496 40.61307715529407, -73.89769128060476 40.61327747917626, -73.89769528483791 40.61340656081693, -73.8976992980487 40.61353596304941, -73.89770796081895 40.61381522792686, -73.89772487627111 40.61403918739941, -73.8977355977573 40.61418113355306, -73.89774540080599 40.61431093445237, -73.89775812839646 40.614479446870526, -73.89777085604987 40.61464796018492, -73.89778450226306 40.61482861964583, -73.89779344611176 40.61494703087238, -73.89780422463254 40.615089735296024, -73.89781786984466 40.61527039474375, -73.89783151513065 40.61545105418653, -73.89784418641062 40.61561880918651, -73.89786173054664 40.61585108547102, -73.89787050206957 40.61596722360965, -73.89788029292214 40.616096842557084, -73.89787656736877 40.616190789747, -73.89786884213882 40.616385589078384, -73.8978606349782 40.616592572932035, -73.89785447809676 40.6167478110428, -73.89784451929282 40.61699894499226, -73.89783388535628 40.6171877199342, -73.89782507711354 40.61734410474273, -73.89781209909899 40.61742439269189, -73.89875425209127 40.618904134355006, -73.89910394616211 40.61945334365689, -73.89870068004184 40.62013112010146, -73.89869108296601 40.62014724988191, -73.89842122195705 40.62060080139974, -73.89831572584356 40.62077810446668, -73.89826824423157 40.62085790625085, -73.89819649671333 40.62097848913378, -73.89811877488134 40.62110911108696, -73.89801484828948 40.62128377493336, -73.89790688666942 40.621465217823435, -73.89781580066526 40.621618300196545, -73.89767073212775 40.621862103361494, -73.89749722623898 40.62215369594283, -73.89718196335338 40.62201215870992, -73.89722205410878 40.62192277373511, -73.89723422299852 40.62190848164034, -73.89729683276236 40.62175116886218, -73.89735491855896 40.621592850629106, -73.89742756538631 40.62137298124315, -73.89749148876602 40.62115154432616, -73.897546630562 40.6209287415573, -73.89759294091454 40.62070477372087, -73.89763037941528 40.620479845209616, -73.89765891038613 40.62025415951817, -73.89767850878538 40.62002792104894, -73.89768915666033 40.61980133600972, -73.89767029419485 40.61936413423396, -73.89764412587289 40.61892715196106, -73.89761065764024 40.61849045853136, -73.89756989307583 40.61805412508278, -73.89752183930335 40.617618222755056, -73.89746650581085 40.617182821788084, -73.89746941672794 40.617174953828005, -73.89747073147798 40.61716684040293, -73.89747042023025 40.61715866879472, -73.89746848978666 40.61715062721844, -73.89746498595102 40.617142901222195, -73.89743472862949 40.61634830369793, -73.89735221314453 40.61504397147703, -73.8973654018811 40.613337176016465, -73.89739955816168 40.61173506212663, -73.89749629509727 40.61065631691419, -73.89758161067057 40.61013307894526, -73.89767756375579 40.609561544554175, -73.89781573471399 40.60901420049486, -73.89814469128855 40.60804837452574, -73.898356923288 40.60742058595949, -73.89857991016817 40.60666399034663, -73.89868637489873 40.606036460717526, -73.89873294208537 40.60572809176287)), ((-73.88763175308281 40.63059478057532, -73.88722221947262 40.63086467973989, -73.88716772328819 40.630900595750155, -73.8871412810137 40.63091802007781, -73.88679485873864 40.630645000205064, -73.88663168059493 40.63075073429603, -73.88659902407758 40.63077189493373, -73.88659373051736 40.63077294782387, -73.88657062592699 40.63075360707356, -73.8868447298625 40.63057906998329, -73.88758825846293 40.6297147199738, -73.8876661714877 40.62963196716902, -73.88774949013323 40.6295523290851, -73.88783800011105 40.629476010819985, -73.88793147296784 40.62940320845247, -73.8879907017278 40.6293606931713, -73.8879907277627 40.629360674285756, -73.88809139984012 40.62929409329161, -73.88814940971389 40.62925868004622, -73.88819910627015 40.629229921637695, -73.88819821089048 40.62922888877071, -73.88919727071423 40.62861898165582, -73.88926944645205 40.6285749193897, -73.88926792872697 40.62857355454015, -73.8895375504518 40.62840020978329, -73.89066688053784 40.62763776503655, -73.89231202884193 40.62657254768799, -73.89320761096342 40.62597158950399, -73.89356975063971 40.62574012322103, -73.89387907322629 40.62553339028064, -73.89407767852641 40.62539237000105, -73.89428168458714 40.62524814308694, -73.89450569057762 40.625088410088125, -73.89472382530502 40.62492402819051, -73.89493592428848 40.62475512244931, -73.89514182540961 40.62458182242482, -73.89534137128038 40.62440425948283, -73.89553441042067 40.62422256949716, -73.89572079608227 40.624036889246355, -73.89589781016707 40.623860745724706, -73.89606736993801 40.62368039516056, -73.89622930494996 40.623496021139054, -73.89638344948618 40.623307810851145, -73.89652964846874 40.62311595419816, -73.89666775154328 40.62292064738858, -73.89679762135906 40.6227220884426, -73.89696991355169 40.622800135329435, -73.89696999031753 40.622800170518545, -73.89697003047253 40.62280018856495, -73.89709974118735 40.622858946653615, -73.89720607605946 40.62290711518421, -73.89574908640238 40.625067548193655, -73.89133317115272 40.627715637058586, -73.89039586748639 40.628277659934604, -73.8896233768824 40.62874084649611, -73.88907412019157 40.62907017398172, -73.88920236649234 40.629136343601665, -73.88927116984777 40.629171842657534, -73.88856384572011 40.6301757463611, -73.88843210958154 40.63011126202718, -73.88805370013445 40.62992603091429, -73.88793995869915 40.630063263858204, -73.88789112559789 40.63012218231784, -73.88785815008967 40.63016196756221, -73.88771725105919 40.63033196533478, -73.88777126344759 40.63035766758631, -73.88753849114023 40.63051107519095, -73.88763175308281 40.63059478057532)), ((-73.90488369177906 40.59438943118563, -73.90489402509066 40.594075854109235, -73.9050371580262 40.59420091108603, -73.90509896827757 40.59425491520122, -73.90509893290586 40.594245723530655, -73.90547918723354 40.594587113729474, -73.9056200863882 40.594713610773105, -73.90564459659211 40.59475241013379, -73.90567366257162 40.59480259944471, -73.90570052909743 40.59485349475438, -73.90572517497986 40.59490504021459, -73.90574756368025 40.594957173660625, -73.90577748240617 40.59503524564375, -73.90580411133598 40.59511400022001, -73.90582741984642 40.595193364424226, -73.90584738086666 40.59527325899019, -73.90586398505619 40.595353597461745, -73.90587720416731 40.5954342969691, -73.90588703119997 40.595515286366314, -73.9058934580159 40.59559646388851, -73.90589647052911 40.59567775658237, -73.90589726598373 40.59573028835221, -73.90589788497137 40.59578313516039, -73.90589849569795 40.595835976558426, -73.90589884900722 40.59588873219566, -73.90589761223761 40.596107430432184, -73.90589157439156 40.596326085109446, -73.90588076504409 40.59654463411483, -73.90586515469877 40.59676301708785, -73.90586094741504 40.59681271170881, -73.90585626731571 40.59686258604662, -73.90585423908826 40.596884215849585, -73.90585157268232 40.59691270891646, -73.90584688648936 40.59696270571958, -73.90584220619378 40.59701270432811, -73.90583751998554 40.59706270203085, -73.90583283258883 40.59711269973223, -73.90582557295784 40.59716711959497, -73.90581831332261 40.597221534053816, -73.90581104658722 40.59727594850612, -73.90580378692071 40.597330368366656, -73.90579651898021 40.59738478281648, -73.90578925929898 40.597439196371845, -73.9057819925149 40.59749361172169, -73.90577473280867 40.59754802617607, -73.90576747308297 40.597602446032845, -73.90576020626472 40.59765686047995, -73.9057542134635 40.59771177576135, -73.90574587322456 40.59778006368436, -73.90573462586424 40.59784811148364, -73.90572048920298 40.597915842628524, -73.90570349049989 40.59798318960115, -73.90568363928703 40.59805008937145, -73.90566094985776 40.59811645369845, -73.90563546599027 40.59818223038608, -73.90560718778765 40.59824734108711, -73.90558161005494 40.598300054699145, -73.9055536680766 40.59835206845695, -73.9055234032917 40.598403315754176, -73.90549086066886 40.598453740793616, -73.9054560473653 40.59850329224938, -73.90541903790103 40.59855190354213, -73.9053798548079 40.59859951255212, -73.90533855603007 40.59864607880142, -73.90529518774896 40.598691525781355, -73.90524978427368 40.5987358183975, -73.90520242839021 40.59877889457967, -73.90515315679063 40.59882070572747, -73.90510202861319 40.59886120415963, -73.90506532211734 40.59888835342505, -73.90494199966165 40.59897170023967, -73.90487137403883 40.59901558371473, -73.90477766561784 40.599070202066876, -73.90468177580902 40.5991225582208, -73.90458378146532 40.59917261351232, -73.9044837913557 40.599220317597236, -73.90438189415833 40.599265625518, -73.90427819392765 40.59930848062333, -73.90417279349623 40.59934885507783, -73.90411076713201 40.599371823406955, -73.90404943396891 40.599394971485424, -73.90398810784406 40.59941812494013, -73.90392677459592 40.59944127295298, -73.90386545546684 40.5994644317512, -73.90380412213364 40.5994875796985, -73.90374279583742 40.59951073392263, -73.9036814624204 40.59953388090385, -73.90362013604043 40.599557034161876, -73.90355880962436 40.599580182884544, -73.90349747606159 40.59960334237471, -73.90343614956184 40.59962649013131, -73.90338005637506 40.59964666242495, -73.90332395606579 40.599666834685216, -73.90326786161936 40.599687014127234, -73.90321176124222 40.59970718633266, -73.90314928416852 40.59973009703008, -73.90302413836612 40.59977682318668, -73.90289761474791 40.59982685296161, -73.90274422409577 40.59989204898234, -73.90259348394422 40.59996073206805, -73.90244553966775 40.6000328528238, -73.90230050359143 40.600108342015545, -73.90214403079685 40.60019831880318, -73.90199065677395 40.60029134538921, -73.90193845561825 40.60032187540969, -73.90188625440686 40.60035241080945, -73.90183404606698 40.600382940776264, -73.90178184594161 40.600413476129475, -73.90172964458567 40.600444012358345, -73.90167744320055 40.60047453595616, -73.90162524293189 40.60050507123792, -73.90157304144206 40.60053560109177, -73.90152083989514 40.60056613722547, -73.90146863949121 40.60059666703273, -73.90141643785014 40.60062720221828, -73.9012040773654 40.60076425322556, -73.90099761804258 40.60090645360962, -73.90079729048561 40.6010536496117, -73.90060329929005 40.60120570276017, -73.90041583375364 40.60136243764892, -73.90023509495767 40.60152370409697, -73.90008057951063 40.60166589117334, -73.89993216487747 40.601811804312604, -73.89989802306945 40.60184770093295, -73.89979593705146 40.60195502991889, -73.89978999900154 40.601961281573026, -73.89965420500477 40.60211417089689, -73.89952495563715 40.602270319368714, -73.89940236815208 40.6024295551132, -73.89929965617944 40.6025794769261, -73.89920356338955 40.60273192231214, -73.89919662642562 40.6027439346029, -73.89916904728021 40.60278430515333, -73.8987829100033 40.60348726937619, -73.89876708419276 40.603550071388746, -73.89852640164331 40.60351344290575, -73.89862083761435 40.60330385127202, -73.89878399606587 40.60298207716181, -73.89893942257572 40.60270392363241, -73.89911116039887 40.60242199390643, -73.89923733340335 40.60222895509398, -73.89934400732098 40.6020737777495, -73.89943514372155 40.601946430870974, -73.89959734619983 40.60175351052796, -73.89975787346626 40.601575626320944, -73.89990826015786 40.60141924924583, -73.90004874407713 40.60128114847447, -73.90021343794444 40.601128071247395, -73.9003732455441 40.60098777246759, -73.90056305470033 40.600830665053685, -73.90079590791899 40.600650673482136, -73.90099817960171 40.600504627319005, -73.9010751990844 40.600453273789654, -73.90113660904495 40.60041232853199, -73.90115735811392 40.60039849363707, -73.90132269873085 40.60028825143688, -73.90153045533383 40.6001602726305, -73.90180931868144 40.60000025958927, -73.90214045509693 40.59982634039404, -73.90239634800022 40.599702971151636, -73.90262420797077 40.599600669635976, -73.90311176222986 40.59940400588616, -73.90360595955786 40.599198068452026, -73.90373983116048 40.599142281604664, -73.9038022197777 40.59911628351898, -73.9038688917878 40.59908401323846, -73.90396815131896 40.59903596867959, -73.90405855683788 40.5989922103367, -73.90474292001682 40.598660959454996, -73.90474520701369 40.59859156165089, -73.90476758267592 40.597912645319646, -73.90488369177906 40.59438943118563)), ((-73.85640400316663 40.657753262426844, -73.85639979898279 40.65775294830063, -73.85666417567805 40.657552503978785, -73.85675027894948 40.657486572660304, -73.8572460736155 40.65711285183991, -73.85774838846503 40.65674421765977, -73.85825713468198 40.65638073566345, -73.85877221990815 40.656022472291234, -73.85891405746892 40.65592549306548, -73.8589124709464 40.65592422949359, -73.85900820456386 40.655857649111105, -73.85919357635787 40.65572981801522, -73.85940017861574 40.65559439509088, -73.85940169600855 40.65559648074463, -73.85940387354293 40.655595036273766, -73.8594023561141 40.655592967729866, -73.85977539369095 40.65534844707024, -73.8607151621769 40.65473242873495, -73.86099335683635 40.654559586635294, -73.86127335796725 40.654388445317814, -73.86131494835617 40.65436326295375, -73.8613143239717 40.654362729094125, -73.86165588287264 40.654152898245485, -73.86200257874972 40.653948013687106, -73.86235428733262 40.65374814726557, -73.86271088553683 40.65355337173021, -73.86307224438036 40.65336375532174, -73.8634382360688 40.653179366283176, -73.86380873045358 40.6530002701543, -73.86499497766005 40.65249617083916, -73.86531607752804 40.652361594721995, -73.86551526293395 40.652308590055334, -73.86571098034585 40.65226839987332, -73.8659231468591 40.65225047043759, -73.86583024648043 40.65230176008721, -73.86539333793151 40.6525429730176, -73.86453449244024 40.65301128779622, -73.86391332976848 40.653346491056084, -73.86355495504974 40.65354900366288, -73.86326307789376 40.65371608408976, -73.86142616482803 40.65479006611634, -73.8609792240129 40.65505240783514, -73.86058848804106 40.65529976469167, -73.86001825674418 40.65566074720616, -73.85928023453616 40.65614126541541, -73.85904905382465 40.65630104853259, -73.85865824701743 40.65657890917821, -73.85825517905356 40.6568659512728, -73.85801287023929 40.657043402958294, -73.8577385097544 40.65724738247537, -73.85752645153971 40.65740100771684, -73.8574209635513 40.65748145535158, -73.8572070070958 40.65764782718164, -73.85714496899195 40.65769640243147, -73.85714528080786 40.65769656851402, -73.85701566851738 40.657798997171035, -73.85618390219187 40.658456310831845, -73.85606272534724 40.6585520707159, -73.8558733101302 40.65870273150933, -73.8556463788896 40.65888323220024, -73.85552209093152 40.65898208989142, -73.85534130080909 40.65912235965687, -73.85464119446436 40.65968480316892, -73.8538764144822 40.660215766410765, -73.8538667481115 40.66022247739615, -73.85324909537273 40.66062142997278, -73.85286427440585 40.66086831059036, -73.85212593894892 40.66136350490547, -73.85169668566337 40.661643663442085, -73.8517097179871 40.6616247063373, -73.85165730325242 40.66166083416016, -73.85009671295695 40.66257234381092, -73.84981950403207 40.662474289587884, -73.85018828878765 40.66227011434315, -73.85055280740738 40.66206154505008, -73.85091296751062 40.66184863115764, -73.85126868143867 40.66163142752478, -73.85159792149359 40.661424029494874, -73.85192310803126 40.661212955692754, -73.85224416998122 40.660998252888255, -73.85256103628036 40.660779966050484, -73.85287363940802 40.660558143755374, -73.8533179927916 40.66021959068235, -73.85375785318749 40.65987765413204, -73.85419317559025 40.659532367417604, -73.85462391617595 40.65918376565498, -73.85505003230459 40.65883188486222, -73.85506638859165 40.65881822750694, -73.85507233546436 40.65881326414145, -73.85509107164522 40.658797634045065, -73.8554907668009 40.658468950782414, -73.85589618654807 40.65814435984554, -73.85614694397542 40.65794787093852, -73.85639979898279 40.65775294830063, -73.85639836882135 40.657757601292325, -73.85640400316663 40.657753262426844)), ((-73.85012417956 40.662043129218816, -73.84974337612182 40.66226056849636, -73.84953076696762 40.66237215738089, -73.84948594975698 40.66235630457059, -73.8494585198184 40.6622235080715, -73.84945814802143 40.662224243307804, -73.84945568313564 40.66220977326699, -73.84942183086675 40.662010989227625, -73.84941540261464 40.66197324552279, -73.84972706328034 40.661798442077796, -73.85023277684805 40.661505621119204, -73.85055936498397 40.661310248115434, -73.85070852168029 40.661219207649054, -73.85121194709984 40.66089595631778, -73.8517613574366 40.66053525368386, -73.85194878962315 40.660395369116, -73.85222298955914 40.66020031206018, -73.85243302685627 40.66005089854405, -73.85263521677254 40.65990706590462, -73.85281623487484 40.65976884576284, -73.85343928841107 40.65928013784257, -73.85408245747301 40.65875308999, -73.85427087341851 40.658599510495726, -73.85451438295834 40.658384529235136, -73.85492469752703 40.658062720599574, -73.8549272084361 40.65806030857738, -73.85507517115863 40.65794451829464, -73.85518213013057 40.657860815688714, -73.85530515867592 40.657764536753646, -73.85549483967233 40.65761609609134, -73.85577180985979 40.65741052407562, -73.85594049370386 40.65728532302782, -73.85612665206466 40.657147150916764, -73.85649896647473 40.656870804883766, -73.85690471036634 40.65656964313511, -73.85737388762617 40.656221393089545, -73.8578148867134 40.655916677861036, -73.85829383202659 40.65558573687724, -73.85864192780703 40.65534520726907, -73.85869470816358 40.65530873630141, -73.85902597427614 40.655079832151664, -73.85906531463252 40.655054082318344, -73.85941370723438 40.65482604722116, -73.86001654281971 40.65443875909744, -73.8604993732359 40.65413553067925, -73.86050465014334 40.65413221686857, -73.86062501725387 40.65405662290141, -73.86080301012694 40.65394736064648, -73.86080305393212 40.653947333683945, -73.86123905598889 40.653679687082246, -73.8618585809378 40.65330799918508, -73.86248351520753 40.65294160405579, -73.86311377954253 40.65258054833936, -73.86374929824228 40.65222487778548, -73.86438998852354 40.65187463543491, -73.86503577351884 40.65152986523683, -73.86525941862402 40.651397745847014, -73.86452770535799 40.65193707578314, -73.8641443965795 40.65222854109714, -73.86394955111142 40.65237764374059, -73.86331723908074 40.652747527584374, -73.86198243698037 40.6535614384568, -73.86042753130936 40.654600760195265, -73.86022473542118 40.654736308468266, -73.86022596759824 40.65473682506203, -73.85964466706847 40.655129223977696, -73.85891672129554 40.655621426492246, -73.85891663603887 40.655621484020806, -73.85839353959236 40.65597888359722, -73.85798121488571 40.6562562570967, -73.8575750704003 40.656538871477636, -73.85717522216856 40.65682664770346, -73.85678178387084 40.65711950403383, -73.85639486565066 40.65741735692336, -73.85606029229314 40.65766677752789, -73.85573071591803 40.65792002792243, -73.85540621351119 40.65817705061321, -73.85508685851693 40.65843778720169, -73.85477272438763 40.6587021774885, -73.85424944241142 40.65912975057835, -73.85372162830019 40.65955408355333, -73.85318931521776 40.65997514757721, -73.85265253987683 40.66039291471904, -73.85230672930976 40.66064195515736, -73.85195563277782 40.66088666976688, -73.85159934385476 40.66112699378304, -73.85123795848037 40.661362864245746, -73.85087157023408 40.661594218192455, -73.8505002774301 40.66182099266717, -73.85012417956 40.662043129218816)), ((-73.88186297952713 40.63391370556865, -73.88247425131048 40.63329940922759, -73.88249871049558 40.63327696445053, -73.88287057015035 40.63294373091353, -73.88309742580307 40.63277938454566, -73.88369301160371 40.63228386683454, -73.88416590556659 40.63192725378156, -73.88443207228916 40.631746186587094, -73.88553206870284 40.63129414253138, -73.88468523863767 40.63183830823186, -73.88464145840899 40.6318703228311, -73.88459767103535 40.63190234371006, -73.88455389189531 40.63193436367999, -73.8845192483624 40.63196030439269, -73.8845098581191 40.63196733342615, -73.88446471649581 40.63200113502323, -73.88442013699621 40.632034524729406, -73.88437554208431 40.6320679153032, -73.88433531300797 40.63209885453334, -73.88429508387559 40.632129804555504, -73.88425485353483 40.63216074825866, -73.88421462432787 40.632191698252456, -73.88417369129797 40.6322236092786, -73.8841327452283 40.63225551937638, -73.88409181212172 40.63228742947259, -73.8840508718823 40.63231934044748, -73.88400993277793 40.63235125591147, -73.8839690118106 40.63238495440888, -73.88392809789559 40.632418651998215, -73.88388718393931 40.63245234957285, -73.88384627111274 40.63248605343767, -73.88380492784071 40.63252052139431, -73.88376359869132 40.6325550001566, -73.88372226358919 40.632589478897884, -73.88370131488566 40.63260695121324, -73.88336265932239 40.63289915921842, -73.8833503616635 40.63291056263523, -73.8833047768501 40.63294835442978, -73.88325919197722 40.63298615070875, -73.88321361533788 40.633023940674256, -73.88316842069572 40.63306226141602, -73.88312321772905 40.633100581230956, -73.88307800880033 40.6331389010219, -73.8830328069024 40.63317722620526, -73.88299136904551 40.63321459344592, -73.8829768318716 40.63322769922779, -73.88294992522266 40.63325196606852, -73.88291761402115 40.633281102814955, -73.88290848608777 40.63328933507876, -73.88287005821586 40.63332767249903, -73.88272874246788 40.63346277845218, -73.88286556031703 40.63358035652309, -73.88280341918838 40.63363627492557, -73.88280020201061 40.633633389982485, -73.88265191719367 40.633772605010606, -73.88255252513537 40.63386591806607, -73.88254585565352 40.63387217977269, -73.88238467712323 40.63402349867812, -73.88223710564351 40.63417146064671, -73.88221866138264 40.63418995374284, -73.88212129479459 40.634287577485104, -73.88202167329318 40.63438746183703, -73.88186701563232 40.634557075359666, -73.88161607425778 40.634832279094894, -73.88137292544786 40.63511608037479, -73.88117380117319 40.63535456295219, -73.88099288712037 40.63558675228544, -73.88081111292442 40.6358378612588, -73.88069199324586 40.636004627448614, -73.88055128359191 40.63620361779811, -73.88041549957802 40.63640748940901, -73.88027510369555 40.63662765996318, -73.88017327037538 40.63679258763039, -73.879995048245 40.63709676751284, -73.87983817942786 40.63738247815656, -73.87978230115385 40.6374881470585, -73.87964416984214 40.63774935406562, -73.87958799503596 40.63785720361759, -73.87947319768149 40.638077599882, -73.87929907594143 40.63842343377742, -73.879301978005 40.63842607894786, -73.87929597353941 40.6384295936766, -73.87929581716516 40.638429778118955, -73.87929558378993 40.63843005253246, -73.87914479268676 40.63872130767004, -73.87893787153804 40.63912838326909, -73.87872010901881 40.63957174518392, -73.87857252199669 40.639867749556906, -73.8783756171569 40.64026389156535, -73.87818721872416 40.640629862228025, -73.87799174049523 40.64102173119725, -73.87785793139835 40.641308597252646, -73.87779289752538 40.64148736408001, -73.87749853938855 40.64230706548564, -73.87737391482811 40.64256048373749, -73.87734940193234 40.64262865301056, -73.87733126147818 40.642694019455924, -73.87731523918895 40.64276019592337, -73.87730664200126 40.642823958814475, -73.87730232574016 40.642865123242174, -73.87730012886252 40.642907096796016, -73.87730456594211 40.643468220379035, -73.87730503407653 40.6435273813787, -73.87725480850958 40.643528176069935, -73.87725050761453 40.643181149249415, -73.87723839928898 40.64283423024803, -73.87721852563162 40.64271388346531, -73.87720644148114 40.64259293804539, -73.87720217699399 40.642471686691735, -73.87720574104654 40.642350422083446, -73.87721142032298 40.64220330132343, -73.87722606228036 40.642056540431966, -73.87724963672366 40.64191045545568, -73.87728209218146 40.64176536151597, -73.87732335826911 40.641621573712094, -73.87737334688492 40.64147939991832, -73.877431948651 40.641339147984446, -73.87896904537288 40.63813985367155, -73.87903780616443 40.6379687993887, -73.87913096572825 40.63780281632223, -73.87923352811526 40.63762007988075, -73.87966744488621 40.63683924123266, -73.88010120908598 40.63613832366133, -73.88028368309196 40.635869383550336, -73.88058204280338 40.63545050273605, -73.88072797605045 40.63525981694354, -73.88124086118127 40.63460138610305, -73.88186297952713 40.63391370556865)), ((-73.88548242403733 40.629362372719434, -73.88541936268435 40.629338935985544, -73.88535276659199 40.62932210461112, -73.88528382191969 40.62931217874629, -73.88521375640255 40.62930933611463, -73.88514381927074 40.629313625689676, -73.88507525287808 40.62932497126864, -73.88507442037931 40.62932520096971, -73.8850742359404 40.62932523140305, -73.8850082639446 40.6293434324952, -73.884991992502 40.629349901767654, -73.88497859520282 40.62935522755075, -73.88496938118267 40.629356947331665, -73.88493265049863 40.629361018750984, -73.88489553476782 40.629360816804045, -73.88485888382122 40.62935634684417, -73.88482353904791 40.62934771147345, -73.88479031212371 40.629335107819834, -73.88475996373657 40.62931882661516, -73.88474659508596 40.629304818228114, -73.88470702952306 40.629263362728224, -73.88470461795562 40.62926083525086, -73.8847070804397 40.62925920417626, -73.88471746405256 40.629252325607496, -73.8847753448155 40.629213982739344, -73.8853764694108 40.62881577104678, -73.8853770007128 40.62881541947297, -73.88704501442473 40.629129732768554, -73.88704553668465 40.629129831438334, -73.88709175334627 40.62910002008216, -73.89209655032677 40.62587139036589, -73.89213758388914 40.62584491664411, -73.89214418934031 40.62584065527404, -73.89217497809216 40.62582079165421, -73.8921801318319 40.625817466362484, -73.89221320756236 40.62579612712288, -73.89243883326614 40.62565056125958, -73.89248760776661 40.625619094063566, -73.89248827120409 40.62561885064291, -73.89248802896014 40.625618822500215, -73.892503717373 40.62561302340914, -73.89267347632268 40.625550276143585, -73.8926915806353 40.625542924083035, -73.89285629257104 40.625474998345645, -73.8928772685273 40.62546563897003, -73.89301287470245 40.62540363112179, -73.89301663943355 40.62540191012816, -73.89302406244836 40.62539851576904, -73.89303855128122 40.62539189061184, -73.89304889504614 40.625386840209494, -73.89321777761577 40.62530162333496, -73.89326774393804 40.62527390488121, -73.89326777587789 40.62527388690046, -73.89326824668679 40.62527362708706, -73.89329968692792 40.6252561807676, -73.89329957915699 40.62525631754669, -73.89331704304949 40.625246550497415, -73.89347258085336 40.62515573493455, -73.89347630268821 40.62515347537477, -73.89349890476578 40.62513965441203, -73.89354960858606 40.62510808229036, -73.89354987004768 40.62510791683667, -73.89354997179343 40.625107852093365, -73.89365425436327 40.62503980530592, -73.89375578433993 40.624969383007944, -73.89375603755592 40.62496919953575, -73.89383513300281 40.624911251156874, -73.89385596632667 40.62489551218243, -73.89385599472627 40.624895490596174, -73.8939218198259 40.62484421356893, -73.89393028810242 40.62483747738296, -73.89406470486021 40.624725925050384, -73.89419322159517 40.62461040663993, -73.89431563592744 40.62449110299, -73.89431591530673 40.6244908150802, -73.89437601321907 40.62442848403816, -73.89437570962224 40.62442839190611, -73.89441783466253 40.624382471626504, -73.89443437772024 40.624364333221415, -73.89444237755183 40.62435555058436, -73.89444736902377 40.62435006199099, -73.89445089715142 40.62434618218492, -73.89450084074406 40.62429094235959, -73.894637590327 40.62413703280006, -73.89482717752541 40.623916877790585, -73.89482722015212 40.623916827400414, -73.89482737943034 40.62391700134663, -73.89488182285093 40.62385131402664, -73.89506988744309 40.623612320126355, -73.8952506377213 40.623370072872085, -73.89542397662655 40.62312470008362, -73.89554871153314 40.62292407928732, -73.89566815274031 40.622721596674175, -73.89578225052223 40.622517333262316, -73.8958909622448 40.62231137097623, -73.89592815803618 40.62232822098119, -73.89579711068632 40.622572815214966, -73.89565957254247 40.62281533220518, -73.89551560161394 40.62305567202366, -73.89538546273273 40.623272995226365, -73.89524723656235 40.623487399525274, -73.89510103441272 40.62369871029197, -73.89494697468582 40.623906755605, -73.8947851840592 40.6241113653506, -73.8946157939379 40.624312373020494, -73.89443894163762 40.6245096148127, -73.89438602775597 40.62456635394998, -73.89421689549316 40.624740388866655, -73.894041063696 40.62491052440702, -73.89385868622432 40.62507661299709, -73.89366992285437 40.62523850616796, -73.89347494044794 40.62539606266114, -73.89335582741721 40.625496208993496, -73.89323486406667 40.62559505943537, -73.89208198597123 40.626339051242006, -73.8920818349343 40.62633889801174, -73.89200609180962 40.6263880268285, -73.89039352523942 40.62743395382226, -73.88882370386754 40.62844455945039, -73.8888235488659 40.62844465925824, -73.88765233649752 40.62919595954357, -73.88750951576914 40.62928540635965, -73.88742575864809 40.62933141751368, -73.88731461750275 40.62937820413467, -73.88719990381065 40.62941968487963, -73.88708205282525 40.62945570077329, -73.88696151276731 40.6294861153677, -73.88683874246333 40.62951081293889, -73.8867142066141 40.62952970028341, -73.88658838052528 40.62954270492233, -73.88646174182819 40.629549777794395, -73.88639357785308 40.629550375946415, -73.88633477166438 40.62955089145649, -73.88633588047091 40.6295501271104, -73.88628321986386 40.62954964008672, -73.88615090219939 40.62954190514724, -73.88601951283411 40.62952769353309, -73.88588959777087 40.629507066124205, -73.8857616958833 40.62948010450772, -73.88576153166098 40.62948006292061, -73.88563633770394 40.62944692808671, -73.88559353453076 40.6294272847776, -73.88554082733023 40.62939199856037, -73.88548242403733 40.629362372719434)), ((-73.8842474128894 40.63093468620025, -73.88408439109442 40.62967169178228, -73.88463491811817 40.62930700705537, -73.8846356659761 40.62930651161906, -73.8847312251023 40.629390197363094, -73.88474057892375 40.6294190909304, -73.88474338447625 40.62944877309213, -73.88473956285179 40.62947839007641, -73.8847292230766 40.629507087398096, -73.88468935694401 40.62955128278198, -73.88465624622023 40.62959860523207, -73.88463030918363 40.629648457228384, -73.88461187315598 40.62970021144156, -73.88460116976947 40.62975321342941, -73.88459833375846 40.62980679604371, -73.88460340177043 40.62986028303099, -73.88461631116385 40.62991299983778, -73.88463689644895 40.629964280810796, -73.88466489990377 40.63001348091485, -73.88469996684248 40.6300599775294, -73.88471540417243 40.630167683526984, -73.88470953903139 40.63029093275452, -73.88469480972984 40.63041375254809, -73.88467125941325 40.630535771032626, -73.88463895958681 40.630656621762924, -73.88462788649595 40.630688886197454, -73.8846277118643 40.63068939481618, -73.88461071671347 40.6307389126768, -73.8846120231881 40.63073801166666, -73.8845683921929 40.63084883631733, -73.88451733307315 40.630957802920754, -73.88445897986078 40.631064623435336, -73.88439349022326 40.63116901434472, -73.88432103482107 40.6312706993489, -73.88424180676552 40.631369408473155, -73.88415601688511 40.631464881665686, -73.88406389018884 40.631556863391104, -73.88396567294137 40.63164511254343, -73.88386162558687 40.63172939343394, -73.88375202155429 40.63180948299439, -73.88366864468428 40.631865275940314, -73.88346760735493 40.63202091907448, -73.88322203122912 40.63222289701528, -73.88321031595297 40.63223253238787, -73.88308568020597 40.632335989846005, -73.88303725143236 40.63237797957091, -73.88303469207541 40.632378817152635, -73.88278304653277 40.63259462356654, -73.88253630612158 40.63281369251904, -73.88229454307049 40.63303596017849, -73.88205782961617 40.63326136001155, -73.88182623563311 40.633489826383155, -73.88161685024558 40.63369986079624, -73.88141367958794 40.633913407859005, -73.88121682316904 40.634130361445564, -73.88102638050839 40.63435061182758, -73.88084244639876 40.63457405107255, -73.88066511328269 40.63480056584183, -73.88049447006085 40.63503004279257, -73.88033060090983 40.635262368576456, -73.880173587651 40.63549742714035, -73.87953400772359 40.63647820293413, -73.87914457841522 40.63715694192985, -73.87879385089151 40.637837551121805, -73.8787699303818 40.63788396930335, -73.87877126560511 40.63788558354164, -73.87874512373874 40.63794117837205, -73.87853944119243 40.637758684423865, -73.87859513831364 40.63764268607484, -73.87872377444774 40.63737478124683, -73.87900601517727 40.63678695818195, -73.87927294609595 40.636302571828594, -73.87956017018868 40.63581581160956, -73.87989744278292 40.6352927885758, -73.88024403824119 40.63482217909253, -73.8806620823833 40.63429627065319, -73.881179426934 40.63369137696377, -73.88182223157841 40.63302819680145, -73.88183864177829 40.63301280216698, -73.88223543601184 40.63264054073945, -73.8820683238745 40.63249071382951, -73.88197064052994 40.63240313527496, -73.8842474128894 40.63093468620025)), ((-73.8752629874059 40.64367814221266, -73.87526105937188 40.64367552411343, -73.87526016157857 40.64367705041994, -73.8749100958212 40.64320157250217, -73.87579823275755 40.642634469662134, -73.87580286965752 40.64263366870542, -73.87581717464326 40.64260425698846, -73.87625065820228 40.64171295271377, -73.87731008245005 40.6395345213036, -73.87774348578276 40.638643293904764, -73.87816740903526 40.639028101770045, -73.87791888904438 40.639593140192524, -73.87761035460885 40.64017966992087, -73.87693636077684 40.64149685343667, -73.87684180740173 40.6416807904307, -73.87674224863113 40.64181965459326, -73.87660211926949 40.641984632522366, -73.87643417587259 40.642170627330046, -73.87628903922828 40.642290531208275, -73.87612423855953 40.6424480185023, -73.87595106675523 40.642631146016, -73.87567664700775 40.64298849265175, -73.87561534973369 40.64311207304712, -73.87559316094915 40.64320269169755, -73.875609017529 40.6433202319971, -73.8756193821898 40.643424134295024, -73.87562039854282 40.6435283335573, -73.87561435020363 40.643612743474804, -73.875602163302 40.64369676763258, -73.87558387731016 40.64378014762249, -73.87555954706653 40.64386262685307, -73.87552924750507 40.6439439505547, -73.87545916759639 40.644085216547595, -73.87538268215337 40.64422454124001, -73.87529988367281 40.644361755422025, -73.8752108717393 40.64449669439322, -73.87511575539482 40.64462919526375, -73.87501464722943 40.64475909604755, -73.87481146650872 40.6450533834683, -73.87453034324405 40.64540101149794, -73.87430630945315 40.64571345132979, -73.87422548763526 40.64582032569796, -73.87398084601737 40.64610737382807, -73.87394501160412 40.6461474463666, -73.87380254422843 40.64629681406926, -73.87350798918715 40.64592859339548, -73.8736914107304 40.64574001471945, -73.8737848102987 40.64563492314873, -73.87384114751482 40.64557153260216, -73.87392160062956 40.64548100791794, -73.8740756673988 40.645290297326824, -73.87420147672536 40.64513456239273, -73.8743605082476 40.644937702698634, -73.87460145710516 40.644635259833784, -73.87461902756591 40.644613204569595, -73.87464640529761 40.64457507672408, -73.8748021880298 40.64434846242195, -73.87495711498254 40.64412309419256, -73.8752629874059 40.64367814221266)), ((-74.0119679926417 40.602158613848474, -74.01180005289982 40.60211725222416, -74.01173580466485 40.602101434828604, -74.01166860617127 40.602084875666485, -74.00932452753649 40.60072073926041, -74.00931983652384 40.60072471364545, -74.00919100151691 40.60064303134725, -74.00905775110864 40.600565482649046, -74.00907218287867 40.600567698596414, -74.0075109232485 40.59957781577807, -74.00708269251385 40.599322433224316, -74.00703569807563 40.599294407353305, -74.00703514390399 40.599293648246885, -74.00486361715838 40.59797902228397, -74.00477718773081 40.59791416938171, -74.00461191609446 40.59779764582504, -74.00444060131888 40.597686308372026, -74.00426352339824 40.59758033979146, -74.00408097177082 40.5974799129469, -74.00389324413796 40.597385192597955, -74.00370064882658 40.59729633269886, -74.00350349888288 40.597213478199876, -74.0033021179792 40.59713676594776, -74.00309683332621 40.597066319283236, -74.00288798276142 40.59700225524497, -74.00267590529859 40.59694467736578, -74.0027794405715 40.59684467007861, -74.00301372253368 40.596913442483405, -74.00324504232113 40.59698781124135, -74.00347317196963 40.597067704335345, -74.00369788232922 40.59715303984407, -74.00391895133461 40.59724373584748, -74.0041361592784 40.59733969962056, -74.00434928881178 40.59744083663834, -74.00455812848807 40.59754704697387, -74.00476247039984 40.597658223496744, -74.00496211254178 40.597774257276335, -74.00499660273167 40.597793303633175, -74.00509674116542 40.597856916645114, -74.00675496628307 40.59891026496326, -74.00675483867148 40.598910090269385, -74.00715144417576 40.59916210987467, -74.00745481907826 40.59935488432399, -74.00947259006865 40.60059529161095, -74.00952925619436 40.60062832978828, -74.00977431134027 40.60076517147455, -74.01002303297764 40.60089811305572, -74.01027530883817 40.601027104989456, -74.01057296010377 40.601172670815636, -74.01087440206952 40.60131364915093, -74.01117950354339 40.60144997604143, -74.01148814514625 40.601581598339344, -74.01170744573534 40.601671235794576, -74.0117665023344 40.60169480093013, -74.01201520242111 40.6017914390445, -74.01206710462714 40.601810766015475, -74.01226947824382 40.60188601382905, -74.01252419590011 40.601976535652604, -74.0128344229368 40.60208110337267, -74.0131476071596 40.60218039645873, -74.01346360908458 40.60227437708116, -74.01373442691894 40.602350120366935, -74.01398259759908 40.602415379192145, -74.01479452036216 40.60263343621575, -74.01560406772255 40.602856571268845, -74.01641118312602 40.603084770901575, -74.01645983343663 40.603097991712175, -74.01656661349543 40.60313002324664, -74.0166719706027 40.60316467450677, -74.01677580197108 40.60320191849576, -74.01687053053651 40.603241355597966, -74.016946287001 40.60327289424093, -74.01712167073401 40.60335240415051, -74.01728334487767 40.60343718030588, -74.01695549924202 40.60335689357388, -74.01687470334242 40.60333849699472, -74.01683521115291 40.60332743627169, -74.01680714019342 40.60331957432057, -74.01673956999355 40.603300650707155, -74.01667199983376 40.60328173425814, -74.0166044379812 40.60326281146453, -74.01653687498674 40.60324389403448, -74.01647317065736 40.603229124716506, -74.01640947462661 40.603214355362034, -74.0163457703536 40.60319958597343, -74.01628207319773 40.60318481654847, -74.0162442807551 40.6031760553146, -74.0162442449582 40.603174609081336, -74.01406164936806 40.60265482916891, -74.01403216146288 40.60264808336026, -74.01396631851546 40.60263302654715, -74.013900469689 40.60261796339334, -74.01383534269574 40.60260247867057, -74.0137702169131 40.602586988507596, -74.01370508997805 40.60257149290467, -74.01366617688609 40.60256223927121, -74.01363996307433 40.602556002668, -74.01357484447125 40.60254051239338, -74.01350971053908 40.60252502208368, -74.01344386889107 40.602509362521666, -74.01337945812338 40.60249403504799, -74.01331433845971 40.60247854462581, -74.0132492046495 40.602463059571484, -74.01318408622667 40.60244756367223, -74.01311896783513 40.60243207313918, -74.01305383529598 40.60241658257078, -74.01298871460087 40.602401086561, -74.01292358094064 40.60238559591887, -74.012858462671 40.60237011064123, -74.01279333615912 40.60235461452133, -74.01272790132987 40.602339224660255, -74.01271348182873 40.60233583669121, -74.01266247243927 40.6023238401644, -74.01259704357791 40.60230845112863, -74.01253161592808 40.602293061155, -74.01251418707126 40.60228896477811, -74.01246618003903 40.60227767654805, -74.01240075126816 40.6022622874005, -74.01233532370881 40.60224689731501, -74.0123141115994 40.60224191339899, -74.01226989499926 40.60223151349601, -74.01220445922885 40.60221611793371, -74.0121630464444 40.60220638047607, -74.01213903176092 40.60220073313953, -74.0120718259806 40.60218418592087, -74.01200462023229 40.6021676314587, -74.0119679926417 40.602158613848474)), ((-73.8724870347028 40.647870669295536, -73.87350373397643 40.647011297797796, -73.87354524731818 40.647081162471984, -73.87358454512383 40.647147298348635, -73.8736274481163 40.647219501365534, -73.87344669591657 40.64741283218608, -73.87324364349631 40.64761177539012, -73.87323291790462 40.6476222834277, -73.87322585476419 40.64762920423298, -73.87311022659817 40.64774249074167, -73.87296884603377 40.64787155099291, -73.87295450708103 40.64788464040224, -73.8729111088288 40.647924255798195, -73.8729110590851 40.64792430166966, -73.87288420503472 40.647948815627856, -73.87272881854398 40.64809066007289, -73.8726502477535 40.64815757258556, -73.87264493295872 40.64816209811018, -73.87236770281719 40.64839819313568, -73.87229375129733 40.64845792799293, -73.8722870786981 40.64846331739152, -73.87226999873262 40.64847711327979, -73.8721411338031 40.64858120511865, -73.87184352350592 40.648810889736275, -73.87167835841208 40.64893316709477, -73.87165388516067 40.648951285235604, -73.87150276062188 40.6490600161988, -73.87143721160955 40.64910557852356, -73.87142791993426 40.64911225358643, -73.87139566968393 40.649134453133044, -73.87116955978271 40.64929010234989, -73.87101712300161 40.64939061937385, -73.87096859188304 40.64942261979453, -73.87090627853954 40.649463710769055, -73.87089585954996 40.64947001170872, -73.8708497499512 40.64950005616948, -73.87045447004607 40.64974480930074, -73.87006369977071 40.64997217535143, -73.86980226218705 40.650116669555935, -73.86961965515916 40.65021365565227, -73.86955509114222 40.65024945729779, -73.86954204079605 40.6502565719003, -73.86763043798967 40.65129869371533, -73.86718107441591 40.651544136053005, -73.86675047792698 40.65177932436202, -73.86644631890317 40.65195577575021, -73.86653650704137 40.65181529871693, -73.86659785369847 40.651723192826424, -73.86671329902849 40.651605665839114, -73.86689300960343 40.6514550641452, -73.86703871609191 40.651345368535296, -73.86731649697819 40.65114644512638, -73.86741807326705 40.65108017604541, -73.8676042455093 40.65096552577779, -73.86782418486587 40.65084076067389, -73.8691109883639 40.650126970304015, -73.86954109010227 40.64988838482324, -73.86976823322908 40.6497588063916, -73.86999378127977 40.649627622784436, -73.87035777589779 40.649394287865206, -73.87077689076474 40.649116568641766, -73.87118998118511 40.648833663156914, -73.87159693703943 40.64854564699569, -73.87199765057422 40.64825259844795, -73.87235172466205 40.64798503905357, -73.87239201286202 40.64795459490217, -73.8724870347028 40.647870669295536)), ((-73.86619166643787 40.65098383749988, -73.86598506171347 40.65106619249826, -73.86578191692148 40.651153398654024, -73.8655393772318 40.651247412246974, -73.86633497516063 40.65081989365301, -73.8663355060309 40.65081989517047, -73.866335992499 40.650819633684975, -73.8663360706166 40.65081959235188, -73.86691917469237 40.650509283487864, -73.86743541766914 40.65023673440489, -73.86788897584691 40.649997274409344, -73.86845508529889 40.649697574247895, -73.86909946395996 40.64934607972923, -73.86961364337634 40.64904460825522, -73.86999488449952 40.64881267721922, -73.87063989714588 40.6483737794339, -73.87107492701378 40.64806026967635, -73.87133156346773 40.64786838909595, -73.87159985993593 40.64766515731317, -73.87172442297634 40.6475708012835, -73.87195916257858 40.64738114886918, -73.87220890900625 40.64716851159907, -73.87248894815721 40.64693007959494, -73.87259538596841 40.6468311278839, -73.8727208764856 40.6467144632446, -73.87307863255201 40.64636754022718, -73.87330189371018 40.64670898848305, -73.87302100773393 40.6469595416156, -73.87273430425658 40.64720624240484, -73.87244187562779 40.647449014365854, -73.87214381302299 40.64768777921158, -73.87184021234805 40.64792246046136, -73.87153116832273 40.6481529861359, -73.87121678040927 40.648379279759006, -73.87089714806076 40.64860127205886, -73.87057237310326 40.648818891965696, -73.8702158911629 40.64904133437472, -73.86985400418172 40.64925865461398, -73.86948683766394 40.6494707771317, -73.86911452066501 40.649677627281434, -73.8687371846052 40.64987913312209, -73.86835495972812 40.65007522271214, -73.86796798218582 40.65026582862055, -73.86757638576928 40.65045088431535, -73.86718030900417 40.65063032327123, -73.86691928011638 40.65072731534718, -73.86665592277663 40.65082058408918, -73.86663411119231 40.65082810604421, -73.86659951386918 40.65084146203336, -73.86640162817636 40.65090637674557, -73.86640153233611 40.65090641175443, -73.86619166643787 40.65098383749988)), ((-73.90587894303027 40.59722456355763, -73.90588522091836 40.59717095786119, -73.90589149880397 40.59711734676101, -73.90589778376025 40.597063741069135, -73.90590406162698 40.59701012906715, -73.90592444260243 40.59674461031821, -73.90593992802378 40.59647890744746, -73.90595050845013 40.596213054668915, -73.90595618502748 40.59594711862353, -73.90595671055972 40.59577864738101, -73.90595010406288 40.595610254047614, -73.905936373622 40.59544210792707, -73.90592562609909 40.595365424081926, -73.90591161169462 40.59528905274352, -73.90589437402839 40.59521306598832, -73.90587389172727 40.595137548446495, -73.90585022140286 40.59506257400557, -73.9058233511337 40.59498822640253, -73.90579334580883 40.594914573227534, -73.90576022655847 40.594841716254614, -73.90575808952256 40.59483750725743, -73.90688515159395 40.59584933806045, -73.90685157519106 40.595836241556725, -73.90683213561884 40.595831234198016, -73.90681247440439 40.59582674895973, -73.90679262817605 40.59582278136878, -73.90677261108846 40.59581934674556, -73.9067524455998 40.59581643610288, -73.9067321541355 40.595814063867266, -73.90671177449633 40.59581223187033, -73.90669132676649 40.59581093922789, -73.9066708333914 40.595810185958115, -73.90665031090855 40.59580997297493, -73.90662978765643 40.59581031020711, -73.90660929909832 40.595811181474005, -73.9065888617565 40.59581259849593, -73.90656850635497 40.59581455499421, -73.90654824470688 40.59581705097852, -73.9065281087239 40.59582007566853, -73.90650812674961 40.595823635391085, -73.906488312979 40.595827716649936, -73.90646870521158 40.595832322177465, -73.90644931054655 40.59583744387498, -73.90643016561984 40.59584307186649, -73.90641128578898 40.59584920616479, -73.90639269942162 40.59585583598673, -73.90637442307424 40.59586294873867, -73.90635648509829 40.595870545344376, -73.90633889260563 40.59587860869982, -73.90632169049577 40.59588713343867, -73.90630488705324 40.59589610876155, -73.90628849410923 40.595905522071, -73.90627254474839 40.5959153688915, -73.90625705200483 40.59592562131768, -73.9062420288749 40.595936278459824, -73.90622750726314 40.595947334940995, -73.90621349547834 40.595958762851964, -73.9062000053419 40.595970556799365, -73.90618707587201 40.59598269340168, -73.90617469761531 40.59599517445241, -73.90616288833431 40.596007970248984, -73.90615167522347 40.596021064604344, -73.90614105946568 40.59603445661918, -73.90613106236258 40.59604812019578, -73.9061216992989 40.596062036435974, -73.90610396423477 40.59608741940031, -73.9060873874467 40.596113258072656, -73.90607198198396 40.5961395146421, -73.90605777033683 40.5961661585098, -73.90604806650252 40.59618630878689, -73.90604200865322 40.59619955953442, -73.9060329889245 40.59622048031674, -73.90602244879389 40.59624808894069, -73.9060131628966 40.596275969646896, -73.90600514312263 40.5963040693145, -73.90599838595848 40.59633236722879, -73.90599291627052 40.59636082378741, -73.90598872583885 40.59638940476392, -73.90598582416305 40.59641807684682, -73.90598422782338 40.596446812133586, -73.90598391443113 40.59647557098295, -73.9059849064747 40.596504324596545, -73.9059871957483 40.59653302884206, -73.90599076811627 40.59656165579154, -73.90599564015129 40.59659018294544, -73.90600178830857 40.59661855265078, -73.9060092114208 40.596646755901205, -73.90601279510595 40.59666819308268, -73.90601732168214 40.596689529276, -73.90602280891673 40.59671073207675, -73.90602923202555 40.59673178435463, -73.90603658396302 40.59675265638638, -73.90604487421005 40.59677332746764, -73.90605407799896 40.5967937687612, -73.90606418944756 40.59681396315203, -73.90607519442683 40.59683387730906, -73.90608708350274 40.59685349951747, -73.90609984371108 40.59687280815386, -73.90611345266169 40.59689176357667, -73.90612791036396 40.596910359481896, -73.90614318023461 40.59692856792317, -73.90615925402696 40.59694637268399, -73.9061756315684 40.59696324925125, -73.9062304593266 40.59701248777524, -73.90625101185442 40.59702858698471, -73.90627148448526 40.597043539759476, -73.90629262182583 40.597057952758725, -73.90631438728197 40.5970718052403, -73.9063367501486 40.59708508907409, -73.90635969745809 40.59709778443764, -73.90638319852164 40.597109871494105, -73.90640723089503 40.59712134842387, -73.90643175090284 40.59713218907582, -73.9064567443566 40.59714240154282, -73.90648218059756 40.59715194437559, -73.90650803125408 40.597160830158, -73.90653426564086 40.59716903635183, -73.90656084122693 40.5971765629222, -73.90658463045229 40.59718285530593, -73.90660868639138 40.59718850762961, -73.90663298540055 40.597193530680144, -73.90665750033988 40.59719790102172, -73.90668220048354 40.597201624932914, -73.90670704803263 40.59720469788035, -73.90673202290387 40.59720711894704, -73.9067570944055 40.59720887009755, -73.90678222589472 40.59720996481003, -73.90680739493553 40.597210394961415, -73.90683257198103 40.597210168632515, -73.90685771333776 40.59720927228003, -73.90688281191397 40.5972077076993, -73.90690782279471 40.59720549016286, -73.90693271526796 40.59720261604381, -73.90695745389368 40.59719908351245, -73.90698202565952 40.59719490426517, -73.9070063986671 40.597190078276306, -73.90703051974556 40.59718461090603, -73.90705440069064 40.59717851477141, -73.9070779729834 40.59717178801616, -73.90710122714701 40.59716444864322, -73.90712415137584 40.5971564903396, -73.90714669364037 40.597147947283354, -73.90716882914725 40.59713880774787, -73.90719053896997 40.597129088827984, -73.90721178527976 40.597118807603415, -73.90723256689495 40.59710796407338, -73.90725283415793 40.597096586114354, -73.90727257760234 40.597084684525136, -73.90729025527845 40.597073276553715, -73.90730744798272 40.59706144584305, -73.9073241308808 40.59704921038387, -73.90734029096987 40.597036575568985, -73.90735592941641 40.59702355220586, -73.9073710072108 40.59701015737321, -73.9073855243293 40.5969964081811, -73.90739080763481 40.59699972906528, -73.90727247434543 40.5971590379268, -73.90725628111677 40.597179340658805, -73.90724098025099 40.59719849143938, -73.90714976052972 40.597312773390364, -73.90702082549858 40.59746352926033, -73.90688579585559 40.59761114892739, -73.90674479700449 40.59775549199043, -73.90659796852977 40.597896418059506, -73.90645472394031 40.59802630644544, -73.90630640341769 40.59815284597113, -73.90615315952495 40.59827591787264, -73.90599511999224 40.59839542227682, -73.90583242321146 40.598511241308934, -73.90566522645146 40.5986232778219, -73.90549368227822 40.59873142115739, -73.90531768823898 40.598837110247224, -73.90513709734496 40.59893819540154, -73.90502313639975 40.59899837327241, -73.90490755576697 40.59905671172263, -73.90489738040041 40.599044903751185, -73.90494413585759 40.59901970888194, -73.90498991921056 40.59899351090794, -73.90503469383027 40.598966312501716, -73.90507843013299 40.59893814695933, -73.90512766797981 40.598904386490794, -73.90517539648384 40.598869393740856, -73.90522157660287 40.59883320740172, -73.90526615156342 40.59879587335512, -73.90530906933611 40.59875742487937, -73.9053502766849 40.598717913262306, -73.90538974519559 40.598677381707375, -73.9054274157475 40.59863586618873, -73.90546325755014 40.59859341981357, -73.90549722092608 40.59855008486735, -73.90552928336183 40.59850590996146, -73.90555939160582 40.598460958990835, -73.90558751727004 40.59841525804881, -73.90561363782288 40.59836886925448, -73.90563772365213 40.59832184931778, -73.90567363838775 40.59824428794402, -73.90570613173058 40.59816584574144, -73.9057351527459 40.59808662533067, -73.90576067888767 40.598006705041385, -73.90576895846097 40.59797639032176, -73.9057990499411 40.59785427435917, -73.90580112792617 40.59784514115739, -73.90581601516652 40.597763666835476, -73.90582730308915 40.597681868074844, -73.90583499160161 40.597599819619845, -73.90584126956026 40.59754621392779, -73.90584754751644 40.59749260283195, -73.90585382545494 40.59743899713861, -73.90586010338335 40.59738539144466, -73.90586638839768 40.597331780352775, -73.9058726651245 40.5972781746566, -73.90587894303027 40.59722456355763)), ((-73.8485081103599 40.6625603938927, -73.8485038687187 40.66245461351261, -73.84916154977914 40.66212056810028, -73.84914947926593 40.66238580332911, -73.84922469132287 40.662544058034854, -73.84592284062971 40.664079849674266, -73.84561989332671 40.66421452652928, -73.84531287280491 40.66434374447574, -73.84498014556577 40.66447584373924, -73.84482089828744 40.664527146731416, -73.84465844266497 40.66457224060572, -73.84445165696053 40.66460737943167, -73.84424939337444 40.66462120065676, -73.84419915882684 40.66440418537356, -73.84462775033515 40.66422572326855, -73.84573939972132 40.6637628296971, -73.84571854347536 40.66367554518395, -73.84589869807276 40.66364685933934, -73.84585893877487 40.66350714300914, -73.84689686644808 40.663356601904255, -73.8485081103599 40.6625603938927)), ((-73.89729436218668 40.61803032160574, -73.89729869289982 40.617744121805096, -73.8973589153383 40.61796240341502, -73.8974106440512 40.61818194714334, -73.89745383316617 40.618402559348496, -73.89748844389653 40.61862404819454, -73.89751444809298 40.61884622005208, -73.89753182115149 40.619068880392426, -73.89754054910324 40.61929183469456, -73.89754062270595 40.61951488843971, -73.89753204335472 40.61973784621612, -73.89751481717177 40.619960512614284, -73.8974889597303 40.62018269493287, -73.89745449370051 40.62040419687267, -73.89741144883921 40.62062482574127, -73.8973598631787 40.620844387951, -73.8972997806581 40.62106269261935, -73.89723125585522 40.62127954887149, -73.89715434571387 40.62149476583301, -73.89706911899216 40.62170815714096, -73.89697565036319 40.621919534635104, -73.89644013636351 40.62167911148343, -73.89655757179705 40.621407240077986, -73.89666656413966 40.62113333478469, -73.89676705179563 40.620857547760004, -73.89685898144263 40.62058003296727, -73.8969423009444 40.620300943468585, -73.89701696407137 40.6200204359317, -73.89708292932622 40.61973866522578, -73.89714015993843 40.619455788023366, -73.8971886250486 40.619171961000376, -73.89722829734148 40.61888734263502, -73.89725915423055 40.618602091407844, -73.8972811802224 40.618316364903066, -73.89729436218668 40.61803032160574)), ((-73.99316223551406 40.5899508951838, -73.99315293936361 40.58993527865831, -73.9931364694389 40.589907664934366, -73.99307829622074 40.589799360928076, -73.99329983157924 40.58969451354004, -73.99330007844898 40.589694654036045, -73.99330686194054 40.589699623518214, -73.9933126873628 40.5897052566298, -73.99331744959515 40.5897114344958, -73.99343397315074 40.589912983699406, -73.99355033467302 40.59011164839626, -73.9936061541568 40.590200474614704, -73.99362322211485 40.590227633539534, -73.99368957716682 40.59033322173738, -73.99383682047592 40.590551765974766, -73.99399195599565 40.59076711627642, -73.9941724705907 40.591003509275836, -73.99436050920659 40.59123646776093, -73.99443395461041 40.59132266850615, -73.9944798752103 40.59137657422866, -73.99455593841785 40.59146585570968, -73.9947276785386 40.5916590754319, -73.99490371857834 40.5918500347719, -73.99508400776443 40.59203867247236, -73.99510996962502 40.59206620166665, -73.99520339198881 40.59216356204205, -73.99533435401149 40.59229775886148, -73.9955179503766 40.59247708820216, -73.99555130140095 40.59250900763279, -73.99560582142855 40.592561192332425, -73.99568393092157 40.59263596571068, -73.9958548243625 40.59279179578487, -73.99589574883157 40.59282861693366, -73.99593636385133 40.59286525795222, -73.99597698600391 40.592901893553396, -73.9960175999311 40.59293854084661, -73.99605822217283 40.59297517641881, -73.99609884445879 40.593011818280196, -73.99613945970142 40.59304845922632, -73.99618015540821 40.59308353235032, -73.99622085115776 40.593118605459786, -73.99626154104351 40.593153677654, -73.99630232548472 40.593188627365606, -73.99649353678015 40.59334982515027, -73.99662691607719 40.59345904095183, -73.99673767309407 40.59354878935521, -73.9968607808264 40.59364725054751, -73.99703535319972 40.5937844435321, -73.99721148924819 40.5939204683095, -73.9972950591878 40.59398397427445, -73.9974784083728 40.59412008886195, -73.99761460872537 40.5942179930047, -73.99771117285167 40.59428634464717, -73.99785361134789 40.594385491350565, -73.9980649640397 40.59452918791808, -73.99828111641257 40.59466798802467, -73.99849954243427 40.594814466509774, -73.9987299295907 40.5949539404448, -73.99873275413152 40.5949581513202, -73.9987330493954 40.594962103717606, -73.99873167658764 40.59496592552088, -73.99872858019393 40.59496911243654, -73.99872306321464 40.59497164194367, -73.99871563720149 40.59497222630013, -73.99866340378236 40.594961051118126, -73.99861440255715 40.594950442380195, -73.99856494298383 40.59493973365759, -73.99849387658148 40.59492294700468, -73.99842347299169 40.59490459881055, -73.9983537924674 40.594884703485576, -73.9982849023497 40.594863279042535, -73.9982168593469 40.59484034349416, -73.99816742967614 40.59482149387537, -73.9981188624561 40.59480139162233, -73.99807120257913 40.59478006825508, -73.99802450793285 40.59475753728366, -73.99797882459035 40.594733837432535, -73.99793420335092 40.59470897320634, -73.99789070210028 40.59468299593726, -73.99784836809293 40.59465591733421, -73.99780724149412 40.59462777612165, -73.9975487689829 40.594442940405486, -73.99733651332838 40.59428513347562, -73.9972928214743 40.5942526073731, -73.99720301983426 40.59418404211969, -73.99708453286648 40.59409301793368, -73.99693588778804 40.593977163609885, -73.99681159918038 40.59387873128518, -73.99662050938093 40.593722704843586, -73.99657533714695 40.593684427684224, -73.99653015669539 40.59364615050664, -73.99648498456526 40.593607867908325, -73.99643980421769 40.5935695843913, -73.99639463219046 40.593531313463984, -73.99634945194643 40.59349303081165, -73.99630427175424 40.59345474724095, -73.99626092858762 40.59341631332478, -73.99621758547154 40.59337786678481, -73.99617423413537 40.59333943373589, -73.99613089111884 40.59330099256609, -73.9960875469708 40.59326255228025, -73.99604419696612 40.59322411197779, -73.99600084582994 40.59318567165872, -73.99595750301266 40.59314723672661, -73.99591415906428 40.593108796374814, -73.99587080925953 40.59307035060318, -73.9957829807504 40.5929888149725, -73.9956923348931 40.592909084716865, -73.99559893902148 40.59283121926671, -73.99553006735624 40.59277310946759, -73.99548444632272 40.592734617533964, -73.99544390588756 40.59270040506843, -73.99529005355052 40.59256877483397, -73.99507561496121 40.59235416402601, -73.9948661843432 40.59213669387686, -73.99484660108412 40.59211588821832, -73.99480226450734 40.59206818371903, -73.99464572565942 40.59189969948993, -73.99444871564845 40.591682441671864, -73.9943801443057 40.591604947433936, -73.9943114183877 40.591527273942766, -73.99425496861772 40.59146348078564, -73.99422086705856 40.59142223512135, -73.99418676554203 40.591380984043646, -73.99415266524842 40.5913397383589, -73.99411856381562 40.591298492663775, -73.99408446951318 40.59125724155559, -73.99405036107693 40.591215995839576, -73.99386769951168 40.59098431857781, -73.99369218508508 40.59074944365563, -73.9936572886389 40.590702053508664, -73.99362238515494 40.59065465884783, -73.99358748290148 40.59060726777838, -73.99355257006532 40.59055988480221, -73.99348818318634 40.59046460402653, -73.99334434788766 40.590247178888205, -73.99327184446068 40.59013477587173, -73.99324444718752 40.590088808861985, -73.99321704404635 40.590042835541475, -73.99318964684922 40.589996862214576, -73.99316223551406 40.5899508951838)), ((-73.90666177627621 40.5958588761923, -73.90668018369932 40.59585854353993, -73.90669859044905 40.595858692663896, -73.9067169800055 40.59585931004303, -73.90673533462204 40.59586041457388, -73.90675362833662 40.59586198642386, -73.9067718410676 40.59586402467627, -73.906789956261 40.595866540123886, -73.90680793848864 40.595869523732915, -73.9068257948505 40.59587296740433, -73.90684346627079 40.59587687649355, -73.9068609669388 40.59588124200687, -73.90687826143142 40.59588605130839, -73.90689803959071 40.595891407436014, -73.9069175441421 40.59589727573625, -73.90693679043872 40.59590365982379, -73.90695170008013 40.59590908043913, -73.90765510462342 40.59654054621697, -73.90765466410413 40.596541301401864, -73.9075742182659 40.596672365495536, -73.90752805919882 40.596742269286295, -73.90749050323967 40.596799144012216, -73.90740113233743 40.59692524341757, -73.90738702702802 40.596939363959066, -73.9073723173244 40.59695313550923, -73.90735704815046 40.59696653559098, -73.90734121952237 40.59697955249733, -73.90732484443286 40.59699218803954, -73.90730795483695 40.59700440081909, -73.90729055661667 40.597016208851, -73.90727265690794 40.59702757792091, -73.90725322350538 40.59703911955114, -73.90723328870767 40.597050154679415, -73.90721286907832 40.59706066620887, -73.90719198471372 40.59707064515029, -73.90717068171612 40.5970800717291, -73.9071489577217 40.59708894684369, -73.90712686000914 40.59709725432268, -73.90710440040914 40.597104982468565, -73.90708161791552 40.597112125909504, -73.90705851845209 40.59711867294335, -73.9070351540007 40.597124623611926, -73.90701152576585 40.59712996170667, -73.90698767746846 40.59713468095907, -73.90696363035794 40.5971387930931, -73.90693941401612 40.59714226481314, -73.90691506739961 40.59714511776328, -73.90689059525087 40.5971473402404, -73.90686604248499 40.59714891697197, -73.90684143152649 40.59714986418552, -73.9068167931011 40.59715017560225, -73.90679215438782 40.597149846741594, -73.90676754727875 40.59714888213205, -73.90674299896047 40.59714727188992, -73.90671853303266 40.597145036746454, -73.90669417785435 40.597142173122606, -73.90666997361261 40.59713866754323, -73.90664592972519 40.597134544330245, -73.90662209344845 40.597129803522094, -73.90659847305405 40.5971244442252, -73.90657190675341 40.59711620355625, -73.9065457312932 40.59710726709471, -73.90651997856548 40.597097639369366, -73.90649466741753 40.59708736001887, -73.9064698309529 40.59707641196048, -73.90644551757137 40.597064822249614, -73.90642172961594 40.597052605296874, -73.90639851077822 40.59703977554656, -73.90637588231478 40.59702633931997, -73.90635387256532 40.59701230654634, -73.9063325074626 40.596997718671126, -73.90631182125318 40.59698258562843, -73.90629182103167 40.596966902921814, -73.90627254453182 40.59695072101163, -73.9062540130287 40.59693403271143, -73.90623624183087 40.596916873154484, -73.90621924627337 40.59689925856309, -73.90620306178128 40.596881200673224, -73.90618771191869 40.5968627445307, -73.90617319552028 40.596843878428054, -73.90615953495217 40.596824659116876, -73.90614675384171 40.59680508661665, -73.90613486396282 40.59678518885361, -73.90612388181516 40.596764993757695, -73.90611380028693 40.596744517532734, -73.90610466303792 40.59672379623559, -73.9060964617776 40.596702844268066, -73.9060892129963 40.59668169586372, -73.90608292376376 40.59666036363586, -73.9060775916708 40.59663888000147, -73.90607324149266 40.59661726839455, -73.90606986609441 40.59659556122821, -73.90606747017547 40.59657377651683, -73.90606605488446 40.59655193677451, -73.90606562844457 40.59653007442681, -73.90606619082057 40.59650821378782, -73.90606342693806 40.59648598571807, -73.90606165196364 40.59646369451937, -73.90606087885598 40.596441365417085, -73.90606109456311 40.59641903802361, -73.9060623132392 40.5963967276594, -73.90606452776949 40.59637445232899, -73.90606772982127 40.59635225615122, -73.90607192054972 40.596330157137395, -73.90607709873564 40.59630818140155, -73.90608325726456 40.596286346948226, -73.90609038191847 40.59626468258243, -73.9060984655626 40.59624322071692, -73.90610750699577 40.59622197485838, -73.90611749906935 40.596200987325396, -73.90612840634006 40.59618025898919, -73.90614024173895 40.59615983488625, -73.90615298399298 40.596139720402114, -73.90616660941713 40.59611995604066, -73.90618111327134 40.59610055170343, -73.90619647898419 40.59608152988964, -73.90621267696399 40.596062931098395, -73.90622970130474 40.59604475442395, -73.90624752125115 40.59602702775712, -73.90626612140464 40.59600977990164, -73.90628548875476 40.59599302165283, -73.90630558429201 40.59597677008848, -73.9063264032441 40.59596105852364, -73.90634044951089 40.59595198549509, -73.90635488628642 40.59594328469907, -73.90636971356584 40.59593495973759, -73.90638489352631 40.59592702408745, -73.9064004273368 40.59591948675476, -73.90641627836479 40.59591235491374, -73.90643244424018 40.59590563396542, -73.90644889186201 40.595899340092146, -73.90646562477349 40.59589347419725, -73.90648260160532 40.59588805155577, -73.90649980583122 40.59588306314894, -73.90651722325485 40.595878523373536, -73.90653483968876 40.59587444032256, -73.90655262441257 40.59587081757308, -73.90657056325648 40.595867650610856, -73.90658862784646 40.59586495472167, -73.90660680165506 40.59586272178727, -73.90662506340666 40.595860959895084, -73.90664339771735 40.595859687943516, -73.90666177627621 40.5958588761923)), ((-73.90791920778817 40.59677954353696, -73.9079199006754 40.59677825634417, -73.90870956263296 40.59748713060133, -73.90872007245464 40.59750954125989, -73.90872956938627 40.5975322707987, -73.90873804883182 40.59755522375883, -73.90874547299165 40.597578395607904, -73.90875186437414 40.59760174043739, -73.9087571934653 40.597625242014495, -73.90876146030352 40.597648871522765, -73.90876465784352 40.597672596537834, -73.90876677903633 40.59769638733698, -73.90876783808599 40.59772022321949, -73.90876781257792 40.59774407985347, -73.90876671792952 40.59776791312558, -73.90876454707328 40.59779170682073, -73.90876130713593 40.59781543212776, -73.90875696023595 40.59783395693623, -73.90875177942338 40.59785236221339, -73.9087457812741 40.5978706209565, -73.90873895754847 40.59788871064593, -73.90873132953456 40.59790661418839, -73.90872290553975 40.59792430367415, -73.90871369974784 40.597941773711234, -73.90870370512522 40.597958983770226, -73.90869294531436 40.59797592306351, -73.90868143214242 40.59799258169446, -73.90866917510836 40.59800892455006, -73.90865619550783 40.59802492913392, -73.90864250160192 40.598040601755976, -73.90862811471592 40.59805589830735, -73.90861305022044 40.59807080979474, -73.90859732939032 40.59808532903068, -73.90858096054473 40.5980994200006, -73.90856397204485 40.59811307732358, -73.90854638044513 40.598126290206274, -73.90852820587516 40.59813902534512, -73.90850945659881 40.59815128724902, -73.90849018581041 40.59816305344693, -73.90847039825562 40.59817430953408, -73.90845011049407 40.59818504111498, -73.90842935088493 40.59819524460986, -73.90840815018585 40.598204890325775, -73.90838652256554 40.598213984577384, -73.90836450467658 40.5982225066817, -73.9083421189773 40.59823044855168, -73.9083193867398 40.59823780570149, -73.90829634578465 40.598244567354755, -73.90827250202305 40.59825092132624, -73.90824837913073 40.59825664290291, -73.90822402084275 40.598261715909956, -73.90819943424468 40.598266143054545, -73.90817466424807 40.59826991176511, -73.90814973330683 40.598273017556785, -73.9081246780392 40.59827546496147, -73.90809953509205 40.59827723779887, -73.90807431153978 40.59827834688091, -73.90804906055166 40.598278788647924, -73.90802379514267 40.598278549602576, -73.90799856728081 40.59827764059272, -73.90797339941122 40.59827606343728, -73.9079483057055 40.59827382265039, -73.90792333815268 40.59827091377105, -73.9078985132958 40.59826733501162, -73.90787387245156 40.59826311071943, -73.90784943927368 40.59825822290302, -73.90782524208448 40.598252694998905, -73.90780131986496 40.59824653154114, -73.90777768561753 40.59823972803765, -73.90775438420783 40.598232305236685, -73.9077314309911 40.598224265852366, -73.90770886139771 40.598215618918516, -73.90768669785996 40.59820637525975, -73.90766497105899 40.59819656101601, -73.90764371763258 40.5981861663113, -73.90762293518962 40.598175211856, -73.90760267686893 40.59816371570351, -73.90758295211707 40.59815168146378, -73.90756379633922 40.598139136181324, -73.90754522133457 40.598126090672054, -73.907527253078 40.59811255666413, -73.90751074443575 40.59809946868639, -73.9074948329823 40.59808596964796, -73.90747952107778 40.5980720613521, -73.90746484295194 40.598057766339615, -73.90745080685313 40.59804309992629, -73.90743743520302 40.59802808014088, -73.9074247350674 40.59801272319876, -73.90741272886774 40.59799704712864, -73.90740143075811 40.59798106815154, -73.90739084780421 40.597964802482814, -73.90738099650531 40.59794827895263, -73.90737188157165 40.59793150837134, -73.90736504278414 40.59791760418759, -73.90734238963398 40.597866266022, -73.90732797682665 40.59781322800605, -73.90732201357233 40.59775925485546, -73.90732458619223 40.597705126494105, -73.90732316097719 40.59769182552092, -73.90732347470401 40.59768709802827, -73.90732532689877 40.59767025253803, -73.90732791620151 40.597653469778244, -73.90733123669094 40.59763675964983, -73.90733527062797 40.59762013474578, -73.90734002741704 40.59760362839285, -73.90734550113321 40.597587253193595, -73.90735168113953 40.59757101184085, -73.90735856973214 40.597554952064115, -73.90736614329266 40.59753906664005, -73.9073744100591 40.597523378088134, -73.90738335581436 40.597507915213626, -73.9073929699179 40.597492683410884, -73.90740323461723 40.59747770517845, -73.90741414754042 40.59746298681802, -73.90744704041643 40.59741928481747, -73.90791920778817 40.59677954353696)), ((-73.98092338605069 40.58325031312636, -73.98023810964648 40.58315881395449, -73.98000498893958 40.58312768664103, -73.97965090988025 40.58308040731359, -73.97961238485027 40.58307526299591, -73.97840642614487 40.58291422533948, -73.97827484668547 40.58289665382902, -73.97801609474425 40.58284736757293, -73.97792970087909 40.582830911948264, -73.97760589758587 40.582769233653735, -73.9775684015646 40.58276438962599, -73.97753699718105 40.58276158646351, -73.97751283625495 40.5827601940301, -73.97747556804238 40.58275933573487, -73.97743950526352 40.58275998964372, -73.97740248878205 40.58276218685144, -73.9773680751077 40.58276563088488, -73.97733750814065 40.5827698465152, -73.97477377670162 40.5830980187092, -73.97478547667968 40.582936533051765, -73.97505231799505 40.58289574354413, -73.97532028057937 40.582859474286906, -73.97558923101035 40.582827741453386, -73.97585903704748 40.582800562118805, -73.97586711765663 40.58279937962757, -73.97619275446655 40.58277305231192, -73.976519243672 40.582753814071296, -73.9768463184331 40.58274168105409, -73.97717371427598 40.582736661307464, -73.97750116554674 40.58273876108031, -73.97777867896862 40.5827458436768, -73.97805585993513 40.58275838901724, -73.97844458922538 40.58278866076936, -73.97883230329353 40.582825732675154, -73.9792187979247 40.58286958579685, -73.9796038700846 40.58292019759748, -73.9796851386218 40.58293176931763, -73.97968504282298 40.58293218444213, -73.98013329043734 40.58299837387563, -73.98024300564872 40.58301457430578, -73.9803069795401 40.583024020976715, -73.98079923009682 40.58309670632024, -73.98095708947609 40.58312001473362, -73.9809635887627 40.58311783654317, -73.9813673809391 40.583174011669065, -73.98176969339481 40.58323605655542, -73.98217037741273 40.583303949581975, -73.98256928781818 40.58337766552895, -73.9826236566587 40.58371177166064, -73.98090016328575 40.58340384676242, -73.98092338605069 40.58325031312636)), ((-73.90642714713094 40.59837048997893, -73.90660952205255 40.598219542289364, -73.90678537741468 40.59806415394528, -73.90695450269511 40.59790449860693, -73.90711673112132 40.5977407274568, -73.9072718994143 40.59757303220367, -73.90730627533019 40.59753426810745, -73.90728543127653 40.5975967980176, -73.90727210045375 40.59766050916871, -73.90727177484433 40.59766273139671, -73.90726755375228 40.59770181519057, -73.90726905589729 40.597765197911286, -73.90727897500255 40.59782813806202, -73.90729721038971 40.59788998808334, -73.90732357512069 40.59795011115082, -73.90735779480565 40.598007888378376, -73.90739952058831 40.598062725132856, -73.90744832086676 40.59811405733108, -73.9075036931006 40.59816135595272, -73.90756506852625 40.59820413424838, -73.90763181569606 40.59824195134532, -73.9077032451953 40.598274418555164, -73.90777862499719 40.59830120208829, -73.90785717573402 40.59832202575211, -73.90788390232458 40.59832672449427, -73.90791082953182 40.5983307317894, -73.90793791959679 40.598334013387166, -73.90796514412382 40.59833659898208, -73.90799246535633 40.59833845252275, -73.90801985490485 40.598339599201196, -73.90804728680213 40.598340020986, -73.90807471378453 40.59833972234201, -73.90810211340305 40.598338704151786, -73.9081294537511 40.598336971792975, -73.90815669940032 40.59833451443106, -73.9081838066214 40.598331343737904, -73.90821076594848 40.59832746961185, -73.90823752894158 40.59832289291481, -73.9082640696174 40.59831760732255, -73.90829036196799 40.59831162452129, -73.90831635988651 40.598304966987385, -73.90834204802871 40.59829762390267, -73.90836738502215 40.598289611443654, -73.90839234486776 40.59828093499305, -73.90841690036893 40.59827161163928, -73.90844101607404 40.59826164765814, -73.90846467423181 40.59825106464821, -73.90848783113694 40.59823985717188, -73.90851048085104 40.59822804773778, -73.90853257017943 40.59821565881697, -73.90855460199901 40.598202123480455, -73.90857601552045 40.59818802482103, -73.90859677294459 40.598173358306305, -73.90861685414164 40.59815815723999, -73.90863623427127 40.59814244411576, -73.90865489205942 40.59812622522077, -73.90867280620509 40.59810952665353, -73.90868994596595 40.59809236730099, -73.90870630540567 40.59807476877131, -73.90872185379305 40.59805674184667, -73.90873658399207 40.59803832164217, -73.9087504676209 40.598019528847594, -73.90876348812324 40.5980003760574, -73.90877563836548 40.59798089658558, -73.90878689706086 40.597961106624965, -73.90879725589951 40.59794103588639, -73.90880668650743 40.59792069965653, -73.90881520302288 40.59790012676357, -73.9088227912329 40.597879344212096, -73.9088294203872 40.597858377192544, -73.90883509755665 40.59783723921856, -73.90883981676997 40.5978159780132, -73.90884356266483 40.59779459716655, -73.9088463505537 40.5977731309107, -73.90884814968902 40.597751602634894, -73.90884899074275 40.59773004568296, -73.9088488429772 40.5977084762398, -73.9088477288007 40.597686923140024, -73.90884562691808 40.597665408879735, -73.90884255973161 40.597643966796014, -73.90883851776866 40.5976226130907, -73.9088335175134 40.59760138920084, -73.90883238410885 40.59759738457655, -73.91020232238677 40.598827115042674, -73.91015300550013 40.59880040481098, -73.91009054704746 40.59876889889894, -73.90999869251186 40.59872598102228, -73.90990498356132 40.598685467815216, -73.90980953118168 40.59864740438652, -73.90971243101656 40.59861182322582, -73.90961380112782 40.59857877755271, -73.90951376551504 40.59854829717815, -73.90941242926358 40.59852042000323, -73.90930991045352 40.59849518393983, -73.90920632483086 40.598472605285544, -73.90910179993078 40.59845271835831, -73.90899645266238 40.598435552064906, -73.90889039287897 40.598421110992774, -73.90878376230596 40.598409418666094, -73.90863302850939 40.598394115208464, -73.9084816987025 40.59838273015413, -73.90832995005036 40.598375278950925, -73.90817795382274 40.59837176803774, -73.9080258931047 40.5983722029633, -73.90787393563025 40.59837658386184, -73.9077222704152 40.59838489917874, -73.9075710557412 40.59839714994304, -73.90742047708652 40.59841332009646, -73.90727070457542 40.59843339086784, -73.9072083230925 40.59844293648767, -73.90705286882037 40.59846993371223, -73.90689870722642 40.59850092919502, -73.90674600019558 40.59853588254901, -73.90659494739437 40.59857477142924, -73.90644570954129 40.59861754644427, -73.90629845799819 40.59866415190839, -73.90615336885784 40.598714529439064, -73.9060105981168 40.59876863054378, -73.90587031360644 40.59882639323252, -73.90585660395236 40.598815786450075, -73.90584277614255 40.59879513873882, -73.906043563668 40.59865844070103, -73.90623842771188 40.598516840434996, -73.90642714713094 40.59837048997893)), ((-73.99394241019904 40.59174924480874, -73.9937141407386 40.59147343116897, -73.99349302974034 40.5911942495178, -73.9932791633708 40.59091180796408, -73.99307262306635 40.59062621461573, -73.99287349025829 40.59033758118189, -73.9926818416481 40.59004601847002, -73.99265394748818 40.59000019266956, -73.99285696217336 40.58990411244509, -73.99289056751758 40.58996422895202, -73.99295174408277 40.59007688456374, -73.99296782981335 40.59010684235192, -73.9929937221283 40.59015125233131, -73.99301961447887 40.59019565149839, -73.99304551395146 40.59024005065993, -73.99316060158603 40.59042607862746, -73.99327978196288 40.5906105956381, -73.99333045129977 40.590685819283756, -73.99332044103487 40.59067500071849, -73.99350404422552 40.59093771903987, -73.99369535353101 40.59119722261705, -73.99389426979702 40.59145338083064, -73.99410069386349 40.59170606396105, -73.9943145206585 40.59195514408853, -73.99453564274161 40.592200495093685, -73.99476394794144 40.592441993557955, -73.99499932171793 40.59267951606214, -73.99524164361844 40.59291294368906, -73.995490792003 40.5931421584218, -73.99574664168136 40.593367043143594, -73.99600906155058 40.593587484339544, -73.99627791931998 40.59380337119633, -73.9963699678862 40.59388805480341, -73.99641865063391 40.59393454492021, -73.99648861406985 40.59400360457078, -73.99656114360009 40.5940711198585, -73.99663615181105 40.59413703224208, -73.99671360799225 40.594201292186966, -73.99676152499318 40.59423794482441, -73.99680944086562 40.59427459113805, -73.99685735797149 40.59431124913838, -73.99690528221825 40.594347901715686, -73.99695319824826 40.594384554272665, -73.9970011155122 40.594421206809514, -73.99704903991703 40.59445785392333, -73.99709857930841 40.59449375902706, -73.99714811757183 40.594529662308275, -73.99719767242779 40.59456555656314, -73.9972120808995 40.59457600207693, -73.99724859766026 40.59460246301689, -73.99730447147945 40.594642937435246, -73.99734630541793 40.5946732599101, -73.99739585221755 40.594709153178314, -73.99744539198186 40.59474505813167, -73.99751682528876 40.594794769452655, -73.99758629050963 40.5948460710108, -73.99765374157353 40.59489892408631, -73.99771911350786 40.59495326744572, -73.99778234724566 40.59500905426435, -73.99781044374193 40.59503599844253, -73.99783855323899 40.595063459514066, -73.99788233411572 40.59510782908276, -73.99792439614338 40.59515316576491, -73.99796469561149 40.59519941913234, -73.9980032041663 40.59524656036974, -73.9980398757341 40.59529453364559, -73.99807468196038 40.595343311045106, -73.99817445350241 40.59548790509644, -73.9982775073497 40.59563116183228, -73.99830721071628 40.59566802606896, -73.99833691529703 40.595704891198416, -73.99834144214131 40.59571135071279, -73.99834568309235 40.59571792729083, -73.99834961334159 40.5957246065238, -73.99835334390842 40.59573257710327, -73.99791290077067 40.59536615358053, -73.99763814399456 40.5951371444419, -73.99735605311201 40.59490255483392, -73.99689874912937 40.59453139926102, -73.99659813389651 40.59429936025938, -73.99630356237107 40.5940628603712, -73.99601515031328 40.59382199059957, -73.9957330075709 40.593576844649014, -73.99545724398608 40.59332751712458, -73.99518796585114 40.59307410443236, -73.99492527709022 40.59281670387862, -73.99466928044043 40.59255541637165, -73.99442007272674 40.59229034191867, -73.99417775195002 40.592021583228075, -73.99394241019904 40.59174924480874)), ((-73.84757420110857 40.66361451359784, -73.84944484802752 40.662673731849225, -73.84970698847128 40.66280197154422, -73.84810316489651 40.66362542245225, -73.84461855438816 40.66516905146304, -73.84358119398443 40.66557128360427, -73.84423874254375 40.66519263566388, -73.84513375667777 40.66476008373723, -73.84757420110857 40.66361451359784)), ((-73.89598919771382 40.62261643839355, -73.89609086076354 40.62240192540164, -73.89658685910888 40.62262661403842, -73.89645490786602 40.62283796187166, -73.8963148589145 40.62304626298888, -73.89616683066625 40.623251335562394, -73.89601095334866 40.62345300317744, -73.8958473595557 40.62365109122138, -73.89567619251811 40.62384542869255, -73.89549759901404 40.62403584729349, -73.89531173409526 40.6242221823358, -73.89511875872336 40.624404272738005, -73.89491883858953 40.624581960124445, -73.89471214765462 40.62475509243044, -73.89449886461058 40.6249235193968, -73.89427917287635 40.62508709527139, -73.89405326296288 40.625245677911074, -73.89382133010687 40.62539913058057, -73.8935835754535 40.62554732105334, -73.89400723597265 40.62515002090815, -73.89420034595328 40.62497575893002, -73.89438714518215 40.62479754834864, -73.89456749400571 40.6246155214431, -73.89474125749896 40.62442981319798, -73.89490830782604 40.62424056310679, -73.89506852070028 40.62404791156638, -73.89522177656457 40.623852000778406, -73.8953679605856 40.623652978351295, -73.89550696502572 40.62345099189929, -73.89563868569468 40.62324619084011, -73.89576302549185 40.62303872819904, -73.89587989204551 40.622828758805696, -73.89598919771382 40.62261643839355)), ((-73.87444136629217 40.646625295836294, -73.8742312075493 40.64676857917574, -73.87422932551223 40.64676724885235, -73.87419646647321 40.646789246805945, -73.8741132851266 40.64668526383262, -73.87405196229788 40.646608606667115, -73.87399328991837 40.646535259977725, -73.87396011219415 40.64649378624826, -73.87438539357782 40.64604213797244, -73.87460427898833 40.64585446197456, -73.87469569772826 40.64575779546302, -73.87545994217271 40.64476219784916, -73.87552973128804 40.64468149865586, -73.87560651439524 40.64460457475647, -73.87568994325608 40.644531775162044, -73.87577963538176 40.64446343353766, -73.87587518113986 40.644399861006086, -73.8759761449317 40.64434134885131, -73.87608206638276 40.6442881640172, -73.87616262562224 40.64437048618956, -73.87602078112917 40.644495385727865, -73.87593377868033 40.64459494242923, -73.87570182383692 40.64501456071847, -73.87556912929622 40.645254610831344, -73.87545414145433 40.645623925134416, -73.8747260198786 40.64612382997656, -73.87488178165295 40.64632502326028, -73.87444136629217 40.646625295836294)), ((-73.98839663402029 40.58506262326096, -73.98842635631804 40.58506115390271, -73.98845391778958 40.58506226431967, -73.98848140472646 40.58506407713089, -73.98850879586935 40.585066586931234, -73.9885360687747 40.58506980452476, -73.98856317974327 40.58507370919515, -73.98859009924298 40.58507832075117, -73.98861681192557 40.585083602269876, -73.98864327408369 40.58508957986234, -73.98869667605484 40.5851058927095, -73.98874938448365 40.585123481505796, -73.98880134149933 40.585142318330284, -73.98885250812796 40.58516238607029, -73.98890725941378 40.58518403455241, -73.98896142709721 40.585206490721966, -73.9889954604693 40.58522114820641, -73.98906581836778 40.585252826336806, -73.98913758505738 40.5852871394891, -73.98920811251855 40.58532293204022, -73.98927733461328 40.58536016886592, -73.98939217926929 40.58542499380728, -73.98950460469375 40.585492246223914, -73.98961451522554 40.585561860376046, -73.98972182346672 40.58563379483886, -73.98982647037046 40.58570798387624, -73.98994911233378 40.585794344067935, -73.99006865124495 40.585883194707804, -73.99018501978765 40.58597446105632, -73.99029812111124 40.586068089083405, -73.99045088661923 40.58620052385788, -73.99059873493361 40.586336168391455, -73.99074155384764 40.58647490382486, -73.99090270200803 40.5866320778483, -73.99105719074682 40.586793080150834, -73.99108636356121 40.586825141051314, -73.99111552931628 40.586857201943715, -73.99114420727801 40.5868891160057, -73.99122379243964 40.58698072785542, -73.99127070985234 40.58703817041392, -73.99129426425122 40.587067015965324, -73.99129997097674 40.58707399815547, -73.99137269091517 40.58716886387193, -73.99144189437516 40.58726525206467, -73.99150751402698 40.58736307988693, -73.991536463636 40.5874077722961, -73.99156536249275 40.58745245208675, -73.9915942684761 40.58749712736781, -73.99162317449803 40.587541803541974, -73.99165208174004 40.58758647790769, -73.99167767010464 40.58762851619375, -73.99170776979565 40.587678537038556, -73.99181871211013 40.587868743624234, -73.99192504569967 40.58806047256047, -73.99202189783912 40.58824459581764, -73.99211624501257 40.58842948246183, -73.99220807657436 40.58861510548278, -73.99229565549989 40.58879620391315, -73.99238411141538 40.58897705919055, -73.99247343133423 40.589157662306775, -73.99249741233666 40.589206777510626, -73.99252138746736 40.58925589901254, -73.99254535318401 40.5893050142049, -73.9925693342922 40.589354129393065, -73.99259330126007 40.58940324997818, -73.99261727535114 40.58945236605594, -73.99264125774525 40.589501492034785, -73.9926652236382 40.58955060720099, -73.99267693792376 40.589574594283626, -73.99268923562691 40.58959980161098, -73.99274350978634 40.58969803862169, -73.99253912715449 40.589788075147744, -73.99252198009175 40.58975495099012, -73.9925017506882 40.58971525190909, -73.9924815142218 40.58967554742079, -73.99237172991809 40.58943923479743, -73.9922599854483 40.58920345684263, -73.99214628082935 40.58896822345646, -73.99205371096917 40.5887801266039, -73.99196410665006 40.58859119869792, -73.99187751037289 40.5884014550572, -73.99181740073358 40.588275363123984, -73.99175273513376 40.588150599102754, -73.99168354784148 40.58802723863227, -73.99160991564293 40.587905396977085, -73.99148405953218 40.587697869320664, -73.99135639094129 40.58749099426535, -73.99127789955236 40.5873664972826, -73.99119455930911 40.58724384414516, -73.99110644581495 40.58712314201065, -73.99106531697062 40.58707057346842, -73.99096399876122 40.58694401138987, -73.99091682418334 40.58688650114601, -73.99081551332013 40.586770721802296, -73.99070978594801 40.586657251853545, -73.99059973065314 40.58654620386034, -73.99050711035534 40.586451426058865, -73.99041058375094 40.58635894689234, -73.99031024532944 40.586268856411266, -73.99020619430212 40.586181250069586, -73.99010287015079 40.58609252524543, -73.98999620431812 40.58600613239254, -73.98988627238867 40.585922162461145, -73.98977316176345 40.58584066587906, -73.98972542394289 40.58580902983167, -73.98967767908123 40.58577738836054, -73.98962994843724 40.58574575857755, -73.98958220366605 40.585714117066594, -73.98953445893905 40.58568248183936, -73.98948672843179 40.58565084569294, -73.98943898379525 40.58561921042585, -73.98932969251595 40.58554821386007, -73.98921749531524 40.58547989237262, -73.9891025043874 40.585414330614874, -73.989046596325 40.58538635323653, -73.98902593080982 40.58537601415492, -73.98899069657578 40.58535838753856, -73.98893478860793 40.585330404702574, -73.98887889604033 40.5853024335476, -73.9888461917705 40.58528606606359, -73.98868009922025 40.58520426517158, -73.98865888682478 40.58519454913217, -73.98860659286511 40.58517058552933, -73.98855429776165 40.58514662280306, -73.98850200269682 40.58512265374925, -73.98844970766764 40.58509869547784, -73.98843058350236 40.585089929658466, -73.98839551121631 40.58507334928377, -73.98839318273232 40.5850687221585, -73.98839663402029 40.58506262326096)), ((-73.9283676056835 40.58469590885527, -73.928254713822 40.58466177249922, -73.9279395509047 40.584547722933024, -73.92768038355997 40.584458791853216, -73.92944410882289 40.58426569318123, -73.93036158240422 40.58425664613389, -73.93038998292324 40.58425611762641, -73.93045961639615 40.58425482701741, -73.93047167988293 40.58425460288348, -73.93076274921513 40.58424968078653, -73.93077504700521 40.58425017718109, -73.93078730784057 40.58425100044223, -73.93079952463633 40.58425214876466, -73.93081169031016 40.584253617641565, -73.93082377179627 40.584255400749306, -73.93083576553815 40.584257510693135, -73.930847663281 40.584259934860796, -73.9308618849653 40.58426293405937, -73.93087036088335 40.584264204395446, -73.93087623691099 40.58426561274802, -73.93088415984113 40.5842682200284, -73.93089264965575 40.58427204245598, -73.93089946553808 40.584276077300366, -73.93090475544209 40.584280026577446, -73.93091019179442 40.584285134016056, -73.93091482330846 40.58429069033191, -73.93091802492432 40.58429576851018, -73.93092154950146 40.58430378709309, -73.9309231574704 40.58431025202041, -73.93092368415195 40.58431493506134, -73.93092353775585 40.584320578556586, -73.93092223194935 40.58432802600473, -73.93091959282002 40.584335264630155, -73.93091625328024 40.5843413393575, -73.930912914432 40.584347886860265, -73.93091003291022 40.58435308475255, -73.93090546426718 40.58435753959852, -73.93090135461941 40.58436017386105, -73.93089521833265 40.584362570066716, -73.93088752625515 40.584364009880375, -73.93088139130465 40.584363972870534, -73.93080876527601 40.58437149535951, -73.93073868202883 40.58437926697956, -73.9306685916671 40.58438704935884, -73.9305985154687 40.58439482630077, -73.93052842507993 40.58440260319139, -73.9304583417553 40.58441038634718, -73.93038825842089 40.58441816315656, -73.9303239044077 40.58442530222476, -73.93031817507017 40.58442593992321, -73.93024809170312 40.58443371664712, -73.93017800123272 40.58444149332393, -73.93010792492005 40.584449269966605, -73.93008902618747 40.584450411139485, -73.93007018600734 40.58445203502566, -73.9300514409879 40.584454148851734, -73.93003279113627 40.584456745413476, -73.9300142659804 40.584459825629466, -73.92999589506609 40.58446337330838, -73.92997769373214 40.584467403768485, -73.92995966908224 40.584471900804814, -73.92994186364852 40.5844768545376, -73.9299242963209 40.58448227308315, -73.92990697065672 40.58448814293593, -73.92988992327955 40.58449445691423, -73.92987316483192 40.58450120331776, -73.92985670830555 40.58450838305513, -73.9298405820606 40.584515984437054, -73.92982480973167 40.584523996671784, -73.92980940549924 40.58453241346441, -73.92979437646149 40.584541224013165, -73.92977975452143 40.584550417531425, -73.92976554205444 40.58455998141341, -73.92975177331827 40.58456991207819, -73.92973843888909 40.58458018520594, -73.92972558364481 40.584590807127974, -73.92971320761485 40.58460174992826, -73.92970131671076 40.58461300820735, -73.92968993693736 40.5846245639709, -73.92967907656781 40.58463641272143, -73.92966875688698 40.584648531959054, -73.92965897436385 40.58466090997496, -73.92964975144665 40.58467354137989, -73.92964109643411 40.58468639736227, -73.92963302350527 40.584699473428294, -73.92962552559813 40.58471274616015, -73.92961862517222 40.58472619936226, -73.92961232812812 40.58473983844152, -73.9296073072136 40.58475415909833, -73.92960293463847 40.584768597220176, -73.929599217494 40.58478314920946, -73.9295961640745 40.58479779075721, -73.9295937814845 40.58481250565838, -73.92959207683995 40.58482726690158, -73.92959103006332 40.58484207267361, -73.92959066835614 40.58485689057219, -73.92959097637025 40.584871714284304, -73.92959195649225 40.584886521298294, -73.9295936146455 40.58490129540837, -73.9295959295996 40.584916007784734, -73.92959892144077 40.58493065303647, -73.9296025854618 40.58494521495123, -73.92960689924541 40.58495967010158, -73.92961186753475 40.58497400138043, -73.92961748680277 40.58498819347665, -73.92962374644392 40.58500222296997, -73.92963064764079 40.585016088960536, -73.92963922869302 40.58503087271264, -73.92964242451318 40.58503578792779, -73.92964389260862 40.58504149994902, -73.92964353355201 40.58504596362589, -73.92964178209877 40.5850502229317, -73.92963834846678 40.58505465050588, -73.9296325564202 40.585058694813505, -73.9296255338303 40.58506138307869, -73.92961796158949 40.585062210524505, -73.92961125898604 40.58506164359117, -73.92960618024094 40.58506020774627, -73.92958578352312 40.58505581059745, -73.92956723519653 40.58505268431675, -73.92954855406273 40.585050047836596, -73.92952978383731 40.58504788947691, -73.92951091032961 40.5850462245379, -73.92949197726472 40.585045032334236, -73.92942979548616 40.585025758068966, -73.92938072053903 40.58501055048756, -73.92936762319283 40.585006483775814, -73.92930544266721 40.584987209443895, -73.9292432680843 40.58496793418143, -73.92918108763047 40.58494865978212, -73.92911890721251 40.584929385349156, -73.92905673391749 40.58491011088687, -73.9289945606584 40.58489083639091, -73.928932373261 40.58487156185251, -73.92887020007464 40.584852286388674, -73.92880802810438 40.5848330117924, -73.92874583845811 40.58481373174831, -73.9286836665529 40.58479446338834, -73.9283676056835 40.58469590885527)), ((-73.98140354649296 40.582970357779594, -73.98118523148051 40.58293520451133, -73.9806028442797 40.58284142707847, -73.98060276160376 40.58284141355664, -73.98029202521651 40.58279137620327, -73.97907495356813 40.582628956845625, -73.97880503502087 40.582600133833346, -73.9785343486915 40.582575845081216, -73.97826302798941 40.58255610501745, -73.97816192476058 40.58254991725702, -73.97814935653076 40.58254918814475, -73.97783570020013 40.58253422799807, -73.97752164747399 40.582525318437504, -73.97749821034267 40.58252489690722, -73.97717028606353 40.58252057543948, -73.97684233107243 40.58252319516758, -73.9765145968506 40.58253275164006, -73.97618733724217 40.58254923950832, -73.97586080373249 40.58257264532135, -73.97559470465774 40.58259436377111, -73.97532955167748 40.58262199824908, -73.97506556914772 40.5826555244963, -73.97480298378944 40.58269491465431, -73.97480668585487 40.58264381704437, -73.97488309596282 40.58263453136296, -73.97506196255316 40.58261279475981, -73.97527718014585 40.58258664053197, -73.97544844315537 40.5825658553454, -73.97568756767842 40.58253683368457, -73.97580849789477 40.58252155570926, -73.97596296030765 40.58250349030149, -73.97623552397711 40.582489689741415, -73.97673209283383 40.58246359424029, -73.97693984379299 40.58245323867782, -73.97750430388591 40.582440546035684, -73.97788907618214 40.58244722156799, -73.97816756541621 40.582460965488465, -73.97818199746521 40.58246167784274, -73.97818832470062 40.58246198972482, -73.9782994044028 40.58247680096178, -73.97832197609162 40.58247981027074, -73.97909783339429 40.58257985274648, -73.9791234277682 40.58258258778805, -73.97912343365893 40.582582635516886, -73.98038412206826 40.58271966884734, -73.98038464306981 40.58271926280008, -73.98046131295368 40.582728058672444, -73.98046136964653 40.58272806498575, -73.98097819799341 40.582787357550274, -73.98099090722184 40.58264570366155, -73.98189231618001 40.58280651531182, -73.98244613681301 40.582620862829685, -73.98253408940201 40.58316136338957, -73.98196852208336 40.58306500823272, -73.98140234397661 40.582970761019574, -73.98140354649296 40.582970357779594)), ((-73.98376863170661 40.58391717296636, -73.98369937170166 40.583903947976204, -73.98315066141345 40.58380592246042, -73.98295909927643 40.58377169952305, -73.98290683520034 40.58344487820166, -73.98310203735396 40.58348579355442, -73.983383322433 40.583544750442435, -73.98373694616966 40.58362990323205, -73.98390633060404 40.583670333581104, -73.98390848053452 40.58366939193443, -73.98390993209075 40.58366974154093, -73.98397140519202 40.583685140983654, -73.98397906571012 40.58368705926701, -73.98403222990427 40.58370038361217, -73.98409945594285 40.58371802158707, -73.98416668674031 40.5837356649264, -73.98423391048756 40.58375330282219, -73.98430114253848 40.583770940679784, -73.98436837344244 40.58378858390101, -73.98443559847742 40.583806221678906, -73.98449661432713 40.58382330115561, -73.984557631389 40.58384038150059, -73.98461864021395 40.583857461811995, -73.98467965615707 40.58387454209195, -73.9847393753002 40.58389126285829, -73.98480167514293 40.58390870795597, -73.98485785438933 40.58392551824472, -73.98491402657606 40.58394233300764, -73.98497019170264 40.58395915404581, -73.98502636394716 40.58397596335065, -73.98508252913152 40.58399277893074, -73.98513681406115 40.584009026009646, -73.98519943740106 40.58403340226391, -73.98526016514472 40.58405721631402, -73.98532090001846 40.58408103123343, -73.98538162784872 40.58410484521922, -73.98544762098543 40.584124916363116, -73.98551362124897 40.5841449865694, -73.98557962155202 40.584165057638245, -73.98564562189472 40.58418512866915, -73.98571162345591 40.58420521046855, -73.98577974748792 40.584225872429904, -73.9857881521085 40.58422847598311, -73.98579629914371 40.58423151175521, -73.98580415079711 40.5842349761395, -73.98581167754485 40.58423884481826, -73.98581882269576 40.584243095271454, -73.98582556735244 40.584247722093636, -73.9858318701798 40.58425269826412, -73.98583631525678 40.58425662239365, -73.98584045200941 40.584260737396036, -73.9858455368971 40.58426646625343, -73.98584903102491 40.58427091887269, -73.98585217077229 40.58427551733305, -73.98585588538737 40.58428181965479, -73.9858590259157 40.5842883128168, -73.9858615604752 40.58429495178894, -73.98586349025389 40.58430170325205, -73.9858648093494 40.584308550095564, -73.9858655969806 40.58431511050715, -73.98586583066347 40.58432158079818, -73.98586564537332 40.58432643819986, -73.98586509864862 40.58433128294975, -73.98586388895788 40.584337690927065, -73.98586209578667 40.58434402048703, -73.98586040572434 40.584348708405095, -73.98585836251138 40.58435330712779, -73.98585518389713 40.584359315930726, -73.98585148088293 40.58436513916111, -73.98584724756655 40.58437075970822, -73.98584377406958 40.584374828746604, -73.9858399911381 40.58437874645873, -73.98583457088144 40.58438372658677, -73.98582871483244 40.584388425697476, -73.98582406150598 40.58439174085145, -73.98581917316919 40.584394855159445, -73.98581409942572 40.58439779384221, -73.98580881902362 40.584400514572536, -73.98580151161033 40.584403823994606, -73.98579586396656 40.58440606109775, -73.98579003801866 40.584408050534606, -73.9857821036159 40.58441035939614, -73.98577398622102 40.584412247689926, -73.9857342351326 40.58441791425902, -73.98571000626994 40.58442129541597, -73.9856480910771 40.58442991651608, -73.98558617704943 40.584438537583004, -73.98552425473635 40.584447164018634, -73.9854623324085 40.58445578501776, -73.98543934142216 40.58445899247316, -73.9854004100633 40.58446441228716, -73.9853341585787 40.58447365582937, -73.98526790825787 40.58448289483092, -73.98520165791753 40.58449213919735, -73.98513540756024 40.584501377221926, -73.98506914891509 40.584510621510915, -73.98502148957121 40.58451717382118, -73.98502045483376 40.584517315969, -73.98500034738777 40.584518988319715, -73.98499325554731 40.584519392629296, -73.98498723050645 40.5845188965542, -73.98498684664804 40.584518798346956, -73.98498114782707 40.58451733875394, -73.98497508073213 40.584514763363686, -73.98496869624303 40.584510675952416, -73.98496352856033 40.58450570078377, -73.98496054350564 40.584501506654604, -73.98495867224908 40.58449751618951, -73.98495425152404 40.584474787295015, -73.98494962114252 40.584449445953844, -73.98494112957552 40.58440291658653, -73.98493263920156 40.58435638721853, -73.9849241559274 40.584309853348, -73.9849156643959 40.58426332397819, -73.9849071598834 40.584216794605844, -73.98490626082507 40.584212415241296, -73.98490517041279 40.584208059265144, -73.98490387328944 40.58420373568073, -73.98490239425763 40.58419945259592, -73.9849007120583 40.58419520190326, -73.98489885503638 40.584190997114284, -73.98489680665335 40.58418684813263, -73.98489457399604 40.58418275585969, -73.98489216297051 40.58417871939569, -73.98488956176247 40.58417475044592, -73.98488679753872 40.5841708490139, -73.98488385612409 40.58416702050095, -73.9848807457843 40.58416327571436, -73.98487747242626 40.58415961015232, -73.98487403841108 40.58415602921827, -73.98487044019397 40.58415253831485, -73.984866695489 40.584149152753284, -73.9848627960311 40.58414585902464, -73.98485875599222 40.58414266613595, -73.9848545694642 40.58413958399224, -73.98485025652631 40.584136615297695, -73.98484581836114 40.58413375374879, -73.98484123961099 40.584131010149704, -73.98483655098624 40.58412838450461, -73.98483174421624 40.584125887618576, -73.9848268346571 40.58412351499102, -73.9848218140386 40.584121275626096, -73.98481670480572 40.58411915691938, -73.9848114927792 40.584117182282654, -73.98480620631118 40.58411533280866, -73.98473710652712 40.584102136381816, -73.98466802330807 40.58408893361188, -73.98459892594363 40.584075725395415, -73.98452982742286 40.58406252794349, -73.98446073483629 40.584049325948165, -73.98439164463828 40.58403612841419, -73.98432255328743 40.58402292633589, -73.98425345487718 40.58400972331456, -73.98418419467917 40.58399650311941, -73.98411493450837 40.583983283783, -73.9840456814535 40.58397005810215, -73.98402454317768 40.58396602532156, -73.98397641306941 40.58395683868106, -73.98390715298103 40.583943618318855, -73.9838378917401 40.58393039341211, -73.983805710152 40.58392425001083, -73.98377708133557 40.583918782494976, -73.98376863170661 40.58391717296636)), ((-73.93423827058382 40.58642013795035, -73.93428978886159 40.58642010528857, -73.93430904841028 40.58642010009188, -73.93432402370519 40.586420119458886, -73.93438006942229 40.586420207313004, -73.93462936582853 40.5864194110711, -73.93487860068375 40.58641510581314, -73.93512768300569 40.58640728158234, -73.93542287966021 40.58639194985781, -73.93571730803542 40.586369629781764, -73.9360106809971 40.58634033200653, -73.93630271966438 40.586304084301744, -73.93659313332904 40.58626093244394, -73.93683845656649 40.586220341378386, -73.93708294943481 40.58617690998308, -73.93732654457017 40.58613064453033, -73.93738850786997 40.58611811960879, -73.9374474538483 40.586106145032225, -73.93750640926608 40.586094158723775, -73.93756535520805 40.58608217778306, -73.93762429521777 40.58607020221198, -73.93768605780683 40.58605872342958, -73.93774781446868 40.58604724461073, -73.93780956992305 40.586035771161164, -73.93787132536211 40.58602429137475, -73.93793308077402 40.58601281785882, -73.93799482908253 40.58600133890268, -73.93805658445707 40.58598985991716, -73.93811833980531 40.585978386301576, -73.9381861427522 40.58596575242987, -73.93825393858707 40.58595311761381, -73.93832173321427 40.5859404836576, -73.9383895360792 40.58592785506892, -73.93845733892348 40.585915221037105, -73.93852514173713 40.58590259236841, -73.93859293744292 40.58588995825277, -73.93866073194188 40.585877324096465, -73.93872853467859 40.585864695307656, -73.93879633030743 40.58585206107195, -73.93881979638249 40.58584768891934, -73.93886137443688 40.58583994223278, -73.93897521343736 40.58581903675785, -73.93900196915206 40.58596463593137, -73.93897685750748 40.58596915403252, -73.93893544645428 40.58597633261911, -73.9389124460822 40.58598032322086, -73.93886560300896 40.58598844354355, -73.93879575127573 40.58600054811741, -73.93872590659853 40.58601265895621, -73.93865605480885 40.58602476974877, -73.93858621717402 40.58603687420276, -73.93851636533286 40.58604898581092, -73.93844652056097 40.58606108927569, -73.93837667576216 40.586073194499, -73.93830683093387 40.58608530418247, -73.93826606359791 40.586092365805335, -73.93823697899715 40.58609740931706, -73.9381671341182 40.5861095189156, -73.93809728212588 40.586121629368336, -73.9380274442885 40.5861337334826, -73.93800651478941 40.586137359407296, -73.93795759933266 40.586145843854204, -73.93788774727022 40.58615794787593, -73.93781790226882 40.58617005275946, -73.93752643442514 40.58622137488936, -73.93723528882636 40.586273714047636, -73.93694444539051 40.586327058519, -73.9366539383438 40.58638142543447, -73.9364188835834 40.58642472155849, -73.93618226256618 40.5864627311582, -73.93594426791933 40.586495415608944, -73.93570512769644 40.586522748013955, -73.93546502623838 40.58654471135983, -73.93539354941962 40.586550427339255, -73.93532206550654 40.58655613786705, -73.93524863479995 40.58656200484494, -73.93517910472048 40.586567569599545, -73.93510762077076 40.5865732799939, -73.93503613680878 40.586578990343824, -73.9349646599113 40.586584711459544, -73.93489317592578 40.58659042081998, -73.93480744394405 40.58659881101645, -73.9347213820883 40.58660508653196, -73.93463511557465 40.586609247436975, -73.9345487046793 40.58661126674973, -73.93446226514678 40.58661116704889, -73.93437586433099 40.586608931262965, -73.93428960735075 40.586604576562145, -73.93420231903643 40.586597977100936, -73.93416859535681 40.58659457901927, -73.9341153636176 40.58658920840271, -73.93376549400834 40.58654455380108, -73.93341691911083 40.586494333647465, -73.9330692681063 40.58643501678406, -73.9330710660825 40.58642894199792, -73.93307605375334 40.58642478358305, -73.93313457974344 40.58642277166696, -73.93314462952286 40.58642268295995, -73.93318976260728 40.586422253547056, -73.93324482127008 40.58642190912959, -73.93359997195124 40.5864205236924, -73.93395512981203 40.58642022319319, -73.93402592175275 40.58642024675281, -73.93409669957946 40.58642020902512, -73.93411300966244 40.58642020126897, -73.9341970299797 40.58642015936555, -73.93423827058382 40.58642013795035)), ((-73.94824305859012 40.584730010921724, -73.94848775537439 40.584714826392826, -73.94849797113761 40.58486980210237, -73.94817343665756 40.584904983719504, -73.94784809504425 40.58493719862902, -73.94752227590935 40.58496642085942, -73.94719600174476 40.58499264231227, -73.94686535136069 40.58502292938117, -73.94653385968198 40.585047306770875, -73.94620171342576 40.585065770059025, -73.94613119168757 40.58506935081888, -73.94606067111275 40.58507294414332, -73.94599015644579 40.58507652572046, -73.94591963586089 40.585080112654715, -73.9458491294478 40.58508369324868, -73.9457786076615 40.585087286399435, -73.94570808705832 40.585090867800666, -73.94568955710422 40.5850918090959, -73.94563757353029 40.58509445456514, -73.94556705173152 40.58509803497875, -73.94549654527543 40.58510162165999, -73.94542600218999 40.58510521458424, -73.94535550281023 40.5851087957792, -73.94516760208961 40.58511688481794, -73.94498007354869 40.585129089121125, -73.94479309552102 40.58514539706942, -73.944606799089 40.58516580242502, -73.94442135433178 40.58519027825781, -73.94435849684146 40.585198376862806, -73.94429564052238 40.5852064691303, -73.94428062724829 40.58520840698187, -73.94427065698748 40.58520969439798, -73.94423278417835 40.585214573070196, -73.94416992664306 40.58522267067146, -73.94410706909709 40.58523076283518, -73.94404421270725 40.58523886667191, -73.94403760563296 40.58523971805109, -73.94399109385914 40.58524570908505, -73.94395352256619 40.58508549119387, -73.94415086753743 40.585063914383284, -73.94443115143127 40.58503368371983, -73.94471161841388 40.58500456550816, -73.94499229211807 40.58497656516139, -73.94527315483052 40.58494969437629, -73.94553507373678 40.58492552900543, -73.9457971475942 40.58490231766578, -73.94605935868888 40.58488006935322, -73.94637060764342 40.5848530471522, -73.9466821265269 40.58482789011849, -73.9469938870255 40.58480458743065, -73.94730588915996 40.58478314539032, -73.94761809633616 40.58476356848145, -73.94793049322482 40.58474585669546, -73.94824305859012 40.584730010921724)), ((-73.99102456750121 40.58605019348941, -73.9910296918231 40.58604806865421, -73.9910362320544 40.58604852482948, -73.99122741508408 40.586235454938894, -73.99134847045542 40.58636333844884, -73.99146518269887 40.58649355476342, -73.99157745613485 40.5866260138364, -73.99167741104748 40.58674999978208, -73.99175066840814 40.58684658620137, -73.99176838488998 40.58686994344714, -73.99177297788049 40.58687598628819, -73.99186406921999 40.58700387340139, -73.99195064017135 40.58713358098253, -73.99206015508521 40.58729627625582, -73.99216437487621 40.58746097112361, -73.9922632428251 40.58762758454932, -73.99238929127331 40.587846611949615, -73.99250856474691 40.588067830639325, -73.9926210171349 40.58829112446887, -73.99264424678863 40.5883391364568, -73.99266727681393 40.58838744289825, -73.99269029269838 40.58843574303025, -73.99271332160909 40.588484049461925, -73.99273634464754 40.58853234958474, -73.99275936771878 40.58858065510584, -73.99278238964204 40.58862896062204, -73.99280541986789 40.58867726073077, -73.99282775686841 40.58872432977613, -73.99285009508158 40.588771398816995, -73.99287243923254 40.58881846785369, -73.99289478459619 40.58886553688588, -73.9929171288101 40.588912605913485, -73.99293946596816 40.58895967403554, -73.9929618114263 40.5890067430541, -73.99298414864718 40.58905381206756, -73.99300649416837 40.589100881077016, -73.9930302983774 40.589149777331954, -73.99305411088945 40.589198678985426, -73.9930779151683 40.58924757432958, -73.99310172066194 40.58929648227591, -73.99312553209805 40.58934537761017, -73.99314933766263 40.58939427383943, -73.99317314916779 40.58944317546698, -73.99319708709513 40.58949215003926, -73.99319935118287 40.589495933271174, -73.99319986846598 40.58949699681971, -73.99297021755056 40.589598166684624, -73.99291507656349 40.58949551175993, -73.99290238906624 40.589469484055755, -73.99289845987458 40.589461444842506, -73.9928807366074 40.58942509682871, -73.99286302162908 40.589388741608474, -73.9928416576299 40.58934266771169, -73.99282029247948 40.58929658840752, -73.99279892853984 40.58925050909927, -73.99277756581034 40.58920443519007, -73.99275620074846 40.589158354972895, -73.99273483571598 40.589112275652056, -73.99265428992197 40.588938278637414, -73.9925737882562 40.5887642599538, -73.9924933378043 40.58859023310945, -73.99240077744285 40.58838734183352, -73.99229906631719 40.58818700104865, -73.99227597697904 40.5881437653752, -73.99225287940214 40.58810053059692, -73.99222978303634 40.58805729581394, -73.99220669378803 40.58801405922552, -73.99218359748268 40.58797081902973, -73.99221673622958 40.58795666595323, -73.99224988204838 40.58794252547494, -73.99221105767629 40.587899097814166, -73.99217224871005 40.5878556755442, -73.99213342443893 40.58781224785683, -73.99210737878099 40.58776852386188, -73.99208134024522 40.58772479355768, -73.99205530174355 40.5876810632474, -73.99202926327534 40.58763733833418, -73.99200321775386 40.58759361341441, -73.99197757734609 40.587550557605674, -73.99195113390051 40.5875061644576, -73.99194751411778 40.58750062688586, -73.99192164538275 40.58746106687992, -73.99189216399125 40.58741597649921, -73.9918626743718 40.58737087980647, -73.9918331788861 40.58732578310553, -73.99180369052674 40.587280692701036, -73.99177465838906 40.58723372382966, -73.99174562038537 40.58718676125397, -73.99171658950979 40.58713979867125, -73.9916875504073 40.587092829776715, -73.99165851961413 40.5870458617758, -73.99163021851717 40.58700156837496, -73.9916019245443 40.5869572812711, -73.99157361525381 40.58691298875588, -73.99156431976289 40.58689844011816, -73.9915453142694 40.58686869623412, -73.99151702040983 40.5868244037057, -73.99148957511697 40.5867768162178, -73.99146212159539 40.586729224219866, -73.9914346834679 40.58668163761951, -73.99141821517603 40.586653090698526, -73.99138267551474 40.58659396867536, -73.9913781559858 40.58658659304936, -73.99134908907547 40.58653914138419, -73.99132001393814 40.586491688810284, -73.99129094710973 40.58644424253309, -73.99126187205492 40.58639679084456, -73.99123279704153 40.58634933824794, -73.99120644300224 40.58630611921284, -73.99117849547952 40.58626347908576, -73.99114897809295 40.58622146919719, -73.99111791210352 40.58618011025966, -73.99108531995131 40.58613943739403, -73.99105482887441 40.58610113035778, -73.9910228768815 40.58606140217312, -73.99102124170747 40.58605556125004, -73.99102456750121 40.58605019348941)), ((-73.9538168965574 40.58527023151028, -73.953801967309 40.58525694818756, -73.95378646256167 40.58524405275714, -73.95377050861718 40.58523166774077, -73.95375401458557 40.58521970485038, -73.9537370052684 40.585208168598385, -73.9536830839046 40.58517631786538, -73.95366413383776 40.58516661428637, -73.95364481489322 40.585157421152324, -73.95362270842003 40.58514814764379, -73.95361713593809 40.585145964326045, -73.95361147628532 40.58514174038618, -73.95360777816789 40.58513640419078, -73.95360670648488 40.58513010819703, -73.95360798607747 40.58512447053492, -73.95361062878635 40.58512048588412, -73.9536153799265 40.58511646876508, -73.95362066042144 40.5851138845927, -73.95362706932848 40.58511244814269, -73.95392893610601 40.58513911971963, -73.95422751669062 40.58516290481691, -73.95452652018591 40.58518346272918, -73.95456404830303 40.58518581623564, -73.95457116344771 40.58518625760409, -73.95477431299354 40.585198046355366, -73.95486956492236 40.585203063704405, -73.9551844726227 40.58521426160454, -73.95549961035826 40.58522074268822, -73.9558148564053 40.58522249970261, -73.95613008903446 40.58521953350081, -73.95644723505428 40.58521309474024, -73.95644903069257 40.58521816086646, -73.95644276749702 40.58522264400061, -73.95640001250773 40.58522941232971, -73.95636070139547 40.58523686274682, -73.95632163902596 40.585245044470255, -73.95627084393111 40.585256858030164, -73.95622057127987 40.58526989647884, -73.95617087304139 40.58528416073732, -73.9561217870324 40.585299618401926, -73.95607337704358 40.585316255989994, -73.9560143606633 40.58533903917381, -73.95595533597803 40.58536181692089, -73.95589630534297 40.58538460003854, -73.9558372888419 40.585407383131205, -73.955778265217 40.585430160787666, -73.95574460443316 40.585443386425524, -73.95571039140708 40.585455757243736, -73.9556756769309 40.58546727326136, -73.95564046928891 40.585477911968056, -73.9556048358136 40.58548766798628, -73.95556880249949 40.58549653051934, -73.95553240243306 40.58550448156928, -73.95549568521727 40.585511533762215, -73.95545868276544 40.58551765739303, -73.95538846904763 40.585525213462184, -73.95531825412915 40.585532774891185, -73.95524804037593 40.585540336277674, -73.95517782661051 40.58554789221815, -73.95510761164434 40.58555545351836, -73.95503739784344 40.585563014776106, -73.95496718403453 40.58557056428419, -73.9549524499835 40.58557215603738, -73.95489696902006 40.58557812635621, -73.95482676225866 40.585585687488006, -73.95475654839417 40.58559324857413, -73.95473894608907 40.5855953047412, -73.95468980705475 40.58560104242138, -73.95462307987093 40.58560884073805, -73.95455435394109 40.58561686875944, -73.95451879019605 40.58562102050983, -73.95448960419883 40.585624431843556, -73.95445601554943 40.58562835922589, -73.954422876972 40.585632224640804, -73.95439153039428 40.585635889040205, -73.95435613555092 40.58564002369731, -73.95432586511981 40.585643557930396, -73.9542967228094 40.585646965630346, -73.95428693125179 40.585647938803305, -73.95424583076151 40.58564932816129, -73.95421737682945 40.58564965362291, -73.9541889232554 40.58564945677388, -73.95416047595404 40.58564872590978, -73.95415353179618 40.58564863308681, -73.95414660193568 40.58564836106493, -73.95413967692805 40.58564790263615, -73.95413278393568 40.58564726501554, -73.9541259265035 40.585646446403445, -73.9541191069921 40.58564544950242, -73.95411233957394 40.585644277019696, -73.9541056230667 40.5856429307558, -73.9540989728338 40.585641399010164, -73.95409239712833 40.58563970429913, -73.95408589595706 40.58563783671698, -73.95407948939899 40.58563579807277, -73.95407317154208 40.585633597369394, -73.95406695774618 40.58563122830938, -73.95406086217749 40.585628702605135, -73.95405486948562 40.585626013046465, -73.95404901627502 40.5856231776584, -73.95404328247729 40.58562017932304, -73.95403769524057 40.58561704596744, -73.9540322415843 40.585613759576034, -73.95402694984699 40.585610334568486, -73.95402181294281 40.58560676914097, -73.95401683794779 40.58560307950576, -73.95401203313394 40.585599260263045, -73.95400739850061 40.585595312313345, -73.95400293994265 40.58559125186852, -73.9539986810881 40.585587072634375, -73.95399460774907 40.58558279441671, -73.95399071639193 40.58557840280577, -73.95398704008183 40.585573909521706, -73.95398356345466 40.58556932716562, -73.95398028532667 40.58556465933918, -73.95397723641123 40.58555990245262, -73.95397438598258 40.58555507810621, -73.95397176475895 40.58555017550604, -73.95396935737806 40.585545204551615, -73.95396718509194 40.585540178759416, -73.95396423344721 40.585522830789884, -73.95396052106173 40.585505565363604, -73.953956034922 40.58548841309308, -73.95395078329 40.58547138388727, -73.95394477796638 40.58545449486085, -73.95393801302212 40.58543778023111, -73.95393051089347 40.58542124991272, -73.95392227156788 40.5854049228165, -73.95391330211855 40.58538881965725, -73.9539036237956 40.585372957553155, -73.95389323776432 40.58535735991823, -73.95388216763769 40.58534204297113, -73.95387040986867 40.5853270121134, -73.9538579880533 40.58531230787784, -73.95384492581682 40.585297928472734, -73.95383121959962 40.58528389730997, -73.9538168965574 40.58527023151028)), ((-73.8426979732151 40.6649602633132, -73.84264689686344 40.66493669355678, -73.84259187809262 40.66491900146347, -73.84253407732314 40.664907558728636, -73.84247470967942 40.66490260654983, -73.8421532160277 40.66495614737905, -73.84207893161546 40.664977447123036, -73.84201351564413 40.66500216295483, -73.8419515216349 40.66503155173327, -73.84189352496739 40.6650653413978, -73.84184006209301 40.66510322021248, -73.84179464936447 40.66514199258065, -73.84175399192044 40.66518371436324, -73.84171842051276 40.66522804742574, -73.84168822218481 40.665274634662495, -73.84167596063091 40.665297193758974, -73.84162347332693 40.66529712150924, -73.84155066424388 40.66501324839658, -73.84309439071686 40.664763566166926, -73.84356691684168 40.66470425686025, -73.8438346216306 40.66469662759835, -73.84406556582894 40.66469694088196, -73.84423352417217 40.66469716843192, -73.84445402763757 40.664673486018934, -73.84453276777013 40.664669595063934, -73.84455367843147 40.6647055944902, -73.84302866204229 40.665373185309775, -73.84274326876739 40.66548507563555, -73.84272009085254 40.66545849849801, -73.84272511140465 40.6654553238342, -73.84275698046521 40.665435174198684, -73.84279605059612 40.6653948655077, -73.84282724875801 40.66535075757164, -73.84284994728063 40.66530373474802, -73.84286368983575 40.66525474106121, -73.8428682021258 40.66520476040518, -73.84286339311332 40.66515479583298, -73.84285131344704 40.665119404307, -73.84283390190963 40.66508532475314, -73.84281139629962 40.66505302126039, -73.84278410305922 40.66502293459759, -73.84274403098355 40.664989213081626, -73.8426979732151 40.6649602633132)), ((-73.9980193200324 40.595135669383666, -73.99802552930228 40.59513401072771, -73.99804951053729 40.595145787272564, -73.99807874987398 40.595162280838316, -73.99812871820973 40.5951904842326, -73.99817868658796 40.595218675898295, -73.99822866209631 40.5952468792491, -73.99828600450452 40.59527936557406, -73.99834334815007 40.595311846467254, -73.99840069775792 40.595344339038526, -73.99845804033352 40.59537682527736, -73.99851418865565 40.59540710248995, -73.99870118819669 40.59551077382588, -73.99889270831041 40.59560952624534, -73.9990885292413 40.59570325796511, -73.99928841350906 40.59579186360072, -73.99945745047796 40.59586193959268, -73.9996269449964 40.59593137596591, -73.99979085788524 40.59599776380964, -73.99983015624622 40.5960136067689, -73.99983030509921 40.596013667104145, -73.99981788528014 40.59602568005688, -73.99981343857507 40.59602999175207, -73.99977099873931 40.596071071716125, -73.99972959728574 40.59611091614977, -73.99968818987584 40.59615076597144, -73.99964678950484 40.5961906040713, -73.99960538081469 40.59623045386285, -73.99956397207521 40.59627029733564, -73.99952257155591 40.596310147097086, -73.99948116271759 40.59634999144026, -73.999459114449 40.596371227462356, -73.99941580943536 40.596409099628346, -73.99941498010529 40.59640916085964, -73.99939687188314 40.596410504345755, -73.99937707074473 40.59641144888832, -73.99935723298795 40.59641187562677, -73.9993373952361 40.59641177465558, -73.99931757166623 40.59641115588056, -73.99929779417613 40.59641000939615, -73.9992780674918 40.596408334301884, -73.99925843650595 40.59640615311118, -73.99923891539578 40.59640344871421, -73.9992195277893 40.596400227414925, -73.99920947662574 40.596398051683614, -73.99919952824588 40.596395629209, -73.9991896909196 40.59639295909058, -73.99917996346544 40.59639004673151, -73.99917036951116 40.59638689303254, -73.99916194039716 40.59638389783324, -73.9991536365128 40.59638070451929, -73.9991454590392 40.596377336504304, -73.99913740561372 40.5963737838825, -73.99912949277558 40.59637006286352, -73.99911247981291 40.59636276039567, -73.99909579173935 40.59635502567708, -73.99907944981966 40.59634688032048, -73.99906346114227 40.596338324326105, -73.99904786469261 40.59632938020756, -73.99903265810809 40.59632004346232, -73.99901786501616 40.59631032939962, -73.99900349959337 40.596300244323366, -73.99898957719736 40.596289805343865, -73.99897611791138 40.596279029571335, -73.99888858364635 40.596208081985445, -73.99880396996609 40.59613509918179, -73.99872237137717 40.596060159513144, -73.9986438422186 40.59598332602327, -73.9985684911711 40.59590467256251, -73.9984963631199 40.59582427928423, -73.99842753839033 40.595742218237376, -73.99840445767747 40.595705341516876, -73.99837972424103 40.595669089731, -73.998353354621 40.59563351150721, -73.99832540434242 40.59559864736868, -73.99817849827039 40.595366241845994, -73.99812988710634 40.59529803187529, -73.99806523844576 40.59521079897332, -73.99801725462783 40.595148794466375, -73.99801475500085 40.59514447731742, -73.99801547814933 40.59513919846582, -73.9980193200324 40.595135669383666)), ((-74.01830875402693 40.602758614167435, -74.018390605823 40.602755372727266, -74.01847246763435 40.60275846639986, -74.01855349707057 40.60276786380281, -74.01863286117418 40.60278346871708, -74.0187097435082 40.602805119185085, -74.01878335360875 40.60283259381249, -74.01885293407244 40.60286560906536, -74.01891777000958 40.602903826472335, -74.01897719376963 40.602946852623575, -74.01903059439444 40.60299424457165, -74.01907742234557 40.60304551523376, -74.01911719659465 40.603100136991976, -74.01914522048504 40.60315748027064, -74.0191666060362 40.60321646089792, -74.01918118887569 40.6032766349475, -74.0191888613381 40.60333754677589, -74.01918956419755 40.603398737128124, -74.01918329139384 40.603459741335875, -74.01917009239955 40.60352010102418, -74.01911711908632 40.60364645398152, -74.01800617757597 40.60324233865455, -74.01796459989903 40.60321369145143, -74.01792972244466 40.6031802515105, -74.01790248356227 40.60314291651208, -74.01788361604268 40.60310269133011, -74.01787362584402 40.603060656516455, -74.0178727826344 40.60301794218656, -74.01788110797102 40.60297569740335, -74.01789837883791 40.602935056857376, -74.01792413118562 40.60289711385078, -74.01795767173952 40.60286288877755, -74.01799809926055 40.602833301205166, -74.01807162330034 40.60280569407016, -74.01814843932114 40.60278390464117, -74.01822775461875 40.60276815726739, -74.01830875402693 40.602758614167435)), ((-73.98718896650703 40.58375262120696, -73.98728942476335 40.583748253117655, -73.9873900057979 40.5837504002428, -73.98748998559307 40.58375904899539, -73.98758864132122 40.58377413626223, -73.98768526197287 40.58379555300715, -73.98777915071834 40.58382314427103, -73.98786962726874 40.583856711873494, -73.98795604204918 40.58389601261308, -73.98803776911016 40.58394076366926, -73.9884957264682 40.58429652087846, -73.9885124140245 40.58431007632928, -73.98851867938102 40.58431435174124, -73.98857994310987 40.58436194331636, -73.98859989469585 40.58440758743698, -73.98860324447995 40.58447686595184, -73.9885830492073 40.58452304820093, -73.9885460241093 40.58455126962741, -73.98849889730087 40.58457435794713, -73.98844505609198 40.584587174200195, -73.98839456290493 40.584589738304935, -73.98835081864647 40.58458716468427, -73.98827539434353 40.58456346333575, -73.98812819097532 40.58450286099153, -73.9879609565509 40.58443498823509, -73.98789776367198 40.58441068096635, -73.98783455784742 40.584386367357766, -73.98777135206784 40.5843620591175, -73.98770814515197 40.584337757145946, -73.98764494655242 40.584313443433594, -73.98758174091077 40.58428913598939, -73.98754955890371 40.58427613074637, -73.98751683814841 40.58426392239921, -73.98748363179479 40.58425251995844, -73.98744995992033 40.58424193063008, -73.98741586858799 40.58423216252343, -73.98738136369622 40.58422324895821, -73.98734651966164 40.584215166528544, -73.98729575682121 40.58420218708276, -73.9872449951817 40.58418920761467, -73.98719423356187 40.584176228124136, -73.98713848790666 40.584160864367234, -73.98708273400999 40.58414549517924, -73.98702698132037 40.584130125063766, -73.9869975211712 40.584121789188316, -73.98683562407288 40.58379670062191, -73.98718896650703 40.58375262120696)), ((-73.94363244967715 40.584758860045895, -73.9436393307652 40.584757980908186, -73.94366416916858 40.584901434818434, -73.94345727449816 40.58492463784314, -73.94329183912916 40.58494357897477, -73.94298047711492 40.58498070025878, -73.94266951945909 40.58501970929914, -73.9423589732232 40.58506060610267, -73.94204886556209 40.58510337537751, -73.9417392070677 40.585148032441445, -73.94144028395175 40.58519266532612, -73.9411416241634 40.585238271034164, -73.94096405002013 40.58526598810501, -73.94047890428891 40.585343161237, -73.94024143364322 40.58538184154198, -73.93994192030655 40.585431659939836, -73.93964268676261 40.58548245477217, -73.93934374599117 40.58553422694853, -73.93920950724446 40.58555905278363, -73.93918379178996 40.58542261613232, -73.93923774653042 40.58541300367093, -73.93924762880151 40.58541119794334, -73.93927262803477 40.58540664730458, -73.93930931705408 40.58539995418604, -73.93937101237307 40.58538871039933, -73.93943269349208 40.58537747197513, -73.93949438877443 40.58536622271901, -73.93955606985679 40.58535497882544, -73.93987195186077 40.58529613144335, -73.94018798051232 40.585237778557214, -73.94039291871113 40.5852002206523, -73.9405979084744 40.58516286142423, -73.94091216808852 40.58511066611453, -73.94122697120956 40.585060409951545, -73.94154230368555 40.58501209742613, -73.94185813482213 40.58496574022529, -73.94217445047497 40.584921334735675, -73.942243766215 40.584913741263136, -73.94231307484675 40.584906154048845, -73.94238238936474 40.58489857129835, -73.94245169914615 40.58489098400108, -73.94252100654558 40.58488340116339, -73.94259031511434 40.584875813781835, -73.9426511195757 40.584869154156266, -73.94265962957398 40.584868225460966, -73.9427289369301 40.58486063799521, -73.94279825253477 40.58485305499437, -73.94286750925214 40.584845253095175, -73.94293675886006 40.58483745835492, -73.94295162421814 40.58483578355836, -73.94300601554585 40.584829655471715, -73.9430752710235 40.58482186515348, -73.9431445205891 40.584814063083755, -73.94321377722554 40.58480626097582, -73.94326898595054 40.58480004851943, -73.9432830338359 40.58479847053293, -73.94329196320095 40.58479746275167, -73.94335228217177 40.584790668337405, -73.94342153875436 40.58478287240791, -73.94349079532152 40.58477507553611, -73.94356005069135 40.58476727862193, -73.94360449427978 40.58476227552236, -73.94363244967715 40.584758860045895)), ((-73.9435064100801 40.58513438318783, -73.94372438303543 40.585110548831004, -73.9437379610589 40.585272783030156, -73.94373128180297 40.58527377934069, -73.9437247272382 40.58527398415151, -73.94369447095377 40.58527707793639, -73.9436528964903 40.58528165022642, -73.94358270397589 40.58528937919698, -73.94351251027398 40.585297096417236, -73.9434423319066 40.585304819005344, -73.94337213816688 40.58531254244348, -73.94331545489024 40.585318776735015, -73.94330194559285 40.585320264938844, -73.94329151829652 40.585321412463266, -73.94323175891314 40.58532798199109, -73.9431615663059 40.58533570530117, -73.94309137368242 40.58534342856838, -73.94303314049003 40.585349835754045, -73.9430211798577 40.58535115629472, -73.9427049547372 40.58538194463871, -73.94238958160767 40.585417459388594, -73.94207518326019 40.585457685304505, -73.94176187303977 40.585502604441295, -73.94144978909107 40.585552206072016, -73.94113903532447 40.58560645784096, -73.94083093261084 40.58565562037462, -73.94052311674729 40.585705800722934, -73.94045285255916 40.58571749545188, -73.94023349137444 40.58575401035902, -73.94021558654562 40.58575699168335, -73.93990834199651 40.585809188755604, -73.9396013984326 40.58586240275621, -73.93931306857976 40.58591330692114, -73.93925714540664 40.58576726555547, -73.93938383649439 40.58574400349513, -73.93943559164192 40.585734879665466, -73.93944782602371 40.585732727558316, -73.9395147205461 40.58572094071719, -73.93958161504402 40.58570915473757, -73.93964851661121 40.5856973624191, -73.93971541105782 40.585685580864194, -73.93978230548494 40.58567379476769, -73.9398492069813 40.58566200233233, -73.93991610135627 40.58565022156105, -73.93998299571822 40.58563842904405, -73.94004974329636 40.5856269624011, -73.9403878105944 40.58557017746878, -73.94072636364237 40.58551508837908, -73.94106540009543 40.5854617032312, -73.94140487036606 40.58541002469716, -73.94174478865129 40.585360055481885, -73.94204048769973 40.58531811814826, -73.94233656180134 40.58527777056679, -73.94263301096576 40.585239025341956, -73.94296212386945 40.58519792809496, -73.94329165637923 40.58515879775682, -73.9435064100801 40.58513438318783)), ((-73.8848021257225 40.630151425105325, -73.88486710007749 40.630187190412165, -73.88493655622008 40.63021767591448, -73.88500975950438 40.630242558483225, -73.88508593262652 40.630261574382544, -73.88516426862236 40.63027452198454, -73.88524393677551 40.63028126357667, -73.8852597089828 40.6302813549613, -73.8852603176977 40.63028135827034, -73.88532409206775 40.6302817289733, -73.88540388582436 40.6302759119245, -73.88548136373198 40.63026408964577, -73.88550403256647 40.6302670713317, -73.88552575339644 40.630272842781544, -73.88554593904772 40.630281247621355, -73.88556404383492 40.63029205927816, -73.8855795777374 40.630304985496736, -73.88576907966926 40.63048001173046, -73.88561536513456 40.63058191126422, -73.88561494265379 40.63058152001816, -73.88547402781421 40.6306756056743, -73.88413683410897 40.631568398739894, -73.88411606909062 40.6315558939025, -73.88420305759752 40.631475464236246, -73.88429779473437 40.63137819897243, -73.88438512492785 40.63127698910789, -73.88446476394988 40.631172162163125, -73.88453645710777 40.63106405739429, -73.88459997097301 40.6309530239837, -73.88465510047598 40.63083941924553, -73.88470166889907 40.63072361222779, -73.88473493606223 40.63062023524449, -73.88473952434282 40.63060597650435, -73.88476854326294 40.63048689468103, -73.88478863639713 40.630366748495575, -73.88479973575154 40.630245925108085, -73.88480210541499 40.63015223375216, -73.8848021257225 40.630151425105325)), ((-73.98868133048065 40.58446275796307, -73.98867056691768 40.5844114396633, -73.9886490392524 40.58435396522032, -73.9886786509934 40.58434781216244, -73.98870755075565 40.58436101398124, -73.98872503917104 40.58437475949026, -73.98876719310246 40.58440750305601, -73.98899041259175 40.58457327053588, -73.98921983516213 40.5847340456588, -73.98934368586964 40.584816573089334, -73.98946965975703 40.584897212182334, -73.989521953534 40.58493047780151, -73.98957373118867 40.5849637388473, -73.98962550771374 40.584996999869574, -73.98967729374078 40.58503025456558, -73.98972907863646 40.58506352094486, -73.98978086358467 40.585096780997, -73.98983264031702 40.585130035621845, -73.98988483154255 40.58516430244824, -73.9899370145542 40.585198563846895, -73.98999067158971 40.5852338033188, -73.99001978608717 40.5852529131601, -73.99004138782442 40.58526709197661, -73.99007575928795 40.585289664772205, -73.99009357926417 40.58530135870774, -73.99014576249014 40.58533561911066, -73.99019653751954 40.58537176326484, -73.99024731142526 40.58540789028643, -73.99029809483366 40.58544402899309, -73.99034886884849 40.585480161372686, -73.99039964409849 40.58551630003351, -73.99045024221881 40.585552482782724, -73.99052517729417 40.58560766316208, -73.99059806999503 40.58566439942976, -73.9906688825284 40.585722653764655, -73.99073755111472 40.585782386542334, -73.99076959868668 40.585812081182254, -73.99080031142472 40.58584259608318, -73.99082964563155 40.585873875410215, -73.99085757177949 40.585905896649045, -73.99088406742923 40.58593862647949, -73.99090908770036 40.58597201897225, -73.9909326196033 40.58600603630531, -73.9909546099874 40.58604064245446, -73.99097662971987 40.58607676148105, -73.99098269618999 40.586086728951145, -73.99101072340702 40.58613255068225, -73.99103874357533 40.58617837240577, -73.99106676378277 40.58622418871914, -73.99109577963937 40.58627107312341, -73.9911247955367 40.586317957520194, -73.99115380320636 40.586364841908825, -73.99118281209876 40.58641171998632, -73.99120750019753 40.58644952044938, -73.99123218241836 40.586487320006036, -73.99125687057315 40.58652511955769, -73.99127222672462 40.586548640596355, -73.99128240672826 40.58656394756605, -73.99128464815128 40.58656783889783, -73.99128573892347 40.586572920634325, -73.99128452862792 40.58657858663597, -73.9912811071847 40.58658369594636, -73.9912749419084 40.58658794594898, -73.99126805516798 40.58659024986532, -73.9912617214712 40.58659072756174, -73.9912562135871 40.58659006886012, -73.99124945977739 40.58658751626253, -73.99123149236492 40.586570033031315, -73.99120930174793 40.58654661232319, -73.99117230679258 40.5865075582879, -73.99113530361136 40.58646850964305, -73.99109829574945 40.5864294546821, -73.99106130092393 40.586390400610604, -73.9910242978734 40.58635134562589, -73.9909872960472 40.58631229152975, -73.99084860774609 40.586164067912954, -73.99070676365815 40.58601759268806, -73.99054080822361 40.585872818193465, -73.99036905091714 40.58573203319066, -73.99019166772273 40.58559536914517, -73.98995801448847 40.58543632100961, -73.98971791812983 40.58528297123351, -73.98966827760772 40.58525288208987, -73.98962733096387 40.585228306715, -73.98941353173988 40.58510360072324, -73.98919603088967 40.58498266447632, -73.98904821657317 40.58490583492052, -73.98889762275721 40.58483220356522, -73.9887443722604 40.5847618370503, -73.98858858081483 40.58469478670657, -73.98857474081352 40.584688972451325, -73.98847129404083 40.58464542540414, -73.9885359093874 40.58462900631894, -73.98859784234938 40.584598224480224, -73.98864361467822 40.58455923363973, -73.98866247759804 40.584505865970804, -73.98868133048065 40.58446275796307)), ((-74.02782832228812 40.60473631726778, -74.02763337007349 40.60472774090837, -74.02759084299407 40.60472694695933, -74.02755153915068 40.60472621525847, -74.02743815527992 40.60472411174821, -74.02713763403209 40.60472529614508, -74.02683723448038 40.60473238174824, -74.0265371822132 40.604745358600766, -74.02646740497971 40.60474911275715, -74.02639745766476 40.60475303530786, -74.02632751742865 40.604756952411186, -74.02625757718683 40.604760875775646, -74.02618763693435 40.6047647927939, -74.02611768958656 40.604768715174345, -74.02604774931761 40.60477263210742, -74.02597780904291 40.60477655530162, -74.02590786166841 40.60478047215123, -74.02583792846404 40.60478438895505, -74.0257679893462 40.60478831202128, -74.02569849880702 40.60479428002987, -74.02562901770594 40.60480024349171, -74.02555952832343 40.604806211416005, -74.02552580857152 40.60480910868466, -74.02548090718322 40.60481296297619, -74.0254205566107 40.60481814803746, -74.02535107427839 40.604824111331574, -74.02528157657555 40.60483007908958, -74.02521209422045 40.604836047702754, -74.02514309177639 40.60484260601079, -74.0248643302541 40.60486613605711, -74.02458468679939 40.6048823966033, -74.02447674811252 40.60488585963491, -74.02450997700022 40.6048523270246, -74.02466451262876 40.604845115905164, -74.02484409378876 40.60483334522753, -74.02491070770861 40.604828153708446, -74.02497920112299 40.60482213506323, -74.02504769452497 40.604816116377144, -74.02511618200703 40.60481009765152, -74.02518467420313 40.6048040797846, -74.02525316875003 40.604798061876316, -74.02532166328179 40.60479203672304, -74.02539015662207 40.6047860178329, -74.0254586428608 40.60477999890344, -74.02552713735584 40.604773974528214, -74.02559563066147 40.60476796181925, -74.02566599799113 40.60476229084926, -74.02573635821963 40.604756619837765, -74.0258067326146 40.60475094878001, -74.02587709281954 40.60474527858292, -74.02593189040377 40.60474085907797, -74.02597524996236 40.60473736336638, -74.0260178190985 40.60473393085394, -74.02608819344594 40.60472826052433, -74.02615855360237 40.60472258835386, -74.02622892083643 40.604716917039234, -74.02629928793043 40.604710920593114, -74.0266225527184 40.604686927405275, -74.02694663212304 40.60467071272581, -74.02727122970086 40.604662293728104, -74.02759601592176 40.60466167679064, -74.02792066480006 40.60466886649363, -74.0280931581469 40.60467682919907, -74.02813901222585 40.60468005625843, -74.02832484315013 40.6046946206781, -74.02843672654355 40.60470524532367, -74.02860745545924 40.60472567541954, -74.02877724221189 40.6047502208828, -74.02894593204655 40.60477887004973, -74.02911332529469 40.60481157794964, -74.02927928255447 40.604848322110655, -74.0294436183382 40.6048890683666, -74.02960618023006 40.60493376093132, -74.02975711767559 40.60497943514354, -74.02990610975898 40.60502867843182, -74.03005300996728 40.60508144131321, -74.03019767651652 40.60513768421006, -74.03033995460927 40.6051973342293, -74.0304299624854 40.60523791316347, -74.0304703734731 40.60525613262154, -74.03047973554139 40.60526035178558, -74.03061685505959 40.605326663989544, -74.03075119499397 40.60539620964669, -74.03088261826495 40.6054689203639, -74.03093516010244 40.60549923400835, -74.0309898133281 40.60553192893973, -74.03104445951594 40.60556461934432, -74.03109911284902 40.60559731512403, -74.0311537591464 40.605630010879565, -74.03120840431028 40.605662694902534, -74.03126305780398 40.60569539060393, -74.03131770425941 40.605728080878045, -74.03137235786012 40.60576077652728, -74.03142700442257 40.60579346674923, -74.0314618273467 40.605814295296916, -74.03151223360906 40.605847385569966, -74.03153333353008 40.60586204117847, -74.03158622756364 40.605898767943984, -74.03163851532287 40.605935077910324, -74.03169079486557 40.60597138245189, -74.03174308391796 40.60600768786749, -74.0317953730272 40.606043993259114, -74.03184765392201 40.606080297728624, -74.0318999419634 40.60611660307276, -74.03190762952889 40.606122346267796, -74.03194788643974 40.60615242602025, -74.03199583686965 40.60618823723919, -74.03204378144889 40.606224060146396, -74.03209172489754 40.60625988213329, -74.03210716273863 40.60627141080413, -74.03210569158233 40.606278533441795, -74.03210266890262 40.60628536474375, -74.03209818204157 40.60629171197381, -74.0320923573383 40.60629739409171, -74.03208536131336 40.606302247155725, -74.0320773947659 40.606306135130836, -74.0320686833193 40.60630894538869, -74.03205947506305 40.606310599514515, -74.0320500334614 40.6063110488065, -74.0318062286419 40.60614962596391, -74.03155766891712 40.6059924768834, -74.03133304684802 40.60585692966121, -74.03126994663667 40.60581990208049, -74.03105560683193 40.605698072767105, -74.03084898787186 40.605588720412165, -74.03077202760701 40.60554935762135, -74.03055598582974 40.605443087045465, -74.0302979724691 40.605325399512274, -74.03003489661066 40.605214430614886, -74.02988640113365 40.60515657477411, -74.02973565075223 40.605102243967195, -74.02958275535597 40.60505149488998, -74.029558980868 40.60504426081102, -74.02951540121322 40.60503100011945, -74.02942787917523 40.60500436621432, -74.02927116753972 40.60496090832445, -74.02911277522496 40.60492116079663, -74.02895282983214 40.60488516771739, -74.02879151448215 40.60485294794547, -74.02860113091782 40.60481986888233, -74.0284094085683 40.604791635543, -74.02821655181219 40.60476828118999, -74.02802278274781 40.60474983458009, -74.02782832228812 40.60473631726778)), ((-73.92699042805195 40.58470168606802, -73.92695476365061 40.58468874538473, -73.92691966719099 40.58467492343869, -73.92691115371332 40.58467129791723, -73.9270726957167 40.58465188711206, -73.9272871205365 40.584702437041045, -73.9275354776341 40.58476248058599, -73.92771718618538 40.584807174578664, -73.92789217316444 40.5848505303896, -73.92819364302414 40.58492705750146, -73.92844865584853 40.58499545919055, -73.92870340396784 40.58506446259911, -73.92895785550478 40.58513405960439, -73.92921202817253 40.58520426012512, -73.92930547099333 40.58523159812588, -73.92956797501041 40.585308788347234, -73.92983022989604 40.58538646139707, -73.93009223329263 40.58546461727565, -73.93015521834921 40.58548439776393, -73.93021820226193 40.585504178216965, -73.93028118738658 40.585523964939775, -73.9303441642868 40.585543745319384, -73.93040714949268 40.5855635256694, -73.93047012646748 40.5855833059799, -73.93053311174143 40.585603092564476, -73.93059608879182 40.58562287190531, -73.93065907414693 40.585642652117116, -73.93072205717691 40.58566243229292, -73.93078502842674 40.585682217830225, -73.93084801388726 40.58570200424199, -73.93091099821693 40.585721778011134, -73.93097626863273 40.585742268135, -73.93104153909505 40.58576275191803, -73.93110681668463 40.58578323566822, -73.93116612412383 40.585801850820076, -73.93116776899404 40.58580236780559, -73.93120010502646 40.585981552679534, -73.93119356540319 40.585982053957395, -73.93118552897866 40.585981626798905, -73.93111785573448 40.58596111374154, -73.9310531233379 40.58594096171796, -73.9309883909925 40.58592079795113, -73.93092365867963 40.5859006404514, -73.93085893349304 40.58588048291942, -73.93079420126487 40.58586031904304, -73.93072946197655 40.58584016683267, -73.93066472864437 40.58582000378309, -73.93060000479532 40.585799846105814, -73.93053527271695 40.58577968838705, -73.93047054067858 40.58575952973126, -73.93040580868399 40.585739366536345, -73.93034107671721 40.58571921411121, -73.93027511971829 40.585699229304126, -73.9302091710216 40.58567924986725, -73.93014321527622 40.58565927128876, -73.93007725957695 40.585639286368675, -73.93001130390482 40.58561931311748, -73.92994535537164 40.58559932812594, -73.92987939860956 40.58557934309143, -73.92981344306149 40.58555936432341, -73.9297474875539 40.585539384616986, -73.92968153917758 40.585519400374366, -73.92961558374796 40.58549942149266, -73.92954962718419 40.58547943536816, -73.92949018034687 40.5854615343113, -73.92943072645906 40.58544362871666, -73.92937127142386 40.58542572128947, -73.92931181759505 40.585407820135856, -73.9292523626236 40.58538991264708, -73.92919290886427 40.58537200602877, -73.92913346104278 40.58535409938323, -73.92907400734147 40.58533619810649, -73.92889943313956 40.585283760770196, -73.92872491836033 40.58523123945637, -73.92841953940092 40.58513906740622, -73.9284108274712 40.5851364252446, -73.92811431750937 40.58504660737431, -73.92780925151267 40.58495385485845, -73.92756723791881 40.58487932647689, -73.9275607152746 40.58487731599754, -73.92731207543147 40.584800989056205, -73.92706331779938 40.58472488122898, -73.92702662497139 40.584713733758754, -73.92699042805195 40.58470168606802)), ((-74.0343883721102 40.608931935601895, -74.03439193909354 40.60892451964028, -74.03440018478385 40.608939183967095, -74.03449141868931 40.60911066905636, -74.03453029261416 40.60918886137502, -74.03457744533816 40.60928371263872, -74.0345841566945 40.609297044641565, -74.03459842159822 40.6093254004724, -74.03461939079995 40.60936709820995, -74.03464037538369 40.60940878603309, -74.03466135290904 40.60945048376015, -74.03468232218421 40.60949217157995, -74.034691004981 40.609508678220166, -74.03468910469043 40.60951273204093, -74.03455894548047 40.60955192322225, -74.03462210160062 40.60966820656521, -74.03308736202813 40.61014943260313, -74.03308776471118 40.61014892639413, -74.03311315143087 40.61011699019559, -74.03311892360992 40.610109737534, -74.0331499869556 40.610070941320124, -74.03318727323101 40.61002610620537, -74.03322643988271 40.60998220887811, -74.0332674526614 40.609939288969244, -74.03331026315038 40.609897409527406, -74.03335159498754 40.609859474782446, -74.03339438655533 40.60982249685266, -74.03343863196665 40.60978651896323, -74.03348426506466 40.609751569047845, -74.03353125514164 40.60971767593057, -74.03357956794727 40.60968487203853, -74.03362586629605 40.60965724671387, -74.03366933949107 40.60962518622926, -74.0337065601528 40.609599019673915, -74.03372221452965 40.609588008908624, -74.03377508124305 40.609550841471666, -74.03382795616932 40.60951367490836, -74.0338808227627 40.60947650291988, -74.03393369757032 40.6094393345066, -74.03395885566071 40.609421524667, -74.03399396748641 40.60939647078502, -74.03401652191366 40.60937991522865, -74.03404611651699 40.60935670723139, -74.03407467208612 40.60933275750473, -74.03410217209277 40.60930809397058, -74.03412857992501 40.6092827508603, -74.03415386605447 40.60925675069653, -74.03417800804773 40.60923012590542, -74.03420784301413 40.60919890225261, -74.03423623127331 40.60916691357958, -74.03426313739347 40.60913418961517, -74.03428853776366 40.60910076908994, -74.03431239577267 40.60906668533501, -74.03433468309852 40.60903200589897, -74.03435536903004 40.6089967479018, -74.03437443941644 40.608960962678324, -74.03438295672485 40.60894321355278, -74.0343883721102 40.608931935601895)), ((-73.9652115588329 40.58428120040516, -73.96633520852527 40.58421106825089, -73.96626016813532 40.58450519599742, -73.96365078158581 40.58460910309927, -73.96425641628909 40.58438561022564, -73.96446869098338 40.584323806487035, -73.96458731185376 40.5842952875025, -73.96471841000718 40.58428105003076, -73.9652115588329 40.58428120040516)), ((-73.84236806670157 40.66495415287019, -73.84242093201583 40.66494828188336, -73.84247435088295 40.66494887554437, -73.84252696809416 40.66495592029048, -73.84257744893726 40.66496923599386, -73.84262451465116 40.66498848501486, -73.84266696960496 40.66501318034349, -73.84270373793582 40.66504269465413, -73.84273388597568 40.66507627834581, -73.84275665058003 40.665113082093136, -73.84277145447088 40.66515217037445, -73.84277792035681 40.665192552107925, -73.8427758850705 40.66523320408435, -73.84276540069826 40.66527309438147, -73.84274673333123 40.66531121117923, -73.84272035472956 40.66534658796306, -73.84264580302413 40.66540238112447, -73.84256735021569 40.66545498196772, -73.84248523319899 40.66550423321861, -73.84239969713053 40.665549985719366, -73.84176387219374 40.66585286999772, -73.84167541988799 40.665525010406405, -73.84168447990766 40.665466187572214, -73.84170082139818 40.66540828247854, -73.84172429527474 40.66535181811783, -73.84175469217836 40.6652973020895, -73.84180392640644 40.66523892172387, -73.84186040410654 40.66518447845108, -73.84192358832777 40.6651344893202, -73.84199287598946 40.66508943346772, -73.84206760500705 40.665049739520455, -73.84214706256994 40.66501578560761, -73.84223049224074 40.66498789756989, -73.84231709634136 40.66496633995786, -73.84236806670157 40.66495415287019)), ((-73.96585270877128 40.58327696117761, -73.96592370638604 40.58327246072663, -73.96654166062004 40.583339272096055, -73.96642905021544 40.58383419681744, -73.96521177203468 40.58387190884022, -73.96525550120957 40.58381005158925, -73.96532420125357 40.58374344349283, -73.96537418874018 40.58364827410914, -73.96541794719015 40.58352930738844, -73.96545075150162 40.58348109240907, -73.96549125386926 40.58343640798465, -73.96553880900953 40.58339596352621, -73.96559266065039 40.583360403573664, -73.96565195216968 40.58333029249041, -73.96571574431535 40.58330610816607, -73.96578301875124 40.58328823661447, -73.96585270877128 40.58327696117761)), ((-73.94838118936588 40.584366978280045, -73.94840015912526 40.58436519565911, -73.94843682654701 40.58450540385965, -73.94822670846978 40.58451556543622, -73.9478889918475 40.584534946923895, -73.94755143553847 40.584555997063234, -73.94721407612884 40.584578722176104, -73.94687690060202 40.58460312045715, -73.94655563506025 40.5846277277683, -73.94623449487999 40.58465331220865, -73.94591349303424 40.58467988098961, -73.94559263777066 40.5847074422209, -73.94527192908237 40.58473598689852, -73.94497801447561 40.58476526843692, -73.94468410671685 40.58479452671373, -73.94439019044577 40.58482376802521, -73.94428626310989 40.58483409441309, -73.94404921379193 40.58485825824444, -73.94387340382161 40.58487797681548, -73.94386109597285 40.58487935850964, -73.94386028215179 40.58487513105349, -73.9438589015411 40.58486788476473, -73.94385076012199 40.58482522027422, -73.94384498363898 40.58479494634479, -73.94384068015265 40.58477442670788, -73.94383883942581 40.584770754372784, -73.94383753784811 40.584766448332424, -73.94383714309176 40.58476252455743, -73.94383802582477 40.5847564365477, -73.94383998362859 40.584751513440665, -73.94384260442985 40.58474756862652, -73.94384670727929 40.5847440117618, -73.94384750987373 40.584743325954896, -73.9438511115019 40.58474024792376, -73.9438564373612 40.58473750753092, -73.9442078165865 40.58470384961626, -73.94455761613628 40.5846717243573, -73.94490753987263 40.58464042387335, -73.94525758897916 40.58460996077111, -73.9453135780178 40.58460529840605, -73.94537028879411 40.58460057602178, -73.9454266392829 40.58459588045405, -73.94548298268116 40.58459117945224, -73.94580168232243 40.58456587692447, -73.94612044041314 40.584541029205184, -73.94643925695613 40.584516640796465, -73.94675813904848 40.58449270719859, -73.94707707960544 40.584469233810836, -73.94739607155142 40.58444621432583, -73.94746298786526 40.58444083729781, -73.9475298970856 40.58443545482449, -73.94759680629511 40.58443007231217, -73.94765854636906 40.584425107950814, -73.94766372966856 40.58442468886683, -73.94773063885656 40.5844193062766, -73.94779754684902 40.584413928149445, -73.94786446310661 40.58440854008133, -73.94793138053107 40.58440315647743, -73.94799828849474 40.58439777373078, -73.94806520471157 40.584392396351994, -73.94813211383479 40.58438701352793, -73.94819902294796 40.58438162976439, -73.94826594622364 40.584376246868786, -73.94833285531033 40.58437086933097, -73.94838118936588 40.584366978280045)), ((-74.0181677432599 40.603832849425906, -74.01812119244947 40.60379655583463, -74.01806865281027 40.603765370926574, -74.01801108269737 40.603739863673304, -74.01702396242415 40.60322615467485, -74.0190172484142 40.60383290110939, -74.01895929308937 40.60391275456261, -74.01889633445826 40.60399037641482, -74.01881769819526 40.60407240075004, -74.01873204707186 40.60415023694631, -74.01863976615849 40.60422353912514, -74.01854126534812 40.60429197761357, -74.01843698526706 40.604355248849146, -74.01781185069203 40.60467974243178, -74.01822325395412 40.60426026166591, -74.01825171722598 40.604214377358765, -74.01827181462278 40.604165989122684, -74.01828317895016 40.60411597953192, -74.01828560252913 40.60406525814925, -74.01827904309883 40.60401475071851, -74.01826361908263 40.603965376652226, -74.01823961076394 40.6039180355238, -74.01820745791704 40.60387358995826, -74.0181677432599 40.603832849425906)), ((-73.84243024105689 40.665917136962044, -73.84247561301973 40.66591171765106, -73.8425215391277 40.665912017365784, -73.84256678358176 40.66591802721015, -73.8426101298633 40.66592958612898, -73.84265041265641 40.66594638365301, -73.84268654976054 40.66596796714637, -73.84271756925109 40.66599375805251, -73.8427426378407 40.66602306093756, -73.84276108092202 40.6660550896322, -73.84277240263691 40.66608898256744, -73.84277629882426 40.6661238289066, -73.84277266406453 40.66615869106787, -73.84276159752794 40.66619263264814, -73.84272475744268 40.666270008763895, -73.84268119654075 40.66634533330339, -73.84263111073663 40.666418267031986, -73.84257472311624 40.66648848425935, -73.8425122874961 40.66655566834176, -73.84244408367582 40.66661951887979, -73.84237041862966 40.666679748118405, -73.84234012390883 40.66670248788898, -73.84230514431145 40.66672092216037, -73.84226652303605 40.66673450124211, -73.84222541056101 40.6667428205752, -73.8421830315043 40.666745631493114, -73.84214064911995 40.66674285107933, -73.84209952508745 40.66673456211212, -73.84206088758344 40.66672101121965, -73.84202588517283 40.66670260251295, -73.84199556200285 40.666679884943754, -73.84197082118335 40.666653534243885, -73.8418276442217 40.666114355366034, -73.84238664048482 40.66592812838175, -73.84243024105689 40.665917136962044)), ((-73.88586252207386 40.629807221387324, -73.88585658433739 40.629746805890186, -73.88584182878007 40.629687272252035, -73.88581844089859 40.62962936718507, -73.88578697421647 40.62957427271655, -73.8859201857417 40.6295949881609, -73.88592032754394 40.629595008113064, -73.88605627779627 40.62960948100868, -73.88605641251907 40.62960949374948, -73.88619341994404 40.629617474779195, -73.88628741206296 40.629618460193406, -73.88628782502397 40.62961819404785, -73.8862884290004 40.629618200048284, -73.88633183134458 40.62961865540386, -73.88646907501445 40.62961355267921, -73.88660563238595 40.62960192574486, -73.88674096909087 40.62958382090396, -73.88687455663079 40.629559308781914, -73.88700587237693 40.62952848522684, -73.88713440311952 40.629491469511926, -73.8869172293464 40.629716207886716, -73.88603399415064 40.63030439401654, -73.88582742537265 40.63013147289569, -73.8858088828468 40.63010915579863, -73.8857956214372 40.630084752035735, -73.88578803232542 40.63005898061261, -73.88581284841347 40.63001656914428, -73.8858328066873 40.629972694003975, -73.88584776003906 40.62992767743451, -73.88585345695833 40.629898770986486, -73.88585956879217 40.629867764036256, -73.88586252207386 40.629807221387324)), ((-73.9671217892624 40.58416278301527, -73.96884474865189 40.58403000543589, -73.96884473755122 40.584053800871175, -73.96866367108046 40.58413465828154, -73.96792067675926 40.584448561301926, -73.96768343031131 40.58451988293074, -73.9670217349224 40.58451969491293, -73.9671217892624 40.58416278301527)), ((-73.88517100156328 40.629471247501506, -73.88522935191148 40.62946634119456, -73.88528803822429 40.62946745247005, -73.88534599677968 40.62947456225626, -73.88540217468275 40.6294875407304, -73.88545555467482 40.62950615364687, -73.88550516813248 40.629530063250286, -73.88555011396704 40.62955883459781, -73.88559384216019 40.629590510695046, -73.88563132805352 40.62962653368143, -73.88566183412487 40.62966619592117, -73.88568476007698 40.62970871877342, -73.8856996569972 40.62975326701406, -73.88570623206057 40.62979896414886, -73.88570435558906 40.629844912231626, -73.88569406456985 40.62989020897745, -73.88567556026365 40.62993396487012, -73.88564920699686 40.62997531937069, -73.88561552385492 40.63001346072098, -73.88557517047978 40.63004763763659, -73.88552894112348 40.63007718091433, -73.88551003623266 40.630088398782725, -73.88545738232115 40.63011200210599, -73.88540107965837 40.630130066270375, -73.88540049791848 40.63013018636024, -73.885342125213 40.6301422716795, -73.88528156542367 40.630148401447514, -73.88522047372938 40.63014834768049, -73.88515993165927 40.630142109656816, -73.885101015819 40.63012980011779, -73.88504476835634 40.630111635332085, -73.88499218631641 40.63008793868725, -73.88494420274733 40.6300591298638, -73.88490166897923 40.6300257194142, -73.88486533809174 40.62998829974042, -73.88484037243347 40.62994443110642, -73.88482293482393 40.629898497911086, -73.88481331117683 40.629851248776596, -73.88481165617371 40.62980345020265, -73.8848179980054 40.629755879366904, -73.88483223248718 40.629709310611176, -73.88485412781414 40.62966450013744, -73.88488333048949 40.62962217610837, -73.8849193629818 40.62958302693849, -73.88496164029374 40.629547689604564, -73.88500840655367 40.629520655039464, -73.8850595184773 40.62949865330526, -73.88511345861173 40.62948226281502, -73.88511404517516 40.62948208419757, -73.88517100156328 40.629471247501506)), ((-73.97227223182192 40.583012412080876, -73.97308998127995 40.58298405091181, -73.9717415436262 40.5832359656825, -73.97071148132876 40.58342607574025, -73.96947541958897 40.58361136365004, -73.96945047174904 40.58356376524035, -73.96967522380906 40.58350195429632, -73.97008101935478 40.583402117856245, -73.97063039847608 40.58327376026622, -73.97146693790164 40.583107399377106, -73.97180404164409 40.58305988991819, -73.97198507744245 40.58303613786245, -73.97227223182192 40.583012412080876)), ((-73.93429003685364 40.5861680668549, -73.93404342496599 40.58615939849624, -73.93379734506871 40.58614438212301, -73.93355206770744 40.58612303680604, -73.93330787995522 40.586095389732705, -73.93306505588892 40.58606146988628, -73.93282386720483 40.58602132246039, -73.93261038941469 40.58598027945392, -73.93239858335055 40.58593449847813, -73.93218861674895 40.585884013861, -73.93209302594505 40.585858666195435, -73.93198067859791 40.58582886804904, -73.93177494841656 40.5857691205944, -73.93157158920711 40.58570480942785, -73.93151371005958 40.585685943189795, -73.93149622959169 40.58554086198899, -73.93152174351977 40.585548691042824, -73.93158174322207 40.58556713169157, -73.9316282627423 40.585581420978215, -73.93164963791644 40.58558799311101, -73.93170173682753 40.58560400568724, -73.93176173781046 40.585622446242574, -73.93182142059356 40.58564136925849, -73.93203754810362 40.58570726705507, -73.93225640896243 40.58576769627468, -73.93247776104096 40.585822595523865, -73.93270137638247 40.585871902518754, -73.93292698804349 40.58591555945688, -73.93299363076429 40.58592767976722, -73.93305991288005 40.5859401636404, -73.93312617966407 40.585952648366884, -73.93319245473043 40.58596514386622, -73.93321629506636 40.585969626124424, -73.9332587357393 40.58597762762396, -73.93332500259768 40.58599011223577, -73.93338988655628 40.585999970080366, -73.93342106425881 40.58600471049714, -73.93345476225933 40.58600983418725, -73.93351963208187 40.58601969195036, -73.93358451491042 40.586029555988, -73.93364939185845 40.58603941368197, -73.93371426055191 40.58604927673764, -73.93377914344332 40.586059135262204, -73.93384469828958 40.58606916163448, -73.93393298300391 40.58608153429816, -73.93402177082199 40.586091636962536, -73.93411095189056 40.5860994623593, -73.93420042345234 40.58610499421926, -73.93429009573242 40.58610822708725, -73.93435700031488 40.5861091478431, -73.9344239002515 40.58610878711206, -73.93449078018283 40.58610714488543, -73.93454750464073 40.586105012353464, -73.93460690052105 40.586102129376634, -73.93466628812874 40.586099245463835, -73.93472569109221 40.58609635612596, -73.93478508698527 40.58609344424029, -73.93504987791675 40.58608212695672, -73.93531487100466 40.58607419784755, -73.93558000839671 40.58606967128727, -73.93564786777303 40.58606894386837, -73.9357157259771 40.586068205602494, -73.93578357590522 40.58606747359551, -73.9358127896095 40.58606715852639, -73.93585143410537 40.58606673614998, -73.93591382920012 40.58606606225616, -73.9359192852117 40.58606600406356, -73.93598714340978 40.58606526563738, -73.93598870701366 40.58608160200865, -73.93592834767652 40.586090304346726, -73.93589695297231 40.58609482907733, -73.93586798714858 40.58609900034877, -73.93580763368081 40.5861077080299, -73.93576193676947 40.586112471475836, -73.93544487670157 40.58613832701643, -73.93512690240325 40.58615661406521, -73.93480833764109 40.58616732199202, -73.93448948492637 40.58617043475502, -73.93429003685364 40.5861680668549)), ((-73.96027998672841 40.58360650130712, -73.96028793484422 40.58360629063044, -73.96029585293003 40.58360692283305, -73.96030223045962 40.583608111026564, -73.96030750106723 40.58360960231383, -73.96031253638128 40.5836115041584, -73.96042871604652 40.58368311515841, -73.96054083423545 40.583756260038655, -73.96065043552099 40.583831578711774, -73.9607519544037 40.583910868530396, -73.96085627650046 40.58398801236508, -73.96096331325369 40.584062958848364, -73.96107299145928 40.584135657518544, -73.96112584995889 40.58417382880406, -73.96118024241785 40.58421071643656, -73.96123611805642 40.58424630148579, -73.96129342492905 40.58428053800531, -73.96130806427595 40.58428875030922, -73.96034064219423 40.58443058973247, -73.9602739446274 40.58360733220266, -73.96027444196095 40.58360721890861, -73.96027998672841 40.58360650130712)), ((-73.99800709592512 40.59479919156238, -73.99801489879395 40.59479802822209, -73.99808387700824 40.59483168372825, -73.99815093211485 40.59486292846265, -73.99821917458631 40.59489263328239, -73.99828855125908 40.59492078017411, -73.99832208133458 40.59493342851014, -73.9983561288766 40.59494525646755, -73.99839064899301 40.5949562469354, -73.99842561805593 40.59496638820608, -73.99846099235441 40.594975669472355, -73.99849673644655 40.594984085330225, -73.99855135027016 40.5949960981041, -73.99860654061474 40.595008139675755, -73.99867139795808 40.59502329083797, -73.99873552522008 40.59504014394341, -73.99879885624937 40.59505868368376, -73.99884290290834 40.59507286646775, -73.9988863234483 40.59508813525922, -73.9989290729793 40.59510449366039, -73.99897108416597 40.59512190835222, -73.99901232156932 40.59514035862308, -73.99905274856873 40.59515983096572, -73.99909231909244 40.59518031007166, -73.99913097525531 40.595201761721576, -73.99917848093894 40.59522914336392, -73.99922653244387 40.595257076110165, -73.99927456154424 40.59528490167385, -73.9994018584809 40.595356810944104, -73.99953173699082 40.595425971688215, -73.9996641072827 40.59549231996009, -73.99979886893115 40.5955558305364, -73.99985888817646 40.59558240865153, -73.99991890983233 40.59560898043163, -73.9999789232664 40.595635558483956, -74.0000389438364 40.59566213020119, -74.00009305760864 40.59568609397839, -74.00010137681062 40.595690136417524, -74.00010746795311 40.59569444181078, -74.00011132512728 40.59569806190814, -74.00011454672608 40.59570202510516, -74.00011787347042 40.595707826268686, -74.00011981210629 40.59571329063809, -74.000120601269 40.595717916622114, -74.00012061663523 40.59572258222996, -74.00011965028544 40.59572819879069, -74.00011736434695 40.59573428002249, -74.00011453261308 40.595738985256155, -74.0000693630042 40.59578273088127, -74.00002558853436 40.59582460430156, -74.00000333977933 40.59584614570639, -73.99999289055019 40.59585626938166, -73.99998557549937 40.595853632650694, -73.99997866447805 40.59585103554237, -73.99997188104547 40.59584827003588, -73.9999651992114 40.59584535234073, -73.99995864260336 40.59584228966105, -73.99995220531456 40.5958390621854, -73.99978740779896 40.59577577686973, -73.99957026667724 40.59568598064725, -73.99935735076194 40.59559047922632, -73.9991489282578 40.59548938879974, -73.999108664051 40.59547052884824, -73.99906701415699 40.5954495049154, -73.99902574705169 40.59542843594453, -73.99885386490304 40.595337767034195, -73.99868527928629 40.5952435858652, -73.99852010953009 40.59514595188807, -73.9984815717973 40.595121611157325, -73.99847562728765 40.59511786130207, -73.998443025823 40.59509727581658, -73.99840439836228 40.59507297378109, -73.99820320602946 40.594943624232144, -73.99812467810644 40.59489082172844, -73.998004249743 40.594809349409346, -73.99800281099883 40.59480454959822, -73.99800709592512 40.59479919156238)), ((-73.98441342713261 40.5834916864598, -73.98369093382459 40.583356042047754, -73.98319447264177 40.583276673086196, -73.98286395603279 40.5832185837111, -73.98283766684719 40.583008626279415, -73.98361929814305 40.58316863917325, -73.98378158202728 40.58320186090362, -73.98427307497799 40.58314775912656, -73.98433514871132 40.58329986786518, -73.98456417300739 40.58335333143712, -73.98456192907642 40.58339310816866, -73.98454932883942 40.583427632554006, -73.98453494155217 40.58346705914838, -73.98459392442405 40.58347871444606, -73.98465292149031 40.583490369715314, -73.98471191030909 40.5835020249532, -73.98477437288601 40.583513827406485, -73.98483684257208 40.58352562892628, -73.98489930519337 40.583537430411106, -73.98496177492223 40.583549238166576, -73.98502423758761 40.58356103958347, -73.9850867002749 40.583572841866946, -73.98514916298329 40.583584648618995, -73.98520728282895 40.583595460599916, -73.98526539560655 40.583606272550504, -73.98532350840176 40.583617089874814, -73.98538238781121 40.5836277892987, -73.98546374734818 40.58364225212561, -73.98554448758732 40.583658597812004, -73.98558831930416 40.58366855500558, -73.98562646514638 40.583677596539246, -73.98562939963054 40.58368079556644, -73.98562897119807 40.58368476412074, -73.98562484837427 40.58368750119698, -73.98553138815754 40.583682317758175, -73.98544114949294 40.583674723949635, -73.98534319257278 40.58366450225834, -73.9852456554756 40.58365209496637, -73.98514865041835 40.583637511995136, -73.98505229079939 40.58362076056493, -73.98505224946062 40.58362075335533, -73.98505035969701 40.58362037669056, -73.98499341523147 40.5836089974539, -73.98498728059215 40.58360775933291, -73.98493400467432 40.58359699920586, -73.98487460240413 40.583585011734485, -73.98481519188823 40.58357301972868, -73.98474823299401 40.58355947418748, -73.98468126586006 40.58354592320303, -73.98461430584132 40.58353236767783, -73.98454733876054 40.583518822018405, -73.98448037879629 40.58350526551462, -73.98441342713261 40.5834916864598)), ((-73.95310995642234 40.584787661614754, -73.9530751354153 40.58478422360771, -73.95304018740875 40.58478166354883, -73.95300514311754 40.58477997334587, -73.95297004741988 40.584779160221245, -73.95293494282785 40.58477923679973, -73.95290558194674 40.584779803805716, -73.95248076202473 40.58471932802472, -73.95241245014891 40.584707483980225, -73.95234415247211 40.58469563900042, -73.95229262068192 40.584686708733834, -73.95227585599557 40.58468380118468, -73.95226624242851 40.584682138426444, -73.9522075500944 40.584671962423926, -73.95213924540326 40.58466011731934, -73.95207094899996 40.58464827848124, -73.9518115270365 40.584608572141505, -73.95155092304721 40.58457372394343, -73.95151298341504 40.5845693791214, -73.95147216787623 40.58456470167943, -73.95128925981423 40.58454374023476, -73.95110945815958 40.58452626124545, -73.95104167889934 40.584379800018205, -73.95109193618039 40.584373701462745, -73.95115096429538 40.58436668898098, -73.95120998530315 40.5843596872721, -73.95123130307923 40.58435637969357, -73.95125275393997 40.584353599874504, -73.95127430717812 40.584351344199625, -73.95129593443961 40.58434962166216, -73.95131763453847 40.584348439465714, -73.95133938031373 40.584347790394624, -73.9513611221633 40.58434766542258, -73.95138288133437 40.58434808437008, -73.95140459405488 40.58434903280182, -73.95142626268506 40.584350514320846, -73.95144785769102 40.58435253611892, -73.95146934837595 40.58435508017268, -73.95149073591698 40.5843581527863, -73.95161704679904 40.58437892709685, -73.95174240346431 40.584402847297696, -73.95186666774306 40.58442989892562, -73.95198969084475 40.584460053105296, -73.9521113476138 40.58449326386174, -73.9522927138531 40.58455628141817, -73.95249221393071 40.584625754837674, -73.95269162574033 40.58469536205184, -73.95270501983825 40.58469928574472, -73.95271858426965 40.58470286640662, -73.95273228832771 40.58470609862166, -73.95274612610635 40.584708982387376, -73.95276008225387 40.58471151229427, -73.95277414141174 40.584713692838605, -73.95278829649897 40.584715515012206, -73.95280251090853 40.58471696529214, -73.95281678580102 40.58471807249557, -73.95283110347762 40.58471880959961, -73.95284544385503 40.58471918109852, -73.95285979275887 40.58471918698651, -73.95287413364481 40.58471883806306, -73.95288845353446 40.58471811361083, -73.95290272878553 40.584717039735345, -73.9529169452384 40.584715595718706, -73.9529311028858 40.584713791466754, -73.95299645091563 40.584706032290676, -73.95306179066145 40.58469827397454, -73.95312713747971 40.58469051472362, -73.953192485464 40.584682755436, -73.9532578263536 40.58467498530203, -73.95332317194452 40.58466722683964, -73.9533885127962 40.584659467437646, -73.95339958879747 40.58465757722852, -73.9534107449212 40.58465596891476, -73.95342197525483 40.584654652399664, -73.95343325027292 40.584653622268114, -73.95344456051743 40.58465289112361, -73.95345590126949 40.58465245085954, -73.9534672559947 40.58465229876757, -73.95347860342576 40.58465244384438, -73.95348994356603 40.58465288158731, -73.95350126106104 40.58465361108962, -73.95351253347235 40.584654626939155, -73.95352376197255 40.58465594174369, -73.95353491704125 40.584657542883974, -73.95354599749739 40.58465943035955, -73.95355699743894 40.58466159876488, -73.953567877883 40.58466405438796, -73.9535786482841 40.58466679002841, -73.95358930156156 40.58466979667819, -73.95359980582127 40.58467307792655, -73.95361016224398 40.58467663467451, -73.95362034957982 40.58468045070411, -73.95363036664529 40.58468452961699, -73.95364019336297 40.58468886780304, -73.95364981911052 40.584693453551225, -73.95365924625104 40.584698285961935, -73.95366844407768 40.5847033596198, -73.95367742204313 40.584708670026025, -73.95368614708696 40.584714199156814, -73.95369462274026 40.584719965024206, -73.95370284666076 40.584725938810486, -73.95371079168255 40.58473211870379, -73.95372829946392 40.58474687093112, -73.95374642767787 40.584761178546856, -73.95376514680208 40.58477503163306, -73.95378445567147 40.58478840677526, -73.9538043259372 40.58480130486235, -73.95382473281428 40.58481369706733, -73.95384566449903 40.584825571678365, -73.95386709146054 40.58483693048436, -73.95388899009613 40.58484774285776, -73.95389396906754 40.584849002887395, -73.953892145255 40.58488332921845, -73.95384281756454 40.58488069339156, -73.95377759546241 40.584877064176354, -73.9537125445091 40.58487191671013, -73.95364773084997 40.58486525822402, -73.95358322063711 40.58485708604357, -73.95339874690916 40.58482812977467, -73.95321325947585 40.584803139603586, -73.9531790521126 40.58479712277805, -73.9531446008344 40.58479195953934, -73.95310995642234 40.584787661614754)), ((-73.88563609258945 40.63082255988643, -73.88593050150925 40.63062910362726, -73.88619164402962 40.63087029478876, -73.88604019939774 40.63096761528665, -73.88557403292585 40.631190917153525, -73.88466071201101 40.631570856171265, -73.88436162367275 40.631703763393986, -73.88435103212177 40.63169738606388, -73.88531148791165 40.63103595881101, -73.88563609258945 40.63082255988643)), ((-73.97389519513371 40.58308418041396, -73.97435715809237 40.58299385925295, -73.97434460575806 40.58316994756906, -73.97308982211514 40.5833790656215, -73.97100472111929 40.58376881380553, -73.97166026276133 40.58354529448047, -73.97218466175785 40.58344071963641, -73.97308987005637 40.5832600857336, -73.97389519513371 40.58308418041396)), ((-73.88687908489209 40.63038347567967, -73.88678367550871 40.63045992508798, -73.88646942620615 40.63066889431426, -73.88621236307985 40.630453705834725, -73.88789214245317 40.629374007659955, -73.88789319073155 40.62937478583109, -73.88784858835434 40.629404864736586, -73.88770428367584 40.629526860551636, -73.88752219395403 40.62970102959095, -73.8872423342345 40.62999602525734, -73.88687908489209 40.63038347567967)), ((-73.93887030954497 40.585479308846416, -73.93891383179214 40.58547264290309, -73.93895454769563 40.58560664446424, -73.93882261223283 40.585631194610265, -73.93878577510577 40.58563819637409, -73.93875609959525 40.58564384125231, -73.93868980903262 40.5856564483513, -73.93862352553712 40.585669050012704, -73.93855724910954 40.585681645335946, -73.93849096555905 40.585694252323975, -73.9384246831697 40.58570685387122, -73.93835839956913 40.58571946078274, -73.93829384101888 40.585731489545715, -73.93822928363149 40.58574351286987, -73.9381647191179 40.58575555326389, -73.93810016050368 40.58576757561431, -73.93803560303657 40.58577960963592, -73.93797104555115 40.58579163821807, -73.93790648803751 40.585803672167096, -73.93772331124424 40.58582732884479, -73.93753932653664 40.58584703329325, -73.9374001687285 40.58586225295642, -73.93726149525364 40.58587987351168, -73.93701165442886 40.585920295507044, -73.93676109293892 40.58595804560923, -73.93650986160837 40.585993119338895, -73.93641984817418 40.58599964068632, -73.93633117783932 40.58600606184882, -73.936289773684 40.58600816323365, -73.93615207599 40.58601515861233, -73.93597272026025 40.586020427729345, -73.93579323472899 40.58602184585449, -73.93579281139388 40.58601004515507, -73.93586094057373 40.58600382186486, -73.93592875367771 40.58599584864042, -73.93599617862938 40.585986144353164, -73.93632913694049 40.58593398369985, -73.93666120594278 40.58587864454374, -73.93699234898247 40.58582011786724, -73.93732249158018 40.58575842434976, -73.93738746919115 40.58574689074837, -73.93745243968748 40.58573536250949, -73.93751741724775 40.585723835138275, -73.93758238770425 40.58571230142281, -73.9376473652196 40.585700773978026, -73.93771233562619 40.58568924559215, -73.93777731309672 40.58567771807391, -73.93784228228232 40.585666184210794, -73.93787718634269 40.5856599912751, -73.93790726088909 40.585654656619646, -73.93797224538027 40.58564312809441, -73.93803721567888 40.585631595022164, -73.93810218476969 40.585620066415174, -73.93817141073622 40.58560738288917, -73.93822320999156 40.585597887712865, -73.93824063668224 40.5855946930178, -73.93830986140995 40.58558201481082, -73.93837908021538 40.58556932575275, -73.93844830489633 40.585556641158675, -73.93851753072636 40.58554396282721, -73.93858675654091 40.585531272747225, -73.93865598114209 40.58551858892854, -73.93872520808522 40.585505898765746, -73.93879442436553 40.585493214859206, -73.93883040467453 40.585486623275266, -73.93886365006904 40.58548053091598, -73.93887030954497 40.585479308846416)), ((-73.93002368563731 40.58451973871884, -73.93003880251496 40.58451724626921, -73.93004994502881 40.58452350989339, -73.9300467690112 40.584527875500626, -73.93004298888786 40.58453387158874, -73.9300397601715 40.584540058022995, -73.93003709825621 40.5845463978914, -73.93003502797217 40.58455286689487, -73.93003354581099 40.584559431711966, -73.93003266953184 40.58456605273053, -73.9300323968009 40.58457270293335, -73.93003257582843 40.5845777000494, -73.9300331316724 40.58458267578239, -73.93003438508696 40.58458925847472, -73.93003568515233 40.58459415541474, -73.93004505316978 40.584645894414905, -73.93005441528929 40.58469763971409, -73.93006376207464 40.58474937869924, -73.93007312304294 40.58480112309518, -73.93008248521257 40.584852862087686, -73.9300918391228 40.58490460647726, -73.93010120014027 40.58495634546701, -73.9301105623534 40.58500808445648, -73.9301199174817 40.5850598351474, -73.93012051517077 40.58506546828759, -73.93012187870393 40.58507293986268, -73.93012392151596 40.58508031639533, -73.93012662592524 40.585087563654845, -73.93012999550369 40.585094654627646, -73.93013290994809 40.585099850621404, -73.93013622259218 40.58510491177868, -73.93014114127814 40.585111451671956, -73.9301451913214 40.58511618728766, -73.93014959591919 40.585120732207685, -73.93015592335068 40.585126531825615, -73.93016276851078 40.585131977852015, -73.9301681979182 40.58513583179192, -73.93017390870635 40.585139438258494, -73.93018188175104 40.585143895293506, -73.93019023912797 40.585147924812595, -73.93019894306173 40.58515150518028, -73.93020794987115 40.58515461475726, -73.93021487893168 40.58515664154247, -73.93022194768727 40.58515836673664, -73.93023152394633 40.58516023303422, -73.93023880006804 40.58516132798656, -73.93030190392693 40.5851802205508, -73.93036500664124 40.58519911217907, -73.93042809521052 40.585218010067784, -73.9304758591954 40.58523231228211, -73.93049119917646 40.58523690252794, -73.93055430199695 40.5852557949527, -73.93061739776046 40.5852746927416, -73.9306805018279 40.58529359050084, -73.93074360474988 40.58531248822469, -73.93080670180822 40.58533137960658, -73.93086980480722 40.585350271857905, -73.93093290901756 40.58536916947839, -73.93099601208796 40.58538806166029, -73.93105910809487 40.58540696551009, -73.93109854519349 40.58541877161974, -73.93112470545098 40.58556373381436, -73.93112059506058 40.58556244360131, -73.93110776322777 40.58555841596995, -73.93104138063724 40.58553757134701, -73.93097498273175 40.58551672757701, -73.93090860021944 40.58549588737995, -73.93084220357802 40.58547504353383, -73.93077581287841 40.58545420505603, -73.9307094293083 40.58543336564354, -73.93064303279681 40.58541251627908, -73.93057664930956 40.58539167678982, -73.93050595439188 40.585369838675184, -73.93049311442766 40.58536575063505, -73.93048046615735 40.58536133581929, -73.93046801784276 40.58535660053673, -73.930455783663 40.58535154029324, -73.93044378487576 40.58534615870398, -73.93043203090622 40.58534047918834, -73.93042053474663 40.585334502654696, -73.93040931884606 40.58532822281317, -73.93039839145045 40.58532166128133, -73.9303839405408 40.58531287241928, -73.93036913727396 40.585304436347165, -73.93035397808097 40.58529637737689, -73.93033848777306 40.5852886892197, -73.93032268641244 40.58528138899753, -73.9303065834427 40.58527448211914, -73.93029019185767 40.585267967691756, -73.93027353407416 40.585261870043055, -73.93025663372887 40.585256176579875, -73.93019762245152 40.585237438665835, -73.93018064729858 40.58523213327182, -73.93013659055119 40.585218367199595, -73.93007556694164 40.58519930741269, -73.93006008787764 40.5851944693826, -73.93001454337266 40.58518024219019, -73.9299869906736 40.58517163620793, -73.92995351275137 40.58516117693093, -73.92993689051106 40.585156157182, -73.92992049196918 40.58515070621622, -73.92990434191483 40.58514483935764, -73.9298884663398 40.58513855121913, -73.92987469169492 40.585132639879156, -73.92985760117458 40.585124765172345, -73.92984264819476 40.58511727359032, -73.9298280357939 40.585109405795365, -73.92981379231387 40.58510116810865, -73.92979991657543 40.58509255872844, -73.9297864333702 40.58508359027742, -73.92977336274994 40.58507428978372, -73.92976071299337 40.585064647346705, -73.92974849825849 40.58505467828415, -73.92973672678797 40.5850444069153, -73.92972614092727 40.58502880697028, -73.92971618135144 40.58501296516641, -73.92970687874612 40.5849969049363, -73.9296982165744 40.58498062626994, -73.92969021961791 40.58496415079528, -73.92968289375843 40.58494750102912, -73.92967943082219 40.58493713928328, -73.92967644871645 40.584926692281826, -73.92967393088453 40.584916178925745, -73.92967188558974 40.58490560372267, -73.92967030336345 40.58489498467731, -73.92966919365116 40.58488432539757, -73.92966857060674 40.584873644803196, -73.92966841295271 40.58486295818996, -73.92966873485535 40.58485227277081, -73.92966953393599 40.584841603853185, -73.92967080546306 40.58483095773778, -73.92967254942491 40.58482034523095, -73.92967477288371 40.58480978975053, -73.92967746047266 40.58479930209345, -73.92968060509877 40.584788887658426, -73.92968422093023 40.58477855185731, -73.92968828785651 40.58476832349441, -73.9296928176835 40.584758207980116, -73.92969778323267 40.58474821610402, -73.9297032057583 40.5847383541827, -73.92970862834372 40.58472731167438, -73.92971454686116 40.584716420757154, -73.92972095893485 40.58470569403689, -73.92972784801772 40.58469514140907, -73.92973521055373 40.58468477457831, -73.92974303708193 40.584674604345004, -73.92975132049632 40.58466464871517, -73.92976004543101 40.584654917585105, -73.929769214236 40.584645422662945, -73.92977880091867 40.58463617023632, -73.9297887936503 40.58462717650741, -73.92979919833006 40.58461844778334, -73.92980998068774 40.58460999935198, -73.9298211442594 40.584601838419566, -73.92983267012914 40.584593981183865, -73.92984454176069 40.58458642763469, -73.92985674378652 40.58457918946934, -73.92986927147068 40.5845722774911, -73.92988210000297 40.584565697087896, -73.92989523055333 40.58455945906662, -73.92990861941101 40.58455357060464, -73.92992227366408 40.58454803080576, -73.9299361696657 40.584542862168526, -73.92995028734174 40.58453805927742, -73.92996461841952 40.584533626629984, -73.92997914044943 40.58452957141669, -73.92999383924726 40.58452590353447, -73.93000868528206 40.58452262476643, -73.93002368563731 40.58451973871884)), ((-73.9692007716066 40.58357797547949, -73.96920075185311 40.58362080888578, -73.96720311760832 40.58380110640724, -73.96726569810147 40.583482256901824, -73.96895731715144 40.5835874284962, -73.9692007716066 40.58357797547949)), ((-73.95081805169977 40.58485309723315, -73.95075351603592 40.584849489108166, -73.95044044598899 40.584830803707135, -73.95012675754158 40.584819542903205, -73.94981277777036 40.584815713137814, -73.94949878413873 40.58481932533698, -73.9491583931589 40.58482344190097, -73.94910677194552 40.584825335361685, -73.94882942513226 40.58483547724749, -73.94881749476609 40.58483610680283, -73.94881660283038 40.584836299117576, -73.94879090591405 40.58469974845734, -73.9489379064493 40.58469374885334, -73.94897577617897 40.58469206278661, -73.94900167193764 40.584690910806984, -73.94907095959594 40.584687827529066, -73.94914024252382 40.58468474330676, -73.94920953843756 40.584681659948934, -73.9495610953533 40.584673057224094, -73.94991284409407 40.584673148964434, -73.95026439382819 40.5846819358995, -73.95061539271502 40.584699401670434, -73.95096545583355 40.58472553891361, -73.95100771180992 40.5847311140713, -73.95108840815382 40.584863816308214, -73.95108298499338 40.58486594283753, -73.95107760257245 40.58486727782357, -73.95101168117894 40.5848639168976, -73.95094714549478 40.58486030798082, -73.95088260272992 40.58485669992532, -73.95081805169977 40.58485309723315)), ((-73.95144406694003 40.58492166821781, -73.9513784899114 40.584910836903155, -73.95135841466318 40.58490752258356, -73.95134185892942 40.58490475366731, -73.95126894835093 40.58476556303606, -73.95143083420243 40.58478686322999, -73.95150642583275 40.58479509622858, -73.95158161212962 40.58480524622165, -73.95165632340999 40.58481731318063, -73.95173045101639 40.5848312907571, -73.95180393001408 40.58484714560557, -73.95187666946224 40.58486487228607, -73.95194301247469 40.584876587050566, -73.95200935669092 40.58488830267776, -73.95207570093626 40.58490001016191, -73.95208453266737 40.58490156544769, -73.95234742399478 40.5849477194575, -73.95239803471821 40.58495658808196, -73.95246202771982 40.58496780718546, -73.95252601956616 40.584979019949145, -73.95259001851657 40.58499023898379, -73.95265401158325 40.58500145707982, -73.95271801058118 40.58501266973946, -73.95278457716962 40.58502265870634, -73.95279043165719 40.585023537321575, -73.95285115086568 40.585032646737055, -73.95291771749464 40.58504263472625, -73.95298429123434 40.585052617276645, -73.95305085790243 40.58506260608926, -73.95311742458726 40.5850725993659, -73.95318399129896 40.58508258269816, -73.9532505651145 40.58509257049739, -73.95331713185846 40.58510256455881, -73.95334471145432 40.585107359342885, -73.95337206259136 40.58511286273973, -73.95339914867012 40.58511905132109, -73.95342595905632 40.58512593138649, -73.9534524547874 40.58513348040724, -73.95347860987808 40.58514169837308, -73.95350438772053 40.58515057356256, -73.95352975287992 40.58516010596163, -73.95355470419064 40.58517027395751, -73.95357919086675 40.585181071226266, -73.95360318339038 40.58519248154686, -73.95362667349875 40.585204497712155, -73.95364962577483 40.585217093592846, -73.95367201659208 40.58523027368245, -73.95369381643688 40.585244015456276, -73.95371383407101 40.585257487251404, -73.95373328914337 40.585271429790346, -73.95375214740655 40.585285833153925, -73.95377041596267 40.5853006757326, -73.95378805701492 40.58531595571053, -73.95380506349485 40.58533164606935, -73.95381748471861 40.58534719410104, -73.9538292123744 40.5853630570359, -73.95384021694832 40.58537921144875, -73.95385049136033 40.58539564653063, -73.95386002853793 40.585412340666295, -73.95386881314568 40.58542926413255, -73.95387683100837 40.58544641782438, -73.95388407388374 40.585463763016065, -73.95389054296126 40.58548128710096, -73.9538962228961 40.585498973863636, -73.9539010995326 40.5855167953822, -73.95390517878745 40.58553473544978, -73.95390845477448 40.585552764346815, -73.95391092041336 40.58557087126423, -73.9539125816243 40.585589034591834, -73.95391342424425 40.585607237214134, -73.9539115663628 40.58562758650205, -73.95390439046756 40.585629533257105, -73.95389717558194 40.585624651325325, -73.95389016204436 40.58558476521953, -73.9538834702555 40.585547638446755, -73.95388252628503 40.585537665669044, -73.95388113935294 40.585527716127146, -73.95387930235432 40.585517815933336, -73.95387703182914 40.58550796059165, -73.95387431004045 40.58549817801119, -73.95387114643356 40.58548847449935, -73.95386755518356 40.58547884916127, -73.9538635280024 40.58546933081034, -73.95385907315485 40.58545992485296, -73.95385420598896 40.58545064210156, -73.95384891823662 40.585441482552724, -73.95384322523351 40.5854324750294, -73.95383712579911 40.58542361863041, -73.95383062937066 40.58541493137003, -73.95382374776503 40.58540640604872, -73.9538164915888 40.58539807779113, -73.95380885730218 40.5853899411926, -73.95380087088449 40.58538200616927, -73.9537925299615 40.58537428983009, -73.95378384161552 40.585366799381944, -73.9537748212031 40.58535953302995, -73.95376548406792 40.585352507890164, -73.95375583610773 40.58534573567159, -73.95374588086985 40.58533921097259, -73.95373565023502 40.58533295001523, -73.95372514065092 40.58532696540537, -73.95371436510426 40.58532126615341, -73.95370333777544 40.585315843259735, -73.95369207400914 40.58531071203938, -73.95368058915264 40.585305884205255, -73.95366889265894 40.58530135435799, -73.95365699515116 40.58529713330806, -73.95364492733553 40.58529322737151, -73.95363267503467 40.58528964104508, -73.95362027604872 40.58528637074197, -73.95360773509235 40.58528343087238, -73.95359506988616 40.58528081694082, -73.95358229341439 40.5852785415598, -73.95356942812117 40.58527660203677, -73.95350635648838 40.585266323169584, -73.95344328487872 40.585256038864635, -73.95338022037188 40.58524575993111, -73.95336869096532 40.585243883964296, -73.95331714879356 40.585235486363175, -73.95325408432934 40.58522520195721, -73.95319100570651 40.58521492291397, -73.9531279424585 40.585204643842395, -73.9530825420262 40.58519691863093, -73.95305918692932 40.58519294048388, -73.95299043851134 40.585181237087106, -73.95292167594769 40.58516952733971, -73.95285292875909 40.58515782386111, -73.95279823242497 40.5851485152039, -73.95278416505803 40.585146120334585, -73.95271541791824 40.58513441587317, -73.9526466625375 40.58512270686457, -73.95257790717766 40.58511100231746, -73.95250916011338 40.58509929322996, -73.9524404048011 40.585087589501086, -73.95237164951355 40.58507588483046, -73.95230289424947 40.58506418101926, -73.95229235231521 40.58506238369987, -73.95227700237992 40.58505976850812, -73.95223414610109 40.585052470866174, -73.95216538379812 40.58504076696968, -73.95209981361877 40.58502994147293, -73.95203423637419 40.58501911503527, -73.951968666238 40.58500828856314, -73.95190308785867 40.58499745664695, -73.9518375177637 40.58498663190097, -73.95177194060423 40.58497580531356, -73.95170636228414 40.58496497958874, -73.9516407851711 40.584954147523305, -73.95157520689419 40.58494332082308, -73.95150964399326 40.584932494992415, -73.95144406694003 40.58492166821781)), ((-73.97334593852972 40.582922240990335, -73.97313994373312 40.5829221930173, -73.97242830973654 40.5829600976918, -73.97182278558721 40.583017062003705, -73.97437604946597 40.58256553473071, -73.9743759746008 40.58276066201173, -73.97346454555544 40.58291274990819, -73.97334593852972 40.582922240990335)), ((-74.02036115140514 40.60429340581794, -74.02020727231783 40.60426933140756, -74.02005181571002 40.60425211724233, -74.01989530969198 40.60424182265884, -74.0197382823651 40.604238482682604, -74.01958126654877 40.60424210712636, -74.01942479269307 40.60425268509425, -74.01926939124142 40.60427017957811, -74.01911558672488 40.604294532861616, -74.01886780600695 40.604330501028066, -74.01886931993286 40.604323545148304, -74.01887574958732 40.60430199910583, -74.01888633492099 40.60428142854585, -74.0189008350311 40.60426229547464, -74.01896936059202 40.60419906304374, -74.01903397925642 40.60413348535902, -74.01905936315221 40.60410509670115, -74.01908813140908 40.604070256136474, -74.01912197162169 40.60401799682541, -74.01920233948147 40.60387412504539, -74.02058552057726 40.60431502610336, -74.02058711614906 40.604316707091975, -74.02058832305573 40.604318567354056, -74.02058910701712 40.60432055466548, -74.02058944556723 40.604322614098464, -74.02058933041747 40.60432468712054, -74.02058876391297 40.604326716097866, -74.0205877613966 40.60432864609594, -74.02058635357054 40.60433042127681, -74.02058457586581 40.604331993906456, -74.0205824802554 40.60433331894951, -74.0205801246225 40.60433435947413, -74.02057757512344 40.60433508665181, -74.02057490264342 40.60433548065834, -74.02057218043323 40.604335529773856, -74.0205129343048 40.6043242595254, -74.02036115140514 40.60429340581794)), ((-73.95084164082526 40.58450028303, -73.95051873630653 40.584480649884014, -73.95019525289517 40.58446776590557, -73.94995440981836 40.584463215368125, -73.94986794462113 40.58446165398774, -73.94954750335079 40.584462295379645, -73.94922371657715 40.58446970723865, -73.94890032969833 40.584483881296514, -73.94874485327553 40.58449022827587, -73.9487256931769 40.5843506610562, -73.94874444484182 40.58434984994627, -73.94877761057559 40.584348678746956, -73.94884640483463 40.584346258170065, -73.94891519908872 40.58434383755197, -73.94898400042891 40.58434141149268, -73.94905278640485 40.58433899078854, -73.94912157946209 40.58433657094686, -73.9491903748815 40.58433414476136, -73.94925917619692 40.58433172484096, -73.94932796215285 40.58432930397206, -73.94947088389782 40.58432089028475, -73.94961406178076 40.58431579226052, -73.94975738361072 40.584314011650434, -73.94990071002388 40.584315558298854, -73.95004390875503 40.58432042674515, -73.95011199177537 40.58432288413901, -73.95018008188705 40.584325342396106, -73.95024817909137 40.584327799715474, -73.95031626094425 40.58433025878886, -73.95038435107165 40.584332716024385, -73.95045244120332 40.584335174120085, -73.95052053133607 40.584337637578614, -73.9505886214825 40.58434008928996, -73.95065670335705 40.584342552664225, -73.95072479350951 40.584345009698, -73.9507312445849 40.58434563832847, -73.95073765891867 40.58434643714184, -73.95074402824135 40.58434740793557, -73.95075036082847 40.584348540807504, -73.9507566342333 40.58434984205164, -73.950762849637 40.58435131166852, -73.95076898224697 40.58435293343811, -73.95077504150082 40.58435472357389, -73.95078102032008 40.58435667036605, -73.95078282112571 40.58435731591245, -73.95088037693166 40.584504018759695, -73.95084164082526 40.58450028303)), ((-73.9871914855432 40.58454903019113, -73.98716307807125 40.58450143614885, -73.98713470724081 40.584453921349535, -73.98712413800523 40.584436213169624, -73.98711081163499 40.584413896700084, -73.98734609235841 40.584487988219315, -73.98740634117009 40.58451474669394, -73.98749775313256 40.584552722752576, -73.98755884465467 40.58457724974124, -73.98761952874439 40.584601629868146, -73.9876802140603 40.584626006360935, -73.98774089115363 40.584650375616576, -73.98780593364279 40.584676201450115, -73.98781541539464 40.58468009181747, -73.98782472701417 40.584684225307356, -73.9878338460608 40.58468859381277, -73.98784276780748 40.58469320994057, -73.98785147454191 40.58469804487215, -73.98785996035812 40.584703099507514, -73.98786821698695 40.58470837924895, -73.98787623734447 40.584713866985815, -73.98788400135183 40.58471955641236, -73.98789150546561 40.58472544752827, -73.98789874496173 40.584731536731, -73.98790570448931 40.58473779970488, -73.9879123840463 40.5847442472562, -73.98791877536831 40.58475085867211, -73.98792486546134 40.58475763935445, -73.9879306366121 40.58476456498722, -73.98793610535456 40.58477164908013, -73.98794067652281 40.584778080198966, -73.9879449594638 40.584784629255964, -73.98794894709047 40.584791296250444, -73.98795262523447 40.58479804876206, -73.98795601515421 40.58480490120143, -73.98795909559136 40.58481183825748, -73.98796185237471 40.584818842818834, -73.98796430676336 40.58482592569397, -73.98796643631982 40.58483305986489, -73.98796824813019 40.58484024983492, -73.98796974337965 40.58484747309119, -73.98797091497885 40.58485474133972, -73.98797176175052 40.58486203296781, -73.98797227660867 40.5848693407706, -73.98797246664127 40.584876659345674, -73.98797233303124 40.58488397878734, -73.98797188168649 40.58489128648897, -73.9879710913449 40.584898587851434, -73.98796998445454 40.58490585045822, -73.98796855274405 40.58491309051788, -73.98796678912922 40.584920291820296, -73.98796471605546 40.58492743725775, -73.98796232525491 40.58493452412784, -73.98795961791006 40.584941544325986, -73.98795660110876 40.58494849335027, -73.9879532748525 40.5849553621954, -73.98794964623104 40.58496213555323, -73.98794570697514 40.584968818826, -73.98794148898146 40.58497538410079, -73.98793696744336 40.584981842181236, -73.98793216598611 40.58498818316403, -73.98792708461202 40.58499439354131, -73.98792143623629 40.58500079567025, -73.98791551385123 40.58500705728844, -73.98790931982329 40.58501315588293, -73.98790285178912 40.585019096856655, -73.98789612628806 40.58502486400185, -73.98788915040645 40.58503046182181, -73.98788193123409 40.58503587500834, -73.98787448294642 40.58504109635867, -73.98786679845745 40.58504612046898, -73.9878589013904 40.58505094914269, -73.98785078938538 40.58505556887164, -73.98784248606592 40.58505998055883, -73.98783399143396 40.585064173397974, -73.98782530549077 40.585068141085294, -73.9878164494976 40.585071883623016, -73.9878074388097 40.585075401913286, -73.98779828051656 40.585078683349444, -73.98778897461904 40.58508172342893, -73.9877795506446 40.58508453386156, -73.9877700026919 40.585087090332564, -73.98776034257166 40.58508939914685, -73.98775058800159 40.585091461206815, -73.98774074370755 40.585093270209256, -73.9877308262261 40.5850948270564, -73.98772084973282 40.58509612454566, -73.98771081422669 40.58509716898059, -73.98770261552819 40.58509782548555, -73.98769440151467 40.58509826226058, -73.98768615801072 40.58509848650829, -73.9876779145471 40.585098491928186, -73.98766967230421 40.58509828302303, -73.98766145018105 40.58509785979482, -73.98765324345463 40.58509721323781, -73.98764507456578 40.58509635235972, -73.9876369494194 40.58509528346481, -73.98762888337302 40.5850939948479, -73.98762087642434 40.58509249911639, -73.98761294274908 40.58509078906761, -73.9876050906131 40.5850888773098, -73.9875973271059 40.58508675123641, -73.98758966639747 40.585084434262605, -73.98758211675916 40.58508190927935, -73.98757467700781 40.585079187993344, -73.98756737785425 40.58507626950741, -73.98756021220913 40.58507316642813, -73.98755318597874 40.58506987695513, -73.98754631451946 40.58506639568697, -73.98753960609486 40.585062747839174, -73.98753306661355 40.585058919004126, -73.98752671142877 40.58505492089026, -73.9875205263649 40.58505076070026, -73.98751453976963 40.5850464429399, -73.98750875282501 40.585041962206176, -73.98750317143393 40.58503733470912, -73.98749780504555 40.58503256225095, -73.98749265129553 40.58502765473709, -73.98748772671964 40.58502261667206, -73.98748303958672 40.585017444454664, -73.98747857926213 40.58501215969635, -73.98747436937138 40.58500675159345, -73.98747040400436 40.58500124265839, -73.98744817920914 40.58496835491273, -73.98741944716537 40.58492377495272, -73.98739072224718 40.58487919408557, -73.98736198909793 40.584834619513856, -73.987333574297 40.58478702011106, -73.98730515244952 40.584739420700295, -73.98727674481647 40.58469182218437, -73.98724832186775 40.5846442281621, -73.98721990722987 40.58459662332725, -73.9871914855432 40.58454903019113)), ((-73.84276363698135 40.66593550893017, -73.84272308513053 40.665901404035615, -73.84267631996562 40.66587227319188, -73.84262438420038 40.66584876528987, -73.84413445109446 40.66513503149058, -73.84415987188694 40.6651711334527, -73.84347032582198 40.66556970728193, -73.84327311668272 40.6657664197354, -73.84282256836369 40.66631219209895, -73.8428181238869 40.66631277316365, -73.84281361458406 40.66631275979815, -73.84280917645411 40.666312153088874, -73.84280494190794 40.6663109712271, -73.84280104095075 40.6663092495106, -73.842797589356 40.66630704032769, -73.84279469103905 40.666304409558194, -73.84279243332685 40.66630143656692, -73.8427908857815 40.66629821150075, -73.84279009311314 40.666294831676694, -73.84279008110148 40.666291397987926, -73.84279084831977 40.66628801399195, -73.84279237205614 40.66628478231672, -73.84279460714191 40.66628180015633, -73.8428378221339 40.66619661353623, -73.8428474669614 40.66615119651575, -73.84284812881346 40.66610519269304, -73.84283979465272 40.666059625938594, -73.84282264777823 40.66601551048336, -73.84279707260686 40.66597382841259, -73.84276363698135 40.66593550893017)), ((-73.98530390401902 40.58398552222316, -73.98528446966765 40.583977992258404, -73.9852323825567 40.58395781114382, -73.98517721448722 40.583934665984735, -73.98518002433471 40.58392994400109, -73.98524548935065 40.58393890813438, -73.98530780537908 40.58394801140889, -73.98534103509027 40.58395286137119, -73.98537011315781 40.5839571083449, -73.9854336683021 40.58396600999162, -73.98548612671338 40.583973717908634, -73.98553825297847 40.58398258923641, -73.98559004001518 40.583992614068805, -73.98564140632664 40.584003788793986, -73.98570705317977 40.58401918782903, -73.98577409602542 40.58403539206752, -73.98584115189664 40.58405159536797, -73.98590819953104 40.58406780403133, -73.98596864260989 40.5840817470322, -73.98602909161973 40.58409569000201, -73.98608954183618 40.584109632039585, -73.98614999916225 40.58412358665352, -73.9862104494292 40.584137528627444, -73.9862708997201 40.5841514768732, -73.98633022885559 40.58416667307955, -73.98638956510507 40.58418186925608, -73.98644890138054 40.584197070805054, -73.98650823768187 40.584212277726515, -73.98656756810658 40.58422747381036, -73.98662690328183 40.584242675267234, -73.986670912086 40.584255800109965, -73.98668926277298 40.58426127742107, -73.98672628069063 40.58427232212344, -73.98674156047379 40.584300992958056, -73.98676179279607 40.584336173346124, -73.98677332046232 40.58435673813082, -73.98678938104408 40.58438537482886, -73.98681696933274 40.58443457630476, -73.98684456475027 40.584483771470964, -73.98687058331649 40.584527104041385, -73.9868966101845 40.58457043750719, -73.98692402913326 40.58461660777475, -73.98695145638567 40.58466279064382, -73.98697887659017 40.58470896720165, -73.98700630273846 40.58475514375343, -73.98703634721696 40.58480324951544, -73.98706639882599 40.58485135436968, -73.98709644221216 40.5848994484086, -73.98712648681948 40.58494755954955, -73.98715652438403 40.58499566527848, -73.98718114359599 40.585033145117315, -73.9872057486623 40.585070620446615, -73.9872308249091 40.58510881984377, -73.98725561369594 40.5851494371092, -73.9872512850728 40.58515348358186, -73.98724549740442 40.585152836363626, -73.98721486838309 40.58511472100129, -73.98718719540368 40.58507915083992, -73.98715095722137 40.5850338774733, -73.98711540400043 40.58498949388918, -73.98707985082483 40.58494512019956, -73.98704513129684 40.58490234952481, -73.98701039645931 40.584859572533944, -73.98697567702051 40.584816800937304, -73.98694095053999 40.584774024826615, -73.98690622292187 40.584731253207686, -73.98687309534704 40.584690983415435, -73.98683997489901 40.58465071451489, -73.98680685567223 40.584610444704204, -73.98678676055164 40.58458572572358, -73.98677116933743 40.584566543677134, -73.98676642215912 40.58456083200971, -73.98676143163715 40.58455523738214, -73.98675619067842 40.584549790411344, -73.98675070637266 40.58454447759024, -73.98674498580559 40.58453930522332, -73.98673904314802 40.58453429042212, -73.9867328807635 40.58452942688322, -73.98672649628605 40.584524732616764, -73.9867199133406 40.584520200421224, -73.98671312247396 40.584515849206554, -73.98670614849111 40.58451167717446, -73.98669899020956 40.58450769062847, -73.98669165471739 40.58450388416624, -73.98664629866562 40.58448167469293, -73.98659618763264 40.58445758165215, -73.98657177875843 40.584445841377175, -73.98654515422879 40.58443306073275, -73.98617181480303 40.58427980671952, -73.9861472187644 40.58427134333712, -73.98607844519212 40.58424942888666, -73.98603041263786 40.584234577023956, -73.98602062140691 40.584231550974174, -73.98596362330824 40.58421357317532, -73.98590661697116 40.58419559984979, -73.98584961893273 40.58417762739746, -73.98584304263879 40.584175591403934, -73.98579217086092 40.5841598448717, -73.9856735806348 40.5841219199013, -73.98555644392098 40.58408146542017, -73.98544084931252 40.58403850395698, -73.98538863689667 40.58401835621685, -73.98533655680991 40.583998174249906, -73.98530390401902 40.58398552222316)), ((-73.9616829875939 40.5847071890215, -73.96165305846367 40.58470195329764, -73.96152726014674 40.58468712554531, -73.96140044116196 40.58467875676866, -73.96127317195827 40.58467688407811, -73.96114602418187 40.58468151577015, -73.96101956949633 40.584692630426616, -73.96101659003811 40.58466522197755, -73.9616379429586 40.58456832854802, -73.96165745507174 40.584563628023815, -73.96169835777775 40.58455760455548, -73.96171880558444 40.58455459281466, -73.96176152979703 40.584548305176746, -73.96178430115803 40.584544951098046, -73.96184773067074 40.58453561303509, -73.96188723235194 40.5845298024584, -73.96196121896935 40.58454979969175, -73.96203292180257 40.58456673794436, -73.96210523741907 40.58458209053206, -73.9621781067702 40.58459583131913, -73.96224878857508 40.58460547215742, -73.96231985411482 40.584613314732266, -73.9623912230611 40.5846193644198, -73.96246281627931 40.584623604083696, -73.9625841761638 40.584625196171025, -73.96270554925577 40.58462429908707, -73.96288385407372 40.584618461096234, -73.963061716528 40.5846072537643, -73.9632388578105 40.58459069321359, -73.9634150026519 40.584568805474895, -73.96358987459782 40.58454162558567, -73.96376319955422 40.584509194889336, -73.96351345684606 40.58459478176979, -73.96333272113077 40.58463533875169, -73.96314975271586 40.58466958566427, -73.96296492966432 40.584697452377995, -73.9627786359415 40.58471887957376, -73.96259125550584 40.58473382414423, -73.96247975922472 40.58474308029244, -73.96236793257106 40.584749552705546, -73.96225588658506 40.58475324862333, -73.96217537780673 40.584753048346656, -73.9620949292591 40.58475078403318, -73.96201462245328 40.58474645120736, -73.96193455188032 40.58474006791129, -73.96185481440234 40.58473163687916, -73.96177548443595 40.58472116624114, -73.9616829875939 40.5847071890215)), ((-73.93177995138545 40.586161662770685, -73.93167491971148 40.58612985599915, -73.93162885067143 40.58611590469684, -73.93156313362911 40.58609614590402, -73.93154188392847 40.585919777374805, -73.93156373138896 40.585926634370246, -73.93162900102402 40.58594712412216, -73.93169427897953 40.5859676021351, -73.93191703619041 40.58603361035865, -73.93214222392496 40.58609461717574, -73.93236966737281 40.58615057203993, -73.93259915865484 40.58620141718252, -73.93283145230204 40.586245011587025, -73.93306560105832 40.58628239569017, -73.93330131432083 40.586313534191504, -73.93353830858086 40.586338382792, -73.9337762967683 40.58635691340199, -73.93377671594848 40.586373738128046, -73.93350527459259 40.58637561654415, -73.93323385547974 40.586378860426436, -73.93311340270701 40.586378351815505, -73.9329930344679 40.586374824572154, -73.93287288426636 40.58636826706774, -73.93275308322053 40.586358691086524, -73.93263375536085 40.586346108409096, -73.93251504480001 40.586330529027364, -73.93239707318718 40.586311982732035, -73.93227996810913 40.58629046779949, -73.9320284920291 40.586229384469895, -73.93177995138545 40.586161662770685)), ((-73.962942689029 40.584395735553336, -73.9643211630607 40.584264314498995, -73.96431888680526 40.58429996372431, -73.96409714935426 40.584342655116956, -73.96387653197135 40.58438859732427, -73.9636571173177 40.58443777326887, -73.96350768400164 40.58447456362705, -73.96335595875975 40.584505424011944, -73.96320234681708 40.58453027079554, -73.9630472569346 40.58454903836355, -73.96289110259092 40.58456167731483, -73.96273430080117 40.584568153560326, -73.96263188562054 40.5845690478367, -73.96252948724344 40.58456735572323, -73.9624272297074 40.58456307275796, -73.96240261147767 40.58456141764699, -73.96232520987117 40.58455621518237, -73.962289886373 40.58455302744726, -73.96225471931045 40.58454892392014, -73.96221975829155 40.58454390912001, -73.96218504819856 40.58453798936556, -73.96217199181423 40.58453540506733, -73.9621506185586 40.58453117097031, -73.96211651425183 40.58452346385515, -73.96209500949752 40.58451784650009, -73.96207369041409 40.5845118356734, -73.96205254753613 40.58450546018888, -73.96206059907072 40.58450427145493, -73.9621014284653 40.5844982586252, -73.96216485788985 40.584488919486596, -73.96222828020909 40.584479581211134, -73.96229327995408 40.58447130513579, -73.96235827967939 40.5844630353273, -73.96242328765726 40.58445476458427, -73.96248828026638 40.5844464892968, -73.96255327876277 40.584438218477075, -73.96261828669182 40.584429948524225, -73.96268433974461 40.58442202737666, -73.96275039396346 40.58441410529096, -73.96281644816608 40.584406184067845, -73.9628495750753 40.584402214469065, -73.962942689029 40.584395735553336)), ((-74.00211736710656 40.596412392828405, -74.00112023154594 40.59618822087379, -74.00071222297831 40.596090645297835, -74.00028219576292 40.59594230226602, -74.00042059630285 40.59580951437741, -74.00093424556465 40.595977660537365, -74.0013288410867 40.59610813337418, -74.00177651339857 40.596263202721524, -74.00214043932553 40.59637068199572, -74.00211736710656 40.596412392828405)), ((-74.01778813381156 40.60313620646747, -74.01776833628882 40.60319721179141, -74.01695711087218 40.602975666349224, -74.01657990407669 40.602872648534124, -74.01657749701988 40.60285220342905, -74.01673661821849 40.60287023133115, -74.01689684359565 40.60288119605634, -74.0170576343295 40.60288506075847, -74.01721844805897 40.602881812008675, -74.0173787436105 40.602871460694935, -74.01753798218057 40.602854042022, -74.01769562733664 40.6028296155112, -74.01785114856138 40.60279826139788, -74.0178859876032 40.602790642967925, -74.01789445309167 40.60280858725342, -74.01786636325654 40.602831388339055, -74.01784135527556 40.602856187197766, -74.01781332788994 40.602891780176144, -74.01779163750248 40.60292985850807, -74.01777665375609 40.6029697683609, -74.01776863522801 40.60301082710158, -74.01776771761625 40.603052333203955, -74.01777391728574 40.60309357525325, -74.01778813381156 40.60313620646747)), ((-74.0016181412908 40.59655391716533, -74.00140887328926 40.59649524997507, -74.00102259343261 40.59644259870519, -74.000376945605 40.5963951072745, -74.00007559660364 40.596393097901455, -73.99994262154226 40.59640969904591, -73.99973520268296 40.596467112473036, -74.00009971171917 40.59611738758013, -74.00034789797094 40.59619892131429, -74.00059922488184 40.596274659632535, -74.00085346084566 40.59634453047431, -74.00111036834592 40.596408470786194, -74.00136971104415 40.59646642021811, -74.00163124787338 40.596518324725736, -74.0016181412908 40.59655391716533)), ((-73.9560552928257 40.58500792328019, -73.95570351906557 40.58501084637778, -73.95564854384955 40.585010201107146, -73.95535177831295 40.58500675333177, -73.95500028681977 40.58499566583964, -73.95495831000973 40.584995750250364, -73.95491633479412 40.5849952222903, -73.95484960785501 40.58499311047571, -73.9547829918161 40.58498945336733, -73.95471655520245 40.584984232981924, -73.95470873273543 40.58498352118651, -73.95467078520763 40.584979723121755, -73.95461854223217 40.58497365998515, -73.95456651372174 40.58496662344344, -73.95451230351046 40.58495796237028, -73.95450792507197 40.58495594796633, -73.95450411596752 40.58495219127429, -73.95450223255382 40.58494615882083, -73.95450359908 40.58494110021986, -73.95450725153975 40.58493725642992, -73.95453921204304 40.584930052283106, -73.95456876839614 40.58492523986827, -73.9545985073415 40.5849211425338, -73.95462840879316 40.58491777017739, -73.95465842668993 40.584915117377555, -73.95468855511889 40.58491319583871, -73.9547187350227 40.58491200463694, -73.95473946142002 40.58491160846826, -73.9547601946723 40.58491155449751, -73.95476773054325 40.58491161960059, -73.9548006293347 40.58491244211809, -73.95483346139578 40.58491413000325, -73.95486620428898 40.5849166778441, -73.9548988072206 40.58492009192444, -73.95493124657695 40.584924359627884, -73.95496346448455 40.584929476429146, -73.9549816524153 40.584932760562566, -73.9549997515738 40.58493632021858, -73.95505346676919 40.584945200595925, -73.95510755973787 40.58495264836257, -73.95516196315408 40.58495865628749, -73.95521659670156 40.584963213532696, -73.95527140722317 40.58496632097766, -73.95532633684184 40.58496797229601, -73.95538130523312 40.58496816835689, -73.95543624388999 40.584966901929434, -73.95549108902038 40.58496418019325, -73.95554578629066 40.58495999682373, -73.95560593883457 40.584956691745646, -73.95564951057065 40.58495428616391, -73.95579857484172 40.584946080400755, -73.95605113448958 40.58492983548034, -73.95630340968798 40.58491126924708, -73.95638752081211 40.58490488137121, -73.95647185142225 40.58490060794654, -73.95655632946799 40.58489845885108, -73.95664084865848 40.5848984232381, -73.95672532277229 40.58490050647821, -73.95680967149677 40.58490470944183, -73.956893781451 40.58491102578301, -73.95695584822471 40.58491375872766, -73.95701790673586 40.58491649073517, -73.95707998061023 40.58491921821226, -73.9570868158908 40.584919524241855, -73.95714204739919 40.584921951056344, -73.95720411419322 40.58492468386686, -73.95726618099636 40.584927410340214, -73.95732605949517 40.58492764061622, -73.95738591636278 40.58492660021403, -73.9574429296954 40.58492439254934, -73.95744662477213 40.5849460857322, -73.95740373030067 40.584949749377536, -73.95706733118212 40.58497280184936, -73.95673036026872 40.584990186125424, -73.95639294994508 40.58500189144471, -73.9560552928257 40.58500792328019)), ((-73.96950036613883 40.58395929752022, -73.9695002859001 40.58395912189677, -73.96945028887939 40.58396353829003, -73.9690445330983 40.58396818895474, -73.9690383039006 40.58393963257004, -73.96946149998446 40.58387417059589, -73.96945958370033 40.58386997454654, -73.96972898875725 40.58383279387678, -73.97112338142605 40.58364034525817, -73.97112336290603 40.583683177764, -73.97091733467681 40.583754513915714, -73.97039293874283 40.583844805170905, -73.96987478693613 40.583925577134075, -73.96960569339902 40.583949811398554, -73.96950036613883 40.58395929752022)), ((-73.86639215375294 40.65107123626263, -73.86723746329253 40.65074507389214, -73.86577850455403 40.65152899280866, -73.86562768497564 40.651362413502454, -73.86582046399147 40.65127683897362, -73.866063126937 40.651189014195396, -73.86639215375294 40.65107123626263)), ((-73.865408156725 40.65221883167338, -73.86529775592172 40.65225479070025, -73.86519033413373 40.652295650131784, -73.86424732641406 40.65271736943805, -73.86576384425753 40.651881106310874, -73.86599108702066 40.65211629944194, -73.86587172463638 40.65212623440339, -73.8657533410975 40.65214151766152, -73.8656363467664 40.65216209566766, -73.86552115204321 40.652187896864476, -73.865408156725 40.65221883167338)), ((-73.96098657456803 40.58476342290196, -73.96125620593804 40.58474752624177, -73.96148688095874 40.58474988752281, -73.96182838022067 40.584786545635616, -73.96183436188171 40.58480481924792, -73.96135200781616 40.584857190059054, -73.96083070720707 40.584909544674204, -73.96050713709248 40.58495054551813, -73.96048057139447 40.58495821064648, -73.96045594451702 40.584969000352544, -73.9604338814645 40.58498263929253, -73.96041494586416 40.58499878006002, -73.96039961751855 40.58501701218306, -73.96038829003821 40.58503687022813, -73.96038124957064 40.58505785000176, -73.96035741104104 40.584840863304905, -73.96098657456803 40.58476342290196)), ((-74.03559649269172 40.6093445280599, -74.03513734117058 40.60948544516539, -74.0347230159382 40.60882009377702, -74.03487200823997 40.60895038295468, -74.03498957137215 40.60903063952798, -74.03511285908674 40.609098557987366, -74.03528232296625 40.609188634789895, -74.0353361187165 40.60921006958709, -74.03544037519156 40.60925620452477, -74.03550273923469 40.6092827245482, -74.03555843071115 40.609315773582146, -74.03559649269172 40.6093445280599)), ((-73.86523515599666 40.651596510466334, -73.86541364038932 40.65148451666944, -73.86554214962409 40.65163238261615, -73.86420889723209 40.65235927077619, -73.86501671973119 40.65175840075527, -73.86523515599666 40.651596510466334)), ((-73.98556336023755 40.583772668619446, -73.98549853064097 40.5837590184221, -73.98547361050416 40.58375394892787, -73.98544114074859 40.583747345780544, -73.98538375796048 40.58373568571859, -73.98532248259161 40.58372178732936, -73.98532046407537 40.583716047133564, -73.98532608378203 40.583711747850806, -73.98540053472216 40.58372126866639, -73.98547119793001 40.58372979387613, -73.98554213314192 40.58373684131724, -73.98561329783317 40.58374240377977, -73.98564596825416 40.583744190002314, -73.98567869671896 40.58374520537458, -73.98571144897836 40.58374542377699, -73.98574420022382 40.58374485961487, -73.98577690793225 40.583743514683974, -73.98580954257369 40.5837413880802, -73.98584207343812 40.58373847439667, -73.98587446390619 40.58373478443525, -73.9859067009824 40.583730326299225, -73.98593872324628 40.583725096379005, -73.98599775489723 40.583714794393195, -73.98605367521516 40.58370520521422, -73.98611069284959 40.583695431533286, -73.98616771164977 40.58368565152051, -73.98622296806059 40.58367629811638, -73.98623001742135 40.583675220134076, -73.98623710335968 40.58367432676309, -73.98624424004907 40.58367361980612, -73.98625138614962 40.583673097457215, -73.98625855937716 40.58367276692261, -73.98626574792164 40.583672620996765, -73.98627293642673 40.58367266688201, -73.9862801178067 40.58367289827385, -73.98628727788551 40.58367332687741, -73.98629442139253 40.58367392927957, -73.98630152942472 40.583674727991244, -73.98630860670886 40.58367571310719, -73.98631563434786 40.58367687742105, -73.98632259344215 40.58367822723416, -73.98632949462204 40.58367976254782, -73.98633632253491 40.58368147255397, -73.98634306773052 40.583683361754105, -73.98634972548416 40.58368543104821, -73.98635628044194 40.58368767503129, -73.9863627314253 40.5836900810959, -73.98636926977318 40.5836926906889, -73.98637567697776 40.58369547406702, -73.98638195894708 40.583698420424746, -73.98638810741308 40.5837015297611, -73.98639411528991 40.58370479667208, -73.98639996131699 40.583708220254756, -73.98640565258326 40.583711790604156, -73.9864111890879 40.583715512222966, -73.98641655666005 40.583719369800605, -73.98642173876289 40.583723366937214, -73.98642674484653 40.5837274991314, -73.98643155129 40.58373175557402, -73.98643617344743 40.58373614076957, -73.98644059596603 40.58374064390998, -73.98644481294231 40.5837452532878, -73.98644882201225 40.583749977007386, -73.98645261845441 40.583754799759426, -73.98645618573416 40.58375971343717, -73.98645954038672 40.583764722545276, -73.98646266469706 40.5837698153748, -73.9864655622107 40.58377498202051, -73.9864850567565 40.58381228220488, -73.98650656302293 40.583854512088664, -73.98651800864407 40.5838769760947, -73.9865280693166 40.583896741968275, -73.98654957681862 40.58393897184382, -73.98655577428133 40.58395113774333, -73.98657147279728 40.583981960902015, -73.98658358104382 40.58400467352323, -73.98655448123789 40.583996445638974, -73.98652199051972 40.58398725108774, -73.98648698408049 40.583977347519344, -73.98643593440131 40.58396517723037, -73.98638488473969 40.58395301232186, -73.98633384336492 40.58394084649112, -73.986270259721 40.58392647105557, -73.98620668437027 40.58391210639208, -73.98614310786803 40.58389773088698, -73.9860795325732 40.583883360749944, -73.98601595612584 40.58386898427394, -73.98595238088572 40.5838546140665, -73.98589825667882 40.583843213110285, -73.9858875440445 40.5838409577842, -73.98585001675937 40.58383305557605, -73.98582271431803 40.58382729516254, -73.9857578775287 40.58381364421016, -73.98569304076696 40.583799987818054, -73.98562820403315 40.58378632508567, -73.98556336023755 40.583772668619446)), ((-73.9584581074772 40.585136935557514, -73.95829100807893 40.5851368750204, -73.9580736171073 40.58513555948082, -73.95789353421073 40.58514291484268, -73.95789517041139 40.58512188821491, -73.95807525790934 40.585107112537244, -73.95849547096788 40.585056553910384, -73.95885937923475 40.58501124076273, -73.95985820136806 40.584853870044505, -73.95986183331854 40.584901317203865, -73.9597336956792 40.58492080832937, -73.95934925409502 40.58502951925221, -73.95911126561487 40.5850964166557, -73.95901296170743 40.58510621354744, -73.9589462304288 40.585116536740024, -73.95891723556984 40.58512102179041, -73.95891700305712 40.5851207290371, -73.95889776581681 40.58512348856562, -73.95882475596478 40.585130883640154, -73.95871605745866 40.58513702853105, -73.95862520610922 40.58513823317084, -73.9584581074772 40.585136935557514)), ((-73.9277624425935 40.584722333166916, -73.92755799506261 40.58466929596521, -73.92735268107846 40.58461824350664, -73.92699950041842 40.58453332898203, -73.92736641595907 40.58449316311524, -73.92765338661832 40.58458210971172, -73.92790210083557 40.584655891082406, -73.92817807154897 40.584741441692316, -73.92826660206401 40.58476869372031, -73.92865657478865 40.584888736822386, -73.92863426907397 40.58494765145088, -73.92860689531561 40.584939861123075, -73.92828703618277 40.584855797041186, -73.92796640939899 40.58477346869704, -73.9277624425935 40.584722333166916)), ((-73.8663674272218 40.651835098400255, -73.86630911168176 40.651928997921026, -73.86625839944422 40.652025425002904, -73.8659998363875 40.65176199707886, -73.86696710860112 40.651276247485534, -73.86686306811808 40.65134341023145, -73.86676458103922 40.6514152665148, -73.86667201442447 40.65149155022177, -73.8665857069916 40.651571980797705, -73.86650598213086 40.65165625875931, -73.8664331313377 40.65174407287931, -73.8663674272218 40.651835098400255)), ((-73.95730776088482 40.58525252384527, -73.95749808145601 40.585235897795364, -73.95752429999787 40.58540519783103, -73.95680523104001 40.58548608224355, -73.95679535093281 40.58544509389713, -73.9567968756802 40.58542161331663, -73.95680348509939 40.585398650647825, -73.95681499451034 40.585376839789056, -73.95683108695997 40.58535678577169, -73.95685131678022 40.585339043149, -73.95687512495306 40.58532410159382, -73.95690185092954 40.58531237509714, -73.95693075744323 40.58530418846954, -73.95711853831419 40.585275300566245, -73.95730776088482 40.58525252384527)), ((-73.98762651988854 40.58523393235242, -73.98762320962001 40.585230755849324, -73.98759475747488 40.585191522372746, -73.98758522543461 40.58517825392964, -73.98756729115463 40.58514860585435, -73.98757589577482 40.58514381690027, -73.98759169003597 40.58514652287933, -73.98760385576597 40.58514891328149, -73.98761612431713 40.585150993913366, -73.98762847442885 40.58515276027003, -73.98764089074552 40.58515421234973, -73.98765338035531 40.58515534384955, -73.98766589364855 40.58515615386365, -73.98767844243636 40.58515664509488, -73.98769100663898 40.585156814839486, -73.9877035779878 40.5851566639971, -73.9877161269539 40.58515618806191, -73.98772865471662 40.58515539603934, -73.98774113056552 40.58515428522448, -73.98775356276929 40.58515285291676, -73.98776591352862 40.585151105415754, -73.98777818284331 40.58514904362202, -73.98779035653882 40.585146668434646, -73.98780242634633 40.58514398165377, -73.98781435801087 40.58514098687795, -73.98782616216094 40.58513769401405, -73.98783904485063 40.585133732174064, -73.98785173506745 40.58512943351654, -73.98786424107657 40.585124814251756, -73.98787653334827 40.58511987437664, -73.98788858943813 40.585114624695215, -73.98790042470098 40.585109067010194, -73.98791199424925 40.58510321572535, -73.98792330635176 40.58509706723945, -73.98793433029678 40.58509062695259, -73.98794506726257 40.58508391017377, -73.98795551606773 40.5850769187041, -73.98796563418688 40.58506966784802, -73.98797542634456 40.58506215850671, -73.98798488781493 40.58505439698336, -73.98799399615085 40.585046409390884, -73.98800275607988 40.58503818042099, -73.9880111416109 40.58502973888783, -73.98801914329505 40.58502108208884, -73.98802676112878 40.585012229835726, -73.98803398093838 40.58500318032596, -73.98804081098818 40.584993956073596, -73.9880463935228 40.584985783502574, -73.98805160046545 40.584977474913146, -73.98805644717115 40.58496903300855, -73.98806090883167 40.58496047759776, -73.98806498780935 40.584951809581604, -73.98806867583394 40.58494304066606, -73.98807198117295 40.584934176255096, -73.98807488728704 40.58492523255663, -73.98807739535533 40.58491622217795, -73.98807949238439 40.58490714871994, -73.98808119726962 40.584898031996076, -73.98808248874963 40.584888874705726, -73.9880833680034 40.58487968945638, -73.98808384920424 40.58487048165267, -73.98808390872487 40.58486127380523, -73.98808356428304 40.58485206591582, -73.9880828135145 40.58484286969112, -73.98808165051065 40.584833701339825, -73.98808115257461 40.584830785392846, -73.98811806636903 40.584812713006166, -73.9881581082959 40.584799050794075, -73.98816528348692 40.584801600015155, -73.98821456370602 40.584819509290526, -73.98826385103855 40.58483741854549, -73.988294846679 40.58484867555059, -73.98830716674794 40.58485315690989, -73.98831313131049 40.58485532777854, -73.98836314750667 40.584873096583316, -73.98844517739654 40.58490326879992, -73.98852581439027 40.58493554354135, -73.98860498290388 40.5849698865831, -73.98868257310032 40.585006252891176, -73.98873923906736 40.585033887422455, -73.98879573617724 40.58506149399301, -73.98885223333382 40.58508910053572, -73.9889087305371 40.58511670705058, -73.98893018496166 40.585127175904944, -73.98896937081226 40.58514770890922, -73.98896829271368 40.58515291923499, -73.98896271844819 40.58515453784103, -73.9889133804737 40.585133193384166, -73.98884840351903 40.58510580127407, -73.98878245427011 40.585079812948464, -73.98877791180983 40.58507766565669, -73.9887561628646 40.58506984878695, -73.98871361341695 40.5850545717355, -73.98868684232397 40.585045484620935, -73.98865771241138 40.58503645940337, -73.98862819849876 40.58502816536559, -73.98859835255632 40.58502060701504, -73.98856819702446 40.585013791557834, -73.9885377614291 40.58500773430561, -73.9885070894729 40.585002435262545, -73.9884761953279 40.5849979007335, -73.98844514041217 40.58499414423238, -73.98841392945006 40.58499116125687, -73.98838261559312 40.58498895451377, -73.98837039049414 40.58498835172729, -73.98835815118406 40.58498796236216, -73.98834590356654 40.58498779812574, -73.98833102423588 40.58498789837472, -73.98831615311539 40.58498833001533, -73.98830547634799 40.5849888404265, -73.98829482199334 40.58498951923687, -73.98827713239062 40.58499102310879, -73.9882595324744 40.58499299525944, -73.98824202815281 40.58499542128103, -73.98822464895154 40.58499832008763, -73.98820740786722 40.58500166916759, -73.98819033206588 40.585005473026364, -73.98817343099755 40.585009726261866, -73.98815674600411 40.585014424375714, -73.98814027236362 40.58501954935719, -73.98812404196566 40.58502511291644, -73.98810808316014 40.585031104250156, -73.98809265220825 40.58503783046359, -73.9880773653218 40.58504475480508, -73.9880212581429 40.585070775000936, -73.98796194252839 40.58509848241436, -73.98790261859754 40.585126183492555, -73.98785556695819 40.58514816301064, -73.987854046648 40.585148872462504, -73.98784328752929 40.58515389084295, -73.98778397176828 40.58518159186067, -73.98772464178275 40.58520929914978, -73.98769030774378 40.58522532749734, -73.98766317240559 40.585238192168035, -73.98765798784632 40.58524005749604, -73.98765704169351 40.58524019157242, -73.98765398589126 40.585240626197006, -73.9876511450702 40.58524102932625, -73.98764697906095 40.58524089289938, -73.98764324890591 40.58524077002707, -73.98763601565526 40.58523905465207, -73.98763052360788 40.58523659202955, -73.98762651988854 40.58523393235242)), ((-73.95912252208862 40.584647082761755, -73.95947762965056 40.5846165087982, -73.95948858848985 40.58465558548514, -73.95819990138692 40.58484211492371, -73.95819627293291 40.584789086266554, -73.95828047994166 40.58477237163533, -73.9584745228859 40.58473336910681, -73.95869785044475 40.58469437678121, -73.95883330542436 40.58468047087837, -73.95912252208862 40.584647082761755)), ((-73.96704042010614 40.58460536619021, -73.96758975722805 40.58459600392592, -73.96696914723923 40.58488426131052, -73.96704042010614 40.58460536619021)), ((-73.84216787088906 40.666982241406345, -73.84211262354343 40.66699950055122, -73.8420549611013 40.66701132083189, -73.84201557091716 40.666870105266646, -73.84199728284435 40.66676420813994, -73.84204156499928 40.66678277458072, -73.84208899713597 40.666796086307635, -73.84213851085661 40.66680384377957, -73.84218899252268 40.66680587346739, -73.84223930336115 40.66680212788175, -73.84228831256209 40.666792692822845, -73.84233491622157 40.66677777930147, -73.84236999437665 40.66676318856374, -73.84240163698085 40.6667445930112, -73.8424290635947 40.66672245174215, -73.84246212951876 40.66673862979447, -73.84234795074427 40.666865519249555, -73.84231058445144 40.66690098803736, -73.84226764642268 40.66693258955683, -73.84221982141418 40.666959818650206, -73.84216787088906 40.666982241406345)), ((-73.95660833221878 40.58524715946536, -73.9567816509435 40.585232436389624, -73.95661589030357 40.58528763905656, -73.95652972262958 40.585313446113986, -73.95644689745268 40.58534497990319, -73.95636806811552 40.58538199033384, -73.95634170599467 40.5853934538917, -73.95631376148795 40.585402480024875, -73.95628462092824 40.585408942805905, -73.95617666713129 40.58542938409223, -73.95606684684543 40.58544286621731, -73.95595593266373 40.585449293115865, -73.95595356896476 40.585447718994985, -73.95595157397679 40.5854458712562, -73.95595000200063 40.585443801250214, -73.9559488931615 40.585441562123336, -73.9559482793105 40.58543921602391, -73.95594817576253 40.58543682419339, -73.95594858601841 40.58543445147088, -73.95594949822338 40.585432162689514, -73.95595088871451 40.58543001727479, -73.95603854504384 40.58538987668577, -73.95612907607503 40.585353634593794, -73.95622218408268 40.58532140974779, -73.9563175630837 40.585293308286985, -73.95638802231507 40.585274629375526, -73.95646033054072 40.58526064825295, -73.95653394908709 40.58525146917268, -73.95660833221878 40.58524715946536)), ((-73.95953594121339 40.58504633038778, -73.9598178655261 40.58496549296363, -73.959982625354 40.58492089529816, -73.9601290714454 40.58489303718072, -73.9601436178944 40.58505491585807, -73.96012328184585 40.5850405085282, -73.96010034336136 40.58502858933846, -73.96007531963657 40.58501942592243, -73.96004877632971 40.585013226496464, -73.96002131457446 40.58501013084986, -73.9599935544447 40.585010208538165, -73.95953593106746 40.58506307562159, -73.95953594121339 40.58504633038778)), ((-73.95457691831598 40.58487692188968, -73.95458332798992 40.58487429399375, -73.95458961966077 40.584871496752385, -73.95459578505601 40.584868536465954, -73.95460180409127 40.58486541943029, -73.95460768266935 40.5848621501503, -73.95461341370691 40.58485872322005, -73.95461898419936 40.58485515574444, -73.9546243906104 40.58485143691576, -73.95462963529148 40.5848475829444, -73.95463468871313 40.58484359381877, -73.95463956504581 40.584839474947564, -73.95464425838237 40.58483522812952, -73.95464875808312 40.58483086686839, -73.95465306061071 40.58482638215747, -73.95465714823146 40.584821797403464, -73.95466102921934 40.58481710450493, -73.95466470474986 40.58481231156708, -73.95466815828419 40.584807422185484, -73.95467138508549 40.58480245436877, -73.95467439579298 40.58479739551381, -73.95467717149488 40.584792264524204, -73.9546797192754 40.58478706590531, -73.95468383110821 40.58477986693956, -73.95468953474028 40.58477503427724, -73.95469564153566 40.58477137785752, -73.95470036880933 40.584769327427885, -73.95470689610556 40.58476740738301, -73.95471525028219 40.584766073398285, -73.95472223351891 40.58476588433885, -73.95472840479637 40.584766420781165, -73.95473369697447 40.58476740713868, -73.95480045733336 40.58479659147796, -73.95483267651181 40.584810202056055, -73.9548377340737 40.584812295060146, -73.9549193408447 40.58484481259992, -73.95500226958774 40.58487534674562, -73.95502608635194 40.584884850291914, -73.95502828707806 40.58488982654673, -73.95502564449365 40.584895519523656, -73.95502027407402 40.58489844052128, -73.95498714811463 40.584896438291636, -73.95496218294572 40.58489438792176, -73.95491002031707 40.58489009447812, -73.95486210379077 40.584886152082206, -73.95481183567573 40.58488201783043, -73.95478835281493 40.58488008597435, -73.9547830366529 40.584879617411055, -73.95476327066861 40.58487811386075, -73.95474345120029 40.58487710017087, -73.9547231104983 40.584876580659696, -73.95470275172839 40.5848765780384, -73.95468240086804 40.58487710402397, -73.95466209454483 40.58487814152102, -73.95464184573966 40.58487970764456, -73.95462167100382 40.58488177988816, -73.95460160694232 40.584884374475635, -73.95458166064911 40.584887480603655, -73.95456186756275 40.5848910928831, -73.95454223712854 40.58489521672096, -73.95452280597729 40.5848998305192, -73.95449941466175 40.584903963667365, -73.95452926396746 40.584890434309344, -73.95453631300083 40.584889043088104, -73.95454329719182 40.58488747173604, -73.9545502000118 40.584885708539815, -73.95455702852749 40.58488378321952, -73.95456375441032 40.58488166694724, -73.95457039182325 40.584879375937945, -73.95457691831598 40.58487692188968)), ((-73.95821878892264 40.58522077218264, -73.95772071387087 40.58526299384197, -73.95770810823852 40.585207093699864, -73.95821627809832 40.58519185995783, -73.95821878892264 40.58522077218264)), ((-73.95738986598046 40.58472704112756, -73.9574075647447 40.584725120569175, -73.95742770275608 40.58486197701533, -73.9569903479904 40.58483868418141, -73.95727352048826 40.58480795049861, -73.95729607242576 40.58480281058878, -73.95731736564657 40.584795164950044, -73.95733692638876 40.58478518360613, -73.95735431629171 40.58477309062566, -73.95736914657613 40.58475915602242, -73.957381085134 40.584743690354934, -73.95738986598046 40.58472704112756)), ((-73.95799405580364 40.58478508713208, -73.95777155102894 40.5848293365498, -73.95763502697926 40.58483699657551, -73.95760984295585 40.58468279151602, -73.95761997111134 40.5847039125329, -73.95763454266549 40.58472346557455, -73.95765315518275 40.58474091107722, -73.9576752975194 40.5847557697721, -73.95770035808712 40.5847676298927, -73.95772764728308 40.58477616699482, -73.95775641284456 40.58478114486314, -73.95799154142485 40.584763884283106, -73.95799405580364 40.58478508713208)), ((-73.8848021257225 40.630151425105325, -73.88480034467715 40.630149941064445, -73.88480034604724 40.63014983210288, -73.8848021257225 40.630151425105325)))",B166,69230,B166,B-15,B-15,B-15,B-15,Belt Pkwy. bet. Verrazano Bridge and Cross Bay Blvd.,"305, 310, 311, 313, 315, 318, 410","32,42,43,46,47,48",75,"11208, 11209, 11214, 11223, 11228, 11234, 11235, 1",B,760.43,False,Shore Parkway,No,100005119,PARK,,19380512000000.00000,,DPR/CDOT,True,Belt Parkway/Shore Parkway,Y,Belt Parkway/Shore Parkway,Large Park,Parkway,http://www.nycgovparks.org/parks/B166/,Yes,"45, 46, 41, 59, 60, 23","15, 19, 23","11, 8",{7ED3880A-FDBB-4B47-B8C4-F4E01BA155AC} +"MULTIPOLYGON (((-73.93135505855416 40.85972020674398, -73.93143782713027 40.85945035556102, -73.93192030150612 40.85959102952407, -73.9319768038993 40.85960740855277, -73.93198772951907 40.859610055231684, -73.93199875623347 40.8596124291206, -73.93200993032248 40.8596145068339, -73.93202114504368 40.859616285607224, -73.93203245020115 40.85961777537533, -73.93204384580673 40.859618964431775, -73.93205525951632 40.859619847331025, -73.93206671977953 40.85962043939815, -73.9320781945966 40.85962071720153, -73.93208964361934 40.85962070232921, -73.93210111904325 40.85962038580699, -73.9321125864745 40.859619765813676, -73.93212400202871 40.8596188423234, -73.9321353704473 40.85961761804047, -73.93214664309258 40.85961610194119, -73.93215787334061 40.859614290455056, -73.93216903748028 40.85961217366266, -73.93218005484026 40.85960977042698, -73.93219097879026 40.859607083480824, -73.93220175833797 40.85960410468991, -73.9322123958315 40.859600857468365, -73.93222290078583 40.85959731570763, -73.93223322929478 40.85959350099369, -73.93224337779178 40.85958942142893, -73.93225332493142 40.859585073398854, -73.9322630600181 40.85958047760856, -73.93227259136873 40.85957561965517, -73.93228189761683 40.859570516635436, -73.93229097877247 40.8595651586441, -73.93229976362552 40.859559591564356, -73.93230831505613 40.85955379652293, -73.93231663309547 40.85954774290319, -73.93232461922943 40.85954150088565, -73.9323323458294 40.859535048901044, -73.93233975596382 40.85952838781657, -73.93234685908274 40.8595215554584, -73.93235364927878 40.859514529310914, -73.93236012772607 40.859507321081146, -73.93236624932543 40.85949995955841, -73.9323720472863 40.8594924447623, -73.93237749315459 40.85948476587029, -73.93238258213935 40.85947696880459, -73.93238732495004 40.85946901935291, -73.9323916942654 40.859460958921815, -73.9323951837659 40.859453830883155, -73.93240048128504 40.859443903378384, -73.93305779846972 40.85820875326748, -73.9331194351696 40.858088634744774, -73.9335351535389 40.8572784729506, -73.93406096938477 40.857435596939084, -73.93410498520946 40.85735266977814, -73.93422383293495 40.8573868670976, -73.93385256189278 40.85790347617685, -73.93380019667127 40.85797356555069, -73.93389471634327 40.85800061465564, -73.93399743752222 40.85803001055135, -73.9338291738379 40.858254752276444, -73.93377891822992 40.85832249886935, -73.93440375912579 40.85850130964122, -73.9344013293816 40.85850446537976, -73.93432854287651 40.858627589471915, -73.93405733158798 40.859145245649934, -73.93405555389621 40.85914863768202, -73.9337914379299 40.859071958235745, -73.93367636170912 40.85930149650409, -73.93433756882357 40.859499544063034, -73.93459276704303 40.8594758674444, -73.93468752427805 40.85948935914251, -73.93475574238978 40.859490760181515, -73.93481892546227 40.85948635557539, -73.9348725019643 40.8594754061509, -73.93491936397187 40.859462262021, -73.93496391906575 40.85944428724148, -73.93501195353473 40.8594170951835, -73.93507070875377 40.85937890964839, -73.93532216706768 40.859203548897796, -73.93547851592797 40.859079800988006, -73.93559139595774 40.8589802346908, -73.93571387258578 40.85885667555676, -73.93636943401202 40.859052821812476, -73.9362544739004 40.85914208070586, -73.93615889509238 40.859197593523405, -73.93560492403175 40.85951304533884, -73.93559911274619 40.85951632348234, -73.93559332160292 40.859519622348024, -73.93558755060194 40.859522941935964, -73.93558180211365 40.85952628404844, -73.93557607376935 40.859529645082176, -73.93557036675165 40.85953302863983, -73.93556468106318 40.85953643201986, -73.93555901670304 40.85953985612281, -73.9355533748573 40.85954330094934, -73.93554775552678 40.85954676559892, -73.9355421563386 40.85955025097081, -73.93553657966476 40.85955375706626, -73.93553102550618 40.859557282984824, -73.93552549267591 40.85956082962632, -73.93551998354695 40.85956439609154, -73.93551449574808 40.85956798147877, -73.93550903283483 40.85957158849139, -73.93550359125254 40.859575213525446, -73.93549817337063 40.85957885928384, -73.93549277681794 40.85958252486468, -73.93548740396655 40.8595862102693, -73.93548205481733 40.8595899145972, -73.93547672937024 40.859593637848384, -73.93547142762363 40.85959738182391, -73.93546614839403 40.85960114382154, -73.9354608940517 40.859604925643666, -73.9354556634116 40.85960872638913, -73.93545045647454 40.8596125451574, -73.93544527442482 40.85961638375016, -73.93544011607727 40.85962024126621, -73.93543498143276 40.85962411680513, -73.93542987286169 40.859628012169196, -73.93542478799453 40.85963192465564, -73.9354197268295 40.8596358560654, -73.93541469173881 40.85963980639982, -73.93540968153715 40.85964377475778, -73.93540469622464 40.859647761139236, -73.93539973698813 40.85965176464441, -73.93539480145297 40.8596557879734, -73.93538989317985 40.8596598284268, -73.93538500861071 40.859663886002565, -73.93538015130186 40.8596679625037, -73.93537531888386 40.85967205522739, -73.93537051254015 40.859676166875744, -73.9353657322734 40.85968029474736, -73.93536097808175 40.85968444064323, -73.93535624996619 40.859688603662754, -73.93535154792755 40.85969278290559, -73.93534687196407 40.859696980172615, -73.93534222326268 40.859701194564046, -73.93533760063733 40.859705426079245, -73.93533300527498 40.85970967381832, -73.9353284371756 40.85971393778133, -73.93532389515316 40.859718217967604, -73.93531938039196 40.85972251617879, -73.93531489289462 40.85972682971342, -73.93531043266027 40.85973115947198, -73.9353059996889 40.85973550545448, -73.93530159516573 40.85973986856208, -73.93529721672121 40.859744246091964, -73.9352928667258 40.85974863984649, -73.93528854399335 40.85975304982496, -73.93528424852396 40.85975747602735, -73.93527998150445 40.85976191755392, -73.93527574412272 40.8597663726043, -73.93527153281708 40.85977084477846, -73.93526735114743 40.85977533227739, -73.93526319792859 40.859779834200026, -73.93525907197366 40.85978435144613, -73.93525497565477 40.85978888401702, -73.93525090778672 40.859793431011624, -73.93524686836861 40.85979799333038, -73.93524285740223 40.85980256917229, -73.93523887488584 40.85980716033835, -73.93523492200634 40.85981176592876, -73.93523099876374 40.859816385943546, -73.93522710397292 40.85982101948149, -73.93522323881898 40.859825667443836, -73.9352194021159 40.85983032982979, -73.93521559623676 40.85983500574033, -73.93521181999446 40.8598396960752, -73.93520807220486 40.85984439903284, -73.93520435523826 40.859849116415454, -73.93520066791031 40.85985384642145, -73.93519700903413 40.8598585899507, -73.93519338098186 40.8598633470045, -73.93518978256745 40.85986811758218, -73.93518621497776 40.85987290078391, -73.93518267821293 40.85987769660971, -73.93517917108674 40.85988250505893, -73.93517569478453 40.85988732703271, -73.93517224812102 40.85989216162987, -73.93516883228322 40.859897007950636, -73.93516544608411 40.85990186689481, -73.93516209189589 40.85990673846376, -73.93515876853249 40.859911622656774, -73.9351554748105 40.85991651677174, -73.93515221309852 40.85992142441199, -73.93514898102616 40.85992634377513, -73.93514578215166 40.859931274863264, -73.9351426129168 40.859936217674324, -73.93513947450855 40.8599411713085, -73.93513636811208 40.85994613666691, -73.9351332937274 40.859951113749666, -73.93513025017023 40.859956100755056, -73.93512723743878 40.85996109948403, -73.93512425672004 40.859966109036854, -73.93512130801402 40.85997112941345, -73.9351183901355 40.85997615971269, -73.93511550426884 40.85998120173626, -73.93511265160178 40.85998625368382, -73.93510982976228 40.859991315553984, -73.93510703993552 40.85999638824803, -73.93510428212146 40.86000147176587, -73.93510155632278 40.860006563406024, -73.93509886253777 40.86001166496955, -73.9350962019515 40.86001677735758, -73.93509357219375 40.860021898767755, -73.93509097444964 40.86002703010128, -73.93508841109126 40.86003217135949, -73.9350858797474 40.86003732164058, -73.93508338041903 40.86004248004398, -73.9350809131043 40.86004764837079, -73.93507847899106 40.86005282482058, -73.93507607689149 40.86005801119377, -73.93507370799341 40.86006320568996, -73.93507137229687 40.86006840830923, -73.93506906980096 40.860073619952, -73.93506679932057 40.860078839717204, -73.93506456085558 40.86008406760475, -73.93506235796521 40.86008930271618, -73.93506018590334 40.86009454684983, -73.93505804704304 40.86009979910655, -73.93505594257122 40.860105058586534, -73.93505387011585 40.86011032528833, -73.93505183204896 40.86011559921346, -73.93504982718275 40.860120882162086, -73.93504785433475 40.860126170531665, -73.9350459158744 40.86013146702497, -73.93504401061656 40.86013677074085, -73.93504213856208 40.86014208077881, -73.93504030089704 40.86014739713953, -73.93503849643363 40.86015272162333, -73.93503672517541 40.86015805062826, -73.93503498830574 40.860163386856435, -73.93503328345429 40.86016872850551, -73.9350316141767 40.86017407827906, -73.93502997810332 40.8601794334742, -73.93502837404912 40.86018479318979, -73.9350268055705 40.86019015922877, -73.93502527148054 40.86019553249111, -73.93502377059666 40.860200909374015, -73.93502230410225 40.8602062925797, -73.93502087081224 40.86021168120704, -73.93501947191356 40.860217074356164, -73.93501810740534 40.86022247292755, -73.9350167761014 40.86022787692056, -73.93501547919064 40.860233283634436, -73.93501421666942 40.860238696671054, -73.93501298853957 40.8602441142295, -73.93501179361586 40.86024953540858, -73.93501063426963 40.86025496111016, -73.93500950812864 40.860260391332844, -73.93500841637997 40.860265825176846, -73.93500735902266 40.86027126354268, -73.93500633605854 40.86027670462931, -73.93500534629884 40.86028215113762, -73.93500439330532 40.86028759946756, -73.93500347351805 40.86029305141819, -73.93500258693702 40.860298506989466, -73.9350017359353 40.86030396528223, -73.935000919325 40.86030942809683, -73.93500013710874 40.86031489273175, -73.93499938928485 40.860320360988034, -73.93499867585516 40.86032583106463, -73.93495660484545 40.86058529443336, -73.9349293672157 40.86077867646306, -73.93490639325289 40.86091524265542, -73.93486742089087 40.86106677586192, -73.93483542283063 40.861145376889624, -73.93478925023605 40.86123077760254, -73.93358683148435 40.86312830127267, -73.9335230493079 40.86323488164018, -73.93345872066219 40.86336226206985, -73.93334841991236 40.86361626349976, -73.93328223645872 40.86380294090228, -73.93313826289365 40.86424272697943, -73.93307369655378 40.8644631582328, -73.93293993252006 40.86487748408835, -73.93292144591365 40.86493437347823, -73.93289274216743 40.8650084868901, -73.93286095361618 40.86508215815956, -73.93282622647934 40.86515505869062, -73.93278858690857 40.86522712456106, -73.93274806818008 40.8652982846488, -73.93270470475507 40.865368469633246, -73.93265774701324 40.8654388109891, -73.9326273635333 40.86548795907827, -73.93259735426359 40.8655365013482, -73.93256732834566 40.86558504179922, -73.93253731661237 40.86563358765326, -73.93250730483524 40.86568213349907, -73.93247729420324 40.8657306766359, -73.93244727285278 40.86577921885775, -73.93241725738845 40.865827761975325, -73.93235723581493 40.86592485089283, -73.93232721428832 40.86597339398228, -73.93229719745429 40.86602194517063, -73.93226718651368 40.86607049005083, -73.9322371767274 40.86611902321716, -73.9321771368281 40.8662161192294, -73.9321465019396 40.86626567405895, -73.9321278436359 40.86630030851319, -73.93210864194252 40.86633271843581, -73.93208797701647 40.86636461061299, -73.93206587026437 40.86639592922623, -73.93204233712068 40.86642665897548, -73.93201742863296 40.86645675756691, -73.93199116976788 40.86648616828357, -73.93196358188764 40.86651487943079, -73.93192552284691 40.866551248458826, -73.93191695177092 40.8665591001712, -73.93189934250309 40.86657456378827, -73.9318845126629 40.86658634514154, -73.93186882534168 40.86659799631617, -73.93185263073282 40.866609253675236, -73.93183596683014 40.86662008212183, -73.93181882769822 40.86663048615475, -73.93180124420185 40.86664044237927, -73.93178322464634 40.866649948999175, -73.93176479632241 40.86665899792592, -73.93174599009494 40.86666756576489, -73.93172680714676 40.86667565611858, -73.93170728545164 40.86668325370095, -73.93168743213624 40.86669034951111, -73.93166727448407 40.8666969426646, -73.93164685521471 40.866703016977745, -73.93162616484742 40.86670856434041, -73.93160523777358 40.866713592877254, -73.93158411790654 40.86671807920137, -73.93156278507232 40.86672203230572, -73.93154131282311 40.866725444129294, -73.93151970354572 40.866728301166134, -73.9315119047265 40.86672912408715, -73.93149796434658 40.8667306142263, -73.93147614505712 40.866732372533335, -73.93145426821712 40.86673357429975, -73.93143149280203 40.8667342397369, -73.9314058076673 40.866734915146225, -73.93138098914163 40.86673491659869, -73.93135618197019 40.866734260695424, -73.93133140986248 40.8667329618583, -73.93130672264539 40.866731013813656, -73.93128214166254 40.86672842467854, -73.93125769183385 40.8667251854631, -73.9312333909378 40.86672131058582, -73.93120928404446 40.866716805476514, -73.93116176850869 40.86670591003477, -73.93113840373854 40.866699536838055, -73.93111535038138 40.86669255689274, -73.93109261792249 40.866684974707084, -73.93107027751178 40.86667681103507, -73.93102670641821 40.86665873198914, -73.93100557771785 40.86664884549225, -73.93098489678336 40.86663841086131, -73.93096470629781 40.866627447032364, -73.9309450347177 40.86661596572907, -73.93092669880171 40.86660446811265, -73.93088600299647 40.86657507338459, -73.93083470837857 40.866538009125264, -73.93080164472599 40.86651413083686, -73.93075947572795 40.86648366269739, -73.93071879074802 40.86645426611518, -73.93020723669679 40.8660283658408, -73.93016083164012 40.86599190486159, -73.93011274581781 40.86595658556657, -73.93006314043734 40.86592251430913, -73.93001206055455 40.86588970822389, -73.92996292606625 40.865860254017925, -73.92995957014779 40.865858237586004, -73.92990568700934 40.86582810150385, -73.92985053918402 40.865799356784194, -73.92979413732073 40.865772026844446, -73.92973716669098 40.86574642456992, -73.92969387278218 40.86572737806015, -73.9296491771536 40.86570916633374, -73.92960372951865 40.86569207704152, -73.92955756900864 40.8656761201119, -73.92951074779668 40.86566131088421, -73.92946331447806 40.86564768270553, -73.92941532718612 40.865635223003736, -73.92936682265338 40.86562396601931, -73.92931785780559 40.86561391899034, -73.92926850024583 40.86560508736069, -73.92902238573609 40.86557042677228, -73.928935956828 40.86555851773028, -73.92865127793195 40.86552517162037, -73.92836553032964 40.865497571968824, -73.92808157712096 40.86547592316259, -73.92794006056033 40.86532193580595, -73.92907779230909 40.86471652207924, -73.92972236110052 40.86414237073302, -73.92999961937434 40.863813521928094, -73.930019430251 40.86378524325779, -73.9300284078966 40.863770760722325, -73.93004483801018 40.8637404800094, -73.93006549285778 40.86369125825092, -73.93018621177237 40.86340371941092, -73.93019384195524 40.863382397726475, -73.93019850811113 40.86336550015595, -73.93020195611663 40.86334973196311, -73.93020375633294 40.863338734469046, -73.93020598809038 40.863316632395154, -73.93020648588076 40.863303433315956, -73.93010983303495 40.8625544553573, -73.93016126607964 40.86212320131208, -73.93026690103555 40.861801232844975, -73.93051136217213 40.86140084052361, -73.93100960089154 40.86053682288772, -73.93135505855416 40.85972020674398)), ((-73.93464886804861 40.858613404029946, -73.93467457697847 40.858581652883906, -73.9355020426544 40.85881044051073, -73.93543660602428 40.858875498570406, -73.9353761442523 40.85893127712272, -73.93535144516835 40.85895415645587, -73.93530391032209 40.858993721676846, -73.93524487446615 40.85904532538448, -73.93516530141285 40.85910615565441, -73.9350889956616 40.85915981439995, -73.93503454795714 40.85919964486591, -73.93498395464225 40.85923240862786, -73.93492614959388 40.859268103899005, -73.93489826555373 40.85928505701087, -73.9348848045999 40.859292797234524, -73.93485466305933 40.85930655051957, -73.93482461895383 40.85931647766776, -73.93479924828418 40.85932236604814, -73.93477120974691 40.85932627723855, -73.93473590267135 40.859326980365815, -73.93469650454558 40.859323215634596, -73.93464355287465 40.859310343757016, -73.93445448494919 40.85926167485184, -73.93444148906599 40.859258397787166, -73.93443105070149 40.85925472235679, -73.93441065461367 40.85924467479742, -73.93439501368327 40.85923194197435, -73.93438289881354 40.85921687708325, -73.93437657932789 40.859205072561316, -73.93437293653024 40.8591850850036, -73.93437550511875 40.85916264624183, -73.93438669400386 40.8591365005607, -73.93458738212263 40.85871880582524, -73.93461379210031 40.8586677242599, -73.93464886804861 40.858613404029946)))",M029,5022,M029,M-12,M-12,M-12,M-12,"Riverside Dr To Broadway, W 192 St To Dyckman St",112,10,34,10040,M,67.213,False,Fort Tryon Park,No,100005131,PARK,20100106000000.00000,19311228000000.00000,4565 BROADWAY,DPR,True,Fort Tryon Park,Y,Fort Tryon Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M029/,No,71,31,13,{E754867B-DD12-48E4-9479-44B9CA41340B} +"MULTIPOLYGON (((-73.85130987345896 40.73098861415545, -73.85204921471149 40.730768087910775, -73.85230203431186 40.73128534552873, -73.85157540173601 40.7315017096031, -73.85130987345896 40.73098861415545)))",Q319,5333,Q319,Q-06,Q-06,Q-06,Q-06,Yellowstone Blvd. bet. 64 Rd. and 65 Ave.,406,29,112,11375,Q,1.013,False,Annadale Playground,Yes,100000408,PARK,20090423000000.00000,19511214000000.00000,64-35 102 STREET,DPR/DOE,False,Annadale Playground,Y,Annadale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q319/,No,27,16,6,{342DAF70-326D-43B4-94FD-0C4B0629F6D0} +"MULTIPOLYGON (((-73.95428000451695 40.57562566619819, -73.9542767441803 40.57560776787737, -73.95427659182468 40.57560777502096, -73.95403098748837 40.57425842651997, -73.95913426812315 40.5737053691636, -73.95909790204476 40.573219642061005, -73.95905972204248 40.572709673055385, -73.96017262582697 40.57247308851638, -73.96127564537565 40.57223859258699, -73.96288540583556 40.571896344628044, -73.96436699482844 40.5715813230213, -73.96537544278172 40.57136689047405, -73.96663599332273 40.57109883778516, -73.96827427427499 40.57075043772671, -73.96992108988374 40.5703663755614, -73.97117825345288 40.56999605535421, -73.9731729599979 40.56940844264985, -73.97661654443631 40.56839390474169, -73.98062143702519 40.56849912368887, -73.98776013872975 40.568459080060116, -73.98911653966529 40.568451421639224, -73.9959939753575 40.56841234243146, -74.002084538616 40.57006562102825, -74.0022605501282 40.57110185242804, -74.00224399226757 40.571102111203274, -74.00242971535904 40.57217440896968, -74.00243087293526 40.572181080932104, -74.00244188882509 40.572244696459045, -74.00248743240185 40.5724375302192, -74.00226231607523 40.57244018241546, -74.00188927637937 40.572352674374315, -74.0015047292023 40.57226246549963, -74.00135898342226 40.57222827529715, -74.00113966413811 40.57217707835519, -74.0005659680544 40.57204249380574, -74.00023946930287 40.57196589812603, -74.0000184275614 40.57194024783038, -73.99947234688956 40.57187902805433, -73.99910205906328 40.5718375133716, -73.9988679795764 40.571798946335264, -73.99876016417005 40.571786655762324, -73.99868426968698 40.571778004478304, -73.99861751335708 40.57177039426101, -73.99846055077771 40.57175250064095, -73.9983096606827 40.571735299399364, -73.99817015847715 40.57171939669805, -73.9980113089951 40.57170128720861, -73.99779864301023 40.57167704300734, -73.99737069100318 40.57162825348885, -73.99728182188595 40.571619026445696, -73.9969245579338 40.571577390683764, -73.99588020452796 40.57154519843984, -73.99511484462207 40.57161058975795, -73.9947680431707 40.57164021885786, -73.99456224941929 40.57165780014944, -73.99368515804906 40.57173272756282, -73.99348961505385 40.57175500103027, -73.99260566164703 40.57170750699271, -73.99238042861448 40.5716954036309, -73.99150900764111 40.571769715955945, -73.99133203280098 40.57179354322825, -73.99046926554777 40.57186907753429, -73.99028243400402 40.57190832295528, -73.98942275555923 40.57211965147906, -73.98924402449154 40.57216337606606, -73.98891124845895 40.57224283643593, -73.98848982195203 40.57234346192887, -73.98827288997143 40.57238325758442, -73.98771116753622 40.572521383467965, -73.98736406646016 40.5726067326544, -73.9871555345049 40.5726209441197, -73.98625907196093 40.572639202984185, -73.98519668905347 40.57266083127101, -73.98284115197642 40.5729377255707, -73.98270559539897 40.57295362111435, -73.98269567497972 40.57295478760077, -73.98256044428008 40.57297068212169, -73.9824369621377 40.57298519597495, -73.98216715469404 40.57301694562737, -73.98216311447763 40.57301742047709, -73.98198219515866 40.57303868424629, -73.98170473355752 40.573065643522646, -73.98147482152648 40.57309098526023, -73.98127913604633 40.5731125544199, -73.98096547496651 40.5731471262446, -73.98065112332588 40.573179516926544, -73.98049476507828 40.57319617450308, -73.98042618397453 40.57320347960014, -73.98037136632064 40.573209320054254, -73.98004776529012 40.57324379131814, -73.97978508515195 40.57327177332105, -73.97957833978202 40.57330168549922, -73.97906932348408 40.573356452038816, -73.9790158271219 40.57336220743748, -73.97896735596323 40.573367423416705, -73.97825030860307 40.57344456931105, -73.97797542054879 40.573479136703455, -73.97769957953619 40.57350904574006, -73.97722978639437 40.57355998270543, -73.97704942322243 40.57357953772496, -73.97375365792554 40.57393682203265, -73.97350544099481 40.573978841161804, -73.96928588728296 40.57469305190497, -73.96851034580186 40.57485747492214, -73.96794874995152 40.574955153488816, -73.96754707145713 40.575010483308596, -73.96744870939669 40.57500055511401, -73.96717223474819 40.57497568500407, -73.96683284766137 40.57495457108097, -73.96665504116682 40.57493246846622, -73.96594032116323 40.57491012750011, -73.9648693897781 40.574920790496655, -73.9646600423663 40.57493343178677, -73.96420546469172 40.574956946925525, -73.96381755368463 40.57498808621128, -73.96334189755488 40.57504035584487, -73.96301618742844 40.57508523534839, -73.96281180786036 40.57510171200448, -73.9624682789176 40.57512196654771, -73.96167595199431 40.575159527888594, -73.96114712802645 40.575182641421115, -73.96093926114874 40.57519545293451, -73.96023019337994 40.57522719988628, -73.95966939494714 40.57525230551383, -73.95961653282185 40.57525467153237, -73.95934225333502 40.57526443192968, -73.95926833720983 40.57526706229322, -73.95925124057689 40.57526767038794, -73.95926139366165 40.57540327136017, -73.95428000451695 40.57562566619819)))",B169,6418,B169,B-13,B-13,B-13,B-13,"Corbin Pl. to W. 37 St., Boardwalk","313, 315","47,48",60,"11224, 11235",B,399.473,False,Coney Island Beach & Boardwalk,No,100005174,PARK,20100106000000.00000,19380303000000.00000,,DPR,True,Coney Island Beach & Boardwalk,Y,Coney Island Beach & Boardwalk,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/B169/,Yes,"46, 45",23,8,{8A5F0B5E-598A-4BE9-84DA-5129A527B525} +"MULTIPOLYGON (((-73.82566950303566 40.83623968406853, -73.82566870549732 40.83623636453678, -73.82566866928217 40.83623299122555, -73.82566939531846 40.83622966229031, -73.82567086200275 40.836226477653305, -73.82567302640658 40.83622353090123, -73.8256758242743 40.83622091018547, -73.82567917241069 40.83621869192233, -73.82568297104527 40.836216943498236, -73.8256871097818 40.83621571517395, -73.82569146284368 40.83621504458026, -73.82569590331836 40.836214950435625, -73.8257002995884 40.83621543704371, -73.82570452127638 40.836216487998534, -73.82570844278268 40.836218073393965, -73.82571194803758 40.836220146228825, -73.82571493286555 40.8362226451121, -73.82571506578898 40.83622259488522, -73.82575442611873 40.83626538017068, -73.8257863138445 40.83631161385928, -73.8258102151546 40.836360549570706, -73.82596992811592 40.83670927164035, -73.82601131369435 40.83681654797457, -73.82601222362388 40.83681861058141, -73.82601212982581 40.836818660867664, -73.82604153873848 40.83689439007284, -73.82592189935043 40.83694325594902, -73.82589426773283 40.83694912149141, -73.82566950303566 40.83623968406853)))",X049,5967,X049,X-10,X-10,X-10,X-10,Baisley Ave. bet. Hollywood Ave. and Bruckner Blvd.,210,13,45,10461,X,0.09,False,Schneider Sampson Square,Yes,100004096,PARK,20100106000000.00000,19290701000000.00000,,DPR,False,Schneider Sampson Square,Y,Schneider Sampson Square,Type 1,Mall,http://www.nycgovparks.org/parks/X049/,No,82,34,14,{191AD194-3FDD-4D87-960F-4467BAA382E6} +"MULTIPOLYGON (((-73.95506220890721 40.68982535256365, -73.95472173168523 40.689864458075306, -73.95469464511983 40.689867569494716, -73.95467357150507 40.68975992553493, -73.9550411347112 40.68971771047162, -73.95506220890721 40.68982535256365)))",B549,5516,B549,B-03,B-03,B-03,B-03,Bedford Ave. bet. Kosciuszko St. and Lafayette Ave.,303,36,79,11205,B,0.091,False,Whole Neighborhood Garden,No,100008365,PARK,20140724000000.00000,20130703000000.00000,1001 BEDFORD AVENUE,DPR,False,Whole Neighborhood Garden,,Whole Neighborhood Garden,,Garden,,No,57,25,8,{5FFDAB3B-6891-4A0C-9D02-8929C9E080EC} +"MULTIPOLYGON (((-73.9000219378635 40.75788231723458, -73.90045738156081 40.75783312869881, -73.90051980424009 40.75793545303332, -73.90057333793239 40.75802839719938, -73.90061937402997 40.7581127827707, -73.90065672210642 40.75818477888025, -73.9006969247911 40.7582675744982, -73.90072708741427 40.75833213161686, -73.90079010825283 40.75847790930179, -73.90083932905411 40.75860628270928, -73.90085522390432 40.758649426997614, -73.90087389512775 40.75870500334866, -73.9008915960322 40.7587576918411, -73.900903745044 40.75879771084684, -73.90092305692019 40.758861326551326, -73.9009324159317 40.758896509240984, -73.90094558592985 40.7589460168441, -73.90096209702641 40.75900808936767, -73.90098099711047 40.759089882307535, -73.90100132409839 40.75918056535776, -73.90101637702875 40.75924771546832, -73.90104060529683 40.759355805027326, -73.90106313717453 40.75945631807196, -73.90107330547906 40.759501680753914, -73.90108861267016 40.75956996750777, -73.90014374964588 40.75967138494138, -73.89888976251781 40.75980597029604, -73.89898091738442 40.75967501503792, -73.89906164889162 40.759559035882134, -73.89914101642343 40.759445014072966, -73.89920783747304 40.75934901745243, -73.89927011270004 40.75925955088412, -73.8993139631597 40.759196554743454, -73.89941308955805 40.75905414626865, -73.89948312140865 40.75895353449548, -73.89951842506035 40.758902816411904, -73.89954272907868 40.75886789889913, -73.89958470026679 40.75880760162922, -73.89964376291893 40.75872274984417, -73.89970815902117 40.75863023396707, -73.89974862264586 40.75857210013817, -73.89981186007864 40.758475764149324, -73.89983830759839 40.7584304034737, -73.89987202155325 40.75836621233444, -73.89990558521252 40.75829717993677, -73.8999392498261 40.75821371611546, -73.8999745613119 40.75810997162807, -73.89999463991722 40.75803290488879, -73.90000537546386 40.7579845615646, -73.90001434104572 40.757935096473965, -73.9000219378635 40.75788231723458)))",Q174A,4908,Q174A,Q-01,Q-01,Q-01,Q-01,"30 Ave. To 31 Ave. and Boody St., BQE",401,22,114,11377,Q,5.43,False,St. Michael's Playground,Yes,100000447,PARK,20090423000000.00000,19461220000000.00000,64-02 30 AVENUE,DPR,True,St. Michael's Playground,Y,St. Michael's Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q174A/,No,36,13,14,{C51E2691-7633-4E74-90E4-23D690275CB9} +"MULTIPOLYGON (((-73.93893539617332 40.71323418861673, -73.939116954169 40.71319025880876, -73.93916926716432 40.713316353465494, -73.9391979678951 40.7133855332552, -73.93892475141243 40.71337454287784, -73.93892989412014 40.7133067236398, -73.93893539617332 40.71323418861673)))",B425,6221,B425,B-01,B-01,B-01,B-01,Olive St. between Powers St. and Devoe St.,301,34,90,11211,B,0.089,False,St Nicholas-olive St Garden,No,100004562,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,St. Nicholas - Olive St. Garden,N,St Nicholas-olive St Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B425/,No,53,18,12,{F08C837A-8D90-4C89-B8F7-218FB6BF8368} +"MULTIPOLYGON (((-74.00998903119358 40.70216497414858, -74.01028551614668 40.703171200614044, -74.010230801374 40.703185155317456, -74.00940421508068 40.70242147117364, -74.00998903119358 40.70216497414858)))",M046,5770,M046,M-01,M-01,M-01,M-01,N/S South St bet. Broad St and Old Slip,101,1,1,10004,M,0.728,False,Vietnam Veterans Plaza,Yes,100004911,PARK,20100106000000.00000,18840626000000.00000,,DPR,True,Vietnam Veterans Plaza,Y,Vietnam Veterans Plaza,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/M046/,No,65,26,10,{B5E323EB-E81F-4F99-9F47-6C4F6E112409} +"MULTIPOLYGON (((-73.71534734971091 40.748965854830466, -73.71539781057939 40.748962906081005, -73.71546329152244 40.74896414757084, -73.71551893775785 40.74896974031598, -73.7155684990199 40.74897836713782, -73.71563133699897 40.74899460811816, -73.71568494950269 40.74901367821024, -73.71572882598264 40.749033405035284, -73.71577459705368 40.7490586791627, -73.71621781843224 40.749348723409355, -73.71626285317267 40.7493832239609, -73.71630201364572 40.749420780767956, -73.7163318243597 40.74945642346303, -73.71636378312319 40.74950623647377, -73.71638301890337 40.74954766861233, -73.71639636433163 40.74958925193833, -73.71640553334686 40.74964420837026, -73.71640622625337 40.749687829915516, -73.71640168083042 40.74972835521442, -73.71639077031529 40.74977289462616, -73.7163671808667 40.74982982986404, -73.71634347808943 40.749869710945894, -73.71632100771934 40.749899911866414, -73.71629602518682 40.74992803992284, -73.716243252008 40.74997524527256, -73.71616612153846 40.750025239795704, -73.71609565406312 40.75005770423944, -73.71601355179786 40.750083693199095, -73.715951213727 40.75009629882382, -73.71589761005679 40.75010270072817, -73.71579443119226 40.750104088722416, -73.71573605680706 40.750098535306925, -73.71567199961973 40.75008693801458, -73.71560990478385 40.75006973354885, -73.71556976416906 40.75005512630658, -73.71551576260524 40.7500304792425, -73.71547241125378 40.75000576750991, -73.71503671545462 40.74972224073135, -73.71495848631294 40.74965747964343, -73.71491969131527 40.74961241572544, -73.71489086259236 40.74956826977027, -73.71486242259037 40.749504412588365, -73.71484730317795 40.749437930068666, -73.71484610827642 40.74936797633085, -73.71485789632622 40.74930482387304, -73.71488259598098 40.74924189518371, -73.71491548305411 40.74918795223932, -73.71494712592052 40.749149151897974, -73.71497527552319 40.74912090229384, -73.7150232862761 40.74908177592548, -73.71507417364793 40.74904917455047, -73.71514586400991 40.7490144282561, -73.71522540630592 40.74898764743821, -73.7152982674467 40.748972052406536, -73.71534734971091 40.748965854830466)))",Q310,5319,Q310,Q-13,Q-13,Q-13,Q-13,"74 Ave., 260 St.",413,23,105,11004,Q,2.948,False,Glen Oaks Oval /Tenney Park,Yes,100000138,PARK,,19380624000000.00000,73-80 260 STREET,DPR,True,Glen Oaks Oval,Y,Glen Oaks Oval,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q310/,No,24,11,3,{8D9B26A2-014F-4927-BB42-99C2437FCB71} +"MULTIPOLYGON (((-73.93831667659839 40.834150189489556, -73.93853733978786 40.83396283517658, -73.9390864033366 40.83419270481204, -73.93845710952696 40.83506335670537, -73.9379249604104 40.834839069076, -73.93811097644115 40.83441831944205, -73.93814649086455 40.83435249074793, -73.9381876660754 40.8342909289169, -73.93822429398519 40.83424515570366, -73.93826395626404 40.83420016483133, -73.93831667659839 40.834150189489556)))",M073,4711,M073,M-12,M-12,M-12,M-12,"Jumel Terr To Edgecombe Av, W 160 St To W 162 St",112,10,33,10032,M,1.524,False,Roger Morris Park,No,100005058,PARK,20100106000000.00000,19031020000000.00000,65 JUMEL TERRACE,DPR,True,Roger Morris Park,N,Roger Morris Park,Historic House,Historic House Park,http://www.nycgovparks.org/parks/M073/,No,72,30,13,{3668BC85-F059-4F49-8AA5-0C0C431C29C3} +"MULTIPOLYGON (((-73.76298443748682 40.593099395321865, -73.76295907165525 40.59296239548126, -73.76293551927739 40.59296481253525, -73.76288200043092 40.59267575117175, -73.76252580187187 40.59271230189242, -73.7624872695426 40.59250307323793, -73.76247701359563 40.59250632635244, -73.76246112055578 40.59251817144105, -73.7624242228137 40.59254387812797, -73.76241020994514 40.59255220243704, -73.76239384918473 40.592559702410696, -73.7623580481161 40.592572666196276, -73.7624209073165 40.59291861085031, -73.76205140113883 40.59295704620668, -73.76201111396313 40.59273675800035, -73.76164027080232 40.592775331547955, -73.76160674724716 40.592592021123735, -73.7615537863019 40.59258807859906, -73.7615408066331 40.59251710370354, -73.76056149425266 40.59261716715443, -73.76058602356915 40.59275312748961, -73.76038269963964 40.592774444194255, -73.76027131318666 40.592157049679706, -73.7614541510959 40.59204324792073, -73.76231814872041 40.591960114152364, -73.76316941246421 40.591878199378925, -73.76322037009884 40.59187329566532, -73.76375931143953 40.59182143237621, -73.7637593380964 40.591821577415715, -73.76375957213692 40.59182287285363, -73.76403731683205 40.59319586886027, -73.76299774001603 40.59330087316268, -73.76296088388344 40.59310181147806, -73.76298443748682 40.593099395321865)))",Q162H,5573,Q162H,Q-14,Q-14,Q-14,Q-14,Rockaway Boardwalk bet. B. 32 St and B. 28 St.,414,31,101,11691,Q,7.122,False,Beach 32 Football Field,Yes,100000430,PARK,20100106000000.00000,19500309000000.00000,,DPR,False,Beach 30th Street Playground,N,Beach 30th Street Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q162H/,Yes,23,10,5,{8523F754-B389-475E-A3B1-60A213CC1640} +"MULTIPOLYGON (((-73.98422664225284 40.77873959951343, -73.98441763537068 40.77847696972596, -73.98444330811694 40.77848774950437, -73.98446638090367 40.77849743751794, -73.98427529430411 40.77876019704491, -73.98422664225284 40.77873959951343)))",M282,4965,M282,M-07,M-07,M-07,M-07,71 St. bet. West End Ave. and Amsterdam Ave.,107,6,20,10023,M,0.04,False,Septuagesimo UNO,Yes,100004670,PARK,20100106000000.00000,19810526000000.00000,256 WEST 71 STREET,DPR,False,Septuagesimo UNO,N,Septuagesimo UNO,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M282/,No,67,27,10,{E4DF15CA-6C87-4B1C-A6CC-3A0C8C2CCE8C} +"MULTIPOLYGON (((-73.72937661021795 40.712834875501834, -73.72937682435575 40.712834600447664, -73.72937710990323 40.712833934737915, -73.72938919886003 40.71281352687137, -73.72940563660987 40.71279496087301, -73.72942595233766 40.712778770540154, -73.72944956427952 40.71276541736819, -73.72947579749989 40.712755284288924, -73.72950389933455 40.71274866129883, -73.72953306663854 40.712745738319256, -73.72956246356631 40.71274659803426, -73.72982186225356 40.71281030799858, -73.72977568373393 40.71291810020229, -73.72977558847458 40.71291824406104, -73.7297601267845 40.7129544129659, -73.7295904808317 40.713351247903866, -73.72958793113553 40.71335721142742, -73.7293626526835 40.71330266375631, -73.72935502592169 40.713299885748306, -73.72932730064781 40.713286867558146, -73.72930285660665 40.71327047744482, -73.72928239604452 40.713251186229954, -73.7292665037187 40.71322954460489, -73.72925563509594 40.71320617499798, -73.72925010226147 40.71318174452561, -73.72925006212881 40.71315695415816, -73.7293462677985 40.712905682793846, -73.72936502800445 40.71285668305789, -73.72937585715243 40.71283584628754, -73.72937661021795 40.712834875501834)))",Q133,69216,Q133,Q-13,Q-13,Q-13,Q-13,"Hempstead Ave., 225 St. and 224 St. Cross Island Parkway Exit at 225 St.",413,27,105,11429,Q,0.514,False,Pat Williams Playground,Yes,100000082,PARK,,19380331000000.00000,,DPR,True,Pat Williams Playground,Y,Pat Williams Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q133/,No,33,14,5,{EEEDB590-77CE-4881-AF88-7C4FF40B39BF} +"MULTIPOLYGON (((-73.79254236598904 40.73038994658445, -73.79340358955909 40.730180167558046, -73.79343746263397 40.73026077723215, -73.7934776225314 40.73035634845379, -73.79350953808068 40.73043229805148, -73.7935411035132 40.730507417641086, -73.79356477470282 40.730563748316705, -73.79358679256177 40.73061614529315, -73.79360510889995 40.73066584220226, -73.79362668194818 40.73073804420979, -73.79364350037235 40.73080052117948, -73.79365637160129 40.73086470294425, -73.79366531285613 40.73091355547241, -73.7936722205031 40.7309715526457, -73.79367664604266 40.731017999920944, -73.79368025901289 40.73106269964924, -73.79367956079159 40.73112036531263, -73.79351799645387 40.73114312339402, -73.79317419327083 40.73119155001764, -73.79300642336183 40.73119026070011, -73.79241603475762 40.73102353453161, -73.79240273975681 40.7310075976357, -73.79224183731313 40.73096418377812, -73.7915206376525 40.730769592845476, -73.79123025243418 40.730751517581766, -73.79120472712717 40.730749928725956, -73.79118298913475 40.73074857546229, -73.7911723222023 40.73072364978586, -73.79120704724569 40.730715191219815, -73.79254236598904 40.73038994658445)))",Q294,6278,Q294,Q-08,Q-08,Q-08,Q-08,"73 Ave., Jewel Ave. bet. Utopia Pkwy. and 179 St.",408,24,107,11365,Q,2.98,False,Utopia Playground,Yes,100000271,PARK,,19400307000000.00000,,DPR,True,Utopia Playground,Y,Utopia Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q294/,No,25,11,6,{442C0144-5402-459E-9024-99A9D48B9618} +"MULTIPOLYGON (((-74.10187657079348 40.63827197904269, -74.10176050861064 40.63772847251051, -74.10085399025117 40.63784468893138, -74.10059806008879 40.63670703662878, -74.09972582455525 40.63666003555779, -74.09940854455844 40.63668547620615, -74.09944483107556 40.636920898239964, -74.09941677375978 40.63692314858535, -74.0992720914988 40.635920858550705, -74.09962735376969 40.63589362485526, -74.09964448051834 40.63599942285794, -74.09986476015584 40.63603871323376, -74.1000015673297 40.63606311638266, -74.10017697644562 40.63609440353571, -74.10049499530724 40.63615112711839, -74.10070372031048 40.636188356591276, -74.10090913244504 40.6362249942498, -74.10108292842699 40.636255992369925, -74.10125785377029 40.63628719184977, -74.10140002418512 40.63631254856577, -74.10157159651104 40.63634314987868, -74.10174026262749 40.63637323210629, -74.1018865387427 40.63639932031248, -74.10206393135107 40.63643095853509, -74.10224110774449 40.63646255705347, -74.10215841329305 40.63672426027569, -74.10210384129765 40.63689695813663, -74.10259677477325 40.63698043428148, -74.10253960217982 40.63719409118935, -74.10259412047905 40.6374668260978, -74.10256567374311 40.63747036620198, -74.1027484811894 40.63838487310962, -74.10151325836577 40.63854323778625, -74.10146655804583 40.63832454467058, -74.10187657079348 40.63827197904269)))",R052,5827,R052,R-01,R-01,R-01,R-01,"Prospect Ave., N Randall Ave. and Brentwood Ave.",501,49,120,10301,R,9.2,False,Allison Pond Park,Yes,100004382,PARK,20100106000000.00000,19430526000000.00000,,DPR,True,Allison Pond Park,N,Allison Pond Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R052/,No,61,24,11,{5F92F2D7-877C-4DB7-A95F-DB61B68D107A} +"MULTIPOLYGON (((-73.98229892793522 40.67700810251737, -73.98245814925255 40.67677479093667, -73.98254015548098 40.67680638446124, -73.98257974827075 40.67682163707711, -73.98261285640515 40.676834392472834, -73.98269763500132 40.67686705341375, -73.98270436804555 40.67686964700794, -73.98254516037284 40.67710296343127, -73.98242053436311 40.67705495152744, -73.98229892793522 40.67700810251737)), ((-73.98219490586021 40.67696802707101, -73.98235413217627 40.67673471833535, -73.98236135482465 40.6767375011328, -73.98240264350176 40.676753406942936, -73.98224341967588 40.676986717546605, -73.98219490586021 40.67696802707101)))",B399,5219,B399,B-06,B-06,B-06,B-06,Union St. between 4 Ave. and 5 Ave.,306,39,78,11215,B,0.203,False,Gardens Of Union,No,100004007,PARK,20100106000000.00000,19970715000000.00000,636 UNION STREET,DPR,False,Gardens Of Union,N,Gardens Of Union,Greenthumb,Garden,http://www.nycgovparks.org/parks/B399/,No,52,25,7,{87ECC060-38BD-4A6D-BC4D-CBA071BF0EE4} +"MULTIPOLYGON (((-73.93032519921886 40.83315469204748, -73.93036594707355 40.83308286889747, -73.93068023502367 40.83318495909577, -73.93063948626012 40.83325678235485, -73.93032519921886 40.83315469204748)))",X303,4768,X303,X-04,X-04,X-04,X-04,Summit Ave. at W. 164 St.,204,8,44,10452,X,0.061,False,Park,No,100004594,PARK,20100106000000.00000,19991122000000.00000,995 SUMMIT AVENUE,DPR,False,Park,N,Park,To Be Determined,Undeveloped,http://www.nycgovparks.org/parks/X303/,No,77,29,15,{B68DD0DF-A900-47D1-A1CB-515D47D6ACB9} +"MULTIPOLYGON (((-73.85754269668996 40.716285828529614, -73.85754264063428 40.716285476360326, -73.85754208557078 40.71628547567348, -73.85751833608408 40.716094492846956, -73.85781345259333 40.71613651536794, -73.85768618246308 40.716338074457624, -73.85754269668996 40.716285828529614)))",Q475,5853,Q475,Q-06,Q-06,Q-06,Q-06,Kessel St. bet. Yellowstone Blvd. and Selfridge St.,406,29,112,11375,Q,0.108,False,Project Eden,No,100000074,PARK,20090423000000.00000,19990712000000.00000,,DPR,False,Project Eden,N,Project Eden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q475/,No,28,15,6,{3E1C5C30-6940-4A99-9707-14F35E6903F1} +"MULTIPOLYGON (((-73.93199110383165 40.69201807426635, -73.93188279600965 40.691487325114785, -73.93178386829912 40.69100253998682, -73.93307528485686 40.69085355727707, -73.93313166759897 40.69113124624247, -73.93309794193108 40.691171517409984, -73.93293431646512 40.691187905167624, -73.93298908580906 40.69145086355468, -73.9325617986792 40.6915028932592, -73.93265335724591 40.69194224788055, -73.93199366548984 40.692017780411796, -73.93199324873144 40.69201577021992, -73.93199110383165 40.69201807426635)))",B269,5402,B269,B-03,B-03,B-03,B-03,Lafayette Ave. bet. Stuyvesant Ave. and Malcom X Blvd.,303,36,81,11221,B,2.326,False,Jesse Owens Playground,Yes,100004323,PARK,20100106000000.00000,19440726000000.00000,125 STUYVESANT AVENUE,DPR/DOE,False,Jesse Owens Playground,Y,Jesse Owens Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B269/,No,56,25,8,{9F33F3FE-A971-4531-AE4B-1D96573B119A} +"MULTIPOLYGON (((-73.89968784494788 40.844369477367636, -73.89981470566846 40.844148586787966, -73.90088663076044 40.84427434818275, -73.90075851239769 40.84449475978936, -73.90031910640764 40.84444366963807, -73.89968784494788 40.844369477367636)))",X148F3,5656,X148F3,X-06,X-06,X-06,X-06,Cross Bronx Exwy bet. Park Av and Washington Av,206,15,48,10457,X,0.592,False,Park,No,100005086,PARK,20100106000000.00000,19590226000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/X148F3/,No,86,33,15,{413E2AEA-F7FA-4EA3-89BB-E9B3C22CD6F5} +"MULTIPOLYGON (((-73.92829094214109 40.66484781782644, -73.92836668432909 40.66484614593068, -73.92848343844281 40.66489339392064, -73.92851242811483 40.66492360534958, -73.92853783796016 40.66498816293916, -73.92853745902691 40.665014020127714, -73.92852869690284 40.665108082612164, -73.92850411040641 40.66537203565848, -73.92839545540481 40.66653849851399, -73.92835149654651 40.66701040010054, -73.92826040632788 40.66798824787405, -73.92824797384671 40.66812171099088, -73.92824362587841 40.66816838472113, -73.92822895713005 40.668325841585236, -73.92787670509018 40.66830663571041, -73.92780672561254 40.66830281955578, -73.92584079809599 40.668195607155006, -73.92585471177541 40.66804793600974, -73.92597696540398 40.66675041706789, -73.92601308350837 40.66636706357602, -73.92606543550787 40.665811420225666, -73.92822493459025 40.66486861010508, -73.92829094214109 40.66484781782644)), ((-73.92454060831996 40.66643516681608, -73.92542661320506 40.66604697013925, -73.92543823381692 40.6660573372098, -73.92545817507414 40.66607532623681, -73.92548260928844 40.66609738039925, -73.92550180508361 40.66611470255377, -73.9255454363252 40.66615408065579, -73.92557940944462 40.66618474270112, -73.92558906525404 40.66619345783903, -73.925632695416 40.6662328359068, -73.9256388119964 40.66623806915805, -73.92564469187955 40.66624345894578, -73.92565032088011 40.6662489998578, -73.9256557025569 40.66625468199071, -73.92566082153786 40.666260503533614, -73.92566567783503 40.66626645368039, -73.92567026199343 40.6662725270218, -73.92567392697677 40.66627779110569, -73.92566667712089 40.66635561893239, -73.92563168918961 40.66673120339498, -73.92552788171527 40.667845523944635, -73.92549394080346 40.66820984802604, -73.92535325285364 40.6682073011175, -73.92534805418079 40.66820177578037, -73.92508780508452 40.66792515541041, -73.92525264519608 40.667838409666615, -73.92517549144088 40.667756401749074, -73.9251967571905 40.667539682087316, -73.92518608215694 40.66753908440703, -73.92502406811374 40.667530016095185, -73.92488607601753 40.66727617056473, -73.9248009330992 40.667050788711464, -73.92454620459988 40.66644552101936, -73.92454060831996 40.66643516681608)))",B054,6107,B054,B-08,B-08,B-08,B-08,"Eastern Pkwy., E. New York Ave. bet. Rochester Ave. and Portal St.",308,41,77,"11213, 11233",B,17.14,False,Lincoln Terrace / (Arthur S. Somers Park),No,100004246,PARK,20100106000000.00000,19280823000000.00000,1266 EASTERN PARKWAY,DPR,True,Lincoln Terrace / Arthur S. Somers Park,Y,Lincoln Terrace / Arthur S. Somers Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B054/,No,55,20,9,{37AD5542-8D09-4062-8248-394585D69D0D} +"MULTIPOLYGON (((-73.97208388252155 40.61969433341474, -73.97180809718205 40.618260977721626, -73.97214809553256 40.61813595486664, -73.97249185591451 40.61800954780477, -73.97268794588936 40.61793744124145, -73.97313053762484 40.6177746890784, -73.97374593230457 40.61855435618108, -73.97384261125485 40.61867684092037, -73.97463951432479 40.618586422610775, -73.97466774164913 40.61874972293931, -73.97467009412938 40.618763331224564, -73.9746714195371 40.61877099854906, -73.97467262584708 40.61877797694903, -73.9736146195004 40.6191524969257, -73.97208388252155 40.61969433341474)))",B372,5205,B372,B-12,B-12,B-12,B-12,"Ave. L, E. 4 St., Mcdonald Ave., Ave. M",312,44,66,11230,B,6.7,False,Friends Field,Yes,100004162,PARK,20100106000000.00000,19730117000000.00000,1310 EAST 4 STREET,DPR,True,Friends Field,Y,Friends Field,Large Park,Community Park,http://www.nycgovparks.org/parks/B372/,No,48,17,10,{42DB62C3-0E48-459D-B597-CE80431BC134} +"MULTIPOLYGON (((-74.13645632629526 40.640853191231756, -74.13648381733172 40.64106052754094, -74.13649834095095 40.64117005579895, -74.13650017551419 40.64122660534539, -74.1365138605729 40.64148499136522, -74.13605295148754 40.641580410024254, -74.1350186781088 40.641779139062024, -74.1350070101873 40.64132235076678, -74.1350067008242 40.641295070793326, -74.1350273848415 40.64094019590475, -74.13506600199942 40.640343493327364, -74.13559419739933 40.64033546314605, -74.13638608065712 40.64032342056482, -74.13645632629526 40.640853191231756)))",R008,4597,R008,R-01,R-01,R-01,R-01,"Richmond Ter. To Kill Van Kull, Faber St.",501,49,120,10302,R,4.339,False,Faber Pool and Park,Yes,100004004,PARK,20100106000000.00000,19280926000000.00000,2175 RICHMOND TERRACE,DPR,True,Faber Pool and Park,Y,Faber Pool and Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/R008/,Yes,61,23,11,{656045B6-1A54-4BB1-9742-9D12D80FAF96} +"MULTIPOLYGON (((-73.89701851018677 40.74209798643875, -73.89703418895262 40.74202015877852, -73.89704105514342 40.742019910073225, -73.89704581628963 40.74201963337111, -73.89705573449015 40.742018779550556, -73.89706587591105 40.74201751439663, -73.89708180693677 40.742014701940576, -73.89709063057305 40.742012690887115, -73.89710006829672 40.742010165291276, -73.89711093525594 40.74200674856848, -73.89711956999396 40.7420036225156, -73.89712817927625 40.742000112823106, -73.89713338187663 40.742000708203044, -73.89701851018677 40.74209798643875)))",Q341A,5910,Q341A,Q-02,Q-02,Q-02,Q-02,43 Ave. bet. BQE and 68 St.,402,26,108,11377,Q,0.011,False,Jennings Park,No,100000415,PARK,20090423000000.00000,19551117000000.00000,,DPR,True,Park,N,Park,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/Q341A/,No,34,16,14,{5DA44C2F-AD19-4D61-8CEF-B815C9A1BA4E} +"MULTIPOLYGON (((-73.96055325306662 40.69416123181892, -73.96068029855059 40.69414649067442, -73.96071996487132 40.694333101285686, -73.96074815380659 40.6944657294261, -73.96075603993478 40.69450282964114, -73.96076271436445 40.694534225594296, -73.96077041644966 40.69457046305404, -73.96077718527873 40.694602307493625, -73.96078493457584 40.694638763792774, -73.96079144266955 40.6946693825445, -73.96080572722776 40.69473658187301, -73.96082056044531 40.69480637216123, -73.96083496069015 40.69487411363305, -73.96084935978108 40.69494185510206, -73.96086375771873 40.69500959566773, -73.96087742770962 40.695073902328495, -73.96089156613293 40.69514041990509, -73.96090700245244 40.695213037993405, -73.96092180756858 40.69528268867525, -73.96093724395345 40.695355307658744, -73.96096518598353 40.69548675867464, -73.96097927502505 40.69555304568886, -73.96099390803067 40.69562188133605, -73.96104432970566 40.6958590871461, -73.96105243444595 40.69589721309209, -73.96108027427402 40.696028188565585, -73.96111180025909 40.69617649564102, -73.96068887011786 40.69622549383305, -73.96031813884214 40.69448133553281, -73.96061399683936 40.69444700695652, -73.96059752630191 40.69436951669323, -73.96055325306662 40.69416123181892)))",B105,5459,B105,B-03,B-03,B-03,B-03,Taaffe Pl. bet. Park Ave. and Myrtle Ave.,303,33,79,11205,B,1.821,False,Taaffe Playground,Yes,100004325,PARK,20100106000000.00000,19291223000000.00000,390 PARK AVENUE,DPR,False,Taaffe Playground,Y,Taaffe Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B105/,No,50,25,7,{2745A666-E79D-4962-9151-966221503A55} +"MULTIPOLYGON (((-73.86496754366642 40.677799427466354, -73.86503501011289 40.67778923804503, -73.86526275360464 40.678871076419036, -73.86523443855343 40.67887466152969, -73.86496754366642 40.677799427466354)))",B290,4851,B290,B-05,B-05,B-05,B-05,Eldert La. between Liberty Ave. and Glenmore Ave.,305,37,75,11208,B,0.112,False,Public Place (East New York),Yes,100004450,PARK,20100106000000.00000,19571023000000.00000,1192 LIBERTY AVENUE,DPR,True,Public Place,Y,Public Place,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B290/,No,54,19,8,{6E452815-01A8-45D4-8F02-731710223426} +"MULTIPOLYGON (((-73.91781678010229 40.84534486304399, -73.91775130788854 40.84533855165061, -73.9177513356218 40.84533817976689, -73.91807296261844 40.845369453136655, -73.91820044273797 40.845381689454385, -73.91820002288091 40.845381756693605, -73.91820042601378 40.845381789397216, -73.91820041645764 40.84538184612149, -73.91820004855306 40.84538402325218, -73.9181981242321 40.845395401414905, -73.91814627998956 40.84539036330075, -73.91783857367643 40.845360459795884, -73.9177502953335 40.845351880923566, -73.91770157300216 40.845347145600044, -73.9173359867786 40.84531161638909, -73.91734394934096 40.845299288945476, -73.91775130788854 40.84533855165061, -73.9177513054835 40.845338578663686, -73.91781678010229 40.84534486304399)))",X148B,5713,X148B,X-05,X-05,X-05,X-05,Cross BX Exwy bet. Jesup Av and Macombs Rd,205,14,46,10452,X,0.15,False,Strip,No,100004858,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/X148B/,No,77,29,15,{5AEC5541-E845-44F8-8A04-01B44239360C} +"MULTIPOLYGON (((-73.9619828057776 40.69828119698917, -73.96273433925599 40.69815930988612, -73.96223553244069 40.6997864909707, -73.962156625751 40.7000438872662, -73.96123862457553 40.69945058638128, -73.96130595603364 40.699412074317294, -73.96138272818824 40.699361349032564, -73.96144542081228 40.6993134673011, -73.96148281947087 40.699278783986124, -73.96152899975252 40.699238078266895, -73.96157024526944 40.699194573890274, -73.96160483241961 40.69915388137851, -73.96168243542117 40.699044183421364, -73.96172605365246 40.69897074494832, -73.9617741932439 40.69888206048555, -73.9618233273446 40.69877966333005, -73.9618527036812 40.69871355385408, -73.9618719507341 40.698665908721715, -73.96189283275719 40.69861028828943, -73.96191779977534 40.69853695252501, -73.96193788320542 40.69847072648555, -73.96196633458506 40.698360105246856, -73.9619828057776 40.69828119698917)))",B223NA,6164,B223NA,B-01,B-01,B-01,B-01,"Kent Ave. to Flushing Ave., bet. Williamsburg St. W. and Classon Ave., at the BQE",301,33,90,11211,B,2.982,False,Classon Playground,Yes,100004611,PARK,20100106000000.00000,19380506000000.00000,,DPR,True,Classon Playground,Y,Classon Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223NA/,No,50,26,7,{C8FCE14B-494C-4EE5-BEAA-2FB21E2C746F} +"MULTIPOLYGON (((-73.88984162827091 40.67417293127703, -73.88993116371853 40.67415969744155, -73.88997204499968 40.67431862083009, -73.88988250698281 40.67433185379435, -73.88984162827091 40.67417293127703)))",B468,5262,B468,B-05,B-05,B-05,B-05,Glenmore Ave. and Hendrix St.,305,37,75,11207,B,0.032,False,Escape To Nature,No,100004626,PARK,20100106000000.00000,20021120000000.00000,555 GLENMORE AVENUE,DPR,False,Escape To Nature,N,Escape To Nature,Greenthumb,Garden,http://www.nycgovparks.org/parks/B468/,No,55,18,8,{53830A64-F8B2-43AB-A63A-5AF1FAF3DE5D} +"MULTIPOLYGON (((-74.00154712711851 40.73023996427883, -74.00173654394253 40.73018122051002, -74.00156980503316 40.730472554499165, -74.0014932813637 40.73043571481613, -74.0015916628529 40.73031259778393, -74.00154712711851 40.73023996427883)))",M125A,4654,M125A,M-02,M-02,M-02,M-02,S/e Corner Minetta Lane and Ave. of Americas,102,1,6,10012,M,0.056,False,Minetta Green,Yes,100004867,PARK,20100106000000.00000,19550721000000.00000,294 6 AVENUE,DPR,True,Minetta Green,N,Minetta Green,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M125A/,No,66,27,10,{14770202-A6C0-4DA9-A84A-BF3D5CB4BFC7} +"MULTIPOLYGON (((-73.96367808982842 40.72138362497131, -73.96351712080225 40.721281814687295, -73.96348110116008 40.721332384894545, -73.96333791740466 40.72124318353205, -73.96323930346175 40.72118174813606, -73.9633032750617 40.721122315094746, -73.96342403811009 40.72119782883876, -73.96381260539319 40.72083682383101, -73.96384914452854 40.720859671335084, -73.96390504128803 40.720784132506914, -73.96393206930021 40.72074760909949, -73.96393213918341 40.72074751366736, -73.96394365387677 40.72073732800666, -73.96397001900534 40.720714007655886, -73.96396107768355 40.720708409090086, -73.9635924236903 40.720477580711304, -73.96361251576002 40.72045878802172, -73.96381962235316 40.720362499648516, -73.96382438356328 40.7202606147689, -73.96404010053227 40.72008389066573, -73.96386440079723 40.719949696615835, -73.96388593132616 40.719929692242566, -73.96420649006059 40.72012941645784, -73.96426314538164 40.72005659722411, -73.96426412268588 40.72005720717258, -73.96427022315085 40.72006100741624, -73.9644311757578 40.71989525448887, -73.96447429454315 40.71992385178414, -73.96452060589878 40.71994939551775, -73.96452712894504 40.719953117533755, -73.96454166896866 40.71993114867301, -73.96483847380699 40.72012255840821, -73.96504594454429 40.720256354487816, -73.965063680111 40.7202411736743, -73.96510701330011 40.72018447361081, -73.96514661778741 40.72012621632101, -73.96518116899745 40.72005991953868, -73.96520923626203 40.71999187289674, -73.96523066791066 40.719922442861574, -73.96523812164685 40.719884616496515, -73.96525094439598 40.71982795578767, -73.96525886978911 40.719770777607195, -73.96525047077634 40.71966942269167, -73.96497032299467 40.719480372108166, -73.96497251968542 40.719478123302885, -73.96497970067426 40.7194707683219, -73.96498880361662 40.7194614463109, -73.96500239822366 40.7194475240592, -73.96501800833083 40.7194315375492, -73.96504721301923 40.71940162787953, -73.96506569359805 40.71938270116916, -73.9650812503863 40.71936676866489, -73.96511042541253 40.71933689048776, -73.96516350560894 40.71928049321944, -73.96517213973272 40.71927131963597, -73.96517452929676 40.71927366438601, -73.96527379221052 40.71936871887222, -73.96538538928917 40.719564086573705, -73.9653898568247 40.71958996496761, -73.96538721175796 40.71975822443419, -73.96538499709327 40.71979964721994, -73.96537981411389 40.71984091692675, -73.96537167589827 40.71988190928778, -73.96536416335157 40.71991234155783, -73.96535506731092 40.71994252210848, -73.96534440436818 40.71997240501847, -73.96532869915146 40.72001869009535, -73.96531949563638 40.72004154496333, -73.96530940218162 40.720064181639025, -73.96529348546737 40.72009604588315, -73.96528658099906 40.72010871937725, -73.96524474107709 40.72017339127215, -73.96519557633366 40.72023500640813, -73.96513886608125 40.720296838062055, -73.96512766186538 40.72030905368584, -73.9656805367853 40.720665594742535, -73.96567373321871 40.72067542177775, -73.96561168729963 40.72076503999824, -73.96451566945157 40.72005789552097, -73.96450479851839 40.72005088170129, -73.96447414742143 40.720031105157126, -73.96446668164728 40.72002628782735, -73.96442150486641 40.72008803263779, -73.96438771757308 40.720134211139495, -73.96437362747851 40.720153468684494, -73.96436781543068 40.72016141208361, -73.96435689725733 40.720176334653566, -73.96435227319918 40.720182655701066, -73.96445242623538 40.72024240937562, -73.96442503948927 40.720275622522806, -73.96439318536673 40.720314254450045, -73.96438472991007 40.72030757005232, -73.96429698198834 40.72038684446523, -73.96448078464401 40.72050461504905, -73.9644763291641 40.72051217975715, -73.96438569236437 40.72045336828142, -73.96419084345288 40.72068848586426, -73.96417559846871 40.72070688213712, -73.96416899560886 40.72070181291428, -73.96409596196035 40.72077757255643, -73.96408380410246 40.720804048252155, -73.96407650701352 40.72081993817072, -73.96405102997726 40.72087541872548, -73.96407608399855 40.72089108460802, -73.96416898571269 40.72094917662106, -73.96509683683523 40.72152935292906, -73.96489818358671 40.72181989148303, -73.96473923028216 40.72205475794052, -73.96367808982842 40.72138362497131)))",B536,6605,B536,B-01,B-01,B-01,B-01,Kent Ave. bet. N. 4 St. and N. 7 St.,301,"2,33",94,11211,B,3.083,False,North 5th Street Pier and Park,Yes,100004056,PARK,20100106000000.00000,20081219000000.00000,,DPR,False,North 5th Street Pier and Park,N,North 5th Street Pier and Park,Sitting Area/Triangle/Mall,Waterfront Facility,http://www.nycgovparks.org/parks/B536/,Yes,50,26,12,{0913CE7D-905E-40AF-A70E-2ABD88C1454B} +"MULTIPOLYGON (((-73.98596233840593 40.697729622229105, -73.98592678957952 40.698168187205596, -73.98589777337162 40.69816722280733, -73.98569703097445 40.69790157301497, -73.98568680810695 40.697874930086456, -73.98568360204888 40.6978512264018, -73.9856836064943 40.69783052452402, -73.98568905190275 40.697806511238426, -73.9856966715716 40.69778995086294, -73.98570973065777 40.6977717342197, -73.9857282306354 40.697756003663855, -73.9857532576593 40.697742757526264, -73.9857826360432 40.697731167962964, -73.98582212470185 40.69772493948765, -73.98596233840593 40.697729622229105)), ((-73.98516545502119 40.697973326088515, -73.98533671463426 40.69832791755346, -73.98514910440628 40.698319653811126, -73.98516545502119 40.697973326088515)), ((-73.98602241871686 40.698244179584606, -73.98602915708337 40.69814760135855, -73.98617186582554 40.69815236699438, -73.98615809756309 40.69834965767832, -73.98602241871686 40.698244179584606)))",B233,6190,B233,B-02,B-02,B-02,B-02,Flatbush Ave. from Nassau St. to Concord St. between Bridge St. and Bridge Plaza Ct.,302,33,84,11201,B,0.312,False,Park,Yes,100003719,PARK,20100106000000.00000,19380303000000.00000,,DPR,False,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B233/,No,52,25,8,{ECD167CF-A5D5-42E3-8CEB-084CEBA72B32} +"MULTIPOLYGON (((-73.9404721735751 40.59785956405346, -73.94047269836686 40.59785928696433, -73.94074598686387 40.59782922196813, -73.94082931605121 40.59826931970412, -73.93939632769334 40.59842695416738, -73.9392753951902 40.59844025678718, -73.9391920760309 40.598000158832335, -73.93946536568112 40.59797009688196, -73.93951133865075 40.597923570371016, -73.93956383148733 40.597881242805556, -73.93962218921375 40.59784363973789, -73.9396856836603 40.59781123265089, -73.93975352292887 40.59778442455498, -73.93982486202492 40.59776354999453, -73.93989880995095 40.59774886874821, -73.93997444388216 40.59774056583651, -73.94005081980616 40.597738742522864, -73.94012698787334 40.59774342352545, -73.94020199476556 40.597754548914175, -73.94027490731641 40.597771981326844, -73.94034481369552 40.59779550146705, -73.94041084466366 40.597824818020676, -73.9404721735751 40.59785956405346)))",B235,5131,B235,B-15,B-15,B-15,B-15,Ave. V between Nostrand Ave. and Batchelder St.,315,46,61,11229,B,1.894,False,Herman Dolgon Playground,Yes,100004299,PARK,20100106000000.00000,19480225000000.00000,3595 NOSTRAND AVENUE,DPR,True,Herman Dolgon Playground,Y,Herman Dolgon Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B235/,No,41,19,9,{9F877C8F-717D-4258-846B-4BD77982BDB2} +"MULTIPOLYGON (((-73.96187594075163 40.755439141666045, -73.96172236311654 40.755372683869744, -73.96173173871655 40.75536600433452, -73.96173951341359 40.755361146889655, -73.96174556684893 40.755357364976575, -73.96176033876117 40.75534876735352, -73.96177431550213 40.75534116182161, -73.96178250188801 40.75533701320818, -73.9617892075926 40.75533361512447, -73.96180441919515 40.755326449445064, -73.96181993964748 40.75531967288441, -73.96183574644527 40.755313293539324, -73.96185182419117 40.75530731680774, -73.96186313808045 40.75530309448228, -73.96187425555621 40.75529858392898, -73.96188516714273 40.755293788746776, -73.96189585862533 40.755288716135084, -73.96190783559524 40.75528253632589, -73.96190924168087 40.755281764157246, -73.96190946438028 40.755281641762146, -73.96191653389877 40.75527775931943, -73.96192649281407 40.755271887714436, -73.96193618661127 40.75526576387948, -73.96194559989273 40.75525939321255, -73.96195472436479 40.755252782915065, -73.96196355173294 40.75524594198933, -73.96197206659858 40.75523887763443, -73.96201572685365 40.75520140039866, -73.96205927570358 40.75516399605034, -73.96210282687397 40.75512658988516, -73.96214474320935 40.7550881493859, -73.96214969335787 40.755083608863345, -73.96218665831168 40.75504970977127, -73.9622285745503 40.75501126924109, -73.96226215897732 40.75498079904104, -73.96230554855107 40.7549397601065, -73.96231396432921 40.75493188253726, -73.96232273168307 40.75492423020871, -73.96233184350146 40.75491681392454, -73.96234128556989 40.75490964088409, -73.96235104959351 40.75490272099008, -73.9623611237253 40.75489606324369, -73.96237149493503 40.75488967484454, -73.962382149009 40.754883562091486, -73.96239307528434 40.754877733985985, -73.96240426309893 40.75487219862911, -73.96241569350418 40.75486695871605, -73.9624273546522 40.75486202504898, -73.9624408360485 40.75485682902662, -73.9624424350284 40.75485625862753, -73.96245132061715 40.7548530908447, -73.96246359345459 40.75484910200347, -73.96247604018289 40.75484543920059, -73.96248864659005 40.754842106033315, -73.96250139609549 40.75483910609826, -73.9625247190561 40.75483432930289, -73.96257483624184 40.75483668961206, -73.96258138201472 40.75483957155488, -73.96258485510639 40.75484403828936, -73.96258537432462 40.754849397365774, -73.9625826688606 40.75485498682469, -73.96257935300365 40.7548594189357, -73.96257631986043 40.754862290562656, -73.96257548455995 40.75486308363654, -73.96257314819547 40.75486511081567, -73.96257073126485 40.75486721090948, -73.96256633514706 40.754870028062975, -73.96256158278625 40.75487249120183, -73.96250329465323 40.75489747747746, -73.96249879717321 40.75489943641369, -73.96249439317876 40.75490151154536, -73.96249008385492 40.7549037010719, -73.9624858739401 40.754906002293296, -73.96248177409392 40.75490841161105, -73.96247778431898 40.75491092452262, -73.96247391053473 40.754913543731476, -73.96247015629777 40.75491626203476, -73.9624665275316 40.754919074931834, -73.96246302778928 40.75492198152343, -73.96245966180963 40.754924978209054, -73.9624564319631 40.75492806138746, -73.96245334535686 40.754931227459, -73.9624504008108 40.754934469219144, -73.96244760779739 40.75493778847215, -73.9624449639509 40.754941180714596, -73.96242444628612 40.75496907438265, -73.96241705243288 40.754979126113405, -73.9623870465549 40.755020360367645, -73.96235704063929 40.7550615955143, -73.96232407310129 40.75510686214746, -73.96229110433326 40.75515213057152, -73.96225813670459 40.7551973989862, -73.96223075623342 40.75523612795219, -73.9622033757304 40.75527485691143, -73.96217599282762 40.755313584962714, -73.96215145946874 40.75534537374877, -73.96212607659142 40.75537790696806, -73.96212229475846 40.75538118626562, -73.96211611135736 40.75538448098231, -73.96210962905825 40.755386535604536, -73.96210293905519 40.75538733215206, -73.96209669253062 40.755387095965474, -73.96204576495259 40.75537850368459, -73.96203631305842 40.75537781078287, -73.96202800696626 40.75537800255434, -73.96201979752566 40.75537898860279, -73.96201179254732 40.75538068341581, -73.96200626612317 40.75538233852305, -73.96200096211317 40.75538437101512, -73.96199589002484 40.75538672146185, -73.96199112207884 40.75538941690228, -73.961986657127 40.75539239430067, -73.96198181147739 40.75539636843262, -73.96197746774531 40.75540066331001, -73.96197435228652 40.75540450743948, -73.96194214569454 40.75544988947708, -73.96193280546998 40.75546306528658, -73.96187594075163 40.755439141666045)), ((-73.95977163437631 40.75713354158952, -73.95995782993347 40.75690506635917, -73.96016644730784 40.7569937384872, -73.96032284454547 40.75705997508687, -73.96015258708859 40.75729265637179, -73.95977163437631 40.75713354158952)), ((-73.96080023142736 40.75579845326545, -73.9609444790047 40.75568470360429, -73.96122443055987 40.755805883724754, -73.96111757111032 40.755935816733704, -73.96080023142736 40.75579845326545)), ((-73.9602790176073 40.7564022273948, -73.96038451637995 40.75625840350985, -73.9606461554984 40.75636937960383, -73.96054067489318 40.75651317851799, -73.96032309375298 40.75642092266481, -73.9602790176073 40.7564022273948)), ((-73.9592853149068 40.75774459847287, -73.95938952867186 40.75760989988954, -73.95948027605816 40.75764844284465, -73.95938513535211 40.75778629197362, -73.95935554036211 40.757773931108865, -73.9592853149068 40.75774459847287)))",M108P,5582,M108P,M-06,M-06,M-06,M-06,"E. 53 St. to E. 54 St. at Sutton Pl.; Foot of E. 55 St., E. 56 St., E. 57 St.",106,"4,5",17,10022,M,0.85,False,Sutton Parks,No,100004994,PARK,20100106000000.00000,,,DPR/CDOT,False,Sutton Parks,N,Sutton Parks,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M108P/,Yes,73,28,12,{B085EE53-26D3-41CF-9466-BB5E2E248A25} +"MULTIPOLYGON (((-73.96967801303215 40.748599841867666, -73.96868581165907 40.74818233853813, -73.96865629872454 40.748162043905715, -73.96863510802768 40.7481430698733, -73.96861701098133 40.74812230557291, -73.96859982611747 40.748095590972895, -73.96858688233137 40.74806444163303, -73.96858132186865 40.74803947808244, -73.96858147856918 40.74799343073647, -73.9685933494993 40.7479518963205, -73.96861132826581 40.74791950280607, -73.96886903124043 40.74760771840498, -73.96907560862151 40.74769714480385, -73.96876702970742 40.74811890371481, -73.96927642095629 40.74833941260668, -73.96958499766727 40.7479176514438, -73.97003470198868 40.7481123182941, -73.96967801303215 40.748599841867666)))",M158,4680,M158,M-06,M-06,M-06,M-06,"1 Ave., bet. E. 41 St. and E. 42 St.",106,4,17,10017,M,1.093,False,Robert Moses Playground,Yes,100003729,PLGD,20100106000000.00000,19370405000000.00000,724 1 AVENUE,DPR,True,Robert Moses Playground,Y,Robert Moses Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M158/,No,74,28,12,{470AD9E2-291F-47FE-AA8B-E06D52A7A44E} +"MULTIPOLYGON (((-73.97520910500639 40.73573350806717, -73.97526363372523 40.73565875152887, -73.9764034113416 40.73613364026805, -73.97559225446456 40.737244117775816, -73.97498473212013 40.736972512273816, -73.97501605877412 40.736915200860736, -73.97504081749683 40.736866727398755, -73.97507717130767 40.73678898003575, -73.9751093647662 40.73671164149228, -73.97513943023468 40.73662931186597, -73.97516560585827 40.736545875568574, -73.97518573969471 40.73647003734734, -73.97520164912461 40.73639828561677, -73.97521400328678 40.736329974858776, -73.97522461179454 40.73625377527533, -73.97522972787854 40.73620114890154, -73.97523333506439 40.736156651986775, -73.9752355082952 40.7361002158312, -73.97523972888379 40.7360329497083, -73.97523772935057 40.73595967946237, -73.97523441162406 40.73590067837878, -73.97522646194442 40.735837258406946, -73.97521692197859 40.73578124747004, -73.97520910500639 40.73573350806717)))",M164,5385,M164,M-06,M-06,M-06,M-06,"E. 23 St. To E. 25 St., FDR Drive",106,4,13,10010,M,2.436,False,Asser Levy Playground,Yes,100004766,PLGD,20100106000000.00000,19380101000000.00000,384 ASSER LEVY PLACE,DPR,True,Asser Levy Playground,Y,Asser Levy Playground,Neighborhood Plgd,Buildings/Institutions,http://www.nycgovparks.org/parks/M164/,No,74,27,12,{B8DA42E1-56CE-4B82-AE6D-7549C5869F50} +"MULTIPOLYGON (((-73.90294481771772 40.776650133941764, -73.90353785648827 40.776164950118655, -73.90353789444016 40.77616491863283, -73.90356241632323 40.77614441309181, -73.90374282386115 40.77626909720169, -73.90380984286091 40.776315414707845, -73.90382817242424 40.77632808297508, -73.90383023152789 40.77632950568735, -73.90383169538475 40.776330517273415, -73.90382674512469 40.77633456720654, -73.90382382525428 40.77633695560503, -73.90370763627392 40.776432015623506, -73.90398535220166 40.77661900267598, -73.90373935743348 40.776820027435186, -73.90346179875418 40.776633145286254, -73.90321701647036 40.776833409022146, -73.90294481771772 40.776650133941764)))",Q395,4934,Q395,Q-01,Q-01,Q-01,Q-01,"37 St., 38 St., bet. 20 Rd. and 20 Ave.",401,22,114,11105,Q,0.809,False,Steinway Playground,Yes,100000283,PARK,20090423000000.00000,19620723000000.00000,20-27 37 STREET,DPR/DOE,False,Steinway Playground,Y,Steinway Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q395/,No,36,13,14,{DEC5F7B5-6E29-4EC3-8B5B-52F08250435A} +"MULTIPOLYGON (((-73.95845947997974 40.802987489692285, -73.9596741358682 40.80133868868822, -73.96088969023602 40.80185198943325, -73.95967503947554 40.805431856657904, -73.9583299055696 40.80727909735103, -73.95824685938635 40.80739780609737, -73.95775873699279 40.808067821330276, -73.95760419626595 40.80837653819211, -73.95742726982358 40.80872104046332, -73.95729531353169 40.80898787044959, -73.95704401750727 40.809471782128156, -73.95699989287704 40.80957974258122, -73.95697783903906 40.80967369680538, -73.95697044749978 40.80977582131137, -73.95697568112668 40.8098419432204, -73.95699170680653 40.809921093955744, -73.95701467886046 40.80999100726967, -73.95707070354023 40.810100634938834, -73.95715428460069 40.8102071021702, -73.95677381324747 40.810736585203784, -73.95516450930957 40.81005702407986, -73.95744769058524 40.806929333147615, -73.95818543010691 40.80592172932694, -73.95822292552926 40.80586878370842, -73.958264586921 40.805809514484544, -73.95832922931073 40.80568261711604, -73.95835996484836 40.805599131303524, -73.95840460602204 40.80539264150664, -73.95841405765398 40.80532918858851, -73.95841742245098 40.8052679595059, -73.95841515451765 40.805197254245925, -73.95841451625438 40.805166106672296, -73.95840856122643 40.80512243574837, -73.9584036589388 40.80499851457452, -73.95840132034407 40.80497833625965, -73.9583938443805 40.804863421841006, -73.95838667869506 40.80466548336264, -73.95837254673927 40.8044625770128, -73.95837056826245 40.8043763553553, -73.95836726437801 40.80426630782454, -73.95836322360901 40.804191908966914, -73.95836121379136 40.80415013680926, -73.95835024232277 40.80383402268476, -73.95834140317285 40.80373897545258, -73.95834108947791 40.80364753419495, -73.95833582041513 40.80361202382415, -73.95833167685865 40.80337444103559, -73.95834735578705 40.80324840028391, -73.95835683071482 40.80321550308277, -73.95845947997974 40.802987489692285)))",M056,6247,M056,M-09,M-09,M-09,M-09,"W 110 St To W 123 St, Manhattan Av To Morningside Av",109,7,26,10026,M,29.888,False,Morningside Park,No,100005044,PARK,20100106000000.00000,18700816000000.00000,,DPR,True,Morningside Park,Y,Morningside Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M056/,No,70,30,13,{D52FD362-4EAB-42D1-AD13-BFA798AB246B} +"MULTIPOLYGON (((-73.90157502622878 40.83148953028202, -73.90167914415322 40.8314959225594, -73.90178358854348 40.83149721281559, -73.90186486161375 40.83149343058435, -73.90194535211144 40.83148408257081, -73.90195070795274 40.83148361706598, -73.9019560912494 40.831483828756525, -73.90196135381264 40.8314847139145, -73.90196635222769 40.83148624720417, -73.90197094903267 40.83148838618548, -73.90197501627279 40.83149107311796, -73.90197844498708 40.831494233168016, -73.90198113808748 40.831497779805645, -73.90198302339833 40.83150161571612, -73.90198404891038 40.831505635497315, -73.90198418633325 40.83150972836425, -73.90198343108914 40.831513782651776, -73.90198180468361 40.83151768581619, -73.90197935113865 40.83152133163648, -73.90197613936358 40.831524620216186, -73.90188280966991 40.83160522971341, -73.90187365205043 40.831611911699895, -73.90186314949352 40.83161733364911, -73.90185159979876 40.83162134363043, -73.90183932916348 40.83162382755828, -73.90182668387602 40.831624714588145, -73.90181402201127 40.831623980711385, -73.90155683438947 40.83154206674809, -73.90155147766379 40.83153991989765, -73.90154666725596 40.83153712335588, -73.90154253938756 40.83153375648272, -73.90153921128997 40.831529913029854, -73.90153677409094 40.83152570113448, -73.90153529756219 40.83152123972165, -73.90153482301405 40.83151665309496, -73.90153536329551 40.83151207093674, -73.90153690399049 40.8315076211049, -73.90153940104672 40.83150342963113, -73.90154278552727 40.83149961442135, -73.90154696124496 40.83149628165188, -73.90155181068994 40.8314935257742, -73.90155719859584 40.83149142321488, -73.90156297312252 40.83149003417744, -73.90156897179186 40.83148939724442, -73.90157502622878 40.83148953028202)))",X062,5639,X062,X-03,X-03,X-03,X-03,E. 169 St and Franklin Ave,203,16,42,10456,X,0.1,False,Beatty Plaza,Yes,100004214,PARK,20100106000000.00000,18901128000000.00000,,DPR,True,Beatty Plaza,Y,Beatty Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X062/,No,79,32,15,{7A34EC23-C63E-4BE1-8BFA-DF020801BD68} +"MULTIPOLYGON (((-73.8867684430967 40.6553834280068, -73.88698795780455 40.65528873563519, -73.88736097124875 40.65579027295074, -73.88675011422059 40.65605493950759, -73.88649757784462 40.65571477667904, -73.88688922692998 40.65554583094714, -73.8867684430967 40.6553834280068)))",B345,5188,B345,B-05,B-05,B-05,B-05,Wortman Ave. between Vermont St. and New Jersey Ave.,305,42,75,11207,B,0.8,False,Ethan Allen Playground (PS 306),Yes,100004079,PARK,20100106000000.00000,19621121000000.00000,970 WORTMAN AVENUE,DPR/DOE,False,Ethan Allen Playground,Y,Ethan Allen Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B345/,No,60,19,8,{7052C2AB-47F4-4BAA-87C5-DCB6CA088E6C} +"MULTIPOLYGON (((-73.89820279062852 40.83189644170437, -73.8983709377879 40.83187941666001, -73.89840377089746 40.83206178773416, -73.8983250239922 40.83209387051219, -73.89822443061323 40.83201663907405, -73.89820279062852 40.83189644170437)))",X330,4737,X330,X-03,X-03,X-03,X-03,Jennings St bet. Union Av and Prospect Av,203,16,42,10456,X,0.07,False,P.S. 186 Day Treatment Program,No,100004950,PARK,20100106000000.00000,20021120000000.00000,745 JENNINGS STREET,DPR,False,P.S. 186 Day Treatment Program,Y,P.S. 186 Day Treatment Program,Greenthumb,Garden,http://www.nycgovparks.org/parks/X330/,No,79,32,15,{DAD94F69-1E70-49DF-81D1-85FAC10CD6C1} +"MULTIPOLYGON (((-73.81569375848434 40.75605171401711, -73.81553622145158 40.75570822723506, -73.81595563491229 40.755983031390734, -73.81594157272194 40.755986762236944, -73.81569375848434 40.75605171401711)))",Q209,5893,Q209,Q-07,Q-07,Q-07,Q-07,"Parsons Blvd., 147 St. bet. Elm Ave. and 45 Ave.",407,20,109,11355,Q,0.138,False,Lawrence Triangle,Yes,100000347,PARK,20090423000000.00000,19390714000000.00000,,DPR,True,Lawrence Triangle,N,Lawrence Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q209/,No,40,16,6,{4544D43E-290A-4FE1-B9FA-5C4B211F64EF} +"MULTIPOLYGON (((-73.93241824208202 40.76795838129106, -73.932578704551 40.76776046710447, -73.93288609633365 40.76791542518008, -73.93291484546522 40.767929918423306, -73.9327943569862 40.768106552276464, -73.93241824208202 40.76795838129106)))",Q123,5442,Q123,Q-01,Q-01,Q-01,Q-01,14 St. bet. 31 Ave. and 31 Dr.,401,22,114,11106,Q,0.207,False,Astoria Health Playground,Yes,100000161,PLGD,20090423000000.00000,19361105000000.00000,38-16 14 STREET,DPR,False,Astoria Health Playground,Y,Astoria Health Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q123/,No,36,12,12,{273FE9F6-5F80-420C-90FE-1599D8E56809} +"MULTIPOLYGON (((-73.98142360703135 40.72241789806783, -73.98150136734259 40.7224506873304, -73.98156066074104 40.72247568868015, -73.9815748554401 40.72248143800387, -73.98140144975783 40.72271904465508, -73.98132809054428 40.72268811018895, -73.98125033240784 40.72265532351232, -73.98142360703135 40.72241789806783)))",M329,4991,M329,M-03,M-03,M-03,M-03,E. 4 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.11,False,Generation X,No,100004796,PARK,20100106000000.00000,20021120000000.00000,272 EAST 4 STREET,DPR,False,Generation X,N,Generation X,Greenthumb,Garden,http://www.nycgovparks.org/parks/M329/,No,74,26,12,{C1C71B7B-08C4-4D50-A923-69BA9449CBA0} +"MULTIPOLYGON (((-74.20052904810152 40.53335585828491, -74.20059266909252 40.533328634890154, -74.20080927507007 40.5337911979391, -74.19905219212245 40.53426064485778, -74.19910429405809 40.53422637310395, -74.19915980473708 40.5341897702452, -74.19921525618837 40.534153116131996, -74.19927064959214 40.534116410762344, -74.19938126225738 40.534042846254025, -74.19943648033846 40.53400598711762, -74.19949164037465 40.533969077625635, -74.19954674236322 40.533932116877594, -74.19960178394635 40.53389510577822, -74.19965676866212 40.53385804342102, -74.19971169297231 40.53382093071259, -74.19976655923749 40.53378376764904, -74.19982136273657 40.53374655423862, -74.1998760114374 40.533709694979585, -74.19993150031839 40.53367358617362, -74.19998781759624 40.53363823414378, -74.20004494914066 40.533603649719865, -74.20010287492285 40.533569844642386, -74.20016157608637 40.533536827948396, -74.20022103731834 40.533504609569206, -74.2002812374101 40.533473201247574, -74.20034215632796 40.53344261292307, -74.20040377875407 40.53341285272614, -74.20046608229718 40.53338393150104, -74.20052904810152 40.53335585828491)))",R094,6076,R094,R-03,R-03,R-03,R-03,"Drumgoole Rd. W, Carlton Ave. and Vernon Ave.",503,51,123,10309,R,1.178,False,Park,No,100003694,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/R094/,No,62,24,11,{CE74137C-E7F7-42DF-93CF-1C40B1B3A00E} +"MULTIPOLYGON (((-73.91654082204063 40.823053769209174, -73.91657768603694 40.82298264407659, -73.91691488559638 40.82308556751033, -73.91687802190236 40.82315669365004, -73.91654082204063 40.823053769209174)))",X351,5468,X351,X-01,X-01,X-01,X-01,Courtlandt Ave. bet. E. 158 St. and E. 159 St.,201,17,40,10451,X,0.064,False,811 Family and Friends Garden,No,100008324,PARK,20110712000000.00000,20100429000000.00000,809 COURTLANDT AVENUE,DPR,False,811 Family and Friends Garden,Y,811 Family and Friends Garden,,Garden,http://www.nycgovparks.org/parks/X351/,No,79,32,15,{7D81E773-9BE5-4639-ADD5-B76F0A57D88E} +"MULTIPOLYGON (((-73.978211389293 40.72420486495396, -73.9782949347933 40.72409166871136, -73.9783216100723 40.724093263135735, -73.97840840570024 40.723975881854, -73.97846293106281 40.72399882713643, -73.97837193287097 40.724121982635346, -73.97833759410507 40.724107532912114, -73.97825281951951 40.72422229944137, -73.97823349085505 40.72421416599161, -73.978211389293 40.72420486495396)))",M370,5017,M370,M-03,M-03,M-03,M-03,E. 7 St. bet. Ave. C and Ave. D,103,2,9,10009,M,0.029,False,Urban Botanical/Sam and Sadie Koenig,No,100004362,PARK,20100106000000.00000,20021120000000.00000,237 EAST 7 STREET,DPR,False,Urban Botanical Soc./Sam and Sadie Koenig Garden,N,Urban Botanical/Sam and Sadie Koenig,Greenthumb,Garden,http://www.nycgovparks.org/parks/M370/,No,74,27,12,{73B2B05B-CF52-491B-97A3-7EF59831E9A6} +"MULTIPOLYGON (((-73.89688169607504 40.74852816886922, -73.89745310536185 40.74846679708941, -73.89778206054719 40.74855602894204, -73.89751604683498 40.74914990007674, -73.89694939104078 40.74890863502569, -73.89688169607504 40.74852816886922)))",Q067A,5879,Q067A,Q-02,Q-02,Q-02,Q-02,"Broadway, 37 Ave. bet. 65 St. and 69 St.",402,26,108,11377,Q,0.896,False,General Hart Playground,Yes,100000150,PARK,20090423000000.00000,19241001000000.00000,,DPR,True,General Hart Playground,Y,General Hart Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q067A/,No,34,16,14,{1026A14E-AB1B-491D-B260-5E93E9014385} +"MULTIPOLYGON (((-73.95219075695849 40.661086845771706, -73.95228121005086 40.6610812731129, -73.95231417976844 40.6613794631048, -73.95222372392428 40.66138501507648, -73.95219075695849 40.661086845771706)))",B480,5271,B480,B-09,B-09,B-09,B-09,Lincoln Rd. between Rogers Ave. and Nostrand Ave.,309,40,71,11225,B,0.065,False,Lincoln Rd Block Association,No,100003921,PARK,20100106000000.00000,20021120000000.00000,316 Lincoln Road,DPR,False,Lincoln Rd Block Association,N,Lincoln Rd Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B480/,No,43,20,9,{A3C4FCAA-AA70-49A1-BBC7-132BFA75BA2A} +"MULTIPOLYGON (((-73.92706900971802 40.82485894686719, -73.92708703927617 40.82524278380216, -73.92729897986571 40.82524842864908, -73.92711205347112 40.82556191460101, -73.92707854323125 40.82561811136387, -73.92669505899117 40.82548607797387, -73.92681608297595 40.82528311916315, -73.92695156084349 40.82505591632232, -73.92706900971802 40.82485894686719)), ((-73.92665866023826 40.82564162627466, -73.92700159087275 40.82575318295956, -73.92685138580467 40.826011840711956, -73.92651205560898 40.82589804184511, -73.92665866023826 40.82564162627466)))",X348,4820,X348,X-04,X-04,X-04,X-04,E 157 St bet. River Av and Gerard Av,204,8,44,10451,X,0.67,False,River Avenue Parks,No,100004862,PARK,20100106000000.00000,19731230000000.00000,750 - 802 RIVER AV,DPR,True,River Avenue Parks,Y,River Avenue Parks,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X348/,No,84,29,15,{C3B0E363-75CE-43BE-AEC9-57D3320CCEC5} +"MULTIPOLYGON (((-73.98677782187565 40.742758442738086, -73.98801009231018 40.74104203294749, -73.9889474119814 40.74143132137946, -73.9885746360764 40.742661095696825, -73.98810810401082 40.743310928973756, -73.98677782187565 40.742758442738086)))",M052,6584,M052,M-05,M-05,M-05,M-05,"Broadway, Madison Ave. bet. E. 23 St. and E. 26 St.",105,2,13,10010,M,6.234,False,Madison Square Park,Yes,100005139,PARK,20100106000000.00000,18470503000000.00000,2 MADISON AVENUE,DPR,True,Madison Square Park,Y,Madison Square Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M052/,No,75,28,12,{8A754321-81B1-4953-97CA-E1304ED685E9} +"MULTIPOLYGON (((-73.91846674587376 40.653882373927324, -73.91873001102361 40.65411889476307, -73.91813861019304 40.654098983664674, -73.91846674587376 40.653882373927324)))",B171,6133,B171,B-17,B-17,B-17,B-17,"Linden Blvd., Church Ave., E. 92 St.",317,42,67,11236,B,0.139,False,Linden Sitting Area,Yes,100004062,PARK,20100106000000.00000,19251113000000.00000,,DPR,False,Linden Sitting Area,N,Linden Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B171/,No,58,20,9,{E2EB6A17-0459-4DA8-8399-97AFDA72756C} +"MULTIPOLYGON (((-73.94979522061585 40.71627686420484, -73.94979215875847 40.71625346671099, -73.94979174249002 40.71624989240398, -73.94979168134192 40.716249369180815, -73.94979105848002 40.716243533602295, -73.94979128936816 40.71623711036288, -73.94979175386057 40.71623479805495, -73.94979241317628 40.71623151868388, -73.94979530908675 40.71622540187965, -73.94979709803796 40.71622293436101, -73.9497990623301 40.71622022468148, -73.94980263932227 40.71621649722793, -73.94980305499892 40.71621614350862, -73.94980625014063 40.716213427161556, -73.94981038016245 40.716210828288304, -73.94981110836278 40.71621037024603, -73.94981632958608 40.716207757440095, -73.94981947397291 40.71620643145849, -73.94982102249008 40.71620577656192, -73.94983702006249 40.71620401853332, -73.9498630699707 40.716201154551484, -73.94991483918557 40.71619595502588, -73.94995955535705 40.71619146471516, -73.94996722267761 40.71619069360871, -73.94999483118221 40.716187920325424, -73.95000455676997 40.716186943893625, -73.95000994648483 40.71618689580551, -73.95001416298254 40.716187333483326, -73.95001758186018 40.716187688868274, -73.95002626231009 40.71619000694813, -73.95003291732273 40.71619294099786, -73.95003933584194 40.716197177983034, -73.9500417224807 40.71619941048331, -73.95004416707222 40.71620169523828, -73.95004754726072 40.71620630011374, -73.95004997921366 40.71621123686605, -73.95005115498365 40.71621524104507, -73.9500516537271 40.716219327777274, -73.95005147326538 40.716221666324316, -73.95005126050417 40.71622446501806, -73.95005080737283 40.71622584260225, -73.95004949779674 40.71622982769275, -73.95004784639953 40.716233529874685, -73.95004554067914 40.71623702465529, -73.95004278741013 40.71624076418045, -73.95004268202553 40.7162408343745, -73.950015852799 40.71625865373402, -73.95001569531446 40.71625875812481, -73.95000621553253 40.71626493871342, -73.95000525050352 40.716265567751094, -73.94993118120544 40.71631386324877, -73.94991939243916 40.716321548479215, -73.94990203727572 40.71633286394493, -73.94987910031574 40.71634782044278, -73.9498700341267 40.71635323756739, -73.94986400127733 40.71635549251968, -73.94986271810043 40.71635583145324, -73.94985837968704 40.71635697321187, -73.94985214549858 40.716357843991496, -73.94984502416148 40.71635807412143, -73.94983794845972 40.71635742447226, -73.9498318200043 40.716356189903735, -73.9498267037512 40.71635455234738, -73.94982079301361 40.716351809518414, -73.94981934040685 40.716350826428524, -73.94981477439666 40.71634773478736, -73.94981033688035 40.71634374719426, -73.94980721492288 40.71634042565165, -73.94980683546144 40.71633983565198, -73.94980420641747 40.716335751591984, -73.94980383205157 40.71633468162249, -73.94980275737528 40.71633160771221, -73.94979522061585 40.71627686420484)))",B223T,5525,B223T,B-01,B-01,B-01,B-01,"Jackson St., Lorimer St., Meeker Ave.",301,34,94,11211,B,0.067,False,Father Giorgio Triangle,Yes,100004018,PARK,20100106000000.00000,19460514000000.00000,,DPR/CDOT,False,Father Giorgio Triangle,Y,Father Giorgio Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223T/,No,50,18,12,{C2B7B62C-A570-428B-A12D-EB68DF401F7A} +"MULTIPOLYGON (((-74.20136413768117 40.5473248859545, -74.20133366856392 40.54725828312944, -74.20154473464306 40.54721463615744, -74.20192979033537 40.54713500581568, -74.20209846987939 40.54710012335716, -74.2022433201785 40.54707016709036, -74.20237296071976 40.54704335597818, -74.20247631224584 40.547320781652964, -74.20258843671594 40.547247644653496, -74.20271252184969 40.54716670586003, -74.20288356771269 40.54705513352592, -74.20309936947645 40.5469143667825, -74.20321149965204 40.546841224657115, -74.20332362958216 40.546768082421806, -74.20343575926401 40.54669493917604, -74.2035478875227 40.54662179672296, -74.20366001671361 40.54654865325735, -74.20377947026714 40.546470731984584, -74.20389706912978 40.546394021489306, -74.2040131585031 40.546318293330074, -74.20401466654197 40.546317310875175, -74.20412634112155 40.546244462231265, -74.20434964125482 40.54609879892238, -74.20440433423285 40.54606312077417, -74.20434576931933 40.54592434181024, -74.20427190684126 40.545749313115046, -74.20422552122344 40.545639395090824, -74.20417739491374 40.54552534851469, -74.2041308407661 40.54541503361707, -74.20408290383914 40.54530143332559, -74.20403528456822 40.5451885879929, -74.2039878640454 40.54507621686547, -74.20393961131336 40.54496186783266, -74.20388812091585 40.5448398484171, -74.20376704556412 40.5445529296088, -74.2036445527207 40.54426265060589, -74.2036367941699 40.5442442629517, -74.20603663783687 40.54370925500612, -74.20631571852289 40.54424122966261, -74.20969834653116 40.55252070499671, -74.20973153222582 40.55261058740379, -74.20975268085593 40.55266786653152, -74.20994016250883 40.55314337502871, -74.20998746310582 40.553259535096764, -74.21011075597313 40.55356231497781, -74.21018396789098 40.553742106635866, -74.21023091476083 40.55385739373396, -74.21033316997246 40.554108506222086, -74.21073240705013 40.555088906552115, -74.21070778028222 40.55510590959096, -74.21036876963058 40.5552210413842, -74.21002683011498 40.55533102110343, -74.20968209862575 40.555435807048426, -74.20933470851438 40.555535357526956, -74.2089847978608 40.55562963174011, -74.2086325047673 40.5557185951942, -74.20847144128234 40.55575469358382, -74.20830829177201 40.55578485654565, -74.20814343269143 40.55580901404796, -74.20797724408487 40.55582711046299, -74.20781010840436 40.55583910456938, -74.20764241050381 40.55584496775078, -74.20605782391311 40.555871320126336, -74.20587290331791 40.55587792754311, -74.20568864784833 40.555891582807014, -74.20550551779672 40.55591224997682, -74.20532397223454 40.55593987960859, -74.20514446662722 40.55597440065487, -74.20496744931224 40.55601572677475, -74.2047933650414 40.55606375632728, -74.20462264788115 40.556118366980996, -74.2044557247774 40.556179422911434, -74.20429301672789 40.55624677209731, -74.20413492814897 40.556320243637686, -74.20398185634573 40.55639965583963, -74.20396605220431 40.5564071348795, -74.2037344577617 40.55616477972899, -74.20367901381348 40.55609637398141, -74.20362267705217 40.556017009459644, -74.20360599035315 40.55599134426916, -74.20355451893658 40.55590410947569, -74.20350972732003 40.555814757387054, -74.20347176632146 40.555723582216515, -74.20344076199783 40.5556308899271, -74.20121329703147 40.55075087173542, -74.2000923708356 40.54828129408234, -74.20002836307441 40.54815456160774, -74.20122737429274 40.547877438976734, -74.20139208461958 40.547839367639725, -74.20140167344181 40.54781723923648, -74.20140485647684 40.547795810071655, -74.20140261950937 40.547774310265815, -74.20139504756392 40.54775353033378, -74.2013824191932 40.54773423523565, -74.20143212617971 40.547721264187004, -74.20147775568648 40.54757323894683, -74.20136413768117 40.5473248859545)))",R104,5074,R104,R-03,R-03,R-03,R-03,"West Shore Exwy., Huguenot Ave., Alverson Ave., W. Castor Pl.",503,51,123,"10309, 10312",R,173.994,False,South Shore Country Club,No,100004871,PARK,20100106000000.00000,19661201000000.00000,200 HUGUENOT AVENUE,DPR,True,South Shore Country Club,N,South Shore Country Club,Large Park,Managed Sites,http://www.nycgovparks.org/parks/R104/,No,62,24,11,{85DB16EE-2064-45BD-8CC2-E86BBE7054B7} +"MULTIPOLYGON (((-73.9447823949202 40.72010374338001, -73.94554110775012 40.71964250518097, -73.94572536791458 40.71988923465473, -73.94555644538153 40.71999192649165, -73.94549993013209 40.720026283021674, -73.94543773084371 40.7200640956887, -73.94538240792428 40.720097727815364, -73.94532474030244 40.72013278520948, -73.94527231492319 40.72016465636112, -73.94521025629301 40.72020238252263, -73.94515235757791 40.720237579299024, -73.94509215914253 40.720274175242345, -73.94503270548311 40.72031032035412, -73.94526351802295 40.72052419154477, -73.94505786104845 40.72064795151033, -73.94496333528353 40.720540509760504, -73.94494598068717 40.72051583469785, -73.94492978634578 40.72048645952612, -73.94491731593368 40.72045806678887, -73.94491381899168 40.72043736869806, -73.94491255571694 40.72041493549283, -73.94491447289322 40.72038799675744, -73.94491873735498 40.72036648291579, -73.94492649307286 40.720342463724556, -73.94493921390021 40.72031557157939, -73.94495980169572 40.720284693935106, -73.9447823949202 40.72010374338001)))",B223U,4623,B223U,B-01,B-01,B-01,B-01,"Graham Ave., Meeker Ave., Humbolt St., BQE",301,33,94,11222,B,0.762,False,Lentol Garden,No,100004609,PARK,20100106000000.00000,19460514000000.00000,178 BAYARD STREET,DPR/CDOT,True,Lentol Garden,Y,Lentol Garden,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223U/,No,50,26,12,{4549676F-DB6B-4F3F-A44C-5700571274AE} +"MULTIPOLYGON (((-73.93124925287898 40.82414544508186, -73.93124589772339 40.82410453355202, -73.93122130371604 40.82410569763475, -73.93119287155078 40.82379365522712, -73.93120065872698 40.82384509170026, -73.93094312802918 40.820674880481604, -73.93096521559359 40.82068106210811, -73.93126194588002 40.820764098556644, -73.93148290407402 40.82082593117707, -73.93152563135001 40.821340110266924, -73.93177086391871 40.821333279488194, -73.9319191146372 40.82132915008942, -73.93220373749308 40.821217231205736, -73.93222287944128 40.82120970440386, -73.93226652478721 40.821209766069614, -73.93227893611183 40.82149583672706, -73.93227893845146 40.821495867345284, -73.93236764678866 40.82257760357081, -73.93252242817236 40.82446495555702, -73.93252708856326 40.82452178227363, -73.93241508955629 40.82452708274121, -73.93171594387402 40.82456016660314, -73.93172043615805 40.82461495452975, -73.93133345163209 40.82463326505037, -73.93128942011644 40.82463534868431, -73.93127616326412 40.82447365585393, -73.93126973036057 40.824395199018866, -73.93124925287898 40.82414544508186)))",X344,6387,X344,X-04,X-04,X-04,X-04,Major Deegan Exwy bet. E. 150 St and E. 153 St,204,8,44,10451,X,11.57,False,Mill Pond Park,Yes,100005120,PARK,20100106000000.00000,20060829000000.00000,65 EAST 149 STREET - 1 EAST 150 STREET,DPR,Part,Mill Pond Park,Y,Mill Pond Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X344/,Yes,77,29,15,{2FA96C90-FF72-4EB0-AA68-AAC28C91AF02} +"MULTIPOLYGON (((-73.77361044340488 40.68355200480731, -73.77399208903871 40.68342506263365, -73.77408745855917 40.68358719437692, -73.77361044340488 40.68355200480731)))",Q490,5936,Q490,Q-12,Q-12,Q-12,Q-12,"120 Ave., Victoria Dr. bet. 171 St. and 171 St.",412,27,113,11434,Q,0.083,False,Locust Manor Civic Association,No,100000210,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,Locust Manor Civic Association,N,Locust Manor Civic Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q490/,No,29,10,5,{635D1B47-50B1-4AC7-9026-4DD0BFF46C28} +"MULTIPOLYGON (((-73.77587394026898 40.747722801720506, -73.7765453595238 40.74753945324572, -73.7769535669087 40.748403850747586, -73.77628782251048 40.74859248239539, -73.77587394026898 40.747722801720506)))",Q293,5328,Q293,Q-11,Q-11,Q-11,Q-11,56 Ave. bet. 201 St. and 202 St.,411,20,111,11364,Q,1.964,False,Saul Weprin Playground,Yes,100000270,PARK,,19400228000000.00000,54-38 202 STREET,DPR/DOE,False,Saul Weprin Playground,Y,Saul Weprin Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q293/,No,25,11,6,{1D213904-E0BC-4374-8469-F11D06DBC6B3} +"MULTIPOLYGON (((-73.93521372163848 40.806851337805625, -73.93521321268724 40.80685067115078, -73.93539794054709 40.80692862560528, -73.93543818134683 40.80694560723472, -73.93524447620761 40.807209872313564, -73.93524298595368 40.80720922401812, -73.93525059663344 40.80719600807628, -73.9352572123719 40.80718343002848, -73.9352623717397 40.80717070077925, -73.93526697183596 40.807157860454474, -73.93527102096819 40.80714489735228, -73.93527449658174 40.807131850181634, -73.93527740697019 40.80711872164866, -73.93527811718995 40.8071147238345, -73.93527986295071 40.80710489407373, -73.93528170865193 40.80709100582269, -73.93528294286118 40.80707708571093, -73.93528358098446 40.80706313464753, -73.93528359435078 40.807049387646515, -73.93528304302946 40.80703622745344, -73.93528182346891 40.80702167561519, -73.9352800261318 40.80700776550787, -73.93527765733457 40.80699409551273, -73.93527469116948 40.80698049632156, -73.93527114895508 40.80696698235411, -73.93526702002218 40.80695355720646, -73.93526231856966 40.806940244299454, -73.93525704102593 40.806927060740456, -73.93525120278726 40.80691401734404, -73.93524480147931 40.806901118611215, -73.93523783826481 40.806888387955595, -73.93523033919625 40.806875846103146, -73.93522229954064 40.806863485847124, -73.93521372163848 40.806851337805625)))",M208B,4877,M208B,M-11,M-11,M-11,M-11,"Lexington Ave., E. 129 St. to E. 130 St.",111,9,25,10035,M,0.059,False,Each One Teach One,No,100004122,PLGD,20100106000000.00000,19470116000000.00000,2145 LEXINGTON AVENUE,DPR,True,Each One Teach One,Y,Each One Teach One,Neighborhood Plgd,Triangle/Plaza,http://www.nycgovparks.org/parks/M208B/,No,68,30,13,{DB84FCBD-38C6-4A89-AE06-9DE14F9092DD} +"MULTIPOLYGON (((-73.8471858043584 40.669606352863234, -73.84676523081288 40.66948320338247, -73.84671810851236 40.66956953349336, -73.84671476626217 40.66956850425201, -73.84676314630988 40.66947987229566, -73.84676318906614 40.669479794007636, -73.84718603416036 40.66960361379624, -73.8471858043584 40.669606352863234)))",Q433B,6413,Q433B,Q-10,Q-10,Q-10,Q-10,S. Conduit Ave. and 88 St.,410,32,106,11414,Q,0.003,False,,No,100000170,PARK,,19651203000000.00000,,DPR,True,Park,,Park,EXWY,Strip,,No,23,15,8,{F039BA02-16A0-4D61-8506-3D96F4A2E567} +"MULTIPOLYGON (((-73.9804655535945 40.723912278868944, -73.9806427109694 40.72366983045584, -73.98070781731859 40.723697097098054, -73.98077545284994 40.723725423124556, -73.98084087648482 40.723752822119145, -73.98088480787007 40.72377122142258, -73.98070729232047 40.72401416092231, -73.98059809924692 40.72396814185973, -73.9804655535945 40.723912278868944)))",M313,5962,M313,M-03,M-03,M-03,M-03,"E. 5 St. and E. 6 St., Ave. B and Ave. C",103,2,9,10009,M,0.178,False,6BC Botanical Garden,No,100004283,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,6BC Botanical Garden,N,6BC Botanical Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M313/,No,74,26,12,{73A4A77D-E541-442C-873D-96C344399B93} +"MULTIPOLYGON (((-73.93979408651596 40.80861658672469, -73.93997386054491 40.80837071479988, -73.94003224465155 40.808395287361016, -73.940096910058 40.808422503416956, -73.94016194988131 40.808449877218045, -73.94015233719881 40.8084630258049, -73.94011741896408 40.80851078180133, -73.93998217514743 40.80869575033292, -73.93991713752806 40.8086683764327, -73.93985247077192 40.808641159375846, -73.93979408651596 40.80861658672469)))",M363,4960,M363,M-11,M-11,M-11,M-11,E. 129 St. bet. 5 Ave. and Madison Ave.,111,9,25,10035,M,0.163,False,Harlem Rose Garden,No,100003814,PARK,20100106000000.00000,20021120000000.00000,6 EAST 129 STREET,DPR,False,Harlem Rose Garden,N,Harlem Rose Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M363/,No,70,30,13,{E939CD55-A55B-461A-9E1C-AC60CDF64227} +"MULTIPOLYGON (((-73.74025260251084 40.77496115173988, -73.74028451423152 40.77494904431917, -73.74000644332249 40.77518308745194, -73.73996889023903 40.775214695142395, -73.73992107495512 40.77519331005971, -73.73967082211287 40.77508138559885, -73.7396941759892 40.77508008309636, -73.73971239369808 40.7750790661544, -73.73973674156638 40.77507742189507, -73.7397638143485 40.77507505977737, -73.73978590975882 40.77507296647086, -73.7398123278203 40.77506991037368, -73.73983694051262 40.77506688081151, -73.73986223227176 40.77506346645977, -73.7398870423905 40.77505962687664, -73.73990823268967 40.77505634643678, -73.73993093402218 40.77505196988484, -73.73996484375921 40.775045433093474, -73.73999362875043 40.77503959342719, -73.74002049819103 40.77503317761015, -73.74004539587263 40.77502723280607, -73.74007537692943 40.775019654237944, -73.74010768765055 40.77501064731, -73.74013805226885 40.775001303697174, -73.74017213787349 40.77499036286363, -73.74019467855487 40.77498312859006, -73.74023088592598 40.774969391046994, -73.74025260251084 40.77496115173988)))",Q222,6273,Q222,Q-11,Q-11,Q-11,Q-11,"Glenwood St., 39 Rd.",411,19,111,11363,Q,0.3,False,Glenwood Landing,Yes,100000080,PARK,,19581023000000.00000,,DPR,True,Glenwood Landing,N,Glenwood Landing,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q222/,No,26,11,3,{572C0A1D-8D92-4BF1-9002-3F0202A4099C} +"MULTIPOLYGON (((-73.92265451859865 40.831590362048246, -73.92280852342158 40.831330008791916, -73.92318771987587 40.83145958564871, -73.92355775915678 40.83083400105086, -73.92317856791824 40.8307044253987, -73.92332680162237 40.83045382173194, -73.92409094752516 40.83071494039761, -73.92341543911982 40.83185698049064, -73.92265451859865 40.831590362048246)))",X254,4763,X254,X-04,X-04,X-04,X-04,River Ave. bet. E 164 St. and E. 165 St.,204,8,44,10452,X,1.194,False,Lot,No,100004215,PARK,20100106000000.00000,19830817000000.00000,1000 RIVER AVENUE,DPR,False,Lot,Y,Lot,Parking Lot,Lot,http://www.nycgovparks.org/parks/X254/,No,84,29,15,{5C50ECBB-B67C-41C2-8FFF-D1A696AAE61A} +"MULTIPOLYGON (((-73.97828779475543 40.72504443670816, -73.97832022485656 40.725000333179906, -73.9785502168134 40.725097254828746, -73.97857996413917 40.725109790951095, -73.97857209881252 40.72512048753598, -73.97854753652436 40.72515389365174, -73.97853404814299 40.725148209825846, -73.97828779475543 40.72504443670816)))",M325B,85738,M325B,M-03,M-03,M-03,M-03,Ave. C bet. E. 8 St. and E. 9 St.,103,2,,10009,M,0.03,False,,No,100042711,PARK,,20021120000000.00000,143 AVENUE C,DPR,False,Flower Door Garden,,Flower Door Garden,,Garden,,No,74,,12,{8668014E-E4E9-4A1A-8392-DE1EA7F8BC57} +"MULTIPOLYGON (((-73.99836965458 40.69165014289997, -73.99844189741923 40.691500966709995, -73.99860586347698 40.691547423580126, -73.99866898031479 40.69159546759912, -73.99871371242689 40.6916399939753, -73.99874212086664 40.69167088548864, -73.99878597163367 40.691718569025326, -73.99888713533349 40.69182552037824, -73.99894195296532 40.69189989066327, -73.99897952409746 40.6919588223749, -73.99902339502644 40.69202763365559, -73.99909221373966 40.69217168838149, -73.99913350399208 40.69228955053953, -73.99916103021603 40.69242312833351, -73.99918855719145 40.69260123198078, -73.99918727958719 40.692687782070294, -73.99894148839078 40.692621604078624, -73.99906957058919 40.69235722899274, -73.9990775968651 40.69233892252936, -73.99908001520234 40.69233022719555, -73.99908207512424 40.6923172679299, -73.99908231547519 40.69230378184966, -73.99908067709114 40.6922905758139, -73.9990774226089 40.6922782333571, -73.99907356472242 40.69226839792346, -73.99906263096669 40.69224948526146, -73.99905441462714 40.69223919863459, -73.9990431199329 40.69222793132289, -73.99903389439301 40.69222039575322, -73.99902142131802 40.6922119335274, -73.99900989231277 40.692205494760984, -73.99899488979679 40.69219871466871, -73.9989804444879 40.692193624842325, -73.99896449547502 40.69218942290635, -73.99849380010895 40.69205925125775, -73.99863258551977 40.691772665625315, -73.99845936376659 40.6917247606461, -73.99842255594358 40.691681126688884, -73.99842954112366 40.69166670506808, -73.99836965458 40.69165014289997)), ((-73.99950513757922 40.69184167539605, -73.9994871079189 40.69179522595493, -73.99952280584198 40.69180462116087, -73.99958448158097 40.69182666866041, -73.99963898200673 40.69185268106336, -73.99969116362419 40.691884807017054, -73.99975236379267 40.69193510351825, -73.9997873483427 40.691973290742766, -73.99982381646925 40.69202646879864, -73.99984632791751 40.692073562958996, -73.99986293700661 40.692130369140386, -73.99986880970232 40.69218080597892, -73.99986727397791 40.69222557497989, -73.99986399916865 40.69224863711335, -73.99985846112133 40.69227378933445, -73.9998443291046 40.69232940409652, -73.99982381317395 40.69237808489711, -73.99960333851725 40.69282846778709, -73.99961180422062 40.69270862035329, -73.99961868712381 40.69255408965605, -73.99960148326124 40.692263361691815, -73.99959116028765 40.69216907164337, -73.99958083846046 40.692085258161, -73.99956707504344 40.692009302540406, -73.99953266469318 40.69192810855124, -73.99950513757922 40.69184167539605)), ((-73.99881434896653 40.69163968167756, -73.99882995769322 40.69161091584863, -73.9990673902039 40.691678186341875, -73.99913006957577 40.69183119660355, -73.99918168309091 40.6919569167034, -73.99922641390582 40.69206168449625, -73.99926082363268 40.69217168958798, -73.99929867356617 40.69231050570083, -73.9993193186188 40.69239693795928, -73.999343403951 40.692501704676374, -73.99934684454092 40.692603852580106, -73.99934684387384 40.6926719502683, -73.99934340152647 40.692747906712526, -73.99932275452487 40.69283957700622, -73.99929522680837 40.692800289263744, -73.99928146362556 40.6927190953322, -73.99925737832515 40.69250694243722, -73.99921952858071 40.692349792770855, -73.99918167987637 40.69221883360842, -73.99914727022225 40.69211144808598, -73.9990887745644 40.6919962035866, -73.99905987157389 40.69194591600638, -73.99904060214908 40.69191238974804, -73.99898464180694 40.69182111236806, -73.99893418008847 40.69175730155885, -73.99887729907803 40.6916967009935, -73.99881434896653 40.69163968167756)))",B223DA,5511,B223DA,B-02,B-02,B-02,B-02,"Atlantic Ave., Columbia Pl., State St.",302,33,84,11201,B,1.363,False,Adam Yauch Park,Yes,100008299,PARK,20100106000000.00000,19490514000000.00000,46 COLUMBIA PLACE,DPR,True,Adam Yauch Park,Y,Adam Yauch Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223D/,No,52,26,7,{EA09EAE2-E70F-4930-B3C4-2E8AB6614A9A} +"MULTIPOLYGON (((-73.99588874233505 40.721728612672614, -73.99600627755684 40.72143340186994, -73.996176308612 40.72147120562998, -73.99615403243612 40.72152715714775, -73.99634077130301 40.72156867582316, -73.99622218968453 40.72186652271882, -73.99588874233505 40.721728612672614)))",M218,4903,M218,M-02,M-02,M-02,M-02,Spring St. and Mulberry St.,102,1,5,10012,M,0.266,False,Desalvio Playground,Yes,100004405,PLGD,20100106000000.00000,19541028000000.00000,44 SPRING STREET,DPR,True,DeSalvio Playground,Y,DeSalvio Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M218/,No,65,26,7,{9E803E9C-F305-47FE-97CC-80201A7B3721} +"MULTIPOLYGON (((-73.89822232336533 40.822493378405355, -73.89851433821063 40.822422037302104, -73.89881059953848 40.82242485327111, -73.89879190038052 40.82310185800113, -73.89822185752527 40.82309478715156, -73.89822232336533 40.822493378405355)))",X211,6667,X211,X-02,X-02,X-02,X-02,Rev James Polite Av bet. E 163 St and E 164 St,202,17,41,10459,X,0.83,False,Stebbins Playground,Yes,100005184,PARK,20100106000000.00000,19600823000000.00000,1010 REV JAMES POLITE Av,DPR/DOE,False,Stebbins Playground,Y,Stebbins Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X211/,No,79,32,15,{287D2FAF-C061-422A-9F65-F5A8BD15C2F3} +"MULTIPOLYGON (((-73.91391316637994 40.67559976311378, -73.91396752399694 40.67501173126797, -73.91477273042024 40.67505532745506, -73.91474592227848 40.67534536627101, -73.91472794172044 40.67534439209639, -73.91470039804533 40.67564238639893, -73.91391316637994 40.67559976311378)))",B387,6216,B387,B-16,B-16,B-16,B-16,Hopkinson Ave. bet. Pacific St. and Dean St.,316,41,73,11233,B,1.095,False,Saratoga Ballfields,Yes,100003907,PARK,20100106000000.00000,19900117000000.00000,,DPR/DOE,False,Hilltop Playground,Y,Hilltop Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B387/,No,55,25,8,{CEECA966-53E8-4F33-9233-BB4F55FB841B} +"MULTIPOLYGON (((-73.87725680873234 40.71438253883072, -73.87734546680564 40.71449672179825, -73.87734682321263 40.71450243158429, -73.87734601019912 40.71450820119427, -73.87734373741556 40.714512980487584, -73.87734056019899 40.71451661336689, -73.877336521216 40.7145197095237, -73.87733126196198 40.71452222084879, -73.87732574532843 40.71452375304364, -73.87729881263152 40.7145245798268, -73.87729867297338 40.714524584180495, -73.87722970275674 40.71452565970152, -73.87722518335603 40.714523572899765, -73.87722060744173 40.71452068458252, -73.87721534157242 40.714515863032034, -73.87721194399336 40.714511268601846, -73.87720968967909 40.71450601711723, -73.87721708851291 40.71437830729579, -73.87721937230205 40.71437462303832, -73.87722374662027 40.71437130121488, -73.87723055515981 40.7143693633715, -73.87723806817615 40.71436982704207, -73.87724326323575 40.71437196499247, -73.87725680873234 40.71438253883072)))",Q383,5765,Q383,Q-05,Q-05,Q-05,Q-05,"Gray St., 77 St., 66 Rd.",405,30,104,11379,Q,0.028,False,Middle Village Veterans Triangle,Yes,100000099,PARK,20090423000000.00000,,,DPR,False,Middle Village Veterans Triangle,Y,Middle Village Veterans Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q383/,No,28,15,6,{4EF385E8-FFB6-4E60-8E90-776CBA9AAFD5} +"MULTIPOLYGON (((-73.92688097964339 40.61747305224182, -73.92762019135989 40.61742986279944, -73.92776055964875 40.618788639973886, -73.92702667022654 40.61883151941919, -73.92688097964339 40.61747305224182)))",B291,5157,B291,B-18,B-18,B-18,B-18,Ave. N between E. 49 St. and Utica Ave.,318,46,63,11234,B,2.295,False,Power Playground,Yes,100004065,PARK,20100106000000.00000,19580123000000.00000,4902 AVENUE N,DPR,False,Power Playground,Y,Power Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B291/,No,59,19,8,{0730FAB1-52EA-4D28-A4C4-7AFDDDF9139A} +"MULTIPOLYGON (((-73.90823475719237 40.69293063500905, -73.9095412949636 40.69161242258424, -73.91013412919851 40.69195494079343, -73.90882759639923 40.693273186907106, -73.90823475719237 40.69293063500905)))",B049,6019,B049,B-04,B-04,B-04,B-04,"Wilson Ave., Knickerbocker Ave., bet. Halsey St. and Weirfield St.",304,37,83,11207,B,2.76,False,Irving Square Park,Yes,100003756,PARK,20100106000000.00000,18950731000000.00000,,DPR,False,Irving Square Park,Y,Irving Square Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B049/,No,54,18,7,{156CC049-59A1-4D1F-8321-A1FEDC82DF1B} +"MULTIPOLYGON (((-73.98169431947319 40.72119552136446, -73.98180433287719 40.72104522844182, -73.98188806145002 40.721070621606664, -73.98177216607087 40.721228333876724, -73.98169431947319 40.72119552136446)))",M372,5568,M372,M-03,M-03,M-03,M-03,"E. 2 St., E. Houston St. bet. Ave. B and Ave. C",103,2,9,10009,M,0.034,False,Allied Productions/Le Petit Versailles,No,100003810,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Allied Productions/Le Petit Versailles,N,Allied Productions/Le Petit Versailles,Greenthumb,Garden,http://www.nycgovparks.org/parks/M372/,No,74,26,12,{20EF7E46-60AB-4C2D-AB0D-875A7502BAF8} +"MULTIPOLYGON (((-73.98053886906368 40.59081808801841, -73.98102321934236 40.59076493100391, -73.98118461297527 40.5916163867878, -73.98069922534417 40.591669656870444, -73.98065742592595 40.591646547824425, -73.98050640880382 40.59084979263586, -73.98053886906368 40.59081808801841)))",B272,5822,B272,B-13,B-13,B-13,B-13,W. 11 St. at Ave. W,313,47,60,11223,B,1.072,False,Marlboro Playground,Yes,100004578,PARK,20100106000000.00000,19531031000000.00000,,DPR,True,Marlboro Playground,Y,Marlboro Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B272/,No,45,23,11,{6C27764F-1A75-49CF-99C6-95E4A32F4A56} +"MULTIPOLYGON (((-74.00506496661217 40.68451930207107, -74.0049729057717 40.68449356489818, -74.00494480932522 40.684551992347615, -74.00489775208138 40.68453883425084, -74.004614696864 40.68445968357938, -74.0045490991653 40.68444134092318, -74.00447790017465 40.68442143155357, -74.00460268957211 40.68416195436491, -74.00502253888196 40.684279356610695, -74.0051616530191 40.68431825715625, -74.00523205005359 40.684337941911565, -74.0052997405044 40.68435686941628, -74.00536742981078 40.68437579688118, -74.00527074867252 40.684576841066786, -74.00520305564066 40.68455791354563, -74.00513536619607 40.684538985083925, -74.00506496661217 40.68451930207107)))",B390,5214,B390,B-06,B-06,B-06,B-06,President St. and Van Brunt St.,306,39,76,11231,B,0.467,False,Mother Cabrini Park,Yes,100004879,PARK,20100106000000.00000,19930827000000.00000,45 PRESIDENT STREET,DPR,False,Mother Cabrini Park,Y,Mother Cabrini Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B390/,No,51,26,7,{D9313A4F-93D7-4C1E-BBDE-51D5D86C39E5} +"MULTIPOLYGON (((-73.85515938562745 40.755236135333575, -73.8549041901941 40.75474486880892, -73.85573990205839 40.75451358143077, -73.85599952863595 40.75501281843455, -73.85578190409406 40.75507580406356, -73.8557724702703 40.7550541638865, -73.85515938562745 40.755236135333575)))",Q415,6299,Q415,Q-03,Q-03,Q-03,Q-03,37 Av bet. 112 and 113 Sts,403,21,115,11368,Q,1.085,False,Louis Armstrong Playground,Yes,100000064,PARK,20090423000000.00000,19650617000000.00000,,DPR/DOE,False,Louis Armstrong Playground,Y,Louis Armstrong Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q415/,No,35,13,14,{4ABEC75F-FE4F-4EDB-A196-CFCD25F79DCA} +"MULTIPOLYGON (((-73.93127291047392 40.803847529854245, -73.93127707352046 40.803843016334156, -73.93128114062846 40.80383845232881, -73.93128511416617 40.8038338396406, -73.93128899057662 40.80382918006842, -73.93129276985876 40.803824474512744, -73.9312964496417 40.8038197238727, -73.93130003229273 40.803814930851246, -73.9313035130725 40.80381009454499, -73.93130689434848 40.80380521765686, -73.93131017256538 40.803800300184825, -73.93131334772234 40.80379534302929, -73.93131642100069 40.80379034979303, -73.93131938884528 40.80378532047391, -73.93132225244123 40.80378025507264, -73.9313250106007 40.80377515629002, -73.93132766213766 40.80377002502586, -73.93133020586433 40.803764863980945, -73.93133264296863 40.80375967045451, -73.93133497107475 40.80375444984811, -73.9313371913679 40.80374920216251, -73.93133930029194 40.803743928296, -73.93134130140115 40.803738629151326, -73.93134319113753 40.803733307427784, -73.93134496950216 40.80372796222491, -73.93134663767628 40.80372259714539, -73.93134819328804 40.80371721398886, -73.93134963633929 40.80371181095429, -73.93135096801048 40.80370639254489, -73.93135218711653 40.803700958759904, -73.93135329128641 40.80369551049854, -73.93135428407356 40.803690049563826, -73.93135516073588 40.803684577753955, -73.93135592601266 40.803679095972285, -73.93135657634782 40.803673605117154, -73.93135711173865 40.803668107890054, -73.9313575333693 40.80366260519224, -73.9313578412398 40.803657097023724, -73.9313580329763 40.803651586985, -73.93135811094898 40.803646075077545, -73.93135807515598 40.80364056310235, -73.93135792322734 40.80363505105801, -73.9313576575293 40.80362954254789, -73.9313572780629 40.803624036671536, -73.9313567824535 40.803618537929985, -73.93135619186862 40.803613204823705, -73.93135461298762 40.8036020845228, -73.93137075989732 40.80360161507137, -73.93200476402315 40.8038718558859, -73.93200076525049 40.803889616768124, -73.93161777556787 40.803846501257524, -73.93157279245065 40.80384928502219, -73.93152497197347 40.80385352679268, -73.9314809128787 40.803860073354684, -73.93143577669258 40.803868784959064, -73.93138474999908 40.80387935347055, -73.93133849192205 40.803891133269275, -73.93129068283783 40.80390610709499, -73.93124547808087 40.803923784851285, -73.931213623555 40.80393639174303, -73.93117417240973 40.803955058950635, -73.93116147634353 40.803962383231706, -73.93114562978636 40.803939340807624, -73.9311477200966 40.8039383343979, -73.93115378601355 40.80393531234445, -73.93115979038399 40.80393221551256, -73.93116572609185 40.80392904930095, -73.93117159906619 40.80392581011113, -73.9311774010069 40.803922502440734, -73.93118313428506 40.80391912539065, -73.93118879771549 40.803915678960124, -73.93119438655526 40.803912165847876, -73.93119990317446 40.80390858605537, -73.93120534401781 40.80390493958044, -73.93121071026678 40.80390123002583, -73.93121599599783 40.80389745558704, -73.93122120476524 40.803893617166615, -73.93122633182595 40.80388971746328, -73.93123137836413 40.803885757378296, -73.93123634082451 40.8038817369095, -73.93124121802212 40.80387765605619, -73.93124601232334 40.80387351842178, -73.93125071780281 40.80386932400282, -73.9312553368307 40.803865072800654, -73.93125986703504 40.80386076661489, -73.93126430604387 40.80385640724517, -73.93126865385716 40.80385199469142, -73.93127291047392 40.803847529854245)))",M208F,5848,M208F,M-11,M-11,M-11,M-11,"E. 127 St., 2 Ave., and Harlem River Drive",111,8,25,10035,M,0.267,False,Harlem River Park,Yes,100003797,PARK,20100106000000.00000,19560112000000.00000,,DPR,True,Harlem River Park,N,Harlem River Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M208F/,No,68,29,13,{FE3D27A0-BAAF-468D-9140-960231051021} +"MULTIPOLYGON (((-73.98983909685951 40.684779454764694, -73.99018035700696 40.68428055289506, -73.99080995618436 40.684525125931074, -73.99046830904055 40.68502459874518, -73.98983909685951 40.684779454764694)))",B361,5397,B361,B-06,B-06,B-06,B-06,Warren St. to Baltic St. between Hoyt St. and Smith St.,306,33,76,11201,B,0.918,False,Boerum Park,Yes,100004456,PARK,20100106000000.00000,19671115000000.00000,364 WARREN STREET,DPR/DOE,False,Boerum Park,Y,Boerum Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B361/,No,52,25,7,{0D363ACB-0C56-4A43-8292-82ABE226E33E} +"MULTIPOLYGON (((-73.90699859013269 40.85605373758798, -73.90706988223155 40.85593685184006, -73.90710269284885 40.85594607678235, -73.90714886535996 40.85589547572676, -73.90720104810126 40.855838286990334, -73.90725609573555 40.855777958718804, -73.90727610784754 40.855756028031145, -73.90754438970856 40.855897201740355, -73.90739676311854 40.85605931944394, -73.90732867622636 40.85617095269897, -73.90725198399797 40.8562966914921, -73.90692189860144 40.85617947616524, -73.90699859013269 40.85605373758798)))",X244,4789,X244,X-05,X-05,X-05,X-05,W. 181 St. bet. Grand Ave. and Davidson,205,14,46,10453,X,0.381,False,Grand Playground,Yes,100004206,PARK,20100106000000.00000,19790717000000.00000,2146 GRAND AVENUE,DPR,False,Grand Playground,Y,Grand Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X244/,No,86,33,15,{07022560-03A5-45E3-86E9-0499CA959B62} +"MULTIPOLYGON (((-73.99699305334475 40.69808464653801, -73.99728798916665 40.69746659982659, -73.99728763182885 40.697467089696886, -73.99753274132607 40.69695370498437, -73.99753722467655 40.69694431453666, -73.99772665780044 40.69654753823604, -73.99772954727234 40.696541485948664, -73.99776843321828 40.69646003715566, -73.99790988383145 40.69616376038942, -73.99792737545792 40.69612712245298, -73.99803437414513 40.69590300296713, -73.99811544679501 40.695733188364926, -73.99829968590004 40.695347275659785, -73.99827626709842 40.695341192348664, -73.99824768395635 40.69533376719044, -73.99825470840689 40.69532673699511, -73.99826322476073 40.695320737008366, -73.99827297509003 40.69531594822893, -73.99828366597428 40.695312514734226, -73.99829497678209 40.6953105400782, -73.99830656558709 40.695310083689385, -73.99831808336523 40.69531115816983, -73.99832918346004 40.69531373289713, -73.99833953104725 40.69531772952188, -73.99834881614933 40.69532302827176, -73.99835675718465 40.6953294679512, -73.99836782403774 40.69533688202907, -73.99837703688932 40.695345642346155, -73.99838411770894 40.6953554850487, -73.9983888499896 40.69536611296502, -73.99839109294513 40.695377203709775, -73.9983907779605 40.69538842229154, -73.99838791569087 40.69539943011771, -73.99838259014572 40.69540989399953, -73.996506743856 40.69935030995474, -73.99640803162714 40.6995219076115, -73.9963284669682 40.69964747341346, -73.99629440660884 40.699698335948206, -73.99627511155313 40.69972714991217, -73.99627445244907 40.6997281341506, -73.9962702410458 40.69973442319085, -73.9962622951114 40.69974628898124, -73.99622066206307 40.69973495107467, -73.99622051416384 40.699734910546766, -73.99621991901738 40.69973474843505, -73.99621972142397 40.69973469439783, -73.99621988354339 40.69973435400954, -73.99622271649052 40.69972839811541, -73.99622460157165 40.69972443502345, -73.99622814926306 40.69971697439685, -73.99623938400806 40.69969335343103, -73.99625697215488 40.69965636997145, -73.99646995486137 40.69920855200755, -73.99652824699486 40.699085984166686, -73.99677873234116 40.69855929986126, -73.99683738424886 40.698435954721646, -73.99692482448405 40.69825208689233, -73.99693332531291 40.69823421195023, -73.99692315241369 40.698231408383975, -73.99699287585052 40.69808501934546, -73.99699305334475 40.69808464653801)))",B223DK,69225,B223DK,B-02,B-02,B-02,B-02,BQE over-hang bet. Remsen St. and Orange St.,302,33,84,11201,B,1.093,False,Brooklyn Heights Promenade,Yes,100008298,PARK,,19460501000000.00000,,DPR,False,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Large Park,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DK/,No,52,26,7,{488F2833-438A-40A2-85C2-ABE921972BB9} +"MULTIPOLYGON (((-73.91369727874657 40.66414971759702, -73.91408045554238 40.66409347720887, -73.91409752792198 40.66416000841036, -73.91411549931186 40.664230047791584, -73.91373258789346 40.6642862488724, -73.91372540650664 40.66425847516069, -73.91371447968534 40.66421622914026, -73.91370191728323 40.664167649459664, -73.91369727874657 40.66414971759702)))",B566,12299,B566,B-16,B-16,B-16,B-16,Herzl St. bet. Dumont Ave. and Blake Ave.,316,41,73,11212,B,0.117,False,,,100024472,PARK,20160222000000.00000,20160119000000.00000,,DPR,False,Brownsville Community Farm,,Brownsville Community Farm,,Garden,,No,55,19,9,{C9561614-8E5E-4394-93D4-BA91937AEC91} +"MULTIPOLYGON (((-73.8822720700898 40.837165965397155, -73.88227768828666 40.83715292206621, -73.88237849007109 40.83717796770526, -73.88238765355023 40.837180244495, -73.88248768863362 40.83720509925223, -73.88248446358642 40.837210501634615, -73.88248018136316 40.83721767331183, -73.8822720700898 40.837165965397155)))",X148J2,5651,X148J2,X-03,X-03,X-03,X-03,N/B Cross Bronx Exwy Exit Ramp bet. Boone Av and W Farms Rd,203,17,42,10460,X,0.03,False,Boone Slope,Yes,100005135,PARK,20100106000000.00000,19460131000000.00000,,DPR,True,Boone Slope,Y,Boone Slope,Undeveloped,Strip,http://www.nycgovparks.org/parks/X148J2/,No,85,32,15,{77866B6C-88F1-4FD5-AAA1-F3C426BD2A5C} +"MULTIPOLYGON (((-73.87748842605443 40.66870147269839, -73.87749750938941 40.668722458100675, -73.87749879092473 40.66872657842752, -73.87749912968427 40.6687308040114, -73.87749851643147 40.66873501237225, -73.87749696795176 40.66873907925668, -73.87749452940757 40.668742884043496, -73.87749127432575 40.66874631694795, -73.87748729632486 40.668749275410846, -73.87748271382823 40.668751674009094, -73.877477660609 40.66875344084381, -73.87738140258594 40.66876557990786, -73.87737655599976 40.66876623932318, -73.87737163134896 40.668766260188875, -73.87736677528049 40.66876564446237, -73.87736212613768 40.66876440759991, -73.87735782222414 40.66876258667009, -73.87735398762176 40.66876023493578, -73.87735073455751 40.66875742095585, -73.87734815749529 40.66875422587756, -73.87734633076889 40.66875074433447, -73.87734530977768 40.66874707724345, -73.87734512271177 40.668743329995095, -73.87734577527898 40.66873961425944, -73.87734724835944 40.668736037177624, -73.8773494991869 40.66873270226337, -73.87735246253278 40.6687297085039, -73.87735605190544 40.66872714135603, -73.87736016190729 40.66872507725126, -73.87744727211081 40.66868905036617, -73.87745146015612 40.6686876338126, -73.87745589086965 40.66868673981689, -73.87746045067306 40.66868639167144, -73.87746502601459 40.66868659826054, -73.8774695010036 40.66868735405758, -73.87747376095518 40.66868864093014, -73.87747770067561 40.66869042454661, -73.87748121853714 40.66869266067342, -73.87748422712552 40.66869529338548, -73.8774866496902 40.66869825596299, -73.87748842605443 40.66870147269839)))",B155,6102,B155,B-05,B-05,B-05,B-05,"New Lots Ave., Dumont Ave., Atkins Ave.",305,42,75,11208,B,0.017,False,Triangle,Yes,100004026,PARK,20100106000000.00000,,,DPR,False,Triangle,N,Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B155/,No,60,19,8,{ACC73692-D9D7-4F63-A948-7720B6F79E7D} +"MULTIPOLYGON (((-73.935491161156 40.6931081515735, -73.93544862887185 40.692891882103474, -73.93500789509733 40.69294209700667, -73.93494145578067 40.69260425086522, -73.93608310217742 40.69247417389636, -73.93613805618492 40.69274985778952, -73.93610229698159 40.692753931673536, -73.93602807727368 40.692762388583716, -73.93595735632363 40.69277044666477, -73.93601273981028 40.69304829207815, -73.935491161156 40.6931081515735)))",B359,5200,B359,B-03,B-03,B-03,B-03,Kosciuszko St. to Dekalb Ave. between Lewis Ave. and Stuyvesant Ave.,303,36,81,11221,B,1.211,False,Eleanor Roosevelt Playground (PS 81),Yes,100004916,PARK,20100106000000.00000,19640617000000.00000,982 DE KALB AVENUE,DPR/DOE,False,Eleanor Roosevelt Playground,Y,Eleanor Roosevelt Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B359/,No,56,25,8,{90DF17A4-965E-453D-B0E3-12A8C879B03E} +"MULTIPOLYGON (((-74.00413959028121 40.581031523179604, -74.00626275557556 40.580804639121794, -74.00626758645136 40.580831471769486, -74.00635834288116 40.58082196715582, -74.00635830270544 40.58082177714752, -74.0064473712729 40.58081189073478, -74.00667875891253 40.58191886809739, -74.00658983661403 40.58192946789487, -74.00527864548104 40.58208575488805, -74.00126296517792 40.58136620837852, -74.00414442032047 40.5810583568165, -74.00413959028121 40.581031523179604)))",B379,4592,B379,B-13,B-13,B-13,B-13,Bay View Ave. between Sea Gate Ave. and W. 33 St.,313,47,60,11224,B,8.892,False,Coney Island Creek Park,Yes,100004937,PARK,20100106000000.00000,19840309000000.00000,3871 POLAR STREET,DPR,False,Coney Island Creek Park,N,Coney Island Creek Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/B379/,Yes,46,23,8,{A09BA01B-11FA-4187-85BF-05F7B3C02295} +"MULTIPOLYGON (((-73.9974421394935 40.72159322733412, -73.99745045435395 40.72159141479288, -73.9974594378433 40.72159234972034, -73.99752969647975 40.72162072270239, -73.99753576222777 40.72162627447358, -73.99753853397836 40.721632837446265, -73.99753838230585 40.721637482271134, -73.99753648124513 40.72164282855552, -73.99735699744083 40.72188601527217, -73.99735176341778 40.72188903996329, -73.99734470324839 40.721888113176384, -73.99734087093307 40.72188312606638, -73.99734095395543 40.72187886575791, -73.99743636094033 40.72159887430084, -73.9974421394935 40.72159322733412)))",M170,6356,M170,M-02,M-02,M-02,M-02,"Kenmare St., Lafayette St., and Cleveland Pl.",102,1,5,10012,M,0.047,False,Lt. Joseph Petrosino Square,Yes,100004585,PARK,20100106000000.00000,19380101000000.00000,,DPR/CDOT,False,Petrosino Square,Y,Petrosino Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M170/,No,66,26,10,{6E574CF5-41E1-45F8-B91E-D5FE475794B3} +"MULTIPOLYGON (((-73.76415523695596 40.70740390906586, -73.76403655751514 40.70712472247291, -73.7644925870568 40.70732587497951, -73.76415523695596 40.70740390906586)))",Q325,5905,Q325,Q-12,Q-12,Q-12,Q-12,"Hollis Ave., 104 Ave., 194 St.",412,27,103,11412,Q,0.113,False,Gladys Warren Triangle,Yes,100000227,PARK,20090423000000.00000,19500427000000.00000,,DPR,True,Gladys Warren Triangle,N,Gladys Warren Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q325/,No,33,14,5,{34026FB6-1871-46AE-9109-DD5F9A33FBC2} +"MULTIPOLYGON (((-73.98514060716049 40.69672526852312, -73.98516794175015 40.69624096291713, -73.98695281369714 40.69630696063756, -73.98693471234658 40.69678555666031, -73.98514060716049 40.69672526852312)))",B061,5454,B061,B-02,B-02,B-02,B-02,"Jay St., Bridge St. bet. Tillary St. and Cathedral Pl.",302,33,84,11201,B,1.976,False,McLaughlin Park,Yes,100004708,PARK,20100106000000.00000,19040927000000.00000,243 JAY STREET,DPR,True,McLaughlin Park,Y,McLaughlin Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B061/,No,52,25,8,{5E9A1A8B-6204-47F3-BEE7-86D88D38164D} +"MULTIPOLYGON (((-73.97674155822914 40.716628272331505, -73.97674628009811 40.71661908177815, -73.97728779351966 40.71677904033896, -73.97749662871598 40.71684072757091, -73.97748906117144 40.71685517207496, -73.97727865372033 40.71725671592453, -73.97689122330043 40.717995630666245, -73.97615400398371 40.71777198725354, -73.97656926654818 40.71696365310827, -73.9766391098063 40.71682769837709, -73.97667491779322 40.71675799444612, -73.97674155822914 40.716628272331505)))",M165,4846,M165,M-03,M-03,M-03,M-03,Corner of Baruch Pl. and Mangin St.,103,2,7,10002,M,2.32,False,Baruch Playground,Yes,100003899,PLGD,20100106000000.00000,19570627000000.00000,288 DELANCEY STREET,DPR/NYCHA,True,Baruch Playground,Y,Baruch Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M165/,No,74,26,7,{A613F20F-2AFC-4522-9607-C18EACFBEC1A} +"MULTIPOLYGON (((-73.91423095187697 40.84534053350745, -73.91475517623375 40.84533773165546, -73.91475514653446 40.84533777395665, -73.91480307106968 40.84533751760334, -73.91480953867993 40.84532806810583, -73.91524774541155 40.8455100121988, -73.91523907605966 40.845522053522, -73.91480089184529 40.8453400760949, -73.91475297727996 40.8453408790538, -73.91458209496481 40.84558549668292, -73.91417503692836 40.84541835843404, -73.91423095187697 40.84534053350745)))",X148C1,5708,X148C1,X-05,X-05,X-05,X-05,Fetherbed La bet. Davidson Av and Jerome Av,205,14,46,10452,X,0.213,False,Park,Yes,100004902,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Featherbenches,N,Featherbenches,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148C1/,No,77,29,15,{B53A112E-89AD-4C97-84F8-7B0503DA454F} +"MULTIPOLYGON (((-73.95704055316381 40.596705535388175, -73.95777731726236 40.59662601403575, -73.95788124235996 40.59717503509286, -73.95751399317734 40.59721526403146, -73.95752949416364 40.59729715248187, -73.95754360462455 40.59737169935551, -73.95717831541678 40.59741171272024, -73.95704055316381 40.596705535388175)))",B197,5100,B197,B-15,B-15,B-15,B-15,Avenue V bet. E. 13 St. and E. 14 St.,315,48,61,11229,B,1.056,False,Mellett Playground,Yes,100004000,PARK,20100106000000.00000,19400404000000.00000,1301 AVENUE V,DPR,False,Mellett Playground,Y,Mellett Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B197/,No,45,19,11,{5553E4F1-5521-4BDC-B998-D5183580032D} +"MULTIPOLYGON (((-73.95564604448505 40.709914973617714, -73.95593677805775 40.709449579582014, -73.95618670815826 40.70954073285919, -73.95588697233183 40.71000305783059, -73.95564604448505 40.709914973617714)))",B223PC,4649,B223PC,B-01,B-01,B-01,B-01,"Rodney St., S. 3 St. and S. 4 St.",301,34,90,11211,B,0.319,False,Rodney Playground South,Yes,100004393,PARK,20100106000000.00000,19520206000000.00000,286 SOUTH 3 STREET,DPR,True,Rodney Playground South,Y,Rodney Playground South,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223PC/,No,53,18,7,{1C125CC0-D0E3-4DDB-8BFE-C77AD1742035} +"MULTIPOLYGON (((-73.96995801577084 40.673454465972284, -73.97064264228067 40.6724362257937, -73.97073850519742 40.67249179399365, -73.97082919645203 40.67255218576263, -73.97091429866748 40.67261712274801, -73.97099342049088 40.67268630499193, -73.97106619659243 40.6727594136323, -73.9711322912128 40.672836112704694, -73.97119140052887 40.67291604914249, -73.9712734600124 40.67302576951685, -73.97134777737615 40.673138643308334, -73.97141414574776 40.67325435259869, -73.97147237717579 40.673372574970415, -73.97152230854641 40.67349297810543, -73.97156380158204 40.673615224287104, -73.97159673811032 40.67373897129955, -73.97162102716176 40.67386387152881, -73.97163406550469 40.67398144058632, -73.97163888830751 40.67409937052332, -73.97163548147503 40.674217329047394, -73.97162385456697 40.67433498387009, -73.97160404079933 40.67445200180656, -73.97157609585919 40.674568055078936, -73.97154009790823 40.674682815012766, -73.97149614876372 40.674795957440296, -73.97144437271558 40.67490716450165, -73.97138491534504 40.67501612194281, -73.97131794352391 40.67512252271797, -73.97124364778078 40.675226066089756, -73.9711971686413 40.675164745607, -73.96995801577084 40.673454465972284)), ((-73.96860748355363 40.67395613985594, -73.96859450646964 40.67383284769713, -73.96859138558484 40.67383451099704, -73.9685825748102 40.6737275021856, -73.96858305702024 40.673620284289115, -73.96859282958498 40.67351332377349, -73.96861184966154 40.67340708709154, -73.96862799518205 40.673316849974135, -73.96864848344646 40.67322712462908, -73.96865337315634 40.673261812903974, -73.9686660803324 40.67322701415695, -73.96870636049623 40.67313224319979, -73.96875419609808 40.673039530155755, -73.96880940598857 40.672949224366256, -73.96887178182399 40.672861665258694, -73.96894109161441 40.67277718234736, -73.96901707144622 40.67269609343062, -73.96906962787241 40.67276891962829, -73.96918813644477 40.67293313425509, -73.96949220509512 40.67335446726598, -73.96953318607784 40.67341125200166, -73.96999434906422 40.67405007342401, -73.96949432892295 40.6754110378941, -73.96939691981744 40.67533891770315, -73.96930498668429 40.675262745672434, -73.96921881682519 40.67518276232936, -73.96913868452134 40.67509921990448, -73.96906976970574 40.67501852426526, -73.96900648982447 40.674935196095845, -73.96894901507625 40.67484946418207, -73.9688975050101 40.67476156180916, -73.96885210024395 40.67467173036115, -73.96879193812927 40.674556837162065, -73.96873937884612 40.67443980277009, -73.96869455114398 40.674320918097074, -73.96865756839134 40.67420047855171, -73.96862852147902 40.67407878493831, -73.96860748355363 40.67395613985594)), ((-73.96980124341572 40.67556891518384, -73.97023528964804 40.67438382725492, -73.97070662466199 40.67503671621937, -73.97070830908996 40.67503904988241, -73.97099902663123 40.675441688814814, -73.97092268494384 40.67548840356771, -73.97084120156154 40.67552977871453, -73.97075521888937 40.67556548662029, -73.97066541361751 40.67559524738745, -73.97057249553949 40.675618825253665, -73.9704771957211 40.67563603399251, -73.97038026768173 40.67564673871488, -73.97028247320004 40.675650854964985, -73.97018458586085 40.67564834962208, -73.9700873756773 40.67563924269744, -73.96999161027203 40.67562360733463, -73.96989804305103 40.67560156440337, -73.96980741438198 40.675573289703586, -73.96980124341572 40.67556891518384)), ((-73.96990494067222 40.6722368835432, -73.9699973589356 40.672239104037985, -73.97008915229509 40.672247561264555, -73.97017959816156 40.67226218749857, -73.9702679834272 40.672282868193335, -73.97035360801338 40.67230943927945, -73.97025763977035 40.672438322363774, -73.96973263922968 40.673143389688605, -73.96938363851314 40.67266167661682, -73.96928236279352 40.67251694042995, -73.96922378856743 40.67243908784272, -73.96926982452436 40.67240946689385, -73.96934079447105 40.67237002705219, -73.96941588043092 40.67233528624876, -73.96949454770903 40.67230549017452, -73.96957623442601 40.67228085299616, -73.96964868288083 40.6722638794092, -73.9697225617351 40.672250965675765, -73.96979747830606 40.67224218012913, -73.96987303637343 40.67223756949038, -73.96990494067222 40.6722368835432)))",B040,69237,B040,B-19,B-19,B-19,B-19,"Flatbush Ave., Eastern Pkwy. and Prospect Park","306, 308",39,78,"11215, 11217, 11238",B,14.257,False,Grand Army Plaza,No,100004774,PARK,,18640615000000.00000,,DPR,True,Grand Army Plaza,Y,Grand Army Plaza,Flagship Park,Triangle/Plaza,http://www.nycgovparks.org/parks/B040/,No,52,"20, 21",9,{F117B999-8B4B-419D-8045-AB61A4083A42} +"MULTIPOLYGON (((-73.8937248012242 40.84413574545718, -73.89364022407192 40.84408612506464, -73.89357853956493 40.844049934977946, -73.89358999339174 40.844039319724175, -73.89382495133015 40.844177225255756, -73.8941169944011 40.8438313305816, -73.89442017343237 40.844004760733796, -73.89441582658418 40.84400910613748, -73.89441638338782 40.844009429023714, -73.89440924336165 40.84401568902061, -73.89433194559999 40.84397038735968, -73.89412176767038 40.84385409853308, -73.89406601942486 40.843918979217975, -73.89398369472636 40.844014788107394, -73.89383770079485 40.84418469577605, -73.89382829905153 40.8441956371206, -73.8937248012242 40.84413574545718)))",X148G,6342,X148G,X-06,X-06,X-06,X-06,N/B Cross Bronx Exwy bet. Belmont Av and Arthur Av,206,17,48,10457,X,0.038,False,Strip,No,100005103,PARK,20100106000000.00000,19610126000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148G/,No,79,33,15,{1DAA10E8-980D-4A4C-BCC7-6F6322A57F7D} +"MULTIPOLYGON (((-74.00253687676795 40.73344595067293, -74.00254299943306 40.73344585148201, -74.00254706464652 40.73344604770295, -74.00255100675717 40.73344659782611, -74.00255510161058 40.73344795840301, -74.00255861879094 40.733450006980775, -74.00255987366994 40.73345103713412, -74.00256118775172 40.733452386066, -74.00257786366397 40.73347185467827, -74.0026550826623 40.73356551206557, -74.00265710593018 40.73356881688348, -74.00265795717978 40.733571025810086, -74.00265807202557 40.73357142563301, -74.00265853736532 40.73357396325397, -74.00265858008792 40.73357660354259, -74.00265844754684 40.73357775619597, -74.0026579977949 40.733580188478605, -74.00265696798857 40.733582973773764, -74.00265510597342 40.733586057156266, -74.00265315277132 40.73358830937193, -74.00265105749544 40.73359015816324, -74.00264822707403 40.73359207180796, -74.00264477514217 40.73359377835005, -74.00264119297172 40.73359500582471, -74.00261309297848 40.73359969991376, -74.00181698754787 40.73371631931188, -74.0018144861526 40.73371657239405, -74.00181221204129 40.7337165093943, -74.00180974851058 40.733716117712085, -74.00180739388216 40.73371540184514, -74.0018052132652 40.733714336578366, -74.00180297344178 40.73371268958423, -74.00180152204051 40.73371107949858, -74.00180068504667 40.73370973505319, -74.00180004455922 40.73370813035786, -74.00179977578318 40.73370628071858, -74.00179982072011 40.733704502214515, -74.0018006966725 40.733701878120385, -74.00180188043953 40.73370009419543, -74.00180429773451 40.73369803829777, -74.00251796681667 40.73345232218254, -74.00252465997875 40.73344957098386, -74.00253118860091 40.733447092642336, -74.00253687676795 40.73344595067293)))",M012,5734,M012,M-02,M-02,M-02,M-02,"Christopher St, Grove St, W 4 St",102,3,6,10014,M,0.186,False,Christopher Park,Yes,100003890,PARK,20100106000000.00000,18370405000000.00000,,DPR/NPS,False,Christopher Park,No,Christopher Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M012/,No,66,27,10,{544006D4-5761-40BB-9B61-CFABCD760E05} +"MULTIPOLYGON (((-73.88736565007737 40.66657630313158, -73.88771247169711 40.666526234866886, -73.88772630640871 40.66658011096545, -73.88737942773803 40.666630188221134, -73.88737090407975 40.66659685085888, -73.88736565007737 40.66657630313158)))",B496,5283,B496,B-05,B-05,B-05,B-05,Hendrix St. between Livonia Ave. and Dumont Ave.,305,42,75,11207,B,0.046,False,Victory Garden,No,100004761,PARK,20100106000000.00000,20021120000000.00000,613 Hendrix St,DPR,False,Victory Garden,N,Victory Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B496/,No,60,19,8,{695C34A7-1042-4F4D-8CEC-17E20C797C7C} +"MULTIPOLYGON (((-73.93211971341479 40.84616674318984, -73.93161533931085 40.84591976795139, -73.93152266954422 40.84587684952902, -73.93142603255346 40.84583931361926, -73.9313259712071 40.84580736944967, -73.93122304381582 40.84578119654242, -73.93111782769512 40.84576094021396, -73.93101091204738 40.84574671517309, -73.93090289559566 40.845738601017075, -73.93079438184039 40.845736643129605, -73.93068597906198 40.8457408508797, -73.93057829438699 40.84575120302131, -73.93049366855392 40.84576078643093, -73.93040826125699 40.845764693502, -73.93032273185986 40.845762894014314, -73.930237740866 40.845755401874435, -73.93015394280386 40.84574227421092, -73.93000007015704 40.84570474025516, -73.93017396038857 40.84542828724342, -73.93030373698173 40.84522471750531, -73.93042379462662 40.84501940650317, -73.93053489469457 40.844811207497955, -73.93063669270147 40.844600767762316, -73.93074297226183 40.844359644526065, -73.93084110509874 40.84411703498744, -73.93132799916265 40.84283098338067, -73.93134437079058 40.84278859611152, -73.93137162421954 40.84273228198515, -73.9313947903634 40.842685109928276, -73.93143693664584 40.84260476327763, -73.931466284922 40.84255557237241, -73.93151002118782 40.84246825772177, -73.9309398322934 40.84242172335002, -73.9309394868701 40.842422079738505, -73.9309047216462 40.84241885766538, -73.93022077742836 40.84235547175035, -73.92969742953639 40.842306966770906, -73.92968850103067 40.84231577265428, -73.92962232058427 40.842311544099964, -73.92962452515108 40.8422956058155, -73.9294923294439 40.84228349989803, -73.92949529747803 40.84227668587945, -73.92948395428255 40.842275881108485, -73.92947987674313 40.84228235946495, -73.9293147299975 40.842267235451814, -73.92931378665686 40.842271215053536, -73.92927294101776 40.842268048194626, -73.92927364191652 40.84226347231806, -73.92897662105078 40.84223627141472, -73.92897571198569 40.84224033658169, -73.92893761013397 40.84223723162648, -73.92893799200706 40.8422327329978, -73.92863808796439 40.84220526650212, -73.92863693504526 40.84220893079609, -73.92857213601646 40.84220373716496, -73.92857200095509 40.84219921390404, -73.92839307049665 40.842182826547884, -73.92839232860221 40.84218687740619, -73.92836586617132 40.842184799746136, -73.92836639265542 40.842180383153966, -73.92818754884989 40.84216400273666, -73.92818673738564 40.84216768164666, -73.92816196974978 40.84216637761811, -73.92816253683196 40.84216171161552, -73.92798480880141 40.84214543423489, -73.92798318165273 40.84214900277401, -73.92795807490485 40.84214769848994, -73.92795864081056 40.84214303699009, -73.92756444943315 40.842106931576545, -73.92754888602855 40.8421106615502, -73.9273480476372 40.84209591481652, -73.92734967800246 40.8420872594021, -73.92736161770247 40.842023872198794, -73.92736575860896 40.84200188566227, -73.92755816627806 40.84201754557414, -73.9275919178988 40.8420387562727, -73.92892864323196 40.8421586949914, -73.92897109153746 40.842156663511574, -73.92900088261412 40.84216628381175, -73.92963368572865 40.84222770881613, -73.92965244348308 40.84221609399028, -73.92970148846557 40.84222158178076, -73.92971522228498 40.84223345324722, -73.9302149645483 40.84227893081767, -73.93097637394064 40.84234821725598, -73.93153896317634 40.84241047765225, -73.93160583801037 40.84227696968929, -73.93410648911176 40.8378998856977, -73.93467217613701 40.837037282226476, -73.9353690405208 40.83604907379167, -73.93542406221765 40.8359710452815, -73.93552052345476 40.83583736867167, -73.9355892594761 40.83574660035168, -73.935677717348 40.835637153234124, -73.93576519744059 40.83553562444795, -73.93585668700727 40.835435372022985, -73.93596694635859 40.83531864009686, -73.93608051828664 40.83520032322834, -73.93617492501824 40.83511459803475, -73.9363111998955 40.83498732907675, -73.93644631622527 40.83486965408325, -73.93665117600298 40.83469572646085, -73.93821750910308 40.83347874759463, -73.93837045903634 40.83335286736287, -73.93851959146977 40.83322369898654, -73.9386152207875 40.83313382654503, -73.9387067022866 40.83304180413923, -73.93879410958583 40.83294751835566, -73.9388773667007 40.83285109523251, -73.93895604042049 40.832753063139606, -73.93902456903001 40.83266398104666, -73.93908990278027 40.832573114245186, -73.9391517425609 40.8324808497954, -73.93921004325749 40.83238726782308, -73.93926464223826 40.83229260958043, -73.93929650841923 40.83223365386496, -73.9393270531267 40.83217415984965, -73.93939196109851 40.83203693518103, -73.93945077787131 40.83189786936535, -73.939487341842 40.831800067818165, -73.9395129529476 40.831730270401756, -73.9395234783389 40.831704192191886, -73.93953512502029 40.83167837841378, -73.93954787398066 40.831652874081854, -73.93956171570257 40.83162771431013, -73.93957665019487 40.83160288829219, -73.93959262641951 40.831578459936054, -73.93960966332502 40.8315544508631, -73.93962772890048 40.831530861056066, -73.93964679345483 40.83150774723019, -73.93992564224257 40.83123051882307, -73.93994322256168 40.831209740057396, -73.93996119685818 40.83118721993713, -73.94000576839363 40.83112324046513, -73.94003463935023 40.831077993009956, -73.94007642265242 40.83100576352723, -73.94011561889295 40.83092838815827, -73.94015469322977 40.830838818210665, -73.94016791454192 40.83080044327917, -73.94018116251166 40.83074690582744, -73.94019531878169 40.83068391635018, -73.94019873704548 40.83084445204097, -73.94021705762 40.83142196686024, -73.94021753620028 40.83143822734202, -73.94021773781809 40.831452659675826, -73.9402168001147 40.83147105359586, -73.94021596513785 40.8314819941741, -73.94021279984011 40.83150559269931, -73.94019686015982 40.831572733426526, -73.94019263599264 40.831588591649584, -73.94018725539429 40.83160633670965, -73.94017652814891 40.83164097677944, -73.94016270562604 40.831675364004084, -73.94014867282081 40.831708904652736, -73.94013389121538 40.831739267965474, -73.94011821430033 40.83176853400875, -73.94009507147605 40.83180484884642, -73.94004949923261 40.83186852075694, -73.93999533676904 40.83194220077995, -73.9396628114281 40.83239550378254, -73.9395883921783 40.832512731733075, -73.9395784929099 40.83252940460748, -73.93956637159617 40.83255290566752, -73.93956031975685 40.832565386953036, -73.93955493385933 40.832576947381234, -73.93954132944934 40.83260949853214, -73.93952911935354 40.83264195045746, -73.93952374059664 40.832657381213465, -73.93951745366634 40.832676745753666, -73.9395077604992 40.83270531606377, -73.93949958680315 40.83272914516566, -73.93948811747632 40.83275266456868, -73.93947640842396 40.832773830852354, -73.93946140161432 40.8327983236316, -73.93944654276126 40.832820463494286, -73.93943044865058 40.83284246493057, -73.93941349675443 40.83286382386126, -73.9393952681052 40.83288504254186, -73.93937695146124 40.8329052346095, -73.93935641899824 40.83292537958379, -73.93933496788901 40.8329453142559, -73.93931335691028 40.83296373330761, -73.93925048314652 40.83301696715843, -73.93916446257377 40.83309026349113, -73.93808095481941 40.834010301949284, -73.9380665248442 40.83402434821682, -73.93805338991139 40.834037994458214, -73.9380157609984 40.83407778239528, -73.93798028261176 40.83411768944108, -73.93794779065837 40.834158929913656, -73.93791547487828 40.83420191382877, -73.9378867756467 40.83424309599212, -73.93786054891943 40.83428368605446, -73.93783342322835 40.83432961105495, -73.93780840251284 40.834376204450116, -73.93778526396656 40.83441957238367, -73.93776694897554 40.834466175689755, -73.93774901271398 40.83451219567667, -73.93629587399495 40.83768731688671, -73.93627928070016 40.83772682679241, -73.93626143414092 40.8377650933214, -73.93624200632802 40.83780289251754, -73.93622100082989 40.83784020997409, -73.93619844258063 40.83787700698269, -73.9361743731146 40.837913243943795, -73.93614879011216 40.837948865024536, -73.93612172914428 40.83798386754211, -73.93609319735111 40.83801822268369, -73.93606207305466 40.83805319592059, -73.93600543786735 40.838120131530715, -73.93594723189797 40.83818423959014, -73.93588538190276 40.838246231234656, -73.93582099555606 40.83830706970266, -73.93575494327058 40.83836539392823, -73.93568663279352 40.838421826719966, -73.93561485027404 40.838477298506916, -73.93554152388955 40.8385303110381, -73.93546123156389 40.838584487564916, -73.93538032776108 40.83863696356081, -73.935345854408 40.83866097931863, -73.93531466506528 40.83868409281224, -73.93528333775127 40.83870884691938, -73.93525928063033 40.8387291395508, -73.93523330832292 40.83875216680151, -73.93520751744056 40.83877637739693, -73.93518324955427 40.83880119487456, -73.93515797506953 40.83882715991052, -73.9351338085897 40.83885373249669, -73.93511079994587 40.83888088024402, -73.93508985736676 40.83890739700285, -73.93506526392859 40.83893766946245, -73.93504099727524 40.83896960981489, -73.9350180165457 40.83900208848125, -73.93499631111928 40.839035055028674, -73.9349759070791 40.839068513074494, -73.93495681037453 40.83910244281199, -73.93493789353003 40.83913915067037, -73.93492050456149 40.83917632944519, -73.93490470046015 40.839213901726794, -73.93489046584608 40.839251835089485, -73.93487783750116 40.83929010614169, -73.93486681785409 40.8393286590547, -73.93485764019864 40.839366579959794, -73.93484703329614 40.8394110367394, -73.93483817772164 40.83945663543243, -73.93483130442817 40.83950243245256, -73.93482641583708 40.83954838097587, -73.93482352030779 40.83959442427612, -73.93482262027062 40.83964050652435, -73.93482371576405 40.83968659260136, -73.93482679262209 40.83973262306643, -73.93483187815356 40.83977856371616, -73.934838945161 40.839824343395854, -73.93484798301155 40.83986992698, -73.93485900480928 40.83991525594339, -73.93487197029438 40.83996027893461, -73.9348868830664 40.840004956333296, -73.93490457688002 40.84005150922619, -73.93496025477154 40.84015640940278, -73.93551604058774 40.84122093082881, -73.9355333360642 40.841270648626384, -73.9355420427755 40.84131970426144, -73.93554255551572 40.84137302905773, -73.93553557578288 40.841418836851105, -73.93552254919001 40.84146179660552, -73.93549714577888 40.841514653962605, -73.93547946250952 40.841541980345696, -73.93341926510293 40.844366562075365, -73.93345265170703 40.844379957261815, -73.93224174369884 40.84603031827342, -73.93223149231254 40.846025681018, -73.93221213190488 40.846052065780896, -73.93220591872699 40.84604925529417, -73.93217071988329 40.846097228153994, -73.9321781752265 40.84610060037981, -73.93213065635605 40.84616536377076, -73.9321231998222 40.84616199154124, -73.93211971341479 40.84616674318984)), ((-73.92310083588917 40.85870447449632, -73.92301332984259 40.85732430868902, -73.92298630620361 40.856824706400154, -73.92298578964332 40.85655691624912, -73.92300431757481 40.856343650021444, -73.92305515161904 40.85605680279583, -73.92309824172415 40.855883969655615, -73.92317481171582 40.85563234600871, -73.92324773131564 40.85545108245091, -73.92336880841835 40.85519877686981, -73.92354789936324 40.85489549137822, -73.9237051387898 40.85466114716593, -73.92414868251645 40.85408417606963, -73.92482589229134 40.85316470519441, -73.92508371596088 40.85280785232763, -73.92563283293184 40.85201519146336, -73.92599528826622 40.85147708898064, -73.92637825272817 40.85092713622372, -73.92687123713382 40.850193458834966, -73.92721256566064 40.84970898668862, -73.92746837977757 40.84936244126254, -73.92828738570651 40.8482879745769, -73.9285365838161 40.84795555761794, -73.9287656907413 40.8476324775101, -73.92885183172645 40.84750816637421, -73.92894830511521 40.84736894307876, -73.92989313630957 40.84780987273063, -73.93068428389594 40.84815287108087, -73.93054319497863 40.84834342402458, -73.92993885067116 40.84809248398856, -73.92990745479717 40.84808053969704, -73.92987393085404 40.84807259949289, -73.92983915970295 40.84806887282427, -73.9298040519696 40.84806945569632, -73.92976952788331 40.84807433336067, -73.92973649356225 40.84808337849981, -73.929705814924 40.84809635301223, -73.92967829633052 40.848112917904594, -73.92965465805224 40.848132637780076, -73.92944608463804 40.848409731439986, -73.92928156540125 40.84863221076084, -73.92915968190995 40.84879320701215, -73.92912074889979 40.848845430552466, -73.92912190522111 40.84884310799322, -73.92905331179198 40.848933764297044, -73.92902027042409 40.848996708182455, -73.92892480918538 40.84915105588875, -73.92884633681143 40.84926170950925, -73.928731792959 40.84938830742015, -73.92861708627892 40.84949163099634, -73.92852401889319 40.849564290804125, -73.92842832742024 40.84963210876331, -73.92831820394002 40.8497007038051, -73.92822553147053 40.849759585186845, -73.92813374533388 40.84982335941889, -73.92801136966906 40.849931587090566, -73.92782621257642 40.850124170376944, -73.92761003909288 40.85034137766409, -73.9274993056958 40.85047482586259, -73.92743149401157 40.85056603997512, -73.92725914750955 40.85083850491884, -73.92716023783926 40.850987628794044, -73.92705523414472 40.85119226494812, -73.926981124616 40.851374692819526, -73.9269455391804 40.85148683734547, -73.92692980029805 40.85156622913827, -73.92691258021101 40.851675803571766, -73.92689415582167 40.8518970048904, -73.92689023293214 40.851990752593885, -73.9269015756068 40.852081996697294, -73.9269263051666 40.85214828404788, -73.92697178058985 40.85221634048566, -73.92701212437451 40.85225434515277, -73.92707306620957 40.852307811662726, -73.92717720361325 40.852366299541586, -73.92749592168491 40.852496832042675, -73.92465386475719 40.85638250299047, -73.92462069780981 40.85642792190207, -73.92455888553825 40.8565400817764, -73.92452617663038 40.856616514768746, -73.92451230025168 40.85665529974154, -73.92450011354639 40.85669440819396, -73.92448081410893 40.856773421748066, -73.92446837240182 40.85685323312023, -73.92446473563471 40.8568933277994, -73.92446282680862 40.85693348394236, -73.9244642291478 40.85701451823686, -73.92448096817702 40.85713283298769, -73.92449316163646 40.85719127922489, -73.92452515220337 40.85730709427807, -73.92456721192606 40.85742103567891, -73.92458265066142 40.85745420364571, -73.92480822074036 40.85788426589657, -73.92482719512547 40.85791124705902, -73.92484736322184 40.857937739128815, -73.92486868119316 40.85796370155469, -73.92489113721867 40.857989100109705, -73.92491469218162 40.85801391585735, -73.92498907620292 40.858082374524095, -73.9250424360484 40.85812413524295, -73.92509918270493 40.85816323448397, -73.92512869765255 40.85818169569125, -73.92518879698825 40.858215819150786, -73.92525201803952 40.858246762267115, -73.92531791632479 40.858274270809126, -73.92535176242755 40.85828670237523, -73.92538618477293 40.85829823921625, -73.92542110986425 40.85830884706557, -73.9254564867028 40.85831852408883, -73.9254922963138 40.8583272675718, -73.92552848654579 40.85833504596334, -73.92556499927458 40.858341865528935, -73.92560181434226 40.85834772085247, -73.92563887720982 40.85835259388856, -73.92567613213713 40.85835648009872, -73.9257131889457 40.85835935401776, -73.92574745001184 40.85836140037564, -73.92578210700412 40.85836257350209, -73.92581681124727 40.85836285516273, -73.92585150582241 40.85836223451507, -73.92588614208965 40.85836072143326, -73.92595513295082 40.85835501879937, -73.92602343983813 40.85834577585677, -73.92605724366999 40.85833983988008, -73.92609076380751 40.8583330401412, -73.92612395992536 40.85832537571408, -73.92615680354655 40.85831685648606, -73.92618923891345 40.858307494128255, -73.92622122211783 40.85829731022467, -73.92625275553075 40.85828630477718, -73.92628377035538 40.85827448314516, -73.9263134620702 40.858262197807555, -73.9263455912165 40.85824871006225, -73.92637782960041 40.8582340283271, -73.92640938573676 40.858218514094276, -73.92647026265938 40.858185011430585, -73.9265279193571 40.858148369374355, -73.92658207097428 40.85810877415061, -73.92663244808287 40.85806640569109, -73.92665616226664 40.85804424798573, -73.92670044842629 40.857998117876, -73.92672097763777 40.857974207579595, -73.92674916489445 40.85793748185509, -73.92675898536028 40.857924410262655, -73.92678540974502 40.85788373385748, -73.92680874934213 40.85784835847914, -73.92683900611604 40.85780623650318, -73.92686396230125 40.857774012054996, -73.92705836762958 40.857906509068314, -73.92701240403778 40.857977052359544, -73.92696374930492 40.858064824818044, -73.92692238426885 40.85815539879641, -73.92688343736728 40.858267615783774, -73.92675756069258 40.85863651919416, -73.92672535354352 40.85872071172647, -73.92671401915838 40.85874276294554, -73.92668702216625 40.8587882421815, -73.92665601324691 40.858832198832346, -73.92662113017224 40.85887445468535, -73.92660227918209 40.85889488473147, -73.92658252496881 40.85891481262638, -73.92654038999811 40.858953068362894, -73.92649491401434 40.858989063524874, -73.92640924165369 40.8590454516606, -73.92637209660106 40.8590683481485, -73.92595071240761 40.85931178002685, -73.92579718157685 40.85940534861039, -73.92573586626534 40.85944776458605, -73.92567693747417 40.85949101231844, -73.92561973285547 40.85953556684321, -73.92556427143667 40.85958138315068, -73.92548104082147 40.85965468968222, -73.92534280436779 40.85979860855244, -73.92530323393848 40.859841819089326, -73.92525612185491 40.859899302903415, -73.9252428112041 40.85991677550061, -73.92521175985839 40.85995811850476, -73.9251657145234 40.86002241338136, -73.92512446888774 40.86008163438894, -73.9250439164962 40.860208601659814, -73.92500311153408 40.8602828313817, -73.9249679618722 40.86035161950085, -73.92488962586224 40.860532985821095, -73.92486594330353 40.86059933383798, -73.92484468924962 40.860666151686175, -73.92482591015869 40.860733267403525, -73.9248058517202 40.86081360598335, -73.92478939924152 40.86089470512207, -73.9247766468706 40.86097618037317, -73.92476225360109 40.86113988732181, -73.92476487690487 40.86133937103171, -73.92310356268484 40.85874748194613, -73.92310083588917 40.85870447449632)), ((-73.9291101639934 40.84711948469849, -73.92981886872086 40.84599281480433, -73.92990344748243 40.84601364509809, -73.93030524747914 40.84609980275714, -73.93048668199653 40.84615432269747, -73.93066484254126 40.84621474851548, -73.93083939724079 40.84628096656519, -73.93101001778489 40.84635285419934, -73.93117638654412 40.846430276171795, -73.93176862769229 40.84667510811143, -73.93086127643734 40.84791165617576, -73.9291101639934 40.84711948469849)), ((-73.9379282191531 40.832756778373664, -73.93968393351064 40.8303253359045, -73.93987600204616 40.83040660230711, -73.93979008216145 40.83071898868327, -73.93978869139573 40.83072436751344, -73.93978723424837 40.83072973640351, -73.9397857083484 40.83073509535219, -73.93978411725479 40.83074044165987, -73.93978245977955 40.83074577802744, -73.9397807347396 40.830751101752796, -73.93977894450676 40.83075641193661, -73.93977708908027 40.83076170947943, -73.93977516608982 40.83076699347954, -73.93977317790652 40.830772263938115, -73.93977112453109 40.8307775199547, -73.93976900596434 40.83078276062877, -73.93976682102162 40.83078798505924, -73.93976457207306 40.83079319414778, -73.9397622591196 40.83079838699402, -73.93975988097554 40.830803563597186, -73.93975743764263 40.83080872215633, -73.93975493149183 40.830813862672734, -73.93975236015213 40.83081898514513, -73.93974972599453 40.830824089574755, -73.93974702902152 40.830829173260106, -73.93974426685955 40.830834238901446, -73.93974144306684 40.83083928469961, -73.93973855645946 40.830844308852996, -73.9397356082222 40.83084931226275, -73.93973259598384 40.83085429492757, -73.9397295233019 40.83085925594884, -73.93972638780696 40.83086419352436, -73.9397231918683 40.83086910945631, -73.93971993548853 40.8308740010432, -73.93971661748036 40.83087887008539, -73.93971324021734 40.830883713882706, -73.93970980132681 40.83088853423479, -73.93970630199583 40.83089332934134, -73.93970274459632 40.83089809830304, -73.93969912675482 40.8309028438202, -73.93969545084637 40.8309075613915, -73.9396917168694 40.830912252818024, -73.93968792364001 40.83091691629803, -73.93968407234286 40.830921552732704, -73.93968016416433 40.83092616122217, -73.93967619791805 40.83093074266629, -73.93967217716309 40.830935294365396, -73.93966809715727 40.830939816317056, -73.939663962642 40.830944309424225, -73.93965977124692 40.83094877278516, -73.93965552534314 40.83095320640107, -73.9396512237468 40.83095760847036, -73.93934433072236 40.83128819020389, -73.93934010967409 40.83129262202007, -73.93933591706377 40.83129707005991, -73.93933175289132 40.83130153432347, -73.93932761834482 40.83130601210993, -73.93932351342093 40.831310507021186, -73.93931943693573 40.83131501725565, -73.93931539126122 40.831319541914105, -73.93931137046874 40.83132408189392, -73.93930738285809 40.831328636298984, -73.93930342487168 40.83133320602791, -73.9392994965096 40.83133779108071, -73.93929559777344 40.83134238965636, -73.93929172866154 40.8313470035559, -73.93928788917486 40.83135163187884, -73.93928408049881 40.83135627462574, -73.93928030144868 40.83136093089555, -73.93927655320844 40.83136560248986, -73.93927283459502 40.83137028670658, -73.93926914679147 40.83137498624781, -73.9392654886147 40.83137969841147, -73.93926186243499 40.831384424099255, -73.93925826706601 40.83138916421105, -73.9392547013238 40.83139391694529, -73.93925116639316 40.83139868320308, -73.93924766346043 40.831403462084495, -73.9392441913393 40.83140825448947, -73.93924075002964 40.83141306041802, -73.93923734071879 40.831417878069765, -73.93923396103398 40.83142270924441, -73.93923061453346 40.83142755214282, -73.93922729884447 40.831432408564865, -73.93922401396878 40.83143727670944, -73.93922076109098 40.831442157477746, -73.93921754021203 40.83144704996919, -73.93921435133103 40.831451955084404, -73.93921119444967 40.831456871022276, -73.93920806837984 40.83146180048375, -73.93920497549607 40.83146673986806, -73.9392019146103 40.83147169187607, -73.93919888453944 40.83147665380568, -73.9391958888377 40.83148162836028, -73.93919292395002 40.831486613736956, -73.93918999106205 40.831491609936364, -73.93918709254483 40.8314966169598, -73.93918422484091 40.83150163570577, -73.93918139032303 40.83150666437467, -73.93917858780488 40.83151170386627, -73.9391758196583 40.831516753281356, -73.93917308351224 40.83152181261872, -73.93917037936514 40.83152688367931, -73.9391677084049 40.83153196376232, -73.93916507063074 40.83153705376819, -73.93916246722824 40.83154215369754, -73.93915989463989 40.83154726444905, -73.93915735642574 40.83155238242256, -73.93915485139681 40.831557511219486, -73.93915238074047 40.83156264903944, -73.93914994089907 40.831567796781066, -73.9391475366166 40.8315729526458, -73.93914516552114 40.83157811753292, -73.9391428276118 40.831583292343005, -73.93914052289107 40.831588474374456, -73.93913825372844 40.83159366542962, -73.93913601538176 40.83159886550591, -73.93913381140926 40.83160407280426, -73.9391316441796 40.831609290027394, -73.9391295077675 40.83161451447072, -73.93912740691519 40.83161974613672, -73.93912533925072 40.83162498592465, -73.93912330477414 40.831630233834474, -73.93912130585731 40.831635488967024, -73.93911934012846 40.83164075222151, -73.9391174087746 40.831646021797546, -73.93911551298064 40.831651298596285, -73.93911364918984 40.83165658261586, -73.93911186142194 40.83166170548699, -73.93911002710306 40.831667171421955, -73.9391081727818 40.831672470754846, -73.93910630660551 40.83167776918092, -73.93910443213252 40.83168306490108, -73.93910254580526 40.831688358813985, -73.9391006499949 40.831693650920855, -73.93909874470303 40.83169893942068, -73.93909682874086 40.831704227914855, -73.93909490211163 40.83170951280138, -73.93909296599927 40.831714795881865, -73.9390910180327 40.83172007715508, -73.93908906295492 40.831725355723016, -73.9390870948373 40.83173063248303, -73.93908511723828 40.83173590563602, -73.93908312896964 40.83174117788282, -73.93908113240343 40.8317464483242, -73.93907912398384 40.831751716057816, -73.93907710608109 40.831756981985436, -73.93907507632488 40.83176224520524, -73.93907303827186 40.8317675057191, -73.93907099073577 40.83177276442695, -73.93906893134617 40.83177802042704, -73.93906686247342 40.83178327462103, -73.93906478293283 40.8317885261079, -73.93906269390905 40.83179377578871, -73.93906059421735 40.83179902276236, -73.9390584838569 40.83180426792934, -73.93905636401502 40.8318095094893, -73.93905423468905 40.831814750143685, -73.93905209351051 40.8318199871898, -73.93904994521988 40.83182522243115, -73.93904778389025 40.83183045496404, -73.93904561544855 40.831835685692155, -73.93904343396777 40.83184091371185, -73.93904124300467 40.83184613902499, -73.93903904255839 40.83185136253206, -73.93903683144418 40.831856583332005, -73.93903461084761 40.83186180142539, -73.93903237958311 40.83186701681159, -73.93903013883539 40.83187223039176, -73.93902788742061 40.831877440364266, -73.93902562652264 40.83188264853072, -73.9390233537703 40.83188785488985, -73.93902107272203 40.83189305764258, -73.9390187833769 40.83189825768936, -73.9390165056097 40.83190376030849, -73.93901416912368 40.83190865236107, -73.93901184777471 40.83191384428634, -73.93900951694256 40.831919034405566, -73.93900717544162 40.8319242227181, -73.93900482327354 40.83192940742296, -73.93900246162308 40.83193458942129, -73.93900009048943 40.83193976961354, -73.93899770868778 40.83194494709861, -73.93899531740455 40.83195012097665, -73.93899291545257 40.83195529304799, -73.93899050401897 40.83196046151231, -73.93898808310217 40.83196562817051, -73.93898565151743 40.831970792121595, -73.93898320926465 40.831975953365465, -73.93898075753037 40.83198111100225, -73.93897829631359 40.831986265932535, -73.93897582442722 40.83199141995657, -73.93897334306008 40.831996569473084, -73.9389708533953 40.832001717184156, -73.93896835069219 40.832006861286295, -73.93896583850668 40.832012002681864, -73.93896331802347 40.83201714227203, -73.93896078687392 40.832022277353985, -73.9389582450547 40.83202741152975, -73.93895569494036 40.83203254119857, -73.93895313415793 40.83203766816018, -73.9389505638923 40.83204279331578, -73.93894798177391 40.83204791486305, -73.93894539254418 40.83205303370498, -73.93894279146095 40.83205814983911, -73.93894018089522 40.83206326326668, -73.93893756084786 40.832068373087154, -73.93893493131813 40.832073480201075, -73.93893229112031 40.83207858460782, -73.93892964144091 40.832083685407504, -73.93892698109268 40.83208878440047, -73.93892431126197 40.83209388068683, -73.93892163195049 40.83209897246568, -73.93891894197097 40.83210406153728, -73.9389162436945 40.83210914790297, -73.9389135347501 40.83211423156145, -73.93891081513844 40.83211931161224, -73.93890808722988 40.83212438895709, -73.9389053486525 40.8321294644952, -73.9389026005951 40.83213453462526, -73.93889984305441 40.83213960294924, -73.93889707484651 40.832144667665546, -73.93889429834171 40.83214972967588, -73.93889150998417 40.832154788077865, -73.93888871332886 40.83215984467442, -73.9388859060063 40.83216489766327, -73.93888308920295 40.832169946144546, -73.93888026291626 40.83217499281975, -73.9388774271471 40.83218003678836, -73.93887458071157 40.83218507624875, -73.93887172479353 40.832190113002554, -73.93886885939297 40.83219514704981, -73.93886598451077 40.832200177489945, -73.9388631001461 40.832205205223495, -73.93886020511499 40.832210228448865, -73.93885730060059 40.83221524986817, -73.9388543866053 40.83222026677983, -73.93885146312671 40.83222528188541, -73.93884853016732 40.83223029248346, -73.93884558653976 40.83223530037427, -73.9388426334306 40.83224030465796, -73.9388396720253 40.83224530533523, -73.93883669876638 40.83225030330463, -73.93883371721049 40.83225529856808, -73.93883072735848 40.83226029022505, -73.93882772565448 40.8322652773732, -73.93882471446716 40.83227026271521, -73.93882169498532 40.832275242649835, -73.9388186648346 40.83228022077769, -73.93881562520221 40.83228519529843, -73.9388125760881 40.83229016621213, -73.93880951630587 40.83229513441858, -73.93880644941396 40.83230009811869, -73.93880336948277 40.832305059110304, -73.9388002836266 40.83231001649672, -73.93879718710318 40.83231497027542, -73.93879407991166 40.83231992134683, -73.93879096324008 40.83232486701025, -73.9387878382707 40.8323298108681, -73.93878470144841 40.83233475111762, -73.93878155633006 40.83233968776068, -73.93877840291555 40.832344620797265, -73.93877523883376 40.832349550226134, -73.93877206527024 40.832354476047875, -73.938768882225 40.832359398262554, -73.93876568969888 40.8323643159696, -73.93876248768936 40.832369231870516, -73.93875927619813 40.832374144164355, -73.93875605522604 40.832379051950554, -73.93875282477218 40.8323839561297, -73.93874958483661 40.832388856701705, -73.93874633541851 40.83239375456709, -73.93874307651947 40.83239864792489, -73.93873980813869 40.83240353767555, -73.93873653027539 40.832408424719624, -73.93873324293112 40.832413307256076, -73.93872994610518 40.83241818618542, -73.93872663979748 40.83242306150762, -73.93872332400805 40.83242793322275, -73.9387199999224 40.83243280133136, -73.9387166651703 40.83243766493175, -73.9387133221204 40.83244252672665, -73.93870996840481 40.832447383112815, -73.93870660639304 40.83245223589247, -73.93870323371394 40.83245708506438, -73.93869985273867 40.83246193062981, -73.93869646228251 40.832466771687606, -73.93869306115816 40.83247161003814, -73.93868965292403 40.832476443882335, -73.93868623520817 40.83248127411941, -73.93868280563939 40.83248610074808, -73.93867936777444 40.832490923770294, -73.93867592161413 40.83249574228551, -73.93867246597203 40.83250055719354, -73.93866899966264 40.83250536849388, -73.93866552624338 40.832510175287815, -73.93866204215601 40.8325149793745, -73.93865854858771 40.83251977895356, -73.93865504553845 40.83252457402498, -73.93865153419222 40.8325293663904, -73.93864801336495 40.832534154248215, -73.93864448305598 40.832538938498864, -73.93864094445243 40.83254371734205, -73.93863739518073 40.83254849347799, -73.93863383642807 40.83255326510624, -73.9386302693792 40.832558033128, -73.93862669403413 40.832562797543275, -73.93862310802251 40.83256755745025, -73.93861951252913 40.83257231375009, -73.93861590992594 40.83257706554359, -73.93861229665625 40.83258181282879, -73.93860867390393 40.83258655740735, -73.93860504285622 40.83259129747891, -73.93860140114197 40.83259603304222, -73.93859775231704 40.832600764999604, -73.93859409282562 40.83260549244877, -73.93859042503802 40.832610216291386, -73.93858674776938 40.83261493562636, -73.93858306220456 40.83261965135479, -73.93857936715877 40.83262436257566, -73.93857566144558 40.8326290701887, -73.93857194743785 40.83263377239422, -73.93856822631948 40.83263847099386, -73.93856449334812 40.83264316598506, -73.93856075208139 40.832647856469286, -73.93855700251842 40.83265254334698, -73.93855324347452 40.832657225716986, -73.93854947495042 40.83266190267889, -73.93854569812927 40.83266657693475, -73.93854191301273 40.832671246683596, -73.9385381172296 40.832675911924156, -73.93853431315026 40.83268057355819, -73.93853050077634 40.832685229784694, -73.93852667891979 40.8326898833045, -73.93852284639749 40.8326945314156, -73.93851900676536 40.83269917502024, -73.93851515765058 40.83270381591824, -73.93851130024203 40.83270845050823, -73.9385074321661 40.8327130814904, -73.9385035569795 40.83271770886665, -73.93849967231276 40.8327223308348, -73.93849577816422 40.83272694919575, -73.93849187453465 40.832731563049045, -73.93848796379523 40.832736172395926, -73.93848404238922 40.83274077723453, -73.93848011268702 40.832745378466555, -73.93847617469018 40.83274997429107, -73.93847222839625 40.83275456740956, -73.93846827143746 40.83275915421875, -73.93846430736791 40.83276373742199, -73.93846033263183 40.832768316117004, -73.93845634960033 40.832772890304895, -73.93845235827257 40.832777460886255, -73.93844835865022 40.83278202606012, -73.93844434954684 40.832786586726286, -73.93844033214803 40.83279114288544, -73.93843630408261 40.832795694536244, -73.93843226890655 40.83280024258116, -73.93842822425029 40.83280478521787, -73.9384241712978 40.83280932424806, -73.93842011005069 40.83281385787069, -73.93841603813694 40.832818386984975, -73.93841195911256 40.832822912493405, -73.93840787179353 40.832827432594215, -73.93840377380792 40.83283194818676, -73.93839966871246 40.83283645927287, -73.93839555413601 40.83284096585129, -73.93839143245044 40.83284546702281, -73.93838730009755 40.83284996458649, -73.93838315944916 40.83285445764311, -73.93837901050527 40.83285894619271, -73.93837485208128 40.83286342933407, -73.9383706865474 40.83286790796903, -73.93836651034691 40.832872382095665, -73.93836232703654 40.83287685171587, -73.93835813543073 40.832881316829, -73.93835393434391 40.83288577743447, -73.93834972377687 40.83289023263173, -73.93834550609998 40.83289468332257, -73.93834127894203 40.832899129505705, -73.93833704348948 40.83290357028126, -73.93833279974065 40.83290800745026, -73.9383285465116 40.83291243921106, -73.93832428617269 40.83291686646543, -73.93832111050965 40.83292015517413, -73.93831898865763 40.83292234854453, -73.9379282191531 40.832756778373664)), ((-73.94052064280268 40.831391100888, -73.940500267624 40.83067151128129, -73.94093708648377 40.830855337715064, -73.94068693201655 40.83118773054462, -73.9405889172167 40.83132254539441, -73.94057532950814 40.83134123266508, -73.94053534738597 40.83139622598258, -73.94053524570651 40.831389282215106, -73.94052079798662 40.831408479616236, -73.94052064280268 40.831391100888)))",M037,6596,M037,M-12A,M-12A,M-12A,M-12A,"W 155 St and Dyckman St, Edgecombe Av & Amsterdam Av","110, 112",10,32,"10032, 10033, 10039, 10040, 10452",M,130.1,False,Highbridge Park,No,100005220,PARK,20100106000000.00000,18991208000000.00000,506 EDGECOMBE AVENUE,DPR,True,Highbridge Park,Y,Highbridge Park,Large Park,Community Park,http://www.nycgovparks.org/parks/M037/,Yes,72,31,13,{973BC655-2F98-419F-890B-BA8241C9C417} +"MULTIPOLYGON (((-74.00193926176063 40.75174543792042, -74.00193602198934 40.751746280848316, -74.00196042167528 40.7516850253333, -74.002012557455 40.75159034525903, -74.00244276889303 40.750989790520876, -74.00315139191098 40.750020468759736, -74.00319402693583 40.749949130402925, -74.0031899558422 40.74992139042916, -74.00331908800786 40.74975024741829, -74.00332773527553 40.74972218379974, -74.00332761212353 40.74969836631996, -74.00333613914206 40.74968107185541, -74.00371985045282 40.749179539471776, -74.00374827389966 40.74914711222706, -74.00378195149199 40.74912119726274, -74.00411868886847 40.74864491793661, -74.00477431135671 40.74772681844876, -74.00596845147362 40.74610619619486, -74.00636017939361 40.745552042247354, -74.0063814107518 40.74550877083302, -74.00647343838638 40.74533084721357, -74.0067705766546 40.74490836016111, -74.00687010615039 40.744748229779525, -74.00688876684532 40.74470893775885, -74.00690865758312 40.74465705477714, -74.00692002358858 40.74461814320208, -74.00693138659747 40.74456193739529, -74.0069399063936 40.744490599644074, -74.00694274282895 40.74444087979773, -74.00694558202169 40.74440629206527, -74.006945579768 40.7443846745018, -74.0069171556448 40.74437602954713, -74.00692567655598 40.74431550057698, -74.00692953067171 40.74420342778285, -74.0069057478411 40.74399988947672, -74.00676362735423 40.74393720733244, -74.00685172582348 40.74381830731763, -74.00681192572073 40.743736163650006, -74.00676076294711 40.74371238788278, -74.00682044111315 40.74362159166827, -74.00683648728089 40.74340932955705, -74.00692164562105 40.74324999509648, -74.00728662622645 40.74273661703067, -74.00734263087838 40.742760186943414, -74.00746386789118 40.74259303696332, -74.00756781712715 40.742415298927774, -74.00759339014817 40.742356930886785, -74.00761611918165 40.74228775424277, -74.0076714689829 40.742045233234926, -74.00768711514857 40.74176893412907, -74.00806067251355 40.74026744534078, -74.00813789361561 40.73942682267812, -74.00832008072224 40.73942717796773, -74.00825819827928 40.740208124841416, -74.00825538765234 40.74029432249433, -74.00819600435094 40.740499516306194, -74.0079707216406 40.74149073831922, -74.00794857026715 40.741563552149145, -74.0078832409769 40.74190510995066, -74.00786620165843 40.74201752050414, -74.00784063570917 40.74214290343713, -74.00782643803333 40.74225747590463, -74.00781223794394 40.74234178413114, -74.00779878994749 40.74243883627817, -74.00751719514642 40.74283365344259, -74.00747793099114 40.742887204640596, -74.00752497528589 40.742909009151624, -74.0074503621256 40.74301490730718, -74.00762575241659 40.74321251475849, -74.00758652859497 40.74326794714677, -74.00754252363326 40.743248947541765, -74.0073959843117 40.743079376297246, -74.00735771371829 40.74305116676909, -74.00714405053658 40.74334257703099, -74.0071932449381 40.743362290565905, -74.007101809049 40.743483223499396, -74.00714445188741 40.74356320477665, -74.00717288032787 40.74362589359104, -74.00721267870345 40.743688580785864, -74.00722871908704 40.74371809659143, -74.00725815938878 40.74373181306011, -74.00722690048529 40.7437836959224, -74.00719324938616 40.743765370014735, -74.00716152163255 40.74371884821003, -74.00711603963356 40.74366264679893, -74.00707055725239 40.74360212113588, -74.00704497346608 40.74356753423771, -74.00702507381415 40.74353078667128, -74.00700233074431 40.74348755292363, -74.00698914427815 40.743540369349084, -74.0069881288461 40.74357834648384, -74.00697676876935 40.743660493202846, -74.00697961923444 40.74373399149294, -74.00699099701347 40.74382046016438, -74.00709048041722 40.74385936497993, -74.00700522509862 40.74397826590433, -74.00706779131436 40.74432630072554, -74.00711895466904 40.744350076354365, -74.0070564339558 40.74443438743917, -74.00710759646692 40.744449516407556, -74.00704791817927 40.7445424748767, -74.00709055518908 40.74456192770633, -74.00703087472368 40.744635429818395, -74.00705929897241 40.74464407564518, -74.00700530238106 40.74471325406222, -74.00701382912634 40.74471973899216, -74.00696351435151 40.74478553936417, -74.00698725479042 40.744795022062334, -74.00687236362353 40.74495060140077, -74.00657921978657 40.74537578009933, -74.00654776005199 40.74540935817977, -74.00648194321589 40.74554990125858, -74.00606130353229 40.746145041896426, -74.00529154809406 40.747198641700926, -74.00532223982282 40.74721142387465, -74.0047328853052 40.748071581673756, -74.00466805677557 40.748045196785625, -74.00386653652782 40.749155461412236, -74.00378396755391 40.749321878575955, -74.00375681463582 40.7493762547217, -74.00227952077837 40.75139756631266, -74.00210653741857 40.75162947325543, -74.00208549523856 40.751663405595664, -74.0020684414928 40.751706640985205, -74.00206636706737 40.75171242587137, -74.00206599165813 40.7517111885832, -74.00204196854895 40.75177028920342, -74.00202280749625 40.751830408204846, -74.00200875208388 40.75187957966555, -74.00199770321748 40.75192999917303, -74.00199638992403 40.75192722473768, -74.00199050247639 40.75200956618142, -74.00199401710451 40.75209198580555, -74.00200691014159 40.75217386406163, -74.00202908213507 40.752254584101884, -74.00206036731824 40.75233354078427, -74.0021094634278 40.75241521215695, -74.0021640066786 40.75249485906891, -74.00222385379588 40.752572272597845, -74.00228884610881 40.75264724832396, -74.00235881191841 40.75271958903145, -74.00236278387548 40.752728250913556, -74.0023702751367 40.75273687940445, -74.00211827678292 40.75263056341667, -74.00206140389312 40.75253931080973, -74.00197423316398 40.752395461062, -74.00195414877392 40.75235287018826, -74.001930554363 40.752302067658476, -74.00191117425268 40.75224753515911, -74.00189396980653 40.75216402434734, -74.00188550434856 40.75207974075539, -74.0018858299629 40.751995212080665, -74.00189494544702 40.75191096782043, -74.0019127939443 40.75182753566995, -74.00193926176063 40.75174543792042)), ((-74.00132343794606 40.75229523149017, -74.00106609056786 40.75218665838892, -74.0010092942962 40.75226470932984, -74.00077304100722 40.75208138260806, -74.00064016487985 40.75183322566053, -74.00088248929872 40.75193487314497, -74.00093902729414 40.7518567142043, -74.00117507573593 40.752059837311, -74.00132343794606 40.75229523149017)))",M360,5988,M360,M-16,M-16,M-02,M-02,Gansevoort St. To W. 30 St. bet. Washington St. and 11 Ave.,"102, 104",3,6,"10001, 10011, 10014",M,6.73,False,The High Line,No,100004690,PARK,20100106000000.00000,20060224000000.00000,,DPR/Private,False,The High Line,Y,The High Line,Large Park,Community Park,http://www.nycgovparks.org/parks/M360/,No,"75, 66",27,10,{98789AED-2F24-4A3B-922D-B1C0E1935B71} +"MULTIPOLYGON (((-73.79810425315314 40.815855170608025, -73.798104369938 40.81585222888141, -73.79931891183223 40.81624056431611, -73.79931751735322 40.81624311570467, -73.79810425315314 40.815855170608025)))",X191D,5537,X191D,X-10,X-10,X-10,X-10,Tierney Pl. at Locust Pt. Dr.,210,13,45,10465,X,0.008,False,Strip,No,100004820,PARK,20100106000000.00000,19571219000000.00000,,DPR,True,Park,N,Park,Other,Strip,http://www.nycgovparks.org/parks/X191D/,No,82,34,14,{6AAB4792-FEFB-4217-8895-2A85EBB0AA90} +"MULTIPOLYGON (((-73.88619730395624 40.813849284564995, -73.8861973632213 40.81384928282248, -73.88619742248021 40.81384928468197, -73.88619748054928 40.81384928924177, -73.88619753979897 40.81384929650426, -73.88619759667351 40.81384930646585, -73.88619765354345 40.813849319128956, -73.886197709222 40.813849335392874, -73.88619776252548 40.81384935435596, -73.88619781464062 40.81384937511885, -73.88619786438068 40.813849398580864, -73.88619791293084 40.81384942474323, -73.88619795792067 40.81384945360358, -73.88619800172218 40.81384948426375, -73.8861980419634 40.81384951762189, -73.88619807983254 40.81384955187817, -73.88619811414138 40.81384958883248, -73.88619814489296 40.81384962668372, -73.88619817208571 40.81384966633251, -73.88619819690645 40.81384970687938, -73.88619821816837 40.81384974922377, -73.88619823468788 40.81384979246396, -73.88619824765159 40.81384983570067, -73.88633877121922 40.81438831896385, -73.8863387806243 40.81438836399802, -73.8863387864752 40.81438840812813, -73.88633878876878 40.8143884531553, -73.88633878632142 40.81438849817778, -73.88633878031979 40.81438854229627, -73.88633877076091 40.81438858731175, -73.88633875764931 40.81438863052269, -73.88633874098201 40.81438867373019, -73.88633871957525 40.814388716032475, -73.88633869461582 40.814388756530256, -73.88633866728742 40.81438879612526, -73.88633863640632 40.8143888339157, -73.88633860197102 40.81438887080215, -73.88633856398462 40.81438890498366, -73.8863385236292 40.81438893826227, -73.8863384797227 40.8143889688359, -73.88633843463401 40.814388997607416, -73.8863383859942 40.81438902367388, -73.88633833617371 40.8143890470377, -73.88633828398737 40.81438906769771, -73.88633823061882 40.81438908655556, -73.88633817488443 40.814389102709576, -73.88633811797094 40.81438911526045, -73.88633806936035 40.81438912421749, -73.88595536441434 40.81444946327195, -73.88595530158376 40.814449470413805, -73.88595524349876 40.814449474858804, -73.88595518423314 40.8144494766012, -73.88595512497369 40.814449474741565, -73.88595506690412 40.81444947018167, -73.88595500765393 40.81444946291905, -73.8859549507789 40.814449452957334, -73.88595489390845 40.814449440294126, -73.88595483822945 40.81444942403007, -73.8859547849256 40.81444940506689, -73.88595473281009 40.81444938430388, -73.88595468306967 40.81444936084173, -73.88595463451917 40.8144493346793, -73.88595458952898 40.81444930581884, -73.88595454572719 40.81444927515861, -73.88595450548577 40.81444924180038, -73.8859544747171 40.814449213854495, -73.8854871271145 40.813996732217376, -73.88548708925644 40.813996691657344, -73.8854870585052 40.81399665380592, -73.8854870313128 40.81399661415698, -73.88548700649244 40.81399657360994, -73.88548698523093 40.813996531265424, -73.88548696871187 40.81399648802508, -73.88548695574859 40.81399644478834, -73.88547832489348 40.81396332760911, -73.885478315489 40.813963282574875, -73.88547830963874 40.813963238444686, -73.88547830734572 40.81396319341752, -73.88547830979368 40.81396314839506, -73.88547831579581 40.8139631042766, -73.88547832535525 40.8139630592612, -73.88547833846727 40.813963016050344, -73.88547835513502 40.81396297284297, -73.88547837654225 40.81396293054085, -73.88547840150203 40.81396289004325, -73.88547842883078 40.81396285044845, -73.8854784597121 40.81396281265824, -73.88547849414768 40.81396277577203, -73.88547853213431 40.81396274159082, -73.88547857248986 40.813962708312495, -73.88547861639648 40.813962677739184, -73.88547866148525 40.81396264896802, -73.88547871012513 40.81396262290192, -73.88547875994556 40.813962599538456, -73.88547881213188 40.81396257887883, -73.88547886550027 40.81396256002139, -73.88547892123452 40.81396254386776, -73.88547897814787 40.81396253131733, -73.88547902675828 40.81396252236064, -73.88619718185495 40.81384929705145, -73.88619724587176 40.813849289010136, -73.88619730395624 40.813849284564995)))",X113,6242,X113,X-02,X-02,X-02,X-02,Spofford Av bet. Faile St and Hunts Point Av,202,17,41,10474,X,0.717,False,Hunts PointPlayground,Yes,100005079,PARK,20100106000000.00000,19350109000000.00000,,DPR/DOE,False,Hunts Point Playground,Y,Hunts Point Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X113/,No,84,34,15,{09FE9F5B-D792-4871-8DE2-D5093C218CB4} +"MULTIPOLYGON (((-73.92048217790372 40.772919902899325, -73.9207354517726 40.772712791450374, -73.92126610074925 40.77308589880073, -73.92101480073225 40.773295829531534, -73.92048217790372 40.772919902899325)))",Q066E,5874,Q066E,Q-01,Q-01,Q-01,Q-01,"Hoyt Ave., bet. Crescent St. and 26 St.",401,22,114,11102,Q,0.46,False,Triborough Bridge Playground E,No,100000326,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Triborough Bridge Playground E,Y,Triborough Bridge Playground E,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q066E/,No,36,12,"12, 14",{91B191C0-833E-46EF-AF36-4BB714BDCA13} +"MULTIPOLYGON (((-73.97592445668391 40.65100436835868, -73.97611221991195 40.65134319027337, -73.97628941879016 40.65161408456483, -73.97653339265305 40.651987056855354, -73.97654309524818 40.652000209089444, -73.97655739158378 40.652019392123236, -73.9765769411168 40.652045493098896, -73.9765929410983 40.65206851357952, -73.97661072452003 40.652093710070446, -73.97668272901508 40.65221350610318, -73.9771275220763 40.65300700787774, -73.97718498136805 40.65311018254479, -73.97733767060633 40.653341217911475, -73.97734291034757 40.653349971971046, -73.97753724312689 40.65364503122743, -73.9777404647003 40.65390418104295, -73.97761836470139 40.65395213870251, -73.97713714588271 40.65321979210754, -73.97713416637681 40.653216021950136, -73.977128962284 40.65321031163621, -73.97712322492237 40.653204639938224, -73.97711840573378 40.65320054973088, -73.97711133335339 40.65319518664412, -73.97710315426953 40.65318979632109, -73.97709350783678 40.6531844309197, -73.97708474671695 40.653179927488885, -73.97707379961051 40.65317471221311, -73.97705808068896 40.653168641393705, -73.97704585516283 40.65316419400142, -73.97703163709335 40.653160398184404, -73.97701136189184 40.65315593477242, -73.97699333727661 40.653153441238224, -73.9769740554406 40.6531519497252, -73.97695733187507 40.65315165550889, -73.97694742806127 40.653152086673074, -73.9769396430838 40.6531525155597, -73.9769286264204 40.653153594871554, -73.97691727499779 40.653155089253644, -73.97690492781898 40.65315712284441, -73.9768943387875 40.65315932968646, -73.97688473812057 40.653161852807635, -73.97687562097512 40.653164588547355, -73.97685973376089 40.653169938927, -73.97684080711257 40.65317730134844, -73.97681065454637 40.65318903171413, -73.97677686754125 40.65300988770506, -73.97676990905414 40.65297299571033, -73.97676380268169 40.6529406199812, -73.97675754170864 40.6529074247497, -73.97675123589646 40.652873985468474, -73.97683340245767 40.65286562633691, -73.97682655489325 40.652829324206174, -73.97682078604693 40.65279873337277, -73.97681419342031 40.652763782968805, -73.9768008512253 40.652693037442475, -73.97679494077627 40.65266170185092, -73.97678813928212 40.65262564196547, -73.97678123630116 40.65258903544501, -73.9767542357836 40.65244587835877, -73.97666482625064 40.65245497528949, -73.97664088270616 40.652328018200585, -73.97662694715194 40.652254127023006, -73.97658882564589 40.65219213936369, -73.97655677338444 40.65214001989701, -73.97651254857799 40.652068106365824, -73.97647248104472 40.65200295295073, -73.97643641241342 40.65194430477741, -73.97638076099186 40.65185380937802, -73.97642580354577 40.651849226881104, -73.97639293256535 40.65179941522487, -73.97635868374041 40.65174751677701, -73.9763084320591 40.65167136769228, -73.97627930022219 40.65162722372863, -73.97623446354592 40.651631785498864, -73.97623191328718 40.65161825830019, -73.97604383688022 40.65163739309562, -73.97592445668391 40.65100436835868)))",B255K,5791,B255K,B-07,B-07,B-07,B-07,N/B Prospect Exwy. bet. Seeley St. and Greenwood Ave.,307,39,72,11218,B,0.93,False,Sitting Area,Yes,100004342,PARK,20100106000000.00000,19600915000000.00000,,DPR,True,Sitting Area,N,Sitting Area,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B255K/,No,44,21,9,{108C1EAA-56A1-459A-9F55-C28732840D5A} +"MULTIPOLYGON (((-74.1172168256577 40.62884539052757, -74.1183290717607 40.62816894099562, -74.1185553025347 40.62838292195125, -74.11861794463465 40.62843946405763, -74.11886954824487 40.62865498061368, -74.11840371551325 40.62883806252171, -74.11836123071954 40.6288390806293, -74.11798026571684 40.62884821173899, -74.11796886217131 40.628852875528736, -74.1172168256577 40.62884539052757)))",R105,5340,R105,R-01,R-01,R-01,R-01,"Elizabet.h St., Forest Ave., Broadway, Clove Lake Pl.",501,49,120,10310,R,1.307,False,Prall Playground,Yes,100003982,PARK,20100106000000.00000,19631215000000.00000,880 FOREST AVENUE,DPR/DOE,False,Prall Playground,Y,Prall Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R105/,No,61,24,11,{20A2F503-559C-49C6-8139-1DFBDC5601EC} +"MULTIPOLYGON (((-73.90701799190813 40.832718281680805, -73.90756799583578 40.831738426121085, -73.90785272135425 40.83183073588539, -73.90730213781461 40.832810404115705, -73.90701799190813 40.832718281680805)))",X206,4732,X206,X-03,X-03,X-03,X-03,E 168 St bet. Park Av and Washington Av,203,16,42,10456,X,0.782,False,Morgan Playground,Yes,100005030,PARK,20100106000000.00000,19620525000000.00000,1241 PARK AvNUE,DPR/DOE,False,Morgan Playground,Y,Morgan Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X206/,No,79,32,15,{205AE990-5CE7-498F-8BEB-9402B8A62F37} +"MULTIPOLYGON (((-73.73844359511142 40.710986206159504, -73.73839239385607 40.71042765444048, -73.73841166045374 40.71042777026482, -73.7386734736364 40.71042934827524, -73.73946873632069 40.710181364265594, -73.73989064443954 40.710904909472134, -73.73960284071417 40.710989581682924, -73.73892551368992 40.711188849740275, -73.73860405476394 40.71128341992759, -73.7383926893531 40.711345601205146, -73.73822916912057 40.71105076474669, -73.73844359511142 40.710986206159504)))",Q082,6653,Q082,Q-13,Q-13,Q-13,Q-13,Robard La. bet. Hollis Ave. and Montery St.,413,27,105,11429,Q,2.554,False,Wayanda Park (PS 34),Yes,100000188,PARK,20090423000000.00000,19111214000000.00000,217-40 HOLLIS AVENUE,DPR,False,Wayanda Park,Y,Wayanda Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q082/,No,33,14,5,{9FC70846-9787-4F24-850C-F8D19D6FA2CF} +"MULTIPOLYGON (((-73.8663734574437 40.87746371229662, -73.86638069091124 40.87746364683172, -73.86638791660909 40.87746390553322, -73.86639511081165 40.877464487473084, -73.86640224623793 40.87746538991826, -73.86640929916594 40.877466610139926, -73.86641624587554 40.87746814450862, -73.86642306027929 40.87746998669078, -73.86651221965911 40.87749734943492, -73.8665189912325 40.87749925459603, -73.86652565442864 40.87750136764419, -73.86653219976382 40.87750368496653, -73.86653861538161 40.87750620294737, -73.86654488942914 40.87750891617009, -73.86655101360901 40.87751182102318, -73.86655697725473 40.877514912091414, -73.86656277088446 40.87751818486138, -73.86656838383159 40.87752163391792, -73.86657380780426 40.877525252947926, -73.86657903213407 40.877529037436744, -73.86658404971905 40.877532979271805, -73.86658885226178 40.87753707484149, -73.86659343266759 40.87754131243139, -73.86659778026443 40.87754568932769, -73.86660189032668 40.87755019561957, -73.86660575574507 40.877554826796356, -73.86660936942118 40.87755957294459, -73.86661272543947 40.87756442595298, -73.86661582025333 40.87756937951409, -73.86661864557792 40.877574423712964, -73.8666211978686 40.877579551341654, -73.86662347477059 40.877584753392526, -73.86662547036819 40.87759002175437, -73.86662718112032 40.87759534741823, -73.86662860704676 40.877600720478796, -73.86662974222817 40.87760613462584, -73.8666305855017 40.87761157815161, -73.86663113806802 40.87761704385362, -73.86663139638961 40.87762252092189, -73.86663136166541 40.87762800305452, -73.86663103273065 40.87763347944415, -73.86663041079157 40.877638940186884, -73.86662949705067 40.87764437717973, -73.86662829271047 40.877649782319615, -73.86662679779268 40.87765514480073, -73.86662501942806 40.87766045832783, -73.86662295645374 40.877665711193316, -73.86662061362948 40.87767089619868, -73.8666179957171 40.87767600524507, -73.86661510510916 40.877681028429805, -73.86661194893829 40.87768595855728, -73.86660852959172 40.87769078842624, -73.8666048565838 40.87769550634136, -73.86660093110997 40.87770010780158, -73.86659676386573 40.87770458381431, -73.86659235960909 40.8777089280816, -73.86584795648096 40.878461705386506, -73.8658438034167 40.878466160676794, -73.86583883869498 40.87847010894907, -73.86583316807537 40.878473465680194, -73.86582691153241 40.87847615716966, -73.86582020561761 40.8784781259448, -73.86581319159542 40.878479330747346, -73.86580602137495 40.878479746540194, -73.86579884921103 40.87847936179641, -73.86579182575392 40.87847818749693, -73.86578510518741 40.87847624723386, -73.86577882860865 40.87847358259378, -73.86577313352112 40.87847025226848, -73.86576813842402 40.8784663257333, -73.86576395348264 40.87846188686203, -73.86576066510717 40.87845703300792, -73.86575834783464 40.87845186601287, -73.86575704770684 40.8784464984916, -73.86575679415417 40.87844104393981, -73.86575759287203 40.878435619427655, -73.86575942701435 40.87843034199892, -73.86576225601628 40.87842532416743, -73.86626598599253 40.87751974586253, -73.86626905329003 40.877514772417975, -73.866272501118 40.87750994619381, -73.86627631995637 40.877505281586885, -73.86628049197334 40.87750079658622, -73.86628500764888 40.87749650558855, -73.866289846782 40.87749242477922, -73.86629499510902 40.87748856764902, -73.86630043480899 40.8774849467841, -73.86630614568458 40.87748157656877, -73.86631210873217 40.87747846778692, -73.86631830138887 40.87747563121819, -73.86632470583929 40.87747307674729, -73.86633129715152 40.87747081335021, -73.86633805277 40.87746884820465, -73.86634494894929 40.87746719028806, -73.86635196195651 40.87746584227427, -73.86635906686351 40.87746481133837, -73.86636624112384 40.877464100155734, -73.8663734574437 40.87746371229662)), ((-73.86687450214187 40.87655001468471, -73.86689442898032 40.876546090828484, -73.8669132924504 40.876550065727805, -73.8669236823715 40.876561437370995, -73.86693016106747 40.87657626508056, -73.86693204540435 40.87660985547271, -73.86693874553252 40.87667469116236, -73.8669631361242 40.87700901209821, -73.866966300183 40.87705347465805, -73.86696530488955 40.877160166974875, -73.8669657774707 40.87718427449353, -73.8669611355165 40.877204275292286, -73.8669558060643 40.87722456885746, -73.86694691620858 40.87724431802452, -73.86693803386181 40.87725971964178, -73.86685905476246 40.87735268681967, -73.86684915112224 40.87735791263391, -73.86684088277434 40.87736053432094, -73.86683368222235 40.87736194158029, -73.86682221984638 40.877362939601866, -73.86680835952474 40.87736170974825, -73.86679956493609 40.877359338517685, -73.86651282445831 40.87726228936143, -73.86650570560967 40.8772560947721, -73.86650011791092 40.87724835581507, -73.86649205571962 40.87723043397425, -73.86649049578139 40.87721972896503, -73.86648949883903 40.87720928845015, -73.86649564517253 40.877192282633786, -73.86680115975832 40.87664971678584, -73.86685101577199 40.876567788445804, -73.86686056420668 40.876557413227935, -73.86687450214187 40.87655001468471)))",X095,5594,X095,X-14,X-14,X-14,X-14,White Plains Rd. bet. E. 212 St. and Magenta St.,212,12,47,10467,X,1.395,False,Williamsbridge Square,Yes,100004204,PARK,20100106000000.00000,19260318000000.00000,,DPR,True,Williamsbridge Square,Y,Williamsbridge Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X095/,No,83,36,16,{866085C7-56BC-4C01-BD0F-B873E5079145} +"MULTIPOLYGON (((-73.95255596792327 40.66469396736154, -73.95255021453848 40.66475392945665, -73.95252688032912 40.664997217669196, -73.95252148551626 40.66505343916491, -73.95248779555229 40.66505197362335, -73.9524530199956 40.66505046619947, -73.95240432051648 40.6650473392801, -73.95236293152071 40.66504468183502, -73.95231454424268 40.66504157301732, -73.95227285843977 40.66503889110285, -73.95222427735624 40.66503724910745, -73.95218275620711 40.66503584506103, -73.95216114271727 40.665033037270945, -73.95218659180702 40.66473331916936, -73.95218818035318 40.66471471606695, -73.95242248354327 40.664701493676645, -73.95255596792327 40.66469396736154)))",B121,5423,B121,B-09,B-09,B-09,B-09,Sullican Pl. bet. Rogers Ave. and Nostrand Ave.,309,35,71,11225,B,0.293,False,Dodger Playground,Yes,100004172,PARK,20100106000000.00000,19350501000000.00000,261 SULLIVAN PLACE,DPR,False,Dodger Playground,Y,Dodger Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B121/,No,43,20,9,{590CADB9-3E0F-4B68-9F7E-B6683931B03A} +"MULTIPOLYGON (((-73.9427285671402 40.8136123765482, -73.94276691461715 40.813628540608036, -73.94286245875163 40.81366881591626, -73.94297462589653 40.81371609713305, -73.94307542374027 40.81375858648401, -73.94290174891965 40.81399677670592, -73.94255489264496 40.813850566253905, -73.9427285671402 40.8136123765482)))",M297,4972,M297,M-10,M-10,M-10,M-10,"W. 134 St., Lenox Ave., Adam C Powell Blvd.",110,9,32,10030,M,0.25,False,Parks Council Success Garden,No,100003953,PARK,20100106000000.00000,19970715000000.00000,116 WEST 134 STREET,DPR,False,Parks Council Success Garden,N,Parks Council Success Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M297/,No,70,30,13,{BD37E6C4-DD5E-4761-BEC2-98D966EAEEE5} +"MULTIPOLYGON (((-73.79577536207546 40.73448792987076, -73.79583005034742 40.73371794093949, -73.79659032474555 40.73374471049896, -73.79653963532928 40.73451528676689, -73.79577536207546 40.73448792987076)))",Q314,4858,Q314,Q-08,Q-08,Q-08,Q-08,67 Ave. bet. 173 St. and 174 St.,408,24,107,11365,Q,1.35,False,Fresh Meadows Playground (P.S. 173),Yes,100000221,PARK,20090423000000.00000,19640319000000.00000,67-10 FRESH MEADOW LANE,DPR/DOE,False,Fresh Meadows Playground,Y,Fresh Meadows Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q314/,No,25,16,6,{3A70B063-5061-47E1-85B5-0DED77093EEC} +"MULTIPOLYGON (((-74.19001249506094 40.52242503264531, -74.18770397771607 40.51936259747535, -74.1839019689328 40.52070660058366, -74.18342871710666 40.520080323900046, -74.1817437434611 40.52058351262408, -74.18085492082967 40.520618549484645, -74.178541028201 40.52036383315982, -74.17833782276308 40.51994750969803, -74.17789260082554 40.51945999875476, -74.17812076906311 40.51940111043977, -74.17814817158092 40.519394037473106, -74.17885077806777 40.51921269469714, -74.18056872329777 40.519625038770265, -74.18197192831482 40.5193232757565, -74.18231932581726 40.519248564002865, -74.18365309705833 40.51861645180414, -74.18387976802781 40.51850902302918, -74.18520324164554 40.517513223638296, -74.18598842423984 40.516830738599445, -74.18639217567576 40.51647978891173, -74.18722960416265 40.515523975883895, -74.1873826374464 40.51534683938242, -74.18754039207342 40.51516423504043, -74.19015235550226 40.51222734931127, -74.19024843739457 40.512118914728234, -74.1903797376639 40.51197072894, -74.19116737888785 40.511081784172205, -74.19136461757128 40.51085917195291, -74.19171920074959 40.51116107581198, -74.19275948979777 40.51204679150062, -74.19300460034219 40.512255476603706, -74.19322086483841 40.5124396009348, -74.19328898414655 40.51249759750888, -74.19338092664783 40.5125758752906, -74.193406227163 40.512614167368596, -74.19356503386481 40.51284645190698, -74.19359058442454 40.51288382407994, -74.19362293135431 40.51323125835426, -74.19362462298194 40.51575460554279, -74.19362037655024 40.515793800210304, -74.19361439757543 40.51583287172575, -74.19360372620936 40.51588468466313, -74.19359001633656 40.51593605966302, -74.1935777338245 40.51597426559116, -74.19356372205304 40.51601226461044, -74.19354549978628 40.5160591031351, -74.19315696197737 40.51706034110349, -74.1931418028514 40.51713021628718, -74.19313560442936 40.517200885968194, -74.193136221612 40.51724338097942, -74.1931400764291 40.51728579039531, -74.19315024960935 40.51734192317427, -74.1931616151029 40.517383530184645, -74.1931709525679 40.51741096805292, -74.19318755185517 40.51745152974121, -74.19321446429781 40.51750434920244, -74.19324128432618 40.517544369568455, -74.19329466918906 40.51761896249991, -74.19501764994178 40.51994986805383, -74.1927868701565 40.521339516990984, -74.19274980942201 40.52136289486527, -74.19268382213907 40.52140273255624, -74.19258647666746 40.52145758694079, -74.19249974154587 40.52150281028578, -74.1924324924386 40.521535660930034, -74.19233627606424 40.521579503322215, -74.19228082222507 40.521603163109866, -74.19217007105215 40.52164708554132, -74.19206759062754 40.521683966286865, -74.19001249506094 40.52242503264531)), ((-74.19577442880565 40.52924759804166, -74.19324180740425 40.52584591119766, -74.19118472606571 40.5266937611125, -74.18868604849992 40.52320326260846, -74.19221850452908 40.521920459539885, -74.19233097474336 40.52187833164187, -74.19245556705857 40.5218269861918, -74.19259190021099 40.52176477671929, -74.19274218269916 40.52168826214899, -74.1928766421687 40.52161201711245, -74.19299444080177 40.521538483511804, -74.19515318580495 40.52019268192732, -74.19614473358997 40.52151956094349, -74.19761317078171 40.52348449633763, -74.1981935899541 40.52421203565973, -74.1982095984589 40.52420578175161, -74.19916227733407 40.52563999621402, -74.19871982657197 40.525816291668754, -74.19877805849012 40.52589779331065, -74.19819119527017 40.52648742706677, -74.19778644988419 40.52695547784107, -74.19694720149847 40.52801846035979, -74.1963430236634 40.52867693452995, -74.19631753222535 40.52865423523679, -74.19607299294294 40.52892140548816, -74.19577442880565 40.52924759804166)), ((-74.18550115738485 40.520948457416495, -74.18592720004384 40.52079348924718, -74.18584032064815 40.5206735144879, -74.18540433959481 40.52083209781016, -74.18535202364674 40.52076922081479, -74.18530302296931 40.52071032779335, -74.18515784371046 40.52050094109883, -74.18705134044482 40.51981636856948, -74.18726680110198 40.52011801556746, -74.18746937306706 40.52040161496441, -74.18755662814915 40.520523770769316, -74.18778533247017 40.52084395147618, -74.18789555511898 40.520804148664084, -74.18796079861356 40.520780588431926, -74.18802371854852 40.5207578667604, -74.18809500826649 40.52073212266706, -74.18806839018521 40.520696969948396, -74.18796005738055 40.5205539009082, -74.18828454093808 40.52043658201465, -74.18839287424709 40.520579650749816, -74.18848123926081 40.52069634681697, -74.18828363059555 40.52076779322062, -74.18846418922627 40.52100624104731, -74.18833731308963 40.52105211428975, -74.18801680173902 40.52116799677381, -74.18808752364242 40.52126700319943, -74.18811043267078 40.521301184915394, -74.18831792679056 40.521610765844656, -74.18908679935934 40.522757896975655, -74.18736857316432 40.52337911311769, -74.18723435665405 40.52342763655982, -74.18624016152633 40.5220548194942, -74.18637973401002 40.522004358673485, -74.18630302868566 40.52191217252695, -74.1862797435042 40.52188418941388, -74.18565806610918 40.521137039560216, -74.18550115738485 40.520948457416495)), ((-74.17954028392796 40.52157710159622, -74.18100578609797 40.52104918482588, -74.18142944029384 40.52165406858248, -74.17996392821097 40.522181991638405, -74.17985358772165 40.522024446614324, -74.1797517366966 40.521879021033165, -74.17954028392796 40.52157710159622)), ((-74.18870953921352 40.521162027760354, -74.18880714211608 40.52112673846704, -74.18898808498369 40.521365688232486, -74.18909669137045 40.52150911426007, -74.18920529940081 40.521652539280865, -74.18965638566776 40.52224822518043, -74.18983695319399 40.52248667082158, -74.18971014356228 40.52253252024848, -74.18964510417928 40.52255603610634, -74.18958006475059 40.52257955192732, -74.18951502527612 40.52260306771141, -74.1894499845784 40.522626584361056, -74.18938494382974 40.52265009917277, -74.18931990422054 40.5226736157467, -74.18925416784712 40.52269738287932, -74.18918486297352 40.522722440912325, -74.18918336502404 40.522720205563104, -74.18841449123424 40.52157307597621, -74.18861339887894 40.521501158944986, -74.18844975903058 40.52125595391978, -74.18864450434961 40.52118554214735, -74.18870953921352 40.521162027760354)), ((-74.19743084896191 40.522848994081585, -74.19878202766378 40.52228393323022, -74.19894192424916 40.522494906297744, -74.19914461815398 40.522762345615604, -74.19777775465279 40.52333396657479, -74.19743084896191 40.522848994081585)), ((-74.19904548434374 40.52510064868467, -74.1983988313893 40.524118390663155, -74.1988355223217 40.52395242015802, -74.19905909884113 40.52429203156856, -74.19912367095854 40.52426748998609, -74.19942588455704 40.52472654028395, -74.1994630283507 40.524782960622666, -74.1995454675901 40.524908181094716, -74.19904548434374 40.52510064868467)), ((-74.19716838575918 40.52249028119457, -74.19672559434223 40.521875875856146, -74.19769799938062 40.52145984495695, -74.19752618365571 40.52155521336766, -74.19769320811136 40.52179015794155, -74.19777896872534 40.521910792978616, -74.19716684588616 40.52215985305417, -74.19732156388909 40.52240729704783, -74.19740995160595 40.522371334577116, -74.19759380622632 40.52262644203569, -74.19734289892614 40.52273242574976, -74.19716838575918 40.52249028119457)), ((-74.18102725796415 40.520794571044895, -74.1816222172407 40.520767010628546, -74.18175651786295 40.52095474773762, -74.18192991208575 40.52119712995093, -74.18208726613422 40.52141708982661, -74.18159853236078 40.52159315408526, -74.18102725796415 40.520794571044895)), ((-74.19627230307435 40.52125035438993, -74.19690840588922 40.52097820794299, -74.19726786022588 40.52145372383402, -74.19661894317261 40.52173135322459, -74.1964049534917 40.52143442109028, -74.19627230307435 40.52125035438993)))",R031,6045,R031,R-03,R-03,R-03,R-03,"Holton Ave., Chisolm St., Luten Ave., Arbutus Ave. and Raritan Bay",503,51,123,"10309, 10312",R,302.693,False,Wolfe's Pond Park,No,100005020,PARK,20100106000000.00000,19290819000000.00000,,DPR,True,Wolfe's Pond Park,Y,Wolfe's Pond Park,Large Park,Community Park,http://www.nycgovparks.org/parks/R031/,Yes,62,24,11,{352B6D55-F8E3-48E5-8B9B-81A8BC76C213} +"MULTIPOLYGON (((-73.95770989246813 40.692426155640774, -73.95749447026178 40.69134333712346, -73.95784955468996 40.69130247546525, -73.95787349319276 40.691423533012895, -73.95795286366763 40.691414399318006, -73.95803221282384 40.6914052682621, -73.95810796399996 40.691396550978425, -73.95816086972155 40.69139046294458, -73.95829235037272 40.692039770735384, -73.95845001126351 40.69202159687795, -73.95851210480416 40.692333687585595, -73.95770989246813 40.692426155640774)))",B266,5143,B266,B-03,B-03,B-03,B-03,Franklin Ave. between Willoughby Ave. and Dekalb Ave.,303,33,79,11205,B,1.687,False,Star Spangled Playground (IS 117),Yes,100005078,PARK,20100106000000.00000,19521023000000.00000,955 KENT AVENUE,DPR/DOE,False,Star Spangled Playground,Y,Star Spangled Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B266/,No,57,25,8,{AA508779-0D03-46C8-A379-A7DB2CCBFC64} +"MULTIPOLYGON (((-73.88108260167456 40.66528802498999, -73.88139492465854 40.665153607603834, -73.88146612252983 40.665249079933304, -73.88153732060654 40.66534455131711, -73.8815729209047 40.66539228654301, -73.88160852007123 40.66544002175645, -73.88129619617504 40.66557444061849, -73.8812605971635 40.665526703508114, -73.8812249970171 40.665478968186314, -73.88115379924555 40.665383495710216, -73.8811189956073 40.66533682738934, -73.88108260167456 40.66528802498999)))",B462,6228,B462,B-05,B-05,B-05,B-05,Cleveland St. between Hegeman Ave. and New Lots Ave.,305,42,75,11208,B,0.275,False,Family Community Garden,No,100004025,PARK,20100106000000.00000,20121120000000.00000,,DPR,False,Family Community Garden,N,Family Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B462/,No,60,19,8,{5EF3897B-B04B-41F0-97E2-A55AA992D752} +"MULTIPOLYGON (((-74.08921817939083 40.63923754089116, -74.08919507504505 40.63923620623509, -74.08917670044494 40.63923664282964, -74.0891547883782 40.639239356875116, -74.08914182876143 40.63924214952606, -74.08913258431623 40.63924472227083, -74.08911990817644 40.639249109518865, -74.08910882839658 40.639253850333, -74.0890979625436 40.6392594473739, -74.08908741824844 40.639265942882695, -74.08907945829463 40.63927169075879, -74.0890711394253 40.63927866631982, -74.08906318348849 40.639286540317144, -74.0890559448711 40.63929512156638, -74.08904883638775 40.63930554967895, -74.08904367154936 40.63931524686561, -74.08903973383842 40.63932499353092, -74.08903689352996 40.63933502210936, -74.0890352737039 40.639344549054115, -74.08903470250208 40.63935235249401, -74.08903487517692 40.63936127380258, -74.08903582244598 40.63936952722677, -74.08903964370518 40.639383247277806, -74.08858385292085 40.63945422160444, -74.08855176059137 40.63938156002712, -74.08847351729014 40.6392043945013, -74.0889566797727 40.63908530811668, -74.08991126830679 40.63885256495388, -74.09020290850361 40.63984575676724, -74.08976063397274 40.63991781297685, -74.08939586364082 40.63997724231663, -74.08926849388699 40.63952315279047, -74.08926771787873 40.639511275546745, -74.08927023182031 40.63949942906821, -74.08927627847523 40.639486164231, -74.08928328036122 40.63947736252472, -74.08929299813596 40.63946893872814, -74.08930524852077 40.63946085876318, -74.08931380513425 40.63945486726806, -74.08932439002064 40.63944601414821, -74.08933458390582 40.63943561243845, -74.08934375817543 40.63942387605015, -74.08935128704785 40.63941136829431, -74.08935737750875 40.63939728844893, -74.08936121943171 40.639383133806476, -74.0893629357283 40.639368879957615, -74.08936216622922 40.63935128171167, -74.08935835474149 40.6393343134914, -74.0893549662449 40.63932512812851, -74.08935004913032 40.63931497769633, -74.08934198412254 40.639302288444945, -74.08933248314531 40.639290727758386, -74.08932613706682 40.63928428767328, -74.08931645233179 40.6392758627355, -74.08930402197277 40.63926691762817, -74.0892841104915 40.63925580087327, -74.08926534904855 40.63924807637799, -74.08923983130782 40.63924095776935, -74.08921817939083 40.63923754089116)))",R123,5620,R123,R-01,R-01,R-01,R-01,Arnold St. to Prospect Ave. bet. Harvard Ave and Clyde Pl.,501,49,120,10301,R,2.057,False,Skyline Playground,Yes,100005050,PARK,20100106000000.00000,19960213000000.00000,,DPR,True,Skyline Playground,Y,Skyline Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/R123/,No,61,23,11,{8FC7E8DF-B122-4D22-9E46-4601C3E8DA66} +"MULTIPOLYGON (((-73.86563875507731 40.66506652778769, -73.86578660310377 40.66504558775613, -73.8658561607674 40.665338630480896, -73.86642083006736 40.66525956838654, -73.86648394103553 40.665512909348216, -73.86577639440873 40.66561590566959, -73.86563875507731 40.66506652778769)))",B312,5169,B312,B-05,B-05,B-05,B-05,Stanley Ave. between Autumn Ave. and Hemlock St.,305,42,75,11208,B,0.536,False,Woodruff Playground (PS 224),Yes,100004311,PARK,20100106000000.00000,19580214000000.00000,757 WORTMAN AVENUE,DPR/DOE,False,Woodruff Playground,Y,Woodruff Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B312/,No,60,19,8,{29655BB6-9166-4BDD-8ED1-B10DBD789A78} +"MULTIPOLYGON (((-74.00197756530805 40.741344803441734, -74.00236905760504 40.74150964647945, -74.00224828570016 40.74167582306734, -74.00223996831062 40.741673083887015, -74.00202778607716 40.74196503669526, -74.00165011009723 40.74180671288222, -74.00173776966207 40.741686098582555, -74.00190357278497 40.741457963307234, -74.00189725750367 40.74145530421405, -74.00197756530805 40.741344803441734)))",M066,4718,M066,M-04,M-04,M-04,M-04,"W. 17 St., 8 Ave. To 9 Ave.",104,3,10,10011,M,0.525,False,Dr. Gertrude B. Kelly Playground,Yes,100004586,PLGD,20100106000000.00000,19330524000000.00000,317 WEST 16 STREET,DPR,False,Dr. Gertrude B. Kelly Playground,Y,Dr. Gertrude B. Kelly Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M066/,No,75,27,10,{0D698485-E8E7-4A12-95DB-20D263D75FF1} +"MULTIPOLYGON (((-73.93081409242235 40.818116973091485, -73.9310560373702 40.81752510616694, -73.9310940076509 40.81743222009653, -73.9311309000285 40.81734196912297, -73.93112920468013 40.81723465859245, -73.93213503879537 40.81733433937595, -73.93213294571203 40.81734115400512, -73.93211814412301 40.81736973426796, -73.93214141660185 40.81737300416365, -73.93221438295389 40.81738325691725, -73.93221180598677 40.81739384344489, -73.93211345454158 40.817797842131874, -73.93209320696741 40.817794438037346, -73.93209149238913 40.81780317454849, -73.93204054806269 40.81806281269943, -73.93203727734357 40.818079484370536, -73.93215309268712 40.81809417394344, -73.93215202957073 40.818125453875304, -73.93161380534717 40.81812204000432, -73.93081409242235 40.818116973091485)))",X368,70804,X368,X-01,,,X-01,Exterior St. bet. E. 144 St. and E. 146 St.,201,8,40,10451,X,2.25,False,,No,100042703,PARK,,20181128000000.00000,,DPR,True,Park,,Park,,Undeveloped,,Yes,84,29,15,{B8943D6D-DDD5-4951-AEBA-CCE0FD71387C} +"MULTIPOLYGON (((-73.92531982971485 40.83540520531787, -73.92563916794397 40.835548825265796, -73.92548793538231 40.83574237534123, -73.92516999369998 40.83559938353026, -73.92531982971485 40.83540520531787)))",X328,5677,X328,X-04,X-04,X-04,X-04,Woodycrest Av bet. W 167 St and W 166 St,204,16,44,10452,X,0.19,False,Las Casitas Community Garden,No,100005010,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Las Casitas Community Garden,Y,Las Casitas Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X328/,No,77,29,15,{F0C87645-1143-453B-9912-05652D037527} +"MULTIPOLYGON (((-73.90778572603568 40.679986628293406, -73.90787171374704 40.67997669245439, -73.90792710673885 40.680253741457314, -73.90784111749569 40.6802636773365, -73.9077509567694 40.68027409518456, -73.90766380926303 40.68028416327879, -73.907659984439 40.68028460596422, -73.90757530121172 40.68029439050585, -73.90757150833012 40.680294828711396, -73.90750935640993 40.68030200900225, -73.90747580252888 40.68030588665809, -73.9074357654877 40.68031051281975, -73.90738037448996 40.68003346358216, -73.90745396629512 40.680024960701246, -73.90751991083053 40.680017341335834, -73.90760841733979 40.680007114150136, -73.90769556449496 40.67999704429648, -73.90778572603568 40.679986628293406)))",B413,5226,B413,B-16,B-16,B-16,B-16,Hull St. between Mother Gaston Blvd. and Broadway,316,37,73,11233,B,0.32,False,Hull Street Garden,No,100003905,PARK,20100106000000.00000,19980618000000.00000,227 HULL STREET,DPR,False,Hull Street Garden,N,Hull Street Garden,Sitting Area/Triangle/Mall,Garden,http://www.nycgovparks.org/parks/B413/,No,55,18,8,{E91392EF-2B78-4624-B584-23B70D9CD4BD} +"MULTIPOLYGON (((-73.90997137091038 40.83418882125961, -73.91009686079238 40.83397587653272, -73.9104272777775 40.834087028637434, -73.9103017887434 40.834299973719894, -73.90997137091038 40.83418882125961)))",X321,4775,X321,X-04,X-04,X-04,X-04,E 169th St bet. Teller Av and Clay Av,204,16,44,10456,X,0.19,False,Claremont Neighborhood Garden,No,100005009,PARK,20100106000000.00000,20021120000000.00000,1280 TELLER AvNUE,DPR,False,Claremont Neighborhood Garden,Y,Claremont Neighborhood Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X321/,No,77,32,15,{D96E9CAC-EB1A-4CC8-8694-3C4D45609B89} +"MULTIPOLYGON (((-73.88270284965012 40.747666407566484, -73.88283933363176 40.74746687524067, -73.88287533447937 40.747652382095566, -73.88270284965012 40.747666407566484)))",Q462,5931,Q462,Q-04,Q-04,Q-04,Q-04,"Roosevelt Ave., 83 St., Baxter Ave.",404,21,110,11373,Q,0.04,False,Manuel De Dios Unanue Triangle,Yes,100000260,PARK,20090423000000.00000,19890908000000.00000,,DPR,False,Manuel De Dios Unanue Triangle,Y,Manuel De Dios Unanue Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q462/,No,39,13,14,{6E080B1D-6E1F-4E15-AB3E-4F5DFA841469} +"MULTIPOLYGON (((-73.9497527460619 40.69015204677049, -73.9498074339426 40.69043103345996, -73.94882531530315 40.690543797242974, -73.94887937976793 40.69081961517784, -73.94842985724969 40.69087139134258, -73.94831953786269 40.690318216857364, -73.9497527460619 40.69015204677049)))",B140,5480,B140,B-03,B-03,B-03,B-03,Macy Ave. bet. Lafayette Ave. and Kosciuszko St.,303,36,79,11216,B,1.67,False,Banneker Playground (PS 256),Yes,100004721,PARK,20100106000000.00000,19360331000000.00000,152 KOSCIUSZKO STREET,DPR/DOE,False,Banneker Playground,Y,Banneker Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B140/,No,56,25,8,{C26A1A0C-56CF-47C1-A5AE-45BE67AA1857} +"MULTIPOLYGON (((-73.95749594420685 40.728529766212326, -73.95819511518695 40.7284656736169, -73.95828283298293 40.72900957849866, -73.95758379432932 40.72907453255907, -73.95749594420685 40.728529766212326)))",B001,5029,B001,B-01,B-01,B-01,B-01,Franklin St. bet. Milton St. and Noble St.,301,33,94,11222,B,0.896,False,American Playground,Yes,100004272,PARK,20100106000000.00000,19550418000000.00000,81 FRANKLIN STREET,DPR,True,American Playground,Y,American Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B001/,No,50,26,12,{5AE648CE-9C61-4D26-ADBA-596B5C0322CF} +"MULTIPOLYGON (((-73.78641186601298 40.84665149994359, -73.78635634956743 40.8465040257443, -73.78658946985556 40.84645083279581, -73.78668247753471 40.846697894410966, -73.78644935645224 40.8467510884457, -73.78641186601298 40.84665149994359)))",X107,6565,X107,X-15,X-10,X-10,X-10,City Island Ave. bet. Fordham St. and Hawkins St.,210,13,45,10464,X,0.136,False,Hawkins Park,Yes,100004420,PARK,20100106000000.00000,19331018000000.00000,281 CITY ISLAND AVENUE,DPR,False,Hawkins Park,Y,Hawkins Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X107/,No,82,34,14,{FD22976C-65F1-428A-9D9C-DEC352EA3425} +"MULTIPOLYGON (((-73.90477399198286 40.90186976065099, -73.90581444419416 40.90181382514397, -73.90554666443872 40.90238488492337, -73.90543048541335 40.90263427149978, -73.9053398135089 40.90284153173226, -73.90529525462345 40.90295189176972, -73.9049559416375 40.902879214959334, -73.90492880182208 40.90287133139244, -73.9049095911358 40.90286350477715, -73.90489161695427 40.90285414205191, -73.90486993799435 40.90283945801537, -73.9048556439127 40.90282696553446, -73.90484322542149 40.90281336700282, -73.9048395293195 40.902808616607096, -73.90482983516436 40.90279379836328, -73.90482457919097 40.902783513209684, -73.90482031934397 40.90277296503538, -73.90481682163781 40.90276227971529, -73.90481125805702 40.90274635007643, -73.90480522435554 40.90273051820235, -73.90480094188793 40.90272002403757, -73.90479645165642 40.9027095792279, -73.9047941293686 40.90270437702026, -73.9047868538206 40.90268884848443, -73.90478432613493 40.90268370103666, -73.90477911997613 40.90267344923975, -73.90477093138558 40.90265818649293, -73.90475931272309 40.9026380601055, -73.90475628516167 40.90263307072981, -73.90474367857564 40.90261328931144, -73.90474040521637 40.90260838888037, -73.90473371480988 40.90259864643079, -73.90472683084357 40.9025889803622, -73.90471249408178 40.90256988998431, -73.90470125134088 40.90255579083772, -73.90469352420303 40.902546498672265, -73.90468959175145 40.90254188585032, -73.90468159145284 40.902532729431556, -73.904673592289 40.90252361083343, -73.90465595218703 40.90250648347645, -73.90464688745277 40.90249806007028, -73.90463283775959 40.902485715442005, -73.90460825263096 40.902465943923524, -73.9045822702975 40.90244722931327, -73.90455496900645 40.90242962930588, -73.9045146900045 40.90240696054282, -73.90448456946416 40.902392245137406, -73.90440590699185 40.90235594276896, -73.90477399198286 40.90186976065099)), ((-73.90414666743693 40.90269835463791, -73.90439113505968 40.90237545482309, -73.90441559908291 40.902386115194524, -73.90445983384421 40.902405389741155, -73.90448389365511 40.902416547731, -73.90453626715346 40.902445275955, -73.90456888711766 40.90246664438477, -73.90459948831729 40.90248966712646, -73.904618697504 40.90250588089714, -73.90464561598627 40.90253141383356, -73.90466203373384 40.902549320001434, -73.90467742055233 40.9025677665064, -73.90469910001352 40.9025960803001, -73.90470929669323 40.90261051086182, -73.90472532178133 40.90263494069993, -73.9047343476282 40.902649814231516, -73.90474011313498 40.90265981345615, -73.90474838736999 40.902674936700876, -73.90475620685761 40.90269019734376, -73.90476356567247 40.90270558907668, -73.90477046026534 40.902721103792466, -73.90477892686259 40.90274196867671, -73.90478472684063 40.90275774002698, -73.90479187553993 40.90277897392199, -73.90479866410678 40.902794776703125, -73.90480738325394 40.902810024576794, -73.90481423265895 40.90281981487841, -73.90482187773645 40.90282925914936, -73.90483943525066 40.90284696272123, -73.90484927895214 40.902855151727465, -73.9048708994616 40.90287004283085, -73.90488863928151 40.902879795275624, -73.9049075096546 40.90288823844526, -73.90492734453386 40.902895295661395, -73.90494796598422 40.90290090374323, -73.90484670532673 40.90315233078094, -73.90438289825786 40.903027356692085, -73.90401851757245 40.90286761652413, -73.90414666743693 40.90269835463791)))",X152,6114,X152,X-08,X-08,X-08,X-08,W. 254 St. bet. Riverdale Ave. and Mosholu Ave.,208,11,50,10471,X,3.5,False,Vinmont Veteran Park,Yes,100004344,PARK,20100106000000.00000,19450112000000.00000,,DPR/DOE,Part,Vinmont Veteran Park,Y,Vinmont Veteran Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X152/,No,81,34,16,{70FFDE8A-65DD-48E9-A5CF-C9F2DDC01DD4} +"MULTIPOLYGON (((-73.8878522703898 40.6653026295085, -73.88792034340592 40.66557285444951, -73.88765776023676 40.66561045063428, -73.88763087044542 40.665505649259885, -73.88780536339127 40.665480666342404, -73.88776370880328 40.66531530976185, -73.8878522703898 40.6653026295085)))",B543,5506,B543,B-05,B-05,B-05,B-05,Livonia Ave. bet. Hendrix St. and Van Siclen Ave.,305,42,75,11207,B,0.101,False,East New York Farms Garden,No,100008352,PARK,20130114000000.00000,20120430000000.00000,648 HENDRIX STREET,DPR,False,East New York Farms Garden,,East New York Farms Garden,,Garden,,No,60,19,8,{42C84A12-E984-4900-9C19-F04935488F2B} +"MULTIPOLYGON (((-74.07874711255248 40.62267293285725, -74.0798180864692 40.62237743587524, -74.08002470670814 40.62277971056971, -74.08054937416527 40.62380117560157, -74.08016183452186 40.623924416147254, -74.07972932852232 40.62406195262219, -74.07949828223586 40.624135425792296, -74.07934519099432 40.62383736923253, -74.07901173869108 40.62318815701862, -74.0789736282372 40.62311395599955, -74.07874711255248 40.62267293285725)))",R061,5055,R061,R-01,R-01,R-01,R-01,"Tompkins Ave., Broad St. and Hill St.",501,49,120,10304,R,4.096,False,Stapleton Playground,Yes,100004541,PARK,20100106000000.00000,19580407000000.00000,64TOMPKINS AVENUE,DPR/DOE,True,Stapleton Playground,Y,Stapleton Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R061/,No,61,23,11,{F1FE3802-1C95-4AEC-9ACE-D18E2E8B3FE4} +"MULTIPOLYGON (((-74.25442681695237 40.51176213870682, -74.25313097583357 40.510782210294316, -74.25277597493434 40.510606640483154, -74.25265772682879 40.51054816000651, -74.25239482252144 40.51041813600391, -74.25214514540704 40.51029465262834, -74.25221467619797 40.51016178112219, -74.2522372201131 40.51011870051668, -74.2523896921065 40.50982732570436, -74.25251862693061 40.509661172938245, -74.25326534924469 40.509999500293475, -74.25503339521298 40.51080053894977, -74.25492229109304 40.51098863874106, -74.25479835641282 40.51093249016758, -74.25461672765132 40.51146385641937, -74.25442681695237 40.51176213870682)), ((-74.25248696820749 40.5111733974889, -74.25252240418519 40.511103906460065, -74.25297715381576 40.511340787032296, -74.25335775108798 40.51162476529024, -74.25419588817464 40.512250116895416, -74.2537699224306 40.5128569460516, -74.2537196537336 40.51281159919779, -74.25303811835069 40.512213675911184, -74.25266157678406 40.5118379188846, -74.25218121347687 40.5113627853689, -74.25248696820749 40.5111733974889)), ((-74.2535296167547 40.50836171733142, -74.25363060274064 40.50823191380354, -74.25390688770254 40.50835709383109, -74.25396952296332 40.50838547241748, -74.25442126379995 40.5085901463794, -74.25454009876623 40.50864398779743, -74.25544104794406 40.50905217611341, -74.25566286745045 40.509152673356915, -74.25562332950098 40.50931031687858, -74.25435223076795 40.50873442790008, -74.254291345372 40.508706842616654, -74.2535296167547 40.50836171733142)), ((-74.25217923763806 40.51203951484015, -74.25246561511429 40.511869019558816, -74.25256177402751 40.511962111289535, -74.25263913358728 40.51203700133133, -74.25237869631584 40.512232613495364, -74.25217923763806 40.51203951484015)))",R139,4604,R139,R-03,R-03,R-03,R-03,"Bentley St. and Arthur Kill Rd., Hopping Ave. and Amboy Rd.",503,51,123,10307,R,9.181,False,Tottenville Shore Park,No,100004753,PARK,20100106000000.00000,19970116000000.00000,117 1/2 HOPPING AVENUE,DPR,False,Tottenville Shore Park,N,Tottenville Shore Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R139/,Yes,62,24,11,{F96D579C-FD6E-4B2E-AA65-B5426726D985} +"MULTIPOLYGON (((-73.95071288505537 40.76635521675442, -73.95081198540159 40.76624353087735, -73.95084943036161 40.76620133123128, -73.95123728145154 40.76576421849672, -73.95147302766631 40.7654956796646, -73.95151866415861 40.76544369476738, -73.95154980242889 40.76540822620449, -73.95172935446298 40.765205343257875, -73.95182475508089 40.76510004491913, -73.9518432576948 40.76507993088987, -73.95266136520951 40.764165966438156, -73.95274002367078 40.76407835175269, -73.9536702599878 40.763031499801386, -73.9537296630952 40.76296624070832, -73.95382419040402 40.76285924288016, -73.95391743330586 40.76275437235106, -73.95394377757572 40.76272526507519, -73.95443201693922 40.762183458197605, -73.95480091589067 40.7618528320024, -73.95521718824388 40.761481792181485, -73.9556965395294 40.76106012893175, -73.95573054651923 40.76103909541026, -73.9561802568961 40.76063526403033, -73.95636206760557 40.76047219400862, -73.95642117750893 40.760496394935295, -73.9562971544732 40.76059457140401, -73.95619973209476 40.76067927369749, -73.95592666406917 40.761021758447896, -73.95581762509254 40.76111875235934, -73.9555281405035 40.76137529019175, -73.95548098780492 40.7614170752042, -73.9553428431656 40.76153519855593, -73.95512472257597 40.761736001058196, -73.95507351026755 40.76178197346759, -73.95503724708573 40.76181452516662, -73.95490704844737 40.76193140119015, -73.954531435 40.76225605562735, -73.95424706212745 40.762530708567525, -73.95409593803124 40.76267379443805, -73.95376295016793 40.76305475564382, -73.95347455492022 40.76337982967438, -73.95265428183794 40.76426722162659, -73.95200471014431 40.76501106016847, -73.95152854325508 40.765541082135805, -73.95100117607518 40.766144869431116, -73.95090209385083 40.766258308761294, -73.95087276718539 40.76629186884903, -73.95084490829936 40.76632496399482, -73.95078782503307 40.766394092026914, -73.95075252719981 40.76637547703513, -73.95071288505537 40.76635521675442)), ((-73.9492939174329 40.76800709221116, -73.94968048675882 40.76752560203099, -73.94976575687072 40.767570604997715, -73.95028012090692 40.76698840294281, -73.95031124913845 40.767003167525786, -73.95032088728944 40.76700867646226, -73.94979893551843 40.767591613804605, -73.94960949814185 40.767820697614916, -73.94948028672104 40.767969645587115, -73.94920615198063 40.7683512539917, -73.94902636400009 40.76857820507801, -73.94846860036013 40.76918742863118, -73.9484685505709 40.769187483539625, -73.94833955576168 40.769328378898905, -73.94782877694504 40.769882654515776, -73.94739713935934 40.77031396602077, -73.94736432504372 40.77034826021625, -73.94724288890764 40.7704751666564, -73.9472065121511 40.770513182756616, -73.94705566659597 40.770670824106794, -73.94647050783587 40.77129375699674, -73.94636896285392 40.77137953494652, -73.94632712455656 40.771355908770566, -73.94633114150633 40.771352520246694, -73.94635987886683 40.771328275870275, -73.94639881456668 40.77129084385765, -73.94641152995213 40.77127765379645, -73.94648729818681 40.771199049855845, -73.94648732426785 40.771199021952356, -73.94652400555586 40.77116035966271, -73.94711180617917 40.77052127447171, -73.94739365781102 40.770233503547125, -73.94748370684614 40.7701327449695, -73.94830431062717 40.76923769948954, -73.94867751207775 40.76885046967827, -73.9487535931722 40.76874764981751, -73.9492939174329 40.76800709221116)))",M108T,6368,M108T,M-15,M-15,M-15,M-15,"FDR Drive, E 63 St. To E 81 St.",108,5,19,"10021, 10028, 10065, 10075",M,3.089,False,East River Walk,No,100004537,PARK,20100106000000.00000,,,DPR/CDOT,False,East River Walk,Y,East River Walk,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/M108T/,Yes,76,29,12,{785CEE08-FFE4-4256-85F7-91CBDD828002} +"MULTIPOLYGON (((-73.85406291417208 40.73633998435771, -73.8553095245215 40.735985321435834, -73.8554123991414 40.736193284511806, -73.85582226266423 40.73607558496769, -73.85592354786793 40.73604650011974, -73.85597717286024 40.73615013022963, -73.85591090265767 40.73616932272507, -73.8551684860799 40.7363865361064, -73.85509881391147 40.736398223517064, -73.85492333083852 40.73642866400996, -73.85472714300467 40.73645909072589, -73.8545298870088 40.73648524104245, -73.85433173812307 40.736507104369906, -73.85426936209532 40.73651218536899, -73.85420698250647 40.73651726632984, -73.85417237612525 40.73651978085902, -73.85406291417208 40.73633998435771)))",Q357B01,5917,Q357B01,Q-06,Q-06,Q-06,Q-06,"Horace Harding Exwy. Sr. Rd. S., 62 Ave. bet. 102 St. and Yellowstone Blvd.",406,29,112,11375,Q,0.867,False,Barrier Playground,Yes,100000052,PARK,20090423000000.00000,19540830000000.00000,,DPR,True,Barrier Playground,Y,Barrier Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q357B01/,No,35,16,6,{3D4B9A90-4C7A-4D98-9451-4499D2A71DB9} +"MULTIPOLYGON (((-73.72290873000276 40.74952421057348, -73.72290521137465 40.749525223287776, -73.72223178196698 40.749719090391615, -73.7221323883723 40.74974770301598, -73.7218313197319 40.74911053867373, -73.72188612942455 40.74908976117077, -73.72255161945115 40.748837475242894, -73.72256641457663 40.74886592739364, -73.72290273195121 40.74951267681332, -73.72290873000276 40.74952421057348)), ((-73.72105821106067 40.750066932934665, -73.72105550680271 40.75006772063601, -73.72066333780441 40.75018193743502, -73.72062117684268 40.75019421630086, -73.72059702819706 40.750198125375356, -73.72057175153051 40.75019684746925, -73.72052813581581 40.75017653599753, -73.72050854062212 40.75014645012227, -73.72049094681493 40.75011207906799, -73.72046348735299 40.750058435655696, -73.72028745776434 40.74971454728497, -73.72027941733339 40.74969883906363, -73.72075445380227 40.74951876394212, -73.72076093522081 40.74951630685312, -73.72077170772845 40.74953647288807, -73.72077229239099 40.74953625818288, -73.72105821106067 40.750066932934665)), ((-73.72290873000276 40.74952421057348, -73.7229087910885 40.74952432778681, -73.72290828732196 40.74952445354693, -73.72290873000276 40.74952421057348)))",Q327,69206,Q327,Q-13,Q-13,Q-13,Q-13,Little Neck Pkwy. bet. 72 Ave. and 73 Ave.,413,23,105,11426,Q,2.059,False,Castlewood Playground,Yes,100000410,PARK,,19491117000000.00000,252-72 LITTLE NECK PARKWAY,DPR/DOE,False,Castlewood Playground,Y,Castlewood Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q327/,No,24,11,3,{6DDC1422-4F58-4DCE-B3D9-BCBA47E51972} +"MULTIPOLYGON (((-73.8465883819536 40.67099679673804, -73.84689485987938 40.67054998499263, -73.84689820930662 40.670551001630876, -73.84674244562878 40.67077808556149, -73.84659156883014 40.670998047302724, -73.8465883819536 40.67099679673804)), ((-73.84651378992022 40.67096753221291, -73.84681649935085 40.67052621510225, -73.84681986650781 40.670527235368446, -73.84651699451993 40.67096878910692, -73.84651378992022 40.67096753221291)))",Q433A,6425,Q433A,Q-10,Q-10,Q-10,Q-10,Pedestrian Way bet. N. Conduit Ave. and Arion Rd.,410,32,106,11417,Q,0.008,False,,No,100000313,PARK,,19651202000000.00000,,DPR,TRUE,Park,,Park,EXWY,Strip,,No,23,15,8,{DF6F8151-1282-4FBE-A622-6DD747EE55C6} +"MULTIPOLYGON (((-73.8887947119048 40.81275394275962, -73.88879477116883 40.8127539410158, -73.88879483042685 40.81275394287393, -73.88879488849514 40.812753947432455, -73.88879494774413 40.81275395469356, -73.88879500461813 40.81275396465392, -73.88879506148767 40.81275397731575, -73.88879511716596 40.812753993578404, -73.88879517046924 40.81275401254027, -73.88879522258432 40.81275403330199, -73.88879527232447 40.81275405676293, -73.88879532087486 40.81275408292421, -73.88879536586512 40.812754111783505, -73.88879540966711 40.812754142442735, -73.88879544990893 40.812754175799974, -73.88879548777882 40.8127542100554, -73.8887955220885 40.8127542470089, -73.88879555284105 40.812754284859494, -73.88879558003491 40.81275432450763, -73.88879560485681 40.812754365054005, -73.88879562612009 40.812754407397925, -73.88879564264094 40.81275445063776, -73.88879565560764 40.81275449297367, -73.88883096731584 40.81288908214532, -73.88883097672239 40.8128891271793, -73.88883098257483 40.81288917130936, -73.8888309848701 40.81288921633646, -73.88883098242441 40.812889261359004, -73.88883097642456 40.812889305477604, -73.8888309668676 40.81288935049329, -73.88883095375796 40.81288939370457, -73.88883093709265 40.81288943691239, -73.88883091568792 40.81288947921517, -73.88883089073057 40.81288951971353, -73.88883086340425 40.81288955930909, -73.88883083252527 40.8128895971002, -73.88883079809212 40.81288963398744, -73.88883076010787 40.812889668169724, -73.88883071975465 40.81288970144925, -73.88883067585026 40.81288973202385, -73.88883063076364 40.81288976079632, -73.88883058212589 40.812889786863884, -73.88883053230741 40.81288981022876, -73.88883048012302 40.812889830889894, -73.88883042675643 40.81288984974894, -73.88883037102389 40.81288986590413, -73.8888303141121 40.812889878456225, -73.8888302595753 40.81288988830915, -73.88846629175524 40.81294547752608, -73.88846623129676 40.812945484671545, -73.88846617321323 40.81294548911783, -73.88846611394902 40.8129454908615, -73.88846605469085 40.812945489003184, -73.88846599662241 40.812945484444526, -73.88846593737328 40.81294547718325, -73.88846588049917 40.812945467222725, -73.88846582362953 40.81294545456074, -73.88846576795117 40.81294543829792, -73.88846571464782 40.81294541933588, -73.8884656625327 40.812945398574, -73.8884656127925 40.81294537511297, -73.88846556424211 40.81294534895156, -73.88846551925187 40.812945320092055, -73.88846547544989 40.81294528943277, -73.88846543520813 40.81294525607542, -73.88846539733835 40.81294522181987, -73.88846536302873 40.81294518486623, -73.88846533227627 40.81294514701559, -73.88846530508252 40.81294510736738, -73.88846528026075 40.81294506682094, -73.88846525899761 40.812945024476974, -73.88846524247693 40.81294498123708, -73.88846522951042 40.81294493890115, -73.8884480350596 40.81287940383064, -73.88842991851219 40.81281034961869, -73.88842990910743 40.812810303684195, -73.88842990325527 40.812810259554126, -73.88842990096033 40.812810214527005, -73.88842990340622 40.81281016950447, -73.88842990940633 40.81281012538584, -73.88842991896357 40.8128100803702, -73.88842993207344 40.812810037159004, -73.88842994873903 40.81280999395118, -73.88842997014395 40.81280995164849, -73.88842999510152 40.81280991115025, -73.88843002242804 40.812809871554784, -73.88843005330722 40.81280983376374, -73.88843008774053 40.81280979687665, -73.88843012572495 40.812809762694464, -73.88843016607838 40.812809729415086, -73.88843020998289 40.812809698840645, -73.8884302550696 40.812809670068376, -73.88843030370742 40.812809644000964, -73.888430353526 40.812809620636216, -73.88843040571045 40.812809599975274, -73.88843045907714 40.812809581116454, -73.88843051480971 40.812809564961384, -73.88843057172146 40.812809552409504, -73.88843062625826 40.81280954255683, -73.8887945933632 40.812753954351756, -73.88879465382152 40.812753947206104, -73.8887947119048 40.81275394275962)))",X248,5309,X248,X-02,X-02,X-02,X-02,Baretto St bet. Randall Av and Spoffard Av,202,17,41,10474,X,0.12,False,Barretto Park,Yes,100005029,PARK,20100106000000.00000,19790717000000.00000,634 BARRETTO STREET,DPR,False,Barretto Park,Y,Barretto Park,Neighborhood Park,Undeveloped,http://www.nycgovparks.org/parks/X248/,No,84,34,15,{C521F875-653E-40C1-8109-F89AF66CFE9D} +"MULTIPOLYGON (((-73.91074031455958 40.82458883497852, -73.91082843118414 40.82443148833823, -73.91099822203456 40.82467216091308, -73.91074031455958 40.82458883497852)))",X052,5632,X052,X-03,X-03,X-03,X-03,"E 163 St, Washington Av and Brook Av",203,17,42,10451,X,0.054,False,Triangle,Yes,100004896,PARK,20100106000000.00000,18641108000000.00000,,DPR,True,Triangle,Y,Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X052/,No,79,32,15,{9E8271F5-7F00-4013-92B1-974E937B13DB} +"MULTIPOLYGON (((-73.84626606026997 40.67098522078416, -73.84586062020428 40.670893489265886, -73.84582210176926 40.670843430157355, -73.84602114824672 40.67028494139427, -73.84681649935085 40.67052621510225, -73.84651979335784 40.670958779995544, -73.84651608971608 40.67096417905533, -73.84647225536433 40.67094765551999, -73.84640954004018 40.67104118142251, -73.84626606026997 40.67098522078416)))",Q414,6622,Q414,Q-10,Q-10,Q-10,Q-10,N Conduit Ave. and 149 Ave.bet. Whitelaw St. and Lafayette St.,410,32,106,11417,Q,1.052,False,Rocket Park,Yes,100000063,PARK,20090423000000.00000,19600520000000.00000,88-17 NORTH CONDUIT AVENUE,DPR/DOE,False,Rocket Playground,Y,Rocket Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q414/,No,23,15,8,{11F15965-5B1D-409B-B192-1B0BACE08EE8} +"MULTIPOLYGON (((-73.85048341833254 40.67426760352925, -73.85055200457204 40.674256941376335, -73.85117415074735 40.67416928111596, -73.85117926476632 40.67419005903952, -73.85057408789626 40.67427859505737, -73.85049446966427 40.674288357680915, -73.85049196727121 40.67428873714855, -73.85048941712992 40.67428878426359, -73.85048689376231 40.67428849552079, -73.85048447284078 40.6742878818247, -73.85048222647528 40.67428696037882, -73.8504802232073 40.67428575738722, -73.85047851972253 40.67428431164582, -73.85047716915419 40.674282663746865, -73.85047621042229 40.67428086326936, -73.8504756729746 40.67427896428258, -73.8504755720619 40.674277022638286, -73.85047591109901 40.6742750977751, -73.85047667931603 40.67427324551099, -73.85047785529804 40.674271521650134, -73.85047940226644 40.674269976573605, -73.85048127516941 40.67426865795019, -73.85048341833254 40.67426760352925)), ((-73.85142053672831 40.67413456317803, -73.852098553112 40.67403668165993, -73.85210240608542 40.674058219758116, -73.85142536857066 40.674154617611656, -73.85142053672831 40.67413456317803)), ((-73.85385786282815 40.67378353261561, -73.85389357559413 40.67377834867554, -73.85389344559725 40.673778840192355, -73.85400470737747 40.67376416884022, -73.85400864548953 40.673782207576274, -73.85388773417021 40.67380039490076, -73.8538876745454 40.673800617252574, -73.8538514270435 40.67380585544306, -73.85365900177766 40.67383366282925, -73.85331990158699 40.673883057474, -73.85331591900002 40.67386219824064, -73.85338140892149 40.67385269211992, -73.85344205153369 40.67384388939417, -73.85385786282815 40.67378353261561)), ((-73.85240195089828 40.673993262067015, -73.85310825173153 40.67389244007972, -73.85311016120508 40.673911005760075, -73.85240678138341 40.67401405848312, -73.85240195089828 40.673993262067015)))",Q177,6171,Q177,Q-10,Q-10,Q-10,Q-10,133 Ave. bet. 82 St. and 86 St.,410,32,106,11417,Q,0.137,False,Tudor Malls,Yes,100000448,PARK,20090423000000.00000,,,DPR,False,Tudor Malls,N,Tudor Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q177/,No,23,15,8,{53FCB858-4C87-4CCF-B38A-E5536F0F4142} +"MULTIPOLYGON (((-73.88660847294206 40.66513649319983, -73.88697061955577 40.66508740672822, -73.88698164181662 40.6651304190311, -73.88699591962695 40.665186092193345, -73.88700484252988 40.665220888818475, -73.88700961002999 40.66523948106619, -73.88701821574865 40.66527303556598, -73.88702356364145 40.66529388327679, -73.8870384806691 40.6653520298792, -73.88705095872933 40.665400672733206, -73.88706560206647 40.66545775104984, -73.88707876275883 40.66550905289551, -73.88709337911894 40.665566027621935, -73.88710689465849 40.66561871390605, -73.88712452928205 40.66568745233695, -73.88712557138044 40.66569151558998, -73.88676344407656 40.665740598966, -73.88666231014119 40.66534636304123, -73.88665609063769 40.6653221186065, -73.8866427141413 40.665269973614684, -73.88660847294206 40.66513649319983)))",B515,5112,B515,B-05,B-05,B-05,B-05,Schenck Ave. bet. Livonia Ave. and New Lots Ave.,305,42,75,11207,B,0.525,False,United Community Center,No,100004763,PARK,20100106000000.00000,20050429000000.00000,620 SCHENCK AVENUE,DPR,False,United Community Center Garden,N,United Community Center,Greenthumb,Garden,http://www.nycgovparks.org/parks/B515/,No,60,19,8,{23E34812-D1E2-4012-8F63-A5B9953B6556} +"MULTIPOLYGON (((-73.90055277458494 40.72648509556475, -73.90035207378678 40.72625752178056, -73.90089289352636 40.72631048105234, -73.90055277458494 40.72648509556475)))",Q360F,5563,Q360F,Q-05,Q-05,Q-05,Q-05,"Borden Ave., Hamilton Pl., Jay Ave.",405,30,104,11378,Q,0.126,False,Technical Sgt. Thomas J. Davey Triangle,Yes,100000342,PARK,20090423000000.00000,19531229000000.00000,,DPR,True,Technical Sergeant Thomas J. Davey Triangle,N,Technical Sergeant Thomas J. Davey Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360F/,No,30,15,6,{ECE4BD0E-CCA0-477A-8E5C-633CCA42094A} +"MULTIPOLYGON (((-73.94446793890685 40.782529932284525, -73.9445166950128 40.782377265781115, -73.94500558362897 40.782583287296426, -73.9446527294926 40.783065709869916, -73.94427850199222 40.7829080074648, -73.94440586118965 40.782665081180454, -73.94446793890685 40.782529932284525)), ((-73.94370248517481 40.78360746596283, -73.9440911503013 40.783139422213154, -73.94447759978034 40.78330164532466, -73.94412484760281 40.78378476507073, -73.94370248517481 40.78360746596283)))",M192,4661,M192,M-08,M-08,M-08,M-08,"FDR Dr., E. 95 St. To E. 97 St.","108, 111","5,8",19,"10029, 10128",M,1.227,False,Stanley Isaacs Playground,Yes,100005112,PLGD,20100106000000.00000,19460326000000.00000,1840-1860 1 AVENUE,DPR,True,Stanley Isaacs Playground,Y,Stanley Isaacs Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M192/,No,68,29,"13, 12",{5349DA39-F5CC-4AD8-8260-648ACD208DD2} +"MULTIPOLYGON (((-73.98448088352004 40.7198638184421, -73.98457038462759 40.71989117445007, -73.98443401552986 40.72015698116334, -73.98434445491532 40.720129741208005, -73.98448088352004 40.7198638184421)))",M335,5974,M335,M-03,M-03,M-03,M-03,Stanton St. and Clinton St.,103,1,7,10002,M,0.06,False,Clinton Community Garden (LES),No,100004743,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Clinton Community Garden (LES),N,Clinton Community Garden (LES),Greenthumb,Garden,http://www.nycgovparks.org/parks/M335/,No,65,26,12,{F25B35D9-47CB-4245-B545-818DDCBAC94A} +"MULTIPOLYGON (((-73.8600480997644 40.733063878352716, -73.86073288176425 40.7328620984749, -73.8610226773026 40.73342587290474, -73.86074512388298 40.73350765773606, -73.86085547002129 40.73371942518848, -73.86064919146685 40.73377981153951, -73.86069300408997 40.7338593182733, -73.86048759654305 40.73391899758787, -73.8600480997644 40.733063878352716)))",Q428,5366,Q428,Q-06,Q-06,Q-06,Q-06,62 Dr. bet. 97 Pl. and 98 St.,406,29,112,11374,Q,1.304,False,Horace Harding Playground,Yes,100000255,PARK,20090423000000.00000,19610707000000.00000,62-27 97 PLACE,DPR/DOE,False,Horace Harding Playground,Y,Horace Harding Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q428/,No,35,16,6,{D98CBF41-BE1C-47F9-90C0-32EEE62DF189} +"MULTIPOLYGON (((-73.89112692091072 40.70543757971228, -73.89119031940271 40.70520772809899, -73.89213662224792 40.70741979992975, -73.89098210085945 40.708706763918556, -73.8908936387197 40.708658525239, -73.8908537824446 40.70863559734653, -73.89075556240095 40.708575818254246, -73.8907149796058 40.70854929838284, -73.89064898503098 40.70850411196466, -73.89059352141784 40.7084646438621, -73.89051993627422 40.70840902583001, -73.89042819537426 40.70833582238476, -73.89044879340973 40.7082484698301, -73.89046672681901 40.7081724206614, -73.89048486754176 40.7080954891848, -73.8905008811049 40.7080275797105, -73.89051881439683 40.70795152963095, -73.89053949799819 40.70786381062893, -73.89056251836601 40.70776618731261, -73.89058120344524 40.70768695012353, -73.89059934390376 40.70761001862406, -73.89062173967866 40.70751504130371, -73.89064571907905 40.70741334766338, -73.89067424211136 40.70729238557578, -73.89069100720604 40.70722128896971, -73.89070852300044 40.70714700346004, -73.89072207301376 40.70708953934765, -73.89074075771367 40.707010302125695, -73.89076632041592 40.70690189213735, -73.89077916608022 40.70684741614743, -73.89079668167814 40.70677313062069, -73.89081344651169 40.70670203399201, -73.89083158643564 40.706625101545534, -73.89086181994172 40.70649688199436, -73.89087487279404 40.70644152368567, -73.89089301375809 40.7063645921285, -73.8909025632545 40.70632409074483, -73.89092474963773 40.70622999655433, -73.89094289048671 40.70615306498718, -73.8909657809903 40.70605598175376, -73.89097637183737 40.70601106974012, -73.8910032290274 40.70589716598704, -73.89104065255611 40.70575033960013, -73.89112692091072 40.70543757971228)))",Q305,4915,Q305,Q-05,Q-05,Q-05,Q-05,65 Pl. bet. Shaler Ave. and the rail yards,405,30,104,11385,Q,5.4,False,Mafera Park,Yes,100000135,PARK,20090423000000.00000,19480809000000.00000,65 PLACE,DPR,False,Mafera Park,Y,Mafera Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q305/,No,28,15,6,{8A4F360E-AAE8-4503-8CBF-C8E29BCF3E57} +"MULTIPOLYGON (((-73.82832690582798 40.82711407647879, -73.82795439773878 40.82667561866621, -73.82826083662042 40.82652573116342, -73.82835883407992 40.82664128296017, -73.82854870962227 40.82654840990336, -73.8286388723328 40.82650350466101, -73.82872473437041 40.82652893708509, -73.82922543606938 40.82667724319996, -73.8290862160093 40.826955331925504, -73.82908573222576 40.82695629744171, -73.82881710442254 40.826883488235545, -73.82858958007546 40.826992408460974, -73.82832690582798 40.82711407647879)))",X183,6000,X183,X-10,X-10,X-10,X-10,Brinsmade Ave. bet. Cross Bronx Ser. Rd. and Swinton Ave.,210,13,45,10465,X,1.053,False,Bruckner Playground,Yes,100004700,PARK,20100106000000.00000,19580925000000.00000,,DPR/DOE,False,Bruckner Playground,Y,Bruckner Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X183/,No,82,34,14,{C7E625D3-2565-40F1-8B8E-52DBA31DD837} +"MULTIPOLYGON (((-73.90373377830954 40.72565813616076, -73.9037936942108 40.72531981525584, -73.90415872163885 40.725344579317714, -73.90415839338252 40.72534731299164, -73.9037968088903 40.72532278233592, -73.90373737513514 40.72565838320597, -73.90373377830954 40.72565813616076)))",Q360P,5549,Q360P,Q-05,Q-05,Q-05,Q-05,Behind overpass at 61 St. and Borden Ave.,405,30,104,11378,Q,0.005,False,Park Slope,No,100000278,PARK,20090423000000.00000,19680822000000.00000,,DPR,True,Park Slope,N,Park Slope,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/Q360P/,No,30,15,6,{6FEEBE81-9971-4271-8ADA-0C8B5B995571} +"MULTIPOLYGON (((-73.93497779661237 40.79744009784214, -73.93506904086355 40.79731535711597, -73.93513326996849 40.79722754682183, -73.93516781445723 40.79718032153409, -73.935200944563 40.7971350288137, -73.93524724856259 40.79707172538381, -73.93529058261981 40.79701248152174, -73.93533446002401 40.796952495035335, -73.93590756628251 40.79719332512352, -73.93554985197541 40.7976813217138, -73.93497779661237 40.79744009784214)))",M239,4941,M239,M-11,M-11,M-11,M-11,"E. 117 St. To E. 118 St., 1 Ave. To 2 Ave.",111,8,25,10035,M,0.834,False,P.S. 155 Playground,Yes,100004496,PLGD,20100106000000.00000,19631121000000.00000,305 EAST 117 STREET,DPR/DOE,False,P.S. 155 Playground,Y,P.S. 155 Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M239/,No,68,29,13,{C71DB758-F306-4D83-9B84-FFE507F389AF} +"MULTIPOLYGON (((-73.79124791809534 40.71881510231152, -73.79137857106298 40.71873405168043, -73.79150318298042 40.718647667932245, -73.79162137547173 40.71855621245067, -73.79173279498285 40.71845995927209, -73.79173319172018 40.718458743397456, -73.79190437490614 40.71880686775776, -73.79188207416168 40.71881034935131, -73.79188779133987 40.71882266158597, -73.79188835196982 40.71882353969846, -73.79188871832076 40.71882447419206, -73.79188888099469 40.71882544253694, -73.79188883534178 40.718826417709316, -73.7918885826242 40.7188273744972, -73.7918881288385 40.718828287697, -73.79188748707956 40.7188291330186, -73.79188667399023 40.718829887078755, -73.79188571093054 40.71883053190579, -73.79188462281401 40.718831048634016, -73.791883439266 40.71883142561026, -73.79188219109804 40.718831650283136, -73.79188091146075 40.7188317191104, -73.79185129170608 40.71883744235034, -73.79175169330759 40.71885180911606, -73.79165097735583 40.71886057168561, -73.79154968727642 40.71886368241223, -73.79144836995077 40.71886112427475, -73.791347574526 40.71885291267652, -73.79124784296269 40.718839090025114, -73.79124522146658 40.71883793171542, -73.7912429051747 40.71883644437151, -73.79124096259177 40.71883467314323, -73.79123945390674 40.718832673071056, -73.79123842390813 40.71883050367003, -73.79123790552661 40.718828231637744, -73.79123791275309 40.718825924538024, -73.79123844536187 40.71882365441148, -73.79123948893884 40.71882148877035, -73.79124101013579 40.71881949419212, -73.79124296379184 40.71881773002866, -73.79124528937395 40.718816251101536, -73.79124791809534 40.71881510231152)))",Q084B,6254,Q084B,Q-08,Q-08,Q-08,Q-08,"GCP Service Rd. South, 173 St., Homelawn St.",408,24,107,11432,Q,0.2,False,Tepper Triangle,Yes,100000404,PARK,,,,DPR,True,Tepper Triangle,N,Tepper Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q084B/,No,24,11,6,{1CFF5AC2-926B-460C-B61D-B54A567BD02F} +"MULTIPOLYGON (((-73.99321335460841 40.665341704133375, -73.99321373662946 40.66534130522734, -73.99367396169484 40.66561433816426, -73.99372018721445 40.665641761406036, -73.99376715186102 40.66566962322046, -73.99381407752276 40.66569746250059, -73.99402895905062 40.66582494187797, -73.99408184497706 40.66585631588237, -73.99413467773846 40.66588765924212, -73.99418774705985 40.66591914126885, -73.99424235256659 40.66595153647097, -73.99430251258009 40.66598722510881, -73.99436240894818 40.66602275881333, -73.99442434055912 40.666059499276436, -73.99448362567487 40.66609466998004, -73.99454505010173 40.666131108680716, -73.99460607962061 40.66616731409629, -73.99466721918392 40.66620358432165, -73.99474124638117 40.666247500483536, -73.99475018913051 40.66625014930907, -73.99482967698151 40.66627369959694, -73.99482925712054 40.666274104810206, -73.99474377117004 40.66624877843088, -73.9947409223096 40.666247934517344, -73.99321335460841 40.665341704133375)))",B255A,5803,B255A,B-07,B-07,B-07,B-07,Prospect Exwy. bet. 3 Ave. and 4 Ave.,307,38,72,11215,B,0.002,False,Strip,No,100004070,PARK,20100106000000.00000,,,DPR,True,Park,N,Park,Mall,Strip,http://www.nycgovparks.org/parks/B255A/,No,51,20,7,{E634354D-F8CC-454A-B394-B601D9E62BEC} +"MULTIPOLYGON (((-73.94845908753034 40.69105435001282, -73.95050120039521 40.690820968050694, -73.95055520545247 40.69109082646382, -73.95054104776995 40.69109244400553, -73.95039516420118 40.69110911725506, -73.95021953708796 40.69112919040268, -73.95014910944982 40.69113723842085, -73.95020463970602 40.691414730398954, -73.94856779932867 40.69160267523055, -73.94845908753034 40.69105435001282)))",B351,5195,B351,B-03,B-03,B-03,B-03,Marcy Ave. between Kosciuszko St. and Dekalb Ave.,303,36,79,11216,B,2.391,False,Kosciuszko Pool,No,100005203,PARK,20100106000000.00000,19680115000000.00000,658 DE KALB AVENUE,DPR,True,Kosciuszko Pool,N,Kosciuszko Pool,Building,Buildings/Institutions,http://www.nycgovparks.org/parks/B351/,No,56,25,8,{9CE1EE79-40E6-41AC-B838-BE83FE0F84D3} +"MULTIPOLYGON (((-73.89621404497828 40.847698401749376, -73.8965407717653 40.84780409070642, -73.8964566959641 40.84795217512534, -73.89613969354816 40.84784963290601, -73.89621404497828 40.847698401749376)))",X323,4744,X323,X-06,X-06,X-06,X-06,E 178 St. bet. Bathgate and 3 Ave.,206,15,48,10457,X,0.13,False,El Batey de Do�a Provi Garden,No,100004683,PARK,20100106000000.00000,20021120000000.00000,1956 BATHGATE AVENUE,DPR,False,El Batey de Do�a Provi Garden,Y,El Batey de Do�a Provi Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X323/,No,86,33,15,{5AAC777C-D8FF-46E4-8AAB-56F85453D24C} +"MULTIPOLYGON (((-73.96454467846301 40.70742374152064, -73.96458554397736 40.707217060640865, -73.96460554026655 40.707234653777164, -73.96464692739018 40.70727106786442, -73.96468831455952 40.70730748103615, -73.96472970295741 40.70734389419317, -73.96476275855697 40.707373038558934, -73.96476905686204 40.70737875603201, -73.96477277719399 40.70738344973501, -73.96477300531981 40.70738394238451, -73.96454467846301 40.70742374152064)))",B115,6057,B115,B-01,B-01,B-01,B-01,Bedford Ave. at Division Ave.,301,33,90,11211,B,0.07,False,Cohn Triangle,Yes,100004614,PARK,20100106000000.00000,18590101000000.00000,,DPR,False,Cohn Triangle,Y,Cohn Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B115/,No,50,26,7,{5AD41056-EFAE-4B65-9FB6-D44957B06709} +"MULTIPOLYGON (((-73.95605540656489 40.80433096550362, -73.9561088608863 40.80425834174049, -73.95616858847217 40.80428346676632, -73.95618891865574 40.80429201932626, -73.95622831491741 40.80430859266117, -73.956044679832 40.80455806717121, -73.95598495204652 40.8045329420823, -73.95592522430672 40.80450781606179, -73.95600400177491 40.80440080207956, -73.95605540656489 40.80433096550362)))",M341,4998,M341,M-10,M-10,M-10,M-10,W. 116 St. bet. Manhattan Ave. and Fred Douglass Blvd.,110,9,28,10026,M,0.087,False,Garden Of Love,No,100004768,PARK,20100106000000.00000,20021120000000.00000,302 WEST 116 STREET,DPR,False,Garden Of Love,N,Garden Of Love,Greenthumb,Garden,http://www.nycgovparks.org/parks/M341/,No,70,30,13,{4B831C4E-2D08-4047-9758-D2F57637889D} +"MULTIPOLYGON (((-73.86975734046028 40.83555932447294, -73.86967257549992 40.835552465102474, -73.86960505268988 40.835545843084454, -73.86952918308769 40.83553558349096, -73.86949428981096 40.8355308650413, -73.86936600605836 40.83550668199967, -73.8694707985934 40.83550445935945, -73.86977148276992 40.83549808247518, -73.86984780954472 40.83549646309641, -73.86984478652175 40.835565385366266, -73.8697788365529 40.8355608147514, -73.86975734046028 40.83555932447294)))",X148K1,6311,X148K1,X-09,X-09,X-09,X-09,S/B Cross Bronx Exwy SR bet. Rosedale and Commonwealth Av,209,18,43,10472,X,0.059,False,Park,Yes,100005036,PARK,20100106000000.00000,20090131000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148K1/,No,87,33,15,{87786C86-EF13-47B2-8235-2CC8920AF954} +"MULTIPOLYGON (((-73.8391326129929 40.582673255428084, -73.8394657500142 40.58178975853815, -73.84497154010069 40.581538514995806, -73.84592715515113 40.581704206668626, -73.84627277612142 40.582248811089194, -73.8391326129929 40.582673255428084)))",Q028,5860,Q028,Q-14,Q-14,Q-14,Q-14,Beach Channel Dr. bet. B. 117 St. and B. 124 St.,414,32,100,11694,Q,12.624,False,Beach Channel Park,Yes,100000402,PARK,20090423000000.00000,19300701000000.00000,,DPR,True,Beach Channel Park,Y,Beach Channel Park,Sitting Area/Triangle/Mall,Waterfront Facility,http://www.nycgovparks.org/parks/Q028/,Yes,23,15,5,{2E63ED50-5809-43AF-987C-0B17081603C3} +"MULTIPOLYGON (((-73.95445132734469 40.68845462818794, -73.95478110583579 40.688416727757826, -73.95480326920519 40.68852719795546, -73.95482565430143 40.68863878036854, -73.95449587591986 40.68867668182622, -73.95447349018038 40.68856509844858, -73.95445132734469 40.68845462818794)))",B451,5252,B451,B-03,B-03,B-03,B-03,Clifton Pl. and Bedford Ave.,303,36,79,11216,B,0.165,False,Clifton Pl Memorial Park and Garden,No,100004178,PARK,20100106000000.00000,20121120000000.00000,1031 BEDFORD AVENUE,DPR,False,Clifton Pl Memorial Park and Garden,N,Clifton Pl Memorial Park and Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B451/,No,57,25,8,{FAD53134-7A12-416F-B7F8-31E9D8EB36EA} +"MULTIPOLYGON (((-73.90087367611189 40.8804971600472, -73.90134618154387 40.87983572287674, -73.90137291642783 40.879829228898835, -73.90141287733852 40.87984444075722, -73.90202006528953 40.88010089977101, -73.90138865864101 40.88078856667168, -73.90112763821844 40.88063857250516, -73.90087367611189 40.8804971600472)))",X150I,4801,X150I,X-08,X-08,X-08,X-08,Bailey Ave. bet. W. 233 St. and W. 234 S,208,14,50,10463,X,1.274,False,Cooney Grauer Field,Yes,100004348,PARK,20100106000000.00000,19501212000000.00000,141 WEST 233 STREET,DPR,True,Cooney Grauer Field,Y,Cooney Grauer Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X150I/,No,81,33,13,{46D26D58-2C03-4FEE-B80C-7E02FF0713E8} +"MULTIPOLYGON (((-74.17974375571256 40.54934154450354, -74.17992925548796 40.54895388365041, -74.18031350956502 40.54914017298492, -74.17965337761098 40.54991462722518, -74.17950657808598 40.54983719703355, -74.17974375571256 40.54934154450354)))",R100,6083,R100,R-03,R-03,R-03,R-03,"Drumgoole Rd. W., Grantwood Ave., Carlton Ave., Rathbun Ave.",503,51,123,10312,R,0.636,False,Park,Yes,100004292,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Drumgoole Tot Lot,N,Drumgoole Tot Lot,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/R100/,No,62,24,11,{A4DBE7B8-AF09-4885-8970-27707EAB1731} +"MULTIPOLYGON (((-73.88506332614014 40.84731526863522, -73.88537340545612 40.846948927983796, -73.88566867655457 40.847093694296426, -73.88571627193414 40.84703804777486, -73.88542096652188 40.84689332117013, -73.88560960589624 40.84667277055171, -73.8859049095555 40.846817495777366, -73.88598052921361 40.84685455649339, -73.8860534155416 40.846890276327095, -73.88653533148641 40.84712645447302, -73.88629953020633 40.84740280597517, -73.88598815663147 40.847767723225516, -73.88506332614014 40.84731526863522)))",X289,6337,X289,X-06,X-06,X-06,X-06,"Mapes Ave., Prospect Ave. bet. E. 180 St. and E. 181 St.",206,15,48,10460,X,1.806,False,Mapes Ballfield,Yes,100005181,PARK,20100106000000.00000,19971124000000.00000,786 EAST 181 STREET,DPR,False,Mapes Ballfield,Y,Mapes Ballfield,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X289/,No,79,33,15,{EBA32C98-C722-43EC-9C3D-1304C0B4D6EA} +"MULTIPOLYGON (((-73.90671445236775 40.700150981221746, -73.90663204770514 40.70023158412151, -73.9065327827331 40.7001723506843, -73.90671445236775 40.700150981221746)))",Q124,5886,Q124,Q-05,Q-05,Q-05,Q-05,"Myrtle Ave., Cypress Ave., Putnam Ave.",405,34,104,11385,Q,0.013,False,Myrtle Avenue Clemens Triangle / Ridgewood Veterans Triangle (OLD),Yes,100000162,PARK,20090423000000.00000,19360605000000.00000,,DPR,False,Myrtle Avenue Clemens Triangle,Y,Myrtle Avenue Clemens Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q124/,No,38,12,7,{F9EAAD4B-FAEB-41B7-8AD5-71B38398F47F} +"MULTIPOLYGON (((-73.87763050790115 40.74295556376008, -73.8776253038173 40.74295325112981, -73.87762492881012 40.742953724398426, -73.8775657643292 40.74292718749114, -73.87750353829979 40.74289926681866, -73.87747403418552 40.74288603038866, -73.8769759981003 40.74266471387762, -73.87769084191316 40.74245212062977, -73.87797928670261 40.7423663362422, -73.87808619112832 40.74242252317609, -73.87807414475806 40.74243581542675, -73.87807592972146 40.74243671692366, -73.87797588848281 40.742544231561354, -73.87783254011576 40.74270240237141, -73.87777420041316 40.74277235045023, -73.87773839840777 40.742817999711484, -73.87763050790115 40.74295556376008)))",Q013,5435,Q013,Q-04,Q-04,Q-04,Q-04,"Whitney Ave., 43 Ave., bet. Judge St. and Ketcham St.",404,25,110,11373,Q,0.626,False,Veterans Grove,Yes,100000013,PARK,20090423000000.00000,19281126000000.00000,87-02 WHITNEY AVENUE,DPR,Unkwn,Veterans Grove,Y,Veterans Grove,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q013/,No,39,16,6,{3CA4C8FE-E2E4-4CB8-B506-F97124058F98} +"MULTIPOLYGON (((-73.99602077341382 40.69908659629795, -73.99607838110913 40.69896548208599, -73.99644753248168 40.699066019149406, -73.99652754887 40.69908668474409, -73.99646995486137 40.69920855200755, -73.99638652016392 40.699186207711165, -73.99602077341382 40.69908659629795)))",B223DI,4827,B223DI,B-02,B-02,M-02,M-02,Pineapple St. bet. Columbia Heights and the BQE,302,33,84,11201,B,0.138,False,Brooklyn Heights Promenade,No,100008303,PARK,20100106000000.00000,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DI/,No,52,26,7,{EBB40D80-5838-49BB-8C22-A2EFB8F29E5C} +"MULTIPOLYGON (((-73.95373125485807 40.70787178133353, -73.95358702775924 40.70810062873625, -73.95350579780747 40.70807083495869, -73.95364906198857 40.70784351723771, -73.95373125485807 40.70787178133353)))",B583,23495,B583,B-01,,,B-01,Hooper St. bet. S 5 St. and S 4 St.,301,34,,11211,B,0.053,False,,,100024482,PARK,,20160517000000.00000,375 SOUTH 5 STREET,DPR,False,Garden,,Hooper Grove,,Garden,,No,53,18,7,{E2A947D1-7FF5-4778-A95F-A969D0B45DF9} +"MULTIPOLYGON (((-73.91191441617991 40.82046831469054, -73.91197080455586 40.82036911761962, -73.91226635429729 40.8204726703595, -73.91223819526039 40.82051374129358, -73.91220054818997 40.82056856908726, -73.91219760153172 40.820572947759565, -73.91223067629099 40.820584915326116, -73.91217375572123 40.82067795451933, -73.91184237045876 40.820595054959426, -73.91191441617991 40.82046831469054)))",X363,11886,X363,X-01,X-01,X-01,X-01,E 157 St. bet. 3 Ave. and Brook Ave.,201,17,40,10451,X,0.179,False,,,100024463,PARK,20160222000000.00000,20160119000000.00000,755 BROOK AVENUE,DPR,False,Centro Cultural Garden,,Centro Cultural Rincon Criollo,,Garden,,No,79,32,15,{6ADE5A60-07F8-4480-A589-5222A91905D5} +"MULTIPOLYGON (((-73.91668649863304 40.8437972953284, -73.91690146645834 40.84349934216267, -73.91734444053863 40.84369006699702, -73.91732989458761 40.843727337885966, -73.91731090248102 40.843791859007766, -73.9172978369666 40.84385723714203, -73.9172908029133 40.843923067144075, -73.9172894960822 40.84395271584032, -73.91729005203979 40.843991956122714, -73.91729144415068 40.844057757045626, -73.91668649863304 40.8437972953284)))",X114,5689,X114,X-04,X-04,X-04,X-04,Goble Pl bet. Inwood Av and Macombs Rd,204,14,44,10452,X,0.381,False,Goble Playground,Yes,100004900,PARK,20100106000000.00000,19361020000000.00000,,DPR,False,Goble Playground,Y,Goble Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X114/,No,77,29,15,{C8CE0CCC-9E42-4D90-A57B-0549C199613C} +"MULTIPOLYGON (((-73.8898024828555 40.74339096747221, -73.8898121658277 40.74338361778896, -73.8898250596154 40.74338853518846, -73.89018020878066 40.74521583010867, -73.89017572789126 40.74522263096969, -73.8901674835767 40.74522477171855, -73.89015900895845 40.7452236875306, -73.89015289466012 40.74521866947577, -73.88988231023032 40.74380470274991, -73.8898024828555 40.74339096747221)), ((-73.89060812021984 40.74741996290895, -73.890887892478 40.74889463904154, -73.89088733932303 40.74889547598883, -73.8908844109111 40.7488999154148, -73.89088340667708 40.74890143992198, -73.89088145210297 40.74890194775719, -73.89087516311406 40.74890358072151, -73.89086668802219 40.74890249298417, -73.89086057806341 40.74889747857607, -73.89063837200376 40.74773646671053, -73.89058996130338 40.74748351425111, -73.89058066329274 40.7474241430967, -73.89058079408616 40.747422368321644, -73.89058130489718 40.74742063352995, -73.89058218262268 40.74741898643594, -73.89058340350908 40.74741747114194, -73.89058493552015 40.747416128140316, -73.89058673596922 40.7474149943113, -73.89058875507409 40.747414101125344, -73.89059094069924 40.747413471045576, -73.89059323242822 40.74741312202473, -73.89059556867363 40.74741306390988, -73.89059788549503 40.74741329754082, -73.8906001213317 40.74741381655549, -73.89060221345083 40.747414607386766, -73.89060410742123 40.7474156483707, -73.89060575237427 40.74741691154336, -73.89060710218786 40.7474183626416, -73.89060812021984 40.74741996290895)), ((-73.8902217099091 40.74544144674475, -73.89034303119989 40.74607651715976, -73.8903426202876 40.74607798729676, -73.89034188980617 40.74607938418843, -73.89034085876821 40.74608066642951, -73.89033955920047 40.74608179893075, -73.89033802667882 40.7460827484072, -73.89033630624256 40.74608348698605, -73.89033444528563 40.7460839949012, -73.89033249948292 40.74608425689712, -73.89033052331325 40.746084264921045, -73.89032857242641 40.746084019025986, -73.89032670601068 40.74608352737289, -73.89032497377484 40.74608280261616, -73.89032342778084 40.74608186641755, -73.8903221117934 40.74608074583398, -73.89032106246724 40.74607947151764, -73.89019913842667 40.74544385569805, -73.89019984416731 40.745442381339956, -73.89020086112488 40.745441017140415, -73.890202160822 40.745439799993086, -73.8902037088685 40.74543876228349, -73.89020546021968 40.74543793548632, -73.8902073686644 40.745437340269255, -73.89020938089351 40.7454369936911, -73.89021143887359 40.74543690560209, -73.89021348931917 40.74543707865299, -73.8902154730381 40.7454375073843, -73.89021733676856 40.74543818003866, -73.89021902725926 40.74543907855521, -73.8902204983749 40.74544017767574, -73.8902217099091 40.74544144674475)))",Q040,6140,Q040,Q-03,Q-03,Q-03,Q-03,75 St. bet. 37 Ave. and Woodside Ave.,"403, 404",25,115,"11372, 11373",Q,0.241,False,Elmjack Mall,Yes,100000019,PARK,20090423000000.00000,19231224000000.00000,,DPR,False,Elmjack Mall,N,Elmjack Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q040/,No,"34, 39","13, 16","6, 14",{A20EACB9-EA00-4011-8D05-73B618BA975D} +"MULTIPOLYGON (((-73.94418229453073 40.70890968807874, -73.9441670300273 40.70880813992976, -73.94503366337192 40.708727169704545, -73.94513530992516 40.70934153433458, -73.94434307812892 40.70941614768983, -73.94432657634744 40.70927243163407, -73.94408023123711 40.70928861238121, -73.94401092450451 40.708921830195045, -73.94418229453073 40.70890968807874)))",B127,5081,B127,B-01,B-01,B-01,B-01,Scholes St. bet. Manhattan Ave. and Graham Ave.,301,34,90,11206,B,1.373,False,Martinez Playground,Yes,100004392,PARK,20100106000000.00000,19571010000000.00000,195 GRAHAM AVENUE,DPR/NYCHA,False,Martinez Playground,Y,Martinez Playground,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B127/,No,53,18,7,{A82304E3-DAE8-4E8D-AEF8-D58EF212BEAB} +"MULTIPOLYGON (((-73.98567580944254 40.72185681012265, -73.98583953678282 40.721537101766934, -73.98618730936629 40.72164381477224, -73.98615451507038 40.72170774160673, -73.98638873290217 40.721779609482155, -73.98625755347963 40.72203531608475, -73.98567580944254 40.72185681012265)))",M116,4630,M116,M-03,M-03,M-03,M-03,"Essex St., Norfolk St. and Houston St.",103,1,7,10002,M,0.451,False,ABC Playground,Yes,100004794,PLGD,20100106000000.00000,19340228000000.00000,164 ESSEX STREET,DPR,False,ABC Playground,Y,ABC Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M116/,No,65,26,12,{63C012F6-81A1-422E-9AEA-308547B4DA4A} +"MULTIPOLYGON (((-73.80920527829227 40.591768094356425, -73.80904774617777 40.59165063564032, -73.8090399710423 40.59165594302214, -73.80903110519722 40.59166014004427, -73.80902141834368 40.59166309928016, -73.80901120369803 40.591664732065034, -73.80900077208551 40.591664988485995, -73.80899044130338 40.591663859165344, -73.8089805242921 40.59166138064449, -73.80897132325498 40.59165762636835, -73.80896311665067 40.59165271116677, -73.80867154991455 40.5914443290269, -73.80866016275645 40.59143795776168, -73.80864760908995 40.59143302269145, -73.80863419688276 40.59142964589965, -73.80862025666045 40.59142790988424, -73.80860613087495 40.59142785754013, -73.80859216918451 40.59142949035019, -73.80857871545969 40.59143276836377, -73.80856609833324 40.59143761018064, -73.80855463118715 40.591443897453956, -73.80854459561752 40.59145147396177, -73.80844178188524 40.591542346607035, -73.80843843030709 40.59154448787177, -73.80843467124936 40.591546193503405, -73.80843060406983 40.59154741864132, -73.80842633163397 40.59154813103811, -73.80842196385119 40.59154831376694, -73.8084176153224 40.591547961615774, -73.80841339588468 40.59154708287246, -73.80840941533106 40.59154570113372, -73.80840577633339 40.59154385169123, -73.80840257325802 40.591541582430274, -73.80829955232265 40.59145885496355, -73.80819276346399 40.59137895326564, -73.80808234106661 40.5913019757078, -73.80793107920832 40.59120490120605, -73.80777404084485 40.59111331274574, -73.80761156795734 40.59102741079255, -73.80761641302009 40.59102761341787, -73.80775231104423 40.591033288140714, -73.80789326448462 40.5910329853636, -73.8080339616352 40.59102650078035, -73.80810396406976 40.591020179850865, -73.80810420158267 40.591020154132295, -73.8082540373083 40.59100208937803, -73.80840263334458 40.59097882452996, -73.8084043187238 40.590978523863164, -73.80844986919892 40.59097028255352, -73.80861755723969 40.59093541446657, -73.80878261924012 40.590893898590636, -73.8089446023932 40.59084585035194, -73.8089537468572 40.59084291363435, -73.80905789161947 40.59080770240203, -73.80916506581055 40.59076479661601, -73.80924695071792 40.590725693993875, -73.80933328828574 40.59069262141443, -73.80942331577451 40.59066586937287, -73.80951623752576 40.5906456751807, -73.80961123561273 40.59063221577972, -73.8093467066023 40.591117088219264, -73.80926800778482 40.591134898779856, -73.80923841821242 40.591392318811906, -73.8092144043675 40.59165007497866, -73.80920527829227 40.591768094356425)), ((-73.79647251076948 40.59110951024489, -73.79646482830664 40.591055037359, -73.7961266780955 40.5910976496151, -73.79612418918961 40.59108330973394, -73.79781648268718 40.590872702395416, -73.7978185863569 40.59088525401867, -73.7978448506523 40.59110469524418, -73.7969930559514 40.59120780398376, -73.7968958600593 40.59121956869275, -73.7961473519933 40.591309660985196, -73.79613043243319 40.59114479068041, -73.79647251076948 40.59110951024489)), ((-73.80740271463344 40.59081821651295, -73.80738369136046 40.5908177577774, -73.80723817539142 40.59081794781405, -73.80709282526846 40.590812660049735, -73.80694799537724 40.59080190678721, -73.8068040376986 40.59078571473542, -73.80666130535461 40.59076412411479, -73.80665831259378 40.590725968326204, -73.80680892008877 40.59074728402324, -73.80696073865987 40.59076282198611, -73.8071133880086 40.59077254284914, -73.8072664854287 40.59077642255352, -73.80741964463066 40.59077445054436, -73.8075724816378 40.590766633382636, -73.80772461362166 40.59075298934016, -73.80775091514818 40.590750033698086, -73.8077769985895 40.59074692009326, -73.80782909029374 40.59074013261345, -73.8078273784248 40.59071926368004, -73.80798339930801 40.59070470186003, -73.80813851143701 40.59068530339093, -73.80829245716248 40.59066110206654, -73.80844498118297 40.59063213708902, -73.80859583053297 40.5905984575716, -73.80873362775377 40.59057220437564, -73.80886929862265 40.59054015169727, -73.80900242110924 40.59050239790028, -73.80913258375836 40.59045906207996, -73.80925938571379 40.59041027595813, -73.80938243315408 40.59035619108137, -73.809501346391 40.59029697523038, -73.80961575633086 40.590232810613095, -73.80972531155263 40.59016389747804, -73.80982967005914 40.59009044689654, -73.80994858551978 40.59002516284719, -73.8099821313506 40.59038837314013, -73.80974153000805 40.59043105794112, -73.80950271652024 40.59047922850077, -73.80926590831263 40.59053284106541, -73.80903131573571 40.5905918482692, -73.80879915270678 40.59065619554961, -73.8087991042229 40.59065621347945, -73.8086616384917 40.590693291619196, -73.80852170272199 40.59072453998098, -73.80837972012353 40.590749862004735, -73.80823612212085 40.59076918095766, -73.80807083552797 40.590789775572254, -73.80790455192124 40.590804999351036, -73.80773756792166 40.590814824869646, -73.8075701883965 40.59081923282394, -73.80740271463344 40.59081821651295)), ((-73.8030763214131 40.590313545921546, -73.80336090904059 40.59029734565125, -73.8036095854501 40.59030373962297, -73.80385798739387 40.59031471265997, -73.8038280105824 40.59011672420706, -73.80391475059584 40.59010615060458, -73.80399970103505 40.590089109912896, -73.80408203449652 40.590065769123505, -73.80416094821493 40.59003635380625, -73.80423567468763 40.590001150828655, -73.80430548404848 40.58996050475762, -73.80431117014051 40.58995907720281, -73.80431708796135 40.58995838757267, -73.80432307443874 40.589958455400996, -73.80432896184134 40.58995927770061, -73.8043345907593 40.58996083348791, -73.8043398030353 40.589963077467466, -73.80434445591072 40.589965949961446, -73.80434841968398 40.589969369701876, -73.80435158595307 40.589973242849624, -73.8043538664345 40.58997746299242, -73.8043551976854 40.58998191205343, -73.80435554344265 40.58998646840008, -73.80435489462782 40.58999100504283, -73.80433144959362 40.590076997714746, -73.80430626967663 40.590163636705526, -73.80443119428031 40.590187367513586, -73.80462257376763 40.59022932166479, -73.80481137997357 40.59027757840508, -73.80498501208042 40.59032451682875, -73.80499533452836 40.59030130349481, -73.80528517963467 40.59037620362428, -73.80527723289336 40.59042086431906, -73.80516805576157 40.590399359316805, -73.80505750931675 40.59038240224211, -73.80494591942107 40.590370044073694, -73.80483361316146 40.5903623204846, -73.80472092238618 40.59035925454981, -73.80465216138136 40.59035967528648, -73.80386693330304 40.59037379969259, -73.80386082181302 40.59033343221647, -73.80370977201352 40.590318147216855, -73.80355792008119 40.59030852315081, -73.8034056332838 40.59030458405729, -73.80330946215847 40.59030855829204, -73.8031669491384 40.5903162803057, -73.8031019089124 40.59031999880901, -73.80307528827028 40.590321396732364, -73.80305386959222 40.59032252170122, -73.80303174794597 40.59032368328315, -73.80296906573426 40.59032813427833, -73.80287985358606 40.59033686405373, -73.80284939133362 40.59033949175587, -73.80276382438707 40.590349084995616, -73.80273978689245 40.590351779529136, -73.80264052236242 40.59036398860155, -73.80253050595326 40.59037654832689, -73.80246676532089 40.59038416437709, -73.80232965083276 40.59040054598053, -73.80227771034646 40.59040642890177, -73.802189143851 40.59041645961086, -73.80217586537462 40.59041796314189, -73.80201042042565 40.59043703858762, -73.80175154568444 40.590469241692645, -73.80144979685733 40.59050438419822, -73.80139840198306 40.590511054724196, -73.80139706600636 40.59050746292084, -73.8021885091634 40.590412188226786, -73.80246503622473 40.59037887351951, -73.80271343955566 40.590348226749256, -73.80275808686172 40.590342707532, -73.80283734367265 40.59033382929296, -73.80296816172242 40.59032144182454, -73.80304610890316 40.59031561217597, -73.80306475584352 40.590314643652235, -73.8030763214131 40.590313545921546)), ((-73.76570593521704 40.59611591561906, -73.76569814555545 40.59608349251384, -73.76578721716041 40.596105633408676, -73.76592625828474 40.596143438014906, -73.76608442829576 40.596193776187, -73.76630662302523 40.59627296032519, -73.76650218221435 40.59635197104547, -73.7650235236686 40.59724732970852, -73.76498528169444 40.597270168087356, -73.76498540725711 40.597270408784496, -73.76481364768168 40.59737351069782, -73.76471300783187 40.59743277270875, -73.76303192979458 40.59841841280176, -73.76294642582583 40.598470602029245, -73.76286271865433 40.598524458171774, -73.76273341569643 40.59861349371657, -73.76260906250359 40.59870653497306, -73.7624898722966 40.59880342300486, -73.7623760488746 40.59890399165208, -73.76226778897804 40.59900806753607, -73.76216527755325 40.599115472751116, -73.76180157319764 40.59953011845611, -73.7617838916387 40.59952319728786, -73.76214640453374 40.5991090651736, -73.76225642443718 40.59898925365754, -73.76237334629238 40.59887330245233, -73.7623705317527 40.59887042035354, -73.76252475190817 40.598747528314945, -73.76268449283394 40.59862880519699, -73.76284956144815 40.59851439466239, -73.7630197576013 40.59840443585708, -73.76473929528188 40.59739487206845, -73.76481460123397 40.59735065730577, -73.76493168627482 40.59728191299039, -73.76492287056904 40.59723764492277, -73.76640906525041 40.59634326283108, -73.76606970433343 40.59621715898577, -73.76597243389871 40.596183837795465, -73.76589483560377 40.596160713630496, -73.76581491486148 40.59613891025419, -73.76570593521704 40.59611591561906)), ((-73.8279795624073 40.58300476769705, -73.82853241485614 40.582846358687775, -73.82854208389327 40.58286376496583, -73.82861068255393 40.5828480414817, -73.82861504326806 40.58285589246395, -73.82883839802251 40.582793944179286, -73.82883505849395 40.582787202373176, -73.82885800817047 40.58278071855728, -73.82886816751859 40.582782428478794, -73.82891648550655 40.582768667465615, -73.82891325311117 40.58276159893056, -73.82896851456229 40.58274432177697, -73.82897156860975 40.582750006837884, -73.82902124377776 40.582735748009256, -73.82901962591389 40.58273055587338, -73.82906042006958 40.58271721495444, -73.82907040631828 40.58272056265642, -73.82930333891414 40.58263840911933, -73.8294074663361 40.582601682753165, -73.82940439411823 40.5825943136942, -73.8294754285148 40.58256813550836, -73.82947888246173 40.58257542048261, -73.82963272999257 40.58251912993566, -73.82983303570595 40.582445839441064, -73.82982603179565 40.582432770547435, -73.82985583528975 40.582423079106114, -73.8299167384848 40.58249485651196, -73.82991612857771 40.58249502941048, -73.8299833743158 40.582575276606136, -73.82967264861765 40.58266420073747, -73.82955679970333 40.58269487103187, -73.82943909460649 40.582721113271845, -73.82931982408068 40.582742860344304, -73.82919928238522 40.58276006045129, -73.8290523265477 40.58278102855557, -73.82890692024546 40.58280754151373, -73.82876342268571 40.58283953142705, -73.8286221871954 40.58287692138457, -73.82800487269903 40.58305357444617, -73.82799909134735 40.58304242629144, -73.82798807399536 40.583021180810164, -73.8279795624073 40.58300476769705)), ((-73.76835684836549 40.59540517995575, -73.77029607225896 40.594258253758056, -73.77030904927585 40.59433039831149, -73.76850772611665 40.595395811443936, -73.76849121899238 40.59534023645865, -73.76773615550889 40.59578828143173, -73.76773381175694 40.595773650354424, -73.76781878079103 40.59572339981986, -73.76823188313962 40.59547908628801, -73.76835684836549 40.59540517995575)), ((-73.76850765949574 40.59508278672905, -73.77027107038143 40.59404840646305, -73.77028001935557 40.59410497917979, -73.7685742692811 40.59508963791534, -73.76798524572486 40.595429644111746, -73.76770484843303 40.59559287068772, -73.76769889136636 40.59555568854167, -73.76782855118772 40.595474905951995, -73.76782891104054 40.595474360059846, -73.76784430934141 40.59546508783659, -73.76802278223695 40.595353892014764, -73.76826375983642 40.59520375266525, -73.76829706044552 40.59518425408902, -73.76833284417752 40.595167503510815, -73.76838952616397 40.59514463364592, -73.76844393497463 40.595118754117834, -73.7684957960813 40.5950899940525, -73.7684949274144 40.59508907736823, -73.76850765949574 40.59508278672905)), ((-73.76668996670976 40.59642604067168, -73.76670030869872 40.59641991467904, -73.76675124509416 40.5964696928794, -73.7651173962177 40.59743751003195, -73.76507557873025 40.59738225564532, -73.76668996670976 40.59642604067168)), ((-73.77546609737848 40.5930843931383, -73.77779091600695 40.592849899206094, -73.7778008448842 40.592907096390135, -73.77603812353036 40.59308907281957, -73.77603740150772 40.593084915485676, -73.77603594821146 40.59307654136518, -73.77602984528838 40.59304137834543, -73.77546845917367 40.59309799839479, -73.77546609737848 40.5930843931383)), ((-73.77797133295188 40.592860338337104, -73.7801503534395 40.592626098436284, -73.78015949138943 40.59268337134593, -73.77797897572303 40.59290451038596, -73.77797133295188 40.592860338337104)), ((-73.76313313540855 40.59854652581115, -73.76491896103838 40.59746892345566, -73.76492828295383 40.597480823160446, -73.76302182179833 40.59865102205999, -73.76293179390069 40.598707520868345, -73.76284339805746 40.598765498035256, -73.76270445996896 40.5988632010337, -73.76257175613564 40.59896581650442, -73.76246343041754 40.599057235547434, -73.76235996401874 40.599151867706325, -73.76226152051098 40.599249564745726, -73.76201363007168 40.59951948942737, -73.76196704094636 40.599493696440064, -73.76219349988804 40.59925604737797, -73.76230853938641 40.59914101538417, -73.7624304336479 40.59903016147604, -73.76255892426592 40.59892372283673, -73.76269373396936 40.59882192760536, -73.76283457608031 40.59872499309529, -73.76298114741903 40.598633127581216, -73.76313313540855 40.59854652581115)), ((-73.77544520523946 40.5929640159463, -73.7754355536176 40.59291560102501, -73.77566717453944 40.59289131959281, -73.77567592868944 40.59293194769653, -73.77599606950656 40.592898203645866, -73.77599011122278 40.59285796734271, -73.77602450091157 40.59285438004367, -73.77604598836497 40.59285215169772, -73.77743944627314 40.592708262410966, -73.77744186281544 40.592721862329526, -73.7772384829037 40.59274286473859, -73.77724331590991 40.59277006458403, -73.77748237696215 40.59274537787455, -73.77747512731085 40.59270457812129, -73.77776057193603 40.59267510069676, -73.77777001975029 40.592729522434105, -73.77544520523946 40.5929640159463)), ((-73.77793666720352 40.592659233469924, -73.77800644286361 40.59265215777916, -73.77800738163728 40.592657600569694, -73.77986485462415 40.59246922418791, -73.77993002948396 40.59246261399346, -73.77999418451546 40.59245610717106, -73.78003040864625 40.592452433034, -73.78012978450712 40.59244235362761, -73.78013599950414 40.59248394189331, -73.7800349302523 40.59249453316434, -73.77977967895984 40.59252130858902, -73.77794605489115 40.59271366138015, -73.77793666720352 40.592659233469924)), ((-73.792003422607 40.59184067787853, -73.7920897337178 40.59181970054444, -73.7920959403409 40.59183258298545, -73.79227268575816 40.59178778270255, -73.79226644452618 40.591773484582376, -73.79232452770115 40.591758762418195, -73.79233077012549 40.59177306053732, -73.79236519560371 40.591764334519, -73.79280748280377 40.591652226769895, -73.79280371251475 40.59164485727499, -73.79287579377568 40.59162673537338, -73.79287851471442 40.591634221843876, -73.79294028855394 40.59161856317079, -73.79293369160928 40.59160579353826, -73.79299406681827 40.591590494327164, -73.79299872020334 40.59160375214199, -73.79321041693561 40.591550091869046, -73.793208786249 40.591534611602384, -73.79324031858297 40.59152661854643, -73.79324738633397 40.59154072088574, -73.79344426821552 40.59149081483202, -73.7937110664287 40.59142318556372, -73.79388636855083 40.59137874852475, -73.79387915307927 40.591365009772105, -73.79393440618851 40.59135071937367, -73.79394175320172 40.591364708704866, -73.79400862072255 40.59134775913369, -73.79405672876447 40.591335563997895, -73.79409261787384 40.59132668879735, -73.79414606139943 40.59131347118257, -73.79418425592095 40.591304358742654, -73.79426892244018 40.591284157583026, -73.79434871236117 40.5912659287897, -73.79445787215688 40.59124174507444, -73.79456826306559 40.5912178525252, -73.79471019810563 40.59118891025002, -73.79480114765055 40.59117138637943, -73.79487738649699 40.59115694839393, -73.79494708020164 40.59114429522671, -73.79499659208962 40.591135305372106, -73.79533358411648 40.59108121537867, -73.79533328037752 40.59108049261622, -73.79540215392552 40.59107020969652, -73.79545829568475 40.591062184203665, -73.79556982297066 40.59104695937326, -73.79558869949544 40.591044029325104, -73.79559304619642 40.59104378851238, -73.7955906174635 40.59101831913177, -73.7957118079146 40.591003373405954, -73.79594681463531 40.59097439151499, -73.79594956076706 40.59100157154951, -73.79594359396694 40.59101668437885, -73.79564087733496 40.59105088417914, -73.79533959751078 40.59109180276121, -73.79504001203381 40.59113940547535, -73.79474237610556 40.591193650465954, -73.79444694375994 40.591254492275915, -73.79415396432545 40.59132188003894, -73.79386368834001 40.59139575478854, -73.79352198780055 40.59147716926711, -73.79318244191522 40.591563664671874, -73.79284517947926 40.5916552079347, -73.79251033165853 40.591751764192, -73.7921109607653 40.59184695373121, -73.79171236256792 40.59194401007357, -73.79171203272993 40.59194409142356, -73.79145320452255 40.592008218469864, -73.79145279622551 40.59199559686367, -73.79200930957045 40.591854541318405, -73.792003422607 40.59184067787853)), ((-73.76126597609378 40.600260466226295, -73.76137218460768 40.600204774973825, -73.76117003264855 40.60041007561605, -73.76096040475002 40.600610973891584, -73.76074346685442 40.60080731251332, -73.76051938962725 40.60099893690541, -73.76028834963863 40.60118569520584, -73.76005052816896 40.60136744186636, -73.76001687011912 40.6013494295172, -73.76024191018028 40.60117960983811, -73.76046044367698 40.60100492322415, -73.7606722893271 40.600825515219924, -73.76087727175252 40.60064153408384, -73.7610752226545 40.60045313259192, -73.76126597609378 40.600260466226295)), ((-73.78961625278835 40.592281496085356, -73.78961066971193 40.59224668955643, -73.78967474604545 40.59224454473614, -73.78987599855304 40.59223338889677, -73.79007650708206 40.5922161203796, -73.79008584950266 40.59221517208303, -73.79009350413953 40.59225320895571, -73.79028599696545 40.59223083746116, -73.79047723253174 40.59220288729786, -73.79066692950938 40.592169400284305, -73.79085481363911 40.59213042455737, -73.79104061300097 40.59208601636454, -73.79120048169871 40.59204523940325, -73.79120290956578 40.59205761703556, -73.79099971962071 40.59211018504166, -73.79079414324941 40.59215705252017, -73.79058645593804 40.59219815782398, -73.79037693433686 40.592233445613765, -73.79016586098227 40.59226286776699, -73.78995351719728 40.59228638696726, -73.78974018665791 40.59230396950654, -73.78952615536997 40.59231559248944, -73.78931171049585 40.592321241129554, -73.78909713681611 40.59232090694189, -73.78909607661467 40.592309490834666, -73.78961625278835 40.592281496085356)), ((-73.81070593193157 40.58961492246595, -73.81089972741691 40.58947235341236, -73.81090142330537 40.58948709600111, -73.81055778530477 40.58975095120269, -73.81050065218737 40.58979341131599, -73.81044970357512 40.58984022303533, -73.81040550560033 40.589890864097846, -73.8103685512722 40.589944773397065, -73.8103392498478 40.590001350064576, -73.81027580507667 40.590248291819634, -73.81016175893836 40.59020547529644, -73.81015227811433 40.59006334234083, -73.81033210013128 40.589910502280794, -73.81051668653167 40.589760999937646, -73.81070593193157 40.58961492246595)), ((-73.79900086163347 40.590631333995056, -73.79899962386308 40.590618704661935, -73.79902818193497 40.590615370438684, -73.79902941971346 40.590627998870964, -73.79956745067916 40.59056517511246, -73.79956660279448 40.59055563796949, -73.79961846383051 40.59054958233326, -73.79961931172257 40.59055911947581, -73.79977950222332 40.590540413834916, -73.79977868148879 40.59053087313876, -73.7998912567219 40.59051772795743, -73.79989274513237 40.59052718966874, -73.800340722483 40.5904748775575, -73.8003396835714 40.590462819517704, -73.80041727579282 40.59045375904921, -73.80041831353704 40.59046581708627, -73.80088354982384 40.59041148684186, -73.80088715425778 40.59043038431024, -73.7980730984687 40.59075504071258, -73.79807217127346 40.59073976797231, -73.79900086163347 40.590631333995056)), ((-73.80432850093253 40.58984647080106, -73.80442473629502 40.58980942402852, -73.80441293084469 40.589836803320296, -73.8042659239825 40.589897004367934, -73.80411532274582 40.58995180135097, -73.80396147009652 40.59000106966739, -73.80380471486974 40.59004469733416, -73.80364541295458 40.590082584989155, -73.80348392374194 40.590114648587075, -73.80332061604913 40.590140813105826, -73.80203450584975 40.59028072456013, -73.80195456822577 40.59028972174253, -73.80137404965765 40.59035505783883, -73.80137142797429 40.59033812523008, -73.80324583236298 40.59013507840693, -73.80339921132007 40.59011538619312, -73.80355093751169 40.59008929451714, -73.80370055233458 40.59005688094789, -73.8038476030287 40.59001824557952, -73.8039916426984 40.58997350382735, -73.80413223856632 40.589922791844835, -73.80413029662101 40.58991109161021, -73.80423029603541 40.58988038030909, -73.80432850093253 40.58984647080106)), ((-73.78771451903944 40.592309534053065, -73.78765915636878 40.59230597014208, -73.78765912197197 40.592305642287215, -73.78740707100364 40.59228793568641, -73.78725544965266 40.59227532687908, -73.78720065829388 40.59227043552952, -73.78720131831426 40.592263867417536, -73.78721372725798 40.592264467633555, -73.78765701818821 40.592285911486066, -73.7876567577895 40.59228347148105, -73.7879528889139 40.592297257849886, -73.78824937436312 40.592305515781725, -73.78854603570363 40.592308239542525, -73.78854526843273 40.59229723731027, -73.78872520395105 40.592297837539576, -73.7889050751766 40.59229411304526, -73.7889090535731 40.59233231254308, -73.78890265241114 40.59233256914051, -73.78860541747721 40.59233635874682, -73.78830816135017 40.59233377992894, -73.7880111168237 40.59232483581768, -73.78771451903944 40.592309534053065)), ((-73.79696419234881 40.59082547001845, -73.7975758667513 40.59075180557369, -73.7975808893417 40.59077604305953, -73.79779989160998 40.590745491989544, -73.79780149941702 40.59075990052479, -73.79608346190963 40.59098696678858, -73.79608314809983 40.59097367897797, -73.79697163055702 40.5908504502303, -73.79696419234881 40.59082547001845)), ((-73.80059505334856 40.59060414656127, -73.8009439744433 40.59056211525794, -73.80094458879626 40.59056565268553, -73.80094622279343 40.59057506780775, -73.80090172827569 40.59057955638507, -73.79810970130394 40.59091616400756, -73.79810861894633 40.59090571330905, -73.79810840661959 40.590903658837426, -73.79932453271918 40.59075718531684, -73.79934372017432 40.59075487475667, -73.79961709136268 40.59072194681311, -73.79963609799726 40.59071965750147, -73.79978231810777 40.59070204504731, -73.79981150988874 40.59069852892691, -73.80039355812733 40.590628417984085, -73.80042205736338 40.59062498515507, -73.80057207033573 40.59060691541408, -73.80059505334856 40.59060414656127)), ((-73.8053742387361 40.59064402935202, -73.80537855595331 40.590615378346854, -73.80653339625047 40.59090712116274, -73.8065314312365 40.59093666228696, -73.8053742387361 40.59064402935202)), ((-73.80540635421015 40.59045351727795, -73.80541142221027 40.59042503233865, -73.80651203480292 40.590703358463244, -73.80651456324492 40.59073376445405, -73.80540635421015 40.59045351727795)), ((-73.8264470622452 40.58361042395954, -73.82791073749543 40.58321268781356, -73.82791743671118 40.58322516832392, -73.82790291614057 40.5832291034837, -73.82623551296896 40.58368098276948, -73.82563847427186 40.58384150736574, -73.825632262008 40.583829498436465, -73.82627395954403 40.58365696626137, -73.8264470622452 40.58361042395954)), ((-73.81236378658188 40.58844804659811, -73.81305200954831 40.58818091991186, -73.81305594873693 40.588224046175945, -73.8123687094829 40.588491114156575, -73.81236378658188 40.58844804659811)), ((-73.83001859746292 40.58271480030489, -73.83002053697108 40.582714306984805, -73.83002757199004 40.58272678156529, -73.82997811865752 40.58273935807487, -73.82995563169638 40.58274507735261, -73.82985375245642 40.582770987731074, -73.82976418272024 40.58279376622062, -73.8296850610006 40.58281388826971, -73.82957441660646 40.582838284231144, -73.82948725601571 40.58285605285335, -73.82942391814049 40.58286816635979, -73.8293385981916 40.582883428738015, -73.82926476869565 40.58289579402826, -73.8292040243688 40.58290520158652, -73.82910655519906 40.582921335450585, -73.82904582455734 40.58293183888505, -73.82895644755001 40.58294742813743, -73.82890866426042 40.58295759416548, -73.82886217974337 40.582967483845835, -73.82880204874793 40.58298086702459, -73.82873782216517 40.58299814154122, -73.8281446291537 40.583163441460194, -73.82812454466544 40.5831690378997, -73.8280723615116 40.58318371313322, -73.8280721193966 40.58318324629875, -73.82806556819101 40.58317061383009, -73.82811997926886 40.58315582756582, -73.82872884783302 40.58298616018039, -73.82879307440652 40.58296888566874, -73.82885320539297 40.58295550249466, -73.82889968990301 40.582945612817866, -73.82894747318547 40.582935446793556, -73.8290368501788 40.58291985754818, -73.82909758081104 40.582909354118435, -73.82919504996545 40.58289322026198, -73.82925579428267 40.58288381270847, -73.82932962376704 40.582871447423976, -73.82941494370266 40.5828561850524, -73.82947828156814 40.58284407155089, -73.82956544214571 40.58282630293548, -73.82967608652322 40.582801906982645, -73.82975520823138 40.58278178493972, -73.82984477795455 40.58275900645709, -73.8299466571797 40.58273309608656, -73.8299840018836 40.58272359858022, -73.83001859746292 40.58271480030489)), ((-73.78805980122326 40.592494136176995, -73.78777559232869 40.59248105830553, -73.78749189438952 40.592462620747604, -73.78720888345407 40.59243883463911, -73.78720767822237 40.59242483914016, -73.78748509601878 40.59244811421567, -73.78776320945559 40.59246592281518, -73.7880418342181 40.59247825288692, -73.7883207824329 40.59248509687698, -73.78859986976425 40.59248644904093, -73.78887891067804 40.592482309036996, -73.7889119040533 40.592482547953956, -73.78891375662391 40.592501148110074, -73.78862905826598 40.59250418365378, -73.78834434855969 40.59250184593591, -73.78805980122326 40.592494136176995)), ((-73.79114064179146 40.59223848879131, -73.79125498534606 40.59220870996545, -73.79125683244563 40.59221944128125, -73.7911897972331 40.592236624885494, -73.79114351535686 40.59224848894682, -73.79113260547413 40.59225128506015, -73.79094261641431 40.592296942913045, -73.79074203981803 40.59233856662936, -73.79073094984246 40.592340768930306, -73.79052309305548 40.5923769587431, -73.79031044381719 40.5924070131599, -73.79026131820068 40.59241362521529, -73.79010393240064 40.59243221195516, -73.79006726316531 40.59243598931242, -73.79002047658014 40.59244032360646, -73.78990678004433 40.59245000896204, -73.78978647892836 40.59245813502025, -73.78971199401404 40.59246209702734, -73.78969403158374 40.59246301871138, -73.78969416206104 40.59246434992695, -73.78915248866787 40.59249403639806, -73.78915139471242 40.592478715550875, -73.78915538689867 40.59247854997517, -73.7894222598094 40.59246741535654, -73.7899853442667 40.59243131718421, -73.79019477946443 40.59240875437536, -73.79040320570147 40.59238129138643, -73.79061042439473 40.59234895307574, -73.79081623930516 40.59231177061108, -73.79102045654642 40.592269778767864, -73.79114064179146 40.59223848879131)), ((-73.76678682847346 40.59610099888674, -73.76715292466787 40.595883288112, -73.76719940048709 40.59593092553364, -73.76689453766072 40.59611813650135, -73.76678682847346 40.59610099888674)), ((-73.79547923541884 40.5912167867713, -73.79584692180553 40.59116435193529, -73.79583320846672 40.59117894399963, -73.79559331852947 40.59120875175974, -73.7953543982652 40.591242784210785, -73.79511657526706 40.591281022675375, -73.79485706399464 40.59132792190748, -73.79459811724512 40.59138012295661, -73.79434103498448 40.59143743093823, -73.79408599093047 40.591499806553024, -73.79147666833559 40.59216120360293, -73.79147607805365 40.59215805789673, -73.7927423893854 40.59183651359242, -73.79400757177733 40.591512410237655, -73.79428793353834 40.591443120862856, -73.79457054929289 40.591379374867124, -73.79485522996886 40.59132121422091, -73.79511289096733 40.591274426961135, -73.79547923541884 40.5912167867713)), ((-73.76097750548072 40.60041123056121, -73.7610311685751 40.60038147532711, -73.76082386444853 40.60057408074411, -73.76061119340756 40.60076325531121, -73.76039325144446 40.600948913649134, -73.76017014046256 40.60113097039075, -73.75994196118761 40.60130934016665, -73.75992101618017 40.601298131698904, -73.76014349593012 40.60112867968058, -73.76036051068785 40.6009551607691, -73.76057193367907 40.600777675589995, -73.76077763811479 40.600596330172024, -73.76097750548072 40.60041123056121)), ((-73.81071899156507 40.589360433920994, -73.81076786913786 40.58932436824083, -73.81078021599981 40.589332583353944, -73.81087545702746 40.58926137172163, -73.81097108024507 40.58919612031545, -73.81096925717989 40.589179564760705, -73.81099667476552 40.58916055924948, -73.81101158721685 40.5891688082752, -73.811238362914 40.58901941557515, -73.81124365046738 40.58902768027731, -73.81105445747124 40.58915373644462, -73.81087083543896 40.589284491405536, -73.81069298203732 40.589419803229354, -73.8105210949566 40.58955952368194, -73.81044817081879 40.589611982376724, -73.81037100202788 40.589660786892814, -73.8102899057379 40.58970573602774, -73.81020521086238 40.58974664841042, -73.81011726399841 40.58978335620744, -73.81011571807545 40.58976869130027, -73.8102038679928 40.589732020761325, -73.81028866000807 40.5896910049796, -73.81036972740674 40.58964582436281, -73.81044671643293 40.58959667284875, -73.81051929454063 40.58954376422216, -73.81062233106269 40.58945388876025, -73.81073212238714 40.5893687890115, -73.81071899156507 40.589360433920994)), ((-73.76723284143718 40.59618924426122, -73.76751425389763 40.59602255386846, -73.76751952663334 40.596054379211175, -73.76735639630074 40.5961841327282, -73.76723284143718 40.59618924426122)), ((-73.8120776259246 40.588777496304914, -73.81222629883193 40.58871415146555, -73.81222790827844 40.58873032662985, -73.81204846659523 40.588807786409255, -73.81187310038867 40.58889049183747, -73.81170207339845 40.588978319993274, -73.8115356411282 40.589071138037276, -73.81153568690726 40.58905491695007, -73.81157352900922 40.58903292154498, -73.811573591717 40.58903288562679, -73.81175005285048 40.58893581186652, -73.81193184438368 40.588844634194366, -73.8120776259246 40.588777496304914)), ((-73.80494465766093 40.59055451094429, -73.80491782140332 40.590554081762676, -73.80488576397521 40.5905544307684, -73.80484734034872 40.59055608732239, -73.80482287678505 40.59055784952429, -73.80480262532461 40.59055972874041, -73.80478718458767 40.59056141981138, -73.80476540508914 40.59056351795422, -73.80474861193726 40.59056556062857, -73.804731499482 40.59056772522931, -73.80471518592823 40.590569767813314, -73.80447962427904 40.590600057137785, -73.8044859667068 40.59058468155372, -73.80472152829881 40.59055439221622, -73.80473784184865 40.59055234963133, -73.80475495429975 40.590550185029656, -73.80477174744765 40.59054814235431, -73.80479352694094 40.590546044210264, -73.80480896767412 40.5905443531385, -73.80482921912973 40.59054247392125, -73.80485368268764 40.590540711718006, -73.80489210630508 40.590539055161884, -73.80492416372577 40.59053870615438, -73.8049509999773 40.59053913533448, -73.8049899698917 40.590540931386535, -73.80502653605102 40.59054389042754, -73.80508564923295 40.59055132819545, -73.80512674870874 40.59055848864064, -73.80516265742632 40.590566129254945, -73.805189773208 40.59057278508533, -73.80521503245275 40.590579698014, -73.80524720411694 40.590589597988625, -73.80524427978615 40.59060602581815, -73.80520869019338 40.59059507363828, -73.80518343094347 40.590588160708236, -73.80515631515617 40.590581504876404, -73.80512040643106 40.59057386426009, -73.80507930694647 40.59056670381267, -73.80502019375164 40.59055926604146, -73.80498362758418 40.59055630699847, -73.80494465766093 40.59055451094429)), ((-73.81238444185546 40.5886536270336, -73.81306675631988 40.588378340859, -73.81306876072979 40.58839316676682, -73.81238610349381 40.58866847670766, -73.81238444185546 40.5886536270336)), ((-73.76127814595074 40.60008045932881, -73.76145183173621 40.59988217123598, -73.76148217959316 40.599919534897275, -73.76138896930574 40.60002069016069, -73.76127814595074 40.60008045932881)), ((-73.81151071814831 40.58883415904037, -73.81155399600064 40.58881141251477, -73.81155835633102 40.58883306018985, -73.81177283611095 40.588733230093354, -73.8119898446598 40.58863662761499, -73.81220929684255 40.58854329042343, -73.81221030547687 40.58855342478295, -73.8120316402573 40.58862587348161, -73.8118559669158 40.58870245571019, -73.81168344864483 40.58878309970781, -73.81151424864969 40.58886773011215, -73.81151071814831 40.58883415904037)), ((-73.81111757050856 40.589318376986746, -73.81139173267117 40.589137574103034, -73.8113917069626 40.58914667657056, -73.81139181345313 40.58914661370857, -73.81139168592621 40.589154124780755, -73.81129371582243 40.589215267187384, -73.81114242770448 40.58931504447694, -73.81099558177243 40.5894186065776, -73.81099380129537 40.58940244192157, -73.81111757050856 40.589318376986746)))",Q219,6394,Q219,Q-14,Q-14,Q-14,Q-14,"Rockaway Frwy. bet. Beach 108 St. and Regina Ave., Beach Channel Dr.",414,"31,32",100,"11691, 11692, 11693, 11694",Q,9.404,False,Rockaway Freeway,No,100000381,PARK,20090423000000.00000,,,DPR,True,Rockaway Freeway,Y,Rockaway Freeway,Large Park,Parkway,http://www.nycgovparks.org/parks/Q219/,No,"23, 31","10, 15",5,{CEA0AB2B-BBAB-497F-B3A0-B80EB7731751} +"MULTIPOLYGON (((-73.97846772524686 40.65426367445462, -73.9783222931286 40.65411012877915, -73.97819230662421 40.653969727993776, -73.97831310876141 40.653922966267665, -73.97846053654087 40.65414182773958, -73.97855179752419 40.65410650039729, -73.97855340460939 40.65410587934013, -73.97860092536928 40.65408748342216, -73.97865767471245 40.654065515945355, -73.97870830788115 40.65404591476796, -73.97876178622838 40.65402521276125, -73.97876938905773 40.654014103584466, -73.9789337650983 40.65425812261933, -73.97894540113899 40.6542768951286, -73.97894868259061 40.65428351723154, -73.97895079615807 40.65428908551561, -73.97895331009086 40.65429614602979, -73.97895537086514 40.65430414930238, -73.97895671097783 40.6543102316401, -73.97895738212083 40.65431545116, -73.97895789354841 40.65432095791569, -73.9789582180672 40.65432674559844, -73.97895793138396 40.654335957835954, -73.97895737694554 40.654343105138786, -73.97895605601315 40.654351184336555, -73.97895537854173 40.654354780877874, -73.9789546197591 40.65435750570379, -73.97895296970037 40.654363157047186, -73.97895098493709 40.65436907128029, -73.97894875439495 40.654374471273094, -73.97894505807574 40.654382322205095, -73.97894155852461 40.65438862338307, -73.97893749605305 40.65439522072796, -73.97893407857887 40.65439996312561, -73.97892861483906 40.654406918619365, -73.97892318331053 40.65441296459644, -73.97891297828205 40.65442311875774, -73.9787852268901 40.65455089755078, -73.97867293692026 40.654454629518334, -73.97856851092901 40.65436003239936, -73.97846772524686 40.65426367445462)))",B255H,5943,B255H,B-07,B-07,B-07,B-07,19 St. bet. 11 Ave. and Seeley St.,307,39,72,11218,B,0.487,False,Thomas J. Cuite Park,Yes,100004548,PARK,20100106000000.00000,19600915000000.00000,,DPR,True,Thomas J. Cuite Park,N,Thomas J. Cuite Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B255H/,No,44,21,9,{E058EE6F-9C10-40A9-A86E-F8C880A884AD} +"MULTIPOLYGON (((-73.87186279350361 40.75442741040778, -73.87221108909823 40.7543918166858, -73.87248239059294 40.75489650713415, -73.87250217757963 40.7549378010404, -73.87196557964906 40.754991711718205, -73.8719505216587 40.75490904381209, -73.87186279350361 40.75442741040778)))",Q122,5492,Q122,Q-03,Q-03,Q-03,Q-03,34 Ave. bet. 96 St. and Junction Blvd.,403,21,115,11372,Q,0.54,False,Junction Playground,Yes,100000160,PARK,20090423000000.00000,19360812000000.00000,95-02 34 AVENUE,DPR,False,Junction Playground,Y,Junction Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q122/,No,34,13,14,{4D83FF3E-A777-4F8F-8A0E-0AFB3D96D357} +"MULTIPOLYGON (((-74.02249206358081 40.62193629204939, -74.0226854598788 40.62180753187521, -74.02260578501374 40.62200476331758, -74.02249206358081 40.62193629204939)))",B338,4884,B338,B-10,B-10,B-10,B-10,"Ft Hamilton Pkwy., 83 St., 6 Ave.",310,43,68,11209,B,0.032,False,Tom McDonald Triangle,Yes,100004539,PARK,20100106000000.00000,19650211000000.00000,8302 FT HAMILTON PARKWAY,DPR,True,Tom McDonald Triangle,N,Tom McDonald Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B338/,No,46,22,11,{669DB9E7-BE28-4D2B-A7D7-6D7D0BE50593} +"MULTIPOLYGON (((-73.9056212034488 40.65556536068103, -73.90558694889648 40.6555090799435, -73.90555007196306 40.65544849256838, -73.90551810139101 40.655395966141356, -73.90548832861344 40.65534704988465, -73.90524627667469 40.655382830011796, -73.90520676729943 40.65522789944126, -73.90556683871289 40.65517455360349, -73.90595374548126 40.65511723118663, -73.90615278033498 40.65509522211497, -73.90621245625655 40.65532629585426, -73.90646306459348 40.656296670588446, -73.90625325894749 40.656341389671326, -73.9055184871582 40.65645023824133, -73.90548594848507 40.65632264781747, -73.90584602440167 40.65626930111143, -73.90582884637739 40.65620194095427, -73.90581022081646 40.656128906348954, -73.90579448925295 40.65606721882869, -73.90577605896924 40.65599495071692, -73.90576013108362 40.655932497590314, -73.90574174438639 40.65586039790433, -73.90572684784301 40.65580198984114, -73.90571189371626 40.65574334849441, -73.9056952039573 40.655677908616454, -73.90567983243594 40.65561763158271, -73.90567722191503 40.65560739416047, -73.90563559328315 40.65558900116554, -73.9056212034488 40.65556536068103)))",B343,6648,B343,B-16,B-16,B-16,B-16,"Linden Blvd., Osborn St., Rockaway Ave., Hegeman Ave.",316,42,73,11212,B,1.9,False,Osborn Playground (IS 275),Yes,100004709,PARK,20100106000000.00000,19880726000000.00000,1461 LINDEN BOULEVARD,DPR,Part,Osborn Playground,Y,Osborn Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B343/,No,60,19,8,{49074BEE-7CD7-43A1-83E1-C84B4E4D7435} +"MULTIPOLYGON (((-73.85823915390347 40.68709140015742, -73.85831924370126 40.68742144738345, -73.85831813453002 40.687426233153914, -73.85831598358637 40.68743080872232, -73.85831285266319 40.687435043590106, -73.85830882955817 40.68743881719618, -73.8583040304323 40.687442022522404, -73.8582985927097 40.687444566984745, -73.85829266914776 40.68744637963063, -73.85828642902744 40.687447407538095, -73.85828005104018 40.687447623011145, -73.8582737173843 40.68744701816958, -73.8582676066554 40.68744561034311, -73.85826189384866 40.68744344117103, -73.85825674208888 40.687440571188795, -73.85825229789302 40.687437082523736, -73.85824868763066 40.687433074388295, -73.85813397333932 40.68710298443283, -73.85813543246226 40.68709607838312, -73.85813839692473 40.68708945695076, -73.858142783513 40.687083310041714, -73.85814846409271 40.68707781219764, -73.85815527981023 40.68707311991219, -73.85816303518568 40.6870693680214, -73.85817150877672 40.6870666616124, -73.8581804602709 40.68706507873358, -73.85818963286128 40.6870646658952, -73.85819876745518 40.68706543178305, -73.85820760146864 40.68706735806332, -73.85821588423153 40.68707038679424, -73.85822337932713 40.6870744330363, -73.85822987406125 40.68707938216224, -73.85823518300755 40.68708509166244, -73.85823915390347 40.68709140015742)))",Q257,6197,Q257,Q-09,Q-09,Q-09,Q-09,84 St. bet. 91 Ave. and 91 Ave.,409,32,102,11421,Q,0.049,False,Lt. Clinton L .Whiting Square,Yes,100000354,PARK,20090423000000.00000,19320510000000.00000,,DPR,False,Lt. Clinton L .Whiting Square,Y,Lt. Clinton L .Whiting Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q257/,No,38,15,7,{5F029FEB-7AB1-416C-8C9F-9163E9D61556} +"MULTIPOLYGON (((-74.00216440065645 40.7299611686106, -74.00217012992348 40.7299588010659, -74.00217625820868 40.72995935026042, -74.00218097909053 40.729962156155594, -74.00224343132449 40.73006806916296, -74.00225991482063 40.73009612688407, -74.00233898110238 40.730230707197556, -74.00235483149476 40.73026228050237, -74.00235810599065 40.73026883523645, -74.00236449872926 40.730281958215215, -74.00236521860428 40.73028624912326, -74.00236452633673 40.730292698579085, -74.00236225608462 40.73029804044184, -74.00235975848247 40.730301441713536, -74.00235575752038 40.730305096959256, -74.00235050650029 40.730308403733645, -74.00233476511933 40.73031389715548, -74.00228605178377 40.73033000012461, -74.00210315986115 40.730387944125134, -74.00192536363006 40.730443600458166, -74.00188942506234 40.73045438194057, -74.00188362579233 40.730452904301224, -74.00188087107131 40.7304487503008, -74.00189846904723 40.73041554286263, -74.00195612802123 40.73031312617085, -74.00207688460117 40.73010271034625, -74.00216440065645 40.7299611686106)))",M191,5772,M191,M-02,M-02,M-02,M-02,"Ave. of Americas, Bleecker St. and Carmine St.",102,3,6,10014,M,0.247,False,Father Demo Square,Yes,100003962,PARK,20100106000000.00000,,,DPR/CDOT,False,Father Demo Square,N,Father Demo Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M191/,No,66,27,10,{BC8D9369-D9FB-4B4C-9E08-4A6F72B0A66E} +"MULTIPOLYGON (((-73.84423329988674 40.78091352726494, -73.84495789832293 40.78091108881153, -73.84491923107068 40.781604913223966, -73.84419607154405 40.781607359693105, -73.84423329988674 40.78091352726494)))",Q011,5321,Q011,Q-07,Q-07,Q-07,Q-07,"20 Ave., 21 Ave. bet. 123 St. and 124 St.",407,19,109,11356,Q,1.14,False,Poppenhusen Playground,Yes,100000010,PARK,,18980101000000.00000,123-20 20 AVENUE,DPR,False,Poppenhusen Playground,Y,Poppenhusen Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q011/,No,27,11,14,{65153E49-783F-434F-8426-14614822BADA} +"MULTIPOLYGON (((-73.91400987432566 40.678341754449235, -73.91403556680673 40.678068177387814, -73.91406137181141 40.67779339820821, -73.91424158355852 40.67780326273406, -73.91421455170924 40.678095363344724, -73.91486908785959 40.67813047068875, -73.91489630998707 40.67811247332328, -73.91543576279973 40.678141405683505, -73.91547122129585 40.67817249140029, -73.91544842091152 40.67841891046889, -73.91400987432566 40.678341754449235)))",B325,5181,B325,B-16,B-16,B-16,B-16,Fulton St. between Saratoga Ave. and Hopkinson Ave.,316,41,73,11233,B,1.035,False,Fish Playground (IS 271),Yes,100004160,PARK,20100106000000.00000,19600211000000.00000,231 SARATOGA AVENUE,DPR/DOE,False,Fish Playground,Y,Fish Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B325/,No,55,25,8,{AA7F350D-1470-4B00-9F40-78915FA9B6D5} +"MULTIPOLYGON (((-73.80194209409632 40.75533247738867, -73.80204508523627 40.754592942339656, -73.80193926763071 40.75379666839317, -73.80288212256134 40.75381617787995, -73.80278028206658 40.754572587624025, -73.80269145701122 40.75523231128431, -73.80244486684295 40.755214100923304, -73.80237454481298 40.755447022653584, -73.80236346545422 40.75548372184069, -73.80229382098555 40.755714391606276, -73.80225045032871 40.75571524648545, -73.80197582079434 40.755720659528784, -73.80196991994539 40.75567283693765, -73.80189548810375 40.75566712310973, -73.8019375734043 40.755364935615525, -73.80194209409632 40.75533247738867)))",Q017,6266,Q017,Q-07,Q-07,Q-07,Q-07,46 Ave. bet. 164 St. and 165 St.,407,20,109,11358,Q,3.474,False,Martins Field,Yes,100000294,PARK,,19141202000000.00000,,DPR,Part,The Olde Towne of Flushing Burial Ground,Y,The Olde Towne of Flushing Burial Ground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q017/,No,26,11,6,{9C23E7BE-1029-4455-B5F3-807E61E0AA17} +"MULTIPOLYGON (((-73.88907239384194 40.84261754840145, -73.88920722269734 40.84246003398192, -73.8895500830362 40.84264341152526, -73.88960209752472 40.842671176709985, -73.88976898191362 40.842759910657925, -73.88991804074502 40.842838911927686, -73.88996095129025 40.8428616552133, -73.89012812435662 40.84294992425856, -73.89000027706795 40.843098243355115, -73.88905809076358 40.842633495893544, -73.88907239384194 40.84261754840145)))",X148H2,5658,X148H2,X-06,X-06,X-06,X-06,Prospect Ave. bet. N/B Cross Bronx Exwy. and Fairmount Pl.,206,17,48,10460,X,0.47,False,Fairmount Playground,Yes,100005097,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Fairmount Playground,Y,Fairmount Playground,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148H2/,No,79,33,15,{0C11E018-9F40-4183-816B-7B02AFF0A44D} +"MULTIPOLYGON (((-74.14278263464439 40.534678246528685, -74.14146177761613 40.53410449872532, -74.14177107114998 40.533066047156325, -74.14217532626752 40.531722089759704, -74.14221564084401 40.53158562141315, -74.142230328134 40.53153590393122, -74.14234511651455 40.53114733744595, -74.14246770634855 40.53073235224046, -74.1425138797137 40.53057604776012, -74.14253453433619 40.53050613116725, -74.14298744755622 40.52956822265733, -74.1442359845288 40.52928312112214, -74.14779518485987 40.532319395154616, -74.14975139291599 40.533404676570406, -74.14893440729216 40.53408751076382, -74.1488764714126 40.53413652063991, -74.14902576287166 40.5342174799058, -74.149260846824 40.534356913174314, -74.14916442676632 40.5344573321773, -74.14890318844137 40.53472940133801, -74.14860677583611 40.534568637568036, -74.14845615819632 40.53448694824467, -74.14839944068959 40.53453535024636, -74.14834181145972 40.53458567332499, -74.14848960901416 40.53466822194751, -74.1487363073998 40.53480600860515, -74.14851319109266 40.535038372692036, -74.14846862817224 40.53508478234159, -74.14837933610765 40.5351777747044, -74.14791285165676 40.53491796173747, -74.14751567009154 40.535204495069905, -74.14708154486725 40.53545713972904, -74.14670908940808 40.535559001382936, -74.14642239407526 40.535535879781676, -74.1439222807485 40.534136847655475, -74.14377943813616 40.534189989424775, -74.14370127327393 40.5342198902834, -74.14564053696911 40.535322708717, -74.14544862364386 40.53536519399964, -74.14514443076627 40.53560310959755, -74.14474512265787 40.53571895971295, -74.14408142438596 40.535242384685354, -74.14278263464439 40.534678246528685)), ((-74.14992585663543 40.53322993538553, -74.1479650032413 40.532142078399815, -74.14851680902679 40.53156589998189, -74.14868794826116 40.53138719722121, -74.14884958976684 40.53147687676115, -74.14945714314773 40.53102833450943, -74.14925401752053 40.53091564271131, -74.15032510406071 40.53010816544243, -74.1512492528988 40.52940457671775, -74.15485455722315 40.5314622791061, -74.15423494091617 40.531766587894296, -74.15417256894901 40.53173136823033, -74.1539171791309 40.531856888949626, -74.15368394718038 40.53197151815839, -74.15336720792487 40.53179581175231, -74.15319772977739 40.531879105529875, -74.15307089263325 40.53194144363383, -74.15294145219838 40.532005060214146, -74.15281465465705 40.53206737726883, -74.1527390468792 40.532104535551994, -74.15265473738607 40.532145972062274, -74.15257753670298 40.53218391311527, -74.15249728958634 40.532223351239836, -74.15241923989859 40.532261710258574, -74.15234248458444 40.53229943263351, -74.15226694701842 40.53233655629114, -74.15218531193207 40.53237667593685, -74.15210988855051 40.532413744407044, -74.1520274421697 40.532454263048756, -74.15234418102348 40.53262997314217, -74.1516888916553 40.53295201806047, -74.15164898332642 40.532986280975365, -74.15098291564126 40.53261694060443, -74.15073749210629 40.53248084827478, -74.15070269120962 40.532504944388286, -74.15066880855485 40.532533242054605, -74.1506477325433 40.53254833015802, -74.15060806834425 40.53257635622855, -74.15058089570391 40.53260218572157, -74.15056177166437 40.53261826453222, -74.15053742550175 40.53263666904912, -74.15051668578997 40.53265489683169, -74.15050064982552 40.532666504959984, -74.15070922866278 40.532787602831206, -74.15060334168233 40.53289650316099, -74.15045161210537 40.532808399835645, -74.15036602892796 40.53289641888821, -74.15027573890362 40.53298927897676, -74.15020126504625 40.532947035366476, -74.15014229550435 40.53301158946864, -74.15008904591811 40.533066386036204, -74.1500315285918 40.533121789709206, -74.14992585663543 40.53322993538553)), ((-74.1550453220521 40.53156653703998, -74.1551092272209 40.53153554185811, -74.15592401572641 40.5319825017817, -74.15588278724023 40.532025938054986, -74.15516312261902 40.532784113779066, -74.15508422696941 40.53274083559475, -74.15500824800425 40.53269915635983, -74.15493712380047 40.53266014059154, -74.15486011098187 40.53261789442002, -74.15479442775532 40.53258186278132, -74.15472430592935 40.532543396653395, -74.15465572046334 40.532505773109236, -74.15458559997725 40.532467306894794, -74.15451423873722 40.532428161507454, -74.15444411841399 40.532389695206305, -74.1543739698102 40.532351213591426, -74.1543038484682 40.53231274720602, -74.15423412309 40.53227449727328, -74.1541640030892 40.532236030800625, -74.15409465012351 40.532197986504286, -74.15402453028325 40.532159519946184, -74.1539534604074 40.53212053321302, -74.15392983034356 40.53210757116495, -74.1550453220521 40.53156653703998)), ((-74.14474429402783 40.53582193800444, -74.14482406162647 40.53579677570263, -74.14503358649152 40.53594722368412, -74.14524092294057 40.536096100827635, -74.14588113390175 40.53655579426458, -74.14538120621964 40.53696547726044, -74.14473832720464 40.53650903442107, -74.14463298077347 40.536434238698135, -74.14442529241546 40.53628677743523, -74.1444623634062 40.53617406026504, -74.14450585320178 40.53605332660248, -74.14455615627391 40.53597109815053, -74.14463671381074 40.535873426223745, -74.14474429402783 40.53582193800444)), ((-74.14332247218664 40.53792526074179, -74.14281159105168 40.53757387716142, -74.14276459275223 40.53754155080608, -74.14290897436871 40.537465840264254, -74.14300484031308 40.53741557227268, -74.14320807421316 40.537308999868586, -74.14326838306843 40.537277375515494, -74.14340316008092 40.53718504627416, -74.14344494627838 40.5372207675697, -74.14357185068067 40.53732925320861, -74.14359102626615 40.53734564496222, -74.14354638791436 40.53737462845553, -74.14376802056006 40.53756409339631, -74.14388104097841 40.53766070820005, -74.14377927094837 40.53774320432359, -74.14391421957504 40.5378340570667, -74.14425317110903 40.5375592947236, -74.14438579644262 40.53765203193757, -74.14452555631568 40.53774975614953, -74.1441913793644 40.53802064822872, -74.14385619932956 40.538292351058466, -74.14366688550899 40.53816214475606, -74.14343205583124 40.538000632306584, -74.14332247218664 40.53792526074179)), ((-74.14416454529938 40.53645791829264, -74.14410657557544 40.53626006569802, -74.14418824684263 40.53631433887553, -74.14470438465293 40.536657322214374, -74.14492495614512 40.53680389499765, -74.14535050024689 40.53708666964267, -74.14501701451861 40.537356461025546, -74.14487544376291 40.53726238773485, -74.14473464290985 40.537168824799075, -74.1446695186443 40.537125549129854, -74.14459849138431 40.53707834915055, -74.14461202879147 40.537066966530354, -74.14448651236351 40.5370081246266, -74.14408984896481 40.536822168687785, -74.14405996823875 40.53680816064038, -74.14396062820497 40.5367615892358, -74.14416454529938 40.53645791829264)), ((-74.14604556515113 40.535635506143926, -74.14617278230097 40.53562631284657, -74.14621100101881 40.53564804616882, -74.14632932320488 40.53571532971286, -74.14644685856352 40.53578216657582, -74.14656225630435 40.535847786731395, -74.1466601898066 40.53590347553793, -74.14647344556329 40.536056514726084, -74.14625959938081 40.53623176365245, -74.1454999674558 40.53579485760341, -74.14572433107863 40.53565872290586, -74.14604556515113 40.535635506143926)), ((-74.14520153346088 40.53604668461403, -74.14538481056107 40.53586004956417, -74.14617531599859 40.53631471421669, -74.14589488016094 40.536544530096634, -74.14520153346088 40.53604668461403)), ((-74.14548426546136 40.53548077131568, -74.14587375923328 40.535455333363906, -74.14612510530783 40.53559679657389, -74.14573038058143 40.535621565719865, -74.14546747525247 40.53577506283186, -74.14522180780536 40.53563116858058, -74.14548426546136 40.53548077131568)), ((-74.14914295757616 40.53410624299526, -74.14935277284069 40.5339320141937, -74.14961673702169 40.53408526920189, -74.14943505751734 40.53427583438026, -74.14914295757616 40.53410624299526)), ((-74.14489800661154 40.53582873942205, -74.14511463129186 40.53570465124958, -74.14535676784558 40.535843919681625, -74.14517579784716 40.5360282058927, -74.14489800661154 40.53582873942205)), ((-74.14686586720063 40.53578403036085, -74.14663175188379 40.5356530289203, -74.14666918519475 40.53565455883264, -74.14669175574255 40.53565486949652, -74.1467182803419 40.53565465009495, -74.14674350887451 40.53565385330388, -74.14678453912181 40.53565132620235, -74.1468345115042 40.53564616711195, -74.14687095147278 40.53564093165662, -74.1469172256899 40.53563243990176, -74.14694059875256 40.53562734181524, -74.14698037727597 40.535617576895845, -74.14700319286183 40.53561124128333, -74.14701647209606 40.535607297975154, -74.14703039844233 40.53560295670363, -74.14704483972388 40.53559822574251, -74.14705673534498 40.535594151824014, -74.14708911325071 40.53558221796688, -74.1471407262782 40.53556048151067, -74.14718617473973 40.53553830447094, -74.14722642362247 40.53551599179725, -74.14728242088393 40.53548009964809, -74.14735687708034 40.53552245683286, -74.14716020691499 40.5356150060665, -74.14709919837746 40.535646832385495, -74.1470521486513 40.53567246316776, -74.1470072052386 40.53569786520098, -74.14695204284597 40.535730326933255, -74.1469144520533 40.535753290793124, -74.14686586720063 40.53578403036085)), ((-74.1496827504477 40.53365800019903, -74.14980497398788 40.533556505174, -74.15002034031728 40.533681543352166, -74.14991285765302 40.533791596895654, -74.1496827504477 40.53365800019903)), ((-74.14774498152144 40.535151730004685, -74.14786577902906 40.53506410523938, -74.14809362660618 40.53519372363972, -74.14799740096109 40.535295326497184, -74.14774498152144 40.535151730004685)), ((-74.14805489732223 40.535299184075626, -74.14813585317681 40.53521774569984, -74.14820212452618 40.53525544635817, -74.14805489732223 40.535299184075626)), ((-74.14964364216604 40.534697566694604, -74.14972682219496 40.53462544566399, -74.14974112924855 40.53463368215217, -74.14964364216604 40.534697566694604)), ((-74.1486822554325 40.53511779033179, -74.14871031929188 40.53508856154581, -74.14873405517523 40.535102383632506, -74.1486822554325 40.53511779033179)))",R135,5746,R135,R-03,R-03,R-03,R-03,Tennyson Dr. bet. Hales Ave. and Wiman Ave.,503,51,122,"10308, 10312",R,110.96,False,Crescent Beach Park,No,100004988,PARK,20100106000000.00000,19950804000000.00000,,DPR,False,Crescent Beach Park,N,Crescent Beach Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R135/,Yes,"64, 62",24,11,{591B97D4-4AE9-41BE-8309-1046AAB6A632} +"MULTIPOLYGON (((-73.90760273049897 40.67199200489584, -73.90749974435705 40.671591735647645, -73.90842355290347 40.6714509577434, -73.90849286039398 40.67172031842889, -73.90884634604157 40.67166644832929, -73.90888002950118 40.671797357769236, -73.90760273049897 40.67199200489584)))",B260,5138,B260,B-16,B-16,B-16,B-16,Mother Gaston Blvd. and Glenmore Ave.,316,41,73,11212,B,1,False,Howard Playground,Yes,100004711,PARK,20100106000000.00000,19530202000000.00000,1550 EAST NEW YORK AVENUE,DPR,True,Howard Playground,Y,Howard Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B260/,No,55,20,8,{9408FA59-31C2-4465-9DF4-B49DA9A6BE10} +"MULTIPOLYGON (((-73.97820327222415 40.72136641723406, -73.97833216604198 40.7211910718228, -73.97836333552765 40.721148669985695, -73.9784232810234 40.72117396304261, -73.97843742763298 40.721154716399504, -73.97861505015238 40.72122966382242, -73.97870370238988 40.721267070313424, -73.97852941037664 40.721504178135504, -73.97820327222415 40.72136641723406)))",M354,4687,M354,M-03,M-03,M-03,M-03,E. 4 St. bet. Ave. C and Ave. D,103,2,9,10009,M,0.224,False,Orchard Alley Garden,No,100003687,PARK,20100106000000.00000,20021120000000.00000,346 EAST 4 STREET,DPR,False,Orchard Alley Garden,N,Orchard Alley Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M354/,No,74,26,12,{29F3AB75-4E7A-457B-B827-1F094EFE6774} +"MULTIPOLYGON (((-73.76549999819514 40.66370410602201, -73.76561380174817 40.66343974286362, -73.76569413544829 40.66345950182035, -73.76557932195048 40.663723616256625, -73.76549999819514 40.66370410602201)))",Q519,86935,Q519,Q-13,Q-13,Q-13,Q-13,145 Dr. bet. 179 St. and 180 St.,413,31,,11434,Q,0.054,False,,No,100042879,PARK,,20190801000000.00000,179-24 145 DRIVE,DPR,False,Laurelton Community Garden of Resilience,,Laurelton Community Garden of Resilience,,Garden,,No,31,10,5,{C7D18396-5D4E-493A-962C-FB1103C64BF3} +"MULTIPOLYGON (((-73.98152017138543 40.69183676087668, -73.98126288481642 40.69001934147071, -73.98130757945322 40.690021494662176, -73.98151605988289 40.69044243001739, -73.98182815346657 40.69107255437247, -73.9818945469795 40.69120660171213, -73.98194866845446 40.69131587307111, -73.98187489904585 40.69140554897826, -73.98167454405085 40.69164910603521, -73.98152017138543 40.69183676087668)))",B378,5207,B378,B-02,B-02,B-02,B-02,Flatbush Ave. at Fleet St.,302,35,88,11201,B,1.161,False,University Place,Yes,100004943,PARK,20100106000000.00000,19810405000000.00000,343 FLATBUSH AVENUE EXT,DPR,True,University Place,Y,University Place,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B378/,No,57,25,8,{6E8E6AFE-0D48-4966-8230-87EC0C54F4EF} +"MULTIPOLYGON (((-73.88946905865616 40.850787950967, -73.88994037305964 40.849998983186524, -73.89079037867009 40.85051437915722, -73.89100879625023 40.850595069021814, -73.89164861698377 40.85080989344751, -73.89185881811513 40.85088046865546, -73.8925062418691 40.851097840226544, -73.89244591577672 40.85118307951846, -73.8917051792067 40.851551687371455, -73.89148809534196 40.85147754577441, -73.89097415133298 40.85130201453266, -73.88946905865616 40.850787950967)))",X263,4756,X263,X-06,X-06,X-06,X-06,"E. 181 St., Oak Tree Pl. bet. Quarry Rd. and Hughes Ave.",206,15,48,10457,X,4.417,False,Quarry Ballfields,Yes,100005087,PARK,20100106000000.00000,19930517000000.00000,565 EAST 181 STREET,DPR,False,Quarry Ballfields,Y,Quarry Ballfields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X263/,No,86,33,15,{FB65C4B2-84DB-461C-ADC3-E6CE1679CB51} +"MULTIPOLYGON (((-73.95043743457018 40.813287259359456, -73.95110930606799 40.81261826771619, -73.95169283252595 40.812860998740746, -73.94968377246768 40.815611842041015, -73.94966886923265 40.81563327997302, -73.94965488663026 40.815655134334655, -73.94964188042695 40.81567732860835, -73.94962986249458 40.815699838486246, -73.94961883166927 40.815722636953126, -73.94960881521651 40.81574571951884, -73.94959982148187 40.81576902315237, -73.94959185520618 40.81579254965712, -73.94958492826017 40.815816276525986, -73.9495790608308 40.8158401560417, -73.94957423633822 40.81586417108772, -73.94957047731609 40.815888305465016, -73.94956778974246 40.81591249253964, -73.94956583115749 40.81594131299006, -73.94956517988177 40.81597020154938, -73.94956582530133 40.815999089775325, -73.94956779350835 40.816027958768764, -73.94957107269612 40.81605674999221, -73.94957564747945 40.81608543462287, -73.94958151906654 40.81611398474574, -73.94958867444743 40.81614236523556, -73.94959711838398 40.81617055088025, -73.94960683195688 40.81619848403947, -73.94961780805382 40.81622616741126, -73.94963004435819 40.81625353165598, -73.94964349348321 40.816280546135694, -73.94965815898667 40.816307209950985, -73.94967420663055 40.81633376000446, -73.94969166309993 40.816359393063884, -73.94971009445051 40.81638428183484, -73.94972963207258 40.81640866050329, -73.94975028071968 40.81643251376232, -73.94977199774804 40.816455807373906, -73.94979477250078 40.81647852782532, -73.94981858131065 40.81650062467783, -73.94983036250144 40.81651082072827, -73.94984134533279 40.81652032484859, -73.94984984589264 40.816528627525784, -73.94985842533907 40.816537633524725, -73.9498665684428 40.81654685004957, -73.94987430007923 40.81655629782266, -73.9498815906459 40.81656593720932, -73.94988843303368 40.8165757646046, -73.94989483080296 40.81658577370664, -73.94990074724285 40.816595920375136, -73.94990619773829 40.816606236134284, -73.94991117520033 40.81661669036422, -73.94991566068107 40.81662726054431, -73.94991966721044 40.816637957486265, -73.94992318176826 40.81664875687101, -73.94992465937554 40.81665408125038, -73.94992620200001 40.8166596370857, -73.94992871488417 40.81667057561223, -73.94993096710644 40.816682954820536, -73.94994248974332 40.816737552447314, -73.9499515015588 40.8167910908988, -73.94996278881528 40.81689867905878, -73.94996503943557 40.816952620697506, -73.94996503441239 40.81700659737677, -73.94996278208811 40.81706054156292, -73.94995826115921 40.817114403719295, -73.94995139044146 40.81716895283465, -73.94994616348991 40.81721120727922, -73.94993930391401 40.817252493880865, -73.94993070919787 40.81729357981813, -73.94992037935529 40.81733444257814, -73.94990833575457 40.817375034443394, -73.94989458198927 40.81741530138516, -73.94987913704037 40.8174552181971, -73.94986201397603 40.81749474166047, -73.94984323653901 40.817533819556004, -73.94982281541897 40.81757241946962, -73.94980036962916 40.8176112049008, -73.9497445472635 40.81770732482046, -73.94968546300827 40.81780154774268, -73.9496313651404 40.817881752077774, -73.94962280706675 40.817894430034194, -73.94955686418928 40.81798559450566, -73.9495143481351 40.818038717809834, -73.94946938021937 40.818091016068955, -73.94942222854829 40.81814218863192, -73.9493729204308 40.81819217067224, -73.94932151872027 40.81824091809054, -73.94926807205074 40.81828838137805, -73.94921264091288 40.81833450742941, -73.94915526563707 40.81837925663765, -73.9490965581874 40.8184221871262, -73.94903008395335 40.81846573189226, -73.94896132630718 40.81850824093837, -73.94889649555128 40.818546123131114, -73.94883033103439 40.818582718786125, -73.94876293710351 40.818617980221184, -73.94869250071527 40.81865279091513, -73.94865202628105 40.818674649562475, -73.94861272816364 40.81869739750992, -73.94857443439764 40.81872115444806, -73.94853724340781 40.81874586459103, -73.94850114099272 40.81877149821706, -73.94846619590339 40.818798052656476, -73.94843244848632 40.81882546939608, -73.94839992482935 40.81885373494111, -73.94836866526266 40.8188828123903, -73.94833870892718 40.81891267024482, -73.9483100783729 40.818943272495936, -73.9482828234119 40.818974584047595, -73.94825685863267 40.819006693111106, -73.9482415030764 40.819027474182214, -73.94751960597867 40.820017334710386, -73.94750950302902 40.82003262054073, -73.94750013489076 40.82004803547578, -73.94749142801366 40.8200636542233, -73.94748338357917 40.82007948218701, -73.94747601107257 40.820095516669845, -73.9474693401644 40.82011171176019, -73.94746335428084 40.82012804133616, -73.9474580510217 40.82014454321769, -73.94745347192105 40.82016115889144, -73.94744958855583 40.8201778568272, -73.947446418677 40.82019467485405, -73.94744397301798 40.82021153103167, -73.94744234725682 40.820227350211084, -73.94744014321982 40.82024594535718, -73.9474387134741 40.820265717804894, -73.94743817746343 40.82028551857531, -73.94743855180691 40.82030531795966, -73.94743982228262 40.82032511415042, -73.94744201264183 40.82034485222814, -73.94744508260675 40.82036450245804, -73.94744905231349 40.82038408466012, -73.94745391587448 40.820403550204766, -73.94745966264853 40.82042286576874, -73.94746629145602 40.820442025047875, -73.9477269759396 40.82107826761357, -73.94773577161305 40.82109910548185, -73.94775704143663 40.82114951679589, -73.94776216554476 40.821160407017395, -73.94776780179983 40.82117121462499, -73.94777394787948 40.82118187838384, -73.94777439302426 40.821182585474986, -73.94738209615613 40.82172287594258, -73.94627920797708 40.8212617086647, -73.94917036930332 40.81502061970583, -73.95043743457018 40.813287259359456)))",M077,4713,M077,M-09,M-09,M-09,M-09,"St. Nicholas Ave., St. Nicholas Ter. bet. W. 128 St. and W. 141 St.",109,9,26,"10027, 10031",M,22.74,False,St Nicholas Park,No,100005224,PARK,20100106000000.00000,19091129000000.00000,48 ST NICHOLAS AVENUE,DPR,Part,St. Nicholas Park,Y,St. Nicholas Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M077/,No,70,30,13,{E688A951-5C36-4E6B-BF07-BA6102070549} +"MULTIPOLYGON (((-73.89298461617551 40.64473418995766, -73.89354501491401 40.64437161281739, -73.89366090814737 40.644475283298405, -73.89337005795453 40.64466218770661, -73.89309862549702 40.64483661202985, -73.89298461617551 40.64473418995766)))",B305,6634,B305,B-18,B-18,B-18,B-18,E. 103 St. to E. 104 St. between Ave. J and Ave. K,318,46,69,11236,B,0.23,False,Ps 279 Playground,Yes,100003836,PARK,20100106000000.00000,19570313000000.00000,70 AVENUE K,DPR/DOE,False,P.S. 279 Playground,N,P.S. 279 Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B305/,No,58,19,8,{82B965D2-7069-4DA0-86FD-D99CD17A2D56} +"MULTIPOLYGON (((-73.9553329149497 40.71042213200856, -73.95555656771734 40.71006647980561, -73.95579057756268 40.710151434072465, -73.955790737283 40.7101514917665, -73.95563704556727 40.710388548892496, -73.9553329149497 40.71042213200856)))",B223PD,5124,B223PD,B-01,B-01,B-01,B-01,"Rodney St., S. 3 St., Borniquen Pl.",301,34,90,11211,B,0.189,False,Rodney Playground Center,Yes,100003716,PARK,20100106000000.00000,19520206000000.00000,349 RODNEY STREET,DPR,True,Rodney Playground Center,Y,Rodney Playground Center,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B223PD/,No,53,18,7,{F14C1976-8BEC-49F1-A139-798EA720A52E} +"MULTIPOLYGON (((-73.788719836308 40.58891736763082, -73.78923825366098 40.58875564961321, -73.78929992821145 40.589346695874646, -73.78930008070095 40.58934815950869, -73.78876607038288 40.58937860831049, -73.78872005618092 40.588919557213416, -73.788719836308 40.58891736763082)))",Q162E,5575,Q162E,Q-14,Q-14,Q-14,Q-14,Rockaway Boardwalk bet. B. 60 St. and B. 59 St.,414,31,100,11692,Q,0.618,False,Beach 59th St Playground,Yes,100000121,PARK,20100106000000.00000,19570919000000.00000,,DPR,True,Beach 59th St Playground,Y,Beach 59th St Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q162E/,Yes,31,10,5,{F0D1B0C4-5F65-432A-A5E4-D740829117A5} +"MULTIPOLYGON (((-73.99660685351029 40.729668214343086, -73.99727947389489 40.72999883318962, -73.99737424540837 40.7300454177936, -73.99796961080044 40.7303380545615, -73.99809132164201 40.73039787741966, -73.99947439256967 40.73107766962489, -73.99859452164566 40.73211476234651, -73.997279091918 40.73146821345889, -73.9967815834301 40.73121445719212, -73.99572872169115 40.73070320704672, -73.99660685351029 40.729668214343086)))",M098,5829,M098,M-02,M-02,M-02,M-02,"5 Ave, Waverly Pl., W. 4 St. and Macdougal St.",102,1,6,10011,M,9.749,False,Washington Square Park,No,100005007,PLGD,20100106000000.00000,18271026000000.00000,,DPR,True,Washington Square Park,Y,Washington Square Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M098/,No,66,27,10,{04C407B9-8CF5-4228-BE0E-6772D96FF4D1} +"MULTIPOLYGON (((-73.77767041639785 40.781973575014504, -73.77769983896499 40.78195301742366, -73.77776517708186 40.78204221955668, -73.77780393024798 40.78209512688739, -73.77787386087171 40.782190599919794, -73.77788851144811 40.78221060044847, -73.77806133769171 40.78244654863089, -73.7780876376994 40.78248245466659, -73.77809135609499 40.78248753166724, -73.77742716768455 40.7827632288672, -73.77710527175826 40.78231516312737, -73.77712491013368 40.782304935357544, -73.77720188400076 40.782264849655036, -73.77724652932369 40.782238830333085, -73.77729914765847 40.78220816448964, -73.77734998545404 40.78217853616536, -73.77738516394788 40.78215710277868, -73.77742817369932 40.782130899225265, -73.77748793809867 40.782094487469585, -73.77754412152677 40.78205796251077, -73.77757034877429 40.78204069193024, -73.77764000466685 40.78199482407769, -73.77767041639785 40.781973575014504)))",Q399,5378,Q399,Q-07,Q-07,Q-07,Q-07,23 Ave. bet. 212 St. and Bell Blvd.,407,19,109,11360,Q,0.91,False,Bay Terrace Playground,Yes,100000287,PARK,,19581016000000.00000,212-33 23 AVENUE,DPR/DOE,False,Bay Terrace Playground,Y,Bay Terrace Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q399/,No,26,11,3,{7D9F226D-8D24-4712-9924-2B09E335F6F0} +"MULTIPOLYGON (((-73.9292526192357 40.831754354275624, -73.92941902465768 40.83180781865667, -73.92927463364967 40.83206464945647, -73.92910822770138 40.8320111848694, -73.9292526192357 40.831754354275624)))",X327,4770,X327,X-04,X-04,X-04,X-04,W 163 St bet. Ogden Av and Woodycrest Av,204,8,44,10452,X,0.11,False,La Isla Garden,No,100005014,PARK,20100106000000.00000,20021120000000.00000,96 WEST 163 STREET,DPR,False,La Isla Garden,Y,La Isla Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X327/,No,84,29,15,{0BF16D84-385C-4D16-B097-B682C5ACF2A8} +"MULTIPOLYGON (((-73.89661731302351 40.7422955306572, -73.89663383705859 40.74221351014809, -73.89684810074694 40.74223801865752, -73.89671495170266 40.742348780626074, -73.89669589534431 40.742366579176625, -73.89668118351481 40.74238173142774, -73.896674035555 40.74238957924219, -73.89662357045981 40.74247016630414, -73.89661906927043 40.742476858438074, -73.89660584345361 40.74249419034101, -73.89659093222974 40.74251115062055, -73.89656987286162 40.74253101041426, -73.89661731302351 40.7422955306572)))",Q341E,5912,Q341E,Q-02,Q-02,Q-02,Q-02,"68 St., the BQE bet. Woodside Ave. and 43 Ave.",402,26,108,11377,Q,0.064,False,Crosson Green,Yes,100000040,PARK,20090423000000.00000,19551117000000.00000,,DPR,True,Crosson Green,N,Crosson Green,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q341E/,No,34,16,14,{10252D1F-6E83-4D63-B889-F1A4E15E87DB} +"MULTIPOLYGON (((-73.94511518047662 40.5912520199368, -73.94584618359916 40.59117102790931, -73.94620575992238 40.59308134233995, -73.94547789556314 40.593161871668116, -73.94511518047662 40.5912520199368)))",B109,5461,B109,B-15,B-15,B-15,B-15,"Ave. Y, Ave. X bet. E. 24 St. and Bedford Ave.",315,48,61,11235,B,3.214,False,Bill Brown Playground,Yes,100004476,PARK,20100106000000.00000,19310723000000.00000,2401 AVENUE Y,DPR,True,Bill Brown Playground,Y,Bill Brown Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B109/,No,41,19,9,{BDB6C970-DB10-493C-8968-8B9841A853D8} +"MULTIPOLYGON (((-73.74645122415272 40.78014090470663, -73.74487155865303 40.77915818567576, -73.74477422593824 40.77909763264372, -73.74440319466943 40.77886680394856, -73.7440712942681 40.778660238644584, -73.74340603439242 40.77825783501851, -73.74342207953704 40.7782514906601, -73.74344924261575 40.77824075046819, -73.74360248634461 40.7781801596986, -73.74378317275392 40.77810871921469, -73.74387505578488 40.77807238814392, -73.74370115081257 40.77782853254518, -73.74397498363622 40.77771433574919, -73.74377888484831 40.77744547791448, -73.74373506323708 40.777385396850995, -73.74368297303738 40.77731397801521, -73.74359808527475 40.77719759324586, -73.74351398142792 40.777082281758524, -73.74343134375191 40.77696898160057, -73.74338733305014 40.77690864063223, -73.74431993258297 40.77660744570838, -73.7444450748638 40.77660575660733, -73.74438202377115 40.7764484991235, -73.74474175116704 40.776430575027554, -73.74448066307642 40.77577939315126, -73.74445378777799 40.77571236109185, -73.7444824112238 40.775705682475866, -73.74442050073121 40.775648349510746, -73.7443623061461 40.7755944574859, -73.74428215999531 40.77551972042255, -73.74425649568904 40.77549647002163, -73.74425867143817 40.7754394845004, -73.74426229423212 40.77534468632279, -73.74426546271162 40.775261770218584, -73.7442684588273 40.77518332744684, -73.74427002334355 40.77514237678547, -73.7442345873071 40.77512634296178, -73.74415411439693 40.77508997475802, -73.74418838882858 40.77506548773871, -73.74416564249438 40.774999017680976, -73.744139326318 40.77493337986381, -73.74411311813337 40.77486801243166, -73.74408606991834 40.77480054854898, -73.74402164040089 40.77463984872339, -73.74393066800837 40.77466148657667, -73.74378079425294 40.77455618226607, -73.74365323592492 40.77465814747435, -73.74336426710713 40.774889137938246, -73.74335013036615 40.774892287041006, -73.74337032636151 40.77484726527235, -73.74340943283302 40.77478186752633, -73.74344774676283 40.77473584059937, -73.74347803018928 40.77469944831182, -73.74353557307337 40.77464350726071, -73.74361640995241 40.77456695949165, -73.7436028832983 40.774529815015356, -73.74356659805633 40.77444405016801, -73.74350187812878 40.774284123829, -73.74375282061463 40.773630673000994, -73.74382206609572 40.77344956037775, -73.74379710134218 40.77337804335968, -73.74377425288641 40.77333436390345, -73.7437594202862 40.77330665294427, -73.74373925038144 40.77327459417304, -73.74285053906834 40.773413509333785, -73.74293955622238 40.773341089295016, -73.7432250692306 40.773164489065586, -73.7434857657955 40.7729790862608, -73.74363947154943 40.772857170135694, -73.74373839525326 40.772779599006725, -73.74400504418504 40.77259060713424, -73.74410130755119 40.77255225946138, -73.74416686164768 40.77252643531474, -73.74447190578893 40.772271569979004, -73.74464074367806 40.77213050437343, -73.7450581235015 40.77169116270332, -73.74516193106987 40.77160120207236, -73.74510516031775 40.77166751319665, -73.7450801424456 40.77170561322766, -73.74506926274097 40.771734109110994, -73.74505693715611 40.77177363930716, -73.74505242861085 40.77180714619819, -73.7450510200294 40.7718270037611, -73.7450517897927 40.77184251579511, -73.74507441322856 40.77208709128926, -73.74507314550831 40.77208624200802, -73.74507562143228 40.772112152366695, -73.7451006691811 40.77237420214082, -73.74510122261344 40.77237691749269, -73.74510154678394 40.77238042208185, -73.74510359234424 40.772398083744775, -73.74511165225925 40.77243044237635, -73.74511833374376 40.772447859450544, -73.74512669871693 40.77246674627328, -73.74514164150686 40.77248897771889, -73.74514568858346 40.77249465175869, -73.74517964050999 40.77254038254419, -73.74522014557877 40.7725829184034, -73.74526669060485 40.77262171789088, -73.7453224730553 40.77265851794027, -73.74538367392456 40.772689948507356, -73.7454128458576 40.77269745295335, -73.74544045868755 40.7727078220616, -73.7454660262781 40.7727208737574, -73.74547036367176 40.77272219087459, -73.74548052490476 40.772730125172714, -73.74550220806981 40.77274731601409, -73.74552065557357 40.77276656636816, -73.74553553235053 40.77278752609994, -73.74554656859189 40.77280981640212, -73.74556800368003 40.772854125443565, -73.74558561305132 40.77294735866881, -73.74557516070038 40.773234498174155, -73.74557064849147 40.7732411033329, -73.74557064672358 40.77324280618715, -73.74557049092378 40.773245450631244, -73.74556109040869 40.77326749859083, -73.74555125740824 40.7732833798253, -73.74554165681472 40.773298886961335, -73.74550019043402 40.77335616035804, -73.74548044201693 40.77338343720956, -73.74546435771431 40.773405653199816, -73.74541801600654 40.773469659690846, -73.74541343514831 40.773474073758926, -73.7454010027442 40.77348946206275, -73.74537741543928 40.773522560294005, -73.74523334847997 40.77372472076707, -73.74522889322688 40.77373097303943, -73.74492265953509 40.77375546288998, -73.74495314755912 40.774032441566234, -73.74505550817143 40.77402594040574, -73.7450545456546 40.77404313344955, -73.74505590008708 40.774061875088066, -73.74505688389256 40.774082438531785, -73.74506151046204 40.77410199336318, -73.74506780100403 40.77412008134855, -73.74507609229616 40.7741378441745, -73.74509479972036 40.774168790046154, -73.74515730512837 40.77425648635922, -73.74516608196096 40.77427181528239, -73.74516690614382 40.77456749572638, -73.7451470968832 40.77474022939762, -73.74470758512972 40.77470931733381, -73.7446687129544 40.774990453079496, -73.74511826886894 40.775022070988484, -73.74510990182186 40.77508255840978, -73.7451092613851 40.77511773167555, -73.74511156248258 40.77515159400704, -73.74511839961396 40.77519340883874, -73.7451283794348 40.77523087847349, -73.74513745864176 40.77525668095486, -73.74515874641388 40.77530340398683, -73.74519324729418 40.77535928646813, -73.74523358799803 40.775409008878874, -73.74527725650577 40.7754518380509, -73.74532711585601 40.775491502101325, -73.74538454210845 40.77552841739515, -73.74546708945849 40.775587342499065, -73.74562777267283 40.77569914669437, -73.74564163355103 40.77570962226512, -73.74565506571135 40.77572348549321, -73.74566761804024 40.77573882180719, -73.74568832438344 40.77576764138733, -73.74571559662205 40.77580674662848, -73.74574610999625 40.775855437700336, -73.74576161804472 40.77588562177018, -73.74576928741814 40.7759069086507, -73.74577695911844 40.77594092959563, -73.74578983352762 40.775983312412734, -73.74580001225794 40.776015972818385, -73.74580503803716 40.77603251449949, -73.74581874146682 40.77606998868071, -73.74583497968655 40.77611279494585, -73.74584945809904 40.7761455512788, -73.74586702258912 40.776183520242796, -73.74587814010565 40.77620703897013, -73.74588290402257 40.776224849783645, -73.74588618243962 40.776242982403765, -73.7458869976713 40.77626185431044, -73.74588573369442 40.77628235064771, -73.74588055257476 40.776307125656736, -73.74587111491677 40.77633602640283, -73.74586045682334 40.77636066326083, -73.74584417492296 40.77638732015646, -73.74583041712933 40.77641713799119, -73.74582131850111 40.77644472474152, -73.74581325078705 40.77646943034418, -73.74580818995564 40.77649309438996, -73.74580675494371 40.77652363279397, -73.74580934215287 40.77654874731651, -73.74581484950234 40.77656916943893, -73.74582407728145 40.77659061373758, -73.74583822114232 40.77661794017946, -73.74585180564632 40.77664688269487, -73.74586728714056 40.77667446332431, -73.74588365051538 40.77671121575107, -73.74590013138373 40.776749157102486, -73.74590948132446 40.776772438695666, -73.74591530963761 40.77679133696322, -73.74592105780359 40.776813234639846, -73.74593223179598 40.77685489418109, -73.74594584764083 40.77690700497632, -73.74595781267065 40.776958989661225, -73.74597062108599 40.7770088167899, -73.74598365828095 40.777073514479234, -73.74545259085365 40.777179743238364, -73.74545652152848 40.777235783215005, -73.74547768070902 40.77740594006479, -73.7455687770802 40.777389906916305, -73.74561880859413 40.77754710706384, -73.7459607101015 40.77748842791958, -73.74596231368571 40.77752205815347, -73.74596337699039 40.777554783988506, -73.74596917963744 40.77759067924672, -73.74597615116805 40.777631317345154, -73.74598947430897 40.777683817402526, -73.74600435655715 40.777728514407436, -73.74566866857677 40.77780200541198, -73.74591365589087 40.778190250632726, -73.74602865587435 40.77825166831534, -73.74620804970064 40.778347475765266, -73.74645283034103 40.778068014883665, -73.74683925942641 40.77821815397828, -73.74647498783565 40.778570666633726, -73.7466118463481 40.77870681077252, -73.74639255383994 40.77890969591481, -73.74646044055673 40.77891014516779, -73.74649479000081 40.778908877183625, -73.74654791700851 40.77890945240322, -73.74657478549099 40.77890882260877, -73.74660286489043 40.778907509285354, -73.74662060741414 40.77890459914247, -73.74664413968122 40.77890436272122, -73.74673218918093 40.77890686337002, -73.74685029351218 40.77896521091633, -73.74683151812177 40.778983042008726, -73.7469613072866 40.77907987571588, -73.74697331615569 40.77908883600346, -73.74689648535418 40.779161617255625, -73.74712695431865 40.779296503912896, -73.74753584142333 40.77921621805175, -73.74851716433282 40.7790205740189, -73.74884430729631 40.779464607387844, -73.74885817816012 40.77951360892164, -73.74788548855683 40.779697678032946, -73.74743240778578 40.77978341449669, -73.74749177691493 40.77990719034341, -73.74750319007806 40.77994709244633, -73.74751408422904 40.779986097407495, -73.7475245729659 40.78000955424816, -73.74754920068858 40.78006044084957, -73.7475598800463 40.780106430557765, -73.74756033213106 40.78017810639782, -73.74756555353039 40.780239803375274, -73.74756401009223 40.78025882317659, -73.74756282434248 40.78028036247576, -73.74756534565722 40.780294635610694, -73.7475697261795 40.78030471646183, -73.74757630675727 40.78030912984672, -73.74759176665935 40.7803831339465, -73.74776747514876 40.780698055383034, -73.74776816127724 40.78073177451616, -73.74777808558844 40.780766684526355, -73.74780144534182 40.780828119515725, -73.74786329643071 40.78101956006487, -73.7473224209465 40.780682859604006, -73.74645122415272 40.78014090470663), (-73.74486205555087 40.773636059309695, -73.74478123418409 40.773565818202606, -73.74450180331877 40.77358848423891, -73.74450905522873 40.7736600554793, -73.74453687818448 40.773934686146575, -73.74454325585339 40.77399764479844, -73.74490600337577 40.773970183339046, -73.74490032681227 40.773907172229556, -73.74487707868077 40.77364911480041, -73.74486205555087 40.773636059309695)), ((-73.74122501831341 40.767375494847684, -73.74119881281261 40.767326177319404, -73.74116908342677 40.767270227734215, -73.74113718001168 40.76721018585198, -73.74110337302126 40.76714655926441, -73.74099441785732 40.76694150381852, -73.74094262488252 40.76684402808529, -73.74089917905174 40.766762262445695, -73.74086092211492 40.76669026275909, -73.74081632421279 40.76660632697263, -73.7407889305937 40.76655477161107, -73.74077710527274 40.76652957311264, -73.74058838757281 40.76612745525073, -73.74061327670807 40.76611462592228, -73.74066133423392 40.7660901295335, -73.74071081140508 40.766066346820274, -73.7407595702842 40.766043304487994, -73.74080910738202 40.766021148184514, -73.74085784437102 40.765999757292704, -73.74091040323289 40.76597779234647, -73.74096311006306 40.76595614378715, -73.74101172428715 40.76593736312643, -73.74106449074938 40.76591711494445, -73.74111506561556 40.76589911218278, -73.74116858538352 40.76588005881871, -73.74122435238459 40.76586179842166, -73.74127551072377 40.76584510443745, -73.74132874517092 40.765829047248346, -73.7413807716758 40.76581355824505, -73.74143680874528 40.765798007078985, -73.7414903530505 40.76578357232522, -73.74154524673527 40.76577025990486, -73.74159976343331 40.765757947977555, -73.7416519806195 40.76574639900129, -73.74167238120552 40.765742260985974, -73.74172525021433 40.76601280651035, -73.74186280111431 40.76598590593819, -73.74187395016993 40.76604296097529, -73.7418881083534 40.76611541062882, -73.74191357480107 40.766245728826384, -73.74193707050267 40.76636596051687, -73.74196041531503 40.76648541832616, -73.74198376020765 40.76660487702906, -73.74200922584875 40.76673519429287, -73.7420417888634 40.76690182600214, -73.74239866627147 40.76686040598217, -73.7424598177836 40.76717332050662, -73.74247296176843 40.767240570977854, -73.74189315672322 40.767399490048696, -73.74188217629869 40.76733339520752, -73.74128903127861 40.76749596803243, -73.74127688736436 40.767473112895516, -73.74125168830471 40.7674256860046, -73.74125075823105 40.76742393513008, -73.74122501831341 40.767375494847684)), ((-73.74271941859205 40.76904431754838, -73.74229260160281 40.76825086852905, -73.74219463021115 40.76806873873695, -73.74221109684929 40.768050816760486, -73.74222845227358 40.76803338484515, -73.74224666913746 40.7680164699447, -73.74226572247038 40.768000097216984, -73.74228558612431 40.76798429001627, -73.74230622803626 40.767969069882724, -73.74232761968611 40.76795446106575, -73.74234973019894 40.76794048420764, -73.74237252633458 40.76792715904473, -73.74239597603388 40.767914506216734, -73.74242004369496 40.76790254365367, -73.74244469490401 40.76789128838799, -73.74246989287832 40.76788075744667, -73.74249560203032 40.76787096515798, -73.74252178439659 40.76786192764585, -73.74254840321208 40.767853657434884, -73.74257541579686 40.7678461652356, -73.74260278657046 40.76783946357528, -73.74263047286003 40.76783356136339, -73.74265843554579 40.767828467517454, -73.74268663432734 40.76782419005182, -73.74271502773361 40.76782073337624, -73.74274357428327 40.76781810460203, -73.7427719210576 40.76781598686297, -73.74276985664915 40.76780033503558, -73.74343173527608 40.76775088444811, -73.74346985928875 40.76804000162026, -73.74301867732328 40.76812081717889, -73.74304408378538 40.76831350229108, -73.74308332610178 40.76861112105267, -73.74311699665793 40.76886648726624, -73.74313089465461 40.76897189291983, -73.74287104458706 40.76901762910287, -73.74286239553773 40.76895203485574, -73.7427729224081 40.768958170207355, -73.74278280836252 40.769033160414786, -73.74272875010038 40.769042675148235, -73.74271941859205 40.76904431754838)), ((-73.74286813915124 40.770311296741916, -73.74284274743461 40.77025000198361, -73.74276082086281 40.77026572746317, -73.74268637334951 40.77012563051523, -73.74270873302319 40.77011876275156, -73.74268980075145 40.77008313422963, -73.74266743990334 40.770090001987036, -73.74266303962574 40.77008172100062, -73.74264988701081 40.770056969099265, -73.74261182148479 40.76998533877292, -73.74255772487118 40.76988353804065, -73.74250362842645 40.76978173638097, -73.74247991512388 40.76973711277642, -73.74245266710072 40.769685834621455, -73.74239684122857 40.769580778210816, -73.74234274527569 40.769478976470964, -73.7423187064737 40.76943373795686, -73.74228864830027 40.769377175602045, -73.74223455385916 40.76927537471148, -73.74218045721794 40.76917357288814, -73.74216368912289 40.76914201580738, -73.74212636310757 40.769071771943686, -73.74207473613671 40.76897461770986, -73.74202064234954 40.76887281671271, -73.74196713547558 40.76877212282578, -73.7419305518464 40.76870327544243, -73.74190008278968 40.768645935820864, -73.74186541242298 40.768580690228326, -73.74183330786201 40.76852027079014, -73.74177910662769 40.768418267716655, -73.74174310896424 40.76835052200267, -73.74172716555233 40.76832051737594, -73.74170011739272 40.76826961679021, -73.74165668264673 40.76818787309482, -73.74162963577929 40.76813697249416, -73.74161224734547 40.76810425048033, -73.74202868445104 40.767990111396394, -73.74196265933939 40.7680708813481, -73.74208056628066 40.76829007492909, -73.7425058721843 40.76908072167998, -73.7426626308732 40.76937213208045, -73.7428256520527 40.76967518087843, -73.74299753256507 40.769994695153414, -73.74310660604925 40.770197455258725, -73.7431498948132 40.77027792563401, -73.74303193512702 40.77033641530444, -73.74286802434273 40.77037508391051, -73.74287127827954 40.770352332654774, -73.74285342154948 40.77031419954953, -73.74286813915124 40.770311296741916)), ((-73.74335651309238 40.77022863662847, -73.74321204714849 40.76996008787876, -73.74360292240478 40.769891920973066, -73.74369113167904 40.770076603238344, -73.74399119681192 40.770058889199994, -73.74400538540027 40.77017940678185, -73.7440134329097 40.77024775604419, -73.7440214792546 40.77031610440217, -73.74403757435938 40.77045280202003, -73.74404562193489 40.770521151277336, -73.74405367524156 40.7705895545765, -73.74414315640668 40.77134954351947, -73.74408336269734 40.77137931026157, -73.74383210842008 40.77111270703983, -73.74357239153211 40.77062993210331, -73.7435703957641 40.770626221174375, -73.74353472594188 40.77055991308768, -73.74349908204778 40.770493657276305, -73.74342779801873 40.7703611474273, -73.74339215551835 40.770294892483996, -73.74335651309238 40.77022863662847)), ((-73.74434938437143 40.77126714743093, -73.74467847178289 40.77118869645435, -73.74488706193067 40.771578684478335, -73.74442501747646 40.77186283307252, -73.74434938437143 40.77126714743093)), ((-73.743265668407 40.770510234446185, -73.74327452715757 40.77050960311837, -73.74331034958442 40.77057619438597, -73.74327542145606 40.7705784245668, -73.743265668407 40.770510234446185)))",Q452,6280,Q452,Q-07A,Q-07A,Q-11,Q-11,"Northern Blvd., 244 St. to 247 St., Douglas Rd., Little Neck Bay",411,19,111,11363,Q,44.295,False,Udall's Park Preserve,Yes,100000036,PARK,20090423000000.00000,19801001000000.00000,,DPR,True,Udall's Park Preserve,Y,Udall's Park Preserve,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q452/,Yes,26,11,3,{338D1059-8552-4B0C-B368-07123DB1193F} +"MULTIPOLYGON (((-73.95115536768618 40.8060852285976, -73.95123770955747 40.80611954903319, -73.95105906860884 40.80636405590477, -73.95097672415767 40.806329734441434, -73.95115536768618 40.8060852285976)))",M356,5010,M356,M-10,M-10,M-10,M-10,W. 120 St. bet. Adam Clayton Powell Blvd. and St Nicholas Ave.,110,9,28,10027,M,0.053,False,P.S. 76 Garden,No,100004823,PARK,20100106000000.00000,20040419000000.00000,203 WEST 120 STREET,DPR,False,P.S. 76 Garden,N,P.S. 76 Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M356/,No,70,30,13,{00FEC630-02C1-4E1D-AAF5-08C1C5088040} +"MULTIPOLYGON (((-73.880962574864 40.763717882389365, -73.88105125831059 40.76370963621037, -73.8810525995013 40.76371797356987, -73.88106029758873 40.76376582895003, -73.881060637282 40.763767939183914, -73.88106079681846 40.76376813565868, -73.88096108876228 40.76374755789659, -73.88095795811043 40.76374646415027, -73.8809551123879 40.763744987083136, -73.88095263205634 40.76374316820158, -73.88095058689893 40.76374105980709, -73.88094903603013 40.76373871959304, -73.88094802314832 40.763736216042986, -73.8809475753696 40.76373361852383, -73.88094770677564 40.76373099999108, -73.88094841249378 40.76372843608208, -73.88094967344726 40.76372599791707, -73.88095145398165 40.76372375479802, -73.88095370305565 40.76372177060798, -73.88095635780073 40.76372010021284, -73.88095934351595 40.763718792162656, -73.880962574864 40.763717882389365)))",Q160,6323,Q160,Q-03,Q-03,Q-03,Q-03,"Astoria Blvd., 25 Ave., 88 St.",403,22,115,11369,Q,0.03,False,O'Sullivan Plaza,Yes,100000374,PARK,20090423000000.00000,19331102000000.00000,,DPR,True,O'Sullivan Plaza,N,O'Sullivan Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q160/,No,35,13,14,{B064F16A-8D2C-42A1-AC22-12020CD3EFE9} +"MULTIPOLYGON (((-73.91760394817662 40.84480439209401, -73.91760839714443 40.84479109138996, -73.91791839569042 40.844825427569816, -73.91794517387576 40.844670168328925, -73.91830829299175 40.844710388137685, -73.918304880048 40.844724098426305, -73.91796082279406 40.84468551935639, -73.91793444169807 40.844839964837426, -73.91760394817662 40.84480439209401)))",X148B1,5715,X148B1,X-04,X-04,X-04,X-04,S/s Cross Bronx Exwy bet. Jesup Av and Macombs Rd,204,16,44,10452,X,0.15,False,Strip,No,100005137,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148B1/,No,77,29,15,{91A226B9-E177-46F2-A7B5-D2F84430AF67} +"MULTIPOLYGON (((-73.95129259401246 40.688010796097814, -73.95134804563145 40.68828876397025, -73.95127019718123 40.68829758578116, -73.95121513630303 40.688019573911895, -73.95129259401246 40.688010796097814)))",B472,5264,B472,B-03,B-03,B-03,B-03,Nostrand Ave. and Greene Ave.,303,36,79,11216,B,0.046,False,Greene Av United Neighbors Association *,No,100004180,PARK,20100106000000.00000,20021120000000.00000,490 GREENE AVENUE,DPR,False,Greene Av United Neighbors Association Inc,N,Greene Av United Neighbors Association *,Greenthumb,Garden,http://www.nycgovparks.org/parks/B472/,No,57,25,8,{230535B4-A7AA-4B2C-94A3-401ADD47D424} +"MULTIPOLYGON (((-73.9140791234728 40.88740184698009, -73.91409655683837 40.88725359852571, -73.91481116092527 40.88730490205577, -73.91491950874155 40.88731859011601, -73.91499783423349 40.88732782737861, -73.91505416801219 40.88733442528967, -73.91511448028199 40.887341974310935, -73.91517363532235 40.887349801600934, -73.91523681633504 40.88735856922311, -73.91531437178433 40.88736971743723, -73.91547119184186 40.88739539628573, -73.91556849957621 40.88741335386002, -73.91567209106574 40.887432470366335, -73.91553326428463 40.88838877589992, -73.91491796452145 40.88833788328029, -73.9149769954832 40.887931281738645, -73.91415266569838 40.8878587560807, -73.91406387855126 40.887850766635445, -73.91396273127368 40.88784166661508, -73.91388442367754 40.88783749299785, -73.91412705733282 40.887529914658735, -73.9140791234728 40.88740184698009)))",X186,4813,X186,X-08,X-08,X-08,X-08,Hudson Manor Ter bet. W 237 St and W 236 St,208,11,50,10463,X,2.58,False,Riverdale Playground,Yes,100004981,PARK,20100106000000.00000,19550630000000.00000,660 W 237 STREET,DPR/DOE,False,Riverdale Playground,Y,Riverdale Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X186/,No,81,34,16,{A8BE22F5-B053-473D-B8A4-26A397D0177C} +"MULTIPOLYGON (((-74.08805627971647 40.61131085033621, -74.08791319499716 40.61122616043399, -74.08787301973949 40.61129576636285, -74.0877714657495 40.61123565848694, -74.08765768306758 40.61116831244878, -74.08771248241722 40.61111395477639, -74.08787705695 40.61095070946571, -74.08798677049404 40.61084187852762, -74.08808885268405 40.610902299192155, -74.08812550127062 40.61083880412773, -74.08816360930949 40.61077277746562, -74.08835587147101 40.610886572853, -74.08831258037617 40.610949532781405, -74.08859216544732 40.6111150118304, -74.08851126552548 40.611232664282916, -74.08834144386996 40.61147963153064, -74.08805627971647 40.61131085033621)))",R032,6577,R032,R-01,R-01,R-01,R-01,Richmond Rd. bet. Pierce St. and Steuben St.,501,49,120,10304,R,0.765,False,Maple Woods,Yes,100004653,PARK,20100106000000.00000,19380505000000.00000,,DPR,False,Maple Woods,N,Maple Woods,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/R032/,No,61,23,11,{47FCAD24-8C5B-4C9B-8ED1-4D115B3513AF} +"MULTIPOLYGON (((-74.17349351132376 40.54900442798154, -74.17301951119687 40.54876302981948, -74.17302719651684 40.54850407585892, -74.17380526451565 40.54839742289473, -74.17382443537623 40.548390676837336, -74.17384578611228 40.54838144381977, -74.17386728461035 40.54837001958929, -74.17388642315397 40.54835766508059, -74.17390820737481 40.54834036266197, -74.17392100063073 40.548328044772575, -74.17393261836443 40.54831493259532, -74.17395045538636 40.548289217108554, -74.17395873996483 40.54827319226606, -74.17397009705658 40.54823932690579, -74.17415143011347 40.547752781191335, -74.17420263284157 40.54776768381588, -74.17424721373425 40.54778066032995, -74.1742735988428 40.54778986781523, -74.17430170909319 40.54779967693046, -74.17433249685718 40.54781042032446, -74.17436071819702 40.54782026887983, -74.17436921981253 40.54782323581891, -74.17440307267117 40.54783504887001, -74.17444713103289 40.54785042330642, -74.17446782560211 40.54785764472151, -74.1744845062745 40.54786346560678, -74.17452948159755 40.54787916010686, -74.1745515220305 40.54788685133823, -74.17485909378546 40.548069096090494, -74.17483516646732 40.54822146048186, -74.17434859010903 40.548176583106574, -74.17431145299578 40.54841055710088, -74.17480302709582 40.5484261157337, -74.17478201410842 40.5485599139848, -74.17452302640534 40.54855124766639, -74.17429285701606 40.54854354471895, -74.17401109303836 40.548555614957074, -74.1740295104213 40.5488674003445, -74.17424665893603 40.54884817527275, -74.17453776779035 40.548870335542766, -74.17349351132376 40.54900442798154)))",R161,5969,R161,R-03,R-03,R-03,R-03,"Annadale Rd. bet. Laredo Ave. and Lamoka Ave., Memphis Ave.",503,51,123,10312,R,2.223,False,Laredo Avenue Parcel,Yes,100004135,PARK,20100106000000.00000,20060712000000.00000,,DPR,False,Laredo Avenue Parcel,N,Laredo Avenue Parcel,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R161/,No,62,24,11,{D1DD23A0-4E35-4EE3-9E09-AFC6AE95FC66} +"MULTIPOLYGON (((-73.91397269643996 40.821663244497, -73.91410968520545 40.821403141861836, -73.9142756636494 40.8214539615249, -73.91413867542799 40.821714064355064, -73.91397269643996 40.821663244497)))",X337,5067,X337,X-01,X-01,X-01,X-01,E. 157 St. bet. Melrose Ave and Elton Ave.,201,17,40,10451,X,0.116,False,Latinos Unidos Garden,No,100005172,PARK,20110712000000.00000,20041217000000.00000,427 EAST 157 STREET,DPR,False,Latinos Unidos Garden,Y,Latinos Unidos Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X337/,No,79,32,15,{9065D92E-15EB-43AB-A6B2-160BBAD50D71} +"MULTIPOLYGON (((-73.97841702074984 40.72693840616718, -73.97833946386069 40.726905631990164, -73.9785084839396 40.72667336117661, -73.97853942376376 40.726686436934, -73.97858603945753 40.72670613614108, -73.97841702074984 40.72693840616718)))",M397,5518,M397,M-03,M-03,M-03,M-03,E 11 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.054,False,,No,100008368,PARK,20140724000000.00000,20021120000000.00000,626 EAST 11 STREET,DPR,False,11 BC Serenity Garden,,11 BC Serenity Garden,,Garden,,No,74,27,12,{493CFC4C-F26E-4DCD-AE47-B788502EC8D6} +"MULTIPOLYGON (((-73.91336194036944 40.7485046152701, -73.91371147793947 40.748545862413316, -73.9136584660092 40.74880950992314, -73.91330882822506 40.74876871189897, -73.91336194036944 40.7485046152701)))",Q516,84532,Q516,Q-02,Q-02,Q-02,Q-02,39 Ave. bet. 50 St. and 51 St.,402,26,,11377,Q,0.229,False,,No,100042698,PARK,,20190913000000.00000,50-02 39 AVENUE,DPR,False,Lt. Michael R. Davidson Playground,,Lt. Michael R. Davidson Playground,,Undeveloped,,No,30,12,14,{794506FA-BE1F-4D2D-A6FB-FFE6A481B97D} +"MULTIPOLYGON (((-73.91687127666702 40.67742400290799, -73.9168749818858 40.67738458463889, -73.91723675782313 40.6774047540259, -73.91723213808606 40.6774540358901, -73.91687035005582 40.677433865579644, -73.91687127666702 40.67742400290799)))",B498,6603,B498,B-03,B-03,B-03,B-03,Louis Pl. between Herkimer St. and Atlantic Ave.,303,41,81,11233,B,0.041,False,Louis Pl Friends,No,100004075,PARK,20100106000000.00000,20021120000000.00000,13 LOUIS PLACE,DPR,False,Louis Pl Friends,N,Louis Pl Friends,Greenthumb,Garden,http://www.nycgovparks.org/parks/B498/,No,55,25,8,{C670A900-9656-42C6-8FF7-403E69C19755} +"MULTIPOLYGON (((-73.87232106968362 40.76231431071554, -73.87243548196986 40.7622138402082, -73.87253199186037 40.76235216018833, -73.87232106968362 40.76231431071554)))",Q070,6152,Q070,Q-03,Q-03,Q-03,Q-03,"Astoria Blvd., 97 St. and Jackson Mill Rd.",403,21,115,11369,Q,0.032,False,Trolley Car Triangle,Yes,100000396,PARK,20090423000000.00000,19280915000000.00000,,DPR,True,Trolley Car Triangle,N,Trolley Car Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q070/,No,35,13,14,{46652EA9-C3A6-44B5-BA98-DD81432415CF} +"MULTIPOLYGON (((-73.87929076244706 40.72932985545897, -73.88038139165951 40.729107700572825, -73.88052366944913 40.72926946991902, -73.87934800821594 40.730135897468514, -73.87878996959282 40.72955262241142, -73.87929076244706 40.72932985545897)), ((-73.87879543464287 40.72977861550054, -73.87880064293562 40.729774816330426, -73.87930721318509 40.73017344647902, -73.87930200607379 40.73017724567307, -73.87924866169878 40.730135269235575, -73.87919953382148 40.73009661017046, -73.87914848633096 40.730056438915284, -73.87909887392404 40.73001739838271, -73.87904914336879 40.72997826495191, -73.87899779936089 40.72993786098624, -73.87894825332548 40.72989887268721, -73.87889738816969 40.72985884739353, -73.87884715784398 40.72981931892569, -73.87879543464287 40.72977861550054)))",Q360J,5544,Q360J,Q-04,Q-04,Q-04,Q-04,"Queens Midtown Exwy., 57 Ave. bet. 84 St. and 82 St.",404,25,110,11373,Q,1.633,False,Crowley Playground,Yes,100000166,PARK,20090423000000.00000,19531229000000.00000,,DPR,False,Crowley Playground,Y,Crowley Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q360J/,No,30,16,6,{13DCF94F-F939-41AB-B9A6-325290234E85} +"MULTIPOLYGON (((-73.90940657813228 40.66516627688833, -73.90876366872497 40.66526211234019, -73.90872953165972 40.665127357196745, -73.90937243863463 40.66503152193316, -73.90940657813228 40.66516627688833)))",B227,5093,B227,B-16,B-16,B-16,B-16,Rockaway Ave. bet. Blake Ave. and Dumont Ave.,316,41,73,11212,B,0.208,False,Ps 125 Playground,Yes,100003833,PARK,20100106000000.00000,19470313000000.00000,610 ROCKAWAY AVENUE,DPR,False,P.S. 125 Playground,Y,P.S. 125 Playground,JOP,Playground,http://www.nycgovparks.org/parks/B227/,No,55,20,9,{0EAB6A84-66F1-415D-8EF9-D259DBA0686C} +"MULTIPOLYGON (((-73.95661676611525 40.71026986933058, -73.95636287922412 40.710174700118664, -73.95639022368442 40.710124522300816, -73.95641756692018 40.710074344475736, -73.95644491129875 40.710024165743754, -73.95647225563614 40.70997398700493, -73.95649959756321 40.70992381186043, -73.95652694181773 40.7098736340085, -73.95654765294272 40.70983462448563, -73.95656836522689 40.70979561495935, -73.95658907630221 40.70975660722967, -73.95660931934191 40.709718479118926, -73.95662178739087 40.70969687605501, -73.95662399689375 40.709693061422215, -73.95691506731518 40.70980028832311, -73.95661676611525 40.71026986933058)))",B223QC,4642,B223QC,B-01,B-01,B-01,B-01,"Marcy Ave., S. 3 St. and S. 4 St.",301,34,90,11211,B,0.137,False,Marcy Green North,Yes,100004505,PARK,20100106000000.00000,19520206000000.00000,111 MARCY AVENUE,DPR,Part,Marcy Green North,Y,Marcy Green North,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223QC/,No,53,18,7,{4BF0402C-E60B-4AFF-8FAF-8ACE84368501} +"MULTIPOLYGON (((-74.15395112636446 40.57064970293243, -74.15395576005653 40.57063421577756, -74.15395805175847 40.570623248800395, -74.15395763311015 40.570609666725794, -74.15395449626182 40.57059313726999, -74.15394880422481 40.57057367822492, -74.15393812326961 40.570548282392586, -74.15391008357318 40.57051300493133, -74.15388095573181 40.57048056737927, -74.1538684559972 40.570468415313165, -74.15385639373318 40.57045597809352, -74.15385138148838 40.57045016290512, -74.15384639782765 40.570445477838504, -74.15384131107666 40.57044217881953, -74.15383437341383 40.570438703974816, -74.15381265747713 40.5704289893613, -74.15376651083804 40.57040808959469, -74.15370558473099 40.570381436313056, -74.15367421059204 40.57036681682291, -74.1536492490234 40.57035380249001, -74.15361395329192 40.57033465858216, -74.15358933241457 40.5703249703242, -74.15355773676514 40.57031465651397, -74.15352246194198 40.57030407565322, -74.15350130836296 40.57029956527045, -74.15348385869724 40.57029220697392, -74.15346408260592 40.570282785975735, -74.1534435337197 40.57027572718602, -74.1534268673897 40.57027161603229, -74.15340749459632 40.57027016504268, -74.15338926661617 40.57027150325168, -74.15336528057527 40.57027494647095, -74.1533513385113 40.57027644014595, -74.15333700758093 40.57027675554963, -74.15332385655132 40.570277655619115, -74.15331181542626 40.570280029267686, -74.15329901459185 40.57028378263436, -74.153275320434 40.57029194690393, -74.15325857243512 40.57029856110117, -74.15324665870044 40.57030344614036, -74.15323527739321 40.5703072291246, -74.15321410188857 40.57031220125854, -74.15319123953664 40.57032005011762, -74.15315500765904 40.57033806662822, -74.15310397834703 40.57036618694233, -74.15306869715795 40.570387851990915, -74.15305281559776 40.57040051383757, -74.15303701852761 40.57041552144004, -74.15302333926492 40.57043174283002, -74.15301215742144 40.57045508225237, -74.15299625388111 40.570489094694416, -74.15298347643568 40.57051649220863, -74.1529721717207 40.570544976496286, -74.15297086288295 40.57054842365216, -74.15256467376375 40.57035904107814, -74.15225055474885 40.57021258382698, -74.15178131993366 40.5699938033027, -74.15211211659431 40.56914164266927, -74.15182566844474 40.569205278192975, -74.15090041890869 40.56854870170121, -74.15196419266111 40.567791142702454, -74.15242533979223 40.56736961127764, -74.15274966324282 40.56707320264345, -74.15320443028072 40.566657567779146, -74.15335463422109 40.566520286506346, -74.1535064892092 40.56640700636108, -74.15353600242841 40.56638499046789, -74.1535746621702 40.56635615165685, -74.15363144990218 40.56631378879566, -74.15366566655935 40.56628826352991, -74.15399099194723 40.56607463180712, -74.15462128495399 40.565660730681515, -74.15481531929044 40.56552571272913, -74.15499782998488 40.565343245042406, -74.15506030536488 40.56525160328276, -74.15521506560904 40.56497276412601, -74.15559794424128 40.565110231091815, -74.15569429631798 40.56495415183326, -74.15578034520321 40.564814760616244, -74.15597595204056 40.56490265401691, -74.15601943204217 40.564846375088266, -74.15626300693332 40.56495552010122, -74.15642001299496 40.56478648827132, -74.15588612245445 40.56449806668449, -74.15607822570486 40.564205177865965, -74.15575418319483 40.56406230161008, -74.15588756074466 40.563865553702215, -74.1560762735661 40.56362636697819, -74.15657851468089 40.56314802061295, -74.15674112801545 40.56299711277351, -74.15674693020895 40.5630101039597, -74.15706210014058 40.562751911129716, -74.15713613067231 40.562719219808464, -74.15716104954251 40.562709987733854, -74.1579887350949 40.56240334849973, -74.15898572596669 40.56211019308576, -74.16026970751973 40.56176040809768, -74.1604484688654 40.56171754828436, -74.16051294804511 40.561694329958875, -74.16078172504807 40.56159754451151, -74.1610125416986 40.56152169487522, -74.16100944217662 40.561588321106946, -74.16428880327265 40.56032328417407, -74.16440864925194 40.560292239911284, -74.16453104490871 40.56026765675522, -74.16465539429741 40.5602496553222, -74.16478108840266 40.560238322029825, -74.16490751341475 40.56023371358776, -74.16507686651364 40.56069159818283, -74.16519902763116 40.56074530287998, -74.16547504846064 40.56068612633498, -74.16530325576123 40.56026314666495, -74.16666559330216 40.56054087439545, -74.16667003636081 40.560542727536664, -74.1666729609697 40.56054410470133, -74.16710904938807 40.56062482646653, -74.16727132799221 40.560661057992675, -74.16958632892722 40.56117788603227, -74.16959404822121 40.56118000798329, -74.16959853779943 40.56118153225022, -74.16960436722046 40.56118386051028, -74.16960898710653 40.56118601675444, -74.16961367635922 40.56118852049947, -74.16961745586073 40.56119080135653, -74.16962149273664 40.56119353479856, -74.16962524064544 40.561196393840454, -74.16962775396323 40.561198513571746, -74.16963029380196 40.561200847589284, -74.16963268623614 40.56120325656819, -74.16963444572653 40.56120517839611, -74.16962915192076 40.56146495408209, -74.16961941574283 40.56194273592944, -74.16958429818176 40.56285624193402, -74.16955894598482 40.563515684870445, -74.16955375605646 40.563571393728424, -74.1695313731722 40.56381165224515, -74.16953110428791 40.56383086358388, -74.16951965055806 40.5646475674679, -74.16950815517947 40.565710900437985, -74.16950438832608 40.56605947921198, -74.16945844937169 40.56607372128603, -74.16943354882814 40.56608069477668, -74.16943055078988 40.5660812124992, -74.16942804232842 40.56608154309048, -74.16942051504843 40.56608178742958, -74.16939412283826 40.56608400562873, -74.16938534159236 40.56608382136298, -74.1693749223862 40.56608265613658, -74.1693612310985 40.56608057719642, -74.16934913796817 40.566079149680895, -74.16934121823815 40.56607876692619, -74.16932533339667 40.56607966385457, -74.16931593833998 40.56608050168575, -74.16930465536731 40.566082373401976, -74.1692985601754 40.56608343960424, -74.1692968694598 40.56608354115412, -74.16929301090293 40.56608325326937, -74.16928156006843 40.566080393863025, -74.16925151729234 40.56611175215249, -74.16672076298346 40.56650031770774, -74.16670678650749 40.566398628904466, -74.16664665421808 40.56645743140208, -74.16664368531708 40.5664663311121, -74.16664024985911 40.566474236416894, -74.1666375764805 40.566479946933, -74.16663403441554 40.566483933300056, -74.16662994679295 40.56648791865733, -74.16662288754857 40.56649261343756, -74.16661687078378 40.56649816940976, -74.16661298960314 40.56650349264966, -74.16661114435195 40.56650934424712, -74.166609348931 40.56651244916584, -74.16660427421945 40.566516004601645, -74.16659329405813 40.56652145610625, -74.16657580776926 40.56652942951451, -74.16656655122887 40.56653234353426, -74.16655594770513 40.56653493351582, -74.16654620901201 40.56653628131664, -74.1665380560685 40.56653615265529, -74.16652499370495 40.56653388605629, -74.16650730096634 40.56653199538397, -74.16649506465126 40.56653140256378, -74.16645290293468 40.566531212421566, -74.16639813751452 40.566532267940595, -74.16635408833481 40.56653331691949, -74.16631947926477 40.56653640631449, -74.16627974208649 40.56654248206488, -74.16624491182611 40.56654542587228, -74.16620041882926 40.56655035040091, -74.16616684689187 40.56655548244483, -74.1661184711727 40.566564657641244, -74.16567688077801 40.56676318345419, -74.1656788200551 40.56676568772325, -74.16568053595586 40.566770970439286, -74.1656806766711 40.56677866613717, -74.16566919023626 40.56680571921638, -74.16565738265382 40.5668270805285, -74.16565001637848 40.566836576399005, -74.16564167385312 40.5668442978383, -74.16562691601506 40.56685261837243, -74.1656044329484 40.56686378309935, -74.16556631671388 40.56687266951071, -74.16553108917196 40.56687787129421, -74.16550021694019 40.566887483875014, -74.16545486813249 40.56689932359096, -74.16541432907415 40.5669045338898, -74.16536414560935 40.56691343761087, -74.16532844571756 40.56692342360972, -74.16530964298266 40.56693301876677, -74.16529789265915 40.56693987517649, -74.1652883372896 40.566945192128124, -74.16527442804347 40.56695335830616, -74.16526995001747 40.56695662015302, -74.16526483378158 40.56696061684717, -74.16526132258753 40.56696566935073, -74.16525665237593 40.566977643168286, -74.16524338445474 40.567037894880436, -74.16523916527782 40.567063216554615, -74.16523918265248 40.567070240637335, -74.16524221715954 40.567083957596296, -74.16524407365812 40.56709071337796, -74.1652476293326 40.56710363892467, -74.16525178741499 40.56713858958536, -74.16525354481759 40.5671568398312, -74.16525457571358 40.567165432073665, -74.16525482203066 40.56717717008383, -74.16525399723139 40.56718506078419, -74.16525087517799 40.56720374129729, -74.16524883793832 40.567214144410016, -74.16523775263376 40.5672707494496, -74.16523888841765 40.567312674533774, -74.16523946413191 40.567319613163654, -74.16524210640426 40.56735139074771, -74.16524239195773 40.56738901613965, -74.16524114520602 40.56741394000691, -74.16523824859952 40.567432108695876, -74.16523359526971 40.567452832004086, -74.16522380971483 40.56751121010931, -74.16521606743595 40.56753106885158, -74.16521342732234 40.567542178843375, -74.16521161953561 40.56755751020713, -74.16521248324338 40.56756868990302, -74.1652174643535 40.567591205809144, -74.16522842297537 40.567624194345946, -74.16524226073265 40.56764960621179, -74.16525323047502 40.56766225903878, -74.1652575548465 40.56766655823506, -74.1652593732439 40.567669838938876, -74.1652614554073 40.567675680360786, -74.16526581959683 40.567698460106, -74.16526781724659 40.56770689336486, -74.16527058687959 40.567713292123976, -74.1652902235518 40.56774569993604, -74.16529749680063 40.56776488239283, -74.1653001210751 40.56777600642328, -74.16529939804403 40.56778112065368, -74.16529698723139 40.56778611033857, -74.16528999097208 40.56779821808008, -74.16528092060209 40.56780917433052, -74.16527474998446 40.567813731768894, -74.16527070700371 40.567816257259274, -74.16526559671138 40.567818864432034, -74.16525782296961 40.56782171857859, -74.16518505363095 40.567843639403904, -74.16517863556832 40.56784507596777, -74.16517074344381 40.56784590319337, -74.16514198332756 40.567847882477686, -74.16510966772378 40.56785039547456, -74.16509481730424 40.56785051857892, -74.16507969832328 40.56785043854833, -74.16505782704449 40.567848432086436, -74.16502748464178 40.56784566964178, -74.16497673689243 40.56784060683548, -74.16496783036196 40.56783998745734, -74.16496130603423 40.56783999682711, -74.16495273146687 40.5678418237017, -74.16494615611164 40.56784412318291, -74.16493615562872 40.56784953529904, -74.16492709149112 40.56785778092751, -74.16492295036012 40.56786647515353, -74.16491432363523 40.56789548809647, -74.16490150672223 40.567930549587246, -74.16489446027626 40.567941018418146, -74.16489093035975 40.56794425907726, -74.16488076982222 40.56795037833156, -74.16487882975643 40.5679523406621, -74.16487271236153 40.56796364654831, -74.16484693493378 40.56801054424442, -74.16483333496892 40.56802739190051, -74.16482150143601 40.56804130310481, -74.16481172946169 40.568060854049335, -74.16480840702589 40.56806826294553, -74.16479856684022 40.56807787847744, -74.16479054071695 40.56808471508268, -74.16478584233724 40.568087729581535, -74.16477811028095 40.568090748432084, -74.16477235086157 40.568093995887764, -74.16476438956929 40.56809839287177, -74.16475704543494 40.56810069524584, -74.16474234860615 40.56810230845567, -74.16472345741528 40.56810301814667, -74.16470422910015 40.56810253782191, -74.16469606020244 40.568102240654014, -74.16469098784361 40.568102529791375, -74.16468554912868 40.56810366234661, -74.16467845429216 40.56810697745057, -74.16464343058391 40.56812474191368, -74.16460375032128 40.56815196406491, -74.16458016433181 40.56817201206283, -74.16455509752029 40.568197821044336, -74.16455465192777 40.568201494029886, -74.16455348113352 40.568206069481285, -74.16454679257058 40.56821516447487, -74.1645399960095 40.56822116541356, -74.16453302402033 40.5682269000473, -74.16451994051569 40.56823437604701, -74.16449268843581 40.56824699993363, -74.164465427971 40.568257181597794, -74.16445652842607 40.56826325758465, -74.16442948472944 40.568283309601085, -74.16441312343854 40.568293816950145, -74.16439871428267 40.568301980134024, -74.16438224259615 40.568309858999775, -74.16436541071035 40.568318687533456, -74.16434234769098 40.56833152241691, -74.16431905201895 40.56834675392954, -74.1642969936422 40.568359477502476, -74.16427773234739 40.56837106510911, -74.16424444338215 40.56839325936036, -74.16422165343886 40.56840623251005, -74.16418548542671 40.56842458110928, -74.16416191622461 40.56843329046737, -74.16414648341703 40.5684396288146, -74.16412906726076 40.56844811234622, -74.16408611668089 40.568468109563234, -74.16406102453591 40.56847795663993, -74.16402231409091 40.56849105784875, -74.16397045092346 40.568508024869374, -74.16391018777611 40.56853305816192, -74.1638754136083 40.568549704480134, -74.16384032194591 40.56856931397281, -74.16382914953867 40.56857509237666, -74.16381420426661 40.568582831203, -74.16379019430475 40.56859242903218, -74.16375442750986 40.568607378336054, -74.16373198944423 40.568617517830184, -74.16368305137256 40.56863311985569, -74.1636460618482 40.568645471048065, -74.16363251826078 40.568651282528165, -74.16360885884843 40.568663240099845, -74.16359189415341 40.568671440141344, -74.163528507569 40.568691777833486, -74.16345378124689 40.568715665292856, -74.16338322083767 40.568734631704835, -74.16332979971511 40.56874773289009, -74.16331034088167 40.56875157158445, -74.16328538589764 40.56875530101985, -74.16325066980352 40.56876151356617, -74.16321758882317 40.56876513836721, -74.16319036446855 40.568769481563436, -74.16315155486713 40.56877693541746, -74.16311088527937 40.568785812029724, -74.16308157394903 40.56879195921649, -74.16304250545429 40.56880318030331, -74.1629973211208 40.56882118921835, -74.16299011926172 40.56882426572997, -74.162868601024 40.56886278070471, -74.16281051957347 40.56888641450916, -74.162731319144 40.56891741029077, -74.16269643475414 40.56893021656229, -74.16266877413098 40.568937783236706, -74.16262922576864 40.56894986396436, -74.16260923897438 40.56895370238671, -74.16259286040186 40.56895583910649, -74.16258211823158 40.568956026311575, -74.16257253963879 40.56895443422974, -74.16256478062581 40.56895276662936, -74.1625572117891 40.568950149604476, -74.16254885396451 40.5689465007918, -74.16254010794503 40.56894395387158, -74.16252826183592 40.568942281245555, -74.16251088086511 40.56894109552892, -74.16249569471275 40.56894165822876, -74.16248091633847 40.568942372538785, -74.1624700968951 40.568942347318476, -74.1624623825884 40.5689415801744, -74.16244207549506 40.56893996633309, -74.1624231496172 40.568937687747734, -74.16240891419359 40.56893683706636, -74.1623992561393 40.56893655895046, -74.16239264998514 40.56893695641677, -74.16238670374916 40.568938241769345, -74.16236695811048 40.56894558916004, -74.16225705938153 40.56898995849428, -74.16222844711845 40.56900588959557, -74.16221931713149 40.56901153528205, -74.16218107596809 40.569029480938774, -74.16211624251447 40.5690568367944, -74.16205602702553 40.56908788816257, -74.16203494918769 40.56909764358201, -74.16199853595592 40.569110718353436, -74.16192377965216 40.56913386012212, -74.16187918131328 40.569143424434486, -74.1618502151293 40.569146404569246, -74.16183449306916 40.56914610523239, -74.16180194841999 40.56914358547856, -74.16178149250527 40.56914002839408, -74.16177044631195 40.569136595835275, -74.16175957478708 40.56913068117869, -74.1617494989142 40.56912270139417, -74.16174195155405 40.56911578066975, -74.16173511063842 40.569107018274174, -74.1617265658804 40.56908711786492, -74.16172290887617 40.56907843833697, -74.16171601839164 40.569074563166836, -74.16170683929897 40.56907360442095, -74.16170123663967 40.5690753611302, -74.16169695559532 40.569078171395695, -74.1616883612148 40.56909289359205, -74.16168488062047 40.56910684314254, -74.16168383582408 40.56911623710351, -74.16168205764484 40.5691256131856, -74.16167985105882 40.56913021798129, -74.1616765321994 40.56913341501864, -74.1616734569218 40.569135767019304, -74.16166902788292 40.56913793361567, -74.16166299495698 40.56914000791382, -74.16164553908273 40.56914350761049, -74.16162928009155 40.56914775665942, -74.16161818254237 40.56915140409677, -74.16161500851764 40.56915199030254, -74.16161071563216 40.56915186216382, -74.16159624874169 40.569150045442555, -74.16155902319984 40.56914565190564, -74.16154148422704 40.56914311457439, -74.1615165423627 40.56913820755853, -74.16150579278765 40.56913681064737, -74.16148957853439 40.56913563304158, -74.16147975782985 40.569135006573305, -74.16147214222654 40.569135017278754, -74.16146503806914 40.56913507589324, -74.16145422117678 40.56913416445561, -74.16144180204549 40.56913237635509, -74.16142551140672 40.56913037486594, -74.1614140634716 40.56912830263233, -74.16138729186795 40.56912170607043, -74.16135127536806 40.56911379511252, -74.16132996754911 40.56911002752061, -74.16131270301243 40.56910767617798, -74.16129288070118 40.56910583632112, -74.16124845868296 40.56910384098418, -74.16116844715053 40.56910105447784, -74.1609400680956 40.56910299562574, -74.16081910225807 40.569099426957706, -74.16072875527297 40.56910046744309, -74.16069984458892 40.56909806026128, -74.16068137037458 40.569095026116045, -74.16066530077129 40.56909015153079, -74.16065323886156 40.56908221315071, -74.16064115517028 40.56906570719186, -74.16063524885449 40.569053656502646, -74.16062945584325 40.56904649010978, -74.16062024059413 40.56903981748777, -74.16061069534882 40.56903292559797, -74.16060349116701 40.56902526768843, -74.16059637265488 40.56901542137955, -74.16059212160062 40.56900812855637, -74.16058823460959 40.56900490920545, -74.16057976109425 40.56899976013442, -74.16055075447018 40.56898296443857, -74.16054251010155 40.56897783485609, -74.16053714711836 40.568974667995775, -74.16052850924359 40.568970900558135, -74.16051101469363 40.568966665515305, -74.16048651114889 40.56896375142882, -74.16046112995976 40.568960246016744, -74.16041799416519 40.56895583515137, -74.16039391088175 40.568952860122984, -74.16037923341317 40.56895232949422, -74.16036174560948 40.56895286630856, -74.16035285843235 40.56895395754558, -74.16033858190214 40.568954174689374, -74.16030012538329 40.56895343679901, -74.16028142729247 40.56895304504633, -74.1602709805048 40.56895379265108, -74.16024954259177 40.568957280581444, -74.16021798803664 40.56895982986181, -74.16018193227733 40.56896303018726, -74.1601582742245 40.568966499583894, -74.16014412685969 40.56896887508511, -74.16012710309369 40.568968898817296, -74.16011934344007 40.568968909633895, -74.16011297602539 40.56896988927683, -74.16010023992854 40.5689713199544, -74.16006397167226 40.56897060955294, -74.16003564489004 40.56896937927887, -74.16001380071505 40.56896940970991, -74.15997805300582 40.568970575253175, -74.15995828168441 40.568970270492564, -74.15993400259886 40.56896886345685, -74.1599093591817 40.56896867893754, -74.15988857058132 40.568968154051575, -74.15987795827377 40.568967836528266, -74.15986211357014 40.5689680801096, -74.15985063255802 40.56896942526388, -74.1598298537702 40.568973001350784, -74.15978022248804 40.56898463855884, -74.1597632324121 40.56898640650982, -74.15974102464212 40.56899241598927, -74.15964304755524 40.569019951612376, -74.15953138813744 40.569046350779246, -74.15950579257661 40.56905246487644, -74.15948206547476 40.56905770736595, -74.1594629268392 40.569064222228334, -74.15944262456848 40.56907302423856, -74.15943059237776 40.56908044416612, -74.15942322867718 40.5690845661895, -74.15941478249373 40.569087867534066, -74.15937182829592 40.56910067588885, -74.15929415063147 40.56912526174079, -74.15927744746334 40.569131981216366, -74.15926781649442 40.56913415403235, -74.15925846564033 40.56913395177116, -74.15924684782496 40.56913439922991, -74.15923771900678 40.56913569423455, -74.15923090177196 40.56913771996319, -74.15922561936293 40.569140591859785, -74.1592192243786 40.569143889446124, -74.15919975137702 40.56914985810849, -74.15911597584189 40.56918156284664, -74.15907874696987 40.56919603994083, -74.15904854945234 40.56920716273276, -74.15903410528296 40.56920940883227, -74.159013195211 40.5692124527419, -74.15900107623351 40.569212217370016, -74.15899079633449 40.56921116357457, -74.15898182368572 40.56920960997784, -74.15897397085038 40.569206701339596, -74.15896658227372 40.56920336520887, -74.15896274516811 40.56920023848826, -74.15895805608163 40.569192910190125, -74.15895371544997 40.56918264119106, -74.15891023842485 40.569192168578425, -74.15890143658454 40.56919589632615, -74.15888702336056 40.5692042029066, -74.15886924615873 40.569216656558964, -74.15886326078844 40.569222380477456, -74.15885840285003 40.569228959237, -74.15884167607013 40.56924464972509, -74.15882406998132 40.56926153192227, -74.15880891718176 40.569282624287794, -74.15879057001074 40.56930370936018, -74.15878399836224 40.56931069842388, -74.15877704569947 40.56937599169032, -74.15875619047557 40.56942251288804, -74.15871843000025 40.56947775112222, -74.15866874908234 40.56952142954403, -74.15858093851574 40.56957935828674, -74.15852204267294 40.56959163450544, -74.15850573120365 40.56958385035163, -74.15849193329261 40.56957929741797, -74.15848340810906 40.569577717950196, -74.15847381588641 40.56957684776757, -74.15846010875862 40.56957671178632, -74.15844686146026 40.56957726587291, -74.15842193607388 40.56957878071622, -74.15839264062207 40.56957601507476, -74.15836547972289 40.56956953811584, -74.15834569456196 40.56956247014402, -74.1583204227238 40.56954635674001, -74.15830473950227 40.56953706511128, -74.15828352431708 40.569524033112735, -74.15825524445385 40.56951029222334, -74.15823393680063 40.56950059138981, -74.15821710690341 40.56949776530646, -74.15820439676364 40.56949525683583, -74.15819360993444 40.56949258452086, -74.15818050374693 40.56948839170823, -74.15816990057594 40.56948597939023, -74.15816060978538 40.56948672521112, -74.15814939299027 40.569486496611894, -74.1581333664725 40.56948431959021, -74.15811734166954 40.56948336547867, -74.1581019569379 40.56948192059761, -74.15808270985485 40.56948064222404, -74.15806917906971 40.56947916416934, -74.15805674146469 40.56947754232569, -74.15804121984216 40.5694746387723, -74.15802733044879 40.56947132683395, -74.15801447023674 40.56946677525455, -74.15800031336224 40.569459215898306, -74.15798770024574 40.56945178769501, -74.1579775554649 40.569444460556795, -74.15796957653949 40.56944015980968, -74.15795954027813 40.56943527564852, -74.15795027885228 40.56943195733682, -74.1579384496391 40.56942942691331, -74.157930475815 40.56942728201647, -74.1579201811936 40.5694220055776, -74.15790859388039 40.569413400768546, -74.15789057479878 40.56940206089539, -74.15787020094578 40.56938969945671, -74.15785212360932 40.56937319153707, -74.1578338325068 40.56935617060831, -74.1578116607098 40.56933554389759, -74.1577893673266 40.56932343002479, -74.15777259574516 40.56931476838578, -74.15775540095719 40.569305917314445, -74.15774256894746 40.56929528441172, -74.15772740519787 40.56928287977184, -74.15771135789156 40.5692673695273, -74.1576912970383 40.569253001254516, -74.15767344843283 40.5692373052674, -74.15765385775076 40.569222502288994, -74.15763539568992 40.56921006164001, -74.15762241653107 40.5692021115936, -74.1576144808386 40.56919759373571, -74.15760384672244 40.56919204757635, -74.15759329990203 40.56918796375102, -74.15758820141117 40.569186734323, -74.15758233290738 40.56918597782693, -74.15757670455105 40.569185901798974, -74.15756938757073 40.56918685468712, -74.15756383689067 40.56918866965723, -74.15755864000623 40.569191785402374, -74.15755580935395 40.56919427563809, -74.15751629035472 40.56918520930499, -74.15745466828253 40.5693965149348, -74.15724312266548 40.5696937469465, -74.15723125635425 40.569690514991024, -74.15721196275852 40.56968454479332, -74.15720044833452 40.56967979586685, -74.1571814827959 40.56966970800899, -74.15715687498324 40.56965263888302, -74.15713596456295 40.56963554938514, -74.15711866261572 40.56962080171928, -74.1571061395345 40.569610453790055, -74.157036529346 40.569562595948994, -74.15696361797178 40.56952049243688, -74.1568960846129 40.56948294540023, -74.15686546388442 40.56946844101844, -74.15684360809098 40.569460575047835, -74.15681740977075 40.56945357050138, -74.15678998301873 40.56944744653935, -74.15675169504127 40.56944012978669, -74.15672001205493 40.569434901335896, -74.15668964401316 40.569430428425306, -74.15667775483705 40.569428996595896, -74.15666447814073 40.56942909395018, -74.15664742695358 40.56943459600582, -74.15663036511312 40.56944512481115, -74.15658771905191 40.569477366861314, -74.15655980847592 40.56950413702712, -74.15652668200906 40.56954762355842, -74.15650435522022 40.569583682234324, -74.15648487219359 40.56961678330571, -74.15646631936896 40.56965074941292, -74.15644916672713 40.56968657950037, -74.15643319926781 40.56972373714792, -74.15641819781766 40.56976192097813, -74.15640647538314 40.56980196803308, -74.15640177299751 40.56983072013395, -74.15639766265025 40.56991512665162, -74.15639477642809 40.57003413332174, -74.15639293815777 40.5701271196597, -74.15638491387128 40.57020078732503, -74.15638112149205 40.57022934907459, -74.15637359186125 40.57027622721139, -74.15636513956751 40.57031488299815, -74.15635176848751 40.57036756487103, -74.15634242894359 40.570402033516054, -74.15633404354958 40.57042589446415, -74.15631941219166 40.570456293626734, -74.15630105768253 40.57049036119383, -74.15629021364222 40.57051172652367, -74.15627524776289 40.57053796750554, -74.15625733331298 40.570560260987385, -74.15623088439317 40.570582090596034, -74.15620552772945 40.57060135941787, -74.15619143495873 40.57061365455343, -74.15616941400052 40.57063073595622, -74.15615034927171 40.57064040200584, -74.15612228617026 40.57065070164527, -74.1561028934584 40.570656970447544, -74.15607834575378 40.57066263119132, -74.15605935459425 40.57066436979393, -74.15604171012279 40.57066477648698, -74.15602253413249 40.57066473949699, -74.15599987725489 40.570663394263796, -74.155978904654 40.57066014302687, -74.15595543214891 40.570655424620846, -74.15593326154435 40.570650926872766, -74.15591281332698 40.57064465904981, -74.15589538768808 40.57063560449541, -74.15588529982887 40.57063038162564, -74.15587358534009 40.5706279832113, -74.15585781322486 40.570627625490246, -74.1558435129582 40.57062744497499, -74.155829676116 40.570626972959296, -74.15581259026244 40.57062587408015, -74.15579944187533 40.57062387203357, -74.15578746742659 40.57062089852677, -74.15577790342647 40.57061901318766, -74.1557663034733 40.57061863178566, -74.15575409019142 40.57062009279011, -74.15573486634473 40.570625356314004, -74.15570918482926 40.570638066033816, -74.15568684107168 40.5706530027281, -74.15565631071493 40.57066776860511, -74.15562963664306 40.57067466855667, -74.1556044645139 40.57067844434329, -74.1555712739334 40.5706822426909, -74.15555413120624 40.57068309529047, -74.1555348910787 40.570682395518645, -74.15550734769992 40.57067757446979, -74.15547206350737 40.57066724276535, -74.15544666628067 40.570660561912305, -74.15541935434949 40.57065471302878, -74.15539307054074 40.57065069261718, -74.15537162308621 40.570646359479326, -74.15535538774249 40.57064079367255, -74.15534426364732 40.57063480310742, -74.15533691602351 40.570641449921304, -74.1553288852937 40.570643806651255, -74.15531999582853 40.570643537706914, -74.15530579068434 40.57064871602727, -74.15529091731153 40.57065854286471, -74.15526926765853 40.57066476504816, -74.15525434034015 40.57066916898523, -74.15525141150526 40.57067012750136, -74.15524892620745 40.570671382591556, -74.15524688414332 40.57067280368005, -74.15524286765175 40.570677817834635, -74.15523851583322 40.57068133216564, -74.15522938020509 40.570686427080744, -74.15521193509349 40.57069386018248, -74.15519284187197 40.57070251211895, -74.15518066367659 40.570710954794244, -74.15516762384588 40.570723656319686, -74.15514976309954 40.57074281302278, -74.15514111520739 40.570750462064716, -74.15512911621242 40.57075522224106, -74.15511882826335 40.570752303120194, -74.1551085363374 40.570745128117245, -74.15509540565824 40.57073142633052, -74.15508560456583 40.57071490680346, -74.15507773350622 40.570691434409206, -74.15507377707188 40.57067349046305, -74.1550689300046 40.57065291007794, -74.15506633330048 40.5706448376647, -74.15506251084821 40.57063577092407, -74.155055549868 40.57062432202542, -74.15504707282149 40.570615012121216, -74.15503680005953 40.570606923051855, -74.15502685483567 40.57060003213988, -74.15501058045794 40.57058729724836, -74.15499969360889 40.57057462172405, -74.15498745268397 40.570555520069945, -74.15497603996468 40.570538104883234, -74.15496435594576 40.57052336732559, -74.15494314298365 40.570503510521455, -74.15492071224728 40.57048863616591, -74.15489582572151 40.57047806152778, -74.15488188624187 40.570473033774526, -74.15486971650385 40.570469842508096, -74.15485509287062 40.5704682070555, -74.1548391921351 40.57046838338009, -74.15482479266973 40.57046971485519, -74.15480671395328 40.570473304403315, -74.15479139544775 40.57047859222365, -74.15477376300524 40.57048723041541, -74.15475652612467 40.570497888852266, -74.15473689832062 40.57051129260932, -74.1547228226615 40.57052088686347, -74.15470594002123 40.57053459579815, -74.15469519720713 40.57054737162184, -74.15468483803065 40.57056313847575, -74.15467660550286 40.57057576142999, -74.15467078653612 40.57058368669101, -74.15466548340416 40.57058998310598, -74.15465589587836 40.570599343475756, -74.15464913460804 40.57060475303376, -74.15464314860233 40.570608881900014, -74.15463516781368 40.570613435797995, -74.15462504762372 40.570617669286335, -74.15461491185671 40.57062027554397, -74.15461029372767 40.570620991374376, -74.15460476514421 40.570621724639366, -74.15459916378104 40.570622647112565, -74.15459441464708 40.57062390703639, -74.15459190753393 40.57062492530338, -74.15458969735762 40.57062617010329, -74.15458625817776 40.57062909333676, -74.15458373385063 40.57063185864748, -74.15458494068915 40.57063591119213, -74.15458586902497 40.57063800726824, -74.15458788359167 40.57064000732733, -74.15459085932314 40.57063991867332, -74.15459637422165 40.57063735375722, -74.1546044821717 40.570633654290106, -74.15460756898379 40.570633087306724, -74.15461083434963 40.57063313154021, -74.15461415791928 40.570633832178856, -74.15461755039212 40.57063521982611, -74.15462137272523 40.570637628991804, -74.15462562121256 40.57064149913772, -74.15463066830709 40.57064855967311, -74.15463284068899 40.570653944596735, -74.15463365306512 40.5706620626469, -74.15463167544426 40.570671942279766, -74.15462779037684 40.5706812049182, -74.15461610134412 40.570699992119444, -74.15460223007305 40.57071934328421, -74.1545966802354 40.570728245250024, -74.15459295065617 40.570735810186186, -74.15458806415957 40.5707511995497, -74.1545836715308 40.57076771390605, -74.15457929310327 40.57078985563089, -74.15457801092764 40.57080274928838, -74.15457638822836 40.57081087061556, -74.15457476561174 40.570815455576444, -74.15457247154356 40.570820255766044, -74.15455726195738 40.57084203654441, -74.15454519880265 40.57086196610855, -74.15453419213871 40.570883238735654, -74.15451888782412 40.57090951596311, -74.15450083557812 40.57093430921524, -74.15446646141486 40.57097074840431, -74.15444681570798 40.570990284717894, -74.15441440544836 40.57102522097414, -74.15440717640118 40.57103315712213, -74.1543986885746 40.57104062488698, -74.1543920955181 40.57104475545636, -74.1543844296478 40.57104814813525, -74.15437573652267 40.571050587636456, -74.15436376549597 40.57105267763503, -74.15434913813257 40.57105458839481, -74.15433522106572 40.57105571744227, -74.15431952672915 40.57105584028638, -74.15430467013864 40.5710546301249, -74.15429284785607 40.57105260811412, -74.15427908527028 40.57104903980306, -74.15426820729415 40.571045292014, -74.15425740675708 40.571040814693774, -74.15423428055873 40.57102906776541, -74.15421421732107 40.571017151924266, -74.1541928733392 40.57100394464321, -74.154157754679 40.570983964076476, -74.15413797251806 40.5709730663398, -74.1541262400337 40.57096440281128, -74.15411546055833 40.57095420080495, -74.15409176886992 40.57092766076358, -74.15408046589826 40.57091679306682, -74.15407274235555 40.57090849427178, -74.15406930676514 40.57090377381916, -74.15406652169122 40.5708984644504, -74.15406509611189 40.570893771919735, -74.15406456386053 40.5708893150293, -74.15406457591881 40.57088686288052, -74.15406477872361 40.570883654033985, -74.15406502792847 40.570880082213165, -74.15406505151469 40.570876996078496, -74.15406444798707 40.57087286887622, -74.15406321470702 40.57086962863624, -74.15406172177761 40.57086696778274, -74.1540562800739 40.570859298996126, -74.15405366950885 40.57085438382344, -74.1540516086117 40.570848676351126, -74.15405009262541 40.57084216217715, -74.15404964397261 40.570836573213185, -74.15405031041793 40.57082957793304, -74.15405192872556 40.570820036489636, -74.15405243485773 40.57081214450047, -74.15405189195744 40.570804093624446, -74.15404810584371 40.57078922110971, -74.15404098096542 40.570775764196526, -74.1540370875309 40.57077068234533, -74.154032432863 40.57076580233211, -74.15402782665015 40.57076196236136, -74.15402275777936 40.57075874977696, -74.15401720300505 40.57075581430537, -74.15398279387438 40.57074129892719, -74.15397218304646 40.57073558490343, -74.15396254218926 40.57072851878945, -74.15395788943498 40.570723953054234, -74.15395322094737 40.570718196844396, -74.1539489083071 40.57071107135772, -74.15394660294908 40.57070432950653, -74.15394695609177 40.57068897686381, -74.15394865671237 40.57066544293637, -74.15395112636446 40.57064970293243), (-74.1619342419363 40.56392961114558, -74.16172617746436 40.563484748666326, -74.16102284222505 40.563659379110646, -74.16122265438929 40.56411688252196, -74.1619342419363 40.56392961114558)), ((-74.15913191279758 40.56203319370709, -74.15954587164893 40.56193394869912, -74.1589738124744 40.56207568697639, -74.15913191279758 40.56203319370709)))",R172,51997,R172,R-03,R-03,R-03,R-03,Arthur Kill Rd. bet. Richmond Ave. and New Vale Ave.,"502, 503",51,121,10308,R,258.72,False,,No,100036739,PARK,,,,DPR,False,Brookfield Park,,Brookfield Park,Large Park,Neighborhood Park,,No,"62, 63",24,11,{7AADB376-F6AA-4DA2-BAA2-24635EB2DF34} +"MULTIPOLYGON (((-74.13172312026471 40.56468242164499, -74.13175919169325 40.56467508330887, -74.13179232183734 40.5646767986249, -74.13180633590392 40.56468342212436, -74.1318208905654 40.56468933358593, -74.13182248347844 40.564689924304126, -74.13210848940162 40.56479517700978, -74.13212191969663 40.56479975604707, -74.13213642491448 40.56480392590779, -74.13229974753816 40.56484653991936, -74.13230089441518 40.56485921080345, -74.13226083246752 40.56503032720545, -74.13222013919554 40.56520414589598, -74.13218218101706 40.56536627889553, -74.13214518516777 40.56552429987095, -74.13210759079547 40.56568487991525, -74.13208228656318 40.56579296314896, -74.13203145887942 40.56601006279338, -74.13197251839486 40.56626181046922, -74.13193641501137 40.56641601751096, -74.13186974532152 40.56670077558109, -74.1318692459657 40.56670324269528, -74.13184630217047 40.56685534177129, -74.13184584583074 40.56685746753663, -74.13184489163103 40.5668646143062, -74.13182492981285 40.56707077663637, -74.13182481538662 40.567072033001566, -74.13182447303386 40.56708105846648, -74.13182503854553 40.56715220567867, -74.13182681175294 40.56737577363969, -74.13180880603682 40.56761285597463, -74.13181403504517 40.56787682205953, -74.1318192102926 40.56813805870559, -74.13182116541768 40.56832694628375, -74.13182384206344 40.56860259510196, -74.13182645909828 40.5688719619131, -74.13184290070754 40.569093339135904, -74.13187977310918 40.56940975871199, -74.13188058956617 40.56941537075237, -74.13188111226665 40.56941813836877, -74.13192551331049 40.5699151236178, -74.13202896586219 40.57046049826493, -74.13205295425804 40.570625519955804, -74.13172778202929 40.570663549685555, -74.13172026619685 40.57070526165179, -74.13171045508383 40.57075678657667, -74.13170121399563 40.570802743796726, -74.13169061585036 40.570852815272644, -74.13167962187075 40.57090218298999, -74.1316696494501 40.570944995508796, -74.13165945353745 40.570987065348994, -74.1316449745102 40.5710441887821, -74.1316257298084 40.57111600164626, -74.13161230325738 40.571163697165325, -74.13160230703241 40.57119806547484, -74.13159245101677 40.57123107653051, -74.13154022666795 40.571390114251194, -74.13145585710879 40.57168372186866, -74.13137636734847 40.57196035072749, -74.1313711138364 40.57197863650569, -74.13131072707165 40.5721366064157, -74.13122689656365 40.57242486680644, -74.13114319086742 40.57271270553929, -74.13095991856147 40.57271703182037, -74.1308055586153 40.57306150112552, -74.13089186516052 40.57311640061646, -74.1307262178566 40.57343397585948, -74.13070879454834 40.57348267179111, -74.13069846289586 40.57353252853386, -74.13069534456612 40.57358294800237, -74.13069947972532 40.573633324998276, -74.13071081642546 40.573683055327436, -74.13072922005965 40.573731540291355, -74.13075446866375 40.57377820020097, -74.13089234843008 40.573956033847196, -74.13076527221472 40.574014634377676, -74.12932797401973 40.57452149313975, -74.12932116250126 40.574485133088956, -74.12933290854401 40.57446859792586, -74.12933571250798 40.574464474865316, -74.12937241832805 40.57440803632913, -74.12937269621162 40.5744076073661, -74.12939918140381 40.574366885494086, -74.12939945928699 40.57436645653096, -74.12940086388322 40.57436422254629, -74.12950015375675 40.574202341174, -74.1295033034976 40.574196880439175, -74.12950397657427 40.57419561714372, -74.12956248031705 40.574084138168786, -74.12967245810955 40.573880093692495, -74.12980130943728 40.57359753888132, -74.12980179980096 40.57359645589559, -74.1299101519189 40.573358860337756, -74.13000935354201 40.573135443896774, -74.13012054793447 40.57285965182234, -74.13023730399468 40.57257006177786, -74.13023907334522 40.57256535542622, -74.13024157157564 40.57255713169583, -74.1302433586564 40.57254879980804, -74.13041095017545 40.572120061246196, -74.13041654195749 40.5721037148606, -74.13041669459834 40.57210326262346, -74.13043705435066 40.572042852960465, -74.13043721872512 40.57204236198736, -74.13045624279475 40.571984980503885, -74.1304563989287 40.57198450304797, -74.1304748611805 40.571927903855325, -74.13047500319209 40.57192745163019, -74.13049166312321 40.57187560565491, -74.13049181101634 40.57187514171617, -74.13051050674434 40.571815975753886, -74.13051065929419 40.571815477589865, -74.1305249861981 40.571769367006056, -74.1305250601295 40.57176912738221, -74.13053780428848 40.57172771933889, -74.13053797325671 40.57172716262203, -74.13056082065192 40.57165145197798, -74.13056102129403 40.571650787162014, -74.13058572683441 40.571566912936404, -74.13058591449445 40.5715662526378, -74.13060727294643 40.571491920579604, -74.13060748169038 40.57149117200544, -74.13060799999602 40.57148929472067, -74.13063673183152 40.5713863986035, -74.13063697218888 40.57138551131237, -74.1306372395053 40.57138452043013, -74.13066596993646 40.57127793395189, -74.13066620672737 40.57127703495788, -74.1306662313438 40.571276941275215, -74.13069419439019 40.57116930925085, -74.13069422136842 40.57116921556544, -74.13069442763401 40.571168408459755, -74.13072120721493 40.57106133970212, -74.13072140993708 40.571060532600406, -74.13072143217912 40.571060432616704, -74.13072163255347 40.571059632721884, -74.13074719362048 40.57095331818317, -74.13074760832401 40.57095160851334, -74.13074765633148 40.5709513986362, -74.13074782502984 40.57095070593993, -74.13077279309172 40.57084253338424, -74.13077286332329 40.57084221451818, -74.13077300271303 40.57084163171935, -74.13079697370111 40.57073331170561, -74.13079705788316 40.570732880257914, -74.13079716914004 40.570732404653654, -74.13082013124807 40.57062393629539, -74.1308203113344 40.57062302926087, -74.13084227401454 40.570514412547965, -74.13084245286288 40.57051347669796, -74.13086472264332 40.57039769414627, -74.1308648476768 40.57039701770899, -74.13086510239161 40.57039562610652, -74.13087339688299 40.57035086592931, -74.13087346699534 40.57035048672805, -74.13088154689066 40.57030590149657, -74.13088161931536 40.570305497078, -74.13089087682164 40.57025320200327, -74.13089094922677 40.570252787678896, -74.13089901080711 40.57020609973893, -74.13089904467077 40.57020590428625, -74.1308990773623 40.57020571333751, -74.13090681692402 40.570159823629616, -74.13090689045168 40.570159379586585, -74.13091510013167 40.570109335216706, -74.13095858747398 40.569831079006796, -74.13097900637955 40.56968279495636, -74.13099694052032 40.56955255306742, -74.13100692925998 40.56948001332479, -74.13101641732028 40.56941110957466, -74.13101681996305 40.56940747369257, -74.13101691985332 40.56940662348225, -74.13101699752193 40.56940588316139, -74.13102340024689 40.56933597253922, -74.13102346610455 40.56933523133133, -74.13103010931876 40.569262708008445, -74.13103017517452 40.569261965900026, -74.13103624608893 40.569195692878694, -74.13103629692142 40.56919511828519, -74.13103631194454 40.56919495077025, -74.13105817758289 40.56893978343054, -74.13106602878382 40.568716798857494, -74.13107714234602 40.56845811280859, -74.13108757488483 40.56821529299593, -74.1310830622382 40.56799659641239, -74.13107456743197 40.567724799450865, -74.1310663119986 40.56746061615649, -74.13106296239269 40.567264671821704, -74.1310517164393 40.56711029486863, -74.13105160254632 40.56710882083743, -74.13104278721266 40.566987732655626, -74.1310426745009 40.566986258623075, -74.13102845654925 40.56679101017689, -74.13102833793388 40.566789536151035, -74.13102802377969 40.5667865026371, -74.13101926990566 40.56671296305687, -74.13098442824898 40.566511580325525, -74.13094883553745 40.56624501385499, -74.13091512705785 40.56599256186748, -74.1308832478122 40.5657948831832, -74.13083866724075 40.56553066737117, -74.13083857166467 40.56553010104905, -74.13079314799243 40.56526088645267, -74.13079280869292 40.56525887236196, -74.13078802513891 40.565230522040565, -74.1307879283828 40.56522995571981, -74.13078610895161 40.56522162882484, -74.13078357887383 40.56521341080213, -74.1307803500251 40.56520533585808, -74.13077643428257 40.565197439099705, -74.13077185178763 40.56518975472391, -74.13076661795638 40.56518231603259, -74.1307607588271 40.56517515361386, -74.13075429807817 40.565168298959094, -74.1307472629269 40.565161781754625, -74.13073968294685 40.565155628982424, -74.13073159243322 40.56514986671865, -74.13072302568104 40.565144521039365, -74.13071401815907 40.56513961441729, -74.13070460887337 40.56513516661949, -74.13069483919318 40.56513119831097, -74.13068474929825 40.56512772565531, -74.13067438290892 40.565124763911676, -74.13066378492101 40.565122325636246, -74.130653001406 40.56512042068241, -74.1306464271769 40.56511953393768, -74.13051156272792 40.565103421950674, -74.13060052657538 40.56506426591219, -74.13064343695643 40.565051118961215, -74.13071663327872 40.56504525971055, -74.13084462325021 40.56503624019875, -74.13084778969548 40.56503596733437, -74.13085226866953 40.565035412911016, -74.1310362029477 40.56500847650826, -74.13103683450514 40.565008382133065, -74.1310418784071 40.565007478554186, -74.13104683443859 40.56500632562959, -74.13104855635346 40.5650058607946, -74.13120033553658 40.56496337090081, -74.1312034605343 40.564962438888735, -74.13120687203522 40.564961284119384, -74.13135570776404 40.56490766147498, -74.13135701281016 40.56490718000207, -74.13136157893037 40.56490531159145, -74.13136597457265 40.56490322004508, -74.13136775105693 40.5649022850682, -74.13150778216567 40.564826400481195, -74.13151021314371 40.564825028898085, -74.13151421355388 40.564822517252786, -74.13151720160634 40.56482040660014, -74.13162069557067 40.5647434281401, -74.1316214843699 40.56474283378941, -74.13162501996536 40.564739945352386, -74.13162830134891 40.564736887007136, -74.13162933367624 40.56473583491, -74.13166606321046 40.56471010079971, -74.13172312026471 40.56468242164499)), ((-74.13904528754244 40.589449221218665, -74.13899956040447 40.5894472386568, -74.1389512602404 40.58944740873985, -74.13889895401147 40.58945021947988, -74.13884372366176 40.589456199072465, -74.13877728502517 40.58946762954165, -74.13871781602306 40.58948201068153, -74.13866676507394 40.58949773061746, -74.13861544264394 40.58951697731137, -74.13856658861597 40.58953887575128, -74.13852620605509 40.589559959789504, -74.13848762067964 40.58958299938727, -74.13844823770361 40.58960992029223, -74.13841406830458 40.589636607070865, -74.1383846732301 40.58966257217262, -74.1385888080679 40.58940849806008, -74.13866668258188 40.58931294222617, -74.13878580471427 40.589199566478825, -74.13887828481019 40.58915167922318, -74.14051672241949 40.58894629482656, -74.1406892249465 40.58893609422645, -74.14101384084375 40.58890644727479, -74.14191809849798 40.588901533772884, -74.14216197990672 40.58890179692537, -74.14233020310431 40.58891631044626, -74.14232275350454 40.58898473971796, -74.14231456588841 40.58905995265265, -74.14230688060205 40.58913032464544, -74.14229415992146 40.589247410371726, -74.14243709649215 40.58929442345503, -74.14261780097529 40.58935385815066, -74.14270488781534 40.58938250106942, -74.14279509544816 40.589412170243904, -74.14288686706735 40.58944235340319, -74.14298187179368 40.58947360048808, -74.14307852208464 40.58950538936215, -74.14317270307049 40.589536365356665, -74.14375586278142 40.58972816126555, -74.1440332137165 40.58981937836168, -74.14416992539961 40.589864341195415, -74.14483163669927 40.58986806480865, -74.14484113119933 40.58999417488216, -74.14552166574435 40.59000095238926, -74.14546348536352 40.59062598275462, -74.14544446771801 40.59083035560741, -74.14540813722658 40.591008790948685, -74.14538654926012 40.591075554318905, -74.14538158690215 40.59108108801546, -74.14536917762734 40.59109635589486, -74.14535810566306 40.59111221102408, -74.14535107622169 40.59112379615574, -74.14519073234396 40.59140504618871, -74.14497576803342 40.59168822719803, -74.14488447074652 40.59182462047899, -74.14400023505634 40.59137893237899, -74.14390611118142 40.59134130842247, -74.13934034273095 40.58951611495406, -74.13930754587275 40.58950349605022, -74.13927215511191 40.589491507045906, -74.13923655964703 40.589481045568036, -74.13920304027954 40.58947257802644, -74.13917019127521 40.58946552258583, -74.13912891370188 40.58945832875509, -74.13909209781824 40.58945343395045, -74.13904528754244 40.589449221218665)), ((-74.13863799008769 40.58896256121462, -74.13845821062372 40.58887702105245, -74.13845752193902 40.58887758290899, -74.13844276354563 40.588869671574635, -74.13833831962039 40.588813678489615, -74.13814661330349 40.58871700370661, -74.13786438171014 40.58856427695159, -74.13743732831871 40.5882844291918, -74.13676877975863 40.587908161131196, -74.13648263777345 40.58774097951427, -74.13593742570546 40.587422799659706, -74.13430725376833 40.58648328863222, -74.1341032022683 40.58633134373026, -74.13391977270186 40.586192151973414, -74.13375920154827 40.58602124385653, -74.13366703915892 40.585872257566486, -74.13361405132487 40.58573087740925, -74.13361431561918 40.58558667790575, -74.13366660124085 40.58536134006333, -74.13372268314862 40.5851951505331, -74.13394104780996 40.58533312761003, -74.13427491280804 40.58554297979889, -74.13434587513403 40.585587582678116, -74.13475826638371 40.585840869371715, -74.13517539957022 40.58609115476015, -74.13556071937234 40.5863172016311, -74.13605152686293 40.586598161508306, -74.13648677531674 40.58684095352889, -74.13691953523696 40.58707658139111, -74.13746739617251 40.587360275048574, -74.13777336383987 40.58751273298999, -74.13820988174805 40.58771975712896, -74.13864587466841 40.58792010465458, -74.13903046659817 40.58809162931016, -74.1394811455 40.58826627113685, -74.13992824663715 40.5884551105193, -74.14026616787585 40.588593931287896, -74.14037541510307 40.588638810587724, -74.14057884079445 40.58872237819681, -74.14049444767508 40.588727368562225, -74.14047866770329 40.58872863598228, -74.14047557116416 40.588728963956775, -74.13877809074376 40.58891574763034, -74.13876259579222 40.588917783518234, -74.13874424717169 40.58892106827498, -74.13872621819237 40.588925261271974, -74.13870858795983 40.588930344403366, -74.13869143202646 40.58893629506505, -74.1386748235787 40.58894308885475, -74.13865883342908 40.588950695969935, -74.13864352884121 40.58895908391085, -74.13863799008769 40.58896256121462)), ((-74.12969250941467 40.5835543497811, -74.12985554942658 40.58340453984944, -74.13041607767309 40.58288948922638, -74.1304187420779 40.58288693951802, -74.13042114424113 40.58288437569887, -74.1304510978558 40.58290363543585, -74.13050395058136 40.58295022709847, -74.13057275538321 40.583009831201736, -74.1306261788981 40.58304561766349, -74.13076438227779 40.58312335584231, -74.13082108946526 40.58315365788256, -74.1308625179047 40.58317579513035, -74.13087779670418 40.58318395989469, -74.13099122551024 40.583244563818624, -74.13107897589603 40.583287506120826, -74.13118501308486 40.583338922127496, -74.13129690328307 40.58338925702182, -74.13142131569221 40.58344051673168, -74.1315414729776 40.58348777294302, -74.13168798264152 40.583543144073666, -74.13176425701799 40.583567749913655, -74.13183782303952 40.583589951708326, -74.1318830388828 40.583602523371205, -74.13194161694614 40.58361737691092, -74.132000404171 40.583632266201434, -74.13207506989141 40.58364963526577, -74.13222860025381 40.58368307436262, -74.13231069730377 40.583700124940705, -74.13245512512312 40.58373079249606, -74.132568125336 40.5837563730509, -74.13265697070764 40.58377827302537, -74.13276337880608 40.58380730730721, -74.13286040938146 40.58383674136143, -74.13293626303371 40.58386559198354, -74.13300997892307 40.583901596096965, -74.13308014073407 40.58394232122808, -74.13314733826819 40.5839855946343, -74.13321107393102 40.584030660456875, -74.13327017316489 40.58407668707872, -74.13334548769484 40.58414173374492, -74.13339778525317 40.58419272648335, -74.13344969084648 40.58424731724921, -74.13350340465702 40.58431006194227, -74.13356138481707 40.58439341015755, -74.13359875107454 40.58445892310929, -74.13361454602368 40.584492739254614, -74.13363594969869 40.584543925398, -74.13365256812251 40.584595526842406, -74.13366284652966 40.58466154315363, -74.13366490510725 40.584728716294684, -74.13366152979152 40.584795648112525, -74.13365294341573 40.58486037160159, -74.13363111357246 40.58495693773464, -74.13361232942464 40.58502550120979, -74.13360161585402 40.58506197951139, -74.13358600658317 40.58510806219564, -74.13352814767968 40.58526468655216, -74.13349008994626 40.58537403824938, -74.13345949120738 40.58545497332092, -74.1334322586506 40.5855299285935, -74.1334193994913 40.58562889496592, -74.1334309482112 40.585715313001046, -74.13344673099814 40.58580027537184, -74.13344870821987 40.58580909281276, -74.1334517768013 40.58581905985648, -74.13345569431375 40.585828852112776, -74.13345945770557 40.58583658774995, -74.13357121370969 40.58604897177056, -74.13357220015028 40.586050813096975, -74.13357776097779 40.58606013246425, -74.13358410907072 40.586069153742876, -74.133585576378 40.586071053944735, -74.13366725318538 40.58617511812412, -74.13366722261364 40.58617459765651, -74.133673486929 40.58618011058405, -74.13407743902484 40.58648372543193, -74.13318971907573 40.58590724251698, -74.13230732280599 40.585326034154825, -74.13143029402588 40.584740130134506, -74.13055867535715 40.584149559346464, -74.12969250941467 40.5835543497811)), ((-74.12966674605026 40.56081827051875, -74.1295976667643 40.56060862216433, -74.1295969388299 40.56060649053891, -74.1295937091665 40.56059841555965, -74.12959346616319 40.5605979259474, -74.12908381612822 40.559065417312766, -74.12892046346856 40.55857420320981, -74.12886836969487 40.5584618219129, -74.12881118058911 40.55835089075103, -74.1287489660948 40.55824154471726, -74.1287462442071 40.55823829596659, -74.12871533769375 40.5582025869027, -74.12871467621751 40.55820182850001, -74.12871183885653 40.55819870054854, -74.12868170424889 40.558166507167165, -74.1286780817504 40.55816278124426, -74.12867716614969 40.55816188084285, -74.12862766795696 40.55811371758716, -74.12862163687105 40.558108175296034, -74.12856582612007 40.558059703898444, -74.1285657386008 40.55805962745167, -74.12856074332825 40.558055481615256, -74.12852849506362 40.55802986530486, -74.12852591254376 40.55802785731875, -74.12852461661916 40.55802688349858, -74.128489199123 40.558000522385946, -74.12848240441431 40.55799573468258, -74.12847967828986 40.55799395468935, -74.12747684415037 40.55735327666386, -74.12822409850811 40.55668108410025, -74.12948561171953 40.55750005945111, -74.1296855169439 40.55766950394431, -74.12968551860595 40.55769712399828, -74.12968722487444 40.5577476920514, -74.12969168903051 40.557803616024714, -74.12969711475431 40.55784761773881, -74.12969995069317 40.55786641843495, -74.1297044925112 40.557893004059146, -74.12972143809633 40.557970922807456, -74.1297304510719 40.5580028876295, -74.12956581994288 40.55817226443055, -74.12958581491387 40.558225074873384, -74.1296797875404 40.55851712758212, -74.12968008330083 40.55851803587957, -74.12968382577539 40.558529395400065, -74.12969008892831 40.55854858755675, -74.12969117074194 40.558551773299094, -74.12969221293842 40.55855462228919, -74.12970644040402 40.55859226354659, -74.12970901487294 40.55859860935218, -74.12972468811832 40.55863471807903, -74.1297253308951 40.55863617530568, -74.12972617634999 40.558638032137296, -74.12996162102135 40.55938863858692, -74.13003267169775 40.55960965276019, -74.13015477432727 40.55998946733642, -74.13015573746543 40.55999232091425, -74.13015817490242 40.559998583115416, -74.13016725857182 40.560019920704015, -74.13016804965665 40.56002173346796, -74.13016980324198 40.560025465964266, -74.13018051238998 40.5600472006428, -74.13018267299248 40.56005136493032, -74.13018321094917 40.56005234049137, -74.13019336297496 40.56007053132757, -74.13019625825773 40.560075434114324, -74.13020867356589 40.56009533788663, -74.1302098235847 40.5600971439397, -74.13021206995404 40.560100481446035, -74.13022601451883 40.56012048164005, -74.13022900034142 40.56012458285469, -74.130229770961 40.560125586968574, -74.13024503143657 40.56014526598128, -74.13024817981184 40.5601491661936, -74.13025715065865 40.56015984887251, -74.1302590902966 40.56016210699443, -74.13025935891955 40.560162411968264, -74.13026754652182 40.560171670001075, -74.1302700148446 40.56017438589124, -74.13028099505003 40.560186140617375, -74.1302837269264 40.56018898318245, -74.13029406344852 40.56019943287398, -74.1302950548454 40.560200425030125, -74.1302967524347 40.560202078272134, -74.13030721683774 40.560212105470434, -74.13031010546484 40.56021479927019, -74.13032211596789 40.56022569011898, -74.13032456315956 40.56022786121333, -74.1303252775281 40.56022847636291, -74.13033781433526 40.560239207219645, -74.13034154915837 40.5602423016932, -74.13035808772179 40.560255562088024, -74.13036121673541 40.560258005267286, -74.13036266526878 40.56025909326032, -74.13038170163136 40.56027322432743, -74.13038834299002 40.56027789862564, -74.13039216516049 40.56028037163503, -74.13078133252654 40.56052475171451, -74.13098787605483 40.56064460426151, -74.13098853736824 40.5606440496835, -74.13100410858566 40.560654024166475, -74.13126413237912 40.56082057324343, -74.12997126144195 40.56190364606668, -74.12970466174917 40.56171925937315, -74.1297608464439 40.561671926378544, -74.12983703787887 40.56160813703477, -74.12985972804404 40.56147599334629, -74.12986093297772 40.56147202606545, -74.12986271980942 40.561463694175465, -74.12986376896214 40.561455516209, -74.12986453687552 40.561446619039856, -74.12986455533182 40.561446394787886, -74.12986490142337 40.56143795646366, -74.12986452252916 40.561429519859686, -74.12986342225999 40.56142112009237, -74.12986215639549 40.561415001545754, -74.12985994097845 40.56140573313067, -74.12985938645006 40.5614035247662, -74.12985758458218 40.56139743834405, -74.1296667828685 40.560818381241944, -74.12966674605026 40.56081827051875)), ((-74.1275691763411 40.57975379992894, -74.1275662096081 40.57975017320695, -74.12756725141469 40.57975021887749, -74.12734641593613 40.57939753642973, -74.12734495084086 40.579399104066624, -74.12725427092938 40.57918647352464, -74.12732324739345 40.57915753437587, -74.12732462694025 40.579156940301544, -74.12732862480419 40.57915503846463, -74.12733151429632 40.57915348275708, -74.12760983464925 40.57899560008646, -74.12773509825963 40.57894313047311, -74.12787986375463 40.57889138825383, -74.12848575105068 40.57870384519501, -74.12848631762141 40.57870366715793, -74.1284888753523 40.578702811500186, -74.12850432743299 40.578697365852534, -74.12850453515864 40.57869729177717, -74.12851192241904 40.578694666588184, -74.12851344610509 40.578694108359294, -74.12851490363758 40.57869354300018, -74.1285331088223 40.578686275208355, -74.12853580302364 40.57868514293567, -74.1285391660281 40.57868356235369, -74.12859919635537 40.57865357793038, -74.12866407538303 40.578632421295886, -74.12866469032951 40.57863221888957, -74.12876064100853 40.5786001211391, -74.12876162065001 40.578599786846866, -74.12886197349307 40.578564846523115, -74.12904174985125 40.57850691657673, -74.12904225975045 40.57850675030734, -74.12923233515392 40.57844418159559, -74.1292342914245 40.578443792169274, -74.12925566470606 40.57844173113692, -74.12927248129701 40.57844081709381, -74.12927543592028 40.57844061025053, -74.12929467579978 40.57843895414626, -74.12942667279016 40.578676060559005, -74.12896613893456 40.579465249274506, -74.1290520725821 40.580309612862926, -74.12989091882716 40.581328664190046, -74.13011889046656 40.581605602187395, -74.13056813755256 40.581952788761384, -74.13063410558833 40.58217970636132, -74.13069123537745 40.58253324235363, -74.13044157309015 40.58267624033745, -74.13038873962157 40.582606709556146, -74.13038590872237 40.58260322773798, -74.13022508641293 40.582418018198894, -74.13022479993803 40.58241768983207, -74.13022393464446 40.58241672364923, -74.13012618651751 40.58230954677725, -74.13012361469436 40.5823068670267, -74.13012316973837 40.58230643077616, -74.13001188493965 40.58219801380498, -74.13000858604768 40.58219498366991, -74.13000741952159 40.5821939917111, -74.1297294414309 40.58196227130017, -74.1297265763102 40.58195998990385, -74.12972227105693 40.581956925776346, -74.1297205562562 40.58195581016118, -74.12958844542909 40.58187209697333, -74.12958560265015 40.581870368470476, -74.12958218433435 40.58186847041751, -74.12943870076508 40.58179265487879, -74.12928438077455 40.581701002118294, -74.12917160161857 40.58161505140428, -74.12907241603463 40.581517986340025, -74.12891896788136 40.581344452787505, -74.12891566464262 40.58134095885551, -74.12891444108223 40.58133977423721, -74.12866906553083 40.581107464443384, -74.12843826971506 40.580873726701924, -74.12823701408422 40.58065616587407, -74.12809208023448 40.58048834183843, -74.1278468672669 40.58017494503076, -74.12757172017534 40.57975739019886, -74.1275691763411 40.57975379992894)), ((-74.13094344037131 40.564242020150225, -74.13094174588112 40.56424200857403, -74.13093872427237 40.56424205614441, -74.13091764209612 40.5642426943344, -74.13091548492034 40.56424278144255, -74.13091327942837 40.5642429181347, -74.13090966193002 40.56424318070871, -74.13090671158099 40.56424343801967, -74.1309016011101 40.564244086819656, -74.1309006850813 40.56424423104724, -74.13086595068121 40.56424986739733, -74.13086233513215 40.56425052259705, -74.13083722788204 40.56425554641823, -74.13083671561282 40.56425565056229, -74.13083175963338 40.564256803477896, -74.13083061956235 40.564257107353264, -74.13072503449669 40.56428595345598, -74.13072132769744 40.564287046410875, -74.13071661118387 40.56428868263156, -74.13071544069963 40.56428913422675, -74.13065204077078 40.564314072591195, -74.13058607889866 40.564292739391576, -74.13055582755554 40.56426068712951, -74.13055476572465 40.56426114850532, -74.13055430469417 40.56425907331635, -74.13053328060319 40.56416434924163, -74.13053133877712 40.56415559653214, -74.13050295136333 40.564027701828984, -74.13048925744282 40.563966005222156, -74.13047636529272 40.563907924216224, -74.13046219727936 40.56384408669266, -74.1304476326075 40.5637784683765, -74.13043437599042 40.5637187416168, -74.13042155898377 40.56366099731507, -74.13040850611607 40.563602185255185, -74.13039472184009 40.56354008440132, -74.13038183579881 40.56348202408794, -74.13036743449149 40.563417142204806, -74.13035422089013 40.56335760179431, -74.13034006264964 40.56329381196969, -74.13030276175537 40.56312575934568, -74.13029165084735 40.56307569368034, -74.1302501569685 40.56288874194344, -74.13024922967534 40.5628849166585, -74.13022174392734 40.56282044492201, -74.13017934456077 40.56274671556142, -74.13012479554877 40.56267387346054, -74.13000467103093 40.56258790205707, -74.12973082915708 40.56240352092737, -74.13065943603928 40.56163581866128, -74.13093327732734 40.56182019668873, -74.13096031670743 40.56183873111489, -74.1309401990148 40.561858757445165, -74.13087920713521 40.56190862517276, -74.1308755563212 40.561911707332115, -74.13086854706737 40.56191824143377, -74.13086596988339 40.561920878410014, -74.13085708280279 40.561930224292965, -74.13085322524091 40.561934455758895, -74.13084963936335 40.56193874184732, -74.13084257908423 40.56194756154156, -74.13084033418835 40.561950450286076, -74.13083631173785 40.56195610296998, -74.13082998005319 40.56196555670463, -74.13082879925834 40.561967354599844, -74.13082440827533 40.56197475022178, -74.13081884910487 40.56198495591596, -74.13081868674392 40.561985255075676, -74.13081480330925 40.5619931607176, -74.13081401223502 40.56199499238883, -74.13080926868112 40.56200625347111, -74.1308068626944 40.562012504063574, -74.13080540028312 40.562017015565395, -74.1307879202873 40.56207018724239, -74.1307756458691 40.56211227831563, -74.13076918680534 40.56215318577856, -74.13077074202516 40.56220513267527, -74.13077953697665 40.56227777983391, -74.13079518112502 40.562328445447406, -74.13082284335839 40.56237191387154, -74.13085386759512 40.56241311543594, -74.13088834641074 40.56244686660238, -74.130894808091 40.56245372124985, -74.1309018429715 40.56246023844686, -74.13090942147983 40.562466391211125, -74.13091751168383 40.56247215346374, -74.13092022741311 40.56247392530582, -74.13121772609767 40.56269484335337, -74.13132882027936 40.56279210200725, -74.13115883042826 40.56293280177339, -74.13119147885696 40.56306606940407, -74.13123984824348 40.56326350857984, -74.1312716113644 40.56339315437843, -74.13132293448054 40.563602642782534, -74.13137201052186 40.563802960068976, -74.13139649389746 40.56390289588544, -74.13150054071104 40.564327580271915, -74.13150340258598 40.564336364330664, -74.13150721150778 40.5643433651636, -74.13151407463266 40.5643518771846, -74.13152039363351 40.5643575072437, -74.1313272816518 40.56432556590541, -74.13115464524505 40.56427441155036, -74.1311513076315 40.564273487819314, -74.13114802342507 40.564272701807745, -74.1310596436458 40.56425315410251, -74.13105841744442 40.56425289074693, -74.13102966234757 40.56424691163991, -74.13102921227663 40.56424681939914, -74.13102416491012 40.564245927332166, -74.13101905191813 40.564245290188744, -74.1310176441335 40.56424516031772, -74.13101022383873 40.56424452670625, -74.13100647426046 40.56424427433297, -74.1310058778962 40.564244247096845, -74.13096144839348 40.564242333714716, -74.13095855995863 40.56424224965693, -74.13094344037131 40.564242020150225)), ((-74.12921864527011 40.57485517347541, -74.12929935430178 40.57482741492246, -74.1295514746634 40.57526233768266, -74.12958002543414 40.5753115921354, -74.1295805455383 40.575312438042594, -74.1295809507511 40.57531311207903, -74.12958157866582 40.57531413256653, -74.12961549936624 40.575368777801465, -74.12988001435379 40.57579482827203, -74.12993114627585 40.575899733882636, -74.12990078525135 40.57591220267037, -74.12953113241059 40.576033031093125, -74.12948926931918 40.576039430592154, -74.12948468381916 40.57604025073597, -74.12948061701003 40.57604118556227, -74.12889256558718 40.57619091528636, -74.1288921264641 40.57619102834468, -74.12888900197858 40.5761919026581, -74.12871656578758 40.576243651060054, -74.12871528395654 40.57624404692629, -74.1287119084358 40.5762451952758, -74.12865329980204 40.57626653583407, -74.12841136942532 40.576354623030674, -74.12838317893073 40.57636355622954, -74.1283394461155 40.576377414648015, -74.12829937198008 40.576327263231455, -74.12824648653569 40.576244722502864, -74.12823207593217 40.57621902769237, -74.12823263932516 40.576218435418404, -74.12823509416904 40.576215710390386, -74.12823577179267 40.57621494688914, -74.12823599097881 40.5762146944974, -74.12824685354768 40.57620213175113, -74.1282495505104 40.57619879679694, -74.12824967655645 40.576198628258005, -74.1283002553946 40.57613113414751, -74.12832843931686 40.57609976979216, -74.12832906036866 40.576099068489775, -74.12833197650843 40.5760954811417, -74.1283341790389 40.57609236736648, -74.12850676441195 40.57583154081345, -74.12850716359993 40.57583092891026, -74.12850939086395 40.575827174830444, -74.12851249069024 40.57582147013722, -74.12851254129545 40.575821377326506, -74.12851301081577 40.57582049068438, -74.12852589396007 40.57579563708262, -74.12852642575325 40.575794583773614, -74.1285286844736 40.57578999307023, -74.12852962541447 40.575787980243994, -74.128531223823 40.575783939599695, -74.1285319200527 40.57578180187423, -74.12854320593121 40.57574440664061, -74.12854375957112 40.575742432069624, -74.12854465266956 40.57573826614083, -74.12854488249057 40.57573679082323, -74.1285504489043 40.57569705071671, -74.12855075426631 40.57569432538545, -74.12855091036595 40.57568890945158, -74.1285500437533 40.575655904367736, -74.12854987141407 40.57565288239766, -74.12854948257515 40.57564966615636, -74.1285460346585 40.57562729736366, -74.12854587214828 40.57562631417189, -74.12854496302039 40.57562215025956, -74.12854477270317 40.57562144626175, -74.12853287551238 40.575578668411524, -74.12853180014147 40.57557526292743, -74.12853075680432 40.57557254720988, -74.12850664234435 40.57551457585392, -74.128506071735 40.57551325452105, -74.12850411428644 40.57550930610608, -74.12850371371553 40.575508584332816, -74.12830407715289 40.57515478754771, -74.12921376495741 40.57485679000465, -74.12921568642291 40.57485616738146, -74.12921640280129 40.57485591442856, -74.12921864527011 40.57485517347541)), ((-74.1293951867567 40.58196384593211, -74.12941096902999 40.581944978371425, -74.12947641733572 40.58197956133089, -74.12960076930806 40.58205835752856, -74.1298722606863 40.582284670725784, -74.12997984852923 40.582389486312486, -74.130075559454 40.58249443051198, -74.1302343311939 40.58267727870564, -74.1303023362901 40.582766776797264, -74.12986818250327 40.58317770321102, -74.12961161677825 40.58345511859497, -74.1293807531531 40.58363491279869, -74.12939024786981 40.583509623816504, -74.12938654217012 40.58340454396418, -74.12938366281692 40.58338274820574, -74.12936819830641 40.5832725431988, -74.1293450936138 40.583192538681644, -74.12930528209702 40.583096293989335, -74.12929251702812 40.583068014769076, -74.12928156768875 40.58304965188336, -74.12923605429127 40.58296709795533, -74.12914448150956 40.58283647715221, -74.12906437793878 40.58274496398711, -74.12903166985248 40.58271381735431, -74.12892699140687 40.58261413871494, -74.12877916270678 40.58247336607902, -74.1289146204689 40.58233098528989, -74.12928494177025 40.58206707382579, -74.12928721809605 40.582065393586575, -74.12929123702818 40.58206211115383, -74.12929335934355 40.58206019154825, -74.1293891800363 40.5819701959936, -74.12939078808051 40.581968640777376, -74.1293942109945 40.58196498709543, -74.1293951867567 40.58196384593211)), ((-74.12853457416999 40.57718555836078, -74.12881993917016 40.577101238645035, -74.12882086856922 40.57710425886492, -74.1288240989374 40.5771123338541, -74.12882801396476 40.57712022977147, -74.12882926664072 40.577122467072385, -74.1291197701113 40.57762790739554, -74.12912310057412 40.57763335453115, -74.1291272788011 40.57763929330105, -74.1291219344808 40.577641091352824, -74.12884948831541 40.57773278523227, -74.12831945451602 40.57790241604173, -74.12790182221264 40.578027916060286, -74.12790057221203 40.57802830197611, -74.12789911805959 40.578028777271214, -74.1274600848571 40.578176711772144, -74.12727462453758 40.578235147134244, -74.12711215396915 40.57828712611273, -74.1270910781883 40.57829409427882, -74.12707132707277 40.578300188367095, -74.12706560228142 40.57830195432489, -74.12705227221191 40.578305983608146, -74.12709009886314 40.57820645896362, -74.12724671062581 40.57785413617084, -74.12724673885096 40.57785407310283, -74.12724841145824 40.577849856792746, -74.12731030521331 40.57767358877577, -74.12731033458164 40.577673505894886, -74.12731166319314 40.5776691314726, -74.12731182026408 40.57766850723462, -74.12733133488342 40.577589270014066, -74.12738544552705 40.57757671704318, -74.12740579137918 40.577572958202886, -74.12740757646216 40.57757261042158, -74.12740775591087 40.57757257330105, -74.12743115621822 40.577567715129724, -74.12743548283491 40.57756670444394, -74.12743988926775 40.57756543431823, -74.12744098578307 40.57756507829498, -74.12794975338566 40.577396154215364, -74.12795175747448 40.57739546128054, -74.12853457416999 40.57718555836078)), ((-74.12954110804846 40.55737652024167, -74.12950069221436 40.557357255824826, -74.12950056972562 40.557358021410714, -74.12946077665245 40.55732927283017, -74.12833009626644 40.556585732297485, -74.12903852036679 40.55594845065733, -74.12951043515429 40.55622428034924, -74.12966516970639 40.556346777324435, -74.1296734996789 40.556364582141555, -74.12967741146294 40.556373206573, -74.12969257083512 40.55640823255688, -74.12971340915723 40.55646144276705, -74.12972699506112 40.55650028965759, -74.12973643649893 40.556529859498156, -74.12974946981393 40.55657536370445, -74.12975702727893 40.556605123881624, -74.12976302021131 40.55663116484915, -74.12977165767187 40.55667412372723, -74.12978074630398 40.55673113481571, -74.12978518261527 40.556767856888335, -74.12978700385908 40.556786416488976, -74.12978963630445 40.55682081543953, -74.12979135781696 40.55685671389598, -74.12979178272101 40.556872442917566, -74.12978602244185 40.55687136879502, -74.12974171601256 40.556911441868806, -74.12963447141499 40.55700843894168, -74.12962889891375 40.55701348007676, -74.12962354845698 40.557018560584154, -74.12961670402906 40.557025867979064, -74.12961050016433 40.557033501541895, -74.12960496513467 40.55704142792138, -74.12960012130858 40.557049613772804, -74.12959599105113 40.55705802395055, -74.12959258963986 40.55706662151585, -74.12958993235401 40.55707537043043, -74.1295880321098 40.55708423375818, -74.12958786055434 40.55708526775649, -74.12954110804846 40.55737652024167)), ((-74.12906614797747 40.57626246975472, -74.12929346773852 40.576261552258465, -74.12926313532056 40.576279795012745, -74.12924145612195 40.57629674117392, -74.12922585331356 40.57631186503715, -74.12921098553123 40.57632904487125, -74.12920122231586 40.57634387219389, -74.12911349069321 40.5764818592536, -74.12895561289228 40.576730172706206, -74.12893480667867 40.57677181113078, -74.12892813155428 40.57679327003344, -74.1289224177729 40.576815944466446, -74.12892054347355 40.576839198130905, -74.1289202666992 40.57686162422092, -74.12892318983647 40.57688491212471, -74.12893028522257 40.576914132508826, -74.12894058912096 40.57693704111224, -74.12878437190787 40.57698658493053, -74.12878769546128 40.576992154555235, -74.1287762121598 40.576996411603034, -74.1284801404178 40.577083894123426, -74.12847850682085 40.57708439484129, -74.12847540624492 40.57708544381846, -74.12789125421682 40.57729582790717, -74.12774683924884 40.577343777651, -74.12740640128331 40.57745681139622, -74.12738828604348 40.57746282628041, -74.12737090436651 40.577466435045764, -74.12734952431009 40.577470384136646, -74.12734773922955 40.577470731917046, -74.127345517425 40.57747121796185, -74.12734111170549 40.57747224043878, -74.12734115214205 40.57747052939618, -74.12734116726861 40.57746917138751, -74.12734096620126 40.577464683393075, -74.1273408818593 40.57746380817609, -74.12731551548505 40.57722163194586, -74.12731536301764 40.57722033355758, -74.12726733991107 40.576850541077384, -74.1274490237274 40.57681663390773, -74.12745064232273 40.57681631692827, -74.12745514833702 40.57681526912109, -74.12745772871996 40.57681455574389, -74.12764183180067 40.57676061970545, -74.12764365779756 40.576760062953156, -74.12764574454617 40.5767593717328, -74.12801766574997 40.57663076632729, -74.12801986802965 40.57662996960993, -74.12802080508052 40.576629610156715, -74.12816849803129 40.57657181186466, -74.12817171259327 40.576570473699924, -74.12817216572131 40.57657027147669, -74.12833054826577 40.57649913147456, -74.12846835427563 40.576455461373776, -74.12847173925418 40.576454310319285, -74.12877166373089 40.57634510642694, -74.12893997130057 40.576294596296506, -74.12906614797747 40.57626246975472)), ((-74.14716629319979 40.622204334349085, -74.14717874712102 40.62218704640306, -74.14719457081793 40.62216509844485, -74.14722284840285 40.62212586253351, -74.14725112595451 40.622086626615065, -74.14727811545806 40.62205283148959, -74.14730511673268 40.62201902733738, -74.14732468482879 40.621996201056966, -74.1473333018595 40.62198614919864, -74.14736148693869 40.62195326204771, -74.14738728097964 40.62192940118107, -74.14738920344705 40.621927624688865, -74.14741307500218 40.62190554030858, -74.14745286088379 40.621875862125925, -74.14749263493162 40.62184619294978, -74.14752747148113 40.62181235167594, -74.14756229619692 40.62177851941183, -74.14759712085751 40.62174467813182, -74.14763328722866 40.62170833166817, -74.14766944176202 40.62167199421334, -74.14770560805441 40.62163564772661, -74.14774176248915 40.621599301243556, -74.14777849306772 40.621561639246856, -74.14781522360477 40.62152397723821, -74.14785195408048 40.62148630621255, -74.14788868453468 40.621448644180155, -74.1479141658695 40.62142250527618, -74.14792541492741 40.62141097313068, -74.14796662539969 40.62136842448113, -74.14800784763761 40.62132587580141, -74.14804001413961 40.62129266817245, -74.14804906982302 40.621283327106674, -74.14809028013764 40.62124077841225, -74.14813150219794 40.6211982206824, -74.14813277093047 40.621196910589674, -74.14817271240749 40.62115567195803, -74.14821393438267 40.621113123203436, -74.14825514448712 40.62107057444914, -74.14829636635719 40.62102802566465, -74.14833872251637 40.62098538534928, -74.14838106682339 40.620942754038595, -74.14842342287442 40.62090011369165, -74.14846577887133 40.62085747332894, -74.14850813483409 40.620814841955585, -74.14855047890467 40.620772201576564, -74.14859283475927 40.62072957017166, -74.14863519053968 40.62068692974573, -74.14867754628608 40.620644298309244, -74.14871989014024 40.62060165786702, -74.14876224577843 40.62055902639896, -74.14880464743015 40.62051585454242, -74.1488470490271 40.62047268267001, -74.14887864974398 40.62044051113496, -74.14888945056919 40.62042951078181, -74.14893184025847 40.62038634789829, -74.14897424169081 40.620343175978405, -74.14901515735488 40.62030150983988, -74.14901664306836 40.62030000404271, -74.14905904439107 40.62025683209117, -74.14910144565887 40.62021366012382, -74.14914383505386 40.62017048815592, -74.14918623623215 40.620127325162095, -74.14922863733541 40.62008415314725, -74.1492458486307 40.62006650218994, -74.1492702594849 40.62004146840967, -74.14931189339909 40.6199987836415, -74.14935351544209 40.61995609887339, -74.14939513743185 40.61991341409004, -74.14943677118632 40.6198707292761, -74.1494783930696 40.61982804446221, -74.14952001489961 40.61978535963309, -74.14956164849436 40.61974267477331, -74.14960327021792 40.61969998991366, -74.14964489188827 40.61965730503875, -74.14968651350539 40.61961462014858, -74.14972814690736 40.619571944232966, -74.14976992300015 40.61952968235611, -74.14981171085796 40.61948742044852, -74.14983321789165 40.61946566282717, -74.14991275041164 40.61937741966414, -74.15007601315324 40.61920804541442, -74.15011488746872 40.61916944151595, -74.1502580092909 40.61902423539272, -74.15038623663287 40.61890531049399, -74.15039097984301 40.618900910642566, -74.15042708233811 40.61886379792516, -74.15046319661087 40.61882668518081, -74.15049929902574 40.618789572440484, -74.1505354132385 40.618752468678345, -74.1505715273908 40.618715355899525, -74.15059530751867 40.61869038929785, -74.15061176612839 40.6186731047305, -74.15065201663278 40.61863085353168, -74.1506922552685 40.6185886023341, -74.15073003318352 40.618550442718195, -74.15076779923771 40.61851228310527, -74.15077099457442 40.618509064051175, -74.1508055770664 40.61847412346427, -74.15084334303421 40.61843596382619, -74.15085624335867 40.61842293255478, -74.15088112077649 40.61839780416006, -74.15091888665796 40.61835964449686, -74.15095666431387 40.61832148480562, -74.15099566642115 40.61828131532945, -74.15103466850181 40.61824115484508, -74.15107368233281 40.61820098532658, -74.15110071962683 40.618173144374396, -74.15111268431964 40.6181608248154, -74.15115168623912 40.61812065528563, -74.15119068813205 40.618080494747645, -74.15122970177529 40.61804032517554, -74.15128521860088 40.61798185327598, -74.15133835707174 40.61792209673385, -74.15138904644897 40.61786112768727, -74.15143405345792 40.617803122517365, -74.15143725140646 40.6177990002174, -74.1514829129629 40.61773575943118, -74.1515259958546 40.617671486425, -74.1515618891436 40.61761358957226, -74.15156645410075 40.61760622628855, -74.15156674831252 40.61760568558741, -74.15156707801783 40.61760516284992, -74.15156741956112 40.617604649102034, -74.1515677847395 40.61760413532299, -74.15156817359386 40.61760363952316, -74.15156858610375 40.61760315269736, -74.15156902226911 40.61760267484559, -74.1515694821105 40.617602214973076, -74.15156995376945 40.61760175508494, -74.1515704491248 40.617601322181244, -74.15157096811525 40.617600889246354, -74.15157149898458 40.61760048331148, -74.15157205348899 40.61760007734541, -74.15157261987228 40.61759969837936, -74.1515732099111 40.61759932838732, -74.15157381180836 40.6175989763901, -74.15157443736115 40.61759863336689, -74.15157506297523 40.61759831735927, -74.15157571224488 40.61759801032572, -74.15157637337296 40.6175977212869, -74.15157704635949 40.617597450242904, -74.15157773120447 40.6175971971937, -74.15157842790785 40.61759696213931, -74.1515791364697 40.6175967450797, -74.15157984509288 40.61759655503568, -74.15158057737155 40.61759637396568, -74.15158130969115 40.617596210906065, -74.15158204207209 40.617596074862014, -74.15158278629104 40.61759594780758, -74.1516351812974 40.61759412628971, -74.15169369008306 40.61759566643376, -74.15183814932233 40.617598772525255, -74.1518372080523 40.61760007142079, -74.15183601349985 40.61760172005337, -74.15182070343268 40.61762285031194, -74.15180971919266 40.617638008897266, -74.15180631903286 40.61764257993474, -74.15180044709666 40.61765047265981, -74.15179405560013 40.61765906757729, -74.15178705498757 40.617668478271135, -74.15178047144087 40.61767732828919, -74.15177898106555 40.61767932941587, -74.15177330344544 40.617686408711556, -74.15176483885975 40.617696961397776, -74.15175450883525 40.617709840793296, -74.1517464802612 40.61771985078827, -74.15171224033075 40.61775953696104, -74.15171029284271 40.61776164044912, -74.15167630844041 40.61779834284425, -74.15163419979757 40.61783886785567, -74.15159210292119 40.6178793928359, -74.15155000599374 40.61791991780054, -74.15154277286463 40.61792688116694, -74.15150790901515 40.61796044274962, -74.15146581198542 40.618000967683095, -74.1514280855454 40.61804065836346, -74.15139037085767 40.61808034001052, -74.15134983569166 40.61812178137635, -74.15130930047532 40.618163222727645, -74.15126876520867 40.61820466406453, -74.15125866675545 40.61821498832907, -74.15122822989166 40.61824610538693, -74.15118769452434 40.61828754669483, -74.15114868040548 40.61832758117376, -74.15110967805745 40.618367615623775, -74.15107624069114 40.61840193433828, -74.15107066386538 40.61840765908109, -74.15103164960613 40.61844769351982, -74.15099264711773 40.61848772792961, -74.1509504726856 40.61853089130224, -74.15094186800448 40.61853969529699, -74.15090828638114 40.61857405467469, -74.15086611183985 40.61861721801596, -74.15082393724401 40.618660381341584, -74.15080907885923 40.618675591739205, -74.15078176261403 40.61870355365671, -74.15074635425347 40.61873916170465, -74.15071094587546 40.618774778746754, -74.15067553743934 40.618810386772616, -74.15067437248534 40.618811558077475, -74.15064012896543 40.618845994787456, -74.15060472047408 40.61888161179643, -74.15057531463953 40.61891165570665, -74.15054589696072 40.618941699624735, -74.15051456875392 40.61897351105958, -74.15049968521662 40.61898863499937, -74.15047773425536 40.61901093994487, -74.1504408997155 40.61904836881817, -74.15040406511409 40.619085788674376, -74.15038696130735 40.61910316770939, -74.15036723049161 40.619123217523835, -74.15033260232397 40.61915859298759, -74.15032991285884 40.61916134039471, -74.15029260700129 40.61919946323789, -74.15025528928327 40.61923758608428, -74.15021797152265 40.61927570891838, -74.15018065371937 40.619313831740236, -74.15017617322344 40.61931840954289, -74.15014333587345 40.619351954549806, -74.1501017502671 40.619394684586226, -74.15006017644566 40.61943742359714, -74.15003295533003 40.619465398717374, -74.15001859075306 40.61948016260825, -74.14997700498698 40.61952289259899, -74.14993541918786 40.61956563157963, -74.14989651570544 40.61960560514709, -74.14989383331529 40.61960836153989, -74.14985224740968 40.61965110049006, -74.14981288832657 40.61969084679061, -74.14977352921679 40.619730602082704, -74.14973417003992 40.61977034835596, -74.14969481081613 40.61981009461559, -74.14965545154551 40.61984984086157, -74.14961608043026 40.61988959611449, -74.14957672106588 40.619929342333165, -74.14953736165465 40.619969088538234, -74.14950135216701 40.62000600273479, -74.14946534263956 40.620042916919935, -74.14942932125427 40.620079831108995, -74.14939331164715 40.62011674527125, -74.14935730198003 40.62015365041692, -74.1493212804753 40.620190564571715, -74.14928941766229 40.62022323455864, -74.14927876213078 40.62023416001773, -74.14923623189253 40.620277746457944, -74.14919371343697 40.620321341872106, -74.14915118308765 40.62036492828051, -74.14910866452095 40.620408523662796, -74.14906613406055 40.62045211003931, -74.14902360356476 40.62049570540507, -74.14898211049062 40.620538173758284, -74.14894060552552 40.62058063310641, -74.1488991005277 40.620623101444544, -74.14885760729517 40.620665569752255, -74.14881610219173 40.62070803806005, -74.14877919599905 40.62074597077682, -74.14874228978448 40.62078391248675, -74.14870538350792 40.62082184517951, -74.14866847720941 40.62085978686545, -74.14863157084889 40.620897719534234, -74.14858956969697 40.62094045855669, -74.14855796270905 40.620972636321916, -74.1485543014614 40.62097636380965, -74.14854758032949 40.620983206553575, -74.14850557906999 40.62102594554495, -74.14846358959488 40.62106869351073, -74.14841911753021 40.62111112047833, -74.14837464542896 40.6211535564337, -74.1483301732512 40.6211959833665, -74.14831589128485 40.6212083722589, -74.14829253385899 40.621228630808424, -74.14825490624818 40.62126127822271, -74.14821727858055 40.62129391661937, -74.14818195858476 40.62132797485318, -74.14814662671479 40.62136202408605, -74.14811130664692 40.62139608229794, -74.14807360951036 40.621434763236394, -74.1480359241484 40.62147344414711, -74.14799823876267 40.62151213405053, -74.1479605414951 40.621550814951426, -74.14792549622197 40.621591635668736, -74.14789046272423 40.62163245635998, -74.14785541734544 40.62167326805036, -74.14782037194374 40.621714088735104, -74.14778532649916 40.621754909409006, -74.14774832786699 40.62179965885625, -74.14771134098359 40.621844399271, -74.14767434225227 40.62188914869402, -74.14763734347129 40.62193389810492, -74.14760034464071 40.621978647503695, -74.14757090763091 40.62201720060079, -74.14754147058704 40.6220557536902, -74.14751203352908 40.622094315777126, -74.1474825964172 40.62213286885115, -74.14747411018367 40.62214220914071, -74.1474538412955 40.62216451404261, -74.14742508734825 40.62219616823044, -74.1474241221532 40.622197939893475, -74.14742382757682 40.62219619956315, -74.14673975192692 40.622842393861646, -74.14674591895358 40.622822026100366, -74.14674591160511 40.62282190904197, -74.14674591109033 40.62282167490703, -74.14674591057556 40.6228214407721, -74.14674593369774 40.62282120660703, -74.14674595681991 40.62282097244192, -74.14674599178035 40.62282074726697, -74.14674603853948 40.6228205130717, -74.14674609711705 40.622820278861354, -74.1467461675329 40.622820053641114, -74.14674624976722 40.62281982840578, -74.14674634382 40.62281960315536, -74.14674643787279 40.622819377904925, -74.14674655558231 40.62281916162953, -74.1467726075595 40.62277798354684, -74.14679867130315 40.62273679643779, -74.14682472321603 40.62269561834298, -74.14685078691517 40.62265444022696, -74.14688251126222 40.62260772567073, -74.14691422376623 40.62256102012586, -74.14694594802447 40.622514305551675, -74.1469776604397 40.62246759998884, -74.14701067394519 40.62242139704519, -74.14704369924313 40.622375203081944, -74.14704695345985 40.622370649484935, -74.14707671265715 40.622329000118896, -74.14708355804302 40.62231941881746, -74.14710972602552 40.62228279714613, -74.14713801552854 40.62224356124101, -74.14716629319979 40.622204334349085)), ((-74.14495280669196 40.62769606475711, -74.14524810569934 40.62680287592614, -74.14522512984867 40.626984613886755, -74.14521757688061 40.62716908615298, -74.14522926653329 40.62741477584082, -74.14525040123897 40.627682785608414, -74.14530597010753 40.62794451214112, -74.14533942278929 40.62818993024998, -74.14547896233883 40.629259330320416, -74.14556914731597 40.63011765471231, -74.14557612283038 40.63040731187828, -74.1455738859487 40.63053114170996, -74.14555723738732 40.630813364356854, -74.14543916128378 40.63078143182761, -74.14553712810137 40.63048379293912, -74.14555941678572 40.63029139639063, -74.14486907830593 40.630126769687855, -74.14489231535005 40.630063849840475, -74.14520802335306 40.62920895459235, -74.14526467230327 40.62903564083647, -74.14517771182928 40.62902091999688, -74.14521786442471 40.628907496416936, -74.14498530925098 40.628870404788586, -74.14499413006838 40.62882192493133, -74.1452223649762 40.62805453265756, -74.14518565272381 40.627736179132235, -74.14495280669196 40.62769606475711)), ((-74.151944658409 40.617604830085455, -74.15194948919863 40.617597977031075, -74.1520783266421 40.617607758326876, -74.15207773530524 40.61760859479361, -74.15206285409928 40.617629640768584, -74.15205436333562 40.617641647853965, -74.15205060878866 40.61764679209937, -74.15204733372637 40.61765128193153, -74.15204401742731 40.61765582674994, -74.15204064222257 40.61766045179265, -74.15203738129075 40.61766491999327, -74.1520362244147 40.61766650554155, -74.15203509463278 40.617668053232116, -74.15203396485084 40.61766960092266, -74.15203282682114 40.617671159430344, -74.1520316982188 40.617672706218755, -74.15203054605308 40.6176742845566, -74.15202946457319 40.617675766445096, -74.15199305590559 40.61772565758414, -74.15198412442308 40.61773719067173, -74.15195381507978 40.61777632150081, -74.15192894472607 40.617808428265874, -74.15191846673791 40.617821194405764, -74.1518620533433 40.61788992384259, -74.15172230872426 40.61805059939865, -74.15167022280939 40.618106433856376, -74.1515757483465 40.618207708696254, -74.15153605037078 40.618248311537926, -74.15150424357657 40.61828082628381, -74.15149634050866 40.61828890537606, -74.15145664243636 40.61832950818996, -74.15141694429533 40.61837010198479, -74.15137724612637 40.618410704770916, -74.15137382455912 40.61841420420216, -74.15133754788877 40.61845129853799, -74.15132067464904 40.61846855223747, -74.15130560769389 40.61848396018864, -74.15129784960288 40.618491892291125, -74.15125930673099 40.61853130482636, -74.15123337132935 40.618557826901466, -74.15122077561085 40.61857070832773, -74.15118223264793 40.618610120836784, -74.15114370143685 40.61864952431202, -74.15110515838288 40.618688936794875, -74.15108983193723 40.61870460981179, -74.15106662708078 40.61872834024395, -74.15102967501258 40.61876584150387, -74.15099271106473 40.61880333376208, -74.15095786825627 40.618838685383835, -74.15095575889318 40.618840825992784, -74.1509188067004 40.61887832721665, -74.15088185444581 40.61891581942324, -74.15083835669007 40.61895925464579, -74.1508231861202 40.61897440692039, -74.15079485889805 40.6190026988569, -74.15075136104947 40.619046143051335, -74.1507078631239 40.619089578223914, -74.1506975363379 40.619099890129974, -74.15066436514175 40.61913301337985, -74.15062086712327 40.61917645752435, -74.15057736902789 40.619219892646946, -74.15053387089617 40.61926333675811, -74.15050914568232 40.61928803262508, -74.1504903845054 40.61930677183193, -74.15044688626045 40.61935021590981, -74.15040338793864 40.61939365096582, -74.15038765117173 40.619409362246294, -74.15035988958044 40.61943709501036, -74.15035528858274 40.619441689186914, -74.15033193220316 40.6194650117301, -74.1503163911454 40.619480530033044, -74.15027791762489 40.6195197620386, -74.1502394558771 40.61955899401574, -74.1502009822662 40.61959822599522, -74.15016252042794 40.61963745794623, -74.15012404670634 40.61967668089446, -74.15008788989996 40.61971356124903, -74.15008558477764 40.619715912819416, -74.15004711098587 40.619755144746776, -74.15000864896679 40.619794376645714, -74.1499701750845 40.61983360854699, -74.14992935454359 40.61987513982633, -74.14988852215411 40.619916680111515, -74.14984768971382 40.61995822038208, -74.14980686904069 40.619999760622576, -74.14977407095098 40.6200331271665, -74.14976603649878 40.620041300863726, -74.14976212303273 40.62004528176569, -74.14972520390602 40.620082841090245, -74.14968437126245 40.620124381302084, -74.14964355038605 40.6201659214838, -74.14960271762067 40.6202074526611, -74.14956188482462 40.62024899282885, -74.14951941419491 40.620292732385195, -74.14947694350948 40.6203364719256, -74.14943447276839 40.62038021145012, -74.14939199015365 40.62042395097411, -74.14934951930123 40.62046769046685, -74.14930704839313 40.62051142994372, -74.14926456561138 40.62055516942004, -74.14922209459196 40.62059890886509, -74.14917962351687 40.620642648294265, -74.1491394969226 40.62068313378264, -74.14909937027963 40.62072361925684, -74.1490592554061 40.62076410470152, -74.1490191286658 40.620804590147394, -74.14897900187681 40.62084507557906, -74.14895598112872 40.6208683019477, -74.1489388750391 40.62088556099651, -74.14889875997089 40.62092604638453, -74.14886003826997 40.620966025661936, -74.14882130470451 40.62100600494142, -74.1487825828907 40.62104597518719, -74.14874386105062 40.62108595442497, -74.14870513916415 40.62112593364953, -74.14866641723125 40.621165912860874, -74.14862769523197 40.62120588305382, -74.14858553187696 40.6212501711801, -74.1485433802842 40.62129445927548, -74.14850121681735 40.621338747370416, -74.1484590532945 40.621383035449696, -74.1484169015339 40.62142732349805, -74.14837473787915 40.62147160254079, -74.14833703673942 40.621513750578785, -74.14829934737027 40.621555898589015, -74.14826164611532 40.62159803759672, -74.14822395665098 40.621640185581875, -74.14818625532082 40.62168233356967, -74.14814856574128 40.62172447252454, -74.14811261308203 40.62176646514554, -74.14810184024157 40.62177904760407, -74.14807666037751 40.62180845775514, -74.14804070764771 40.6218504593585, -74.14800475485268 40.62189245194521, -74.14796880201243 40.621934444520534, -74.14793286094526 40.62197643706917, -74.14789941511621 40.622019155818705, -74.1478659810627 40.622061874543085, -74.14783253514803 40.622104593272745, -74.14779910100884 40.622147311977336, -74.14776566682693 40.62219003067196, -74.14773222076391 40.62223274036671, -74.14769813317636 40.62227930510776, -74.14766404554123 40.62232586983849, -74.14762994604017 40.62237243457405, -74.14759585828996 40.622418990278916, -74.14756177051216 40.62246555497862, -74.14752798047594 40.622513172896035, -74.14752681290351 40.62251481784606, -74.14752342918362 40.622519585946904, -74.14749419039151 40.62256079080324, -74.14746040023898 40.622608399695075, -74.14742661005808 40.62265601758195, -74.14739481416393 40.62270228211954, -74.14736303004409 40.62274854663294, -74.1473312340618 40.622794811152446, -74.14730738178842 40.62282953700884, -74.1472994498737 40.62284108465303, -74.14727125522113 40.6228858856963, -74.14724306051082 40.622930677727275, -74.14721487760103 40.622975478741154, -74.14718668283491 40.62302027976303, -74.14717579017343 40.623038187069284, -74.14716188288743 40.62306105110138, -74.14713708290965 40.6231018224342, -74.14711228290162 40.62314259376148, -74.14708748286326 40.62318336508326, -74.14706268279457 40.62322413639951, -74.14705760183259 40.62323318413404, -74.14703644212717 40.6232708619992, -74.14701018958459 40.62331757860267, -74.14698394882389 40.62336429518474, -74.14696450074976 40.62339892528436, -74.14695770804622 40.62341102076584, -74.14693145539344 40.623457737350584, -74.14690862107668 40.62350035218867, -74.14688577489233 40.6235429580319, -74.14688155876524 40.62355082226875, -74.14686292869864 40.62358557287558, -74.1468400824757 40.62362818771459, -74.14681723620386 40.62367079354362, -74.14679440174127 40.62371340835806, -74.14679164865771 40.62371908425742, -74.14677275352904 40.6237580298159, -74.14675110530766 40.62380266027465, -74.14672946885612 40.623847281708834, -74.14670782057685 40.623891912158975, -74.14670674404276 40.62389413061634, -74.14668617224883 40.62393653359967, -74.14666489745389 40.62398442345202, -74.1466441647314 40.62403106628713, -74.14664361080969 40.62403231331522, -74.14662232415478 40.624080212179436, -74.14660103744953 40.62412810203426, -74.14657976253238 40.62417599186991, -74.14655820828578 40.624225863204224, -74.14653666582569 40.62427573451924, -74.146529481051 40.624292354692884, -74.14651511149485 40.62432559683981, -74.14649356897036 40.62437546814621, -74.14647201459493 40.624425339463336, -74.14645595838412 40.62447094430644, -74.14643990217107 40.62451655815226, -74.14642384591636 40.62456216299045, -74.14640777782094 40.62460776784115, -74.1463917215421 40.62465338167958, -74.14637503631688 40.62469784364909, -74.1463725206164 40.62470455213338, -74.14635593170914 40.62474875372658, -74.14634925055483 40.624766558332844, -74.14634725889589 40.624771864938396, -74.14634553396789 40.62477646159363, -74.14634404051384 40.62478043929603, -74.14634271979516 40.6247839602143, -74.14634166579971 40.62478676758018, -74.14634154718588 40.62478711263082, -74.14634055241278 40.62478997845519, -74.14633963046217 40.62479263706693, -74.14633960580056 40.62479270914004, -74.14620458640626 40.624797185417066, -74.14620511593358 40.624795586318434, -74.14620594017023 40.62479309983159, -74.14620631516263 40.62479217361886, -74.14620767404821 40.62478880754332, -74.14620903058368 40.62478544777437, -74.1462103730094 40.624782121342655, -74.14621171425904 40.624778797613956, -74.14621304139898 40.624775507222495, -74.14622344932643 40.62474972647006, -74.14624078212498 40.62470678558013, -74.1462582030883 40.62466363745535, -74.14627562400935 40.62462048032256, -74.14629515878727 40.62457116093147, -74.14631469355612 40.624521850541996, -74.14633422827632 40.624472531143745, -74.14633535781047 40.62446967955612, -74.14635376296769 40.62442321174191, -74.14637329763019 40.62437389233651, -74.14639371198567 40.62432691316273, -74.14641412631246 40.62427993398507, -74.14643454061046 40.62423295480358, -74.14644893290512 40.62419983240681, -74.14645495487977 40.624185975618204, -74.14647536910053 40.62413898742382, -74.14649578331236 40.62409200823072, -74.1465162093141 40.62404502901874, -74.14653909258358 40.623997596410085, -74.14655075186099 40.62397342866531, -74.14656197582053 40.6239501637966, -74.14658485902497 40.623902731178354, -74.14660775401552 40.62385529854026, -74.1466306371549 40.62380786591239, -74.14663302193875 40.62380292171003, -74.14665352026174 40.6237604332798, -74.14667640333612 40.62371300064239, -74.14670129633485 40.623665925643905, -74.14670680222521 40.62365551849663, -74.14672620111715 40.62361885062475, -74.1467510940655 40.6235717846202, -74.14677598695889 40.623524709604894, -74.14678053593707 40.6235161056189, -74.14680087981722 40.62347763458395, -74.14682577264044 40.62343055955734, -74.14685066544835 40.62338349353035, -74.14686664628104 40.62335328763854, -74.14687557001986 40.62333641847741, -74.14690477357597 40.62328800515382, -74.14693397708972 40.62323959182257, -74.1469631923598 40.62319116946335, -74.14698703083968 40.62315165022221, -74.1469923957888 40.62314275611676, -74.14702159917545 40.62309434276251, -74.14705081433823 40.623045929385476, -74.14708001764012 40.622997516015914, -74.14710922089965 40.622949102638664, -74.14713251167981 40.622910506200924, -74.1471384359353 40.62290068923858, -74.1471688282447 40.62285557923753, -74.14719922051299 40.62281046922819, -74.14722961276003 40.62276536821579, -74.14726000494618 40.62272025818996, -74.14729039709125 40.622675148155864, -74.14732077739667 40.62263004713385, -74.14735116945954 40.62258493708328, -74.14738156150126 40.62253983602969, -74.147411953482 40.62249472596261, -74.1474423454217 40.622449615887284, -74.14744744801177 40.62244291936876, -74.14747670834102 40.622404518720096, -74.14748828519554 40.62238932647897, -74.14749469582704 40.62238091278671, -74.1475110712139 40.6223594215424, -74.14754542220207 40.62231431536421, -74.14757978498209 40.62226921816555, -74.14761414771569 40.62222412095647, -74.14764851038292 40.622179014731664, -74.14768286120528 40.622133917516734, -74.14771722379956 40.62208882027615, -74.14775158632754 40.62204371401989, -74.14778593701064 40.62199861677353, -74.1478207335007 40.62195739118613, -74.14785551812945 40.621916165603146, -74.14789031453354 40.621874939994285, -74.14792509907636 40.621833714389915, -74.14795988355625 40.62179247976968, -74.1479946798314 40.6217512541287, -74.1480294642453 40.621710028492195, -74.14806424861624 40.62166880284501, -74.14809904476246 40.621627577171935, -74.14813777552371 40.62158597720414, -74.14817649443845 40.62154438624355, -74.1482152251032 40.62150278624935, -74.14825395571964 40.621461186241866, -74.14829268628786 40.62141958622117, -74.14833141682776 40.62137799519249, -74.14834878954353 40.6213593355801, -74.14837014729936 40.62133639514533, -74.14840886590454 40.62129479510019, -74.14844759629963 40.6212532040318, -74.14848632662643 40.621211603944985, -74.1485230099801 40.621174247946406, -74.14855969329271 40.62113689193595, -74.14859637658425 40.62109954491881, -74.14863305981474 40.621062188884686, -74.148675496582 40.62101868384017, -74.14871794511205 40.620975178764446, -74.14876038178873 40.620931682693396, -74.14880281839004 40.620888177601266, -74.14884526675415 40.62084467247799, -74.14888770324474 40.62080116735411, -74.14893015151827 40.620757671204295, -74.1489725878983 40.620714166048714, -74.14901503604104 40.620670660861954, -74.14902655597878 40.62065885089561, -74.1490574723104 40.62062715567467, -74.14909992036264 40.62058365946133, -74.14914291182956 40.62054009048535, -74.14918590322026 40.62049651248788, -74.14922889457495 40.620452943479364, -74.1492718976915 40.620409374439156, -74.14931488893396 40.62036580539808, -74.14935788012022 40.620322236340705, -74.1494008712504 40.62027866726707, -74.14944387412233 40.62023508915661, -74.1494868651402 40.62019152005038, -74.14952985610202 40.62014795092791, -74.1495728109685 40.620104120684736, -74.14961576579877 40.62006029943053, -74.14965870873452 40.62001646917025, -74.14970166343176 40.61997263887833, -74.14974460627488 40.619928817590726, -74.14978756085937 40.61988498726632, -74.14982055319655 40.61985132239209, -74.14983051538739 40.61984115692567, -74.14987345806134 40.61979733558937, -74.14991641247654 40.61975350521623, -74.14995759738466 40.61971111796987, -74.14999878222024 40.61966872170342, -74.15003997884163 40.619626334411755, -74.15008116359282 40.6195839471206, -74.15012234827142 40.61954155080934, -74.150163532918 40.619499163488264, -74.15019655016903 40.619465185090135, -74.15020471751225 40.619456776152305, -74.15024372667068 40.619416618635015, -74.15024590203393 40.619414379796154, -74.15028708652356 40.6193719924303, -74.15032828277874 40.61932960503401, -74.15036823048952 40.619289083336085, -74.15038733653013 40.619269709730645, -74.15040817817206 40.619248570629324, -74.15043202296943 40.61922439553726, -74.15044813762394 40.619208057893076, -74.1504880852095 40.619167545158184, -74.15052804456438 40.61912703239379, -74.15056267201125 40.619091914421105, -74.15056799205297 40.6190865196308, -74.15060795131089 40.619046006838275, -74.15064789868214 40.619005485041974, -74.15068784602524 40.61896497223682, -74.15071684321151 40.61893557360741, -74.1507278051376 40.61892445940214, -74.15076775238369 40.61888394656887, -74.15080771139905 40.618843433706054, -74.15084624446713 40.61880471473887, -74.15087210097902 40.618778733168796, -74.15088477749043 40.6187659957586, -74.15092331044869 40.61872726776008, -74.15096184338265 40.61868854875362, -74.15100037627184 40.61864982973415, -74.15100082432906 40.61864937978515, -74.15103890911634 40.618611110701615, -74.15107744191619 40.61857239165594, -74.15111561887599 40.61853311474135, -74.15112333797258 40.61852517279677, -74.15115379579092 40.618493837813936, -74.15119197266088 40.61845456087369, -74.15123016130364 40.618415283905044, -74.15126833689995 40.618376006040116, -74.15128001866161 40.61836399031215, -74.1513065148189 40.61833672996029, -74.15134470332684 40.618297452953115, -74.15138707637789 40.61825346069253, -74.15142946117025 40.61820945939537, -74.15144761763175 40.61819060556222, -74.15147183408912 40.618165458097955, -74.15151421879021 40.61812146577433, -74.15155660341495 40.618077464429696, -74.15165300721625 40.61797136386289, -74.15170919044891 40.61790575334108, -74.1517455536726 40.617863287157284, -74.15175019907475 40.61785752218681, -74.15178861493551 40.61780984556058, -74.15181426711756 40.61777800975112, -74.15183417205299 40.617753306457175, -74.15189304769538 40.61767554964838, -74.15189621827945 40.6176713616336, -74.15189917324945 40.61766745846862, -74.15190203513498 40.617663676096484, -74.15190479334339 40.61766003344223, -74.15190749382171 40.61765646830906, -74.15191107206994 40.61765174304399, -74.15191424972177 40.61764754601414, -74.15191718465518 40.617643667189256, -74.15191880352741 40.617641529912135, -74.15191956330828 40.61764045188367, -74.15191999797197 40.617639834451666, -74.15192980796544 40.617625910222316, -74.151944658409 40.617604830085455)), ((-74.1521738365881 40.61763275289505, -74.15218529544616 40.61761587905246, -74.15246173417937 40.61763686502657, -74.15246208407233 40.6176374228862, -74.15246230943264 40.617637784597136, -74.15246292645462 40.617638882415676, -74.15246350806511 40.61763999829164, -74.152464030629 40.61764113225633, -74.15246449412572 40.617642275304554, -74.15246492221094 40.61764343641022, -74.15246527939082 40.61764459760992, -74.15246560115924 40.61764577686703, -74.15246566208904 40.61764606585379, -74.15246585202235 40.61764695621814, -74.15246605563583 40.6176481446372, -74.15246621199968 40.61764934212412, -74.15246630927577 40.61765053968938, -74.15246634746408 40.617651737333055, -74.1524663383822 40.61765293503942, -74.15246627021254 40.61765413282414, -74.15246615477267 40.617655330671546, -74.15246598022446 40.617656519592146, -74.15246574658846 40.617657708591125, -74.15246546564111 40.6176588796424, -74.15246513744415 40.61766005976152, -74.15246475009765 40.61766121294348, -74.15246430366335 40.61766236620381, -74.15246380993825 40.61766351052163, -74.1524632688812 40.617664627886526, -74.15246266873636 40.61766574532983, -74.15246202125958 40.61766683582025, -74.1524613264714 40.617667908362975, -74.15246058439241 40.617668971963134, -74.15245979498147 40.61767000861046, -74.15235266862813 40.61780985762578, -74.15225106609086 40.61795208560609, -74.15219320747079 40.618030075385505, -74.1521321428529 40.61810662854271, -74.15206790747787 40.618181654973796, -74.15200058393998 40.618255100532956, -74.15193023111732 40.618326875084705, -74.15184762224325 40.61840343854908, -74.1517623029544 40.61847825851891, -74.15167434405234 40.61855128986873, -74.15158380446051 40.61862246047303, -74.15147123120413 40.618711154479264, -74.15145759187422 40.618721900367916, -74.15133588880818 40.61882456705981, -74.15121884861108 40.61893033428813, -74.15118758212405 40.61896316341535, -74.15115632744444 40.618996001523655, -74.15112201806141 40.619031554209926, -74.15108770862147 40.61906709788063, -74.15105341098318 40.619102650530635, -74.15101027904002 40.619145851201, -74.15096715887918 40.619189060844704, -74.15092403866252 40.61923227047199, -74.15088759322174 40.61926924871602, -74.15085115957872 40.61930623593797, -74.15081472587498 40.6193432141431, -74.15077517937613 40.61938336625607, -74.15073563285004 40.61942352736046, -74.15069609807391 40.61946367943042, -74.15069525265558 40.61946453243232, -74.15067631295132 40.61948375998602, -74.15065655143228 40.61950383150207, -74.15061700476343 40.61954399256515, -74.15061288980955 40.61954820339343, -74.15058118443687 40.61958057366175, -74.1505453522532 40.61961715476248, -74.1505095200302 40.619653735851955, -74.15047676519906 40.6196871880912, -74.15047369958583 40.619690316914664, -74.15043786730457 40.619726906986685, -74.15040212981154 40.61976362299637, -74.15039664715677 40.61976925843061, -74.15038848093667 40.619777647568874, -74.15035543877458 40.61981160984416, -74.15031421852214 40.61985396125815, -74.1502729982174 40.619896312657225, -74.15023425308495 40.619935752121194, -74.15021268974812 40.619957707104334, -74.15019550792695 40.61997520057712, -74.15015675090513 40.62001464903527, -74.15011800565554 40.62005409746477, -74.15007926036014 40.62009354588105, -74.15004394583626 40.620129333687906, -74.15000861945651 40.62016512149917, -74.14997330487712 40.62020091828924, -74.14993799023962 40.620236706063146, -74.14990267556423 40.620272493826064, -74.14986552223331 40.62031050826364, -74.14982835702186 40.62034851369923, -74.14979120358608 40.620386519107264, -74.14975405012824 40.62042453350836, -74.14971855895365 40.62046075369411, -74.14968306774055 40.620496973868775, -74.14964757648895 40.62053319403233, -74.14961208519881 40.620569414184764, -74.14957659387017 40.62060563432614, -74.14953603337668 40.62064750732142, -74.14949547283231 40.620689380302174, -74.14945491223705 40.62073125326846, -74.14941435159089 40.62077312622028, -74.14937379089386 40.620814999157545, -74.14933321830765 40.620856863090516, -74.14929330512916 40.6208976725422, -74.14926897395713 40.6209225378237, -74.14925338006361 40.62093847298998, -74.14921346676734 40.62097927340841, -74.14917354160417 40.621020073828156, -74.14913361639218 40.621060874233855, -74.14909544741144 40.621099601147925, -74.14905726654808 40.621138319059305, -74.14901908564046 40.62117703695788, -74.14898090470861 40.62121576384877, -74.14894272371241 40.621254481721635, -74.148904542692 40.62129320858691, -74.14886636160713 40.62133192643409, -74.14882550583562 40.62137427683314, -74.14878465003231 40.62141663622273, -74.14874378233884 40.621458986607664, -74.14870292641177 40.621501336962645, -74.14866207043283 40.62154368730287, -74.14862120258381 40.62158603764371, -74.14858655354308 40.621624174496255, -74.14858281629662 40.62162828570504, -74.14854441812248 40.62167052476348, -74.14850603173811 40.621712772798816, -74.14847346929328 40.621748610591126, -74.14846763348685 40.62175502083644, -74.14842924700523 40.621797268845775, -74.14839084865676 40.621839516857364, -74.14835202864369 40.621883494401416, -74.1483132204177 40.62192748092211, -74.14827440030234 40.62197145843954, -74.1482355801558 40.62201544494886, -74.14819675993803 40.62205942243968, -74.14816342451938 40.62210390614568, -74.14813008907628 40.62214839884701, -74.14809674175034 40.622192882548504, -74.14806340619836 40.62223736622489, -74.14803007060196 40.62228184989141, -74.14799585000016 40.62232697405759, -74.14796162935208 40.62237209821337, -74.14792740865775 40.62241722235874, -74.14789318789711 40.62246233748853, -74.14785897892865 40.62250746159792, -74.14783467554032 40.62253950729292, -74.14776474325524 40.62250741616395, -74.14790676566871 40.62222960995193, -74.14790942717721 40.62222641237785, -74.1479095413644 40.62222620871305, -74.14791058942713 40.62222450537891, -74.14791170847985 40.62222283797432, -74.14791291032095 40.622221197478815, -74.14791417131366 40.622219583922835, -74.14791551511462 40.622218006281194, -74.14791692990558 40.62221646456903, -74.14791841570641 40.62221496779159, -74.14791996065887 40.62221349795363, -74.14792076274085 40.62221279001221, -74.14792156482275 40.62221208207073, -74.14792323997663 40.62221070211737, -74.14792497432201 40.62220936711391, -74.14792676785893 40.62220807706029, -74.14792862058734 40.622206831956575, -74.14793052070888 40.62220564082317, -74.14793248002198 40.6222044946396, -74.14793448672815 40.622203402426294, -74.1479365408275 40.622202364183266, -74.14793864231997 40.62220137991054, -74.14794077938717 40.62220044962325, -74.14796883862776 40.622180196802915, -74.14799690964976 40.6221599349553, -74.1480283880545 40.62212002833861, -74.14805987822 40.622080112692714, -74.14809136836777 40.6220402060432, -74.14812331247042 40.62200250507774, -74.14815525655692 40.621964813108484, -74.14818720058739 40.62192711212498, -74.14834763069598 40.62173923652043, -74.14851347878866 40.62155410928408, -74.14868466231387 40.62137182055158, -74.1487223359059 40.62133335556764, -74.1487600094344 40.621294881565994, -74.1487976829396 40.62125641655708, -74.14883536819943 40.62121794251516, -74.14887304161776 40.62117947748119, -74.14891071497253 40.621141003429564, -74.14895371867985 40.62109740749598, -74.14899672233098 40.62105381154613, -74.14903973774405 40.62101021556462, -74.14908274128283 40.620966619582184, -74.14912574476537 40.620923023583465, -74.149165481011 40.62088231347718, -74.1492052054101 40.6208416123775, -74.14924494155875 40.62080090224339, -74.14928467765891 40.620760192095425, -74.14932441373075 40.6207194909387, -74.1493641379159 40.62067878077823, -74.1493984452597 40.620643632961894, -74.14940387387072 40.62063807058849, -74.14944233592495 40.620598478687754, -74.14948080975161 40.620558886758594, -74.14951927171462 40.620519294831794, -74.14955774547019 40.620479711881764, -74.14959620734194 40.62044011992884, -74.14963468098607 40.62040052794754, -74.14967314276652 40.6203609359686, -74.14970826668772 40.62031906099823, -74.14974337874685 40.62027718603232, -74.14977850257993 40.62023531104013, -74.14981361455092 40.620193436052375, -74.14984873829587 40.620151561038334, -74.14988050164797 40.620113680606515, -74.14988385017877 40.6201096860288, -74.1498919516605 40.62010084044669, -74.14992097408816 40.62006915016178, -74.1499580979524 40.62002861428262, -74.14999522177165 40.6199880783913, -74.15003233374804 40.6199475515084, -74.15006945747704 40.61990701559277, -74.15010658116101 40.61986647966497, -74.15014802528346 40.61982376782453, -74.15018945755521 40.61978106498962, -74.15023088975362 40.61973835313432, -74.15027232191933 40.61969565026915, -74.1502838236422 40.61968379697388, -74.15031376582968 40.61965293836818, -74.15035519788935 40.61961023547278, -74.15038802749355 40.61957639054262, -74.15039662987571 40.61956752355703, -74.15043581161527 40.61952793037636, -74.15047499332866 40.61948834618732, -74.15049830777797 40.6194647904349, -74.15051418679312 40.61944875296413, -74.15052635042593 40.61943646112392, -74.15055336839319 40.61940915974291, -74.15059254994681 40.619369566508176, -74.15063173145397 40.6193299732599, -74.15065910660066 40.61930231027635, -74.15067091291462 40.61929037999811, -74.15070929222047 40.619251454160576, -74.15074765964346 40.619212519320335, -74.15078602704196 40.619173593472354, -74.15080426274262 40.61915509264393, -74.15082439439574 40.619134667611405, -74.15086277350225 40.619095732716794, -74.1509011407665 40.61905680682989, -74.15093571841307 40.619021718526874, -74.1509395079657 40.619017871924854, -74.15097589398859 40.61898082169948, -74.15101227995076 40.61894376245731, -74.15104865407513 40.61890671222413, -74.15108343171636 40.61887129132057, -74.1510850399565 40.61886965295861, -74.1511214258178 40.61883260268664, -74.15116082901058 40.61879202739469, -74.151200232135 40.61875144308387, -74.15123177699459 40.61871894948079, -74.15123962341417 40.618710867780116, -74.15127902646317 40.61867029244715, -74.15131842944392 40.618629708095305, -74.15135783239711 40.618589132735025, -74.1513598202619 40.61858710034122, -74.1514002425075 40.618545770787684, -74.15140555998263 40.618540335438055, -74.15142062693151 40.61852492927495, -74.15144265256286 40.618502408824526, -74.15147479550006 40.618469542450114, -74.15148505076586 40.61845905586632, -74.15152746071102 40.618415693871476, -74.15156987060104 40.618372331860776, -74.15158893144 40.618352577191786, -74.15160980320394 40.618330945244516, -74.1516497357574 40.61828955861419, -74.15168966826127 40.61824817196978, -74.15171779545597 40.618219011970496, -74.151729588898 40.61820678532694, -74.15176952130284 40.6181653986545, -74.15180091192227 40.618130281875644, -74.1518322906705 40.61809515609849, -74.15186366938575 40.61806003031261, -74.15189505988555 40.61802490450248, -74.15192229596344 40.61799216155217, -74.15194953203508 40.61795942760046, -74.15196063831644 40.61794232371342, -74.15197919665745 40.61791374092505, -74.15200886125973 40.61786806324698, -74.15203852580092 40.617822376555814, -74.15206819032198 40.617776698861974, -74.15208152325006 40.61775867618639, -74.15209644664696 40.61773850275935, -74.1521003179863 40.617733269206234, -74.15210661037989 40.617724760852965, -74.15211451798768 40.61771406839716, -74.1521208009523 40.61770557266289, -74.15212628749873 40.61769815320556, -74.15213137347828 40.61769127459124, -74.15213179407013 40.61769070580524, -74.1521367257188 40.61768403811706, -74.15214224407667 40.617676578093345, -74.15214791205649 40.61766891615438, -74.15215372730289 40.61766105590534, -74.152164561372 40.617646409882816, -74.1521738365881 40.61763275289505)), ((-74.12697426905967 40.57854087004713, -74.12701379414764 40.578430069879836, -74.12703678203343 40.57842491777382, -74.12704665902447 40.57842292389563, -74.1270469718859 40.5784228605129, -74.12704823983576 40.57842259075427, -74.12707815899306 40.57841599283623, -74.12708139717154 40.5784152148028, -74.12708468939951 40.57841428992395, -74.12711890521956 40.57840394736173, -74.12711937500953 40.57840380365841, -74.12714591092309 40.57839561733787, -74.12714655540022 40.57839541580752, -74.12714755160391 40.57839509321756, -74.12721894800328 40.5783714861607, -74.12751588475936 40.57827792740466, -74.12751603702485 40.57827787950784, -74.12751749118543 40.57827740421759, -74.12795598316616 40.578129652008116, -74.12837298922409 40.57800433980339, -74.12837423922153 40.578003953882416, -74.12837445522294 40.57800388520118, -74.12845403781667 40.577978415847156, -74.12848952900153 40.57797864451524, -74.128455279398 40.57799207722601, -74.12843055598864 40.57800417910769, -74.128426811097 40.57800614643882, -74.12838933387343 40.57802584588996, -74.12836110496455 40.578045272042786, -74.12834843196109 40.578055587308285, -74.12833413337009 40.57806874284344, -74.1283204019808 40.578083283651345, -74.1283085178539 40.57809787282396, -74.12830051414284 40.578109107708464, -74.12829004390069 40.57812624288564, -74.12828314414531 40.57813976657143, -74.12827687279119 40.578154561997174, -74.1282713500469 40.578171109008494, -74.12826774379447 40.578185620494175, -74.12826500924618 40.57820202030816, -74.12826375660083 40.57821640489348, -74.12826352789763 40.57822892514917, -74.12826513610868 40.578251475203565, -74.12826781665706 40.578267225096226, -74.12827167738048 40.57828251260227, -74.1282775341159 40.57829965296123, -74.12828356191808 40.57831361967842, -74.12828932955446 40.57832495264991, -74.1282986249118 40.5783405294584, -74.12830844399554 40.57835452796127, -74.12832063294074 40.57836947657187, -74.12833093301579 40.57838055233166, -74.12834128516475 40.57839168206385, -74.12835964789146 40.578407425240606, -74.1283774850901 40.578421958695934, -74.12839463588446 40.578434537875644, -74.1284151561984 40.57844708356924, -74.12843446138552 40.578457880897304, -74.12845685392983 40.578468088528346, -74.12848063478503 40.578477355354764, -74.12849901089437 40.57848345026855, -74.12851923800055 40.57848906853206, -74.1285368940772 40.578492921937794, -74.12855851675658 40.578497077981325, -74.12858029307363 40.578499443604954, -74.12860466468224 40.578501449711396, -74.12863088701137 40.578502223623296, -74.12865526687173 40.5785017676742, -74.12867817027706 40.57850002202065, -74.12871003759801 40.578495632284564, -74.12871906941868 40.57849390396379, -74.12870229654956 40.57849974374907, -74.12860714387423 40.57853157490301, -74.12853740080662 40.5785543191703, -74.12853673982148 40.57855453333426, -74.12853311285693 40.578555808032974, -74.12852896113144 40.578557505664946, -74.12852559813307 40.57855908624664, -74.12852496215292 40.578559405744, -74.12846320090928 40.578590252065744, -74.12844958421084 40.57859568845169, -74.1284438091955 40.57859774090127, -74.12843000714652 40.578602604758174, -74.12782394001583 40.578790203558206, -74.12782337344258 40.57879038159205, -74.12782046279987 40.57879136280059, -74.12767189230112 40.578844465364895, -74.127670513778 40.57884497209135, -74.12766778521507 40.578846057554564, -74.12753616319888 40.57890118980207, -74.12753473999406 40.57890180193792, -74.1275307421512 40.57890370378206, -74.12752785267448 40.57890525949464, -74.12724951244827 40.57906315369702, -74.1271629402606 40.57909947497145, -74.12712918307112 40.57904876774648, -74.12710747544692 40.5790161594404, -74.12704854860243 40.57892764357657, -74.12702301219714 40.57888208723688, -74.12699196252794 40.57880482139482, -74.12697315022521 40.578748179351926, -74.12696619990514 40.57870794076847, -74.12696325163664 40.57867297934116, -74.12696531115331 40.57859766165344, -74.12697426905967 40.57854087004713)), ((-74.12945387740764 40.57477490326492, -74.1309089457492 40.574269852563695, -74.1310146464285 40.574455111532835, -74.13115460231309 40.57470040805213, -74.13117224573368 40.574728317703844, -74.13087062464618 40.574828451628186, -74.13065163606373 40.57490133546813, -74.13043239089335 40.574974304730844, -74.13022117440724 40.57504460071949, -74.1302137982309 40.57504721790245, -74.13021351146685 40.575047330793176, -74.13004596676748 40.5751108680357, -74.13004567763385 40.57511097732658, -74.12987303679462 40.57517645171183, -74.12981567026176 40.57519877843823, -74.12980179506197 40.57520508968928, -74.12979426729305 40.57520872190858, -74.12978683122705 40.57521274845392, -74.12977370123059 40.57522027186727, -74.12977214759478 40.57522117324718, -74.12976360043625 40.57522653832628, -74.12975553120894 40.57523231800712, -74.12974797411472 40.575238487936964, -74.12974485696442 40.57524128578767, -74.12973625340709 40.57524923453567, -74.12973235979211 40.57525296980927, -74.12973152058818 40.57525383165922, -74.12950303437356 40.574859680955136, -74.12947949150967 40.57481906678155, -74.12945409776603 40.5747752605252, -74.12945387740764 40.57477490326492)), ((-74.12817438144053 40.58144644452771, -74.12857917100845 40.58124115164172, -74.12877184946953 40.58142358389691, -74.12892489259521 40.58159665973178, -74.12892819584708 40.58160015366343, -74.1289285200905 40.581600472985876, -74.12903303188948 40.58170275073318, -74.12903645141327 40.58170589782905, -74.1290404025683 40.58170911006605, -74.1291610584261 40.58180106305656, -74.12916113886082 40.58180112420181, -74.1291654440783 40.581804188350375, -74.12916937728495 40.58180666397378, -74.12926544460291 40.58186372034263, -74.12924618603078 40.581886744114016, -74.12915750520202 40.58197003342044, -74.12880130503642 40.5822238814916, -74.12864365944002 40.582345918925014, -74.12853919669458 40.58224724827652, -74.12848573094827 40.58218920982442, -74.12842247810296 40.58212054708976, -74.12839323253708 40.58208879935577, -74.12814694752606 40.581770185883514, -74.1279848370767 40.58153716667859, -74.12817438144053 40.58144644452771)), ((-74.15272194943138 40.614345752161896, -74.15271851521923 40.61431984239299, -74.15287554840043 40.61434849539526, -74.15288092866841 40.61437377220565, -74.15289082592335 40.61443332859499, -74.1528980058237 40.61449312273349, -74.15289924952621 40.61450987259569, -74.15290245633892 40.614553064585344, -74.1529041654797 40.61461308212508, -74.15290313311482 40.61467312132156, -74.15289935901009 40.61473308311767, -74.15289285487196 40.61479292247132, -74.15288363228338 40.61485254030928, -74.15287282421181 40.61489581577494, -74.15286201610556 40.61493908223424, -74.15285382512131 40.614971872137936, -74.15283693527516 40.614995769242874, -74.15280806666098 40.61502339422275, -74.1528005057168 40.6150366644643, -74.15278558219335 40.615071398534404, -74.15277473668881 40.615111786064574, -74.15273565136097 40.615257885606816, -74.15272181184645 40.615309348129934, -74.15266164232334 40.61553307995914, -74.15260276112895 40.61574934291067, -74.15259090867212 40.61579287548016, -74.1524802796813 40.61618943755231, -74.15247777015422 40.61619740509917, -74.15244652595622 40.616296599432545, -74.15239553683607 40.616435487034636, -74.1523474165895 40.61655617395893, -74.15232608420212 40.61660967703434, -74.15229282392967 40.6166929878819, -74.15226550025429 40.61675022074038, -74.1522524921254 40.61677789840744, -74.15222093551064 40.61684503810167, -74.15218679316496 40.61692409601786, -74.15214923868113 40.617016997662944, -74.15212926144937 40.61707620281206, -74.1521260491136 40.61708538608483, -74.1520943554551 40.61717600163317, -74.15208884075118 40.61718919887633, -74.15208722230797 40.61719307326251, -74.15206634468316 40.61724303303014, -74.15203507281898 40.61730202707086, -74.15203678306348 40.617316663695554, -74.15200767684104 40.61736300433015, -74.15200309524681 40.6173702983135, -74.152000564908 40.617373841611524, -74.1519939657518 40.61738307708622, -74.15199058489472 40.617387810197684, -74.15198792144734 40.617391542781085, -74.15198118565155 40.61740097474947, -74.15197583518292 40.61740846786305, -74.15196998641927 40.61741665863918, -74.15196370532907 40.617425455137365, -74.15196084042857 40.617429464446644, -74.15195701175173 40.61743474746754, -74.15195227008468 40.61744129152552, -74.15194677916976 40.617448867671406, -74.15167591639346 40.617450022342844, -74.15166647650595 40.61742296510534, -74.1516675322125 40.61742054040764, -74.15168830625008 40.61737840458608, -74.15169100710281 40.61737292404703, -74.15170906846434 40.617336277781334, -74.15172264210437 40.61730873180818, -74.15172983063192 40.61729414196749, -74.15175060459084 40.61725200613409, -74.15176007518004 40.617232787296984, -74.151771366706 40.61720987031238, -74.15179408584603 40.617165687717396, -74.15181680495601 40.617121505117694, -74.15183951223898 40.61707733153412, -74.15186223128882 40.617033148925046, -74.15188495030857 40.61698896631124, -74.15190766929824 40.61694478369281, -74.15193082376021 40.61689983505033, -74.1519464106462 40.61686957581684, -74.15195397819097 40.61685488640291, -74.15197713257005 40.61680992874547, -74.15200028693846 40.61676498008832, -74.15202505055707 40.61671576982844, -74.15204980232174 40.61666655957859, -74.15207456586734 40.61661734930756, -74.15209931757958 40.61656814805175, -74.15212228719511 40.61651998474914, -74.15214524496018 40.61647182145734, -74.1521682026921 40.61642365816071, -74.15219117222875 40.61637550384877, -74.15219292458754 40.61637128888612, -74.15220663906901 40.616338309815916, -74.1522221059126 40.616301124786006, -74.15223757273891 40.616263939753885, -74.1522522355402 40.61622656667476, -74.15226691014242 40.616189193577966, -74.15228158472816 40.616151820479196, -74.15229545531149 40.61611426833912, -74.15230932589976 40.61607672520245, -74.15232319645183 40.61603917305872, -74.15233626302413 40.61600145087943, -74.15234932960222 40.61596373770368, -74.15236239616549 40.61592602452632, -74.1523753947476 40.6158844211815, -74.15238839333405 40.61584282684024, -74.15240140372156 40.61580123248168, -74.15241441409277 40.61575963812143, -74.15242743626506 40.615718043743875, -74.15244044660389 40.61567644938037, -74.15244661750457 40.61565675938308, -74.15245348058149 40.61563486398903, -74.1524665145222 40.61559326959084, -74.15247953662956 40.61555167520671, -74.15248345326765 40.61553840531882, -74.1524950857208 40.615498910992855, -74.15251062297027 40.61544614679227, -74.15252617201232 40.61539338257358, -74.15252762604283 40.615388436777145, -74.15254170921263 40.615340618368236, -74.15255724638844 40.61528785416049, -74.15257266936139 40.61523683711514, -74.15258808051424 40.61518582908827, -74.1526035034401 40.61513481203822, -74.15261891452525 40.61508379500151, -74.15263120567292 40.61504303004872, -74.1526434849679 40.61500225610496, -74.15265187288266 40.6149744053197, -74.15265193860319 40.61497420621701, -74.15265576424788 40.61496148215974, -74.15266804351286 40.61492070821299, -74.15267884297306 40.614878774556516, -74.15268963058205 40.61483683190937, -74.15269678599753 40.6148084919728, -74.1527039413863 40.61478014303051, -74.15270966649523 40.61475161588337, -74.15271539159924 40.61472308873583, -74.15271838294366 40.614703138192446, -74.15271968648761 40.61469441039934, -74.15272398139284 40.61466574106777, -74.15272683435019 40.61463695658393, -74.15272968732572 40.61460818110507, -74.15273046651974 40.6145923668978, -74.15273109847944 40.6145793445053, -74.15273250961128 40.614550498900186, -74.15273247902688 40.61452163720018, -74.15273246543933 40.61451053377786, -74.15273243662553 40.61449277551574, -74.15273153024482 40.6144633296397, -74.15273062384428 40.61443387475834, -74.15272822860828 40.61440446688122, -74.15272813143524 40.61440331434172, -74.15272583339507 40.614375068009146, -74.15272194943138 40.614345752161896)), ((-74.12729167216825 40.579971047788135, -74.12745850628477 40.5798634653173, -74.12752667667 40.57999473123097, -74.12768748829438 40.580238775878584, -74.12769003215347 40.58024236614575, -74.12769061706695 40.580243125538686, -74.12793852196668 40.58055996238638, -74.12794064462558 40.58056254272802, -74.12808746867847 40.58073255582301, -74.12808787824324 40.58073302634094, -74.12808909027079 40.58073436947333, -74.12829198016078 40.580953697364414, -74.12829362402682 40.580955418232875, -74.12846844984345 40.58113247588937, -74.12809587372104 40.58132143117584, -74.12791295663924 40.58142560866642, -74.12777144635375 40.58119006546046, -74.12764237217014 40.58094607304408, -74.12761153045967 40.58087529183078, -74.1274838210159 40.58058146897124, -74.12743420732048 40.58043893490135, -74.12737849588018 40.58027846731194, -74.12729167216825 40.579971047788135)), ((-74.14625577893928 40.625018481032825, -74.14626135459933 40.62501825601342, -74.14625224303786 40.62504451239565, -74.14625077846637 40.62504873139969, -74.1462497155682 40.62505179452403, -74.14624879008441 40.62505446214467, -74.1462480818821 40.625056505427715, -74.14624741594945 40.62505842168351, -74.1462473301887 40.625058657729184, -74.14624629401781 40.625061512799064, -74.1462451239148 40.62506473455143, -74.14624383750736 40.625068277037286, -74.14624239132408 40.625072258280184, -74.14624079946465 40.62507664044037, -74.1462317323413 40.625101609018905, -74.1462315079503 40.62510222526082, -74.14621558929332 40.62514602884926, -74.14619967059573 40.62518982343014, -74.14618376371585 40.62523362699873, -74.14616784497643 40.625277421574765, -74.14614919222716 40.625330269862026, -74.14613055124748 40.62538310912575, -74.14612348361503 40.62540313039147, -74.14611189841936 40.6254359484012, -74.14609325740037 40.62548879666348, -74.14607460451319 40.62554163593228, -74.14605596341549 40.62559447518274, -74.14603731048895 40.625647323450124, -74.14602094192348 40.62569628756654, -74.14601627911414 40.62571023805889, -74.14600457333398 40.62574525168037, -74.14598820472042 40.625794215791615, -74.1459718360829 40.62584317990028, -74.14595546742136 40.62589214400635, -74.1459390987358 40.625941108109856, -74.14592273002621 40.625990072210726, -74.14592120469639 40.62599463078368, -74.14590538661194 40.62604191921366, -74.14588804315102 40.62609375720848, -74.14587071150191 40.6261456041906, -74.1458533680068 40.6261974511848, -74.14583602448474 40.626249298176084, -74.14581869275483 40.62630114514954, -74.14581510838886 40.626312676365764, -74.145808845713 40.626332819960375, -74.14580212056762 40.62635443199053, -74.14578556015344 40.62640770980868, -74.14576899971283 40.62646098762414, -74.14575243926544 40.62651427444209, -74.14573587877194 40.62656755225218, -74.14572353404847 40.626619158752156, -74.1457111774671 40.6266707562603, -74.145707910912 40.62668441320019, -74.14569883270545 40.6267223627571, -74.1456864879247 40.62677396925225, -74.14567414310527 40.62682556674065, -74.14567156712633 40.62684154975057, -74.14566685480277 40.626870791137065, -74.14565955465153 40.62691600654261, -74.14565225451005 40.62696123095268, -74.14564495433909 40.62700644635689, -74.14563845800264 40.62705172377862, -74.14563194983813 40.62709700121467, -74.1456275384644 40.62713363999771, -74.14562312710542 40.62717028778562, -74.14561870390276 40.62720692658301, -74.14561507272272 40.627243627413364, -74.14561142971938 40.62728032825849, -74.14560779853136 40.62731702908839, -74.14560521933318 40.62735376460656, -74.14560262831283 40.627390500139455, -74.14560004910892 40.62742723565724, -74.14559860575264 40.62746451905418, -74.14559717423363 40.62750181144117, -74.14559573087406 40.627539094837786, -74.14559538546277 40.627575263799905, -74.14559537498782 40.62757642188317, -74.14559501908154 40.62761373992316, -74.14559466317492 40.627651057963064, -74.14559535916867 40.627688365665485, -74.14559605514363 40.62772566436259, -74.14559675113898 40.62776297206474, -74.14559937416303 40.62781674785463, -74.14560198539154 40.62787053266436, -74.14560253301111 40.627877750546816, -74.14560606216769 40.62792428860207, -74.14561015076976 40.62797804452433, -74.14561526752803 40.62803173610753, -74.14562039611393 40.62808542767521, -74.1456252949725 40.62812591789656, -74.14562681518451 40.628138482740574, -74.14563019385673 40.62816641712269, -74.14563509274684 40.62820691634847, -74.14564088980174 40.628247360404856, -74.14564668686366 40.62828780446073, -74.14565247211317 40.62832824853116, -74.14565621284363 40.62835418239642, -74.14565830462786 40.628368683536046, -74.14566412534978 40.62840912756063, -74.14566995787858 40.62844956256456, -74.14567545834879 40.62848948469187, -74.14568095880593 40.62852939781356, -74.14568645928931 40.628569319939984, -74.14569199523774 40.62860924202106, -74.14569374974114 40.628621917330776, -74.14569751935365 40.62864915511149, -74.14570305529566 40.6286890681865, -74.14570860308348 40.62872899025129, -74.14571415085827 40.628768903310444, -74.14571969863974 40.62880881636918, -74.14572713111778 40.628862018726544, -74.14573180663812 40.62889544013453, -74.14573457544692 40.628915230073325, -74.14574201976828 40.628968432414155, -74.14574946410146 40.629021634754174, -74.14575684936833 40.62907484617353, -74.14576422280773 40.62912804860191, -74.14577135473331 40.629178900976406, -74.1457784984697 40.629229744329955, -74.14578557131892 40.62928059677792, -74.14579264415929 40.629331440220014, -74.14579906704873 40.62938233851682, -74.14580548992828 40.629433227807844, -74.1458098057824 40.62947186368224, -74.14581410980226 40.62951049056612, -74.14581803567657 40.62954915395016, -74.14582197335542 40.62958780831368, -74.14582552102898 40.629626481181994, -74.14582802880965 40.62965390336179, -74.1458290568869 40.629665154065016, -74.14583251918081 40.62970802346796, -74.14583598147925 40.629750892870554, -74.14583895921353 40.62979378089792, -74.14584193697138 40.629836677930236, -74.14584443014424 40.62987958458213, -74.14584691150048 40.629922491248806, -74.14584895032247 40.629968424226284, -74.14584903607042 40.62997034222674, -74.14585098914722 40.630014357203535, -74.14585246066609 40.63006030891059, -74.14585393218701 40.630106260617424, -74.14585509639596 40.63015221271385, -74.1458562606262 40.630198173815174, -74.14585717208858 40.63023718411749, -74.145857225527 40.630239461466616, -74.14585817860925 40.63028074913284, -74.14585889529671 40.630322037098786, -74.14585960016525 40.63036332507948, -74.14585977316277 40.63040462273999, -74.14585994614083 40.63044591139513, -74.14585932964215 40.63048291457303, -74.14585872498229 40.630519926741, -74.14585810848224 40.63055692991863, -74.14585805738204 40.63055842664884, -74.14585684189002 40.63059393392078, -74.14585557529634 40.63063093792279, -74.14585430872093 40.630667950929826, -74.14585273478824 40.63070494631615, -74.14585114903399 40.63074194171734, -74.14584956327792 40.63077893711836, -74.14584704646829 40.63083340380121, -74.14584592880472 40.63085743111044, -74.14584537357955 40.630869472676586, -74.14584465471548 40.630885060700656, -74.1458299483679 40.63088236068236, -74.14581476785078 40.630879573012464, -74.14580405587986 40.63087760635204, -74.14576425167085 40.63087029776656, -74.14575352787712 40.63086832841485, -74.14573681370865 40.630865259915346, -74.1457375198732 40.630849257668544, -74.1457380739967 40.63083670280756, -74.14573905357693 40.630814377658496, -74.14574137358717 40.63076176630001, -74.14574237704447 40.6307287258249, -74.14574244870748 40.63072636006627, -74.14574269677054 40.63071817041673, -74.14574272985058 40.630717080744816, -74.14574521191535 40.63061906402667, -74.14574589802045 40.63058738373957, -74.14574664200575 40.63054377958445, -74.14574738599 40.63050017542913, -74.14574811241062 40.630459353904826, -74.14574833307428 40.630446737330004, -74.14574882701051 40.6304185323953, -74.14574937613223 40.63037771109536, -74.14574992525327 40.63033688979527, -74.14574989520376 40.63029606922916, -74.14574985333448 40.630255248677905, -74.14574887966964 40.63020991769876, -74.14574865519079 40.63019967906261, -74.14574789418633 40.63016458673439, -74.14574618769886 40.63011925668374, -74.14574448123342 40.63007393563803, -74.14574232561989 40.63002861516146, -74.14574015820924 40.62998330370475, -74.1457381891979 40.62994765458401, -74.14573622018864 40.6299120054631, -74.14573396752787 40.629876365706764, -74.14573385487918 40.62987457651479, -74.14573171486956 40.62984072595027, -74.14572921403908 40.629805104518525, -74.14572671319168 40.62976947408145, -74.14572369511411 40.629729728919784, -74.14572066520086 40.629689974767665, -74.14571733983848 40.62965023900018, -74.14571400266047 40.6296105032474, -74.14571022823739 40.62957080406932, -74.14570644197954 40.62953109590075, -74.14570042982623 40.62947881928229, -74.14569441766268 40.62942653365807, -74.14568762555054 40.629374312058005, -74.14568082160976 40.62932208146706, -74.14567402949929 40.629269850860375, -74.1456672255798 40.629217620268044, -74.14566068932783 40.62916888335672, -74.14565414124617 40.62912013745454, -74.14564759319371 40.62907140055695, -74.14564104515084 40.6290226636587, -74.1456345089371 40.62897392674487, -74.14562796089369 40.62892518084021, -74.14562141287949 40.62887644394011, -74.1456148766944 40.62882770702438, -74.14560838077135 40.628781167327965, -74.14560189669646 40.6287346366212, -74.14559541261096 40.62868809690862, -74.14559285267113 40.62866975473913, -74.14558891671501 40.62864155721045, -74.14558243266727 40.628595026501856, -74.14557594860892 40.62854848678751, -74.14556929201595 40.628498705415815, -74.14556263543292 40.62844892404345, -74.14555740374614 40.62840973189283, -74.14555599067926 40.62839914265549, -74.14554933411614 40.62834936128188, -74.1455427321067 40.62830291176587, -74.14553613010646 40.62825646224931, -74.14552952809578 40.628210003726906, -74.14552292611393 40.628163554209095, -74.14551847348805 40.62812712476824, -74.14551679841522 40.62811345427912, -74.14551400902802 40.62809068633681, -74.14550954459243 40.628054256910254, -74.14550508014214 40.6280178184782, -74.14550150209162 40.62798135190844, -74.14549792402532 40.62794487633328, -74.14549554615976 40.62790593181158, -74.1454931682773 40.62786697828453, -74.14549179496441 40.6278279874652, -74.14549056222361 40.62779329735591, -74.14549040983378 40.62778899666065, -74.1454895801943 40.62774999614777, -74.14548873873639 40.62771099564964, -74.14548810097776 40.627667843491956, -74.14548746320031 40.62762468232888, -74.14548748730522 40.627581520328015, -74.14548751139047 40.62753834932179, -74.14548867020679 40.62749521290031, -74.14548953931997 40.627462861484545, -74.14548982902154 40.62745207647859, -74.14549170183913 40.62741658457635, -74.145493586474 40.62738109265899, -74.14549623939871 40.62734561777962, -74.14549888050138 40.627310142915, -74.14550244362115 40.627274720914535, -74.14550600671757 40.627239289908694, -74.14550604160598 40.62723902871349, -74.14550606465549 40.627238758528016, -74.14550609954391 40.62723849733277, -74.14550932909206 40.62721108768945, -74.14551056729954 40.627200579743686, -74.14551158855285 40.627191937051485, -74.14551504688895 40.62716267114454, -74.14551951465405 40.62712476255997, -74.14552411244519 40.62708686281576, -74.14552871021152 40.627048954065984, -74.14553331981142 40.62701105430614, -74.14553791758689 40.62697315456088, -74.14554251535714 40.62693525481532, -74.14554711312215 40.62689735506939, -74.14555677863382 40.626847381925245, -74.14556643231178 40.62679740879497, -74.14557609779446 40.626747435648646, -74.14558857002083 40.626700034437285, -74.14560105404864 40.626652633209325, -74.14561353807836 40.62660524098499, -74.14562602207072 40.62655783975389, -74.14563850604532 40.62651043852116, -74.14565099000214 40.626463037286854, -74.14566782542332 40.62641115494783, -74.14568464899926 40.626359272620995, -74.14569004125036 40.62634265477583, -74.14569318408171 40.626332966589246, -74.1457014843681 40.626307390276466, -74.14571831971077 40.626255507929194, -74.14573515502725 40.62620362557913, -74.14575197849851 40.62615174324133, -74.14576778607687 40.6261055354719, -74.14578359363342 40.62605932770001, -74.14579456495561 40.62602725613585, -74.145799401168 40.62601311992574, -74.1458152086807 40.62596691214911, -74.14583101615186 40.62592069536485, -74.14584682362083 40.62587448758341, -74.14586263106789 40.625828279799535, -74.1458800383771 40.625778638997616, -74.14588526880465 40.62576373143717, -74.14589745747942 40.62572899817781, -74.14591486473685 40.62567935737011, -74.14593227196839 40.625629716559565, -74.14594967919373 40.62558008475125, -74.14596708637349 40.62553044393487, -74.14598450534628 40.625480803100565, -74.146001187771 40.6254332316959, -74.14600191247423 40.62543116227839, -74.1460193195763 40.625381521453306, -74.1460353961757 40.62532879352765, -74.14605148456863 40.62527606558442, -74.14606756111728 40.625223337653686, -74.14608364945937 40.62517060970538, -74.14609178745049 40.62514391602028, -74.14609426817037 40.6251357847634, -74.14609972595716 40.62511788176953, -74.14610496313901 40.62510070667688, -74.14611537177227 40.6250665681968, -74.1461158036114 40.62506515382967, -74.14611603961718 40.62506444391896, -74.14611673939856 40.6250623313073, -74.14611741569995 40.62506029076717, -74.14611807673927 40.625058297073565, -74.14611872603459 40.625056337614666, -74.14611937533378 40.62505437995677, -74.14612002110704 40.62505243130861, -74.14612066101027 40.625050500678306, -74.14612099447173 40.62504949797438, -74.14612129857333 40.62504858085725, -74.14612959969126 40.625023532214044, -74.14613753537729 40.62502321234775, -74.1461425272417 40.62502301329081, -74.14618995347956 40.62502111412979, -74.14624920702637 40.625018742439586, -74.14624988537165 40.625018715461536, -74.14625577893928 40.625018481032825)), ((-74.14667424568842 40.622994684490095, -74.14670474083164 40.62295802137251, -74.14670545421613 40.62295566379755, -74.14670649009504 40.62295915199624, -74.14732952396297 40.62236488637698, -74.14733631767353 40.62235921519111, -74.14730781255435 40.62241157201918, -74.1473081307528 40.62241277110607, -74.14730796713967 40.622415213530026, -74.14728132330936 40.622467003339224, -74.14725528222716 40.62250810137872, -74.1472243723684 40.622554229656636, -74.14719347426548 40.62260034890572, -74.14716257611991 40.622646468146286, -74.14713361010232 40.62268983831497, -74.14710464402724 40.62273319947095, -74.14707567791453 40.62277656061946, -74.14704456185979 40.62282576889462, -74.1470168012006 40.6228696868092, -74.14701345757766 40.62287497714597, -74.14698234143123 40.62292418540376, -74.14695467634067 40.62296806715976, -74.14692701121366 40.62301194890891, -74.14689934603052 40.62305582164603, -74.14687468525621 40.62309493758577, -74.14687168083081 40.62309970338144, -74.14684881925633 40.62314063426912, -74.14682595765382 40.62318156515201, -74.14680309602326 40.62322249603023, -74.14678024618321 40.623263426888634, -74.14675738449652 40.623304357757405, -74.14675714789796 40.623304792110744, -74.1467307815241 40.62335304688581, -74.14670416667451 40.62340172701771, -74.14667756360461 40.623450407128125, -74.14666865744576 40.62346670081797, -74.14665094869717 40.62349909625238, -74.14662677456258 40.623545215771315, -74.14660258859577 40.623591344305154, -74.1465940981933 40.62360753660038, -74.14657840259552 40.623637472833714, -74.14655422836069 40.62368359233668, -74.14653344939639 40.62372585327536, -74.14651902534541 40.623755211545756, -74.14651268224418 40.62376812320018, -74.14649190322719 40.62381038413098, -74.14647112418393 40.6238526450578, -74.14645275060806 40.62389239046181, -74.14643437703005 40.62393214486792, -74.14643343835368 40.62393417583864, -74.14641600343016 40.62397189927097, -74.14639762978861 40.62401164466567, -74.14637403447932 40.62406318452979, -74.14635042731484 40.62411472440383, -74.14633028419844 40.624158722500276, -74.1463268319326 40.62416626425775, -74.1463032246952 40.624217804121535, -74.1462863951886 40.6242611226018, -74.14626956567989 40.62430445008464, -74.1462527361493 40.62434777756476, -74.14623590657715 40.62439109603705, -74.1462236191152 40.62443071659241, -74.14621897759572 40.62444569366223, -74.14621134343776 40.62447032812605, -74.14619905594664 40.6245099486785, -74.14618608373233 40.62456071855347, -74.1461730996795 40.624611488441765, -74.14616839709699 40.624629894771836, -74.14611932573925 40.62477961477946, -74.14611789051703 40.624783744592996, -74.14611383030721 40.624795423210294, -74.14611335004807 40.624796853848416, -74.14611221223264 40.624800248458584, -74.14590334687234 40.6248071739733, -74.14585953688398 40.624795881195205, -74.14585985304014 40.62479453001224, -74.14586022832974 40.624793196764635, -74.14586066271342 40.62479186344207, -74.14586115504868 40.62479054805638, -74.14586171951805 40.62478925058966, -74.14586233128236 40.62478796206809, -74.14587626591299 40.62473938828191, -74.1458902005234 40.6246908144938, -74.14590413511347 40.62464224070376, -74.14591806968332 40.62459366691177, -74.1459320042328 40.62454509311784, -74.1459474562114 40.62449864262581, -74.14596289634967 40.62445219214653, -74.14597834828521 40.62440574164988, -74.14599380019928 40.624359291150945, -74.14600924027306 40.62431284066474, -74.14603004698947 40.62426142148718, -74.14605085367377 40.6242100023056, -74.1460716603063 40.62415857411479, -74.14609246692655 40.6241071549251, -74.14611065762115 40.624064726258794, -74.14612884829262 40.6240222975894, -74.14614703894092 40.62397986891697, -74.14616522958585 40.62393744924661, -74.14618342018795 40.62389502056804, -74.14620275549952 40.62385182498749, -74.14622210262438 40.62380863839362, -74.14624144970453 40.623765442791125, -74.14626079677937 40.623722256190376, -74.14628364192045 40.623673571954846, -74.14630648704794 40.623624896719726, -74.14632933212236 40.62357621247463, -74.1463521771832 40.62352753722992, -74.14637727565037 40.62347707607893, -74.1464023622807 40.62342662394242, -74.14642746067197 40.62337616277997, -74.14645255904504 40.623325710616925, -74.14647374891663 40.62328761858159, -74.14649495058258 40.62324952652711, -74.14651615222436 40.623211434468594, -74.14654851287855 40.623163629566044, -74.14658087346665 40.62311581564899, -74.14661324584662 40.62306801071269, -74.14664373987502 40.62303134761305, -74.14667424568842 40.622994684490095)), ((-74.15361767684662 40.61450943523454, -74.15363625189185 40.614487292679875, -74.15375055996145 40.61450814812885, -74.1537457914384 40.61451210059584, -74.15371056851251 40.6145496094314, -74.15367784192152 40.61458841167071, -74.15364768234204 40.61462840816405, -74.15362463019626 40.61466048856458, -74.15362145214092 40.61466491527705, -74.15360158986614 40.614692577949796, -74.15357967316807 40.614725116090135, -74.15355775644863 40.614757654226246, -74.15353697513848 40.61479062309218, -74.1535162056455 40.61482360094364, -74.15349658329781 40.614856973489225, -74.15347696095114 40.614890355036515, -74.15345850936495 40.61492412224197, -74.15344005776011 40.61495788944433, -74.15342250961606 40.61499399679571, -74.15340494961525 40.615030095154886, -74.15339286389293 40.615057198993775, -74.15338869032432 40.61506656098968, -74.15337244281203 40.61510301780103, -74.15336203756038 40.61512862182573, -74.15335749590862 40.61513979706287, -74.1533425608266 40.61517658531202, -74.15332894990755 40.615213659959934, -74.15331924960869 40.61524007621166, -74.15331533899412 40.61525074361125, -74.15330306402214 40.61528809563587, -74.1532907890364 40.61532544765897, -74.15327984993296 40.61536304104034, -74.15326892263433 40.61540063440478, -74.15325770142151 40.61544918751569, -74.15324649203023 40.615497749614725, -74.15323527078478 40.615546302722976, -74.153224049523 40.61559485582988, -74.15321282826554 40.615643417940646, -74.15320161878832 40.61569197102912, -74.1531912735596 40.6157360743847, -74.15318094011378 40.615780168718196, -74.15317790562565 40.61579312317195, -74.15317060667498 40.615824272055754, -74.15317008004482 40.61582651505781, -74.15316026140526 40.61586837540794, -74.15314992791843 40.615912469738035, -74.15313856749431 40.6159622297198, -74.15313607547834 40.61597315637401, -74.1531272188705 40.61601198968441, -74.1531158584125 40.61606174966341, -74.15310450977552 40.616111518630476, -74.15309326617606 40.61616072012727, -74.15308202256003 40.61620992162268, -74.15307077894808 40.61625913212198, -74.1530595352989 40.616308333614725, -74.15304761887155 40.61635789621074, -74.15303571424384 40.6164074587895, -74.15302379778113 40.61645702138253, -74.1530118931387 40.616506592963525, -74.15300287236911 40.616546047840835, -74.15299898795507 40.6165630458639, -74.15299386338553 40.61658549369636, -74.15298369593812 40.61662478800397, -74.15297351666136 40.61666408232627, -74.1529622024703 40.61670318904801, -74.15295516779392 40.61672753051657, -74.15295088826599 40.61674229576854, -74.1529384391242 40.61678120588282, -74.1529259781505 40.61682011601135, -74.15291239399234 40.616858802501895, -74.15289879800108 40.61689748900644, -74.15287811186874 40.616946649005634, -74.15285742570602 40.616995809000855, -74.15283539156113 40.617044637591086, -74.15281335736339 40.61709345717166, -74.15278999875308 40.61714191829925, -74.15276662829137 40.61719037943753, -74.15274748161113 40.61722551623682, -74.15274585879351 40.61722849551918, -74.15272833489013 40.61726064402761, -74.15270802919035 40.61729540414063, -74.15268773526626 40.617330155229055, -74.15266629411714 40.61736451160766, -74.15264485294597 40.617398867982104, -74.15262228812107 40.6174328025989, -74.15261349772592 40.61744602222651, -74.15229975658224 40.61744736135867, -74.15230307326271 40.61744247793595, -74.15230695764427 40.61743675987754, -74.15230845894258 40.617434376007566, -74.15231418624636 40.61742528125092, -74.15231565692957 40.61742294604963, -74.15231833571461 40.617418692036075, -74.15232272185715 40.61741172698971, -74.15232772617594 40.617403778654456, -74.15233350410479 40.6173946027828, -74.15233388325369 40.61739399983107, -74.15234015101343 40.6173840452589, -74.15234782704351 40.617371853724194, -74.15235553486093 40.61735961081712, -74.15235660401972 40.61735791371702, -74.15235771909407 40.617356140912264, -74.15236601683495 40.617342964281704, -74.15237917758722 40.617322066431804, -74.15238310567142 40.61731582691054, -74.15240849223873 40.61727552190824, -74.1524427797357 40.61723108070561, -74.15247460699733 40.61718983780813, -74.15247706720758 40.61718664849773, -74.15251136643072 40.61714220725857, -74.15254565381129 40.61709777502982, -74.15256992345313 40.61704971797769, -74.15259419306005 40.61700166092014, -74.15261846263202 40.61695360385728, -74.15263996647722 40.61691105355212, -74.15264274400705 40.616905555778565, -74.15270527989311 40.61677033136781, -74.15274857919123 40.61666921004265, -74.1527547891468 40.61665470878748, -74.1527577324961 40.616647834792815, -74.15276364152012 40.61663403184166, -74.15281780542043 40.61649672027418, -74.15284510335383 40.61641094976924, -74.15287062720422 40.61633075584846, -74.1529100442259 40.61622045969698, -74.15292951373893 40.61616598102151, -74.15296872977886 40.616071202013046, -74.15298189343578 40.616039387956945, -74.1530150551362 40.61595792760713, -74.15304451606042 40.6158756436938, -74.15304473542209 40.61587493649178, -74.15307024101735 40.61579264432922, -74.15309220657146 40.6157090105942, -74.15310494660173 40.61566309400819, -74.15311769843167 40.61561717740475, -74.15313043842689 40.615571260815436, -74.1531431902217 40.6155253442088, -74.15315287587951 40.61549043786855, -74.15315593018185 40.61547942761622, -74.1531690268688 40.61542933212342, -74.15318212351542 40.615379227623635, -74.153195220163 40.61532913212738, -74.1532083286081 40.61527903661356, -74.1532175285373 40.61524259732487, -74.15322161674995 40.615226408589805, -74.1532219247333 40.615225185270035, -74.1532355208572 40.6151713429298, -74.1532491169592 40.61511750058766, -74.15326271303928 40.61506365824361, -74.15326738685239 40.615045704602636, -74.15327278177419 40.615027867067816, -74.15327886239422 40.61501016369672, -74.15328564054971 40.61499260347865, -74.15329311630218 40.614975213429105, -74.15329719825041 40.61496660349493, -74.15330127783416 40.6149579935637, -74.15331010159368 40.614940979934566, -74.15334671775499 40.614877048040675, -74.15336703179133 40.61484432387459, -74.15338585292643 40.61481400429045, -74.15342749538885 40.61475189372298, -74.1534715861761 40.61469077044573, -74.15361767684662 40.61450943523454)), ((-74.14592140537003 40.626832965240446, -74.14609335497398 40.62640701202309, -74.14609695671953 40.62643637614086, -74.14594661729662 40.627038518591334, -74.14586848618238 40.6273630034285, -74.14584370290841 40.62749905136195, -74.14584461435791 40.627633269256435, -74.14586567101105 40.62778382585937, -74.14599163475648 40.62885307148716, -74.14602419030808 40.62907443040012, -74.14615654544284 40.63042764680063, -74.14604675959457 40.6308826402084, -74.14604272307328 40.630898297285356, -74.14600982773243 40.630892681092654, -74.14603814368805 40.63055298223622, -74.1460351341659 40.63013751191315, -74.14601335657974 40.6297697840038, -74.14598713680738 40.629471488268834, -74.14595509362385 40.62917854450258, -74.14587916753733 40.62868631350428, -74.14581276517359 40.628176619158474, -74.14579355566278 40.628020006007574, -74.14578460008676 40.62792585619202, -74.14577963318274 40.62769516432878, -74.14578593980477 40.62748242896212, -74.14580168492996 40.62715646181504, -74.14581832675582 40.62710195828665, -74.14592140537003 40.626832965240446)), ((-74.14767314934964 40.622519812466436, -74.14768014695332 40.622510686597955, -74.14744941684292 40.623022787833975, -74.14745517778466 40.62302519294193, -74.14744391699597 40.623048694785034, -74.14742029424538 40.623097992607406, -74.1473966832983 40.62314729941469, -74.14737590575012 40.62318988469479, -74.14736851829534 40.623205022924765, -74.14735512815562 40.62323246096577, -74.14733436237302 40.62327504622283, -74.14731753202867 40.62330954245226, -74.14731561545175 40.623313471181554, -74.14731358474532 40.62331763149111, -74.1472928070713 40.62336020775023, -74.14726866650193 40.62340524673673, -74.14724451408138 40.62345028573309, -74.1472203616084 40.62349531571896, -74.14719622094127 40.62354035468958, -74.14717206842295 40.62358539367008, -74.14714792769071 40.623630432630165, -74.1471245757087 40.6236794418748, -74.14710121185392 40.623728442124374, -74.1470778598033 40.62377745135904, -74.14705450771841 40.623826460588695, -74.14703115559921 40.623875469813335, -74.14700780344572 40.62392447903298, -74.14698445125794 40.62397348824764, -74.14696108721718 40.62402249747242, -74.14693773494098 40.6240714976719, -74.14691948065723 40.62411701533915, -74.14691288064809 40.624133465491845, -74.1469012145497 40.6241625420236, -74.14688294839743 40.624208059699676, -74.14686469403897 40.62425357735758, -74.14684642783693 40.62429909502746, -74.14682817342869 40.62434461267914, -74.14680990717677 40.62439013034274, -74.1467938906425 40.62443754523068, -74.14677787406563 40.6244849511109, -74.14676185746606 40.62453235698868, -74.14674584086355 40.62457977186921, -74.14672982421847 40.62462717774202, -74.14671380757038 40.62467459261757, -74.1466977908798 40.62472199848551, -74.14668936920343 40.6247469302569, -74.1466763389068 40.624765205851155, -74.14665329984035 40.62477677182046, -74.14650359106967 40.624787270961036, -74.14643224822078 40.62478963656895, -74.14643244896129 40.6247890158541, -74.14643406191152 40.6247840204093, -74.14643524702353 40.624780104333894, -74.14643790354377 40.62477132266893, -74.14644052603175 40.62476265181138, -74.14644332335081 40.624753402596426, -74.14644648911234 40.624742937208325, -74.14644708635862 40.62474096250494, -74.14645049468959 40.62472954945937, -74.14645194953968 40.6247246793881, -74.14645799684072 40.62471157090108, -74.1464635301022 40.62469957701342, -74.14646973085095 40.624688535026564, -74.1464804570673 40.62466943301127, -74.14650634875356 40.624619439098986, -74.14653225220006 40.62456943616036, -74.14655126628388 40.62453067149839, -74.14657028034567 40.62449190683306, -74.14658930622393 40.62445315115459, -74.14659805785365 40.624435309673686, -74.14660832024148 40.6244143864827, -74.14663081672694 40.62436301907281, -74.14665332501625 40.6243116606484, -74.14667582143238 40.6242602932292, -74.1466983178139 40.62420892580528, -74.14671723655539 40.62416827824569, -74.14671925628808 40.624163936055844, -74.14674019473406 40.62411894630239, -74.1467611331518 40.62407395654491, -74.14678208334021 40.62402895776315, -74.14679176674805 40.62400815146118, -74.14680302170147 40.62398396799761, -74.1468239600345 40.62393897822803, -74.1468485993731 40.623889427089004, -74.14687180084258 40.62384278916685, -74.14687325049378 40.623839875929335, -74.14689790157784 40.623790324764116, -74.14692254080663 40.62374077360845, -74.1469471918175 40.6236912224322, -74.14697183097317 40.62364167126546, -74.14697254556117 40.62364039791521, -74.14699668259088 40.623597378866364, -74.1470215341756 40.6235530864617, -74.14704638572735 40.623508794051425, -74.14706058676751 40.623483483842676, -74.14707123724612 40.6234645016356, -74.14709608873187 40.623420209214196, -74.14712094016483 40.62337590778196, -74.14714705643264 40.62333173259931, -74.14714789242949 40.623330315909655, -74.14717484465729 40.62328472403075, -74.14720179686812 40.62323914115049, -74.14722874900247 40.62319354025333, -74.14723707248196 40.62317945714525, -74.14725568932113 40.62314795737518, -74.14728264140163 40.62310236547015, -74.14731048378886 40.623058564455384, -74.14733832613948 40.62301476343369, -74.14736616845356 40.62297096240504, -74.14739401073109 40.62292716136941, -74.1474218529721 40.622883360326874, -74.14743161423601 40.622868003824095, -74.14744969517659 40.622839559277395, -74.14748179768175 40.62279297914952, -74.14751388834361 40.62274640803278, -74.14754597894071 40.622699827901684, -74.147578069513 40.62265325676656, -74.14761016002053 40.622606676617075, -74.1476422505032 40.62256010546363, -74.14767314934964 40.622519812466436)), ((-74.15317203130682 40.61441397841823, -74.15317512143747 40.61440315542498, -74.1532472082393 40.614416308728124, -74.15324163470294 40.614437138936786, -74.15322851117914 40.61448573060675, -74.15321538765697 40.614534331280204, -74.15320226409494 40.61458292294668, -74.15318914051383 40.614631514611425, -74.1531760169136 40.61468010627443, -74.15316385477193 40.61473056974097, -74.15315169263246 40.614781042211206, -74.15313953045396 40.6148315056747, -74.15312738009477 40.614881978126064, -74.15311521787949 40.61493244158646, -74.15310249586138 40.61498614767113, -74.15309076861017 40.615035637984946, -74.15308976200568 40.615039853769865, -74.15308421907388 40.61506325221822, -74.15307703994667 40.61509355985114, -74.15306430607066 40.615147274951646, -74.15305737812882 40.61517684832287, -74.15305358644571 40.615193017746336, -74.15305197733133 40.615199884570146, -74.15304829451664 40.61521560538834, -74.15304286682667 40.61523876954505, -74.15303213537584 40.61528452135826, -74.15302141572745 40.61533027315451, -74.15301069604374 40.61537601594437, -74.15299728080433 40.615426381999946, -74.15298386554474 40.61547674805365, -74.15297045026483 40.61552711410558, -74.1529570349647 40.61557748015568, -74.15294632145867 40.615617703629255, -74.15294361964436 40.61562784620394, -74.15292979080478 40.61567825782658, -74.15291597376151 40.61572866943161, -74.15290214488019 40.615779081050384, -74.15288832779517 40.61582949265157, -74.1528744988721 40.61587990426656, -74.15286068174534 40.61593031586386, -74.15284668799868 40.61598101586119, -74.15284204450757 40.61599783928744, -74.1528326942308 40.61603171585657, -74.15281868860373 40.61608240686045, -74.15280469479335 40.61613310685188, -74.15279127952074 40.61617842995492, -74.1527797076428 40.61621751719164, -74.15277786420933 40.61622374405096, -74.15276444887975 40.61626905814526, -74.15275103353191 40.61631437223778, -74.15271244173545 40.616427036510785, -74.15269985168445 40.61646379183807, -74.15264272258824 40.616611958579384, -74.15263711908372 40.61662501368525, -74.15263095370453 40.61663938069707, -74.1526112785266 40.616685220883035, -74.15257972859933 40.61675872825999, -74.15251089302971 40.6169039747662, -74.15250723774862 40.61691115407534, -74.1524466931664 40.617030078986545, -74.15237821213678 40.617154874081905, -74.15230550880284 40.61727826991441, -74.15228384189075 40.61731061205286, -74.15227935115907 40.617317315184415, -74.15225319348475 40.61735636044836, -74.15222703580034 40.61739541471135, -74.15222637391133 40.61739640436106, -74.15222495236826 40.61739852427139, -74.15220711541312 40.61742515111276, -74.15220521571639 40.61742799027253, -74.15220400852387 40.61742979111397, -74.15220306868532 40.61743119537172, -74.15220224661537 40.617432421170165, -74.15220150463959 40.61743353069521, -74.15220081329637 40.61743456000673, -74.15220079562967 40.61743458614527, -74.15220006176389 40.6174356245183, -74.15219850214928 40.617437830160725, -74.15219644661254 40.617440736165335, -74.1521945512785 40.617443415926765, -74.1521914344037 40.61744782360617, -74.1520549087261 40.61744840590925, -74.15205785359723 40.61744422809417, -74.15206171255528 40.61743875321865, -74.15206338995159 40.617436372721016, -74.15206499784806 40.617434090472216, -74.15206557622116 40.61743327023204, -74.15206659284773 40.61743185326656, -74.15206840698832 40.61742932400185, -74.15207034246559 40.617426626178975, -74.15207218134475 40.617424062661605, -74.15207396721523 40.617421573957664, -74.15207571774386 40.61741913392869, -74.15207650112387 40.61741804236014, -74.15208932850679 40.617400159932586, -74.15211842069587 40.61735960605071, -74.1521335946579 40.61733845431934, -74.15219767406654 40.617242058661624, -74.15220922177629 40.61722324047113, -74.15225774376029 40.61714417341139, -74.15231375670889 40.6170448976946, -74.15236206669196 40.61695279311098, -74.15238221287485 40.61691438435383, -74.15244569033693 40.6167824277323, -74.15250414207716 40.61664912695795, -74.15250964352023 40.61663535337738, -74.15257575937171 40.61646982801711, -74.15259195021859 40.616423755624126, -74.15263938376317 40.616288783623325, -74.15268648091549 40.616133922214225, -74.15269490945046 40.61610621005568, -74.15270842008724 40.616056060038, -74.15272194254156 40.616005919007954, -74.15273545315827 40.61595577799181, -74.15274896373413 40.61590562796857, -74.15276248612753 40.615855486933, -74.15277599666273 40.61580533690611, -74.15278874553067 40.61575801552944, -74.15280150619775 40.61571069413547, -74.15280546559885 40.61569599595164, -74.1528142550089 40.61566336375037, -74.15282700382261 40.615616042368764, -74.15283976441475 40.61556871196466, -74.15285251319229 40.61552139057977, -74.1528652737483 40.61547406017238, -74.15287892409984 40.61542826847297, -74.15289258627038 40.6153824857612, -74.152905862491 40.61533794898323, -74.1529270743575 40.61526368351109, -74.15296544292384 40.61512934567806, -74.15297549077265 40.615094164210156, -74.1530189900441 40.61494535263789, -74.15307570096626 40.61475134334864, -74.15315804247321 40.61446297286622, -74.15317203130682 40.61441397841823)), ((-74.14636371376407 40.62505134687498, -74.1464505250638 40.625047181276145, -74.14649515639958 40.62505509222583, -74.1465328983808 40.625071557885775, -74.14653874580227 40.62510844118556, -74.14652298165205 40.62517408045851, -74.14589391937109 40.6267441006837, -74.14583305647987 40.62673331221394, -74.14628509040325 40.62529485242584, -74.14636371376407 40.62505134687498)), ((-74.14588002688117 40.62506663292811, -74.14601524460818 40.625058013483034, -74.14596115996055 40.62522114133926, -74.1458984963941 40.625314314059786, -74.14584290472614 40.6254543634098, -74.14567092886642 40.62596157665593, -74.14553321388335 40.62637058134703, -74.14545504965349 40.62668260365565, -74.14541181072394 40.62688024167575, -74.14537536202633 40.627111671245395, -74.1453479713356 40.627341447696814, -74.14533407858183 40.62754102881506, -74.14530380335164 40.62740205275678, -74.14529608457799 40.627231228275015, -74.14530941453907 40.62700547692408, -74.14535795185228 40.62667842737123, -74.1453885384144 40.62655024004557, -74.14543045185701 40.626384954924, -74.1454814255597 40.626218016669604, -74.14588002688117 40.62506663292811)), ((-74.1279646460329 40.57637452150772, -74.12807315216841 40.57619855773061, -74.12814595212626 40.57626647971326, -74.12824186539153 40.57643797767797, -74.12794660646321 40.57655549674243, -74.12791931525823 40.576523463933086, -74.12793022558704 40.576430338375765, -74.1279646460329 40.57637452150772)), ((-74.13080637097676 40.58237199483833, -74.1307491710817 40.58209269374021, -74.13105191302563 40.58232665366473, -74.13084296051787 40.58244633742292, -74.13080637097676 40.58237199483833)), ((-74.15332358728612 40.61446868301444, -74.15333331474689 40.614432019680066, -74.15352390042963 40.61446679291196, -74.15343707158583 40.61456100262541, -74.15334585768547 40.61460656019881, -74.15329503117106 40.61463580401499, -74.1532985129089 40.61459791439718, -74.15330352711034 40.6145583927899, -74.15331024330509 40.614519022001055, -74.15332358728612 40.61446868301444)), ((-74.15296648100488 40.61436739075399, -74.1529660501338 40.61436500854523, -74.15304696548735 40.61437977206582, -74.15303017252675 40.61444635203004, -74.15300784978265 40.614534856264704, -74.15298145341872 40.6145165261453, -74.15297975591461 40.614482757015736, -74.15297721914617 40.61445557902546, -74.15297436497019 40.614424995681944, -74.15296648100488 40.61436739075399)))",R047,6406,R047,R-02,R-02,R-02,R-02,Willowbrook Pkwy. from Walker St. to Hylan Blvd.,"501, 502, 503","49,50,51",120,"10302, 10303, 10306, 10314",R,198.481,False,Willowbrook Parkway,No,100004113,PARK,20100106000000.00000,19400130000000.00000,,DPR,True,Willowbrook Parkway,N,Willowbrook Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/R047/,No,"64, 63, 62, 61","23, 24",11,{B35091AA-1607-4FC6-9584-1CEE04DE617D} +"MULTIPOLYGON (((-73.97481077466689 40.58246294233124, -73.9748902192075 40.582368021097246, -73.97499244824827 40.582425777776876, -73.97527718014585 40.58258664053197, -73.97480668585487 40.58264381704437, -73.97481077466689 40.58246294233124)))",B523,5955,B523,B-13,B-13,B-13,B-13,Shell Rd. bet. Belt Pkwy. and Shore Pkwy.,313,47,60,11224,B,0.161,False,Victory Garden,No,100003995,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Park,N,Victory Garden,Greenthumb,Undeveloped,http://www.nycgovparks.org/parks/B523/,Yes,46,23,8,{B2D6D82C-F34E-4DAC-BBBB-14F98A6EAE75} +"MULTIPOLYGON (((-73.71748692011855 40.73256385013735, -73.71818257894856 40.7324263120363, -73.7184088359072 40.73303450276577, -73.71768956174452 40.73310710059705, -73.71748692011855 40.73256385013735)))",Q328,5347,Q328,Q-13,Q-13,Q-13,Q-13,85 Ave. bet. 248 St. and 249 St.,413,23,105,11426,Q,0.996,False,Bellerose Playground,Yes,100000229,PARK,,19461023000000.00000,248-05 85 AVENUE,DPR/DOE,False,Bellerose Playground,Y,Bellerose Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q328/,No,33,11,3,{C84280E9-F05B-4FF6-83F5-4414E23A1902} +"MULTIPOLYGON (((-73.93659161474059 40.82978399248015, -73.93577989586007 40.82945785046541, -73.93576334757444 40.82945868771435, -73.93573821333817 40.82945995961849, -73.93533883019165 40.82948017311412, -73.93529916526835 40.82916421216058, -73.9351906032661 40.82853956594768, -73.93523028506478 40.82848531539427, -73.93699636481767 40.82923062866996, -73.93674159603212 40.82957894297747, -73.93667730810353 40.829666836534585, -73.93666624819463 40.82968195607639, -73.93659161474059 40.82978399248015)), ((-73.93541697531849 40.83010265257606, -73.93611343899255 40.83039656673689, -73.9360654558359 40.83046172247121, -73.93602207158457 40.830485883003654, -73.93597386440439 40.830504017431664, -73.9359222705106 40.83051558625034, -73.93586882670678 40.83052024451973, -73.93581512294949 40.830517853545466, -73.93576276084804 40.83050848535841, -73.93571329913155 40.83049241818162, -73.93566821097346 40.8304701301029, -73.93562884013784 40.83044228554214, -73.93557985122519 40.83040204568573, -73.93553646984216 40.830358250186826, -73.93549913893953 40.830311347745834, -73.93546824215696 40.83026181854704, -73.93544409671259 40.83021017155286, -73.93542694867227 40.83015693369474, -73.93541697531849 40.83010265257606)))",M216,4896,M216,M-10,M-10,M-10,M-10,"W. 155 St., 8 Ave. To Harlem River Drive",110,9,32,10039,M,3.05,False,Holcombe Rucker Park,Yes,100003782,PLGD,20100106000000.00000,19560223000000.00000,2930 FRED DOUGLASS BLVD,DPR,False,Holcombe Rucker Park,Y,Holcombe Rucker Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M216/,No,71,30,13,{30807722-15A0-49EC-975D-D75C02F5A269} +"MULTIPOLYGON (((-73.74439054688156 40.74724724920996, -73.7445591728206 40.74719931543905, -73.74624093237917 40.74672123747669, -73.74637896422135 40.74702421376899, -73.7453962215972 40.74729536483775, -73.74537709181907 40.74723683261625, -73.74462572251372 40.747446531475866, -73.74475554863766 40.747717418934336, -73.74483584986517 40.74788497016191, -73.74397859811134 40.74811419548209, -73.74391854063968 40.7479635489182, -73.74390714895881 40.74790002051999, -73.74390390341988 40.74783595191644, -73.74390883246922 40.74777194561286, -73.74392189114491 40.74770860304897, -73.74394295635545 40.74764652098667, -73.74397183046777 40.747586282512906, -73.74400824131831 40.7475284543384, -73.74405184579055 40.74747358050222, -73.74410223575654 40.74742217698244, -73.74415893453909 40.74737472808632, -73.74422141115207 40.74733167837806, -73.74428907674123 40.74729343447209, -73.74431663631496 40.74727879482583, -73.74439054688156 40.74724724920996)))",Q356,69218,Q356,Q-07A,Q-07A,Q-11,Q-11,67 Ave. bet. 230 St. and 233 St.,411,23,111,11364,Q,2.446,False,Alley Park (PS 213),Yes,100000392,PARK,,19521120000000.00000,231-02 67 AVENUE,DPR/DOE,False,Alley Park,Y,Alley Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q356/,No,25,16,6,{0B11D393-03F9-4D83-96DC-3D9167849906} +"MULTIPOLYGON (((-74.08928925467146 40.6023287488067, -74.0893950219225 40.60233359424496, -74.08943242355686 40.60194762909699, -74.08984275949834 40.601972908209504, -74.08992890836917 40.601978216050654, -74.0900177807901 40.6019836900917, -74.09010752050673 40.60198921921645, -74.09019651347883 40.60199470112952, -74.09028625204238 40.602000229215086, -74.09037921160582 40.602005955514194, -74.09046894901816 40.60201148345806, -74.09055911063196 40.60201703711279, -74.09064884925554 40.60202256491521, -74.09076820420046 40.60202991713307, -74.09068074812525 40.6030699708232, -74.08922419516804 40.60300791217011, -74.08928925467146 40.6023287488067)))",R073,6660,R073,R-02,R-02,R-02,R-02,"Targee St, Stanwich St. Rome Ave.",502,50,122,10304,R,3.466,False,Naples Playground,Yes,100004658,PARK,20100106000000.00000,19530219000000.00000,1055 TARGEE STREET,DPR/DOE,False,Naples Playground,Y,Naples Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R073/,No,63,24,11,{B2DB6DD5-76CC-41B8-BE87-C3B9B7BD44F9} +"MULTIPOLYGON (((-73.89624285318602 40.698299491978624, -73.89616850925783 40.69816319984149, -73.89614111275908 40.698112975128666, -73.89611665993333 40.698068148038985, -73.89617398351298 40.6980631316779, -73.89617414089642 40.6980099358187, -73.89617429117084 40.697959025454594, -73.8961744221209 40.69791444567887, -73.89617455046415 40.69787077992117, -73.8961746515891 40.697836234533995, -73.89616120774717 40.69783735344984, -73.89615548990687 40.69779755462285, -73.89614724029819 40.69774014127809, -73.89613862319335 40.69768015573555, -73.89613087107523 40.697626200807555, -73.8961204654732 40.69755378746977, -73.89611096352994 40.697487646118695, -73.89610233242703 40.697427574109554, -73.89609147743704 40.69735202477526, -73.89605392877705 40.69709068629897, -73.89668496903032 40.69692662540069, -73.89688172630662 40.6968465472313, -73.8972199018538 40.6973357274517, -73.89774775788797 40.697120509451, -73.89727307822183 40.69762140594241, -73.89661992219918 40.69824977267528, -73.89661628604387 40.69826670265395, -73.89660763049295 40.6982617096393, -73.89659851420109 40.698257027787506, -73.896590026126 40.698253145254355, -73.89658096389569 40.698249463019025, -73.89657345960501 40.69824674843342, -73.8965633294215 40.69824353080222, -73.89655363846292 40.69824090700289, -73.89654351749755 40.698238612403976, -73.89653423807022 40.698236892187396, -73.89652399280541 40.698235402533584, -73.89651426505893 40.69823437530725, -73.89650566895912 40.69823377504034, -73.8964958502202 40.69823343752358, -73.89648658465674 40.698233458007074, -73.89647545726001 40.69823391716606, -73.89646631955601 40.69823465096917, -73.89645770441805 40.698235643688896, -73.89644942493078 40.69823687714692, -73.89644155333282 40.698238309984696, -73.89643598225412 40.698239481942245, -73.89643007362767 40.69824087242044, -73.89642402271933 40.69824245548003, -73.89641447945117 40.698245299716305, -73.89624285318602 40.698299491978624)))",Q302,6209,Q302,Q-05,Q-05,Q-05,Q-05,St Felix Ave. bet. Seneca Ave. and 60 Pl.,405,30,104,11385,Q,3.32,False,Evergreen Park,Yes,100000219,PARK,20090423000000.00000,19410109000000.00000,60-09 Saint Felix Avenue,DPR/DOE,Part,Evergreen Park,Y,Evergreen Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q302/,No,38,12,7,{FCF38FDA-E8F3-4E8B-9DED-741797681C39} +"MULTIPOLYGON (((-73.92806879840799 40.81737974927432, -73.92816013220197 40.81718523133657, -73.92865567153612 40.81731395529101, -73.92859900508446 40.817443839410096, -73.92855859185933 40.81757104018409, -73.92849395773608 40.81777447189501, -73.9284400915035 40.81794401014192, -73.92811385295391 40.81786041489581, -73.92820502842133 40.81766701705696, -73.92796338691957 40.81760424578719, -73.92806879840799 40.81737974927432)))",X106,5601,X106,X-01,X-01,X-01,X-01,E 146 St bet. Walton Av and Grand Concourse,201,17,40,10451,X,0.696,False,Garrison Playground,Yes,100004864,PARK,20100106000000.00000,19340509000000.00000,,DPR,True,Garrison Playground,Y,Garrison Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X106/,No,84,29,15,{423F5A2D-B3C0-4014-8173-D3C7C7803B42} +"MULTIPOLYGON (((-73.89413337287988 40.64236543885014, -73.89467437536106 40.64201705477023, -73.8952301474482 40.642516995670164, -73.89494940574649 40.64269817790565, -73.89560997393387 40.643292072786494, -73.89535036694588 40.64345961339925, -73.89413337287988 40.64236543885014)))",B279,5150,B279,B-18,B-18,B-18,B-18,Ave. K between E. 100 St. and E. 101 St.,318,46,69,11236,B,1.721,False,Wilson Playground,Yes,100003835,PARK,20100106000000.00000,19560404000000.00000,1128 AVENUE K,DPR/DOE,False,Wilson Playground,Y,Wilson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B279/,No,58,19,8,{913888B4-4F00-4C89-B3DB-FFE04582FD34} +"MULTIPOLYGON (((-73.96812312780794 40.801599848184374, -73.9683056096549 40.8016766210155, -73.96809807477739 40.80196428849519, -73.96812312780794 40.801599848184374)))",M085,4699,M085,M-07,M-07,M-07,M-07,"Broadway, W. 106 St., W. End Ave.",107,6,24,10025,M,0.072,False,Straus Park,Yes,100004226,PARK,20100106000000.00000,18950501000000.00000,2761 BROADWAY,DPR,False,Straus Park,Y,Straus Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M085/,No,69,31,10,{BC2DDED4-5167-4FEE-AC81-1144F5A08B77} +"MULTIPOLYGON (((-73.88597836801559 40.74389837225156, -73.88701137605256 40.74379441273035, -73.88719470310738 40.7447526846329, -73.88604854594537 40.74426524001862, -73.88597836801559 40.74389837225156)), ((-73.88741653342788 40.744768310266856, -73.88775422770527 40.74473059703206, -73.88780958460619 40.74501559581159, -73.88743360106898 40.74485444697222, -73.88741653342788 40.744768310266856)))",Q098,5404,Q098,Q-04,Q-04,Q-04,Q-04,Broadway and Woodside Ave. bet. 77 St. and 79 St.,404,25,110,11373,Q,1.537,False,Frank D. O'Connor Playground,Yes,100000414,PARK,20090423000000.00000,19350823000000.00000,78-08 BROADWAY,DPR,True,Frank D. O'Connor Playground,Y,Frank D. O'Connor Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q098/,No,39,16,6,{9F6BDA46-EE4E-45FF-B235-603A73B3CCE7} +"MULTIPOLYGON (((-73.84676314926931 40.726206219321206, -73.84799576891363 40.725839367914475, -73.84803537751728 40.72588850881755, -73.84806396534178 40.72592397622358, -73.84809571983278 40.725964507767706, -73.8481277019821 40.726006442598205, -73.84816820685178 40.72606024927986, -73.84819505081728 40.72609590976352, -73.8482266080597 40.72613892371732, -73.84825833511312 40.72618327604424, -73.84830906643138 40.726259273919204, -73.84835497572324 40.72632894383802, -73.84702460977852 40.72672491152477, -73.84689274565638 40.7264712228015, -73.8468998017151 40.726469122288165, -73.84676314926931 40.726206219321206)))",Q425,4953,Q425,Q-06,Q-06,Q-06,Q-06,Yellowstone Blvd. bet. 68 Ave. and 68 Rd.,406,29,112,11375,Q,1.745,False,Yellowstone Park,Yes,100000066,PARK,20090423000000.00000,19641204000000.00000,68-01 YELLOWSTONE BLVD,DPR,Part,Yellowstone Park,Y,Yellowstone Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q425/,No,28,15,6,{1EC0EE73-D5A0-40A1-85B3-40C1E84CFAC4} +"MULTIPOLYGON (((-73.96449054790244 40.68085420022193, -73.96441628633495 40.68039632606941, -73.96463461007072 40.68043793590857, -73.96449054790244 40.68085420022193)))",B089,6038,B089,B-08,B-08,B-08,B-08,"Pacific St., Washington Ave., Underhill Ave.",308,35,77,11238,B,0.11,False,Lowry Triangle,Yes,100004918,PARK,20100106000000.00000,18980101000000.00000,,DPR,False,Lowry Triangle,Y,Lowry Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B089/,No,57,25,8,{F0DE6279-D714-4AE2-A792-695D5D0F5D24} +"MULTIPOLYGON (((-73.89787411497055 40.74190921757616, -73.89802780230863 40.74180426451467, -73.89801790529755 40.74185782424842, -73.8980058139692 40.7419255794407, -73.89787411497055 40.74190921757616)))",Q341B,5587,Q341B,Q-02,Q-02,Q-02,Q-02,"43 Ave. bet. 66 St. and 67 St., BQE",402,26,108,11377,Q,0.025,False,Latham Park,Yes,100000195,PARK,20110712000000.00000,19551117000000.00000,,DPR,True,Latham Park,N,Latham Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q341B/,No,34,12,14,{13AE7551-1B4F-4BC2-BB85-2ABE94FBAFBA} +"MULTIPOLYGON (((-73.93075663162118 40.85197590537386, -73.93094528226904 40.8517174350655, -73.93109922841997 40.851782670482535, -73.93091076939271 40.85204087731015, -73.93075663162118 40.85197590537386)))",M304,4979,M304,M-12A,M-12A,M-12A,M-12A,"W. 186 St., Audubon Ave., St Nicholas Ave.",112,10,34,10033,M,0.123,False,West 186th Street Basketball Court,Yes,100004379,PLGD,20100106000000.00000,19971219000000.00000,556 WEST 186 STREET,DPR,False,West 186th Street Basketball Court,Y,West 186th Street Basketball Court,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/M304/,No,72,31,13,{3987A49A-6CF9-469D-B7B7-7C31437B96C6} +"MULTIPOLYGON (((-73.82218026058258 40.60071499117035, -73.8222218791627 40.60044547467093, -73.82313414038406 40.60052546737453, -73.82309252543648 40.60079498420218, -73.82218026058258 40.60071499117035)), ((-73.82196834022261 40.60210966031297, -73.8220097398051 40.60183651807589, -73.8223316497186 40.601865213382645, -73.82229029229833 40.60213809554662, -73.82196834022261 40.60210966031297)), ((-73.82139497542441 40.59994059423923, -73.82143685878692 40.59966938002238, -73.82166626772053 40.59968876341602, -73.82162428788484 40.599960612434344, -73.82139497542441 40.59994059423923)), ((-73.8222495012046 40.60142860328492, -73.82229101261298 40.60115635712502, -73.82251817572242 40.601176365701086, -73.82247663033317 40.601448849626955, -73.8222495012046 40.60142860328492)), ((-73.82099874344956 40.60051340001187, -73.82101431959583 40.60041253855542, -73.8210322073371 40.60041410720959, -73.82104332401208 40.60034211951276, -73.82130431310283 40.60036500900723, -73.82126269204804 40.60063452607885, -73.82116484420577 40.600625944052574, -73.8211689597143 40.600599294943486, -73.82117977209079 40.600529276207645, -73.82099874344956 40.60051340001187)))",Q508,30295,Q508,Q-14,,,Q-14,Cross Bay Blvd. and W. 16 Rd. to W. 19 Rd.,414,32,,11693,Q,1.226,False,,,100024486,PARK,,20160812000000.00000,,DPR,False,Park,,Park,,Undeveloped,,Yes,23,15,5,{FA098A36-2C7A-4637-BA51-1A7DF57F9CF1} +"MULTIPOLYGON (((-73.80623159659328 40.73054503080729, -73.80627001277232 40.730543964404106, -73.80623818344282 40.73107291400048, -73.80619964705889 40.731601604622256, -73.80616284629886 40.731600171203475, -73.806041313012 40.731595438793946, -73.80587526871959 40.73158897338778, -73.8059061173813 40.73135510697369, -73.80568049598884 40.73134154568397, -73.80569863448606 40.73101409481791, -73.80561621613228 40.73100703259363, -73.8056541012727 40.730561048417975, -73.80566983119554 40.73056061210273, -73.80581382503253 40.73055661811712, -73.80607753054798 40.73054930372074, -73.80623159659328 40.73054503080729)))",Q344,6292,Q344,Q-08,Q-08,Q-08,Q-08,"Jewel Ave., 71 Ave. bet. 163 St. and 164 St.",408,24,107,11365,Q,1.265,False,Emerald Playground (PS 200),Yes,100000007,PARK,20090423000000.00000,19511115000000.00000,,DPR/DOE,False,Emerald Playground,Y,Emerald Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q344/,No,27,16,6,{77FA9B7E-48DE-45C3-87C8-2734F558365B} +"MULTIPOLYGON (((-73.85004438387472 40.82987556349047, -73.85042162490345 40.829824907922614, -73.8504547682646 40.82999599653427, -73.85004438387472 40.82987556349047)))",X012,5841,X012,X-09,X-09,X-09,X-09,"Castlehill Ave., Watson Ave., Cross Bronx Exwy. Svc. Rd. S.",209,18,43,10472,X,0.09,False,Church Triangle,Yes,100004590,PARK,20100106000000.00000,19190717000000.00000,,DPR,True,Church Triangle,Y,Church Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X012/,No,87,34,15,{252E7407-878B-4674-A2AA-4D28D6CF7D2B} +"MULTIPOLYGON (((-73.95918713448903 40.7126059627154, -73.95935096032144 40.71234436378213, -73.9595091645614 40.71240257541969, -73.95967153740305 40.712462319167955, -73.95950771253884 40.71272391855338, -73.95942990913163 40.71269529184134, -73.9593453392068 40.712664174576105, -73.95930480714902 40.71264926040498, -73.95918713448903 40.7126059627154)))",B424,5233,B424,B-01,B-01,B-01,B-01,S. 2 St. between Driggs Ave. and Roebling St.,301,34,90,11211,B,0.23,False,Earth Spirit Garden,No,100004806,PARK,20100106000000.00000,19990712000000.00000,203 - 207 SOUTH 2 STREET,DPR,False,Earth Spirit Garden,N,Earth Spirit Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B424/,No,53,18,7,{8017A294-AAC6-48AA-8BAD-461EE793BAED} +"MULTIPOLYGON (((-73.91884704666863 40.84689244616874, -73.9194161971957 40.84645139309034, -73.91975027415721 40.84669712908303, -73.9196849470298 40.846748148750024, -73.91948991188394 40.846890959681545, -73.91928733620442 40.84702902571239, -73.91917037791335 40.84710874006215, -73.9191551771612 40.84711909948162, -73.91884704666863 40.84689244616874)))",X295,4782,X295,X-05,X-05,X-05,X-05,Nelson Av bet. Featherbed La and W 174 St,205,14,46,10453,X,0.61,False,Half-Nelson Playground,Yes,100004976,PARK,20100106000000.00000,19990527000000.00000,1631 NELSON AvNUE,DPR,False,Half-Nelson Playground,Y,Half-Nelson Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X295/,No,77,29,15,{E2EE9D39-2FF5-49EA-9759-8C2578DB1722} +"MULTIPOLYGON (((-73.91026922364036 40.66731432237635, -73.91062295979323 40.66726152672342, -73.91067482221827 40.66746356178875, -73.91032122461431 40.667516336996755, -73.91026922364036 40.66731432237635)))",B563,12292,B563,B-16,B-16,B-16,B-16,Rockaway Ave. bet. Sutter Ave. and Belmont Ave.,316,41,73,11212,B,0.172,False,,,100024469,PARK,20160222000000.00000,20160119000000.00000,514 - 522 ROCKAWAY AVENUE,DPR,False,Student Farm Project,,Student Farm Project,,Garden,,No,55,20,9,{7EAFFA23-615A-4054-94C3-DF2455CDBE62} +"MULTIPOLYGON (((-73.98966309745681 40.70028973896069, -73.98910624236767 40.69993539283156, -73.98905124789282 40.69989091132054, -73.98899281798245 40.69983596370272, -73.98893782583579 40.69977840129812, -73.98889314796621 40.6997129900984, -73.98885190771907 40.69965281208981, -73.98880379292923 40.69957955255806, -73.98877630467024 40.699508911006575, -73.98875569310749 40.69942518837972, -73.98874864530113 40.699372821107744, -73.98875276165492 40.69937293227307, -73.98876201286987 40.699388574172495, -73.98878466541731 40.699416295046916, -73.98881077329355 40.69944195678142, -73.98883002968466 40.69945787880628, -73.98885066824516 40.6994727608702, -73.9888725955112 40.69948654623125, -73.98889569554058 40.69949915923435, -73.98893233555101 40.6995157583019, -73.9889605934762 40.69952674816444, -73.98899239281941 40.699537342133425, -73.98901720599994 40.69954383809693, -73.98902965884368 40.69954643906307, -73.98904204911398 40.69954821425232, -73.9890520730459 40.699549511043195, -73.98906456281463 40.6995506297661, -73.98910304305998 40.69955107196512, -73.98921503905642 40.69955500514495, -73.98919314788124 40.69993113799994, -73.98939919196789 40.699937900196275, -73.98941841881731 40.69966463345952, -73.98933940695296 40.69966094307372, -73.98934631654204 40.699559548748375, -73.98937377731944 40.69956155672752, -73.98939506516942 40.69956436558726, -73.98941408942689 40.69956790004771, -73.98942802123248 40.69957093965621, -73.98945929446114 40.699579520803134, -73.98948829209571 40.699589942380605, -73.98952259550796 40.69960626278834, -73.98954420719154 40.699619079941904, -73.98955952803287 40.699630118909894, -73.98957418244231 40.69964300926845, -73.98958971305014 40.69965952696725, -73.98960727718877 40.69967871756751, -73.9896188916686 40.69969340326694, -73.9896287583419 40.69970942696874, -73.9896346658766 40.699718587510226, -73.98964455585629 40.69973696335033, -73.98965552811262 40.699757712136304, -73.98966111211705 40.69977023335853, -73.9896727018784 40.69979954246636, -73.98967992721727 40.69981834670788, -73.98968469556989 40.699833628825914, -73.98968798384517 40.69984812646501, -73.98966309745681 40.70028973896069)), ((-73.98913983847072 40.70042279636439, -73.98919563947796 40.70042187859113, -73.98925629199371 40.700426500293396, -73.98931815480839 40.70043943110064, -73.98936667501496 40.70045605364258, -73.98939699960044 40.70046528848956, -73.98939942507383 40.700473597737535, -73.98962992260972 40.70059188748315, -73.9896455860206 40.7006004860816, -73.98964183193922 40.70066709841887, -73.98896710533731 40.70064523792598, -73.98886723076376 40.70064200087401, -73.98887734867893 40.70059157227848, -73.98888264590575 40.70057787240027, -73.98889478111683 40.700549253498515, -73.98891540730082 40.70051971328909, -73.98894452578227 40.70048832604118, -73.98896879072274 40.700470787295345, -73.98900154513615 40.70045417328127, -73.98903672556784 40.70044217461316, -73.98907797237854 40.70043017651012, -73.98913983847072 40.70042279636439)), ((-73.98840512195258 40.70007179604343, -73.98845648715401 40.69936493700908, -73.98846549485573 40.69936518014988, -73.9884841188401 40.69945917297167, -73.98851160164047 40.69956644202385, -73.98855627185208 40.69967371367876, -73.9885906364878 40.699739123087234, -73.98863187655249 40.699799301188776, -73.98864222461762 40.69981505757035, -73.9886745723456 40.699864676273705, -73.98871229703285 40.69991204511537, -73.98875513015389 40.69995682727227, -73.98880276768081 40.69999870392797, -73.98880716017864 40.70000338611761, -73.98881214342288 40.70000615837827, -73.98884988694357 40.70003395274451, -73.9888897818856 40.700059948983366, -73.98885527103323 40.70009496025825, -73.98840512195258 40.70007179604343)), ((-73.9887700137155 40.7006388513443, -73.98879906652084 40.70016102537351, -73.98884151209343 40.70014728408005, -73.98891026293443 40.70015513958801, -73.98894119927382 40.70016299142784, -73.9893481598919 40.70038212259332, -73.98929875793434 40.70036741895258, -73.98925872846208 40.7003591061992, -73.98920778065374 40.700355408433424, -73.9891604721448 40.70035355793806, -73.98911680099441 40.70035816984176, -73.98907434382501 40.700362781844134, -73.98903067190311 40.70037200973982, -73.98899427870312 40.70038400829023, -73.98896394993135 40.700400622535, -73.98893725925222 40.70041908497218, -73.98891420831075 40.70043662382841, -73.98888994393633 40.70045785466223, -73.98886567877535 40.700483702416015, -73.98884626420363 40.70051324363463, -73.9888317035189 40.70054093837072, -73.98882199436181 40.70056678752651, -73.98881228488723 40.70059448363153, -73.98880621547862 40.7006194092142, -73.98880556834455 40.70064000386118, -73.9887700137155 40.7006388513443)))",B113D,6095,B113D,B-02,B-02,B-02,B-02,"Adam St., Cadman Plaza East bet. Prospect St. and Red Cross Pl.",302,33,84,11201,B,2.878,False,Lot,Yes,100004555,PARK,20100106000000.00000,19470813000000.00000,,DPR,True,Lot,N,Lot,Sitting Area/Triangle/Mall,Lot,http://www.nycgovparks.org/parks/B113D/,No,52,25,7,{7A1A9A31-8C12-46D1-8B39-F315DA8EF469} +"MULTIPOLYGON (((-73.90454212975825 40.671619404093995, -73.90439239372928 40.67102927439744, -73.90457564436872 40.67100186535043, -73.90463896800564 40.670992394000436, -73.90469202830228 40.67098445759778, -73.90475180067459 40.67097551724958, -73.90481865538229 40.67096551741971, -73.90488551006995 40.670955517550944, -73.90495236355487 40.67094551764238, -73.90501957190554 40.6709354648575, -73.90510694249392 40.670922396628484, -73.90526183747316 40.671522664050606, -73.90490633887431 40.67157583798413, -73.90490286434154 40.67156237060006, -73.90483211827389 40.671572952595064, -73.90475783393235 40.671584063822245, -73.90470052986582 40.67159263520555, -73.90470129321537 40.67159559673378, -73.90468785353181 40.67159760815881, -73.90454212975825 40.671619404093995)))",B156,5487,B156,B-16,B-16,B-16,B-16,Sackman To Powell Sts bet. Glenmore and Pit,316,37,73,11212,B,1.024,False,Powell Playground,Yes,100004882,PARK,20100106000000.00000,19360902000000.00000,289 PITKIN AVENUE,DPR,True,Powell Playground,Y,Powell Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B156/,No,55,19,8,{2DAD639A-61DD-408F-85AA-8459BFC7743E} +"MULTIPOLYGON (((-73.91777998309018 40.69877822338224, -73.91788691531501 40.69866604091647, -73.91803875695365 40.69875070908272, -73.91777998309018 40.69877822338224)))",B045,5036,B045,B-04,B-04,B-04,B-04,"Knickerbocker Ave., Myrtle Ave., Bleecker St.",304,37,83,11237,B,0.027,False,Heisser Triangle,Yes,100003755,PARK,20100106000000.00000,19210609000000.00000,1424 MYRTLE AVENUE,DPR,True,Heisser Triangle,Y,Heisser Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B045/,No,53,18,7,{4BC72D1D-B298-42EF-9EB2-349D4E70B755} +"MULTIPOLYGON (((-73.94298097010989 40.694669707208305, -73.94314368078886 40.69465099040039, -73.94321076990393 40.694992488099004, -73.94304808196603 40.695011330183874, -73.94298097010989 40.694669707208305)))",B576,14690,B576,B-03,,,B-03,Throop Ave. bet. Willoughby Ave. and Vernon Ave.,303,36,,11206,B,0.123,False,,,100037080,PARK,,20160209000000.00000,659 WILLOUGHBY AVENUE,DPR,False,Tranquility Farm,,Tranquility Farm (Willoughby Ave. Garden),,Garden,,No,54,18,8,{D6F1A460-D005-4E10-A5E3-FA1B6DBBE64A} +"MULTIPOLYGON (((-73.92361869858321 40.84442971685069, -73.92413048853273 40.84400873558453, -73.92440818295225 40.84420763057632, -73.92473817626272 40.84435575591971, -73.92377803392198 40.84454142753433, -73.92361869858321 40.84442971685069)))",X148A3,6375,X148A3,X-04,X-04,X-04,X-04,"Boscobel Pl, bet. Dr MLK Jr Blvd and Undercliff Av",204,16,44,10452,X,0.63,False,Bridge Playground,Yes,100005188,PARK,20100106000000.00000,19570214000000.00000,,DPR,True,Bridge Playground,Y,Bridge Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148A3/,No,77,29,15,{6F1C23C3-6C90-45D2-AFA2-39AF6FF0E01E} +"MULTIPOLYGON (((-73.83838221141957 40.842127480440695, -73.83873961967653 40.84089217260689, -73.83909464810043 40.840954952032114, -73.8390052243046 40.8413841200271, -73.83892253915187 40.841780948870316, -73.83913474246992 40.84201009307305, -73.83864603052562 40.842268783472356, -73.83863268933183 40.842276740487925, -73.83862807127088 40.84227949494307, -73.83859268710452 40.84229277995538, -73.83857657412504 40.842297106794796, -73.83856608415593 40.84229842484561, -73.8385487123676 40.84230060764315, -73.8385350134184 40.84230060017417, -73.83852296858677 40.84230059411867, -73.83851705213628 40.84229992397248, -73.83850067550759 40.84229806853809, -73.83849007818371 40.84229574123033, -73.83848027607611 40.84229358793006, -73.83847609850413 40.842292195318706, -73.8384600327475 40.84228683829111, -73.83845185900594 40.84228308438887, -73.83844244279837 40.84227876053382, -73.83843289259069 40.842272976788884, -73.83842534572605 40.8422684061139, -73.83841037476697 40.84225656255067, -73.83840615337982 40.84225221895521, -73.83839808200354 40.842243914093714, -73.83839428725405 40.84223869041198, -73.83838721184051 40.84222894975602, -73.83838198833851 40.84221832740895, -73.83837825626341 40.84221073461366, -73.83837723108722 40.84220711409013, -73.83837524304572 40.842200092850916, -73.83837360535023 40.84219430938192, -73.83837195607454 40.84217962721076, -73.83837227247066 40.842167995967564, -73.83837327535896 40.84216029184204, -73.838374747309 40.842153279052994, -73.83838221141957 40.842127480440695)))",X101A,5924,X101A,X-11,X-11,X-11,X-11,Westchester Ave. bet. Waters Ave. and E. Tremont Ave.,211,13,49,10461,X,1.285,False,Samuel H. Young Park,Yes,100003874,PARK,20100106000000.00000,19691023000000.00000,,DPR,True,Samuel H. Young Park,Y,Samuel H. Young Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X101A/,No,82,34,14,{E2F0924B-C2BC-4C4F-8C36-95F3C22DB43E} +"MULTIPOLYGON (((-74.00083742049672 40.67701179612151, -74.00102984906486 40.676612393781646, -74.00137239737056 40.67715918632327, -74.00083742049672 40.67701179612151)))",B210F,5473,B210F,B-06,B-06,B-06,B-06,"Hamilton Ave., Nelson St. Clinton St.",306,39,76,11231,B,0.433,False,Admiral Triangle,Yes,100004455,PARK,20100106000000.00000,19421230000000.00000,558 CLINTON STREET,DPR,True,Admiral Triangle,Y,Admiral Triangle,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B210F/,No,52,25,7,{AEDBFF2E-7754-4E84-AF17-135F1C57F984} +"MULTIPOLYGON (((-73.99922892592204 40.690190326438724, -73.9992408237856 40.6901900707721, -73.99925272519475 40.690190123079724, -73.99926461713618 40.69019048696368, -73.99927648541345 40.69019116062281, -73.99928831819645 40.69019214225596, -73.99930009892263 40.69019343276366, -73.99931181457877 40.69019502854369, -73.99932345215159 40.69019692779509, -73.9993349974447 40.69019912961716, -73.9993464362618 40.69020163040785, -73.99935775558951 40.69020442836611, -73.99942549529501 40.69022207337992, -73.99949519060426 40.69024014160361, -73.99956277185538 40.690257661364534, -73.99962070897608 40.69027331158892, -73.99963217975423 40.69027664352497, -73.99964349555307 40.69028027442979, -73.9996546409933 40.69028419709927, -73.99966560306147 40.69028840883184, -73.9996763675612 40.69029290242346, -73.9996869250283 40.690297676973586, -73.99969726126628 40.69030272077564, -73.9997073656279 40.69030803292912, -73.99971722391668 40.690313603528395, -73.99972682666832 40.69031942897142, -73.99973616086947 40.69032550115361, -73.99974521823879 40.690331812871, -73.99975398576287 40.690338357819954, -73.99976245161123 40.69034512699536, -73.99977060986879 40.69035211319323, -73.99977844870496 40.69035930560742, -73.99978595865545 40.69036670063589, -73.99979313262196 40.690374285671595, -73.99979996114013 40.69038205351041, -73.99980643474542 40.69038999514725, -73.99981351998295 40.69039950277712, -73.99981966470177 40.690408506117684, -73.99982366338267 40.69041476649151, -73.99982865345174 40.690423307866574, -73.99983376537332 40.69043287852813, -73.99983844075169 40.69044257616121, -73.99984267485445 40.690452391760715, -73.99984646531536 40.69046231091845, -73.99984980148692 40.690472324629376, -73.999852686918 40.69048242028627, -73.99985511096105 40.6904925843815, -73.999857075982 40.69050280791001, -73.99985857724852 40.69051307556302, -73.99985961121116 40.690523376534436, -73.99986018141894 40.690533697316546, -73.99986021098886 40.69053671763775, -73.99937421492878 40.691500935033055, -73.99935439744453 40.69149536525032, -73.9993054577658 40.69136187831156, -73.99896425122235 40.690548577322645, -73.99893805051258 40.69045683100099, -73.99894528370551 40.69037946167659, -73.99894952867187 40.690366952686794, -73.99895432138503 40.69035455896746, -73.99895965474609 40.69034229402619, -73.99896552520556 40.69033017137055, -73.99897192329848 40.69031820630908, -73.99897567128292 40.69031183431118, -73.99897969728062 40.690305561372064, -73.99898400010836 40.6902993955963, -73.99898857503386 40.69029334598894, -73.99899341495859 40.69028741705252, -73.99899851515036 40.69028161599101, -73.99900386969372 40.69027594820742, -73.99900947385642 40.690270420005255, -73.99901532172305 40.690265042190646, -73.99902140028001 40.690259817464906, -73.99902771071037 40.690254750330624, -73.99903424118348 40.69024984889231, -73.99904098578409 40.690245118552866, -73.99904793623081 40.69024056471534, -73.99905508424236 40.69023619008109, -73.99906242390331 40.690232004555774, -73.99906994338325 40.69022800903972, -73.99907763795004 40.69022420893596, -73.99908549459013 40.69022060874686, -73.99909350857135 40.69021721207447, -73.99910166806326 40.69021402432172, -73.9991099636015 40.69021104819002, -73.99911838453872 40.690208287281365, -73.99912692732582 40.690205744297195, -73.99913557540019 40.69020342283943, -73.99914693856228 40.69020072678771, -73.99915841647476 40.69019833060658, -73.99916999612446 40.690196232494884, -73.9991816621318 40.69019443785563, -73.99919340030043 40.690192949390166, -73.99920520116613 40.69019176619792, -73.99921704698345 40.6901908909803, -73.99922892592204 40.690190326438724)), ((-73.99896653696602 40.68977930312838, -73.99915955547831 40.68937476982291, -74.00028989891243 40.68968419069083, -74.00005380952783 40.69015260921261, -74.00004704844467 40.69015572949386, -74.00003916228798 40.69015909741625, -74.00003112825007 40.690162260021054, -74.00002296052757 40.69016521190528, -74.00001466385272 40.69016795036732, -74.00000625123897 40.690170474506594, -73.99999773096775 40.690172777119024, -73.99998911132037 40.69017485910507, -73.99998204737349 40.69017645931616, -73.99997491717595 40.69017787942412, -73.99996772782606 40.69017911852852, -73.99996048997129 40.69018017482827, -73.99995320952686 40.69018104922387, -73.99994589477421 40.69018173901375, -73.99993855399455 40.69018224419796, -73.99993119783548 40.69018256297551, -73.9999238286631 40.69018269444577, -73.99991645830784 40.69018263950936, -73.99990909505111 40.6901824008678, -73.99990174599124 40.690181975819506, -73.99989441940953 40.69018136436456, -73.99988712477047 40.69018056920447, -73.99987986798924 40.69017958763771, -73.99987265734718 40.69017842506742, -73.9998655023088 40.69017708329458, -73.99985840878931 40.690175558717236, -73.99985138507 40.6901738558379, -73.99984444061533 40.690171977358204, -73.99977767567626 40.69015440733533, -73.99971090958937 40.69013683727372, -73.99964414472068 40.690119267173316, -73.99957737988713 40.690101697934686, -73.99951061390578 40.69008412865726, -73.99944384795963 40.690066557540085, -73.99937708323169 40.69004898818511, -73.99931031735585 40.690031418791364, -73.99924436662793 40.69001399074479, -73.99923112727448 40.69001028864721, -73.99921806301647 40.69000624255325, -73.9992051915995 40.69000185246311, -73.99919252367107 40.68999712828251, -73.99918007934286 40.68999207451428, -73.99916787281148 40.689986695661176, -73.99915591590731 40.68998099982793, -73.99914422519292 40.68997499241783, -73.99913281604783 40.6899686824362, -73.99912169675326 40.68996207618681, -73.99911088505475 40.689955181774465, -73.99910039159963 40.689948007304004, -73.99909022821818 40.68994055997967, -73.99908041265577 40.68993285150833, -73.99907095082753 40.68992488999485, -73.99906185574679 40.68991668354395, -73.99905313806056 40.68990824386246, -73.99904480841613 40.68989957815475, -73.99903687627751 40.6898906999286, -73.99902935347484 40.68988161999042, -73.99901722047841 40.68986577355593, -73.99900581860909 40.689849616449365, -73.99899516797781 40.68983316488038, -73.99898527449896 40.68981644226258, -73.99897615355141 40.68979946660652, -73.99896781696457 40.68978225952487, -73.99896653696602 40.68977930312838)), ((-73.99815187716754 40.69060134802128, -73.99853948326812 40.68979690353494, -73.99851966928549 40.690139149638796, -73.99852393224936 40.69070602904378, -73.99815187716754 40.69060134802128)), ((-73.99871776194324 40.69084684190482, -73.99881942117645 40.69108281074861, -73.99889245871148 40.69128251646246, -73.99892629871292 40.69137504270085, -73.9985247859384 40.69126219135843, -73.99871776194324 40.69084684190482)), ((-73.99884405375501 40.690120731555545, -73.99884307050081 40.69006100410599, -73.99884367782046 40.69003679111259, -73.99892942626192 40.689857078317296, -73.99893189871678 40.689862828117356, -73.99893696786162 40.68987338308, -73.99894250904217 40.68988380026822, -73.99894851516055 40.689894067074704, -73.9989549767529 40.68990416909107, -73.99896188790417 40.6899141009141, -73.99896924151665 40.68992384543394, -73.99897702812622 40.68993339364526, -73.99898523945198 40.68994273294071, -73.99899386366381 40.68995185341447, -73.9990028924806 40.68996074516071, -73.99901231407223 40.689969395572064, -73.99902212015765 40.68997779744425, -73.99903229772357 40.68998593907037, -73.99904283493983 40.68999381054465, -73.99905371879304 40.69000140286164, -73.99906493626989 40.69000871061818, -73.99907647435698 40.69001572120683, -73.99908832240718 40.69002242562225, -73.99910046267472 40.6900288202622, -73.99911288451241 40.69003489432032, -73.9991255701746 40.690040641492786, -73.99913850901383 40.69004605727688, -73.99915168091844 40.69005113176678, -73.99916507405791 40.69005586136016, -73.99917867068653 40.69006023975328, -73.99919245542476 40.69006426334389, -73.99920641289283 40.69006792402723, -73.99927105641733 40.69008413549383, -73.99932866917365 40.6900989790037, -73.99938628195565 40.69011381978313, -73.99944359545228 40.6901288379334, -73.99971466665012 40.6902022487615, -73.99997904004768 40.690277759846694, -73.99998760292154 40.690280971078, -73.99998856710246 40.69028205439549, -73.9999800562764 40.69029894081776, -73.9999782426688 40.69029930552526, -73.99991492495731 40.69028247220273, -73.9998527820412 40.69026530745799, -73.99984433511209 40.69026297601821, -73.99979064034012 40.69024814448067, -73.99972771668077 40.6902306410739, -73.99966479423743 40.69021313673218, -73.99960187064416 40.69019563145555, -73.99953894826695 40.69017812794544, -73.99947602473968 40.690160624400924, -73.99944450620258 40.69015185775703, -73.99941310124547 40.690143120821965, -73.99935017896736 40.69012561630807, -73.99934055140322 40.690122764327924, -73.99933080435018 40.69012016719158, -73.9993209449064 40.690117823998406, -73.9993109849021 40.69011573925112, -73.99930093853364 40.69011391655181, -73.9992908140822 40.690112356800945, -73.99928062692723 40.690111061799726, -73.9992703877159 40.69011003334918, -73.99926010827849 40.69010927234989, -73.99924979926226 40.690108779702435, -73.99923947486361 40.69010855630735, -73.99922914572979 40.6901086003638, -73.99921882487402 40.69010891457331, -73.99920852530971 40.69010950073704, -73.9991982565011 40.690110352551436, -73.99918803264453 40.69011147091719, -73.99917786675334 40.69011285853588, -73.99916776829181 40.6901145082035, -73.99915774909024 40.690116419019645, -73.99914782216199 40.690118591884975, -73.99913799933745 40.690121020495916, -73.99912829126386 40.6901237066537, -73.99911870977162 40.69012664225381, -73.9991092666911 40.69012982639585, -73.99909997148654 40.690133255477804, -73.9990860529243 40.690138839450526, -73.99907238752579 40.69014477462377, -73.99905898948758 40.69015104929104, -73.99904586827384 40.69015766345253, -73.99903304517944 40.690164602700314, -73.99902053440078 40.6901718634325, -73.99900834776842 40.690179439345755, -73.99899649592984 40.690187316032016, -73.9989849966307 40.69019548898902, -73.9989738617015 40.69020395011235, -73.99896309942382 40.6902126858945, -73.99895272754333 40.6902216909326, -73.99894275197555 40.69023095261967, -73.99893319046626 40.69024046375182, -73.99892404538193 40.690250208120055, -73.99891533210221 40.69026018122193, -73.99890706009188 40.69027036774894, -73.99889923526638 40.69028075779563, -73.99889187182261 40.69029134145656, -73.99888358438857 40.69030371712927, -73.99887844400999 40.690306641045595, -73.99887249091687 40.690307338885184, -73.99886741449623 40.69030588900908, -73.99886302665072 40.69030192670777, -73.99885346279976 40.69023996500137, -73.99884751903514 40.69018040499869, -73.99884405375501 40.690120731555545)), ((-73.99976051754399 40.6902860812419, -73.99996328896627 40.69033220667146, -73.99989794681315 40.69046184811185, -73.99988512501405 40.69042114850618, -73.99986441940749 40.6903823768886, -73.99983629848931 40.69034641125591, -73.9998014011097 40.69031406836924, -73.99976051754399 40.6902860812419)), ((-73.99851647841416 40.69110558211901, -73.99847044826299 40.69124691884766, -73.9983276336384 40.691206777390434, -73.99837592785941 40.69118633823597, -73.99842053928869 40.69116151981549, -73.99846078765361 40.691132700339644, -73.99849605656897 40.6911003219569, -73.99849729170771 40.691099199933696, -73.99849875990502 40.69109825441408, -73.9985004185702 40.691097513313466, -73.99850221919729 40.691096998243395, -73.99850410854836 40.69109672451199, -73.99850603101945 40.69109670022311, -73.9985079310068 40.69109692627655, -73.99850975290691 40.69109739546748, -73.99851144229929 40.691098094287526, -73.99851295186211 40.69109900292474, -73.9985142342736 40.691100093462694, -73.99851525404267 40.69110133438291, -73.99851598041067 40.6911026896645, -73.99851639326643 40.691104119684624, -73.99851647841416 40.69110558211901)))",B050,6349,B050,B-06,B-06,B-06,B-06,"Columbia St., Hicks St. bet. Congress St. and Atlantic Ave.",306,39,76,11201,B,5.739,False,Van Voorhees Playground,Yes,100004732,PARK,20100106000000.00000,19240515000000.00000,,DPR/CDOT,Part,Van Voorhees Playground,Y,Van Voorhees Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B050/,No,52,26,7,{70A2992D-3CF5-4287-8085-757FFE9CFA21} +"MULTIPOLYGON (((-73.82356817380042 40.71163830369824, -73.82383304509185 40.71154632846095, -73.82506880535567 40.712055287029905, -73.825043649338 40.71206647458901, -73.82500201013917 40.712084992472555, -73.82492919006172 40.712117377644255, -73.8249024468745 40.71213086987168, -73.82485549814335 40.7121545566723, -73.82482271020824 40.712171098725165, -73.82478321274755 40.71219102548857, -73.82474896129058 40.712208306414595, -73.82471685602171 40.71222669552706, -73.82469004749238 40.712242050765845, -73.82465913096893 40.712259759084034, -73.82460266219557 40.71229210321561, -73.82458459914642 40.712303438359, -73.82455658469301 40.71232101869636, -73.82453907520889 40.71233200617791, -73.82449699400178 40.712359169925435, -73.82446944352914 40.71237760373416, -73.82444159073185 40.71239623969049, -73.82378398876952 40.71203688772274, -73.8232541490141 40.711747346826485, -73.82356817380042 40.71163830369824)))",Q220F,5898,Q220F,Q-09,Q-09,Q-09,Q-09,Hoover Ave. bet. Queens Blvd. and 132 St.,409,29,102,11415,Q,1.5,False,Maple Grove Park,Yes,100000077,PARK,20090423000000.00000,19491231000000.00000,,DPR,True,Maple Grove Park,Y,Maple Grove Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q220F/,No,27,14,6,{B469444D-7F21-42FC-9434-2E582AB0F31D} +"MULTIPOLYGON (((-73.92795541171245 40.67794867986206, -73.92795699750879 40.67793369628756, -73.9282653737869 40.67795182451577, -73.92828201214229 40.67802814361697, -73.92829202977602 40.6780740959297, -73.92830021244089 40.678111632687106, -73.92830105284126 40.6781154829118, -73.9280218606341 40.67813377545298, -73.92802467847635 40.67810715439463, -73.92801389412746 40.67810652088962, -73.92793917366689 40.678102128232226, -73.92793969827515 40.67809718023168, -73.9279429201778 40.67806664128808, -73.92794466363848 40.678050245805416, -73.92794724130137 40.6780259001993, -73.92795108092608 40.6779896154567, -73.92795541171245 40.67794867986206)), ((-73.92821739009075 40.67826390853488, -73.92820093674568 40.6781443017933, -73.9282559336533 40.67814753472797, -73.9283087164493 40.678150637483185, -73.92836349189139 40.67840189632702, -73.92827093468844 40.67839680928815, -73.92820371703198 40.6783931148764, -73.92821739009075 40.67826390853488)))",B507,5290,B507,B-03,B-03,B-03,B-03,Hunterfly Pl. between Herkimer St. and Atlantic Ave.,303,36,81,11233,B,0.189,False,A Better Community Garden,No,100004944,PARK,20100106000000.00000,20050429000000.00000,762 HERKIMER STREET,DPR,False,A Better Community Garden,N,A Better Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B507/,No,56,25,8,{6B767A69-26D7-4D1A-BB46-6692FD105401} +"MULTIPOLYGON (((-73.99441233975762 40.642690879972285, -73.99442957102858 40.641988631427765, -73.99506131407803 40.6423793519638, -73.99461160071614 40.64280957508587, -73.99441233975762 40.642690879972285)))",B162,4839,B162,B-12,B-12,B-12,B-12,"10 Ave., New Utrecht Ave. bet. 43 St. and 42 St.",312,39,66,11219,B,0.649,False,Brizzi Playground,Yes,100004469,PARK,20100106000000.00000,19380318000000.00000,4201 10 AVENUE,DPR,True,Brizzi Playground,Y,Brizzi Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B162/,No,51,17,10,{960B50EA-7DBE-4ECD-881D-AC2FD7D40AB2} +"MULTIPOLYGON (((-73.94548909480652 40.784364696701765, -73.9458432330426 40.78388052349274, -73.94684806280537 40.78430514376256, -73.94649588256448 40.78479014489328, -73.94548909480652 40.784364696701765)))",M187,4865,M187,M-11,M-11,M-11,M-11,"2 Ave., E. 96 St. to E. 97 St.",111,8,23,10029,M,1.478,False,Marx Brothers Playground,Yes,100004497,PLGD,20100106000000.00000,19470505000000.00000,1860 2 AVENUE,DPR/DOE,False,Marx Brothers Playground,Y,Marx Brothers Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M187/,No,68,29,13,{247347B7-1228-4161-BBCA-7C79083703EF} +"MULTIPOLYGON (((-73.88127775205633 40.704686167993884, -73.8819666434036 40.70452271216493, -73.88223665025922 40.705177416252845, -73.88154564088786 40.70534137489691, -73.88127775205633 40.704686167993884)))",Q290,6629,Q290,Q-05,Q-05,Q-05,Q-05,Central Ave. bet. 70 St. and 71 St.,405,30,104,11385,Q,1.15,False,"""Uncle"" Vito F. Maranzano Glendale Playground",Yes,100000268,PARK,20090423000000.00000,19400201000000.00000,2869 CENTRAL AVENUE,DPR,True,"""Uncle"" Vito F. Maranzano Glendale Playground",Y,"""Uncle"" Vito F. Maranzano Glendale Playground",Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q290/,No,38,15,6,{33F624FE-5A02-46B7-AF83-28AA32A1CD7D} +"MULTIPOLYGON (((-73.9059191265952 40.82325372408913, -73.90619728557594 40.82258408228008, -73.90620051718933 40.822584766584626, -73.90696710124745 40.82276820368062, -73.90669258198106 40.82343654994916, -73.9059191265952 40.82325372408913)))",X185,5727,X185,X-03,X-03,X-03,X-03,"E 161 St, Trinity Av, E 163 St, Cauldwel",203,16,42,10456,X,1.44,False,Dunbar Playground,Yes,100004345,PARK,20100106000000.00000,19530817000000.00000,,DPR/NYCHA,True,Dunbar Playground,Y,Dunbar Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X185/,No,79,32,15,{ACE431F7-EDB0-41AA-8BF7-A38978BD9376} +"MULTIPOLYGON (((-73.95178383710152 40.71418132145349, -73.95260540577486 40.714171397697044, -73.95255245129725 40.71421819793008, -73.95188491912596 40.71480815328509, -73.95178383710152 40.71418132145349)))",B223S,6178,B223S,B-01,B-01,B-01,B-01,"Metropolitan, Union, Meeker Avs",301,34,94,11211,B,0.57,False,Macri Triangle,Yes,100004432,PARK,20100106000000.00000,19460514000000.00000,,DPR,True,Macri Triangle,Y,Macri Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223S/,No,50,18,12,{41A215E8-F594-4933-8918-A5BC48D5C1F2} +"MULTIPOLYGON (((-73.9950993695748 40.701042132597266, -73.99529913276876 40.70060661640919, -73.99530010536319 40.700606881199434, -73.99530459994776 40.70059713694233, -73.99545217638274 40.700637969381305, -73.99554777826528 40.700664421156844, -73.99585453801551 40.700749296865446, -73.99585096419497 40.70075677819038, -73.99564142330574 40.70119543594352, -73.99524009837266 40.70108193392784, -73.9950993695748 40.701042132597266)))",B223F,5119,B223F,B-02,B-02,M-09,M-09,Middagh St. between Columbia Heights & Furman St.,302,33,84,11201,B,0.626,False,Squibb Park,No,100007971,PARK,20100106000000.00000,19460501000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Squibb Park,Y,Squibb Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B223F/,No,52,26,7,{5FDA3E49-C100-4FFA-BA18-194F3C68703F} +"MULTIPOLYGON (((-73.96492705722271 40.75223498849439, -73.96511236604395 40.75204120730153, -73.96513539155461 40.75202332842736, -73.96515302919435 40.75201227645407, -73.96517508737715 40.75200093315021, -73.96519805514185 40.75199153160741, -73.96521869581467 40.751984876800485, -73.96524745738175 40.75197809656845, -73.96529201225803 40.75197274478873, -73.96532681181725 40.75197264450693, -73.96536977939462 40.751977445422014, -73.9654018124885 40.751984794170134, -73.96543281489177 40.75199537991835, -73.96546996394942 40.75201097701451, -73.96546992128908 40.752011037335606, -73.96540524529037 40.75210112253693, -73.96539452222754 40.75211605870659, -73.9653250069354 40.75208687402173, -73.96519911800091 40.75226221945834, -73.96526860616581 40.7522914420315, -73.96525789607621 40.75230636108233, -73.96515099282163 40.75245526073077, -73.96513950577419 40.75247037764646, -73.96497246256982 40.75240067915751, -73.96495221783843 40.75239045856308, -73.96493451439241 40.75237780016914, -73.96491985412128 40.7523630634316, -73.96490865125546 40.75234666631237, -73.9649012229006 40.75232907176906, -73.96489777956918 40.75231077874671, -73.96489842045295 40.75229230596723, -73.96490312632648 40.75227417661852, -73.96491176310734 40.75225690484802, -73.96492408660204 40.75224097865462, -73.96492705722271 40.75223498849439)))",M256,4668,M256,M-06,M-06,M-06,M-06,"E. 48 St. To E. 49 St., FDR",106,4,17,10017,M,0.329,False,MacArthur Playground,Yes,100003948,PARK,20100106000000.00000,19660228000000.00000,436 EAST 49 STREET,DPR,True,MacArthur Playground,Y,MacArthur Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M256/,No,73,28,12,{909AD651-2944-4276-A560-B65FA931002B} +"MULTIPOLYGON (((-73.81937749046988 40.60151600316389, -73.81946749373476 40.600941506660824, -73.8194964886218 40.600756432363895, -73.81955793664284 40.60036419841071, -73.81991577420676 40.60039614746252, -73.81990707036555 40.60044961054882, -73.8202426281132 40.60047956862789, -73.82021980774942 40.60061974183535, -73.81987137478009 40.60058678637891, -73.81981594228411 40.600927274098915, -73.82016437700291 40.60096022972231, -73.82007479836685 40.60151045920318, -73.82007469864746 40.60151107410499, -73.82006375305087 40.601578305401695, -73.81937749046988 40.60151600316389)))",Q460,6432,Q460,Q-14,Q-14,Q-14,Q-14,"Cross Bay Blvd., Channel Rd. bet. E. 16 Rd. and E. 18 Rd.",414,32,100,11693,Q,1.55,False,Broad Channel Park,Yes,100000071,PARK,20090423000000.00000,19890710000000.00000,,DPR,False,Broad Channel Park,Y,Broad Channel Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q460/,No,23,15,5,{156A86E5-0D0F-40A6-A766-0994A764BD9C} +"MULTIPOLYGON (((-73.78272509216917 40.70173682842872, -73.78272871827822 40.701730827039924, -73.78277394347062 40.70165597517358, -73.78281163203746 40.70159359920635, -73.78285685822398 40.70151874820886, -73.78290961961585 40.70143142126684, -73.78296464476813 40.70134035152692, -73.7829791894778 40.70131627847718, -73.78298194828024 40.70131171356683, -73.78329123951862 40.70133913165281, -73.7833361918345 40.70147502920219, -73.78333829313202 40.701483084659316, -73.78333901818414 40.70148972371774, -73.7833382014903 40.70149781150367, -73.78333530833604 40.701505856658734, -73.78333222394645 40.701512306642265, -73.78306215264561 40.70195514560796, -73.78305434750713 40.70196108239796, -73.78304837355303 40.70196498927697, -73.78304271876893 40.70196826369554, -73.78303493437926 40.70197218697262, -73.78302569823401 40.70197607959653, -73.7830208921216 40.701977813932814, -73.7829172465794 40.702018345175276, -73.78272509216917 40.70173682842872)))",Q121A,5981,Q121A,Q-12,Q-12,Q-12,Q-12,173 St. bet. 106 Ave. and 107 Ave.,412,27,103,11433,Q,0.599,False,William Simmons Community Garden Club,No,100008333,PARK,20110712000000.00000,19360916000000.00000,,DPR,True,William Simmons Community Garden Club,N,William Simmons Community Garden Club,Undeveloped,Garden,http://www.nycgovparks.org/parks/Q121A/,No,29,14,5,{EA9311DA-2E2F-40C3-A001-036629286AE7} +"MULTIPOLYGON (((-73.84209590015743 40.83876745051436, -73.84210567281954 40.83875935943912, -73.84211622897067 40.83876686060394, -73.8421835255734 40.83871113462795, -73.8422035796553 40.8387253871835, -73.84221335111248 40.83871729609747, -73.84222390726694 40.838724798152995, -73.84221413580994 40.838732889239914, -73.84237518196683 40.83884734441917, -73.84238504570172 40.838854352942725, -73.84226053755201 40.83895745598463, -73.8422225647664 40.83898889975442, -73.84202179541255 40.838845059045, -73.84207564376254 40.83880046824147, -73.84210645749226 40.8387749525822, -73.84209590015743 40.83876745051436)))",X312,5530,X312,X-10,X-10,X-10,X-10,Commerce Ave. bet. Butler Pl. and Westchester Ave.,210,13,45,10461,X,0.133,False,Ferris Family Burial Plot,No,100003872,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,Ferris Family Burial Plot,Y,Ferris Family Burial Plot,Cemetery,Cemetery,http://www.nycgovparks.org/parks/X312/,No,82,34,14,{37F49B68-C536-477E-8EDC-702B74E38FD4} +"MULTIPOLYGON (((-73.8384015434683 40.670757788372626, -73.83879370984987 40.66976657405202, -73.83950876971508 40.66998111699514, -73.83960056873939 40.670351884277615, -73.83967540561976 40.670654139022396, -73.83960322192033 40.67066450061181, -73.83953325415668 40.67067454466278, -73.83945964240195 40.670685111289174, -73.83939233540845 40.670694771745126, -73.83931822433598 40.67070541052586, -73.83925459322057 40.67071454292922, -73.83917723447173 40.67072564715121, -73.83911333948099 40.67073481873033, -73.83905235373861 40.67074357290214, -73.83904167071248 40.67076305144492, -73.83899031179453 40.670856695467876, -73.83877928393083 40.67084966587179, -73.83867269533455 40.6708237400594, -73.83857487375015 40.670799947166884, -73.83847969992487 40.670776798175865, -73.8384015434683 40.670757788372626)))",Q386,4922,Q386,Q-10,Q-10,Q-10,Q-10,Albert Rd. bet. 96 St. and Centerville St.,410,32,106,11417,Q,2.095,False,Centreville Playground,Yes,100000246,PARK,20090423000000.00000,19571009000000.00000,149-48 CENTREVILLE STREET,DPR,True,Centreville Playground,Y,Centreville Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q386/,No,23,15,8,{4635325C-3B70-4D45-B9C0-D7DA003D78AB} +"MULTIPOLYGON (((-73.87879993031743 40.728771870480536, -73.87880497737412 40.72876816479311, -73.87897117174028 40.72889784546954, -73.8791062269648 40.72884314631541, -73.87923924682678 40.728789271535895, -73.87933901128707 40.72874886489955, -73.87943877444098 40.72870845907581, -73.87966572251919 40.72861654102896, -73.8797355981455 40.72856522555488, -73.87974062660747 40.72856916243129, -73.87967027685877 40.728620827711104, -73.87897178725467 40.728903725542956, -73.87879993031743 40.728771870480536)))",Q360I,6064,Q360I,Q-05,Q-05,Q-05,Q-05,82 St. bet. Queens Midtown Exwy. and 58 Ave.,405,30,104,"11373, 11379",Q,0.011,False,N/A,No,100008312,PARK,20110712000000.00000,19531229000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q360I/,No,30,16,6,{E34620DE-EDE3-4816-8D13-CE07AC0379A2} +"MULTIPOLYGON (((-73.98307727476411 40.773261768703996, -73.98350203497118 40.772682574582106, -73.98283540617243 40.77240002183092, -73.98245709158326 40.77291587562185, -73.98245082148475 40.77265247844869, -73.98347581369494 40.77125450441508, -73.98362797071779 40.77131898325225, -73.98320331624805 40.77189817526954, -73.98387942964713 40.77218469485777, -73.98395107631907 40.77208697416328, -73.98398490449247 40.77210130857532, -73.98398345418612 40.77210330839098, -73.98564562727891 40.77280502559954, -73.98564565688899 40.77280503821027, -73.98561872491675 40.772842321077526, -73.98561852238386 40.77284223550449, -73.98561723375396 40.77284168873835, -73.98429408004323 40.772280894331494, -73.98421496770578 40.77238877458946, -73.98419604717401 40.7723807548175, -73.98389717437138 40.77278830180376, -73.9845467810939 40.7730636312833, -73.98447645777661 40.77315952449125, -73.98428725134224 40.77307933247316, -73.98389827279493 40.773609742514125, -73.98307727476411 40.773261768703996)))",M232,69244,M232,M-07,M-07,M-07,M-07,"Columbus Ave., Amsterdam Ave., W. 63 St. and W. 65 St.",107,6,20,10023,M,3.8,False,Lincoln Center Plaza,No,100004793,PARK,,19601201000000.00000,60 COLUMBUS AVENUE,DPR/Lincoln Center,True,Lincoln Center Plaza,N,Lincoln Center Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M232/,No,67,27,10,{829AB31F-ABA6-4BF3-A9B9-6D557471E62B} +"MULTIPOLYGON (((-73.8443690625045 40.81743152873411, -73.84441642288239 40.81763421371329, -73.84379652517426 40.81771781348706, -73.84384812581666 40.817653963328816, -73.84423500506772 40.8176028889855, -73.84420088783202 40.817453731220795, -73.8443690625045 40.81743152873411)))",X364,13491,X364,X-09,,,X-09,"Havemeyer Ave., Lacombe Ave., Zerega Ave.",209,18,,11207,X,0.136,False,,,100037082,PARK,,20160209000000.00000,,DPR,False,Havemeyer Garden,,Havemeyer Garden Association,,Garden,,No,87,34,15,{259E8EC9-8F78-412D-B4FE-66ABAD917DE4} +"MULTIPOLYGON (((-73.82488070831846 40.758595895974665, -73.82477173764364 40.75835813338999, -73.8244650689448 40.75843802142278, -73.82426581319436 40.758002066896566, -73.82509842154019 40.75777775438739, -73.82542255230253 40.758450395955784, -73.82488070831846 40.758595895974665)))",Q308,6235,Q308,Q-07,Q-07,Q-07,Q-07,Union St. bet. Barclay Ave. and Sanford Ave.,407,20,109,11355,Q,1.28,False,Bowne Playground,Yes,100000137,PARK,20090423000000.00000,19501118000000.00000,,DPR/DOE,False,Bowne Playground,Y,Bowne Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q308/,No,40,16,6,{C655AF9F-C0A0-4654-B1AD-6425BA3244DC} +"MULTIPOLYGON (((-73.96143279695747 40.69911344669077, -73.96142394007909 40.699137007427275, -73.96137526956406 40.69917906213709, -73.96132659641222 40.69921943736986, -73.96127349529328 40.69926654242121, -73.96119607177931 40.69932037057935, -73.96112307330026 40.69936410453699, -73.96108326044667 40.699380920755566, -73.9610611486981 40.69938091417748, -73.96102577300245 40.69936912080218, -73.9608798639037 40.69931016609357, -73.96072511675735 40.69924279469787, -73.96071185704925 40.69922596320024, -73.96071408134813 40.69920408511344, -73.96073399352771 40.6991838943187, -73.96084014729843 40.699167101711794, -73.96109889057514 40.699123431762565, -73.96136648050772 40.69908145086092, -73.96139080550837 40.699078091107424, -73.96141954530772 40.69908651513145, -73.96142838409821 40.69909829949602, -73.96143279695747 40.69911344669077)))",B223NB,5784,B223NB,B-01,B-01,B-01,B-01,"Kent Ave., Classon Ave., Wallabout St.",301,33,90,11211,B,0.206,False,Classon Triangle,Yes,100004429,PARK,20100106000000.00000,19460514000000.00000,,DPR/CDOT,False,Classon Triangle,Y,Classon Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223NB/,No,50,26,7,{D12379AF-91B2-40F8-BB9A-4E8A18DD6323} +"MULTIPOLYGON (((-73.97125377590508 40.68945696904904, -73.97113442128199 40.68885560696102, -73.97152661374092 40.68881050429846, -73.97157509381097 40.689054761631134, -73.97189140326071 40.6890183847437, -73.97198377369584 40.68948558819555, -73.97125377590508 40.68945696904904)))",B321,5176,B321,B-02,B-02,B-02,B-02,Dekalb Ave. between Adelphi St. and Carlton Ave.,302,35,88,11205,B,0.917,False,Edmonds Playground (IS 113),Yes,100004707,PARK,20100106000000.00000,19590312000000.00000,319 CARLTON AVENUE,DPR/DOE,False,Edmonds Playground,Y,Edmonds Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B321/,No,57,25,8,{264CFA1D-4774-4459-8DDC-E5E86367B3D2} +"MULTIPOLYGON (((-73.91223538084505 40.82272951155485, -73.9122850803189 40.82263567533253, -73.91263026355271 40.822740335527314, -73.91258344741956 40.82282873058233, -73.9125635473186 40.822866303109684, -73.91240810120264 40.82281917202645, -73.91221836353513 40.82276164361782, -73.91223538084505 40.82272951155485)))",X341,4725,X341,X-03,X-03,X-03,X-03,Elton Av bet. E 159 St and E 160 St,203,17,42,10451,X,0.116,False,Edith Garden,No,100004924,PARK,20100106000000.00000,20050429000000.00000,838 ELTON AVENUE,DPR,False,Edith Garden,Y,Edith Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X341/,No,79,32,15,{6BAD5D11-90DB-4BFF-9371-DA756FAA56B9} +"MULTIPOLYGON (((-73.73728426556666 40.75866896915924, -73.73777773357004 40.758357199951206, -73.7377824544791 40.75836159707607, -73.73764235856497 40.758450110604365, -73.73752136580521 40.75852655294354, -73.73739564169932 40.7586059830647, -73.73725820533078 40.75869281373344, -73.73709129807038 40.758798263442806, -73.7369362364704 40.75889622881622, -73.73680057500373 40.75898193735502, -73.73667840613768 40.75905911994052, -73.73656717382906 40.75912939438828, -73.73656646505115 40.75912984122087, -73.73640066329826 40.759234590058995, -73.73639594123425 40.7592301928754, -73.736562407837 40.75912502412622, -73.73723033357462 40.75870304207735, -73.73728426556666 40.75866896915924)))",Q357E,6261,Q357E,Q-11,Q-11,Q-11,Q-11,Horace Harding Exwy. Sr. Rd. N. bet. 244 St. and Overbrook St.,411,19,111,11362,Q,0.02,False,Strip,No,100000054,PARK,,19540830000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q357E/,No,26,11,3,{29AF8D78-C589-40B1-BEE1-E95DD75400B7} +"MULTIPOLYGON (((-73.95866350643134 40.73562462109388, -73.95965823566655 40.73552349382001, -73.95872673379581 40.73604646867355, -73.95866350643134 40.73562462109388)))",B043,5810,B043,B-01,B-01,B-01,B-01,Franklin St. bet. Commerical St. and Dupoint St.,301,33,94,11222,B,0.504,False,Greenpoint Playground,Yes,100004404,PARK,20100106000000.00000,19310328000000.00000,,DPR,False,Greenpoint Playground,Y,Greenpoint Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B043/,No,50,18,12,{53EC2C01-0F0E-47DA-8795-A5F12D6C7499} +"MULTIPOLYGON (((-73.74395257250316 40.599725613499025, -73.74393072172201 40.59961809152035, -73.74344931534199 40.59967319987433, -73.74337675337668 40.599314179083336, -73.74432683269417 40.599198403416786, -73.74440005713772 40.59954584430804, -73.74475757484825 40.599517906722646, -73.744779758144 40.59962315725332, -73.74395257250316 40.599725613499025)))",Q407,5359,Q407,Q-14,Q-14,Q-14,Q-14,Lanett Ave. bet. Beach 9 St. and Beach 8 St.,414,31,101,11691,Q,0.974,False,Lanett Playground,Yes,100000144,PARK,20090423000000.00000,19600315000000.00000,8-15 LANETT AVENUE,DPR/DOE,False,Lanett Playground,Y,Lanett Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q407/,No,23,15,5,{B971A8B1-2C6B-48BB-AB10-FCC1BD96B632} +"MULTIPOLYGON (((-73.88436854859785 40.7289092201206, -73.88540439640101 40.72882993832726, -73.88594238075623 40.730102179851315, -73.88592081033991 40.73020249052164, -73.88600993196299 40.730605738554075, -73.88527230317742 40.730950850146506, -73.88500422955502 40.731336373465574, -73.88461344791205 40.73057617884764, -73.8848518790976 40.73050877487104, -73.88410206116812 40.72892961439366, -73.88436854859785 40.7289092201206)))",Q492,4751,Q492,Q-04,Q-04,Q-04,Q-04,"Grand Ave., 57 Ave. bet. 74 St. and 80 St.",404,25,110,11373,Q,6.219,False,Elmhurst Park,Yes,100000211,PARK,20090423000000.00000,20060119000000.00000,78-01 57 AVENUE,DPR,False,Elmhurst Park,Y,Elmhurst Park,Neighborhood Park,Community Park,http://www.nycgovparks.org/parks/Q492/,No,30,16,6,{E808364A-3BFE-4114-BB46-8D308CEF820B} +"MULTIPOLYGON (((-74.021044939076 40.63903000709135, -74.02115277123642 40.63892591526587, -74.02115555098719 40.638927662661224, -74.0209363610872 40.63913925892202, -74.02103894283714 40.63920106260452, -74.02141240656938 40.63942606659127, -74.02142462915714 40.6394973115457, -74.02143297084683 40.639557697867964, -74.02144016001262 40.63962560913747, -74.02144492036824 40.639691361415416, -74.02144806523205 40.63979911327975, -74.02144463751709 40.639797047228924, -74.02144151709409 40.63969176097977, -74.02143673773028 40.639625706130985, -74.02142954502123 40.63955779396141, -74.0214214580417 40.63949910867109, -74.02140924128679 40.63942761157004, -74.02138526989587 40.63941316991102, -74.02131824961111 40.63937279049355, -74.02125574723634 40.63933513517117, -74.0211910965715 40.63929618436425, -74.02112642824662 40.639257222717895, -74.02106200001688 40.63921840507402, -74.0210160344568 40.639190712630366, -74.02099764753403 40.63917963510755, -74.02093132767635 40.63913967767898, -74.021044939076 40.63903000709135)))",B210L,6672,B210L,B-07,B-07,B-07,B-07,N/B Gowanus Exwy. bet. 63 St. and 64 St.,307,38,72,11220,B,0.009,False,Strip,No,100004631,PARK,20100106000000.00000,19581230000000.00000,,DPR,True,Park,N,64th Street Community Garden,EXWY,Strip,http://www.nycgovparks.org/parks/B210L/,No,51,23,7,{86305B28-A77D-4DC3-B82F-29CD85B89E2C} +"MULTIPOLYGON (((-73.92442434586505 40.80801552471101, -73.9247536419314 40.8075555764355, -73.92541764147835 40.80783577385197, -73.92530105665779 40.80799805101907, -73.92543118605998 40.808047623048914, -73.92521473924347 40.80834746764825, -73.92442434586505 40.80801552471101)))",X131,5613,X131,X-01,X-01,X-01,X-01,E 135 St bet. Alexander Av and Willis Av,201,8,40,10454,X,1.05,False,Lozada Playground,Yes,100004835,PARK,20100106000000.00000,19631121000000.00000,,DPR/DOE,True,Lozada Playground,Y,Lozada Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X131/,No,84,29,15,{25C2C21C-21C1-4499-B618-070919F8CC23} +"MULTIPOLYGON (((-73.97111544179398 40.6937611249516, -73.97140655928055 40.69372796782381, -73.97140938090867 40.69374194628529, -73.97184548048538 40.69369227434815, -73.97192536669326 40.69409264836124, -73.97119904924567 40.69417537550165, -73.97116044653158 40.693984111321306, -73.97111544179398 40.6937611249516)))",B300,5162,B300,B-02,B-02,B-02,B-02,"Adelphi St., Myrtle Ave., Clermont Ave.",302,35,88,11205,B,0.703,False,Oracle Playground (PS 46),Yes,100004433,PARK,20100106000000.00000,19570228000000.00000,121 ADELPHI STREET,DPR/DOE,False,Oracle Playground,Y,Oracle Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B300/,No,50,25,8,{49E80892-8437-4940-B373-15F5BC889270} +"MULTIPOLYGON (((-73.74925026011584 40.599987477836684, -73.74951699688225 40.599798266465974, -73.74969547782375 40.599939793872814, -73.74975038902684 40.59998333591793, -73.74981566155131 40.600035093478176, -73.74987098636906 40.60007896415679, -73.74993582206395 40.6001303739947, -73.75000915915359 40.600188527416364, -73.7499164168004 40.6002543152776, -73.7497424222194 40.60037774082263, -73.7495518365737 40.60022661542883, -73.74925026011584 40.599987477836684)))",Q463,6318,Q463,Q-14,Q-14,Q-14,Q-14,Caffrey Ave. bet. New Haven Ave. and Davies Rd.,414,31,101,11691,Q,0.459,False,Cornell Burial Ground,Yes,100000261,PARK,20090423000000.00000,19920612000000.00000,,DPR,False,Cornell Burial Ground,N,Cornell Burial Ground,Undeveloped,Cemetery,http://www.nycgovparks.org/parks/Q463/,No,23,10,5,{8A33E5EC-CCEC-44C0-BF53-7B6CFF79039A} +"MULTIPOLYGON (((-73.86333322632865 40.74764513252796, -73.86329057307616 40.74778404370301, -73.86323509855126 40.747675516237464, -73.86333322632865 40.74764513252796)))",Q055,5867,Q055,Q-04,Q-04,Q-04,Q-04,"National St., 42 Ave., 102 St.",404,21,110,11368,Q,0.1,False,Veteran's Square,Yes,100000462,PARK,20090423000000.00000,19220601000000.00000,,DPR,True,Veteran's Square,Y,Veteran's Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q055/,No,39,13,14,{EFB95685-D74B-4630-82E4-C8CB256432C9} +"MULTIPOLYGON (((-73.93792999681882 40.85223814809097, -73.9386232357676 40.8524021869361, -73.93830048803765 40.85344387166602, -73.93759861678829 40.85331820969321, -73.93792999681882 40.85223814809097)))",M009,4808,M009,M-12,M-12,M-12,M-12,"Ft Washington Av, W 183 St, Pinehurst Av",112,10,34,10033,M,1.8,False,Bennett Park,Yes,100003824,PARK,20100106000000.00000,19250718000000.00000,521 FT WASHINGTON Av,DPR,True,Bennett Park,Y,Bennett Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M009/,No,71,31,13,{31572400-445F-4F7B-9ECF-093381A121D2} +"MULTIPOLYGON (((-73.89349875550805 40.851086922911634, -73.89350600460324 40.85108713761743, -73.89351310518325 40.85108826618527, -73.89351985806401 40.85109027871502, -73.89352607478087 40.851093116500884, -73.8935315823159 40.85109670194085, -73.89353622547733 40.8511009340367, -73.89353987519031 40.851105694705005, -73.89354242968037 40.85111085057906, -73.8935438156518 40.85111625751255, -73.89354399539751 40.85112176418801, -73.89354296560589 40.851127216618245, -73.89354075142435 40.851132462643335, -73.89353741831361 40.851137354642766, -73.89353305780588 40.8511417567267, -73.89352701450285 40.85114689566093, -73.89339935786994 40.85125551039632, -73.89339144261356 40.85125952467984, -73.89338273337094 40.85126244142955, -73.89337349118473 40.85126417173789, -73.89336399482575 40.85126466453431, -73.89335452893674 40.85126390477357, -73.89334537809968 40.85126191523106, -73.89333681735005 40.85125875559362, -73.89316274891183 40.851178782998524, -73.8931569596664 40.851175610605985, -73.89315193404917 40.8511717599493, -73.8931478082714 40.851167335611926, -73.89314469361568 40.85116245746238, -73.89314267525575 40.85115725705154, -73.89314180751451 40.85115187670757, -73.89314211506556 40.851146459631536, -73.89314358699542 40.85114115529511, -73.89314618631218 40.85113610594169, -73.89314984045558 40.85113144837882, -73.89315445197734 40.85112730948556, -73.89315989380485 40.85112380170556, -73.89316602110743 40.85112101855585, -73.89317266655122 40.85111903552271, -73.89317964978933 40.85111790826945, -73.89349875550805 40.851086922911634)))",X036,5670,X036,X-06,X-06,X-06,X-06,E. 181 St. at Third Ave. and Quarry Rd.,206,15,48,10457,X,0.1,False,Murphy Triangle,Yes,100004599,PARK,20100106000000.00000,19131006000000.00000,,DPR,True,Murphy Triangle,Y,Murphy Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X036/,No,86,33,15,{125E0CDB-6CD6-4AF3-A3FD-BE2B02E5FA40} +"MULTIPOLYGON (((-74.09126298048638 40.60871157083331, -74.09158376021465 40.60867129468379, -74.09159214551306 40.60867953678344, -74.0918546950335 40.60893761047495, -74.09157037939256 40.60906985565715, -74.09137786454903 40.60889249708056, -74.09133653818384 40.60885463416262, -74.09132223207864 40.60884048482212, -74.09131509674295 40.60883210753212, -74.09129774503066 40.608802809325944, -74.09128948032311 40.6087868244212, -74.0912831631053 40.60877272006014, -74.09127306763551 40.6087442913944, -74.09126298048638 40.60871157083331)))",R155,6121,R155,R-02,R-02,R-02,R-02,South Clove Rd. and Richmond Rd.,502,50,122,10304,R,0.3,False,South Clove Road Cemetery,No,100004873,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,South Clove Road Cemetery,N,South Clove Road Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/R155/,No,63,24,11,{A41B3086-B6DF-457E-A118-840F28EF9259} +"MULTIPOLYGON (((-73.98325414168744 40.57530722581321, -73.98315443473105 40.57473736839684, -73.98300444528752 40.57388010104613, -73.9829726381667 40.57369830205071, -73.98297299934069 40.57369910897423, -73.98284115197642 40.5729377255707, -73.98463611298139 40.5727267318984, -73.98463822578002 40.572726483636146, -73.9846453327611 40.57276266316162, -73.98464991426209 40.57278598285804, -73.98465103958584 40.57279170674269, -73.98468639062826 40.57297163807215, -73.98467869925643 40.57300137957205, -73.98466002245699 40.57304166474758, -73.98463268627953 40.57307896352301, -73.98459747630513 40.573112202572155, -73.98455540602137 40.57314042656756, -73.98450768611187 40.57316282249134, -73.9844739809853 40.57317402767058, -73.98447121593301 40.57317575270187, -73.98445343327126 40.57318930769386, -73.98443900760148 40.573205010888856, -73.98442837835732 40.573222385069776, -73.98442186570693 40.57324090347415, -73.98441967055011 40.57326000240161, -73.98441967164305 40.57326037972151, -73.9844196691423 40.57326097496789, -73.98442455176131 40.573289296226456, -73.9844388814347 40.57331568894072, -73.98444445168624 40.57332246344071, -73.98477464211544 40.57400173279434, -73.98511073350456 40.574707989738094, -73.98512152060201 40.57471918645539, -73.98513897632597 40.57473250116737, -73.98515919969353 40.57474330287067, -73.98518157547687 40.57475126189238, -73.98520542347235 40.574756137703766, -73.98523001975776 40.57475778162421, -73.98524050354382 40.574757487599584, -73.98538798797195 40.57473501495535, -73.9854448852634 40.575020601883516, -73.9854457004445 40.5750246948702, -73.9854471148306 40.57503220542289, -73.98540156159986 40.57504109502329, -73.98511397668122 40.575088820131505, -73.98487266478811 40.57511876616592, -73.98465983380247 40.57514355009207, -73.98325414168744 40.57530722581321)))",B369,4611,B369,B-13,B-13,B-13,B-13,"Surf Ave. between W. 16 St. and W. 19 St., Public Beach",313,47,60,11224,B,10.01,False,Steeplechase Park,No,100003998,PARK,20100106000000.00000,19691119000000.00000,1904 SURF AVENUE,DPR,True,Steeplechase Park,N,Steeplechase Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B369/,Yes,46,23,8,{3067771C-4457-4C61-8439-C0E03994ADC8} +"MULTIPOLYGON (((-74.16185588015657 40.526960262695056, -74.1609479209113 40.52602683552941, -74.16184603090285 40.52572678701615, -74.16213044792528 40.52558521414755, -74.16282073485479 40.52524160722747, -74.16306070871988 40.52512215354572, -74.16385108539575 40.52472871145931, -74.164966689054 40.52417335991752, -74.16516388776262 40.524075191470914, -74.16526826937009 40.52402322745613, -74.16527023036602 40.52402595503915, -74.1660062890142 40.52504976876822, -74.16592189375605 40.52510253755229, -74.16616165548241 40.52544707022228, -74.16610598190138 40.525486087898074, -74.16605214330787 40.52551748441102, -74.16600302497636 40.52554166803412, -74.16594110853784 40.52556698409231, -74.16589275988925 40.52558321037559, -74.16583018391417 40.52560005964619, -74.16577940052785 40.52561054582038, -74.16573122478695 40.52561800242765, -74.16567650661081 40.52562364668561, -74.16562381206245 40.52562631624987, -74.16556268805887 40.52562717437502, -74.16551058302157 40.525627239605726, -74.1654537830663 40.52562859303347, -74.165397924549 40.52563411542956, -74.16534042117627 40.52564308199205, -74.16527318890205 40.5256587822855, -74.16520816773063 40.525680513806776, -74.16516529827048 40.52569725330426, -74.16511885749956 40.52572012062389, -74.16334317301214 40.52671608112993, -74.16327026223993 40.52660888855356, -74.16208222116732 40.52728396557403, -74.16195946130169 40.52710786648461, -74.16185588015657 40.526960262695056)), ((-74.16506083356904 40.526126703155995, -74.16544056293019 40.52596796318546, -74.16557776341345 40.52616328116788, -74.16500788044759 40.52640151016153, -74.16487068114279 40.52620619240201, -74.16493272686078 40.52618025537263, -74.16506083356904 40.526126703155995)), ((-74.16324784285737 40.52683886525896, -74.16330635058694 40.526805713696746, -74.16339155003011 40.52693102542433, -74.16321737550994 40.52703246480074, -74.16328489649757 40.52713177373388, -74.16322181545495 40.527158200328195, -74.1631587355448 40.52718462778662, -74.16309565558481 40.52721105521032, -74.1630325755749 40.527237482599325, -74.1628967917229 40.52703777490986, -74.162955302161 40.527004623523716, -74.16301381018074 40.526971472110986, -74.16307231814244 40.526938320668414, -74.16313082604397 40.52690516829536, -74.16324784285737 40.52683886525896)), ((-74.16360181461778 40.526638296993994, -74.16375072459232 40.526553921184195, -74.16383250867513 40.52667420710114, -74.16344960887132 40.52689721163848, -74.1633648582585 40.526772562104625, -74.16342336586979 40.52673940958208, -74.16360181461778 40.526638296993994)))",R137,6304,R137,R-03,R-03,R-03,R-03,Bayview Ter. from Barclay Ave. to Harold Ave.,503,51,123,10312,R,16.944,False,Bayview Terrace Park,No,100004662,PARK,20100106000000.00000,19970116000000.00000,,DPR,False,Bayview Terrace Park,N,Bayview Terrace Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R137/,Yes,62,24,11,{3637D58E-3B6F-41E1-B947-8F4F1367C9E3} +"MULTIPOLYGON (((-73.9882759795244 40.57591467000657, -73.98835400501964 40.57590607883603, -73.98839737985469 40.57613292169806, -73.98831934702112 40.576141471473065, -73.98824404710696 40.5761497225007, -73.98818222172629 40.57615649710545, -73.9881799104195 40.57615675081556, -73.98811577371893 40.57616377729352, -73.988072428138 40.57593708381576, -73.98813655754563 40.57593002224065, -73.98820068930169 40.575922960629974, -73.9882759795244 40.57591467000657)))",B490,4974,B490,B-13,B-13,B-13,B-13,Mermaid Ave. between W. 21 St. and W. 22 St.,313,47,60,11224,B,0.141,False,Santos White Garden,No,100003994,PARK,20100106000000.00000,20021120000000.00000,2104 - 2112 MERMAID AVENUE,DPR,False,Santos White Garden,N,Santos White Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B490/,No,46,23,8,{1524FC03-823E-4A81-9914-45B5929AEF6C} +"MULTIPOLYGON (((-73.92075565632062 40.846534545015764, -73.9207571439759 40.84652605079065, -73.92075825220948 40.84651752118566, -73.92075897863585 40.846508967905564, -73.92075932442707 40.84650040265759, -73.92075928957573 40.84649183174512, -73.92075887169543 40.846483267773486, -73.92075806958862 40.84647472064727, -73.92075689036282 40.84646619667474, -73.92075532926106 40.84645770755907, -73.92075339219852 40.84644926501074, -73.92075107916578 40.84644087713408, -73.92074839370864 40.846432553836955, -73.92074533819022 40.846424302324934, -73.92074191615309 40.84641613520731, -73.92073813470273 40.84640806059328, -73.92073399382731 40.846400088388336, -73.92072949944655 40.846392226700914, -73.92072465747556 40.84638448724139, -73.92071947383931 40.84637687361583, -73.92071395326721 40.84636939753377, -73.9207066491294 40.846361004424445, -73.92070638742287 40.84636070257954, -73.9207033123695 40.846356908491266, -73.92070201257856 40.846353039982006, -73.92070234580171 40.84634905463075, -73.92070498396819 40.84634431895264, -73.92071148513968 40.84633991641058, -73.92071899449023 40.846338303386666, -73.92074341562724 40.8463409910296, -73.92076452902002 40.84634309737856, -73.92078572726034 40.84634465538194, -73.92079258447096 40.84634498156652, -73.92080739628054 40.8463462065007, -73.92086755704867 40.84634774350504, -73.92092756503831 40.84634413315749, -73.92098665769707 40.84633542266208, -73.92104408544377 40.846321721367225, -73.92109911996661 40.846303203472765, -73.92112589319095 40.8462933802986, -73.92112816218909 40.84629293700669, -73.92113049724819 40.846292784618974, -73.92113283195715 40.84629292759263, -73.92113510465757 40.8462933622834, -73.92113725132928 40.846294076941156, -73.92113921152011 40.84629505081329, -73.92114093308498 40.84629625774983, -73.92114236863169 40.8462976634997, -73.92114347788623 40.846299231115175, -73.9211442300696 40.84630091645107, -73.92114460507831 40.846302672668024, -73.92114459229659 40.84630445203272, -73.92114419178316 40.84630620501803, -73.92114341545266 40.84630788390606, -73.92114228351953 40.84630944188497, -73.9211408280511 40.84631083665355, -73.92113908822624 40.84631202861684, -73.92092358098527 40.84648452892984, -73.9208627892603 40.84652682750131, -73.9208627016969 40.846526669855045, -73.92076419918546 40.84660307566814, -73.92075496128237 40.8466043453203, -73.92074801753547 40.84660297720414, -73.9207436539645 40.84660076439733, -73.92074029698855 40.84659769951557, -73.9207381193914 40.84659407353667, -73.92073738888251 40.84659012707622, -73.9207381539892 40.84658593670951, -73.92074259941015 40.84657618202635, -73.9207459496264 40.8465679997511, -73.92074893352213 40.84655973347829, -73.9207515487099 40.846551396713636, -73.92075379162159 40.846542998459654, -73.92075565632062 40.846534545015764)))",X077,5696,X077,X-05,X-05,X-05,X-05,Dr. MLK Jr. Blvd and Featherbed La.,205,14,46,10453,X,0.17,False,Featherbed Triangle,Yes,100004764,PARK,20100106000000.00000,19170105000000.00000,,DPR,True,Featherbed Triangle,Y,Featherbed Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X077/,No,77,29,15,{11BEBA85-3B3B-4EBB-A5EA-8E303F35962D} +"MULTIPOLYGON (((-73.89225784074365 40.66964512815964, -73.89227411901366 40.66970891255374, -73.89190259122867 40.66976400343693, -73.89188661886722 40.6697014097602, -73.89225784074365 40.66964512815964)))",B442,5245,B442,B-05,B-05,B-05,B-05,Sutter Ave. between Wyona St. and Bradford St.,305,42,75,11207,B,0.056,False,Ps 149 Artsy Bloom Community Garden,No,100004027,PARK,20100106000000.00000,20040408000000.00000,367 WYONA STREET,DPR,False,P.S. 149 Artsy Bloom Community Garden,N,Ps 149 Artsy Bloom Community Garden,,Garden,http://www.nycgovparks.org/parks/B442/,No,60,19,8,{63805D6B-96CF-49C4-9ACC-505DBC2A68CF} +"MULTIPOLYGON (((-73.89406037944143 40.862207627660695, -73.89405466904638 40.86220421406128, -73.89404914751755 40.86220062774078, -73.89404382196298 40.862196874108804, -73.89403870423789 40.862192956778195, -73.89403379907088 40.86218888565868, -73.89400294021195 40.86215986962686, -73.89400181370735 40.8621596857924, -73.89400199748782 40.86215898267822, -73.89393926488552 40.86209999603651, -73.89393533429644 40.86209543864328, -73.893932665329 40.86209038263749, -73.89393136441889 40.862085024424076, -73.89393148341236 40.86207957836736, -73.89393301722716 40.862074256077946, -73.89393590503435 40.86206926911516, -73.89394003265652 40.862064812780325, -73.89394523968583 40.862061065223, -73.89395131832656 40.86205816943, -73.89395802761119 40.86205624404448, -73.89396511004016 40.86205536176941, -73.89397228089108 40.8620555592632, -73.89438158559669 40.86209795604881, -73.89443755801872 40.862103753301234, -73.89444458126513 40.862105034821035, -73.89445113079765 40.86210735327204, -73.89445694108431 40.86211061115847, -73.8944617810359 40.86211468220038, -73.89446545995033 40.86211940233417, -73.89446782867599 40.86212458412162, -73.89446879384077 40.86213001946402, -73.89446831545986 40.8621354922072, -73.89446641285784 40.862140783549606, -73.8944631634666 40.86214568194681, -73.89445869569649 40.86214999120917, -73.89445318891858 40.862153541308025, -73.89444686160283 40.86215618926503, -73.8942393942253 40.86222346042144, -73.89423268581012 40.8622255794295, -73.89422586623606 40.86222748762054, -73.89421894973785 40.86222918410706, -73.89421195055586 40.86223066439966, -73.8942048758083 40.862231927604306, -73.89419773854942 40.86223296923063, -73.8941905518265 40.86223378929049, -73.89418332750199 40.86223438689431, -73.8941760762538 40.86223476025084, -73.8941688123181 40.862234907572194, -73.89416154518094 40.86223483066807, -73.8941542890755 40.86223452955148, -73.8941470546798 40.86223400243127, -73.8941398550352 40.86223325292134, -73.89413270081813 40.86223228013107, -73.89412560625762 40.862231086774905, -73.89411858083972 40.86222967466261, -73.89411163642113 40.86222804650651, -73.8941047860448 40.86222620502008, -73.89409804156888 40.86222415201517, -73.89409141129053 40.862221891101434, -73.8940849094328 40.86221942859538, -73.89407854429716 40.86221676540507, -73.8940723277346 40.862213907844854, -73.89406626922674 40.862210860426025, -73.89406037944143 40.862207627660695)))",X005,4794,X005,X-07,X-07,X-07,X-07,E. Kingsbridge Rd. at E. Fordham Rd.,207,15,52,10458,X,0.15,False,Bryan Park,Yes,100003722,PARK,20100106000000.00000,19330621000000.00000,321 E. FORDHAM RD,DPR,True,Bryan Park,Y,Bryan Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X005/,No,78,33,13,{B5798E3E-BF93-46CD-BC5D-3B227F6DB87A} +"MULTIPOLYGON (((-74.03616436902067 40.62703729873124, -74.03664520973163 40.62582968793793, -74.03861244456482 40.62628989506696, -74.03812678391351 40.627496829441824, -74.03812615031343 40.62749668106615, -74.03616436902067 40.62703729873124)))",B192A,6558,B192A,B-10,B-10,B-10,B-10,83 St. to 85 St. bet. Colonial Rd. and Narrows Ave.,310,43,68,11209,B,6.02,False,Fort Hamilton Athletic Field (Ft. Hamilton HS),Yes,100004509,PARK,20100106000000.00000,,8301 SHORE ROAD,DOE,False,Fort Hamilton Athletic Field,Y,Fort Hamilton Athletic Field,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B192A/,No,46,22,11,{1FE1F7F1-5D7D-415D-8CD7-36E99D0FDE36} +"MULTIPOLYGON (((-73.96859126510712 40.74695827253949, -73.96894088304624 40.746527194957146, -73.96896925839404 40.746540437348955, -73.96987357969982 40.74545156611, -73.96997870618806 40.74550291613242, -73.97023911263146 40.74518424489418, -73.97034353000326 40.74504883923008, -73.97033964139007 40.74504685711412, -73.97033622184742 40.7450444266665, -73.97033335778082 40.74504161004448, -73.97033112493456 40.74503848110922, -73.97032958010554 40.745035120020425, -73.97032876469541 40.74503161413795, -73.97032869879183 40.745028054418164, -73.9703293835378 40.74502453271301, -73.97033080231688 40.74502113906889, -73.9703329172003 40.74501796352669, -73.97043555278103 40.7448785347538, -73.97044146253315 40.74487510263866, -73.97044797581928 40.74487237487434, -73.9704549481643 40.74487040905603, -73.9704622268103 40.744869251070284, -73.97046965072133 40.74486892428905, -73.97047705531574 40.74486943767509, -73.97056395811443 40.74474943228257, -73.97079441610944 40.74441001342802, -73.97098590500302 40.7444868930601, -73.97087559934366 40.744649446304145, -73.9707456891342 40.74482349843396, -73.97061129816323 40.74499970418232, -73.97047327296504 40.74517002852969, -73.97033406111156 40.74533138605765, -73.97021322670804 40.74546960064589, -73.97012463017121 40.74557419405285, -73.96969884103171 40.74604076584403, -73.96901981432208 40.74667870481466, -73.96897243469277 40.74673724749278, -73.9683825672538 40.74744104445158, -73.96834317813565 40.74742899836489, -73.96830620396145 40.74741313208075, -73.96827228044535 40.74739371863004, -73.96824199353907 40.74737109316532, -73.96859126510712 40.74695827253949)))",M289,5950,M289,M-15,M-15,M-06,M-06,FDR Dr. bet. E. 36 St. and E. 41 St.,106,4,17,10016,M,1.735,False,East River Esplanade 36th-38th,Yes,100004767,PARK,20100106000000.00000,19940303000000.00000,,DPR/DSBS,False,East River Esplanade,Y,East River Esplanade,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/M289/,Yes,74,27,12,{14C1EA0A-482F-414C-89F8-225F6A824780} +"MULTIPOLYGON (((-73.76878221174239 40.59703145584793, -73.76839044938781 40.59707628037299, -73.7683762267321 40.59700130275605, -73.76876818248482 40.596956455255544, -73.76878221174239 40.59703145584793)))",Q503,5499,Q503,Q-14,Q-14,Q-14,Q-14,Beach 36 St. bet. Norton Ave. and Seagirt Blvd.,414,31,101,11691,Q,0.069,False,Garden,No,100008347,PARK,20130114000000.00000,20120305000000.00000,426 BEACH 36 STREET,DPR,False,Garden,,Garden,,Garden,,No,31,10,5,{4CF71141-FBF4-461D-89B8-559D4375EBDE} +"MULTIPOLYGON (((-73.8894045650259 40.66873180328452, -73.88974847537627 40.66868087509855, -73.88976314135657 40.668737534328336, -73.88941918104005 40.668788470614736, -73.8894045650259 40.66873180328452)))",B446,5048,B446,B-05,B-05,B-05,B-05,Van Siclen Ave. and Blake Ave.,305,42,75,11207,B,0.043,False,Big Red Garden,No,100004625,PARK,20100106000000.00000,20021120000000.00000,436 VAN SICLEN AVENUE,DPR,False,Big Red Garden,N,Big Red Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B446/,No,60,19,8,{6524676E-4F8D-40EE-A4FF-26FDA4767E97} +"MULTIPOLYGON (((-73.96066525456999 40.63256320589352, -73.96068788464143 40.632560733602766, -73.96069000399658 40.63256074873568, -73.96069624149746 40.63256079139136, -73.96069682886058 40.63256096359137, -73.9606982517683 40.632561381018164, -73.96070413721742 40.632563107524334, -73.96070519848936 40.63256341856618, -73.9607122532547 40.632568656596426, -73.960715682602 40.63257416534449, -73.96071653380918 40.632579931660636, -73.96071518431583 40.632585318106315, -73.96071510978223 40.63258543064574, -73.96071232363806 40.63258964862691, -73.96071048461013 40.63259132026291, -73.96070904768523 40.632592625524964, -73.96070472475151 40.63259510858051, -73.96070116971468 40.63259629244897, -73.96069949327872 40.63259685109847, -73.96069450226841 40.63259772379669, -73.96069390413044 40.63259778302651, -73.96068678558025 40.632598486599974, -73.9606410975282 40.63260341392019, -73.96062946687253 40.632604670665394, -73.96050134642178 40.63261848841833, -73.96045487461153 40.632623500044154, -73.96040805052873 40.6326285502522, -73.96038703873474 40.63263081682649, -73.96038476319603 40.63263106188428, -73.96035768014465 40.63263398193932, -73.96028465483431 40.63264185789552, -73.96014526647258 40.63265689066222, -73.96012403242595 40.63265918142546, -73.96011436521925 40.632660223575336, -73.96006938870619 40.63266507437109, -73.96004749267841 40.6326674369318, -73.96003023284446 40.63266929770975, -73.96002518666407 40.63266950397547, -73.96001810853612 40.63266979328267, -73.96001686028916 40.6326698441782, -73.96001398030744 40.63266882829141, -73.96000740964705 40.63266651167146, -73.9600017185848 40.63266193505359, -73.95999887403688 40.632657020830536, -73.95999788531783 40.63265201900215, -73.9599987174203 40.63264814435692, -73.95999884662135 40.63264754285492, -73.9599990232366 40.63264671894117, -73.96000271570904 40.63264108027306, -73.96000770611873 40.632637285419385, -73.96001534602779 40.632634482958714, -73.96002654659455 40.6326329748812, -73.9600459968644 40.632630851012784, -73.96012458757592 40.632622265728116, -73.9601734732957 40.63261692548183, -73.96022456598635 40.63261134463907, -73.96029253431192 40.63260391993601, -73.96030322639493 40.63260275295278, -73.9603597969094 40.63259657239409, -73.9603782234616 40.6325945588804, -73.96049234086372 40.63258209353664, -73.9605537319367 40.63257538863549, -73.96060518155755 40.63256976812321, -73.96064138802313 40.63256581283442, -73.96065774470516 40.63256402639884, -73.96066525456999 40.63256320589352)), ((-73.95877056328409 40.632775319520086, -73.95880091733201 40.63277206511727, -73.95880129200827 40.632772106675375, -73.95880157212979 40.63277213649288, -73.95880742748835 40.63277277345692, -73.9588143215216 40.63277585300109, -73.9588146169461 40.632775985483256, -73.95881522292913 40.632776626870104, -73.95881961719182 40.63278127872582, -73.95882102505607 40.63278690837641, -73.95881991448967 40.63279178429084, -73.95881646020733 40.63279627034147, -73.95881162617326 40.63279937179953, -73.9588043212194 40.632801345822436, -73.95875941057365 40.632806415856116, -73.95871010957113 40.63281198138233, -73.9587019920325 40.632812899698315, -73.95869642193738 40.632813529862084, -73.95868090439987 40.632815283901586, -73.9586718837299 40.632816303649555, -73.95849727797034 40.632836050381655, -73.95844893915485 40.632841517086085, -73.95835997594945 40.63285157702275, -73.95835792144253 40.632851809513205, -73.9583165310471 40.63285648982333, -73.9581548881025 40.63287477018602, -73.95805326440022 40.63288626070492, -73.95804142319308 40.63288760085981, -73.9579946565761 40.63289278608445, -73.95799195342069 40.63289256266861, -73.95799180094663 40.63289255090617, -73.95798850798987 40.63289227954722, -73.95798260139453 40.632890411512896, -73.95797711222987 40.63288638868805, -73.95797509650012 40.632883228028994, -73.95797415299425 40.63288174542936, -73.95797382117142 40.63288122660893, -73.95797331851348 40.63287606644945, -73.95797475052224 40.63287140048171, -73.95797810319264 40.63286694323584, -73.95798240992102 40.63286410457179, -73.95798895604177 40.63286213572692, -73.95799081668838 40.6328619184811, -73.95801539519267 40.632859044896044, -73.95828510623667 40.63282914316246, -73.95835131018282 40.632821803615585, -73.95842048947888 40.632814133715506, -73.95852057967628 40.632803036746246, -73.95857879962172 40.63279658209993, -73.95867280073709 40.63278615909451, -73.95875009157083 40.632777590491465, -73.95877056328409 40.632775319520086)), ((-73.96447424284122 40.632144956030565, -73.96447473458431 40.632144908454976, -73.9644805769082 40.632145604560364, -73.96448099644539 40.632145750574125, -73.96448811084841 40.63214823190146, -73.96449363456621 40.63215236158814, -73.96449759484126 40.63215803428201, -73.96449854685596 40.632163772685395, -73.9644975451731 40.63216918809958, -73.96449525476343 40.63217300379339, -73.96449167607354 40.63217660206418, -73.96448636128562 40.63217967119378, -73.96447932155047 40.632181247629624, -73.96440732444495 40.632189028365296, -73.96438986862887 40.63219091405107, -73.9643555598554 40.6321946216647, -73.96421829517107 40.63220945560963, -73.9640699625736 40.63222548452391, -73.96398822263326 40.63223431826135, -73.96392570691428 40.63224107327151, -73.96385367658125 40.632248857252115, -73.96380897249257 40.632253687983855, -73.96380652687846 40.632253731339496, -73.96379998317482 40.632253849949066, -73.96379441583049 40.6322517634938, -73.96378998008524 40.6322489218589, -73.96378642550337 40.632245045804616, -73.96378434266195 40.63224092887455, -73.96378370945779 40.632235916384346, -73.96378575916577 40.632229209961736, -73.96378992851217 40.632224155759125, -73.963794866184 40.6322212504375, -73.96380158119403 40.63221910481308, -73.96384840598209 40.63221392895153, -73.96387725005704 40.632210741173274, -73.9640006751475 40.63219710099395, -73.96420036828614 40.6321750312787, -73.96434455654851 40.63215909636611, -73.96444023203884 40.632148522379985, -73.9644596229359 40.63214637973617, -73.96447424284122 40.632144956030565)), ((-73.96646539803197 40.63192913578847, -73.96647658722608 40.63192856361943, -73.96647708242075 40.63192869794122, -73.96648468170467 40.63193076955014, -73.96648981233741 40.63193406514544, -73.96649303257126 40.63193790049546, -73.96649486529228 40.631943758007594, -73.9664941107384 40.63194932569902, -73.9664920982898 40.63195300823685, -73.96648888518617 40.631956157317184, -73.96648262003112 40.63195950542314, -73.96647358042559 40.63196103997419, -73.96644112563486 40.63196404004198, -73.96639353883415 40.631969201427864, -73.96616724699034 40.63199374175587, -73.96605464712567 40.63200595202953, -73.96595393773171 40.63201687346907, -73.96582410782777 40.632030953295065, -73.96569743283561 40.63204468991735, -73.96567872999807 40.63204671770881, -73.96565757367608 40.63204801894583, -73.96565527458965 40.63204816054119, -73.96564872319301 40.632044899604466, -73.96564404170785 40.63203940503752, -73.96564302099102 40.632033761177595, -73.965644951895 40.63202785074536, -73.9656482467476 40.63202441624837, -73.96565419726123 40.63202160120144, -73.96565592782936 40.63202140090255, -73.96578018587076 40.632007082771686, -73.96579118512898 40.6320058298202, -73.96590197321855 40.63199322844183, -73.9660389502347 40.63197764677175, -73.96610489724928 40.63197014419306, -73.96626077796849 40.63195241288698, -73.9663267237512 40.631944910180685, -73.96637690414555 40.631939202065126, -73.96643242397626 40.63193288673551, -73.96646539803197 40.63192913578847)), ((-73.96539459034081 40.632045400631576, -73.96540169796454 40.63204504346329, -73.96540673995015 40.63204596531121, -73.96540994408103 40.632046551612724, -73.96541513898124 40.63204891523776, -73.96541905573162 40.63205204121805, -73.96542219410352 40.63205635384868, -73.96542366187694 40.632061468339586, -73.96542290474193 40.63206728006394, -73.96541950002549 40.6320728469513, -73.96541448030621 40.632076852752704, -73.96540686905094 40.63207966548655, -73.96538009128608 40.632082811045805, -73.96535786703738 40.63208517541949, -73.96533806722933 40.63208728207073, -73.96529167538786 40.63209221733046, -73.96527164506998 40.63209434911523, -73.96509367602734 40.63211328267463, -73.96494434985581 40.63212916923272, -73.96494418909299 40.632129186293604, -73.96486911402509 40.632137174399915, -73.96476631797638 40.63214811037095, -73.96474213734116 40.63215068294661, -73.96473037587226 40.632151497010994, -73.9647232266217 40.6321500746987, -73.96472080654499 40.6321487736062, -73.96471553507924 40.63214593985525, -73.96471213962647 40.63214057441934, -73.96471025216856 40.63213345613494, -73.964712292638 40.63212615625067, -73.96471734126516 40.63212121665022, -73.9647214723066 40.63211916113156, -73.96472260142626 40.632118599553905, -73.96472869629261 40.63211783238018, -73.96475316677937 40.632114749301714, -73.96513806859568 40.63207313568068, -73.96518803508462 40.6320677332952, -73.96523878410167 40.632062246475805, -73.96527624181681 40.63205819645177, -73.96532178376302 40.63205327264869, -73.96539459034081 40.632045400631576)), ((-73.95975054140659 40.632665275679166, -73.95976421792865 40.63266442137045, -73.95976433256266 40.63266445833185, -73.95977026753849 40.63266635600174, -73.9597750789286 40.63266935551396, -73.95977828609851 40.63267271197098, -73.95978024125777 40.63267648042783, -73.95978097695101 40.63268157672411, -73.95977991031835 40.63268624194168, -73.95977698219535 40.63269058052008, -73.95976029417285 40.63269485665043, -73.9596659987191 40.63270579824029, -73.95965166212919 40.632707460972064, -73.95963335720484 40.63270958607641, -73.95963098235272 40.63270986080157, -73.95948021640847 40.63272735168722, -73.95942310169904 40.6327339782787, -73.95942248818528 40.63273404920323, -73.95942090179678 40.63273423324981, -73.95935429356597 40.63274196229396, -73.95923202220264 40.63275614721136, -73.9591689519805 40.6327634640642, -73.95910371375734 40.63277103135622, -73.95909593350355 40.632771301445985, -73.95909257648104 40.632771418219754, -73.95909142871022 40.63277145833473, -73.95909092408283 40.63277129966379, -73.95908711869204 40.63277010962431, -73.95908457546189 40.632769314461264, -73.9590798987045 40.63276654640156, -73.9590760780243 40.63276330407268, -73.9590758134833 40.63276292485988, -73.95907521471926 40.632762072755476, -73.95907366879999 40.632759869534944, -73.95907233429068 40.63275602024031, -73.95907212646391 40.63275182374624, -73.95907348905631 40.63274650126147, -73.95907695886685 40.63274171893773, -73.95908395355606 40.6327368018899, -73.9590909147475 40.63273446571813, -73.95909812683257 40.632733560560446, -73.95910946435671 40.63273237050431, -73.95913950034296 40.63272921585661, -73.95920800422627 40.63272202071689, -73.95928465394371 40.6327139702262, -73.95941338457415 40.632700449414706, -73.95942787356357 40.63269892814795, -73.95945814239357 40.632695748284675, -73.95949202489611 40.632692190567916, -73.95949941892513 40.632691413322895, -73.95956965568813 40.632684034872085, -73.9596429505224 40.63267633776744, -73.95974495022676 40.63266562492435, -73.95975054140659 40.632665275679166)), ((-73.95656855284919 40.6330160182219, -73.9566108297074 40.63301177022431, -73.95661619070285 40.6330128303574, -73.95661645184225 40.63301296733485, -73.95662342345082 40.633016604461076, -73.95662768160217 40.633021319385506, -73.95662937120811 40.63302784698688, -73.95662735974702 40.63303457851059, -73.95662197447876 40.6330399435742, -73.95661510032599 40.63304276140712, -73.9566143897366 40.63304305290729, -73.95660575897155 40.633044230231164, -73.95660351764391 40.63304453646233, -73.95659565305148 40.63304537908139, -73.95654547356537 40.6330507569404, -73.95646733356054 40.633059131028816, -73.95622771685545 40.63308481202078, -73.95611760531511 40.63309661367958, -73.95600401240911 40.633108787616386, -73.9559195845998 40.63311783521645, -73.955893075788 40.63312050409565, -73.9558916621928 40.63312033155417, -73.9558872713017 40.6331197949612, -73.95588546293973 40.63311957454069, -73.95588035794053 40.63311749418339, -73.9558755385172 40.63311434591954, -73.95587488305164 40.63311349647827, -73.95587285760644 40.633110867985586, -73.95587253991108 40.6331104581274, -73.95587116556547 40.63310634402769, -73.95587132907151 40.63310218549225, -73.95587296308837 40.63309792936457, -73.95587647163964 40.63309392430055, -73.95588237109077 40.633090445156604, -73.95588926582263 40.63308873681517, -73.95589447509326 40.633088643358484, -73.95589876497759 40.63308819654531, -73.95596191693433 40.633081625346605, -73.95615700483116 40.63306052689017, -73.95624812926447 40.63305067209723, -73.95627753670655 40.633047491842966, -73.95646740537535 40.633026957301766, -73.95656855284919 40.6330160182219)), ((-73.95564174620914 40.633117251090304, -73.95566255129815 40.63311523204575, -73.95566747045916 40.6331159129341, -73.95566898686525 40.63311612333976, -73.95567475449202 40.63311893428308, -73.95567977160131 40.63312519662734, -73.95568039989547 40.63313135912321, -73.95567835195189 40.63313592036461, -73.95567381147325 40.63313992502475, -73.95566832407039 40.63314232549472, -73.95565739522631 40.63314377381819, -73.95564017647833 40.63314569338726, -73.95559472517394 40.63315075927464, -73.95543247451695 40.63316884376477, -73.95535253127586 40.63317775400667, -73.95531601557558 40.63318182547784, -73.95517732916908 40.63319728294302, -73.95511675255301 40.63320403481999, -73.95504908201346 40.633211577249504, -73.95501008973275 40.6332159223137, -73.9550025454321 40.63321676314811, -73.95499308964 40.63321781755742, -73.95498498737757 40.63321872030812, -73.95497732161245 40.633219137849245, -73.95497207043643 40.63321825418452, -73.95496565539649 40.633214969279244, -73.95496137238464 40.63321046590564, -73.95496084503293 40.63320895913025, -73.95496071997755 40.633208603376154, -73.95495993426456 40.633206349969065, -73.95496011016517 40.63320142509783, -73.9549620857326 40.63319734291713, -73.95496587662154 40.63319367568624, -73.95496627271477 40.63319350924532, -73.95497351709157 40.63319045031681, -73.95498859286434 40.633188502993036, -73.95506732554908 40.633179914917044, -73.95507748231593 40.633178806744354, -73.95508871953896 40.63317758102474, -73.9551516401791 40.633170716611396, -73.9551936396724 40.63316613493398, -73.9552254705768 40.63316266322436, -73.95528026058003 40.63315668528728, -73.95533783564314 40.633150404030395, -73.95540486881909 40.63314309171669, -73.9554158766992 40.63314189109071, -73.95549942522051 40.63313277688176, -73.95554476178249 40.633127831657276, -73.95558507788692 40.63312343379246, -73.95564174620914 40.633117251090304)), ((-73.96351702030933 40.63224972798752, -73.96354415499057 40.63224696209396, -73.96355174641077 40.6322481820029, -73.96355732905201 40.632250381039675, -73.96356200099433 40.63225358206563, -73.96356582363339 40.632257912073555, -73.96356799575331 40.632263021408185, -73.96356834383288 40.63226847866582, -73.96356614551146 40.632274555574405, -73.9635619903282 40.63227961157442, -73.9635569022805 40.63228296619751, -73.96355061622813 40.632285294749046, -73.9635356296407 40.632287096439036, -73.9634883948672 40.63229181547966, -73.96347032084766 40.63229362068333, -73.9634464948202 40.63229600038801, -73.96338083256761 40.632302559589355, -73.96338077582783 40.6323025649744, -73.96334799907264 40.632305838724946, -73.96322479660127 40.63231814550613, -73.96316069347125 40.632324549290566, -73.96314651715076 40.63232525615793, -73.96313771359821 40.63232291648812, -73.96313286062477 40.63232007379358, -73.9631288219196 40.632315348373986, -73.9631267579756 40.632311327793694, -73.96312667859532 40.632307384393954, -73.96312752934368 40.63230151598209, -73.96313149560378 40.6322961609648, -73.96313687114755 40.63229236519824, -73.96315747533126 40.63228940008833, -73.96315942463158 40.63228911885035, -73.96320410757875 40.63228417219733, -73.96330352002012 40.63227316630262, -73.96337086120606 40.63226571076302, -73.96341337262679 40.6322610046761, -73.96346560552895 40.63225522194009, -73.96349459267527 40.632252013591334, -73.96351702030933 40.63224972798752)), ((-73.96137926502591 40.632483766386066, -73.96142191822007 40.632479663530525, -73.96142601113736 40.63248038531921, -73.9614268242841 40.632480528774536, -73.96142955447239 40.632481008766746, -73.96142974117525 40.63248110608546, -73.96143689261334 40.63248481952446, -73.96144154455854 40.63248975052751, -73.96144185960422 40.63249070878574, -73.96144357524491 40.63249592967172, -73.96144230632922 40.632503119893165, -73.96144185205057 40.63250378252309, -73.96143897614205 40.63250796627203, -73.96143537286949 40.632510833217665, -73.96143039049142 40.63251315938896, -73.9614302202342 40.63251323947809, -73.96142857464196 40.63251361984575, -73.96142411546494 40.632514651245444, -73.96140834980372 40.63251647581032, -73.96140231282133 40.63251717438796, -73.9613596627419 40.632521978741835, -73.96134737365462 40.63252336321211, -73.96134579319016 40.632523540983655, -73.96131360585072 40.63252716645544, -73.9612731473687 40.63253172297129, -73.96126757259375 40.632532352357536, -73.96122701244488 40.63253692052963, -73.96115922383552 40.63254455746787, -73.96112739583424 40.632548141585055, -73.96109572859434 40.632551708637926, -73.96107230885444 40.63255434643718, -73.96105100388793 40.632556745409865, -73.96104893522045 40.63255696893843, -73.96102719056995 40.63255931732867, -73.96102214065715 40.63255986223213, -73.96101329203138 40.63255786458177, -73.9610128087632 40.63255755914184, -73.96101089577627 40.6325563517973, -73.96100622497033 40.63255340191298, -73.96100215478964 40.63254815860947, -73.96100013964671 40.632541743526694, -73.96100070292991 40.632536600851736, -73.96100286770286 40.63253171176594, -73.96100670466238 40.63252745991436, -73.96101295039728 40.6325235195586, -73.96101497178304 40.632523296014654, -73.96102851743007 40.63252180034141, -73.96113795593062 40.632509710989034, -73.96116902733165 40.63250627880118, -73.96122493693133 40.63250010389727, -73.96126759393086 40.63249558866237, -73.96127745849458 40.63249454378043, -73.96137926502591 40.632483766386066)), ((-73.96200884922665 40.63241690365185, -73.96201055965604 40.632416818667636, -73.96201664048638 40.6324179706398, -73.96202302530358 40.63242083459935, -73.96202758464604 40.63242446880023, -73.96203028689065 40.63242836083678, -73.96203181364082 40.63243325116103, -73.96203170239026 40.63243765376337, -73.96203014680387 40.63244189559637, -73.9620271043142 40.63244600186035, -73.96202275848259 40.632449360262754, -73.96201814861881 40.63245141732726, -73.96195807923975 40.632458236913045, -73.96193032485006 40.63246131560781, -73.96192688495526 40.63246169809006, -73.96192078653057 40.63246237506211, -73.96188927544046 40.63246587214475, -73.96182497658836 40.63247300724186, -73.9617494962857 40.632481384002034, -73.96169187860514 40.6324877792192, -73.96166312662723 40.63249075125579, -73.96165260838885 40.63249183827721, -73.96165188376777 40.63249191277866, -73.96164452611083 40.63249118630693, -73.96164391986925 40.63249095196967, -73.96163821670446 40.632488753700336, -73.96163535612968 40.63248684814749, -73.96163371493228 40.632485755269876, -73.96163284766223 40.6324851768471, -73.96162983784623 40.632481749366576, -73.96162766294954 40.6324776035502, -73.96162682192198 40.63247250002637, -73.96162776002522 40.63246706390412, -73.96163012171958 40.63246291870118, -73.96163044828718 40.632462344278814, -73.96163495542055 40.63245807011689, -73.96164156830679 40.632454848463944, -73.96164170306628 40.63245483229956, -73.96169073054142 40.632449217697584, -73.9617181018065 40.63244641179046, -73.96181218305179 40.6324367651943, -73.9618602112983 40.63243184178705, -73.96189393509069 40.63242838416806, -73.96193027720435 40.63242465815077, -73.96194414073167 40.632423236317486, -73.96198028661388 40.632419529130395, -73.96199628853563 40.632417888271156, -73.96200307608296 40.63241719261192, -73.96200884922665 40.63241690365185)), ((-73.96292456860664 40.63231465953411, -73.96292496931879 40.63231464435448, -73.96292502959314 40.63231465968275, -73.96293207347695 40.632316345925, -73.96293690656078 40.63231880409984, -73.96294077701327 40.63232210845241, -73.96294379685804 40.63232674169728, -73.96294491765545 40.63233481521454, -73.96294292051252 40.632340361770126, -73.9629400556723 40.63234395301849, -73.962936270378 40.632346936119525, -73.96293169475838 40.63234911840392, -73.96292413496514 40.63235054328964, -73.96291107054502 40.63235191597027, -73.96290314583652 40.63235274909573, -73.9628533267931 40.63235798574079, -73.9627786177174 40.63236583932348, -73.96270536731944 40.63237354024247, -73.96265600334901 40.63237872832159, -73.96261306874501 40.63238324218028, -73.96256445774962 40.632388352119754, -73.96255557601123 40.63238844828481, -73.96254933949302 40.632386681235694, -73.96254328175876 40.6323822757228, -73.9625399799461 40.63237673555256, -73.96254000982096 40.632369840285605, -73.96254247933364 40.63236513407547, -73.9625459076844 40.63236213826387, -73.962552047644 40.6323590343725, -73.96256479442847 40.63235709430204, -73.96266631408588 40.63234493247695, -73.96272683033341 40.632337682217766, -73.96279113045746 40.63232997838901, -73.96282880622181 40.632325463664365, -73.96285829951385 40.632321929651624, -73.96287067487357 40.63232044869215, -73.96289915628728 40.6323170359123, -73.96290586231541 40.632316233011665, -73.96291663948091 40.63231494154115, -73.96292456860664 40.63231465953411)))",B178,6361,B178,B-14,B-14,B-14,B-14,Glenwood Rd. bet. E. 23 St. and Coney Island Ave.,314,45,70,"11210, 11230",B,0.73,False,Flatbush Malls,Yes,100005129,PARK,20100106000000.00000,,,DPR,False,Flatbush Malls,N,Flatbush Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/B178/,No,"44, 42","17, 21",9,{86CFB765-A5AF-4774-9E2A-8CC41BE184CD} +"MULTIPOLYGON (((-73.99771196925718 40.712086555984, -73.99779487410677 40.71238584051604, -73.99764951092666 40.71239920752117, -73.99754507938233 40.71240839685355, -73.99746312135872 40.712415575748366, -73.99737364728114 40.71242341178639, -73.9970868780038 40.7124488172967, -73.99700430992883 40.7121507326467, -73.99771196925718 40.712086555984)))",M196,5836,M196,M-03,M-03,M-03,M-03,Madison St. bet. Catherine St. and Oliver St.,103,1,5,10038,M,0.44,False,Playground One,Yes,100004526,PLGD,20100106000000.00000,19520612000000.00000,,DPR,False,Playground One,Y,Playground One,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M196/,No,65,26,7,{8862511B-5016-497B-86CF-23DB5F11D2AE} +"MULTIPOLYGON (((-73.9526606084359 40.660777885568294, -73.95287621391398 40.66076460322754, -73.95290696769122 40.661042726842865, -73.95276527006683 40.661051455984776, -73.95269136013846 40.661056008339784, -73.9526606084359 40.660777885568294)))",B594,68002,B594,B-09,,,B-09,Maple St. bet. Rogers Ave. and Nostrand Ave.,309,40,71,11225,B,1.377,False,,No,100042699,PARK,,20181228000000.00000,237 MAPLE STREET,DPR,False,Maple Street Community Garden,,Maple Street Community Garden,Maple Street Community Garden,Neighborhood Park,,No,43,20,9,{86666EE9-DED1-4243-84CF-892D13892648} +"MULTIPOLYGON (((-74.17562672676485 40.62584590547204, -74.17491863492327 40.62578193399392, -74.1749833808768 40.62551780250051, -74.17483338730362 40.62550562510889, -74.17476897054314 40.62576841153795, -74.17473075884959 40.62576495938555, -74.17437399873903 40.62573272655574, -74.17463196700204 40.62468035899953, -74.17415531777122 40.624683457610715, -74.17406413342407 40.62468404956713, -74.17397452686538 40.624684631859374, -74.1737933518494 40.624685809105955, -74.17364448348368 40.62566681208436, -74.17331814186362 40.625637323450334, -74.17258576546192 40.62557114272382, -74.1728184694253 40.62403782777752, -74.17296900659433 40.623908196400095, -74.17315713744892 40.623838333475206, -74.17324760860977 40.62374555418707, -74.17415295656272 40.62417531924021, -74.17519742615046 40.62467668005189, -74.17584311948795 40.62500440183549, -74.17595890793639 40.625063091787126, -74.17643971651876 40.62530678082368, -74.17644931001126 40.62531127051014, -74.17645746491345 40.62531567505323, -74.17646359813739 40.62531939109808, -74.17647055419175 40.62532408834884, -74.1764789793599 40.62533057988505, -74.17648628530762 40.62533708394499, -74.17649457916617 40.62534576394952, -74.17650663669491 40.625362234892734, -74.17651560224111 40.625380884441604, -74.1765201675916 40.625398193565275, -74.17652144741686 40.62541242974996, -74.17652087787994 40.62542410048603, -74.17651844273287 40.62543734099437, -74.17651501174359 40.62544808858638, -74.17650438550723 40.625468724147694, -74.17649605431468 40.62547989980566, -74.17649068663333 40.62548589921722, -74.17648455788539 40.625491927712964, -74.17647904055897 40.62549675937693, -74.17647156741964 40.62550257200937, -74.17646498559169 40.625507104532325, -74.17645808154968 40.62551135838774, -74.17594267249284 40.625755408946205, -74.1757742788988 40.62575151962328, -74.17562672676485 40.62584590547204)))",R141,5753,R141,R-01,R-01,R-01,R-01,"Goethals Rd. N., Meeker Ave., Morrow St.",501,49,120,10303,R,9.187,False,Graniteville Swamp Park,No,100004055,PARK,20100106000000.00000,19970702000000.00000,,DPR,False,Graniteville Swamp Park,N,Graniteville Swamp Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R141/,No,63,23,11,{6D442BBC-AFD4-4B87-9A10-3AFA3C7D660A} +"MULTIPOLYGON (((-73.92689817063305 40.678824246359504, -73.92690325418025 40.6787694883844, -73.92699848375918 40.678774643956125, -73.92700381138569 40.678717267434145, -73.9270704498059 40.67872087572999, -73.92712938840263 40.678724066675215, -73.92719999503016 40.6787278890301, -73.92727911169578 40.678732172381, -73.92727378548781 40.678789548916356, -73.92726869869388 40.67884430780595, -73.92717839760566 40.678839418527694, -73.92710625325769 40.67883551323865, -73.92696757683909 40.67882800505817, -73.92689817063305 40.678824246359504)))",B530,5302,B530,B-03,B-03,B-03,B-03,Rochester Ave. between Fulton St. and Herkimer St.,303,36,81,11233,B,0.083,False,Seasons of Vision,No,100004842,PARK,20100106000000.00000,20071101000000.00000,9-11 ROCHESTER AVENUE,DPR,False,Seasons of Vision,N,Seasons of Vision,Greenthumb,Garden,http://www.nycgovparks.org/parks/B530/,No,56,25,8,{2ABE2201-872C-4119-BBA7-1D2CD022F3CC} +"MULTIPOLYGON (((-73.94059870081793 40.845499047635684, -73.94250390461548 40.84630108483822, -73.94250388138451 40.846327961824706, -73.94250180916357 40.84635471442228, -73.94249768636041 40.84638180998564, -73.9424931548281 40.846409834653166, -73.94248821296827 40.84643789333454, -73.94248245192104 40.84646158331832, -73.94247257931217 40.84649523069748, -73.94246311704266 40.84652333124703, -73.94245243330107 40.84655287827761, -73.94243806186772 40.84658215782167, -73.94242615121736 40.846607085611765, -73.94241260534635 40.84663196575859, -73.9423970080966 40.84665808845934, -73.94236276630802 40.84670859348088, -73.94231568043448 40.84678273179552, -73.94229782100261 40.84681243460915, -73.94227952299836 40.84684873961042, -73.9422629556016 40.84688446645821, -73.94224465386844 40.84692775296886, -73.94222545722465 40.846985579278005, -73.94220756523893 40.84705264258691, -73.94219839208559 40.84709852527898, -73.94213815883832 40.84740664174692, -73.94087172505739 40.84716024439729, -73.94068857502008 40.847124609741755, -73.94001069098525 40.84699271348114, -73.94059870081793 40.845499047635684)))",M099,4694,M099,M-12,M-12,M-12,M-12,W. 173 St. bet. Haven Ave. and Ft. Washington Ave.,112,10,33,10033,M,6.699,False,J. Hood Wright Park,Yes,100005104,PARK,20100106000000.00000,19251026000000.00000,301 FT WASHINGTON AVENUE,DPR,False,J. Hood Wright Park,Y,J. Hood Wright Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M099/,No,71,31,13,{34F0FD15-93A9-45E0-A4EC-ECC824B17A84} +"MULTIPOLYGON (((-73.8123478129198 40.697083196601476, -73.8122550945171 40.697059056585594, -73.81268895940562 40.69691594324508, -73.81254331667228 40.69661671008541, -73.81269026078348 40.69657444054048, -73.81295109504475 40.69690386682721, -73.81295887753625 40.69691369688423, -73.8128892559742 40.697099406682774, -73.81288219497375 40.69709977612075, -73.81257613419808 40.697115788149745, -73.81253954770891 40.69711346196903, -73.81244285061008 40.69710137351311, -73.8123478129198 40.697083196601476)), ((-73.8118426558566 40.69716454290508, -73.8117906474198 40.69710959132077, -73.8115850504974 40.69689235609943, -73.81161797514093 40.69688288615354, -73.81189861665565 40.69704528649086, -73.81196943376679 40.697080167472244, -73.81204265296986 40.697112044614244, -73.81211805682533 40.69714082210288, -73.81218179245082 40.69716031690867, -73.81224706343845 40.69717660294917, -73.81231126929976 40.69718921491753, -73.81240839744198 40.69720331143302, -73.81250665979191 40.69721169324832, -73.81251752061083 40.69722918632461, -73.81253415809147 40.697265466336766, -73.81194514182008 40.697424665522405, -73.81193705457711 40.69742685136434, -73.81192227862846 40.69739724081674, -73.81190927453832 40.69737117938872, -73.81181395776957 40.697180164936825, -73.81181066823403 40.69717357319511, -73.8118426558566 40.69716454290508)), ((-73.8122550945171 40.697059056585594, -73.81215223433374 40.69702516628112, -73.81205286612018 40.696985698397, -73.81195751226765 40.696940860913934, -73.81186667142343 40.69689088879075, -73.81178082085684 40.69683604396771, -73.81209824643324 40.696744736276365, -73.8122550945171 40.697059056585594)))",Q506,6615,Q506,Q-12,Q-12,Q-12,Q-12,Van Wyck Exwy. bet. 94 Ave. and 95 Ave.,412,27,,,Q,0.901,False,NULL,,100016520,PARK,,20150204000000.00000,,DPR,True,Jamaica Gateway Park,,Jamaica Gateway Park,,Undeveloped,,No,32,10,5,{434941C3-AA3F-4E05-BF1D-E8D2357CF694} +"MULTIPOLYGON (((-74.03430375819211 40.61181455603845, -74.03360672405425 40.61147153095784, -74.03360581934146 40.611472384016025, -74.03276488049238 40.61106009438304, -74.03276650541686 40.61105803082544, -74.03276307783179 40.61105634422547, -74.03295693854446 40.61081618819864, -74.03304728990781 40.6107014448396, -74.03309985016581 40.610634694777985, -74.03495925871984 40.61006452756746, -74.03500009196496 40.61015224123772, -74.0350296957015 40.610241017328825, -74.03505150264041 40.61033109614236, -74.0350654168299 40.61042207878101, -74.0350713754013 40.610513564534784, -74.03506935447753 40.61060514997857, -74.03505935972152 40.61069643077606, -74.03504143815529 40.61078700527839, -74.03501566634388 40.610876473627044, -74.03498215985036 40.61096444045267, -74.03494106496716 40.61105051847989, -74.03489256462471 40.61113432852558, -74.03461872576587 40.611450173727874, -74.03430375819211 40.61181455603845)))",B035,6007,B035,B-10,B-10,B-10,B-10,"101 St., Shore Pkwy. bet. 4 Ave. and Ft. Hamilton Pkwy.",310,43,68,11209,B,5.317,False,John Paul Jones Park (Cannonball Park),Yes,100004015,PARK,20100106000000.00000,18980101000000.00000,,DPR,False,John Paul Jones Park,Y,John Paul Jones Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B035/,No,46,22,11,{489B6A9B-BA5B-4D82-BC26-F53476DED34C} +"MULTIPOLYGON (((-73.87682921150802 40.731102884784164, -73.876989697968 40.73098726165128, -73.8769946825913 40.730991231017725, -73.87683617329019 40.73110543076613, -73.87682921150802 40.731102884784164)))",Q360X,5556,Q360X,Q-04,Q-04,Q-04,Q-04,57 Rd. at 85 St.,404,25,110,11373,Q,0.002,False,Strip,No,100000060,PARK,20090423000000.00000,19531229000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q360X/,No,30,16,6,{B4D005D0-F0A1-4112-BF16-E42E5C7ED489} +"MULTIPOLYGON (((-73.99728632001353 40.69600575065035, -73.99729025194364 40.69599747863474, -73.99778844536095 40.696130691299864, -73.99790988383145 40.69616376038942, -73.99776843321828 40.69646003715566, -73.99772954727234 40.696541485948664, -73.9976628524578 40.696517533683064, -73.99730404803438 40.69642125925109, -73.99733060491879 40.69636650961059, -73.99733205680646 40.69636251677178, -73.9973342659582 40.696357352383764, -73.99733620654503 40.6963519142337, -73.99733892701383 40.69634183666117, -73.9973409232939 40.69633424358584, -73.99734273736811 40.69632665050627, -73.99734400834242 40.69631988588564, -73.99734455410665 40.69631156516266, -73.99734491533066 40.69630245468591, -73.9973449157265 40.696292514828784, -73.99734346568393 40.69627995174527, -73.9973414642239 40.69626914104632, -73.99733928758488 40.696260168289314, -73.99733711206352 40.6962528506743, -73.99733402673317 40.69624470726814, -73.99732948270858 40.696233344495866, -73.99732476588298 40.696223543208056, -73.99731950594874 40.69621484593572, -73.99730722912282 40.69619707493502, -73.99730135042589 40.696187885967554, -73.99729170950125 40.6961741556266, -73.99728481575924 40.696162697342764, -73.99728064428663 40.69615510412264, -73.99727538325934 40.69614447434835, -73.99727320650351 40.6961386758966, -73.99727012246554 40.69612818395199, -73.99726684470549 40.696110052954864, -73.99726575657752 40.69610108022216, -73.99726484942614 40.69609321062155, -73.99726466517421 40.69608543289041, -73.99726502871759 40.6960777019989, -73.99726539224952 40.69607024756477, -73.99726557352582 40.69606403493308, -73.99726575823149 40.69606074986771, -73.99726684338968 40.69605556654333, -73.99726865743081 40.69604880193614, -73.99727119921971 40.69603927727534, -73.99727446507093 40.696030303745225, -73.99727799943291 40.696022861092686, -73.99728632001353 40.69600575065035)))",B222,5105,B222,B-02,B-02,B-02,B-02,"bet. Pierrepont Pl., Pierrepont St. and the BQE",302,33,84,11201,B,0.503,False,Pierrepont Playground,Yes,100004265,PARK,20100106000000.00000,19421125000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Pierrepont Playground,Y,Pierrepont Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B222/,No,52,26,7,{8697465A-2A0F-43F8-8977-050C76278AFE} +"MULTIPOLYGON (((-74.08391388491677 40.63860535599637, -74.08417840993037 40.63856792799302, -74.08424610501457 40.63883894276189, -74.08361950091286 40.638928245334306, -74.08355165382827 40.63865660895332, -74.08373675664718 40.63863041869067, -74.08391388491677 40.63860535599637)))",R037,6033,R037,R-01,R-01,R-01,R-01,"Winter Ave., bet. Bismark Ave. and Westervelt Ave.",501,49,120,10301,R,0.408,False,Liotti Ikefugi Playground,Yes,100004391,PARK,20100106000000.00000,19351016000000.00000,,DPR,False,Liotti Ikefugi Playground,Y,Liotti Ikefugi Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R037/,No,61,23,11,{A3F1B66B-48E1-4738-84F7-382FAFB43513} +"MULTIPOLYGON (((-73.99912364548912 40.6096503219506, -73.99934822306567 40.60943453599874, -73.99931904334535 40.60941699097057, -73.99954556326249 40.60919933785858, -73.99985248066889 40.60938388162058, -73.99940594253832 40.60982081497037, -73.99912364548912 40.6096503219506)))",B063,5425,B063,B-11,B-11,B-11,B-11,18 Ave. bet. 81 St. and 82 St.,311,47,62,11214,B,0.476,False,Milestone Park,Yes,100003923,PARK,20100106000000.00000,19100528000000.00000,8101 18 AVENUE,DPR,False,Milestone Park,Y,Milestone Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/B063/,No,49,23,11,{0A351E34-C867-46A6-A652-69EEA10F24C4} +"MULTIPOLYGON (((-73.90065656214513 40.67257748897403, -73.90075130371116 40.6725631309731, -73.90082039209503 40.672832522195385, -73.90072543840347 40.67284691248858, -73.90063704797288 40.672860307899, -73.90054865514128 40.67287370323946, -73.90047977957074 40.672604278719405, -73.90056817087499 40.67259088433095, -73.90065656214513 40.67257748897403)))",B416,5228,B416,B-05,B-05,B-05,B-05,Glenmore Ave. and Hinsdale Ave.,305,37,75,11207,B,0.172,False,Tlc Sculpture Park Garden,No,100004728,PARK,20100106000000.00000,19980728000000.00000,271 GLENMORE AVENUE,DPR,False,TLC Sculpture Park Garden,N,TLC Sculpture Park Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B416/,No,55,19,8,{F121021C-BD4B-4DBD-A386-48E1F586E32D} +"MULTIPOLYGON (((-73.92305320407046 40.867183685064, -73.92325282051638 40.86749158092263, -73.92292213801646 40.86760954251675, -73.922963959853 40.86767507473249, -73.922723681874 40.86776080183033, -73.92248480546031 40.867386489232, -73.92305320407046 40.867183685064)))",M026,4777,M026,M-12,M-12,M-12,M-12,Broadway and W. 204 St.,112,10,34,10034,M,0.545,False,Dyckman House Museum,No,100003823,PARK,20100106000000.00000,19160127000000.00000,4901 BROADWAY,DPR,True,Dyckman House Museum,N,Dyckman House Museum,Historic House,Historic House Park,http://www.nycgovparks.org/parks/M026/,No,72,31,13,{F3C76992-DE17-4E20-86CE-5DD114BCDE71} +"MULTIPOLYGON (((-74.11814392710342 40.5694323346675, -74.11815963398992 40.569416124359, -74.11823452342121 40.569461486925185, -74.1183731180248 40.56954543977687, -74.11851811092878 40.569633267125376, -74.11865896066503 40.56971858430282, -74.1187978211443 40.56980269666022, -74.11892250044491 40.5698782181087, -74.11893442399298 40.569885440586944, -74.11866797652296 40.570160416987264, -74.11852870406273 40.570076055454486, -74.1183170527778 40.569947851491776, -74.11816973647304 40.56985861695906, -74.11808709864682 40.569808560673096, -74.11800465481873 40.5697586202961, -74.1179239264505 40.56970972000698, -74.11789318638495 40.56969109987291, -74.11797553582116 40.569606114670684, -74.11805832590402 40.569520675090736, -74.11814392710342 40.5694323346675)))",R107,6090,R107,R-02,R-02,R-02,R-02,"8 St., bet. Allison Ave. and Beach Ave.",502,50,122,10306,R,0.785,False,New Dorp Park CLOSED,Yes,100004503,PARK,20100106000000.00000,19700108000000.00000,,DPR,True,New Dorp Park,N,New Dorp Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R107/,No,64,24,11,{2F147CAD-622F-40A8-B927-4315CF9F84CC} +"MULTIPOLYGON (((-73.94734787442285 40.655943886775816, -73.94731777991214 40.655664318272194, -73.94765499774094 40.655644183582055, -73.94770489091383 40.65592256961673, -73.94734787442285 40.655943886775816)))",B148,5482,B148,B-09,B-09,B-09,B-09,"Clarkson Ave., New York Ave.",309,40,71,11226,B,0.213,False,Rolph Henry Playground,Yes,100004173,PARK,20100106000000.00000,19360226000000.00000,748 NEW YORK AVENUE,DPR,False,Rolph Henry Playground,Y,Rolph Henry Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B148/,No,43,20,9,{8000528C-E51A-4712-8698-A41ECBDD9768} +"MULTIPOLYGON (((-73.92251220650344 40.703513396226214, -73.9239068172577 40.70208819732453, -73.9252177436721 40.702830653464765, -73.92381352822257 40.70425533044598, -73.92251220650344 40.703513396226214)))",B016,5031,B016,B-04,B-04,B-04,B-04,"Irving Ave., Kinickerbocker Ave. bet. Starr St. and Suydam St.",304,34,83,11237,B,6.873,False,Maria Hernandez Park,Yes,100003852,PARK,20100106000000.00000,18901009000000.00000,64 IRVING AVENUE,DPR,False,Maria Hernandez Park,Y,Maria Hernandez Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B016/,No,53,18,7,{7B84CA43-5DB0-4960-9D7E-E7F0EE0842C5} +"MULTIPOLYGON (((-73.82218300936414 40.59892072358114, -73.82191199178342 40.5978582309926, -73.82191498919562 40.59785860755414, -73.82183431086484 40.59753757255079, -73.82361929038227 40.597279335181796, -73.82361013951531 40.597358397078644, -73.824003100351 40.599078204811796, -73.82389210542841 40.599785292027796, -73.82379854388869 40.59977749326076, -73.82252499055289 40.59967132492272, -73.822566699643 40.599401213167326, -73.8221729233234 40.59936838287005, -73.82221426584987 40.599100630038855, -73.82218300936414 40.59892072358114)))",Q498,6344,Q498,Q-14,Q-14,Q-14,Q-14,W. 19 Rd. bet Jamaica Bay and Cross Bay Blvd.,414,32,100,11693,Q,9.375,False,Sunset Cove Park,No,100003992,PARK,20100106000000.00000,20091120000000.00000,,DPR,False,Sunset Cove Park,N,Sunset Cove Park,,Undeveloped,http://www.nycgovparks.org/parks/Q498/,Yes,23,15,5,{40AF4E2A-9123-4DD1-99B4-7CC3F047C71F} +"MULTIPOLYGON (((-73.90166312616562 40.87975778873101, -73.90184756279122 40.879711266264195, -73.90195373310164 40.87968448596238, -73.90225515401167 40.879608454138754, -73.902344934176 40.87958538311019, -73.90240833682 40.87956792676161, -73.90248765148505 40.87954326821732, -73.90256146754436 40.87951747666539, -73.90214432296527 40.87996301090024, -73.90166312616562 40.87975778873101)))",X150H,5736,X150H,X-08,X-08,X-08,X-08,"Albany Crescent, W 233 St, Major Deegan",208,14,50,10463,X,0.436,False,Crescent Park,Yes,100004343,PARK,20100106000000.00000,19501212000000.00000,,DPR,True,Crescent Park,Y,Crescent Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X150H/,No,81,33,13,{39FF50F8-267C-4E16-8D13-54BA37D21B67} +"MULTIPOLYGON (((-73.92991960191655 40.689433110737, -73.930211708346 40.68939935149765, -73.93022353200786 40.689458819578896, -73.92993140885326 40.68949249148817, -73.92991960191655 40.689433110737)))",B500,5285,B500,B-03,B-03,B-03,B-03,Malcolm X Blvd. and Quincy St.,303,36,81,11221,B,0.039,False,Patrick Van Doren Pocket Park,No,100003869,PARK,20100106000000.00000,20021120000000.00000,123 Malcolm X Av,DPR,False,Patrick Van Doren Pocket Park,N,Patrick Van Doren Pocket Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/B500/,No,56,25,8,{96A311ED-EDD7-4180-99A5-85EE9388BD0C} +"MULTIPOLYGON (((-73.95525871029582 40.71077919361013, -73.95482497412159 40.71147310290025, -73.95468190015254 40.71142029563937, -73.95511950743784 40.71072781300064, -73.95525871029582 40.71077919361013)))",B223PE,4834,B223PE,B-01,B-01,B-01,B-01,"Borinquen Pl., Rodney St. and S. 1 St.",301,34,90,11211,B,0.29,False,Rodney Playground North,Yes,100004704,PARK,20100106000000.00000,19490330000000.00000,381 RODNEY STREET,DPR,True,Rodney Playground North,Y,Rodney Playground North,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223PE/,No,53,18,7,{362EBBC6-850F-49F5-987E-0511C4B80A2B} +"MULTIPOLYGON (((-73.99615101159142 40.741780646539915, -73.99586103688418 40.7416585835622, -73.99580313702097 40.74163421104485, -73.99597059771989 40.74140643466666, -73.99630966541912 40.741549161991195, -73.99615101159142 40.741780646539915)))",M402,7880,M402,M-04,M-04,M-04,M-04,W. 20 St. bet. Ave. of the Americas and 7 Ave.,104,3,13,10011,M,0.23,False,,Yes,100024341,PARK,,20151231000000.00000,140 WEST 20 STREET,DPR,False,Chelsea Green,No,Chelsea Green,Neighborhood Plgd,Playground,http://www.20thstreetpark.org/,No,75,29,8,{8BD009AF-5DB0-41D1-ABDF-83C9067D6AB1} +"MULTIPOLYGON (((-73.94713332007458 40.79440606945107, -73.94768990106252 40.794642437220226, -73.94733171423317 40.795133833672864, -73.94677237841279 40.79490124051925, -73.94713332007458 40.79440606945107)))",M183,4860,M183,M-11,M-11,M-11,M-11,Park Ave. bet. E 108 St. and E. 109 St.,111,8,23,10029,M,0.943,False,Peter Minuit Playground,Yes,100004991,PARK,20100106000000.00000,19410912000000.00000,1480 PARK AVENUE,DPR/DOE,False,Peter Minuit Playground,Y,Peter Minuit Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M183/,No,68,30,13,{B4E10C65-6D32-45CC-A91B-99013046B30A} +"MULTIPOLYGON (((-73.83555242063038 40.67708556692733, -73.83588389313867 40.677081242261956, -73.83587953696932 40.67713790553525, -73.83576854957191 40.677264903660664, -73.83574200822912 40.67741959877284, -73.83578406292135 40.6775023874254, -73.83556867867186 40.67755846473909, -73.83551173910604 40.67743847601722, -73.8351607602564 40.677370483629346, -73.83531811570099 40.67708862314869, -73.83545917534934 40.677086783491, -73.83555242063038 40.67708556692733)))",Q285,6624,Q285,Q-10,Q-10,Q-10,Q-10,Centreville St. bet. 133 Ave. and 103 St.,410,32,106,11417,Q,0.494,False,John Adams Playground,Yes,100000266,PARK,20090423000000.00000,19380819000000.00000,,DPR/DOE,Part,Al Stabile Playground,Y,Al Stabile Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q285/,No,23,15,5,{3850395C-9098-426F-8E9F-D5B878F3A5B7} +"MULTIPOLYGON (((-73.9789702893822 40.728299824831886, -73.97900261299394 40.728255414938396, -73.97920431929175 40.72834053791218, -73.97917155160852 40.728385809568266, -73.9789702893822 40.728299824831886)))",M343,5000,M343,M-03,M-03,M-03,M-03,Ave. B bet. E. 12 St. and E. 13 St.,103,2,9,10009,M,0.023,False,Vamos Sembrar,No,100004238,PARK,20100106000000.00000,20021120000000.00000,198 AVENUE B,DPR,False,Vamos Sembrar,N,Vamos Sembrar,Greenthumb,Garden,http://www.nycgovparks.org/parks/M343/,No,74,27,12,{E8764E52-B21C-4DAD-8272-2B01F3744662} +"MULTIPOLYGON (((-73.9891531845691 40.72173502261352, -73.98911477099657 40.72181318951745, -73.98907858707321 40.72191408277739, -73.98901104601244 40.72209935797821, -73.98891213992619 40.722363513845515, -73.9887657939955 40.72276590219751, -73.98876112206493 40.72277397931081, -73.98875517699342 40.72277946823559, -73.98874626119448 40.722783991523656, -73.98873224742819 40.72278915817643, -73.98871653953398 40.722789479921026, -73.98870210576386 40.72278657166128, -73.98869149079597 40.72278107841244, -73.98868427540937 40.72277429236527, -73.9886796037348 40.722766864504564, -73.98867705963214 40.72275588074136, -73.98867918238129 40.72274586908662, -73.98890494748102 40.72211952551867, -73.98905963781746 40.721710527107696, -73.98905879276599 40.7217102802878, -73.98906137401549 40.72170420839738, -73.98906524887397 40.721698548162585, -73.98907030842366 40.7216934589632, -73.98907641179287 40.72168908126512, -73.9890833885226 40.721685538421845, -73.98909104330271 40.72168292857028, -73.98909916188936 40.72168132553176, -73.9891075182077 40.72168077431033, -73.98911587790255 40.72168128929182, -73.98912400899079 40.72168285604624, -73.98913168422807 40.72168543222828, -73.98913868702765 40.7216889439757, -73.98914482329464 40.72169329491592, -73.98914992142682 40.72169836256355, -73.98915383941491 40.721704004624854, -73.98915646720917 40.721710065301465, -73.9891577314536 40.721716374390205, -73.98915759666856 40.72172275448745, -73.98915606643327 40.72172902909365, -73.9891531845691 40.72173502261352)), ((-73.98966070766912 40.7205360119742, -73.98967532889908 40.720533113645146, -73.9896969421285 40.720534080027164, -73.98970838298756 40.72053940306252, -73.98971727884975 40.720546659263725, -73.9897229998263 40.72055729749513, -73.98972617632656 40.72056648838022, -73.98972172545216 40.72057809465191, -73.9892272444605 40.72158432029256, -73.98922441351128 40.72159026789315, -73.98922030552926 40.721595767820844, -73.98921503889989 40.72160066249742, -73.98920876396285 40.72160481145741, -73.98920165946097 40.72160809765109, -73.98919392898895 40.72161042654396, -73.98918579389127 40.72161173061846, -73.98917748616005 40.721611972975424, -73.98916924251658 40.721611148234025, -73.98916130086145 40.721609278028865, -73.98915388607034 40.721606416411845, -73.98914720999457 40.721602645349336, -73.98914146554353 40.72159807292081, -73.98913681484918 40.72159282971556, -73.98913339281756 40.72158706433062, -73.98913129529285 40.72158094336931, -73.98913058379348 40.72157464153641, -73.98913127722736 40.721568338035134, -73.98913335662714 40.72156221296551, -73.98913676278379 40.72155644282182, -73.98938011848506 40.72107025159381, -73.98964301612719 40.72055478961254, -73.98964926611987 40.720542782778764, -73.98966070766912 40.7205360119742)), ((-73.99027620385343 40.71934668045154, -73.99029282128113 40.71934502221426, -73.99030807822439 40.71934730359046, -73.99032387639701 40.71935538699474, -73.99033340956603 40.719366375816215, -73.99033667909437 40.719379019248294, -73.9903350433947 40.719387309204215, -73.99023930769314 40.719571957863906, -73.99011487152028 40.719817825134385, -73.98996426445846 40.72011077403506, -73.98979972579394 40.720431738150864, -73.98979025066681 40.720443204401185, -73.98977733212281 40.72044942847826, -73.98976096641228 40.720451718821096, -73.98974632706536 40.72044942572114, -73.98973125626867 40.7204435251391, -73.98972350863487 40.72043533521286, -73.98971963541479 40.72042353909086, -73.98971963713261 40.720412402487824, -73.98987317574579 40.72010871019538, -73.9902514107872 40.71936180872059, -73.99025903877244 40.71935413792322, -73.99026748532499 40.71934958025694, -73.99027620385343 40.71934668045154)), ((-73.99187202325606 40.71624883098284, -73.99188639820989 40.716248017935634, -73.99189991235882 40.71625046557342, -73.99191235148956 40.716256179284514, -73.99192178863927 40.71626695275028, -73.99192607967183 40.716279683563656, -73.99192565049145 40.71628588534708, -73.99192371849551 40.716290129316, -73.99162700704889 40.7168694062898, -73.99139850361499 40.71731551204128, -73.99138960382179 40.71732228321156, -73.99137736401157 40.71732989880949, -73.99135623083446 40.717331166943936, -73.99134232711879 40.717328627361375, -73.99133009143043 40.717322701984976, -73.99132007917451 40.71731085051832, -73.99131674403291 40.71730154079394, -73.99131730210844 40.717287575726125, -73.99184263655076 40.71627037541134, -73.99185014370066 40.71625927625458, -73.99185936871942 40.71625291210135, -73.99187202325606 40.71624883098284)), ((-73.99244309593615 40.715136868508374, -73.99245745412995 40.71513556461052, -73.99247224037656 40.715137522387245, -73.99248359890045 40.71514257859426, -73.99249452725174 40.71515268753544, -73.99249945257996 40.71516622252636, -73.9924970972496 40.715178452203304, -73.99219359872625 40.715769442315995, -73.99199787406374 40.7161468471155, -73.99199135422894 40.71615598323851, -73.9919831210557 40.7161619872674, -73.99197454379542 40.716165382493685, -73.99196150603473 40.716167730114634, -73.99195121428562 40.716167729395586, -73.99193852164956 40.71616407153566, -73.99192685542829 40.71615780766981, -73.99191931035863 40.71614997540333, -73.99191553375526 40.71614057831439, -73.99191450755117 40.71613170191338, -73.99191587995956 40.71612569830832, -73.9919193130046 40.71611838910813, -73.9921209890849 40.71572727277882, -73.99241909192335 40.715152194516136, -73.9924285229937 40.71514290187045, -73.99244309593615 40.715136868508374)), ((-73.9912602812406 40.717440092598615, -73.99127781300689 40.717438644107, -73.99128581227214 40.71744009453393, -73.99129800905146 40.71744502574888, -73.99130829638855 40.717453144623946, -73.99131363044175 40.71746300381035, -73.991315152356 40.71747286360947, -73.99131324566854 40.71748213961941, -73.99131113487887 40.717486441196584, -73.99091531138468 40.71824989542434, -73.99090957487431 40.71825775282124, -73.99090307186493 40.71826240884445, -73.9908915968784 40.71826648004314, -73.99088088555298 40.71826851614867, -73.99086903128503 40.71826793257918, -73.99085946871189 40.71826473140805, -73.99084990629933 40.71826036677731, -73.99084111264628 40.71825134386906, -73.9908376672157 40.71824377660992, -73.99083690759926 40.71823359178204, -73.99083996572418 40.71822602594089, -73.99123398427966 40.71745951640173, -73.99124389436552 40.71744733865819, -73.9912602812406 40.717440092598615)), ((-73.99078118546858 40.718352374499204, -73.99080052630944 40.71834823730269, -73.99081744492321 40.718349158073984, -73.99083376048189 40.71835467679843, -73.99084282534454 40.71836249394593, -73.99084766134726 40.71837077181765, -73.99084947189938 40.71838134845062, -73.9908458440074 40.71839238481179, -73.99050667576854 40.71905042024791, -73.9904987751204 40.71906165795895, -73.99048675163422 40.71906819016496, -73.99047232605145 40.71907106159848, -73.990456182506 40.71907001476947, -73.9904410716209 40.71906478785725, -73.99042939620334 40.719054072621205, -73.99042596184469 40.719043618316945, -73.9904252740669 40.71903630161726, -73.99042802459047 40.71902846200728, -73.99076849374148 40.71836524897315, -73.99078118546858 40.718352374499204)), ((-73.99268778403048 40.7144239880863, -73.99269918942737 40.71442153221783, -73.99271287499622 40.71442254525859, -73.99272751061021 40.71442616083278, -73.99273986412747 40.71443310364713, -73.99274974611497 40.71444409589979, -73.99275402065982 40.71445645747504, -73.99275851581736 40.714518820803676, -73.99276088311836 40.71459185684678, -73.99275850525943 40.714615999380285, -73.99274421689128 40.71467273873839, -73.9927354881531 40.714699899381486, -73.99272041405574 40.71473370088661, -73.99269661144824 40.714781383203324, -73.99257786406108 40.71501027002795, -73.99257250919857 40.71501730717078, -73.9925622867706 40.715023418274335, -73.99255376531708 40.7150267514127, -73.99254427483822 40.71502786202818, -73.99253283649048 40.715027673980714, -73.99252163982247 40.71502526709036, -73.99250728030792 40.715017486647994, -73.99249997805295 40.715008412630475, -73.99249705800855 40.715001374951996, -73.9924968190123 40.71499026353953, -73.99250509467797 40.714973040918075, -73.99264288777047 40.7147137856743, -73.99265378658144 40.71469083956524, -73.99266589253725 40.714646331711855, -73.992669657549 40.71462142653635, -73.99267339353747 40.7146021351405, -73.99267397793527 40.714582777806676, -73.99267125209035 40.7145532201811, -73.99265413855079 40.7144610113296, -73.99265509106752 40.71445190002624, -73.99265756393267 40.71444655025177, -73.99266554651757 40.714435270066915, -73.99267828037814 40.71442731396764, -73.99268778403048 40.7144239880863)), ((-73.9926280263308 40.71392654321758, -73.99263719466494 40.71392619620728, -73.99264532734384 40.713926973867665, -73.99264548355943 40.71392698918633, -73.99265266936703 40.713928676301265, -73.9926615402242 40.71393221317161, -73.99266261119027 40.713932839995174, -73.99266749621522 40.713935703029144, -73.99267100132013 40.71393857678117, -73.99267261068628 40.713939897932455, -73.99267381057491 40.71394120915207, -73.9926758032894 40.71394338761364, -73.99267643163354 40.71394407384255, -73.99267907623964 40.71394804976441, -73.99268168274898 40.713954086051665, -73.9926816910272 40.71395414098336, -73.99268662375128 40.71398609771112, -73.99269110913308 40.714018027394765, -73.9927027950348 40.71410120108112, -73.99270666432481 40.71412874974145, -73.99272489922879 40.71425854236278, -73.99272903211309 40.7142891878937, -73.9927302453733 40.71429817776575, -73.99273038491015 40.71429921066, -73.99272962701717 40.71430353576364, -73.99272927306693 40.71430438402208, -73.99272807744858 40.7143072520722, -73.99272540705518 40.7143116806137, -73.99272138509747 40.714316476477876, -73.9927210477642 40.714316879885246, -73.99271653713024 40.714320779710505, -73.99271543997702 40.71432147123308, -73.99271026075128 40.71432473075293, -73.99270412768844 40.714327614699236, -73.99269943150392 40.714329175886576, -73.99269247962164 40.714330750438194, -73.99268380586886 40.71433159186451, -73.99267923885279 40.714331597877724, -73.99267847669735 40.714331597829265, -73.9926725487544 40.71433101212035, -73.99266674868305 40.71432991222782, -73.99266547412601 40.714329535733285, -73.9926637380303 40.714329022331725, -73.99266117826559 40.71432826483934, -73.9926558931175 40.71432614019825, -73.99265166600163 40.71432393637954, -73.99264814543226 40.71432160563383, -73.9926471573062 40.714320950899655, -73.9926459739501 40.71431990893356, -73.9926418594217 40.71431628321575, -73.99263953065291 40.71431354821675, -73.99263837928521 40.71431219467602, -73.99263514074583 40.71430657978646, -73.99263358268321 40.71430143687184, -73.99262844586762 40.71426363221545, -73.99259159670767 40.713992531185234, -73.99258776006958 40.713959201245586, -73.99258760400305 40.71395784506683, -73.99258914668027 40.71395224309064, -73.99258918100806 40.71395217735559, -73.99259186332424 40.71394690774103, -73.99259610191847 40.71394143200967, -73.99260214408747 40.713936171616055, -73.99260865121552 40.713932186374755, -73.9926144705863 40.713929680627665, -73.99262069344692 40.71392781516908, -73.9926280263308 40.71392654321758)))",M004,6370,M004,M-03,M-03,M-03,M-03,"E Houston St, E Broadway",103,1,7,10002,M,1.698,False,Allen Mall One,Yes,100004351,PARK,20100106000000.00000,19300502000000.00000,,DPR,False,Allen Mall One,N,Allen Mall One,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M004/,No,65,26,7,{5526CCEB-04BF-4259-B50C-A1DA2A745DC4} +"MULTIPOLYGON (((-73.90652123357675 40.771907796945676, -73.90750745604886 40.77110354169192, -73.9077913679172 40.77130534339245, -73.9068051458853 40.772109601051945, -73.90652123357675 40.771907796945676)))",Q385,5919,Q385,Q-01,Q-01,Q-01,Q-01,Steinway St. bet. 23 Ave. and Ditmars Blvd.,401,22,114,11105,Q,0.918,False,Ditmars Park,Yes,100000245,PARK,20090423000000.00000,,,DPR,False,Ditmars Playground,Y,Ditmars Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q385/,No,36,13,14,{6D8D1835-BCA8-4294-B46E-66EAEC9446E2} +"MULTIPOLYGON (((-73.8890124322292 40.81643989984165, -73.88863042573769 40.81497306932563, -73.88879024425218 40.81494813662199, -73.88895871137728 40.814921854075884, -73.88892010051521 40.81477899974398, -73.88945076058673 40.814694953032074, -73.88947875541949 40.81469051970522, -73.8894874895041 40.814689135907656, -73.88954192908417 40.81492792443253, -73.88955378951123 40.81497249422233, -73.88960987824866 40.81521558055777, -73.88981769337383 40.81600306008879, -73.88985477884333 40.816143886512364, -73.88987351510589 40.81621807749037, -73.88987414792075 40.81621743784105, -73.8898946218986 40.81629518383759, -73.8898946313064 40.81629522887143, -73.88989463715978 40.81629527300142, -73.88989463945589 40.816295318028494, -73.8898946370108 40.816295363051026, -73.88989463101142 40.816295407169655, -73.88989462145462 40.816295452185415, -73.889894608345 40.8162954953968, -73.88989459167954 40.81629553860474, -73.88989457027438 40.81629558090769, -73.88989454531641 40.816295621406255, -73.88989451798932 40.81629566100204, -73.88989448710936 40.81629569879347, -73.88989445267511 40.81629573568099, -73.8898944146894 40.81629576986359, -73.88989437433463 40.81629580314346, -73.8898943304285 40.81629583371848, -73.88989428534 40.81629586249131, -73.8898942367002 40.81629588855931, -73.88989418687953 40.81629591192467, -73.88989413469281 40.81629593258629, -73.88989408132379 40.81629595144576, -73.88989402558866 40.81629596760146, -73.88989396867416 40.816295980154074, -73.8898939165053 40.816295990009756, -73.88969533043537 40.81632662062677, -73.88971232822549 40.81638479281667, -73.88971233999179 40.8163848450568, -73.88971234584506 40.81638488918674, -73.88971234814103 40.81638493421381, -73.88971234569583 40.816384979236354, -73.8897123396963 40.81638502335501, -73.88971233013937 40.81638506837073, -73.88971231702963 40.816385111582065, -73.88971230036401 40.81638515479002, -73.88971227895871 40.81638519709293, -73.88971225400059 40.816385237591426, -73.88971222667337 40.81638527718718, -73.88971219579325 40.81638531497855, -73.88971216135884 40.81638535186598, -73.88971212337299 40.81638538604857, -73.8897120830181 40.81638541932839, -73.88971203911181 40.816385449903294, -73.88971199402319 40.81638547867611, -73.88971194538324 40.816385504743984, -73.8897118955625 40.81638552810926, -73.88971184337558 40.816385548770796, -73.88971179000644 40.816385567630185, -73.88971173427119 40.81638558378585, -73.88971167735659 40.816385596338364, -73.8897116204465 40.81638560618939, -73.8897115481292 40.81638561512519, -73.8890124322292 40.81643989984165)))",X260,5311,X260,X-02,X-02,X-02,X-02,Manida St bet. Spofford Av and Lafayette Av,202,17,41,10474,X,3.351,False,Julio Carballo Fields,Yes,100004850,PARK,20100106000000.00000,19930402000000.00000,765 MANIDA STREET,DPR,False,Julio Carballo Fields,Y,Julio Carballo Fields,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/X260/,No,84,32,15,{E0C87253-8850-447C-84A1-9AA5106EAFD9} +"MULTIPOLYGON (((-73.94364304666648 40.7892644795034, -73.9440171518197 40.78875733312684, -73.94434789851226 40.788898272221644, -73.94397415853574 40.789404351843345, -73.94364304666648 40.7892644795034)), ((-73.94406616571705 40.788690887348004, -73.94442260537186 40.78820768076349, -73.94475431100135 40.788347254908324, -73.94439691218253 40.788831827204085, -73.94406616571705 40.788690887348004)))",M214,5862,M214,M-11,M-11,M-11,M-11,E. 102 St. To E. 104 St. and 2 Ave.,111,8,23,10029,M,1,False,Blake Hobbs Playground,Yes,100004041,PLGD,20100106000000.00000,19570627000000.00000,,DPR/NYCHA,True,Blake Hobbs Playground,Y,Blake Hobbs Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M214/,No,68,29,13,{66099B45-B9E4-4782-BD9F-CE5FC4088C8A} +"MULTIPOLYGON (((-73.90973408946118 40.86354167789823, -73.91043771146913 40.86253798885958, -73.91057844163885 40.862337240076236, -73.91065115365674 40.86234946292891, -73.91040346338542 40.862687047419776, -73.91099668874169 40.86294243800045, -73.91079734626598 40.86314773357268, -73.91093004495777 40.863222770366136, -73.91065197117267 40.8635075397541, -73.91034907430445 40.863877441306215, -73.91004656216818 40.864295398785295, -73.90979801841385 40.86467569593734, -73.90954840703962 40.86509669383095, -73.90930146547889 40.86558338487757, -73.90894570874315 40.866342402048645, -73.90812645393744 40.86833704359761, -73.9085550942895 40.866987919730384, -73.90862917676084 40.86653019116371, -73.90860809315751 40.86582276334504, -73.90899911156619 40.865902971032085, -73.90942900560624 40.86497528708795, -73.9096213199926 40.864291111532545, -73.9097097675631 40.86376559362016, -73.90973408946118 40.86354167789823)))",X150E,5722,X150E,X-07,X-07,X-07,X-07,"Landing Rd., Major Deegan Exwy., Bailey",207,14,52,10468,X,3.9,False,Fordham Landing Playground,Yes,100004600,PARK,20100106000000.00000,19501212000000.00000,,DPR,False,Fordham Landing Playground,Y,Fordham Landing Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X150E/,No,86,33,13,{A1D238A1-43A3-4EBC-8DA4-1B4641D3D3A1} +"MULTIPOLYGON (((-73.82052879394212 40.67664238384343, -73.82045915091184 40.6764989597722, -73.82082318840956 40.676559524181656, -73.82052879394212 40.67664238384343)))",Q203,6173,Q203,Q-10,Q-10,Q-10,Q-10,"Rockaway Blvd., 115 Ave. bet. 117 St. and 118 St.",410,28,106,11420,Q,0.055,False,David J O'connell Square,Yes,100000345,PARK,20090423000000.00000,19271130000000.00000,,DPR,True,David J O'Connell Square,N,David J O'Connell Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q203/,No,31,10,5,{758392DE-3EB0-49BB-A64B-C73647476982} +"MULTIPOLYGON (((-73.83893707403772 40.68148243301603, -73.839486703869 40.68137534718692, -73.83978101168383 40.68197433282751, -73.83944026767631 40.6820713269774, -73.83946356314023 40.68211874011031, -73.83912516997674 40.682215063921674, -73.83878375490929 40.681517170020314, -73.83893707403772 40.68148243301603)))",Q118,5114,Q118,Q-10,Q-10,Q-10,Q-10,Liberty Ave. bet. 101 St. and 102 St.,410,32,106,11417,Q,1.151,False,Police Officer Nicholas Demutiis Park,Yes,100000308,PARK,20090423000000.00000,19360820000000.00000,101-05 101 STREET,DPR,False,Police Officer Nicholas Demutiis Park,Y,Police Officer Nicholas Demutiis Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q118/,No,38,15,5,{7B9F75E8-D398-4409-B3D9-1F6FCA538CC8} +"MULTIPOLYGON (((-73.96439338176133 40.752720895238234, -73.96460400130853 40.75249559419091, -73.96463283609752 40.75250755816174, -73.96434047265376 40.75282477471427, -73.96438623703395 40.7528440822067, -73.96381290702455 40.753634992308065, -73.96351776014288 40.753513394892124, -73.96354669288722 40.75348096964144, -73.9635883721951 40.7534416316297, -73.96363083573927 40.753408126425086, -73.96367344454615 40.75337960014602, -73.96370760193737 40.753355415227695, -73.96373659429452 40.75333282707067, -73.96375732786098 40.75331535027955, -73.9637772564557 40.753297376152396, -73.96380885862513 40.753266133137664, -73.9641398568548 40.75292335562649, -73.9641521182775 40.752911123372016, -73.96416835532176 40.752895922485294, -73.96419594107456 40.75287234952104, -73.964224458986 40.75285052021865, -73.96425948370546 40.75282668209901, -73.96427903138941 40.75281408558557, -73.96430737050756 40.75279434267867, -73.96433050764021 40.752776771974716, -73.96436304857731 40.75274950663011, -73.96439338176133 40.752720895238234)), ((-73.96321002598229 40.753862587819405, -73.96342311211379 40.75361672130595, -73.96352744409357 40.753660774702, -73.96337928263273 40.75385980606057, -73.96333722995664 40.75391629850607, -73.96329979269709 40.75390049081689, -73.96321002598229 40.753862587819405)))",M108N,4663,M108N,M-06,M-06,M-06,M-06,"E. 49 St. To E. 51 St., W/s FDR Dr.",106,4,17,10022,M,0.588,False,Peter Detmold Park,Yes,100003949,PARK,20100106000000.00000,19470702000000.00000,454 EAST 51 STREET,DPR,True,Peter Detmold Park,Y,Peter Detmold Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/M108N/,No,73,28,12,{A1DEBB69-EE90-48E3-A155-CC875C6F7C6D} +"MULTIPOLYGON (((-73.96022626634527 40.725310945748134, -73.96014831932622 40.72528361085568, -73.96012928816889 40.7252759949647, -73.95998905130256 40.72529916414655, -73.95995069079368 40.725305502101264, -73.95975412577349 40.72533797796415, -73.95971782805492 40.7253291402813, -73.95970419895662 40.72532582163864, -73.95945583025322 40.72534324214891, -73.95945788472808 40.72535552581736, -73.95949497981927 40.72557729375382, -73.95934019385075 40.72559227860174, -73.95919156563703 40.725606667486076, -73.95821070044181 40.72570162195606, -73.95802531214635 40.72550838270467, -73.95781573558216 40.72539919141817, -73.95765842257074 40.725322804717635, -73.95780320865181 40.72450963680318, -73.95786879602916 40.72401530102315, -73.95875839398416 40.72318893928189, -73.9588844189231 40.723073100496045, -73.95888362738208 40.723072605833664, -73.95935217457951 40.72263735245931, -73.96023941547219 40.72318851561492, -73.96047667992603 40.723335903535975, -73.96292026349873 40.72485378552538, -73.96290177658953 40.724878137443994, -73.96284208108652 40.72495677137001, -73.962606926512 40.72536039260391, -73.96256765006378 40.72545733676095, -73.9622660958829 40.725286491890884, -73.96216861515029 40.725315560757394, -73.96192830053086 40.72532723769479, -73.96191041621809 40.72532153966155, -73.96167627607946 40.7252952238329, -73.9613740219155 40.72556328815414, -73.96157030451006 40.725819196576516, -73.96154944371428 40.72582073128373, -73.96020678673797 40.725919530102615, -73.96017500592544 40.72565653893729, -73.96020059828945 40.725576954485796, -73.96021634750102 40.72555832479247, -73.96022626634527 40.725310945748134)), ((-73.96230306525635 40.723461912825506, -73.96158587616813 40.72300113095138, -73.96159577154933 40.723015033615695, -73.96000841345393 40.7220272709377, -73.9600703112687 40.72197022893028, -73.96052254530547 40.72155010984587, -73.96059443991 40.721483368889835, -73.96268055558326 40.72277913898074, -73.96391310806239 40.72354592753709, -73.96344307248275 40.72416510545057, -73.9623086955558 40.723468624364145, -73.96230306525635 40.723461912825506)), ((-73.95950296751835 40.722497271909255, -73.95994685841885 40.72208491367049, -73.96109058447277 40.722794594885926, -73.9633970782339 40.72422569331229, -73.96302168480874 40.72472018797738, -73.9619838174944 40.72406455118418, -73.96005663350648 40.722847062013955, -73.95950296751835 40.722497271909255)))",B529,6427,B529,B-01,B-01,B-01,B-01,Kent Ave. bet. Quay St. and N 9 St.,301,33,94,11211,B,35.533,False,Bushwick Inlet Park,Yes,100005022,PARK,20100106000000.00000,20071121000000.00000,86 KENT AVENUE,DPR,True,Bushwick Inlet Park,Y,Bushwick Inlet Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B529/,Yes,50,26,12,{D55AD6B5-AFD4-4825-8663-19558339588D} +"MULTIPOLYGON (((-73.94010438496912 40.7920812070774, -73.94026422087956 40.79186161923124, -73.94027605540872 40.791866623142184, -73.94029353926409 40.79184260594598, -73.94037943201938 40.791878918967946, -73.94020211368455 40.792122522356905, -73.94010438496912 40.7920812070774)))",M338,5976,M338,M-11,M-11,M-11,M-11,E. 109 St. bet. 1 Ave. and 2 Ave.,111,8,23,10029,M,0.072,False,Neighbors Of Vega Baja,No,100004487,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Neighbors Of Vega Baja,N,Neighbors Of Vega Baja,,Garden,http://www.nycgovparks.org/parks/M338/,No,68,29,13,{D3ACB38F-0F99-428B-AFB2-EAD2BAE04EDD} +"MULTIPOLYGON (((-73.79690259219424 40.78359363987176, -73.79683048220875 40.78412416528215, -73.7961747145599 40.78407214507114, -73.79620711153106 40.78380088235271, -73.7957825812637 40.78376663299963, -73.79575535510632 40.783764436147855, -73.79579295059897 40.7835052567002, -73.79581187162358 40.78350676345062, -73.79581470237407 40.78350698908959, -73.79690259219424 40.78359363987176)), ((-73.79690310847018 40.78358983975466, -73.79690259219424 40.78359363987176, -73.79685850642664 40.78358642837731, -73.79690310847018 40.78358983975466)))",Q375,5368,Q375,Q-07,Q-07,Q-07,Q-07,166 St. bet. 16 Ave. and 16 Rd.,407,19,109,11357,Q,1.145,False,Willets Point Playground,Yes,100000004,PARK,,19540621000000.00000,16-16 UTOPIA PARKWAY,DPR/DOE,False,Willets Point Playground,Y,Willets Point Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q375/,No,26,11,3,{5F1B9304-21A6-4388-9144-D3F60DEC9AE8} +"MULTIPOLYGON (((-73.80503278425257 40.73545512466447, -73.8057781151356 40.735484138737974, -73.80572557858859 40.73647149712031, -73.80496731388085 40.73644197995353, -73.80503278425257 40.73545512466447)))",Q342,4917,Q342,Q-08,Q-08,Q-08,Q-08,164 St. bet. 65 Ave. and 67 Ave.,408,24,107,11365,Q,1.749,False,Electric Playground / Elechester Playground,Yes,100000005,PARK,20090423000000.00000,19511115000000.00000,65-40 164 STREET,DPR,True,Electric Playground,Y,Electric Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q342/,No,27,16,6,{DC90A4C0-D30A-493D-965D-CB0D95870AEB} +"MULTIPOLYGON (((-73.77689850734352 40.78824462613576, -73.77684020807207 40.7882179258928, -73.77672197953444 40.78816377924447, -73.77659038813891 40.78810993885721, -73.77618692903064 40.78795104740456, -73.77589553160179 40.787828872612394, -73.7758607290756 40.78781149995142, -73.77574012366627 40.78773957262147, -73.77501478062084 40.7872303224539, -73.77498132310227 40.78721652895203, -73.7732581720595 40.786734124083594, -73.77275628602439 40.78615982602946, -73.77259580946175 40.785976193858986, -73.76974820788435 40.78271748720365, -73.76801315108624 40.7805872490661, -73.76785336002754 40.78029682146449, -73.76766174185342 40.77994854224496, -73.76741672136914 40.77950319751823, -73.76713879830368 40.77899803902591, -73.76667585171232 40.778156561889205, -73.76619842105123 40.77728873339847, -73.76578614685592 40.776539319364744, -73.7653660511616 40.77577567064067, -73.76454924811188 40.774290831701585, -73.75964509825201 40.7705311679134, -73.75924143802224 40.77022440231993, -73.75895407233263 40.7700013565208, -73.75861542909614 40.76974873799606, -73.75833810481608 40.76953804591455, -73.75802033708148 40.769296625776, -73.75781349826906 40.76908628663767, -73.75754375917344 40.76881197873614, -73.75716154222768 40.76842328040693, -73.75696187295276 40.76822022370458, -73.75631061804822 40.76751783483913, -73.75571391745092 40.76685458315671, -73.75561026973485 40.766739373972605, -73.75512827192857 40.76620360499393, -73.75502427472904 40.766088003704205, -73.75478061493943 40.76581715573308, -73.75466476437734 40.765688377869395, -73.75460803710624 40.76562531969277, -73.75450005246441 40.765505284329315, -73.75444077767436 40.765439394847014, -73.75444381769796 40.76543850982404, -73.7544519133599 40.765436153340794, -73.7544390960932 40.76543290400707, -73.7546522061359 40.76536434223897, -73.7548678647314 40.765300551885574, -73.7550858857672 40.76524158836844, -73.75530608315299 40.76518750170739, -73.7553193137927 40.765183650420674, -73.75537090922337 40.76517260269808, -73.75595506872523 40.765047519285936, -73.75611694866947 40.76501601382676, -73.75639715202296 40.76497682491531, -73.75775243732507 40.76484346642339, -73.75856048387178 40.76476516875874, -73.75857006749597 40.764790739840585, -73.75858879723842 40.76484071132564, -73.75860752582794 40.7648906819043, -73.7586262544423 40.76494065338, -73.75864498545674 40.76499062395681, -73.75866371413052 40.76504059452521, -73.75868244282596 40.76509056689121, -73.75870117155594 40.76514053745279, -73.7587171939986 40.7651842987478, -73.75873321526818 40.765228062739304, -73.75874923656202 40.76527182582784, -73.75876525788023 40.76531558801333, -73.75878127921618 40.76535935109681, -73.75879798858442 40.76540739753067, -73.75881469798652 40.76545544126029, -73.75883140504071 40.76550348588269, -73.75884811448446 40.76555153140776, -73.75886482394912 40.76559957783058, -73.75888153344435 40.76564762244959, -73.7588985045897 40.76569733715393, -73.75891547694799 40.76574705095739, -73.75893245052247 40.76579676295944, -73.75894942410929 40.76584647856065, -73.75896639655012 40.76589619055449, -73.7589833678221 40.76594590524449, -73.75900034031034 40.76599561813313, -73.7590173128174 40.76604533281987, -73.75903428653744 40.76609504660574, -73.75905125910491 40.76614475858526, -73.759068231688 40.76619447326342, -73.75908520311526 40.76624418703573, -73.75910217575228 40.76629390080765, -73.75911914959902 40.76634361457915, -73.7591361211088 40.76639332654187, -73.75915395216694 40.76644346353688, -73.75917178207077 40.766493599625775, -73.75918961200793 40.76654373391053, -73.75920744196544 40.76659386999317, -73.75922527195631 40.766644004271726, -73.75924310433953 40.766694139452504, -73.75926093438083 40.76674427462527, -73.75927876444577 40.76679441069538, -73.75929659454076 40.76684454586184, -73.75956167377461 40.76751309282341, -73.7597665762864 40.76795273173897, -73.75990565362142 40.76823939726575, -73.76014930466604 40.76868206084074, -73.76042653232527 40.769113155535614, -73.76062108483103 40.769374902286856, -73.76070521732878 40.76948809155076, -73.76073449406013 40.76951464616066, -73.76091091629189 40.76972221358542, -73.76109413179255 40.769926352180306, -73.76128402261202 40.77012693289625, -73.7614804707823 40.77032383028591, -73.76168335358926 40.770516919792314, -73.76189254237846 40.770706080447944, -73.76210790611155 40.7708911939819, -73.7623293078227 40.77107214211104, -73.76255661051823 40.771248812855646, -73.76278967009544 40.77142109332125, -73.76302834005506 40.77158887691216, -73.76306659509139 40.771618991073865, -73.76326682143258 40.77177972608542, -73.76346496703798 40.771941945909255, -73.7636610141957 40.77210563431055, -73.76378906772378 40.77221468075995, -73.76379306756557 40.772218084768966, -73.76385494163989 40.77227077504717, -73.76389526754718 40.77230601615353, -73.76393725379859 40.77234503917151, -73.76396717536478 40.77237284866971, -73.76398211372842 40.772386731757756, -73.76402553689158 40.77242709133594, -73.7640689601138 40.7724674490965, -73.76411238338224 40.772507808641485, -73.76415580789103 40.77254816727177, -73.76419923008342 40.77258852588058, -73.76424265469747 40.772628884477655, -73.76428607699837 40.772669242152745, -73.76432950053315 40.77270960071419, -73.7643729253051 40.77274995926139, -73.76441634894196 40.7727903186901, -73.76460457251555 40.772973425984496, -73.76478792702255 40.773159367723856, -73.76496633571583 40.77334806903269, -73.76513973013387 40.773539455952765, -73.76532347963503 40.77375098190048, -73.7655021410087 40.77396501320505, -73.76567565287766 40.77418147952573, -73.76580869274487 40.774354400406146, -73.76593759527056 40.774529124540805, -73.76606231800743 40.77470558972241, -73.76609397954246 40.77475152756965, -73.76612549324182 40.77479774876712, -73.76615700816629 40.77484397085851, -73.76629876806973 40.77505493810926, -73.76638413552303 40.7751869164553, -73.76639576873694 40.77520490423086, -73.7664362765369 40.775267528276146, -73.7665695017498 40.77548168547855, -73.76669841184184 40.775697367342865, -73.76682336470773 40.775916211727186, -73.76694588487122 40.776135849795445, -73.76706597000343 40.7763562644411, -73.76718360710755 40.77657744033689, -73.76729878910925 40.776799362167345, -73.76738518081073 40.77697844724261, -73.76747075599384 40.77715776112907, -73.76757260787922 40.77737375565042, -73.76767326996458 40.77759007185647, -73.76777274462167 40.777806706153086, -73.76779514272452 40.77785505350026, -73.76781754086305 40.77790339994221, -73.7678399390341 40.77795174637949, -73.76784226350296 40.77795676507669, -73.76784455624542 40.77796170986853, -73.76786233723766 40.77800009281203, -73.76788473547062 40.77804844014039, -73.76790713374551 40.77809678476252, -73.76792953204351 40.778145132081455, -73.7679519303741 40.77819347939568, -73.76797432874342 40.77824182490418, -73.76799685604468 40.77829329452059, -73.76801938457164 40.77834476233358, -73.76804191076423 40.778396230137034, -73.76806444054546 40.77844769794277, -73.7680869668046 40.778499166637076, -73.76810949428624 40.77855063442846, -73.76813202179962 40.77860210311554, -73.76815454935091 40.7786535708973, -73.76826661334674 40.77888462463132, -73.76838679869113 40.77911330733085, -73.76851501598712 40.77933945670002, -73.76895043849808 40.780004617891315, -73.769474558382 40.780655885329665, -73.76988376275229 40.78109089696178, -73.77035754428258 40.78153786753837, -73.77037657720886 40.78155503756927, -73.77041932866223 40.78159516099336, -73.77046208016091 40.78163528620232, -73.77050483171112 40.781675411395156, -73.77054758212505 40.78171553747007, -73.77059033259987 40.78175566082733, -73.77063308312304 40.781795785069015, -73.7706758360609 40.78183591110032, -73.77071858668718 40.7818760353098, -73.77076195680158 40.78191689104474, -73.7708053269723 40.78195774586258, -73.77081907323453 40.781970693643544, -73.77084869838089 40.781998600666235, -73.77089206984581 40.78203945455277, -73.77093544017309 40.78208031022141, -73.77094200807332 40.78208649803747, -73.77097881174141 40.78212116497532, -73.7710221833598 40.78216202061316, -73.7710655526683 40.78220287442872, -73.77110892439623 40.78224372913287, -73.77115229617739 40.78228458382048, -73.77119566801177 40.78232543849151, -73.77123903871473 40.78236629314359, -73.77128306665732 40.78240861870708, -73.77132709465275 40.78245094515398, -73.7713711227042 40.78249327158378, -73.77141515200246 40.782535596197846, -73.77145918016272 40.78257792349393, -73.77150320957296 40.782620248073805, -73.7715472378514 40.782662573534736, -73.77159126499492 40.782704900777226, -73.77161204361508 40.78272552659453, -73.77163149751811 40.78274484225011, -73.77182161967616 40.782938276236365, -73.7720062932302 40.783132430331456, -73.7721869739546 40.78332874284361, -73.77233986835842 40.783500492045256, -73.77236361578231 40.783527168675235, -73.77245020562535 40.78362777294991, -73.77253617739872 40.78372765823544, -73.77255014351194 40.78374408038528, -73.77260346620037 40.78380613762016, -73.77261134544781 40.783815232953756, -73.77264924420197 40.78385898669561, -73.77268714301209 40.78390273862377, -73.77272504068118 40.783946492337826, -73.77276293840929 40.78399024333762, -73.772777546953 40.784007299780356, -73.772797198869 40.78403024735877, -73.77280059140948 40.78403420726165, -73.77283824328393 40.78407816846918, -73.77287589401726 40.78412213146286, -73.77291354480032 40.78416609444389, -73.77295119681779 40.78421005741469, -73.77298884888496 40.784254020372884, -73.77302748238061 40.784299246857955, -73.77306611474405 40.78434447332743, -73.77307857803048 40.78435906262692, -73.77330806713935 40.78462613290379, -73.77333905760274 40.78466185022925, -73.77337852472563 40.7847073393787, -73.77341247101513 40.78474657986615, -73.77344641853242 40.78478581944517, -73.77348036608971 40.784825059013976, -73.77351431486872 40.78486429947533, -73.77354826369081 40.784903539026, -73.77358152579093 40.784942317959946, -73.77361479029314 40.784981098689755, -73.77364850197394 40.78502043049602, -73.77364777102386 40.78502077035151, -73.7737773339895 40.78517224012992, -73.77377738355221 40.78517229785949, -73.77400186359704 40.785434731888, -73.77446722231518 40.785975000487994, -73.77464512547031 40.786161531324844, -73.77482927932233 40.78634452430546, -73.77501956227186 40.78652385849529, -73.77521584915443 40.78669941475352, -73.77541801004979 40.78687107753211, -73.77562591028754 40.78703873307472, -73.77583941281094 40.78720227122258, -73.77605837700114 40.787361582710645, -73.77628265866186 40.787516563670266, -73.77651210885288 40.78766711022393, -73.77667739654683 40.78777330556041, -73.77684568321462 40.78787674371824, -73.77701688962901 40.78797737680445, -73.77702459065112 40.787968201162286, -73.77731597572857 40.78812533152425, -73.77761258141842 40.78827671429651, -73.77791421133581 40.78842225000543, -73.77822066552315 40.78856184277381, -73.77853174282298 40.788695399425244, -73.77882145770678 40.78881271507807, -73.77882148847249 40.78881272684366, -73.77900780330076 40.78888469139346, -73.77911149592268 40.788923588415486, -73.77911216687295 40.788923839140914, -73.77933281232802 40.789003916754844, -73.77933285729947 40.78900393214951, -73.7794154215089 40.78903144479793, -73.7795241861934 40.78906478244034, -73.77962259208948 40.78909494570886, -73.77974171470144 40.78913145831486, -73.7798062318116 40.78915123328381, -73.77984438183401 40.789163625953236, -73.77999924025393 40.78921392932249, -73.7801278054439 40.78925569147752, -73.78026125762747 40.78929904048826, -73.78039477501024 40.7893445866966, -73.78052465101062 40.789388891225165, -73.78058569254911 40.78941076901717, -73.78071800990368 40.789458192816106, -73.78084278199205 40.789502912311285, -73.78098677418552 40.78954801669078, -73.7811810095195 40.78960039870721, -73.78182070134581 40.78974154877521, -73.78191471763301 40.78976433475155, -73.78184163938494 40.789936083635624, -73.7812533225122 40.78980945637482, -73.78025361885032 40.78959420826694, -73.78027351790487 40.78949077925647, -73.7798068768974 40.78936171010663, -73.77947027234964 40.78925738615102, -73.7794699255733 40.78925727382507, -73.77896655474223 40.78909445574403, -73.77870152971163 40.78900884507798, -73.77870149775508 40.78900883511108, -73.77863060896769 40.78898593604433, -73.77808525989339 40.788800417313645, -73.77760027812288 40.78863543141796, -73.77740534934846 40.788522458822236, -73.77718047564632 40.78839213202894, -73.77702939518532 40.78830457112379, -73.77693124850668 40.788259620763625, -73.77689850734352 40.78824462613576)), ((-73.78167932677454 40.789025080940384, -73.7816362746224 40.789028325839396, -73.78157723639691 40.78903034275747, -73.78146235934119 40.789025580147545, -73.78127294348685 40.789015204527466, -73.78123479028122 40.78901526448765, -73.78089102421902 40.78899017539487, -73.78067097713843 40.78896311815222, -73.78045230841941 40.78893023325461, -73.78023528574388 40.788891562643364, -73.78002017203767 40.78884715275502, -73.77964732643322 40.78876119613563, -73.77927778449529 40.78865788022262, -73.77900358669231 40.78857662732204, -73.77876378492441 40.788493701826354, -73.77842946654046 40.78835608487098, -73.77807866806332 40.788201370662726, -73.77800338596754 40.78816816818702, -73.77800291917045 40.788166388793, -73.77772650811052 40.78803406010958, -73.77745459426798 40.78789645348534, -73.77718735391535 40.787753657541785, -73.77692495620238 40.78760576358934, -73.77666757144335 40.787452867444095, -73.7764153628327 40.78729506671033, -73.77620643951157 40.787160959791215, -73.77600343806643 40.78702169870818, -73.77580657718076 40.78687743430172, -73.77561607195624 40.786728323709546, -73.77543212562844 40.78657452764843, -73.77525494022039 40.786416213136796, -73.77508470706776 40.78625355257509, -73.77492161038516 40.78608672015099, -73.77476874474888 40.78591395335219, -73.7745113380003 40.78563030898701, -73.77437785845629 40.78548362756679, -73.77423778757684 40.7853208869908, -73.77387938637804 40.784913231155365, -73.77385998168735 40.78489160529074, -73.77383768155768 40.78486578639567, -73.77379928034797 40.784821324271455, -73.77376087919566 40.784776860333146, -73.77372247571911 40.78473239817808, -73.7736840770419 40.78468793331769, -73.77364567485265 40.78464347113875, -73.77360727390244 40.784599008048524, -73.77356887300351 40.78455454494524, -73.77353047096813 40.78451008272696, -73.77349206899014 40.78446561869465, -73.77345366705426 40.7844211573507, -73.77341695428927 40.78437887043068, -73.77338024038619 40.78433658349639, -73.77334352652667 40.784294297450614, -73.77330681389849 40.78425201139522, -73.77327010013836 40.784209723524526, -73.77323338404624 40.78416743833867, -73.77319667274882 40.784125150448716, -73.77315995911941 40.78408286524357, -73.77312324317337 40.784040578220825, -73.7731148185694 40.78403087310805, -73.77308761649753 40.78399954323093, -73.77304968882888 40.78395547530188, -73.77301284569853 40.78391265759527, -73.77297600261551 40.78386983987657, -73.77293915957381 40.78382702394684, -73.7729023177703 40.78378420620637, -73.77286547483257 40.783741387551004, -73.77282863193295 40.783698571585084, -73.77279178908692 40.78365575380611, -73.77275494747296 40.783612936017384, -73.77257053914234 40.78339802793775, -73.77238163423803 40.783185388048416, -73.77218827879256 40.78297507315016, -73.7719905247781 40.78276713465246, -73.77178842059838 40.78256162755949, -73.77161317948692 40.78239437365404, -73.771418031 40.782208734908785, -73.77122246690017 40.78202335164439, -73.77103967363692 40.78185067612414, -73.77102648957039 40.781838220261456, -73.77083009781785 40.781653343457094, -73.77063329520401 40.781468719435246, -73.77043607816668 40.7812843508882, -73.77024474516143 40.78110859174859, -73.7700599473227 40.78092883807767, -73.76988182867233 40.780745230672984, -73.76971052730033 40.78055791122039, -73.76954617771273 40.78036702860244, -73.76938890849632 40.780172728987736, -73.76923884228162 40.77997516663698, -73.76909609459253 40.779774493994964, -73.76897352525353 40.779590665950614, -73.7688570973903 40.779404544795014, -73.76874688755086 40.77921624956697, -73.76874009943718 40.77920470767668, -73.76871776162906 40.779164252674164, -73.76863303006087 40.77901080038287, -73.76852570163408 40.7787941303904, -73.7684214545606 40.77857659209122, -73.76832029937863 40.77835821343049, -73.76829808710659 40.77831077337273, -73.76827587486619 40.778263333310335, -73.76825366501721 40.778215895949586, -73.76823145402473 40.77816845588034, -73.76820924186983 40.778121018505594, -73.76818702975288 40.778073579325216, -73.76816481766446 40.778026141040705, -73.76814260798939 40.777978699154346, -73.7681203959611 40.77793126176109, -73.76809818515534 40.77788382256464, -73.76807597437814 40.777836384264, -73.76797123346266 40.77761013933971, -73.76786564428119 40.777384125833066, -73.7677592056597 40.777158342838916, -73.76767044302433 40.77697159717301, -73.76758110106603 40.776785011454436, -73.76749117741049 40.776598588378604, -73.76737884701159 40.77638225472548, -73.76726337961028 40.77616687905988, -73.76714478580806 40.77595248570756, -73.76702308330056 40.77573910261033, -73.76689844165725 40.77552702456685, -73.76686409611968 40.775470272746674, -73.76673217987206 40.77524941877305, -73.76673327132174 40.77524928410567, -73.7665921372269 40.77502046703907, -73.76644446645767 40.77479404629447, -73.76629033094557 40.77457012915287, -73.76612980379997 40.77434882379765, -73.7659629616931 40.77413023481671, -73.76578988248113 40.77391446589921, -73.7656106511238 40.77370162074829, -73.76542535140206 40.773491800362685, -73.76534645607983 40.773405382043485, -73.76534734868314 40.77340485976668, -73.76493378311608 40.77294389959452, -73.76448108039534 40.77249990538764, -73.76404625159796 40.77210982235616, -73.76356539720211 40.77168004074601, -73.7630896735904 40.771300730218805, -73.76228564512716 40.77067434333058, -73.76221118874948 40.77061633664952, -73.76221319033628 40.77061505935948, -73.76210660884229 40.770527851317205, -73.76210657458928 40.77052782423127, -73.76201480926359 40.7704527386947, -73.76197231619952 40.770417969707545, -73.76197268986235 40.770417483305415, -73.76179314610098 40.770261257072534, -73.76162012329726 40.770100833276885, -73.7614537926149 40.769936370791214, -73.7612943157333 40.76976802936884, -73.76114184956569 40.76959597505648, -73.76099654272235 40.76942037568437, -73.76085853905099 40.769241404475146, -73.76072797291539 40.769059235531806, -73.76060497154496 40.768874049245056, -73.76038982072895 40.768530344098764, -73.76012185202258 40.76809564310891, -73.7599385321613 40.7676837944333, -73.75972021930104 40.767202814375835, -73.75960577949947 40.76690761004626, -73.75886129440872 40.76468627224482, -73.75910483996847 40.76447639978211, -73.75915695216212 40.764657176644555, -73.75923147735764 40.76491569970127, -73.75926394961584 40.765028345391336, -73.75932889563958 40.76525363854177, -73.75936260698539 40.76537057500206, -73.75940436497518 40.76551543047389, -73.75948886292954 40.76580854012502, -73.75956339419967 40.766067078238855, -73.75964069605163 40.766335218778806, -73.75972104808174 40.76661394387382, -73.75978289029412 40.76682845566796, -73.75984473171725 40.76704296832003, -73.75987379379522 40.7671437758278, -73.75991759723364 40.76720646136127, -73.75995965564066 40.767266647936566, -73.7600708245548 40.76752517283437, -73.76016299064777 40.76773950800021, -73.7602461607726 40.76789517974817, -73.76034504758938 40.76804226627268, -73.76054148545872 40.7682323007574, -73.76060054085096 40.76828943187159, -73.76068718349603 40.76843213419571, -73.7608086985845 40.76863227384114, -73.76089735089818 40.7687782859308, -73.76099415063517 40.768937713490466, -73.76113808941076 40.76917478043893, -73.76120889595803 40.7693422296608, -73.76144787675312 40.76971467360681, -73.7616002270868 40.76992831626958, -73.76164377675767 40.76997980368863, -73.76167643040509 40.77001578884403, -73.76181819851422 40.77015734987578, -73.76192577829461 40.77024931853139, -73.76203707733372 40.7703337404162, -73.76209737986598 40.77037553498557, -73.7623517780753 40.77052662107756, -73.76269123612005 40.77067731450431, -73.7627211619411 40.77068794898321, -73.76277751382737 40.770707790613294, -73.76312333663579 40.77101237441282, -73.76317796327241 40.77106048640084, -73.7632068712706 40.771085947300556, -73.76333194862524 40.771196109294344, -73.7636869938132 40.77150881667066, -73.76373227874541 40.7715487020157, -73.76385133690272 40.7716535615172, -73.76402151391873 40.7718034428546, -73.76414292634992 40.77191037533357, -73.76423841193169 40.77199447272572, -73.76564327191497 40.773231742692296, -73.76571464684599 40.773294600886686, -73.76579175383574 40.773362508118346, -73.76583999110542 40.773404988475185, -73.76604289550546 40.773696308220444, -73.76611310348187 40.77379994140687, -73.76614561620119 40.773847931426964, -73.76647917620643 40.77433361592999, -73.76658215163339 40.774486463032595, -73.76681019085665 40.77482772300583, -73.76700961712707 40.775130373999794, -73.76705600269185 40.77520940612129, -73.76709148518201 40.77527435838931, -73.76709328520627 40.77527721212851, -73.76709308829064 40.77527729187547, -73.76710943008122 40.77530720638917, -73.76711847386446 40.77532389663163, -73.76718942414519 40.77545470699386, -73.76725302922017 40.775571961568154, -73.76726094528432 40.775589693206925, -73.76732010218933 40.77570603915163, -73.7673728714119 40.77581037743194, -73.76743521656326 40.775926333526755, -73.76755955249507 40.776137783603254, -73.7675612168159 40.776140160693444, -73.76756438883001 40.77614600867216, -73.76756513009823 40.77614574812022, -73.76758478018048 40.77617381239228, -73.76797774649087 40.77677887420432, -73.76810295774467 40.77697089161292, -73.76827130872493 40.77722766724348, -73.76833121231587 40.77731622453603, -73.76836758895176 40.77737000200977, -73.76854861418866 40.77764740625613, -73.76857313653976 40.77768457794401, -73.76870640005238 40.77791904264929, -73.7686623243519 40.7779323653997, -73.76848878678118 40.77798482071638, -73.76842312253055 40.77800466918728, -73.76852993874746 40.77834062461707, -73.76852192870396 40.7783429210247, -73.76856436633354 40.77844890569129, -73.76860059472853 40.778546937215935, -73.76863984746699 40.778635449254686, -73.76867516297528 40.77872761392889, -73.7687300393974 40.77884832964809, -73.76877841709891 40.778947914550194, -73.76892475665878 40.779096231341015, -73.76900769002044 40.779248866653525, -73.76910484414765 40.779414465253105, -73.76923604742346 40.77961530478585, -73.76938396903022 40.7798189061507, -73.76950312939552 40.77996712546176, -73.76953998132838 40.7800129637363, -73.76971574014846 40.7802111515598, -73.76988994321077 40.78038984997243, -73.77009137342748 40.78057868629349, -73.77023851610898 40.78070590683848, -73.7703918454023 40.780830102115594, -73.7705642627267 40.780956981774374, -73.77060926817758 40.78098958049818, -73.77073638857162 40.78108165885708, -73.77082972165618 40.781149263503266, -73.77086042148917 40.78117150038407, -73.77147222679268 40.78161464612356, -73.77152804979241 40.781626006817454, -73.77162497813323 40.78154284641908, -73.77176362499081 40.78142389426021, -73.77182872111585 40.781486175110054, -73.77188287886719 40.78146490164268, -73.77191568999902 40.78144640988513, -73.77196792213573 40.78141697129132, -73.77202015540482 40.781387534476984, -73.77207238862461 40.781358098539386, -73.77211546598265 40.7813326796349, -73.7721210974155 40.78132935530102, -73.77215944073922 40.781306727588664, -73.77216829384797 40.78130150415383, -73.7722012466936 40.78128205715938, -73.77221851724966 40.78127186606526, -73.77225212769316 40.78125203223846, -73.77225972844309 40.7812475465365, -73.77225983171765 40.78124748550623, -73.7722690717149 40.78124274910083, -73.77227463957257 40.78124172902566, -73.77228027529942 40.78124095492218, -73.7722878583672 40.78124025310473, -73.77229548270901 40.78123995299348, -73.77230311870863 40.78124005452997, -73.77231072727245 40.78124055763684, -73.77231826931312 40.78124146043598, -73.77232571167893 40.7812427574588, -73.77233301884252 40.78124444503314, -73.77234015530445 40.78124651138229, -73.77234708555275 40.781248948331665, -73.77235213704768 40.78125100245673, -73.77235702194592 40.78125327417461, -73.77236176647628 40.7812557149099, -73.77236631721219 40.7812583587763, -73.77239221862907 40.781286457961045, -73.77239865292505 40.7812936251801, -73.77242949792384 40.78132798002135, -73.77245899592472 40.781371020264956, -73.7724884951392 40.78141406320453, -73.77251799321635 40.78145710343249, -73.77254749132858 40.78150014455309, -73.772576989482 40.781543184765326, -73.7726064876674 40.78158622677077, -73.77263807497314 40.781627038737675, -73.77264569694864 40.78163646495062, -73.7726715831079 40.78166702872189, -73.77270413148126 40.781707429234174, -73.77273667989412 40.78174782973705, -73.77276922715872 40.78178823112865, -73.77280176269699 40.781833816693414, -73.77283429709202 40.78187940314688, -73.77286683154085 40.78192498688929, -73.77289936720662 40.78197057422655, -73.77293082446401 40.78201662499027, -73.77296340294636 40.782062188979836, -73.77299431594655 40.78210562899055, -73.77302566558204 40.78214888344809, -73.77305716712355 40.78219207155854, -73.77308866870592 40.78223525966007, -73.77311972542253 40.782278638684325, -73.77315049172057 40.78232068888374, -73.77318125923907 40.7823627399775, -73.77321202561482 40.78240479016, -73.77324279203252 40.78244683943346, -73.77327355729827 40.782488890497106, -73.77330432615385 40.78253094245977, -73.77333395809977 40.78257393500606, -73.77336359125947 40.78261693024824, -73.7733932256483 40.782659923683866, -73.77342285889068 40.78270291710931, -73.77345249216827 40.782745911427284, -73.77348212548412 40.78278890573736, -73.77349924862672 40.782813748294764, -73.77351175883824 40.782831900039575, -73.77354328105145 40.7828765126502, -73.77356095572429 40.78290152647712, -73.77356521906776 40.78290999599512, -73.7740150340466 40.78353385697671, -73.77401864955071 40.78353845844032, -73.77403591883471 40.783562244909106, -73.77403957905372 40.78356728590589, -73.77404980855724 40.783581377245625, -73.7740538107365 40.783586891677224, -73.77408800298359 40.78363564448367, -73.7740673091023 40.783644201931956, -73.77405841606218 40.7836478783662, -73.77407435929629 40.78366584857218, -73.7740888094848 40.78369194470282, -73.77410379896881 40.783719017134906, -73.77411102007483 40.783744418310675, -73.77411451617708 40.78378980788576, -73.7741052459926 40.78383829628709, -73.7740889965837 40.78387423688509, -73.77404759839071 40.78395756854924, -73.77402536098631 40.784011078845346, -73.77400440898589 40.7840886657422, -73.77399143734343 40.78416725343703, -73.77398652351283 40.784246369319554, -73.77398969638807 40.78432553708055, -73.77400565500187 40.78443605215705, -73.77400682293666 40.784444139175406, -73.77400754533376 40.784444222537914, -73.77410935576144 40.78488415460928, -73.77423365064944 40.785062633180694, -73.77436445246637 40.785238404828945, -73.77450165863986 40.78541133245466, -73.7746451606577 40.785581282548314, -73.774794850004 40.785748121599894, -73.77495060748377 40.78591171968021, -73.77513673496064 40.78609831444465, -73.77532989961998 40.7862807298731, -73.77552994087029 40.78645881343246, -73.77573668981475 40.786632414374424, -73.77594997279284 40.78680138734453, -73.7761696113836 40.78696559148167, -73.77638719827142 40.78711908782361, -73.77639541886334 40.78712488680952, -73.77639440158138 40.787124051869704, -73.77646701473257 40.787173501623066, -73.77666649217241 40.787304152541004, -73.77687073703181 40.787430474612535, -73.77707958968585 40.78755236844839, -73.77729288220614 40.78766973644484, -73.77751044664173 40.78778248640197, -73.77773210792597 40.78789052700729, -73.7779576897824 40.78799377325062, -73.77795685214663 40.78799057394797, -73.77813915204037 40.78807214415905, -73.77820918459923 40.78810348050622, -73.77850839670324 40.788228056189354, -73.77864083498159 40.788278583956206, -73.77891023113354 40.78838136316063, -73.77899451352302 40.78841351790547, -73.77908131986925 40.78844273548096, -73.77920691971372 40.78848203191161, -73.77944913775589 40.7885578129105, -73.77965194878276 40.78861750710911, -73.77977980566372 40.78865234793436, -73.77994167244378 40.78869645490562, -73.7801392619928 40.78874674512093, -73.78029640562967 40.7887861293465, -73.78056421117313 40.788844115091, -73.78076050385206 40.78888661691591, -73.78097726232785 40.78892825229424, -73.78121205452517 40.788966768836815, -73.78144011975714 40.78900418073347, -73.7816024083187 40.788980981632676, -73.78167830201569 40.788970132976104, -73.7817630790519 40.789008887317166, -73.78172173677295 40.78901857948894, -73.78167932677454 40.789025080940384)), ((-73.72712966729364 40.69736520799562, -73.72712670367375 40.69731513944143, -73.7271251427578 40.69728168154274, -73.72712389166719 40.6972549134171, -73.72711938376055 40.69715836643004, -73.72713664375377 40.69716331066568, -73.72729886678736 40.697209720566605, -73.72731047072091 40.69721508092091, -73.72733714464754 40.697227405553086, -73.72736740049221 40.69724193682544, -73.72737476349056 40.697245671600044, -73.72738195059748 40.69724959776758, -73.72738895830015 40.69725370631466, -73.72739578069037 40.69725799542622, -73.72740240241265 40.69726245876235, -73.7274088222913 40.69726709451925, -73.72741502972193 40.69727189186563, -73.72742101878887 40.69727685078759, -73.7274267777083 40.697281959550395, -73.7274309711365 40.697285947964644, -73.72743163703912 40.69728658170447, -73.72743759687016 40.697292614872765, -73.72744263942771 40.69729814608164, -73.7274474318086 40.697303806372325, -73.7274519657526 40.69730959032209, -73.72745623894134 40.69731548621876, -73.72746107877065 40.697322854000944, -73.7274639759135 40.697327595778475, -73.7274674338436 40.69733379411884, -73.72747060982425 40.697340079141625, -73.72747350033539 40.69734644363435, -73.72747610423798 40.6973528767881, -73.72747841918023 40.69735937499534, -73.72748043690208 40.69736593283338, -73.727482164554 40.69737253771188, -73.72748358914305 40.697379184197096, -73.72748471899564 40.69738586150247, -73.7274855422909 40.69739256689852, -73.72748606972524 40.697399288703814, -73.72748629185888 40.69740602059242, -73.72748743120391 40.697466531711356, -73.72748899222448 40.69751621961715, -73.7274905485147 40.697565907511425, -73.72749210953621 40.697615596317036, -73.72749366820481 40.697665282415215, -73.7274952292273 40.697714972120664, -73.72749678908365 40.697764658220954, -73.72749834656128 40.697814347917365, -73.72750059548454 40.69786566108106, -73.72750284321339 40.69791697784361, -73.727504521681 40.69795530510596, -73.72750508740353 40.69796829279637, -73.72750733750193 40.698019610464286, -73.72750958406164 40.698070926322366, -73.72751183061747 40.698122243981125, -73.72751407955414 40.69817355894357, -73.72751632730738 40.69822487480333, -73.72751857269044 40.69827619245813, -73.72752082163382 40.698327508319935, -73.72752306939375 40.69837882507904, -73.72752531834037 40.6984301418406, -73.7275269111425 40.69846656520509, -73.72752756374456 40.69848145769288, -73.72752981270914 40.69853277175211, -73.72753206048297 40.69858408850973, -73.72753365775681 40.69861478729998, -73.72753486333123 40.69863797395382, -73.72753767092779 40.698691856707136, -73.72753995818294 40.69873583164524, -73.72754769609001 40.69888441358579, -73.72754889305872 40.698907392198976, -73.72755170184274 40.69896127945545, -73.72755313460934 40.698988808036155, -73.72755450474112 40.69901516039389, -73.72755731235472 40.69906904674618, -73.72756011761017 40.69912293219189, -73.72756129813854 40.69914559288297, -73.72756292287752 40.69917681583615, -73.72756503211602 40.69922961631211, -73.72756714370583 40.699282421295806, -73.72756756467538 40.699292907006125, -73.72756925531742 40.699335221776536, -73.72757136455122 40.69938802585333, -73.72757347497529 40.699440829032035, -73.72757420602538 40.699459113948954, -73.72757558658581 40.69949363221311, -73.72757769583333 40.69954643538819, -73.72757980745061 40.69959923856852, -73.72758191789535 40.69965203994461, -73.72758402714558 40.69970484491953, -73.72758613996712 40.69975764539989, -73.72758824923501 40.699810447672505, -73.72759035967842 40.699863252649024, -73.72759247014355 40.69991605312266, -73.72759477446519 40.69996861181574, -73.72759568685298 40.69998943121371, -73.72759707996626 40.70002117231221, -73.72759938429883 40.700073730103995, -73.72760168981084 40.70012628969919, -73.72760399296376 40.700178848387864, -73.72760434482818 40.700186847607455, -73.727606296124 40.70023140617562, -73.72760747175676 40.7002581696041, -73.72760860519661 40.70028396577803, -73.72761090953995 40.700336525368805, -73.72761321507382 40.70038908406148, -73.72761551942816 40.70044164275097, -73.72761782377873 40.700494203241036, -73.72762012696076 40.70054676102641, -73.72762243369976 40.70059931791926, -73.72762379757725 40.70063040156876, -73.72762473924077 40.70065187931146, -73.72762515805354 40.700661449189404, -73.72763099735293 40.70079871790945, -73.72763153434927 40.70081150831331, -73.72763378149203 40.70086504482487, -73.72763602509238 40.700918580427086, -73.72763825289773 40.70097163871785, -73.72764051822371 40.7010256507438, -73.72764276183119 40.70107918724531, -73.72764501017521 40.70113272375759, -73.72764725616007 40.70118625936334, -73.72764832036982 40.70121163122671, -73.72764950096528 40.701239794965886, -73.72765174813323 40.70129333237465, -73.72765399295301 40.70134686617537, -73.72765509596053 40.70137316926374, -73.72765623658212 40.70140040267438, -73.72765800944438 40.701442603260794, -73.72765848376451 40.7014539391814, -73.7276599934131 40.701489898566955, -73.72766073214483 40.70150747298927, -73.72766348768923 40.70156198685787, -73.72766487910035 40.70158952613615, -73.7276662420659 40.701616498021735, -73.72766900118008 40.70167100919635, -73.72767175793226 40.70172552036488, -73.7276745158685 40.70178003243629, -73.7276772726297 40.701834543603916, -73.72768002584935 40.70188905386227, -73.72768278497867 40.701943566835624, -73.72768554293295 40.70199807890523, -73.72768829971587 40.70205258917058, -73.72769105649961 40.702107100335965, -73.72769381210095 40.70216161239863, -73.72769566036102 40.70219811109014, -73.72769604462265 40.70220571595786, -73.72769657007696 40.702216123565975, -73.72769808912514 40.702268330982974, -73.72769960698874 40.702320539297325, -73.72770115985497 40.70237402822808, -73.72770264037136 40.70242495231732, -73.72770416061229 40.70247715973563, -73.72770567729853 40.70252936894618, -73.72770719636468 40.7025815754605, -73.72770844758843 40.7026246158876, -73.72770871423518 40.702633785573624, -73.72771007432497 40.702680591315854, -73.72771475552388 40.70284162277604, -73.72771630369341 40.70289481902411, -73.72771693531087 40.702916608505255, -73.72771782276885 40.70294702733682, -73.72771933829685 40.7029992356407, -73.72772186157157 40.70305270254804, -73.7277243848429 40.70310617125598, -73.72772652366217 40.703151501090325, -73.7277269069351 40.703159639960695, -73.72772943021087 40.70321310956829, -73.72773195350176 40.70326657647393, -73.72773447560974 40.703320044276836, -73.72773699771811 40.703373512979866, -73.72773952102109 40.70342697988422, -73.72774204431714 40.70348044948969, -73.72774456408581 40.70353391458378, -73.72774708738623 40.703587385088916, -73.72774856872493 40.7036187103408, -73.72774961306462 40.70364085379818, -73.72775105148317 40.70367138919578, -73.7277521340213 40.70369432069482, -73.72775465615435 40.70374779029537, -73.7277571794783 40.70380125899778, -73.72775970162678 40.703854726796436, -73.72776165227997 40.70389601736643, -73.72776214332869 40.70390645280652, -73.72776474712275 40.703961661494816, -73.72776745587299 40.70401435078721, -73.72777016344429 40.70406704007636, -73.72777286983657 40.70411972936231, -73.72777557858868 40.704172421354954, -73.72777828736712 40.70422510794414, -73.72778099257792 40.70427779992753, -73.72778370373148 40.70433048652146, -73.7277862084487 40.704379249979354, -73.72778640895083 40.70438317850399, -73.72778911891864 40.70443586779579, -73.72779040579292 40.70446092589347, -73.72779182415759 40.704488557075976, -73.72779453413396 40.704541246366944, -73.72779733381635 40.704595730597795, -73.7277985034902 40.70461848489801, -73.72779994817947 40.70464662583411, -73.72780265698908 40.704699314220456, -73.72780536579926 40.7047520035069, -73.72780807342313 40.704804694591175, -73.72781078106227 40.70485738297349, -73.72781348870575 40.704910071355336, -73.7278161987127 40.70496276154344, -73.72781687718519 40.70497598632259, -73.72782166000985 40.705069047034314, -73.72782303244094 40.70509576228096, -73.72782431930393 40.70512082938118, -73.72782577198188 40.70514904777829, -73.72782702932801 40.705173519567545, -73.72782797060754 40.70520758560553, -73.72782891544892 40.70524164895018, -73.72783124164643 40.70529415722435, -73.7278324150964 40.70532062976088, -73.72783356903456 40.705346664600434, -73.72783596021198 40.70540064897284, -73.72783822264223 40.705451678448014, -73.72784055122099 40.70550418672617, -73.72784287744044 40.70555669409783, -73.7278448732499 40.70560173090946, -73.72784520365994 40.70560920236957, -73.72784753225338 40.70566170974602, -73.72784985729324 40.705714218914686, -73.72785218352736 40.70576672628467, -73.72785451095953 40.705819230955576, -73.72785565538275 40.70584499201393, -73.72785684193427 40.70587173833598, -73.72785916816842 40.70592424840632, -73.72786149560055 40.705976755777485, -73.72786382303268 40.70602926404882, -73.72786540451918 40.70607840442839, -73.72786604560773 40.706098183070324, -73.7278664909795 40.70611198902925, -73.72786699191361 40.7061275475231, -73.72786857695111 40.70617668881091, -73.7278701619762 40.706225833700394, -73.72787174702206 40.70627497408698, -73.72787333087588 40.70632411717201, -73.72787395457622 40.70634351845607, -73.72787439270834 40.706357069551466, -73.72787539601936 40.70640986555609, -73.72787640755972 40.7064629650536, -73.72787741674236 40.70651606274412, -73.72787842591933 40.70656916223529, -73.72787943629224 40.70662225902733, -73.72788044546867 40.706675359418234, -73.72788145584481 40.70672845620952, -73.72788246384121 40.70678155659686, -73.72788347421314 40.70683465518843, -73.72788533119562 40.706884438281385, -73.72788599681188 40.70690227006432, -73.72788850980238 40.70696963097145, -73.72788904634494 40.70698400627009, -73.72789090332105 40.707033792964, -73.72789067975481 40.707083633272866, -73.72789259118684 40.70713341559229, -73.7278948233469 40.70718318876384, -73.72789673596084 40.70723297288632, -73.72789857468045 40.70728375640611, -73.72790028323162 40.7073345405183, -73.72790224858532 40.70738532163509, -73.72790421396415 40.70743609734852, -73.72790503721167 40.70745735056124, -73.72790606783457 40.70748404157704, -73.72790612459714 40.707485500546426, -73.72790813521979 40.70753765955791, -73.72791010178356 40.707588437074, -73.72791265015525 40.70763032697607, -73.72791363823468 40.707646568308306, -73.72791364604026 40.70764668539378, -73.72791555949145 40.70767220782535, -73.72791854787805 40.7077121176327, -73.72792043229164 40.7077464947645, -73.72808987249319 40.707786333212525, -73.72810952725348 40.70849677198205, -73.72811776697762 40.70879331496033, -73.72812576983425 40.70891206501499, -73.72813776728528 40.709088687116044, -73.72810256798685 40.70918489518693, -73.7281122959503 40.70918795560233, -73.72814082132547 40.70919640316928, -73.72820595553266 40.70921568752458, -73.7282710909646 40.70923497094525, -73.72833622523616 40.70925425792826, -73.72840364900877 40.709273931194055, -73.72840977540977 40.70927538197044, -73.72841484140186 40.70927714632551, -73.72842146297481 40.709280503759906, -73.72842725198619 40.70928459945335, -73.72842866724795 40.70928606883121, -73.72843250176334 40.70929005185155, -73.72843569392859 40.709294850123776, -73.72843771766549 40.70929975280086, -73.72843809921301 40.70930137372802, -73.72843877274 40.709304234453086, -73.72843793170411 40.709308214547804, -73.72843677184873 40.70931289539178, -73.7284354912333 40.70931700862626, -73.7284146490711 40.709365596288, -73.72839508654498 40.70941320900536, -73.72837520004961 40.70946074621197, -73.7283555168801 40.70950832982098, -73.72833581122393 40.70955590706969, -73.72831606769341 40.70960347882236, -73.7282962744804 40.70965103874743, -73.72828579392387 40.70967581870325, -73.72827619041685 40.70969852684165, -73.72826403216723 40.709727278610146, -73.72825610749705 40.70974601763633, -73.72823602692641 40.70979350573132, -73.72823424719559 40.70979957730621, -73.7282327465818 40.70980568916271, -73.72823152155698 40.70981183588944, -73.72823057331935 40.70981801388708, -73.72822990428338 40.7098242114547, -73.72822951329147 40.70983042228596, -73.728229405103 40.70983664008847, -73.72822957738427 40.7098428567521, -73.72823002660725 40.709849066865466, -73.72823075518286 40.709855259628014, -73.72823176430556 40.709861432341, -73.72823305283246 40.70986757509611, -73.72823461370734 40.70987367707046, -73.72823645167117 40.70987973647424, -73.7282380706623 40.709884355437076, -73.72823841106887 40.70988503703027, -73.72824160850725 40.70989144814278, -73.7282446832827 40.70989717817607, -73.72824763472947 40.709902970954204, -73.7282510459403 40.709908615332104, -73.72825454483615 40.70991423200089, -73.72825813024467 40.70991981825629, -73.72826179508026 40.70992537047947, -73.72826587479584 40.709930753484485, -73.72826982780886 40.70993615600165, -73.7282736357307 40.709941153844824, -73.7282738005313 40.709941368556436, -73.72827804834498 40.70994673845008, -73.72828385901387 40.70995133939049, -73.72828916621883 40.7099560679159, -73.72829468108638 40.70996065735132, -73.72830040366054 40.70996509689071, -73.7283006738599 40.70996529294026, -73.72829721642374 40.70998289075344, -73.72829322520597 40.709981053286974, -73.7282697458133 40.70996933349162, -73.72824681921897 40.70995699814351, -73.72822446784535 40.70994406260462, -73.7282027247688 40.709930541361636, -73.72818161593956 40.70991645518807, -73.72816116262565 40.70990181223914, -73.7281413907515 40.709886639591794, -73.72812232985041 40.70987094992337, -73.72810399521812 40.709854764882806, -73.72808641517494 40.70983810434854, -73.7280696085924 40.709820983674334, -73.72805359900948 40.70980343443415, -73.72803839940983 40.70978546476369, -73.72802403214163 40.709767108035024, -73.72801051490363 40.709748376897586, -73.72799786532124 40.70972930201077, -73.72798609397813 40.70970989960921, -73.72797522087005 40.70969019945743, -73.72796525536782 40.709670224991164, -73.72795621277751 40.70964999515767, -73.72794752366413 40.70962811461376, -73.72793586464594 40.7095991760151, -73.72792845122531 40.70958077897623, -73.72790880357425 40.7095320209624, -73.72788915478327 40.709483259340075, -73.72786950600634 40.70943450131612, -73.72786459029862 40.70942230392172, -73.72784985726912 40.709385740586974, -73.72783020972568 40.7093369843595, -73.7278105610497 40.70928822272252, -73.7277909135711 40.70923946468669, -73.7277676818646 40.70916515415201, -73.72775175041876 40.70910651093423, -73.72774737733823 40.70909040207822, -73.72772999765988 40.70901519765524, -73.72771556491415 40.7089396363912, -73.72770409067851 40.708863778649196, -73.72769558767308 40.70878769470037, -73.72769363807785 40.708736560624295, -73.72769169084869 40.70868542745393, -73.72768974244279 40.70863429337992, -73.72768803672113 40.70858951031449, -73.72768779404728 40.70858315750453, -73.72768584682339 40.70853202523354, -73.72768440729044 40.708494212786704, -73.72768295899122 40.70845622922096, -73.72768278063934 40.708451511899135, -73.72768195003992 40.708429755281884, -73.727680002836 40.70837862030828, -73.72767805444072 40.70832748803305, -73.72767610606677 40.708276351254874, -73.72766741576582 40.70821080018435, -73.72766152487591 40.70814507022945, -73.72765844377426 40.70807922625227, -73.72765817451004 40.708013343901285, -73.72766071444717 40.70794748710684, -73.72766336325007 40.70791493973783, -73.72766840755779 40.707862891969256, -73.72767421953495 40.70781613744553, -73.72768516635975 40.70775078141273, -73.72769889872512 40.70768573093894, -73.7277138428941 40.707634858344726, -73.72772878704022 40.707583985748236, -73.72774373234691 40.707533113152245, -73.72775867644741 40.707482240551144, -73.72777362288812 40.707431368853946, -73.7277885657523 40.70738049804652, -73.72779626880043 40.707354269835456, -73.72780350624544 40.70732962272871, -73.72781285110848 40.707303267823995, -73.72782101868955 40.70727774311166, -73.72782459195577 40.70726626188227, -73.72783318485888 40.70723423645211, -73.72784046381052 40.707202025109844, -73.7278464263319 40.707169655765895, -73.72785106399813 40.70713716352069, -73.72785437433785 40.70710457448341, -73.72785635247266 40.707071924663225, -73.72785699473307 40.707039243768676, -73.72785529409632 40.70698942952779, -73.72785359227879 40.706939615283765, -73.72785188927685 40.70688980193712, -73.72785018864772 40.7068399876952, -73.72784848919348 40.70679017615724, -73.72784678856581 40.706740362815154, -73.7278450879443 40.706690548572176, -73.72784338614208 40.70664073432609, -73.72784236295702 40.70661078165656, -73.72783993509705 40.70653968470688, -73.72783824932283 40.70648913477631, -73.72783651256795 40.70643716010902, -73.72783477580839 40.7063851872423, -73.72783304259416 40.7063332161847, -73.72783130584368 40.70628124241675, -73.72782956909596 40.70622926864842, -73.72782870672211 40.70620340649973, -73.72782783471752 40.70617729488536, -73.7278261003308 40.70612532382339, -73.72782494022925 40.7060761610265, -73.72782378012212 40.70602700003027, -73.72782262238692 40.70597783813882, -73.72782212688121 40.705956895473705, -73.72782145991657 40.705928677136384, -73.72782099996682 40.70590916997726, -73.72782030099786 40.705879516141984, -73.72781914208817 40.70583035334625, -73.72781893338421 40.70582147646895, -73.72781819042548 40.7057898449967, -73.7278165264885 40.70575018504951, -73.72781544743367 40.70572725626712, -73.72781374140779 40.705690949740784, -73.72781291288194 40.7056733201854, -73.72781037715093 40.70561938410042, -73.7278078414204 40.70556544891554, -73.7278053068699 40.70551151553404, -73.72780255662207 40.70545969335161, -73.72779980637114 40.705407872969715, -73.72779705494858 40.70535605078364, -73.72779430588585 40.70530423130423, -73.72779155328851 40.705252409114514, -73.72778880423802 40.70520058873378, -73.72778605401213 40.70514876744932, -73.72778274118922 40.705090120724904, -73.72778061147353 40.7050439858636, -73.72777784824395 40.70498955665321, -73.72777523511331 40.70493807068316, -73.7277747016805 40.704927580212825, -73.727773242728 40.704898876421304, -73.72777157685455 40.70486607749462, -73.72777038199312 40.70484253788542, -73.72776985404803 40.704832152788285, -73.7277671653133 40.704779189792134, -73.72776447418318 40.70472623489456, -73.72776391336313 40.70471520765162, -73.72776178189608 40.70467327459063, -73.72775909551866 40.70462031700186, -73.72775833224088 40.70460526127229, -73.7277564067863 40.70456735760603, -73.72775371569168 40.70451439820417, -73.72775102696787 40.704461438807485, -73.72774833588173 40.70440847940477, -73.7277456471628 40.70435552090774, -73.72773964822613 40.70430732911605, -73.72773162042029 40.704259309926286, -73.72772156354348 40.70421151376643, -73.72770949634142 40.70416398750713, -73.7276954280858 40.70411677979752, -73.72767937157974 40.704069943797606, -73.72766134677748 40.704023520077016, -73.72764137120393 40.70397756450822, -73.72762916292905 40.70395039947187, -73.72760454427437 40.70389254339654, -73.72758809076073 40.70385283402683, -73.72757060454568 40.70381276380495, -73.72754919453536 40.703762566995266, -73.72752968080931 40.703711928014066, -73.7275120738621 40.7036608838084, -73.7274963924565 40.703609474946745, -73.7274850719501 40.70356547774866, -73.72747557473808 40.703521230920565, -73.72746791602646 40.703476776823194, -73.72746209444793 40.70343215957903, -73.72745812518255 40.70338742785209, -73.7274560092516 40.70334262036726, -73.7274541125948 40.70328875150812, -73.72745133256888 40.703236777043756, -73.72744855253988 40.70318480437998, -73.72744736087755 40.70316254350238, -73.7274457725153 40.703132831715756, -73.72744299012847 40.70308085904556, -73.72744020893666 40.703028884576725, -73.72743746948056 40.702977700859385, -73.7274328201015 40.70287271758758, -73.72743046612221 40.70281957705987, -73.72742811333357 40.702766435634, -73.72742575818225 40.70271329420211, -73.72742340539747 40.70266015367591, -73.72742105261639 40.70260701314934, -73.72741869746528 40.70255387441773, -73.72741741286883 40.702524829729654, -73.72741504155059 40.70247130553823, -73.72741399073873 40.70244759335968, -73.72741163797271 40.70239445283141, -73.72741045281546 40.70236771369957, -73.7274092804848 40.702341310490546, -73.72740692772257 40.70228817086198, -73.7274045737772 40.70223503213071, -73.7274022222168 40.70218188980262, -73.72739986710302 40.70212874926667, -73.72739751317629 40.70207560873318, -73.72739516161977 40.70202246820484, -73.72739280770784 40.70196932586947, -73.727390453785 40.70191618713574, -73.7273880986863 40.701863047498286, -73.72738574596893 40.701809905164495, -73.72738339324425 40.70175676553178, -73.7273810393511 40.70170362319435, -73.72738023442713 40.70168547048234, -73.72737806800906 40.701636542103955, -73.72737633037445 40.70159734301801, -73.72737603571788 40.70159069470905, -73.72737496552095 40.70156652141718, -73.72737397648525 40.701544202480385, -73.72737162377564 40.70149106374616, -73.7273484690967 40.70127573417672, -73.72732718217551 40.70106029375502, -73.72730776058349 40.70084475328259, -73.72729021611268 40.700629118191394, -73.72728794989203 40.70057597605182, -73.72728733678339 40.70056156093386, -73.72728510718677 40.70050930138661, -73.72728341983904 40.70046968907551, -73.7272811548161 40.70041654603702, -73.72727888979679 40.70036340299812, -73.72727788999718 40.700339967391066, -73.72727662360157 40.700310259055485, -73.7272743573915 40.700257119614996, -73.72727209238306 40.70020397657484, -73.72726982738556 40.700150831733296, -73.72726756238062 40.70009768959286, -73.72726529619972 40.70004454654869, -73.72726303238893 40.69999140350975, -73.72726206714763 40.69996877844816, -73.7272607662079 40.69993826226579, -73.72725850003789 40.69988511922043, -73.7272562350547 40.69983197617743, -73.7272539700751 40.699778833134054, -73.72725170509544 40.699725690990775, -73.72724944012676 40.69967254704605, -73.72724717516536 40.699619402200426, -73.72724436788046 40.699566358728084, -73.72724156061476 40.69951331165326, -73.72723875216293 40.69946026637625, -73.72723594726885 40.69940722020669, -73.72723314001287 40.69935417403107, -73.72723033275767 40.699301128755565, -73.72722752670117 40.69924808078089, -73.72722675019234 40.699233411327185, -73.72722471826799 40.69919503640224, -73.72722191339261 40.69914199113104, -73.727219108529 40.69908894405842, -73.72721629892973 40.69903589877511, -73.72721349289188 40.69898285169882, -73.7272106880343 40.69892980642592, -73.72720788081115 40.69887676204746, -73.72720507360721 40.698823714066585, -73.72720226520977 40.698770669684485, -73.72719945918318 40.698717625307566, -73.72719665435903 40.698664577330966, -73.7271938483414 40.6986115329532, -73.72719349165878 40.69860414697105, -73.72719034732509 40.698538362182184, -73.72718879193383 40.69850585254686, -73.72718626787717 40.698453012352914, -73.72718374026397 40.69840017485161, -73.72718121266949 40.698347333747925, -73.72717868625483 40.69829449444763, -73.72717615748152 40.69824165424078, -73.72717363344488 40.698188814044755, -73.72717110584802 40.69813597744194, -73.72716857827358 40.69808313633616, -73.72716605187894 40.69803029703379, -73.72716352194614 40.69797745592156, -73.72716099792589 40.69792461662399, -73.72715847155062 40.69787177551935, -73.72715594397775 40.69781893891408, -73.72715341760319 40.69776609960965, -73.72715044820863 40.69771598782019, -73.72714747764283 40.69766587422653, -73.72714451298987 40.697615762447484, -73.72714154359771 40.697565653358346, -73.7271385730305 40.697515543365526, -73.72713704362097 40.69748970661582, -73.72713560721519 40.6974654297815, -73.72713263903063 40.69741531799245, -73.72712966729364 40.69736520799562)), ((-73.72923459488277 40.74605880033937, -73.72926236973608 40.74601110794214, -73.72926181227503 40.746011636132124, -73.72948488606248 40.7455781419879, -73.7294957599354 40.74554963213965, -73.72950231717026 40.74551053835426, -73.7295017985594 40.74548895999604, -73.72949884156814 40.74546749567901, -73.72949336168813 40.7454459633012, -73.72948542787508 40.74542487721605, -73.72946839695963 40.74539276371919, -73.72944635972917 40.74536246379517, -73.72941964115584 40.74533442665902, -73.72938863857362 40.745309067476065, -73.72938012635171 40.74529951016526, -73.72936344498216 40.74528076105478, -73.729349665104 40.74526069410851, -73.72933717552063 40.745235164091696, -73.72932937542947 40.745208577088206, -73.7293264361314 40.745174614616744, -73.7293311309597 40.74514076644048, -73.72934332565548 40.745108018302545, -73.72934459476771 40.74510864083642, -73.7293449200373 40.74510726652065, -73.72939067789792 40.74502883237949, -73.72944517178333 40.744915597785415, -73.72953327515968 40.744755665054306, -73.72962331939135 40.74458360332483, -73.72964865834743 40.74452673970762, -73.72966573997486 40.74446812141878, -73.72967436375633 40.744408440484214, -73.72967442622063 40.74434839996189, -73.72934004967875 40.74311245296472, -73.72926001504273 40.74302693961849, -73.72896419243166 40.7427108731085, -73.72807017308291 40.74218264020635, -73.72808326434661 40.742187840050406, -73.7271325737683 40.74161639992513, -73.7270489922801 40.74156402263428, -73.72701820311475 40.74154472734317, -73.72692980951096 40.74151013806773, -73.72638452712533 40.74140612525422, -73.72638383127976 40.74140633522122, -73.72635303685408 40.74139876259697, -73.72632443595806 40.74138724013056, -73.72629889854808 40.741372118389044, -73.72627719942236 40.74135385487473, -73.72625999457897 40.74133300496348, -73.72624780828093 40.74131020026154, -73.72624100944114 40.74128613324018, -73.72623980342735 40.74126153470336, -73.72624422861152 40.741237149465434, -73.72625414934092 40.7412137183243, -73.7262692655178 40.74119195196943, -73.72628174643367 40.7411830980873, -73.72629333447263 40.741174574370525, -73.72631376492397 40.74116099278121, -73.72632963647112 40.7411521874743, -73.72635468871293 40.741141285075706, -73.7263778565154 40.7411305682025, -73.72644779944814 40.741105836112126, -73.72651258701829 40.741082927880036, -73.7265614426673 40.741065652307256, -73.7265611278468 40.741067356228065, -73.72659238816492 40.74105657477754, -73.72672336802445 40.74103365695246, -73.72693882007299 40.7411884607213, -73.72730824867382 40.741434191396515, -73.7276733120938 40.74166984823586, -73.7282628069924 40.74202342971644, -73.7285488114419 40.74218175128253, -73.72881698625335 40.74238698821128, -73.72903224291973 40.74259210001531, -73.72925167948307 40.74285424250321, -73.7294138689818 40.74309612455318, -73.72948403429548 40.74319356079116, -73.72962919374392 40.74348007327461, -73.72963241583393 40.74348054820374, -73.72966102512474 40.74355601605429, -73.72972626124711 40.74376666182193, -73.72977108751672 40.74391756838595, -73.72982792346562 40.74416275328496, -73.72985190548442 40.74436073555016, -73.72987194773096 40.7445115839257, -73.72987530169704 40.74470323402804, -73.72988286192425 40.74487604539614, -73.72985601417089 40.745123105129345, -73.7298570324889 40.745133602972054, -73.72982334966493 40.74529060817947, -73.72978125169226 40.74548529351725, -73.72973914072452 40.74568312158705, -73.72967649127311 40.745852625395194, -73.72961799689323 40.7460158560565, -73.7294225339623 40.74633899017206, -73.7292769070591 40.74659626697888, -73.72913152291643 40.74679385111359, -73.72903158962555 40.74698840101616, -73.72886538312643 40.74722677757906, -73.72878208698451 40.747393091286504, -73.72870301115637 40.74753742260156, -73.72863636691399 40.747672357505245, -73.72859052954949 40.74776964242466, -73.72822587574343 40.7470336273097, -73.72802087098077 40.74665614098914, -73.72800454010326 40.74660897779699, -73.72805434191213 40.746552545120274, -73.72815366087899 40.74650879593173, -73.72832740007085 40.74644951370857, -73.72855904757982 40.74637151731973, -73.72878652508268 40.746302936292274, -73.72900765825845 40.746230510016844, -73.72905293526958 40.746212368586676, -73.72910758505446 40.746180853185336, -73.7291565823046 40.746144353646606, -73.72919914436703 40.74610345256902, -73.72923459488277 40.74605880033937), (-73.72926652535824 40.74601556623361, -73.72927623970556 40.74599796427057, -73.72926558969993 40.74600805647589, -73.72926652535824 40.74601556623361)), ((-73.75596195824588 40.76432993653487, -73.75574005841182 40.76373984541222, -73.75546441711234 40.76300682461659, -73.75537100390798 40.76275840222966, -73.7558383282599 40.76267035048498, -73.75592059352043 40.76267288503488, -73.75595622899552 40.762695180557685, -73.75598531656581 40.7627322746534, -73.75604994693644 40.76281635145945, -73.75610167265985 40.76287818178006, -73.7561728614536 40.7629449907546, -73.75625057236735 40.76300440770784, -73.75632181564136 40.76305640335143, -73.75640280016493 40.76310842044848, -73.75649027067986 40.76316291948896, -73.75659723932843 40.763212522174626, -73.75666530898567 40.76324476096316, -73.75675608025774 40.7632844543204, -73.7569669085423 40.7633466200583, -73.75713886368355 40.76338401515135, -73.7573628060195 40.763411644521405, -73.75753478851416 40.76344163240451, -73.75764506991683 40.76347395944235, -73.75776501961306 40.763526056636664, -73.75784928022827 40.763570672922704, -73.75797556252272 40.763667223257244, -73.75808229215596 40.763783482328215, -73.75815982646631 40.763892273340986, -73.75823407651126 40.764010933273674, -73.75826175807775 40.7640511918186, -73.75807424991893 40.76407086873696, -73.75759545828606 40.764116446489076, -73.75699004637139 40.76416969501739, -73.75699000727462 40.76416969853694, -73.7568733594156 40.76417978665768, -73.75655863782059 40.76423163696818, -73.75647017779838 40.76424621023435, -73.75596195824588 40.76432993653487)), ((-73.72343244246551 40.73432793941349, -73.72347675074586 40.73426408692175, -73.7234781502302 40.73426774816384, -73.72348075442285 40.734264096535625, -73.72351298722619 40.734215442698414, -73.72356919383547 40.73417902943626, -73.72360522806625 40.734179115930054, -73.72364491346681 40.73426449060464, -73.72387073685006 40.734843712395715, -73.72352613449816 40.73490684447131, -73.7238385027186 40.73581671429134, -73.72412576107519 40.736559054737434, -73.7245694585844 40.737770486034236, -73.72468672329276 40.73808048130997, -73.72498462742398 40.73881799912832, -73.72507971218444 40.739059578628485, -73.7250282482735 40.739068246559235, -73.72497447964265 40.739068218123776, -73.72489855998444 40.739054701115734, -73.72478766728756 40.739018874054445, -73.72470597626014 40.73898756162059, -73.72462443347081 40.73892068737028, -73.72457854608291 40.73885196764089, -73.72450242227201 40.73874703081957, -73.72443275127063 40.73863573196134, -73.72433977805629 40.738506596676835, -73.72426431907098 40.73838194817632, -73.72417726382854 40.73823504541502, -73.7241152662094 40.73810986893215, -73.72404344818737 40.73795815870987, -73.72398031272013 40.73781227304903, -73.72391073684993 40.73767874764656, -73.72383550069603 40.73750075664996, -73.7237603018038 40.73731387493256, -73.72369667989955 40.737153692304005, -73.72364463719113 40.73702020879095, -73.72361584104674 40.73691789914169, -73.72355209194859 40.73678883331433, -73.72352331449733 40.73668207695389, -73.72347698689931 40.736579724273085, -73.72343655831791 40.73646405095445, -73.72341948785794 40.73635287774865, -73.72339661085311 40.73623280073533, -73.7233679815329 40.73609048255415, -73.72335690240924 40.73594376249624, -73.72336183246605 40.735860104143974, -73.72335824364075 40.73580491843502, -73.72335847125079 40.73575009669544, -73.72335866092368 40.73570441236235, -73.7233629049374 40.73564655473781, -73.72336717541926 40.73558260521061, -73.72337940163648 40.73553085782412, -73.72339977559275 40.735445627346564, -73.72342033912636 40.735314712528776, -73.72343281808199 40.73520205238612, -73.72344125653126 40.735098519135335, -73.7234335639285 40.735022358739165, -73.72343806066033 40.734903587454724, -73.72343456260032 40.73478175143507, -73.7234309002108 40.734699509648394, -73.72342748256406 40.734613352119936, -73.7234272631161 40.73461117595492, -73.72341151262847 40.73454717923156, -73.72340785028403 40.73446493654097, -73.72340816634534 40.73438879537164, -73.72343244246551 40.73432793941349)), ((-73.72653387317379 40.698160773716616, -73.72653153783983 40.69810762957847, -73.72652977862508 40.698067489369386, -73.72652438896688 40.6979446694981, -73.72651991006134 40.696986029040836, -73.7265422596646 40.69699248752177, -73.72682659590431 40.69707435695042, -73.72683998900669 40.697078206029225, -73.72686142057823 40.69708436419804, -73.72686852726856 40.69724220383514, -73.72686921194418 40.69726020318834, -73.72687119100594 40.69731228386955, -73.72687317125029 40.69736436545368, -73.7268740043297 40.69738628510822, -73.72687607541944 40.69744074157011, -73.72687713057617 40.6974685259165, -73.72687911081506 40.69752061110152, -73.72688108988864 40.69757269268133, -73.72688307015216 40.69762477336307, -73.72688505041504 40.697676854944945, -73.72688703068474 40.69772893562592, -73.72688901094648 40.69778101900807, -73.72688984290109 40.69780292695186, -73.7268909864823 40.69783310147802, -73.7268929667613 40.697885182157854, -73.72689494822653 40.69793726284011, -73.72689692731373 40.69798934711841, -73.72689890760199 40.69804142779711, -73.72690085077869 40.6980950590771, -73.72690279278639 40.698148687652335, -73.72690363344465 40.698171939186544, -73.72690473360295 40.69820231892587, -73.72690667797224 40.69825595020744, -73.7269086199819 40.6983095805825, -73.72691056318527 40.69836320915896, -73.72691139115206 40.69838609415209, -73.72691250401438 40.69841684043092, -73.7269144483961 40.69847047171089, -73.72691639159781 40.69852410298765, -73.7269183336342 40.698577730659174, -73.72692027802162 40.698631362838476, -73.7269214184792 40.698662884526506, -73.72692221886636 40.69868499410842, -73.72692416209532 40.69873862178155, -73.72692610412571 40.69879225395403, -73.72692804734984 40.698845884327895, -73.72692918686765 40.698877348379675, -73.72692998820706 40.69889951559625, -73.72693193143007 40.698953147770276, -73.72693387467098 40.69900677634194, -73.72693581790762 40.69906040671421, -73.72693775878096 40.69911403708044, -73.72693970201648 40.699167669252894, -73.72694116568499 40.69920810321714, -73.72694644732363 40.69935693150936, -73.72694731951556 40.699382024670754, -73.72694918856052 40.69943557471816, -73.72695105406257 40.69948912385624, -73.72695292194142 40.69954267119851, -73.72695478745317 40.699596219435314, -73.72695665532326 40.69964977037882, -73.72695852320741 40.69970331862044, -73.72696038991508 40.69975686595832, -73.72696225661461 40.69981041599737, -73.72696412331722 40.69986396603598, -73.72696599003012 40.699917514273196, -73.72696785557021 40.69997106070618, -73.72696972464824 40.70002461074921, -73.72697158900007 40.70007815988013, -73.72697303355704 40.7001195141216, -73.72697345809144 40.70013170812132, -73.72697532363246 40.70018525725423, -73.7269771915503 40.70023880459137, -73.72697905828053 40.70029235372631, -73.7269809261933 40.70034590376414, -73.72698279175002 40.70039945199497, -73.72698465967987 40.70045299933048, -73.72698652641107 40.70050655116535, -73.72698839079357 40.70056009939213, -73.72699025991193 40.70061364762979, -73.7269921254873 40.70066719495808, -73.72699419811777 40.70072132361019, -73.72699626838147 40.70077545315675, -73.72699787399722 40.700817358892216, -73.72699834220931 40.70082958000981, -73.72700041248709 40.70088370775458, -73.72700248513473 40.70093783550449, -73.72700339466991 40.70096162119907, -73.72700662924944 40.70104609280132, -73.72700869835377 40.70110022144208, -73.72701077101121 40.70115435009087, -73.72701284248873 40.70120847873645, -73.72701491515653 40.70126260648388, -73.72701698664815 40.70131673332759, -73.727019059319 40.70137086197473, -73.72702112962307 40.701424991516326, -73.72702273644967 40.70146689815124, -73.7270232034876 40.7014791192649, -73.727025274989 40.70153324700749, -73.72702735820042 40.7015876944607, -73.7270294168223 40.70164150158804, -73.72703149068923 40.701695632036525, -73.72703355983758 40.70174975977182, -73.72703563490184 40.70180388842125, -73.72703770524758 40.70185801435751, -73.7270499219253 40.70205088347669, -73.72705670687756 40.70224390450379, -73.7270580568465 40.70243699458458, -73.72705895868245 40.702491282539505, -73.72705911797922 40.70250092834593, -73.72705927413557 40.702510474187584, -73.72706040569142 40.70257859461488, -73.72706075997377 40.702599862945085, -73.72706166061975 40.702654153597535, -73.72706256127097 40.70270844334909, -73.72706346310687 40.70276273310311, -73.7270643625814 40.702817021950594, -73.72706526441655 40.702871312604294, -73.72706616507357 40.70292560235433, -73.72706706572842 40.70297989300443, -73.72706796639574 40.70303418095268, -73.72706886586285 40.70308847340025, -73.72706976653315 40.70314276134769, -73.72707066837344 40.70319705289962, -73.72707079209222 40.70320440680733, -73.72707157259275 40.70325134175521, -73.72707247325272 40.7033056333035, -73.7270733727456 40.7033599212466, -73.72707427340843 40.70341421279415, -73.72707517526712 40.70346850164258, -73.72707607475333 40.703522792286066, -73.72707697661495 40.70357708113371, -73.7270730746086 40.7036240770177, -73.72706720765062 40.70367095207552, -73.7270593818338 40.70371766219588, -73.72704960563628 40.703764158770795, -73.72703788634165 40.7038103958906, -73.72702424071855 40.7038563231657, -73.72701346660962 40.70388787961064, -73.72700867958596 40.70390189829675, -73.72699121733498 40.703947073589795, -73.72697187308647 40.70399180226253, -73.72694995764653 40.70403765407955, -73.72680671956424 40.703706832927374, -73.72677843015235 40.70364084890652, -73.72679954768765 40.70359970402443, -73.72676771639344 40.70323817842699, -73.7267681111603 40.70323366867901, -73.72677072269398 40.7032039236276, -73.72677328967903 40.70317465394273, -73.72685673646822 40.70286891875628, -73.72689975957591 40.70265592900824, -73.72672484121502 40.70212892529923, -73.72672651016441 40.70174660788643, -73.72664980914364 40.70100558179242, -73.72664816803687 40.70096978687233, -73.72664566026337 40.70091507724908, -73.72664303978463 40.70085784411089, -73.72664064708422 40.70080566070849, -73.72663814169323 40.70075095018905, -73.72663563274929 40.70069624146175, -73.72663435786545 40.70066838276029, -73.72663312855347 40.70064153004375, -73.72663061961414 40.700586822216096, -73.72663010273867 40.700575520408066, -73.7266289852174 40.70055112726698, -73.7266281142396 40.700532111694905, -73.72662560649538 40.70047740296865, -73.72662309876262 40.700422692440966, -73.72662059339677 40.70036798281895, -73.7266180856575 40.70031327589241, -73.72661788041556 40.70030879173362, -73.72661690941011 40.70028762458941, -73.72661557911665 40.70025856626671, -73.72661307139664 40.70020385663781, -73.72661111489523 40.700149765171474, -73.72660916193186 40.70009567731522, -73.72660720660899 40.700041588552445, -73.7266052512929 40.69998749888874, -73.72660486649846 40.699976883587034, -73.72660448289467 40.699966266487124, -73.72660329715585 40.69993341102841, -73.72660134184243 40.69987932226441, -73.72659938652484 40.699825235300985, -73.72659743004563 40.69977114383184, -73.72659666283559 40.699749911432384, -73.72659547710447 40.699717055972684, -73.72659352180374 40.69966296720706, -73.7265921414452 40.69962477212221, -73.72658457957566 40.69941558848351, -73.72658374417195 40.69939252156884, -73.7265827623685 40.699365338045105, -73.72658179243614 40.699338433709634, -73.72657983597442 40.69928434493834, -73.72657788070276 40.699230255268915, -73.7265759242437 40.69917616739729, -73.7265739713448 40.69912207773266, -73.72657201607531 40.69906798986304, -73.72657005963316 40.69901390018915, -73.72656810437367 40.698959811418185, -73.72656615029689 40.69890572355014, -73.72656419742121 40.69885163208248, -73.72656186320359 40.69879849245497, -73.72656099094777 40.698778644797606, -73.72655953019137 40.69874534832737, -73.72655719718281 40.698692204199304, -73.72655486417435 40.698639060971395, -73.72655253235277 40.698585917745845, -73.72655020052751 40.6985327763209, -73.72654786872076 40.698479631293544, -73.72654722164036 40.69846488829861, -73.72654553336078 40.69842648805835, -73.72654320272613 40.698373347535515, -73.72654087092684 40.69832020340743, -73.72654034722277 40.69830826671521, -73.72653853557432 40.69826706107151, -73.72653620614516 40.69821391784877, -73.72653387317379 40.698160773716616)), ((-73.72623133041088 40.69082856191602, -73.72623738630564 40.69082831967484, -73.7262433252521 40.69082918749328, -73.72624952327865 40.69083149855681, -73.72625608078215 40.69083644538939, -73.7262742195896 40.69086407859087, -73.72627923190394 40.69087193582149, -73.72628485818933 40.69088153161046, -73.72629895737366 40.69090558284671, -73.72631724470351 40.69093969831941, -73.7263340798539 40.69097424348463, -73.7263494381193 40.691009184064605, -73.72636330425108 40.691044487605, -73.72637566777321 40.6910801117572, -73.72638651464209 40.69111601866647, -73.72639582961239 40.691152174977915, -73.72641137892664 40.69120861765883, -73.72642679642597 40.69125740202322, -73.72644220921569 40.691306186374, -73.72645762202791 40.69135497072242, -73.72647340795557 40.69140393966081, -73.72650266191407 40.69150080400778, -73.72652780085315 40.69159833665701, -73.72654879796976 40.691696433988085, -73.72655701233589 40.691744542937464, -73.72656562644923 40.69179499508156, -73.72657828077905 40.69189391726726, -73.72658673296084 40.691993099622074, -73.72658989804484 40.692044082729275, -73.72659277118765 40.69209557573582, -73.72659564432749 40.69214707054296, -73.72659851748288 40.69219856264814, -73.72660138826916 40.69225005654836, -73.72660426261648 40.69230154865555, -73.72660713577775 40.69235304256056, -73.72661000894351 40.69240453646517, -73.72661288329309 40.692456031272684, -73.72661575647504 40.69250752337549, -73.7266186284747 40.692559016375526, -73.72662150284127 40.69261051028134, -73.72662437721966 40.69266200238572, -73.72662724803848 40.69271349808327, -73.72663150028357 40.69276019370257, -73.72666336992175 40.69303016073404, -73.72668708860112 40.69330061538087, -73.72668975649485 40.69335256805339, -73.72669183696894 40.69340351345273, -73.72669391980129 40.693454461558865, -73.72669600028179 40.69350540695747, -73.72669808194851 40.69355635235848, -73.72670016243532 40.69360729775636, -73.7267022429253 40.69365824315386, -73.72670432459792 40.69370918945435, -73.72670640509428 40.69376013485114, -73.7267084855938 40.69381108024753, -73.72671056491342 40.69386202564076, -73.72671264541931 40.693912971036426, -73.72671372544049 40.69393898864147, -73.72671484072538 40.6939659284597, -73.7267170301194 40.694018885868516, -73.72671922187574 40.694071845083556, -73.72672141363928 40.69412480339769, -73.72672360540626 40.69417776171144, -73.72672579599733 40.69423071912148, -73.7267311430057 40.69435992090471, -73.7267317673626 40.6943750123525, -73.72673236778769 40.69438959224967, -73.72673455957211 40.69444255056145, -73.72673600233423 40.69447734906752, -73.72673675372623 40.694495508878425, -73.72673894433817 40.69454846628609, -73.7267411349499 40.69460142459385, -73.72674332556512 40.694654382901206, -73.72674590606833 40.69470776357586, -73.72674675781596 40.694725398622985, -73.72674848301159 40.69476114784371, -73.72675106351937 40.69481452941806, -73.72675364284818 40.69486791098919, -73.72675622099062 40.694921294358075, -73.72675880033138 40.694974675027815, -73.72676128032677 40.69502602659641, -73.72676523720298 40.695107901093564, -73.72676653717319 40.695134822434845, -73.726769115351 40.69518820219963, -73.72677169470502 40.6952415846683, -73.72677427170065 40.69529496623043, -73.72677685105555 40.6953483504993, -73.72677943042935 40.69540173116569, -73.72678201099039 40.69545511183449, -73.72678458917457 40.695508496099315, -73.72678716974019 40.69556187766775, -73.72678862886727 40.69559211779006, -73.72678974558109 40.69561525832408, -73.72679232615134 40.69566864079219, -73.72679476031536 40.695722816267775, -73.72679719566648 40.69577699174576, -73.7267996322084 40.69583116632565, -73.72680081515983 40.69585748944295, -73.72680206756743 40.695885341802764, -73.72680450293778 40.695939515478486, -73.72680693948053 40.69599369275857, -73.72680937485141 40.69604786823444, -73.72681181023003 40.69610204280938, -73.72681424561621 40.69615621648337, -73.72681667980848 40.696210393756175, -73.7268191175689 40.69626456743494, -73.72682155177647 40.69631874290586, -73.72682398717478 40.69637291747867, -73.7268268438651 40.69642302901834, -73.72682910221862 40.696462662524176, -73.7268296993655 40.69647314325631, -73.72683255486645 40.696523258394436, -73.72683541157701 40.696573368131915, -73.72683826590716 40.696623482365936, -73.72684111907311 40.69667359299474, -73.72684397577811 40.69672370723358, -73.72684601566725 40.696759488708494, -73.72685380595838 40.69692228642019, -73.72683508560554 40.69691657683846, -73.72682725217726 40.696914187185065, -73.72680278408271 40.69690672505751, -73.7267361899248 40.69688641249414, -73.72666959461324 40.696866102590825, -73.72660300053273 40.69684579085071, -73.72655858558593 40.69683224602222, -73.72653514571907 40.69682536171076, -73.72652992457326 40.69682474415751, -73.72652292082121 40.696823446080145, -73.72651549386356 40.69682148151479, -73.72651011087662 40.69681964877886, -73.72650382983187 40.69681695931809, -73.72649893351165 40.69681445595259, -73.72649334544234 40.69681098919096, -73.72648774974348 40.69680678668868, -73.72648392676062 40.69680336824662, -73.72648084247002 40.696800141569014, -73.72647805104685 40.69679676249948, -73.72647557372879 40.69679324549676, -73.72647254099914 40.69678783338709, -73.72646996025047 40.69678155335275, -73.72646852582959 40.696776177460116, -73.72646791738038 40.696772213739926, -73.7264676831321 40.69676672993612, -73.72646548769556 40.6967132529282, -73.72646520508263 40.696706580327145, -73.72646327428694 40.696661273436675, -73.72646106088546 40.69660929304423, -73.72645884748373 40.69655731355197, -73.72645663172288 40.696505333153155, -73.7264544207017 40.69645335186469, -73.72645220494037 40.69640137326613, -73.72644999274297 40.69634939197411, -73.72644777935486 40.69629741338039, -73.72644556597753 40.69624543298528, -73.72644335142047 40.696193452586954, -73.72644113686323 40.69614147308877, -73.72643892704568 40.69608949270094, -73.72643671249534 40.69603751320199, -73.72643576387564 40.69601524476544, -73.72643449913528 40.69598553280492, -73.72643228577127 40.69593355420849, -73.72643007005554 40.69588157290457, -73.72642774825195 40.69582776600015, -73.72642542644465 40.69577396089635, -73.72642310226749 40.69572015758755, -73.72642078047512 40.69566635068193, -73.72641845512602 40.69561254646895, -73.72641613451322 40.695558742266854, -73.72641381272472 40.695504937160976, -73.72641148856998 40.69545113294961, -73.7264091656169 40.69539732513857, -73.72640684147342 40.69534352002583, -73.72640452087194 40.695289717622636, -73.72640419458965 40.695282157006595, -73.72640386828154 40.69527460269413, -73.72640219792271 40.69523591161139, -73.72639987497723 40.69518210559973, -73.7263996276217 40.695176358812496, -73.72639937909784 40.69517060842044, -73.72639755202447 40.695128302289184, -73.7263973412925 40.695123433593075, -73.72639713175111 40.695118563098795, -73.72639522790709 40.69507449537334, -73.72639279674642 40.69502053781628, -73.72639144773885 40.694990611328066, -73.7263909042924 40.6949785971386, -73.72639036321607 40.69496658205419, -73.72638792970073 40.69491262359013, -73.72638549736509 40.6948586669295, -73.72638306504074 40.69480470846741, -73.72638063153356 40.69475075090264, -73.72638003936675 40.69473763616501, -73.72637944836484 40.69472452593273, -73.72637819920968 40.694696794240755, -73.72637576451984 40.69464283847332, -73.72637333221498 40.69458887910905, -73.72637089871613 40.69453492334359, -73.72636846642283 40.694480963078014, -73.72636603529804 40.69442700731733, -73.72636360063899 40.694373048846245, -73.72636116716333 40.69431909127813, -73.72635873487094 40.694265134612834, -73.72635630140681 40.694211176143355, -73.72635386675613 40.694157219471634, -73.72635234664173 40.69412344556347, -73.72635189114276 40.6941133559867, -73.72635143683814 40.69410326371125, -73.7263490033858 40.69404930524047, -73.72634656993742 40.693995346769285, -73.72634413767611 40.693941388300495, -73.72634170185829 40.69388743252439, -73.72633927197101 40.693833474060376, -73.72633683971783 40.69377951649081, -73.72633440627804 40.69372556071909, -73.72633197284965 40.69367160314589, -73.72633161175924 40.69366359128615, -73.72633124954498 40.693655565015476, -73.72632953824568 40.69361764466894, -73.72632710600085 40.69356368889872, -73.72632479868444 40.693510427723986, -73.72632413407288 40.693495079528994, -73.72632249373048 40.69345716835547, -73.72632018641035 40.6934039098814, -73.726317879105 40.69335064870541, -73.7263158484822 40.69330376925224, -73.72631557298645 40.693297387531835, -73.72631326567368 40.69324412995709, -73.72631095837934 40.693190868779894, -73.72630865108873 40.693137607602274, -73.72630634378702 40.69308435002633, -73.7263040376869 40.69303108885073, -73.72630173158672 40.69297782857525, -73.72629942429607 40.69292457099805, -73.72629711466139 40.692871308912295, -73.7262948097591 40.69281804773792, -73.72629250366995 40.69276478836129, -73.72629115291492 40.692733580422875, -73.72629067522934 40.69272255965639, -73.72629019876756 40.692711528987104, -73.72628789032707 40.69265826780309, -73.72628558188286 40.692605008419626, -73.72628327699152 40.69255174904423, -73.72628096974144 40.6924984887623, -73.72627866248766 40.692445230280974, -73.72627635524864 40.69239196909772, -73.72627404918899 40.692338709717895, -73.72627174194996 40.69228545033485, -73.72626943590505 40.69223218915317, -73.7262671286734 40.69217892976933, -73.7262654979233 40.69214129146813, -73.72626479549545 40.692125075081364, -73.72625555137768 40.69190912252918, -73.72625343567688 40.69185906944041, -73.72625117976047 40.691805708417284, -73.72624891910438 40.691752350084016, -73.72624666319894 40.69169898815957, -73.72624440373313 40.69164562982832, -73.72624214664813 40.69159226880075, -73.72623988837634 40.691538909570966, -73.72623763129856 40.691485548542595, -73.72623537422814 40.691432186613326, -73.7262331171502 40.69137882738519, -73.72623202034039 40.69135292049043, -73.72623085770607 40.69132546905152, -73.72622860182953 40.691272107123815, -73.72622634475873 40.69121874879497, -73.72622408534023 40.69116538685806, -73.72622182947454 40.6911120249292, -73.7262195700485 40.69105866659353, -73.72621728726118 40.69100465982924, -73.72621505713727 40.69095194633296, -73.72621279773685 40.690898584394034, -73.72621084904159 40.69084561852108, -73.72621275762471 40.690839781404584, -73.7262166872083 40.690835015308856, -73.7262238556742 40.69083061892631, -73.72623133041088 40.69082856191602)), ((-73.78563735190409 40.78933189105145, -73.78524025725618 40.789372766760984, -73.78486761912752 40.78940405497225, -73.78445152643967 40.78941598454243, -73.78387687127389 40.78940651118498, -73.78387713316961 40.78940722487476, -73.78355009027257 40.78940393664404, -73.7832233064638 40.78939349797538, -73.78289705432638 40.789375917488755, -73.78257160168579 40.789351209201214, -73.78224721989719 40.78931939434355, -73.7823581840783 40.789012465617255, -73.78236740482176 40.78897385863313, -73.78238236957719 40.788936306177554, -73.7824028812409 40.788900298650525, -73.78242867168193 40.78886630830739, -73.78244033233176 40.78886272830553, -73.78245255730818 40.78886048751594, -73.78246508342912 40.78885963406887, -73.78247763813428 40.788860185459875, -73.7826204146704 40.788895782495466, -73.78276570286816 40.78892492567677, -73.78291299710754 40.78894751408617, -73.78306178695318 40.788963469311994, -73.78321155360344 40.788972734541616, -73.7833617793551 40.78897527908153, -73.78351194169485 40.788971093844026, -73.78366151803316 40.78896019315705, -73.7836609504926 40.78895728256503, -73.78377384959923 40.78895017513939, -73.78388608586089 40.78893848189712, -73.78399733688278 40.78892223555459, -73.78410728259401 40.78890148324171, -73.78428888145982 40.78888070736745, -73.78447151129156 40.78886605926025, -73.78465481661095 40.78885756616652, -73.7848384348581 40.78885524721726, -73.78502200945285 40.788859104447255, -73.78522247178786 40.78888218798853, -73.78579220987794 40.78894006917799, -73.7858016995179 40.78893989230628, -73.78581110128583 40.788940881422405, -73.78582017120151 40.78894300905793, -73.78582867129572 40.78894622074045, -73.78583637791196 40.78895043230773, -73.78584309117659 40.78895553262651, -73.78584863379334 40.78896138989413, -73.78585286053064 40.788967848954265, -73.7858556629258 40.788974742111904, -73.78585696573373 40.788981888226154, -73.78590569671648 40.789254139701306, -73.78590356413363 40.78926259236699, -73.78589966738292 40.78927067344953, -73.78589410903719 40.78927817152098, -73.7858870330852 40.78928489143943, -73.7858786249261 40.78929065614985, -73.78586910422875 40.78929531657657, -73.78585872019822 40.78929874981328, -73.78563735190409 40.78933189105145)), ((-73.73108465254596 40.74272642562815, -73.73090212163623 40.74269918476902, -73.73072155032285 40.74266521598034, -73.73054336929776 40.74262460042435, -73.73036799853202 40.74257743454925, -73.73019585556305 40.74252383010874, -73.73002734957404 40.74246391414766, -73.7299638278553 40.74244585045857, -73.72950849130639 40.74224448483754, -73.72877633493535 40.741888667504256, -73.7283117329205 40.74165508561878, -73.72745310367078 40.7411809295529, -73.72703559468877 40.74093314658326, -73.72705135548641 40.740931686386816, -73.72705127631383 40.740931649278174, -73.72716983501772 40.74091652335, -73.7272492708334 40.74093794196265, -73.72758563692732 40.741016098319896, -73.72790897417885 40.74120273814258, -73.72791101111189 40.741202897842896, -73.72813177035383 40.74132990411429, -73.72812779575983 40.74132904645005, -73.72825590815361 40.741401322179804, -73.7282917335385 40.74142193296185, -73.72829168909796 40.74142150781566, -73.72839926121468 40.741482195770686, -73.72903819298979 40.74181321588657, -73.72934182391145 40.74195672031908, -73.72969526126947 40.74211329650721, -73.73055743619862 40.74247879554872, -73.7306461757455 40.742485703824485, -73.73207669189665 40.74259705413994, -73.73286470544892 40.74233398304855, -73.73288533453436 40.742242851440565, -73.73305346870643 40.74150011512299, -73.73306568555822 40.74144614248178, -73.73307438893883 40.74140769911691, -73.7330902686307 40.74133754376935, -73.7331131413104 40.74123650448083, -73.73312927295434 40.74127782039831, -73.73309555682386 40.74150643430187, -73.73309855702381 40.7415888803563, -73.73310749417026 40.74166734640085, -73.73312364338427 40.74172617369807, -73.73313041474988 40.741815074346796, -73.73314555088176 40.7419033775257, -73.73316897312861 40.74199062739054, -73.73320056137 40.74207637520342, -73.7332401528315 40.742160179330085, -73.73328754444123 40.74224160794717, -73.73334249163086 40.74232024264173, -73.73319226076681 40.742411591957264, -73.73306854057182 40.74248682123917, -73.73288363521642 40.74257426801253, -73.73270939661636 40.74263466808033, -73.73256344348194 40.7426772494187, -73.73255432253623 40.74267861502588, -73.73239768697981 40.74270890278439, -73.73234342819059 40.74271934239734, -73.73229796039317 40.74272773214372, -73.73225360699776 40.742734577384766, -73.73219283730126 40.742744465085735, -73.7321347677627 40.742749761925495, -73.73208699250596 40.74275487106301, -73.73202073562574 40.742760484690194, -73.73201289588044 40.74276181181214, -73.73200026115644 40.74276221916017, -73.73198549617197 40.742762695391455, -73.73180595282066 40.74276848285992, -73.73148148820114 40.74276415090882, -73.73145386056322 40.74276048264704, -73.73126871110416 40.742746874505, -73.73108465254596 40.74272642562815)), ((-73.79576782266464 40.786030189586924, -73.79552764647282 40.78608585518278, -73.7951938892744 40.78616061668562, -73.79512450473996 40.786138919096786, -73.79517837859498 40.78605699158611, -73.79517418730892 40.78605726059173, -73.79520919435356 40.78601063079161, -73.79525058345219 40.78596712626063, -73.79529787678467 40.785927249524896, -73.79535052912995 40.78589146246781, -73.79540793026564 40.78586017642955, -73.79546941680731 40.78583375492961, -73.79553428053721 40.78581250197581, -73.79553407558184 40.78581211439563, -73.79553990337071 40.785810947776646, -73.79556799893221 40.78580383321096, -73.79556872815729 40.785805178956416, -73.7957121075493 40.78577648020935, -73.79622844904674 40.78569896226259, -73.79700811224373 40.785618374336615, -73.79789717546379 40.78557542768682, -73.79889622036715 40.78559762937778, -73.79964308431104 40.78565247776971, -73.79989326819897 40.78566800218224, -73.80012762585265 40.78568884309349, -73.80229567569471 40.78585905252369, -73.80230427122284 40.785959135714144, -73.80187816936159 40.785944123804484, -73.80146433515343 40.78591937629913, -73.801023405369 40.785897252323004, -73.80061570116773 40.78587701306897, -73.80014465957252 40.785857546847495, -73.79986075985018 40.78584267133134, -73.79964879881307 40.78583381759751, -73.7989699983429 40.785805397105264, -73.7980917387387 40.78578860093898, -73.79794093532098 40.78579044111493, -73.79754310312083 40.78580905241806, -73.79730804270618 40.78582109140544, -73.79702798331081 40.785845144433466, -73.79681729317018 40.78586835106018, -73.7965043454021 40.78590656107873, -73.79625473622475 40.785943999748085, -73.79602312596646 40.78597663132918, -73.79597281852796 40.78598728978889, -73.79597501417226 40.785984096888214, -73.79576782266464 40.786030189586924)), ((-73.72440186514278 40.73934306142415, -73.72415489726123 40.73909272670729, -73.72381963878105 40.73907598234255, -73.72373733947657 40.73887652148702, -73.72373663387138 40.73887651979439, -73.72313591904896 40.73742168148586, -73.72313489931688 40.73742177899118, -73.72257110283616 40.73608934090995, -73.72257885026083 40.73608957209475, -73.72243967136332 40.73577817277098, -73.72219762435039 40.73519042536337, -73.72193140924641 40.73453619813393, -73.72204330944045 40.73450458654031, -73.72215102919984 40.73463768829194, -73.72221328945474 40.734783965549205, -73.72229643972533 40.73494623401816, -73.72239344025441 40.735137761040264, -73.72246615634039 40.735289376376045, -73.7225493201027 40.73544898816911, -73.72264279539068 40.73564847690539, -73.72272595884428 40.7358080876595, -73.72281247137018 40.73600224555806, -73.7228592028252 40.73609795641092, -73.72286097248151 40.736098009297365, -73.72301325393458 40.73643579579814, -73.72309970186699 40.73664589417097, -73.72319295973159 40.736898519316746, -73.7233174672525 40.73719638554433, -73.72340745486056 40.737395865220506, -73.72340620773554 40.73739598379436, -73.72352852576046 40.737680438587326, -73.72363919626764 40.73794638858137, -73.72375681955765 40.73822032646665, -73.7239024875477 40.738470419264296, -73.72406901497571 40.738744474039166, -73.72411414839675 40.73881100302357, -73.72419058606236 40.738909489586646, -73.72426001693098 40.73901327324122, -73.72432589935067 40.73913033180775, -73.72437437194264 40.739234065218845, -73.72440186514278 40.73934306142415)), ((-73.79245216431897 40.78752266713904, -73.79256782064843 40.787468375090775, -73.79256438324116 40.78746849587492, -73.79291537102839 40.787291908895206, -73.79313612314925 40.787182220590665, -73.79333526114353 40.7870880799213, -73.79335775223781 40.78711421053781, -73.79371117756732 40.78696677480083, -73.79399027335648 40.78684942603547, -73.79405138694023 40.78682263812187, -73.79405056533295 40.7868228212569, -73.79408650536352 40.78680397130041, -73.7941224051605 40.786783183377246, -73.79417158737935 40.78675738805225, -73.79422326869471 40.78672913969431, -73.79422911547665 40.786726461230074, -73.79424156772608 40.786720195246254, -73.79428789411523 40.78669953484698, -73.79431671748232 40.78668633178013, -73.79443194607119 40.78663837934244, -73.79458800271625 40.78658228247168, -73.79468831604999 40.78653892817864, -73.79474508815575 40.78652634661097, -73.79467185452583 40.78674385345354, -73.79467010082836 40.7867485446539, -73.79469375876478 40.78674219772873, -73.79466627041504 40.78682501849249, -73.79464652289943 40.78690910474171, -73.79463461350039 40.78699403881996, -73.79463060160067 40.78707939939984, -73.79463450630756 40.787164763279506, -73.79464631000617 40.78724970538909, -73.79466595241288 40.78733380598412, -73.79468312163681 40.7873885214437, -73.7946875284849 40.787400980555155, -73.79468674108345 40.787400058837946, -73.79471801628274 40.78749972643555, -73.79464131093029 40.78753066525499, -73.79448241382751 40.7875501552673, -73.7942963222939 40.787567398397094, -73.79401243414638 40.78757593690668, -73.79367607840109 40.78758055275996, -73.79342210637877 40.78758009781168, -73.79303078901503 40.78760026400327, -73.79279080802533 40.787628335523245, -73.79256385219809 40.7876568136027, -73.79227508323461 40.7877124713986, -73.79221951488775 40.787727607747804, -73.79217934466725 40.787739844300745, -73.79208785158238 40.787771232022614, -73.79205272597466 40.78774292165884, -73.7921555728036 40.78767774684032, -73.79222241677782 40.78763941317035, -73.79231830138399 40.7875909984314, -73.79245216431897 40.78752266713904)), ((-73.72729216079675 40.69270044219974, -73.72730002888518 40.69269886872942, -73.72730632102225 40.69270049466436, -73.72731027570667 40.69270435194533, -73.72730892633636 40.69273517255409, -73.72730637738051 40.69276308254998, -73.72731981506212 40.69276681911804, -73.72731530286158 40.6928090246766, -73.7273113491845 40.69284599685132, -73.72730651939554 40.69292535339679, -73.72730532849423 40.69300478610252, -73.72730777804868 40.693084204020096, -73.72731386493142 40.693163507184394, -73.72731562653645 40.69321761083145, -73.72731738814797 40.69327171357757, -73.72731914859031 40.693325813619026, -73.72731995714723 40.693350570752955, -73.72732020307355 40.693358131177625, -73.72732091139068 40.693379916367164, -73.72732267301076 40.693434019112104, -73.72732443701466 40.69348811826026, -73.72732619981993 40.69354222190772, -73.72732747903981 40.69358149739362, -73.72732796144865 40.69359632465152, -73.72732972309491 40.693650423792846, -73.72733148472936 40.69370452653579, -73.7273332475497 40.69375862928116, -73.7273350092009 40.693812729321834, -73.7273367708402 40.6938668329641, -73.72733694132758 40.69387201134166, -73.72733762234925 40.6938929517799, -73.72733853248975 40.693920934804986, -73.72734037207258 40.693964370204576, -73.72734077234057 40.69397382568235, -73.72734300864566 40.694026716550866, -73.72734524968665 40.69407960743023, -73.72734748836504 40.69413249830357, -73.7273497294132 40.694185389182145, -73.72735192696295 40.69423734522048, -73.72735420324206 40.694291170017934, -73.72735644548766 40.6943440599976, -73.72735870658408 40.69439754886534, -73.72736092170038 40.69444984173712, -73.72736310746852 40.694501500574894, -73.72736539911777 40.694555621676805, -73.72736763782444 40.6946085134471, -73.72736987535524 40.69466140431365, -73.72737101469748 40.69468831536287, -73.72737211525583 40.69471429518545, -73.72737264706639 40.69472688297207, -73.72737435279736 40.69476718515071, -73.72737659388817 40.694820076024506, -73.72737879257451 40.69487205367314, -73.7273810689854 40.69492585685353, -73.72738260221371 40.694962053165284, -73.72738330890371 40.694978747723326, -73.72738554764247 40.69503163858991, -73.72738619504669 40.69504691829515, -73.7273877863811 40.6950845303566, -73.72739002631742 40.695137419424185, -73.72739226624633 40.695190311192896, -73.72739450382355 40.695243200254076, -73.7273963245813 40.69529675561062, -73.72739737768975 40.695327689962966, -73.72739814770463 40.6953503118729, -73.72739996847565 40.69540386542768, -73.72740179042904 40.695457419885315, -73.72740361000801 40.69551097703853, -73.72740543433723 40.69556453060051, -73.72740725511626 40.69561808505421, -73.72740907589088 40.69567164130855, -73.727410899042 40.69572519576703, -73.72741272100563 40.69577875202338, -73.72741364210539 40.695805804833014, -73.72741408144668 40.69581873099304, -73.72741454061321 40.69583230647268, -73.72741636495998 40.69588586003233, -73.72741818692867 40.695939417187965, -73.72742869329 40.696226507045985, -73.72742938430196 40.69624212274469, -73.72743009662834 40.69625831302361, -73.72743241105898 40.69631065204293, -73.72743358162369 40.69633717413637, -73.72743472431743 40.69636298925803, -73.72743703520223 40.69641532916865, -73.72743934846058 40.69646766818393, -73.72744166171893 40.69652000809942, -73.72744397380141 40.69657234711113, -73.72744628589489 40.696624684321435, -73.72744859916779 40.6966770233352, -73.72745091126116 40.696729362345756, -73.72745322335815 40.696781701355924, -73.72745553545879 40.69683404036566, -73.72745784757042 40.696886377574, -73.72746015967833 40.69693871658298, -73.72746149614765 40.69696894289244, -73.72746247533932 40.69699105559996, -73.72746385375748 40.69702230859763, -73.72746467193379 40.697045026070995, -73.72746375073275 40.69705069534431, -73.72746198050584 40.697056244639434, -73.72745975511488 40.697060838308886, -73.72745744588056 40.697064524058824, -73.72745408989556 40.69706870171364, -73.72744880969285 40.69707384106609, -73.72744293164352 40.697078196453475, -73.72743663665324 40.69708179712059, -73.72742847784633 40.697085187154954, -73.72742171366012 40.69708721260667, -73.72742149095001 40.69708727961799, -73.72741390218336 40.69708870427271, -73.72740535785182 40.69708944317147, -73.72735256238697 40.69707440195349, -73.7273355435911 40.69706921157996, -73.72726894673117 40.69704890202112, -73.72720235346868 40.697028590631135, -73.72713349730029 40.69700758944466, -73.72711204364276 40.69700104585288, -73.72710440938597 40.69683754883023, -73.7271003062697 40.69676294749159, -73.72709924162083 40.696718095626885, -73.72709817697711 40.696673242861436, -73.72709711351428 40.69662839099902, -73.72709604887343 40.69658353823298, -73.727094155759 40.69652950003135, -73.72709226029612 40.69647545822166, -73.72709036483256 40.69642141731205, -73.7270884705479 40.696367378205885, -73.72708657627368 40.69631333729827, -73.72708468198776 40.69625929999233, -73.72708278772706 40.69620525728294, -73.72708089227523 40.69615121727181, -73.72707899918535 40.69609717906697, -73.72707710137705 40.696043138148944, -73.72707520948755 40.695989097244514, -73.72707331286485 40.695935057229015, -73.7270714209778 40.695881017224345, -73.72706952791432 40.69582697631592, -73.72706763129715 40.695772937199706, -73.72706573823987 40.695718896290494, -73.72706384281933 40.69566485537529, -73.72706194857396 40.69561081716398, -73.72706005434273 40.69555677625074, -73.72705815892039 40.69550273803587, -73.72705742271306 40.69548171192007, -73.72705626351588 40.69544869621853, -73.72705601047731 40.69539605950022, -73.72705575745022 40.69534342008007, -73.72705550441614 40.69529078246056, -73.72705525020673 40.69523814303691, -73.72705499834557 40.69518550812104, -73.727054741767 40.69513286959155, -73.72705449228759 40.69508023107855, -73.72705424043498 40.69502759436058, -73.7270539850408 40.694974955832876, -73.72705373319631 40.69492231731319, -73.72705347898233 40.69486967968812, -73.72705322476138 40.69481704386363, -73.72705297291814 40.69476440534291, -73.7270527865246 40.69472612482112, -73.72705271870906 40.69471176681623, -73.72705246568346 40.69465912829201, -73.7270523632174 40.694637917269915, -73.72705221265458 40.694606490667915, -73.7270519584467 40.69455385214019, -73.72705170541867 40.69450121451545, -73.7270502415326 40.69444841552754, -73.72704877646574 40.69439561653649, -73.72704731138646 40.694342821147046, -73.72704584395431 40.69429002305016, -73.72704438244375 40.6942372240664, -73.7270429161957 40.694184426872056, -73.72704144996104 40.69413162697581, -73.7270399860875 40.69407882888582, -73.72703852104058 40.69402602899165, -73.72703705717167 40.69397323090093, -73.72703559211833 40.693920433707525, -73.72703412471219 40.69386763380662, -73.72703368792652 40.693851792673726, -73.72703266320536 40.69381483842194, -73.72704060578316 40.69368933327081, -73.72705369501215 40.69356407806016, -73.72707191617235 40.69343919342257, -73.72709524979352 40.69331480448146, -73.7271236716845 40.69319103364684, -73.7271571588747 40.693067994325645, -73.72719567888177 40.69294581160855, -73.72722501804967 40.69286408536815, -73.72723918977795 40.69282460606048, -73.72728825672084 40.69270359196308, -73.72729216079675 40.69270044219974)), ((-73.7303923674529 40.74452536996209, -73.73031415176516 40.744459210909284, -73.73025662689653 40.74438367551533, -73.73021149387871 40.74430817001988, -73.73015818929574 40.744210652181074, -73.730113171047 40.744106871768864, -73.73007637665889 40.74401253445882, -73.73003140959675 40.74389618659918, -73.72997422933105 40.743735826425166, -73.729921167528 40.743578617759454, -73.7298597943771 40.74343395620332, -73.72977383993891 40.74323896950806, -73.72973286463244 40.74315718979813, -73.72964663163702 40.74303132017802, -73.72957683086783 40.74292748045759, -73.72947818151026 40.7428078644181, -73.7293588526375 40.74269448346547, -73.72921480402647 40.74256533575142, -73.72919426701641 40.74253701231194, -73.72918612022869 40.742508718003755, -73.72918620962143 40.74248672592862, -73.72919452241234 40.74247417884077, -73.72921934348159 40.74246481245018, -73.72924825828191 40.74246488042869, -73.72928955170063 40.74246811847982, -73.73064054305812 40.74304312416411, -73.7306420765104 40.74304307732184, -73.73066203805604 40.74305227319801, -73.73073691602106 40.7430841408692, -73.73073236973978 40.74308466964643, -73.73121105195015 40.743305166698676, -73.73121101392704 40.74331459135876, -73.73119033521854 40.743320826863226, -73.73114905386109 40.743314446739944, -73.73103348432605 40.74329218552321, -73.73093437386869 40.74328567025785, -73.73081042958708 40.74329166439896, -73.7306823023977 40.7433102143572, -73.73052516066858 40.743353830454716, -73.73041336505074 40.743419544771044, -73.73032224923895 40.74347902363622, -73.73024759216537 40.7435542494943, -73.73018530107652 40.74363578713955, -73.73014780696943 40.74371424187031, -73.73013513539344 40.74378332910402, -73.730130749939 40.74384615288628, -73.73013875731351 40.743909004805374, -73.73016735345294 40.74398761437592, -73.73019195984381 40.744031655681134, -73.73022072266703 40.744069422950965, -73.73027828537913 40.744135533707514, -73.73035245988254 40.74417969104833, -73.73043076426436 40.74422385800708, -73.73050091085463 40.74424287166216, -73.73057935634334 40.74425248084056, -73.73067432454047 40.74426212770318, -73.7307775916004 40.74426236913888, -73.73089747135771 40.74424065701998, -73.7310215569177 40.7442001051034, -73.73115809859493 40.74414387361615, -73.73121604254526 40.74411573371223, -73.73126568770316 40.744096999163624, -73.73117838458799 40.74423503016221, -73.73101228142806 40.744451418746316, -73.73083792789913 40.74466464592353, -73.73074673458075 40.744742975330624, -73.73068488748612 40.74471455558758, -73.73061067405807 40.74467982312227, -73.73054474691484 40.74463882713043, -73.73047471547055 40.74459153773065, -73.7303923674529 40.74452536996209)), ((-73.72708419979061 40.70584157969079, -73.72721648800079 40.70583651178423, -73.72721702455335 40.70584737687805, -73.72721953753165 40.70589837183717, -73.72722213699822 40.70595107708027, -73.72723425742625 40.70619843695408, -73.72724623002118 40.706445798269236, -73.72725805003698 40.706693163715975, -73.72726971982391 40.706940536901975, -73.72728123940237 40.70718791242434, -73.72729260521703 40.70743529117508, -73.72730288112722 40.70766187082838, -73.72727131208752 40.70799029419922, -73.72727204930193 40.70799810881851, -73.72727249782162 40.70800706911006, -73.7272729210991 40.70801554666547, -73.72727373587499 40.708042293906644, -73.72727455795503 40.70806928070216, -73.7272766191941 40.7081193641535, -73.72727868162697 40.70816944580627, -73.72728073932215 40.708219529248474, -73.72728280294461 40.70826961090335, -73.72728361243034 40.70828926477053, -73.72728486420343 40.70831969255222, -73.72728692546536 40.708369774200754, -73.72728755939221 40.708385192527466, -73.7272898703156 40.70844135684841, -73.72729025030226 40.708450582629084, -73.72729104681144 40.708469938394394, -73.72729310689932 40.70852002003899, -73.72729516935328 40.70857010258938, -73.72729665581576 40.70862068806349, -73.72729814583796 40.708671271744635, -73.72729963348098 40.70872185902182, -73.72729999564433 40.70873428519168, -73.72730055898049 40.70875336484612, -73.72730112232061 40.70877244359997, -73.72730260997551 40.70882302907547, -73.72730287415878 40.708869819581835, -73.72730239793503 40.70889019171438, -73.72730209047377 40.7089034447718, -73.72729979931502 40.7089370321709, -73.72729599849394 40.7089705376485, -73.72729069288545 40.709003926095995, -73.7272838944979 40.70903715431689, -73.72727560346911 40.70907018809163, -73.72726583534286 40.70910298783402, -73.72725459974627 40.7091355139439, -73.72724190866938 40.709167727727106, -73.7272277764472 40.709199595897964, -73.72721222219974 40.70923107257509, -73.72719526142714 40.70926212897807, -73.72717691559068 40.70929272553456, -73.72715720849642 40.70932282808068, -73.7271479865827 40.709335781748294, -73.7271361568724 40.70935239703275, -73.72711379159949 40.70938140454727, -73.7271017660479 40.70939584551978, -73.7270623332328 40.709381374401694, -73.72700530030036 40.70872590798775, -73.72693838260436 40.70758426571493, -73.72686783316715 40.705843639261666, -73.72689654285065 40.70584339400244, -73.72695374802221 40.70584290655643, -73.72697911942662 40.70584268937844, -73.72701541448872 40.70584238103457, -73.72707707978202 40.705841852775286, -73.72708419979061 40.70584157969079)), ((-73.75641819860864 40.76099869904004, -73.75647468087703 40.76099340819812, -73.75653155269251 40.76099494310195, -73.75658739896735 40.76100326564121, -73.75667176825668 40.761015749315575, -73.75675011168265 40.76103313787889, -73.75697072153697 40.761091297226905, -73.75709642203093 40.76113530900908, -73.75720119688992 40.76117679295241, -73.75729387016024 40.76122977600626, -73.75736998310977 40.7612776290345, -73.75745199449585 40.76133803940654, -73.75750276853906 40.76137635124351, -73.75755413386973 40.76143574069004, -73.75758259167831 40.76148521234556, -73.75760366369197 40.76151658445395, -73.75762929275636 40.76158381536523, -73.75765105310464 40.76165549474523, -73.7576528783663 40.76172834156817, -73.75764974816208 40.761782712151444, -73.75763258119586 40.761850806661215, -73.75759205891666 40.76191675024188, -73.75754315982893 40.76196090009777, -73.75747531512674 40.76200991151503, -73.75742726071636 40.76202891191553, -73.75735336662622 40.76205508625148, -73.75701450561469 40.76211252953847, -73.75616481982392 40.7613798658522, -73.75615426921603 40.761366163003785, -73.75613797328988 40.76132470424269, -73.75613046192788 40.76128181065508, -73.75613192423089 40.76123855424747, -73.75614232189695 40.76119601104551, -73.75616139757925 40.7611552431016, -73.75618867382272 40.761117266074564, -73.75622347209357 40.761083027658245, -73.75626492472547 40.76105337969178, -73.75631199747798 40.76102906289944, -73.75636351686073 40.76101068353612, -73.75641819860864 40.76099869904004)), ((-73.79599678084142 40.78620975478797, -73.79611207280283 40.78618880238178, -73.79632850634135 40.78615176915538, -73.79651200522508 40.786126601844, -73.79671661581739 40.78610117701653, -73.79692730672987 40.78607797057472, -73.79707174053834 40.786060158182664, -73.79722536745275 40.78604911286017, -73.7974241382189 40.7860329300764, -73.79756584640822 40.786028908889165, -73.79774661795022 40.78601753143694, -73.79791245438423 40.786013215376656, -73.79805421123383 40.78601148545584, -73.79805467938068 40.78601377265461, -73.7983649160529 40.786009987138065, -73.79884491013783 40.78602476482415, -73.79911052000666 40.7860306941758, -73.79945177400437 40.786047164393075, -73.79998012279992 40.78606593327182, -73.79997949487215 40.78606672552561, -73.80023065170704 40.786072043683674, -73.80068676007379 40.786098571587935, -73.80100675647917 40.786108417753475, -73.80145347757603 40.78611900551248, -73.80144218963021 40.78615583286467, -73.80116485497037 40.78616610402547, -73.80079406979661 40.7861798096379, -73.80040226904309 40.78619835749077, -73.8000497253087 40.786218717303804, -73.79985237523094 40.786226993458314, -73.79960373077823 40.786242511092695, -73.79933549135403 40.78625495937777, -73.7991273806803 40.78625750095965, -73.79899447894574 40.78624995174867, -73.79884956122032 40.786244841588065, -73.79868941717403 40.78623303822206, -73.79856853038146 40.786223049330815, -73.79844764481255 40.78621305941434, -73.79828151785766 40.78620362144649, -73.7981395668586 40.78619618148037, -73.7979977878872 40.78619296860431, -73.79749096188918 40.786197215613214, -73.79728897934615 40.786204264459265, -73.7970601440687 40.78622539997278, -73.79680109740508 40.78624460962196, -73.79659959907205 40.78627458313272, -73.79637698864732 40.78630481255598, -73.79613661850053 40.78635131014984, -73.79583612092924 40.78640771163905, -73.7956198796848 40.786453914109714, -73.79538884744909 40.786514054023975, -73.79520607181746 40.786573606560374, -73.79505613590594 40.786616707378464, -73.79503804301689 40.78662223491149, -73.79501897307772 40.78662533024495, -73.79499948676136 40.78662590252421, -73.79498015991537 40.78662393476344, -73.7949615598639 40.786619484703806, -73.79494423356252 40.78661268389178, -73.79499446405565 40.78645176412283, -73.7953103031043 40.786365961818795, -73.79565541476826 40.78627920919634, -73.79599678084142 40.78620975478797)), ((-73.75520870319066 40.76135323273499, -73.75517139323462 40.76130635495044, -73.75500827195582 40.761158319455056, -73.75498010444483 40.761135443378635, -73.75505523069792 40.761119742487836, -73.7557979468254 40.76153180771025, -73.75595443689028 40.761625036621055, -73.75607839883747 40.7616998549048, -73.75668705017198 40.762168050821664, -73.75602223324634 40.76230815332169, -73.75544624548031 40.762429532621695, -73.75490479387749 40.762543623573244, -73.75501210402692 40.762431210894825, -73.75511612385709 40.76232682185061, -73.75516712028261 40.762258726672464, -73.75520910130649 40.76219390997547, -73.75525147391635 40.762112105112664, -73.75528294008728 40.76203575305528, -73.75530277941401 40.76193626745943, -73.75531582645806 40.76186325767468, -73.7553214181134 40.761745777578724, -73.75531624625481 40.761661941911335, -73.75530254287237 40.76158319039989, -73.75528176256155 40.761514939985304, -73.7552624344836 40.76145210830629, -73.755238405387 40.76139940905731, -73.75520870319066 40.76135323273499)), ((-73.7307688308915 40.743363825973674, -73.73092174125392 40.74334533292234, -73.73111994968687 40.743361504342424, -73.73134696970044 40.74340287589442, -73.73168493797415 40.74358902403666, -73.73149826053147 40.74378651500421, -73.73134479071659 40.74394324135669, -73.7311500660609 40.74408730457857, -73.73099698915406 40.74414663932036, -73.73084402620479 40.74417769898135, -73.73072418463947 40.74418998548562, -73.73059613310372 40.74418968603097, -73.7304641031278 40.744151677231365, -73.73036518217104 40.74409803638229, -73.73028697854366 40.74402873635164, -73.73023367407012 40.7439312194444, -73.73022581926183 40.74383066709495, -73.73023026823164 40.7437521349434, -73.73025528161546 40.74369564323697, -73.73030099809888 40.74362663337507, -73.73035079573317 40.743570199681464, -73.73042125822855 40.74351067245399, -73.73052062311947 40.743454354695324, -73.73064064122688 40.74339808425484, -73.7307688308915 40.743363825973674)), ((-73.75663682583009 40.7608655392083, -73.75653984941738 40.76085576280795, -73.75644225306893 40.76085067756259, -73.75634442869276 40.760850304110754, -73.7579103338898 40.760523012671406, -73.75793941226112 40.76057245223097, -73.75830553873628 40.76189366093065, -73.75811354280027 40.76192620755437, -73.75808229556714 40.761913843707305, -73.75806573370079 40.761908714755144, -73.75803697417413 40.76189585543758, -73.75799988458073 40.761870816355895, -73.75797102678615 40.76183872737059, -73.75793671803424 40.7617863141688, -73.7579151023881 40.7617434793166, -73.75788223207992 40.761686994322176, -73.75786844990527 40.761654492141595, -73.75785119853265 40.76160905587654, -73.75782170048122 40.76154627439633, -73.7577917070566 40.76148164492462, -73.7577533848967 40.76140483657195, -73.75770975572344 40.76133654935678, -73.75766230581401 40.76128232542423, -73.75759978177422 40.76122851550653, -73.75754067906497 40.7611780239226, -73.75747433436105 40.761138278132435, -73.75737045447043 40.76108125985837, -73.75726662261958 40.76103385631476, -73.7571584267403 40.7609890549511, -73.75702350272688 40.760948397985544, -73.75691490855613 40.76092097805802, -73.75685854174532 40.76090634652009, -73.75683601633072 40.76090049790444, -73.7568273657663 40.76089898930426, -73.75673279283609 40.7608799672209, -73.75663682583009 40.7608655392083)), ((-73.72904474847664 40.71245781562517, -73.72900076885634 40.712398264608055, -73.72897690970788 40.71237346679099, -73.7286218766239 40.71162712824038, -73.72855660238572 40.71151811558161, -73.72857440559783 40.71152573629455, -73.72932635115593 40.71175811518273, -73.72964272261392 40.71184387804834, -73.72969895361283 40.71187680685058, -73.72975019277538 40.711914155340594, -73.72979584305077 40.71195548807533, -73.72983537146708 40.71200032563714, -73.7298683197898 40.71204814285732, -73.72989430209333 40.71209838411875, -73.72991301659223 40.71215046428387, -73.72992424442916 40.7122037758957, -73.72992785556032 40.712257697296124, -73.72992336762614 40.71230655501066, -73.72991038144191 40.71235452378963, -73.72988912529378 40.712400752278796, -73.72985997882985 40.71244441919437, -73.72982345997744 40.71248474950215, -73.72978021543705 40.71252102430128, -73.72973101586499 40.71255260152542, -73.72967673337368 40.71257891949257, -73.72961833319637 40.71259950949327, -73.72955685352409 40.71261400655025, -73.72949338655155 40.712622153876715, -73.72942905834617 40.7126238055311, -73.7293407228566 40.71261639375773, -73.72931096515572 40.71260938532236, -73.72926347628079 40.71259820091655, -73.7291910171424 40.71256681233387, -73.72911703423456 40.71252221136685, -73.72904784860471 40.71246201301789, -73.72904474847664 40.71245781562517)), ((-73.72690561788943 40.69200643881339, -73.7269036102897 40.691952692072604, -73.7269016015212 40.691898942627056, -73.72689959038985 40.69184519317552, -73.72689758516228 40.691791447339604, -73.72689557639983 40.69173769879341, -73.72689356881631 40.69168395205058, -73.7268928607321 40.69166503680295, -73.72689155769417 40.69163020349795, -73.7269104036008 40.691625117072455, -73.72691596953935 40.69163446414328, -73.72692195136509 40.691643658212264, -73.72692834792834 40.691652691171825, -73.72693514982008 40.69166154949188, -73.7269423511472 40.6916702277553, -73.72694993779044 40.69167870701761, -73.72695790384566 40.69168698456312, -73.72696624106474 40.69169505226765, -73.72697493887748 40.69170289119505, -73.72698398428132 40.691710498612935, -73.72699336903172 40.69171786549644, -73.72700308134226 40.691724981011305, -73.72701311059123 40.69173183882869, -73.72702344499213 40.69173842811431, -73.72703407037032 40.69174474343133, -73.72704497730182 40.69175077485167, -73.72705614805523 40.69175651873112, -73.72706757321028 40.691761964241046, -73.7270792373907 40.69176711044437, -73.72709112881735 40.69177194470587, -73.72710323330804 40.69177646338973, -73.72711553312772 40.691780663752375, -73.72712801647509 40.69178453856154, -73.72714066561879 40.69178808417311, -73.72715346993316 40.69179129515869, -73.72716641049634 40.69179416967233, -73.72717947786576 40.69179670228852, -73.7271926448344 40.69179889204222, -73.72720590905803 40.691800733524694, -73.72721924806191 40.69180222578217, -73.72723264410354 40.69180336787198, -73.72724608535569 40.69180415886564, -73.72725955408323 40.6918045960195, -73.72727303607817 40.69180468200145, -73.72728692422484 40.69180439162747, -73.72729996774638 40.69180378947246, -73.72730679495123 40.69180329235508, -73.72731338902203 40.69180281179472, -73.72732675611101 40.691801487287904, -73.72734005602156 40.69179981051802, -73.72735327454184 40.6917977850536, -73.72736638798837 40.69179541624158, -73.72737261509808 40.69179411803922, -73.72737939162492 40.69179270497134, -73.72739226414883 40.69178965299345, -73.72740498897487 40.691786265671865, -73.72741755188036 40.691782549276475, -73.72742994222486 40.691778501981105, -73.72744214103875 40.691774133646604, -73.72745413292729 40.691769447838674, -73.72746590839638 40.691764451739, -73.72747744969625 40.69175914620612, -73.72748874375789 40.69175354471691, -73.72749977875054 40.69174764724346, -73.72751053568996 40.69174146724863, -73.72752101219882 40.69173500742849, -73.72753118694517 40.691728276737685, -73.72754105398053 40.69172128326691, -73.72755059552584 40.691714035078796, -73.72755980562891 40.69170654116454, -73.72756866887316 40.69169881049288, -73.72758509387079 40.69168482201471, -73.72760088171812 40.69167041328549, -73.72761600867672 40.69165560316016, -73.72763046404401 40.691640405121376, -73.7276442252537 40.691624840728366, -73.72765727568063 40.691608925250925, -73.72766960695914 40.69159267938136, -73.72768193232974 40.69157498186241, -73.7276920384025 40.691559274637356, -73.72769641659643 40.69155183051394, -73.72770210884816 40.691542150813284, -73.72771140894442 40.69152477752328, -73.72771992206634 40.691507170037106, -73.72772763392585 40.69148935083402, -73.72773454206916 40.69147134152074, -73.72774063458533 40.6914531618807, -73.72774590664716 40.69143483531602, -73.72775035106869 40.69141638342225, -73.72775395949563 40.69139782419, -73.72775673419554 40.691379181938764, -73.72775866798244 40.69136047826395, -73.72775975722342 40.69134173386898, -73.72776000417488 40.691322975774675, -73.7277594064053 40.69130422018462, -73.72775796618959 40.69128548961713, -73.72775568223872 40.69126681018411, -73.72775256157823 40.6912481999125, -73.72774860293384 40.691229681312116, -73.72774381211478 40.69121128051165, -73.72773820090096 40.69119301014606, -73.72773176917151 40.69117489993208, -73.72772452395563 40.69115696699606, -73.72771647935853 40.691139233884066, -73.72770763884907 40.691121720415545, -73.72769801653621 40.69110444823612, -73.72768762181126 40.69108743537825, -73.72767527940705 40.691069062631655, -73.727664569187 40.691054276004685, -73.72765194071766 40.691038165578874, -73.72763859156854 40.69102239384165, -73.72762454058784 40.69100698064874, -73.72760980427225 40.69099194224822, -73.72759440029787 40.69097729579148, -73.72757834396369 40.6909630611259, -73.72756166005856 40.69094925181761, -73.72754436506801 40.69093588681629, -73.72752369687389 40.69092317480555, -73.72751637063205 40.69092190483924, -73.72751050755912 40.69091838704324, -73.72750740934163 40.69091254345344, -73.72750834348263 40.69090629157142, -73.72751206370636 40.690902072450626, -73.7275177166402 40.69089940139283, -73.72752326948688 40.690898640995876, -73.72754684873784 40.690901619001124, -73.72757336645118 40.69090524062353, -73.72758792299588 40.690907228304106, -73.72761443599622 40.69091084630383, -73.72765258620169 40.69091605243503, -73.72771725179801 40.690924874734165, -73.72778191503431 40.6909336996929, -73.72784657948546 40.69094252101605, -73.72791124512946 40.690951344106686, -73.72797590723407 40.69096016895359, -73.728029730698 40.69096740665248, -73.7280516947385 40.69097047709231, -73.72805820559886 40.69097210260314, -73.72806299325792 40.690973890637416, -73.72806744665465 40.69097612543885, -73.72807206364104 40.690979150380414, -73.72807514366033 40.6909819267494, -73.72807681863183 40.69098343727289, -73.72808052177378 40.690988040462955, -73.72808177450801 40.69099039287298, -73.728082814737 40.69099234585171, -73.72808458295721 40.69099797015913, -73.72808505162166 40.69100373007559, -73.72808450504591 40.69100837185212, -73.7280830563525 40.69101287641946, -73.72807978376676 40.691018735558096, -73.72807370566832 40.691028770971, -73.7280522524534 40.69106723810993, -73.72802779591957 40.691113411979394, -73.72800334052025 40.69115958944823, -73.72799314799609 40.69117883102766, -73.72797887919383 40.691205761494594, -73.72795442372679 40.69125193895251, -73.72793403382146 40.69129043739876, -73.72792996705013 40.69129811460113, -73.72790551270573 40.691344290249894, -73.72788105596868 40.6913904640866, -73.72785659919782 40.691436637917825, -73.72783214119526 40.69148281534281, -73.72780624742602 40.69153234379388, -73.72778035242791 40.69158187403702, -73.72775445739137 40.69163140427398, -73.72772856232366 40.69168093270386, -73.72770266722117 40.69173046022706, -73.7276767720729 40.69177998954511, -73.72765087570673 40.69182951795374, -73.72762498047778 40.691879048160075, -73.72759908521405 40.69192857745978, -73.72757318990821 40.69197810765383, -73.72754729457856 40.692027634239686, -73.7275213991994 40.69207716352098, -73.72749550378178 40.69212669279608, -73.72746960832205 40.692176222965585, -73.72738850000228 40.692318791677295, -73.72731393487965 40.692463414605236, -73.72724599888257 40.692609918165836, -73.72721650568539 40.69268132322011, -73.72718477794201 40.69275812877448, -73.7271303402858 40.69290786289795, -73.72712679941372 40.69291910376405, -73.72706315024611 40.69313233219495, -73.72705208676949 40.6931737333513, -73.72704207938153 40.693211188243225, -73.72700739558711 40.6933666397088, -73.72700473788143 40.69337050652899, -73.7269995330674 40.69337434479412, -73.72699100682094 40.69337713868454, -73.72698246332651 40.69337721026983, -73.72697600955121 40.693375461463674, -73.72697162878949 40.69337308271059, -73.7269675523331 40.69332008390461, -73.7269672562849 40.693314372121975, -73.72696485357812 40.69326810324959, -73.72696215482 40.69321612439517, -73.72695940369567 40.693163066596455, -73.72695675969366 40.69311216398922, -73.72695406214235 40.693060182434884, -73.72695136221797 40.69300820357602, -73.72694866467502 40.692956222020904, -73.72694596713266 40.69290424136585, -73.72694326958705 40.69285226251141, -73.72694057086633 40.69280028275329, -73.72693787451958 40.692748302099794, -73.72693517699773 40.692696320542645, -73.72693247710652 40.69264434078047, -73.72692977840994 40.692592359219695, -73.72692708207639 40.69254037946513, -73.72692438338822 40.69248839790355, -73.72692168468583 40.6924364208441, -73.72691967707131 40.69238267140494, -73.72691766709386 40.692328921959806, -73.72691565829163 40.69227517521857, -73.72691365186246 40.692221427582055, -73.72691164188365 40.69216768083725, -73.72690963427794 40.692113933197135, -73.72690762430561 40.6920601864515, -73.72690561788943 40.69200643881339)), ((-73.80433902931179 40.78649509293276, -73.80389331207259 40.78646045122058, -73.80256933682676 40.786449871881004, -73.80255242384074 40.786216760213364, -73.80279119911684 40.7862138371846, -73.80295501449037 40.786223136826976, -73.80295497208675 40.78622505482665, -73.80383644947929 40.78628037444725, -73.80459264385145 40.786334578967576, -73.80520605073646 40.78638259574935, -73.8058680455318 40.786445576439014, -73.80586911270821 40.78644933243484, -73.80627840507233 40.786489427169045, -73.80633972315218 40.786702926982045, -73.80433902931179 40.78649509293276)), ((-73.79449765573248 40.78605898646367, -73.79457243711198 40.78604209216257, -73.79460981213572 40.78603564633518, -73.79464804313842 40.78603361628957, -73.79468623312492 40.78603604995463, -73.79472348660676 40.78604289080458, -73.79472353671301 40.786042778330895, -73.79472541033932 40.78604337239854, -73.79474668479058 40.78604839727887, -73.79476659240358 40.78605599606202, -73.79478460067314 40.78606596428664, -73.79480022586172 40.78607803454325, -73.79481304601521 40.78609188190025, -73.7948227186977 40.78610713564199, -73.79482898452929 40.78612338467779, -73.79483167306013 40.786140193761526, -73.79483071341112 40.78615711071454, -73.79482613185775 40.78617368172968, -73.7948170604311 40.78620013858386, -73.79481483006613 40.78620458220018, -73.7948144189772 40.786211880049805, -73.79483995630264 40.78623572041987, -73.79484170329907 40.78625934103703, -73.79468825552239 40.78630459813562, -73.7945337895865 40.78635262226325, -73.7944748233032 40.78637176718655, -73.79441131285861 40.78639378918695, -73.79435540123472 40.78641317813173, -73.79434821273192 40.786415670505505, -73.79428429302257 40.78643783488565, -73.79422078363389 40.78645985768342, -73.79415727301566 40.78648188134452, -73.79409938192921 40.786503817756184, -73.79404148961989 40.786525754136534, -73.7939835996363 40.786547692292956, -73.79392570725068 40.78656962861502, -73.79386697859375 40.78658767143591, -73.79380824753272 40.78660571512306, -73.7937495188121 40.786623757883966, -73.79369078887495 40.78664180061276, -73.79363205771837 40.78665984421, -73.79357070589093 40.78668016405873, -73.7935093528412 40.786700483872636, -73.79344800093887 40.7867208036559, -73.79338665018098 40.7867411243091, -73.793325295837 40.78676144312217, -73.79327260267097 40.78677889672812, -73.79326394381668 40.78678176460828, -73.7932025917645 40.786802084260685, -73.79314123730538 40.78682240387608, -73.7930798851783 40.786842723463025, -73.7930197634786 40.786867016447665, -73.79295964054742 40.786891310299225, -73.79289951994751 40.786915602322566, -73.79283925102116 40.7869399543817, -73.79277927624094 40.78696418807169, -73.79272398917225 40.786987016370944, -73.79266870443797 40.78700984374731, -73.79261341729065 40.78703267289382, -73.7925581324777 40.78705550111748, -73.7925028464449 40.787078328411944, -73.79244755799911 40.787101157476556, -73.79238923843683 40.78712450784887, -73.7923309176433 40.78714785999052, -73.79227259681166 40.787171211202036, -73.79221427474869 40.78719456418284, -73.79215595383803 40.78721791443464, -73.79211246647245 40.78723169564947, -73.79208337971846 40.787238730141446, -73.79207776352744 40.78723885148289, -73.79207234914034 40.78723770888122, -73.79206615261272 40.78723397231854, -73.79204344386049 40.7872037095468, -73.79203661268875 40.78719377997522, -73.79203516008951 40.78718773407498, -73.79203614427371 40.787182918157136, -73.79203942104402 40.78717808386356, -73.79204416925718 40.78717440036695, -73.79205166777703 40.787170949659995, -73.79210147405142 40.78714902040465, -73.79215739496908 40.787124406948095, -73.79221331703012 40.78709979346649, -73.79226923904982 40.78707517995764, -73.79232515984062 40.78705056731991, -73.79238108059289 40.78702595375447, -73.79243749156126 40.78700141578656, -73.79253072560044 40.786959578775175, -73.7926222458758 40.78691561251574, -73.79271197406746 40.786869555593086, -73.79279982117663 40.786821451976, -73.79288570886528 40.786771346553216, -73.79296955760877 40.786719285111815, -73.79305129262228 40.786665313447685, -73.79310413953938 40.786629254014066, -73.79315720082968 40.786592816729424, -73.79321026324659 40.78655637942227, -73.79323816382276 40.786537077659155, -73.79326385005753 40.78651930637518, -73.79330283884575 40.78649310321579, -73.79334288977564 40.78646784207345, -73.79338396012682 40.786443545383136, -73.7934573050462 40.78640490386953, -73.79353236056026 40.78636820685946, -73.79360903767139 40.786333501016365, -73.79368724503857 40.7863008248953, -73.79376688894605 40.78627021884803, -73.79384787331506 40.78624172142145, -73.79393010327429 40.78621536396069, -73.79401348158366 40.786191177806934, -73.79409790745754 40.786169191593764, -73.79431850488761 40.78610850704612, -73.79438195894947 40.786090086109645, -73.79441863969768 40.78607943825624, -73.79441781608958 40.78607912161079, -73.79442543914624 40.78607746477463, -73.79444541415812 40.7860716660408, -73.79449765573248 40.78605898646367)), ((-73.75488688773572 40.761154716768985, -73.7548907077024 40.76115391714078, -73.75495656052186 40.761202048906455, -73.75501651884075 40.761254444611914, -73.75507010808745 40.76131068992409, -73.75511690236415 40.76137033729454, -73.75515653152301 40.76143291407859, -73.75518867997583 40.76149792433359, -73.75521309379057 40.76156485153513, -73.7552132199836 40.76156596212956, -73.75523029663553 40.7616252563396, -73.75523664185125 40.76168078343491, -73.75524673103453 40.761756203500035, -73.75524596255244 40.761826746758906, -73.7552427842777 40.761895274063136, -73.75523405094776 40.7619549348701, -73.75522236482512 40.761994363994376, -73.75520549153754 40.76204212079863, -73.75518721201587 40.762093857558305, -73.75516558800727 40.76214235168226, -73.75513548069524 40.762205326848786, -73.75508404777102 40.7622810132674, -73.7550330040826 40.76233971240909, -73.7549677577611 40.76241001678316, -73.75491002732191 40.76246222879689, -73.75486882582005 40.762493069079596, -73.75483987566784 40.7625098956012, -73.75483827210327 40.7624976632921, -73.75483824330726 40.7624974426064, -73.75450789063125 40.76137697731795, -73.75450788244402 40.76137694938478, -73.75450787308579 40.76137691784707, -73.75447005307551 40.761242037500985, -73.75480964502015 40.76117106771494, -73.75488688773572 40.761154716768985)), ((-73.72875565864138 40.71130981837202, -73.72874492590476 40.711306104572664, -73.72869450851518 40.71128866255194, -73.72863166769696 40.711265669265046, -73.72863016213586 40.711260788526204, -73.72863430940555 40.71125483779333, -73.72864295871148 40.711252883352515, -73.72866729318466 40.711257011940816, -73.72867678955679 40.711258320259155, -73.72868766621119 40.71125981823646, -73.72871052695307 40.71126229449913, -73.72872874065123 40.71126383587806, -73.7287493864545 40.71126504439136, -73.7287700758691 40.7112657144956, -73.7287907828448 40.71126584973158, -73.72881148372765 40.71126544644147, -73.72883215603228 40.711264504572284, -73.7288527725104 40.711263031264, -73.7288733118712 40.71126102376496, -73.72889374807535 40.71125848291438, -73.72891405861202 40.71125541496292, -73.72893422099229 40.71125182075821, -73.72895421033475 40.71124770744585, -73.72896512714277 40.71124515227312, -73.72897400534124 40.7112430740753, -73.72898104000944 40.711241227471554, -73.72899357992135 40.71123793409297, -73.72901291395678 40.711232287451566, -73.72903198256257 40.7112261421973, -73.72905076558006 40.71121950818848, -73.72906923458886 40.71121238986102, -73.72908738364228 40.71120479440513, -73.72910517718651 40.71119673434453, -73.72912259979675 40.71118821954875, -73.7291396301458 40.71117925627134, -73.72915625043476 40.71116985617737, -73.72917243931819 40.71116003002294, -73.72918817899362 40.71114979037356, -73.72920345048615 40.711139147090385, -73.72921823716958 40.71112811454286, -73.72923252005806 40.71111670529361, -73.72924628370873 40.7111049337148, -73.72925951268991 40.71109281147701, -73.72927219038634 40.71108035024803, -73.72928430251679 40.71106756980581, -73.72929583601274 40.71105448272698, -73.72930911592702 40.71103943032709, -73.72932170492827 40.71102403500588, -73.72933358281094 40.71100831832838, -73.72934474240931 40.71099229648727, -73.72935516706451 40.71097599195647, -73.72936484249938 40.71095942361342, -73.72937376035736 40.7109426094489, -73.7293819075374 40.71092557014422, -73.72938927566479 40.7109083281927, -73.72939585401632 40.71089090157957, -73.72939885311386 40.71088178551098, -73.72940164012701 40.7108733146131, -73.72940661972711 40.71085558436962, -73.72941079155345 40.710837730657616, -73.72941415076707 40.71081977958073, -73.7294149903313 40.71081382014413, -73.72941575557672 40.710808385533106, -73.72941669018408 40.71080175183399, -73.72941770512998 40.71079106960779, -73.72941840734691 40.71078366992459, -73.72941930456096 40.71076554916671, -73.72941937460946 40.710747418359865, -73.72941862214995 40.71072929642582, -73.72941704709531 40.7107112049768, -73.72941464936223 40.71069316472427, -73.72941143240648 40.71067519908986, -73.72940740323766 40.710657330602736, -73.72940256178346 40.71063957727303, -73.72939691622939 40.71062196343369, -73.72939047124038 40.710604506205435, -73.72938324328577 40.71058722994077, -73.7293752287428 40.71057015264122, -73.72936644288654 40.71055330135809, -73.72935689868733 40.71053668782839, -73.72934660433798 40.71052033458402, -73.7293355692074 40.71050426596073, -73.72932381573663 40.710488492817305, -73.72931366603716 40.7104735330069, -73.72930283476269 40.71045884895152, -73.72929133956943 40.710444464105834, -73.7292882677062 40.71044090254854, -73.72927918988458 40.71043038839754, -73.72926640454403 40.71041664618458, -73.72925299887721 40.71040325101053, -73.7292389870229 40.71039021821721, -73.72922438665526 40.71037756675679, -73.72920921665394 40.7103653101812, -73.72919349234809 40.710353462034, -73.72917724089004 40.71034203858805, -73.72916047051591 40.710331051569334, -73.72914320956494 40.710320516352965, -73.72912547217912 40.71031044738028, -73.72910729146406 40.71030085193304, -73.7290886791877 40.71029174624809, -73.72906966253112 40.71028313939429, -73.72905026157527 40.71027504042388, -73.72903050230322 40.71026746200503, -73.72901040834581 40.710260413198334, -73.72899000216889 40.71025389855914, -73.72896931093156 40.71024793255938, -73.7289483606679 40.71024251526029, -73.72892717381447 40.71023765842117, -73.72890827606875 40.71023386687537, -73.72885952517048 40.710226150809326, -73.72884059266005 40.71022392516645, -73.72881862138938 40.71022193640155, -73.72879656963828 40.710220531877226, -73.72877447053386 40.710219713472505, -73.72875234182636 40.710219481229174, -73.72874479240112 40.71021960211937, -73.7287302225636 40.71021983613975, -73.72870812932706 40.7102207746413, -73.72868609404581 40.710222302212124, -73.72866414042379 40.71022440990303, -73.72864229803419 40.7102271004853, -73.72862059057368 40.710230366810706, -73.72859904763025 40.71023420804863, -73.72857768935032 40.71023861704253, -73.72855655124616 40.710243591174645, -73.72853565228824 40.710249121484765, -73.72851501853647 40.7102552017308, -73.72849467485999 40.710261827469026, -73.72847464734073 40.71026898705438, -73.72845496086254 40.71027667244112, -73.72843563793535 40.71028487737892, -73.72841670464108 40.710293590222705, -73.72839817759473 40.71030279930533, -73.72838313026517 40.71031246415152, -73.72836488815116 40.71032493106459, -73.72834900414898 40.71033662729537, -73.72833364747451 40.710348728199264, -73.7283188383152 40.710361216714276, -73.7283045956458 40.71037408297981, -73.72829093848884 40.71038730542856, -73.72827787398153 40.71040087507244, -73.7282654223114 40.71041477484947, -73.72825359774566 40.71042898858428, -73.7282424110231 40.71044349469009, -73.728231879928 40.71045828510441, -73.72822201282527 40.71047334003577, -73.72821282046122 40.71048863609641, -73.72820431589034 40.710504164312106, -73.72819650985542 40.71051990219554, -73.72818940953803 40.71053582995239, -73.72818302209039 40.710551934992544, -73.72817735471256 40.71056819301915, -73.7281724157402 40.710584591444814, -73.72816821238071 40.710601104171715, -73.72816474469342 40.7106177167918, -73.72816202103603 40.71063441131459, -73.72816004268802 40.710651164329754, -73.72815881208655 40.71066795873329, -73.72815832930557 40.71068477651509, -73.72815859561723 40.710701596065846, -73.72813642581445 40.710654240548955, -73.72811425368003 40.710606884121376, -73.72809208393657 40.71055952949586, -73.72806991541535 40.710512173067556, -73.72804774219199 40.71046481662352, -73.72798037703917 40.7102965348696, -73.72791930292733 40.71012686854047, -73.72791273006565 40.71010634467066, -73.72789323697282 40.71004549040177, -73.72788752412838 40.71002765660125, -73.72787952686274 40.71000268892139, -73.72786455830898 40.70995595371489, -73.72784068322565 40.70987103181075, -73.72781619227815 40.70978392829686, -73.72777424564342 40.70961093016978, -73.7277574366669 40.7095318431835, -73.72774247498577 40.709461452336875, -73.72771733798511 40.70931124185484, -73.72769886110511 40.70916047259, -73.72769362095362 40.709093296155814, -73.7276870708159 40.70900931660684, -73.72769739374438 40.709057624860286, -73.72770771549341 40.70910593581118, -73.72771803844812 40.70915424496265, -73.72772836259384 40.70920255591667, -73.72773868440242 40.7092508632619, -73.7277490062113 40.70929917420788, -73.72776090170416 40.709338271199286, -73.7277727960276 40.70937736818642, -73.72779973376994 40.70945496985965, -73.72782120451535 40.70950991424111, -73.72784493170269 40.709566676690216, -73.7278629608034 40.70960809799228, -73.7278991891847 40.709683475717625, -73.72793844955964 40.70975797088733, -73.72794746723893 40.70977473818176, -73.72795722435825 40.70979126138225, -73.72796771626167 40.70980752156677, -73.72797892525394 40.70982350518557, -73.72799084079521 40.709839185198106, -73.72800344872189 40.70985455256553, -73.72801333536981 40.709865729707865, -73.72801673967018 40.70986958205107, -73.72803068884424 40.70988426008819, -73.7280452868397 40.70989857134564, -73.72806051363096 40.70991249326305, -73.72807635504323 40.70992601950296, -73.72809278870245 40.70993912299694, -73.72810979689089 40.70995179559817, -73.7281273630962 40.70996402375972, -73.72814546490008 40.70997579121914, -73.72816407988046 40.70998708261438, -73.7281831891434 40.70999788799502, -73.72820276789635 40.71000819289394, -73.72822279370602 40.71001798465077, -73.72824324767839 40.71002725331501, -73.72826410262816 40.71003599071759, -73.7282853349533 40.71004418059338, -73.72830691862623 40.71005182107967, -73.72832883595075 40.71005889862676, -73.72839474141409 40.710076158531784, -73.7284606457172 40.710093421097774, -73.7285265547916 40.71011068273668, -73.72857366902429 40.71012302373334, -73.72859691466279 40.71012911019239, -73.72865836712234 40.71014520678767, -73.72868961351294 40.71015338957521, -73.72872427157658 40.710162465600575, -73.72875451670237 40.710170387563025, -73.72879017723007 40.71017972888103, -73.72885608292502 40.71019699032269, -73.72892198865411 40.7102142517266, -73.72898481241818 40.71023510789758, -73.72904763503817 40.71025596403143, -73.72907797580294 40.710268326574116, -73.72910774298474 40.71028147480925, -73.72913689880708 40.71029538613551, -73.72916541726529 40.71031005328807, -73.72919325112285 40.71032545184236, -73.72922038268418 40.71034156824949, -73.72924677061127 40.71035838260141, -73.72927238540365 40.710375874117375, -73.72929719874409 40.710394022019535, -73.72932118230796 40.71041280733089, -73.72934430542203 40.71043220656647, -73.72936654096313 40.71045219624966, -73.72938786417106 40.710472753809846, -73.72940824911315 40.710493853972146, -73.72942767457923 40.71051547417437, -73.7294461158162 40.71053759004487, -73.72946354928698 40.71056016911031, -73.72947995613337 40.71058319241595, -73.72949531872788 40.71060662930328, -73.7295096158818 40.710630451807035, -73.72952251620288 40.71065408552075, -73.72953435490533 40.71067803732206, -73.7295451226269 40.71070228107428, -73.7295547993583 40.71072678971533, -73.72956338403566 40.710751533525944, -73.72957085664598 40.71077648634443, -73.72957683413586 40.71080009748458, -73.72958244959715 40.710826894696915, -73.72958655714457 40.710852294369325, -73.72958952942328 40.710877786829336, -73.72959135946665 40.71090333874158, -73.72959205447606 40.71092892490863, -73.72959160865742 40.710954514699395, -73.72959002095024 40.71098007749386, -73.72958729621101 40.71100558268585, -73.72958343808003 40.71103100777097, -73.72957844670943 40.71105631492786, -73.72957233167106 40.71108147806391, -73.7295651001739 40.71110647018043, -73.72955675588017 40.71113126336986, -73.72954731549522 40.71115582345163, -73.72953678147988 40.71118012701781, -73.72951532567978 40.711228923244725, -73.72950823774846 40.71124389926559, -73.72949318544987 40.711277521546826, -73.72947138916949 40.71132621700778, -73.72944959167022 40.71137491336207, -73.72942779178327 40.71142360700482, -73.72940496355487 40.711474028115376, -73.72940149228174 40.71147905383478, -73.72939810813172 40.71148302435526, -73.72939342628459 40.71148744928674, -73.72938635386186 40.71149276190934, -73.7293794464308 40.71149678628228, -73.72937304526769 40.71149970331102, -73.7293651194129 40.7115024366519, -73.72935683902156 40.711504465856486, -73.72934828615188 40.711505692060946, -73.729342127624 40.71150597745296, -73.72933833048145 40.71150615223031, -73.72932967900823 40.71150572305492, -73.729323546137 40.71150493599286, -73.72931836344011 40.711503886413226, -73.72931544264361 40.711503036663295, -73.72931132918175 40.71150183921152, -73.72930620812596 40.71149989016179, -73.7292448528194 40.71147905023379, -73.72918370119923 40.711457894671256, -73.72912255196648 40.711436743584336, -73.72906140397784 40.71141558706458, -73.72900025602074 40.71139443231332, -73.728973648636 40.71138522854464, -73.72893910335779 40.711373280219895, -73.7288779566617 40.71135212540638, -73.72881680763028 40.7113309723557, -73.72875565864138 40.71130981837202)), ((-73.72812474016595 40.71213731267408, -73.72809076465667 40.71208949162583, -73.72806431731024 40.71203899220877, -73.7278890198972 40.71168758153245, -73.72774194102657 40.71142764769812, -73.72772025101828 40.71155053111602, -73.7279457009234 40.712053340814215, -73.72795803230315 40.71209858211316, -73.72796258156313 40.71214465600735, -73.72795927254745 40.7121907905764, -73.72794815927696 40.71223621420608, -73.72792115532125 40.712274250274966, -73.72788719938013 40.71230891098387, -73.72784700804185 40.71233946680258, -73.72780142654449 40.71236527405397, -73.72775141688672 40.71238578839417, -73.72769803055294 40.712400578256414, -73.72764239309868 40.71240933201919, -73.72758567690065 40.71241186514643, -73.72756318732517 40.712327467890276, -73.72729084239947 40.711305425536004, -73.72729468430605 40.71128620863942, -73.72730245113335 40.7112676899344, -73.72731394926869 40.711250332726976, -73.72732889411013 40.711234567688585, -73.72734691008891 40.7112207874535, -73.72736755201545 40.7112093358632, -73.72739030393966 40.711200497157776, -73.72741459928402 40.71119449242166, -73.72743983389721 40.71119147060939, -73.7274653790754 40.711191507676304, -73.72755581133778 40.71122250044297, -73.72764309848233 40.711258334971156, -73.7277267951198 40.71129882831041, -73.72778088260135 40.711328598481025, -73.72781400041062 40.71134837916069, -73.72781240353956 40.7113496442108, -73.72785310308909 40.71138200589166, -73.72788926864588 40.71141734745132, -73.72792052537041 40.71145530329934, -73.72794655178816 40.71149548005547, -73.7280612594205 40.711724525135736, -73.72818279514286 40.71195152223526, -73.72831109558591 40.71217635411594, -73.72849344579784 40.71242648812985, -73.72849428152138 40.712427888600594, -73.72849480209989 40.71242937477752, -73.7284949911268 40.712430906999266, -73.72849484641497 40.71243244113546, -73.72849436931652 40.712433935765574, -73.72849357420132 40.71243534949983, -73.72849248134182 40.71243664456438, -73.72849112402436 40.71243778411658, -73.72848953669697 40.712438736719704, -73.7284877644364 40.712439476365134, -73.72848585584404 40.7124399833561, -73.7284838630533 40.71244024250685, -73.7284818417112 40.71244024764499, -73.72847984743899 40.71243999890176, -73.72847793346924 40.71243950180575, -73.72847615536449 40.71243877089628, -73.72847455919427 40.712437826993856, -73.72847319101332 40.712436694521024, -73.72846111356901 40.71242052610416, -73.72844720888956 40.71240523047729, -73.72841680772235 40.71237727521477, -73.72834542523833 40.71232839793517, -73.72827753952198 40.71227671655622, -73.72821334051818 40.71222237561483, -73.72816578376684 40.71218180769064, -73.72812474016595 40.71213731267408)), ((-73.82198876844423 40.78931850723624, -73.82187595205923 40.78929647143308, -73.82176132868273 40.7892807200336, -73.8216455023075 40.78927133771388, -73.82152908649981 40.789268373147145, -73.8214126937294 40.78927184168876, -73.82129694010985 40.78928172538354, -73.8212819423282 40.78927926626866, -73.82104084564084 40.78929224571012, -73.82079942356407 40.78930106742159, -73.82055780055929 40.789305727092234, -73.82055214031342 40.78930544542713, -73.82047435215374 40.7893040140542, -73.82039856154087 40.789297766251806, -73.82030806463821 40.78929169988591, -73.82021221215575 40.78928090826214, -73.8201279491022 40.789271570047575, -73.82005519146998 40.78925969410905, -73.81997289244403 40.78924394186598, -73.81987895249468 40.78922434153433, -73.81979160043407 40.789202434433705, -73.81979138089781 40.78920300050656, -73.8197736533523 40.78919793267346, -73.81973658936076 40.789187338828356, -73.81943866904528 40.78910217930386, -73.81936196786357 40.78890764059514, -73.81941055544682 40.7888962299258, -73.81942094051298 40.788908349853834, -73.81943169447413 40.7889203154724, -73.81944772260236 40.788936858502886, -73.81946610123532 40.78895345564114, -73.81948495050372 40.7889690827717, -73.81950501157225 40.78898436870539, -73.81952816380803 40.78900008721476, -73.81954419605049 40.7890098827718, -73.81956931523743 40.789023792541265, -73.8195944556584 40.789036865771465, -73.8196198446377 40.78904784841808, -73.81964418272487 40.78905751197926, -73.81965525583392 40.789061467204725, -73.81967884275724 40.78906938440902, -73.81970267058645 40.789075846773116, -73.81972183727666 40.78908104473981, -73.81974070069366 40.78908535523384, -73.81975712966371 40.78908910990948, -73.81979599926584 40.78909706899932, -73.81983034559696 40.78910272922589, -73.81984336836791 40.78910469556922, -73.8198705390195 40.78910879660299, -73.81990315517602 40.789113719293546, -73.819986322754 40.78912499024167, -73.82006454387671 40.789134919762866, -73.82013199170274 40.78914086570426, -73.82020316130988 40.78914713889172, -73.82033437021141 40.78915496896182, -73.82046389118507 40.789160897993696, -73.82064454203501 40.78916432201679, -73.82087131970655 40.789168620705716, -73.82152772775517 40.789179450017514, -73.82154565723735 40.789179509298066, -73.82156570399272 40.789177789759194, -73.82159171997525 40.78917555896672, -73.82162079516242 40.78917242789816, -73.82163847490206 40.789170181491144, -73.82165992122945 40.78916745643945, -73.82167748013087 40.7891647622897, -73.82169367785119 40.789162008399245, -73.82172198385352 40.78915719577737, -73.82174236785436 40.78915297513336, -73.82175993947433 40.78914906801377, -73.82178332956941 40.78914386776212, -73.82180988734159 40.78913796280723, -73.82182590970568 40.789133435537565, -73.82184685035081 40.78912751828826, -73.82186903123316 40.78912125085553, -73.821883797934 40.78911707823607, -73.82190548078574 40.789109633970284, -73.82192465784263 40.789103050311276, -73.82194333444856 40.789096638772385, -73.82195404067387 40.78909296415219, -73.82196978625589 40.78908648414533, -73.8219849447125 40.789080245464696, -73.822002720903 40.789072930221835, -73.8220147005869 40.78906799956063, -73.82203196555767 40.7890608951419, -73.82204496702154 40.78905445321104, -73.82205731004456 40.789048338045035, -73.82207744753063 40.789038361849194, -73.82209028882642 40.78903199891017, -73.82209555275915 40.78902939107574, -73.82210388227448 40.789025265223096, -73.82211430455341 40.78902010071849, -73.82207011489919 40.78890975695946, -73.82214688450594 40.78890512169993, -73.82222268711378 40.78889479011925, -73.82229679141905 40.78887886104763, -73.82236848493258 40.78885748737613, -73.82243707753472 40.78883087606212, -73.82250190741465 40.788799282735006, -73.82256235054905 40.78876301171084, -73.82261782426667 40.78872241239511, -73.8227194469691 40.788725828575345, -73.82269478934099 40.788768852678736, -73.82263005422874 40.78890411932192, -73.82257120320168 40.789040930341784, -73.82251829829755 40.789179137259744, -73.82247139918883 40.78931859069238, -73.82243055607344 40.7894591403403, -73.8224102496306 40.789466691283714, -73.82231047912599 40.78942099999617, -73.82220660732712 40.789380936739256, -73.82209918103302 40.789346712163216, -73.82198876844423 40.78931850723624)), ((-73.72531719328106 40.73913354420994, -73.72540665585053 40.7391051437924, -73.72547247335844 40.73910887753804, -73.72567699061355 40.73968879465424, -73.7258175473173 40.73981431490414, -73.72604262891096 40.73996864983515, -73.7268399683373 40.74047486179126, -73.72694772810846 40.74057168909049, -73.72694762550186 40.7405967257698, -73.72689582502582 40.74061448620257, -73.72665104855662 40.74067470983001, -73.72647752876264 40.740559842833925, -73.72617748361115 40.74033737255522, -73.72591957208245 40.740161499681044, -73.72551646155554 40.739845788291355, -73.72520258201604 40.739558901276254, -73.72512763942512 40.73948718848022, -73.72510457082097 40.73937983114004, -73.72511429925818 40.73930116674266, -73.72515218354094 40.73923687597302, -73.72522298390626 40.739172663730926, -73.72531719328106 40.73913354420994)), ((-73.7927790733129 40.7863529492989, -73.7930654848363 40.78629785512524, -73.79317472429463 40.786376284271235, -73.7931654439008 40.786420590403026, -73.79255977571007 40.786777542947256, -73.7924202896209 40.78685597599596, -73.79211381037777 40.786981900198015, -73.7914392743372 40.78728152081427, -73.79127681877175 40.787165033842264, -73.79127759574624 40.787164352667745, -73.79127157860486 40.78716009949808, -73.79128556300923 40.78714782214518, -73.79130424667505 40.787131991808685, -73.7913200423816 40.78711826521931, -73.79135197027696 40.78708966900364, -73.79137257116832 40.78707222932513, -73.79139475596787 40.787052557460036, -73.79142912941504 40.78702425741251, -73.79146780323795 40.78699378231527, -73.79150809575574 40.78696319847081, -73.7915429922968 40.786937699901465, -73.79158398653038 40.78690774405011, -73.79160842725247 40.786889885334865, -73.79163809524836 40.78686820622338, -73.79165610574542 40.786855045506016, -73.791689460333 40.78683083092418, -73.79172357252729 40.7868064348996, -73.79175632099944 40.78678356545578, -73.79178292541069 40.78676519822636, -73.7917992285759 40.78675394256898, -73.79182026867323 40.78673919340755, -73.791843028067 40.786723237971316, -73.79187513868565 40.786703139992035, -73.79190157230829 40.78668670580792, -73.791941168564 40.786662323222835, -73.79196092955253 40.7866500706239, -73.79199706178728 40.78662939724427, -73.79203258080584 40.7866096979921, -73.79205941687239 40.7865944972873, -73.79210392932995 40.78656987407678, -73.79214333306055 40.78654943077799, -73.79218005792369 40.78653053960583, -73.79225908240534 40.78649638279723, -73.79234610094221 40.78646773701239, -73.79240197647555 40.78644796716293, -73.79249864430085 40.78641793655982, -73.7926333082228 40.78638413540182, -73.7927790733129 40.7863529492989)), ((-73.73244768076567 40.74291847691362, -73.73224467327121 40.743068805618414, -73.73203325379018 40.743256815188246, -73.73190057890359 40.74337903265663, -73.73005762583266 40.7425233306038, -73.73036702714391 40.74262144746067, -73.73064757796074 40.742703787496886, -73.7308869511691 40.742754614505444, -73.73108097623921 40.74278334285592, -73.73134107809916 40.74281536691761, -73.73157231705457 40.74283475649211, -73.7318118799552 40.74283845556915, -73.73204324548303 40.74282642746111, -73.73230774393467 40.74279248452234, -73.73253098738577 40.74274587764241, -73.73270461085282 40.742711721812704, -73.73264237517098 40.7427806942841, -73.73244768076567 40.74291847691362)), ((-73.7272843870276 40.70927427829326, -73.72736370598136 40.709098059721995, -73.72737463180914 40.70915138620343, -73.72738556000644 40.70920471629108, -73.72739162684148 40.70923432519569, -73.72739648703782 40.70925804637453, -73.72740741409042 40.70931137555602, -73.72741833996972 40.70936470653431, -73.72745729936766 40.70955923535186, -73.72750447370441 40.70975270928241, -73.72755981416395 40.709944928286006, -73.72762326247968 40.710135687795926, -73.72769475442115 40.71032479403599, -73.727717754647 40.710376182311336, -73.72774075609537 40.710427569684015, -73.72776375639214 40.71047895794948, -73.72778663830071 40.710530076675916, -73.72780252151314 40.710565556711124, -73.72780976182567 40.71058173447678, -73.72783276341957 40.710633120929195, -73.7278345928525 40.71063720819039, -73.72785576386923 40.71068450647336, -73.72787876553039 40.71073589381642, -73.72790176604362 40.71078728115174, -73.72792476777572 40.71083866848487, -73.72794828483522 40.71088906196164, -73.72797180076161 40.71093945182842, -73.72797474068717 40.71094575337652, -73.72799531552172 40.71098984618982, -73.72799948963579 40.71099878736178, -73.72800246944603 40.71100517635337, -73.7279797577788 40.71099606710749, -73.72792090452478 40.71097246690068, -73.72788534648366 40.7109550497375, -73.72777443012268 40.71090072146723, -73.7276250539824 40.71083252961727, -73.72747292255826 40.71076795832439, -73.72746213048015 40.710743485588246, -73.72745712021538 40.7107321227323, -73.72743718118284 40.7106869029802, -73.72741507672275 40.71063469189979, -73.72739296754898 40.710582484405634, -73.72737086434154 40.71053027331884, -73.72736498514195 40.710516390560045, -73.7273487587909 40.71047806492337, -73.72732665208778 40.71042585742097, -73.72730454661378 40.71037364721529, -73.72728244116334 40.710321439706526, -73.72726033339548 40.71026922858551, -73.72723963956118 40.710220553531435, -73.72722116913529 40.710171357841006, -73.72720494668444 40.71012171001267, -73.72719099328377 40.7100716641283, -73.72717932051914 40.710021279650135, -73.72716994588562 40.70997061785535, -73.72716288096147 40.70991974000703, -73.72715813022423 40.709868707351276, -73.72715570407594 40.70981757934707, -73.72715565588707 40.70979205682799, -73.72715560817372 40.70976641814345, -73.7271578339743 40.70971528585585, -73.72716238240507 40.70966424372128, -73.72716924967462 40.70961334936354, -73.72717842604897 40.70956266669577, -73.7271879241655 40.70952040010532, -73.72719932877924 40.70947840638558, -73.72721262665208 40.70943673863496, -73.72722779984939 40.709395440935715, -73.72724483158329 40.70935456637757, -73.72726370272142 40.70931416264183, -73.7272843870276 40.70927427829326)), ((-73.72708073781317 40.70395120312859, -73.72709018157705 40.70392781390509, -73.72711591494819 40.703932651252615, -73.7271200342014 40.703980296513485, -73.72712414874938 40.70402793635965, -73.72712826919765 40.704075581622455, -73.72713238611293 40.70412322417482, -73.7271365042211 40.70417086582909, -73.72714062114079 40.70421851018162, -73.72714473924967 40.70426615453654, -73.72714602715284 40.70429639421381, -73.72714676211591 40.70431370747472, -73.72714697909885 40.70431880400888, -73.72714922131077 40.70437145528739, -73.7271514647132 40.70442410566785, -73.72715370457666 40.70447675423846, -73.72715594679921 40.70452940551578, -73.7271581854717 40.70458205768483, -73.727160430079 40.704634706265416, -73.7271626711362 40.70468735573776, -73.72716379048288 40.70471368047096, -73.72716491101369 40.70474000520686, -73.72716715325764 40.70479265558165, -73.72716939668472 40.704845306859376, -73.72717048370359 40.70487085797217, -73.7271716365728 40.704897956327265, -73.72717388119395 40.704950606706504, -73.72717612227245 40.70500325617639, -73.72717836216012 40.70505590834459, -73.72718060324566 40.705108557813666, -73.72718319812752 40.70516121172293, -73.72718579538379 40.70521386473688, -73.72718839145344 40.70526651954866, -73.72719098634391 40.70531917435721, -73.72719358242546 40.7053718282676, -73.72719617732044 40.70542448397581, -73.72719738251514 40.70544892142842, -73.72719877340656 40.705477138785895, -73.72720136713008 40.70552979358994, -73.72720253187379 40.70555341778048, -73.72720396441505 40.70558244660096, -73.7272065593375 40.70563509960596, -73.72720915543628 40.70568775531487, -73.72721174917625 40.70574041011726, -73.7272125173725 40.70575597194999, -73.72721308999196 40.70576756564666, -73.72708119247868 40.70577146200385, -73.72707527631664 40.705771637985286, -73.7270055382714 40.705773075529706, -73.72693579785657 40.705774513026206, -73.72686605862202 40.70577595048332, -73.72680265308033 40.70577725614679, -73.72679632057147 40.70577738700043, -73.72679093125208 40.70577749848009, -73.72672657895318 40.705778827068926, -73.72670061185985 40.70577974337812, -73.72667469765672 40.70578132438775, -73.72664886830344 40.70578356747213, -73.72662314985071 40.705786468190645, -73.72659757899163 40.70579002392898, -73.72657217821202 40.70579423384012, -73.72654697595509 40.70579908718557, -73.72652200062704 40.70580458223187, -73.72649728538957 40.70581071185389, -73.72647285037694 40.70581747159706, -73.72644873113963 40.7058248489388, -73.7264249489952 40.70583283942741, -73.72640153119637 40.7058414341227, -73.72637850619023 40.70585062138582, -73.72637317175527 40.70585292753338, -73.72635590479055 40.70586038958352, -73.72633374004299 40.70587073154304, -73.72631204749844 40.705881634741836, -73.72629084733208 40.705893084819934, -73.72626659364536 40.7059061044358, -73.72625798303307 40.70590628027128, -73.72625133147075 40.70590399425234, -73.72624737343158 40.70590048993741, -73.72624511024887 40.70589546417945, -73.72624589448874 40.705889775685264, -73.72624877164357 40.70588562304536, -73.72625344985967 40.70588030852069, -73.72626009353581 40.705873275983244, -73.72626704652544 40.705866417980566, -73.72627429932137 40.70585974439558, -73.72628183889223 40.70585325879938, -73.72628966401778 40.70584697019414, -73.7262977628427 40.70584088395475, -73.72630612468377 40.7058350081603, -73.72631474358758 40.705829351801796, -73.72632360415619 40.70582391844464, -73.72633270281017 40.705818715284394, -73.7263420253349 40.705813745889245, -73.72635156458263 40.705809021948866, -73.72636130517394 40.70580454252611, -73.72636940736761 40.705801092099406, -73.72637032249396 40.70580070255042, -73.7263813500478 40.70579634325237, -73.72639163299388 40.70579263235577, -73.72644259181892 40.70577069263698, -73.72649518529576 40.705748050775384, -73.72654696317343 40.70572575905382, -73.72659873745914 40.705703469101564, -73.72660551685809 40.70570055042274, -73.7266505188138 40.70568117824226, -73.72666265655532 40.70567531048816, -73.72667453167156 40.7056691359338, -73.72668612638326 40.70566266174113, -73.72669742764431 40.70565589508345, -73.72670842477537 40.705648843139564, -73.72671910709337 40.70564151398889, -73.72672945681164 40.705633916594365, -73.72673946798044 40.70562605904666, -73.72674912754647 40.70561795032003, -73.72675842245266 40.70560960028926, -73.72676734320677 40.70560101523546, -73.72677588030177 40.70559220504185, -73.7267840242048 40.70558318589518, -73.72679176542366 40.70557396407662, -73.72679904924192 40.70556460879603, -73.7268028872823 40.70555928234919, -73.72680591962313 40.70555507603265, -73.72681236826209 40.70554537116992, -73.72681838681663 40.70553550859635, -73.72682396931881 40.705525500905075, -73.72682910982635 40.70551535438566, -73.7268338035472 40.705505083435035, -73.72683804688353 40.70549469975143, -73.7268418315045 40.70548421502181, -73.72684515144208 40.705473641839326, -73.72684801022423 40.70546298561545, -73.72685039712769 40.705452264335044, -73.72685231447488 40.70544148880996, -73.72685375748496 40.705430670735446, -73.72685472492313 40.7054198227159, -73.72685521793228 40.70540895465967, -73.72685523408342 40.70539808186979, -73.72685477215653 40.70538721334853, -73.72685383327979 40.70537636260632, -73.72685242331087 40.705365544065224, -73.72685053749106 40.70535476401761, -73.72684817930038 40.70534403958147, -73.72684685272074 40.705298142543896, -73.72684552613185 40.70525224820754, -73.72684419955218 40.705206352069915, -73.72684363772717 40.70518694281888, -73.72684287060406 40.705160456826896, -73.72684154284845 40.70511455978535, -73.7268405315331 40.70506247785094, -73.72683951902494 40.70501039861483, -73.72683850534244 40.70495831757456, -73.72683749165785 40.704906237434486, -73.7268364815358 40.704854154600895, -73.7268354666674 40.704802075357755, -73.72683445417083 40.70474999521936, -73.7268334404963 40.70469791417734, -73.7268324303769 40.7046458322428, -73.72683141670178 40.704593752100536, -73.72683034664601 40.70454099283508, -73.72683002589143 40.70453610317284, -73.72683007537796 40.70452864701829, -73.72683078486794 40.704521259068294, -73.72683215570684 40.704513899703265, -73.72683417818455 40.70450662833422, -73.72683609942914 40.70450124870885, -73.72683841552355 40.704495960072144, -73.7268410460224 40.704490757730476, -73.72684405705341 40.70448567515989, -73.72684856995845 40.704479084187035, -73.72685365811769 40.704472740419945, -73.72687693535153 40.70442120869853, -73.72689886669187 40.70437122987042, -73.72692079918254 40.70432125104062, -73.72694273400695 40.70427127221193, -73.72694899051083 40.70425701747778, -73.72696466525971 40.70422129066878, -73.7269866011979 40.704171312734374, -73.72700853473664 40.704121334789875, -73.7270218921914 40.70409089210754, -73.72703046589073 40.70407135323322, -73.72705239936002 40.704021376180194, -73.72707129285575 40.703974593248965, -73.72708073781317 40.70395120312859)), ((-73.72685218097124 40.69082950138855, -73.72685042027412 40.69081369222663, -73.72684878715376 40.69079735296259, -73.72684834272215 40.69078339388623, -73.7268482893886 40.690781684577374, -73.72695827448773 40.690798235943184, -73.72699093312698 40.69080365529451, -73.72699979806718 40.69080503250406, -73.72704001860308 40.69081195203165, -73.7270796263827 40.69082088004709, -73.72711169098312 40.69082720657747, -73.7271193925908 40.690828968241725, -73.72715082879846 40.69083707719629, -73.72719701524058 40.69085014243718, -73.72723505666517 40.690862258119864, -73.72727251905324 40.6908753719921, -73.727309363406 40.69088947405636, -73.7273455365831 40.69090454077388, -73.72738099962241 40.690920553142035, -73.7274157135321 40.6909374993625, -73.7274496287354 40.69095535230293, -73.72748270627335 40.69097409206037, -73.72749839347915 40.69098600973431, -73.72751353128918 40.69099832953708, -73.72752810673391 40.69101104063193, -73.7275420974089 40.691024124955746, -73.72755548682858 40.691037563558815, -73.72756826437477 40.69105134921204, -73.72758041476322 40.69106545846602, -73.7275919191202 40.691079877768495, -73.72760276214655 40.69109458727211, -73.72760749668072 40.69110155947857, -73.72761294152373 40.69110957526474, -73.7276180472459 40.691117778456174, -73.7276224301405 40.69112481736852, -73.72763122923845 40.69114029917822, -73.7276393258661 40.691156005354614, -73.72764670592935 40.69117191064992, -73.72765336593383 40.691188001548326, -73.72765929413308 40.691204257310176, -73.72766448469959 40.69122065630942, -73.72766893296314 40.691237183226356, -73.72767263072653 40.69125381732969, -73.72767557689428 40.69127053700451, -73.72767776563154 40.69128732242568, -73.72767919582083 40.691304157381325, -73.72767986518382 40.69132102025362, -73.72767977144572 40.69133788852428, -73.72767927069518 40.69134781374296, -73.72767891703829 40.69135474598974, -73.72767730560571 40.69137156924516, -73.72767493129102 40.69138834386836, -73.72767180129125 40.69140504556236, -73.7276679204264 40.69142165272612, -73.7276632899488 40.69143814825264, -73.72765792056809 40.691454516858414, -73.72765181475273 40.6914707333347, -73.72764498085367 40.691486780591305, -73.72763742604596 40.69150263973422, -73.72762915631806 40.691518292767114, -73.7276259012497 40.69152824658673, -73.72762219343593 40.69153810928289, -73.72761803647722 40.6915478682569, -73.727613432791 40.691557510907174, -73.72760839425557 40.691567025555074, -73.72760292446411 40.691576401402756, -73.72759702700608 40.69158562855305, -73.72759071377453 40.69159469172522, -73.72758398954211 40.69160358102481, -73.7275768626232 40.691612288366706, -73.72756934135059 40.691620801163424, -73.72756143521829 40.69162911223316, -73.72755315493622 40.69163720629244, -73.72754450880787 40.69164507795767, -73.7275355122682 40.6916527137576, -73.72752616534666 40.69166010648807, -73.72751648936784 40.69166724899532, -73.72750649265724 40.69167413049283, -73.72749619062796 40.69168074291233, -73.72748558804896 40.69168707725983, -73.72747470387154 40.691693128177036, -73.72746354996673 40.69169888578627, -73.72745213818378 40.69170434561301, -73.72744048629076 40.69170950229607, -73.72742860497951 40.69171434505455, -73.72741650727862 40.69171887031714, -73.72740421332239 40.69172307272832, -73.7273917326049 40.691726945106446, -73.72737908287606 40.69173048659296, -73.72736627717534 40.69173369091511, -73.72735333562247 40.6917365563194, -73.72734027009248 40.691739072027794, -73.72732709830944 40.69174124348531, -73.72731383449968 40.69174306352145, -73.72730049167724 40.69174453216706, -73.72728709588438 40.69174564588177, -73.72727365302936 40.69174640648056, -73.72726018680306 40.69174680681538, -73.72724670901795 40.69174685141694, -73.72723876658895 40.69174666959894, -73.72723323505048 40.69174654122208, -73.72721978857305 40.69174587358541, -73.72720637431462 40.69174484941861, -73.7271930194711 40.691743472388296, -73.72717973352187 40.691741738914885, -73.72716653891227 40.691739657156226, -73.72715344392763 40.6917372262315, -73.72714046747876 40.69173445068818, -73.72712762848383 40.691731333272706, -73.72711662134152 40.69172723863549, -73.72710683698406 40.69172327026771, -73.7271012497777 40.691720845433125, -73.72709520806147 40.69171818268436, -73.72708482315646 40.69171323672971, -73.72707467481428 40.691708014876255, -73.72706476890981 40.69170252704374, -73.72705512315594 40.69169678137888, -73.72704750046373 40.691691902306694, -73.72703664870119 40.691684534649504, -73.72702784359905 40.69167804894993, -73.72701934228819 40.69167133794041, -73.72701115185224 40.69166440523985, -73.7270032841108 40.69165725357795, -73.72699575200006 40.69164990189636, -73.72698856023382 40.69164235470883, -73.72698171706762 40.6916346183387, -73.72697523545608 40.69162670722499, -73.72696911892625 40.69161862677929, -73.72696337689082 40.69161038963118, -73.72695801285471 40.6916020065953, -73.72695304098869 40.69159348400888, -73.72694846124477 40.69158483357863, -73.72694428302454 40.691576070635676, -73.72694050749621 40.69156719878492, -73.7269388234107 40.69156271651586, -73.72693714287468 40.69155823425523, -73.72693418795463 40.691549182446785, -73.72693148003556 40.69153932796288, -73.72692953182647 40.69153087468558, -73.72692783880727 40.691521641265176, -73.72692656949017 40.69151236832684, -73.72692572501373 40.69150306667948, -73.72692354889242 40.691452914401395, -73.72692137632718 40.6914027612308, -73.72692054717977 40.69138365118365, -73.72691919902931 40.691352608949195, -73.72691702647067 40.69130245577789, -73.7269148515455 40.69125230350117, -73.72691527890241 40.69122450734221, -73.72691451724464 40.69119671916786, -73.72691256411535 40.69116896148525, -73.72691130342193 40.691157874024015, -73.72690941819644 40.69114126761023, -73.72690508765646 40.6911136654782, -73.72689957589847 40.69108619111783, -73.72689288521995 40.69105886164418, -73.72688503201537 40.69103171851977, -73.72687197890882 40.69096451523965, -73.72686102427173 40.6908970981123, -73.72685218097124 40.69082950138855)), ((-73.82163797748852 40.79001879176826, -73.82149378951178 40.78992784832037, -73.82134453448887 40.78984175504672, -73.82119049751067 40.7897606744606, -73.82111724681226 40.789722139953746, -73.82113444465433 40.78969337397796, -73.8213056613908 40.78971303278879, -73.82142878942217 40.789730766315095, -73.8215531985264 40.78974222789232, -73.82167833667798 40.789747368035286, -73.82180364586142 40.78974616156532, -73.82192857153083 40.78973861482911, -73.82205255906626 40.78972476209128, -73.82217505733102 40.789704664639146, -73.82229552222722 40.7896784107883, -73.82241341906092 40.789646117687006, -73.82243713743112 40.78964537529599, -73.82242229339408 40.78978734275488, -73.82241560699565 40.78992966677045, -73.82241709085686 40.79007207721261, -73.8224267410113 40.790214303924266, -73.82244454165158 40.79035607402661, -73.82247045562572 40.790497120909954, -73.82250443749655 40.79063717434807, -73.82254641930153 40.790775968581045, -73.82259632359009 40.79091324053424, -73.82257865895835 40.79089854145921, -73.82248389999971 40.79077568500159, -73.82238220502435 40.7906560757919, -73.82227376302302 40.7905399401294, -73.82215878195821 40.790427497138204, -73.82203747691298 40.79031895964961, -73.82191007957435 40.79021453241583, -73.8217768287523 40.790114412996225, -73.82163797748852 40.79001879176826)), ((-73.75642940508637 40.76256826929416, -73.75645733848827 40.762536602557546, -73.75650827863562 40.76255257357792, -73.75664998479083 40.76247003167623, -73.75669639132883 40.76245779183414, -73.75690284933141 40.762417687707185, -73.75695617152796 40.762416037916815, -73.75697928911772 40.762433712323755, -73.75701164543719 40.762460219482236, -73.75703242486496 40.76248317672857, -73.7570693792804 40.76252026913129, -73.75711557367059 40.76256619337162, -73.75715713267822 40.76261210782222, -73.75718945060149 40.76264919041206, -73.75721252217583 40.76267920253122, -73.75724483492377 40.762718047387814, -73.75726326990691 40.762748049726405, -73.75727940644414 40.76277276033849, -73.7572955506027 40.76279570777005, -73.7573139727844 40.76282923556094, -73.75733237690346 40.762868051092106, -73.75735077343934 40.762908628897684, -73.75735994400497 40.762936849412995, -73.75736679447431 40.762965065041215, -73.7573736332912 40.76299680613203, -73.7573735112977 40.763030294856584, -73.75736876024943 40.76306201063798, -73.75735472944505 40.763095470068784, -73.75734536097809 40.76312188924311, -73.75731280392719 40.76315002186499, -73.75727792910601 40.76317814959454, -73.75723149647258 40.76319744059071, -73.75718279105119 40.763204388021485, -73.75713179239894 40.76320428052258, -73.75708311149056 40.76320417788816, -73.757036755939 40.76320231784358, -73.756985783015 40.76319515935901, -73.75693251165288 40.76318270912177, -73.75686303186289 40.76316493687297, -73.7568190326998 40.763152506151094, -73.75676809845486 40.76313477298952, -73.75672181377979 40.763113524135974, -73.75666628156333 40.76308520565703, -73.7566223211335 40.76306219937869, -73.75658532157608 40.76303744459681, -73.75653212128613 40.76300560639226, -73.75648355652167 40.7629737770607, -73.75644429089078 40.762934917292704, -73.75640505109017 40.7628890074903, -73.75638201849225 40.762848418828476, -73.75636825802292 40.76280785067068, -73.75635685398471 40.76275671193115, -73.75635932645147 40.76271441580688, -73.75638037650549 40.76266334569894, -73.75640607605142 40.76260875992985, -73.75642940508637 40.76256826929416)), ((-73.72927169993456 40.716075448815815, -73.72918152539755 40.716089021801565, -73.72916790941173 40.71610060460666, -73.72914388243156 40.716105115490095, -73.7291383447309 40.716095520987096, -73.72913343828519 40.71610707655199, -73.72911503610604 40.716150418240986, -73.72909321396064 40.71620181418544, -73.72904435479113 40.71631688851173, -73.72904192125989 40.716320729782005, -73.72904019276535 40.71632669162223, -73.72902134952786 40.71637107145089, -73.72900006878157 40.71615043313289, -73.72900979652407 40.71612528124798, -73.72910292662286 40.71589005010305, -73.72920263981017 40.715654835262455, -73.72929601271848 40.7153594906704, -73.72934364477844 40.71497887589663, -73.72938450960152 40.71464333034501, -73.72937875987006 40.71443792474064, -73.72938583163243 40.71431771184651, -73.7294195428361 40.714122418115466, -73.72957958161714 40.713621837803494, -73.72961802620928 40.71388242541207, -73.72963667966116 40.714152985646905, -73.72966142925675 40.714543789699206, -73.72967372289037 40.71475923067718, -73.7296667735114 40.71484938559056, -73.72934011074611 40.71582060107201, -73.72927169993456 40.716075448815815)), ((-73.72998354080332 40.74449613708678, -73.72996764201478 40.74434215656273, -73.7299435832493 40.7441630245387, -73.72989066128882 40.743971257285516, -73.72984572005898 40.743848625646415, -73.72998087412047 40.74413483682637, -73.73005462835587 40.74428266830328, -73.73010378914674 40.74438331746107, -73.73016137746463 40.74444314456736, -73.73025592729113 40.74455646751944, -73.73033409217375 40.74463519222127, -73.73042054583675 40.74470765340516, -73.73050298188114 40.74475182998047, -73.73059782492251 40.7447928936352, -73.73069684751172 40.74482140035461, -73.72994129585703 40.745746428905875, -73.72982984082266 40.74572731802749, -73.72985094080583 40.745617407946284, -73.72990123586594 40.74543845032121, -73.72994761730476 40.74520607419504, -73.72997377630601 40.74486683293161, -73.72999514315813 40.74469094840517, -73.72998354080332 40.74449613708678)), ((-73.75897170154285 40.76416194956434, -73.75862756927835 40.7640128038375, -73.75858842081499 40.76401691187295, -73.75845398628489 40.76360716479722, -73.75841037652495 40.7634872184941, -73.75836900794127 40.76338842709552, -73.75829999447795 40.76324198855781, -73.75822855599601 40.76312550837842, -73.75815723817588 40.76297554032527, -73.75811346229789 40.76290159598444, -73.75806965514211 40.762836289230314, -73.75803278964163 40.762774520725216, -73.75799822335831 40.7627178701203, -73.7579659241666 40.76267550001662, -73.75793597412543 40.76262449897009, -73.75791293373463 40.762585497292754, -73.7579037641674 40.762557276822484, -73.75788536739165 40.7625166991031, -73.7578785540085 40.762477908018916, -73.75787173422692 40.76244087921435, -73.75787651180741 40.7624021124897, -73.75788128819808 40.76236334576218, -73.75789066275169 40.76233516426108, -73.75790236900546 40.762303463071554, -73.75792102774385 40.762271952089016, -73.75795127985158 40.76224011246276, -73.7579847320347 40.76221412474716, -73.75807809491945 40.76219878437806, -73.75815895878246 40.76244622909263, -73.75828864959362 40.762897052303224, -73.75839357680535 40.7632533772612, -73.75870099934475 40.76321748886572, -73.75897170154285 40.76416194956434)), ((-73.72295360692698 40.734820288140334, -73.72292982015938 40.734660819502956, -73.72292015966062 40.73446418918049, -73.7229136821365 40.73434195874592, -73.72325283919007 40.734255098620906, -73.72329775913215 40.73437210748947, -73.72333194748605 40.73455019842847, -73.7233554814754 40.73477077334607, -73.72335469829926 40.734959408096984, -73.72335058708575 40.73510818177331, -73.72333596580285 40.735264900631584, -73.7233037137683 40.73546143019682, -73.7232961443551 40.73560222511773, -73.72327824998155 40.73570579956594, -73.72327408338445 40.73586785654792, -73.72328420972943 40.73595290004382, -73.72329091860391 40.73601933794743, -73.72327690385018 40.73602993121645, -73.72323846108782 40.73603515275672, -73.72322114039166 40.73600057198178, -73.72315553897862 40.73581709161087, -73.72311091640529 40.73562834861801, -73.72306969808027 40.73546086768057, -73.72301486291144 40.735208334801285, -73.7229806983396 40.735024930817374, -73.72295360692698 40.734820288140334)), ((-73.8071934903756 40.78630553908501, -73.80711863457631 40.78629228809304, -73.80697448267931 40.78626430043945, -73.80675914331185 40.786220181414876, -73.80676241935377 40.78619888460184, -73.80685582341053 40.78620765719182, -73.8070142540433 40.78620571186234, -73.80718392726048 40.78620646232143, -73.8073628595521 40.786204264451385, -73.80756034021506 40.78619758755655, -73.80770388925934 40.7861972409369, -73.80787353337723 40.78619657384055, -73.80813655143727 40.78620326150436, -73.80829155389537 40.78621552675788, -73.80854934206981 40.786239282823935, -73.80874385019608 40.78626806618414, -73.80897220770503 40.786310604683145, -73.8091912470866 40.78635325697428, -73.80977038566662 40.78649634168449, -73.8098552337097 40.786628501774295, -73.80917292259838 40.78654336878801, -73.80884565567075 40.786496379381916, -73.8086867130722 40.786474243322054, -73.80855581910564 40.78645601409644, -73.80829980293856 40.78642798540521, -73.80796275260678 40.7863923901935, -73.80796342948703 40.786391024357435, -73.80779895573014 40.78637178918231, -73.8074551571794 40.78633633521659, -73.80732615776381 40.78631949813525, -73.8071934903756 40.78630553908501)), ((-73.7226144889198 40.73235465002948, -73.72282556464022 40.731372246789476, -73.72282983804243 40.731372257075655, -73.72330920463807 40.72906878742607, -73.72344907826765 40.72908973078848, -73.72296071387079 40.7314446985945, -73.72295953625255 40.73144463992951, -73.72286860069899 40.73188067183726, -73.72273656137403 40.73222964127397, -73.7227380819298 40.73222808344609, -73.72271695293368 40.73228228486025, -73.72271713026898 40.732282341119074, -73.72257396958311 40.732649015569024, -73.7225670391006 40.732654254264105, -73.72256011837375 40.73265686528623, -73.7225486072895 40.73265596135318, -73.72261434507077 40.73235479646654, -73.7226144889198 40.73235465002948)), ((-73.72321618335565 40.731898681500375, -73.72330684573788 40.73141157878569, -73.72330399449324 40.73141117750986, -73.72378754705247 40.729124889663716, -73.72394099362687 40.72913899587153, -73.72345290164054 40.73143214345573, -73.72344905305239 40.731431601109364, -73.72322737430574 40.73246541816383, -73.72321833010967 40.732468830981, -73.72320029878259 40.73246191852892, -73.72318682522649 40.73244471336417, -73.72321618335565 40.731898681500375)), ((-73.80198907381691 40.786195003756276, -73.80232325453059 40.786180171627464, -73.80234623919824 40.78644779473035, -73.8014525081405 40.78643932731439, -73.80070586410865 40.786404151744335, -73.79987445319009 40.78633732456043, -73.7997633784376 40.786324094138806, -73.7995504583575 40.78629131578639, -73.79982652031923 40.78628336599571, -73.79999363074333 40.786276729455864, -73.80042152878666 40.78625315586265, -73.8007953309363 40.78623941433933, -73.80106653768205 40.786224632773646, -73.80134372725567 40.786207484454366, -73.80160899729434 40.786197360489275, -73.80198907381691 40.786195003756276)), ((-73.80713588423417 40.78613903329092, -73.80678168683953 40.786140548983596, -73.80638446761515 40.78613064497731, -73.80638432006114 40.78612842228722, -73.8062498790919 40.786118735660054, -73.80616879762381 40.785987943490014, -73.80617217238178 40.7859470420003, -73.80618441918544 40.78590713157675, -73.80620519952453 40.78586931566435, -73.80623393929439 40.7858346405788, -73.80626984191599 40.78580406581223, -73.80631191566461 40.78577843706496, -73.80635899624558 40.78575846377166, -73.8064097812142 40.785744697548026, -73.80646286555344 40.785737519644044, -73.80651678080484 40.78573712840357, -73.80657003536099 40.7857435348294, -73.8066560445681 40.78575523261322, -73.80672906624834 40.785769923438465, -73.80742781693726 40.78598353988372, -73.80807857282747 40.78610106680611, -73.80806803489064 40.78613750162969, -73.8079224709449 40.78613078810035, -73.80766519555404 40.78613111454645, -73.80739682768342 40.7861358280435, -73.80713588423417 40.78613903329092)), ((-73.8165490094104 40.788311467178836, -73.81672653942425 40.78826883166224, -73.81747991015253 40.78860739426996, -73.81798108848511 40.78883629411863, -73.81834111567427 40.788981682791146, -73.81870782917477 40.789121820114595, -73.81893037835658 40.789196570396186, -73.81930532985517 40.78931008368649, -73.81935696166468 40.789432673497636, -73.81882735705996 40.78930635356228, -73.81805226173434 40.78901662590224, -73.81715047309157 40.788642457248, -73.8165195306368 40.78836350263206, -73.8165490094104 40.788311467178836)), ((-73.78338594445742 40.78972911790811, -73.7832106765248 40.78974240307717, -73.78303490473336 40.789751035931346, -73.78285884479305 40.789755005168175, -73.78268271002108 40.78975430668594, -73.78248164847632 40.78975416242921, -73.78227316041625 40.78973411977689, -73.78219535121116 40.78972181236253, -73.78218144637579 40.7897192304559, -73.78216825781197 40.789715003781104, -73.78215611809776 40.78970924102745, -73.78214533718476 40.7897020859612, -73.78213618579888 40.78969372099606, -73.78212889665437 40.78968435819079, -73.78212365617227 40.78967423563095, -73.78212059503146 40.78966360840637, -73.78211979172883 40.78965274681663, -73.78212126668804 40.78964192645437, -73.78216748725274 40.78955000848686, -73.78298465986083 40.78960394856426, -73.78359947447183 40.789626241198945, -73.78374068165675 40.78963136085748, -73.78375357310038 40.78963334183985, -73.78409111677227 40.789644722175595, -73.78442891128198 40.789650388297915, -73.78476678712696 40.789650336286215, -73.78510457834426 40.78964456673106, -73.78544211659586 40.789633082021375, -73.78577923353495 40.789615887249674, -73.78611576435262 40.789592992919985, -73.78595066009308 40.7897420700001, -73.78580841703612 40.78973730232124, -73.78566603816817 40.789737923726555, -73.78541660991252 40.78973969375082, -73.7851672209772 40.78973588288949, -73.78491808705401 40.789726493346215, -73.78480912910011 40.78972062759658, -73.78460473763785 40.78970348652695, -73.78439962039941 40.789692438343586, -73.78419409125306 40.78968749893906, -73.78398846527476 40.789688677006275, -73.78356049635869 40.78971119713758, -73.78338594445742 40.78972911790811)), ((-73.82050452384341 40.78976259153599, -73.8202062379605 40.78967547844846, -73.8199052185225 40.78959398125196, -73.8196016466043 40.789518149736494, -73.81954837770662 40.78938170144108, -73.82018977425555 40.78955028201179, -73.8203712196065 40.78958545942033, -73.82055024349371 40.78962719293342, -73.82072643628146 40.78967538557119, -73.82089939428562 40.78972992865881, -73.82090017168528 40.789730308978456, -73.82105786790923 40.78979163680944, -73.82121110704855 40.7898591772802, -73.82135946428012 40.78993274514684, -73.82150253022805 40.79001213628036, -73.82163991095356 40.79009713126853, -73.82177122439808 40.790187496310494, -73.82189610868369 40.79028298052786, -73.82201421973177 40.790383320463214, -73.82212523008268 40.790488238277156, -73.82222883244081 40.79059744535516, -73.82232474205408 40.790710638709285, -73.82241269314265 40.7908275072758, -73.82249244247087 40.790947725616796, -73.82256376932096 40.7910709638255, -73.82269473633774 40.791248554414345, -73.8225830608343 40.79110698299699, -73.82246384539523 40.79096900906673, -73.8223372884817 40.790834864335444, -73.8222036039638 40.79070477603563, -73.82206301639542 40.790578961510406, -73.82191576100458 40.79045763181583, -73.82176208724769 40.79034099172638, -73.82160225170549 40.790229237923306, -73.8214365240143 40.79012255630246, -73.8213261237288 40.790061136632595, -73.82121120794528 40.79000470313764, -73.82109216712476 40.789953447316776, -73.82079989273564 40.789855266220165, -73.82050452384341 40.78976259153599)), ((-73.72939752461717 40.713965805572016, -73.72938477474463 40.71400611686096, -73.72933645530873 40.714003661027675, -73.72926069521824 40.71347430888296, -73.72913484132367 40.71289706647925, -73.72899503557908 40.7124880828793, -73.72902979562998 40.71253060237037, -73.72907175289521 40.71256918012569, -73.72912014335007 40.71260311644052, -73.72917408901381 40.71263179509015, -73.72923261210296 40.71265469507047, -73.72929464918589 40.71267140233861, -73.72935907484523 40.712681611670064, -73.72942471937948 40.71268513930821, -73.72948452931495 40.712682886301096, -73.72954369821423 40.71267586893367, -73.72960157247947 40.712664166718, -73.7296575136977 40.71264790873149, -73.7297109045624 40.71262727273005, -73.72972072713317 40.71262961641906, -73.72977496226052 40.712601851192694, -73.72982466185805 40.71256954300485, -73.72986917212039 40.712533117171276, -73.72990790885383 40.71249305230166, -73.72994035986154 40.71244987580252, -73.72996610036061 40.71240415580804, -73.7299847918308 40.712356493072605, -73.72999618676955 40.71230751557856, -73.73000013702247 40.712257866848645, -73.72999643617787 40.71220066106226, -73.72998491154065 40.712144061881865, -73.72996568725809 40.71208868644904, -73.7299389751 40.71203513950223, -73.72990506620324 40.71198400615349, -73.7298643299201 40.711935843781525, -73.72981721264529 40.711891179327466, -73.73016516972132 40.711985503134215, -73.73018236982882 40.71199016579304, -73.73018271264998 40.711990258449084, -73.72988722428514 40.71267302750256, -73.72988183179305 40.71267174152156, -73.72982186225356 40.71281030799858, -73.72956246356631 40.71274659803426, -73.72953306663854 40.712745738319256, -73.72950389933455 40.71274866129883, -73.72947579749989 40.712755284288924, -73.72944956427952 40.71276541736819, -73.72942595233766 40.712778770540154, -73.72940563660987 40.71279496087301, -73.72938919886003 40.71281352687137, -73.72937710990323 40.712833934737915, -73.72937661021795 40.712834875501834, -73.72937585715243 40.71283584628754, -73.72936502800445 40.71285668305789, -73.7293462677985 40.712905682793846, -73.72925006212881 40.71315695415816, -73.72925010226147 40.71318174452561, -73.72925563509594 40.71320617499798, -73.7292665037187 40.71322954460489, -73.72928239604452 40.713251186229954, -73.72930285660665 40.71327047744482, -73.72932730064781 40.713286867558146, -73.72935502592169 40.713299885748306, -73.7293626526835 40.71330266375631, -73.72958793113553 40.71335721142742, -73.7295904808317 40.713351247903866, -73.72959135110426 40.713351433653074, -73.72945510921029 40.71378374967117, -73.72939752461717 40.713965805572016)), ((-73.81309231347711 40.787416234266274, -73.81307402562966 40.7874148583543, -73.81307412205659 40.78741553839048, -73.81306154549735 40.78741391959877, -73.81304497757715 40.787412673442844, -73.81304534010565 40.787411833861654, -73.81116585507586 40.787157548249255, -73.8103643488613 40.787066757318094, -73.81027010502984 40.786906819635846, -73.81172663319676 40.78709639043354, -73.8117267071669 40.78709495155048, -73.81213593769075 40.787149101128115, -73.81250415263692 40.78720140043577, -73.81304961441727 40.78728917427638, -73.81306309751602 40.78729156086796, -73.813073089521 40.78729295214281, -73.8131291749362 40.78730197698632, -73.81312932210106 40.78730104250284, -73.81311891276621 40.78729933177804, -73.81322275173764 40.787313789291474, -73.8132206519909 40.78732362118231, -73.81320454179422 40.78732097190693, -73.81318808000519 40.78732033288257, -73.81317169901384 40.7873217219196, -73.81315582781012 40.78732510189244, -73.81314088131096 40.78733038432418, -73.813127253247 40.78733743117615, -73.81311529957063 40.78734605662192, -73.81310533487678 40.78735603604638, -73.81309761936774 40.787367106925174, -73.81309235527127 40.78737897872419, -73.81308968089353 40.78739134099459, -73.81308966704982 40.7874038687698, -73.81309231347711 40.787416234266274)), ((-73.72867697798749 40.71328524031418, -73.7286443221362 40.71314238581302, -73.72856748358058 40.71288120213476, -73.72849318720354 40.712636402956015, -73.72843587084535 40.71246174526444, -73.72852661533014 40.71253545482156, -73.72861262493429 40.71271121480359, -73.72869036310628 40.712889193002226, -73.72875972775141 40.71306916226379, -73.72882063451961 40.7132508963756, -73.72887300380958 40.71343416463176, -73.72891676904267 40.71361873455441, -73.728951876663 40.71380437189351, -73.72897828139713 40.71399084241657, -73.72899594862838 40.71417791011343, -73.72900485794402 40.71436533810474, -73.72900499603912 40.71455288772502, -73.72899636379876 40.7147403230417, -73.72897897040374 40.71492740543819, -73.72895284040956 40.71511389903373, -73.72891800548103 40.71529956616128, -73.72886245554054 40.714723591355536, -73.72884518919913 40.714658839704036, -73.72884939531276 40.71452181378863, -73.72884821307281 40.71447641695877, -73.72884088944073 40.71437931792011, -73.72883532081026 40.71428457425746, -73.72881568942594 40.71409518218479, -73.72880269653253 40.713983668751716, -73.72878155181827 40.71382768850218, -73.72874957953815 40.713634810254604, -73.72873027782369 40.713525909643096, -73.72870909700549 40.713427144395304, -73.72867697798749 40.71328524031418)), ((-73.72489530421434 40.73995160754348, -73.72497996218712 40.73994823290708, -73.72504576574337 40.739955543693306, -73.72510679299839 40.73998072630294, -73.72519133297907 40.74000596498806, -73.72632618429216 40.740770510070845, -73.72583185254373 40.74090882717012, -73.7258369083756 40.74082299704214, -73.72582766508751 40.74078363168784, -73.72579489533693 40.74074778625186, -73.72562141983423 40.74062218757346, -73.72535898302648 40.74040338158353, -73.72485761128884 40.73996940166036, -73.72489530421434 40.73995160754348)), ((-73.72264278179988 40.73261741124186, -73.72278030434572 40.73228271654878, -73.72276762209059 40.73244410742326, -73.72273896230135 40.73259632232195, -73.72270610749612 40.73279421281803, -73.72264910412301 40.733022502278594, -73.72263221376912 40.733232614227475, -73.72261148450737 40.733403122282965, -73.7225986241173 40.7336071528568, -73.72258980415921 40.73380205475584, -73.72259311161069 40.73396957606417, -73.72256432277183 40.734152247712686, -73.72223571442677 40.73422150642598, -73.72226039779174 40.73406319012468, -73.7223340283646 40.733688748167104, -73.72243211236714 40.73321081154248, -73.72249673064184 40.73307695749325, -73.72256573385897 40.732851743453985, -73.72264278179988 40.73261741124186)), ((-73.72744658235298 40.703872473382, -73.72744445761678 40.703820556305075, -73.72744233050268 40.7037686428242, -73.72744020459352 40.70371672484317, -73.72743807862881 40.70366482126989, -73.72745048941321 40.70370522709431, -73.72746290251298 40.70374564913191, -73.72747531682579 40.70378606756877, -73.72748772878711 40.70382648599845, -73.72750704460998 40.70387488133212, -73.72752635925917 40.70392328116198, -73.72754567276424 40.70397167828398, -73.72756498629361 40.704020076302925, -73.72758465214237 40.70406913432981, -73.72760237229234 40.70411626064423, -73.72761792522344 40.70416383028408, -73.727631294623 40.704211780175484, -73.7276424605877 40.70426005714162, -73.72765141508373 40.70430859902864, -73.7276549559544 40.704334269409266, -73.72765813939816 40.70435735086124, -73.7276626361466 40.70440625051042, -73.72766489018423 40.704455238506554, -73.7276659218987 40.704492054938804, -73.72766640313952 40.70450923341846, -73.72766857815246 40.70456163598322, -73.72767075317256 40.70461403764709, -73.72767292818867 40.70466644111154, -73.72767510439152 40.704718844578444, -73.72767727823486 40.70477124713883, -73.72767945563147 40.704823649707215, -73.7276816294743 40.70487605406777, -73.72768380569819 40.70492845573207, -73.72768597955522 40.704980858290845, -73.72768815104904 40.70503326084364, -73.72769033082575 40.705085664316115, -73.72769270556769 40.70513900658695, -73.72769508267632 40.705192349763465, -73.72769745624994 40.70524569022963, -73.72769983099961 40.7052990333997, -73.72770220575676 40.705352375668866, -73.727704580525 40.705405716136575, -73.72770577844028 40.705432560644994, -73.72770696001562 40.7054590602171, -73.72770933478783 40.7055124015845, -73.72771171073981 40.705565744755276, -73.72771423742682 40.705620426448625, -73.72771435694621 40.70562506078557, -73.72771426582524 40.70562969732581, -73.72771396646354 40.705634327970294, -73.72771346006648 40.7056389473189, -73.72771274783577 40.7056435508718, -73.7277118274267 40.705648133220386, -73.72771070122437 40.705652689867705, -73.72770937399497 40.70565721272039, -73.72770784101264 40.705661699966235, -73.72770610822703 40.70566614351464, -73.72770417565278 40.705670539763574, -73.72770204567485 40.70567488421608, -73.72769972542618 40.70567916878441, -73.72769721254384 40.70568339256244, -73.72769451179413 40.70568754745675, -73.72769162319914 40.705691628064336, -73.7276885550419 40.70569563440477, -73.72768318185605 40.70570193701029, -73.7276772955898 40.7057081213346, -73.72767287888392 40.70571230908992, -73.72766690297848 40.705717552162675, -73.72766301372862 40.70572065604402, -73.72765898527057 40.70572365603653, -73.72765482591325 40.705726545856265, -73.72765053802337 40.70572932550882, -73.72764612396745 40.70573199499976, -73.72764159326361 40.70573454174437, -73.72763694706936 40.70573697204902, -73.72763219488073 40.70573927873203, -73.72762734617879 40.705741458213694, -73.72762239742119 40.7057435086847, -73.72761735925761 40.705745430170126, -73.72761223762681 40.70574721728097, -73.72760703963226 40.705748869133515, -73.7276017664611 40.70575038483007, -73.72759642996482 40.70575175989604, -73.72759103250274 40.70575299613806, -73.72758558474312 40.70575408907877, -73.7275800902359 40.70575503872662, -73.7275745549014 40.705755844195004, -73.72756898822081 40.70575650190434, -73.72756111048517 40.70575716494977, -73.72753003924421 40.70575820084061, -73.72752985143832 40.70575377436102, -73.72752959688123 40.70574772949659, -73.72752866584288 40.705725379192735, -73.72752637528373 40.705670575584506, -73.72752409967883 40.70561616733764, -73.72752182526094 40.70556175909312, -73.72751974555064 40.705511536906556, -73.72751766348424 40.705461312913, -73.7275155790617 40.70541108711247, -73.7275134993571 40.70536086582531, -73.72751141729638 40.705310642731185, -73.72750933641845 40.70526042053995, -73.72750725674167 40.705210194749185, -73.72750517468305 40.705159973454954, -73.72750309263856 40.70510974945883, -73.7275010094176 40.70505952455905, -73.72749851585671 40.70500807668744, -73.7274960211127 40.70495662971314, -73.72749352756688 40.70490518003971, -73.72749103283427 40.70485373216409, -73.72748853692583 40.70480228338477, -73.72748604338788 40.70475083461067, -73.72748354866681 40.70469938673385, -73.7274810539569 40.70464793705562, -73.72747855924722 40.70459648827752, -73.72747606216741 40.70454504129441, -73.72747356983935 40.704493590720126, -73.72747107395057 40.70444214373904, -73.72746858043588 40.70439069586264, -73.72746608575277 40.704339245281524, -73.72746358987554 40.70428779829926, -73.72746146511291 40.70423588122543, -73.72745933915921 40.70418396684996, -73.72745721203297 40.70413205067027, -73.72745664282358 40.70411816876941, -73.7274550872839 40.70408013269477, -73.72745295778299 40.704028220110715, -73.72745083421648 40.70397630393827, -73.72744870709981 40.703924388657526, -73.72744658235298 40.703872473382)), ((-73.78595193707396 40.78899367934019, -73.78595665661702 40.78898542328497, -73.78596314155354 40.788977891811356, -73.78597120754812 40.788971299797005, -73.78598062058529 40.78896583681331, -73.78599111239234 40.788961660850326, -73.7860023816469 40.78895889111527, -73.78601410346135 40.78895760624901, -73.78602594359998 40.78895784435249, -73.78603755968129 40.78895959758601, -73.78604862011983 40.78896281670697, -73.78627240558994 40.78897862782589, -73.78649685318243 40.78898750856196, -73.7867215896605 40.78898944471326, -73.78694624293983 40.78898443198838, -73.78717044325958 40.788972480511156, -73.78739381846418 40.78895360850839, -73.78761599872567 40.78892784772153, -73.7877737981912 40.788912048208125, -73.78793024729057 40.78888980559394, -73.78808489081297 40.78886118388363, -73.78823727822899 40.78882626600358, -73.78838696724557 40.78878515380794, -73.7883893906825 40.78880698195691, -73.78772635523923 40.788980419804446, -73.78691385336724 40.78915232859543, -73.78622695230574 40.78924638024902, -73.78607354083144 40.78925313303034, -73.78605611591057 40.78925312409883, -73.78603891339498 40.78925100839973, -73.78602237386389 40.78924683898024, -73.78600691758082 40.78924072288034, -73.78599293977189 40.78923281572098, -73.78598079404702 40.78922331897154, -73.78597079004773 40.78921247454253, -73.78596318517388 40.789200558466575, -73.78594945444226 40.789020359346864, -73.78594828422173 40.7890114016671, -73.78594911875575 40.78900242249652, -73.78595193707396 40.78899367934019)), ((-73.80604577660614 40.786108857819656, -73.80443195785125 40.78597687410917, -73.80388790253602 40.785917424976454, -73.80385973061534 40.78591696550372, -73.80396180423664 40.78590992344502, -73.80509326365164 40.78591906456994, -73.80509168044827 40.785918385614366, -73.80510008881382 40.78591912023719, -73.80517453890243 40.78591972068461, -73.80522501973356 40.785914063501515, -73.80527414395131 40.78590356920149, -73.80532111016099 40.785888407528205, -73.80536515584265 40.78586882483492, -73.80540556328565 40.78584514049227, -73.80551150502559 40.78574312209741, -73.80551494317132 40.7857382480716, -73.80556821975465 40.78568393225265, -73.80561533544424 40.78562642183739, -73.80565596327239 40.78556611880694, -73.80568981649576 40.78550344592118, -73.80576891120904 40.78565806151169, -73.80585466583821 40.785810611702296, -73.80594698849148 40.78596093153143, -73.80604577660614 40.786108857819656)), ((-73.72397732425844 40.72581781529579, -73.72397404739368 40.72551899634889, -73.72394304230126 40.72537466785413, -73.72422241921316 40.72550241780423, -73.72378455259954 40.72766860769948, -73.72377100867922 40.72766857520892, -73.72377374210265 40.72700913677553, -73.72391198551144 40.726332849595224, -73.72397732425844 40.72581781529579)), ((-73.72436502152931 40.72704489929342, -73.7242873769507 40.727261094140346, -73.72415065667087 40.72756988137459, -73.72408750749919 40.72755599184233, -73.72449725310932 40.72563702621886, -73.72467298170898 40.725719876858044, -73.72436502152931 40.72704489929342)), ((-73.7223595087267 40.73489856257957, -73.7222832998339 40.7347469387433, -73.72220355351574 40.73460593326668, -73.72215861318375 40.73449423694521, -73.72259208749155 40.73440494887413, -73.72260539414394 40.73456439234471, -73.72261521963142 40.7347211700127, -73.722642464794 40.73488861657983, -73.72266641682846 40.7350082325949, -73.7226867317072 40.73516237899611, -73.72272104044887 40.73531124516217, -73.722755437781 40.73543885673535, -73.72278293781908 40.73554519690014, -73.72280683389427 40.73567809709665, -73.72282049616979 40.73575252130209, -73.72281334450896 40.73579235716013, -73.72277844946406 40.73578430272877, -73.72273702300996 40.73566730119136, -73.72269544071608 40.73558749582325, -73.72266428259388 40.73552099990167, -73.72260189899248 40.73540394783761, -73.72255347619499 40.73528958678535, -73.72248770027635 40.735148615176605, -73.72241492776998 40.73501028407402, -73.7223595087267 40.73489856257957)), ((-73.72308474201559 40.73224690084039, -73.72313760049192 40.73205210385543, -73.72312722694204 40.73262162258229, -73.72312157818315 40.7330175482013, -73.72311313950071 40.733121081458535, -73.72310358823599 40.73349263159721, -73.72316546084035 40.734019683743476, -73.72290101612697 40.734064733417675, -73.72289856916034 40.7336901080174, -73.72292828137134 40.73328510374314, -73.72295344394072 40.73301105184715, -73.72302744923873 40.73254524068715, -73.72308474201559 40.73224690084039)), ((-73.78150688569971 40.78923994027732, -73.78121886478957 40.78919498916719, -73.78093281073753 40.789143289099464, -73.78064899832967 40.789084891940085, -73.7803676964189 40.789019851347334, -73.7800891761918 40.78894823089194, -73.77981370289196 40.78887009863821, -73.78015802413884 40.78893019097745, -73.78052682077039 40.789002768452995, -73.78116460797132 40.789069136247775, -73.78156692377482 40.78908418052688, -73.78159411875886 40.789084124004695, -73.78165879513071 40.78908366842632, -73.78172281757503 40.78907668202229, -73.78178504944069 40.78906328871209, -73.7818443868782 40.78904372684362, -73.7818997754492 40.78901834292079, -73.7820119308438 40.788939210840866, -73.78219109638047 40.78879654511328, -73.78221293001329 40.788806635992884, -73.78208772404373 40.789309434990585, -73.78179659745891 40.78927810137006, -73.78150688569971 40.78923994027732)), ((-73.75716513856041 40.76332778250325, -73.75706117854709 40.7633171930824, -73.75697139697506 40.76330092065696, -73.75688697299456 40.76328184628121, -73.75678811100187 40.76324323186521, -73.75672060651536 40.76321772113546, -73.7566687458441 40.76319292329184, -73.7566039224984 40.763160691363495, -73.75653910158415 40.76312845940352, -73.75648818339563 40.7631008529851, -73.75644188993789 40.76307393980658, -73.75637712419051 40.76303249837866, -73.75632527082134 40.76299962824319, -73.75627670188874 40.762962493023686, -73.75622368982026 40.76292070446333, -73.75615694341201 40.762860700154405, -73.7561116849739 40.76280413801262, -73.75607610363551 40.76276703020052, -73.75604703526832 40.7627249986845, -73.75603094521286 40.76268546293724, -73.75602455103001 40.76265829278254, -73.7560235559411 40.76262085566524, -73.75636645018346 40.76252923063736, -73.75634306811456 40.76257255684754, -73.75631039093828 40.76262927105229, -73.75628089670674 40.76270327362602, -73.75627741558252 40.7627674562576, -73.75628697600041 40.762816853124995, -73.75631598133135 40.76287616609071, -73.7563450228356 40.7629256050574, -73.75638379766461 40.762977531990096, -73.75643881521788 40.763027024957665, -73.75652083749353 40.763080279662354, -73.75660403076496 40.763131064888206, -73.75669480184557 40.763170758294436, -73.75677910637188 40.76320303130102, -73.7568407172659 40.76322538048211, -73.75692829641199 40.76325025361461, -73.75700618731358 40.76326029379535, -73.75705811238284 40.7632678099791, -73.75711331073977 40.76326792636465, -73.75717825026207 40.763268063255545, -73.7572334756161 40.76326077296467, -73.7572887471255 40.76324113858522, -73.75734729066522 40.76321410439514, -73.75738313374998 40.76317961659705, -73.75740925363725 40.76314016992979, -73.7574321170592 40.763103185592165, -73.75744521234695 40.763073587360495, -73.75744856767483 40.763043968621574, -73.75744863060888 40.76302668711056, -73.75744550005162 40.7629945855241, -73.75752024334888 40.76297746121949, -73.75804073562642 40.76360317016802, -73.75806008353426 40.76364024327603, -73.75801459799274 40.76364755442132, -73.75794986445929 40.7635906351264, -73.75789157211507 40.76354854268127, -73.75782352848498 40.76350889800003, -73.75774900017845 40.76346677135137, -73.75765172535067 40.76342953429068, -73.75756089044184 40.76340712315008, -73.75747653252333 40.76338966395656, -73.7574051609159 40.763372232047445, -73.75733377254079 40.76335973754219, -73.75724615829215 40.763344739612194, -73.75716513856041 40.76332778250325)), ((-73.727560068486 40.70582334498938, -73.72756570122463 40.70582331869834, -73.72757132980242 40.70582344188276, -73.72757727008344 40.705823735101596, -73.72758254965918 40.70582412851477, -73.7275881314716 40.70582469193993, -73.7275936878495 40.70582539848664, -73.72759920575795 40.70582625262662, -73.72760468048216 40.70582724984616, -73.72761010847584 40.70582838923632, -73.72761548382252 40.70582967078313, -73.72762079115752 40.70583108994767, -73.7276260375587 40.705832652149795, -73.7276312088741 40.70583434564933, -73.72763630271508 40.70583617584367, -73.72764130609092 40.705838136398555, -73.72764622136096 40.705840229120554, -73.72765103790105 40.70584244768094, -73.72765834742545 40.705846184105475, -73.72766484905189 40.70584984387529, -73.72766921987838 40.70585254405686, -73.72767346362699 40.70585535740256, -73.72767758149944 40.70585827941271, -73.72768156639954 40.70586130917004, -73.72768540769951 40.7058644412463, -73.72768910897135 40.70586767024685, -73.72769272315892 40.70587107103979, -73.72769619500325 40.70587455614435, -73.72770049245582 40.70588015581182, -73.72770453741776 40.70588586384427, -73.72770832638334 40.70589166942718, -73.72771185699683 40.70589756985354, -73.72771512692837 40.70590355611264, -73.72771812908894 40.70590962548618, -73.72772086470242 40.70591576807146, -73.72772332434253 40.70592197394048, -73.72772513728229 40.70592716880159, -73.72772741813546 40.705934559326344, -73.72772904523963 40.705940926219284, -73.72773039056767 40.70594732846637, -73.72773145177486 40.70595376065889, -73.7277322300592 40.705960219197685, -73.72773272192218 40.70596669146722, -73.72773292501171 40.7059731738599, -73.72773284528841 40.70597965558362, -73.72773475763485 40.706028887700214, -73.72773666643775 40.70607811890753, -73.72773857880452 40.70612734742144, -73.72774048996871 40.70617658133518, -73.72774240116513 40.70622580804454, -73.72774335497469 40.70625042499694, -73.72774430996829 40.70627504195201, -73.72774622234635 40.706324270464506, -73.72774813234956 40.70637350167255, -73.72775004353521 40.70642273378356, -73.72775222004353 40.706475091311155, -73.72775439417393 40.706527452434784, -73.72775656712446 40.70657981355521, -73.72775791728782 40.70661227223362, -73.72775874362837 40.70663217468367, -73.72776091777638 40.706684534005056, -73.72776309074077 40.706736894223816, -73.72776443654125 40.706769263740135, -73.72776526725495 40.70678925535103, -73.7277674426002 40.706841613773584, -73.7277696155712 40.70689397489162, -73.72777377380457 40.7069388988432, -73.72777587149315 40.70698390707236, -73.72777590208807 40.70702886358591, -73.72777386956461 40.707073952998925, -73.72776978103049 40.70711888266066, -73.7277636304692 40.707163675969944, -73.72775543466776 40.70720827803474, -73.72774981483674 40.70723264079978, -73.72774520212613 40.70725263484384, -73.72773294015013 40.70729669508458, -73.72771866908808 40.70734040117148, -73.727702403346 40.70738370180851, -73.72768777378431 40.707435495473966, -73.72767529828232 40.70747966596598, -73.72767314182956 40.70748729003214, -73.72767002830795 40.707498324787984, -73.72766744194784 40.70750748231546, -73.7276585145891 40.70753908369878, -73.7276438849592 40.70759087735764, -73.72763358651385 40.707537510951525, -73.72762329165334 40.70748414005, -73.72761299561866 40.707430770945436, -73.72760745188585 40.70740203228072, -73.7276026984208 40.707377400936224, -73.7276002021267 40.70732513360709, -73.72759770820682 40.70727286538263, -73.72759521192417 40.70722059715213, -73.7275927156418 40.707168329821734, -73.7275902205577 40.70711605979221, -73.72758985967793 40.70710852072202, -73.7275877230998 40.70706379245819, -73.72758522919949 40.70701152423169, -73.72758273175309 40.70695925599633, -73.72758023549399 40.7069069877634, -73.72757773923136 40.70685472133108, -73.72757524299107 40.70680245039579, -73.72757274555671 40.706750183059306, -73.72757025167988 40.706697914830315, -73.72756775543661 40.706645647495826, -73.7275652591973 40.706593380160946, -73.72756276414516 40.70654111282842, -73.72756048967894 40.70648670098922, -73.72755821401833 40.70643229274879, -73.72755593954476 40.706377884510786, -73.72755366626194 40.706323475374596, -73.72755139179216 40.70626906803618, -73.7275491173334 40.70621465889637, -73.72754684287467 40.706160250656616, -73.72754456841602 40.70610584331695, -73.72754229515175 40.70605143417861, -73.72754002070417 40.70599702593754, -73.72753774626028 40.705942617696046, -73.72753547064056 40.70588820855084, -73.72753454368006 40.705866017648376, -73.7275332500513 40.70583510168125, -73.7275328039368 40.705824389890765, -73.727560068486 40.70582334498938)), ((-73.8216496596782 40.78935408682351, -73.82173402369442 40.7893550404025, -73.82181967569369 40.78936215624876, -73.82190407095595 40.78937535118292, -73.82198646338823 40.78939450789051, -73.822066127174 40.78941945776169, -73.82206630001092 40.789419512058664, -73.82214680583232 40.78944417681407, -73.82222556422602 40.78947190773025, -73.82230237515361 40.78950263516365, -73.82219164904221 40.78953269156045, -73.82207842579302 40.789556780868416, -73.8219632614234 40.789574785973265, -73.82184672135696 40.789586617693004, -73.82172937685894 40.78959221837437, -73.82161180385285 40.78959156099072, -73.82149458055491 40.78958464733733, -73.82137828153738 40.789571512524766, -73.82137834921386 40.789571459499996, -73.82112809713564 40.78953743851502, -73.82087968176168 40.789496373408284, -73.82063344542303 40.78944832145586, -73.82038972805358 40.78939334893784, -73.8204414602658 40.78936920872827, -73.82164787067255 40.78935406694551, -73.82163925173765 40.78935430844977, -73.8216496596782 40.78935408682351)), ((-73.78907987816167 40.788914333268586, -73.78924000642235 40.78887088065205, -73.78946205629471 40.78880360916876, -73.78974553160204 40.788731437131105, -73.78995593983086 40.78866981302721, -73.79058722635462 40.78851915404967, -73.79059280007928 40.78852578918026, -73.78986209357036 40.788889706962884, -73.78981230708739 40.78888895790909, -73.78968252488843 40.78889621063592, -73.78955358002509 40.78890955214809, -73.7894259702384 40.78892893202921, -73.78930018149974 40.78895427552978, -73.7891766962997 40.78898548538361, -73.78905598890651 40.789022442699135, -73.78879133707994 40.789107272594684, -73.7882584649719 40.7892315323365, -73.78822034283864 40.78923892296251, -73.78815704849032 40.7892488607599, -73.78808001189232 40.78925310818855, -73.78798485762434 40.78923676644914, -73.7880229357374 40.789185158405104, -73.78820027851087 40.78913974067593, -73.78861800397928 40.789032592154264, -73.78884376955885 40.78896974564546, -73.7889263750304 40.78896079737282, -73.78907987816167 40.788914333268586)), ((-73.75731575173856 40.76234100560465, -73.7578733672709 40.76223241599303, -73.75783062343204 40.762271585589446, -73.7578073209919 40.7623050255885, -73.75778863591083 40.76234376307228, -73.75778149451556 40.76239486268103, -73.75778135349846 40.76243363915029, -73.7577904344478 40.7624865351587, -73.75780185758103 40.7625323869152, -73.75781333319136 40.76256413682899, -73.75782250912899 40.762590595026204, -73.75784093911079 40.76262236045611, -73.75786859515641 40.76266648313057, -73.75792389051085 40.7627600153042, -73.75802529802145 40.76292238546774, -73.75812668682394 40.7630900432789, -73.75821196353918 40.763225940496035, -73.75827415029623 40.763337113491495, -73.75832253710311 40.76341829401204, -73.75835463864597 40.763515302796044, -73.75829891990901 40.76353809933039, -73.75816288700601 40.76333511769403, -73.75798525016945 40.76309855951931, -73.75777057506211 40.76284782213991, -73.75764121733792 40.76272240742417, -73.75730166325917 40.76239032735573, -73.75731575173856 40.76234100560465)), ((-73.81547216628071 40.78738954040182, -73.81468646306567 40.78727887671683, -73.81468113799855 40.78727530036154, -73.81459624145116 40.78726616869398, -73.8145277779279 40.78725652581065, -73.81452800609446 40.78725882966447, -73.81387986399676 40.78718612725415, -73.81350146843255 40.78713132867994, -73.81350568755266 40.787111814402785, -73.81352202690394 40.78711131224641, -73.81353802022642 40.78710872216189, -73.8135532088039 40.78710411904953, -73.81356715982639 40.78709763458337, -73.81357947113686 40.787089454517584, -73.81358979020281 40.7870798133137, -73.81359207241051 40.78706614826961, -73.81359275479039 40.78706574144543, -73.81359483423753 40.7870495960879, -73.81359504625931 40.78704961444088, -73.81362772488212 40.78705243633781, -73.81509267096706 40.78716843950771, -73.81522222307325 40.78719617476539, -73.81534962815422 40.7872291554691, -73.81547452159134 40.78726728648917, -73.8155965423575 40.78731045829513, -73.81571533894554 40.787358545164025, -73.8158665515785 40.78742273336897, -73.81586637825845 40.787429283350384, -73.81586589940905 40.78744734847507, -73.8158657050107 40.78745466565126, -73.81567904180014 40.78741991402643, -73.81547216628071 40.78738954040182)), ((-73.81898946445513 40.78895256936363, -73.81889884614239 40.78891164684345, -73.81881278616676 40.78886538783502, -73.81873182638267 40.788814084063034, -73.81776325252036 40.78818794270958, -73.81773538942885 40.78817123394413, -73.81771128940821 40.788151431593256, -73.8176915411599 40.78812901835952, -73.81767662420823 40.78810454070847, -73.81766690538055 40.788078596255616, -73.8176626187087 40.78805181842599, -73.8176638713981 40.78802486025435, -73.81769981586548 40.788012562217325, -73.81897307781972 40.78872455165988, -73.8190516070002 40.78870765727965, -73.81918206481961 40.78901741071698, -73.81908406953032 40.78898789874486, -73.81898946445513 40.78895256936363)), ((-73.80896469067869 40.786745736084086, -73.80896138502332 40.786765615515705, -73.80881569963961 40.78675323604983, -73.80867133828541 40.78674765739684, -73.80867126764473 40.78674791482345, -73.80856216044657 40.78674344003932, -73.80846646815036 40.78674025715659, -73.80841101936977 40.78674093852416, -73.8073466660465 40.786748531263676, -73.80714308432142 40.786743434311695, -73.80676005327625 40.78670673566091, -73.80670643836727 40.78669114358778, -73.80665633509004 40.78666984728985, -73.80661078949726 40.78664328887306, -73.80657074897513 40.78661202284175, -73.80653704807311 40.78657669986536, -73.80651039075867 40.78653805774297, -73.80649133152198 40.78649690065939, -73.8072177687732 40.78656808000148, -73.80847517803635 40.78669511860039, -73.80847514381057 40.7866950726178, -73.80849239233902 40.78669685816261, -73.80868014722789 40.78671582572543, -73.80868002271957 40.786716275770345, -73.80896469067869 40.786745736084086)), ((-73.8145562806251 40.78763868479722, -73.81440220347889 40.787583598848315, -73.81429274308108 40.787551364617215, -73.81415955201636 40.78752200604614, -73.81360401551444 40.787474718593415, -73.81360386775873 40.78747459678655, -73.81352906670035 40.78746795344173, -73.81353067435023 40.78745190998035, -73.813528671923 40.787435892195546, -73.81352312091265 40.78742036484612, -73.8135141788141 40.78740578023898, -73.81350210864679 40.78739256203533, -73.81348725884345 40.787381094412375, -73.81347006209556 40.78737171125538, -73.81345101880193 40.787364683524245, -73.81345450215771 40.787348570159, -73.81376469458274 40.78740397909476, -73.81384019398308 40.78741762572593, -73.8141551049856 40.78747297459372, -73.81428824154857 40.78749974953958, -73.81428984563962 40.78749893356716, -73.81459578965926 40.787576042741534, -73.81487277330095 40.78764136202788, -73.81514721031016 40.78771261988159, -73.81541888172866 40.78778975833773, -73.81568756978962 40.78787271583311, -73.81595305792226 40.78796142540515, -73.81593690138673 40.788119866491364, -73.8145562806251 40.78763868479722)), ((-73.8132723397353 40.78708166053361, -73.81327035646315 40.78709094420807, -73.81303551829026 40.78705618407271, -73.81303550826007 40.7870593340161, -73.81281994321213 40.787026994640534, -73.81219603978796 40.7869390955093, -73.81173791848646 40.78687628179123, -73.81173797491213 40.786875181468645, -73.81014008926994 40.78666700684969, -73.81012148650652 40.786618284194894, -73.81012242634796 40.786611106932085, -73.81012479682653 40.78660412293298, -73.81012854060877 40.78659749509405, -73.81013357194784 40.78659137906099, -73.81013977077531 40.786585917815835, -73.81014699455348 40.78658123989556, -73.81015507117999 40.78657745487788, -73.81016381439984 40.78657464980454, -73.81317585049192 40.7870050406462, -73.81317653579569 40.78700570362683, -73.81317641076254 40.787004662442655, -73.8131770072276 40.787004474303906, -73.813203264672 40.78700803693165, -73.81320398295865 40.78702016967284, -73.81320729896377 40.787032049080544, -73.8132131259056 40.78704335803669, -73.81322130470147 40.78705379011214, -73.81323161695185 40.78706306669702, -73.8132437861226 40.787070937903266, -73.81325748225869 40.78707719157744, -73.8132723397353 40.78708166053361)), ((-73.81001600753234 40.78702555741833, -73.81000343521171 40.78702997797398, -73.80999007142795 40.787032751103666, -73.80939256191027 40.786971465856354, -73.80811694789665 40.78684519761675, -73.80810614366138 40.78684533001178, -73.80777198069653 40.7868143379251, -73.80777182517362 40.7868144484276, -73.8077697860287 40.786814096531664, -73.80776785305768 40.786813491771404, -73.80776607834056 40.78681265134323, -73.80776451394425 40.78681159694608, -73.8077632012442 40.786810360166626, -73.80776217805641 40.7868089743865, -73.8077614727032 40.78680747837463, -73.80776110401858 40.786805914486116, -73.80776108372778 40.78680432506413, -73.80776141169815 40.78680275603411, -73.80776207832953 40.78680124970373, -73.80776306572567 40.78679984926728, -73.80776434652795 40.78679859250022, -73.80776588390233 40.7867975162617, -73.80776763629916 40.78679664929861, -73.80776955388846 40.78679601584134, -73.80777158330419 40.78679563381092, -73.80777172550876 40.78679562234159, -73.80777336433108 40.78679551971614, -73.80777500623185 40.78679558188792, -73.80853587549782 40.78678623060962, -73.80853595917942 40.7868238735825, -73.80868316004114 40.78681355423248, -73.80883083507752 40.78680848901653, -73.80897865966378 40.78680869000179, -73.80912630921173 40.78681415665008, -73.80927346035125 40.78682487672021, -73.80941978855779 40.786840827164916, -73.80942159286832 40.786840856263176, -73.8097413276152 40.78686890121653, -73.81001241314843 40.78687726474309, -73.8100339773903 40.786926136375534, -73.81004287564528 40.78693420514225, -73.81004988842481 40.786943285667704, -73.81005481977779 40.78695312548846, -73.81005753305232 40.786963450626544, -73.81005795323975 40.78697397459851, -73.81005606695425 40.78698440561935, -73.81005192952091 40.786994453818096, -73.81004565310275 40.787003840223456, -73.810037413786 40.78701230487985, -73.81002743972009 40.787019611330706, -73.81001600753234 40.78702555741833)), ((-73.72428699327791 40.72735382808021, -73.72431859561004 40.72735390374746, -73.7239547085781 40.729097813168394, -73.72380581953664 40.729073414239615, -73.72404976909161 40.72794744726606, -73.72415475901234 40.72766949517252, -73.72428699327791 40.72735382808021)), ((-73.724323140835 40.72459670903493, -73.72443905289936 40.724559244175694, -73.72430892771365 40.72517719468899, -73.72409921146854 40.725047288557846, -73.7238682724941 40.724908344920465, -73.72365151496925 40.72476763742767, -73.72366062870613 40.7247657511129, -73.72388322862199 40.72471966735476, -73.72409607119997 40.72466446189707, -73.72412789416028 40.72465496658914, -73.724323140835 40.72459670903493)), ((-73.79130916072036 40.78768623359493, -73.79122175393958 40.787689553933525, -73.7911348170224 40.787697183065916, -73.79104871496088 40.78770909013733, -73.79098048063518 40.78765454087757, -73.7910245989033 40.78763469184045, -73.79102164654485 40.78763465767096, -73.79119553454844 40.78755778708929, -73.79131808407938 40.78750265150284, -73.79131921409662 40.78750311190519, -73.79193074778232 40.787232768003676, -73.7919619152743 40.78727645636499, -73.7919764580558 40.787289060848295, -73.79199365539246 40.78729955753962, -73.79201298697748 40.787307628521525, -73.79203386592269 40.78731303049852, -73.79205566244268 40.78731559844181, -73.79207771449016 40.78731525461367, -73.79209935381527 40.78731201041554, -73.792119924931 40.787305963720755, -73.79213880525705 40.78729729801015, -73.79256938040378 40.78709931464946, -73.79256815178928 40.787096655952794, -73.79279534287463 40.78699235048988, -73.7928211889168 40.78702269079406, -73.79263116063224 40.787109424118285, -73.79236952598865 40.78724084800678, -73.7915759541266 40.78760781067123, -73.79157641560069 40.78760799881052, -73.79155783516403 40.78761618950539, -73.7915057492055 40.78764027470892, -73.7915032636322 40.78764024589876, -73.79139666531538 40.78768723668419, -73.79130916072036 40.78768623359493)), ((-73.72370360117735 40.727592852313165, -73.72370233379596 40.72789852939681, -73.72347185148429 40.72904170078291, -73.72332745014081 40.72902418112585, -73.72367283899904 40.7273901359887, -73.72369988400239 40.727400505462526, -73.72370360117735 40.727592852313165)), ((-73.72969877621078 40.71345179256468, -73.72973866451592 40.71335670450239, -73.73009154366741 40.713465150216955, -73.72991939991076 40.71387896886598, -73.72976804822108 40.714228437540775, -73.72974868213043 40.71413321037715, -73.7297102368828 40.713872622820894, -73.72967811136716 40.713677174409824, -73.7296785989665 40.71355694602612, -73.72969877621078 40.71345179256468)), ((-73.75563710179445 40.7609981353848, -73.75610919781336 40.76089946847301, -73.75634788914384 40.76090342069162, -73.75639793767205 40.760907017801856, -73.75648532471271 40.7609145597028, -73.75650159375228 40.76091578366197, -73.75651290973354 40.76094171159298, -73.75645108079034 40.76094170786988, -73.75638985556925 40.760948254785085, -73.75633042593108 40.76096122428683, -73.75627395222075 40.760980363088414, -73.75622153719145 40.76100529891645, -73.75617420230651 40.76103554406187, -73.75613287229521 40.761070508854694, -73.75609835143065 40.76110951151846, -73.75607131400902 40.76115179075668, -73.75605228889388 40.76119652192856, -73.75604164524745 40.761242832327035, -73.75603959127861 40.761289819185734, -73.75604911195205 40.76134737460255, -73.75576535125474 40.7612064850347, -73.75542269919691 40.761042849889755, -73.75563710179445 40.7609981353848)), ((-73.78100521602522 40.78949967668795, -73.78080885137294 40.78943417539141, -73.78063211228067 40.789370830900275, -73.78054309314173 40.789340551295105, -73.78070186188322 40.78933632757187, -73.78082327427711 40.789350254283534, -73.78093215446414 40.78937334578472, -73.78120169534922 40.78941467492186, -73.78138280936543 40.78945097391157, -73.78161440212048 40.78948520436608, -73.78181431243266 40.78950775518514, -73.78199719874594 40.789522577754944, -73.78194754990736 40.789637768082905, -73.78194179682443 40.789649230512374, -73.78193358346137 40.78965979228565, -73.78192314658499 40.78966915128112, -73.78191078446041 40.78967703971249, -73.78189684971893 40.789683231319636, -73.78188174221641 40.78968755126058, -73.7818658924549 40.78968987337861, -73.78184975442922 40.789690133696546, -73.78183379025114 40.78968832228292, -73.7818184547139 40.78968449312845, -73.78151226296075 40.789633281377625, -73.78126908373663 40.7895708366696, -73.78112615502546 40.78953229212925, -73.78100521602522 40.78949967668795)), ((-73.72493888406612 40.7248289805808, -73.72494500494682 40.72482435395603, -73.72495634303388 40.72483014432757, -73.72495870302355 40.72483134854858, -73.72527111175168 40.725636243052264, -73.72527714539832 40.7256525027113, -73.72527540815285 40.72565728839739, -73.72527257299296 40.72566510169162, -73.72527251672582 40.725665255545145, -73.72526637783697 40.725674524290895, -73.72525568202789 40.725679140016034, -73.72524651556229 40.7256825995282, -73.72523126401343 40.725682563133624, -73.7248750056119 40.725523900138235, -73.7248747351737 40.72552374910629, -73.72486007237214 40.725515582432394, -73.72485826668422 40.725514576746555, -73.72485723703608 40.72551339371291, -73.72484520641312 40.72549957089814, -73.72484308585734 40.72549713444413, -73.72483400563556 40.72547970761968, -73.72483410625404 40.725455339064375, -73.72488322691288 40.72515644543259, -73.72491702806312 40.72495076965292, -73.72493888406612 40.7248289805808)), ((-73.72484781816054 40.724426370294175, -73.72494584335566 40.724393220665085, -73.72474588025202 40.72540710470238, -73.72456394422085 40.725324493265, -73.72476673409825 40.724444152549665, -73.72484781816054 40.724426370294175)), ((-73.81718079867865 40.787972964431134, -73.8168831380177 40.7880412335594, -73.8162218115281 40.78779364123838, -73.8162513176583 40.78758401069095, -73.81718079867865 40.787972964431134)), ((-73.81845769732837 40.78871155359304, -73.81842772167346 40.788740343169884, -73.81798130106138 40.78852885292411, -73.81714076922398 40.7881672240303, -73.81746539433423 40.788088286366666, -73.81845769732837 40.78871155359304)), ((-73.72511208621955 40.73991332483141, -73.72508415312596 40.73991060074527, -73.72505972474374 40.7399052285098, -73.72501438129729 40.73988917939306, -73.7249689940061 40.739883757092294, -73.72493057109105 40.73988366532744, -73.72488517283767 40.73988090037747, -73.72484674992434 40.73988080858467, -73.72480830506318 40.73988603064615, -73.72477333081105 40.73989657400804, -73.72474190517237 40.73989384239274, -73.72471747563992 40.73988847008177, -73.7246861707691 40.73985651353289, -73.72466188398681 40.73981660242455, -73.72457548193238 40.739593220199076, -73.72446135636712 40.739316635975754, -73.72439902100389 40.73918630072863, -73.7244409690049 40.73917843067642, -73.72447921572834 40.73922103174417, -73.7246287325373 40.73938611366722, -73.72477821834384 40.73955916664648, -73.72513315475797 40.7398868064205, -73.72513309995469 40.739900090638194, -73.72511208621955 40.73991332483141)), ((-73.8059349571853 40.785346417660165, -73.80595375743889 40.78534571720747, -73.80597251549403 40.785346894230294, -73.80623656709503 40.785532558529184, -73.806236240958 40.78553308027283, -73.80633647881429 40.78559153204073, -73.80644040903616 40.785646132165645, -73.80644970666773 40.78565028379292, -73.8064427383827 40.78568398333452, -73.80638674012772 40.78569139316624, -73.80633287948945 40.78570519833596, -73.80628241440314 40.78572507677996, -73.80623652028281 40.7857505667195, -73.80619626868392 40.78578107112738, -73.80616259880733 40.785815879290844, -73.8061362973247 40.78585417848389, -73.80611797580234 40.785895076441, -73.8061177965909 40.785895998254944, -73.80611741371159 40.78589688280564, -73.80611683671576 40.78589770489501, -73.80611608344798 40.785898439339, -73.80611517529387 40.78589906546203, -73.80611414074221 40.785899564401426, -73.80611300827145 40.78589992089654, -73.80611181226521 40.7859001260002, -73.8061105882894 40.7859001716677, -73.80610937188615 40.78590005795882, -73.80610819858985 40.785899787634854, -73.8061071039191 40.78589936886009, -73.80610611982524 40.78589881429538, -73.80610527469744 40.78589813929702, -73.80580528610709 40.78540589270401, -73.80580448365488 40.78540033794714, -73.80580492406222 40.78539475916997, -73.805806595014 40.78538931664127, -73.80580944748158 40.7853841660656, -73.80581340047492 40.785379454088336, -73.80581834105044 40.78537531559462, -73.80582412906321 40.78537186921471, -73.80582466263532 40.78537090567453, -73.80582824894668 40.785370054437664, -73.80583499618729 40.78536796673204, -73.80584210811537 40.785366763934725, -73.80589852404385 40.78535337032522, -73.80591643938462 40.78534898352812, -73.8059349571853 40.785346417660165)), ((-73.81544037486728 40.787550820899604, -73.81516721168452 40.787475353231784, -73.81489125143233 40.78740600924528, -73.81461273438032 40.787342850540945, -73.81466179793124 40.78732462582942, -73.8147604558854 40.78732857466071, -73.81475925322063 40.787327766777544, -73.81500911245877 40.78736257632393, -73.81525773838739 40.787402162320184, -73.8155049723637 40.787446501107134, -73.81575065576102 40.78749556272329, -73.81599463468781 40.78754931811666, -73.8159773773994 40.787719867423746, -73.81571050781842 40.787632349760756, -73.81544037486728 40.787550820899604)), ((-73.79152333403202 40.78788799359365, -73.79165083064525 40.787826708961774, -73.79171886331184 40.78784748317602, -73.79178491267184 40.78787167477942, -73.79176132816457 40.78788841935322, -73.7916255366879 40.78797588205263, -73.79150255689892 40.788049038959414, -73.79138161260727 40.788107730130506, -73.79124029739144 40.78818439344488, -73.7910739973912 40.788265093278056, -73.79094892314241 40.788323091224655, -73.79094547839567 40.78832440241268, -73.7908173143967 40.78821521795925, -73.79089705699502 40.788181123725714, -73.79152333403202 40.78788799359365)), ((-73.72628149222959 40.69070202704658, -73.726293478471 40.69070186014282, -73.72631211308747 40.69070208096309, -73.72633072798841 40.690702781709305, -73.72634930188303 40.69070396143033, -73.72636780991671 40.690705622768604, -73.72638623910586 40.690707758489225, -73.72640509782823 40.69071045084735, -73.72646678031393 40.690719913329694, -73.72657908890429 40.69073786818433, -73.72657911428784 40.69073860216641, -73.72657958414055 40.690752118249854, -73.72658001800906 40.69076460045362, -73.72658187078389 40.690869590790335, -73.72658088537017 40.69097458789023, -73.72658265676137 40.691027588454304, -73.726584425804 40.69108058541031, -73.72658518472099 40.69110323792982, -73.72658619957804 40.69113358327766, -73.72658796861523 40.691186582934485, -73.72658974003247 40.69123957989496, -73.72659151026576 40.69129257775275, -73.72659255381424 40.69132371742438, -73.72659328405472 40.69134557471809, -73.72659505428626 40.69139857437615, -73.72659682570736 40.69145157313614, -73.72659759491991 40.69147460209524, -73.72659859477622 40.6915045691886, -73.72659920100546 40.69152262510305, -73.72659981642771 40.691541035843144, -73.7266003685654 40.69155756885396, -73.72660075743794 40.691569197258936, -73.72660213881554 40.69161056670949, -73.72660390907224 40.691663563664136, -73.72660567820036 40.69171654800845, -73.72659464582294 40.69166754805951, -73.7265910055349 40.69165138322792, -73.72658360879221 40.69161853278928, -73.72657257532691 40.69156951752616, -73.72656153832864 40.69152050225325, -73.72655417417934 40.69148778876819, -73.72655050371273 40.6914714869846, -73.72653763155698 40.69142080139083, -73.72652475586789 40.691370116687345, -73.72651188493433 40.69131943109286, -73.72649901283353 40.69126874639433, -73.72648613958042 40.69121805898965, -73.72647326515265 40.69116737428194, -73.72646039311432 40.691116688677624, -73.72644752227492 40.69106600397481, -73.72644024942149 40.69103961142971, -73.7264317796479 40.69101342585933, -73.72642212227935 40.69098748150529, -73.72641128784645 40.690961807208836, -73.72639928806264 40.69093643181402, -73.7263861405233 40.69091139228362, -73.72637185932271 40.69088671386516, -73.72635646326495 40.690862427220594, -73.726339968788 40.690838563006096, -73.72632239826348 40.690815147389486, -73.72630376813282 40.69079221012635, -73.726283094996 40.690769242786395, -73.72626881707052 40.690753581244515, -73.72626343272414 40.69074787806684, -73.72624177335672 40.69072653921065, -73.72621915569854 40.690705783406905, -73.72623765978584 40.69070408312477, -73.72625622815225 40.69070286296841, -73.72626631655513 40.69070246012006, -73.72627484069749 40.690702120188426, -73.72628149222959 40.69070202704658)), ((-73.72838971840848 40.712431082810006, -73.72799240231578 40.71251109919287, -73.72765660999549 40.71257872460442, -73.7276259123421 40.712562857845114, -73.72760514304734 40.71248491595857, -73.72763388737908 40.71249079229163, -73.72766348868393 40.71249315503446, -73.72769320990677 40.71249194661089, -73.7277223112686 40.71248719678925, -73.72778724460824 40.71246108593103, -73.72784509688718 40.71243103205064, -73.72789825329991 40.71239631858349, -73.72794606951246 40.712357367255365, -73.727987966082 40.7123146494741, -73.72802343319448 40.71226868543973, -73.7281538905063 40.71225514816414, -73.72838971840848 40.712431082810006)), ((-73.72365572003523 40.72495786391054, -73.72367433502232 40.72495770507011, -73.72370531617176 40.72496201633413, -73.7237249244227 40.72496809862716, -73.72427371876637 40.7253083908463, -73.72425314757174 40.72538538141608, -73.72361306566732 40.7250808221149, -73.72359287721474 40.72506536586473, -73.72358714948682 40.72505479719481, -73.72358453873174 40.7250449942399, -73.72358383974702 40.72503087521029, -73.723583889939 40.725018774229156, -73.72358850689096 40.72500120908856, -73.72359423264815 40.72499056255399, -73.72360185106696 40.72497992056253, -73.72361352362503 40.72497039953609, -73.72363032572088 40.72496298901757, -73.72365572003523 40.72495786391054)), ((-73.75763814006287 40.761445686159405, -73.75761005520124 40.76139819101645, -73.75756947935335 40.76134226243931, -73.75748324708582 40.76126230584544, -73.7575162164979 40.76123904398455, -73.75756263879569 40.76128499104796, -73.75760608914881 40.76132621407806, -73.75765585104811 40.76138460684562, -73.75771462660062 40.76147659938852, -73.75775700202537 40.76156465551537, -73.75779507114194 40.76164300860441, -73.75781400345763 40.76169451603353, -73.75783156811154 40.76173456882554, -73.75785080137157 40.76178084402916, -73.75787774725937 40.76186221922501, -73.75790155955755 40.76196214999652, -73.75756247194597 40.7620196376423, -73.75757968477072 40.76200307750408, -73.75761228941823 40.761972094796235, -73.7576357400248 40.76194512439512, -73.75765100825441 40.76191942360247, -73.75767021778928 40.76189570411092, -73.75768872565042 40.76186301858451, -73.75770519862559 40.7618163907146, -73.75771054812888 40.76177278316524, -73.7577120217046 40.76174014825693, -73.75771182671183 40.76170129003135, -73.7577105970514 40.76165222237266, -73.75769824396794 40.761606175936144, -73.75768716107339 40.7615521554706, -73.75767323576518 40.7615193152742, -73.75765867656482 40.76149046299258, -73.75763814006287 40.761445686159405)), ((-73.80254472008558 40.78588015774698, -73.80254705941923 40.78587994023117, -73.80254941444191 40.78588002531133, -73.8026071914385 40.785884655618446, -73.80276385941936 40.78589241243644, -73.80276258209103 40.78589287040763, -73.802835997782 40.785897894768915, -73.80296198990293 40.78590500720252, -73.80296192547654 40.78590796164414, -73.80369085926499 40.78597802206899, -73.80368132014678 40.78602045374914, -73.80307863411598 40.7859855206695, -73.80301941424734 40.7859848035217, -73.80255697710619 40.78596657484729, -73.80253833788805 40.78596563610587, -73.80253364661156 40.785890427025876, -73.80253386752491 40.78588864350707, -73.80253448043236 40.78588691288909, -73.80253546859524 40.78588528647201, -73.80253680226146 40.78588380922992, -73.80253844576067 40.785882524325984, -73.80254035040902 40.785881468597275, -73.80254246161769 40.785880672567465, -73.80254472008558 40.78588015774698)), ((-73.79042994323336 40.78838083810027, -73.79053876810876 40.78833431061367, -73.79065921641755 40.78843335249895, -73.79063985270196 40.78844072216463, -73.79042170428856 40.788506144372214, -73.79017787349542 40.78857054957156, -73.79001263876955 40.7886102940186, -73.78998389515561 40.788567630725666, -73.79042994323336 40.78838083810027)), ((-73.72337484900265 40.724825587499375, -73.7234839762555 40.7248023399176, -73.72354678523114 40.72484108225117, -73.72359910001552 40.72487979935863, -73.72360371945406 40.72489045631966, -73.7235867925784 40.72489485071468, -73.72355934382861 40.72490587464127, -73.7235400446622 40.724920023100246, -73.72351369068228 40.724947904557695, -73.72349901210522 40.724972709976875, -73.72348550927828 40.72499485629951, -73.72347732102864 40.725001046576615, -73.72342378075166 40.72497696521994, -73.72339294168567 40.72496180933612, -73.72336966683778 40.724950220541764, -73.7233411460449 40.724938619137866, -73.72328758442534 40.7249194166489, -73.72321770710634 40.72489795695017, -73.72318625878891 40.724889009487995, -73.72315538296269 40.724882725312014, -73.72312100760831 40.724876875765126, -73.72319687215112 40.724860646311576, -73.72337484900265 40.724825587499375)), ((-73.79111134814893 40.78730319096612, -73.79118951839811 40.78723210729655, -73.79132005728852 40.78732065431386, -73.79131695331513 40.78732136909634, -73.79132457491437 40.787325539620724, -73.79076238544472 40.78760065792466, -73.79077889922411 40.78758772515676, -73.79079351149217 40.787576281069065, -73.79087850765055 40.78750678318238, -73.79093829399459 40.787456910103536, -73.7910008099029 40.7874032832417, -73.79111134814893 40.78730319096612)), ((-73.72734292434919 40.7106615454869, -73.72717092183832 40.71062933626691, -73.727141275632 40.710288631705744, -73.72734292434919 40.7106615454869)), ((-73.81617427366811 40.78805016281237, -73.81617932046346 40.788031850131716, -73.81648770239431 40.78814688013299, -73.81631834431715 40.788174808687565, -73.81629382986942 40.788173102784256, -73.8162700395941 40.788168294897496, -73.8162476484467 40.78816052117927, -73.8162272896834 40.78815000146228, -73.81620954302542 40.78813703473854, -73.816194910993 40.78812198831532, -73.81618380826723 40.788105288793034, -73.8161765498746 40.788087410339564, -73.81617334174898 40.788068860267295, -73.81617427366811 40.78805016281237)), ((-73.79188130243426 40.787803240424495, -73.79187545322486 40.78780739288923, -73.79182417323655 40.7877870317427, -73.79177161582199 40.78776864937286, -73.79210950444475 40.78760623311563, -73.79213524402626 40.78763687504756, -73.7920479667355 40.78767653336117, -73.79198224301417 40.78771651507226, -73.79193625005001 40.78776309703789, -73.79188130243426 40.787803240424495)), ((-73.7949208510449 40.7860561463945, -73.79491745065431 40.78605504443071, -73.79491432873353 40.78605354043722, -73.79491156810084 40.7860516714821, -73.79485817344771 40.78600257374656, -73.79485715965826 40.78600284299357, -73.79484105142215 40.78598720769132, -73.79484081249848 40.78598669487947, -73.79484059609868 40.78598617760517, -73.7948404045952 40.785985654972166, -73.79484023799067 40.785985126079964, -73.79484009509207 40.785984593627944, -73.79483997589944 40.785984057616105, -73.79483988277943 40.78598351894917, -73.79483981454452 40.78598297852553, -73.79483977000999 40.7859824363431, -73.79483975035785 40.785981893304424, -73.79483975677277 40.785981349411664, -73.79483978806175 40.78598080736418, -73.7948398430455 40.78598026535891, -73.79483992290331 40.78597972519889, -73.79484002881708 40.785979187786786, -73.79484015841463 40.785978654018834, -73.79484031288058 40.7859781238972, -73.79484049103309 40.78597759651922, -73.79484069404295 40.78597707638952, -73.79484091954903 40.785976560802396, -73.79484116991247 40.78597605246355, -73.79484144276931 40.785975549567745, -73.79484173929328 40.78597505571911, -73.79484205712038 40.78597456911244, -73.79484239743259 40.78597409065036, -73.79484276022154 40.7859736230343, -73.79484314312617 40.78597316355859, -73.79484354850479 40.78597271582939, -73.79484397280596 40.78597227893998, -73.79484441721443 40.78597185289238, -73.79484488172189 40.78597144038808, -73.79484536278245 40.78597103871932, -73.79484586512395 40.785970651496505, -73.79484638282817 40.78597027690808, -73.79484691707718 40.78596991585665, -73.79484746786541 40.78596957014323, -73.79484803519286 40.78596923976777, -73.79484861669 40.78596892472614, -73.7948492123624 40.785968623217265, -73.7948498221962 40.785968339743725, -73.79485044383024 40.78596807159968, -73.79485107726175 40.785967819685744, -73.79494661160206 40.78594940871328, -73.79494771563084 40.785949459304796, -73.79494881482917 40.78594953960434, -73.79494991038734 40.785949647813, -73.79495100111778 40.78594978482919, -73.79495208346907 40.785949949746104, -73.79495315862314 40.78595014346628, -73.79495422421337 40.78595036508506, -73.79495527905493 40.78595061460028, -73.79495632196591 40.785950891109415, -73.79495735175878 40.78595119551077, -73.79495836725434 40.78595152600134, -73.79495936726784 40.78595188257892, -73.79496035061185 40.785952266141955, -73.79496131610979 40.78595267398681, -73.79496226257153 40.78595310791243, -73.7949631888178 40.785953566115644, -73.79496409366938 40.78595404679341, -73.79496497593331 40.78595455264504, -73.79496583562059 40.785955080068646, -73.79496667035616 40.78595563086086, -73.79496747896373 40.785956202318225, -73.7949676858137 40.78595635847335, -73.7949507102312 40.78604154472866, -73.79495002286802 40.786044305350224, -73.79494875653444 40.78604694517469, -73.79494694698631 40.78604939492686, -73.79494463825861 40.786051589848825, -73.79494189450779 40.786053471521974, -73.79493878578344 40.78605499144371, -73.79493539395484 40.78605611013756, -73.79493181034435 40.78605679624827, -73.79492812622715 40.78605703372929, -73.79492444114662 40.786056814653094, -73.7949208510449 40.7860561463945)), ((-73.72929832857233 40.716071440206726, -73.72927169993456 40.716075448815815, -73.72929626263662 40.71602033025073, -73.72932690715511 40.715967004495525, -73.72929832857233 40.716071440206726)), ((-73.72902275299693 40.716386834657996, -73.72902134952786 40.71637107145089, -73.72902740552732 40.716370789435935, -73.72902275299693 40.716386834657996)), ((-73.8216496596782 40.78935408682351, -73.82164787067255 40.78935406694551, -73.82165457098303 40.789353982761185, -73.8216496596782 40.78935408682351)))",Q135,69239,Q135,Q-13,Q-13,Q-13,Q-13,Whitestone Exwy. at 13 Ave. to the Linden Blvd and the Belt Pkwy.,"407, 411, 413","19,23,27",109,"11003, 11357, 11359, 11360, 11361, 11362, 11364, 1",Q,326.895,False,Cross Island Parkway,No,100000039,PARK,,19380715000000.00000,,DPR/CDOT,True,Cross Island Parkway,N,Cross Island Parkway,PKWY,Parkway,http://www.nycgovparks.org/parks/Q135/,Yes,"24, 33, 27",11,3,{124B45D7-E8BD-4B8A-9573-E3BCBBE2285D} +"MULTIPOLYGON (((-73.94519019107632 40.68617686121562, -73.94525614680065 40.68616926976208, -73.94530143730564 40.68639515187204, -73.94523548253493 40.686402756859636, -73.9451674632608 40.686410599461794, -73.9451221696717 40.686184691182966, -73.94519019107632 40.68617686121562)))",B502,6230,B502,B-03,B-03,B-03,B-03,Monroe St. between Tompkins Ave. and Marcy Ave.,303,36,79,11216,B,0.074,False,Shiloh Garden,No,100004396,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Shiloh Garden,N,Shiloh Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B502/,No,56,25,8,{6A069253-FD9E-468D-9AE3-FDC031F62B48} +"MULTIPOLYGON (((-73.88371746200323 40.76160916542138, -73.88446145308134 40.76152781851045, -73.88475504985148 40.763163590191496, -73.88401353091191 40.7632391728506, -73.88371746200323 40.76160916542138)))",Q085,5411,Q085,Q-03,Q-03,Q-03,Q-03,"30 Ave., 25 Ave. bet. 84 St. and 85 St.",403,22,115,11370,Q,2.755,False,Gorman Playground,Yes,100000189,PARK,20110712000000.00000,19310516000000.00000,84-11 30 AVENUE,DPR,False,Gorman Playground,Y,Gorman Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q085/,No,34,13,14,{34DBDB8F-53F9-4D55-8FA7-79B7269D0DE4} +"MULTIPOLYGON (((-73.90768589184488 40.86860131155462, -73.90769329527457 40.86860027921306, -73.9077008206081 40.868600300540955, -73.90770814009151 40.8686016337165, -73.90771501098459 40.86860396607587, -73.90771962073518 40.868606451510686, -73.90772521343779 40.868610951225286, -73.90773012824026 40.868617571950125, -73.9077324199129 40.86862448323629, -73.90773253535158 40.868630196932656, -73.90773097602472 40.86863578502235, -73.90772808382101 40.8686410613774, -73.90772806121171 40.86864111268725, -73.9076650435616 40.868781080244915, -73.90761256467518 40.86889327791323, -73.90761233743008 40.86889376489594, -73.9076097009652 40.868898521870335, -73.90760609944246 40.868902898966, -73.90760251628676 40.868906009087986, -73.90759840818893 40.86890871987284, -73.90759324465132 40.86891121549589, -73.90758765254702 40.86891310204486, -73.90758173401643 40.86891428955251, -73.9075732696777 40.86891474832599, -73.90756322762603 40.868913526422666, -73.90753187494897 40.868888512728454, -73.90751879293715 40.86887597013682, -73.90750387665601 40.868864549883845, -73.90748751833756 40.86885454494228, -73.90747010791593 40.868846194253884, -73.90745106802926 40.86883926142689, -73.90743030860928 40.868833685155, -73.90740804191215 40.86882952053746, -73.90738242664018 40.86882526588052, -73.90737681880502 40.8688214144896, -73.9073729562278 40.86881647760886, -73.90737080429851 40.86881060559247, -73.90737112001393 40.868804514937025, -73.90737384733757 40.868798409108116, -73.90737794118745 40.86879400630059, -73.9075487951806 40.86868206932855, -73.90766920343366 40.8686095079628, -73.90768008160804 40.868603124093504, -73.90768589184488 40.86860131155462)))",X070,5779,X070,X-07,X-07,X-07,X-07,Bailey Ave. at Heath Ave.,207,14,52,"10463, 10468",X,0.11,False,Heath Triangle,Yes,100004030,PARK,20100106000000.00000,19030320000000.00000,,DPR,True,Heath Triangle,Y,Heath Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X070/,No,86,33,13,{DD837FF2-1C81-4FF5-9D2C-82D65952261A} +"MULTIPOLYGON (((-73.86898355842415 40.656682651582415, -73.86954589892481 40.65643630481564, -73.86981092622112 40.65678718479484, -73.86996312882181 40.656988691135126, -73.86995948729754 40.65699028633779, -73.86996828496854 40.657002314594266, -73.8694015422646 40.65724274651622, -73.86929145217898 40.657092237697114, -73.86924634406925 40.657030567597815, -73.86898355842415 40.656682651582415)))",B541,5171,B541,B-05,B-05,B-05,B-05,Berriman St. between Vandalia Ave. and Schroeders Ave.,305,42,75,11239,B,0.959,False,Park,Yes,100008346,PARK,20120125000000.00000,20120124000000.00000,633 SCHROEDERS AV,DPR,True,Berriman Playground,N,Berriman Playground,Neighborhood Plgd,Playground,,No,60,19,8,{21431928-65B3-4AD3-830B-4111A10500EB} +"MULTIPOLYGON (((-73.89026548247787 40.82250148389025, -73.89027630279051 40.82262943764096, -73.89028741961783 40.82276091171101, -73.88992686376608 40.82277863746242, -73.88991574764971 40.82264716245751, -73.88990537217134 40.82252445358955, -73.889904928026 40.82251920957384, -73.89026548247787 40.82250148389025)))",X241,4720,X241,X-04,X-04,X-02,X-02,Hoe Ave. bet. Aldus St. and Bruckner Blvd.,202,17,41,10459,X,0.23,False,Hoe Garden,No,100004969,PARK,20100106000000.00000,19790717000000.00000,954 - 958 HOE AVENUE,DPR,False,Hoe Garden,Y,Hoe Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X241/,No,85,32,15,{E326DF23-7677-4CE6-8F4B-5FA6FF2BFA85} +"MULTIPOLYGON (((-73.83642108783836 40.77855458025554, -73.83639240341016 40.77848280990786, -73.83541479739465 40.776036681066344, -73.83481240523886 40.774529302546725, -73.83490124052462 40.7745286338193, -73.83589214344659 40.77452116856173, -73.83611583816355 40.7750810710831, -73.83675587570487 40.77486897613718, -73.83694204362318 40.77480728324007, -73.83786295304249 40.77450210331881, -73.83789573656914 40.77450059157173, -73.8388886804437 40.776374362774796, -73.83877537295659 40.778531712447126, -73.83862531703878 40.77852863430129, -73.8386271205892 40.778542575723705, -73.83642108783836 40.77855458025554)))",Q476,6256,Q476,Q-07,Q-07,Q-07,Q-07,"130 St. bet., 23rd Ave. and 26 Ave.",407,19,109,"11354, 11356",Q,26.83,False,College Point Fields,Yes,100000471,PARK,,19991119000000.00000,,DPR,False,College Point Fields,Y,College Point Fields,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q476/,No,27,11,14,{45DE2C6C-7561-4D11-8EC8-FDD013981EA3} +"MULTIPOLYGON (((-73.99807135309169 40.695542571632586, -73.99817955248577 40.695316069258844, -73.99824768395635 40.69533376719044, -73.99827626709842 40.695341192348664, -73.99829968590004 40.695347275659785, -73.99811544679501 40.695733188364926, -73.99799507495204 40.69570225732591, -73.99807135309169 40.695542571632586)))",B223DD,5805,B223DD,B-02,B-02,B-02,B-02,BQE bet. Remsen St. and Montague St.,302,33,84,11201,B,0.108,False,Brooklyn Heights Promenade,No,100008308,PARK,20100106000000.00000,19470514000000.00000,,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B233DD/,No,52,26,7,{37ACA876-BF9D-4131-BBED-76ABD824CEB3} +"MULTIPOLYGON (((-73.89008796904012 40.843281930358145, -73.89053023751781 40.8427622673336, -73.89137344579493 40.8432633633548, -73.89097927835603 40.843722748285956, -73.89008796904012 40.843281930358145)))",X148H1,4746,X148H1,X-06,X-06,X-06,X-06,Fairmount Pl bet. Clinton Av and Prospect Av,206,17,48,10457,X,1.438,False,Prospect Playground,Yes,100005140,PARK,20100106000000.00000,19530514000000.00000,1883 FAIRMOUNT PLACE,DPR/DOE,Part,Prospect Playground,Y,Prospect Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X148H1/,No,79,33,15,{E74117AC-6246-4DB9-9056-74AA291A679F} +"MULTIPOLYGON (((-73.94288174658638 40.84745053312426, -73.94288891746193 40.84745041420774, -73.94289609050345 40.847450534822826, -73.94290324911091 40.847450893160264, -73.9429103790535 40.84745149011353, -73.94291746847595 40.84745232207476, -73.94292450314683 40.84745339083797, -73.94293146883987 40.8474546918936, -73.9429383536976 40.847456224335346, -73.94294514349386 40.847457983653726, -73.94295182400097 40.84745996714021, -73.9429583857353 40.8474621711882, -73.94296481209827 40.847464592187514, -73.94297109360865 40.84746722383004, -73.94297721603942 40.84747006250681, -73.94298316990938 40.847473101909706, -73.9429889433648 40.84747633662995, -73.94299452218095 40.84747976035711, -73.94299989924824 40.847483366784196, -73.94300506390104 40.8474871478016, -73.94301000428567 40.84749109800055, -73.94301471210888 40.847495208371974, -73.94301917907605 40.847499471707955, -73.94302339452214 40.847503878998296, -73.94302735133844 40.847508423035535, -73.94303104360485 40.84751309301089, -73.94303446183851 40.847517884417236, -73.94303760012255 40.84752278284388, -73.94304045253459 40.8475277801834, -73.94304301433745 40.84753286922956, -73.94304528079768 40.84753803827363, -73.94304724480864 40.847543277406764, -73.94304890637808 40.84754857762402, -73.94305025958741 40.84755392631554, -73.94305130325692 40.84755931627689, -73.94305203502489 40.84756473580054, -73.94305245252882 40.847570174079316, -73.94305255577707 40.84757562120791, -73.94305234477888 40.84758106638032, -73.94305181954256 40.84758649969125, -73.94291637171503 40.84828540919136, -73.9429060701273 40.84835594954728, -73.94290152308979 40.84840484401896, -73.94290288193307 40.848446462735645, -73.94291096511566 40.8485040550075, -73.94293004702516 40.848575626556354, -73.94295640957738 40.84863958443912, -73.9429776822782 40.84868853760131, -73.94299313348529 40.84873348519521, -73.94300401440434 40.848777038368006, -73.94301337044438 40.84883289961197, -73.94301839351077 40.84886919012181, -73.94298090756655 40.84887282939798, -73.94297671798094 40.848941905872394, -73.9429675283196 40.84901842153999, -73.9428989999767 40.849517815801995, -73.94275707397074 40.84949058662602, -73.94278319599564 40.849409777730784, -73.94278488926525 40.849404448558666, -73.94278651376474 40.84939910674553, -73.94278807067842 40.84939375409299, -73.94278955763536 40.849388389699286, -73.94279097463482 40.849383014464976, -73.94279232286263 40.84937762839067, -73.9427936023166 40.84937223417778, -73.94279481062641 40.84936683002416, -73.94279595016391 40.84936141593107, -73.94279701974088 40.849355994599236, -73.94279801935815 40.84935056512837, -73.94279894782825 40.84934512931871, -73.9427998087097 40.849339686271634, -73.94280059607226 40.84933423688459, -73.9428013146587 40.849328782060525, -73.9428019644683 40.84932332269986, -73.94280254075835 40.849317857899806, -73.94280304827079 40.84931238946365, -73.94280348581975 40.84930691739084, -73.94280385221866 40.84930144258131, -73.94280414746669 40.84929596593545, -73.94280437275133 40.84929048565298, -73.94280452688362 40.84928500533519, -73.94280461105019 40.84927952408221, -73.94280462406522 40.84927404189348, -73.94280456592794 40.849268559669476, -73.94280443663682 40.84926307921113, -73.9428042385652 40.849257598718715, -73.94280396815309 40.849252120891876, -73.94280362777234 40.84924664573182, -73.94280321742366 40.84924117233807, -73.94280273591968 40.849235702510995, -73.94280218326043 40.84923023625057, -73.94280156063027 40.849224775358415, -73.9428008668448 40.849219318032986, -73.9428001030877 40.84921386697624, -73.94279927173139 40.849208421288914, -73.942798368031 40.84920298276967, -73.94279739435812 40.84919755141964, -73.94279634952782 40.84919212633776, -73.94279523709535 40.84918671022725, -73.94279405350382 40.84918130218585, -73.94279279993766 40.84917590401517, -73.94279147758353 40.84917051481525, -73.94279008525476 40.84916513548607, -73.94278862295056 40.84915976692803, -73.94278709304275 40.84915440914233, -73.94278549434387 40.84914906392942, -73.94278382566893 40.84914373038811, -73.94278208820297 40.84913840941958, -73.94278028194525 40.84913310192426, -73.94277840808165 40.84912780790277, -73.9427555904822 40.84906336908027, -73.94270965879042 40.84892916846368, -73.9426511781836 40.848758166581604, -73.94261038702714 40.8486411462607, -73.94259162456872 40.84858866074851, -73.94257265619247 40.84852473257715, -73.94256355691404 40.848480996548325, -73.94255332685184 40.848418816976306, -73.94255133452354 40.84835163927167, -73.9425472796841 40.848287570838885, -73.94254616611497 40.848199762394586, -73.94255421084974 40.848080407965924, -73.94257726548642 40.84794245323629, -73.942601082037 40.847846293422926, -73.94262879590845 40.84776169335912, -73.94267409414743 40.847648708606656, -73.94273479997466 40.847532846306805, -73.94273736221457 40.84752775799651, -73.94274021727847 40.84752276078119, -73.94274335685843 40.84751786276121, -73.94274677620244 40.84751307383953, -73.94275046818775 40.84750840301758, -73.9427544268765 40.84750386019773, -73.94275864514753 40.84749945258036, -73.9427631123204 40.84749518916514, -73.94276782127088 40.84749108075438, -73.94277276250901 40.84748713094526, -73.94277792772466 40.84748335053962, -73.94278330505483 40.8474797449344, -73.94278888737747 40.84747632223057, -73.9427946604578 40.847473087823914, -73.9428006136165 40.847470049813616, -73.94280673854948 40.84746721179743, -73.94281301983467 40.84746458097165, -73.94281944679649 40.84746216093292, -73.94282600875707 40.847459957979424, -73.94283269029738 40.84745797570538, -73.94283947955675 40.847456216806414, -73.942846364673 40.847454685779084, -73.9428533314138 40.847453385317806, -73.94286036673189 40.847452319018075, -73.9428674563981 40.847451485972286, -73.94287458736427 40.84745089067653, -73.94288174658638 40.84745053312426)))",M092A,5608,M092A,M-12,M-12,M-12,M-12,Riverside Dr. bet. W 176 St. and W 178 St.,112,10,33,10032,M,1.38,False,Haven Avenue,No,100005147,PARK,20100106000000.00000,19170801000000.00000,,DPR,False,Haven Avenue,N,Haven Avenue,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/M092A/,No,71,31,13,{03574089-CE6B-4197-9522-C4DFD70A6094} +"MULTIPOLYGON (((-73.99452972094957 40.6394979174602, -73.99454513084939 40.63937424187057, -73.99461330380063 40.63941797696842, -73.99452972094957 40.6394979174602)))",B123,6059,B123,B-12,B-12,B-12,B-12,"46 St., 11 Ave., New Utrecht Ave.",312,44,66,11219,B,0.005,False,Alben Triangle,Yes,100004468,PARK,20100106000000.00000,19231023000000.00000,,DPR,False,Alben Triangle,Y,Alben Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B123/,No,48,17,10,{61D9C6CF-0531-4886-85A0-F926D2C425CD} +"MULTIPOLYGON (((-73.94423739439577 40.82885247172625, -73.94464071044186 40.829021822241785, -73.9442775860385 40.829525656235134, -73.94386745490725 40.829351836493636, -73.94388138692587 40.829346427696926, -73.94405738190447 40.829102237712604, -73.94423739439577 40.82885247172625)))",M018,4803,M018,M-09,M-09,M-09,M-09,"Amsterdam Av, W 151 St To W 152 St",109,7,30,10031,M,0.573,False,Carmansville Playground,Yes,100003739,PLGD,20100106000000.00000,18390122000000.00000,1841 AMSTERDAM AV,DPR,True,Carmansville Playground,Y,Carmansville Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M018/,No,71,30,13,{19400CFD-E7D2-4CF5-89EB-C749A320A145} +"MULTIPOLYGON (((-73.89305577658025 40.66676851240838, -73.89339856720113 40.6667160179786, -73.89343950642409 40.66687429915865, -73.89309671502342 40.66692679280894, -73.89308323262226 40.66687466379145, -73.89306886520102 40.66681911738998, -73.89305577658025 40.66676851240838)))",B366,6567,B366,B-05,B-05,B-05,B-05,New Jersey Ave. between Blake Ave. and Dumont Ave.,305,42,75,11207,B,0.137,False,Duke Park,Yes,100004183,PARK,20100106000000.00000,,517 NEW JERSEY AVENUE,DPR/NYCHA,False,Duke Park,Y,Duke Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B366/,No,60,19,8,{7280F2B9-6FA5-4228-B43D-4684A44E4092} +"MULTIPOLYGON (((-73.953952321884 40.82122637435634, -73.95349361007203 40.82185217196124, -73.95313158737083 40.821699911778374, -73.95375228370263 40.821333069734244, -73.953952321884 40.82122637435634)))",M055,5665,M055,M-09,M-09,M-09,M-09,"Broadway, Hamilton Pl., W. 138 St.",109,7,30,10031,M,0.34,False,Montefiore SquarePark,Yes,100004791,PARK,20100106000000.00000,19060110000000.00000,,DPR,True,Montefiore Square,Y,Montefiore Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M055/,No,70,31,13,{B207DEAA-B4AF-4545-B66B-4B3C4AC3A596} +"MULTIPOLYGON (((-74.08082911468377 40.59514394693931, -74.08150022075027 40.59489672510533, -74.08196118072392 40.59562050246362, -74.08122198641139 40.59589280875222, -74.08076103138782 40.595169027548174, -74.08082911468377 40.59514394693931)))",R063,5057,R063,R-02,R-02,R-02,R-02,Parkinson Ave. at Kramer St.,502,50,122,10305,R,1.534,False,Old Town Playground,Yes,100004659,PARK,20100106000000.00000,19480129000000.00000,255 PARKINSON AVENUE,DPR,False,Old Town Playground,Y,Old Town Playground,JOP,Playground,http://www.nycgovparks.org/parks/R063/,No,64,23,11,{23FC90C9-520C-4022-B845-BACE8EDB716D} +"MULTIPOLYGON (((-73.96593741470511 40.574910156355685, -73.96594032116323 40.57491012750011, -73.96586434653243 40.57523760228026, -73.96581318109503 40.5754581390068, -73.96496505294931 40.575472967270585, -73.9648693897781 40.574920790496655, -73.96593741470511 40.574910156355685)))",B169A,4606,B169A,B-13,B-13,B-13,B-13,Brighton 2 St. bet. Brightwater Ct. and Boardwalk E.,313,48,60,11235,B,1.225,False,Brighton Playground,Yes,100004640,PARK,20100106000000.00000,19500309000000.00000,126 BRIGHTWATER COURT,DPR,False,Brighton Playground,Y,Brighton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B169A/,Yes,46,23,8,{2BF31545-89E9-4625-9415-A714DFC0AD90} +"MULTIPOLYGON (((-73.91697310271871 40.854814280112436, -73.91704318427942 40.85469721262396, -73.91707617401812 40.854652800695014, -73.91744586744309 40.854745675961844, -73.91752548628192 40.85462236379291, -73.91754159537963 40.85459741548864, -73.91814701540392 40.85474950737217, -73.91715953170221 40.85579487530141, -73.9169464459565 40.85568590134263, -73.91694087743619 40.85568235209992, -73.91693543239512 40.85567869398646, -73.9169301143878 40.855674929706225, -73.91692492578285 40.855671061962425, -73.916919872508 40.85566709256036, -73.91691495693179 40.85566302420321, -73.91691018260543 40.85565886229646, -73.91690555071492 40.855654606841064, -73.91690106718677 40.85565026054271, -73.91689673320136 40.855645827904716, -73.91689255350035 40.855641310731535, -73.9168885280781 40.855636713525655, -73.9168846640483 40.855632038093134, -73.91688096022148 40.855627287134624, -73.91687741896399 40.85562246515438, -73.91687404501532 40.855617575757684, -73.91687083956019 40.85561261984591, -73.91686780496272 40.855607603724316, -73.91686494359259 40.855602529195494, -73.9168622554464 40.855597398961, -73.91685974526132 40.855592218427184, -73.916857413035 40.85558698939503, -73.91685525994892 40.855581715467316, -73.91685328836715 40.855576402949296, -73.91685149947558 40.855571051841764, -73.91684989326745 40.855565667547715, -73.91684847329616 40.855560253671634, -73.91684723837236 40.85555481291418, -73.91684619086108 40.85554935067995, -73.91684532957306 40.85554386966968, -73.91684465806387 40.8555383716868, -73.91684417276655 40.855532863932766, -73.9168438772378 40.85552734731057, -73.91684377028383 40.855521828122846, -73.91684385308936 40.85551630727089, -73.91684412564648 40.85551079105814, -73.91684458439494 40.85550528128305, -73.9168452328859 40.85549978335108, -73.91684606992997 40.8554942999629, -73.91684709315173 40.85548883381817, -73.91684849342448 40.85548344088503, -73.91684993756938 40.855478055187376, -73.91685142558745 40.85547267582479, -73.9168529586625 40.855467304599046, -73.91685453442477 40.85546193970751, -73.91685615405794 40.85545658295196, -73.91685781874804 40.85545123433329, -73.91685952493937 40.85544589204791, -73.91686127618645 40.85544055879991, -73.91686307011734 40.85543523458754, -73.91686490910621 40.85542991761153, -73.91686679077773 40.855424610571646, -73.91686871513303 40.85541931256744, -73.91687068335919 40.85541402269916, -73.91687269545507 40.85540874186742, -73.91687474904643 40.855403471871426, -73.91687684887835 40.85539821181406, -73.91687898783604 40.85539296078978, -73.91688117066117 40.85538772060298, -73.91688339735491 40.8553824903531, -73.91688566554515 40.855377270038524, -73.91688797760061 40.85537206236232, -73.91689033233861 40.855366864622255, -73.91689272738489 40.85536167861756, -73.91689516748572 40.85535650255064, -73.91689764789258 40.85535134002011, -73.91690017098193 40.85534618742564, -73.91690273556335 40.855341048368345, -73.91690534519695 40.85533592104987, -73.91690799276691 40.855330805465016, -73.91691068420187 40.85532570251856, -73.91691341712891 40.8553206131093, -73.91691619036301 40.855315536335915, -73.9169190062762 40.8553104722, -73.91692186368026 40.85530542250178, -73.91692476139141 40.85530038543937, -73.91692770059336 40.85529536281462, -73.91716100806401 40.85489518836007, -73.91697310271871 40.854814280112436)))",X111,5691,X111,X-05,X-05,X-05,X-05,W 179 St bet. Cedar Av and Sedgwick Av,205,16,46,10453,X,1.8,False,Cedar Playground,Yes,100005000,ZONE,20100106000000.00000,19340711000000.00000,,DPR,False,Cedar Playground,Y,Cedar Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X111/,No,77,33,13,{C8EF8232-74CE-4AB8-A640-921AB8977142} +"MULTIPOLYGON (((-73.96671934960324 40.69507857114004, -73.96708173365658 40.695035931624886, -73.96719961334338 40.695623071636035, -73.96644980660899 40.69559358793794, -73.96635557364216 40.69512137390097, -73.96671934960324 40.69507857114004)))",B220,6142,B220,B-02,B-02,B-02,B-02,Park Ave. bet. Washington Ave. and Hall St.,302,35,88,11205,B,0.901,False,Washington Hall Park,Yes,100004706,PARK,20100106000000.00000,19420209000000.00000,,DPR,True,Washington Hall Park,Y,Washington Hall Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B220/,No,50,25,8,{4B61D00E-3BD3-4CC7-A454-319826263F52} +"MULTIPOLYGON (((-73.90957411598448 40.65888700541602, -73.90964486548584 40.6588764925445, -73.90971346822069 40.65914595230366, -73.90964271726065 40.65915646611665, -73.90957411598448 40.65888700541602)))",B436,5240,B436,B-16,B-16,B-16,B-16,Newport St. between Bristol St. and Chester St.,316,42,73,11212,B,0.045,False,Gethsemane Garden,No,100004158,PARK,20100106000000.00000,20040211000000.00000,148 NEWPORT STREET,DPR,False,Gethsemane Garden,N,Gethsemane Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B436/,No,60,19,9,{82E365EB-9F5A-4DA6-A771-BACF65FB1FF6} +"MULTIPOLYGON (((-73.98810282521463 40.712198123455785, -73.98875903871492 40.71214368509465, -73.98882987896191 40.7126381065512, -73.9877146674426 40.71273062036116, -73.98764383418606 40.71223619822427, -73.9879127747955 40.71221388870916, -73.98810282521463 40.712198123455785)))",M132,4632,M132,M-03,M-03,M-03,M-03,Madison St. bet. Clinton St. and Rutgers St.,103,1,7,10002,M,1.294,False,Little Flower Playground,Yes,100004780,PLGD,20100106000000.00000,19380101000000.00000,300 CHERRY STREET,DPR/NYCHA,True,Little Flower Playground,Y,Little Flower Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M132/,No,65,26,7,{CB7EA88E-6C42-4036-B218-D905D0D8F563} +"MULTIPOLYGON (((-73.88421994097524 40.668668733324246, -73.88452668739987 40.66862264162198, -73.88453980013871 40.668673550166446, -73.88423305230481 40.66871964280276, -73.88421994097524 40.668668733324246)))",B581,21496,B581,B-05,,,B-05,Warwick St. bet. Blake Ave. and Dumont Ave.,305,42,,11207,B,0.041,False,,,100024480,PARK,,20021120000000.00000,601 WARWICK STREET,DPR,False,Warwick Street Greenery Glow Garden,,Warwick Street Greenery Glow Garden,,Garden,,No,60,19,8,{46B229F3-C703-48E5-B260-61356349B2BD} +"MULTIPOLYGON (((-74.00749079377619 40.71176985232595, -74.00753172954094 40.71176883748095, -74.00757941962944 40.71177234724315, -74.00761987821636 40.71177943249203, -74.00768082324569 40.71179805370476, -74.00773531009865 40.711824703372315, -74.00777163949431 40.711849829676616, -74.00780642185325 40.711882291634396, -74.00782845463777 40.71191019696464, -74.00784955963191 40.71194814574958, -74.00786179632023 40.71198856433672, -74.00786468477449 40.712006103386, -74.00786594938057 40.71202208826472, -74.00786490315492 40.71205155574714, -74.00785989340507 40.71207922518033, -74.00785289485388 40.71210153130732, -74.0077692030428 40.7122172751191, -74.00773364893283 40.71226644629539, -74.00626408775797 40.71399832008075, -74.00430548549858 40.71309540328082, -74.00470697110595 40.71268274120123, -74.00477023548287 40.71261572890153, -74.00490639579377 40.71251295870866, -74.00499531757914 40.71245715474367, -74.00505471403466 40.71242206375432, -74.00513138386587 40.71238692513895, -74.00522919647602 40.71234657515932, -74.00531044386415 40.71231404499564, -74.00540799091026 40.712285084534635, -74.00740671058 40.71178397057044, -74.00744326686679 40.711775685315075, -74.00749079377619 40.71176985232595)))",M013,6553,M013,M-01,M-01,M-01,M-01,"Broadway, Park Row and Chambers St",101,1,1,10007,M,8.8,False,City Hall Park,Yes,100004514,PARK,20100106000000.00000,18670416000000.00000,52 CHAMBERS STREET,DPR,True,City Hall Park,Y,City Hall Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M013/,No,66,26,10,{DF0A87C1-86B4-4A21-85CA-2AF626756FDF} +"MULTIPOLYGON (((-73.96443525493703 40.76070499140255, -73.96444088994134 40.76070475270728, -73.96444894268356 40.760705625080085, -73.96445658143902 40.76070774902603, -73.9644826059876 40.76071949332942, -73.96450502636459 40.76072970745958, -73.96454951243037 40.760749045986984, -73.96459399852291 40.76076838269621, -73.9646276117544 40.760782992903415, -73.96469709069996 40.76081239227853, -73.96467944461837 40.76083705979595, -73.96449833316738 40.76108438444865, -73.96431846717228 40.761330009041195, -73.9643005481173 40.761355246433645, -73.96425107320799 40.76133409624977, -73.96418806109014 40.76130749378462, -73.96412505376135 40.76128088858488, -73.96408244625289 40.76126285351092, -73.9640608057575 40.76125349322097, -73.96405533490048 40.761250127229076, -73.9640501465812 40.761245515026744, -73.9640461583112 40.761240258437475, -73.96404374395485 40.76123505366799, -73.96404265081688 40.761230711994266, -73.96404242107674 40.76122629674864, -73.96404321989178 40.76122080932306, -73.96404598404764 40.761214247308395, -73.96407707143631 40.76117144251601, -73.96410719848622 40.76113051856985, -73.96413732549911 40.761089594615626, -73.9641722941012 40.7610416896464, -73.96420726146927 40.760993783765315, -73.96424222878697 40.76094587787334, -73.96427719842251 40.76089797287161, -73.96431040554529 40.76085270218947, -73.96434361143906 40.76080743059662, -73.96437681847208 40.76076215899424, -73.96439877354521 40.760732253718544, -73.96441040688573 40.76071673261303, -73.96441479685849 40.76071269340483, -73.96442176267072 40.760708658593984, -73.96442915049873 40.760706078228, -73.96443525493703 40.76070499140255)))",M280,5945,M280,M-08,M-08,M-08,M-08,Second Ave. bet. E. 59 St. to E. 60 St.,108,4,19,10022,M,0.448,False,Tramway Plaza,Yes,100004787,PARK,20100106000000.00000,19840523000000.00000,,DPR,True,Tramway Plaza,Y,Tramway Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M280/,No,73,28,12,{C9A9E0C3-7D2D-4E3F-AB2E-6761BE5F850D} +"MULTIPOLYGON (((-73.82129785507047 40.69414104233866, -73.82204844091345 40.69392746865079, -73.8226790884298 40.69521732962559, -73.82112555981546 40.69565782110856, -73.82062002165353 40.69462808296381, -73.8205079307589 40.69439975922286, -73.82049330479344 40.6943699653977, -73.82129785507047 40.69414104233866)))",Q129,5494,Q129,Q-09,Q-09,Q-09,Q-09,"Atlantic Ave., 95 Ave. bet. 127 St. and 125 St.",409,28,102,11419,Q,4.353,False,"Phil ""Scooter"" Rizzuto Park / Smokey Oval",Yes,100000333,PARK,20090423000000.00000,19380318000000.00000,125-02 ATLANTIC AVENUE,DPR,True,"Phil ""Scooter"" Rizzuto Park",Y,"Phil ""Scooter"" Rizzuto Park",Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q129/,No,24,10,5,{666C72B3-2AF7-4C76-ACFB-BAF7FF732CA4} +"MULTIPOLYGON (((-74.10968203132582 40.56117067102083, -74.11012001623206 40.560659975952625, -74.11026817689066 40.56074091088408, -74.11041447417928 40.560820828019786, -74.11056077063569 40.56090074406923, -74.11070706862432 40.56098066083115, -74.1108533657807 40.561060576506804, -74.1110099038541 40.561146086073045, -74.11116644351043 40.561231596324674, -74.11132298474527 40.56131710456014, -74.11147952402234 40.56140261438496, -74.11163606370009 40.5614881239958, -74.11179340861281 40.56157407116555, -74.1119845276507 40.56167846669399, -74.11181145744625 40.561936487467456, -74.11160565272228 40.56221024856327, -74.11147661907837 40.562140506549795, -74.11145856290018 40.56213074796118, -74.11139378265814 40.562095740715606, -74.11131614762273 40.56205378662653, -74.11123526735827 40.56201007780082, -74.1111419708347 40.56195965850556, -74.11099372866907 40.56187954696536, -74.11092244647871 40.56184102557993, -74.11084897443918 40.561801320270746, -74.11077550366778 40.56176161491329, -74.11070200343765 40.56172189332772, -74.1104078284848 40.56156291392759, -74.11026340417186 40.56148486358073, -74.11011636010937 40.561405396334436, -74.10996931758046 40.56132593069929, -74.10968203132582 40.56117067102083)))",R026,5043,R026,R-03,R-03,R-03,R-03,Mill Rd. to Weed Ave. bet. Tysens La. and Isernia Ave.,503,50,122,10306,R,3.333,False,Gerard P. Dugan Playground,Yes,100004059,PARK,20100106000000.00000,19310925000000.00000,280 MILL ROAD,DPR,False,Gerard P. Dugan Playground,Y,Gerard P. Dugan Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/R026/,No,64,24,11,{80E1B430-A5C3-41EC-8382-4389C0A40418} +"MULTIPOLYGON (((-73.73378358401631 40.739505769499324, -73.73862592941448 40.73848170538226, -73.739090905597 40.73876628126068, -73.73896709245565 40.73892548125843, -73.73888279450885 40.73903387381925, -73.73868634564091 40.7392688867433, -73.73845785454861 40.73951453544471, -73.73828864149547 40.7396720601986, -73.7380907988062 40.73983506674639, -73.73790251182824 40.739975205504464, -73.7377033331012 40.740120141385745, -73.73747877243434 40.74026022564534, -73.73729686840757 40.740370521509796, -73.73716342670231 40.7404461346452, -73.73669479439819 40.7406789809738, -73.73650022188772 40.740772557440266, -73.73630187642566 40.74086143507688, -73.73609995492563 40.74094552516484, -73.73589465783195 40.741024745298, -73.73568618676558 40.74109901577567, -73.73547474805437 40.74116826501368, -73.73534499742001 40.74121237923499, -73.73521914124791 40.741262596923725, -73.73509767282468 40.74131872021421, -73.73382881496146 40.74190945220561, -73.73361170612368 40.74201490888313, -73.73356188733207 40.74191892702434, -73.7335190638323 40.74182021026669, -73.73347247733236 40.74170267490526, -73.73342536727917 40.741513335148205, -73.73340314780565 40.74129795707091, -73.73340227365259 40.74128592421704, -73.73346199963218 40.7410070984747, -73.73378358401631 40.739505769499324)), ((-73.73580376486463 40.73820468716523, -73.7360096363686 40.73815790762741, -73.73756435931631 40.737844471973, -73.73855843527988 40.73764405126884, -73.73878658084307 40.73759805215332, -73.73957311995991 40.7374394650102, -73.73976523377253 40.737400728843376, -73.73977922919381 40.73742813421826, -73.73914661745826 40.73814258267121, -73.73902590349138 40.738278910468345, -73.73902265471516 40.73827773964541, -73.73901791662627 40.73827625747239, -73.73897305438152 40.738262221283186, -73.73896818022705 40.73826102065981, -73.7388438426836 40.738230378923454, -73.73870586120903 40.73820567108471, -73.73859802718385 40.73819169537095, -73.73851933000385 40.73818560485665, -73.73839451306091 40.73817975622909, -73.73830353042804 40.738180336563985, -73.73824039328557 40.73818177977569, -73.73813236720332 40.738187485668824, -73.73801985470226 40.73819635555786, -73.73794036467696 40.73820673860272, -73.73781623069321 40.738226203380385, -73.7346814163727 40.73883350420559, -73.73392532050183 40.73897996600371, -73.73400358740352 40.7389364981091, -73.7342133597603 40.73881941164398, -73.7344295568651 40.73870756888288, -73.73469520046257 40.73857785281893, -73.73490660902809 40.738486645960165, -73.73503097454353 40.73843668812462, -73.73514693594325 40.73839521525864, -73.73529565482418 40.7383459426002, -73.7354689603397 40.7382946901713, -73.73565558304071 40.73824260626111, -73.73580376486463 40.73820468716523)))",Q001A,69208,Q001A,Q-07A,Q-07A,Q-13,Q-13,Winchester Blvd. bet. Union Tpke. and the Grand Central Pkwy.,413,23,105,11426,Q,27.531,False,Alley Athletic Playground,No,100000417,PARK,,19290624000000.00000,,DPR,True,Alley Athletic Playground,Y,Alley Athletic Playground,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q001A/,No,24,14,3,{31649ECD-580C-4026-856A-6AD519C3C3C0} +"MULTIPOLYGON (((-73.90481691032083 40.814437156078085, -73.90518248335326 40.81341484493125, -73.90553115185135 40.81348667659103, -73.90541275870251 40.81381776547282, -73.90578096495109 40.81389362141298, -73.90568932673114 40.814148738521396, -73.90557127801779 40.81412486155742, -73.90540709983547 40.814091655300814, -73.90525257091761 40.81452549082638, -73.9052236722818 40.8145195120843, -73.90511958557848 40.814497974822615, -73.90493793759424 40.814460387910565, -73.90492935771782 40.814458612258925, -73.90487689262727 40.81444775671109, -73.90481691032083 40.814437156078085)))",X233,5748,X233,X-01,X-01,X-01,X-01,Union Av bet. E 150 St and e 152 St,201,8,40,10455,X,1.375,False,Fountain Of Youth Playground,Yes,100004925,PARK,20100106000000.00000,19650202000000.00000,,DPR/DOE,False,Fountain Of Youth Playground,Y,Fountain Of Youth Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X233/,No,84,29,15,{8CB27556-5A02-48CF-A479-13C19578805A} +"MULTIPOLYGON (((-73.8876577611677 40.67364335688664, -73.88765787119056 40.67364334078477, -73.88767580262598 40.67371300868496, -73.88769184106285 40.67377532562477, -73.88733258468157 40.673828555962544, -73.88697546313215 40.673881470294404, -73.88696404987512 40.67383661699881, -73.88695299263038 40.67379316615468, -73.88730986646767 40.67374028857095, -73.88729861667434 40.67369657191899, -73.8876577611677 40.67364335688664)))",B521,5297,B521,B-05,B-05,B-05,B-05,Jerome St. to Barbey St. between Pitkin Ave. and Glenmore Ave.,305,37,75,11207,B,0.188,False,Mw United Orient Grand Lodge,No,100004624,PARK,20100106000000.00000,20021120000000.00000,369-371 Barbey St and 326-328 Jerome St,DPR,False,Mw United Orient Grand Lodge,N,Mw United Orient Grand Lodge,Greenthumb,Garden,http://www.nycgovparks.org/parks/B521/,No,55,18,8,{D61D519D-98D8-452D-829C-F0C1EB6E9BA1} +"MULTIPOLYGON (((-73.90645973171593 40.81811607850838, -73.90668179979879 40.81757929834133, -73.90740545371008 40.81775245391236, -73.90718339207173 40.818289235458835, -73.90645973171593 40.81811607850838)))",X194,4689,X194,X-01,X-01,X-01,X-01,E 156 St bet. Jackson Av and Forest Av,201,17,40,10455,X,0.988,False,Captain Rivera Playground,Yes,100005028,PARK,20100106000000.00000,19580522000000.00000,720 EAST 156 STREET,DPR,True,Captain Rivera Playground,Y,Captain Rivera Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X194/,No,79,32,15,{EB34B7DA-EAA7-40B6-8EA3-88517CE9CA24} +"MULTIPOLYGON (((-73.90661014690899 40.66065294820599, -73.9073164599665 40.66054397609861, -73.90745396191491 40.661075009963035, -73.90674696833413 40.66118137446374, -73.90661014690899 40.66065294820599)))",B339,6610,B339,B-16,B-16,B-16,B-16,Riverdale Ave. bet. Thatford Ave. and Osborn St.,316,42,73,11212,B,0.918,False,Newport Playground (PS 41),Yes,100004060,PARK,20100106000000.00000,19620412000000.00000,411 THATFORD AVENUE,DPR/DOE,False,Newport Playground,Y,Newport Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B339/,No,60,19,9,{4735A91B-C8BE-4009-9034-CACD749398E5} +"MULTIPOLYGON (((-73.95955535979222 40.80862798918917, -73.95938348156362 40.80855575114509, -73.9596095354233 40.808246921911916, -73.95977438698957 40.80831620623909, -73.95955535979222 40.80862798918917)))",M320,4986,M320,M-09,M-09,M-09,M-09,Amsterdam Ave. bet. W. 118 St. and W. 119 St.,109,7,26,10027,M,0.146,False,Old Croton Aqueduct Gatehouse,No,100004144,PARK,20100106000000.00000,20050304000000.00000,1195 AMSTERDAM AVENUE,DPR,False,Old Croton Aqueduct Gatehouse,N,Old Croton Aqueduct Gatehouse,Building,Garden,http://www.nycgovparks.org/parks/M320/,No,70,30,10,{51E29D3A-EED6-4C4F-B7A6-08C6580784E3} +"MULTIPOLYGON (((-73.73469908382982 40.672322455810225, -73.73472430227537 40.67232744790615, -73.73474809861975 40.67233553000159, -73.73482891175907 40.672360652572706, -73.73488040926577 40.672377864912846, -73.73492874450356 40.67239975534591, -73.73497319022518 40.6724259944116, -73.73499898651161 40.672443335698674, -73.73502120746257 40.672463342387054, -73.73503574480218 40.67248051905384, -73.73504710686807 40.672497902729816, -73.73505594641492 40.672516117178084, -73.7350627288714 40.67255019223701, -73.73506327441675 40.67258465366426, -73.73505757382897 40.67261884315901, -73.73504573495468 40.672652108092336, -73.73502798385366 40.67268381141533, -73.7349815535523 40.67276436668302, -73.7349298768515 40.67284304847077, -73.73487308344582 40.67291965805575, -73.73481131719615 40.67299400395143, -73.73477348610619 40.673068027676614, -73.73473009250381 40.67314026093866, -73.73468128163559 40.673210460926114, -73.7344582165528 40.67350341289872, -73.73422783430043 40.67379306333695, -73.73399021803026 40.67407930702892, -73.73374545563014 40.67436203877293, -73.73349363498602 40.674641155167684, -73.73323484989935 40.67491655372569, -73.73296919298346 40.67518813465774, -73.73269676277118 40.67545579818798, -73.73241765897622 40.675719446344154, -73.72979020845622 40.678659103939566, -73.72954394829047 40.67844452876711, -73.72939282855525 40.67835768492082, -73.72937603726324 40.67835528336738, -73.72952110570829 40.678177281232, -73.72967305330903 40.6780026378002, -73.72983174693509 40.67783150672121, -73.72999704519201 40.67766403892269, -73.73016880314948 40.677500383522734, -73.73099029269703 40.6766201191835, -73.7311308629125 40.67648793819667, -73.7312652081927 40.676352057574306, -73.73139316109813 40.67621264624458, -73.73151456245189 40.67606987855792, -73.73162925897746 40.67592393338051, -73.73199204724992 40.67545826694604, -73.73235246679822 40.674991536633485, -73.73251980775456 40.67477884316493, -73.73269358639448 40.67456916403635, -73.73287370879228 40.67436261156568, -73.73306007748171 40.67415929716165, -73.73325259263876 40.6739593313267, -73.73345115091365 40.67376282005205, -73.73365564540906 40.67356987022102, -73.73386596451186 40.67338058600432, -73.73408564838442 40.67312134459728, -73.73429779668459 40.67285849139135, -73.73450230843353 40.6725921522676, -73.73469908382982 40.672322455810225)), ((-73.7268984973344 40.683360494076084, -73.72716482283481 40.6829082911988, -73.72743932121675 40.68245893017337, -73.72772194231574 40.68201249727317, -73.72801263006131 40.68156907785583, -73.72831132839927 40.6811287545764, -73.72861798244885 40.68069161369363, -73.72893253262136 40.68025773695151, -73.72925491814695 40.67982720699072, -73.72947099904744 40.67953884235299, -73.729694404502 40.67925373097531, -73.7299250488475 40.678971980676685, -73.73023654749157 40.67923515228831, -73.73034921486932 40.67932804643885, -73.729424778045 40.68003756067352, -73.7280685916117 40.681741979999686, -73.72786299000596 40.68209291765453, -73.72748301204764 40.68287430411697, -73.72710588801374 40.68363513360394, -73.72707514646856 40.683697153232075, -73.72707477198361 40.68369702987334, -73.72693505681347 40.683974956756686, -73.7273506285671 40.68407572500625, -73.72757498037834 40.68413012537647, -73.72741295675648 40.68445822730928, -73.72657108855341 40.68613564764926, -73.72681061610733 40.68774203366785, -73.72722546628913 40.69065416361407, -73.7271574922469 40.69065193308655, -73.72693200809715 40.69062349303241, -73.72685299707278 40.690610359684584, -73.72679384108197 40.68947816597601, -73.72676707895965 40.68918558637782, -73.72673218883473 40.688893503458, -73.72668918684013 40.68860204782242, -73.72663809265676 40.68831135008355, -73.7265789295132 40.688021540860795, -73.72653908675458 40.68783754333296, -73.72650794208653 40.68765257588937, -73.72648553586747 40.68746687636992, -73.72647189543048 40.68728068528305, -73.72646703983419 40.687094241314625, -73.72647097511654 40.68690778491846, -73.72645120044912 40.68662773175215, -73.72643845737313 40.68634744134255, -73.72643275010691 40.68606701726174, -73.72644236269335 40.68498026062612, -73.72646015992036 40.684799821078315, -73.72648583087015 40.68461993244575, -73.72651934745957 40.68444079277073, -73.7265606721359 40.68426260187237, -73.72660976026889 40.68408555504886, -73.72666655657619 40.683909849372725, -73.72673534251841 40.68372468697966, -73.72681268798485 40.68354149178453, -73.7268984973344 40.683360494076084)), ((-73.72635886615807 40.683835237754, -73.72625737784247 40.68381062833778, -73.72615235199453 40.68392472625433, -73.72604160632305 40.68403564513472, -73.72592530474448 40.68414321875722, -73.72580362180678 40.684247285427695, -73.72581687596939 40.684021326540595, -73.72583493988031 40.683713361696675, -73.72585345263957 40.68339774890488, -73.72592799994892 40.68330325499057, -73.72593729925742 40.68328993595967, -73.72596776651822 40.68325284682878, -73.7260325305324 40.68318085781528, -73.72610243907732 40.68311171494219, -73.72617727835306 40.68304562931321, -73.72625681566602 40.68298280478302, -73.7263272648357 40.682931129514, -73.72639275706034 40.68287580522136, -73.72645296709848 40.68281710579836, -73.72650759684178 40.68275532411374, -73.72655637533691 40.6826907666082, -73.7272191840429 40.68168878310182, -73.72799094513654 40.680468257908984, -73.7287911596565 40.6792210355807, -73.7292332225901 40.67849569125986, -73.72935428175262 40.678524806191284, -73.72950537842928 40.678617416053235, -73.72968882307285 40.678772403205045, -73.72956616922427 40.67890945670647, -73.72700812407311 40.68258634802197, -73.72688447596568 40.68278951863708, -73.72676870978108 40.68299536256044, -73.72666092448372 40.68320370354892, -73.726561211963 40.68341436083881, -73.726469659377 40.68362715455428, -73.72638634443892 40.68384190119353, -73.72632433087193 40.684019003637175, -73.72626791967508 40.68419718918735, -73.72621714562085 40.68437635437519, -73.72617203756809 40.684556395717124, -73.72615978915621 40.685002065451464, -73.72615654848138 40.685447825936905, -73.72613814828979 40.685563705846434, -73.72611165672551 40.685678674079725, -73.72607714843406 40.685792403920914, -73.7260347240807 40.68590457051553, -73.72598450205177 40.68601485535349, -73.72592662673962 40.6861229453884, -73.72589495822207 40.68576788032325, -73.72581793784227 40.684646025801094, -73.72580308589902 40.684429686828494, -73.72592574979699 40.684317281896355, -73.72604282012601 40.68420147126351, -73.72615413062535 40.68408241574397, -73.72625952803189 40.68396028068501, -73.72635886615807 40.683835237754)), ((-73.73571378813845 40.67236359640601, -73.73816860799681 40.668961120807424, -73.73839043837422 40.66929274109821, -73.73788624393035 40.66982606528807, -73.73703462260113 40.67096368776051, -73.73622450544642 40.671828720861704, -73.7360773773654 40.672062693161024, -73.73593123970448 40.67229508983148, -73.73592363214429 40.672308292893206, -73.73591904335102 40.672322280932356, -73.73591760381535 40.67233665711976, -73.73591935418436 40.67235101361362, -73.73592424403557 40.67236494236283, -73.73593213655397 40.67237804862557, -73.73594280494841 40.67238995996614, -73.73595594895892 40.672400338900516, -73.73597119364234 40.67240889099813, -73.73618845374965 40.672488328906155, -73.73614599610126 40.67254509663007, -73.7359375246084 40.67255949581076, -73.73586522145487 40.672653016256724, -73.7357303477945 40.67289903636006, -73.73558794648393 40.673142584184966, -73.73543809485957 40.67338352750537, -73.73528087381385 40.67362173320178, -73.73511637132549 40.6738570717722, -73.73494467656391 40.674089412815846, -73.7347003808288 40.67437090854259, -73.73445848401796 40.67465360247029, -73.73419186045943 40.675016401164505, -73.73404968285962 40.67521761776689, -73.73390164761324 40.67541637033095, -73.73374782840841 40.67561256084839, -73.73358830130202 40.67580609131577, -73.73342314707445 40.67599686644177, -73.7333644077311 40.67603781560734, -73.73330145149717 40.67607495567877, -73.73323470399852 40.67610803729174, -73.73316461560535 40.67613683545396, -73.73303439290785 40.676183246888826, -73.7329065763011 40.676233383805766, -73.73283416382974 40.67626031049642, -73.732765150545 40.67629199167211, -73.73270007440954 40.676328182747, -73.7326106292954 40.676372538892096, -73.73252368748383 40.67641969239597, -73.73243940069561 40.676469561669876, -73.73236402621458 40.67651530652496, -73.73228369636652 40.67655586902084, -73.73265144582645 40.67618036754476, -73.7330123958489 40.67580106152495, -73.73336647759913 40.67541802290668, -73.73371362461342 40.67503132364044, -73.73405377161602 40.67464103567895, -73.73438685569134 40.674247233681484, -73.7345965666288 40.67398668776138, -73.73479968102237 40.673723131122614, -73.73499612403089 40.67345665908248, -73.73518582553733 40.67318736966989, -73.73536871305262 40.672915363609164, -73.73554472238135 40.67264073894153, -73.73571378813845 40.67236359640601)), ((-73.7357248182306 40.6706159703011, -73.73594118679434 40.67069470155248, -73.73605158210486 40.67073487130861, -73.73620763398148 40.67079165487722, -73.7362773973997 40.67071706450178, -73.73631838511203 40.67064706922288, -73.73641710202249 40.670478485862574, -73.7364241621334 40.67046696548315, -73.73647184513653 40.67048398737351, -73.73655491878493 40.670446030730965, -73.73734945604365 40.66919672776282, -73.73697849124305 40.66906647826875, -73.73705332196877 40.668943623944244, -73.73712915471901 40.668819122107536, -73.73729079366493 40.66886715764012, -73.73745224816236 40.668592555259615, -73.73750330614294 40.668505715795774, -73.73758324126045 40.66838455313847, -73.73766284652467 40.66826389036132, -73.73767238919723 40.66825010985697, -73.73789823789602 40.66854628684146, -73.7376106519772 40.66901192842562, -73.73731576706756 40.66947491768821, -73.73701362825825 40.66993518713799, -73.73670427708608 40.67039267197614, -73.7363877574644 40.670847305607296, -73.73606411448296 40.6712990241396, -73.73573339561186 40.671747760984275, -73.73539564712516 40.67219345405154, -73.73536625015069 40.67223167111412, -73.73532811767765 40.67226775635552, -73.73528328858973 40.672299061528484, -73.73523278404078 40.67232487576409, -73.73517311819778 40.6723360480586, -73.73511206828364 40.67234132863988, -73.73505063170181 40.6723406306512, -73.73499289622573 40.67232228557368, -73.73493722867259 40.67230054667158, -73.73488397505606 40.67227554802201, -73.7348472049725 40.67225179313379, -73.73481563353586 40.67222403930353, -73.7347900044587 40.67219293752435, -73.73496343623908 40.67193639020767, -73.73512990629467 40.67167718357287, -73.73528934565381 40.671415427354496, -73.7354416865278 40.671151232189374, -73.7355868646797 40.670884708721566, -73.7357248182306 40.6706159703011)), ((-73.73308820303077 40.67622259563632, -73.73313404572967 40.6762010877199, -73.73317988732647 40.67626203579886, -73.73302187906883 40.67642518728819, -73.73285966180798 40.676585927102785, -73.73269330083764 40.676744192340195, -73.73100513200029 40.67830225017749, -73.73093968058701 40.67837004578511, -73.7308819193545 40.6784417784001, -73.73083225489154 40.67851694199304, -73.73079103710047 40.678595009688884, -73.73075855329334 40.67867543105152, -73.73073503524778 40.67875764200531, -73.73072064501596 40.67884106390131, -73.73071548672257 40.678925110748935, -73.73069816413705 40.67897133435509, -73.73067207704048 40.67901510784375, -73.73063779823066 40.679055475298625, -73.73059607410117 40.67909155234963, -73.73054781980568 40.679122552277505, -73.73049408846394 40.67914779584817, -73.730436055701 40.67916673198921, -73.73034965297913 40.67914656143101, -73.73002005459458 40.678859374945134, -73.73027173624448 40.67857010804703, -73.73053108698801 40.67828479562277, -73.73079799866376 40.67800355443546, -73.73107236193735 40.677726500344285, -73.73135406274982 40.6774537491972, -73.73164298470125 40.67718541233357, -73.73178277517898 40.67705062353981, -73.73190906711542 40.676934889621464, -73.73204152364454 40.67682322225603, -73.73217991926849 40.67671581000647, -73.73232401786767 40.67661283690856, -73.73247357390146 40.67651447797127, -73.73267527624333 40.67641334484137, -73.7328801940908 40.676316030720045, -73.73308820303077 40.67622259563632)), ((-73.73871708003159 40.668440064638176, -73.73871188223158 40.66844006453959, -73.73870843938084 40.66844009544236, -73.73864788902776 40.668445633875244, -73.73859266311565 40.668454766642036, -73.73853399944473 40.66840983067552, -73.73858411803603 40.668347430502024, -73.73863875734199 40.668287270263626, -73.73869774512755 40.6682295395724, -73.73884929616388 40.66804245044584, -73.73900877039291 40.66785921980916, -73.73917599553745 40.66768004085094, -73.73935079815477 40.66750510405487, -73.73953298944862 40.667334596267395, -73.7397223771099 40.66716869712258, -73.73991876056867 40.66700758353408, -73.74012193101156 40.66685142519287, -73.74033167254721 40.66670038907268, -73.7404403187849 40.6666407541998, -73.7405535251595 40.66658625886936, -73.7406708746097 40.66653710654572, -73.74079193124452 40.6664934781391, -73.74103570768763 40.66649402716408, -73.74011906737464 40.66746043839291, -73.73913626355697 40.668503680378286, -73.73908697258396 40.668506686196835, -73.73903769492789 40.668503566690255, -73.73897439931078 40.6684967844623, -73.73891266996971 40.66848415507837, -73.73885343456872 40.668465867954836, -73.73884281448846 40.66846188246096, -73.73880241609555 40.668450058776145, -73.73876021781524 40.66844273628943, -73.73871708003159 40.668440064638176)), ((-73.73918262459895 40.666489840751815, -73.73977192626883 40.66649117531591, -73.73961178170666 40.66661331965293, -73.73945732879984 40.66673964246171, -73.73930875500818 40.66686999020089, -73.7391662395425 40.667004203006854, -73.73898752930279 40.6671787929702, -73.73881539415605 40.66735717256122, -73.73864997305867 40.66753919804165, -73.73849140024863 40.6677247238611, -73.73833980170821 40.66791359994741, -73.73819530106628 40.668105674421305, -73.73805801368512 40.66830079358306, -73.73784046350538 40.66800739860892, -73.73798271833542 40.66780197195876, -73.73874510990576 40.66664846691561, -73.73884852344054 40.66648908278754, -73.73918262459895 40.666489840751815)), ((-73.72629679554245 40.68586237722552, -73.72629453516707 40.68618451868073, -73.72629935262562 40.686506643638666, -73.72631124839026 40.68682866204751, -73.72633021701458 40.68715048474057, -73.7263562554287 40.687472019854034, -73.72638935463276 40.68779317911067, -73.72642950682038 40.688113871533396, -73.72647145022195 40.68830225690646, -73.72650617277915 40.688491492296905, -73.72653364551762 40.6886814164498, -73.72653475147435 40.688691553504896, -73.7265335777627 40.68870168694363, -73.72653016108336 40.68871152148342, -73.72652459725438 40.68872077008653, -73.72651705181057 40.68872916569235, -73.72650774106779 40.68873646297322, -73.72649693799026 40.68874245005524, -73.72648495442674 40.68874695297879, -73.72647214109229 40.68874984020095, -73.72645886861382 40.688751028854334, -73.72644552398484 40.688750483837985, -73.72643249517128 40.68874822138298, -73.72642016165842 40.688744306328374, -73.72640888025094 40.688738852987846, -73.72639898036275 40.68873201973557, -73.72639074983212 40.68872400627069, -73.72638442667734 40.688715044592485, -73.72631244114986 40.688600284326625, -73.72623587284616 40.68848725561322, -73.72615479232375 40.68837606577272, -73.72608938308976 40.68783241066181, -73.72596425752067 40.68654486737857, -73.72603865946215 40.68643704901037, -73.7261056860081 40.686326461956064, -73.72616515971565 40.686213400275534, -73.72621692324142 40.68609816167741, -73.72626084050948 40.68598105112383, -73.72629679554245 40.68586237722552)), ((-73.72622117264781 40.68940839536164, -73.7261993076652 40.68904714838817, -73.72624993721783 40.68912680256382, -73.72629402388539 40.6892086798415, -73.72633139738518 40.68929246914517, -73.72636191821628 40.689377853167386, -73.7263854693899 40.689464505648104, -73.72643582921845 40.689645788817266, -73.72647903464055 40.68982813827794, -73.72651504841103 40.69001139095602, -73.72654383683985 40.6901953819836, -73.72656537451697 40.690379946511065, -73.72657964194687 40.69056491970153, -73.72644729509774 40.690542919818654, -73.72625848621325 40.690503837750406, -73.72625150424811 40.6901008917505, -73.72622117264781 40.68940839536164)), ((-73.73873760748391 40.668504379540806, -73.73879191189356 40.66851644464436, -73.73884359311877 40.66853396091613, -73.73889170983604 40.6685566092401, -73.73893539085064 40.66858397970841, -73.73895236389079 40.66860285889457, -73.7389658857628 40.6686232899473, -73.73897571307151 40.668644910306746, -73.73898167228549 40.66866733505824, -73.7386163520292 40.669053771342874, -73.73835873077014 40.668706345212435, -73.7384529845918 40.66856429184864, -73.73850392765561 40.668539608246576, -73.7385591070757 40.668520935311975, -73.73861730665558 40.66850868451466, -73.73867724689725 40.668503124900404, -73.73873760748391 40.668504379540806)), ((-73.7261858371149 40.6888246002032, -73.72617933956522 40.68871723852262, -73.72621508206144 40.68878613753017, -73.72624696468465 40.688856125074985, -73.72624785469482 40.68885776253245, -73.72624837286543 40.68885949005761, -73.72624850519995 40.6888612589893, -73.72624824835268 40.688863019791036, -73.72624760725522 40.68886472384656, -73.72624660222215 40.688866321675775, -73.72624526064024 40.68886777011895, -73.72624362053965 40.68886902694222, -73.72624172701533 40.688870058033146, -73.72623963460428 40.68887083470487, -73.72623740018734 40.688871333679295, -73.7262350888856 40.68887154160353, -73.72623276342485 40.68887145232317, -73.72623049122195 40.68887106960067, -73.7262283337531 40.68887040348802, -73.72622635364398 40.68886947214452, -73.72622460520611 40.68886830181444, -73.72622313798918 40.68886692593479, -73.72622199323966 40.68886538332598, -73.7261858371149 40.6888246002032)))",Q027,6199,Q027,Q-13,Q-13,Q-13,Q-13,"121 Ave., N. Conduit Ave. bet. Laurelton Pkwy. Sr. Rd. S and Brookville Blvd.",413,"27,31",105,"11003, 11580, 11411, 11422",Q,59.612,False,Laurelton Parkway,No,100000083,PARK,20090423000000.00000,,,DPR/CDOT,True,Laurelton Parkway,Y,Laurelton Parkway,EXWY,Parkway,http://www.nycgovparks.org/parks/Q027/,No,"33, 29",14,5,{EE1B7F85-5260-4DCA-A3C2-1909444732FA} +"MULTIPOLYGON (((-73.91775629334222 40.840388314541585, -73.91776380987739 40.84038807766813, -73.9177712205538 40.840389067191, -73.9177781803861 40.84039123693905, -73.91789361366824 40.84043218986908, -73.91790341325844 40.84043631210003, -73.91790866972458 40.840440000660884, -73.91791280714176 40.8404444349343, -73.91791564670362 40.840449422987945, -73.9179170677327 40.84045474951811, -73.91791700767136 40.84046018305348, -73.91791546799155 40.84046549126774, -73.91765325504791 40.84098678916399, -73.91765003212859 40.8409916747416, -73.91764559811897 40.840995977735645, -73.91764012990141 40.840999528979474, -73.9176338422671 40.841002187248904, -73.91762698672238 40.84100384556466, -73.91761983606206 40.841004441086916, -73.91761266896295 40.841003948800825, -73.91760577353398 40.841002386922185, -73.91759942241171 40.84099982048122, -73.9175938668472 40.84099634871188, -73.91758941393523 40.84099197813712, -73.91758327334927 40.84098217818156, -73.91747983963957 40.84078763005168, -73.91747818704432 40.84078452036575, -73.91747706204714 40.84078240520213, -73.91747474157455 40.84077763903075, -73.91747371385436 40.84077261804413, -73.91747402369565 40.8407675421839, -73.91747565424443 40.84076261585, -73.91747854241831 40.84075803170289, -73.91773185257311 40.84040048979466, -73.91773650612602 40.840395999650816, -73.91774231705789 40.84039236940305, -73.91774901600257 40.840389768151915, -73.91775629334222 40.840388314541585)), ((-73.9179205254898 40.84018741254543, -73.91820567683644 40.83977771581621, -73.91826122456321 40.8397951698412, -73.9182621761602 40.8397955955486, -73.91804791256729 40.84023244315905, -73.9180473344086 40.840233025367624, -73.91804650937584 40.84023380731036, -73.9180459859007 40.84023427519509, -73.9180455728342 40.84023463149701, -73.91804505533419 40.840235061565274, -73.91804454616413 40.8402354673261, -73.91804415213437 40.840235770512464, -73.91804376048938 40.84023606289458, -73.91804335224 40.840236358866896, -73.91804296417544 40.8402366323412, -73.9180424859292 40.84023696068157, -73.9180421109396 40.84023720805084, -73.91804188072872 40.840237356468684, -73.9180417169698 40.84023746261058, -73.91804121384139 40.84023777652532, -73.91804085904877 40.840237991491186, -73.91804043662853 40.84023824062775, -73.9180400154029 40.840238482561226, -73.91803964520713 40.840238688511185, -73.91803915755507 40.84023895200928, -73.91803901043602 40.840239025745234, -73.91803750483525 40.84023978289094, -73.91803598509682 40.84024046618614, -73.91803459474734 40.84024103070809, -73.91803432665026 40.840241133173876, -73.91803397433226 40.84024126439553, -73.91803355914716 40.840241415383446, -73.91803297196749 40.8402416202787, -73.91803284978828 40.84024166161458, -73.91803224008562 40.840241861991366, -73.91803117491257 40.84024218991455, -73.91802998642002 40.84024252225257, -73.91802874934002 40.8402428329442, -73.91802739014398 40.84024313364357, -73.91802666905664 40.840243275409115, -73.91802583175854 40.84024342609696, -73.9180248225191 40.84024358746853, -73.91802397103133 40.840243706629025, -73.91802325593909 40.84024379436914, -73.9180223748385 40.84024388919524, -73.91802152577652 40.84024396423324, -73.91801956209326 40.84024408170272, -73.91801744436422 40.840244120719696, -73.91801720485066 40.840244120549464, -73.9180168918275 40.840244116725, -73.9180164448246 40.84024410830283, -73.91801596581307 40.84024409535545, -73.91801544175337 40.840244075172116, -73.91801454304135 40.84024402860812, -73.9180137451269 40.84024397221037, -73.91800549424453 40.84024165477824, -73.91793668278628 40.84022232627328, -73.9179326989917 40.84022120682679, -73.91793221679313 40.84022089401244, -73.91793183886155 40.840220642505805, -73.91793157348576 40.8402204613178, -73.91793132351415 40.840220288245156, -73.91793111027296 40.84022013681051, -73.91793094441795 40.840220019628326, -73.91793079870561 40.8402199141669, -73.91793048477678 40.840219683417175, -73.91793024666678 40.840219506750984, -73.91792999197791 40.84021931296366, -73.91792958685389 40.84021899750264, -73.91792917463225 40.840218668529154, -73.9179287091225 40.84021828368716, -73.91792826494998 40.840217903362834, -73.91792787290431 40.840217559095294, -73.9179276064173 40.840217317573405, -73.91792740389079 40.84021713102713, -73.91792721794981 40.840216956199065, -73.9179270592502 40.84021680570372, -73.9179269538453 40.840216705673896, -73.91792627170952 40.840216029818365, -73.91792556238902 40.84021528370491, -73.91792474775367 40.8402143646218, -73.91792400898157 40.840213463602495, -73.91792321703471 40.8402124148644, -73.91792247966171 40.8402113409513, -73.91792162766033 40.840209954485395, -73.91792100656689 40.840208815819516, -73.91792054766911 40.84020787717865, -73.91791988795507 40.84020632695971, -73.91791981704245 40.840206140507085, -73.91791976031388 40.84020599008428, -73.91791971186312 40.84020585767724, -73.91791967877435 40.840205767604346, -73.91791962796104 40.84020562799166, -73.91791949918083 40.84020525329467, -73.91791939404706 40.84020493354464, -73.91791930782799 40.84020465973323, -73.91791922280353 40.84020437871871, -73.91791914605679 40.840204115719985, -73.91791907522862 40.84020386082988, -73.91791888170772 40.840203102476586, -73.91791872841762 40.84020241168891, -73.91791860470694 40.84020177225041, -73.91791842473992 40.84020059967966, -73.9179183005557 40.84019938302444, -73.91791824153555 40.84019820693782, -73.91791825413351 40.84019664549089, -73.91791841659973 40.840194704142334, -73.91791876059285 40.840192671072586, -73.91791882021387 40.84019239916593, -73.9179188702748 40.84019218758558, -73.91791895727603 40.840191827450056, -73.91791920145197 40.84019093163265, -73.91791935146135 40.84019043736845, -73.9179195644989 40.840189792766616, -73.91791980483326 40.840189127472904, -73.91792010813585 40.84018836046817, -73.9179205254898 40.84018741254543)))",X058,6002,X058,X-04,X-04,X-04,X-04,Jerome Av bet. Macombs Rd and Elliot Pl,204,16,44,10452,X,0.287,False,Keltch Park,Yes,100004901,PARK,20100106000000.00000,18990531000000.00000,,DPR,True,Keltch Park,Y,Keltch Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X058/,No,"84, 77",29,15,{7888F824-BF20-4E15-9F38-BF6E13C81C46} +"MULTIPOLYGON (((-73.88892977366065 40.72625010567265, -73.88913350564044 40.7262601436884, -73.88892632044694 40.7263817334427, -73.88892977366065 40.72625010567265)))",Q360R,5551,Q360R,Q-05,Q-05,Q-05,Q-05,"58 Ave., 73 St., Queens - Mid-Town Exwy. Sr. Rd. S.",405,30,104,11378,Q,0.09,False,Sitting Area,Yes,100000058,PARK,20090423000000.00000,,,DPR/SDOT,False,Sitting Area,N,Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360R/,No,30,15,6,{BC78259F-403B-4D76-995C-D2B284478A23} +"MULTIPOLYGON (((-73.94122413701776 40.80251821365024, -73.94155978158471 40.80205935671318, -73.94206431334406 40.80227176986441, -73.94172523937858 40.80272918392074, -73.94122413701776 40.80251821365024)))",M243,4943,M243,M-11,M-11,M-11,M-11,"Park Ave., E. 120 St. To E. 121 St.",111,9,25,10035,M,0.789,False,Eugene McCabe Field,Yes,100004121,PARK,20100106000000.00000,19631121000000.00000,1839 MADISON AVENUE,DPR/DOE,False,Eugene McCabe Field,Y,Eugene McCabe Field,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M243/,No,68,30,13,{3D71AE49-F187-4063-96B3-85114C88F51C} +"MULTIPOLYGON (((-74.1518868875469 40.560849327643375, -74.1521871139991 40.56070144913895, -74.15235905390735 40.56094636891543, -74.15252792337417 40.5611869123459, -74.1508409394603 40.56201783112225, -74.15042480493189 40.56156946517707, -74.15175360554993 40.560914975725254, -74.1518868875469 40.560849327643375)), ((-74.150963557646 40.56217330446136, -74.15259363574536 40.56134902975904, -74.15291926313748 40.56184069227051, -74.15137902616647 40.56262412505505, -74.150963557646 40.56217330446136)), ((-74.14874959682227 40.56258395963322, -74.15021924365138 40.56169688769132, -74.15062534044719 40.562147632322755, -74.15062100933969 40.562150243226355, -74.14919445945652 40.5630099558256, -74.14874959682227 40.56258395963322)), ((-74.14932046371726 40.56313813244244, -74.15073999619969 40.562285237282325, -74.15115361252917 40.56273557933488, -74.14976299480725 40.56357110493209, -74.14932046371726 40.56313813244244)), ((-74.1515217873166 40.562779030927906, -74.15303448579266 40.56201466376994, -74.15335896440088 40.56250457862334, -74.15193753917589 40.56323014808865, -74.1515217873166 40.562779030927906)), ((-74.14991784911608 40.563713865120526, -74.15130265658321 40.56289266098706, -74.15171583372904 40.56334438658985, -74.15036124586909 40.564147674354984, -74.14991784911608 40.563713865120526)), ((-74.14890214674067 40.56227281640605, -74.14867653163954 40.56205895981794, -74.14839489722031 40.56222986037605, -74.14816928270733 40.562016002792284, -74.14845091798291 40.561845102782705, -74.14861989562156 40.56174256190765, -74.14873254827125 40.561674200283576, -74.1490141794863 40.561503299789905, -74.14907050484716 40.56146911924869, -74.1491833104013 40.56140090376714, -74.1492958092564 40.56133239680203, -74.14952142506696 40.56154625218559, -74.14960909354654 40.5614930519713, -74.14948702430219 40.56135666763627, -74.14940564468927 40.561265744673825, -74.14968018455646 40.561099142771056, -74.14976209024498 40.561189746968594, -74.15008971285296 40.561552160469255, -74.14890214674067 40.56227281640605)), ((-74.15204657415097 40.56335425667513, -74.1528196327898 40.56297097695836, -74.15302239415206 40.56319649156769, -74.15286989357732 40.563272502774694, -74.15271922081024 40.563347602716554, -74.15256958090734 40.56342218688714, -74.15242404755077 40.56349472481889, -74.15234795821456 40.56353265058887, -74.15226809804604 40.56357245350214, -74.15225059600418 40.56358117759153, -74.15204657415097 40.56335425667513)))",R140,6636,R140,R-03,R-03,R-03,R-03,"Miles Ave., Corbin Ave., Barlow Ave., Fairfield St.",503,51,122,10308,R,23.01,False,King Fisher Park,Yes,100004377,PARK,20100106000000.00000,19970501000000.00000,,DPR,True,King Fisher Park,N,King Fisher Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R140/,No,62,24,11,{68F3B720-04F9-4561-AE0D-2184F8909904} +"MULTIPOLYGON (((-73.91523783933494 40.75394075612451, -73.91515821619856 40.75390477992967, -73.91524921287753 40.75391785112095, -73.91523783933494 40.75394075612451)))",Q232,6185,Q232,Q-01,Q-01,Q-01,Q-01,"Northern Blvd., 34 Ave. bet. 47 St. and 48 St.",401,26,114,11101,Q,0.002,False,Dwyer Square,Yes,100000352,PARK,20090423000000.00000,19320614000000.00000,,DPR,False,Dwyer Square,N,Dwyer Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q232/,No,30,12,14,{B4A7FCDD-32B8-4345-B146-E5F209028F19} +"MULTIPOLYGON (((-73.94148303666111 40.67816967074322, -73.94307388241774 40.6782596440912, -73.9429857592933 40.67919887598312, -73.94139647311836 40.67911248177829, -73.94148303666111 40.67816967074322)))",B225,5126,B225,B-03,B-03,B-03,B-03,"Atlantic Ave., Herkimer St., Kingston Ave., St Andrew's Pl.",303,36,79,11216,B,3.38,False,St. Andrew's Playground,Yes,100004719,PARK,20100106000000.00000,19450116000000.00000,1405 ATLANTIC AVENUE,DPR,True,St. Andrew's Playground,Y,St. Andrew's Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B225/,No,56,25,8,{B74CB2E7-3EE0-438D-9E13-0EDB10D46779} +"MULTIPOLYGON (((-74.00198570262627 40.729745871951465, -74.00182254656862 40.730030951330235, -74.00170066006547 40.72982591551267, -74.00198570262627 40.729745871951465)))",M125D,5577,M125D,M-02,M-02,M-02,M-02,N/e Corner Ave. of Americas and Minetta St.,102,1,6,10012,M,0.075,False,Minetta Triangle,Yes,100004960,PARK,20100106000000.00000,19451213000000.00000,,DPR,True,Minetta Triangle,Y,Minetta Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M125D/,No,66,27,10,{E6FFEE72-004A-4AC9-BB0D-1D9962048328} +"MULTIPOLYGON (((-73.79437779141547 40.59377784605744, -73.79430574864769 40.59306340872533, -73.79503049474188 40.59301891294009, -73.7950700800333 40.59340490097026, -73.79471045273004 40.593426981115954, -73.79471909609636 40.593511278522186, -73.79472728995195 40.59359116795327, -73.7947359563341 40.59367567792192, -73.79474412725389 40.59375535568604, -73.79510375631178 40.5937332763362, -73.79513483258867 40.594036302663326, -73.79440814755417 40.59407888563884, -73.79437779141547 40.59377784605744)))",Q443,4675,Q443,Q-14,Q-14,Q-14,Q-14,"Beach 65 St. to Beach 66 St., Beach Channel Dr.",414,31,100,11692,Q,1.43,False,Almeda Playground,Yes,100000288,PARK,20090423000000.00000,19650325000000.00000,460 BEACH 66 STREET,DPR/DOE,False,Almeda Playground,Y,Almeda Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q443/,No,31,10,5,{0F30D321-CDB1-490C-80EB-DA4447461B3E} +"MULTIPOLYGON (((-73.8538764144822 40.660215766410765, -73.85464119446436 40.65968480316892, -73.85534130080909 40.65912235965687, -73.85552209093152 40.65898208989142, -73.8556463788896 40.65888323220024, -73.8558733101302 40.65870273150933, -73.85606272534724 40.6585520707159, -73.85618390219187 40.658456310831845, -73.85619396196365 40.65853675946535, -73.85619908833316 40.65857775924795, -73.85717658605954 40.65842478866626, -73.85706942737191 40.65800805978286, -73.85701566851738 40.657798997171035, -73.85714528080786 40.65769656851402, -73.8572070070958 40.65764782718164, -73.8574209635513 40.65748145535158, -73.85752645153971 40.65740100771684, -73.8577385097544 40.65724738247537, -73.85801287023929 40.657043402958294, -73.85825517905356 40.6568659512728, -73.85865824701743 40.65657890917821, -73.85904905382465 40.65630104853259, -73.85928023453616 40.65614126541541, -73.86001825674418 40.65566074720616, -73.86058848804106 40.65529976469167, -73.86069669452367 40.6553454593094, -73.8608091665705 40.65538472748672, -73.86092524720338 40.655417340585714, -73.86104425807669 40.6554431077667, -73.86116550656696 40.65546187869875, -73.86128828222678 40.65547354355531, -73.86240245724471 40.65696533366528, -73.86338830349935 40.658290304207, -73.8618917611518 40.65893514194507, -73.86193519682817 40.65899319823593, -73.86196102431347 40.65902771816137, -73.86171480620503 40.659131972525, -73.86149020579164 40.65922707251708, -73.86149074470143 40.6592272208509, -73.86045306109712 40.659668330646085, -73.86024815067003 40.65972327640193, -73.8602092403898 40.65973512135773, -73.86004892169673 40.65978392718123, -73.85984084478565 40.65982378468817, -73.85945585171012 40.65987764946953, -73.85924647084727 40.659906943937855, -73.85924537655083 40.659906049285304, -73.8588425485649 40.659962407136206, -73.85883977372787 40.65996384275826, -73.8585387680125 40.6600059557957, -73.85772803092456 40.66011937566743, -73.85768528434158 40.65996361878036, -73.85757642738754 40.65997966995334, -73.85733901005608 40.66001467693924, -73.85676381395876 40.66009948789113, -73.85665825681258 40.660115051522396, -73.85584411770498 40.66023508799442, -73.85562027106695 40.6602538766092, -73.85481011139612 40.66036997099528, -73.85395223472474 40.66049289706806, -73.8538764144822 40.660215766410765)), ((-73.85698764482775 40.66302592784944, -73.8565818271515 40.66290055056472, -73.85653823864259 40.66298107000526, -73.85651767532178 40.66289024338889, -73.85677473814292 40.66241536430385, -73.85670692012955 40.662115825371615, -73.85706173567495 40.66206469057635, -73.85709635821614 40.662217606338096, -73.85710751289646 40.66226687669854, -73.85729308254426 40.66215277376626, -73.85726792521173 40.66203497558114, -73.8575510059805 40.66199417913824, -73.85766386723054 40.661977914118154, -73.85783363808198 40.66195344628174, -73.85787465064102 40.661947535536065, -73.8582062605312 40.661899742776725, -73.85813564386537 40.66205708237049, -73.85813774838816 40.66206061049176, -73.85809230537654 40.66216796816138, -73.8581232322934 40.66229040103774, -73.85813468819696 40.662335739109146, -73.85833381633444 40.663123791338826, -73.85841762782009 40.6634554794094, -73.85665101477137 40.66371242347515, -73.8566439378911 40.6636608636424, -73.85698764482775 40.66302592784944)))",Q165,6439,Q165,Q-10,Q-10,Q-10,Q-10,"155 Ave., Flatlands Ave., Belt Pkwy. bet. Fountain Ave. and 80 St.","305, 410",32,75,"11208, 11414",Q,57.921,False,Spring Creek Park Addition,No,100000204,PARK,20090423000000.00000,19920904000000.00000,,DPR,Part,Spring Creek Park Addition,N,Spring Creek Park Addition,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q165/,Yes,23,15,8,{2BF4FA26-6092-4E8A-816F-E7B24EFCBC30} +"MULTIPOLYGON (((-73.80549146937769 40.6671762521091, -73.80554403574688 40.66700367566245, -73.80571300054102 40.66700954705889, -73.80934879933812 40.66713582931624, -73.80924970833564 40.667655320581474, -73.8090369249234 40.66765470101328, -73.80828618646326 40.66765250952653, -73.80789887558598 40.66765137714722, -73.80706448648824 40.667609862744435, -73.80689003244336 40.667601181710346, -73.80661335059446 40.667588840903484, -73.80570628414452 40.66754837953263, -73.80570635844423 40.66754236059644, -73.80570909582987 40.66732286217602, -73.80556002960364 40.66729702210514, -73.80545996857055 40.66727967646014, -73.80549146937769 40.6671762521091)))",Q092,5831,Q092,Q-10,Q-10,Q-10,Q-10,"N. Conduit Ave., 135 Ave. bet. 130 Pl. and 134 St.",410,28,106,11420,Q,4.966,False,Police Officer Edward Byrne Park,Yes,100000191,PARK,20090423000000.00000,19640220000000.00000,,DPR,True,Police Officer Edward Byrne Park,Y,Police Officer Edward Byrne Park,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q092/,No,31,10,5,{26266CC0-467D-4CFC-BB21-85D1EC629226} +"MULTIPOLYGON (((-73.92172736045354 40.76801998963731, -73.92231176868667 40.76742841726761, -73.92295204601295 40.76772716078388, -73.92281474594706 40.76788221851601, -73.92255811707184 40.76774766680291, -73.92210319652233 40.76823060207046, -73.92172736045354 40.76801998963731)))",Q436,5380,Q436,Q-01,Q-01,Q-01,Q-01,30 Ave. bet. 29 St. and 30 St.,401,22,114,11102,Q,0.925,False,Athens Square,Yes,100000259,PARK,20090423000000.00000,19710615000000.00000,28-37 30 AVENUE,DPR/DOE,False,Athens Square,Y,Athens Square,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q436/,No,36,12,12,{20E566EA-5C66-40C4-982B-60BB13AA247E} +"MULTIPOLYGON (((-73.79839929890174 40.676139573427044, -73.7987521654192 40.67610219025669, -73.79876259323959 40.676157755995284, -73.79876804928313 40.676186829728614, -73.7984151835068 40.67622421384988, -73.79840972761674 40.676195139199436, -73.79839929890174 40.676139573427044)))",Q513,66003,Q513,Q-12,,,Q-12,120 Ave. bet. 142 St. and 142 Pl.,412,28,113,11436,Q,0.07,False,,No,100042696,PARK,,20021120000000.00000,,DPR,,Garden,,Garden,,Undeveloped,,No,32,10,5,{1332A322-22C9-433A-A521-272084272BE4} +"MULTIPOLYGON (((-74.00113631755657 40.73685448889734, -74.0015358395635 40.73751311011846, -74.0008619223817 40.737231129489935, -74.00113631755657 40.73685448889734)))",M404,22695,M404,M-02,,,M-02,"7 Ave., W. 12 St., and Greenwich Ave.",102,3,6,10011,M,0.382,False,,Yes,100024490,PARK,,20170215000000.00000,76 GREENWICH AVENUE,DPR,True,NYC AIDS Memorial Park at St. Vincent�s Triangle,,NYC AIDS Memorial Park at St. Vincent�s Triangle,REDEC,Triangle/Plaza,,No,66,27,10,{13D34BC7-71C0-4032-8ABA-9B99AF2F50F8} +"MULTIPOLYGON (((-73.90792886508137 40.82524510860903, -73.90817576898279 40.82502038679644, -73.9080751021323 40.82529185745897, -73.90792886508137 40.82524510860903)))",X056,5634,X056,X-03,X-03,X-03,X-03,"E. 164 St., Boston Rd., 3 Ave.",203,16,42,10456,X,0.06,False,Park,Yes,100004100,PARK,20100106000000.00000,18641108000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X056/,No,79,32,15,{6AF17254-B82D-4FE9-865D-E2C1DB63442A} +"MULTIPOLYGON (((-74.17552907030266 40.551888751937696, -74.17700249907556 40.55187747791883, -74.17592081497853 40.55390895610908, -74.17552907030266 40.551888751937696)))",R101,6085,R101,R-03,R-03,R-03,R-03,"Drumgoole Rd. E., Annadale Rd., Genesee Ave.",503,51,123,10312,R,3.464,False,Genesee Park,Yes,100004293,PARK,20100106000000.00000,19640623000000.00000,,DPR,True,Wegener Park,N,Wegener Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R101/,No,62,24,11,{B001F32D-DD59-4F16-8591-05174B940E51} +"MULTIPOLYGON (((-73.91025375126247 40.686143171163486, -73.91063194667302 40.6857570017466, -73.91069711363446 40.68579424807613, -73.91075771554532 40.68582888564083, -73.91081509521621 40.68586168092568, -73.91087430477856 40.68589552219545, -73.91092649056928 40.685925348909, -73.910980611334 40.68587041349958, -73.91099214355839 40.68587700517869, -73.91105107543859 40.685910687652154, -73.9111216791127 40.685951041114315, -73.91120743345438 40.68600005296125, -73.91127066710753 40.68603619344226, -73.91083716270305 40.6864762277755, -73.91025375126247 40.686143171163486)))",B332,5183,B332,B-04,B-04,B-04,B-04,Decatur St. to Schaefer St. between Bushwick Ave. and Evergreen Ave.,304,37,83,11207,B,0.87,False,Evergreen Playground (PS 45),Yes,100004448,PARK,20100106000000.00000,19610922000000.00000,84 SCHAEFER STREET,DPR/DOE,False,Evergreen Playground,Y,Evergreen Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B332/,No,54,18,8,{5A29CF14-C8C1-46F3-A9EC-388BC4239C17} +"MULTIPOLYGON (((-73.88533045961908 40.67433633646641, -73.88565480952809 40.67428818361701, -73.88567575795176 40.67436998206904, -73.8856358181253 40.67438049281735, -73.88554415988426 40.674404614737846, -73.88554919311743 40.6744242680974, -73.88536030480469 40.674452310309555, -73.88533045961908 40.67433633646641)), ((-73.8847549574408 40.674075265646636, -73.88507576102168 40.67402755032833, -73.88509208780782 40.67409138888968, -73.8847712851143 40.67413910425431, -73.8847549574408 40.674075265646636)))",B568,13889,B568,B-05,,,B-05,Ashford St. bet. Glenmore Ave. and Pitkin Ave.,305,37,,11207,B,0.133,False,,,100042701,PARK,,20160209000000.00000,330 ASHFORD STREET,DPR,False,Change Garden,,Ashford Street Abundant Garden,,Garden,,No,55,18,8,{C2257AC6-1838-4324-A334-A22934F310A4} +"MULTIPOLYGON (((-73.88223700674277 40.73494084348334, -73.88336654411908 40.73415532121231, -73.8834988683298 40.734212944537944, -73.88223700674277 40.73494084348334)))",Q151,5888,Q151,Q-04,Q-04,Q-04,Q-04,"Kneeland Ave., Grand Ave. bet. Manilla St. and Haspel St.",404,25,110,11373,Q,0.207,False,Grand Slope,Yes,100000133,PARK,20090423000000.00000,19381028000000.00000,,DPR,False,Grand Slope,N,Grand Slope,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q151/,No,"39, 35",16,6,{34CCB813-56E5-4401-B84B-CC357385F229} +"MULTIPOLYGON (((-73.80364542149252 40.70512111113413, -73.80361881326658 40.70506899533422, -73.80362247619786 40.705071607670284, -73.80354950042151 40.704914163390534, -73.80349994509719 40.70480724905244, -73.80346187655772 40.704725116633654, -73.80342033121458 40.704635480585516, -73.80336231982862 40.70451032083926, -73.80329298207229 40.70436072067081, -73.80320501393494 40.70418056208643, -73.80312532687357 40.70403288111997, -73.80303012229955 40.70385643904337, -73.80293921721129 40.70368796658834, -73.80282306249312 40.703472697021695, -73.80270690852512 40.703257427331835, -73.8025804628811 40.70302308318833, -73.80246622513674 40.70281136455238, -73.80436372976686 40.70226569880812, -73.80549735204684 40.70462075202074, -73.80364542149252 40.70512111113413)))",Q023,5437,Q023,Q-12,Q-12,Q-12,Q-12,"Jamaica Ave., 89 Ave. bet. 150 St. and 153 St.",412,24,103,11432,Q,11.5,False,Rufus King Park,Yes,100000298,PARK,20090423000000.00000,18970629000000.00000,150-05 JAMAICA AVENUE,DPR,True,Rufus King Park,Y,Rufus King Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q023/,No,32,14,5,{951F236A-FD3D-47BA-B126-E616562D6E88} +"MULTIPOLYGON (((-73.90834756788522 40.88916697957295, -73.90838686376183 40.889165430415375, -73.90842599776991 40.88916854473211, -73.90846401482361 40.88917624522464, -73.90849998846399 40.889188345659484, -73.90851514024573 40.889195039274135, -73.9085286699102 40.889203500155475, -73.90854022178503 40.88921350830371, -73.90854949484076 40.88922479963865, -73.90855624504664 40.88923707860808, -73.90856029485728 40.8892500226979, -73.90856153794317 40.88926329414202, -73.90855994393198 40.88927654352796, -73.90855555126964 40.88928942419898, -73.90854847789234 40.889301597665636, -73.9085389081582 40.889312745301446, -73.90852709283874 40.8893225746467, -73.90851334198705 40.88933082840746, -73.9084980166255 40.88933728895175, -73.90848414212199 40.88934226934516, -73.90846661013344 40.88934583127293, -73.90844366150591 40.88934757172144, -73.90842624068414 40.88934795591686, -73.90837391119376 40.88934436017263, -73.90832307984338 40.88933426228612, -73.90830329516514 40.889329613571356, -73.90828475134376 40.88932261377026, -73.90826792869714 40.88931344516323, -73.90825326356145 40.88930234582604, -73.90824113880633 40.88928960421937, -73.9082318660492 40.889275549269094, -73.9082256880328 40.88926054766657, -73.9082268063812 40.88924637220755, -73.90823085398051 40.88923250704354, -73.90823772830412 40.88921929877974, -73.90824725921422 40.88920707685822, -73.90825920778391 40.889196147253614, -73.90827327580253 40.8891867834759, -73.90828911290761 40.889179217571304, -73.90830632133239 40.88917363922561, -73.90832447371561 40.88917018767409, -73.90833381707334 40.88916832748678, -73.90834342235593 40.889167552592156, -73.90834756788522 40.88916697957295)))",X110D,6071,X110D,X-08,X-08,X-08,X-08,"Riverdale Ave., Henery hudson Pkwy., W. 239 St.",208,11,50,10471,X,0.5,False,Bell Tower Park,Yes,100008326,PARK,20110712000000.00000,19380101000000.00000,,DPR,False,Bell Tower Park,Y,Bell Tower Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X110D/,No,81,34,16,{56A46C13-46A6-41C6-9930-87A00E6F8C49} +"MULTIPOLYGON (((-73.9423351968039 40.72335166735968, -73.94398031356671 40.723192349132624, -73.94437218156979 40.72552871077909, -73.94272909300936 40.72569159350329, -73.9423351968039 40.72335166735968)))",B114,5463,B114,B-01,B-01,B-01,B-01,"Russell St., Monitor St. bet. Nassau Ave. and Driggs Ave.",301,33,94,11222,B,9.134,False,Monsignor McGolrick Park,Yes,100004425,PARK,20100106000000.00000,18890128000000.00000,744 NASSAU AVENUE,DPR,False,Msgr. McGolrick Park,N,Msgr. McGolrick Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B114/,No,50,26,12,{F862C964-86C1-4FAA-9344-EEF81985D9E0} +"MULTIPOLYGON (((-73.98963948581685 40.7238647414832, -73.98970728861894 40.72389330721533, -73.98957043591776 40.72415883346213, -73.98949720033305 40.724127980762084, -73.98963948581685 40.7238647414832)))",M358,5012,M358,M-03,M-03,M-03,M-03,E. 1 St. bet. 1 Ave. and 2 Ave.,103,2,9,10003,M,0.061,False,First Street Garden,No,100004284,PARK,20100106000000.00000,20041222000000.00000,48 EAST 1 STREET,DPR,False,First Street Garden,N,First Street Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M358/,No,66,26,12,{17A8D36F-8546-48AF-BDB1-30E742B18501} +"MULTIPOLYGON (((-73.85914494126403 40.85751947755654, -73.86243631661375 40.85743931152013, -73.86243896376189 40.857443347978325, -73.86551188144446 40.85737173488995, -73.86551579104356 40.85737149541405, -73.86745035789119 40.857326380081126, -73.86742693409988 40.85779997478525, -73.86273481255225 40.85790256833963, -73.85888017731523 40.858006455051594, -73.85679114385768 40.858065073830176, -73.85658248290252 40.85761748550665, -73.85658127266831 40.85760451331997, -73.85914155781938 40.85752326899809, -73.85914494126403 40.85751947755654)), ((-73.8605552520803 40.85737265734941, -73.85860176902892 40.85741947359452, -73.85860173573813 40.85741839656569, -73.85653669645926 40.857482798769446, -73.85652404006848 40.85745273272196, -73.85652372456869 40.857452741334534, -73.85637124059905 40.85711105452107, -73.85637128685735 40.85711105277767, -73.85642843246896 40.857109438184644, -73.85649760027931 40.85710746661435, -73.85656676094426 40.85710550670011, -73.85659868562969 40.857104601769414, -73.8566359275488 40.857103540448364, -73.85670508820557 40.8571015804512, -73.85677425479999 40.857099615017006, -73.8568434296827 40.85709765405406, -73.8569125891548 40.857095687627634, -73.85698175809733 40.85709372747491, -73.85705091755933 40.85709176186601, -73.85712008531934 40.857089796225935, -73.85718924594755 40.85708783593854, -73.85725973811284 40.85708603934562, -73.85729883003944 40.85708504853682, -73.85733022907476 40.85708424901159, -73.85740072241457 40.85708245413495, -73.85747121455687 40.857080662815754, -73.85754169958894 40.85707886694224, -73.85761218341965 40.85707707642714, -73.85765247564882 40.857076053661686, -73.85768267556018 40.85707528047627, -73.85775316887135 40.857073489886744, -73.85782366100428 40.85707169384974, -73.85789415312186 40.85706990317262, -73.85796464524716 40.85706810704946, -73.85803513735715 40.85706631628618, -73.8581056294748 40.85706452007689, -73.85817610734703 40.857062728309515, -73.8582465994552 40.85706093291456, -73.85831709154034 40.857059146481426, -73.85838758364092 40.85705735100037, -73.85845807572811 40.857055559978676, -73.858528567823 40.85705376351097, -73.8585990599026 40.85705197240314, -73.85867075251818 40.85705004224617, -73.85874244393213 40.85704811744613, -73.85881413534193 40.857046192601544, -73.85888582793166 40.85704426861435, -73.85895751814718 40.857042343679225, -73.85902921073051 40.85704041870245, -73.85910090332115 40.85703848827818, -73.85917259469686 40.85703656951427, -73.8592442860932 40.857034638999444, -73.85931597864851 40.857032719247414, -73.85938767003653 40.857030788643485, -73.85945936139566 40.857028869701374, -73.85952946211316 40.85702704332971, -73.85959956043011 40.8570252286189, -73.85966965399916 40.85702341385976, -73.85973976063516 40.85702158736749, -73.85980986131071 40.85701977343228, -73.85987996080972 40.85701795314964, -73.85995006029536 40.85701613732681, -73.86002016809823 40.85701431246658, -73.86009026045832 40.857012497450405, -73.86016035994199 40.85701067699738, -73.86023045941042 40.857008861904674, -73.8603005672017 40.85700703507308, -73.86037066666246 40.85700521989518, -73.8604407661308 40.8570033992718, -73.86051085846788 40.85700158400009, -73.86058095912585 40.85699975789001, -73.86065165067247 40.85699780818315, -73.86072233507436 40.85699587013075, -73.8607930135666 40.8569939203215, -73.86086370509896 40.856991971385206, -73.86093439069893 40.85699002149798, -73.86100506799464 40.85698807065691, -73.86107575239845 40.856986121582125, -73.86114644626366 40.856984183281284, -73.86121712235907 40.856982233209365, -73.86128780675045 40.856980284004656, -73.86135849113958 40.85697833385615, -73.8614291767106 40.85697638366574, -73.86149986226437 40.856974439735474, -73.86157110884439 40.856972473022196, -73.86157166511396 40.856972458381286, -73.86163872811561 40.85697073874427, -73.86169289494683 40.85696934219396, -73.86170691077255 40.85696898799268, -73.8617275828596 40.85696845626607, -73.86177509225116 40.85696723179642, -73.86184326778488 40.8569654809557, -73.86191145635178 40.85696373459275, -73.86197963070167 40.85696197916761, -73.8620480351353 40.85696022307679, -73.86209850021041 40.856958922764825, -73.86234433057834 40.8569526067303, -73.86238873123706 40.85695146744742, -73.86245691268157 40.856949709947756, -73.8625250952824 40.85694796501605, -73.86259326959062 40.85694621373071, -73.86266188143902 40.85694450795055, -73.86273048498187 40.85694280211969, -73.86279909682506 40.85694109535744, -73.86286769205881 40.856939389435084, -73.86293629677708 40.85693768348325, -73.86300490739589 40.856935990104525, -73.86307351329498 40.856934283172045, -73.86314212274674 40.85693257710346, -73.86321072745093 40.856930870988435, -73.86327932384958 40.85692916482277, -73.86334793446565 40.85692746403611, -73.86341653915932 40.856925757798706, -73.86348514266346 40.856924051519115, -73.86355375328009 40.85692234520712, -73.86362436384813 40.85692047192602, -73.86369497441034 40.856918599502144, -73.86376559327063 40.85691672704482, -73.86383620382674 40.85691485363405, -73.86390681317809 40.85691298738254, -73.86397743202829 40.856911113895094, -73.86404804257063 40.856909241255124, -73.86411865311085 40.85690736767148, -73.86418927076123 40.85690549495348, -73.86425988129348 40.85690362128335, -73.86433049774992 40.85690174847749, -73.86440110945658 40.856899876523336, -73.86446937974547 40.85689811793886, -73.86453765835479 40.85689634851786, -73.8646059369367 40.85689459076283, -73.86467420723673 40.85689282125129, -73.86474247869538 40.856891063407105, -73.86481076322023 40.85688929383141, -73.86487903467159 40.85688753590641, -73.86494730495716 40.85688576623324, -73.86501559063338 40.856884008244094, -73.86508386091164 40.85688223849016, -73.86515213234858 40.85688048040354, -73.86522040973564 40.856878710577085, -73.86528868828135 40.856876952417984, -73.86535695973114 40.85687518250378, -73.86542522997851 40.856873418851215, -73.86549351564223 40.85687165427579, -73.86556178588235 40.85686989054245, -73.86563187684378 40.85686802713365, -73.8657019784754 40.85686616369475, -73.86577207062591 40.85686429479924, -73.86584216276152 40.8568624312641, -73.86591224660212 40.85686056227376, -73.86598233871905 40.856858704056414, -73.86605243085383 40.856856834990566, -73.86612253008796 40.856854972193844, -73.86619262340267 40.85685310214371, -73.86622229774363 40.85685231080526, -73.8666978180573 40.85683887027127, -73.86674923832608 40.85683724845382, -73.8668179540827 40.856835068464626, -73.86688666982408 40.856832893837435, -73.86695538557356 40.8568307128659, -73.86702410013068 40.85682853275258, -73.86709281704455 40.85682635800395, -73.86716153159452 40.85682417690829, -73.86722102916013 40.856822846034376, -73.86728051842132 40.85682151512024, -73.86734000768193 40.856820183274934, -73.86739800368412 40.856818887503316, -73.86739879360313 40.85681886860039, -73.86742608488485 40.85681646233334, -73.86741974261797 40.85717913794528, -73.86261467368058 40.85730383436552, -73.86261537099159 40.857303866713075, -73.86061966751217 40.85737075770743, -73.86061970709501 40.857371111648476, -73.86058240258387 40.85737200578801, -73.86055525153844 40.85737291578985, -73.8605552520803 40.85737265734941)), ((-73.85141011929925 40.858045756746336, -73.85586073235335 40.857645463023175, -73.85585362580204 40.857979224982216, -73.8558482121424 40.858116861065156, -73.85193232694333 40.85847419137283, -73.84974624327637 40.85867160924003, -73.8494533666363 40.85867122745136, -73.84946597523579 40.85818661459035, -73.85141011929925 40.858045756746336)), ((-73.840186658478 40.857787658404106, -73.84016421877617 40.857784242369476, -73.84011825927291 40.857777259308634, -73.84004984466874 40.85776686105174, -73.83998485074363 40.85775688892879, -73.83995888282614 40.85775290155129, -73.83991985686407 40.85774690596334, -73.83985814230648 40.857737438992494, -73.8396391752058 40.85770382925434, -73.83959485921821 40.85769702206408, -73.83952986542957 40.85768704968469, -73.83946486455733 40.857677071855804, -73.83940042691303 40.85766666614013, -73.83933600351457 40.857656263109696, -73.83927156709437 40.85764585822415, -73.83922631900924 40.85763854351714, -73.83920712950838 40.85763545330093, -73.83914269905645 40.85762504925209, -73.83907826151072 40.85761464425688, -73.8390315125395 40.857607091450994, -73.83901383228734 40.85760423923721, -73.83894939477976 40.85759383507046, -73.8388849644107 40.857583429977154, -73.83882052694344 40.85757302573837, -73.83875609781597 40.857562614271295, -73.83869221451927 40.857552592543854, -73.83862833122878 40.857542576183995, -73.83856445625962 40.85753255980035, -73.83850057183467 40.8575225379651, -73.83843669097395 40.85751252150237, -73.83837280777348 40.85750249959801, -73.83830892459234 40.857492477658276, -73.83829588450219 40.857490441379596, -73.83824504971942 40.8574824610977, -73.83818116656361 40.85747244449012, -73.8381377093534 40.85746036016012, -73.83809442539687 40.85745165380246, -73.83808231819613 40.8574498322254, -73.83805055398477 40.85744505465584, -73.83801340164577 40.857439808460626, -73.83797625526898 40.85743455145589, -73.83790672697096 40.85742346959054, -73.83783720462395 40.85741238859208, -73.83776768348616 40.857401307553395, -73.83769737754844 40.85739009479739, -73.83762004006861 40.85737777170087, -73.8375591048244 40.857368051557295, -73.83753739134761 40.85736459190949, -73.83737344695359 40.857337868456334, -73.83735470151181 40.85733464888668, -73.83729628147894 40.8573246115747, -73.83723440096485 40.85731396692193, -73.83717666266354 40.85730403766959, -73.83711063640501 40.85729269101907, -73.8370487535629 40.857282052566724, -73.83704766886864 40.85728184392153, -73.83791518233606 40.856918218960246, -73.83793485438426 40.85692126504535, -73.83800331834755 40.85693184472737, -73.83807177403277 40.85694242345661, -73.83814022380531 40.85695300393786, -73.8382086866479 40.8569635834963, -73.83827714358445 40.85697416210529, -73.83834560052524 40.856984747877526, -73.83841404801726 40.856995326391946, -73.8384825121177 40.85700591209289, -73.83855096795317 40.85701649143819, -73.838619602271 40.857026840466425, -73.83868824492755 40.857037183162035, -73.83875687928808 40.857047532108616, -73.83882551484074 40.857057887319435, -73.83889414924622 40.85706823528381, -73.83896278367082 40.85707858410781, -73.8390314181016 40.85708893919442, -73.83910005375498 40.85709928793837, -73.83916869537498 40.85710963034636, -73.83923733107108 40.85711997900863, -73.8393059655873 40.85713033393182, -73.83937460014225 40.85714068161024, -73.83944324184554 40.85715102475529, -73.83945828806249 40.857153300525404, -73.83958247894783 40.85717258441502, -73.8396450517015 40.85718250837681, -73.83971163520481 40.857193079027226, -73.83977822703136 40.85720364965075, -73.83984480229012 40.85721421390932, -73.83991139416122 40.85722478355543, -73.83997797776219 40.85723534864915, -73.8400445684874 40.857245919117176, -73.84011115211769 40.857256489536944, -73.84017774408638 40.85726705362629, -73.840244326573 40.8572776239675, -73.84031091145283 40.85728819427353, -73.84037750229899 40.857298758245896, -73.8404440943372 40.85730932848489, -73.84051067929563 40.857319892372125, -73.84058052675515 40.85733056248463, -73.84065037541019 40.85734123795939, -73.84072022410055 40.857351907988935, -73.84079007282844 40.85736257167273, -73.8408599215636 40.85737324161764, -73.84092977743518 40.8573839124305, -73.84099961911629 40.85739457507708, -73.84106946909182 40.857405250299635, -73.84113931672847 40.857415920974184, -73.84116840273255 40.85742036172452, -73.84121665493977 40.85742773023212, -73.84127902157654 40.85743725410497, -73.84134887047077 40.85744792285324, -73.84141872057127 40.85745859246129, -73.84148856832212 40.857469262023834, -73.84155841728145 40.85747993154565, -73.84162826627815 40.857490594721725, -73.84169811528228 40.85750126415892, -73.84176796431092 40.857511932653345, -73.84183781334703 40.85752260740887, -73.84190766242904 40.85753327221671, -73.84197751864109 40.85754394059394, -73.84204736894327 40.857554609821236, -73.84211721690865 40.85756527360001, -73.84218706607173 40.85757594184057, -73.84225691524233 40.857586616342246, -73.84232443903836 40.857597625308095, -73.84239196994727 40.85760864504998, -73.84245949378804 40.857619653936695, -73.84252701763836 40.85763066818683, -73.84259454151318 40.85764168149694, -73.84266207252429 40.85765269567774, -73.84272959644171 40.85766370980924, -73.84279712038148 40.857674723901205, -73.84286465027375 40.85768573796168, -73.84293218256254 40.857696751085406, -73.84299970658216 40.85770775965582, -73.84305772827591 40.857717226225716, -73.84309817497862 40.85772539377003, -73.84309868184799 40.85772420310856, -73.84318627396205 40.857742545450755, -73.84324074264744 40.857751899040224, -73.84326379559495 40.85775585020161, -73.84326284626931 40.857758581004305, -73.843323781467 40.85777134089516, -73.84313221646372 40.85822211985507, -73.842641605074 40.858158088644586, -73.84257555007164 40.85814861630858, -73.84250949628485 40.85813913943392, -73.84244344846192 40.85812965622608, -73.8423773947021 40.858120183778176, -73.84231133978571 40.85811070678839, -73.84224528489247 40.85810122795977, -73.84217461326631 40.85809055232768, -73.84210394995009 40.85807988296706, -73.84203745288815 40.85806983700481, -73.84196262104358 40.85805853150585, -73.84189195069422 40.85804785570217, -73.84182125664701 40.85803717982265, -73.84175061479478 40.85802650937434, -73.84167995044362 40.85801583344885, -73.84161195850592 40.85800554385789, -73.84154395828922 40.85799525331496, -73.84147304981627 40.857984521096874, -73.84126982949185 40.85795376363736, -73.84120396227198 40.85794379730396, -73.84113597048369 40.85793350653187, -73.84108911558289 40.85792641546682, -73.84106797042722 40.85792321030532, -73.84100055663646 40.85791276896694, -73.84093315119709 40.85790231589423, -73.84089927657111 40.85789706434249, -73.84086573629068 40.85789186276903, -73.84079833679577 40.85788142133206, -73.8407309231005 40.857870975333576, -73.8406635082447 40.85786052749305, -73.8405961100295 40.85785007333269, -73.8405286951988 40.85783963261729, -73.8404602970706 40.85782923462686, -73.8403918847186 40.857818841979054, -73.84032347714502 40.857808443894356, -73.84025506364974 40.85779805116374, -73.840186658478 40.857787658404106)), ((-73.84922591528178 40.85816612650548, -73.84921837033906 40.858689007851986, -73.8488974022648 40.85867660149205, -73.84889753947363 40.858670500840816, -73.8487340358523 40.8586702865894, -73.84820815116919 40.85864995708821, -73.84653098612813 40.858585105545565, -73.8463552689419 40.85856535441856, -73.84441687691448 40.85837830003474, -73.84348164642759 40.8582631201615, -73.84365746914779 40.857841217881706, -73.8437403008278 40.85785856281044, -73.84625458819457 40.858119087869284, -73.8464108934839 40.858135282484476, -73.84653396231299 40.85814803332606, -73.84653400183511 40.858146839326565, -73.84653417640453 40.85814571484451, -73.8470797441273 40.85816579712038, -73.84707899199216 40.85816330086079, -73.84851779437854 40.85816519893696, -73.84890887078845 40.85816571174581, -73.84922591528178 40.85816612650548)), ((-73.85586363037379 40.85747555016241, -73.85518334779316 40.85754660073399, -73.85034527331318 40.85799866965257, -73.84976326899555 40.85804361770526, -73.84962938041714 40.85804309389012, -73.84956038932665 40.858049259666885, -73.8495607359697 40.85804282520491, -73.84947007781206 40.85804247012785, -73.84947957160512 40.85768523401726, -73.84964813731355 40.85768798869666, -73.8502256917845 40.85763795757606, -73.8558298886716 40.857155215696835, -73.85583486129764 40.85720242388799, -73.85583649234303 40.85720229715576, -73.85583821162803 40.85723423434386, -73.85586363037379 40.85747555016241)), ((-73.84099130141982 40.85728450728195, -73.84092050565593 40.85727361729095, -73.84084972414955 40.85726272637562, -73.84077892963096 40.8572518308964, -73.8407081410527 40.857240940784855, -73.84063734539664 40.85723004431662, -73.84056655685177 40.857219159521115, -73.84049576123994 40.85720826386641, -73.84042497275443 40.85719737358104, -73.84035417717817 40.857186482341916, -73.84028338992502 40.857175591971206, -73.8402125932199 40.8571646961411, -73.8401418048293 40.857153804781376, -73.84007101052963 40.857142914270504, -73.84000241310474 40.857132369850255, -73.83993381570377 40.85712182448872, -73.83986521003328 40.85711127457243, -73.83979661266281 40.857100734532175, -73.83972800702288 40.85709018993716, -73.83965941921001 40.85707963902262, -73.83962610813224 40.85707452295266, -73.83949884512262 40.85705496378754, -73.83945361197617 40.85704800398306, -73.83938501473618 40.85703746369795, -73.83931641754405 40.85702691256622, -73.83924858147529 40.85701649302551, -73.83918075493325 40.85700606625419, -73.83911292012138 40.856995634928964, -73.83904509243588 40.8569852080762, -73.83897725765348 40.85697478207408, -73.8389094300105 40.85696435514152, -73.83884160239973 40.856953923666644, -73.83877376768332 40.85694349664434, -73.83870593297283 40.85693307588556, -73.83863810423986 40.85692264428932, -73.8385702779024 40.856912211756, -73.83849983873306 40.85690132077674, -73.83842940668966 40.856890435167394, -73.83835897468249 40.85687954411206, -73.83828854151453 40.85686865211153, -73.83821810954036 40.85685776637312, -73.83814767761336 40.856846870686276, -73.83810218282463 40.85683983524338, -73.83876898709615 40.856560330558175, -73.83887359226637 40.85657517543036, -73.83893770365646 40.856585153254635, -73.83895697489386 40.856588153581555, -73.83925798823489 40.85663499193449, -73.83932674887103 40.856645464987075, -73.83939524869108 40.85665590341685, -73.83946373548875 40.856666340887294, -73.8395322294348 40.85667677382454, -73.83960072930631 40.8566872175352, -73.83966921617932 40.85669765038119, -73.83973770900602 40.85670808229421, -73.83980620301206 40.85671852587458, -73.83987469706558 40.85672895860839, -73.8399431982306 40.856739402117284, -73.84001168402509 40.856749834758226, -73.8400801852461 40.856760272782815, -73.84014867107058 40.8567707107453, -73.84021716523371 40.856781142375205, -73.84028431981322 40.85679133077806, -73.8403514660961 40.85680152543378, -73.84041862071669 40.85681171375844, -73.84048577534497 40.85682190744688, -73.84055292999162 40.85683210199677, -73.84062042375058 40.85684234110005, -73.84073063509742 40.85685906505461, -73.84075437748126 40.856862672781915, -73.84082152510933 40.85687286086211, -73.8408886869771 40.856883054325785, -73.84095583345811 40.856893243226615, -73.84102102748368 40.85690306289763, -73.84108622154133 40.85691287712887, -73.84115140020019 40.856922691302, -73.84121659310817 40.8569325063584, -73.84128178010755 40.85694232046931, -73.84134697185729 40.85695213995279, -73.84141216719719 40.85696195400137, -73.84147736016926 40.85697177431328, -73.84154254724346 40.85698158917726, -73.84160774028408 40.85699139680859, -73.84167292619789 40.857001217000175, -73.84174223502293 40.85701190187982, -73.84181154270998 40.85702257591033, -73.84188085040641 40.857033255302134, -73.8419501592961 40.857043940957325, -73.84201946703708 40.85705462026582, -73.8420887747981 40.857065300433106, -73.84215807545468 40.857075985051516, -73.84222738326241 40.857086664235034, -73.8422966851752 40.85709733796587, -73.84235559429162 40.85710641799172, -73.84240022904488 40.85711329209474, -73.84243530918901 40.857118702439365, -73.8425046099825 40.85712937604361, -73.84257216328393 40.857139766268205, -73.84263971068913 40.857150151042205, -73.84270724981553 40.857160534864796, -73.84277480437899 40.857170919569356, -73.84284235184752 40.857181304224625, -73.8429099064404 40.857191694252975, -73.84297745278 40.857202072524075, -73.84302353647487 40.85720915727181, -73.84302461777703 40.85720628797457, -73.84353258319135 40.857279995287314, -73.84339105436831 40.85761303750699, -73.84244911011079 40.857486997294096, -73.84238145846285 40.85747692743933, -73.84231380679697 40.857466873753694, -73.84224616229328 40.85745680923223, -73.84217851069181 40.85744674556181, -73.8421120492973 40.85743742458541, -73.84204560214074 40.85742810899312, -73.84197914079844 40.8574187816367, -73.84191267945762 40.85740946144592, -73.84184621813763 40.857400140316315, -73.84177976515329 40.85739081285637, -73.84171331097166 40.85738149796335, -73.84164881620185 40.85737314114335, -73.84158432262146 40.85736478969188, -73.841568980282 40.857362801049554, -73.84148353270955 40.85735172829439, -73.84145534146714 40.857348074982504, -73.84139084676218 40.857339718018295, -73.84132635326162 40.85733136011914, -73.84126186687826 40.85732300849714, -73.84119737934014 40.85731465053402, -73.84113288588607 40.85730629342715, -73.84106209007581 40.857295403523075, -73.84099130141982 40.85728450728195)), ((-73.84923302092461 40.85767374599476, -73.84922771350662 40.85804152241129, -73.84891168553385 40.858040284136564, -73.84846570066644 40.85803853579591, -73.84681198621195 40.85800171720013, -73.84373411416381 40.85765730169822, -73.84387089308322 40.857329083774054, -73.84473841660723 40.85745495552372, -73.84691628580103 40.85766208296537, -73.84848436525219 40.857674616648104, -73.84870213518579 40.85767436393913, -73.84891990511775 40.85767411081913, -73.84923302092461 40.85767374599476)), ((-73.83574556106377 40.855937659829856, -73.83860765424653 40.85638614520022, -73.83852354622283 40.856416595618704, -73.83852160418317 40.856416824327034, -73.83847830076155 40.85642029904167, -73.83842500910716 40.85642073049636, -73.83831109721201 40.85642512379662, -73.83821716452807 40.85643055715595, -73.83815920921813 40.85643451818086, -73.838104830787 40.856437544082176, -73.83805757683416 40.85643709055118, -73.8379580424072 40.85643823219508, -73.83793415921704 40.856438507516685, -73.83780686087249 40.85644289322025, -73.83767980678267 40.85645021293069, -73.83761190904474 40.85645713852005, -73.83754401010889 40.85646406316729, -73.83747611828589 40.856470983282165, -73.83740822052097 40.8564779024482, -73.8373403215405 40.856484827876045, -73.83727243084789 40.85649175327565, -73.83720453897052 40.85649867233015, -73.8371430830768 40.85650528705863, -73.83708162363277 40.856511893644914, -73.83702016771682 40.85651850740743, -73.83695871061589 40.85652511573258, -73.83689503181019 40.85653233321881, -73.83685538200335 40.85653641401846, -73.83681558991232 40.85653951126575, -73.83677568051563 40.85654159618011, -73.83673569173605 40.85654268142198, -73.83669569118187 40.856542765286, -73.83665570022939 40.85654183699649, -73.83661577104886 40.85653990293078, -73.83657595461142 40.85653697486755, -73.83653629007664 40.856533044757946, -73.83649465081012 40.85652430680964, -73.8362994216302 40.85649249202327, -73.83561624189758 40.85639099327785, -73.83563488965126 40.856325620695216, -73.8357013773533 40.85609254823066, -73.83574556106377 40.855937659829856)), ((-73.86940809039224 40.8571927195064, -73.86952773019722 40.857169448390394, -73.870427708687 40.85701050473584, -73.87051182325233 40.85700792921562, -73.87059592496713 40.857010735857635, -73.87067941851394 40.85701890418384, -73.87076170983406 40.857032375898605, -73.87084221798372 40.857051056702986, -73.8708435444393 40.8570514129816, -73.8708610797056 40.85705625924533, -73.87093311298403 40.85707905475089, -73.87100850673504 40.85710834561205, -73.87101780885827 40.857113123214084, -73.87107716762938 40.85714188012072, -73.87113371314815 40.85717373784864, -73.87118716582654 40.85720853760322, -73.87113501530436 40.85722336449013, -73.87109370387195 40.85720692219037, -73.87104939684133 40.85719585426294, -73.8710032974272 40.857190460112534, -73.87095665657961 40.85719088611527, -73.87073332761649 40.85725986859562, -73.87051273546045 40.85733375328937, -73.87029506758165 40.85741247918932, -73.87008050672345 40.857495978080294, -73.86986923563556 40.857584179947274, -73.86982079119694 40.85759700772688, -73.8695951128402 40.85765676792036, -73.86946692561307 40.857680082563974, -73.86933870218236 40.8576988387364, -73.86922413918269 40.85771041802597, -73.86904244217943 40.85772032174602, -73.86884524119932 40.85772131250149, -73.86871651124588 40.85772195942377, -73.86856993382483 40.8577226948319, -73.86899024298549 40.857233177623165, -73.86901769156057 40.857220817124706, -73.86904637631407 40.85721369438121, -73.86912582764488 40.85721179084721, -73.86920844823355 40.85721157927299, -73.86926402754511 40.85721143695507, -73.86940809039224 40.8571927195064)), ((-73.86330255686264 40.85678419878202, -73.86335844562015 40.85678047752007, -73.86342630046111 40.85677595365083, -73.86349413984891 40.856771442330306, -73.8635619863583 40.85676692377437, -73.86362455087281 40.8567644799714, -73.8636902466884 40.85676191556626, -73.86374967157688 40.85675959675628, -73.86381222776451 40.85675715824462, -73.86386475072482 40.85675510587792, -73.8638688497138 40.856784584708336, -73.86440556936974 40.85676814973769, -73.86550990171898 40.85674370630865, -73.86550989788965 40.856743840477456, -73.86554772753661 40.856742868815246, -73.86614495712178 40.856729645274655, -73.86614330088503 40.85672757222222, -73.8674219464462 40.856694721913264, -73.86741867818655 40.85673856219551, -73.86740169500794 40.85673893889401, -73.86735883082375 40.85673989547062, -73.86729585312561 40.85674205446684, -73.86723287543418 40.85674420802584, -73.86716989062265 40.856746361542214, -73.86713846759655 40.85674743836736, -73.86710692002644 40.856748521344, -73.86704394232277 40.85675067479982, -73.866980971731 40.85675282822946, -73.86691507675357 40.85675482606827, -73.86684917464359 40.85675683016469, -73.86678328796026 40.856758827937824, -73.86671739295831 40.85676083196719, -73.86665150625623 40.85676283506801, -73.86658899514417 40.85676472947321, -73.86651451297098 40.85676637586674, -73.86644341585661 40.85676792347474, -73.8663723175638 40.85676946563469, -73.86630121925677 40.85677101315374, -73.86623011264447 40.856772560619376, -73.86615902145591 40.856774103556596, -73.86608791603388 40.85677564553296, -73.86601650624398 40.85677755811468, -73.865945089334 40.85677947064386, -73.86587367123387 40.856781383127526, -73.86580225432651 40.856783290165346, -73.8657308433342 40.85678520256883, -73.86565941929172 40.85678711491294, -73.86558800947718 40.85678902722939, -73.86551659255532 40.856790933189906, -73.86544748489167 40.85679278686947, -73.86541241161198 40.85679370138135, -73.86537819232225 40.856794583560884, -73.86531118650312 40.856796315343495, -73.8652441984706 40.85679804710797, -73.86517720094653 40.85679977882242, -73.86511021882612 40.856801515918974, -73.86504321416989 40.856803252049765, -73.86497622374955 40.85680498455635, -73.86490923451359 40.85680671612489, -73.86484288806504 40.856808460114024, -73.86477654280083 40.85681020316586, -73.86471019752032 40.85681195248298, -73.86464385935054 40.85681370267079, -73.86457751289173 40.85681544470632, -73.86451116760077 40.85681719390897, -73.86444482113131 40.856818937669125, -73.86437847583521 40.85682068589501, -73.86431213054486 40.8568224295803, -73.8642785386115 40.856823317574474, -73.86425844538441 40.856823838732765, -73.86424579116994 40.85682417863731, -73.86417944587447 40.85682592134578, -73.86411838693239 40.8568275081539, -73.86405732086222 40.856829099423706, -73.86399626071727 40.85683069156869, -73.8639352076965 40.85683227828685, -73.86387414162857 40.85683386405677, -73.86381308147492 40.856835456104854, -73.86379577207197 40.85683584539485, -73.8637441901701 40.85683701635979, -73.86367529057297 40.85683857026036, -73.86360638266869 40.85684012501048, -73.8635379503624 40.85684167397857, -73.86346858343425 40.85684324431228, -73.86339968382234 40.856844798948785, -73.863330791327 40.85684635175158, -73.86326725933895 40.856848025228814, -73.8632037273366 40.856849704074, -73.86314019654118 40.856851371179246, -73.8630766704736 40.856853044558584, -73.8630131372905 40.85685471609351, -73.86294960528647 40.85685638939583, -73.86287898062824 40.85685821722264, -73.86280834765476 40.8568600494988, -73.86273771587273 40.85686187723064, -73.86266708999449 40.8568637157322, -73.86260192990324 40.85686523382146, -73.862536782829 40.85686676449636, -73.86247162984782 40.85686828252051, -73.86240647565155 40.85686981311336, -73.8623413226532 40.85687133646686, -73.86227654650534 40.85687300341159, -73.86221176205778 40.856874667608636, -73.86214830481505 40.85687630093739, -73.86209908044826 40.85687756313244, -73.86200404046656 40.85688000689056, -73.86195264320189 40.85688132855807, -73.86188787414312 40.856882998895074, -73.86186434485445 40.856883594766295, -73.86157401767596 40.856891773544774, -73.86144697316968 40.85689536528779, -73.86142173342994 40.85689606527266, -73.86135911926857 40.85689776131398, -73.8612965051171 40.856899451017874, -73.86123066154919 40.85690109718189, -73.8611648274661 40.8569027433197, -73.86109899220311 40.85690438491609, -73.86103314980014 40.85690603637168, -73.8609673157054 40.856907683297315, -73.86090147331849 40.85690932387194, -73.86083919149772 40.856910884057534, -73.86077690374213 40.85691244510286, -73.8607146302176 40.856914005231225, -73.86065234245612 40.85691556620931, -73.86059005232167 40.85691712625037, -73.86052777878643 40.85691868717841, -73.86046549101812 40.85692024715508, -73.86039593818505 40.85692216480752, -73.8603263794218 40.85692408060988, -73.86025683487141 40.856926003591425, -73.86018728202637 40.856927921118036, -73.86011773035383 40.856929843106634, -73.86004817868864 40.85693175965039, -73.85997862582013 40.85693368245415, -73.85990908126298 40.856935598922654, -73.85983961277138 40.856937437098864, -73.85977014903133 40.85693926983607, -73.8597006781486 40.85694111332867, -73.85963122151885 40.85694294509041, -73.8595617589419 40.85694478310652, -73.85949229636114 40.85694662108083, -73.85942282547256 40.856948459903684, -73.85935336289552 40.85695029239141, -73.85928390623518 40.856952129346986, -73.85921443652494 40.85695396624478, -73.85914497273896 40.856955804008514, -73.85907550301908 40.85695764172322, -73.85900603922543 40.8569594794033, -73.85893648777034 40.85696126650682, -73.8588669434161 40.85696305898009, -73.85879739195545 40.85696484509929, -73.85872783216223 40.85696664377323, -73.85865828069409 40.85696842980858, -73.85858872802275 40.85697022210395, -73.85851917771973 40.8569720143603, -73.85844962504095 40.85697380657181, -73.85838007235844 40.85697559874139, -73.85831051374211 40.856977390861786, -73.85824096223809 40.85697918294898, -73.85817796849079 40.85698083177299, -73.85811497710282 40.85698248506798, -73.85805197149114 40.85698413290816, -73.85798897890898 40.85698578703339, -73.85792598633716 40.856987434820816, -73.85786297951472 40.856989089760226, -73.8577999869251 40.856990742881784, -73.85776328692423 40.85699132978696, -73.85731610095208 40.85700203375116, -73.85731295491041 40.85700237835062, -73.85728676055473 40.85700298079821, -73.85725212494052 40.85700377630703, -73.8571912878423 40.85700517872502, -73.85713044362355 40.8570065820026, -73.85706961363431 40.85700798526578, -73.8570087765265 40.85700938848801, -73.85694340672353 40.8570117811013, -73.85687803574342 40.85701416737263, -73.85681267306262 40.857016552716765, -73.85674729494156 40.85701894610912, -73.85668193224944 40.85702133227964, -73.85661656243657 40.85702371840435, -73.8565511914194 40.857026110793896, -73.85648846450853 40.857028275909606, -73.85642574589751 40.85703044010106, -73.85636302015274 40.85703261055294, -73.85634279359408 40.857033303061186, -73.85629921496708 40.85696130219792, -73.85727889728282 40.85693500735493, -73.85802137394609 40.8569150743654, -73.85884008483421 40.85689608896696, -73.8613653528668 40.856837481784275, -73.86143757783927 40.85683547760812, -73.86150691472108 40.85683354826273, -73.86157577124055 40.85683163090619, -73.86157600727057 40.856831623985464, -73.86164557422755 40.85682969573327, -73.86171149873735 40.85682786933124, -73.86172787584724 40.85682752876363, -73.86174475576334 40.856827217611965, -73.86175683810264 40.856826989857915, -73.8617766878917 40.856826626429665, -73.86183594670304 40.85682552767212, -73.86190024860305 40.85682434036916, -73.86196202540407 40.856823194133305, -73.86200939402707 40.856822312486166, -73.86202381643503 40.85682204788136, -73.8620879120938 40.85682022538052, -73.86215201488002 40.85681839564864, -73.8622161034176 40.8568165721676, -73.86228020618185 40.85681474956843, -73.86235031351391 40.85681244423033, -73.86242042202717 40.85681013885109, -73.86249053647859 40.85680782713283, -73.86256065210932 40.85680551627391, -73.86263076060797 40.85680321076684, -73.86270087503178 40.85680090522417, -73.86275738976836 40.85679904451371, -73.86277099064598 40.856798595137946, -73.86284110624796 40.85679628861101, -73.86290386596508 40.85679583461702, -73.86296846875497 40.85679537197212, -73.86302939249981 40.85679493283855, -73.86309215341149 40.856794473340614, -73.86315492734613 40.8567940246299, -73.86322276677262 40.856789512568476, -73.86325964836908 40.85678704931829, -73.86330255686264 40.85678419878202)), ((-73.8368498616046 40.85711737944308, -73.83664948446969 40.85721688394453, -73.83635637481908 40.85716823370999, -73.83611218290031 40.857127702628304, -73.83605776829793 40.85711867082477, -73.83543800434076 40.85701579964087, -73.83555549021736 40.85660395506073, -73.8356372446887 40.856616595606724, -73.83610667759018 40.85668917763545, -73.83633137469893 40.856723918830426, -73.83633143831983 40.856724090914675, -73.83636144514037 40.85672856840327, -73.83643291047217 40.856739617929165, -73.83643191553836 40.85673908432773, -73.83659091505103 40.85676280978504, -73.83681348310799 40.856976188459114, -73.83683585606425 40.85700711418653, -73.83684422849326 40.85702630200692, -73.83685118101613 40.85705187861137, -73.83685249782631 40.85708703658655, -73.83685103205902 40.857112602186575, -73.83684997709156 40.8571171986075, -73.83684962685855 40.85711734489244, -73.8368498616046 40.85711737944308)), ((-73.86776266475384 40.85681153480725, -73.8677740541035 40.85680968654482, -73.86780406699384 40.856810395406654, -73.86783381684658 40.85680978203759, -73.86783583669911 40.856809741127876, -73.86790101167864 40.85680839929762, -73.86797116137735 40.856806752454034, -73.86804132055529 40.856805108280135, -73.86811147854736 40.8568034622612, -73.86818163653233 40.8568018180006, -73.86825180280879 40.85680017730877, -73.8683219536744 40.856798531153764, -73.86839184607268 40.856795642883235, -73.8684617408244 40.85679276087655, -73.86853162845763 40.85678987701846, -73.86860152913796 40.85678698953087, -73.86867141675725 40.85678410648858, -73.86874131031124 40.85678121800773, -73.86881120503266 40.85677833578929, -73.8688641751778 40.85677858691377, -73.86891714649867 40.856778843418205, -73.86897853453787 40.856779290455904, -73.86898619381614 40.85678047249449, -73.86899043487391 40.85678112746542, -73.86899974957566 40.856784239335475, -73.86868866289062 40.857164155181884, -73.86866318706079 40.85716548142342, -73.86860974925303 40.8571682652315, -73.86853972320208 40.857170174647614, -73.8684707717929 40.85717202491343, -73.86840181089356 40.85717387422674, -73.86833285235173 40.85717572890447, -73.86826390092207 40.8571775835491, -73.86819494713801 40.85717942734394, -73.86812599569895 40.857181282806636, -73.86805703596642 40.85718313191521, -73.86798807621936 40.857184986385526, -73.86791912359524 40.85718683541982, -73.86785016383867 40.85718869070816, -73.86778120409085 40.85719053965184, -73.86775900279885 40.85719008647306, -73.86774841674898 40.85718515585375, -73.86774160559106 40.85717793690935, -73.86773958038161 40.85716873786725, -73.86773928667513 40.856892390166955, -73.86774298906575 40.856825161005176, -73.86775114767165 40.856816782278024, -73.86776266475384 40.85681153480725)), ((-73.85004030608631 40.85757099302281, -73.84997629010947 40.85757645142455, -73.84991228837671 40.85758189990394, -73.84985114078695 40.85758656413197, -73.84979369042694 40.857589997666416, -73.84973612235241 40.8575919857296, -73.84967849232432 40.85759252209057, -73.84948145709724 40.857591553812405, -73.8494827133017 40.85754324856789, -73.84956109514717 40.85754426569942, -73.84988928151999 40.85752532629046, -73.84996013195352 40.85751905557674, -73.85003098355968 40.85751278482101, -73.85010184228078 40.85750650862811, -73.85017269979434 40.85750023599208, -73.85024355134419 40.85749397230973, -73.85031440172713 40.85748769417449, -73.85037815055063 40.85748231808398, -73.85044189223152 40.857476949152925, -73.85050564933456 40.857471573903204, -73.85056939813929 40.85746619230405, -73.850612576246 40.8574625553034, -73.85063314572136 40.85746082237452, -73.85069689567737 40.857455447009876, -73.85076065156727 40.857450065314204, -73.85082622289362 40.85744431042561, -73.85089753212854 40.857438045132554, -73.8509659848448 40.85743203454662, -73.85103442807467 40.85742601760442, -73.85110287247619 40.85742000152363, -73.85117131685323 40.85741399080518, -73.85123976004392 40.857407974641596, -73.8513010069187 40.85740281453527, -73.8513622442938 40.85739765528467, -73.85142349116364 40.85739248880987, -73.85148472971987 40.857387323192356, -73.85154521379823 40.85738222951136, -73.85161142750852 40.85737661007695, -73.8516768867416 40.857371061673945, -73.85174233883556 40.857365518627546, -73.85176149427117 40.8573638962419, -73.8518077980468 40.85735997015024, -73.85187325724507 40.85735442253629, -73.8519387093304 40.85734886857262, -73.85200416732282 40.857343319982384, -73.85206962054826 40.857337776751805, -73.85213507970485 40.857332228088794, -73.85220355976485 40.85732608803351, -73.8522720409862 40.857319953341985, -73.85234052219691 40.85731381770935, -73.85240901882315 40.85730767755333, -73.85247750002058 40.85730153643643, -73.85254598120336 40.85729539617939, -73.85261446236152 40.85728926128458, -73.85266811060966 40.85728445634502, -73.85268620806363 40.857282837857746, -73.85275143176993 40.85727698507873, -73.85281991289018 40.85727085006196, -73.85287692295447 40.857265739544765, -73.85288840112584 40.85726470961072, -73.8529568822228 40.85725857361215, -73.85302537160723 40.85725243848399, -73.85309385031887 40.8572462969982, -73.85316233256194 40.85724016177966, -73.85322862801777 40.85723445597464, -73.85329493176235 40.85722875104258, -73.85336122836954 40.85722305056579, -73.85342752378926 40.85721734554699, -73.85349382750165 40.8572116396001, -73.85356012288675 40.85720593990798, -73.85362641946035 40.857200233875886, -73.8536443542101 40.85719869427517, -73.85369271483461 40.857194528704625, -73.85376140327571 40.857188420406835, -73.85383008338636 40.857182319261526, -73.8538849247481 40.85717744232805, -73.85389877180027 40.85717621178244, -73.85396746732957 40.8571700988685, -73.85403614028823 40.857163996691, -73.85410483578038 40.85715788909821, -73.85417352414389 40.857151781455514, -73.85424220536686 40.85714567916584, -73.85431089251908 40.85713957143984, -73.85437958085652 40.85713345827151, -73.85444826085566 40.857127355857635, -73.85451694915605 40.857121248010465, -73.85457307135935 40.85711634895228, -73.85458514846306 40.85711529709209, -73.85465335485232 40.85710935604779, -73.8547215458309 40.85710340593882, -73.85478975220552 40.857097460311394, -73.85482044614135 40.85709478305633, -73.85485795145196 40.8570915146347, -73.85492615780225 40.85708556892664, -73.85499434873597 40.857079616855444, -73.85506255506188 40.85707367106672, -73.85513076137555 40.85706772523768, -73.855198960561 40.85706177935937, -73.855267159746 40.85705582803778, -73.85533535890706 40.857049882078854, -73.85540356517198 40.85704393608849, -73.85547176312267 40.85703799004741, -73.85553996225887 40.857032038564554, -73.85560913931481 40.857025783899076, -73.85567832346008 40.85701953550443, -73.85574750760411 40.85701328166535, -73.85578043775614 40.857010298982715, -73.85581668343308 40.857007027774415, -73.85582593376506 40.857006191071186, -73.85582899267492 40.85706300692069, -73.85577932872073 40.857067233891236, -73.85571971224955 40.85707232007058, -73.85566009578295 40.857077399915674, -73.85559248256044 40.85708332428765, -73.85552486931408 40.85708925402298, -73.85551248024677 40.85709033440653, -73.8553023296279 40.85710876704051, -73.85525438893973 40.85711296803118, -73.85518677564485 40.857118892165374, -73.85511915522189 40.857124816250995, -73.85505154070516 40.857130745707344, -73.85498391905833 40.85713667601565, -73.85491630570348 40.85714260539422, -73.85484869116239 40.85714852932878, -73.85478106236528 40.85715445860868, -73.85471344780008 40.857160382463974, -73.85464583439703 40.85716631168401, -73.85457693869306 40.85717233560077, -73.85450804415083 40.857178364880845, -73.85443914722599 40.85718439321628, -73.85437025385662 40.857190417012575, -73.85430135809284 40.857196445267206, -73.85423246351245 40.857202468979715, -73.85416356773759 40.85720849084862, -73.85409467311841 40.85721452078229, -73.85402578442078 40.85722054888134, -73.85395689690654 40.857226572438265, -73.85388800226374 40.85723259594505, -73.85381910641257 40.85723862391165, -73.85375021173498 40.85724465183861, -73.85368131468273 40.85725067521898, -73.85361137522452 40.857257185302124, -73.8535414274486 40.85726369623276, -73.85347149507909 40.857270206240116, -73.85340155439182 40.857276717095004, -73.8533316065768 40.857283226997964, -73.85326167416424 40.857289737778586, -73.85319173342594 40.85729625300871, -73.85312178557979 40.85730275828197, -73.85305185312814 40.857309268034925, -73.85298480913421 40.85731500610275, -73.85291775800067 40.85732074952546, -73.85285070685363 40.85732649380971, -73.85278366282499 40.857332231760644, -73.8527131822296 40.85733826875122, -73.85268934587903 40.8573403067484, -73.8526606969455 40.8573427546219, -73.85264957473301 40.857343707545624, -73.85258252354159 40.85734945077348, -73.85251547946666 40.85735518856855, -73.85244842825209 40.8573609317185, -73.85238139127013 40.857366669444694, -73.8523143400444 40.857372407113765, -73.8522472959112 40.857378150155895, -73.85218124369727 40.85738370442617, -73.85211520096242 40.85738925777033, -73.8520491558325 40.85739481647656, -73.85198311188952 40.85740036974355, -73.85191706081946 40.857405922963615, -73.85185100856442 40.85741147074137, -73.85178497170452 40.85741702390408, -73.85171891940328 40.8574225824121, -73.85165287659127 40.85742813549155, -73.85158697846853 40.857434217308025, -73.85152108863598 40.85744029909753, -73.8514551833731 40.85744638082955, -73.85138928641435 40.857452456231194, -73.85132338822939 40.857458544200504, -73.85125749835058 40.85746462493898, -73.85118848446399 40.85747071421727, -73.85111947650897 40.85747679715853, -73.85105046973943 40.8574828746571, -73.850981455817 40.857488962911034, -73.8509124490081 40.85749504663046, -73.85084343506239 40.85750113390136, -73.85077442704426 40.85750721663621, -73.85070542018535 40.85751330563472, -73.85063640622604 40.85751938197584, -73.85056739935605 40.85752546458837, -73.8504983829691 40.857531554351226, -73.85042937844794 40.85753763598376, -73.8503603703419 40.85754372387382, -73.85029635443986 40.85754917254783, -73.85023233850505 40.8575546310917, -73.85016833798815 40.85756008511758, -73.85010432204245 40.857565539087965, -73.85004030608631 40.85757099302281)), ((-73.86845502381472 40.857262012890935, -73.86852651490155 40.85726059866502, -73.86860804726304 40.857261348906086, -73.86861015779134 40.857262242796295, -73.86819031820883 40.85781193810219, -73.86813438907491 40.85780940504396, -73.86807150249392 40.85780638764309, -73.86800860048785 40.857803376493656, -73.86794963691328 40.857800549015536, -73.86788281073935 40.85779734690434, -73.8678128121821 40.85779701368755, -73.86774280412484 40.85779668672078, -73.86773289093898 40.85779270599004, -73.86772507684105 40.857787025736165, -73.86771923084275 40.857778121277256, -73.86771838607845 40.85776754583727, -73.86772354118095 40.85767300464407, -73.86773104140686 40.857505519120956, -73.86773703000111 40.85737173725804, -73.86774036818804 40.857301589191316, -73.86774319074068 40.85729332321305, -73.86774975038796 40.85728567475331, -73.86776221620063 40.85727872013794, -73.8678115315136 40.85727475685755, -73.86788302262963 40.85727334212991, -73.8679545279694 40.85727193007568, -73.86802602620433 40.85727051076514, -73.86809752561156 40.85726909681454, -73.86816902382792 40.85726768371879, -73.86824052798379 40.85726626428204, -73.86831202738189 40.85726485019851, -73.86838352559981 40.857263431566906, -73.86845502381472 40.857262012890935)), ((-73.84768840920069 40.85758043072676, -73.84764354779921 40.85757996537153, -73.84709721267828 40.85757430161113, -73.84700612527617 40.85757212413409, -73.84691515289093 40.85756789991975, -73.84682439279483 40.85756162459504, -73.84673391849186 40.857553314466934, -73.84600497295094 40.857480623223964, -73.84581078988914 40.85745995512366, -73.84487691941452 40.85736927001956, -73.84487706461088 40.857368546219284, -73.84483370362645 40.85736556311268, -73.84462892243774 40.85734615296379, -73.84435518343471 40.85731834150447, -73.84431948625569 40.857314470752726, -73.8442380607377 40.85730564769022, -73.84419579964307 40.85729996975576, -73.84412155223811 40.857290004575205, -73.84400579667866 40.85727142765713, -73.84395352838375 40.857259528111115, -73.84390291086679 40.85725225119913, -73.84390452820861 40.857248372267, -73.84392141134215 40.857207858561765, -73.84392377056722 40.85720219675838, -73.84420695746648 40.85724487741703, -73.84421011380947 40.85724776415395, -73.84432972133297 40.85725934654055, -73.84482775936848 40.857307584148685, -73.84488815137952 40.857313679744074, -73.84488833495654 40.85731277229502, -73.84642619295275 40.857464113159146, -73.84640988301473 40.85746402301025, -73.8467208968484 40.8574952982873, -73.84682765061997 40.85750402355506, -73.84693471997382 40.85751014041774, -73.84698869179103 40.85751084235408, -73.8486947630147 40.857533015776184, -73.84892300485728 40.857535980333736, -73.8492349512601 40.857540031786556, -73.84923422523643 40.85759033771375, -73.84923421544212 40.857590995960514, -73.84844487195855 40.857589211658606, -73.8480133774568 40.85758379848802, -73.84768840920069 40.85758043072676)), ((-73.84358588005387 40.85715457499429, -73.84356501524522 40.85720367394579, -73.84343870110189 40.85718551437713, -73.84343845935278 40.85718744560438, -73.84338830985669 40.85717990525733, -73.84332203512766 40.85716992697113, -73.84325574617154 40.857159954930914, -73.84318946317806 40.857149977457766, -73.84314477102697 40.85714325756637, -73.84313991120315 40.85714255848068, -73.84313991602151 40.85714252696999, -73.84312318136504 40.85714001075393, -73.84305689958458 40.8571300386091, -73.84299995794633 40.85712146229248, -73.84290329538683 40.857106923740254, -73.84285806149133 40.85710011655279, -73.8427917786023 40.857090145154444, -73.84272550523819 40.857080166527034, -73.8426592223932 40.857070193251516, -73.84258873731969 40.857059805381105, -73.84251824992393 40.857049405758055, -73.84244776372346 40.85703901149645, -73.84237728584702 40.85702861720313, -73.84230678547131 40.85701821743298, -73.84223630644018 40.8570078284548, -73.84216582151379 40.85699743402251, -73.84209533423743 40.85698703954386, -73.84202485053905 40.85697664592751, -73.84195436332173 40.85696624505928, -73.84188388559951 40.85695585046442, -73.84181339958235 40.85694546211849, -73.841742913615 40.85693506202317, -73.84167242765689 40.8569246672877, -73.8416048068848 40.856914371894916, -73.84153719440786 40.856904088180265, -73.8414695724917 40.85689379270657, -73.84140195175664 40.856883508000735, -73.84133433106618 40.85687321334988, -73.84126671751271 40.85686291866916, -73.84119909802645 40.85685263384595, -73.84114971158206 40.856845116987834, -73.84086282864497 40.85680116843293, -73.84079607665392 40.85679071707831, -73.8407297965366 40.85678034017677, -73.84066352236137 40.85676996684733, -73.84059724347573 40.85675958807029, -73.84053096932456 40.856749221868604, -73.84046469641027 40.85673884302357, -73.84039841640069 40.85672846413062, -73.84033214349749 40.856718097816255, -73.84026587064524 40.85670771885696, -73.84019959069555 40.85669734075024, -73.84013331786953 40.85668696801818, -73.84006703796335 40.856676588934754, -73.84002659379087 40.8566702537304, -73.8397301952155 40.85662508700384, -73.83965550638604 40.85661383693251, -73.83958576378953 40.85660333479519, -73.83951601765703 40.85659283261079, -73.8394462668004 40.85658233127809, -73.83937652189582 40.85657182991144, -73.83930677701755 40.85656132670167, -73.83923703332778 40.85655083155574, -73.83916728137542 40.85654032915214, -73.83912125629844 40.85653339602745, -73.83890896145367 40.856501656412, -73.83902756822529 40.856451938295756, -73.83922348206005 40.85648263010647, -73.8396671439329 40.856552145980935, -73.8407232481258 40.856717637075306, -73.8407296685284 40.856718894020915, -73.84079474388146 40.85673163125099, -73.84086025524832 40.85674158742565, -73.84092576664982 40.856751537259605, -73.84099127094207 40.85676149244948, -73.84105678238275 40.85677144220906, -73.84112229264422 40.85678139733269, -73.84118780531016 40.85679134701947, -73.84120915164003 40.85679459115812, -73.84119041822844 40.85679575762446, -73.84358588005387 40.85715457499429)), ((-73.86936824047532 40.85679651302867, -73.86938841509925 40.856783506656946, -73.86941166121284 40.8567724452183, -73.86943296119914 40.856766156879516, -73.86945348876567 40.85676305540309, -73.86946998780677 40.85676219699231, -73.86960902910569 40.85677440909978, -73.8698233095611 40.85678602248548, -73.87005605231481 40.856791747242966, -73.87033304048686 40.856787036843656, -73.87062553796152 40.85676407309817, -73.87063030878087 40.85676554264727, -73.87063384533162 40.8567692638422, -73.87063644550342 40.85677330366155, -73.87063602630901 40.85678089523615, -73.87063284693005 40.85678561564999, -73.87062845553358 40.85678785475081, -73.87003735504972 40.85693734197571, -73.86921199671447 40.857115119038596, -73.86919160134995 40.857117877534606, -73.86917874735235 40.85711666440579, -73.86916525947788 40.85711090577579, -73.86914202744427 40.85708639866406, -73.86913997000504 40.85707660528562, -73.86914089897817 40.85706860367074, -73.86916623658952 40.85703381670124, -73.86934804918552 40.85681679174815, -73.86936824047532 40.85679651302867)), ((-73.8380074039263 40.856516092333884, -73.83813162495017 40.85651599743915, -73.83825577316016 40.85651902071296, -73.83827643558924 40.8565200456232, -73.83767120812904 40.85677341359118, -73.83766314984184 40.85677218118541, -73.83759695735625 40.856762064649885, -73.83753076490181 40.856751943573926, -73.83746458905834 40.8567418278863, -73.83739840376015 40.85673170674439, -73.83733222084092 40.85672159097076, -73.83730126934707 40.85671491430114, -73.83722626887604 40.85670706787883, -73.83715581321249 40.856699700581075, -73.83708535872405 40.856692344047865, -73.83701489596243 40.856684982056954, -73.8369444332164 40.85667762002304, -73.83688777995016 40.85667235130423, -73.83686819515361 40.85667053073353, -73.83683112076064 40.85666708344974, -73.83677122688854 40.856661033866224, -73.83676008500035 40.85665497579937, -73.83675438065937 40.85664420414486, -73.83675612493315 40.85663612829747, -73.83676274660658 40.85662927951798, -73.8367717579579 40.85662537962914, -73.83679039083538 40.856623146654734, -73.83684145765426 40.85661790688167, -73.83686706521995 40.85661527313387, -73.83690492140039 40.85661136899257, -73.83694244299829 40.856607515694044, -73.83697198814342 40.85660244175123, -73.83706713873364 40.85659574683429, -73.83711522852495 40.85659055316329, -73.83718146302793 40.85658340669927, -73.83724769634392 40.85657625479261, -73.83731784685106 40.8565686860407, -73.83747855129226 40.8565513412307, -73.83751262351132 40.856547656682665, -73.83763573524489 40.85653510965384, -73.83775932921093 40.85652565366105, -73.83788326303194 40.85651931911938, -73.8380074039263 40.856516092333884)), ((-73.85623074233322 40.857652926919634, -73.8562369277533 40.85765223494525, -73.85624317781917 40.85765236249854, -73.85624930396165 40.85765330574251, -73.85625512596624 40.85765503653747, -73.8562604672291 40.85765750243493, -73.85626516897932 40.85766063119772, -73.85626909147287 40.85766432719982, -73.85627211634309 40.85766848133432, -73.85627415253502 40.85767296921997, -73.85645567899155 40.85803856699881, -73.85645735226548 40.85804306253379, -73.85645799573977 40.85804770897065, -73.85645759310142 40.85805237121529, -73.85645615413183 40.858056913305695, -73.85645372180969 40.85806120472398, -73.85645036638053 40.85806512038915, -73.85644618534145 40.85806854786099, -73.85644129869694 40.85807138733416, -73.85643584776317 40.85807355613918, -73.85642999278988 40.85807499144104, -73.85642390109672 40.85807565202517, -73.85631359466353 40.8580886681831, -73.85624082101872 40.858094693666786, -73.85623479454689 40.85809480862431, -73.85622882665123 40.85809416183861, -73.85622308333885 40.858092770625895, -73.85621772345188 40.85809067480583, -73.85621289749342 40.85808793129697, -73.85620873931909 40.858084616807965, -73.8562053649591 40.85808082423419, -73.85620286669574 40.85807665904822, -73.85620131544323 40.858072235700945, -73.85620322018937 40.85767618743959, -73.85620453840419 40.857671547948414, -73.85620689031047 40.85766714927638, -73.85621020445879 40.85766312460705, -73.85621438215036 40.857659593582824, -73.85621929862334 40.857656662306105, -73.85622480781048 40.857654417041964, -73.85623074233322 40.857652926919634)), ((-73.83700841854517 40.85701481507905, -73.83700566988743 40.85699137408708, -73.83699453950459 40.8569530073021, -73.83698337922709 40.856926358577844, -73.83696380187402 40.85689969795814, -73.83694562117185 40.85687516987334, -73.83693604162627 40.85679347719264, -73.83699243211983 40.856797609095096, -73.83706028265523 40.85680431005091, -73.83712567636766 40.85681077697241, -73.83719105470348 40.85681723212872, -73.83725644015254 40.856823693561466, -73.83732182800169 40.85683014865704, -73.83738720753296 40.8568366154102, -73.83745566183391 40.856847195403994, -73.83748436427682 40.85685163114091, -73.83700501415366 40.857052297756724, -73.8370055262951 40.85704996620568, -73.83700841854517 40.85701481507905)), ((-73.86905634658525 40.856631455937766, -73.86906448986785 40.856630764597405, -73.8690494538233 40.85668853027916, -73.8690296020175 40.856689960237894, -73.8689723289085 40.856694027562796, -73.86891504751526 40.85669808224301, -73.86885777440467 40.85670214320756, -73.86879151718178 40.85670385534993, -73.86872526824686 40.85670557286663, -73.86865900389043 40.85670729032775, -73.86859276205226 40.85670901407989, -73.868526505991 40.856710731474344, -73.86846025704239 40.85671244883888, -73.86839517841268 40.856713701045706, -73.86833009975557 40.85671496582263, -73.86828594424219 40.856715820414856, -73.86826502822805 40.856716222466645, -73.86823582052463 40.856716786138456, -73.86819994957848 40.856717480866735, -73.86813487092645 40.856718739230146, -73.86806979937728 40.8567200029679, -73.86800472073281 40.856721254954486, -73.86793964207519 40.85672251230726, -73.86787457289064 40.856723775937645, -73.86783631847595 40.85672426341164, -73.86783617615194 40.856724265049564, -73.8678031428509 40.85672399757807, -73.86779061491914 40.85672049201631, -73.86778191354223 40.85671434969653, -73.86777597139782 40.85670552887433, -73.8677755886146 40.856693448340145, -73.86778226671132 40.85668226468334, -73.86779262324006 40.85667553637167, -73.8678036444067 40.856672744869606, -73.86787464605129 40.856671425939496, -73.86793928016543 40.85667063637025, -73.86794452373151 40.85667051720388, -73.86799622760996 40.85666933369484, -73.86805708530783 40.85666922861477, -73.86812454068836 40.856667361578225, -73.8681919818456 40.85666548818254, -73.86825943129035 40.85666362015984, -73.86832688903155 40.85666175300769, -73.86839432897177 40.856659889397754, -73.86846177840339 40.85665802215723, -73.86852921954345 40.85665614766393, -73.86854339798226 40.85665567485308, -73.86859749166948 40.85665387515983, -73.86866574837099 40.85665160349831, -73.86873402641596 40.85664933182069, -73.86880226888681 40.85664705465925, -73.86887052556366 40.8566447882795, -73.86893879649104 40.85664251016914, -73.86899365095134 40.85663741265353, -73.86904851991365 40.85663217375115, -73.86905591717989 40.85663149237054, -73.86905634658525 40.856631455937766)), ((-73.83580353523392 40.855929786504674, -73.83574556106377 40.855937659829856, -73.8357493762279 40.85592428394555, -73.83580353523392 40.855929786504674)), ((-73.83488943669569 40.855367675071676, -73.83488880698724 40.85537004426654, -73.83488819675934 40.85537029913306, -73.83488943669569 40.855367675071676)))",X003,6325,X003,X-11,X-11,X-11,X-11,"Bronx Park, Hutch. River Pkwy. bet. Pelham Pkwy North and South",211,"13,15",49,"10458, 10460, 10461, 10462, 10467, 10469",X,108.91,False,Pelham Parkway,No,100004109,PARK,20100106000000.00000,18881212000000.00000,,DPR,True,Pelham Parkway,Y,Pelham Parkway,Large Park,Parkway,http://www.nycgovparks.org/parks/X003/,No,"78, 80, 82",34,14,{49F49B25-1291-4CA1-AC7D-697D86270811} +"MULTIPOLYGON (((-73.91501550851007 40.88297517265494, -73.91523784132181 40.88257448083979, -73.91536384371304 40.88262695822924, -73.91553842039826 40.88238799424746, -73.91569430831592 40.88246215255497, -73.91570223152337 40.882465898064154, -73.91570945071572 40.882469992447554, -73.91571408653225 40.882474436133805, -73.91571718497237 40.88247959368376, -73.91571847573961 40.88248435730138, -73.91571844584821 40.8824892181076, -73.91571362578645 40.88249627440475, -73.91570083035099 40.88251171471282, -73.91567888393857 40.88253819190512, -73.91564910256665 40.88257738094304, -73.9155597337881 40.88269831941387, -73.91542913401962 40.882889838381075, -73.91539838569484 40.88293995855309, -73.91535475884508 40.88301562418671, -73.91531813903391 40.88307280795076, -73.91526319305837 40.88316985090264, -73.91523571014407 40.883227041346764, -73.91520592654818 40.8832963650528, -73.91518759711822 40.883339692011596, -73.91517610728657 40.883362906220135, -73.91517151683418 40.88337496216459, -73.91516691709543 40.883384066306526, -73.91516302741333 40.88338995623262, -73.91515772616044 40.883395577676374, -73.9151527790014 40.88339985945595, -73.91514394949564 40.88340521086075, -73.91513829877223 40.883407617309125, -73.91512911979709 40.883409753718254, -73.91512135359866 40.883410283796856, -73.91511358892933 40.883410545531, -73.91510723719722 40.8834100050697, -73.915099101227 40.883407426394676, -73.91509901581074 40.88340741822745, -73.9150987655807 40.88340732619377, -73.91509677435302 40.88340664125956, -73.91490474414984 40.8833412559745, -73.91490434910067 40.88334121786281, -73.91490439547596 40.88334113775366, -73.9149040301994 40.88334101321721, -73.91494018306629 40.88327824622505, -73.91499032957375 40.88319012371733, -73.91509478375612 40.88300597632024, -73.91501550851007 40.88297517265494)))",X110C,5717,X110C,X-08,X-08,X-08,X-08,Henry Hudson Pkwy E bet. W 230th St and W 2,208,11,50,10463,X,0.5,False,Park,Yes,100004877,PARK,20100106000000.00000,19350720000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/X110C/,No,81,34,16,{0A54ACA1-AEB3-4C0B-9A27-3D4330518B43} +"MULTIPOLYGON (((-73.88842820740602 40.6739442989396, -73.88865310594971 40.67391032333268, -73.88868097045126 40.67401946308573, -73.88872410756024 40.67418841814933, -73.88861235945765 40.67420527753182, -73.88849919754388 40.67422234975838, -73.88835379956527 40.674244285799844, -73.88828281706 40.673966262814915, -73.88842820740602 40.6739442989396)))",B475,5266,B475,B-05,B-05,B-05,B-05,Schenck Ave. and Glenmore Ave.,305,37,75,11207,B,0.248,False,Herbal Garden,No,100004262,PARK,20100106000000.00000,20021120000000.00000,285 Schenck Ave,DPR,False,Herbal Garden,N,Herbal Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B475/,No,55,18,8,{CD8AA10A-AB95-4ACF-B9AC-3B2BB8DC3AF2} +"MULTIPOLYGON (((-73.8832590421756 40.84414375873362, -73.8834056724913 40.843971177997766, -73.88370910512448 40.844120296244775, -73.8835624752673 40.84429287736194, -73.8832590421756 40.84414375873362)))",X326,4815,X326,X-06,X-06,X-06,X-06,E. 179 St. and Honeywell Ave.,206,17,48,10460,X,0.172,False,Daly Ave Garden,No,100003943,PARK,20100106000000.00000,20021120000000.00000,2061 HONEYWELL AVENUE,DPR,False,Daly Ave Garden,Y,Daly Ave Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X326/,No,87,32,15,{762D9354-2C90-4212-87E2-7A1BF68D6D31} +"MULTIPOLYGON (((-74.08807252164642 40.60887033369978, -74.0872293755368 40.60836418093006, -74.08820271077394 40.60874258848496, -74.08807252164642 40.60887033369978)))",R164,6579,R164,R-01,R-01,R-01,R-01,"De Kalb St., Targee St., Narrows Rd. N.",501,49,120,10304,R,0.206,False,Targee Street Triangle,No,100003751,PARK,20100106000000.00000,20090306000000.00000,,DPR,False,Targee Street Triangle,N,Targee Street Triangle,,Triangle/Plaza,http://www.nycgovparks.org/parks/R164/,No,64,23,11,{60CC5301-BCBE-479E-AB53-6FFDF2ED7A87} +"MULTIPOLYGON (((-73.9440476381809 40.74660100437279, -73.94413201920699 40.74656560949832, -73.944138403163 40.746616933365765, -73.9440476381809 40.74660100437279)))",Q032,6128,Q032,Q-02,Q-02,Q-02,Q-02,"Jackson Ave., Court Sq., 45 Ave.",402,26,108,11101,Q,0.01,False,McKenna Triangle,Yes,100000174,PARK,20090423000000.00000,18741104000000.00000,,DPR,False,McKenna Triangle,Y,McKenna Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q032/,No,37,12,12,{BD55A936-A494-44E6-B6B4-5C05DCDBA03D} +"MULTIPOLYGON (((-73.90947900424015 40.803236021076074, -73.90865742039932 40.802759300675994, -73.90911064633279 40.802309799183796, -73.90993094867554 40.80278778599288, -73.90947900424015 40.803236021076074)))",X360,5520,X360,X-01,X-01,X-01,X-01,Walnut Ave. bet. E. 138 St. and E. 137 St.,201,17,40,10454,X,1.326,False,,No,100008304,PARK,20140721000000.00000,20150731000000.00000,850 EAST 138 STREET,DPR,False,5 Borough Shops,,5 Borough Shops,,Buildings/Institutions,,No,84,29,15,{FFFA60FC-4E0C-489E-BC56-2DEB9D41D9A2} +"MULTIPOLYGON (((-74.18557299612219 40.52229243960555, -74.18605147044103 40.522117887945555, -74.18660903256038 40.52289861439585, -74.1861803264402 40.52308028919472, -74.18610603419955 40.523063826401234, -74.18557299612219 40.52229243960555)))",R085,5069,R085,R-03,R-03,R-03,R-03,Edith Ave. at Irvington St.,503,51,123,10312,R,1.124,False,Prescott Playground,Yes,100004830,PLGD,20100106000000.00000,19600928000000.00000,195 EDITH AV,DPR/DOE,False,E.M.T. Christopher J. Prescott Playground,Y,E.M.T. Christopher J. Prescott Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R085/,No,62,24,11,{A835CB48-3319-45EA-8F79-5E7D48C65015} +"MULTIPOLYGON (((-73.92209574056815 40.855866819878806, -73.92219564229157 40.85574731828317, -73.92249001531891 40.855887638251, -73.92259095691404 40.85770387742277, -73.92185048779297 40.857726641511476, -73.92189394513049 40.85854142236621, -73.92244112504855 40.85938132970559, -73.92221842947136 40.85967030208358, -73.92158768994231 40.8605584484937, -73.92141815967942 40.860487173703184, -73.92139814035028 40.86047781297643, -73.9206538041985 40.85929665961024, -73.91949149429573 40.85877329519564, -73.92052549990868 40.857665634043784, -73.92098890141273 40.85714740915785, -73.92155367046854 40.856502552253104, -73.92209574056815 40.855866819878806)))",M300,4618,M300,M-12,M-12,M-12,M-12,10 Ave. bet. Academy St. and the Harlem River,112,10,34,10040,M,15.383,False,Sherman Creek,Yes,100003969,PARK,20100106000000.00000,19971009000000.00000,3703 HARLEM RIVER DRIVE,DPR,False,Sherman Creek,Y,Sherman Creek,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/M300/,Yes,72,31,13,{6A80B164-1D1C-4EAC-ACD3-9D9C9DCD41E9} +"MULTIPOLYGON (((-73.79593975451517 40.69261278477871, -73.79595051037204 40.69261226894369, -73.79595820367253 40.692613148879815, -73.79596506500899 40.69261488463104, -73.7959723719629 40.69261791341143, -73.79597859380947 40.6926217858516, -73.795981682092 40.69262435509374, -73.79612899081249 40.692822096460894, -73.79637086944004 40.693172654053804, -73.79572574945179 40.69343364898853, -73.79636365836342 40.69430573890523, -73.79557554073013 40.694640132104986, -73.79556660997609 40.69464223335254, -73.79555956345344 40.69464256393165, -73.7955540006416 40.69464209928967, -73.79554909481558 40.694641134227574, -73.79554344648592 40.69463923491251, -73.79553900462969 40.694637052277244, -73.79553469871405 40.69463413686398, -73.79553017973073 40.69462971270915, -73.79451870055084 40.693246876523865, -73.79451570886613 40.693242147979326, -73.79451368907651 40.693236083004244, -73.79451337851108 40.69323051726492, -73.79451430592641 40.69322557058906, -73.79451610571314 40.693221253129956, -73.79452023351831 40.693215504406, -73.79452366368695 40.69321231550192, -73.79452744951199 40.693209658536816, -73.79592689666492 40.69261627669075, -73.79593228312879 40.69261438975681, -73.79593975451517 40.69261278477871)))",Q127,6382,Q127,Q-12,Q-12,Q-12,Q-12,"157 St., 155 St. bet. 108 Ave. and 109 Ave.",412,28,103,11433,Q,4.635,False,Marconi Park,Yes,100000164,PARK,20090423000000.00000,19370923000000.00000,,DPR,False,Marconi Park,Y,Marconi Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q127/,No,32,10,5,{DADE91E1-8630-41BA-A681-4B580E8AFCA2} +"MULTIPOLYGON (((-73.89436356116366 40.82505203078188, -73.8940161736089 40.825054955616864, -73.89402694667656 40.82437550510841, -73.89437384781677 40.82437656449425, -73.89437262875049 40.82448363508286, -73.89437114019096 40.82457975358763, -73.89471443350727 40.82457809094549, -73.89470846758306 40.82532703085986, -73.89435880915359 40.82532579796464, -73.89436356116366 40.82505203078188)))",X190,5774,X190,X-02,X-02,X-02,X-02,Fox St to Tiffany St bet. E 167 St and E 165 St,202,17,41,10459,X,1.205,False,Tiffany Playground,Yes,100005186,PARK,20100106000000.00000,19570201000000.00000,,DPR,False,Tiffany Playground,Y,Tiffany Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X190/,No,85,32,15,{972B94C3-15F4-4C84-B9F6-B055109EE837} +"MULTIPOLYGON (((-73.77712625830974 40.73664896742137, -73.77649406455691 40.73530797499842, -73.77657182911688 40.7352836212028, -73.77713225155031 40.73510811699791, -73.77757644433248 40.734969008505324, -73.77770145128754 40.734929858840864, -73.77770877388987 40.734927565867416, -73.77779226913191 40.73510466747005, -73.77819628475176 40.73596162129538, -73.77762456522348 40.73611757767656, -73.77760860571354 40.73611399074094, -73.77777565135928 40.73646671813214, -73.77712625830974 40.73664896742137)))",Q221,5323,Q221,Q-08,Q-08,Q-08,Q-08,73 Ave. bet. 195 St. and 196 Pl.,408,23,107,11365,Q,3.757,False,Farm Playground (P.S. 26),Yes,100000079,PARK,,19601026000000.00000,195-02 69 AVENUE,DPR/DOE,False,Farm Playground,Y,Farm Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q221/,No,25,11,6,{4C805D70-A64F-4614-BDEC-22FC277A74E4} +"MULTIPOLYGON (((-73.97052783690923 40.749579087318935, -73.97068952106297 40.749357533839, -73.97105720003536 40.749512479642874, -73.97089547288638 40.74973410296188, -73.97068491973265 40.74964532270529, -73.97063516249978 40.74962434174725, -73.97058138011465 40.74960166408677, -73.97052783690923 40.749579087318935)))",M203D,4872,M203D,M-06,M-06,M-06,M-06,E. 42 St. bet. 1 Ave. and 2 Ave.,106,4,17,10017,M,0.229,False,Mary O'Connor Playground,Yes,100003781,PLGD,20100106000000.00000,19501207000000.00000,327 EAST 42 STREET,DPR,True,Mary O'Connor Playground,Y,Mary O'Connor Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M203D/,No,74,28,12,{F1001C40-C00D-45EB-A6B3-FEC2614D91DF} +"MULTIPOLYGON (((-73.9812564536158 40.725182090470106, -73.98336882668858 40.72607170547104, -73.9821644935267 40.72772361775413, -73.98005929848931 40.72683099602091, -73.9812564536158 40.725182090470106)))",M088,4701,M088,M-03,M-03,M-03,M-03,"Ave. A To Ave. B, E. 7 St. To E. 10 St.",103,2,9,10009,M,10.502,False,Tompkins Square Park,Yes,100004782,PARK,20100106000000.00000,18340321000000.00000,144 AVENUE A,DPR,False,Tompkins Square Park,Y,Tompkins Square Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M088/,No,74,27,12,{6CDA8BD7-308A-44AD-BBD1-F87933C1011D} +"MULTIPOLYGON (((-74.16735131457774 40.58952984065443, -74.16769324568975 40.58916887736088, -74.167834802449 40.589214882018, -74.16832661347927 40.58927244637598, -74.16832675999771 40.58927246327133, -74.16847786687754 40.58929044412126, -74.17129463175426 40.589437753245164, -74.17254440363772 40.58950309133077, -74.17287363162907 40.58951307138891, -74.17304463820658 40.589511280390404, -74.17317531517236 40.58950669526166, -74.17329555569653 40.589499386327695, -74.17335822588765 40.589495576228, -74.17353758998819 40.58947929954991, -74.1737176071515 40.589457540108974, -74.1739308250878 40.58942459334265, -74.17417817909158 40.58937634224892, -74.1743779569386 40.58932920834211, -74.17458500677407 40.589272305850315, -74.17485548309925 40.5891849056598, -74.17503655682148 40.58911693840491, -74.1750673029699 40.58910539726327, -74.1752821021631 40.58901400690556, -74.17545226210132 40.58893326548409, -74.17560049364627 40.588856398963024, -74.17571829910904 40.588790632728205, -74.17582710750605 40.5887314242552, -74.17596231247408 40.58865496982619, -74.17605654840611 40.58859972324691, -74.17622581949301 40.58849624827966, -74.17636153879188 40.5884091501833, -74.17640479022769 40.58838018233725, -74.17649041569925 40.588322835085954, -74.17658010687825 40.58826058446675, -74.17670776606641 40.58816873276538, -74.17682220175757 40.58808297981572, -74.17692847227488 40.588000277695905, -74.17703640913251 40.587913075686714, -74.17713742085925 40.587828368800146, -74.17724853264536 40.58773150086072, -74.17730070630421 40.58768386092926, -74.17738259367307 40.58760908820933, -74.17740394050017 40.58758851247203, -74.17752451247432 40.5874722944791, -74.17765925885988 40.58733482005766, -74.17780629340241 40.587175341037636, -74.1779990263225 40.586948996381516, -74.1780926396879 40.58682881760766, -74.17816346960534 40.58670557898033, -74.17825012321804 40.58653781990507, -74.17832398268985 40.586374902931375, -74.17838578846347 40.58621406952619, -74.17840709688797 40.586158619914244, -74.17846946096711 40.585958447944336, -74.17851232319343 40.58578613517242, -74.17855107727947 40.58557813734233, -74.17857550055953 40.5853748535061, -74.1785827780297 40.58525211859243, -74.17858617545015 40.58519481918326, -74.17858598437886 40.58499306216131, -74.17856526541208 40.584720105476904, -74.17854050143028 40.58455198433803, -74.17853945962031 40.58454490962777, -74.17850345392038 40.58436859225355, -74.17840776908488 40.58407125317247, -74.17829722675285 40.58373300997749, -74.17809329032059 40.58310898379598, -74.17775317490677 40.58206823632045, -74.1776780350826 40.5818383042587, -74.17757712593821 40.58152525653197, -74.17753275187879 40.58134953798677, -74.17750855637662 40.581222766941465, -74.17748915542444 40.58108145039539, -74.1774776210865 40.58093981731488, -74.1774755567982 40.58071146698224, -74.17750609110323 40.5803974109722, -74.17756638457884 40.58012933572954, -74.17757897037272 40.58007337921486, -74.1776736059264 40.57980268252084, -74.17776619262312 40.579599402277914, -74.17780210578881 40.57953458178374, -74.17788073295733 40.57939266326706, -74.17806757921855 40.57909104884817, -74.17926287321671 40.57716149698687, -74.17926850600699 40.5771524036901, -74.1793443000732 40.577011888870615, -74.17940792291893 40.576874778084424, -74.17945515925844 40.57675548275267, -74.17945815412094 40.5767479190581, -74.17950479683743 40.57660644107038, -74.17954845480364 40.576435494405644, -74.1795739398732 40.57629697796146, -74.17959206700624 40.576143511670324, -74.17959997630312 40.57596298252549, -74.17959581459857 40.57581680030798, -74.1795825024865 40.57567328804452, -74.17955780252018 40.57551858022467, -74.17951995481933 40.57535565402903, -74.17947775187486 40.57521651031754, -74.17946582254108 40.57518487635643, -74.1794162556309 40.575053417508656, -74.17936026090439 40.57492906662229, -74.17925261526783 40.57472901702479, -74.17916187280895 40.574586686312635, -74.17905428893434 40.57443920645357, -74.17890220993566 40.57426683680619, -74.17866758863073 40.57401270059546, -74.17847766641736 40.57380698060573, -74.17827835778218 40.57359109081444, -74.17806415501654 40.573342948896936, -74.17795541714717 40.57319728344806, -74.1778288119758 40.57304108688289, -74.17769846024959 40.57289290435379, -74.17754255123128 40.57272983135002, -74.17738146183386 40.57257510951007, -74.17722199830897 40.572433788370574, -74.17704443854747 40.572288484855726, -74.17685675125657 40.57214703019924, -74.17660587503757 40.571975002267585, -74.1763379082265 40.57181012408843, -74.1761137035202 40.5716854299332, -74.17589801723493 40.57157576829347, -74.17571743677509 40.57149275406533, -74.1754750400513 40.5713970240078, -74.17485720131916 40.57115301661418, -74.17461400083086 40.57105696627718, -74.17440403606584 40.570982179532606, -74.17422656458724 40.57092710698206, -74.17417622911138 40.57091148713724, -74.17395482169192 40.570852425705745, -74.17372523219878 40.57080070650779, -74.17348641183673 40.570756756126734, -74.17307617289333 40.570703701776345, -74.17285194615913 40.57068535527118, -74.17262787525891 40.57067699493309, -74.17234513167473 40.57067660721029, -74.1720180990546 40.570692002910626, -74.17180513032466 40.570711259698484, -74.17162866883389 40.57073377819147, -74.17156333643887 40.57074211560157, -74.17135898630995 40.570775823846006, -74.17108259179376 40.57083291945591, -74.17082694856082 40.57089802794526, -74.17072415397193 40.57092931196312, -74.17061804934153 40.57096160309104, -74.1705646075813 40.57097786671512, -74.17051199837236 40.57098488517471, -74.17047184854572 40.57098610013947, -74.17042666349217 40.5709832575843, -74.17038021655152 40.57097552882562, -74.17033318275324 40.57096226448191, -74.17028617628826 40.570942574822446, -74.17024254028897 40.57091688354333, -74.17020509380703 40.570886643523174, -74.17017466850895 40.5708528963456, -74.17015545110121 40.570823645997265, -74.17013588704341 40.5707774473511, -74.17013216138933 40.570760362678385, -74.17012936773934 40.570747548722636, -74.17011603989849 40.570670161009296, -74.17009802655068 40.570565560919725, -74.1699281000691 40.56957884979588, -74.17001842907621 40.5670910824798, -74.17001991506058 40.56709218972923, -74.1700219702892 40.56699357180638, -74.17004727778672 40.565779267637296, -74.1700851211358 40.563963430591635, -74.17008658387651 40.5638932881807, -74.17009558054859 40.5634615640186, -74.17009655063451 40.56341497922021, -74.17009719044883 40.56338430091942, -74.17009857948985 40.56331768597828, -74.17006771553092 40.56319234950236, -74.17008630197222 40.56317778837498, -74.17034644176363 40.56297398370717, -74.17061296225872 40.56275867013618, -74.17061358676095 40.562758155007586, -74.17077855264905 40.56262155473641, -74.17087751402211 40.56253834563479, -74.17087765894479 40.56253822294748, -74.17109344037155 40.56235340172799, -74.17109373018994 40.56235314644709, -74.17145459300022 40.562033215675484, -74.17145480503748 40.56203301994458, -74.17184628537878 40.56166951253647, -74.17211469211993 40.56179792565029, -74.17248797468352 40.561976511150924, -74.17284037022739 40.5621451022033, -74.17302991915616 40.56223578446259, -74.17319682974795 40.562315634787375, -74.1732936201986 40.562355502818455, -74.17330166992149 40.562358819021455, -74.1732899684 40.56236019287039, -74.17349610699095 40.56243890743938, -74.1743398932527 40.562761102742336, -74.17493894416043 40.56298984163798, -74.1752114409696 40.563059853809605, -74.17533934349467 40.563081946677514, -74.17591827386941 40.563181938501785, -74.17606044169658 40.56320792420973, -74.17620711628827 40.56324000750164, -74.17637506655291 40.56328816206515, -74.17663372242082 40.56338140320502, -74.1769659805494 40.56354724255072, -74.17729027311098 40.5637169636964, -74.17740491649658 40.5637859480689, -74.17743674727305 40.56381253649378, -74.17743920929588 40.56381521896286, -74.17748558746005 40.563865736220265, -74.17752809001263 40.563924595628606, -74.17755787022872 40.56397621013624, -74.17757599465264 40.564023806493985, -74.17759545030852 40.5640911088263, -74.17776778655917 40.56518637484555, -74.17822536702904 40.56809430559565, -74.17828518609184 40.568386425609006, -74.17834955094834 40.56860070599791, -74.1784051398649 40.568786269571994, -74.17849848462929 40.56899387608114, -74.17857983638046 40.56914834486479, -74.1787271612825 40.569405793353596, -74.17887434481293 40.569610464701114, -74.17896015811799 40.569712781263696, -74.17913292814538 40.5699115040564, -74.17928610145253 40.57006959659422, -74.1793084217257 40.57008973895633, -74.17946984308483 40.57023540371229, -74.17973110479237 40.57044765640627, -74.17983313189377 40.57052045379506, -74.18000961657006 40.57063659835801, -74.18024419876764 40.57077283050584, -74.18048691236483 40.57090284026768, -74.18107204383678 40.57116534057845, -74.18119753697498 40.57121528221995, -74.18144172500122 40.57130685226234, -74.18144044643914 40.571195698678174, -74.18147357905374 40.571318796959424, -74.18192057965587 40.57148641817167, -74.18203260101666 40.57152826198781, -74.18260550556094 40.57174225709399, -74.18289945790609 40.57185366096948, -74.18349552970072 40.57207956023666, -74.18378765298381 40.57223031507323, -74.18399928829417 40.57233953255051, -74.18421837131699 40.57246754969522, -74.1843160063852 40.572524599935136, -74.18463067157684 40.57270846574176, -74.1849467232737 40.57293991948202, -74.18513296927472 40.573096776676735, -74.1853056148632 40.57325192829808, -74.18550670079041 40.57344848227145, -74.18569760937675 40.573651959381664, -74.1858727018254 40.57387100575244, -74.18600945084157 40.57408360854192, -74.1860582100939 40.574159414247504, -74.18619255094491 40.57439061568682, -74.18628818086766 40.574543934677884, -74.1863910409047 40.57466959929727, -74.18649953280942 40.57477935768755, -74.18656175446907 40.57483158354845, -74.18676837518673 40.574941699186134, -74.1869769168587 40.57504968968541, -74.18708711973187 40.57511787283249, -74.18715333993464 40.57515915946991, -74.18728303226384 40.575203784423756, -74.18747484692715 40.575245419881774, -74.18763768467416 40.575262711593645, -74.1878640061564 40.57526937482506, -74.1880565998485 40.57525025492241, -74.1881704182311 40.57522837126393, -74.18831076017662 40.57518908547054, -74.18844534595141 40.57512811256355, -74.1885387199961 40.57507039230334, -74.1886295523404 40.574997193388334, -74.18869798080746 40.574926908384825, -74.18877669547805 40.57482647121892, -74.18883563942435 40.57471623454955, -74.18887141187089 40.57461347339523, -74.18888263947923 40.57455704235231, -74.18889385413357 40.57447515704649, -74.18889436825256 40.57445065467532, -74.18889160980933 40.57433426885793, -74.18889783076831 40.57437292363629, -74.18883456363682 40.57377844778536, -74.18932554905736 40.573777108352004, -74.18936130924988 40.574264506247815, -74.18940564286926 40.57475149464589, -74.18945854394697 40.57523798529478, -74.18952000179453 40.57572389175015, -74.1895900068959 40.57620912486222, -74.18966854619586 40.57669359728621, -74.18975560546185 40.57717722347849, -74.18985116808773 40.57765991429537, -74.18995521984026 40.57814158509014, -74.19006774056669 40.57862214672137, -74.19018870894126 40.57910151364986, -74.19031810599827 40.579579600330824, -74.19051668228288 40.5804210397906, -74.189940176006 40.580504033165845, -74.18990906014399 40.58036207524579, -74.18985388511574 40.58017179972585, -74.18979890363259 40.58004993592374, -74.1896813309591 40.57987463557065, -74.18953259842662 40.579720207568684, -74.18938005588747 40.57959850536964, -74.18922958853977 40.57949704247637, -74.18899336500776 40.579378264690554, -74.18873527710613 40.5792867011188, -74.1883831144212 40.57921559992766, -74.18765992168248 40.57912567905803, -74.18631605341358 40.578958514270425, -74.18543045851345 40.578848344857285, -74.1840049323103 40.57870113781695, -74.18367614414339 40.5787069410238, -74.18331628614062 40.578741810520896, -74.18303266393625 40.57881085399422, -74.18294368127903 40.57884640170549, -74.18264774303321 40.578964624454024, -74.18238167035973 40.57912333440723, -74.18207040939787 40.579390771025714, -74.18187721248894 40.579620593187165, -74.18172891565439 40.57993023866368, -74.18167077830967 40.58018886529554, -74.18166804568119 40.58048559379782, -74.18167530418704 40.58060957392649, -74.18175920665682 40.58089745190326, -74.18186358102282 40.58109514576803, -74.18227360889739 40.58168279599976, -74.1829275699659 40.58261996851045, -74.18364389689133 40.58368606039407, -74.18404701288796 40.584295796141475, -74.18414155944483 40.584476947472986, -74.18419201084991 40.584717197072905, -74.18423703467516 40.58499540259555, -74.18423107742926 40.58527009405153, -74.18420699301181 40.585455511249144, -74.18415546728649 40.585639754913075, -74.18402237364867 40.58595856056217, -74.18383101905145 40.586261801837765, -74.18363405289807 40.58651211346487, -74.18362643944278 40.586521788270204, -74.1832865167507 40.586805292299964, -74.18313400956349 40.586942023602624, -74.18236850840202 40.587554583471594, -74.18208534285911 40.58779869578439, -74.18197730608831 40.58789183176452, -74.18180711414647 40.5880372235268, -74.18178394611589 40.58805701680589, -74.18160806422313 40.58828874882376, -74.18147803728108 40.58853970730708, -74.1814337778338 40.58883862098644, -74.1814526553353 40.589151175166435, -74.18146768923204 40.58919118967297, -74.1816570715981 40.589695296162155, -74.18205627973916 40.590635849029276, -74.18234709980861 40.59145835517876, -74.18238412621427 40.591812099161814, -74.18236225814383 40.592071277926486, -74.18228208038103 40.59242177326326, -74.18207987335843 40.59281151231431, -74.18142536360234 40.59387612044146, -74.18124067332683 40.59417652525484, -74.18053489090846 40.59531426133887, -74.18042393689755 40.59550041013289, -74.18030947766466 40.59569244023819, -74.18022243563459 40.595860153591005, -74.18017800093641 40.59596096765036, -74.18011181997629 40.59614174002937, -74.18007139252433 40.59630576818559, -74.18003718195207 40.59652567583594, -74.17998695894161 40.59700078476065, -74.17996353603402 40.59722236125872, -74.17993190675203 40.59754425820713, -74.17990792462545 40.597764066026755, -74.17986948531069 40.59792200072518, -74.17985313328451 40.59795791941733, -74.17977089487103 40.59813855909794, -74.17954151146766 40.598501023924456, -74.17933478360706 40.598738359298096, -74.17900839368608 40.59900758910568, -74.17886637477466 40.59912473430058, -74.17808696703753 40.59965023352399, -74.17665171627789 40.59886977248525, -74.17617376113041 40.59860986115657, -74.17576797004511 40.59838919039764, -74.17544494221623 40.59821352435686, -74.17150264847102 40.59606951418038, -74.17005091915054 40.59527827271255, -74.16775612196358 40.59402742497147, -74.167269359976 40.5938624407449, -74.16611369036394 40.59360098030557, -74.16388064843187 40.59335541044873, -74.1635747517907 40.59332176684692, -74.16355641449262 40.59326600996261, -74.16354139948174 40.593201720380506, -74.16353334870533 40.59313031484701, -74.16353105465913 40.59307632446713, -74.16353392892495 40.593024753645295, -74.16354062148372 40.5929752197785, -74.16356437888679 40.59288303439635, -74.16357083771938 40.592862040281126, -74.16359554802261 40.59280250385078, -74.16362288476242 40.592749884205546, -74.16366100977324 40.592689765830414, -74.1637540526192 40.592587611056906, -74.1638404766036 40.59251062449755, -74.16486188056052 40.59172284089954, -74.16530203729849 40.591383349250826, -74.16565672622514 40.591109775979, -74.16565675805951 40.591109751618944, -74.16577029058323 40.59102218206503, -74.16585326564599 40.59096138948268, -74.16596164027658 40.59087956712661, -74.16625449709358 40.590637433044606, -74.16663215697737 40.59027227164508, -74.16724453551335 40.589634980204494, -74.16735131457774 40.58952984065443)), ((-74.17803670823935 40.599830451346484, -74.17547531895868 40.60159594100326, -74.17464061691759 40.60217124148932, -74.1727805033747 40.602848977597795, -74.1728098962967 40.602778537660924, -74.17279280859346 40.602784122286565, -74.17276715691769 40.60279134612978, -74.17274987626395 40.602794965195656, -74.17273259368886 40.60279738566467, -74.17271216731443 40.602799412824105, -74.1726969755418 40.60279983458505, -74.17267339798859 40.60279907214735, -74.17265819987145 40.6027974974515, -74.1726372334301 40.602793537826365, -74.17261521487555 40.60278798134793, -74.1725968670689 40.60278281828471, -74.17257169720398 40.60277487293826, -74.1725480969606 40.60276532680006, -74.17245555559698 40.60271748579355, -74.17232600702796 40.60265202652827, -74.17229894686663 40.602639507494615, -74.17225539103451 40.60262299504255, -74.17217817214771 40.60259045686031, -74.17207307406046 40.602549820536595, -74.17202490463276 40.6025333140042, -74.17198729131066 40.6025198066087, -74.17194704221939 40.60250680563667, -74.17189228263697 40.602490812301056, -74.1717600713601 40.60245220729808, -74.17166969067827 40.60242822901152, -74.1716277554337 40.60241833455189, -74.17153616743282 40.60240266079265, -74.17144735465672 40.60238509352158, -74.17139755923574 40.602377581782505, -74.17133283104523 40.60237009228448, -74.17127059594232 40.60236449643833, -74.17112578436011 40.60235387524909, -74.17107931912349 40.60235078268688, -74.17100795784039 40.60234456811559, -74.16919304337057 40.602172748117106, -74.16811280219551 40.60204523426074, -74.16728843968865 40.60194791806616, -74.1683550586944 40.596429818014975, -74.16819631235582 40.596410951251706, -74.16793375175968 40.5963797457533, -74.16829276576806 40.59455969853178, -74.16832208603525 40.59451718145383, -74.17005035193812 40.59545263037973, -74.17149961491407 40.59623702613975, -74.17558331550131 40.598474997259366, -74.17803670823935 40.599830451346484)), ((-74.19512450041437 40.564096055370555, -74.19462296764024 40.56461920589721, -74.19461275822412 40.564629328914606, -74.19345703151943 40.56265472877724, -74.19346869035027 40.562655861814946, -74.19346530907147 40.56264991682415, -74.19361693114914 40.56256176804282, -74.19383013644087 40.562434083749544, -74.19396571071817 40.56234959251232, -74.19410255169568 40.56226431101161, -74.19422051622992 40.562191563292565, -74.194288473734 40.562146541747644, -74.19437548831178 40.56208224633924, -74.19523520049103 40.561266560800185, -74.19542064660011 40.561085807584476, -74.19552485428325 40.56098647762685, -74.19552828661809 40.56098320647015, -74.19560339281551 40.56091161540547, -74.19560498004552 40.56091010251728, -74.19564664598141 40.56087038671659, -74.19569938594647 40.560820114956904, -74.19570171498104 40.560817896590734, -74.19574125429676 40.560780206964075, -74.19579144472624 40.560733510999675, -74.1958460725377 40.56068486410776, -74.19587799584158 40.56065643583986, -74.19592391108134 40.56061554650667, -74.19600135965436 40.56054657622082, -74.19607478867687 40.56048118513792, -74.19614542765977 40.5604182788258, -74.19616791405731 40.5603982541079, -74.19619848274466 40.56037102306381, -74.19623203919554 40.56034114836035, -74.19624757725276 40.56032728970493, -74.19690399414058 40.55974238644813, -74.19698034183916 40.559674356631454, -74.19759880216245 40.56024157869238, -74.19830821076606 40.56089219679399, -74.19834630413735 40.56092713363204, -74.19792590333135 40.561315902589335, -74.19767775479866 40.561547203648, -74.19750338838575 40.56170973008504, -74.19731471646992 40.56188558972924, -74.19717763150658 40.56202057831268, -74.19710214679402 40.56209579747527, -74.19704159501565 40.56215613496532, -74.19691733708348 40.56227995269458, -74.19678572981833 40.562411094263226, -74.19671759311494 40.562478990095975, -74.19660970245188 40.56258649701327, -74.19568681070194 40.56351806952461, -74.19533137772964 40.5638808477863, -74.19519619975259 40.564021427503135, -74.1951961710238 40.56402129427386, -74.19514458623729 40.56407510379458, -74.19512440251792 40.56409609335898, -74.19512450041437 40.564096055370555)), ((-74.18237938994723 40.587876843488196, -74.18241008612246 40.587848111230414, -74.18267769776685 40.58763563308558, -74.18339318001722 40.58706754870587, -74.18355067670568 40.586937368516786, -74.18373026204162 40.58678893065946, -74.18401052081381 40.586487743607194, -74.1842074524385 40.586241295541875, -74.18439834658658 40.58587845489688, -74.18446038190166 40.585698418620694, -74.18555399206078 40.58637742707455, -74.18598886956649 40.58567798640676, -74.18665511535603 40.585452035771084, -74.18609547671855 40.586361598119005, -74.18599045557792 40.58652739191096, -74.18583989038746 40.58676508608549, -74.185730617718 40.58693758731761, -74.18551504496746 40.58727789922604, -74.18541754426704 40.587431815911145, -74.18524809185965 40.58769931382982, -74.18485403305391 40.587536091574734, -74.18469304412116 40.5877506673876, -74.18463656203065 40.587815046665874, -74.18459953861188 40.58784621480021, -74.18455755801016 40.58786516355201, -74.18453465006205 40.5878718930489, -74.18448519705238 40.58788061840393, -74.18443455339762 40.587883374265466, -74.18439769273562 40.58788070303332, -74.1843020126579 40.58785537257685, -74.18426242333672 40.58785397361767, -74.18422925667535 40.587857820713495, -74.18422283263993 40.58785935470215, -74.18419769275256 40.587873589986636, -74.18418146632625 40.587889497662125, -74.18417538308607 40.58790795467397, -74.18418059985072 40.587956510741265, -74.18419976485977 40.58803940399144, -74.18424587486285 40.58819027971524, -74.18475157696699 40.58848310469507, -74.18446461896936 40.58893608327076, -74.18418464334086 40.58937803198652, -74.18386018841943 40.58989517208166, -74.18375526950791 40.5900034155362, -74.18364112346077 40.5900837825766, -74.18347002943882 40.59016038979964, -74.18332099247213 40.5902036844754, -74.18317934142279 40.5902339140721, -74.18315837189913 40.59023838888872, -74.18299569452235 40.59025242611132, -74.18284651557117 40.59024405277018, -74.18253116412302 40.59019106025333, -74.18242939225152 40.5901636658075, -74.18232755815087 40.59011388161523, -74.18224151788263 40.59005373875944, -74.18215542842816 40.58997637337479, -74.18204767792156 40.58986422164156, -74.18197365740694 40.58971730385292, -74.18184089468528 40.58944085470348, -74.18175701619583 40.589158048718275, -74.18174584796803 40.58907795206395, -74.18174247460095 40.589053753984906, -74.18172769648794 40.58886252922644, -74.18176714579408 40.58868860423219, -74.18185747218673 40.58842269560901, -74.18196595223598 40.58826383871466, -74.18237938994723 40.587876843488196)), ((-74.18435914273066 40.5933582384167, -74.18432951286923 40.59338443448948, -74.18429988298708 40.593410631455065, -74.18427025426044 40.593436827510594, -74.18424062432926 40.59346302356025, -74.18421099437484 40.59348921960221, -74.18417491116107 40.59352112269962, -74.18414166917354 40.593550511469935, -74.18410974114258 40.59357873914987, -74.18407817958918 40.5936066438459, -74.18404583550287 40.593635237787396, -74.18401233296812 40.59366485927253, -74.18391996602321 40.593746521749935, -74.18390818095736 40.593739211240184, -74.18386748646047 40.59371396531054, -74.18382726769987 40.59368901307705, -74.18378887725703 40.593665196168615, -74.18375251037948 40.59364263494526, -74.18371066104598 40.59361667218786, -74.18364084320199 40.59357335867717, -74.18305831029453 40.59321195838236, -74.18282815695225 40.59342074946186, -74.18236775520111 40.59383840871511, -74.18235663900036 40.59383199030564, -74.18146662441109 40.59460170170274, -74.18146577679018 40.594601049260376, -74.18138132860254 40.594673949481155, -74.18135694122462 40.59469500171487, -74.18122370021469 40.59481002250792, -74.18121419956717 40.59481822415995, -74.18199487833009 40.593580777995356, -74.1826487158204 40.592552036450286, -74.18359173819778 40.59103555709882, -74.18467357309498 40.58930178771768, -74.18489610707267 40.588943102758506, -74.18506786871878 40.588666249723516, -74.18603277089063 40.589224954260615, -74.18600723342058 40.589297939948324, -74.18654152324201 40.5896293793176, -74.18629363287958 40.58990765654385, -74.18619843515098 40.5900146761685, -74.18634592513119 40.590095553681294, -74.18614729414338 40.59031885016484, -74.18621759543028 40.5903574003033, -74.18612022782 40.59046685839383, -74.18602189544134 40.590577400393244, -74.18582739295624 40.59079605102104, -74.1859051066283 40.590838666039105, -74.18568403498689 40.59108718388893, -74.18560185023873 40.59104508384012, -74.18549979932139 40.59115885166771, -74.18544085685916 40.591127946230074, -74.18523516286949 40.591357256303645, -74.18515474920517 40.59131529086135, -74.18492687554303 40.59119636796348, -74.1847236338237 40.591422939176134, -74.18462792611068 40.59152963410755, -74.1847121754917 40.59157377662444, -74.18450803020797 40.59180064697085, -74.184730578178 40.591917252299886, -74.18500297953688 40.59205997591837, -74.18512675355252 40.5921248268992, -74.1852476435854 40.59218816681247, -74.18538733590898 40.59226098580949, -74.18533261141444 40.5923221720018, -74.18528759779464 40.592372500189185, -74.18525911021304 40.59240435086075, -74.18523040827067 40.5924364414103, -74.18520420412148 40.592465739001064, -74.18517259329968 40.592501082417606, -74.18514610999323 40.59253069202632, -74.18507994167035 40.59260467318162, -74.1850239270629 40.592667300340686, -74.18499745186884 40.59269690089619, -74.18496577840564 40.59273231189495, -74.18493879323229 40.59276248419028, -74.18490780865139 40.5927971268168, -74.18486022148332 40.592853005307525, -74.18461224292622 40.593105813889856, -74.18440055826835 40.593321622362126, -74.18435914273066 40.5933582384167)), ((-74.18998763763638 40.585813721576734, -74.18957109741582 40.58612887851902, -74.18930702225981 40.58628398728038, -74.18939654293477 40.586339214870215, -74.1889420612325 40.58676972992505, -74.18871337418071 40.58662864850095, -74.18856352454442 40.58671564664272, -74.1888273407585 40.58687839851739, -74.18837257958008 40.58730916839482, -74.1879695150049 40.58706050990647, -74.18782590543786 40.587143883963, -74.18826263554696 40.587413312448966, -74.18781194210764 40.587840219160334, -74.18725613338687 40.587497326420504, -74.18714014628763 40.587571886177926, -74.18711613098034 40.5875976839176, -74.18769255975627 40.58795329869223, -74.18724046885822 40.588381521078595, -74.18674536304704 40.58807607525327, -74.18667541802851 40.58820690466609, -74.18653335793327 40.588472622846695, -74.18624574763373 40.58831210878446, -74.18629832005313 40.58813431569096, -74.18558195974856 40.5878376027644, -74.18585389270216 40.58739927286944, -74.18591150942315 40.587306399428904, -74.18641477393118 40.58649936792599, -74.18706262053193 40.585446322898555, -74.18710966654737 40.58548145864583, -74.18934945522113 40.58517518302967, -74.18964775557383 40.5856012205165, -74.18965123767876 40.58560619377519, -74.18998763763638 40.585813721576734)), ((-74.18998763763638 40.585813721576734, -74.18964775557383 40.5856012205165, -74.18983863433823 40.58553445551332, -74.19151758500742 40.58466299511881, -74.19151779945366 40.58466281105412, -74.19151781499484 40.584662875866044, -74.1916821024518 40.58534479426177, -74.19166249603917 40.585395051988314, -74.19163668950458 40.585443654079945, -74.19160491898332 40.585490157080095, -74.1915674738237 40.58553413725433, -74.19152469541362 40.58557519329411, -74.19150189741507 40.58559874041695, -74.19148452957803 40.58562484048123, -74.19147307295262 40.58565277406819, -74.19146784425092 40.58568176800085, -74.19146898647445 40.58571102237495, -74.1914764689618 40.58573972766891, -74.19149008392169 40.585767091765156, -74.19150945711655 40.585792358843854, -74.19190334277688 40.58622001506172, -74.19190060719507 40.58623648754268, -74.19189467857441 40.58625246466401, -74.19188569054235 40.58626758869346, -74.19187384174685 40.58628152070095, -74.19153783861104 40.586618415011905, -74.19069676270139 40.58612839628974, -74.19016928761948 40.58582107643944, -74.19039539836145 40.58561563968727, -74.19006893262525 40.58575324110234, -74.18998763763638 40.585813721576734)), ((-74.1834651873561 40.590476397187366, -74.18346528284096 40.59051115189962, -74.18345777682248 40.590545918748326, -74.18316900379826 40.5910658409989, -74.18313254847465 40.59113147533621, -74.18296141043294 40.59138808689961, -74.18295465872072 40.591398211445835, -74.18289782654962 40.59146201946412, -74.18286370951006 40.59149393253509, -74.18284094668927 40.59150845009927, -74.18278014643394 40.591511442015374, -74.18273070163752 40.59149704021278, -74.18268499368845 40.59145946194052, -74.18264296599654 40.59137843377398, -74.18232141266905 40.5905303499882, -74.18230226836685 40.590478248067065, -74.18229837333196 40.59044349938276, -74.18232112009369 40.59042318977249, -74.18234767490283 40.59040577020329, -74.18241605865211 40.590396973397816, -74.18248829002125 40.59040554697264, -74.18268222849068 40.59044868193734, -74.18283809983181 40.59046870844426, -74.18294072583784 40.59047433727876, -74.18297298418884 40.59047217868784, -74.18307371578183 40.590465436305195, -74.18325225547443 40.590436189924056, -74.18337005027597 40.5904302098285, -74.18341947969232 40.590438819203655, -74.18344992307719 40.5904532519483, -74.1834651873561 40.590476397187366)), ((-74.17010167794973 40.56122575602884, -74.17011102418029 40.561225027168156, -74.17019323743722 40.56123816113482, -74.17040569182538 40.56127102244733, -74.1707754495919 40.561328214167524, -74.17107926248516 40.56140714080934, -74.17072997512575 40.561727516086556, -74.17037475546087 40.562044076349906, -74.17001367414645 40.56235675570165, -74.17002299041857 40.56203380478582, -74.17002397700634 40.561852649686415, -74.17001781545987 40.561257728242445, -74.17002625025515 40.56125147420252, -74.17003970293744 40.56124369174293, -74.17007029555893 40.56123173877688, -74.17010167794973 40.56122575602884)))",R017,69246,R017,R-02,R-02,R-02,R-02,"Victory Blvd., W. Shore Exwy., Richmond Ave. bet. Sign Rd., Travis Ave. and Arthur Kill Rd.","502, 503","50,51",122,"10312, 10314",R,920.426,False,Freshkills Park,No,100005100,PARK,,19291120000000.00000,,DPR,True,Freshkills Park,Y,Freshkills Park,Flagship Park,Undeveloped,http://www.nycgovparks.org/parks/R017/,Yes,63,24,11,{08764608-0247-4FFD-B12F-8287EB8C5116} +"MULTIPOLYGON (((-73.88159347932603 40.83294764211241, -73.881666661801 40.8328549599216, -73.88170224434343 40.83286778976, -73.8826029082941 40.831727101876226, -73.88262694113325 40.83169666438271, -73.88262699089493 40.83169668244326, -73.88273263420763 40.831563243755376, -73.88273247544322 40.83156318686274, -73.88279551738135 40.83148381645411, -73.88341750442986 40.830700707933765, -73.88344959382806 40.83071608571131, -73.88396807622188 40.83005753138584, -73.88397884533579 40.83006855077843, -73.88343195413901 40.83172436155096, -73.88335718753122 40.831959945569075, -73.8833521931661 40.83196985046797, -73.88334523403601 40.83198059264081, -73.88333904119659 40.831988391869416, -73.88332998580265 40.83199788473487, -73.88332060554839 40.83200603283154, -73.88330848922736 40.83201473106315, -73.88329587014807 40.83202212036514, -73.88328923700335 40.83202544548505, -73.88328199224303 40.832028692543005, -73.88327238615251 40.83203243428392, -73.88326277159557 40.83203559519604, -73.88325454095981 40.832037871420944, -73.88324214818535 40.832040604485194, -73.88322995601004 40.8320425255045, -73.88321059296324 40.83204409437133, -73.88319667316858 40.83204413070204, -73.88318585355739 40.832043532620574, -73.88301423876331 40.83201957388548, -73.88294307812644 40.83200712167115, -73.88290707237127 40.83245046645483, -73.8829174668283 40.83245420415743, -73.88294164644189 40.83246372622495, -73.88295746189982 40.83247051850281, -73.88297030794513 40.83247638295675, -73.88298281464206 40.83248240465155, -73.88299505900046 40.83248861338187, -73.88311143175528 40.83253766519569, -73.88312364437294 40.832543058031504, -73.88313698810195 40.83254841058937, -73.88316560738716 40.83255814512275, -73.88319792209695 40.83256654165393, -73.88323175481102 40.83257264975375, -73.88326347840156 40.83257604972083, -73.88329408899659 40.83257727565807, -73.88333183039187 40.83257604684723, -73.88337017011776 40.83257165518962, -73.88340040059559 40.83256585775247, -73.88342398991666 40.83255980865991, -73.88345139219811 40.832550963776406, -73.88346975144512 40.83254384230221, -73.88349742023071 40.83253107061763, -73.883525642349 40.8325150955234, -73.88354491524171 40.832502114537355, -73.88357349746306 40.83247885118701, -73.88359840992872 40.83245309785853, -73.88361831339427 40.83242662987971, -73.88363189823285 40.832403271235314, -73.88364144263244 40.83238194633337, -73.88364654966188 40.83236726891184, -73.88369306561256 40.83208103939905, -73.88371873232664 40.83200213147009, -73.8837523510676 40.83192496680451, -73.88423996425801 40.8320938192689, -73.88406552992573 40.83221532346545, -73.88380031633174 40.83231817496004, -73.88378320012181 40.83232639004033, -73.88377504119629 40.83233104098039, -73.88376726349749 40.8323359930695, -73.88375938981449 40.83234159611936, -73.88375017082456 40.83234905283274, -73.88374236065575 40.83235630115017, -73.88373674976273 40.83236216852356, -73.88372918422772 40.832371218077064, -73.88372313835626 40.83237972526313, -73.88371694912355 40.83239021339375, -73.88371221301838 40.83240024193574, -73.8837088455492 40.83240931373066, -73.88370605595165 40.83241945679698, -73.88367554309418 40.8326532747135, -73.88367262754026 40.832676455920726, -73.88366919607786 40.8326983840187, -73.88366322115199 40.832729353223456, -73.88365272367709 40.83277227463976, -73.88364554834591 40.832796798689124, -73.88363732170404 40.83282182685496, -73.88362468096899 40.83285576456726, -73.88361771926002 40.832872697656335, -73.88360606897366 40.83289889030686, -73.88359621065104 40.83291934230748, -73.88358301575406 40.83294473195584, -73.88357173514973 40.832964937583874, -73.8835544642774 40.832993670254226, -73.88353875681551 40.833017866905806, -73.88351928936314 40.833045731076204, -73.8834941362682 40.83308147063271, -73.88346266520153 40.833124633784486, -73.8834416040375 40.83315262420119, -73.88342329604816 40.83317640578151, -73.88340676646168 40.83319746065666, -73.88338157587394 40.83322882014193, -73.88335543150855 40.83326048842721, -73.88333512415484 40.83328449939821, -73.88331891380238 40.83330331775366, -73.88267016270287 40.83412388580427, -73.8826014755003 40.834209485392364, -73.88253538369246 40.83429291198615, -73.88249213493349 40.83434808087439, -73.88245740194799 40.834392726236956, -73.88240803539817 40.83445992397189, -73.88231122904028 40.83458402688507, -73.88224866531671 40.83466787654075, -73.88215456837588 40.834795494915305, -73.88211433350405 40.834850941388275, -73.88207482985838 40.83490585009852, -73.88203315970281 40.83496428291655, -73.88198527917493 40.83503208801781, -73.88186765927476 40.83521000713087, -73.8805123581813 40.83474295429022, -73.8802608450394 40.83465627745032, -73.8802704762394 40.8346415229349, -73.88066733765878 40.83422232522394, -73.88095873945316 40.83378019967567, -73.8809411032185 40.83377384198583, -73.88123661261292 40.83339959656326, -73.88159347932603 40.83294764211241)), ((-73.88318140451226 40.82951250558687, -73.88275580103308 40.829429237086245, -73.88277672652046 40.82936941411883, -73.88313204179912 40.8294389310055, -73.88315649858825 40.82936899447953, -73.88317976502181 40.82930245971492, -73.88367771262327 40.82976044454292, -73.88357084962847 40.82989579645384, -73.88359583066772 40.829911611861256, -73.88313305576305 40.83049775182312, -73.88311590819933 40.83055305368316, -73.88241004781754 40.83144705485881, -73.88235686210622 40.83142789840934, -73.88239674482966 40.83137722498884, -73.88243194352731 40.83133250175504, -73.88247881048876 40.831272953839424, -73.882525098705 40.8312141410194, -73.88257202728973 40.83115451298351, -73.88261855654575 40.83109539510245, -73.88263507864133 40.831074399758194, -73.8826688509058 40.830977852388116, -73.88269347077366 40.83090746679602, -73.88271817876553 40.830836828248295, -73.88274017235915 40.83077395100637, -73.88276234344838 40.83071056786159, -73.88278747785856 40.83063871406146, -73.88281200810965 40.83056858408994, -73.88283345699722 40.83050726142974, -73.8828580014444 40.830437093640604, -73.8828788902198 40.83037737598527, -73.88290389450702 40.8303058903265, -73.88292664794695 40.83024083821806, -73.88295006978038 40.830173879533355, -73.8829716137325 40.830112285891, -73.88299670718479 40.83004054455888, -73.88301987270013 40.82997431860119, -73.88304227083792 40.829910283666145, -73.88306355605644 40.82984943175001, -73.88308859212367 40.829777850624964, -73.88311029071089 40.82971581676726, -73.88313351081243 40.829649432351474, -73.88315780203934 40.82957998012653, -73.88318140451226 40.82951250558687)), ((-73.88402916888577 40.8283598631489, -73.88477900287127 40.82832411497179, -73.8847836737469 40.828378197111746, -73.88379196127367 40.829568591171984, -73.88364601563941 40.829423954088625, -73.88402916888577 40.8283598631489)))",X147A,6408,X147A,X-14,X-14,X-14,X-14,"Sheridan Exwy. bet. E. 174 St., E. 172 St. and Jennings St.",209,17,43,"10459, 10472",X,17.064,False,Starlight Park,No,100004095,PARK,20100106000000.00000,19451217000000.00000,1041 EAST 172 STREET,DPR,Part,Starlight Park,Y,Starlight Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/X147A/,Yes,85,32,15,{F94299C7-3071-415E-8B73-AC7F67BA8C7C} +"MULTIPOLYGON (((-73.9434157261838 40.81357871395589, -73.94365066757965 40.813677746856094, -73.94347034755599 40.81392505672657, -73.94343741909418 40.81391117652009, -73.943346152636 40.813872704786924, -73.94324540420821 40.81383023730986, -73.94323540555618 40.81382602256249, -73.9434157261838 40.81357871395589)))",M297A,5957,M297A,M-10,M-10,M-10,M-10,W. 133 St. bet. Lenox Ave. and Adam C Powell Blvd.,110,9,32,10030,M,0.171,False,Margrichante Garden,No,100003882,PARK,20100106000000.00000,19970715000000.00000,,DPR,False,Margrichante Garden,N,Margrichante Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M297A/,No,70,30,13,{2F464795-362D-44B5-9ED8-3E4CC4AEE1AC} +"MULTIPOLYGON (((-73.85099096991074 40.72382445031966, -73.85113291806051 40.723259620273794, -73.85206157023102 40.72359457076549, -73.85159690426067 40.724333726882236, -73.85159061982806 40.724341893616284, -73.85158042555616 40.72435069917509, -73.85156991750108 40.72435689825112, -73.85155756030088 40.72436162891115, -73.85154491599181 40.72436453206392, -73.85153148623499 40.72436561787284, -73.85152047113733 40.72436510478594, -73.85151086337123 40.72436354261718, -73.85150159719058 40.724361138010416, -73.85149542712963 40.72435887337326, -73.85148511369083 40.7243536911406, -73.85147987057037 40.72435030115963, -73.85147491628292 40.72434637034424, -73.85146772682788 40.72433891745025, -73.85141446343752 40.72427056571802, -73.85134066050013 40.72418196467863, -73.85126341190494 40.72409507101004, -73.85118259604614 40.724009749471676, -73.85099096991074 40.72382445031966)))",Q335,5349,Q335,Q-06,Q-06,Q-06,Q-06,Booth St. bet. 68 Ave. and 68 Dr.,406,29,112,11375,Q,1.526,False,Russell Sage Playground,Yes,100000116,PARK,20090423000000.00000,19500720000000.00000,68-17 68 AVENUE,DPR/DOE,False,Russell Sage Playground,Y,Russell Sage Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q335/,No,28,16,6,{39038BF1-3EB9-47FF-92E1-08F6FF49BC1B} +"MULTIPOLYGON (((-73.86132955643444 40.74414481484313, -73.86140128162836 40.74361517741789, -73.86156508276392 40.74362806257507, -73.86174193086113 40.743799899203395, -73.8616911823251 40.74417465215685, -73.86132955643444 40.74414481484313)))",Q046,4898,Q046,Q-04,Q-04,Q-04,Q-04,102 St. bet. Corona Ave. and Alstyne Ave.,404,21,110,11368,Q,0.398,False,Josephine Caminiti Playground,Yes,100000338,PARK,20090423000000.00000,19300416000000.00000,102-02 CORONA AVENUE,DPR,True,Josephine Caminiti Playground,Y,Josephine Caminiti Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q046/,No,39,13,14,{F7088AAA-076F-4CC8-BF4F-9293F4645E0C} +"MULTIPOLYGON (((-74.06327332141916 40.60719955490907, -74.06344968666203 40.607438471492365, -74.06348625748936 40.60748801421915, -74.06361669596787 40.607664714532106, -74.06362552668688 40.60767667757907, -74.06299885412975 40.60795977131572, -74.06299002230317 40.60794780732108, -74.06281933737063 40.607716582799775, -74.06264723865547 40.60748344157988, -74.06327332141916 40.60719955490907)))",R012,6014,R012,R-01,R-01,R-01,R-01,"High St., Lyman Ave., Bay St. and Summer St.",501,50,120,10305,R,0.918,False,White Park,Yes,100004006,PARK,20100106000000.00000,19380609000000.00000,,DPR,False,White Park,Y,White Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R012/,No,64,23,11,{48CCD099-3E23-4580-B505-E530D17CC0DB} +"MULTIPOLYGON (((-73.94844467761502 40.697632395711, -73.9483636670887 40.69723942525112, -73.94799280654286 40.697281999294354, -73.94795892154178 40.69711101266161, -73.9491035939079 40.69697960306334, -73.94913311591434 40.697128851760645, -73.94914615971608 40.697194792154235, -73.94916017119307 40.69726562635847, -73.94907756814173 40.6972751100593, -73.94908806019929 40.69732815849217, -73.9491325958747 40.69755458144297, -73.94844467761502 40.697632395711)))",B298,5406,B298,B-03,B-03,B-03,B-03,"Park Ave., Martin Luther King Pl., Marcy Ave.",303,36,79,11206,B,1.089,False,Stockton Playground (PS 297),Yes,100004722,PARK,20100106000000.00000,19570214000000.00000,662 PARK AVENUE,DPR/DOE,False,Stockton Playground,Y,Stockton Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B298/,No,56,18,7,{AC17F332-732F-45C7-8BC4-4D620B1D3D56} +"MULTIPOLYGON (((-73.92136690726105 40.8161819510418, -73.92160982055326 40.81563535344933, -73.92181090476386 40.815531228613914, -73.92234342519174 40.81525547712999, -73.9223565162907 40.81526984437601, -73.92236072234486 40.8152743001675, -73.92236498058284 40.815278728979095, -73.92236928744984 40.815283129907804, -73.92237364413427 40.81528750025299, -73.92237804944561 40.81529184451633, -73.92238250457234 40.81529615999714, -73.92238700833026 40.815300445794094, -73.92239155953506 40.815304701005886, -73.92239615937001 40.8153089274343, -73.92240080546658 40.815313123276745, -73.92240550019437 40.81531728943535, -73.92241024237016 40.81532142410828, -73.92241502962338 40.81532552729394, -73.92241986432461 40.81532959899388, -73.92242474291699 40.815333640106324, -73.92242966895842 40.8153376488325, -73.92243463889317 40.815341625170106, -73.9224396550916 40.81534556912073, -73.92244471399913 40.81534947978146, -73.92244981798517 40.815353358054374, -73.92245496468026 40.81535720303738, -73.92246015527174 40.81536101293028, -73.92246538857226 40.81536478953325, -73.92247066339759 40.81536853194503, -73.92247598211833 40.81537224016716, -73.92248134236489 40.81537591329761, -73.92248674295205 40.8153795513355, -73.92249218387978 40.815383154280866, -73.92249740982687 40.81538714159379, -73.92250318913077 40.81539025219409, -73.92250875108344 40.81539374716032, -73.92251435219242 40.8153972061327, -73.92251999127468 40.81540062730947, -73.9225256706985 40.81540401249318, -73.92253138809552 40.81540735988121, -73.92253714227945 40.81541067037331, -73.92254293443654 40.81541394306972, -73.92254876338149 40.81541717796967, -73.92255462792907 40.81542037507234, -73.92256052808038 40.81542353347726, -73.92256646383531 40.81542665318438, -73.92257243519391 40.81542973419374, -73.92257843978567 40.815432776503705, -73.9225844799831 40.81543577831489, -73.92259055459898 40.81543874142749, -73.92259666007844 40.815441664938604, -73.92260279997731 40.81544454885063, -73.92260897192611 40.81544739226143, -73.9226151759248 40.81545019517108, -73.92262141078919 40.81545295667819, -73.92262767770241 40.81545567858462, -73.9226339731097 40.815458359987424, -73.92264030056894 40.815460999087996, -73.92264665770861 40.815463596785335, -73.92265304334336 40.81546615307848, -73.92265945747319 40.81546866796756, -73.92266589891283 40.815471141451695, -73.92267237003487 40.81547357173154, -73.92267886728253 40.815475959705125, -73.92268539183891 40.8154783071743, -73.92269194133871 40.81548060963502, -73.92269851696304 40.81548287068995, -73.9227051198992 40.81548508853892, -73.9227117454072 40.81548726227831, -73.92271839585536 40.81548939371065, -73.92272507006062 40.81549148103421, -73.92273176920716 40.81549352515017, -73.92273848855385 40.81549552605541, -73.92274523165756 40.81549748285181, -73.92360486934284 40.81574531056836, -73.92345786049913 40.815950704731705, -73.92277327708439 40.81576956707231, -73.92264463232243 40.81578766187423, -73.92252768829498 40.816033019273505, -73.92239303170098 40.81607610665615, -73.92207306129309 40.815996351727875, -73.92193608864775 40.816328256172014, -73.92136690726105 40.8161819510418)))",X155,6662,X155,X-01,X-01,X-01,X-01,E. 148 St. bet. Morris Ave. and College Ave.,201,8,40,10451,X,2.37,False,Patterson Playground,Yes,100004797,PARK,20100106000000.00000,19480617000000.00000,,DPR/DOE,True,Patterson Playground,Y,Patterson Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X155/,No,84,29,15,{0EDE6707-5465-4489-BFC4-28D67EE0F81E} +"MULTIPOLYGON (((-73.94991573837572 40.834522711675426, -73.95006921610833 40.834003733334335, -73.95006927064323 40.83400373695994, -73.95009140161004 40.833928712851524, -73.9501262091389 40.83381071272611, -73.9503357283703 40.833022134852406, -73.95053847226487 40.83238929232088, -73.9505567370765 40.83235113809469, -73.9506268835628 40.83211332051818, -73.95081568871741 40.83147321254901, -73.9509280340885 40.831208243017784, -73.9510488299199 40.83094542733434, -73.95117800369158 40.830684920326895, -73.95131548051646 40.83042687682106, -73.95132060208196 40.83043329230717, -73.95134865040538 40.83036720512087, -73.95142012172016 40.83021114257209, -73.95149818409395 40.83005691345338, -73.95158275557003 40.82990467710461, -73.95167375063856 40.82975459196302, -73.95177107075229 40.82960681555892, -73.95187461737117 40.829461500018986, -73.95192639001444 40.8293928111443, -73.95192641612051 40.829392776936345, -73.95211269071503 40.829152156625355, -73.95230466321412 40.82891413448825, -73.95250226832161 40.82867878701215, -73.95270544311451 40.8284461924856, -73.95291411993264 40.8282164264936, -73.95312823230549 40.827989563720635, -73.95316517920615 40.82796622799091, -73.95366991641139 40.827657004609556, -73.95370816862606 40.82767218791277, -73.95443503910408 40.827975670535565, -73.95264801066787 40.83065295697228, -73.95188750228066 40.831757500584864, -73.95169891320876 40.832031397238374, -73.95169686637809 40.832030515697426, -73.95091464596179 40.8331507256664, -73.95091475144488 40.83315077163649, -73.95066801954813 40.83350390960083, -73.95066742849696 40.8335047549122, -73.95002335484745 40.834426569366926, -73.94998079132418 40.83455143145361, -73.94991573837572 40.834522711675426)), ((-73.95088018063065 40.830390720170456, -73.95095997523724 40.83020125039092, -73.95104149511639 40.83003005142361, -73.95124306871958 40.8296314760137, -73.95143620189761 40.8292679682508, -73.951496789519 40.829171116694745, -73.95154628238497 40.82909781919531, -73.95163115177847 40.82899545322854, -73.95172928386565 40.82889870643605, -73.95184837780715 40.828797048007836, -73.95195016335956 40.82873101393464, -73.95206266740826 40.82866257360162, -73.95232640392727 40.82849599948616, -73.95214449634577 40.828712772367744, -73.95196915662103 40.828932645393664, -73.9518004761604 40.8291555051693, -73.95163854400748 40.829381233796035, -73.95163841227829 40.82938142194427, -73.95156596700473 40.82948655584711, -73.95140823752183 40.82972309364379, -73.95125628477625 40.82996180204937, -73.9511101586659 40.83020260186388, -73.95102294040015 40.8303521613649, -73.95103748965906 40.830348432290236, -73.95088744802095 40.830663684856425, -73.95074590483958 40.83098119748102, -73.950612919598 40.83130083784767, -73.95048854704228 40.8316224718354, -73.95037283955037 40.831945966221, -73.95026584476189 40.83227118687705, -73.9505345456349 40.831346405309986, -73.95053309705999 40.83134617596301, -73.95054244873866 40.831319010247825, -73.95061614591529 40.83107663585532, -73.95067228298275 40.830914872491384, -73.95073592283484 40.830745425677605, -73.95088018063065 40.830390720170456)), ((-73.94995126489603 40.833027362612306, -73.95003153276153 40.83276956964415, -73.95008402959893 40.83278928078872, -73.94995126489603 40.833027362612306)))",M140,6211,M140,M-14,M-14,M-14,M-14,"W. 145 St., W. 155 St., Hudson River","109, 112",7,30,"10031, 10032",M,23.093,False,Recreational Area,No,100004228,PARK,20100106000000.00000,19381103000000.00000,,DPR,False,Recreational Area,Y,Recreational Area,Large Park,Community Park,http://www.nycgovparks.org/parks/M140/,Yes,71,31,13,{22768C9D-EF65-4974-8B2B-7AC73A6617ED} +"MULTIPOLYGON (((-73.98227835291218 40.77728875490445, -73.98227907117965 40.777278327197585, -73.98228147882564 40.777271773711625, -73.98228637994426 40.77726555199385, -73.9822928407639 40.77726084425998, -73.9823007061173 40.777257598256824, -73.9823082037958 40.77725605144466, -73.98231357953686 40.777255774014634, -73.98231894680913 40.77725616205433, -73.9823258395349 40.77725767235366, -73.9823816788252 40.777279656764335, -73.98243133275574 40.77729961587565, -73.98243775453791 40.77730366011015, -73.982442062846 40.7773083316724, -73.98244514484269 40.77731399269973, -73.98244610670201 40.7773185935128, -73.98244593844741 40.77732324908434, -73.98244405112274 40.77732877247824, -73.98243919827061 40.77733617656963, -73.98240689934565 40.777380510577565, -73.98240289515789 40.777386005731934, -73.98237205494827 40.7774283372353, -73.98233720576171 40.77747616658295, -73.98230060522064 40.777525779545854, -73.98229512552166 40.77752935279779, -73.98229017711677 40.77753068388036, -73.98228432281914 40.777530803647764, -73.98227927199645 40.777529721367856, -73.98227406884713 40.777526813746064, -73.98226968858475 40.77752098412061, -73.98227084657769 40.777469622347425, -73.98227283766312 40.777421486301336, -73.98227430653105 40.77738598602344, -73.98227482874596 40.777373349354356, -73.9822768210105 40.777325212407185, -73.98227835291218 40.77728875490445)))",M083,5760,M083,M-07,M-07,M-07,M-07,Broadway and Amsterdam Ave. At W. 70 St.,107,6,20,10023,M,0.066,False,Sherman Square,Yes,100004520,PARK,20100106000000.00000,18490331000000.00000,,DPR/CDOT,False,Sherman Square,Y,Sherman Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M083/,No,67,27,10,{667A7946-4B2B-4323-B619-B4441794CCD3} +"MULTIPOLYGON (((-74.11418956708948 40.6246106789933, -74.11514347440006 40.624312132460375, -74.1151883098686 40.6242647750831, -74.1157963880455 40.62448199030144, -74.11595129269399 40.62424280082473, -74.11706567164369 40.624661139499494, -74.11650088722591 40.62552810154013, -74.1151325777543 40.626406096299284, -74.11418956708948 40.6246106789933)))",R003,5038,R003,R-01,R-01,R-01,R-01,Glenwood Pl. bet. Clove Rd. and Broadway,501,49,120,10310,R,8.108,False,Barrett Park,No,100003748,PARK,20100106000000.00000,19310319000000.00000,650 BROADWAY,DPR,True,Barrett Park,N,Barrett Park,Large Park,Buildings/Institutions,http://www.nycgovparks.org/parks/R003/,No,61,24,11,{075785B2-7EC5-493B-9663-42DD4B405DBB} +"MULTIPOLYGON (((-73.91069652602893 40.809046304252824, -73.9107555208578 40.808927763309995, -73.91259687206937 40.8094844293501, -73.91314478119003 40.80969359242812, -73.91323612993473 40.80996210242308, -73.91324531746407 40.809987504285814, -73.91325612166455 40.810011019920026, -73.91327497931769 40.810043484458674, -73.9132936204382 40.81006932296583, -73.91331674282247 40.81009599149658, -73.91333594642599 40.81011493710623, -73.91335917115806 40.81013493301392, -73.91338724102566 40.81015574480629, -73.91340898492837 40.8101698053086, -73.9134345941573 40.810184425216946, -73.91346791906147 40.81020074114589, -73.91350003085009 40.81021394493397, -73.9135178061729 40.810220296875464, -73.91353263596166 40.81022511125581, -73.91354521529638 40.81022886315986, -73.9135556612466 40.810231754387736, -73.91356631834957 40.81023449899174, -73.91357644728242 40.81023692172101, -73.91358497216464 40.81023882185865, -73.91359083718766 40.81024005723557, -73.91359623544675 40.810241141879175, -73.9136022819038 40.8102422990481, -73.91360665890855 40.81024310016947, -73.9149804159316 40.81048220771408, -73.9149543945022 40.8105273313908, -73.91421289651845 40.811813215438335, -73.91306176950286 40.81380935641358, -73.91289012806482 40.81410698359242, -73.91112468164573 40.81352024343303, -73.91108023930236 40.81351104570184, -73.91105895929408 40.81349529939463, -73.91103937288239 40.8134805251267, -73.9110148531033 40.81346163987803, -73.91098469588762 40.81343779393251, -73.91095282650679 40.81341182058156, -73.91092115716047 40.813385181908465, -73.91088492415227 40.813353636489246, -73.91086205769533 40.8133331063757, -73.9108329215984 40.81330621749706, -73.91078995534328 40.81326497028063, -73.91075967656265 40.813234680219615, -73.91072338802728 40.813196934778944, -73.91067466613916 40.81314354705382, -73.91063143071878 40.81309194744653, -73.91059501145519 40.81304487180592, -73.91056037191413 40.812996433280034, -73.91053136082127 40.812952579943214, -73.91050524471277 40.812910022861224, -73.91047973399152 40.812865042103084, -73.91045601611268 40.81281950352224, -73.9104384765508 40.81278298011652, -73.91042093631793 40.8127434472438, -73.91040624415874 40.81270746094069, -73.91039464073019 40.81267673414224, -73.91038632847096 40.81265319587311, -73.91037951252936 40.81263275918039, -73.9103749344375 40.81261837106962, -73.91036621256352 40.81258921337403, -73.91035510467877 40.81254786558442, -73.91034915856044 40.812523138693685, -73.91034530737916 40.81250584524024, -73.91034159798059 40.81248800259319, -73.91033882128558 40.81247372664272, -73.91033588826834 40.812457598246525, -73.91033408437994 40.8124470331035, -73.91033211095444 40.81243474697722, -73.91034751620838 40.812432246568434, -73.91036296438207 40.81242867820052, -73.91038169871202 40.81242280080697, -73.91039359989205 40.812418083344056, -73.9104067570701 40.81241184951707, -73.91042351732865 40.812402073228, -73.9104353524001 40.81239363215079, -73.91045129595608 40.812379511221614, -73.91045790957266 40.812372378111824, -73.9104640437565 40.812364813290806, -73.91047023069356 40.812355917574635, -73.91047679099853 40.8123443584754, -73.91048201737482 40.81233233458369, -73.91048464024549 40.812324410438045, -73.91048685080601 40.812315497225576, -73.91048836516572 40.812306059382806, -73.91048907473703 40.81229576093971, -73.91048890756977 40.81228698725929, -73.91048800346452 40.812278016698194, -73.91048635735743 40.81226908968535, -73.91048332240504 40.81225823362826, -73.91047846291987 40.812245980382656, -73.91047324020076 40.81223590605967, -73.9104665648636 40.81222549652361, -73.91045861986454 40.81221531112557, -73.91044855161445 40.81220464501293, -73.91043779671251 40.81219516972468, -73.91043066907311 40.812189717976416, -73.91042025642032 40.81218309392864, -73.910408555665 40.812177186575774, -73.91039150949518 40.81216960194223, -73.9103744365392 40.81216254857907, -73.91035686096056 40.812154687075946, -73.91034520210938 40.81214847448044, -73.91033616791182 40.81214182088001, -73.91032771891872 40.81213450406706, -73.91032276686643 40.81212940519835, -73.91032040636705 40.812124680250896, -73.91031809262533 40.812118679334226, -73.91031752221626 40.812110123260126, -73.91031738915163 40.81209892726642, -73.91031891304834 40.812082425927436, -73.91032320369665 40.81203742598214, -73.91033317941259 40.81197334800682, -73.91034941727304 40.811874423829174, -73.91035041074487 40.81187070464475, -73.91035110998023 40.811868091943495, -73.91035261090842 40.811862473103034, -73.91037666495268 40.81177248613564, -73.9104266097007 40.81158562119758, -73.91055233037139 40.811115245522785, -73.91059226586222 40.81096583074525, -73.91060555218465 40.81091175083138, -73.91061990958515 40.81084466405126, -73.91062391878611 40.810823698161315, -73.91062831451893 40.8107990801506, -73.91063212140159 40.81077608528119, -73.91063586839675 40.81075179094643, -73.91063915654289 40.81072851291818, -73.91064217976758 40.8107048159528, -73.91013733509371 40.81060087168077, -73.91048635100853 40.80962751015602, -73.91048672097918 40.809626481173765, -73.9105533780544 40.80944057731677, -73.91069652602893 40.809046304252824)))",X045,5152,X045,X-01,X-01,X-01,X-01,St Mary's St bet. St Ann's Av and Jackson Av,201,8,40,"10454, 10455",X,35.311,False,St. Mary's Park,No,100005206,PARK,20100106000000.00000,18881212000000.00000,376 ST ANN'S AV,DPR,Part,St. Mary's Park,Y,St. Mary's Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X045/,No,84,29,15,{4F4716D0-8177-4180-B145-C823E52FA4CD} +"MULTIPOLYGON (((-73.81909434125097 40.60610434370095, -73.81927119851606 40.60609702782153, -73.81928290811865 40.60609819260038, -73.81938216038505 40.60610806886953, -73.81933936639727 40.60639465809423, -73.81904517805765 40.60640682694065, -73.81902027295223 40.60611224355545, -73.81909474882569 40.60610916304454, -73.81909434125097 40.60610434370095)))",Q456,4955,Q456,Q-14,Q-14,Q-14,Q-14,Cross Bay Blvd. bet. E 9 Rd. and E 10 Rd.,414,32,100,11693,Q,0.229,False,Gene Gray Playground,Yes,100000069,PARK,20090423000000.00000,19120102000000.00000,902 CROSS BAY BOULEVARD,DPR,True,Gene Gray Playground,N,Gene Gray Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q456/,No,23,15,5,{2B115431-3EE0-4356-80C5-92B1A43436F9} +"MULTIPOLYGON (((-73.77622835118328 40.796336243682916, -73.77409578399421 40.7941226398197, -73.77358735863844 40.79264873340403, -73.77254750440224 40.79159837770808, -73.77231885899063 40.791344892908235, -73.7722959115699 40.790507059648, -73.77269885381494 40.790263219719414, -73.77282785493428 40.79041399232855, -73.77278799267692 40.79051221722089, -73.77275684569024 40.79061224498048, -73.77273455652356 40.79071363104658, -73.77272122036987 40.79081592085761, -73.77271690043344 40.79091865978699, -73.77272161372953 40.79102138771191, -73.77273534053157 40.7911236480369, -73.77275801964288 40.79122498408294, -73.77278954838371 40.79132494268901, -73.77282978731417 40.7914230787243, -73.77287855667906 40.7915189550814, -73.77293563996447 40.791612141782736, -73.77301409091015 40.791698753638656, -73.77309847039189 40.79178208487069, -73.77318853987524 40.79186190176626, -73.77328404776075 40.791937978691315, -73.77338472581378 40.79201010258637, -73.77349029035571 40.7920780711677, -73.77360044581519 40.79214169383527, -73.7736879359719 40.792231556684904, -73.77376858331785 40.79232504496905, -73.77384212819399 40.79242185652384, -73.77390833465782 40.792521682027285, -73.77396698813561 40.79262419869109, -73.77401790013747 40.792729077473396, -73.77406090945205 40.792835980379785, -73.77409587383774 40.79294456494896, -73.77412268425068 40.79305448157939, -73.77467206844776 40.7928992475791, -73.77450786427937 40.79254240102979, -73.77442312630987 40.79253958773765, -73.77416881113724 40.79217364570067, -73.7748486849992 40.791882315849165, -73.7748486180303 40.79183590197755, -73.77485584390884 40.79178981392591, -73.77487025849118 40.79174471155833, -73.77489165579021 40.79170123923026, -73.77491973036467 40.79166002039021, -73.77495407973473 40.79162164407715, -73.77499421269225 40.79158666043462, -73.7750395552677 40.7915555681157, -73.77625627903035 40.79102569762261, -73.77736369774111 40.79249853769928, -73.77672972275589 40.79277415753434, -73.77713686912823 40.793352051805044, -73.77679853897133 40.79351484922806, -73.77637971475713 40.79290288489566, -73.77451272600534 40.7937387415459, -73.77449662267452 40.79374595008587, -73.77450060500283 40.793757866129205, -73.77454911967432 40.79388817917497, -73.774606061095 40.79401650775844, -73.77467129174056 40.79414253732281, -73.77474465155471 40.794265957768324, -73.77482595912129 40.79438646705655, -73.77491501758814 40.79450377122247, -73.77501160638822 40.79461757985568, -73.7751154894994 40.7947276160226, -73.7752264130961 40.794833609958296, -73.77534410317323 40.794935300863244, -73.77546827383092 40.79503243962114, -73.77559861898337 40.795124787882656, -73.77559865953785 40.795122950935905, -73.77596479706455 40.79478109118644, -73.7754075536781 40.794184432113795, -73.7763949924426 40.79375766482264, -73.77724838036508 40.79464960752711, -73.77728527756354 40.79462678804525, -73.77738147812292 40.79455890127625, -73.7774819295387 40.79449466966968, -73.77758639195874 40.794434244936745, -73.7776946148879 40.79437777336543, -73.77780633958226 40.79432538862142, -73.77752193142778 40.793959742812845, -73.77759296779647 40.79392787963403, -73.77759101278875 40.793925378767035, -73.77825247977066 40.793647262303196, -73.77852394737708 40.793976774893004, -73.77852664727946 40.793975489660255, -73.77872898488437 40.79421192709211, -73.7785915951014 40.79422903395905, -73.77845573980281 40.7942521589709, -73.77832187421447 40.79428122376434, -73.77819044770615 40.79431613015571, -73.77806190141655 40.79435676193736, -73.7779366658897 40.794402983072004, -73.77798822532712 40.79447624554967, -73.77889853095292 40.79552856056267, -73.7814780315557 40.794809984402484, -73.78202586854552 40.794900983743524, -73.7819699672336 40.7955832491918, -73.7803842831606 40.79650565561054, -73.77921838858406 40.796677355889045, -73.77720535001929 40.79684492198501, -73.77622835118328 40.796336243682916)), ((-73.7802386825618 40.79054197673067, -73.78010693499193 40.79048507117968, -73.7799958557121 40.790679526409555, -73.77963185518657 40.790523445561135, -73.77955686216228 40.79062054930768, -73.77934776064929 40.79053050767239, -73.77940699645393 40.790451046281305, -73.77878459088565 40.790034907671554, -73.7782954359102 40.78993509968761, -73.77833229066646 40.789737311049635, -73.77705493196663 40.78919624072855, -73.77630538764338 40.78799783253267, -73.77636918995887 40.788023084909874, -73.77659038813891 40.78810993885721, -73.77672197953444 40.78816377924447, -73.77684020807207 40.7882179258928, -73.77689850734352 40.78824462613576, -73.77693124850668 40.788259620763625, -73.77702939518532 40.78830457112379, -73.77718047564632 40.78839213202894, -73.77740534934846 40.788522458822236, -73.77760027812288 40.78863543141796, -73.77808525989339 40.788800417313645, -73.77863060896769 40.78898593604433, -73.77870149775508 40.78900883511108, -73.77870152970863 40.78900884597846, -73.77896655474223 40.78909445574403, -73.7794699255733 40.78925727382507, -73.77947027234964 40.78925738615102, -73.77955825514414 40.78928558714254, -73.77955828946756 40.78928559801421, -73.7798068768974 40.78936171010663, -73.78003926123415 40.78942819947568, -73.78027351790487 40.78949077925647, -73.78025361885032 40.78959420826694, -73.7812533225122 40.78980945637482, -73.78151178298086 40.78986510426622, -73.78184163938494 40.789936083635624, -73.78158529437293 40.790668859985615, -73.78154969619307 40.79078257651198, -73.7813640128481 40.79100979150538, -73.7802386825618 40.79054197673067)), ((-73.77871939316381 40.794130292501364, -73.7775218599594 40.79250935827612, -73.77861554239742 40.79274376695274, -73.7795525630501 40.79264814561271, -73.77970987604613 40.7927833327383, -73.77956115681721 40.793030339138085, -73.77966688902157 40.793854842792136, -73.77968631140837 40.793944804136, -73.77871939316381 40.794130292501364)), ((-73.7791196183007 40.79191824959726, -73.77937144509302 40.79169257145126, -73.7794920524995 40.79177761254934, -73.77959856800896 40.791647065921865, -73.77969840224955 40.79151350324551, -73.77979140530313 40.79137712236162, -73.77987744264364 40.79123812564292, -73.77988758285288 40.79120075521326, -73.77989016975675 40.79116264815422, -73.77988514477533 40.79112468324568, -73.77987262234073 40.79108773149176, -73.77985289111942 40.79105264441699, -73.77982640579745 40.791020229737256, -73.77979377411476 40.79099123062374, -73.77975574860054 40.79096631668271, -73.77988674067784 40.79100178650718, -73.78001664610474 40.79103949636144, -73.78022783117132 40.79109780881043, -73.78080425457883 40.79146914479946, -73.78069243247207 40.791539607173824, -73.78057103196498 40.79169486149361, -73.78040294868948 40.79190656663976, -73.78019750381814 40.79216767303198, -73.78002939481044 40.792386444721416, -73.77997639127933 40.792425848622166, -73.7799181029155 40.79246067685672, -73.77985521118535 40.79249052098991, -73.77978844948835 40.79251503482119, -73.77971859724128 40.792533931672594, -73.7796464703805 40.792546989773655, -73.77957291068272 40.79255405674399, -73.77949877746373 40.79255505137842, -73.7790538919057 40.792108945642944, -73.7790901094523 40.792092518748134, -73.77912213071613 40.79207165602634, -73.77914902475686 40.7920469635368, -73.77917000956165 40.792019158386346, -73.77918447817733 40.79198904896758, -73.7791196183007 40.79191824959726)), ((-73.78126752963949 40.79130210539524, -73.78147245910765 40.79116055050678, -73.7815819182255 40.79120786511515, -73.78114813522166 40.79152633817349, -73.78110152355147 40.79156158720252, -73.78106407101187 40.791639259205716, -73.78102652540355 40.79174520051457, -73.7807520102542 40.79321472016139, -73.77982338602312 40.792817169009844, -73.78071974757222 40.791716346872605, -73.78081299475139 40.7916387820014, -73.78126752963949 40.79130210539524)), ((-73.77737234353178 40.79223284743563, -73.77736406407647 40.79223735016804, -73.7773114305774 40.792163567516276, -73.7773104544924 40.79216455888537, -73.77725251020676 40.79208097207178, -73.77716472371804 40.791957909808296, -73.77716651498314 40.79195691821541, -73.7769274919343 40.791612112414086, -73.77729606879093 40.791354251967945, -73.77763629956802 40.791696813757035, -73.77763958768477 40.79169499297962, -73.77789965421 40.79194603602871, -73.77794955968594 40.79199701691947, -73.77800645998066 40.7920435735811, -73.77806968038256 40.7920851544966, -73.77813847370248 40.79212126654279, -73.7782120226166 40.79215148309947, -73.77828945743377 40.79217544588549, -73.77836985963293 40.79219287036892, -73.7784522772521 40.79220355029956, -73.7785357343628 40.79220735952855, -73.77861924173489 40.79220425202893, -73.77861116470127 40.79262535589683, -73.77782398676275 40.792451334516834, -73.77774853004799 40.792436029068945, -73.77767551683446 40.7924149632638, -73.77760570471813 40.792388356489504, -73.77753982148018 40.79235648480992, -73.7774785520593 40.792319679138274, -73.77742253144812 40.79227832342188, -73.77737234353178 40.79223284743563)))",Q458,6268,Q458,Q-07A,Q-07A,Q-11,Q-11,Cross Island Pkwy. bet. Totten Ave. and 15 Rd.,407,19,109,11359,Q,60.394,False,Fort Totten Park,No,100000371,PARK,,19871209000000.00000,,DPR/FEDERAL,Part,Fort Totten Park,Y,Fort Totten Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q458/,Yes,26,11,3,{8D554115-A2C5-4AB9-9AC0-86A32E9328E7} +"MULTIPOLYGON (((-73.9453269448861 40.74609783391768, -73.94544648457676 40.74604501464999, -73.94542687340078 40.746114404705246, -73.9453269448861 40.74609783391768)))",Q072,5881,Q072,Q-02,Q-02,Q-02,Q-02,"Jackson Ave., 45 Rd., 23 St.",402,26,108,11101,Q,0.01,False,Short Triangle,Yes,100000015,PARK,20090423000000.00000,18980101000000.00000,,DPR,False,Short Triangle,N,Short Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q072/,No,37,12,12,{A12326ED-7F7D-4560-B0F6-57EAEA3FC3AE} +"MULTIPOLYGON (((-73.9567450925584 40.63068157909031, -73.9567554239015 40.630680393390215, -73.95684749769251 40.631171390327054, -73.95648264876756 40.63121255784434, -73.95648249561587 40.631211778837034, -73.95649729660059 40.63119906460013, -73.95651089503198 40.631187051411175, -73.95652904266102 40.631170059167296, -73.95654654279973 40.6311526785519, -73.95657955092678 40.63111680802124, -73.95659502816443 40.63109834781209, -73.95660980823153 40.631079556847034, -73.95662387338854 40.6310604504285, -73.95664982347036 40.6310213587577, -73.95666168591772 40.631001405015574, -73.9566727932282 40.63098119884218, -73.95669270693296 40.630940103031605, -73.95670149675954 40.630919245807284, -73.95671670803056 40.630876999158446, -73.95672311763373 40.63085564485001, -73.95672872001856 40.63083415876152, -73.9567335139916 40.630812559803566, -73.95673541781375 40.63080218203236, -73.9567392638829 40.63077867271544, -73.95674299805549 40.630747259496275, -73.95674451927023 40.63072538374735, -73.9567452178355 40.63070348427536, -73.9567450925584 40.63068157909031)))",B212,5817,B212,B-14,B-14,B-14,B-14,Campus Rd. bet. E. 21 St. and Ocean Ave.,314,45,70,11210,B,0.322,False,Hot Spot Tot Lot,Yes,100004639,PARK,20100106000000.00000,19400627000000.00000,,DPR,False,Hot Spot Tot Lot,Y,Hot Spot Tot Lot,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B212/,No,42,21,9,{5691EA40-9852-4512-9635-AB473D122936} +"MULTIPOLYGON (((-73.90793700460667 40.68228298450872, -73.90763646232219 40.68211197997362, -73.90759455882062 40.68215498732627, -73.90758066599656 40.68216924752405, -73.90755091747216 40.68219978078865, -73.90752832975573 40.68222296439715, -73.90750653688438 40.682245330972854, -73.90721598379923 40.68207806870151, -73.90726058313356 40.68203264577723, -73.907304440865 40.68198797686927, -73.90734533118224 40.68194632948315, -73.90739188132974 40.6818989197419, -73.90743719709036 40.681852766107085, -73.90748053692741 40.681808625316705, -73.9075251821016 40.68176315369772, -73.90757051307781 40.68171698381271, -73.90778139344809 40.681502201965905, -73.90789635706483 40.6815674417796, -73.90795417168181 40.68160024966662, -73.9080137368473 40.68163405129103, -73.90807063200823 40.68166633788666, -73.90818716584778 40.68173246747047, -73.9083714659696 40.681837052464886, -73.90815861064482 40.68205552861876, -73.90810057122637 40.682115100848804, -73.90804687199832 40.682170217169364, -73.90799317268154 40.68222533346452, -73.90793700460667 40.68228298450872)), ((-73.906903935356 40.68121178989888, -73.90702908723517 40.68108425123105, -73.907116500201 40.68113409687764, -73.90720307175326 40.68118346180449, -73.90726367250713 40.68121801748498, -73.90732179832435 40.68125116183447, -73.90739439480674 40.681292557511014, -73.90747098164391 40.68133623015, -73.90754041186152 40.68137581945672, -73.90761197795176 40.681416627031616, -73.90741844956165 40.681614066013466, -73.90734023711477 40.68169385799588, -73.90725349554204 40.681782351026776, -73.90721098466997 40.681825721559825, -73.90718359251083 40.68185366675081, -73.90712496416452 40.68191347755264, -73.90683478476645 40.68174801113833, -73.90687757657753 40.68170435550791, -73.90691970023202 40.68166138010997, -73.9069208042574 40.68166025535971, -73.90696331521268 40.681616884932986, -73.90700604525742 40.681573292240316, -73.90705027017766 40.6815281752673, -73.9071082573995 40.681469017756996, -73.90681539341728 40.68130202004193, -73.90687020235694 40.681246166766016, -73.906903935356 40.68121178989888)))",B381,5209,B381,B-04,B-04,B-04,B-04,Broadway between Granite St. and Aberdeen St.,304,37,83,11207,B,1.82,False,Thomas Boyland Park,Yes,100003853,PARK,20100106000000.00000,19860509000000.00000,16 FURMAN AVENUE,DPR,False,Thomas Boyland Park,Y,Thomas Boyland Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B381/,No,55,18,8,{686E1EE1-14CD-406A-88D9-83C89F177556} +"MULTIPOLYGON (((-73.88696663993288 40.85003709455575, -73.88746800333678 40.84964305556681, -73.8877486071722 40.849841333737395, -73.88784457546802 40.849838105163805, -73.88827197352586 40.85015165713166, -73.88803525071988 40.850526724018295, -73.88836904055951 40.850643659454384, -73.8882236874111 40.850870935335834, -73.88821679805389 40.850869794940536, -73.8882096679835 40.85086863990374, -73.88820253076014 40.850867507371866, -73.88819538875103 40.85086640004869, -73.88818823840151 40.850865316129756, -73.88818108445365 40.850864256520246, -73.88817392098095 40.85086321941333, -73.88816675272255 40.8508622075151, -73.88815957967984 40.85086121992512, -73.8881524006685 40.850860255741644, -73.88814521568696 40.850859315865286, -73.88813802592267 40.8508583993966, -73.88813083018668 40.85085750813546, -73.88812363085528 40.85085663938274, -73.88811642555218 40.850855795837504, -73.8881092142789 40.85085497659935, -73.8881019994087 40.85085418077003, -73.88809478094008 40.85085340925007, -73.88808755650119 40.85085266203718, -73.88808032846383 40.850851939133626, -73.8880730956422 40.85085124053825, -73.88806586040944 40.8508505653529, -73.88805861920646 40.850849914474594, -73.8880513755894 40.85084928880727, -73.88804412837538 40.850848686548765, -73.88803687756128 40.85084810950014, -73.88802962433613 40.850847555861506, -73.88802236632658 40.85084702653108, -73.88801510709034 40.85084652151226, -73.88800784425555 40.850846040802786, -73.88800057782225 40.850845584402684, -73.88799330897628 40.85084515231305, -73.88798603771768 40.850844744533944, -73.88797876523078 40.85084436196693, -73.88797149033277 40.85084400280993, -73.88796421302206 40.85084366796339, -73.88795693329865 40.85084335742735, -73.887949652347 40.85084307210349, -73.88794237017 40.850842810190755, -73.88793508676625 40.85084257258962, -73.88792780213412 40.850842360200666, -73.88792051509084 40.85084217122167, -73.88791322800509 40.85084200745599, -73.88790593969249 40.85084186800194, -73.88789865133899 40.850841752860674, -73.88789136057422 40.8508416611294, -73.88788407095286 40.85084159461256, -73.88787678010465 40.85084155240737, -73.8878695499392 40.85084139049523, -73.88786232102493 40.850841189862656, -73.88785509335888 40.85084095231072, -73.88784786813147 40.85084067513899, -73.88784064652413 40.850840361050174, -73.88783342735385 40.850840008242045, -73.8878262118052 40.8508396176164, -73.88781899987814 40.85083918917306, -73.88781179157259 40.85083872291215, -73.88780458926198 40.85083821793549, -73.88779738938558 40.85083767604053, -73.8877901955056 40.85083709452928, -73.88778300761757 40.85083647610326, -73.88777582453554 40.85083582076127, -73.8877686498202 40.85083512670579, -73.88776147991254 40.85083439483389, -73.88775431718422 40.850833625147835, -73.88774716163523 40.85083281764762, -73.8877400144516 40.85083197233447, -73.8877328732584 40.850831091007, -73.88772574161797 40.85083017096721, -73.88771861953028 40.85082921221511, -73.88771150461899 40.85082821744986, -73.88770440044489 40.85082718487398, -73.88769730463608 40.85082611448511, -73.88769021837713 40.85082500718492, -73.8876831440412 40.85082386207521, -73.88767607925352 40.85082268095468, -73.88766902520459 40.850821461123004, -73.8876619830773 40.85082020438231, -73.88765495168563 40.85081891073145, -73.88764793340006 40.85081758107326, -73.88764092822348 40.85081621360674, -73.88763393378264 40.85081480923006, -73.88762695363529 40.850813367946664, -73.88761998659548 40.85081188975544, -73.88761303147432 40.850810376456245, -73.88760609301998 40.85080882535213, -73.88759916767317 40.85080723734024, -73.88759225661838 40.850805613322166, -73.88758536104149 40.85080395329903, -73.88757847975965 40.85080225546875, -73.88757161632446 40.85080052343677, -73.88756476836872 40.85079875449925, -73.88755793589091 40.850796949556724, -73.8875511200785 40.85079510770985, -73.88754432092684 40.850793231660134, -73.88753753962649 40.8507913187072, -73.88753077499 40.85078936975047, -73.88752403057354 40.8507873856938, -73.88751730281945 40.8507853665338, -73.88751059410104 40.85078331137229, -73.88750390441533 40.85078122201025, -73.88749723376684 40.85077909574618, -73.88749058333539 40.85077693618323, -73.88748395075528 40.85077473971712, -73.88747734076252 40.85077251085494, -73.88747074980704 40.850770245090786, -73.88746418025602 40.85076794512838, -73.88745763210956 40.8507656109678, -73.8874511053676 40.85076324260903, -73.88744460003319 40.8507608382511, -73.88743811728622 40.850758401497096, -73.88743165712962 40.850755930546036, -73.88742521956353 40.85075342539797, -73.88741880458785 40.8507508860529, -73.88741225695527 40.850748250225294, -73.88747387066104 40.850530760401774, -73.88718530156159 40.8503520063795, -73.8871210889575 40.8503122300512, -73.88711725544097 40.85030985620414, -73.88724161125347 40.85021211411131, -73.88696663993288 40.85003709455575)))",X108,4758,X108,X-06,X-06,X-06,X-06,E 182 St bet. Belmont Av and Croton Av,206,15,48,10457,X,2.213,False,Belmont Playground,Yes,100004948,PARK,20100106000000.00000,19360821000000.00000,670 EAST 182 STREET,DPR,False,Belmont Playground,Y,Belmont Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X108/,No,78,33,15,{E647B51A-043E-44FE-848C-C2AC4DAFA1BC} +"MULTIPOLYGON (((-73.8267029343887 40.77002170520242, -73.82772066136515 40.7698442398395, -73.82771932596226 40.77056970091386, -73.82669076863596 40.770537440366965, -73.8267029343887 40.77002170520242)))",Q347,6294,Q347,Q-07,Q-07,Q-07,Q-07,Union St. bet. 31 Rd. and 31 Dr.,407,20,109,11354,Q,1.466,False,Colden Playground / Union Playground,Yes,100000002,PARK,,19510412000000.00000,,DPR/DOE,False,Colden Playground,Y,Colden Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q347/,No,40,11,6,{98F7CB88-AF26-42D9-9B72-AAB721360A77} +"MULTIPOLYGON (((-73.92453850603883 40.81552347556665, -73.9241686837012 40.81542878787738, -73.92416182929918 40.81542669781742, -73.92415551275508 40.81542379135985, -73.92414989992031 40.8154201442556, -73.92414514002797 40.815415853856656, -73.92414135858712 40.81541103370845, -73.92413865738492 40.815405811748555, -73.92413710619493 40.81540032579907, -73.9241367475203 40.81539472176855, -73.92413759067445 40.81538914734472, -73.92413961178337 40.815383750193384, -73.9241398804573 40.815384085355106, -73.92424663776998 40.815206920571065, -73.92424678356778 40.81520691166188, -73.92425360560264 40.81520097376224, -73.9242615988246 40.815195948835274, -73.92427055329242 40.81519196821549, -73.92428023539138 40.81518913530644, -73.9242903913893 40.81518752558306, -73.92430075574048 40.81518718029378, -73.92431105937912 40.8151881091674, -73.92432102972381 40.81519028681111, -73.92433040845188 40.81519365632412, -73.92433895031334 40.81519813019739, -73.92434643024018 40.8152035921192, -73.92459164446971 40.815481319335056, -73.92459168351627 40.81548137879343, -73.92459177821641 40.8154814860145, -73.92459174499925 40.81548151210721, -73.92459356779206 40.8154868775615, -73.92459416957884 40.8154923998042, -73.92459353275977 40.81549792033636, -73.9245916776648 40.81550327978326, -73.92458865543571 40.815508323292704, -73.92458455513193 40.815512905942775, -73.92457949305964 40.81551689543649, -73.92457361632206 40.815520177506635, -73.92456709333578 40.81552265681066, -73.92456011263847 40.81552426323298, -73.92455287578058 40.81552494917909, -73.92454558902179 40.81552469497295, -73.92453846451663 40.81552350885787, -73.92453850603883 40.81552347556665)))",X043,5843,X043,X-01,X-01,X-01,X-01,"E. 144 St., E. 143 St., Morris Ave.",201,8,40,10451,X,0.22,False,Ryan Triangle,Yes,100006195,PARK,20100111000000.00000,19000723000000.00000,,DPR,False,Ryan Triangle,Y,Ryan Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X043/,No,84,29,15,{1502C023-8EA1-4FB9-8070-B76123A05402} +"MULTIPOLYGON (((-73.94806058617907 40.755892124311735, -73.94907660291933 40.754714536732244, -73.9506676932028 40.75547896940196, -73.94837426636042 40.758290025206904, -73.94652550929953 40.75729189675534, -73.94806058617907 40.755892124311735)), ((-73.94865470013022 40.75488657292608, -73.94706791895328 40.75419745515041, -73.94536814338453 40.75345443236925, -73.943794963359 40.75278570285676, -73.94387588026277 40.752701295578525, -73.94421089685056 40.75285030922856, -73.94431454063124 40.752712248806354, -73.94503987584466 40.7530267350054, -73.9450917687084 40.75295985937953, -73.94656982153843 40.75359295529685, -73.94675774777807 40.75336947556672, -73.94823308293526 40.754010223846166, -73.94798054171468 40.75430164966184, -73.9481979338906 40.754395894584526, -73.94845596808682 40.754098130294665, -73.94857472150424 40.75414042788938, -73.94869646679601 40.754177481248945, -73.94882080377909 40.75420916861782, -73.948947325148 40.75423538714959, -73.94907561292445 40.75425605020382, -73.94916777223027 40.75429892255568, -73.94865470013022 40.75488657292608)))",Q104,4587,Q104,Q-01,Q-01,Q-01,Q-01,"Queensboro Bridge, 41 Rd., 40 Ave. bet. The East River, Vernon Blvd., and 21 St.","401, 402",26,114,11101,Q,20.34,False,Queensbridge Park,Yes,100000370,PARK,20090423000000.00000,19400613000000.00000,40-50 VERNON BOULEVARD,DPR,True,Queensbridge Park,Y,Queensbridge Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q104/,Yes,37,12,12,{7CAFE9EC-5AA0-49C1-8689-4068B8E942D0} +"MULTIPOLYGON (((-73.94670396093788 40.831513296518125, -73.94671997562946 40.83151156056015, -73.94675749076617 40.8315285927329, -73.94676249529186 40.83154007905196, -73.94675693375605 40.83155352717365, -73.94593433481867 40.83267911932407, -73.94592472432132 40.83268667627078, -73.9459089389191 40.83268745680097, -73.94587489950884 40.83267327425118, -73.94586766032555 40.832666054290414, -73.94586769698853 40.83265450726635, -73.94669101150885 40.831526118980456, -73.94670396093788 40.831513296518125)), ((-73.95178329980926 40.82455439981261, -73.95179203018112 40.82455322291284, -73.951800886401 40.82455341661948, -73.95180713763158 40.82455443319037, -73.95181244962181 40.82455597255641, -73.95181801705193 40.82455835939543, -73.95182305415706 40.82456135024521, -73.95182739618258 40.824564917121684, -73.95183163049565 40.82456989863177, -73.95183484084512 40.82457617372633, -73.95183628226422 40.824582816384684, -73.95183602468019 40.8245882066444, -73.95183452840436 40.82459347932226, -73.9518312451788 40.82459944643638, -73.95173293024283 40.82474312894193, -73.95171851773962 40.82476271139099, -73.95158877160453 40.82493899745887, -73.95148188962337 40.82508271036466, -73.95147765928209 40.825085278599225, -73.95147160333525 40.82508788208523, -73.9514651353392 40.82508982083168, -73.95145679013322 40.825091033888604, -73.95144906810535 40.825091120687254, -73.95144219194148 40.825090324455346, -73.95143558549655 40.825088673766274, -73.95142741667415 40.82508535289983, -73.9514225418789 40.82508246295688, -73.95141877789264 40.82507950414358, -73.95141468531347 40.82507523136857, -73.95141095422197 40.82506943420662, -73.95140881861956 40.82506379440305, -73.95140811981771 40.825059714863364, -73.95140811570761 40.82505560319855, -73.95140889676134 40.82505094076128, -73.9514105253113 40.82504640655145, -73.95177154781926 40.8245587821132, -73.95177797967393 40.82455592212718, -73.95178329980926 40.82455439981261)), ((-73.9498871786723 40.82714920671779, -73.94990836245756 40.82714542033356, -73.94993055081078 40.82715046103688, -73.94994743173112 40.82716029727154, -73.94995113624068 40.82717305169422, -73.94994591886771 40.82719049652671, -73.94959614845587 40.827661109610666, -73.94958591055865 40.827675232105015, -73.94957692534805 40.82767889139135, -73.94957504221259 40.82767965869041, -73.94956178457039 40.82768166639998, -73.94954588248301 40.827680048457715, -73.94953342786609 40.82767520914943, -73.94952203467487 40.82766513752652, -73.94951753639481 40.827656476395056, -73.94951621747367 40.827646408280685, -73.94951887612928 40.827637548571175, -73.94986919768965 40.827161333977706, -73.9498871786723 40.82714920671779)), ((-73.94760561718557 40.83027324209516, -73.94762677489531 40.83026937057269, -73.94764899975362 40.83027432257951, -73.94766357168939 40.83028569163776, -73.94766974193165 40.830296829957334, -73.9476646458093 40.83031429544424, -73.94731813635252 40.83078630493753, -73.94730799585811 40.83080046868996, -73.94729903615362 40.830804163828546, -73.94729715882545 40.830804938296666, -73.94728391467619 40.830806998879034, -73.94726799999044 40.83080544545368, -73.94725551171966 40.83080065541394, -73.947244048354 40.83079063036497, -73.94723948968223 40.83078198713141, -73.94723810109257 40.83077192436723, -73.94724069735126 40.830763053880226, -73.94758772024451 40.83028544107135, -73.94760561718557 40.83027324209516)), ((-73.94943557218221 40.82777144453471, -73.94945672899001 40.827767572674894, -73.94947895314881 40.82777252433113, -73.94949352484936 40.82778389316291, -73.949499695166 40.827795031389236, -73.94949459971558 40.82781249696432, -73.94914811626874 40.82828451215378, -73.94913797654522 40.82829867607307, -73.94912901727923 40.82830237135538, -73.9491271400429 40.82830314585364, -73.94911389644828 40.828305206646995, -73.94909798231824 40.828303653473526, -73.94908549438529 40.828298863629946, -73.94907403117492 40.82828883875865, -73.94906947243679 40.82828019559382, -73.94906808362259 40.82827013284745, -73.94907067953974 40.82826126231553, -73.94941767624955 40.8277836438, -73.94943557218221 40.82777144453471)), ((-73.94852184079942 40.82902064478814, -73.94854299805759 40.82901677309675, -73.94856522256565 40.82902172492806, -73.94857979438365 40.82903309387291, -73.94858596466317 40.82904423214583, -73.9485808688772 40.8290616976769, -73.94823437244332 40.829533710022254, -73.94822423233485 40.82954787385822, -73.94821527284992 40.82955156906882, -73.94821339556778 40.829552343551995, -73.94820015169621 40.829554404239985, -73.94818423728867 40.82955285094074, -73.94817174918704 40.82954806099927, -73.94816028589912 40.82953803603927, -73.94815572719416 40.8295293928401, -73.94815433849207 40.82951933008483, -73.94815693457979 40.829510459575296, -73.94850394436325 40.82903284390907, -73.94852184079942 40.82902064478814)), ((-73.94898319290907 40.828397913407905, -73.94900434994238 40.82839404163147, -73.94902657427677 40.82839899337438, -73.9490411460372 40.828410362262126, -73.94904731633623 40.828421500511496, -73.94904222071904 40.828438966064795, -73.94869573080086 40.828910979845574, -73.9486855908855 40.82892514372357, -73.94867663151005 40.8289288389704, -73.94867475425083 40.82892961346118, -73.94866151051751 40.828931674202366, -73.94864559624814 40.828930120966625, -73.94863310823017 40.828925331074565, -73.94862164498004 40.8289153061594, -73.94861708625783 40.82890666297757, -73.94861569749895 40.82889660022681, -73.94861829350086 40.828887729705976, -73.94896529672498 40.82841011260169, -73.94898319290907 40.828397913407905)), ((-73.9471630390976 40.83088608444791, -73.94718419702804 40.83088221300703, -73.94720642205806 40.83088716509868, -73.94722099405242 40.83089853421167, -73.94722716427741 40.830909672553766, -73.94722206799196 40.83092713801933, -73.94687555220382 40.83139914613421, -73.94686541152181 40.83141330984626, -73.9468564517102 40.831417004950076, -73.94685457435959 40.83141777941092, -73.94684133007463 40.831419839942214, -73.94682541525263 40.831418286455964, -73.94681292689869 40.83141349636881, -73.94680146349413 40.83140347127688, -73.94679690483788 40.831394828026696, -73.94679551630236 40.83138476525823, -73.94679811264396 40.8313758947821, -73.94714514191055 40.830898283354195, -73.9471630390976 40.83088608444791)), ((-73.94806742130166 40.82964183753733, -73.94808857878381 40.82963796592974, -73.94811080346553 40.82964291784808, -73.94812537534192 40.829654286849184, -73.94813154560299 40.82966542514522, -73.94812644965016 40.82968289065438, -73.94777994675768 40.83015490158527, -73.94776980645781 40.830169065379806, -73.94776084686399 40.83017276055466, -73.94775896955902 40.830173535030426, -73.94774572554974 40.83017559566601, -73.94772981100422 40.8301740423042, -73.94771732281872 40.830169252314, -73.94770585949225 40.830159227309835, -73.94770130080376 40.83015058409361, -73.94769991215743 40.83014052133393, -73.94770250832997 40.8301316508356, -73.9480495246151 40.829654036586476, -73.94806742130166 40.82964183753733)), ((-73.95035754170242 40.82651235650452, -73.95037023214195 40.82650915170064, -73.95038405905215 40.82650965022153, -73.95039657937 40.826513608782655, -73.95040633524933 40.82652065665387, -73.95041234741511 40.826529310298824, -73.95041380262845 40.82654117044925, -73.95041005502085 40.82655117874482, -73.95005666168531 40.827038687709134, -73.95004642398162 40.82705281024585, -73.95003743888039 40.82705646956841, -73.95003555576784 40.82705723687506, -73.95002229826355 40.82705924463779, -73.95000639631374 40.82705762675886, -73.94999394177981 40.82705278749986, -73.94998254862547 40.82704271592135, -73.94997805032756 40.82703405480698, -73.94997673134907 40.82702398669683, -73.94997938991848 40.82701512697579, -73.95033860111737 40.826523990854724, -73.95035754170242 40.82651235650452)), ((-73.95268985370954 40.82330928876304, -73.95270386864999 40.82330784111188, -73.95271993962429 40.82331064644355, -73.95273040731757 40.82331491098109, -73.95273969718025 40.82332185851263, -73.95274632420752 40.823331048087574, -73.95274897577788 40.82333799559941, -73.95274926394454 40.82334785434643, -73.95238950184938 40.823836016452404, -73.95237832258559 40.82384205236209, -73.95236562974178 40.823844493766714, -73.95235407793825 40.82384434671593, -73.95233949532808 40.82384045685124, -73.95233466228495 40.82383727250136, -73.95232965388102 40.823833975516806, -73.95232264996281 40.82382634992411, -73.95231943779062 40.82381598749113, -73.95231982511388 40.823806491922845, -73.95267864429913 40.82331287263969, -73.95268985370954 40.82330928876304)), ((-73.95086861040967 40.82580456441278, -73.95088130068962 40.82580135955227, -73.95089512745659 40.825801858011936, -73.95090764767163 40.82580581651804, -73.95091740350134 40.82581286434685, -73.95092341566962 40.82582151796621, -73.95092487095863 40.8258333781116, -73.95092112346772 40.825843386424914, -73.95055750014927 40.826345019596694, -73.9505466320851 40.826349446274634, -73.95053337473726 40.826351454096354, -73.95051747294417 40.826349836287704, -73.95050501850555 40.82634499708329, -73.95049362539505 40.82633492555413, -73.95048912707846 40.82632626445863, -73.95048780803667 40.82631619635313, -73.95049046650976 40.82630733661925, -73.95085901087569 40.825810616154854, -73.95086861040967 40.82580456441278)), ((-73.95224526574226 40.82392887897264, -73.95225237728758 40.82392859015688, -73.95226083343385 40.823929487850315, -73.95226693847029 40.82393097259366, -73.95227204150386 40.82393290716994, -73.95227727311821 40.823935720683046, -73.95228330124627 40.82394031210425, -73.9522872739264 40.8239448045206, -73.95229017585075 40.82394974494072, -73.95229169849462 40.82395391936872, -73.95229240034975 40.823958759823995, -73.95229150924872 40.823966558649424, -73.95218614567369 40.82411307790241, -73.95212532177555 40.82419683029012, -73.95206886086649 40.824274574549534, -73.9519279008481 40.82446619809651, -73.95192028267307 40.82446867038314, -73.95191294983879 40.824469982949786, -73.9519069323625 40.82447030461876, -73.95190165973125 40.824470079997184, -73.95189574033184 40.82446919594274, -73.95188932836996 40.82446751474373, -73.95188398242946 40.8244653918458, -73.95187795107044 40.82446196204229, -73.95187226905948 40.82445738335169, -73.95186926163683 40.824454087182616, -73.95186687795632 40.82445050671719, -73.9518644351454 40.82444509281769, -73.95186322813854 40.824438868987905, -73.95186342787346 40.82443314732142, -73.95186522468751 40.824427003088616, -73.95207470481115 40.824141545839325, -73.95212541096996 40.82407285637287, -73.95223051872455 40.823932718882126, -73.9522383242369 40.82393008816512, -73.95224526574226 40.82392887897264)), ((-73.95360593553612 40.822061728429944, -73.9536172445584 40.822061115239144, -73.95362997669505 40.8220629717798, -73.95363989586095 40.822066597563364, -73.95364845764799 40.82207208502635, -73.95365450586284 40.822078364815496, -73.95365908125791 40.82208716450095, -73.95366025715073 40.82209569267126, -73.95329986322531 40.822592911946586, -73.95328911371647 40.822596760814996, -73.95327621657329 40.82259848544265, -73.95326476878138 40.822597387601334, -73.95325218249448 40.82259364724207, -73.95324222125087 40.82258740366657, -73.95323490582791 40.822579453822804, -73.95323149050404 40.82257298687641, -73.95322995111022 40.82256224693675, -73.95359354335392 40.822065333532166, -73.95360593553612 40.822061728429944)), ((-73.9531484636343 40.822686528228864, -73.9531614071944 40.8226845677044, -73.95317505211365 40.822686539028794, -73.95318610648786 40.822690835280994, -73.9531943392942 40.82269727266681, -73.95320021676918 40.822705318282416, -73.95320256206422 40.82271461235274, -73.95320137749128 40.82272355109554, -73.95284306392756 40.82321619161737, -73.9528315956116 40.823220495799774, -73.9528183025309 40.82322204911991, -73.95280516233252 40.82322030848704, -73.95279316312903 40.823216006408934, -73.95278308337235 40.82320798246551, -73.95277653996017 40.82319790593831, -73.9527751388048 40.82318788914851, -73.95277727094316 40.82317844381958, -73.95313857925962 40.82269063677752, -73.9531484636343 40.822686528228864)), ((-73.95133823622884 40.82517896774692, -73.95134448354564 40.82517892265679, -73.95135068059587 40.82517953130491, -73.9513560035367 40.825180739314035, -73.95136226813376 40.825183002200504, -73.95136849518683 40.82518635376997, -73.95137241919126 40.825189340567725, -73.95137612209241 40.82519316383252, -73.95137925652669 40.82519786303979, -73.95138135938785 40.82520288779145, -73.95138212331526 40.82520706821414, -73.95138201514602 40.825212337868884, -73.95138058726793 40.82521803200115, -73.9512817388093 40.82535437754548, -73.95124139662774 40.825409749978554, -73.95103381672219 40.82569467156961, -73.95102641015197 40.825704153343885, -73.95102213287605 40.825707597723785, -73.95101776613305 40.825710189296174, -73.95101296587363 40.825712292615684, -73.95100715471573 40.82571399838699, -73.95099901214334 40.82571520069081, -73.95099071404537 40.8257151071149, -73.95098297049283 40.82571373867243, -73.95097510345872 40.82571102573707, -73.95096876278863 40.8257073814373, -73.95096304897747 40.82570246230205, -73.95095900471522 40.825696957653946, -73.95095701053431 40.82569247233805, -73.95095599923042 40.82568780103757, -73.95095592685061 40.82568306710169, -73.9509568656211 40.825678387625594, -73.95095872181327 40.825673867927364, -73.95115129557371 40.82540971184639, -73.95116243219117 40.8253944549642, -73.95131413467752 40.82518749607337, -73.95131948348246 40.82518413768182, -73.95132555126287 40.825181582835626, -73.95133276251201 40.82517968853498, -73.95133823622884 40.82517896774692)), ((-73.94573582537305 40.83284491879348, -73.9457366150179 40.83284485883189, -73.94573710465097 40.8328448725697, -73.94574424405003 40.83284506953488, -73.9457448628481 40.83284516077597, -73.94575083389087 40.83284604516891, -73.94575132817454 40.83284617147064, -73.94575519354247 40.83284716113124, -73.94575652229982 40.832847501242625, -73.94576188668474 40.83284940020694, -73.9457624270908 40.832849667907965, -73.94576868324386 40.832852761347084, -73.9457735699053 40.83285603604184, -73.94577420491703 40.832856599149466, -73.94577736102073 40.832859397569244, -73.94577880723486 40.83286108937786, -73.94578073788873 40.83286334872571, -73.94578155042196 40.832864299129376, -73.94578298064337 40.832866703221576, -73.94578436587663 40.83286902894954, -73.94578456833413 40.83286936853115, -73.94578625402657 40.832873981656334, -73.94578609142094 40.83287420400203, -73.9454655878968 40.833315067355336, -73.94543679542564 40.83335467369076, -73.94543376416043 40.83335866324787, -73.94540862148183 40.83339177513605, -73.94540839360351 40.83339207399236, -73.94540248343272 40.83339352909507, -73.94539560388228 40.83339445694929, -73.94538918751111 40.8333944106875, -73.94538746367456 40.83339439816479, -73.9453869384624 40.8333943934136, -73.94538024178381 40.83339352216567, -73.94537844242151 40.833393080971746, -73.94537816267804 40.83339301330215, -73.94537429013721 40.83339206414791, -73.94537240683998 40.8333913284524, -73.9453671646616 40.833389279145464, -73.94536508136828 40.83338809490892, -73.94536115771362 40.833385865226916, -73.94535682360514 40.833382484518445, -73.94535239343861 40.83337769178906, -73.94535193403973 40.83337694956398, -73.94534907227053 40.83337232416911, -73.94534872890627 40.83337176840134, -73.94534837526527 40.83337073356565, -73.94534677738183 40.833366050237466, -73.94534626823621 40.833360919879475, -73.9453843763169 40.83330784207942, -73.94538439530848 40.83330781507358, -73.94554537772025 40.83308359063662, -73.94571610628056 40.83285429266634, -73.94572332889692 40.832846946229594, -73.94572367418769 40.83284659429878, -73.94572828217574 40.83284558160997, -73.94572891064502 40.832845444130065, -73.94573582537305 40.83284491879348)), ((-73.95405967601394 40.82143629942361, -73.95407191607727 40.82143477165501, -73.95408566636566 40.821436597934245, -73.95409727164484 40.821441105936, -73.95410559467948 40.82144724432929, -73.95411139187281 40.82145481980921, -73.95411416220813 40.8214632549587, -73.95411377211441 40.82147200222313, -73.95375134917569 40.82196990292572, -73.9537413103221 40.82197305783916, -73.95373082488389 40.82197406669035, -73.95371833181099 40.82197278297232, -73.95370756390635 40.8219691748646, -73.95369781140076 40.821962845864434, -73.95369106505966 40.82195477741183, -73.95368772294732 40.82194529204477, -73.95368830373339 40.82193514818959, -73.95404779410869 40.82144100698556, -73.95405967601394 40.82143629942361)), ((-73.95497467518044 40.82017987644091, -73.95498681456728 40.82017610720032, -73.95500089415165 40.820176176631016, -73.95501337496971 40.820179344944734, -73.95502264551303 40.82018476684767, -73.9550234876506 40.8201857271053, -73.95502904030646 40.82019206516326, -73.95503309440474 40.82020055842483, -73.95503273939195 40.82021195947056, -73.95483100195499 40.820489055189235, -73.95466134392191 40.82072208747088, -73.95465097548767 40.820725654761766, -73.95464732918227 40.82072584153137, -73.95464183838604 40.820726123928445, -73.95464060319402 40.82072618737778, -73.95463046537758 40.820725310808506, -73.95462179996643 40.82072242671111, -73.95461919157356 40.820721558506655, -73.95461039800794 40.82071539835253, -73.95460457556534 40.82070835688115, -73.95460387440792 40.82070751013862, -73.95460334212375 40.82070585481691, -73.95460284059266 40.820704296760915, -73.95460132653882 40.82069959017134, -73.95460174206931 40.82069168217668, -73.95460183933695 40.82068984520256, -73.95460185614765 40.820689529134995, -73.95463770807558 40.820639917795596, -73.95496566109053 40.82018610615645, -73.95496582948992 40.820185989157686, -73.95497467518044 40.82017987644091)), ((-73.95450691876705 40.82082721631762, -73.95451773294481 40.82082535025295, -73.9545302329767 40.820826565449764, -73.954539229297 40.82082918223708, -73.9545479595102 40.82083439234799, -73.95455431709071 40.82084065330275, -73.9545583632941 40.82084852613511, -73.95455926342079 40.82085830587908, -73.954221627277 40.821325394789184, -73.95421026135669 40.82133136596896, -73.9541971574615 40.82133420363102, -73.9541835414595 40.82133363271012, -73.95416976783797 40.821329568700264, -73.95415957728765 40.8213225227694, -73.95415202011606 40.82131279710763, -73.95414985098182 40.821300608929796, -73.95415279771228 40.82129044349954, -73.9544978330308 40.8208305535737, -73.95450691876705 40.82082721631762)))",M095,6351,M095,M-09,M-09,M-09,M-09,"Broadway, W. 135 St. To W. 156 St.","109, 112",7,30,"10031, 10032",M,2.198,False,Broadway Malls 135th-156th,No,100004321,PARK,20100106000000.00000,19080409000000.00000,,DPR,False,Broadway Malls,Y,Broadway Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M095/,No,"70, 71","30, 31",13,{96A2D3A4-DB15-46BB-B86C-177118B41589} +"MULTIPOLYGON (((-73.90427478405705 40.8640985217694, -73.90497088376553 40.86301548975446, -73.90499029638319 40.86298683233378, -73.90500255985476 40.86297340351625, -73.90501216363253 40.86296441732727, -73.90502298542341 40.86295551948765, -73.9050357243092 40.8629463881969, -73.90504562783342 40.86294012713501, -73.9050531611177 40.86293579207128, -73.90507009578984 40.86292714058862, -73.90508360679551 40.86292135434828, -73.90510080601005 40.86291516411831, -73.90512005506405 40.86290964103365, -73.90513773490956 40.86290576275165, -73.9051566161708 40.86290279855153, -73.9051801326893 40.86290072333947, -73.90520341899892 40.86290038317801, -73.90523232163464 40.862900827449344, -73.9072863136394 40.862950952463486, -73.90732616407281 40.862952315402296, -73.90742205405807 40.86295603216142, -73.90752765448268 40.86295826541205, -73.90770294379465 40.862962370621496, -73.90779346766381 40.86296449071276, -73.9078644224313 40.862966152067195, -73.90795955185439 40.86296837926209, -73.90802846420257 40.86296999296133, -73.90811501117219 40.86297201868077, -73.90818546206775 40.86297094915046, -73.90825530107367 40.86296805199606, -73.90832128544619 40.86296497163873, -73.90839474905668 40.86295960453405, -73.90846877205058 40.86295198029761, -73.90853744200017 40.86294182949771, -73.90865084052116 40.86292120895989, -73.90866407855529 40.86291963277619, -73.90867807335646 40.862919765419726, -73.90870107114011 40.86292222664926, -73.90872031011585 40.862928149986665, -73.9087386465263 40.86293748276305, -73.90875728332098 40.86295179008142, -73.9087733262723 40.86297201426745, -73.9087809885948 40.86299016880307, -73.90878347042721 40.86300538814745, -73.90878250455015 40.8630212288058, -73.90877743105631 40.86303799912438, -73.90877028704934 40.86305098124476, -73.90875228775909 40.86307082281842, -73.90868643483465 40.86312323417455, -73.90860483959062 40.863180840558286, -73.90851623719706 40.86323370024806, -73.90844406671523 40.86327140775607, -73.90837346254794 40.86330429253729, -73.90829182880897 40.86333784837922, -73.90820880963734 40.8633687952419, -73.90814773066727 40.86338905178546, -73.90809039617046 40.86340507897617, -73.9080086180778 40.863426181625535, -73.90795045272534 40.863437430084026, -73.9078918078634 40.863447178814496, -73.90783319245405 40.86345534807914, -73.90778303058222 40.86346007159179, -73.90773220730891 40.86346360590688, -73.90768126118465 40.86346591723579, -73.9076302491738 40.863466985813204, -73.90752820775455 40.86346542367332, -73.90747729577565 40.86346279485114, -73.90742651956262 40.86345892343918, -73.90737593008411 40.863453836493186, -73.90732558073972 40.863447518747975, -73.90727548456945 40.86343997741826, -73.90723046186694 40.86343215018822, -73.90718583329388 40.8634232399681, -73.90714159525615 40.86341327377012, -73.90709780232496 40.8634022462358, -73.90705447464366 40.86339017359062, -73.90701237933072 40.863377274371935, -73.90697336824961 40.86336331774775, -73.90693154668396 40.86335061862895, -73.90688348149133 40.86333868707693, -73.90682709465038 40.863325783459935, -73.90680131498998 40.86332187702498, -73.90677536120708 40.863318649413145, -73.90672312345004 40.86331421100275, -73.90667061145406 40.863312487324464, -73.90664431607341 40.86331264254805, -73.9066180588661 40.863313487571965, -73.90659186240045 40.8633149990017, -73.90656573495835 40.863317191251895, -73.90653969789047 40.86332006343936, -73.90651383660057 40.86332361293197, -73.90646909604166 40.86332950820144, -73.90643635640029 40.863335596885726, -73.90641123268688 40.863341803399116, -73.90638639627365 40.863348665696954, -73.90636190649147 40.863356165817656, -73.9063377704832 40.863364284857056, -73.90631576596469 40.863372382209334, -73.9062655446487 40.863389793819685, -73.90621459231028 40.86340744884683, -73.90616365060977 40.86342511106399, -73.90611207400322 40.86344298705858, -73.90606157002163 40.86346142310777, -73.90601167006639 40.86347963540479, -73.9059617677141 40.863497845877234, -73.9059110357997 40.86351636181823, -73.90579203588659 40.86356281014897, -73.90567493092661 40.86361198839072, -73.90559652192505 40.86364706859054, -73.90551933020025 40.863683543692325, -73.90544362042125 40.863721297752086, -73.90522093322156 40.86383581226083, -73.904999394807 40.86395019491186, -73.90490714437884 40.8639933325355, -73.90480572059057 40.864036235593844, -73.9046608369169 40.86408885947004, -73.9046064244959 40.86410675405883, -73.90456451865099 40.86412053652384, -73.90453662621978 40.86412825676363, -73.90450407040787 40.86413726714129, -73.90447875883919 40.86414427271304, -73.9044597600311 40.86414953025252, -73.90444214006081 40.864154406222546, -73.90442472253743 40.864158721352354, -73.90441327307371 40.86416096849578, -73.90439115721443 40.86416531034484, -73.90435718848421 40.86417197823638, -73.90435242373913 40.86417282164779, -73.9043464624005 40.86417351188424, -73.90433480707958 40.864173737249295, -73.90432385473227 40.864172596252295, -73.90431420504429 40.86417043697985, -73.90430251827247 40.864166141855925, -73.90429137886397 40.864159814778915, -73.9042820991731 40.86415194310234, -73.90427709400707 40.86414594078645, -73.90427114733956 40.86413479228951, -73.90426857062033 40.86412108199278, -73.90427025953724 40.864108821422015, -73.90427478405705 40.8640985217694)))",X013,5392,X013,X-05,X-05,X-05,X-05,W. Fordham Rd. bet. Sedgwick Ave. and Un,207,14,52,10468,X,5.44,False,Devoe Park,Yes,100004093,PARK,20100106000000.00000,19040413000000.00000,101 WEST FORDHAM ROAD,DPR,True,Devoe Park,Y,Devoe Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X013/,No,78,33,13,{6D0E9C96-35B8-458C-992E-E081AA1A96CD} +"MULTIPOLYGON (((-73.99383726769912 40.76727280943986, -73.9955560117954 40.76799956708183, -73.99474172085887 40.769109768094175, -73.99302295581298 40.76838299752444, -73.99383726769912 40.76727280943986)))",M022,4784,M022,M-04,M-04,M-04,M-04,"W. 52 St. To W. 54 St., 11 Ave. To 12 Ave.",104,3,18,10019,M,5.829,False,De Witt Clinton Park,Yes,100004485,PARK,20100106000000.00000,19010513000000.00000,601 W 52 STREET,DPR,True,De Witt Clinton Park,Y,De Witt Clinton Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M022/,No,67,31,10,{05B146CF-A50B-4736-B957-51BAE165DC46} +"MULTIPOLYGON (((-73.78458815683106 40.740693831318616, -73.78527346732993 40.74050192651139, -73.78535964848832 40.740579157299386, -73.78537485729476 40.74059278694448, -73.78538178938747 40.74059899897275, -73.78539227606873 40.74060839642432, -73.78540349397616 40.74061683169181, -73.78541663215931 40.74062382161577, -73.78541792276476 40.740624155408064, -73.78542888523342 40.740626987224736, -73.78544100088142 40.74062834255159, -73.78545733831852 40.74062680249803, -73.78547789060774 40.74062157910324, -73.78549355920853 40.74061780363377, -73.78551841166447 40.74061181470299, -73.78553405419385 40.740608045483015, -73.7857943891273 40.74054531599381, -73.78615799440321 40.74045770031517, -73.78631889527118 40.740418928540116, -73.78640340290326 40.74059603909333, -73.78616503048453 40.740661718484745, -73.78531771440564 40.740895176108374, -73.78475803825765 40.741049377566554, -73.78472134598232 40.74097258464682, -73.78458815683106 40.740693831318616)))",Q223,5900,Q223,Q-08,Q-08,Q-08,Q-08,Horace Harding Exwy. Sr. Rd. S. bet. 188 St. and 190 St.,408,23,107,11365,Q,1.23,False,Fresh Meadows Park,Yes,100000081,PARK,20090423000000.00000,19470524000000.00000,,DPR,Part,Fresh Meadows Park,Y,Fresh Meadows Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q223/,No,25,16,6,{C3EA767A-8A03-4893-A1DD-C7B3EE572F69} +"MULTIPOLYGON (((-73.9429028809978 40.67471537488324, -73.94297712737664 40.67383226658409, -73.94191717569367 40.6737731380336, -73.94198609263385 40.673075187932064, -73.944474021958 40.673213961167, -73.94434124664838 40.67479363566741, -73.9429028809978 40.67471537488324)))",B012,5449,B012,B-08,B-08,B-08,B-08,"St. Mark's Ave., Park Pl. bet. Brooklyn Ave. and Kingston Ave.",308,36,77,11213,B,7.047,False,Brower Park (PS 289 - Playground Only),Yes,100004735,PARK,20100106000000.00000,18920511000000.00000,195 BROOKLYN AVENUE,DPR,True,Brower Park,Y,Brower Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/B012/,No,43,25,9,{1CB9BB5A-6B21-4ED2-9EA2-1D04019DBF48} +"MULTIPOLYGON (((-74.02665909407455 40.61473026259158, -74.02661319667297 40.61471257168597, -74.02720393244601 40.61371557552635, -74.02754561012841 40.613835466075905, -74.02745203917095 40.613993389425985, -74.02665909407455 40.61473026259158)))",B210V,4841,B210V,B-10,B-10,B-10,B-10,Dahlgreen Pl. bet. Exit 17 and Ft. Hill Pl.,310,43,68,11228,B,0.586,False,Park,No,100004248,PARK,20100106000000.00000,19581230000000.00000,222 DAHLGREN PLACE,DPR,True,Park,N,Park,EXWY,Parkway,http://www.nycgovparks.org/parks/B210V/,No,46,22,11,{0BB9CECC-5B80-423A-B5D2-41BD0EF4E873} +"MULTIPOLYGON (((-73.91126069413619 40.84533803640345, -73.91137378410772 40.84520988235632, -73.91139301807294 40.84518652213811, -73.91141944716523 40.84515358439681, -73.91144163576423 40.84512513865435, -73.91147054660577 40.84508691331097, -73.91149172189067 40.84505802643986, -73.91152603585385 40.845009475673635, -73.91155911719062 40.84496043498413, -73.91161208653396 40.84487666220498, -73.91206156863505 40.844830275567034, -73.91159731118309 40.84547922290248, -73.91126069413619 40.84533803640345)))",X148D,5703,X148D,X-04,X-04,X-04,X-04,"Walton Av, E 174 St, Below Grand Concourse","204, 205",14,44,"10453, 10457",X,0.55,False,Walton Slope,No,100004903,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Walton Slope,Y,Walton Slope,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/X148D/,No,86,33,15,{63F46847-ABCA-4364-A7AD-070563EB9568} +"MULTIPOLYGON (((-73.86682928835789 40.68653797831084, -73.86648833242072 40.68632233140614, -73.8667769182295 40.686390952798845, -73.86682928835789 40.68653797831084)))",Q076,6154,Q076,Q-09,Q-09,Q-09,Q-09,"Rockaway Blvd., Eldert La.",409,30,102,11421,Q,0.05,False,Legion Triangle,Yes,100000175,PARK,20090423000000.00000,19340720000000.00000,,DPR,True,Legion Triangle,N,Legion Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q076/,No,38,12,7,{FAB69CB4-6C2F-46A3-B809-B6444FEFF8DF} +"MULTIPOLYGON (((-74.22924890046362 40.50952810782834, -74.23043850584104 40.509279681983166, -74.2305440096435 40.509582051635505, -74.2293777945882 40.509841127433724, -74.22924890046362 40.50952810782834)))",R027A,5095,R027A,R-03,R-03,R-03,R-03,Corner Of Bartow Ave. and Page Ave.,503,51,123,10309,R,0.912,False,Aesop Park,Yes,100004663,PARK,20100106000000.00000,20010926000000.00000,555 PAGE AVENUE,DOE,False,Aesop Park,Y,Aesop Park,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R027A/,No,62,24,11,{3461F64C-059D-4848-A9CE-9FF4B383C563} +"MULTIPOLYGON (((-73.98406015165793 40.7221952568862, -73.98425215564649 40.72193556016334, -73.98430987319672 40.72195995564152, -73.98411786225854 40.72221966326489, -73.98406015165793 40.7221952568862)))",M371,4644,M371,M-03,M-03,M-03,M-03,E. 2 St. bet. Ave. A and Ave. B,103,2,9,10009,M,0.046,False,Hope Garden,No,100003809,PARK,20100106000000.00000,20021120000000.00000,193 EAST 2 STREET,DPR,False,Hope Garden,N,Hope Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M371/,No,65,26,12,{6715FB12-079A-4016-86CF-D6208B2465A3} +"MULTIPOLYGON (((-73.9269155842741 40.68780876591279, -73.9269726782075 40.6880961434958, -73.92652688822471 40.68814679009145, -73.92647135499743 40.687867255859686, -73.92647848702558 40.68786644635206, -73.9269155842741 40.68780876591279)))",B224A,6180,B224A,B-03,B-03,B-03,B-03,Patchen Ave. between Monroe St. and Madison St.,303,41,81,11221,B,0.299,False,Citizens For A Better Community,No,100004545,PARK,20100106000000.00000,20050429000000.00000,,DPR,False,Citizens For A Better Community,Y,Citizens For A Better Community,Greenthumb,Garden,http://www.nycgovparks.org/parks/B224A/,No,56,25,8,{DD1D8D77-B6F0-4AB1-905E-442D6110F549} +"MULTIPOLYGON (((-73.94261918171239 40.78379646835289, -73.94264029057435 40.78378161067871, -73.94290050514998 40.78359666609985, -73.94297777346598 40.78354174854236, -73.94301436599889 40.78351745219686, -73.94304077167638 40.78349959749674, -73.94310501200603 40.78345393237168, -73.94316707741027 40.783406562388755, -73.94320487545886 40.78337158212426, -73.94323850772714 40.78333422427205, -73.94339644332423 40.78311268848196, -73.94355298898614 40.78289864396228, -73.94355104316917 40.78289231248182, -73.94354766275323 40.78288591005944, -73.94354567462807 40.78287917783488, -73.94354513195546 40.782872291432106, -73.94354604643223 40.78286542735517, -73.94354839658317 40.78285876299239, -73.94362176533741 40.78272893574779, -73.9436511572935 40.78268009610041, -73.94366438770324 40.78265508933073, -73.9436693481247 40.78262831533476, -73.94367589487639 40.782594490284254, -73.9436809078437 40.782571411072155, -73.9436912762833 40.78252368414019, -73.9436970718062 40.78249700420275, -73.943701270072 40.78247768508697, -73.94380199119958 40.78201097802777, -73.94383105635652 40.7818869723769, -73.9438566136787 40.781664520336925, -73.9438611659141 40.781638350366634, -73.94388874215336 40.781622022388575, -73.94388352427576 40.78139080066479, -73.94388713653447 40.781266832118526, -73.94374901746214 40.78073748661774, -73.94373638823402 40.780676793817754, -73.94371184248384 40.78055882776645, -73.94365893488003 40.78036143616669, -73.94361988948555 40.78017196042968, -73.9436115894938 40.78015423808866, -73.94354217553246 40.78000602197147, -73.94351206088933 40.77994171856336, -73.943317507288 40.77952629430986, -73.94321048682565 40.779277412138455, -73.94303500432261 40.778869309740315, -73.94275077635588 40.778305862338904, -73.94273031869295 40.77826530795368, -73.94271482083815 40.77823458591455, -73.94270700982966 40.77821910239492, -73.94269653918363 40.77819834421011, -73.94266506328297 40.77812510149822, -73.94261865596143 40.777907002823966, -73.94258331922684 40.777788940156285, -73.94253249376685 40.77761488101028, -73.94245463269912 40.777388623317776, -73.94253780695387 40.77742237873755, -73.94262620228912 40.777456936343, -73.94266307526014 40.777564090180185, -73.94271663761072 40.77779166118845, -73.9427657218128 40.7779222089064, -73.942855622633 40.77817180615918, -73.94299695147203 40.77850460908786, -73.94315760769312 40.77881785164457, -73.94339530729766 40.77937089506078, -73.9435559568185 40.779693922772914, -73.94371015463138 40.78004141013461, -73.94374865516548 40.78018333186246, -73.94381286460649 40.78037908732209, -73.94389632410204 40.78064335870885, -73.9439243751734 40.78080402733135, -73.94395305609302 40.780963911011604, -73.94397278165833 40.781124576465395, -73.94397316394377 40.78112781935897, -73.94397318086196 40.781128831531454, -73.94398011296792 40.78121815569395, -73.94397450004334 40.78120830507555, -73.94397612377024 40.78123699045514, -73.94397618904594 40.78123825659269, -73.94397673897573 40.78124922677516, -73.94397677972896 40.78125007056533, -73.943976840266 40.781251336700535, -73.94397687983452 40.78125218049012, -73.94397689961916 40.78125260193465, -73.94397696015626 40.78125386806987, -73.94397701832402 40.78125513420393, -73.94397709746032 40.78125682268361, -73.94397723121197 40.78125977549461, -73.94397725099586 40.78126019783968, -73.94397726959586 40.781260619283636, -73.94397728819509 40.78126104162812, -73.94397732657893 40.78126188541714, -73.94397734517818 40.781262307761615, -73.94397736377817 40.78126272920557, -73.94397738237743 40.78126315155002, -73.94397740097742 40.78126357299403, -73.94397741957661 40.78126399533846, -73.94397743817585 40.78126441768295, -73.94397745559121 40.78126483912633, -73.94397747419046 40.78126526147081, -73.94397749278966 40.78126568381526, -73.94397770769167 40.78127074744235, -73.94397781218065 40.78127327970472, -73.94397782959518 40.78127370204864, -73.94397784701056 40.78127412349202, -73.94397786442511 40.78127454583591, -73.94397788184047 40.781274967279295, -73.94397793171565 40.781276233409336, -73.9439779491302 40.7812766557532, -73.9439779653601 40.78127707809655, -73.94397798277548 40.781277499539925, -73.94397801641999 40.781278344227125, -73.94397803265066 40.78127876566997, -73.94397804888057 40.78127918801326, -73.94397806511049 40.781279610356584, -73.94397808252583 40.78128003179996, -73.94397809875575 40.78128045414329, -73.94397959394523 40.781328154459636, -73.94397962368275 40.78132941877886, -73.94397964429454 40.781330265260735, -73.94397967284736 40.78133152957939, -73.9439796922737 40.781332376961196, -73.94397971170532 40.781333218039464, -73.94397972082506 40.781333643080806, -73.94397974937864 40.78133490649897, -73.94397975849837 40.781335331540305, -73.94397978586579 40.781336596758926, -73.94397981204706 40.78133786377787, -73.94397983822908 40.78133912989639, -73.94397991440354 40.7813429309522, -73.94397992352549 40.78134335329208, -73.9439799314628 40.78134377563138, -73.94397993940011 40.781344197970625, -73.94397994733743 40.78134462030992, -73.94397995527473 40.781345042649185, -73.94397996321284 40.781345464088, -73.94397997115016 40.781345886427246, -73.94397998702476 40.781346731105856, -73.94398000171475 40.78134757578382, -73.94398001640548 40.781348419561304, -73.9439800322801 40.781349264239864, -73.94398004697007 40.78135010891784, -73.94398008191872 40.781352219711444, -73.9439803147433 40.78144299672567, -73.94397615558907 40.781569476505446, -73.94397666939516 40.78166280837723, -73.94397037382245 40.781756018971436, -73.94395728922449 40.78184882013623, -73.9439374537221 40.781940927329266, -73.94391092913071 40.7820320560186, -73.94386358451231 40.782231919164325, -73.94381204774201 40.78244075464186, -73.94374222129761 40.782721303428296, -73.94373378206583 40.78276139324925, -73.9437343223332 40.782801990834365, -73.94373492809686 40.78281134554247, -73.94373356968556 40.782820654266516, -73.94373028402323 40.78282968109291, -73.94372515423208 40.78283819553373, -73.9437183084392 40.78284598333186, -73.94370992333094 40.78285284556237, -73.9436763015137 40.782870045828, -73.94364594078606 40.782890452564224, -73.94361936863258 40.782913713035065, -73.94331358355973 40.783317125578535, -73.94323820167845 40.7833930565984, -73.94315907906191 40.78346675608105, -73.9430763295286 40.7835381169154, -73.94287990662829 40.78368792443651, -73.94275168839538 40.78378031801953, -73.94273034265248 40.78379513507384, -73.94273209266639 40.78379489911156, -73.94268399003512 40.78383069174991, -73.94265227402362 40.78385984051801, -73.94261762873674 40.783886994108116, -73.94254836711215 40.78393373975921, -73.94247565821915 40.783977357106096, -73.94231046356393 40.78407303116968, -73.94214246315501 40.78416583909121, -73.94197318805236 40.784253963516704, -73.94189122972469 40.78429988021908, -73.94183696092887 40.7843357720494, -73.9417863869581 40.78437465628614, -73.94175356585889 40.78439464434471, -73.94147192304946 40.784540297357644, -73.94068679609259 40.784933047709494, -73.94047179014522 40.78503842159641, -73.94012940830241 40.78524144599463, -73.93999265770896 40.78534195638048, -73.9397756821144 40.78553047303511, -73.93953284878721 40.7857811058056, -73.93913736487897 40.78623409834658, -73.9388844918685 40.78651554047853, -73.93867582236558 40.78675464689546, -73.93849573880907 40.78696649830678, -73.93838499799008 40.78709310545752, -73.93828346047259 40.78722178137709, -73.93822540349662 40.78729055396649, -73.93815097399282 40.78739767098616, -73.9379159472619 40.78781854511129, -73.9377810466083 40.78812353781918, -73.93770230118524 40.78830206464085, -73.93758607297518 40.7885504896125, -73.93749497235297 40.788762174140544, -73.93739676648448 40.78898963420888, -73.93730381177593 40.78919864577869, -73.93722564560277 40.789359514639266, -73.93714826107707 40.789496482774915, -73.93698061324682 40.78976551401675, -73.93664802439824 40.79020894179724, -73.93638756245053 40.790552983234576, -73.93621516157464 40.790766041877966, -73.93603950417541 40.79096870937358, -73.93586068761469 40.79117435549477, -73.93571726139342 40.79131594505334, -73.93545185935258 40.791544721992196, -73.93519535894359 40.791736461226805, -73.93450598865374 40.79222538735157, -73.93400647701658 40.79256001837489, -73.93334936360922 40.79296901496923, -73.93265016886761 40.793365773329526, -73.93192265707937 40.79377012353669, -73.93121499352873 40.79414629531954, -73.93071338864388 40.79441656909723, -73.93036365368087 40.794635280744465, -73.93023633855677 40.79472920427118, -73.93017062071702 40.794787644759914, -73.93007168661431 40.7948909820127, -73.92992994191742 40.79506603420863, -73.92978361792298 40.795265857995915, -73.929639600388 40.79547996222969, -73.92943698236955 40.79584892093012, -73.92939001658381 40.79597540882243, -73.92927827996425 40.79631407240232, -73.9292205415845 40.796520570232076, -73.92917481189576 40.79673512857657, -73.92914146129297 40.796908207575655, -73.92911455384468 40.797090555766154, -73.92908903101895 40.79740346016431, -73.92905654114176 40.79789359301704, -73.92903901395513 40.79821752800398, -73.92903899932473 40.798217913408855, -73.92902567334811 40.79854789151526, -73.92902053905269 40.79878888547332, -73.92902536273401 40.7989570297328, -73.9290386402177 40.79910614803384, -73.92906407726628 40.79929268866969, -73.92910786006125 40.79952294362169, -73.92913047673403 40.799756658763954, -73.92917503968728 40.79993243663666, -73.92922267600007 40.80010112494113, -73.92927331522222 40.80026546565151, -73.92931873150381 40.80040831991865, -73.92935899877925 40.80052694397396, -73.92938229722725 40.8005883011674, -73.92950587849678 40.80089317782887, -73.92919358214141 40.800763815197186, -73.92899683327624 40.80068231604957, -73.92896319164342 40.80038960780899, -73.92891097442917 40.799773884333455, -73.92891805524225 40.799531502147126, -73.92892854044779 40.79929689786393, -73.92894238356429 40.799110255348815, -73.92894597616355 40.79894175157574, -73.92895125889915 40.79878621153205, -73.92896002644659 40.798561979015346, -73.92898532642079 40.79820348046361, -73.92900627252298 40.797573938674276, -73.92902629979635 40.797151217662694, -73.92904564899194 40.79676855584178, -73.92917625520795 40.79627174479241, -73.92928100504476 40.79586033823103, -73.92952619321883 40.795511506803834, -73.92988788463626 40.79503022005599, -73.9302012745106 40.7945962890231, -73.93054916979037 40.7944115274188, -73.93140399858076 40.793947721574405, -73.93242780577056 40.79337830601821, -73.93272199111092 40.79322647995028, -73.93349632963437 40.792774935757926, -73.93430273337901 40.79220167676048, -73.93436120078267 40.79216011325126, -73.9348611880875 40.79182003651479, -73.93488553278874 40.79180347655776, -73.93503219118018 40.791703722620305, -73.93555228695259 40.791318068154716, -73.93581753710843 40.79111526853589, -73.93583132299896 40.791096498972074, -73.93618059579707 40.790620949375594, -73.93677241035007 40.789820986102086, -73.93702604945621 40.789473828800155, -73.93708574628599 40.789371935507646, -73.93709679135074 40.789355306583225, -73.93714924439142 40.789189073914535, -73.93716044990151 40.789156806071425, -73.93751880115985 40.788364259266736, -73.93779751775939 40.78774531643864, -73.93811092706106 40.78719811553536, -73.93852855212637 40.78673024229746, -73.93871736705515 40.78651530134829, -73.93887771342726 40.78633278374716, -73.93933603104377 40.785819026943635, -73.93974163384333 40.785364348743975, -73.93983589991512 40.785255155461954, -73.93985153642127 40.78524683128395, -73.94031807445569 40.78500225179619, -73.94068755159141 40.78480444477729, -73.94134161774016 40.784485607583925, -73.9415739574531 40.7843669755674, -73.94162853688584 40.784339107487334, -73.9417126122831 40.784296178105954, -73.94183102050529 40.784235718823666, -73.9421204466464 40.784087934647914, -73.94212172198158 40.7840872608127, -73.94215265122955 40.78407090972538, -73.94215498381321 40.784069675407984, -73.94218617382182 40.78405316235218, -73.94218824209345 40.78405206657879, -73.94221968100985 40.784035397852, -73.94222145770894 40.784034455017064, -73.94225317516538 40.78401761352443, -73.94225467332866 40.78401681823169, -73.94228661598801 40.78399983276239, -73.94228788776796 40.783999156222094, -73.94232008170597 40.78398201238104, -73.9423210583578 40.78398149147939, -73.94235348816508 40.783964198263725, -73.94235423250674 40.78396380061436, -73.94238685551566 40.78394637871417, -73.94238692426073 40.783946341827985, -73.9423873888822 40.78394609262131, -73.94242026198425 40.7839285123484, -73.94242055948378 40.783928353108244, -73.94245366964294 40.783910618958416, -73.94245863619146 40.783907585847324, -73.94246358616684 40.78390453741928, -73.94246852075457 40.783901472774254, -73.94247343639903 40.783898393711596, -73.94247833784047 40.78389529843253, -73.9424832179684 40.78389218963515, -73.9424880850789 40.783889063721524, -73.94249293324611 40.783885923390216, -73.94251392851042 40.7838709756325, -73.94253494389291 40.783856042289, -73.94255594027493 40.783841150355215, -73.94255597346695 40.783841126958706, -73.94257702434376 40.78382622604322, -73.94257704923817 40.783826208045596, -73.94259809771056 40.7838113368416, -73.94261918171239 40.78379646835289)), ((-73.92937043309435 40.80022520083426, -73.92932268860116 40.80006979489506, -73.92933972960053 40.800076894974374, -73.92930566115727 40.79996513290943, -73.92932303990466 40.79996102198018, -73.9293962064386 40.800100425411635, -73.92942244867933 40.80015025350895, -73.92944896670089 40.80020377831879, -73.92948413201066 40.80027491227534, -73.92952229408073 40.80035517191258, -73.92954417145039 40.8004034259398, -73.92962573691496 40.80060573513016, -73.92966156139893 40.800701626859016, -73.92968032016276 40.800755375602684, -73.92971537459273 40.80086132722122, -73.92973850806142 40.80094131827101, -73.92975484229768 40.800996305510125, -73.9296361962966 40.80094715953807, -73.92951771718967 40.800643191140956, -73.92948994650128 40.80057501536028, -73.92945565108839 40.800476791317806, -73.92941585074192 40.80036805506483, -73.92937043309435 40.80022520083426)))",M108T01,69220,M108T01,M-15,M-15,M-15,M-15,"FDR Drive, E 90 St. To E 125 St.","108, 111","5,8",19,"10028, 10029, 10035, 10128",M,8.595,False,East River Esplanade 90th-125th,No,100004777,PARK,,,,DPR/DOT/TBTA,False,East River Esplanade,Y,East River Esplanade,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/M108T01/,Yes,"68, 76",29,"13, 12",{B215AD42-CB08-4BB8-8A66-67E381CD9E7E} +"MULTIPOLYGON (((-73.86514430707692 40.83526042099112, -73.86510576275772 40.83502636517008, -73.86512958773223 40.8350246352671, -73.86566868883556 40.835183222967544, -73.86567264849758 40.83520863054406, -73.86514430707692 40.83526042099112)))",X148K3,5646,X148K3,X-09,X-09,X-09,X-09,"Thieriot Av, Wood Av, N/B Cross Bronx Exwy Service Rd",209,18,43,10460,X,0.191,False,Wood Park,Yes,100005142,ZONE,20100106000000.00000,19460131000000.00000,,DPR,True,Wood Park,Y,Wood Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148K3/,No,87,33,15,{4B4A4FF0-CD44-4F0D-89E6-450665F0249B} +"MULTIPOLYGON (((-74.19894192131045 40.60085771496109, -74.1992636364108 40.60072799897118, -74.19961301713224 40.60135804168849, -74.20079960306072 40.60349772425165, -74.20341508105582 40.605660676013265, -74.20373697391429 40.60679943821074, -74.2037027461351 40.6076068114981, -74.20280852440455 40.61038507268989, -74.20269164147366 40.611321998223886, -74.20272778019113 40.612406956486886, -74.20264293770516 40.613188242715125, -74.20237074720607 40.61425054114126, -74.20218082451325 40.61453774517589, -74.20195258555641 40.61469408371854, -74.20111172240767 40.614937265607516, -74.20018037251472 40.61469097273176, -74.1982445766128 40.61393286128549, -74.19772446786929 40.613308033876386, -74.19764102040159 40.612998129889455, -74.19889033769928 40.61089775699194, -74.19983534140222 40.60888761320867, -74.19985275832035 40.607422086561314, -74.19983731780111 40.607129705171914, -74.1997909916142 40.60669571513188, -74.19973474471126 40.60642491185049, -74.19964599182302 40.60608554056767, -74.20004006573774 40.605931081873415, -74.19817181655864 40.602920412489645, -74.19814718999531 40.602384371009606, -74.19894192131045 40.60085771496109)))",R122,6097,R122,R-02,R-02,R-02,R-02,Pralls River and Arthur Kill,502,50,122,10314,R,107.514,False,Pralls Island,No,100004778,PARK,20100106000000.00000,19840615000000.00000,,DPR,False,Pralls Island,N,Pralls Island,Large Park,Nature Area,http://www.nycgovparks.org/parks/R122/,Yes,63,24,11,{5F1D1D66-83FC-4072-B6AC-3935AC5B1F6E} +"MULTIPOLYGON (((-73.899431783064 40.8863648655967, -73.89965333434795 40.88591262252177, -73.89967751968548 40.885868346815094, -73.89968875508221 40.885847778663106, -73.89969580621805 40.8858338776777, -73.89970073006168 40.88582223686534, -73.89970239904581 40.885817820528935, -73.90000748916268 40.88590367287473, -73.89974030583484 40.88626175275835, -73.89969627251759 40.88630887387497, -73.89965821583583 40.88633390133361, -73.89961467900852 40.88635310687149, -73.89955312374335 40.88636818599342, -73.89950300836877 40.88637192171113, -73.89946708388074 40.88637020651716, -73.899431783064 40.8863648655967)))",X150L,5729,X150L,X-08,X-08,X-08,X-08,Broadway bet. W 239 St and Van Cortlandt Pa,208,11,50,10463,X,0.35,False,Van Cortlandt's Tail,Yes,100004819,PARK,20100106000000.00000,19501212000000.00000,,DPR,True,Van Cortlandt's Tail,Y,Van Cortlandt's Tail,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X150L/,No,81,34,13,{97E8A211-A0F1-492E-9578-577B218E4EA6} +"MULTIPOLYGON (((-73.94015605780575 40.71592634049964, -73.94028231762965 40.715892743181804, -73.94034497965525 40.71607072192957, -73.94041220701115 40.71626169826715, -73.94021335027084 40.716280785945976, -73.94015605780575 40.71592634049964)))",B489,5278,B489,B-01,B-01,B-01,B-01,Kingsland Ave. between Skillman Ave. and Maspeth Ave.,301,34,94,11211,B,0.123,False,Red Shed Garden,No,100004757,PARK,20100106000000.00000,20021120000000.00000,266 SKILLMAN AVENUE,DPR,False,Red Shed Garden,N,Red Shed Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B489/,No,53,18,12,{6C18A95E-E5C3-41E9-AEC1-D640795BFFC2} +"MULTIPOLYGON (((-73.83868117507936 40.88567381564431, -73.83852750049031 40.88531998923298, -73.83859849495674 40.88530222916246, -73.83909622567319 40.88517771491392, -73.83913245290648 40.885168652477425, -73.84029577830157 40.88487762035477, -73.84054333219424 40.885486311260344, -73.8404950475834 40.88549338721074, -73.84048862047975 40.88546162353956, -73.83981586490916 40.88552570703229, -73.83988219446377 40.88588997959014, -73.83957635289327 40.88591650649874, -73.8393559894623 40.885998639628994, -73.83925618619891 40.885930733602, -73.83915067650196 40.885867991934965, -73.83903992362822 40.88581068990724, -73.83892441579964 40.88575908032168, -73.83880465672289 40.88571338898952, -73.83868117507936 40.88567381564431)))",X193,4670,X193,X-12,X-12,X-12,X-12,Crawford Ave. at Baychester Ave.,212,12,47,10466,X,2.646,False,Stars & Stripes Playground,Yes,100004607,PARK,20100106000000.00000,19610112000000.00000,3800 BAYCHESTER AVENUE,DPR/DOE,False,Stars & Stripes Playground,Y,Stars & Stripes Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X193/,No,83,36,16,{CFB881F1-E2FD-4D43-9CC8-2FEC512463AA} +"MULTIPOLYGON (((-73.90986756794135 40.847908626488014, -73.90967913931502 40.84817127432463, -73.90938898805389 40.84811316312429, -73.90949246571437 40.847832371750506, -73.90986756794135 40.847908626488014)))",X324,5983,X324,X-07,X-07,X-05,X-05,E. 176 St. bet. Walton Ave. and Morris Ave.,205,14,46,10453,X,0.213,False,176th Street Community Garden,No,100008336,PARK,20110712000000.00000,20021120000000.00000,,DPR,False,176th Street Community Garden,Y,176th Street Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X324/,No,86,33,15,{F7DC20F3-50EF-40B1-A54B-BDBFA166878A} +"MULTIPOLYGON (((-73.95876130733136 40.82150065312144, -73.96114485755572 40.818687679343384, -73.96170280950045 40.8181303874926, -73.96171598432358 40.81812210729891, -73.96187723909213 40.81803609035961, -73.96196941158871 40.817942772615076, -73.96197588776268 40.81794551406172, -73.96207969860438 40.817989439355834, -73.96207973062634 40.81798940694847, -73.96215593282282 40.81802155359955, -73.9616392629647 40.8186000797931, -73.96213727189449 40.81881828612743, -73.96245263187318 40.81862376583782, -73.96253694986055 40.818706199502714, -73.962129918379 40.818953205103334, -73.9624734343095 40.8191598390764, -73.96247613247114 40.8191613419826, -73.96247845232507 40.819163174347324, -73.9624803215963 40.81916528211732, -73.96248168697979 40.81916760314095, -73.9624825082136 40.8191700671665, -73.96248275926098 40.81917260214567, -73.96248243305298 40.81917513153413, -73.96248154029917 40.819177581494465, -73.96248010711854 40.8191798781946, -73.96248011065678 40.81917990971314, -73.96243231626536 40.81923322065056, -73.96243203412882 40.81923326738446, -73.96243222852911 40.819233258442836, -73.96242982099525 40.81923556112832, -73.96242694781103 40.819237532279324, -73.96242368723914 40.819239117891556, -73.96242012820424 40.81924027477008, -73.96241636792186 40.81924097142926, -73.96241250715634 40.8192411889914, -73.96240865140584 40.819240922088, -73.96240490734664 40.81924017795775, -73.96240137335108 40.81923897554318, -73.96239814896819 40.819237349095665, -73.96210165329592 40.81907748954516, -73.96188642360423 40.81881514089468, -73.9615673316939 40.818681809219186, -73.96124646792715 40.81904290177996, -73.96143697365368 40.81925339096331, -73.96152129626046 40.81920609084089, -73.96168277121315 40.81936231591117, -73.96036609200256 40.82012012212095, -73.95907748268323 40.82165153762906, -73.95876130733136 40.82150065312144)))",M376,5589,M376,M-14,M-14,M-14,M-14,Henry Hudson Pkwy. bet. St Clair Pl. and W. 135 St.,109,7,26,"10024, 10027",M,4.712,False,West Harlem Piers,Yes,100007459,PARK,20100506000000.00000,20100121000000.00000,,DPR/SBS/EDC,False,West Harlem Piers,Y,West Harlem Piers,Sitting Area/Triangle/Mall,Waterfront Facility,http://www.nycgovparks.org/parks/M376/,Yes,71,31,13,{35863077-1E5A-4613-B623-631136BB2D60} +"MULTIPOLYGON (((-73.9294891736786 40.79726381838578, -73.92939551994868 40.7972552027076, -73.9293950095542 40.79715211947496, -73.92939861162301 40.797028253421395, -73.92940002081788 40.7970000389217, -73.92940158769238 40.7969728627948, -73.92940192610845 40.79695878728831, -73.92940285579203 40.7969447283529, -73.92940437672932 40.796930698595574, -73.9294064853499 40.79691671242211, -73.92940918282298 40.796902784241176, -73.92941246557724 40.796888929359085, -73.92941632767239 40.79687516218013, -73.92942076909556 40.79686149441073, -73.92942578034881 40.796847943154496, -73.92943136142037 40.79683451921739, -73.92943750281428 40.79682123790197, -73.92944177959139 40.7968153314396, -73.92944579105065 40.79680932215765, -73.9294495371912 40.7968032109567, -73.92945300970598 40.79679700953817, -73.9294562085895 40.79679072330504, -73.92945912554141 40.79678435765529, -73.92946176292222 40.7967779215954, -73.92946411479957 40.79677142232575, -73.92946633108053 40.79676428902113, -73.92952133428797 40.79677920342667, -73.92968498286407 40.79684834289923, -73.92965264270143 40.79689621355218, -73.92964553431183 40.79689839742846, -73.92963797382993 40.79690117715925, -73.92963068665141 40.796904351475334, -73.92962370715927 40.79690790148727, -73.92961706854697 40.79691181280742, -73.92961232308892 40.79691496165932, -73.9296078262515 40.79691831507637, -73.92960353779998 40.796921822605924, -73.92959952524463 40.796925514005856, -73.92959455964166 40.79693066183233, -73.92959007722747 40.7969360611932, -73.92958610291723 40.79694168238731, -73.92958264977017 40.79694750200958, -73.92958040076226 40.79695197431906, -73.92957849292044 40.79695653778744, -73.92957642220995 40.796962723857085, -73.92957492135704 40.7969690030263, -73.92957399986999 40.79697534828601, -73.92957367487755 40.79698012974184, -73.92957371247002 40.796984917722696, -73.92957425080436 40.79699128728732, -73.92957537217623 40.796997613083605, -73.92957707187828 40.797003864491764, -73.92957870220468 40.79700848955473, -73.92958068217355 40.79701303468673, -73.929583778075 40.79701896727029, -73.9295874133137 40.79702472188422, -73.92959156540542 40.7970302705993, -73.92959621660572 40.79703558548908, -73.92960134324237 40.797040641325054, -73.92960691927253 40.79704541377784, -73.92961291983717 40.79704987941908, -73.92961931533472 40.79705401751923, -73.92962434117702 40.797056904888954, -73.92961529461972 40.7970620574285, -73.9296064895396 40.79706744604584, -73.92959793660594 40.797073066244934, -73.92958964767949 40.79707890722713, -73.92958163224365 40.797084965396294, -73.92957389741663 40.7970912326523, -73.9295664574253 40.79709770179991, -73.92955931820396 40.797104363837796, -73.92955248924179 40.797111209766875, -73.92954597765598 40.797118232387454, -73.92953979411871 40.79712542450219, -73.92953394101053 40.79713277620706, -73.92952843255924 40.797140279406314, -73.92952327114727 40.79714792239494, -73.92951846152214 40.797155697971974, -73.9295140155429 40.7971635971396, -73.92950992966716 40.797171608189274, -73.929506218123 40.79717972302519, -73.92950287973514 40.7971879326417, -73.92949991925866 40.79719622263368, -73.92949734262228 40.79720458940287, -73.92949515102826 40.79721301674104, -73.92949334685235 40.79722149924659, -73.92949193366377 40.797230023414244, -73.92949091265723 40.79723858023978, -73.9294891736786 40.79726381838578)))",M108J,5532,M108J,M-11,M-11,M-11,M-11,E. 120 St. and Paladino Ave. (Service Rd To FDR Dr.),111,8,25,10035,M,0.188,False,Strip,No,100004802,PLGD,20100106000000.00000,19420608000000.00000,,DPR/CDOT,False,Park,Y,Park,Undeveloped,Strip,http://www.nycgovparks.org/parks/M108J/,No,68,29,13,{6D4DD834-6405-430D-BB71-58FCC727CA40} +"MULTIPOLYGON (((-73.98184991028882 40.73545795259606, -73.98201607865876 40.735229391951954, -73.98250957405996 40.735436699132194, -73.98217578540594 40.73589582769078, -73.98187588428148 40.73576984486779, -73.98204350764553 40.73553927989248, -73.98184991028882 40.73545795259606)))",M226,4924,M226,M-06,M-06,M-06,M-06,"2 Ave., E. 19 St. To E. 20 St.",106,2,13,10003,M,0.642,False,Augustus St. Gaudens Playground,Yes,100004479,PLGD,20100106000000.00000,19540227000000.00000,328 2 AVENUE,DPR/DOE,False,Augustus St. Gaudens Playground,Y,Augustus St. Gaudens Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M226/,No,74,27,12,{669495C1-036D-4DB6-9F60-18ACFEBA6291} +"MULTIPOLYGON (((-73.93557987971336 40.68327474414367, -73.93556172063975 40.68318544618923, -73.93555157211576 40.683135536708164, -73.93554127879503 40.683084916639075, -73.93553888059255 40.683073123962075, -73.93568745005162 40.68305611443406, -73.93572699931381 40.683051586233226, -73.93578489034732 40.68333627830706, -73.93559680262923 40.68335797283708, -73.93557987971336 40.68327474414367)))",B575,14689,B575,B-03,,,B-03,Halsey St. bet. Marcus Garvey Blvd. and Lewis Ave.,303,36,,11233,B,0.121,False,,,100037050,PARK,,20160209000000.00000,462 HALSEY STREET,DPR,False,Halsey Garden,,Halsey Garden,,Garden,,No,56,25,8,{351A7CE7-8EAC-407D-A6CD-4AC2163ABD28} +"MULTIPOLYGON (((-73.88464925581968 40.879883706244485, -73.8846737257686 40.87986247108575, -73.88468314893181 40.879868950505376, -73.88469900904255 40.879879859550506, -73.8847144022645 40.879890448454006, -73.88472020169037 40.87989443350185, -73.88474452393267 40.87991116994403, -73.88476330510585 40.87992408818383, -73.88479928553643 40.87994949354244, -73.8848352553292 40.879974891675204, -73.88489157163211 40.880017105986724, -73.88490516698559 40.88002729955816, -73.88497299387961 40.880081268566855, -73.8850386779666 40.880136746418835, -73.88507615147267 40.880171567775086, -73.88511362502888 40.88020638281553, -73.88514093185717 40.88023174971561, -73.88515110573205 40.880241204154096, -73.88516809063498 40.880256982289076, -73.88518858055318 40.880276019170935, -73.88522605421785 40.880310839577156, -73.88527142628215 40.880351665970494, -73.88527735692655 40.88035734403702, -73.88531417603787 40.88039407549847, -73.88536532989657 40.88044509841705, -73.88539760455292 40.88048007028706, -73.88543622539488 40.880524718783164, -73.88546803272709 40.880563103016726, -73.88549825019635 40.88060222316321, -73.88552684346564 40.88064203776738, -73.88555379123304 40.88068251439174, -73.88557904849247 40.88072360616748, -73.885607100546 40.88077669790235, -73.88561172918547 40.88078545522843, -73.88564216408741 40.8808479522061, -73.88567034613614 40.88091106107578, -73.88571066539386 40.88101081378722, -73.88574664907853 40.88111151220503, -73.88575873515467 40.881150293754985, -73.88577081532353 40.88118906899415, -73.88578319187705 40.881227293426775, -73.88586147341188 40.881452575564474, -73.88594814199254 40.881676078460096, -73.88603050518103 40.88186724413231, -73.88612093682215 40.88205629345037, -73.88621934949721 40.88224303990845, -73.8862434327761 40.88228782506778, -73.88626750778221 40.88233261021354, -73.88629158994101 40.88237739446044, -73.88631567331723 40.88242217960364, -73.88633975554097 40.882466963839754, -73.8863638306768 40.88251174896394, -73.88637662618743 40.882534965315465, -73.88638870613326 40.882556871652724, -73.88641357330901 40.88260199973057, -73.88643844764657 40.882647122406695, -73.88646331489753 40.88269224597061, -73.88648819048906 40.88273736863646, -73.8865130649279 40.88278249129543, -73.88653793228167 40.88282761394164, -73.8865618681114 40.882872144946994, -73.88663053239 40.88300668665835, -73.88669380181085 40.88314275205627, -73.88675161843794 40.88328020601973, -73.88680391600812 40.883418925124985, -73.88685066504848 40.88355877968055, -73.88689180402996 40.883699651669005, -73.88691802350706 40.88380469665548, -73.88693963963368 40.88391035035633, -73.88695662768501 40.884016487582244, -73.88695715154192 40.88402101124123, -73.88696588754345 40.88406785232166, -73.88696961749633 40.8841455409817, -73.88695982972601 40.8842232164022, -73.88695593659158 40.88424080180001, -73.88694625846318 40.8842539844538, -73.88692886135368 40.884262761567086, -73.88691340083987 40.88426860949031, -73.88607722759484 40.88395838708173, -73.88606565742478 40.88395463503815, -73.88605535903284 40.88395027371874, -73.88596252656191 40.88391095141945, -73.88590220887474 40.88388539992216, -73.88584188291925 40.88385985378791, -73.88578156413834 40.88383430222616, -73.88572123828486 40.883808750625704, -73.88566091958579 40.883783205304034, -73.88560060094396 40.88375765364734, -73.88554027641611 40.88373210195311, -73.88548427385042 40.88370750452927, -73.88542826420732 40.88368290707102, -73.88537226172456 40.883658309592555, -73.88531626046971 40.88363371208801, -73.88526910969995 40.88361298014018, -73.88525863768858 40.88360821966099, -73.88525255657468 40.88360431270556, -73.88524647054297 40.883598443583665, -73.8852431168593 40.88359333628875, -73.885240883738 40.88358724047261, -73.88524025200655 40.88358066899056, -73.88524964336804 40.88350692393668, -73.88525589914518 40.88343574935577, -73.88525651422086 40.88342241105243, -73.88525918416714 40.88336445475704, -73.88525951492205 40.88329311669849, -73.88525688298363 40.88322181081263, -73.88525613648497 40.883212304528676, -73.88525128707225 40.88315059653018, -73.88524576722813 40.88310474544229, -73.88524273772808 40.883079559407406, -73.88523123960069 40.88300876068146, -73.88522570275607 40.882981706343045, -73.88521679969998 40.88293826879542, -73.88519944874818 40.88286816212111, -73.88517737606853 40.88279233355292, -73.88515216898749 40.882717075470836, -73.88512386536526 40.882642455447005, -73.885092479326 40.8825685446318, -73.88505804040835 40.88249541959348, -73.88502060069462 40.88242315602216, -73.88500289574625 40.88239190768458, -73.88498017431075 40.88235182326657, -73.88493682165878 40.88228148801981, -73.88490935304354 40.88223330977712, -73.8848818844681 40.882185131527415, -73.8848544183038 40.88213695417359, -73.88482695099447 40.88208877591118, -73.88481459006819 40.882067094249365, -73.88479948253692 40.882040598541074, -73.88477201412071 40.881992420263515, -73.88474454692141 40.8819442473831, -73.88471730120861 40.88189631694802, -73.88470178819627 40.88186901668582, -73.88469006265379 40.881848386513205, -73.88466281701957 40.88180045606438, -73.8846355714152 40.88175253101166, -73.88460833297977 40.88170459965578, -73.88458108746183 40.88165667008691, -73.88455384909399 40.881608745020756, -73.88452660365618 40.88156081453767, -73.8845006706417 40.88151551658528, -73.88447473172253 40.88147022312315, -73.88444879876934 40.88142493056127, -73.88442286823535 40.881379631692134, -73.8844039591342 40.88134660628908, -73.88440182527123 40.88134287703445, -73.88439692942059 40.88133433911191, -73.88437099777084 40.881289040229156, -73.88434506614543 40.881243747643666, -73.8843337391694 40.88122397149369, -73.88431912743673 40.881198455044775, -73.88429323254567 40.88115322911969, -73.8842668070526 40.88110681131139, -73.88425387048633 40.881084100651336, -73.88424040993301 40.88106047276794, -73.88421402116619 40.88101412792304, -73.88418763243466 40.88096778397213, -73.88416124373201 40.88092144451728, -73.88413485507562 40.88087509965308, -73.88410845933583 40.88082875567576, -73.88408207075453 40.880782409898195, -73.88405842710267 40.88074180297725, -73.88403478467082 40.88070119335088, -73.88401894460391 40.88067398361097, -73.88401525991297 40.8806676503812, -73.88401113990123 40.880660580115006, -73.88398750464259 40.880619972286475, -73.88396657200877 40.88058349770632, -73.883959579019 40.88057135480483, -73.88394434522046 40.880544858849674, -73.88394237673602 40.880540892923975, -73.88394076907073 40.88053684451625, -73.88393953176782 40.88053268391996, -73.88393868724212 40.88052848409719, -73.88393822835447 40.88052425674713, -73.88393816101811 40.880520012681544, -73.88393871931383 40.88051418978992, -73.88393969092736 40.88050947401314, -73.88394117969452 40.880504832596344, -73.88394360375062 40.880499292533, -73.88394613017019 40.88049492230585, -73.88398493120842 40.88046022860989, -73.88399446317531 40.88045195820796, -73.88404123656672 40.880411369809764, -73.8840612629451 40.88039398710618, -73.88408800159759 40.88037078048349, -73.8841347748827 40.88033018754435, -73.88416979182612 40.88029980152099, -73.8841815492876 40.8802895999901, -73.88422022235586 40.880256035296966, -73.88422955345443 40.88024793936849, -73.88423392966895 40.880244143700516, -73.88427508725148 40.8802084230121, -73.88432186030968 40.880167829095434, -73.88436829228785 40.880127533779756, -73.88441540742069 40.88008665291189, -73.88446217199325 40.88004606433206, -73.88449741201744 40.88001548662749, -73.88450894482295 40.880005470338425, -73.88455571758615 40.879964881728384, -73.88460248317219 40.879924293992495, -73.88464498421507 40.879887411083686, -73.88464925581968 40.879883706244485)), ((-73.88160407265975 40.87620608846119, -73.88166880650536 40.87620515981474, -73.88173138219508 40.87620633156053, -73.88174919039315 40.87620708550811, -73.881793872225 40.876208975482996, -73.88185623509607 40.87621308073397, -73.88191839488435 40.87621864813641, -73.88213302363035 40.87624031087035, -73.8823466948666 40.876266814154256, -73.8823534382487 40.87626807450845, -73.88236012438816 40.87626950319525, -73.88236673310595 40.876271106497434, -73.88237326203092 40.87627288351221, -73.88237971591663 40.876274829741895, -73.88238607458706 40.87627694966839, -73.88239232738579 40.87627923157456, -73.88239847073952 40.87628168356113, -73.8824045011226 40.87628428671432, -73.88241041376894 40.876287052735556, -73.88241619208883 40.87628997080219, -73.8824218289641 40.876293040906916, -73.88242732678178 40.876296254947825, -73.88243267485842 40.87629961651604, -73.88243786728454 40.876303112998656, -73.88244289693404 40.8763067488909, -73.88244775552947 40.876310508876074, -73.88245243594487 40.87631439744939, -73.8824569393744 40.87631841010958, -73.88246125753442 40.87632253514198, -73.88246538212199 40.8763267716376, -73.88246931315454 40.87633110969114, -73.88247303876058 40.87633555379298, -73.88247656251673 40.876340094041325, -73.88249883726324 40.87637448475784, -73.88251381448148 40.87639761373868, -73.88252109662135 40.87640886915072, -73.882578463743 40.87648699986533, -73.88263874338901 40.876563856619825, -73.88270188347252 40.87663937902394, -73.88276782597903 40.876713503979985, -73.8828118887341 40.87675991216733, -73.88287713806936 40.87682830294694, -73.88298193216316 40.876931360263825, -73.88309592259019 40.877036175547296, -73.88313869360907 40.87707528564286, -73.88318146824686 40.877114390322916, -73.88322424056375 40.87715349408401, -73.88326701410475 40.87719260503401, -73.88332338517603 40.8772442915249, -73.88337745706492 40.877297375923284, -73.88342917174614 40.87735179604011, -73.88347847000716 40.877407489685, -73.88352530093955 40.87746439467601, -73.88358455852052 40.87753797841613, -73.8836405179007 40.87761303199778, -73.88369312226496 40.87768947612554, -73.8837422922847 40.87776721527229, -73.88378799605528 40.87784617106775, -73.8838829210537 40.87802542860528, -73.88397023082942 40.878206899005704, -73.88399990923456 40.87827711467058, -73.88401308273663 40.87831190025212, -73.88402674277995 40.87834798482438, -73.88405073156564 40.87841944733543, -73.88407182351675 40.878491424711214, -73.88408848236661 40.87855772095424, -73.88409002702817 40.87856386023103, -73.88410646730314 40.878636462367595, -73.88412004780149 40.8787094047153, -73.88413075557206 40.878782625128466, -73.88413858835035 40.87885605606908, -73.88414229940643 40.878907121956914, -73.88414414959705 40.87893265534547, -73.88414600216343 40.8789581878358, -73.88414755409185 40.878984676342235, -73.88414918803106 40.879012441822546, -73.88415444078642 40.879066600630715, -73.88416176763756 40.87912061564083, -73.88417115322595 40.87917445261863, -73.88418259765376 40.87922805573342, -73.8841982348796 40.879285738661224, -73.88421643554557 40.87934298021755, -73.88423718433344 40.879399723655155, -73.88426045290082 40.87945589690515, -73.88428621762563 40.879511442311156, -73.88429621195488 40.8795305363675, -73.88430701468704 40.87954937189284, -73.88431861635809 40.87956793356918, -73.88433099683087 40.879586203366344, -73.88434415614495 40.87960415877186, -73.88435806348075 40.87962178444637, -73.88437271887152 40.879639061479345, -73.88438040637071 40.87964751755654, -73.88438809388126 40.879655968230324, -73.88440418854009 40.87967248758982, -73.8844209708322 40.879688609620096, -73.88446147173111 40.879716468938845, -73.88446988167999 40.87972225038428, -73.88447768609548 40.879727615197716, -73.88449890113961 40.8797422171277, -73.88451291141145 40.879751849256905, -73.88448485966529 40.879775811976145, -73.88447900074071 40.879780820027236, -73.88443214006661 40.87982084031167, -73.884385286464 40.87986085518102, -73.8843384256661 40.879900881730215, -73.88433264752273 40.87990581691521, -73.88429156483221 40.87994089655383, -73.88427259187202 40.8799570998156, -73.88424471222797 40.87998092217222, -73.88420017180421 40.880018960914164, -73.88415099026712 40.88006095802622, -73.88410413631509 40.88010097908309, -73.88406433662173 40.88013496853712, -73.88405727399542 40.88014100371423, -73.88401042112798 40.880181018430186, -73.88400330859143 40.88018709407571, -73.88396355988975 40.88022103852148, -73.883955438561 40.88022797851835, -73.88392293662226 40.88025573668236, -73.88391669858416 40.88026106489681, -73.88389401005388 40.88028037914497, -73.8838690963836 40.880301382265365, -73.88386217934264 40.88030555716946, -73.88385633201743 40.88030794658229, -73.88385006362253 40.88030959266875, -73.88384059756892 40.880310696144484, -73.88383249479062 40.88031040073348, -73.88382405372406 40.88030951606245, -73.88381434715974 40.88030771251999, -73.88380812169147 40.880305840442354, -73.8838018986092 40.88030328219522, -73.88379608930654 40.880300207484474, -73.88379151857326 40.88029716733865, -73.88376601756553 40.88025574624379, -73.88374220347654 40.880215801840954, -73.88371545384021 40.88016860284844, -73.88370273902528 40.88014616699447, -73.88368874207032 40.88012148222981, -73.88366203509493 40.880074355305986, -73.88363533052868 40.88002722927842, -73.88360862481389 40.87998010324312, -73.88358395764207 40.879936908085135, -73.88357644807752 40.879923764195965, -73.88355928219738 40.87989371291318, -73.88353461508962 40.87985051774397, -73.88350994682914 40.879807321667464, -73.8834852785975 40.87976412738632, -73.88347970411718 40.87975436857622, -73.88346060446746 40.87972093219307, -73.88343593630157 40.879677737000236, -73.88341088519907 40.87963372647351, -73.8833858258154 40.879589721335506, -73.88337521637835 40.87957108222547, -73.88336077477923 40.87954571079718, -73.88333571547302 40.87950169934421, -73.88331065738473 40.879457688787106, -73.88328560643859 40.87941368363429, -73.88325687071205 40.87936349740242, -73.88322814334315 40.87931330576838, -73.88320122939786 40.879266178520886, -73.88317431904836 40.87921905217081, -73.88314740635474 40.87917193121453, -73.88312049489514 40.879124804849866, -73.88309358347523 40.87907767757804, -73.88306667209194 40.87903055120005, -73.88303975956194 40.87898342391365, -73.88301284825337 40.878936298422765, -73.88298675001542 40.878890323672465, -73.88295874640032 40.878841009775634, -73.88293169494828 40.8787933600384, -73.8829046506439 40.87874571570457, -73.88287855963272 40.87869976434808, -73.88285054791302 40.87865042790268, -73.88282349779297 40.87860278354253, -73.88279645364364 40.878555139181685, -73.88276940122665 40.87850749570618, -73.88274175371023 40.87845893492249, -73.88271411097976 40.87841037413659, -73.88268646947768 40.87836181244435, -73.88265882089598 40.87831325163832, -73.88263117117789 40.878264685421094, -73.88261786792845 40.87824131053223, -73.8826035297953 40.87821612460816, -73.88257588845475 40.87816756288773, -73.88254823884823 40.878119002052266, -73.88252224345271 40.87807360180545, -73.8824962481022 40.878028196149465, -73.88247025277771 40.87798279589018, -73.88244425630394 40.87793739472294, -73.88241826104878 40.877891995351675, -73.88239226584034 40.87784658967078, -73.88236627065785 40.87780118938657, -73.8823402755204 40.877755783693196, -73.88231427210263 40.877710384288534, -73.8822880859798 40.87766433633989, -73.88226189870517 40.87761828928412, -73.88223570553502 40.877572242216026, -73.88221347560422 40.877533164461795, -73.88220951832183 40.877526201451005, -73.88218333115607 40.8774801543763, -73.88215713690835 40.877434107287996, -73.88213172692957 40.8773893766074, -73.88210630750517 40.877344639607784, -73.88208089640843 40.87729990891405, -73.88205548534582 40.8772551782144, -73.88203006720882 40.87721044209854, -73.88200676728889 40.87716942895943, -73.8820046574026 40.87716571048771, -73.88197902293555 40.87712124428508, -73.88195339680894 40.87707677718445, -73.88192776241205 40.877032310069225, -73.88190212923425 40.87698784384969, -73.88187650321048 40.87694337673087, -73.88185666543632 40.87690896047735, -73.88185087010285 40.87689890959876, -73.88179598075122 40.876802681252784, -73.88178363886784 40.87678007176008, -73.88173299195726 40.87668328041998, -73.88168062196128 40.87657351395518, -73.88165762127183 40.87651859930953, -73.8816368507017 40.87646317096622, -73.88161831844451 40.87640728836712, -73.88160205287284 40.87635100467114, -73.88158805982644 40.87629436851164, -73.88158651790229 40.87628685145427, -73.88157639585258 40.87623626784439, -73.8815768847207 40.876232220651126, -73.88157871579132 40.87622659627919, -73.88158209660895 40.87622076458412, -73.88158542770384 40.876216872489714, -73.88158894360258 40.87621379642726, -73.88159274822185 40.87621114118896, -73.88159792199775 40.8762084270225, -73.88160407265975 40.87620608846119)), ((-73.88240886660259 40.87221605110856, -73.88241917617184 40.87221561226958, -73.8824268296997 40.87221716080417, -73.88243279447143 40.87221976299083, -73.88243718785073 40.87222279220907, -73.88244083093949 40.87222680939964, -73.88244331892285 40.87223130897595, -73.88245222376891 40.87226250377987, -73.88245793555787 40.87228272917637, -73.88247157095212 40.872330910216945, -73.88248520044425 40.872379085846546, -73.88249883706266 40.872427267784744, -73.88251247371201 40.87247544341754, -73.88252610206759 40.87252362444274, -73.88253951032243 40.872567476591804, -73.882550701306 40.87260064758473, -73.88255918466432 40.8726226965842, -73.88256334960901 40.8726335102912, -73.8825774351143 40.87266603767571, -73.8825929519734 40.872698183806754, -73.88260273138405 40.87271653581347, -73.88260986820755 40.87272992073611, -73.88262818625938 40.87276120974467, -73.88264786585552 40.872792017472676, -73.88266889519636 40.872822308788415, -73.88269125181209 40.87285204494724, -73.88270694556577 40.87287139169339, -73.8827148966071 40.87288119709309, -73.88273982369866 40.872909738204456, -73.88276598927428 40.87293762321166, -73.88280563139199 40.87297885543751, -73.88284524070659 40.87302122763496, -73.88288034684135 40.8730602580367, -73.88292615109694 40.87311341264205, -73.88296988713216 40.87316756737527, -73.88301151944214 40.87322267267574, -73.88305100184803 40.87327867717108, -73.88308830595707 40.87333553400933, -73.8831234021884 40.87339319723761, -73.88315513761621 40.87344954684068, -73.8831847626943 40.87350655255544, -73.8832122537616 40.87356417473806, -73.8832375895595 40.873622356637725, -73.88326924401966 40.87370399634983, -73.88329731338816 40.87378639153842, -73.88332178240914 40.873869440435485, -73.88334261562748 40.873953059261986, -73.88335978946326 40.87403715704675, -73.88337328864675 40.874121639224605, -73.88338310027102 40.87420641663543, -73.88338920907216 40.874291391111505, -73.88339160689436 40.8743764698949, -73.88339030336569 40.874461566548575, -73.88338934730295 40.874512235173235, -73.88338879323908 40.87454135101026, -73.88338838529923 40.874562908293875, -73.88338742922407 40.87461358232051, -73.88338647434485 40.87466425004447, -73.8833856582786 40.87470746906716, -73.88338551945469 40.87471492317086, -73.88338489405102 40.874763068058, -73.88338457785463 40.87478710357786, -73.8833842615301 40.87481121203705, -73.8833836361246 40.874859356923345, -73.88338330279326 40.87488504482182, -73.88338301190616 40.874907500909885, -73.88338238650043 40.87495564489485, -73.88338175396481 40.87500379517561, -73.88338112975147 40.875051934658465, -73.88338050433354 40.87510008404504, -73.8833801946123 40.87514951064289, -73.88337987370248 40.875201257787666, -73.88337955720381 40.87525184240585, -73.883379238332 40.87530242702119, -73.88337892656827 40.875353017046166, -73.88337860888342 40.875403600761274, -73.88337829830505 40.87545419078653, -73.8833780006879 40.87550077275055, -73.88337797943132 40.8755047754, -73.88337766173554 40.87555536451665, -73.88337734997884 40.87560594913637, -73.8833770243949 40.875656976781904, -73.88337616836196 40.87570132767025, -73.88337529733523 40.87574610987702, -73.88337443460068 40.87579089839517, -73.8833735635605 40.875835686904594, -73.88337331059537 40.87584869330249, -73.88337286237503 40.87587224061948, -73.88337269963729 40.87588047542083, -73.88337519712063 40.87591349074734, -73.88337915276554 40.875946428304196, -73.8833845607183 40.875979244861846, -73.88339141272871 40.876011910695645, -73.8833997088873 40.876044375378044, -73.88340943381301 40.87607661638106, -73.88342057690807 40.87610858956966, -73.88342742625613 40.87612587505782, -73.8834331323026 40.876140260718955, -73.8834470739587 40.876171595583656, -73.88347124616868 40.87621408702093, -73.88349541722161 40.87625657935211, -73.88351958830545 40.87629907167788, -73.88354375942018 40.87634156399828, -73.88356649830625 40.87638221066837, -73.88358923602435 40.87642286273537, -73.88361197495499 40.876463515699285, -73.88363471273813 40.876504162353825, -73.88365820390788 40.876546153291464, -73.88366069835851 40.87655116432162, -73.8836620988382 40.876554903659994, -73.88366316582236 40.8765587165022, -73.88366404510995 40.87656402936857, -73.88366427218281 40.87656985845768, -73.88366393822513 40.876574264209864, -73.88366290044502 40.87657952561683, -73.88366104574442 40.87658518961898, -73.88363651757514 40.87661172478971, -73.88363106779632 40.87661490702285, -73.8836249538898 40.87661727724615, -73.88361998352968 40.87661835191933, -73.88361429403318 40.876618863962385, -73.88360743757953 40.87661845723076, -73.88360188492705 40.87661737824858, -73.88358764853137 40.87661063994348, -73.88358269140994 40.876608218933164, -73.88354564344475 40.87659009885088, -73.88349046681823 40.87656312846757, -73.88343529737196 40.876536148159616, -73.883386099711 40.876512095943845, -73.88338012677626 40.876509172326394, -73.88332495859638 40.87648219736949, -73.88332032750822 40.876479909949715, -73.88331579865245 40.87647750556968, -73.88331138271886 40.87647497703619, -73.88330708443247 40.876472336060495, -73.88330291210566 40.87646957814856, -73.88329886689782 40.876466718609805, -73.8832949630548 40.87646375205582, -73.88329118989779 40.876460679376194, -73.88328755807714 40.87645751589006, -73.88328407709947 40.87645425260222, -73.88328074931066 40.87645090482326, -73.88327757234894 40.876447466247456, -73.88327338971708 40.87644247061074, -73.88326902340557 40.87643668235839, -73.88326651132438 40.87643294819418, -73.88326417020032 40.8764291448652, -73.88326200001767 40.87642528137642, -73.8832600149968 40.87642136674703, -73.88320519741902 40.876232014242476, -73.88314826306535 40.87604302515997, -73.88308921548332 40.875854415708865, -73.88306412293613 40.87576813881083, -73.88302111234437 40.875620253941925, -73.8829524009041 40.87538619956599, -73.88288307642806 40.8751522498737, -73.88281910351884 40.87493538873075, -73.88279001382887 40.87483560127203, -73.88275585014618 40.87471841121088, -73.88269329613907 40.87450131549378, -73.88260545985526 40.87423710026461, -73.88251087650757 40.87397423332172, -73.88240959702539 40.873712802948454, -73.88238875362988 40.8736611296757, -73.8823674881923 40.873609314591775, -73.88234622990565 40.87355749951064, -73.88232497283686 40.87350568532684, -73.88230371460689 40.87345387563983, -73.88228932157784 40.87341880223124, -73.88228244930026 40.87340206143876, -73.88227846036762 40.87339233839455, -73.88226119233246 40.873350246341275, -73.88223993421151 40.873298431238126, -73.88221866900584 40.87324661612336, -73.88219741213584 40.873194801913144, -73.88217615411429 40.873142986796786, -73.88215488899685 40.87309117797222, -73.88199099379135 40.87270072872019, -73.88197042674123 40.87265212451047, -73.88195014678188 40.872604200459385, -73.88192986801889 40.87255628721143, -73.8819095964108 40.87250836946433, -73.88188931652958 40.87246045080425, -73.88188727396117 40.87245565361024, -73.88186714284475 40.87240815112391, -73.8818655915617 40.87240259622069, -73.88186503694733 40.87239693517954, -73.88186532684365 40.872392679765674, -73.88186640912826 40.872387784915354, -73.88186877412632 40.87238203141119, -73.88187169979356 40.87237719517863, -73.88187468376604 40.872373594476464, -73.88187971242253 40.872368923384826, -73.88188479858647 40.872365269003865, -73.88188934174639 40.87236277299611, -73.88189630090858 40.87235986793743, -73.88196638981576 40.8723400235344, -73.8820276753399 40.87232281212391, -73.88209100582093 40.87230502465644, -73.88215432915197 40.87228723624636, -73.88221765243797 40.87226945410489, -73.88228098400522 40.87225166563367, -73.88234430723303 40.872233878019706, -73.88236574807146 40.8722278620996, -73.88240133404146 40.87221787592761, -73.88240886660259 40.87221605110856)), ((-73.88117301878023 40.87271074384061, -73.88118036516494 40.872710257036594, -73.88119019203198 40.872710463460876, -73.88119992808846 40.87271169904963, -73.88120698258996 40.87271323534192, -73.88121325104616 40.87271517514419, -73.88121818621354 40.87271705774342, -73.88122341930304 40.87271951336004, -73.88122837423666 40.87272228476171, -73.88123296795817 40.87272538086788, -73.88123722666396 40.872728746775756, -73.8812417587109 40.872733164735784, -73.88124574927966 40.87273787929972, -73.88124851776875 40.872742041506775, -73.88125084466733 40.87274636624784, -73.88127332328519 40.872797097705906, -73.88128325155067 40.872819586823475, -73.88129514703076 40.87284654078644, -73.8813169636894 40.87289598475555, -73.88133878038207 40.87294542781957, -73.8813605971056 40.87299487177957, -73.88138241267532 40.873044315733765, -73.8814042294653 40.8730937587841, -73.88141750508271 40.873123828942155, -73.8814260546015 40.8731431964355, -73.88144787026854 40.87319264037598, -73.88146968715593 40.87324208341261, -73.88149150407571 40.873291526444746, -73.8815133198401 40.87334097037149, -73.88153387043988 40.873390749777705, -73.88154566005203 40.87341931097561, -73.88155373357493 40.87343888238073, -73.88157394522901 40.87348784018526, -73.88159414861835 40.873536792574306, -73.8816143591536 40.87358574586722, -73.88163456259284 40.87363470365131, -73.88165477318921 40.87368365603576, -73.88167497668634 40.87373261471238, -73.88169361320804 40.87378351143124, -73.88171225924232 40.8738344117583, -73.88173089699777 40.87388531387432, -73.881749533597 40.87393621508516, -73.8817681785258 40.87398711810203, -73.88178681637967 40.87403801300373, -73.88180545306452 40.87408891420414, -73.88182409926685 40.87413981631125, -73.88184273719513 40.87419071750592, -73.88186137634624 40.87424161419589, -73.88187824911094 40.87428916375912, -73.88189512308601 40.87433671332072, -73.88191199589897 40.874384262878245, -73.88192886992233 40.87443181243408, -73.88194362495996 40.87448016395561, -73.88195838002058 40.87452851457434, -73.88197313391476 40.874576866090074, -73.88197994411044 40.87459919976832, -73.88198788900718 40.874625223007584, -73.8820026370143 40.87467357361215, -73.88201738978647 40.874721925119694, -73.88203214495286 40.8747702766274, -73.88204690014224 40.87481862723228, -73.88206230039371 40.8748705039066, -73.88207770066923 40.87492238057837, -73.88209310097038 40.87497425634709, -73.882108501294 40.875026133013776, -73.88212390046641 40.87507800337331, -73.88213930202443 40.87512988003611, -73.88215470123532 40.8751817557935, -73.882170101655 40.87523363245002, -73.88218550209874 40.87528550910394, -73.88219980661454 40.875333241489386, -73.8822141111508 40.87538097387264, -73.88222842163933 40.87542870625972, -73.88224272740301 40.875476438639815, -73.88225703200096 40.875524171016465, -73.88227134373744 40.87557190339822, -73.88228564837642 40.87561963577051, -73.882299960154 40.8756673681479, -73.88231426364773 40.87571510051459, -73.88232990229173 40.875766577570595, -73.88234554806687 40.87581806093467, -73.88236119387733 40.87586953799273, -73.8823768325924 40.87592101594144, -73.88239247845137 40.87597249299429, -73.88240812313708 40.876023976346744, -73.8824237619264 40.87607545338717, -73.88243866477073 40.87612449025239, -73.88244034404018 40.876129529294595, -73.8824412801569 40.87613619116017, -73.88244033629215 40.8761419632292, -73.88243815827866 40.876146586818905, -73.88243414317823 40.876151557026084, -73.88242927816444 40.876155459288626, -73.88242446054831 40.87615805138878, -73.88241968709272 40.87615982228837, -73.88241427278464 40.87616104773942, -73.88240753217318 40.87616158026372, -73.88236443955466 40.87615729864843, -73.8823492677898 40.87615567581085, -73.8823281286122 40.876153416545016, -73.88219554855844 40.87613623864329, -73.88206245055841 40.87612149858216, -73.88192892830658 40.87610920365963, -73.88184363596369 40.876102292465085, -73.88175808014003 40.876097454762125, -73.88167237233331 40.876094696967876, -73.881583588186 40.87609401518094, -73.8815759765322 40.87609336172031, -73.8815686703275 40.87609172974184, -73.8815624982095 40.87608946858495, -73.88155746798871 40.87608685560828, -73.88155295473173 40.876083737087505, -73.88154781727175 40.876078723298484, -73.88154430743366 40.87607373909496, -73.88154175036426 40.87606735110759, -73.88154041144232 40.876057765835974, -73.881537520567 40.876026323218994, -73.88153409901211 40.87598910342427, -73.88153093662615 40.875955574997, -73.88152893102081 40.87592199732964, -73.88152809401613 40.87588839384698, -73.88152846493986 40.875846673701574, -73.88152883586152 40.8758049544564, -73.8815292139024 40.875763234317674, -73.88152958363519 40.875721515971115, -73.88153002964916 40.87567094229968, -73.88153048277887 40.87562036953558, -73.88153092784422 40.8755696616895, -73.88153137362512 40.875519217686744, -73.88153182556644 40.875468644920026, -73.88153227276341 40.8754180712475, -73.88153272471138 40.87536749397742, -73.88153316953267 40.87531692120201, -73.88153361672754 40.87526634752806, -73.8815340698502 40.87521577566072, -73.881534514671 40.87516520198343, -73.88153535425344 40.87511412353685, -73.88153618551901 40.875063051384664, -73.88153701678489 40.87501197833156, -73.88153785635379 40.874960905286464, -73.88153868762674 40.87490982682944, -73.88153876838494 40.874905116456915, -73.88153952719146 40.87485875468384, -73.88154035845223 40.874807681628795, -73.88154083009078 40.874754702770375, -73.88154121982114 40.8747104090394, -73.88154130290532 40.874701729315596, -73.88154177335446 40.8746487513554, -73.88154196090697 40.87462737935241, -73.88154223906076 40.87459577158886, -73.8815427106947 40.874542793628855, -73.88154219958818 40.874493405808096, -73.88154168729446 40.87444401888615, -73.88154117619105 40.87439463016397, -73.88154066390045 40.87434524234066, -73.88153923904426 40.87430067659715, -73.88153740511274 40.87427064612067, -73.88153425187728 40.8742406827268, -73.88152978047935 40.87421081253077, -73.88152399796492 40.87418107696217, -73.88151690428909 40.87415150213489, -73.88150852311722 40.87412212319207, -73.88149884252857 40.874092973439296, -73.88148788975045 40.874064086222205, -73.88147567065337 40.8740354966656, -73.88146219943926 40.87400722459438, -73.88144749026013 40.873979317748535, -73.8814315656203 40.87395179686201, -73.88141443377383 40.87392469075842, -73.88139611481834 40.87389803907933, -73.88137664192189 40.873871869773446, -73.88135602691955 40.87384619906121, -73.88133428515219 40.873821072882635, -73.88131146166172 40.873796512895176, -73.88126947733736 40.87375244571495, -73.88123077057944 40.87371051695106, -73.88119206387998 40.87366858277093, -73.88115539919421 40.873627791599695, -73.88110602690008 40.873570377810054, -73.88105924186087 40.87351172849323, -73.88101508783988 40.873451913935575, -73.8809736157256 40.87339099992826, -73.88093685753749 40.873332360901166, -73.88090259573971 40.87327286537175, -73.88087085396417 40.87321256289347, -73.88084166766335 40.873151526444666, -73.88081506758284 40.873089807386805, -73.88079108324443 40.87302747779132, -73.88077884402536 40.87299318173648, -73.88076869148507 40.87292714560423, -73.88077231459994 40.87292175812083, -73.88077629173551 40.872917411968224, -73.88078163335086 40.87291293125124, -73.88078693276523 40.87290949145556, -73.8807987774396 40.87290314083682, -73.88082340228674 40.87289004614765, -73.88084321449854 40.87287950477285, -73.88089405549982 40.87285235619101, -73.88094489645798 40.872825208487114, -73.8809957385625 40.872798059861445, -73.88104657825296 40.872770911210786, -73.88109741908659 40.8727437634393, -73.88114549500428 40.87271839936761, -73.88115193433894 40.87271566311045, -73.88115874394671 40.87271350624861, -73.88116698255111 40.872711620104035, -73.88117301878023 40.87271074384061)), ((-73.88142147986369 40.868740340019876, -73.88142842580355 40.86873999236453, -73.881437154725 40.868740923434885, -73.88144483623326 40.86874317444657, -73.88145067443425 40.868746046702825, -73.88145567254425 40.86874972313332, -73.88146053557983 40.86875530936312, -73.88146333855441 40.86876066925464, -73.88147868212357 40.8688146873713, -73.8814937290082 40.868868126165964, -73.88150877712248 40.868921554153474, -73.88152382405549 40.86897499294316, -73.88153887221016 40.869028425428176, -73.8815539192011 40.86908185880996, -73.88156896740254 40.86913529219056, -73.88158401562971 40.86918872466816, -73.88159906269325 40.86924215804253, -73.88161411096719 40.869295591415636, -73.88162915807911 40.86934902478506, -73.88164420640301 40.869402457252754, -73.88165700209801 40.869447889260925, -73.88165897416854 40.86945491149876, -73.88167430193396 40.869509323980466, -73.8816893491426 40.86956275733999, -73.881704154729 40.86961532958152, -73.88171944482023 40.869669623152355, -73.88173449328771 40.86972305650571, -73.8817495417793 40.86977648985655, -73.88176458911046 40.86982992230321, -73.88177963765041 40.8698833556491, -73.88179468502832 40.869936788991325, -73.88180973361827 40.86999022143177, -73.88182478104454 40.87004365476901, -73.88183982967165 40.87009709350792, -73.8818548771559 40.870150521437274, -73.88186992583297 40.87020395927076, -73.8818842927528 40.87024920825499, -73.88189616238976 40.87028658350451, -73.88189866682251 40.87029445004042, -73.88191435126313 40.87034395518024, -73.88191523976147 40.87034863233015, -73.88191539264615 40.87035338797038, -73.88191488811016 40.870358278011196, -73.88191352436172 40.87036337518576, -73.88191140523433 40.87036832480761, -73.88190823377575 40.87037334629209, -73.88190283969283 40.87037947400411, -73.88189644017376 40.87038464977018, -73.88189189536163 40.870387484361196, -73.88187349911368 40.87039743754891, -73.88183779546931 40.8704167381007, -73.88182910140111 40.870421433353634, -73.88177476129178 40.87045099028237, -73.88174633019351 40.870466458570256, -73.8817204318007 40.870480552599204, -73.88166609395921 40.87051011398127, -73.88161175489115 40.87053967083397, -73.88155741695144 40.87056923306503, -73.88150308609217 40.870598788974306, -73.8814487456833 40.87062835115149, -73.88139440879614 40.87065790700312, -73.88133521690453 40.87068924080527, -73.88127601666469 40.87072056826494, -73.88126216353733 40.8707278947994, -73.8812181143393 40.870751116305975, -73.88121279400502 40.87075309460713, -73.88120492046814 40.870754620935514, -73.88119644828171 40.870754589701214, -73.88118988201212 40.87075345282691, -73.88118472498962 40.870751666349555, -73.88117841447533 40.87074814074007, -73.88117359388343 40.870743960207854, -73.88115204444645 40.87071536999585, -73.88113290025453 40.87068772236802, -73.88111494788893 40.87065962121767, -73.88109820510532 40.870631087274916, -73.88108269199618 40.870602161082964, -73.88106841562464 40.87057287236573, -73.88105539136374 40.87054324725379, -73.8810436488184 40.870513313693145, -73.88103827645328 40.870498631080764, -73.88102488752486 40.87046200158361, -73.88100618718254 40.870409789944624, -73.88100454414376 40.87040519575514, -73.8809874868808 40.870357571998724, -73.88096878779149 40.87030535585145, -73.88095009346841 40.870253144208036, -73.88093139325483 40.870200926251556, -73.88091269306896 40.870148709192, -73.88089375176467 40.87009933112287, -73.88087480931353 40.87004994674552, -73.88085586689051 40.870000562364616, -73.8808369244973 40.8699511770797, -73.88081797501313 40.86990179268436, -73.8807990326649 40.869852413695746, -73.88078009272694 40.86980302930311, -73.8807611504446 40.86975364490446, -73.88074218373535 40.869713266271205, -73.88073817059339 40.86970472368341, -73.88058577305594 40.86938194053514, -73.88058209144747 40.869374421240416, -73.88056348495935 40.86933636350888, -73.88056091080372 40.869331099284736, -73.88055454397428 40.8693180743187, -73.88053944880296 40.869291216903164, -73.88050932588538 40.86923762820418, -73.88052338699134 40.869229958887246, -73.88054044982431 40.86922065108382, -73.88056426415002 40.86920766816469, -73.88057905905734 40.86919959528065, -73.8806347381914 40.86916923075398, -73.88069041727303 40.869138867100745, -73.88074609037426 40.869108502513875, -73.88080176816797 40.86907813880536, -73.88085717319915 40.86904837001177, -73.8809125769945 40.86901860119019, -73.88096798192485 40.86898883324357, -73.881023385621 40.868959064368475, -73.88107878925626 40.86892930177009, -73.88113419404104 40.868899531942176, -73.88118959640056 40.86886976388609, -73.88124736566037 40.86883908694375, -73.88128025957386 40.8688211614281, -73.88131241461407 40.86880248143334, -73.88132581711125 40.86879418730153, -73.88134380110249 40.8687830595364, -73.88137439645413 40.868762921828896, -73.8813945787612 40.86875164503346, -73.88139877622527 40.868749304473006, -73.88140796650646 40.86874429458991, -73.88141500543264 40.86874169310564, -73.88142147986369 40.868740340019876)), ((-73.88177701401756 40.873528838738146, -73.88173530158193 40.8734272064596, -73.88173690069218 40.873427888867916, -73.8814100501134 40.87268364972724, -73.88140439849883 40.87267108299981, -73.88139962598008 40.872660482042306, -73.88138157668448 40.87262052050531, -73.88137999260005 40.87261608306873, -73.88137937110793 40.87261202392645, -73.88137955606872 40.87260742531982, -73.88138063891542 40.87260290237668, -73.88138264555992 40.872598559580375, -73.88138534063522 40.872594666835624, -73.88138868027762 40.87259120788849, -73.8813924306296 40.872588271646904, -73.88139870273194 40.87258483822562, -73.88144833129246 40.872560127576996, -73.88149888043942 40.872534715470884, -73.88154735406644 40.872510342177335, -73.88159582647326 40.87248596796158, -73.88163339066227 40.872467080022, -73.88164665607661 40.87246088205529, -73.8816522791336 40.87245951637758, -73.88165893101512 40.87245864072011, -73.88166566952926 40.87245841260264, -73.88167155633163 40.872458827460996, -73.88167973657879 40.872460377485645, -73.88168651480846 40.87246249698225, -73.88169179898392 40.87246490850613, -73.8816982783178 40.87246900156735, -73.88170427376035 40.872474364721946, -73.88170845503632 40.872479916019806, -73.8817108831656 40.87248469650295, -73.88172535258087 40.872518557109856, -73.88173315444814 40.87253676038463, -73.88175494633334 40.87258758649854, -73.88177673824065 40.872638418911265, -73.88179852306513 40.872689250411646, -73.88182031505026 40.872740076511796, -73.88184210705913 40.87279090801027, -73.881863891982 40.87284174039738, -73.88188568406707 40.872892566483785, -73.88190648500613 40.872942407317055, -73.88192728715947 40.87299224994826, -73.88194808935843 40.87304208447088, -73.88196889038944 40.873091926191975, -73.88198969264911 40.87314176160672, -73.8820104937425 40.8731916033194, -73.8820312960534 40.87324144502915, -73.88205209722034 40.87329128043004, -73.88207289959355 40.873341122131386, -73.88209395244795 40.87339155390454, -73.88210785259287 40.87342487898559, -73.88211173077723 40.87343415798157, -73.8821145032585 40.87344079921683, -73.88213530572686 40.87349064000505, -73.8821561070386 40.87354048168839, -73.88217690957732 40.87359031796582, -73.88219771095295 40.87364015874023, -73.88228375585902 40.87386484463272, -73.88236791199776 40.8740899454523, -73.88245017107286 40.874315446786746, -73.88246535116122 40.87436648573315, -73.88248053720449 40.87441752468313, -73.88249572564526 40.874468562732574, -73.88251091292146 40.87451960167882, -73.88252017015829 40.87455297240336, -73.88252941910015 40.874586343118494, -73.88254337907834 40.874632400207894, -73.88255733788962 40.874678457293996, -73.88257129791762 40.87472450807583, -73.8825852567691 40.87477056425733, -73.88259921564789 40.87481661593429, -73.88261317572282 40.8748626730133, -73.88262712752228 40.87490872467888, -73.88268862361318 40.87511767982499, -73.88275065529629 40.87532654002238, -73.88281322612589 40.875535310676746, -73.88287392780988 40.87573726629697, -73.8829337718565 40.87593937859289, -73.88299274167969 40.87614163043984, -73.88300579127657 40.87618763610928, -73.88305092955885 40.87634686117211, -73.88304864602571 40.87635281648833, -73.88304432236711 40.87635651671539, -73.88303730486552 40.87635865636741, -73.88303071358045 40.87635859385676, -73.88298971907021 40.876344420937265, -73.88297252761413 40.876338338717055, -73.88291682733164 40.876318624561726, -73.88286112709018 40.876298905877036, -73.8828054268833 40.8762791862649, -73.88274972789583 40.876259466627, -73.88272973013503 40.87625239098217, -73.88269177702976 40.876239194474834, -73.88268410192836 40.876236831896065, -73.88267585228486 40.87623332151063, -73.8826700886206 40.87623016214103, -73.88266566406035 40.87622716712099, -73.88266116348888 40.87622220355611, -73.88265784671415 40.87621734475091, -73.88265284563931 40.87621432032858, -73.882649390386 40.87620860591839, -73.88261206665756 40.87608622942035, -73.8825862976385 40.876001740103135, -73.8825676335754 40.87593950187173, -73.88252499949976 40.875797299286205, -73.88246395299385 40.87559299916121, -73.88240282616349 40.87538871512288, -73.88234163325339 40.87518444268322, -73.88227478937023 40.874968590459936, -73.88220926316025 40.87475250360601, -73.88214506408275 40.87453619293918, -73.88206816735882 40.87430566494517, -73.88198731697685 40.87407591897327, -73.88190250934242 40.87384699643405, -73.88181376104556 40.87361892885297, -73.88177718292569 40.87352925133501, -73.88177701401756 40.873528838738146)), ((-73.88030063173679 40.86935144269032, -73.88034328064792 40.869328181355705, -73.88037337378458 40.86938178807615, -73.88038700324574 40.86940835673759, -73.88038982843726 40.86941386255693, -73.88039183563946 40.86941776555766, -73.88041068168378 40.86945449714373, -73.88041230279816 40.869458714014776, -73.88041411735907 40.869462880658816, -73.880416124169 40.8694670033781, -73.88041830782804 40.869471070450224, -73.88042067783898 40.86947507468124, -73.88042322589504 40.86947901786336, -73.88042595082129 40.86948289369199, -73.88042885381373 40.869486696765435, -73.88043192064734 40.86949042166599, -73.88043515014883 40.86949406118855, -73.88043854943402 40.86949761624088, -73.8804431917015 40.869502597155225, -73.88044760956306 40.869507694, -73.88045181371089 40.869512897781426, -73.88045578042845 40.869518203972525, -73.88045951803709 40.86952360267658, -73.88046301822507 40.86952909838737, -73.880466281015 40.86953467849817, -73.88046929219476 40.869540330387345, -73.88047205886866 40.869546061266284, -73.88047457395004 40.86955185401832, -73.88047684336354 40.869557712251556, -73.8804989006679 40.86960828676982, -73.8805209651248 40.8696588603903, -73.88054302960556 40.86970943940904, -73.88056509412803 40.86976001392066, -73.88057611868801 40.869785302967685, -73.88058715155849 40.869810592922654, -73.88060921614964 40.86986116652443, -73.8806312807631 40.869911746424954, -73.88061562003439 40.8699566601393, -73.8806337597353 40.87000309192584, -73.88065190894983 40.87004952461949, -73.88067005464069 40.87009595190327, -73.88068820272125 40.87014238368869, -73.88070635082559 40.87018881637134, -73.88072723060263 40.87024334096954, -73.88074566583006 40.870298374515, -73.880753069378 40.87032407582637, -73.88076164357624 40.87035384855832, -73.880775123611 40.87040970272624, -73.8807861084122 40.870465874888374, -73.88079458149697 40.870522292088815, -73.88080052991194 40.87057889758388, -73.88080394547768 40.87063561842593, -73.88080482947404 40.87069239878614, -73.88080317964317 40.87074917112554, -73.88079899728741 40.87080586700826, -73.88079556047425 40.870827829991406, -73.88079227127947 40.87084883860837, -73.88078553694778 40.870891816502606, -73.88078351492689 40.87090474273678, -73.88077868113037 40.87093638453446, -73.88077788946477 40.870940594403926, -73.88077606628745 40.87094516790575, -73.88077227193794 40.87095084607218, -73.88076753879726 40.87095545708928, -73.88076309914389 40.870958476344555, -73.88075694777994 40.87096146051284, -73.8806952279692 40.87099379721976, -73.88068882313902 40.87099721966058, -73.8806373303349 40.871024754695846, -73.88057943503051 40.871055705841705, -73.88052153135547 40.87108666415368, -73.88046363594172 40.871117616141575, -73.88040573927805 40.871148573502, -73.88035352073697 40.87117649486831, -73.88034624164877 40.87118054672594, -73.88034121509551 40.8711833798556, -73.88033588562693 40.87118578583909, -73.88033112205189 40.871187507136945, -73.8803259960185 40.87118892909629, -73.88032017291677 40.87119009819552, -73.88031502570873 40.87119076192057, -73.88030981983579 40.8711910653889, -73.88030382101175 40.87119100243591, -73.88029626947832 40.87119021928161, -73.88028760913974 40.87118792305528, -73.88028030571382 40.87118506452986, -73.88027352900383 40.87118153928803, -73.88026651128864 40.87117680443879, -73.8802610985246 40.871172105473036, -73.88025770643493 40.8711684648776, -73.88025143318313 40.871148205466596, -73.88024224235059 40.871116403258874, -73.88022741397697 40.871065083399934, -73.8802125927227 40.87101377525239, -73.88019775607968 40.87096246168349, -73.88018293488254 40.87091114722772, -73.8801681065891 40.87085983366271, -73.88015330809678 40.87080779433194, -73.88013851080254 40.87075576130338, -73.8801237135331 40.87070372737199, -73.88011812136709 40.870684075589196, -73.88010890798135 40.870651694330064, -73.88009411076635 40.87059965589146, -73.88008779723594 40.87057745047025, -73.88007931356638 40.87054762195292, -73.88007237412937 40.870523207880545, -73.88006451521304 40.870495582607795, -73.88005700290985 40.87046914994246, -73.88004971805776 40.870443549564975, -73.88003492092722 40.87039151561927, -73.88003357360463 40.87038677044112, -73.88002012263202 40.87033948257043, -73.88000532555755 40.870287443217045, -73.8799905284949 40.87023541016467, -73.87997573145536 40.8701833771099, -73.87996093445204 40.87013133684883, -73.87994714349655 40.870082532189684, -73.87993335612335 40.8700337257312, -73.87991956758248 40.86998492016987, -73.87990577907159 40.86993610920361, -73.87989199057445 40.86988730183713, -73.87987820209267 40.86983849717006, -73.87986441363276 40.86978969160049, -73.87985062400844 40.86974088512704, -73.87984170008922 40.869709291169926, -73.87983683558902 40.869692079553246, -73.87982273779933 40.86964249743333, -73.87982141156287 40.86963857261983, -73.87982050893419 40.86963458071075, -73.87982009511374 40.86963054518679, -73.87982028922168 40.86962487860913, -73.87982111287123 40.86962006184866, -73.87982277315069 40.869615060458685, -73.87982520217929 40.869610021148205, -73.87982805581554 40.869605673855744, -73.87983149025993 40.869601573902116, -73.87983475463477 40.86959837245973, -73.87983838749821 40.86959540913019, -73.87984233192584 40.869592675749715, -73.87984747709616 40.869589791436674, -73.87985414740713 40.8695864485613, -73.87986186257874 40.869582566479714, -73.87988178452973 40.86957254225971, -73.87990675493563 40.869559976706384, -73.87996312979874 40.86953027688981, -73.88001950461151 40.86950057704559, -73.88007587937228 40.869470878074154, -73.88010185171258 40.86945719511183, -73.88013224696694 40.869441178167094, -73.88018862163024 40.86941147733931, -73.88024499623023 40.86938178368765, -73.88026829179135 40.86936907674179, -73.88030063173679 40.86935144269032)), ((-73.88190941752269 40.87048229769663, -73.88191514268131 40.87048212345753, -73.88192074698132 40.87048253891493, -73.88192758803717 40.87048390655413, -73.88193469995441 40.870486387474706, -73.88194102362387 40.87048986172856, -73.8819459705444 40.87049372898783, -73.88194953879575 40.870497734412396, -73.8819534304385 40.87050466945909, -73.8819613501421 40.87053190655367, -73.88196951036105 40.87056064951152, -73.88198460324222 40.87061401533198, -73.88199968902055 40.870667386545584, -73.88201478194057 40.870720757764, -73.88202986657944 40.87077412987193, -73.88204495361668 40.870827501079305, -73.88206004661896 40.87088086688732, -73.88207513133374 40.87093423718683, -73.88209022437329 40.87098760929329, -73.88210530913486 40.871040980488274, -73.88212039747943 40.871094351684455, -73.88212989686774 40.87112792531906, -73.882135489407 40.87114772288172, -73.8821505754371 40.87120108866757, -73.8821650725439 40.871252092767115, -73.88217956256497 40.87130309145416, -73.88218159384991 40.87131023170512, -73.88219405972748 40.87135408924566, -73.88220855097926 40.87140508792936, -73.88222304817505 40.871456092019734, -73.8822375394713 40.871507090698856, -73.88225203553485 40.87155808938051, -73.8822665256893 40.87160908805382, -73.8822810241603 40.87166009213625, -73.88229551554707 40.87171108990568, -73.88231001169956 40.87176208857818, -73.88232450193178 40.871813093545754, -73.88233752799783 40.87185891830587, -73.88233900050288 40.87186409131561, -73.88235349079072 40.87191508997518, -73.8823679894047 40.87196608864093, -73.88238247854113 40.87201709269762, -73.8823847528601 40.87202501481621, -73.88239894128127 40.87207502352345, -73.88239946683427 40.87207970119877, -73.8823990587676 40.87208438872843, -73.88239740450526 40.872090087137735, -73.88239426144456 40.87209579483558, -73.88238932018321 40.87210138904009, -73.8823836479402 40.872105773142614, -73.88237679913505 40.87210935731197, -73.88237141937118 40.87211135901822, -73.88232429217267 40.87212467242571, -73.88231122944542 40.872128357412635, -73.88227441501456 40.87213873581735, -73.8822477293623 40.87214625288693, -73.88218422807152 40.872164141121104, -73.88212072674497 40.87218203022077, -73.88205722539384 40.87219991388255, -73.88199372400055 40.87221780201173, -73.8819308373718 40.87223551874157, -73.88187035823718 40.87225225276671, -73.8818625297765 40.87225368913697, -73.88185499811702 40.87225432797736, -73.88184606674936 40.87225423959001, -73.88183832296036 40.872253422121524, -73.88183183031161 40.87225215568917, -73.8818265752501 40.872250723933405, -73.88182150588074 40.87224893667436, -73.88181664583644 40.87224684616476, -73.88181199876725 40.87224440108043, -73.8818077304997 40.87224174386842, -73.88180375225478 40.8722387663793, -73.88179876851152 40.87223419039274, -73.88179451267435 40.872229212632995, -73.88179111516044 40.87222387465626, -73.88178882822308 40.87221908261285, -73.88178232078691 40.87220144797488, -73.8817697488294 40.87216727594702, -73.88175157574267 40.872117493604904, -73.88173340387101 40.87206771036022, -73.88172325606284 40.87203990906889, -73.88171523794516 40.87201793432222, -73.88169706612632 40.871968151971394, -73.88167889314042 40.87191837411851, -73.881660721376 40.87186859176107, -73.8816425484429 40.87181881480202, -73.88162437554664 40.871769032436745, -73.88160621097187 40.8717192554796, -73.88158819926225 40.87166692128713, -73.88157018758255 40.87161458619084, -73.88155217473373 40.87156225739346, -73.88153416310917 40.87150992319105, -73.88151615744428 40.8714575889914, -73.88149814586512 40.871405261085805, -73.88148013314093 40.87135292597176, -73.88146212162175 40.8713005962586, -73.8814574871635 40.87128712918577, -73.88127845677487 40.870909271886305, -73.88125178259888 40.87086474136487, -73.88124982083916 40.87085991722653, -73.881248829749 40.87085491939221, -73.88124878094706 40.87084903374467, -73.88125025188714 40.87084240225508, -73.88125234826018 40.870837609307436, -73.88125493425525 40.87083364981611, -73.88125913251147 40.87082894908017, -73.88126616243771 40.87082354257269, -73.88128929609408 40.870810665965095, -73.88132286565622 40.87079224136619, -73.88135264787374 40.870776256791174, -73.88138010278269 40.8707615232971, -73.88143733867642 40.87073080159624, -73.8814945673917 40.870700084361964, -73.88155180318127 40.87066936170352, -73.88160903891794 40.870638639016505, -73.88166626747463 40.87060792169658, -73.88172350310393 40.87057719985292, -73.88178073867235 40.87054648248317, -73.88183796707996 40.87051575967465, -73.88187091333876 40.87049812670793, -73.88189366069423 40.87048622121113, -73.88190246297923 40.87048338107191, -73.88190941752269 40.87048229769663)), ((-73.87998996014367 40.86840298739, -73.88004409911379 40.868372656661634, -73.88005587332451 40.86839115235046, -73.88129540646091 40.86772603758195, -73.88150634244025 40.86836467901971, -73.88108809054549 40.86862940602273, -73.88086048975227 40.86875712811648, -73.88031804592507 40.86904743119764, -73.87998996014367 40.86840298739)), ((-73.88071888538926 40.871081185333175, -73.88072643371788 40.87107978296932, -73.88073477300527 40.87107985822469, -73.88074408371607 40.87108198759866, -73.88075140843151 40.871085547597836, -73.8807562804023 40.871089521088, -73.8807594500903 40.871093492818986, -73.88076192840205 40.87109932964905, -73.88076501327022 40.871129434387676, -73.880767750826 40.871160055648, -73.88077265076925 40.87121459163111, -73.88077755190845 40.8712691267142, -73.88078245186777 40.87132366269585, -73.88078667615363 40.87136733808012, -73.88079106333802 40.871410804718714, -73.8807990582003 40.87147465765396, -73.88080991836723 40.87153826141042, -73.88082362972469 40.87160155293858, -73.88084017819867 40.871664446676405, -73.88085954967457 40.87172687957381, -73.88087618124156 40.871776536201914, -73.88089293140756 40.8718262226657, -73.8809096816115 40.871875901922735, -73.88092643064124 40.871925588379554, -73.88094318208148 40.871975267632045, -73.88095191061974 40.8720011620938, -73.88095992524121 40.87202494777358, -73.88097667553393 40.87207463332249, -73.88099342703798 40.87212431886979, -73.88101017501789 40.87217399900758, -73.8810269265704 40.872223685449576, -73.88104860401045 40.87227579297821, -73.88107028977878 40.87232790591373, -73.88109196846177 40.872380019737854, -73.88111364599409 40.87243213265568, -73.8811229881861 40.872454587866756, -73.88113533187243 40.87248424107509, -73.88115023324849 40.872519843744904, -73.88115956133117 40.8725422422073, -73.88116121756498 40.87254811780206, -73.88116188891907 40.87255347550192, -73.881161859094 40.872557551984464, -73.88116134175999 40.87256159734836, -73.88116039268527 40.87256560444713, -73.88115896450202 40.87256952640649, -73.88115622299989 40.87257483016431, -73.8811521094176 40.87258054223139, -73.8811477024177 40.8725851526982, -73.88114257142009 40.87258930136884, -73.88113683981786 40.87259297756443, -73.88111031335485 40.87260682857352, -73.88108451962366 40.87262023098761, -73.8810298842338 40.872648539174165, -73.88097524997404 40.87267685273882, -73.88092061448141 40.87270516627625, -73.88086598012859 40.87273347978889, -73.88081505789499 40.87276098757002, -73.8807866306942 40.872776253010336, -73.88076669274615 40.87278680054911, -73.88075880866793 40.872789434437195, -73.88075098528827 40.87279063480916, -73.88074416671238 40.872790504395944, -73.88073689684066 40.87278933255079, -73.88073173106636 40.87278771443636, -73.88072506432295 40.87278428478773, -73.88071947407462 40.8727798999322, -73.88071585307998 40.87277551080854, -73.88071358088467 40.872771130282906, -73.8807105026383 40.87276111006267, -73.88069774741669 40.87271758885597, -73.88068289566245 40.872666342887065, -73.88066804393274 40.872615096015295, -73.88065319222265 40.8725638509421, -73.88063834054036 40.87251260316504, -73.88063036350785 40.8724850912807, -73.88062348176003 40.87246135717923, -73.88060863012024 40.872410111198406, -73.88059377850657 40.87235886341421, -73.88057892809728 40.87230761833032, -73.88056409289892 40.87225584287178, -73.88054926246714 40.87220406831618, -73.8805471357883 40.87219662357349, -73.88053443444072 40.8721522883578, -73.8805196064293 40.87210051289941, -73.88050477725311 40.872048738337924, -73.88049856808476 40.872027057137956, -73.88048994217836 40.87199695836496, -73.88047511542248 40.87194518290066, -73.88046028631557 40.871893408332, -73.88044545724146 40.87184162835802, -73.88043062936862 40.871789852885335, -73.88042446266131 40.87176833471281, -73.88041579439958 40.871738078303366, -73.88040096538505 40.871686303725134, -73.88038613759119 40.87163452284235, -73.88037130981071 40.87158274736007, -73.8803570953444 40.87153163707223, -73.88034287971362 40.87148052678092, -73.88032867359483 40.87142941649724, -73.8803144579997 40.871378310703925, -73.88031186854114 40.87136899335886, -73.88029956118481 40.87132409031038, -73.88029917215952 40.87131812056451, -73.8803000552175 40.87131258437289, -73.88030195996598 40.87130753190321, -73.88030410066986 40.87130385922761, -73.8803068602515 40.87130038260001, -73.88031012471603 40.87129716493638, -73.88031566343749 40.87129318511616, -73.88034095410538 40.87127963106727, -73.88037321088066 40.87126257592887, -73.88038557518894 40.87125605659763, -73.88043038023142 40.87123241566506, -73.88048755665756 40.87120224997721, -73.88054472591422 40.87117208425349, -73.8805702547662 40.87115862044964, -73.88060190341155 40.871141924813315, -73.88065907137829 40.871111759031386, -73.88069828954787 40.87109108022865, -73.88071332765992 40.87108322009661, -73.88071888538926 40.871081185333175)), ((-73.88338173395903 40.87665749336453, -73.88339040087342 40.87665650708271, -73.88339785819923 40.87665658845759, -73.88340463185243 40.876657533609944, -73.88341070218463 40.876659046259405, -73.88341571960524 40.87666090633387, -73.88345446319146 40.87667952884146, -73.88349561875754 40.876699457677816, -73.88353676604376 40.87671938649103, -73.88355211290724 40.876726794085, -73.88359218048666 40.87674613106861, -73.883647594982 40.87677287111702, -73.88370300952354 40.87679961023822, -73.88375842291224 40.87682635563489, -73.88379092113702 40.87684256563362, -73.88381122323013 40.87685284533683, -73.88382147139951 40.876858077584885, -73.88382775992777 40.87686169757431, -73.88383370028122 40.876865644090145, -73.88383926285107 40.87686988828697, -73.88384318858624 40.87687325376061, -73.88384684710529 40.876876781953506, -73.88385136331254 40.876881699562254, -73.88385542120194 40.87688683552822, -73.88385899588806 40.87689217361754, -73.88386137329229 40.87689629034044, -73.88388160028293 40.87693328563808, -73.88389996797278 40.876966368241455, -73.88392677596501 40.87701345561817, -73.88395133085395 40.87705659478363, -73.88395358279939 40.87706054838997, -73.88398038967337 40.8771076402547, -73.88400719896433 40.87715472851322, -73.884034007099 40.877201821266326, -73.88406081528265 40.877248907709415, -73.88408762349329 40.877296000449256, -73.88411443055553 40.87734309318131, -73.88414123885154 40.87739018050496, -73.88416805429434 40.87743727323208, -73.88419486265849 40.877484365044914, -73.8842216710684 40.87753145234869, -73.88424848069326 40.87757854504994, -73.88427528799275 40.87762563233927, -73.88430307847253 40.87767429376015, -73.88433087611908 40.87772295067858, -73.88435867499425 40.87777160669064, -73.88438646560546 40.87782026268724, -73.88441426337562 40.87786891868381, -73.88444206118491 40.877917575573754, -73.88446985191815 40.87796623154899, -73.88449765099674 40.8780148875254, -73.88452544774172 40.87806354439279, -73.88454265262096 40.87809366221707, -73.88455323858761 40.878112205749524, -73.88458103778825 40.87816086170456, -73.88461006554574 40.878211220802946, -73.88461354215292 40.87821640928843, -73.88461552076538 40.878219991606656, -73.88461779373091 40.87822486731981, -73.88461964279543 40.87822995062179, -73.88462098307498 40.8782349325605, -73.88462187701049 40.87824006533487, -73.88462229751795 40.878245231854514, -73.8846220858662 40.878252341895575, -73.88462086356367 40.87826004704926, -73.88461928526694 40.87826574555994, -73.88461737367733 40.87827071254115, -73.88461565655457 40.878274370407304, -73.8846136655134 40.878277948756654, -73.8846094619679 40.87828419574103, -73.88460430405875 40.87829073352905, -73.88459857004355 40.878296994290984, -73.8845922777914 40.878302935721656, -73.88458547003427 40.87830854525693, -73.88457817294285 40.87831378240089, -73.88457241254504 40.87831746954069, -73.88456638565768 40.87832089797356, -73.88456015151283 40.87832411818612, -73.884553695991 40.87832706262761, -73.88454480256948 40.87833061245919, -73.88453561574346 40.878333689240435, -73.88452617349631 40.87833628220334, -73.8845189514655 40.87833791656652, -73.88451161727485 40.87833923564619, -73.88450172875757 40.878340569278464, -73.8844917438446 40.87834139133624, -73.88448170882403 40.87834169105999, -73.88447170317957 40.878341471230776, -73.88446166997564 40.878340725488144, -73.8844542280813 40.87833984726587, -73.884441967743 40.878337896239906, -73.8844297969152 40.87833564003686, -73.8844161525663 40.87833271509521, -73.88440394619128 40.87832975197083, -73.88439394478888 40.87832709361782, -73.88438226479744 40.878323664565656, -73.884370732419 40.878319948404574, -73.88435936426163 40.87831594605171, -73.88434818285734 40.87831166293265, -73.88433717751003 40.87830710984257, -73.88432638025074 40.8783022877141, -73.88431579936695 40.87829720646099, -73.88430543367863 40.878291862480154, -73.88429530333887 40.87828626479676, -73.88428655875421 40.87828132045513, -73.88427802928953 40.878276156609495, -73.88426973510099 40.87827078048394, -73.88426168092626 40.87826519658585, -73.88425387030733 40.87825941482409, -73.88424632695626 40.87825344422738, -73.88423904257301 40.87824728208598, -73.88423203374828 40.87824093922249, -73.88422530521333 40.87823442374604, -73.88421886645152 40.87822774016866, -73.8842127162607 40.878220897494074, -73.88420687834349 40.878213910153896, -73.88420135151497 40.87820677724651, -73.8841961357657 40.87819950417485, -73.8841912381857 40.87819210715491, -73.88418667419636 40.87818458710266, -73.88418243664938 40.87817696112025, -73.88417853266623 40.878169227413835, -73.88411626460427 40.878037439727066, -73.8840512264222 40.87790642454035, -73.88399531089814 40.87780106798428, -73.88393561721179 40.87769690975084, -73.88387219625174 40.877594030028824, -73.88380509179223 40.87749250629829, -73.88370905594765 40.87734794786756, -73.88369223002054 40.87732261819139, -73.88365664879905 40.87726538692516, -73.88358525941464 40.87715054862542, -73.88350104540436 40.87700469622824, -73.8834232417015 40.87685680973463, -73.88335095401402 40.876705388040236, -73.8833485125597 40.87669993311646, -73.88334731371127 40.87669487836487, -73.88334715230253 40.876689504988626, -73.88334809557497 40.876684030073356, -73.88334986667034 40.87667937814055, -73.88335287451633 40.87667440598347, -73.88335723832041 40.87666946401241, -73.88336340745813 40.876664697660004, -73.88337064979875 40.87666086619813, -73.88337640732087 40.87665877477951, -73.88338173395903 40.87665749336453)), ((-73.88532132833873 40.87930837274671, -73.88533023926301 40.879307796283726, -73.88533823624232 40.879308833486576, -73.88534469044272 40.87931081827029, -73.88535085409664 40.87931410757173, -73.88539183390009 40.87934160684636, -73.88542982879781 40.8793670014048, -73.88545820080502 40.8793882324507, -73.88548656571189 40.87940946348247, -73.88550889069525 40.87942927204839, -73.88553038431397 40.879449597565745, -73.8855510335405 40.87947042651475, -73.88557081587614 40.879491733659975, -73.88558971475102 40.879513495572674, -73.88560770290047 40.87953569871893, -73.88562477088377 40.87955831337376, -73.88564089974248 40.87958132511098, -73.88565453682747 40.87960176078327, -73.88566724556732 40.87962253231659, -73.88567902955917 40.87964361720264, -73.88568985680632 40.879664993798244, -73.88569972971955 40.87968663959398, -73.88570863055139 40.87970852575673, -73.88571655460326 40.87973062436715, -73.88572347698742 40.87975291919185, -73.88572940843792 40.87977537692368, -73.88573433119166 40.879797977734476, -73.88574129347978 40.8798405533802, -73.88574825577682 40.87988312902518, -73.88575521215064 40.87992570466358, -73.88576217445623 40.87996828570997, -73.88577145115279 40.88002141465682, -73.88578072073638 40.880074548998266, -73.88578999864906 40.880127677943754, -73.88579927538082 40.88018081228974, -73.88580834765862 40.88023280011143, -73.88581268175082 40.88025762183733, -73.8858178229552 40.8802870818725, -73.88582710092717 40.88034021081293, -73.88583183209751 40.880367331875185, -73.88583637059968 40.88039334514682, -73.88583693928805 40.88039864597908, -73.88583727777889 40.88040396459343, -73.88583738135887 40.88040928207487, -73.88583725238848 40.88041460562976, -73.8858368956458 40.880419916352444, -73.88583630163471 40.88042521693509, -73.88583547748767 40.88043049928031, -73.88583443150496 40.88043576609778, -73.88583314830626 40.8804409921587, -73.88583124859753 40.88044734772155, -73.88582990936797 40.880451348163426, -73.88582839106353 40.88045530430422, -73.88582576669579 40.880461514171614, -73.8858007781591 40.880505007310056, -73.8857747043594 40.88055036607929, -73.8857705772339 40.88055561814026, -73.88576663231117 40.88055909371956, -73.88576197528171 40.88056202289842, -73.88575681024857 40.88056438426706, -73.88574953988193 40.880566406769056, -73.88574260001121 40.88056734991326, -73.88573655044719 40.8805673214119, -73.88572832348045 40.880566087703066, -73.88572061836325 40.88056357851952, -73.88571380285957 40.88055981133485, -73.88570861129095 40.88055552257467, -73.88567589506634 40.88051504027166, -73.88566487533927 40.88050133654183, -73.88564435248308 40.88047580809817, -73.8856281757347 40.8804556796791, -73.88561281825284 40.88043656962063, -73.88556039149002 40.880375713125964, -73.885505860627 40.880315929701574, -73.88544926830514 40.88025726170968, -73.88538256356863 40.88019206951975, -73.88531330784568 40.880128430798024, -73.88522207099706 40.88004853708529, -73.88512782206607 40.87997069161196, -73.88507938525358 40.87993294267551, -73.88488980887433 40.8797949296122, -73.88488039099117 40.879788821215584, -73.88485895989083 40.87977492152072, -73.88483445232471 40.879759022370834, -73.88483019786558 40.879756264434086, -73.8848212469244 40.87975045455993, -73.88481068306716 40.879743608414934, -73.88483633873551 40.8797213460478, -73.88484313287363 40.87971545103087, -73.88488311110834 40.879680751900096, -73.88492987748265 40.87964016313011, -73.88497664973033 40.879599575247305, -73.88498714389274 40.87959046826772, -73.88502342074543 40.87955898104062, -73.88507019288045 40.87951839221883, -73.88511694357345 40.87947782046572, -73.88516373104561 40.87943721541198, -73.88521050183226 40.87939662112828, -73.88525727374041 40.87935603132894, -73.88527848644874 40.87933763834318, -73.88530488401494 40.879314966886064, -73.88530958481678 40.87931207108658, -73.88531422349287 40.87931011353343, -73.88532132833873 40.87930837274671)), ((-73.8859060366023 40.88075761801851, -73.88591194124633 40.88075637577985, -73.88592638930427 40.880757267135905, -73.88593879202999 40.88075880301882, -73.88595110523313 40.880760653982556, -73.88596333483069 40.88076282903788, -73.88597546423586 40.88076531466112, -73.88599117298669 40.88076856743231, -73.88600087967734 40.880770370791524, -73.88600905844741 40.88077274535092, -73.88601463933594 40.880774880515794, -73.88602095182871 40.88077795651187, -73.88602779520127 40.880782100109506, -73.88603389837567 40.88078685620779, -73.88603989259565 40.88079288188559, -73.88604479184471 40.88079953682313, -73.88604739074037 40.88080403102073, -73.88614700105265 40.88098719212639, -73.88629800436208 40.88125121352207, -73.88646677912142 40.88154393721423, -73.88658126977236 40.88175424063586, -73.88669215004794 40.88196565879592, -73.88673935425201 40.8820583697717, -73.88678252865064 40.8821522005816, -73.88682161999935 40.88224705662674, -73.88685683399318 40.8823447634004, -73.88685737227674 40.88235055856333, -73.88685746560687 40.882356371299814, -73.88685720418654 40.88236218278807, -73.8868564990664 40.8823679722296, -73.8868549661709 40.88237563207213, -73.88685273936663 40.882383190379784, -73.88685064167541 40.8823887812494, -73.88684811465629 40.88239427084351, -73.88684419070248 40.882401428571264, -73.88683962407767 40.88240835514407, -73.88683443617796 40.882415027170126, -73.88682901212057 40.8824210317033, -73.88682228221003 40.882427471692075, -73.8868153779435 40.88243318211479, -73.88680988365364 40.882437229819544, -73.88680408486543 40.8824410286909, -73.88679598989508 40.88244574290626, -73.886789650986 40.882449008158694, -73.88678306934057 40.88245198591729, -73.88677402118783 40.88245556998514, -73.8867670324223 40.882457945817926, -73.88675987450742 40.88246001892065, -73.88675013914485 40.88246235333662, -73.88674021127783 40.88246416528032, -73.88673014429901 40.88246545390355, -73.88672252968342 40.88246608127377, -73.8867148847843 40.882466377234515, -73.88670467178632 40.88246632218531, -73.88669449649711 40.88246572237742, -73.88668439685779 40.8824645931565, -73.88667442271375 40.88246292646699, -73.88666462861342 40.88246073947184, -73.88665505724968 40.882458043919335, -73.88664575963612 40.882454842561074, -73.88663677487848 40.88245116335064, -73.88662814567117 40.88244701713588, -73.88661992537443 40.882442421979086, -73.88661402903897 40.882438712482745, -73.88659148307154 40.88241760002027, -73.88656990864288 40.88239590319139, -73.88654934128658 40.88237365715063, -73.88652979163409 40.88235088892357, -73.88651128574706 40.88232762194902, -73.8864938568088 40.88230387787176, -73.88647751424097 40.88227969722356, -73.88646228410946 40.882255100741645, -73.88644818060007 40.88223011815655, -73.88640061792879 40.88213905370265, -73.88633905116981 40.88202119134361, -73.8862381023118 40.88180990600179, -73.88614541668314 40.881596453137234, -73.886065707264 40.881391625261195, -73.88605300328254 40.881353962441125, -73.88599746452354 40.8811893264118, -73.88595225841297 40.881055313532585, -73.88594885422782 40.881045107645875, -73.88589550849447 40.88088532555129, -73.88587021211144 40.88080951010972, -73.8858690139131 40.880804612974366, -73.88586849115178 40.880798817820434, -73.88586872868333 40.880793837459024, -73.88586949268128 40.880789729290115, -73.88587101015149 40.88078487986458, -73.88587362730185 40.88077942369742, -73.88587650022751 40.88077494661298, -73.88587941767703 40.880771487123354, -73.88588281473515 40.88076855039067, -73.88588736766748 40.88076544640954, -73.88589403090512 40.880761861853344, -73.88590033049829 40.880759315199356, -73.8859060366023 40.88075761801851)), ((-73.88105171847737 40.87096116951023, -73.88105798312388 40.870961165161646, -73.88106423314558 40.87096137871606, -73.88107046014524 40.87096186239315, -73.88107664878048 40.87096257205315, -73.88108277169019 40.870963550891354, -73.8810908174832 40.8709652178834, -73.88109675319762 40.87096672961752, -73.88110256388991 40.87096850146391, -73.88111011197991 40.8709712017034, -73.88111739247017 40.870974288877, -73.88112437689712 40.87097775935355, -73.88112940633287 40.87098058576706, -73.88113420761475 40.87098363166472, -73.88114029367581 40.870987971987944, -73.88114459838813 40.87099141719084, -73.8811486346765 40.87099504671738, -73.88115363163529 40.87100011621487, -73.88115816074553 40.87100544457123, -73.88116217937416 40.87101099122054, -73.88116568636546 40.87101673905235, -73.88116865212079 40.871022655618724, -73.88117105539841 40.87102867876402, -73.88117292569532 40.87103489766701, -73.88124546807472 40.871207524071714, -73.88131094663095 40.871380137756944, -73.88136970520273 40.87155413844832, -73.88138856361456 40.87160652487436, -73.88140741848929 40.87165891579561, -73.88142627457837 40.871711307614966, -73.88144513069716 40.871763699430744, -73.8814639868569 40.87181608493953, -73.88148284303507 40.87186847674817, -73.88150169924299 40.871920868553254, -73.88152055548065 40.87197326035472, -73.88153941175923 40.87202564584921, -73.88155826805792 40.87207803674306, -73.88157711726701 40.87213042852651, -73.88159597362352 40.87218282031366, -73.88161483001132 40.87223521119678, -73.88162565589185 40.87226527341953, -73.88163440247176 40.87228920027816, -73.88163684886098 40.872295711521495, -73.88163854680658 40.87230349889042, -73.8816390040006 40.87230856370914, -73.88163894376882 40.87231307779842, -73.88163836416051 40.872318137051245, -73.88163699854103 40.87232425087091, -73.88163527207008 40.87232915586431, -73.88163252846935 40.87233499902431, -73.88162902488114 40.87234060547659, -73.88158782840036 40.87236146806222, -73.88157427294759 40.87236800250747, -73.88152056163989 40.87239390036614, -73.88146685029042 40.87241979819971, -73.88141313889909 40.87244569600812, -73.8814061943287 40.87244904949614, -73.8813566496022 40.87247202317021, -73.88134819149546 40.87247262140351, -73.88134114354449 40.872472080166744, -73.881332548943 40.872470059636775, -73.88132611794346 40.87246747852562, -73.8813216135316 40.87246486517692, -73.88131674010985 40.87246096464984, -73.88131243912707 40.87245603635292, -73.88130216191182 40.87243500296803, -73.88129818514768 40.872426550490445, -73.88128521607482 40.87239897588486, -73.88119374154378 40.87217060779705, -73.88111143640216 40.87194023648085, -73.8810383713565 40.871708075444566, -73.88101855583355 40.87164178712562, -73.8810015549836 40.871575052360974, -73.88098739004019 40.87150793330743, -73.88097607035776 40.87144050111441, -73.88096762425305 40.87137283685589, -73.88096204331688 40.87130499455322, -73.88095688030234 40.87125617551325, -73.88095171729542 40.87120735647262, -73.8809465554726 40.87115854283546, -73.88094139248078 40.871109723793474, -73.88094050359825 40.87110131861119, -73.8809360626815 40.871059329623215, -73.88093568136152 40.87105300059202, -73.88093575629743 40.871048250589034, -73.88093620860403 40.8710434226329, -73.88093692034982 40.87103879125106, -73.88093801773933 40.871034099033814, -73.88093938902551 40.871029479138336, -73.88094111491102 40.87102491093652, -73.88094388011139 40.87101893364096, -73.88094629488049 40.871014551650575, -73.88094903448422 40.871010281655934, -73.880952040812 40.87100611459212, -73.88095535176765 40.871002082015416, -73.88096018079393 40.87099691548776, -73.88096549932183 40.87099198539298, -73.88097118614172 40.87098740957012, -73.88097731731287 40.87098311065543, -73.88098385714909 40.87097914354193, -73.88098893568564 40.8709764049892, -73.88099424041191 40.87097388188639, -73.88100156271572 40.87097083587874, -73.88100914290601 40.87096819085423, -73.88101496579543 40.87096645981477, -73.88102092226764 40.87096498825362, -73.88102695191697 40.87096372388011, -73.88103307835591 40.87096272975282, -73.88103924710845 40.870961954487655, -73.88104547586708 40.87096145483376, -73.88105171847737 40.87096116951023)), ((-73.88489677880581 40.87881031084135, -73.8849031855866 40.87881018305826, -73.88491172288556 40.87881088854967, -73.88491871210101 40.87881218231628, -73.88492411576226 40.87881377886643, -73.88493093875556 40.87881651684904, -73.88493828724359 40.87882067272301, -73.88494429187442 40.87882532162461, -73.88494810656081 40.87882919842564, -73.8849771091924 40.87887932327316, -73.88500505692531 40.878928209791496, -73.88503300350196 40.87897710260487, -73.88506095723814 40.87902599541812, -73.88507472895415 40.87905348391572, -73.88508956069012 40.879080654694306, -73.88510543707523 40.879107478022036, -73.8851223498243 40.87913394308443, -73.88514152180882 40.87916160533989, -73.88514486012873 40.87916654423565, -73.88514750992712 40.879171718373925, -73.88514944163083 40.879177077297975, -73.88515071900636 40.87918348103717, -73.88515100363482 40.87919041237471, -73.88515080097851 40.879195779980606, -73.88514979793824 40.879202266096286, -73.88514737402991 40.87920780618629, -73.88514372230757 40.87921259134611, -73.88513500748992 40.879220525875326, -73.8851310307156 40.87922392305959, -73.88508814640987 40.87926055183197, -73.88504128647845 40.87930056696465, -73.8849944335998 40.87934058748806, -73.88495776444287 40.879371905924934, -73.88494757354468 40.87938060888545, -73.88493077524201 40.87939495941997, -73.8849007217302 40.87942063477432, -73.88485386038677 40.879460649828516, -73.88482697447814 40.879483618756176, -73.88480700135041 40.87950067026872, -73.88476014818811 40.87954069159599, -73.88471328785248 40.87958071199635, -73.88467960787172 40.87960948044704, -73.88466642745108 40.8796207377803, -73.88464693543956 40.879637385426605, -73.88463093329645 40.87962700391754, -73.88461813928147 40.8796172721638, -73.88460728385212 40.87960823482191, -73.88459684178943 40.879598914238684, -73.8845868379705 40.87958933205083, -73.88457727240933 40.87957948015407, -73.88456817233543 40.87956939189386, -73.88455953300928 40.8795590636635, -73.88455137575181 40.87954851529521, -73.88454370648238 40.87953775399893, -73.88453653465304 40.87952680229637, -73.88452986618469 40.879515666497, -73.8845237164739 40.87950436192454, -73.88452131772146 40.87949948068195, -73.88451807838167 40.879492900278336, -73.88451366101403 40.8794821764523, -73.88450972552567 40.87947134054733, -73.8845062778093 40.87946041508157, -73.8845033119326 40.87944940004911, -73.88450084326874 40.87943832428094, -73.88449887063248 40.87942718687548, -73.88449739518978 40.87941599954023, -73.88449642045256 40.87940478929338, -73.8844959511632 40.87939355794065, -73.88449597898834 40.87938232168245, -73.88449650865462 40.879371091329425, -73.88449754370063 40.87935987859139, -73.88449907342195 40.879348698766, -73.88450110015661 40.87933757166624, -73.88450362272278 40.87932649458941, -73.88450663988206 40.87931549725041, -73.88451014807667 40.879304578745064, -73.8845141437174 40.879293756179116, -73.88451861254681 40.879283041244506, -73.88452356402777 40.879272450159455, -73.88455071240986 40.87923498461165, -73.88457786076135 40.87919751905719, -73.88461006871286 40.87915549398238, -73.88461374304181 40.87915069175273, -73.88464962407603 40.87910386983842, -73.88467653096271 40.879068753391266, -73.88479906255176 40.87890594690548, -73.88482114067115 40.878875599089326, -73.88485407149857 40.87883044817194, -73.88485793694673 40.878826247650785, -73.88486241751121 40.878822407938316, -73.88486751063685 40.878819034388975, -73.88487392285249 40.878815768412835, -73.88488223036383 40.878812832104394, -73.88489008973714 40.87881108039041, -73.88489677880581 40.87881031084135)), ((-73.87963278624632 40.86864284797837, -73.87984010556573 40.86853631641471, -73.88017892093598 40.86912493512505, -73.87992937552148 40.86925960057314, -73.87990024888673 40.86915186091617, -73.87986279709162 40.869045612798004, -73.8798171523583 40.86894122825044, -73.87976347302036 40.86883906942569, -73.87970194588516 40.8687394940016, -73.87963278624632 40.86864284797837)), ((-73.88271976407773 40.876373168749204, -73.88272571939078 40.87637260749349, -73.88273200447529 40.87637341171278, -73.88274714035508 40.876378598596, -73.88279187103403 40.87639458537755, -73.88284891192232 40.87641497541945, -73.88290594216991 40.87643536452179, -73.88296324641904 40.876456474264245, -73.88300931724093 40.876473445653446, -73.88302054358796 40.87647758307053, -73.88308097898269 40.87649988727405, -73.88308705439565 40.87650254626729, -73.88309269946765 40.87650570549574, -73.8830987425629 40.87650987727586, -73.88310337180964 40.87651388373468, -73.88310742983506 40.87651822189492, -73.88311037001607 40.87652205284842, -73.88311368539375 40.87652773378467, -73.88319294549814 40.876701602856556, -73.88327787813799 40.87687203143721, -73.88335177783479 40.87701211675588, -73.88343253000531 40.87715170377109, -73.88343312744918 40.87715671829244, -73.88342816372281 40.87716210450111, -73.88341846910896 40.87716254945472, -73.88324664472343 40.877013219799586, -73.88309467736211 40.87686790546642, -73.88294869134208 40.87671909499678, -73.88291258936754 40.87668123967098, -73.88290436970485 40.87667211929115, -73.88287783521913 40.87664266621141, -73.88284444664187 40.87660340255235, -73.88281245918543 40.87656347124332, -73.88279126505029 40.87653712034472, -73.88277965073873 40.87652155981806, -73.88277122021766 40.87651026453516, -73.88275234008853 40.87648291553722, -73.88273465306611 40.8764551121013, -73.88271818044335 40.87642688846817, -73.88270293167005 40.87639826716019, -73.88270319739642 40.87639424224776, -73.8827037074911 40.876390229290024, -73.88270453082305 40.87638619413849, -73.88270644166134 40.87638103087995, -73.88270983947714 40.87637761698034, -73.88271455429344 40.87637479333846, -73.88271976407773 40.876373168749204)), ((-73.88469957445996 40.87849068753643, -73.8847079218 40.878490078140906, -73.88471749680104 40.87849030112141, -73.88472693602405 40.87849151360165, -73.88473384413733 40.878493032420586, -73.88474047598392 40.87849514168321, -73.88474783939483 40.87849818998439, -73.88475277389435 40.8785007631035, -73.88475738392225 40.878503674481856, -73.88476166603962 40.878506854778436, -73.88476555616242 40.87851031473524, -73.88477032186177 40.8785165031439, -73.88477340880156 40.878521329239035, -73.88477626662134 40.878526239751245, -73.88477890127481 40.8785312220796, -73.88478130684715 40.878536266312864, -73.88478347621836 40.87854137334437, -73.8847854141481 40.87854653507458, -73.88478687281538 40.87855098854281, -73.88478858149601 40.87855699380123, -73.88478980856313 40.87856227818854, -73.88479078405419 40.8785675974437, -73.88479152342497 40.87857293267193, -73.88479201718278 40.878578284764245, -73.88479226770176 40.87858365282252, -73.88479227383304 40.87858901523391, -73.88479279350135 40.87859653122442, -73.88479297265432 40.87860405858132, -73.88479281132312 40.878611579294926, -73.88479230950445 40.87861909516617, -73.88479147433225 40.878626597197325, -73.88479029990708 40.87863406647222, -73.88478879096668 40.87864150749807, -73.8847869404316 40.87864889775552, -73.88478476490184 40.878656242664114, -73.88478225729955 40.878663518804046, -73.88477941523931 40.87867073337683, -73.88477626248795 40.878677863893984, -73.88477278479927 40.878684915744195, -73.88476898814737 40.878691864620194, -73.88474538972972 40.87872390382624, -73.88473541949745 40.87873744080813, -73.88470185199887 40.87878301068375, -73.88466827612757 40.87882859314773, -73.88463470853695 40.87887416300305, -73.88460113851343 40.878919740950224, -73.88456756963339 40.87896531708747, -73.88453400189378 40.87901089321572, -73.88453107468693 40.87901587628804, -73.88452771117794 40.879020689632036, -73.8845238379051 40.87902527824438, -73.88451694754882 40.87903194936741, -73.88451199931079 40.87903590205985, -73.88450663165368 40.87903952745526, -73.88449964148056 40.879043556446135, -73.88449424358522 40.87904614805072, -73.88448862669318 40.879048458483666, -73.88448282404414 40.87905047607188, -73.88447684634386 40.87905218461722, -73.88447073274374 40.87905358415894, -73.88446450225754 40.87905465670628, -73.88445819876976 40.879055409506975, -73.88445177008026 40.87905584160835, -73.88444343860337 40.87905547307151, -73.88443447257198 40.87905432317576, -73.88442786776454 40.87905301265551, -73.8844221317247 40.879051518405, -73.88441654331086 40.87904972984248, -73.88441047423252 40.879047357282204, -73.88440338534394 40.87904401657631, -73.88439677784605 40.879040160372604, -73.88439171200746 40.87903668751965, -73.88438705246845 40.87903289900233, -73.88438186225879 40.8790279465229, -73.88437849122988 40.87902411517211, -73.88437548471956 40.87902011579519, -73.88437284031573 40.87901597090198, -73.88437058171978 40.879011695824474, -73.88436813164105 40.87900564569363, -73.88436257404504 40.87895271665567, -73.88435759725155 40.878901464006745, -73.8843563034896 40.87888815800281, -73.88435261453382 40.87885021135119, -73.88435212618379 40.87884517983632, -73.88434763775574 40.87879895870091, -73.88434565165846 40.878778534546846, -73.88434265386852 40.878747705142295, -73.88434230559685 40.87874330861159, -73.88434235823641 40.87873896471096, -73.88434307102095 40.87873364714401, -73.88434411542052 40.87872934295826, -73.88434543292043 40.87872558924422, -73.88434709078909 40.87872190881076, -73.88434908186726 40.87871832506338, -73.88435139070518 40.87871485329487, -73.88435401015312 40.878711511507824, -73.88435694136918 40.87870831591216, -73.88436056100944 40.878704940008134, -73.8843664201544 40.87870043803657, -73.88438394000067 40.878688662800116, -73.88439997047877 40.878677818974545, -73.88440944669016 40.87867141609198, -73.88441981256022 40.87866440987219, -73.88446932690474 40.87863092438059, -73.88451884119154 40.8785974433699, -73.88456761891833 40.878565873336946, -73.8846163977851 40.878534303284326, -73.88466703647514 40.8785015941514, -73.88467186977171 40.87849890111969, -73.88467700499503 40.878496555977826, -73.88468347377903 40.87849417975061, -73.88469139540734 40.87849208502639, -73.88469957445996 40.87849068753643)), ((-73.88687418815911 40.88283996461489, -73.88690123183417 40.88283553100571, -73.88692708909464 40.882837340205725, -73.88695058837415 40.88284360810364, -73.88697408040471 40.88285344462016, -73.8869916973721 40.88286238299689, -73.88700225926105 40.88287220684661, -73.88701046620506 40.88288470553819, -73.8870186728236 40.88289809571115, -73.88702333539202 40.882921295022584, -73.8870267979123 40.88295876858138, -73.88704069502633 40.883081004397845, -73.8870475394467 40.88320412569068, -73.88704373769914 40.883365598210645, -73.88704478314398 40.88344232343132, -73.88703889589503 40.88344856254712, -73.88703300897473 40.8834539092803, -73.88702242727919 40.883455683688155, -73.88700832120891 40.883455669879496, -73.88699070104985 40.883448515368194, -73.88697661166448 40.883438688064274, -73.88678585551459 40.88294158172009, -73.88678117783668 40.88292730260972, -73.886781211261 40.88290767562506, -73.88678912185381 40.882888641683884, -73.88680595502926 40.882872906873146, -73.88682125803022 40.88286043212381, -73.88684948846982 40.88284886242946, -73.88687418815911 40.88283996461489)), ((-73.8868206795813 40.88253672533184, -73.88682201910726 40.88253672214294, -73.88684799618186 40.88253847294673, -73.88687317966424 40.88254362050494, -73.88689680217887 40.88255200918235, -73.88691814635088 40.88256338343916, -73.88693656377208 40.882577397754844, -73.88695149515381 40.882593626552975, -73.88696248572967 40.882611576823074, -73.88696920421455 40.88263070254653, -73.88697144277293 40.88265042360685, -73.88696913716487 40.8826701402169, -73.88696235366166 40.88268925271687, -73.88695130206398 40.882707181397805, -73.88693631550801 40.882723380889544, -73.88691785043353 40.88273735907134, -73.88689646757629 40.882748691461096, -73.88687281652241 40.88275703380733, -73.88684761552126 40.88276213197492, -73.88682163248498 40.882763831832165, -73.88682159214507 40.882763831792595, -73.88679562210193 40.882762080989934, -73.8867704397293 40.88275693341616, -73.88674681715774 40.88274854471321, -73.8867254729556 40.882737170425074, -73.8867070555347 40.88272315607614, -73.88669212418354 40.88270692724677, -73.88668113247847 40.882688976950064, -73.88667441525702 40.88266985121121, -73.88667217559966 40.88265013014404, -73.88667448248154 40.88263041354101, -73.88668126487505 40.882611301056585, -73.88669231771605 40.88259337240236, -73.88670730430216 40.882577172941936, -73.88672576937638 40.88256319479339, -73.88674715220304 40.88255186243488, -73.88677080319977 40.8825435201141, -73.88679600293744 40.8825384219619, -73.8868206795813 40.88253672533184)), ((-73.8843128309649 40.87857815480953, -73.88427044894382 40.87839231285009, -73.88431391700928 40.87838900031216, -73.88435904850519 40.87840608637623, -73.88440728321713 40.878417267429604, -73.88445729172159 40.878422235971684, -73.88450769209733 40.87842085374307, -73.88455709736866 40.878413159877866, -73.8846041439903 40.87839936552904, -73.884647533376 40.878379852108964, -73.88464807641928 40.87838003905276, -73.88464854468725 40.87838024483204, -73.88464901397441 40.878380546964515, -73.88464942736059 40.87838093008507, -73.88465003833812 40.87838162227044, -73.88465982434757 40.87839492775487, -73.88466028886421 40.878396612131496, -73.88466016982983 40.878398207677094, -73.88465911607439 40.878399713140226, -73.88460039138451 40.87843835380331, -73.88459889009175 40.878439328431014, -73.88459399656419 40.87844254728439, -73.88459393613327 40.87844250400056, -73.88436044748691 40.878592176301645, -73.8843546341109 40.87859356082981, -73.88434860016343 40.8785942067366, -73.88434250821032 40.87859409707559, -73.88433652196956 40.878593234712376, -73.88433080156531 40.87859164231963, -73.88432549996736 40.87858936327408, -73.88432075943813 40.878586458051124, -73.88431670560067 40.87858300421871, -73.88431344981306 40.87857909553922, -73.88431302766057 40.87857897805262, -73.8843128309649 40.87857815480953)))",X033,6237,X033,X-07,X-07,X-07,X-07,Bronx Park to Van Cortlandt Park,"207, 208",11,52,"10458, 10467",X,80.936,False,Mosholu Parkway,No,100004211,PARK,20100106000000.00000,18881212000000.00000,,DPR/CDOT,True,Mosholu Parkway,Y,Mosholu Parkway,Large Park,Parkway,http://www.nycgovparks.org/parks/X033/,No,"78, 80, 81","36, 34",13,{5EB61416-98D6-43FD-ADB7-9FEDE2D7D1F3} +"MULTIPOLYGON (((-73.9141092740645 40.82064165557261, -73.91395501708169 40.82060211592493, -73.91401844041371 40.82048150569502, -73.91416407898912 40.82051875068167, -73.9141092740645 40.82064165557261)))",X347,5418,X347,X-01,X-01,X-01,X-01,Elton Ave. at E. 156 St.,201,17,40,10455,X,0.047,False,Vogue Garden,No,100004276,PARK,20100106000000.00000,20061220000000.00000,747 ELTON AV,DPR,False,Vogue Garden,Y,Vogue Garden,,Garden,http://www.nycgovparks.org/parks/X347/,No,79,32,15,{02AB62DC-6336-4BCC-B8B6-68A4C626C858} +"MULTIPOLYGON (((-73.96035711996645 40.703557396215984, -73.96036242347367 40.70355731879743, -73.96036698121644 40.703557742706856, -73.96036856199105 40.70355789003456, -73.96036994982836 40.70355814265571, -73.96037454164068 40.70355897991148, -73.9603792537232 40.703560531314295, -73.96038054916151 40.70356095770229, -73.96038532007493 40.703563070143964, -73.96038784186247 40.703564695535064, -73.96039223133432 40.70356752465252, -73.96041188437694 40.70358555695753, -73.96043509922572 40.7036073744339, -73.9604470839159 40.70361863134773, -73.96047365241908 40.7036440835335, -73.96047617012606 40.70364860856915, -73.96047727649923 40.703650596378445, -73.96047846066116 40.70365509934383, -73.96047844787168 40.703656713056525, -73.96047842381019 40.70365937676199, -73.96047694623954 40.70366477662363, -73.96047396610955 40.703669823869205, -73.96046954158119 40.703674214145565, -73.96046233717301 40.703679193302094, -73.96045632730491 40.70368314538469, -73.96045138754087 40.703686393634435, -73.96042414602641 40.70370431255969, -73.96041216060786 40.703712196020504, -73.96039074191802 40.70372628436233, -73.96037829246377 40.703734472032906, -73.96035801252411 40.70374781063428, -73.96032495284267 40.70376955560743, -73.96030872484974 40.7037802291814, -73.96030386438242 40.70378342522242, -73.96026607086733 40.703808263604735, -73.96025093672853 40.703818068554284, -73.9602443973125 40.703821033482, -73.96023659940106 40.7038231262792, -73.96022872064083 40.70382388088757, -73.96022080475952 40.70382338827373, -73.96021318305577 40.70382168457282, -73.9602071237647 40.70381918265763, -73.9602069747074 40.70381912137127, -73.96020162819164 40.70381588668568, -73.96020032482029 40.70381486775625, -73.96019805515837 40.703813090261804, -73.96019764720482 40.703812621854624, -73.96019440959621 40.7038088962185, -73.96019329847637 40.70380694082325, -73.96019109514582 40.70380306966178, -73.96018950853647 40.70379683216875, -73.9601899516138 40.70379000194046, -73.96019127893794 40.70378657595234, -73.96019232539345 40.70378387027648, -73.96020269183148 40.70376655702039, -73.96020677216673 40.70375998559591, -73.96021908541665 40.70374015608099, -73.96023044874089 40.70372187781825, -73.96024509171747 40.7036983191857, -73.96027109916952 40.70365648138418, -73.9602971065889 40.70361464357661, -73.96031498530633 40.70358593602414, -73.96032200047621 40.703574848640244, -73.96032576473853 40.70357045634092, -73.96033088496687 40.70356618607782, -73.96033633947341 40.70356290649267, -73.96034097087397 40.70356084681709, -73.96034591083442 40.703559251011185, -73.9603518126019 40.70355799052672, -73.96035711996645 40.703557396215984)))",B223OA,5786,B223OA,B-01,B-01,B-01,B-01,"Keap St., Bedford Ave., Williamsburg St. W.",301,33,90,11211,B,0.064,False,Park,No,100004190,PARK,20100106000000.00000,19520206000000.00000,,DPR,False,Park,N,Park,Sitting Area/Triangle/Mall,Managed Sites,http://www.nycgovparks.org/parks/B223OA/,No,50,26,7,{BFA3ACF4-053F-4298-831F-F636BED16607} +"MULTIPOLYGON (((-73.8887965388098 40.75413705548214, -73.88806845840377 40.75421079335174, -73.88800767298774 40.753876368221974, -73.88873565742242 40.753802641449866, -73.8887965388098 40.75413705548214)))",Q502,5335,Q502,Q-03,Q-03,Q-03,Q-03,"78 St., 79 St. bet. Northern Blvd. and 34 Ave.",403,25,115,11372,Q,0.574,False,Park,Yes,100008244,PARK,20130327000000.00000,20130220000000.00000,33-16 79 STREET,DPR/DCAS,False,Rory Staunton Field,N,Rory Staunton Field,Neighborhood Park,Recreation Field/Courts,,No,34,13,14,{B0CC45A6-E227-4ED4-9185-EAC4A8C9EAC5} +"MULTIPOLYGON (((-73.90216659017666 40.828128943760106, -73.90221697981593 40.828007849126884, -73.90252343265651 40.82808046068818, -73.90251256132707 40.82810658478134, -73.9028294650401 40.82818167171965, -73.90279002111785 40.82827665877038, -73.90216659017666 40.828128943760106)))",X319,4727,X319,X-03,X-03,X-03,X-03,Home St bet. Jackson Av and Forrest Av,203,16,42,10456,X,0.18,False,Jackson Forest Garden,No,100005004,PARK,20100106000000.00000,20091120000000.00000,722 - 736 HOME STREET,DPR,False,Jackson-Forest Community Garden,Y,Jackson Forest Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X319/,No,79,32,15,{4DC999CA-9DCA-4787-8843-FA8D367EC0EA} +"MULTIPOLYGON (((-74.20159027370717 40.532973635760385, -74.20301380394329 40.53257991731588, -74.20326143122108 40.53310348767102, -74.20160590848978 40.53356441087579, -74.20147848453217 40.533299196165686, -74.2013547446882 40.53304165006589, -74.20135352609564 40.53303911360915, -74.20159027370717 40.532973635760385)))",R053,6040,R053,R-03,R-03,R-03,R-03,"Foste Rd., Carlton Ave., Drumgoole Rd. W.",503,51,123,10309,R,2.288,False,Carlton Park,Yes,100004294,PARK,20100106000000.00000,19371214000000.00000,,DPR,False,Carlton Park,Y,Carlton Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R053/,No,62,24,11,{07F7436F-D75C-44AC-9703-49403AD43097} +"MULTIPOLYGON (((-73.97752231492504 40.725690233096245, -73.97732975171196 40.72560945209902, -73.97732913710101 40.72561029125245, -73.97732755830845 40.72560962906744, -73.97732783778574 40.72560924460509, -73.97725817448536 40.72558002015368, -73.97729252760917 40.72553302936508, -73.97733461601047 40.725475460007715, -73.97738029844103 40.7254129727599, -73.97730134249262 40.725379851806046, -73.97724918218756 40.72535796904604, -73.97722106229014 40.72534617312076, -73.977122807234 40.725304954448646, -73.97728533881715 40.72508263831849, -73.97741151334719 40.72513592465359, -73.97754242087822 40.72519120910246, -73.97762285838589 40.72522517935991, -73.97780581301271 40.7253024451336, -73.97776353328592 40.725360277576186, -73.977726182165 40.72541137064583, -73.97768409532614 40.725468940147074, -73.97764410328975 40.72552363921634, -73.97759842339742 40.725586128369315, -73.97755633633778 40.72564369782252, -73.97752231492504 40.725690233096245)))",M312,4981,M312,M-03,M-03,M-03,M-03,E. 9. St. and Ave. C,103,2,9,10009,M,0.478,False,9th St Community Garden Park,No,100004127,PARK,20100106000000.00000,19990712000000.00000,152 AVENUE C,DPR,False,9th St Community Garden Park,N,9th St Community Garden Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/M312/,No,74,27,12,{A44690D4-C852-4985-B06C-5EA1DCDD8ACA} +"MULTIPOLYGON (((-73.93767304280274 40.84163583646023, -73.93777316209709 40.84150223210959, -73.93795672880313 40.84158138709594, -73.93799113215016 40.841594924700765, -73.93823088537022 40.841564410458524, -73.93837808034854 40.841356807536485, -73.93856092556203 40.84143306879335, -73.9384084476076 40.84163654576656, -73.93833562531407 40.84160617194355, -73.9381609145388 40.841839318752086, -73.93767304280274 40.84163583646023)))",M240,6674,M240,M-12A,M-12A,M-12A,M-12A,"Audubon Ave., W. 169 St. and W. 170 St.",112,10,33,10032,M,0.656,False,Audubon Playground,Yes,100004295,PLGD,20100106000000.00000,19631121000000.00000,550 WEST 170 STREET,DPR/DOE,False,Audubon Playground,Y,Audubon Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M240/,No,72,31,13,{AB4A5AF4-C0C9-4FCC-B3F3-93F89D150C58} +"MULTIPOLYGON (((-74.03657087851596 40.63939244038924, -74.03675253295786 40.63911013740732, -74.03680878630027 40.63899041796634, -74.03885749821303 40.63962321829164, -74.03868181864473 40.6398950954705, -74.03832088500778 40.64041719471661, -74.0370017011619 40.6395402073542, -74.03657087851596 40.63939244038924)))",B432,6223,B432,B-10,B-10,B-10,B-10,"Bay Ridge Ave., Shore Rd., Upper Bay",310,43,68,11220,B,3.169,False,American Veterans Memorial Pier,Yes,100003804,PARK,20100106000000.00000,20011109000000.00000,,DPR,False,American Veterans Memorial Pier,Y,American Veterans Memorial Pier,Neighborhood Park,Waterfront Facility,http://www.nycgovparks.org/parks/B432/,Yes,64,23,11,{C66E8D38-FEE4-459A-A34D-01723CA8674B} +"MULTIPOLYGON (((-73.92991139574492 40.81275361040026, -73.92989456566404 40.812753546137984, -73.92988645722396 40.81275386718746, -73.9298748162512 40.81275473088887, -73.92986397609285 40.812755969683224, -73.92985130871493 40.8127579601809, -73.92984127962325 40.8127599666906, -73.92983002066482 40.812762723465916, -73.92981588227438 40.812767103885506, -73.92980605886444 40.81277075032349, -73.92978496252096 40.81278140747371, -73.9302178363708 40.81252831708002, -73.93041954736043 40.812397972189636, -73.93039451922496 40.81253164136093, -73.93037624179637 40.81262925327305, -73.93011085812073 40.81296784099441, -73.93011232589215 40.812964014769385, -73.93011309974666 40.812961850442335, -73.93011383806706 40.812959664481745, -73.93011484649722 40.81295646562513, -73.93011593142268 40.812952656277474, -73.93011687998388 40.81294890718052, -73.93011769928931 40.81294522104, -73.93011842984373 40.81294140067159, -73.93011919950332 40.81293645830691, -73.93011961076333 40.8129330843917, -73.93012013772265 40.8129267551136, -73.93012030919324 40.81292260842619, -73.93012033465295 40.812917550346704, -73.93012019114899 40.81291312251311, -73.93011992280226 40.81290907011132, -73.93011917732667 40.81290226820123, -73.9301182954063 40.81289673230801, -73.93011690028962 40.81289006237729, -73.93011538219876 40.81288424604372, -73.93011194175506 40.81287383870865, -73.9301078771182 40.812864161298606, -73.93010235098353 40.81285346814158, -73.9300955923052 40.81284269229171, -73.93009014100974 40.81283522566232, -73.93008340801262 40.81282708468322, -73.93007717604232 40.81282038030125, -73.93006817855263 40.81281179670405, -73.93006242355077 40.81280686659084, -73.93005734082642 40.812802821173804, -73.93005223651319 40.812799018877804, -73.93004583859812 40.81279458814991, -73.93004092918517 40.81279141631998, -73.93003371218124 40.81278708234807, -73.93001917757327 40.812779407590746, -73.93000229947354 40.812772028573036, -73.92998884283108 40.81276717122278, -73.92998241394953 40.812765143900634, -73.92997561519782 40.81276319379625, -73.92996124805791 40.812759701044165, -73.92995377088334 40.81275820437716, -73.9299404322855 40.81275605849128, -73.9299299538478 40.812754830148265, -73.92991982224596 40.81275401444295, -73.92991139574492 40.81275361040026)))",X145,5615,X145,X-01,X-01,X-01,X-01,E. 138 St. at Grand Concourse,201,8,40,10451,X,0.255,False,Deegan Rock,No,100004513,PARK,20100106000000.00000,19440120000000.00000,,DPR,True,La Finca del Sur Community Garden,Y,Deegan Rock,Community Garden,Garden,http://www.nycgovparks.org/parks/X145/,No,84,29,15,{15D5F0DA-51B5-47BF-8AB4-EDC8ED3E12AA} +"MULTIPOLYGON (((-73.92183500049609 40.65841590616179, -73.9221077103121 40.658240332748875, -73.92250690292637 40.65859732958561, -73.92195657758897 40.65895223847371, -73.92155828350867 40.6585940570746, -73.92183500049609 40.65841590616179)))",B304,5164,B304,B-17,B-17,B-17,B-17,"E. 93 St. to E. 94 St., between Lenox Rd. and Clarkson Ave.",317,41,67,11212,B,0.79,False,Kennedy King Playground (PS 219),Yes,100003908,PARK,20100106000000.00000,19571024000000.00000,1060 CLARKSON AVENUE,DPR/DOE,False,Kennedy King Playground,Y,Kennedy King Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B304/,No,58,20,9,{B281157D-659E-4A3F-943E-8C619F6F84EE} +"MULTIPOLYGON (((-73.88901229704497 40.74552046973365, -73.8891863298882 40.745499864403946, -73.88920623060083 40.74560191282268, -73.88901229704497 40.74552046973365)))",Q060,5869,Q060,Q-04,Q-04,Q-04,Q-04,"Broadway, 41 Ave., 76 St.",404,25,110,11373,Q,0.02,False,Nine Heroes Plaza,Yes,100000466,PARK,20090423000000.00000,19241001000000.00000,,DPR,False,Nine Heroes Plaza,N,Nine Heroes Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q060/,No,39,16,6,{5601F8A4-B52E-45EF-B8C5-E55700BA3A93} +"MULTIPOLYGON (((-73.93787523556922 40.80241440664784, -73.93803043061767 40.80219784091349, -73.93817441973897 40.80225863347814, -73.93830513362191 40.8023138203555, -73.93838596531785 40.8023479474769, -73.93846174488621 40.80237994126378, -73.93843492249643 40.802417383199696, -73.93840953699682 40.80245283759498, -73.93838502363528 40.80248703715499, -73.93835981610772 40.80252220077297, -73.93833661623387 40.802554565807675, -73.9383094377548 40.80259247848392, -73.93828414471176 40.802627763606324, -73.9381060532193 40.80287620044321, -73.93803026139308 40.802844220826614, -73.93794941859717 40.802810108761214, -73.9378736269215 40.802778129041364, -73.93780099458422 40.80274748191367, -73.93778593980363 40.80274112977425, -73.93778122748853 40.80261497272284, -73.93791344035414 40.80243053805931, -73.93787523556922 40.80241440664784)))",M285,4967,M285,M-11,M-11,M-11,M-11,Lexington Ave. bet. E. 122 St. and 123 St.,111,8,25,10035,M,0.603,False,Dr. Ronald E. McNair Playground,Yes,100004679,PLGD,20100106000000.00000,19860822000000.00000,167 EAST 122 STREET,DPR,False,Dr. Ronald E. McNair Playground,Y,Dr. Ronald E. McNair Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M285/,No,68,30,13,{D7915D5F-158B-4639-9C28-BA17F70E8613} +"MULTIPOLYGON (((-73.88624423732497 40.856064056102426, -73.88662912994532 40.855606490008284, -73.88716595902115 40.85587025787673, -73.88677743196443 40.85632523325889, -73.88624423732497 40.856064056102426)))",X102,5672,X102,X-06,X-06,X-06,X-06,E 188 St bet. Arthur Av and Hughes Av,206,15,48,10458,X,0.553,False,Ciccarone Park,Yes,100005001,PARK,20100106000000.00000,19460731000000.00000,,DPR,False,Ciccarone Park,Y,Ciccarone Park,Neighborhood Plgd,Triangle/Plaza,http://www.nycgovparks.org/parks/X102/,No,78,33,15,{21F3740A-EA6B-4ED1-9D75-0CBC04BB54CC} +"MULTIPOLYGON (((-74.21237838856243 40.556372550616615, -74.21275251540654 40.5561600709676, -74.21285818826571 40.55626429234604, -74.21258964345273 40.55664378167601, -74.21233245552222 40.556400786969036, -74.21237838856243 40.556372550616615)))",R157,6123,R157,R-03,R-03,R-03,R-03,Rossvile Ave. and Arthur Kill Rd.,503,51,123,10309,R,0.231,False,Sleight Family Graveyard,No,100004134,PARK,20100106000000.00000,20030304000000.00000,,DPR,False,Sleight Family Graveyard,N,Sleight Family Graveyard,Cemetery,Cemetery,http://www.nycgovparks.org/parks/R157/,No,63,24,11,{7CD193B6-38B5-4484-B657-14B14381CE3C} +"MULTIPOLYGON (((-73.96518869215083 40.708754179550866, -73.96524230441493 40.708480371022105, -73.96531824608941 40.70848898120187, -73.96541902639309 40.70850041019186, -73.96550954871702 40.70851067436109, -73.96556453461855 40.7082298321926, -73.96582373875815 40.70825922378213, -73.96571710806023 40.70881409695589, -73.96518869215083 40.708754179550866)))",B405,5221,B405,B-01,B-01,B-01,B-01,Berry St. between S. 9 St. and S. 10 St.,301,33,90,11211,B,0.5,False,Epiphany Playground,Yes,100004612,PARK,20100106000000.00000,19971219000000.00000,437 BERRY STREET,DPR,False,Epiphany Playground,Y,Epiphany Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B405/,No,50,18,7,{B852D695-3852-42E2-B273-0A31DFB72546} +"MULTIPOLYGON (((-73.96649325908476 40.71660397503818, -73.9666012582921 40.71649489339986, -73.96662746683099 40.71647418656379, -73.96671746092893 40.716502531861, -73.96673092051022 40.716505856832946, -73.96674489928965 40.716507539422715, -73.96675905051947 40.71650753630547, -73.96677302742931 40.716505849182084, -73.9667864855962 40.716502519376725, -73.9667990935957 40.716497628740406, -73.96681054010406 40.716491297852095, -73.96682054455155 40.716483682419444, -73.96682885949194 40.716474968777234, -73.96683528125396 40.71646537389002, -73.96689736565031 40.71635125028704, -73.96734792780171 40.71649178921166, -73.96731020825023 40.716612269473565, -73.96815746071226 40.71685990228998, -73.96812677361592 40.716958280835975, -73.96785731716422 40.717395510745526, -73.96707680685988 40.71694260014554, -73.96649325908476 40.71660397503818)))",B401,4613,B401,B-01,B-01,B-01,B-01,Grand St. at River St.,301,33,1,11211,B,1.7,False,Grand Ferry Park,Yes,100004089,PARK,20100106000000.00000,19971009000000.00000,1 GRAND STREET,DPR,True,Grand Ferry Park,Y,Grand Ferry Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B401/,Yes,50,26,7,{BC6A601E-6172-40F6-8247-5C0FF7C88F09} +"MULTIPOLYGON (((-73.86443248551073 40.73283560424517, -73.86469929318123 40.73236211239735, -73.86462685147147 40.73244577822305, -73.86392756848649 40.732652288186635, -73.86390927183047 40.732616289419006, -73.8644616639999 40.73245315989696, -73.86447077354835 40.73247107994711, -73.86461266783355 40.73242917596834, -73.86491597585821 40.732078872953835, -73.86477490685759 40.732007980479736, -73.86497726338256 40.73177427010893, -73.86499532726562 40.7317833486114, -73.86519174602768 40.731556490976935, -73.86514357734879 40.73153228471562, -73.86521410707276 40.73145082526776, -73.86542529972724 40.7315236092066, -73.86575285685763 40.73163649758367, -73.86593443648412 40.73174847854849, -73.86540672430851 40.732329255175785, -73.86486352687342 40.732927060518456, -73.86463324537007 40.73318048780113, -73.86453645346718 40.73298379372404, -73.86449024739841 40.73291793374884, -73.86443248551073 40.73283560424517)))",Q401,5050,Q401,Q-06,Q-06,Q-06,Q-06,Queens Blvd. bet. 62 Ave. and 62 Rd.,406,29,112,11374,Q,2.412,False,Lost Battalion Hall Recreation Center,Yes,100000048,PARK,20090423000000.00000,19601201000000.00000,93-29 QUEENS BOULEVARD,DPR/Private,True,Lost Battalion Hall Recreation Center,Y,Lost Battalion Hall Recreation Center,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q401/,No,28,16,6,{63D9AAD0-7C22-4467-9CEC-EF6EA1C8AE55} +"MULTIPOLYGON (((-73.81237028247475 40.66337041640634, -73.81219883337398 40.66333854194858, -73.81219239124319 40.663351382726454, -73.81218412397921 40.66336731470455, -73.81217305188643 40.6633877843162, -73.81215520074396 40.66341894731684, -73.81213713300244 40.66344849172974, -73.8121040521825 40.66349829939269, -73.81206552193972 40.66355065291323, -73.81205434792668 40.66356488085505, -73.81203896834016 40.66358384495336, -73.81202330587763 40.66360247179351, -73.81199614283628 40.663633279156144, -73.81196453932269 40.663666979822935, -73.81194358580858 40.66368818339093, -73.81193412856334 40.66369747838731, -73.81191953505513 40.66371150531296, -73.81189623643606 40.66373313818723, -73.81187516783281 40.663751945275564, -73.81184591839789 40.663776953455375, -73.81181733841406 40.66380023733004, -73.81180078349259 40.6638132380432, -73.81176512153624 40.66384010968942, -73.81171263970054 40.66387704860367, -73.8116525377309 40.66391591653477, -73.8115926369032 40.663951373601066, -73.81153372264514 40.66398335445137, -73.8114923596655 40.66400422642567, -73.81146106290777 40.66401920028065, -73.81145327805959 40.66404469109572, -73.81144972458951 40.66404420619573, -73.81145789259658 40.66401745978605, -73.81153467004023 40.663979535105, -73.81159876921336 40.663944450555334, -73.81166625443362 40.66390378289789, -73.81174210313678 40.66385292781856, -73.81181571994074 40.663797553839814, -73.8118876588092 40.66373663528111, -73.81193434277718 40.66369280504819, -73.81197938697687 40.663646691103565, -73.81202150834322 40.663599542172065, -73.81206734615157 40.66354285470442, -73.81211031238632 40.66348330338276, -73.81213864069765 40.663439703333296, -73.81216300237094 40.663398715506666, -73.81218233411305 40.663363341397485, -73.8121965826168 40.66333529820953, -73.81237112369298 40.66336774774195, -73.81237028247475 40.66337041640634)))",Q096G,6617,Q096G,Q-10,Q-10,Q-10,Q-10,Nassau Exwy. bet. 129 St. and Old S Rd.,410,28,106,11420,Q,0.009,False,Strip,No,100008646,PARK,20110712000000.00000,19630627000000.00000,,DPR,True,Park,N,Park,,Strip,,No,31,10,5,{235E271C-01E7-4DC2-9852-CFCFC6AF73E4} +"MULTIPOLYGON (((-73.73628053979716 40.72267578865961, -73.73609433759704 40.7227762888628, -73.73609186686143 40.72277821029838, -73.7360889986343 40.72277978052308, -73.73608581833219 40.7227809502044, -73.73608241958904 40.72278168713846, -73.73607890547595 40.72278196724764, -73.73607538136676 40.722781782668804, -73.73607195021121 40.72278113994164, -73.73606871728344 40.722780056417164, -73.73606577595366 40.72277856652893, -73.73606321719264 40.72277671280967, -73.73606111534349 40.72277455216214, -73.73602214253485 40.72273618648913, -73.73602081291845 40.72273419690795, -73.73601995614224 40.72273206252766, -73.73601959562188 40.72272984823895, -73.73601974530376 40.72272761891077, -73.73602039781505 40.72272544296521, -73.73602153514115 40.72272338609849, -73.73602312153456 40.72272150856302, -73.73602511178603 40.722719868788474, -73.736027444155 40.72271851526107, -73.73603004864776 40.72271748834337, -73.73603284702087 40.722716819373964, -73.7360357551557 40.7227165288718, -73.73627006932455 40.72266445512782, -73.73627150335031 40.722663990145556, -73.7362730206536 40.7226637171634, -73.73627457623215 40.722663642381875, -73.7362761262745 40.72266377020319, -73.73627762582466 40.72266409512127, -73.736279031121 40.722664608931254, -73.73628030198132 40.72266529623237, -73.73628140060829 40.7226661371268, -73.73628229750781 40.72266710723317, -73.73628296556365 40.72266817947382, -73.73628338478268 40.72266932138461, -73.7362835434534 40.72267050142072, -73.736283438164 40.72267168445428, -73.73628307141345 40.722672837172006, -73.73628245280256 40.72267392627691, -73.73628160021379 40.722674919391444, -73.73628053979716 40.72267578865961)))",Q159,6166,Q159,Q-13,Q-13,Q-13,Q-13,"Winchester Blvd., 93 Ave., 220 St.",413,23,105,11428,Q,0.03,False,Father Reilly Square,Yes,100000216,PARK,20090423000000.00000,,,DPR/CDOT,False,Father Reilly Square,Y,Father Reilly Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q159/,No,33,14,5,{12B62C23-3F42-418E-B059-F0B549D7FCEB} +"MULTIPOLYGON (((-74.00178411679866 40.680625296865756, -74.00183407612914 40.680521274974424, -74.0018355996789 40.680521699092346, -74.00190988429203 40.68036702734939, -74.00208376037124 40.68041546119503, -74.00208691476969 40.68044322669513, -74.00209232123757 40.68046722170073, -74.0021072153767 40.68052427711367, -74.00212073085795 40.68056129790801, -74.00214010417015 40.68060551640238, -74.00215467217164 40.68063412546899, -74.00215989725487 40.680644386731146, -74.00240350689852 40.68108271081202, -74.00239151501299 40.68108727306696, -74.00183020044595 40.68093052094651, -74.00195401660895 40.68067274220287, -74.00187077593914 40.68064949681047, -74.00178615372133 40.6806258659592, -74.00178411679866 40.680625296865756)), ((-74.00251760572434 40.68106398127835, -74.00232981159864 40.68072634822466, -74.00225760934474 40.68059916102865, -74.00223419611959 40.68054509911094, -74.00221702269938 40.680494776003336, -74.00220646645055 40.680449640629035, -74.00223670207107 40.680458062555424, -74.00228599784764 40.68058635695615, -74.00226603708008 40.68059233946734, -74.00227352281075 40.680607410326594, -74.00229781597008 40.680656317674696, -74.00231556947371 40.68064923117199, -74.00234831560698 40.680701201888255, -74.0023464301294 40.68070188991962, -74.00241776865761 40.68081511100096, -74.00241965413758 40.68081442296844, -74.00248743505975 40.68093427906867, -74.00248909106945 40.6809337369233, -74.00251154596474 40.68097344371011, -74.00250988995423 40.680973985855836, -74.00255413381649 40.681052221558566, -74.00251760572434 40.68106398127835)))",B223B,5107,B223B,B-06,B-06,B-06,B-06,Hicks St. bet. Woodhull St. and Rapelye St.,306,39,76,11231,B,0.52,False,Dimattina Playground,Yes,100004458,PARK,20100106000000.00000,19470514000000.00000,70 WOODHULL STREET,DPR,True,Dimattina Playground,N,Dimattina Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B223B/,No,52,26,7,{022475DF-340D-4999-BA25-E8B4FF804D78} +"MULTIPOLYGON (((-73.98979119127117 40.70143730614375, -73.98983452092278 40.70079771325276, -73.98996152263804 40.70080023862893, -73.99095947101772 40.70159782553057, -73.99095173382428 40.701597481827584, -73.9909326695685 40.70159608363335, -73.99083707974631 40.701588790922, -73.99072463638998 40.70157729408521, -73.99061276261695 40.70156292905464, -73.99011889450273 40.70148831362339, -73.99004638586024 40.70147702576249, -73.98980005354508 40.701438685613205, -73.98979119127117 40.70143730614375)), ((-73.99188537851444 40.7023527107776, -73.9918716035165 40.70234862418354, -73.99185801906823 40.70234418279964, -73.99184464055175 40.702339390229085, -73.99183148453157 40.70233425547831, -73.99181856520677 40.70232878124989, -73.99180589795861 40.70232297655013, -73.99179349935213 40.702316847683875, -73.99178138240273 40.70231039915464, -73.99176956012488 40.7023036426702, -73.9917580479005 40.702296581833764, -73.99174685637787 40.702289225651235, -73.99171759839517 40.702266765685195, -73.99169990802649 40.70225318739406, -73.991652960909 40.70221715091868, -73.99160601147602 40.702181111722254, -73.99155906564344 40.70214507340727, -73.99151211631192 40.70210903507277, -73.99146516939763 40.702072996719075, -73.99141822135073 40.70203695924652, -73.99137742209481 40.70200573094872, -73.99133662169382 40.70197450353678, -73.9912958189644 40.701943277010585, -73.99125501982333 40.70191204776851, -73.99124757437438 40.701906350564535, -73.99121421835359 40.70188082121322, -73.99119108931659 40.7018632567624, -73.99116724671806 40.701846252370466, -73.99114271422049 40.70182982694959, -73.99111751667023 40.7018139931085, -73.9910916789127 40.701798770659806, -73.99111633230018 40.701778008562265, -73.99113765817225 40.701758801387236, -73.99113922734699 40.70175738770438, -73.99115413053673 40.701756021873656, -73.99115751106565 40.70175610137844, -73.99190307068878 40.702351950190526, -73.99192580426654 40.702335455311484, -73.99193857274325 40.702326191740895, -73.9921425081498 40.702178222033055, -73.99217779228172 40.70215262198431, -73.99219133223635 40.702142797419, -73.99171130031733 40.701759160205945, -73.9917265440953 40.70175921173135, -73.9918259650434 40.70176152864782, -73.99192543004317 40.70176166083964, -73.99198006192563 40.70176053181527, -73.99199695042005 40.701760573513845, -73.99252531472892 40.70216970437337, -73.99252319599863 40.70217597540022, -73.99251977422902 40.70218469303296, -73.99251596199464 40.70219331698703, -73.99251564125936 40.7021939671357, -73.99251176402963 40.70220183645645, -73.9925071827015 40.702210240635246, -73.99250222747719 40.702218521419375, -73.99249689954108 40.702226667102224, -73.9924912083603 40.702234667778704, -73.99248515866852 40.70224251624499, -73.9924787599329 40.70225020259602, -73.99247201570442 40.7022577151253, -73.99246494018267 40.70226504843062, -73.99245753573531 40.7022721926065, -73.99244981301253 40.702279139548914, -73.99244178384784 40.70228588025345, -73.99243345297516 40.702292406615804, -73.99242631497535 40.7022976057016, -73.99241894981063 40.70230261386353, -73.99241136458069 40.70230743020138, -73.99240356756923 40.702312047511704, -73.99239557179241 40.702316462193195, -73.99238738435086 40.70232066614164, -73.99237901116089 40.70232465845698, -73.99237046523963 40.70232842923431, -73.99236175723641 40.70233197847437, -73.99235336284082 40.70233513421093, -73.99199213456477 40.702371608290726, -73.9919779912291 40.70237029616065, -73.99197113551718 40.70236954915838, -73.99195655562784 40.702367673274836, -73.99194206926214 40.70236542188254, -73.99192769180243 40.702362797684216, -73.99191343981434 40.70235980158152, -73.99189932867992 40.70235643807814, -73.99188537851444 40.7023527107776)), ((-73.99057125493364 40.70084802093034, -73.9905247425561 40.700811436512396, -73.99067212660849 40.700814366210004, -73.9908465272939 40.700869733783435, -73.9918186341353 40.70162249539415, -73.99180957638234 40.70162255958683, -73.99172313548127 40.70162317925907, -73.99159724524418 40.70162320615791, -73.99154120318059 40.701623219162734, -73.99057125493364 40.70084802093034)), ((-73.99271551498616 40.70228654537076, -73.99272273526128 40.702286191926326, -73.99272997206093 40.70228621489643, -73.99273719107099 40.70228661157737, -73.99274257365067 40.702287145920394, -73.9927479076917 40.702287911691656, -73.99275319083283 40.70228886116387, -73.99275839585448 40.702290037559926, -73.99276352394489 40.70229139495374, -73.99276854196901 40.702292969363775, -73.99277345939758 40.702294718466604, -73.99277824191232 40.702296677379984, -73.99278440873894 40.70229955850406, -73.99279030219934 40.70230275569032, -73.99279589508083 40.70230624912586, -73.99280116253622 40.70231002800305, -73.99280607616973 40.70231406980727, -73.99280953093893 40.70231725693449, -73.99281274194183 40.70232058812827, -73.9928166852429 40.70232520800007, -73.99282018952938 40.70233007278356, -73.99282321101172 40.70233526532314, -73.99282574970933 40.70234060461598, -73.99282779379233 40.7023460645465, -73.9928290121012 40.702350223185995, -73.99282991092556 40.70235442683113, -73.99283068061949 40.70236007488921, -73.99283093456262 40.70236432892281, -73.99283086074256 40.70236858833911, -73.99283052897277 40.702372840535254, -73.99282987417567 40.70237707019844, -73.9928285731726 40.70238266139522, -73.99282676337661 40.702388170613695, -73.99282445307352 40.702393569938536, -73.99282241389065 40.70239753746643, -73.99282007653673 40.70240140591941, -73.99281750608971 40.70240518880913, -73.99281465048976 40.702408851912956, -73.99281047899211 40.7024135595282, -73.99280708503807 40.70241694614108, -73.9928034378827 40.7024201787505, -73.99279959787003 40.70242327807198, -73.99279552832347 40.702426202679696, -73.99279128603663 40.702428979592476, -73.99278683788302 40.70243156378272, -73.99278223592229 40.702433990373564, -73.99277745886162 40.702436206233415, -73.99277255047687 40.70243825458967, -73.99275356316464 40.70244488746634, -73.99273429428598 40.702451032244696, -73.99271476868971 40.70245668712513, -73.99269500412616 40.70246184310356, -73.99267502544471 40.70246649567885, -73.99265485512863 40.7024706367478, -73.99263451329394 40.70247426451047, -73.99261402479006 40.702477374465836, -73.9925934097335 40.70247996121202, -73.99257269297308 40.702482025651165, -73.99255103202243 40.7024836136547, -73.99253017931446 40.70248451911869, -73.9924583322181 40.70242775337349, -73.9924259670491 40.7024021812155, -73.99241851555077 40.7023962931787, -73.99243546637072 40.702390740837615, -73.99244882943566 40.702386164413554, -73.99264880191616 40.702306513581014, -73.99268079386431 40.702293835512855, -73.99268744401006 40.702291661199496, -73.99269254400461 40.70229024862031, -73.992697743368 40.70228906027467, -73.99270300542413 40.70228805203518, -73.99270833963374 40.70228727343048, -73.99271551498616 40.70228654537076)), ((-73.99260566185616 40.7022074914377, -73.99261458839855 40.702206956206226, -73.99267442738287 40.70223428696229, -73.99267841324374 40.70223911395929, -73.99267927274846 40.70224569585491, -73.99267657310217 40.702251502183444, -73.99267304311168 40.702254555594415, -73.99263636764056 40.7022691253363, -73.99262713902161 40.702272715086174, -73.99261755540945 40.70227644078983, -73.99257831932466 40.70229119315283, -73.99257058673356 40.70229122507241, -73.99256425889858 40.702289199412704, -73.99255959610889 40.702285365632534, -73.99255699356146 40.7022798237145, -73.99255746505499 40.702274833108476, -73.99257765247215 40.70224414947151, -73.99259978420233 40.70221128761783, -73.99260566185616 40.7022074914377)))",B223I,5926,B223I,B-02,B-02,B-02,B-02,"Fulton St., York St., Washington St. and Prospect St.; Brooklyn Bridge",302,33,84,11201,B,2.2,False,Anchorage Plaza,Yes,100004997,PARK,20100106000000.00000,19470729000000.00000,,DPR,True,Anchorage Plaza,N,Anchorage Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223I/,No,52,26,7,{B461CFC5-3742-49B8-BEC9-D94A46E7F454} +"MULTIPOLYGON (((-73.93879492875358 40.68617147348311, -73.94020108731006 40.68600887038749, -73.94030945546608 40.686556057256404, -73.93890385950438 40.68671852689271, -73.93879492875358 40.68617147348311)))",B216,5475,B216,B-03,B-03,B-03,B-03,Marcus Garvey Blvd. bet. Monore St. and Madison St.,303,36,79,11221,B,1.795,False,Raymond Bush Playground (PS 44),Yes,100004322,PARK,20100106000000.00000,19441227000000.00000,308 MARCUS GARVEY BLVD,DPR/DOE,False,Raymond Bush Playground,Y,Raymond Bush Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B216/,No,56,25,8,{3E08D9D0-BAE3-426B-9E23-F21E63743DA6} +"MULTIPOLYGON (((-73.92963488062917 40.692463631088835, -73.93043974806689 40.69237026169513, -73.93049741902544 40.69264902519375, -73.92969254948652 40.692742394988194, -73.92963488062917 40.692463631088835)))",B023,5024,B023,B-03,B-03,B-03,B-03,Lafayette Ave. bet. Malcolm X Blvd. and Patch Ave.,303,36,81,11221,B,0.517,False,Lafayette Playground,Yes,100004444,PARK,20100106000000.00000,19360820000000.00000,1037 - 1063 LAFAYETTE AVENUE,DPR,False,Lafayette Playground,Y,Lafayette Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B023/,No,56,18,8,{CDBED841-FEB4-47FE-A997-8DE3B29C8B9A} +"MULTIPOLYGON (((-74.00797877099313 40.65270676028627, -74.008207294113 40.652487214307854, -74.00787997791225 40.652290689396935, -74.00810045604678 40.65207887151027, -74.00901521758459 40.65262810007846, -74.00856608350429 40.65306064743028, -74.00797877099313 40.65270676028627)))",B210I,6560,B210I,B-07,B-07,B-07,B-07,3 Ave. bet. 40 St. and 41 St.,307,38,72,11232,B,1.236,False,Gonzalo Plasencia Playground (JHS 136),Yes,100004460,PARK,20100106000000.00000,19580120000000.00000,320 34 STREET,DPR/DOE,True,Gonzalo Plasencia Playground,Y,Gonzalo Plasencia Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B210I/,No,51,25,7,{3C0409CF-E7E3-4DBB-A4F3-2E5AC6FC01B5} +"MULTIPOLYGON (((-74.23543971206398 40.50248602336409, -74.23553921093514 40.502784983389, -74.23582282240407 40.50363711992118, -74.23585292888 40.50372757509994, -74.23588037879964 40.50381004890589, -74.23590782760401 40.50389252180672, -74.23592262518642 40.50393698310739, -74.23592028032333 40.50393745440398, -74.23433716833932 40.5042556215645, -74.23385428495982 40.5028046551862, -74.23406752361201 40.50276180174395, -74.234238822616 40.50272737515493, -74.23441012026707 40.502692949213056, -74.23458141891824 40.50265852211246, -74.23475271739623 40.50262409565663, -74.23492401569467 40.50258966804447, -74.23509531381988 40.50255524107707, -74.23526661176548 40.50252081295334, -74.23543971206398 40.50248602336409)), ((-74.23308815577403 40.50231333159455, -74.23346388227533 40.502238352199306, -74.23393804845131 40.50366052457732, -74.23276441522887 40.50388621978014, -74.23265323870812 40.503522639932704, -74.23262709542027 40.50343714142566, -74.23251569129852 40.503072818058094, -74.23241106747149 40.502730658263545, -74.23238438662739 40.50264339934447, -74.232329737615 40.50246467680394, -74.2327124284301 40.50238830975921, -74.23308815577403 40.50231333159455)))",R136,6109,R136,R-03,R-03,R-03,R-03,Joline Ave. bet. Hylan Blvd. to Surf Ave.,503,51,123,10307,R,9.763,False,Hybrid Oak Woods Park,No,100004137,PARK,20100106000000.00000,19961231000000.00000,,DPR,False,Hybrid Oak Woods Park,N,Hybrid Oak Woods Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R136/,No,62,24,11,{896AF9A8-7480-4712-992E-B1C2775A0CF4} +"MULTIPOLYGON (((-74.00440277475899 40.73807492407809, -74.00457514517032 40.73792462716014, -74.00466016296801 40.73797926294464, -74.00466644092239 40.73797610911315, -74.00466406585849 40.73807503986342, -74.00440277475899 40.73807492407809)))",M390,5501,M390,M-02,M-02,M-02,M-02,Jane St. at 8th Ave.,102,3,6,10014,M,0.055,False,Jane Street Garden,No,100008348,PARK,20130114000000.00000,20120430000000.00000,36 JANE STREET,DPR,False,Jane Street Garden,,Jane Street Garden,,Garden,,No,66,27,10,{08A20EFA-E415-4EC6-AE47-CD4921AF13A8} +"MULTIPOLYGON (((-74.00356750595179 40.72705655464277, -74.00357395121539 40.72705715868435, -74.00353000090485 40.72733223487454, -74.00353572768407 40.727332771402104, -74.0035255204497 40.72739666011453, -74.00343356758194 40.72738825484235, -74.00356750595179 40.72705655464277)))",M125E,4656,M125E,M-02,M-02,M-02,M-02,"Ave. of Americas, King St. and Charlton St.",102,3,1,10014,M,0.039,False,Charlton Plaza,Yes,100004481,PARK,20100106000000.00000,19650422000000.00000,201 6 AVENUE,DPR,False,Charlton Plaza,Y,Charlton Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M125E/,No,66,27,10,{FD9CE2B7-E0F3-4F0D-88F5-D65C53DF03CB} +"MULTIPOLYGON (((-73.99697310394723 40.676657441043005, -73.99722180284215 40.6761357539155, -73.99746703821155 40.676205538663574, -73.99721733087368 40.67672690210704, -73.99697310394723 40.676657441043005)))",B118A,5430,B118A,B-06,B-06,B-06,B-06,Smith St. bet. Luquer St. and Nelson St.,306,39,76,11231,B,0.345,False,St. Mary's Playground,Yes,100004731,PARK,20100106000000.00000,19341204000000.00000,422 SMITH STREET,DPR,False,St. Mary's Park,Y,St. Mary's Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B118A/,No,52,25,7,{F9AF90EF-F914-4BB1-ABE7-ECC8EFC575C1} +"MULTIPOLYGON (((-73.77721708253227 40.610960943227965, -73.77250877063842 40.608103127188095, -73.77347258373298 40.603258139879664, -73.77614831200573 40.60214403640913, -73.77672466470061 40.601649423941744, -73.77753978123059 40.60094989184439, -73.77807492433345 40.59975143780631, -73.780647002199 40.59798469254201, -73.77973498083803 40.597126696198856, -73.77969341259704 40.59677960896495, -73.78000160588539 40.59660601435637, -73.78003448045077 40.59658447548333, -73.7800705333257 40.59658218420999, -73.78011009672264 40.596585444177606, -73.78015566686815 40.59662226019439, -73.78063981596827 40.596601913170865, -73.78182776955587 40.596550814924996, -73.7819698432815 40.597953849039286, -73.7820045159392 40.598116147138654, -73.78200825093045 40.59811598222326, -73.78201556142588 40.598149305617845, -73.78204680262762 40.598383881449635, -73.78211981802403 40.59905291379116, -73.78208284099338 40.599263408069035, -73.7820224606752 40.599355543352395, -73.78193013496595 40.59946043336318, -73.78113325080864 40.59997551371457, -73.7798502437938 40.601104758375264, -73.78032883953496 40.60139107485648, -73.7808129385661 40.601749188772345, -73.781631610269 40.601386540720775, -73.78241891204976 40.60121065486378, -73.78225672416868 40.60067389595906, -73.78231008380334 40.60012268752478, -73.7823373485129 40.60002109690487, -73.78244043882069 40.5995992169117, -73.78228106444979 40.59839895543361, -73.7822188873476 40.59810669463623, -73.78222119025448 40.5981065936389, -73.78219742710613 40.59798930021967, -73.78820198950221 40.59765200500799, -73.78851141716004 40.59763461479845, -73.78848772610785 40.5973904316338, -73.78837152156284 40.59619264167657, -73.78835554897609 40.59602800164972, -73.78828567525609 40.59530776159534, -73.7882700726348 40.595146917937576, -73.78821250506871 40.59455351333299, -73.78873446495572 40.59433891176298, -73.78881474857526 40.595087708383474, -73.7890681520765 40.595242424776906, -73.78907310684832 40.59529212305632, -73.78907800325847 40.595341225980945, -73.78914233487099 40.59598645152068, -73.78930223954197 40.59759016588097, -73.78997346149153 40.59755243425058, -73.78998169597386 40.597637291368706, -73.78989502336289 40.597809221477725, -73.78932003718022 40.59894976887394, -73.78684427596802 40.600653955924116, -73.78655136992387 40.60121524074139, -73.7862684600916 40.60175736040172, -73.78482368712571 40.60274198631183, -73.78478425223324 40.60324525716504, -73.78647621982536 40.60466920676004, -73.78088390862021 40.60846950629834, -73.77721708253227 40.610960943227965), (-73.77640971992086 40.60940104527711, -73.77484451575744 40.60845101815471, -73.77478011377491 40.60845176548647, -73.77455113686185 40.60843944046331, -73.7744175099299 40.60842266175883, -73.77435040695377 40.60840974079081, -73.7740683271701 40.608332051329015, -73.77406300234911 40.608330817049115, -73.77405842251828 40.60833010833874, -73.77405390426325 40.60832970952971, -73.77404962252304 40.60832960205484, -73.77404452205107 40.608329809954874, -73.77404015799085 40.608330284957184, -73.77403596797046 40.608331007045194, -73.77403211762866 40.60833191260735, -73.77402775658656 40.60833324131236, -73.77402381322905 40.60833474734122, -73.77401978116582 40.60833662781376, -73.77401598809598 40.60833876540552, -73.77401278345084 40.608340905955174, -73.77400953839863 40.60834346426864, -73.7740071191984 40.608345698215956, -73.77400511867053 40.60834781771929, -73.77400243561854 40.6083512038191, -73.77400054574264 40.608354144818264, -73.77399884006208 40.6083574743057, -73.77399775199802 40.60836021156184, -73.77399678123186 40.60836355240006, -73.77399625778109 40.60836634569835, -73.77399595497091 40.6083699309916, -73.77399601473421 40.60837287042112, -73.7739964680312 40.608376489619985, -73.77399722876214 40.60837969518208, -73.77399849982257 40.60838328537103, -73.77400002159457 40.608386463612725, -73.77400196160364 40.60838965618465, -73.77400426948348 40.60839273241163, -73.77400711840336 40.608395847524406, -73.77400988305504 40.608398375329465, -73.77409009842557 40.608466033636304, -73.77433425410632 40.60859897321266, -73.77450576298946 40.60870930618307, -73.7746539940567 40.608842970874704, -73.7747725742059 40.608987918478746, -73.77481182505545 40.60908208758222, -73.77483326337654 40.609125064785964, -73.77487226604889 40.60929322767137, -73.77489769571712 40.609355903546344, -73.77500394831054 40.60949313988172, -73.7750362062328 40.60952791643667, -73.77509365352981 40.6095600019782, -73.77516673483845 40.60957841479401, -73.77535367970255 40.6096107534414, -73.77552515176335 40.609609261285804, -73.77574165450918 40.6095738844605, -73.77611236595997 40.60951431524765, -73.77625041165665 40.60946890856339, -73.77640971992086 40.60940104527711)))",Q371,4599,Q371,Q-14,Q-14,Q-14,Q-14,"Almeda Ave., Norton Ave. bet. Beach 58 St., Sommerville Basin and Beach 49 St., Conch Basin",414,31,100,"11691, 11692",Q,255.4,False,Rockaway Community Park,Yes,100000439,PARK,20090423000000.00000,19551005000000.00000,54-02 ALMEDA AVENUE,DPR,Part,Rockaway Community Park,Y,Rockaway Community Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q371/,Yes,31,10,5,{E6C597DE-9E60-42D4-AC51-995BF48397A9} +"MULTIPOLYGON (((-73.91081850540633 40.68364973052718, -73.91078408751135 40.68368468072717, -73.91048288926535 40.68351369486495, -73.91051722212356 40.68347869696088, -73.91081850540633 40.68364973052718)))",B584,23895,B584,B-04,,,B-04,Moffat St. bet. Chauncey St. and Bushwick Ave.,304,37,,11207,B,0.038,False,,,100024483,PARK,,20160519000000.00000,9 MOFFAT STREET,DPR,False,Moffat Garden,,Moffat Garden,,Garden,,No,55,18,8,{0C8F7A7C-7020-4955-A611-C7F6FE0F7388} +"MULTIPOLYGON (((-73.92952044840865 40.61610274441528, -73.92952375187159 40.6161022448504, -73.92953159174799 40.6161042190964, -73.92954695242837 40.61611713117833, -73.92955668199363 40.616125729913456, -73.92956076815055 40.61612934260654, -73.92957009040164 40.61613758178304, -73.92957387668082 40.6161409286382, -73.92959705244985 40.616161413480405, -73.92960148335537 40.616165330759294, -73.92960167934028 40.61616550377934, -73.92961366628522 40.61617609854632, -73.9296459412102 40.6162046242995, -73.92965345829498 40.616211268442015, -73.9296728856037 40.61622843975868, -73.92968776866236 40.616241596471085, -73.92969324798419 40.61624643742181, -73.92969362342495 40.61624676994371, -73.92969399886663 40.616247101565115, -73.92969927275674 40.616251763186206, -73.9297347884131 40.61628332835367, -73.92973591772535 40.6162848545267, -73.92973765477112 40.61628719694326, -73.92974013155367 40.61629181182667, -73.92974130121057 40.61629542633269, -73.92974198792199 40.616297553783205, -73.92974202090812 40.61629765105967, -73.92974198413219 40.61630339996382, -73.92974098445457 40.616307825413934, -73.92973873186874 40.616312507647294, -73.92973590337976 40.61631644569819, -73.92973271527143 40.616319614484176, -73.92973038082012 40.61632123759716, -73.92972722564573 40.616323430238275, -73.9297229597983 40.61632547361428, -73.9297210278706 40.616326399069386, -73.92971793659993 40.616327383249995, -73.92971181552744 40.616329333638106, -73.92970968181325 40.61632998341017, -73.92969623881712 40.616334081565455, -73.92965328789678 40.616347168677, -73.92963148853079 40.616353811085794, -73.92960708141612 40.616361247954224, -73.92958580819376 40.6163676241223, -73.92957965027102 40.616368652347205, -73.92957925195732 40.61636871784124, -73.92957744617657 40.61636880318502, -73.9295736348925 40.61636898275529, -73.9295723847728 40.6163688352045, -73.92956667652184 40.616368162619914, -73.92956310385146 40.61636731394098, -73.92955919565236 40.61636638581051, -73.92955229189295 40.61636308837414, -73.92954737347932 40.6163597615365, -73.92954375412053 40.616356123914585, -73.9295413256921 40.616352731063735, -73.92954113335371 40.61635246169003, -73.9295411062432 40.616352395935365, -73.92953883730975 40.61634680140816, -73.9295387500877 40.616346587030705, -73.92953573267624 40.61632573721743, -73.9295346260492 40.61631727794448, -73.92953323572172 40.616306659948556, -73.92953164848161 40.616294509145064, -73.9295270555224 40.616259394111474, -73.92952519512201 40.61624517734494, -73.92952001342887 40.61620133409949, -73.92951866998284 40.61618996869949, -73.92951815345396 40.61618559815389, -73.92951717545179 40.61617731726274, -73.92951483174343 40.61615748995306, -73.92950985226513 40.616113527961964, -73.9295118558742 40.616107386736125, -73.92951733641812 40.61610321347974, -73.92952044840865 40.61610274441528)))",B176,6363,B176,B-18,B-18,B-18,B-18,"Flatbush Ave., Schenctady Ave., Ave. O",318,46,63,11234,B,0.078,False,Trust Triangle,Yes,100004501,PARK,20100106000000.00000,,,DPR,False,Trust Triangle,Y,Trust Triangle,Type 1,Triangle/Plaza,http://www.nycgovparks.org/parks/B176/,No,59,19,8,{24572D60-B0B3-4262-B12C-AEF0A996B9D8} +"MULTIPOLYGON (((-73.90578096495109 40.81389362141298, -73.90541275870251 40.81381776547282, -73.90553115185135 40.81348667659103, -73.90518248335326 40.81341484493125, -73.90520616145167 40.8133486273885, -73.90592363339601 40.81349643742572, -73.90578096495109 40.81389362141298)))",X233A,5755,X233A,X-01,X-01,X-01,X-01,"Tinton Av, E 150th St and Union Av",201,8,40,10455,X,0.402,False,El Flamboyan Garden,No,100004592,PARK,20100106000000.00000,19951121000000.00000,,DPR,False,El Flamboyan Garden,Y,El Flamboyan Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X233A/,No,84,29,15,{CB5E96B7-410F-463B-98A4-A935675F615B} +"MULTIPOLYGON (((-73.9266626881803 40.678304725489504, -73.92660023108277 40.67830150504484, -73.92662069483293 40.67808259663233, -73.92668034030265 40.67808567209257, -73.9266626881803 40.678304725489504)))",B532,5304,B532,B-03,B-03,B-03,B-03,Herkimer St. and Suydam Pl.,303,36,81,11233,B,0.028,False,F.A.R.R. Community Garden,No,100003851,PARK,20100106000000.00000,20071101000000.00000,808 HERKIMER STREET,DPR,False,F.A.R.R. Community Garden,N,F.A.R.R. Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B532/,No,56,25,8,{9AAF04B3-97DB-4ED8-B00B-D3CDA8717CC6} +"MULTIPOLYGON (((-73.79906252718544 40.70104204723526, -73.79944272993012 40.7009339354308, -73.7996059415171 40.7010580980609, -73.79987657705207 40.700985025731875, -73.80003747362797 40.70132587537686, -73.80063657744432 40.700881776020466, -73.80103455622512 40.70104753614993, -73.80024769098439 40.70159836860065, -73.79891698751848 40.702036549764536, -73.79839515713238 40.70127561098722, -73.79876510394281 40.701126619015895, -73.7988123178666 40.701113193838275, -73.79888720663473 40.70109189877847, -73.79906252718544 40.70104204723526)))",Q482,4853,Q482,Q-12,Q-12,Q-12,Q-12,Beaver Rd. bet. 158 St. and 159 St.,412,27,103,11433,Q,3.504,False,Prospect Cemetery,No,100000340,PARK,20090423000000.00000,20040213000000.00000,94-14 159 STREET,DPR,False,Prospect Cemetery,Y,Prospect Cemetery,Cemetery,Cemetery,http://www.nycgovparks.org/parks/Q482/,No,32,14,5,{344205AA-B547-4687-AFF8-818343805524} +"MULTIPOLYGON (((-73.91981162653511 40.733388521519394, -73.91981213039006 40.73338594281401, -73.9198615274888 40.73339163779693, -73.92013870913429 40.73342359219185, -73.92018596152087 40.73342903880883, -73.92018782734183 40.73343189111172, -73.92020200829857 40.733453567172546, -73.9201314620653 40.73381451678215, -73.92012789334677 40.733814106376634, -73.92013865035875 40.73375907656475, -73.92014900357819 40.73370610053116, -73.92015937464635 40.733653034457774, -73.92017078315008 40.73359466780918, -73.92018083734469 40.73354322513008, -73.92019167050762 40.733487799140306, -73.9201984407838 40.733453155869526, -73.92018407754533 40.73343145987072, -73.92016838001345 40.733429649773605, -73.9200528394781 40.73341632944142, -73.91981162653511 40.733388521519394)))",Q360C,5558,Q360C,Q-02,Q-02,Q-02,Q-02,"51 Rd., Queens-Mid-Town Exwy., 47 St.",402,30,108,11377,Q,0.006,False,Strip,No,100000458,PARK,20090423000000.00000,19680730000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/Q360C/,No,30,12,14,{C47F91C9-C1CE-4B2A-8F7C-2C787FCCCF6F} +"MULTIPOLYGON (((-73.875432389123 40.67628287534266, -73.87550550166831 40.67627257603321, -73.87555780909905 40.676485876525966, -73.87548582087523 40.67649633467564, -73.87541499445354 40.67650662474134, -73.87534062810761 40.67651742872464, -73.8752698028239 40.67652771870222, -73.87519897515276 40.67653800863361, -73.87520235048156 40.67655148941176, -73.87513152513866 40.676561780204715, -73.87506069977726 40.676572069152975, -73.87498987439234 40.67658235895821, -73.87491692291074 40.67659295708633, -73.87485950601128 40.67636356573498, -73.87493253472962 40.67635328020607, -73.87500343619475 40.67634329309207, -73.87507433645415 40.67633330683355, -73.87514523787515 40.67632332053263, -73.87521613927655 40.67631333328753, -73.87528704183615 40.67630334780098, -73.87536148778804 40.67629286182056, -73.875432389123 40.67628287534266)), ((-73.87521584825697 40.676605415220756, -73.87557435009698 40.676553330428725, -73.87558720634594 40.67660575524101, -73.8756004511678 40.67665976447862, -73.87561416674919 40.6767156860179, -73.87526289415821 40.67676672066576, -73.87525645912868 40.67676765562849, -73.87524283096685 40.676713210986996, -73.87524256094039 40.67671213187649, -73.87522922747402 40.67665886902906, -73.87522896215562 40.67665780253083, -73.87521584825697 40.676605415220756)))",B471,5190,B471,B-05,B-05,B-05,B-05,Glenmore Ave. and Fountain Ave.,305,37,75,11208,B,0.494,False,Green Gems,No,100004984,PARK,20100106000000.00000,20021120000000.00000,933-943 Glenmore Ave and 143-147 Fountain Ave,DPR,False,Green Gems,N,Green Gems,Greenthumb,Garden,http://www.nycgovparks.org/parks/B471/,No,54,18,8,{7D1910B1-711E-4C44-9154-5CB121D180CA} +"MULTIPOLYGON (((-73.94137651923477 40.619682558216056, -73.94141087114389 40.61968173464259, -73.94144430566409 40.61968531323722, -73.94147439298595 40.61969739283435, -73.94149898577152 40.61971530860373, -73.94151455438745 40.61973862200062, -73.94152318944029 40.61976596440012, -73.94152506252478 40.61979706033179, -73.94152274050575 40.61982919693236, -73.94151762607096 40.619861137599734, -73.94150971222847 40.619892765262385, -73.94149907474976 40.61992391966556, -73.94148594931899 40.61995401919209, -73.94146973454083 40.61998424862023, -73.94145117856914 40.62001317019815, -73.94143014523749 40.620041077425086, -73.94140578522118 40.620068870387485, -73.9413844915139 40.62009447664296, -73.94136191034455 40.6201179209882, -73.9413372999009 40.62014014048588, -73.94131077726227 40.62016104244087, -73.94128244887763 40.62018052784895, -73.9412524660971 40.620198506734106, -73.9412209294388 40.620214906204225, -73.94118803398541 40.62022963090264, -73.94115390269906 40.62024262055635, -73.94111869044087 40.62025382661533, -73.94108353330041 40.62026148644155, -73.94105046199951 40.62026383425493, -73.94101568093633 40.620259144513255, -73.94098446164827 40.620246644573115, -73.9409589818449 40.62022807986431, -73.94094115598097 40.62020486248998, -73.9409325146939 40.62017942824792, -73.94093235272256 40.62014077241558, -73.94093491852185 40.620107261758555, -73.94094055089911 40.6200739670008, -73.94094922370691 40.62004105022208, -73.94096086587604 40.62000868878781, -73.9409754524716 40.619977010558216, -73.94099290298281 40.619946179385686, -73.94101312862433 40.61991636181961, -73.94103602527596 40.61988769288328, -73.94105930070539 40.61985965720252, -73.94108167283268 40.61983608043244, -73.94110127795706 40.6198156396543, -73.94112265364723 40.61979625699091, -73.94114572064152 40.61977802425378, -73.94117035713866 40.619761027829554, -73.94119645197566 40.61974535230935, -73.94122387627411 40.61973106966793, -73.94125252125914 40.61971823748204, -73.94128226633273 40.61970691962618, -73.94131292353748 40.61969717723894, -73.94134439239662 40.61968903998555, -73.94137651923477 40.619682558216056)))",B173,5812,B173,B-18,B-18,B-18,B-18,"Kings Highway, Ave. M, E. 34 St. to E. 35 St.",318,45,63,11234,B,0.667,False,Fraser Square,Yes,100004301,PARK,20100106000000.00000,19380101000000.00000,,DPR,False,Fraser Square,Y,Fraser Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B173/,No,41,"17, 19",9,{7B32331B-7D7E-4BDA-80B1-51EB7B94878C} +"MULTIPOLYGON (((-73.81935512255222 40.774399673147784, -73.81934797744418 40.77403723763124, -73.81923833381649 40.774037065679565, -73.81923806425765 40.77400720181929, -73.81909222538893 40.774005965276515, -73.81909192906082 40.77411504474655, -73.81826658029858 40.77412309951704, -73.81824795380969 40.77409259255617, -73.81825051053201 40.77386802691873, -73.81954666357153 40.77386786415742, -73.81954678844298 40.77439966909842, -73.81935512255222 40.774399673147784)))",Q419,5361,Q419,Q-07,Q-07,Q-07,Q-07,147 St. bet. 26 Ave. and 27 Ave.,407,19,109,11354,Q,0.821,False,Hart Playground (PS 21),Yes,100000037,PARK,,19650720000000.00000,147-36 26 AVENUE,DPR/DOE,False,Hart Playground,Y,Hart Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q419/,No,40,11,6,{B5857639-F409-4152-B5A2-352E4490480C} +"MULTIPOLYGON (((-73.90189544299167 40.7384088518325, -73.90191381526193 40.737935625292, -73.90227209202058 40.73794577784003, -73.90263354158756 40.73795601840463, -73.90262075517403 40.73829650229001, -73.90209568480344 40.73841490075405, -73.90189544299167 40.7384088518325)))",Q205B,4910,Q205B,Q-02,Q-02,Q-02,Q-02,"Laurel Hill Blvd., 48 Ave. bet. 63 St. and 64 St.",402,30,108,11377,Q,0.732,False,Nathan Weidenbaum Park,Yes,100000346,PARK,20090423000000.00000,19551117000000.00000,48-09 63 STREET,DPR,True,Nathan Weidenbaum Playground,Y,Nathan Weidenbaum Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q205B/,No,30,15,14,{7259C947-4A23-4446-B9EC-E7E53476FC7D} +"MULTIPOLYGON (((-74.07921196252838 40.646882147358426, -74.07822627805079 40.64630107106189, -74.07894530235066 40.64664404099009, -74.0791553739233 40.646760415547114, -74.07917844855284 40.646772543151116, -74.0797174572728 40.647073070844954, -74.07978634861092 40.64710961742901, -74.07988972274106 40.64716619456292, -74.07996627579332 40.647204013551665, -74.08005418868838 40.64724216047575, -74.08010358757596 40.64726153224578, -74.08019004483165 40.64729147365763, -74.08027405910227 40.647316114458675, -74.08042455803124 40.64734375517716, -74.0810533241974 40.6474532571192, -74.08175745366692 40.647570373587065, -74.08225385462387 40.64765556614961, -74.0824356859852 40.64768621566845, -74.08279438163473 40.6477564199421, -74.08294570503675 40.647800822614755, -74.0829452750679 40.64780303459746, -74.08289452443809 40.648064114285795, -74.08071913241098 40.64754130078872, -74.08055397574282 40.64750160648189, -74.08038289223242 40.647454842510435, -74.08021654438262 40.647399536268175, -74.08012442960724 40.647365541083374, -74.08003223035513 40.64732707931341, -74.07993189112368 40.64728165041505, -74.07983851641555 40.64723289458279, -74.07975408816392 40.64718414057535, -74.07921196252838 40.646882147358426)))",R066,5995,R066,R-01,R-01,R-01,R-01,Richmond Terr. from St Peter's Pl. to Stuyvesant Pl.,501,49,120,10301,R,1.521,False,North Shore Esplanade,Yes,100004066,PARK,20100106000000.00000,19480928000000.00000,,DPR,False,North Shore Esplanade,N,North Shore Esplanade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R066/,No,61,23,11,{CF6F8D93-5B5C-4E30-BF5F-E502E5105E0D} +"MULTIPOLYGON (((-73.98254723492533 40.70143777294536, -73.98273251245986 40.70144414499674, -73.98272429132824 40.701594683242526, -73.98253901693532 40.701588275158095, -73.98254723492533 40.70143777294536)))",B551,5387,B551,B-02,B-02,B-02,B-02,Gold St. bet. York St. and Front St.,302,33,84,11201,B,0.064,False,,No,100008371,PARK,20140724000000.00000,20130606000000.00000,199 YORK STREET,DPR,False,Vinegar Hill Community Garden,,Vinegar Hill Community Garden,,Garden,,No,52,26,7,{46C3DA95-B4A5-4DB0-B995-D5D57269D22D} +"MULTIPOLYGON (((-73.9413009606635 40.83164295123972, -73.9413894404759 40.831366569572204, -73.94223778448931 40.831725611507814, -73.94206203718012 40.83196518280327, -73.9413009606635 40.83164295123972)))",M234,4936,M234,M-12A,M-12A,M-12A,M-12A,St Nicholas Ave. and W. 156 St.,112,7,33,10032,M,0.584,False,Wright Brothers Playground,Yes,100003753,PLGD,20100106000000.00000,19601121000000.00000,1921 AMSTERDAM AVENUE,DPR/DOE,False,Wright Brothers Playground,Y,Wright Brothers Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M234/,No,71,30,13,{F4DA1C9E-0F13-463C-A926-7C145394FA6B} +"MULTIPOLYGON (((-73.77907145592283 40.770894823930085, -73.77960430096083 40.77073533549185, -73.78037767582644 40.77224383685741, -73.77892626078578 40.772676853837986, -73.77857982014447 40.77166561206932, -73.77848161964381 40.77137896605436, -73.77842766311068 40.77122146465932, -73.77842288307895 40.77119637817481, -73.77842383916582 40.77117103977314, -73.77843050516746 40.77114620312747, -73.77844268318245 40.77112260627124, -73.77846000960965 40.77110094909726, -73.77848197060734 40.771081875377774, -73.7785079128197 40.771065952974, -73.77853706713526 40.771053653170625, -73.77856856648106 40.77104534260592, -73.77907145592283 40.770894823930085)))",Q103,6249,Q103,Q-11,Q-11,Q-11,Q-11,"32 Ave., 33 Ave. bet. Corporal Kennedy St. and 210 St.",411,19,111,11361,Q,5.4,False,Kennedy Playground /Raymond O'Connor,Yes,100000327,PARK,,,,DPR,True,Kennedy Playground,Y,Kennedy Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q103/,No,26,11,6,{77E3DFE8-8363-46C4-9775-2CD2E39937A2} +"MULTIPOLYGON (((-74.09055170652667 40.630763062105515, -74.0905600045919 40.63076255668193, -74.09056814433745 40.63076297171378, -74.09056941524896 40.63076317242912, -74.09057550617071 40.630764137490985, -74.09058109768954 40.630765528891885, -74.09064805697098 40.6307782517965, -74.09067360041254 40.6307830683476, -74.09071410459467 40.63079070342442, -74.09078015224175 40.63080315411381, -74.09084619873276 40.63081560566676, -74.09091224406639 40.63082805718266, -74.09097829178744 40.6308405077582, -74.09104433835117 40.63085295829673, -74.09111038494193 40.63086541059833, -74.09117934947069 40.6308784170694, -74.09124831284554 40.63089142440048, -74.09131727742924 40.63090443168926, -74.09138624203864 40.63091743803615, -74.09145520667609 40.63093044524218, -74.09152417015852 40.63094345240773, -74.09158792439332 40.630955430785285, -74.09165167628582 40.63096740822882, -74.09171543056391 40.6309793847346, -74.09177918486614 40.63099136210555, -74.09184293800925 40.63100333944205, -74.09190227832634 40.63101497987398, -74.09196161866167 40.631026618474266, -74.09202096020088 40.6310382579434, -74.09208029821608 40.63104989828532, -74.09213963743026 40.63106153589411, -74.09220796148254 40.63107436936162, -74.0922762867406 40.63108720098657, -74.09234460729819 40.631100033475214, -74.09241293379331 40.631112866819024, -74.09246816410293 40.631123362999894, -74.09252339206597 40.63113385915614, -74.09257862359236 40.63114435528298, -74.09258819556172 40.6311461747302, -74.09260860102219 40.63115005124395, -74.09263522510398 40.63115487549406, -74.09263591792838 40.63115500100866, -74.0926407085049 40.631156663110694, -74.09264409179677 40.63116122061735, -74.09264305805529 40.6311666939097, -74.09263926068458 40.631169526402864, -74.0926336923641 40.63117042690651, -74.09263050868437 40.631170022436464, -74.09256141588496 40.6311612556862, -74.09249232192417 40.63115249069637, -74.09248301442385 40.63115130769602, -74.09243989469566 40.631145837493456, -74.09242322797783 40.63114372296349, -74.09235413405335 40.6311349578906, -74.09228504014452 40.63112619097519, -74.09221594625514 40.63111742491874, -74.09215461693697 40.63111038609855, -74.092093289997 40.63110334814422, -74.09203196188669 40.631096309257664, -74.09197063260734 40.631089270339274, -74.09190028080813 40.63108111114928, -74.09182992902738 40.6310729528167, -74.0917595772626 40.63106479354057, -74.091689225515 40.63105663422141, -74.09161859733409 40.63104857413663, -74.091547969169 40.63104051310794, -74.09147733865697 40.63103245203778, -74.09140671052724 40.631024391822834, -74.09133608241457 40.63101633156451, -74.09127639622035 40.631009267557125, -74.09121670885555 40.63100220261918, -74.0911570226878 40.630995139450306, -74.0910973353495 40.63098807535091, -74.09103765038657 40.63098101031811, -74.09097796307479 40.630973947057235, -74.09090921654128 40.6309656959387, -74.09084047120675 40.63095744477814, -74.09077172588927 40.630949193576434, -74.09070298058873 40.63094094233364, -74.09063423530526 40.63093269104972, -74.09060802625196 40.63092954547888, -74.09056963478159 40.630924938049475, -74.09056756359153 40.63092468843591, -74.09056549003873 40.6309244397247, -74.0905171954102 40.63091864418751, -74.09049168100158 40.63091521978261, -74.09048531000269 40.630912561058814, -74.09048102010277 40.630908742628385, -74.09047837770163 40.630903033610615, -74.09048367978026 40.6308775015001, -74.09048606674789 40.630868299910304, -74.09049411186065 40.630837270667975, -74.09050423650584 40.63080916467676, -74.09050438252665 40.630808762029424, -74.0905161859273 40.63077829085087, -74.09052089218181 40.63077448785224, -74.09052694236557 40.63077069009894, -74.09053274096637 40.63076789752364, -74.09053895522658 40.63076568095347, -74.09054451094217 40.63076420602944, -74.09055170652667 40.630763062105515)))",R021,5798,R021,R-01,R-01,R-01,R-01,Forest Ave. bet. Haven Esplanade and Duer La.,501,49,120,10301,R,0.45,False,Forest Mall,Yes,100004987,PARK,20100106000000.00000,19830101000000.00000,,DPR/CDOT,False,Forest Mall,N,Forest Mall,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R021/,No,61,24,11,{55E2820C-CEE6-4E3A-8476-5E132F4D42CB} +"MULTIPOLYGON (((-73.88416649518459 40.83650290166518, -73.88428296149026 40.836307742726504, -73.8846132186265 40.83641910638494, -73.88450150540218 40.836614131736376, -73.88416649518459 40.83650290166518)))",X267,4739,X267,X-03,X-03,X-03,X-03,E 174 St bet. Bryant Av and Longfellow Av,203,17,42,10460,X,0.183,False,Eae J Mitchell Park,Yes,100005002,PARK,20100106000000.00000,19931230000000.00000,995 EAST 174 STREET,DPR,True,Eae J Mitchell Park,Y,Eae J Mitchell Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/X267/,No,85,32,15,{72287B42-DFC7-4A4D-B964-E967C431DBF8} +"MULTIPOLYGON (((-74.15978309266148 40.6156272606586, -74.15990428249874 40.61527231423861, -74.15997562497301 40.615283596676115, -74.16027207967066 40.61547393867492, -74.16031023395522 40.615495620479294, -74.16034275162393 40.615512945301624, -74.16038570918231 40.6155334479007, -74.16042651664672 40.61555076383412, -74.16047228349031 40.615568925624565, -74.16051307777764 40.615581234641276, -74.16055469989647 40.61559281486516, -74.16060102048873 40.61560485678138, -74.16065217652437 40.61561584011095, -74.16068459455049 40.61562116461466, -74.16335277714046 40.6160593911105, -74.16298782568037 40.617529788492064, -74.16298289061072 40.6175534828262, -74.16297913192807 40.61757933494452, -74.16297729628796 40.61761064420261, -74.16297555771459 40.61763621249366, -74.16297416334523 40.61766674937836, -74.16297423205313 40.61769489060053, -74.1629751814188 40.61771780844577, -74.1629766358036 40.61774815308222, -74.16298077764142 40.617789197515435, -74.1629855781608 40.61782316020828, -74.16299103463513 40.61785086063984, -74.1629978521764 40.61788471781255, -74.16300873491377 40.61792531773364, -74.16302027521093 40.617962245292034, -74.16303925976842 40.61800849170126, -74.16305551289383 40.61804490017449, -74.16306972634762 40.61807310147783, -74.16308598226296 40.61810144846794, -74.1631015329227 40.61812554329002, -74.16312316735805 40.61815835193502, -74.16314753900136 40.618190763162964, -74.16316916728414 40.61822152041836, -74.16321043492295 40.61827189107707, -74.16323947544349 40.61830366258935, -74.16328138915158 40.6183432152325, -74.16333741813823 40.61839393409148, -74.16344400342268 40.61846876637682, -74.16267576574296 40.61812749287368, -74.16190747542619 40.61771109184709, -74.16139451723971 40.61741839602833, -74.16058569839859 40.6169184367683, -74.16027795932388 40.61670902746287, -74.15957893821685 40.616208111900214, -74.15936212656501 40.61604418983015, -74.15938170838942 40.61603848038557, -74.15940220393301 40.61602891453451, -74.15942792203202 40.61601559796541, -74.15944876182306 40.61600470605973, -74.15947970072506 40.61598740733159, -74.15950972796178 40.61596840066874, -74.1595298719614 40.61595366808556, -74.15956584220127 40.615926801505886, -74.15959167479366 40.61590604462551, -74.15961752229651 40.61588411703951, -74.15963960574835 40.615862586402265, -74.15966113613734 40.61584105562838, -74.15968104004264 40.615817375761935, -74.15969924573106 40.61579416382134, -74.15972022569332 40.61576288024335, -74.1597373107902 40.6157346098185, -74.15975110109953 40.61570924995551, -74.15976431788225 40.61568225013624, -74.15978309266148 40.6156272606586)))",R075A,6052,R075A,R-02,R-02,R-02,R-02,"S/s Of SI Expressway., Exit 6, Fahy Ave., Lamberts La.",502,50,122,10314,R,13.469,False,Father Macris Park,Yes,100004151,PARK,20100106000000.00000,19530117000000.00000,,DPR,True,Father Macris Park,Y,Father Macris Park,Large Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/R075A/,No,63,24,11,{19CE3833-4640-4A47-812F-36719E8C6AC8} +"MULTIPOLYGON (((-73.76441329525404 40.60756528726995, -73.7644571250151 40.60756525102657, -73.76452069593469 40.607567095886154, -73.7645689622117 40.607569833300744, -73.76469479692119 40.60757864146979, -73.7648629813443 40.607590310664904, -73.76487079690467 40.60759082014131, -73.7645154367267 40.60821293791088, -73.76524749451076 40.60847003496725, -73.76509988428634 40.60872161106006, -73.76394027326761 40.608024464221614, -73.76351448745785 40.607768479263754, -73.76356864084188 40.607756774886354, -73.76360846060061 40.60774701225314, -73.76365711224997 40.6077343734805, -73.76370170184221 40.60772166329947, -73.76376769362194 40.60770123096519, -73.76380922775218 40.607687807550434, -73.7638344988473 40.60767963948795, -73.76386271873702 40.60766958997814, -73.7638905233628 40.60765968729445, -73.76394914792301 40.60764023570219, -73.76399448195642 40.60762647692456, -73.76404210699422 40.60761407452026, -73.76408177246242 40.60760446179417, -73.76412949842597 40.60759425233882, -73.76418617630385 40.60758363618287, -73.76422227806118 40.60757804324383, -73.7642932193684 40.60756994264297, -73.7643472299421 40.607566476508104, -73.76441329525404 40.60756528726995)))",Q266,5444,Q266,Q-14,Q-14,Q-14,Q-14,"Mott Ave., Westbourne Ave. bet. Bay 28 St. and Bay 25 St.",414,31,101,11691,Q,1.13,False,Westbourne Playground,Yes,100000372,PARK,20090423000000.00000,19501022000000.00000,25 BEACH 28 STREET,DPR/DOE,False,Westbourne Playground,Y,Westbourne Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q266/,No,23,10,5,{73DEC890-01CD-4025-832B-E250FB3D2CDD} +"MULTIPOLYGON (((-73.94043823738292 40.79892576370292, -73.94061798296347 40.79867844779271, -73.94062608037596 40.79868186665822, -73.94067166091794 40.798701104086255, -73.94068681811184 40.798707501831394, -73.94072712162206 40.79872451228806, -73.94054737751082 40.79897182476527, -73.9404919154773 40.798948418278286, -73.94043823738292 40.79892576370292)))",M331,4993,M331,M-11,M-11,M-11,M-11,E. 117 St. bet. Lexington Ave. and 3 Ave.,111,8,25,10035,M,0.08,False,117th St Community Garden,No,100003794,PARK,20100106000000.00000,20021120000000.00000,172 EAST 117 STREET,DPR,False,117th St Community Garden,N,117th St Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M331/,No,68,29,13,{24E093F9-D1C8-4F2F-827C-42621FAACA84} +"MULTIPOLYGON (((-73.80884104438482 40.58800862348769, -73.80980503533343 40.587895341365815, -73.80976707706928 40.58844205324896, -73.8091026608538 40.58852969540468, -73.80884104438482 40.58800862348769)))",Q367,6306,Q367,Q-14,Q-14,Q-14,Q-14,Rockaway Beach Blvd. bet. Beach 84 St. and Beach 81 St.,414,31,100,11693,Q,1.03,False,Hammel Playground,Yes,100000306,PARK,20090423000000.00000,19550615000000.00000,,DPR/NYCHA,True,Hammel Playground,Y,Hammel Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q367/,No,31,10,5,{0FF1B1B1-BB2A-4B98-9A38-08C4BFE679C1} +"MULTIPOLYGON (((-73.9168522702381 40.84475620223059, -73.9169083464233 40.84468019421133, -73.9172810252289 40.84483356476869, -73.91725090491842 40.844826868711884, -73.9172042450046 40.84481649487011, -73.91717350321444 40.84480991090862, -73.91713273865187 40.844801789801586, -73.9170867780617 40.84479263208003, -73.91702699144203 40.84478228384952, -73.91698413161224 40.84477511840671, -73.91693929977814 40.844767985746685, -73.9168522702381 40.84475620223059)))",X148B2,5698,X148B2,X-04,X-04,X-04,X-04,W. Mount Eden Ave. at Macombs Rd.,204,14,44,10452,X,0.041,False,Park,Yes,100003956,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,Undeveloped,Triangle/Plaza,http://www.nycgovparks.org/parks/X148B2/,No,77,29,15,{8D9F6044-3F08-4166-AEFF-78F6ABC3008B} +"MULTIPOLYGON (((-73.96370564320826 40.71347816529353, -73.96350785402007 40.7134056332763, -73.96349926655012 40.71341918684025, -73.96343840304546 40.71339686728222, -73.96335489164903 40.71336624137927, -73.96327040536073 40.713335257601805, -73.96331534225412 40.71326434231205, -73.96340881498986 40.71329862027981, -73.96344722169121 40.71323800920643, -73.96353636980672 40.71327070079882, -73.96361793240932 40.71330061275029, -73.96369949390261 40.713330522842455, -73.96378039759993 40.71336019133289, -73.96374199113068 40.71342080341696, -73.96370564320826 40.71347816529353)))",B444,5247,B444,B-01,B-01,B-01,B-01,Berry St. between S. 3 St. and S. 2 St.,301,34,90,11211,B,0.137,False,Berry Street Garden,No,100003866,PARK,20100106000000.00000,20021120000000.00000,301 - 303 BERRY STREET,DPR,False,Berry Street Garden,N,Berry Street Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B444/,No,50,18,7,{F84693A2-3865-4C90-A02F-58D175DCE8DD} +"MULTIPOLYGON (((-73.82381207175416 40.764000905532, -73.82363220612017 40.76360457158392, -73.82385337292341 40.763545360385876, -73.82422904589863 40.763444783017846, -73.82448980143813 40.763374971701744, -73.8245308857386 40.76336397156672, -73.824557360302 40.7633568843811, -73.82458506564855 40.76334790169716, -73.82461274013802 40.76333399319166, -73.82462695576379 40.763323220466326, -73.82463976631553 40.763313513600686, -73.82465884686265 40.763291178574846, -73.82467357700921 40.763261757146886, -73.82467891423772 40.76323139210104, -73.82467648631508 40.76321160338806, -73.82467200092245 40.76319461662015, -73.82466592052396 40.76317886562039, -73.82465892755869 40.76316335276599, -73.82464894737753 40.763141210341516, -73.82463431621761 40.76310875274372, -73.82446275619247 40.762728150119976, -73.82498377114068 40.76258820990342, -73.82515622266364 40.762968572673046, -73.8254360275548 40.76358570402139, -73.82474233202595 40.76377202542311, -73.82477100351335 40.76383253440843, -73.82444183652247 40.76392094293866, -73.82440713212706 40.763841593296384, -73.82381207175416 40.764000905532)))",Q022,4796,Q022,Q-07,Q-07,Q-07,Q-07,37 Ave. bet. Bowne St. and Parsons Blvd.,407,20,109,11354,Q,2.6,False,Margaret I. Carman Green (Weeping Beech),Yes,100000297,PARK,20090423000000.00000,19251001000000.00000,36-26 Bowne St.,DPR,True,Margaret I. Carman Green - Weeping Beech,Y,Margaret I. Carman Green - Weeping Beech,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q022/,No,40,16,6,{47234EA7-2665-4866-8233-143489B14263} +"MULTIPOLYGON (((-73.99615642689967 40.699669252085705, -73.99638652016392 40.699186207711165, -73.99646995486137 40.69920855200755, -73.99625697215488 40.69965636997145, -73.99623938400806 40.69969335343103, -73.99622814926306 40.69971697439685, -73.99622460157165 40.69972443502345, -73.99622271649052 40.69972839811541, -73.99621988354339 40.69973435400954, -73.99621972142397 40.69973469439783, -73.99613610159578 40.69971192127158, -73.99614392120812 40.69969550519787, -73.99615330402779 40.69967580770966, -73.99615642689967 40.699669252085705)))",B223DJ,69227,B223DJ,B-02,B-02,B-02,B-02,BQE bet. Pineapple St. and Orange St.,302,33,84,11201,B,0.09,False,Brooklyn Heights Promenade,No,100008310,PARK,,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DJ/,No,52,26,7,{B78D2041-1F02-44CC-9FC1-570102AC4763} +"MULTIPOLYGON (((-73.88957477260601 40.86280920791844, -73.89016968094201 40.8621221162332, -73.8901878074362 40.862131162704216, -73.89071007708648 40.861497969907205, -73.89071455686029 40.86150019115819, -73.89075764037705 40.86152477392769, -73.8907960973918 40.86155344052933, -73.8908292609497 40.861585695066736, -73.89085655434104 40.86162097689384, -73.89087750768203 40.86165867593818, -73.89089175434798 40.861698138100444, -73.89089904992949 40.861738678779105, -73.89089835537092 40.86177163607526, -73.89089025102336 40.861804019055334, -73.89087497566145 40.86183487342366, -73.89085297792553 40.86186329100696, -73.89082490679117 40.86188843585979, -73.88957477260601 40.86280920791844)))",X042,6332,X042,X-06,X-06,X-06,X-06,Webster Ave. bet. E. Fordham Rd. and E.,207,15,52,10458,X,0.745,False,Rose Hill Park,Yes,100004779,PARK,20100106000000.00000,18960620000000.00000,,DPR,True,Rose Hill Park,Y,Rose Hill Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X042/,No,78,34,15,{6BDF9510-33D0-46D9-9B1A-4530BEB5FAF9} +"MULTIPOLYGON (((-73.9147960786935 40.886428174011094, -73.9148816207955 40.88615570676596, -73.91456678631302 40.88609790337387, -73.91499649163893 40.88577674702349, -73.91602215662722 40.88500979086449, -73.91604781951281 40.885016479436494, -73.91855511679535 40.88565604536903, -73.91851269408019 40.88578174132376, -73.91849654360517 40.885849090796924, -73.91847697057823 40.885947873825245, -73.91845900846663 40.88608755717111, -73.91845486837936 40.88616904554878, -73.91845467383251 40.88617287878118, -73.91845288191125 40.88625627784722, -73.91845866538358 40.886367268658375, -73.9184735679098 40.88658234319877, -73.91800104088314 40.886460245635185, -73.91792908347267 40.88711760249413, -73.91680538833174 40.886917609612276, -73.91677222769034 40.88688846308467, -73.91676126778236 40.88687883078572, -73.9167209712529 40.88684878311316, -73.91668623114195 40.8868302530528, -73.91663206124707 40.88680807728931, -73.91657135605082 40.88679146718402, -73.9164329578438 40.88676217690783, -73.91553926495335 40.8865665432427, -73.91553065902389 40.886564652227456, -73.9147960786935 40.886428174011094)))",X201,4822,X201,X-08,X-08,X-08,X-08,"W 232 St , Independence Av , W 235 St ,",208,11,50,"10463, 10471",X,11.689,False,Seton Park,Yes,100004694,PARK,20100106000000.00000,19590528000000.00000,751 WEST 232 STREET,DPR,True,Seton Park,Y,Seton Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X201/,No,81,34,16,{E354DD98-F8BB-4EE8-8502-7E1F76A8426A} +"MULTIPOLYGON (((-73.92240136423838 40.834105176368105, -73.92357060920169 40.832108669968626, -73.92518206058661 40.83266986857541, -73.9242197582474 40.83447747566169, -73.92397847985873 40.83480837373171, -73.92331398263663 40.83458765127569, -73.92332250993701 40.834542050505526, -73.92331553504317 40.83449366140276, -73.92329355606103 40.834449581992814, -73.92326601158793 40.834418079683246, -73.92323253945186 40.83439244194374, -73.92318995855557 40.834370711677224, -73.92240136423838 40.834105176368105)), ((-73.92366211651441 40.83193253526212, -73.92433131541121 40.83079999702723, -73.92623735615052 40.83144253824302, -73.92531931522643 40.83243393427388, -73.92527973297021 40.83250532146807, -73.92366211651441 40.83193253526212)))",X034,6586,X034,X-04,X-04,X-04,X-04,Jerome Av to River Av bet. E 164 St and McClellan St at Cromwell Ave,204,16,44,10452,X,15.049,False,Mullaly Park,No,100005122,PARK,20100106000000.00000,19240808000000.00000,1015 RIVER AVENUE,DPR,True,Mullaly Park,Y,Mullaly Park,Large Park,Community Park,http://www.nycgovparks.org/parks/X034/,No,84,29,15,{AA14B9DD-C359-4C9C-BB10-BF7B23C78379} +"MULTIPOLYGON (((-73.91255489170544 40.83834462692534, -73.91264088916073 40.83822706056937, -73.91267945720881 40.83824212262081, -73.91263913182782 40.83829761203839, -73.9126404799649 40.83829759504962, -73.91263514312082 40.83830309752775, -73.91259388641048 40.83835986852687, -73.91255499754402 40.83834529066962, -73.91255489170544 40.83834462692534)))",X226,5684,X226,X-04,X-04,X-04,X-04,E 170 St bet. Grant Av and Sheridan Av,204,16,44,10456,X,0.013,False,Park,No,100004861,PARK,20100106000000.00000,19670621000000.00000,,DPR,True,Park,N,Park,Parking Lot,Undeveloped,http://www.nycgovparks.org/parks/X226/,No,77,33,15,{B807B3E6-B693-4251-89B5-71AB7C60C5B6} +"MULTIPOLYGON (((-73.8750311917919 40.730976299914786, -73.87504746462055 40.73097211039447, -73.87491035333531 40.73107121026172, -73.87490537001564 40.73106723990582, -73.8750311917919 40.730976299914786)))",Q360V,6135,Q360V,Q-04,Q-04,Q-04,Q-04,"Van Horn St. at 59 Ave., LIE",404,25,110,11373,Q,0.002,False,N/A,No,100008342,PARK,20110712000000.00000,19531229000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q360V/,No,35,16,6,{9F473963-74EB-462A-8FEB-98CF8F3BC083} +"MULTIPOLYGON (((-74.2112474349049 40.530318751784414, -74.21673682713825 40.528793376002305, -74.2167800822522 40.52889525961115, -74.21801184554725 40.53246142600629, -74.21810019516872 40.53445302056184, -74.21181923872808 40.53513762049665, -74.21146541989546 40.532389154127536, -74.2112474349049 40.530318751784414)), ((-74.20709449199974 40.53146489754413, -74.2109906642865 40.53040686629446, -74.21121983955528 40.532414428421795, -74.21153427648844 40.5351686720473, -74.20826428268973 40.535523154477055, -74.20719426946914 40.53181106412377, -74.20709449199974 40.53146489754413)), ((-74.22115010138353 40.53536185309043, -74.22093169718188 40.5339463778608, -74.21878988372872 40.53417157675717, -74.21833763475509 40.53421912299787, -74.21820099614312 40.53319189479012, -74.21818913487016 40.53310272160248, -74.21819585886678 40.532866650998315, -74.21817145545486 40.532358910802444, -74.21815112837143 40.532300456376944, -74.2192235664451 40.53244512617356, -74.21951122977924 40.53248392879826, -74.2214312672996 40.53274290564101, -74.22160624466996 40.53276650502473, -74.22173819658705 40.53278430228265, -74.22193822344245 40.53281127929598, -74.22187920527898 40.53303833875462, -74.22201544939493 40.533056890148714, -74.22211815651112 40.53307087484201, -74.22220316702386 40.53308245145696, -74.22228998772246 40.533094271249475, -74.22237319166643 40.533105600888995, -74.22237956681177 40.53310646925949, -74.22236556864232 40.533160326481536, -74.22244397626115 40.533171002569134, -74.22253452845925 40.53318333185147, -74.22264964966347 40.53319900661659, -74.22280060241609 40.53321956015075, -74.22292313565337 40.53323624326012, -74.22314895399708 40.53326698813451, -74.22320116568662 40.53327409718778, -74.22326577231038 40.53355282892933, -74.22328683647626 40.53365310705666, -74.22334866240004 40.53393128132128, -74.22341115020077 40.534244884728054, -74.22343620842108 40.53438032526612, -74.2234929461853 40.53470684621066, -74.22356908802527 40.53522618691655, -74.22312322807937 40.535251195679315, -74.22302854294061 40.53525650727006, -74.22293385896411 40.53526181787991, -74.22288021591379 40.53526482623854, -74.22285420805564 40.53526628515332, -74.22275952405145 40.53527159561941, -74.22267135527724 40.53527654126423, -74.22259385801541 40.53528089611638, -74.2225163217457 40.535285236583356, -74.22243918318105 40.535289562719484, -74.22179379237886 40.53532575728378, -74.22115010138353 40.53536185309043)))",R106,5076,R106,R-03,R-03,R-03,R-03,"Richmond Pkwy., West Shore Expw., Lenevar Ave., Ramona Ave.",503,51,123,10309,R,138.1,False,Bloomingdale Park,No,100003819,PARK,20100106000000.00000,19680813000000.00000,299 BLOOMINGDALE ROAD,DPR,True,Bloomingdale Park,Y,Bloomingdale Park,Large Park,Community Park,http://www.nycgovparks.org/parks/R106/,No,62,24,11,{1FA3498D-4E9F-401E-BFD0-915ACD708768} +"MULTIPOLYGON (((-73.93160144190735 40.68006035000778, -73.93148968534568 40.679516530267556, -73.93425588805736 40.67966537821999, -73.93427435568356 40.67975210562757, -73.93160144190735 40.68006035000778)))",B038,4625,B038,B-03,B-03,B-03,B-03,Chauncey St. bet. Lewis Ave. and Stuyvesant Ave.,303,36,81,11233,B,1.987,False,Fulton Park,Yes,100003930,PARK,20100106000000.00000,19040715000000.00000,70 CHAUNCEY STREET,DPR,True,Fulton Park,Y,Fulton Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/B038/,No,56,25,8,{137CE234-4E56-428F-96FB-6DF872DD0D22} +"MULTIPOLYGON (((-73.87126192104036 40.75620091065167, -73.87124997705347 40.756132893780844, -73.87160743366034 40.75609476278834, -73.87161937918967 40.7561627796238, -73.87126192104036 40.75620091065167)))",Q495,5938,Q495,Q-03,Q-03,Q-03,Q-03,97 St. bet. Northern Blvd. and 34 Ave.,403,21,115,11368,Q,0.057,False,97th Street Block Association,No,100000213,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,97th Street Block Association,N,97th Street Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q495/,No,35,13,14,{49462FFB-8D8C-48E6-B1C8-E2CF23D07025} +"MULTIPOLYGON (((-74.01202524585769 40.64910554894458, -74.01174659904292 40.64893664243619, -74.01183130322481 40.64885583480822, -74.01251010424657 40.64926735986378, -74.01205641186077 40.64969550897449, -74.01165825286824 40.64945574309525, -74.01202524585769 40.64910554894458)))",B210J,6643,B210J,B-07,B-07,B-07,B-07,3 Ave. bet. 47 St. and 46 St.,307,38,72,11220,B,0.736,False,Pena Herrera Park (PS 1),Yes,100004461,PARK,20100106000000.00000,19570725000000.00000,4601 3 AVENUE,DPR/DOE,True,Pena Herrera Playground,Y,Pena Herrera Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B210J/,No,51,25,7,{1AA411CC-F582-4D83-B9C9-E1CFA70F9D32} +"MULTIPOLYGON (((-73.94153372288157 40.58362862191477, -73.94146409965556 40.58331331124861, -73.9413312435427 40.58331375498259, -73.94127797913578 40.58309665648162, -73.94202994462266 40.58310667215224, -73.94202960109678 40.58310373446989, -73.94215332107002 40.583104137224744, -73.94215431905137 40.58310832876552, -73.94833263581253 40.58319043018604, -73.94838670796156 40.583495587093275, -73.94821497173001 40.58351100333016, -73.94803128024888 40.58351671436103, -73.94777944752205 40.5835245436983, -73.94755976652162 40.58353137227236, -73.94748623319104 40.58353365843629, -73.94742145005608 40.58353567209694, -73.94730692613562 40.58353923163235, -73.94718549700835 40.58354300580643, -73.94704718049464 40.58354730518047, -73.94693817029678 40.583550693088235, -73.94680663846782 40.58355478098118, -73.94672055265059 40.58355745707345, -73.94654116278447 40.58356303173768, -73.94644034168137 40.583566164532726, -73.9463056087836 40.58357035121857, -73.94616805643886 40.5835701598795, -73.94603565304715 40.58356521062515, -73.94590597215326 40.58356036245817, -73.94585709275404 40.5835585356855, -73.94576386000941 40.5835550499107, -73.94556002266705 40.58354742963181, -73.9453520561847 40.5835396539383, -73.94521192958767 40.5835344145949, -73.94511777445723 40.58353089453656, -73.94495669842365 40.583524871323014, -73.94479850198132 40.58351895642945, -73.94466056408008 40.583513798512236, -73.944469414542 40.583506650681144, -73.94425408641695 40.58349859748365, -73.94410849851144 40.583493153327694, -73.94400767846143 40.583489382373656, -73.94384995935835 40.583483483516545, -73.94372389817981 40.58348382887716, -73.9431789858599 40.58351078892445, -73.94286992994606 40.5835260787501, -73.94270687896062 40.58353414459897, -73.94247915346709 40.58354540983636, -73.94209612302302 40.58357807215164, -73.94153372288157 40.58362862191477)))",B393,6192,B393,B-15,B-15,B-15,B-15,Emmons Ave. bet. Ocean Ave. and E. 26 St.,315,48,61,11235,B,1.22,False,Sheepshead Bay Piers Sidewalk,No,100005196,PARK,20100106000000.00000,19940303000000.00000,,DPR/EDC/DBS,False,Sheepshead Bay Piers,Y,Sheepshead Bay Piers,Neighborhood Park,Waterfront Facility,http://www.nycgovparks.org/parks/B393/,Yes,45,22,8,{CF8D84C5-582D-4531-B751-2A651B8A6FA3} +"MULTIPOLYGON (((-73.75678292379457 40.738066296129034, -73.75678696252217 40.73806519883102, -73.75707657457858 40.73867502554212, -73.75639684422895 40.738861901873285, -73.7561069089872 40.73824998809004, -73.75616007756005 40.73823554121675, -73.75678292379457 40.738066296129034)))",Q349,5513,Q349,Q-11,Q-11,Q-11,Q-11,75 Ave. bet. Bell Blvd. and 217 St.,411,23,111,11364,Q,1.056,False,Telephone Playground,Yes,100000192,PARK,,19500526000000.00000,75-25 BELL BOULEVARD,DPR/DOE,False,Telephone Playground,Y,Telephone Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q349/,No,24,11,6,{89364889-8B62-4D6B-87CD-EE020C0E1495} +"MULTIPOLYGON (((-73.8633642537271 40.7483089603027, -73.86336749284187 40.748308635459956, -73.86337481379627 40.748309882341616, -73.86337583248748 40.74831027166861, -73.86338457123564 40.74831360670674, -73.86339162990956 40.74831630129195, -73.86339595195646 40.74831795164473, -73.86339731841059 40.748320246857396, -73.86339859754433 40.748322395183735, -73.8634000088402 40.74832476519164, -73.86340649231471 40.7483371503531, -73.86340700287323 40.748338197348, -73.86345754125709 40.748441793093335, -73.8634597652489 40.74845031632947, -73.86345996379443 40.74845107929448, -73.86345971103091 40.748452505398355, -73.86345884374535 40.74845739052262, -73.863458317849 40.74846035977215, -73.86345423422584 40.748467162766055, -73.86344934332115 40.74847210525525, -73.86344715879825 40.74847321028937, -73.86344465661608 40.748474474336575, -73.86344445511267 40.74847457675554, -73.86344146120373 40.7484754259864, -73.86343142621608 40.74847827319907, -73.86337362077535 40.74849553310701, -73.86335643976648 40.748500735668046, -73.86332476608689 40.74851032721238, -73.86331662412003 40.74851217259575, -73.86330848832709 40.748512162940926, -73.86330724197998 40.7485119246284, -73.86330198080707 40.74851091972197, -73.86329547210867 40.74850967379979, -73.86328793069181 40.74850679493235, -73.8632873426639 40.74850657090856, -73.86328667692118 40.748506135173365, -73.86328165369146 40.74850285046411, -73.86327759282517 40.7484991319519, -73.86327584285759 40.748497351372826, -73.8632727210399 40.748494174279536, -73.86327028954598 40.74848984085377, -73.86326949132584 40.748482414323355, -73.86326868929851 40.748476842833355, -73.86327277311244 40.74846880254929, -73.86327523364082 40.74846014259018, -73.86328162378022 40.7484435736376, -73.86328668541405 40.748430450249614, -73.86329463250495 40.748406431446625, -73.86329569052911 40.748403233200044, -73.86329843554529 40.748395574041574, -73.86330633118872 40.74837354169565, -73.8633128437439 40.74835443435643, -73.86332024734226 40.748332715702524, -73.86332085000663 40.748331576375456, -73.86332351624117 40.748326531295476, -73.86332673010443 40.748322354954254, -73.86332922687488 40.74831910978713, -73.8633381862573 40.74831417032919, -73.86334633192519 40.74831108585065, -73.86334831107338 40.74831081444455, -73.86335528487392 40.748309859175265, -73.8633642537271 40.7483089603027)))",Q173,5767,Q173,Q-04,Q-04,Q-04,Q-04,"41 Av, 102 St, National Av",404,21,110,11368,Q,0.009,False,American Triangle,Yes,100000400,PARK,20090423000000.00000,,,DPR,False,American Triangle,Y,American Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q173/,No,39,13,14,{1ACCAF56-10DE-412B-AE2B-33C58FA4A527} +"MULTIPOLYGON (((-73.90323929709113 40.8900457512099, -73.90319344294952 40.890042733956044, -73.90317041065852 40.89004462636868, -73.90312684188837 40.89005058254486, -73.90310081897128 40.890056811874466, -73.9030653099035 40.890069867919124, -73.90304073867927 40.89008145364292, -73.90300725721488 40.890102829159495, -73.90298813970719 40.89012165125541, -73.90297136196955 40.890138170071424, -73.9029556001596 40.890157800016766, -73.90294339263247 40.89017714389255, -73.90295432474895 40.89012434680031, -73.90296195506492 40.89008988532285, -73.90297285179771 40.89003204367718, -73.90297715411504 40.889997285842306, -73.90297903038038 40.88997597472262, -73.90298095874783 40.88994335444602, -73.90298329588165 40.889903833189884, -73.90298545175109 40.889867367129284, -73.90298836193858 40.889818134615, -73.90298993990835 40.88979144104025, -73.90299201668125 40.88975631843708, -73.90299426741464 40.889718263097585, -73.90299542931304 40.889698594762805, -73.90299684544874 40.889674650234525, -73.90299793309373 40.889656263228446, -73.90299917891589 40.88963518930554, -73.90300008894711 40.88961979716589, -73.9030014284532 40.88959713486456, -73.90300259153524 40.889577465629785, -73.90300383735314 40.88955639260701, -73.90300498948253 40.889536909763414, -73.90300667277494 40.88952422693455, -73.9030199309499 40.88949630140209, -73.90303075422385 40.88948220978733, -73.90304169225944 40.8894748548025, -73.90305698816502 40.88946456879331, -73.9030755371799 40.889457891058996, -73.9030927375337 40.88945331572439, -73.90309787028596 40.88945442763102, -73.90310979151513 40.8894514705374, -73.9031285111353 40.88945148174663, -73.90316533416441 40.88945909023216, -73.90319812467436 40.88947274298704, -73.90320280886394 40.88947469376559, -73.90321517394268 40.8894798414058, -73.90323187930973 40.88948679815752, -73.90325758663508 40.88949750126892, -73.90329744498258 40.889514096403175, -73.90334645584677 40.88953210304515, -73.90339047266953 40.889548273898384, -73.90344579169962 40.889568597324605, -73.90349209491485 40.88958491863158, -73.90353575375525 40.88959843089579, -73.90357846851015 40.88961165059739, -73.90361964377598 40.88962439354121, -73.90365505005722 40.889635351394865, -73.90368185266256 40.88964364652608, -73.90371844506457 40.88965412539097, -73.90374351899823 40.88966065771568, -73.90378064892549 40.8896703310743, -73.90382280338014 40.88968131341148, -73.90384662950812 40.889687520499166, -73.903897771453 40.889699181157134, -73.90392890216853 40.88970627768566, -73.90397215769283 40.88971571204904, -73.90400824472651 40.88972287931523, -73.90405603535507 40.88973237054714, -73.9041150933981 40.88974303274604, -73.90414612275079 40.8897480391042, -73.90418284288101 40.88975396327064, -73.90418986956082 40.8897574891021, -73.90419868561412 40.88976102362217, -73.90420734234563 40.889764779528846, -73.90421583027559 40.889768747809434, -73.90422414109659 40.889772929357534, -73.9042322653276 40.88977731606103, -73.90424019347856 40.88978190611105, -73.90424791606836 40.8897866913954, -73.90425542716791 40.889791669207774, -73.90426271610708 40.88979683323591, -73.90426977577916 40.88980217446915, -73.90427659906337 40.889807693802126, -73.90428317767034 40.88981337952166, -73.90428950329785 40.889819228919464, -73.9042955735882 40.889825231187764, -73.90430137549009 40.889831385415356, -73.90430845439049 40.88984068429706, -73.904315111791 40.88985016382655, -73.90432134296853 40.88985980779122, -73.90432714081885 40.88986960537944, -73.90433128402526 40.88987729716081, -73.90433188994362 40.88987842236968, -73.90433740218309 40.88988962177697, -73.90434185742811 40.88989981446547, -73.90434585330098 40.889910118433285, -73.90434938626385 40.889920518369344, -73.90435721455218 40.88996566890765, -73.90436504404026 40.89001081764506, -73.9043728723537 40.890055965480094, -73.90437806102273 40.890085894719945, -73.9043812502174 40.890101838660435, -73.90437683308325 40.89010308397501, -73.90430749953458 40.89012564851975, -73.90425456436732 40.89014355490597, -73.90419820757924 40.89016518373751, -73.90414843045333 40.89018517551944, -73.90409968519577 40.89020629914717, -73.90406258917317 40.89022304797199, -73.90401496215719 40.89024627962978, -73.90396502378461 40.89027184970717, -73.90394387010328 40.89028340784945, -73.90382900383277 40.890350255211686, -73.90382050719938 40.89033094352036, -73.90381437127112 40.89031699708824, -73.90380006153491 40.8902951808029, -73.90378108662533 40.89027462761048, -73.90375664120357 40.89025426796056, -73.90372009806424 40.890233302994346, -73.90356582929827 40.89016106962405, -73.90350155004982 40.890136423640115, -73.90343726966385 40.890111776718825, -73.90337299051073 40.89008713066308, -73.90335896914405 40.89008175473136, -73.90335855052975 40.89008157878618, -73.90332042221301 40.8900655776437, -73.90331037646433 40.89006312260962, -73.90330871259194 40.89006248457244, -73.90329984526267 40.89005994407787, -73.90329086842766 40.89005763671673, -73.9032817927623 40.890055565199326, -73.90327262775278 40.890053734035995, -73.90327037259051 40.89005334583783, -73.90323929709113 40.8900457512099)), ((-73.9044643613234 40.88982415445284, -73.90446661272323 40.889790004493165, -73.90450251648754 40.889794304306314, -73.90451950779956 40.88979564387743, -73.90455097868734 40.889798124629365, -73.90457707134767 40.88980018130036, -73.90461109132099 40.88980247143915, -73.90463824296711 40.889804152568395, -73.90466422267122 40.8898055454684, -73.90470570099673 40.889807423013224, -73.90473487986941 40.889808743798014, -73.90477138043121 40.889809791465495, -73.90481143978975 40.88981070338142, -73.90485153900684 40.88981112635254, -73.90488304502664 40.889811458483834, -73.9049174421256 40.8898114192864, -73.90494178899672 40.889811212416646, -73.90496800359321 40.88981098906976, -73.90499581040753 40.88980841045619, -73.90503515483314 40.88980476164615, -73.90504906006791 40.889802606516575, -73.90508790357107 40.88979658539704, -73.90511755966445 40.889790279363154, -73.90514108987333 40.88978527669341, -73.90517459726925 40.88977590675527, -73.90519374246779 40.88977044482665, -73.90519380404098 40.889770535826294, -73.9052032566679 40.88976789255958, -73.90522920881007 40.889761982370274, -73.90525054267172 40.88976110119926, -73.90527209941594 40.88976368887831, -73.90528754764881 40.88976788701282, -73.90530186606422 40.88977387798596, -73.90531652916857 40.88978279852023, -73.90532280858993 40.88978782658044, -73.90533587613794 40.88980229279579, -73.90534212116147 40.88981314696954, -73.90534740243378 40.88983166798883, -73.90534650720521 40.88984121060268, -73.90534741831917 40.889841345522186, -73.90534505771089 40.889856674356274, -73.9053337760092 40.88987801562142, -73.90531989178885 40.88989207162203, -73.9052992905467 40.88990757369343, -73.9052764755199 40.88992361603683, -73.90526510879116 40.889930492722954, -73.90524760204983 40.88994108607547, -73.90522019878921 40.88995437455785, -73.90519840271642 40.8899639702446, -73.90516780621604 40.88997565322725, -73.9051462274856 40.889981775909206, -73.90511858395968 40.889989619833244, -73.9050969783333 40.88999379653423, -73.90505532901952 40.890000220567465, -73.9050273576075 40.89000333755038, -73.9049962553641 40.89000436912629, -73.90496788676475 40.890005596548846, -73.90492595403148 40.89000773398998, -73.90486907854564 40.890010632619095, -73.9048338978973 40.89001419025438, -73.9048039698975 40.8900172155215, -73.90476790747199 40.890020861557524, -73.90473435622918 40.8900259252184, -73.90469964186175 40.890031164404455, -73.90465986673102 40.89003716751453, -73.90463593314963 40.89004203287894, -73.9046036636421 40.89004859146658, -73.90457087899301 40.89005525497609, -73.90455643266382 40.89005819212272, -73.90453726824852 40.89006206817427, -73.90453361601776 40.89006280715397, -73.9045102972941 40.89005182625314, -73.90449574320695 40.89004469587264, -73.90448321339474 40.89003265771725, -73.90447728916726 40.890019121215865, -73.9044759980624 40.88999853594416, -73.90447174081818 40.88997027067626, -73.90446892948336 40.88993331061389, -73.90446898259452 40.88989635292191, -73.90446563014574 40.88986023976825, -73.9044643613234 40.88982415445284)))",X055,5741,X055,X-08,X-08,X-08,X-08,"Manhattan College Pkwy, Dash Pl, Greysto",208,11,50,"10463, 10471",X,1.79,False,Brust Park,Yes,100003870,PARK,20100106000000.00000,18821230000000.00000,,DPR,True,Brust Park,Y,Brust Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X055/,No,81,34,16,{B52F548E-1FE7-463B-A513-1B5C3A6C6040} +"MULTIPOLYGON (((-73.97182711049231 40.60148673645253, -73.97181177987402 40.60140522642988, -73.97179645047503 40.60132371550432, -73.97176578942634 40.601160693644566, -73.9717504577767 40.60107918271034, -73.97140438936489 40.60111765028045, -73.97138647900728 40.601022413796265, -73.97173254575426 40.600983946279385, -73.97171568292131 40.60089428433568, -73.97170035257547 40.600812773392924, -73.97168502226704 40.60073126244745, -73.97166867940993 40.60064436702709, -73.9716536438784 40.600564420355916, -73.97163859305458 40.60048440163659, -73.97162370140768 40.600405218638635, -73.97160837010453 40.600323708579964, -73.97159304002113 40.60024219671776, -73.97157770997434 40.60016068665398, -73.97156237996536 40.60007917568695, -73.97154194119332 40.59997049379333, -73.97152175827657 40.599863181652736, -73.97153425971065 40.59986179074136, -73.97162224114835 40.59985201121503, -73.97170577422162 40.59984272671408, -73.97179687948808 40.59983259932093, -73.971949743926 40.59981560605508, -73.972092495861 40.599799737584576, -73.97215929882336 40.59979231187077, -73.97223013067098 40.59978443773106, -73.97230119880082 40.59977653748949, -73.97237175650802 40.59976869381418, -73.97237318139089 40.59976853566478, -73.97238020567944 40.599761315164024, -73.97240990733005 40.59976360242102, -73.97247160137728 40.59976835486361, -73.97253209630898 40.59977301513324, -73.97266558426679 40.5997832976065, -73.97243788957756 40.60146405721838, -73.97231639247374 40.60145403672251, -73.97224227546543 40.60144792501156, -73.9721419035612 40.60143964743935, -73.97214022074793 40.60145193105459, -73.97190048327677 40.60147857947521, -73.97182711049231 40.60148673645253)))",B244,5133,B244,B-15,B-15,B-15,B-15,Mcdonald Ave. between Ave. S and Ave. T,315,47,61,11223,B,3.485,False,McDonald Playground,Yes,100004153,PARK,20100106000000.00000,19490608000000.00000,2099 MC DONALD AVENUE,DPR,True,McDonald Playground,Y,McDonald Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B244/,No,45,22,11,{A65266B8-D438-41E8-B090-C64858117CE3} +"MULTIPOLYGON (((-73.91732690349966 40.809870483218376, -73.91675148374676 40.80968042153815, -73.9167516604866 40.809681249223566, -73.91630809539154 40.80953396677371, -73.91634463508632 40.80947088097616, -73.91641739001483 40.8093452701196, -73.91645289379997 40.80928397102393, -73.91649408556391 40.80921285430243, -73.91642804878741 40.809190927045506, -73.91648581054744 40.80909119999909, -73.91663782961851 40.809146860858206, -73.91666698954445 40.809083195100584, -73.91788921361825 40.80959378468382, -73.9178097720637 40.80973094958943, -73.91747256702816 40.809618987494616, -73.91732690349966 40.809870483218376)))",X103,4682,X103,X-01,X-01,X-01,X-01,E. 141 St. bet. Brook Ave. and St Ann's Ave.,201,8,40,10454,X,1.394,False,People's Park,Yes,100004098,PARK,20100106000000.00000,19300305000000.00000,535 EAST 141 STREET,DPR,False,People's Park,Y,People's Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X103/,No,84,29,15,{44117077-122C-488A-BCB7-58471185E76B} +"MULTIPOLYGON (((-73.97693043384864 40.64825836330564, -73.97727588720453 40.64822104708849, -73.97731633170604 40.64843538369331, -73.9772316024732 40.64844440814822, -73.97710347695659 40.64849430921421, -73.97710495762834 40.64849650767264, -73.97705000034765 40.64851791193048, -73.9769941384473 40.64853966898397, -73.97696382600213 40.648551475007, -73.97694294819335 40.64844053424623, -73.97693512626337 40.64839896387969, -73.97702592332028 40.648389155603965, -73.97701748094109 40.648377592170235, -73.97697958481042 40.64832568595384, -73.97694206453228 40.64827429399565, -73.97693043384864 40.64825836330564)))",B414,6218,B414,B-07,B-07,B-07,B-07,E. 4 St. between Caton Ave. and Fort Hamilton Pkwy.,307,39,72,11218,B,0.184,False,E 4th Street Garden,No,100004013,PARK,20100106000000.00000,19980618000000.00000,,DPR,False,E 4th Street Garden,N,E 4th Street Garden,Sitting Area/Triangle/Mall,Garden,http://www.nycgovparks.org/parks/B414/,No,44,21,9,{C613DEA3-34B0-42D1-A461-31CCD9502022} +"MULTIPOLYGON (((-73.77465896635127 40.7244105239736, -73.77485401487552 40.72477102034355, -73.77508691264228 40.72520184374961, -73.77509239497223 40.725212490406406, -73.7753412935532 40.72569587768753, -73.77735439566987 40.730089380688405, -73.77496600749768 40.730735190790206, -73.77042030437448 40.73154830979946, -73.7702403430372 40.73158006220422, -73.76831696391552 40.72887779929825, -73.76827083192953 40.72881298308438, -73.7682597038234 40.72878162017696, -73.76820219029969 40.72866986706408, -73.76815290343004 40.728555861195225, -73.76811199465783 40.7284399531849, -73.7680795905463 40.72832249899919, -73.76805579041451 40.72820385905011, -73.76804066515167 40.7280843990936, -73.76803426433851 40.727964484840925, -73.76803448864764 40.72789766460757, -73.76803452302255 40.72788744926966, -73.76803538731163 40.72786971542864, -73.7680400576722 40.72779574778274, -73.76804804894968 40.72772194441542, -73.76805509909838 40.727645437615124, -73.76807948365217 40.72750868095629, -73.76809819769254 40.72742886124684, -73.76812337380314 40.72733876079453, -73.76816382621624 40.72721852844543, -73.76818701765815 40.727158549709465, -73.76822910695799 40.72706110538529, -73.76826021510715 40.72699629421192, -73.76832269476328 40.726879732494396, -73.76838364238161 40.726779211182404, -73.76843820425412 40.72669763097278, -73.76848629705356 40.726631058270875, -73.76858203590308 40.726520811029154, -73.76866534929172 40.72642487129364, -73.7687464189572 40.72634712363848, -73.76879699200752 40.72630414920285, -73.76884429144312 40.726267164683016, -73.76886776721685 40.726249844533356, -73.768946563084 40.7261961889753, -73.76901061030033 40.72615716231256, -73.76905865090157 40.726130650345986, -73.769090942542 40.72611404572921, -73.7691164989429 40.72610155824715, -73.76913190844442 40.72609429679819, -73.76915040676944 40.72608583845582, -73.7691784446705 40.72607354234111, -73.7693542749101 40.72600208514992, -73.76977085798222 40.72591020394336, -73.77018553554241 40.72581346456778, -73.77059821036065 40.72571189206433, -73.77100878521821 40.7256055087739, -73.77141716407287 40.725494339742696, -73.77182324850808 40.72537841271477, -73.77228791325848 40.72523905533359, -73.77274926528273 40.72509346790187, -73.7732071587333 40.72494169429717, -73.77366145011608 40.724783783806565, -73.77411199949886 40.72461978392513, -73.77438622819965 40.72451628182487, -73.77465896635127 40.7244105239736)), ((-73.76009741198472 40.72617305142651, -73.76021680621649 40.72616861746134, -73.76034913802714 40.726171120832305, -73.76049280289867 40.72618272298884, -73.76072977667044 40.72620980780101, -73.76336906475846 40.726505227016276, -73.76358501442087 40.72653011141396, -73.76379813335346 40.72655084634271, -73.7639585257562 40.726563964329834, -73.76411250205726 40.726574561923314, -73.76442620165571 40.726894773405526, -73.76504205820936 40.727523404102506, -73.76537799232008 40.727606882175195, -73.76691460167295 40.7282703303424, -73.7669988483236 40.728310306175466, -73.76708511153333 40.72835519741736, -73.76716783944802 40.72840235253658, -73.76724201659832 40.72844838898552, -73.76730083493051 40.72848766392305, -73.7673567253015 40.72852747052013, -73.76741560257997 40.72857228006323, -73.76747017481212 40.72861672247847, -73.76752596111162 40.728665383514965, -73.76777223853449 40.728888538318415, -73.76970808968437 40.73165481303957, -73.76663451859717 40.73217345049171, -73.76656199164282 40.73217433637475, -73.76648655175323 40.732169033393646, -73.76640592988005 40.73215611683329, -73.76633530850951 40.732138193854716, -73.76626711228725 40.73211433237968, -73.76620592601472 40.732086566971255, -73.76613971972625 40.73204823463947, -73.76608524563387 40.73200833489824, -73.76365568752311 40.73007475631702, -73.76349372286344 40.7299429364438, -73.76335502976848 40.72983356980142, -73.76315501769228 40.729681255742925, -73.76298100477406 40.72955366977617, -73.76281407378451 40.72943536529821, -73.76262890955992 40.729308604104205, -73.76245289944146 40.72919226420738, -73.76226041286868 40.72906946396837, -73.75978758850266 40.727480242873256, -73.75971124943756 40.727424895701176, -73.75961885259207 40.7273504421073, -73.7595424017902 40.727281526570756, -73.75946045587852 40.727198651469145, -73.75938434829551 40.727111158074294, -73.75932575948715 40.72703486399675, -73.75926176962004 40.72693955688666, -73.75922099170506 40.72686995477618, -73.7592003916114 40.72683004241611, -73.759184902315 40.72678828388477, -73.75917519948192 40.72674703183496, -73.75917065010537 40.726702605450896, -73.75917154074314 40.726664144631975, -73.75917681844047 40.72662625851021, -73.75918753035921 40.726585454386836, -73.75920527542065 40.72654146995284, -73.75922651339876 40.72650309220558, -73.75924908718402 40.72647076598866, -73.75927855752813 40.72643636319591, -73.75931875240714 40.72639859058333, -73.75935929246985 40.72636781475841, -73.75940285532724 40.72634073103251, -73.7594497131702 40.72631702839362, -73.75949586679587 40.726298214947306, -73.75961393827782 40.726258901100195, -73.7597484227877 40.72622348097592, -73.75986037041876 40.72620101979417, -73.75998289715362 40.726183328057644, -73.76009741198472 40.72617305142651)), ((-73.76781366457061 40.738032174246165, -73.76789889635826 40.73799968003048, -73.768043870773 40.738132516483105, -73.7681829207852 40.738268968981565, -73.76831589063927 40.73840888414706, -73.76844262932025 40.73855210590844, -73.76856299766649 40.73869847281511, -73.7686768600733 40.73884782072157, -73.76878408803844 40.73899998459566, -73.7688845613711 40.73915479131649, -73.76981593552735 40.741181727885824, -73.76986175609518 40.7413310457026, -73.76989870887542 40.7414817784923, -73.76992671790437 40.74163362173933, -73.76994572616263 40.74178627006342, -73.769955696775 40.741939412719454, -73.7699566082476 40.74209274169247, -73.7699484604035 40.74224594720701, -73.76993126727358 40.742398719513815, -73.76990506419777 40.74255074980469, -73.76986990545461 40.74270173110819, -73.76982586071321 40.74285135738212, -73.76971745878265 40.74292126520068, -73.76961437724819 40.74299568250763, -73.76951694013945 40.743074376733574, -73.76942545378753 40.74315709906466, -73.76934020561923 40.7432435907437, -73.7692614629823 40.74333358036595, -73.76918947432904 40.74342678388145, -73.7691244644681 40.743522908187046, -73.76906663929337 40.743621652936916, -73.76901617987666 40.7437227069285, -73.76891037427438 40.74394800847502, -73.76881183945004 40.74417520838001, -73.76872063158342 40.74440417259868, -73.76863680687268 40.744634762582486, -73.7685604144082 40.7448668415684, -73.76854491928529 40.74493019821357, -73.76852073540998 40.74499196150178, -73.76848813155355 40.7450514439784, -73.76844747112446 40.74510798359191, -73.7683992074086 40.745160950888476, -73.76834387525044 40.74520975800104, -73.76828209223126 40.745253860453126, -73.76821454442697 40.74529276703629, -73.76814198401479 40.745326047009996, -73.76806521743893 40.74535332827728, -73.76798510063313 40.74537430908221, -73.76790252364327 40.74538875347683, -73.76781840466529 40.74539650301605, -73.76773368059389 40.745397470435435, -73.7672093902135 40.74431640352053, -73.76714250770598 40.74419554236053, -73.76702382532956 40.74402726449842, -73.76693082575912 40.74392056582589, -73.76680450112812 40.74379879350859, -73.76666808746182 40.74368904222993, -73.76655558083921 40.74361157210128, -73.76636615331914 40.74350220107065, -73.76618300080013 40.743417004049235, -73.76607580373135 40.74335619465639, -73.76598784466135 40.743299671958844, -73.7658946420184 40.743232319807376, -73.76581339108367 40.743166215675366, -73.76571973220557 40.743079551914654, -73.76565224300532 40.74300842199718, -73.76555886726794 40.742893905901504, -73.76549598593856 40.74280207533783, -73.76543693526074 40.74269939689036, -73.76538435124664 40.742586074046656, -73.76378409316143 40.739238039945555, -73.76607307944558 40.738657179443045, -73.76781366457061 40.738032174246165)), ((-73.77236688734439 40.742262169248804, -73.77222964373584 40.74225905769866, -73.77209240237057 40.74226221624054, -73.77195565697184 40.74227163144395, -73.77181990014442 40.74228727096788, -73.77168562221271 40.74230907725466, -73.77155330647015 40.742336972023246, -73.77142343036702 40.74237085537087, -73.77125771594942 40.74239763531617, -73.77109332314048 40.74242877071538, -73.77098842056141 40.74230858361742, -73.77088986433817 40.74218532750073, -73.77079781006267 40.742059197201414, -73.7707124026579 40.74193039023512, -73.7706337763691 40.74179910949871, -73.77056205358572 40.741665561466576, -73.76964489968988 40.73959240125306, -73.76955647424482 40.73933651000589, -73.76947688608394 40.73907894701238, -73.7694061865979 40.738819887092745, -73.76934442597816 40.738559508665006, -73.7692916473101 40.73829799013105, -73.76924788420608 40.73803550987169, -73.76921316789931 40.73777224896266, -73.76918752252443 40.73750838666216, -73.76982563470409 40.737261791951326, -73.77036074407675 40.73709096264548, -73.77274584851808 40.736423683385716, -73.77309359144695 40.73725397264059, -73.77328556559824 40.73777537264306, -73.77389859226764 40.739596370703886, -73.77417868749907 40.740363416570766, -73.77441960990532 40.74091854173971, -73.77537532822653 40.7429351828138, -73.7754084325391 40.743005034184044, -73.7752479841216 40.74304562324612, -73.7751334882374 40.7430406477664, -73.77501968566686 40.743029865238746, -73.77490708421044 40.74301332258359, -73.77479618802377 40.74299109373148, -73.77468749288445 40.742963278713155, -73.77458148383256 40.74293000095352, -73.77447863634188 40.742891410875416, -73.7743794092371 40.74284767958251, -73.77428424586493 40.74279900246295, -73.77415834269976 40.74272979459934, -73.77402749213714 40.74266611682687, -73.7738921137803 40.742608172567344, -73.77375264149262 40.742556148162436, -73.77360952222637 40.74251020926921, -73.77346321364301 40.74247050445822, -73.77331418649686 40.74243716071533, -73.77316291634493 40.742410284326496, -73.77303592358886 40.74237057829144, -73.77290602682476 40.742336740416334, -73.77277369446693 40.742308890482946, -73.77263940327619 40.742287130281355, -73.7725036383812 40.742271537306415, -73.77236688734439 40.742262169248804)), ((-73.76844609648974 40.73227483101945, -73.76994790679936 40.7320040874691, -73.7699711489771 40.732004871418724, -73.76999142954676 40.73200764588182, -73.77001683659923 40.732012969121534, -73.77003350820705 40.73201905565414, -73.77004888902249 40.73202767814822, -73.7700619540324 40.732037078560374, -73.77007486675394 40.73204944585186, -73.77066598521442 40.73289523305414, -73.77131257150934 40.733806457538954, -73.77154248411395 40.734169595622724, -73.77181046300659 40.734623658512184, -73.77205594323941 40.73505136508263, -73.77262927472756 40.736203245087964, -73.77253816259248 40.736229489748965, -73.770287643397 40.73684499633813, -73.76997952792493 40.73693865309554, -73.76974540549996 40.737029132309274, -73.7687079304701 40.73744478852608, -73.76798274992035 40.73563900323414, -73.76676397923387 40.732589127690474, -73.76844609648974 40.73227483101945)), ((-73.76470313095525 40.7345536014358, -73.76489448324891 40.73449331311571, -73.76767964245715 40.73773244993921, -73.7676980918255 40.7377668578483, -73.76770307500264 40.737784125286964, -73.76770344737236 40.737797867831226, -73.76770007647391 40.737812232281804, -73.7676943454534 40.737824398327405, -73.7676868530974 40.73783817633582, -73.76767750229249 40.7378498406981, -73.76766623274526 40.73785902748583, -73.76765010445502 40.73786788658946, -73.76599494148516 40.73843707457699, -73.7637386394304 40.739026575249106, -73.76280037311354 40.73703759655947, -73.76274144478812 40.736908809266765, -73.76269409275753 40.73674075740375, -73.76267666036956 40.73664498906006, -73.7626677098922 40.7365417360358, -73.76266950711198 40.73638748580803, -73.76268056804979 40.736272128828105, -73.76269562920228 40.73615843973024, -73.76271724870486 40.736068407059705, -73.76275674258062 40.7359489708009, -73.76282562853292 40.73581406935311, -73.76285828620982 40.73574759964549, -73.76289664828238 40.735650007402775, -73.76291010554344 40.73558202490938, -73.76291611866156 40.73553335565883, -73.76291319586227 40.73545047290236, -73.76286519302796 40.735119173272246, -73.7628463879052 40.73508151659379, -73.7629673714194 40.73504475016905, -73.76309542287711 40.73500583512992, -73.76317967325691 40.73498023128794, -73.76323430489153 40.73496666125725, -73.76336660585316 40.73493379708372, -73.76350070775871 40.73489880404642, -73.76363717407521 40.7348630241568, -73.7637746192579 40.73482691652644, -73.76391006755007 40.73479203383607, -73.76404909573533 40.73475578324092, -73.76414774634134 40.73472931038586, -73.76418574272498 40.73471728893125, -73.76431957379154 40.73467494801632, -73.76444607446044 40.7346349269774, -73.76458280172669 40.734591669557496, -73.76470313095525 40.7345536014358)), ((-73.75958389316129 40.72858473352687, -73.75973368189781 40.728494860792, -73.75987540615999 40.728565445897146, -73.76009859807884 40.728676605662926, -73.76055390791262 40.7289174866921, -73.76088284203519 40.72910181073874, -73.76131192761116 40.72935608613132, -73.76174569252281 40.729630152036286, -73.76209679701621 40.72986548021941, -73.76243060176894 40.73010126510925, -73.76278528089435 40.7303656589575, -73.76288859092759 40.73044757696676, -73.76298640862771 40.73052980686086, -73.76306828216323 40.73060246024192, -73.76314851900327 40.73067736778002, -73.76322380067654 40.7307513033257, -73.76331438897915 40.73084547416404, -73.76339068916926 40.73092971624666, -73.76346537202032 40.73101710044236, -73.76431396208135 40.731998846454054, -73.76435225589111 40.732054580938076, -73.76437940830243 40.732114225145985, -73.76439304968606 40.73216629721853, -73.76439794047498 40.73221368673624, -73.76438941553192 40.732297848206116, -73.76436375856879 40.73236998701022, -73.76433287428851 40.73242260282799, -73.76430405145983 40.73245934503868, -73.7642641742035 40.73249945864021, -73.7642302291915 40.732527114991925, -73.76417761707417 40.7325617246777, -73.7641219063116 40.73259014598123, -73.7640683216419 40.732611201828185, -73.76400988677602 40.73262828365927, -73.7637775685287 40.732682984362114, -73.76330644580311 40.732135241690166, -73.75986944624803 40.72885710661641, -73.75958389316129 40.72858473352687)), ((-73.76456512357487 40.7328741936016, -73.76462070461729 40.73287010904041, -73.7646877830422 40.73287197961585, -73.76476139190585 40.732879389931256, -73.76481745834823 40.73289273296302, -73.76490069287506 40.73292091603284, -73.7649707483892 40.73295507495354, -73.76505289123075 40.7330189483531, -73.7651165318143 40.73307629577091, -73.7659181751302 40.733961821349446, -73.76602892191059 40.73407407991496, -73.76622136942765 40.734323430586635, -73.76645162887863 40.73468829593873, -73.76658109058182 40.73493813237289, -73.76794163617183 40.737678794438196, -73.76518225441907 40.73440995371894, -73.76397741750799 40.73298254764489, -73.76456512357487 40.7328741936016)))",Q021,5330,Q021,Q-08,Q-08,Q-08,Q-08,"LIE., 73 Ave., Union Turnpike, GCP bet. 193 St., Francis Lewis Blvd., Hollis Hills Ter., and 210 St.",408,23,107,"11364, 11423, 11427",Q,358,False,Cunningham Park,No,100000046,PARK,,,196-10 UNION TURNPIKE,DPR,True,Cunningham Park,Y,Cunningham Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/Q021/,No,"24, 25","11, 16",6,{CAC88BD6-BA67-4B3A-8A85-4CD65C93AFF6} +"MULTIPOLYGON (((-73.94646185970547 40.811922124981464, -73.94670757671015 40.812025813156055, -73.94686850938307 40.81209372191574, -73.94705101072448 40.81217073268137, -73.9467853367362 40.8125302087494, -73.94619927903155 40.812281937036474, -73.94646185970547 40.811922124981464)))",M211B,4879,M211B,M-10,M-10,M-10,M-10,W/s 7 Ave. at W. 130 St.,110,9,32,10027,M,0.66,False,St. Nicholas Playground North,Yes,100003951,PLGD,20100106000000.00000,19531022000000.00000,2200 ADAM C POWELL BLVD,DPR/NYCHA,False,St. Nicholas Playground North,Y,St. Nicholas Playground North,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M211B/,No,70,30,13,{1A08B83E-8C55-47B7-BCBF-671AC527BA5C} +"MULTIPOLYGON (((-73.79682635846903 40.758311837370954, -73.7968368264721 40.75825037099454, -73.79755410271211 40.7583071266038, -73.79751776845465 40.75856233314454, -73.79682635846903 40.758311837370954)))",Q073,6275,Q073,Q-07,Q-07,Q-07,Q-07,"Northern Blvd., 43 Ave. bet. 169 St. and 170 St.",407,19,109,11358,Q,0.25,False,Plaut Triangle,Yes,100000153,PARK,,19231222000000.00000,,DPR,True,Plaut Triangle,Y,Plaut Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q073/,No,26,11,6,{CBE6AF46-6834-4805-B2C6-3658E9398179} +"MULTIPOLYGON (((-73.78505572091082 40.77768427367627, -73.78503172262648 40.77613045958323, -73.78534261416426 40.77604105886931, -73.78538766966344 40.77613836043433, -73.78545023983641 40.7762674617137, -73.78545386889876 40.77627533078139, -73.78550487937365 40.77638593844211, -73.78551653475226 40.7764112157051, -73.78556104242354 40.77650774174181, -73.78562037869635 40.77663263694623, -73.78563023898784 40.77665329576823, -73.78563923727748 40.776674576135285, -73.78564734008859 40.776694733706925, -73.78567009504943 40.776756469638705, -73.78572120895222 40.77688301812773, -73.78572638582861 40.776895830235134, -73.7857675717753 40.77699774943542, -73.78577209289341 40.77700893761123, -73.78577249122282 40.77700884199768, -73.78579203494287 40.777052914828694, -73.78584185047266 40.77716525987946, -73.78603772838217 40.7776069927765, -73.786053324929 40.77764345886787, -73.78635648422416 40.77834349213006, -73.78643275216805 40.7785196020608, -73.78602419707593 40.77863835194695, -73.78533334256771 40.77886865617862, -73.78505055335185 40.77896292517671, -73.78501368243468 40.778826648735546, -73.78505572091082 40.77768427367627)))",Q387B,5316,Q387B,Q-07,Q-07,Q-07,Q-07,Clearview Exwy. bet. 26 Ave. and 23 Ave.,407,19,109,11360,Q,6.05,False,Clearview Park,Yes,100000101,PARK,,19500928000000.00000,199-01 22 AVENUE,DPR,True,Clearview Park,Y,Clearview Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/Q387B/,No,26,11,3,{2C8B8083-3102-4970-95CA-D62277350F53} +"MULTIPOLYGON (((-73.89752863835875 40.82393581311535, -73.89756144355731 40.82391743071539, -73.89797429270516 40.823925802141495, -73.89788604552801 40.824253128259, -73.8978769105956 40.824273231852196, -73.89786906934967 40.82428612991908, -73.89785439857624 40.82430384049133, -73.89784156994912 40.82431460266384, -73.89783149210423 40.82432189045617, -73.89781774873491 40.82433160994139, -73.89780350526432 40.8243389138509, -73.89778793597833 40.82434654526457, -73.8977714542076 40.82435243881001, -73.89775589013692 40.824355900026006, -73.89773758114931 40.82435901121417, -73.89771653003149 40.824360730501546, -73.89769227618923 40.82436070898593, -73.89766331776435 40.82435812498043, -73.89764468129445 40.82435372392374, -73.8976102429113 40.824344028324546, -73.89757582105868 40.82432976091034, -73.8975333203196 40.82430562137119, -73.89750229532471 40.82428251768227, -73.89748206878792 40.82426301386408, -73.89746185253546 40.824236843677745, -73.89744636298252 40.82421119007385, -73.89743681817367 40.824190266659116, -73.89742948966638 40.8241650210319, -73.8974255499653 40.824133067920506, -73.89742628866335 40.824111419747126, -73.89742902541671 40.82408783368198, -73.89743378845004 40.82406476180133, -73.8974432749884 40.824042720687196, -73.89745275994117 40.824021704335564, -73.89746562215207 40.82400069098609, -73.89748388868419 40.82397660634451, -73.89750214888679 40.82395816150253, -73.89752863835875 40.82393581311535)))",X014,4708,X014,X-02,X-02,X-02,X-02,E. 165 St. and Rogers Pl.,202,17,41,10459,X,0.432,False,Horseshoe Playground,Yes,100003784,PLGD,20100106000000.00000,18970311000000.00000,885 EAST 165 STREET,DPR,True,Horseshoe Playground,Y,Horseshoe Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X014/,No,79,32,15,{8937E4F8-7CCB-46D3-B942-8586F6C1D653} +"MULTIPOLYGON (((-74.10896563667933 40.607410995383525, -74.10839925588716 40.60730968457511, -74.10774761333413 40.60735407259783, -74.10660974478046 40.606795840873055, -74.10546774804347 40.607057367848995, -74.10524121899803 40.60708463889048, -74.10408681199462 40.60697523026405, -74.10390265154122 40.60698665882559, -74.10369767595277 40.60696730711132, -74.10376256612219 40.60675494141193, -74.10385662662163 40.60644710385528, -74.10386807383162 40.60640929858859, -74.10388057510565 40.60637840927997, -74.103898006414 40.60634410073262, -74.10391680738266 40.606313750540956, -74.103939746092 40.60628260684611, -74.10397104692429 40.6062470853474, -74.10400704917973 40.60621311118575, -74.10404460697151 40.60618334284495, -74.10408943010168 40.60615357061377, -74.10412518680413 40.60613343856626, -74.10416763064505 40.606113028489325, -74.10421823008059 40.60609296400651, -74.10427250298876 40.60607596064627, -74.1043294885119 40.60606260821735, -74.10438997854612 40.60605306538893, -74.10444169748317 40.60604552245479, -74.10479699440367 40.606012746918815, -74.10552376971849 40.605945698136814, -74.1061527674837 40.6058055055241, -74.1063148739033 40.605769374414365, -74.10632660876368 40.60576549491455, -74.10634062596665 40.605759877094634, -74.10635335561346 40.60575372645462, -74.1063665366629 40.60574612645489, -74.1063806003615 40.605736324759896, -74.10639413893854 40.60572471980278, -74.10640528809262 40.60571290723452, -74.10641897767205 40.60569374765206, -74.106428387132 40.605674241728124, -74.10643285964802 40.60565964732204, -74.10643516509175 40.60564646243916, -74.10643587591457 40.605635052161624, -74.10643514826779 40.60562108663304, -74.10643192790171 40.60560436961517, -74.1064258499497 40.605587268018596, -74.10641494594671 40.60556754856883, -74.1064017177378 40.60555072194673, -74.10638319898693 40.6055334067339, -74.10632731946892 40.605487659672406, -74.1062927731566 40.605457000921255, -74.10625692066904 40.60542299342376, -74.10622189147044 40.60538732369017, -74.10618698808763 40.605349018900846, -74.10616170429203 40.60531928629428, -74.10613269974483 40.60528279689587, -74.10676311666978 40.60531363404897, -74.107499251353 40.60534963786999, -74.10785917332096 40.60536719134341, -74.10835759736236 40.605391593144695, -74.10868452390528 40.60540759742146, -74.10872754927438 40.60540949375101, -74.10915036256584 40.60543040025085, -74.10922242820214 40.6054339284753, -74.10939606636329 40.605431745262436, -74.10955461851529 40.60542303657394, -74.10965008160566 40.60541467153774, -74.10975387835617 40.60540287918046, -74.10989943625209 40.6053815219783, -74.11008881760242 40.60534237962859, -74.11008124689911 40.60528541982597, -74.11006644290185 40.60517403396552, -74.1100924939183 40.60516859597363, -74.11074438802542 40.605032505878874, -74.1108510436388 40.60501024120021, -74.11105931006986 40.60496676192721, -74.11108522037024 40.604961352662734, -74.1114217739693 40.604891091398535, -74.11145986628706 40.60488313886999, -74.1118558293152 40.60480047253882, -74.11187489923569 40.604781444846566, -74.11189441890858 40.60476076875691, -74.1119152157144 40.604737220554256, -74.11194236660327 40.604703708180345, -74.11196265104236 40.60467620177065, -74.11198399873894 40.604644408734316, -74.11199916932945 40.60461962237621, -74.11201278485099 40.60459543998126, -74.11202883795885 40.6045748419901, -74.11205135730359 40.604548465342766, -74.1120704625772 40.604528050778185, -74.11211088769309 40.60448958605253, -74.11214294945927 40.60446279754473, -74.11219772194771 40.604423050852176, -74.11225848588457 40.60438612051919, -74.11231978541157 40.60435506283904, -74.11238104885584 40.604329275920264, -74.11244073167133 40.60430857486591, -74.11249269840144 40.60429376174589, -74.11254499930946 40.604281651644115, -74.11258465403752 40.60427424472956, -74.11262315833139 40.60426846167046, -74.11266708130012 40.60426351257374, -74.11298582886715 40.604241378198004, -74.1130037143402 40.60423975318093, -74.11302247311785 40.60423752575314, -74.1130433535722 40.604234403817486, -74.11306666123046 40.60423010070612, -74.1130887780701 40.60422519271004, -74.11311467372907 40.60421838178837, -74.11313907590899 40.60421085461451, -74.11316687907733 40.604200880968726, -74.11319564051945 40.60418885768341, -74.11322155844715 40.60417638152765, -74.11324465825533 40.60416379557755, -74.11326575137879 40.60415094054303, -74.11328494322721 40.60413796580815, -74.11330718279807 40.60412116354565, -74.11332448379083 40.60410655531911, -74.11334195661505 40.60409016478609, -74.11336434223857 40.60406615368447, -74.11338173509193 40.60404442852797, -74.113398713778 40.60401955284856, -74.11341284744894 40.603994729502794, -74.11342745389855 40.603962363811235, -74.1134370017951 40.603933892468106, -74.11344451138591 40.60390044504667, -74.11344813522656 40.60386784434956, -74.11344829376935 40.60383737951063, -74.11344556375259 40.6038084466104, -74.11343917026873 40.60377627274274, -74.11343148717849 40.60375070998409, -74.11342272586359 40.60372821727023, -74.1130687475541 40.60302719664017, -74.11410982140832 40.60275168295375, -74.11426031225598 40.602711854600734, -74.11426556727322 40.60272205410047, -74.11427561911862 40.602742585031116, -74.1142917236378 40.6027789150174, -74.1143114077494 40.60283159853695, -74.11432712456207 40.60288505144385, -74.11433463051023 40.602917419572, -74.11434154588147 40.60295540304661, -74.11434701059319 40.60299902973918, -74.11434986208332 40.603042801314004, -74.11435028346146 40.60307566997581, -74.11434016543517 40.60319039223385, -74.11431724498824 40.603287403135965, -74.11428602633057 40.60337173842177, -74.11425757296816 40.60344540605853, -74.11419295202442 40.60360243769804, -74.11411263168159 40.60377862459675, -74.11406450049375 40.603876187276654, -74.11401405814435 40.60397307233346, -74.11394419931825 40.60409946243234, -74.11388548096858 40.60419963984102, -74.1138336097503 40.60428410712303, -74.113779949647 40.604367923272825, -74.11372801811102 40.60444626791179, -74.1136649167168 40.60453873206187, -74.1136158912308 40.60460582714749, -74.1135572741964 40.604681374088464, -74.11351152345686 40.604737208459696, -74.11346426612168 40.604792307672206, -74.11341551869018 40.60484664829427, -74.1133610528449 40.60490463444802, -74.11329610447999 40.60497036189565, -74.11323431115592 40.6050307938265, -74.11317095987232 40.605090184452585, -74.11308679670643 40.60516481435418, -74.11302902863608 40.60521345437213, -74.11261077051044 40.605540814057505, -74.11259476697599 40.60555580812768, -74.1125792168281 40.60556851082216, -74.11256262204992 40.60558043018252, -74.11254663041112 40.60559057762206, -74.11252986364413 40.60560000630081, -74.11250952953692 40.60560998688745, -74.112494177021 40.60561658203317, -74.11247485326892 40.60562384294728, -74.11245685511157 40.60562964461516, -74.11243768271996 40.605634878298716, -74.11241831979237 40.60563922965336, -74.11240186827 40.60564222467218, -74.11238745224621 40.60564433788776, -74.11198263403708 40.60562917109649, -74.11193584617108 40.605624324134865, -74.11189827943053 40.605623205345374, -74.11185390601173 40.605625027970916, -74.11180907416333 40.60563038557615, -74.11176524651746 40.60563921009954, -74.11172525610213 40.60565060907204, -74.1116870899555 40.605664818589645, -74.11164472868505 40.60568501704222, -74.11161339084192 40.60570357662995, -74.11158236507595 40.60572577041493, -74.11155390511551 40.60575049667192, -74.11152808935748 40.60577800387101, -74.11150754257444 40.60580508630887, -74.11107170053053 40.60640617031588, -74.11113227713992 40.606663389211995, -74.11120237184016 40.60713773011399, -74.11101527017958 40.60780083770194, -74.11100756486593 40.60782771672944, -74.11099777403929 40.60785814312664, -74.11098209323552 40.60790079349681, -74.11096518412779 40.60794094069799, -74.11093995218245 40.60799618868363, -74.11091767788334 40.60803376105956, -74.11090047200368 40.60806245479422, -74.11088093394233 40.60809274560106, -74.11086572702658 40.60811488250034, -74.11084991466271 40.60813673991903, -74.11083274420524 40.60815904620462, -74.11082152875375 40.60817340323914, -74.11080805509675 40.60818978682368, -74.1107867365471 40.60821453121291, -74.11077211643428 40.60823073669429, -74.11075284560049 40.60825123404166, -74.1107232676789 40.60828096356375, -74.1106887974636 40.60831325797441, -74.11064660895661 40.60834977514959, -74.11060919851829 40.608379722003455, -74.11056807298333 40.60841030368499, -74.11049927810404 40.60845665308439, -74.11031820354061 40.60858189875391, -74.11020135044365 40.60865980336243, -74.11007585701424 40.60842442174585, -74.10982384757088 40.607951732847425, -74.10981162718191 40.60777978979467, -74.10896563667933 40.607410995383525)))",R115,6021,R115,R-02,R-02,R-02,R-02,"Richmond Pkwy., Ocean Terr., Tiber Pl., Staten Island Blvd.",502,50,122,"10301, 10314",R,39.779,False,Deere Park,No,100003693,PARK,20100106000000.00000,19720209000000.00000,,DPR,True,Deere Park,N,Deere Park,Flagship Park,Nature Area,http://www.nycgovparks.org/parks/R115/,No,63,24,11,{28972909-D060-4484-8F34-8654F3290C85} +"MULTIPOLYGON (((-73.74410140695663 40.59591223591095, -73.74378349699317 40.594794672023816, -73.74511831270873 40.59484239478639, -73.74626324492259 40.594514455139056, -73.74627447349566 40.59478312140051, -73.74628005261812 40.59491661335873, -73.74596075957648 40.59495632537782, -73.74611139452925 40.595652377115506, -73.74582076477374 40.59575113385442, -73.74562476918196 40.595807173984326, -73.74545653961229 40.59584759802171, -73.74523510513072 40.595890555922544, -73.74499215620446 40.59592487553522, -73.74478737729677 40.59594375613625, -73.74458203836086 40.5959536640833, -73.74437343656774 40.59595457805199, -73.74411332230862 40.59595046727929, -73.74410140695663 40.59591223591095)))",Q162J01,5570,Q162J01,Q-14,Q-14,Q-14,Q-14,Seagirt Blvd bet. B. 12 St. and B. 9 St.,414,31,101,11691,Q,4.863,False,Beach 9 Playground (O'Donohue Park),Yes,100000412,PARK,20100106000000.00000,19511220000000.00000,,DPR,True,Beach 9 Playground,Y,Beach 9 Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q162J01/,Yes,23,15,5,{A1130BDD-8933-4416-A794-657E5BF9B72F} +"MULTIPOLYGON (((-73.97892875271094 40.722148982513765, -73.97900753037385 40.7221823949998, -73.97901854713432 40.72218706795063, -73.97918782409965 40.72195423862513, -73.97925557308275 40.72198297350289, -73.9793925884106 40.72204108727435, -73.97952524886301 40.72209735406348, -73.97958984659398 40.7221247518274, -73.97941917530193 40.722356990754975, -73.97948176609331 40.722383537238365, -73.97956376569121 40.72241831598962, -73.9795199451283 40.722478609918014, -73.97943613795411 40.72259390161164, -73.97939007325104 40.722657271228506, -73.97930807463368 40.72262249145438, -73.97922929629986 40.72258907917595, -73.97914894285952 40.72255499838026, -73.97907016113273 40.72252159139507, -73.97899138303747 40.72248817895343, -73.97891260975764 40.72245476015501, -73.97883383300424 40.72242134670498, -73.97875505159311 40.72238794040407, -73.97892875271094 40.722148982513765)))",M268,4962,M268,M-03,M-03,M-03,M-03,"E. 4 St. to E. 5 St., Ave. C, Ave. D",103,2,9,10009,M,0.73,False,El Jardin Del Paraiso Park,No,100004361,PARK,20100106000000.00000,19930820000000.00000,706 EAST 5 STREET,DPR,False,El Jardin Del Paraiso Park,N,El Jardin Del Paraiso Park,Undeveloped,Garden,http://www.nycgovparks.org/parks/M268/,No,74,26,12,{40670D55-EE42-49F0-B10B-A79141BDB28D} +"MULTIPOLYGON (((-73.90436610153623 40.869489282705906, -73.90436693552071 40.86948923927309, -73.9043678714331 40.86948925715804, -73.90437112704386 40.869489674081066, -73.9043734662518 40.869490529683254, -73.90437688988567 40.86949289000087, -73.9043796318237 40.86949580535527, -73.90438116076321 40.86949836040932, -73.9043820757914 40.8695005277443, -73.90438246720575 40.86950303232886, -73.9043825550727 40.86950462266541, -73.90438238467127 40.86950598316326, -73.90438187439474 40.869506944462834, -73.90436209733129 40.86952438765662, -73.90434268039135 40.86953969158342, -73.90432078205174 40.86955814606184, -73.90429294453605 40.86958215162799, -73.90426587192285 40.86960629559673, -73.90424293724593 40.86962771451099, -73.90421882538224 40.869651899646435, -73.90418905127729 40.86968536051605, -73.90417159680162 40.86970524593057, -73.9041547629999 40.86972493555125, -73.90414169855708 40.869740031304026, -73.90413099551746 40.86975210697581, -73.9041195082641 40.869763433688554, -73.90411577081288 40.86976645712683, -73.90411194413963 40.86976883393968, -73.90410585032323 40.86977137816036, -73.90409925576708 40.86977320157329, -73.90409244254634 40.869774477306734, -73.90408548897756 40.86977518831652, -73.90407847336421 40.86977532656325, -73.90407147874306 40.86977489211595, -73.90406458695816 40.86977388954511, -73.90405787747325 40.86977232882225, -73.90405142736398 40.86977023072264, -73.90404753652926 40.869768567886034, -73.90404359272992 40.86976661684879, -73.90403966610464 40.86976427321243, -73.9040355623291 40.869761385533224, -73.90400773444411 40.86972928516577, -73.90394011177227 40.86965128345851, -73.90393618791572 40.869645388291886, -73.90393391667976 40.86963935942764, -73.90393360892219 40.86963397334617, -73.90393488820702 40.869628684938256, -73.90393831686903 40.869622632003406, -73.90394368254658 40.86961747396604, -73.90394938632339 40.86961394249318, -73.90396588043913 40.869608531674935, -73.90400268380363 40.86959756552505, -73.90414677718759 40.869554632023544, -73.90436610153623 40.869489282705906)))",X079,5824,X079,X-07,X-07,X-07,X-07,W. Kingsbridge Rd. and Sedgwick Ave.,207,14,52,10463,X,0.135,False,Major General John R Brown Triangle,Yes,100004597,PARK,20100106000000.00000,18811103000000.00000,,DPR,True,Major General John R Brown Triangle,Y,Major General John R Brown Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X079/,No,78,33,13,{754E6426-4C2E-4172-B80C-B33CB4C51E81} +"MULTIPOLYGON (((-73.80749720834113 40.783187439330156, -73.80683691196296 40.78313484546557, -73.80676692589562 40.78317978123901, -73.80638598354045 40.78315017896072, -73.80632476954992 40.783090541998, -73.8063503536275 40.78290500827722, -73.80811612766615 40.7830439812013, -73.80830068297429 40.78338019513137, -73.80827498664748 40.78360776998855, -73.80744171677775 40.7835418947325, -73.80749720834113 40.783187439330156)))",Q390,5373,Q390,Q-07,Q-07,Q-07,Q-07,Clintonville St. bet. 17 Ave. and 17 Rd.,407,19,109,11357,Q,1.553,False,Clintonville Playground,Yes,100000249,PARK,,19550517000000.00000,154-60 17 AVENUE,DPR/DOE,False,Clintonville Playground,Y,Clintonville Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q390/,No,26,11,3,{0557E545-B5B4-40E1-AAFB-4CEDF8C607A7} +"MULTIPOLYGON (((-73.92916546985225 40.8312766585177, -73.92926316809496 40.8311501935519, -73.92961429077343 40.83126143939933, -73.92953923070245 40.83139507472577, -73.92916546985225 40.8312766585177)))",X333,4765,X333,X-04,X-04,X-04,X-04,W 162 St bet. Woodycrest Av and Ogden Av,204,8,44,10452,X,0.012,False,Woodycrest Community Garden,No,100004898,PARK,20100106000000.00000,20091120000000.00000,94 WEST 162 STREET,DPR,False,Woodycrest Community Garden,Y,Woodycrest Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X333/,No,84,29,15,{86A4D874-F3B9-4E0A-AD56-9193BD72E902} +"MULTIPOLYGON (((-73.77461904841248 40.59825327662062, -73.77459387440784 40.598036056537374, -73.77493539399907 40.59801116357818, -73.77496056910543 40.59822838358713, -73.77461904841248 40.59825327662062)))",Q511,64400,Q511,Q-14,,,Q-14,Beach 43 St. bet. Edgemere Dr. and Norton Ave.,414,31,101,11691,Q,0.173,False,,No,100042706,PARK,,20180726000000.00000,480 BEACH 43 STREET,DPR,False,Edgemere Coalition,,Edgemere Coalition,,Garden,,No,31,10,5,{F1A16172-6A00-4951-93CD-B210DCF15A62} +"MULTIPOLYGON (((-73.91487359497532 40.82520777883733, -73.9154615977718 40.82483067488479, -73.91595706667943 40.824983586466274, -73.91517847057364 40.82548055568069, -73.91487359497532 40.82520777883733)))",X032,5627,X032,X-03,X-03,X-03,X-03,Coutlandt Av bet. E 161 St and E 162 St,203,17,42,10451,X,0.732,False,Railroad Park,Yes,100004876,PLGD,20100106000000.00000,18960818000000.00000,,DPR,True,Railroad Park,Y,Railroad Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X032/,No,79,32,15,{D97138F9-BEDC-4F95-A816-FBF66B7B3E55} +"MULTIPOLYGON (((-74.18900467971643 40.53830259998662, -74.18912848520645 40.53854876652209, -74.1885680785262 40.53870495301645, -74.18900467971643 40.53830259998662)))",R096,6078,R096,R-03,R-03,R-03,R-03,"Drumgoole Rd. W., Edgegrove Ave., Delmar Ave.",503,51,123,10312,R,0.184,False,Park,No,100004755,PARK,20100106000000.00000,19650223000000.00000,,DPR,True,Park,N,Park,Neighborhood Park,Undeveloped,http://www.nycgovparks.org/parks/R096/,No,62,24,11,{5A6BC13A-DA8B-45AF-BB38-BA32E3BCC71F} +"MULTIPOLYGON (((-73.94110416163524 40.81079888905908, -73.9412838288167 40.81055307275505, -73.9413354469177 40.81057475600515, -73.94138379160215 40.810595064308636, -73.94120412467734 40.81084087986629, -73.94110416163524 40.81079888905908)))",M380,5019,M380,M-10,M-10,M-10,M-10,W. 131 St. bet. 5 Ave. and Lenox Ave.,110,9,32,10037,M,0.076,False,United Block Association Garden,No,100003954,PARK,20100106000000.00000,20081101000000.00000,34 WEST 131 STREET,DPR,False,United Block Association Garden,N,United Block Association Garden,,Garden,http://www.nycgovparks.org/parks/M380/,No,70,30,13,{0960E6F9-7EA3-4D99-9C35-3D872B5546BD} +"MULTIPOLYGON (((-73.89433638441528 40.843503527068194, -73.8938112472239 40.843185555174244, -73.89379724651945 40.84319916494851, -73.89374086242147 40.84325397468035, -73.89361796479432 40.84337343701638, -73.89360965268386 40.84338151668102, -73.89359852711242 40.84339233124971, -73.8935786746377 40.84338068756586, -73.89357311741523 40.84337742805548, -73.89357284139103 40.84337726571201, -73.89355616498823 40.843367484473475, -73.89332548453123 40.84323218295285, -73.89329660170148 40.8432158942278, -73.89330863073123 40.84320441145699, -73.89336559099809 40.84323789584663, -73.89337235535166 40.84324186787273, -73.89342344466426 40.843271833081076, -73.8934376628676 40.843280173079634, -73.89349574880528 40.843314242864594, -73.89349979440111 40.843316614897546, -73.89351889695553 40.84332781936261, -73.89352437479985 40.843331031976696, -73.89356484380896 40.84335476851062, -73.89356476790844 40.84335477564451, -73.89359485351532 40.84337237022635, -73.8936645295861 40.84330464173608, -73.8937246761362 40.84324617590336, -73.89379653120255 40.84317632867775, -73.89380757357435 40.84316559415694, -73.8938242682703 40.84317579230479, -73.89382486886979 40.84317615755749, -73.89434657838345 40.84349164268975, -73.89435388143671 40.843492454419824, -73.8943588441942 40.84349300556451, -73.89438928833084 40.84350975560412, -73.89433638441528 40.843503527068194)))",X148G2,5653,X148G2,X-06,X-06,X-06,X-06,S/B Cross Bronx Exwy bet. Arthur Av and Crotona Av,206,15,48,10457,X,0.046,False,Strip,No,100005164,PARK,20100106000000.00000,19610126000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148G2/,No,79,33,15,{D57142A3-2B38-4D6F-B3E4-33B8D3CDF3DB} +"MULTIPOLYGON (((-74.0101718475332 40.60245783222522, -74.01087809601185 40.60177463238965, -74.01154840397217 40.60218371110205, -74.01209833469302 40.602313325204, -74.01207916260462 40.60233224628894, -74.01204439529951 40.60236655622667, -74.01200794227651 40.60240253409677, -74.01197448966171 40.602435548024495, -74.01193864964728 40.60247091885661, -74.01190342622364 40.6025056808607, -74.01186796532548 40.60254067701406, -74.01183357581426 40.60257461493266, -74.01179714973341 40.60261056481618, -74.01176324329629 40.60264402628778, -74.01172743495279 40.60267936553179, -74.0116924877307 40.60271385458411, -74.01165637926456 40.60274948920748, -74.01162195646224 40.60278346038473, -74.01158627554851 40.60281867259775, -74.01155235354338 40.60285215021739, -74.01150391811568 40.6028999520833, -74.0113994807645 40.60301645311724, -74.01135884848725 40.60306177951254, -74.01132096262197 40.603104042046844, -74.01129263796865 40.603135638747425, -74.01094958254379 40.60292816285532, -74.0101718475332 40.60245783222522)))",B164,6104,B164,B-11,B-11,B-11,B-11,Shore Pkwy. bet. Bay 14 St. and Bay 16 St.,311,43,62,11214,B,2.964,False,Bath Beach Park,Yes,100004177,PARK,20100106000000.00000,19370625000000.00000,,DPR,True,Bath Beach Park,Y,Bath Beach Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B164/,No,47,22,11,{0F8A5805-AB06-4BAE-A831-739283B04BA7} +"MULTIPOLYGON (((-73.91163836305083 40.66911593883185, -73.91142063674779 40.6682657761176, -73.91185633582704 40.66820334389856, -73.91197855798335 40.66867767534566, -73.91231292310277 40.668627722418044, -73.91239867716405 40.66896051310517, -73.91198883716406 40.66902313375719, -73.91199856917858 40.669060902538874, -73.91163836305083 40.66911593883185)))",B362,5202,B362,B-16,B-16,B-16,B-16,Chester St. to Bristol St. between Sutter Ave. and Pitkin Ave.,316,41,73,11212,B,1,False,Chester Playground (PS 327),Yes,100003906,PARK,20100106000000.00000,19640120000000.00000,165 BRISTOL STREET,DPR/DOE,False,Chester Playground,Y,Chester Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B362/,No,55,20,9,{302467D2-BFD7-4A47-BC1C-BC9E13740483} +"MULTIPOLYGON (((-73.98263473606178 40.72451696450344, -73.98271184496731 40.72454933230265, -73.98254046016072 40.72478496879129, -73.98246335106579 40.72475260087832, -73.98263473606178 40.72451696450344)))",M315,5964,M315,M-03,M-03,M-03,M-03,"E. 6 St., bet. Ave. A and Ave. B",103,2,9,10009,M,0.063,False,The Creative Little Garden,No,100004742,PARK,20100106000000.00000,19990712000000.00000,,DPR,False,The Creative Little Garden,Y,The Creative Little Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M315/,No,74,27,12,{7F868D46-B7CC-47AF-AE3E-DA4EDC800A24} +"MULTIPOLYGON (((-73.99727044739234 40.577766200356564, -73.99734367752178 40.57776067915839, -73.99738267104028 40.57776248380329, -73.99742116721232 40.57776755012226, -73.99746789864375 40.57777838176589, -73.99751563847643 40.577795453144226, -73.99756656446596 40.57782203140381, -73.9976046795748 40.57784975664209, -73.99763334983489 40.57787738982009, -73.99765960345572 40.577911495008735, -73.997679422598 40.57794905897471, -73.99769202184625 40.57799025280518, -73.99799060503439 40.57954104553636, -73.9979941452328 40.57956394322243, -73.9980001454023 40.57959447289225, -73.99801401567103 40.57964691785029, -73.99803351138738 40.57970224007707, -73.99807659362126 40.579792118504976, -73.99811737592267 40.57985672007041, -73.99816718065487 40.579920981367174, -73.99824481037533 40.58000128410415, -73.99829547806695 40.580044709934384, -73.99834772977361 40.580083922213205, -73.99836270813344 40.58009426584598, -73.99836882018688 40.58009837952647, -73.99837443146728 40.58010210597416, -73.99979981986856 40.5809963186571, -73.99981473960914 40.58100425680024, -73.9998263959546 40.58101029393068, -73.999861556345 40.581027654278124, -73.99995852891585 40.58106946027533, -74.00001372926744 40.58108963111664, -74.00007779624916 40.58111003786296, -74.00012344973727 40.58112272260249, -74.00020578030147 40.58114191084751, -73.99319222175542 40.57957086957069, -73.99315761249953 40.57939766702706, -73.99175117146673 40.57908256143711, -73.99174566752053 40.57905501040864, -73.99328066996149 40.57888577679428, -73.99314875887954 40.57822562990397, -73.99727044739234 40.577766200356564)))",B129,4594,B129,B-13,B-13,B-13,B-13,"Neptune Ave., Bayview Ave.,W. 24 St. to W. 32 St.",313,47,60,11224,B,26.257,False,Kaiser Park,No,100004110,PARK,20100106000000.00000,19340711000000.00000,2529 NEPTUNE AVENUE,DPR,True,Kaiser Park,Y,Kaiser Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B129/,Yes,46,23,8,{4C9796B3-B5DE-41E4-94FF-398BCFAE0386} +"MULTIPOLYGON (((-73.91223691321628 40.8496351213463, -73.91242708892764 40.84936772603578, -73.91275169667205 40.84950006970642, -73.91257301396908 40.84975054770475, -73.91256107504829 40.84976728420827, -73.91223691321628 40.8496351213463)))",X367,68802,X367,X-05,,,X-05,Davidson Ave. bet. W 176 St. and W. 177 St.,205,14,46,10453,X,0.258,False,,No,100042704,PARK,,20180716000000.00000,1801 DAVIDSON AVENUE,DPR,False,Park,,Davidson Park,,Undeveloped,,No,77,29,15,{B7C3839A-A457-48E3-8B77-A95D06F0F046} +"MULTIPOLYGON (((-73.82144926696974 40.71748433740825, -73.82058709356404 40.71905676030986, -73.8205481835037 40.719058303479336, -73.81974000605237 40.7174778700745, -73.82144926696974 40.71748433740825)))",Q336,5907,Q336,Q-08,Q-08,Q-08,Q-08,"Union Turnpike, Vleigh Pl., 141 St.",408,24,107,11367,Q,3.25,False,Judge Moses Weinstein Playground / Vleigh Plgd.,Yes,100000455,PARK,20090423000000.00000,19510403000000.00000,,DPR,True,Judge Moses Weinstein Playground,Y,Judge Moses Weinstein Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/Q336/,No,27,14,6,{0425097D-51B6-4D58-BB12-8A0FEBA88ED9} +"MULTIPOLYGON (((-73.99424820391394 40.67057586455565, -73.99384929371033 40.6710531287589, -73.99336747291024 40.670820238631805, -73.99356666006273 40.67058197988316, -73.99373836067385 40.67066472780763, -73.9939377518486 40.67042621357739, -73.99424820391394 40.67057586455565)))",B095,5456,B095,B-06,B-06,B-06,B-06,"11 St., 12 St. bet. 2 Ave. and 3 Ave.",306,39,78,11215,B,0.554,False,Ennis Playground,Yes,100004454,PARK,20110712000000.00000,19240403000000.00000,124 11 STREET,DPR,False,Ennis Playground,Y,Ennis Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B095/,No,51,25,7,{B2FA7ABF-7ECB-4847-8979-0DD773A819F8} +"MULTIPOLYGON (((-73.9391576797723 40.83560421941241, -73.93921140126564 40.835626858246464, -73.93927777931914 40.835654771610145, -73.93907494897125 40.83592789976552, -73.9390086039694 40.835899941279266, -73.93895488469579 40.83587730235303, -73.9391576797723 40.83560421941241)))",M348,5005,M348,M-12,M-12,M-12,M-12,W. 162 St. bet. Amsterdam Ave. and Edgecombe Ave.,112,10,33,10032,M,0.1,False,Morris-Jumel Ecological Education Garden,No,100004931,PARK,20100106000000.00000,20021120000000.00000,457 WEST 162 STREET,DPR,False,Morris-Jumel Ecological Education Garden,N,Morris-Jumel Ecological Education Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M348/,No,72,30,13,{87842553-068C-424D-9127-71125AB32162} +"MULTIPOLYGON (((-73.95929369978512 40.73710599630587, -73.95935711605495 40.73706202530049, -73.95944383811741 40.7370937006152, -73.95944736063556 40.73709484369943, -73.95945100287157 40.73709574639018, -73.95945473523352 40.73709640057238, -73.95945852931149 40.737096800833044, -73.95946235550977 40.73709694536063, -73.95946618304922 40.73709683144291, -73.95946998233171 40.737096460870404, -73.95947372375815 40.73709583723474, -73.95947737773 40.737094963227065, -73.95948091582875 40.73709384784242, -73.95948431082084 40.73709249827531, -73.95948753546995 40.7370909262228, -73.9594905649076 40.7370891433827, -73.95949337663136 40.737087164155234, -73.95963234723938 40.736946144816436, -73.9596332156024 40.73694518067703, -73.95963397389743 40.73694416336909, -73.95963461383184 40.73694310189481, -73.9596351342186 40.736942001656736, -73.9596355291323 40.73694087255846, -73.95963579620081 40.73693972180322, -73.95963593305156 40.73693855749471, -73.95963593967896 40.73693738863797, -73.95963581607772 40.73693622423819, -73.95963556224336 40.7369350714993, -73.9596351805383 40.73693393942731, -73.95963467332524 40.736932836127565, -73.95963404415096 40.73693176970587, -73.95963329892999 40.736930748268904, -73.95963244120998 40.736929778121414, -73.95963147927323 40.73692886737092, -73.95957828569694 40.736871958235774, -73.95978026678155 40.73676286940559, -73.95980136799828 40.73665703379312, -73.96009485815698 40.73667508658769, -73.96012940095261 40.73669307718952, -73.95975458101694 40.737073424836176, -73.95967829141752 40.73715084001175, -73.95956728113586 40.73722781070735, -73.9591268462714 40.73753319208199, -73.95909309308777 40.73751306635848, -73.95909776227322 40.73738779119153, -73.9592595027975 40.737275646166914, -73.9591814121219 40.73719199016627, -73.95918329553602 40.737182547209585, -73.95929369978512 40.73710599630587)))",B595,76492,B595,B-01,,,B-01,Commercial St. bet. Franklin St. and Clay St.,301,33,94,11222,B,0.563,False,,Yes,100042609,PARK,,20180806000000.00000,,DPR,,,,Greenpoint Landing,Sitting Area/Triangle/Mall,Neighborhood Park,,Yes,50,18,12,{08A348D1-7A17-4A32-8668-F9241F93A539} +"MULTIPOLYGON (((-73.91193267835364 40.84535191291421, -73.91194668202522 40.845332702584685, -73.91258372975766 40.8455932656549, -73.91256903153283 40.845612323351105, -73.91193267835364 40.84535191291421)))",X148C6,5710,X148C6,X-05,X-05,X-05,X-05,Cross Bronx Exwy bet. Townsend Av and Walton Av,205,14,46,10453,X,0.037,False,Walton Walk,No,100005163,PARK,20100106000000.00000,19480923000000.00000,,DPR,True,Walton Walk,Y,Walton Walk,STRIP,Strip,http://www.nycgovparks.org/parks/X148C6/,No,77,33,15,{929520DD-CA6B-496E-852C-AFF900D2831A} +"MULTIPOLYGON (((-73.90323384266392 40.72711206874188, -73.90326906422098 40.726531036517045, -73.9035068205828 40.72655427824474, -73.90368981176084 40.72657805631635, -73.90386160294463 40.726605972492685, -73.9040316235636 40.726639578156565, -73.90419955060452 40.72667880821021, -73.90434577010352 40.7267180479032, -73.90448989089379 40.726761552282966, -73.90463169529097 40.72680925724091, -73.90470409421094 40.72683692950315, -73.90492871260541 40.726922783345394, -73.90512716888695 40.72701073499392, -73.90528878324615 40.72709023533751, -73.9054462808258 40.72716824803308, -73.90560106372993 40.72724934433218, -73.90575302669717 40.72733347012883, -73.90600848186179 40.72746588361362, -73.90615952484308 40.727544174620185, -73.90623040794236 40.727580915513684, -73.90632062591932 40.72762767855471, -73.9065443261687 40.727743629809204, -73.90635077842207 40.72789223038689, -73.90619439721289 40.728012294966646, -73.90605310996628 40.72812076948733, -73.90590366588079 40.728235506513386, -73.90570453625615 40.72838838875999, -73.9056359692163 40.728441031288696, -73.90560030511678 40.72846841265595, -73.9055769390494 40.728486351452226, -73.90428155310444 40.72787134082173, -73.90323078185781 40.72737846025923, -73.90322469854706 40.72726289277824, -73.90323384266392 40.72711206874188)))",Q131,6161,Q131,Q-05,Q-05,Q-05,Q-05,"Maurice Ave., 63 St. bet. 54 Ave. and Borden Ave.",405,30,104,11378,Q,8.899,False,Frank Principe Park / Maurice Park,Yes,100000334,PARK,20090423000000.00000,19410501000000.00000,,DPR,True,Frank Principe Park,Y,Frank Principe Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q131/,No,30,15,6,{FFBC1FEF-6362-413E-AE26-1629DD7667BD} +"MULTIPOLYGON (((-73.91821811405532 40.67475654627021, -73.91824560866367 40.67445940656006, -73.91831357407287 40.67446308121019, -73.91837590635494 40.67446645195232, -73.918348409941 40.67476360609988, -73.91828607739029 40.67476022903942, -73.91821811405532 40.67475654627021)), ((-73.91804044552572 40.67474691940668, -73.91806793971347 40.67444980044965, -73.91814978392023 40.67445422440229, -73.91812229008194 40.67475135418488, -73.91804044552572 40.67474691940668)))",B464,5259,B464,B-16,B-16,B-16,B-16,Bergen St. between Saratoga Ave. and Howard Ave.,316,41,73,11233,B,0.154,False,Farmers Garden,No,100004254,PARK,20100106000000.00000,20021120000000.00000,1897-1905 Bergen Sreet,DPR,False,Farmers Garden,N,Farmers Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B464/,No,55,25,8,{7FD8E20D-E998-414D-AD40-C047AB1F4664} +"MULTIPOLYGON (((-73.9390779758553 40.69211872767085, -73.93936465476945 40.69208579331792, -73.93941956774312 40.69237043663544, -73.93913288763217 40.69240337112398, -73.9390779758553 40.69211872767085)))",B398,4651,B398,B-03,B-03,B-03,B-03,Kosciuszko St. bet. Marcus Garvey Blvd. and Lewis Ave.,303,36,81,11221,B,0.185,False,Kosciuszko Street Garden,No,100003702,PARK,20100106000000.00000,19970422000000.00000,385 - 389 KOSCIUSZKO STREET,DPR,False,Kosciuszko Street Garden,N,Kosciuszko Street Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B398/,No,56,18,8,{0280D8E0-FFDA-4D78-AA61-C4A7DCF87E53} +"MULTIPOLYGON (((-73.98347493415832 40.72924585938645, -73.9834236252505 40.729316703127914, -73.98338009725937 40.72937680400112, -73.98333916365846 40.729433323009715, -73.98329164729664 40.72949892898088, -73.98324998884418 40.729556449217164, -73.98320513783904 40.72961837606125, -73.98310891796613 40.72975122662089, -73.98257449490131 40.72952504009376, -73.98256663541173 40.729522933515064, -73.98293265091068 40.72901757068947, -73.98347493415832 40.72924585938645)))",M321,6572,M321,M-03,M-03,M-03,M-03,"E. 12 St., E. 11 St. bet. 1 Ave. and Ave. A",103,2,9,10009,M,0.828,False,Lower East Side Playground,Yes,100008288,PARK,20100106000000.00000,,404 EAST 12 STREET,DOE,False,Lower East Side Playground,Y,Lower East Side Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M321A/,No,74,27,12,{43BB6F6C-4809-4BE8-A0DA-7B80428291DC} +"MULTIPOLYGON (((-73.98911885717008 40.69492270712316, -73.98912962080075 40.6947078052899, -73.98963342347673 40.69472706331064, -73.98970944340864 40.693074344598706, -73.98921238850889 40.69305534418452, -73.9892434797928 40.692434573107796, -73.98939339698207 40.69243875639743, -73.9896213724645 40.69244511769443, -73.98965386332496 40.69244602473496, -73.99064414226186 40.6925919889965, -73.9906553858743 40.69259506155967, -73.9906599653807 40.692596611714194, -73.99066588167193 40.69259889049191, -73.99067138031518 40.692601306113446, -73.99067697473716 40.69260409095279, -73.99068548634523 40.69260904806526, -73.99069291776648 40.69261422571534, -73.99069951152849 40.692619659042954, -73.9907033099171 40.69262324519239, -73.99070749742074 40.69262769676598, -73.99071416055381 40.69263624317159, -73.99071873923418 40.69264375742083, -73.99072244237031 40.69265171285066, -73.99072534441946 40.692660662382096, -73.99072690613872 40.69266884546895, -73.99072746797015 40.69267832161178, -73.99072692264141 40.6926862938088, -73.9907259682927 40.69269190572846, -73.99072414775137 40.69269875848513, -73.9907216469567 40.69270545089561, -73.99030370306033 40.693587789386356, -73.99029306692306 40.693620577962704, -73.99028214261884 40.69365790960078, -73.9902812619506 40.69366091904027, -73.99027414609188 40.69369795022764, -73.99026933823235 40.69372846459838, -73.99026803235674 40.6937752281181, -73.99026996125859 40.6938046516365, -73.99027042754791 40.693811763926035, -73.99027574946693 40.69384212876692, -73.99028090234629 40.6938715336465, -73.9906175844825 40.69493681862192, -73.99051390893538 40.69494863925769, -73.99040680157911 40.69495712311461, -73.9902765242584 40.69496265123505, -73.99018363326496 40.694963406083716, -73.98911885717008 40.69492270712316)))",B113C,5062,B113C,B-02,B-02,B-02,B-02,"Adam St., Court St., Cadman Plaza West bet. Johnson St. and Fulton St.",302,33,84,11201,B,4.14,False,Columbus Park,Yes,100004554,PARK,20100106000000.00000,19350516000000.00000,225 JORALEMON STREET,DPR,True,Columbus Park,Y,Columbus Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B113C/,No,52,25,7,{0024C256-D5F1-4B3F-A1B2-8A3CB3B2232A} +"MULTIPOLYGON (((-73.90750653688438 40.682245330972854, -73.90752832975573 40.68222296439715, -73.90782762015648 40.682395254144154, -73.9077750458321 40.68244921767828, -73.90772134606601 40.682504333844676, -73.90766764621108 40.68255944998566, -73.90736835430388 40.68238715982505, -73.90739852234212 40.682356195599375, -73.90742205426739 40.68233204382262, -73.90745283942506 40.68230044791775, -73.90747575414336 40.68227692689418, -73.90750653688438 40.682245330972854)))",B470,6598,B470,B-04,B-04,B-04,B-04,Granite St. between Broadway and Bushwick Ave.,304,37,83,11207,B,0.172,False,Granite St Block Association,No,100003933,PARK,20100106000000.00000,20021120000000.00000,28-32 GRANITE STREET,DPR,False,Granite St Block Association,N,Granite St Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B470/,No,55,18,8,{2F28F44E-CA70-4486-9B11-5E8B56968B29} +"MULTIPOLYGON (((-73.90583003293663 40.70009250663439, -73.90589064662095 40.70003485856791, -73.90596284609694 40.70007882747395, -73.90583003293663 40.70009250663439)))",Q056,6147,Q056,Q-05,Q-05,Q-05,Q-05,"Myrtle Ave., Cypress Ave., Cornelia St.",405,34,104,11385,Q,0.01,False,Clemens Triangle,Yes,100000463,PARK,20090423000000.00000,19190717000000.00000,,DPR,True,Clemens Triangle,N,Clemens Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q056/,No,38,12,7,{260C0B65-925F-42E6-B0D4-C5F3BD6C8702} +"MULTIPOLYGON (((-73.76742864923779 40.67978782050297, -73.7667026922046 40.678006628094224, -73.76614781945143 40.67664513349477, -73.76596365876436 40.67648673435296, -73.76645210586803 40.676617791374085, -73.76644005761113 40.676660739631934, -73.76724280870262 40.67690640312575, -73.77101420302006 40.67921421786926, -73.76903956755262 40.67953012687463, -73.76742864923779 40.67978782050297)))",Q412,5539,Q412,Q-12,Q-12,Q-12,Q-12,129 Ave. bet. 172 St. and 176 St.,412,27,113,11434,Q,16.439,False,Railroad Park,Yes,100000253,PARK,20090423000000.00000,19601021000000.00000,,DPR,True,Railroad Park,N,Railroad Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q412/,No,32,10,5,{1A0E0D61-78EC-4C3E-9B19-4EF2287C4ED6} +"MULTIPOLYGON (((-74.12158675820055 40.63481924555534, -74.12156737440819 40.634682795860456, -74.12138181500183 40.63469663297044, -74.12138174914507 40.634696169272225, -74.12136243048202 40.634560183240445, -74.1213225469301 40.634279440511506, -74.12169144496322 40.63425193332514, -74.12172882206366 40.634532861387605, -74.12176092249354 40.63475080545097, -74.12197969034558 40.634734785665714, -74.12198695701659 40.634789401693624, -74.12194443223156 40.634792573405655, -74.12158675820055 40.63481924555534)))",R146,5088,R146,R-01,R-01,R-01,R-01,Barker St. bet. Castleton Ave. and Taylor Ct.,501,49,120,10310,R,0.429,False,Joe Holzka Community Garden,No,100004803,PARK,20100106000000.00000,19990712000000.00000,1171 CASTLETON AVENUE,DPR,False,Joe Holzka Community Garden,N,Joe Holzka Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/R146/,No,61,23,11,{E08D125C-4FAE-4691-8FA1-06C67E9B7A6F} +"MULTIPOLYGON (((-73.85871873519501 40.861989435621595, -73.85890667130269 40.86199293527558, -73.85887596888914 40.862953297356135, -73.85816659676195 40.862940085414344, -73.85789667861056 40.8623913552701, -73.85787203065547 40.862222381108964, -73.85862881993539 40.86229992371849, -73.85871873519501 40.861989435621595)))",X157,4637,X157,X-11,X-11,X-11,X-11,Mace Ave. bet. Pauldings Ave. and Williamsbridge Rd.,211,13,49,10469,X,1.59,False,Mazzei Playground,Yes,100004083,PARK,20100106000000.00000,19480817000000.00000,1000 MACE AVENUE,DPR,True,Mazzei Playground,Y,Mazzei Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X157/,No,80,34,14,{94747901-2652-456A-9B95-8682BBB4DEDB} +"MULTIPOLYGON (((-73.90349595172391 40.664148385604484, -73.90434787993689 40.66402220534847, -73.90452459355514 40.664714016410855, -73.90367265565816 40.664840197964274, -73.90349595172391 40.664148385604484)))",B249,6401,B249,B-16,B-16,B-16,B-16,Dumont Ave. between Powell St. and Mother Gaston Blvd.,316,41,73,11212,B,1.398,False,Van Dyke Playground,Yes,100004573,PARK,20100106000000.00000,19570627000000.00000,603 MOTHER GASTON BLVD,DPR/NYCHA,True,Van Dyke Playground,Y,Van Dyke Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B249/,No,55,19,9,{98C58712-001D-4E2A-9636-BAC57AB54B84} +"MULTIPOLYGON (((-73.92098967191909 40.654768677872134, -73.92084825621798 40.65464712785931, -73.92084717027164 40.654646545377766, -73.92084622518402 40.65464583511963, -73.92084544694576 40.65464501601374, -73.9208448556312 40.65464411058678, -73.92084446894765 40.654643143164975, -73.92084429632338 40.65464213986976, -73.92084434245383 40.65464112952099, -73.92084460612566 40.65464013823278, -73.9208450813936 40.65463919391712, -73.92084575403881 40.65463832177863, -73.9208466062963 40.654637546119154, -73.92084761449318 40.6546368876342, -73.92084875023029 40.654636364314655, -73.92084998511156 40.65463599144971, -73.92085128247152 40.65463577801933, -73.92085260919517 40.65463573030437, -73.92085392744434 40.65463584917926, -73.9208552029322 40.654636131918885, -73.92119982612482 40.65464952780068, -73.92120074584886 40.654649691424424, -73.92120161932583 40.65464996758117, -73.9212024217358 40.65465034724872, -73.92120313180487 40.65465082230784, -73.92120373181392 40.654651378338144, -73.92120420404272 40.654652001819684, -73.92120453668842 40.65465267473406, -73.92120472267564 40.65465338086712, -73.92120475375096 40.65465410040185, -73.92120463112012 40.6546548135276, -73.92120435835169 40.6546555022366, -73.92120394137898 40.65465614852242, -73.92103127345553 40.654769146795154, -73.92102721150002 40.65477144843031, -73.92102271150182 40.654773214857165, -73.92101789293912 40.65477440023135, -73.92101288709958 40.6547749713239, -73.92100782406482 40.6547749147163, -73.92100284217751 40.654774230503584, -73.92099807266327 40.654772937686786, -73.9209936431836 40.65477106967272, -73.92098967191909 40.654768677872134)))",B174,5793,B174,B-17,B-17,B-17,B-17,"Willmohr St., E. 91 St., Linden Blvd.",317,41,67,11212,B,0.061,False,Park,Yes,100004063,PARK,20100106000000.00000,,,Unknown,False,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B174/,No,58,20,9,{C1BEFB67-B237-4149-8D16-D10492F5E92C} +"MULTIPOLYGON (((-73.92398827049517 40.80480308843431, -73.92399543206226 40.80480297699185, -73.92400259454709 40.80480309967922, -73.92400974254365 40.80480345648628, -73.92401686420337 40.804804045604236, -73.9240239453053 40.804804867023726, -73.92403097400187 40.80480591803543, -73.92403793607211 40.804807198629995, -73.92404481967155 40.80480870339664, -73.92405161294838 40.80481043322811, -73.92405830050181 40.804812383611704, -73.92406487285837 40.80481454823775, -73.92407131461316 40.80481692619563, -73.92407761866193 40.80481951207769, -73.92408377078884 40.80482230137206, -73.92408975796323 40.8048252895677, -73.92543108321868 40.80540175570669, -73.92520110567565 40.80571917748797, -73.92369664142471 40.80508512560589, -73.92386451579627 40.80485103217106, -73.92386908315561 40.804846837962494, -73.92387388261498 40.804842796991764, -73.92387890468447 40.80483891735717, -73.92388414224948 40.8048352026559, -73.9238895846309 40.804831664587375, -73.92389522353012 40.80482830584758, -73.92390104471582 40.80482513543213, -73.9239070410735 40.80482215693822, -73.9239132007442 40.80481937756202, -73.9239195106868 40.804816801797415, -73.92392596141669 40.80481443324009, -73.92393253988878 40.80481227998593, -73.92393923306824 40.80481034112579, -73.92394603028221 40.804808622956074, -73.92395291849076 40.80480712907017, -73.92395988347195 40.80480586035928, -73.92396691574118 40.804804820419, -73.92397399870632 40.804804010138895, -73.92398112288369 40.80480343221426, -73.92398827049517 40.80480308843431)))",X041,5596,X041,X-01,X-01,X-01,X-01,Bruckner Blvd. bet. Willis Ave. and Brown Pl.,201,8,40,10454,X,1.45,False,Pulaski Park,Yes,100004220,PARK,20090728000000.00000,19111218000000.00000,,DPR,Part,Pulaski Park,Y,Pulaski Park,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/X041/,No,84,29,15,{253021EA-FF0A-4711-9451-DEBB282A5BE0} +"MULTIPOLYGON (((-73.90300876514156 40.655611760409265, -73.9030836146153 40.655564238356476, -73.90314050352298 40.65578503553232, -73.90278503653425 40.655838009355165, -73.90280238524602 40.65590534490209, -73.90281973399274 40.65597268044591, -73.90283708277454 40.65604001598657, -73.9028544304089 40.65610735152309, -73.90287178044316 40.65617468705847, -73.9028892610187 40.65624253419482, -73.90290660875839 40.6563098697219, -73.9029237155044 40.65637626220068, -73.90294453429809 40.656457065186736, -73.90296576937796 40.65653948404765, -73.90298519963655 40.65661489985882, -73.90300244528488 40.65668183094998, -73.90301979325305 40.65674916645663, -73.90303498834317 40.65680813884136, -73.90093516269253 40.65712104339976, -73.90140852694087 40.65662771894838, -73.90300876514156 40.655611760409265)))",B270,5145,B270,B-16,B-16,B-16,B-16,"Hegeman Ave., Linden Blvd. bet. Powell St. and Mother Gaston Blvd.",316,42,73,11212,B,3.017,False,Brownsville Recreation Center Playground,Yes,100004643,PARK,20100106000000.00000,19541126000000.00000,1555 LINDEN BOULEVARD,DPR,True,Brownsville Playground,Y,Brownsville Playground,Neighborhood Plgd,Buildings/Institutions,http://www.nycgovparks.org/parks/B270/,No,60,19,8,{1BB0E945-D0D8-4FDC-85BF-9D9708101C0F} +"MULTIPOLYGON (((-74.12782237169786 40.589505559143554, -74.12788286996425 40.589431549790895, -74.12793495265801 40.58936239009329, -74.12798697787382 40.58926391297081, -74.12798721885886 40.589263301246504, -74.12799891790546 40.58923366096982, -74.1280225299039 40.58917383175508, -74.12806902352682 40.58905651548683, -74.1280989717135 40.58890990107967, -74.12810982575797 40.588829614450546, -74.12810958472953 40.5887039735817, -74.12810675296592 40.588559719963044, -74.12807313936814 40.588318208917826, -74.12805902058419 40.58812138806249, -74.1280642397826 40.587976895828255, -74.12810770588604 40.58767223332769, -74.1281541207825 40.587515131030116, -74.12820607707869 40.58738105704009, -74.12826904450516 40.58725743932848, -74.12835122365158 40.587121236906476, -74.12841000286471 40.587042313214376, -74.12843451242296 40.587009403173575, -74.1285294267487 40.58690326119682, -74.12874111633296 40.586707517658006, -74.12875614635706 40.586696031737816, -74.12879545699018 40.58666599211295, -74.12880913414128 40.586655539703244, -74.1289224882773 40.58656891990428, -74.12911736958308 40.58645143658648, -74.12911749938144 40.586451367100246, -74.12934310905001 40.586331455268784, -74.1296231648366 40.586207593117436, -74.12987579604378 40.58611307695665, -74.13005359750511 40.58605490277898, -74.13007116255648 40.58604915556028, -74.13007121921711 40.586049136585125, -74.13007124642147 40.58604915546534, -74.13010725830914 40.58603737275408, -74.13043409483801 40.58594905337044, -74.13071505355595 40.585885833346225, -74.13100066914357 40.585839447132855, -74.1310007506264 40.58583943713419, -74.13125617615596 40.585811931779325, -74.13125626000999 40.58581192628037, -74.13157767193263 40.58580318468447, -74.13157775579549 40.585803183687915, -74.13200175961755 40.58581321908157, -74.13200184230637 40.585813221688106, -74.13226010183614 40.58582967085001, -74.13226018453567 40.58582967885955, -74.13246900249715 40.58585664944905, -74.13246908402272 40.58585666106188, -74.13271364399573 40.5858919648718, -74.13271372198673 40.58589198099118, -74.13288684365703 40.58593155886651, -74.13315248681181 40.585997411065065, -74.13328054327478 40.58603607790227, -74.13350878426294 40.586115385069, -74.1340674046741 40.58647725426476, -74.1340709509299 40.58647974367925, -74.13407614766014 40.586482984906645, -74.13407743902484 40.58648372543193, -74.13466799636718 40.58681699339667, -74.13466918481981 40.586817654789776, -74.13506563611533 40.587034739948756, -74.13600813664232 40.587580237517415, -74.1366213643978 40.58794860435501, -74.13662230580285 40.58794916336188, -74.13689019363198 40.58810626609612, -74.13720465945539 40.58830098243191, -74.13743783335802 40.588447174957196, -74.13782324914396 40.58869568758724, -74.13782382044087 40.58869605341541, -74.1380021770785 40.58880936845014, -74.13800333265131 40.58881009108385, -74.13820507210123 40.58893450999945, -74.13820615430684 40.588935167881594, -74.1383172542903 40.589001817083464, -74.13831837194304 40.589002478524016, -74.1383232264974 40.58900514183429, -74.13840507546665 40.58904733910204, -74.13840568563896 40.58904765084901, -74.13841139313313 40.58905034734814, -74.13841731973913 40.58905275361419, -74.13842344062832 40.589054858870725, -74.13842972861315 40.589056654145274, -74.13843026282169 40.5890567903814, -74.13848529315014 40.58907070110929, -74.13847937364399 40.589132102390984, -74.13845618041451 40.58917345630274, -74.1382818169544 40.589413786580195, -74.13824183909885 40.5894688891385, -74.13752442291235 40.59034109458838, -74.13748004295236 40.590305787711195, -74.13556524165269 40.58859908378949, -74.13031796649129 40.58925704428028, -74.13052030241653 40.58963587587359, -74.13057211889463 40.5897007195819, -74.13066602426926 40.58975848592096, -74.13075463013536 40.58978461919782, -74.1310028394501 40.589857824660136, -74.1310247228989 40.58986710302409, -74.13136404693267 40.58996460797879, -74.13136501800405 40.589964642889626, -74.1313801281077 40.58996909941818, -74.13153387092605 40.5900144432256, -74.13145870209388 40.59035170889837, -74.13113625571239 40.59035914645378, -74.13085040675905 40.59042888201737, -74.13055879120417 40.590573441664255, -74.13033204882971 40.59072204780274, -74.13024583356018 40.590862252695345, -74.13020305521341 40.59110130746316, -74.13022499891498 40.5912661145157, -74.12976939730014 40.59131294749536, -74.12971335418044 40.59112307944999, -74.12966759292344 40.591045568062604, -74.12958329113836 40.590994845689764, -74.12922538045501 40.59097117684522, -74.12860279229807 40.59105790868467, -74.12821930217187 40.591111829266055, -74.12791535051801 40.591172792202364, -74.12797375296569 40.5905024923537, -74.1281642580676 40.58967118633859, -74.128111297134 40.589445731640346, -74.1270403023752 40.59074958284449, -74.1268508533916 40.591040791070704, -74.1267415779653 40.59143080341318, -74.12672743654846 40.59186209613494, -74.12676598457371 40.59224156861034, -74.1268167304373 40.592679679617795, -74.12682633007795 40.592929232096346, -74.12672306798308 40.59331118522649, -74.1265427190968 40.593627683043344, -74.12617437104718 40.59421468474103, -74.12593222425282 40.59413152134237, -74.12634274620044 40.593475771297, -74.12641935043627 40.593331462759885, -74.1264853718169 40.593166461875725, -74.12651316307013 40.59309194715661, -74.12653740446733 40.59298817471818, -74.1265545897638 40.59284450963475, -74.12655784359576 40.592719479122124, -74.12652903800273 40.59231654802738, -74.12649012712639 40.592047916861276, -74.12646508260552 40.59172872851005, -74.12647180633564 40.591538996925486, -74.12648552855096 40.59141129472933, -74.12651663724874 40.59124633221954, -74.12655844271569 40.59109651823908, -74.12661402863823 40.59095280991921, -74.12673237553687 40.59072861377207, -74.12689252328272 40.59049434490943, -74.12711045698579 40.590243508003915, -74.1272277914245 40.59011812965752, -74.12782237169786 40.589505559143554)), ((-74.13749963822669 40.593680424217766, -74.13723321328528 40.59374260329253, -74.13724294300856 40.59302023458106, -74.13709110203476 40.59281094674513, -74.13658040532414 40.59262346063191, -74.1362261041303 40.5925858997994, -74.13627437535597 40.592490552715034, -74.13627424902376 40.592490586184255, -74.13627966992466 40.59248009585478, -74.13646251220165 40.592126237673234, -74.13652966085154 40.592000100751946, -74.13666420190572 40.59177898913223, -74.13672515202708 40.591689431548026, -74.13708185934739 40.59124513192354, -74.13830837638719 40.589747442092154, -74.13833948190795 40.58970945835484, -74.13834883572147 40.589698897451, -74.13836496584648 40.58968177797312, -74.13838458936065 40.58966257227361, -74.13838487824127 40.589662317077334, -74.1383846732301 40.58966257217262, -74.13841406830458 40.589636607070865, -74.13844823770361 40.58960992029223, -74.13848762067964 40.58958299938727, -74.13852620605509 40.589559959789504, -74.13856658861597 40.58953887575128, -74.13861544264394 40.58951697731137, -74.13866676507394 40.58949773061746, -74.13871781602306 40.58948201068153, -74.13877728502517 40.58946762954165, -74.1388436409869 40.58945620547603, -74.13884372247117 40.589456194571255, -74.13889887015162 40.5894502240839, -74.13889895400771 40.58945021767886, -74.13895117637682 40.58944741154284, -74.1389512602404 40.58944740873985, -74.13899947653528 40.589447238758254, -74.13899956040822 40.58944724045786, -74.13904520366944 40.5894492195191, -74.13904528636864 40.589449224822175, -74.13909201394146 40.5894534304499, -74.1390920966482 40.589453439355026, -74.13912883100265 40.589458323452064, -74.1391289125337 40.58945833506017, -74.139170107406 40.58946552268741, -74.1392029564103 40.58947257812804, -74.13923647577775 40.58948104566968, -74.13927207124267 40.589491507147564, -74.13930746200343 40.589503496151906, -74.1393402588616 40.58951611505575, -74.1439060273098 40.5913413085275, -74.14400015118467 40.591378932484076, -74.14309777426962 40.59235262138746, -74.14192000666324 40.59333726520865, -74.14175754810857 40.59347308105168, -74.14163473525339 40.59358366374985, -74.14156270064267 40.593675377228486, -74.14152250861324 40.593647189904104, -74.14098667635932 40.59323571204801, -74.1396343028478 40.59341856767289, -74.13923789383047 40.59366461076279, -74.13912263023943 40.593693698611425, -74.13893412119842 40.59362843427544, -74.13876428772225 40.593764742875, -74.13758717172483 40.59401533325471, -74.1375436044374 40.59387852558728, -74.13751881946202 40.59378191102354, -74.13749963822669 40.593680424217766)), ((-74.12838290856139 40.59844098463339, -74.12832666210443 40.598023436935286, -74.12823095965987 40.59731297943722, -74.12934538850212 40.59720766421455, -74.12923042084658 40.59638908078663, -74.12889233264177 40.596521738392354, -74.12735231135107 40.596364147356034, -74.12812315617332 40.59500924699963, -74.12974938325331 40.59484857807132, -74.12979493488166 40.59558991786933, -74.12974395705261 40.59604316034914, -74.13006464584191 40.596372866749626, -74.13100036861158 40.59647877617541, -74.13152787876017 40.5961806433296, -74.13157839847464 40.59592127071068, -74.13162880435974 40.59566248443384, -74.13166750993229 40.5954637683599, -74.13167933966761 40.59540302979112, -74.131758553662 40.59534014097424, -74.13181189474498 40.59526301928778, -74.13183521052497 40.59517766611883, -74.13182668784148 40.59509072402746, -74.13178698992287 40.59500896058249, -74.13175632581073 40.59497203825086, -74.13178924030085 40.59480719205641, -74.13182210081447 40.5946426133672, -74.13185607713412 40.594472444734976, -74.13187851814192 40.59436005162588, -74.13253337101392 40.59443602555968, -74.13260278178123 40.59408836580962, -74.13276636598302 40.5940908983102, -74.13276899107537 40.59399234735276, -74.13277231314993 40.59386765518301, -74.13299932055726 40.59391590118847, -74.13322695283132 40.59398408271846, -74.13333642682481 40.594025713035734, -74.13354479902489 40.594123328291445, -74.13364297242153 40.59417897549495, -74.1338307959399 40.59431012982327, -74.13400877049273 40.59443440632261, -74.13411104817422 40.59450212436345, -74.13421787524578 40.59456563065286, -74.13432895364178 40.59462474722291, -74.13444397232315 40.59467930872886, -74.13486479527582 40.59478546825233, -74.1346507170896 40.59507528992264, -74.13444309921329 40.595356363142564, -74.13420948695254 40.59567262278485, -74.13397120337319 40.59599520365905, -74.13373287389956 40.596317843514385, -74.13350509152195 40.59655697946359, -74.133342984414 40.59670911392596, -74.1331804497007 40.59686164758408, -74.13290007065491 40.59712477377301, -74.13264079747371 40.59736411279535, -74.13248638209706 40.59750374599307, -74.13223587201917 40.59768224992797, -74.1319686405908 40.59785142147961, -74.13184602902655 40.59792903965358, -74.13177787305086 40.59786594790699, -74.1315471067801 40.598012550959254, -74.13119616962953 40.59823549489261, -74.1309662751446 40.59838154105272, -74.13082944398319 40.59845299314697, -74.13065488442768 40.59852713731738, -74.1305107738475 40.598573781583106, -74.13026668098587 40.5986236818708, -74.12999165097376 40.598637749691925, -74.12973370379285 40.598612687840905, -74.12939540195705 40.59856968743644, -74.12900271589396 40.5985197725438, -74.12864319624116 40.59847407145932, -74.12838290856139 40.59844098463339)), ((-74.12786790701611 40.59320770395778, -74.12781134646599 40.59202340058366, -74.12787947202403 40.59146622735403, -74.12798619249666 40.59182983016511, -74.1281508588869 40.59210132210545, -74.12846813673295 40.59230900326363, -74.12876254341126 40.59240673899649, -74.12882278248387 40.59278294908426, -74.12891686709982 40.59311383021578, -74.12902756293809 40.593281885106386, -74.12848601816548 40.59335697872597, -74.1279297428925 40.59384372642138, -74.12792038662933 40.593747488856124, -74.12786790701611 40.59320770395778)), ((-74.13723321328528 40.59374260329253, -74.13723321230009 40.59374269874925, -74.13723183060377 40.59374292553033, -74.13723321328528 40.59374260329253)))",R129,5342,R129,R-02,R-02,R-02,R-02,"Rockland Ave., Manor Ave., Brielle Ave., Forest Hill Rd.",502,50,122,10314,R,161.242,False,Blood Root Valley,No,100005146,PARK,20100106000000.00000,19940325000000.00000,411 ROCKLAND AVENUE,DPR,False,Blood Root Valley,Y,Blood Root Valley,Flagship Park,Nature Area,http://www.nycgovparks.org/parks/R129/,No,63,24,11,{25D739C8-5B5E-4503-94CC-C8F79D44B385} +"MULTIPOLYGON (((-73.94934658346982 40.78896108940128, -73.94893906278661 40.788789525345706, -73.94902648211712 40.78866981903346, -73.94935313033099 40.78880733625449, -73.94944754649599 40.788678046865776, -73.94952841716429 40.788712093328265, -73.94934658346982 40.78896108940128)))",M327,4891,M327,M-11,M-11,M-11,M-11,Lexington Ave. bet. E. 100 St. and E. 101 St.,111,8,23,10029,M,0.173,False,Ebenezer Wesleyan Garden,No,100004691,PARK,20100106000000.00000,20021120000000.00000,1574 - 1576 LEXINGTON AVENUE,DPR,False,Maggie's Magic Garden,N,Maggie's Magic Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M327/,No,68,30,13,{8D492CBA-85DC-4E6B-B237-04760B62BA09} +"MULTIPOLYGON (((-73.81603225350716 40.787347423281894, -73.81567397762277 40.78719498010124, -73.81605296307879 40.78722443592897, -73.81603225350716 40.787347423281894)))",Q135A,69213,Q135A,Q-07,Q-07,Q-07,Q-07,"149 St., 15 Ave., Cross Island Pkwy.",407,19,109,11357,Q,0.059,False,Mckee Triangle,Yes,100000335,PARK,,,,DPR,True,McKee Triangle,N,McKee Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q135A/,No,26,11,3,{1A839730-2E08-4EE5-8368-3F800B4486AB} +"MULTIPOLYGON (((-73.72948435623373 40.685700290520515, -73.72884984789718 40.68553053895291, -73.7288210523678 40.68558575299876, -73.72815061998115 40.68538355278483, -73.72875909454814 40.6842168419487, -73.72947562501635 40.68443325727271, -73.72914089043063 40.68508295460011, -73.72954003364053 40.68520334895091, -73.72962565802621 40.685229175309836, -73.72970970160812 40.68525452511973, -73.72948435623373 40.685700290520515)))",Q307,6655,Q307,Q-13,Q-13,Q-13,Q-13,121 Ave. bet. 235 St. and 237 St.,413,27,105,11411,Q,2.939,False,Delphin H. Greene Playground,Yes,100000026,PARK,20090423000000.00000,19490623000000.00000,235-01 121 AVENUE,DPR/DOE,False,Delphin H. Greene Playground,Y,Delphin H. Greene Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q307/,No,33,14,5,{61DD9D7F-DDCC-4761-8022-0CB5CB5EBEDC} +"MULTIPOLYGON (((-73.94637406393018 40.62340014307474, -73.94616390257269 40.622308073869014, -73.9465376018134 40.622267826603135, -73.946538333435 40.622267747697606, -73.94654862747085 40.622322079979725, -73.94656133411272 40.622389133232765, -73.94657579548952 40.62246545365415, -73.94659001446072 40.62254049792311, -73.94661060508119 40.62264916247496, -73.94663119576731 40.62275782882294, -73.94664094271018 40.62280926476653, -73.94666208192358 40.622920826534596, -73.94667163001438 40.62297121957988, -73.94668240915524 40.62302809964301, -73.94669271873077 40.62308250575771, -73.94670234218935 40.62313329596399, -73.94671356742343 40.6231925337922, -73.9467231720824 40.623243225830706, -73.9467437419557 40.62335177417374, -73.94674611559707 40.6233600726674, -73.94637406393018 40.62340014307474)))",B287,6204,B287,B-14,B-14,B-14,B-14,Nostrand Ave. between Ave. L and Ave. K,314,45,70,11210,B,0.964,False,Andries Playground (JHS 240),Yes,100004580,PARK,20100106000000.00000,19470525000000.00000,,DPR/DOE,False,Andries Playground,Y,Andries Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B287/,No,42,17,9,{CCE3C190-8F47-4B69-9FA0-49C1ED66815D} +"MULTIPOLYGON (((-73.93880185057095 40.77918519409703, -73.9389724136521 40.77900842769907, -73.93974633355671 40.779453648872405, -73.93963943888517 40.77967023305842, -73.9390960102991 40.78092226285612, -73.93894342507383 40.78108039311921, -73.93820331496988 40.78184738119483, -73.93692222325826 40.78113308789259, -73.93880185057095 40.77918519409703)))",M209,5850,M209,M-08,M-08,M-08,M-08,East River Opp E. 96 St.,108,5,19,10128,M,8.639,False,Mill Rock Park,No,100004233,PARK,20100106000000.00000,19531008000000.00000,,DPR,False,Mill Rock Park,N,Mill Rock Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/M209/,Yes,76,29,12,{457C684D-E1D7-4DD1-98C2-97B412FD35B3} +"MULTIPOLYGON (((-74.00325136498869 40.714167680217024, -74.0032172952384 40.71426440950059, -74.00312363101709 40.71449872668625, -74.00298566780765 40.71484872900767, -74.0028916688664 40.71545284324737, -74.00228639871175 40.71515229083961, -74.00227664659047 40.7151464827414, -74.00226834301701 40.715139490442795, -74.00226173416326 40.71513152105663, -74.00225701412838 40.71512280871205, -74.00253322899677 40.71459503186582, -74.0026012086659 40.714494592825524, -74.00267677668283 40.714397344075856, -74.00275967504227 40.71430361699608, -74.00284962207444 40.71421373125858, -74.00294631007839 40.71412799392894, -74.00298436270675 40.71411484549653, -74.00302479076974 40.714106790276105, -74.00306642857139 40.71410406152846, -74.00310807253895 40.71410673762923, -74.00314851909268 40.7141147411673, -74.00318660014823 40.71412784074523, -74.00322121506947 40.71414565908216, -74.00325136498869 40.714167680217024)), ((-74.00140790457404 40.71471625892251, -74.00222005981232 40.7146257016096, -74.00208250383203 40.71498801641297, -74.00206078286323 40.71500987038832, -74.00162351320478 40.71482305751177, -74.00140790457404 40.71471625892251)))",M030,5399,M030,M-01,M-01,M-01,M-01,"Lafayette St., Centre St. bet. Worth St., Pearl St. and Duane St.",101,1,5,10007,M,1.875,False,Thomas Paine Park (Foley Square),Yes,100005067,PARK,20100106000000.00000,19300319000000.00000,474 PEARL STREET,DPR,True,Thomas Paine Park,Y,Thomas Paine Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M030/,No,"66, 65",26,"10, 7",{1893DB2F-7C55-4C19-A31C-30F35D480BCB} +"MULTIPOLYGON (((-74.00542601073961 40.736689907863706, -74.00523757871036 40.73602160659454, -74.00541949275822 40.735996145325664, -74.00549198206616 40.7362478509133, -74.00575651497239 40.73621213916631, -74.00569743612573 40.73649483128472, -74.00568264740187 40.73656559751131, -74.0056734423445 40.73660145708141, -74.00565783007583 40.736636009428445, -74.00563610886603 40.73666859716459, -74.00560869419346 40.73669859801542, -74.00557610690807 40.73672544012924, -74.0055646559255 40.73673240791092, -74.00555187177861 40.73673787280842, -74.00553809185854 40.73674168982338, -74.00552368197346 40.736743758081026, -74.00550902095804 40.736744022632045, -74.005494498306 40.736742477154195, -74.0054804964116 40.73673916305268, -74.00546738465009 40.73673416585844, -74.0054555110907 40.73672761973084, -74.00544518947329 40.73671969665245, -74.0054366909209 40.73671060642914, -74.00543024157166 40.736700588585656, -74.00542601073961 40.736689907863706)))",M251,4948,M251,M-02,M-02,M-02,M-02,"Hudson St., Bleecker St. and 8 Ave.",102,3,6,10014,M,0.477,False,Bleecker Playground,Yes,100004588,PLGD,20100106000000.00000,19631126000000.00000,580 HUDSON STREET,DPR,True,Bleecker Playground,Y,Bleecker Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M251/,No,66,27,10,{700AA0CE-7E6F-486F-8E68-029D12F690BC} +"MULTIPOLYGON (((-73.860272502991 40.70233697212164, -73.86012302750932 40.702332550953415, -73.85997346493835 40.70233467441331, -73.85982430866544 40.70234333679838, -73.85967605449596 40.702358508097184, -73.85952919117884 40.70238013848096, -73.85938420277523 40.70240815740594, -73.85924157103172 40.70244247091444, -73.85908104240004 40.70248457338586, -73.85892202610073 40.70252987700959, -73.85876463104066 40.70257835040759, -73.85878709444873 40.702373189785526, -73.85879270636445 40.70232193226727, -73.85879914117993 40.70226315557393, -73.85880682596961 40.702192985321595, -73.85881460248972 40.702121956091254, -73.85882224387366 40.70205215229222, -73.8588296535343 40.70198448422474, -73.85883745412458 40.7019132406984, -73.85884525351685 40.70184199626896, -73.8588595237757 40.70171165549961, -73.85886702505448 40.70164315276357, -73.85887452513646 40.70157464912453, -73.85888202520309 40.701506145484345, -73.85889767803256 40.701363181206304, -73.85836311847541 40.7013047792372, -73.85815805241391 40.70128237408563, -73.85779884141176 40.701243128643966, -73.85744396284937 40.701204353011825, -73.85734565506216 40.701193611459466, -73.85725143721167 40.70165891404505, -73.85716588407404 40.70167418507075, -73.85678474150535 40.70174221709167, -73.85639639176149 40.701811532896414, -73.85622298827322 40.701842483178915, -73.85584827605786 40.701909362972714, -73.85552775694512 40.70196656963245, -73.85539770492332 40.701989780938085, -73.85538615898903 40.70145401245895, -73.8552360857208 40.701118913953984, -73.85506273207264 40.70091907002463, -73.85497245325615 40.70081481015147, -73.85476012126861 40.700631081749414, -73.85441664280795 40.70034549487841, -73.85408177884104 40.700122038901036, -73.85396898937229 40.70000326763051, -73.85374678368728 40.699737190868184, -73.85322875819328 40.69912248215646, -73.85319043446957 40.6990756371971, -73.85316233842417 40.69903952138362, -73.85313083466222 40.69899755598179, -73.85310062064428 40.698953972193436, -73.85307764145844 40.69891919204715, -73.853058040988 40.69888787057948, -73.85302834228641 40.69883223945939, -73.85300230137419 40.69877478135848, -73.85297260290022 40.69870943368265, -73.85293447960633 40.69861911840231, -73.85290521317899 40.698535516950066, -73.85288401315039 40.69847205858137, -73.85287317309923 40.69842418333104, -73.85286671197697 40.698373659863975, -73.85286211592721 40.69833155227859, -73.85285992862956 40.698280432731046, -73.85288326290758 40.697693020625636, -73.85297057396691 40.697680299877945, -73.85656623744963 40.69715636080013, -73.858329439524 40.69683939365717, -73.86466673367727 40.69557599367386, -73.86871884358436 40.69476795831932, -73.86893205812852 40.69511522778812, -73.87019008213095 40.69716412687649, -73.87044553482528 40.69758015562169, -73.87029349278916 40.69763756950219, -73.87014582785626 40.69770125839471, -73.87000298761362 40.69777103011158, -73.86986540194552 40.69784667263558, -73.86973348894067 40.697927958628796, -73.86960764780248 40.698014640921585, -73.86948825765529 40.69810645791432, -73.86937909922295 40.698195331810844, -73.86927594549317 40.6982882683353, -73.86917905723624 40.69838503186562, -73.86908868104526 40.698485378658816, -73.8690050434215 40.69858905594371, -73.8689283566941 40.698695800126195, -73.8688588154594 40.69880534218833, -73.8687965930345 40.698917405882916, -73.86874184855633 40.69903170774148, -73.86869471987835 40.69914795886713, -73.868565344822 40.69963053668657, -73.86844647640831 40.700124935670836, -73.86833944943201 40.70057007377674, -73.86822655183222 40.70084657407404, -73.86813975636846 40.700995226811834, -73.8680444697084 40.70114083501862, -73.86794087339786 40.70128311972276, -73.8678645430598 40.70137777058555, -73.86778282570054 40.70146977940741, -73.86769587903282 40.70155896805669, -73.86760387022383 40.701645165616455, -73.86750697590118 40.701728205683125, -73.86738496330203 40.7018213565052, -73.86725720885515 40.701909937676554, -73.86712400760635 40.70199374240091, -73.86698566759189 40.70207257920615, -73.86684250867168 40.70214626383885, -73.86669486132948 40.7022146273675, -73.86652204095523 40.70228539650392, -73.86634560429444 40.702350792323784, -73.86616583794441 40.70241070708232, -73.86598303794916 40.702465044753836, -73.86579750034336 40.70251371561781, -73.86560952942973 40.70255663897019, -73.86541943303833 40.70259374672001, -73.86520789436305 40.70263442929795, -73.8649946144735 40.702669452423244, -73.8647798550137 40.7026987713679, -73.86456387760771 40.702722352212035, -73.86434694742513 40.70274016374336, -73.8641293319798 40.70275218646093, -73.86391129641221 40.70275840446505, -73.8636931082135 40.70275880996552, -73.8633935201308 40.702743321676756, -73.86309469552364 40.70272085544192, -73.86279691605539 40.7026914341153, -73.86250046101206 40.702655085053905, -73.86220560848339 40.70261184101907, -73.86191263417172 40.70256174377732, -73.86150484803822 40.702496396192416, -73.86109545971343 40.70243713629724, -73.86068462522863 40.70238398857773, -73.860272502991 40.70233697212164)), ((-73.84257616425192 40.704834634849064, -73.84023766215735 40.70388566339753, -73.84023771382894 40.7038641024833, -73.83883675495852 40.703300686677665, -73.83936686689366 40.70301777954108, -73.84163291815783 40.70118595358702, -73.8521664305537 40.70234089700095, -73.85271542020622 40.70240106348203, -73.85296148041269 40.70270905367455, -73.85321463953423 40.703025925133694, -73.85332884683842 40.7031688749711, -73.85365505734319 40.70357717482655, -73.85373400329341 40.703675983996284, -73.85381510187204 40.703777491979864, -73.8539372841873 40.70393041730065, -73.85403878420566 40.70405745443419, -73.85393740829932 40.7041049170413, -73.85396047957028 40.70413379244385, -73.85383303018364 40.70419449813594, -73.85381562331443 40.704173201414136, -73.85380896386152 40.70416505412113, -73.85369934935842 40.704216373757134, -73.85371200973802 40.7042318633604, -73.85371269303515 40.70423269720318, -73.85355112390282 40.70432474028642, -73.85339431515088 40.70442143315022, -73.85324249663982 40.70452263382598, -73.85309589115285 40.70462819223201, -73.85295471675275 40.70473795467885, -73.85293068954032 40.70475898787694, -73.85290489602933 40.70477877250315, -73.85288206702919 40.7047978621146, -73.8525979557629 40.70505743975847, -73.85231745110583 40.70531928070899, -73.8521638500793 40.70550972928598, -73.85201422599631 40.705702001803054, -73.85186861566585 40.70589605149625, -73.85178183592515 40.70603209550333, -73.85168906859349 40.7061658309186, -73.85159041811399 40.70629710657634, -73.85148599958083 40.70642577222442, -73.85137593044992 40.706551681215416, -73.85127955149422 40.706660894274115, -73.851176425825 40.706766479368305, -73.85106678827098 40.70686819364542, -73.8510629229968 40.706867351167574, -73.85087270270043 40.70682587311864, -73.84799029574003 40.706197321681316, -73.84726985678292 40.7060300307161, -73.84633258558496 40.70583666788921, -73.8447671803793 40.705511471538735, -73.84426301721841 40.705385067216916, -73.84386847771637 40.70526080046321, -73.84342041719795 40.70511495441141, -73.84257616425192 40.704834634849064)), ((-73.83836132175288 40.708350943064595, -73.83730995275343 40.707926457812604, -73.83809207712456 40.70677541480577, -73.83817507604249 40.70665326348757, -73.83821587144524 40.70657091940381, -73.83825414453099 40.70648099124329, -73.83828325398379 40.70640122599093, -73.8382973538915 40.706330772561756, -73.83830128673395 40.70625831201345, -73.83829456992167 40.70616913739276, -73.83827849374262 40.70603820184275, -73.83825512383237 40.70595204665217, -73.83821912173292 40.70587819542081, -73.8381524378666 40.705748086520074, -73.83727074773688 40.7044233278891, -73.83725323981835 40.70438982295836, -73.83724050800697 40.70435086136521, -73.83723544338541 40.704316498726996, -73.83723632172024 40.704278076874296, -73.83724248914604 40.70424556626448, -73.83725067288178 40.70422081732645, -73.83726323520125 40.70419396377552, -73.83728358826723 40.704162280077995, -73.83730816666974 40.70413357944556, -73.83733052366415 40.704112780372995, -73.83735494414253 40.70409398785365, -73.83741030218494 40.70406191954359, -73.83862265304785 40.70341494368904, -73.84053309612491 40.704193279520844, -73.84053039732564 40.7042154166972, -73.84164982827006 40.70464991711438, -73.84237816477679 40.70496103634391, -73.84306649872684 40.705211996179, -73.8436141564714 40.70539508729994, -73.84421990702297 40.705568240738366, -73.84468794120903 40.70568193799272, -73.84718756494719 40.706200816304175, -73.84880775228214 40.70657551409941, -73.85064376401789 40.70696544841226, -73.85088567451747 40.70701682290498, -73.85080331073087 40.70707584203471, -73.85071810500823 40.70713247736498, -73.85061356107029 40.707196428515296, -73.85045981399234 40.707282774443655, -73.85030074140163 40.707363342756224, -73.85013672123715 40.70743794301443, -73.84996813614502 40.70750639919552, -73.84979538530987 40.70756855060871, -73.84961887499136 40.707624250082105, -73.84943902206787 40.70767336666887, -73.84925624811927 40.707715785639856, -73.84907544719667 40.70775271107973, -73.84889264847256 40.70778341377326, -73.84870821897593 40.7078078320579, -73.8485225351783 40.707825915992544, -73.84833596997014 40.70783763004192, -73.84814890095402 40.707842948584975, -73.84808935373718 40.70784375431979, -73.84698524434306 40.70785761506383, -73.84674131856578 40.70784533895686, -73.84649701165829 40.70783879268647, -73.84625255548274 40.70783798196308, -73.84600818191339 40.70784290709617, -73.84576412520181 40.707853563897466, -73.84552061488097 40.707869941871095, -73.8452778852285 40.70789202602661, -73.84503538696443 40.70790206022323, -73.84479346245138 40.70791823797949, -73.84455238029285 40.707940538949984, -73.84431240791655 40.707968940088385, -73.84407381277254 40.708003409345515, -73.84383685877508 40.708043909266415, -73.84360180867836 40.70809039339159, -73.84324466210133 40.70815109292059, -73.84288601516337 40.70820643304531, -73.84252600645378 40.708256391428485, -73.84228356342626 40.708268846786865, -73.84204078350241 40.70827661580545, -73.84179782294778 40.70827969419423, -73.84155483802587 40.708278078565094, -73.84146886919366 40.708288394440764, -73.84138456964129 40.708304855849335, -73.84130269586922 40.70832731525282, -73.84122398439006 40.708355571957405, -73.84114914107944 40.708389372098615, -73.84107883762223 40.70842841043696, -73.84101370557678 40.70847233845407, -73.84095433046723 40.70852076074212, -73.84089349999705 40.70856659021315, -73.84083908569806 40.70861687435393, -73.84079164617941 40.70867109525088, -73.8407516703319 40.70872869527111, -73.83836132175288 40.708350943064595)), ((-73.84902111583445 40.698415045164516, -73.84941047399539 40.69831771445608, -73.84959338034926 40.69854394291524, -73.84969351986382 40.698667797996, -73.85020467833549 40.699300009840904, -73.8502745371914 40.69938641225494, -73.85030912922981 40.69942919471832, -73.85043810079331 40.69958870733819, -73.85092896392754 40.70019579759483, -73.85416165021775 40.70053399709261, -73.85431891495688 40.70055044691437, -73.8545786687639 40.70074259912551, -73.85472399046938 40.70086008259371, -73.85497310220372 40.701119156517606, -73.8551560890983 40.70200945412203, -73.85499354587037 40.70203593256439, -73.85497911858316 40.70247047677549, -73.85255278019179 40.702204004890284, -73.85191887088719 40.70213437658028, -73.84236799044915 40.70108488313984, -73.84232092668907 40.70097202036311, -73.84241312617783 40.70093874659118, -73.84247876700756 40.70091284852701, -73.84255352713097 40.70087936887044, -73.84265161381404 40.70082818814607, -73.84276114747468 40.700772766249464, -73.8428640273683 40.700716958750135, -73.8448992564236 40.69952989246181, -73.84513902799733 40.69942244816326, -73.84533666965564 40.69934045830865, -73.84902111583445 40.698415045164516)), ((-73.85252056871728 40.705348885239566, -73.85267251288703 40.70518682092741, -73.85279688712828 40.70506999083527, -73.85292747158309 40.704957153311554, -73.85306404572465 40.704848500763674, -73.85320637840154 40.70474421658022, -73.85335422901696 40.70464447693402, -73.85350734634368 40.70454945168124, -73.85366547089839 40.70445930076231, -73.85382833493563 40.70437417690397, -73.85384413334468 40.70439350486089, -73.85395374565901 40.70434218598567, -73.85393684027001 40.704321502267724, -73.85406415951527 40.704263557268874, -73.85407982010554 40.70428315877482, -73.85418119262968 40.70423569693938, -73.85424418092269 40.70431453286921, -73.85431129370333 40.70439853122088, -73.85441492517236 40.704528237129416, -73.85472793318131 40.70491999364787, -73.85475789796948 40.704957497294714, -73.85451441232469 40.7052135225552, -73.85448042179019 40.705249265964234, -73.85446031649387 40.70524747914214, -73.85443741280012 40.70525105043041, -73.8544225142258 40.705253529611106, -73.85440789362953 40.70525767959258, -73.85439908818685 40.70526058071281, -73.8543870633536 40.705264923082716, -73.85437291677361 40.70527146271963, -73.85436082506506 40.70527933231049, -73.85434563334465 40.705290328159585, -73.85433179719772 40.7053031762758, -73.85432350404929 40.70531260765628, -73.85431175130839 40.70532780424237, -73.85430374792813 40.705345419847646, -73.85429854254238 40.70536219881569, -73.85429711181689 40.705379568795294, -73.85429811339374 40.705395043572935, -73.854299811618 40.70540741876707, -73.85430426010832 40.705421848810246, -73.85431181067207 40.70543762724499, -73.85432383441551 40.705456001214934, -73.85433965933966 40.70547204226286, -73.85435135540877 40.70548333418335, -73.85436339005666 40.70549672562612, -73.85437028049479 40.70550648059275, -73.85437819182886 40.70552125180565, -73.85438333715882 40.70553521265952, -73.85438687799187 40.70555076268929, -73.85438639899073 40.70556907040669, -73.8543832960158 40.70558709204364, -73.854292125094 40.705943788603875, -73.8543961332747 40.70648070767497, -73.85453082567903 40.70664362760786, -73.8531877714343 40.70707589028713, -73.85269329788247 40.7072350320017, -73.8525552414734 40.70727946393577, -73.85151676672788 40.70699345813721, -73.85156394391134 40.70697659655077, -73.85127046277002 40.706912604617386, -73.85126617406071 40.70691166974701, -73.85125785803551 40.7069098561753, -73.85137284827907 40.70680041142432, -73.85148166912944 40.70668737365691, -73.85158412608888 40.70657094255336, -73.85168003884614 40.7064513259166, -73.85176923536567 40.706328736962774, -73.851851557804 40.70620339432868, -73.85197292112547 40.70602702656933, -73.85210060170324 40.70585326207347, -73.85223450454824 40.705682231272725, -73.85237452876216 40.70551406278944, -73.85252056871728 40.705348885239566)), ((-73.83461741057901 40.709935119850556, -73.83497115532013 40.70974221454228, -73.8353260125206 40.709552760500536, -73.83559474468278 40.709405928822804, -73.8359558691069 40.70921260868225, -73.83615689160563 40.70910614821485, -73.83636572946708 40.70898916791128, -73.83685068535435 40.7094454624911, -73.83730200362032 40.70986699089677, -73.83822868023094 40.708504656145195, -73.8382705478637 40.708521722957805, -73.83830336596226 40.70852721446155, -73.84008284510149 40.70882495228062, -73.84021775614681 40.708847523663785, -73.84022712235993 40.708849090948895, -73.84036893928743 40.70887281719154, -73.84045217617074 40.709134619728864, -73.84020820013052 40.70923515132563, -73.84015767298219 40.70925549219293, -73.84014292984838 40.709261642031855, -73.84002408550138 40.70930730851601, -73.83984446867244 40.70937004420421, -73.83966135638143 40.709426626944676, -73.83947511223984 40.70947694466371, -73.83928610693756 40.70952089610586, -73.83909471468138 40.70955839533144, -73.83890131675575 40.70958936721905, -73.83870629796527 40.70961375016243, -73.83862203192473 40.70961979246683, -73.83853802184899 40.709627636994085, -73.83842498734887 40.70964109324167, -73.83831270699656 40.709657810292796, -73.83815648478536 40.709686771866814, -73.8380025192137 40.709722043594184, -73.83785124952371 40.70976352524517, -73.83770310908797 40.709811098573745, -73.83755852186181 40.7098646264117, -73.83741789763742 40.70992395806512, -73.83728164152849 40.70998892212304, -73.83715014211953 40.71005933364521, -73.83702377383928 40.71013499146293, -73.83690289814209 40.71021567908171, -73.8367878611372 40.71030116647816, -73.83667899122396 40.71039120919618, -73.83656581831457 40.71050532000077, -73.8364466504026 40.71061583993711, -73.8363216855507 40.71072258826547, -73.83619112773403 40.71082538785638, -73.83605519274678 40.71092406970205, -73.83591410583941 40.71101847111188, -73.83562248382395 40.71120574345724, -73.83437018870227 40.7100765501037, -73.83461741057901 40.709935119850556)), ((-73.86929046242251 40.70118000714678, -73.86943633749289 40.70114343718827, -73.86949281140843 40.70135966306379, -73.86956714082257 40.70164425446745, -73.86904627663384 40.701779742244035, -73.86927909025741 40.702794843417266, -73.86554122488323 40.703100803932074, -73.86553075712948 40.703040639250155, -73.86583441639965 40.70292849704047, -73.86613404369578 40.70281024116163, -73.86642942698319 40.70268595604711, -73.86672035659376 40.702555728836316, -73.86700662640192 40.70241965297786, -73.86728803264904 40.70227782462631, -73.86756437749149 40.702130343546294, -73.86769213148797 40.70205928601649, -73.86773236116326 40.70203652316272, -73.8677324192087 40.70203648991046, -73.86781542060116 40.70198892381614, -73.86783785126674 40.701975929058186, -73.8678429427489 40.70197297311741, -73.86785669262336 40.70196497433931, -73.86803432772385 40.70185955608242, -73.8682094124539 40.701751696041505, -73.86822212805825 40.701743707742054, -73.86822769507319 40.70174020301577, -73.86824876779191 40.701726911254596, -73.86847581680992 40.701579899243605, -73.86869825810076 40.7014288634381, -73.8689159719803 40.701273889277026, -73.8690196299604 40.70124790321469, -73.86929046242251 40.70118000714678)), ((-73.85107382469822 40.70709688521578, -73.85110972891519 40.70706440514852, -73.85123938562556 40.70709194025934, -73.85126714688954 40.70707761836073, -73.85229785494563 40.707362298992514, -73.84981078403344 40.70816268381781, -73.84973692284672 40.70803370968316, -73.8499459322602 40.70791567930312, -73.85014934425939 40.70779211571147, -73.85034690288128 40.70766316989105, -73.85053836516008 40.70752900454896, -73.85072349049724 40.70738978509767, -73.85090205129767 40.70724568597216, -73.85107382469822 40.70709688521578)))",Q015,69222,Q015,Q-16,Q-16,Q-16,Q-16,"Myrtle Ave., Union Turnpike, Park Lane South bet. Brooklyn-Queens County Line and Park Lane","305, 405, 406, 409","29,30,37",75,"11375, 11385, 11415, 11421",Q,506.86,False,Forest Park,No,100000041,PARK,,18950808000000.00000,80-30 PARK LANE,DPR,Part,Forest Park,Y,Forest Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/Q015/,No,"28, 38","12, 15",6,{8284BCBC-1FBC-4338-A70A-C5C99F5D2DE6} +"MULTIPOLYGON (((-73.92296655250053 40.77560805340663, -73.92304269647121 40.7757347987411, -73.92354760509636 40.776575238254566, -73.92260056648678 40.775903097464095, -73.92296655250053 40.77560805340663)))",Q066G,5876,Q066G,Q-01,Q-01,Q-01,Q-01,Hoyt Ave. bet. 19 St. and 21 St.,401,22,114,11102,Q,1.16,False,Sitting Area,Yes,100000305,PARK,20090423000000.00000,19370507000000.00000,,DPR/TBTA,False,Sitting Area,N,Sitting Area,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q066G/,No,36,12,14,{DF38C4DB-BAE8-4FCD-BFF5-58CEE7E0B862} +"MULTIPOLYGON (((-73.88595789178665 40.67059337671466, -73.88597264170541 40.670651877155656, -73.88569046254983 40.67069364492871, -73.88567583738292 40.67063564166043, -73.88595789178665 40.67059337671466)))",B477,5268,B477,B-05,B-05,B-05,B-05,Jerome St. and Sutter Ave.,305,42,75,11207,B,0.036,False,Jerome Gardens,No,100003856,PARK,20100106000000.00000,20021120000000.00000,447 Jerome St,DPR,False,Jerome Gardens,N,Jerome Gardens,Greenthumb,Garden,http://www.nycgovparks.org/parks/B477/,No,60,19,8,{7FC6B7E9-1998-4E6A-B7A9-F5B232FF29A9} +"MULTIPOLYGON (((-73.85277880723194 40.68568340493767, -73.85332345333525 40.68553505532295, -73.85353431822162 40.685963411612306, -73.85358687969115 40.68607019042101, -73.8536547999983 40.686208173569256, -73.85369282993203 40.686285412264425, -73.85374251946114 40.686386340302455, -73.8537789442686 40.68646035488489, -73.85382715953328 40.68655828769913, -73.85382729026529 40.686558551716054, -73.85362710942327 40.686616455213525, -73.85326723284206 40.686720017164376, -73.85316582007576 40.68674920046584, -73.8529898300343 40.68639397479238, -73.85292298186542 40.68625904626979, -73.8526545578512 40.68571725025469, -73.85277880723194 40.68568340493767)))",Q128,4817,Q128,Q-09,Q-09,Q-09,Q-09,"Atlantic Ave., 95 Ave. bet. 88 St., 89 St.",409,32,102,11416,Q,1.837,False,London Planetree Playground,Yes,100000165,PARK,20090423000000.00000,19380419000000.00000,88-02 ATLANTIC AVENUE,DPR,False,London Planetree Playground,Y,London Planetree Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q128/,No,38,15,7,{0E2C406A-34A2-4179-876D-40527A6F7A27} +"MULTIPOLYGON (((-73.8931374782664 40.84763871039284, -73.89316299702173 40.84759626319136, -73.89350119735306 40.847713123992094, -73.89347567877158 40.847755569466536, -73.8931374782664 40.84763871039284)))",X366,66005,X366,X-06,,,X-06,La Fontaine Ave. bet. E. 178 St. and E. 179 St.,206,17,48,10457,X,0.037,False,,No,100042697,PARK,,20021120000000.00000,2014 LA FONTAINE AVENUE,DPR,False,Garden,,United Gardens,,Undeveloped,,No,86,33,15,{05B8A54B-D812-46D5-BA53-0CE6EDBC6B80} +"MULTIPOLYGON (((-73.88026269917896 40.75425805862826, -73.87958023418282 40.75432934088614, -73.8795778185519 40.75432928433047, -73.8795754508628 40.754328909946175, -73.87957320569951 40.754328228617275, -73.87957115052131 40.754327262026486, -73.87956934685667 40.75432603725328, -73.87956785147465 40.754324593979355, -73.87956670692931 40.754322974573036, -73.87956594984057 40.75432122860037, -73.87956560261027 40.75431941011517, -73.87956567698403 40.754317572259694, -73.87956616930508 40.75431577266237, -73.87956706526558 40.75431406533877, -73.87956833753498 40.75431250248953, -73.87956994695054 40.7543111309001, -73.87957184606854 40.754309992844625, -73.87957397443395 40.75430912247917, -73.87957627041898 40.75430854765491, -73.87957866294515 40.754308283606264, -73.88025796268921 40.754236187611845, -73.88026043096191 40.75423594343889, -73.88026291760038 40.75423602256667, -73.88026535037612 40.75423642131819, -73.88026765944214 40.75423712881471, -73.88026977615482 40.754238123372716, -73.88027164016965 40.75423937791436, -73.88027319589665 40.75424085546109, -73.88027439960035 40.75424251184267, -73.88027521583966 40.75424430019599, -73.88027561984218 40.75424616736535, -73.88027560104577 40.75424806020995, -73.88027515955076 40.75424992289852, -73.88027430848024 40.75425170141434, -73.88027307161153 40.7542533435527, -73.88027148692103 40.75425480342727, -73.88026959830417 40.75425603605834, -73.88026746266317 40.754257007285794, -73.88026513926039 40.75425768745451, -73.88026269917896 40.75425805862826)), ((-73.88399641879444 40.75385364727697, -73.8833139619375 40.753924951659734, -73.88331154631801 40.75392489518235, -73.88330917862237 40.75392452087479, -73.88330693343453 40.75392383961863, -73.88330487821456 40.753922873094396, -73.88330307449223 40.75392164837962, -73.88330157903843 40.753920205154095, -73.88330043440921 40.75391858578472, -73.88329967722727 40.753916839836485, -73.8832993298971 40.753915021362495, -73.8832994041674 40.75391318350445, -73.88329989638463 40.75391138389108, -73.883300792244 40.75390967653833, -73.88330206441802 40.75390811364777, -73.88330367374692 40.7539067420061, -73.88330557278961 40.753905603888995, -73.88330770109337 40.7539047334545, -73.88330999703224 40.753904158555784, -73.88331238952902 40.75390389442958, -73.88399168110757 40.753831776412824, -73.88399414935155 40.75383153215984, -73.88399663597933 40.75383161120706, -73.88399906876268 40.75383200987972, -73.88400137785432 40.753832717301435, -73.8840034946099 40.7538337117909, -73.8840053586838 40.75383496627219, -73.88400691448409 40.75383644376857, -73.88400811827339 40.753838100111274, -73.88400893460792 40.7538398884382, -73.88400933871263 40.753841755594564, -73.88400932002249 40.7538436484399, -73.88400887863457 40.753845511142934, -73.88400802766886 40.753847289686405, -73.88400679089975 40.75384893186493, -73.88400520630064 40.75385039179096, -73.88400331776434 40.75385162448332, -73.88400118219074 40.75385259578005, -73.88399885884019 40.753853276024124, -73.88399641879444 40.75385364727697)), ((-73.88770314021889 40.75346317612886, -73.8870206913306 40.753534502476256, -73.88701827572213 40.753534446076614, -73.88701590801949 40.7535340718452, -73.88701366280695 40.75353339066125, -73.88701160754525 40.753532424203094, -73.88700980376535 40.753531199546295, -73.88700830823996 40.75352975636881, -73.8870071635274 40.753528137036184, -73.88700640625267 40.75352639111222, -73.8870060588234 40.753524572649305, -73.887006132991 40.75352273478876, -73.88700662510522 40.75352093515946, -73.88700752086433 40.75351922777778, -73.88700879294392 40.75351766484619, -73.88701040218707 40.75351629315266, -73.8870123011553 40.75351515497438, -73.88701442939809 40.753514284471365, -73.88701672529156 40.75351370949878, -73.88701911775962 40.75351344529552, -73.88769840134279 40.753441305415926, -73.88770086955876 40.75344106108349, -73.88770335617636 40.7534411400507, -73.88770578896762 40.7534415386451, -73.8877080980851 40.75344224599254, -73.88771021488361 40.75344324041395, -73.88771207901637 40.75344449483533, -73.88771363488976 40.753445972281774, -73.88771483876417 40.7534476285858, -73.88771565519343 40.75344941688656, -73.88771605939966 40.753451284030035, -73.88771604081491 40.75345317687605, -73.88771559953324 40.75345503959338, -73.88771474867153 40.753456818164345, -73.88771351200101 40.753458460382774, -73.88771192749248 40.75345992035987, -73.88771003903584 40.75346115311305, -73.88770790352882 40.753462124478574, -73.88770558022973 40.753462804797444, -73.88770314021889 40.75346317612886)), ((-73.87122051400752 40.75517293563994, -73.87179549399103 40.75511279192556, -73.87179982873722 40.7551340234835, -73.87108228531164 40.755207616209944, -73.871078122787 40.755187459121636, -73.87111110636535 40.7551837346167, -73.87122051400752 40.75517293563994)), ((-73.86490350396268 40.75583607691522, -73.86525571805792 40.75580132377152, -73.86525853991608 40.75581542990105, -73.86482786249012 40.75586353286655, -73.86465304459698 40.75588218329931, -73.86460915532935 40.75588686658567, -73.86437892229215 40.755908935517375, -73.86437659732333 40.755896317587656, -73.86460763954187 40.755868804250206, -73.86490350396268 40.75583607691522)), ((-73.86785062619589 40.75552679831156, -73.86803057108516 40.755508722523544, -73.86803342354443 40.75552560488092, -73.86728678261727 40.7556058593099, -73.86722109139725 40.7556110893924, -73.8672183102949 40.7555959378702, -73.86727893423318 40.755587761798125, -73.867467902598 40.75556874184774, -73.86785062619589 40.75552679831156)), ((-73.86850721335236 40.755458877962646, -73.8690801783086 40.75539919575143, -73.86908353841908 40.7554164001405, -73.8682725699014 40.75550174052883, -73.8682699157353 40.75548515827269, -73.86850721335236 40.755458877962646)), ((-73.87581440692666 40.75469132726242, -73.87659664353977 40.754611985033634, -73.87660136918436 40.754617341804746, -73.87660162368086 40.75462251188381, -73.87659880263337 40.75462651521413, -73.87659368507416 40.754629439979134, -73.87632539076701 40.75465742903871, -73.87632482224714 40.75465748786175, -73.87620904209402 40.75466940236569, -73.87581632219259 40.754708246237826, -73.87581095576411 40.754704263816805, -73.87580936459288 40.754698978831115, -73.87581085099212 40.75469440316027, -73.87581440692666 40.75469132726242)), ((-73.86689998928834 40.755627644741566, -73.8670434820146 40.75561336362731, -73.8670465127946 40.75563096391846, -73.8663272114683 40.75570600183363, -73.86632422967487 40.75568827821096, -73.86651762032734 40.755666354514545, -73.86689998928834 40.755627644741566)), ((-73.87865206841707 40.754405835610534, -73.87932851232426 40.75433462008126, -73.87933053511563 40.75433385226738, -73.87933269597319 40.754333351147984, -73.87933493803196 40.754333130171055, -73.8793371961505 40.754333195571895, -73.87933940993888 40.754333545486176, -73.87934151546779 40.754334170842, -73.8793434547465 40.754335052667905, -73.87934517452776 40.754336168395476, -73.87934662513467 40.754337485554494, -73.87934776873703 40.75433896898564, -73.87934857225609 40.754340575429865, -73.87934901327232 40.75434226073901, -73.87934908002697 40.754343978974866, -73.87934876905565 40.754345681506486, -73.87934809110239 40.754347320618315, -73.87934706400978 40.754348852204174, -73.87934571509388 40.7543502321679, -73.87934408468698 40.75435142182997, -73.87934221666254 40.75435238881806, -73.87934016317172 40.7543531070721, -73.87933798109452 40.75435355503955, -73.87933573084533 40.75435372107708, -73.87933347637976 40.7543535998487, -73.8786554485873 40.75442440851088, -73.87865338076375 40.754424538707006, -73.87865131223826 40.75442440415354, -73.87864930458345 40.75442400761678, -73.87864741106793 40.75442335995903, -73.87864568849628 40.75442248105123, -73.87864418300904 40.75442139435516, -73.87864293954765 40.75442013143589, -73.87864199120526 40.754418727448055, -73.87864136632848 40.75441722294426, -73.87864108142024 40.75441565936525, -73.87864114587038 40.754414082646704, -73.87864155604919 40.754412535108585, -73.87864230239961 40.75441106266663, -73.87864336353077 40.75440970672161, -73.87864470740247 40.75440850416051, -73.87864629842375 40.75440749096612, -73.87864808917797 40.754406694103615, -73.87865003107109 40.75440613693494, -73.87865206841707 40.754405835610534)), ((-73.88609254518681 40.75361105716113, -73.8867689730661 40.75353979793113, -73.88677099574755 40.75353902998655, -73.8867731565234 40.75353852872747, -73.88677539853067 40.75353830760571, -73.88677765662958 40.75353837286068, -73.88677987043063 40.75353872263203, -73.88678197600423 40.753539347851934, -73.88678391535831 40.75354022955267, -73.88678563524365 40.7535413451693, -73.88678708598037 40.75354266223479, -73.88678822973478 40.75354414559218, -73.88678903342367 40.753545751984745, -73.88678947462289 40.75354743726559, -73.88678954156866 40.753549155497325, -73.88678923079122 40.753550858049174, -73.88678855302916 40.75355249720496, -73.88678752611985 40.75355402885739, -73.8867861773757 40.75355540800785, -73.88678454711963 40.75355659867586, -73.88678267922548 40.75355756578472, -73.8867806258394 40.75355828417151, -73.8867784438383 40.75355873227996, -73.88677619363449 40.75355889846287, -73.8867739391823 40.75355877738006, -73.88609592739121 40.753629629845165, -73.88609385960687 40.75362976017489, -73.88609179109106 40.753629625754996, -73.88608978341597 40.75362922934789, -73.88608788985064 40.7536285818124, -73.88608616720137 40.75362770301576, -73.88608466161074 40.75362661641679, -73.8860834180231 40.753625353577696, -73.88608246953528 40.75362394965095, -73.88608184449787 40.75362244518738, -73.88608155941839 40.753620881626574, -73.88608162369162 40.753619304903665, -73.8860820348769 40.75361775734006, -73.88608277986974 40.75361628484856, -73.88608384083679 40.75361492883485, -73.88608518455817 40.75361372618688, -73.88608677544724 40.753612712889556, -73.8860885660911 40.75361191591127, -73.8860905078988 40.753611358617114, -73.88609254518681 40.75361105716113)), ((-73.88238580609453 40.754001476473306, -73.88306224190312 40.75393023901424, -73.88306426463917 40.753929471134775, -73.88306642545557 40.7539289699453, -73.88306866748829 40.75392874889568, -73.8830709255968 40.753928814223315, -73.88307313939141 40.75392916406587, -73.88307524494252 40.753929789353485, -73.88307718425888 40.75393067111659, -73.88307890409224 40.753931786788506, -73.88308035476418 40.75393310390059, -73.88308149844275 40.75393458729472, -73.883082302047 40.753936193713045, -73.88308274315497 40.753937879007935, -73.88308281000559 40.75393959724172, -73.88308249913159 40.75394129978355, -73.8830818212743 40.75394293891742, -73.88308079427372 40.7539444705367, -73.88307944544499 40.7539458496437, -73.88307781511305 40.75394704025917, -73.88307594715414 40.75394800730788, -73.88307389371607 40.7539487256285, -73.88307171167722 40.753949173666705, -73.88306946145104 40.75394933977719, -73.88306720699237 40.75394921862187, -73.88238918728527 40.75402004926512, -73.88238711948158 40.75402017952828, -73.8823850509611 40.754020045041855, -73.88238304329631 40.75401964857015, -73.88238114975593 40.75401900097374, -73.88237942714552 40.75401812212172, -73.88237792160646 40.75401703547438, -73.88237667808187 40.754015772595345, -73.88237572966656 40.75401436863817, -73.88237510470918 40.75401286415453, -73.88237481971505 40.754011300584686, -73.88237488407646 40.75400972386395, -73.88237529535022 40.75400817631366, -73.88237604042936 40.75400670384621, -73.88237710147806 40.754005347866716, -73.88237844527426 40.75400414526203, -73.88238003622904 40.75400313201598, -73.88238182692773 40.754002335095365, -73.88238376877781 40.75400177786372, -73.88238580609453 40.754001476473306)), ((-73.87032868042567 40.75526771842054, -73.87090182378316 40.75520777160773, -73.8709058364219 40.75522580694163, -73.87017932570444 40.755301688390546, -73.870176960391 40.7552830911709, -73.87021927366742 40.75527851655144, -73.87032868042567 40.75526771842054)), ((-73.86941684394967 40.75536510290399, -73.86998317723412 40.75530587514676, -73.86998714461816 40.75532391676516, -73.86926364856784 40.755399476163035, -73.86926077061224 40.755380947681765, -73.86930743924678 40.755375902872906, -73.86941684394967 40.75536510290399)), ((-73.86033693787506 40.75631664404596, -73.86057991009042 40.75629337392101, -73.86058317268144 40.7563086171376, -73.86017927295748 40.756351819269, -73.8601165984903 40.756358424936224, -73.86007126014572 40.75636317497393, -73.85980779534496 40.756390015710885, -73.85980054102853 40.756376410137754, -73.86011786286073 40.75634055862579, -73.86033693787506 40.75631664404596)), ((-73.86390277517226 40.75594227261408, -73.8642087323169 40.75591177153069, -73.8642115533489 40.7559273383061, -73.86402982964245 40.75594789142758, -73.86389249751848 40.75596249754872, -73.863714170813 40.75598146569295, -73.86348326992645 40.75600436141113, -73.863481052288 40.75598972465543, -73.86373587217248 40.755960301552236, -73.86390277517226 40.75594227261408)), ((-73.85838872867177 40.7565779536176, -73.85871569831669 40.75651223272454, -73.85872267902627 40.75652520677556, -73.8584559897796 40.7565837193778, -73.85832523909859 40.75661182643987, -73.8582901162289 40.75661904942353, -73.85801264439631 40.75667453013813, -73.85800637364785 40.75666077167785, -73.85823283615488 40.75661086268225, -73.85838872867177 40.7565779536176)), ((-73.86309526797021 40.75602706286109, -73.86332051230345 40.756005214801405, -73.8633229700544 40.75601939528842, -73.86301923901794 40.75605359144427, -73.86288884961525 40.75606756616572, -73.86258727849 40.756099297267006, -73.86258240401438 40.756097121232166, -73.86257921736427 40.756093642376975, -73.8625789639896 40.756088453357485, -73.8625827507007 40.756083484378586, -73.86288695227724 40.75604984194377, -73.86309526797021 40.75602706286109)), ((-73.88051675674978 40.75419815690627, -73.88119981493692 40.754125599998936, -73.88120186546698 40.7541251986869, -73.88120397591307 40.75412506488691, -73.88120608468999 40.75412520303814, -73.88120813378113 40.75412560857809, -73.88121006399692 40.75412627063971, -73.88121182089893 40.75412717025622, -73.88121335361572 40.754128280359986, -73.88121461956835 40.754129572090896, -73.88121558093377 40.75413100578771, -73.88121621291333 40.75413254270309, -73.88121649545462 40.754134138691526, -73.88121642153446 40.754135747819994, -73.88121599241732 40.75413732506444, -73.88121522121104 40.754138824512594, -73.88121412930617 40.75414020386273, -73.88121274874462 40.75414142442609, -73.88121111748268 40.754142451122036, -73.8812092829388 40.75414325518331, -73.88120729607597 40.75414381234873, -73.88051642992187 40.75421465834448, -73.88051453389997 40.75421474102538, -73.88051264779733 40.75421457517679, -73.88051082726388 40.754214164458524, -73.8805091279334 40.75421352153534, -73.88050759832333 40.754212665368186, -73.88050628575407 40.754211622120856, -73.88050522806262 40.75421042335035, -73.88050445834475 40.75420910331023, -73.88050399902865 40.754207701646, -73.88050386306278 40.75420626159545, -73.88050405629208 40.75420482548839, -73.88050457035139 40.754203435640036, -73.88050539214034 40.75420213345995, -73.88050649671854 40.754200959445114, -73.88050784968664 40.75419994597804, -73.88050941309118 40.75419912633806, -73.88051113715785 40.75419852208575, -73.88051297329827 40.7541981538823, -73.88051486583986 40.75419803067505, -73.88051675674978 40.75419815690627)), ((-73.88422351774172 40.75380779774913, -73.88490656788781 40.75373521885763, -73.88490861838353 40.75373481747957, -73.8849107288098 40.753734683611725, -73.88491283758206 40.75373482169505, -73.88491488668375 40.75373522716909, -73.88491681692506 40.75373588916863, -73.88491857386688 40.75373678872865, -73.88492010663647 40.75373789878316, -73.88492137265357 40.7537391904734, -73.88492233409313 40.75374062413935, -73.8849229661545 40.7537421610345, -73.88492324878294 40.75374375701393, -73.88492317495277 40.75374536614487, -73.8849227459259 40.753746943403215, -73.88492197480757 40.753748442876294, -73.88492088298587 40.75374982226162, -73.88491950250032 40.75375104286947, -73.88491787130502 40.75375206961795, -73.88491603681663 40.75375287373833, -73.88491404999652 40.75375343096769, -73.88422319183395 40.75382429919878, -73.88422129582776 40.75382438194069, -73.88421940972691 40.7538242161528, -73.88421758918126 40.75382380549309, -73.88421588982501 40.75382316262457, -73.88421436017627 40.75382230650656, -73.88421304755659 40.75382126330147, -73.88421198980468 40.7538200645649, -73.88421122001786 40.753818744549456, -73.88421076062647 40.753817342899914, -73.88421062458127 40.75381590285368, -73.88421081772952 40.75381446674036, -73.88421133170844 40.75381307687533, -73.88421215342017 40.75381177466873, -73.88421325792655 40.7538106006183, -73.88421461083031 40.75380958710763, -73.88421617418004 40.75380876741731, -73.88421789820303 40.753808163109504, -73.88421973431214 40.75380779484691, -73.88422162683577 40.75380767157876, -73.88422351774172 40.75380779774913)), ((-73.87678299670493 40.75460245544967, -73.8774660631042 40.75452992068688, -73.8774681136692 40.754529519441306, -73.87747022413559 40.75452938570976, -73.87747233291758 40.75452952392932, -73.87747438199841 40.75452992953567, -73.8774763121888 40.754530591659815, -73.87747806905105 40.75453149133321, -73.87747960171497 40.754532601486595, -73.87748086760288 40.75453389325847, -73.87748182889378 40.754535326986336, -73.87748246079103 40.75453686392213, -73.87748274324457 40.75453845991964, -73.87748266923379 40.7545400690456, -73.87748224002563 40.75454164627605, -73.87748146873061 40.754543145699124, -73.8774803767418 40.754544525013785, -73.87747899610345 40.75454574553231, -73.87747736477401 40.75454677217531, -73.87747553017392 40.75454757617709, -73.87747354326783 40.754548133278064, -73.87678266895011 40.75461895687628, -73.87678077291206 40.754619039495736, -73.87677888680723 40.75461887358602, -73.87677706628574 40.754618462808764, -73.87677536698104 40.75461781983056, -73.87677383740967 40.754616963613856, -73.87677252489085 40.754615920324035, -73.87677146726024 40.75461472151933, -73.87677069761163 40.754613401454286, -73.87677023837138 40.7546119997753, -73.87677010248535 40.75461055972044, -73.87677029579636 40.75460912361971, -73.87677080993664 40.75460773378808, -73.87677163180363 40.75460643163473, -73.87677273645433 40.75460525765574, -73.87677408948744 40.754604244232624, -73.87677565294736 40.75460342464337, -73.87677737705837 40.75460282044695, -73.87677921323056 40.754602452303054, -73.87678110579053 40.754602329157166, -73.87678299670493 40.75460245544967)), ((-73.86200969234913 40.75614198061958, -73.86242858870507 40.75610057568663, -73.86243319473827 40.756103714949155, -73.86243485827922 40.756108438290205, -73.86243310675776 40.756112484874784, -73.86242935325878 40.75611512788073, -73.86205320487372 40.7561552728782, -73.86193683504722 40.75616751092481, -73.86178009117779 40.75618399313058, -73.86171526708087 40.7561903152296, -73.86171248119675 40.75617577681334, -73.86181599953126 40.75616260776298, -73.86193687188917 40.75614973587539, -73.86200969234913 40.75614198061958)), ((-73.85942273375979 40.756413875428464, -73.85963288869222 40.75639382167743, -73.85963821310953 40.75640498363711, -73.85963762737032 40.75640645615172, -73.85922985790191 40.75645118830464, -73.85917520237808 40.75645686943374, -73.85909076541722 40.756465647873554, -73.85888941661433 40.75648763130276, -73.85888180735051 40.75647395859946, -73.85888192853382 40.756473773243606, -73.85918510332992 40.75643853552242, -73.85942273375979 40.756413875428464)), ((-73.8614081835623 40.75620493601314, -73.86150661610795 40.756196741822116, -73.86150917085023 40.75621022547263, -73.86130904246359 40.75623435059809, -73.86119772104712 40.75624584385449, -73.8611072095896 40.756255189174446, -73.8608524965196 40.756279996901654, -73.86085204366312 40.75627966226681, -73.86084996337476 40.75626587390317, -73.8610638337358 40.756240587387246, -73.8614081835623 40.75620493601314)), ((-73.88584599825062 40.75365272896184, -73.88515943043555 40.75372885160711, -73.88515726908288 40.753728989931304, -73.8851551082208 40.75372884369595, -73.8851530141566 40.753728416569224, -73.88515104726135 40.753727721218354, -73.8851492667078 40.75372677841404, -73.88514772691806 40.75372561702669, -73.8851464728317 40.75372427132048, -73.88514554345794 40.75372278095647, -73.8851449635852 40.753721191885234, -73.88514475326508 40.75371955005264, -73.8851449183315 40.753717905892756, -73.88514545278133 40.75371630712657, -73.8851463411364 40.75371480236582, -73.8851475572674 40.753713436609885, -73.88514906557931 40.75371225034603, -73.88515081864331 40.753711279547126, -73.8851527654903 40.75371055297864, -73.88584116980769 40.753639937888416, -73.88584253491128 40.753639389932474, -73.88584400154002 40.75363902487989, -73.88584552823109 40.753638852595145, -73.88584707234367 40.75363887933951, -73.8858485876998 40.753639102365746, -73.88585003167869 40.75363951622855, -73.88585136403864 40.75364010918147, -73.8858525445458 40.75364086497554, -73.88585354245028 40.75364176106762, -73.88585432700845 40.75364277131256, -73.88585487695309 40.75364386777365, -73.88585517575841 40.75364501981728, -73.88585521519369 40.753646193215985, -73.88585499531614 40.75364735465117, -73.88585451973371 40.75364847170818, -73.88585380508033 40.75364951198526, -73.88585286916951 40.753650445783315, -73.88585174046753 40.75365124611541, -73.88585044980131 40.75365189049941, -73.88584903628087 40.75365236006344, -73.88584753782129 40.753652642237945, -73.88584599825062 40.75365272896184)), ((-73.88213925539478 40.75404314033798, -73.88145267932057 40.75411924088569, -73.88145051794754 40.75411937914032, -73.88144835708094 40.75411923283543, -73.88144626302825 40.75411880564135, -73.88144429616015 40.75411811022723, -73.88144251564864 40.75411716736564, -73.88144097591457 40.75411600592885, -73.88143972189573 40.75411466018235, -73.88143879259947 40.754113169788525, -73.8814382128117 40.754111580698726, -73.88143800258172 40.754109938859415, -73.8814381677406 40.754108294705, -73.88143870228251 40.75410669595607, -73.88143959072653 40.75410519122401, -73.88144080694063 40.754103825507286, -73.88144231532746 40.75410263929202, -73.88144406845568 40.754101668549595, -73.88144601535457 40.754100942043756, -73.88213442763532 40.754030349109875, -73.88213579277735 40.75402980119791, -73.882137259435 40.75402943619254, -73.88213878614465 40.75402926395692, -73.88214033026479 40.75402929075098, -73.88214184561734 40.75402951382598, -73.88214328958166 40.75402992773523, -73.88214462191648 40.754030520730986, -73.88214580238845 40.75403127656299, -73.8821468002489 40.75403217268713, -73.88214758475546 40.75403318295728, -73.88214813464236 40.754034279436, -73.88214843338527 40.75403543148916, -73.88214847275549 40.75403660488906, -73.88214825281202 40.75403776631714, -73.88214777716465 40.75403888335877, -73.88214706244925 40.754039923612794, -73.88214612648092 40.754040857380666, -73.88214499772779 40.7540416576764, -73.88214370701816 40.754042302018824, -73.88214229346336 40.754042771537314, -73.88214079497925 40.75404305366363, -73.88213925539478 40.75404314033798)), ((-73.87840551388554 40.75444749148124, -73.87771892937894 40.75452356977021, -73.87771676798505 40.75452370795476, -73.87771460711348 40.754523561579845, -73.87771251307207 40.75452313431787, -73.87771054623103 40.754522438840084, -73.87770876576155 40.75452149592083, -73.87770722608317 40.75452033443422, -73.87770597213216 40.75451898864715, -73.8777050429138 40.75451749822327, -73.87770446321163 40.75451590911478, -73.8777042530724 40.754514267268746, -73.87770441832444 40.75451262311979, -73.87770495295916 40.754511024388236, -73.87770584149297 40.754509519685115, -73.87770705779101 40.75450815400789, -73.87770856625342 40.75450696784159, -73.87771031944676 40.75450599715605, -73.87771226639813 40.75450527071335, -73.87840068681375 40.75443470009741, -73.87840205199483 40.754434152229685, -73.87840351868184 40.75443378727188, -73.87840504541036 40.7544336150858, -73.87840658953837 40.754433641929914, -73.87840810488767 40.754433865054, -73.87840954883755 40.75443427901002, -73.87841088114716 40.75443487204893, -73.87841206158394 40.754435627919165, -73.87841305940026 40.75443652407561, -73.87841384385496 40.7544375343711, -73.87841439368368 40.754438630867575, -73.87841469236385 40.754439782930355, -73.87841473166857 40.754440956331486, -73.87841451165866 40.75444211775233, -73.8784140359458 40.75444323477849, -73.8784133211677 40.75444427500928, -73.87841238514142 40.754445208746795, -73.87841125633652 40.75444600900589, -73.87840996558299 40.75444665330643, -73.87840855199325 40.75444712277906, -73.87840705348427 40.75444740485678, -73.87840551388554 40.75444749148124)), ((-73.86596029281517 40.75572551808485, -73.86615043802625 40.755708188312795, -73.86615294474134 40.75572069025253, -73.86589804939253 40.75574976651538, -73.86578479659403 40.75576202828594, -73.86557728144442 40.75578449618706, -73.8654319536739 40.75579819970926, -73.8654299778069 40.75578443136161, -73.86581992415756 40.755741851041456, -73.86596029281517 40.75572551808485)), ((-73.87210735461426 40.75507950107791, -73.87254864690584 40.75503477575533, -73.87255729018668 40.75505281075197, -73.87198690376631 40.75511232041142, -73.87198326004027 40.75509196131848, -73.87199794963254 40.75509030360127, -73.87210735461426 40.75507950107791)))",Q035,6130,Q035,Q-03,Q-03,Q-03,Q-03,"34 Ave. bet. 79 St. and 92 St., Junction Blvd. and 11 St.",403,"21,25",115,"11368, 11372",Q,0.55,False,Mall Thirty Four XXXIV,No,100000096,PARK,20090423000000.00000,19270120000000.00000,,DPR,False,Mall Thirty Four XXXIV,N,Mall Thirty Four XXXIV,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q035/,No,"34, 35",13,14,{592574B2-7676-4FD1-AC96-18F325C0C162} +"MULTIPOLYGON (((-73.90114994571947 40.8477273357662, -73.90152165121785 40.8478018758899, -73.90152866741683 40.84780378552071, -73.90153514867696 40.847806578978194, -73.9015409053844 40.847810174155825, -73.90154576574905 40.8478144646489, -73.90154958765726 40.847819323366785, -73.9015522574797 40.847824607034354, -73.90155369717952 40.847830160700305, -73.90155386312539 40.84783581863685, -73.90155275082013 40.84784141424898, -73.9015503937097 40.84784678367561, -73.90147159414843 40.847985286896304, -73.90145504086458 40.848002100261034, -73.90143503426383 40.84801658830242, -73.90141213466347 40.848028348977394, -73.9013869781686 40.848037053247765, -73.90136026597794 40.84804245947916, -73.90133274184575 40.84804441792439, -73.90130517073327 40.84804287250632, -73.90127832338274 40.84803786710814, -73.90124456847903 40.84801687114704, -73.90120198791737 40.847984291785494, -73.90116482736902 40.84794808896738, -73.90113361613788 40.84790877913375, -73.90110880163219 40.84786692458025, -73.90109073515394 40.84782312083785, -73.90108655539649 40.847803744056264, -73.90108656562204 40.84778410792348, -73.90109076623742 40.84776473382505, -73.9010990461965 40.847746132244566, -73.90110224532482 40.84774153707212, -73.90110635571332 40.84773738212114, -73.90111127641401 40.84773376906073, -73.90111688396253 40.84773078963517, -73.90112303832092 40.84772851666427, -73.901129587617 40.84772700674874, -73.90113636814704 40.84772629846944, -73.90114321149466 40.8477264096919, -73.90114994571947 40.8477273357662)))",X037,6384,X037,X-05,X-05,X-05,X-05,E. Tremont Ave. at Valentine Ave. bet. Carter Ave.,205,15,46,10457,X,0.232,False,O'Brien Oval,Yes,100004341,PARK,20100106000000.00000,18960310000000.00000,,DPR,False,O'Brien Oval,Y,O'Brien Oval,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X037/,No,86,33,15,{1E2816D8-D7F7-460E-B690-CF1AECEB5CC6} +"MULTIPOLYGON (((-73.79198379030511 40.68322604652874, -73.79204940220835 40.68319837968387, -73.79211741515552 40.68329145479234, -73.79215156481156 40.68333818935245, -73.79222859135817 40.68344360064023, -73.79209897332352 40.683498257507125, -73.79191978450348 40.683253036350585, -73.79198379030511 40.68322604652874)))",Q486,5933,Q486,Q-12,Q-12,Q-12,Q-12,115 Dr. bet. Sutphin Blvd. and 155 St.,412,28,113,11434,Q,0.092,False,B.C.C.A. Mini-park and Garden,No,100000126,PARK,20090423000000.00000,20021120000000.00000,,DPR,False,B.C.C.A. Mini-park and Garden,N,B.C.C.A. Mini-park and Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q486/,No,32,10,5,{992F8154-3AE8-4E4C-BD48-0DECF0599975} +"MULTIPOLYGON (((-73.94515009314163 40.8071617525862, -73.94533052124264 40.806914551542626, -73.94539222549962 40.80694064571181, -73.94525901864091 40.80712314956863, -73.94521179755705 40.80718784685093, -73.94515009314163 40.8071617525862)))",M362,5014,M362,M-10,M-10,M-10,M-10,W. 124 St. bet. Lenox Ave. and 5 Ave.,110,9,28,10027,M,0.046,False,W 124th Street Community Garden,No,100003892,PARK,20100106000000.00000,20021120000000.00000,77 WEST 124 STREET,DPR,False,W 124th Street Community Garden,N,W 124th Street Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M362/,No,70,30,13,{AD74A851-3DC4-484E-B6CB-814EFF9D80B3} +"MULTIPOLYGON (((-73.77182519637729 40.75654902581723, -73.77179807346324 40.756490438158224, -73.77179026797825 40.75647357778931, -73.77180276272358 40.75647115856231, -73.77181649342364 40.756467465762114, -73.771833201639 40.756462971102046, -73.77205293058121 40.75640386180547, -73.77222145944657 40.75646349632965, -73.77238984903916 40.75652308260401, -73.772502057278 40.756493096710784, -73.77250995615954 40.75649098530959, -73.77256207879249 40.7564770574128, -73.77257672087008 40.75647314479646, -73.77259854589141 40.756467313867454, -73.77281969589676 40.756945855192626, -73.77089623526912 40.75746772016118, -73.77068137807163 40.75700512937853, -73.77171330020641 40.75672695075269, -73.77172905767371 40.75672207691069, -73.77177049980997 40.7567020119556, -73.77178274345795 40.75669339583672, -73.77182707234411 40.75663748284802, -73.77183306768194 40.75661858585275, -73.77183550637167 40.75659047501715, -73.77182934067008 40.7565591962607, -73.77182519637729 40.75654902581723)))",Q364,5325,Q364,Q-11,Q-11,Q-11,Q-11,"46 Ave., 46 Rd. bet. Oceania St. and 211 St.",411,19,111,11361,Q,2.552,False,Marie Curie Park,Yes,100000239,PARK,,19521105000000.00000,46-27 OCEANIA STREET,DPR/DOE,False,Marie Curie Playground,Y,Marie Curie Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q364/,No,25,11,6,{B53CA97E-A5A9-4C68-85CC-566DD40BE793} +"MULTIPOLYGON (((-73.93804386160019 40.80951499586594, -73.93840834517887 40.80901484833153, -73.93894151143154 40.80923904528635, -73.93857703063081 40.80973919538878, -73.93804386160019 40.80951499586594)))",M204,4874,M204,M-11,M-11,M-11,M-11,Madison Ave. bet. E. 130 St. and E. 131 St.,111,9,25,10037,M,0.766,False,Moore Playground,Yes,100004364,PLGD,20100106000000.00000,19460924000000.00000,2058 MADISON AVENUE,DPR,False,Moore Playground,Y,Moore Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M204/,No,70,30,13,{0CE93D70-B98B-4159-81F7-3B1D8AA0ABAE} +"MULTIPOLYGON (((-73.99303393306414 40.71999727261315, -73.99303985215104 40.71999684883105, -73.99304681498505 40.7199979892971, -73.99308026877021 40.72000816256993, -73.9938827389426 40.720252484769446, -73.993909798295 40.720260733071726, -73.9939155549418 40.72026368254533, -73.99392038822077 40.720268589677985, -73.99392215258861 40.72027237191182, -73.99392254872176 40.72027637559881, -73.99392154108581 40.720280894303215, -73.99391841839379 40.720285456120415, -73.99391339730828 40.72028931183753, -73.99390658442101 40.720291696927355, -73.99389950183715 40.7202923395162, -73.99389431073483 40.72029161162917, -73.99386924207957 40.72028410905132, -73.99306305749563 40.72004007019564, -73.99302491575271 40.72002812082878, -73.99302096884959 40.720025153410056, -73.99301772866256 40.72002101086889, -73.99301613958171 40.72001665320595, -73.99301626439292 40.720011536517305, -73.99301842258507 40.72000637942902, -73.99302262472278 40.720002012211594, -73.99302798189288 40.7199989183847, -73.99303393306414 40.71999727261315)), ((-73.99134878107058 40.7194881154642, -73.99135703763392 40.719487889155886, -73.99137109903293 40.71949183084141, -73.99138252828506 40.719495034810784, -73.99203123472923 40.719690072521566, -73.99206151400679 40.71969917606551, -73.9920624407034 40.71969947780019, -73.99206720555755 40.719701029706904, -73.99207038922829 40.71970206641292, -73.99207600364058 40.71970566253496, -73.992080221247 40.71971092270265, -73.99208154373554 40.71971714351503, -73.99208109139536 40.71971897512079, -73.99208012158832 40.71972289497306, -73.9920800114636 40.719723340717835, -73.99207919822244 40.7197244401843, -73.99207715979257 40.71972719560389, -73.99207308084539 40.71973034980878, -73.9920666087879 40.71973297705047, -73.99205746088634 40.71973391024837, -73.99205121892234 40.719732492415226, -73.99204699961982 40.71973153488197, -73.99201730499551 40.719722565550754, -73.99173465731036 40.71963718448488, -73.99136657576456 40.71952599404251, -73.99134232435911 40.71951834779385, -73.99133739048935 40.71951522625583, -73.99133522487462 40.71951287216028, -73.99133435507885 40.71951192475853, -73.99133238501132 40.71950757875001, -73.99133215377745 40.7195018541919, -73.99133430617023 40.71949666111403, -73.991337489235 40.71949309083226, -73.99134202258107 40.719490779564616, -73.99134447031435 40.71948981440219, -73.99134456737148 40.71948977568756, -73.99134627060549 40.7194891049358, -73.99134878107058 40.7194881154642)), ((-73.98831992105781 40.718568275288625, -73.9883262139964 40.718568148955, -73.98832775137562 40.71856842106488, -73.98833120722429 40.7185690319609, -73.9883473404767 40.71857391075656, -73.9883523619985 40.71857543402693, -73.988578246681 40.71864400617284, -73.98892923848607 40.718750555469605, -73.98893640096767 40.71875273088949, -73.98895223725036 40.71875753392889, -73.98895414616426 40.7187584508311, -73.98895777818977 40.71876019456662, -73.98896229040224 40.71876419866622, -73.98896430293848 40.71876831869184, -73.9889651630877 40.71877008017161, -73.9889650483327 40.71877693033925, -73.98896272543547 40.71878159115565, -73.98895893393876 40.71878512439289, -73.98895854567431 40.71878548636061, -73.98895834088847 40.718785677249066, -73.98895261319633 40.71878864658113, -73.98894669522389 40.718789976966754, -73.98893976198585 40.7187899763009, -73.98892018815498 40.718784508323886, -73.98891487073142 40.71878289770037, -73.98833085278225 40.71860603927976, -73.98832999831153 40.718605751930525, -73.98830942237375 40.71859884023056, -73.98830421791719 40.718594377675444, -73.98830162434832 40.71859001354097, -73.98830081789812 40.718585862108384, -73.98830174436782 40.71858052848238, -73.98830401269952 40.71857678889522, -73.98830470764236 40.718575643517255, -73.9883092400975 40.718571907762, -73.98831377109192 40.718569749699746, -73.98831424573372 40.718569523719964, -73.98831992105781 40.718568275288625)), ((-73.9905870383109 40.71925751078786, -73.99059458955962 40.71925648842586, -73.9905951505588 40.71925654250229, -73.99059615657006 40.719256638939015, -73.99060070137395 40.71925707425638, -73.99061377442159 40.71926091959929, -73.99063015417435 40.719265900752795, -73.99119158706536 40.719436639410496, -73.99121732968804 40.71944446680721, -73.99122068967036 40.71944560710886, -73.99122851621648 40.71944826330882, -73.9912321211855 40.719449487376195, -73.99123753309517 40.71945344102621, -73.99124050561957 40.719457882566694, -73.99124130054325 40.71946115598024, -73.99124176424841 40.71946306779781, -73.9912407208611 40.719468157399746, -73.99124063795907 40.719468558120326, -73.99123693860956 40.71947401042558, -73.99123682142661 40.719474088761004, -73.99123148544976 40.71947771380713, -73.99122442637815 40.71948002487793, -73.99121912042217 40.71948036396557, -73.99121789779164 40.71948044221668, -73.9912125789589 40.719479700691274, -73.99121232095236 40.71947962412826, -73.99120297590744 40.719476854346986, -73.9911767077957 40.71946884950637, -73.99061238695619 40.71929690565934, -73.99059652794213 40.7192920740305, -73.99058723747791 40.71928870176256, -73.99058007021091 40.71928609960352, -73.99057476151808 40.71928076995197, -73.9905739416907 40.71927808996766, -73.99057286869902 40.71927458059304, -73.99057251734453 40.71927343151377, -73.99057408765404 40.719266994798204, -73.99057712169181 40.71926291753809, -73.99058096748168 40.71926003532089, -73.9905870383109 40.71925751078786)), ((-73.98907333206178 40.71880138230605, -73.98908130241279 40.718799420851184, -73.9890909067992 40.71880019259811, -73.98910400804935 40.71880419660516, -73.98911151849045 40.71880646930211, -73.98946565423414 40.71891365932188, -73.98968061399913 40.71897872261663, -73.9896972386005 40.71898375525405, -73.98971079319746 40.718987933030895, -73.98971527613455 40.71899029907084, -73.98972002389051 40.71899459402635, -73.98972047233703 40.71899537480842, -73.98972067703646 40.7189957341301, -73.98972236078103 40.71899867084304, -73.98972314361453 40.71900307620712, -73.98972202074975 40.71900862324752, -73.98971853328187 40.71901327136797, -73.98971808107113 40.719013873768645, -73.98971760991941 40.71901450318298, -73.98971234729632 40.71901800389513, -73.98970623749123 40.71901992773854, -73.98969639502289 40.71902011776622, -73.9896804188995 40.719015736255436, -73.989666627594 40.71901151883134, -73.98909446332996 40.718836595146044, -73.98908757185634 40.718834487299944, -73.98907041962909 40.71882851169049, -73.98906563163615 40.71882452107659, -73.98906306169106 40.7188200867219, -73.9890622623994 40.71881528062478, -73.9890638232312 40.71880972372664, -73.9890639984329 40.71880950311839, -73.9890671236479 40.718805595202326, -73.98906789548123 40.71880462992906, -73.98906907441317 40.718803925842295, -73.98907333206178 40.71880138230605)), ((-73.9922553736372 40.71976271302845, -73.9922606334571 40.719762323461424, -73.99226584462787 40.71976299198983, -73.99229034127873 40.719770189606265, -73.99234634577934 40.71978697074007, -73.99239041916354 40.719800176034965, -73.99270620614075 40.71989479502204, -73.9927367092942 40.71990393532325, -73.99275181938019 40.71990903226007, -73.9927649257572 40.71991345368673, -73.99276819110821 40.71991455521531, -73.99277040532598 40.71991678951899, -73.99277297930995 40.719919386750675, -73.9927738904106 40.71992167950564, -73.99277489380442 40.71992420639895, -73.99277491334779 40.719929532014724, -73.99277246988372 40.719934827759104, -73.99276745693157 40.71993971361007, -73.99276416878715 40.71994141536687, -73.99276294135525 40.71994205014906, -73.99276228327196 40.71994221490098, -73.99275702333952 40.71994353651848, -73.99275002841283 40.719943746797526, -73.9927497301599 40.71994368284251, -73.9927436573993 40.719942383024424, -73.99271974060784 40.7199349847276, -73.99269042807728 40.7199261830892, -73.99233083270933 40.719818202087325, -73.99227531225321 40.719801529940206, -73.99225276021859 40.71979412983681, -73.99224624374075 40.71979199158797, -73.99224085195678 40.71978724463784, -73.99223979764874 40.71978508784594, -73.99223925097067 40.71978396847545, -73.99223836113944 40.71978214848525, -73.99223797461286 40.71977785392822, -73.99223974584397 40.71977258516507, -73.99224208607099 40.7197698927986, -73.99224429135293 40.719767356211236, -73.99224842346554 40.71976496923815, -73.99224968641718 40.71976423900978, -73.99225109017219 40.71976386269117, -73.9922553736372 40.71976271302845)), ((-73.98983214028702 40.71902885127253, -73.98983798008913 40.71902790985486, -73.9898402950884 40.71902812978356, -73.98984554881167 40.71902862642798, -73.98986376171861 40.719033986066485, -73.98986590740431 40.71903463732399, -73.9900894175475 40.71910245976881, -73.990135564688 40.71911646215732, -73.9901439711103 40.719119013121116, -73.99017882404864 40.71912993207969, -73.99018386664777 40.719133563365375, -73.99018725804311 40.719138165259714, -73.99018744855749 40.71913842462278, -73.99018861000071 40.71914392233426, -73.99018766365633 40.71914855897872, -73.99018742795815 40.71914971611377, -73.99018477029516 40.719153641209566, -73.99018058946164 40.719157107815896, -73.99017603362212 40.719159339791155, -73.99017360014625 40.719159901501605, -73.99017107079887 40.71916048571655, -73.99017011563588 40.719160706259935, -73.99016279178214 40.719160728147095, -73.99016182958626 40.719160484927244, -73.99015620079969 40.719159060740076, -73.99013175558646 40.71915125753074, -73.9901216603033 40.719148178722385, -73.98997791682629 40.71910434749089, -73.98985028334342 40.71906542888167, -73.98984521559521 40.71906388315992, -73.98982749748474 40.71905801837621, -73.98982227619285 40.71905439426313, -73.98981961734941 40.719050434486306, -73.98981933809398 40.71905001842608, -73.98981880798186 40.71904922953256, -73.98981854780061 40.71904791476518, -73.98981786068609 40.71904443963693, -73.9898177838142 40.719044052410936, -73.98981786080441 40.71904366519851, -73.98981867453348 40.71903956164709, -73.98982165897253 40.71903499542557, -73.98982653817905 40.719031104753796, -73.98983179348427 40.71902899082095, -73.98983214028702 40.71902885127253)))",M080,6581,M080,M-03,M-03,M-03,M-03,Delancey St bet. Bowery and Essex St,103,1,5,10002,M,0.376,False,Schiff Mall,Yes,100004869,PARK,20100106000000.00000,19110614000000.00000,,DPR,False,Schiff Mall,Y,Schiff Mall,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M080/,No,65,26,"7, 12",{D3492E01-017F-49D1-A040-2080F93FD831} +"MULTIPOLYGON (((-73.91648947831831 40.8340685158814, -73.91654512822069 40.83401169713664, -73.91660304870499 40.83404453144349, -73.9164971364702 40.83415230974186, -73.91643921475875 40.83411947538151, -73.91648947831831 40.8340685158814)))",X225,5679,X225,X-04,X-04,X-04,X-04,E 167 St bet. Sheridan Av and Sherman Av,204,16,44,10456,X,0.022,False,Park,No,100004975,PARK,20100106000000.00000,19670621000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/X225/,No,77,29,15,{A01BFF6A-9268-4CE4-9F4B-5ACB14AB59D2} +"MULTIPOLYGON (((-74.08859687032225 40.58231860205633, -74.08877565436188 40.58211034389065, -74.0901214767691 40.58280134810169, -74.0897365200011 40.58324141320287, -74.08927753161676 40.58300648901553, -74.08948646238544 40.582772343271934, -74.08859687032225 40.58231860205633)))",R087,5071,R087,R-02,R-02,R-02,R-02,Mason Ave. bet. Buel Ave. and Dongan Hills Ave.,502,50,122,10305,R,1.293,False,Dongan Playground,Yes,100004152,PARK,20100106000000.00000,19620516000000.00000,450 BUEL AVENUE,DPR/DOE,False,Dongan Playground,Y,Dongan Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/R087/,No,64,24,11,{D085028D-BC34-4CAC-8185-18B232705354} +"MULTIPOLYGON (((-73.87742196835221 40.85506246380548, -73.87741641572492 40.85506175822362, -73.87738631070525 40.855059933352756, -73.87730313556062 40.855060710296605, -73.87724806692788 40.855065953812186, -73.87639615415246 40.85529811220964, -73.87639764852769 40.85529936729517, -73.87531156116032 40.85551163223508, -73.87531140715467 40.855509009836744, -73.87509977808487 40.85555302207647, -73.8744652878406 40.85568497495346, -73.87440445416567 40.855676612513484, -73.8741701518871 40.85563073469267, -73.87403927138764 40.85558551775755, -73.87391155040453 40.85553536222791, -73.87378731130512 40.85548039543602, -73.87366686931514 40.85542075641388, -73.87353205559266 40.855349382511726, -73.87340023802432 40.85527485191303, -73.87327154575306 40.855197236809104, -73.87309880232159 40.855075231996146, -73.8729302927713 40.85494985924265, -73.8727661331686 40.854821202440704, -73.87260643482455 40.85468934997974, -73.8724513031172 40.85455439024285, -73.87245442244956 40.85455550309752, -73.87233415901898 40.854446346618346, -73.87221855164495 40.85433432800207, -73.87210771750885 40.8542195617549, -73.87198320488106 40.853634048011514, -73.87185181194788 40.853049400806746, -73.87171355065111 40.85246566875697, -73.87164948231272 40.85210841722901, -73.87160693412876 40.851595216210185, -73.87157229132154 40.85108167363851, -73.87154556069338 40.85056785706579, -73.87152674310623 40.85005383943848, -73.87151584298813 40.849539689203084, -73.87151286001819 40.84902547750062, -73.87151779624878 40.84851127457262, -73.87153064899066 40.84799714975333, -73.87155141792124 40.84748317507943, -73.87155477042015 40.84741494305151, -73.87154740003912 40.84741514195786, -73.87153271398799 40.847093712610096, -73.8715251089375 40.8467721407467, -73.8715245869793 40.84645051822186, -73.87153114902428 40.8461289341856, -73.87154479361173 40.84580747778408, -73.87163752456077 40.84532606111014, -73.8717358498811 40.84484528539193, -73.87201106018743 40.843692544236134, -73.8720531150282 40.84367395247493, -73.87205514680011 40.843673054235005, -73.87260489333907 40.84343002064621, -73.87291613246308 40.843292423651896, -73.87306049735692 40.843215901976826, -73.87342892324548 40.84295399482773, -73.87355825053663 40.84285234215532, -73.87368545412819 40.84275235922783, -73.87386026284791 40.84261495688196, -73.87402404947407 40.842486217588515, -73.87412617199077 40.84231722985065, -73.87423936317695 40.842129921833376, -73.87499175165757 40.84238764968464, -73.87526159053043 40.8419222280244, -73.87573805120279 40.84208547594424, -73.87618697854715 40.84223928668012, -73.87666745498032 40.84240390470856, -73.87691254252111 40.84248787370214, -73.87691038653085 40.84251430629548, -73.87690806430362 40.84254278553349, -73.87698772129795 40.842553436905405, -73.87725116286865 40.84261236490923, -73.87731433396469 40.84262649602781, -73.87748620234525 40.84266493978067, -73.87788193157456 40.84275345651881, -73.87709146189322 40.84403520076638, -73.88152850827993 40.847087646222704, -73.88178327213438 40.84726289588005, -73.8824238498221 40.84770353769854, -73.8824477911055 40.8477288920615, -73.88265281194987 40.8479460133169, -73.88250865162762 40.848468432436654, -73.88250791003132 40.8485720693884, -73.88251806898901 40.84864811643844, -73.88269450704978 40.84903231379081, -73.88259074586344 40.849399159869776, -73.88256872068808 40.849477029158166, -73.88194559227088 40.851679979109555, -73.88191400042592 40.85179166184142, -73.88141869201297 40.853542615383056, -73.88135715525377 40.85376014878558, -73.88092053958401 40.85530352909439, -73.88083077225951 40.85562083810025, -73.88058617819664 40.8564854037791, -73.87875368710431 40.85563234967027, -73.87864363089642 40.85558111574516, -73.87776504892692 40.85517210158952, -73.8776463118725 40.855117550003186, -73.87754460519898 40.85508255974443, -73.87749100308596 40.855073284502936, -73.87749146453766 40.855071294906146, -73.87744645421937 40.855065574903726, -73.87743299530518 40.85506324634194, -73.87742196835221 40.85506246380548)), ((-73.87518502998384 40.855852728637906, -73.8753295495704 40.855818819298875, -73.87537601692442 40.85580791682273, -73.87569266107907 40.85573478101273, -73.87602331022417 40.85566463010626, -73.87617540022472 40.855637137542274, -73.87636407488442 40.8556060955303, -73.87641446623826 40.85559780466489, -73.87650298796554 40.855586452406556, -73.87656260980137 40.85557880710397, -73.87665595013029 40.85557321402571, -73.87672661544063 40.85556897980086, -73.87681172359595 40.85556734806796, -73.87691120472161 40.855570833793855, -73.87694822357737 40.855571743158734, -73.87698228571165 40.85557460882898, -73.8770319925823 40.85558239164118, -73.87709427068754 40.85559864074047, -73.8771244459981 40.85561069264602, -73.87715910111665 40.85562577856764, -73.87721898126541 40.855658711156885, -73.87724742342432 40.85568130144056, -73.87726969091162 40.85569898737447, -73.87730009153427 40.85573102408488, -73.87730081250734 40.85573172543417, -73.87732131904149 40.85572807953918, -73.87734116053632 40.85572555584662, -73.87737458082286 40.85572345090501, -73.87740436745584 40.85572380223571, -73.87742342502752 40.855725129098765, -73.87745544606386 40.85572934229747, -73.87749410058713 40.85573792721439, -73.87752311662969 40.85574713493207, -73.87755253177176 40.8557592381467, -73.87758198467522 40.855774672312464, -73.8776124353818 40.8557950602332, -73.87762740270861 40.85580723184673, -73.87764562780718 40.855824641471244, -73.87768072132809 40.85582008617671, -73.87770208724852 40.85581798186645, -73.87772096493323 40.85581653767683, -73.87774049899866 40.855815450774394, -73.87775606379584 40.85581487834615, -73.87777038872608 40.855814581953666, -73.87778789642648 40.85581451765583, -73.87781601754244 40.85581510304471, -73.87784135153704 40.85581635904337, -73.87787170131804 40.85581877927894, -73.87789788858115 40.8558216795657, -73.87792244772432 40.85582509410544, -73.87795158435893 40.855830037114316, -73.87798814552596 40.85584002711927, -73.87802647886286 40.85585050615219, -73.87807620403879 40.85586853792882, -73.87811463133113 40.85588795080908, -73.8781999247035 40.85593498351598, -73.87829561994778 40.85598493211874, -73.87837806432663 40.85603417779724, -73.87846859938129 40.8560803432532, -73.87857866738516 40.85614043638862, -73.87865842031815 40.85618688210558, -73.87878528172975 40.85626621189504, -73.87908499278468 40.85644762335133, -73.87928913430775 40.85657118644927, -73.87945235092621 40.856669978032144, -73.87983500736055 40.856901589210565, -73.88021476744356 40.8571314455452, -73.88037047302254 40.85724231801523, -73.88045784523564 40.85732037312129, -73.88055241526386 40.85742502892259, -73.88060614693684 40.85749952365608, -73.8806537473789 40.857574468570355, -73.88067028205329 40.857604679147165, -73.88068607715218 40.8576339569481, -73.88071410809076 40.85769452146113, -73.88073637578196 40.85775266669255, -73.88075644386403 40.85781189563813, -73.88077215019312 40.85786626102124, -73.8807911469384 40.85794623707149, -73.88080502310626 40.85804305601859, -73.88080667501075 40.85810274768745, -73.88080871461031 40.85817641537993, -73.88080580826738 40.85823099655299, -73.88080133646534 40.85829941305604, -73.88078835089215 40.85840444553901, -73.8807681206525 40.858509648829234, -73.88073469957239 40.858683436994255, -73.88070494655541 40.858838159236846, -73.88066502185453 40.85904576759491, -73.8806178644556 40.85929098736228, -73.88053781377418 40.859707245624534, -73.88047397053896 40.860039219334254, -73.88043859756733 40.860223158380926, -73.88042096429976 40.86031484339809, -73.88040617927237 40.86039172279103, -73.88039905538844 40.86045192852964, -73.88038981420291 40.86053002212401, -73.88039124143594 40.86060235102847, -73.8803958371368 40.86068497942868, -73.88041236997597 40.8607838551496, -73.88042067238969 40.86081427422977, -73.88043608832787 40.8608707500788, -73.88046448406128 40.86094609294899, -73.88050532489211 40.86103559451035, -73.88054857827751 40.86110927603039, -73.88058304814506 40.861162182225435, -73.8806147790969 40.86120600412649, -73.88070327847892 40.86131269395668, -73.88075801311379 40.86136812801447, -73.88087594918127 40.86147027183336, -73.88095989781972 40.86153945762899, -73.88115641063733 40.86169016551788, -73.88141130880531 40.86186680958951, -73.88145676436612 40.861896339263616, -73.88149818004551 40.86192324524332, -73.8816080221528 40.8619946048217, -73.88169916572073 40.86205323289841, -73.88178227212435 40.86210669015535, -73.88184146924178 40.86214476860459, -73.88191404854692 40.86219258421702, -73.88198220577824 40.86223927775142, -73.88200644364872 40.862258093077116, -73.88201654664407 40.862264916519955, -73.88203251865143 40.86227833485201, -73.88203476559946 40.862280078698035, -73.88203520236739 40.862280588822244, -73.88213821167736 40.86236712587608, -73.88217231868157 40.862400981334766, -73.88282026857469 40.86317596754661, -73.88340279204463 40.8638779387869, -73.88367214320408 40.86420251681559, -73.88374315981686 40.864308996617844, -73.88377131480613 40.86436422323036, -73.88379236783979 40.864405517502796, -73.88381063274255 40.864458085802084, -73.88382733506933 40.8645061599792, -73.88384955609612 40.86457011715147, -73.88385577846476 40.86461502905797, -73.8838629391278 40.864666708191166, -73.88387103572983 40.86472514734432, -73.88386840492416 40.864782840900105, -73.8838665647147 40.864823196313736, -73.88385748977757 40.86490995840674, -73.88384880074734 40.86494418179156, -73.88384111616315 40.86497445483623, -73.88383214285203 40.865009799943905, -73.88382185435287 40.86503888171845, -73.88380219042102 40.865094470782154, -73.88378463951378 40.865129403827595, -73.88375835656178 40.86518171833783, -73.88373601584098 40.86522618634161, -73.88369658114895 40.8652850188387, -73.88365299413341 40.86534221454651, -73.88361408939302 40.86538688284052, -73.88356846809866 40.86543926424492, -73.88351386577861 40.86548787881973, -73.88341901824192 40.86556547820802, -73.8833552857949 40.865611391016856, -73.88322452399836 40.86568513945701, -73.88314900545447 40.86572773182244, -73.88313443437734 40.86573594934499, -73.88297543818005 40.86582562108193, -73.88292165253658 40.86585595535543, -73.88284256918264 40.86590055739787, -73.88277480474021 40.86593877470548, -73.88271729181689 40.86597121044209, -73.882596292221 40.86603945168774, -73.8825362334321 40.86607332372623, -73.8823802847586 40.86616127510444, -73.88235981469018 40.86617282012914, -73.8823530835515 40.86617661603534, -73.8822206168556 40.866251323317556, -73.88214489755056 40.866294026478684, -73.88212023600553 40.86630793546799, -73.88209272952652 40.86632344801898, -73.88206760370043 40.86633761856511, -73.8819155804142 40.86642335451715, -73.8817846363036 40.866490433004, -73.88160256832832 40.86658370187224, -73.88147111380094 40.86664663362295, -73.88140506019242 40.866675800155996, -73.88126963504855 40.866732801471876, -73.88111681546758 40.86679244565604, -73.88098936475899 40.86684072550948, -73.88087102819512 40.86688654278724, -73.88077155801948 40.86692561586008, -73.88059438382271 40.86699521251136, -73.8804956255395 40.867034005129746, -73.88037907288845 40.867076210084036, -73.88025288341792 40.867117785383115, -73.88017503016071 40.86714343515897, -73.8801386232904 40.86715543059205, -73.88011747634683 40.867162397324925, -73.88011715350994 40.867162504147764, -73.88007390652857 40.86717675268312, -73.8790353300757 40.867893897423485, -73.87903321444696 40.8678948929482, -73.87902358838274 40.86790011380117, -73.8790144335772 40.867905801601125, -73.87901152378143 40.8679077760256, -73.87889212851489 40.8679905615633, -73.8788863939397 40.867994716707244, -73.8788782944565 40.86800126287013, -73.87887369729758 40.86800550295294, -73.8788604342371 40.86801466141769, -73.8788628712067 40.86801634068784, -73.87860145227766 40.868288028238574, -73.87856953258711 40.86833149820733, -73.87853533479674 40.86837395812108, -73.87853529556786 40.86837400400474, -73.8785285754912 40.8683818924238, -73.87850798504827 40.86840534290898, -73.87850097935133 40.86841308694733, -73.87850094725943 40.868413122032635, -73.87842318369282 40.868492972987674, -73.87833864459839 40.86856875193594, -73.8782477006713 40.86864012967458, -73.87815074630913 40.86870679233427, -73.87804820552626 40.86876845039051, -73.87794052602926 40.86882483505573, -73.87782817684113 40.868875700078185, -73.87772708531779 40.868900448315785, -73.87762349286491 40.868918266346434, -73.87751822182643 40.86892901275899, -73.87741210867893 40.868932602891014, -73.87730599573025 40.86892900701909, -73.87720072517871 40.86891825485507, -73.87709713437337 40.86890043193906, -73.87699604513854 40.86887567872745, -73.87689825902423 40.86884419238847, -73.87680455493945 40.86880622319757, -73.87671567492144 40.86876207182043, -73.87663232532107 40.868712089313576, -73.87655516850572 40.86865667351335, -73.87648481575307 40.86859626272431, -73.87629760648719 40.86842237754542, -73.87618329756576 40.86831053389715, -73.87618170860151 40.86830832149004, -73.87616742184873 40.86828985242437, -73.87615099037879 40.86827013837918, -73.87613369219072 40.868250850233345, -73.87611555451406 40.86823201683131, -73.87609659748452 40.86821365440317, -73.87608608517965 40.86820416095857, -73.87607683054844 40.86819578637137, -73.87605628451884 40.86817842807693, -73.87603705114162 40.86816324317009, -73.8759409087643 40.86806407877495, -73.87578288421535 40.86789211874512, -73.87557456931394 40.867481659082294, -73.87557299372602 40.86747865875224, -73.87556980251485 40.86747313440804, -73.87543595561367 40.867254607706776, -73.87543427976138 40.867251946751175, -73.87542871831124 40.867244020939104, -73.87542555513028 40.86724000944386, -73.87531790303771 40.867108563029966, -73.8753148316615 40.867104941542884, -73.8753079547774 40.867097634740894, -73.875300463965 40.8670906847695, -73.87529238882327 40.86708412137675, -73.87529030998064 40.86708256308349, -73.87517092728797 40.866994567795246, -73.87516438458215 40.866989977223554, -73.87515525096264 40.866984270842764, -73.87515347123411 40.866983244159684, -73.87499666711851 40.86689395381213, -73.87498884027318 40.8668897391445, -73.8749788033891 40.86688498538986, -73.87496837885189 40.866880740891595, -73.8749576105181 40.86687702280639, -73.87494654461815 40.86687384739313, -73.87494509697751 40.86687347842434, -73.87478567071588 40.86683333998953, -73.8745289180828 40.86676869676982, -73.87442822916726 40.8667433465061, -73.87435745590216 40.86672552801252, -73.87363580267791 40.86654383153895, -73.87323437424496 40.86640743974998, -73.87299707064423 40.86632681096966, -73.87261036129387 40.86615719431227, -73.87217930180333 40.86593819568186, -73.87216809664491 40.8658490293446, -73.87214429557936 40.86565808015496, -73.87212069513058 40.86546712127063, -73.87209745973557 40.8652480107539, -73.87208151174636 40.865028532798405, -73.87207286270642 40.864808815289784, -73.87206849326027 40.86466991161748, -73.87210922808386 40.86428805611908, -73.87210955217411 40.864273111039566, -73.87211058390189 40.86422573018036, -73.87211162273111 40.864178356532584, -73.87211264616165 40.86413097116094, -73.87211367787111 40.86408359750441, -73.87211711011048 40.86403139807853, -73.87212054945083 40.86397920406281, -73.87212398286721 40.863927003736556, -73.87212742220888 40.86387480341628, -73.87213085442662 40.863822603988005, -73.87213429374538 40.86377040996997, -73.87213773306911 40.86371821054842, -73.87214115814353 40.86366601651343, -73.87214459745822 40.86361381619024, -73.87214802965075 40.86356161585855, -73.87215147013907 40.863509416435946, -73.8721549023087 40.8634572224065, -73.87216016294632 40.86340530505199, -73.87217605669069 40.863248735462584, -73.8721888809777 40.86315619725073, -73.87219796745538 40.863062586914104, -73.87220321241487 40.862968798525706, -73.87221550597539 40.862748092890456, -73.87223157457731 40.86252752469828, -73.87225139676248 40.862307130844066, -73.8722848412215 40.8620521362934, -73.87231749444108 40.86179706700587, -73.87232235789719 40.861758523278375, -73.87234718769318 40.861559517073715, -73.87237154414741 40.8613604815175, -73.87240153123007 40.8611358773352, -73.87243015668751 40.86091116987541, -73.87245741221867 40.86068636543339, -73.87248331324597 40.86046146943006, -73.87251798730064 40.86019395656263, -73.87255262431545 40.85992644002957, -73.8725794457699 40.85971915049328, -73.8726127289257 40.85946158105111, -73.87262986796877 40.85932690630843, -73.87264379655504 40.85921749489821, -73.87267542111425 40.85897231794592, -73.8727031005305 40.85876067271692, -73.87270676408606 40.858721081258274, -73.87274671876654 40.85856089822127, -73.8727927392145 40.858401656564105, -73.87284478718227 40.85824348860981, -73.87290281968106 40.85808652577465, -73.87297177388973 40.85794764689316, -73.87304735979671 40.85781077255475, -73.87312947739518 40.8576760845359, -73.87321801719659 40.857543762800795, -73.8735004110245 40.85717403742285, -73.87379041059575 40.85680772171064, -73.87408794212527 40.85644490647661, -73.8741510837086 40.85637028319403, -73.87422097861815 40.85629921517583, -73.87429728105525 40.856232053224815, -73.87437961323685 40.85616913099954, -73.8744675677797 40.85611075871351, -73.87455417455504 40.85606073245215, -73.87465860717914 40.85601044183849, -73.87476768091753 40.85596619306408, -73.87488079165442 40.85592823399641, -73.87499730926059 40.85589677375548, -73.874997392317 40.85589675403464, -73.87501208611259 40.855893306663425, -73.87501219764461 40.855893280669974, -73.87518502998384 40.855852728637906)), ((-73.87011540552038 40.856541201857716, -73.87007042612244 40.85654071537317, -73.87006367522697 40.85646552392179, -73.8699703235117 40.856484504667144, -73.86993792328649 40.85649109306269, -73.86990765396438 40.85649724711351, -73.8698878118952 40.856499195013555, -73.86985601650134 40.85649427488446, -73.86983966084915 40.856487957494224, -73.86981853935643 40.856475830154935, -73.86980112737662 40.85645477231983, -73.86979406413667 40.856435087705336, -73.86979506608901 40.856413995719485, -73.86980256039102 40.85639644458971, -73.86982103399393 40.8563743952857, -73.86987342654949 40.856307807201524, -73.86996446759409 40.856191226839776, -73.87021803107334 40.855869831501295, -73.87023350036047 40.855850171356444, -73.87024001904905 40.85583837324158, -73.87024203225847 40.85582105274613, -73.87023867321548 40.855804803196435, -73.87023197809792 40.85578302537733, -73.87022026882306 40.855750204589846, -73.86993834857428 40.85495996577494, -73.86987873514458 40.85479286090726, -73.86923390515113 40.85298528096682, -73.8691931697431 40.85287108929234, -73.86856653462333 40.851114408832174, -73.86854449806118 40.85105262974718, -73.86852829233494 40.85100719944113, -73.86850753998515 40.850948516804294, -73.86849916022085 40.85091681171578, -73.86849345246306 40.85089522220389, -73.86848982843166 40.85085919026593, -73.86848702433724 40.85083131502355, -73.86848668049709 40.85079349214284, -73.8684864096201 40.85076375126587, -73.86849775170327 40.85070969682023, -73.86850730292518 40.85068630570625, -73.86851937570422 40.850656740986636, -73.86853755824748 40.85062356054669, -73.86856247486341 40.850578089748986, -73.86859727004735 40.85051816648605, -73.86864148950441 40.8504420135593, -73.86903147572436 40.84977038417319, -73.86906813465762 40.849707250819165, -73.86907377723415 40.84969753280231, -73.86909507074432 40.84966086098798, -73.86912683307374 40.84960615967464, -73.8691243703166 40.84960841081396, -73.86937469191336 40.84916745847809, -73.86939352837062 40.84912635159775, -73.86940989949589 40.849090622367854, -73.86942498787619 40.84905348961616, -73.86943963334312 40.84901302093551, -73.86946398438555 40.848945734852585, -73.86947875976749 40.84890490791713, -73.86948837043509 40.848872065209534, -73.86950825077375 40.84880411939932, -73.86952466558839 40.84872851277433, -73.8695415004119 40.84865096425791, -73.86955443301136 40.84856954100697, -73.86956053829294 40.8485058047194, -73.8695651193566 40.8484579847207, -73.86957126697189 40.848393815342135, -73.86957394296466 40.84832995630948, -73.86957582896007 40.84828495450615, -73.8695779862092 40.84823345505199, -73.86957653422273 40.848195607492435, -73.86957378811641 40.84812407282855, -73.86957286970734 40.848100166403235, -73.86957229658981 40.84808522567629, -73.8695710419948 40.8480525489696, -73.86914788776582 40.84811929875283, -73.86914540621679 40.84810882680655, -73.86913680208458 40.84809294405634, -73.86912800984467 40.84808105747991, -73.86911561930201 40.848067581952506, -73.86909971860354 40.84805412675391, -73.86908191277263 40.84804341769558, -73.86906247193697 40.84803316963205, -73.86904029624168 40.848026684322114, -73.86901745332746 40.848023001485046, -73.86899700961344 40.84802161492372, -73.86896817827397 40.84802268798343, -73.86930481898783 40.84796227309512, -73.8694660754873 40.847933332837805, -73.8695593777575 40.8479165883538, -73.86955587042134 40.847894007227154, -73.86955042731302 40.84785896739146, -73.86954498773093 40.847823946469646, -73.86930032317932 40.84743552279677, -73.86936191064338 40.84734271660379, -73.86941614880391 40.847445275740185, -73.86945530973642 40.84736021716458, -73.86948460504048 40.84729658905397, -73.86951862344254 40.84722270155684, -73.86964149753834 40.846955821753205, -73.86971359718896 40.84678938941593, -73.86975330627153 40.846694097244395, -73.86976951363567 40.846665291656564, -73.86981236551077 40.84658912768561, -73.87017282381642 40.84594845478102, -73.8703658218837 40.84560541818913, -73.87037578040443 40.84558771667605, -73.8703979237808 40.84554835848023, -73.87041978035772 40.845509510537525, -73.87050888063403 40.84535113996896, -73.87057471287373 40.84523412719856, -73.87061306265004 40.84516596234784, -73.8706528961696 40.845095158900754, -73.87069720722602 40.84501639919593, -73.870725143879 40.84496674308122, -73.87075580894228 40.844912237257304, -73.8707954755682 40.844841731634574, -73.87082695441063 40.84478577780816, -73.87085857717538 40.84472956929419, -73.87090462935099 40.844652807848576, -73.87093233915373 40.844608681357634, -73.87097109189759 40.84454696976872, -73.87102155123723 40.84446661753341, -73.87106062005286 40.84441121332317, -73.871115779162 40.844336000912534, -73.87115078706914 40.844288267039666, -73.8711878363071 40.84423774930837, -73.87120630264077 40.844215635797035, -73.87123836702237 40.844177238529284, -73.87128164092263 40.84413130132217, -73.87128543491778 40.84412727314565, -73.8713132167292 40.84409778146161, -73.8713203710086 40.84409018657573, -73.87134289610297 40.84406627568214, -73.8713542673665 40.84405420464153, -73.87138225586521 40.844024494351096, -73.87140125191102 40.84400432826564, -73.8714391077174 40.843974367818454, -73.87146020771733 40.843957669167374, -73.87147196846654 40.84394836126333, -73.87153770314406 40.843905448527714, -73.87160341985638 40.84387302828586, -73.87163568537684 40.84385739290656, -73.87168926493995 40.84383390821374, -73.87142279930659 40.84502915891655, -73.87126328770104 40.84566602783928, -73.87121484823088 40.84591182375043, -73.87117700528519 40.84641764078161, -73.87113031154313 40.84692303184153, -73.87107477172341 40.84742790597517, -73.87108284738012 40.84792286648454, -73.87109623948874 40.848417759951715, -73.87111494704483 40.848912553955884, -73.87118411868295 40.850898399446926, -73.87132194988655 40.85217421963311, -73.8715639346396 40.85354303121988, -73.87170671397915 40.85412502500978, -73.8717240914636 40.85444191304949, -73.87170847504807 40.85454993130425, -73.87168427037362 40.854657033207744, -73.87165156829285 40.85476282534081, -73.87161048811332 40.85486691971696, -73.87156118115642 40.854968933786964, -73.87150619351189 40.8550843021049, -73.87144502547464 40.85519786342474, -73.87137778175502 40.85530942604872, -73.87130457298703 40.85541880278746, -73.87122552403234 40.85552581006888, -73.87111192133158 40.855679822187525, -73.87099166210382 40.8558308920449, -73.87086487946874 40.855978855879954, -73.87079281860261 40.856071008062024, -73.87071520627138 40.85616052274021, -73.87063220650404 40.856247207382154, -73.87054399992611 40.856330874876775, -73.87047422890657 40.85638257393641, -73.87039914493138 40.85642978793987, -73.87031924673502 40.85647220406644, -73.8702350662069 40.8565095392495, -73.8701471600786 40.85654154557081, -73.87011540552038 40.856541201857716)), ((-73.8722947033304 40.8706583709162, -73.87232988957267 40.870392929377665, -73.87234169002132 40.870275100788774, -73.87235837892794 40.870125764976216, -73.87236600622381 40.870052356509326, -73.87238354566742 40.86986093094941, -73.87240303546773 40.8695945552929, -73.87241763106847 40.86932799951448, -73.87242730987954 40.86906132122224, -73.8724320932169 40.868794569967854, -73.87243375858802 40.868741435715954, -73.87243500834248 40.86871140846913, -73.87244840424657 40.868390489655766, -73.87244952941455 40.868363565356724, -73.87245178000519 40.86830958258554, -73.87245403888696 40.8682556043254, -73.87245628828238 40.86820162245223, -73.87245854004998 40.86814763878018, -73.8724607989294 40.8680936560159, -73.87246296176603 40.86803903199618, -73.87246513408697 40.8679844088869, -73.87246453268367 40.867978840493926, -73.87246163202686 40.8679722357974, -73.8724624635327 40.86785102538867, -73.8723355071777 40.86724326416741, -73.87232940419563 40.867190137515976, -73.8723233083525 40.8671370045682, -73.8723172054107 40.86708386710929, -73.87231111077156 40.86703073506162, -73.87230501495598 40.86697760301184, -73.87229816429972 40.866916667380416, -73.87227900451428 40.86674892901899, -73.87225213051569 40.866519122138726, -73.87222583671493 40.8663072329355, -73.87222382989903 40.866291080424254, -73.87241422852557 40.86638781103239, -73.87242415494572 40.8663925081578, -73.87242433272185 40.86639258669699, -73.8728242732144 40.8665680069029, -73.87283451978693 40.86657217395708, -73.87284085915188 40.86657444117314, -73.87349641060088 40.86679717663513, -73.87350083824461 40.86679862767606, -73.87351190406295 40.866801803228, -73.8735133505079 40.86680217221346, -73.87480330218067 40.86712694944473, -73.8749273197359 40.86719756888012, -73.87502255416139 40.867267765296845, -73.87511272707548 40.86737786856675, -73.87523938309108 40.86758465628338, -73.87545338328263 40.86800632477433, -73.87545495887936 40.868009324205204, -73.8754598259792 40.868017509506984, -73.8754653874977 40.86802543531644, -73.87547162095953 40.86803306829112, -73.87547380969362 40.86803550557732, -73.87564568900117 40.868222543449264, -73.87564835980406 40.86822537206413, -73.87582643249222 40.86840904129836, -73.87582844998911 40.868411083078435, -73.87582919593238 40.868411817780185, -73.8760133471828 40.86859200026032, -73.87601620326558 40.86859472190725, -73.8762063135056 40.86877130221314, -73.8762092586743 40.86877396812043, -73.87632625585924 40.868877182520976, -73.876432215337 40.86893137763832, -73.8765430471677 40.868979631037654, -73.87665817648181 40.86902168995348, -73.87677700105571 40.86905733671217, -73.87689890199708 40.869086384240774, -73.87702324610609 40.86910868237369, -73.87714938588317 40.86912411425057, -73.87727666189726 40.86913259902084, -73.87740441345784 40.869134094556294, -73.87753197506908 40.86912859114424, -73.87765867997777 40.869116117794526, -73.87778387085369 40.8690967404501, -73.87790689386456 40.86907055927877, -73.8780271105377 40.869037709586536, -73.87814389182451 40.86899836451227, -73.87825663116327 40.868952727837446, -73.87836473972816 40.86890103758285, -73.87846765711102 40.868843563317945, -73.87851963153805 40.86881104193628, -73.87856622197752 40.86877964407927, -73.87887305920327 40.86847107883828, -73.87914934175357 40.868183943041224, -73.8791519119516 40.86818216096254, -73.87942531910194 40.86842493262054, -73.87681040459611 40.86989646737256, -73.87662255042332 40.87000635690645, -73.87652938490741 40.87006085573027, -73.87632597137788 40.87018074877541, -73.87629907697426 40.87019660007807, -73.8761419108382 40.87029422823772, -73.87599767829481 40.87041582940062, -73.87597992532956 40.870397139576404, -73.87594877351181 40.870425596673854, -73.87580300627411 40.87055875372168, -73.87570881991702 40.870655354057895, -73.87561015274271 40.870763397406066, -73.87555164349507 40.87083222805439, -73.87548832848428 40.87091061848386, -73.87476776508845 40.871890032033704, -73.87325621777111 40.87168752496493, -73.8721711915614 40.871505678315685, -73.87215622927039 40.87150190850152, -73.8721655046785 40.871453179798515, -73.87217229222638 40.871417536048845, -73.87217329645942 40.87141226119489, -73.87219437324167 40.871301599105365, -73.87223161693697 40.871087537321124, -73.87226541139822 40.87087313941836, -73.87228086013697 40.870763774080686, -73.8722947033304 40.8706583709162)), ((-73.87124080257455 40.85807273158021, -73.87134100749994 40.8573225061772, -73.87146261897867 40.85741165441278, -73.87157814957918 40.85750535043574, -73.87168730444283 40.85760335440548, -73.8717898041424 40.85770541659319, -73.87188538824233 40.85781127648522, -73.87197381292307 40.85792066458111, -73.8720548533535 40.85803330239592, -73.87212830131924 40.858148902457536, -73.87219397114943 40.85826717011403, -73.87225169378718 40.85838780352667, -73.87228131354429 40.858499748478096, -73.87230255193292 40.85861278544414, -73.87231534318818 40.85872655235915, -73.87231964526457 40.858840687181974, -73.87231544340176 40.85895482429779, -73.87230275249051 40.85906859812275, -73.872281612324 40.859181645800234, -73.87225209115987 40.85929360540388, -73.87224261082581 40.85932582618681, -73.87221954312405 40.85939381653943, -73.87219143165514 40.859497922700655, -73.87210074491472 40.85983576031134, -73.8720546693319 40.86000995334745, -73.87205100287306 40.860022456201776, -73.87204789844377 40.860035044325485, -73.87204535725283 40.86004770601344, -73.87204337104144 40.86006041874432, -73.872041955227 40.8600731834357, -73.87204111579739 40.860085970378115, -73.87203711798966 40.860123970268205, -73.8720331284902 40.860161964764195, -73.87202914608007 40.86019997097405, -73.87201357257833 40.86028216312693, -73.87197742524992 40.86043346674545, -73.8719529735377 40.860528150551545, -73.87190161187856 40.86073192687149, -73.87185145107446 40.86093587468814, -73.87180472252004 40.861155806400674, -73.87176234680639 40.861376248099376, -73.87173720527721 40.861532454412064, -73.87171478881467 40.86168889967352, -73.87171083329706 40.861716512427634, -73.87170565357297 40.8617534267905, -73.87167420649227 40.861999979508944, -73.87164823826296 40.86224690480285, -73.87163249221553 40.862475757799906, -73.87161973723349 40.86270471586905, -73.87160957563995 40.86292106274115, -73.87160794212292 40.862954360165205, -73.87160073511014 40.86310127168625, -73.87159896210238 40.863137391991835, -73.87158789779029 40.8633537099257, -73.87157638151669 40.86357001474037, -73.87157044371962 40.86364987983673, -73.87164557135193 40.86398882789783, -73.87165169150259 40.86401787372101, -73.87166282797614 40.864070815134006, -73.87167396567604 40.86412374484041, -73.87167679873464 40.86414804232177, -73.87168277294201 40.86419925805366, -73.87168468067091 40.864215640095416, -73.8716912569181 40.86427204962378, -73.87169470954727 40.864301676895096, -73.87170068379439 40.864352886321214, -73.87170776875985 40.86440630678489, -73.87171485611066 40.86445972634976, -73.87172194229542 40.86451314140994, -73.87172902848289 40.86456656097161, -73.87173612418135 40.86461997513992, -73.87174320208685 40.86467339559097, -73.87175028830846 40.86472681514981, -73.87175737455014 40.86478023020526, -73.87176446079454 40.8648336497622, -73.87177154824685 40.86488706391657, -73.87177863569848 40.864940484373456, -73.87178210228066 40.86496660424441, -73.87180990156924 40.865190890522285, -73.8718242573871 40.86530671311476, -73.8718839296074 40.86578813100481, -73.8718619465272 40.86577696302915, -73.87156032879786 40.86558115828823, -73.87140356451918 40.865451544523005, -73.87139842090924 40.86544746407232, -73.87138979872825 40.86544131582064, -73.87138568079251 40.86543864668022, -73.87125481185588 40.86535640484313, -73.87124979672436 40.86535336549574, -73.87124019185961 40.86534812383039, -73.87123015547445 40.86534337064887, -73.87121973141818 40.865339125810756, -73.87121080450694 40.86533599744965, -73.87108654849317 40.865295532940436, -73.8710847063476 40.86529494196171, -73.87107364208207 40.86529176617743, -73.87106782910163 40.86529034411154, -73.87090688600736 40.86525322515223, -73.8709013833713 40.86525202764718, -73.8708898661989 40.86524997605087, -73.87088291241426 40.86524902455604, -73.87075009999194 40.86523288405632, -73.87074538603423 40.865232359193, -73.87073361515232 40.865231466227826, -73.8707223923211 40.865231160094595, -73.87061860542275 40.86523078262378, -73.87060059632795 40.86463321057883, -73.87058733842512 40.86442370563332, -73.87058704556247 40.86438707515734, -73.8705865604226 40.864326126722545, -73.87058974154904 40.86428229441808, -73.87062546384362 40.86379794536413, -73.87072076307741 40.862574267485385, -73.87072536533162 40.86251744627752, -73.87073137604084 40.86244325528107, -73.87075942796828 40.862096952573644, -73.8707757384529 40.86188920781312, -73.8707927761464 40.86165081745332, -73.8708028714229 40.861509560657765, -73.8708122777659 40.86137795634847, -73.87082908561018 40.86118082709778, -73.8708440981761 40.861042656371424, -73.87086004200053 40.860923293435235, -73.87086424248325 40.86089184759033, -73.87102441991507 40.85969270687976, -73.87104128378144 40.85956645616192, -73.87112882273198 40.85891109093549, -73.87118626561835 40.858481035423964, -73.8712260864776 40.85818290468267, -73.87124080257455 40.85807273158021)), ((-73.87066505897515 40.86685672993198, -73.87066242812135 40.86676336238014, -73.87062698418484 40.86550528575111, -73.87070671748545 40.86550557593097, -73.87081358924861 40.86551856363857, -73.87095318798005 40.86555076018973, -73.8710443345425 40.86558044229276, -73.87114561401582 40.8656440904225, -73.87130139529883 40.86577289209572, -73.871306538928 40.865776972550535, -73.87131516114307 40.86578312170855, -73.87131706607462 40.865784375514316, -73.87140003991384 40.86583824078782, -73.87133640918637 40.86585351150372, -73.87127616536016 40.86587530731247, -73.87122046218991 40.865903208978054, -73.87117036943955 40.865936682810236, -73.87112684440284 40.86597508693552, -73.87109072119856 40.86601768659265, -73.87106269414458 40.86606366401884, -73.87104329755203 40.86611213913769, -73.87103290451 40.86616218396517, -73.87103171499227 40.86621283790429, -73.87103974987764 40.86626313205135, -73.87105685566813 40.86631210180793, -73.8710827056293 40.86635880939484, -73.87111680331773 40.8664023591647, -73.87115849677336 40.8664419183294, -73.87120698680259 40.86647672687573, -73.8712613435424 40.86650611919606, -73.87132052542539 40.86652953131446, -73.87138339931762 40.86654651531745, -73.87143999457287 40.866551949809875, -73.87150430499356 40.866554195226314, -73.87154303047966 40.866551626022684, -73.87156586444264 40.866549184998334, -73.8716265456357 40.86653950381923, -73.87168503082155 40.8665238661262, -73.8717403100257 40.8665025418474, -73.87179142884018 40.8664758982274, -73.87183750385013 40.86644439714237, -73.87187774045091 40.866408582512356, -73.87191144472942 40.86636907040882, -73.87193803296022 40.8663265454625, -73.871948353101 40.866307859140356, -73.87194965311961 40.866318347690154, -73.8719546382899 40.86635856280424, -73.87195698370007 40.86637748560313, -73.87196022965627 40.86640367905723, -73.87196199455559 40.866417918663544, -73.87197016974577 40.866451165722154, -73.87197068643975 40.866453263536755, -73.87197483763323 40.8664701253159, -73.87197535424257 40.86647226725436, -73.87197961539798 40.866489929690886, -73.8719819995757 40.86649981161204, -73.87202686478848 40.86683373155066, -73.87203366161508 40.866884288992914, -73.87203883754317 40.86692281679258, -73.87204045134534 40.86693484102352, -73.87204091795722 40.86693831112873, -73.87204658503111 40.86698544095222, -73.87204700418062 40.866988919109126, -73.87205013391497 40.86701759958211, -73.87205048128439 40.86702077779628, -73.87205082391601 40.86702395240323, -73.8720525428773 40.86703989208058, -73.87205291695922 40.86704336658551, -73.8720532933997 40.86704684829697, -73.87205842479119 40.86709435663122, -73.87205865792286 40.867096491050845, -73.8720594587181 40.86710382913063, -73.87206271013214 40.867134007252275, -73.87206430671645 40.86714882028056, -73.87206468197716 40.8671522992892, -73.87206505724131 40.86715577649678, -73.87206899531593 40.867192198475855, -73.87207057459705 40.86720675844703, -73.87207607059413 40.86725774847726, -73.87207644586647 40.86726122208285, -73.87207682230769 40.86726470469459, -73.87207899126467 40.86728474480019, -73.87207989336288 40.867293070829284, -73.87207989677941 40.867293144673226, -73.87208055999993 40.867312188968604, -73.87209045323159 40.8677276472325, -73.87209127220164 40.86776192708611, -73.87209394742794 40.867873991505256, -73.8720942063534 40.86788491923591, -73.87209513335647 40.867924088867824, -73.872096318686 40.867973881863776, -73.87209692102101 40.86799930155685, -73.87209734594963 40.86801704797981, -73.8720976495012 40.86802450977452, -73.87209779105672 40.868028003831725, -73.87209793496213 40.86803150959791, -73.8720997134059 40.868075132193944, -73.87209985613917 40.86807863075485, -73.87209999887764 40.868082126614325, -73.87210177733452 40.868125743807, -73.87210192007147 40.8681292405669, -73.8721020627963 40.868132743630234, -73.87210384243521 40.868176364425736, -73.87210398634816 40.86817986658987, -73.87210412790262 40.868183361547445, -73.8721059016149 40.86822698143546, -73.87210604434708 40.86823048089678, -73.87210618708448 40.86823397765663, -73.87210796554082 40.86827759935044, -73.87210810828016 40.868281095209774, -73.87210825101256 40.868284594671046, -73.87211003065613 40.86832821726625, -73.87211017338875 40.86833171672751, -73.87211031494033 40.86833521348596, -73.87211209459007 40.86837883427976, -73.87211223732636 40.86838233193998, -73.87211252621314 40.868436278797596, -73.8721125360851 40.868439780812984, -73.87211260643052 40.868464266106436, -73.87211267237427 40.86848672259159, -73.87211268223585 40.8684902300099, -73.87211269211302 40.868493729323795, -73.8721128272127 40.86854067290161, -73.87211283707084 40.86854418212082, -73.87211284813947 40.868547678734544, -73.87211287320304 40.86855623431485, -73.8721129832359 40.8685946241129, -73.8721129931027 40.86859812882962, -73.87211300297818 40.86860162904398, -73.87211315506762 40.86865207464401, -73.87211329410374 40.86870252293061, -73.8721133039723 40.8687060267468, -73.8721133138478 40.86870952696108, -73.87211344894489 40.868756472338035, -73.87211345882041 40.86875997255223, -73.87211346868727 40.86876347726891, -73.8721136148429 40.868813924661886, -73.87211375981597 40.86886437025213, -73.87211376968979 40.868867871366795, -73.87211391465789 40.86891831965798, -73.8721139257024 40.868921828878314, -73.87211393558661 40.868925324589966, -73.8721140694984 40.86897226996382, -73.87211407936357 40.868975775580815, -73.87211409042709 40.86897927489574, -73.8721142365854 40.86902972138628, -73.87211439142463 40.869083672591515, -73.87211454745903 40.86913761929506, -73.87211470229703 40.86919157139973, -73.87211484014918 40.86924201968011, -73.87211485002835 40.86924551809307, -73.87211485990055 40.869249020107944, -73.87211499500155 40.86929596457988, -73.87211500605478 40.86929946929752, -73.87211501593052 40.86930296951138, -73.87211516800919 40.869353422308976, -73.87211530824143 40.8694038669886, -73.87211531693093 40.869407367201084, -73.87211662800567 40.86946458125715, -73.87211793158438 40.8695182924, -73.87211923516526 40.86957200354234, -73.87212053162905 40.869625715576746, -73.87212166837227 40.869672424326744, -73.87212175298114 40.86967592462325, -73.87212305656647 40.86972963666447, -73.87212308156231 40.86973082623879, -73.87212371942242 40.86976184340575, -73.87212415451928 40.86978294775951, -73.87212415279797 40.86978322600885, -73.87212401556884 40.86982621072221, -73.87212400528077 40.86982971001293, -73.87212399784822 40.86982987389379, -73.87212202174886 40.869874194696365, -73.87212193128481 40.8698762062896, -73.87212191673822 40.86987636836158, -73.87211791530868 40.86992213760777, -73.87211787284998 40.8699226265265, -73.8721133398567 40.86996599177673, -73.87211297611361 40.86996946726289, -73.87210880731766 40.8700122016731, -73.8721084672833 40.870015685289914, -73.8721081296231 40.87001916800891, -73.87210433170156 40.87005841703497, -73.87210399403573 40.870061902455355, -73.8720995219664 40.870108120522, -73.87209537926435 40.87015084775568, -73.87209504161143 40.87015432597208, -73.87209470393773 40.87015781499433, -73.87209057070383 40.87020055034235, -73.87209054542377 40.870200742118584, -73.87208352642892 40.87025499422833, -73.87208307016594 40.87025846420873, -73.87207683283893 40.870305963513474, -73.87207637895987 40.87030942719302, -73.8720759226944 40.87031289807387, -73.87206923265502 40.870363865561046, -73.87206252719449 40.87041482762732, -73.87206207092757 40.87041829850806, -73.87206161585902 40.87042176308668, -73.8720549234234 40.87047273146985, -73.87204776997632 40.870527164424125, -73.8720410704141 40.87057812649424, -73.87204061415713 40.87058159107133, -73.87204015788446 40.87058506375284, -73.8720339169426 40.87063256034706, -73.87203346067616 40.87063602942656, -73.87203300560117 40.87063949580589, -73.87202631432187 40.87069045698286, -73.87201960996961 40.87074142534837, -73.87201915250331 40.870744900729854, -73.87201869862346 40.87074836170745, -73.87201200611695 40.87079933278661, -73.87200485142195 40.87085376123122, -73.8719976967066 40.87090819417733, -73.87199724043643 40.8709116632565, -73.87199054316756 40.8709626262233, -73.87199008689485 40.87096609620288, -73.8719838446987 40.871013590988866, -73.87198338842703 40.87101706006791, -73.87198293215711 40.87102052824649, -73.8719766899472 40.87106802483257, -73.87197623366787 40.871071497513505, -73.87196673177897 40.871123828811065, -73.87196640685542 40.87112561862323, -73.87195703037156 40.871176269745696, -73.87195639503607 40.87117970530773, -73.87195575851081 40.87118314266948, -73.87194701971633 40.871230360032165, -73.87194638318836 40.87123379829429, -73.87194574666894 40.87123723205395, -73.871937006674 40.871284449414084, -73.87193637015187 40.871287884074185, -73.87193573481251 40.87129132053652, -73.87193252574748 40.871308678407736, -73.87192699479294 40.87133854329839, -73.87191698290948 40.87139262997742, -73.87191106356825 40.871424582670286, -73.87190873678104 40.87143716622539, -73.87190696981303 40.871446722056625, -73.87190313867683 40.87146739303637, -73.871903009259 40.871468068259624, -73.871901642059 40.871475162596965, -73.8707978330619 40.871341278245424, -73.87076165444192 40.87013576524496, -73.87075942740098 40.8700615399074, -73.87071550086232 40.868597797117054, -73.87071241385395 40.8684949289181, -73.87070603377609 40.868282321546566, -73.87069120030563 40.868003485376114, -73.87068686048747 40.867630513835834, -73.87067253211661 40.867121964118255, -73.87066559162982 40.86687560750046, -73.87066505897515 40.86685672993198)), ((-73.8724818878226 40.859162323066776, -73.87252411052502 40.85907851508518, -73.87254022725624 40.8590769075045, -73.87252036270935 40.85923625088578, -73.87249569659474 40.85943597688138, -73.87248886158743 40.859490297758974, -73.87248203487138 40.859544618644875, -73.87247521646727 40.85959892873312, -73.87246838378826 40.859653255013505, -73.87246786107268 40.85965740930168, -73.87246768763002 40.859658791363806, -73.87246155466661 40.859707575893964, -73.87245754154587 40.85973947315582, -73.8724547207896 40.85976189676828, -73.87244789403849 40.85981620684362, -73.87244106724516 40.859870533126866, -73.87243424045104 40.85992485400628, -73.87242741245967 40.85997917488341, -73.87242058685003 40.86003348495638, -73.87241375289742 40.86008781032758, -73.87240692605867 40.86014213120323, -73.87240009921915 40.86019644667507, -73.87239327236671 40.86025076304646, -73.87236311307669 40.86049174700181, -73.87234415256346 40.86064125345022, -73.87233255393511 40.860732691775674, -73.87230157950995 40.860973601853146, -73.8722701980752 40.86121448984988, -73.87226362696602 40.86126646160896, -73.87225705584822 40.861318432466696, -73.87225048590456 40.861370404225426, -73.8722448119875 40.86141530361995, -73.87224458797783 40.8614170719359, -73.87224391832278 40.86142237598588, -73.87223735073071 40.861474347745485, -73.872233668792 40.861502909938544, -73.8722304973002 40.861527543855246, -73.87222364148482 40.8615807408619, -73.87222016881914 40.86160779136174, -73.87221679514897 40.861633936977725, -73.87221348041476 40.86165965582614, -73.87220994049775 40.8616871339839, -73.87220309294348 40.861740335499526, -73.87220181545361 40.861750244886075, -73.8721968944274 40.861788467069644, -73.8721966499955 40.861790368635404, -73.87219624183209 40.86179353070688, -73.87218939070453 40.86184672861474, -73.87218254312604 40.86189992562517, -73.87217568842007 40.86195312262685, -73.87214552780907 40.86219089710395, -73.87211547609198 40.86242867798753, -73.87208558662579 40.86266647524216, -73.87205575032105 40.86290427253818, -73.87202708909705 40.863119958673806, -73.87200190610852 40.86333589448673, -73.87199584377083 40.863396315177894, -73.87198021805555 40.863552048480585, -73.8719655451375 40.86377410755867, -73.87196334111921 40.86380747188624, -73.87195117152996 40.86406305178449, -73.87194658211988 40.864297257938766, -73.87194659501125 40.86435154671646, -73.8719466121269 40.86442396957302, -73.87194965152521 40.86450687208735, -73.87196224975969 40.86485054198642, -73.87188395029516 40.86484153661884, -73.87188104688941 40.86482045201695, -73.87185179026692 40.86460574173807, -73.87183333199101 40.86445959957006, -73.8718246454757 40.86439087170102, -73.87180645811065 40.86423470196303, -73.8717996041525 40.864175862609315, -73.87177666628409 40.86396071086234, -73.871755414719 40.86371200149792, -73.87182412807175 40.86204875734545, -73.87185263802336 40.86178980066833, -73.87188902349351 40.861531412822586, -73.87193326277477 40.86127373245247, -73.87198533416257 40.86101689730019, -73.87200486016822 40.86093949295408, -73.87221752019771 40.86014667528021, -73.87234724287002 40.859654117890045, -73.8724818878226 40.859162323066776)), ((-73.87174128875017 40.85755899589028, -73.87162189315774 40.857447186847835, -73.87149730748236 40.85733869201065, -73.87145320735601 40.85729535715746, -73.87140584181292 40.85725405555922, -73.87135537543533 40.857214929673056, -73.87136211832039 40.857164445731684, -73.87130362879059 40.85717918728403, -73.87122871385122 40.85713403589306, -73.87116373471822 40.85710027145829, -73.87109604648865 40.857069726819034, -73.87091912702758 40.85699925735385, -73.87079443013266 40.856974675729965, -73.87067776375511 40.85695926907653, -73.87064066521813 40.8569507997856, -73.87063355093288 40.856941350154464, -73.87062918110321 40.85693554518829, -73.87062126169077 40.856927837104784, -73.8706162886813 40.856922995888155, -73.87061094041425 40.85691779135236, -73.87073635722687 40.8568843066833, -73.87076591723388 40.85687641457257, -73.8707817503638 40.85687218738978, -73.87084305611074 40.8568558193644, -73.87122305637523 40.856754362527134, -73.8712281160704 40.856753039049075, -73.87128416648186 40.85673846860796, -73.87142396347262 40.856704093339154, -73.87143529702206 40.85670159900075, -73.87148735276712 40.85669322389396, -73.87149650151112 40.85671046499104, -73.87165964181281 40.85666844324637, -73.87160295191323 40.8567065520084, -73.87154969367529 40.856747415564925, -73.87150009990012 40.85679085588261, -73.87147318240945 40.85683681670509, -73.87145372670919 40.85688489838827, -73.87144201287099 40.85693440516798, -73.87143821189262 40.85698462224682, -73.87144237738269 40.85703482208805, -73.87145445027372 40.857084279729364, -73.87147425525072 40.857132279082144, -73.87149746153625 40.8571785451714, -73.87152896848606 40.85722189029961, -73.87156815747755 40.85726145920496, -73.87161425436474 40.85729647389401, -73.87166635317561 40.8573262453754, -73.87172342794771 40.85735018628033, -73.87178435404745 40.85736782619569, -73.87184793306714 40.857378817095004, -73.87191291178516 40.85738294236524, -73.8719743809749 40.857386508101214, -73.8720359193215 40.85738372181431, -73.87209639524488 40.85737463627934, -73.87215469355213 40.85735941775373, -73.87220974153169 40.85733834600587, -73.87226052556537 40.85731181073139, -73.87230611013001 40.857280298966835, -73.87234565678115 40.85724439150804, -73.87237843603924 40.857204749415494, -73.87240384401417 40.85716210322606, -73.87242141429427 40.85711723765748, -73.87245175789317 40.8572764618956, -73.87245835188008 40.85737122430157, -73.87245917970289 40.85752028536887, -73.8724702999936 40.857693387423254, -73.87247444379312 40.85786666726134, -73.87247160780146 40.85803996189133, -73.87246179464519 40.85821311012771, -73.8724450128847 40.85838594898932, -73.87242127937957 40.858558317303874, -73.87239061454653 40.85873005480238, -73.87237841597945 40.85861577527148, -73.87235701111136 40.858502278884856, -73.8723264821932 40.85838999166081, -73.87228694350024 40.858279337849986, -73.87223854253244 40.85817073183256, -73.87216402608315 40.85803644095957, -73.87206684572195 40.85791284975845, -73.8719639070821 40.85779197606874, -73.87185534153399 40.857673974005145, -73.87174128875017 40.85755899589028)), ((-73.87973165193496 40.867806449329464, -73.87972222146982 40.86778751120654, -73.87972048727457 40.86778486916308, -73.87971830123064 40.86778610956019, -73.87971173589524 40.86777610728073, -73.87970522385645 40.867766807438386, -73.88002073413544 40.86752593075128, -73.88017804486559 40.867411698695605, -73.88029101642826 40.8673823906473, -73.88034210602125 40.867369136200274, -73.88088848094746 40.86722738448712, -73.88094576963903 40.86721396687948, -73.88096914063075 40.86720964702769, -73.88099532857261 40.867204806891806, -73.88104647937504 40.867197629601385, -73.88107748632646 40.86719504834054, -73.88110488552587 40.867192767719615, -73.88112904356318 40.86719075660166, -73.88118208853425 40.86719030515957, -73.88122598663529 40.867189930725374, -73.88127870450482 40.86719596152804, -73.88131725704238 40.86720189489284, -73.8813480772248 40.86720958165203, -73.88137915320729 40.867220166441975, -73.88141328675752 40.86723499387169, -73.88143252017942 40.86724603383011, -73.88145817976144 40.867260762489806, -73.88147370358601 40.86727268291124, -73.88150107595868 40.86729545199266, -73.88152478508633 40.8673197175223, -73.88119286149686 40.8674964017227, -73.88117960998815 40.86747808742534, -73.87999538790324 40.868117255072285, -73.87993852493274 40.86814794494159, -73.8799095044922 40.86816360847632, -73.87973663959885 40.86781646617226, -73.87973717983398 40.86781487106754, -73.87973165193496 40.867806449329464)), ((-73.87126496570869 40.85559414468154, -73.87135404790462 40.85547804459075, -73.87143701511594 40.855359361307904, -73.87151373773602 40.85523828020307, -73.87158409682614 40.85511499115983, -73.87164798174916 40.854989685871374, -73.871705291348 40.85486256144345, -73.87174313867 40.85474111636372, -73.87177539342755 40.8546187438502, -73.87180201385503 40.85449559244228, -73.871822970044 40.85437181249268, -73.8718919688649 40.85465104073057, -73.87196360542205 40.854929886429765, -73.87200950913272 40.85513111534819, -73.8720091544672 40.85513114557144, -73.87204957190131 40.85530535452633, -73.87210898927924 40.855561455435826, -73.87210905044478 40.855561718447234, -73.87215389460326 40.85575500647478, -73.87215163787779 40.85575613048914, -73.87214916824585 40.85575695710522, -73.87214655335204 40.85575746388574, -73.87214386438325 40.85575763650165, -73.87214117369341 40.85575747053072, -73.87213855599097 40.85575697055814, -73.87213608359524 40.85575615017153, -73.87213382169212 40.85575503195541, -73.8721318330819 40.85575364569558, -73.87213017343143 40.85575203017494, -73.87212888535137 40.855750229564805, -73.87209980909913 40.85571042801711, -73.87206453388164 40.855673628130695, -73.87202359114752 40.85564038339138, -73.87197759664832 40.85561119424943, -73.87192724215215 40.85558650000625, -73.87187328478369 40.85556667159923, -73.87181653635817 40.85555200798806, -73.87175093546169 40.85554119221523, -73.87168413511195 40.855536139118875, -73.87161701279368 40.85553691450878, -73.8715504473232 40.85554350855697, -73.87148530936342 40.85555583488658, -73.87142245312123 40.85557373146297, -73.87135963948482 40.85560330743087, -73.87130161426373 40.85563806743433, -73.8712491148061 40.85567756926148, -73.87120281098139 40.855721310292644, -73.87116329093776 40.85576873288713, -73.87113105871092 40.85581923428534, -73.87110652354073 40.855872171098945, -73.87108999984962 40.85592687011629, -73.87108169537107 40.85598263369175, -73.87108171823999 40.8560387523605, -73.87110141622023 40.85609392858599, -73.87112820750748 40.85614735497144, -73.87116182865697 40.85619850623107, -73.87120195094384 40.85624688131859, -73.87124817917514 40.85629200432672, -73.87130006115956 40.856333433502805, -73.87134931117521 40.85635907590264, -73.87140246686624 40.856379739314114, -73.87145865953883 40.85639508598007, -73.87151697051331 40.85640486633741, -73.87136775104378 40.85644556887489, -73.87125991387246 40.8564749838168, -73.8710903376111 40.85650463585732, -73.87105922785696 40.85650816613897, -73.87102782746494 40.85651172940552, -73.87093397265937 40.85652237901932, -73.87086780201585 40.8565272657832, -73.87084722666233 40.85652878529399, -73.8707359778774 40.85653577728737, -73.87065879583102 40.85653910364837, -73.87064191666242 40.85653970066034, -73.87044922963932 40.8565437059564, -73.87043480913059 40.856543653742946, -73.87039934433425 40.8565435247607, -73.8703112510268 40.85654320514794, -73.87038671581175 40.85650820769981, -73.87045887661964 40.85646940101476, -73.87052740101718 40.856426963023246, -73.87059197195335 40.85638109148411, -73.87072224030548 40.85625942532023, -73.87084555436446 40.85613365038309, -73.87096168836483 40.85600399516702, -73.8710704319492 40.85587069628772, -73.87117158542758 40.85573399667549, -73.87126496570869 40.85559414468154)), ((-73.87267592165298 40.856803964958736, -73.87266593282786 40.85670746716391, -73.87267497145693 40.85675574889042, -73.87269102143523 40.856802969469385, -73.87271388583751 40.85684854156007, -73.87274327873772 40.85689190293646, -73.87277883825743 40.85693251470046, -73.87282012179726 40.856969873884395, -73.87286254599354 40.856998100624715, -73.87290902921595 40.85702236335455, -73.87295893283817 40.85704232818392, -73.87301157304859 40.85705772060641, -73.87306622321648 40.85706832910385, -73.87312213286323 40.85707400786896, -73.87320142301942 40.857073132414094, -73.8732800879062 40.85706553494937, -73.87335714292517 40.8570513125488, -73.87343162111928 40.85703064155169, -73.87348872406544 40.85700380740134, -73.87354107838631 40.856971873937205, -73.8735878980277 40.856935320266444, -73.87362847982912 40.85689469492536, -73.87366221777192 40.85685060779004, -73.8736854980223 40.85680122601154, -73.87370182412667 40.85675026255615, -73.87371101831836 40.85669827913888, -73.87371297634063 40.85664585016098, -73.87370767931935 40.85659355551855, -73.87369518310688 40.856541970685996, -73.87366807237257 40.85649383674211, -73.8736347675754 40.856447998564235, -73.87359560349456 40.85640491306312, -73.87355096951123 40.85636501109462, -73.87350131317689 40.8563286920609, -73.87344864936583 40.85630350788757, -73.87339259071113 40.85628297730734, -73.8733338494954 40.856267359538315, -73.87327316776306 40.856256853499865, -73.87363229054152 40.85616745128834, -73.87362783786098 40.856157077249854, -73.87365937669087 40.85615040042777, -73.87368524062347 40.85614492044077, -73.87375302909403 40.856130907348756, -73.87401040161218 40.85607914298291, -73.87426834111038 40.85602900855061, -73.87433708386719 40.856015727354595, -73.87440595312785 40.85600201401938, -73.87447681557882 40.85598790299333, -73.87459176952889 40.85596819647888, -73.87460129878322 40.85598968806541, -73.87452142536615 40.85602067358625, -73.87444501326043 40.85605633817127, -73.8743725349041 40.85609645811936, -73.87430444262117 40.856140786295335, -73.87424115677035 40.85618904761475, -73.87418307048603 40.856240940849396, -73.87413054610626 40.85629614582732, -73.87406494579616 40.85636085110266, -73.87400462824242 40.85642845628947, -73.87394981808168 40.85649871130472, -73.87388408846286 40.85658137483756, -73.87346184207665 40.857116564481636, -73.87304381105105 40.857653660814925, -73.8729727842692 40.85775272223704, -73.87290655468296 40.85785368173143, -73.87284521151689 40.85795640523143, -73.8727770291713 40.857822460315845, -73.87277340085028 40.85762544050074, -73.87276185079357 40.857428597443665, -73.87274237041422 40.85723211663397, -73.87271286113855 40.85701833441216, -73.87267592165298 40.856803964958736)), ((-73.87287618178375 40.85528974429782, -73.87294795930971 40.85528498232272, -73.87301993895606 40.855287405549404, -73.87309087910418 40.85529697208959, -73.8731536804568 40.85531432339431, -73.87321290147337 40.85533783909882, -73.87326749573246 40.85536710563384, -73.87331650120734 40.855401606868135, -73.8733590544783 40.85544073402905, -73.87339440494343 40.85548379652326, -73.87342192902364 40.855530036359525, -73.87343922953545 40.85557773817843, -73.87344823517842 40.855626741111216, -73.87344879451882 40.85567621654127, -73.8734408960822 40.85572532879991, -73.87342467544471 40.85577324868127, -73.87340040453545 40.855819166938176, -73.87336849517314 40.855862305992915, -73.87332948598562 40.85590193883328, -73.87328256668845 40.85593819423291, -73.87263623014032 40.856092656140355, -73.87255395289246 40.85611310009238, -73.87246880219068 40.855707864875356, -73.87246298180963 40.85565629628436, -73.87246647166357 40.85560460561252, -73.87247920702099 40.85555375901524, -73.87250095003144 40.85550470534481, -73.87253129450546 40.85545835814672, -73.87256967542667 40.85541558396366, -73.87261537611033 40.85537718073263, -73.87267430851671 40.85534570696357, -73.8727381663623 40.85532037094668, -73.87280584705006 40.8553016081968, -73.87287618178375 40.85528974429782)), ((-73.87160306109774 40.855601915388675, -73.87166841866211 40.855599333458315, -73.87173370171986 40.85560524934883, -73.87179768488754 40.85561673419995, -73.8718595453886 40.85563364122026, -73.87191849023073 40.85565575251423, -73.87197376331062 40.85568278449277, -73.87202465371008 40.85571439058368, -73.87207050873431 40.85575016484763, -73.87210326036316 40.85579798665428, -73.87212956542768 40.85584805073462, -73.87214916158706 40.85589985702933, -73.8721618541307 40.85595288934434, -73.87222296507016 40.85619533968747, -73.87180313819808 40.856299650656, -73.87168802810933 40.8563282510761, -73.87169578895285 40.856356090302036, -73.87165320100893 40.85636770700013, -73.87156271425467 40.85635588820269, -73.87150259837622 40.85634480194619, -73.8714446525897 40.8563283520467, -73.87138970428175 40.85630677265712, -73.87133853799739 40.856280371724246, -73.87129188358962 40.85624952557221, -73.87124942250088 40.85620847610728, -73.87121380094716 40.856163833195176, -73.87118554186321 40.85611625118307, -73.87116505780143 40.85606642571657, -73.87115264976119 40.85601508653422, -73.87115191154494 40.85596577118181, -73.87115913312259 40.85591675737826, -73.87117420393201 40.85586878520288, -73.87119689959619 40.855822574795475, -73.87122687718905 40.855778821848965, -73.87126368474733 40.855738185913864, -73.87130943304243 40.85570265042012, -73.87136062323756 40.85567169007119, -73.87141646810885 40.85564577944219, -73.87147610823678 40.855625318287835, -73.8715386274425 40.85561062165475, -73.87160306109774 40.855601915388675)), ((-73.8732671300455 40.855287026298896, -73.8732100082335 40.85526413606932, -73.87314959904013 40.85524678202242, -73.87308682700815 40.85523523081512, -73.87302521117137 40.85522686768663, -73.8729627551717 40.855223736357985, -73.87290022625265 40.85522587369266, -73.87283839296262 40.85523325442353, -73.87277801567242 40.85524578844044, -73.8727198382768 40.85526331988081, -73.87265232137683 40.855291936842896, -73.8725898156584 40.85532649984409, -73.87253322578849 40.855366509218506, -73.87248336764405 40.855411385959854, -73.87244096473383 40.855460482522595, -73.87240662921344 40.85551308730292, -73.872396131339 40.85551284696729, -73.87238578387215 40.85551148118239, -73.87230858384984 40.855243760598164, -73.87222251937072 40.8547914148906, -73.8721323576732 40.85433952919438, -73.87225007529608 40.85446978429501, -73.8723749403845 40.85459614354675, -73.8725067280514 40.85471838335602, -73.87264520391088 40.854836282820166, -73.8727901205011 40.85494963362886, -73.8729412184874 40.85505823106087, -73.87309822664861 40.85516188118808, -73.87326086662266 40.855260399980516, -73.87325392400498 40.85525723072673, -73.8735769688704 40.85545038046616, -73.87366034160412 40.85550070572956, -73.87374779504134 40.85554686702157, -73.87383896662361 40.85558867393284, -73.87393348426531 40.855625954954576, -73.87403095568523 40.85565855476582, -73.87411654263767 40.855683518865135, -73.87420414708673 40.85570405828341, -73.87429337069912 40.85572008073187, -73.87339616999989 40.855911044862005, -73.87344240362097 40.85585987922291, -73.87348186645666 40.85580554271263, -73.87350617985294 40.855758454746415, -73.87352171969944 40.85570927251832, -73.87352819128994 40.85565893492168, -73.87352546948213 40.8556083990435, -73.87351360820247 40.855558630269364, -73.87349588482617 40.855512493952986, -73.8734722060418 40.8554679242613, -73.87344280702851 40.85542536359009, -73.87340797992941 40.855385233685766, -73.87336806911455 40.85534793203833, -73.87332008753 40.85531510146166, -73.8732671300455 40.855287026298896)), ((-73.87272695247859 40.85677582597399, -73.87263671165005 40.856418428434736, -73.87276157022572 40.85638682297457, -73.87284156549016 40.85636658527408, -73.87299851006739 40.8563280568185, -73.87307721306067 40.85630563474027, -73.87313391293266 40.85629151976349, -73.87318968817242 40.85629395297773, -73.8732446697628 40.85630148027465, -73.87329805144793 40.85631399090994, -73.8733490543837 40.856331303032, -73.87339693307062 40.8563531618872, -73.87344487953965 40.85637431931382, -73.87348837977822 40.856400436255115, -73.87352655004298 40.856430982258175, -73.87355861587021 40.85646533604082, -73.87358725525121 40.856497256533665, -73.87360906830996 40.85653214926765, -73.87362353241247 40.85656917891849, -73.87363030054692 40.856607459025064, -73.87363559708169 40.85664686943708, -73.87363366695396 40.85668645743468, -73.8736245495471 40.856725463045755, -73.87360841824295 40.85676313724963, -73.87359435653363 40.85680079570872, -73.87357442821698 40.85683689528991, -73.87354892248094 40.85687091222105, -73.87351821029702 40.8569023507344, -73.87346783784488 40.85693615308099, -73.8734117583464 40.856964301260916, -73.87335106279457 40.85698624806417, -73.87328693447081 40.8570015652487, -73.87322062164462 40.85700995431685, -73.87315341621392 40.857011251895315, -73.87308662760518 40.857005432408194, -73.8730215566745 40.856992610749806, -73.87295947081269 40.856973035053265, -73.87290157903604 40.85694708756319, -73.87284900828658 40.856915272902484, -73.87280158717776 40.856872327516356, -73.8727607342605 40.85682565321491, -73.87272695247859 40.85677582597399)), ((-73.87220719072272 40.856577726792416, -73.87231333986547 40.85656071517053, -73.87235155696497 40.856726057099685, -73.87236989615177 40.85681012476947, -73.87238479994407 40.85689458755283, -73.87238943542962 40.856928910412954, -73.87239623882924 40.856979367075766, -73.87239725412086 40.85699045955291, -73.8724016573274 40.85701356833402, -73.87239988892232 40.85705316459251, -73.87238960875908 40.85709200853085, -73.87237109636456 40.85712905048289, -73.8723448493943 40.85716329325077, -73.87230441305346 40.85720302501293, -73.87225776278268 40.85723861482371, -73.8722056290483 40.85726950698106, -73.87214882520267 40.857295218815, -73.87208823917 40.85731534698249, -73.87202481800459 40.857329579157, -73.8719595548508 40.85733769041286, -73.87190667541081 40.85733690862034, -73.8718543788594 40.85733091540628, -73.87180355096515 40.85731981351123, -73.87175505479617 40.857303791198646, -73.87170971174777 40.8572831195323, -73.87166829087319 40.857258149662435, -73.87162817982582 40.85723295431112, -73.87159300074833 40.857203819381695, -73.87156341793062 40.857171295818475, -73.87153999235188 40.857135998385516, -73.87152316509824 40.85709859484198, -73.87151325501884 40.857059791531114, -73.87151044925808 40.857020323464255, -73.87151112432169 40.85697846216518, -73.87151950751603 40.85693708400906, -73.8715354323996 40.85689700285329, -73.87155858669925 40.85685900897873, -73.87158851591117 40.85682384748216, -73.8716246280597 40.85679221107826, -73.871666216265 40.85676472301566, -73.87171245995722 40.85674192267096, -73.8718050535706 40.856698999205356, -73.8719012763319 40.85666095405577, -73.87200068198133 40.85662796231398, -73.87210281125807 40.8566001774468, -73.87220719072272 40.856577726792416)), ((-73.87113268869905 40.86625602746152, -73.87112303077765 40.8662113856854, -73.87112233201498 40.866166147885195, -73.87112708819649 40.86612533398166, -73.87114026884973 40.866085601969665, -73.87116154227894 40.86604794561714, -73.8711903776077 40.86601331074217, -73.87122605077208 40.86598256370299, -73.87126766827646 40.8659564752166, -73.87131418739851 40.8659356996705, -73.87136444231969 40.865920757142916, -73.87141717379909 40.86591202263073, -73.87147106003532 40.865909714377686, -73.8715562190822 40.86593962893445, -73.87163506941201 40.86599081769273, -73.8716422976492 40.865995270552865, -73.8716519026391 40.866000512184094, -73.87165201284508 40.866000568137096, -73.87187469194221 40.86611370105088, -73.8719112367609 40.866184523746014, -73.8719100447548 40.86618447199534, -73.87191097217577 40.86619256482862, -73.87191122124078 40.866192581313896, -73.87191115109812 40.866194510986276, -73.87191121606857 40.86619526656954, -73.8719111188146 40.86619526015817, -73.8719046434475 40.866240232448604, -73.8718893263493 40.86628395314629, -73.87186551815786 40.86632542669503, -73.87183376157806 40.866363708178014, -73.87179477710582 40.86639792581437, -73.87174945468738 40.86642730076167, -73.8716988252204 40.86645116329365, -73.87164404272421 40.866468971691674, -73.87158635467277 40.8664803185157, -73.87152707349483 40.86648494588152, -73.87146755046993 40.866482749034006, -73.87140914013706 40.86647377810885, -73.87135317301426 40.86645823630082, -73.87130092475954 40.866436478028284, -73.87125358416174 40.8664089989917, -73.87121222825037 40.86637642533921, -73.87117780097381 40.86633949833385, -73.87115108476074 40.86629905901261, -73.87113268869905 40.86625602746152)), ((-73.8824882958473 40.866472494508066, -73.8824881975632 40.86647239895609, -73.88248916537604 40.866472461175, -73.88248973240874 40.866472439240226, -73.88249301172232 40.866472707323815, -73.88250234234341 40.866473304845236, -73.8825224020251 40.86647386646433, -73.88257558251817 40.866479634203685, -73.88260397748844 40.86648422767933, -73.88262744023851 40.86649021459187, -73.88264885125182 40.8664966748716, -73.88266160298974 40.86650053833419, -73.88267789508738 40.86650596774505, -73.8826934835257 40.86651019788622, -73.88270118947887 40.86651326288312, -73.88271122667511 40.86651677509112, -73.88272232043653 40.866521142937046, -73.88272554958448 40.86652228173672, -73.88272727997445 40.86652309483675, -73.8827287438903 40.86652367173756, -73.88274473245664 40.8665310512915, -73.8827716595868 40.866543368536696, -73.88280739293015 40.86656376671086, -73.88282762407255 40.86657811314959, -73.88284539858431 40.8665911450768, -73.88286621057786 40.86660638898635, -73.88196135275142 40.86708756843227, -73.88194986879245 40.86707245096801, -73.88193464994707 40.86705241931031, -73.88192604222415 40.86703746327268, -73.88190903227371 40.8669987139988, -73.88189088077291 40.86694018609615, -73.8818859849528 40.86691504571282, -73.88188681540946 40.86688692606707, -73.8818887761566 40.866866902081114, -73.88189381728269 40.866846960491095, -73.88190118346033 40.866827613802805, -73.88191422925824 40.86680216130198, -73.88193065804501 40.86677804588668, -73.88194950242998 40.866756968491536, -73.88197934766464 40.86672642919242, -73.88201422921013 40.866695333129556, -73.88203097068154 40.8666834817905, -73.88208488311143 40.86664914808921, -73.88213103578369 40.86661932779581, -73.88220974241543 40.86657185690017, -73.88230197779379 40.86652278157064, -73.88238861688176 40.86649100697791, -73.88241518300336 40.86648338439134, -73.8824278027195 40.866480730900065, -73.88244987684907 40.86647641843164, -73.88247060278125 40.86647316986527, -73.8824882958473 40.866472494508066)), ((-73.8724818878226 40.859162323066776, -73.87223676520162 40.85993373766349, -73.87225525381498 40.859866915583765, -73.87231022312135 40.85966858293659, -73.87231298916079 40.8596586202627, -73.87232373921353 40.85961989663361, -73.87233729322925 40.85957121577356, -73.87235084605291 40.85952252770624, -73.87236439291267 40.85947384683429, -73.87237728557855 40.85942612696125, -73.87239016994609 40.859378395370875, -73.87240349881685 40.85933079304046, -73.87241059212597 40.85930383657749, -73.8724818878226 40.859162323066776)), ((-73.87206208974597 40.86071261920654, -73.87200486016822 40.86093949295408, -73.87198736207252 40.861004724913194, -73.87206208974597 40.86071261920654)), ((-73.87266593282786 40.85670746716391, -73.87264318266088 40.856487697791145, -73.87263671165005 40.856418428434736, -73.87266593282786 40.85670746716391)))",X002,4620,X002,X-06,X-06,X-11,X-11,"Burke Ave., E. 180 St. bet. Dr. Kazamiroff Blvd., Southern Blvd. and Bronx Park E., Unionport Rd.","206, 211, 212, 207","11,15",48,"10458, 10460, 10462, 10467",X,718.373,False,Bronx Park,No,100005062,PARK,20100106000000.00000,18881208000000.00000,2120 BOSTON ROAD,DPR,True,Bronx Park,Y,Bronx Park,Large Park,Flagship Park,http://www.nycgovparks.org/parks/X002/,Yes,"78, 80, 87","36, 34, 33","15, 14",{417842CC-D2CE-48B1-A2FA-29804059DA41} +"MULTIPOLYGON (((-74.18516662343932 40.52812626796845, -74.18547734730207 40.527987975377265, -74.18576938172497 40.528368961347674, -74.18584202928653 40.52846373530444, -74.18591467705666 40.52855851011508, -74.18598732385259 40.528653284881, -74.18613856065424 40.528850583603145, -74.18582388033025 40.52898372073659, -74.1855091987552 40.52911685790669, -74.18536368422362 40.52892701991789, -74.18529103683679 40.52883224566173, -74.18521838965349 40.528737470458466, -74.18514574267614 40.528642695208475, -74.18507309590736 40.52854792081236, -74.1850004505222 40.52845314546716, -74.18492780416295 40.528358370077235, -74.18485515800971 40.52826359464065, -74.18516697640773 40.52812672847047, -74.18516662343932 40.52812626796845)), ((-74.18434691152497 40.528475443890926, -74.1847079777359 40.52831907364856, -74.18477921041666 40.528414469216294, -74.18485044329579 40.52850986293805, -74.18499290967148 40.52870065294847, -74.18535798257908 40.52918954888661, -74.18500302046917 40.52934327456983, -74.18463451907095 40.52885586349666, -74.18449071429738 40.528665653335935, -74.1844188122188 40.52857054863724, -74.18434691152497 40.528475443890926)))",R133,6638,R133,R-03,R-03,R-03,R-03,"Eylandt St., Stecher St. and Colon St.",503,51,123,10312,R,2.65,False,Arbutus Woods Park,No,100003988,PARK,20100106000000.00000,19941230000000.00000,,DPR,False,Arbutus Woods Park,N,Arbutus Woods Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R133/,No,62,24,11,{B3C3DFFA-4EB5-44D4-B5A9-E72906836C72} +"MULTIPOLYGON (((-73.8130687716547 40.76631221709673, -73.81321482486777 40.76717781124333, -73.81321476106557 40.76718240101771, -73.81321376175298 40.76718692804104, -73.81321184974419 40.767191281588126, -73.81320907152396 40.76719535727552, -73.81320549370186 40.7671990543546, -73.81320120535341 40.767202285620584, -73.81319630856497 40.767204970193426, -73.81319092313872 40.76720704523191, -73.81318517950606 40.76720845871813, -73.81309507292004 40.76720337960865, -73.81308808878259 40.76720283337806, -73.81308131789118 40.76720142480854, -73.81307494135666 40.76719919111466, -73.81306913311799 40.767196192912564, -73.81306404928702 40.767192512401635, -73.81305982698217 40.76718824705916, -73.81305658194675 40.76718351413867, -73.81305440028589 40.76717844075132, -73.81305334201998 40.76717316387146, -73.81301991913222 40.76631674211034, -73.81302008064087 40.7663136356272, -73.81302091471235 40.766310591469946, -73.81302239860804 40.766307693348715, -73.81302449183094 40.76630502224333, -73.81302713614352 40.76630265009964, -73.81303025911343 40.766300642537075, -73.81303377530755 40.76629905524828, -73.81303758748714 40.76629793039924, -73.81304159251904 40.76629730024072, -73.81304567902505 40.76629718080107, -73.81304973565976 40.766297576402174, -73.81305364993642 40.76629847605544, -73.8130573165124 40.76629985527632, -73.81306063245435 40.76630167517601, -73.81306350670324 40.766303886079, -73.8130658624428 40.7663064275268, -73.81306763353918 40.766309230973654, -73.8130687716547 40.76631221709673)))",Q246,6187,Q246,Q-07,Q-07,Q-07,Q-07,"Murray La., Murray St. bet. 34 Ave. and 35 Ave.",407,20,109,11354,Q,0.221,False,Travis Triangle,Yes,100000353,PARK,20090423000000.00000,19320419000000.00000,,DPR,False,Travis Triangle,N,Travis Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q246/,No,40,16,6,{986C53D0-9C65-46F6-998F-6DC55AD57FE1} +"MULTIPOLYGON (((-73.9888296647971 40.71426208449055, -73.98928981008542 40.71422324507958, -73.99007127424811 40.714466499765635, -73.99008111672374 40.714620789560456, -73.98965052184772 40.715451721870664, -73.98824706274509 40.71502663453505, -73.98836546097509 40.71478159428423, -73.98849476112802 40.71476605546507, -73.98847161451377 40.714629977028096, -73.98867156105872 40.71461278992487, -73.98861966330614 40.71427980938079, -73.9888296647971 40.71426208449055)))",M082,5128,M082,M-03,M-03,M-03,M-03,"Canal St, Essex St, Jefferson St and E Broadway",103,1,7,10002,M,3.361,False,Seward Park,Yes,100005176,PARK,20100106000000.00000,18970622000000.00000,57 ESSEX STREET,DPR,False,Seward Park,Y,Seward Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M082/,No,65,26,12,{F3097C9B-7FD2-436C-BB5A-237360AF7691} +"MULTIPOLYGON (((-73.9443920288644 40.780796797788625, -73.94437619920978 40.78078725923539, -73.94434976716002 40.78066262059225, -73.94436343270644 40.78064488369817, -73.94438948384285 40.78064548610149, -73.9444815947227 40.78067438440166, -73.9444549191736 40.78071081306418, -73.94443968494897 40.780731641536654, -73.94444788806275 40.78073519887245, -73.94445517934162 40.780739761628936, -73.94446134921341 40.78074519643104, -73.94446622011041 40.780751347406415, -73.94446965002287 40.78075803618742, -73.94447153960046 40.780765070018894, -73.94447183570307 40.78077224536187, -73.94447052784098 40.78077935509578, -73.94446765646317 40.780786193925664, -73.94446156868769 40.78079169035776, -73.94445433252793 40.7807963118486, -73.94444616251864 40.78079992342602, -73.94443729804931 40.78080241804547, -73.94442800336007 40.78080372109255, -73.94441855213773 40.78080379487814, -73.94440922396305 40.780802636835496, -73.94440029483196 40.78080028131692, -73.9443920288644 40.780796797788625)))",M108H,5579,M108H,M-08,M-08,M-08,M-08,E. 93 St. and FDR Dr.,108,5,19,10128,M,0.034,False,Park,Yes,100007044,PARK,20100111000000.00000,19350313000000.00000,,DPR/CDOT,False,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M108H/,No,68,29,12,{369B9CAC-16F5-4BB1-B26E-EDB34BBAA006} +"MULTIPOLYGON (((-73.99218978765998 40.71998285531345, -73.99261444254508 40.72011048196258, -73.9909130344853 40.72343062436195, -73.99048609276389 40.72330242488663, -73.99218978765998 40.71998285531345)), ((-73.99435195798976 40.715745251059644, -73.99477372122408 40.71587276071418, -73.99368348821541 40.718008638552526, -73.99326219179049 40.717880218154626, -73.99385750810019 40.71671399638934, -73.99428280651347 40.715880738414974, -73.99435195798976 40.715745251059644)), ((-73.9931761658091 40.71808451178403, -73.99358666118484 40.718212974215945, -73.992818834599 40.719730610359136, -73.99240699739877 40.71960284392326, -73.9931761658091 40.71808451178403)))",M105,4677,M105,M-03,M-03,M-03,M-03,E. Houston St. To Canal St. bet. Chrystie St. and Forsyth St.,103,1,5,10002,M,7.85,False,Sara D. Roosevelt Park,Yes,100003978,PARK,20100106000000.00000,19340413000000.00000,106 CHRYSTIE STREET,DPR,True,Sara D. Roosevelt Park,Y,Sara D. Roosevelt Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M105/,No,65,26,7,{E215AD8D-A849-4EAD-A992-C62BF3443405} +"MULTIPOLYGON (((-73.89111242963195 40.666628851843825, -73.89112775447641 40.66668875609728, -73.89078132465613 40.66673822627862, -73.89076574578814 40.66667835775857, -73.89111242963195 40.666628851843825)))",B466,6213,B466,B-05,B-05,B-05,B-05,Bradford St. and Dumont Ave.,305,42,75,11207,B,0.049,False,First Temple Of David,No,100004260,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,First Temple Of David,N,First Temple Of David,Greenthumb,Garden,http://www.nycgovparks.org/parks/B466/,No,60,19,8,{7922976C-B1BE-4114-BF72-943EEF32735F} +"MULTIPOLYGON (((-73.94911565165785 40.709037103259966, -73.94947100081005 40.70900295571637, -73.94956115428502 40.70956246842389, -73.94920570561834 40.70959601285817, -73.94911565165785 40.709037103259966)))",B386,5211,B386,B-01,B-01,B-01,B-01,Ten Eyck St. to Stagg St. between Lorimer St. and Union Ave.,301,34,90,11206,B,0.46,False,Ten Eyck Plaza,Yes,100003862,PARK,20100106000000.00000,19910709000000.00000,34 TEN EYCK STREET,DPR,False,Ten Eyck Plaza,Y,Ten Eyck Plaza,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B386/,No,53,18,7,{909404AC-34A1-4EA8-8737-88D0F775EDC1} +"MULTIPOLYGON (((-73.89315234839358 40.8559804486028, -73.89333385298892 40.85573104896091, -73.89351218622991 40.85548600537591, -73.89361697218095 40.855529295021846, -73.89372811095598 40.855575209053384, -73.89383924869841 40.855621122976416, -73.89395038540688 40.855667037691404, -73.89406152345622 40.85571295139954, -73.89388319163069 40.855957995823914, -73.89380769610237 40.855926806276244, -73.89377205448098 40.85591208194705, -73.8936609151127 40.85586616796054, -73.89354977826989 40.855820253868806, -73.89348944538133 40.855795328412285, -73.89330754657223 40.85604527182796, -73.89315234839358 40.8559804486028)))",X280,4760,X280,X-06,X-06,X-06,X-06,E 183 St bet. Washington Av and Park Av,206,15,48,10458,X,0.516,False,Washington Park,Yes,100004859,PARK,20100106000000.00000,19970116000000.00000,449 - 465 EAST 183 STREET,DPR,False,Washington Park,Y,Washington Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X280/,No,78,33,15,{BCEB72C9-8DE3-4298-8CC4-C6F004AEA4F0} +"MULTIPOLYGON (((-73.86756824667066 40.83495746397043, -73.86756662645013 40.8349220609487, -73.86792007827097 40.83491417720854, -73.86795253522979 40.83507094193011, -73.86756824667066 40.83495746397043)))",X148K2,5648,X148K2,X-09,X-09,X-09,X-09,"S/B Cross Bronx Exwy Service Rd, St Lawrence Av, E 174 St",209,18,43,10472,X,0.14,False,St. Lawrence Triangle,Yes,100005084,PLGD,20100106000000.00000,19460131000000.00000,,DPR,True,St. Lawrence Triangle,Y,St. Lawrence Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X148K2/,No,87,33,15,{DF2AA312-4777-44CC-A1A4-1D3C9E365E74} +"MULTIPOLYGON (((-73.91555962014412 40.61449471618582, -73.91610881593145 40.61413466030648, -73.91661476244674 40.61458866608956, -73.91633883250286 40.61476956944599, -73.9160666986643 40.61494798226667, -73.91555962014412 40.61449471618582)), ((-73.91628149287288 40.614018346979606, -73.91681061161057 40.613678720351075, -73.9173082394861 40.61412575515046, -73.91677923327089 40.61446531119409, -73.91628149287288 40.614018346979606)))",B147,6099,B147,B-18,B-18,B-18,B-18,"Ave. U bet. E. 58 St., E. 59 St., and E. 60 St.",318,46,63,11234,B,2.291,False,Monsignor Crawford Field,Yes,100004300,PARK,20100106000000.00000,19360108000000.00000,,DPR,False,Monsignor Crawford Field,Y,Monsignor Crawford Field,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/B147/,No,59,19,8,{497FD5BD-4B5E-4812-B5AC-19C5817C47DD} +"MULTIPOLYGON (((-73.81245153921572 40.69914862873777, -73.81311910486518 40.69895553311206, -73.81350515006834 40.69973173885176, -73.81283757894779 40.69992483669928, -73.81245153921572 40.69914862873777)))",Q105,4900,Q105,Q-12,Q-12,Q-12,Q-12,"91 Ave., Archer Ave. bet. 138 Pl. and 138 St.",412,24,103,11435,Q,1.381,False,Howard Von Dohlen Playground,Yes,100000328,PARK,20090423000000.00000,19340712000000.00000,138-02 91 AVENUE,DPR,False,Howard Von Dohlen Playground,Y,Howard Von Dohlen Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q105/,No,24,14,5,{7AE689B8-6E1B-4033-AFA1-AAB8EBB4B020} +"MULTIPOLYGON (((-74.13092210196606 40.56433545065932, -74.13092867063783 40.56433534681572, -74.13093523964844 40.56433541587236, -74.13094180191132 40.564335656936855, -74.13094834797826 40.564336069119435, -74.13095487430328 40.564336650623076, -74.13096136907843 40.564337401461216, -74.13096782640314 40.5643383234417, -74.13097423918374 40.56433941206999, -74.13098059797385 40.56434066735686, -74.13098689804843 40.56434208840712, -74.13099313113659 40.56434367252872, -74.13099928896905 40.56434541792998, -74.1310053644611 40.56434732461902, -74.13101135051902 40.56434938810138, -74.13104506651491 40.56436091239699, -74.1311006570821 40.56437782388046, -74.1311562488617 40.564394737136716, -74.13121184066596 40.56441164856498, -74.13125789641312 40.56442625380997, -74.13130226728404 40.564440324248935, -74.13135000796608 40.56445546334401, -74.13138938044546 40.56446771770051, -74.13140887941623 40.56447378655373, -74.1314677485335 40.56449210793487, -74.13147415107919 40.56449458425791, -74.13148242638187 40.56449824983311, -74.13148841906124 40.56450126333815, -74.13149418079762 40.56450452925465, -74.13149973981893 40.56450799081709, -74.13150503479896 40.56451168681844, -74.1315117167059 40.5645169103251, -74.1315179198586 40.56452246757429, -74.13152361350792 40.56452833428705, -74.13152877043477 40.56453447987673, -74.1315333705138 40.564540878251194, -74.13153739125434 40.56454750151994, -74.13154081133781 40.56455431728855, -74.13154299549137 40.5645595306352, -74.13154478778789 40.56456483268218, -74.1315466498652 40.56457199063378, -74.13154764534504 40.56457741246271, -74.13154823705123 40.564582868073515, -74.13154850642286 40.564588338461945, -74.13154836957035 40.56459379760874, -74.13154765286974 40.564601022451036, -74.13154671882177 40.564606409568185, -74.13154538910938 40.56461175121163, -74.13154374400848 40.56461703738362, -74.13154171381186 40.56462224835238, -74.13153937881502 40.564627384026004, -74.13153667046124 40.56463240936237, -74.1315325693519 40.56463894557553, -74.13152790100233 40.56464525550547, -74.13152405699601 40.56464983277939, -74.13150364525741 40.564666593330784, -74.13150279880004 40.564667290406625, -74.13147783199739 40.56468733318321, -74.1314534949276 40.56470516354121, -74.13142837724256 40.56472235361254, -74.1314025084257 40.564738884451934, -74.13137592031507 40.564754733509254, -74.13134864004677 40.564769889046175, -74.13132070181905 40.56478432760943, -74.13129213748616 40.56479803475373, -74.13126297889718 40.564810993332166, -74.1312332590893 40.564823189798666, -74.13120301581937 40.564834608800744, -74.13116870066857 40.564846431377944, -74.1311338819098 40.5648573647999, -74.13109860203446 40.56486739911194, -74.1310628988088 40.56487652346416, -74.13102681472074 40.564884726100864, -74.13101193624978 40.564887697698616, -74.1309903887265 40.56489200067364, -74.13095366213321 40.56489833542818, -74.13091667626061 40.56490372491398, -74.1308794747883 40.564908162777314, -74.13084210021682 40.56491164356644, -74.13080459033065 40.56491416543707, -74.13077915623009 40.56491521829665, -74.13076571591755 40.56491574149534, -74.1307293464318 40.564916314204936, -74.13072420663931 40.564916488452994, -74.13071906422608 40.56491653032644, -74.13071392154683 40.564916436220535, -74.13070878804457 40.56491620432345, -74.13070366726888 40.564915838233226, -74.13069856630469 40.564915337941805, -74.13069348987358 40.56491470254336, -74.13068844506587 40.564913934731315, -74.13068344014198 40.564913031794795, -74.13067847865497 40.56491199913281, -74.13067356650731 40.56491083583822, -74.13066871078742 40.564909543703976, -74.13066391622036 40.56490812362522, -74.13065918871209 40.56490657649582, -74.130654534179 40.564904908612654, -74.13064995851823 40.56490311636702, -74.13064546528283 40.56490120515797, -74.13064106392645 40.56489917857692, -74.13063675680716 40.56489703482006, -74.13063254865716 40.564894778384776, -74.13062844538754 40.56489241286637, -74.13062445172875 40.56488994186157, -74.13062057358299 40.564887364463196, -74.13061681450695 40.564884687871384, -74.1306131792239 40.56488191208085, -74.1306096712903 40.5648790442917, -74.13060629660686 40.5648760826962, -74.13060305755451 40.56487303719746, -74.13059995767225 40.564869905990356, -74.13059700405545 40.564866694470076, -74.13059419789566 40.564863408038384, -74.13059154155964 40.56486004939414, -74.13058903859692 40.564856622135515, -74.13058669374318 40.564853132560806, -74.13058450818082 40.56484958156914, -74.13058248428042 40.564845973660475, -74.13058062678107 40.56484231693421, -74.13057893450359 40.564838612292185, -74.13057741336442 40.564834866031376, -74.13057606218804 40.56483108085474, -74.13057488334663 40.564827262162666, -74.13057387803326 40.564823416257504, -74.13057305097288 40.56481954403452, -74.13057239627736 40.564815653604995, -74.13057192221937 40.56481174856175, -74.1305716217192 40.564807831614345, -74.13057150187767 40.56480391085948, -74.13057156033832 40.564799989001365, -74.1305717947465 40.564796069644835, -74.13057220747798 40.564792159991406, -74.13057279853797 40.564788262742596, -74.13057356439626 40.56478438420615, -74.13057450742335 40.56478052888195, -74.13060628488256 40.56468647601553, -74.13064097178314 40.56459302228241, -74.13066495284056 40.564534957890245, -74.13069733571838 40.564456548249396, -74.13070174008043 40.56444986493519, -74.13070644223762 40.56444329925087, -74.13071143512447 40.56443686111024, -74.13071671166298 40.56443055412338, -74.13072226833549 40.56442439090165, -74.13072809570062 40.564418374157356, -74.13073419023353 40.56441251289972, -74.13074054368083 40.564406813441785, -74.13074714896999 40.564401282095254, -74.13075399548774 40.56439592607629, -74.13076107734408 40.56439075259585, -74.13076838627691 40.564385763464344, -74.13077591640157 40.564380968594186, -74.13078365473612 40.56437637160222, -74.13079159302899 40.56437197970205, -74.13079972538328 40.564367796502424, -74.13080803999968 40.56436382651937, -74.13081652390339 40.56436007697182, -74.13082517355203 40.56435654786381, -74.13083397597079 40.564353246414306, -74.13084292054134 40.56435017713792, -74.13085199781715 40.564347340045444, -74.1308611948182 40.56434473965425, -74.13087050329477 40.56434238407844, -74.13087679065266 40.564340931569994, -74.13088313973543 40.56433964378718, -74.13088954227914 40.564338521639925, -74.13089599120607 40.56433756873837, -74.13090247942786 40.564336783289555, -74.13090899868409 40.56433616800449, -74.1309155418918 40.564335723791686, -74.13092210196606 40.56433545065932)))",R009,5762,R009,R-03,R-03,R-03,R-03,"Amboy Rd., Clarke Ave., and Savoy St.",503,50,122,10306,R,0.916,False,Amundsen Circle,Yes,100004504,PARK,20100106000000.00000,19280801000000.00000,,DPR,False,Amundsen Circle,Y,Amundsen Circle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R009/,No,62,24,11,{A0C9EB13-8A43-4977-8AB2-22AABD3E8862} +"MULTIPOLYGON (((-73.90682448199338 40.824894103304096, -73.90703659997455 40.82438385892221, -73.90738128881459 40.82446617328111, -73.90716848215911 40.824978077347865, -73.90682448199338 40.824894103304096)))",X086,4703,X086,X-03,X-03,X-03,X-03,E 164 St bet. Cauldwell Av and Boston Rd,203,16,42,10456,X,0.488,False,Charlton Garden,Yes,100004953,PARK,20100106000000.00000,19161230000000.00000,596 EAST 164 STREET,DPR,True,Charlton Garden,Y,Charlton Garden,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X086/,No,79,32,15,{1CA2D34E-1F51-44A9-851B-FFEA3659D064} +"MULTIPOLYGON (((-74.18506786871878 40.588666249723516, -74.18558195974856 40.5878376027644, -74.18629832005313 40.58813431569096, -74.18624574763373 40.58831210878446, -74.18653335793327 40.588472622846695, -74.18691931756467 40.588688330631435, -74.18709444353244 40.588786203771086, -74.18687669443224 40.58900864836542, -74.1867791724269 40.58910827354848, -74.18860799007305 40.5901347477896, -74.18838307110218 40.590585768375604, -74.18603277089063 40.589224954260615, -74.18506786871878 40.588666249723516)), ((-74.18418146632625 40.587889497662125, -74.18419769275256 40.587873589986636, -74.18422283263993 40.58785935470215, -74.18422925667535 40.587857820713495, -74.18426242333672 40.58785397361767, -74.1843020126579 40.58785537257685, -74.18439769273562 40.58788070303332, -74.18443455339762 40.587883374265466, -74.18448519705238 40.58788061840393, -74.18453465006205 40.5878718930489, -74.18455755801016 40.58786516355201, -74.18459953861188 40.58784621480021, -74.18463656203065 40.587815046665874, -74.18469304412116 40.5877506673876, -74.18485403305391 40.587536091574734, -74.18524809304091 40.587699313827926, -74.18475157696699 40.58848310469507, -74.18424587486285 40.58819027971524, -74.18419976485977 40.58803940399144, -74.18418059985072 40.587956510741265, -74.18417538308607 40.58790795467397, -74.18418146632625 40.587889497662125)))",R045,6016,R045,R-02,R-02,R-02,R-02,"Wild Ave., Pearson St., Melvin Ave.",502,50,122,10314,R,7.395,False,Schmul Park,No,100004502,PARK,20100106000000.00000,19380426000000.00000,,DPR,True,Schmul Park,Y,Schmul Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/R045/,No,63,24,11,{CB30E03E-9FC4-4A2A-A796-6D77DBA40B79} +"MULTIPOLYGON (((-73.90241204737778 40.718583022021235, -73.90240234644601 40.71854300411856, -73.90244680476901 40.718578065351224, -73.90241204737778 40.718583022021235)))",Q063,5565,Q063,Q-05,Q-05,Q-05,Q-05,"Fresh Pond Rd., 59 Rd. and 61 St.",405,30,104,11378,Q,0.001,False,Luke J. Lang Square,Yes,100000017,PARK,20090423000000.00000,19160901000000.00000,,DPR,True,Luke J. Lang Square,N,Luke J. Lang Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q063/,No,30,15,6,{9D1EAA6A-77F6-4929-8DB4-70AAA4C60A14} +"MULTIPOLYGON (((-73.79062942451517 40.694867169883764, -73.79097936800086 40.694719254278944, -73.79112090941709 40.69491322109046, -73.79077096522735 40.69506113712206, -73.79075545127621 40.695039877469455, -73.7906631299922 40.69491336099039, -73.79062942451517 40.694867169883764)), ((-73.79115093585379 40.694646255703155, -73.79145234227096 40.69451823120269, -73.79152825412827 40.69462180371958, -73.79122675549438 40.694749703979376, -73.79115093585379 40.694646255703155)))",Q493,4957,Q493,Q-12,Q-12,Q-12,Q-12,"109 Ave. bet. 160 St., Unionhall St., and Guy R. Brewer Blvd.",412,28,103,11433,Q,0.294,False,Mckinley's Children's Garden,No,100000212,PARK,20090423000000.00000,20060324000000.00000,108-56 UNION HALL STREET,DPR,False,McKinley's Children's Garden,N,McKinley's Children's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/Q493/,No,32,10,5,{3C60C88F-34D6-4B88-8AA9-3496118B72A9} +"MULTIPOLYGON (((-73.93847003371262 40.80105746904779, -73.93865004058839 40.80081340632434, -73.93888743401736 40.80091346713028, -73.93912704327936 40.80101446153269, -73.93894542516698 40.80126070965077, -73.93870742655638 40.80115753021991, -73.93847003371262 40.80105746904779)))",M166,5819,M166,M-11,M-11,M-11,M-11,E. 120 St. and Sylvan Pl.,111,8,25,10035,M,0.347,False,Harlem Art Park,Yes,100003902,PARK,20100106000000.00000,19450416000000.00000,,DPR,True,Harlem Art Park,Y,Harlem Art Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/M166/,No,68,30,13,{A07503C8-A53C-4CD1-B871-365B3B9C17D8} +"MULTIPOLYGON (((-73.90325397066265 40.84512323210964, -73.90326133254115 40.845110698919015, -73.90382169510842 40.84515060729595, -73.90382092214057 40.84516360977007, -73.90380292948672 40.84516232777283, -73.90366447440061 40.845152467990445, -73.90350431435935 40.84514106175016, -73.90325397066265 40.84512323210964)))",X148F5,5622,X148F5,X-05,X-05,X-05,X-05,S/B Cross Bronx Expressway bet. Anthony Av and Carter Av,205,15,46,10457,X,0.017,False,Strip,No,100005198,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,Undeveloped,Strip,http://www.nycgovparks.org/parks/X148F5/,No,86,33,15,{3434BD87-3ACA-4115-B9F4-FF93B55F834C} +"MULTIPOLYGON (((-73.8688401533603 40.73355337990606, -73.86884253461217 40.733559689783725, -73.86833154959645 40.73388258662081, -73.86730311786269 40.73417987354466, -73.8666520822037 40.73420320201791, -73.86664925123841 40.73419750572167, -73.8673015171461 40.73417402199355, -73.86832760468114 40.73387741138731, -73.8688401533603 40.73355337990606)))",Q357A,6073,Q357A,Q-04,Q-04,Q-04,Q-04,"LIE Exit 19, Westbound bet. 92 St. and 94 St.",404,25,110,11373,Q,0.03,False,Strip,No,100008328,PARK,20110712000000.00000,19540830000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q357A/,No,35,16,6,{DDE1FC0B-0073-4961-A8C2-C4963A6D2BD7} +"MULTIPOLYGON (((-73.90971174522873 40.62203389720804, -73.90971190026336 40.62203373883812, -73.90971193803574 40.62203377308761, -73.90973220079579 40.62205198131964, -73.91007340439245 40.622358583361844, -73.90935905789229 40.62282012725624, -73.9091353437537 40.62262445301767, -73.90899759251359 40.622495313851104, -73.90971174522873 40.62203389720804)))",B353,5197,B353,B-18,B-18,B-18,B-18,E. 71 St. between Ave. N and Ave. T,318,46,63,11234,B,0.927,False,Bergen Beach Playground (PS 312),Yes,100004646,PARK,20100106000000.00000,19630708000000.00000,7101 AVENUE T,DPR/DOE,False,Bergen Beach Playground,Y,Bergen Beach Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B353/,No,59,19,8,{B2F05DE2-E584-4C6D-9B98-C4F0CA37668E} +"MULTIPOLYGON (((-73.95105698363615 40.80521541878869, -73.95106216770031 40.805214749217555, -73.95106801089597 40.80521538835038, -73.95107337677726 40.80521726456535, -73.95107859038826 40.80522154144458, -73.95108137629433 40.80522669798106, -73.95108143207021 40.8052314310251, -73.95107878777047 40.80523677075988, -73.9510779549973 40.80523791584067, -73.95073704756952 40.80570755714154, -73.95073655999667 40.805708230506035, -73.95073233895499 40.80571266815973, -73.95072709748472 40.80571558623617, -73.95072124324298 40.805717006521455, -73.9507151043377 40.80571715067839, -73.95070985513988 40.805716099353425, -73.95070512336359 40.8057140766116, -73.95070125616935 40.80571118075574, -73.95069801951658 40.80570659043133, -73.95069678329165 40.80570201987279, -73.95069731370074 40.805697913826535, -73.950699311274 40.80569378679574, -73.95070010490787 40.805692700233465, -73.95085624845942 40.805479128134365, -73.95104765101976 40.80522032614523, -73.95105194448732 40.80521724466128, -73.95105698363615 40.80521541878869)), ((-73.95196574127186 40.803966397880195, -73.95197291236481 40.80396603166352, -73.95197693840322 40.80396715806371, -73.95197996089396 40.8039680039906, -73.95198558959665 40.80397178392727, -73.95198811244046 40.8039752915201, -73.95198820106575 40.803975644552494, -73.95198921729477 40.803979702623025, -73.95198861798549 40.80398416884713, -73.95198553344386 40.80398884295185, -73.95198509927805 40.803989441602646, -73.9517803466347 40.804271620160876, -73.95175661915427 40.804304319947825, -73.9516486921587 40.80445305692271, -73.95164782025718 40.80445425782222, -73.95164332824805 40.804458318087526, -73.95164286118715 40.80445851329981, -73.95163820835928 40.804460458226075, -73.95163318324911 40.804461004521535, -73.95163262977594 40.80446106462273, -73.95163116517038 40.80446086409749, -73.95162760200769 40.80446037633314, -73.95162696094641 40.804460288715774, -73.95162627030051 40.804459941734, -73.95162114317107 40.804457368658746, -73.95161758160215 40.8044530582779, -73.9516166841066 40.804451970999345, -73.9516165283145 40.80444783314261, -73.9516164364728 40.80444538554868, -73.95165786100264 40.804384622869264, -73.95179754574056 40.80417973326289, -73.95195420493202 40.803972593006435, -73.95195815479482 40.803969252901815, -73.95196574127186 40.803966397880195)), ((-73.94268667249536 40.81666787857833, -73.9426936745595 40.81666724180534, -73.94270001967602 40.81666832555512, -73.94270732866286 40.81667189785653, -73.94271201924045 40.816676964581916, -73.94271373507242 40.81668301857482, -73.94271189302177 40.81669002802825, -73.94237238776033 40.81715380565309, -73.94236683970405 40.81715615857985, -73.9423615904632 40.81715700422399, -73.94235624267098 40.8171566791727, -73.94235119448935 40.8171552979881, -73.94234579838975 40.81715190221781, -73.94234182745173 40.81714664133044, -73.94234094380464 40.81714186015065, -73.94234192300006 40.81713759678765, -73.94254566611066 40.81685526214465, -73.94267475833716 40.81667430580559, -73.94267935452496 40.816670609749714, -73.94268667249536 40.81666787857833)), ((-73.93669740369889 40.82487333314872, -73.93670535929367 40.82487320334182, -73.93671273765018 40.824875492849664, -73.93671785059793 40.82487906882284, -73.9367208190737 40.82488390791503, -73.93672107354872 40.824884322282706, -73.93672157871045 40.824889134809254, -73.93672161747106 40.82488951213826, -73.93672170676021 40.82489035775279, -73.93656912693145 40.82509901964441, -73.93651211757815 40.82517634895871, -73.93646569240582 40.825239322970255, -73.93643119632851 40.8252861153279, -73.93637867583374 40.82535735609555, -73.93637342894803 40.82535994122526, -73.9363733732054 40.82535996910988, -73.93637177729511 40.82536028250229, -73.93636727293824 40.8253611679056, -73.93636625444846 40.82536136815412, -73.93635861851065 40.82536062913571, -73.93635264838734 40.82535837640249, -73.93634980072969 40.82535612359152, -73.9363482702909 40.82535491338104, -73.93634528018259 40.82535038854068, -73.93634451557433 40.82534666636991, -73.9363444117358 40.82534616383601, -73.93634451674073 40.82534544709938, -73.93634499286298 40.82534217586136, -73.93653761981179 40.82507960833273, -73.93654255885357 40.825072875342656, -73.93654530904165 40.82506918302252, -73.9366889463234 40.8248763127487, -73.93669740369889 40.82487333314872)), ((-73.93897445490872 40.82175174596616, -73.9389820493277 40.8217508053646, -73.93898938694022 40.82175199069819, -73.93899556978342 40.82175469545799, -73.93899936482983 40.82175787801831, -73.93900198103366 40.82176168579975, -73.93900312859479 40.821768030402616, -73.93884610698055 40.821983398152234, -73.93880785967544 40.82203585787821, -73.93880011169654 40.82204648412359, -73.93879229368704 40.82205720848533, -73.93879127180341 40.82205858390103, -73.93865845617748 40.822237418496634, -73.93865362663541 40.822238987293126, -73.9386510251094 40.82223983237546, -73.9386440511203 40.8222401969678, -73.93863732778111 40.822238698566565, -73.93863053542823 40.82223491286801, -73.93862688237881 40.822230705606806, -73.9386252775206 40.82222667593288, -73.93862520005042 40.82222456062619, -73.93862513759666 40.82222287216268, -73.93862512256032 40.82222246693141, -73.93882744125294 40.821946698435134, -73.93891452253767 40.82183122174396, -73.93897445490872 40.82175174596616)), ((-73.93623904312409 40.8254936410351, -73.93624612776236 40.82549198894059, -73.93625201083246 40.82549231366991, -73.93625764456712 40.825494284367196, -73.93626320813188 40.82549896911935, -73.93626551344937 40.825504316636305, -73.93626496483236 40.825509010617004, -73.93614173412232 40.825681679120926, -73.9359261898649 40.825977810012105, -73.93591896633505 40.82598206264096, -73.93591040125176 40.82598345364928, -73.93590089439608 40.82598169149838, -73.93589458316075 40.825977855480836, -73.93589121122201 40.825973451083286, -73.93588999540661 40.825968048334246, -73.93589097483866 40.82596287283001, -73.93601158149431 40.8257982571784, -73.93623375171948 40.82549689520207, -73.93623904312409 40.8254936410351)), ((-73.93760298740875 40.82362609066325, -73.9376103089546 40.823624377379, -73.93761704747652 40.82362497895396, -73.93762340930053 40.82362782796264, -73.937628053881 40.82363275528722, -73.9376294521619 40.82363709283197, -73.93762826521784 40.82364251767801, -73.93741051380209 40.823948824946065, -73.93739429474343 40.82397164011053, -73.93731582194191 40.82407763267093, -73.9372924405261 40.824109213856275, -73.93728707050981 40.82411177824964, -73.93728133659468 40.82411305653679, -73.93727518430677 40.824112990155704, -73.9372682475637 40.824111352882746, -73.93726314464092 40.82410849103221, -73.93725926360028 40.824104679823144, -73.93725716347916 40.824100431041444, -73.93725687968612 40.824094650604046, -73.93725921688964 40.82408884367731, -73.93726225818426 40.82408560444734, -73.93726236856524 40.824085459527566, -73.9374094032285 40.82388941592734, -73.93759483968226 40.82363280215288, -73.93759626165524 40.82363083443827, -73.93760298740875 40.82362609066325)), ((-73.94040641877503 40.8197874380905, -73.94041419537191 40.819785308833225, -73.94042209414081 40.81978573614809, -73.94043010909233 40.81978879117119, -73.94043536295007 40.819793641257945, -73.94043767490473 40.8197996730772, -73.94043733147957 40.819804606720076, -73.94025644722402 40.820050490055685, -73.94009476606116 40.82027082428642, -73.9400876946544 40.820272986306314, -73.9400795656382 40.82027281729143, -73.9400715124423 40.82027006299018, -73.94006745889966 40.82026701630497, -73.94006478462664 40.82026319140711, -73.94006349405421 40.820257616663454, -73.94006458914023 40.82025255464174, -73.94023345983882 40.82002130025683, -73.94040641877503 40.8197874380905)), ((-73.94087009957545 40.81916271149439, -73.94087298000802 40.81916263642929, -73.94087353937506 40.819162761885124, -73.94087988676493 40.81916418972539, -73.9408864821851 40.81916795448107, -73.94088780347317 40.8191696958183, -73.9408900802087 40.819172696539596, -73.94089121330289 40.819179467053736, -73.94089124749762 40.81917966968298, -73.94089121308133 40.81917971649117, -73.94081032473473 40.81929013530959, -73.94078960356623 40.819318420073884, -73.94055174321835 40.81964311218909, -73.94055166370298 40.819643221108166, -73.94054794270916 40.819646096276024, -73.94054238254249 40.81964843199854, -73.94053580774664 40.819649411950245, -73.94052917519632 40.81964869893835, -73.94052374450212 40.81964675286579, -73.94051956875516 40.81964385291403, -73.94051889383279 40.81964304301949, -73.94051654226021 40.819640222351836, -73.9405149497766 40.81963555155538, -73.9405155773181 40.8196296941493, -73.94070581567114 40.81937414747085, -73.94083970764113 40.81919062750798, -73.94085728269393 40.819166539235496, -73.94085779380312 40.81916628105515, -73.94085880890711 40.81916576739222, -73.9408622799431 40.819164014104686, -73.94086733056669 40.81916278391512, -73.94087009957545 40.81916271149439)), ((-73.94731816480736 40.810334561949894, -73.94732583655542 40.81033445109204, -73.94733109404821 40.81033589699202, -73.9473353279914 40.81033827894196, -73.94733917639675 40.81034260759196, -73.94734098612321 40.810348651659545, -73.94733885962097 40.810355011804944, -73.94733702535642 40.810357511649556, -73.94728330485427 40.8104307029746, -73.9469989821634 40.81081807482836, -73.94699362828021 40.81082154468637, -73.94698642070233 40.81082360351228, -73.94697938683554 40.810823328327366, -73.94697286398733 40.810821310913944, -73.94696821596443 40.81081798323774, -73.94696488364359 40.81081298754429, -73.94696407186831 40.81080842795064, -73.94696514549504 40.8108041573836, -73.94713842882808 40.810568973814235, -73.94730419044767 40.81034344257662, -73.94730454401149 40.81034296187238, -73.94730900166607 40.81033822098765, -73.94731816480736 40.810334561949894)), ((-73.95150652844166 40.804592813131386, -73.95151385149592 40.804590543353065, -73.9515232638094 40.804591568476916, -73.95152998883904 40.80459520481668, -73.95153296817543 40.804603267333164, -73.95153236560624 40.80461053320336, -73.95152772900757 40.804616210698825, -73.9513770923387 40.80482440287729, -73.95119108463133 40.80508118429277, -73.95118510617992 40.80508562031886, -73.95117843294805 40.80508726090282, -73.95117114381601 40.80508681657134, -73.95116497612842 40.8050842745528, -73.95116096245026 40.8050807654105, -73.9511588587504 40.805076157568514, -73.9511591259134 40.8050706052075, -73.95133154260462 40.80482438365632, -73.95149606231814 40.804603552577504, -73.9515015950262 40.80459598801517, -73.95150652844166 40.804592813131386)), ((-73.94115219025203 40.818764911949124, -73.94131720253628 40.8185441150248, -73.9413386302353 40.81854479769872, -73.94134454267433 40.81855013254731, -73.94134670853597 40.818556546986336, -73.94134576321837 40.81856127771495, -73.94134345811077 40.81856491544939, -73.94134322906928 40.8185652260042, -73.94117362084866 40.818795917978825, -73.94100552932404 40.8190245447326, -73.94100187837256 40.819027359617955, -73.94099624966789 40.81902953323804, -73.94098696693578 40.819029968830385, -73.9409782942527 40.81902684327017, -73.9409734964264 40.819022379754045, -73.94097173781599 40.81901789257969, -73.94097204228116 40.81901273379053, -73.94097420561518 40.819008610623506, -73.94097468151335 40.81900795710661, -73.94115219025203 40.818764911949124)), ((-73.9385197695927 40.822376668497455, -73.93852668562484 40.822376182314734, -73.93853230342015 40.822377229885, -73.93853824780945 40.82238018307885, -73.93854208867828 40.82238382222983, -73.93854396537438 40.82238743602049, -73.93854445991138 40.822392323276496, -73.93835835804077 40.82264810711341, -73.93820128438212 40.822861421697525, -73.93819248796187 40.82286349442732, -73.93818478202967 40.822863102182865, -73.93817885797634 40.82286119715934, -73.93817467937833 40.822858706848436, -73.93817145687993 40.82285550025516, -73.93816928153092 40.82285182056242, -73.93816849247824 40.82284626047668, -73.93830834377611 40.822658290191185, -73.93851209854219 40.82237963694491, -73.9385197695927 40.822376668497455)), ((-73.94875695737883 40.80836404018199, -73.94876424292899 40.808363424777866, -73.94876480697319 40.8083635339888, -73.94877103160465 40.80836473801944, -73.94877553344591 40.808366951643166, -73.94877901538112 40.808370052704724, -73.94878169672371 40.808375501009095, -73.94878139446375 40.80838172421727, -73.94878138372744 40.808381815162804, -73.9487791705392 40.808385577361115, -73.948778797917 40.80838621024573, -73.9487785131846 40.80838659733341, -73.9486692171705 40.80853524887356, -73.94854669895261 40.80870101287462, -73.94852399143072 40.80873173763733, -73.94847045546318 40.80880416869515, -73.94843550545802 40.80885145623086, -73.94843164144338 40.80885352654855, -73.94843109960364 40.808853817167055, -73.94842471886236 40.8088551947762, -73.94841633817144 40.80885428512569, -73.94841443083791 40.80885330272938, -73.9484122901231 40.80885219956188, -73.94840932961009 40.808850674594424, -73.94840857891708 40.80884978006391, -73.94840596333238 40.80884666317018, -73.94840593017881 40.8088466235334, -73.94840581314203 40.808846245271845, -73.94840469834192 40.80884263557677, -73.94840510819886 40.80883831427006, -73.94874711173274 40.80836951443587, -73.94874861064947 40.80836835165864, -73.94875155630531 40.808366066603405, -73.94875617614363 40.8083643333971, -73.94875685187064 40.80836407975701, -73.94875695737883 40.80836404018199)), ((-73.95059388573551 40.805851058746136, -73.95059687125271 40.805850716935694, -73.95060231164311 40.80585125236209, -73.95060756023312 40.805853134851766, -73.9506123049179 40.80585693608753, -73.95061273722219 40.80585728206417, -73.95061442298348 40.80586133142741, -73.95061571125999 40.80586442609205, -73.95061546625378 40.805865606540586, -73.95061458376915 40.80586984030629, -73.95043851290332 40.80611112624484, -73.95041678081117 40.8061409080894, -73.9503005418459 40.8063002003304, -73.95027188625748 40.80633946861395, -73.95027173331879 40.806339548692314, -73.95026760871154 40.80634171531321, -73.95026636386004 40.80634236943852, -73.95026130962846 40.80634361895078, -73.95025599667927 40.80634376974311, -73.9502533009377 40.80634326430078, -73.95025249162266 40.80634311266782, -73.95024981839414 40.806342612638105, -73.95024574909439 40.80634054693957, -73.95024474568912 40.806340037724944, -73.95024381217824 40.80633956456039, -73.95024199924772 40.80633759979091, -73.95023898203773 40.80633433148037, -73.9502388671746 40.80633420806253, -73.95023739719446 40.8063300507274, -73.9502376161013 40.80632574734001, -73.95023881284585 40.80632286265974, -73.95023942546362 40.806321387907786, -73.95040429803679 40.80610283865127, -73.95057004148389 40.80587349074759, -73.95058275050609 40.805855904958655, -73.95058708185097 40.805852969389264, -73.95058726203406 40.805852904630626, -73.9505917594881 40.805851301869986, -73.95059388573551 40.805851058746136)), ((-73.93950517893926 40.821031862741066, -73.93950973085501 40.82103175436801, -73.9395166992144 40.82103352659814, -73.93952255899381 40.821036889423404, -73.93952592293614 40.821040951525525, -73.93952753225325 40.82104532067716, -73.9395272934308 40.82104985365034, -73.93939755272568 40.82122519140894, -73.93933589570798 40.82130826308783, -73.93932077902714 40.821328630663146, -73.93918234887909 40.82151513605605, -73.9391817827563 40.821515899378255, -73.9391747715802 40.82151942562542, -73.93917297907589 40.821519658808896, -73.93916913917981 40.82152015926013, -73.93916647769025 40.821520505447616, -73.93916124495126 40.82151973546405, -73.93915916420036 40.82151889060122, -73.9391588170141 40.82151874904012, -73.93915654430295 40.821517826633304, -73.93915187126471 40.82151424289387, -73.93915184996087 40.82151420686279, -73.9391517730299 40.82151407715074, -73.93914900943324 40.82150941832582, -73.93914854959336 40.82150413847366, -73.93914901424913 40.82150285551171, -73.93915013608081 40.82149975479462, -73.93938168861587 40.82119035277428, -73.93949651844417 40.82103467765113, -73.93949718781819 40.82103376940155, -73.93950410734156 40.821031889193755, -73.93950517893926 40.821031862741066)), ((-73.94223268091737 40.81729476976036, -73.9422385318016 40.81729450344298, -73.9422469894911 40.81729659413082, -73.94225292089057 40.81730052416833, -73.94225589952573 40.817304657139665, -73.94225693568924 40.81730851448657, -73.94225666440039 40.81731244501942, -73.94225504795818 40.81731618487381, -73.94191854659189 40.81777364833885, -73.94191406233683 40.81777662042077, -73.94190692021023 40.81777869697011, -73.94189959010961 40.817778853565194, -73.94189428466922 40.81777748213659, -73.9418893571737 40.81777494745639, -73.94188554498075 40.81777114183665, -73.94188327687863 40.81776640227939, -73.941883357368 40.81776110109541, -73.94207500633227 40.81750552578101, -73.94222252270934 40.81729905643856, -73.9422269259341 40.81729652644776, -73.94223268091737 40.81729476976036)), ((-73.94360165164065 40.81542234714964, -73.9436071240763 40.81542229039353, -73.94361361326607 40.81542387664114, -73.94361931400277 40.815427156337925, -73.94362052532883 40.81542857791473, -73.94362265432669 40.81543107603425, -73.94362418824029 40.81543506688697, -73.94362383301986 40.8154402382682, -73.94362139556539 40.81544507364636, -73.94362104550673 40.81544555073865, -73.94351325948375 40.81559215654293, -73.94342106790019 40.815717550583614, -73.94338983296996 40.81576003421121, -73.94337817770901 40.815775888042396, -73.943279260853 40.815910427713305, -73.943275891691 40.815912525114456, -73.94327305737292 40.81591428959469, -73.94326761601931 40.81591537831989, -73.94326733624547 40.81591543491354, -73.94326617091892 40.81591566756885, -73.9432602935152 40.81591521082617, -73.94325473042674 40.81591310993032, -73.94325017961116 40.815909566035664, -73.94324914875583 40.815907781643624, -73.94324829897998 40.815906311614135, -73.94324780426362 40.81590545589848, -73.94324775244696 40.81590506235577, -73.9432472436824 40.815901221485426, -73.94324862351198 40.81589685655493, -73.94336113495564 40.81574208491726, -73.94345548287316 40.81561229845715, -73.94357434363049 40.815452405889815, -73.94359313261342 40.81542713002493, -73.94359551297798 40.815423927220685, -73.94359829778229 40.81542321088677, -73.94360165164065 40.81542234714964)), ((-73.95244704447997 40.803308273386214, -73.95245263729825 40.8033075012642, -73.95245797919998 40.80330794741329, -73.95246313762676 40.80330976134423, -73.9524679441072 40.80331321493816, -73.9524707140592 40.80331751866361, -73.95247117570592 40.80332323161848, -73.95246871996746 40.803328640802846, -73.95246814109878 40.80332942850066, -73.95244887233596 40.80335567549758, -73.9522281274324 40.80365636163466, -73.95216604657233 40.80374092424319, -73.9521498190472 40.80376302835512, -73.95214000898089 40.803776391286284, -73.95210722561522 40.80382225718208, -73.95210472617852 40.80382574557627, -73.95209917696145 40.80382844026437, -73.9520920788271 40.80382954402768, -73.95208452618658 40.80382822616049, -73.95208034110425 40.80382580388024, -73.95207918653405 40.80382460123448, -73.95207847839784 40.8038238634316, -73.9520768868672 40.80382220585231, -73.95207527955701 40.803817775630755, -73.9520749803289 40.8038169524505, -73.95207581274191 40.80381296718905, -73.95207608624885 40.80381165797758, -73.95207637450288 40.80381126367896, -73.95214004655902 40.803724128154784, -73.95220028330282 40.8036414684498, -73.95228608108764 40.80352479755014, -73.95239747932723 40.80337000013359, -73.95243814930058 40.80331348540575, -73.95244230762815 40.80331020300209, -73.95244704447997 40.803308273386214)), ((-73.9482263011601 40.80909227000664, -73.94823378345794 40.80909174837621, -73.9482392154543 40.809092726054494, -73.94824368303536 40.80909483972806, -73.94824786509321 40.8090983499457, -73.94825027447148 40.80910298048749, -73.94825040514101 40.80910868880301, -73.9479087668197 40.80957398884158, -73.94790317675381 40.8095765608393, -73.94789510606589 40.80957770982939, -73.9478883513815 40.80957674414407, -73.94788205112876 40.80957360936431, -73.94787727534045 40.80956852479484, -73.94787582647105 40.80956474835192, -73.94787585918056 40.809560814991656, -73.94787879723908 40.80955471634687, -73.94787981992954 40.80955333904739, -73.94809009090915 40.809270356076766, -73.94822069139514 40.80909433322965, -73.9482263011601 40.80909227000664)), ((-73.94177382305092 40.81791660575107, -73.94178132624903 40.8179150642874, -73.94178871602976 40.81791580642569, -73.94179484640804 40.817918589353994, -73.94179880575476 40.81792219874263, -73.94180074384678 40.817926145697704, -73.94180102519014 40.81793108236291, -73.94179827861149 40.817936739698176, -73.9417974894283 40.81793782529893, -73.94171928771829 40.81804545999519, -73.94146071092477 40.81840135389059, -73.94145523961737 40.81840388961287, -73.94144934529774 40.81840490958418, -73.94144094803887 40.81840405795243, -73.94143412664121 40.8184012143213, -73.94142968182146 40.818397016649506, -73.94142718073495 40.81839169434405, -73.94142706600796 40.818387371001165, -73.94160654885152 40.81814533107822, -73.94176500746649 40.817923843994436, -73.94176539553749 40.817923302991886, -73.94176863825105 40.81791958737899, -73.94177382305092 40.81791660575107)), ((-73.93995776029305 40.82040877661465, -73.93996371168093 40.820407789167405, -73.93996914139296 40.82040824674501, -73.93997583158897 40.82041083555301, -73.9399802532122 40.820414514581444, -73.93998251574017 40.820418812927954, -73.9399824927149 40.820424628321724, -73.93974765454149 40.820746395483944, -73.93963661154753 40.820895881033714, -73.93962949688711 40.82089859320593, -73.93962351983397 40.82089907184198, -73.9396164765667 40.82089756522549, -73.93960908778821 40.82089276801398, -73.93960590642537 40.820887366071226, -73.93960608390817 40.82088119056032, -73.9397901048173 40.82063108388464, -73.93995226271394 40.82041128073382, -73.93995776029305 40.82040877661465)), ((-73.94412778227871 40.81470050453466, -73.9441297713836 40.81470021283696, -73.94413661220757 40.81470077896239, -73.94414276171551 40.81470312863748, -73.94414288490275 40.81470322324941, -73.94414737177253 40.81470665631742, -73.94414987782083 40.81471039729632, -73.94415093538913 40.81471425373768, -73.94415054311042 40.81471844176019, -73.9441487180444 40.81472240576538, -73.94383512646142 40.81514647135272, -73.94382441010707 40.81516096413614, -73.94380754943347 40.815183763711914, -73.94380722904562 40.81518419759538, -73.94380155111723 40.815186204737635, -73.94379596578237 40.815186638756245, -73.94378954136135 40.81518557303774, -73.94378433451719 40.815182737535146, -73.94378300763039 40.815182015589976, -73.94378211435182 40.81518152888597, -73.94377857897513 40.81517700216392, -73.94377767402113 40.81517069374011, -73.94393377350005 40.81495669185964, -73.94401407626752 40.814846602775965, -73.94411756152364 40.81470508491316, -73.94411890358975 40.81470324944977, -73.94412401151286 40.81470105921458, -73.94412696790668 40.81470062480664, -73.94412778227871 40.81470050453466)), ((-73.95433013157322 40.800732130842, -73.95433541691017 40.80073183397016, -73.95434060431062 40.80073265367823, -73.95434605490854 40.80073501784641, -73.95435098726408 40.80073968528607, -73.95435317439296 40.80074544574491, -73.95435268087968 40.80074970401013, -73.95435054278401 40.80075365815583, -73.95434991888584 40.80075450978096, -73.95401395188426 40.801213488529676, -73.95401368381755 40.80121385492587, -73.95401095081385 40.801217801623665, -73.9540063472379 40.80122092541935, -73.9540006780252 40.80122277818542, -73.95399512367779 40.80122303351161, -73.95398785843764 40.80122118278773, -73.95398144715669 40.801216537255, -73.95397904134664 40.80121172402729, -73.95397923806219 40.801206577753334, -73.95415882454543 40.8009592380733, -73.95431978914405 40.80073685076272, -73.95432487857359 40.80073365600733, -73.95433013157322 40.800732130842)), ((-73.94504650317909 40.81345416974121, -73.94504686112339 40.813454165409354, -73.94504746662308 40.81345435300139, -73.94505348606933 40.81345622170083, -73.9450578488747 40.813459143192496, -73.94506099472451 40.81346316181041, -73.94506243889818 40.813468228696905, -73.94506080979124 40.813474692591406, -73.9449089445463 40.81367941124003, -73.94488552891845 40.813710975989075, -73.94471617372457 40.81393927093999, -73.94471082153527 40.81394025621905, -73.94470819463523 40.8139407403274, -73.94470776800037 40.813940677087984, -73.94470123338336 40.813939700516414, -73.94470012887454 40.81393953519564, -73.9446969585297 40.813937892968866, -73.94469451205593 40.813936626596636, -73.94469089428867 40.81393283736944, -73.94468909072275 40.81392810979376, -73.94468961907953 40.81392271967019, -73.94491146876778 40.81361967705282, -73.94502634683458 40.81346021687774, -73.9450298479167 40.81345746752752, -73.94503038992029 40.81345704185066, -73.94503805118833 40.813454274672566, -73.94504047146141 40.81345424430892, -73.94504650317909 40.81345416974121)), ((-73.94549305562424 40.812831756177445, -73.94549838877585 40.81283073843498, -73.94550446270047 40.81283115733593, -73.94550977104558 40.81283293292441, -73.94551428748443 40.81283637315827, -73.94551716954136 40.812841211992684, -73.94551722089898 40.81284652315111, -73.94551550381804 40.8128504908321, -73.94551499241716 40.81285118667494, -73.94551284358256 40.81285411227628, -73.9451713855858 40.81331866651636, -73.94516361742397 40.81332172991613, -73.9451567026944 40.81332183648786, -73.94515073395594 40.813320291096446, -73.94514491553369 40.81331612262725, -73.9451418786359 40.81331077673016, -73.94514198035039 40.81330528644581, -73.94531487459855 40.813067521994356, -73.94548775307946 40.81283447587435, -73.94549305562424 40.812831756177445)), ((-73.9445815233435 40.814079822555264, -73.94458853590365 40.81407904249305, -73.94459580372838 40.81408058493566, -73.94460297282843 40.814085395235054, -73.9446060620867 40.81409190371283, -73.94460548415438 40.81409703807082, -73.94460341289455 40.8141006498708, -73.94460309607432 40.81410108195729, -73.94449160826329 40.81425320247343, -73.94426610600647 40.814560889053745, -73.94426167427363 40.81456380182099, -73.94425596934785 40.81456557394296, -73.94424920508116 40.81456560128927, -73.94424260956784 40.814563680040756, -73.94423701785135 40.81455906498966, -73.94423457195322 40.814552851276225, -73.9442354104512 40.8145479826932, -73.94443271509333 40.81427941639665, -73.94457425008328 40.81408338412791, -73.9445815233435 40.814079822555264)), ((-73.9371549539231 40.82424723095024, -73.93716117870264 40.824247119079054, -73.93716946718034 40.82424965488925, -73.93717464139299 40.82425360548221, -73.93717694682788 40.8242576049398, -73.93717700955258 40.82425771393396, -73.93717739441003 40.82426316664599, -73.9370191237276 40.8244819530287, -73.9369569305761 40.824566547640565, -73.93689638240133 40.82464890268442, -73.93683803471315 40.8247282656528, -73.93683613912646 40.82473084363444, -73.9368307308005 40.82473498115149, -73.93682349543103 40.82473692405961, -73.9368167256139 40.824736710534985, -73.93681136680824 40.824734886796215, -73.93680560542778 40.82473006868808, -73.9368043694249 40.82472714500143, -73.93680383244188 40.82472587680909, -73.93680326116082 40.82472452485185, -73.93680339840515 40.824723556894114, -73.93680392469915 40.824719853443376, -73.9368039569154 40.82471963283956, -73.93699548199533 40.824458894624996, -73.9371499892968 40.824248550172385, -73.9371549539231 40.82424723095024)), ((-73.95386855155233 40.80135890246219, -73.95387608241904 40.80135708646753, -73.95388392318958 40.80135780460081, -73.953890475204 40.801361158879445, -73.95389474926316 40.80136672927539, -73.9538951800129 40.80137272407014, -73.95389270460996 40.80137771004402, -73.9538922431967 40.80137834651233, -73.95374928279496 40.80157577229199, -73.95355691761303 40.80184141961209, -73.95355111305584 40.8018452371902, -73.9535458552632 40.80184668667596, -73.95354059831632 40.80184692409008, -73.95353545590201 40.801846058438876, -73.95352997689619 40.80184355824598, -73.95352484337621 40.80183844044145, -73.95352310096426 40.801832256012105, -73.95352392867592 40.801828055517866, -73.9536933069989 40.80159972650771, -73.95374164437892 40.80153450295673, -73.95386339895563 40.80136251770492, -73.95386855155233 40.80135890246219)), ((-73.93805751136982 40.82300446129239, -73.93806306120139 40.82300343590698, -73.93806911484229 40.82300367058585, -73.93807630215834 40.82300599232253, -73.93808272953173 40.823010968312964, -73.93808541640405 40.82301653662214, -73.93808536277537 40.823021939569536, -73.93793906464866 40.8232217476269, -73.93788225275534 40.82329669593527, -73.93787074247669 40.82331188110156, -73.93774259325228 40.82348093683529, -73.9377334596052 40.82348351542658, -73.93772607039381 40.823482818954915, -73.93772050856217 40.82348015228409, -73.93771653404455 40.82347616994527, -73.93771494538797 40.82347132171743, -73.93771540225353 40.82346700768803, -73.9379493925488 40.82315115970113, -73.93805751136982 40.82300446129239)), ((-73.94777372842421 40.8097153482467, -73.94777425353732 40.80971524132534, -73.94778131065591 40.80971594691039, -73.94778276078748 40.80971660132867, -73.94778691096182 40.8097184717415, -73.94779104301057 40.80972229712695, -73.94779291242862 40.80972630879129, -73.94779286588121 40.80973125700627, -73.94779110511072 40.809735294041594, -73.94779045731634 40.80973617713669, -73.94778651834669 40.80974154682296, -73.94760375421522 40.8099906748992, -73.94753941081743 40.81007838024652, -73.94745077938148 40.81019919480001, -73.94744605396657 40.810200845059626, -73.94744410025807 40.81020152674643, -73.94744387269085 40.810201543752115, -73.94744314258067 40.81020159654867, -73.9474377663165 40.81020198311277, -73.94743290906861 40.810200984047064, -73.94743162336212 40.810200718714455, -73.94742578396931 40.81019775611526, -73.94742542515415 40.810197384946534, -73.94742220884142 40.81019406154319, -73.94742196990265 40.810193470707624, -73.94742058357944 40.810190049084014, -73.94742024054868 40.810189200658606, -73.94742024208603 40.81018875491283, -73.94742025937991 40.810184866571, -73.9475991443386 40.80994495092424, -73.9477606777524 40.809720888500685, -73.94776597943675 40.80971732042857, -73.94776680119217 40.80971676699467, -73.94777139919576 40.80971582535595, -73.94777372842421 40.8097153482467)), ((-73.94595293478942 40.81220610978436, -73.9459582263422 40.81220516494138, -73.94596407251024 40.812205758407906, -73.94596991704303 40.8122083662865, -73.94597418411273 40.812212368296294, -73.94597575611496 40.81221624207298, -73.9459755330264 40.81222095337171, -73.9459729645478 40.81222548617341, -73.94597254570174 40.81222606049458, -73.94580643493553 40.812454240653686, -73.9457739497283 40.81249886304222, -73.94573473557071 40.812552728562956, -73.94563573700884 40.81268871918366, -73.9456329902254 40.812690938515296, -73.94563168087669 40.81269199778343, -73.9456251790892 40.812694492697325, -73.94561795694877 40.812695216892976, -73.94561217505105 40.81269424613081, -73.94560754472343 40.812692393424086, -73.94560317285837 40.8126889874809, -73.94559994717707 40.812684039526175, -73.94559939227639 40.81267850570717, -73.94560037430136 40.812676245021315, -73.94560165318686 40.81267330459988, -73.94560209967001 40.81267227644235, -73.94560335496827 40.812670642631666, -73.94574841386496 40.8124818595412, -73.94579095371914 40.81242649715105, -73.9459459711892 40.812209620261314, -73.94595072487382 40.81220694801215, -73.94595188098364 40.81220629749436, -73.94595293478942 40.81220610978436)), ((-73.95013440726693 40.80647949436086, -73.95014010898763 40.806479284309404, -73.95014618166044 40.80648063948422, -73.95015231061197 40.80648438730726, -73.95015592951853 40.80648969460842, -73.95015636880402 40.806494963614355, -73.9501546897707 40.806499353718486, -73.94996050493954 40.806763903549765, -73.9499240383166 40.80681358351711, -73.94981000310082 40.80696893922592, -73.94980647845229 40.80697065133969, -73.94980288267062 40.80697239764128, -73.94979850700975 40.80697266678593, -73.94979677073074 40.8069727731891, -73.94979598733093 40.8069728214749, -73.9497941141114 40.806972220927236, -73.94978797312532 40.80697025426587, -73.94978297302946 40.80696564874064, -73.94978276104011 40.80696545414064, -73.94978269244658 40.80696526410563, -73.94978171082937 40.80696257208856, -73.94978136667133 40.806961629116934, -73.94978171411366 40.80695821908114, -73.94978181321623 40.80695724118318, -73.94998517684002 40.80667849928655, -73.9501184455555 40.806491434367544, -73.95012123349663 40.80648752110737, -73.95012214224813 40.80648624369334, -73.95012755078972 40.80648189932758, -73.95013070993703 40.80648079218069, -73.95013440726693 40.80647949436086)), ((-73.94314932269397 40.81604467375158, -73.9431504642645 40.81604450322002, -73.94315120610347 40.816044674680214, -73.94315955475085 40.81604660856134, -73.94316488873102 40.816050515745864, -73.94316794700539 40.81605577345449, -73.94316781787836 40.816059857144865, -73.94316774354917 40.81606223081837, -73.9431646608481 40.81606753232578, -73.9430992378388 40.816156559212956, -73.9430542410274 40.81621744121273, -73.9430103940055 40.81627676860438, -73.94290164474704 40.816423911839365, -73.94289051976517 40.81643896353945, -73.9428211507872 40.81653282217689, -73.94281363207551 40.816534695083696, -73.9428067993257 40.816534182013335, -73.94280521757008 40.816533477940595, -73.94280442846903 40.81653312725588, -73.94280009907997 40.81653119984567, -73.94279614634529 40.816526825971955, -73.9427953979544 40.81652599804397, -73.94279501665308 40.816525577322714, -73.94279475323866 40.81652452451105, -73.94279390155552 40.816521139120425, -73.94279468017854 40.81651713229528, -73.94296679214722 40.816286436392616, -73.94309928652662 40.81609961450727, -73.94310699422188 40.81608874300825, -73.94313266872138 40.81605252867888, -73.9431355122555 40.81604969981914, -73.94313685632088 40.816048362343444, -73.94313711967769 40.816048099528174, -73.94314196471807 40.816045775933716, -73.94314355912394 40.816045537187726, -73.94314932269397 40.81604467375158)), ((-73.94640637920524 40.81158480881063, -73.94641441741581 40.81158458652197, -73.94642081339883 40.81158673628096, -73.94642616749915 40.81159047223231, -73.94642831631562 40.811594830738976, -73.94642839677809 40.81159499376644, -73.94642913707864 40.811599970260495, -73.94642908009699 40.8116000845972, -73.94642618708126 40.81160589956728, -73.94642595915307 40.811606358715174, -73.94639535354693 40.81164775657537, -73.94636856723085 40.811683990949426, -73.94631840064808 40.81175222352229, -73.94630210754971 40.81177438528609, -73.94625568901169 40.81183751915782, -73.94608705473114 40.81206688361315, -73.94608058396122 40.812069225482865, -73.94607743006554 40.81206929154517, -73.94607349391877 40.8120693734504, -73.94607225179793 40.812069399884344, -73.94606627777321 40.8120671773633, -73.94606554553451 40.812066905070516, -73.94606100107139 40.81206297497399, -73.94605904205193 40.81205842564415, -73.94605915444838 40.81205428340781, -73.9460591654561 40.81205386288059, -73.94624241316552 40.81180275105857, -73.94632860221665 40.81168397235166, -73.94639670451132 40.81159057109992, -73.94639870766741 40.81158889260309, -73.9463993552241 40.8115883499041, -73.94640102036949 40.811586954906836, -73.94640492568051 40.811585390756925, -73.94640637920524 40.81158480881063)), ((-73.94921511111939 40.80773831384892, -73.94922063060746 40.80773788494155, -73.94922576403043 40.807738631914546, -73.94923042971554 40.80774042235879, -73.9492348228429 40.80774373722623, -73.94923786844305 40.80774864808348, -73.94923820425613 40.80775431236505, -73.94889259263076 40.808223155324136, -73.94888721484264 40.80822574547412, -73.94888025764313 40.80822629529525, -73.94887171621804 40.808223358585074, -73.94886692934122 40.808217308716586, -73.94886701422752 40.80821171576032, -73.94904815885793 40.80795855877114, -73.94920408609964 40.807744177538495, -73.94920867997527 40.80774067482351, -73.94921511111939 40.80773831384892)), ((-73.94966927637103 40.807111333102526, -73.94967845355244 40.80710872206168, -73.94968521180051 40.80710937967369, -73.94969043407671 40.80711167822347, -73.94969506780943 40.80711650241385, -73.94969658502028 40.80712243645908, -73.94969550947025 40.80712642609772, -73.94935162852406 40.80759393129131, -73.94934440280838 40.807597019526995, -73.9493373249144 40.807597412636014, -73.9493316751747 40.80759615305754, -73.949327130893 40.8075936890981, -73.94932331920761 40.807589424464005, -73.94932164387339 40.80758417832541, -73.94932312228157 40.807578784090445, -73.94950613105033 40.8073336497158, -73.94966341415847 40.80711683258761, -73.94966416274943 40.80711580184389, -73.94966927637103 40.807111333102526)), ((-73.9468594640999 40.81096083675371, -73.94686765096091 40.81095988960136, -73.94687396113382 40.81096109467374, -73.94687917480704 40.810964034499726, -73.9468828254928 40.810968111834555, -73.94688413914002 40.810971994485534, -73.94688350333197 40.810977134233774, -73.94688111783888 40.81098122049394, -73.94688096478411 40.8109814275379, -73.94684190007493 40.811034423635704, -73.94653956737984 40.81144456860697, -73.94653223730289 40.81144705328287, -73.94652636708443 40.811446967714545, -73.94652051737039 40.81144496409541, -73.94651588500548 40.81144129872201, -73.94651374366556 40.81143648456848, -73.94651410076588 40.8114316175442, -73.94651635440206 40.8114279526636, -73.94651668662426 40.81142749626539, -73.94669414856797 40.81118347783985, -73.9468537516249 40.810963631066585, -73.9468594640999 40.81096083675371)), ((-73.95479122768948 40.80009842057894, -73.95479766134021 40.80009796925035, -73.95480391491382 40.800099200883935, -73.95480966570848 40.80010267996624, -73.95481358430105 40.80010819706044, -73.95481414211213 40.80011216307788, -73.95481282145253 40.800116499364655, -73.95480944255694 40.800120683560635, -73.95480929904036 40.800120878012216, -73.95447076038275 40.800580788243934, -73.9544705741646 40.80058104031018, -73.95446698909227 40.8005851379665, -73.95446086178134 40.800588091884904, -73.95445496478081 40.80058870009358, -73.9544480751567 40.80058697651729, -73.95444180303215 40.8005816268743, -73.9544406569912 40.80057490779682, -73.95460791600905 40.80034500969347, -73.95477984668851 40.8001058362288, -73.95478071374028 40.800104629899906, -73.95478501657769 40.80010097015773, -73.95479122768948 40.80009842057894)), ((-73.95341137905297 40.80199300491887, -73.95341872186873 40.80199247569135, -73.95342413423633 40.80199368904943, -73.95342924549388 40.80199675731359, -73.95343276312383 40.80200118018477, -73.95343365351859 40.80200563711404, -73.95343256137356 40.80201007163043, -73.95311288220584 40.802446760592574, -73.95308085363004 40.802434096451236, -73.95325616303955 40.80220001362812, -73.95340064952478 40.802000157748125, -73.95340156525407 40.80199889201673, -73.95340515583986 40.801995585034746, -73.95341137905297 40.80199300491887)), ((-73.95520118065457 40.79954556149267, -73.95520443357691 40.799545361044984, -73.95521114154337 40.79954748072552, -73.95521148274663 40.799547588918, -73.95521192444897 40.79954803123485, -73.95521419927624 40.799550307680526, -73.95521610108442 40.799552210274015, -73.95521621561315 40.799552827160596, -73.95521739161384 40.79955913831691, -73.95521441251277 40.79956448882705, -73.95521403415076 40.79956501096969, -73.95506171035528 40.799775178658805, -73.95503248139288 40.79981550782848, -73.95492958966214 40.79995747098106, -73.95492946275014 40.7999576447278, -73.95492736521064 40.799961293631284, -73.95492666093492 40.799961868774965, -73.95492340869541 40.799964529379125, -73.95492179428365 40.7999651942168, -73.95491855123578 40.79996653018997, -73.95491393073017 40.79996684715959, -73.95491148952942 40.79996701459811, -73.95490636993553 40.79996588607087, -73.95490622183328 40.79996585359493, -73.95490523725009 40.79996563708995, -73.95490019259998 40.79996233298546, -73.95489701406959 40.799957642842024, -73.95489664644558 40.799952803414996, -73.95489784678145 40.799951146965945, -73.95506495131968 40.79972073663388, -73.95519110639904 40.799548341920975, -73.955191468152 40.79954784858791, -73.95519602456517 40.79954587916595, -73.95520118065457 40.79954556149267)), ((-73.95297358199261 40.80259127174964, -73.95297458117048 40.802591004709065, -73.95297585972713 40.802591149310466, -73.9529796420753 40.80259157588878, -73.95298209609832 40.80259185334291, -73.9529876225373 40.80259436708833, -73.95299154089628 40.80259853079231, -73.952991985129 40.8026004319267, -73.95299301892203 40.80260484659395, -73.95299133107137 40.802608701842054, -73.95299040287321 40.80261082033753, -73.95298957846552 40.802611959132456, -73.95290635117337 40.80272682161909, -73.95282182707072 40.80284347460519, -73.95280064854983 40.80287270423407, -73.95278169533641 40.80289886136775, -73.95278126830218 40.802899450119114, -73.95276594536256 40.80289318447394, -73.95275393011279 40.802888272731686, -73.9527537168666 40.8028881852959, -73.95280450351375 40.80281753404652, -73.95287111411794 40.80272486844424, -73.95290957873935 40.80267056246727, -73.9529600585661 40.802599293279414, -73.95296155320982 40.802597181318866, -73.95296391861564 40.80259541280366, -73.95296715548794 40.80259299088174, -73.95297358199261 40.80259127174964)))",M096,6353,M096,M-10,M-10,M-10,M-10,"7 Ave., W. 110 St. To W. 152 St.",110,9,28,"10026, 10027, 10030, 10039",M,1.679,False,Adam Clayton Powell Jr. Malls,No,100004105,PARK,20100106000000.00000,19110525000000.00000,,DPR,False,Adam Clayton Powell Jr. Malls,Y,Adam Clayton Powell Jr. Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/M096/,No,"70, 71",30,13,{2468B9EF-4D12-4E2C-9D62-31AAAECF8B58} +"MULTIPOLYGON (((-73.84586790695418 40.58125567462951, -73.84587322306933 40.5812526397869, -73.84589268649339 40.581291103015566, -73.84601761679754 40.581509264271794, -73.8460173211215 40.58151046067355, -73.84601677989177 40.581511605416324, -73.84601600970616 40.58151267150648, -73.84601502598358 40.58151363104848, -73.84601385712682 40.58151445976616, -73.8460125303493 40.581515136983924, -73.84601107994287 40.58151564563779, -73.84600954255328 40.58151597226895, -73.84600795599079 40.58151611062435, -73.84600636160685 40.581516055356396, -73.84600479837422 40.58151580831823, -73.84543129479376 40.58141083570978, -73.84543038315736 40.581401568978826, -73.84552237497022 40.58138093739733, -73.84561247761951 40.581355923949296, -73.84570033061952 40.58132662811326, -73.84578558761795 40.581293167398265, -73.84586790695418 40.58125567462951)))",Q275,5902,Q275,Q-14,Q-14,Q-14,Q-14,"Beach Channel Dr., Cronston Ave., Beach 124 St.",414,32,100,11694,Q,0.157,False,Patricia A. Brackley Park,Yes,100000358,PARK,20090423000000.00000,,,DPR,False,Patricia A. Brackley Park,N,Patricia A. Brackley Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q275/,No,23,15,5,{F77142CF-2E23-4E2D-94FB-5A35768D3B5C} +"MULTIPOLYGON (((-73.84993650085696 40.823263390954516, -73.85196509628508 40.82298875630626, -73.85209206317609 40.8235383773197, -73.85125092021444 40.82365169989083, -73.85006700239974 40.823811191684925, -73.84993650085696 40.823263390954516)))",X151,5451,X151,X-09,X-09,X-09,X-09,Olmstead Ave. bet. Turnbull Ave. and Lafayetter Ave.,209,18,43,10473,X,2.618,False,P.O. Serrano Playground,Yes,100004199,PARK,20100106000000.00000,19461212000000.00000,800 OLMSTEAD AVENUE,DPR,True,P.O. Serrano Playground,Y,P.O. Serrano Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X151/,No,87,34,15,{7CE11873-7FF8-4AA4-83E9-D18E0B75CF2C} +"MULTIPOLYGON (((-73.88558315149852 40.65958903252623, -73.8851170700242 40.65896549372271, -73.88773061166144 40.65783781333095, -73.88868388669698 40.65912700827521, -73.88662466047869 40.66001140951972, -73.88613252924033 40.6593530414994, -73.88558315149852 40.65958903252623)))",B214,4843,B214,B-05,B-05,B-05,B-05,Vermont St. bet. Linden Blvd. and Stanley Ave.,305,42,75,11207,B,9.322,False,Linden Park (Gershwin Park - JHS 166),No,100004885,PARK,20100106000000.00000,19470424000000.00000,559 STANLEY AVENUE,DPR,True,Linden Park,Y,Linden Park,Large Park,Jointly Operated Playground,http://www.nycgovparks.org/parks/B214/,No,60,19,8,{7BF18C9A-8051-4B91-89A5-EACCADB36DD6} +"MULTIPOLYGON (((-73.92124814011387 40.84445570667363, -73.92091773241762 40.84433509822787, -73.92092497037355 40.8443241865141, -73.92123653276182 40.84443841648856, -73.92132520263361 40.8442997803796, -73.92134116153213 40.84430627661344, -73.92124814011387 40.84445570667363)))",X148A,5705,X148A,X-04,X-04,X-04,X-04,"Cross BX Exwy, Plimpton, Nelson Avs",204,16,44,10452,X,0.294,False,Strip,No,100004596,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148A/,No,77,29,15,{EA197DC9-515F-4E91-9A0C-F95EBAC69699} +"MULTIPOLYGON (((-73.89099225601258 40.82086741241816, -73.89040361732106 40.820866552774504, -73.89039327469322 40.8208667365506, -73.89038303974037 40.82086559849872, -73.89037319926646 40.82086317221003, -73.89036403527763 40.820859525490015, -73.890355807197 40.82085476304316, -73.890348748322 40.82084901836501, -73.89034305871071 40.820842454635965, -73.89033889926375 40.82083525931257, -73.89033638818329 40.82082763511926, -73.89033559741844 40.82081979914422, -73.89033654793857 40.82081197383021, -73.89033921567076 40.820804380676485, -73.89034352202577 40.82079723482696, -73.89034934575929 40.8207907405789, -73.89035652180581 40.82078507967554, -73.89072332775397 40.82054074487276, -73.89073738665898 40.82053248443018, -73.89075303445357 40.820526079614346, -73.89076985004942 40.8205217047221, -73.89078737926485 40.82051947548687, -73.89080515378423 40.82051945269858, -73.89082269353614 40.82052163770362, -73.89083952803378 40.8205259697234, -73.89085520347221 40.82053233486602, -73.89086929933366 40.820540559838605, -73.89088143547855 40.82055042456076, -73.89109109287779 40.82075165059169, -73.8910969879888 40.82076450985131, -73.89110001359873 40.82077793101212, -73.89110008614502 40.820791547493215, -73.89109720386519 40.820804986487296, -73.8910914455913 40.820817881566285, -73.89108296836915 40.82082987898291, -73.89107200506558 40.82084065117574, -73.89105885487535 40.820849903063746, -73.89104387619157 40.820857382845745, -73.89102748067407 40.820862884696304, -73.89101011545279 40.820866258654476, -73.89099225601258 40.82086741241816)))",X009,6156,X009,X-02,X-02,X-02,X-02,"Hunts Point Av, Bruckner Blvd, E 163 St",202,17,41,10459,X,0.42,False,Monsignor Raul Del Valle Square,Yes,100004978,PARK,20100106000000.00000,19150303000000.00000,,DPR,True,Monsignor Raul Del Valle Square,Y,Monsignor Raul Del Valle Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X009/,No,85,32,15,{15AB74CE-65CA-49F1-BE1D-5E0298B125E8} +"MULTIPOLYGON (((-73.91074780337563 40.68481610563132, -73.91069149763945 40.684784142316104, -73.91063087748361 40.68474972982569, -73.91056989686628 40.68471511260626, -73.91050962317519 40.68468089663298, -73.91055278397094 40.684636919355874, -73.91060705590101 40.6845816213242, -73.9106597664909 40.68452791416369, -73.91096119436146 40.6846990266878, -73.91090882194524 40.68475292605653, -73.91085489883044 40.684808422612605, -73.9108421267737 40.68480117168215, -73.91079924266248 40.68484530597079, -73.91074780337563 40.68481610563132)))",B454,5254,B454,B-04,B-04,B-04,B-04,Cooper St. between Bushwick Ave. and Broadway,304,37,83,11207,B,0.16,False,Cooper St Block Buster Bl Association,No,100003932,PARK,20100106000000.00000,20121120000000.00000,41 COOPER STREET,DPR,False,Cooper St Block Buster Association,N,Cooper St Block Buster Bl Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B454/,No,55,18,8,{32D43E3F-D8B3-4BFB-ACEE-53ACFA1E7D9A} +"MULTIPOLYGON (((-73.95709901414698 40.70886169396595, -73.9573842442627 40.70833933322808, -73.95742558196703 40.70835167742348, -73.95724530836273 40.708633575973636, -73.95758494595171 40.70875494014105, -73.957438642744 40.70898371773184, -73.95728244761312 40.708930316296154, -73.95709901414698 40.70886169396595)))",B223QA,4646,B223QA,B-01,B-01,B-01,B-01,"Broadway, Marcy Ave. and S. 5 St.",301,34,90,11211,B,0.104,False,Marcy Green South,Yes,100003770,PARK,20100106000000.00000,19520206000000.00000,153 MARCY AVENUE,DPR,Part,Marcy Green South,Y,Marcy Green South,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223QA/,No,50,18,7,{9EBA07E5-ACDC-4F39-A3BE-5A7FA9D0BD1A} +"MULTIPOLYGON (((-73.95090138982894 40.799963673453085, -73.95038728206615 40.800667186299734, -73.94987760164297 40.80045277486361, -73.95039171313637 40.799749264266154, -73.95090138982894 40.799963673453085)))",M198,6410,M198,M-10,M-10,M-10,M-10,"Lenox Ave, W. 113 St. To W. 114 St.",110,9,28,10026,M,1,False,"Martin Luther King, Jr. Playground",Yes,100004219,PLGD,20100106000000.00000,19520626000000.00000,62 LENOX AVENUE,DPR,False,"Martin Luther King, Jr. Playground",Y,"Martin Luther King, Jr. Playground",Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M198/,No,68,30,13,{174CAB58-4153-43D3-84BD-C839D3BEDC20} +"MULTIPOLYGON (((-73.97095460664923 40.786938374013246, -73.97108185755947 40.78699206056737, -73.97089786617407 40.78724434004599, -73.97077627588114 40.787193039253076, -73.9707706173003 40.78719065149041, -73.97095460664923 40.786938374013246)))",M307,5959,M307,M-07,M-07,M-07,M-07,"W. 87 St., Columbus Ave., Central Park W.",107,6,24,10024,M,0.095,False,W 87th Street Garden,No,100003807,PARK,20100106000000.00000,19980727000000.00000,,DPR,False,W 87th Street Garden,N,W 87th Street Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M307/,No,69,30,10,{E8D16596-5B75-42C0-9CCE-D28BEFC00FC9} +"MULTIPOLYGON (((-73.95730896586515 40.68609952084324, -73.95721983430914 40.6861097689075, -73.95716376580654 40.685834221448125, -73.95725289818583 40.6858239734274, -73.95730896586515 40.68609952084324)))",B544,5508,B544,B-03,B-03,B-03,B-03,Quincy St. bet. Classon Ave. and Franklin Ave.,303,35,79,11238,B,0.052,False,100 Quincy Street Community Garden,No,100008355,PARK,20130114000000.00000,20121128000000.00000,100 QUINCY STREET,DPR,False,100 Quincy Street Community Garden,,100 Quincy Street Community Garden,,Garden,,No,57,25,8,{4438E2D1-FB4A-422B-901D-5BFD8A72718C} +"MULTIPOLYGON (((-73.88483505705288 40.848326907613696, -73.8848512519415 40.84830792878714, -73.88531525729111 40.848534844225696, -73.88524730770453 40.848614473855555, -73.88521392460665 40.848653594964034, -73.88518277421869 40.84869010145329, -73.88511791262249 40.848766114098154, -73.88465462167312 40.8485383602315, -73.88467862837756 40.84851022672739, -73.88471790079603 40.84846420397879, -73.88471948476406 40.84846234694478, -73.88474672588568 40.8484304237832, -73.88475795979741 40.848417258096774, -73.88478401736828 40.84838672050256, -73.88479602363684 40.848372651489065, -73.88483505705288 40.848326907613696)))",X293,6593,X293,X-06,X-06,X-06,X-06,Prospect Av bet. E 181 St and E 182 St,206,15,48,10460,X,0.33,False,Garden Of Happiness,No,100004979,PARK,20100106000000.00000,19980812000000.00000,2156 - 2162 PROSPECT AVENUE,DPR,False,Garden Of Happiness,Y,Garden Of Happiness,Greenthumb,Garden,http://www.nycgovparks.org/parks/X293/,No,79,33,15,{5D417A9E-A4F6-4419-ADF7-D61732C15496} +"MULTIPOLYGON (((-73.93448055059585 40.69641092056596, -73.93460046424683 40.696395375678335, -73.93462103037167 40.696488918218876, -73.93448055059585 40.69641092056596)))",B006,5985,B006,B-03,B-03,B-03,B-03,"Broadway, Stuyvesant Ave., Vernon Ave.",303,36,81,11221,B,0.012,False,Beattie Square,Yes,100003773,PARK,20100106000000.00000,18841004000000.00000,,DPR,False,Beattie Square,Y,Beattie Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B006/,No,54,18,8,{201093B8-DC97-4CD4-8B18-64ECA4EB6FD0} +"MULTIPOLYGON (((-73.93731177923723 40.85735386335112, -73.9370338975344 40.85765747096299, -73.93693210999054 40.85777835757006, -73.93687972145808 40.85784904085146, -73.9367858202184 40.85798636469395, -73.93673846202256 40.85806627979341, -73.93671522921643 40.858110816124885, -73.93669221076973 40.85815066371432, -73.93665670944056 40.858220266561545, -73.93656920873805 40.858414276013896, -73.93649979218253 40.85856487369335, -73.93642598003635 40.858726438680975, -73.93637834326938 40.858834951247296, -73.93636091144631 40.858877669908544, -73.9363552099847 40.858901374877775, -73.93635112778665 40.858928466584246, -73.93634785271401 40.858959869383796, -73.93635147448308 40.858990044117, -73.93636943401202 40.859052821812476, -73.93571387258578 40.85885667555676, -73.93583097089576 40.858729794090955, -73.93598777256997 40.858517908418406, -73.93611236675756 40.85831563904419, -73.9365023694108 40.85760836855192, -73.93687600401793 40.85712472639618, -73.93731177923723 40.85735386335112)), ((-73.93959039471638 40.85519503719839, -73.9376115730155 40.85755905408832, -73.93749247004892 40.857675636485894, -73.93737729594089 40.857758232770614, -73.93727010193592 40.85782739345519, -73.93719229811983 40.857865687715396, -73.93712021910245 40.85792411731289, -73.93702342387066 40.85801434320834, -73.93697023682071 40.858079012615555, -73.93687478893683 40.85821375397343, -73.93679192471215 40.858388194868816, -73.93677129866246 40.858460254330765, -73.93673299874231 40.858579161124254, -73.93670799687068 40.85864790076576, -73.93667807031359 40.858708122659756, -73.93665250182488 40.85875152127272, -73.93661844051728 40.85880563555419, -73.93657614164889 40.85886020544768, -73.93653131324831 40.85891190226947, -73.93649382465615 40.85895175986262, -73.93652174284692 40.85887360094387, -73.93654894181316 40.85881577019534, -73.93662711232209 40.85864563215427, -73.93667813339842 40.85853722489584, -73.93670804576173 40.85847314258916, -73.936732534222 40.8584154057585, -73.93681152403836 40.85824827656936, -73.93686042816836 40.858156597378446, -73.93690069387901 40.85808287732905, -73.93694783040854 40.85800264146747, -73.93701685605286 40.85790620690418, -73.93716661584592 40.85772014273104, -73.93727332494029 40.857600429229926, -73.93739248818126 40.85746669904465, -73.93749698357833 40.8573530588411, -73.9376769337195 40.85715749305349, -73.9377788280494 40.85704550448498, -73.93799960133335 40.85680153359784, -73.93806020673654 40.85673481096441, -73.93819199684185 40.856589323600865, -73.93855792787684 40.856120142683196, -73.9388192483356 40.85577630121402, -73.93934676898574 40.85508684323905, -73.93959039471638 40.85519503719839)))",M091,5534,M091,M-12,M-12,M-12,M-12,"Henry Hudson Pkwy, Cabrini Blvd, at W186 St",112,10,34,"10033, 10040",M,3.567,False,Bennett Rest,No,100005037,PARK,20100106000000.00000,19111019000000.00000,,DPR,True,Bennett Rest,N,Bennett Rest,Sitting Area/Triangle/Mall,Nature Area,http://www.nycgovparks.org/parks/M091/,No,71,31,13,{3A41AAFD-AAB9-4EB7-BF19-1A8B09295B75} +"MULTIPOLYGON (((-73.98430020422195 40.68021747190524, -73.98463229422951 40.679727978222125, -73.98640308389719 40.68041596353049, -73.98607080446492 40.68090676980577, -73.98430020422195 40.68021747190524)))",B145,5083,B145,B-06,B-06,B-06,B-06,"Nevins St., 3 Ave., bet. De Graw St. and Douglas St.",306,33,78,11217,B,2.525,False,Thomas Greene Playground,Yes,100004507,PARK,20100106000000.00000,19350923000000.00000,225 NEVINS STREET,DPR,True,Thomas Greene Playground,Y,Thomas Greene Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B145/,No,52,25,7,{803EA01B-766F-48E0-939F-DC5F4A73BD07} +"MULTIPOLYGON (((-74.01637397804369 40.704621235101364, -74.0144673834678 40.704535898704776, -74.01445812025568 40.7045342357233, -74.0144508035498 40.70453248874914, -74.01444227023902 40.70452993056625, -74.01443593910362 40.704527643160525, -74.01442441977912 40.70452251439022, -74.014412418465 40.70451558375544, -74.0144041400067 40.7045095855836, -74.01439303609516 40.704499301329406, -74.01438470580342 40.704488875347195, -74.0143783029418 40.70447769719648, -74.01437444915906 40.7044677110044, -74.01437248076938 40.70445958683471, -74.01437149922512 40.704451352679406, -74.01451412010337 40.703617135930166, -74.01454824776361 40.703468306756776, -74.01455935048722 40.703387140432326, -74.01456463062154 40.703329178328204, -74.01456529209837 40.703269721958506, -74.01456326643167 40.70320518073862, -74.01455243713738 40.703113153411344, -74.01452754291162 40.70302919104017, -74.0144683224285 40.70291942521615, -74.01447020974807 40.70291400209709, -74.01444860714672 40.70287185905936, -74.01443111101717 40.702837528342656, -74.01442934128745 40.70283408500749, -74.01442541708421 40.70282635460587, -74.01442451745352 40.7028247473051, -74.0144232615635 40.70282269609666, -74.01442097112627 40.70281892504033, -74.01441890679217 40.702815611415645, -74.01441697856397 40.702812436452675, -74.01441526458375 40.70280961536393, -74.0144127930535 40.702805593987904, -74.01440946927153 40.702800184129295, -74.01440741676754 40.70279685339316, -74.01440395685675 40.702791193209194, -74.01439859122623 40.702782469722436, -74.01439412282576 40.70277519594724, -74.01439107129481 40.702770234508904, -74.01438856425473 40.70276614469783, -74.01438305302145 40.70275711955707, -74.0143773973919 40.70274791163025, -74.01436145547504 40.70272696411436, -74.01433090439815 40.70269229911904, -74.01415873003239 40.7025311999562, -74.01406519468598 40.702442939654475, -74.0140580387894 40.702433902992105, -74.01404193755772 40.70241414142467, -74.01403406465182 40.7023940519662, -74.01402890997973 40.70238093123687, -74.01402678984857 40.70235971543668, -74.01402959655712 40.70234293765883, -74.01403309041608 40.702324634330004, -74.01404566503862 40.70230282960384, -74.01404791947249 40.70229877072186, -74.01404819033887 40.7022982979201, -74.01404850023827 40.70229775667469, -74.01405128105473 40.70229290707905, -74.0140515755773 40.7022923919503, -74.01406619896244 40.70227322547132, -74.01408101864753 40.70225352766446, -74.01408345653105 40.70224969929034, -74.01408758465516 40.702242875607, -74.01409507796772 40.702230492651815, -74.01409767667364 40.70222619689208, -74.01410249252872 40.702209425169634, -74.01410668999426 40.70219480664652, -74.01410202617154 40.702191914773984, -74.01410610273277 40.702137153248536, -74.01409725731945 40.70209522199785, -74.01408510245817 40.70199216080398, -74.01403435753441 40.70145271444963, -74.01403381612168 40.70144952760392, -74.0140332362612 40.70144356628564, -74.0140329743306 40.70143588314976, -74.01403315056473 40.70142993434648, -74.01403368172407 40.70142376037193, -74.0140351576392 40.701414477714934, -74.0140368812837 40.701407248194926, -74.01404020167686 40.70139704048718, -74.01404340901352 40.701389375838815, -74.01405241005791 40.70137313580843, -74.01405864507637 40.70136438297154, -74.01406739416062 40.70135411606646, -74.0140766972385 40.70134498463847, -74.01408930367563 40.70133469024452, -74.01409578805055 40.701330120252976, -74.01410145381583 40.70132646528151, -74.01410693980931 40.701323194850396, -74.01411347763687 40.701319612712915, -74.01412177364924 40.70131551436602, -74.01413016322513 40.701311833844564, -74.01413859548359 40.7013085630502, -74.01414530159656 40.7013062461095, -74.01415469591768 40.70130339933685, -74.01416705183709 40.701300315364286, -74.01417392616203 40.70129890971931, -74.01419131044281 40.7012994767008, -74.01452402914256 40.70136975527416, -74.01453631942891 40.70137500190624, -74.0145473355929 40.7013812869883, -74.0145558446261 40.701388285591825, -74.0145592318606 40.7013973551196, -74.01455839961133 40.701406220764916, -74.01456000390166 40.70142162471912, -74.01456496717407 40.7014359134145, -74.01457216914679 40.701450217134976, -74.0145761959852 40.7014568362883, -74.01458114931428 40.70146350485224, -74.01458680547077 40.70147008237521, -74.01459022700638 40.70147364796877, -74.01459561898005 40.70147875769032, -74.01460358010479 40.7014853709406, -74.01461052447897 40.70149040482153, -74.01461738352481 40.70149481916062, -74.0146256057229 40.70149948366841, -74.01463387039318 40.701503575444605, -74.01464066996142 40.70150653996569, -74.01464661745361 40.70150886162926, -74.01465198624584 40.70151075472252, -74.01465504159974 40.70151175029974, -74.01465928144455 40.70151303659135, -74.01466620619854 40.7015149096745, -74.01467724284738 40.70151733874935, -74.01468617311596 40.70151882795746, -74.01469441699861 40.70151984088173, -74.01470658803798 40.70152071912741, -74.01471624216427 40.70152090069739, -74.01472616714717 40.701520601358546, -74.01473431365334 40.70152002488885, -74.01474620138035 40.70151856273612, -74.01475495231276 40.7015170334459, -74.0147654128446 40.70151465835505, -74.01477886189397 40.70151068086882, -74.01479097374668 40.70150611822014, -74.01480279313385 40.70150064248867, -74.01481377581659 40.7014944941813, -74.01482322261961 40.70148821999897, -74.01483426268743 40.701479420575104, -74.014948944075 40.701317114575836, -74.01477888566228 40.70125494718187, -74.01511203185996 40.70083434321734, -74.01514948479483 40.70080356059451, -74.01614271116439 40.70155982411104, -74.01702891290768 40.702417273677476, -74.01725259321475 40.70270244506363, -74.01728669073444 40.70275024271544, -74.01735197202886 40.70284774300957, -74.01742739308276 40.70297291986014, -74.0174525254867 40.70301719331471, -74.01750872970436 40.70312554245703, -74.01757017697125 40.703259988500605, -74.01761128869677 40.703367599671715, -74.01763715054942 40.70343528987859, -74.01768273097672 40.7035935604231, -74.01769625596147 40.70366966869146, -74.01769972986446 40.703708977293026, -74.01770063850404 40.703730801954144, -74.01770084557543 40.70374861584418, -74.01769853351301 40.70380237584566, -74.01769371556173 40.703843940602574, -74.01768510298623 40.70389064156008, -74.01767958669576 40.70391366038581, -74.01767343213335 40.703939344823695, -74.01760474113813 40.70410955024853, -74.01758747876995 40.70415236591159, -74.01746726015688 40.70413940604421, -74.01735232565683 40.70413813569666, -74.01724047921056 40.70415385922719, -74.01718255441477 40.70417083803015, -74.01711983052151 40.70418922231588, -74.01708016497192 40.704210573035425, -74.01707967397353 40.70421083695819, -74.0170285639887 40.70423834705588, -74.01701567334489 40.70424816633976, -74.01695933588675 40.70429108043028, -74.01693009820286 40.70432488633787, -74.01682023810721 40.704598596730925, -74.01681124950349 40.70462099196569, -74.01637966110292 40.70460546453426, -74.01637397804369 40.704621235101364), (-74.01716217406923 40.70329549509999, -74.01686791621435 40.70311870961258, -74.01651513990792 40.70316059134137, -74.01626993461798 40.70336267858049, -74.01656879457235 40.70382847424486, -74.01692776401742 40.703786116875484, -74.01719063445951 40.703599327103646, -74.01716217406923 40.70329549509999)), ((-74.01275575612995 40.70181084014643, -74.01270873614773 40.701649273702515, -74.012704393774 40.70165000539755, -74.01268514416073 40.70165325026404, -74.01265373688989 40.701545333672286, -74.01346508607283 40.70155601984259, -74.01327627263812 40.70169482867147, -74.0132645915062 40.70171207302008, -74.0132560923289 40.701730364296374, -74.01325093004651 40.70174936299024, -74.01324920161865 40.701768719692346, -74.01325203567441 40.70179341680515, -74.01326044268724 40.701817368552625, -74.0132741681202 40.70183985185174, -74.01329279888816 40.70186018776246, -74.01331577282771 40.70187776399934, -74.01346060723226 40.701970806950136, -74.01352677974788 40.702013315959675, -74.01373743841975 40.70214864334506, -74.01374893330645 40.7021580081963, -74.01375822288139 40.70216869526135, -74.0137650503167 40.70218040920365, -74.01376922622308 40.702192824060994, -74.0137706322022 40.70220559405121, -74.01376920076201 40.70221850215917, -74.0137649400796 40.70223104409719, -74.01375797195526 40.70224286324763, -74.01374849510559 40.70225362369543, -74.01373677806632 40.70226302013438, -74.0137231532776 40.70227078597265, -74.0137080088023 40.702276698736966, -74.01369177412974 40.702280592681404, -74.01367491070836 40.70228235518678, -74.01350055677776 40.70228927909303, -74.01314620712031 40.70230355720229, -74.01293869847443 40.70231191855467, -74.01292692040906 40.70231234762119, -74.01288567943025 40.70231384979669, -74.01288266798298 40.702313560168996, -74.01288057350435 40.702312979573264, -74.01287942439536 40.7023121224146, -74.01287860422998 40.702311254412976, -74.01287752340737 40.70230862323832, -74.01283902492243 40.702185694165905, -74.01278631410045 40.702017379059704, -74.01281448288282 40.70201263113003, -74.01280996815943 40.70199711491269, -74.01276874610278 40.70185547257761, -74.01275575612995 40.70181084014643)), ((-74.01367708620829 40.70202033119503, -74.01367505811953 40.702020362053396, -74.01364062529613 40.701996396314385, -74.01358425132959 40.701960181692634, -74.013584051334 40.70196005384357, -74.01354774443732 40.701936741168865, -74.0135218787459 40.701920125263804, -74.01350684875638 40.70191262306307, -74.01349514502871 40.701905817466645, -74.01348321506927 40.70189785833979, -74.01347232156195 40.70188951277076, -74.0134645864883 40.70188283187774, -74.01345779687195 40.70187634358321, -74.01344996088348 40.70186796973867, -74.01344267855953 40.70185910775147, -74.01343393181402 40.70184655563704, -74.01342906817308 40.701838273296325, -74.0134260165699 40.7018323834041, -74.01342392132176 40.70182792971668, -74.01342175495566 40.70182286368944, -74.01341838320681 40.7018136464429, -74.01341645321831 40.701807223316614, -74.0134149670474 40.70180129181802, -74.01341480239587 40.701800397628936, -74.01341298649541 40.701790556146115, -74.0134119052348 40.701779929331295, -74.0134116586906 40.70177191750575, -74.01341191262235 40.701763716514364, -74.01341313497022 40.70175221593453, -74.0134149504966 40.70174256313594, -74.01341585374415 40.70173881780172, -74.01341658325846 40.701736087364615, -74.01341767819396 40.701732351913634, -74.0134185485164 40.70172963046521, -74.01341968613701 40.70172633445906, -74.01342053524456 40.701724029049586, -74.01342239555336 40.70171936328053, -74.01342354394978 40.70171669763142, -74.01342463441956 40.70171429313745, -74.01342787991204 40.70170765058311, -74.01343277328151 40.70169909514909, -74.01343539806878 40.7016949380798, -74.0134381802344 40.70169081521151, -74.01344284804301 40.701684450748864, -74.01344587520153 40.701680634025834, -74.0134521319299 40.70167338327344, -74.01345788838823 40.70166734376768, -74.01346504447001 40.701660532359234, -74.013473431044 40.7016533137749, -74.01347941615431 40.70164870425422, -74.01349090849449 40.701640243498915, -74.01357624087142 40.70157746238226, -74.0136016578905 40.70155877646078, -74.01360409612322 40.701556649163464, -74.01360635692487 40.70155479474217, -74.01360833973439 40.7015532852498, -74.0136087431604 40.70155298983418, -74.01360914185493 40.70155270162326, -74.01361067630388 40.70155162893209, -74.01361304247573 40.701550077070266, -74.01361497801177 40.70154884494103, -74.01361893787872 40.70154663371578, -74.01362237722067 40.70154492503767, -74.01362566870547 40.70154345411207, -74.01362856149873 40.701542285805665, -74.01362980262627 40.701541818292995, -74.01363255702033 40.701540848115464, -74.01363419807073 40.70154031391751, -74.01363578351841 40.70153982745329, -74.01363729206548 40.70153939142676, -74.0136383427271 40.70153910223795, -74.01363969155317 40.70153874907748, -74.01364087592043 40.70153845537021, -74.01364286722608 40.701537994972625, -74.01364483487599 40.7015375796034, -74.01364949905471 40.70153675147989, -74.01365491817009 40.70153605564193, -74.01365745026551 40.701535826611455, -74.01365826432486 40.701535765280056, -74.01365900029235 40.70153571476404, -74.01366018943838 40.70153564528351, -74.01366223406562 40.70153555498964, -74.01366262453358 40.701535542336146, -74.0136641639265 40.70153550523241, -74.01366726994063 40.70153549765952, -74.01366982102692 40.701535556790375, -74.0136722549832 40.70153566996579, -74.01367550066999 40.7015359055143, -74.01367842216048 40.701536202336094, -74.013683268866 40.701536873541905, -74.01368744705758 40.70153763667923, -74.01369121349619 40.70153847730939, -74.01369480246886 40.70153941791742, -74.01369849323684 40.70154053501352, -74.01370279700556 40.70154204195815, -74.01370736234333 40.701543898270145, -74.01371301525852 40.70154660903816, -74.01371722217644 40.701548964276064, -74.0137176493803 40.70154921997052, -74.0137180055811 40.701549435150405, -74.01371830971267 40.701549618818625, -74.01371863159555 40.701549815091845, -74.01371875940202 40.70154989342115, -74.0137198149899 40.70155054436545, -74.01372108714179 40.70155134206733, -74.01372254745786 40.701552277525145, -74.01372441250341 40.7015535038, -74.0137275225072 40.70155562863726, -74.01373146211427 40.70155847558601, -74.01373183371014 40.70155875289934, -74.01373189288164 40.701558797917876, -74.01373209643106 40.70155895008012, -74.01373248696258 40.701559245401405, -74.01373276151828 40.70155945428741, -74.01373301003878 40.70155964426579, -74.01373341477222 40.70155995399359, -74.01373495323712 40.701561153291884, -74.01374015448143 40.70156544541139, -74.01374017696736 40.701565466120485, -74.01374045389576 40.7015657047231, -74.01374097343346 40.70156615761855, -74.01374158054801 40.70156669154964, -74.01374194268732 40.7015670138897, -74.01374269537013 40.701567689183726, -74.01374311786735 40.70156807185087, -74.01374360072211 40.701568513044066, -74.01374396641414 40.70156884979185, -74.01374466466247 40.701569499878055, -74.01374512740085 40.70156993477006, -74.01374539368304 40.7015701877821, -74.01374543628822 40.70157022830007, -74.01374560670867 40.701570389471364, -74.01374611915482 40.701570880189124, -74.01374723399502 40.701571965172846, -74.01374862814399 40.70157335539672, -74.01375082826532 40.70157563072751, -74.013752924259 40.701577895264556, -74.0137536686953 40.70157874525885, -74.01375562979314 40.701580980095066, -74.01375824778563 40.70158415318612, -74.01376011307347 40.7015865456233, -74.01376226363013 40.70158945492016, -74.01376393723237 40.70159184647971, -74.01376595292793 40.70159489357094, -74.01376641335999 40.701595618428, -74.01376745851444 40.701597308563805, -74.01376749284009 40.70159736439145, -74.01376751177852 40.70159739590709, -74.01376760410325 40.701597548983074, -74.0137676467144 40.70159761831739, -74.01376766683644 40.701597651633925, -74.01376781005837 40.70159789025247, -74.0137679106692 40.70159805953664, -74.0137680254834 40.701598250431466, -74.01376841490759 40.701598911360634, -74.01376883037412 40.7015996254169, -74.01376909078179 40.70160007924372, -74.01376941747627 40.70160065463174, -74.01376976074404 40.701601267839266, -74.0137700827073 40.70160185133251, -74.01377145935594 40.70160443833851, -74.01377165348609 40.70160481562979, -74.01377175410266 40.701605012829845, -74.01377208673074 40.70160567196477, -74.0137721033033 40.70160570618223, -74.01377214236658 40.70160578452209, -74.01377225008633 40.70160599973156, -74.01377236609272 40.701606233850775, -74.0137725211632 40.701606549911894, -74.01377267268275 40.7016068605704, -74.01377296506936 40.701607465679395, -74.01377403046479 40.7016097627578, -74.01377508760022 40.7016121696996, -74.01377532199803 40.70161272708844, -74.0137755220662 40.70161320973886, -74.01377574581292 40.70161375812385, -74.01377595417149 40.70161427769428, -74.01377600270929 40.70161439745655, -74.01377617673737 40.70161483778603, -74.01377638509892 40.70161537176467, -74.01377662424369 40.701615996691295, -74.01377682668918 40.70161653157113, -74.01377720790822 40.70161756711422, -74.0137775334889 40.70161847749278, -74.01377761162965 40.70161870261142, -74.0137776814824 40.701618902516714, -74.01377775133578 40.701619105123505, -74.01377785315577 40.70161939957872, -74.01377803667066 40.70161994076439, -74.01377882758533 40.70162239186314, -74.01377944922032 40.701624477374324, -74.01377949540023 40.701624638560396, -74.0137795261871 40.701624747518686, -74.01377954750063 40.7016248204576, -74.01377957118265 40.701624903301855, -74.01377959368197 40.701624988847776, -74.01377961381115 40.70162505638378, -74.01377963394084 40.70162512662129, -74.01377965051856 40.7016251860531, -74.01377967775369 40.70162528510615, -74.01377976893153 40.70162561378207, -74.01378041430968 40.70162807750537, -74.01378054694509 40.701628618697185, -74.01378055641884 40.70162865651752, -74.01378057773591 40.701628746566165, -74.0137807032677 40.70162926794755, -74.01378077669374 40.70162958131688, -74.01378102303276 40.70163066460322, -74.01378134281795 40.70163215851419, -74.01378221205894 40.701647178048184, -74.01378293018054 40.70165809847009, -74.01378349043502 40.70166662174818, -74.01378427027765 40.701678469689895, -74.01378482815714 40.70168695064416, -74.01378568040758 40.70169990710733, -74.01378644007585 40.70171146508656, -74.01378684127322 40.701717557001494, -74.01378770420844 40.701730681859054, -74.01378893035887 40.701749323208915, -74.01379000933562 40.70176578173551, -74.0137909090653 40.70177945049773, -74.01379290675796 40.70180983082795, -74.01379722500222 40.70187546952208, -74.01380009869501 40.701919161113345, -74.0138031540008 40.70196561365189, -74.01380342226199 40.70196970104309, -74.01380349348011 40.70197077804677, -74.01380378534168 40.7019745529575, -74.01380383643814 40.701975599346206, -74.01380385790378 40.70197640620222, -74.01380386397439 40.701977151825346, -74.01380386399434 40.70197724818012, -74.01380386171812 40.70197768402813, -74.01380386054173 40.7019777173472, -74.01380385937993 40.701977820906194, -74.01380385704702 40.701977982998606, -74.01380385001127 40.70197829097453, -74.01380381942384 40.701979146464495, -74.01380378878552 40.70197975611468, -74.01380376637718 40.70198011091905, -74.01380374986014 40.70198034505411, -74.01380373806006 40.701980501744586, -74.0138036695976 40.70198130410886, -74.01380351488176 40.70198270532391, -74.013803469989 40.701983047523754, -74.01380346408264 40.70198309525161, -74.01380345935543 40.70198312316807, -74.0138034522671 40.70198317719964, -74.01380344399702 40.7019832384354, -74.01380341918598 40.70198341854076, -74.01380340973247 40.701983478876194, -74.01380332938248 40.70198401559091, -74.01380325493176 40.70198447035831, -74.01380268755567 40.70198729533212, -74.01380248420931 40.70198813103149, -74.0138023872524 40.70198846783456, -74.01380194268239 40.701990075301545, -74.0138017818686 40.70199059941874, -74.01379773829517 40.70200009670165, -74.0137916025909 40.70200892065229, -74.01378355692131 40.70201680649794, -74.0137738449872 40.70202351737441, -74.01376275664401 40.70202885243255, -74.01375062553645 40.702032651340964, -74.01373781490013 40.70203479969097, -74.01372470927998 40.70203523350014, -74.01371170151444 40.7020339401144, -74.01369918208572 40.70203095730881, -74.0136875272875 40.70202637508998, -74.01367708620829 40.70202033119503)), ((-74.01387352434055 40.701169573369846, -74.01388031025958 40.701169821092996, -74.01388700283725 40.70117071359362, -74.01393372868385 40.70118105122691, -74.01397899037995 40.70119464887239, -74.01402239507158 40.701211389513006, -74.01402915918868 40.70121484395312, -74.01403516618828 40.70121903150188, -74.01404027761174 40.70122385852311, -74.01404437984478 40.70122921426773, -74.01404737820295 40.70123497897935, -74.01404920521342 40.701241020291086, -74.01404981943395 40.701247202230675, -74.01404940873603 40.701252275765135, -74.01404780435868 40.70125834090895, -74.01404502497158 40.70126415495328, -74.01404113089194 40.70126958641597, -74.01403621201973 40.70127451191578, -74.0140062788925 40.70130487992457, -74.01398321395673 40.70133854116391, -74.0139676275848 40.701374603156545, -74.01396688723369 40.70137631151755, -74.013965790703 40.70137790555674, -74.01396436638122 40.70137934114559, -74.01396265330757 40.70138058135836, -74.01396069643788 40.701381591069605, -74.01395855019595 40.7013823450584, -74.01395627018951 40.70138282080517, -74.013953919128 40.7013830074962, -74.01395155972216 40.70138289972077, -74.01394925468439 40.70138250017286, -74.01394706672859 40.70138181875047, -74.01394505383772 40.701380875257854, -74.01394327162922 40.70137969400207, -74.01394176625631 40.70137830739608, -74.0139405779567 40.70137675145537, -74.01392392774302 40.701350135238386, -74.01386444122708 40.70126918729586, -74.0138302703874 40.701234624355074, -74.01382596226794 40.70122917317328, -74.0138228077154 40.701223281502465, -74.01382088485241 40.70121708981316, -74.01382023748944 40.70121074758518, -74.01382104180638 40.701203664962065, -74.01382343643873 40.70119679286773, -74.01382734688482 40.70119033752832, -74.0138326595931 40.70118448986581, -74.01383921486246 40.70117942459855, -74.01384681630682 40.701175293035966, -74.01385523913709 40.70117221947555, -74.01386423134232 40.70117029309817, -74.01387352434055 40.701169573369846)))",M005,6396,M005,M-01,M-01,M-01,M-01,"Battery Pl, State St and Whitehall St",101,1,1,"10004, 10280",M,21.88,False,Battery Park,No,100003738,PARK,20100106000000.00000,18700101000000.00000,,DPR,True,The Battery,Y,The Battery,Flagship Park,Neighborhood Park,http://www.nycgovparks.org/parks/M005/,Yes,65,26,10,{A01DFF9F-D8F2-485C-AB9F-146111A7815D} +"MULTIPOLYGON (((-73.95241848162225 40.718286181728594, -73.95241931483592 40.71828618117246, -73.95242014803354 40.718286203129026, -73.95242097766508 40.71828624669636, -73.95242180728123 40.71828631187595, -73.95242263214713 40.71828639956631, -73.95242345344762 40.718286507966916, -73.95242426881437 40.7182866388778, -73.9524250758815 40.71828679049702, -73.95242566164447 40.718286916810484, -73.9524258781991 40.71828696372648, -73.9524266710335 40.71828715766378, -73.95242745438487 40.71828737230885, -73.95242822706959 40.71828760766123, -73.95242899027116 40.71828786372148, -73.95242940315484 40.71828810522877, -73.95251513045174 40.71833818646516, -73.95266227486594 40.71842414851506, -73.95267516778101 40.71843168027844, -73.95267661693103 40.71843265432547, -73.95267802107956 40.71843366617542, -73.95267937786146 40.718434713125745, -73.95268068609185 40.71843579697705, -73.95268194459047 40.71843691322621, -73.95268315098953 40.71843806277287, -73.95268430410681 40.71843924381544, -73.95268540275995 40.71844045455246, -73.95268644576674 40.718441693182385, -73.95268743076142 40.71844295790328, -73.95268835774328 40.718444249615615, -73.95268922671558 40.71844556381685, -73.95269003294402 40.71844690050505, -73.95269077998064 40.718448257880674, -73.95269146309309 40.718449633240205, -73.95269160961861 40.71844996288709, -73.95269208346492 40.71845102658416, -73.95269263991455 40.71845243521047, -73.95269313125907 40.718453858218254, -73.95269355750033 40.71845529290591, -73.95269391863967 40.7184567374724, -73.9526942134935 40.718458191917264, -73.95269444206438 40.71845965263843, -73.9526946031694 40.718461118734986, -73.95269469681051 40.71846258750532, -73.95269472417183 40.718464058049484, -73.95269468525406 40.71846552946689, -73.9526945776926 40.71846699815458, -73.95269444433922 40.718468120135256, -73.95269440385519 40.71846846321294, -73.95269416374316 40.71846992284107, -73.95269385617414 40.718471375237385, -73.95269348233298 40.71847281860133, -73.95269304458814 40.71847425113294, -73.95269254057368 40.71847567103018, -73.95269197265742 40.718477077393466, -73.95269133965766 40.71847846752085, -73.95269064512631 40.71847983961276, -73.95268988669632 40.71848119366821, -73.9526890691044 40.71848252608709, -73.95268818998412 40.718483835967916, -73.95267003192183 40.71850066173858, -73.9526390061526 40.71852941217059, -73.95257485708987 40.7185888554458, -73.95251953116997 40.71864012299138, -73.95251859910282 40.718640986196114, -73.95251717714767 40.7186417078187, -73.95251710255914 40.718641742907835, -73.95251572326367 40.718642391606686, -73.95251423863435 40.71864303756054, -73.9525127268116 40.71864364388072, -73.95251118897842 40.71864421146822, -73.95250962513667 40.718644737621524, -73.95250804001985 40.718645223243065, -73.95250643244518 40.71864566743188, -73.95250543572226 40.71864591376044, -73.95250480714739 40.71864606928936, -73.95250316412722 40.71864642791502, -73.95250150575106 40.718646744210396, -73.95249983438669 40.71864701727588, -73.95249815121825 40.7186472462115, -73.95249645861222 40.7186474319187, -73.95249476012054 40.71864757259793, -73.95249305455903 40.718647669149235, -73.95249134666183 40.7186477215746, -73.95249009919873 40.71864772646288, -73.95248963642968 40.71864772897341, -73.95248792859603 40.71864769224822, -73.95248622197809 40.71864761049801, -73.95248452130866 40.71864748552578, -73.95248282540558 40.71864731552997, -73.95248113900227 40.71864710141307, -73.95247946446531 40.718646844076524, -73.9524778006118 40.71864654261942, -73.95247615217518 40.71864619794416, -73.95247452033846 40.718645810951735, -73.95247290628514 40.71864538164268, -73.95247131238231 40.71864491001792, -73.95246974217937 40.71864439788002, -73.95246819449278 40.71864384522841, -73.9524678395274 40.718643706403334, -73.95246667287311 40.7186432520646, -73.95246517850342 40.71864261928961, -73.95246371493288 40.718641948705866, -73.95246228097808 40.718641240312905, -73.9524608801896 40.71864049411222, -73.95245951374842 40.718639713706295, -73.95245818284006 40.71863889639412, -73.952456889829 40.718638045778725, -73.95245563589886 40.71863716186058, -73.9524549001293 40.718636605041546, -73.95245442223309 40.71863624464017, -73.95245325119625 40.71863529772055, -73.95245212278837 40.71863432110166, -73.95245103937657 40.718633314784526, -73.95245000214302 40.71863228057065, -73.9524490110858 40.7186312211615, -73.95244806857274 40.71863013565767, -73.95244717578541 40.71862902676109, -73.95244637292652 40.71862794761849, -73.95244633272378 40.71862789447178, -73.95244554175243 40.71862674239277, -73.95244501921754 40.71862591100618, -73.95244480287255 40.71862556872301, -73.95244411726524 40.71862437706503, -73.95244199913061 40.718610525445484, -73.95242166013469 40.718477518014275, -73.95240724677372 40.71838325386973, -73.95239740659672 40.71831890385571, -73.95239607423308 40.718310191770534, -73.95239582730449 40.718309587426155, -73.95239560878598 40.71830897588947, -73.95239541749284 40.71830835896098, -73.9523952546085 40.71830773664118, -73.95239512013116 40.718307111631596, -73.95239501406135 40.71830648303173, -73.95239493639848 40.718305851742066, -73.95239488832546 40.71830521866361, -73.95239486984094 40.718304585597394, -73.95239487857856 40.718303951641936, -73.95239491690407 40.718303318599226, -73.95239498363395 40.718302686468746, -73.95239507876687 40.71830205705156, -73.95239520348636 40.71830143034813, -73.95239528895222 40.718301079184535, -73.95239535660768 40.71830080815899, -73.95239553813207 40.71830018868311, -73.95239574568981 40.718299575521584, -73.95239598283226 40.718298967775354, -73.95239624719102 40.718298367244465, -73.95239653876673 40.718297773028375, -73.95239685755742 40.71829718782864, -73.9523972023803 40.71829661074428, -73.95239757323391 40.71829604357626, -73.95239797011908 40.71829548542412, -73.95239839066666 40.718294938988414, -73.9523988372438 40.718294404270075, -73.95239930866698 40.71829388126865, -73.9523998025684 40.71829337088365, -73.9524003189474 40.71829287401561, -73.95240085780411 40.7182923906645, -73.95240141913715 40.718291922631344, -73.95240200058005 40.71829146901466, -73.95240260331582 40.71829103071545, -73.95240322497597 40.71829060953372, -73.95240386556185 40.71829020366853, -73.95240452388799 40.71828981582086, -73.95240519995438 40.718289445990735, -73.9524058925781 40.718289093277086, -73.95240660057442 40.71828875948055, -73.95240732394385 40.71828844370055, -73.9524080591339 40.71828814863714, -73.95240880969712 40.71828787159033, -73.95240957208095 40.71828761526012, -73.95241034391837 40.71828737964552, -73.95241112757633 40.71828716474753, -73.95241192068852 40.718286969664675, -73.95241272207069 40.71828679529699, -73.95241352935447 40.718286643444436, -73.95241434490895 40.71828651140657, -73.95241516518085 40.71828640278388, -73.95241599017275 40.71828631397437, -73.95241681869857 40.71828624857959, -73.95241764957665 40.71828620389749, -73.95241848162225 40.718286181728594)))",B196,5788,B196,B-01,B-01,B-01,B-01,"Union Ave., N. 11 St. and Roebling St.",301,33,94,11211,B,0.036,False,Pvt. Sonsire Triangle,Yes,100004090,PARK,20100106000000.00000,19380606000000.00000,,DPR,False,Pvt. Sonsire Triangle,Y,Pvt. Sonsire Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B196/,No,50,26,12,{EC6F815B-499D-4029-A35E-8B32F325AB17} +"MULTIPOLYGON (((-73.91170043126046 40.63574338163484, -73.91129719456812 40.63538255912953, -73.91121839091528 40.63538230469937, -73.91093086956714 40.63512646088691, -73.91093153960209 40.6350982679423, -73.91119381518814 40.63493141183472, -73.91231389522817 40.63595319663145, -73.91175518222467 40.63630515684547, -73.91136319908823 40.63595480096405, -73.91170043126046 40.63574338163484)))",B335,5337,B335,B-18,B-18,B-18,B-18,Flatlands Ave. between E. 81 St. and E. 82 St.,318,46,69,11236,B,1.416,False,Bildersee Playground (JHS 68),Yes,100004649,PARK,20100106000000.00000,19601103000000.00000,956 AVENUE J,DPR/DOE,False,Bildersee Playground,Y,Bildersee Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B335/,No,59,19,8,{A6F0BF34-DEE8-40E7-A93B-69BBA7BAC307} +"MULTIPOLYGON (((-73.96653496005578 40.70484661344984, -73.96720924583167 40.70440730381495, -73.9673048452649 40.704487251416694, -73.96749095216687 40.70491593504431, -73.96679726184725 40.70535458963583, -73.96669373886107 40.70508647924227, -73.96668457417572 40.7050627445084, -73.96667884728416 40.70504791412677, -73.96667027283928 40.705029392623985, -73.96665857543096 40.705006587382925, -73.96664636854129 40.70498511745161, -73.9666338343863 40.70496500809712, -73.96662110670371 40.70494620982991, -73.96660621314719 40.70492591608369, -73.96659384245633 40.704910239990575, -73.96657915928733 40.70489281893377, -73.96656294755698 40.70487488143792, -73.96654845844775 40.70485985399326, -73.96653496005578 40.70484661344984)))",B382B,4886,B382B,B-01,B-01,B-01,B-01,Clymer St. to Morton St. between Kent Ave. and Wythe Ave.,301,33,90,11211,B,1.085,False,Jacob's Ladder Playground,Yes,100003865,PARK,20100106000000.00000,20120620000000.00000,557 KENT AVENUE,DPR,False,Jacob's Ladder Playground,Y,Jacob's Ladder Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B382B/,No,50,26,7,{F2EE3F4D-3C91-4810-94D7-4A7BB798C7CD} +"MULTIPOLYGON (((-73.93845318769564 40.70917933603872, -73.93835784849328 40.70862160109723, -73.93903128234051 40.70855518593483, -73.93913893719038 40.708544568242424, -73.9391798202197 40.70878320553149, -73.93926799907365 40.70877301687616, -73.93928855330603 40.70891828558929, -73.9390793765725 40.708932255471815, -73.93910467818046 40.70911765440867, -73.93904062343358 40.70912371876774, -73.9389354829203 40.70913367402491, -73.93845318769564 40.70917933603872)))",B311,6650,B311,B-01,B-01,B-01,B-01,Scholes St bet. Bushwick Av and Waterbury St,301,34,90,11206,B,1.004,False,Ten Eyck Playground (PS 196),Yes,100005162,PARK,20100106000000.00000,19590520000000.00000,242 SCHOLES STREET,DPR/DOE,False,Ten Eyck Playground,Y,Ten Eyck Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B311/,No,53,18,7,{0A181E3A-9DD7-497A-B687-F98F969A8549} +"MULTIPOLYGON (((-73.83650402909664 40.88875869583783, -73.83542232645124 40.88587332842817, -73.83592957271708 40.88490793100431, -73.83593201896728 40.884902777388994, -73.83593506275805 40.88489781012347, -73.83593868025918 40.88489306969573, -73.83594284171244 40.884888594784385, -73.83594751499315 40.884884421363246, -73.83595266205542 40.88488058089524, -73.83595824247585 40.88487710664092, -73.8359642087298 40.88487402464677, -73.83597051566574 40.88487136096273, -73.83597711102641 40.88486913622573, -73.83598394255904 40.88486736927163, -73.83599095683998 40.884866072631375, -73.83599809332424 40.88486525972618, -73.83600529861033 40.88486493408211, -73.83601251336437 40.88486509921682, -73.83601967944772 40.88486575504768, -73.83602673873963 40.88486689428823, -73.83767152967509 40.885534114943596, -73.83773366418606 40.885518571650685, -73.83852750049031 40.88531998923298, -73.83868117507936 40.88567381564431, -73.83880465672289 40.88571338898952, -73.83892441579964 40.88575908032168, -73.83903992362822 40.88581068990724, -73.83915067650196 40.885867991934965, -73.83925618619891 40.885930733602, -73.8393559894623 40.885998639628994, -73.83942855044772 40.886058579782684, -73.83949647672425 40.886121571500134, -73.83955954453187 40.886187408266856, -73.83961755030253 40.88625587369086, -73.83967030116145 40.88632674419089, -73.8397487270189 40.886430831471316, -73.83983199472695 40.886532730027064, -73.83991999782364 40.8866323100299, -73.84001262509196 40.88672944434626, -73.84010247990365 40.886793925780076, -73.84019849876917 40.88685306858396, -73.84030013431084 40.88690653430268, -73.84040680346804 40.88695401775069, -73.84051789580343 40.88699524702414, -73.84065832935588 40.887031472169866, -73.84079575830769 40.88707381541234, -73.84092972146324 40.8871221347501, -73.84105976835329 40.887176266586486, -73.84108662197497 40.887198266442425, -73.8411025323702 40.88721417744195, -73.84112070070773 40.88722862915614, -73.84114600338609 40.88724424150885, -73.84117392561618 40.8872570272295, -73.84120392217983 40.88726673613115, -73.8412354073664 40.88727318010526, -73.8412677692139 40.8872762322408, -73.84127138072637 40.88727637948429, -73.84127085763063 40.887283760958404, -73.84169145360383 40.8883091747735, -73.84119272193634 40.88838547141046, -73.8411277464306 40.88839541162069, -73.84085241786855 40.888437530814265, -73.84075179997798 40.88845292273935, -73.84000108529007 40.888571589008905, -73.83984151611578 40.88858478046516, -73.8397344826402 40.88858807446507, -73.83961811116707 40.88858875928736, -73.83935028208683 40.888572076317516, -73.83922405725191 40.888556106929975, -73.83890037894405 40.88851288700302, -73.83885140779888 40.88850996950363, -73.83866358960186 40.88849878332873, -73.83862315345353 40.88849637473062, -73.83857364489101 40.8884934257454, -73.83839808440685 40.88848991942446, -73.83824558817729 40.88848900794604, -73.83813027415806 40.88849405290798, -73.83808382433908 40.88849608499364, -73.83798056242614 40.888500601917016, -73.83789939245976 40.88850790436478, -73.83787027363995 40.88851094403387, -73.83781071618144 40.88851716287202, -73.83771281784679 40.88852738357294, -73.83761547493994 40.88853754644061, -73.8375907238 40.88854013113431, -73.837530230963 40.88854890229276, -73.83740999446096 40.88857012495965, -73.83728069683492 40.888592947500264, -73.83720728133663 40.888605906446195, -73.8370951293805 40.88862930135566, -73.83698708701871 40.888652952295466, -73.83683985580164 40.888685182515715, -73.83669794435836 40.888716247640424, -73.83657951593938 40.888742171641894, -73.83651042582522 40.88875729563613, -73.83650402909664 40.88875869583783)), ((-73.8350800473513 40.88665265297048, -73.8354237607109 40.886576551712025, -73.835831209626 40.88764965820249, -73.83548748999793 40.88772576065743, -73.83533511988935 40.887324478096055, -73.83528474367948 40.887191793262815, -73.83523535789759 40.88706172033049, -73.8350800473513 40.88665265297048)))",X046,5591,X046,X-12,X-12,X-12,X-12,E. 233 St. bet. Seton Ave. and Baychester Ave.,212,12,47,10466,X,35.771,False,Seton Falls Park,No,100004085,PARK,20100106000000.00000,19300611000000.00000,,DPR,Part,Seton Falls Park,Y,Seton Falls Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/X046/,No,83,36,16,{5AB06C46-F28C-4076-8B66-FA24187B563D} +"MULTIPOLYGON (((-74.11942364990158 40.6084042343782, -74.11948552773919 40.608400987622844, -74.11953469959963 40.60840286001081, -74.11958353114628 40.608408680621785, -74.11962953305984 40.608417953157854, -74.11966958931345 40.60842926614609, -74.11970573529351 40.6084423392115, -74.12032053968723 40.608681821547414, -74.1202140770884 40.60883312884512, -74.11904997519072 40.608962710834966, -74.11902101201674 40.60880117091876, -74.11901803955749 40.60877292371113, -74.11901869458981 40.60873472107497, -74.11902483987876 40.608696161549645, -74.11903987570902 40.60864976097369, -74.11906531449704 40.60860147923462, -74.11909359205143 40.60856347311031, -74.1191238697423 40.6085319351589, -74.11915607320027 40.60850491582516, -74.1191988217984 40.60847625019813, -74.1192321743835 40.608458208759515, -74.11927286372496 40.60844030738356, -74.11931678983298 40.6084252743989, -74.11936580892673 40.6084130709528, -74.11942364990158 40.6084042343782)))",R064,6042,R064,R-02,R-02,R-02,R-02,"Schmidts La., Manor Rd. and Laguardia Ave.",502,49,122,10314,R,1.145,False,Christopher J. Igneri Playground,Yes,100004234,PARK,20100106000000.00000,19580724000000.00000,,DPR,True,Christopher J. Igneri Playground,Y,Christopher J. Igneri Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R064/,No,63,24,11,{80D8309A-3675-4CF8-B5D0-BAFAB02CAAC6} +"MULTIPOLYGON (((-73.94292203708201 40.697792273356725, -73.94287015179135 40.69753336196325, -73.94217634950408 40.697612630698615, -73.94205650521555 40.697004702813246, -73.94350374250227 40.69683914537545, -73.94353854246218 40.697012802899486, -73.94307980152645 40.697065283040736, -73.94311342098395 40.69723327407974, -73.94321620229701 40.697221342614846, -73.94332132802673 40.697745921389505, -73.94292203708201 40.697792273356725)))",B263,5140,B263,B-03,B-03,B-03,B-03,Throop Ave. between Myrtle Ave. and Park Ave.,303,36,79,11206,B,1.97,False,Sumner Playground (PS 59),Yes,100004856,PARK,20100106000000.00000,19531008000000.00000,211 THROOP AVENUE,DPR/DOE,Part,Sumner Playground,Y,Sumner Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B263/,No,56,18,8,{86E3B375-E389-4EF8-9620-657F3981D0D9} +"MULTIPOLYGON (((-74.003388020034 40.726809397392806, -74.00336981709651 40.72685404785916, -74.00335624156646 40.72688255026235, -74.00333326898294 40.72689357946191, -74.00329189278695 40.726890303700436, -74.00323383421603 40.7268751416766, -74.00317551259879 40.726853835458584, -74.00313334249383 40.7268321262451, -74.00360348253585 40.72627728553146, -74.003388020034 40.726809397392806)))",M207,5845,M207,M-02,M-02,M-02,M-02,Ave. Of Americas bet. Prince St. and Spring St.,102,3,1,"10012, 10013",M,0.15,False,Father Fagan Park,Yes,100004955,PARK,20100106000000.00000,,,DPR/CDOT,False,Father Fagan Park,Y,Father Fagan Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M207/,No,66,26,10,{2581972D-951B-40F8-A437-11CBEBC65F9D} +"MULTIPOLYGON (((-73.97750679306391 40.68679934118382, -73.97750368713078 40.68678359869812, -73.97741815884389 40.686793629877066, -73.97730044113788 40.6861968011996, -73.97765182828167 40.68616289539803, -73.97799486657773 40.686129794687965, -73.97807940057697 40.68671607132785, -73.97799379083462 40.6867261119243, -73.97799607467633 40.68674195239562, -73.97750679306391 40.68679934118382)))",B256,5394,B256,B-02,B-02,B-02,B-02,Lafayette Ave between St Felix St. and Ashland Pl.,302,35,88,11217,B,0.965,False,Brooklyn Academy Of Music,No,100003925,PARK,20100106000000.00000,19520409000000.00000,30 LAFAYETTE AVENUE,DPR,False,Brooklyn Academy Of Music,N,Brooklyn Academy Of Music,Building,Managed Sites,http://www.nycgovparks.org/parks/B256/,No,57,25,8,{C842EE3F-3224-4B82-AA7C-54C8109E2AF3} +"MULTIPOLYGON (((-73.90482747559675 40.857975878844464, -73.90490291804895 40.85800297108972, -73.90474943474534 40.858254281356324, -73.90467345234767 40.85822807104707, -73.90482747559675 40.857975878844464)))",X322,4786,X322,X-05,X-05,X-05,X-05,Buchanan Pl. bet. Jerome Ave. and Davidso,205,14,46,10453,X,0.06,False,Jardin De Las Rosas,No,100004340,PARK,20100106000000.00000,20021120000000.00000,15 BUCHANAN PLACE,DPR,False,Jardin De Las Rosas,Y,Jardin De Las Rosas,Greenthumb,Garden,http://www.nycgovparks.org/parks/X322/,No,86,33,15,{BC810CD1-A75D-4936-8604-3E1026321CAF} +"MULTIPOLYGON (((-73.90018389322712 40.88148164459575, -73.90076804666879 40.88064449616236, -73.90126602648738 40.88092109550051, -73.90051480987853 40.88179808505462, -73.89972293416085 40.882722509752256, -73.89940633839173 40.882610789078875, -73.89971479750743 40.882160804978966, -73.90018389322712 40.88148164459575)), ((-73.89915065583706 40.88298543958554, -73.89929668370144 40.88276364837728, -73.89960003884815 40.882869174186744, -73.89847228536301 40.88418987727351, -73.89844977402586 40.88417586570599, -73.8986627219254 40.883926489258606, -73.8984722066352 40.88380790150941, -73.89860348329016 40.88367645218241, -73.89870576575946 40.88356651330495, -73.89880246372115 40.88345539790514, -73.898909348404 40.883324826420065, -73.89899395509029 40.88321317347967, -73.89910110717996 40.88306069319846, -73.89915065583706 40.88298543958554)))",X150J,5420,X150J,X-08,X-08,X-08,X-08,Bailey Av bet. W 234 St and W 237 St,208,11,50,10463,X,3.533,False,Bailey Playground,No,100004910,PARK,20100106000000.00000,19501212000000.00000,3401 BAILEY AvNUE,DPR,True,Bailey Playground,Y,Bailey Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X150J/,No,81,33,13,{ECE4FFD5-D720-4D9F-8026-E4F7ED436214} +"MULTIPOLYGON (((-73.9475961405579 40.78854994221923, -73.94777941661278 40.788301215190934, -73.94785599139388 40.78833339774647, -73.94793698168499 40.78836743637715, -73.94801742249679 40.788401245075086, -73.94809808013629 40.78843514386445, -73.94791487369515 40.7886837768728, -73.94783419924154 40.78864990226255, -73.94775373924665 40.788616117742954, -73.94767273214124 40.78858210239032, -73.9475961405579 40.78854994221923)))",M292,4969,M292,M-11,M-11,M-11,M-11,E. 101 St. bet. 3 Ave. and Lexington Ave.,111,8,23,10029,M,0.24,False,Sunshine Playground,Yes,100004678,PLGD,20100106000000.00000,19960917000000.00000,192 EAST 101 STREET,DPR,False,Sunshine Playground,Y,Sunshine Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M292/,No,68,30,13,{257F7451-6002-4A56-9361-02382B3A90C1} +"MULTIPOLYGON (((-73.8890793602144 40.75457850502508, -73.88887360506094 40.75344220831907, -73.88921928146895 40.75340500277777, -73.8896069341795 40.75336327717192, -73.88974224324653 40.75412426246077, -73.88981507834953 40.75453388143511, -73.88958872928983 40.75455824401684, -73.88958749654259 40.75453038657979, -73.8890793602144 40.75457850502508)))",Q303,6282,Q303,Q-03,Q-03,Q-03,Q-03,34 Ave. bet. 77 St. and 78 St.,403,25,115,11372,Q,1.919,False,Travers Park,Yes,100000113,PARK,20090423000000.00000,19480407000000.00000,,DPR,True,Travers Park,Y,Travers Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q303/,No,34,13,14,{AC819A27-14F2-4C02-8852-27A28082894E} +"MULTIPOLYGON (((-73.88126790009846 40.85810256680241, -73.88120449294344 40.85808639984838, -73.881157222696 40.85779226513052, -73.88145093159727 40.85786918559806, -73.88126790009846 40.85810256680241)))",X059,5674,X059,X-06,X-06,X-06,X-06,Dr Kazimiroff Blvd and Crotona Av at E Fordham Rd,206,15,48,10458,X,0.74,False,Sergeant Johnson Triangle,Yes,100005213,PARK,20100106000000.00000,19091227000000.00000,,DPR,True,Sergeant Johnson Triangle,Y,Sergeant Johnson Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X059/,No,78,34,15,{600DDE90-600C-4A27-B50B-F8223B6F85C1} +"MULTIPOLYGON (((-74.0032176416544 40.68307352411315, -74.00324445449377 40.68301815345561, -74.00352032508664 40.68309498620648, -74.0034935124454 40.68315035692778, -74.0034685697534 40.68320186438112, -74.00344362820574 40.68325337182866, -74.00316775704606 40.68317653889541, -74.00319269877805 40.683125031507174, -74.0032176416544 40.68307352411315)))",B409,5223,B409,B-06,B-06,B-06,B-06,Carroll St. and Columbia St.,306,39,76,11231,B,0.103,False,The Amazing Garden,No,100004317,PARK,20100106000000.00000,19980513000000.00000,265 COLUMBIA STREET,DPR,False,The Amazing Garden,N,The Amazing Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B409/,No,52,26,7,{08F22975-4FB0-4FD4-A74F-CDEE3F01892C} +"MULTIPOLYGON (((-73.91377312350379 40.826921465567196, -73.91409376869753 40.82671633063002, -73.91495268859067 40.82698422538604, -73.9149554543873 40.82698508829962, -73.91465903850269 40.82752365564641, -73.9136306912211 40.82717803895696, -73.91377312350379 40.826921465567196)))",X219,4772,X219,X-04,X-04,X-04,X-04,E 164 St bet. Teller Av and Clay Av at Park Ave,204,"16,17",44,"10451, 10456",X,1.377,False,Arcilla Playground,Yes,100005160,PLGD,20100106000000.00000,19630124000000.00000,991 TELLER AVENUE,DPR/DOE,False,Arcilla Playground,Y,Arcilla Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/X219/,No,77,32,15,{DFA2D81D-0DE9-4C66-8CE6-9B7F4D6C4481} +"MULTIPOLYGON (((-73.9329290196848 40.67664440372398, -73.9329478283922 40.67645404221716, -73.9328722256384 40.67644991970034, -73.93287749666804 40.67639656275935, -73.93305854362245 40.676406433422315, -73.93303767907213 40.676650266330846, -73.9329290196848 40.67664440372398)))",B579,14694,B579,B-08,,,B-08,Schenectady Ave. bet. Pacific St. and Dean St.,308,36,,11213,B,0.069,False,,,100024477,PARK,,20160209000000.00000,87 SCHENECTADY AVENUE,DPR,False,Imani II Garden,,Imani II Community Garden,,Garden,,Yes,56,25,8,{19027052-B64B-4E76-964A-978A3FEC221A} +"MULTIPOLYGON (((-73.96917560100601 40.60937433005754, -73.96988660288682 40.60929667115263, -73.97001388803783 40.609978372160974, -73.96942961126958 40.61018324626434, -73.96932929442723 40.61019446615169, -73.96917560100601 40.60937433005754)), ((-73.96866885732959 40.609964541595104, -73.96904143928059 40.60983399129859, -73.9690426805096 40.60984049429829, -73.96912797686723 40.6102876135206, -73.96880777093153 40.61039981128331, -73.9687881254977 40.610406694939066, -73.9682756445094 40.61058626178281, -73.96818978714695 40.61013240318294, -73.96866885732959 40.609964541595104)), ((-73.97023557791942 40.60925751282259, -73.97033875259099 40.60924652341458, -73.97042796556964 40.60971784602268, -73.97044852252891 40.60982644609173, -73.97031473272583 40.6098766003777, -73.97022119308032 40.609911665899894, -73.97009989324295 40.609271964295274, -73.97023557791942 40.60925751282259)))",B128,5477,B128,B-12,B-12,B-12,B-12,Ave. P bet. E. 4 St. and Ocean Pkwy.,312,44,66,11230,B,1.974,False,Colonel David Marcus Playground,Yes,100004577,PARK,20100106000000.00000,19340509000000.00000,"1670 EAST 4 STREET, 1662 EAST 5 STREET, 1566 OCEAN PARKWAY",DPR,False,Colonel David Marcus Playground,Y,Colonel David Marcus Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B128/,No,48,22,10,{A3B1DA7F-B00A-42A0-8C46-B15E41D249C8} +"MULTIPOLYGON (((-73.85976396232935 40.741166267301985, -73.85965797003388 40.74106416553629, -73.85965792143148 40.74106419429334, -73.85920002433568 40.74062302389177, -73.85947825766624 40.740453873636, -73.8596343263784 40.74035899278821, -73.86064848194783 40.741339238960286, -73.86048388380546 40.741437213989386, -73.86048177847756 40.74143846764792, -73.86042956610895 40.74146954666037, -73.86021260301489 40.74159869105556, -73.86004164009086 40.74143389033384, -73.85976390305431 40.741166304150674, -73.85976396232935 40.741166267301985)))",Q474,5026,Q474,Q-04,Q-04,Q-04,Q-04,"Lewis Ave., Radcliff Ave. bet. 101 St. and 102 St.",404,21,110,11368,Q,1.78,False,Simeone Park,Yes,100000073,PARK,20090423000000.00000,19971219000000.00000,52-01 101 STREET,DPR,False,Simeone Park,Yes,Simeone Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q474/,No,39,13,14,{7C932E7F-6E44-4254-8411-AE487DB5A651} +"MULTIPOLYGON (((-73.84088486382107 40.578723543398254, -73.84088420638547 40.57872336688527, -73.84086225347575 40.57871459417652, -73.84085977548109 40.57871364879433, -73.84085754624427 40.57871239577689, -73.8408556270927 40.57871087213072, -73.84085407697454 40.57870912206333, -73.84085293946912 40.57870719606445, -73.8408522486943 40.57870515001396, -73.84085202458213 40.578703045175224, -73.84085227407748 40.57870094099258, -73.84085298758151 40.57869890048948, -73.84085414723879 40.57869698217538, -73.84085571866302 40.5786952427357, -73.84085765449372 40.57869373163377, -73.84085989911343 40.57869249381877, -73.84088624498654 40.57868466602004, -73.84121966086032 40.578570427362784, -73.84121970696249 40.578570410316495, -73.84122204024038 40.57856963188502, -73.84122451331974 40.578569167029585, -73.84122705411947 40.578569030959514, -73.8412295882261 40.57856922627357, -73.84123204124333 40.578569748366306, -73.84123434234377 40.57857058183085, -73.84123642308575 40.57857170135802, -73.84123822330992 40.57857307534624, -73.84123968996471 40.57857466319856, -73.84124078182423 40.57857641803065, -73.84124146357858 40.57857828846388, -73.84124171881906 40.57858022134447, -73.84124153823628 40.57858215812544, -73.84124167890704 40.57858210608937, -73.84123012363474 40.57861278633618, -73.84121221736386 40.57864163964293, -73.84118842959674 40.578667906612054, -73.84115938557663 40.57869089650081, -73.8411258508939 40.5787100043102, -73.84108870546169 40.578724727859644, -73.8410489281316 40.578734680373344, -73.84100756360205 40.57873959944044, -73.84096569995535 40.578739355989164, -73.84092443794236 40.57873395694629, -73.84088486382107 40.578723543398254)), ((-73.84113038999527 40.578384176117304, -73.8411313569833 40.57838529680783, -73.84113207570022 40.578386521615954, -73.841132523783 40.578387818091926, -73.8411326930412 40.57838915380541, -73.8411325776575 40.57839049182692, -73.8411321788921 40.578391798838645, -73.8411315098201 40.578393039738245, -73.84113058705576 40.57839418122918, -73.84112943546762 40.57839519542956, -73.84112808346978 40.578396053561875, -73.84092962939005 40.57846292394482, -73.84091560453183 40.578468749836894, -73.84075454124205 40.57852232049447, -73.84075200598564 40.57852260875059, -73.84074944431624 40.578522581786046, -73.84074692119665 40.57852223788991, -73.84074450392174 40.578521587961724, -73.84074225741134 40.57852064830099, -73.84074023947741 40.578519444202534, -73.84073850319481 40.57851800635782, -73.84073709453257 40.578516373553185, -73.8407360511817 40.57851458906614, -73.84074697347498 40.57848347123613, -73.84076439802247 40.578454125646594, -73.84078785997133 40.578427336008254, -73.84081673400426 40.57840382007037, -73.84085024621287 40.57838420352264, -73.8408875012793 40.57836901282911, -73.84092750496966 40.57835865274655, -73.84096918894869 40.57835340095616, -73.84101143678954 40.57835339639309, -73.84105312176249 40.57835864110004, -73.84109312929074 40.57836899305389, -73.84113038999527 40.578384176117304)))",Q259,6339,Q259,Q-14,Q-14,Q-14,Q-14,Rockaway Beach Blvd. bet. Beach 120 St. and Beach 121 St.,414,32,100,11694,Q,0.1,False,Veterans Circle,Yes,100000355,PARK,20090423000000.00000,19110629000000.00000,,DPR,False,Veterans' Circle,Y,Veterans' Circle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q259/,No,23,15,5,{B8D5E4ED-BCBE-4627-9527-5F11A4270866} +"MULTIPOLYGON (((-73.95250303562699 40.803667353255356, -73.95252385722256 40.80402610072162, -73.95230703988844 40.80393514279815, -73.95250303562699 40.803667353255356)))",M021,5731,M021,M-10,M-10,M-10,M-10,"7 Av, St Nicholas Av, W 117 St",110,9,28,10026,M,0.074,False,A Philip Randolph Square,Yes,100004558,PARK,20100106000000.00000,18960618000000.00000,,DPR,True,A Philip Randolph Square,N,A Philip Randolph Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M021/,No,70,30,13,{5AAB91B4-83BB-4B8E-BE2B-38D6486FEFDA} +"MULTIPOLYGON (((-73.89854079118639 40.8443762345948, -73.89875311647445 40.844012588592044, -73.8995800916568 40.84410304654796, -73.89928957100496 40.84461739988481, -73.89898452672371 40.84451968538781, -73.89882167166786 40.84446751756504, -73.89854079118639 40.8443762345948)))",X148F1,5655,X148F1,X-06,X-06,X-06,X-06,S/S E 175 St bet. Bathgate and Washington Av,"203, 206",15,42,10457,X,0.897,False,Park,No,100005149,PARK,20100106000000.00000,19590226000000.00000,,DPR,True,Park,N,Park,Parking Lot,Undeveloped,http://www.nycgovparks.org/parks/X148F1/,No,86,33,15,{DE269008-8C10-446D-8391-265D2553A88D} +"MULTIPOLYGON (((-73.89380602334118 40.66738402238137, -73.89415796622698 40.667331764670514, -73.89417223626491 40.667388208656874, -73.89418487622623 40.667438209748184, -73.8941992485494 40.66749506355946, -73.89421287696035 40.66754896929445, -73.89386201534612 40.66760106607766, -73.89380602334118 40.66738402238137)))",B492,5280,B492,B-05,B-05,B-05,B-05,New Jersey Ave. between Dumont Ave. and Blake Ave.,305,42,75,11207,B,0.183,False,St John Cantius Parish,No,100004326,PARK,20100106000000.00000,20031031000000.00000,476-484 New Jersey Av,DPR,False,St. John Cantius Parish,N,St John Cantius Parish,Greenthumb,Garden,http://www.nycgovparks.org/parks/B492/,No,60,19,8,{1F062AD0-6B82-4F34-A8B2-76BA22FE3851} +"MULTIPOLYGON (((-73.95760351794146 40.707893262204465, -73.9579320336731 40.70729441394059, -73.95834189428999 40.70732422313999, -73.95828182701966 40.70764281039415, -73.95779003489024 40.707589022770854, -73.95778503848328 40.707615650858884, -73.95777849381601 40.70761493525361, -73.95774894239995 40.70764225222708, -73.95770280495793 40.70790475053178, -73.95760351794146 40.707893262204465)), ((-73.95752279720826 40.70816873215774, -73.95758768321998 40.70805355998298, -73.95759506212009 40.70805439657485, -73.95752937644863 40.70817098496294, -73.95752279720826 40.70816873215774)))",B223OB,4829,B223OB,B-01,B-01,B-01,B-01,Marcy Ave. bet. S. 9 St. and Division St.,301,33,90,11211,B,0.357,False,Marcy Park South,Yes,100008236,PARK,20130627000000.00000,19520206000000.00000,243 DIVISION AVENUE,DPR,True,Marcy Park South,Y,Marcy Park South,Neighborhood Plgd,Recreation Field/Courts,http://www.nycgovparks.org/parks/B223OB/,No,50,26,7,{9231C4F8-39BF-44BE-8C6A-1AC719B6E17F} +"MULTIPOLYGON (((-74.14487883457547 40.62503329193792, -74.1448858493389 40.625032862554455, -74.144892834547 40.62503351833585, -74.14489895155268 40.62503494245516, -74.14490410884056 40.6250368999918, -74.14490925280548 40.62503979768915, -74.1449141010783 40.62504368273021, -74.1449175788093 40.62504777481752, -74.14492024528577 40.62505273512924, -74.14492170437617 40.62505847231167, -74.14492173978192 40.62506334768886, -74.14492059430876 40.625068144408246, -74.1449184449657 40.62507273617358, -74.1449155978075 40.625076553469796, -74.14491111559578 40.62508068530768, -74.14490570880076 40.625084114103174, -74.14490008451271 40.62508644273562, -74.14489987432646 40.6250865303511, -74.14489334320905 40.62508816762531, -74.14489191734772 40.62508848100266, -74.14488514715833 40.625089966389666, -74.14482326566046 40.625103546773, -74.14475621849849 40.62511840426263, -74.1446891736665 40.625133259909106, -74.1446221276267 40.62514811731904, -74.14455508037517 40.62516297469131, -74.14448803309186 40.62517783112394, -74.1444209869625 40.62519268841647, -74.14441954456382 40.625193008112376, -74.14435394080331 40.625207545669866, -74.14431518030109 40.62521613487429, -74.14428498699951 40.62522293118261, -74.14428456881308 40.62522302536163, -74.14427511711466 40.62522516515475, -74.14426625221364 40.62522647933335, -74.14425888432312 40.625227039697634, -74.14424985612912 40.62522717169554, -74.14424247194994 40.62522675771529, -74.14423352628319 40.62522570092042, -74.14422636577085 40.625224326702956, -74.14421779581089 40.625222113166345, -74.14421177919591 40.62522011075033, -74.14421174607578 40.62522009818457, -74.14420594982076 40.6252177929167, -74.14420592142623 40.62521777944447, -74.1442003408036 40.62521517133075, -74.14419499118587 40.625212263953934, -74.14418931502183 40.62520865007734, -74.14418286918611 40.62520382146212, -74.14417858724998 40.625200019428554, -74.14417330275676 40.625194431117535, -74.14415746111209 40.62516289672019, -74.14414902636709 40.62512861364837, -74.14414743740906 40.625124005872664, -74.1441462114257 40.625118365644575, -74.14414576268236 40.6251136141569, -74.14414600799758 40.625107901843386, -74.14414719689726 40.62510129683086, -74.14414907006211 40.62509576348108, -74.14415118541554 40.625091278934796, -74.14415383298358 40.62508696301915, -74.14415693123337 40.62508282394098, -74.14416051929555 40.62507892108559, -74.14416625595624 40.62507388808331, -74.14417271472833 40.62506939178632, -74.14417880015534 40.62506605132586, -74.1441864435147 40.62506280436645, -74.14419571995367 40.62505996959807, -74.14420542286253 40.625058140176144, -74.14421661360686 40.62505732917754, -74.14421784385937 40.625057285309786, -74.14428180995293 40.625055030292394, -74.14428483535866 40.6250549229356, -74.14435055513361 40.625052557616506, -74.1444162749078 40.62505019406087, -74.14448199467533 40.62504782956719, -74.14454771443825 40.62504546503589, -74.14461343301264 40.625043099568, -74.14467915395008 40.62504073586065, -74.14474487369513 40.6250383694156, -74.14481059225756 40.625036004735556, -74.14487833940623 40.625033311472855, -74.14487883457547 40.62503329193792)))",R020,6365,R020,R-01,R-01,R-01,R-01,"Richmond Ave., Forest Ave., and Willowbrook Rd.",501,49,120,10302,R,0.207,False,Egbert Triangle,Yes,100004150,PARK,20100106000000.00000,19291129000000.00000,,DPR/CDOT,False,Egbert Triangle,Y,Egbert Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R020/,No,61,23,11,{EBADBB96-0861-4674-949C-08D02A05C0C4} +"MULTIPOLYGON (((-73.7487021771888 40.61118451042128, -73.74945441993717 40.6107613389292, -73.75011385567362 40.611469006627985, -73.75024711914756 40.61171592932072, -73.75013095485059 40.61175264160215, -73.74927331889539 40.611789656003864, -73.7487021771888 40.61118451042128)))",Q345,5914,Q345,Q-14,Q-14,Q-14,Q-14,"Beach 12 St., Redfern Ave.",414,31,101,11691,Q,2.093,False,Redfern Playground,Yes,100000008,PARK,20090423000000.00000,19501121000000.00000,,DPR,True,Redfern Playground,Y,Redfern Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q345/,No,31,10,5,{2DDE665C-219B-4264-B601-0EB9A5E298DD} +"MULTIPOLYGON (((-73.87675015169391 40.66850600146941, -73.87693483106447 40.66875404652134, -73.87680894631413 40.66880829217677, -73.8766246199784 40.66856009331428, -73.87675015169391 40.66850600146941)))",B535,5306,B535,B-05,B-05,B-05,B-05,Montauk Ave. and New Lots Ave.,305,42,75,11208,B,0.092,False,400 Montauk Av Block Assn,No,100005052,PARK,20100106000000.00000,20031117000000.00000,398-400 Montauk Av,DPR,False,400 Montauk Av Block Assn,N,400 Montauk Av Block Assn,Greenthumb,Garden,http://www.nycgovparks.org/parks/B535/,No,60,19,8,{F36871A9-1CE2-46DC-A2DE-661AE44843FC} +"MULTIPOLYGON (((-73.85039849664399 40.80970456576647, -73.85041393347035 40.80961597308473, -73.85072699247489 40.80956971228705, -73.85078989897929 40.809847149234784, -73.85024014750705 40.809928385436876, -73.85023623379071 40.80991112679112, -73.85039849664399 40.80970456576647)))",X088A,4855,X088A,X-09,X-09,X-09,X-09,Gildersleeve Ave. bet. Husson Ave. and Betts Ave.,209,18,43,10473,X,0.27,False,Waterfront Garden,No,100004032,PARK,20100106000000.00000,19891103000000.00000,2008 GILDERSLEEVE AVENUE,DPR,False,Waterfront Garden,Y,Waterfront Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X088A/,No,85,34,15,{4F5AC9FC-0491-40C2-AC06-5CF65BD2E34B} +"MULTIPOLYGON (((-73.94194196115289 40.82988751339294, -73.94202799305224 40.82967457249877, -73.94206757048838 40.829576611326274, -73.94215927593473 40.82961543177246, -73.9423600036684 40.82970039942437, -73.94235073698854 40.82970249294578, -73.942339205412 40.829705216580976, -73.94233333345309 40.82970665443691, -73.9423264665903 40.8297083799534, -73.94231977873957 40.82971010735996, -73.94231296041151 40.82971191484495, -73.94230592029494 40.82971383207895, -73.94229942442212 40.82971564692841, -73.94229281111423 40.82971754006183, -73.94228592265289 40.82971956182793, -73.94227922269478 40.8297215773845, -73.94227244680026 40.82972366494226, -73.9422657562435 40.82972577505474, -73.94225924589288 40.829727877152585, -73.94225257422312 40.82973008002471, -73.94224597366244 40.829732308145935, -73.94223935645479 40.829734592989645, -73.94223293013235 40.8297368590182, -73.94222643498345 40.82973920065346, -73.94222002043325 40.829741561239146, -73.94221347894792 40.82974401811383, -73.9422070168726 40.829746497540334, -73.94220073738552 40.829748956346556, -73.94219432977451 40.829751515043185, -73.94218798378759 40.82975409988473, -73.94218163419815 40.8297567369528, -73.94217532607033 40.829759410061115, -73.94216926102058 40.82976203016177, -73.94216284369355 40.82976485269681, -73.94215724820825 40.829767360470456, -73.9421505022669 40.829770439481045, -73.94214426032225 40.82977334674955, -73.9421384879935 40.82977608315929, -73.94213215344537 40.82977914166382, -73.94212633595835 40.82978200141811, -73.94212003451993 40.82978515629157, -73.94211418254514 40.82978813849526, -73.94210842778048 40.8297911234489, -73.94210219735591 40.82979441163028, -73.9420963962387 40.82979752983333, -73.94209065200735 40.829800669676544, -73.94208477014018 40.8298039409226, -73.94207897836682 40.82980721851706, -73.94207340478903 40.829810427783194, -73.94206760817129 40.829813821538515, -73.94206196332917 40.829817182051485, -73.94205621761178 40.8298206631798, -73.94205075414914 40.8298240291863, -73.94204512575917 40.82982755449728, -73.94203969303749 40.82983101417015, -73.94203425670534 40.82983453507469, -73.94202883930095 40.82983810191366, -73.94202337083682 40.829841762378216, -73.94201814549591 40.8298453185073, -73.94201279317443 40.82984902225349, -73.94200749655478 40.829852745838345, -73.94200223427954 40.8298565099625, -73.94199710600027 40.82986023723349, -73.94199193258795 40.829864059033525, -73.94198737599957 40.82986747862236, -73.94198509824781 40.82986652655388, -73.94194196115289 40.82988751339294)))",M322,5971,M322,M-09,M-09,M-09,M-09,W. 153 St. and St Nicholas Ave.,109,7,30,10032,M,0.11,False,Harris Garden,No,100004368,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Harris Garden,N,Harris Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M322/,No,71,30,13,{CD70DEDC-3AD0-4F58-A6C5-0E7E17C489CE} +"MULTIPOLYGON (((-73.83033877057792 40.58061974522895, -73.83068252490233 40.58051356347461, -73.8306946049857 40.58053648434497, -73.83138172846725 40.5803098491871, -73.83147569392108 40.58047242656984, -73.83098745131146 40.58062928063052, -73.83103496702881 40.58072036033898, -73.83081992607957 40.5807928513788, -73.83115759257477 40.58138908539236, -73.83079868563938 40.581492400590015, -73.83033877057792 40.58061974522895)))",Q422,5363,Q422,Q-14,Q-14,Q-14,Q-14,Rockaway Beach Blvd. bet. Beach 110 St. and Beach 109 St.,414,32,100,11694,Q,1.144,False,Seaside Playground,Yes,100000154,PARK,20090423000000.00000,19660204000000.00000,109-27 ROCKAWAY BEACH BLVD,DPR/DOE,False,Seaside Playground,Y,Seaside Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q422/,No,23,15,5,{236F8649-595F-4E38-9AC5-26346B6DEB8F} +"MULTIPOLYGON (((-73.81592970679827 40.703234391455176, -73.8161878307797 40.70312823716184, -73.8161913838313 40.70313607910607, -73.81619684836518 40.70314932178172, -73.81620194492947 40.70316341305389, -73.81620670409453 40.703178852756594, -73.8162090041845 40.70318750856491, -73.81621337379823 40.703207762692024, -73.81621547319804 40.70322097117695, -73.81621663121831 40.703230561695754, -73.81621825777344 40.70326677935145, -73.81621687711755 40.70329159080164, -73.81621353951658 40.703315901143, -73.8162095576514 40.70333483438878, -73.8161498646403 40.70355757206659, -73.81592970679827 40.703234391455176)))",Q220A,4912,Q220A,Q-12,Q-12,Q-12,Q-12,"Van Wyck Exwy. Service Rd. East, 138 St.",412,24,103,11435,Q,0.143,False,Park,No,100000177,PARK,20090423000000.00000,19460306000000.00000,88-28 138 STREET,DPR,True,Park,N,Park,STRIP,Undeveloped,http://www.nycgovparks.org/parks/Q220A/,No,27,14,6,{0B1F9466-E470-4131-857C-F90350622D3E} +"MULTIPOLYGON (((-73.82996978266254 40.57925545175201, -73.83001954487561 40.57934557165765, -73.83011337623475 40.579520491682445, -73.8302938114766 40.57985990623624, -73.82998809144972 40.57995434082954, -73.82978029427426 40.57956063669046, -73.82966529727636 40.57934275695265, -73.82950589759677 40.5793884599331, -73.82981822665127 40.57998219294426, -73.8291367626396 40.58019434762549, -73.82887966357136 40.579704451814784, -73.82881742538419 40.579585858015975, -73.82828166856805 40.57973827484238, -73.82835762253521 40.57988191863493, -73.82841455913362 40.57998959669476, -73.82846764417468 40.58008999092589, -73.82858399246518 40.580310027024495, -73.82817911158146 40.580430877024476, -73.82791625645918 40.57993349698788, -73.82787328529372 40.579852184483514, -73.82769290945012 40.579905629561324, -73.82774159163645 40.57999128042364, -73.82800136574353 40.580483930287606, -73.82700287109492 40.580781954073395, -73.82690448909271 40.580811317918894, -73.8267116716074 40.58086886711864, -73.82639536846789 40.580269041121866, -73.82626416982235 40.580306242531954, -73.8265804574181 40.580908030210864, -73.82524354453334 40.58130703825334, -73.82491867200369 40.5806877456089, -73.82475134433048 40.580735187741325, -73.82507779228177 40.58135269571337, -73.82456221551054 40.581505210576374, -73.82429465962775 40.58158435594866, -73.8239645683428 40.58095825996396, -73.82383735976813 40.58099432645354, -73.82416834427387 40.581621720927146, -73.82416507710784 40.58162268759416, -73.8237912839106 40.581733256894466, -73.8236562633936 40.58177319606967, -73.82356327155095 40.581799846641935, -73.82334727652501 40.5811332734157, -73.82309657884842 40.58120434979588, -73.8233054650772 40.58187259113984, -73.82297269271929 40.58195793589855, -73.82196972562168 40.58221423004943, -73.82162146393465 40.58162255149591, -73.82145681712363 40.581669227548694, -73.82179437981142 40.582243740395676, -73.8214451046354 40.582329878215226, -73.82110187406296 40.5824145241101, -73.82077689201365 40.581861980069945, -73.82062657964485 40.58190459160833, -73.82094975270196 40.58245479729038, -73.82042512770546 40.58258462947798, -73.82011075020303 40.58205082025756, -73.81992798424548 40.582102630264885, -73.82023816823238 40.58263089609138, -73.819587887048 40.58282192742902, -73.81927389445048 40.58228804718564, -73.81907866373876 40.582343388809065, -73.81939412129012 40.5828788487085, -73.81871682569414 40.583077810408014, -73.81839729462172 40.58253653292183, -73.81823494357525 40.582582552406585, -73.81855246867094 40.58312661250166, -73.81788010435365 40.58332677205728, -73.81755165228246 40.58277623418538, -73.81738118404729 40.58282455392542, -73.81769909928589 40.583365924424285, -73.81702261311273 40.58356412728977, -73.8166991195162 40.583017881382425, -73.81657696943834 40.583052503465666, -73.81689627687894 40.58359806494943, -73.81679607258637 40.58362764687477, -73.81672019851568 40.583650045310975, -73.81664946659869 40.58367092641267, -73.81655732461047 40.58369795269635, -73.81645752206356 40.58373424658568, -73.81638925838493 40.58375907217045, -73.81631610212382 40.58378567563536, -73.81622991755131 40.583817018394804, -73.81588447080551 40.583248782967786, -73.81536772221962 40.58339524461364, -73.81494583045675 40.58350062348554, -73.8149465949841 40.58350349199077, -73.8148726932118 40.58352239114067, -73.81524067206382 40.584067468301384, -73.81510512626427 40.584100738103, -73.8150689674573 40.58410961312358, -73.81502259405525 40.58412099586158, -73.81499633662318 40.58413041360721, -73.81496598709458 40.58414130071833, -73.81490553867113 40.58416298256609, -73.81487370645542 40.584174401276, -73.8145144103352 40.58361401361392, -73.81440112296978 40.583642984286975, -73.81476240232989 40.584182197838906, -73.8144135312419 40.58426858240526, -73.81405963226551 40.58435621130806, -73.81376070189566 40.58380675319051, -73.81358499218784 40.58385168543668, -73.81388593346726 40.5844004979895, -73.8131428712414 40.584585089297086, -73.8127762071814 40.58406020815592, -73.81277549020056 40.58405894895318, -73.8126505381696 40.58409434935865, -73.81298600167536 40.58460453577247, -73.81280736015209 40.58467976474633, -73.8128048328684 40.5846547476284, -73.81251045945064 40.584728646561096, -73.81248217224504 40.584425475355516, -73.8121979895572 40.58450143971602, -73.81221911572582 40.58481870692297, -73.81207706720681 40.58485395088776, -73.81202517482642 40.5848668263673, -73.81199358691862 40.584874663289014, -73.81187886142294 40.584903128431506, -73.81169379100331 40.58494904654711, -73.81162664820168 40.58496570517478, -73.81160368295409 40.58497140296898, -73.81152666678037 40.58499051188831, -73.81140480233108 40.58471345971505, -73.81123454996339 40.584758967359825, -73.81135524928752 40.585033041563264, -73.81132332907507 40.58504096150413, -73.81119740225988 40.585072204604764, -73.81116207545126 40.58508096899924, -73.81098512093799 40.58512487222942, -73.81093254493322 40.58513791629066, -73.81077324707661 40.58517743837379, -73.81064072290718 40.58521031796127, -73.8105879611923 40.58522340748568, -73.81054025967312 40.585235242792976, -73.81047842710655 40.58525058303197, -73.8103142837274 40.585309148007276, -73.81030866857724 40.585311151411865, -73.81023217764103 40.585338442507336, -73.81010024209769 40.58538551562883, -73.80999723117397 40.585422268682294, -73.80978104037665 40.585504391017075, -73.80975770788308 40.585217605205905, -73.80973916789402 40.585208517019566, -73.80946646880483 40.58530122361026, -73.80949906803431 40.585611499747394, -73.80907416607518 40.5857642638588, -73.80890223862902 40.58582607648767, -73.80888955488277 40.58583063636551, -73.80862239766772 40.5859266848177, -73.80854744305867 40.58595363244992, -73.80852292917233 40.58596244556866, -73.8083055035336 40.586040613365604, -73.80825330791846 40.58605937877627, -73.80812897622252 40.58610407773305, -73.808100646544 40.58611426309445, -73.80803352152887 40.58613839491696, -73.80801831082164 40.58614386360976, -73.80799238852991 40.58615318215862, -73.80796760135567 40.58616209376008, -73.80791251806724 40.5861818969985, -73.80787180241013 40.58619653450691, -73.80772611266886 40.586249501959756, -73.80757782835282 40.5862981045378, -73.8075781386353 40.58629864447231, -73.80756204086946 40.58630407829975, -73.8074822915332 40.58632670639092, -73.80743946023041 40.58633885925332, -73.807425613436 40.586342788453614, -73.80741762949158 40.58634489671045, -73.80732569233483 40.58636917473955, -73.80719959096594 40.58639430580455, -73.80719849535555 40.586394524594894, -73.8071317541909 40.58640782591338, -73.80701680335125 40.586423528980546, -73.80695486811942 40.586429999676554, -73.80695511406142 40.58643195603142, -73.80694128847392 40.586433844617915, -73.80692819079758 40.58643563356706, -73.80692031257462 40.586436709964666, -73.80690802387122 40.586437734824145, -73.80680641279835 40.5864455102577, -73.80677358774204 40.58644894009491, -73.80677362111619 40.58644801981382, -73.80669084263675 40.586454354454894, -73.80665290924946 40.58619857196342, -73.8063819113995 40.58621781101919, -73.80641816409252 40.58647521982066, -73.80633474400898 40.586481602653215, -73.80633475548673 40.586481717939826, -73.80624780666682 40.586488255955565, -73.80607652710492 40.58650113539124, -73.80578859530208 40.58652278489233, -73.80534734296728 40.58655596191446, -73.80519470782515 40.58656743708285, -73.8051223156657 40.5865728795727, -73.80471612516475 40.58660341836006, -73.8045840781127 40.586613345483514, -73.80444967280606 40.586623449447416, -73.80429892298127 40.58663478255078, -73.80413328892185 40.58664723465285, -73.80409294585857 40.586381470272514, -73.80395659890499 40.58639121734257, -73.8038429866503 40.586399339794774, -73.80388518077922 40.58666593950932, -73.80365245247071 40.58668363901119, -73.80343723234184 40.58670000730054, -73.80342213542981 40.58670115575837, -73.80323928294547 40.58671506117904, -73.80322826330757 40.5867158987079, -73.80256474510756 40.586766357010404, -73.8025613873436 40.58676661239311, -73.8024185334906 40.58677747571732, -73.80211989080081 40.586800184544146, -73.80174241711471 40.5868288864801, -73.80170512875185 40.58656347322292, -73.8016623616433 40.586567126683484, -73.80158906711374 40.586570457259306, -73.80153457109624 40.58656797404727, -73.801534844417 40.58656980618869, -73.80144668085967 40.58656874794254, -73.80131548617771 40.58656717306952, -73.80110755810593 40.58655595479414, -73.80099353109894 40.5865448871101, -73.8008267406027 40.58652869752532, -73.80080586435311 40.58634479828721, -73.80080578765156 40.58634398047684, -73.8002804896524 40.5817126396249, -73.81245616338633 40.57890515056268, -73.82756977604049 40.57496479932255, -73.8297831848597 40.57891952968008, -73.82986526327797 40.57906616950155, -73.82986472667207 40.579066325398365, -73.82996978266254 40.57925545175201)), ((-73.82996978266254 40.57925545175201, -73.82986526327797 40.57906616950155, -73.82997101306307 40.57925509966634, -73.82996978266254 40.57925545175201)), ((-73.8008267406027 40.58652869752532, -73.80081967971648 40.58652817288625, -73.80081960583897 40.58652720019034, -73.8008267406027 40.58652869752532)), ((-73.80624816842376 40.58648896437875, -73.80624788960503 40.58648898281963, -73.8062478780804 40.58648888374236, -73.80624816842376 40.58648896437875)))",Q163,6619,Q163,Q-14,Q-14,Q-14,Q-14,Shore Front Pkwy. bet. Beach 109 St. and B. 73 St.,414,32,100,"11692, 11693, 11694",Q,376.2,False,Rockaway Beach and Boardwalk,No,100000428,PARK,20090423000000.00000,19380511000000.00000,,DPR,True,Rockaway Beach Boardwalk,Y,Rockaway Beach Boardwalk,Large Park,Waterfront Facility,http://www.nycgovparks.org/parks/Q163/,Yes,23,15,5,{1B410F76-2310-45A2-BFEE-08D41BA3D340} +"MULTIPOLYGON (((-73.81617350716965 40.67588080814334, -73.81615306858872 40.67583702297811, -73.81628227967444 40.67585138099359, -73.81617350716965 40.67588080814334)))",Q148,6168,Q148,Q-10,Q-10,Q-10,Q-10,"Rockaway Blvd. 116 Ave., 122 St.",410,28,106,11420,Q,0.006,False,Catholic War Veterans Square,Yes,100000132,PARK,20090423000000.00000,19350411000000.00000,,DPR,False,Catholic War Veterans Square,Y,Catholic War Veterans Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q148/,No,31,10,5,{DA370859-9858-4C59-99F6-9B9361292CD2} +"MULTIPOLYGON (((-73.90123581004576 40.725473781766965, -73.90171025693544 40.72523217218562, -73.90170447182454 40.72551501642234, -73.90123581004576 40.725473781766965)))",Q360E,5560,Q360E,Q-05,Q-05,Q-05,Q-05,"55 Dr., 64 St., Hull Ave.",405,30,104,11378,Q,0.158,False,Hull Triangle,Yes,100000459,PARK,20090423000000.00000,19531229000000.00000,,DPR,True,Hull Triangle,Y,Hull Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360E/,No,30,15,6,{FC662395-4AFC-4A4A-9F36-5D2C759D3A8D} +"MULTIPOLYGON (((-73.9974135434037 40.69573873899839, -73.99749467187667 40.69556846556974, -73.99751876269599 40.69557490835876, -73.99799507495204 40.69570225732591, -73.99811544679501 40.695733188364926, -73.99803437414513 40.69590300296713, -73.99791217762593 40.695872070009905, -73.9974135434037 40.69573873899839)))",B223DE,5109,B223DE,B-02,B-02,B-02,B-02,Montague St. bet. Montague Ter. and BQE,302,33,84,11201,B,0.21,False,Brooklyn Heights Promenade,No,100008302,PARK,20100106000000.00000,19470514000000.00000,68 COLUMBIA HEIGHTS,DPR,True,Brooklyn Heights Promenade,N,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B223DF/,No,52,26,7,{72E20A48-15AC-4B85-91B3-893D49B1BB3C} +"MULTIPOLYGON (((-73.97913710442276 40.728082455256306, -73.9791729972682 40.728032496124804, -73.97937993443009 40.72811989352427, -73.97934420630057 40.728169623119456, -73.97913710442276 40.728082455256306)))",M113A,4658,M113A,M-03,M-03,M-03,M-03,S/w Corner of E. 12 St. At Ave. B,103,2,9,10009,M,0.037,False,Children's Garden,No,100003973,PARK,20100106000000.00000,19920917000000.00000,194 AVENUE B,DPR,False,Children's Garden,N,Children's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M113A/,No,74,27,12,{47BC1DD4-5F23-48B0-AA2A-4657BC3EAE88} +"MULTIPOLYGON (((-73.9132449912286 40.82322080828362, -73.91337820083871 40.822970886548255, -73.91345766234927 40.82299524250118, -73.91359667077066 40.822734442359376, -73.91433995981991 40.82296222003389, -73.9140677266056 40.82347298514504, -73.9132449912286 40.82322080828362)))",X353,6422,X353,X-03,X-03,X-03,X-03,Melrose Ave. bet. E. 160 St. and E. 159 St.,203,17,42,10451,X,1.075,False,Yolanda Garc�a Park,Yes,100008340,PARK,20110712000000.00000,20140304000000.00000,820 MELROSE AVENUE,DPR,True,Yolanda Garc�a Park,Y,Yolanda Garc�a Park,Neighborhood Park,Neighborhood Park,http://www.nycgovparks.org/parks/X353/,No,79,32,15,{1DB0E107-EFDF-4A22-9C9E-93CFFD02B542} +"MULTIPOLYGON (((-73.87549349347607 40.677854814827626, -73.87552802465751 40.67784985973123, -73.87559301839298 40.678113703612674, -73.87562665301178 40.67825024010674, -73.87526517794538 40.678297247433136, -73.87516916917379 40.677910828480435, -73.87516689517024 40.677901676775924, -73.87549349347607 40.677854814827626)))",B455,6225,B455,B-05,B-05,B-05,B-05,Wells St. and Crystal St.,305,37,75,11208,B,0.344,False,Crystal Wells Block Association,No,100004022,PARK,20100106000000.00000,20121120000000.00000,,DPR,False,Crystal Wells Block Association,N,Crystal Wells Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B455/,No,54,18,8,{606365C7-A590-4CDB-9A11-72A1138EE3C9} +"MULTIPOLYGON (((-73.99498803771627 40.66712579264922, -73.99499056737399 40.667125735126405, -73.9949931289528 40.66712580998074, -73.9949968979786 40.66712617845562, -73.99500061494638 40.667126842297314, -73.9950042077156 40.66712780150265, -73.9950065256179 40.667128598559735, -73.99500875717987 40.66712950457538, -73.99501092368693 40.66713054566557, -73.99501297074114 40.667131679503626, -73.9950158432165 40.66713357971634, -73.995018442486 40.66713571585223, -73.99502075554359 40.66713804918865, -73.99535881183894 40.66752310223141, -73.99536126073052 40.6675282388717, -73.99536268761409 40.66753634897356, -73.99536209827997 40.667541798870765, -73.99536031330689 40.66754708662696, -73.9953573622706 40.66755206816069, -73.99535333151384 40.66755659759188, -73.99534834522423 40.66756052634034, -73.99534254887317 40.66756376075816, -73.99533612932584 40.6675661882884, -73.99532924506086 40.667567746801744, -73.99532212433178 40.667568384978054, -73.99531494926684 40.667568086615404, -73.99530832064177 40.66756694359081, -73.99529904668385 40.667562454141525, -73.9947301741781 40.66728708690629, -73.99472536930998 40.667284760654006, -73.99471976033824 40.66728131232199, -73.99471468130209 40.667276426790984, -73.99471181494192 40.667272008729114, -73.99471026837004 40.66726802027387, -73.99470953549904 40.667263438416185, -73.9947095261631 40.66726186071218, -73.99470968360606 40.66725993901891, -73.9947099498242 40.667258363128624, -73.99471065609532 40.66725536894629, -73.99471130548858 40.66725377776487, -73.99471195367876 40.66725244503142, -73.9947132476273 40.66725061704396, -73.99471469060002 40.66724863597568, -73.9947292085073 40.66723531531265, -73.99474535146707 40.667220504368466, -73.99477513429946 40.667198677223745, -73.99479884612526 40.66718356944531, -73.99480429590504 40.66718101132637, -73.99481079352014 40.6671781767961, -73.99483834491534 40.667168610055946, -73.99490156655862 40.667148249512906, -73.99497329596603 40.66712873759302, -73.99497693264397 40.66712768414843, -73.99498054211165 40.66712675767528, -73.99498299965866 40.66712630212154, -73.99498551750989 40.6671259807472, -73.99498803771627 40.66712579264922)))",B210G,5617,B210G,B-07,B-07,B-07,B-07,3 Ave. bet. Hamilton Ave. and 16 St.,307,39,72,11215,B,0.28,False,Park,Yes,100004126,PARK,20100106000000.00000,19421230000000.00000,,DPR,True,Triangle Three Sixteen,N,Triangle Three Sixteen,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B210G/,No,51,25,7,{988006DF-BD9D-49F8-97F9-7406FB9F2EE9} +"MULTIPOLYGON (((-73.91042429552446 40.688347382319634, -73.9109416577572 40.687820562694064, -73.911533823217 40.68815585213749, -73.9110154631699 40.68868374254004, -73.91042429552446 40.688347382319634)))",B307,5166,B307,B-04,B-04,B-04,B-04,Evergreen Ave. between Eldert St. and Covert St.,304,37,83,11207,B,0.926,False,Tiger Playground,Yes,100004447,PARK,20100106000000.00000,19590312000000.00000,116 ELDERT STREET,DPR/DOE,False,Tiger Playground,Y,Tiger Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B307/,No,54,18,8,{E66589B6-042B-4052-BC21-C806158D96B5} +"MULTIPOLYGON (((-73.98867250775429 40.77095008884089, -73.98914286927418 40.77114851407565, -73.98878603201332 40.77163710371305, -73.98831566810578 40.77143867703614, -73.98867250775429 40.77095008884089)))",M063,4715,M063,M-07,M-07,M-07,M-07,"W. 59 St., W. 60 St., bet. Amsterdam Ave. and W. End Ave.",107,6,20,10023,M,0.69,False,Gertrude Ederle Recreation Center,Yes,100005039,PARK,20100106000000.00000,19060425000000.00000,533 WEST 59 STREET,DPR,True,Gertrude Ederle Recreation Center,N,Gertrude Ederle Recreation Center,Neighborhood Plgd,Buildings/Institutions,http://www.nycgovparks.org/parks/M063/,No,67,27,10,{9F38D34E-A80C-43E8-BD88-DE4A0907C032} +"MULTIPOLYGON (((-73.85278020879076 40.78504971441042, -73.85279405724638 40.7852554167831, -73.85279867192124 40.78532394641582, -73.85280313175721 40.78539017326496, -73.85244163320277 40.785403039315696, -73.85241871208038 40.785062580389884, -73.85278020879076 40.78504971441042)))",Q136,6251,Q136,Q-07,Q-07,Q-07,Q-07,115 St. bet. 14 Ave. and 14 Rd.,407,19,109,11356,Q,0.287,False,Playground 115,Yes,100000336,PARK,,,,DPR/DOE,False,Playground 115,Y,Playground 115,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q136/,No,27,11,14,{EFA0AEDC-02ED-4EBF-B8A4-96B2C17AD305} +"MULTIPOLYGON (((-73.9394434539579 40.57822482947128, -73.93922852027409 40.57710819270835, -73.93920636092969 40.577110227876354, -73.93920401294676 40.57706360018004, -73.93919987035767 40.57698131706932, -73.93918711898539 40.5767280513245, -73.93937027567179 40.57656316934651, -73.93928249425004 40.57607224888205, -73.93928121609257 40.57605827927016, -73.9392809783963 40.576050826403595, -73.93928159601279 40.57604309482647, -73.93928421497164 40.57603719957602, -73.93928685943257 40.57603313150331, -73.93929053039555 40.57602884874758, -73.9392965223134 40.57602559111458, -73.93930190178459 40.576023078791934, -73.9393091133565 40.576020194619815, -73.9393192879356 40.57601750112246, -73.94020199107308 40.57587902294681, -73.94023371821054 40.57587213063278, -73.94025505248266 40.57586644681264, -73.94026743929962 40.575863470716534, -73.9402848756662 40.575858391817626, -73.94030335056654 40.57585151961085, -73.9403231834785 40.57584217706723, -73.9403398433408 40.57583244294532, -73.940354602374 40.57582202163438, -73.94036852060331 40.57581018245949, -73.94037913458777 40.57579939157974, -73.94039109734821 40.5757845652479, -73.94040187778312 40.57576722944006, -73.94040910669564 40.57575144339277, -73.94041413540558 40.57573562018287, -73.94041709138214 40.575719851730256, -73.94044314338352 40.57547086569808, -73.94044617607271 40.57544189019086, -73.94388741674813 40.5753529037307, -73.94669415731069 40.57505004678362, -73.94712832272336 40.57738181330138, -73.9394434539579 40.57822482947128)))",B251,5800,B251,B-15,B-15,B-15,B-15,Oriental Blvd. between Ocean Ave. and Mackenzie St.,315,48,61,11235,B,42.941,False,Manhattan Beach Park,No,100004775,PARK,20100106000000.00000,19510614000000.00000,,DPR,False,Manhattan Beach Park,Y,Manhattan Beach Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B251/,Yes,45,22,8,{20778689-A7E1-4093-B0F0-088E1E8253F5} +"MULTIPOLYGON (((-73.9201019074223 40.6800750705568, -73.92085145904338 40.67998900140458, -73.92095942947867 40.68053394914058, -73.92021096033756 40.680619833338646, -73.92015622494456 40.680346410825386, -73.9201019074223 40.6800750705568)))",B347,5192,B347,B-03,B-03,B-03,B-03,Sumpter St. to Marion St. between Howard Ave. and Ralph Ave.,303,41,81,11233,B,0.964,False,Carver Playground (PS 40),Yes,100004266,PARK,20100106000000.00000,19630328000000.00000,281 RALPH AVENUE,DPR/DOE,False,Carver Playground,Y,Carver Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B347/,No,55,25,8,{79E5320A-F3B1-4ED4-87B6-C03DFF18204D} +"MULTIPOLYGON (((-73.93998721317689 40.83968939477664, -73.93999146748655 40.83968938078121, -73.93999403794489 40.839689538804365, -73.93999965389723 40.839690332359226, -73.94001119528853 40.83969452925912, -73.94039304065893 40.839855038475065, -73.94039623241272 40.839857866773485, -73.94039841766794 40.8398605117515, -73.94040133535337 40.839864854538106, -73.94040363513251 40.83986936990012, -73.94040532409517 40.83987408485602, -73.94040606358647 40.83987716582624, -73.94040665920821 40.83988201619175, -73.94040657895351 40.83988689412333, -73.9404061730141 40.83989001952635, -73.9404050019845 40.83989481494946, -73.94040316706821 40.83989948936342, -73.94040163841377 40.83990244939599, -73.94039982169508 40.83990533994176, -73.94029268508955 40.84004782814115, -73.9401965159142 40.840175732130554, -73.94004238686091 40.84038071517175, -73.93999172185991 40.840448458154434, -73.93996467144594 40.840489961324806, -73.93994160520103 40.84053256156305, -73.93991054319078 40.84058484243718, -73.93986730829133 40.84065052350188, -73.9398417764626 40.84068696035774, -73.93980355074157 40.8407373104095, -73.93979269082777 40.84075161448078, -73.93976379237033 40.84078967765336, -73.93975450299588 40.840800632705935, -73.93974829352517 40.84080439262406, -73.93974039944374 40.84080782118072, -73.93973581278459 40.84080944867731, -73.93973114356525 40.84081058986418, -73.93972624823617 40.84081133021314, -73.93971992200038 40.84081178435773, -73.93971580043842 40.84081177770124, -73.939710336101 40.840811057151996, -73.93970594002147 40.840810421807284, -73.93970147446201 40.84080925963749, -73.93969532946923 40.840807287946475, -73.93968594510075 40.8408026842203, -73.93967977534962 40.84079663418125, -73.93967622648896 40.840792707975424, -73.93967307115479 40.84078762123937, -73.93967057463338 40.84078172170232, -73.93966941677589 40.840777146590646, -73.93966908038335 40.840774143269435, -73.93966889925649 40.84077251778425, -73.93967027326389 40.84076232581899, -73.93973016233464 40.84053906629634, -73.93979224962052 40.84030760798886, -73.93987406673827 40.840002597716285, -73.93990998574225 40.83986303094469, -73.93995213928002 40.83971135036422, -73.93995451072803 40.83970473297169, -73.93995672914997 40.83970213440184, -73.93996142589681 40.83969799097473, -73.93996667675397 40.83969473121992, -73.9399688973614 40.8396936517835, -73.93997262180496 40.83969216610665, -73.9399764669022 40.839690999267155, -73.93998045164308 40.839690130563525, -73.93998457957096 40.839689575306, -73.93998721317689 40.83968939477664)))",M054,4741,M054,M-12A,M-12A,M-12,M-12,"Broadway, St Nicholas Av, W 166 St To W 168 St",112,10,33,10032,M,0.774,False,Mitchell Square,Yes,100005043,PARK,20100106000000.00000,19080722000000.00000,3962 BROADWAY,DPR,True,Mitchel Square,Y,Mitchel Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M054/,No,72,31,13,{7D8C9E90-1451-4313-A06F-882FEB8A3556} +"MULTIPOLYGON (((-73.88624541540219 40.84076819491396, -73.8862541503807 40.840726721377514, -73.887451989541 40.84139371522863, -73.88809898253665 40.84175087900246, -73.8880676128934 40.84178525192672, -73.88744850038492 40.84143970184105, -73.88692463168267 40.841147306114706, -73.88624541540219 40.84076819491396)))",X148I,5603,X148I,X-06,X-06,X-06,X-06,N/B Cross Bronx Exwy bet. Marimon Av and Crotona Pkwy,206,17,48,10460,X,0.027,False,Strip,No,100005207,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/X148I/,No,79,32,15,{E231590B-9DBA-43AA-BAAC-D2F17B15986D} +"MULTIPOLYGON (((-74.0009059513263 40.647499056146614, -74.00248264336844 40.64598724715223, -74.00658102665969 40.64845483222465, -74.00500541066754 40.64996487249211, -74.0009059513263 40.647499056146614)))",B087,5052,B087,B-07,B-07,B-07,B-07,"41 St., 44 St., bet. 5 Ave. and 7 Ave.",307,38,72,11232,B,24.498,False,Sunset Park,Yes,100003843,PARK,20100106000000.00000,18910515000000.00000,4200 5 AVENUE,DPR,Part,Sunset Park,Y,Sunset Park,Large Park,Community Park,http://www.nycgovparks.org/parks/B087/,No,51,17,7,{E692AFE5-AA6C-4440-BAB8-C0E680E06099} +"MULTIPOLYGON (((-73.8702121052178 40.76626306964526, -73.86997221783915 40.76492355655013, -73.87100128360814 40.764817905372624, -73.87111215081137 40.765431991933525, -73.87180955940245 40.76535920237018, -73.87189254360733 40.76581881330984, -73.87154383479682 40.765855196258336, -73.87159149375225 40.7661191567358, -73.8702121052178 40.76626306964526)))",Q373,4881,Q373,Q-03,Q-03,Q-03,Q-03,"100 St., 98 St. bet. 24 Ave. and 25 Ave.",403,21,115,11369,Q,3.827,False,East Elmhurst Playground,Yes,100000140,PARK,20090423000000.00000,19510809000000.00000,98-01 25 AVENUE,DPR/DOE,False,East Elmhurst Playground,Y,East Elmhurst Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q373/,No,35,13,14,{FE80558A-00B8-4825-95A5-2805EA0E0CEE} +"MULTIPOLYGON (((-74.11251898349578 40.609633651903906, -74.11252674298208 40.609631438028366, -74.11254274850421 40.60965628577441, -74.11259931692997 40.60974018515133, -74.11262701346463 40.609786060330705, -74.11266746491002 40.60984761730111, -74.11272229702004 40.60992192595643, -74.11275476415302 40.60995954223994, -74.11280749365089 40.610015958641526, -74.11284074120152 40.610048949052945, -74.11287188399236 40.61007825568453, -74.11293702745878 40.61013514791803, -74.11298153610618 40.61017097917666, -74.11304362396902 40.61021734454787, -74.11311605269118 40.610266707453064, -74.11316642475879 40.610298355347346, -74.1132238025392 40.61033196936261, -74.11333698176749 40.61039141654944, -74.11340558367064 40.61042343448696, -74.11347940143736 40.6104548042613, -74.11357740750464 40.61049187110643, -74.11364018698517 40.610513041564744, -74.11371217982072 40.61053498182599, -74.11378871161129 40.6105556865351, -74.11384859647389 40.61057007791334, -74.11394011687888 40.6105891143161, -74.11399773655458 40.61059931953383, -74.11405731153094 40.61060864567399, -74.11417103661063 40.610623127529344, -74.11424218199579 40.610629577519546, -74.11431541567568 40.610634152302886, -74.11441690529216 40.610637064468584, -74.1144234554305 40.61064415766428, -74.11437210418407 40.6106435883127, -74.11429862676052 40.61064090130214, -74.11417050644498 40.61063095449335, -74.11403824949913 40.610613533710634, -74.11393704319362 40.610596579088956, -74.1138506079045 40.61057856334169, -74.11378892680332 40.61056408459103, -74.11370758528835 40.61054240937483, -74.11363568974312 40.61052070585183, -74.1135802114566 40.61050225405694, -74.11347107144972 40.610461360181134, -74.1133973979882 40.61043007851025, -74.11330755737195 40.61038755980647, -74.11326175861578 40.610363892397224, -74.11321053563387 40.61033570068626, -74.11314684918801 40.61029792886052, -74.11309256417532 40.61026314468716, -74.11302783183346 40.61021822097734, -74.11297402289819 40.610177706257495, -74.11290929466105 40.6101246336521, -74.11286091563491 40.61008144079536, -74.11282923024626 40.61005129540684, -74.11280145416077 40.610023523551405, -74.11274824127894 40.60996634848116, -74.11271416941968 40.60992658242212, -74.11265919737271 40.60985127071841, -74.11261926640468 40.609790045527895, -74.11257630645733 40.609722878943195, -74.11253428647365 40.60965740620446, -74.11251898349578 40.609633651903906)), ((-74.11640003107748 40.61049349230623, -74.11657919539667 40.61047964710694, -74.1165798843774 40.61048511167693, -74.11463710669967 40.61063522142084, -74.11463409150788 40.61062991314872, -74.11463525057577 40.61062984625464, -74.11486506198158 40.61061209176629, -74.11507992759651 40.61059549184398, -74.11536321941966 40.610573604337624, -74.11558068284768 40.61055680185619, -74.11578120383075 40.61054130827982, -74.116031784927 40.61052194651632, -74.11621654249191 40.6105076702891, -74.11640003107748 40.61049349230623)))",R075F,6054,R075F,R-02,R-02,R-02,R-02,"SI Expressway, Slosson Ave. to Schmidts La.",502,50,122,10314,R,0.071,False,Strip,No,100003985,PARK,20100106000000.00000,19530117000000.00000,,DPR,True,Park,N,Park,STRIP,Strip,http://www.nycgovparks.org/parks/R075F/,No,63,24,11,{8050AE41-402F-4C78-B682-4E37947C8C7A} +"MULTIPOLYGON (((-73.98159775544 40.722179272115675, -73.98142360703135 40.72241789806783, -73.98134309403451 40.722383949350906, -73.9815172450102 40.72214532261932, -73.98159775544 40.722179272115675)))",M334,4995,M334,M-03,M-03,M-03,M-03,E. 3 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.06,False,Brisas Del Caribe,No,100004676,PARK,20100106000000.00000,20021120000000.00000,237 EAST 3 STREET,DPR,False,Brisas Del Caribe,N,Brisas Del Caribe,Greenthumb,Garden,http://www.nycgovparks.org/parks/M334/,No,74,26,12,{8258A308-79A7-4991-BE4F-9811EF58746C} +"MULTIPOLYGON (((-73.87181306646414 40.83804065615975, -73.87149564494614 40.836686647035144, -73.87164495469706 40.83670212080493, -73.87190432497059 40.83673228847542, -73.87217662636776 40.83677963782531, -73.87236065069209 40.83681821980934, -73.87245793525801 40.83683765114547, -73.87259665760658 40.83687422317079, -73.87270025023615 40.83691707503159, -73.8728148133219 40.83697384973819, -73.87290706231259 40.83703758848263, -73.87297564216514 40.83710322004125, -73.87302779392999 40.83715567544675, -73.87306113458163 40.83721472606013, -73.87309341316411 40.83728919916598, -73.87311131702138 40.837352400266056, -73.87312136031817 40.83742288131878, -73.8731241811012 40.8374893562291, -73.87312051708366 40.837538637166055, -73.87252262695499 40.83776821093676, -73.87181306646414 40.83804065615975)))",X123,6308,X123,X-09,X-09,X-09,X-09,Noble Ave. bet. Bronx River Av and E 177 St,209,18,43,10460,X,3.21,False,Noble Playground,Yes,100004897,PARK,,19380425000000.00000,,DPR,True,Noble Playground,Y,Noble Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X123/,No,87,32,15,{F2BF61DF-C623-4D93-8C49-765F9AEFB5C1} +"MULTIPOLYGON (((-73.90767976392544 40.65964149458059, -73.90803077295172 40.65958918917122, -73.90807216594082 40.65975083534707, -73.90772182906973 40.65980475784969, -73.90771473224842 40.65977784740947, -73.90767976392544 40.65964149458059)))",B513,5857,B513,B-16,B-16,B-16,B-16,Rockaway Ave. and Newport St.,316,42,73,11212,B,0.138,False,United Community Centers Youth Farm,No,100003701,PARK,20100106000000.00000,20050429000000.00000,,DPR,False,United Community Centers Youth Farm,N,United Community Centers Youth Farm,Greenthumb,Garden,http://www.nycgovparks.org/parks/B513/,No,60,19,9,{F06B6CFB-3C6A-4A88-B416-653E50F5910F} +"MULTIPOLYGON (((-73.88962569102848 40.66822727085686, -73.88969576749989 40.66821685515812, -73.88976613731029 40.66849049226161, -73.88969606056386 40.66850090710239, -73.88963169389334 40.668510474589766, -73.88956447274673 40.668520465245194, -73.88949725039727 40.668530455860214, -73.88943002802773 40.66854044643591, -73.88936334033237 40.668550357340614, -73.88931178257319 40.66834992215423, -73.88937848308953 40.668340008590135, -73.88944570526479 40.66833001804433, -73.88951292623726 40.66832002745804, -73.88958014719108 40.66831003593201, -73.88964451485678 40.66830046937488, -73.88962569102848 40.66822727085686)))",B447,5249,B447,B-05,B-05,B-05,B-05,Blake Ave. and Van Siclen Ave.,305,42,75,11207,B,0.206,False,Causa Festival Garden,No,100004749,PARK,20100106000000.00000,20021120000000.00000,790 BLAKE AVENUE,DPR,False,Causa Festival Garden,N,Causa Festival Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B447/,No,60,19,8,{27939CAA-82D4-411F-9338-0E8603608275} +"MULTIPOLYGON (((-73.88533890673247 40.87795830498275, -73.88534610762035 40.87795788800693, -73.88535278420778 40.877958111657264, -73.88536158746412 40.877959324354535, -73.88536660263959 40.87796051077637, -73.88537081917472 40.877961815269124, -73.88537892460242 40.87796522896498, -73.88538243773762 40.87796714869249, -73.88538607353665 40.87796948636811, -73.88538938515845 40.877971994814374, -73.88539243422821 40.87797471281353, -73.88539712082093 40.87798000333184, -73.88540117637618 40.87798660163237, -73.88540396485593 40.8779945863265, -73.88540571124504 40.87800489414523, -73.88541106159877 40.87803738996354, -73.88541621118723 40.87806866632138, -73.88541774808121 40.87807800050434, -73.88554173077557 40.87883094940993, -73.88523200965827 40.87909937170011, -73.88498624975817 40.878669151318164, -73.88501371629029 40.87860795541829, -73.8850364783887 40.87855724010587, -73.88521113513053 40.87816809161405, -73.88522033298652 40.87814759845292, -73.88527856292316 40.878017856416456, -73.88528441412976 40.878004819565064, -73.88528772381677 40.877997446057506, -73.88529047017812 40.8779913272701, -73.88529212561731 40.87798763871586, -73.88529384099951 40.87798427619781, -73.88529590971089 40.877981037397745, -73.88530000656516 40.87797606897497, -73.88530474062873 40.87797171801961, -73.88531178658872 40.87796689210291, -73.88531572026227 40.877965048210676, -73.88532149788064 40.87796234078167, -73.88532744093963 40.87796069969447, -73.88533294957571 40.87795917794027, -73.88533890673247 40.87795830498275)))",X335,4798,X335,X-07,X-07,X-07,X-07,"Jerome Ave., Mosholu Pkwy, Grand Concour",207,11,52,10468,X,0.806,False,Risse Street Park,No,100004400,PARK,20100106000000.00000,20021120000000.00000,100 VAN CORTLANDT PARK E,DPR,False,Risse Street Park,Y,Risse Street Park,Greenthumb,Neighborhood Park,http://www.nycgovparks.org/parks/X335/,No,80,36,13,{02C28C1E-F07D-4A59-AB72-628F02A94CBE} +"MULTIPOLYGON (((-73.97729201429463 40.61118875265071, -73.9771696281176 40.61112625294075, -73.97726847216103 40.61106807544106, -73.97729201429463 40.61118875265071)))",B231,6562,B231,B-11,B-11,B-11,B-11,"65 St., Ave. O, W. 3 St.",311,,62,11204,B,0.015,False,Samuel Goldberg Triangle,Yes,100006670,PARK,20100111000000.00000,19450625000000.00000,,DPR,False,Samuel Goldberg Triangle,N,Samuel Goldberg Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B231/,No,47,17,10,{31EB6A4C-54E7-4C55-BD2C-2DCFC11187B2} +"MULTIPOLYGON (((-73.89199831529538 40.843429549957406, -73.89109108235458 40.84289578041682, -73.89151502329337 40.8424886129541, -73.89165731083762 40.84257254211536, -73.8919221760856 40.8427287758804, -73.8918885500964 40.842761071184434, -73.89281497301802 40.84330751953502, -73.89191495387894 40.84313877999566, -73.8919105577985 40.84315073623004, -73.8919039549654 40.84316782771119, -73.89189853778274 40.843188635739004, -73.89189487372505 40.84321128331659, -73.89189335198435 40.843229773522744, -73.89189328169437 40.84324675856369, -73.89189432809944 40.84325808865206, -73.89189696647661 40.8432763009025, -73.89189919035029 40.84328617059345, -73.89190141954617 40.84329422489464, -73.89190446270649 40.84330341367974, -73.89190677579622 40.84331019115977, -73.8919106764745 40.843319982277905, -73.89191464491893 40.84332893509998, -73.89191875045316 40.84333744140565, -73.89192335728484 40.843346121976055, -73.89192913592859 40.843355364651565, -73.89193436160657 40.84336266354399, -73.89193980309602 40.843370692037986, -73.89194765028687 40.8433810478592, -73.89195375333834 40.8433876776055, -73.89195944963107 40.84339360278461, -73.89196314015982 40.84339772599856, -73.89196836587188 40.84340281778011, -73.89197457266098 40.84340836522938, -73.89198118349054 40.84341410216024, -73.89199831529538 40.843429549957406)))",X148H,5660,X148H,X-06,X-06,X-06,X-06,S/S E 176 St bet. Crotona Av and Prospect Av,206,17,48,10457,X,1.359,False,Admiral Farragut Playground,Yes,100005153,PARK,20100106000000.00000,19530514000000.00000,,DPR,True,Admiral Farragut Playground,Y,Admiral Farragut Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148H/,No,79,33,15,{1DEACD78-57F2-40BC-A02F-28F8C01AB806} +"MULTIPOLYGON (((-74.08425895306115 40.61534649036083, -74.08400143792316 40.61514636236939, -74.08398839899385 40.615155830072474, -74.08392795910595 40.61510885799903, -74.08385788601508 40.615159737264726, -74.08373118227912 40.615251734130815, -74.0836944968201 40.61522322422746, -74.08361720952753 40.61516315896973, -74.08349660477319 40.615069430326415, -74.083362236987 40.61502680711778, -74.08337091258596 40.61501030237469, -74.08307354882612 40.61491597372973, -74.08316221501593 40.61474728159285, -74.08324886600835 40.614582423462736, -74.08421545854674 40.61493696603794, -74.08456990214569 40.615066970729465, -74.08456381556184 40.61512513267576, -74.08425895306115 40.61534649036083)))",R144,6111,R144,R-01,R-01,R-01,R-01,"Bowen St., Vanderbilt Ave., Targee St.",501,49,120,10304,R,1.137,False,Sobel Court Park,Yes,100003828,PARK,20100106000000.00000,19970923000000.00000,,DPR,False,Sobel Court Park,N,Sobel Court Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/R144/,No,61,23,11,{B6C0ABA2-4BB4-4C76-BBC1-38FAC7BC6032} +"MULTIPOLYGON (((-74.06244078908416 40.617757204139174, -74.0611126833249 40.61594774465211, -74.06098740847698 40.61600988860325, -74.06084869536672 40.615889898344044, -74.0610090219373 40.61580650796233, -74.06071617742624 40.61540750884649, -74.0620147143412 40.61474158355756, -74.06231190817455 40.61458917082234, -74.06241048585622 40.61453861611455, -74.06248112837834 40.61450238759244, -74.06253169509647 40.61447645480225, -74.06258065897813 40.61445134413769, -74.0626271329955 40.614427509046244, -74.06268022840236 40.61440027986325, -74.06272798269407 40.6143757884533, -74.06277869686151 40.61434977982978, -74.06282310022024 40.61432700750414, -74.06290830559108 40.6142833099402, -74.06303302656927 40.6142193469338, -74.06333090316315 40.61406657817458, -74.06337450874905 40.614116259311956, -74.06342256593958 40.61417101241357, -74.0634675261705 40.614222235360586, -74.06351489738303 40.61427620444789, -74.06356200605143 40.614329875588034, -74.0638460791053 40.61418634707187, -74.06393852480453 40.614291668377724, -74.06402075200133 40.61424970064591, -74.06422340006425 40.61452605391906, -74.06414626886273 40.61456506704237, -74.06406479101084 40.61460627710652, -74.0639366394459 40.61467109503129, -74.06418805091793 40.614957712377915, -74.06385677943932 40.61512526504327, -74.06360421297643 40.614837331054595, -74.06344446500019 40.614918128545426, -74.06348301408059 40.6149758666896, -74.06368865204412 40.61521030177587, -74.06295095839985 40.615583409506954, -74.06349166270128 40.616211740672306, -74.06353377500733 40.61622426976737, -74.06356032594839 40.616232729893156, -74.06357498521531 40.616238805706814, -74.06358459134937 40.61624359116561, -74.06359517125938 40.6162484049015, -74.06362126091216 40.61625517408989, -74.06363400676774 40.61626104383514, -74.06365162191933 40.61627121267187, -74.0636667259321 40.61627770516878, -74.06368211975227 40.61628696840642, -74.06370343737719 40.61629599152226, -74.06371762424072 40.61630110492252, -74.06372741124986 40.616305943399794, -74.0637560361296 40.616321763189475, -74.06376526210592 40.61632690004719, -74.06377341357187 40.616330469693175, -74.06378131977766 40.616334604101354, -74.06378798989113 40.61633873919491, -74.06379548458689 40.61634382928326, -74.06380358406562 40.61635111360518, -74.06380509298401 40.61635342260409, -74.06380652417236 40.616356008106095, -74.06380795601069 40.61635927350112, -74.06380777779313 40.61636321698161, -74.06380724623031 40.61636838986947, -74.06380727097826 40.61637202706017, -74.06380934039414 40.61637594317795, -74.06381348358941 40.616379686144974, -74.0638201779429 40.61638321157045, -74.06382688683046 40.6163858697857, -74.06394307540764 40.61644179330734, -74.06402948220097 40.616398089751975, -74.06417260172897 40.616456651873136, -74.06421301647349 40.61647318988592, -74.06355221482649 40.61700011515368, -74.06250064342443 40.617838617422684, -74.06244078908416 40.617757204139174)))",R117,4601,R117,R-01,R-01,R-01,R-01,"Edgewater St., Hylan Blvd., Abbott St.",501,49,120,"10304, 10305",R,15.524,False,Alice Austen Park,Yes,100004686,PARK,20100106000000.00000,19750428000000.00000,2 HYLAN BOULEVARD,DPR,True,Alice Austen Park,N,Alice Austen Park,Large Park,Historic House Park,http://www.nycgovparks.org/parks/R117/,Yes,64,23,11,{7E2D20A0-9670-4B24-83CD-57761CC003C2} +"MULTIPOLYGON (((-73.94283754855454 40.8269190983898, -73.94271378115873 40.827222449889476, -73.94271133350873 40.82722753377087, -73.9427077836986 40.82723222719019, -73.94270323498276 40.82723639332329, -73.94269781905238 40.827239912469615, -73.94269169603717 40.82724268025116, -73.94268504145725 40.827244616610976, -73.94267804977946 40.827245665814885, -73.94267092611909 40.827245796447535, -73.94266387675223 40.827245005909894, -73.94265710674846 40.827243315915865, -73.94265081404028 40.82724077609121, -73.94258810980149 40.827214065914724, -73.94258042240345 40.827210814900994, -73.94257358344797 40.82720660888368, -73.94256779791478 40.82720157313383, -73.94256323638385 40.82719585721886, -73.94256003622422 40.8271896305004, -73.94255829092747 40.82718307942775, -73.94255805367186 40.82717639853435, -73.94255933021397 40.827169785031685, -73.94256208363261 40.827163437010235, -73.94256623196698 40.82715754263264, -73.94276506204562 40.826888220468284, -73.94277137739701 40.826885074570065, -73.9427782954263 40.826882774535754, -73.94278562403133 40.826881385105594, -73.94279315334965 40.82688094579721, -73.94280067472829 40.826881468213514, -73.94280797479415 40.82688293874119, -73.94281484849702 40.82688531495541, -73.94282110266155 40.82688853102425, -73.94282656073062 40.826892495910236, -73.94283106987415 40.82689709787628, -73.94283450335791 40.82690220718833, -73.94283676409586 40.82690768061963, -73.94283778938993 40.82691336415439, -73.94283754855454 40.8269190983898)))",M023,5686,M023,M-09,M-09,M-09,M-09,"St Nicholas Av, W 150 St To St Nicholas Av",109,9,30,10031,M,0.108,False,Donnellan Square,Yes,100005047,PARK,20100106000000.00000,,,DPR/CDOT,False,Donnellan Square,Y,Donnellan Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M023/,No,71,30,13,{22206AFC-0F1B-45E1-983C-A8BB85908A83} +"MULTIPOLYGON (((-73.93088845016617 40.6795828159974, -73.93086749262066 40.679478713816806, -73.93125437147827 40.679499797932834, -73.93126248806598 40.67954011161966, -73.93131752860415 40.67981348760614, -73.93103713070973 40.67984550068158, -73.9309643372078 40.679853812004346, -73.93094349038911 40.679856192162084, -73.93088845016617 40.6795828159974)))",B200,6137,B200,B-03,B-03,B-03,B-03,Stuyvesant Ave. and Fulton St.,303,36,81,11233,B,0.29,False,Elizabeth Stroud Playground,Yes,100003849,PARK,20100106000000.00000,19750206000000.00000,,DPR,True,Elizabeth Stroud Playground,Y,Elizabeth Stroud Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B200/,No,56,25,8,{D1FA1ADA-4343-4399-B549-27F2F363CE65} +"MULTIPOLYGON (((-73.9231967515498 40.69114331703864, -73.92313897327584 40.691110462853636, -73.92307599301016 40.691074652378745, -73.92324590985565 40.690904035682536, -73.92330888886737 40.69093984696494, -73.92336666826023 40.69097270106617, -73.92342155938583 40.691003913381316, -73.92347644938081 40.691035124768824, -73.92353133942711 40.69106633613005, -73.92354289629168 40.691072906750726, -73.92359735481581 40.691018221417636, -73.9236406892167 40.69104286211236, -73.92369847004538 40.69107571604735, -73.92375509346742 40.691107912712035, -73.92380174904157 40.69113444212172, -73.92381457099363 40.69114173486393, -73.923864675432 40.691091423017724, -73.92386727528978 40.69109290248027, -73.92381763431106 40.6911434775843, -73.92359533806919 40.6913699597259, -73.92359019627503 40.69136703504654, -73.92358930955562 40.69136653017028, -73.92353071747547 40.691333215480405, -73.92347409278744 40.691301018705445, -73.9234163142412 40.691268163759744, -73.92336142408253 40.69123695234448, -73.92330653279323 40.69120574000157, -73.9232516415543 40.69117452853286, -73.9231967515498 40.69114331703864)))",B428,5235,B428,B-04,B-04,B-04,B-04,Goodwin Pl. and Grove St.,304,34,83,11221,B,0.348,False,Goodwin Gardens,No,100003758,PARK,20100106000000.00000,19990908000000.00000,46 - 62 GOODWIN PLACE,DPR,False,Goodwin Gardens,N,Goodwin Gardens,Greenthumb,Garden,http://www.nycgovparks.org/parks/B428/,No,54,18,7,{1AE7DB8B-6BDD-450E-87C7-A9A0D20A737E} +"MULTIPOLYGON (((-73.9927469033595 40.76107926328631, -73.99307520111898 40.76121771984752, -73.99289222302825 40.76146851361134, -73.99271201763705 40.76171550622157, -73.99239965941793 40.76158377195404, -73.99257986561102 40.76133677982764, -73.99256392559734 40.76133005653385, -73.9927469033595 40.76107926328631)))",M154,4627,M154,M-04,M-04,M-04,M-04,W. 45 St. bet. 9 Ave. and 10 Ave.,104,3,18,10036,M,0.475,False,Mathews-Palmer Playground,Yes,100004568,PLGD,20100106000000.00000,19370918000000.00000,437 WEST 45 STREET,DPR,False,Mathews-Palmer Playground,Y,Mathews-Palmer Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M154/,No,75,27,10,{F0FE8353-D97D-491F-8F45-392E5422526F} +"MULTIPOLYGON (((-73.98230148671286 40.5738083545706, -73.98217472103578 40.573083763023064, -73.98216311447763 40.57301742047709, -73.98243292663933 40.57298570775636, -73.98270155990453 40.572954132905195, -73.98283960132109 40.572937908145555, -73.98297724671959 40.573724650279935, -73.98297423547635 40.57371438115265, -73.98297002665764 40.573704359492005, -73.98296465567266 40.57369466635032, -73.98295816383613 40.5736853800792, -73.98295060427319 40.57367657633034, -73.98294203837676 40.573668326254165, -73.98293253580798 40.57366069559904, -73.98292217213367 40.5736537465122, -73.98291103236966 40.57364753573905, -73.98289920625781 40.573642111921096, -73.98288678944532 40.57363752099909, -73.98287388112495 40.573633798108155, -73.98286058757625 40.57363097478221, -73.98284701390007 40.57362907355007, -73.98283327228503 40.57362810883672, -73.98281947255927 40.57362808966376, -73.98280612609643 40.573628974683615, -73.98279293175162 40.5736307440398, -73.9827799899112 40.57363338333896, -73.98276739860076 40.57363687368496, -73.98275525584825 40.573641187176285, -73.98274365141593 40.57364629230828, -73.98273267506828 40.57365214857094, -73.98272241066556 40.57365871365242, -73.98271293498479 40.57366593533406, -73.98270432244159 40.57367375959575, -73.98269663682454 40.573682126112196, -73.98268993719894 40.57369097275623, -73.98268427436504 40.573700230195335, -73.98267969203748 40.57370982909587, -73.98267622448388 40.57371969652062, -73.9825659058861 40.57374579684337, -73.98230148671286 40.5738083545706)), ((-73.98065112332588 40.573179516926544, -73.98096547496651 40.5731471262446, -73.98106988869776 40.57388656058983, -73.98108828577 40.57401684790216, -73.9810475804255 40.57402633722462, -73.98097189582616 40.574042837631005, -73.98089460179267 40.5740542056308, -73.98081629830773 40.57406035487063, -73.98077637809583 40.57406218616786, -73.98077558446299 40.57406222205602, -73.98069589779554 40.57349706832592, -73.98065112332588 40.573179516926544)), ((-73.98208188108958 40.57386030960828, -73.98206931700348 40.57378848541541, -73.98183836505775 40.573842327516566, -73.98170473355752 40.573065643522646, -73.98198219515866 40.57303868424629, -73.9821241830126 40.573850301465534, -73.98208188108958 40.57386030960828)), ((-73.97957833978202 40.57330168549922, -73.97978508515195 40.57327177332105, -73.97977115119822 40.573929694089244, -73.9797673639573 40.57410846734611, -73.97956594148106 40.574117705295855, -73.9795678011698 40.573995356766986, -73.97957341521163 40.573625799615314, -73.97957833978202 40.57330168549922)))",B587,39902,B587,B-13,,,,Coney Island Boardwalk bet. W. 16 St. and W. 12 St.,313,47,60,11224,B,2.734,False,,,100024488,PARK,,20161206000000.00000,,DPR,True,Park,,Park,,Undeveloped,,Yes,46,23,8,{DF3A7027-6AAF-4F45-B6C6-98FC74B3B2FD} +"MULTIPOLYGON (((-74.00869209569818 40.6722334178508, -74.00860009456824 40.67193554694102, -74.00880806388082 40.67199836105447, -74.00869209569818 40.6722334178508)))",B126A,5940,B126A,B-06,B-06,B-06,B-06,Halleck St. at Columbia St.,306,38,76,11231,B,0.035,False,Todd Triangle,Yes,100004186,PARK,20100106000000.00000,19340627000000.00000,,DPR,True,Todd Triangle,Y,Todd Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B126A/,No,51,25,10,{A56FA9F4-10AD-4692-96CE-A0D2A1DDB6C0} +"MULTIPOLYGON (((-73.91029662076411 40.852422444470754, -73.91026006760241 40.852403449884626, -73.910562226213 40.85207136253938, -73.91056805421911 40.85207107799965, -73.91057503130789 40.85207085018087, -73.91058013435521 40.85207083342513, -73.91058716626345 40.85207128912139, -73.91059412047198 40.852072202206834, -73.91060094718203 40.852073565438964, -73.91060759422633 40.852075368871986, -73.91061401062747 40.85207759985952, -73.91062015253061 40.85208024035778, -73.91062597252312 40.85208327232029, -73.9106314279434 40.85208667230125, -73.91063647968875 40.852090415957115, -73.91064108747646 40.852094474440996, -73.9106452181383 40.85209881981201, -73.91064884562981 40.85210341783139, -73.91065193678998 40.852108235155235, -73.91065447150399 40.85211323754941, -73.91065643203603 40.85211838537846, -73.91065780183156 40.85212364261002, -73.91065859923195 40.85213036359798, -73.91065913072896 40.85215669979302, -73.91065864459287 40.85218488390961, -73.91065591344461 40.85222723552577, -73.91065025810884 40.85227288788072, -73.91064490066184 40.85230336267674, -73.91063679922591 40.85233982902014, -73.91063006467782 40.85236517714922, -73.91062494446308 40.85238324875391, -73.91060838679371 40.85243158873111, -73.91060115554313 40.85245059521024, -73.9105921438277 40.852472531409646, -73.91058294868719 40.852493287821915, -73.9105731132058 40.85251399420996, -73.91056492980387 40.852530228234855, -73.910556737947 40.852545691431615, -73.91055158671163 40.85255505795482, -73.91029662076411 40.852422444470754)))",X355,5489,X355,X-06,X-06,X-06,X-06,E. Tremont Ave. bet. Grand Ave. and Davidson Ave.,205,14,46,10453,X,0.244,False,Leave it Better Kids' Garden,No,100008341,PARK,20110712000000.00000,20110331000000.00000,1974 GRAND AVENUE,DPR,False,Leave it Better Kids' Garden,,Leave it Better Kids' Garden,,Garden,,No,86,29,15,{DE21A596-95E5-46E8-A24B-081BB04CA874} +"MULTIPOLYGON (((-73.98889582753861 40.66241300534661, -73.98892550719225 40.66238444473302, -73.99006365967918 40.66307147144439, -73.9898617921144 40.66326297290599, -73.98991629156859 40.66330369903654, -73.98996606857803 40.6633400392156, -73.9900202917429 40.66337872830488, -73.99007251440597 40.66341513168586, -73.99012695552406 40.663452213321996, -73.99016824912087 40.66347976454769, -73.99021427737988 40.663509906946125, -73.9902588087711 40.66353851291881, -73.99030376005304 40.663566844252166, -73.99033542644914 40.66358646736215, -73.9903460651102 40.66359288803484, -73.99040410656804 40.663627922968026, -73.9906923920674 40.66380193627171, -73.99065651271351 40.663835971070256, -73.99046860276536 40.66372777305342, -73.99034520375191 40.66365316580961, -73.99024977536756 40.66359344183574, -73.99011004368238 40.663499593425925, -73.98996431106976 40.66339648611552, -73.98982240375427 40.66329056574527, -73.98969261638345 40.663188541918096, -73.9895605445902 40.66307966210639, -73.98942587540587 40.662961668679095, -73.9892916241514 40.66283624317123, -73.98917764516719 40.66272292235165, -73.98902045925975 40.66255425427615, -73.98889582753861 40.66241300534661)))",B255C,6194,B255C,B-07,B-07,B-07,B-07,17 St. bet. 5 Ave. and 6 Ave.,307,38,72,11215,B,0.711,False,Park,Yes,100004632,PARK,20100106000000.00000,19520618000000.00000,,DPR,True,Purple Playground,N,Purple Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B255C/,No,52,21,7,{859B828F-2788-4E3C-AD66-F7D61E19EF7A} +"MULTIPOLYGON (((-74.17362385294396 40.62727270650866, -74.17369077658978 40.627083483292424, -74.1738502872352 40.62701006131759, -74.17425343773695 40.627045135962156, -74.1741531159691 40.627318753852514, -74.17362385294396 40.62727270650866)), ((-74.17397167776559 40.626954185839125, -74.17424426828745 40.626828711299055, -74.17433005394588 40.62683617445152, -74.17427704405308 40.62698075251168, -74.17397167776559 40.626954185839125)))",R050,5743,R050,R-01,R-01,R-01,R-01,"Forest Ave., Elizabet.h Grove Rd.",501,49,120,10303,R,0.39,False,Forest Grove,Yes,100004657,PARK,20100106000000.00000,19380502000000.00000,,DPR,False,Forest Grove,N,Forest Grove,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R050/,No,63,23,11,{96CF62A0-3D3A-479D-A28F-B8231EC7D9CF} +"MULTIPOLYGON (((-73.88599740284238 40.66860086341389, -73.88635180215712 40.66854763244079, -73.88639322269911 40.66870927100778, -73.88629189341196 40.668724491382925, -73.88622565914369 40.668734438739065, -73.8861649942592 40.66874355138635, -73.8861010052228 40.66875316229823, -73.88603878943633 40.66876250657725, -73.88597185477357 40.66877256025491, -73.88591236095856 40.66878149652802, -73.88584653469876 40.668791383735964, -73.88578261418353 40.66880098373257, -73.88568323533462 40.6688159101388, -73.8856418495707 40.66865426594808, -73.88599740284238 40.66860086341389)))",B514,5292,B514,B-05,B-05,B-05,B-05,Barbey St. to Jerome St. between Blake Ave. and Dumont Ave.,305,42,75,11207,B,0.275,False,Nehemiah Ten Garden,No,100004893,PARK,20100106000000.00000,20050429000000.00000,567 BARBEY STREET,DPR,False,Nehemiah Ten Garden,N,Nehemiah Ten Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B514/,No,60,19,8,{8518D21E-1AED-422C-BF90-DAD5265604C6} +"MULTIPOLYGON (((-73.91699019642044 40.80775150025008, -73.91707514817962 40.80762002557685, -73.91775220547268 40.80790441974693, -73.91756576573954 40.8081552383819, -73.91723699948149 40.808017141929525, -73.91732875562765 40.807893711609765, -73.91699019642044 40.80775150025008)))",X285,4684,X285,X-01,X-01,X-01,X-01,E. 139 St. and St Ann's Ave.,201,8,40,10454,X,0.367,False,Padre Plaza,No,100004224,PARK,20100106000000.00000,19970715000000.00000,279 ST ANN'S AVENUE,DPR,False,Padre Plaza,Y,Padre Plaza,Greenthumb,Garden,http://www.nycgovparks.org/parks/X285/,No,84,29,15,{676ABABE-B156-4456-A289-815604F6AE4E} +"MULTIPOLYGON (((-73.82768098151953 40.83394494888329, -73.82815357952616 40.83371375562735, -73.82838005587756 40.83401295124115, -73.82790745772056 40.834244144514706, -73.82768098151953 40.83394494888329)))",X050,5997,X050,X-10,X-10,X-10,X-10,Meyers St. bet. Haskin St. and Bruckner Blvd.,210,13,45,10461,X,0.444,False,Throgs Neck Park,No,100004034,PARK,20100106000000.00000,18440709000000.00000,,DPR,False,Throgs Neck Park,Y,Throgs Neck Park,Parking Lot,Undeveloped,http://www.nycgovparks.org/parks/X050/,No,82,34,14,{CE72B765-B133-4DE0-A61D-79C0E751F9D1} +"MULTIPOLYGON (((-73.89408639642924 40.72490858806566, -73.89445442963887 40.72474328984934, -73.89450728470219 40.72491973014461, -73.89408639642924 40.72490858806566)))",Q360H,5546,Q360H,Q-05,Q-05,Q-05,Q-05,"69 St., 58 Ave., Queens - Mid-Town Exwy. Svc. Rd. S.",405,30,104,11378,Q,0.074,False,Peter Chahales Park,Yes,100000460,PARK,20090423000000.00000,19531229000000.00000,,DPR,True,Peter Chahales Park,N,Peter Chahales Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360H/,No,30,15,6,{FE2DDEC1-4FCB-4E2D-90D0-9B79DB3E0176} +"MULTIPOLYGON (((-73.95055588355632 40.78523527423478, -73.95073679357202 40.784988276635964, -73.95127585954664 40.7852153961393, -73.95109495091421 40.78546239367515, -73.95091665117863 40.78570582874561, -73.95037758245863 40.7854787075793, -73.95055588355632 40.78523527423478)))",M236,4938,M236,M-08,M-08,M-08,M-08,"Lexington Ave., E. 95 St. To E. 96 St.",108,5,19,10128,M,0.786,False,Samuel Seabury Playground,Yes,100004231,PLGD,20100106000000.00000,19631121000000.00000,142 EAST 96 STREET,DPR/DOE,False,Samuel Seabury Playground,Y,Samuel Seabury Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M236/,No,68,28,12,{CEE68D2F-6CD8-4364-B8A0-9D0D87E27E17} +"MULTIPOLYGON (((-73.89237125748325 40.82192773339384, -73.89276760948657 40.821919311112715, -73.89277212159884 40.82203300300862, -73.89237576891898 40.82204142530508, -73.89237125748325 40.82192773339384)))",X365,13887,X365,X-02,,,X-02,Simpson St. bet. E. 163 St. and Westchester Ave.,202,17,,10459,X,0.098,False,,,100003774,PARK,,20160210000000.00000,,DPR,False,Libertad Urban Farm,,Black Joy Farm,,Garden,,No,85,32,15,{E66114BA-530A-48CB-BDF9-15A9773A9281} +"MULTIPOLYGON (((-73.95441182839596 40.803218516572336, -73.9544732248084 40.80324440766483, -73.95429223235716 40.80349208847814, -73.95423077766443 40.803466276511145, -73.95441182839596 40.803218516572336)))",M400,6631,M400,M-10,M-10,M-10,M-10,W 115 St. bet. Fredrick Douglass Blvd. and Adam C Powell Blvd.,110,9,,10026,M,0.043,False,Null,,100016516,PARK,,20141126000000.00000,227 WEST 115 STREET,DPR,No,Garden,,Luigi's Garden of Love,,Garden,,No,70,30,13,{19C7A41A-EABD-48A9-AD9E-04AA9953B248} +"MULTIPOLYGON (((-73.94226119795081 40.714806806799146, -73.94245278586365 40.714791417549385, -73.94247619598805 40.71479997689523, -73.94248319564065 40.71482127926782, -73.94247102174899 40.714841187975466, -73.94228206730916 40.71493132094983, -73.94225585155972 40.71492089700118, -73.94223917959106 40.71482013591709, -73.94226119795081 40.714806806799146)))",B062,6023,B062,B-01,B-01,B-01,B-01,"Metropolitan Ave., Maspeth Ave., bet. Humbolt St. and Bushwick Ave.",301,34,94,11211,B,0.066,False,Memorial Gore,Yes,100004553,PARK,20100106000000.00000,18941023000000.00000,,DPR,False,Memorial Gore,Y,Memorial Gore,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B062/,No,50,18,12,{A26036B5-38A0-4CD3-A60B-A99FDF7F87FA} +"MULTIPOLYGON (((-73.93253754465057 40.75738914528046, -73.93336051659952 40.756373749820334, -73.93393732937686 40.7566865150976, -73.93332796432419 40.75755262482519, -73.93370756683463 40.75774491716214, -73.93332855227484 40.75814007874165, -73.93278012606767 40.75788432813472, -73.9329818711203 40.75763541636375, -73.93253754465057 40.75738914528046)))",Q218,5121,Q218,Q-01,Q-01,Q-01,Q-01,"28 St., Crescent St. bet. 37 Ave. and 36 Ave.",401,26,114,11106,Q,2.4,False,Dutch Kills Playground,Yes,100000349,PARK,20090423000000.00000,19460328000000.00000,36-11 28 STREET,DPR/DOE,False,Dutch Kills Playground,Y,Dutch Kills Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q218/,No,30,12,12,{DC732445-3FFE-4EA7-8DF4-80249F2157F1} +"MULTIPOLYGON (((-73.96103517969611 40.81759168121812, -73.9610283358182 40.817591530323185, -73.96102268997649 40.81759190842437, -73.96101772904878 40.817590593823084, -73.96101732370954 40.81759053245228, -73.96101141428713 40.81758964256444, -73.96100288518456 40.817586986816835, -73.96099589441998 40.81758465846923, -73.96099139607352 40.81758281453122, -73.96084299151828 40.81751719185917, -73.96083255649651 40.817512458906236, -73.96081243832361 40.81750234399492, -73.96081298518862 40.81750159856946, -73.96090622251307 40.81737453771442, -73.96093502238185 40.81733524709662, -73.96094014818156 40.81732825287401, -73.96112335831633 40.81707829186886, -73.96116246637314 40.81702493890791, -73.96135322876775 40.816764673883235, -73.96138231707334 40.81673193616201, -73.9614127846056 40.81669993009831, -73.96144460526531 40.81666869350317, -73.96147774229046 40.81663825607959, -73.9615121624725 40.81660865203426, -73.96154782549348 40.816579911969505, -73.96158469933322 40.81655206558985, -73.96162274249058 40.81652514079581, -73.96166191227603 40.81649917089038, -73.96187304594979 40.81638008715507, -73.96208134766073 40.81625815743004, -73.96211411807688 40.816233721512916, -73.96214588733167 40.81620853514382, -73.96217662696456 40.816182622627636, -73.96220631088735 40.816156005568466, -73.96223490589702 40.816128710971256, -73.9622623906443 40.81610076494418, -73.96228873311286 40.81607219269148, -73.96231391550893 40.81604302122302, -73.96237093701133 40.81597165925626, -73.96242480871243 40.81589890046378, -73.96247547131333 40.815824819571915, -73.96252286550825 40.81574950481427, -73.96256694148109 40.815673032720845, -73.9626424252284 40.81552803756639, -73.96268168338595 40.8154526282528, -73.96275465128872 40.8153058870422, -73.96279350299528 40.815227725637676, -73.9628133656901 40.81518739518113, -73.96283479824213 40.81514388287039, -73.9628562260241 40.8151003723548, -73.96287765496378 40.815056860934774, -73.96289908387494 40.815013350410965, -73.96292051275859 40.814969838982414, -73.96302836148296 40.81474465028814, -73.96314136807509 40.81452092103879, -73.96325950044732 40.814298725950444, -73.96336977825574 40.81409437879417, -73.96348057443382 40.81389019377952, -73.96350963376108 40.81383693316581, -73.96371779175821 40.81389764104361, -73.96380787048066 40.81380764934782, -73.96385292055517 40.813743851544075, -73.96387995327966 40.813700558705094, -73.96390549040242 40.813648149657496, -73.96392502483062 40.81359687875526, -73.96393704989713 40.81355813952239, -73.96394909470159 40.813482936457554, -73.96395060821888 40.8134567288576, -73.96382758835381 40.81341908646075, -73.96395234323961 40.81311784974675, -73.96388781021983 40.81308676959758, -73.96390084789707 40.81305148318929, -73.9639297870144 40.81296286259498, -73.9639551647983 40.81287361323214, -73.96396980690717 40.81281257759373, -73.96398187960544 40.8127512160706, -73.96399137456706 40.81268959619828, -73.96399827517482 40.8126277756041, -73.96400257784467 40.81256582002362, -73.96400427780891 40.812503792490496, -73.96400337385691 40.81244175333783, -73.96399986833032 40.81237976920305, -73.9639983376949 40.812328151310524, -73.96399680943226 40.81227653341826, -73.96399527880112 40.81222491642526, -73.96399375054376 40.81217329763161, -73.96399222110256 40.812121680638114, -73.96399069166372 40.81207006364418, -73.96398916222775 40.81201844574927, -73.96398763516501 40.81196682695416, -73.96398610573382 40.81191520905835, -73.96398457630497 40.81186359116211, -73.96398445638125 40.81182895078568, -73.96398572432493 40.8117943234496, -73.96398838485707 40.81175974157313, -73.96398991014854 40.8117467199546, -73.96398472719267 40.81172054987698, -73.9639788397771 40.81169083792207, -73.96399786227445 40.81169084386376, -73.96400324500156 40.811663211976054, -73.96400952130861 40.81163568662562, -73.96401668407205 40.81160828852158, -73.96402886932319 40.811568448008195, -73.96404268285787 40.811528915070774, -73.96405811517035 40.81148972932767, -73.96407514845968 40.811450928593636, -73.96409376729541 40.81141255068399, -73.96411431089334 40.81137412834536, -73.96414142738992 40.81133603222649, -73.96421045320893 40.811239070082, -73.9642167205105 40.81123026516068, -73.96422447042248 40.8112193778481, -73.9642509771417 40.81118214148854, -73.96428523253718 40.81113401960649, -73.96431948906931 40.811085895913244, -73.96435374318004 40.811037774910176, -73.9643879996131 40.81098965119582, -73.96440812977937 40.81096137548221, -73.96442225481096 40.81094152837107, -73.96457932011164 40.81072461892776, -73.9647370467579 40.810507986818756, -73.9648954382999 40.81029163384348, -73.96505448999099 40.81007556269919, -73.96521420301244 40.809859772483165, -73.96535453287726 40.80965975653958, -73.9654976215561 40.809460872270044, -73.96564345479835 40.80926314127197, -73.96579201953753 40.80906658874518, -73.96594329441535 40.80887123268288, -73.96596962937222 40.80884171042991, -73.9659972202241 40.80881285761122, -73.96602603139854 40.80878470753381, -73.96605604036526 40.80875728360313, -73.9660872115513 40.80873062092718, -73.96611951531476 40.80870474471027, -73.96615290778944 40.80867968555555, -73.96619650366863 40.808644333989804, -73.96620421623429 40.80863807869042, -73.96624009476099 40.80860898240594, -73.9662836881773 40.808573630806094, -73.96632728154634 40.808538280990575, -73.96637087250068 40.8085029275557, -73.96641446696138 40.80846757950816, -73.96645805900778 40.80843222694075, -73.96652161243964 40.808375561764805, -73.96658270618144 40.80831735508831, -73.96664127028231 40.80825766632772, -73.96669724900885 40.80819656480903, -73.96675058070946 40.808134106349165, -73.96680120609506 40.80807036387498, -73.96684907299272 40.808005401310346, -73.96689413278138 40.80793929068452, -73.96692740655872 40.80789177554756, -73.96696067791879 40.80784425949948, -73.96697945544929 40.807817443543414, -73.96699395041736 40.80779674164078, -73.96702722405264 40.80774922557343, -73.96706050001063 40.807701709496776, -73.96709377118111 40.8076541925083, -73.96712704348965 40.807606674609715, -73.9671603169349 40.807559158502514, -73.96719359033308 40.80751164148481, -73.96719674380947 40.80750713538893, -73.96722686131348 40.80746412445651, -73.9672601334311 40.80741660831903, -73.96740921556817 40.80718838687989, -73.96742577757787 40.80716190250586, -73.96749671867421 40.80704845075006, -73.96755312457208 40.80695825652873, -73.96769181660301 40.80672628300886, -73.96782525137628 40.80649253656644, -73.96795940100895 40.80624157173124, -73.96804664605948 40.80607626535167, -73.96805094715286 40.806068116133126, -73.96809208980035 40.80599015877813, -73.96809793060993 40.80597895009043, -73.96812051806278 40.80593559824289, -73.96820382164026 40.80577572245276, -73.96822331776045 40.80573830581651, -73.96822554186659 40.80573401105218, -73.96826922287217 40.805647975958195, -73.96830402264652 40.80557942158194, -73.96831216832325 40.80556337693932, -73.96837607740208 40.805437507509026, -73.96841074765248 40.80536922501329, -73.96843367685574 40.805324069495484, -73.96844774633038 40.805296365910024, -73.96850956005656 40.80517467594088, -73.96855613599851 40.80508505663694, -73.96862275799343 40.804961706494744, -73.96862513375326 40.804957380246, -73.96862920200473 40.80495012783762, -73.9686963588638 40.80483040680493, -73.96880364851901 40.804644166864925, -73.96891376945305 40.80445888391268, -73.96894628064537 40.80441087899098, -73.96897879060491 40.80436287586044, -73.96901130288893 40.804314870019496, -73.96904381275343 40.804266869571336, -73.96907632375903 40.80421886281051, -73.96910883353137 40.80417085874129, -73.96914134562743 40.80412285376268, -73.96917136265996 40.80407838076347, -73.96920138202336 40.804033905955784, -73.96923140134622 40.80398943204047, -73.96926142181367 40.803944959017805, -73.96929143868574 40.80390048598606, -73.96931005927648 40.80387289966582, -73.96932145788868 40.80385601114585, -73.96935147705025 40.80381153899901, -73.96938059135489 40.803768403844174, -73.96939384999261 40.803749992167056, -73.96941406219263 40.8037220631619, -73.96944662698357 40.80367706127099, -73.96947919291469 40.80363206117188, -73.96951175524748 40.80358705926131, -73.96954432227517 40.80354206004396, -73.9695540873959 40.80352856414773, -73.9695768868904 40.80349705721443, -73.96959871044541 40.80346690076724, -73.96960945264462 40.80345205887821, -73.96964156295653 40.80340779972203, -73.96967367085517 40.803363541456406, -73.96968637787153 40.80334602919764, -73.96970577989704 40.80331928138088, -73.96973789244973 40.803275024899, -73.96977000140579 40.80323076570549, -73.96980211150377 40.803186507403474, -73.96980544358019 40.80318191573261, -73.9698342191898 40.803142247290616, -73.96986632801654 40.80309799077078, -73.96989843798683 40.80305373154054, -73.96992093830104 40.803022717031624, -73.96993054672899 40.80300947320118, -73.96996388343698 40.80296455060446, -73.96999722128545 40.80291962709758, -73.97000209715665 40.80291305742679, -73.97003055671841 40.80287470448065, -73.97006389447648 40.80282978185432, -73.97007134936989 40.80281973512379, -73.97009639622846 40.802785983724235, -73.97013056867257 40.80273993657152, -73.97013503187286 40.80273392329622, -73.97016960745877 40.80268724948886, -73.97020089251816 40.80264501698097, -73.97022928598952 40.80260554374655, -73.97026133161833 40.80256099443456, -73.97029337601923 40.802516445113106, -73.97032541919256 40.80247189488158, -73.97035746469149 40.80242734824347, -73.97038950777868 40.80238279889402, -73.97042155437805 40.80233824953628, -73.97045359856487 40.802293699268176, -73.97048825812281 40.80224637882536, -73.97052291881808 40.802199054770064, -73.97055757827745 40.8021517343057, -73.97059223650332 40.80210441202923, -73.97062689823542 40.80205708884242, -73.97066155873395 40.80200976384354, -73.97069621799581 40.801962444236544, -73.97073087602536 40.80191512011599, -73.97076553637486 40.801867797786265, -73.9707976449919 40.80182390750136, -73.97082975593817 40.801780013605836, -73.97086186684056 40.801736123303044, -73.97089397533212 40.801692229388415, -73.97092608378058 40.80164833726555, -73.97095819574173 40.80160444513429, -73.97099030292006 40.80156055389311, -73.9710224136119 40.801516660842594, -73.97105452189133 40.8014727677822, -73.9710885476123 40.801425865725804, -73.97112257565651 40.801378960958125, -73.97115660246702 40.80133205798075, -73.97119062804452 40.80128515499267, -73.97122465712872 40.80123825289557, -73.97125868498115 40.801191348086334, -73.97127009507605 40.80117584703859, -73.9712925500499 40.80114534462568, -73.971319561678 40.80110865601303, -73.97132641981183 40.801099341155954, -73.97133011684782 40.80109431999225, -73.97134020785846 40.8010846277287, -73.97148127444231 40.80090439900998, -73.97159207304482 40.80076804217881, -73.97165609740874 40.80069948583265, -73.9718033794273 40.800587832146704, -73.97197078878642 40.80046640104432, -73.97217969841398 40.8003284537593, -73.97239148690679 40.80018148468111, -73.97256865095507 40.80004105990887, -73.97275969836926 40.79987565919509, -73.97297576084017 40.79966429534199, -73.97322371815301 40.79939699857403, -73.97343116499972 40.79915932376253, -73.97362635853109 40.798934561628535, -73.97379879941174 40.79871853243286, -73.97390034139322 40.79858103030048, -73.9739691228088 40.798481321847035, -73.97401477366793 40.798405446160025, -73.97405930185268 40.798321497223874, -73.974105586765 40.79822045358234, -73.97416476091634 40.798081327085534, -73.97420330022528 40.79797211233335, -73.97424196696055 40.79785786470314, -73.97426376773205 40.79772927103748, -73.974268066055 40.79761150106582, -73.97425825040686 40.797475396471086, -73.97424181098253 40.797339195840166, -73.974219637143 40.79716766191903, -73.97421206323813 40.79704770467095, -73.97422398039816 40.79694313771721, -73.97426127120119 40.79683088436119, -73.97432205121713 40.79673307303693, -73.97441628361005 40.79661501416948, -73.97442960072195 40.79660053258705, -73.97455249018684 40.79647659609447, -73.97463938177545 40.796394271750515, -73.97479314665382 40.796287743943935, -73.97499640877486 40.796162802453395, -73.97506842152264 40.79611519962525, -73.97507986389783 40.796119559617914, -73.97511781994379 40.79613401813724, -73.97514339884701 40.7961437625609, -73.97520147516032 40.79616723398921, -73.97525955506936 40.79619070538894, -73.9752855117867 40.7962010423909, -73.97532262650523 40.79621582574257, -73.97533753535167 40.7962219649387, -73.97535216086196 40.79622848588421, -73.97536648763486 40.79623538137189, -73.9753804931595 40.79624264419305, -73.97539416914593 40.79625026263954, -73.97540749545273 40.796258230403716, -73.97542045667862 40.79626654027833, -73.97543304098008 40.79627517695262, -73.97544522939957 40.796284136820546, -73.97545701009412 40.79629340277029, -73.97546836766038 40.796302972997616, -73.97547929381106 40.79631282768999, -73.97548976958997 40.796322959639475, -73.97549978670706 40.796333356237376, -73.9755093368718 40.79634400667611, -73.97551839757573 40.79635489654302, -73.97552697119211 40.796366015933195, -73.97553504113716 40.796377350435236, -73.97554259793615 40.7963888865398, -73.97554963329907 40.79640061163814, -73.97555614367614 40.79641251132164, -73.97556627078337 40.7964332258626, -73.97557546644958 40.79645418964367, -73.97558372357192 40.796475381952064, -73.97558589677124 40.79648174894529, -73.97559102557145 40.79649677306797, -73.97559736771655 40.79651833867705, -73.97560274171903 40.79654005896678, -73.97560714403402 40.79656190422003, -73.97561056874493 40.79658385012212, -73.97561300875101 40.79660586965664, -73.9756144652436 40.79662794301299, -73.97561552811659 40.79666356250258, -73.97561528809601 40.796684783627114, -73.97561512403699 40.796699191587145, -73.97561325064709 40.79673479064417, -73.97560991269548 40.796770329057594, -73.97560511019334 40.7968057699068, -73.97559885025993 40.796841080775174, -73.97557935581673 40.79692786229985, -73.97555602112934 40.79701409640243, -73.97552887584308 40.797099684932526, -73.97550806620526 40.797156772187975, -73.97549795078972 40.797184527037984, -73.9754546603757 40.797289663762285, -73.97540662692047 40.79739360359335, -73.9753539025879 40.79749622316793, -73.97529655613167 40.797597400927046, -73.97520251487987 40.79774993345968, -73.9751118036786 40.7979036228724, -73.975092891462 40.79792976839235, -73.97506700516317 40.797970143894744, -73.97499159837966 40.798073165411736, -73.97495947726695 40.798121484643076, -73.97492735847857 40.798169801164086, -73.97489523964215 40.79821812127776, -73.97486312076019 40.79826643868063, -73.97485917614517 40.79827237391272, -73.97478874325694 40.79837832750261, -73.97476676501765 40.798411395336146, -73.97473464476423 40.79845971270146, -73.97470252564872 40.79850803095827, -73.97469400713992 40.798523026005654, -73.97468616279338 40.79853823371834, -73.97467900328172 40.798553634287764, -73.97467253335212 40.79856920970511, -73.97466676486081 40.798584943764084, -73.97466169900014 40.79860081845513, -73.97465734407422 40.79861681036711, -73.97465370719749 40.79863290869571, -73.97465079074865 40.798649091829546, -73.97464859710533 40.79866534085868, -73.97464713101586 40.79868163507272, -73.97464639485648 40.798697959163725, -73.9746463850811 40.798714291519005, -73.97464710406604 40.79873061683048, -73.97464855419027 40.798746912586225, -73.97465072835077 40.79876316257571, -73.97465362537052 40.79877934698761, -73.97465724644267 40.79879544601108, -73.97466158090873 40.798811444335335, -73.97466662996207 40.798827321248986, -73.97467238294527 40.79884305873967, -73.97467883631036 40.79885863969701, -73.97468597940093 40.79887404340704, -73.97469380748328 40.79888925456007, -73.97470230752928 40.79890425694418, -73.97471147480692 40.79891903074719, -73.97472129628864 40.79893355795606, -73.97473175894481 40.79894782596081, -73.97474201644002 40.79895940502858, -73.97475275987517 40.798970730261, -73.9747639785925 40.79898178364563, -73.97477565837512 40.79899255797532, -73.97478778856343 40.79900303973996, -73.97480035968071 40.799013220832954, -73.97481335395787 40.799023086842254, -73.97482417344013 40.79903078667416, -73.97489812327511 40.799074367158575, -73.97487908586899 40.799135981478926, -73.9748641359798 40.79918043226947, -73.97484919081124 40.799224881257786, -73.9748342432517 40.79926933294482, -73.97483290627723 40.79927330205389, -73.97481929330365 40.7993137810271, -73.97480395252818 40.79935760317473, -73.97473926021972 40.79953076763489, -73.97466837535697 40.79970252591455, -73.9745913536389 40.799872752845346, -73.97454246644038 40.799972824442165, -73.97447673300745 40.80010738680991, -73.97435581755046 40.800340191238455, -73.97425292274895 40.80052716325225, -73.97414477371633 40.800712414937614, -73.97403141548098 40.80089586074265, -73.97400185617947 40.80094240988184, -73.97397282794309 40.80098839361969, -73.97394380085194 40.80103437644963, -73.9739147689799 40.801080361071804, -73.97388574062283 40.80112634568719, -73.97385371849197 40.801173311159864, -73.97382170105745 40.801220273022366, -73.97378968002091 40.80126723937734, -73.9737586782389 40.801313737695565, -73.9737276764129 40.80136023780617, -73.97369667454356 40.801406737908046, -73.97366567263094 40.80145323800125, -73.9736346706757 40.801499736284775, -73.97360429276308 40.80154430673422, -73.97357391125476 40.801588877174524, -73.9735435332608 40.801633447607315, -73.97351315167141 40.80167801713044, -73.97348277122607 40.80172258754605, -73.97345239311042 40.80176715705336, -73.97342201139827 40.80181172835255, -73.97339163201625 40.801856297842974, -73.97336125377818 40.80190086822578, -73.9733308731294 40.80194543859977, -73.97329849875588 40.80199116564476, -73.97326612552222 40.8020368944816, -73.97323374750462 40.80208262150691, -73.97320137418237 40.80212834942443, -73.97316899963054 40.8021740773322, -73.97313662503426 40.802219805230536, -73.97310424920815 40.80226553401972, -73.97307187570827 40.802311260998984, -73.97303950097854 40.8023569888691, -73.97300712502009 40.80240271492845, -73.97297442619433 40.802449653874696, -73.97296892322674 40.802457549959406, -73.97294943107394 40.802485385209636, -73.9723776471159 40.803297548157815, -73.9723436602086 40.80334503951622, -73.97231049972277 40.803391360414416, -73.97227733445213 40.80343767769959, -73.97224417505872 40.803483999478786, -73.97221101324982 40.803530319446565, -73.97217785021004 40.80357663850365, -73.9721659844042 40.803593212019265, -73.97212748897 40.80364698410191, -73.9721115263618 40.80366927748925, -73.97207836436753 40.80371559921848, -73.97204440144093 40.803761408359854, -73.97201044083994 40.80380721208849, -73.9719764813758 40.803853019409054, -73.97194252067867 40.80389882942051, -73.97190855875171 40.80394463491879, -73.97187460033275 40.803990441308144, -73.97184063831074 40.80403625038778, -73.97180667742784 40.80408205765636, -73.97177271649814 40.80412786491459, -73.97173866225421 40.80417284097938, -73.97170460796312 40.804217819735356, -73.97167055362634 40.8042627975804, -73.97163649805853 40.80430777541477, -73.97160244481519 40.804352752338815, -73.97156839152467 40.804397731954, -73.97153433581957 40.80444270795622, -73.97150028125311 40.80448768484886, -73.97146674968944 40.80453165690417, -73.97143321926653 40.8045756289497, -73.97139968761543 40.80461959828339, -73.97136615828863 40.804663571209616, -73.97133262536227 40.80470754412486, -73.97129909357709 40.80475151612986, -73.97126556293388 40.804795485423575, -73.97123842819397 40.804831069059965, -73.97123203106088 40.80483945560747, -73.97119860824192 40.80488326191783, -73.97116755249738 40.80492315614419, -73.97113583032863 40.80496390476819, -73.97111327274006 40.804992880761674, -73.97110444131475 40.80500422663044, -73.97108620099782 40.80502765843077, -73.97107305107812 40.80504454758305, -73.97104166198817 40.80508486942767, -73.9710102728602 40.80512519126349, -73.97097784675397 40.80516548941649, -73.97094541942378 40.80520578665927, -73.9709129908681 40.805246086593925, -73.9708805634594 40.80528638381796, -73.97070994485296 40.80550237017016, -73.97061087018473 40.805627991499236, -73.97053952893465 40.805718449065765, -73.97052162035365 40.80574119557967, -73.97037941964821 40.80592180000551, -73.9701993229398 40.806150894400815, -73.97009822787588 40.80627966739913, -73.96999721180805 40.80640847364516, -73.96983980499452 40.80661142919836, -73.96968311407115 40.80681470259441, -73.969657476614 40.80684816916997, -73.96952714259724 40.80701829473761, -73.9693718858374 40.807222203828644, -73.96921242475081 40.80743834304783, -73.96905465940047 40.807655202892875, -73.96889859809968 40.807872770765975, -73.96874424560282 40.80809104217269, -73.96865822958671 40.808214060172254, -73.9677646844641 40.8095870074169, -73.96776111081432 40.80959267955404, -73.96773064877826 40.80964102506422, -73.9677001855123 40.809689371466085, -73.96766972220209 40.80973771785957, -73.9676423350316 40.80978224519628, -73.96761494545459 40.80982677162503, -73.96758755821128 40.80987129804758, -73.9675601685601 40.80991582626367, -73.96753278242912 40.809960351772446, -73.9675053927042 40.81000488087537, -73.96747800531388 40.81004940817113, -73.96734896267515 40.81025432408756, -73.96730242303782 40.810324508298834, -73.9672144364181 40.81045719596492, -73.96707448580742 40.810657936452856, -73.96691792456232 40.81085028566471, -73.96675466296057 40.81103939543736, -73.96658482311213 40.81122512980282, -73.96645391399377 40.81137968111005, -73.9663248906431 40.8115351459203, -73.96631062499358 40.81155269245016, -73.96619776492739 40.811691509835356, -73.96610127765297 40.811812387708045, -73.96600592163502 40.811933785418375, -73.96585377955553 40.81211289623659, -73.96570129895687 40.812291841056854, -73.96554847983691 40.81247062077829, -73.96548369702367 40.81254617114598, -73.96534508152308 40.812706904371844, -73.96523200648309 40.81283670854443, -73.96506905717432 40.81302436796645, -73.96500279595458 40.81310092526609, -73.96490647901173 40.813212210967144, -73.96474426844057 40.81340023934799, -73.9646098153608 40.813561194463645, -73.96447909419139 40.81372391284147, -73.96435215001218 40.813888350383486, -73.96421776006702 40.8140649583922, -73.96419422817233 40.81409588316552, -73.9640403520285 40.8143051639509, -73.96389054889386 40.81451614413739, -73.96372638895002 40.81475545194686, -73.96356402310974 40.81499546607031, -73.96352349298199 40.81505622600091, -73.96347451319588 40.815129653233804, -73.96340345613275 40.81523617841223, -73.96327759195398 40.81542239089379, -73.9631493179388 40.815607652438025, -73.96301864475099 40.815791943229485, -73.96283537924235 40.81602219269837, -73.96283228955204 40.8160258396155, -73.96275947001095 40.816111808171016, -73.96264371459323 40.816248462552565, -73.96252214772264 40.8163863684178, -73.96239509290595 40.816521390772266, -73.96226266517198 40.8166534017651, -73.96212183103461 40.816791270275075, -73.96197724377548 40.81692687442409, -73.96189510508914 40.81700978126113, -73.96180807498843 40.817091785021184, -73.9617202946334 40.81716922384742, -73.96162781497404 40.81724558674947, -73.96153934003377 40.81730795088958, -73.96144845756739 40.817368283536155, -73.96135524821133 40.81742652617832, -73.96125978785618 40.817482630209156, -73.96116216780499 40.81753654252458, -73.96106058230745 40.81758917111051, -73.96105557623859 40.817590051006036, -73.96104883131838 40.817590939318926, -73.96104202140796 40.8175914827192, -73.96103517969611 40.81759168121812)), ((-73.97518688002987 40.79916292714999, -73.97519232587861 40.79914469861386, -73.9751995364359 40.79914480732484, -73.9752093456475 40.79914492920128, -73.9752203860258 40.799145122481036, -73.97523354425586 40.79914452557634, -73.97524662425326 40.79914399258883, -73.97526556634448 40.79914345275334, -73.97528447662417 40.799142419434276, -73.97530332902276 40.799140891725585, -73.97532210102382 40.7991388732245, -73.97534077366535 40.799136369329936, -73.97535931613912 40.7991333755329, -73.97537771777627 40.79912990173665, -73.97539595013693 40.79912594793522, -73.97541398833262 40.79912152402877, -73.97543182169838 40.799116629114785, -73.97544343460726 40.79911309532843, -73.97552459393322 40.799083691475516, -73.97556766541175 40.79906459832057, -73.97560115812489 40.79904705738418, -73.97563364473743 40.79902638158715, -73.97566665418981 40.799001683360714, -73.97570323904544 40.79896951983832, -73.97573492575941 40.79893575958838, -73.97575638886195 40.79890745510632, -73.97578179848222 40.798867808759425, -73.97580951348996 40.79881986749036, -73.97582803957779 40.79878011523004, -73.97584074693543 40.79874172960568, -73.9758528818947 40.79869039467862, -73.97586494258435 40.79861507223139, -73.9758711440544 40.79854824386711, -73.97587076437073 40.79851364569984, -73.9758732604606 40.798463093085694, -73.97587571236294 40.79841347878221, -73.97587825144342 40.798361989656726, -73.97587851725407 40.79830862251375, -73.97587878543294 40.79825525897281, -73.97587905124372 40.79820188912742, -73.97587931705283 40.79814852288358, -73.97587958523236 40.79809515393828, -73.97587984866996 40.79804178949406, -73.97588261656999 40.79798664348491, -73.97588356483574 40.7979694639541, -73.97588429536579 40.79796454828021, -73.97588892534223 40.7978916204962, -73.97589627355191 40.797818815747604, -73.97590632574064 40.79774620517024, -73.9759190759587 40.797673833787265, -73.9759246271671 40.79764844086006, -73.97594877730857 40.79753796721484, -73.97598404514596 40.797402869017375, -73.97601531624979 40.79730001686488, -73.97602484621024 40.797268676959405, -73.97605138955313 40.797191365582165, -73.97614512435031 40.7969406787218, -73.97623464521497 40.79677847850615, -73.97632532306747 40.79664698639403, -73.97640750921772 40.79654257860037, -73.97651321823861 40.796408284354676, -73.97652298881088 40.79639587565813, -73.97671180568528 40.79616376603229, -73.97691708341948 40.79596908325659, -73.97698803263246 40.79591195352837, -73.97706909134554 40.79585517246007, -73.97708314011015 40.795843838862304, -73.97716366308403 40.7957870333069, -73.97725403291025 40.7957258270948, -73.97733783601123 40.795670842874586, -73.97740748832311 40.795627454257875, -73.97746107734241 40.79559599588257, -73.97752710155928 40.79555881633036, -73.97759993401226 40.795518737553515, -73.97773861395888 40.79544457043821, -73.97784814194932 40.79538242193086, -73.97789063824577 40.795359183686465, -73.97791459533643 40.79534682351579, -73.97794066998843 40.795334059420995, -73.97804134005325 40.79528734630266, -73.97808314563542 40.795267049788436, -73.97820780281548 40.79520219510983, -73.97829400862959 40.795158167927, -73.97838187739154 40.79511217970255, -73.97839767520448 40.79510293903307, -73.97841156996205 40.79509397715994, -73.97842718943626 40.79508291384121, -73.97844313632346 40.79507066462321, -73.9784602260553 40.79505655878577, -73.97847854753682 40.795040474777494, -73.97849662037153 40.79502379548944, -73.97851327119358 40.795007478834904, -73.97853120132362 40.794988670732955, -73.97854795132783 40.79496970932357, -73.97856353069174 40.79495057749949, -73.97857894815064 40.79493009129127, -73.97859290213984 40.794909928989135, -73.97860546615291 40.79489000325874, -73.97861661529679 40.79487035011591, -73.97862640766449 40.79485087141732, -73.97863615926491 40.794829180181964, -73.97864406187458 40.79480916443354, -73.97865032776751 40.79479028030978, -73.97865502573671 40.79477231890769, -73.97865844893366 40.79475378455137, -73.9786606697127 40.79473444492534, -73.9786616429225 40.79471469353979, -73.97866136496843 40.79469465826507, -73.9786600920713 40.79467715771345, -73.97865777130339 40.794660968996176, -73.97865397357859 40.794642874547385, -73.97864852371521 40.79462230791999, -73.97862425122396 40.79454432642797, -73.97861643364867 40.794524710287575, -73.97860773724615 40.794507656806424, -73.97859646174288 40.794489316031225, -73.97858365166346 40.794471417115226, -73.9785698494745 40.794454632832284, -73.97856569436114 40.794449972872755, -73.97862289740654 40.79439879727603, -73.97904470004104 40.79402142475031, -73.97913794842368 40.79393799953054, -73.97932353628414 40.79374632101087, -73.97948452102587 40.7935866848079, -73.97959551434654 40.793467910536094, -73.97974224070292 40.793302594688534, -73.9798607058075 40.793172983949816, -73.97999276012648 40.79301839917349, -73.98018445815798 40.792782597592094, -73.98033892986676 40.79259550460136, -73.98047573951747 40.79242347737913, -73.9806693423968 40.7921690979715, -73.98082571717202 40.79196342640781, -73.98100641625834 40.791706669649244, -73.98117814812879 40.79146291616004, -73.98136645453494 40.7911898528971, -73.9815311225103 40.790940523622595, -73.98166169101675 40.79073009930941, -73.98176685424185 40.790556516605236, -73.98189185587522 40.790338349534885, -73.9820062588339 40.790140822842325, -73.98210870640759 40.789960633314166, -73.98219485141941 40.7897988131864, -73.9823051806267 40.7895913773427, -73.98242502641797 40.789349057441754, -73.98259392937976 40.788988156084194, -73.98275002700188 40.78862518049093, -73.98300491108856 40.78797609503273, -73.98320208290977 40.78749439647324, -73.98322660531613 40.787419146981264, -73.98329732518084 40.787259628102525, -73.98337445148331 40.78710183456025, -73.98345791424639 40.7869459140139, -73.98354763401726 40.786792014120564, -73.9836255790852 40.78667256024917, -73.98371165641632 40.786556376291465, -73.98380562895217 40.78644378277439, -73.9839072395021 40.78633508941542, -73.98397393960491 40.78627684979549, -73.9840462247272 40.78622259742816, -73.98412368250271 40.786172639317165, -73.98420587451062 40.7861272608509, -73.98429233153794 40.786086718598234, -73.98438256305643 40.78605124481246, -73.98441068765729 40.78604148898885, -73.9845342352827 40.78600086871931, -73.98465944661844 40.78596330754097, -73.98466379136188 40.785962068129116, -73.98470117360205 40.7859466060897, -73.98473499662582 40.785926972445345, -73.98476446062239 40.785903629951015, -73.98478887002115 40.78587713052547, -73.98480764652743 40.78584810084447, -73.98482034689657 40.78581722703419, -73.98482667241512 40.785785237562735, -73.98482647127256 40.78575288973272, -73.98480894410187 40.78569628101841, -73.98478453668702 40.78561592247451, -73.98476692166095 40.7855345436541, -73.98476689089924 40.785534362649294, -73.98476359248816 40.78551410723938, -73.9847635593662 40.78551388571168, -73.9847518316909 40.78541028689743, -73.98474858800432 40.7853063353064, -73.98474909144444 40.785280785451064, -73.98475053384593 40.78524720685066, -73.98475284984185 40.78523753487309, -73.98476562453656 40.78514549452723, -73.98478586399122 40.78505423139643, -73.98481348871968 40.7849640939604, -73.9848483943589 40.784875427992596, -73.98489914779087 40.7847300117957, -73.98491163230896 40.78469903168264, -73.98491165127574 40.78469898215754, -73.98493204440875 40.78464959682991, -73.98501943463474 40.78445272891051, -73.98511559662045 40.78425823757488, -73.98522042125559 40.7840663497136, -73.98533378403424 40.78387728771137, -73.98545555571745 40.783691271249204, -73.98630985895143 40.78252678336059, -73.98683053260885 40.781798992843356, -73.98706573639657 40.781540186463666, -73.98737573877834 40.781214059993665, -73.9876140652118 40.780977902236565, -73.98794844690067 40.78111773159549, -73.98814336553033 40.78119924903045, -73.98821296387393 40.7812283540852, -73.98994830571301 40.78195407619285, -73.9875457124666 40.78492000078392, -73.98733938785743 40.78517468689039, -73.98624976248398 40.786461464663084, -73.9851653669357 40.787701770311195, -73.98468242255304 40.78825413290673, -73.98278288218212 40.79039933830811, -73.98191772849047 40.79142586550879, -73.98149260039403 40.792000501859874, -73.97860735782263 40.795891196449794, -73.97847264227086 40.79607284359383, -73.9783125182685 40.79628875071244, -73.97719570840863 40.79780605082095, -73.9768298673963 40.797667317146484, -73.97577513636672 40.79916139175636, -73.97516680905188 40.80006449187713, -73.97507842530267 40.80019023651855, -73.97310696212725 40.80299202649233, -73.9719567455109 40.80462613948614, -73.97190726274782 40.804631484504064, -73.97154510524015 40.80513697696766, -73.9687515603854 40.80884053494675, -73.96824232327002 40.80960789105005, -73.96777417326028 40.81033771635468, -73.96737173327746 40.81100901783947, -73.96647274720965 40.81234108835423, -73.96601710613076 40.81297195149348, -73.96558457660933 40.81356197041332, -73.96504211301102 40.81437000706508, -73.96465328788882 40.81497744041224, -73.96421026548397 40.815663388821136, -73.96371861399675 40.81628761361369, -73.96317944714951 40.81688521140491, -73.96263120673723 40.8174445424745, -73.96212684492949 40.817942858652884, -73.9620908337916 40.81797843714745, -73.96207978280947 40.81798935563733, -73.96207969860438 40.817989439355834, -73.96196941158871 40.817942772615076, -73.96196944361174 40.81794273840678, -73.96197391727506 40.81793808431462, -73.96200101186986 40.817909886090106, -73.96207030134349 40.81783777461986, -73.962252036819 40.81767080833666, -73.96246818632301 40.817460452630584, -73.96302287603041 40.8168844391005, -73.96326461279266 40.81661497336268, -73.96357057488626 40.81626714006418, -73.96380474445397 40.81597926011738, -73.9640205420984 40.815703311838824, -73.96418103126345 40.81547078414977, -73.96435213368035 40.81521553276663, -73.96449235930227 40.81499033290818, -73.96462065925648 40.81476038269218, -73.96482437630857 40.81440647040953, -73.96498185212154 40.81413424132004, -73.96512435102068 40.81389839746781, -73.96531837135373 40.81360992677079, -73.9654955242759 40.813353237341836, -73.96564500069886 40.81315867550393, -73.96593561618683 40.81278163163987, -73.9662135299552 40.81243032942186, -73.96650849918989 40.81203962119789, -73.96678131455037 40.81165163792406, -73.96698385130493 40.81134346118777, -73.9671742685611 40.811038156820224, -73.9674355384721 40.81063017489953, -73.96770950261131 40.81019645068608, -73.96809410434498 40.80959504594727, -73.96842034940796 40.80907819776283, -73.96896500574253 40.80825950215093, -73.96927927520792 40.80781873759163, -73.96967422681692 40.807283062880735, -73.96999188197513 40.80686674843107, -73.97028869612545 40.80648063312403, -73.97051466093276 40.80619719626294, -73.97078646418713 40.80584731919487, -73.97114330883753 40.80538886897811, -73.97160374978404 40.804802287842534, -73.97200055659363 40.80427120871752, -73.97228503863319 40.80389558493399, -73.97262596521372 40.803430796556, -73.9729920811565 40.802922144341814, -73.97301914530333 40.802883993844134, -73.97336046747998 40.802402847553026, -73.97364192182783 40.80198752111809, -73.97392526452614 40.80157679684667, -73.97413834635604 40.801245883549385, -73.97431392557542 40.8009693300225, -73.97446052966087 40.80072743451332, -73.97461168410099 40.800464252011345, -73.97470847838707 40.800287213544635, -73.97481626669875 40.800072205144374, -73.97489881760553 40.799875889109074, -73.97496397620614 40.799729296601754, -73.97504702704528 40.799531035480044, -73.97511180827384 40.79936511448282, -73.97512779844294 40.79932386335996, -73.97514241434261 40.79928490460951, -73.97515981780751 40.79923823548213, -73.9751772200613 40.799191570854, -73.97518688002987 40.79916292714999)), ((-73.97691756623625 40.79440916542041, -73.97695831579234 40.79428981049783, -73.97701647324965 40.79407884576003, -73.97704855862821 40.79391797511836, -73.97706578495264 40.79376189036747, -73.97708572441647 40.79343413660854, -73.97709628983644 40.793296759308014, -73.97711609165573 40.79316867159646, -73.97713804571619 40.793080262144834, -73.97716827146654 40.79298789122527, -73.97722868896044 40.792853338731135, -73.97731005808816 40.79271208160223, -73.9773852601241 40.79261132500257, -73.9775081275012 40.7924831169083, -73.97758408282783 40.79241672161179, -73.97770921541779 40.79231530542445, -73.97781254469034 40.7922435491853, -73.97792744040939 40.792175019759966, -73.97805256073664 40.79210783571331, -73.97820862325274 40.792036986945114, -73.97840293188082 40.79197150491584, -73.97851597333117 40.79193261362176, -73.97866418567584 40.791868034756334, -73.97883942604345 40.79178623769527, -73.979017832208 40.7916846362386, -73.97926601950873 40.79150609661881, -73.97939494163208 40.79139337078516, -73.97949438011456 40.79129495391842, -73.97958624122606 40.79119280484929, -73.97971027304995 40.791027353489625, -73.98041411756428 40.79006264926518, -73.98044144580157 40.79007330772851, -73.98049044892664 40.790007752386394, -73.98046209425472 40.7899944291793, -73.980623271507 40.78977599493935, -73.98083921739408 40.78947677846595, -73.98092449449477 40.789354704529984, -73.98099354679493 40.78923193086661, -73.98103390883657 40.78914264296429, -73.98108015451922 40.78902821583305, -73.98110499575417 40.78894629325123, -73.98113329037604 40.78884010543434, -73.98115043454679 40.788743228764716, -73.9811641600422 40.78865649477328, -73.98116931939121 40.788570017823524, -73.98132085695356 40.786765238714764, -73.98133146278153 40.78665585116647, -73.98134332054963 40.78660676587275, -73.98135725995878 40.786549061317835, -73.98138539913177 40.78645562176872, -73.98142767657804 40.78635113624254, -73.98147924222495 40.78624702049721, -73.981548377271 40.78614379813702, -73.9816243496756 40.78604340259676, -73.9817096927392 40.78595753897927, -73.9825854862752 40.78513432296625, -73.98259778005732 40.78512586281278, -73.982605526903 40.78512171447243, -73.9826137261742 40.785118102898544, -73.9826387372613 40.785112546974176, -73.9826646159071 40.785110231178486, -73.98269064059865 40.78511121933808, -73.98271608747716 40.78511548432933, -73.98274024455462 40.78512290717977, -73.98276244251525 40.78513328157533, -73.98278205945283 40.78514631746276, -73.98280151380148 40.78516505709764, -73.98283837881596 40.78521194178874, -73.98286940728022 40.78526120742613, -73.98289433391184 40.785312436142505, -73.98291294674343 40.78536519206777, -73.98292508949135 40.7854190267321, -73.98292808962653 40.78544062119616, -73.98293001795209 40.78544689347288, -73.98295275370305 40.78559230527311, -73.982970525389 40.78573811525414, -73.98298331997005 40.785884227062816, -73.98299015877839 40.78610961450671, -73.9829900862893 40.78636089213034, -73.98296550810589 40.786594429855576, -73.98294584114421 40.78679801132586, -73.98291558266266 40.787009341829034, -73.98286079416795 40.78728669160301, -73.98280149231375 40.7875781992419, -73.98275203475511 40.787726036092835, -73.98265972538155 40.788057859521665, -73.98256204084268 40.78831296748031, -73.98238982122396 40.78870816299376, -73.98208797109524 40.7894008068533, -73.98142342647267 40.790581874789225, -73.98065242145347 40.791737033274, -73.98043634570143 40.792043136297735, -73.9801492742744 40.792406694822745, -73.97966846102558 40.79297628636406, -73.97944566251854 40.79324246711518, -73.97931986043129 40.7933774421902, -73.97921335001007 40.793489715396035, -73.97885298341043 40.79384049008077, -73.97879527189546 40.79390164954666, -73.97834378535849 40.7943060738175, -73.97832316023981 40.79432330731147, -73.97831897549824 40.7943223817109, -73.97829780278144 40.794318315570834, -73.97826687740701 40.79431365235786, -73.97822225496115 40.79430811036296, -73.97818802211594 40.794304804457845, -73.97815494419471 40.79430256495351, -73.97811733732543 40.7943012070699, -73.97808224917803 40.794300948263, -73.97805085871315 40.79430180676967, -73.9780214892991 40.794303802984636, -73.97799566723411 40.79430646083644, -73.97797048595487 40.7943098419064, -73.97794606395469 40.79431393180964, -73.9779224924751 40.794318714355136, -73.9778852222224 40.79432772211579, -73.97786227351254 40.79433393296144, -73.9778429600145 40.79434025616337, -73.97782671525827 40.794346967167456, -73.97781725938354 40.79435179292848, -73.97780834716472 40.794357245541406, -73.9777992663382 40.79436375170617, -73.97778981897326 40.79437146987257, -73.97773275442194 40.79442475765595, -73.97770523565012 40.7944518195649, -73.9776223638168 40.794537128579805, -73.97755718044986 40.794606857827674, -73.97746965833728 40.794703703030585, -73.97732948670482 40.79486124142299, -73.97724444716346 40.7949590315638, -73.97716134006492 40.79505649964436, -73.9770703218686 40.79516547357809, -73.97697915727349 40.79527890578375, -73.97695434231562 40.795307925736616, -73.97692499978791 40.79534037027917, -73.9768770632404 40.79539088771953, -73.9768427372135 40.79542582292399, -73.97679089258288 40.79548686188327, -73.97671575091012 40.795542074383384, -73.97671887696238 40.79554475760383, -73.97665713258385 40.79557752961338, -73.97661451725654 40.795600680029686, -73.97656733729013 40.795617982556955, -73.97655231140192 40.79562124561412, -73.97651696619393 40.795628920582566, -73.97648240117977 40.795631750109806, -73.97646491283514 40.79563220579519, -73.97641130429152 40.79563040914558, -73.97640318102809 40.79562892976266, -73.97638246291586 40.795625158728654, -73.97636189312546 40.79562081050097, -73.97634708316295 40.79561661113366, -73.97634200164714 40.79561495046964, -73.97631353023475 40.79560564696166, -73.97630439732525 40.7956011272769, -73.97626963683776 40.795583921479555, -73.97625268063095 40.795560846281305, -73.97624017317266 40.79553618441641, -73.97623235837506 40.79551042941047, -73.97622940193797 40.79548409368302, -73.97624758467856 40.79541036990697, -73.97633191355636 40.795320857757005, -73.97646134478592 40.795173850642215, -73.97658185919266 40.79501290092851, -73.97672751676322 40.79478045286744, -73.97685071264539 40.79456434778143, -73.97691756623625 40.79440916542041)), ((-73.9830269222774 40.78496786362456, -73.98286665337363 40.78489978452308, -73.9828086970325 40.784875166091936, -73.98428691864325 40.78346029859113, -73.98430679197355 40.78347039862247, -73.98434676833966 40.78344081988335, -73.98437210853176 40.783427944349896, -73.98441162201368 40.783411891058066, -73.98444424208105 40.7833993388727, -73.98448039144868 40.78338129499471, -73.98450042861771 40.78336955785306, -73.98452674514812 40.783350706688715, -73.98455068860865 40.783327205010316, -73.98457094527735 40.7833036920273, -73.98459552506928 40.78326404263113, -73.98463710641661 40.783198650158255, -73.98466601150211 40.7831484870669, -73.98467814926221 40.78310484047064, -73.98468175006741 40.783071677278, -73.98468030079601 40.78303733735882, -73.9846687714419 40.78298557139356, -73.98466329962478 40.78294838355251, -73.98466552525676 40.78291926522967, -73.98466858729196 40.782905520380965, -73.98467136234984 40.78289299657409, -73.98467363348581 40.782882331335436, -73.98467026048183 40.78287802198669, -73.98466238799622 40.78287384891536, -73.98468694468741 40.78281524033353, -73.98474749167656 40.7826707313631, -73.98480106511249 40.78254286270832, -73.98510643580988 40.78181401310474, -73.98538978327595 40.781137709506126, -73.9856685048602 40.78047243391383, -73.98641496841893 40.78078086698392, -73.98662334685443 40.78086696673179, -73.9870760982543 40.78105403552078, -73.98687002623488 40.78131700468134, -73.98617086173839 40.782284826285306, -73.98560179261077 40.783074987276954, -73.98542489535122 40.78331345746981, -73.98528916067552 40.783475905103984, -73.98514753090902 40.7836354197819, -73.9850001174185 40.78379187722735, -73.98484703275842 40.7839451558654, -73.98468839541 40.784095136823325, -73.98452432978085 40.78424170573142, -73.98442289345165 40.78431743323738, -73.98427304056702 40.784420415834774, -73.98410522941771 40.784527660534735, -73.98394219158162 40.78462253636733, -73.98381703795937 40.784689693559436, -73.98365891323259 40.7847665488464, -73.98356006114764 40.784814400034634, -73.98350387664215 40.78483892706502, -73.98345035887473 40.78485883397867, -73.98337030980913 40.78488560876755, -73.98320840457254 40.784935272251815, -73.98308559298168 40.78496057999101, -73.98303833825395 40.784972712703805, -73.9830269222774 40.78496786362456)), ((-73.96230446521498 40.81378103788913, -73.9623279845803 40.813717067947614, -73.96235389900112 40.813666137082684, -73.96238212182007 40.8136159201586, -73.96239861527539 40.81358917986907, -73.96241261862788 40.813566475694685, -73.96244535382846 40.81351786581195, -73.96248028708766 40.81347014812721, -73.96251142137358 40.8134270829664, -73.96254130659733 40.813385744544945, -73.96258962936199 40.813318909114926, -73.9626048251723 40.81329789193462, -73.96263596048126 40.81325482854036, -73.96266709456572 40.81321176333601, -73.96279883944904 40.813030304376305, -73.96293191075165 40.812849405796726, -73.96306630253856 40.812669070292394, -73.96320201242649 40.812489307763435, -73.9632132961013 40.81247355355957, -73.96322526821756 40.812458095837776, -73.96323791217296 40.812442950801604, -73.96325121136528 40.81242813465441, -73.96326515630355 40.81241366360192, -73.96327973038522 40.812399554748055, -73.96329491345242 40.81238582429512, -73.96331069246084 40.81237248484569, -73.96332704843694 40.81235955440348, -73.96334396478278 40.81234704196786, -73.96336142015166 40.81233497094484, -73.96337939557766 40.812323345830556, -73.96339787208713 40.81231218552921, -73.96341710101915 40.812301355946246, -73.96341737488257 40.812301211953546, -73.96343624537076 40.81229129805952, -73.96345610064851 40.81228159699195, -73.96347636809574 40.81227240393212, -73.96349702755877 40.812263728778824, -73.96351805651241 40.81225558323128, -73.9635242135508 40.81225367792572, -73.96353045109595 40.81225193203334, -73.96353676559124 40.812250347354045, -73.96354314518115 40.81224893018751, -73.96354958512589 40.81224767873119, -73.96355607831369 40.8122465938834, -73.9635626152615 40.81224567834262, -73.96356919122692 40.81224493480882, -73.96357579554463 40.81224436057709, -73.96358242347291 40.81224395744697, -73.9635890631581 40.8122437281162, -73.96359570867622 40.812243668980884, -73.96360235528357 40.81224378544256, -73.96360899350083 40.812244072995775, -73.96361561384691 40.81224453073691, -73.96362220920871 40.812245162265846, -73.96362877247782 40.81224596217726, -73.96363529535542 40.81224693497115, -73.96364177310464 40.81224807344191, -73.96364819387091 40.81224938208837, -73.96365455054598 40.812250855505326, -73.96366084194568 40.81225249189138, -73.96366705384746 40.812254291242056, -73.96367318032681 40.81225625085409, -73.96367921664387 40.81225836892494, -73.96368515213426 40.812260640948715, -73.96369098442854 40.81226306512383, -73.96369670167458 40.812265641446466, -73.96370230269018 40.81226836451332, -73.96370777562622 40.81227122891768, -73.96371311811272 40.81227423375832, -73.96371832303991 40.81227737633156, -73.96372338448421 40.81228065213303, -73.96372829177963 40.81228405935837, -73.96373463819175 40.8122891509665, -73.96374075339904 40.81229440639208, -73.96374663029552 40.81229981572744, -73.96375226295862 40.812305372667346, -73.96375764428043 40.81231107090601, -73.96376277070772 40.81231690593993, -73.96376762920805 40.81232286876008, -73.96377222215571 40.812328952163234, -73.96377654007088 40.81233515254444, -73.96378057940422 40.81234145819614, -73.96378433660209 40.81234786551532, -73.96378780337265 40.8123543654944, -73.96379097853476 40.81236095092902, -73.96379385853642 40.812367614614125, -73.96379644101113 40.81237434934505, -73.96379872122284 40.81238114611532, -73.96380069562022 40.81238799681934, -73.96380236539139 40.812394896054585, -73.96380372461543 40.81240183391368, -73.96380477211208 40.812408801391264, -73.96381194850719 40.81246126932655, -73.96381400339543 40.81248357709407, -73.96381679469378 40.812513889614245, -73.9638193035869 40.81256660372005, -73.9638194728414 40.81261935491207, -73.96382050719012 40.81266141927183, -73.96381980756036 40.81270348758968, -73.96381737515698 40.81274551754255, -73.96381320881211 40.81278747130911, -73.96380731565779 40.812829304767014, -73.96379970045325 40.812870978295564, -73.96379037033064 40.812912447772426, -73.96377933478873 40.81295367627966, -73.9637687071111 40.81300114175847, -73.96375604098668 40.81304831663502, -73.96374134710577 40.81309515048413, -73.9637246480101 40.81314159468526, -73.96370595439043 40.81318759881311, -73.96368529115882 40.81323311514821, -73.96356255188886 40.81345250780739, -73.96343591916153 40.813685439870994, -73.96334153073772 40.81385474300361, -73.96324929509638 40.81402678245117, -73.96316020765201 40.814199775552275, -73.96305104765602 40.81439602649309, -73.96299616484508 40.81449794697053, -73.96293868572624 40.81460490126508, -73.96283281506231 40.81480897206037, -73.96270184261029 40.815048400756176, -73.96257398710532 40.81528880194224, -73.9625320348852 40.81537039045674, -73.96250637535074 40.81542029036154, -73.9624970050123 40.815438514274035, -73.96241508914412 40.81558670670478, -73.96232828812379 40.81573328378723, -73.96229371470945 40.81578792544755, -73.96225669772625 40.81584163608375, -73.96221727987455 40.81589435447383, -73.9621755133401 40.81594601489607, -73.96213144674853 40.815996559732206, -73.9620851239866 40.81604592866073, -73.96203660790403 40.816094064968304, -73.96202532092234 40.81610574159692, -73.96201350429025 40.81611711278144, -73.96200117697883 40.816128166821464, -73.96198834848109 40.816138884809654, -73.96197503539553 40.81614925864673, -73.96196125906546 40.816159273931675, -73.96194702897984 40.81616891896094, -73.96193236648048 40.81617818203503, -73.96191728816812 40.81618705145273, -73.96190181182821 40.816195516413835, -73.96188595643066 40.816203567919494, -73.96186974568796 40.81621119427084, -73.96185319145775 40.81621838736733, -73.96183631982115 40.81622513911287, -73.96181914856325 40.816231439607755, -73.96180169902317 40.816237282555456, -73.9617839925398 40.81624266165948, -73.96176604808423 40.816247566120005, -73.96174789173303 40.81625199594559, -73.96172954482682 40.8162559421382, -73.96171102514731 40.816259401101696, -73.96169235995954 40.816262367442086, -73.96168071724982 40.81626384489068, -73.96166901426128 40.81626502515408, -73.96165726521853 40.816265906436016, -73.96164548553085 40.81626648784111, -73.96163368468127 40.816266768472005, -73.96162188044924 40.81626674833455, -73.96161008587447 40.8162664247317, -73.96159830688003 40.81626580396881, -73.9615865648032 40.816264882451115, -73.96157486794006 40.816263661982305, -73.96156323407065 40.81626214166782, -73.96155167267361 40.816260327814355, -73.9615401979736 40.81625821862566, -73.96152882419159 40.81625581860903, -73.9615175619942 40.816253129569, -73.96150642323282 40.816250154211026, -73.9614954256827 40.81624689974515, -73.96148457645724 40.81624336347222, -73.96147388858884 40.8162395553021, -73.96146337511682 40.816235473438276, -73.96145305144424 40.8162311277913, -73.96144292112544 40.81622652106394, -73.96143081628198 40.81621960029874, -73.9614190375776 40.81621236266641, -73.96140759922893 40.81620481987837, -73.96139651190042 40.81619697734127, -73.96138579573622 40.816188844967336, -73.96137545428371 40.816180437165904, -73.96136550769013 40.81617175844629, -73.96135596306029 40.81616282051742, -73.961346835795 40.816153636891954, -73.96133813655706 40.81614421567814, -73.96132987482068 40.816134570386616, -73.96132205769119 40.8161247118259, -73.96131469938453 40.81611465260776, -73.96130780819026 40.81610440534202, -73.96130139239874 40.816093980837515, -73.96129545437269 40.8160833926026, -73.96129000951154 40.816072655950926, -73.96128592061073 40.81605988553173, -73.96128241374103 40.816047017153636, -73.9612794912627 40.81603406792692, -73.96127715672604 40.81602104685786, -73.96127541841662 40.81600797285961, -73.96127427276988 40.815994860339025, -73.96127372333086 40.81598172730717, -73.96127376890661 40.81596858637075, -73.96127441304311 40.81595545373972, -73.96127564980267 40.81594234832268, -73.96127748154863 40.81592928182676, -73.96127990708655 40.81591626956, -73.96128292047963 40.815903328629865, -73.96130847308501 40.815766060949024, -73.96133911005586 40.81562939379496, -73.96137481233315 40.81549343791836, -73.96142193328068 40.81534939668414, -73.96146977695605 40.81520549344484, -73.96147742939007 40.81518234332223, -73.96148608917335 40.815159400649854, -73.9614957503661 40.815136687037416, -73.96150639991232 40.81511423219672, -73.96151802831557 40.81509205953725, -73.96153062015405 40.81507019066549, -73.96154416355773 40.8150486543931, -73.96155864429073 40.81502747142639, -73.96167539675659 40.814857642324334, -73.9616973872171 40.81482614033773, -73.96190962740874 40.81452461075024, -73.96191312198594 40.81451967988179, -73.96194360857622 40.81447700098074, -73.9619740951263 40.81443432387234, -73.96200458400773 40.814391646756306, -73.9620350704796 40.81434896963115, -73.9620655592824 40.814306293398936, -73.96209604804761 40.81426361445687, -73.9621175893203 40.814233462985314, -73.9621265379569 40.81422093910881, -73.96215675975142 40.814178632868234, -73.96217139097824 40.81415474567803, -73.96218469115692 40.81413086975573, -73.96219690938479 40.81410666299464, -73.96220803023985 40.8140821515044, -73.96221804422325 40.81405736679965, -73.96222693472635 40.814032337691074, -73.96223469343936 40.81400708939018, -73.96224131323207 40.8139816570143, -73.96226283339107 40.81390694350136, -73.96230446521498 40.81378103788913), (-73.96344556094287 40.81326704307015, -73.9634450407088 40.81326689342265, -73.96349104027989 40.81318338416911, -73.96365327673591 40.81322475564887, -73.9637215453999 40.81307360796046, -73.96357129196801 40.81303212870077, -73.96362919341317 40.812926627600156, -73.96312703848365 40.81278576628089, -73.96307186338562 40.81287877450454, -73.96297639246062 40.812844634846265, -73.96287231492985 40.81298615146093, -73.9629425731865 40.81301300888588, -73.96289223140262 40.813107422449015, -73.96264444742964 40.81357877438997, -73.96285116318359 40.813638405472936, -73.96282932641145 40.81368077943842, -73.9629659967827 40.81372020486588, -73.96298783229497 40.813677831774896, -73.96319612715031 40.813737918396754, -73.96344556094287 40.81326704307015)), ((-73.98354205218855 40.786218596745734, -73.98356844339347 40.78617166098976, -73.98359442720366 40.786176821861474, -73.98351175037706 40.78634090748107, -73.98348434394212 40.78640132718083, -73.98343630076367 40.786507260637386, -73.98336014688249 40.7866789346992, -73.98334952072739 40.7867028927961, -73.98326852474668 40.78690100390238, -73.98320714842095 40.78705981634027, -73.98314949295222 40.78721942983109, -73.98313255924766 40.78727021020638, -73.98311562314719 40.78732099237941, -73.98309868820661 40.787371770947736, -73.98308175560953 40.787422550414036, -73.98306481943138 40.78747333347891, -73.98304703540694 40.787522245175204, -73.98302925135478 40.78757116317194, -73.98301146846192 40.787620078464215, -73.98299368198931 40.78766899105135, -73.98297589904449 40.78771790543685, -73.98295811725777 40.78776682162048, -73.98294033189111 40.78781573599943, -73.98292255123765 40.7878646494755, -73.98290476463396 40.78791356384803, -73.98285582798815 40.78804903963772, -73.98275392076793 40.788316646082585, -73.98267064660823 40.78851795225614, -73.98258290583303 40.78871711899901, -73.98247953284661 40.78895480851667, -73.98237038360843 40.78919100311886, -73.98225549955492 40.78942561904912, -73.98222523347971 40.78948407398866, -73.98212847911786 40.78968950104716, -73.98202127383136 40.7898871316548, -73.9818915152346 40.790122740829595, -73.98180713803193 40.79027145331559, -73.9816703179043 40.79050148701433, -73.98156216636175 40.7906794041634, -73.98145863486384 40.79084534979549, -73.98135374595489 40.791007992075166, -73.98123391199798 40.7911923059679, -73.98110687949931 40.791376514993566, -73.9809754999949 40.79156175512997, -73.9808469725451 40.791748131116336, -73.9807366520037 40.79189756066882, -73.98059807367167 40.792082696499904, -73.98045963243317 40.79226236164312, -73.98033151344181 40.79243232638729, -73.98019035701714 40.792605384664405, -73.98007881461034 40.792746040684584, -73.97991116705396 40.79294169658461, -73.97972857304498 40.79315902464612, -73.9795662557454 40.79333798749807, -73.97951522880693 40.79339276036603, -73.97914067392128 40.79377834676566, -73.97905032828535 40.793866962999694, -73.97887665754992 40.79403048732595, -73.97869873897768 40.794191353226005, -73.97851665315204 40.79434949856092, -73.97840880300187 40.794444295654344, -73.97840549264512 40.79444720545015, -73.97827119716803 40.79456524116103, -73.97822458192215 40.79460567111569, -73.97817733962891 40.79464664753602, -73.97816952892275 40.79465342231911, -73.97732916759992 40.795377270120234, -73.9771962282287 40.795496445762126, -73.97701511783879 40.79566407745345, -73.97683642681048 40.795833197868305, -73.97670938816155 40.79595795452325, -73.9765868449214 40.79608528107483, -73.97646887652509 40.796215083001, -73.9764483070776 40.796239377884795, -73.97638711430528 40.79631165298094, -73.97630980407085 40.79641031837887, -73.9762370442249 40.79651096396001, -73.97621375608011 40.79654600750514, -73.9761836496895 40.79659130632819, -73.9761712308208 40.796609992731945, -73.97616892251115 40.796613465481975, -73.97610135592934 40.7967236636479, -73.97603838849089 40.7968354232943, -73.97598008068644 40.796948633679975, -73.97595980682442 40.79699001191392, -73.97595308561533 40.7970037566387, -73.97594374967723 40.79702284438224, -73.97575710031683 40.797409422171846, -73.97574313461688 40.79744166792421, -73.97572346448717 40.79748710299099, -73.97570378722158 40.797532536251595, -73.97568411703813 40.79757797131103, -73.97566393973675 40.7976264607541, -73.97564376003606 40.79767495019282, -73.97563682314427 40.79769162327662, -73.97562358149057 40.79772344052838, -73.97560340410095 40.7977719299598, -73.9755832243124 40.797820418486275, -73.97556402914594 40.79786580769834, -73.97554785435025 40.797911356936005, -73.97553000264539 40.797954149386186, -73.97552476395454 40.797970242000865, -73.97551206018163 40.79800200892465, -73.97549237766957 40.7980512314462, -73.9754726915732 40.79810045486377, -73.97545300900296 40.79814967737786, -73.97544210322248 40.79817694848212, -73.97523182822246 40.79871507346388, -73.97521946342891 40.79874905835455, -73.9752002460338 40.79880183789302, -73.97518103571774 40.798854618329884, -73.97517570735764 40.798869252098136, -73.9751618241855 40.79890740056385, -73.97514261262423 40.79896017919215, -73.97512332772712 40.79901252105885, -73.97511767101423 40.79902739248504, -73.975101910726 40.79906883006142, -73.97509380342652 40.79909014943267, -73.97507913972599 40.79913338463912, -73.97506686960561 40.79916096067802, -73.97498159228374 40.79938556454863, -73.97496785443194 40.79942113038746, -73.97487017175425 40.79966204851838, -73.97476507929822 40.79990115313112, -73.97470599206495 40.800025762067136, -73.97448158538484 40.80046025298355, -73.97441383533305 40.80058948480442, -73.97431553304271 40.80074667297793, -73.97418351223332 40.800967428751555, -73.97405812544248 40.80116387778859, -73.97390337847342 40.801410229297176, -73.97366151183749 40.80176817666171, -73.97303856552986 40.802671162792706, -73.97282018718576 40.80297301814244, -73.97249157189067 40.803427310251365, -73.97211939187864 40.80393739746637, -73.97187847062668 40.80425722397342, -73.97153792033814 40.80470676383381, -73.97129491001293 40.805029608839426, -73.97100246933093 40.80540206376086, -73.97062914702619 40.805877050598646, -73.9705070310978 40.806026319348724, -73.96992546871655 40.806770830763966, -73.96975769985164 40.80699091006541, -73.9695829862656 40.80722390673045, -73.96941999832546 40.80744392645297, -73.96925795722679 40.80766434781218, -73.96909686771575 40.8078851726143, -73.96895766788457 40.80807793275452, -73.96882166414498 40.80827200380995, -73.96868887430847 40.80846735517964, -73.96853483309708 40.80869465386236, -73.9683838764067 40.80892314363538, -73.96823602086464 40.809152800201886, -73.96809127835814 40.809383600163976, -73.9679504048461 40.80960611733204, -73.96763136383666 40.81011141998473, -73.96727573790076 40.81067816760195, -73.96699551731065 40.811120951569386, -73.9666992008835 40.811565023291585, -73.96646976336156 40.81190483517957, -73.96623901236535 40.81221717383171, -73.9660188737608 40.81250678838116, -73.96580101077996 40.8127857601937, -73.96559981919567 40.81304057261207, -73.965448258889 40.813238154038665, -73.96528380508529 40.81346910110635, -73.96509206269928 40.81374692856403, -73.96491641026518 40.81402346747391, -73.96468996241661 40.8144029741157, -73.96450916983973 40.81472366757855, -73.96424767218133 40.81513926614365, -73.96401253865925 40.81546526206368, -73.9638155004642 40.81571403202436, -73.96359592119026 40.81598077204452, -73.96340769414647 40.81619635535648, -73.96321718768908 40.81640778183386, -73.96298727519282 40.816646647892846, -73.96280888065276 40.81682265022307, -73.96290690410916 40.81670419262795, -73.96310217325426 40.81649785150192, -73.96326326160981 40.816305690083375, -73.96337187635653 40.816180789700745, -73.96369732330581 40.815782457858866, -73.96398645725401 40.815385568940215, -73.96417689982589 40.815080269724156, -73.96427374431256 40.81490324043772, -73.96440679422635 40.81464438146811, -73.96456993212807 40.814318254540865, -73.9646203471902 40.81422370521214, -73.9647318101055 40.814031625489584, -73.96485089681477 40.81384219994222, -73.96500659188008 40.813606541246585, -73.9651693483792 40.81337365079316, -73.96533907256115 40.81314365189233, -73.96548221087527 40.81296186190827, -73.96562577261773 40.81278026367355, -73.96575837230509 40.81261320503299, -73.96587140257331 40.812468581740944, -73.96627179242931 40.81195627508575, -73.96737668143969 40.81040938503766, -73.96743210115861 40.81032557067103, -73.96757930525729 40.81008910092778, -73.96764109135584 40.809990341784406, -73.9677310006275 40.809846661044034, -73.96787551974779 40.80961681691687, -73.96798882723105 40.80943749627658, -73.9679928361315 40.809431150680666, -73.96802452301876 40.80938100264269, -73.96815888464053 40.80916325441575, -73.96829664144829 40.80894673433718, -73.96843776732841 40.8087314739053, -73.96858224802116 40.80851750101933, -73.96873057765963 40.80829987116624, -73.96888159727571 40.80808331343373, -73.96903529143572 40.80786784491664, -73.96919165181492 40.80765348811471, -73.96933714849358 40.807454178230145, -73.96948469060804 40.80725574308098, -73.96963426392479 40.80705818175515, -73.96978587197641 40.80686151765878, -73.9698112379671 40.806828085202596, -73.96989285222844 40.80672051141344, -73.97006305658054 40.80650036680217, -73.97019924299595 40.80632415656053, -73.9703485486455 40.80613538307406, -73.97050692011317 40.805934447776515, -73.9706254754001 40.80578349238417, -73.97066487710977 40.80573332214456, -73.97071849849618 40.80566480604786, -73.97082242200474 40.80553201338444, -73.97097955361822 40.80533051519404, -73.97100472603081 40.80529802524053, -73.97103134385429 40.80526366711025, -73.97106203563509 40.805224652618286, -73.97109273330615 40.80518563631842, -73.97112342382985 40.805146621809364, -73.9711541178737 40.805107605491784, -73.97118664994 40.80506586921924, -73.97121918314987 40.80502413473857, -73.97123359583688 40.805005638494876, -73.97135910728345 40.80483109730436, -73.97136056730226 40.804831097667076, -73.974058831333 40.8010523403346, -73.97410536449179 40.80097906097964, -73.97420935228233 40.80081225152987, -73.9743529338267 40.80057246804613, -73.9744892571433 40.80033024961984, -73.97458705875741 40.80014403088504, -73.97467835611583 40.799955915982935, -73.9747630875977 40.79976603368672, -73.97485555230794 40.79953721362048, -73.97487297560507 40.799488940753335, -73.97493887382181 40.79930637346553, -73.97494161057365 40.79929840824369, -73.97495509385203 40.79925913769783, -73.97496949599609 40.79921847968022, -73.97503258101595 40.79905361193522, -73.97505478128993 40.798997437289316, -73.97507270804836 40.79894564624586, -73.97509063833547 40.7988938506975, -73.97510453295865 40.798853701333165, -73.97510856622407 40.798842056946384, -73.9751264917155 40.79879026139057, -73.97514441717773 40.79873846943353, -73.97516234853752 40.798686675673544, -73.97517959939361 40.79863887277715, -73.9751968502266 40.79859106537535, -73.97521410340475 40.79854325797106, -73.97523135537179 40.79849545416561, -73.97524860494549 40.7984476467547, -73.97526585212445 40.79839983934032, -73.97528310757171 40.79835203642729, -73.97529990796167 40.798304250523316, -73.97531671069707 40.798256465517504, -73.97533351222378 40.798208679608166, -73.97535031728022 40.79816089639828, -73.97536711639007 40.79811310688076, -73.97538392139893 40.798065321864236, -73.97539785102637 40.79802569925905, -73.97541686522523 40.79797021903993, -73.97542339841652 40.79795598083461, -73.97543261617173 40.79793038249948, -73.97545665158125 40.797870044247745, -73.97547342513373 40.79782367569536, -73.9754902022177 40.79777730714099, -73.97550697690843 40.79773093858331, -73.9755237539454 40.79768457092387, -73.97553522086642 40.79765519906348, -73.97554239658184 40.797636820490254, -73.97556103445143 40.797589070952725, -73.97557967821902 40.79754132141304, -73.97559832077621 40.7974935682678, -73.97561696211979 40.79744582052189, -73.97563560580652 40.79739807277313, -73.97565459139253 40.79734851689003, -73.97567357931946 40.79729896280494, -73.97569256366369 40.79724940781509, -73.97571155153442 40.79719985282243, -73.97572099149318 40.79717521534113, -73.97573053819164 40.797150298726535, -73.97576323030721 40.79707024668732, -73.97580339898752 40.79697807007952, -73.97583083807858 40.79691764780827, -73.97588813697917 40.79680323331847, -73.9759195420268 40.79673919364636, -73.97595347184057 40.79667590190658, -73.9759898872909 40.79661341572066, -73.97602876583953 40.79655178731062, -73.97604063092591 40.79653434529751, -73.97607006480094 40.79649107970008, -73.97611374741983 40.79643134150587, -73.97616691512852 40.79635890730963, -73.97622286805165 40.7962876938398, -73.9762676192877 40.796234369164935, -73.97628155520913 40.79621776411677, -73.97634292562249 40.79614917845951, -73.97640692949857 40.79608199808756, -73.97647350875386 40.79601627521368, -73.9766766500464 40.7958223722583, -73.97688732103884 40.795633166555916, -73.9770395612505 40.795499878883646, -73.97719306486623 40.79536742962292, -73.977237956938 40.79533130864162, -73.97728285251549 40.79529518854378, -73.97732774685844 40.79525907112953, -73.9773709770859 40.795224289712756, -73.97741753658524 40.79518682994474, -73.97746243078235 40.795150711576916, -73.97750732374641 40.79511459139019, -73.97755187060709 40.795078654820344, -73.97759642097381 40.79504272003475, -73.97764096773771 40.795006785231074, -73.97768551800849 40.79497084951016, -73.97773006586114 40.79493491467188, -73.97777461485113 40.7948989780154, -73.97781916023837 40.79486304134081, -73.97802376522462 40.79469940476403, -73.97822543016188 40.79453366909975, -73.97825889273547 40.794504958472324, -73.97829236002117 40.79447624333345, -73.97832572890442 40.79444761191272, -73.9783414901145 40.79443387234517, -73.9783646696789 40.79441366137427, -73.97846711021631 40.79432434735616, -73.97864425804133 40.79416810664215, -73.97881721968173 40.794009177790784, -73.97897264062419 40.79386157196723, -73.97912571051326 40.79371255442144, -73.97919259684681 40.79364520370587, -73.97924957006111 40.793586347385, -73.97925369122461 40.793582062646884, -73.97930756396124 40.79352554253648, -73.97945513739913 40.793367134944354, -73.97960266156298 40.79320870103624, -73.9797101902247 40.79309136773469, -73.9798139441036 40.79297208948978, -73.97991386276138 40.7928509374406, -73.97991433688395 40.79285035489959, -73.98022693305697 40.79246801783132, -73.98042338863043 40.7922147739581, -73.98058560534112 40.792005905136506, -73.98072730964729 40.79181096519318, -73.98090338792846 40.7915661799699, -73.98105283949957 40.79134946409523, -73.98119794264161 40.79113377838331, -73.98134467731317 40.79091045560121, -73.98148706594732 40.79068816390024, -73.98164323523709 40.79042818916453, -73.98175753158344 40.79023383967051, -73.98189742653841 40.78998240324344, -73.9819886774471 40.78981184111157, -73.98220518580094 40.7893893283183, -73.98226525515653 40.789265841111195, -73.98236468498543 40.78905578035722, -73.98246168197497 40.78884505997396, -73.98255623903087 40.788633701578426, -73.98265338539818 40.788399741818104, -73.9827470077512 40.78816495207878, -73.98283708952864 40.78792936388397, -73.98285385534359 40.7878833552865, -73.98287062350495 40.78783734668658, -73.98288739282748 40.78779133988512, -73.98290415975772 40.78774533127952, -73.98292092784932 40.78769932357183, -73.9829376947334 40.787653314060165, -73.98302496261256 40.78743122109124, -73.9830419247473 40.78738559250324, -73.98305888685964 40.78733996031038, -73.98307585131829 40.78729432811506, -73.98309281101434 40.78724869681675, -73.98310977424129 40.78720306641659, -73.98312729063306 40.78715782060856, -73.98314480107699 40.78711257569717, -73.98316231505072 40.787067333484856, -73.9831798301861 40.78702208856819, -73.98319734174365 40.78697684274756, -73.98321485683097 40.786931599625994, -73.98323544450992 40.78687954465807, -73.9832560250486 40.78682748788408, -73.9832766102934 40.78677543380816, -73.98331200733764 40.78669507012062, -73.9833735035051 40.78656639290385, -73.98350981744395 40.78628115985624, -73.98354205218855 40.786218596745734)), ((-73.97417523921791 40.7964968274638, -73.97418395703194 40.79649613242988, -73.97419548494138 40.79649688962996, -73.974203382352 40.79650036282404, -73.97420902295408 40.79650563921353, -73.97421101703509 40.79651216918303, -73.97421019352788 40.79651823296377, -73.97420749420628 40.79652446741966, -73.97420134562245 40.79653356109062, -73.97415202730112 40.796619629707735, -73.97410423666564 40.79673809682299, -73.97407281717145 40.796853000720716, -73.97405826287465 40.79694649182179, -73.97405067245684 40.797103773179366, -73.97405659339452 40.79719859712112, -73.9740714782906 40.79729691521528, -73.97408786568234 40.797392349343625, -73.97409977391833 40.79748193191621, -73.97410703459946 40.797578143820495, -73.97410361490302 40.79771807437724, -73.97409054678056 40.7978318846746, -73.97406392306146 40.79794779998849, -73.97403196943549 40.79804818047743, -73.97394019631732 40.798239818471075, -73.97385659950399 40.798381741667, -73.97374708786718 40.79853369496589, -73.97362364252896 40.79870438256104, -73.97349542268063 40.79886219988534, -73.97326602861449 40.79911514220408, -73.97310298477213 40.79928884031055, -73.97296277528422 40.79944076406421, -73.9727860466549 40.79961772191244, -73.97259386512276 40.7997967919853, -73.97239888250434 40.7999613594229, -73.9722286016942 40.80008820156414, -73.97208911407998 40.80018563070276, -73.97191170650359 40.80029609146647, -73.97175350918813 40.800399106834746, -73.971605769191 40.8005100948786, -73.97145871337014 40.8006355179016, -73.97128800640357 40.80081636056572, -73.97127572134013 40.80082477627119, -73.97126403667382 40.80083137221634, -73.97125414965807 40.80083523829533, -73.97124276409671 40.80083796486826, -73.97122748765206 40.80083909928709, -73.97121430709046 40.80083841341813, -73.97119992808771 40.80083590643909, -73.9711885482421 40.80083089772089, -73.97117746839953 40.80082270401129, -73.97116968209318 40.8008136007198, -73.97116399641246 40.80080267804457, -73.97116220358494 40.80079152761622, -73.97116334935193 40.80078090021247, -73.97116916270076 40.80076791646954, -73.97135978496107 40.800507423477775, -73.97160448880915 40.80017531869078, -73.97188338643161 40.799790547910504, -73.97201365265519 40.79963785493788, -73.97210011548817 40.799549751238104, -73.97222950615782 40.799436986843176, -73.97249784773668 40.799197241009, -73.9725885167689 40.799118853427814, -73.972686937263 40.799035776009696, -73.97283153014564 40.79891191227484, -73.97287266309272 40.798882598100946, -73.97294473719849 40.79882328924105, -73.97303052469765 40.79874098389007, -73.97314898702186 40.79861297133757, -73.97325813022697 40.798476309003206, -73.97332559773504 40.79837522736542, -73.97337578302964 40.798278356934084, -73.97340953133605 40.79819987358945, -73.9734339862557 40.79812647411348, -73.9734597962345 40.79803941976935, -73.97347590280918 40.79795462794207, -73.97353380186622 40.79772304988496, -73.97355971904464 40.797612994978216, -73.97364009291364 40.79729637162369, -73.9736767723928 40.79716885755607, -73.97369448201272 40.7971252747163, -73.97371642543423 40.79707862573729, -73.97379250924642 40.796934531602545, -73.97385508446425 40.79684167908518, -73.97392141991912 40.796753323578166, -73.9740616445415 40.79660019553154, -73.9741585039405 40.796507229887666, -73.97416574624083 40.79650113602862, -73.97417523921791 40.7964968274638)), ((-73.96428306228137 40.81455751727204, -73.96424450768 40.814547739430736, -73.96409196273395 40.81450905529313, -73.96402359819488 40.81470264536576, -73.9639324978821 40.81486511160516, -73.96368657237058 40.81521422736224, -73.96349434588276 40.815475984367, -73.96337689243909 40.81563592311073, -73.9632528862461 40.815778654747746, -73.96323986601506 40.81579364207062, -73.96302291665863 40.816043351637646, -73.96259056064537 40.81650553267283, -73.96246083228614 40.81665847051462, -73.96231623253459 40.816817866212915, -73.96215251035825 40.81698652336355, -73.96200578782029 40.81712038978497, -73.96187718240319 40.81724118499478, -73.96171685264535 40.81740390206053, -73.96144481658409 40.8176992580815, -73.96142286361243 40.817723542537166, -73.96139429251876 40.81775280632041, -73.96139107367149 40.81775610646341, -73.96137816278937 40.8177508054181, -73.96132401903253 40.81772830186745, -73.96126987649806 40.817705797391184, -73.96121573162908 40.81768329378911, -73.96116085432543 40.81766070526812, -73.96115540738441 40.81765944003635, -73.96115013743834 40.817657517501424, -73.96114542737195 40.81765488646396, -73.96114098571095 40.81765135592061, -73.9611380658681 40.817648028501786, -73.96113589295332 40.81764438706128, -73.96113471551054 40.817641066533106, -73.96113454392322 40.817640582908524, -73.96113384601351 40.8176361180107, -73.96113439646737 40.817631252812625, -73.96113703628994 40.81762492231016, -73.96114199904895 40.81761904914237, -73.96116212591411 40.8176083229034, -73.96123970671363 40.8175716483658, -73.96131563387212 40.81753302544662, -73.96138982083292 40.81749249824445, -73.96146218222584 40.81745010995795, -73.9615326409739 40.8174059118931, -73.96160112000435 40.81735994905257, -73.96165602100464 40.817320666944184, -73.9617093710794 40.817280168623796, -73.96176112161153 40.81723848829628, -73.96181122635183 40.81719566557028, -73.9618560718751 40.817152803261685, -73.9619009161558 40.81710994003441, -73.96194576275037 40.81706707498924, -73.96199060572972 40.817024212626606, -73.96203545220723 40.81698135024742, -73.96220531632255 40.81682198750276, -73.96236989501787 40.81665945573174, -73.96252908750172 40.81649385668018, -73.96266986756112 40.816339889466384, -73.96280485377991 40.81618295667283, -73.9629025090219 40.81606209012133, -73.96308870983962 40.8158241899644, -73.96321971079968 40.81564708876697, -73.96335394777923 40.815455383283485, -73.96349168002376 40.815245137510914, -73.96363179090841 40.81503579911769, -73.96377426855352 40.814827387002, -73.96393553127155 40.814595508222766, -73.96400790918577 40.814491830490105, -73.96409727397288 40.81436382296595, -73.96425804186373 40.814139870641505, -73.9644245806778 40.81391836741734, -73.96459682514427 40.81369939519385, -73.96478193153546 40.81347649236245, -73.96482541270296 40.81342555459881, -73.96497068270907 40.81325535891037, -73.96516305136431 40.81303603173194, -73.96532949083579 40.81284170594451, -73.96549359279366 40.81265286594209, -73.96609781991056 40.81194366662216, -73.9661918150896 40.8118294066809, -73.96630520826126 40.811691541286315, -73.96636873978527 40.81161428363915, -73.96643226997796 40.81153702325422, -73.96646369703268 40.811498799074364, -73.96651640310635 40.81146056936114, -73.96637934219814 40.81164322331975, -73.96633562163414 40.81170112966361, -73.96623496906828 40.811830431486435, -73.96612468311655 40.81196832023446, -73.96596428977472 40.8121707372494, -73.96580391678599 40.81237316394636, -73.9656435617801 40.81257560032471, -73.96548322120333 40.81277804278146, -73.96533963607517 40.81295829098627, -73.96519999130844 40.81314031777841, -73.96506432724776 40.81332407455725, -73.96493267950049 40.81350950821835, -73.96480727277924 40.8136943835196, -73.96468943754198 40.81388210927095, -73.96457928415981 40.814072508131204, -73.96445689578492 40.81430550292906, -73.9644097748686 40.81439444490575, -73.96434155395329 40.81452322823705, -73.96433360946224 40.81453822536052, -73.9642423255011 40.81472224969275, -73.96412891206144 40.81493958095395, -73.96403792880653 40.81509805990584, -73.96395606117713 40.81523870278583, -73.96386207582928 40.81538221979563, -73.96375786185958 40.81553321123785, -73.96361254175774 40.815721730434866, -73.96333668590154 40.816070006591055, -73.96326893200278 40.81613605178323, -73.96307049541409 40.81636511262552, -73.96290090257493 40.81654757268605, -73.96272764263084 40.816728034004655, -73.96255074878164 40.81690645065042, -73.96236590527117 40.81708504452478, -73.96218187479546 40.81726412283187, -73.96199866328413 40.81744368467688, -73.9619565544149 40.817482597462885, -73.96192906212356 40.81750800490826, -73.96191444668169 40.81752151023364, -73.96187233889977 40.81756042208824, -73.96183023225343 40.817599334828145, -73.96178812437255 40.81763824755196, -73.96174601525813 40.81767715845882, -73.96170390609342 40.817716071151054, -73.96166179924954 40.81775498472893, -73.96161969235804 40.817793895589695, -73.96158313635912 40.81782848139795, -73.96158285291419 40.81782875055204, -73.96157836405737 40.817832996699074, -73.96157018023332 40.81782963692022, -73.96150543330667 40.817801728741586, -73.9614874550401 40.81779465744123, -73.96148817849516 40.81779393998703, -73.96152172664638 40.817760642716145, -73.96152411592429 40.81775707574564, -73.96154375235598 40.817737617160475, -73.96154903475066 40.817732385235466, -73.96193526766999 40.817349691529586, -73.96229964301578 40.816983417125414, -73.96245693299917 40.81690793117505, -73.96285308400422 40.81649317808642, -73.9630443496175 40.81625122471163, -73.96329611316469 40.81596361077738, -73.96358167932233 40.81562907396063, -73.96383215270174 40.81529033360273, -73.96405531818476 40.814948126263886, -73.96406808769454 40.814927075722, -73.96418740583523 40.814730354230576, -73.96428306228137 40.81455751727204)), ((-73.96203507063589 40.8139206823558, -73.96204357032128 40.813920133149466, -73.96205207891799 40.8139205843979, -73.96206137742601 40.813922167830626, -73.96206972951903 40.81392479012505, -73.96207583557577 40.813927417083114, -73.96208256192521 40.81393140399567, -73.96208910739071 40.8139366686539, -73.96209365467195 40.813941698525554, -73.96209776848495 40.8139482302839, -73.96210024803632 40.81395443282338, -73.96210142144366 40.81396272858957, -73.96210139793538 40.8139644647405, -73.96210134727697 40.8139680883247, -73.96210026688459 40.813973367584765, -73.96209831068207 40.813978497974944, -73.96209510970877 40.81398409351288, -73.96209208389767 40.81398805290485, -73.96206391740759 40.814042755150226, -73.96203401169663 40.8140961150747, -73.96200184492572 40.81414870792271, -73.96196744793686 40.81420048147373, -73.96193085868653 40.81425137900695, -73.9618921163142 40.814301348304426, -73.96185126232977 40.814350338049415, -73.96172365032733 40.81450644196298, -73.9616826300493 40.81455973686831, -73.96164811332586 40.81460458185599, -73.9616015548172 40.81466507346334, -73.96152468385979 40.81477787832472, -73.96145292592104 40.814892609204705, -73.96138636525053 40.81500913556877, -73.96133809985228 40.81510972742958, -73.9613034592549 40.815189379181284, -73.96129085205318 40.815219154386746, -73.9612537655709 40.815314029103824, -73.96121777743075 40.81541754804783, -73.96118943029873 40.81550535677898, -73.96116330055862 40.815595500336975, -73.96113315180395 40.81570742195297, -73.96113082947197 40.81571619020967, -73.96110264510878 40.815839427221924, -73.96109804426493 40.8158569934648, -73.96109420904637 40.81587466442345, -73.96109114657384 40.81589242569233, -73.96108885686269 40.81591025205768, -73.96108734585037 40.8159281255116, -73.96108661473289 40.815946028945056, -73.96108666115394 40.815963938944314, -73.96108748630898 40.81598183930094, -73.96108909258228 40.81599970750316, -73.96109147642811 40.816017527340925, -73.9610946319339 40.81603527629966, -73.96109855792551 40.81605293636904, -73.96110325322923 40.81607048863815, -73.96110870956035 40.81608791329317, -73.9611149198182 40.81610519232163, -73.96112188046015 40.81612230411029, -73.9611333259047 40.81614400093963, -73.96114398775231 40.816165925329415, -73.96115386364012 40.81618806287111, -73.96116294172467 40.81621039645145, -73.96116803971141 40.81622447113409, -73.9611733471603 40.81623912040401, -73.96118243678964 40.81626810145461, -73.96119019403712 40.816297305379074, -73.96119661536714 40.81632669435569, -73.96120169131467 40.81635623596355, -73.9612054147883 40.81638589237956, -73.96120778224929 40.81641563118485, -73.96120879016297 40.816445412756394, -73.96120843736121 40.81647520467592, -73.96120672623583 40.81650496732242, -73.96120365561806 40.81653466917806, -73.96119923145626 40.81656426972229, -73.96119345732228 40.81659373833938, -73.96118634271929 40.81662303631087, -73.96117789477881 40.81665212671855, -73.96116812299893 40.816680979849004, -73.96116266263623 40.81668863313347, -73.96115433072475 40.81669963799997, -73.96100722611361 40.8168986107487, -73.96087628039591 40.81707842711685, -73.96086559696994 40.81709309888721, -73.96086307617439 40.81709656044172, -73.960856137757 40.81710608894422, -73.96084901431747 40.81706141107969, -73.96084897653573 40.817061159828306, -73.96084820441189 40.8170559564957, -73.96084411235168 40.817032480956094, -73.96083905302619 40.81700911674932, -73.960833028795 40.81698588458748, -73.96082604557274 40.81696280608442, -73.96081811401262 40.8169399073579, -73.96080923765986 40.816917208219905, -73.96079942598331 40.8168947329869, -73.96078869082403 40.8168725032745, -73.96077704046668 40.81685054159778, -73.96076448793855 40.81682886777173, -73.96072448393507 40.816769173725454, -73.960686688689 40.816708655562756, -73.96065113417198 40.81664735832143, -73.96064719860213 40.81664002423252, -73.96061784405454 40.81658533334008, -73.96060615417133 40.816562244209436, -73.96059545654659 40.816538878964074, -73.96058698920476 40.81651825379152, -73.96057525519129 40.816479659887406, -73.96055852783196 40.816424635608946, -73.96055718599803 40.816418786422766, -73.96055263242229 40.81639429134992, -73.96054912670161 40.81636969668027, -73.96054667118952 40.81634502942946, -73.96054526942613 40.816320313912236, -73.96054492257917 40.8162955780445, -73.96054572061033 40.8162690226642, -73.96054580821497 40.81626720278994, -73.96054603861138 40.81626244284221, -73.96054800052978 40.81622199319282, -73.96055253943612 40.81617323103733, -73.96055923783338 40.81612461279903, -73.96056809212745 40.81607619520763, -73.96057313435706 40.816054110443844, -73.96057908924742 40.816028025984416, -73.96059221611166 40.81598017086067, -73.96060746083427 40.815932678458445, -73.9606248091551 40.815885603702334, -73.96064327115555 40.81584130375452, -73.96067446566664 40.81577643089071, -73.96069226697597 40.81574289254826, -73.96072109943157 40.81569359656278, -73.96075217035782 40.81564509286852, -73.96078544415776 40.815597440884474, -73.96082087812526 40.81555069642499, -73.96085501524355 40.81550414512085, -73.96088914994458 40.81545759200442, -73.96090466451325 40.8154364373873, -73.96092329052311 40.81541104068055, -73.96095676559204 40.81536538691642, -73.96102103949035 40.815277734471266, -73.96102569893745 40.81527138123881, -73.961059834585 40.815224828070505, -73.96109397018421 40.81517827579222, -73.96112810810621 40.81513172350431, -73.96116259828676 40.81508468595666, -73.96125169887519 40.814963179446885, -73.96126465339086 40.814945513345485, -73.96129878870406 40.814898960103925, -73.96133292396847 40.81485240865294, -73.96136706037251 40.814805853589895, -73.96140119909768 40.81475930121867, -73.9614353330341 40.81471274883542, -73.96146946929329 40.814666196442445, -73.9615036055052 40.81461964313856, -73.96153625808441 40.81457453012471, -73.96156891062031 40.814529415300306, -73.96158094935512 40.81451278352813, -73.96159823701265 40.8144888963965, -73.96160156548248 40.814484300467065, -73.96163421792991 40.814439185623506, -73.96166686796151 40.81439407257054, -73.9616995238761 40.81434895770896, -73.96173217737491 40.81430384463807, -73.96176482964475 40.81425873065661, -73.961797483056 40.81421361576555, -73.96183013523782 40.8141685008645, -73.96186278737531 40.81412338595385, -73.96189619743754 40.81407722760787, -73.96192809388702 40.81403315790563, -73.96196074589072 40.81398804476724, -73.96199389603143 40.81394226721655, -73.9619971718666 40.81393842317318, -73.9620022912431 40.81393372156341, -73.96200742542658 40.81393007173907, -73.962013130594 40.813926951595, -73.96201927400242 40.81392435388339, -73.96202580107521 40.81392237583994, -73.96203507063589 40.8139206823558)), ((-73.97581685022824 40.797572284664746, -73.97584016463223 40.79752195703196, -73.97586641936935 40.797529058468406, -73.97585978122295 40.79755861777707, -73.97585274428486 40.7975899473838, -73.9758442465721 40.797636839116834, -73.97583575477213 40.79768373085014, -73.97582725466522 40.79773062348121, -73.9758193188258 40.797776852561526, -73.97581010967913 40.797841185916404, -73.97580314476353 40.79790568363191, -73.97579843002697 40.79797029978426, -73.97579757262771 40.798014524935, -73.97579652693939 40.79806819538484, -73.97579548598993 40.798121864034215, -73.97579466047627 40.79816637644991, -73.9757938337759 40.798210890666006, -73.97579301181491 40.79825540308176, -73.97579218511234 40.79829991729723, -73.9757913595936 40.798344431512604, -73.97578680318685 40.79849162799256, -73.9757766999734 40.79863866391504, -73.97576589712499 40.79869255923438, -73.97575317167116 40.79873824159349, -73.9757389283664 40.79877710144814, -73.97570920053334 40.7988367235542, -73.97568533668937 40.798874724098525, -73.97566232775834 40.79890467435396, -73.97562790776695 40.79894035206987, -73.9755918204254 40.798969707916896, -73.975569688346 40.79898339442039, -73.97550816425768 40.79901593531633, -73.97549459038207 40.799022281852295, -73.97548073224002 40.799028273529416, -73.97546661472161 40.79903389594497, -73.9754522520477 40.799039146400354, -73.97543765725453 40.79904402129626, -73.97542284693662 40.799048508029145, -73.97540784953371 40.799052606605, -73.9753926697889 40.79905630892026, -73.97537733258693 40.79905961498019, -73.97536185926104 40.799062515784264, -73.97534625810593 40.79906501223474, -73.97533055756237 40.79906710163614, -73.97531476948411 40.79906877408544, -73.97529767287419 40.799071296323554, -73.97528047925638 40.79907338359715, -73.97526320403895 40.799075026904454, -73.97522433726566 40.79907686638179, -73.97521585159005 40.79907699783153, -73.97521797860463 40.79907068758952, -73.97522731230376 40.799043026256186, -73.9752449300536 40.79899655346911, -73.97526259048242 40.798949960921725, -73.9752647611171 40.79894423060965, -73.97527659165266 40.7989130254421, -73.97528025562745 40.79890336567081, -73.97528420308831 40.79889295674467, -73.97529791837748 40.798856771316814, -73.9753155846574 40.79881017786107, -73.97533324498798 40.79876358350048, -73.97535091003346 40.79871699003837, -73.97536949741027 40.798665980721296, -73.97538808594389 40.79861497050055, -73.97540667681963 40.79856395847588, -73.9754252617407 40.79851295004856, -73.97542852845186 40.79850398357182, -73.97544190368926 40.79846727666297, -73.97544384900391 40.79846193981733, -73.97546243742457 40.79841092688149, -73.97548102581509 40.79835991844466, -73.9754996129925 40.79830890910373, -73.97552068129977 40.79825832081954, -73.97554174957364 40.798207736133115, -73.97556281781654 40.79815714874094, -73.97558388721137 40.79810656404626, -73.97560495302028 40.798055976645024, -73.97561170725618 40.7980398987556, -73.97562308923193 40.79801280873582, -73.97563902303634 40.79797487766306, -73.97564780398737 40.79795432111516, -73.97566917713607 40.797908760354154, -73.9756886107782 40.79786238873023, -73.97570803965613 40.797816009897765, -73.975717975859 40.79779230634161, -73.97572743410645 40.797769731910336, -73.97574690917591 40.797723263930905, -73.9757702225004 40.79767293721371, -73.97579353578963 40.79762261049138, -73.97581685022824 40.797572284664746)), ((-73.97601760242496 40.79564772375807, -73.9760259584962 40.79564761923741, -73.97603431685945 40.79564773083652, -73.97604266566206 40.79564806845854, -73.97605099068736 40.79564862579697, -73.97605929075051 40.79564940285153, -73.97606754689458 40.79565039511588, -73.97607575319276 40.79565160889221, -73.97608389661336 40.79565303787441, -73.97609196886391 40.7956546766577, -73.97609996401735 40.79565653244488, -73.97610787022754 40.79565859712905, -73.97611567801546 40.79566086980773, -73.97612337790342 40.795663345976486, -73.9761309580427 40.795666024732384, -73.97613840777069 40.795668901570735, -73.9761457235334 40.79567197468986, -73.97615289822285 40.79567523958578, -73.97615991525359 40.79567868725013, -73.97616676988395 40.79568232308492, -73.97617345500808 40.795686137183196, -73.9761799647027 40.79569012594179, -73.97618628356578 40.79569428395458, -73.97619241278453 40.795698604918314, -73.97619833695694 40.79570308342685, -73.97620405726768 40.795707720380925, -73.97620955831722 40.795712503170456, -73.97621483773804 40.79571742549148, -73.97621988842096 40.79572248644199, -73.97622051263185 40.79572316104515, -73.97622470325824 40.795727680617624, -73.97622928106928 40.79573299631167, -73.97623478421967 40.79573854362472, -73.97624003019256 40.79574423406396, -73.97624501780619 40.795750058624215, -73.97624974113857 40.795756010100256, -73.9762541907144 40.795762076783646, -73.97625836416388 40.79576825867399, -73.97626225912089 40.7957745449648, -73.97626586255384 40.79578092844943, -73.97626917801902 40.79578740462612, -73.97627220315044 40.79579396268841, -73.97627492254693 40.79580059452864, -73.97627734805947 40.79580729474637, -73.97627946428729 40.795814054333334, -73.97628127952731 40.79582086608733, -73.97628278311961 40.79582771739915, -73.97628397624909 40.795834608269054, -73.97628485418132 40.795841523387566, -73.97628542639663 40.795848460055154, -73.97628568223571 40.795855403861665, -73.97628562525483 40.79586235030533, -73.97628524716205 40.79586929218038, -73.97628456454906 40.7958762213858, -73.9762835691248 40.795883128014296, -73.97628225970648 40.79589000576223, -73.97628063748354 40.79589684202276, -73.97627871549051 40.79590363499761, -73.97627648306727 40.79591037297799, -73.97627394732513 40.795917050562416, -73.97627111182396 40.795923653343635, -73.97626798248763 40.795930183123744, -73.97626455458182 40.795936624593324, -73.97626084351177 40.7959429741535, -73.97625684572516 40.7959492245995, -73.97625256833662 40.795955361524804, -73.97624801726879 40.795961390333545, -73.9762415245088 40.79597294781051, -73.97623451162819 40.7959843295824, -73.97622698337186 40.79599552034159, -73.97621894922484 40.796006503880946, -73.97621041511628 40.79601726669411, -73.97620139289897 40.79602779887791, -73.97619189324047 40.796038090528924, -73.97618193155219 40.79604812093873, -73.97617151968576 40.79605788290569, -73.97616066238544 40.796067363823624, -73.97614938335215 40.79607655649334, -73.97613768614846 40.796085439303454, -73.9761255944734 40.796094010457765, -73.97611311781036 40.796102259152086, -73.97610026682946 40.796110169179535, -73.97608706878411 40.79611774054563, -73.97607352486605 40.79612495434, -73.97605966469888 40.79613180966818, -73.97604549776791 40.796138290323086, -73.97603104777087 40.79614439901095, -73.9760163194538 40.79615011862322, -73.97600134481121 40.79615544556438, -73.97598399922077 40.79616051896925, -73.97596644879091 40.79616516188989, -73.97594871011246 40.79616936982719, -73.97593079622196 40.79617313738078, -73.97591856222947 40.79617538877636, -73.97591273555953 40.79617646005409, -73.97589453997611 40.79617933424744, -73.9758762331702 40.796181760866276, -73.97585783054885 40.796183732709785, -73.9758393522565 40.796185248881606, -73.97582082080682 40.79618631028696, -73.97580225279073 40.796186912426755, -73.97578367072262 40.79618705440528, -73.97576509237471 40.7961867416292, -73.97574077564465 40.796185835113704, -73.97571651720229 40.79618430996205, -73.97571070177155 40.79618379455142, -73.97569907209667 40.79618276012741, -73.97569233837861 40.79618216167624, -73.9756764977633 40.796180341126124, -73.97566826524107 40.79617939476438, -73.97566477818296 40.79617890235536, -73.97564433096692 40.79617601283549, -73.97562056043697 40.79617202489993, -73.97559697972177 40.7961674264608, -73.97557361370221 40.79616222652854, -73.97555049436878 40.79615643321453, -73.97552764660487 40.79615004832519, -73.97550509529007 40.796143083572495, -73.97548286056573 40.796135547065326, -73.9754239967095 40.796113920734776, -73.97536586914191 40.79609118061326, -73.97530851459611 40.79606733121221, -73.97526375384341 40.7960456456853, -73.97525562909912 40.79604170695647, -73.97521443672744 40.79602174843436, -73.97531797247665 40.795959170608675, -73.97536573740851 40.79592843236143, -73.97540999021622 40.79590082978576, -73.97545424417213 40.7958732271933, -73.97550961453115 40.79584371698607, -73.97556498602631 40.795814205851876, -73.97562035273265 40.79578469468994, -73.97567572531422 40.79575518440304, -73.97571043952055 40.79573668195008, -73.97573109547719 40.79572567318838, -73.97574783668739 40.79571728675531, -73.97576495571855 40.79570934974864, -73.97578242650047 40.79570186846623, -73.97580022532976 40.79569485731096, -73.97581833917093 40.79568832078237, -73.97583674076925 40.79568226427772, -73.9758554052382 40.79567669769703, -73.97587431835555 40.79567163094281, -73.9758914774408 40.79566753545788, -73.9758934516836 40.79566706400889, -73.97591277914933 40.795663011297805, -73.97593228179682 40.7956594665019, -73.9759519359236 40.795656442223205, -73.97595993596367 40.795654599668396, -73.97596801294745 40.79565296604504, -73.9759761609488 40.795651545854334, -73.97598436811612 40.79565034629785, -73.97599262734148 40.79564936287157, -73.97600092559165 40.79564859377183, -73.97600925456861 40.795648048902315, -73.97601760242496 40.79564772375807)), ((-73.98306645093962 40.786052247609824, -73.98306101821305 40.785854622826456, -73.98302775596102 40.785606022871924, -73.98301917296828 40.78545102193442, -73.98298881409441 40.78533521479879, -73.98295786044936 40.78524310425586, -73.98294283586088 40.785196162504185, -73.98332317494125 40.785356162500804, -73.9833054100556 40.78536010682571, -73.98327697278015 40.78536998480341, -73.98324972452195 40.78538164053633, -73.98324485349303 40.78538397302697, -73.98323799194011 40.78538698150436, -73.98322664885467 40.7853934310449, -73.98321884981574 40.78539786487811, -73.98320822359386 40.78540390659415, -73.98320296123411 40.78540768703198, -73.98316398784134 40.78543723759662, -73.98313116690716 40.785470828697164, -73.9831052130167 40.78550772833607, -73.98308669268656 40.78554713065251, -73.98307601014152 40.785588177531665, -73.98307094048174 40.785612131019796, -73.98306748845597 40.785648214496504, -73.98306771853251 40.7856938681402, -73.98307092105651 40.7857397842661, -73.98307728986973 40.785778458125506, -73.9830855854743 40.78581091880903, -73.98309474896983 40.785836147694106, -73.98311724930602 40.785879333625765, -73.9831294963963 40.78589644944397, -73.98314276773013 40.78591112145047, -73.98317258762096 40.785934971979756, -73.98321432350365 40.78595957075284, -73.98326026366283 40.78598110301452, -73.98330078580511 40.785994013074884, -73.98334578432271 40.78600061935927, -73.98340039249119 40.786001778978644, -73.98346232385511 40.78599702693266, -73.98348819037768 40.785992316518, -73.98351098643583 40.7859859991642, -73.98353698449546 40.785976343205014, -73.983562488837 40.785960560159644, -73.98335203679447 40.78632526893083, -73.98313468568196 40.78684547390861, -73.98306041639097 40.78703264386074, -73.9829144705093 40.78740045265627, -73.98295003499246 40.78721054857127, -73.9829971597304 40.78698998051422, -73.98302426746501 40.78682127474188, -73.9830525908334 40.7865214156587, -73.98306208714726 40.78622602477727, -73.98306645093962 40.786052247609824)), ((-73.9773790891647 40.79548177663191, -73.97850130867948 40.79450757667103, -73.97850188555044 40.79450811437711, -73.97851663705798 40.794524209962546, -73.97852965220703 40.79454182886855, -73.97854163697252 40.79456166461215, -73.9785527239722 40.79458399997525, -73.97856163558882 40.794606078290144, -73.97856831009663 40.79462823723335, -73.9785730079997 40.79465100994959, -73.97857550841887 40.794672224392244, -73.97857602567818 40.79469231734371, -73.97857467484982 40.794714539630284, -73.97857138726557 40.794738711139054, -73.97856603118785 40.79476548740933, -73.97855948508455 40.79478976457059, -73.97855162084038 40.794811993749256, -73.97854243133841 40.794832196555745, -73.97853362615982 40.79484742056896, -73.97852198253133 40.79486451529142, -73.97849170233845 40.79490485564343, -73.9784631022856 40.794945250331196, -73.97845420710638 40.794956549942675, -73.97844560509509 40.79496630705192, -73.97842988957218 40.79498134155995, -73.978410318142 40.794997049818086, -73.97838646288871 40.79501392972051, -73.97834768089479 40.79503953896247, -73.97831589317748 40.79505847590252, -73.97819917370109 40.79512444882084, -73.97809365031573 40.79518285504731, -73.97802105093855 40.795222422698615, -73.97793202001003 40.79527009976254, -73.97783012709695 40.795323837349734, -73.97767351843903 40.79540553378638, -73.97757104482103 40.79545832550616, -73.97753279594906 40.79547899173231, -73.97749005985919 40.79550293759045, -73.9774309696601 40.795537032466704, -73.97731436022148 40.79560539083051, -73.97726406918449 40.79563557197895, -73.97722106653353 40.795662272313116, -73.97719268862221 40.795680533340175, -73.9773790891647 40.79548177663191)), ((-73.98341842702706 40.7853962323412, -73.98362754773984 40.78548420428946, -73.98379793442348 40.78555588035109, -73.98383263538634 40.785570477846505, -73.98378144042968 40.78564376334713, -73.98360729638404 40.785886296807675, -73.98354541489081 40.785929407586934, -73.98350903675318 40.785946087773304, -73.9834745233808 40.785958011768464, -73.98343009057058 40.78596816394221, -73.98338995989765 40.78597219331102, -73.98334722427197 40.785970263673356, -73.98330598995345 40.785962678189506, -73.98327652663704 40.78595287196274, -73.98324423186148 40.78593807744083, -73.98320929539723 40.785917492302524, -73.9831798318988 40.78589447299727, -73.98316383012886 40.78587821391307, -73.98314924464474 40.78585993791107, -73.98313637272378 40.785840012439785, -73.983125587413 40.78581901387514, -73.98311505532958 40.785785239035675, -73.98310752464761 40.785731041268065, -73.9831023815236 40.78568034589873, -73.98310291825621 40.78564281939084, -73.98310919927513 40.78560262553963, -73.98312003572504 40.78556661788485, -73.98313797855847 40.785529251511946, -73.98314027782742 40.78552577771461, -73.9831659685583 40.78549410093658, -73.98319782968852 40.785465846957116, -73.98323508622465 40.785441705442345, -73.98327682932847 40.78542226428252, -73.9833220447539 40.78540799518866, -73.98336963061924 40.78539924649172, -73.98341842702706 40.7853962323412)), ((-73.97101684088524 40.80103939225346, -73.97101760760572 40.80103935282428, -73.97101815624936 40.80103939258418, -73.97102426124393 40.801039832661964, -73.97102996784155 40.80104080753575, -73.97103546682663 40.801042323557006, -73.97104211240287 40.80104499250487, -73.9710499705454 40.80104970228778, -73.97105498485757 40.80105395210153, -73.97105823611136 40.80105764856605, -73.97106114688663 40.80106221932955, -73.97106327426167 40.80106703573255, -73.971064487636 40.80107267045978, -73.97106449794164 40.801078949642324, -73.97106449882449 40.801079644827816, -73.97105730650627 40.801091629565185, -73.9710295888763 40.80113011173319, -73.97099505799495 40.801178054624145, -73.97096052943343 40.80122599840546, -73.97092599608175 40.80127394307541, -73.97089146742039 40.80132188773585, -73.97085693634003 40.80136983058396, -73.97082240639497 40.80141777342167, -73.97078787521473 40.801465717148886, -73.9707533439844 40.80151366176589, -73.97071881389007 40.80156160457146, -73.97068428374527 40.80160954916735, -73.97064975236725 40.80165749015018, -73.9706152209379 40.80170543472434, -73.97058069182927 40.80175337838791, -73.97054830085466 40.801797748506665, -73.97051591220767 40.801842116815635, -73.97048352233166 40.8018864869159, -73.97045113596842 40.80193085520665, -73.97043908163361 40.801947367266614, -73.9704046082881 40.801994593192305, -73.9703863571856 40.8020195953604, -73.97035396832275 40.80206396362229, -73.97032157704581 40.802108333675186, -73.97028919046629 40.80215270281936, -73.97025979195932 40.802192972753566, -73.97020028693599 40.80227448855654, -73.97019202098826 40.802285810192984, -73.97015743107958 40.802333212509915, -73.97012283993779 40.80238061211432, -73.97008824874557 40.80242801440948, -73.97005365869026 40.80247541399268, -73.97004953102756 40.80248106805319, -73.97001429111444 40.80252935804876, -73.96998447606147 40.80257021402684, -73.9699498834867 40.8026176171792, -73.96991529323398 40.802665017619994, -73.96988070174652 40.80271241895023, -73.9698461102102 40.80275981936924, -73.96981151862425 40.80280722067798, -73.9697769269894 40.80285462107551, -73.96974233530527 40.80290202146225, -73.96971025691667 40.8029471244258, -73.9696781773012 40.802992223777764, -73.96964609645595 40.80303732582169, -73.96961401319756 40.803082426955214, -73.96958193582175 40.80312752628004, -73.96954985484608 40.80317262829622, -73.96951777501201 40.80321773030341, -73.96948569276476 40.80326283140025, -73.96945361284452 40.80330793158797, -73.96942153288005 40.80335303356741, -73.96938945168701 40.80339813553728, -73.96936326043424 40.80343495447516, -73.96935602467664 40.80344483552545, -73.96935199481665 40.8034488659869, -73.96934595732546 40.80345321379045, -73.9693390752567 40.803456762626666, -73.96933303049165 40.80345888979776, -73.96932747315013 40.80346022285833, -73.96932173593228 40.803461008367535, -73.96931425338606 40.8034612315007, -73.96930599745968 40.803460453973365, -73.96929804658916 40.80345860043071, -73.96929133441272 40.80345607454492, -73.96928587856985 40.803453171684524, -73.9692810048425 40.80344972147577, -73.96927635555788 40.80344526006655, -73.96927264150422 40.80344031894065, -73.9692700261787 40.80343498549001, -73.96926858980271 40.80343004407059, -73.96926814773893 40.8034249930554, -73.96926765904554 40.803418268901076, -73.96926734996543 40.80341266051258, -73.9692675338703 40.803407047753, -73.96926820956327 40.80340145583604, -73.96926937347706 40.80339591087508, -73.96927055095199 40.803391794108784, -73.96927202466416 40.803387734152835, -73.96927373773224 40.80338372829056, -73.9692757399172 40.80337980084872, -73.96927878668211 40.8033746877284, -73.96928227658202 40.80336973681582, -73.96928619419832 40.80336497602237, -73.96932202677053 40.80331593359634, -73.96933319112532 40.80330057225728, -73.96938885984954 40.80322398432578, -73.96939162513895 40.80322018135331, -73.9694264260263 40.803172303865196, -73.9694612256781 40.80312442726642, -73.96949602528065 40.80307654885576, -73.96952486300744 40.80303610337626, -73.97020845047251 40.802089520987614, -73.97023394970438 40.80205568952683, -73.97026514073713 40.80201361726186, -73.97029633054544 40.80197154498789, -73.97032752149853 40.80192947450648, -73.97035871359842 40.80188740131516, -73.97039130108226 40.80184387506822, -73.97042388852384 40.80180034791129, -73.97045647947827 40.80175681984526, -73.97048906801888 40.8017132944706, -73.97050744440992 40.8016887470691, -73.97052165770306 40.8016697663852, -73.97055424497377 40.80162624009074, -73.97058683457232 40.801582712886834, -73.97061949431719 40.801538567948974, -73.97063028207937 40.801523984415255, -73.97065215283448 40.80149442120029, -73.97068481130688 40.801450278044015, -73.9707174709222 40.80140613217698, -73.9707501328634 40.80136198810196, -73.97078279002163 40.80131784311574, -73.970815449507 40.80127369722002, -73.97084811013404 40.80122955131504, -73.97088076953192 40.80118540720116, -73.97091342651767 40.801141260375665, -73.97092659624964 40.801123460831704, -73.97093356232114 40.80111404336831, -73.97094608701435 40.80109711534248, -73.9709618996837 40.801075740578725, -73.97098040000078 40.80105153712126, -73.97098585514279 40.801047609617015, -73.97098777531812 40.801046567322395, -73.97099129563857 40.80104465824982, -73.97099647859729 40.801042599212145, -73.97100193983162 40.801041004001256, -73.97100927915048 40.80103977756657, -73.97101684088524 40.80103939225346)), ((-73.9754135821586 40.79757757803747, -73.97542003565832 40.797576886029155, -73.97542568263626 40.79757823888301, -73.97542949479325 40.79758099162227, -73.97543174670925 40.79758603489972, -73.97542217766056 40.7976196638162, -73.97541313873671 40.79764883717305, -73.97539667991408 40.79769327061159, -73.97538021158955 40.797737704945945, -73.97536731469947 40.79777252540758, -73.97536375153766 40.797782139279434, -73.97534729146419 40.797826572709745, -73.97533082662925 40.797871005235834, -73.97531436651144 40.79791543956134, -73.97529683956073 40.797964006948185, -73.97529447801342 40.797970192873585, -73.97528802138346 40.79798878680401, -73.97527115085359 40.79803737593909, -73.97525427437465 40.79808596416962, -73.97523740142461 40.798134556000015, -73.97522052963556 40.798183146026844, -73.97520365663622 40.79823173785161, -73.97519522487406 40.798256015303686, -73.97518678242902 40.79828032517075, -73.9751699117507 40.79832891608979, -73.97515285383668 40.79837747094565, -73.97513614268921 40.7984239340133, -73.97512144229943 40.79846434525555, -73.97511925141625 40.79847036282031, -73.97510235656651 40.79851678712126, -73.97508865609639 40.798554440345, -73.97508546287685 40.798563215021595, -73.97506856916425 40.798609641118134, -73.97505167779703 40.79865606991389, -73.97503478166666 40.79870249780529, -73.97501789025368 40.79874892299338, -73.97500072176854 40.79879472227154, -73.97498814844964 40.79882827395154, -73.97498355918394 40.79884052334909, -73.97496639302119 40.79888632352247, -73.97494922683443 40.798932124593435, -73.97493353384748 40.79897398719775, -73.97493205943977 40.79897792386028, -73.97492090080051 40.799008631162245, -73.97490964969921 40.799001674157395, -73.97489688475572 40.798993244505304, -73.97488450268852 40.798984481750495, -73.97487252126476 40.79897540570787, -73.97486095944197 40.79896602178476, -73.97484982313857 40.798956347092, -73.97483912894256 40.79894638613584, -73.97482888988166 40.798936156929265, -73.97481911187975 40.7989256621752, -73.97480981744307 40.798914923490635, -73.97480100419703 40.79890395258163, -73.97479269346968 40.79889275305501, -73.974784888807 40.79888134832462, -73.97477760323996 40.79886974739838, -73.9747708438732 40.79885796378544, -73.97476462018041 40.79884601279652, -73.97475893097335 40.79883390253588, -73.97475379283213 40.7988216573207, -73.97474920575377 40.79880928435508, -73.97474518039759 40.7987967971489, -73.97474171675688 40.79878421281174, -73.97473952900724 40.798763118134424, -73.97473827384931 40.7987419777359, -73.97473795719911 40.79872081232901, -73.97473857193329 40.79869965523064, -73.97474011922812 40.79867852715255, -73.97474260025938 40.79865744970695, -73.97474601146354 40.79863644360444, -73.97475034453332 40.79861553946014, -73.97475560064554 40.798594756184706, -73.97476177504971 40.798574119891384, -73.97476885470154 40.79855365399025, -73.97477683248343 40.79853337648948, -73.97478570364231 40.79851332070642, -73.97479545632392 40.798493496543685, -73.97480607511184 40.798473933714206, -73.97481755644299 40.79845465202795, -73.97482988134877 40.798435673993026, -73.97484303323067 40.79841702211798, -73.9748570073408 40.79839871621254, -73.97488577274224 40.79835694021019, -73.97491453810595 40.79831516870286, -73.97494330461919 40.79827339538732, -73.97497206991136 40.79823162206411, -73.97500083516705 40.79818984963393, -73.97502960157198 40.79814807629603, -73.97509541899794 40.79805957143706, -73.97515908707153 40.79797016377565, -73.97519670377989 40.79791235350507, -73.97523282639604 40.797853998098425, -73.97532130146644 40.79771888451537, -73.97540799392551 40.79758079433024, -73.9754135821586 40.79757757803747)), ((-73.96907503508571 40.803725103745826, -73.969086747677 40.80372373272627, -73.96909465885358 40.80372435349008, -73.96910145444235 40.80372593478644, -73.96910796632935 40.803728534470366, -73.96911288298983 40.8037314254881, -73.96911730869596 40.803735048479545, -73.96912120422465 40.80373965377286, -73.96912372034639 40.80374425149256, -73.96912514026832 40.8037488894411, -73.96912556486825 40.80375324886892, -73.96912472612802 40.80376030315098, -73.96912174624755 40.80376678414234, -73.9687238320726 40.80435985963837, -73.96856987799573 40.80461375026149, -73.96844515267426 40.804830340118784, -73.96833904513355 40.805020082083296, -73.968251892687 40.805196916918646, -73.96816075843196 40.80537258713953, -73.96806308265131 40.805551801634365, -73.96805777189178 40.80555501494236, -73.9680524199984 40.80555750964097, -73.96804740741818 40.80555921919876, -73.96804137702465 40.805560549364316, -73.96803360243712 40.805561330642405, -73.96802732504297 40.80556123615023, -73.9680211404309 40.80556042398621, -73.96801299276098 40.80555827673852, -73.96800614431588 40.80555537613367, -73.9680012276051 40.805552409427726, -73.96799642394272 40.80554847741862, -73.96799245482966 40.80554403956092, -73.96798974777693 40.80553973532727, -73.96798785381506 40.80553518818483, -73.96798676370926 40.80552988664785, -73.96798692921647 40.805523338269225, -73.9679884406517 40.805517490852125, -73.96799063166746 40.80551302048574, -73.96801573685119 40.805468244766075, -73.9680398421909 40.80542509056114, -73.96806394749974 40.805381935450306, -73.96807097519434 40.80536935383159, -73.96812918366787 40.805269494753915, -73.96814650551877 40.80523851969258, -73.96817269905574 40.805187423638706, -73.9681968378928 40.80513574348861, -73.9682188994913 40.80508353416777, -73.96823886250344 40.80503083889545, -73.96824336773477 40.80501937859166, -73.96824736461753 40.80500780558536, -73.96825084484598 40.80499614148624, -73.96825380841746 40.80498439259785, -73.96825624702889 40.80497257512696, -73.96825816304467 40.80496070168118, -73.96825955408765 40.80494878756834, -73.96826041422838 40.80493684179187, -73.96826074582783 40.804924884163384, -73.96826055006757 40.80491292278769, -73.96825982101429 40.80490097477258, -73.96825856695828 40.80488905182688, -73.96825678552447 40.80487716475584, -73.96825447670368 40.80486533337044, -73.96825164760287 40.804853565777115, -73.96824829821408 40.80484187908525, -73.96824443327321 40.80483028320157, -73.96824002609728 40.80481757595318, -73.96823511765865 40.804807300813046, -73.96822970012686 40.804795999864524, -73.96822378123737 40.80478484735981, -73.96821736928173 40.80477385230607, -73.96821047491886 40.80476302911412, -73.96820309814433 40.80475238768942, -73.9681952543569 40.80474194334453, -73.96818695066253 40.80473170598688, -73.96817819416624 40.804721687324744, -73.96816899789704 40.80471190176963, -73.96815890946637 40.80470169903655, -73.968156432219 40.804697652412315, -73.96815396403049 40.804692011007575, -73.96815240187033 40.80468505602568, -73.96815222475969 40.80467874168092, -73.96815280994196 40.8046743023847, -73.96815405517422 40.80466994251471, -73.96815657023156 40.8046643132925, -73.96815956716165 40.804659631527805, -73.96816330698007 40.80465527324718, -73.96816836705898 40.80465073703226, -73.96817419124102 40.80464676744169, -73.9681789790031 40.80464418253151, -73.96824778669658 40.80459998792529, -73.96831376497408 40.80455445796118, -73.96837766652325 40.80450724886, -73.96843942021322 40.804458415536125, -73.96846256806258 40.8044388189174, -73.96856034605723 40.80435610601377, -73.96861522819408 40.80430274841635, -73.96866769335332 40.804248003367604, -73.96868785018141 40.80422538831916, -73.96872885260855 40.8041770246631, -73.969052139974 40.80373983696413, -73.96905763084114 40.80373370604202, -73.96906634955698 40.80372812529005, -73.96907503508571 40.803725103745826)), ((-73.98387172164063 40.784809997396614, -73.98391857612859 40.78480575267751, -73.98396209428576 40.784807018543226, -73.98399703531048 40.78481210222788, -73.98402723440591 40.78481997409739, -73.9840523279555 40.784830251392066, -73.98408076832445 40.7848456304836, -73.98410784448747 40.78486352628113, -73.9841317451634 40.78488326045872, -73.98414217289975 40.784894112934786, -73.98415789245405 40.78492139488328, -73.98416800672568 40.78495016909074, -73.98417228484347 40.784979774559055, -73.98417062744436 40.78500953139661, -73.98416307259417 40.785038756128024, -73.98413961766006 40.78509215803158, -73.98410944811256 40.78514357610052, -73.98410398236295 40.785151012586745, -73.98395281110909 40.785361153321205, -73.98348935416873 40.785164292311684, -73.98348347975046 40.78514253175717, -73.98348077220679 40.7851204132568, -73.98347854289499 40.785095134065344, -73.983480234333 40.78508224002996, -73.98348463438235 40.78506804605885, -73.98350389460114 40.78502944072522, -73.98352232703999 40.78499892807486, -73.983541378612 40.78497507741842, -73.98356703114305 40.78495253612857, -73.98361271124527 40.784921204287286, -73.98365878180752 40.78489173201832, -73.98369979775975 40.78486927572221, -73.98373744661271 40.78485201482893, -73.98377623343745 40.78483692429165, -73.98383046972548 40.784819042554886, -73.98387172164063 40.784809997396614)), ((-73.9848345479935 40.784081735976244, -73.9848147091464 40.78412187591595, -73.98457186682086 40.78447006844933, -73.9843277369847 40.78481632780174, -73.98423706318745 40.78495041358764, -73.98423093857951 40.78493360039046, -73.98421879024956 40.78490423428057, -73.98420732069326 40.78488521412185, -73.98419075662528 40.784867040634836, -73.98416762708851 40.78484774782104, -73.98413696753744 40.78482811988031, -73.9840974911721 40.7848089814883, -73.98405366273879 40.784792352177796, -73.98401351374943 40.784782025969776, -73.983977049086 40.784777353607375, -73.98393240436911 40.784775702175686, -73.9838740183046 40.784777885840896, -73.98382606363678 40.78478531365964, -73.98379170873645 40.78479623011307, -73.98373259546157 40.784821706871995, -73.98367335908426 40.7848465550331, -73.98363444229655 40.78486489632699, -73.98358973911986 40.784888731642866, -73.98355885439386 40.78490841219953, -73.98352449028637 40.784936952282784, -73.98348602773262 40.784976847990336, -73.98345617733145 40.785010311740244, -73.98344172990309 40.785032829401615, -73.98343330618918 40.78505783601228, -73.98342904777455 40.785088410120125, -73.9834288592446 40.785117606145484, -73.98343138410608 40.78513107260459, -73.9834316579803 40.78513978409328, -73.98314430896798 40.7850177263014, -73.98317686337268 40.785011223135314, -73.98323967263725 40.784993391555254, -73.98333605385085 40.78496932162464, -73.98338642376025 40.78495481551743, -73.98343114157481 40.78493928020324, -73.98347905307072 40.78492025588698, -73.98360291103687 40.784864107508405, -73.98365780009365 40.78483691116024, -73.98378376666217 40.78477062143971, -73.9839339076965 40.78469750375034, -73.98399464642277 40.784666263004446, -73.98411522965618 40.784597073458315, -73.98426502306363 40.78450284033197, -73.98439644411194 40.784415931002705, -73.98449962403683 40.78434229021741, -73.98455741070907 40.78429718825879, -73.98467726246949 40.78419900547972, -73.98476840803531 40.78412796529976, -73.9848108430492 40.784092394791145, -73.98482334215274 40.784080242370216, -73.9848345479935 40.784081735976244)), ((-73.97806691294834 40.79436617396359, -73.97813769853033 40.794366135182585, -73.97816249819923 40.79436663245729, -73.9781789572572 40.79436756308944, -73.97819400019603 40.79436901664183, -73.97821004884725 40.79437127452885, -73.97822761506414 40.79437440348386, -73.97825532673014 40.79437998731255, -73.97783267228375 40.79473314142183, -73.9773215592667 40.795140787452326, -73.97701062570636 40.79538990407511, -73.97696881313905 40.79541209755184, -73.97699636861162 40.795373425685334, -73.97703803161654 40.795317546269985, -73.97706074572054 40.79528845294058, -73.9770821091802 40.79526229947009, -73.97715919960771 40.795171971221706, -73.97727257533528 40.79503620275153, -73.97735776338074 40.7949374310754, -73.97745337084447 40.79482922953719, -73.97757493430959 40.79469322823386, -73.9776569875262 40.79460470791357, -73.9776762441382 40.7945845647591, -73.97772053520036 40.7945397986694, -73.97775694927552 40.79450488341285, -73.97777734846524 40.79448710067208, -73.97779708814313 40.794471413264084, -73.97782778313565 40.79444927407726, -73.97785306021896 40.79443234503465, -73.97787330112295 40.79442007330625, -73.97789266932811 40.79440963482485, -73.97791332642781 40.79439999443016, -73.97793721722036 40.79438998634627, -73.97796426801455 40.79438029313608, -73.97798930831426 40.794373340657614, -73.97801169234589 40.79436915940598, -73.97803637562191 40.79436689395164, -73.97806691294834 40.79436617396359)), ((-73.98421399550543 40.78549954060161, -73.98419905540017 40.78549699914074, -73.98418487396513 40.785492613555554, -73.98424423757227 40.78540735232475, -73.98486125341459 40.784500050298305, -73.98487637120618 40.78450702846723, -73.98470718119762 40.784972785048716, -73.98468112398282 40.78507206725806, -73.9846627968274 40.7851723419409, -73.98465226026653 40.78527326331644, -73.9846495535125 40.78537448019655, -73.9846546837899 40.78547564318821, -73.98460471155796 40.78546060175497, -73.98455262107224 40.78545053618595, -73.98449926410802 40.78544561228501, -73.98444551852366 40.78544590941307, -73.9843922621961 40.78545142408643, -73.9842592178028 40.785495666527325, -73.98424449788403 40.785498864897214, -73.9842292831931 40.78550016764249, -73.98421399550543 40.78549954060161)), ((-73.98398606401737 40.785770821162934, -73.9840496228958 40.78568225938138, -73.98406592338341 40.78569359264283, -73.98407948903791 40.7857068453927, -73.98408993609333 40.785721640268996, -73.98409696609363 40.785737558498376, -73.98410038129298 40.78575414800245, -73.98410008346775 40.78577093780601, -73.98410586165268 40.78580979162706, -73.98411897601858 40.7858476009769, -73.98413915190659 40.785883569772174, -73.98416596418367 40.785916940629356, -73.98419884790039 40.7859470110754, -73.98423711131926 40.78597314705786, -73.98427994775824 40.78599479915558, -73.98419100563642 40.786038687320946, -73.98410546509537 40.786086321070776, -73.98402359628696 40.78613754826544, -73.98391493455954 40.786226790822624, -73.98381320932178 40.7863206376123, -73.98371875594293 40.78641877802714, -73.9836318896616 40.78652088614817, -73.98355289610667 40.78662662524579, -73.98351064556915 40.78669262593635, -73.9834707073914 40.786759453602414, -73.98349962432268 40.78668561756018, -73.98362903054544 40.78639202583695, -73.98385736497029 40.785968869341175, -73.98398606401737 40.785770821162934)), ((-73.97555097260826 40.79628354245598, -73.97553807936819 40.796270743619296, -73.97552462316673 40.79625828685154, -73.97551062651513 40.79624617846073, -73.97549610125526 40.79623443916073, -73.97548084902944 40.79622114093913, -73.97548186247572 40.796217017766445, -73.97548552884864 40.79621323284532, -73.97549284306568 40.79621092912136, -73.97550003171123 40.796211760009804, -73.97552636499013 40.796219664787735, -73.97555075912082 40.79622601398527, -73.97557542128106 40.79623173288461, -73.97560031828976 40.79623682778211, -73.975625424084 40.79624128246301, -73.975650716148 40.79624510052449, -73.97567616130777 40.796248269352425, -73.9757017287532 40.79625079254223, -73.97572739715746 40.79625266288525, -73.97575313215751 40.7962538785733, -73.97577890531342 40.79625444230184, -73.97580468818646 40.79625435316434, -73.97582849214186 40.796251244230476, -73.97584256500906 40.796249405658806, -73.9758634539007 40.796246678819145, -73.97587127005238 40.79624565838835, -73.9759222172312 40.79623900534398, -73.97596485431852 40.796229586910805, -73.97597975000772 40.796226387838836, -73.97600992177429 40.79621990422084, -73.97601537697676 40.79622046366594, -73.97602032907879 40.79622294287156, -73.97602345560502 40.796227610812046, -73.97602228727587 40.79623416530661, -73.97597133670925 40.796299484150936, -73.97597029467521 40.79630081937482, -73.97592023035138 40.79636936577161, -73.9758738179782 40.796437645462, -73.97585791062492 40.7964628354116, -73.97583006531828 40.7965069279469, -73.97578900439221 40.79657715560401, -73.97576701378505 40.79661139158293, -73.97574502552482 40.796645628458435, -73.97573521204299 40.796667982197924, -73.97572307417931 40.796695551141134, -73.97571819420394 40.79669992654162, -73.97571113836965 40.79670192146278, -73.97570394871467 40.79670045753607, -73.97569875187233 40.796696430306554, -73.97569717277605 40.796692026530245, -73.97569846268293 40.79666739543466, -73.97569866891769 40.79664452008487, -73.97569784307011 40.79662165712438, -73.97569599579775 40.79659882816746, -73.97569311879762 40.796576059326746, -73.97569139718736 40.79656605621316, -73.97568921443043 40.79655337851816, -73.97568429690622 40.79653081366013, -73.97568206402023 40.79652237730796, -73.9756783650325 40.79650838816523, -73.97567143064899 40.79648613085177, -73.97566349374685 40.796464068734615, -73.97565457327862 40.79644222162851, -73.9756446704186 40.79642062105098, -73.97563380293296 40.79639929041856, -73.97562707965915 40.796386289383264, -73.97561986221719 40.79637343862645, -73.97561214941446 40.79636075975985, -73.97560395310022 40.796348253686276, -73.97559528156353 40.79633593571591, -73.97558613480098 40.796323815754185, -73.97557501335359 40.79631009338425, -73.97556328630526 40.79629666264678, -73.97555097260826 40.79628354245598)), ((-73.9848345479935 40.784081735976244, -73.98485285359243 40.78408417694151, -73.98479524362804 40.78416646707971, -73.9848345479935 40.784081735976244)))",M071,6080,M071,M-14,M-14,M-14,M-14,"Riverside Dr. to Hudson River, W. 72 St.to St Clair Pl.","107, 109","6,7",20,"10023, 10024, 10025",M,253.168,False,Riverside Park,No,100005080,PARK,20100106000000.00000,18760602000000.00000,,DPR/CDOT,True,Riverside Park,Y,Riverside Park,Flagship Park,Community Park,http://www.nycgovparks.org/parks/M071/,Yes,"69, 70, 67",31,"10, 13",{8CE05535-EA4D-4313-A9ED-39A71A098FD9} +"MULTIPOLYGON (((-73.88767965403368 40.82261165255405, -73.88833850351591 40.82218391357894, -73.88842318528955 40.823153245049916, -73.88772732291498 40.82318889475944, -73.88767965403368 40.82261165255405)))",X029,5629,X029,X-02,X-02,X-02,X-02,Aldus St to Bruckner Blvd bet. Bryant Av and Longfellow Av,202,17,41,10459,X,1.322,False,Lyons Square Playground,Yes,100005083,PARK,20100106000000.00000,19250612000000.00000,,DPR,True,Lyons Square Playground,Y,Lyons Square Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X029/,No,85,32,15,{FD52AAB9-5E6F-4C5C-AF21-8D8F8DBCCA75} +"MULTIPOLYGON (((-73.78842482253641 40.60042192513047, -73.7900890792159 40.59930190089149, -73.79038751133159 40.598657160951056, -73.79060079160504 40.59864507119537, -73.79060224045429 40.59878921816374, -73.79232463764649 40.59869157129105, -73.79287140980902 40.59866056782206, -73.79300077675481 40.598659867970625, -73.7938113443915 40.59860721709234, -73.79466188270932 40.59855196366945, -73.79477158065941 40.599501182216656, -73.79485041195767 40.59949702566209, -73.79495980611819 40.59949125581467, -73.79517643554114 40.59947983082907, -73.79532078815362 40.59947221832849, -73.7954644861151 40.5994646387015, -73.79553633508219 40.59946084927082, -73.79560818285972 40.59945705979318, -73.79573019077525 40.59945062454539, -73.79585045458508 40.59944428062496, -73.79597054703144 40.59943794708073, -73.79609049293828 40.599431619454776, -73.79620904449712 40.59942536667615, -73.79633227646282 40.599418866321066, -73.79647597419458 40.59941128542928, -73.7966735576313 40.599400863096534, -73.79683024727055 40.59939259693462, -73.79697935936821 40.59938386510957, -73.79719586429916 40.59937118617016, -73.79733711598958 40.599362913685496, -73.79740529817464 40.59935892120653, -73.79758904298772 40.59934816042151, -73.79770916202617 40.599341125400166, -73.79783319819333 40.59933386120674, -73.79792263103121 40.599328623455044, -73.79800999952165 40.59932350627793, -73.79810804297948 40.599317763913206, -73.7981798539061 40.59931355762159, -73.79826139330258 40.59930878212169, -73.79832347454814 40.59930514580227, -73.79846709515397 40.59929673380347, -73.79882456133726 40.59927579525154, -73.79888630210539 40.59994136133543, -73.79827098931038 40.59997497921685, -73.79827100584973 40.5999761526295, -73.79807801880692 40.599985520466, -73.79751268873635 40.60001640345583, -73.79643713190751 40.60007515100159, -73.79548003930088 40.60012741837335, -73.7946736964906 40.60017144805757, -73.79368566312851 40.60022539042319, -73.79359550431289 40.600230311994494, -73.79314055770351 40.600255147253485, -73.79308895848928 40.60025796396035, -73.79297046680301 40.60032244336297, -73.79036953096342 40.602066498907156, -73.7871555680092 40.60422932511437, -73.7860226939776 40.60327126690163, -73.78606488904474 40.60303898847406, -73.78601882308412 40.603000030666074, -73.78607936613714 40.602959291970755, -73.7861266554769 40.60269896534758, -73.78705171769779 40.602076470884235, -73.78762788600734 40.60095823154309, -73.78842482253641 40.60042192513047)))",Q459,5572,Q459,Q-14,Q-14,Q-14,Q-14,"De Costa Ave. bet. Sommerwille Basin and B. 65 St.,Bayfield Ave. bet. B. 65 St. and B. 69 St.",414,31,100,11692,Q,53.298,False,Dubos Point Wildlife Sanctuary,No,100000084,PARK,20090423000000.00000,19881005000000.00000,,DPR,Part,Dubos Point Wildlife Sanctuary,N,Dubos Point Wildlife Sanctuary,Large Park,Nature Area,http://www.nycgovparks.org/parks/Q459/,Yes,31,10,5,{70768677-ADE5-41EE-BF09-089355FE14C6} +"MULTIPOLYGON (((-73.80309100958434 40.861030145111755, -73.80310634466362 40.86104009650718, -73.80312170947951 40.86105002093653, -73.80313710521794 40.86105991840186, -73.8031525318817 40.86106978800255, -73.80316798828194 40.861079630637136, -73.80318347560748 40.86108944540714, -73.80319899267221 40.86109923231045, -73.80321453947342 40.861108992247665, -73.80323011719983 40.86111872432021, -73.80324572466282 40.86112842942657, -73.80326136186753 40.86113810576578, -73.80327702881142 40.86114775423825, -73.80329272549181 40.86115737574456, -73.80330845072791 40.86116696848159, -73.80332420688656 40.861176534254426, -73.8033399916009 40.86118607125801, -73.80335580605431 40.86119558039483, -73.80337165024687 40.861205061664904, -73.80338752299508 40.861214514165674, -73.80340342548241 40.861223938799604, -73.8034193553366 40.861233335562765, -73.80343531611862 40.86124270356062, -73.80345130426761 40.86125204368758, -73.80346732215823 40.86126135504725, -73.80348336741845 40.86127063763549, -73.80349944241769 40.861279892356904, -73.80351554478911 40.861289117406415, -73.80353167689952 40.86129831458906, -73.80354783637951 40.861307483000246, -73.80356402441234 40.861316623542535, -73.80358023981735 40.861325734412866, -73.80359648377794 40.86133481651379, -73.80361275629409 40.861343869845236, -73.80362905617969 40.861352894405165, -73.80364538343736 40.861361889293136, -73.80366173924793 40.86137085631215, -73.80367812124446 40.861379793657086, -73.80369453179921 40.86138870133204, -73.80371096972338 40.861397580235455, -73.80372743501688 40.8614064303673, -73.80374392768245 40.86141525082711, -73.80376044653131 40.861424042513335, -73.8037769927522 40.86143280452744, -73.80379356634506 40.861441536869485, -73.80382337737107 40.86145849610095, -73.80385320744547 40.86147543644664, -73.8038830553821 40.86149235790454, -73.80391292236703 40.86150926047672, -73.80392104002257 40.86151407659682, -73.80392918384752 40.861518867547005, -73.8039373526558 40.861523633325305, -73.80394554882224 40.8615283730352, -73.80395376878865 40.861533086670725, -73.80396201611052 40.86153777513832, -73.80397028722963 40.86154243843201, -73.80397858452342 40.86154707475479, -73.80398690561451 40.8615516859036, -73.80399525287761 40.861556270982035, -73.80400362394066 40.861560829985976, -73.80401201999224 40.861565362017, -73.80402044102716 40.86156986887607, -73.80402907889719 40.86157445084367, -73.80403774294192 40.86157900584028, -73.8040464307945 40.861583532060926, -73.80405514482185 40.8615880313106, -73.80406388384051 40.861592502686825, -73.80407264666431 40.861596946187525, -73.80408143448201 40.861601360914264, -73.80409024610496 40.8616057477655, -73.8040990827191 40.86161010674319, -73.80410794313848 40.86161443784541, -73.80411682736565 40.86161874017157, -73.80412573540063 40.861623013721754, -73.80413466724076 40.86162725939635, -73.80414362170255 40.86163147629294, -73.80415259997218 40.86163566441348, -73.80416160204689 40.861639824658496, -73.80417062674594 40.86164395522493, -73.8041796740667 40.86164805701334, -73.80418874400911 40.861652130023664, -73.80419783538703 40.861656174253866, -73.80420695057275 40.86166018970805, -73.8042160871967 40.86166417548163, -73.8042252464449 40.8616681315766, -73.80423442712596 40.86167205979198, -73.80424362924789 40.8616759574263, -73.80426731697204 40.86168798046114, -73.80428405877707 40.86169642576051, -73.80430082557903 40.861704842284084, -73.80431761975547 40.86171322823487, -73.8043344389314 40.861721584509404, -73.80435128310695 40.861729911107545, -73.80436815347076 40.86173820713094, -73.80438505002022 40.86174647347999, -73.80440197157183 40.861754709252224, -73.80441891812035 40.861762916248516, -73.80443589085971 40.86177109176955, -73.80445288741248 40.86177923761214, -73.80446991015347 40.861787352879844, -73.80448695789389 40.86179543847122, -73.80450402945027 40.86180349348361, -73.80452112719489 40.86181151792113, -73.80453824875548 40.861819511779665, -73.80455539531545 40.8618274759618, -73.80457256688008 40.861835408666465, -73.80458976225799 40.861843311692695, -73.80460698145446 40.86185118323944, -73.80462422565023 40.861859025109666, -73.8046414936646 40.861866835500415, -73.80465878549477 40.861874615312175, -73.80467610114084 40.8618823645449, -73.80469344178877 40.8618900832006, -73.80471080506649 40.86189777127527, -73.80472819216261 40.86190542787036, -73.8047456030772 40.861913052985926, -73.80476303780486 40.86192064842289, -73.8047804963536 40.861928211479814, -73.8047979763432 40.86193574485408, -73.80481548133996 40.861943245850284, -73.80483300896624 40.861950716265405, -73.80485055922219 40.86195815609936, -73.80486813211297 40.8619655635512, -73.80488572763329 40.861972940421886, -73.80490334697191 40.86198028581292, -73.80492098894001 40.861987600622804, -73.80493865235684 40.86199488304849, -73.8049563384058 40.862002133992505, -73.8049740470842 40.86200935435532, -73.80499177839737 40.86201654233594, -73.80500953115389 40.86202369973335, -73.80502730654506 40.862030824748516, -73.80504510338223 40.86203791827998, -73.80506292166528 40.86204498032769, -73.8050807625803 40.86205201089365, -73.80509862494388 40.86205900907535, -73.80511650875336 40.86206597577325, -73.80513441282254 40.86207291098537, -73.80515233952629 40.86207981381523, -73.80517028767589 40.86208668516124, -73.80518825608782 40.86209352412097, -73.80520624594548 40.86210033159687, -73.80522425725154 40.86210710668848, -73.80524228881727 40.8621138502942, -73.80526034183397 40.862120560615104, -73.80527841510762 40.8621272403506, -73.80529650864611 40.862133886799285, -73.80531462244421 40.86214050176206, -73.80533275650444 40.86214708433845, -73.80535091201294 40.8621536345305, -73.80536908659748 40.86216015233411, -73.80538728144407 40.862166637751315, -73.80540549655282 40.86217309078208, -73.80542373073489 40.86217951232492, -73.8054419851816 40.86218590058081, -73.80546025989038 40.862192256450264, -73.80547855367507 40.86219857993127, -73.80549686653562 40.86220487102379, -73.80551519966076 40.862211128829365, -73.80553355067568 40.86221735424442, -73.80555192195249 40.86222354727304, -73.80557031230514 40.862229707913144, -73.80558872173619 40.862235835264194, -73.80560714905687 40.862241930224776, -73.80562559545331 40.862247992796796, -73.80564406092809 40.8622540220798, -73.80566254429507 40.86226001807178, -73.80568104673773 40.86226598167521, -73.80569956706996 40.86227191288803, -73.80571810648041 40.86227781081187, -73.80573666378301 40.86228367544459, -73.80575523779162 40.86228950678425, -73.80577383087576 40.86229530573529, -73.80579244185198 40.86230107139523, -73.80581107072024 40.862306803764085, -73.8058297162944 40.86231250283984, -73.80584838094406 40.86231816952693, -73.80586706111603 40.86232380201845, -73.80588576036351 40.86232940212131, -73.80590447513063 40.86233496892903, -73.80592320779233 40.86234050154508, -73.80594195834324 40.862346001770504, -73.80596072441385 40.86235146870071, -73.8059795083789 40.86235690143928, -73.80599830904694 40.86236230178519, -73.80601712523726 40.8623676679354, -73.80603595931933 40.86237300079442, -73.8060548089209 40.862378300358245, -73.8060736740446 40.86238356572635, -73.80609255705998 40.862388797803206, -73.80611145559479 40.862393996584906, -73.80613036964907 40.86239916207134, -73.80614929922532 40.86240429336202, -73.80616824550712 40.8624093913595, -73.80618720731081 40.86241445516121, -73.80620618463391 40.8624194856677, -73.80622517747888 40.86242448197837, -73.80624418465703 40.86242944499183, -73.80626320854316 40.86243437381149, -73.80628224676236 40.862439269333855, -73.80630130050345 40.86244413066045, -73.8063203685802 40.862448957789276, -73.8063394521761 40.86245375162275, -73.80638131066475 40.86246452241754, -73.80642318468328 40.86247525990492, -73.80646507304553 40.862485964082914, -73.80650697693763 40.862496634953516, -73.80654889517594 40.86250727161421, -73.80659082775779 40.862517874965505, -73.8066327758667 40.862528445909795, -73.80667473832429 40.86253898174367, -73.80671671512262 40.86254948516856, -73.8067587062643 40.86255995528393, -73.80680071293807 40.86257039119133, -73.80684273276889 40.86258079378722, -73.80688476694553 40.86259116217304, -73.80692681664878 40.86260149815182, -73.8069688795116 40.862611799918554, -73.80701095790351 40.86262206837771, -73.80705304945494 40.86263230262474, -73.80709515534922 40.86264250356219, -73.80713727558629 40.862652671190006, -73.80717940898269 40.862662804605705, -73.8072215579053 40.86267290561421, -73.80726371998968 40.86268297151007, -73.80730589641668 40.86269300409628, -73.8073480860001 40.862703003370754, -73.807390289926 40.86271296933557, -73.80743250701086 40.86272290108813, -73.80747473844072 40.862732798630475, -73.8075169830267 40.86274266286104, -73.80755924195505 40.86275249378186, -73.807601514042 40.862762290490394, -73.80764380047118 40.862772053889124, -73.80768610005887 40.86278178307554, -73.80772841280512 40.862791478049694, -73.8077707387072 40.86280113971199, -73.80781307776515 40.862810768062445, -73.8078554311675 40.86282036220253, -73.80789779772812 40.86282992213023, -73.8079401762583 40.86283944874407, -73.80798256913275 40.86284894114751, -73.80802497516267 40.862858400238984, -73.80806739435062 40.86286782511809, -73.80810982551051 40.862877215782774, -73.8081522710118 40.862886573137416, -73.80819472848486 40.862895896277685, -73.80823719911317 40.862905186105934, -73.80827968289917 40.862914441721706, -73.8083221786568 40.86292366312301, -73.80836468757201 40.86293285031178, -73.80840720964221 40.86294200418848, -73.80844974368387 40.8629511238507, -73.80849229088288 40.86296020930034, -73.80853485123674 40.86296926143786, -73.80857742237832 40.86297827845837, -73.80862000785805 40.86298726306927, -73.80866260412539 40.86299621256309, -73.80870521354986 40.8630051278443, -73.80874783612886 40.86301400981331, -73.80879046949262 40.86302285756575, -73.80883311601333 40.863031671105546, -73.80886066676878 40.86303842901434, -73.8088882031981 40.863045221111456, -73.80891572530129 40.86305204739694, -73.8089432330785 40.86305890787084, -73.80897072534358 40.86306580253114, -73.80899820209659 40.86307273137791, -73.80902566452365 40.863079694413074, -73.80905311262485 40.863086691636695, -73.80908054521662 40.86309372214625, -73.8091079622965 40.86310078684232, -73.8091353638619 40.86310788662537, -73.80916275110418 40.863115019696366, -73.80919012165107 40.86312218605145, -73.80921747786975 40.86312938749553, -73.80924481739312 40.86313662222366, -73.80927214259091 40.86314389114032, -73.80929945109348 40.863151193341075, -73.80932674408187 40.8631585306289, -73.80935402156383 40.86316590030235, -73.80938128353165 40.86317330506285, -73.80940852880441 40.86318074310748, -73.80943325093031 40.86318703335401, -73.80945795873197 40.863193356889695, -73.80948265102083 40.86319971461322, -73.80950732898555 40.863206105625956, -73.80953199144002 40.86321252992596, -73.80955663838438 40.86321898751328, -73.80958126981595 40.863225479288445, -73.80960588692356 40.86323200435288, -73.80963048852108 40.86323856270463, -73.80965507342238 40.863245154341776, -73.8096796439973 40.86325178016872, -73.80970419787602 40.86325843928108, -73.80972873624482 40.863265131680784, -73.80975325910633 40.86327185646745, -73.80977776645531 40.86327861544198, -73.80980225710577 40.86328540860242, -73.80982673224895 40.86329223414978, -73.80985119069625 40.86329909298263, -73.80987563244767 40.86330598510095, -73.8099000586893 40.86331291050669, -73.80992446823517 40.863319869197994, -73.80994886227396 40.86332686027626, -73.80997323842826 40.86333388553854, -73.80999759907294 40.86334094408833, -73.81002194183843 40.8633480350212, -73.81004626790826 40.863355159239674, -73.81007057846853 40.86336231674561, -73.81009487114716 40.86336950753521, -73.81011914713272 40.86337673070989, -73.81014340523662 40.86338398716819, -73.81016764664507 40.86339127691213, -73.81019187135801 40.86339859994169, -73.81021607819197 40.863405955354395, -73.81024026833047 40.86341334405278, -73.81026444059006 40.86342076513433, -73.81028859496816 40.86342821949964, -73.81031273146739 40.86343570624815, -73.81033685127134 40.863443226282314, -73.81036095201034 40.863450778697846, -73.81038503605411 40.863458364399044, -73.81040910103299 40.863465982481564, -73.8104331493193 40.863473632949336, -73.81045717853816 40.863481316698945, -73.81048118987835 40.863489032831865, -73.81050518333736 40.863496782248596, -73.81052915773161 40.86350456404668, -73.8105531142473 40.86351237822812, -73.81057705169829 40.86352022479098, -73.81060097127073 40.8635281037372, -73.81062487177604 40.863536015965344, -73.81064875440285 40.86354396057687, -73.81067261677896 40.86355193756789, -73.81069646127668 40.86355994694231, -73.81072028670984 40.86356798869827, -73.81074409307854 40.86357606283566, -73.8107678803828 40.86358416935454, -73.81079164862265 40.86359230825496, -73.81081539780062 40.86360047863641, -73.81083912672557 40.863608682297965, -73.81086283658613 40.863616918341044, -73.81088652738495 40.86362518586515, -73.81091019911693 40.86363348667137, -73.81093385060109 40.86364181895671, -73.81095748183488 40.863650183621715, -73.810981094007 40.86365857976783, -73.81100468592629 40.863667009194124, -73.81102825878396 40.86367547010155, -73.81105181020781 40.86368396248622, -73.81107534256502 40.86369248815306, -73.81109885467713 40.863701044398645, -73.81112234653652 40.86370963392445, -73.81114581814826 40.8637182549295, -73.8111692683264 40.863726907411895, -73.81119269944048 40.86373559227597, -73.81160972394615 40.863876552496386, -73.8120239364544 40.86402221439176, -73.81243524459983 40.864172548125524, -73.81284355602959 40.86432751845934, -73.81324878075503 40.86448709196066, -73.81329183962978 40.864538848050465, -73.81332812342355 40.864593516158045, -73.81335729313416 40.864650585162764, -73.81337907742166 40.86470952424173, -73.81339327260636 40.864769783769844, -73.81339974739673 40.864830801631086, -73.81339844050277 40.864892008617026, -73.81338936417788 40.86495283473628, -73.81316896290065 40.86529846215123, -73.81266228154426 40.8662478930087, -73.81227233666118 40.867041939950816, -73.81193252863656 40.86773095019584, -73.81181374402085 40.867991434247365, -73.81168738579532 40.86823931424279, -73.81164586674535 40.86829013141557, -73.81159753708977 40.86833735079838, -73.81154293209921 40.8683804500718, -73.81148265810236 40.86841894935545, -73.81141738296823 40.868452421098446, -73.81134783253201 40.8684804954768, -73.81127477754383 40.868502861273114, -73.811199028918 40.86851926767012, -73.81112142702293 40.86852953593995, -73.8110428334051 40.86853354952535, -73.81096411889453 40.868531264826366, -73.81088315557541 40.8685217994762, -73.81080135393928 40.868518476743624, -73.81071952287357 40.86852132857038, -73.8106384666871 40.86853032836115, -73.81055898631311 40.86854538558246, -73.81048186505528 40.868566352942956, -73.81040786385144 40.86859302368428, -73.81033771177694 40.86862513426639, -73.8102721001018 40.868662368860015, -73.81021167754591 40.868704359338594, -73.81016131302572 40.868745056118755, -73.81011714228636 40.86878970631823, -73.81007969949022 40.86883776962825, -73.81004943707359 40.86888866418251, -73.81002672335062 40.8689417746572, -73.8100055585565 40.868994141170475, -73.80999142538758 40.869047857387365, -73.80998446657993 40.869102377848016, -73.80998475370515 40.8691571542727, -73.80999228362387 40.86921163105336, -73.81000697962976 40.86926525966338, -73.81002869264002 40.869317496858734, -73.81005213801863 40.86937913352166, -73.81008413196403 40.86943851231069, -73.81012430988949 40.869494953648854, -73.81017220865895 40.86954780841248, -73.81022728078207 40.869596471462486, -73.81028889322269 40.86964038344365, -73.81035633804353 40.86967904160899, -73.81042884426361 40.8697120016403, -73.81048782887113 40.86973820915291, -73.81054991179292 40.86975990396037, -73.81055435876583 40.86976207063773, -73.81055877955458 40.869764267888606, -73.81056317534811 40.86976649481447, -73.81056754377641 40.86976875051096, -73.81057188602063 40.86977103678093, -73.81057620208585 40.86977335182352, -73.81058048959969 40.86977569563475, -73.8105847497458 40.869778069117096, -73.81058898252668 40.869780471370056, -73.81059318557251 40.86978290148929, -73.81059736125314 40.869785360379105, -73.81060150719874 40.869787847135214, -73.81060562459545 40.86979036175951, -73.81060971107088 40.86979290424811, -73.81061376781122 40.869795474603, -73.81061779481908 40.86979807192362, -73.81062179090812 40.86980069620813, -73.81062575607847 40.86980334745641, -73.81062969033012 40.8698060256686, -73.81063359247675 40.86980873084265, -73.81063746252099 40.86981146207811, -73.81064130165159 40.86981421847646, -73.81064510630478 40.86981700183281, -73.81064888004431 40.869819810352055, -73.81065261931157 40.86982264402838, -73.8106563252902 40.86982550376415, -73.81065999798528 40.869828387758446, -73.81066363739687 40.86983129601123, -73.81066724114991 40.86983422941918, -73.81067081043318 40.86983718708368, -73.81067434643296 40.86984016900667, -73.81067784559309 40.86984317428191, -73.81068131028596 40.86984620291326, -73.81068473813666 40.86984925579728, -73.81068813152272 40.869852331136926, -73.81069148807165 40.86985542892831, -73.81069480778093 40.8698585500719, -73.81069809065566 40.86986169276673, -73.81070133669331 40.86986485791333, -73.81070454589639 40.8698680446112, -73.81070771707613 40.86987125375882, -73.81071085023763 40.869874483555314, -73.81071394656715 40.86987773400254, -73.81071700368965 40.8698810059972, -73.81072002279394 40.86988429864064, -73.81072300269625 40.86988761103057, -73.81072594339413 40.86989094406736, -73.81072884489262 40.86989429595004, -73.81073170718922 40.86989766757919, -73.81073452909767 40.86990105895278, -73.81073731180672 40.86990446917233, -73.8107400541302 40.869907898235866, -73.81074275725689 40.86991134524491, -73.81074541881425 40.86991481019547, -73.81074803879973 40.869918293988086, -73.8107506184048 40.86992179482375, -73.81075315762929 40.86992531270246, -73.8107556552871 40.86992884762228, -73.81075811019188 40.86993239958123, -73.81076052471876 40.86993596768271, -73.81076289649518 40.869939551922876, -73.81076522552114 40.86994315230176, -73.81076751298293 40.86994676882124, -73.81076975769683 40.869950400578865, -73.81077195966537 40.869954046674245, -73.81077411888604 40.869957708007824, -73.81077623536139 40.869961383679076, -73.81077830790768 40.869965072785675, -73.81078033770609 40.86996877713045, -73.81078232357798 40.86997249401, -73.81078426552091 40.86997622432485, -73.81078616353473 40.869979968075, -73.81078801880835 40.869983724361916, -73.81078982896919 40.8699874931817, -73.81079159401989 40.86999127363382, -73.81079331633286 40.86999506572226, -73.81079499234684 40.869998870341576, -73.81079662444198 40.870002684794336, -73.81079821142693 40.87000651087937, -73.81079975449047 40.87001034769834, -73.81080125126266 40.87001419434678, -73.81080270292716 40.87001805172708, -73.81080411067543 40.87002191804031, -73.81080547094602 40.87002579418103, -73.81080678730036 40.870029679254664, -73.81080805736588 40.870033573257295, -73.81080928114513 40.87003747528843, -73.81081045982437 40.87004138535003, -73.81081159221732 40.87004530344012, -73.81081267832654 40.870049228658246, -73.81081371933574 40.87005316190685, -73.81081471287754 40.87005710138104, -73.81081566013557 40.870061047983306, -73.81081656230126 40.87006499991454, -73.81081741699693 40.87006895897187, -73.81081822541651 40.87007292245577, -73.81081898755488 40.870076892167226, -73.81081970341718 40.87008086630527, -73.81082037181459 40.870084845768396, -73.8108209939384 40.870088828757666, -73.8108215685999 40.870092816171535, -73.81082209698523 40.87009680801203, -73.81082257791337 40.87010080247613, -73.81082301257047 40.870104799565894, -73.81082340095396 40.870108800181754, -73.81082374069389 40.870112803419296, -73.81082403416539 40.870116808381965, -73.81082428136844 40.8701208150698, -73.81082448111411 40.87012482438129, -73.81082463341018 40.870128833615, -73.81082473825408 40.870132843671385, -73.81082479682946 40.87013685545287, -73.8108248079577 40.8701408662561, -73.81082477281998 40.87014487788398, -73.81082468904893 40.87014888853163, -73.81082455901701 40.87015289820295, -73.8108243827216 40.87015690779842, -73.81082415779541 40.870160915513225, -73.81082388661092 40.87016492135116, -73.81082356916802 40.8701689253123, -73.81082320428058 40.870172927394634, -73.81082279195364 40.87017692579728, -73.81082233218206 40.87018092232114, -73.81082182615724 40.87018491516717, -73.8108212738792 40.87018890433548, -73.81082067416159 40.870192889824004, -73.8108200281933 40.87019687073422, -73.81081933478544 40.87020084796474, -73.81081859512943 40.870204819716484, -73.81081780922523 40.87020878598944, -73.81081697588408 40.87021274768216, -73.81081609629722 40.87021670299563, -73.81081517165099 40.87022065193176, -73.81081419957287 40.87022459448676, -73.81081318124912 40.87022853066244, -73.81081211668226 40.870232459558345, -73.8108110058697 40.870236382075035, -73.81080985000536 40.870240295512886, -73.81080864671169 40.87024420166906, -73.81080739954994 40.87024809964894, -73.81080610496389 40.87025198854608, -73.81080476532355 40.87025586926494, -73.8108033806339 40.87025974000451, -73.81080195089253 40.87026360166532, -73.81080047491565 40.870267453344894, -73.81079895388949 40.870271295045185, -73.81079738781666 40.87027512586572, -73.8107957778808 40.87027894670888, -73.81079412171455 40.870282755769864, -73.81079242168782 40.870286553953, -73.81069952054715 40.870434481855604, -73.81068987816595 40.870448832463104, -73.8092694219222 40.872447452395235, -73.80910396126133 40.872674977614054, -73.80900513952177 40.87281086645914, -73.80900021742781 40.872816290069316, -73.80899525624498 40.87282169290333, -73.80899025715705 40.872827075863576, -73.80898521898018 40.87283243804764, -73.80898014290077 40.872837779457456, -73.8089750289214 40.87284309919255, -73.80896987703682 40.87284839905387, -73.8089646872548 40.87285367633997, -73.80895945957022 40.87285893285183, -73.80895419398561 40.87286416768889, -73.8089488916873 40.87286938085323, -73.8089435526778 40.87287457144424, -73.80893817576832 40.87287974036054, -73.80893276214512 40.87288488760395, -73.8089273118107 40.87289001227416, -73.80892182595404 40.872895113472474, -73.80891630219736 40.87290019299602, -73.80891074291581 40.87290524994825, -73.80890514811198 40.87291028342862, -73.80889951659954 40.872915293435206, -73.80889384956228 40.87292028087036, -73.80888814700525 40.872925243933246, -73.8088824089234 40.872930184424725, -73.80887663650806 40.87293510054585, -73.8088708273842 40.8729399931931, -73.80886498511319 40.87294486147195, -73.80885910731989 40.8729497062789, -73.80885319519312 40.872954526715446, -73.80884724754932 40.87295932187914, -73.80884126675575 40.87296409357487, -73.80883525281762 40.87296884000163, -73.80882920335979 40.872973562056046, -73.80882312076001 40.872978257940964, -73.80881700501311 40.87298292945745, -73.8088108561191 40.87298757660547, -73.8088046740831 40.87299219758399, -73.80879845890512 40.87299679239312, -73.80879221058267 40.87300136193319, -73.80878593030192 40.873005906206316, -73.8087732180077 40.87301247943102, -73.80876047851167 40.87301902289312, -73.80874771299763 40.87302553749499, -73.80873492028181 40.87303202233415, -73.80872210273938 40.873038476514076, -73.80870925917894 40.87304490183382, -73.80869638960304 40.87305129739278, -73.80868349520063 40.87305766229248, -73.80867057359387 40.87306399832998, -73.80865762716063 40.87307030370816, -73.80864465590088 40.87307657842707, -73.80863165980941 40.873082824287664, -73.80861863770518 40.87308903948698, -73.80860559077442 40.873095224027004, -73.80859251901462 40.87310137880817, -73.80857942242838 40.873107502930004, -73.80856630220192 40.87311359639448, -73.8085531571465 40.87311966010008, -73.80853998726464 40.873125693146356, -73.80852679255895 40.87313169463274, -73.80851357421055 40.87313766636227, -73.80850033222207 40.87314360743433, -73.80848706659343 40.87314951784898, -73.80847377732479 40.87315539760624, -73.80846046441869 40.87316124580554, -73.80844712668625 40.87316706334543, -73.80843376768632 40.87317285023182, -73.80842038386268 40.873178605558316, -73.80840697758534 40.87318433022928, -73.80839354767056 40.8731900233423, -73.80838009530216 40.87319568579983, -73.80836662048257 40.87320131670131, -73.80835312320943 40.8732069169473, -73.80833960348517 40.87321248563722, -73.80832606012355 40.87321802276916, -73.80831249549723 40.87322352834703, -73.80829890960622 40.87322900237083, -73.80828530007791 40.87323444483665, -73.80827167047117 40.873239855750306, -73.80825801722719 40.8732452351059, -73.8082443439048 40.87325058290938, -73.80823064813153 40.87325589915681, -73.80821693109617 40.87326118294961, -73.8082031939825 40.87326643519024, -73.80818943441795 40.873271655874746, -73.80817565477767 40.87327684410663, -73.8081618538729 40.87328200078436, -73.80814803289236 40.87328712500939, -73.80813419064735 40.8732922176803, -73.80812032832671 40.873297277898494, -73.8081064459304 40.87330230566402, -73.80809254226962 40.873307301875336, -73.80807861972215 40.873312264735446, -73.80806467591022 40.87331719604133, -73.8080507143953 40.87332209489846, -73.80803673161857 40.87332696130087, -73.80802272995261 40.87333179525253, -73.80800870821116 40.87333659675143, -73.80799466758049 40.87334136579958, -73.8079806080607 40.87334610239691, -73.80796652965168 40.87335080654347, -73.80795243235616 40.873355477338755, -73.80793831617152 40.873360115683234, -73.80792418109775 40.87336472157688, -73.80791002713752 40.87336929411928, -73.80789585547451 40.87337383421277, -73.80788166611131 40.873378340956926, -73.80786745785912 40.87338281525029, -73.80785323190678 40.873387256194235, -73.8078389882517 40.873391664689365, -73.80782472689921 40.873396038934594, -73.80781044784139 40.87340038163146, -73.80779615108614 40.87340469007841, -73.80778183781456 40.87340896607843, -73.80776750684561 40.87341320782864, -73.8077531593603 40.87341741713187, -73.80773879417505 40.87342159308567, -73.80772476596593 40.87342533556295, -73.80771072477891 40.873429052803154, -73.80769164816964 40.87343384584062, -73.80767255622952 40.8734386064317, -73.80765345133369 40.87344333367994, -73.8076343311071 40.87344802848176, -73.80761519792485 40.873452689940734, -73.80759605060071 40.873457318054776, -73.80757688913214 40.87346191372447, -73.80755771352437 40.87346647514872, -73.80753852495846 40.87347100413057, -73.80751932225076 40.87347549976751, -73.80750010658501 40.873479962961994, -73.80748087796647 40.873484391913024, -73.80746163520365 40.87348878841961, -73.80744238067172 40.87349315158524, -73.80742311199816 40.8734974814059, -73.80740383037185 40.87350177698313, -73.80738453578766 40.873506040117846, -73.80736522943452 40.87351026991156, -73.80734591012616 40.87351446636226, -73.80732657786258 40.87351862947, -73.80730723264641 40.87352275833426, -73.80728787684505 40.87352685475992, -73.80726850690229 40.873530917840625, -73.80724912637962 40.873534946681765, -73.80722973290189 40.87353894217986, -73.80721032765541 40.87354290433693, -73.80719091064022 40.87354683315289, -73.80717148185633 40.87355072862784, -73.80715204130638 40.87355458986119, -73.8071325889878 40.87355841775354, -73.80711312608689 40.87356221230674, -73.80709365142 40.873565972618316, -73.80707882596153 40.87356848271442, -73.80706401107926 40.87357102704495, -73.80704920558969 40.87357360470737, -73.80703441067898 40.873576215703736, -73.80701962516078 40.87357886003202, -73.8070048514078 40.873581537696246, -73.80699008704464 40.87358424959289, -73.80697533444925 40.87358699392499, -73.80696059124631 40.87358977158904, -73.80694586099217 40.87359258349148, -73.80693114013307 40.87359542782541, -73.80691643103636 40.87359830639579, -73.80690173370726 40.87360121740159, -73.80688704814315 40.873604161743394, -73.80687237315765 40.87360713941913, -73.80685770993713 40.87361015043084, -73.80684305967046 40.87361319387998, -73.80682842116605 40.8736162715656, -73.80681379442915 40.87361938168673, -73.80679917945704 40.87362252514379, -73.80678457743878 40.87362570103836, -73.80676998837157 40.87362891027087, -73.8067554110692 40.873632152839406, -73.80674084790682 40.87363542784743, -73.80672629650918 40.87363873619141, -73.80671175806259 40.87364207787342, -73.80669723375594 40.873645451994896, -73.80668272121662 40.87364885855191, -73.80666822400087 40.873652298450935, -73.8066537397387 40.873655770787465, -73.80663926843015 40.87365927556152, -73.80662481125877 40.873662813675594, -73.8066103682272 40.8736663842292, -73.80659593933551 40.8736699872223, -73.80658152458095 40.873673623555455, -73.80656712396613 40.87367729232813, -73.8065527374937 40.87368099263988, -73.8065383663447 40.873684726293675, -73.80652401052173 40.873688492389014, -73.80650966765214 40.873692290921944, -73.8064953412948 40.8736961218984, -73.80648168751306 40.87369997381172, -73.80646805024357 40.87370385816875, -73.80645442830016 40.87370777496755, -73.80644082287161 40.87371172330956, -73.80642723276647 40.87371570499381, -73.8064136603625 40.873719718223334, -73.80640010447337 40.87372376299608, -73.80638656390757 40.87372784111109, -73.80637304223184 40.8737319498729, -73.8063595358794 40.87373609197691, -73.80634604723063 40.87374026472574, -73.80633257509147 40.87374447081885, -73.80631912184226 40.87374870755874, -73.80630568510519 40.873752976742416, -73.80629226606918 40.87375727747139, -73.80627886473161 40.873761610646135, -73.80626548109765 40.87376597446573, -73.80625211516204 40.87377037073114, -73.80623876811377 40.87377479854386, -73.80622543876639 40.87377925790192, -73.80621212830634 40.8737837488073, -73.8061988367335 40.87378827126001, -73.80618556286421 40.87379282435758, -73.80617230787955 40.873797409903, -73.80615907178463 40.87380202609526, -73.80614585576066 40.87380667473738, -73.80613265744276 40.873811353123905, -73.80611947919569 40.873816063960284, -73.80610632102469 40.873820805445554, -73.80609318174082 40.8738255784782, -73.8060800613467 40.873830382157756, -73.8060669622149 40.87383521648823, -73.80605388197019 40.87384008236609, -73.8060408217989 40.87384497979337, -73.80602778289247 40.873849906971095, -73.80601476287308 40.87385486569622, -73.80600176411599 40.873859855072276, -73.80598878661851 40.87386487599978, -73.80597582919958 40.87386992667576, -73.80596289185662 40.873875008000695, -73.80458661264574 40.87449012741487, -73.80290695662647 40.87527270356117, -73.80260368687418 40.87541217808356, -73.80241903669423 40.87548554197914, -73.80137952629816 40.87577553160432, -73.80045667825756 40.87603878539451, -73.80045681174994 40.87603857851267, -73.8004300568037 40.876046196317446, -73.80040331482549 40.87605383935221, -73.80037658581799 40.876061506716425, -73.8003498674057 40.87606919930652, -73.80032316314764 40.87607691712857, -73.80029264965214 40.876085770173816, -73.80026215147095 40.87609465655566, -73.80023167097939 40.87610357537763, -73.80020120580475 40.87611252663572, -73.80017075832247 40.87612150943357, -73.80014032615426 40.87613052556804, -73.80010991167559 40.876139574142734, -73.80007951488372 40.87614865605817, -73.80004913341125 40.87615776950928, -73.8000187696282 40.87616691540071, -73.79998842234815 40.87617609373036, -73.79995809275741 40.87618530450032, -73.79992777966964 40.876194547708586, -73.79989748427116 40.87620382335715, -73.79986720537818 40.876213130543576, -73.79983694417167 40.87622247107084, -73.79980670065432 40.87623184403848, -73.79977647482878 40.876241248545995, -73.799746265506 40.8762506854919, -73.7997161023717 40.876260145922835, -73.79968595811552 40.876269637895724, -73.79965583035926 40.876279163207535, -73.79962572029461 40.87628872005934, -73.7995956279216 40.87629830845112, -73.79956555323744 40.87630792928346, -73.79953549742845 40.87631758255834, -73.79950545812468 40.87632726737125, -73.79947543769597 40.87633698462673, -73.799445434956 40.87634673432282, -73.79941545109375 40.87635651556099, -73.7993854849229 40.876366328339344, -73.79935553644061 40.87637617355826, -73.79932560564966 40.87638605031729, -73.79929569491995 40.87639595952113, -73.79926580069512 40.876405900263045, -73.7992359265315 40.8764158734497, -73.79920607005901 40.87642587817658, -73.79917623246395 40.87643591444575, -73.79914641256002 40.876445982255106, -73.79911661271713 40.876456082509314, -73.79908683056527 40.87646621430375, -73.79905706728805 40.87647637854105, -73.79902732407713 40.876486573422206, -73.79899759855445 40.87649680074415, -73.79896789190902 40.876507059608485, -73.7989382041408 40.876517350015185, -73.79890853643606 40.87652767196635, -73.79887888760851 40.87653802545992, -73.79884925765529 40.876548411396406, -73.79881964658193 40.87655882797483, -73.79879005556919 40.87656927699829, -73.7987604834362 40.8765797566637, -73.79873093136378 40.87659026877418, -73.79791564526452 40.87687015253579, -73.79830920755576 40.876733945862284, -73.79789837145258 40.87687571612933, -73.79769312791738 40.87694654023706, -73.79791564526452 40.87687015253579, -73.79772033437862 40.87693774691812, -73.79771226954585 40.876940833168376, -73.79770422360367 40.876943949167355, -73.7976961989221 40.87694709581974, -73.79768819313394 40.87695027132028, -73.7976802097927 40.876953477476334, -73.79767224653118 40.87695671248266, -73.79766430334661 40.87695997723984, -73.79765638261173 40.876963271751954, -73.79764848314292 40.8769665951165, -73.79764060375102 40.87696994823188, -73.79763274799511 40.87697333110434, -73.797624913508 40.876976741928715, -73.79761710028419 40.876980182506024, -73.79760930951 40.876983652838334, -73.79760154237728 40.87698715112674, -73.79759379769695 40.87699067826971, -73.79758607428259 40.87699423426515, -73.79757837569329 40.87699781911925, -73.79757069955636 40.87700143282785, -73.79756304706088 40.877005074492665, -73.79755788879292 40.877006610684724, -73.7975527446843 40.877008172115154, -73.79754481397748 40.87701201049795, -73.79753690809837 40.87701587683893, -73.7975290258606 40.87701977113603, -73.7975211684451 40.87702369519231, -73.79751333586003 40.877027646306296, -73.79750552810263 40.877031625378486, -73.79749774398381 40.87703563330731, -73.79748998587903 40.877039669196435, -73.79748225379105 40.87704373214538, -73.79747454653076 40.877047823052585, -73.79746686409815 40.87705194191802, -73.79745920767952 40.87705608874377, -73.79745157846406 40.87706026263144, -73.79744397407902 40.877064463576865, -73.79743639689435 40.87706869248473, -73.79742884572642 40.87707294845243, -73.79742237250039 40.87707580064736, -73.79741592172148 40.87707868349792, -73.79740949576241 40.87708159700836, -73.79740309343673 40.87708454117658, -73.79739671711725 40.87708751600676, -73.7973903632476 40.87709052059216, -73.79738403657042 40.87709355584159, -73.79737773352946 40.87709662084838, -73.79737145649736 40.87709971561661, -73.79736520428777 40.87710284014421, -73.79735897927347 40.87710599443543, -73.79735278026803 40.87710917848814, -73.79734660727142 40.877112392302315, -73.79734046028646 40.87711563497757, -73.79733434168314 40.87711890741848, -73.79732824909414 40.87712220781989, -73.7973221848867 40.877125537987, -73.79731614787723 40.87712889701725, -73.79731013806848 40.87713228401012, -73.79730415664405 40.87713569986823, -73.7972982036039 40.87713914459152, -73.79729228013721 40.877142617281635, -73.79728638387122 40.87714611793443, -73.79728051717863 40.87714964655401, -73.79727468005949 40.87715320314048, -73.79726887251373 40.877156787693714, -73.79726309454416 40.87716039931334, -73.79725734733431 40.8771640389019, -73.79725162970065 40.877167705556815, -73.79724594164313 40.877171399278105, -73.79724028434818 40.87717512006785, -73.79723465900203 40.87717886792813, -73.79722906442117 40.87718264195641, -73.79722350060284 40.87718644305317, -73.7972179687361 40.87719027031998, -73.79721246763465 40.87719412375481, -73.79720699967116 40.87719800336176, -73.79720156365934 40.87720190913886, -73.79719615960184 40.87720584018553, -73.79719078868233 40.87720979740437, -73.7971854497172 40.87721377989284, -73.79674861504121 40.87772025812667, -73.79668096426471 40.877802401394305, -73.7959716859551 40.878645526134, -73.7959666572017 40.87865158384163, -73.79596166754035 40.87865766052843, -73.79595671816016 40.87866375529604, -73.795951807872 40.87866986904286, -73.79594693786504 40.87867600087042, -73.79594210695288 40.878682150776704, -73.79593731632193 40.87868831876381, -73.79593256597222 40.87869450483171, -73.79592785472006 40.87870070807785, -73.79592318493557 40.878706929406896, -73.79591855543508 40.87871316791632, -73.79591396621856 40.87871942360604, -73.7959094184725 40.878725696478234, -73.79590491101047 40.87873198653078, -73.79590044383521 40.87873829286319, -73.79589601813312 40.87874461547762, -73.79589163390152 40.87875095527448, -73.79588729114316 40.87875731135335, -73.79588298867158 40.878763683712094, -73.79587872767607 40.87877007145235, -73.79587450934015 40.87877647547669, -73.79587033129386 40.878782894880494, -73.79586619590722 40.87878933056839, -73.79586210199938 40.87879578073733, -73.79585804956483 40.87880224718829, -73.79585403979551 40.878808728122394, -73.795850071505 40.87881522353757, -73.79584614587704 40.87882173433641, -73.7958422629142 40.8788282596184, -73.7958384214303 40.87883479938144, -73.7958346238008 40.878841352729275, -73.7958308676502 40.878847920558215, -73.79582715416487 40.87885450287034, -73.79582348453401 40.87886109876724, -73.7958198563848 40.87886770824477, -73.79581627209006 40.878874331307095, -73.79581273046625 40.87888096705162, -73.79580923150773 40.87888761727938, -73.79580577640925 40.878894279290996, -73.7958023651653 40.878900954887456, -73.79579899659502 40.87890764226563, -73.7957956706929 40.87891434322656, -73.79579238983723 40.87892105597347, -73.79578915165528 40.878927780502096, -73.7957859573307 40.87893451771512, -73.7957828068662 40.87894126671204, -73.79577970026183 40.87894802749284, -73.79577663752039 40.87895479915701, -73.79577361863915 40.87896158260507, -73.79577064480445 40.87896837783912, -73.79576771364626 40.87897518395451, -73.79576482754022 40.87898200005492, -73.79576198529439 40.87898882793923, -73.79575918810075 40.87899566580855, -73.7957564347728 40.879002513660815, -73.79575372649427 40.87900937239862, -73.79575106208156 40.8790162411194, -73.79574844272383 40.879023118924685, -73.7957458672291 40.879030007613444, -73.79574333797582 40.879036905388865, -73.79574085259108 40.879043812246756, -73.7957384122614 40.879050728189235, -73.79573601698674 40.87905765321628, -73.7957336655807 40.87906458732579, -73.79573136041614 40.87907153052201, -73.79572910030939 40.87907848190229, -73.79572688526052 40.87908544146672, -73.79572471526674 40.87909241011572, -73.79572259033358 40.87909938604835, -73.79572051045832 40.87910637016508, -73.79571847683017 40.87911336156754, -73.79571648826268 40.879120360253644, -73.7957145447531 40.87912736712385, -73.7957126474934 40.87913438037933, -73.79571079529441 40.87914140091842, -73.7957089881562 40.87914842874118, -73.79570722726794 40.87915546294919, -73.79570551262955 40.87916250354247, -73.7957038430547 40.879169550518895, -73.79570258775223 40.879174982750584, -73.79570136090943 40.879180419535054, -73.79570016015889 40.87918585906718, -73.79570037750513 40.8791861692203, -73.79569838006796 40.879196053058465, -73.79569642888606 40.87920594148089, -73.795694523954 40.87921583628861, -73.79569266527719 40.87922573568054, -73.7956908528557 40.87923563965684, -73.79568908668963 40.879245548217376, -73.7956873655897 40.87925546226058, -73.7956856919344 40.879265379989704, -73.79568406453174 40.87927530320363, -73.79568248338728 40.87928523010135, -73.79568094849829 40.879295161583336, -73.7956794598675 40.879305096749185, -73.79567801868144 40.87931503560089, -73.79567662256724 40.87932497813437, -73.79567527270855 40.87933492525215, -73.79567397029741 40.87934487515535, -73.79567271414184 40.879354829642864, -73.79567150425018 40.87936478601325, -73.79567034061692 40.87937474606741, -73.79566922442848 40.87938470980754, -73.79566815331758 40.87939467542845, -73.79566712965153 40.87940464473523, -73.79566615224677 40.8794146168254, -73.79566522229236 40.87942459080052, -73.79566433741287 40.879434567556885, -73.79566349998116 40.87944454709871, -73.79566270881621 40.8794545276229, -73.79566196509907 40.87946451093254, -73.79566126645965 40.879474496122974, -73.79566061527082 40.87948448319836, -73.79566001153253 40.879494472158704, -73.79565945287477 40.879504462099376, -73.79565894166771 40.879514453924976, -73.79565847791129 40.87952444763559, -73.79565805923822 40.87953444142597, -73.79565768801587 40.87954443710133, -73.7956573630633 40.8795544328586, -73.79565708556427 40.879564429600386, -73.79565685433235 40.879574427324506, -73.79565666936756 40.87958442603105, -73.7956565318591 40.8795944248216, -73.79565644062059 40.879604423694055, -73.79565639565202 40.87961442264843, -73.79565639813713 40.8796244225873, -73.79565644689497 40.87963442170753, -73.79565654192562 40.879644420009235, -73.7956566844099 40.87965441929542, -73.7956568731671 40.87966441776303, -73.79565710819712 40.879674415412055, -73.79565739068643 40.8796844122446, -73.79565771944866 40.87969440825857, -73.79565809448376 40.87970440345394, -73.79565851697826 40.87971439783285, -73.79565898574846 40.879724390492704, -73.79565950079166 40.87973438233394, -73.79566006329705 40.87974437245825, -73.79566067089178 40.87975436086137, -73.7956613271352 40.87976434754963, -73.79566202846803 40.87977433251672, -73.79566277726312 40.87978431576687, -73.79566357233409 40.87979429729789, -73.79566441368647 40.87980427530892, -73.7956653024984 40.87981425250343, -73.79566623759183 40.87982422617792, -73.79566721896124 40.87983419813331, -73.79566824661211 40.87984416656865, -73.79566932054179 40.87985413238449, -73.79567044193671 40.87986409558282, -73.79567160961311 40.87987405526109, -73.79567282356841 40.8798840123198, -73.79567408380531 40.87989396585846, -73.79567539032385 40.87990391587708, -73.79567674431324 40.87991386147729, -73.79567814339511 40.87992380445578, -73.79567958994787 40.87993374301584, -73.79568108278234 40.879943678055845, -73.79568262190135 40.8799536086753, -73.7956842073021 40.879963535774685, -73.79568583899017 40.87997345755304, -73.79568751696006 40.87998337581134, -73.79568924121726 40.87999328874863, -73.79569101057271 40.88000319726323, -73.79569282739921 40.88001310135937, -73.79569469051307 40.880023000134436, -73.79569659991445 40.88003289358852, -73.79569855560042 40.88004278262199, -73.79570055639033 40.88005266543184, -73.79570260465408 40.88006254292273, -73.79570469801898 40.8800724150905, -73.79570683767139 40.88008228193719, -73.79570902361412 40.88009214256232, -73.7957756959332 40.88050929154132, -73.79577639280737 40.88051532875371, -73.7957770434 40.88052136948609, -73.795777648903 40.88052741193971, -73.79577820693794 40.88053345791124, -73.79577871988333 40.88053950560397, -73.7957791865498 40.88054555591628, -73.7957796057538 40.880551607945584, -73.79577997986809 40.880557661696045, -73.79578030770631 40.8805637171656, -73.79578058926838 40.88056977435427, -73.79578082455983 40.88057583146101, -73.79578101357511 40.880581890286855, -73.79578115631702 40.8805879499313, -73.7957812527855 40.880594010394375, -73.79578130416978 40.88060007077765, -73.7957813080969 40.88060613107692, -73.79578126575338 40.880612191294354, -73.7957811771392 40.88061825142991, -73.79578104225423 40.88062431148352, -73.79578086110135 40.88063037055484, -73.79578063368324 40.880636427743255, -73.79578036118085 40.88064248485192, -73.79578004122402 40.88064854097609, -73.79577967500194 40.88065459521743, -73.79577926251464 40.88066064757595, -73.79577880494847 40.88066669805366, -73.79577829993336 40.880672745745976, -73.79577774983665 40.88067879245797, -73.79577715348013 40.88068483548621, -73.79577651085829 40.88069087663154, -73.79577582079023 40.88069691409099, -73.79577508683245 40.88070294877125, -73.79577430542571 40.88070898066613, -73.79577347776184 40.880715007976654, -73.7957726050218 40.88072103250592, -73.79577168602471 40.880727052450915, -73.79577072076772 40.88073306871209, -73.79576971044001 40.880739080391024, -73.7957686538552 40.880745087485614, -73.79576755101326 40.88075108999593, -73.79576640310054 40.88075708792401, -73.79576520893347 40.8807630803673, -73.79576396851196 40.880769067325744, -73.79576268302249 40.88077504880154, -73.79576135246779 40.88078102389411, -73.79575997565858 40.88078699350186, -73.79575855259495 40.880792957624784, -73.79575708565524 40.88079891446615, -73.79575557246385 40.88080486492222, -73.79575401302067 40.88081080899299, -73.79575240970142 40.8808167457822, -73.79575076013035 40.88082267618604, -73.79574906549955 40.88082859840575, -73.79574732580615 40.880834513341746, -73.7957455410529 40.88084042009359, -73.79574371123711 40.880846319561705, -73.79574183754787 40.880852210847735, -73.79573991761508 40.88085809304702, -73.79573795261966 40.88086396796259, -73.79573594375636 40.8808698328951, -73.7957338886467 40.880875689641314, -73.79573179085283 40.88088153730704, -73.79572964681812 40.88088737498552, -73.79572745891264 40.88089320358138, -73.79572522713924 40.88089902219421, -73.79572295030864 40.880904831722304, -73.79572062961282 40.88091063036687, -73.79571826386258 40.88091641902627, -73.79571585424706 40.88092219680209, -73.79571340076635 40.88092796369432, -73.79571090341754 40.88093372060348, -73.7957083622063 40.88093946572856, -73.79551319302722 40.881269207895194, -73.79492377242018 40.88226431906296, -73.79491737040905 40.88227734856836, -73.79491092453533 40.882290365388606, -73.79490443598276 40.882303370426236, -73.7948979035703 40.882316361878225, -73.79489132729245 40.8823293415455, -73.7948847071548 40.88234230762712, -73.79487804433809 40.88235526192609, -73.79487133766155 40.88236820263938, -73.79486458830866 40.88238113066956, -73.79485779509591 40.88239404511404, -73.79485095802035 40.88240694687325, -73.79484407827128 40.882419835048864, -73.79483715584588 40.882432710541345, -73.79483019074691 40.88244557245017, -73.79482318178786 40.88245842077327, -73.79481612896876 40.8824712555106, -73.79480903466244 40.88248407666638, -73.79480189649884 40.88249688333592, -73.79479471565872 40.88250967732222, -73.79478749214772 40.88252245682439, -73.79478022596578 40.88253522184238, -73.7947729171073 40.88254797417717, -73.79476556558062 40.88256071112729, -73.79475817138018 40.882573434493686, -73.79475073332223 40.88258614337378, -73.79474325377973 40.882598837771795, -73.7947357315662 40.88261151768555, -73.794728167868 40.88262418311718, -73.79472056031229 40.88263683406247, -73.79471291127467 40.88264946962513, -73.79470521956591 40.88266209070358, -73.7946974863725 40.882674697299876, -73.79468970932422 40.88268728850926, -73.79468189197765 40.882699865238614, -73.79467403077622 40.8827124265811, -73.79466612927925 40.88272497254298, -73.79465818392734 40.88273750311803, -73.7946501982799 40.88275001831246, -73.79464216996394 40.88276251812206, -73.79463409897949 40.88277500254687, -73.7946259876994 40.88278747159112, -73.79461783375352 40.88279992434998, -73.79460963832557 40.882812361726174, -73.79460140141545 40.882824783719585, -73.79459312302879 40.8828371885293, -73.7945848031572 40.882849578856764, -73.79457644062248 40.88286195199834, -73.79456803779487 40.882874308858796, -73.79455959348502 40.882886650336474, -73.79455110769848 40.88289897463039, -73.7945425804325 40.88291128264102, -73.79453401287353 40.88292357437046, -73.79452540264857 40.8829358498145, -73.79451675213338 40.88294810807685, -73.79450806132506 40.88296035005798, -73.79449932904002 40.88297257485534, -73.79449055527822 40.88298478246882, -73.79448174122327 40.882996973801085, -73.79447288569153 40.8830091479495, -73.78985229855789 40.881746866705555, -73.78776517225162 40.881174301278186, -73.78375151741346 40.880986222502806, -73.78110137537085 40.879762768661855, -73.7810411717158 40.86900276083532, -73.79272366787129 40.858496152771906, -73.79376166477635 40.856473714579366, -73.79379595204168 40.85648522383617, -73.79383025720375 40.85649670249795, -73.79386458026809 40.85650814876373, -73.79389892241788 40.856519563536075, -73.79393328128107 40.8565309468108, -73.79396765922685 40.8565422994925, -73.79400205626077 40.85655361978026, -73.79403647001075 40.856564907669814, -73.79407090165716 40.856576164964224, -73.79410535238881 40.856587390765114, -73.79413981983646 40.856598584167756, -73.7941743051832 40.85660974607476, -73.79420880842902 40.85662087648606, -73.79424332957392 40.85663197540163, -73.79427786862057 40.85664304192103, -73.79431242556623 40.85665407694468, -73.79434699922481 40.8566650804705, -73.79438159078231 40.85667605250056, -73.79441620024141 40.856686992134314, -73.7944508264133 40.856697900270184, -73.79448547048678 40.856708776009796, -73.79452013127018 40.85671962115192, -73.79455480995786 40.85673043299723, -73.79458950535533 40.85674121424503, -73.79462421746823 40.8567519630944, -73.79465894748245 40.85676267954743, -73.79469369420923 40.85677336450236, -73.79472845883723 40.85678401706094, -73.79476323899166 40.856794638119375, -73.79479803704449 40.85680522768186, -73.79483285181246 40.85681578484577, -73.79486768329552 40.85682630961108, -73.79490253149083 40.85683680287832, -73.79493739640114 40.85684726374694, -73.79497227802366 40.85685769311741, -73.79500848853395 40.856870254504585, -73.79504467879593 40.856882848262124, -73.79508084999567 40.85689547439218, -73.7951170009472 40.8569081328926, -73.79515313283653 40.8569208237655, -73.79518924447777 40.85693354700892, -73.7952253370541 40.85694630352535, -73.79526140938523 40.85695909151176, -73.79529746146832 40.85697191186865, -73.79533349448943 40.85698476459816, -73.79536950607663 40.85699764969611, -73.79540549860471 40.85701056626623, -73.79544147088217 40.85702351610739, -73.79547742291183 40.85703649831914, -73.79551335469652 40.857049512000984, -73.7955492662335 40.85706255805345, -73.79558515752272 40.85707563647658, -73.79562102856437 40.85708874727037, -73.79565687936115 40.85710188953433, -73.79569270990764 40.85711506506953, -73.79572851902336 40.85712827207281, -73.79576430789434 40.857141510546334, -73.79580007651784 40.85715478139062, -73.79583582489398 40.85716808460567, -73.79587155183674 40.85718142018943, -73.795907258535 40.85719478724351, -73.79594294379987 40.857208186666305, -73.79597860882032 40.85722161755943, -73.79601425240752 40.85723508082142, -73.79604987456156 40.85724857645213, -73.796085476474 40.85726210265277, -73.7961210581366 40.85727566212481, -73.79615661718287 40.85728925306315, -73.7961921559849 40.857302875471966, -73.7962276733539 40.85731653024964, -73.79626316929274 40.857330216495725, -73.79629864380145 40.857343934210256, -73.7963340968773 40.857357684293746, -73.79636952970905 40.857371465847834, -73.79640493992197 40.85738527976876, -73.79644032870492 40.85739912515821, -73.79647569605791 40.8574130020162, -73.796511041981 40.85742691034275, -73.79654636647138 40.85744085103834, -73.79658166953196 40.857454823202545, -73.79661694997945 40.85746882593276, -73.79665220899162 40.857482861932596, -73.79668744657681 40.85749692850062, -73.79672266154634 40.85751102653521, -73.7967578550834 40.85752515693899, -73.79679302600753 40.85753931790887, -73.79682817549936 40.85755351124797, -73.79686330356158 40.85756773605583, -73.79689840782505 40.85758199142782, -73.79693349065624 40.85759627916907, -73.79696855205799 40.85761059837915, -73.79700358966099 40.85762494815337, -73.79703860583193 40.857639330296905, -73.79707360057624 40.85765374300886, -73.79710857151919 40.85766818718554, -73.79714351984408 40.85768266372952, -73.79717844674524 40.85769716994144, -73.79721334984237 40.85771170851865, -73.79724823151038 40.85772627856479, -73.7972830893799 40.85774087917526, -73.79731792463434 40.85775551125268, -73.7973527384597 40.857770174799136, -73.79738752848401 40.857784869810466, -73.79742229589597 40.85779959538829, -73.79745703950698 40.857814352431056, -73.79749176050575 40.85782914004034, -73.7975264588896 40.85784395911667, -73.7975611346586 40.85785880966008, -73.79756117611453 40.85785882774266, -73.79758957350386 40.85787119540811, -73.7976179470874 40.857883594541995, -73.79764629805666 40.857896023345496, -73.79767462522018 40.85790848361743, -73.79770292976949 40.85792097355901, -73.79773121051583 40.85793349406862, -73.79775946864531 40.85794604514836, -73.79778770297185 40.857958626796155, -73.7978159123095 40.85797123901001, -73.79784410021911 40.85798388089557, -73.79787226313717 40.8579965542477, -73.79790040225515 40.8580092572675, -73.79792851875632 40.858021990857495, -73.79795661027153 40.85803475411313, -73.797984677984 40.85804754793693, -73.79801272189373 40.85806037232892, -73.7980407420036 40.85807322638866, -73.79806873831073 40.85808611101663, -73.79809671081803 40.85809902531243, -73.79812465833668 40.85811197017438, -73.79815258205281 40.85812494560464, -73.79818048078577 40.85813794980014, -73.79820835571348 40.85815098546445, -73.79823620684415 40.858164049896175, -73.79826403298628 40.85817714489415, -73.79829183413999 40.85819027045843, -73.79831961149667 40.85820342479015, -73.79834736386499 40.858216609688185, -73.7983750912448 40.858229825152605, -73.79840279482777 40.858243069384486, -73.79843047342237 40.8582563441828, -73.79845812703405 40.85826964774651, -73.79848575565742 40.85828298187666, -73.79851335929524 40.858296345672755, -73.79854093794746 40.85830973913484, -73.79856849161418 40.85832316226293, -73.79859601910938 40.85833661505496, -73.79862352280507 40.85835009751505, -73.79865100151531 40.858363609641245, -73.79867845405413 40.858377151431384, -73.79870588160748 40.85839072288767, -73.79873328298942 40.858404324007935, -73.79876066057474 40.85841795389593, -73.79878801079991 40.858431614346394, -73.79881533722843 40.85844530356462, -73.79884263748842 40.85845902154644, -73.7988699115743 40.85847277009285, -73.7988971594916 40.85848654740293, -73.79892438242366 40.85850035437924, -73.79895157918718 40.85851419011928, -73.79897875096546 40.858528055525525, -73.79900589657252 40.85854195059599, -73.7990330148251 40.858555874428156, -73.79906010809249 40.85856982792663, -73.79908717519139 40.858583810188854, -73.79911421612191 40.85859782121492, -73.79914123088126 40.85861186190527, -73.79916821947225 40.858625931359484, -73.79919518189213 40.858640030478, -73.79922211695761 40.858654158358355, -73.7992490270408 40.858668315004614, -73.79927590976963 40.85868250041278, -73.79930276632749 40.85869671548533, -73.79932959553095 40.85871095931973, -73.79935639856619 40.8587252319181, -73.79938317543314 40.85873953328048, -73.79940992494589 40.858753863404765, -73.79943664710432 40.85876822229104, -73.79946334309459 40.85878260994135, -73.79949001173063 40.858797026353635, -73.79951665419856 40.858811471530004, -73.79954326931224 40.85882594546839, -73.7995698570718 40.85884044816881, -73.79959641866321 40.85885497963341, -73.79962295171448 40.858869539857984, -73.79964945860037 40.85888412794621, -73.79967593694612 40.85889874479456, -73.79970238912385 40.8589133904071, -73.79972881394747 40.85892806478177, -73.79975521023371 40.858942767016124, -73.79978158035199 40.85895749801469, -73.79980792193292 40.8589722568729, -73.79983219339009 40.85898559926067, -73.79985643986612 40.85899896951524, -73.7998806589916 40.85901236673195, -73.79990485076388 40.859025791811355, -73.79992901636903 40.859039244755564, -73.79995315580973 40.859052724664075, -73.79997726908327 40.85906623243739, -73.8000013550037 40.85907976807349, -73.80002541475973 40.85909333067391, -73.80004944597923 40.8591069202346, -73.80007345221776 40.859120537662186, -73.80009743110314 40.85913418295263, -73.8001213826409 40.859147854304965, -73.8001453068255 40.85916155352015, -73.80016920365708 40.85917528059824, -73.80019307432434 40.85918903464075, -73.80021691764402 40.85920281474523, -73.8002407336079 40.8592166236131, -73.80026452103814 40.85923045854094, -73.80028828230417 40.85924432043328, -73.80031201621719 40.85925821018862, -73.80033572277992 40.85927212690645, -73.800359400809 40.859286069684266, -73.8003830514852 40.85930004032514, -73.80040667599715 40.85931403793063, -73.80043027078952 40.85932806159408, -73.800453839415 40.859342113122665, -73.80047737950692 40.85935619071136, -73.80050089224594 40.85937029616314, -73.80052437645143 40.85938442767501, -73.80054783212336 40.85939858524704, -73.80057126044247 40.85941277068227, -73.80059466141411 40.85942698217961, -73.80060397148056 40.85943228326056, -73.80061325181356 40.85943761220462, -73.80062250596852 40.85944296991844, -73.80063173039008 40.85944835549542, -73.80064092626148 40.85945376983806, -73.80065009358826 40.8594592111454, -73.80065923236491 40.85946468121846, -73.80066834259688 40.85947017825625, -73.80067742309271 40.85947570405772, -73.80068647385782 40.85948125682185, -73.80069549607828 40.85948683655077, -73.8007044885626 40.85949244504332, -73.80071345131893 40.859498079598076, -73.80072238315577 40.859503742014056, -73.80073128644527 40.85950943229528, -73.80074015882066 40.8595151486367, -73.8007490002767 40.859520892839285, -73.80075781200463 40.859526663104134, -73.80076659400196 40.85953246033175, -73.80077534389645 40.859538284518024, -73.8007840640602 40.85954413566706, -73.80079275212393 40.85955001287431, -73.80080141045963 40.85955591614381, -73.80081003669255 40.85956184637201, -73.80081863082539 40.859567802658454, -73.80082719404417 40.85957378500515, -73.80083572516288 40.85957979341009, -73.80084422536754 40.85958582787529, -73.80085269347214 40.85959188839875, -73.80086112829325 40.85959797407788, -73.80086953220037 40.85960408581735, -73.80087790282137 40.859610223613, -73.80088624134764 40.85961638566596, -73.80089454777384 40.85962257377722, -73.80090281973058 40.85962878704212, -73.80091106077329 40.85963502636742, -73.80091926734919 40.8596412899459, -73.8009274418304 40.859647577781736, -73.8009355818394 40.859653891671805, -73.80094368856768 40.8596602298171, -73.8009517632013 40.85966659221981, -73.80095980217934 40.8596729797742, -73.80096780906266 40.85967939158594, -73.80097578029317 40.8596858276489, -73.8009837182429 40.85969228796722, -73.80099162172586 40.85969877253879, -73.80099949192805 40.85970528136576, -73.80100732648012 40.859711813543456, -73.80101512656532 40.85971836997446, -73.80102289218374 40.85972495065883, -73.80103062334072 40.85973155379552, -73.80103831884483 40.85973818118348, -73.80104597988486 40.85974483192432, -73.80105360527735 40.859751505115455, -73.80106119501701 40.859758202557884, -73.80106875029523 40.85976492245273, -73.80107626873716 40.85977166569638, -73.80108375271769 40.8597784313924, -73.80109119986197 40.85978522043722, -73.80109506243673 40.85978972685703, -73.80109888581293 40.859794253019956, -73.80110266880718 40.859798798023476, -73.80110641260282 40.85980336277011, -73.80111011601915 40.85980794545689, -73.80111377786476 40.8598125478827, -73.80111740051984 40.8598171673502, -73.8011209816042 40.859821806556745, -73.80112452231197 40.85982646280293, -73.80112802145166 40.85983113788773, -73.80113148021466 40.85983583001215, -73.8011348974151 40.8598405391742, -73.80113827186402 40.8598452662723, -73.80114160593905 40.85985000950955, -73.80114489844861 40.859854770684926, -73.80114814821484 40.85985954709493, -73.80115135641837 40.85986434054255, -73.80115452187313 40.859869151025705, -73.8011576457732 40.85987397584509, -73.80116072573843 40.85987881769799, -73.80116376414632 40.85988367478758, -73.80116675981348 40.85988854621129, -73.8011697127345 40.85989343377015, -73.80117262172872 40.85989833566107, -73.80117548797949 40.85990325278666, -73.80117831149218 40.85990818334586, -73.80118109107542 40.85991312913769, -73.80118382673444 40.859918088361155, -73.80118651846934 40.85992306101625, -73.80118916746343 40.85992804800551, -73.80119177253341 40.85993304842637, -73.80119433249583 40.85993806137634, -73.80119684853669 40.859943086857484, -73.80119932065342 40.85994812577026, -73.80120174885135 40.85995317631369, -73.80120413194165 40.8599582393863, -73.80120647111045 40.859963314990004, -73.80120876517704 40.85996840132187, -73.801211014136 40.85997350018285, -73.8012132191788 40.85997860977407, -73.80121537793333 40.85998373009139, -73.80121749276894 40.85998886203939, -73.80121956131896 40.85999400381299, -73.80122158595272 40.85999915631681, -73.80122356429817 40.86000431954676, -73.80122549754675 40.86000949170392, -73.80122738450696 40.860014674587156, -73.8012292263702 40.86001986639759, -73.80123102313654 40.860025067135275, -73.8012327736199 40.86003027679807, -73.80123447782023 40.860035495386064, -73.80123613692356 40.860040722901225, -73.80123774856051 40.860045958439024, -73.80123931510316 40.860051202003554, -73.80124083536546 40.86005645359278, -73.80124231053613 40.86006171230821, -73.80124373824037 40.86006697904626, -73.80124511966957 40.86007225200806, -73.80124645481841 40.86007753299451, -73.80124774369214 40.86008282020472, -73.80124898510482 40.86008811363653, -73.80125018143121 40.860093412393674, -73.80125133029374 40.860098718272965, -73.8012524316978 40.860104029473405, -73.80125348801558 40.86010934599916, -73.80125449568612 40.86011466874453, -73.80125545827572 40.8601199950142, -73.80125637340677 40.86012532660506, -73.80125724107931 40.86013066351714, -73.80125806248483 40.86013600395144, -73.80125883643721 40.86014134790598, -73.80125956411977 40.860146696283266, -73.80126024434642 40.86015204908127, -73.80126087712534 40.8601574035985, -73.80126146244838 40.860162762536454, -73.80126200150968 40.86016812319568, -73.80126249311775 40.86017348737515, -73.80126293727794 40.860178853273865, -73.80126333398766 40.8601842217923, -73.80126368443551 40.86018959203207, -73.80126398743553 40.86019496399105, -73.80126424299036 40.86020033676881, -73.80126445109723 40.8602057112658, -73.80126461175625 40.860211087482085, -73.80126472616148 40.86021646271815, -73.8012647919327 40.86022183967143, -73.80126481144742 40.860227216545056, -73.80126478233346 40.8602325933349, -73.80126470696302 40.86023797004509, -73.80126458415268 40.86024334577302, -73.80126441508851 40.86024872052083, -73.80126419739562 40.86025409518482, -73.80126393226548 40.86025946796614, -73.80126362088144 40.86026483976731, -73.8012633980834 40.86026874752044, -73.80126322035042 40.86027265715218, -73.80126308649912 40.86027656776, -73.80126299771828 40.86028047844544, -73.80126295163315 40.860284390104894, -73.80126295180452 40.86028830184404, -73.80126299586031 40.860292213658795, -73.80126308380324 40.86029612464865, -73.80126240150932 40.860300988833615, -73.80126176664449 40.86030585760282, -73.80126117921417 40.860310729155145, -73.80126063803223 40.86031560348862, -73.80126014428204 40.86032048150576, -73.80125969678303 40.86032536140355, -73.80125929671854 40.860330244084516, -73.80125894409122 40.86033512864817, -73.80125863890115 40.860340015094515, -73.80125837996222 40.86034490342153, -73.8012581684632 40.860349792730744, -73.80125800440416 40.86035468302214, -73.80125788659899 40.86035957429374, -73.8012578174226 40.86036446564903, -73.80125779450002 40.86036935798454, -73.8012578178368 40.86037424949919, -73.80125788979963 40.860379141998145, -73.80125800802443 40.86038403277576, -73.8012581736947 40.860388922734614, -73.80125838680767 40.86039381277519, -73.80125864618535 40.860398700193976, -73.8012589541945 40.860403586796046, -73.80125930846579 40.8604084716768, -73.8012597090018 40.860413353935755, -73.8012601569859 40.860418234475475, -73.80126065242361 40.860423111494924, -73.80126119531218 40.86042798589466, -73.80126178446555 40.86043285767257, -73.80126242107247 40.860437725930275, -73.80126310394697 40.86044259066567, -73.80126383427769 40.86044745098036, -73.80126461087866 40.86045230687227, -73.80126543374719 40.860457159241875, -73.80126630407467 40.860462006290284, -73.80126722186124 40.860466848017445, -73.80126818591802 40.86047168532186, -73.80126919625049 40.860476516402535, -73.80127025285594 40.86048134215992, -73.80127135573434 40.86048616259404, -73.80127250607725 40.86049097590598, -73.80127370269582 40.86049578299416, -73.8012749444067 40.86050058295603, -73.8012762335821 40.86050537579569, -73.80127756784984 40.860510161509104, -73.80127894958206 40.86051494010027, -73.80128037640934 40.860519710664654, -73.80128184951775 40.86052447320433, -73.80128336772123 40.86052922771718, -73.80128493220857 40.860533973304804, -73.80128654297978 40.8605387099672, -73.80128819884875 40.86054343770232, -73.80128989981827 40.86054815560967, -73.80129164707162 40.860552864591796, -73.80129343942546 40.8605575637461, -73.80129527688256 40.86056225217219, -73.80129715944021 40.86056693077046, -73.80129908710101 40.86057159864049, -73.80130105986512 40.86057625578227, -73.80130307773243 40.860580902195764, -73.80130513951966 40.86058553697842, -73.8013072464128 40.86059016013233, -73.80130939722854 40.860594770754965, -73.80131159314752 40.8605993706493, -73.80131383299182 40.86060395711187, -73.80131611794481 40.86060853104512, -73.80131844563434 40.86061309244509, -73.80132081843253 40.86061764131577, -73.80132323396998 40.86062217675257, -73.80132569343543 40.860626697857114, -73.80132819682622 40.86063120552984, -73.80133074295628 40.86063569976873, -73.80133333301707 40.86064017877484, -73.80133596581716 40.86064464434707, -73.80133864136192 40.860649094684476, -73.8013413596513 40.86065352978704, -73.80134412068544 40.86065794965477, -73.80134692446424 40.86066235428767, -73.80134977099037 40.86066674278521, -73.8013526590752 40.86067111604587, -73.8013555899074 40.860675473171206, -73.8013585623036 40.86067981325865, -73.80136157626116 40.86068413720871, -73.80136463178276 40.860688444120875, -73.80136773005447 40.8606927339972, -73.80137086752079 40.8606970059311, -73.8013740477372 40.8607012608291, -73.80137726833428 40.860705497786725, -73.80138052931203 40.86070971680392, -73.80138383185653 40.86071391788273, -73.80138717359837 40.86071810011853, -73.80139055572089 40.86072226441396, -73.80139397822947 40.860726408967906, -73.80139744112148 40.86073053468097, -73.80140094321077 40.86073464155104, -73.80140448450275 40.860738727777196, -73.80140806499209 40.86074279516032, -73.80141168587025 40.86074684190153, -73.80141534476228 40.860750868897235, -73.80141904167102 40.86075487524689, -73.80142277778245 40.86075886095262, -73.80142655309666 40.860762826014366, -73.80143036524409 40.860766769527565, -73.80143421541086 40.86077069149421, -73.80143810359432 40.86077459281488, -73.8014420297998 40.86077847168851, -73.8014459928386 40.86078232901357, -73.80144999271066 40.860786164790085, -73.80145402942138 40.86078997721704, -73.80145810296541 40.86079376809539, -73.80146221334806 40.8607975356242, -73.80146635938334 40.86080127980142, -73.80147054106854 40.86080500152753, -73.8014747595924 40.86080869990408, -73.80147901258547 40.86081237402647, -73.80148330122847 40.86081602569774, -73.80148762552942 40.860819652216406, -73.80149198429694 40.86082325538141, -73.80149637753364 40.86082683429225, -73.80150080524227 40.86083038804846, -73.80150526742008 40.86083391755047, -73.80150976288375 40.86083742189581, -73.8015142916333 40.860840901084465, -73.8015188548547 40.86084435511842, -73.80152345136193 40.860847783995695, -73.80152807997159 40.8608511868137, -73.80153274186712 40.86085456447503, -73.80153743586777 40.86085791517661, -73.80154216196817 40.860861240719444, -73.80154692017375 40.86086453930249, -73.80155170929567 40.860867811824264, -73.80155653170874 40.86087105738834, -73.80156138385483 40.860874275988515, -73.80156626691999 40.860877467626956, -73.80157118090682 40.86088063140311, -73.80157612462396 40.86088376911586, -73.80158109926555 40.86088687806588, -73.80158610364006 40.86088996005202, -73.80159113775295 40.860893013273305, -73.80159620041269 40.860896039528704, -73.80160129281077 40.86089903701927, -73.80160635184872 40.860902084879825, -73.80161143943626 40.86090510487395, -73.8016165555734 40.86090809700172, -73.80162170145154 40.860911059464115, -73.80162687587922 40.86091399406011, -73.80163207767575 40.86091689898669, -73.80163730802454 40.860919775146385, -73.80164256573948 40.86092262253712, -73.80164785082327 40.86092544025842, -73.80165316327592 40.86092822831027, -73.8016585030974 40.86093098669267, -73.80166386791286 40.86093371630207, -73.80166926010254 40.860936414441014, -73.80167467847224 40.86093908380898, -73.80168012184403 40.86094172170241, -73.80168559021246 40.86094432992231, -73.80169108358025 40.86094690756818, -73.8016966019474 40.86094945464002, -73.80170214531653 40.86095197023732, -73.80170771249624 40.86095445615906, -73.80171330349455 40.86095690970371, -73.80171891830612 40.860959332672294, -73.80172455574755 40.86096172416227, -73.80173021700485 40.86096408417563, -73.80173589970592 40.860966412708365, -73.80174160622295 40.86096870976452, -73.80174733418366 40.86097097533998, -73.8017530835935 40.860973207633805, -73.80175885444439 40.860975409347425, -73.80176464674437 40.86097757777943, -73.80177045930469 40.860979713828236, -73.80177629212265 40.860981818394286, -73.80178214638964 40.86098388967868, -73.80178801973089 40.86098592857786, -73.80179391214905 40.86098793419126, -73.8017998248275 40.86098990742147, -73.80180575539404 40.86099184826432, -73.80181170504022 40.86099375492101, -73.80181767257449 40.86099562919035, -73.80182365918559 40.86099747017398, -73.80182966250412 40.86099927696725, -73.80183568252465 40.86100105137117, -73.80184172043862 40.86100279158682, -73.80184777505997 40.86100449761214, -73.80185384519994 40.86100617034556, -73.80185993204451 40.86100780978913, -73.80186603441041 40.86100941504035, -73.8018721522975 40.861010986099195, -73.80187828570591 40.861012522965645, -73.80188443226338 40.86101402563566, -73.80189059434203 40.86101549411326, -73.8018967695698 40.861016928394434, -73.80190295913538 40.861018327580666, -73.80190916185 40.861019692570466, -73.80191537771364 40.8610210233638, -73.80192160672898 40.861022319060176, -73.80192784770732 40.86102358055803, -73.80193410065121 40.861024806956905, -73.80194036555808 40.861025999157256, -73.80194664124713 40.861027155356076, -73.80195292771295 40.861028277354386, -73.80195922495834 40.86102936425165, -73.80196553298586 40.861030415147376, -73.80197185179021 40.86103143184256, -73.80197817900186 40.8610324134326, -73.8019845158096 40.86103335901908, -73.80199086102458 40.861034269500486, -73.80199721583294 40.861035144878734, -73.80200357904859 40.861035985151936, -73.80200994948811 40.861036789417454, -73.80201632833756 40.861037557677356, -73.80202271321939 40.861038291728576, -73.80202910532775 40.861038988871634, -73.80203550465457 40.86103965180803, -73.80204191002186 40.86104027783426, -73.80204832142414 40.86104086875128, -73.80205473767806 40.86104142365659, -73.80206115996704 40.86104194345266, -73.8020675859215 40.86104242723504, -73.80207401791368 40.86104287500768, -73.80208045238533 40.861043286764556, -73.80208689170856 40.86104366250967, -73.80209333469459 40.86104400314156, -73.80209916075619 40.861044397644896, -73.80210498929179 40.86104475793349, -73.802110822679 40.86104508221045, -73.80211665972901 40.86104537137418, -73.80212249806695 40.8610456263211, -73.80212834007028 40.86104584525435, -73.80213418336426 40.86104602907033, -73.80214002913762 40.861046176870566, -73.80214587619885 40.86104629045398, -73.80215172336459 40.8610463689181, -73.80215757182356 40.86104641136448, -73.80216342157311 40.861046418693554, -73.80216927024104 40.86104639090126, -73.80217511782735 40.861046327987644, -73.80218096552079 40.86104622905423, -73.80218681094387 40.8610460958979, -73.80219265528794 40.86104592671974, -73.80219849854768 40.86104572332073, -73.80220433835629 40.86104548389581, -73.80221017589712 40.86104520934755, -73.80221601117022 40.86104489967586, -73.80222184180334 40.86104455487675, -73.80222766898267 40.8610441749522, -73.80223349270804 40.861043759902294, -73.80223931061015 40.86104330882236, -73.80224512505562 40.861042823517536, -73.80225093248896 40.86104230308122, -73.8022567352797 40.86104174841794, -73.80226253224696 40.86104115772467, -73.80226832338555 40.86104053280242, -73.80227410632583 40.86103987274665, -73.80227988344004 40.86103917756144, -73.80228565235595 40.861038447242635, -73.80229141425701 40.86103768269284, -73.80229716677106 40.861036883907985, -73.80230291227282 40.86103604999161, -73.80230864720417 40.861035180937684, -73.80231437393455 40.86103427765069, -73.8023200912778 40.86103334012858, -73.80232579804795 40.86103236836943, -73.80233149424757 40.86103136147265, -73.80233717987402 40.861030320338784, -73.80234285492462 40.8610292458683, -73.80234851821862 40.861028136258255, -73.80235416975063 40.8610269933095, -73.80235980952608 40.86102581522115, -73.80236543635074 40.86102460469263, -73.80237105023272 40.861023359022475, -73.80244844867059 40.861017605052524, -73.80245209075235 40.86101533844612, -73.8024557624003 40.86101310070592, -73.80245946361968 40.861010890031004, -73.80246319322175 40.86100870731982, -73.80246695238995 40.86100655347488, -73.80247073875483 40.861004427591645, -73.80247455231097 40.86100233147107, -73.80247839424987 40.86100026331422, -73.80248226338004 40.860998224920024, -73.80248615851545 40.860996216286466, -73.80249007965877 40.86099423651308, -73.80249402799069 40.860992287402816, -73.80249799995843 40.8609903671486, -73.80250199792602 40.86098847845602, -73.80250602071543 40.8609866186215, -73.80251006713263 40.860984790344574, -73.8025141371802 40.86098299272464, -73.80251823204162 40.86098122666424, -73.80252234816399 40.860979490356385, -73.80252648791144 40.86097778650649, -73.80253065010325 40.86097611331164, -73.80253483354798 40.86097447257069, -73.8025390382483 40.860972863383225, -73.80254326420427 40.860971285749216, -73.80254751141588 40.860969739668604, -73.8025517775056 40.86096822693838, -73.80255606366218 40.86096674666009, -73.80256036988838 40.8609652979332, -73.80256469380656 40.860963882554636, -73.80256903660562 40.86096249962595, -73.80257339709672 40.860961150045554, -73.80257777527994 40.86095983381347, -73.80258216996914 40.86095855092773, -73.8025865823531 40.86095730048977, -73.80259101124042 40.860956084298586, -73.80259545426159 40.860954901449645, -73.80259991378612 40.860953752847465, -73.80260438744455 40.86095263758749, -73.80260887642027 40.86095155657231, -73.80261337952984 40.86095050889927, -73.80261789558193 40.86094949636745, -73.80262242458184 40.86094851717579, -73.80262696652423 40.86094757312529, -73.80263152022576 40.860946663313456, -73.80263608568633 40.86094578774025, -73.80264066290334 40.86094494730614, -73.8026452506934 40.86094414110866, -73.80264984905384 40.86094337004828, -73.80265445798467 40.86094263412499, -73.80265907511635 40.86094193243425, -73.8026637016297 40.860941266779065, -73.80266833634396 40.860940635356414, -73.80267298044252 40.86094003906883, -73.80267763036456 40.86093947881073, -73.8026822884875 40.860938952785126, -73.80268695362 40.860938462791026, -73.80269162457859 40.86093800792591, -73.80269630136333 40.86093758818978, -73.80270098278545 40.86093720448104, -73.80270566884764 40.86093685589925, -73.80271036073333 40.86093654334695, -73.80271505488692 40.86093626591751, -73.80271975367798 40.8609360245155, -73.80272445473695 40.86093581823635, -73.80272915924729 40.860935647982636, -73.8027338648395 40.86093551284976, -73.80273857151094 40.860935413738254, -73.80274328044769 40.86093535065008, -73.80274798928023 40.86093532268075, -73.80275269800596 40.86093533073073, -73.80275740662759 40.860935373899544, -73.80276211514234 40.86093545308764, -73.80276682117811 40.86093556829105, -73.80277152592373 40.86093571861121, -73.80277622937645 40.8609359049487, -73.80278092916413 40.8609361272994, -73.80278562647553 40.86093638476486, -73.80279031893592 40.860936678241536, -73.80279500773392 40.860937006830994, -73.80279969286966 40.86093737053314, -73.80280437196821 40.860937770244526, -73.80280904621834 40.86093820506658, -73.80281371443145 40.86093867589785, -73.80281837661002 40.86093918183781, -73.80282303156814 40.86093972288442, -73.80282767930576 40.86094029903769, -73.8028323186341 40.860940911196145, -73.80283694955857 40.86094155755872, -73.80284157207645 40.86094223902593, -73.80284618618512 40.86094295649832, -73.80285078951775 40.86094370817076, -73.80285538325772 40.86094449494587, -73.8028599662217 40.86094531592105, -73.80286453840705 40.860946171996865, -73.80286909981632 40.86094706227273, -73.80287364807484 40.86094798764521, -73.80287818437122 40.86094894721576, -73.8028827075195 40.86094994098236, -73.80288721751698 40.86095096984551, -73.80289171436897 40.86095203200425, -73.80289619688676 40.86095312835705, -73.80290066388699 40.86095425800135, -73.8029051165503 40.86095542274018, -73.80290955369877 40.86095661987005, -73.8029139753269 40.860957851191976, -73.80291837906535 40.86095911580135, -73.80292276728622 40.86096041370231, -73.80292713761739 40.86096174489074, -73.80293149005881 40.860963109366615, -73.80293582461054 40.86096450713002, -73.80294014127789 40.86096593637996, -73.80294443768338 40.86096739891332, -73.80294871501309 40.86096889473217, -73.80295297327241 40.8609704220355, -73.80295721008645 40.86097198171977, -73.80296142783006 40.86097357288854, -73.80296562294238 40.860975196436236, -73.80296979660943 40.86097685236487, -73.80297394883661 40.86097853887348, -73.80297669132699 40.86098005098064, -73.80298323224658 40.86098256551825, -73.80298975172124 40.86098511243663, -73.8029962497536 40.860987690835195, -73.80300272515768 40.86099030071205, -73.80300917911947 40.86099294206911, -73.8030156104503 40.86099561580491, -73.80302201915546 40.86099832011846, -73.8030284040489 40.8610010550077, -73.80303476631137 40.86100382227571, -73.80304110476479 40.86100661921898, -73.80304741940384 40.86100944763844, -73.80305371022855 40.86101230753412, -73.80305997605817 40.861015197103086, -73.80306621807605 40.86101811724774, -73.80307243509617 40.86102106796614, -73.8030786271186 40.861024049258305, -73.80308479295977 40.861027060221666, -73.80309093380328 40.86103010175876, -73.80309100958434 40.861030145111755)), ((-73.81250902644176 40.86407986788765, -73.81134064139273 40.863645988616966, -73.81132347372979 40.863639576960416, -73.81130629415523 40.86363318419215, -73.81128910147784 40.86362681211118, -73.81127189570017 40.863620459817064, -73.81122773871624 40.86360406166969, -73.81122768836475 40.863604249790065, -73.81120592874906 40.863596330384155, -73.81118415007106 40.86358844246016, -73.81116234995591 40.86358058691465, -73.81114053196454 40.863572762852954, -73.81111869253856 40.86356497026918, -73.81109683405019 40.86355720916729, -73.81107495649687 40.86354948044773, -73.81105305869498 40.863541783208035, -73.81103114301416 40.86353411835262, -73.81100920708472 40.863526484977, -73.81098725090666 40.863518883081255, -73.8109652768471 40.8635113144702, -73.81094328372745 40.863503776440474, -73.81092127035403 40.86349627169148, -73.81089923910665 40.86348879752574, -73.81087718997767 40.86348135664464, -73.81085512059984 40.8634739472433, -73.81083303334292 40.863466570226116, -73.81081092702075 40.86345922559115, -73.81078880163577 40.863451912437846, -73.81076665955521 40.86344463257112, -73.8107444972257 40.86343738418412, -73.81072231820303 40.86343016818312, -73.81070012011753 40.86342298366383, -73.81067790415018 40.86341583242906, -73.81065567030345 40.86340871357837, -73.81063341857732 40.863401627111735, -73.81061114897446 40.86339457212864, -73.81058886148952 40.863387550430105, -73.81056655612521 40.86338056111556, -73.81054423288136 40.86337360418503, -73.81052189294674 40.86336667874001, -73.81049953512743 40.86335978747988, -73.81047716061728 40.86335292770527, -73.8104547682275 40.86334610031457, -73.81043235795558 40.86333930620836, -73.81040993217626 40.86333254449003, -73.81038748851724 40.86332581515561, -73.81036502697599 40.863319119105604, -73.81034254992724 40.86331245544339, -73.81032005618488 40.86330582416709, -73.81029754456013 40.863299226175194, -73.81027501742787 40.863292660571034, -73.81025247360186 40.86328612735272, -73.81022991307954 40.86327962742077, -73.8102073358609 40.86327316077507, -73.81015034077005 40.86325759025914, -73.81009333137993 40.86324205210915, -73.8100363065094 40.86322654452213, -73.80997926734204 40.86321106840048, -73.80992221387771 40.86319562374422, -73.80986514493028 40.86318021055136, -73.80980806168319 40.863164829724326, -73.80975096295538 40.86314947946017, -73.80969384993031 40.863134160661275, -73.80963672260799 40.863118873327664, -73.8095795809857 40.86310361835974, -73.80952242388241 40.863088393954634, -73.80946525247909 40.863073201915235, -73.8094080667807 40.86305804044052, -73.80935086678214 40.86304291133144, -73.80929365248834 40.86302781278702, -73.80923642389426 40.86301274660816, -73.80917917981611 40.862997711892476, -73.80912192262618 40.86298270864387, -73.8090646499521 40.8629677368583, -73.80900736297737 40.862952797438275, -73.80895006289316 40.86293788858474, -73.80890559882972 40.862926343587716, -73.8088611252359 40.862914818368516, -73.80885910139334 40.86291740753166, -73.80878409725253 40.86290047917891, -73.80870910510683 40.86288351747895, -73.80863412732865 40.8628665224358, -73.8085591615458 40.8628494940455, -73.80848421013059 40.86283243231201, -73.80840927071092 40.86281533723145, -73.80833434565918 40.86279820880776, -73.80825943260058 40.862781047937546, -73.80818453391262 40.86276385282378, -73.80810964840418 40.86274662526549, -73.80803477489181 40.86272936436023, -73.80795991574779 40.86271207011196, -73.80788506978874 40.86269474161833, -73.80781023700699 40.86267738158072, -73.80773541859655 40.86265998729971, -73.80766061218264 40.86264255967185, -73.80758582013503 40.86262509960165, -73.80751104127297 40.862607605286165, -73.80743627677737 40.86259007852838, -73.80736152427875 40.86257251842383, -73.80728678614676 40.86255492587704, -73.80721206120073 40.86253729908502, -73.8071373506216 40.862519639850824, -73.80706265322591 40.86250194727194, -73.80698797019998 40.86248422135044, -73.8069132991716 40.86246646208239, -73.80683864369922 40.86244866947364, -73.80676400022209 40.86243084441894, -73.80668937230111 40.86241298602366, -73.80661475637812 40.86239509428189, -73.80654015601156 40.86237716919962, -73.80646556882665 40.862359211673386, -73.8063909948262 40.86234122080273, -73.80639096282503 40.86234121264461, -73.80637160212407 40.86233627607671, -73.80635225575882 40.86233130531096, -73.8063329249155 40.86232630034934, -73.8063136107801 40.86232126119377, -73.80629431097792 40.86231618874085, -73.80627502670032 40.862311081191535, -73.80625575793943 40.86230594124738, -73.80623650470318 40.86230076620688, -73.80621726698632 40.86229555787099, -73.80619804597755 40.86229031534126, -73.80617884167438 40.86228503951818, -73.80615965289333 40.86227972949928, -73.80614047963176 40.862274386185064, -73.80612132426458 40.862269008679, -73.80610218441953 40.86226359697716, -73.8060830612775 40.86225815288248, -73.80606395484386 40.862252674594025, -73.80604486393247 40.86224716210981, -73.80602579209899 40.86224161633627, -73.80600673578519 40.86223603726745, -73.80598769736332 40.86223042490737, -73.80596867564726 40.86222477925407, -73.80594967063966 40.862219099406964, -73.80593068471016 40.86221338627063, -73.80591171430044 40.862207639839035, -73.80589276296887 40.86220186011827, -73.80587382834317 40.86219604710424, -73.80585491279571 40.86219020080098, -73.8058360139542 40.86218432120453, -73.80581713300482 40.862178408316886, -73.80579827113368 40.862172462140045, -73.80577942715472 40.86216648267203, -73.80576060106529 40.862160470813336, -73.8057417940568 40.862154424764995, -73.8057230049379 40.862148346325995, -73.8057042348974 40.862142234597776, -73.8056854827465 40.86213609047896, -73.80566674967666 40.862129912170545, -73.80564803686867 40.862123701475504, -73.80562934195048 40.8621174583898, -73.80561066611065 40.862111182015006, -73.80559200934674 40.8621048732516, -73.80557337166135 40.862098531199116, -73.80555475424055 40.86209215585956, -73.80553615589572 40.86208574813141, -73.80551757781288 40.862079308016696, -73.80549901880603 40.86207283551345, -73.80548047887778 40.86206632972114, -73.8054619603978 40.86205979154428, -73.80544346099379 40.86205322097891, -73.80542498185461 40.862046617126545, -73.80540652297493 40.86203998178812, -73.80538808436012 40.8620333131627, -73.80536966600481 40.862026613051306, -73.80535126791442 40.8620198796529, -73.80533289126973 40.86201311477054, -73.80531453488994 40.86200631660122, -73.80529619876987 40.861999486945955, -73.80527788410076 40.86199262400574, -73.80525959087748 40.86198572958156, -73.80524131791395 40.86197880367149, -73.80522306640148 40.86197184447649, -73.8052048363349 40.86196485379758, -73.80518662771684 40.86195783073427, -73.80516844054729 40.861950775286566, -73.80515027600971 40.861943688357016, -73.80513213173204 40.861936569941534, -73.80511400890292 40.86192941914176, -73.80509590870582 40.86192223686011, -73.80507783114352 40.861915022196115, -73.80505977502719 40.8619077760483, -73.80504174035951 40.861900497516174, -73.805023728324 40.861893187502204, -73.80500573891796 40.861885846906986, -73.80498777214939 40.86187847302896, -73.80496982801039 40.86187106856965, -73.80495190650362 40.86186363262855, -73.80493400762903 40.86185616520571, -73.8049161313894 40.86184866540062, -73.8048982777793 40.8618411350143, -73.80488044798764 40.86183357314827, -73.80486264082829 40.86182597980051, -73.8048448574873 40.86181835497301, -73.80482709677865 40.86181069866386, -73.80480935988581 40.86180301177551, -73.80479164681142 40.86179529340749, -73.80477395636943 40.8617875435578, -73.80475629092938 40.86177976313098, -73.80473864812176 40.8617719512225, -73.80472102913001 40.86176410873489, -73.80470343514288 40.86175623476968, -73.80468586497169 40.861748330225346, -73.80466831861641 40.86174039510188, -73.80465079607971 40.86173242849884, -73.80463329854511 40.86172443131877, -73.80461582601252 40.86171640356159, -73.80459837729862 40.861708344324896, -73.80458095358415 40.86170025541165, -73.80456355368835 40.861692135018835, -73.80454617997815 40.86168398495149, -73.80452883008658 40.86167580340469, -73.80451150638065 40.861667592183366, -73.8044942064935 40.86165934948258, -73.8044769327919 40.861651077107304, -73.80445968409254 40.861642774155044, -73.80443445007346 40.861629811126406, -73.80440924105943 40.86161681841839, -73.80438405941742 40.861603797835954, -73.80435890278322 40.86159074667366, -73.80433377352108 40.86157766763697, -73.80430866926409 40.86156455892095, -73.8042835923818 40.861551421430136, -73.8042585416882 40.86153825516244, -73.8042335171859 40.86152505921751, -73.80420851887227 40.8615118344958, -73.80418354793348 40.8614985809993, -73.80415860318072 40.86148529962659, -73.80413368461937 40.86147198857662, -73.80410879343283 40.86145864875196, -73.80408392962119 40.861445280152594, -73.8040590919983 40.86143188277658, -73.8040342805642 40.861418456623895, -73.80400949650503 40.861405001696596, -73.8039847398181 40.86139151889514, -73.8039600105088 40.8613780064186, -73.80393530857177 40.861364466067975, -73.80391063282362 40.86135089694081, -73.80388598445042 40.86133729903903, -73.80386136344961 40.86132367326326, -73.8038367698238 40.86131001871295, -73.80381220475905 40.86129633539017, -73.80378766588068 40.86128262419139, -73.80376315437465 40.86126888511865, -73.80373867143243 40.861255116373, -73.80371421585997 40.86124132065389, -73.80368978766266 40.86122749616037, -73.80366538802649 40.86121364289448, -73.80364101457673 40.86119976175268, -73.80361667087158 40.86118585274109, -73.80359235335285 40.86117191585357, -73.80356806558149 40.86115795019583, -73.8035438051826 40.86114395666424, -73.8035195721563 40.861129935258845, -73.80349536768857 40.86111588598172, -73.80347119178218 40.861101807932315, -73.80344704443176 40.86108770291171, -73.80342292445394 40.86107357001739, -73.80339883303745 40.86105940835083, -73.80337477017696 40.86104521971314, -73.80335073706397 40.861031002305346, -73.80332673132087 40.86101675792433, -73.80330275413654 40.86100248567172, -73.80327880551094 40.860988185547505, -73.8032760348097 40.86098578281264, -73.80327323083458 40.860983401632794, -73.80327039358285 40.86098104290843, -73.80326752542669 40.86097870664363, -73.80326462518002 40.860976392836356, -73.80326169284024 40.860974102387054, -73.8032587295934 40.86097183529779, -73.80325573543942 40.8609695915685, -73.80325271037573 40.860967372099765, -73.80324965558835 40.86096517689353, -73.80324656989389 40.86096300504732, -73.80324345565923 40.86096085836611, -73.80324031170082 40.86095873594743, -73.8032364621237 40.86095537685001, -73.80323264819849 40.86095199440043, -73.80322886992532 40.86094858859875, -73.80322512730407 40.860945159444974, -73.80322142270431 40.86094170784358, -73.80321775375386 40.86093823379055, -73.80321412282488 40.860934737289945, -73.80321052873127 40.86093121833979, -73.80320697147037 40.86092767784051, -73.80320345341434 40.86092411579613, -73.80319997219105 40.86092053220269, -73.8031965289865 40.860916927062185, -73.80319312498412 40.86091330127708, -73.8031897589979 40.860909654845436, -73.80318643221385 40.86090598776922, -73.80318314463202 40.86090230004848, -73.80317989624966 40.86089859258369, -73.80317668706682 40.86089486537483, -73.80317351708082 40.860891119322424, -73.80317038748039 40.86088735352798, -73.80316729826554 40.8608835679915, -73.80316424943096 40.86087976451395, -73.80316124097921 40.86087594219495, -73.80315827290775 40.86087210193488, -73.80315534640528 40.860868242835316, -73.8031524602803 40.86086436669519, -73.80314961572165 40.860860472616096, -73.80314681272664 40.86085656149848, -73.80314405129522 40.86085263334231, -73.80314133142744 40.86084868814767, -73.80313865430931 40.860844725916586, -73.80313601874947 40.86084074844794, -73.80313342475053 40.860836754841294, -73.80313087468473 40.86083274510065, -73.80312836617713 40.86082872012255, -73.80312590160261 40.86082467901047, -73.80312347976702 40.86082062446386, -73.80312110067848 40.86081655378134, -73.80311876432887 40.86081246966423, -73.80311647309307 40.860808371216216, -73.8031142245989 40.860804258433234, -73.80311201884365 40.860800132215694, -73.80310985819952 40.86079599256777, -73.80310774147773 40.860791840387826, -73.80310566868096 40.860787674775445, -73.80310364099255 40.86078349663309, -73.80310165722653 40.860779305958765, -73.8030997173801 40.86077510365295, -73.80309782263942 40.860770889717664, -73.80309597300443 40.860766664152926, -73.80309416847253 40.86076242785924, -73.80309240786022 40.860758179934095, -73.80309069353433 40.860753922182425, -73.80308902431148 40.860749653701866, -73.8030874001916 40.86074537449231, -73.80308582235548 40.86074108635679, -73.80308428961973 40.86073678839282, -73.80308280198427 40.86073248060041, -73.80308136062982 40.86072816478251, -73.8030799655591 40.86072384003867, -73.8030786167721 40.86071950636888, -73.80307731308001 40.860715164671575, -73.80307605566628 40.86071081584934, -73.8030748445336 40.86070645900163, -73.80307368086527 40.86070209503099, -73.8030725622892 40.86069772393338, -73.80307148999148 40.86069334571077, -73.80307046515546 40.86068896126568, -73.80306948659238 40.86068457149663, -73.80306855430491 40.86068017550313, -73.80306766947915 40.86067577328717, -73.80306683092367 40.86067136664774, -73.80306603982719 40.8606669546863, -73.80306529500358 40.86066253740091, -73.80306459763368 40.860658116594564, -73.803063946534 40.860653691364696, -73.80306334289058 40.860649261713334, -73.80306278669812 40.86064482944153, -73.80306227677325 40.86064039364673, -73.80306181430188 40.86063595433092, -73.80306139928152 40.86063151239462, -73.8030610317094 40.86062706873833, -73.80306071040208 40.86062262245954, -73.80306043654305 40.860618174460726, -73.80306021012952 40.860613725642416, -73.80306003116692 40.86060927420361, -73.80305989964712 40.860604822845836, -73.80305981557292 40.860600370668465, -73.8030603949861 40.860592555384514, -73.80306092814776 40.86058473822058, -73.80306141742734 40.86057692008126, -73.80306186045803 40.86056909916151, -73.80306225960403 40.86056127816681, -73.80306261368463 40.86055345529422, -73.80306292151106 40.86054563144216, -73.80306318545817 40.860537805714245, -73.80306340433452 40.86052997990934, -73.80306357695414 40.8605221540255, -73.80306370569178 40.86051432716625, -73.80306378935883 40.86050650023004, -73.80306382677175 40.8604986723144, -73.80306382029748 40.860490845224305, -73.80306376756918 40.860483017154785, -73.80306367095365 40.860475189910815, -73.80306352926492 40.860467363490415, -73.8030633413195 40.86045953699101, -73.80306310948431 40.86045171221768, -73.80306283139248 40.860443887365406, -73.8030625094135 40.86043606333872, -73.8030621411727 40.86042824103399, -73.80306172904476 40.86042041955484, -73.80306127065492 40.86041259979771, -73.80306076837537 40.860404781766626, -73.80306022102006 40.860396965459564, -73.80305962858895 40.86038915087656, -73.80305898989607 40.86038133801554, -73.80305830731086 40.86037352778106, -73.80305757964726 40.860365720171096, -73.80305680690796 40.86035791428519, -73.80305598908762 40.86035011192426, -73.80305512619164 40.86034231128734, -73.80305421940072 40.86033451417748, -73.80305326634277 40.86032672059059, -73.80305226939267 40.86031892963023, -73.80305122736152 40.86031114219486, -73.80305111858085 40.86030662243817, -73.80305096354101 40.860302103502995, -73.80305075986712 40.86029758628585, -73.80305050874797 40.860293069888165, -73.803050211367 40.86028855521248, -73.80304986653806 40.86028404225681, -73.80304947425861 40.86027953192159, -73.80304903452856 40.86027502420685, -73.80304854853672 40.86027051821412, -73.80304801390292 40.860266016640836, -73.80304743300469 40.86026151769, -73.80304680465326 40.86025702226018, -73.80304613003206 40.86025253125377, -73.803045407955 40.86024804466884, -73.80304463842212 40.86024356250535, -73.80304382261954 40.86023908476533, -73.8030429593611 40.86023461144674, -73.80304204982762 40.860230144352585, -73.8030410928357 40.8602256825804, -73.80304008956871 40.86022122703262, -73.80303904002666 40.86021677770927, -73.80303794420963 40.86021233461036, -73.80303680092884 40.860207898634364, -73.80303561137303 40.86020346888281, -73.80303437672292 40.86019904715867, -73.80303309460912 40.86019463255742, -73.80303176621234 40.860190226882075, -73.80303039153789 40.86018582833162, -73.80302897176655 40.86018143870912, -73.80302750571492 40.860177057112, -73.80302599337764 40.86017268534124, -73.80302443594351 40.860168322498374, -73.80302283222649 40.86016396858145, -73.80302118340724 40.86015962539338, -73.80301948948842 40.86015529203369, -73.80301774928408 40.86015096850036, -73.80301596516097 40.860146656598424, -73.80301413475226 40.86014235452286, -73.8030122592361 40.86013806497714, -73.80301033980652 40.86013378526181, -73.80300837526943 40.86012951807632, -73.8030063656249 40.8601252634207, -73.80300431206159 40.86012102039645, -73.80300221457694 40.86011678990402, -73.80300007198215 40.86011257284197, -73.80299788546604 40.86010836831173, -73.80299565502585 40.86010417721385, -73.80299338066163 40.86009999954831, -73.80299106355945 40.86009583531709, -73.80298870134187 40.86009168631718, -73.80298629638632 40.86008755075166, -73.8029838486875 40.86008343042145, -73.80298135824808 40.86007932442605, -73.80297882387937 40.86007523366399, -73.80297624676467 40.860071159037716, -73.80297362809281 40.86006709964879, -73.802970965489 40.86006305639362, -73.80296826132535 40.86005902927629, -73.80296551560183 40.86005501829678, -73.80296272712974 40.86005102435356, -73.8029598982839 40.860047046550164, -73.80295702668683 40.86004308668352, -73.80295411352462 40.86003914475572, -73.80295115998597 40.86003521986821, -73.80294816488217 40.86003131291948, -73.8029423670551 40.860024219744204, -73.80293660723659 40.86001710862375, -73.80293088661 40.86000998046056, -73.80292520518063 40.86000283345372, -73.80291956175985 40.85999566850163, -73.80291395871697 40.859988486508875, -73.80290839368261 40.85998128657092, -73.80290286784015 40.859974069590315, -73.80289738119217 40.85996683466649, -73.8028919349195 40.85995958360253, -73.80288652784137 40.85995231459542, -73.80288115995243 40.85994502944616, -73.80287583125534 40.85993772725422, -73.8028705429334 40.859930408922104, -73.80286529498939 40.85992307354941, -73.8028600862372 40.859915721134065, -73.80285491785754 40.85990835347909, -73.802849788667 40.859900969681995, -73.80284470104039 40.85989356884632, -73.80283965260017 40.859886152768986, -73.80283464453248 40.85987872145207, -73.80282967802597 40.859871273997044, -73.80282475189192 40.85986381130243, -73.80281986494694 40.85985633246571, -73.80281502074386 40.859848839293946, -73.80281021572985 40.8598413299801, -73.8028054522716 40.85983380632915, -73.80280072918316 40.859826268339134, -73.80279604765582 40.859818714211094, -73.80279140768155 40.85981114664647, -73.80278271013003 40.85980799806613, -73.80277399350634 40.85980488187032, -73.80276525662164 40.85980179895742, -73.8027564994813 40.859798747526426, -73.80274772208 40.859795729378355, -73.80273892678984 40.85979274451725, -73.80273011124137 40.85978979203856, -73.80272127662053 40.859786871944316, -73.8027124229248 40.85978398513501, -73.80270355134016 40.859781131612614, -73.80269466186651 40.85977831137718, -73.80268575332063 40.85977552352617, -73.80267682688572 40.859772768962095, -73.8026678837453 40.85977004858745, -73.80265892271588 40.85976736149976, -73.8026499438001 40.85976470679847, -73.80264094817873 40.85976208628666, -73.80263193585175 40.85975949996425, -73.8026229068245 40.8597569460303, -73.8026138610916 40.85975442628576, -73.80260479983907 40.85975194073271, -73.80259572188353 40.85974948846854, -73.80258662840839 40.85974707039582, -73.80257751941362 40.85974468651452, -73.8025683949018 40.85974233592422, -73.80255925605645 40.85974001952736, -73.80255010169138 40.85973773732189, -73.8025409329927 40.859735489309905, -73.80253174996034 40.85973327549136, -73.80252255259168 40.859731096766744, -73.80251334089195 40.85972895133509, -73.80250411604467 40.85972684009894, -73.80249487686098 40.859724763956685, -73.80248562452965 40.85972272200987, -73.80247635905067 40.85972071425854, -73.80246708160735 40.859718741605164, -73.80245779101632 40.85971680314726, -73.80244848727494 40.859714899785295, -73.80243917275526 40.85971303152333, -73.80242984509053 40.85971119655633, -73.80242050664478 40.85970939758979, -73.8024111550513 40.859707632818704, -73.80240179386556 40.85970590314961, -73.80239242071534 40.859704208578506, -73.8023830367868 40.85970254910733, -73.80237364207983 40.85970092473619, -73.80236423778324 40.859699334566535, -73.80235482270554 40.85969778039736, -73.80234539803816 40.859696260429665, -73.80233596377569 40.85969477646452, -73.80232651873476 40.8596933275993, -73.80231706528751 40.85969191383808, -73.80230760343385 40.85969053518095, -73.80229813198775 40.859689191625776, -73.80228865213527 40.85968788317464, -73.80227916387365 40.85968661072796, -73.80226966839169 40.85968537338738, -73.8022601645006 40.85968417205128, -73.80225065220574 40.859683004918715, -73.8022411326851 40.85968187469316, -73.80223160713273 40.85968077867523, -73.80222207317121 40.85967971866175, -73.80221253317254 40.85967869465688, -73.80220546778146 40.859678305238226, -73.8021983999112 40.85967795183464, -73.80219132956182 40.859677634446044, -73.80218425554989 40.859677352169925, -73.80217718024477 40.85967710591087, -73.80217010127444 40.85967689566479, -73.80216302219696 40.85967672143779, -73.80215594064029 40.859676583225806, -73.80214885897918 40.85967648013243, -73.8021417760249 40.85967641305607, -73.8021346929607 40.85967638289931, -73.80212760979212 40.859676387861086, -73.80212052651898 40.85967642794151, -73.80211344313601 40.859676504941454, -73.80210636201794 40.85967661796459, -73.80209928079535 40.85967676610631, -73.80209220183765 40.85967695027116, -73.80208512395878 40.85967717045712, -73.80207804953083 40.859677426668306, -73.8020709761844 40.85967771800007, -73.80206390628882 40.85967804535703, -73.8020568386581 40.859678408737146, -73.8020497744782 40.859678808142455, -73.80204271493528 40.85967924357497, -73.8020356588459 40.85967971413216, -73.80202860620736 40.85968022071459, -73.8020215593944 40.85968076242576, -73.80201451721832 40.8596813401642, -73.80200747967916 40.85968195392981, -73.80200044796555 40.859682602824215, -73.80199342207487 40.85968328774788, -73.80198640319576 40.85968400780237, -73.80197939013955 40.859684763886136, -73.80197238290886 40.85968555509862, -73.80196538387587 40.85968638144399, -73.80195839303782 40.859687243822705, -73.80195140802525 40.85968814133021, -73.80194443239633 40.859689073972625, -73.80193746496236 40.859690042648324, -73.80193050572862 40.85969104555644, -73.80192355587586 40.859692084499926, -73.80191661540675 40.859693158578274, -73.80190968432123 40.8596942677916, -73.80190276262198 40.85969541123927, -73.8018958514897 40.8596965907244, -73.80188895092977 40.85969780444598, -73.80188206093673 40.85969905420498, -73.80187518270479 40.85970033730198, -73.80186831622576 40.85970165643845, -73.80186146031905 40.85970300981141, -73.801854617354 40.85970439832538, -73.8018477861473 40.85970582107781, -73.80184096788491 40.85970727807083, -73.8018341625642 40.859708770204875, -73.80182737019058 40.85971029567897, -73.80182059194456 40.85971185629612, -73.80181382664296 40.85971345115386, -73.80180707665771 40.859715080256194, -73.80180033961676 40.8597167435991, -73.80179361907831 40.85971844118867, -73.80178691267015 40.85972017302082, -73.80178022158108 40.859721938197154, -73.80177354581106 40.8597237367176, -73.80176688654078 40.85972557038526, -73.80176024377826 40.8597274364986, -73.80175361751819 40.859729336858614, -73.80174700776313 40.859731270564865, -73.80174041569929 40.85973323761932, -73.80173384014043 40.85973523802, -73.80172868969008 40.85973622511387, -73.8017235286644 40.85973717887104, -73.80171835706882 40.859738097490684, -73.80171317490054 40.85973898187317, -73.80170798216237 40.8597398311181, -73.80170278003767 40.85974064612793, -73.80169756971249 40.85974142690467, -73.80169234881738 40.859742172543875, -73.80168712091053 40.85974288305154, -73.80168188480323 40.85974355932616, -73.80167664049817 40.85974420046727, -73.8016713891787 40.85974480737737, -73.8016661308502 40.859745378255475, -73.80166086669341 40.85974591490461, -73.80165559552492 40.85974641642224, -73.80165031971956 40.85974688191197, -73.80164503927193 40.859747313174715, -73.80163975299872 40.85974770930806, -73.80163446208867 40.85974806941347, -73.80162916772247 40.859748395294005, -73.80162386990546 40.85974868514861, -73.80161856981839 40.859748940780406, -73.80161326509447 40.85974916038425, -73.80160795929194 40.859749343966364, -73.80160265121935 40.85974949332554, -73.80159734206813 40.859749606662966, -73.8015920318356 40.859749684879056, -73.80158672052174 40.859749727973885, -73.80158140812661 40.85974973594734, -73.80157609702505 40.85974970790312, -73.80157078602821 40.859749644739615, -73.80156547632225 40.85974954645887, -73.8015601667238 40.85974941215841, -73.80155486078563 40.859749243645254, -73.80154955495492 40.85974903911231, -73.80154425278727 40.85974879946628, -73.80153895428526 40.85974852380657, -73.80153365825754 40.859748213932185, -73.80152836589552 40.85974786804415, -73.80152307838266 40.85974748704502, -73.80151779453277 40.8597470709327, -73.80151251671532 40.859746620611844, -73.80150724374971 40.859746134279426, -73.80150197681925 40.8597456128379, -73.801496715924 40.85974505628733, -73.80149146106397 40.859744464627695, -73.80148621460852 40.85974383876353, -73.80148097418828 40.859743177790335, -73.80147574217536 40.859742481712196, -73.80147051856977 40.85974175052902, -73.80146530455488 40.859740985143425, -73.80146009776135 40.859740184650825, -73.80145490174453 40.85973934995782, -73.80144971532116 40.85973848016185, -73.80144453848852 40.85973757616347, -73.80143937243267 40.8597366379647, -73.8014342171537 40.85973566556551, -73.80142907384023 40.85973465806751, -73.80142394248695 40.85973361727159, -73.80141882309657 40.85973254227735, -73.80141371685787 40.859731432186294, -73.80140862257663 40.8597302896979, -73.80140354263314 40.859729112114735, -73.8013984758359 40.85972790123577, -73.80139342337372 40.85972665616251, -73.80138838642728 40.859725378698045, -73.8013833638159 40.859724067039295, -73.80137835553685 40.85972272208679, -73.80137336396498 40.85972134294412, -73.80136838790615 40.8597199323107, -73.8013634297406 40.85971848748916, -73.80135848709345 40.85971700937588, -73.80135356233151 40.85971549977597, -73.80134865427682 40.859713955985875, -73.80134376529335 40.85971238071122, -73.80133889420043 40.859710772148894, -73.80133404217885 40.85970913210201, -73.80132920923384 40.859707458769535, -73.80132439536015 40.85970575395243, -73.80131960174378 40.85970401765277, -73.80131482838745 40.8597022489701, -73.80131007529114 40.859700447904366, -73.80130534363558 40.85969861625864, -73.8013006322373 40.859696753130386, -73.80129594346857 40.859694858523646, -73.8012912773293 40.85969293243844, -73.80128663263072 40.85969097577323, -73.8012820105617 40.859688987629596, -73.8012774123028 40.85968696981054, -73.8012728366734 40.859684920513, -73.80126828604021 40.85968284154214, -73.80126375921989 40.859680731995326, -73.80125925620975 40.859678592773086, -73.8012547793846 40.85967642297909, -73.80125032636697 40.859674224410114, -73.80124589953428 40.85967199526937, -73.80124149888124 40.85966973735775, -73.80123712441046 40.85966744977485, -73.80123277611936 40.85966513342113, -73.80122845519391 40.85966278829859, -73.80122416163144 40.859660415307815, -73.80121989543728 40.859658012647735, -73.80121565660619 40.85965558211943, -73.80121144632683 40.85965312282433, -73.8012072645938 40.85965063656353, -73.80117231019767 40.85962882223471, -73.80113732609507 40.859607033958326, -73.8011023146554 40.85958527263879, -73.80106727350919 40.859563537371606, -73.80103220502589 40.85954182906124, -73.80099710801939 40.85952014770571, -73.80096198130629 40.85949849240244, -73.80092682725879 40.85947686315542, -73.80089164468536 40.85945526176364, -73.80085643359138 40.85943368642604, -73.80082119397687 40.859412137142655, -73.80078592583635 40.85939061571437, -73.8007506303613 40.85936912034227, -73.80071530636566 40.859347651024265, -73.80067995384397 40.85932620956133, -73.80064457398773 40.85930479415446, -73.80060916560815 40.859283405702136, -73.80057372870249 40.85926204510479, -73.80053826446492 40.85924070966295, -73.80050277170123 40.85921940207607, -73.80046725160021 40.859198121445615, -73.80043170297844 40.859176866869056, -73.80039612701661 40.859155640149424, -73.80036052253128 40.85913444038412, -73.80032489071122 40.85911326667468, -73.80028923036497 40.85909212081999, -73.80025354268125 40.85907100192164, -73.8002178276628 40.85904990907907, -73.8001820853041 40.85902884409326, -73.80014631442184 40.8590078060616, -73.8001105162021 40.85898679498618, -73.80007469064205 40.85896581176738, -73.80003883774718 40.85894485460431, -73.80000548292642 40.858925396577966, -73.79997210433126 40.85890596281396, -73.7999319213163 40.85888261630701, -73.79993185475173 40.85888266481819, -73.79990720756618 40.85886845732657, -73.79988253184221 40.85885427769545, -73.7998578275771 40.8588401268252, -73.79983309595957 40.85882600381742, -73.79980833580083 40.858811909570555, -73.79978354710099 40.85879784408458, -73.79975873104863 40.858783806461, -73.7997338864551 40.85876979759823, -73.79970901450635 40.85875581749836, -73.79968411520514 40.85874186526083, -73.79965918735992 40.85872794268461, -73.79963423216225 40.85871404797069, -73.79960924960923 40.858700182019575, -73.79958423851501 40.858686344829216, -73.79955920124874 40.85867253730415, -73.79953413544392 40.85865875763925, -73.79950904228379 40.85864500673715, -73.79948392176833 40.85863128459771, -73.79945877389476 40.85861759212149, -73.79943359985467 40.85860392750949, -73.7994083972704 40.8585902925586, -73.79938316851674 40.85857668637241, -73.79935791122173 40.858563108946825, -73.79933262894332 40.858549560287884, -73.79930731812074 40.85853604129002, -73.79928198112871 40.858522551056794, -73.7992566167785 40.85850909048659, -73.79923122625885 40.85849565868101, -73.7992058083837 40.8584822556379, -73.79918036433631 40.85846888225991, -73.79915489411945 40.85845553764645, -73.79912939654426 40.85844222269594, -73.79910387279689 40.858428937410444, -73.7990783228799 40.85841568088941, -73.7990527456046 40.85840245403128, -73.79902714215699 40.85838925683812, -73.79900151372581 40.85837608841148, -73.79897585793623 40.8583629496477, -73.79895017597426 40.858349840548776, -73.79892446902595 40.85833676111685, -73.79889873472192 40.85832371044721, -73.79887297542878 40.85831069034497, -73.7988471899659 40.85829769900709, -73.79882137833057 40.85828473733398, -73.79879554170604 40.85827180622824, -73.79876967891174 40.85825890388683, -73.79874378994492 40.85824603121016, -73.79871787598886 40.85823318910077, -73.79869193586293 40.85822037575565, -73.79866597074776 40.85820759297776, -73.79863998064596 40.8581948398667, -73.79861396437157 40.85818211642026, -73.79858792310786 40.85816942354103, -73.79856185567418 40.85815675942597, -73.7985357644372 40.85814412588016, -73.79850964702472 40.85813152289947, -73.79848350581433 40.85811894868697, -73.79845733842572 40.858106405940084, -73.79843114605306 40.85809389195931, -73.798404929877 40.85808140854769, -73.79837868752536 40.858068955701086, -73.79835242137294 40.85805653252317, -73.79832613023098 40.858044139912245, -73.7982998141022 40.85803177696793, -73.79827347416978 40.85801944459265, -73.79824710924773 40.85800714278438, -73.7982207193388 40.85799487064262, -73.79819430562621 40.85798262906986, -73.79816786692396 40.857970418064085, -73.7981414044207 40.85795823672681, -73.79811491811104 40.857946086859044, -73.7980884068143 40.85793396665766, -73.79806187171387 40.857921877025284, -73.79803531280959 40.857909817961776, -73.79800873010151 40.857897789467216, -73.7979821224036 40.85788579153951, -73.79795549208787 40.857873824182775, -73.79792883678222 40.8578618873928, -73.79790215885868 40.8578499811738, -73.79787545594519 40.85783810552156, -73.7978487304138 40.85782626044021, -73.79782198107566 40.85781444682813, -73.7977952091223 40.857802662886506, -73.79776841217613 40.857790910412014, -73.79774159261197 40.85777918850838, -73.79771474924367 40.8577674971735, -73.79768788325461 40.8577558373099, -73.79766099464746 40.85774420801711, -73.79763408105012 40.85773260929092, -73.79760714601787 40.85772104203809, -73.79757974686748 40.857709213722174, -73.79755232390785 40.857697417775675, -73.7975248771443 40.85768565239763, -73.79749740776286 40.857673917590034, -73.79746991457205 40.85766221515182, -73.7974423987606 40.85765054418453, -73.79741486033117 40.857638903787695, -73.7973872980923 40.8576272957602, -73.79735971323271 40.85761571920359, -73.79733210456902 40.85760417321527, -73.79730447446784 40.857592659600385, -73.7972768205598 40.85758117745425, -73.79724914521691 40.857569726781065, -73.79722144606718 40.85755830757661, -73.79719372429652 40.85754691984295, -73.79716598108817 40.857535564482596, -73.79713821407564 40.85752423969048, -73.79711042562535 40.85751294727167, -73.79708261455403 40.857501686323616, -73.79705478085896 40.857490457746735, -73.79702692572879 40.85747926064269, -73.7969990479775 40.85746809500929, -73.7969711487884 40.85745696174917, -73.79694322697809 40.857445859959654, -73.79691528254386 40.8574347905413, -73.79688731786047 40.857423752597754, -73.7968593305558 40.85741274612477, -73.79683132062709 40.857401772022854, -73.79680329044635 40.85739083029623, -73.79677523764431 40.857379920040145, -73.79674716340415 40.85736904215718, -73.7967190677258 40.85735819664734, -73.79669095061215 40.85734738261006, -73.79666281324624 40.857336600947974, -73.79663465325608 40.857325851656846, -73.79660647183043 40.85731513383826, -73.79657827015258 40.85730444839481, -73.79655004703358 40.85729379622488, -73.79652180248173 40.857283174626936, -73.79649353767485 40.857272586304546, -73.79646525142945 40.85726203035515, -73.79643694374845 40.85725150587819, -73.79640861581218 40.85724101467677, -73.79638026762619 40.85723055494987, -73.79635189799892 40.85722012849635, -73.7963235081218 40.85720973351734, -73.79629509798939 40.85719937181376, -73.79626666760431 40.857189042485174, -73.79623821578336 40.8571787446289, -73.79620974370697 40.85716848004808, -73.79618125256391 40.857158247844225, -73.796152739982 40.857148048013194, -73.79612420714462 40.85713788145752, -73.79609565524316 40.857127746378275, -73.79606708308613 40.85711764457443, -73.79603849067614 40.85710757514537, -73.79600987801055 40.857097538991674, -73.79598124509202 40.857087535212735, -73.79595259310645 40.85707756381075, -73.79592392205392 40.85706762478554, -73.7958952307456 40.85705771903564, -73.79586651918142 40.85704784656099, -73.79583778973614 40.85703800646521, -73.7958090388517 40.85702819874209, -73.79578027008333 40.85701842429837, -73.79575148106173 40.857008682229335, -73.79572267415617 40.85699897343961, -73.79569384699732 40.8569892970246, -73.79566500076835 40.85697965388676, -73.79563613546931 40.85697004402621, -73.79560725110294 40.85696046654231, -73.79557834766631 40.85695092233566, -73.7955494263455 40.856941411408236, -73.79552048476845 40.85693193375591, -73.79549152530986 40.85692248848237, -73.79546254796698 40.856913076488, -73.7954335503705 40.85690369686821, -73.79540453607285 40.85689435143022, -73.79537550152159 40.856885038366684, -73.79534644908308 40.85687575948286, -73.79531737876282 40.856866512977696, -73.79528829055805 40.85685729975171, -73.79525918328275 40.856848119802734, -73.79523005812277 40.8568389731329, -73.7952009150782 40.85682985974218, -73.79517175415174 40.856820778730075, -73.79514257415178 40.85681173189543, -73.79511337745308 40.85680271834199, -73.79508416286959 40.85679373806756, -73.79505493040129 40.85678479107222, -73.79502568004534 40.85677587825639, -73.79499641180725 40.85676699781906, -73.7949669027557 40.85675544428288, -73.79493737227479 40.85674392041729, -73.79490782154484 40.856732428025396, -73.79487824938266 40.856720966204506, -73.79484865697417 40.85670953495679, -73.79481904431667 40.85669813518266, -73.79478941022957 40.85668676507904, -73.79475975707936 40.856675426451154, -73.79473008249676 40.85666411839422, -73.79470038766495 40.85665284181083, -73.79467067258668 40.856641595800504, -73.79464093726193 40.856630380363164, -73.79461118168786 40.85661919639941, -73.79458140586728 40.856608043008585, -73.7945516109861 40.85659692019293, -73.79452179466952 40.85658582884858, -73.79449195929233 40.85657476807928, -73.79446210366564 40.85656373878345, -73.79443222897551 40.856552740963096, -73.79440233285538 40.85654177281309, -73.79437241885495 40.85653083704116, -73.79434248342169 40.85651993184001, -73.79431253011083 40.85650905811646, -73.79428255536713 40.856498214963636, -73.79425256274573 40.85648740328834, -73.7942225498746 40.85647662308637, -73.7941925179425 40.856465873459314, -73.79416246576064 40.85645515530552, -73.79413239570098 40.856444468629235, -73.79410230539143 40.85643381342621, -73.79407219602082 40.856423188798054, -73.79404206758629 40.8564125956452, -73.79401192008778 40.85640203396764, -73.7939817535253 40.856391503765444, -73.79395156789879 40.85638100503848, -73.79392136439704 40.856370536888456, -73.79389114064242 40.85636010111207, -73.7938608990097 40.85634969681303, -73.79383063831557 40.856339323088704, -73.79938825946121 40.84550851968887, -73.80178209679002 40.84665845368292, -73.81129768063825 40.86126005274509, -73.81286497138473 40.86232168649423, -73.81350206731905 40.86275321881877, -73.81420325152956 40.863228150935356, -73.81421999282696 40.86323948986768, -73.81422833328715 40.86324513947348, -73.81465348323 40.86353309982529, -73.81466482493862 40.86354078122667, -73.81456361780454 40.863690327136496, -73.81438589744779 40.863866637671, -73.81417485146456 40.86407653031992, -73.81398049012356 40.86426122220899, -73.81392674851196 40.86429806380937, -73.81386801444204 40.864330215676134, -73.81380499476049 40.86435728993009, -73.81373844833472 40.864378960910805, -73.81366917536938 40.86439496786158, -73.81359801027881 40.86440511851973, -73.81352580863589 40.86440928999674, -73.81345343885512 40.864407433267054, -73.81338177389911 40.86439956955304, -73.81331167347476 40.86438579389811, -73.81325836894501 40.864369037743224, -73.81320736770108 40.8643485635612, -73.81250902644176 40.86407986788765)), ((-73.81799909558569 40.87400101642095, -73.81806061263548 40.87414905308724, -73.81818698861848 40.8745031258117, -73.81823042023078 40.874646667449376, -73.81826963509457 40.874790906609334, -73.81830461558323 40.8749357721295, -73.81830658078496 40.8749607196866, -73.81831106001924 40.874989070549965, -73.81830427012207 40.87498969200357, -73.81834645064517 40.87517842178377, -73.81836824776306 40.87537408204767, -73.81838034086803 40.875527558905425, -73.81839021798643 40.87571446114201, -73.81839153579801 40.875912601517946, -73.81838534563559 40.87617094940148, -73.81837002357926 40.876413824199666, -73.81832301669273 40.87668380876905, -73.81833169200652 40.876680541042596, -73.81825413330833 40.877003082257424, -73.81825076330142 40.87701289318389, -73.81773003428619 40.878528675799785, -73.81773608577588 40.87852706087469, -73.81677633805985 40.88133546796469, -73.81677812216712 40.88133514932256, -73.81605912499828 40.88341366573027, -73.81595292924752 40.88360636031289, -73.81557284857394 40.884256972267245, -73.81476257570863 40.886003675931576, -73.8146966313628 40.886083057946365, -73.8146237366455 40.886158858325686, -73.81454422949358 40.88623072821028, -73.81445847509421 40.88629833499317, -73.81436687061874 40.88636136683006, -73.81426983810088 40.88641953352872, -73.81416782444184 40.88647256474838, -73.81406130257368 40.88652021810598, -73.81395076317386 40.886562271959676, -73.81385261431163 40.88658962541667, -73.81375216064171 40.88661163878052, -73.81364990677427 40.88662820209992, -73.81354636436744 40.88663923155071, -73.81344205330339 40.88664467304001, -73.81314903816146 40.88662987230999, -73.81285669105 40.88660879191698, -73.81256524693693 40.88658144935664, -73.81227493603008 40.886547866621704, -73.81198599326922 40.88650807021739, -73.81169864764453 40.88646209204424, -73.81141312931781 40.88640996850957, -73.8114128177708 40.886411461009445, -73.81102718881313 40.88633242481443, -73.81064305438655 40.88624930336601, -73.81026048925868 40.88616211391099, -73.81011868168828 40.88612814753212, -73.81009432083854 40.88612197152868, -73.81006997551331 40.8861157622276, -73.81004564452873 40.886109518726435, -73.81002132906616 40.886103242828085, -73.80999702794436 40.88609693272966, -73.80997274234721 40.88609058933359, -73.80994847108829 40.886084212638, -73.80992421654062 40.88607780264674, -73.80989997633122 40.88607135935591, -73.80987575164919 40.886064881867036, -73.80985154248947 40.88605837198104, -73.80982734885717 40.88605182789698, -73.80980317193371 40.88604525141784, -73.80977900934876 40.886038641639196, -73.80975486347523 40.88603199856492, -73.80973073312931 40.886025321292685, -73.80970661949239 40.886018611625325, -73.80968252138052 40.88601186866046, -73.80965843879116 40.88600509329861, -73.80963437291608 40.88599828374071, -73.80961032375006 40.88599144178775, -73.80958629129837 40.885984565638836, -73.80956227436933 40.88597765709292, -73.80953827414949 40.88597071615203, -73.80951429064143 40.885963741915624, -73.80949032503172 40.88595673438571, -73.80946637494742 40.88594969355837, -73.80944244157237 40.88594262033609, -73.80941852609585 40.88593551382031, -73.80939462614474 40.88592837400712, -73.80937074408953 40.885921201800954, -73.80934687993032 40.88591399720185, -73.80932303248319 40.88590675930729, -73.80929920174552 40.885899489017895, -73.80927538890649 40.88589218543502, -73.80925159396357 40.88588484945926, -73.80922781691932 40.88587748019008, -73.80920405658469 40.88587007852603, -73.80918031414619 40.88586264446912, -73.80915658960656 40.885855177118835, -73.809116928862 40.88585017596058, -73.80907727534081 40.885845140582155, -73.80903762904049 40.88584007188392, -73.80899799115015 40.88583496896745, -73.8089583604808 40.88582983273126, -73.80891873703506 40.88582466227483, -73.80887912080776 40.88581945939919, -73.80883951299333 40.88581422140483, -73.80879991240008 40.885808950090784, -73.80876032021462 40.885803645459006, -73.80872073643694 40.88579830750947, -73.80868115988322 40.88579293533981, -73.80864159055358 40.885787528949955, -73.8086020308158 40.8857820901449, -73.80856247830222 40.88577661711966, -73.80852293301278 40.885771109874355, -73.80848339731801 40.88576556931329, -73.80844386884503 40.8857599954326, -73.80840434878027 40.88575438823428, -73.80836483831303 40.88574874681978, -73.80832533506766 40.88574307208566, -73.80828584023071 40.88573736403396, -73.80824635380493 40.885731621764116, -73.8082068757877 40.885725846176676, -73.80816740617912 40.88572003727163, -73.80812794616838 40.885714194150445, -73.80808849456633 40.88570831771173, -73.80804905137315 40.88570240795539, -73.8080096165888 40.8856964648815, -73.8079701914025 40.88569048759155, -73.80793077462518 40.885684476984046, -73.80789136625685 40.88567843305897, -73.8078519674842 40.885672355818386, -73.8078125771207 40.885666245260225, -73.80777319635548 40.88566010048606, -73.80775733724808 40.88565887912512, -73.80774147329103 40.8856576937734, -73.8077256056708 40.885656544432926, -73.80770973320082 40.885655431101725, -73.8076938558838 40.88565435287929, -73.80767797490351 40.885653310668076, -73.8076620890734 40.88565230446615, -73.80764620076654 40.8856513342774, -73.80763030761241 40.885650399197445, -73.807614410795 40.8856495001287, -73.8075985115007 40.885648637073174, -73.807582608543 40.88564781002885, -73.80756670192194 40.885647018995805, -73.80755079282392 40.88564626397589, -73.80753488006499 40.88564554406673, -73.80751896601305 40.885644861073274, -73.80750304830013 40.88564421319053, -73.80748712811022 40.885643601320965, -73.80747120544329 40.88564302546462, -73.80745528148576 40.885642485623436, -73.80743935505113 40.885641981795445, -73.80742342613932 40.88564151398069, -73.80740749593953 40.885641081280546, -73.80739156444643 40.885640685496085, -73.80737563047876 40.885640324824365, -73.80735969640428 40.88564000107024, -73.80734375985514 40.88563971242884, -73.80732782320173 40.88563945980461, -73.80731188525755 40.88563924319553, -73.80729594720904 40.88563906260356, -73.80728000786966 40.8856389180268, -73.807264068426 40.88563880946719, -73.80724812769138 40.885638736922715, -73.80723218804151 40.885638699496916, -73.80721624709805 40.88563869898678, -73.80720030723664 40.88563873449573, -73.80718436608684 40.8856388051194, -73.8071684272056 40.885638911764154, -73.80715248703069 40.88563905532459, -73.80713654912685 40.88563923400561, -73.80712061111842 40.8856394487038, -73.80710467419192 40.88563969942115, -73.80708873834723 40.885639986157585, -73.80707280358443 40.885640308913175, -73.8070568699035 40.88564066768794, -73.80704093849079 40.88564106248376, -73.80702500815995 40.88564149329872, -73.8070090789134 40.88564195923235, -73.80699315311907 40.88564246208955, -73.80697722840894 40.88564300006541, -73.80696130596712 40.8856435740624, -73.8069453857934 40.88564418408051, -73.8069294678878 40.885644830119766, -73.80691355225032 40.885645512180126, -73.80689764006745 40.88564623026358, -73.80688173134179 40.88564698346969, -73.80686582488418 40.88564777269689, -73.80684992187842 40.8856485988477, -73.8068340211433 40.88564946011919, -73.80681812505176 40.88565035651525, -73.80680223241208 40.885651289834975, -73.80678634322682 40.88565225917774, -73.80677045749857 40.88565326364321, -73.80675457641127 40.88565430413375, -73.80673869877826 40.88565538064742, -73.80672282578868 40.885656492285726, -73.80670695743994 40.88565763994914, -73.80669109373201 40.88565882363768, -73.80667523466484 40.88566004335133, -73.80665938024102 40.885661298189625, -73.80664353045526 40.88566258995349, -73.80662768650193 40.885663915943546, -73.80661184718669 40.88566527885918, -73.80659601370125 40.88566667690148, -73.80658018604291 40.88566811097086, -73.80656436302776 40.8856695801649, -73.80654854702622 40.88567108538806, -73.80653273566521 40.88567262663636, -73.80651693132039 40.88567420301324, -73.80650113398904 40.88567581541931, -73.80648534130081 40.88567746294999, -73.80646955681257 40.88567914651183, -73.80645377815391 40.88568086520031, -73.80643800532211 40.88568261991592, -73.80642224069287 40.88568440976214, -73.806406483077 40.88568623563754, -73.80639073247706 40.88568809664156, -73.8063749888905 40.88568999367477, -73.80635925350639 40.885691925838586, -73.80634352513549 40.88569389403158, -73.80632780496698 40.88569589735522, -73.80631209300091 40.885697935809496, -73.8062963880506 40.885700009392465, -73.80628069248654 40.88570211900857, -73.80626500393825 40.88570426375337, -73.80624932477612 40.885706444531316, -73.80623365381885 40.88570865953944, -73.80621799224768 40.885710910580706, -73.80620233887876 40.88571319675269, -73.80618669489589 40.88571551895783, -73.80617105911777 40.88571787539317, -73.80615543391221 40.885720267863704, -73.80613981691134 40.885722694564386, -73.806124210483 40.88572515730029, -73.80610861344323 40.88572765516888, -73.80609302697854 40.88573018817216, -73.80607744990499 40.88573275540769, -73.80606188221729 40.88573535867637, -73.80604632629117 40.88573799708177, -73.80603077975341 40.88574067061989, -73.80601524379068 40.88574337929271, -73.80599971840549 40.885746122199805, -73.80598420359519 40.885748900241616, -73.80596870054369 40.88575171432059, -73.80595320806968 40.88575456263384, -73.8059377273596 40.88575744518339, -73.80592225722178 40.8857603637681, -73.80590679884784 40.8857633165891, -73.8058913522352 40.88576630454681, -73.80587591738387 40.8857693276413, -73.80586049548286 40.88577238497406, -73.80584508415662 40.88577547744157, -73.80582968578067 40.88577860414738, -73.80581429916593 40.885781765989925, -73.80579892550148 40.885784962070794, -73.80578356359817 40.8857881932884, -73.8057682146451 40.885791458744336, -73.80575287863967 40.885794759339035, -73.80573755677094 40.88579809417405, -73.80572224666588 40.88580146324537, -73.80570695069491 40.8858048674575, -73.80569166767405 40.88580830590794, -73.80567639760334 40.88581177859673, -73.80566114166662 40.88581528642635, -73.80564589986912 40.885818827595784, -73.80563067220558 40.88582240390605, -73.80561545749212 40.88582601445468, -73.80560025810168 40.885829659245644, -73.80558507284778 40.88583333827696, -73.80556990173298 40.885837050648206, -73.8055547447521 40.88584079816026, -73.80553960309415 40.88584457991466, -73.8055244767591 40.88584839591148, -73.80550936456319 40.88585224524821, -73.80549426769015 40.885856128827335, -73.80547918732393 40.88586004755131, -73.80546412109929 40.88586399871476, -73.80544907019488 40.88586798502105, -73.80543403580246 40.885872004671306, -73.80541901673291 40.88587605856397, -73.80540401417525 40.88588014580059, -73.80538902694036 40.88588426727966, -73.80537405621745 40.88588842210268, -73.8053591020037 40.885892611170114, -73.80534416430189 40.885896833581526, -73.80532924192276 40.88590109023541, -73.80531433724461 40.8859053793348, -73.80529945025957 40.88590970358114, -73.80528457978892 40.88591406027094, -73.80526972582742 40.88591845120532, -73.80525488956684 40.885922874585155, -73.80524006981531 40.885927332209505, -73.8052252689486 40.88593182318185, -73.80415854879453 40.88565101812324, -73.80712022438912 40.880625159668135, -73.8072306128232 40.880658635173724, -73.81333567770237 40.87028322371359, -73.81396900042529 40.87051785978562, -73.81465028970842 40.87083444830765, -73.81465021394374 40.87083439235553, -73.81489467714839 40.87095794121946, -73.81513390922356 40.87108725782646, -73.8153676733063 40.87122221305961, -73.8154290617829 40.871257117014345, -73.81559896267163 40.871357995912895, -73.81576366068812 40.87146373070041, -73.8159229142739 40.87157416612929, -73.816076492559 40.87168914066607, -73.81622416942804 40.871808487382296, -73.81622799096708 40.87181129579365, -73.8163876626597 40.87193715303193, -73.81654181984892 40.87206691120684, -73.81669029683302 40.87220043140155, -73.81683293621953 40.87233757111047, -73.81696958418785 40.87247818153017, -73.81710009403295 40.8726221129678, -73.81749308043412 40.87312166783814, -73.81755111128322 40.87320964201456, -73.81755373555615 40.87320957862683, -73.8176293102019 40.87332458709016, -73.81761839223321 40.87330441146863, -73.81772644462447 40.87347436325228, -73.81782600496437 40.873647278542634, -73.81791693151388 40.873822912204645, -73.81799909558569 40.87400101642095)), ((-73.81467703364984 40.85001446512073, -73.81466227795507 40.85003095286729, -73.81459022791971 40.84937670222574, -73.81601663960132 40.847800576916924, -73.81615823225792 40.84772892882988, -73.81623651629467 40.84768931566408, -73.81623366915544 40.84773392880603, -73.8161721008938 40.848698640626786, -73.82004955469678 40.848138058329, -73.82040168825573 40.848666406343646, -73.82543661089319 40.845937823430994, -73.8254505924676 40.84597637673099, -73.82546643889773 40.846020072870836, -73.82547776333548 40.846051301129634, -73.8254948871766 40.84609851832846, -73.82551077878858 40.846132697207764, -73.82553948562412 40.84619443347617, -73.82556363501666 40.846246369071665, -73.82559302241222 40.84631451336954, -73.82561783629417 40.84637536484808, -73.82563645380665 40.84642102012285, -73.82566514885589 40.8464850832152, -73.82569280536707 40.846542285667496, -73.82573047180381 40.84662018938333, -73.82578145479575 40.84672042653862, -73.8258176024946 40.84679149678239, -73.82583618029585 40.84682795881856, -73.82584507929238 40.8468454238269, -73.82587769049567 40.846909428838366, -73.8258846653048 40.846923117869245, -73.82588481729816 40.846923038855216, -73.82591376465736 40.84697831794203, -73.82597862732328 40.84709165922477, -73.82603167870488 40.84718435864462, -73.82611541949106 40.84733068368893, -73.8261741704667 40.84743334388825, -73.82626809095976 40.84759745539921, -73.82629861956413 40.84765368048106, -73.82637998874381 40.84782086708996, -73.82638716839442 40.84783611425062, -73.82639362881721 40.84784977635977, -73.82641566452882 40.847896480312244, -73.82641575703647 40.847896475949, -73.82642614479616 40.84791839879225, -73.82645383037372 40.84797630257442, -73.82651662307889 40.84812380965299, -73.82657640011644 40.84828735625603, -73.82660585683452 40.848366044253844, -73.8266473390703 40.84849310142266, -73.82669822978647 40.84866898126528, -73.82674132842706 40.848833939896544, -73.8267646797224 40.848945345314725, -73.82678293615079 40.84905601097448, -73.8267965944697 40.849141836814184, -73.82680538598804 40.84919487467712, -73.82681528549752 40.84925460216788, -73.82681744776986 40.84926764816266, -73.82683084001525 40.849358230902936, -73.8268375982144 40.84946304408672, -73.82684327585967 40.84955109386008, -73.82684264254232 40.84966545738476, -73.82684218714085 40.84974746374217, -73.8268395154247 40.84979116518256, -73.8268374447927 40.84981579417274, -73.8268340181593 40.84985657147748, -73.8268302476739 40.84990142570005, -73.8268269777079 40.84994032751132, -73.82682238480164 40.84999497426506, -73.82681125636837 40.850069240162256, -73.82680698108814 40.850095714553895, -73.82679931761352 40.85014317886227, -73.82679406601302 40.85017569769999, -73.82678653752946 40.85022232114867, -73.82677910303543 40.850268368421915, -73.82677538379586 40.85028350373312, -73.82676780868978 40.85031432345084, -73.82676226518576 40.85033688058998, -73.82674935390179 40.85038941759597, -73.82674693633547 40.85039925275581, -73.8267414922946 40.85042140752251, -73.8267324236897 40.850458308727326, -73.82670475775447 40.85053029583363, -73.82670119727307 40.85053956016361, -73.82669018986626 40.850568200027325, -73.82667846126868 40.85059871993689, -73.8266614516297 40.850642977940886, -73.82665027224878 40.85067206688808, -73.82663321241733 40.85071645808503, -73.82661914353686 40.85075306450716, -73.82659892838774 40.850798663920656, -73.82656714483721 40.85085650345391, -73.82653000756049 40.850924084568504, -73.82650787076484 40.850964369065295, -73.82649629356166 40.85098543670408, -73.82646366525142 40.851036086298805, -73.82643872066991 40.85107480870453, -73.82641802339666 40.85110693778039, -73.82639748208666 40.8511388257549, -73.82637301486373 40.85118863753822, -73.82635479736022 40.85122572484826, -73.82633275986821 40.85127059206928, -73.82631010715271 40.851316709144584, -73.82629361915517 40.85136131816671, -73.82627867184571 40.85140176022264, -73.8262053809546 40.851633812290366, -73.82620384470701 40.8516335443305, -73.8261691933195 40.851748386047646, -73.82597077396696 40.85240597726865, -73.82587006622842 40.852739732630795, -73.82585193006636 40.8527998374773, -73.82583771301228 40.8528469550234, -73.82582934953669 40.852874673079185, -73.82583363414086 40.852950834240815, -73.82578897887521 40.853102472868805, -73.82570039316587 40.853320809459596, -73.82559865910483 40.85350625180429, -73.82544748598733 40.853706476493755, -73.82535142306358 40.853822815263726, -73.82528988969888 40.853897335131684, -73.82511323335987 40.854069540664575, -73.82496674954666 40.854198868814166, -73.824775077152 40.85437741302107, -73.82446693149546 40.85454765550272, -73.82420937408729 40.85465379163222, -73.82395648006663 40.854766731221346, -73.82385134457692 40.85481607353126, -73.82367541114064 40.85488550021063, -73.82350904961126 40.85495840275904, -73.82330558182706 40.855041210393225, -73.82306582147231 40.85517169262979, -73.82286887581635 40.85526858599669, -73.82245795257991 40.85553814357971, -73.82202918427616 40.85584569996811, -73.82162437126371 40.856110456261106, -73.82137369052946 40.856311907513515, -73.82066396766882 40.8569423101756, -73.8194692581199 40.85798091996602, -73.81946978219298 40.857978354382944, -73.81894711956878 40.85843866216537, -73.81847232512109 40.85885092867911, -73.81847538050405 40.85885261920773, -73.81810436688814 40.85917729356002, -73.81754168996935 40.859673158886395, -73.81754280284235 40.85967346411214, -73.8172403075261 40.85993680971781, -73.81711029758513 40.86008282020318, -73.81666158560317 40.86069898470271, -73.8166683740403 40.86069966005254, -73.81628323441304 40.861229417369636, -73.81590226129939 40.861020504731236, -73.81586426306104 40.860995964222084, -73.81579464628435 40.86094742824356, -73.81491790645558 40.86087342120475, -73.8139550996668 40.860560211531926, -73.81380318664345 40.86051079150439, -73.81380184878331 40.860510356208664, -73.81380308510028 40.860510627450985, -73.8128151058201 40.85891056961483, -73.81207888343215 40.85291752241426, -73.81489691586523 40.852161517252306, -73.81464773756785 40.85004720052607, -73.81466227795507 40.85003095286729, -73.81466279960051 40.850035686700195, -73.81467703364984 40.85001446512073)), ((-73.79501228257841 40.8822974251884, -73.7950224581619 40.8822791876482, -73.79502274752427 40.8822792313856, -73.79503285594214 40.882260457033716, -73.79504282449341 40.88224240642568, -73.79505274918202 40.88222434223149, -73.7950626323781 40.882206265355876, -73.79507247290086 40.882188173995765, -73.7950822695582 40.88217006995006, -73.79509202353944 40.882151952320335, -73.79510394755631 40.88213036895821, -73.79511591423615 40.882108799177864, -73.79512792594906 40.88208724388397, -73.79513997913847 40.882065702169704, -73.79515207736088 40.88204417494187, -73.79516421705974 40.88202266129361, -73.79517640179151 40.88200116213176, -73.79518862799964 40.881979676549506, -73.79520089924064 40.88195820545359, -73.79521321195512 40.88193674883772, -73.79522556851879 40.88191530580561, -73.7952379689287 40.881893877257745, -73.79525041080934 40.88187246409031, -73.79526289772538 40.8818510645087, -73.7952754261148 40.88182967940707, -73.79528573624381 40.88181201119009, -73.79529608548131 40.881794355648324, -73.79530647382454 40.88177671368227, -73.79531690127347 40.881759085291954, -73.7953273666444 40.881741469574735, -73.795337871121 40.881723867433195, -73.79534841351673 40.881706278865224, -73.79535899620727 40.881688702974515, -73.79536961681697 40.88167114065739, -73.79538027534302 40.88165359281426, -73.7953909729773 40.881636057646304, -73.79540170971715 40.881618536053935, -73.795412484376 40.8816010280351, -73.7954232981403 40.88158353359185, -73.79543414982079 40.88156605362258, -73.79544685705358 40.881545505372756, -73.79545960457604 40.8815249707002, -73.79547239119618 40.88150445140375, -73.79548521929244 40.88148394568665, -73.79549808648903 40.88146345444521, -73.7955109939697 40.88144297858191, -73.79552394173986 40.881422516295856, -73.7955369286076 40.88140206938584, -73.79554995576483 40.88138163605301, -73.79556302320597 40.881361218098334, -73.79557612974732 40.881340814619165, -73.79558927657253 40.88132042651815, -73.79560246249791 40.88130005289262, -73.79561568870992 40.881279693744695, -73.79562895520564 40.88125934997484, -73.79564226080144 40.88123902068047, -73.7956556054946 40.88121870676205, -73.79566899047417 40.88119840732113, -73.79568241573745 40.881178123258245, -73.79569587891145 40.881157854569175, -73.79570938237183 40.88113760035761, -73.79572292611309 40.88111736242451, -73.79573650895418 40.88109713896678, -73.79575013089243 40.88107693088489, -73.79575463628136 40.8810686687659, -73.79575910018538 40.88106039306602, -73.79576352141812 40.881052103783055, -73.79576789997682 40.88104380181761, -73.7957722358587 40.88103548807005, -73.79577652906934 40.88102716073949, -73.79578078079234 40.88101882072852, -73.79578498865496 40.88101046803293, -73.79578915384081 40.881002103555296, -73.79579327753915 40.88099372639722, -73.79579735737428 40.88098533745505, -73.79580139453276 40.88097693673087, -73.79580538901452 40.880968524224656, -73.7958093396331 40.88096009993434, -73.79581324757507 40.880951663861985, -73.7958171128376 40.880943216908115, -73.79582093423704 40.88093475817018, -73.79582471295994 40.88092628765025, -73.79582844781417 40.88091780714716, -73.79583213999183 40.88090931486215, -73.79583578830099 40.88090081259395, -73.79583939274434 40.88089229944217, -73.79584295450834 40.88088377540891, -73.79584647122022 40.880875240490006, -73.79584994524727 40.880866696490536, -73.79585337540861 40.88085814160752, -73.79585676288798 40.88084957674352, -73.79586010531243 40.88084100189432, -73.79586206022672 40.88083492885123, -73.79586397008119 40.880828847623974, -73.7958658336893 40.88082275821051, -73.7958676522376 40.880816660612865, -73.79586942453686 40.880810555729525, -73.79587115177628 40.88080444266205, -73.79587283276668 40.880798322308785, -73.79587446869171 40.8807921955724, -73.7958760583678 40.880786061550246, -73.79587760179488 40.8807799202424, -73.7958791001567 40.88077377255136, -73.79588055226401 40.88076761937556, -73.79588195812241 40.88076145891404, -73.79588331772634 40.88075529296772, -73.7958846310758 40.88074912153669, -73.79588589817082 40.880742944620884, -73.79588712020065 40.880736761321906, -73.79588829478685 40.880730573436594, -73.79588942311588 40.880724380966974, -73.7958905051878 40.88071818391308, -73.79589154100535 40.880711981374496, -73.795892530563 40.88070577515208, -73.79589347386354 40.88069956434541, -73.79589437090424 40.880693349854944, -73.7958952204986 40.88068713167864, -73.79589602501963 40.880680909820626, -73.79589678209435 40.880674684276734, -73.79589749172013 40.88066845594746, -73.79589815626974 40.88066222483699, -73.79589877337037 40.88065599094112, -73.79589934420845 40.88064975426197, -73.79589986759764 40.880643514797455, -73.7959003459052 40.88063727435268, -73.79590077676382 40.88063103112252, -73.79590116017077 40.88062478600745, -73.79590149731246 40.88061853900958, -73.79590178818344 40.88061229192996, -73.7959020316028 40.88060604296534, -73.79590222875417 40.880599793018426, -73.7959023796376 40.88059354208923, -73.79590248306387 40.88058729107609, -73.7959025402223 40.88058103908058, -73.79590254992078 40.880574787901686, -73.79590251335142 40.88056853574043, -73.79590242932223 40.88056228439576, -73.7959023002061 40.880556033871834, -73.79590212244642 40.88054978326186, -73.7959018995971 40.88054353437316, -73.79590162929074 40.88053728540052, -73.79590131151909 40.88053103904536, -73.79590094747408 40.88052479350886, -73.79590053715299 40.880518549691544, -73.79590008055587 40.88051230759331, -73.79589957649625 40.880506067212146, -73.79589902615783 40.880499829450564, -73.79589842835418 40.88049359430652, -73.7958977854582 40.88048736178418, -73.79589709391055 40.880481131877296, -73.79589635726785 40.88047490549255, -73.79589557434639 40.88046868172743, -73.79589474395429 40.880462462380805, -73.79589386728341 40.88045624565379, -73.79589294432834 40.88045003334736, -73.79589197508909 40.88044382546152, -73.79589095956833 40.88043762109574, -73.79588989657424 40.880431422048936, -73.79588878848236 40.8804252274248, -73.79588763291989 40.880419037219156, -73.79588643225694 40.88041285233667, -73.79588518412066 40.88040667277309, -73.79588389088389 40.8804004985327, -73.7958825513575 40.88039433051386, -73.79588116554423 40.88038816781606, -73.79587973344132 40.88038201133975, -73.79587825504883 40.880375861085, -73.79587673155315 40.88036971705386, -73.79587516176517 40.88036358014476, -73.79582305243076 40.88009667300043, -73.79582550091399 40.88009677008243, -73.79582335197657 40.88008914814141, -73.79582123746239 40.880081520858255, -73.79581915856059 40.88007388733464, -73.79581711289279 40.88006624936732, -73.79581478622963 40.88005739164029, -73.7958125058595 40.8800485267912, -73.79581027178243 40.88003965482009, -73.79580808518195 40.880030776629425, -73.7958059448717 40.88002189221723, -73.79580385085445 40.88001300068296, -73.79580180312739 40.8800041029271, -73.79579980287414 40.879995199852246, -73.79579784891376 40.87998628965536, -73.795795941238 40.87997737503784, -73.79579408104152 40.87996845330037, -73.79579226712964 40.879959527142304, -73.79579050069417 40.879950594764786, -73.7957887805433 40.87994165796668, -73.79578710668244 40.879932714946975, -73.79578548147887 40.879923767510945, -73.79578390137338 40.879914815652185, -73.79578236992793 40.87990585847657, -73.79578088358053 40.87989689687824, -73.7957794458903 40.87988793086357, -73.79577805448451 40.87987896042829, -73.79577671054672 40.879869986475065, -73.79577541289329 40.879861008101194, -73.79577416270784 40.879852026209406, -73.79577295999319 40.87984303989907, -73.79577180474642 40.8798340500708, -73.79577069577836 40.87982505762292, -73.79576963427827 40.87981606165706, -73.79576862024608 40.87980706217318, -73.79576765249259 40.879798060069746, -73.79576673339328 40.87978905445039, -73.79576586056994 40.87978004711198, -73.79576503521436 40.879771036255526, -73.79576425732111 40.87976202368209, -73.79576352570639 40.87975300848906, -73.79576284274032 40.87974399158116, -73.79576220605281 40.879734972053605, -73.79576161682749 40.87972595080907, -73.79576107625078 40.87971692784963, -73.79576058194701 40.87970790407156, -73.79576013392173 40.87969887767395, -73.79575973453942 40.87968985136238, -73.79575938262198 40.87968082243331, -73.79575907697468 40.879671793586084, -73.79575881997582 40.879662763024015, -73.795758609247 40.879653732543744, -73.7957584471639 40.87964470124912, -73.79575833135084 40.87963567003632, -73.79575826299701 40.879626638007025, -73.79575824210235 40.87961760516123, -73.79575826866129 40.879608573299855, -73.79575834267665 40.87959954152247, -73.79575846414838 40.879590509829036, -73.7957586330764 40.879581478219585, -73.79575884827165 40.879572447592466, -73.79575911210677 40.87956341795192, -73.79575942339824 40.87955438839534, -73.79575978095399 40.879545360721586, -73.79576018596327 40.87953633403227, -73.79576063961237 40.87952730832952, -73.79576113952855 40.87951828360912, -73.79576168689259 40.87950926167412, -73.79576228171003 40.87950024072362, -73.79576292397807 40.87949122165803, -73.79576361251033 40.87948220447523, -73.79576434967963 40.879473189179485, -73.79576513311027 40.87946417666706, -73.7957659639887 40.87945516694005, -73.79576684231763 40.87944615909798, -73.79576776809155 40.879437154941755, -73.79576874131595 40.87942815267052, -73.79576976079883 40.879419154083024, -73.79577082891585 40.87941015828309, -73.79577194329413 40.879401165266415, -73.79577310392808 40.87939217683404, -73.7957743131961 40.87938319118918, -73.79577556872253 40.87937420922803, -73.795776871691 40.87936523185333, -73.79577822210705 40.87935625726401, -73.79577961877594 40.87934728815943, -73.7957810628896 40.87933832274076, -73.79578255325885 40.8793293619063, -73.79578409225921 40.87932040475988, -73.79578567632593 40.87931145309605, -73.79578730901824 40.879302506921185, -73.7957889867824 40.879293564428, -73.79579071316928 40.87928462832423, -73.79579248581166 40.879275696804676, -73.79579430470672 40.87926677076988, -73.79579617104085 40.87925785022194, -73.79579806800498 40.87925015889624, -73.79580001003269 40.87924247395361, -73.7958019994967 40.879234795398276, -73.79580403639422 40.879227124130765, -73.7958061183497 40.87921946104734, -73.79580824655508 40.87921180434911, -73.79581042219395 40.87920415493867, -73.79581264289071 40.87919651371231, -73.79581491102098 40.87918887977373, -73.79581722420629 40.87918125491969, -73.79581958363866 40.87917363735135, -73.79582199050172 40.87916602797126, -73.79582444241979 40.879158427675684, -73.79582693939575 40.8791508355642, -73.79582948379951 40.87914325254143, -73.79583207326102 40.879135677702735, -73.79583470896121 40.87912811285115, -73.79583738971641 40.87912055708403, -73.79584011671297 40.87911301040361, -73.79584288876175 40.879105473708194, -73.79584570705185 40.87909794609936, -73.7958485703914 40.87909042937598, -73.79585147997224 40.87908292173926, -73.79585443460248 40.87907542498803, -73.79585743428483 40.87906793822174, -73.79586047901655 40.87906046234098, -73.795863569984 40.87905299734775, -73.79586670481712 40.879045542337394, -73.79586988588319 40.879038099115085, -73.79587311081222 40.879030666776124, -73.79587638197684 40.87902324532476, -73.79587969700162 40.879015835657185, -73.79588305707291 40.879008437775546, -73.79588646218785 40.87900105258033, -73.79588991235205 40.87899367827055, -73.79589340637636 40.878986315744584, -73.79589694425789 40.87897896590292, -73.79590052718311 40.878971628747635, -73.79590415515194 40.87896430427874, -73.7959078269808 40.87895699159368, -73.7959115426641 40.87894969249336, -73.79591530338828 40.878942406979945, -73.79591910678599 40.878935133248184, -73.7959229552218 40.87892787400376, -73.79592684751199 40.878920628344076, -73.79593078365937 40.878913395368684, -73.79593476247199 40.87890617687639, -73.79593878632535 40.878898971970955, -73.79594285284394 40.87889178154865, -73.79594696321685 40.87888460471105, -73.79595111625223 40.87887744325704, -73.7959553131419 40.87887029538778, -73.79595955388038 40.87886316290418, -73.79596383728402 40.87885604490369, -73.79596816335003 40.87884894228676, -73.79597253208114 40.87884185415293, -73.79597694465828 40.87883478230525, -73.7959813987141 40.87882772493855, -73.79598589661589 40.87882068385799, -73.79599043718001 40.878813658160965, -73.79599501921726 40.8788066487459, -73.79599964391687 40.8787996547144, -73.79600431127596 40.87879267696687, -73.79600902010539 40.87878571640177, -73.79601377159435 40.87877877212067, -73.7960185657428 40.87877184412361, -73.796023400178 40.87876493240632, -73.79602827726711 40.878758038774016, -73.79603319582928 40.878751161423594, -73.79603815586178 40.87874430125554, -73.79604315855097 40.87873745827195, -73.79604820152129 40.878730633369166, -73.79605328595915 40.87872382654918, -73.79605841068089 40.878717036909464, -73.79606357687284 40.87871026445208, -73.79606878452948 40.87870351097799, -73.79607403365371 40.87869677558676, -73.7960793218698 40.87869005917463, -73.79608465155334 40.878683360845265, -73.79609002151798 40.878676680596655, -73.79612596730234 40.87863365387703, -73.79679886658863 40.87782819465943, -73.79680319518503 40.8778291414915, -73.79680928489114 40.87782099107578, -73.79681541251027 40.87781285693529, -73.79682158041247 40.877804739974685, -73.79682778741133 40.8777966401919, -73.7968340323205 40.87778855758476, -73.79684031750995 40.877780493058054, -73.79684664060969 40.87777244570699, -73.79685300280602 40.87776441553368, -73.79685940409628 40.8777564034386, -73.796865843294 40.87774840941971, -73.79686711499868 40.877746499918565, -73.79687914025487 40.877732106045634, -73.79687917478908 40.87773206378337, -73.79687921289072 40.877732018825945, -73.79687615701255 40.87773310394043, -73.79688077240932 40.877726381804074, -73.79688543046521 40.87771967595136, -73.79689012880466 40.877712987278635, -73.79689486861685 40.87770631488755, -73.79689964989895 40.8776996596785, -73.7969044714646 40.87769302164946, -73.79690933450296 40.87768639990204, -73.79691423900843 40.87767979623717, -73.79691918379474 40.877673210652716, -73.79692416886452 40.87766664224824, -73.7969291954015 40.87766009192636, -73.79693426103559 40.877653558782306, -73.796939368134 40.87764704462126, -73.79694451551322 40.87764054854065, -73.79694970198679 40.877634070538406, -73.79695492873829 40.87762761151703, -73.79696019577052 40.87762117057612, -73.79696550189438 40.87761474861395, -73.79697084829341 40.877608346533215, -73.79697623378678 40.87760196253076, -73.79698165955809 40.87759559750921, -73.79698712322909 40.877589253265356, -73.79699262718077 40.87758292710181, -73.7969981702185 40.8775766217181, -73.79700375116143 40.877570335311034, -73.7970093711931 40.87756406878319, -73.79701503031077 40.8775578230351, -73.79702072733092 40.877551597164164, -73.79702646343705 40.87754539207295, -73.79703223744556 40.87753920685886, -73.79703805054008 40.87753304242453, -73.7970439003479 40.87752689876567, -73.7970497880553 40.877520775884435, -73.79705571484872 40.877514673782905, -73.79706167835262 40.87750859335737, -73.7970676797534 40.87750253460992, -73.79707371786738 40.877496496637946, -73.79707979387825 40.87749048034403, -73.79708590659959 40.877484485726114, -73.79709205603137 40.87747851278417, -73.7970982433573 40.87747256242074, -73.7971044662073 40.87746663373119, -73.797110725765 40.87746072761807, -73.79711702203319 40.8774548431809, -73.79712335500909 40.877448981320164, -73.79712972468992 40.877443142936286, -73.79713612870847 40.87743732622422, -73.79714256943197 40.877431532988986, -73.79714904567679 40.8774257623281, -73.79715555862653 40.8774200151441, -73.79716210590848 40.877414291432814, -73.79716868871178 40.87740859029579, -73.79717530584453 40.87740291353196, -73.7971819596822 40.877397260244976, -73.79718864666573 40.87739163042859, -73.79719536916777 40.877386024086945, -73.79720212718568 40.87738044212057, -73.79720891834658 40.877374884525246, -73.79721574383699 40.87736935130306, -73.79722260365956 40.877363841553496, -73.79722949780884 40.87735835707757, -73.79723642510116 40.87735289697265, -73.79724338672298 40.87734746124091, -73.79725038148507 40.87734205078062, -73.79725741057385 40.87733666559394, -73.79726447161934 40.8773313047762, -73.79727156580518 40.87732596922995, -73.79727869312856 40.87732065985565, -73.797285853595 40.877315374852344, -73.79729304601268 40.87731011601894, -73.79730027157068 40.877304882457004, -73.79730752907983 40.87729967506491, -73.79731481854029 40.87729449384268, -73.79732213995463 40.87728933788983, -73.79732949213385 40.87728420810473, -73.79733687744788 40.87727910539199, -73.7973442935295 40.87727402794659, -73.79735174155961 40.87726897757147, -73.79735922035181 40.877263954264556, -73.79736672991163 40.87725895622493, -73.79737427023085 40.87725398615399, -73.7973818413121 40.87724904315123, -73.79738944315824 40.87724412631618, -73.79739707458016 40.87723923654726, -73.79740473676146 40.877234374747026, -73.7974124285185 40.87722954001288, -73.79742014985125 40.87722473234482, -73.79742790194342 40.8772199526454, -73.79743568242502 40.87721520000999, -73.79744349247686 40.87721047624163, -73.79745133091811 40.87720577953722, -73.79745920011878 40.877201110801465, -73.79746709651974 40.87719647002813, -73.79747581689843 40.8771904520504, -73.79748456567701 40.87718445753459, -73.79749334167188 40.87717848557814, -73.79750214487758 40.877172537981984, -73.79751097529957 40.877166612945125, -73.79751983293512 40.87716071136808, -73.79752871778143 40.877154834151305, -73.7975376298441 40.877148979493846, -73.79754656793119 40.87714314919454, -73.79755553441824 40.877137342357116, -73.79756452574333 40.8771315598758, -73.79757354547112 40.87712579995582, -73.79758259003425 40.87712006529238, -73.79759166181096 40.87711435408871, -73.79759832408064 40.87711058641785, -73.79760501473737 40.87710684671155, -73.79761173259205 40.87710313586826, -73.797618478831 40.877099453889976, -73.7976252498979 40.87709579987007, -73.79763204934909 40.877092174715166, -73.79763887480918 40.877088579321644, -73.79764572746994 40.87708501189057, -73.7976526049532 40.8770814742188, -73.79765950963173 40.87707796631044, -73.79766643913543 40.877074487260884, -73.79767339465077 40.87707103707217, -73.79768037617227 40.87706761754531, -73.79768738133261 40.877064226875106, -73.79769441249913 40.877060866866714, -73.79770146849093 40.87705753571709, -73.79770854811613 40.8770542352251, -73.79771565137754 40.877050964490294, -73.79772277945877 40.87704772441517, -73.79772993236251 40.87704451409928, -73.79773710771336 40.87704133443896, -73.79774430551129 40.87703818543419, -73.79775152812907 40.87703506708907, -73.7977587720076 40.877031979397444, -73.79776603951684 40.8770289232639, -73.79777332947599 40.877025896885435, -73.79778064187948 40.87702290206291, -73.79778797554378 40.87701993789387, -73.79779533046617 40.87701700527877, -73.79780270783291 40.87701410421958, -73.79781010646045 40.87701123381389, -73.79789489662606 40.8769810808532, -73.7982126574627 40.876868077030224, -73.79973262624412 40.87635063780552, -73.79997772734153 40.876267195759524, -73.80000517893261 40.87625875171671, -73.80003264586074 40.876250333808244, -73.8000601257505 40.876241942930356, -73.80008762097467 40.87623357908715, -73.80011512916325 40.876225241374115, -73.80014550133448 40.87621607205919, -73.80017589001152 40.87620693428205, -73.80020629637534 40.8761978298456, -73.80023671805597 40.8761887578453, -73.80026715742615 40.87617971828525, -73.80029761448593 40.87617071116539, -73.80032808686263 40.87616173648162, -73.800358576929 40.87615279423809, -73.80038908231235 40.876143884430576, -73.80142751688153 40.87586793961404, -73.80142778346493 40.875868452451435, -73.80146763546247 40.875857278400524, -73.8021486449346 40.875666332934934, -73.80257616109027 40.87552854543006, -73.80298611881082 40.87535031958464, -73.80298825868591 40.87535241687675, -73.80307829393027 40.875310246619705, -73.80471824047964 40.87454211309464, -73.80611337873759 40.87391222785133, -73.80612358992796 40.87390795957457, -73.8061338235702 40.87390372105083, -73.8061440784728 40.87389951407902, -73.80615435701105 40.87389533776266, -73.8061646556233 40.87389119299626, -73.80617497668491 40.87388707888332, -73.80618531900694 40.8738829963223, -73.80619568258936 40.87387894531321, -73.8062060674348 40.87387492495556, -73.80621647354073 40.87387093614983, -73.8062268997234 40.87386697799356, -73.80623734716393 40.873863052289636, -73.80624781467856 40.873859158135666, -73.80625830226998 40.87385529463107, -73.8062688111193 40.87385146357886, -73.80627933885651 40.87384766407455, -73.80628988666793 40.873843896120164, -73.80630045336457 40.8738401606141, -73.8063110413218 40.87383645665995, -73.80632164698068 40.873832784251675, -73.80633227271117 40.87382914429375, -73.8063429161433 40.87382553588172, -73.80635357964445 40.8738219608205, -73.80636426203621 40.87381841640665, -73.80637496212438 40.87381490533964, -73.80638567991429 40.87381142581847, -73.80639641658698 40.87380797964615, -73.80640717096136 40.873804565019654, -73.80641794422118 40.87380118284149, -73.80642873399124 40.87379783400813, -73.80643954146299 40.873794516720636, -73.80645036544502 40.873791232777904, -73.80646120831251 40.87378798128354, -73.8064720665066 40.873784762231445, -73.80648294239985 40.87378157562567, -73.80649383361707 40.873778422362705, -73.80650474253088 40.873775302446504, -73.80651566677138 40.873772214972625, -73.80652660752475 40.87376915994303, -73.80653756478587 40.8737661391587, -73.80654853737367 40.87376315081666, -73.80655952528816 40.87376019491691, -73.80657052852406 40.87375727326042, -73.80658154708672 40.87375438404622, -73.80659258097344 40.873751528174765, -73.806603628998 40.87374870564408, -73.80661469234668 40.873745916456215, -73.80662576983057 40.87374316150951, -73.80663686264126 40.87374043900513, -73.80664796840354 40.873737749839464, -73.80665908830105 40.87373509491507, -73.80667022233649 40.87373247333141, -73.80668136932353 40.873729885086505, -73.8066925304485 40.873727330182334, -73.80670370570881 40.873724809519416, -73.80671489273445 40.87372232219319, -73.80672609270918 40.87371986910626, -73.8067373056356 40.87371744935803, -73.80674853151108 40.87371506384901, -73.80675977033565 40.87371271257921, -73.80677101973941 40.87371039464419, -73.80678228209487 40.87370811004786, -73.8067935562106 40.87370586058927, -73.80680484209176 40.87370364446738, -73.80681613973586 40.87370146258269, -73.8068274491454 40.87369931403475, -73.80683876912896 40.87369720062251, -73.80685009968916 40.873695121445465, -73.80686144082863 40.873693075603164, -73.80687279372839 40.87369106489854, -73.80688415602117 40.873689087526635, -73.8068945179205 40.87368640789838, -73.80690489396049 40.87368376071042, -73.8069152841412 40.873681145962905, -73.80692568846257 40.87367856365574, -73.80693610692468 40.8736760137889, -73.80694653952492 40.87367349726292, -73.80695698507961 40.87367101317531, -73.80696744477238 40.87366856242857, -73.8069779174197 40.873666144120165, -73.80698840302145 40.873663758250125, -73.80699890157514 40.873661405718885, -73.80700941308066 40.87365908652656, -73.80701993754074 40.87365679977252, -73.80703047376645 40.87365454635535, -73.8070410217604 40.87365232537455, -73.80705158151738 40.87365013863107, -73.807062154229 40.87364798432593, -73.80707273870624 40.87364586335761, -73.8070833337629 40.873643775724155, -73.80709394058788 40.87364172052703, -73.80710455798967 40.87363969956523, -73.80711518597087 40.87363771193826, -73.80712582572043 40.87363575674768, -73.80713647604688 40.87363383579233, -73.80714713576653 40.873631948169916, -73.80715780606563 40.87363009388227, -73.80716848694428 40.873628272929466, -73.80717917721351 40.87362648621003, -73.80718987687862 40.87362473192289, -73.80720058593437 40.87362301186908, -73.80721130556708 40.87362132605059, -73.80722203340939 40.873619672662436, -73.80723276945606 40.87361805350562, -73.80724351489344 40.87361646858214, -73.80725426853785 40.87361491698946, -73.80726503157562 40.873613398729645, -73.80727580163156 40.87361191469913, -73.80728657989457 40.87361046399947, -73.80729736636205 40.87360904753111, -73.80731254301928 40.87360651998356, -73.8073277102841 40.87360395819973, -73.80734286578647 40.87360136127514, -73.8073580118964 40.87359873011424, -73.80737314743011 40.87359606381461, -73.80738827238501 40.87359336327672, -73.80740338676108 40.87359062850056, -73.8074184905609 40.873587858585616, -73.80743358259294 40.87358505533101, -73.80744866404864 40.87358221693759, -73.80746373373911 40.87357934430403, -73.80747879166694 40.873576436529696, -73.80749383901322 40.87357349541766, -73.80750887341048 40.8735705191629, -73.80752389603983 40.87356750956847, -73.80753890809277 40.87356446483531, -73.8075539071914 40.873561386760464, -73.80756889334097 40.873558273542955, -73.80758386772253 40.87355512698574, -73.80759883034126 40.8735519452879, -73.80761377881933 40.87354873024637, -73.80762871553198 40.87354548096468, -73.80764363929279 40.873542197440834, -73.80765854891547 40.87353887967293, -73.80767344677268 40.87353552766477, -73.8076883304891 40.87353214231307, -73.80770320006734 40.87352872271721, -73.80771805669107 40.873525269779755, -73.80773290036547 40.873521781699715, -73.80774772871015 40.87351826117456, -73.8077625441055 40.87351470550683, -73.80777734535735 40.873511117395964, -73.80779213128719 40.87350749413856, -73.80780690425976 40.87350383844007, -73.80782166190775 40.873500148495545, -73.80783640423107 40.87349642430498, -73.80785113241338 40.873492666770865, -73.80786584645472 40.8734888758932, -73.80788054398239 40.873485051668034, -73.80788343581465 40.873486005598885, -73.80790501833216 40.87347860077739, -73.80798290536163 40.873451875085436, -73.80814189611141 40.873397322189206, -73.80815153912366 40.873394604332795, -73.80816116681193 40.873391852231514, -73.80817077680108 40.87338906678181, -73.8081803702773 40.873386247985735, -73.80818994605436 40.87338339584133, -73.80819950531847 40.87338051035055, -73.80820904569711 40.873377591509445, -73.80821856956284 40.87337463932199, -73.80822807454041 40.873371654684696, -73.80823756182133 40.87336863579863, -73.80824703140038 40.87336558446471, -73.80825648209388 40.87336249978049, -73.80826591271288 40.873359382644495, -73.80827532563004 40.873356233060676, -73.80828471966151 40.873353050126575, -73.80829409362113 40.87334983384024, -73.80830344750363 40.87334658600266, -73.80831278250044 40.87334330481477, -73.80832209742016 40.87333999207564, -73.80833139226786 40.87333664598431, -73.80834066704107 40.873333267441225, -73.80834992055077 40.87332985734495, -73.80835915398588 40.87332641479691, -73.80836836616007 40.8733229397952, -73.80837755707337 40.87331943233981, -73.80838672672319 40.87331589333123, -73.80839587510945 40.87331232276945, -73.80840500104851 40.87330871975207, -73.80841410572403 40.8733050851815, -73.80842318794971 40.87330141905574, -73.80843224891181 40.873297721376865, -73.80844128623774 40.873293992140894, -73.80845030111382 40.87329023134972, -73.80845929353997 40.8732864390035, -73.80846826351626 40.87328261510214, -73.80847720866747 40.873278760542235, -73.80848613136877 40.873274874427196, -73.80849503043125 40.8732709576556, -73.80850390585749 40.87326700932692, -73.80851275645864 40.8732630303397, -73.80852158342095 40.87325902069591, -73.80853038674444 40.873254980395565, -73.80853916524273 40.873250909436706, -73.8085479177296 40.873246807817374, -73.8085566465776 40.87324267554146, -73.80856534941418 40.87323851260508, -73.80857402742295 40.873234319910715, -73.8085826806039 40.8732300974583, -73.8085913077734 40.873225844345434, -73.80859990893144 40.87322156057213, -73.80860848407278 40.87321724793935, -73.8086170332026 40.87321290464612, -73.80862555513204 40.873208531591004, -73.80863405104472 40.87320412967637, -73.80864252094595 40.87319969710136, -73.80865096364413 40.87319523566493, -73.80865937913931 40.87319074536707, -73.80866776624774 40.873186225305396, -73.80867612734207 40.8731816754838, -73.80868446004702 40.873177096798806, -73.80869276554897 40.87317248925246, -73.80870104265897 40.873167853743226, -73.8087092913822 40.87316318847018, -73.80871751290239 40.87315849433579, -73.80872570484438 40.87315377223656, -73.80873386839959 40.87314902037355, -73.80874200356023 40.87314424144819, -73.80875010914522 40.87313943365755, -73.80875818633827 40.87313459790412, -73.80876623276934 40.87312973328343, -73.80877425080587 40.87312484160044, -73.80878223926412 40.873119921952686, -73.80879019695777 40.87311497433817, -73.8087981250732 40.873109998758935, -73.80880602361036 40.873104995214945, -73.8088138913803 40.873099964604755, -73.80882172838311 40.87309490692832, -73.80882953461875 40.873089822185705, -73.80883731008984 40.87308470947635, -73.8088450547911 40.87307957060135, -73.80885276872785 40.873074403759624, -73.80886045070847 40.87306921075025, -73.80886810073567 40.87306399067277, -73.80887571999304 40.873058744429564, -73.808883307297 40.87305347111829, -73.80889086145855 40.873048171637336, -73.80889838485038 40.87304284599075, -73.80890587509982 40.87303749417456, -73.8089133333932 40.87303211619076, -73.8089207597305 40.87302671203937, -73.80892815173655 40.873021282616904, -73.80893551178653 40.87301582702685, -73.80894283869152 40.87301034616771, -73.80895013245164 40.873004840039535, -73.80895739188303 40.872999307739825, -73.80896461816688 40.87299375107156, -73.80897181130841 40.87298816823377, -73.80897897011609 40.872982561025445, -73.80898609577625 40.87297692944857, -73.80899318592145 40.872971271698276, -73.80900024291651 40.872965590479886, -73.8090072655803 40.872959883990575, -73.80901425272144 40.872954154029244, -73.80902120553134 40.87294839879697, -73.8090281228211 40.87294261919225, -73.80903500577443 40.872936816117544, -73.80904185320509 40.872930989570925, -73.80904866630195 40.87292513865382, -73.80905544268978 40.872919264262855, -73.80906218355751 40.87291336549945, -73.80906888890003 40.87290744416463, -73.8090755587198 40.8729014993579, -73.80908177112431 40.87289744752484, -73.80908635246438 40.87289294995192, -73.80909089827203 40.8728884325092, -73.80909540854982 40.87288389429631, -73.8090998844814 40.8728793362156, -73.80910446290387 40.87287461441508, -73.80910900461272 40.87286987094185, -73.80911350723026 40.87286510759296, -73.8091179731316 40.872860323471926, -73.80912239994417 40.87285551857479, -73.80912678766799 40.87285069290156, -73.80913113748423 40.87284584825516, -73.8091354482117 40.87284098283268, -73.80913971984786 40.87283609753456, -73.80914395239012 40.87283119326137, -73.80914814584105 40.87282626911255, -73.80915230019555 40.872821326889124, -73.8091564154613 40.87281636388967, -73.80916048925543 40.87281138371214, -73.80916452514454 40.87280638366098, -73.80916851956465 40.8728013655313, -73.80917247488831 40.87279632932703, -73.80917638874293 40.872791275044236, -73.80918026350375 40.8727862017864, -73.80918409679035 40.872781112250976, -73.80918788860798 40.87277600463711, -73.80919164132914 40.872770878948614, -73.80919535138989 40.872765736980654, -73.80919902116538 40.872760577836665, -73.8092026494693 40.87275540151464, -73.80920623748537 40.872750208917104, -73.80920978284101 40.872745000040055, -73.80921328553889 40.872739773983106, -73.80921674794371 40.87273453345155, -73.80922016769071 40.872729275740085, -73.80922354596106 40.87272400265156, -73.80922688156586 40.872718715084595, -73.8092301756966 40.87271341124011, -73.80923342597548 40.872708092915246, -73.80923663477773 40.872702759213375, -73.80923980091451 40.872697411032995, -73.80924292319945 40.87269204837223, -73.8092460040052 40.87268667123493, -73.80924904095654 40.87268128051777, -73.80948915937189 40.87231492101862, -73.81082021409287 40.87041672850617, -73.81125420183932 40.86971759951369, -73.81125781951627 40.869715216429285, -73.81126146796088 40.869712859509356, -73.81126514480074 40.86971052874997, -73.81126885121695 40.869708225954035, -73.8112725860284 40.86970594931866, -73.81127635041877 40.869703699746246, -73.81128014201305 40.86970147813342, -73.81128396199995 40.869699283581646, -73.8112878091908 40.8696971169894, -73.81129168239929 40.869694978354794, -73.8112955839954 40.86969286858217, -73.81129951160915 40.86969078676721, -73.81130346405439 40.869688732907896, -73.81130744369837 40.86968670880913, -73.81131144817378 40.86968471266603, -73.81131547747557 40.8696827462796, -73.81131953041746 40.86968080964786, -73.81132360937453 40.86967890187418, -73.81132771078543 40.869677023853306, -73.81133183583644 40.86967517558708, -73.81133598452503 40.86967335797609, -73.81134015567008 40.869671569217324, -73.81134434926393 40.869669812012305, -73.81134856412542 40.869668084558064, -73.81135280143575 40.869666388657556, -73.81135705882744 40.869664722505924, -73.81136133866801 40.86966308790801, -73.81136563739865 40.86966148485798, -73.81136995620818 40.86965991245728, -73.8113742950941 40.869658371606434, -73.81137865287012 40.869656862303444, -73.81138302953629 40.86965538454833, -73.81138742509258 40.869653938341166, -73.8113918383502 40.86965252458033, -73.81139626931176 40.86965114236553, -73.81140071678588 40.869649793495626, -73.81140518196398 40.869648476171676, -73.81140966365717 40.86964719129225, -73.81141416067925 40.86964593885535, -73.8114186730303 40.86964471886096, -73.81142320070768 40.86964353220964, -73.81142774371398 40.8696423780008, -73.81143229967425 40.869641257131114, -73.81143687096092 40.86964016960448, -73.81144145520145 40.86963911541693, -73.81144605239855 40.869638093668115, -73.81145065186575 40.86963710794237, -73.81145526310074 40.869636155553856, -73.81145988728966 40.86963523650449, -73.81146452205755 40.86963435169085, -73.81146916740946 40.86963349931196, -73.81147382334034 40.86963268116883, -73.81147848985275 40.86963189636099, -73.81148316575788 40.8696311457869, -73.81148785105579 40.86963042944662, -73.81149254456271 40.86962974643772, -73.81149724746248 40.86962909766263, -73.81150195738246 40.86962848311745, -73.81150667432537 40.86962790190168, -73.81151139947225 40.86962735581829, -73.81151199998915 40.86962725684475, -73.81151261218965 40.86962722092462, -73.81151734552009 40.869626717177375, -73.81152208468212 40.86962624855864, -73.81152682968079 40.86962581326735, -73.81153157932476 40.86962541310261, -73.81153633361917 40.86962504626345, -73.81154109374519 40.86962471455272, -73.81154585614406 40.86962441796463, -73.81155062319345 40.86962415470213, -73.81155539370192 40.869623926564174, -73.81156016529967 40.869623732646474, -73.81156494035655 40.86962357385337, -73.81156971650266 40.869623449280475, -73.81157449492423 40.86962335892973, -73.81157927324634 40.86962330369775, -73.81164663235866 40.86962630964334, -73.81171283196122 40.86963621681883, -73.81177665313413 40.86965284404026, -73.81257653532178 40.87000196587679, -73.81263148780559 40.87002227653323, -73.81209414475924 40.87091440749605, -73.81234189098524 40.871034898248006, -73.80382875279862 40.88556432727793, -73.79455803727743 40.88303240789472, -73.79456996715746 40.88301479395591, -73.79458185555754 40.88299716283268, -73.79459370128573 40.882979516323935, -73.79460550553121 40.8829618535313, -73.79461726710768 40.88294417445269, -73.79462898720146 40.88292647909025, -73.7946406634398 40.88290876743974, -73.79465229938198 40.88289103950749, -73.79466389146594 40.88287329618764, -73.79467544206742 40.88285553658405, -73.79468694999716 40.882837761595, -73.79469841525798 40.88281997032008, -73.79470983784711 40.882802163659754, -73.79472121776462 40.88278434161405, -73.79473255619975 40.882766503284614, -73.79474385077681 40.88274864956769, -73.79475510386878 40.88273078046751, -73.79476631428918 40.88271289598202, -73.79477748085162 40.882694996109095, -73.79478860592903 40.882677080852964, -73.79479968714851 40.882659150209435, -73.79481072569655 40.88264120418062, -73.79482172157046 40.88262324366701, -73.79483267477289 40.882605267768156, -73.79484358530404 40.882587276483996, -73.79485445316105 40.88256927071513, -73.79486527716031 40.882551249558944, -73.79487605848553 40.882533213918, -73.79488679595025 40.882515163790224, -73.79489749193024 40.88249709827941, -73.79490814404976 40.88247901828176, -73.79491875230893 40.88246092379734, -73.79492931789414 40.88244281482819, -73.7949398408055 40.88242469137444, -73.79495031985657 40.88240655343395, -73.79496075504733 40.88238840100666, -73.79497114756425 40.882370234094765, -73.794981496221 40.88235205269614, -73.79499180220121 40.88233385771346, -73.79500206432127 40.88231564824402, -73.79501228257841 40.8822974251884)), ((-73.8191502403194 40.88575615268422, -73.81700462850003 40.88627431991866, -73.81572729554061 40.88652340585495, -73.8157035532533 40.886476622727336, -73.81545571299836 40.88650001852238, -73.81545879515917 40.88648479890337, -73.81546291459073 40.886483172004674, -73.8154959136754 40.88630779172626, -73.8155144277383 40.88622336186585, -73.81551180558768 40.886223329759616, -73.81551257513208 40.88621924007344, -73.81552394364532 40.88616310562387, -73.81552313679913 40.88616310703579, -73.81556668510451 40.88593166210352, -73.81568309322495 40.885479675255446, -73.815800353952 40.88506754971734, -73.81591718550587 40.884635492843955, -73.81602496333228 40.884271329901544, -73.81608067515882 40.88410800890768, -73.81608448745204 40.88410712169818, -73.81706320399653 40.88128423947292, -73.81706417023726 40.88128406721015, -73.81808795626846 40.87831691871051, -73.81808697753817 40.87831690275998, -73.81850103681928 40.87706091663713, -73.81854803971069 40.8768743902579, -73.81858716773372 40.876686819514156, -73.81861838009392 40.876498396153856, -73.818641645489 40.876309311938314, -73.8186569385472 40.876119759536984, -73.81866424575608 40.875929933437384, -73.81866355954043 40.87574002633376, -73.81866295653556 40.87574145626404, -73.81866931800118 40.87546164544841, -73.81867012326622 40.87500324079239, -73.81867120831939 40.875002967847955, -73.81868666198062 40.87449291336976, -73.81870198125141 40.87425003844296, -73.81871108843725 40.874038211636986, -73.8187130215795 40.87403841458252, -73.81872595799871 40.8738853759554, -73.81873015041647 40.873835773657724, -73.81877110939708 40.87335120966758, -73.81878145648761 40.87321404348654, -73.81878182195771 40.87321401074234, -73.8188009337556 40.87301619771642, -73.81891454915082 40.87299744055567, -73.81902596728854 40.87297220801617, -73.81913454951945 40.872940644082185, -73.81923967014671 40.872902929680535, -73.8193407282897 40.87285928269894, -73.81943714315167 40.87280995347592, -73.81952835995413 40.872755223909195, -73.81961385586636 40.87269540836519, -73.81969314119651 40.872630851879535, -73.81976575940926 40.87256192385313, -73.81983129305186 40.87248901986224, -73.81988936732029 40.87241255896217, -73.81993964888478 40.87233297918252, -73.81998184825962 40.8722507384311, -73.82001572337549 40.87216630909636, -73.82004107958913 40.87208017444519, -73.82005777323842 40.87199282952843, -73.8200657057225 40.87190477666964, -73.82006506484782 40.87190444338948, -73.82007010864865 40.87180721363263, -73.82006587108238 40.87170996129781, -73.82005237334725 40.87161319699486, -73.8200296888459 40.871517427810964, -73.81999793369957 40.87142315549486, -73.81995727743032 40.87133087377215, -73.81990792991154 40.87124106832524, -73.8198501520678 40.871154207805304, -73.81980673116205 40.871093380334344, -73.819770228453 40.871029988249504, -73.81974090130355 40.87096448400539, -73.81971896195667 40.87089733439298, -73.81970456448936 40.87082901961842, -73.81969781313728 40.870760026112265, -73.81969875636612 40.87069084561922, -73.81970738569402 40.870621972495, -73.81972364045176 40.87055389831095, -73.81972294883217 40.87055347309955, -73.81972860984246 40.8705367697437, -73.81973019412624 40.87053741066631, -73.81976631692339 40.8704590028677, -73.81980764678042 40.87038209169839, -73.81985407756702 40.8703068759956, -73.81990548892963 40.87023355097177, -73.81998288375199 40.87013129948753, -73.8218431493413 40.87104924131796, -73.82197734579235 40.87480338179787, -73.8207096855444 40.87925192975978, -73.82054922282826 40.87990456357671, -73.82041844464992 40.88033684958744, -73.82016681512803 40.88181103753984, -73.81993942049442 40.88304241870533, -73.81993804531973 40.88304331254573, -73.81987219857382 40.88308609825437, -73.81981992157372 40.8831069665148, -73.81976191260438 40.88312085422055, -73.81972393493109 40.883140429153386, -73.8196812887415 40.88315333136611, -73.81960843671311 40.88316420798419, -73.81956979011676 40.88316967477195, -73.81951199336805 40.88318489270496, -73.81948361729923 40.88319590001968, -73.81946817345941 40.88320311939143, -73.81945614486425 40.88320882227841, -73.81944374737813 40.88321404912927, -73.81927017848318 40.88325941151469, -73.8191682663534 40.883288838329335, -73.81904321143512 40.8833297343102, -73.81901172476134 40.883349713598996, -73.81897562111403 40.883385943952675, -73.81893226964038 40.88342070503427, -73.81888895795966 40.88344868188369, -73.81885937951327 40.88346849123123, -73.81884381143588 40.88349164716459, -73.81883982993743 40.88351982259408, -73.81884950084876 40.883546432791604, -73.81887388204362 40.883603012709145, -73.81880265166872 40.883626384736615, -73.81875650916446 40.883557189012954, -73.81873810166614 40.883562975458595, -73.81872185615087 40.883571731505114, -73.81857883688805 40.88366441195523, -73.81853831882607 40.883683787998415, -73.81847884251194 40.88369726753231, -73.81843414867102 40.88370204636155, -73.81839839975947 40.883710735660294, -73.8183554689929 40.88371639520904, -73.81831333238975 40.88371799749178, -73.81827350541585 40.88371890101486, -73.81816357508718 40.883733557116514, -73.81805255628194 40.88374229609078, -73.81801204615117 40.88376260216605, -73.81797681703708 40.883767750533806, -73.81794125403842 40.88377783844235, -73.81790489146562 40.88379437617573, -73.81788099103599 40.88380988359307, -73.81785851823932 40.88382355085959, -73.8178323134797 40.88383261523946, -73.81780240315196 40.88384130096177, -73.81777413629767 40.883851215736, -73.81774584066925 40.8838629674537, -73.81771978867009 40.88387559077843, -73.8176871115728 40.883884649405864, -73.81765389437001 40.88389249871558, -73.81757641388636 40.883904668844835, -73.81755472228004 40.8839086156166, -73.81753246877435 40.88390978619148, -73.81748105284599 40.88391514114277, -73.81743424743507 40.883926612275765, -73.81738651603874 40.883946042240055, -73.81734969074225 40.883968107163085, -73.81727865868484 40.88402518203433, -73.81722418178407 40.88405891361084, -73.8171603308207 40.88408124814195, -73.81708552892074 40.88409522045977, -73.8170548153047 40.88410082054337, -73.81702270677276 40.8841023923249, -73.81699142705718 40.884099851081366, -73.81696036295143 40.884093122000884, -73.81685563970657 40.88405807906947, -73.81682043792918 40.8840510633338, -73.81678126599866 40.88405314251892, -73.81674409446317 40.88406556427188, -73.81671824698118 40.88408352488856, -73.81665236374958 40.88413927392732, -73.81661887508234 40.8841671610706, -73.81658918492946 40.88419742432505, -73.81647185395272 40.88431411667361, -73.81643671845075 40.884350528767214, -73.81642132760287 40.884370566263286, -73.8164124169506 40.88439034211744, -73.81640855830723 40.8844105870568, -73.8164102598284 40.8844341897555, -73.81642282517659 40.884447403693244, -73.81644288816085 40.88445799472548, -73.81646575150158 40.88446249480325, -73.81648796438465 40.88446107043163, -73.8165388902388 40.884457205451234, -73.81655965415884 40.88445887824269, -73.81657750732552 40.884467097455605, -73.81660293185695 40.88449413719126, -73.81662170208354 40.88453853316212, -73.8166227596883 40.88455773414873, -73.81661172613325 40.884575031203, -73.81655966082639 40.88461943347703, -73.81649768072688 40.88465576960131, -73.81652980246051 40.88468691992164, -73.81673068828287 40.884564824023215, -73.81798232158434 40.88577884520368, -73.81871807777874 40.88535030382565, -73.8191502403194 40.88575615268422)), ((-73.81856823200195 40.8623226533469, -73.81842634423451 40.862435921811496, -73.81779125323688 40.86207639526794, -73.81712142786182 40.86169719743452, -73.81666276270218 40.861437535810936, -73.81642385881364 40.861306530597815, -73.81682216155059 40.86071495063294, -73.81682768597886 40.86071549969873, -73.8171671888513 40.86020176631422, -73.81722544762114 40.86013090795172, -73.8172627261146 40.86009537775404, -73.81734258289953 40.86001806279023, -73.81742270441444 40.85995312275121, -73.81763603758414 40.85976482416204, -73.8176934071525 40.85971471959604, -73.81770021359044 40.85971658356345, -73.81787609071883 40.85955556607822, -73.81804426024273 40.859415271798866, -73.81823638966424 40.859251989436736, -73.81847149399474 40.85906548224438, -73.81869372219971 40.85891214197551, -73.81869513473218 40.85891085469042, -73.81878483937469 40.85885325335951, -73.81895108585489 40.8587501135379, -73.8191226302713 40.85864071975858, -73.8194021210817 40.858496983378956, -73.81959575034298 40.8584038197152, -73.81982438013338 40.85829578112888, -73.82003150148321 40.85819832264272, -73.82028444444043 40.858083794297805, -73.8205321313237 40.85797758137244, -73.82053238414116 40.85797707028604, -73.82063179332751 40.85793715116923, -73.8208634923602 40.857845576291325, -73.82110071146563 40.85775805812085, -73.82137845223839 40.857659722457015, -73.82144843011365 40.85763583535694, -73.82144858816501 40.8576361615798, -73.82239152419928 40.85738930085226, -73.82237463280113 40.85738756661375, -73.82239131019092 40.85738372377359, -73.8223914344041 40.85738517555848, -73.8224345042974 40.85737377228268, -73.82245088261969 40.85736999831154, -73.82245095058695 40.857369417598576, -73.82271022770469 40.85730076836121, -73.82292370579874 40.85724654798481, -73.82307804593093 40.85722194108313, -73.82318104312047 40.85721034845746, -73.82331246576899 40.8572053566613, -73.82344403575989 40.857206954744115, -73.8235751814916 40.85721513552782, -73.82370533144083 40.85722986212076, -73.82383391889392 40.85725107242735, -73.82396038552052 40.857278672850065, -73.82408418017285 40.85731254369042, -73.82420314850586 40.85735200180245, -73.82466161896072 40.85755190368635, -73.82559608828903 40.857959342114675, -73.82620218099707 40.85822359845449, -73.82629767123862 40.8582816204927, -73.82638735093836 40.85834476201031, -73.82647074418699 40.8584126882222, -73.82654740952721 40.85848504008244, -73.82656365065702 40.85850705631622, -73.8266186720041 40.85857082271538, -73.82666794135068 40.85863724500213, -73.82671124004744 40.85870602389198, -73.82678894945033 40.858901432094406, -73.82675055110525 40.858914675608844, -73.82652199434324 40.85899413648208, -73.82652182882072 40.85899484492044, -73.82648311245524 40.85900765383049, -73.8264830614084 40.85900767176356, -73.82541351991047 40.85936151580014, -73.82445130748353 40.859788297334035, -73.82405822330652 40.85995310453604, -73.82357314153953 40.86014453867995, -73.82342411208904 40.860191431638185, -73.82335496993052 40.8602285917573, -73.82331224641352 40.86024380678575, -73.82309675658448 40.86031777617113, -73.82309651677863 40.8603178586487, -73.82306684890035 40.860303845626675, -73.82274167927754 40.860406161076966, -73.82234197934619 40.860532422916414, -73.8219766471691 40.86064793590445, -73.8216935134731 40.86073745782995, -73.82122773940856 40.860886032322476, -73.82102188309685 40.86095169581471, -73.82052626046399 40.86112623547673, -73.82036660895147 40.861185369957866, -73.820076468119 40.86132092635317, -73.81995917564736 40.861375725613826, -73.81972689941531 40.86150852585285, -73.81953974717227 40.861657088176976, -73.81933221366121 40.86178327618246, -73.81913042246873 40.86191120446042, -73.81876883707055 40.862162509105026, -73.81856823200195 40.8623226533469)), ((-73.81793448203247 40.87185240308524, -73.81782300440432 40.87187650076275, -73.81770940362694 40.87189397277423, -73.81759436094242 40.871904714832986, -73.81747856816023 40.87190866319362, -73.8173627205435 40.87190579283991, -73.81724751323681 40.87189612198192, -73.81724780222706 40.87189628993075, -73.81713007094093 40.87187828272292, -73.81701406092225 40.87185470228921, -73.81690022984884 40.87182564031035, -73.81678902583891 40.87179121276694, -73.81668088865165 40.87175155453802, -73.81668289211943 40.87175031864619, -73.81665522963746 40.87174118335022, -73.81660716851152 40.87172067035543, -73.81655431887896 40.8716969827044, -73.8164859485048 40.87165809438642, -73.81586903544624 40.87122228294243, -73.81587696815674 40.87122608486297, -73.81567850418898 40.87111326707559, -73.81547548664423 40.871005219663836, -73.81526811331037 40.870902049178504, -73.81505658791959 40.870803855877405, -73.81484111776858 40.87071073642306, -73.81470502741357 40.870649216193925, -73.81450054311429 40.87056327353865, -73.81429195746473 40.87048321132505, -73.81407956548759 40.87040914166728, -73.81388360716387 40.87034013816841, -73.8138835151711 40.870339947116086, -73.81340217931954 40.870170186438294, -73.8145674031183 40.868189502249095, -73.81551339814989 40.86663386538716, -73.81676013191353 40.86497110589408, -73.81673119270111 40.86529800309123, -73.81664744150665 40.86624402599144, -73.81661103528023 40.866655253009675, -73.81733013672525 40.86756785074357, -73.81894758425462 40.86962041009887, -73.81972724797063 40.87000515232969, -73.81959917786554 40.87016023274591, -73.81939091411292 40.870400110973996, -73.81939233605291 40.87040068591138, -73.81916884179643 40.8706889295395, -73.81905514411723 40.87086669449707, -73.81894707358043 40.87106271390014, -73.81894724285982 40.87106284473682, -73.8189355409151 40.871090527257046, -73.81889234315244 40.871177625122286, -73.81884066489953 40.871262020793324, -73.81878079925171 40.87134323745937, -73.81871307958643 40.87142081908307, -73.8186378902448 40.87149432861666, -73.81857201903678 40.87155126842346, -73.81849658180289 40.87160770327997, -73.81841569757877 40.87165960815475, -73.81832983576636 40.87170668301169, -73.81823949773316 40.87174865307944, -73.81814520730926 40.8717852733394, -73.81814840520356 40.87178495150098, -73.81804316583533 40.87182182547033, -73.81793448203247 40.87185240308524)), ((-73.8118729344899 40.86862420212156, -73.81202121231603 40.86834335376082, -73.81217420702745 40.868058939727575, -73.81238872872288 40.86765432984871, -73.8125732563953 40.86731398659882, -73.8127025703636 40.867079558331085, -73.81284606861537 40.86682252267622, -73.81305259289547 40.86646911304675, -73.81321654372579 40.86619067114886, -73.81340732907059 40.86585391066848, -73.813497185181 40.86570160007594, -73.81359022501245 40.865532620156856, -73.81372425527583 40.86529224335121, -73.8139052363218 40.86499544348636, -73.81406829849821 40.86469456584218, -73.81417437273173 40.86453183692933, -73.81452709236514 40.8640674537007, -73.81481789325642 40.8636444556495, -73.81487454399569 40.86368282645074, -73.81491794458745 40.8637122214829, -73.81519620343893 40.86390068651373, -73.81532753681267 40.86398963842176, -73.81574018578338 40.86426912269516, -73.81596424914066 40.8644208781059, -73.81615460938231 40.864549805053976, -73.81627398877782 40.86463065761488, -73.81573069067449 40.86511928751988, -73.81538504614701 40.86570317993725, -73.81452917825091 40.86716976996212, -73.81449852851787 40.86754810428375, -73.81372872046573 40.868609962942244, -73.81351155399287 40.86856107842676, -73.8128311894413 40.86969071221397, -73.81269295108369 40.869920230070605, -73.81258790550476 40.86989589034683, -73.8124853666988 40.86986602288707, -73.81238583605678 40.86983077349214, -73.81228980420886 40.869790316762405, -73.81219774392177 40.869744850683354, -73.81211010653476 40.869694598420416, -73.81202368042878 40.86963721257573, -73.81194302562349 40.86957517423113, -73.81187350871032 40.86951139713062, -73.81181092733618 40.86944360790604, -73.81175568002641 40.86937223945415, -73.81172010485642 40.869321558529535, -73.81169310984488 40.869267912772195, -73.81167511491682 40.86921213402642, -73.81166639991916 40.86915508902515, -73.81166709873203 40.869097664972344, -73.81167720050522 40.86904075243554, -73.811692733231 40.86898327064502, -73.81171385130727 40.8689268236246, -73.81174043876784 40.86887172545333, -73.8118729344899 40.86862420212156)), ((-73.82194119223784 40.85609236130273, -73.82277365302726 40.85546811230167, -73.8228966933501 40.855405193820715, -73.8236232091051 40.85506088142155, -73.82391964190961 40.85496275099182, -73.82422495294371 40.854852610848866, -73.82455916803535 40.8547386606473, -73.82497877659621 40.85460306063982, -73.82517837737494 40.8545336714413, -73.82539986565061 40.85443141372022, -73.82552554037164 40.85436938610467, -73.82555122728866 40.854479679482736, -73.82556261891204 40.85451389111913, -73.82558171215092 40.854566221506225, -73.8256146033363 40.85464556051424, -73.82565185360721 40.854723780483404, -73.8257295261152 40.85483978044468, -73.82581355893282 40.8549531965351, -73.82590380436663 40.85506382590727, -73.82590595390582 40.855066335222105, -73.82590605086101 40.85506644792997, -73.82593879255816 40.855107530082336, -73.82596798306653 40.85515012780022, -73.8260506462461 40.855338152860995, -73.82608305468777 40.855836953040104, -73.82603758134324 40.8558093168026, -73.82600013366188 40.8557893765544, -73.82595814023045 40.8557689341656, -73.82591397616336 40.85575132503761, -73.8259094569971 40.855749720744534, -73.8258999230577 40.85574646008194, -73.8258951263079 40.85574487968272, -73.82589031049301 40.85574333347328, -73.82588547679896 40.85574182145536, -73.82588062404216 40.855740342726676, -73.82587086726309 40.855737487847506, -73.82580315699836 40.855721993512, -73.82573338323934 40.855713252415455, -73.82566270667157 40.855711408585975, -73.82563450663439 40.855712607748025, -73.82560201276502 40.85571537357299, -73.82555487343875 40.85572208391474, -73.82554708605386 40.85572350842515, -73.8255449987633 40.855723489060026, -73.82548357806284 40.855738664018176, -73.82548354364562 40.85573867297105, -73.82547881854389 40.855740074193776, -73.82546968501903 40.85574286901327, -73.82544991275968 40.855749433407205, -73.82542351864981 40.85575933761013, -73.82541911751252 40.85576111752751, -73.8254190011607 40.85576116507756, -73.82540498987328 40.85576703849862, -73.82535071672 40.855793636144796, -73.82529703864515 40.855827100021685, -73.82524894517759 40.855865144133325, -73.82520710779887 40.855907237312856, -73.82518068162882 40.85594509360034, -73.82515919402337 40.855984710624995, -73.82514284876686 40.856025718595866, -73.82513179631128 40.85606773413335, -73.82512574096786 40.856117218725004, -73.82512539746578 40.85612787823463, -73.82512749741306 40.856171353593794, -73.82512886432343 40.85618193555204, -73.82513967861632 40.8562309666502, -73.82516065998875 40.8562833494798, -73.82519036148376 40.85633324214902, -73.82522828481837 40.856379810040394, -73.8252738010881 40.856422277769816, -73.82532614837766 40.85645993548736, -73.8253844530683 40.85649215421828, -73.82544774166938 40.856518396687825, -73.82550492914031 40.85653574113404, -73.82550832972859 40.85653833339201, -73.82551111136966 40.85654132183101, -73.82551319482599 40.85654462078435, -73.82551452103843 40.85654813831253, -73.82551505350318 40.85655177440582, -73.82551477706906 40.85655542728553, -73.82551370030956 40.85655899340808, -73.82551185076484 40.85656237286038, -73.82550928442951 40.85656546937443, -73.82550607032074 40.856568195706785, -73.82550230114718 40.85657047545579, -73.82549808263308 40.856572243945806, -73.82549480324884 40.856573179099705, -73.82549139777528 40.85657380429338, -73.82548791723649 40.85657410969856, -73.82541807032898 40.85658342227605, -73.82481071574864 40.85665424564741, -73.82442077421838 40.85669937266946, -73.82442063304133 40.856699388663465, -73.82343800740438 40.856812405578346, -73.82288978399632 40.8569015848127, -73.82209992547354 40.85705515881956, -73.82200457421213 40.85706954119632, -73.82190802853525 40.8570781873148, -73.8218108863607 40.85708104406594, -73.82171374907081 40.85707809346722, -73.82163120435074 40.857069449922754, -73.82154953353768 40.85705690493669, -73.82152300800703 40.85705349696421, -73.82145606737014 40.857037471782554, -73.82145158593598 40.85703639866417, -73.82142469021792 40.85702995993912, -73.82141442139746 40.857026987727586, -73.82134580104729 40.857007127385934, -73.82131532880261 40.856998308498376, -73.82118388370566 40.856950427371, -73.82110418137886 40.85690809322732, -73.82105050220783 40.856861490538414, -73.82194119223784 40.85609236130273)), ((-73.81384449728176 40.88822265660616, -73.81377164452715 40.88820308585685, -73.81368395663772 40.88817952897097, -73.8097766773455 40.887129805796235, -73.80649071961304 40.88626492696796, -73.80651020575404 40.886265037077266, -73.80652969060631 40.886265182300164, -73.80654917535124 40.886265364439545, -73.80656865880758 40.88626558169256, -73.80658814215926 40.886265834961605, -73.80660762540367 40.88626612514721, -73.80662710617308 40.886266450444374, -73.80664658683787 40.88626681175766, -73.80666606621422 40.88626720818449, -73.80668554311043 40.88626764152386, -73.80670501990211 40.88626811087935, -73.80672449421893 40.88626861534641, -73.8067439672422 40.886269156728005, -73.80676343897714 40.8862697332232, -73.80678290823467 40.88627034573049, -73.8068023762014 40.886270994251866, -73.80682184169079 40.88627167878536, -73.80684130470544 40.88627239843039, -73.80686076524017 40.886273154988054, -73.80688022330031 40.886273946657305, -73.80689967888064 40.88627477523914, -73.80691913198632 40.8862756389326, -73.80693858142838 40.88627653863612, -73.80695802839595 40.886277473451315, -73.80697747288373 40.88627844517906, -73.80699691371059 40.88627945201646, -73.80701635206039 40.88628049486592, -73.80703578556016 40.886281573723586, -73.80705521658297 40.8862826885933, -73.80707464394227 40.88628383947313, -73.80709406645424 40.88628502546065, -73.80711348648934 40.88628624746028, -73.80713290167458 40.886287505468054, -73.80715231319641 40.88628879948596, -73.80717172105759 40.88629012861353, -73.80719112406891 40.886291493749255, -73.80721052223052 40.88629289489314, -73.80722991554235 40.88629433204513, -73.8072493051936 40.88629580430683, -73.80726868999515 40.886297312576666, -73.80728806994708 40.88629885685467, -73.80730744386544 40.886300436238386, -73.80732681411814 40.88630205253277, -73.80734617833997 40.88630370303235, -73.80736553770967 40.88630539044058, -73.80738489104594 40.886307112954505, -73.80740423834885 40.886308870574176, -73.80742358079966 40.886310665102485, -73.80744291721719 40.88631249473655, -73.80746224760144 40.88631435947634, -73.8074815719498 40.886316260222316, -73.80750089026226 40.88631819697452, -73.80752020254155 40.88632016883247, -73.8075395087851 40.886322176696645, -73.80755880780896 40.886324219664544, -73.80757810079706 40.88632629863869, -73.80759738656555 40.88632841271664, -73.8076166662984 40.88633056280079, -73.80763593762256 40.88633274888722, -73.80765520291631 40.88633496917891, -73.80767446098538 40.886337226375375, -73.80769371183756 40.886339517775134, -73.80771295546772 40.88634184517915, -73.80773219068936 40.88634420858554, -73.80775141869161 40.88634660709563, -73.8077706394745 40.886349040709575, -73.80778985184895 40.88635151032584, -73.80780905700415 40.8863540150459, -73.80782825375353 40.88635655486779, -73.80784744209454 40.88635913069201, -73.80786662202985 40.886361741618046, -73.80788579355945 40.88636438764598, -73.80790495668339 40.88636706877575, -73.8079241113991 40.88636978590786, -73.80794325770914 40.8863725381418, -73.80796239442712 40.88637532547568, -73.80798152155302 40.886378147909426, -73.8080006402708 40.88638100634556, -73.80801975058311 40.88638389988355, -73.80803885130598 40.88638682762095, -73.80805794124774 40.886389791356805, -73.80807702278416 40.88639279019455, -73.80809609472864 40.88639582413218, -73.80811515707867 40.886398894070275, -73.80813420865283 40.88640199820582, -73.80815325063527 40.88640513744128, -73.80817228302587 40.88640831177674, -73.80819130463821 40.88641152121016, -73.80821031547224 40.88641476574151, -73.80822931671202 40.886418046273356, -73.80824830717611 40.88642136100269, -73.80826728686468 40.88642470992952, -73.80828625577252 40.886428094854885, -73.80830521390217 40.886431514878204, -73.80832416125637 40.886434969099085, -73.80834309664337 40.88643845931648, -73.80836202125491 40.886441983731416, -73.80838093509107 40.886445542343886, -73.80839983696008 40.88644913695294, -73.80841872686716 40.88645276575753, -73.80843760599637 40.88645642966022, -73.80846143229832 40.88646239351123, -73.8084852741254 40.886468324065035, -73.80850912910718 40.88647422041719, -73.80853299842752 40.886480083470154, -73.80855688327297 40.88648591322586, -73.80858078127036 40.886491709680335, -73.8086046936089 40.88649747193509, -73.80862862028587 40.88650320089066, -73.80865256011474 40.886508896544946, -73.80867651428456 40.88651455799947, -73.8087004827928 40.88652018615477, -73.80872446445538 40.886525780108315, -73.80874845926974 40.8865313407606, -73.80877246842492 40.88653686721313, -73.80879649073178 40.886542360364324, -73.80882052619293 40.88654781931379, -73.80884457480573 40.88655324496201, -73.80886863775918 40.88655863641034, -73.8088927126777 40.88656399455546, -73.80891680075032 40.88656931849876, -73.80894090197707 40.88657460824026, -73.8089650163552 40.88657986468043, -73.80898914270087 40.88658508691678, -73.8090132822005 40.88659027495134, -73.80903743485148 40.88659542968455, -73.80906159946981 40.886600550213906, -73.80908577605557 40.886605636539485, -73.80910996579509 40.886610688663204, -73.80913416868587 40.8866157074855, -73.80915838235737 40.88662069210204, -73.80918260799602 40.88662564251468, -73.80920684678843 40.8866305587255, -73.80923109636144 40.88663544073046, -73.8092553590855 40.886640289434, -73.80927963259262 40.88664510303121, -73.80930391806426 40.88664988332503, -73.80932821550283 40.886654629414956, -73.80935252372441 40.88665934039854, -73.80937684509693 40.88666401808066, -73.80940117606325 40.886668661554936, -73.80942551899642 40.886673270825334, -73.80944987271246 40.886677844989315, -73.80947423839267 40.886682385849845, -73.8094986148531 40.88668689250449, -73.80952300209637 40.88669136405279, -73.8095474001171 40.88669580229561, -73.80957180892058 40.88670020543202, -73.8095962285041 40.88670457436256, -73.80962065886511 40.88670890998759, -73.80964509882213 40.886713210504254, -73.80966955074824 40.88671747591647, -73.80969401226517 40.88672170802121, -73.80971848337803 40.886725905017585, -73.80974296526813 40.886730068708474, -73.8097674579407 40.8867341972929, -73.80979196020908 40.88673829076891, -73.80981647206805 40.88674235093748, -73.80984099470935 40.88674637599953, -73.80986552575723 40.88675036685168, -73.80989006758735 40.88675432259738, -73.80991461900794 40.88675824503556, -73.80993917884017 40.88676213146288, -73.80996374944937 40.886765984584635, -73.80998832846754 40.88676980259599, -73.81001291707862 40.88677358639933, -73.8100375152852 40.886777335094216, -73.81006212308459 40.88678104958108, -73.81008673810373 40.886784729856046, -73.81011136390478 40.886788375024445, -73.81013599692544 40.886791985980906, -73.81016064072791 40.88679556183085, -73.81018529175257 40.88679910256838, -73.8102099511808 40.88680260999638, -73.81023462020666 40.88680608141537, -73.81025929645203 40.88680951862244, -73.81028398228993 40.88681292162141, -73.81030867534976 40.886816289507976, -73.81033337681554 40.88681962318455, -73.81035808668975 40.886822921750564, -73.81038280497236 40.886826185206104, -73.81040753047417 40.88682941444966, -73.81043226319777 40.88683260858077, -73.81045700432969 40.88683576760131, -73.81048175386724 40.88683889241183, -73.81050651062395 40.886841983010335, -73.81053127460481 40.886845037595876, -73.81055604580472 40.88684805796942, -73.81058082422618 40.88685104323047, -73.81060561105315 40.886853994281466, -73.810630403915 40.88685691021797, -73.81065520399832 40.886859791042, -73.81067896786445 40.886863216757156, -73.81070274013882 40.886866607362194, -73.81072652082395 40.8868699619566, -73.81075031110116 40.886873282343295, -73.81077410860254 40.886876566717426, -73.81079791569859 40.88687981598334, -73.81082173001607 40.886883030137135, -73.81084555393072 40.88688620828222, -73.8108693850642 40.88688935221566, -73.81089322342169 40.88689246013654, -73.81091707137354 40.88689553294917, -73.81094092654679 40.88689857064965, -73.81096478894383 40.88690157233756, -73.81098865974616 40.88690453981574, -73.8110125377722 40.88690747128128, -73.811036423022 40.88691036673419, -73.81106031667946 40.88691322707688, -73.81108421637153 40.886916052305466, -73.81110812447113 40.88691884242385, -73.8111320386078 40.886921596527664, -73.81115596115204 40.886924315521206, -73.81117988973068 40.88692699940068, -73.8112038243462 40.886929647265504, -73.81122776736915 40.88693226002013, -73.81125171642897 40.886934836760126, -73.81127567152309 40.88693737838599, -73.81129963384048 40.88693988399916, -73.81132360219208 40.88694235449824, -73.8113475765778 40.886944789883145, -73.81137155818675 40.88694718925533, -73.81139554464322 40.886949553511464, -73.81141953832282 40.88695188175491, -73.81144353803639 40.88695417488417, -73.81146754259998 40.88695643199682, -73.81149155319747 40.88695865399538, -73.81151556983141 40.886960839979245, -73.81153959131267 40.886962990846996, -73.81156361883025 40.8869651057001, -73.81158765238418 40.88696718453853, -73.81161168959875 40.886969228258884, -73.811635732847 40.88697123686509, -73.81165978213149 40.88697320945663, -73.81168383507907 40.88697514602956, -73.81170789406019 40.88697704748834, -73.81173195670432 40.88697891292856, -73.81175602538455 40.886980742354105, -73.8117800977251 40.88698253666154, -73.8118041749126 40.88698429585286, -73.81182825695201 40.88698601812704, -73.81185234265172 40.88698770528319, -73.81187643319817 40.886989357323145, -73.8119005285939 40.88699097334648, -73.81192462765233 40.886992553351234, -73.81194873037343 40.886994097337386, -73.8119728367546 40.88699560620546, -73.81199694679833 40.88699707905494, -73.81202106168863 40.886998516788296, -73.81204517905746 40.8869999176006, -73.81206930127276 40.88700128329676, -73.81209342596135 40.88700261387288, -73.8121175543149 40.88700390752987, -73.8121416863283 40.8870051660688, -73.81216582081484 40.88700638948771, -73.81218995896627 40.88700757598747, -73.81221409959082 40.88700872736724, -73.81223824387754 40.88700984272837, -73.81226239063739 40.88701092296946, -73.81228653987536 40.88701196628954, -73.8123106915863 40.887012974489515, -73.8123348457727 40.88701394666899, -73.81235900361862 40.887014883730345, -73.8123831627559 40.88701578386874, -73.81240732436609 40.88701664888703, -73.81243148844904 40.887017478785324, -73.81245565382328 40.88701827176063, -73.81247982167027 40.88701902961584, -73.81250399199499 40.88701975055005, -73.81252816360332 40.887020437262706, -73.81255233650275 40.887021087052474, -73.81257651187481 40.88702170172209, -73.81260068853788 40.887022279468766, -73.8126248664869 40.887022822093485, -73.81264904572187 40.88702332959616, -73.81267322624777 40.887023800175896, -73.81269740805948 40.88702423563359, -73.81272159116203 40.88702463416834, -73.81274577436133 40.887024998479646, -73.81276996003793 40.88702532586989, -73.81279414462966 40.88702561723382, -73.81281833169355 40.88702587347764, -73.8128425176725 40.887026093695184, -73.81286670493952 40.887026277890165, -73.81289089349464 40.88702642606268, -73.81291508096213 40.88702653910936, -73.81293926971762 40.887026616133504, -73.81296345857452 40.887026657133276, -73.81298764634617 40.88702666210671, -73.81301183540573 40.887026631057616, -73.81303602337746 40.887026564882696, -73.81306021145043 40.887026462683366, -73.8130843996272 40.88702632355915, -73.81310858671347 40.88702615020952, -73.8131327739034 40.88702593993503, -73.81315696119186 40.88702569453659, -73.81318114621087 40.88702541220942, -73.81320533132828 40.88702509475831, -73.8132295153576 40.88702474218137, -73.81325369830387 40.88702435267759, -73.81327788016193 40.887023928047995, -73.81330206093429 40.88702346739206, -73.81332624062092 40.88702297070975, -73.81335041922179 40.88702243800117, -73.81337459673429 40.88702187016672, -73.81339877197696 40.88702126540351, -73.81342294613115 40.88702062551448, -73.81344711801039 40.88701995049771, -73.8134712888062 40.88701923855411, -73.81349545732691 40.88701849148275, -73.813519623575 40.88701770838315, -73.8135437875505 40.8870168892553, -73.81356795043733 40.88701603500163, -73.81359210986746 40.88701514381731, -73.81361626820883 40.88701421750717, -73.81364042309086 40.8870132551669, -73.81366457569759 40.88701225769883, -73.81368872603142 40.887011224202546, -73.81371287409239 40.88701015467803, -73.81373701869387 40.88700904912339, -73.81376115983325 40.88700790843912, -73.81378529869967 40.88700673172658, -73.81380943529298 40.88700551898581, -73.81383356724017 40.887004270212984, -73.81385769691163 40.887002986312474, -73.81388182312341 40.88700166638181, -73.81390594468638 40.88700031131959, -73.8139300639786 40.88699891932865, -73.81395417980848 40.88699749220808, -73.81397829098941 40.88699602995595, -73.81400239871044 40.88699453167374, -73.81402650297152 40.88699299736139, -73.81405060258605 40.886991427017, -73.81407469873805 40.886989821543, -73.81409879024346 40.88698818003695, -73.8141228770997 40.886986503399385, -73.8141469604958 40.886984790731724, -73.81417103924514 40.88698304203203, -73.81422956918814 40.886984340200435, -73.81423133683504 40.88697850608392, -73.81425734686871 40.88697647952237, -73.81435622805293 40.88697298532263, -73.81447386508927 40.88695797153123, -73.81512011233221 40.88687549092813, -73.81509715214716 40.887006222074575, -73.81509203746737 40.88707386031772, -73.81506799731098 40.88735049753968, -73.81505310666635 40.88762750509611, -73.8150473768101 40.887904709214176, -73.81505080953185 40.88818193430291, -73.81506340305417 40.88845900746484, -73.81508515085791 40.888735753991774, -73.81511603811748 40.889011999160125, -73.81369428086526 40.888656305138404, -73.81384449728176 40.88822265660616)), ((-73.82765189558411 40.85553321014413, -73.82759169841465 40.855494351294816, -73.82752584597127 40.85546120028614, -73.82745527039897 40.85543422585826, -73.82738097403133 40.85541381131126, -73.82730400925331 40.85540024547047, -73.8272254654614 40.85539372086652, -73.82714645721492 40.85539433011592, -73.82706810526444 40.85540206499228, -73.82699151876841 40.85541681459873, -73.82691778342118 40.85543837075275, -73.82684794485321 40.8554664270607, -73.82678299200744 40.85550058699662, -73.82678245291453 40.855499927927156, -73.82676035511457 40.8555146979443, -73.82672081736361 40.85554267630376, -73.82668440801716 40.85557300513245, -73.82668650654537 40.85557508211938, -73.82664171967474 40.8556234874435, -73.82660444860127 40.85567543487746, -73.82657517184963 40.855730255181186, -73.82651675124518 40.855728870638515, -73.82654033380966 40.855208958978864, -73.82653978358745 40.85520893113681, -73.82656886166437 40.854559815987265, -73.82655929763499 40.85429572310635, -73.82655632241519 40.85415778205007, -73.82657489299989 40.85394324594495, -73.82659384212785 40.85374631863523, -73.82663953194637 40.853534380664215, -73.82666634422851 40.853460536410836, -73.82714969899469 40.85338938878658, -73.82812888530215 40.85510990498678, -73.82812796553172 40.855109233650026, -73.82818610167911 40.855210435658165, -73.82843147264383 40.85563756855246, -73.82851587062933 40.85578448511614, -73.82851661917556 40.85578579284337, -73.82874099855363 40.85617888312827, -73.8287413598328 40.85617951851175, -73.82876307579959 40.856217615460665, -73.82749408071635 40.85634594249998, -73.82756221455575 40.85631556448833, -73.8276251109185 40.856279253370936, -73.82768187896167 40.85623752470843, -73.82773171186135 40.85619096892848, -73.82777390343021 40.856140245947266, -73.82780785762881 40.85608607617786, -73.82783309216238 40.85602922522678, -73.82784924916037 40.855970501207885, -73.82785609997046 40.85591073493831, -73.82785354754307 40.85585077453875, -73.8278416276594 40.85579146832585, -73.8278205089441 40.8557336594094, -73.82779049173082 40.85567816497931, -73.82775200214051 40.85562577269543, -73.82770558381961 40.85557722446652, -73.82765189558411 40.85553321014413)), ((-73.82746769117709 40.85890524691362, -73.82738044744471 40.85893424823319, -73.82726947100014 40.85874170102308, -73.82728753580088 40.858735695670745, -73.82724455045006 40.858661111995296, -73.82718956040146 40.858687287091115, -73.82717675540908 40.85865689161209, -73.8271840492328 40.85865336810618, -73.82715079596335 40.85852156639618, -73.8271474484479 40.85851491845086, -73.82713138738018 40.85841031933961, -73.82713286184857 40.858394718722096, -73.82713442001476 40.85839619786379, -73.82713476197684 40.85837460367489, -73.82714083059774 40.85831038786871, -73.82713962224288 40.858310305014, -73.82715246895394 40.8582360822872, -73.8271729748118 40.858162858871424, -73.82720101408012 40.858091088422356, -73.82723641004202 40.85802121821457, -73.8272789456936 40.85795368195379, -73.827328355445 40.85788889886404, -73.82738433224148 40.857827271897776, -73.82744652757326 40.85776918413394, -73.82774802911688 40.857537187913834, -73.82900440653168 40.85664098509955, -73.8294988335499 40.857508347006274, -73.82963827998158 40.85773754275858, -73.82975894615309 40.857935868766425, -73.8297614864809 40.85793499903745, -73.82979295540454 40.85798874901617, -73.82824090685602 40.858500569544354, -73.8281342871725 40.85853572896838, -73.82790464239241 40.85836669386892, -73.82788945633338 40.85837358699519, -73.82763557354207 40.85848883116774, -73.82782372369871 40.858815275727345, -73.82764883903761 40.858873410617974, -73.8276348118854 40.85884907547776, -73.82753827829814 40.85888116523274, -73.82753546579762 40.85887628306333, -73.82746457876715 40.85889984741156, -73.82746769117709 40.85890524691362)), ((-73.78418559676919 40.863137103957996, -73.78405615082114 40.86312712204086, -73.7838551830426 40.86311162467694, -73.78353591157467 40.863087003711534, -73.78293538801002 40.86304069062342, -73.7820906739628 40.862975540744, -73.78229792461727 40.86189075026993, -73.78453933359064 40.86206314893423, -73.78448835734893 40.862359948799245, -73.78444972140096 40.8625848943773, -73.78437101852592 40.86304311685149, -73.78435266310464 40.86314998629515, -73.78418559676919 40.863137103957996)), ((-73.81545354456937 40.88909643316438, -73.81543962728693 40.88909295124019, -73.81539764744015 40.8888185020066, -73.81536474484798 40.888543339669596, -73.81534094264732 40.888267638068044, -73.81532625329487 40.88799157102173, -73.81532068569197 40.887715310541594, -73.81532424517248 40.88743903133229, -73.8153584349845 40.88743803245912, -73.81537021017321 40.88749321336545, -73.81539120938076 40.88754679264782, -73.81542108266929 40.88759788816427, -73.81545934116237 40.88764565626988, -73.81550535106321 40.88768930891733, -73.81555835379018 40.88772812629606, -73.81561747544137 40.887761466754014, -73.8156817409909 40.887788782128915, -73.81575008970712 40.8878096204753, -73.81582139410354 40.88782363870219, -73.81589447891785 40.88783060530535, -73.8159681365261 40.887830404894565, -73.81604115185254 40.88782304183572, -73.81611232255293 40.88780863668084, -73.81618047325257 40.88778742709123, -73.81620387292642 40.887775165494745, -73.81626501452489 40.88774666515275, -73.81632187966363 40.88771345652768, -73.81637384438116 40.887675906032044, -73.81642033324205 40.88763442608092, -73.81646083357359 40.8875894760149, -73.81649490142807 40.88754155130291, -73.81652215803518 40.88749117903431, -73.81654230523404 40.88743891524118, -73.81655511956214 40.88738533678462, -73.81657024433636 40.88731876796159, -73.81657695623102 40.88725140954669, -73.81657519544613 40.88718387197699, -73.81656497692963 40.887116767607395, -73.81654639276388 40.887050705311665, -73.81654860025236 40.887059550708564, -73.8165460996703 40.88704985118354, -73.81652956307596 40.88700114813796, -73.81650562839106 40.886953303199874, -73.81647488137139 40.8869077553748, -73.81643769781087 40.88686506175637, -73.8163945330973 40.886825743544776, -73.81634591273435 40.88679028062894, -73.81629243353821 40.886759107987, -73.81623474586907 40.88673260485257, -73.81643240239896 40.886692699086545, -73.81662908599455 40.88665011518694, -73.81679093671983 40.88661289030081, -73.81695204354902 40.88657385222673, -73.81656289348602 40.88919840408896, -73.81656054265247 40.889204498453005, -73.81655711309499 40.889211064759, -73.81654887018598 40.88922213125453, -73.81653798659327 40.88923209765931, -73.81652758854051 40.889238971660944, -73.8165185602589 40.889243532686145, -73.81651063938523 40.88924668710888, -73.8165034281201 40.88924897098746, -73.81649716333804 40.88925054498531, -73.81649255206342 40.88925147506169, -73.81648872119635 40.889252108317315, -73.8161947839958 40.889281865489046, -73.81570396579676 40.88915908035411, -73.81545354456937 40.88909643316438)), ((-73.81779096593984 40.87279364793225, -73.8177035396153 40.87275340923758, -73.81761929777518 40.87270438582625, -73.8175391865884 40.87265152199059, -73.81746351038548 40.872595018129374, -73.81739255684855 40.87253508812243, -73.81660085337433 40.87180346579396, -73.81661409334154 40.87179273588304, -73.81661602194758 40.871791546698915, -73.816717728165 40.871833855722805, -73.81682291997538 40.87187093203823, -73.81693112923554 40.871902610103376, -73.81704187586175 40.871928751373815, -73.81715467022013 40.87194923800278, -73.81715451416927 40.87194904234916, -73.81727004498734 40.87196275160981, -73.81738658769737 40.87197000043882, -73.81750351601667 40.87197075002219, -73.81762020356574 40.871964996667366, -73.81773602268247 40.87195277180141, -73.81785035154613 40.87193414018123, -73.81796257417305 40.87190920169439, -73.81807208990769 40.871878091374114, -73.81817830987438 40.87184097579136, -73.81817501378288 40.87184120022291, -73.81827347122514 40.8718056067565, -73.81836793825809 40.87176424739035, -73.81845783051439 40.871717379655514, -73.81854258964113 40.87166529354296, -73.81862169397961 40.87160831061933, -73.81869465144995 40.8715467831152, -73.81878039660712 40.871543647220925, -73.81876218069277 40.87162312018812, -73.8187407903236 40.87170213611912, -73.81867013374735 40.87194127723619, -73.8186087055101 40.87218188259567, -73.81855655490574 40.872423746977624, -73.81851372886308 40.87266666335548, -73.81848026363392 40.872910425584124, -73.81837805190247 40.872912328686056, -73.81827597485966 40.872907919475, -73.81817470745776 40.87289722692986, -73.81807491978945 40.87288032144683, -73.81797727234202 40.872857314831734, -73.81788241243741 40.87282836029424, -73.81779096593984 40.87279364793225)), ((-73.80202048605327 40.8609166701262, -73.80201460768338 40.86091592163563, -73.80200873653739 40.860915137137454, -73.80200287379857 40.86091431753423, -73.80199702065309 40.860913462827945, -73.80199117591486 40.86091257301661, -73.80198534077269 40.86091164720177, -73.80198533365424 40.86091403799647, -73.80197954151639 40.860913009599024, -73.80197376016066 40.86091194520005, -73.80196798958168 40.86091084660064, -73.80196223096829 40.86090971290225, -73.8019564855038 40.860908545007426, -73.80195075200486 40.860907342013675, -73.80194503047143 40.86090610392097, -73.80193932208707 40.86090483163187, -73.80193362803765 40.86090352514835, -73.80192794713724 40.86090218446845, -73.80192228176067 40.860900808695696, -73.80191662953044 40.86089939962703, -73.80191099282399 40.860897955465575, -73.80190537163604 40.86089647801223, -73.80189976596927 40.860894966366565, -73.80189417700704 40.860893421431115, -73.80188860356868 40.86089184140282, -73.80188304683223 40.86089022898521, -73.8018775068031 40.86088858237733, -73.80187198585067 40.86088690248373, -73.80186648160283 40.86088518930036, -73.80186099524302 40.86088344372969, -73.80185552796269 40.86088166397283, -73.80185007857034 40.86087985182868, -73.80184464944091 40.8608780064009, -73.80183923938554 40.8608761285879, -73.80183384959304 40.86087421749121, -73.80182847887467 40.86087227400932, -73.80182312959988 40.86087029904679, -73.80181780058803 40.86086829080058, -73.8018124942058 40.86086625107576, -73.80180720808383 40.86086417896781, -73.80180194459423 40.860862074480735, -73.8017967025456 40.86085993941356, -73.80179148312934 40.860857771967254, -73.80178628752884 40.860855573044425, -73.8017811145581 40.86085334264298, -73.80177596540044 40.86085108166554, -73.80177084005855 40.86084878921148, -73.80176573853251 40.86084646528091, -73.80176066200298 40.860844111676855, -73.80175560928924 40.86084172659622, -73.80175058275815 40.86083931184413, -73.80174558122626 40.86083686651799, -73.80174060587962 40.860834390619935, -73.80173565671566 40.86083188505042, -73.80173073373425 40.8608293498094, -73.80172583812158 40.860826784898975, -73.80172096869151 40.8608241903171, -73.80171612663014 40.86082156606579, -73.80171131312092 40.860818913047616, -73.80170652697765 40.8608162312605, -73.80170176820312 40.86081351980397, -73.8016970391641 40.860810780483085, -73.80169233867713 40.860808012395324, -73.80168766792842 40.86080521554277, -73.80168302572906 40.8608023908238, -73.80167841445136 40.86079953824255, -73.80167383290909 40.86079665779697, -73.80166928110238 40.86079374948704, -73.80166476021455 40.86079081421533, -73.80166027024562 40.860787851981804, -73.80165581119822 40.86078486188599, -73.80165138425318 40.86078184573092, -73.80164698822966 40.86077880171358, -73.80164262549187 40.860775732539516, -73.80163829367298 40.860772636403674, -73.80163399514245 40.860769514210624, -73.80162972989764 40.860766366860815, -73.80162549675774 40.86076319255134, -73.80162129808699 40.860759993987664, -73.80161713270456 40.86075676936675, -73.80161300179388 40.86075351959121, -73.8016089041662 40.86075024555945, -73.80160484101026 40.860746946373034, -73.80160081350951 40.86074362293451, -73.80159682047778 40.860740275241795, -73.80159286191514 40.860736903294914, -73.80158894019101 40.86073350799846, -73.80158505293595 40.86073008844786, -73.80158120251673 40.86072664644814, -73.80157738893867 40.86072318019839, -73.8015736098217 40.86071969239594, -73.80156986873193 40.860716180345484, -73.80156616447532 40.86071264674643, -73.80156249824066 40.86070909070035, -73.80155886765571 40.86070551220316, -73.80155527627602 40.86070191216144, -73.8015517217295 40.860698290571186, -73.80154820520215 40.86069464743437, -73.80154472787744 40.86069098365355, -73.80154128857184 40.86068729832619, -73.80153788846887 40.86068359235486, -73.80153452637977 40.86067986663799, -73.80153120467922 40.860676120279145, -73.8015279209925 40.86067235417476, -73.80152467769447 40.86066856742848, -73.80152147359357 40.860664761839125, -73.80151831106204 40.860660937410906, -73.80151518772762 40.86065709413967, -73.80151210477919 40.860653231126996, -73.8015090622113 40.86064935017387, -73.80150606002664 40.86064545037976, -73.80150309940592 40.86064153354777, -73.8015001803518 40.8606375987773, -73.8014973028643 40.86063364606849, -73.80149446575733 40.86062967541921, -73.80149167139766 40.86062568863453, -73.80148891860188 40.86062168481195, -73.80148620736726 40.86061766485194, -73.80148353887998 40.86061362875655, -73.80148091313994 40.86060957652577, -73.80147832896111 40.860605508157605, -73.80147578871292 40.860601424556585, -73.80147329002588 40.86059732481819, -73.8014708352641 40.86059321164789, -73.80146842443567 40.86058908234426, -73.80146605634636 40.86058493960676, -73.80146373099892 40.860580782534896, -73.80146144957943 40.86057661113065, -73.80145921327116 40.86057242629661, -73.8014570197021 40.86056822802872, -73.80145487005551 40.86056401722942, -73.8014527655202 40.860559793000355, -73.80145070490738 40.860555556239945, -73.80144868821706 40.86055130694817, -73.8014467166326 40.860547046027605, -73.80144479015671 40.86054277257771, -73.80144290878397 40.86053848839951, -73.80144107133106 40.860534192590436, -73.80143928016732 40.86052988605509, -73.80143753292064 40.860525568789406, -73.8014358319632 40.860521240797425, -73.80143417610617 40.86051690297761, -73.80143256653564 40.86051255533204, -73.80143100206553 40.86050819785862, -73.80142948269317 40.860503831457876, -73.80142800960725 40.86049945523137, -73.80142658280242 40.860495070980036, -73.80142520109528 40.860490677801394, -73.80142386685533 40.8604862766, -73.80142257771035 40.86048186737178, -73.80142133484371 40.86047745101922, -73.80142013944423 40.86047302664393, -73.801418989137 40.86046859514229, -73.80141788629145 40.86046415741886, -73.80141682972427 40.86045971257115, -73.80141581943003 40.86045526240012, -73.8014148566002 40.86045080510685, -73.80141394004328 40.860446342490235, -73.8014130697592 40.8604418745503, -73.80141224693149 40.86043740218956, -73.80141147156273 40.86043292450756, -73.80141074246683 40.86042844150226, -73.8014100608245 40.8604239549766, -73.80140942663571 40.86041946493069, -73.80140883871712 40.86041497046195, -73.80140829825207 40.86041047247292, -73.80140780523787 40.86040597186407, -73.80140735849112 40.860401467732856, -73.80140695919252 40.86039696188233, -73.80140660853078 40.86039245341408, -73.80140630413105 40.86038794322442, -73.80140604718217 40.86038343041499, -73.80140583649258 40.860378916784654, -73.8014056744345 40.860374402337584, -73.8014055598218 40.86036988707161, -73.80140549146839 40.860365370984816, -73.80140547174643 40.860360854081215, -73.80140549827837 40.86035633815774, -73.801405573439 40.860351822317924, -73.80140569485629 40.86034730655777, -73.80140586371347 40.86034279177972, -73.80140608119402 40.86033827888636, -73.80140634492838 40.86033376697313, -73.80140665609999 40.8603292569425, -73.80140701352278 40.860324748792465, -73.8014074195688 40.860320242527074, -73.80140787304937 40.86031573904484, -73.80140837277568 40.86031123924415, -73.80140891993919 40.86030674132613, -73.80140951453181 40.86030224799214, -73.80141015537286 40.86029775743927, -73.80141084482905 40.860293271472514, -73.80141158052821 40.860288790087836, -73.80141236247046 40.86028431328518, -73.8014131918417 40.860279841066564, -73.801414068642 40.860275373432096, -73.8014149916799 40.86027091218067, -73.80141596214686 40.860266455513255, -73.80141697884872 40.86026200612937, -73.80141804179081 40.860257562228036, -73.80141915215383 40.86025312561226, -73.80142030756838 40.860248695377415, -73.80142151040654 40.86024427152766, -73.80142275947684 40.86023985586188, -73.80142405477928 40.86023544838009, -73.80142539631656 40.86023104818175, -73.80142678408596 40.860226656167434, -73.80142821808481 40.86022227323758, -73.80142969712973 40.86021789848968, -73.80143122358746 40.860213533728746, -73.8014327939051 40.86020917714768, -73.80143441044952 40.860204830551595, -73.80143607321791 40.86020049484095, -73.80143778102962 40.86019616821272, -73.80143953387929 40.8601918524679, -73.80144133176687 40.8601875476064, -73.80144317588113 40.860183252729875, -73.80144506384187 40.86017897053571, -73.80144699684048 40.8601746992249, -73.80144897487435 40.86017043969791, -73.80145099794339 40.860166191954846, -73.80145306485888 40.86016195689405, -73.80145517562083 40.860157734515575, -73.80145733141252 40.860153525721906, -73.80145953105068 40.860149329610586, -73.80146177453526 40.860145146181544, -73.80146406186086 40.86014097723578, -73.80146639303015 40.860136821872764, -73.80146876685444 40.860132680991, -73.80147118451971 40.86012855459253, -73.80147364602598 40.8601244426773, -73.80147615018451 40.86012034614373, -73.80147869699799 40.860116264091424, -73.80148128646097 40.860112198321296, -73.8014839185762 40.860108147932856, -73.80148659334101 40.860104113826594, -73.80148931075527 40.86010009600252, -73.80149206844428 40.86009609535701, -73.80149486997159 40.86009211009527, -73.80149771177086 40.86008814291258, -73.80150059621698 40.86008419291252, -73.80150352093774 40.86008026009103, -73.80150648830268 40.8600763453527, -73.80150949475353 40.86007244869138, -73.8015125438485 40.86006857011318, -73.80151563202672 40.86006471051246, -73.80151873199527 40.86006087434476, -73.8015218710498 40.86005705625404, -73.80152505037091 40.86005325804335, -73.8015282699613 40.86004947881221, -73.80153152863222 40.86004571945898, -73.80153482756972 40.86004197998581, -73.80153816440166 40.86003826038851, -73.80154154150023 40.86003456067125, -73.80154495649056 40.86003088173035, -73.80154841055601 40.86002722446839, -73.80155190251591 40.86002358708233, -73.80155543236488 40.86001997137315, -73.80155900128901 40.860016377342916, -73.80156260691608 40.86001280498747, -73.80156624924354 40.860009255207395, -73.80156992946273 40.86000572620366, -73.80157364756559 40.86000222067774, -73.8015774011827 40.859998737725135, -73.80158119150015 40.859995277347764, -73.80158501851786 40.85999183954576, -73.80158888104715 40.85998842521748, -73.80159277908533 40.85998503526341, -73.80159671263776 40.859981667882614, -73.80160068169899 40.85997832487598, -73.80160468626914 40.859975006243616, -73.80160872516208 40.85997171198342, -73.80161279837787 40.85996844209538, -73.8016169059137 40.85996519748002, -73.80162104777241 40.859961977236786, -73.80162522276515 40.85995878226419, -73.80162943089194 40.85995561256216, -73.80163367333886 40.85995246813281, -73.80163794773108 40.85994934987252, -73.8016422552547 40.859946257783264, -73.8016465947236 40.859943191863046, -73.80165096613786 40.85994015211188, -73.80165536949467 40.8599371394302, -73.80165980479687 40.85993415291763, -73.80166427085565 40.85993119347248, -73.80166876885706 40.85992826109681, -73.80167329642626 40.85992535668707, -73.80167785475207 40.859922479344824, -73.80168244264836 40.85991962906795, -73.80168706129592 40.859916807659545, -73.8016917083279 40.859914013314494, -73.80169638492505 40.85991124783585, -73.8017010910874 40.859908511223566, -73.80170582563146 40.85990580257516, -73.80171058736863 40.85990312278904, -73.80171537867095 40.859900471869246, -73.80172019716632 40.85989784981181, -73.80172504285207 40.85989525751711, -73.8017299145448 40.85989269408267, -73.80173481461398 40.859890160413, -73.80173974068747 40.859887656504114, -73.80174469276263 40.8598851832564, -73.80174967084481 40.85988273886892, -73.80175467374252 40.859880325140644, -73.80175970264197 40.85987794207351, -73.80176475635695 40.85987558966557, -73.80176983488755 40.85987326791678, -73.8017749370504 40.85987097592461, -73.80178006283744 40.859868716390544, -73.8017852122567 40.85986648661312, -73.80179038530018 40.85986428929374, -73.80179558197324 40.85986212263147, -73.80180079990103 40.85985998752272, -73.8018060414558 40.85985788397157, -73.80181130426257 40.859855812874365, -73.80181658832419 40.859853773330705, -73.80182189364062 40.85985176534057, -73.80182722020648 40.85984979070486, -73.80183256802711 40.85984784762265, -73.80183793472779 40.859845936990375, -73.80184332149453 40.85984405881005, -73.80184872832473 40.85984221398213, -73.80185415522364 40.85984040070566, -73.8018595998112 40.85983862167799, -73.80186506327881 40.859836875100264, -73.80187054443772 40.85983516187083, -73.8018760444767 40.85983348109134, -73.80188156101825 40.8598318345586, -73.80188709525112 40.8598302213742, -73.80189264598933 40.85982864153611, -73.80189821323279 40.8598270950443, -73.80190379579284 40.859825582797214, -73.80190939485819 40.85982410389645, -73.80191500924012 40.85982265924037, -73.80192063893863 40.859821248829114, -73.8019262827677 40.85981987266046, -73.80193194072727 40.859818530734536, -73.80193761281743 40.85981722305134, -73.80194329904077 40.85981594871029, -73.80194899701722 40.8598147104089, -73.80195470912695 40.85981350544964, -73.80196043299244 40.85981233562948, -73.80196616979985 40.85981120095048, -73.80197191836568 40.859810100510124, -73.80197767750397 40.859809034306316, -73.8019834472093 40.85980800414002, -73.80198922867318 40.85980700821235, -73.80199502070681 40.85980604742174, -73.80200082093818 40.85980512176412, -73.80200663173929 40.859804231243544, -73.80201245192146 40.85980337675846, -73.80201828149009 40.85980255650792, -73.80202411806772 40.859801772288776, -73.80202996284305 40.85980102320266, -73.80203581581611 40.85980030924948, -73.8020416769869 40.859799630429265, -73.80204754398063 40.85979898763846, -73.80205341798339 40.85979838087906, -73.80205929781182 40.859797809248604, -73.80206518346588 40.859797272747, -73.80207107494297 40.85979677227481, -73.80207697105699 40.859796307829974, -73.80208287181063 40.85979587851201, -73.80208877720128 40.85979548522134, -73.80209468604278 40.859795127956026, -73.802100599524 40.85979480581755, -73.80210651526738 40.85979452060287, -73.8021124332783 40.85979427051096, -73.8021183547429 40.85979405554388, -73.80212427846972 40.8597938775006, -73.80213020327541 40.8597937354785, -73.80213612916259 40.859793628577194, -73.80214205731478 40.859793557699156, -73.80214798417371 40.859793522838295, -73.8021539121115 40.859793523998675, -73.80215983994223 40.859793561178265, -73.80216576766843 40.85979363347658, -73.80217169409877 40.85979374269256, -73.80217761923863 40.85979388702519, -73.80218354189925 40.859794067373016, -73.80218946326673 40.859794283738, -73.80219538215499 40.859794536118095, -73.80220129737803 40.85979482451134, -73.8022072101245 40.85979514801922, -73.80221311920577 40.85979550754024, -73.80221902462183 40.85979590307435, -73.80222492518662 40.859796334619524, -73.80223082090284 40.8597968012753, -73.80223671176776 40.85979730394215, -73.80224259659808 40.85979784171758, -73.80224847657719 40.8597984155041, -73.802254350519 40.859799025299615, -73.80226021724012 40.85979967020174, -73.80226607674066 40.85980035021034, -73.80227192901788 40.85980106622596, -73.80227777407447 40.8598018173481, -73.8022836107217 40.85980260447528, -73.80228943896223 40.85980342670696, -73.80229525879616 40.85980428404311, -73.80230106903738 40.859805176481764, -73.8023068696859 40.85980610402284, -73.80231265955572 40.85980706666439, -73.8023184398328 40.85980806440843, -73.80232421051728 40.85980909725495, -73.80232996923961 40.85981016429942, -73.80233571599456 40.859811267342764, -73.80234145197342 40.85981240458606, -73.80234717480421 40.85981357602528, -73.80235288685626 40.859814782564925, -73.80235858457155 40.85981602419895, -73.80236426913864 40.85981730002891, -73.8023699405604 40.859818609154246, -73.8023755976453 40.85981995337399, -73.80238124158215 40.859821331789604, -73.80238686999874 40.85982274439709, -73.80239248289521 40.859824191196466, -73.80239808145755 40.859825672189714, -73.80240366331637 40.8598271864723, -73.80240922965507 40.85982873494672, -73.80241477929015 40.85983031671048, -73.80242031222176 40.85983193176362, -73.80242582844988 40.85983358010613, -73.80243132678574 40.859835262636416, -73.802436807232 40.85983697845402, -73.8024422697914 40.85983872665847, -73.80244771327526 40.85984050814821, -73.80245313768346 40.859842322923264, -73.80245854301879 40.85984417008313, -73.80246392928119 40.859846049627784, -73.80246929528198 40.85984796245575, -73.80247464220984 40.85984990766854, -73.80247996650932 40.85985188435958, -73.80248527173589 40.85985389343543, -73.80249055433146 40.85985593489, -73.80249581548205 40.859858008725396, -73.80250105519032 40.85986011404106, -73.8025062722702 40.859862250834965, -73.8025114667217 40.85986441910717, -73.8025166385449 40.85986661885758, -73.80252178773979 40.859868850086315, -73.80252691193682 40.859871111888765, -73.8025320135056 40.85987340516951, -73.80253709007656 40.85987572902397, -73.80254214164972 40.85987808345216, -73.80254716822519 40.859880468454094, -73.8025521709889 40.85988288403176, -73.80255714757152 40.85988532928069, -73.80256209797028 40.859887805101366, -73.8025670221879 40.85989031059323, -73.80257192022444 40.859892845756335, -73.80257679089377 40.8598954105887, -73.80258163538203 40.85989800509227, -73.80258645131966 40.859900628362524, -73.80259124107621 40.85990328130408, -73.80259600228217 40.8599059630123, -73.80260073375153 40.85990867348522, -73.80260543785909 40.859911411826396, -73.80261011341611 40.85991417893426, -73.80261475923653 40.85991697480684, -73.802619375323 40.859919798543636, -73.80262396167821 40.85992264924414, -73.80262851829681 40.85992552870934, -73.80263304399811 40.859928435136254, -73.80263753996552 40.85993136942742, -73.80264200383218 40.85993432977775, -73.8026464367789 40.85993731799026, -73.8026508388083 40.85994033316449, -73.80265520873702 40.859943374397936, -73.80265954656505 40.85994644169062, -73.80266385229235 40.85994953504247, -73.8026681247303 40.85995265535204, -73.80267236388408 40.85995580081827, -73.80267657093992 40.859958971443234, -73.80268074470902 40.85996216812541, -73.80268488400792 40.85996538996225, -73.80268898883938 40.85996863605328, -73.80269306038679 40.85997190730105, -73.80269709746405 40.85997520370352, -73.80270109889045 40.85997852345768, -73.8027050658467 40.85998186836656, -73.80270899833812 40.85998523662914, -73.80271289399272 40.85998862824141, -73.80271675517976 40.8599920441079, -73.80272057953256 40.85999548242355, -73.80272436704847 40.85999894408896, -73.8027281189135 40.86000242910604, -73.80273183394429 40.860005936572314, -73.80273551214347 40.860009465587325, -73.80273915350841 40.86001301705155, -73.80274275685304 40.86001659096299, -73.80274632218001 40.86002018642111, -73.80274985067534 40.86002380342795, -73.80275330780182 40.86002748965064, -73.8027567269106 40.86003119741999, -73.80276010681833 40.860034925833546, -73.80276344634161 40.86003867398881, -73.80276674785256 40.86004244188986, -73.80277000897642 40.860046230433056, -73.80277323090452 40.860050037819505, -73.80277641244815 40.86005386494768, -73.80277955479605 40.860057710919065, -73.80278265557611 40.86006157572967, -73.80278571597432 40.8600654593815, -73.80278873480468 40.86006936187255, -73.80279171444195 40.86007328230634, -73.80279465133066 40.86007721977639, -73.80279754784017 40.860081175187155, -73.80280040159839 40.8600851485346, -73.80280321498012 40.86008913892236, -73.80280598561588 40.86009314544582, -73.8028087146891 40.86009716900755, -73.8028114010137 40.86010120960552, -73.80281404459501 40.86010526543873, -73.80281664661634 40.86010933740969, -73.80281920470836 40.86011342461389, -73.8028217212404 40.860117527955886, -73.80282419384575 40.860121645630606, -73.80282662252169 40.860125778538595, -73.80282900845697 40.86012992578135, -73.8028313516516 40.86013408735888, -73.80283364973607 40.86013826236669, -73.80283590507985 40.860142451709294, -73.80283811649686 40.860146655384625, -73.80284028280909 40.86015087068924, -73.80284240519448 40.86015510032665, -73.80284448366116 40.860159341595356, -73.80284651701763 40.8601635962943, -73.80284850645799 40.86016786172409, -73.80285045078818 40.86017214058414, -73.80285235001614 40.86017643017301, -73.80285420413925 40.86018073139117, -73.80285601316017 40.86018504333815, -73.80285777707884 40.86018936601391, -73.80285949589258 40.860193700319, -73.8028611684234 40.86019804354989, -73.80286279585201 40.8602023975096, -73.80286437818366 40.86020676039713, -73.80286591422701 40.860211134011514, -73.80286740399005 40.860215515651156, -73.8028688486561 40.860219906218695, -73.80287024585309 40.86022430571001, -73.80287159795586 40.86022871322872, -73.80287290377554 40.86023312967326, -73.80287416331755 40.86023755324263, -73.80287537539576 40.86024198393481, -73.80287654238235 40.860246421753885, -73.80287766190514 40.86025086669579, -73.80287873515016 40.860255318762576, -73.80287976212014 40.8602597770537, -73.80288074163164 40.86026424066672, -73.8028816748681 40.860268710504066, -73.80288256064333 40.860273186563816, -73.80288340014879 40.86027766704693, -73.80288419219843 40.860282151951445, -73.80288493678957 40.860286642177805, -73.80288563511081 40.86029113682757, -73.80288628597626 40.86029563589876, -73.80288688939115 40.86030013759028, -73.80288744535014 40.86030464370324, -73.80288795504195 40.86030915333908, -73.80288841728591 40.86031366469489, -73.80288883207656 40.86031817957156, -73.80288919941663 40.860322697068646, -73.80288951930874 40.86032721628561, -73.8028897917529 40.86033173722254, -73.80289001675186 40.86033625897887, -73.80289019430012 40.860340783355625, -73.80289032440572 40.86034530765135, -73.8028904070661 40.860349832766474, -73.80289044228108 40.86035435870105, -73.80289043124212 40.86035888365609, -73.80289037157182 40.860363409428565, -73.80289026446144 40.860367934219504, -73.80289010990838 40.86037245892935, -73.802889907918 40.86037698175719, -73.80288965967357 40.860381503605524, -73.80288936280576 40.860386023569774, -73.8028890185005 40.860390541652, -73.80288862794661 40.86039505695372, -73.80288818876922 40.86039957037142, -73.80288770334315 40.860404081008596, -73.80288717048228 40.86040858886325, -73.80288659018935 40.860413093034914, -73.8028859624643 40.860417593523586, -73.80288528730713 40.860422090329195, -73.80288456590655 40.86042658255336, -73.8028837970765 40.860431070194046, -73.80288298081697 40.8604355532512, -73.802882118314 40.86044003172687, -73.80288120838686 40.860444503818094, -73.80288025103026 40.86044897132581, -73.80287924743547 40.86045343245103, -73.80287819760261 40.86045788719383, -73.80287710153165 40.86046233555419, -73.80287595803908 40.86046677662954, -73.8028747671223 40.860471211320416, -73.80287353115614 40.860475638730385, -73.8028722489571 40.8604800579569, -73.80287091933656 40.86048446989842, -73.8028695434831 40.86048887365653, -73.80286812258286 40.86049326923318, -73.80286665545515 40.86049765482546, -73.80286514209449 40.860502032234315, -73.8028635825037 40.86050640055918, -73.80286197787136 40.86051075890166, -73.80286032700882 40.86051510816023, -73.80285863110747 40.86051944653586, -73.80285689016458 40.860523774929106, -73.80285510299676 40.86052809243741, -73.80285327079017 40.86053239906286, -73.80285139354729 40.860536693904905, -73.80284947126562 40.860540977864076, -73.80284750513376 40.860545250041824, -73.8028454927796 40.86054951043417, -73.80284343657802 40.860553758144704, -73.80284133652624 40.86055799407382, -73.80283919144357 40.86056221641859, -73.80283700132736 40.86056642607946, -73.80283476855234 40.860570622160004, -73.80283249193512 40.86057480375771, -73.80283017028438 40.860578972671505, -73.80282780597744 40.86058312710446, -73.80282539782831 40.860587267054605, -73.80282294583704 40.8605913925219, -73.80282045237833 40.860595502609875, -73.80281791389397 40.86059959731247, -73.80281533393956 40.86060367753626, -73.80281271133431 40.86060774147826, -73.80281004489218 40.86061178913642, -73.80280733698531 40.86061582051476, -73.80280458761096 40.8606198365138, -73.80280179559114 40.86062383443004, -73.80279896092047 40.860627816064444, -73.80279608597374 40.86063178052058, -73.80279316838147 40.860635726893925, -73.80279021051322 40.860639656089006, -73.80278721118543 40.86064356720329, -73.80278417039825 40.860647460236734, -73.8027810893403 40.86065133429097, -73.80277796801164 40.86065518936595, -73.80277480640959 40.86065902636213, -73.80277160335336 40.86066284347654, -73.80276836239852 40.86066664161575, -73.80276507999228 40.86067041897269, -73.80276175968737 40.86067417735439, -73.80275839911442 40.860677915856336, -73.80275499946475 40.86068163267955, -73.80275156073311 40.86068532962504, -73.80274808410819 40.86068900579429, -73.80274456840388 40.86069266118532, -73.80274101481163 40.86069629399913, -73.8027374233261 40.86069990603678, -73.80273379394995 40.86070349639764, -73.80273012787192 40.86070706418339, -73.80272642271727 40.86071061029037, -73.80272268204675 40.86071413382419, -73.80271890348823 40.860717634780826, -73.80271508941665 40.86072111226375, -73.8027112386458 40.86072456627108, -73.80270735117308 40.86072799770313, -73.80270342818721 40.860731405661575, -73.80269946969088 40.86073478924587, -73.80269547687011 40.860738148458005, -73.80269144735016 40.86074148419448, -73.80268738350581 40.8607447955588, -73.80268328533967 40.8607480816505, -73.80267915284918 40.86075134337008, -73.80267498603692 40.860754579817005, -73.80267078608901 40.860757790993326, -73.80266655182204 40.86076097599654, -73.80266228441674 40.860764136629584, -73.8026579838811 40.860767270191076, -73.80265365139589 40.860770378483956, -73.80264928578038 40.86077345970527, -73.80264488821527 40.86077651565797, -73.80264045870861 40.860779543640575, -73.80263599844112 40.86078254545613, -73.80263150504325 40.860785520200075, -73.80262698207335 40.86078846787849, -73.80262242834793 40.860791387588854, -73.80261784386441 40.86079428023163, -73.80261322862532 40.86079714490639, -73.80260858381686 40.86079998161509, -73.80260390943901 40.86080279035776, -73.80259920549442 40.860805570233886, -73.80259447316651 40.86080832214602, -73.80258971245794 40.86081104519363, -73.80258492218263 40.86081373937471, -73.80258010471543 40.86081640379279, -73.8025752588649 40.86081904024688, -73.80257038582249 40.86082164693796, -73.80256548558823 40.86082422386608, -73.80256055934814 40.86082677103325, -73.8025556059161 40.86082928843744, -73.80255062529224 40.86083177607862, -73.80254561985134 40.86083423306039, -73.80254058840463 40.86083666028118, -73.80253553214088 40.86083905684256, -73.80253044987401 40.860841422742425, -73.80252534397884 40.86084375708443, -73.80252021326399 40.86084606166747, -73.80251505892086 40.86084833469264, -73.80250988094946 40.86085057615988, -73.80250467934714 40.8608527869697, -73.80249945530258 40.86085496622367, -73.80249420762979 40.86085711391973, -73.80248893751754 40.86085922915939, -73.80248364614914 40.8608613128452, -73.80247833352732 40.86086336407667, -73.80247299846337 40.86086538375222, -73.8024676433321 40.86086737097547, -73.80246226694744 40.86086932574435, -73.80245687049545 40.86087124806091, -73.80245145397618 40.86087313792513, -73.80244601739224 40.860874994436514, -73.80244056192707 40.8608768184976, -73.80243508758342 40.86087860920792, -73.80242959436121 40.8608803665674, -73.80242408344385 40.860882091478594, -73.80241855483676 40.86088378214055, -73.80241300734846 40.860885440352206, -73.80240744335651 40.86088706431657, -73.80240186285818 40.86088865493422, -73.80239626585623 40.86089021130465, -73.80239065234792 40.86089173432829, -73.80238502352208 40.86089322310672, -73.80237937819257 40.860894677637894, -73.80237371873154 40.860896097925895, -73.80236804395034 40.86089748486916, -73.8023623562264 40.86089883667076, -73.80235665318499 40.86090015422717, -73.80235093601209 40.86090143754039, -73.80234520708258 40.86090268571398, -73.80233946402161 40.860903899644335, -73.80233370920406 40.8609050784351, -73.80232794262726 40.86090622298672, -73.8023221631078 40.86090733239669, -73.8023163730179 40.86090840666905, -73.8023105711687 40.86090944670224, -73.80230475875176 40.860910450697375, -73.80229893576158 40.86091142045539, -73.80229310338979 40.86091235417731, -73.80228726044753 40.86091325276169, -73.80228140930693 40.860914116212484, -73.80227554878205 40.86091494452772, -73.80226968006156 40.860915736808906, -73.80226380314278 40.86091649395654, -73.80225791921184 40.86091721597268, -73.80225202708537 40.86091790195481, -73.80224612794937 40.86091855190489, -73.80224022180128 40.86091916672346, -73.80223430982979 40.860919745512064, -73.8022283920322 40.860920289171155, -73.80222246841127 40.860920796800286, -73.8022165401531 40.860921268401505, -73.80221060725765 40.86092170397473, -73.80220466972496 40.860922103520075, -73.8021987275523 40.86092246793788, -73.80219278192847 40.86092279632984, -73.8021868340396 40.860923088697895, -73.80218088269959 40.86092334504006, -73.80217492790842 40.860923565356245, -73.80216897203832 40.86092374965064, -73.80216301508922 40.860923897923186, -73.80215705587511 40.86092401017185, -73.80215109558202 40.860924086398626, -73.8021451342101 40.860924126603585, -73.80213917413131 40.86092413079078, -73.80213321297094 40.86092409985658, -73.80212725310658 40.860924032004135, -73.8021212933493 40.86092392813189, -73.80211533488537 40.860923788241806, -73.8021093789008 40.86092361233602, -73.80210342420678 40.860923401312945, -73.80209747199487 40.860923153373626, -73.80209152226233 40.86092286941857, -73.80208557619254 40.86092255035029, -73.80207963379095 40.860922194367824, -73.80207369505219 40.86092180327213, -73.80206776116499 40.860921376164775, -73.80206183094326 40.86092091304369, -73.80205590675929 40.86092041391296, -73.80204998742687 40.86091987877058, -73.80204407412947 40.860919308519065, -73.80203816686975 40.860918702257884, -73.80203226683116 40.86091806088961, -73.8020263728303 40.86091738351171, -73.80202048605327 40.8609166701262)), ((-73.81074894490771 40.868606679423806, -73.81082828670283 40.868602400719716, -73.81090776863772 40.8686047344948, -73.81098643828282 40.86861365217389, -73.81106366087663 40.868630878960126, -73.81113786764907 40.86865454286983, -73.81120813064778 40.86868434792998, -73.81127356958129 40.868719921705754, -73.81133336841248 40.86876081982949, -73.81138677771767 40.86880653050664, -73.81143313008702 40.868856481744174, -73.81147184603253 40.86891004946415, -73.81150244108827 40.86896656381816, -73.81152453290277 40.86902531820331, -73.81154144888214 40.869083781376425, -73.8115501948041 40.86914326766889, -73.81155067522936 40.8692031231704, -73.81154288489152 40.86926268691236, -73.81151890867389 40.8693267572867, -73.81148597229061 40.869388492453346, -73.8114444597337 40.869447170838704, -73.8113948557179 40.86950211065396, -73.81133773737511 40.86955267078257, -73.81127305636794 40.869592892587804, -73.8112028140367 40.86962732230691, -73.8111279084288 40.869655522860725, -73.8110492907632 40.869677132900165, -73.81096796658281 40.86969187851467, -73.81088497084698 40.8696995713913, -73.8108013608027 40.86970011240486, -73.81071820410749 40.86969349610131, -73.810636559861 40.869679806164314, -73.81062083487521 40.86967571284199, -73.810557467922 40.86965921719829, -73.81048193942725 40.869631991110815, -73.81041093425684 40.86959847527422, -73.81034535748725 40.86955909801691, -73.81028604755383 40.869514359598234, -73.81024004229796 40.8694676178248, -73.81020064927552 40.86941751637182, -73.81016828924241 40.869364592630696, -73.81014331050815 40.86930941268849, -73.81012597945724 40.86925256771018, -73.8101164829402 40.86919466763892, -73.81011492118314 40.869136332179195, -73.81012131135772 40.8690781872007, -73.81013558642432 40.86902085483095, -73.81015759158475 40.86896494984755, -73.81018886951036 40.86890943201552, -73.81022795742597 40.86885684370857, -73.81027438733365 40.868807815393545, -73.81032760002037 40.86876293596393, -73.81038695932124 40.86872274285866, -73.81045175331617 40.86868771846238, -73.81052120265389 40.86865828291608, -73.8105944771737 40.868634788741645, -73.81067069591005 40.868617519041514, -73.81074894490771 40.868606679423806)), ((-73.82669114897591 40.85851649596144, -73.82663553619365 40.858447562584374, -73.82657343924663 40.85838189632368, -73.82650519287307 40.85831984976482, -73.82650538890833 40.85832062898528, -73.8264807904455 40.858299749201564, -73.8264224996519 40.85825548787716, -73.82636100466816 40.85821380071, -73.8262974885432 40.858176738095906, -73.82623086478483 40.85814296746785, -73.82465789850451 40.857449747986635, -73.82465767065875 40.857443499124244, -73.82450580105642 40.85737597352233, -73.82435646293928 40.85731689909177, -73.8242038025754 40.857262941405196, -73.82411244815953 40.857234343909575, -73.82404812446143 40.8572142071721, -73.82388973785613 40.857170795006205, -73.82378569813567 40.85715292256168, -73.82367764871982 40.85713275124166, -73.82356868750372 40.85711564190099, -73.82356106601792 40.85706741788325, -73.82395631100837 40.85700062430493, -73.82451965420447 40.85691730179605, -73.82452038273483 40.85691673109145, -73.82456024869164 40.85691156616322, -73.82463799586529 40.856903235043234, -73.82546992322564 40.856814080815944, -73.825524718008 40.856808208738585, -73.82547138903733 40.85682315639472, -73.82540033002633 40.85684953686151, -73.82533384347087 40.856882070968084, -73.82527284970134 40.85692030806889, -73.82521819098426 40.85696371905848, -73.82517062557349 40.85701170356594, -73.82513080990088 40.85706359713093, -73.82509929736412 40.857118681106975, -73.82507889882676 40.857168841823956, -73.82507396481903 40.85718469471483, -73.82506543433536 40.85722011705466, -73.82506049300956 40.85725317834212, -73.82505992029708 40.85725898925122, -73.82505897360193 40.857271710871856, -73.82505970492275 40.85732689234935, -73.82506827683427 40.85738169219964, -73.82506885616704 40.85738418654124, -73.82506891363043 40.85738443426378, -73.82508752772813 40.85744188687982, -73.82511487874011 40.8574972879074, -73.82515059035123 40.85754987405313, -73.82519416990773 40.85759892146748, -73.82524501906674 40.85764375476663, -73.82530243614377 40.85768375604141, -73.82536563032136 40.85771837388426, -73.8254337311134 40.857747132409344, -73.82550580021666 40.85776963487286, -73.82550586066355 40.85776965027266, -73.8255101002052 40.85777074537971, -73.82556496144035 40.857782794980054, -73.82560275121604 40.85778889441202, -73.82563344065316 40.85779258148804, -73.82568995405319 40.857796489474076, -73.82570434067472 40.85779689571923, -73.82577622377788 40.857795378903205, -73.82585394241292 40.85778831751523, -73.82593001634862 40.8577743306092, -73.8260033799949 40.85775361559009, -73.82607300428921 40.857726462671245, -73.82613398878186 40.8576955101207, -73.82619008072832 40.85765961907173, -73.82624058989452 40.857619229733096, -73.82628489587368 40.857574840951045, -73.82632245048912 40.85752699850632, -73.8263645447931 40.85744203648545, -73.82669114897591 40.85851649596144)), ((-73.82623463431213 40.85676874449215, -73.82628862652321 40.85707874195072, -73.82629843898287 40.85715890234266, -73.8263007514319 40.85723938912575, -73.82629555541084 40.857319797966696, -73.8262846036102 40.85737160570895, -73.82626611197344 40.85742216301872, -73.82624031340434 40.85747083989859, -73.8262075273275 40.857517029893096, -73.82616816441438 40.857560157300114, -73.82612271352123 40.85759968345486, -73.82607174166608 40.85763511573527, -73.82601161235657 40.85766469539172, -73.82594699083901 40.85768818991723, -73.82587894200479 40.85770521189874, -73.82580858264973 40.857715482963336, -73.82573707080066 40.85771883286188, -73.8256655831581 40.85771520753975, -73.8255952937557 40.857704665502744, -73.82552735853044 40.85768738139552, -73.82546828661243 40.85766598640204, -73.82541280600466 40.85763962429456, -73.82536163929039 40.8576086374584, -73.82531545195897 40.85757342942698, -73.82527484412243 40.85753445766456, -73.82524034459743 40.857492229054635, -73.82521240143367 40.85744729358175, -73.82519215371225 40.85739268766851, -73.82518099364479 40.857336595301504, -73.82517909445728 40.85727988482039, -73.82518648465451 40.85722343424889, -73.82520304924407 40.857168117789115, -73.82522853333577 40.85711479051875, -73.82526254098148 40.85706427938476, -73.82530986330158 40.857020783426265, -73.82536262301387 40.85698105703544, -73.82542030436022 40.85694549203911, -73.82548233714624 40.85691443605805, -73.82554811571022 40.85688819523729, -73.825616991828 40.85686702613164, -73.82568828893734 40.85685113842857, -73.82586925157713 40.8568193829856, -73.82605142443165 40.856791910024405, -73.82623463431213 40.85676874449215)), ((-73.81598841328378 40.88773624532306, -73.81592416768804 40.88773683535969, -73.8158604078722 40.88773082736269, -73.81579830468311 40.88771833216027, -73.81573899779092 40.8876995775968, -73.8156835778864 40.887674909404325, -73.81567807077579 40.88767201724897, -73.81567457517053 40.88767501299195, -73.81562059443598 40.88764655601457, -73.81557137630693 40.887613497926125, -73.81552759585952 40.88757629455778, -73.81548985681977 40.88753545655665, -73.81545867852141 40.88749154576265, -73.81543448762287 40.887445167090526, -73.8154176193246 40.88739695772539, -73.81540830552187 40.8873475808002, -73.81539968349222 40.88707087957053, -73.81539212260238 40.88684833625542, -73.81569160619262 40.886806096620774, -73.81576720913992 40.88679499724146, -73.8158440277593 40.88679093526277, -73.81592092875844 40.88679397100853, -73.81599677795292 40.88680405854665, -73.8160704556794 40.88682104931533, -73.81614087696019 40.88684469395632, -73.81620700218073 40.88687464233129, -73.8162678548589 40.886910453455194, -73.8163225394322 40.88695159912574, -73.8163603963261 40.88699021464267, -73.81638846250002 40.88703203831854, -73.81640030447869 40.88705300790165, -73.8164252401944 40.88710872381447, -73.8164418415051 40.887166200428155, -73.81644990034349 40.88722472332865, -73.81644931665568 40.88728356386422, -73.81644009956439 40.88734198815182, -73.81643284682512 40.88738428872954, -73.81642032655985 40.88742587404604, -73.81640741782122 40.88747363878933, -73.81638611548331 40.88751964053147, -73.81635681343097 40.88756303343628, -73.81632004899194 40.887603020520835, -73.8162764957811 40.88763886715188, -73.81622695654198 40.88766991544305, -73.81617233938603 40.88769559502338, -73.81611364945653 40.88771543383057, -73.81605196161212 40.88772906707294, -73.81598841328378 40.88773624532306)), ((-73.8184985616535 40.873052758790045, -73.8184891167636 40.87317037493278, -73.81848651029 40.87317043746932, -73.81842862098341 40.874008528648766, -73.81839691418968 40.87493288546275, -73.81838225181397 40.87493306679963, -73.8183439021009 40.87476731454528, -73.81834629616876 40.8747685970091, -73.81830767098884 40.874619063023424, -73.81826265005266 40.87447056441712, -73.81821127924134 40.87432325703964, -73.81815361510893 40.8741772976569, -73.81808971895532 40.87403284214091, -73.81809870016045 40.874049464931254, -73.81802431040957 40.87387629332383, -73.81794172367657 40.87370527530955, -73.81785104854467 40.873536634363774, -73.81775240427727 40.873370591276014, -73.81764591963613 40.87320736234697, -73.81764969113648 40.87320727195418, -73.81741843497888 40.87289568166563, -73.81749905272837 40.872846609117424, -73.81759839178443 40.872893785260786, -73.81770202191002 40.872935302213875, -73.81780938614132 40.87297093576447, -73.81791990607012 40.87300049318528, -73.81803298421244 40.873023815039076, -73.81814801349431 40.873040776994664, -73.81826437014232 40.87305128711448, -73.81838143028777 40.87305528768189, -73.8184985616535 40.873052758790045)), ((-73.81484656511827 40.88607705907723, -73.81575338934178 40.884152668010195, -73.81580392543216 40.88415751225349, -73.81567929928069 40.884566658991545, -73.81550293890788 40.885162923534864, -73.81534344200668 40.88581081268482, -73.81526056381672 40.88616069069291, -73.81517909017519 40.88654323066061, -73.81485711957693 40.886562235432834, -73.81478754251513 40.886593163621846, -73.814804448907 40.88662575778998, -73.81437355568977 40.88664220730899, -73.81438557840102 40.88664961514572, -73.81414014025417 40.88665459070132, -73.81389461591006 40.886655164011806, -73.81400221044464 40.88662755109198, -73.81410700851615 40.88659431362383, -73.81420849824767 40.88655561467967, -73.81430618787199 40.88651164077856, -73.8143996009728 40.886462606380455, -73.81448828361229 40.88640875119633, -73.81457180434592 40.8863503347848, -73.81464975776271 40.886287643761506, -73.81472176451254 40.88622098189358, -73.81478747248515 40.88615067280261, -73.81484656511827 40.88607705907723)), ((-73.82662447566821 40.85587999294397, -73.82667558202651 40.8557641016057, -73.82667649576425 40.855764355116314, -73.82670282150153 40.85571416518969, -73.82673754201863 40.85566701081778, -73.82678006458632 40.855623696143574, -73.82682966263198 40.85558496117325, -73.82688548882119 40.855551468289356, -73.826946590513 40.85552378786682, -73.82701192519146 40.85550239289375, -73.82708037472206 40.85548764908796, -73.8271507726446 40.8554798086353, -73.82722191604535 40.85547900480461, -73.8272925904606 40.85548525198517, -73.82736158767422 40.855498442111845, -73.82742773179058 40.8555183510069, -73.82748989109064 40.855544639298195, -73.82754700529863 40.85557685606145, -73.82759809977536 40.85561445324855, -73.82764230092869 40.85565678841161, -73.82767885397033 40.855703137335595, -73.82770713473396 40.8557527102641, -73.82772666151773 40.855804659120416, -73.82773709858947 40.85585809822351, -73.82773827039239 40.85591211511483, -73.82773015557711 40.85596578585759, -73.82771289169645 40.856018194854286, -73.8276867751745 40.85606844745425, -73.8276522505948 40.85611568524581, -73.82760990947367 40.85615910226413, -73.82756047244351 40.856197955771115, -73.82750478565089 40.856231583359914, -73.82744379820407 40.85625941012589, -73.8273454559452 40.856291550152555, -73.82725341152532 40.85631536546794, -73.82717467726138 40.85633334744851, -73.82706753728692 40.856349415577334, -73.82664164235752 40.85639891942466, -73.82660142551475 40.856057104087924, -73.82660595261244 40.85599017188193, -73.82662447566821 40.85587999294397)), ((-73.8193977186171 40.87167583353526, -73.81945730792525 40.87167481737611, -73.81951645820251 40.8716803965897, -73.81957390759099 40.87169245304063, -73.81962843256746 40.87171072998008, -73.81967887046632 40.87173483748422, -73.8197241491105 40.87176426150438, -73.81976330219815 40.87179837649778, -73.81979549418715 40.871836455370634, -73.81982004160653 40.8718776848196, -73.81983642011161 40.871921188754435, -73.81984427988017 40.87196603822724, -73.81984345502782 40.872011279361715, -73.81982447882635 40.87209200568381, -73.81979689407615 40.872171288580915, -73.81976088605191 40.87224860064917, -73.8197166945688 40.87232342627467, -73.81966461277764 40.87239526883583, -73.8196049871728 40.87246364800203, -73.81953821637974 40.872528109637756, -73.81946474404263 40.872588223990505, -73.81938505880977 40.87264359109441, -73.81929969195649 40.87269384256781, -73.8192092126348 40.872738643407075, -73.81911422193446 40.87277769467939, -73.81901535287273 40.87281073712488, -73.81891326327593 40.87283755114584, -73.81880863459028 40.8728579577058, -73.81903357360288 40.87193488696507, -73.81904736051014 40.87189086831542, -73.81906944235713 40.87184884284738, -73.81909934811777 40.87180970490502, -73.81913644204056 40.87177428914082, -73.81917993319603 40.87174334981976, -73.81922889331045 40.87171754644031, -73.8192822817189 40.871697428465794, -73.81933895962716 40.871683425442015, -73.8193977186171 40.87167583353526)), ((-73.82679526235847 40.85717692432455, -73.82676605426761 40.85709818554774, -73.82674304029402 40.85701827101641, -73.8267263015191 40.85693746180977, -73.82670800240093 40.856860138763224, -73.82669633028686 40.8567820791593, -73.8266913341143 40.85670360995235, -73.8266950430193 40.85670214411922, -73.82707577240278 40.85666616982188, -73.82707474174484 40.85666891387833, -73.82715688427736 40.85666764480818, -73.82723880360817 40.85667239963934, -73.82731973727242 40.85668313400743, -73.8273989288792 40.85669974772859, -73.82747563997036 40.856722084817505, -73.82754915474963 40.85674993889674, -73.82761878602606 40.85678304780276, -73.8276187590117 40.85678294600675, -73.82766869790734 40.856817412215655, -73.82771227963832 40.85685653616125, -73.8277487551938 40.856899647666616, -73.82777749907866 40.85694600830147, -73.82779802114659 40.85699482220517, -73.82780996655445 40.85704525409614, -73.82781313234432 40.85709643830106, -73.82780746383828 40.85714749765952, -73.82779305816331 40.85719755703673, -73.82777016302697 40.85724575863011, -73.82773916838002 40.85729127636502, -73.82770060875681 40.85733332850555, -73.82765514187939 40.857371196533364, -73.82760354983215 40.857404229652644, -73.8275467164835 40.8574318618663, -73.82748561442084 40.85745361916108, -73.82742129187562 40.857469130294405, -73.82735485255988 40.857478126764875, -73.8272874342793 40.85748045718845, -73.82722019353432 40.85747607917126, -73.82715428177222 40.8574650691795, -73.82709082998645 40.85744761531223, -73.82703092499405 40.857424017265785, -73.82697559403532 40.8573946791062, -73.82692578462449 40.857360103835575, -73.82688235271226 40.857320884368775, -73.8268460413658 40.85727769269482, -73.82684449329265 40.857275538194855, -73.82683038298912 40.857254228478325, -73.82683056212147 40.85725421163784, -73.82679526235847 40.85717692432455)), ((-73.81154518335413 40.868798659687464, -73.81150889798099 40.86875513643348, -73.81146661067316 40.86871485503386, -73.81141882185605 40.868678291758926, -73.81136609258317 40.86864587525225, -73.81130904571467 40.86861798923427, -73.8112483528998 40.86859496167543, -73.81124652872286 40.86859529907704, -73.81124465540998 40.86859539506673, -73.81124278753714 40.86859524613177, -73.81124098084118 40.86859485776631, -73.8112392886736 40.868594239962995, -73.81123775961294 40.868593412612164, -73.8112364398551 40.868592399202065, -73.81123536727708 40.86859122861042, -73.81123457499066 40.868589936910986, -73.81123408305665 40.868588561056825, -73.81123390915317 40.86858714159881, -73.81123405790493 40.86858572086766, -73.8112345232633 40.868584340275994, -73.81123529325362 40.868583039425914, -73.81123634403652 40.868581858800376, -73.8112376446785 40.86858083076654, -73.8112391583149 40.868579987681755, -73.8112408398057 40.868579351984344, -73.81124263926853 40.86857894520461, -73.8112445032983 40.86857877625998, -73.81124637849496 40.86857885226716, -73.81124820911415 40.868579170433335, -73.81124994061562 40.86857972166456, -73.81132932765097 40.86856281960985, -73.81140578893488 40.86853940036919, -73.81147839839572 40.86850974699054, -73.8115462772007 40.86847421824209, -73.81160860562926 40.86843324502943, -73.8116646278389 40.868387323198725, -73.81171366730386 40.86833700725799, -73.81177653145443 40.86825043036955, -73.81183474718041 40.86816199895904, -73.81188821918639 40.868071858757574, -73.81242765703287 40.86695809928199, -73.81291229214285 40.86603498399082, -73.81291946933737 40.86603468405766, -73.8129266180018 40.86603524944984, -73.81293356025408 40.866036664570586, -73.81294012064048 40.86603889401641, -73.8129461344382 40.86604188259036, -73.81295145121423 40.8660455553078, -73.8129559371925 40.86604981920156, -73.81295947880216 40.86605456692902, -73.81298099498606 40.866068845773775, -73.81300503897734 40.866080572216546, -73.81303109076025 40.866089491474646, -73.81305858506612 40.86609541172682, -73.81308692561292 40.866098202335486, -73.81311549930656 40.86609780557599, -73.81311926397746 40.86609662752739, -73.81312322778734 40.86609592075809, -73.81312728985375 40.86609570581594, -73.81313134459502 40.8660959870324, -73.81313528764856 40.866096757034605, -73.81313901824323 40.86609799674894, -73.8131424392043 40.8660996736005, -73.81314546169047 40.86610174422181, -73.81314800993628 40.86610415536119, -73.81315001531846 40.86610684477372, -73.81315142939624 40.86610974394368, -73.81277713560672 40.8667652521799, -73.81220368862374 40.86781548506874, -73.81176939542613 40.86861786671126, -73.81164120515838 40.868899369767746, -73.81163946006212 40.86890193872073, -73.81163716766962 40.86890424653847, -73.81163439341407 40.86890622579098, -73.81163121693548 40.86890781897676, -73.8116277308866 40.86890898122252, -73.81162403500677 40.86890967847239, -73.81162023848702 40.868909890193336, -73.81161644810497 40.86890961025624, -73.81161277652605 40.868908847849966, -73.81160932689538 40.868907622953635, -73.81160620112067 40.86890597355429, -73.81160348922705 40.86890394482352, -73.81160126814791 40.868901597219825, -73.81159960412266 40.86889899748765, -73.8115985431996 40.86889622134352, -73.81159811836565 40.86889334898487, -73.81157504119929 40.86884491172709, -73.81154518335413 40.868798659687464)), ((-73.81892767006909 40.86525701271896, -73.81896343257439 40.865251860393585, -73.81900093909006 40.865252240709204, -73.8190400538401 40.86525792472639, -73.81907565051993 40.86526794178056, -73.81909993571892 40.865280238243315, -73.81912269022898 40.86529622611624, -73.81913605354586 40.865311477971204, -73.81914868741897 40.86533238556677, -73.81915691291417 40.86535133668838, -73.8191614857667 40.865372200131, -73.81916744770704 40.86546413251168, -73.81917234448336 40.865551268106074, -73.81917226735715 40.86556000184862, -73.81917188595342 40.86556852710091, -73.81917016138888 40.86557982466136, -73.81916766939356 40.865591551453804, -73.81916570645436 40.86560108727995, -73.8191640251147 40.865606085072145, -73.81916193703475 40.865610168228336, -73.81915870854789 40.86561487183656, -73.81915189535938 40.86562310425398, -73.81907433191809 40.86570769816339, -73.818997233732 40.86585661572843, -73.81899697378519 40.86585711599372, -73.81899681130248 40.86585754347208, -73.81899663788451 40.86585806638541, -73.81899646789263 40.865858637930565, -73.81899625116473 40.8658598199354, -73.81898188747235 40.86593010774596, -73.81897472498791 40.8659489843095, -73.81896614810422 40.86596585776234, -73.81895470252819 40.865980744732624, -73.81894959165845 40.865985845199255, -73.8189440106227 40.86599023624146, -73.81893830271868 40.86599373649862, -73.81892129231501 40.86600357198339, -73.81890753548008 40.866009959188666, -73.81885747578572 40.866034210080045, -73.81864667297788 40.86615672484568, -73.81862407832116 40.86616817239349, -73.81860567965322 40.866176830508536, -73.81859998158389 40.866178887277236, -73.81859419517554 40.86618028024489, -73.81858943569667 40.866181347948476, -73.81858450969713 40.866182147944265, -73.81858068091097 40.86618251292681, -73.81857729521761 40.86618263997576, -73.8185721804087 40.866182646341564, -73.81856671171339 40.86618236669504, -73.8185609139555 40.866181832592325, -73.81855539452823 40.86618101797378, -73.81855533762153 40.86618100707841, -73.81855527479377 40.86618099257176, -73.81855519892551 40.86618097534311, -73.81841524218578 40.866139206522284, -73.81841433576133 40.86613884039693, -73.81841367150747 40.866138404414464, -73.81841315412724 40.86613804610527, -73.81841269871067 40.86613758433719, -73.81831936317963 40.86603299936317, -73.81831369204833 40.86602823674131, -73.8182565648923 40.86598999116833, -73.81825014045893 40.865986997722274, -73.81824587281544 40.86598562045269, -73.81824092072881 40.865984251109694, -73.81811216840619 40.86595750985348, -73.81810856087381 40.86595634883672, -73.81810484175666 40.86595478512445, -73.81810107365813 40.86595291516783, -73.81809879294559 40.86595150590587, -73.81809669647077 40.86594995735819, -73.81808835021586 40.865942713256906, -73.81808722395341 40.865941626389564, -73.81808604972075 40.86594029721446, -73.8180788455777 40.865929214318584, -73.81807510567087 40.86592050877772, -73.8180735891148 40.8659120669841, -73.81807338063425 40.86590285733297, -73.81807617082903 40.86588799822612, -73.81810582740722 40.8658342487411, -73.81817012915137 40.86576459804598, -73.81825109679242 40.865707828977754, -73.81834614782179 40.865671841046726, -73.81842423103213 40.865634405362485, -73.8184415472688 40.8656242003298, -73.81845588283741 40.86561219412505, -73.81847983415298 40.865591243159066, -73.8187497221429 40.8653293507424, -73.818765170864 40.86531710491569, -73.81878759277512 40.86530451254344, -73.81885875969161 40.86527589681863, -73.81892767006909 40.86525701271896)), ((-73.82751684513568 40.85657767953536, -73.82888157720207 40.85642550336372, -73.82895516750095 40.85655460351973, -73.82895612030684 40.85655627534569, -73.82895801057023 40.85655959195998, -73.82896809237967 40.85657727816829, -73.82888797931568 40.85662415967466, -73.82857854361541 40.856838964816504, -73.82807904969758 40.85720288313855, -73.82787879092157 40.85735458224222, -73.82785753389817 40.8573293853707, -73.82789225588989 40.8572775454056, -73.82791851452984 40.85722291118593, -73.82793592944574 40.85716627548378, -73.82794424828148 40.85710846097663, -73.82794334910228 40.857050306743474, -73.82793324516767 40.856992656565055, -73.8279140837735 40.85693634721599, -73.82788614272543 40.856882195852826, -73.82784982799292 40.85683098920473, -73.82780566662936 40.856783469155694, -73.82775429848311 40.85674032732976, -73.8276964703111 40.856702187973326, -73.82763302155367 40.85666960523324, -73.82756487250272 40.85664305233384, -73.82749301245872 40.85662291525642, -73.82751684513568 40.85657767953536)), ((-73.82589742686146 40.85582789325887, -73.82594111699335 40.85584760973089, -73.82598197599836 40.85587057179351, -73.82601916510822 40.8558968844429, -73.82605220961666 40.85592621288414, -73.82608260445218 40.855976478274826, -73.82610760814262 40.85602842755668, -73.8261270578767 40.85608172910658, -73.8261408311912 40.85613604145608, -73.82615106267556 40.856176011725594, -73.82615469593917 40.856216636615, -73.82619576801625 40.85645590080972, -73.82612793343141 40.856460886380205, -73.82607928137257 40.85646446184303, -73.82580299988048 40.85648476535024, -73.8257850296611 40.856486086252986, -73.82573237759318 40.85648995539327, -73.825668614109 40.85648875055463, -73.82560562050983 40.85648114974618, -73.82554450656286 40.856467286119184, -73.82548634497162 40.85644740533262, -73.82543216072463 40.85642185653183, -73.82538290501365 40.856391087806315, -73.82533944457379 40.85635564076991, -73.82530254392101 40.85631613972754, -73.82527285234221 40.85627327814746, -73.82525089087086 40.8562278105366, -73.82523704640059 40.85618053622224, -73.8252341391547 40.85614366475485, -73.82523428761463 40.85613184961759, -73.82523745020768 40.85609907558057, -73.825247942214 40.856052773740494, -73.82526547811106 40.85600771804344, -73.82528981907213 40.855964523161006, -73.82531956169137 40.85592558587618, -73.82535606244151 40.8558901167053, -73.82539862930693 40.85585878726269, -73.82544645662831 40.855832190647824, -73.82549863818143 40.85581082885888, -73.82555418853597 40.85579510832307, -73.82561205495287 40.8557853255073, -73.82567114229077 40.85578166605579, -73.82573033081118 40.8557841985136, -73.82578850226373 40.85579287616739, -73.82584455531214 40.855807533466475, -73.82589742686146 40.85582789325887)), ((-73.8195986294674 40.85815829689214, -73.81972959835899 40.85808828211502, -73.81973026881539 40.858088591130986, -73.81987264079234 40.85801256431115, -73.82000165074268 40.857947017110256, -73.820240923854 40.8578285314774, -73.82038618656965 40.85776071921528, -73.82062051291234 40.857664985937, -73.82082246332003 40.85757996819258, -73.82102717473983 40.85749697868408, -73.82130776460605 40.85740479706959, -73.8214504463106 40.857361944719024, -73.82154117180248 40.85742655223979, -73.82164011887299 40.857507116516416, -73.8214904538975 40.85756137743971, -73.82127189561984 40.857632162657296, -73.82107235067909 40.857702710403736, -73.82083250415572 40.85779438741234, -73.82067357166216 40.8578582429371, -73.82044454417576 40.85794772164351, -73.820445489202 40.85795000676275, -73.8204095864847 40.857964658623054, -73.82012685315891 40.85808368198547, -73.81990347870435 40.85818340432574, -73.81965877267618 40.85830195640356, -73.81932268329889 40.858467022995946, -73.81907569991446 40.85860623116205, -73.8188941374025 40.85870502566187, -73.81864051880527 40.85883853496889, -73.81862684856691 40.85883457742817, -73.81860756811481 40.8588224390987, -73.81861540719484 40.858807901269806, -73.81869022632287 40.85874921402769, -73.81885883405381 40.85862954320942, -73.81903536972048 40.85849945867912, -73.81922846782318 40.858381546568744, -73.8193947124363 40.85827840609931, -73.8195986294674 40.85815829689214)), ((-73.819442949962 40.858109666308685, -73.81965707580727 40.85796984768728, -73.82084742038151 40.85703635356715, -73.82084812992238 40.85703624030642, -73.82085371955705 40.85703141334152, -73.8209566954853 40.856950655842375, -73.82139446288821 40.85730709822279, -73.82112559508396 40.857398802052195, -73.82086152393893 40.85750109348803, -73.82058137672723 40.8576138977819, -73.82034446714549 40.85771585206251, -73.82012109544102 40.85781557393191, -73.81990346485567 40.85792966628233, -73.81970136187164 40.8580316393488, -73.81969914989008 40.85803121446165, -73.81949229505564 40.85814104643572, -73.81944273599872 40.85811071594786, -73.819442949962 40.858109666308685)), ((-73.81974567195978 40.87167270987771, -73.81969503010512 40.87164770519564, -73.81968878135355 40.871639632443305, -73.81962173688493 40.87161989878117, -73.81955214588675 40.87160615295933, -73.81948093314415 40.8715985756175, -73.81940904619427 40.87159726818992, -73.81933743754574 40.87160224837547, -73.81926705993511 40.871613450130084, -73.81919884734768 40.87163072363701, -73.81913370551406 40.87165384069463, -73.8191295142676 40.87165389265731, -73.8191458600744 40.87154611069475, -73.81917041473882 40.87143922947497, -73.81920309538832 40.87133360995949, -73.81924379188565 40.871229606762256, -73.81929236800809 40.87112757085269, -73.81931486520935 40.87108577200601, -73.8193697104695 40.870994232086424, -73.81937103041929 40.8709921810348, -73.81937089187919 40.87099208806743, -73.81950120182948 40.87075556658518, -73.81957298471933 40.870638814114486, -73.81966068357978 40.87050928149936, -73.81966294921018 40.87051019813725, -73.81964294116753 40.87057605754452, -73.81962943001464 40.87064286271223, -73.81962249150594 40.87071024456005, -73.81962216344144 40.870777832146175, -73.81961932935829 40.870774375236394, -73.81962540561103 40.87084906779522, -73.81964065847437 40.87092300207514, -73.81966495450594 40.870995528610415, -73.81969808192869 40.87106601221893, -73.81973974824984 40.871133834699855, -73.81990996551909 40.871448692119, -73.81991181245068 40.871453981779034, -73.81994686740036 40.87156019256258, -73.81995620949216 40.87158728217556, -73.81996875429186 40.871676676293085, -73.81997396206185 40.87176648939612, -73.81997181117204 40.87185637476328, -73.81996231202386 40.871945984821174, -73.81994055450937 40.8719464128256, -73.81993322794531 40.87190089332621, -73.8199185033116 40.87185641765569, -73.81989660769968 40.871813677742054, -73.81986788334954 40.87177333507509, -73.81983277342617 40.871736016182446, -73.81979182442528 40.87170230002631, -73.81974567195978 40.87167270987771)), ((-73.81373907473373 40.864730420115556, -73.81376023698824 40.8647286740034, -73.81377845037261 40.86473162279268, -73.8137959825551 40.86473639217388, -73.81381251707329 40.86474289699037, -73.81381255261228 40.864742913256585, -73.81383043962728 40.86475270704643, -73.81384606373835 40.86476452418877, -73.81385902960233 40.864778067785075, -73.813869011981 40.86479299692586, -73.81387019088957 40.8648019416073, -73.81386997950624 40.8648109299711, -73.81386838055307 40.864819836853314, -73.81350067118689 40.86551343635912, -73.81321949119771 40.8659909784958, -73.81320127430283 40.8660047895557, -73.81318017639747 40.866015991727714, -73.81315683897472 40.86602424386236, -73.81313196850797 40.86602929766631, -73.81310632102736 40.86603099857825, -73.81308067362623 40.866029294727426, -73.81305580429047 40.866024238702295, -73.81303246818729 40.86601598300955, -73.8130113727577 40.866004779133064, -73.8129931587679 40.86599096669717, -73.81297837779958 40.86597496352468, -73.81296747804127 40.86595725660864, -73.81296150801823 40.86594123709858, -73.81296235235011 40.86593962928943, -73.81296067084527 40.86592089994874, -73.81296274944165 40.86590219291182, -73.81296853828263 40.86588394213444, -73.8130599675262 40.86570954267995, -73.81335118177972 40.86519586961789, -73.8133743008004 40.8651516316561, -73.81338285479907 40.86514000033734, -73.81350581936196 40.864972808613885, -73.81365228511449 40.86477366115446, -73.81366558756498 40.864761045141265, -73.81368133098039 40.86475016831504, -73.81369912791564 40.8647413019975, -73.81371853532642 40.864734664291944, -73.81373907473373 40.864730420115556)), ((-73.82167745857627 40.857286755313275, -73.82184743253694 40.8572310126808, -73.822498953003 40.85707853066358, -73.82249821652876 40.857076293607854, -73.82264220709558 40.857043747932615, -73.82302641015694 40.85696884243516, -73.82314285544227 40.85695089498521, -73.82322140533097 40.85693960613146, -73.82333785051489 40.8569216575841, -73.82346516103581 40.85690357426258, -73.82367654201761 40.856878258692085, -73.82389602782585 40.856850779516314, -73.82408300719567 40.85682782936621, -73.82431077391087 40.85680643494888, -73.82449907030882 40.85678362030362, -73.82463533936385 40.85676823098494, -73.8246345873359 40.85680965069185, -73.82462819417174 40.856818415372025, -73.82439052371026 40.85685082907504, -73.82439053111354 40.856851169472435, -73.82431192857383 40.856860056527935, -73.82411688975112 40.856887233380384, -73.82369189964935 40.85696058536775, -73.8234619482104 40.857006760373785, -73.82312111611546 40.85707700263473, -73.82283452068297 40.85714244561854, -73.82246674150626 40.85723558010479, -73.82246696963954 40.8572336461982, -73.82200505547516 40.85735902233017, -73.82187257727402 40.85738954536967, -73.82181010282213 40.857390319672284, -73.82176116445373 40.8573888636229, -73.82171204895096 40.85737915786831, -73.8216819483483 40.85736921673881, -73.82165443098364 40.85735305359033, -73.82164557306189 40.8573201575171, -73.82167745857627 40.857286755313275)), ((-73.78072084239403 40.85495557198182, -73.78069326428364 40.85493452815178, -73.78072415242902 40.854883274029945, -73.78074256818672 40.85488797358822, -73.78077343971178 40.85484138397881, -73.78100064779822 40.8548744692089, -73.78110776259237 40.8549959581894, -73.78117520461896 40.855038068947295, -73.7812180491888 40.855087130758214, -73.78121490846831 40.855108117110916, -73.781266975795 40.85515486411406, -73.7812575843548 40.855208491417365, -73.78128516924076 40.855227202845164, -73.78123876955566 40.85532507597442, -73.78124164177682 40.85538572426458, -73.78115534600198 40.85547185940844, -73.78090017443841 40.855534350209375, -73.78082660408428 40.85548756219529, -73.78071350595083 40.85531708194104, -73.78070379903072 40.855279205836, -73.78067474426103 40.85514738406533, -73.78072037332502 40.85509784819571, -73.78066512589305 40.85508374860141, -73.78064989713522 40.855044069109084, -73.78072084239403 40.85495557198182)), ((-73.8270719130773 40.85814410777377, -73.82705259166079 40.858223376150235, -73.82704240725488 40.858303618144696, -73.82703240483475 40.858302930481955, -73.82693380482792 40.85803407306135, -73.82684319296446 40.85759778190279, -73.82678768536294 40.8573548097042, -73.82678376771969 40.857325295590805, -73.82681801749956 40.85737040584002, -73.82685900199799 40.85741215294165, -73.82690615580597 40.85744995972526, -73.82695882797331 40.85748330382211, -73.82701628910593 40.85751172488001, -73.82701550489168 40.85751319060604, -73.82707100523203 40.857532622684396, -73.82709651247086 40.85754058164351, -73.8270958586518 40.85753979273292, -73.827166344784 40.8575554363397, -73.82723873658144 40.85756480542554, -73.82731206893102 40.857567773373944, -73.82738536225695 40.85756430179738, -73.8274576403242 40.85755443606154, -73.82752793734643 40.85753830889796, -73.82759531579177 40.85751613502732, -73.82762852309438 40.857536769897756, -73.82744242092157 40.85766474520903, -73.82736689017716 40.85772140104667, -73.82729812269578 40.85778282245796, -73.82723663679907 40.857848543776, -73.82718289870486 40.857918070439936, -73.82713731304602 40.85799087627876, -73.82710022403222 40.858066412517616, -73.8270719130773 40.85814410777377)), ((-73.81777914715575 40.872891815996134, -73.8176731162015 40.87285324982636, -73.8175865315439 40.87281236312005, -73.8174826551571 40.87275477372694, -73.81738266390973 40.87269335069832, -73.81728680176995 40.87262824481219, -73.81719530437653 40.87255961493823, -73.81719350098936 40.87256056029748, -73.81622397030316 40.87171142232741, -73.81617247058846 40.87166506681017, -73.81617227844328 40.871657760827084, -73.81617369466917 40.871650533047266, -73.81617668074495 40.87164358601958, -73.8161811519073 40.871637114114826, -73.81618698309254 40.87163129993315, -73.81619401014488 40.87162630620152, -73.81620203813053 40.87162227218531, -73.81621083897014 40.871619311883286, -73.81622016806385 40.87161750775079, -73.81622976191629 40.871616911596576, -73.81623935357541 40.87161753830375, -73.81624867143111 40.871619371231, -73.8162574570168 40.87162235953947, -73.81696891465097 40.872250370887606, -73.81716070861434 40.872425008006054, -73.81721884482634 40.87247556626735, -73.8172544870874 40.87250656265345, -73.81740023880533 40.87263331402401, -73.81741153193016 40.8726438162982, -73.81749084094622 40.87270234483717, -73.81757570886393 40.87275619325706, -73.81766565843151 40.87280505912761, -73.8177601814744 40.87284866698502, -73.81785874719182 40.8728867710472, -73.81785898303917 40.872886853364044, -73.81786344517103 40.87288841285149, -73.8178635245785 40.872888439991506, -73.81795271922323 40.87291464361511, -73.81804391878049 40.87293651177021, -73.81813675809539 40.87295395652911, -73.81813527542863 40.87297253220068, -73.81811573398973 40.8729702042527, -73.81800107309682 40.872950456729626, -73.81788866961166 40.872924278654075, -73.81777914715575 40.872891815996134)), ((-73.81563597845292 40.871300431784306, -73.81544350337657 40.87118147281327, -73.81524172002982 40.87106690921624, -73.81510271018522 40.87098583154035, -73.81493528692208 40.87089511070491, -73.81482499579003 40.87083794534121, -73.81461211894974 40.870732083179476, -73.81461204871857 40.87073259544571, -73.81448384969248 40.87066760723778, -73.814353267045 40.870605413775785, -73.81422040739285 40.87054606384982, -73.81422749721193 40.870531778177245, -73.81457567451619 40.87067175930458, -73.81457514746683 40.87067401238514, -73.81477116157491 40.870754261016764, -73.81496294792659 40.870840195434404, -73.8151502198364 40.87093168733006, -73.81533269775092 40.87102860120446, -73.81617557924908 40.87155928127161, -73.81610536245496 40.871617246513445, -73.81588213322547 40.87146726330649, -73.81587407591057 40.871463467491125, -73.81563597845292 40.871300431784306)), ((-73.82495777234118 40.85435954543293, -73.8250309146465 40.85430038144785, -73.82513064382577 40.854458155814584, -73.82506432281079 40.85448362025824, -73.82465878683557 40.854627720106635, -73.82426979958394 40.854760058988546, -73.82424411316725 40.85472259718218, -73.82442311375723 40.85465898248134, -73.82463434983171 40.85455758590554, -73.82481658950218 40.85444630433006, -73.82495777234118 40.85435954543293)), ((-73.82188627028788 40.857141825743895, -73.82149467080777 40.85727480586673, -73.82113692179747 40.85698593123046, -73.8211796480007 40.85700617839827, -73.82128646920116 40.8570461132648, -73.82139854674291 40.857077731116576, -73.8215103575379 40.85709697478007, -73.82166300146757 40.85711983840546, -73.82179356151163 40.85712647146279, -73.82188455675532 40.85712534318683, -73.82188627028788 40.857141825743895)), ((-73.81106221132653 40.869767710995916, -73.81116284076205 40.86974491860748, -73.81092104995685 40.870104779247406, -73.81092050440618 40.870100147130465, -73.81091991139827 40.870095517637246, -73.81091927211425 40.87009089257063, -73.81091858655668 40.87008627103017, -73.8109178535394 40.87008165301389, -73.81091707424346 40.87007704032473, -73.81091624748518 40.87007243206022, -73.81091537445087 40.87006782822234, -73.81091445513543 40.87006323061204, -73.81091348954389 40.87005863742834, -73.81091247648502 40.87005405047029, -73.81091141833122 40.870049469741765, -73.81091031271009 40.870044895238884, -73.81090916199406 40.87004032696555, -73.81090796380805 40.870035765818294, -73.81090672052471 40.8700312118011, -73.81090542977141 40.87002666490999, -73.81090409391823 40.870022126049356, -73.81090271296502 40.87001759521927, -73.81090128453941 40.87001307241573, -73.81089981101128 40.87000855854319, -73.81089829238324 40.8700040527011, -73.81089672746653 40.86999955578806, -73.81089511744473 40.86999506870649, -73.81089346232045 40.86999059055587, -73.81089176209117 40.86998612223673, -73.8108900155681 40.869981664647526, -73.81088822512625 40.869977216891776, -73.81088638957686 40.8699727798679, -73.81088450891988 40.869968353575985, -73.81088258315539 40.86996393801599, -73.81088061228083 40.869959534088416, -73.81087859748244 40.869955141795145, -73.81087653876016 40.86995076113629, -73.81087443611153 40.86994639301224, -73.81087228835027 40.86994203742106, -73.81087009666264 40.86993769436473, -73.81086786104864 40.869933363843245, -73.81086558150571 40.86992904675705, -73.81086325922011 40.86992474310809, -73.81086089300298 40.86992045379498, -73.81085848285703 40.86991617791712, -73.81085602996839 40.86991191547654, -73.81085353433203 40.86990766827413, -73.81085099476418 40.86990343540752, -73.81084841363479 40.86989921778107, -73.81084578975768 40.86989501539286, -73.81084312194658 40.869890828240855, -73.81084041376018 40.86988665633098, -73.81083766163731 40.86988250055785, -73.81083486913403 40.86987836182772, -73.81083203388305 40.86987423833582, -73.81082915706544 40.86987013188501, -73.81082623868122 40.86986604247535, -73.8108232799167 40.86986197010867, -73.81082027958294 40.869857915683625, -73.81081723768268 40.86985387829967, -73.8108141553995 40.86984985885919, -73.81081103273341 40.869845857362286, -73.8108078684956 40.86984187470738, -73.8108046650612 40.86983790999797, -73.81080142124131 40.86983396413254, -73.81079813821968 40.869830038013575, -73.81079481481258 40.869826130738545, -73.81079145220373 40.869822243209974, -73.81078805039573 40.86981837452728, -73.81078460938335 40.86981452649151, -73.81078113035292 40.86981069910458, -73.81077761212075 40.86980689146405, -73.81077405468433 40.869803104470385, -73.81077046041598 40.86979933812752, -73.8107668269408 40.86979559333206, -73.8108541214614 40.86979342219124, -73.8109588934392 40.86978395412653, -73.81106221132653 40.869767710995916)), ((-73.8141620204916 40.864243100575, -73.8141661813664 40.86424271556266, -73.81417036924137 40.86424285558015, -73.81417447026018 40.86424351594169, -73.81417837178526 40.864244680257016, -73.81418196715497 40.86424631593665, -73.81418516041813 40.86424837780159, -73.81418786276794 40.86425081077886, -73.81419000085023 40.864253548113986, -73.81419151675048 40.86425651587342, -73.81419236918538 40.86425963114556, -73.8141925346635 40.8642628110473, -73.81419200868432 40.864265968223805, -73.81419080572036 40.86426901715159, -73.81399918345679 40.8645815022129, -73.81399690265978 40.86458568402019, -73.81399376639443 40.86458953306759, -73.81398985796774 40.86459295043522, -73.81398527726242 40.86459584803588, -73.81398014310943 40.864598148618825, -73.81397458970416 40.864599794768864, -73.813968760691 40.864600743493924, -73.81396280559706 40.86460096892081, -73.81395688100851 40.86460046589907, -73.81395113871662 40.864599247280275, -73.81394572927086 40.86459734572494, -73.81391723278223 40.86458945919325, -73.81389039418285 40.86457873157673, -73.81386570399627 40.86456535727346, -73.81386167576245 40.86456199464377, -73.81385842691606 40.86455817672211, -73.8138560449442 40.86455400630569, -73.81385459476944 40.8645495960608, -73.81385411520165 40.86454506491489, -73.81385462013144 40.86454053535717, -73.8138560949822 40.86453612983107, -73.81385850027831 40.86453196713765, -73.81386177046681 40.86452815973251, -73.8138658174858 40.86452481012961, -73.81397486396189 40.86441058485682, -73.81415080939853 40.864247231082, -73.81415422826043 40.86424538968075, -73.81415799933015 40.864243999992865, -73.8141620204916 40.864243100575)), ((-73.8012545931002 40.8597772580028, -73.80125592513025 40.85977723058109, -73.8012572582414 40.85977723828041, -73.80125858887278 40.85977728199514, -73.80125991702444 40.8597773617253, -73.8012612403269 40.85977747656627, -73.80126255877757 40.85977762741861, -73.8012638676348 40.85977781337357, -73.80126516808203 40.85977803533374, -73.8012664565664 40.85977829149204, -73.80126773308801 40.859778581848346, -73.80126899527205 40.859778907299216, -73.80127024075172 40.85977926603952, -73.80127146834096 40.859779658067204, -73.80127267804252 40.85978008248177, -73.80127386629826 40.85978053927716, -73.8012750331081 40.85978102845329, -73.8012806231211 40.859782979543134, -73.80128623220547 40.85978489914832, -73.80129186036125 40.85978678726885, -73.80129750640506 40.8597886430022, -73.80130317033688 40.859790466348336, -73.80130885334272 40.85979225730931, -73.80131455305055 40.85979401588102, -73.8013202706437 40.85979574296605, -73.80132600375806 40.85979743585876, -73.80133175475775 40.85979909726479, -73.80133752127597 40.859800725379024, -73.80134330449611 40.859802321103984, -73.80134910204875 40.85980388353508, -73.80135491511987 40.85980541267444, -73.80136074370688 40.85980690942245, -73.8013665866263 40.85980837287665, -73.80137244388082 40.85980980213654, -73.80137831546514 40.859811199003, -73.80138420019854 40.85981256167311, -73.8013900980783 40.85981389104737, -73.80139601029045 40.85981518712775, -73.80140193327684 40.85981644990815, -73.8014078694123 40.859817678492135, -73.80141381751066 40.85981887287775, -73.80141977756931 40.8598200339654, -73.80142574840487 40.85982116085258, -73.80143173001733 40.85982225353925, -73.80143772240397 40.85982331292597, -73.80144372557014 40.85982433721171, -73.80144973832441 40.859825328195406, -73.80145576067217 40.85982628407613, -73.80146179142473 40.85982720575225, -73.80146783176528 40.859828094126364, -73.80147388169932 40.859828947397425, -73.8014799388547 40.85982976556141, -73.80148600441201 40.85983055042133, -73.80149207719072 40.85983130017412, -73.80149815718798 40.85983201572032, -73.8015042432205 40.85983269615737, -73.80151033765767 40.859833342389855, -73.80151643694401 40.85983395351115, -73.80151742361474 40.859833998432144, -73.80151840780579 40.859834079368554, -73.80151938477572 40.85983419541177, -73.80152035333846 40.85983434655973, -73.80152131112192 40.85983453280836, -73.80152225694263 40.85983475325507, -73.8015231872425 40.8598350078938, -73.80152409965208 40.85983529581995, -73.80152499417406 40.85983561613306, -73.80152586725026 40.85983596882702, -73.80152671770009 40.859836352098775, -73.8015275431513 40.859836765944294, -73.80152834123452 40.859837209458945, -73.80152911076905 40.85983768083972, -73.8015298493828 40.85983818008261, -73.8015305558951 40.859838705384554, -73.80153122912252 40.859839255843, -73.8015318666984 40.85983982965295, -73.80153246862804 40.85984042501338, -73.80153303135064 40.85984104281866, -73.80153355487693 40.85984167946688, -73.80153403802079 40.85984233495598, -73.80153447960437 40.85984300658241, -73.80153487844414 40.859843693443736, -73.8015352333568 40.85984439463734, -73.80153554435041 40.85984510746182, -73.8015358102443 40.85984583011413, -73.80153603103842 40.859846562594264, -73.80153620437147 40.85984730129622, -73.80153633261551 40.85984804622406, -73.8015364122204 40.85984879467019, -73.80153644674981 40.8598495448398, -73.8015364326481 40.859850295826234, -73.80153637229553 40.8598510449321, -73.80153626450871 40.85985179125493, -73.80153611047912 40.85985253299575, -73.80153591021205 40.85985326835359, -73.80153566371291 40.85985399552745, -73.80153537217315 40.85985471271842, -73.80153503559539 40.859855419026005, -73.80153465517387 40.85985611175081, -73.80153423090846 40.85985679089282, -73.80153376636814 40.85985745285614, -73.80153325918079 40.85985809763677, -73.80153271291 40.859858723439835, -73.80153212755833 40.859859329364824, -73.80153150550613 40.85985991271437, -73.801530847942 40.859860472590015, -73.801530154866 40.85986100899179, -73.80152942984435 40.859861519224324, -73.80152867287975 40.8598620023871, -73.80152788634435 40.859862458484265, -73.80152707261821 40.8598628848184, -73.80152623288753 40.85986328139151, -73.80152536952703 40.85986364730722, -73.80152158207807 40.859865750645675, -73.80151782182485 40.85986788194598, -73.8015140887647 40.859870042108746, -73.80151038527245 40.85987223023748, -73.8015067113508 40.85987444543179, -73.80150306580833 40.859876689490534, -73.80149944983637 40.85987896061481, -73.80149586462109 40.8598812588067, -73.80149230897636 40.85988358406409, -73.80148878409098 40.8598859354886, -73.80148528996217 40.85988831398063, -73.8014818277761 40.859890719542335, -73.80147839635201 40.85989315037068, -73.80147499806205 40.859895606469685, -73.80147163171746 40.85989808873787, -73.80146829850435 40.859900597177216, -73.80146499843065 40.85990312908627, -73.80146173030236 40.859905687164535, -73.80145849768303 40.8599082696171, -73.80145529820315 40.85991087553938, -73.80145213304615 40.85991350583395, -73.80144900221205 40.85991616050075, -73.80144590688957 40.85991883864141, -73.80144284708133 40.85992153935542, -73.80143982278477 40.85992426354326, -73.80143683400247 40.85992701030446, -73.80143388192057 40.85992977964106, -73.80143096535566 40.85993257065052, -73.80142808667722 40.85993538423741, -73.80142524470183 40.859938219499234, -73.80142243943217 40.85994107553545, -73.8014196720516 40.85994395324867, -73.80141694256292 40.85994685173833, -73.80141425096868 40.85994977010404, -73.80141159845236 40.85995270924824, -73.80140898501664 40.859955668270445, -73.80140640947808 40.85995864626818, -73.8014038730201 40.859961644144, -73.80140137683144 40.85996466099936, -73.80139891972613 40.85996769683235, -73.80139650289277 40.8599707507444, -73.80139412633149 40.859973822735576, -73.80139179004222 40.85997691280588, -73.80138949402762 40.85998002005484, -73.80138723947388 40.85998314448444, -73.80138502638093 40.85998628609473, -73.80138285356539 40.85998944398322, -73.80138072221337 40.85999261815188, -73.80137863351085 40.85999580860277, -73.80136955442771 40.86001557949256, -73.80136924100924 40.860016473141926, -73.80136888373606 40.86001735681041, -73.80136848023882 40.86001822959341, -73.80136803408102 40.860019089696024, -73.80136754289592 40.86001993531327, -73.80136701023903 40.860020767351706, -73.80136643493505 40.86002158220742, -73.80136581935609 40.860022379884406, -73.80136516350755 40.86002315858172, -73.80136446857816 40.860023917400916, -73.8013637345679 40.860024656341956, -73.80136296504574 40.8600253718091, -73.80136215882293 40.86002606470072, -73.80136131827426 40.86002673412043, -73.80136044459387 40.86002737736883, -73.80135953777906 40.860027995346364, -73.80135860139342 40.860028586258196, -73.80135763425355 40.86002914920184, -73.80135664110905 40.86002968238445, -73.80135561958248 40.860030187602916, -73.8013545744288 40.860030661263465, -73.80135350564534 40.860031104266604, -73.80135241560694 40.860031515715846, -73.80135130431357 40.86003189561129, -73.80135017533144 40.86003224125754, -73.8013490298413 40.860032554457646, -73.8013478690346 40.86003283341265, -73.80134669409463 40.860033079025065, -73.80134550858506 40.86003328950009, -73.80134431250576 40.8600334648377, -73.80134310941503 40.860033605043995, -73.80134189931287 40.86003371011905, -73.80134068457403 40.860033779166336, -73.80133946756794 40.86003381309055, -73.8013382506695 40.86003381099524, -73.8013370338786 40.86003377288041, -73.80133581956474 40.86003369965065, -73.80133461010273 40.8600335904095, -73.80133340667595 40.86003344605955, -73.80133221284255 40.860033266606884, -73.80133102741381 40.86003305294995, -73.80132985513669 40.86003280419646, -73.80132869601108 40.8600325203464, -73.80132755121514 40.86003220410332, -73.8013264243123 40.86003185367229, -73.80132531648326 40.860031470856356, -73.80132422772809 40.86003105565552, -73.80132316160223 40.86003060897642, -73.80132211928905 40.86003013172161, -73.80132110197468 40.86002962389304, -73.80132011084238 40.86002908639333, -73.8013191470756 40.86002852012498, -73.80131821422714 40.86002792689508, -73.80131731111356 40.86002730580113, -73.80131644128771 40.8600266586502, -73.80131560474425 40.860025987243276, -73.8013148026692 40.86002529158241, -73.80131403624596 40.86002457257014, -73.80131330784118 40.860023832011514, -73.80131261626623 40.86002307080495, -73.80131196507654 40.860022289857135, -73.8013113542694 40.86002149006851, -73.80131078383945 40.86002067324004, -73.80131025497009 40.86001984027428, -73.80130977003064 40.860018992075815, -73.80130932782983 40.8600181304436, -73.80130893073697 40.860017256282106, -73.80130857756063 40.86001637139032, -73.80130826948148 40.86001547757133, -73.80130800768838 40.86001457392657, -73.80130779098434 40.8600136640561, -73.80130762173891 40.86001274886433, -73.80130749876326 40.8600118292498, -73.80130742324081 40.86001090611503, -73.80130551667989 40.86000473896108, -73.80130356383599 40.859998580732345, -73.80130156708677 40.85999242963192, -73.80129952642672 40.859986287460735, -73.80129744066997 40.859980154216764, -73.80129530981633 40.859974029899995, -73.80129313505202 40.85996791451251, -73.801290916377 40.85996180805425, -73.8012886526052 40.85995571052318, -73.80128634491734 40.859949623722365, -73.80128399213275 40.85994354584875, -73.80128159662087 40.85993747780687, -73.80127915600684 40.8599314204932, -73.8012766726656 40.859925373011265, -73.80127414422225 40.85991933625752, -73.80127157186288 40.85991331023396, -73.80126895677364 40.85990729494265, -73.80126629776566 40.85990129128199, -73.80126359484173 40.85989529835158, -73.80126084800189 40.85988931615136, -73.80125805842671 40.85988334648432, -73.80125522611901 40.85987738845, -73.80125234989262 40.85987144204636, -73.80124942974496 40.85986550817387, -73.80124646686477 40.85985958593409, -73.8012434624354 40.859853676229534, -73.80124041408207 40.85984777995663, -73.80123732299352 40.859841896216906, -73.80123418916712 40.859836025910845, -73.80123101260554 40.85983016813797, -73.80122779330601 40.859824323798755, -73.80122694404233 40.85982354431016, -73.80122613042498 40.85982274327116, -73.80122535601483 40.859821919787365, -73.80122462080374 40.8598210765603, -73.80122392478907 40.85982021449038, -73.80122326915694 40.8598193335797, -73.80122265508791 40.85981843563129, -73.80122208376542 40.85981752154764, -73.80122155518409 40.859816593129736, -73.80122107052993 40.85981565037962, -73.80122063098091 40.85981469600085, -73.80122023535098 40.85981372999131, -73.8012198848209 40.8598127541541, -73.8012195805739 40.85981176939167, -73.80121932260738 40.859810776604554, -73.80121911091594 40.85980977759369, -73.80121894668024 40.85980877416213, -73.80121882871418 40.85980776630787, -73.80121875819579 40.859806756734336, -73.80121873393901 40.859805745439516, -73.80121875831328 40.859804733328, -73.80121882893836 40.85980372309716, -73.80121894699762 40.85980271564949, -73.8012191124884 40.859801711885545, -73.80121932421925 40.859800713604194, -73.8012195833762 40.85979972080755, -73.80121988757905 40.85979873619292, -73.80122023801121 40.85979776066285, -73.80122063467263 40.85979679421736, -73.80122107518318 40.859795839553804, -73.80122155954008 40.85979489757272, -73.80122208892683 40.85979396917657, -73.80122265978241 40.85979305525972, -73.80122327447367 40.85979215762731, -73.80122392943969 40.859791277173585, -73.8012246258638 40.859790414801175, -73.80122536255735 40.85978957140846, -73.80122613714276 40.859788748792326, -73.80122695080611 40.85978794695488, -73.8012278011672 40.85978716859343, -73.80122868704275 40.85978641280548, -73.80122960724121 40.859785681389944, -73.80123056175988 40.8597849752473, -73.80123154822407 40.859784295273975, -73.80123256544496 40.8597836423684, -73.80123361341984 40.859783017431106, -73.80123468858794 40.859782421356385, -73.80123579213517 40.85978185414626, -73.80123692168684 40.85978131669723, -73.80123807486814 40.859780809905594, -73.8012392504876 40.85978033557037, -73.80124044855063 40.859779891890504, -73.80124166667699 40.85977948156345, -73.80124290249462 40.85977910458505, -73.80124415600623 40.85977876005484, -73.80124542364553 40.8597784506682, -73.80124670541791 40.85977817462407, -73.80124800013196 40.85977793372144, -73.80124930422947 40.859777727954175, -73.80125061771051 40.859777557322225, -73.80125193820294 40.85977742182157, -73.80125326333193 40.85977732234858, -73.8012545931002 40.8597772580028)), ((-73.80294557967105 40.860691664735505, -73.80294910568381 40.86068732858385, -73.8029506169365 40.86068766524748, -73.80295211504371 40.860688035206856, -73.80295359762795 40.860688440258926, -73.80295506350846 40.860688878600655, -73.80295651149922 40.86068935023004, -73.802957939228 40.86068985514301, -73.80295934669752 40.86069039243906, -73.80296073272442 40.860690961215745, -73.80296209493649 40.86069156146894, -73.80296343333637 40.86069219229818, -73.80296474555206 40.86069285369944, -73.80296603158607 40.860693544772246, -73.80296728906639 40.86069426551248, -73.80296851799822 40.86069501411921, -73.80296971601216 40.86069578968793, -73.80297088310557 40.86069659311909, -73.80297201809763 40.860697422609654, -73.8029731186163 40.86069827815569, -73.80297418585288 40.860699157958095, -73.80297521743532 40.86070006201291, -73.80297621336621 40.86070098941964, -73.80297717127878 40.860701938373296, -73.80297809117035 40.86070290977429, -73.80297897186288 40.860703900919155, -73.80297981335629 40.860704911807936, -73.80298061446457 40.86070594243858, -73.80298137400966 40.86070699010757, -73.80298209199152 40.86070805481494, -73.80298276722945 40.86070913475773, -73.80298339972077 40.86071023083634, -73.80298398828734 40.86071134034732, -73.8029845317458 40.86071246238817, -73.80298503128232 40.860713596960935, -73.80298548571864 40.8607147413621, -73.80298589505226 40.86071589649212, -73.8029862581023 40.86071706054803, -73.80298657368546 40.86071823262734, -73.80298684417915 40.8607194109331, -73.80298706721392 40.86072059456076, -73.80298724278981 40.86072178351036, -73.80298737210079 40.86072297508244, -73.80298745396088 40.860724169274945, -73.80298748718661 40.860725365185395, -73.80298747415551 40.86072656101689, -73.80298741368142 40.86072775676735, -73.80298730577246 40.860728949735325, -73.80298715042856 40.86073013992082, -73.80298970301706 40.86073609653328, -73.80299229833675 40.86074204241273, -73.8029949363875 40.86074797755915, -73.8029976171721 40.860753901072094, -73.80300034187387 40.86075981385404, -73.80300310812345 40.860765715000454, -73.80300591710682 40.86077160451333, -73.80300876882403 40.860777482392706, -73.80301166208906 40.86078334863659, -73.80301459927668 40.860789202348435, -73.80301757682868 40.86079504352226, -73.8030205983033 40.86080087216408, -73.80302366014233 40.86080668826781, -73.80302676590404 40.86081249183959, -73.80302991203011 40.86081828287326, -73.80303309971207 40.8608240595699, -73.80303633013062 40.86082982373256, -73.80303960210502 40.86083557355814, -73.80304291444392 40.86084131084562, -73.80304626952473 40.86084703379813, -73.80304966497539 40.86085274241153, -73.80305310198194 40.86085843668792, -73.8030565793583 40.860864116625216, -73.8030600982906 40.860869782225436, -73.80306365759274 40.86087543348662, -73.80306725845612 40.86088106860973, -73.80307089968674 40.86088669029421, -73.80307458129249 40.86089229583866, -73.80307830327351 40.860897885243055, -73.80308206562438 40.86090346030832, -73.8030822967618 40.86090431166794, -73.80308248280967 40.860905169254096, -73.80308262139847 40.860906032162184, -73.8030827149057 40.86090689859528, -73.80308276096451 40.86090776674839, -73.803082759575 40.860908636621545, -73.80308271193375 40.86090950461472, -73.80308261803823 40.860910371628506, -73.80308247789903 40.860911234060865, -73.80308229033014 40.86091209190986, -73.80308205771165 40.860912942477974, -73.80308178004351 40.860913785765305, -73.8030814561451 40.86091461996879, -73.80308108839645 40.860915442391054, -73.80308067560894 40.86091625393051, -73.80308022016527 40.86091705098932, -73.80307972324891 40.86091783446994, -73.80307918368443 40.8609186007684, -73.803078603844 40.860919349888796, -73.80307798373029 40.86092008093062, -73.80307732453468 40.86092079209488, -73.80307662744859 40.86092148158267, -73.80307589484421 40.86092214939802, -73.80307512672411 40.86092279464042, -73.80307432428248 40.86092341461048, -73.80307348989136 40.86092400931218, -73.80307262355355 40.86092457784512, -73.80307172764641 40.860925118412325, -73.80307080216733 40.86092563191423, -73.80306985186863 40.8609261156576, -73.80306887556424 40.860926569640256, -73.8030678744455 40.86092699206337, -73.80306685325145 40.860927384735945, -73.80306581080669 40.86092774405402, -73.80306475066406 40.86092807182467, -73.80306367282897 40.860928366246874, -73.80306258086225 40.86092862642628, -73.80306147476128 40.8609288532633, -73.80306035808961 40.86092904496308, -73.80305923203059 40.86092920242812, -73.80305809895917 40.86092932476202, -73.803056960064 40.86092941106623, -73.80305581652584 40.86092946314382, -73.80305467190831 40.86092947919987, -73.80305352739471 40.860929460136866, -73.80305238417391 40.860929405056424, -73.80305124580144 40.86092931486498, -73.80303960777552 40.86092577137243, -73.8030279518664 40.86092225936543, -73.80301628044077 40.8609187806489, -73.80300459113188 40.860915333417935, -73.80299288630918 40.86091191857701, -73.80298116478653 40.86090853612406, -73.80296942775274 40.86090518516066, -73.80295767401638 40.86090186748581, -73.80294590476608 40.860898582200896, -73.80293411999926 40.86089533020659, -73.80292231972122 40.86089210970172, -73.80291050392924 40.86088892158688, -73.80289867262066 40.860885766762564, -73.80288682698423 40.86088264433025, -73.80287496583112 40.8608795551884, -73.80286309035013 40.86087649843859, -73.80285120054127 40.86087347408079, -73.80283929521566 40.860870483013464, -73.80282737674824 40.860867524340165, -73.80282612230715 40.86086737811767, -73.80282487627278 40.8608671967903, -73.80282363983116 40.86086698036014, -73.80282241534904 40.86086673063217, -73.80282120283184 40.86086644580546, -73.80282000583244 40.86086612768704, -73.8028188243508 40.86086577627691, -73.80281766075905 40.8608653915791, -73.80281651742409 40.8608649753987, -73.80281539434588 40.86086452773569, -73.80281429389922 40.86086404769364, -73.80281321726223 40.860863537975995, -73.80281216680702 40.860862998586825, -73.80281114253089 40.86086243042665, -73.80281014680608 40.86086183349953, -73.80280917962719 40.860861209606405, -73.80280824455251 40.86086055875339, -73.80280734157925 40.86085988184092, -73.80280647188822 40.86085918067207, -73.80280563666288 40.860858456149295, -73.80280483709186 40.86085770737417, -73.80280407553671 40.860856937952725, -73.802803350814 40.8608561469824, -73.80280266410182 40.860855337166676, -73.80280201895835 40.86085450851164, -73.80280141300884 40.860853661913794, -73.80280084861997 40.8608527991781, -73.80280032697529 40.860851921207065, -73.80279984807201 40.860851028901216, -73.80279941309094 40.860850124063546, -73.80279902202943 40.86084920759455, -73.80279867606814 40.86084828129721, -73.80279837520708 40.860847345171535, -73.80279811943828 40.86084640191899, -73.8027979099451 40.860845452442106, -73.80279774672755 40.86084449674086, -73.80279762977766 40.86084353751674, -73.80279755909268 40.860842575670226, -73.80279753585343 40.860841613004276, -73.80279755887109 40.86084065041742, -73.80279762814567 40.860839687909596, -73.80279774485261 40.86083872908484, -73.80279790780583 40.860837773941086, -73.80279811581651 40.86083682337677, -73.8027983712488 40.86083588009748, -73.80279867173066 40.86083494409912, -73.80279901725393 40.86083401808318, -73.80279940782135 40.860833101149105, -73.80279984223885 40.860832195996416, -73.80280032050113 40.86083130442603, -73.80280084260805 40.86083042643795, -73.80280140499883 40.86082956292659, -73.80280201003752 40.860828716597496, -73.80280265653813 40.86082788744861, -73.80280334093969 40.860827076374306, -73.80280406560642 40.8608262860802, -73.80280482698265 40.86082551565963, -73.80280562624658 40.86082476781613, -73.80280646102862 40.86082404164508, -73.80280733013211 40.86082334074651, -73.80280823356226 40.86082266331941, -73.80280916775031 40.86082201295962, -73.80281013388759 40.86082138786825, -73.80281112959393 40.86082079074261, -73.80281215368062 40.86082022248127, -73.80281320377819 40.860819682179596, -73.80281788184149 40.860816027872545, -73.80282252795236 40.860812349197396, -73.80282714092199 40.86080864705265, -73.80283171956702 40.860804920535756, -73.80283626506827 40.86080117144974, -73.80284077743089 40.86079739799362, -73.80284525428023 40.86079360106387, -73.80284969798568 40.86078978156498, -73.80285410736123 40.86078593949494, -73.80285848240952 40.860782073953295, -73.80286282193912 40.860778186738955, -73.80286712714144 40.86077427605305, -73.80287139682511 40.86077034369442, -73.80287563099014 40.86076638966316, -73.80287982963648 40.86076241395926, -73.80288399276681 40.86075841568222, -73.80288811918977 40.86075439663096, -73.80289221009139 40.860750356807586, -73.80289626429095 40.86074629440904, -73.80290028296655 40.86074221213885, -73.80290426374864 40.86073810909242, -73.80290820782069 40.86073398617239, -73.80291211518801 40.860729841577665, -73.80291598465655 40.86072567800769, -73.80291981741772 40.860721493663625, -73.8029236122801 40.860717290344304, -73.80292736806028 40.860713067147316, -73.80293108713043 40.86070882407663, -73.80293476829912 40.86070456293132, -73.8029384103857 40.86070028190822, -73.80294201457076 40.860695982810476, -73.80294557967105 40.860691664735505)), ((-73.81181971152135 40.86959279210901, -73.81174681156487 40.869575105531254, -73.81167188919676 40.86956325348745, -73.81159575186443 40.869557363360876, -73.8115192202436 40.8695574986234, -73.81151573034104 40.86955624124103, -73.81151255358127 40.8695545737463, -73.81150977169172 40.86955253949636, -73.81150745688453 40.86955019083753, -73.8115056718512 40.869547590906656, -73.81150446500763 40.869544817225105, -73.81150386108853 40.86954193196702, -73.81150387411405 40.86953901079664, -73.81150450505854 40.86953612845624, -73.81150573709779 40.86953336146, -73.81150753800686 40.86953077909308, -73.81150986132619 40.869528450617366, -73.8115126475758 40.869526435367995, -73.8115502005938 40.86949366481289, -73.81158292421225 40.869458034506025, -73.81161044124191 40.869419952658426, -73.81163243965732 40.86937985640291, -73.81165261486207 40.869367381519616, -73.81166873255866 40.869367677973344, -73.81171207945214 40.8694453358873, -73.81176248924743 40.8695204965384, -73.81181971152135 40.86959279210901)), ((-73.81800613203978 40.874017334487476, -73.81799909558569 40.87400101642095, -73.81799582510443 40.8739931454847, -73.81800613203978 40.874017334487476)), ((-73.8031034969682 40.86103645906201, -73.80309100958434 40.861030145111755, -73.80309518434507 40.86103223507492, -73.80309934720256 40.86103433942552, -73.8031034969682 40.86103645906201)), ((-73.82164951892956 40.857503708276525, -73.82164936459532 40.85750376476897, -73.82164917208841 40.857503461005464, -73.82164951892956 40.857503708276525)))",X039,6434,X039,X-15,X-15,X-15,X-15,"Hutchinson River, Long Island Sound bet. Bronc County Line and Middletown Rd., Watt Ave.","210, 212","12,13",45,"10461, 10464, 10464, 10465, 10469, 10475, 10803",X,2771.747,False,Pelham Bay Park and Orchard Beach,No,100005183,PARK,20100106000000.00000,18881212000000.00000,,DPR,Part,Pelham Bay Park,Y,Pelham Bay Park,Flagship Park,Flagship Park,http://www.nycgovparks.org/parks/X039/,Yes,82,34,14,{10860A90-7D19-42D1-86FD-464D4CF37657} +"MULTIPOLYGON (((-73.92774226568335 40.865687052463166, -73.9277491436377 40.86568652908326, -73.92775603721013 40.86568691520709, -73.92776273883399 40.86568819989883, -73.92817332925105 40.865736037179715, -73.92817979242884 40.86573735861891, -73.92818586210124 40.8657394992582, -73.92819136159784 40.86574239595351, -73.92819612850555 40.86574596395787, -73.92820002059926 40.865750096925034, -73.92820292650957 40.86575467412028, -73.92820475860493 40.865759561316146, -73.92820546366329 40.86576461440132, -73.92820502167987 40.86576968478256, -73.92820344349144 40.86577462298535, -73.92820306438797 40.86577528641021, -73.92820077788694 40.865779284061205, -73.92804501176853 40.865978688670204, -73.92804485378777 40.86597889208232, -73.9280423795462 40.86598207917247, -73.9280399251163 40.86598449635649, -73.92803697998028 40.86598657284936, -73.92803362248772 40.865988251068686, -73.92802994520865 40.86598948604763, -73.92802605137692 40.86599024363197, -73.92802204539889 40.86599050227509, -73.92801803878254 40.86599025484256, -73.92801414064664 40.86598950950696, -73.92801045772619 40.86598828524509, -73.92800709199479 40.86598661633921, -73.9280041347378 40.86598454877127, -73.92774028376789 40.86575457982926, -73.92771915669465 40.86573627045143, -73.92771518296053 40.86573197712975, -73.92771224524722 40.865727226107815, -73.92771043354561 40.86572216242089, -73.92770980106931 40.86571693648411, -73.92771036662452 40.865711706795494, -73.92771211462137 40.86570662912985, -73.92771499151489 40.86570185743736, -73.92771891055916 40.86569753484136, -73.92772375418295 40.865693790938664, -73.92772937636458 40.865690739099264, -73.9277356097562 40.865688470167825, -73.92774226568335 40.865687052463166)))",M180,5826,M180,M-12,M-12,M-12,M-12,"Riverside Dr., Dyckman St. and Seaman Ave.",112,10,34,10034,M,0.156,False,Lt. Wm. Tighe Triangle,Yes,100003754,PARK,20100106000000.00000,19380101000000.00000,236 DYCKMAN STREET,DPR,False,Lt. Wm. Tighe Triangle,Y,Lt. Wm. Tighe Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M180/,No,71,31,13,{AFF99BAF-BE44-49FC-B843-2E4B1A78B116} +"MULTIPOLYGON (((-73.7801984327566 40.59616802782486, -73.78009357448865 40.59547968977174, -73.78075819354217 40.59544512057467, -73.78078503838343 40.59586091197928, -73.78135247659846 40.59583093210386, -73.78138446898666 40.5962265307525, -73.78126669785527 40.596234581574684, -73.7812782068584 40.59640084947487, -73.78050896374816 40.596440331491465, -73.78031374132877 40.59644812891934, -73.78029963296555 40.59644784799951, -73.78028575576613 40.596445889841014, -73.78027245099264 40.59644230282436, -73.78026531680037 40.59643973079047, -73.78025626929755 40.59643520185793, -73.78024955279663 40.596430634156945, -73.78024369609886 40.59642542332355, -73.78023685560915 40.59641796739968, -73.78023136039515 40.596409891785044, -73.78022730214754 40.59640133533611, -73.78022475480354 40.596392446781124, -73.78022331376047 40.59638483458536, -73.7801984327566 40.59616802782486)))",Q394,5375,Q394,Q-14,Q-14,Q-14,Q-14,Beach 49 St. bet. Elizabeth Ave. and Beach Channel Dr.,414,31,101,11691,Q,1.889,False,Conch Playground,Yes,100000368,PARK,20090423000000.00000,19580707000000.00000,420 BEACH CHANNEL DRIVE,DPR/DOE,False,Conch Playground,Y,Conch Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q394/,No,31,10,5,{BFBABF7E-4DFE-4E23-A5C2-884E9F775554} +"MULTIPOLYGON (((-74.22503674042603 40.53226533631476, -74.22523706111576 40.5313926291815, -74.22528334560253 40.53118579453569, -74.22534128132392 40.53092689082721, -74.22536555810686 40.5308441366331, -74.22539311814965 40.53076206309217, -74.22542394138044 40.53068067114203, -74.22545802687839 40.53060004092906, -74.22549531823786 40.5305202482057, -74.22553580611046 40.53044132360529, -74.22556947064187 40.53038081294142, -74.2256053872232 40.53032107770133, -74.22564354650214 40.53026214581769, -74.22568753451228 40.530198586341946, -74.2257285109633 40.53013655196572, -74.22593239869485 40.52982613507031, -74.22606511400573 40.529878044257515, -74.2261173222696 40.5298956449733, -74.22617782616257 40.52991356702102, -74.22628682561631 40.529939712560825, -74.2263540074126 40.529952113706535, -74.22641295866678 40.52996074791566, -74.22649135529348 40.52996909428571, -74.22689595592531 40.530000614493105, -74.22706161069429 40.53000313715247, -74.22703104593073 40.530307266325096, -74.22692510885707 40.531361357895456, -74.22693515683022 40.531362238564704, -74.2271196530306 40.531378400261126, -74.22784282351083 40.53144174700327, -74.22802493772278 40.53145769944766, -74.22874307469321 40.53152059935354, -74.22893271443091 40.5315372089612, -74.22963530585737 40.53159874206669, -74.22969257283741 40.5310521647157, -74.2297735891407 40.53106023434707, -74.22993678591105 40.53107648907622, -74.23063079455258 40.53114560943941, -74.23079802007508 40.531162263692565, -74.23148700569507 40.53123087928047, -74.23164083609285 40.53124619861323, -74.23231906424 40.531313737671034, -74.23249124694641 40.53133088282455, -74.23265299874953 40.531346989834596, -74.23267141036416 40.53116016530984, -74.23280948329966 40.52975907262061, -74.23283348090824 40.52975784785933, -74.23286494966015 40.5297553922219, -74.23288991128967 40.52975275346083, -74.2329151456002 40.52974945315133, -74.23293680136689 40.52974610876706, -74.2329648726662 40.52974105115748, -74.23300157090976 40.52973318078398, -74.23302808718567 40.5297265737996, -74.23306300910909 40.52971664569658, -74.23309957265796 40.52970467814912, -74.23313844020306 40.52969007455955, -74.23319631871274 40.529664372920344, -74.23323263284051 40.52964554198976, -74.23326620175106 40.529626023216856, -74.23329810958548 40.5296053443236, -74.23332883793084 40.52958318554467, -74.23336719499099 40.52955187086044, -74.2334184111756 40.529504239412425, -74.23598951414986 40.529664475358004, -74.2366274597712 40.52958901697987, -74.23694282115112 40.52960869961976, -74.23689176131381 40.53008503554544, -74.23594537170851 40.52997161566158, -74.23582253887142 40.531494950517235, -74.23535048870852 40.53143232730077, -74.2353285819527 40.53259605893205, -74.23532772892179 40.532641731102366, -74.23497652075963 40.53260651117637, -74.23479810917492 40.532588618832946, -74.2348301734121 40.53200047868806, -74.23273710971387 40.531873114791935, -74.23237542866855 40.53185110272574, -74.2322784640829 40.53184520145467, -74.23223313492555 40.532048804114275, -74.23215684148836 40.53204238634411, -74.23132340036338 40.53196569278304, -74.23046576789878 40.531886766999506, -74.23006299745285 40.53184969940932, -74.23005920752199 40.53188325357568, -74.23004456772264 40.53201285938019, -74.22994278849762 40.532913891161186, -74.22503674042603 40.53226533631476)), ((-74.22610931630145 40.52955601024303, -74.22687690253606 40.52839390158726, -74.2269028337172 40.528357457181215, -74.2269590983865 40.52828674703728, -74.22702991530717 40.52821035185248, -74.22730935059572 40.52846733182685, -74.22733183628692 40.52848943405859, -74.22735105502805 40.52851459645616, -74.22736345136833 40.528536706054894, -74.2273718354643 40.52855753944188, -74.22737728625576 40.52857821203988, -74.2273800649814 40.52859919430954, -74.22738013041531 40.528620510647045, -74.22737771793888 40.52864023435053, -74.22729823533174 40.52951256130281, -74.22715890121457 40.52950961679104, -74.22713813261713 40.52969351476151, -74.22710589138524 40.52969722749798, -74.22706385316555 40.52970056517049, -74.22702511004034 40.52970215468489, -74.2269773294502 40.52970216991623, -74.22692603790546 40.52969979845686, -74.22652742331209 40.52966671133015, -74.22646987047582 40.52966110290653, -74.22642458812906 40.52965441573197, -74.2263661495648 40.52964270790709, -74.2262976282321 40.529624288460354, -74.22625001881312 40.52960826099591, -74.22610931630145 40.52955601024303)))",R153,51994,R153,R-03,R-03,R-03,R-03,"Englewood Ave., W. Shore Expwy., Veterans Rd. W.",503,51,123,10309,R,42.6,False,Fairview Park/CLOSED,No,100004235,PARK,20100106000000.00000,20030714000000.00000,,DPR,False,Fairview Park,Y,Fairview Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R153/,No,62,24,11,{C109AFC8-2E7A-4438-94A2-1B44B0416BF5} +"MULTIPOLYGON (((-73.8965240595704 40.80005672074438, -73.89854037778622 40.798933309727474, -73.90097836256565 40.79991020018545, -73.90097806885882 40.80010764260541, -73.90084142592147 40.800474205920736, -73.90064852024052 40.800812534037306, -73.90053111565675 40.80114148344953, -73.90034515993115 40.80138577695472, -73.90019639178719 40.80158309087629, -73.8999980324941 40.80184617639674, -73.89979962917374 40.80213746787226, -73.89967556112292 40.80236300891142, -73.89942786168777 40.80252262811599, -73.8991802192125 40.802644638378986, -73.89908160331066 40.80268154010024, -73.89898043875726 40.802714217062075, -73.89887703975731 40.802742568677445, -73.89877172642382 40.802766506972596, -73.89865021205794 40.80278824811844, -73.89852713282804 40.80280411470184, -73.89840298065486 40.80281404411645, -73.89827825098138 40.80281799627342, -73.89815344158555 40.802815954501206, -73.89802905139054 40.802807928245834, -73.89790557691454 40.80279394946588, -73.8977687162388 40.80276761733899, -73.89763414745879 40.802735177196276, -73.89750233971142 40.80269674202523, -73.89737375735653 40.802652446423, -73.8972760791947 40.802613963928785, -73.89718084163019 40.802572098550996, -73.89708824599168 40.80252693962482, -73.89705227959217 40.80251112895962, -73.89701773500605 40.80248935284407, -73.89689970649849 40.80241957930313, -73.89678766643804 40.80234432155761, -73.89669381564656 40.802285159322494, -73.8966127760806 40.80221020113321, -73.89651296652362 40.8021225641136, -73.89641920083534 40.80203115394114, -73.89634787344029 40.80196517866669, -73.8962808073617 40.80187574826831, -73.89622702434711 40.80180689449597, -73.89617648586723 40.80173663523863, -73.89610093181236 40.80163588501136, -73.89608024169767 40.80158324837036, -73.89603791765582 40.80150493698324, -73.8960025125533 40.80142466693168, -73.89597417986882 40.80134279135637, -73.89595304699844 40.80125966967684, -73.89593962815759 40.801179127683575, -73.89593296943201 40.801098100118, -73.89593309635498 40.80101691478625, -73.89594000838926 40.80093589946962, -73.89595367892757 40.800855381924826, -73.89597214453933 40.80077602224494, -73.89599700637784 40.80069767689187, -73.89602816915708 40.80062064294044, -73.89606551626703 40.80054521474393, -73.89611845660447 40.80045697296918, -73.89617985505623 40.800371954471714, -73.8962391420875 40.800282113664785, -73.89633067406174 40.800209703988074, -73.8965240595704 40.80005672074438)))",X308,21494,X308,X-02,X-02,X-02,X-02,East River,202,17,41,10474,X,30.395,False,North Brother Island,No,100004289,PARK,20100106000000.00000,20010821000000.00000,,DPR,False,North Brother Island,Y,North Brother Island,,Nature Area,http://www.nycgovparks.org/parks/X308/,Yes,85,34,15,{AAF3D22E-B417-47CB-AF24-180155E4CB32} +"MULTIPOLYGON (((-73.94110197570997 40.69339683589619, -73.9422052275584 40.69327061829662, -73.9422620658359 40.69354670810274, -73.94223761580122 40.69354948292153, -73.94229268015434 40.69381694940038, -73.94120841228266 40.69394003834528, -73.94110197570997 40.69339683589619)))",B322,5178,B322,B-03,B-03,B-03,B-03,Hart St. to Pulaski St. between Throop Ave. and Marcus Garvey Blvd.,303,36,79,11206,B,1.416,False,Pulaski Playground,Yes,100004443,PARK,20100106000000.00000,19600211000000.00000,280 HART STREET,DPR/DOE,False,Pulaski Playground,Y,Pulaski Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B322/,No,54,18,8,{4AA6C06B-6583-473A-BAA7-BEF71B81EE60} +"MULTIPOLYGON (((-73.90369797331626 40.67860334852191, -73.9036932514541 40.67859186300297, -73.90368965581665 40.678581084430355, -73.90368787080243 40.678574610034076, -73.90365221968662 40.678378390374775, -73.90394621985259 40.67836381370891, -73.90394625218269 40.678415278171585, -73.90388249851426 40.67857864319825, -73.9039789901738 40.6786004685005, -73.90405274351606 40.67841147589747, -73.90421775074117 40.678406094120454, -73.90421506445232 40.678358378994375, -73.90436018835634 40.678353645039074, -73.90435610286428 40.6782810565269, -73.90435635482146 40.678281046830705, -73.90434158804433 40.67802314774734, -73.90590791758433 40.67810720114759, -73.90600093053307 40.678512525153124, -73.90397917251897 40.678745746040626, -73.90395687891322 40.67874617138779, -73.90392942003398 40.678744822005385, -73.90390365880724 40.67874163968524, -73.9038776130515 40.678736446271536, -73.90385284135324 40.67872951862415, -73.90383032119946 40.67872135824724, -73.90381300833927 40.67871372181631, -73.9037905055389 40.67870173875978, -73.90377125390269 40.6786892613336, -73.90375349458571 40.67867544338516, -73.90373769895533 40.678660690541186, -73.90372609729798 40.67864783948996, -73.90371764619063 40.678636998322, -73.90370971094497 40.678625239960304, -73.90370274616134 40.678613113199035, -73.90369797331626 40.67860334852191)), ((-73.90623386426624 40.67847876219601, -73.90613716146851 40.67812248102081, -73.90755900049962 40.67820089363094, -73.90736614264638 40.6783556415175, -73.90623386426624 40.67847876219601)))",B219,6334,B219,B-16,B-16,B-16,B-16,"Fulton St., Truxton St., bet. Eastern Pkwy. and Van Sinderen Ave.",316,37,73,11233,B,3.253,False,Callahan-Kelly Playground,Yes,100004353,PARK,20100106000000.00000,19450125000000.00000,,DPR,True,Callahan-Kelly Playground,Y,Callahan-Kelly Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/B219/,No,"55, 54",18,8,{5E896876-6C8F-47B4-B154-9B3A46C0C4FA} +"MULTIPOLYGON (((-73.84954704782143 40.67049381576271, -73.84899506084102 40.670163456618695, -73.8491748151917 40.67016826254081, -73.84934308935189 40.670169336716235, -73.84951104928369 40.67016710533806, -73.84969322923504 40.670160952533315, -73.84989842708706 40.670149348929385, -73.8500690045927 40.67013591142011, -73.85021708490046 40.670121433089676, -73.85038703331875 40.67010156189893, -73.85071506070105 40.670069082239806, -73.85101614482981 40.67004460747105, -73.85126556287692 40.670028174283466, -73.85150203673766 40.67001579238239, -73.85174077926689 40.670006438655214, -73.85198268919733 40.67000017637968, -73.85226019707007 40.66999697424555, -73.85250309801668 40.66999765963492, -73.85282881424143 40.67000368878819, -73.85308193599957 40.6700124240419, -73.8533317767387 40.670024527891215, -73.85353750941357 40.670037100054074, -73.85378980307273 40.67005574468284, -73.85405349487978 40.670079048983894, -73.85431451788574 40.67010598648743, -73.854615089757 40.67014181195486, -73.8547655033554 40.67016334148015, -73.85489490959615 40.670179675348685, -73.85505549619656 40.670197159597194, -73.85518528947841 40.67020905948258, -73.85525966308519 40.67021498482295, -73.85533210232647 40.67022013323843, -73.85540203119369 40.670224521118655, -73.85546295847678 40.670227880964276, -73.85553454882405 40.6702312766809, -73.85561161354374 40.67023426858818, -73.85569274680971 40.670236674808365, -73.85576102752026 40.67023810940998, -73.85107688472495 40.67094479215459, -73.8501127329514 40.670653411602096, -73.84981337577139 40.67057242765477, -73.84954704782143 40.67049381576271)), ((-73.85533271583441 40.67086151254891, -73.85562222706923 40.67201647616375, -73.85575955957937 40.67214245957423, -73.85567787123799 40.67217249651384, -73.85559261429674 40.67219609112435, -73.85550465978496 40.67221300225299, -73.85541491170572 40.672223056329436, -73.8553242881032 40.67222615094456, -73.8552337175169 40.672222253045014, -73.85514412832426 40.67221140432307, -73.85505643929085 40.6721937149009, -73.85497154773624 40.672169366017215, -73.85489032480521 40.672138608219996, -73.85481360247104 40.67210175504596, -73.8547421652493 40.67205918571149, -73.85467674785347 40.67201133520327, -73.85461801863649 40.67195869425706, -73.85456657960644 40.67190180215282, -73.85452295815765 40.671841242201324, -73.85448760235575 40.671777634533434, -73.8544608726695 40.67171163158664, -73.85444304317419 40.671643909101135, -73.85443429801435 40.671575161612175, -73.85443472551329 40.67150609253707, -73.85444432173043 40.67143741057717, -73.85446298811907 40.67136981980957, -73.8544905327279 40.67130401158379, -73.85452667494151 40.671240660926074, -73.85457104313728 40.671180416631124, -73.85462318297753 40.671123895869755, -73.85468255978704 40.67107167878923, -73.85474856566974 40.67102429951786, -73.8548205242455 40.67098224346963, -73.85489769894068 40.67094594195249, -73.85497929654566 40.67091576767049, -73.85506448378581 40.67089202844164, -73.85515238613576 40.67087496809747, -73.85524210320534 40.67086476109962, -73.85533271583441 40.67086151254891)))",Q094D,5883,Q094D,Q-10,Q-10,Q-10,Q-10,"S. Conduit Ave., Linden Blvd., 149 Ave., bet. 79 St. and 85 St.",410,32,106,11414,Q,10.761,False,Gemini Fields,Yes,100000051,PARK,20090423000000.00000,19380324000000.00000,,DPR,False,Gemini Fields,Y,Gemini Fields,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q094D/,No,23,15,8,{8487F53F-83E3-4A8C-9B9B-DB49ADCE9389} +"MULTIPOLYGON (((-73.99972930716017 40.6091028817843, -74.00017825712287 40.60867321255036, -74.00047231326232 40.60885107641894, -73.99997276869682 40.60924948068836, -73.99972930716017 40.6091028817843)))",B158,5432,B158,B-11,B-11,B-11,B-11,18 Ave. bet. 83 St. and 82 St.,311,47,62,11214,B,0.437,False,Garibaldi Playground,Yes,100004176,PARK,20100106000000.00000,19371008000000.00000,8201 18 AVENUE,DPR,False,Garibaldi Playground,Y,Garibaldi Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B158/,No,47,23,11,{55AD2B99-8E26-4F8B-80CC-04548715883B} +"MULTIPOLYGON (((-73.91692122568675 40.887357370682565, -73.9168651967912 40.88702141752012, -73.91684491138584 40.88697510891723, -73.91682819036726 40.88694968154975, -73.91680538833174 40.886917609612276, -73.91792908347267 40.88711760249413, -73.91800104088314 40.886460245635185, -73.9184735679098 40.88658234319877, -73.9184777651505 40.886642929971046, -73.91850609399182 40.886987333687344, -73.91855383291681 40.88738776220359, -73.91856382903025 40.88751222722909, -73.91856797303612 40.8875815162466, -73.91856699442756 40.88766651242797, -73.91856606434045 40.88773708105614, -73.9185617474267 40.887808930486386, -73.91855658803141 40.88787885408212, -73.91854371803689 40.88797226771437, -73.91854105101652 40.8879884250521, -73.91853313242852 40.88803640095507, -73.91853031358053 40.88805347938231, -73.91851156301627 40.88814388933873, -73.91850455504763 40.88817495205484, -73.91704482937566 40.88808908733097, -73.91703801068593 40.888088687116934, -73.91699822328896 40.88780983564792, -73.91692122568675 40.887357370682565)))",X259,4824,X259,X-08,X-08,X-08,X-08,"Palisade Av, Douglas Av bet. W 235 St and",208,11,50,10471,X,4.73,False,Raoul Wallenberg Forest,Yes,100004269,PARK,20100106000000.00000,19900814000000.00000,3600 PALISSADE AVENUE,DPR,True,Raoul Wallenberg Forest,Y,Raoul Wallenberg Forest,Neighborhood Park,Nature Area,http://www.nycgovparks.org/parks/X259/,No,81,34,16,{8C0D2BC0-3394-4FCA-8A8E-94E43E7CAF2F} +"MULTIPOLYGON (((-73.8957227973772 40.729168608235625, -73.89571768025486 40.729103449056325, -73.89584945090043 40.72908925022037, -73.89579656935021 40.7291744148652, -73.89579081838181 40.729178443041576, -73.89578425661328 40.72918167623468, -73.89577707122113 40.72918402096088, -73.8957694694633 40.72918541076994, -73.89576166921205 40.729185804435595, -73.89575389302514 40.729185192253695, -73.8957463634183 40.72918359153539, -73.89573929694461 40.72918104750225, -73.89573289590874 40.72917763327878, -73.89572734245235 40.72917344718558, -73.8957227973772 40.729168608235625)))",Q500,6066,Q500,Q-05,Q-05,Q-05,Q-05,"54 Ave., Jay Ave., and 69 St.",405,30,104,11378,Q,0.019,False,Park,No,100008318,PARK,20110712000000.00000,20100115000000.00000,,DPR,False,Park,N,Park,,Triangle/Plaza,http://www.nycgovparks.org/parks/Q500/,No,30,15,6,{CC803F02-39BF-4077-BA66-A0C140ED5525} +"MULTIPOLYGON (((-73.99802401748894 40.61915544765098, -73.9984882723936 40.61871036340501, -73.99888196522177 40.61894761185141, -73.99871258524777 40.619569074600825, -73.99802401748894 40.61915544765098)))",B099,5458,B099,B-11,B-11,B-11,B-11,"16 Ave., New Utrecht Ave. bet. 70 St. and 71 St.",311,43,62,11228,B,0.871,False,Lt. Petrosino Park,Yes,100004576,PARK,20100106000000.00000,19291028000000.00000,7002 16 AVENUE,DPR,False,Lt. Joseph Petrosino Park,Y,Lt. Joseph Petrosino Park,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B099/,No,49,22,10,{EA145C7D-CC94-4993-85E8-938F164ECC93} +"MULTIPOLYGON (((-73.9819962025476 40.72149581326732, -73.98207379046212 40.72152853007975, -73.98214999024766 40.721560660392804, -73.98196297217078 40.72182258226596, -73.98188361586693 40.72178912038056, -73.98180602655869 40.7217564034409, -73.9819962025476 40.72149581326732)))",M350,5007,M350,M-03,M-03,M-03,M-03,E. 2 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.12,False,Peachtree Garden,No,100003972,PARK,20100106000000.00000,20021120000000.00000,238 EAST 2 STREET,DPR,False,Peachtree Garden,N,Peachtree Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M350/,No,74,26,12,{BAA5C787-02F1-4186-AE30-92A726754BBD} +"MULTIPOLYGON (((-73.77836915150323 40.69252911744389, -73.7794180336869 40.69220185901173, -73.77968275057405 40.69253487074922, -73.78005542664654 40.693003687895285, -73.77933236326373 40.69366889248228, -73.77874862858077 40.69391125406803, -73.7787750567332 40.69395589030309, -73.77792013272854 40.694322220561546, -73.77789203431793 40.69421014129164, -73.77788666335204 40.69418871576341, -73.77785475870213 40.69406144824328, -73.77784666841693 40.69402917885728, -73.77753579582294 40.692789121091344, -73.77836915150323 40.69252911744389)), ((-73.78020837127063 40.69196293522326, -73.78048883687012 40.69186973403463, -73.78051530692093 40.69192331388409, -73.78111391269589 40.69171012490787, -73.78125425228214 40.691901288495814, -73.78153597624708 40.69228503453503, -73.78030991060854 40.69280227384176, -73.78030943227874 40.69280166508053, -73.7797664005259 40.69210980279015, -73.78020837127063 40.69196293522326)), ((-73.77955704866261 40.693645233383485, -73.78016390086079 40.69314014498351, -73.78017178427758 40.693150062112906, -73.78047253356009 40.69353897367157, -73.78072532479725 40.69384638374137, -73.78002495110712 40.69414300078552, -73.7800159423758 40.694146374007275, -73.78000629822073 40.694149057119205, -73.77999702027755 40.694150832310186, -73.7799875341028 40.69415189119243, -73.77997819231389 40.6941522191313, -73.77997016341301 40.69415194263193, -73.77996038484747 40.6941508991495, -73.77995136912273 40.69414922046032, -73.77994165734627 40.69414658139039, -73.77993135922064 40.69414272280083, -73.77992302220046 40.694138658140375, -73.77991481257352 40.694133634673825, -73.77990599390833 40.69412673877052, -73.77989880929947 40.694119432654965, -73.77955704866261 40.693645233383485)))",Q051,6320,Q051,Q-12,Q-12,Q-12,Q-12,"169 St., Merrick Blvd., Marne Pl. bet. Linden Blvd., Sayres Ave., and 111 Rd.",412,27,113,11433,Q,10.79,False,St. Albans Park,Yes,100000319,PARK,20090423000000.00000,19140729000000.00000,,DPR,True,St. Albans Park,Y,St. Albans Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q051/,No,"29, 32",14,5,{1C29C66D-0DB8-42BD-A8A4-7E0514F5EDDF} +"MULTIPOLYGON (((-73.90946965429053 40.84539041578975, -73.90948764225311 40.84520702831944, -73.91009436153684 40.84524134692265, -73.91007763430744 40.845248603563206, -73.90997696455604 40.84524158944552, -73.90984518011565 40.84529880469577, -73.90984711526625 40.845409982860055, -73.90946965429053 40.84539041578975)), ((-73.91019751199778 40.84532917039923, -73.91012850155556 40.84524074498254, -73.91053216858661 40.845259052427274, -73.91047111821224 40.845314116124605, -73.91043124638492 40.84534877215712, -73.91039080984073 40.84538272085012, -73.9103184973718 40.845440631179144, -73.91018404300274 40.84534282669308, -73.91019751199778 40.84532917039923)))",X148D1,5712,X148D1,X-05,X-05,X-05,X-05,N/s Cross Bronx Exwy bet. Morris Av and Grand Concourse,205,15,46,10457,X,0.15,False,Morris Mesa,Yes,100005180,PARK,20100106000000.00000,19570328000000.00000,,DPR,True,Morris Mesa,Y,Morris Mesa,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X148D1/,No,86,33,15,{CED18D0B-30F0-41B3-9F75-11C434A82A27} +"MULTIPOLYGON (((-73.88453421649129 40.673674521914606, -73.8846011806638 40.67366473745745, -73.88464465082856 40.67383470207946, -73.88457772877787 40.6738446559011, -73.88450946866863 40.67385480825515, -73.88443930144754 40.67386524411673, -73.88436907859956 40.67387568888479, -73.88432516908657 40.67370506544003, -73.88439570021892 40.67369475968794, -73.88446591190457 40.673684501299206, -73.88453421649129 40.673674521914606)))",B467,5261,B467,B-05,B-05,B-05,B-05,Pitkin Ave. and Cleveland St.,305,37,75,11207,B,0.107,False,Floral Vineyard,No,100004261,PARK,20100106000000.00000,20021120000000.00000,2379 - 2385 PITKIN AVENUE,DPR,False,Floral Vineyard,N,Floral Vineyard,Greenthumb,Garden,http://www.nycgovparks.org/parks/B467/,No,54,18,8,{A8A234B7-A8C2-4A3C-B8A2-20C98AA83B76} +"MULTIPOLYGON (((-73.9394109472362 40.8282491635391, -73.94292106092882 40.823438760906846, -73.94364514854932 40.82374379533758, -73.93965228636854 40.82920959703389, -73.9396365176173 40.82923597418763, -73.93962404657782 40.82925885104031, -73.93961441106636 40.82927804905292, -73.93960936647765 40.829288738889915, -73.93960637775865 40.82929530553582, -73.93959954910898 40.829311060623354, -73.93959350124524 40.82932602368369, -73.93958433229662 40.82935100851928, -73.93957281095587 40.82938809207361, -73.93956033168354 40.82944216386422, -73.93955176734814 40.82950887705358, -73.93955066056812 40.829577491493886, -73.93955606658825 40.829637475400794, -73.93956733924138 40.829696740184254, -73.93957710265325 40.82973260391199, -73.93960032222147 40.829796714210254, -73.93962002853965 40.829839254908194, -73.93964920447922 40.829891376422125, -73.93967501589333 40.82993046960792, -73.93968324376412 40.829941898491356, -73.93969003450593 40.82995101145003, -73.93969721981809 40.829960358743264, -73.93970693602245 40.82997255742588, -73.93972023625084 40.82998849683616, -73.93973132723508 40.83000118340303, -73.93974008191924 40.83001083948296, -73.93974704014379 40.8300183028189, -73.93976187975447 40.83003363879638, -73.93979650761464 40.83006669243666, -73.93880573026527 40.829654487159964, -73.9394109472362 40.8282491635391)))",M014,4810,M014,M-10,M-10,M-10,M-10,"Bradhurst Av and Edgecombe Av, W 145 St To","109, 110",9,30,10039,M,12.772,False,Jackie Robinson Park,Yes,100004828,PARK,20100106000000.00000,18990505000000.00000,319 W 145 STREET,DPR,False,Jackie Robinson Park,Y,Jackie Robinson Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/M014/,No,71,30,13,{B013B7A1-88B4-4125-98D4-5DCF1803A727} +"MULTIPOLYGON (((-74.216345334665 40.523904197229776, -74.21634280965735 40.52394261053358, -74.21626733794501 40.523950838614006, -74.21617729346197 40.523958081892516, -74.21605811445664 40.523966393938075, -74.21600116921897 40.52396953229177, -74.21580248505839 40.52396788608812, -74.21579185959149 40.52395880709849, -74.21578785357853 40.52394870797059, -74.21579313027974 40.52394263477653, -74.21580370470377 40.52393553852556, -74.21604074747563 40.52392094260819, -74.21617582230756 40.52391260334823, -74.21626189333708 40.52390536485496, -74.216345334665 40.523904197229776)))",R002,6574,R002,R-03,R-03,R-03,R-03,"Amboy Rd., Bloomingdale Rd.",503,51,123,10309,R,0.054,False,Pleasant Plains Plaza,Yes,100004535,PARK,20100106000000.00000,,,CDOT,False,Pleasant Plains Plaza,Y,Pleasant Plains Plaza,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/R002/,No,62,24,11,{E0D20B4D-5334-4BFC-BC11-02D9401444DB} +"MULTIPOLYGON (((-73.94187403533974 40.826546261894215, -73.94195879185588 40.82643034507977, -73.94227683548424 40.82656574112783, -73.94223301599115 40.8266256705714, -73.94219207935048 40.82668165727294, -73.94187403533974 40.826546261894215)))",M319B,5966,M319B,M-09,M-09,M-09,M-09,Edgecombe Ave. and W. 150 St.,109,9,30,10031,M,0.112,False,Edgecombe Park,No,100004140,PARK,20100106000000.00000,20010209000000.00000,,DPR,False,Edgecombe Park,N,Edgecombe Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/M319B/,No,71,30,13,{D4A07F0D-B447-4D1D-9764-C329B4EF35C6} +"MULTIPOLYGON (((-73.95493352005634 40.70906602820264, -73.95486975368685 40.709165734829455, -73.95483834428536 40.70921484629385, -73.95467669802235 40.70915572093902, -73.95470810751507 40.70910660951835, -73.95477187406858 40.70900690478134, -73.95493352005634 40.70906602820264)))",B550,5515,B550,B-01,B-01,B-01,B-01,Keap St. bet. S. 4 St. and S. 3 St.,301,34,90,11211,B,0.066,False,Keap Fourth Community Garden,No,100008364,PARK,20140724000000.00000,20130606000000.00000,347 KEAP STREET,DPR,False,Keap Fourth Community Garden,,Keap Fourth Community Garden,,Garden,,No,53,18,7,{8D3E9075-74AF-46A9-A748-8AE226E563D7} +"MULTIPOLYGON (((-74.11867424407325 40.60921738617162, -74.12104869234857 40.608943946480686, -74.1211805330464 40.60951856321761, -74.11934554531797 40.610020290134685, -74.11917775083609 40.610059747716896, -74.11905298621826 40.610078016231384, -74.11896499782964 40.61008800137127, -74.11886113219464 40.61009415493222, -74.1187374567372 40.61009373884368, -74.1185285787208 40.61006650291244, -74.11851090704434 40.60997836451377, -74.11849388991097 40.60989348622775, -74.11843013746075 40.60957550909656, -74.11842979650328 40.60957380926189, -74.11856086497485 40.609557272027274, -74.11873791150408 40.609534933718436, -74.11867424407325 40.60921738617162)))",R075D,5064,R075D,R-02,R-02,R-02,R-02,"SI Expressway, Manor Rd. and Schmidts La.",502,49,122,10314,R,4.647,False,Sports Park,No,100003984,PARK,20100106000000.00000,19530117000000.00000,215 SCHMIDTS LANE,DPR,True,Sports Park,N,Sports Park,Concession,Managed Sites,http://www.nycgovparks.org/parks/R075D/,No,63,24,11,{0D844C20-354A-49F0-BA1C-9ECC55A5CF50} +"MULTIPOLYGON (((-73.99723316803666 40.710097631419835, -73.99810411681364 40.70997066171127, -73.99821153656721 40.71042851018376, -73.99783068796181 40.71047362823619, -73.99783058265693 40.710473076221035, -73.99745318777117 40.710521404311024, -73.9975897621336 40.711074347912, -73.9974439414728 40.71108645573616, -73.99748152858301 40.71122424281861, -73.99693010018363 40.7113080840961, -73.99679746996644 40.710812985052556, -73.99740629942715 40.71072216855467, -73.99723316803666 40.710097631419835)))",M194,4867,M194,M-03,M-03,M-03,M-03,"Catherine Slip, Madison St. and South St.",103,1,5,10038,M,1.75,False,Alfred E. Smith Playground,Yes,100004495,PLGD,20100106000000.00000,19520612000000.00000,86 CATHERINE STREET,DPR/NYCHA,True,Alfred E. Smith Playground,Y,Alfred E. Smith Playground,Neighborhood Plgd,Community Park,http://www.nycgovparks.org/parks/M194/,No,65,26,7,{2E52EEFF-1D16-4601-8B4B-45A1FDC5582F} +"MULTIPOLYGON (((-73.9228061443153 40.67995363610762, -73.92301537779456 40.68009345692351, -73.9231479087511 40.68075095722828, -73.92309867966135 40.680879323310755, -73.92308513416403 40.68090630177879, -73.92306604682828 40.68093126388977, -73.92304191994758 40.680953553501844, -73.92301338466896 40.68097258660017, -73.92298118914636 40.680987866598194, -73.92294617724181 40.68099899062746, -73.92290926602915 40.68100566753309, -73.92257952066143 40.68104417546887, -73.92235953408884 40.67995222798285, -73.92264819377068 40.67991852252332, -73.9226820562923 40.67991684601151, -73.92271578702822 40.679919671974716, -73.92274836054558 40.679926913275224, -73.92277878823259 40.67993835042538, -73.9228061443153 40.67995363610762)))",B258,6403,B258,B-03,B-03,B-03,B-03,Ralph Ave. bet. Chauncey St. and Sumpter St.,303,41,81,11233,B,1.485,False,Brevoort Playground,Yes,100004841,PARK,20100106000000.00000,19570627000000.00000,291 PATCHEN AVENUE,DPR/NYCHA,True,Brevoort Playground,Y,Brevoort Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B258/,No,55,25,8,{442B11DE-B330-425F-B4E9-38097C67C095} +"MULTIPOLYGON (((-73.91343241065258 40.66677177717264, -73.91379622278428 40.66671755562865, -73.91385969392904 40.66696698312437, -73.91349527452128 40.66701882344701, -73.91343241065258 40.66677177717264)))",B511,4893,B511,B-16,B-16,B-16,B-16,Sutter Ave. and Amboy St.,316,41,73,11212,B,0.213,False,Jes Good Rewards Childeren's Garden,No,100004499,PARK,20100106000000.00000,20050429000000.00000,155 AMBOY STREET,DPR,False,Jes Good Rewards Childeren's Garden,N,Jes Good Rewards Childeren's Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B511/,No,55,20,9,{DDDDEBAF-5084-45DF-B78B-1695DF7E2F88} +"MULTIPOLYGON (((-73.82413760240924 40.73638556059845, -73.82417884329432 40.73593745347836, -73.82485775041044 40.73598817632041, -73.82483264929688 40.73624522280853, -73.82442561475642 40.736403375394715, -73.82413760240924 40.73638556059845)))",Q376,6657,Q376,Q-08,Q-08,Q-08,Q-08,Gravett Rd. bet. Main St. and 149 St.,408,24,107,11367,Q,0.619,False,Cedar Grove Playground,Yes,100000141,PARK,20090423000000.00000,19540430000000.00000,,DPR/DOE,False,Cedar Grove Playground,Y,Cedar Grove Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q376/,No,25,16,6,{D519E78A-60F4-4095-8AB5-A3941C65E93D} +"MULTIPOLYGON (((-74.19312590958035 40.632828292871544, -74.19041989510023 40.63141284777336, -74.19031551045553 40.631528648461256, -74.18920340181931 40.6309121056829, -74.18937082145048 40.63094027032998, -74.18938111583124 40.63093624065048, -74.18936224018634 40.630908201583146, -74.18955560977145 40.6307617165979, -74.18975481304527 40.6305604411286, -74.18993517744212 40.63029008860263, -74.19025806017206 40.62988302868492, -74.19064370614024 40.62917263111098, -74.19120718140972 40.62878771293326, -74.1914917071865 40.62870379434949, -74.19176973805291 40.628780111231826, -74.19204247895485 40.62898699482513, -74.19213936740017 40.62918637866556, -74.19198107772698 40.63020708184883, -74.19185112705442 40.63021407248456, -74.19183657997517 40.630477093198465, -74.19189174402528 40.630871979823496, -74.19200548136503 40.631044108349606, -74.19205656466063 40.63109864686908, -74.19216173107742 40.6311694286493, -74.19235005755786 40.63127267462471, -74.1926135758037 40.631326104474496, -74.19355314492559 40.63124676120474, -74.19411517096941 40.63124637744376, -74.19472107289582 40.63131162589808, -74.19505762696137 40.63146621260309, -74.19520988860883 40.63156418669115, -74.19502620012337 40.63194399981079, -74.19480061451193 40.63209072868224, -74.19451394136479 40.63225697841215, -74.19406527983426 40.632440583836164, -74.19338473344797 40.63270012969007, -74.19312590958035 40.632828292871544)), ((-74.19530239794204 40.632352872062626, -74.19561277658435 40.63203395694563, -74.19749244780175 40.63362986640946, -74.19685889775033 40.634164075925206, -74.19684242647806 40.63439591813394, -74.19661430203531 40.634735562740175, -74.19653289207352 40.63486797228698, -74.19624136869928 40.63473607375326, -74.19528436255636 40.6342299378408, -74.19486791355332 40.63401711455791, -74.19465223802537 40.633919078106416, -74.19432400982012 40.63376987929375, -74.19411003985653 40.63366312189609, -74.19396081740834 40.63358500494188, -74.1937394319776 40.633469110066166, -74.19360004334482 40.6333961405636, -74.19343401046648 40.63330922161671, -74.19329462250161 40.633236251742666, -74.19317586778969 40.633174083009926, -74.19344920820373 40.633089530965485, -74.19372561726871 40.63300402845213, -74.19389571008092 40.63295141334553, -74.1940905864066 40.63289113053843, -74.19421233462548 40.63285346867048, -74.19452055978788 40.63274290121403, -74.19487134898952 40.632617063596946, -74.19494515530464 40.63259058742465, -74.19502208999373 40.6325603390173, -74.19510150261318 40.63252055073156, -74.19517922804226 40.63246043508129, -74.19530239794204 40.632352872062626)), ((-74.19209497474516 40.63391481487549, -74.19231259677791 40.6336215061149, -74.1924820582271 40.63370929624431, -74.19541059868095 40.635268969060455, -74.19518348303859 40.63560258998023, -74.19494961356337 40.63593193090296, -74.1946824888013 40.63594170927948, -74.19436615531309 40.635659795968344, -74.19407358755431 40.63546277162715, -74.19303512572326 40.63499721131475, -74.19261361962512 40.6347032045897, -74.19222206115617 40.63435422526578, -74.19214047701003 40.63421797768076, -74.19209497474516 40.63391481487549)), ((-74.17938281321551 40.61611279372228, -74.17949602094728 40.61592387284688, -74.18247169248109 40.61736338942769, -74.18313639916758 40.617767590087574, -74.18261260800831 40.61821162095819, -74.18188139990389 40.61802816136484, -74.18132537924858 40.61775336097802, -74.18098606686465 40.61721540208868, -74.17938281321551 40.61611279372228)))",R159,6377,R159,R-02,R-02,R-02,R-02,"Gulf Ave., Goethals Br. Appr. bet. Western Ave. and Arthur Kill",502,50,122,10314,R,44.733,False,Old Place Creek Park,No,100004788,PARK,20100106000000.00000,20030926000000.00000,,DPR,Part,Old Place Creek Park,N,Old Place Creek Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R159/,Yes,63,"23, 24",11,{90F4314E-9909-4E65-91AF-92A1BBAA7C95} +"MULTIPOLYGON (((-74.00374111207715 40.70793867190143, -74.00404343029079 40.70762492088271, -74.00411098366125 40.70771026894082, -74.00413826801976 40.70774473953135, -74.00419337055725 40.707814356056495, -74.00426180835068 40.70790081972516, -74.00388191049755 40.70806322504162, -74.00374082542872 40.70812353784473, -74.00357613020618 40.708193943238555, -74.00353875722345 40.7081486765994, -74.00374111207715 40.70793867190143)))",M378,5769,M378,M-01,M-01,M-01,M-01,Pearl St. bet. Fulton St. and Beekman St.,101,1,1,10038,M,0.342,False,Pearl St Playground,Yes,100003959,PLGD,20100106000000.00000,,,DPR/CDOT,False,Pearl St Playground,Y,Pearl St Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M378/,No,65,26,10,{68AACE2C-8509-49C5-8102-E1E17D7DE561} +"MULTIPOLYGON (((-73.80418278438971 40.744954234751454, -73.80424183730766 40.74481238972328, -73.80424136182918 40.74481262394792, -73.80440581143412 40.74441682530348, -73.80445270672956 40.74429410343037, -73.80447078705684 40.744233402001974, -73.80448500735282 40.74418566044621, -73.80449625610719 40.74414789418514, -73.80450703164227 40.744097888302214, -73.80452137263804 40.744022711139046, -73.80453039027933 40.74396046705399, -73.80453821272886 40.743906471402674, -73.80454327902856 40.74383504982606, -73.80455012689106 40.74372822866054, -73.80463658178405 40.74227442865114, -73.80601298288705 40.742194357716315, -73.80631287258743 40.74217690899197, -73.80757686859481 40.742103359786526, -73.80767904138402 40.742098863109234, -73.80773624298715 40.74209701711715, -73.80783711818472 40.74209660554453, -73.80794490403672 40.74209912485839, -73.80801856873296 40.742103429640466, -73.8081021877469 40.742108315580985, -73.80819776941865 40.74211819309467, -73.80832908032433 40.74213444346593, -73.80847274509256 40.74215718799237, -73.80870446549007 40.742193873530375, -73.80915261590789 40.74226482161482, -73.80999327670003 40.74239790383729, -73.81024374445813 40.74243755286124, -73.81089892963348 40.74254126689976, -73.81098082274397 40.74255423088389, -73.81410276122217 40.74304836698365, -73.81404867267705 40.74320808577413, -73.81399120771322 40.74337777492001, -73.81393484197791 40.74354421857459, -73.81383886535116 40.743827622900355, -73.81380200522145 40.743936467246115, -73.81374618771866 40.744101288065806, -73.81372233082861 40.74417173320397, -73.81367847905148 40.74430121936525, -73.81362457797461 40.74453540670324, -73.813591814777 40.74467775022136, -73.81354998665883 40.744917808557325, -73.81352626313337 40.74512993989334, -73.81348426852516 40.74573632391136, -73.81377130547895 40.74599243644649, -73.81391200550503 40.746117978620426, -73.8122820628664 40.74709535972192, -73.8122303482582 40.747126369081194, -73.812282708902 40.74717536374247, -73.8122839889907 40.74717574044024, -73.8122144735649 40.74721627967612, -73.8094250317518 40.74888881922457, -73.80934202803539 40.74893858532603, -73.80894257202415 40.74917808446867, -73.80866473755013 40.74934466215088, -73.80830362953422 40.74956116525463, -73.80809240257607 40.7496878049866, -73.80769187240647 40.74992793915322, -73.80752326316141 40.75002902502493, -73.80513280678274 40.749843999939266, -73.8046446933258 40.749806213560134, -73.80306641606053 40.74968401768878, -73.80304585703013 40.74949359437086, -73.80303414493731 40.74938512072397, -73.80302174255274 40.74927024057786, -73.80300898027753 40.749150544794766, -73.80299579177382 40.74902684551943, -73.80298569679603 40.748932158707746, -73.80297747747039 40.74885507824032, -73.8029687512629 40.7487732314139, -73.80295830151535 40.74867521390927, -73.80294091947884 40.74851218494308, -73.80293578057142 40.74837528535953, -73.80293738314724 40.74827784047865, -73.8029465644715 40.74812092367353, -73.80296433270985 40.74799841287428, -73.80300471523321 40.74781350489214, -73.80301347639654 40.747783391562386, -73.80302354503908 40.74774877972616, -73.80305437849074 40.74766455926096, -73.80309538608479 40.74756606871142, -73.80315595575514 40.74742059242515, -73.80317269403271 40.747380388107736, -73.8032108773949 40.74728867801964, -73.80325094363134 40.74719244697898, -73.80330372075504 40.74706568337355, -73.80334164140514 40.746974603145965, -73.80336162068275 40.746926617634536, -73.80340032822528 40.74683364766133, -73.80342993329988 40.746762539997434, -73.80346529330771 40.74667761033233, -73.80349651765714 40.7466026116135, -73.80352920869197 40.74652409349796, -73.80357570630161 40.74641241067109, -73.80364040821676 40.746257003142645, -73.80368999039942 40.746137909835376, -73.80373366487578 40.74603300836156, -73.8037570528836 40.74597682945248, -73.8038769686804 40.74568879886266, -73.80400203006917 40.745388404803826, -73.80405145831607 40.74526968117557, -73.80406191727515 40.74524455856337, -73.80407452024735 40.7452142850848, -73.80412300621349 40.74509782189865, -73.80418278438971 40.744954234751454)), ((-73.79791868513637 40.746877035724246, -73.79776302717636 40.746651994624116, -73.79764271703725 40.74666451920971, -73.79732439483953 40.7466976556478, -73.79714790489258 40.74671602690503, -73.79700087625216 40.74673133135851, -73.79707556270834 40.74667375476072, -73.79686645358663 40.74669244722702, -73.79659777048228 40.74671333312227, -73.7964526293509 40.74672196563798, -73.79629308303092 40.74672982327116, -73.79605103014349 40.746738694472306, -73.79575499204542 40.74674471749111, -73.79554271712396 40.746744194988096, -73.79531938780475 40.746742936545395, -73.79507488288885 40.74673630538165, -73.79487880658145 40.74672899182134, -73.79471751980462 40.74672137973409, -73.79465581130202 40.74619681965632, -73.79463595660094 40.74602804238857, -73.7946007311278 40.74572860536714, -73.79458163936177 40.7455663104022, -73.79456512405422 40.74542592670898, -73.7945521933934 40.745318389168716, -73.79454104090257 40.74523052101462, -73.79453656985478 40.7451568649051, -73.79453409766265 40.74511615478344, -73.79453447405002 40.74504670819488, -73.79453866980502 40.74496621737153, -73.79454305346803 40.74492691796953, -73.79455084665051 40.74485704696195, -73.79456562349037 40.74477170325519, -73.79458212222315 40.7446981421765, -73.79459879672375 40.74463898955432, -73.79461072827138 40.74459666168873, -73.79463732181948 40.74452078538275, -73.79465672351921 40.74447068412855, -73.79469208263757 40.744387359116025, -73.79471932523438 40.744332491024075, -73.79474554873772 40.74428211104792, -73.7947721618609 40.744234766475756, -73.79484605919768 40.74411788056246, -73.7949026726818 40.744038921186615, -73.79494319150402 40.74398702134572, -73.79499609957503 40.74392359991567, -73.79499997432293 40.74392606610315, -73.79502966114956 40.74388553028767, -73.79619945015384 40.74269264389138, -73.79642206768145 40.74248417166723, -73.79652615332714 40.7423914905749, -73.79665189467752 40.74228989476131, -73.79682645915514 40.742159511916725, -73.79692032359274 40.74208940351335, -73.79712005948386 40.742080658587845, -73.7973490063407 40.74210416153134, -73.79762816754968 40.742132818530195, -73.79790566130382 40.74216130443122, -73.79958092974519 40.74233326020639, -73.79969081674389 40.74233240048373, -73.79982375265595 40.74233136099506, -73.80094295527314 40.74232259646716, -73.80419509789107 40.74229706784456, -73.80424457362592 40.74229667918154, -73.8042395437405 40.74237215941777, -73.80423371367662 40.74245966009044, -73.80422373179859 40.74260947614277, -73.80422136482913 40.74264500080769, -73.80421419579159 40.742752594061606, -73.80420574601631 40.74287940560309, -73.80419693702122 40.74301160427704, -73.8041981635511 40.743022507925545, -73.80414560001802 40.7436812120771, -73.80415282697624 40.7436736105626, -73.80414452934349 40.74379812784523, -73.80414000362812 40.743847022290915, -73.80413303036758 40.743903640741976, -73.80412874380183 40.74393844082641, -73.8041245421181 40.74397255846906, -73.80412087536507 40.744002325761734, -73.80411464372848 40.744033414241095, -73.8041101652753 40.744055751854106, -73.80410497063481 40.74408166687136, -73.80409871015962 40.7441128939789, -73.80408825864772 40.74415165481919, -73.80408041072452 40.744180761228094, -73.80407197265569 40.744212052167676, -73.80406101235377 40.744252702307755, -73.804048166182 40.74429044419624, -73.80403691084528 40.74432351064579, -73.80402401449433 40.744361396527296, -73.80400391603973 40.74441409432947, -73.80398880041328 40.74445372791986, -73.80395765476148 40.744523033908926, -73.80386581263299 40.74473445301506, -73.80378971097983 40.74491065023981, -73.80364746455378 40.74523999316728, -73.80357598496332 40.74540548476628, -73.80353813727439 40.74549311356348, -73.8035006948294 40.745579802007, -73.80346437054511 40.74566390158165, -73.80343908929684 40.74572243293406, -73.80343803007334 40.74572507772168, -73.80331916207254 40.74601407319, -73.80329145682599 40.74608143075688, -73.80328409014972 40.74608129210409, -73.80325377277588 40.746151480902014, -73.80319004049292 40.74629903563682, -73.80316389203453 40.74635957357691, -73.79793719713605 40.74690379980474, -73.79791868513637 40.746877035724246)))",Q024,5318,Q024,Q-07,Q-07,Q-07,Q-07,"Fresh Meadows La., Kissena Blvd., bet. Oak Ave., Underhill., and Booth Memorial Ave.",407,20,109,11365,Q,237.147,False,Kissena Park,No,100000001,PARK,,19240819000000.00000,164-01 BOOTH MEMORIAL AVE,DPR,True,Kissena Park,Y,Kissena Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q024/,No,25,11,6,{FA347FB6-ED16-4BAC-A805-9C9D80C46F04} +"MULTIPOLYGON (((-73.86476433342207 40.73428858500226, -73.86624438687059 40.7338434702134, -73.86634905854069 40.73405380117408, -73.86636990452469 40.73409568913075, -73.86637473636077 40.73410539952348, -73.86636859102579 40.73410722312729, -73.86635395638581 40.73407781623043, -73.86624055133761 40.733849936816505, -73.86552843066909 40.73406410399188, -73.86476670002564 40.734293185780615, -73.86476433342207 40.73428858500226)))",Q357A1,5952,Q357A1,Q-04,Q-04,Q-04,Q-04,Horace Harding Exwy. Sr. Rd. N. bet. 94 St. and Junction Blvd,404,25,110,11373,Q,0.022,False,Strip,No,100008311,PARK,20090423000000.00000,19540830000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q357/,No,35,16,6,{F761B924-EBAF-42E4-8C39-26F0B81F4612} +"MULTIPOLYGON (((-73.9284640958145 40.77096048504667, -73.9275023497332 40.77051087214964, -73.92759307178743 40.77039762153373, -73.92791775071211 40.77054784090212, -73.92801145269996 40.770430870941325, -73.92807550044253 40.77046050508935, -73.92826977295042 40.77021798550645, -73.92884550421533 40.770484353948895, -73.9284640958145 40.77096048504667)))",Q321,5344,Q321,Q-01,Q-01,Q-01,Q-01,21 St. bet. 29 Ave. and 30 Ave.,401,22,114,11102,Q,1.033,False,Van Alst Playground,Yes,100000115,PARK,20090423000000.00000,,14-27 30 AVENUE,DPR/DOE,False,Van Alst Playground,Y,Van Alst Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q321/,No,36,12,12,{F38576F9-0B37-4E11-8B86-C5FAD6B3E461} +"MULTIPOLYGON (((-73.7467664861949 40.67451835886191, -73.74586857841612 40.67595952411937, -73.7458666837114 40.67596228272535, -73.74586421522633 40.675964763604746, -73.7458612418197 40.67596689937066, -73.74585784414408 40.67596863166756, -73.74585411701096 40.67596991117632, -73.7458501634567 40.675970703004204, -73.74584609237644 40.675970986679914, -73.74584201498999 40.675970752543385, -73.74583804600007 40.67597000805208, -73.74583429177858 40.675968774153, -73.74583085983555 40.67596708350233, -73.74582784106349 40.67596498402832, -73.74582532158965 40.675962532654005, -73.74582336975472 40.67595979796975, -73.74582203850251 40.675956853935084, -73.74582136654568 40.67595378438383, -73.7458213701308 40.675950671299056, -73.74582205129053 40.6759476020355, -73.74582339077755 40.675944661199445, -73.74672223458475 40.67450326871862, -73.74672433496148 40.674500524058786, -73.74672702198275 40.674498093170314, -73.74673021612335 40.67449604972064, -73.74673382371613 40.6744944538383, -73.74673773813836 40.674493351215, -73.74674184098083 40.67449277671029, -73.74674601390623 40.674492746273, -73.74675013153863 40.674493260527655, -73.74675407210871 40.67449430479796, -73.74675771863963 40.67449584820878, -73.74676096485746 40.6744978445998, -73.74676371281545 40.674500235221764, -73.74676588235603 40.674502948757265, -73.74676740872837 40.674505905818194, -73.74676824613978 40.674509018052966, -73.74676837010105 40.674512193554754, -73.74676777742269 40.674515337762074, -73.7467664861949 40.67451835886191)), ((-73.74887196503818 40.671150464171575, -73.7479709090723 40.67258963929649, -73.74796899758722 40.67259250506283, -73.74796646154935 40.67259507589174, -73.74796337813883 40.67259727180621, -73.74795984103932 40.67259902727345, -73.7479559580797 40.67260028939907, -73.74795184531693 40.67260101881439, -73.74794762938446 40.672601194184516, -73.74794343803714 40.6726008103861, -73.74793939660316 40.67259987849998, -73.74793563034613 40.67259842671669, -73.74793225027558 40.67259649940491, -73.74792936143278 40.67259415532856, -73.74792705107409 40.6725914649193, -73.74792538748781 40.672588510273975, -73.74792442355951 40.67258538065994, -73.74792418731722 40.67258217069306, -73.74792468548617 40.67257897854462, -73.74792590350943 40.67257590053822, -73.74882792671734 40.67113510693923, -73.74882988464842 40.671132449279625, -73.74883239147667 40.67113007378021, -73.74883537717865 40.671128045125506, -73.74883876230659 40.671126418073726, -73.74884245207504 40.671125237443825, -73.74884634582915 40.67112453633516, -73.74885033942353 40.671124332530894, -73.74885432284009 40.671124632994854, -73.74885818612177 40.67112542848191, -73.74886182408974 40.67112669714996, -73.74886513870887 40.67112840456535, -73.7488680390808 40.671130505503754, -73.74887044500583 40.67113294035584, -73.74887229167943 40.67113564414279, -73.74887352852697 40.671138542011214, -73.74887412036237 40.671141555539165, -73.74887405330168 40.671144602749116, -73.74887332884626 40.671147598995525, -73.74887196503818 40.671150464171575)), ((-73.7478150495037 40.672837967942826, -73.74691925950734 40.67427563511187, -73.74691739916308 40.674278401915785, -73.74691495676241 40.67428089278108, -73.74691199999238 40.67428303671559, -73.7469086142403 40.67428477357245, -73.74690489431458 40.67428605403162, -73.74690094443447 40.67428684230159, -73.74689687823015 40.67428711611932, -73.74689280809754 40.67428686672686, -73.74688885109886 40.674286102486434, -73.74688511715186 40.674284844351824, -73.74688171375061 40.67428312858026, -73.74687873533797 40.67428100220656, -73.74687626684332 40.674278525752314, -73.74687437777922 40.67427577051151, -73.74687312107909 40.67427281314469, -73.74687253309384 40.67426973657963, -73.74687263004697 40.6742666291028, -73.74687340924146 40.674263578058635, -73.7468748478801 40.67426066894618, -73.74777544718252 40.67282406446834, -73.74777736308758 40.67282159764481, -73.74777980658972 40.67281941834292, -73.74778270647663 40.672817592144355, -73.747785976208 40.67281617198994, -73.74778951745395 40.672815200889104, -73.74779322483917 40.672814708327834, -73.74779698949816 40.67281470847582, -73.7478006967028 40.67281520198208, -73.7478042377034 40.67281617239885, -73.74780750733918 40.67281759248015, -73.74781040642097 40.67281941968411, -73.7478128511826 40.67282159889557, -73.74781476617464 40.672824065111705, -73.74781609608111 40.6728267461699, -73.74781680099552 40.67282956093593, -73.74781685875931 40.67283242651352, -73.7478162696957 40.67283525735415, -73.7478150495037 40.672837967942826)), ((-73.74897896631627 40.67089709172156, -73.74985741522865 40.66949997123274, -73.74989434558786 40.66951196269213, -73.7490215616095 40.67091559306279, -73.74901812795535 40.67091754780307, -73.74901431637372 40.67091904515558, -73.74901023346644 40.67092004302847, -73.74900599051209 40.67092051374845, -73.74900170346255 40.67092044496115, -73.74899749058399 40.670919837825146, -73.74899346534767 40.6709187105984, -73.74898974118393 40.67091709234499, -73.74898641844926 40.67091502921038, -73.74898358800444 40.67091257632456, -73.74898132883598 40.67090980139878, -73.74897970097318 40.67090678110822, -73.74897875141548 40.67090359750265, -73.74897850348786 40.67090033798331, -73.74897896631627 40.67089709172156)))",Q283,6206,Q283,Q-13,Q-13,Q-13,Q-13,225 St. bet. 135 Ave. and 141 Ave.,413,31,105,11413,Q,0.402,False,Mall 225 Center,Yes,100000380,PARK,20090423000000.00000,,,DPR,False,225 Street Malls,N,225 Street Malls,Sitting Area/Triangle/Mall,Mall,http://www.nycgovparks.org/parks/Q283/,No,29,14,5,{EA9F33F2-755E-40FE-9996-CD3695F09432} +"MULTIPOLYGON (((-73.9152042383218 40.80538934245822, -73.91567654397022 40.805588933260786, -73.91575546696832 40.805622280601256, -73.91556479900613 40.80588512096477, -73.91501307617365 40.80565285693074, -73.91510610618582 40.80552461700605, -73.9152042383218 40.80538934245822)))",X277,5598,X277,X-01,X-01,X-01,X-01,E. 138 St. bet. Cypress Ave. and St Ann's Ave.,201,8,40,10454,X,0.401,False,St. Luke's Park,No,100004570,PARK,20100106000000.00000,19961231000000.00000,,DPR,False,138th St. Community Garden,Y,St. Luke's Park,Greenthumb,Garden,http://www.nycgovparks.org/parks/X277/,No,84,29,15,{4D7BAACE-8DDF-4C9B-AF00-1A75575207F1} +"MULTIPOLYGON (((-73.88605616693891 40.63518371430879, -73.88722511766672 40.63442642736387, -73.88769815484618 40.634851393572134, -73.88728812621005 40.63511702932883, -73.88707105865736 40.63492202131431, -73.8863121362917 40.63541367495501, -73.88605616693891 40.63518371430879)))",B274,5147,B274,B-18,B-18,B-18,B-18,Seaview Ave. between E. 99 St. and E. 101 St.,318,46,69,11236,B,1.21,False,Bayview Playground (PS 272),Yes,100004645,PARK,20100106000000.00000,19550127000000.00000,9920 SEAVIEW AVENUE,DPR/DOE,Part,Bayview Playground,Y,Bayview Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B274/,No,59,19,8,{15E02F5C-3C60-49AA-8160-2609F1BE9BB1} +"MULTIPOLYGON (((-73.93969486089213 40.82268871930078, -73.93987250441074 40.822445054081065, -73.94046643554876 40.82269545252244, -73.94045253984478 40.82271451245096, -73.94035170317812 40.822852823352974, -73.94028878998192 40.82293911684416, -73.94017000428087 40.82288903722111, -73.93981490793654 40.82273792209002, -73.93969486089213 40.82268871930078)))",M355,4696,M355,M-10,M-10,M-10,M-10,W. 146 St. bet. Fredrick Douglass Blvd. and Adam Clayton Powell Blvd.,110,9,32,10039,M,0.436,False,Bradhurst Urban Renewal Park,Yes,100005081,PARK,20100106000000.00000,20040429000000.00000,218-234 WEST 146 STREET,DPR,False,Robert L. Clinkscales Playground and Community Garden,N,Robert L. Clinkscales Playground and Community Garden,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M355/,No,71,30,13,{5AD77A7E-F097-4CFC-A714-5BCB02DDFC90} +"MULTIPOLYGON (((-73.93466460250441 40.82520519724749, -73.93462372721788 40.824634501096085, -73.93471329574307 40.8246724086848, -73.9348703890457 40.824739437673934, -73.93504424009987 40.82638990746595, -73.93520334567134 40.82645724238131, -73.93509503207196 40.82660425940365, -73.93512445274013 40.82661671180183, -73.93507987062809 40.8266813080709, -73.9350516638241 40.826750265640655, -73.93504081481744 40.82680447566175, -73.93503349378553 40.826861088389876, -73.93503511579421 40.826906939831616, -73.93503872060273 40.826929019309674, -73.93504799599448 40.826973706218624, -73.9349819493172 40.82706258842318, -73.93497343214426 40.827070592627315, -73.93496576306894 40.82707567610187, -73.93495826604247 40.82707938731788, -73.93495033474298 40.82708228243955, -73.93494360425501 40.82708404271336, -73.93493759874784 40.8270851334272, -73.93493101510137 40.82708584200451, -73.93492138175966 40.827086001359106, -73.93491346340411 40.82708535663798, -73.93490455136707 40.82708375773074, -73.93489732313574 40.827081721232105, -73.93488612972176 40.82707701972913, -73.93487698339557 40.82707134414458, -73.93487001985125 40.82706534381277, -73.934865542577 40.82706022286789, -73.93486146591339 40.82705397382831, -73.93485798279171 40.82704569360614, -73.93485658668986 40.827039241668096, -73.9348562559551 40.827033173942915, -73.9347715949621 40.82647349335143, -73.93477515824688 40.82646888663077, -73.93480290008968 40.82643303107865, -73.93474723090432 40.826042299777164, -73.93466460250441 40.82520519724749)), ((-73.93509635068328 40.82721641786521, -73.93511061025403 40.827203619944406, -73.93513610843962 40.82729268608197, -73.93514501739975 40.82738018232554, -73.9351443406686 40.82743959482993, -73.93513057973682 40.82751117647289, -73.9351131552469 40.82756126302859, -73.93509032066987 40.82760476211419, -73.9350371980399 40.82767377678221, -73.93502747707076 40.8276385403254, -73.93501662431535 40.82759931133389, -73.93500631841054 40.82751848066353, -73.93501111187615 40.82743173954518, -73.93502969703657 40.8273439742287, -73.93506269039244 40.82726722287711, -73.93509635068328 40.82721641786521)))",M141,69241,M141,M-10,M-10,M-10,M-10,"Harlem River Dr., W. 151 St. To W. 154 St.",110,9,32,10039,M,1.635,False,Harlem Lane Playground,Yes,100003881,PARK,,18931101000000.00000,,DPR,True,Harlem Lane Playground,Y,Harlem Lane Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M141/,No,71,30,13,{778DAF77-7767-4DC0-B70A-51B571D0E72C} +"MULTIPOLYGON (((-73.92364807335066 40.633027995071394, -73.92349380544981 40.63159275511674, -73.92392056433114 40.63156602810101, -73.92394395672473 40.63156452079823, -73.92396533265409 40.63180367334001, -73.9242422498976 40.63178083344425, -73.92424512687202 40.63180793557865, -73.92425253684257 40.6318777433416, -73.92436992650691 40.632983707318374, -73.92364807335066 40.633027995071394)))",B248,5401,B248,B-18,B-18,B-18,B-18,Ave. H between E. 54 St. to E. 55 St.,318,46,63,11234,B,2.27,False,Fox Playground,Yes,100004648,PARK,20100106000000.00000,19500426000000.00000,1037 EAST 54 STREET,DPR/DOE,False,Fox Playground,Y,Fox Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B248/,No,59,21,8,{AD976B04-9D4E-42E1-AED5-BFDDFA4FC580} +"MULTIPOLYGON (((-73.93787392348952 40.78885176366229, -73.93882043711457 40.789251321573325, -73.9384573129642 40.78974577427461, -73.93767470553283 40.78941540930672, -73.937628188298 40.78939577123292, -73.93787392348952 40.78885176366229)))",M258,4950,M258,M-15,M-15,M-15,M-15,"FDR Dr., E. 106 St. To E. 107 St.",111,8,23,10029,M,1.285,False,East River Playground,Yes,100004366,PLGD,20100106000000.00000,19620329000000.00000,421 EAST 106 STREET,DPR/DOE,False,East River Playground,Y,East River Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/M258/,No,68,30,13,{61E28D5E-6240-457F-AE54-3BB50765CFF2} +"MULTIPOLYGON (((-73.83000460700457 40.766161732600644, -73.83001494221381 40.766187183529134, -73.82991880548857 40.76621430895617, -73.8292269281264 40.7661915860214, -73.82924002000057 40.76581434401808, -73.83000460700457 40.766161732600644)))",Q497,6263,Q497,Q-07,Q-07,Q-07,Q-07,137th St. and Leavitt St.,407,20,109,11354,Q,0.319,False,Lewis H Latimer House,No,100000411,PARK,,20080724000000.00000,,DPR,False,Lewis H Latimer House,N,Lewis H Latimer House,,Historic House Park,http://www.nycgovparks.org/parks/Q497/,No,40,11,6,{59DDECC9-AFAE-4B2C-A141-FC438DD39837} +"MULTIPOLYGON (((-73.92843423606706 40.67433678402927, -73.92884500723166 40.674359761507944, -73.92886541786291 40.6741482367895, -73.92944923670072 40.674180891451186, -73.92941667955931 40.67453229755893, -73.9293836189104 40.674887514314, -73.92838647336795 40.674831739618135, -73.92843423606706 40.67433678402927)))",B364,5204,B364,B-08,B-08,B-08,B-08,"Bergen St., Utica Ave., Rochester Ave., St Mark's Ave.",308,36,77,11213,B,1.438,False,Woods Playground (PS 345),Yes,100004939,PARK,20100106000000.00000,19650513000000.00000,1616 BERGEN STREET,DPR/DOE,False,Woods Playground,Y,Woods Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B364/,No,56,25,8,{008E1D20-8FE5-4620-8676-4E599DEECE62} +"MULTIPOLYGON (((-73.87541716834465 40.654649478599076, -73.87517498148274 40.65475383819368, -73.87476293989072 40.654199204313095, -73.87493892114097 40.65412337316486, -73.87554867113272 40.65386062581854, -73.87555075383348 40.653859726653515, -73.87587485966192 40.6542959879318, -73.87593007307237 40.65448242860946, -73.87579749661757 40.65451600271651, -73.87579745639388 40.65451601437982, -73.87566753937496 40.65455512399122, -73.87554063195772 40.65459966233323, -73.87541720147905 40.65464946422669, -73.87541716834465 40.654649478599076)))",B548,6289,B548,B-05,B-05,B-05,B-05,"Vandalia Ave., Schroeders Ave., bet. Walker St. and Ashford St.",305,42,75,11207,B,1.351,False,Park,No,100008362,PARK,20140724000000.00000,20130423000000.00000,,DPR,True,Park,N,Park,,Undeveloped,,No,60,19,8,{ADA4E293-2B1F-41A6-BC03-7636D9D84C32} +"MULTIPOLYGON (((-74.03082919834463 40.61627167978909, -74.03090732714334 40.61615877761843, -74.03093407615795 40.616165041650575, -74.0307449834725 40.61656958473289, -74.03062150892885 40.616503770707205, -74.03082919834463 40.61627167978909)))",B033,5838,B033,B-10,B-10,B-10,B-10,"5 Ave., 4 Ave., 94 St.",310,43,68,11209,B,0.019,False,Fort Hamilton Triangle,Yes,100004598,PARK,20100106000000.00000,19160126000000.00000,,DPR,False,Fort Hamilton Triangle,Y,Fort Hamilton Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B033/,No,46,22,11,{7C2E63C2-0F13-4489-BB6C-8AA29264C308} +"MULTIPOLYGON (((-73.91921765713865 40.68774963280488, -73.91910115877604 40.687683392912696, -73.91930654631868 40.68765990493231, -73.91940004686971 40.68764921201954, -73.9195013290423 40.68763762936374, -73.91970657077384 40.68761415767718, -73.91974317961038 40.687799108239346, -73.91974561532454 40.68781097330756, -73.91972524040939 40.68780318586065, -73.91973291065354 40.68783491091087, -73.91969027888099 40.68779656250135, -73.91961687047522 40.68773053149751, -73.91946092306554 40.68788794934762, -73.91938022916325 40.687842067494856, -73.91929663664679 40.68779453921406, -73.91921765713865 40.68774963280488)))",B420,5230,B420,B-03,B-03,B-03,B-03,Broadway and Putnam Ave.,303,41,81,11221,B,0.206,False,Umoja Garden,No,100004544,PARK,20100106000000.00000,19990712000000.00000,1464 BROADWAY,DPR,False,Umoja Garden,N,Umoja Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B420/,No,55,18,8,{8BC9FC2C-14B3-4BE2-989A-E443DE715E50} +"MULTIPOLYGON (((-74.0029299579995 40.730090668210636, -74.00281355373272 40.72989196310745, -74.00273279596439 40.72991735759129, -74.00265725248114 40.72994111387322, -74.00262559810189 40.72988705617311, -74.0024062628396 40.729956029110944, -74.00247312362416 40.72977248604904, -74.002790772769 40.72967200364867, -74.00282824689215 40.7297360387967, -74.00282701344646 40.72973642604567, -74.00285613806774 40.729786163114404, -74.00285663760167 40.729786006413555, -74.00290953840539 40.729876345004065, -74.0029103244028 40.72987609824484, -74.0030193654298 40.730062208932246, -74.0029299579995 40.730090668210636)))",M027,4779,M027,M-02,M-02,M-02,M-02,"Downing St to Carmine St, Av Of Americas",102,3,6,10014,M,0.223,False,Downing Street Playground,Yes,100004868,PLGD,20100106000000.00000,19240403000000.00000,273 6 AVENUE,DPR,True,Downing Street Playground,Y,Downing Street Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/M027/,No,66,27,10,{FCA1242B-86D3-4FAA-8AC5-67A4B6A2EB2F} +"MULTIPOLYGON (((-73.7296558548861 40.71079468818801, -73.72965576989662 40.7107949266249, -73.72962754494688 40.71071511522024, -73.72959141321682 40.7106371718139, -73.7295475835419 40.71056154894775, -73.72949631214112 40.710488686666466, -73.72943789553395 40.71041900799868, -73.72937267409769 40.710352917164556, -73.72931524349124 40.710317048792135, -73.72925394622902 40.71028509934378, -73.72918924285226 40.71025731033441, -73.72919466511887 40.71024102106383, -73.72983464962583 40.71039852017725, -73.7298400306639 40.71040054275578, -73.72984487050165 40.710403243952875, -73.72984902272657 40.71040654237869, -73.72985236112405 40.7104103368794, -73.72985478674498 40.71041451465841, -73.72985622436647 40.71041894856667, -73.72985663192618 40.710423505229244, -73.72985599696491 40.710428046838075, -73.72985433779175 40.71043243565731, -73.72985170582544 40.710436540332374, -73.72968060368311 40.71079875900212, -73.7296558548861 40.71079468818801)))",Q133B,69215,Q133B,Q-13,Q-13,Q-13,Q-13,104 Ave. bet. 225 St. and 227 St.,413,27,105,11429,Q,0.274,False,Hempstead Bench Spread,Yes,100008330,PARK,,19380428000000.00000,,DPR,True,Hempstead Bench Spread,N,Hempstead Bench Spread,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q133B/,No,33,14,5,{E9ED92F5-C1E0-4D7C-B36E-49A91BFFA0FE} +"MULTIPOLYGON (((-73.88470939592784 40.8355952058614, -73.88520937814388 40.834749313353505, -73.88554538727666 40.83482780033693, -73.88550160186135 40.83490188200538, -73.88546528735418 40.834963320024784, -73.88542897634298 40.83502475443371, -73.88537483016104 40.835116362894304, -73.88572967722622 40.8352390841468, -73.88569086788578 40.835304841235995, -73.88533597433022 40.83518210361062, -73.88516624064029 40.83546926549288, -73.88501782144787 40.83572036734427, -73.88494692191865 40.83584031906933, -73.88472682709387 40.83576420110983, -73.88462941942389 40.83573051256038, -73.88470939592784 40.8355952058614)))",X273,5641,X273,X-03,X-03,X-03,X-03,Longfellow Av bet. E 173 St and E 174 St,203,17,42,10460,X,0.977,False,Rock Garden Park,Yes,100005019,PARK,20100106000000.00000,19961231000000.00000,,DPR,False,Rock Garden Park,Y,Rock Garden Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/X273/,No,79,32,15,{0B3B21B2-4A07-49EF-AFD7-E0C2E9D4D789} +"MULTIPOLYGON (((-73.8018725240209 40.680170017487384, -73.80343263328486 40.6797246187245, -73.80419459298977 40.68127633902653, -73.80263313224954 40.68172060031432, -73.8018725240209 40.680170017487384)))",Q220C,5895,Q220C,Q-12,Q-12,Q-12,Q-12,"Van Wyck Exwy. Sr. Rd. E., 140 St. bet. 115 Ave. and 116 Ave.",412,28,113,11436,Q,6.336,False,Dr. Charles R. (Drew Park),Yes,100000179,PARK,20090423000000.00000,19460306000000.00000,,DPR,True,Dr. Charles R. Drew Park,Y,Dr. Charles R. Drew Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q220C/,No,32,10,5,{D4BAC3C7-6F2A-4218-9921-B7161DF681ED} +"MULTIPOLYGON (((-73.95063493868432 40.68480000685345, -73.95069938640246 40.68479259173545, -73.95074675391655 40.6850361055859, -73.95068230596836 40.68504352073021, -73.95063493868432 40.68480000685345)))",B503,5287,B503,B-03,B-03,B-03,B-03,Corner of Nostrand Ave. and Madison St.,303,36,79,11216,B,0.033,False,Stars Of Hope,No,100004397,PARK,20100106000000.00000,20021120000000.00000,213 MADISON STREET,DPR,False,Stars Of Hope,N,Stars Of Hope,Greenthumb,Garden,http://www.nycgovparks.org/parks/B503/,No,57,25,8,{9FC32890-F622-4521-B091-53353838EEDB} +"MULTIPOLYGON (((-73.89376176197311 40.67097176674521, -73.89510306806193 40.670774359019276, -73.89518870074738 40.67111043848543, -73.89508470483152 40.67112589110294, -73.89511510081084 40.6712451867521, -73.89476143801336 40.67129773847936, -73.89479053228982 40.67141192619575, -73.89492000608293 40.67192007417049, -73.89403625867912 40.67205138729033, -73.893864589504 40.67137620142597, -73.89384054415771 40.67128162686736, -73.89376176197311 40.67097176674521)))",B078,4836,B078,B-05,B-05,B-05,B-05,Vermont St. bet. Pitkin Ave. and Belmont Ave.,305,42,75,11207,B,2.744,False,Grace Playground,Yes,100004917,PARK,20100106000000.00000,19360820000000.00000,2126 PITKIN AVENUE / 395 BELMONT AVENUE,DPR/DOE,True,Grace Playground,Y,Grace Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B078/,No,55,19,8,{D4051E64-4F60-4AA9-8419-74D462F3FF95} +"MULTIPOLYGON (((-73.90779158232726 40.84338431351181, -73.90813555673122 40.84340250328242, -73.90811569862781 40.843632608498254, -73.90777172185246 40.8436144195687, -73.90779158232726 40.84338431351181)))",X298,6600,X298,X-04,X-04,X-04,X-04,E 173 St bet. Weeks Av and Eastburn Av,204,15,44,10457,X,0.183,False,Garden Of Life,No,100004913,PARK,20100106000000.00000,19980511000000.00000,1665 WEEKS AVENUE,DPR,False,Garden Of Life,Y,Garden Of Life,To Be Determined,Garden,http://www.nycgovparks.org/parks/X298/,No,86,33,15,{A096009D-31EB-42D3-8BFA-3BB656FDA449} +"MULTIPOLYGON (((-73.86719167967253 40.722789013958455, -73.86726364224486 40.72261811702888, -73.86729017634036 40.722640850384465, -73.86730610436828 40.722654497067346, -73.86734832194664 40.72269066698925, -73.86736433625732 40.722704386704734, -73.86728437916584 40.72274357753392, -73.86719167967253 40.722789013958455)))",Q062,6149,Q062,Q-06,Q-06,Q-06,Q-06,"Woodhaven Blvd., 63 Dr., Penelope Ave.",406,29,112,11374,Q,0.027,False,Triangle,Yes,100000468,PARK,20090423000000.00000,19201111000000.00000,,DPR,True,Fleetwood Triangle,N,Fleetwood Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q062/,No,28,15,6,{59CE3C06-1B5E-44E2-9486-8D99BCA3411B} +"MULTIPOLYGON (((-74.0975552717075 40.56434413765899, -74.09507363257804 40.56315117488327, -74.09500381549387 40.56320825935305, -74.09495161130206 40.56318245112482, -74.0945890827795 40.56300322591144, -74.09458696774301 40.56300222266631, -74.09414723827916 40.56279322788552, -74.09397027817418 40.56270912139817, -74.09462216233455 40.56202094732511, -74.09546946846277 40.56109347794859, -74.095844874744 40.56068020025635, -74.09668587009527 40.55975434077992, -74.0968907415159 40.55952879165003, -74.09749032690279 40.55886867854832, -74.10691743893219 40.55045849925969, -74.11072668030462 40.54706888315951, -74.11264912611253 40.548314529067426, -74.11431268659537 40.54939236506707, -74.11419477421464 40.5494447822968, -74.11395275280321 40.54955760121147, -74.11371082962069 40.54967936715442, -74.1134837517081 40.54979316446076, -74.11323793332139 40.54993512577179, -74.11301626491282 40.55006746046907, -74.1126667405149 40.5502915677868, -74.11209725813292 40.5506993569279, -74.11192290555175 40.55084624174891, -74.11188623472758 40.5508774087016, -74.1118395326066 40.550917102596664, -74.11185451464384 40.55093080393178, -74.11191634650184 40.55098734991693, -74.11197401526557 40.55104009069874, -74.11208935188405 40.551145571275455, -74.11214701855826 40.55119831107147, -74.11220468768612 40.55125105173655, -74.11225923418255 40.551300936251856, -74.11231654238998 40.55126738601618, -74.11247486529173 40.551410869618486, -74.11214579099085 40.55158462123237, -74.11193448647727 40.55169442061524, -74.11175648149995 40.55179105482272, -74.1117006818178 40.551821347004015, -74.11144076002977 40.55197005048941, -74.11080196264417 40.55233722267082, -74.10980682383924 40.55291670846533, -74.1078822880885 40.55409642509847, -74.10562934197957 40.556118516728766, -74.10531153374662 40.556404450197036, -74.10504262157491 40.556649672991156, -74.10474918673543 40.55691355391264, -74.1035969677998 40.55795340756803, -74.10268830304408 40.558776087151884, -74.10174617009542 40.559624838644375, -74.10137663503322 40.56003000867135, -74.0975552717075 40.56434413765899)), ((-74.11020041336188 40.55812804382028, -74.11002768105516 40.55802273526896, -74.10950224389391 40.55878886769171, -74.10937404159125 40.55876141843446, -74.10907614214508 40.558602320275924, -74.1090088874085 40.55867389132685, -74.10876848337506 40.55859854167155, -74.10860579735048 40.55854755022933, -74.10792082027744 40.558332852137454, -74.10774395516121 40.558277414290934, -74.10740087523983 40.55816987687951, -74.10741174417382 40.55815772581819, -74.10758176904815 40.5579676420588, -74.10728883824144 40.55781118935856, -74.1079009222889 40.557126886725946, -74.10773628202492 40.55703872215219, -74.10882279496336 40.55626511896744, -74.10795650643684 40.55556741968769, -74.10726751987441 40.55501250428654, -74.1076271989284 40.554683365684376, -74.10803585866526 40.554309400286286, -74.10905300175675 40.553669321606456, -74.10955913347314 40.55335080893983, -74.1097921206251 40.55320418689287, -74.10980012960245 40.55321188504375, -74.10996791889228 40.55337317544702, -74.11002384844105 40.55342693825986, -74.11007977926192 40.55348070194462, -74.11013570899213 40.55353446560299, -74.11036412217132 40.55375402799122, -74.11048004218905 40.55386545577993, -74.11059190420703 40.553972981774244, -74.11035891612933 40.55411960543427, -74.11046302462502 40.55421967903896, -74.11058383651451 40.55433580726635, -74.11093183126602 40.5546703100041, -74.11104369535708 40.55477783465053, -74.11115555981121 40.55488536098809, -74.11120828807975 40.554936044715454, -74.11126840377048 40.55499382821801, -74.11132881047145 40.555051891470605, -74.11156179967169 40.55490526585444, -74.11196176983532 40.5552897158055, -74.11201770259277 40.55534347763862, -74.11178471286641 40.555490105074824, -74.1119055293503 40.555606231899354, -74.1120198196594 40.555716085589495, -74.1121316860747 40.555823610968886, -74.11224024399714 40.555927952508384, -74.11236106088535 40.55604407975112, -74.11247740447517 40.556155904928765, -74.11259624607771 40.55627012924334, -74.11282923556556 40.55612350197267, -74.11293665149996 40.55622674533223, -74.1130485202427 40.55633426801291, -74.11316039170691 40.556441790581296, -74.11292740065826 40.556588420322036, -74.11309946926978 40.55675380471107, -74.11333246051906 40.55660717552388, -74.113444331718 40.55671469871486, -74.11350355215959 40.55677161832154, -74.11361735630459 40.55688099902013, -74.11338436590633 40.55702762878072, -74.11355986519608 40.55719630681735, -74.1137135589249 40.557344025708716, -74.11350242734804 40.557385520997855, -74.11336213385974 40.55746756605012, -74.11322677459607 40.55764740954931, -74.11316684859572 40.55772702832875, -74.11316263717245 40.55773895364827, -74.11307843845617 40.55766177050381, -74.1130430157389 40.557629299969605, -74.11300637504812 40.557595711268334, -74.1129750534072 40.557566999077515, -74.11290231734736 40.55750032357742, -74.11266870773035 40.557286175443856, -74.112589378006 40.557335028458326, -74.11254722973183 40.55736098512182, -74.11250520762681 40.5573868633003, -74.11245975087276 40.55741485656129, -74.11241670609688 40.55744136337559, -74.11237117378312 40.55746940350263, -74.11232807232433 40.557495946360056, -74.11228261896089 40.557523937746154, -74.11223925086887 40.55755064382599, -74.11215374005971 40.55760330280007, -74.11206542903412 40.55765768624918, -74.11202213271694 40.55768434805076, -74.11197678171199 40.55771227617841, -74.11193436993507 40.5577383931663, -74.11188988105792 40.55776579000908, -74.11184740198416 40.557791949354964, -74.11180293544486 40.557819331733725, -74.11176044922637 40.55784549555685, -74.11171597553908 40.5578728824113, -74.11167349868752 40.55789903988932, -74.11153955977316 40.55798167898165, -74.11153922918547 40.55798239161911, -74.11153892830771 40.557983219495135, -74.11153870773566 40.55798405809953, -74.11153854887573 40.55798508575448, -74.11153851183695 40.55798623846431, -74.11153856019705 40.55798691651378, -74.11153863189152 40.55798742704266, -74.11153899323452 40.55798887023568, -74.11182643448441 40.558231741873115, -74.11191993123093 40.558310741337216, -74.11195369179838 40.5583392668286, -74.1119918851542 40.558371538680284, -74.11203080807671 40.55840442576768, -74.11206456755663 40.55843295032682, -74.11210471314023 40.55846687090094, -74.11214568288933 40.55850148766369, -74.1121807064415 40.55853107987917, -74.11221812200013 40.55856269232914, -74.11225549975994 40.558594274185914, -74.1123290493433 40.55865641874585, -74.11257359051069 40.558863037439245, -74.11239649820374 40.55914311159635, -74.11234800855902 40.55922122296949, -74.11222303184097 40.55934529990646, -74.11212918364848 40.559290133467954, -74.11199021699856 40.559208452631395, -74.11185910668567 40.559131389979264, -74.1117248457729 40.55905247425714, -74.11154382646095 40.55894607470694, -74.11145949351662 40.55889650695725, -74.1113921797126 40.558856941897155, -74.11131953100211 40.55881423913131, -74.11124872256113 40.55877261787019, -74.11118338864185 40.55873421605092, -74.11111631271886 40.558694789279635, -74.1110426845909 40.55865151004858, -74.11096666091633 40.558606824661446, -74.11079429736638 40.55848969029527, -74.11050315700533 40.55831234824851, -74.11020041336188 40.55812804382028)), ((-74.11932825159123 40.55173073610811, -74.12017021606596 40.550750190033106, -74.1206512212584 40.551109129288754, -74.12530497010913 40.55342068681536, -74.12370439295121 40.55485391136026, -74.11922497733747 40.55265858430882, -74.11881664359579 40.55232653654239, -74.11932825159123 40.55173073610811)), ((-74.10189838942165 40.559862122028264, -74.10594434188762 40.5562523050754, -74.10754106922917 40.55710512712514, -74.1076119832621 40.55714300168345, -74.10764146206351 40.55715874587931, -74.10596482343173 40.559001017012044, -74.10571077543575 40.558861076993885, -74.10555005052336 40.55904065198047, -74.10544937439451 40.55915313284233, -74.10536535223031 40.55924700787285, -74.10512203939149 40.559518851166516, -74.10501997807499 40.559632879117466, -74.10492332884307 40.5597408604017, -74.10483794501522 40.55983625367094, -74.10475590837459 40.559927908440024, -74.1046355433201 40.56006238387604, -74.10443146652548 40.56029038563484, -74.10437226347979 40.56035652546521, -74.10432967866052 40.56040410203253, -74.10426965151473 40.56047116649762, -74.10414419489294 40.56061132745244, -74.10407093058387 40.56069317784629, -74.10398972871648 40.560783896556934, -74.1038852471878 40.56090062365122, -74.10348458610449 40.560631196714255, -74.10189838942165 40.559862122028264)), ((-74.12537161538758 40.5565391711122, -74.12529250198277 40.55648641453646, -74.12523017172795 40.55644484846382, -74.12516513087756 40.55640147525252, -74.12510008893098 40.55635810200556, -74.12503708154846 40.55631608630211, -74.12497005730637 40.55627139046464, -74.1248971578906 40.55622277648162, -74.12483211629196 40.55617940308225, -74.12476707595843 40.55613602964459, -74.12470203453036 40.556092657071744, -74.12463580749674 40.55604849148405, -74.1245707674198 40.556005118835245, -74.12450500041392 40.55596126155369, -74.12443995932442 40.55591788793124, -74.12437330352351 40.55587343628894, -74.12430826378566 40.555830062590346, -74.12424558721054 40.55578826492179, -74.12417268767008 40.55573965137876, -74.12410457820975 40.55569423038398, -74.12403953764182 40.55565085743433, -74.1239704980297 40.555604815100445, -74.12390846376931 40.555563445205, -74.1238510114878 40.55552513212608, -74.12369550610926 40.5554214275511, -74.12325418946935 40.55512711726616, -74.12314654388581 40.55506007235067, -74.12272424242943 40.554797047351244, -74.12249076626433 40.55465162738182, -74.1220177770497 40.554357024626555, -74.12191026160075 40.554290057658726, -74.12185650159331 40.554256572788624, -74.12180284447156 40.55422315172162, -74.12159466064442 40.554093482132394, -74.12148619337302 40.554025920526456, -74.12132030865936 40.55392259652724, -74.12354819698646 40.555048737385555, -74.12374583205336 40.55516730319627, -74.12359586748393 40.55535218885465, -74.12379235207958 40.55548205653258, -74.123976250813 40.55531499684299, -74.12580956084919 40.55651051472098, -74.12599231237607 40.55633419835811, -74.12388000422179 40.55497266095597, -74.12547707073585 40.55352197749472, -74.12884295462386 40.55567719288691, -74.12685358164775 40.55748878281437, -74.12675619359686 40.55742672247763, -74.12665432904252 40.55736181142459, -74.12654386005153 40.55729141654891, -74.12643339247398 40.557221021565226, -74.12631971451339 40.55714858130788, -74.12621270508144 40.557080390399605, -74.12610223820174 40.55700999509615, -74.12599029037723 40.55693865575782, -74.12587982278724 40.556868261141446, -74.12576935660901 40.55679786551654, -74.12566165204433 40.55672922999504, -74.12554842495258 40.55665707484725, -74.12542823717433 40.55657692871106, -74.12537161538758 40.5565391711122)), ((-74.11239149848417 40.551794972856634, -74.11283833867735 40.55155856329108, -74.11321386076732 40.551905731368855, -74.11278163831545 40.55215226166252, -74.11258229557352 40.5522659614719, -74.1123530336546 40.552396724575274, -74.1121135943095 40.55253329294585, -74.11146881521411 40.55290104559114, -74.11144489606039 40.55287914007586, -74.11106893854706 40.55253483214315, -74.11171291699961 40.55216634948033, -74.11195206024566 40.55202951117054, -74.11218645691172 40.55190345270259, -74.11239149848417 40.551794972856634)), ((-74.11414868705766 40.54981888277402, -74.11430953048684 40.54976265236083, -74.11472420033115 40.55013890142218, -74.11480362499613 40.550210965075415, -74.11460214529117 40.550326777788094, -74.11444653915134 40.55041622113044, -74.11421276826108 40.55055059367773, -74.11363886282824 40.55002985780565, -74.1136862712443 40.550007996513706, -74.11377611334464 40.5499678845103, -74.11394101989224 40.549898582139534, -74.11414868705766 40.54981888277402)), ((-74.11388922802212 40.55070092839968, -74.11371090440403 40.55053912731012, -74.11348648133712 40.5506767328177, -74.11342367489705 40.55061974647924, -74.11337067649974 40.550571656636556, -74.11331277480949 40.550519119401756, -74.11325487202514 40.55046657943715, -74.11319270683134 40.5504101731793, -74.11313127836785 40.550354435253496, -74.11308543144345 40.550312834635356, -74.11332293601224 40.55018709945358, -74.11358419012262 40.550048789644364, -74.1135872927033 40.55005160432488, -74.11377434550677 40.55022132880582, -74.11386698960725 40.550305390337265, -74.11415857416276 40.55056995846634, -74.1139053193446 40.55071552979526, -74.11367508694597 40.550847865243256, -74.11367045429581 40.55084366166605, -74.11388922802212 40.55070092839968)))",R016,6092,R016,R-03,R-03,R-03,R-03,"Hylan Blvd., Old Mill Rd., Cedar Grove Ave. bet. Hopkins Ave. and New Dorp La.",503,"50,51",122,10306,R,315.094,False,Great Kills Park,No,100005145,PARK,20100106000000.00000,19291025000000.00000,,DPR,True,Great Kills Park,Y,Great Kills Park,Large Park,Nature Area,http://www.nycgovparks.org/parks/R016/,Yes,64,24,11,{27A1A672-41C6-4856-A261-A2F62256CD4A} +"MULTIPOLYGON (((-73.99448698908022 40.68097488253069, -73.99471358201185 40.680639231879006, -73.99637391474644 40.68110076560748, -73.99613129403394 40.68160868373131, -73.99448698908022 40.68097488253069)))",B019,5033,B019,B-06,B-06,B-06,B-06,"Court St., Smith St., bet. Carroll St. and President St.",306,39,76,11231,B,1.874,False,Carroll Park,Yes,100003934,PARK,20100106000000.00000,18530603000000.00000,375 COURT STREET,DPR,False,Carroll Park,Y,Carroll Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B019/,No,52,26,7,{08432F5A-B8A2-4085-8437-8B0CAE7CDDFB} +"MULTIPOLYGON (((-73.91742404027441 40.76999975481106, -73.91749617850088 40.7700142460661, -73.9178288206694 40.77008108593266, -73.91767378245713 40.77021936106718, -73.91740074067563 40.77003323324685, -73.91739805662506 40.7700304172485, -73.91739604336126 40.77002729375876, -73.91739475999223 40.770023955571865, -73.91739424429998 40.77002049996933, -73.91739451155715 40.77001702781857, -73.91739555216186 40.77001364086962, -73.91739733874734 40.77001043905869, -73.91739981552887 40.770007515097696, -73.91740291251601 40.77000495538476, -73.91740653841266 40.77000283459619, -73.91741058654036 40.770001214790256, -73.917414938394 40.77000014360864, -73.91741946719739 40.76999965247811, -73.91742404027441 40.76999975481106)))",Q137,6346,Q137,Q-01,Q-01,Q-01,Q-01,"Astoria Blvd S., Hoyt Ave. S. bet. 31 St. and 32 St.",401,22,114,11103,Q,0.1,False,Columbus Square,Yes,100000129,PARK,20090423000000.00000,19140211000000.00000,,DPR/CDOT,False,Columbus Square,Y,Columbus Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q137/,No,36,12,12,{9E56BC68-2A19-4070-8163-0CBB1446F037} +"MULTIPOLYGON (((-73.90651756610914 40.667571576915456, -73.9063476778606 40.66691663736122, -73.90717900500742 40.66679134061052, -73.90722044471497 40.666785094739204, -73.90733037864563 40.66721045124874, -73.90805073223407 40.66710187409365, -73.90811009626252 40.66733154685976, -73.90651756610914 40.667571576915456)))",B228,5090,B228,B-16,B-16,B-16,B-16,Mother Gaston Blvd. and Sutter Ave.,316,41,73,11212,B,1.791,False,Dr. Green Playground,Yes,100004642,PARK,20100106000000.00000,19470313000000.00000,286 ROCKAWAY AVENUE,DPR,False,Dr. Green Playground,Y,Dr. Green Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B228/,No,55,20,9,{206E17DC-95F5-4623-B532-7360A23E7A43} +"MULTIPOLYGON (((-73.96003691649274 40.71503286934811, -73.96018141266495 40.71483096554616, -73.96060747503724 40.71502314597087, -73.96043725197497 40.715181077646136, -73.9601151503658 40.71505318587909, -73.96003691649274 40.71503286934811)))",B085,4639,B085,B-01,B-01,B-01,B-01,Bedford Ave. bet. Metropolitan Ave. and N. 1 St.,301,34,90,11211,B,0.181,False,Metropolitan Recreation Center,No,100004705,PARK,20100106000000.00000,19350515000000.00000,257 BEDFORD AVENUE,DPR,False,Metropolitan Recreation Center,N,Metropolitan Recreation Center,,Buildings/Institutions,http://www.nycgovparks.org/parks/B085/,No,50,18,7,{1478F4EE-E87C-4511-A8B8-BB02DD4D84A8} +"MULTIPOLYGON (((-73.98243756779853 40.77160234037847, -73.98273296912099 40.771724032191244, -73.98246017931169 40.77210748553712, -73.98243756779853 40.77160234037847)))",M020,5724,M020,M-07,M-07,M-07,M-07,"Broadway, Columbus Av, W 63 St",107,6,20,10023,M,0.142,False,Dante Park,Yes,100004522,PARK,20100106000000.00000,18701223000000.00000,,DPR,True,Dante Park,Y,Dante Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/M020/,No,75,27,10,{B28DED0F-A344-4B8E-9D55-40763CA24AF2} +"MULTIPOLYGON (((-73.80954401692945 40.76407499649508, -73.80999268017601 40.764058787094044, -73.8099889104887 40.76421566797308, -73.80954401692945 40.76407499649508)))",Q214,6175,Q214,Q-07,Q-07,Q-07,Q-07,"Northern Blvd., Roosevelt Ave. bet. 155 St. and 156 St.",407,20,109,11354,Q,0.06,False,Leonard Square,Yes,100000104,PARK,20090423000000.00000,19300401000000.00000,,DPR,False,Leonard Square,Y,Leonard Square,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q214/,No,40,16,6,{28AC741E-708E-4A9D-8CD5-897BFC1D1393} +"MULTIPOLYGON (((-73.95546463890517 40.68378359516787, -73.9555252497352 40.68377664593001, -73.95558120175976 40.68405446621297, -73.95552058950068 40.68406141457909, -73.9554589089566 40.68406848677071, -73.95540295742981 40.68379066642877, -73.95546463890517 40.68378359516787)))",B482,5273,B482,B-03,B-03,B-03,B-03,Madison St. between Franklin Ave. and Bedford Ave.,303,36,79,11216,B,0.08,False,Madison Street Block Association,No,100003772,PARK,20100106000000.00000,20021120000000.00000,88-90 Madison St,DPR,False,Madison Street Block Association,N,Madison Street Block Association,Greenthumb,Garden,http://www.nycgovparks.org/parks/B482/,No,57,25,8,{BEE54096-5841-4666-953B-A2D461466957} +"MULTIPOLYGON (((-73.78521573415489 40.59250206250577, -73.78551128291625 40.59252408308021, -73.78551162086372 40.592545385644634, -73.7855771378328 40.593198389872306, -73.78487010209355 40.59322417240089, -73.7848700654668 40.59322417413335, -73.78486771899196 40.59320191775333, -73.78480038897911 40.59255354471855, -73.78479533559698 40.59250250426765, -73.78488394888605 40.59249796584287, -73.78499121695306 40.592495797319195, -73.78508138196378 40.59249655403479, -73.78521573415489 40.59250206250577)))",Q313,4665,Q313,Q-14,Q-14,Q-14,Q-14,Arverne Blvd. bet. Beach 56 St. and Beach 54 St.,414,31,101,11692,Q,0.993,False,Arverne Playground,Yes,100000220,PARK,20110712000000.00000,19520110000000.00000,306 BEACH CHANNEL DRIVE,DPR,False,Arverne Playground,Y,Arverne Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q313/,No,31,10,5,{08FD8153-36FA-42C1-B9CF-126501459640} +"MULTIPOLYGON (((-73.93879154414053 40.7873753194393, -73.93875829723974 40.78737391050297, -73.93873269766014 40.787374190460355, -73.93869468268473 40.78737725266063, -73.93866871208127 40.78738031045255, -73.93864616146746 40.78738384462338, -73.9385579126307 40.78732998546087, -73.9386378618864 40.7872363011914, -73.93932006777483 40.78645996477315, -73.93945539552517 40.78647639805424, -73.93959103452636 40.786810585816845, -73.9391422980199 40.78738785286078, -73.93895769329527 40.78743283432044, -73.93893639865222 40.787422032334355, -73.93890956581416 40.78740928502776, -73.93889328419465 40.787402088596, -73.93887881489191 40.787396602274235, -73.93885686076601 40.78738922452951, -73.93882549544989 40.787381174514216, -73.93879154414053 40.7873753194393)))",M108G,6429,M108G,M-15,M-15,M-15,M-15,FDR Dr. bet. E. 102 St. and E. 106 St.,111,8,23,10029,M,1.052,False,Playground 103 CIII,Yes,100004050,PLGD,20100106000000.00000,19391116000000.00000,457 East 102 Street,"DPR, NYCHA",True,Playground 103 CIII,Y,Playground 103 CIII,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M108G/,No,68,30,13,{3DBB2DEE-F858-42CA-8843-5F66E8F5DF3C} +"MULTIPOLYGON (((-73.97758303889856 40.72709316677104, -73.97766301249187 40.727126700154095, -73.977740647504 40.72715925237518, -73.97755945511584 40.72740889589407, -73.97740205808188 40.727342516519876, -73.97758303889856 40.72709316677104)))",M359,5978,M359,M-03,M-03,M-03,M-03,E. 12 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.119,False,Campos Garden,No,100004493,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Campos Garden,N,Campos Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M359/,No,74,27,12,{3D2089E3-2AC6-4DE8-BBCF-2EE56CFACF03} +"MULTIPOLYGON (((-74.01556481352956 40.633760646644426, -74.0155514597243 40.63370875333344, -74.015556072712 40.63371159294686, -74.01556869653928 40.633760648820285, -74.01558017201582 40.63380711225305, -74.01559740055653 40.633873976165326, -74.01561914894806 40.63394954838125, -74.01563260924199 40.63399641136871, -74.01566139042498 40.63408507706779, -74.01568270672553 40.63414725230595, -74.0157056518216 40.63421398484452, -74.0157352083474 40.63429146146734, -74.01576347802391 40.634365364998594, -74.01579113800126 40.634430031081266, -74.01579398832902 40.63443669453102, -74.0157886423007 40.63443340386797, -74.01575977596414 40.63436591752428, -74.01573147435761 40.63429193565131, -74.01570189181386 40.63421438698954, -74.01567892424681 40.634147587814915, -74.01565760203565 40.63408539636749, -74.01562959100156 40.63399942761757, -74.01561530141996 40.633949679479095, -74.01559353647083 40.633874050532, -74.01557628900359 40.633807110978076, -74.01556481352956 40.633760646644426)))",B210O,5527,B210O,B-10,B-10,B-10,B-10,N/B Gowanus Exwy. bet. 65 St. and 66 St.,310,38,68,11220,B,0.006,False,Park,No,100005070,PARK,20100106000000.00000,19581230000000.00000,,DPR,True,Park,N,Park,EXWY,Strip,http://www.nycgovparks.org/parks/B210O/,No,49,23,10,{2B83BBBA-37B8-4F7F-8D64-03AEB75C7B15} +"MULTIPOLYGON (((-73.7566373468171 40.71275178712067, -73.75659216466981 40.71274932594602, -73.75655100138036 40.71275435382301, -73.75723344326816 40.71259003917622, -73.75822252733609 40.71235188430205, -73.75836502121498 40.71256850136964, -73.75897447741548 40.71330779793828, -73.75895632870875 40.71333310310272, -73.75845012719131 40.71334514636232, -73.75787349084575 40.713348372729776, -73.7564221323292 40.71335214321297, -73.75647653888359 40.713236337850155, -73.7564765973265 40.71323621370285, -73.75647816218557 40.71323288421079, -73.75650225772951 40.71318159687531, -73.75653804912305 40.71310541434554, -73.75655429131197 40.713072884306044, -73.75655942710475 40.713065539768046, -73.75656411090198 40.713060764341094, -73.75657085978429 40.71305243534983, -73.756576880744 40.71304704949979, -73.75657657665813 40.713047032647566, -73.75657814168865 40.713045922020974, -73.75658245645454 40.71304206163572, -73.75660362716401 40.713027823345605, -73.75661081876642 40.713023999659185, -73.75662030960176 40.71301958649398, -73.75663673356688 40.713013424778374, -73.75668216529391 40.713000085142795, -73.75670455171135 40.71298964507028, -73.75672894146847 40.71297343332988, -73.756740131595 40.71296354321733, -73.75675815640426 40.71294190863284, -73.7567653852159 40.71292950491764, -73.7567766953994 40.712889304652975, -73.75677483095772 40.71286122808889, -73.7567649203487 40.71283344790311, -73.75675549453264 40.7128181084419, -73.75674475503972 40.712805053509676, -73.75672993191229 40.71279122901257, -73.75671311392468 40.712779232843836, -73.7566903906423 40.712767207982424, -73.75666621930569 40.71275829403332, -73.7566373468171 40.71275178712067)))",Q359,4919,Q359,Q-12,Q-12,Q-12,Q-12,Jamaica Ave. bet. 202 St. and 204 St.,412,27,103,11423,Q,3.867,False,Haggerty Park,Yes,100000276,PARK,20090423000000.00000,19530603000000.00000,202-02 JAMAICA AVENUE,DPR,True,Haggerty Park,Y,Haggerty Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/Q359/,No,33,14,5,{A094D42C-BE53-45E3-948C-1E21B0A8BE50} +"MULTIPOLYGON (((-73.94342611359905 40.81471924751507, -73.94360487244968 40.81447490231845, -73.94367832835185 40.814505839688124, -73.94363216976252 40.81456893568423, -73.94356621334347 40.81465909272036, -73.94349957205758 40.81475018589904, -73.94342611359905 40.81471924751507)))",M407,13488,M407,M-10,,,M-10,W. 134th St. bet. Adam C Powell Blvd. and Lenox Ave.,110,9,,10030,M,0.057,False,,,100037099,PARK,,20160209000000.00000,197 WEST 134 STREET,DPR,False,Harlem Valley Garden,,Harlem Valley Garden,,Garden,,No,70,30,13,{9B885280-8F77-46F1-8244-BF1ECBE950C3} +"MULTIPOLYGON (((-73.90180943768125 40.66322864212751, -73.90218186853106 40.663172429488895, -73.90224974531726 40.66343956693364, -73.90151016638477 40.66355107473823, -73.90144209000884 40.663284085272444, -73.90180943768125 40.66322864212751)))",B516,6232,B516,B-16,B-16,B-16,B-16,Livonia Ave. between Powell St. and Junius St.,316,42,73,11212,B,0.459,False,Powell Street Livonia Garden,No,100004985,PARK,20100106000000.00000,20050429000000.00000,,DPR,False,Powell Street Livonia Garden,N,Powell Street Livonia Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B516/,No,55,19,8,{636EF4D6-FFEB-4389-8EBC-E199BF13FD4E} +"MULTIPOLYGON (((-73.86141310757226 40.817103610261775, -73.8611230486946 40.81714416907514, -73.86104029730579 40.81678465097214, -73.86107747307152 40.81677945217092, -73.86141310757226 40.817103610261775)))",X325,5781,X325,X-09,X-09,X-09,X-09,Randal Ave. bet. Soundview Ave. and Thieriot Ave.,209,18,43,10473,X,0.13,False,Taylor-Soundview Block Assoc. Garden,No,100004270,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,Taylor-Soundview Block Assoc. Garden,Y,Taylor-Soundview Block Assoc. Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X325/,No,85,34,15,{EF16310E-242A-45A9-BF50-F5DEBEE3FAA9} +"MULTIPOLYGON (((-73.91479316702888 40.823410214085186, -73.91492939453843 40.823153372486345, -73.91501315698184 40.82317905606939, -73.91518068206253 40.823230423052635, -73.915044454182 40.82348726314317, -73.91494366837199 40.82345636036027, -73.91487692974411 40.823435896865576, -73.91479316702888 40.823410214085186)))",X317,5173,X317,X-03,X-03,X-03,X-03,E 159 St bet. Melrose Av and Courtlandt Av,203,17,42,10451,X,0.174,False,Rainbow Garden,No,100005003,PARK,20100106000000.00000,20031117000000.00000,379 - 383 EAST 159 STREET,DPR,False,Rainbow Garden,Y,Rainbow Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X317/,No,79,32,15,{D8FC276D-CEF5-4FBE-8717-298F1EBD487C} +"MULTIPOLYGON (((-73.8920824638161 40.826685731818756, -73.89208460550475 40.8264798849506, -73.89246056527493 40.82648229469681, -73.8924584247478 40.82668814247235, -73.8920824638161 40.826685731818756)))",X264,4722,X264,X-02,X-02,X-02,X-02,E 167 St bet. Southern Blvd and Simpson St,202,17,41,10459,X,0.172,False,Field Of Dreams Park,Yes,100004851,PARK,20100106000000.00000,19930827000000.00000,1115 - 1117 SOUTHERN BOULEVARD,DPR,False,Field Of Dreams Park,Y,Field Of Dreams Park,Neighborhood Park,Recreation Field/Courts,http://www.nycgovparks.org/parks/X264/,No,85,32,15,{D7A7F77D-94D0-4075-893E-1C8C8062A73E} +"MULTIPOLYGON (((-74.06851662959531 40.61494574661202, -74.06831296599998 40.61470836076156, -74.068232254946 40.614749413932515, -74.06803019370597 40.61451389430714, -74.06826046326238 40.61439676477774, -74.06846252614291 40.61463228490098, -74.06853742360445 40.61459418694278, -74.06868780054684 40.61451769606108, -74.06889228006715 40.61475602901234, -74.06851662959531 40.61494574661202)), ((-74.06855877006251 40.615077600113224, -74.06892915826535 40.6148894515408, -74.06905334725118 40.615027374674035, -74.06912734916338 40.61512286648851, -74.06898577001193 40.615195547958386, -74.06890722411232 40.61523587178006, -74.06883457175587 40.615273168068704, -74.06877740460656 40.615302515151996, -74.068761775225 40.6153105382402, -74.06855877006251 40.615077600113224)), ((-74.06912684864926 40.61478902737029, -74.0694595536811 40.614620017802565, -74.06964304232618 40.614826903291565, -74.06958633524236 40.61485930957075, -74.06951603827207 40.61489948383242, -74.06944329298895 40.61494105713892, -74.06929747618956 40.61502438751614, -74.06929292930018 40.61502698645974, -74.06912684864926 40.61478902737029)))",R042,6035,R042,R-01,R-01,R-01,R-01,Virginia Ave. and Anderson St.,501,49,120,10305,R,1.02,False,Kaltenmeier Playground,Yes,100004241,PARK,20100106000000.00000,19380505000000.00000,,DPR,False,Kaltenmeier Playground,Y,Kaltenmeier Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/R042/,No,64,23,11,{8877D8BB-5DD2-4EAE-B294-BCC793C61925} +"MULTIPOLYGON (((-73.87722976016437 40.834435087198294, -73.87765767045228 40.833975171950264, -73.87831460138283 40.83420186957934, -73.87782382691462 40.834760648137504, -73.87722976016437 40.834435087198294)))",X159,5584,X159,X-09,X-09,X-09,X-09,E. 174 St. bet. Bronx River Ave. and E. 173 St.,209,18,43,10472,X,1,False,Playground 174,Yes,100004604,PARK,20100106000000.00000,19501207000000.00000,,DPR,True,Playground 174,Y,Playground 174,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X159/,No,85,32,15,{80FED5A5-B33D-404B-8A83-5143CEE76B9B} +"MULTIPOLYGON (((-73.93144538061266 40.79669097298759, -73.93139664290165 40.796757778193125, -73.93123108111989 40.7966878322608, -73.93141374334316 40.796437450829565, -73.9314210784302 40.79644054931174, -73.93149583049956 40.79647213017092, -73.93157894581616 40.79650724410479, -73.93170986520238 40.796328445533106, -73.93195374393416 40.79643147728601, -73.93168926144818 40.79679400529489, -73.93144538061266 40.79669097298759)))",M299,4976,M299,M-11,M-11,M-11,M-11,"Pleasant Ave., bet. E. 118 St. and E. 119 St.",111,8,25,10035,M,0.383,False,Pleasant Village Community Garden,No,100004681,PARK,20100106000000.00000,19970724000000.00000,342 PLEASANT AVENUE,DPR,False,Pleasant Village Community Garden,N,Pleasant Village Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M299/,No,68,29,13,{FF2A9DD3-394D-4F7A-A214-6EE1D2D1A765} +"MULTIPOLYGON (((-73.98763455869431 40.70133262896815, -73.98747774160263 40.701054747343164, -73.98757194272831 40.701079087585704, -73.98765008783947 40.701081920002586, -73.98763455869431 40.70133262896815)))",B223IC,6669,B223IC,B-02,B-02,B-02,B-02,Pearl St. at York St. and Manh. Bridge,302,33,84,11201,B,0.047,False,N/A,No,100004194,PARK,20100106000000.00000,19470729000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223IC/,No,52,26,7,{85199D55-8B84-43D3-B3DC-19A2CB05E3E1} +"MULTIPOLYGON (((-73.96215820728446 40.812393694558246, -73.96278976166968 40.812659559468216, -73.9619988861022 40.813744721377695, -73.96196434587753 40.81373018046485, -73.96136732339409 40.81347885128147, -73.96215820728446 40.812393694558246)))",M087,5610,M087,M-14,M-14,M-09,M-09,"Riverside Dr., Claremont Ave. To W. 122 St.",109,7,26,10027,M,2.067,False,Sakura Park,Yes,100004854,PARK,20100106000000.00000,18961221000000.00000,,DPR,False,Sakura Park,Y,Sakura Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M087/,No,70,30,13,{80B3AF6F-528A-4E38-8AA1-5F91B1378877} +"MULTIPOLYGON (((-73.87619772890145 40.72989821040343, -73.87656897802862 40.729853135027774, -73.87669079096253 40.72976201241597, -73.87669580036835 40.72976596381255, -73.87657194974796 40.729858610608865, -73.87595153496389 40.72993393790657, -73.8759451249063 40.72992888004367, -73.87619772890145 40.72989821040343)))",Q360L,6061,Q360L,Q-05,Q-05,Q-05,Q-05,Queens-Midtown Exwy. bet. 84 Pl. and 85 St.,405,29,104,"11373, 11379",Q,0.007,False,Strip,No,100008313,PARK,20110712000000.00000,19531229000000.00000,,DPR,True,Park,N,Park,,Strip,http://www.nycgovparks.org/parks/Q306L/,No,30,16,6,{ACE359CE-FED1-4AE6-821E-6A9B3A888103} +"MULTIPOLYGON (((-73.96015298653518 40.689036584329585, -73.9608304650613 40.6889589450204, -73.96098400114174 40.68973520099791, -73.96066308717978 40.68977197857693, -73.9606919936728 40.6899181246588, -73.96033550438254 40.68995940704219, -73.96015298653518 40.689036584329585)))",B293,5159,B293,B-02,B-02,B-02,B-02,Lafayette Ave. and Classon Ave.,302,35,88,11205,B,1.336,False,Classon Playground (PS 270),Yes,100004440,PARK,20100106000000.00000,19560615000000.00000,400 DE KALB AVENUE,DPR,False,Classon Playground,Y,Classon Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B293/,No,57,25,8,{3BF27649-7889-495C-BC29-ED5C8571F493} +"MULTIPOLYGON (((-74.07780510132841 40.579542088777494, -74.07782439344618 40.579540322389796, -74.07784373965174 40.57954037592198, -74.07786980326897 40.57954498875569, -74.07789057306839 40.579552463437004, -74.078687887676 40.579961994597625, -74.07772341743312 40.58105518880465, -74.07827029652366 40.581335666737104, -74.07667604689453 40.583142613254914, -74.07667069618871 40.583155892351364, -74.08165071366948 40.58571204217263, -74.08487699738788 40.58736781264133, -74.08557368534173 40.587725339643065, -74.0855820657595 40.587729639706026, -74.08467584570035 40.58882275802975, -74.08391532223145 40.589659606130986, -74.08269253541913 40.59102116473886, -74.08189795760627 40.5917042828248, -74.0818876619071 40.5917104686532, -74.0818742788922 40.59171425408414, -74.0818572320603 40.59171754323352, -74.08183964645313 40.59171882189543, -74.08182075517836 40.591717901505696, -74.08180430571974 40.591715110788535, -74.08178802747348 40.59171032798942, -74.08177167653803 40.59170309941822, -74.08176072846886 40.59169651267578, -74.08175026050908 40.59168840460673, -74.08174229126168 40.59168051268594, -74.08173574979071 40.59167228205275, -74.080851331795 40.59020554891709, -74.0807756108402 40.590104758847176, -74.08072064275811 40.59003729603312, -74.08065319480464 40.5899669908953, -74.08060698297389 40.58991948738689, -74.08052082406158 40.589848243441644, -74.08046588963505 40.5898093027628, -74.08035479190102 40.58974568197576, -74.08025163514509 40.589697070864794, -74.07285647930892 40.58598514859704, -74.07163654405313 40.58536228402078, -74.07162023106463 40.58535161757982, -74.07161062320814 40.5853427209897, -74.07160402225553 40.585334555551306, -74.07159829012875 40.585324795643984, -74.0715943847767 40.585314550116244, -74.071592187041 40.585301747837725, -74.07159280988668 40.58528886275451, -74.07159554695558 40.585278090783866, -74.07160014267714 40.58526792550852, -74.0716044741443 40.585261375100366, -74.07161101492092 40.5852552870849, -74.07196119417459 40.585010347339434, -74.07275207575634 40.58445749494002, -74.07380073724676 40.58337771205838, -74.07542950666276 40.581644768140485, -74.07775994609418 40.57955928334341, -74.07778368577289 40.57954804133633, -74.07780510132841 40.579542088777494)))",R149,5864,R149,R-02B,R-02,R-02,R-02,"Quintard St. and Mason Ave, Seaside Blvd., (Father Capodanno Blvd.)",502,50,122,10305,R,136.568,False,Ocean Breeze Park,No,100004908,PARK,20100106000000.00000,20000601000000.00000,,DPR,False,Ocean Breeze Park,N,Ocean Breeze Park,Undeveloped,Nature Area,http://www.nycgovparks.org/parks/R149/,No,64,24,11,{83257C40-1ADE-455A-9A90-B55E3ED959E5} +"MULTIPOLYGON (((-73.86509137744432 40.87484133704716, -73.8651637506321 40.87446519110586, -73.86592628839057 40.874548570615474, -73.86584917957758 40.87492729502174, -73.86509137744432 40.87484133704716)))",X161,5413,X161,X-12,X-12,X-12,X-12,Magenta St. bet. Holland Ave. and Cruger Ave.,212,12,47,10467,X,0.716,False,Gun Hill Playground,Yes,100004560,PARK,20100106000000.00000,19521229000000.00000,736 MAGENTA STREET,DPR,True,Gun Hill Playground,Y,Gun Hill Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X161/,No,83,36,16,{A9EC2C9A-BBE0-4996-A83F-3FBD9F12DECB} +"MULTIPOLYGON (((-73.90397267745317 40.87644706341972, -73.90397941402091 40.876446765560445, -73.90398586528964 40.87644686457865, -73.90399236583404 40.87644734544437, -73.90399800234206 40.87644808132952, -73.90400287106988 40.87644896065389, -73.90400734572607 40.876449979225875, -73.90401099591044 40.87645096559482, -73.90408353357418 40.876478783447254, -73.90398385358677 40.876918995937324, -73.903960684363 40.87702131530705, -73.90376955812708 40.87724839241062, -73.90375942504838 40.87723383117667, -73.90393880743629 40.87702070637939, -73.90395381462514 40.87695443395609, -73.90388921278372 40.87692696301862, -73.90362690165743 40.87681542144895, -73.90389776758764 40.87649117720338, -73.90390694452256 40.87648019168773, -73.90390988743728 40.876476391377395, -73.90391336901858 40.87647254919254, -73.90391971484722 40.87646680215869, -73.903926171825 40.87646213039964, -73.90393437636045 40.87645742137397, -73.90394307671869 40.87645358443276, -73.90395172939408 40.87645072628165, -73.90395828160337 40.87644911355772, -73.90396594858903 40.87644777731041, -73.90397267745317 40.87644706341972)))",X150G,4805,X150G,X-08,X-08,X-08,X-08,"W 230 St, Bailey Av, Major Deegan Exwy",208,14,50,10463,X,0.275,False,Siren Slope,Yes,100004602,PARK,20100106000000.00000,19501212000000.00000,151 W 230 STREET,DPR,True,Siren Slope,Y,Siren Slope,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/X150G/,No,81,33,13,{1F551E26-DBA5-43CA-986D-6B02B789C9C9} +"MULTIPOLYGON (((-73.9768661390178 40.792971431971, -73.97687358731974 40.79297081572254, -73.97688297467789 40.79297526607667, -73.9768844598867 40.79298386885288, -73.97687486126566 40.79302137276033, -73.97686416448335 40.79307527725614, -73.97685097209845 40.793163961267354, -73.9768352706118 40.793421478642806, -73.97683123197078 40.79370572879541, -73.97680176035581 40.79396086155306, -73.97675025802414 40.794188295873596, -73.97668836052954 40.794381115542876, -73.97663458033045 40.79451677218023, -73.97656415571538 40.79467239309258, -73.97652206002341 40.794749010767966, -73.9764516112554 40.794870981719924, -73.97638166458025 40.79498307064338, -73.97631535783343 40.79507481257484, -73.97623123466141 40.79517972150554, -73.97606966783837 40.795347296315434, -73.97599193633145 40.79541664835648, -73.97597702955662 40.7954280861012, -73.97596307402587 40.79543361406189, -73.97593846909845 40.79543091193115, -73.97592061634 40.7954234601687, -73.97590559508463 40.79541395675624, -73.9758983542914 40.79540029015719, -73.97590724436911 40.79538153100177, -73.97605256819497 40.79521276078498, -73.97612348954638 40.79511750531154, -73.97619954299533 40.79498778151735, -73.97625231972276 40.79487188995898, -73.97628318584482 40.79477712680068, -73.9762925709133 40.79471208381938, -73.97631126655986 40.79436162477964, -73.97633048912829 40.79403493362413, -73.97635833568562 40.79388004162304, -73.97640174854926 40.793743420344335, -73.97646316760229 40.79359413358875, -73.97655279535375 40.793436437365195, -73.97665092291183 40.79328228986039, -73.97675045775189 40.79313461714852, -73.9768574866584 40.79297952753174, -73.9768661390178 40.792971431971)))",M048,5667,M048,M-14,M-14,M-14,M-14,"Riverside Dr., W. 91 St. To W. 95 St.",107,6,24,"10024, 10025",M,1.578,False,Joan Of Arc Park,No,100004772,PARK,20100106000000.00000,19720802000000.00000,,DPR,False,Joan Of Arc Park,Y,Joan Of Arc Park,Neighborhood Park,Triangle/Plaza,http://www.nycgovparks.org/parks/M048/,No,69,31,10,{4408A258-DB58-4E00-B7A3-DE08F6240F15} +"MULTIPOLYGON (((-73.74033744310843 40.66452056862074, -73.74048195316347 40.664290270657816, -73.74052291653463 40.66422498981493, -73.74055950032931 40.664152509328154, -73.74105074023936 40.66430097637393, -73.74113608040471 40.6641318959062, -73.74064484036735 40.66398342921925, -73.74065008650612 40.66397303643875, -73.74069867343829 40.663876773217766, -73.74074647009697 40.66378207509933, -73.74080200705707 40.66367204053447, -73.74085181389488 40.66357336119827, -73.74088593959948 40.66350574778014, -73.74094740620683 40.66338396480642, -73.74098927325129 40.66330101492239, -73.74102349877788 40.66323320447281, -73.74105762413443 40.66316559100111, -73.74110352216942 40.663087543574, -73.74114123513209 40.66302910904773, -73.74119319133212 40.66294860328898, -73.74123272083786 40.66288735239009, -73.74126766154534 40.662833212469344, -73.74130442007281 40.662776256196835, -73.74133797465407 40.66272426357905, -73.74137477708814 40.662667237141775, -73.74141383037154 40.662606725336246, -73.7414478166473 40.66255406276875, -73.74150483784929 40.66246570761026, -73.74155311343452 40.6623909045134, -73.74157796619868 40.66235239377179, -73.74158714469566 40.662338172664896, -73.74159589133359 40.66232461967362, -73.74162069883961 40.66228617906148, -73.741643212582 40.66225129484949, -73.74167628957301 40.66220004038546, -73.74170707278836 40.662152341418036, -73.74174019488271 40.662101018596985, -73.74177145388762 40.662052580452624, -73.74180730263772 40.66199703218842, -73.74184869286856 40.66193289548075, -73.74186938854717 40.661900826672245, -73.74189190203288 40.661865941509475, -73.74191671038034 40.66182750083412, -73.74192956840625 40.66180757685554, -73.74196961764068 40.66174551729666, -73.7420031271631 40.661693593719924, -73.74204495005299 40.66162878702302, -73.74207209711444 40.66158672156103, -73.74211530464774 40.66151976750047, -73.74214608723182 40.661472069312275, -73.74217137115835 40.66143288941934, -73.74220081291534 40.66138726841264, -73.74222389471913 40.661351500146395, -73.74225733063123 40.661312098063206, -73.74227556677359 40.66129060568258, -73.7423050835993 40.66125582257821, -73.74232620046999 40.661230935377986, -73.742368710944 40.661180837398355, -73.74241615723207 40.66112492408962, -73.7424511586251 40.66108367488597, -73.74252839579182 40.660992652105215, -73.7425489304027 40.6609684524585, -73.74257611622859 40.66093641425564, -73.74261169951227 40.66089447830743, -73.74263281733319 40.66086959195306, -73.74266812612666 40.660827981361415, -73.74269184784715 40.660800024643976, -73.74271296561174 40.66077513737411, -73.7427418987165 40.6607410399479, -73.74278615599985 40.66068888262722, -73.74281769414237 40.66065171482949, -73.74285023366619 40.6606133668785, -73.74288552115253 40.660577827479756, -73.74291087113969 40.66055229585537, -73.74293648820662 40.660526496467185, -73.74295772713288 40.660505104342086, -73.74295964909261 40.66050316891616, -73.74299150922486 40.66047108162498, -73.74301387113123 40.660448560044486, -73.74309968482852 40.66036213158121, -73.74314355257009 40.66031794916043, -73.74320455038908 40.660256514976076, -73.74325930504438 40.66020136866594, -73.7433181694043 40.66014208280319, -73.74336150384036 40.66009843761993, -73.74341380210522 40.66004576398732, -73.74345820362416 40.66000104502587, -73.74350505884641 40.659953852386096, -73.74354919314526 40.65990940204906, -73.74359060535605 40.659867692214284, -73.7436611549735 40.65979663630605, -73.74372898360518 40.65972832087929, -73.7437907329677 40.659666128017435, -73.74374538579771 40.65960343813488, -73.7438737809112 40.659474119404784, -73.74391912810702 40.65953681103873, -73.74394735035634 40.65950707834776, -73.74395702570527 40.6594968843817, -73.74398482761107 40.65946759560291, -73.74401765059534 40.65943301662795, -73.7440612494929 40.659387083545724, -73.74410338082701 40.6593426969776, -73.74414355187393 40.659300376330094, -73.74423503776266 40.65920399357217, -73.74425745148719 40.659180381333506, -73.74432542276632 40.65910877086588, -73.74433926063853 40.65909419158006, -73.7443555514388 40.65907702964847, -73.74437441034068 40.659057161054285, -73.7444129888901 40.65901651804459, -73.744469324439 40.65895716653582, -73.74455431970466 40.65886762026249, -73.74462339213926 40.65879484949116, -73.74467789296871 40.65873743082558, -73.74473508763087 40.65867717426863, -73.74478027886164 40.658629562273575, -73.74483372453221 40.65856939010246, -73.74484905934474 40.65855075633045, -73.74488031667622 40.6585100780116, -73.74491375942947 40.65846346469776, -73.74494936400752 40.65840966190953, -73.74497704416696 40.65836311504486, -73.74499346206221 40.65833550636602, -73.74503577263621 40.65825378697356, -73.74505840788821 40.658202373299574, -73.74507321692367 40.65816873656098, -73.74509859552799 40.658100596387335, -73.74512045487023 40.65803094994338, -73.74512929525739 40.6579959275778, -73.74513372446563 40.65797837724206, -73.74514047571785 40.65795162963197, -73.74514564927945 40.65792526034647, -73.74515230738325 40.657891320972304, -73.74516250379911 40.65782076256564, -73.74516867851557 40.65775239431879, -73.74517126195045 40.65768157680362, -73.74517036352177 40.657619910768446, -73.74516488107204 40.65754049342153, -73.7451724689921 40.65749715106809, -73.74517872373185 40.657496666937085, -73.74586403026217 40.65752456296754, -73.7458321092914 40.657577696089504, -73.74699584734108 40.657627211262316, -73.74699770023537 40.657625661940074, -73.74711328187232 40.657630364683676, -73.7472107272233 40.65763433045112, -73.74730137561636 40.657638018251795, -73.74736413147093 40.65764057220157, -73.74745477987753 40.65764426078182, -73.74752119965788 40.65764696317156, -73.74758064512307 40.65764938186282, -73.74768872640071 40.65765377940164, -73.74774429042436 40.65765604000767, -73.74777955100606 40.65765747441596, -73.74790175356821 40.657662446632855, -73.74798176616261 40.65766570174969, -73.74805917299804 40.65766885114558, -73.74814041873462 40.657672156580595, -73.74820666241098 40.65767485098464, -73.74825913596457 40.65767698570789, -73.74832921735934 40.657679837026386, -73.74840172009105 40.65768278635212, -73.74845846182981 40.657687575149, -73.74848650348858 40.657689941801465, -73.74843144027852 40.65775993410581, -73.74768913370696 40.65870348812466, -73.74759992726123 40.65881866888224, -73.747384987233 40.65909902250609, -73.7473620565076 40.65912893335603, -73.74735626166414 40.65912659638538, -73.74734949595816 40.659135195902344, -73.74683487699389 40.658918294328885, -73.74683954354978 40.65920546703044, -73.74685906837499 40.660406902195795, -73.74686687006125 40.66065230391296, -73.7468668165826 40.66066639693603, -73.74686307655375 40.66065354278529, -73.74686347914403 40.66067833229018, -73.74686540911578 40.660797036802606, -73.7468656227893 40.660810220888024, -73.74580909799707 40.66216664982318, -73.74580905521626 40.662166704660336, -73.74570045749833 40.662306124487735, -73.74565653057537 40.662362518793365, -73.74541031312381 40.66267861407555, -73.74532688971766 40.66278571286315, -73.74530289024233 40.662816523249546, -73.74490810013933 40.66332334991347, -73.74472900085239 40.663553272296404, -73.7445892679737 40.66373265457936, -73.74449835485447 40.663849365388465, -73.74399254935169 40.66368585727811, -73.74398320744297 40.66369898768061, -73.74396860306199 40.6637195113453, -73.74393469773476 40.66376716253349, -73.7439158283674 40.66379368856852, -73.74390111573292 40.66381436777342, -73.74386752540218 40.663861573885356, -73.74383393857501 40.66390877909469, -73.74380034934211 40.66395598248758, -73.74376676478157 40.66400318858254, -73.74376421317024 40.664006777774446, -73.74376166156206 40.66401036606575, -73.74360024603382 40.66423125783925, -73.74359934302353 40.66422743942322, -73.74355805676429 40.66428459434347, -73.74348124434867 40.6643909302727, -73.74323490487333 40.66473194698071, -73.74305864745408 40.66497594551296, -73.74301115636594 40.66504168814033, -73.74288075750906 40.665222201327424, -73.74177051141133 40.665188284502925, -73.74167869895737 40.66518547856827, -73.74165769129264 40.665184837049246, -73.74105450807495 40.66516640521486, -73.7406825252015 40.66515988680497, -73.74014307725037 40.66515371304319, -73.73981003538822 40.6651499011828, -73.73999216263384 40.664957769208506, -73.74009740318124 40.664846747790136, -73.74015266605996 40.66478844779995, -73.74015710484662 40.66478376611744, -73.7402020211429 40.66473638224836, -73.74029348776664 40.664590618098806, -73.74033744310843 40.66452056862074)), ((-73.74680347968805 40.657373261730456, -73.74673312842475 40.65737027020706, -73.74675666510338 40.65705480934902, -73.74676379021768 40.65705709254686, -73.74683343293333 40.65695256754201, -73.74683144346739 40.65695178331231, -73.74686206962078 40.6569095865859, -73.74656289019093 40.65681370852388, -73.74758830085621 40.6552625805315, -73.7476583454895 40.655156621365066, -73.74804887005408 40.654565855159774, -73.748076168352 40.65452455943824, -73.74808987422033 40.65449561970381, -73.74810024121733 40.654457211783956, -73.74810178318582 40.65440958571596, -73.74809262590409 40.6543668638648, -73.74808559938093 40.65434886867713, -73.74803237968842 40.654262909956046, -73.74800201390295 40.65418629735976, -73.74799649579822 40.654160263820074, -73.74799332454621 40.65411676261656, -73.74799232519781 40.65410304639533, -73.74799441091045 40.65407332387212, -73.7480153014197 40.65399231376168, -73.74828511562993 40.65348560965103, -73.74831342063472 40.65284978946256, -73.74851278232606 40.65286304806938, -73.74863793159933 40.652878515236885, -73.74868499532757 40.65288666603922, -73.74885938372026 40.652920734543684, -73.74891315915006 40.65293285859763, -73.74907720422378 40.65297950968212, -73.74933091729996 40.653072063732125, -73.7495623178287 40.65316030106978, -73.74983312496893 40.65326356510055, -73.7500345730188 40.653341444278034, -73.75013767067877 40.653382488904974, -73.75020182470512 40.65341005631983, -73.75037958269574 40.65348931436367, -73.75056043102961 40.65357734270177, -73.75083343111321 40.653724003416805, -73.75155322211796 40.65416730193006, -73.75107000192004 40.654786954518414, -73.75098966455047 40.6548899712819, -73.750944879961 40.654947399575896, -73.75087847774712 40.65502997129629, -73.75082447056946 40.6550932761763, -73.75076582560855 40.65516201642953, -73.75072209239646 40.65521327834773, -73.75068035434056 40.6552622005187, -73.75062652493081 40.65532529676945, -73.75055942597182 40.65540394592636, -73.75048267135257 40.65549391255271, -73.75038061579544 40.655602575761776, -73.7502927204421 40.655696160687654, -73.75017570234108 40.65582075565818, -73.75006121368406 40.65594265444361, -73.74983295097657 40.65618569228455, -73.74975283061909 40.656306496629796, -73.74969083063814 40.65639997983767, -73.74947097826426 40.65673146817176, -73.74876347335406 40.65665077102407, -73.74836462410978 40.65713876382202, -73.74827166849609 40.65726127705465, -73.74813582065596 40.65742991010918, -73.74772067961095 40.657412260555894, -73.74767855156115 40.6574104697672, -73.7470805647691 40.65738504409429, -73.74680347968805 40.657373261730456)), ((-73.74154512299158 40.66233747220733, -73.74152842877278 40.66233719425834, -73.74153203269368 40.66233152547704, -73.74154512299158 40.66233747220733)), ((-73.74226515286685 40.661196774254165, -73.7422688637883 40.661192149392065, -73.74225980970043 40.661203937627604, -73.74226515286685 40.661196774254165)))",Q008,6118,Q008,Q-13,Q-13,Q-13,Q-13,"S. Conduit Ave., 149 Ave. bet. 232 St. and 235 St.",413,31,105,"11413, 11422",Q,89.946,False,Brookville Park,No,100000317,PARK,20090423000000.00000,19420319000000.00000,,DPR,True,Brookville Park,Y,Brookville Park,Large Park,Community Park,http://www.nycgovparks.org/parks/Q008/,No,31,10,5,{A394C845-BB59-442B-9AF0-B596FBD20DB1} +"MULTIPOLYGON (((-73.88406137452317 40.676331804052595, -73.88478683056499 40.676224339447764, -73.88509892754028 40.67743623747156, -73.88477669715407 40.67748287620692, -73.88467569822443 40.677497493942774, -73.88456621867968 40.67751333948964, -73.88446095097578 40.677528575010406, -73.88453623045966 40.67782089393531, -73.88373949441426 40.67804873788876, -73.88363815920678 40.67765280221231, -73.88437121766924 40.677544216871, -73.88406137452317 40.676331804052595)))",B163,5045,B163,B-05,B-05,B-05,B-05,"Atlantic Ave., Cleveland St. and Liberty Ave.",305,37,75,11208,B,2.799,False,Sperandeo Brothers Playground (IS 302),Yes,100004724,PARK,20100106000000.00000,19380318000000.00000,343 CLEVELAND STREET,DPR,True,Sperandeo Brothers Playground,Y,Sperandeo Brothers Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B163/,No,54,18,7,{44D86458-0F7D-41F4-AB4D-512BE11901F5} +"MULTIPOLYGON (((-73.93295568846695 40.702406502342654, -73.93278245105196 40.70230781504366, -73.93270808699357 40.702265452026566, -73.93234575942368 40.702059044868854, -73.93226780446012 40.702014635292386, -73.93218984841714 40.70197022566214, -73.93236129249742 40.70179614768022, -73.93302107906383 40.701126214758645, -73.93316467106108 40.70114130346367, -73.93340120444576 40.70167954432609, -73.93348464335224 40.701869411528875, -73.93371511604042 40.70239384694228, -73.93373570906253 40.702440704337654, -73.93382012504611 40.70263279160216, -73.93374368372585 40.70266266443635, -73.93364946615968 40.702461884226835, -73.93362762336321 40.702415334070615, -73.9335334056977 40.70243847239035, -73.93348834710258 40.70234244547193, -73.93342195112912 40.70236591855537, -73.93340634799834 40.702365410645314, -73.93342204719868 40.70239886744709, -73.93345597835642 40.70247117567471, -73.93354386767939 40.70265847262448, -73.93348903199114 40.7027103257529, -73.93331697676857 40.702612314429864, -73.93324889157458 40.70257352863348, -73.93317919577655 40.70253382514028, -73.93310005356813 40.702488741858595, -73.93302787215626 40.70244762212404, -73.93295568846695 40.702406502342654)))",B395,5216,B395,B-04,B-04,B-04,B-04,"Flushing Ave., Central Ave., Noll St., Evergreen Ave.",304,34,83,11206,B,2.741,False,Green Central Knoll,Yes,100004723,PARK,20100106000000.00000,19970422000000.00000,55 EVERGREEN AVENUE,DPR,False,Green Central Knoll,Y,Green Central Knoll,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B395/,No,53,18,7,{7B1CA7EF-C1B4-4359-A5BE-CBF171B83F30} +"MULTIPOLYGON (((-73.791081668037 40.59534080136827, -73.79243122283015 40.59526195114684, -73.79248724188078 40.59580974723688, -73.79135290878908 40.59587602333793, -73.79133791440219 40.59587689933924, -73.79124639191463 40.59588224703425, -73.7912425910719 40.59587858309692, -73.79124013946821 40.59587564022961, -73.7912345502585 40.595863966473686, -73.79122898951746 40.595849989225755, -73.79122539424199 40.595838011112136, -73.79121743232612 40.59580307608098, -73.7912072957749 40.59576767873068, -73.79119519573683 40.595732299424284, -73.79118810663907 40.59571104225288, -73.7911844474836 40.595692296574825, -73.79117939797497 40.595637248198805, -73.79117775392592 40.59562653706602, -73.79116890528394 40.59558806405679, -73.79116281710277 40.59555576556166, -73.79115884374862 40.59554380927163, -73.79113283261094 40.5954712165859, -73.79113050857198 40.59546639905445, -73.79112819650304 40.59546190933587, -73.79112298976035 40.59545487937723, -73.79111882249535 40.5954490228911, -73.79111498125746 40.59544279868267, -73.7911134007888 40.59543858045117, -73.79110757420908 40.59541556954484, -73.79110119504037 40.59539775366426, -73.79109486033802 40.59538347332615, -73.79109065754015 40.59537500525121, -73.79108760213596 40.595367578468135, -73.7910843924408 40.59535811441637, -73.791081668037 40.59534080136827)))",Q479,4608,Q479,Q-14,Q-14,Q-14,Q-14,Beach 63 St. bet. Elizabeth Rd. and Thursby Ave.,414,31,100,11692,Q,1.657,False,Thursby Basin Park,No,100000124,PARK,20090423000000.00000,20030116000000.00000,62-02 BEACH 63 STREET,DPR,False,Thursby Basin Park,Y,Thursby Basin Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/Q479/,Yes,31,10,5,{338CB7B0-B33D-4AF8-9336-3E17B3958523} +"MULTIPOLYGON (((-73.76433926865728 40.75551957162391, -73.76434792804241 40.75551877167699, -73.76435545742271 40.75552005679661, -73.76436002030975 40.755522361526694, -73.76438186555416 40.75554373925769, -73.76438857435983 40.75555035911011, -73.76439868179044 40.75556034210843, -73.76441375989592 40.75557586169225, -73.76443134850038 40.755595408078925, -73.76444522000168 40.755610232700036, -73.76444872627452 40.75561396437293, -73.76444897874445 40.755614233240756, -73.76446887575209 40.75563401307095, -73.76446914841095 40.75563426577081, -73.76448810938759 40.7556518473436, -73.76449649876149 40.7556590937773, -73.76450869794763 40.75566963125282, -73.76452891289013 40.75568591054542, -73.7645293025689 40.7556862247189, -73.76453538369033 40.75569085765833, -73.7645522304745 40.75570352982906, -73.76456322582615 40.75571124804762, -73.76457512367037 40.755719602067515, -73.76458244645663 40.75572439873302, -73.76459880557452 40.75573500053179, -73.76460604994546 40.75573953588808, -73.76462302688053 40.75574990121158, -73.76464141153279 40.75576035585755, -73.76464798018317 40.755764091079556, -73.76467356228783 40.755777617651404, -73.76470593582471 40.7557941711911, -73.76473368982279 40.75580836135791, -73.76479193697801 40.75583874279103, -73.76479334419348 40.75583997936093, -73.76479579502467 40.75584213027668, -73.76479855232799 40.75584703197098, -73.76479932145949 40.75585324074617, -73.76479791250732 40.75585786198028, -73.76479621216923 40.75585981981595, -73.76479450469088 40.7558617875426, -73.76478961355686 40.75586523550822, -73.76478324558578 40.755868047400554, -73.7647817821642 40.755868307360856, -73.76477768340142 40.755869034706826, -73.7647155092517 40.755875232003824, -73.76468709952742 40.75587803849092, -73.76467328559043 40.75587940335833, -73.7646726044275 40.755879471305946, -73.76465717821723 40.755880994068725, -73.76464754719967 40.75588194514021, -73.76457958631177 40.755888660039936, -73.7645116277849 40.75589537310338, -73.7644436668696 40.75590208792289, -73.76442793264397 40.75590364154297, -73.76437570594376 40.75590880180177, -73.76436921838808 40.755856699520294, -73.7643622794437 40.75580097537007, -73.76435556502729 40.755747061700326, -73.76434885179968 40.75569314983315, -73.76434213858924 40.75563923616417, -73.76434059215906 40.75562680958538, -73.76433557273322 40.75558651957163, -73.76433350818235 40.75556991807577, -73.7643293420637 40.755529438899295, -73.76433222017526 40.75552428037121, -73.76433254076375 40.75552370470161, -73.76433926865728 40.75551957162391)))",Q316,6372,Q316,Q-11,Q-11,Q-11,Q-11,"216 St., 48 Ave.",411,23,111,11364,Q,0.191,False,Captain Dermody Triangle,Yes,100000222,PARK,,19490419000000.00000,,DPR,False,Captain Dermody Triangle,Y,Captain Dermody Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q316/,No,25,11,6,{92078357-490B-4D45-9C05-BCBA42D083A7} +"MULTIPOLYGON (((-73.88791784481427 40.763787910427304, -73.8882784395137 40.76374831157383, -73.88820421941334 40.76334073408217, -73.88856150660011 40.763301496738016, -73.88874516561793 40.76431001728716, -73.88838824864192 40.76434921323509, -73.88844146050569 40.76464141284241, -73.88808042158674 40.76468106040123, -73.88791784481427 40.763787910427304)))",Q393D,5921,Q393D,Q-03,Q-03,Q-03,Q-03,"80 St., 81 St. bet. 24 Ave. and 25 Ave.",403,22,115,11370,Q,1.607,False,LaGuardia Landing Lights,Yes,100000281,PARK,20090423000000.00000,19600728000000.00000,,DPR,False,LaGuardia Landing Lights,N,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Undeveloped,http://www.nycgovparks.org/parks/Q393D/,No,34,13,14,{14DEEC50-9753-4B4E-A986-A312D2A02ABE} +"MULTIPOLYGON (((-73.92538383288867 40.68499408562254, -73.92531310216287 40.6850022866448, -73.92529366020214 40.685004540618365, -73.92523803890946 40.68472503533714, -73.92532821122678 40.68471458038453, -73.92538383288867 40.68499408562254)))",B538,5470,B538,B-03,B-03,B-03,B-03,Halsey St. bet. Patchen Ave. and Ralph Ave.,303,41,81,11233,B,0.059,False,Welcome Home Garden,No,100008331,PARK,20110712000000.00000,20100811000000.00000,681 HALSEY ST,DPR,False,Welcome Home Garden,N,Welcome Home Garden,,Garden,http://www.nycgovparks.org/parks/B538/,No,56,25,8,{03DEBB2C-E5FC-4473-8F9F-0ABE0A02D6E3} +"MULTIPOLYGON (((-73.93439184815134 40.81814567943771, -73.93437589835372 40.81806651129069, -73.93692982387036 40.819149227767575, -73.93652695705542 40.81970193951388, -73.93647756896908 40.81976969719264, -73.93613481210139 40.820239929926466, -73.93462744662435 40.8196009024095, -73.93462324014037 40.81953785535942, -73.9346113479906 40.81933961689956, -73.93460590086218 40.819288253086086, -73.93458502798715 40.819125724118756, -73.93457911925812 40.819084559065246, -73.93456337922859 40.81899653379059, -73.93451044425761 40.81872831601735, -73.93449332360346 40.81864740837019, -73.93445804016496 40.8184703083415, -73.93443393789437 40.818354714081075, -73.93439184815134 40.81814567943771)))",M186,4862,M186,M-10,M-10,M-10,M-10,"W. 145 St. to W. 143 St., Lenox Ave., and Harlem River",110,9,32,10037,M,6.423,False,Col. Young Playground,Yes,100003950,PLGD,20100106000000.00000,19440107000000.00000,680 LENOX AVENUE,DPR,True,Col. Young Playground,Y,Col. Young Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M186/,No,70,30,13,{61864A95-9848-4A09-A49C-9A7DF0A61BB4} +"MULTIPOLYGON (((-73.97611731681965 40.64941819646392, -73.97650067315958 40.64927110563872, -73.97683728072816 40.651043457271406, -73.9768713713149 40.6511289259387, -73.97687099639397 40.651248629844275, -73.97687739284935 40.65136823515239, -73.97689055015341 40.651487518531354, -73.97691044240656 40.65160626024754, -73.97700983440092 40.65211242314526, -73.9770099509662 40.652113842383905, -73.97700974356472 40.65211525615464, -73.9770092216702 40.65211662123462, -73.97700839830233 40.6521178980036, -73.97700729830417 40.65211904774435, -73.97700595597651 40.65212003534352, -73.97700440916469 40.652120832892585, -73.97700270635417 40.65212141608739, -73.97700089721032 40.65212176782789, -73.97699903494374 40.65212187641807, -73.97699717630904 40.65212173916776, -73.97699537569322 40.65212136149084, -73.97699368866459 40.65212075240366, -73.97699216369327 40.65211993172732, -73.97699084688361 40.65211892288447, -73.97698977724282 40.65211775740107, -73.97692910192771 40.65203157023925, -73.97687560466326 40.65194266852766, -73.97687168101771 40.651930641329436, -73.97584948468173 40.650048733374085, -73.975685021355 40.6496624136054, -73.97580652586393 40.64958249307837, -73.97585327746772 40.649552541782555, -73.97590847249249 40.649521194633294, -73.97594789147695 40.64950045856027, -73.9759849502024 40.64948061709538, -73.97602551094843 40.649460750233565, -73.9760616253118 40.649443209369515, -73.97611731681965 40.64941819646392)))",B130,6555,B130,B-07,B-07,B-07,B-07,"Ft Hamilton Pkwy., Prospect Ave., Greenwood Ave.",307,39,72,11218,B,3.39,False,Greenwood Playground (PS 88),Yes,100004170,PARK,20100106000000.00000,19410605000000.00000,83 EAST 5 STREET,DPR,True,Greenwood Playground,Y,Greenwood Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B130/,No,44,21,9,{9B1615F1-DC48-4F65-9DE5-C3403D11EF64} +"MULTIPOLYGON (((-74.01772017027533 40.71222180074665, -74.01683012890433 40.71206806134847, -74.01681185182728 40.71207677916158, -74.01636383528174 40.71199857673179, -74.01597065406197 40.71182702342633, -74.01605897442202 40.7115324567803, -74.01696510525609 40.71171517371301, -74.01697311064486 40.711694699421486, -74.01750270726266 40.711807337046544, -74.01750073024381 40.71183623473607, -74.01761089943464 40.71185577072415, -74.0176292354845 40.7117663850245, -74.01778347251063 40.71179289665074, -74.01772017027533 40.71222180074665)))",M283A,5947,M283A,M-01,M-01,M-01,M-01,bet. Hudson River and South End Ave. S/o Liberty St.,101,1,1,10280,M,1.556,False,Battery Park City,Yes,100004358,PARK,20100106000000.00000,19820427000000.00000,,DPR/BPC Authority,True,Battery Park City,N,Battery Park City,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M283A/,Yes,65,26,10,{8236C286-3B25-48AC-9AB8-CB447C653E05} +"MULTIPOLYGON (((-73.93417015112773 40.796454750123196, -73.93398898356345 40.796700745033775, -73.93395250037388 40.79668541923852, -73.93391754394457 40.79667073636338, -73.93390249443321 40.79666441432972, -73.93385973966981 40.79664645454826, -73.93404105350837 40.796400260011204, -73.93409879237521 40.79642463174905, -73.93417015112773 40.796454750123196)))",M389,5496,M389,M-07,M-07,NULL,M-11,E.117 St. bet. 1 Ave. and Pleasant Ave.,111,8,25,10035,M,0.101,False,St. Mark's Garden,No,100007945,PARK,20130114000000.00000,20021120000000.00000,415 - 421 EAST 117 STREET,DPR,False,St. Mark's Garden,,St. Mark's Garden,,Garden,,No,68,29,13,{9475BF86-E381-44DF-9130-988A398B530B} +"MULTIPOLYGON (((-73.97493871387397 40.61298877568348, -73.97493638845619 40.612985314473725, -73.97493421076894 40.61298179746382, -73.97493219144592 40.612978228258164, -73.97493032221396 40.61297461045706, -73.97492861252583 40.612970945863665, -73.97492640131303 40.612965453102866, -73.9749262585009 40.61296499920908, -73.97492510301363 40.61296134734377, -73.97492458605575 40.61295970918305, -73.9749236244257 40.612955890763644, -73.9749227455174 40.612952060655466, -73.97491321525767 40.61290819689248, -73.97491233289354 40.61290413264796, -73.97490257903773 40.612857853637294, -73.97489393107703 40.612815149936175, -73.97489404860336 40.612810569911225, -73.97489496590907 40.612806553787216, -73.97489660043762 40.61280267469907, -73.97489905621931 40.612798817402705, -73.97490100434739 40.61279686549829, -73.9749037007565 40.61279416002094, -73.97490593471127 40.61279257379036, -73.97491022650577 40.61278952286102, -73.97491697613648 40.61278657602783, -73.97492329869056 40.6127849411604, -73.97493081090113 40.61278406749248, -73.97493286579362 40.61278415619168, -73.97493609406638 40.61278429557589, -73.97494181190946 40.61278499562697, -73.97494491353564 40.61278568880382, -73.97494747282019 40.61278626119261, -73.97494954987735 40.61278711533934, -73.97495283441569 40.61278846683685, -73.97495894831569 40.61279179289304, -73.97496021833271 40.61279253790069, -73.9749647738528 40.61279521434134, -73.97497038789868 40.61279856280111, -73.974998892897 40.612815558236726, -73.97502931415391 40.61283369684284, -73.97504100182657 40.61284066941499, -73.97504123101973 40.61284080634399, -73.97505234215939 40.61284745640323, -73.97506874600886 40.61285727654338, -73.975079163542 40.61286384720372, -73.97508537698589 40.61286961548812, -73.97508920115456 40.61287520765274, -73.975090868198 40.61287916940655, -73.97509121884326 40.61288000426565, -73.9750922402185 40.612885239216425, -73.97509221584045 40.612890401898866, -73.97509130901786 40.61289485387894, -73.97509126639899 40.61289506459163, -73.97508927584951 40.61289987204266, -73.97508525477339 40.612905783092536, -73.9750693063963 40.612922986792626, -73.97505742700262 40.61293571938554, -73.97504648386564 40.61294744719884, -73.97504205790511 40.61295219108385, -73.97500147242484 40.61299558558239, -73.97499683889026 40.61299924249146, -73.97499300244525 40.613001187683096, -73.9749903809931 40.613002515381424, -73.9749841551156 40.613004688785196, -73.97498351696971 40.613004799410426, -73.97497737422489 40.613005863389894, -73.97497028764886 40.61300605455852, -73.97496848450088 40.61300582003036, -73.97496489238478 40.613005351877575, -73.97495962137195 40.61300418185301, -73.97495936380538 40.61300407913748, -73.9749528643785 40.613001503131485, -73.97495083591808 40.61300023655674, -73.97494649428117 40.61299752414139, -73.97494255479768 40.61299378972204, -73.97493871387397 40.61298877568348)))",B175,6358,B175,B-12,B-12,B-12,B-12,"Dahill Rd., 24 Ave., 62 St.",311,44,62,11204,B,0.006,False,Dahill Triangle,Yes,100003846,PARK,20100106000000.00000,,,DPR,False,Dahill Triangle,Y,Dahill Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B175/,No,48,17,10,{3A3B4FF7-8960-4A53-A0E9-96F92A0F8250} +"MULTIPOLYGON (((-73.92537678297309 40.84025023969717, -73.92556470947987 40.840234782589356, -73.92559339279727 40.84050849889104, -73.92555618396707 40.84051155997258, -73.92531789591764 40.84093244334927, -73.92526202206363 40.84092521221637, -73.92532917777892 40.840530230848515, -73.92537678297309 40.84025023969717)))",X275,5750,X275,X-04,X-04,X-04,X-04,Ogden Av bet. W 169 St and W 170 St,204,16,44,10452,X,0.286,False,Mosaic Success Garden,No,100004974,PARK,20100106000000.00000,19961231000000.00000,,DPR,False,Mosaic Success Garden,Y,Mosaic Success Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X275/,No,77,29,15,{3009BAD9-5733-41DC-9E3B-5804BC446229} +"MULTIPOLYGON (((-73.88388289260618 40.674134192967784, -73.88423733333056 40.67408456341317, -73.88425398148689 40.67415086983034, -73.88426414917436 40.67419136724766, -73.88390970671647 40.674240998684105, -73.88390659985728 40.674228622462614, -73.88389953923821 40.6742005003352, -73.88389271472268 40.674173318583975, -73.88388289260618 40.674134192967784)))",B526,5299,B526,B-05,B-05,B-05,B-05,Cleveland St. between Pitkin Ave. and Glenmore Ave.,305,37,75,11208,B,0.09,False,Cleveland Street Vegetable Garden,No,100004258,PARK,20100106000000.00000,20021120000000.00000,433 - 435 CLEVELAND STREET,DPR,False,Cleveland Street Vegetable Garden,N,Cleveland Street Vegetable Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B526/,No,54,18,8,{CD22FD43-1966-4D65-8FB0-2734528AE8FF} +"MULTIPOLYGON (((-73.97353068231858 40.64989243984889, -73.97368655002533 40.65012277487719, -73.97351455914976 40.65018966726564, -73.97335607261404 40.64996035078508, -73.97353068231858 40.64989243984889)))",B255N,4848,B255N,B-07,B-07,B-07,B-07,Ocean Pkwy. at E. 8 St.,307,39,72,11218,B,0.116,False,Park,Yes,100003844,PARK,20100106000000.00000,19581218000000.00000,1 EAST 8 STREET,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/B255N/,No,44,21,9,{FECB100D-EEAA-47DC-A7BE-A3BA85585456} +"MULTIPOLYGON (((-74.07633812079823 40.637045757793395, -74.07634280856215 40.63704536565689, -74.0763493292859 40.63704558825831, -74.07635613484815 40.63704680214177, -74.07636398253848 40.637049657879736, -74.07637188250574 40.63705480990628, -74.076377719363 40.63706172651918, -74.07663838129608 40.63756327371996, -74.0766622535853 40.63760920679444, -74.07667219347061 40.63762833169555, -74.07667191895459 40.6376373595826, -74.07666874122583 40.637645405138024, -74.07666319680963 40.63765233562756, -74.07665726557343 40.63765697455358, -74.07665013222557 40.6376606687356, -74.07664399707906 40.63766273951637, -74.07663450070123 40.637664386591425, -74.07619124318634 40.6376635149744, -74.07618638047273 40.637662913047464, -74.0761800448487 40.637661276499195, -74.07617381671282 40.63765853043982, -74.07616959698998 40.637655788452896, -74.07616676541414 40.637653350822255, -74.07616360262865 40.63764968600345, -74.0761610974549 40.63764529853263, -74.07615973552227 40.6376410327752, -74.07615933011986 40.63763590818952, -74.07615993896405 40.637631814926955, -74.07630958550577 40.63706491186542, -74.07631113520719 40.63706178153292, -74.07631305171488 40.63705896163608, -74.07631566673139 40.63705604311901, -74.07631986396918 40.63705258954385, -74.0763245289446 40.63704984256567, -74.07632897030946 40.637047960234085, -74.07633290533698 40.637046763533505, -74.07633812079823 40.637045757793395)))",R024,6612,R024,R-01,R-01,R-01,R-01,"Bay St., Victory Blvd.",501,49,120,10301,R,0.424,False,Tompkinsville Park,Yes,100004053,PARK,20100106000000.00000,,,DPR,True,Tompkinsville Park,Y,Tompkinsville Park,Sitting Area/Triangle/Mall,Neighborhood Park,http://www.nycgovparks.org/parks/R024/,No,61,23,11,{14249792-D1E9-44FF-9047-C0A1CED5F4AC} +"MULTIPOLYGON (((-74.15291632841455 40.639323546653834, -74.15262970704617 40.6369537982289, -74.1532630057928 40.63690752282523, -74.15409754140133 40.63687999071138, -74.154789539771 40.63688496507567, -74.15456041153439 40.63954624175273, -74.15291632841455 40.639323546653834)))",R167,6004,R167,R-01,R-01,R-01,R-01,Richmond Ter. bet. Van Pelt Ave. and Van Name Ave.,501,49,120,10303,R,11.193,False,Richmond Terrace Wetlands,No,100008339,PARK,20110712000000.00000,20101112000000.00000,,DPR,False,Richmond Terrace Park,N,Richmond Terrace Park,,Nature Area,http://www.nycgovparks.org/parks/R167/,Yes,61,23,11,{31055BDD-C5B9-4090-92BB-BA29DF106353} +"MULTIPOLYGON (((-73.8886184234385 40.72758364334315, -73.88881675773717 40.72744992925684, -73.88890879902571 40.727562872650076, -73.88890992041964 40.72756687919835, -73.88890991374245 40.72757088465824, -73.88890878090045 40.72757374538457, -73.88890651880489 40.72757660412082, -73.88890275483375 40.7275786032224, -73.88889861635221 40.727579457414926, -73.88888846038756 40.727580020339275, -73.88862754519046 40.72758287412616, -73.8886184234385 40.72758364334315)))",Q360S,5553,Q360S,Q-05,Q-05,Q-05,Q-05,"73 St., 57 Rd., Queens - Mid-Town Exwy. Sr. Rd. N.",405,30,104,11378,Q,0.07,False,Quick Brown Fox Triangle,Yes,100000391,PARK,20090423000000.00000,19570508000000.00000,,CDOT,False,Quick Brown Fox Triangle,N,Quick Brown Fox Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/Q360S/,No,30,15,6,{9085A973-505D-427D-8218-8634B2F7E8EC} +"MULTIPOLYGON (((-73.94503487027522 40.614262023016096, -73.94505439844482 40.61425983237904, -73.94506005209945 40.614289480238035, -73.94506979804736 40.61434058767043, -73.94508236319817 40.61440648120489, -73.94509525783373 40.614474096691346, -73.94510755711501 40.61453859788944, -73.9451486462892 40.61475406538241, -73.94478790220363 40.61499118539208, -73.94465694368408 40.614304421022894, -73.94503487027522 40.614262023016096)))",B208,5102,B208,B-15,B-15,B-15,B-15,Nostrand Ave. bet. Kings Hwy. and Ave. P,315,45,61,11229,B,0.55,False,Pfc Norton Playground,Yes,100004582,PARK,20100106000000.00000,19400606000000.00000,2860 NOSTRAND AVENUE,DPR,False,Pfc Norton Playground,Y,Pfc Norton Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/B208/,No,41,19,9,{B712074A-1F62-428E-8F8C-531B40A2C397} +"MULTIPOLYGON (((-73.92590412146421 40.697929391541294, -73.925849018207 40.69780508440656, -73.92578462644649 40.697768631573965, -73.92583135586541 40.697720934525464, -73.92586682397919 40.697684735154695, -73.92600870650755 40.697765056731505, -73.92612119283449 40.69787142010278, -73.92605296450911 40.69791327804075, -73.92600279637385 40.6979187092073, -73.92590412146421 40.697929391541294)))",B556,6415,B556,B-04,B-04,B-04,B-04,Myrtle Ave. bet. Cedar St. and Dekalb Ave.,304,34,83,11221,B,0.097,False,,No,100008680,PARK,,20140723000000.00000,1278 MYRTLE AVENUE,DPR,False,Garden,,Know Waste Lands,,Garden,,No,53,18,7,{5419C955-FBE9-474C-AC80-4E810218743A} +"MULTIPOLYGON (((-73.99837444732965 40.6950898399889, -73.9984777784768 40.694875895802745, -73.99852357463308 40.69488852338809, -73.9985314912996 40.694871730729005, -73.9985292883328 40.69487112285484, -73.99863550687702 40.69464583570002, -73.99864106633505 40.694647364836364, -73.99842577589264 40.69510399315923, -73.99837444732965 40.6950898399889)))",B223DC,5807,B223DC,B-02,B-02,B-02,B-02,BQE bet. Remsen St. and Grace Ct.,302,33,84,11201,B,0.04,False,Brooklyn Heights Promenade,No,100004716,PARK,20100106000000.00000,19470514000000.00000,,DPR,True,Brooklyn Heights Promenade,Y,Brooklyn Heights Promenade,Sitting Area/Triangle/Mall,Parkway,http://www.nycgovparks.org/parks/B223DC/,No,52,26,7,{8100FABA-2360-4686-A173-DCDCA4C1B3E0} +"MULTIPOLYGON (((-73.73941752218502 40.698670296603225, -73.7396128019773 40.698296164332696, -73.73992260904875 40.69838530091775, -73.7401933106035 40.69787462978563, -73.74024314485818 40.697930883155436, -73.74053541677723 40.69801623327312, -73.74008732332811 40.69887404095327, -73.73941752218502 40.698670296603225)))",Q404,5356,Q404,Q-13,Q-13,Q-13,Q-13,115 Rd. bet. 218 St. and 2019 St.,413,27,105,11411,Q,1.146,False,East Springfield Playground,Yes,100000184,PARK,20090423000000.00000,19600520000000.00000,218-01 116 AVENUE,DPR/DOE,False,East Springfield Playground,Y,East Springfield Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/Q404/,No,33,14,5,{14F342B4-E1D0-43E7-B0A2-F386B0E8B9F4} +"MULTIPOLYGON (((-73.96759302243127 40.796453442856894, -73.96821680735995 40.79671568087264, -73.96746581772175 40.79774568073838, -73.96684275652838 40.79748243575464, -73.96720028885873 40.79699208272808, -73.96727793705514 40.79688558739338, -73.96759302243127 40.796453442856894)))",M220,4905,M220,M-07,M-07,M-07,M-07,Amsterdam Ave bet. W. 100 St. and W 102 St.,107,7,24,10025,M,1.945,False,Frederick Douglass Playground,Yes,100004669,PLGD,20100106000000.00000,19620823000000.00000,825 AMSTERDAM AVENUE,DPR,False,Frederick Douglass Playground,Y,Frederick Douglass Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/M220/,No,69,30,13,{C62100E6-6736-4B01-98FE-C01CBEC78856} +"MULTIPOLYGON (((-73.87857252199669 40.639867749556906, -73.87872010901881 40.63957174518392, -73.87945712306886 40.64027449300708, -73.87785793139835 40.641308597252646, -73.87799174049523 40.64102173119725, -73.87818721872416 40.640629862228025, -73.8783756171569 40.64026389156535, -73.87857252199669 40.639867749556906)))",B165A,6441,B165A,B-18,B-18,B-05,B-05,"Belt Pkwy., Fresh Creek, Seaview Ave.","305, 318",42,75,11239,B,2.203,False,Spring Creek Park,No,100008349,PARK,20120508000000.00000,19490616000000.00000,,DPR,True,Spring Creek Park,N,Spring Creek Park,Fill,Nature Area,,Yes,60,19,8,{3A75C5E0-D158-4B05-8956-7B1114B63131} +"MULTIPOLYGON (((-73.97153804240897 40.685959729708735, -73.97138839291866 40.68520828679728, -73.97287074689753 40.6858049876585, -73.97153804240897 40.685959729708735)))",B026,5990,B026,B-02,B-02,B-02,B-02,"Carlton Ave., Fulton St., Green Ave.",302,35,88,11238,B,1.158,False,Cuyler Gore Park,Yes,100003929,PARK,20100106000000.00000,18450628000000.00000,,DPR,Part,Cuyler Gore Park,Y,Cuyler Gore Park,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B026/,No,57,25,8,{CD991E6D-8356-4B29-A2AB-86ADB59DF782} +"MULTIPOLYGON (((-73.8336318916601 40.78552182722057, -73.83356633292266 40.785114716976594, -73.8335617402477 40.78509839143059, -73.83355350003035 40.78508291699464, -73.83354185871447 40.78506876048432, -73.83352716828261 40.78505634924553, -73.83350987325346 40.78504605942897, -73.83349049532045 40.785038199759214, -73.83346962032678 40.78503300881449, -73.83344787815248 40.78503064419189, -73.8334259261464 40.7850311752792, -73.83336981051052 40.78503626844658, -73.83340249430384 40.78519936345322, -73.83267567932474 40.785271113446356, -73.83262220307067 40.7850103843269, -73.83270657466653 40.78497034980658, -73.83272641510055 40.78495440458442, -73.83274245477728 40.78493615665979, -73.83275424102241 40.78491612136554, -73.83276143831513 40.78489486823442, -73.83276384374791 40.78487299760823, -73.83276138942023 40.78485113073584, -73.83275414368158 40.78482988636154, -73.83274231234927 40.78480986721972, -73.83272623046695 40.784791639311074, -73.83270635404043 40.78477572018443, -73.83268324704854 40.78476256180871, -73.832657562526 40.7847525352369, -73.8326300295452 40.78474592518458, -73.8326014283646 40.7847429191879, -73.83257256911808 40.784743602169804, -73.83240218447327 40.784758614433045, -73.83242360829942 40.78487847281326, -73.83236055363413 40.78489255862752, -73.8320695141441 40.7849575789561, -73.83208029243188 40.785012219169246, -73.83194533861456 40.78504134913328, -73.83173215652558 40.78511516476684, -73.83159940288662 40.78512911055649, -73.83153580604596 40.7851353706574, -73.83116455088687 40.78510191218178, -73.83117672460429 40.785162415897105, -73.83110997834774 40.78515432523733, -73.83081230987759 40.78516308546301, -73.83072505365267 40.784738831241825, -73.8307506844878 40.78473863565596, -73.83071418894917 40.78455647783188, -73.83071363761232 40.78436933358107, -73.8315145166026 40.784366545023126, -73.83245260960221 40.78436327239041, -73.83341863011438 40.78435989381582, -73.83427642677931 40.78435688736598, -73.83433022529161 40.78435669906833, -73.83455772274881 40.784355899354026, -73.8346955599591 40.784355416367404, -73.8348394440244 40.78435491036446, -73.83497666280554 40.78435442795637, -73.83512215335624 40.78435391669685, -73.8352547872333 40.78435345081103, -73.83540229300668 40.784352930372116, -73.83553672766467 40.78435245862927, -73.83567799228409 40.78435196044825, -73.83581521342029 40.78435147794558, -73.83595778004917 40.78435097587351, -73.83609217560594 40.78435050252659, -73.83621306881516 40.784350076471206, -73.83622063747164 40.784297302446504, -73.83621963964887 40.784350400085124, -73.83621950872082 40.78435739050338, -73.8362169053397 40.784495841830704, -73.83621619101089 40.784533866352234, -73.83621708423637 40.78454592895774, -73.83622959900372 40.7845461844755, -73.83623026155884 40.7847237970074, -73.83623040384832 40.784761798431425, -73.8362306560042 40.784829308590155, -73.836232238642 40.785253720531735, -73.83615049813969 40.78524978261319, -73.83598161186654 40.78524164586818, -73.83584269701606 40.785234953654, -73.83575623832712 40.78523078811182, -73.83566538836435 40.78522641092848, -73.83564121118529 40.785498665087914, -73.83478140251171 40.785457236316915, -73.83457159622935 40.78543860921192, -73.8345483269386 40.78557586376549, -73.83409360187564 40.78555425354857, -73.83409335801142 40.78554324094853, -73.83366500010145 40.78552288267335, -73.8336318916601 40.78552182722057)))",Q445,5382,Q445,Q-07,Q-07,Q-07,Q-07,14 Rd. bet. 132 St. and 138 St.,407,19,109,11356,Q,11.422,False,Frank Golden Park,Yes,100000111,PARK,,19690702000000.00000,14-40 136 STREET,DPR,Part,Frank Golden Park,Y,Frank Golden Park,Large Park,Neighborhood Park,http://www.nycgovparks.org/parks/Q445/,No,27,11,14,{65EEB187-D97B-45BD-93CF-2C799D958993} +"MULTIPOLYGON (((-73.88979035228844 40.761531133243125, -73.89010916472976 40.76149768235543, -73.89012839943067 40.76150036079363, -73.890320666898 40.76257806948995, -73.88960949236673 40.762653882738384, -73.88951329053764 40.762138307201845, -73.8898185365305 40.761775971533496, -73.8897745504272 40.76153303980334, -73.88979035228844 40.761531133243125)))",Q393A,4931,Q393A,Q-03,Q-03,Q-03,Q-03,25 Ave. bet. 78 St. and 79 St.,403,22,115,11370,Q,1.473,False,LaGuardia Landing Lights,Yes,100000110,PARK,20090423000000.00000,19600728000000.00000,78-02 25 AVENUE,DPR,False,LaGuardia Landing Lights,N,LaGuardia Landing Lights,Sitting Area/Triangle/Mall,Recreation Field/Courts,http://www.nycgovparks.org/parks/Q393A/,No,34,13,14,{5AB817DA-805C-4D72-B614-7AF9C9D32B84} +"MULTIPOLYGON (((-73.88442504604235 40.8215576080855, -73.88442510531435 40.82155760634391, -73.88442516458008 40.82155760820432, -73.8844252226557 40.821557612765, -73.88442528191204 40.82155762002838, -73.88442533879298 40.821557629990835, -73.88442539566915 40.82155764265479, -73.88442545135372 40.82155765891959, -73.88442550466289 40.821557677883426, -73.8844255567835 40.821557698647105, -73.88442560652864 40.82155772210989, -73.88442565508379 40.82155774827294, -73.88442570007805 40.82155777713394, -73.88442574388382 40.821557807794726, -73.88442578412878 40.82155784115345, -73.88442582200143 40.82155787541031, -73.88442585631326 40.821557912365066, -73.88442588706734 40.82155795021672, -73.8844259142622 40.82155798986586, -73.88442593908478 40.821558030413094, -73.8844259627063 40.821558079964106, -73.88481910583673 40.82250643524995, -73.8848191164538 40.82250646497693, -73.88481912941836 40.82250650821373, -73.88481913882356 40.82250655324794, -73.88481914467413 40.822506597378144, -73.884819146967 40.822506642405266, -73.88481914451825 40.822506687427655, -73.88481913851494 40.82250673154601, -73.88481912895388 40.82250677656128, -73.88481911583969 40.82250681977201, -73.88481909916938 40.822506862979225, -73.88481907775903 40.822506905281166, -73.88481905279559 40.82250694577857, -73.88481902546299 40.82250698537312, -73.88481899457727 40.82250702316314, -73.88481896013693 40.82250706004907, -73.88481892214506 40.822507094230026, -73.884818881784 40.8225071275081, -73.88481883787144 40.822507158081116, -73.8848187927766 40.82250718685199, -73.88481874413021 40.82250721291775, -73.88481869430315 40.8225072362809, -73.88481864210999 40.822507256940206, -73.88481858873449 40.8225072757973, -73.88481853299291 40.82250729195059, -73.88481847607221 40.82250730450066, -73.88481841085525 40.82250731614199, -73.88444774638295 40.822558173652865, -73.88444770251552 40.82255817811135, -73.88444764442333 40.82255818255565, -73.88444758515044 40.82255818429723, -73.88444752588383 40.82255818243686, -73.88444746780733 40.82255817787617, -73.8844474085501 40.82255817061283, -73.8844473516683 40.82255816065037, -73.88444729479126 40.82255814798639, -73.88444723910584 40.82255813172168, -73.88444718579588 40.82255811275783, -73.88444713367447 40.822558091994175, -73.88444708392858 40.8225580685314, -73.88444703537269 40.82255804236832, -73.88444699037775 40.822558013507376, -73.88444694657132 40.8225579828466, -73.88444690632575 40.82255794948789, -73.88444686845251 40.822557915231044, -73.88444683414015 40.8225578782763, -73.8844468033856 40.8225578404246, -73.88444677145807 40.822557795367764, -73.88388258066293 40.821640656213994, -73.88388256411791 40.82164062738142, -73.88388254285492 40.82164058503667, -73.88388252633506 40.82164054179618, -73.88388251337133 40.821640498559276, -73.88388250396684 40.821640453524964, -73.88388249811696 40.82164040939473, -73.88388249582475 40.821640364367596, -73.88388249827409 40.82164031934523, -73.88388250427795 40.82164027522692, -73.8838825138396 40.82164023021171, -73.88388252695417 40.82164018700108, -73.88388254362488 40.821640143794, -73.88388256503556 40.82164010149221, -73.88388258999922 40.821640060995016, -73.88388261733206 40.8216400214007, -73.8838826482179 40.8216399836109, -73.88388268265828 40.82163994672522, -73.88388272065012 40.82163991254458, -73.88388276101114 40.82163987926685, -73.88388280492354 40.821639848694204, -73.88388285001825 40.821639819923696, -73.88388289866433 40.82163979385829, -73.8838829484911 40.82163977049554, -73.8838830006839 40.82163974983666, -73.8838830540589 40.82163973098, -73.88388310979997 40.821639714827164, -73.88388316672018 40.82163970227754, -73.88388322245025 40.82163969242821, -73.88442492748432 40.82155761967313, -73.88442498795104 40.82155761252975, -73.88442504604235 40.8215576080855)))",X306,6244,X306,X-02,X-02,X-02,X-02,Edgewater Rd bet. Garrison Av and Bruckner Blvd,202,17,41,10474,X,0.995,False,Garrison Park,No,100005134,PARK,20100106000000.00000,20001207000000.00000,,DPR,False,Garrison Park,Y,Garrison Park,Undeveloped,Undeveloped,http://www.nycgovparks.org/parks/X306/,Yes,85,34,15,{31771D25-50AE-48CA-8893-D59D71408A4D} +"MULTIPOLYGON (((-73.88782042303264 40.829344100127834, -73.88797535138006 40.82922783825987, -73.88795739683344 40.82938900682759, -73.88782042303264 40.829344100127834)))",X134,5636,X134,X-03,X-03,X-03,X-03,"Freeman St, Longfellow Av, W Farms Rd",203,17,42,10459,X,0.016,False,Freeman Triangle,Yes,100004923,PARK,20100106000000.00000,19380101000000.00000,,DPR,False,Freeman Triangle,Y,Freeman Triangle,Sitting Area/Triangle/Mall,Triangle/Plaza,http://www.nycgovparks.org/parks/X134/,No,85,32,15,{2BDFD714-E0EE-45D7-BFA6-5A57E5DD3ED1} +"MULTIPOLYGON (((-73.96957957675203 40.57741259024511, -73.9697672130921 40.57660341514942, -73.97047955721452 40.57666347806472, -73.97028508148337 40.577502184340354, -73.96957957675203 40.57741259024511)), ((-73.97054204179703 40.577186278168696, -73.97065900442668 40.5766795254518, -73.9713796517872 40.576747521226096, -73.97125630421503 40.577283697704914, -73.97054204179703 40.577186278168696)))",B337,5185,B337,B-13,B-13,B-13,B-13,W. Brighton Ave. between W. 2 St. and W. 3 St.,313,48,60,11224,B,2.282,False,Century Playground (PS 100),Yes,100004166,PARK,20100106000000.00000,19620801000000.00000,2955 WEST 3 STREET,DPR/DOE,False,Century Playground,Y,Century Playground,JOP,Jointly Operated Playground,http://www.nycgovparks.org/parks/B337/,No,46,23,8,{EA23D0DD-220E-444A-A9E6-BBE0971397CD} +"MULTIPOLYGON (((-73.90440919267616 40.829597917992324, -73.90448017021855 40.82953574987264, -73.90468923557314 40.829671540147984, -73.90463017336558 40.829741447200604, -73.90440919267616 40.829597917992324)))",X316,4734,X316,X-03,X-03,X-03,X-03,Franklin Av bet. E 167 St and E 168 St,203,16,42,10456,X,0.054,False,Genesis Community Garden,No,100004848,PARK,20100106000000.00000,20021120000000.00000,1185 FRANKLIN AvNUE,DPR,False,Genesis Park Community Garden,Y,Genesis Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/X316/,No,79,32,15,{143F659D-517C-470E-860B-824B0B95CD76} +"MULTIPOLYGON (((-73.8707420946387 40.669894265624016, -73.87229209815051 40.66967110711418, -73.8726203039368 40.67099312009606, -73.8710702719845 40.67121628209321, -73.8707420946387 40.669894265624016)))",B103,6047,B103,B-05,B-05,B-05,B-05,Euclid Ave. bet. Dumont Ave. and Blake Ave.,305,42,75,11208,B,4.947,False,Cypress Hills Playground,Yes,100004080,PARK,20100106000000.00000,19290515000000.00000,,DPR,True,Cypress Hills Playground,Y,Cypress Hills Playground,Neighborhood Plgd,Neighborhood Park,http://www.nycgovparks.org/parks/B103/,No,60,18,8,{275E5619-E577-459B-809E-DF953DAB4A2A} +"MULTIPOLYGON (((-73.89779650733226 40.70702714522579, -73.89865952158655 40.70682065633522, -73.89876715977468 40.7070868054811, -73.89790356004225 40.707291853836026, -73.89779650733226 40.70702714522579)))",Q038,5439,Q038,Q-05,Q-05,Q-05,Q-05,Madison St. bet. 60 Pl. and Fresh Pond Rd.,405,30,104,11385,Q,0.574,False,Benninger Playground,Yes,100000023,PARK,20090423000000.00000,19360820000000.00000,60-45 MADISON STREET,DPR,False,Benninger Playground,Y,Benninger Playground,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/Q038/,No,37,15,6,{D206AD08-BFD0-4942-ADB9-0A9677DFE026} +"MULTIPOLYGON (((-73.97812609359605 40.72526435365435, -73.97825176231056 40.72509344371938, -73.97848288239858 40.725190744828865, -73.97851156223724 40.725202818808015, -73.97854753652436 40.72515389365174, -73.97857209881252 40.72512048753598, -73.97869686712941 40.72517357678991, -73.9786805503268 40.725195768618036, -73.97875922976267 40.725228895779956, -73.97883854245339 40.7252622886545, -73.97891501125314 40.72529448417692, -73.97897625901396 40.72532026974796, -73.97899378205307 40.72532764721517, -73.97905422035318 40.725353094005506, -73.97914138712258 40.72538979296771, -73.97897178709509 40.72562045633481, -73.97888462248584 40.7255837536438, -73.9788066621449 40.725550926571145, -73.97812609359605 40.72526435365435)))",M325,4988,M325,M-03,M-03,M-03,M-03,E. 9 St. bet. Ave. B and Ave. C,103,2,9,10009,M,0.55,False,La Plaza Cultural,No,100004281,PARK,20100106000000.00000,20021120000000.00000,,DPR,False,La Plaza Cultural,N,La Plaza Cultural,Greenthumb,Garden,http://www.nycgovparks.org/parks/M325/,No,74,27,12,{F176DAB5-A43A-438E-8453-53CACB3161B9} +"MULTIPOLYGON (((-73.95042032246141 40.807740699792056, -73.9506046803461 40.80748693118513, -73.95064109627867 40.8075022219337, -73.95068213515991 40.80751945432166, -73.9507188094053 40.8075348541164, -73.95075800957751 40.807551314864774, -73.95057364616738 40.807805091816164, -73.95055885557458 40.807798881942055, -73.95053444589063 40.80778863190631, -73.95050794866883 40.80777749577946, -73.95049777036222 40.80777323295356, -73.95045673137162 40.80775600140116, -73.95042032246141 40.807740699792056)))",M351,87744,M351,M-10,M-10,M-10,M-10,W. 122 St. bet. Fred Douglass Blvd. and Adam Clayton Powell Blvd.,110,9,28,10027,M,0.117,False,Joseph Daniel Wilson Garden,No,100004815,PARK,20100106000000.00000,20021120000000.00000,219 - 225 WEST 122 STREET,DPR,False,Joseph Daniel Wilson Garden,N,Joseph Daniel Wilson Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/M351/,No,70,30,13,{2C315CFE-7DD4-499A-A7EC-94C71E8277CD} +"MULTIPOLYGON (((-73.99773025583967 40.729109989687466, -73.99781169158223 40.72901399614523, -73.99781106300374 40.7290145085227, -73.99818385821756 40.72857516584273, -73.9981859061576 40.72857159535815, -73.99818557940773 40.72857313792433, -73.9982375642733 40.728511873524425, -73.99864750925856 40.7280261581784, -73.99864914277113 40.728026813767926, -73.99865775449798 40.728016665135115, -73.99880933014518 40.72809108124225, -73.99850806184706 40.7284462185572, -73.99788183293795 40.729184406103855, -73.99773025583967 40.729109989687466)))",M395,6301,M395,M-02,M-02,M-02,M-02,La Guardia Pl. bet. W. 3 St. and Bleecker St.,102,1,6,10012,M,0.545,False,Adrienne's Playground,Yes,100008287,PARK,,20151101000000.00000,,DPR,True,Fiorello La Guardia Park,,Fiorello La Guardia Park,Neighborhood Plgd,Neighborhood Park,,No,66,27,10,{14CA2496-AE32-4DB4-B89B-789B150B99B8} +"MULTIPOLYGON (((-73.92392805010722 40.73250227301633, -73.92351933135797 40.73241316711989, -73.9234950881924 40.73247836224215, -73.92315416548516 40.73240403599253, -73.92315514752784 40.73240139455579, -73.92349260138971 40.73247496567282, -73.92351754990864 40.732407871846966, -73.92360610269641 40.732427178097154, -73.92392626862201 40.73249697865035, -73.92397503669207 40.732365822072666, -73.92421552477288 40.732418250610905, -73.9242433879029 40.73242432486456, -73.9243184395518 40.73244068692662, -73.92431732026847 40.73244329856627, -73.92419822823278 40.7324173351159, -73.92397752351427 40.7323692195322, -73.92392805010722 40.73250227301633)))",Q360A,5693,Q360A,Q-02,Q-02,Q-02,Q-02,53 Ave.bet. 43 St. and 44 St.,402,30,108,11378,Q,0.006,False,Strip,No,100000456,PARK,20090423000000.00000,19680730000000.00000,,DPR,True,Park,N,Park,Sitting Area/Triangle/Mall,Strip,http://www.nycgovparks.org/parks/Q360A/,No,37,12,12,{CF96FDB1-B3AC-46FF-BE07-6110E5A53DF8} +"MULTIPOLYGON (((-73.94567279852019 40.69436616864137, -73.94598960392126 40.69432992262415, -73.94600868866584 40.69442648097031, -73.94569188399944 40.69446272704018, -73.94567279852019 40.69436616864137)))",B439,5242,B439,B-03,B-03,B-03,B-03,Tompkins Ave. and Willoughby Ave.,303,36,79,11206,B,0.064,False,All People's Church Of The Apostolic Fa*,No,100004445,PARK,20100106000000.00000,20021120000000.00000,147 TOMPKINS AVENUE,DPR,False,All People's Church of the Apostolic Faith Community Garden,N,All People's Church of the Apostolic Faith Community Garden,Greenthumb,Garden,http://www.nycgovparks.org/parks/B439/,No,56,18,8,{B25B99C4-A478-482C-907C-BDBF453A9400} +"MULTIPOLYGON (((-73.9053260213287 40.85233186129195, -73.90564472485806 40.852503380634296, -73.90539260617227 40.85278475883528, -73.90507390075884 40.8526132388039, -73.9053260213287 40.85233186129195)))",X274,4791,X274,X-05,X-05,X-05,X-05,Creston Ave. bet. E. Burnside Ave. and E,205,14,46,10453,X,0.28,False,Mount Hope Garden,Yes,100004765,PARK,20100106000000.00000,19960917000000.00000,2035 - 2039 CRESTON AVENUE,DPR,False,Mount Hope Garden,Y,Mount Hope Garden,Neighborhood Plgd,Playground,http://www.nycgovparks.org/parks/X274/,No,86,33,15,{CEB0E5E5-FF85-4555-9E8E-A63AB2D2E71B} diff --git a/data/nyc_park_data2.csv b/data/nyc_park_data2.csv new file mode 100644 index 00000000..d5619a23 --- /dev/null +++ b/data/nyc_park_data2.csv @@ -0,0 +1,2016 @@ +borough,acres,typecatego,waterfront +R,20.906999999999996,Neighborhood Park,Yes +Q,0.061,Triangle/Plaza,No +B,1.13,Playground,No +X,2.16,Neighborhood Park,No +X,1.104,Jointly Operated Playground,No +B,0.004,Triangle/Plaza,No +Q,13.543,Community Park,No +B,0.3,Playground,No +B,1.253,Jointly Operated Playground,No +B,0.809,Garden,No +M,0.09,Garden,No +X,3.306,Neighborhood Park,No +Q,0.218,Playground,No +B,0.18100000000000002,Garden,No +M,1.275,Playground,No +X,1.578,Jointly Operated Playground,No +X,38.536,Community Park,No +B,1.0,Playground,No +M,1.4509999999999998,Neighborhood Park,No +Q,0.057,Garden,No +Q,28.87,Neighborhood Park,Yes +B,0.442,Neighborhood Park,No +Q,0.7490000000000001,Jointly Operated Playground,No +X,0.375,Garden,No +R,0.08900000000000001,Triangle/Plaza,No +B,1.3259999999999998,Jointly Operated Playground,No +X,0.44,Triangle/Plaza,No +Q,0.9,Triangle/Plaza,No +M,0.385,Playground,No +B,0.532,Triangle/Plaza,No +M,0.718,Managed Sites,No +M,2.148,Neighborhood Park,No +X,19.749000000000002,Neighborhood Park,No +X,0.84,Jointly Operated Playground,No +X,0.68,Cemetery,No +R,1.25,Nature Area,No +B,0.045,Garden,No +R,7.462999999999999,Jointly Operated Playground,No +B,36.81,Recreation Field/Courts,Yes +Q,0.836,Triangle/Plaza,No +X,0.22899999999999998,Playground,No +B,0.161,Playground,No +Q,1.5290000000000001,Neighborhood Park,No +B,0.392,Recreation Field/Courts,No +Q,1.14,Undeveloped,Yes +Q,2.327,Undeveloped,No +B,0.364,Triangle/Plaza,No +Q,3.009,Neighborhood Park,No +R,5.278,Recreation Field/Courts,No +B,1.314,Neighborhood Park,No +R,2.356,Nature Area,Yes +B,0.057999999999999996,Garden,No +X,1.368,Jointly Operated Playground,No +X,21.10936646,Nature Area,Yes +M,1.048,Jointly Operated Playground,No +X,0.39,Triangle/Plaza,No +X,0.031,Strip,No +Q,1.9669999999999999,Jointly Operated Playground,No +M,0.61,Jointly Operated Playground,No +R,350.983,Parkway,No +X,2.49,Cemetery,No +X,0.38299999999999995,Playground,No +B,2.984,Community Park,No +B,1.607,Jointly Operated Playground,No +Q,0.14,Triangle/Plaza,No +B,0.005,Triangle/Plaza,No +B,0.48700000000000004,Triangle/Plaza,No +B,0.865,Playground,No +M,0.06,Garden,No +Q,1.94,Recreation Field/Courts,No +R,70.6,Undeveloped,Yes +Q,0.026000000000000002,Triangle/Plaza,No +B,0.657,Neighborhood Park,No +Q,1.295,Playground,No +B,0.114,Garden,No +X,20.866999999999997,Historic House Park,No +R,0.28,Triangle/Plaza,No +Q,1.102,Undeveloped,No +M,0.069,Garden,No +R,3.955,Neighborhood Park,No +X,6.438,Neighborhood Park,Yes +X,0.05,Garden,No +M,0.361,Triangle/Plaza,No +Q,0.35600000000000004,Playground,No +M,1.4409999999999998,Jointly Operated Playground,No +M,0.34600000000000003,Playground,No +M,0.997,Neighborhood Park,No +B,0.16399999999999998,Garden,No +M,0.95,Neighborhood Park,No +X,0.7140000000000001,Playground,No +M,0.068,Garden,No +M,0.25,Mall,No +B,0.934,Jointly Operated Playground,No +M,0.095,Triangle/Plaza,No +Q,0.1,Garden,No +B,12.66,Managed Sites,No +M,0.385,Buildings/Institutions,No +Q,101.28,Community Park,No +B,798.0,Community Park,Yes +Q,55.023,Nature Area,Yes +B,0.004,Strip,No +B,2.3,Recreation Field/Courts,No +M,15.524000000000001,Community Park,No +Q,3.596,Jointly Operated Playground,No +Q,0.005,Triangle/Plaza,No +Q,72.75,Parkway,No +X,0.9179999999999999,Neighborhood Park,No +B,1.278,Playground,No +X,2.075,Jointly Operated Playground,No +M,0.08,Garden,No +M,0.021,Garden,No +R,26.531999999999996,Neighborhood Park,No +Q,1.37,Playground,No +Q,2.0269999999999997,Playground,No +B,1.5490000000000002,Jointly Operated Playground,No +X,4.385,Neighborhood Park,No +Q,0.002,Triangle/Plaza,No +B,1.0,Jointly Operated Playground,No +B,0.195,Triangle/Plaza,No +X,0.08800000000000001,Strip,No +Q,5.3229999999999995,Nature Area,Yes +B,0.11900000000000001,Garden,No +M,1.5930000000000002,Neighborhood Park,No +B,0.057999999999999996,Garden,No +B,2.387,Neighborhood Park,No +M,0.018000000000000002,Triangle/Plaza,No +X,0.659,Playground,No +R,3.259,Buildings/Institutions,No +B,0.10400000000000001,Garden,No +Q,1.35,Jointly Operated Playground,No +X,1.341,Playground,No +B,0.6940000000000001,Jointly Operated Playground,No +Q,2.096,Jointly Operated Playground,No +B,0.08199999999999999,Garden,No +B,0.008,Strip,No +B,1.76,Playground,No +M,0.65,Mall,No +B,0.02,Triangle/Plaza,No +B,58.0,Community Park,Yes +M,0.635,Neighborhood Park,No +Q,8.09,Neighborhood Park,Yes +X,1.053,Playground,No +M,0.5760000000000001,Neighborhood Park,No +Q,2.066,Recreation Field/Courts,No +X,0.13,Triangle/Plaza,No +B,0.9179999999999999,Community Park,No +X,1.222,Playground,No +Q,0.348,Undeveloped,No +R,1.375,Jointly Operated Playground,No +Q,897.69,Flagship Park,Yes +M,0.054000000000000006,Garden,No +B,77.181,Recreation Field/Courts,Yes +B,2.372,Playground,No +B,9.339,Community Park,No +B,2.29,Playground,No +M,0.35600000000000004,Waterfront Facility,Yes +B,0.02,Mall,No +Q,4.635,Community Park,No +B,0.21899999999999997,Garden,No +B,0.847,Playground,No +Q,0.047,Triangle/Plaza,No +Q,0.11800000000000001,Triangle/Plaza,No +Q,0.703,Neighborhood Park,No +M,0.763,Neighborhood Park,No +B,21.039,Community Park,Yes +B,0.489,Parkway,No +Q,1.045,Jointly Operated Playground,No +M,3.852,Jointly Operated Playground,No +B,0.091,Garden,No +B,42.583,Community Park,Yes +B,1.361,Neighborhood Park,No +X,0.9740000000000001,Playground,No +Q,0.46399999999999997,Undeveloped,No +X,0.025,Strip,Yes +B,1.6159999999999999,Jointly Operated Playground,No +X,0.16,Garden,No +B,1.187,Jointly Operated Playground,No +Q,9.16,Neighborhood Park,No +M,0.084,Garden,No +R,0.252,Garden,Yes +B,7.819,Community Park,No +B,0.05,Garden,No +X,0.115,Garden,No +R,178.47,Nature Area,Yes +Q,0.071,Triangle/Plaza,No +B,3.214,Neighborhood Park,No +X,0.11,Triangle/Plaza,No +X,0.636,Neighborhood Park,No +X,0.977,Jointly Operated Playground,No +R,3.903,Nature Area,No +B,1.51,Playground,No +B,0.752,Playground,No +M,0.054000000000000006,Garden,No +R,9.934,Neighborhood Park,Yes +Q,0.121,Garden,No +B,1.385,Neighborhood Park,No +R,1.777,Historic House Park,No +M,4.3,Community Park,No +M,0.883,Playground,No +R,145.935,Nature Area,No +B,0.019,Triangle/Plaza,No +B,36.493,Community Park,No +Q,0.47600000000000003,Playground,No +Q,3.4,Neighborhood Park,No +X,6.6,Nature Area,No +B,1.19,Neighborhood Park,No +M,0.42,Playground,No +X,9.238,Neighborhood Park,No +Q,2.456,Jointly Operated Playground,No +B,6.3,Parkway,No +M,0.483,Playground,No +Q,1.318,Jointly Operated Playground,No +X,15.99,Community Park,No +X,0.6809999999999999,Jointly Operated Playground,No +R,0.731,Undeveloped,Yes +Q,0.316,Strip,No +B,1.1,Jointly Operated Playground,No +M,2.15,Neighborhood Park,No +Q,1.161,Playground,No +Q,100.87299999999999,Community Park,No +Q,0.659,Recreation Field/Courts,No +B,0.06,Triangle/Plaza,No +B,1.4469999999999998,Jointly Operated Playground,No +M,0.249,Garden,No +B,0.934,Playground,No +X,413.8,Flagship Park,Yes +X,0.032,Undeveloped,No +B,0.161,Garden,No +B,0.37,Recreation Field/Courts,No +M,9.603,Neighborhood Park,No +M,0.061,Garden,No +M,0.38799999999999996,Garden,No +B,0.039,Garden,No +X,15.0,Neighborhood Park,No +B,0.003,Strip,No +B,1.056,Managed Sites,No +X,0.401,Playground,No +B,0.705,Playground,No +B,8.25,Neighborhood Park,No +Q,7.671,Community Park,No +Q,1.314,Playground,No +Q,1.2,Undeveloped,No +R,5.165,Community Park,No +B,0.46,Playground,No +X,0.16,Garden,No +Q,202.64700000000002,Parkway,No +M,1.369,Playground,No +B,1.17,Managed Sites,No +M,1.34,Jointly Operated Playground,No +R,1.3519999999999999,Recreation Field/Courts,No +X,0.006,Strip,No +X,1.4,Neighborhood Park,No +M,0.171,Garden,No +X,0.426,Neighborhood Park,Yes +M,0.156,Triangle/Plaza,No +B,0.10300000000000001,Garden,No +M,0.14400000000000002,Triangle/Plaza,No +R,0.006,Strip,No +B,0.5670000000000001,Playground,No +B,0.1,Triangle/Plaza,No +B,1.32,Neighborhood Park,No +B,21.377,Community Park,Yes +Q,0.065,Triangle/Plaza,No +B,0.152,Garden,No +M,0.20800000000000002,Buildings/Institutions,No +B,1.9340000000000002,Recreation Field/Courts,No +M,3.928,Neighborhood Park,No +R,3.0239999999999996,Neighborhood Park,No +Q,0.005,Strip,No +Q,0.069,Playground,No +Q,55.22,Community Park,Yes +B,0.004,Strip,No +Q,0.9420000000000001,Jointly Operated Playground,No +X,205.31,Flagship Park,Yes +M,0.013999999999999999,Triangle/Plaza,No +X,4.231,Waterfront Facility,Yes +M,3.312,Community Park,No +X,0.442,Playground,No +R,22.881999999999998,Nature Area,No +B,1.194,Jointly Operated Playground,No +M,0.051,Garden,No +Q,5.2,Neighborhood Park,No +B,10.555,Community Park,No +M,0.11,Garden,No +M,0.038,Triangle/Plaza,No +Q,0.005,Triangle/Plaza,No +B,0.129,Garden,No +Q,0.231,Buildings/Institutions,No +B,0.057,Garden,No +X,0.11599999999999999,Garden,No +M,1.228,Jointly Operated Playground,No +Q,0.76,Mall,No +M,1.494,Strip,No +R,1.6,Neighborhood Park,No +X,1.9040000000000001,Playground,No +B,0.183,Playground,No +B,0.019,Triangle/Plaza,No +Q,0.809,Jointly Operated Playground,No +B,6.7,Community Park,No +B,1.157,Jointly Operated Playground,No +B,0.135,Playground,No +B,0.205,Triangle/Plaza,No +X,9.395,Neighborhood Park,Yes +X,0.16,Triangle/Plaza,No +Q,56.831,Community Park,No +M,0.715,Jointly Operated Playground,No +Q,3.43,Undeveloped,Yes +M,0.134,Triangle/Plaza,No +M,0.22699999999999998,Triangle/Plaza,No +B,0.591,Neighborhood Park,No +X,0.494,Garden,No +B,0.114,Garden,No +R,0.5539999999999999,Nature Area,No +B,0.032,Triangle/Plaza,No +Q,0.518,Playground,No +M,0.045,Garden,No +X,0.17,Garden,No +B,0.10400000000000001,Garden,No +M,0.20600000000000002,Playground,No +B,140.0,Mall,No +B,0.076,Triangle/Plaza,No +Q,0.354,Triangle/Plaza,No +B,0.062,Garden,No +B,1.26,Playground,No +M,0.073,Triangle/Plaza,No +X,0.21,Triangle/Plaza,No +Q,0.02,Triangle/Plaza,No +B,1.38,Recreation Field/Courts,No +R,1.58,Historic House Park,No +Q,0.878,Jointly Operated Playground,No +Q,2.5,Community Park,No +B,1.2429999999999999,Jointly Operated Playground,No +B,0.115,Garden,No +M,0.039,Triangle/Plaza,No +B,1.2590000000000001,Jointly Operated Playground,No +M,2.759,Neighborhood Park,No +Q,0.05,Triangle/Plaza,No +M,0.04,Garden,No +B,0.172,Garden,No +Q,13.75,Neighborhood Park,Yes +B,1.7109999999999999,Triangle/Plaza,No +X,1.2,Playground,No +X,0.126,Triangle/Plaza,No +R,1.065,Jointly Operated Playground,No +M,45.88,Community Park,Yes +B,0.5379999999999999,Jointly Operated Playground,No +B,0.051,Triangle/Plaza,No +X,0.759,Undeveloped,No +M,0.079,Playground,No +M,0.882,Triangle/Plaza,No +R,52.375,Nature Area,No +R,644.35,Waterfront Facility,Yes +Q,249.389,Parkway,Yes +B,0.028999999999999998,Triangle/Plaza,No +Q,0.006,Undeveloped,No +M,0.295,Triangle/Plaza,No +Q,0.099,Triangle/Plaza,No +B,2.2640000000000002,Neighborhood Park,No +M,0.67,Playground,No +B,0.155,Triangle/Plaza,Yes +X,0.284,Playground,No +B,0.11599999999999999,Garden,No +Q,0.7040000000000001,Undeveloped,Yes +X,1.6230000000000002,Jointly Operated Playground,No +Q,4.427,Community Park,No +X,0.287,Playground,No +Q,19.555999999999997,Nature Area,Yes +X,206.717,Parkway,Yes +B,0.004,Strip,No +X,0.1,Triangle/Plaza,No +Q,1.21,Jointly Operated Playground,No +Q,1.719,Jointly Operated Playground,No +M,2.443,Community Park,No +X,0.9129999999999999,Jointly Operated Playground,No +R,0.735,Nature Area,No +B,0.955,Jointly Operated Playground,No +B,0.039,Triangle/Plaza,No +M,0.11800000000000001,Playground,No +Q,0.001,Strip,No +B,8.271,Neighborhood Park,No +M,0.043,Garden,No +Q,45.937,Community Park,No +Q,0.396,Triangle/Plaza,No +X,0.037000000000000005,Strip,No +B,0.23,Garden,No +X,0.12,Triangle/Plaza,No +M,1.239,Recreation Field/Courts,No +R,0.124,Cemetery,No +M,0.038,Garden,No +Q,1.439,Jointly Operated Playground,No +B,1.195,Triangle/Plaza,No +B,16.16,Community Park,No +M,66.693,Community Park,Yes +X,0.03,Undeveloped,No +Q,1.415,Neighborhood Park,No +Q,0.226,Cemetery,No +M,0.174,Playground,No +X,1.26,Recreation Field/Courts,No +B,0.106,Playground,No +Q,1.699,Jointly Operated Playground,No +B,30.168000000000003,Community Park,No +M,4.355,Neighborhood Park,No +M,0.6,Neighborhood Park,No +Q,0.023,Strip,No +B,1.3330000000000002,Jointly Operated Playground,No +X,0.138,Triangle/Plaza,No +R,16.505,Nature Area,No +X,1.054,Playground,No +B,1.252,Jointly Operated Playground,No +M,1.67,Neighborhood Park,No +X,0.083,Strip,No +M,0.051,Triangle/Plaza,No +X,1.28,Jointly Operated Playground,No +M,0.245,Jointly Operated Playground,No +B,1.13,Historic House Park,No +M,2.61,Playground,No +B,0.18100000000000002,Garden,No +X,0.12,Triangle/Plaza,No +B,1.5,Jointly Operated Playground,No +B,3.557,Neighborhood Park,No +B,0.068,Garden,No +M,4.35,Community Park,No +Q,149.54,Nature Area,Yes +Q,0.07400000000000001,Triangle/Plaza,No +B,0.057,Garden,No +B,1.371,Neighborhood Park,No +M,0.29,Buildings/Institutions,No +Q,171.2,Parkway,No +M,0.11900000000000001,Garden,No +B,0.436,Playground,No +X,0.743,Mall,No +B,0.026000000000000002,Parkway,No +B,0.773,Recreation Field/Courts,No +X,0.024,Triangle/Plaza,No +X,0.04,Triangle/Plaza,No +Q,0.084,Triangle/Plaza,No +Q,2.758,Neighborhood Park,No +B,526.25,Flagship Park,No +B,0.19,Garden,No +X,0.11,Garden,No +X,3.4,Recreation Field/Courts,No +B,0.213,Triangle/Plaza,No +X,1.016,Neighborhood Park,Yes +Q,104.6,Managed Sites,No +M,0.122,Playground,No +R,0.271,Neighborhood Park,No +M,0.268,Neighborhood Park,Yes +M,0.361,Garden,No +X,0.322,Jointly Operated Playground,No +B,0.6890000000000001,Jointly Operated Playground,No +Q,0.83,Triangle/Plaza,Yes +M,0.109,Garden,No +X,7.49,Nature Area,Yes +Q,0.27,Triangle/Plaza,No +B,0.23,Playground,No +Q,0.327,Playground,No +X,1.381,Neighborhood Park,No +M,0.052000000000000005,Garden,No +X,54.1,Parkway,No +B,0.06,Garden,No +X,0.09,Triangle/Plaza,No +B,0.705,Playground,No +Q,55.638999999999996,Community Park,No +R,2.21,Neighborhood Park,No +Q,6.28,Neighborhood Park,Yes +Q,2.937,Playground,No +Q,0.004,Strip,No +B,2.112,Neighborhood Park,No +X,0.336,Garden,No +M,1.3,Mall,No +B,4.32,Triangle/Plaza,No +M,0.436,Playground,No +M,0.231,Playground,No +B,0.102,Triangle/Plaza,No +Q,1.166,Jointly Operated Playground,No +Q,2.217,Neighborhood Park,No +B,64.665,Nature Area,Yes +B,1.101,Playground,No +Q,0.7859999999999999,Jointly Operated Playground,No +B,0.057999999999999996,Garden,No +B,2.656,Jointly Operated Playground,No +X,0.5489999999999999,Playground,No +B,0.32799999999999996,Playground,No +B,0.14,Garden,No +Q,1.297,Jointly Operated Playground,No +M,0.07200000000000001,Historic House Park,No +M,0.32,Triangle/Plaza,No +X,144.29,Nature Area,Yes +M,0.067,Triangle/Plaza,No +B,0.086,Garden,No +X,1.682,Mall,No +B,1.649,Cemetery,No +R,217.45,Nature Area,Yes +X,0.344,Playground,No +Q,0.46,Recreation Field/Courts,No +B,0.081,Garden,No +M,1.24,Playground,No +Q,0.159,Triangle/Plaza,Yes +R,107.57600000000001,Undeveloped,No +Q,0.10400000000000001,Triangle/Plaza,No +X,0.11699999999999999,Triangle/Plaza,No +Q,1.71,Triangle/Plaza,No +B,1.8159999999999998,Neighborhood Park,No +Q,22.6,Neighborhood Park,Yes +B,1.65,Recreation Field/Courts,No +Q,0.25,Triangle/Plaza,No +Q,11.788,Neighborhood Park,No +M,0.095,Triangle/Plaza,No +B,2.289,Neighborhood Park,No +M,1.59,Triangle/Plaza,No +X,0.47700000000000004,Jointly Operated Playground,No +X,0.023,Strip,No +R,0.113,Strip,No +X,0.972,Neighborhood Park,No +X,3.301,Neighborhood Park,No +B,1.38,Playground,Yes +X,1.11,Triangle/Plaza,No +R,214.947,Nature Area,No +X,15.32,Neighborhood Park,No +X,0.023,Strip,No +R,4.22,Nature Area,No +B,2.9389999999999996,Neighborhood Park,No +Q,1.9780000000000002,Neighborhood Park,No +B,1.547,Jointly Operated Playground,No +R,104.545,Waterfront Facility,Yes +B,0.15,Triangle/Plaza,No +Q,0.094,Triangle/Plaza,No +M,0.23,Mall,No +M,0.222,Triangle/Plaza,No +B,0.687,Garden,No +B,10.384,Neighborhood Park,No +B,1.29,Community Park,No +B,0.091,Garden,No +M,0.061,Garden,No +B,0.149,Garden,No +B,0.59,Playground,No +B,47.57,Buildings/Institutions,No +B,0.165,Garden,No +B,0.579,Playground,No +B,0.09300000000000001,Triangle/Plaza,No +R,0.033,Triangle/Plaza,No +Q,2.003,Jointly Operated Playground,No +M,17.581,Buildings/Institutions,No +X,229.14,Parkway,No +Q,7.683,Community Park,No +Q,3.8139999999999996,Jointly Operated Playground,No +M,1.27,Jointly Operated Playground,No +B,0.065,Garden,No +X,0.618,Playground,No +M,0.129,Garden,No +Q,40.07,Community Park,Yes +X,0.17,Triangle/Plaza,No +X,0.326,Triangle/Plaza,No +X,0.22699999999999998,Garden,No +B,0.36700000000000005,Playground,No +M,0.38,Garden,No +Q,2.035,Jointly Operated Playground,No +M,1.89,Neighborhood Park,No +B,0.115,Garden,No +M,0.063,Garden,No +Q,0.247,Cemetery,No +Q,0.044000000000000004,Triangle/Plaza,No +B,0.13,Garden,No +M,3.9,Playground,No +R,12.247,Buildings/Institutions,No +M,0.052000000000000005,Garden,No +R,2.476,Cemetery,No +X,0.248,Garden,No +R,3.593,Jointly Operated Playground,No +Q,3.8089999999999997,Waterfront Facility,Yes +B,8.807,Buildings/Institutions,Yes +X,0.006999999999999999,Strip,No +Q,0.551,Playground,No +M,1.43,Community Park,No +Q,0.8170000000000001,Buildings/Institutions,No +Q,0.185,Mall,No +X,8.834,Neighborhood Park,Yes +B,2.3,Neighborhood Park,No +M,170.7,Recreation Field/Courts,Yes +M,0.10400000000000001,Garden,No +Q,0.048,Cemetery,No +Q,0.8759999999999999,Jointly Operated Playground,No +M,0.26899999999999996,Triangle/Plaza,No +B,0.032,Garden,No +B,54.78,Nature Area,Yes +M,0.489,Neighborhood Park,No +Q,0.02,Strip,No +B,1.24,Playground,No +B,0.9179999999999999,Jointly Operated Playground,No +X,0.114,Garden,No +X,1.186,Jointly Operated Playground,No +Q,13.825999999999999,Triangle/Plaza,Yes +M,0.14,Garden,No +X,0.94,Playground,No +R,32.153,Nature Area,No +Q,1.722,Neighborhood Park,No +Q,37.95,Nature Area,Yes +Q,1.4269999999999998,Playground,No +Q,3.622,Recreation Field/Courts,Yes +B,39.5,Recreation Field/Courts,No +X,1.0,Playground,No +Q,0.003,Triangle/Plaza,No +B,0.068,Garden,No +X,1.597,Jointly Operated Playground,No +B,0.7390000000000001,Playground,No +B,0.09699999999999999,Triangle/Plaza,No +Q,3.735,Neighborhood Park,No +B,0.10400000000000001,Garden,No +X,1.88,Buildings/Institutions,No +M,0.059000000000000004,Garden,No +B,3.201,Community Park,No +X,11.39,Neighborhood Park,No +X,0.06,Triangle/Plaza,No +Q,0.759,Playground,No +B,0.068,Garden,No +R,5.765,Nature Area,No +B,2.0869999999999997,Jointly Operated Playground,No +M,1.984,Neighborhood Park,Yes +B,0.92,Triangle/Plaza,No +B,0.983,Undeveloped,No +M,0.525,Jointly Operated Playground,No +X,0.82,Neighborhood Park,No +B,16.8,Neighborhood Park,No +B,0.125,Playground,No +X,0.7440000000000001,Playground,No +Q,0.142,Undeveloped,No +B,0.011000000000000001,Triangle/Plaza,No +M,0.11599999999999999,Garden,No +M,46.657,Parkway,Yes +X,44.174,Community Park,No +X,1.205,Jointly Operated Playground,No +M,0.402,Jointly Operated Playground,No +Q,0.01,Triangle/Plaza,No +X,0.68,Jointly Operated Playground,No +X,0.667,Strip,No +B,0.165,Garden,No +X,0.207,Garden,No +B,1.702,Lot,No +X,0.313,Triangle/Plaza,No +Q,1.033,Neighborhood Park,No +B,0.48,Triangle/Plaza,No +X,1.001,Playground,No +Q,0.6579999999999999,Triangle/Plaza,No +Q,0.17,Triangle/Plaza,No +B,0.19699999999999998,Playground,No +M,0.17,Buildings/Institutions,No +B,0.025,Garden,No +M,0.096,Garden,No +Q,1.0759999999999998,Jointly Operated Playground,No +M,0.738,Jointly Operated Playground,No +B,6.235,Recreation Field/Courts,No +M,0.076,Triangle/Plaza,No +B,0.9179999999999999,Neighborhood Park,No +X,0.94,Playground,No +B,0.063,Garden,No +M,0.18600000000000003,Garden,No +M,0.9940000000000001,Triangle/Plaza,No +X,0.34,Garden,No +B,0.258,Mall,No +B,1.061,Jointly Operated Playground,No +X,0.342,Neighborhood Park,No +X,0.38,Triangle/Plaza,No +R,2.056,Undeveloped,No +M,0.35100000000000003,Triangle/Plaza,No +B,0.115,Garden,No +X,0.207,Playground,No +B,6.611000000000001,Neighborhood Park,Yes +X,0.764,Nature Area,No +Q,0.467,Triangle/Plaza,No +B,0.037000000000000005,Garden,No +Q,0.036000000000000004,Triangle/Plaza,No +M,0.165,Triangle/Plaza,No +B,1.032,Playground,No +M,256.111,Flagship Park,Yes +M,0.625,Triangle/Plaza,No +B,0.057,Triangle/Plaza,No +R,286.382,Nature Area,Yes +R,15.368,Nature Area,Yes +Q,0.10099999999999999,Playground,No +B,1.595,Jointly Operated Playground,No +M,0.192,Playground,No +M,0.9470000000000001,Jointly Operated Playground,No +R,1.324,Neighborhood Park,No +X,9.488,Lot,No +X,1.32,Jointly Operated Playground,No +B,77.044,Nature Area,Yes +B,6.401,Neighborhood Park,No +X,1.02,Playground,No +Q,23.543000000000003,Community Park,No +M,0.187,Triangle/Plaza,No +M,0.688,Playground,No +Q,1.206,Jointly Operated Playground,No +X,0.201,Playground,No +X,4.0,Neighborhood Park,No +X,0.096,Playground,No +B,0.89,Jointly Operated Playground,No +R,4.605,Waterfront Facility,Yes +Q,0.10099999999999999,Triangle/Plaza,No +M,196.398,Community Park,Yes +Q,2.2,Neighborhood Park,No +B,4.044,Playground,No +M,0.048,Garden,No +Q,0.018000000000000002,Triangle/Plaza,No +M,0.12300000000000001,Garden,No +M,0.023,Garden,No +Q,47.08,Managed Sites,No +M,0.789,Neighborhood Park,No +Q,0.08199999999999999,Strip,No +X,0.16699999999999998,Parkway,No +B,0.091,Garden,No +X,2.331,Playground,No +B,0.057999999999999996,Triangle/Plaza,No +M,0.034,Garden,No +M,0.122,Garden,No +R,0.892,Jointly Operated Playground,No +M,0.092,Triangle/Plaza,No +Q,1.025,Jointly Operated Playground,No +M,28.434,Community Park,Yes +R,5.188,Nature Area,No +M,0.44799999999999995,Triangle/Plaza,No +M,0.851,Jointly Operated Playground,No +B,0.20600000000000002,Jointly Operated Playground,No +B,0.9329999999999999,Jointly Operated Playground,No +Q,0.49200000000000005,Triangle/Plaza,No +X,2.537,Jointly Operated Playground,No +B,1.315,Jointly Operated Playground,No +X,1.882,Jointly Operated Playground,No +R,1.43,Triangle/Plaza,No +M,20.132,Community Park,No +B,1.003,Playground,No +X,0.316,Playground,No +Q,13.894,Nature Area,No +Q,0.315,Triangle/Plaza,No +B,0.073,Garden,No +B,0.177,Garden,No +X,3.85,Neighborhood Park,No +X,0.12,Garden,No +B,1.08,Undeveloped,No +Q,0.18,Garden,No +X,1.13,Managed Sites,Yes +Q,0.057,Garden,No +B,0.172,Garden,No +X,2.5,Neighborhood Park,No +Q,0.32,Triangle/Plaza,No +X,0.529,Playground,No +M,2.13,Parkway,No +B,0.996,Playground,No +M,2.752,Neighborhood Park,No +M,0.094,Triangle/Plaza,No +Q,0.054000000000000006,Triangle/Plaza,No +M,0.40299999999999997,Neighborhood Park,No +X,1146.43,Flagship Park,No +R,0.845,Nature Area,No +X,0.43,Garden,No +Q,0.978,Neighborhood Park,No +X,0.82,Playground,No +B,0.868,Jointly Operated Playground,No +M,1.383,Neighborhood Park,No +B,24.218000000000004,Neighborhood Park,No +M,0.192,Triangle/Plaza,No +M,0.1,Garden,No +Q,0.051,Triangle/Plaza,No +Q,1.31,Playground,No +M,0.05,Garden,No +X,0.36,Triangle/Plaza,No +Q,0.254,Triangle/Plaza,No +B,0.114,Garden,No +B,10.390999999999998,Community Park,No +Q,3.4,Strip,No +B,4.525,Neighborhood Park,Yes +R,760.79,Flagship Park,No +Q,1.016,Jointly Operated Playground,No +M,0.669,Neighborhood Park,No +B,0.249,Garden,No +B,0.332,Garden,No +X,0.017,Triangle/Plaza,No +Q,1.48,Jointly Operated Playground,No +M,0.97,Neighborhood Park,No +Q,1.598,Playground,No +B,1.5,Neighborhood Park,No +B,0.045,Triangle/Plaza,No +B,3.023,Jointly Operated Playground,No +Q,1.993,Undeveloped,No +X,0.76,Garden,No +B,0.052000000000000005,Triangle/Plaza,No +B,45.059,Flagship Park,No +M,0.8909999999999999,Jointly Operated Playground,No +X,0.461,Playground,No +B,1.06,Jointly Operated Playground,No +Q,9.154,Community Park,No +X,8.005,Nature Area,Yes +B,1.6480000000000001,Playground,No +M,0.8109999999999999,Playground,No +R,1.6,Playground,No +B,0.057,Garden,No +M,0.057,Garden,No +Q,0.09,Triangle/Plaza,No +B,0.28,Garden,No +X,1.51,Jointly Operated Playground,No +M,840.01,Flagship Park,No +Q,2.8569999999999998,Playground,No +M,0.345,Triangle/Plaza,No +R,10.5,Community Park,No +M,0.684,Playground,No +M,0.106,Garden,No +X,0.009000000000000001,Triangle/Plaza,No +X,0.141,Playground,No +Q,0.166,Triangle/Plaza,No +B,0.565,Playground,No +M,0.135,Playground,No +Q,1.492,Garden,No +M,0.069,Garden,No +Q,0.98,Jointly Operated Playground,No +M,0.551,Jointly Operated Playground,No +B,63.636,Parkway,No +B,0.09,Parkway,No +B,1.8359999999999999,Recreation Field/Courts,No +Q,0.22,Triangle/Plaza,No +B,1.033,Jointly Operated Playground,No +X,1.23,Jointly Operated Playground,No +M,1.5,Community Park,No +Q,1.479,Jointly Operated Playground,No +X,0.92,Jointly Operated Playground,No +B,3.214,Neighborhood Park,No +M,0.267,Garden,No +M,0.11699999999999999,Triangle/Plaza,No +B,0.04,Garden,No +X,0.9109999999999999,Playground,No +B,7.79,Neighborhood Park,No +X,0.511,Undeveloped,No +R,34.689,Nature Area,Yes +B,0.41,Garden,No +B,58.503,Community Park,Yes +Q,0.115,Garden,No +B,1.581,Playground,No +B,2.783,Jointly Operated Playground,No +Q,0.004,Triangle/Plaza,No +B,0.23,Garden,No +X,0.032,Garden,No +B,0.8,Mall,No +Q,1.2009999999999998,Playground,No +B,0.9129999999999999,Playground,No +B,1.187,Neighborhood Park,No +Q,1.051,Jointly Operated Playground,No +Q,0.452,Buildings/Institutions,No +X,8.972000000000001,Neighborhood Park,No +B,0.21100000000000002,Garden,No +M,1.254,Neighborhood Park,No +B,0.039,Garden,No +B,0.025,Triangle/Plaza,No +X,0.8170000000000001,Playground,No +X,1.815,Jointly Operated Playground,No +Q,1.226,Recreation Field/Courts,No +B,0.214,Triangle/Plaza,No +Q,109.609,Community Park,No +X,0.042,Undeveloped,No +M,0.446,Triangle/Plaza,No +Q,2.2430000000000003,Jointly Operated Playground,No +X,0.27,Playground,No +X,1.107,Jointly Operated Playground,No +M,0.03,Triangle/Plaza,No +Q,1.48,Jointly Operated Playground,No +B,0.3,Garden,No +Q,18.768,Recreation Field/Courts,Yes +Q,0.32299999999999995,Neighborhood Park,No +R,4.465,Nature Area,No +B,0.149,Garden,No +X,0.32899999999999996,Buildings/Institutions,No +Q,17.0,Community Park,No +B,0.9179999999999999,Neighborhood Park,No +Q,0.08,Triangle/Plaza,No +B,0.057,Garden,No +B,0.406,Playground,No +X,8.75,Mall,No +M,0.095,Triangle/Plaza,No +R,1.922,Jointly Operated Playground,No +B,2.944,Recreation Field/Courts,Yes +Q,0.024,Triangle/Plaza,No +B,2.117,Playground,No +Q,0.145,Mall,No +Q,2.69,Recreation Field/Courts,No +M,0.7490000000000001,Neighborhood Park,No +Q,0.5529999999999999,Mall,No +M,0.8370000000000001,Jointly Operated Playground,No +X,0.44,Undeveloped,No +M,7.782,Waterfront Facility,Yes +B,0.002,Strip,No +M,0.622,Playground,No +M,1.7,Jointly Operated Playground,No +R,0.049,Undeveloped,No +X,2.944,Playground,No +B,1.23,Jointly Operated Playground,No +X,0.028999999999999998,Garden,No +R,6.563,Nature Area,No +R,0.96,Undeveloped,No +Q,110.93,Managed Sites,No +Q,27.484,Nature Area,Yes +B,0.155,Playground,No +Q,635.514,Flagship Park,Yes +X,0.12,Triangle/Plaza,No +R,0.006,Strip,No +M,0.134,Recreation Field/Courts,No +Q,3.076,Neighborhood Park,No +B,1.43,Neighborhood Park,No +B,0.083,Garden,No +M,13.35,Neighborhood Park,No +R,0.3,Triangle/Plaza,No +B,3.449,Neighborhood Park,No +M,0.11,Garden,No +Q,0.778,Garden,No +Q,0.318,Undeveloped,No +X,0.267,Playground,No +B,1.171,Neighborhood Park,No +B,0.327,Playground,No +X,1.82,Playground,No +M,1.64,Community Park,No +M,0.35,Garden,No +Q,2.524,Neighborhood Park,No +B,0.9179999999999999,Garden,No +X,22.07,Managed Sites,Yes +R,0.9490000000000001,Jointly Operated Playground,No +B,0.44,Garden,No +X,0.18600000000000003,Playground,No +Q,1.16,Jointly Operated Playground,No +M,0.68,Recreation Field/Courts,No +R,36.691,Nature Area,No +R,0.49,Playground,No +M,0.08,Triangle/Plaza,No +M,0.39,Garden,No +M,14.937999999999999,Neighborhood Park,Yes +Q,3.258,Recreation Field/Courts,No +Q,0.5820000000000001,Neighborhood Park,No +M,0.21,Triangle/Plaza,No +Q,0.008,Triangle/Plaza,No +Q,5.593,Recreation Field/Courts,No +Q,45.79,Community Park,No +X,0.025,Strip,No +B,1.93,Recreation Field/Courts,No +X,0.5,Parkway,No +Q,0.040999999999999995,Triangle/Plaza,No +B,0.145,Garden,No +M,0.607,Recreation Field/Courts,No +Q,1.47,Playground,No +R,83.3,Historic House Park,Yes +Q,2.872,Neighborhood Park,No +B,1.17,Jointly Operated Playground,No +M,0.15,Garden,No +R,94.1,Nature Area,No +M,1.139,Mall,No +R,0.85,Triangle/Plaza,No +B,0.475,Garden,No +B,8.565,Neighborhood Park,No +Q,0.03,Triangle/Plaza,No +Q,0.008,Triangle/Plaza,No +Q,5.84399754,Neighborhood Park,Yes +B,0.281,Parkway,No +Q,1.239,Jointly Operated Playground,No +Q,0.44799999999999995,Neighborhood Park,No +X,0.637,Jointly Operated Playground,No +Q,1.035,Triangle/Plaza,No +B,1.23,Jointly Operated Playground,No +M,0.018000000000000002,Triangle/Plaza,No +B,0.11,Garden,No +R,1.115,Neighborhood Park,No +Q,111.163,Nature Area,Yes +B,0.067,Triangle/Plaza,No +B,1.195,Jointly Operated Playground,No +X,3.3480000000000003,Playground,No +R,13.937999999999999,Neighborhood Park,Yes +M,0.366,Triangle/Plaza,No +M,0.11699999999999999,Garden,No +Q,1.2770000000000001,Jointly Operated Playground,No +X,0.16,Triangle/Plaza,No +B,1.3630000000000002,Neighborhood Park,No +X,0.15,Garden,No +M,0.033,Garden,No +Q,5.1,Neighborhood Park,No +M,2.445,Recreation Field/Courts,No +R,193.423,Community Park,No +X,6.1,Recreation Field/Courts,Yes +R,0.159,Triangle/Plaza,No +X,6.882000000000001,Community Park,No +M,0.115,Garden,No +Q,1.785,Neighborhood Park,No +R,2.8360000000000003,Jointly Operated Playground,No +Q,16.831,Neighborhood Park,Yes +M,0.242,Triangle/Plaza,No +B,3.56,Community Park,No +M,1.0,Neighborhood Park,No +Q,498.154,Waterfront Facility,Yes +X,1.646,Playground,No +Q,1.285,Managed Sites,No +M,0.456,Playground,No +B,6.05,Jointly Operated Playground,No +R,1.78,Nature Area,No +Q,0.6859999999999999,Jointly Operated Playground,No +M,0.882,Jointly Operated Playground,No +B,6.379,Neighborhood Park,No +Q,0.318,Recreation Field/Courts,No +B,0.08,Parkway,No +B,0.08199999999999999,Garden,No +Q,0.09,Mall,No +B,0.256,Playground,No +Q,0.935,Jointly Operated Playground,No +M,0.9,Recreation Field/Courts,No +M,0.046,Garden,No +R,0.7240000000000001,Neighborhood Park,No +Q,0.214,Triangle/Plaza,No +M,0.209,Triangle/Plaza,No +Q,5.82,Neighborhood Park,Yes +Q,180.85,Nature Area,No +M,3.233,Playground,No +X,7.84,Neighborhood Park,No +B,0.191,Garden,No +B,0.429,Playground,No +B,2.064,Mall,No +X,1.025,Playground,No +Q,0.012,Strip,No +B,0.67,Community Park,No +B,0.11,Triangle/Plaza,No +Q,2.2,Jointly Operated Playground,No +X,0.7,Playground,No +Q,1.29985643,Jointly Operated Playground,No +X,0.722,Jointly Operated Playground,No +B,2.9130000000000003,Triangle/Plaza,No +B,3.403,Jointly Operated Playground,No +B,0.22899999999999998,Garden,No +X,7.7379999999999995,Recreation Field/Courts,No +B,0.826,Community Park,No +X,0.36700000000000005,Playground,No +R,0.11,Undeveloped,No +B,3.03,Neighborhood Park,No +M,0.252,Neighborhood Park,No +B,0.295,Playground,No +B,1.148,Neighborhood Park,No +B,216.655,Community Park,No +M,184.143,Community Park,Yes +X,0.1,Triangle/Plaza,No +X,4.359,Neighborhood Park,No +X,8.607000000000001,Community Park,No +B,0.975,Lot,No +B,85.527,Recreation Field/Courts,Yes +Q,0.961,Garden,No +Q,1.8030000000000002,Mall,No +Q,0.249,Undeveloped,No +Q,0.581,Neighborhood Park,No +Q,8.833,Jointly Operated Playground,No +M,6.51,Community Park,No +Q,2.7,Jointly Operated Playground,No +X,7.156000000000001,Neighborhood Park,Yes +M,0.04,Garden,No +Q,1.206,Jointly Operated Playground,No +Q,1.25,Jointly Operated Playground,No +R,3.77,Nature Area,No +Q,0.047,Triangle/Plaza,No +M,0.043,Triangle/Plaza,No +Q,0.02,Strip,No +B,0.9470000000000001,Parkway,No +M,0.096,Recreation Field/Courts,No +B,0.002,Strip,No +Q,0.002,Strip,No +M,0.02,Garden,No +Q,0.135,Mall,No +X,0.28,Triangle/Plaza,No +Q,0.13,Triangle/Plaza,No +B,0.09699999999999999,Garden,No +X,4.637,Neighborhood Park,No +B,0.052000000000000005,Garden,No +Q,0.045,Triangle/Plaza,No +Q,1.05,Playground,No +B,1.3,Neighborhood Park,No +X,0.345,Recreation Field/Courts,No +B,0.391,Garden,No +Q,0.29,Buildings/Institutions,No +R,3.014,Neighborhood Park,No +M,0.07,Triangle/Plaza,No +B,0.073,Garden,No +B,1.56,Neighborhood Park,No +R,1.53,Nature Area,No +X,1.0,Jointly Operated Playground,No +X,2.136,Neighborhood Park,No +B,0.546,Garden,No +X,0.171,Garden,No +X,1.7930000000000001,Jointly Operated Playground,No +X,0.12,Triangle/Plaza,No +Q,3.673,Jointly Operated Playground,No +M,1.6909999999999998,Jointly Operated Playground,No +R,91.086,Nature Area,No +R,2.335,Neighborhood Park,No +B,1.041,Neighborhood Park,No +R,16.93,Nature Area,No +B,0.13699999999999998,Garden,No +B,132.2,Community Park,Yes +M,0.991,Community Park,No +Q,0.457,Neighborhood Park,No +Q,1.754,Undeveloped,No +X,0.272,Garden,No +B,0.06,Triangle/Plaza,No +B,0.915,Jointly Operated Playground,No +X,0.187,Triangle/Plaza,No +B,0.057,Garden,No +M,0.423,Triangle/Plaza,No +Q,0.205,Garden,No +B,0.045,Garden,No +B,0.07,Triangle/Plaza,No +X,0.31,Triangle/Plaza,No +B,0.231,Neighborhood Park,No +B,0.013000000000000001,Triangle/Plaza,No +Q,1.429,Mall,No +X,0.03,Strip,No +M,0.057999999999999996,Garden,No +Q,0.375,Strip,No +R,3.23,Jointly Operated Playground,No +X,0.903,Neighborhood Park,No +X,0.028999999999999998,Strip,No +Q,0.062,Triangle/Plaza,No +B,1.37,Jointly Operated Playground,No +B,0.237,Recreation Field/Courts,No +X,0.41200000000000003,Jointly Operated Playground,No +R,2.889,Neighborhood Park,No +B,1.187,Neighborhood Park,No +M,2.3,Parkway,No +M,0.16899999999999998,Garden,No +Q,2.719,Jointly Operated Playground,No +Q,2.043,Neighborhood Park,No +X,1.0,Triangle/Plaza,No +M,0.057,Garden,No +R,210.928,Nature Area,No +X,1.95,Neighborhood Park,No +B,2.427,Neighborhood Park,No +X,1.7069999999999999,Recreation Field/Courts,No +M,5.605,Mall,No +Q,0.207,Triangle/Plaza,No +X,10.735,Nature Area,No +B,0.001,Triangle/Plaza,No +M,0.086,Garden,No +Q,0.8340000000000001,Triangle/Plaza,No +M,0.203,Triangle/Plaza,No +B,0.7340000000000001,Historic House Park,No +X,0.436,Playground,No +M,1.016,Triangle/Plaza,No +B,0.043,Garden,No +X,127.5,Flagship Park,No +B,0.622,Playground,No +R,205.977,Managed Sites,No +X,0.44,Garden,Yes +X,1.16,Garden,Yes +Q,0.001,Strip,No +B,1.034,Neighborhood Park,No +M,0.517,Playground,No +Q,0.565,Triangle/Plaza,No +X,3.02,Playground,No +B,0.081,Garden,No +X,2.181,Community Park,No +Q,0.9,Playground,No +X,1.871,Neighborhood Park,No +B,17.5,Recreation Field/Courts,Yes +B,118.795,Nature Area,Yes +M,0.172,Playground,No +M,1.58,Jointly Operated Playground,No +Q,31.5,Waterfront Facility,Yes +B,0.10300000000000001,Garden,No +B,0.068,Triangle/Plaza,No +B,0.191,Triangle/Plaza,No +M,5.756,Recreation Field/Courts,No +X,0.32,Garden,No +B,0.06,Garden,No +X,0.10099999999999999,Garden,No +B,0.004,Strip,No +Q,1.071,Jointly Operated Playground,No +B,0.444,Jointly Operated Playground,No +Q,0.46,Recreation Field/Courts,No +X,0.7120000000000001,Jointly Operated Playground,No +X,0.07200000000000001,Triangle/Plaza,No +Q,0.23,Neighborhood Park,No +B,0.225,Garden,No +Q,59.956,Community Park,Yes +X,0.102,Strip,No +X,4.926,Community Park,No +B,0.321,Garden,No +X,0.455,Historic House Park,No +X,0.977,Playground,No +M,0.08199999999999999,Garden,No +R,1.681,Jointly Operated Playground,No +M,4.623,Mall,No +M,0.12,Triangle/Plaza,No +B,0.091,Garden,No +X,1.0,Playground,No +Q,166.71,Waterfront Facility,Yes +X,0.344,Garden,No +R,87.516,Nature Area,Yes +X,83.615,Nature Area,Yes +Q,0.185,Triangle/Plaza,No +B,0.32,Triangle/Plaza,No +B,0.682,Jointly Operated Playground,No +B,0.736,Parkway,No +B,5.888,Jointly Operated Playground,No +M,1.143,Neighborhood Park,No +M,20.165,Community Park,No +R,6.402,Nature Area,No +Q,1.5019999999999998,Playground,No +M,0.066,Garden,No +R,5.848,Parkway,No +X,0.2,Triangle/Plaza,No +R,3.195,Buildings/Institutions,No +B,0.585,Neighborhood Park,No +Q,1.652,Mall,No +X,0.52,Triangle/Plaza,No +B,0.907,Jointly Operated Playground,No +X,12.224,Neighborhood Park,Yes +M,0.563,Jointly Operated Playground,No +Q,0.42100000000000004,Triangle/Plaza,No +B,0.061,Garden,No +B,0.113,Strip,No +X,0.131,Garden,No +M,0.115,Triangle/Plaza,No +Q,0.1,Triangle/Plaza,No +R,1.37,Playground,No +M,0.653,Playground,No +B,4.945,Neighborhood Park,No +B,0.43799999999999994,Parkway,No +B,760.43,Parkway,Yes +M,67.21300000000001,Community Park,No +Q,1.013,Jointly Operated Playground,No +B,399.473,Waterfront Facility,Yes +X,0.09,Mall,No +B,0.091,Garden,No +Q,5.43,Neighborhood Park,No +B,0.08900000000000001,Garden,No +M,0.728,Triangle/Plaza,No +Q,2.948,Community Park,No +M,1.524,Historic House Park,No +Q,7.122000000000001,Neighborhood Park,Yes +M,0.04,Triangle/Plaza,No +Q,0.514,Playground,No +Q,2.98,Neighborhood Park,No +R,9.2,Nature Area,No +B,0.203,Garden,No +X,0.061,Undeveloped,No +Q,0.10800000000000001,Garden,No +B,2.326,Jointly Operated Playground,No +X,0.5920000000000001,Undeveloped,No +B,17.14,Community Park,No +B,6.7,Community Park,No +R,4.3389999999999995,Community Park,Yes +Q,0.011000000000000001,Triangle/Plaza,No +B,1.821,Neighborhood Park,No +B,0.11199999999999999,Triangle/Plaza,No +X,0.15,Strip,No +B,2.9819999999999998,Playground,No +B,0.032,Garden,No +M,0.055999999999999994,Triangle/Plaza,No +B,3.083,Waterfront Facility,Yes +B,0.312,Triangle/Plaza,No +B,1.8940000000000001,Neighborhood Park,No +M,0.85,Triangle/Plaza,Yes +M,1.093,Playground,No +M,2.436,Buildings/Institutions,No +Q,0.809,Jointly Operated Playground,No +M,29.888,Community Park,No +X,0.1,Triangle/Plaza,No +B,0.8,Jointly Operated Playground,No +X,0.07,Garden,No +Q,0.138,Triangle/Plaza,No +Q,0.207,Playground,No +M,0.11,Garden,No +R,1.178,Undeveloped,No +X,0.064,Garden,No +M,0.028999999999999998,Garden,No +Q,0.8959999999999999,Neighborhood Park,No +B,0.065,Garden,No +X,0.67,Playground,No +M,6.234,Neighborhood Park,No +B,0.139,Triangle/Plaza,No +B,0.067,Triangle/Plaza,No +R,173.99400000000003,Managed Sites,No +B,0.762,Parkway,No +X,11.57,Neighborhood Park,Yes +Q,0.083,Garden,No +Q,1.964,Jointly Operated Playground,No +M,0.059000000000000004,Triangle/Plaza,No +Q,0.003,Strip,No +M,0.17800000000000002,Garden,No +M,0.163,Garden,No +Q,0.3,Triangle/Plaza,No +X,1.194,Lot,No +M,0.03,Garden,No +B,1.3630000000000002,Playground,No +M,0.266,Playground,No +X,0.83,Jointly Operated Playground,No +B,1.095,Jointly Operated Playground,No +Q,0.027999999999999997,Triangle/Plaza,No +B,2.295,Neighborhood Park,No +B,2.76,Neighborhood Park,No +M,0.034,Garden,No +B,1.072,Neighborhood Park,No +B,0.467,Playground,No +Q,1.085,Jointly Operated Playground,No +M,0.267,Triangle/Plaza,No +B,0.9179999999999999,Jointly Operated Playground,No +X,0.381,Playground,No +B,1.093,Triangle/Plaza,No +B,0.11699999999999999,Garden,No +X,0.03,Strip,No +B,0.017,Triangle/Plaza,No +B,1.2109999999999999,Jointly Operated Playground,No +B,8.892000000000001,Nature Area,Yes +M,0.047,Triangle/Plaza,No +Q,0.113,Triangle/Plaza,No +B,1.976,Recreation Field/Courts,No +M,2.32,Recreation Field/Courts,No +X,0.213,Triangle/Plaza,No +B,1.056,Neighborhood Park,No +B,0.319,Playground,No +B,14.257,Triangle/Plaza,No +X,0.038,Strip,No +M,0.18600000000000003,Triangle/Plaza,No +B,0.046,Garden,No +M,130.1,Community Park,Yes +M,6.73,Community Park,No +X,0.008,Strip,No +X,0.7170000000000001,Jointly Operated Playground,No +Q,0.46,Recreation Field/Courts,No +B,0.93,Parkway,No +R,1.307,Jointly Operated Playground,No +X,0.782,Jointly Operated Playground,No +Q,2.5540000000000003,Jointly Operated Playground,No +X,1.395,Triangle/Plaza,No +B,0.293,Playground,No +M,0.25,Garden,No +Q,1.35,Jointly Operated Playground,No +R,302.693,Community Park,Yes +B,1.6869999999999998,Jointly Operated Playground,No +B,0.275,Garden,No +R,2.057,Playground,No +B,0.536,Jointly Operated Playground,No +M,0.525,Neighborhood Park,No +X,2.25,Undeveloped,Yes +X,0.19,Garden,No +B,0.32,Garden,No +X,0.19,Garden,No +Q,0.04,Triangle/Plaza,No +B,1.67,Jointly Operated Playground,No +B,0.8959999999999999,Playground,No +X,0.136,Triangle/Plaza,No +X,3.5,Jointly Operated Playground,No +B,0.10099999999999999,Garden,No +R,4.096,Jointly Operated Playground,No +R,9.181000000000001,Nature Area,Yes +M,3.089,Parkway,Yes +Q,0.867,Neighborhood Park,No +Q,2.059,Jointly Operated Playground,No +Q,0.008,Strip,No +X,0.12,Undeveloped,No +X,0.054000000000000006,Triangle/Plaza,No +Q,1.052,Jointly Operated Playground,No +Q,0.13699999999999998,Mall,No +B,0.525,Garden,No +Q,0.126,Triangle/Plaza,No +M,1.227,Neighborhood Park,No +M,0.06,Garden,No +Q,1.304,Jointly Operated Playground,No +Q,5.4,Community Park,No +X,1.053,Jointly Operated Playground,No +Q,0.005,Strip,No +M,0.8340000000000001,Jointly Operated Playground,No +Q,0.2,Triangle/Plaza,No +B,0.002,Strip,No +B,2.391,Buildings/Institutions,No +X,0.13,Garden,No +B,0.07,Triangle/Plaza,No +M,0.087,Garden,No +X,0.059000000000000004,Triangle/Plaza,No +Q,12.624,Waterfront Facility,Yes +B,0.165,Garden,No +X,1.274,Recreation Field/Courts,No +R,0.636,Playground,No +X,1.806,Recreation Field/Courts,No +Q,0.013000000000000001,Triangle/Plaza,No +Q,0.626,Playground,No +B,0.138,Triangle/Plaza,No +B,0.053,Garden,No +X,0.179,Garden,No +X,0.381,Playground,No +Q,0.24100000000000002,Mall,No +B,1.3730000000000002,Recreation Field/Courts,No +M,0.451,Jointly Operated Playground,No +Q,9.404,Parkway,No +B,0.48700000000000004,Playground,No +Q,0.54,Neighborhood Park,No +B,0.032,Triangle/Plaza,No +B,1.9,Neighborhood Park,No +Q,0.049,Triangle/Plaza,No +M,0.247,Triangle/Plaza,No +Q,1.14,Playground,No +B,1.035,Jointly Operated Playground,No +Q,3.4739999999999998,Neighborhood Park,No +X,0.47,Triangle/Plaza,No +R,110.96,Nature Area,Yes +B,1.0,Community Park,No +M,0.22399999999999998,Garden,No +Q,0.054000000000000006,Garden,No +B,1.161,Triangle/Plaza,No +X,4.417,Recreation Field/Courts,No +M,22.74,Neighborhood Park,No +B,0.23,Jointly Operated Playground,No +B,0.18899999999999997,Neighborhood Park,No +Q,0.618,Playground,Yes +M,9.749,Neighborhood Park,No +Q,0.91,Jointly Operated Playground,No +X,0.11,Garden,No +Q,0.064,Triangle/Plaza,No +B,3.214,Neighborhood Park,No +Q,44.295,Nature Area,Yes +M,0.053,Garden,No +Q,0.03,Triangle/Plaza,No +X,0.15,Strip,No +B,0.046,Garden,No +X,2.58,Jointly Operated Playground,No +R,0.765,Undeveloped,No +R,2.2230000000000003,Nature Area,No +X,0.11599999999999999,Garden,No +M,0.054000000000000006,Garden,No +Q,0.22899999999999998,Undeveloped,No +B,0.040999999999999995,Garden,No +Q,0.032,Triangle/Plaza,No +Q,1.633,Neighborhood Park,No +B,0.20800000000000002,Playground,No +B,0.13699999999999998,Triangle/Plaza,No +R,258.72,Neighborhood Park,No +R,198.481,Parkway,No +B,0.161,Undeveloped,Yes +Q,0.996,Jointly Operated Playground,No +M,3.05,Neighborhood Park,No +Q,2.4459999999999997,Jointly Operated Playground,No +R,3.466,Jointly Operated Playground,No +Q,3.32,Jointly Operated Playground,No +X,0.696,Playground,No +B,1.7209999999999999,Jointly Operated Playground,No +M,0.07200000000000001,Triangle/Plaza,No +Q,1.537,Neighborhood Park,No +Q,1.745,Neighborhood Park,No +B,0.11,Triangle/Plaza,No +Q,0.025,Triangle/Plaza,No +M,0.12300000000000001,Recreation Field/Courts,No +Q,1.226,Undeveloped,Yes +Q,1.265,Jointly Operated Playground,No +X,0.09,Triangle/Plaza,No +B,0.23,Garden,No +X,0.61,Playground,No +B,0.172,Garden,No +B,2.878,Lot,No +B,1.024,Playground,No +B,0.027000000000000003,Triangle/Plaza,No +B,0.12300000000000001,Garden,No +X,0.63,Playground,No +X,1.285,Recreation Field/Courts,No +B,0.433,Playground,No +B,5.739,Playground,No +Q,1.5,Triangle/Plaza,No +B,0.18899999999999997,Garden,No +B,0.649,Playground,No +M,1.4780000000000002,Jointly Operated Playground,No +Q,1.15,Playground,No +X,1.44,Jointly Operated Playground,No +B,0.57,Triangle/Plaza,No +B,0.626,Neighborhood Park,No +M,0.32899999999999996,Playground,No +Q,1.55,Neighborhood Park,No +Q,0.599,Garden,No +X,0.133,Cemetery,No +Q,2.095,Neighborhood Park,No +Q,0.011000000000000001,Strip,No +M,3.8,Triangle/Plaza,No +X,0.136,Garden,No +Q,1.28,Jointly Operated Playground,No +B,0.20600000000000002,Triangle/Plaza,No +B,0.917,Jointly Operated Playground,No +X,0.11599999999999999,Garden,No +Q,0.02,Strip,No +B,0.504,Playground,No +Q,0.9740000000000001,Jointly Operated Playground,No +Q,6.218999999999999,Community Park,No +B,0.009000000000000001,Strip,No +X,1.05,Jointly Operated Playground,No +B,0.703,Jointly Operated Playground,No +Q,0.45899999999999996,Cemetery,No +Q,0.1,Triangle/Plaza,No +M,1.8,Neighborhood Park,No +X,0.1,Triangle/Plaza,No +R,0.3,Cemetery,No +B,10.01,Community Park,Yes +R,16.944000000000003,Nature Area,Yes +B,0.141,Garden,No +X,0.17,Triangle/Plaza,No +B,0.055999999999999994,Garden,No +X,0.15,Triangle/Plaza,No +B,6.02,Recreation Field/Courts,No +M,1.735,Neighborhood Park,Yes +Q,0.069,Garden,No +B,0.043,Garden,No +B,0.73,Mall,No +M,0.44,Jointly Operated Playground,No +B,1.3769999999999998,Neighborhood Park,No +R,9.187000000000001,Nature Area,No +B,0.083,Garden,No +M,6.699,Neighborhood Park,No +Q,0.9009999999999999,Undeveloped,No +B,5.317,Neighborhood Park,No +Q,0.002,Strip,No +B,0.503,Playground,No +R,0.408,Neighborhood Park,No +B,0.47600000000000003,Neighborhood Park,No +B,0.172,Garden,No +M,0.545,Historic House Park,No +R,0.785,Nature Area,No +B,0.213,Playground,No +B,6.872999999999999,Neighborhood Park,No +Q,9.375,Undeveloped,Yes +X,0.436,Triangle/Plaza,No +B,0.039,Garden,No +B,0.29,Playground,No +M,0.23,Playground,No +M,0.943,Jointly Operated Playground,No +Q,0.494,Jointly Operated Playground,No +M,0.023,Garden,No +M,1.6980000000000002,Mall,No +Q,0.9179999999999999,Playground,No +X,3.3510000000000004,Recreation Field/Courts,No +M,1.0,Neighborhood Park,No +X,3.9,Playground,No +Q,0.055,Triangle/Plaza,No +Q,1.151,Neighborhood Park,No +M,0.588,Neighborhood Park,No +B,35.533,Recreation Field/Courts,Yes +M,0.07200000000000001,Garden,No +Q,1.145,Jointly Operated Playground,No +Q,1.749,Neighborhood Park,No +Q,326.895,Parkway,Yes +B,0.07400000000000001,Garden,No +Q,2.755,Neighborhood Park,No +X,0.11,Triangle/Plaza,No +B,0.9590000000000001,Playground,No +X,0.23,Garden,No +Q,26.83,Recreation Field/Courts,No +B,0.10800000000000001,Parkway,No +X,1.4380000000000002,Jointly Operated Playground,No +M,1.38,Parkway,No +B,0.005,Triangle/Plaza,No +M,0.573,Playground,No +B,0.13699999999999998,Playground,No +M,0.34,Triangle/Plaza,No +R,1.534,Playground,No +B,1.225,Playground,Yes +X,1.8,Neighborhood Park,No +B,0.9009999999999999,Playground,No +B,0.045,Garden,No +M,1.294,Playground,No +B,0.040999999999999995,Garden,No +M,8.8,Neighborhood Park,No +M,0.44799999999999995,Triangle/Plaza,No +Q,4.353,Community Park,No +R,3.333,Community Park,No +Q,27.531,Recreation Field/Courts,No +X,1.375,Jointly Operated Playground,No +B,0.188,Garden,No +X,0.988,Playground,No +B,0.9179999999999999,Jointly Operated Playground,No +M,0.146,Garden,No +Q,59.611999999999995,Parkway,No +X,0.287,Triangle/Plaza,No +Q,0.09,Triangle/Plaza,No +M,0.789,Jointly Operated Playground,No +R,23.01,Nature Area,No +Q,0.002,Triangle/Plaza,No +B,3.38,Neighborhood Park,No +M,0.075,Triangle/Plaza,No +Q,1.43,Jointly Operated Playground,No +Q,57.92100000000001,Nature Area,Yes +Q,4.966,Community Park,No +Q,0.925,Jointly Operated Playground,No +Q,0.07,Undeveloped,No +M,0.382,Triangle/Plaza,No +X,0.06,Triangle/Plaza,No +R,3.464,Nature Area,No +B,0.87,Jointly Operated Playground,No +B,0.133,Garden,No +Q,0.207,Triangle/Plaza,No +Q,11.5,Neighborhood Park,No +X,0.5,Triangle/Plaza,No +B,9.134,Neighborhood Park,No +M,0.061,Garden,No +X,108.91,Parkway,No +X,0.5,Parkway,No +B,0.248,Garden,No +X,0.172,Garden,No +R,0.20600000000000002,Triangle/Plaza,No +Q,0.01,Triangle/Plaza,No +X,1.3259999999999998,Buildings/Institutions,No +R,1.124,Jointly Operated Playground,No +M,15.383,Neighborhood Park,Yes +Q,4.635,Neighborhood Park,No +X,1.205,Jointly Operated Playground,No +Q,3.7569999999999997,Jointly Operated Playground,No +M,0.22899999999999998,Playground,No +M,10.502,Neighborhood Park,No +R,920.426,Undeveloped,Yes +X,17.064,Neighborhood Park,Yes +M,0.171,Garden,No +Q,1.526,Jointly Operated Playground,No +Q,0.39799999999999996,Playground,No +R,0.9179999999999999,Neighborhood Park,No +B,1.089,Jointly Operated Playground,No +X,2.37,Jointly Operated Playground,No +M,23.093000000000004,Community Park,Yes +M,0.066,Triangle/Plaza,No +R,8.107999999999999,Buildings/Institutions,No +X,35.311,Community Park,No +Q,0.22899999999999998,Playground,No +Q,60.394,Neighborhood Park,Yes +Q,0.01,Triangle/Plaza,No +B,0.322,Playground,No +B,1.82,Neighborhood Park,No +X,2.213,Playground,No +Q,1.466,Jointly Operated Playground,No +X,0.22,Triangle/Plaza,No +Q,20.34,Community Park,Yes +M,2.198,Mall,No +X,5.44,Neighborhood Park,No +M,5.829,Playground,No +Q,1.23,Triangle/Plaza,No +B,7.047000000000001,Neighborhood Park,No +B,0.586,Parkway,No +X,0.55,Parkway,No +Q,0.05,Triangle/Plaza,No +R,0.912,Jointly Operated Playground,No +M,0.046,Garden,No +B,0.299,Garden,No +M,8.595,Parkway,Yes +X,0.191,Triangle/Plaza,No +R,107.514,Nature Area,Yes +X,0.35,Triangle/Plaza,No +B,0.12300000000000001,Garden,No +X,2.6460000000000004,Jointly Operated Playground,No +X,0.213,Garden,No +M,4.712,Waterfront Facility,Yes +M,0.188,Strip,No +M,0.642,Jointly Operated Playground,No +B,0.121,Garden,No +X,80.936,Parkway,No +X,0.047,Garden,No +B,0.064,Managed Sites,No +Q,0.574,Recreation Field/Courts,No +X,0.18,Garden,No +R,2.2880000000000003,Neighborhood Park,No +M,0.478,Garden,No +M,0.6559999999999999,Jointly Operated Playground,No +B,3.1689999999999996,Waterfront Facility,Yes +X,0.255,Garden,No +B,0.79,Jointly Operated Playground,No +Q,0.02,Triangle/Plaza,No +M,0.603,Neighborhood Park,No +X,0.5529999999999999,Triangle/Plaza,No +R,0.231,Cemetery,No +B,0.5,Playground,No +B,1.7,Neighborhood Park,Yes +Q,2.412,Community Park,No +Q,0.009000000000000001,Strip,No +Q,0.03,Triangle/Plaza,No +B,0.52,Playground,No +B,2.2,Triangle/Plaza,No +B,1.795,Jointly Operated Playground,No +B,0.517,Playground,No +B,1.236,Jointly Operated Playground,No +R,9.763,Nature Area,No +M,0.055,Garden,No +M,0.039,Triangle/Plaza,No +B,0.345,Recreation Field/Courts,No +Q,255.4,Community Park,Yes +B,0.038,Garden,No +B,0.078,Triangle/Plaza,No +X,0.402,Garden,No +B,0.027999999999999997,Garden,No +Q,3.5039999999999996,Cemetery,No +Q,0.006,Strip,No +B,0.494,Garden,No +B,0.667,Triangle/Plaza,No +Q,0.821,Jointly Operated Playground,No +Q,0.732,Playground,No +R,1.521,Triangle/Plaza,No +B,0.064,Garden,No +M,0.584,Jointly Operated Playground,No +Q,5.4,Neighborhood Park,No +R,0.45,Triangle/Plaza,No +X,0.183,Neighborhood Park,No +R,13.469000000000001,Recreation Field/Courts,No +Q,1.13,Jointly Operated Playground,No +M,0.08,Garden,No +Q,1.03,Playground,No +X,0.040999999999999995,Triangle/Plaza,No +B,0.13699999999999998,Garden,No +Q,2.6,Playground,No +B,0.09,Triangle/Plaza,No +X,0.745,Triangle/Plaza,No +X,11.689,Community Park,No +X,15.049000000000001,Community Park,No +X,0.013000000000000001,Undeveloped,No +Q,0.002,Strip,No +R,138.1,Community Park,No +B,1.9869999999999999,Neighborhood Park,No +Q,0.057,Garden,No +B,0.736,Jointly Operated Playground,No +B,1.22,Waterfront Facility,Yes +Q,1.056,Jointly Operated Playground,No +Q,0.009000000000000001,Triangle/Plaza,No +X,1.79,Neighborhood Park,No +B,3.485,Neighborhood Park,No +X,1.3940000000000001,Playground,No +B,0.184,Garden,No +Q,358.0,Flagship Park,No +M,0.66,Playground,No +Q,0.25,Triangle/Plaza,No +Q,6.05,Undeveloped,No +X,0.43200000000000005,Playground,No +R,39.779,Nature Area,No +Q,4.863,Neighborhood Park,Yes +M,0.73,Garden,No +X,0.135,Triangle/Plaza,No +Q,1.5530000000000002,Jointly Operated Playground,No +X,0.012,Garden,No +Q,0.17300000000000001,Garden,No +X,0.732,Neighborhood Park,No +R,0.184,Undeveloped,No +M,0.076,Garden,No +X,0.046,Strip,No +B,2.964,Playground,No +B,1.0,Jointly Operated Playground,No +M,0.063,Garden,No +B,26.256999999999998,Community Park,Yes +X,0.258,Undeveloped,No +Q,3.25,Community Park,No +B,0.5539999999999999,Playground,No +M,0.1,Garden,No +B,0.563,Neighborhood Park,Yes +X,0.037000000000000005,Strip,No +Q,8.899,Community Park,No +B,0.154,Garden,No +B,0.185,Garden,No +M,0.828,Jointly Operated Playground,No +B,4.14,Triangle/Plaza,No +B,0.172,Garden,No +Q,0.01,Triangle/Plaza,No +Q,16.439,Nature Area,No +R,0.429,Garden,No +X,1.59,Playground,No +B,1.3980000000000001,Neighborhood Park,No +B,0.061,Triangle/Plaza,No +X,1.45,Recreation Field/Courts,No +B,3.017,Buildings/Institutions,No +R,161.24200000000002,Nature Area,No +M,0.17300000000000001,Garden,No +Q,0.059000000000000004,Triangle/Plaza,No +Q,2.9389999999999996,Jointly Operated Playground,No +B,0.9640000000000001,Jointly Operated Playground,No +M,8.639,Nature Area,Yes +M,1.875,Triangle/Plaza,No +M,0.47700000000000004,Neighborhood Park,No +Q,506.86,Flagship Park,No +Q,1.16,Triangle/Plaza,No +B,0.036000000000000004,Garden,No +Q,1.837,Neighborhood Park,No +X,0.037000000000000005,Undeveloped,No +Q,0.55,Mall,No +X,0.23199999999999998,Triangle/Plaza,No +Q,0.092,Garden,No +M,0.046,Garden,No +Q,2.552,Jointly Operated Playground,No +M,0.7659999999999999,Jointly Operated Playground,No +M,0.376,Mall,No +X,0.022000000000000002,Undeveloped,No +R,1.2930000000000001,Jointly Operated Playground,No +X,718.373,Flagship Park,Yes +R,2.65,Nature Area,No +Q,0.221,Triangle/Plaza,No +M,3.361,Neighborhood Park,No +M,0.034,Triangle/Plaza,No +M,7.85,Neighborhood Park,No +B,0.049,Garden,No +B,0.46,Playground,No +X,0.516,Playground,No +X,0.14,Triangle/Plaza,No +B,2.291,Recreation Field/Courts,No +Q,1.381,Neighborhood Park,No +R,0.9159999999999999,Triangle/Plaza,No +X,0.488,Neighborhood Park,No +R,7.395,Neighborhood Park,No +Q,0.001,Triangle/Plaza,No +Q,0.294,Garden,No +M,0.34700000000000003,Neighborhood Park,No +X,0.017,Strip,No +Q,0.03,Strip,No +B,0.927,Jointly Operated Playground,No +M,1.679,Mall,No +Q,0.157,Triangle/Plaza,No +X,2.6180000000000003,Neighborhood Park,No +B,9.322000000000001,Jointly Operated Playground,No +X,0.294,Strip,No +X,0.42,Triangle/Plaza,No +B,0.16,Garden,No +B,0.10400000000000001,Triangle/Plaza,No +M,1.0,Neighborhood Park,No +M,0.095,Garden,No +B,0.052000000000000005,Garden,No +X,0.33,Garden,No +B,0.012,Triangle/Plaza,No +M,3.5669999999999997,Nature Area,No +B,2.525,Community Park,No +M,21.88,Neighborhood Park,Yes +B,0.036000000000000004,Triangle/Plaza,No +B,1.416,Jointly Operated Playground,No +B,1.085,Neighborhood Park,No +B,1.004,Jointly Operated Playground,No +X,35.771,Nature Area,No +R,1.145,Neighborhood Park,No +B,1.97,Jointly Operated Playground,No +M,0.15,Triangle/Plaza,No +B,0.965,Managed Sites,No +X,0.06,Garden,No +X,3.533,Playground,No +M,0.24,Playground,No +Q,1.919,Playground,No +X,0.74,Triangle/Plaza,No +B,0.10300000000000001,Garden,No +X,1.3769999999999998,Jointly Operated Playground,No +B,0.069,Garden,Yes +B,1.974,Playground,No +Q,1.78,Neighborhood Park,No +Q,0.1,Triangle/Plaza,No +M,0.07400000000000001,Triangle/Plaza,No +X,0.897,Undeveloped,No +B,0.183,Garden,No +B,0.35700000000000004,Recreation Field/Courts,No +R,0.207,Triangle/Plaza,No +Q,2.093,Playground,No +B,0.092,Garden,No +X,0.27,Garden,No +M,0.11,Garden,No +Q,1.1440000000000001,Jointly Operated Playground,No +Q,0.14300000000000002,Undeveloped,No +Q,376.2,Waterfront Facility,Yes +Q,0.006,Triangle/Plaza,No +Q,0.158,Triangle/Plaza,No +B,0.21,Triangle/Plaza,No +M,0.037000000000000005,Garden,No +X,1.075,Neighborhood Park,No +B,0.344,Garden,No +B,0.28,Triangle/Plaza,No +B,0.9259999999999999,Jointly Operated Playground,No +M,0.69,Buildings/Institutions,No +Q,0.287,Playground,No +B,42.941,Community Park,Yes +B,0.9640000000000001,Jointly Operated Playground,No +M,0.774,Triangle/Plaza,No +X,0.027000000000000003,Strip,No +B,24.498,Community Park,No +Q,3.827,Jointly Operated Playground,No +R,0.071,Strip,No +M,0.06,Garden,No +X,3.21,Playground,No +B,0.138,Garden,No +B,0.20600000000000002,Garden,No +X,0.8059999999999999,Neighborhood Park,No +B,0.015,Triangle/Plaza,No +X,1.359,Playground,No +R,1.137,Playground,No +R,15.524000000000001,Historic House Park,Yes +M,0.10800000000000001,Triangle/Plaza,No +B,0.29,Playground,No +B,0.348,Garden,No +M,0.475,Playground,No +B,2.734,Undeveloped,Yes +B,0.035,Triangle/Plaza,No +X,0.244,Garden,No +B,0.711,Playground,No +R,0.39,Nature Area,No +B,0.275,Garden,No +X,0.36700000000000005,Garden,No +X,0.444,Undeveloped,No +Q,0.07400000000000001,Triangle/Plaza,No +M,0.7859999999999999,Jointly Operated Playground,No +X,0.098,Garden,No +M,0.043,Garden,No +B,0.066,Triangle/Plaza,No +Q,2.4,Jointly Operated Playground,No +M,253.168,Community Park,Yes +X,1.3219999999999998,Playground,No +Q,53.298,Nature Area,Yes +X,2771.7470000000003,Flagship Park,Yes +M,0.156,Triangle/Plaza,No +Q,1.889,Jointly Operated Playground,No +R,42.6,Nature Area,No +X,30.395,Nature Area,Yes +B,1.416,Jointly Operated Playground,No +B,3.253,Community Park,No +Q,10.761,Recreation Field/Courts,No +B,0.43700000000000006,Playground,No +X,4.73,Nature Area,No +Q,0.019,Triangle/Plaza,No +B,0.871,Playground,No +M,0.12,Garden,No +Q,10.79,Community Park,No +X,0.15,Playground,No +B,0.107,Garden,No +M,12.772,Neighborhood Park,No +R,0.054000000000000006,Triangle/Plaza,No +M,0.11199999999999999,Garden,No +B,0.066,Garden,No +R,4.647,Managed Sites,No +M,1.75,Community Park,No +B,1.485,Playground,No +B,0.213,Garden,No +Q,0.619,Jointly Operated Playground,No +R,44.733000000000004,Nature Area,Yes +M,0.342,Playground,No +Q,237.14700000000002,Community Park,No +Q,0.022000000000000002,Strip,No +Q,1.033,Jointly Operated Playground,No +Q,0.402,Mall,No +X,0.401,Garden,No +B,1.21,Jointly Operated Playground,No +M,0.436,Neighborhood Park,No +M,1.635,Neighborhood Park,No +B,2.27,Jointly Operated Playground,No +M,1.285,Jointly Operated Playground,No +Q,0.319,Historic House Park,No +B,1.4380000000000002,Jointly Operated Playground,No +B,1.351,Undeveloped,No +B,0.019,Triangle/Plaza,No +B,0.20600000000000002,Garden,No +M,0.223,Playground,No +Q,0.27399999999999997,Triangle/Plaza,No +X,0.977,Neighborhood Park,No +Q,6.336,Recreation Field/Courts,No +B,0.033,Garden,No +B,2.7439999999999998,Jointly Operated Playground,No +X,0.183,Garden,No +Q,0.027000000000000003,Triangle/Plaza,No +R,315.094,Nature Area,Yes +B,1.874,Neighborhood Park,No +Q,0.1,Triangle/Plaza,No +B,1.791,Jointly Operated Playground,No +B,0.18100000000000002,Buildings/Institutions,No +M,0.142,Triangle/Plaza,No +Q,0.06,Triangle/Plaza,No +B,0.08,Garden,No +Q,0.993,Playground,No +M,1.052,Neighborhood Park,No +M,0.11900000000000001,Garden,No +B,0.006,Strip,No +Q,3.867,Neighborhood Park,No +M,0.057,Garden,No +B,0.45899999999999996,Garden,No +X,0.13,Garden,No +X,0.174,Garden,No +X,0.172,Recreation Field/Courts,No +R,1.02,Neighborhood Park,No +X,1.0,Playground,No +M,0.38299999999999995,Garden,No +B,0.047,Parkway,No +M,2.0669999999999997,Neighborhood Park,No +Q,0.006999999999999999,Strip,No +B,1.3359999999999999,Jointly Operated Playground,No +R,136.56799999999998,Nature Area,No +X,0.716,Playground,No +X,0.275,Parkway,No +M,1.578,Triangle/Plaza,No +Q,89.946,Community Park,No +B,2.799,Jointly Operated Playground,No +B,2.741,Neighborhood Park,No +Q,1.6569999999999998,Undeveloped,Yes +Q,0.191,Triangle/Plaza,No +Q,1.607,Undeveloped,No +B,0.059000000000000004,Garden,No +M,6.422999999999999,Neighborhood Park,No +B,3.39,Neighborhood Park,No +M,1.556,Neighborhood Park,Yes +M,0.10099999999999999,Garden,No +B,0.006,Triangle/Plaza,No +X,0.28600000000000003,Garden,No +B,0.09,Garden,No +B,0.11599999999999999,Triangle/Plaza,No +R,0.424,Neighborhood Park,No +R,11.193,Nature Area,Yes +Q,0.07,Triangle/Plaza,No +B,0.55,Playground,No +B,0.09699999999999999,Garden,No +B,0.04,Parkway,No +Q,1.146,Jointly Operated Playground,No +M,1.945,Neighborhood Park,No +B,2.2030000000000003,Nature Area,Yes +B,1.158,Neighborhood Park,No +Q,11.422,Neighborhood Park,No +Q,1.473,Recreation Field/Courts,No +X,0.995,Undeveloped,Yes +X,0.016,Triangle/Plaza,No +B,2.282,Jointly Operated Playground,No +X,0.054000000000000006,Garden,No +B,4.947,Neighborhood Park,No +Q,0.574,Playground,No +M,0.55,Garden,No +M,0.11699999999999999,Garden,No +M,0.545,Neighborhood Park,No +Q,0.006,Strip,No +B,0.064,Garden,No +X,0.28,Playground,No diff --git a/data/nyc_shooting_data.csv b/data/nyc_shooting_data.csv new file mode 100644 index 00000000..0b285bca --- /dev/null +++ b/data/nyc_shooting_data.csv @@ -0,0 +1,968 @@ +INCIDENT_KEY,OCCUR_DATE,OCCUR_TIME,BORO,PRECINCT,JURISDICTION_CODE,LOCATION_DESC,STATISTICAL_MURDER_FLAG,PERP_AGE_GROUP,PERP_SEX,PERP_RACE,VIC_AGE_GROUP,VIC_SEX,VIC_RACE,X_COORD_CD,Y_COORD_CD,Latitude,Longitude +206890929,12/31/2019,23:15:00,MANHATTAN,28,0,HOTEL/MOTEL,true,25-44,M,BLACK,25-44,M,BLACK,997155,230828,40.80024432600004,-73.95339008999997 +206891917,12/31/2019,20:14:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1007235,179932,40.66052686300003,-73.91715616699997 +206882664,12/30/2019,21:29:00,BROOKLYN,71,0,,false,25-44,M,BLACK,25-44,M,BLACK,1000996,178614,40.656923240000026,-73.93964677899999 +206875589,12/30/2019,03:17:00,BROOKLYN,81,0,,false,,,,18-24,M,BLACK,1006612,189509,40.68681516500004,-73.91936988499998 +206875589,12/30/2019,03:17:00,BROOKLYN,81,0,,false,,,,45-64,M,BLACK HISPANIC,1006612,189509,40.68681516500004,-73.91936988499998 +206874852,12/29/2019,00:50:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,996128,184418,40.67286180100007,-73.95718142799996 +206873688,12/28/2019,19:51:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK HISPANIC,1019355,188601,40.68428154800005,-73.87342672099999 +206874854,12/28/2019,17:53:00,STATEN ISLAND,121,0,,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,939602,167591,40.62657078000007,-74.16084527699996 +206873686,12/28/2019,04:20:00,MANHATTAN,23,0,,false,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1000900,228610,40.79415025600008,-73.93986908699996 +206873687,12/27/2019,23:27:00,BRONX,46,0,,true,25-44,M,BLACK HISPANIC,18-24,M,BLACK,1010591,250447,40.85406302600006,-73.90478382299993 +206873499,12/27/2019,22:40:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1053272,196881,40.706808642000055,-73.75105110599996 +206873498,12/27/2019,10:11:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1009872,182963,40.66883904500003,-73.90764006599994 +206847122,12/26/2019,04:25:00,QUEENS,114,0,,false,,,,25-44,M,BLACK,1005336,213624,40.75300814800004,-73.92389526399995 +206843560,12/25/2019,22:50:00,BRONX,41,0,,false,,,,18-24,M,BLACK HISPANIC,1013775,238190,40.820411060000026,-73.89332824199995 +206843561,12/25/2019,02:40:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,996904,173082,40.64174589100002,-73.95440522899997 +206843363,12/25/2019,00:19:00,BROOKLYN,90,1,,false,,,,25-44,M,WHITE HISPANIC,998704,195811,40.70412913900003,-73.947870547 +206838693,12/24/2019,19:07:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,1005300,182759,40.66829116100007,-73.92412169499994 +206832369,12/23/2019,20:51:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,F,BLACK,984688,150503,40.57978019500007,-73.99842465499995 +206832369,12/23/2019,20:51:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,M,BLACK,984688,150503,40.57978019500007,-73.99842465499995 +206832555,12/23/2019,15:31:00,BROOKLYN,73,0,,false,25-44,M,BLACK,45-64,M,BLACK,1009574,180396,40.661794060000034,-73.90872392799997 +206832556,12/23/2019,11:25:00,QUEENS,113,0,,false,,,,18-24,M,BLACK,1046959,186778,40.679125323000044,-73.77391494099999 +206824627,12/23/2019,05:28:00,BRONX,48,0,,false,,,,25-44,F,BLACK HISPANIC,1011829,248086,40.84757900300008,-73.90031840799998 +206824627,12/23/2019,05:28:00,BRONX,48,0,,false,,,,25-44,M,BLACK,1011829,248086,40.84757900300008,-73.90031840799998 +206823156,12/21/2019,04:36:00,BRONX,44,0,,false,25-44,M,BLACK,45-64,M,BLACK,1004227,237572,40.818741576000036,-73.92782678799993 +206821821,12/21/2019,04:30:00,BROOKLYN,78,1,,false,,,,25-44,M,BLACK HISPANIC,991724,186291,40.67800757700008,-73.97305570499998 +206823155,12/21/2019,03:20:00,BROOKLYN,70,0,,false,,,,25-44,M,BLACK,995944,176899,40.65222405100008,-73.95785778499999 +206821819,12/20/2019,21:36:00,BRONX,47,0,,false,,,,<18,M,BLACK,1020998,257118,40.87233570600006,-73.86712799899993 +206729523,12/19/2019,21:22:00,QUEENS,105,0,,false,,,,18-24,M,BLACK,1051883,184698,40.67337996200007,-73.75618326799997 +206729524,12/19/2019,16:20:00,BROOKLYN,67,0,MULTI DWELL - APT BUILD,true,,,,25-44,F,BLACK,1006160,180447,40.66194314900008,-73.92102913399998 +206703579,12/19/2019,05:15:00,MANHATTAN,28,0,,false,,,,18-24,M,BLACK HISPANIC,996089,231418,40.80186520800004,-73.95723931799995 +206681438,12/18/2019,23:22:00,MANHATTAN,32,0,,false,,,,25-44,M,BLACK,999651,234170,40.80941319900006,-73.94436716399997 +206681439,12/18/2019,18:15:00,QUEENS,100,0,,true,25-44,U,BLACK,45-64,M,BLACK,1036299,153335,40.58740067900004,-73.81260554099998 +206570261,12/16/2019,19:15:00,STATEN ISLAND,120,0,,true,,,,<18,M,BLACK HISPANIC,954514,170534,40.634711295000045,-74.10713802599996 +206570260,12/16/2019,12:37:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,UNKNOWN,25-44,M,BLACK,1001933,228925,40.79501283900004,-73.93613752499994 +206526479,12/15/2019,20:00:00,MANHATTAN,28,0,,false,,,,18-24,M,BLACK,997328,232574,40.805036364000046,-73.95276183299995 +206526480,12/15/2019,03:36:00,BROOKLYN,79,0,,false,,,,18-24,M,BLACK,998810,192148,40.69407488400003,-73.947496157 +206524906,12/14/2019,21:35:00,BRONX,52,0,,false,,,,18-24,M,BLACK,1013413,255738,40.86857634900008,-73.89455982599996 +206316192,12/11/2019,04:00:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,987061,148773,40.575031251000034,-73.98988266699997 +206311808,12/10/2019,23:32:00,STATEN ISLAND,122,0,,false,25-44,F,WHITE,18-24,M,WHITE,953155,145282,40.56539505300003,-74.11191815299998 +206311808,12/10/2019,23:32:00,STATEN ISLAND,122,0,,false,18-24,F,WHITE HISPANIC,18-24,M,WHITE,953155,145282,40.56539505300003,-74.11191815299998 +206311808,12/10/2019,23:32:00,STATEN ISLAND,122,0,,false,18-24,M,BLACK HISPANIC,18-24,M,WHITE,953155,145282,40.56539505300003,-74.11191815299998 +206311807,12/10/2019,21:36:00,BRONX,48,0,,false,,,,25-44,M,BLACK,1015119,247835,40.846879195000035,-73.88842801999994 +206311359,12/10/2019,20:35:00,STATEN ISLAND,120,0,,true,,,,25-44,M,WHITE HISPANIC,961472,164727,40.61879293100003,-74.08204929199997 +206196589,12/08/2019,23:16:00,BRONX,47,0,,false,25-44,M,BLACK,45-64,M,BLACK HISPANIC,1031078,262785,40.88784211400008,-73.83064118999994 +206195058,12/07/2019,22:40:00,BROOKLYN,70,0,MULTI DWELL - APT BUILD,true,18-24,M,BLACK,18-24,M,BLACK,995294,176595,40.65139047100007,-73.96020079799997 +206195057,12/07/2019,00:41:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1005530,233943,40.808777943000045,-73.923130702 +206195060,12/07/2019,00:23:00,QUEENS,115,0,,false,18-24,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1022420,212522,40.749926198000026,-73.86223992399994 +206367551,12/06/2019,23:30:00,BRONX,47,0,,false,25-44,M,BLACK,45-64,M,BLACK,1026179,261966,40.88561885600007,-73.84836422499995 +206196588,12/06/2019,23:00:00,BROOKLYN,77,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,BLACK,1003812,183893,40.67140715000005,-73.92948225299993 +206195056,12/06/2019,17:40:00,BROOKLYN,75,0,PVT HOUSE,false,25-44,M,UNKNOWN,18-24,M,BLACK,1018637,182648,40.66794473600004,-73.87604591299998 +206090803,12/05/2019,14:15:00,BRONX,42,0,,false,18-24,M,BLACK,65+,M,BLACK,1008051,239452,40.82389216900003,-73.91400444399994 +206090803,12/05/2019,14:15:00,BRONX,42,0,,false,18-24,M,WHITE HISPANIC,65+,M,BLACK,1008051,239452,40.82389216900003,-73.91400444399994 +206032523,12/04/2019,23:12:00,BROOKLYN,67,0,MULTI DWELL - APT BUILD,false,,,,45-64,F,BLACK,999390,177145,40.65289404700008,-73.945438299 +206032524,12/04/2019,03:30:00,QUEENS,110,0,,false,,,,25-44,M,WHITE,1015799,208304,40.738374951000026,-73.88615590799998 +205974389,12/03/2019,20:45:00,BRONX,48,0,,false,,,,18-24,M,BLACK,1014808,247020,40.84464334200004,-73.88955581599998 +205974388,12/03/2019,14:28:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1002321,172248,40.63944734500007,-73.93488836999995 +205908101,12/02/2019,15:52:00,BROOKLYN,73,0,,false,,,,18-24,M,BLACK,1006612,185285,40.675221247000025,-73.91938390099993 +205908100,12/02/2019,11:50:00,BROOKLYN,67,0,,false,25-44,F,BLACK,25-44,M,BLACK,1004359,173694,40.64341191200003,-73.92754078099993 +205862276,12/01/2019,22:10:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1005569,186646,40.678959457000076,-73.92313972699996 +205862274,12/01/2019,21:10:00,BROOKLYN,81,0,,false,25-44,M,BLACK,25-44,M,BLACK,1004788,190873,40.69056345100006,-73.92594259299993 +205862271,12/01/2019,03:32:00,STATEN ISLAND,123,0,,false,25-44,M,WHITE,25-44,M,WHITE,935099,136277,40.54059638700004,-74.17683949599996 +205862275,12/01/2019,01:07:00,QUEENS,114,0,,false,,,,18-24,M,BLACK,1000151,215230,40.75742705300007,-73.94260579999997 +205862270,11/30/2019,23:01:00,BRONX,46,0,,true,18-24,M,BLACK,25-44,M,BLACK,1005694,247184,40.84512030900004,-73.92249595899995 +205862273,11/29/2019,18:17:00,BROOKLYN,84,0,,false,,,,18-24,M,BLACK,988902,192641,40.69543880800006,-73.98322537599995 +205862272,11/29/2019,14:07:00,BRONX,42,0,,false,,,,25-44,M,WHITE HISPANIC,1011977,240173,40.82585965700008,-73.89981617899997 +205771022,11/28/2019,08:52:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1016655,182656,40.667974171000026,-73.88319042199998 +205771021,11/28/2019,04:12:00,BRONX,50,0,FAST FOOD,false,,,,25-44,M,BLACK,1010272,258954,40.877413096000055,-73.90590391399996 +205748549,11/27/2019,23:55:00,QUEENS,113,0,,false,25-44,M,BLACK,18-24,M,BLACK,1046624,184398,40.67259514700004,-73.77514474599997 +205748550,11/27/2019,23:30:00,BRONX,45,0,,false,18-24,M,BLACK,18-24,F,WHITE HISPANIC,1032140,242004,40.83079891400007,-73.82694879599995 +205748550,11/27/2019,23:30:00,BRONX,45,0,,false,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1032140,242004,40.83079891400007,-73.82694879599995 +205748548,11/27/2019,22:24:00,BRONX,41,0,,false,18-24,M,WHITE HISPANIC,18-24,M,BLACK,1013879,239551,40.82414626900004,-73.89294648299993 +205748548,11/27/2019,22:24:00,BRONX,41,0,,false,18-24,M,WHITE HISPANIC,25-44,M,BLACK,1013879,239551,40.82414626900004,-73.89294648299993 +205748546,11/27/2019,15:54:00,BRONX,40,0,,false,<18,M,BLACK,18-24,F,BLACK,1006789,237559,40.81869973000005,-73.91857061799993 +205748546,11/27/2019,15:54:00,BRONX,40,0,,false,<18,M,BLACK,25-44,F,BLACK,1006789,237559,40.81869973000005,-73.91857061799993 +205748546,11/27/2019,15:54:00,BRONX,40,0,,false,<18,M,BLACK,18-24,M,BLACK,1006789,237559,40.81869973000005,-73.91857061799993 +205748546,11/27/2019,15:54:00,BRONX,40,0,,false,<18,M,BLACK,<18,M,BLACK,1006789,237559,40.81869973000005,-73.91857061799993 +205719913,11/27/2019,00:45:00,BRONX,47,0,,false,,,,25-44,M,BLACK,1022778,262631,40.88745957300006,-73.86066017599995 +205705081,11/26/2019,20:19:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,<18,M,BLACK,1002012,189767,40.68753374200002,-73.93595560199999 +205645837,11/25/2019,22:00:00,QUEENS,114,0,,false,,,,<18,M,BLACK,1002895,220799,40.77270715700007,-73.93268571799997 +205599330,11/23/2019,03:20:00,BROOKLYN,69,0,,false,,,,18-24,F,BLACK,1008613,174584,40.645844089000036,-73.91220873599997 +205599330,11/23/2019,03:20:00,BROOKLYN,69,0,,false,,,,18-24,M,BLACK,1008613,174584,40.645844089000036,-73.91220873599997 +205493216,11/21/2019,18:32:00,BRONX,49,0,,false,,,,18-24,F,BLACK,1026424,251705,40.857454424000025,-73.84754276399997 +205437642,11/20/2019,23:11:00,BRONX,44,0,COMMERCIAL BLDG,false,,,,18-24,M,BLACK,1007188,243233,40.83427221300008,-73.91710967899996 +205437642,11/20/2019,23:11:00,BRONX,44,0,COMMERCIAL BLDG,true,,,,18-24,M,BLACK,1007188,243233,40.83427221300008,-73.91710967899996 +205437642,11/20/2019,23:11:00,BRONX,44,0,COMMERCIAL BLDG,false,,,,25-44,M,BLACK,1007188,243233,40.83427221300008,-73.91710967899996 +205437642,11/20/2019,23:11:00,BRONX,44,0,COMMERCIAL BLDG,true,,,,25-44,M,BLACK,1007188,243233,40.83427221300008,-73.91710967899996 +205437643,11/20/2019,17:58:00,STATEN ISLAND,122,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,956246,153097,40.586855984000074,-74.10082545299997 +205437641,11/20/2019,14:56:00,BROOKLYN,81,0,,false,,,,25-44,M,BLACK,1004925,187027,40.68000674300004,-73.92546037999993 +205332522,11/19/2019,08:45:00,BROOKLYN,75,0,,true,,,,25-44,M,BLACK HISPANIC,1013590,181763,40.66553377300004,-73.89424277099994 +205280615,11/17/2019,21:12:00,BRONX,43,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK,1020891,236726,40.816366145000075,-73.86762631099998 +205280615,11/17/2019,21:12:00,BRONX,43,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,18-24,M,BLACK,1020891,236726,40.816366145000075,-73.86762631099998 +205280613,11/17/2019,14:45:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,M,BLACK HISPANIC,1000102,229680,40.79708858400005,-73.94274857999993 +205280617,11/17/2019,02:27:00,BROOKLYN,72,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,978440,174981,40.64696537000003,-74.02093827699997 +205280612,11/16/2019,03:44:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,BLACK,995728,190315,40.689048255000046,-73.95861337799995 +205280238,11/15/2019,20:22:00,BRONX,46,0,,true,<18,M,BLACK,25-44,M,BLACK,1006957,248723,40.849341252000045,-73.91792586299994 +205280614,11/15/2019,00:17:00,BRONX,42,0,,false,<18,M,BLACK,18-24,M,BLACK,1010207,241776,40.83026481100006,-73.90620546899999 +205177555,11/14/2019,21:01:00,MANHATTAN,34,0,,true,25-44,M,WHITE HISPANIC,18-24,M,BLACK HISPANIC,1004637,253426,40.86225524200007,-73.92629731299998 +205177556,11/14/2019,00:59:00,BRONX,44,0,,false,,,,18-24,M,WHITE HISPANIC,1004530,242729,40.83289538100007,-73.92671649599998 +205177554,11/14/2019,00:12:00,MANHATTAN,25,0,,false,25-44,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,1001927,234115,40.80925797900005,-73.93614553099997 +205124101,11/13/2019,20:35:00,BROOKLYN,69,0,,false,,,,18-24,M,BLACK,1014941,171832,40.63827077700005,-73.88941816399995 +205124100,11/13/2019,00:08:00,BRONX,43,0,,false,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1018876,241924,40.83064129700006,-73.87487918899996 +205065107,11/12/2019,02:24:00,BRONX,44,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK HISPANIC,1007174,239543,40.82414425700006,-73.91717287899996 +204971621,11/10/2019,22:34:00,BRONX,44,0,,false,,,,25-44,M,BLACK,1008249,242113,40.83119531600005,-73.91327951999993 +204971620,11/10/2019,19:30:00,BROOKLYN,71,0,SHOE STORE,false,18-24,M,BLACK,<18,M,BLACK,999380,181277,40.66423549600006,-73.94546506699999 +204971625,11/10/2019,14:03:00,BROOKLYN,63,0,MULTI DWELL - APT BUILD,false,25-44,M,BLACK,18-24,F,BLACK,1004514,165224,40.62016320400005,-73.92700768599997 +204971625,11/10/2019,14:03:00,BROOKLYN,63,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK,18-24,F,BLACK,1004514,165224,40.62016320400005,-73.92700768599997 +204971625,11/10/2019,14:03:00,BROOKLYN,63,0,MULTI DWELL - APT BUILD,false,25-44,M,BLACK,25-44,M,BLACK,1004514,165224,40.62016320400005,-73.92700768599997 +204971625,11/10/2019,14:03:00,BROOKLYN,63,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK,25-44,M,BLACK,1004514,165224,40.62016320400005,-73.92700768599997 +204971623,11/10/2019,06:50:00,MANHATTAN,19,0,,false,,,,25-44,M,WHITE HISPANIC,996700,217648,40.76406937600007,-73.95505791899996 +204971624,11/10/2019,02:48:00,MANHATTAN,34,0,,false,25-44,M,BLACK,25-44,F,BLACK,1004258,254745,40.86587636400003,-73.92766355499998 +204971624,11/10/2019,02:48:00,MANHATTAN,34,0,,false,25-44,M,BLACK,18-24,M,BLACK,1004258,254745,40.86587636400003,-73.92766355499998 +204971624,11/10/2019,02:48:00,MANHATTAN,34,0,,false,25-44,M,BLACK,25-44,M,BLACK,1004258,254745,40.86587636400003,-73.92766355499998 +204493622,11/06/2019,22:36:00,BRONX,49,0,,false,25-44,M,BLACK,25-44,M,ASIAN / PACIFIC ISLANDER,1021068,256159,40.86970325500005,-73.86688016399995 +204493624,11/06/2019,21:21:00,BROOKLYN,77,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,WHITE HISPANIC,1002013,185753,40.67651622300008,-73.93596257699994 +204493625,11/06/2019,02:27:00,BROOKLYN,72,0,,false,,,,25-44,M,BLACK,985720,182300,40.667056208000076,-73.99470257699994 +204493623,11/05/2019,23:30:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1044124,190608,40.689657398000065,-73.78410196999994 +204480329,11/05/2019,21:11:00,BROOKLYN,84,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,988761,194230,40.69980031700004,-73.98373278599996 +204480329,11/05/2019,21:11:00,BROOKLYN,84,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,WHITE,988761,194230,40.69980031700004,-73.98373278599996 +204464564,11/04/2019,13:40:00,BRONX,40,0,,false,45-64,M,BLACK,25-44,M,BLACK HISPANIC,1008120,238322,40.82079045300003,-73.91375915499998 +204464564,11/04/2019,13:40:00,BRONX,40,0,,true,45-64,M,BLACK,25-44,M,BLACK HISPANIC,1008120,238322,40.82079045300003,-73.91375915499998 +204464564,11/04/2019,13:40:00,BRONX,40,0,,false,45-64,M,BLACK,25-44,M,WHITE HISPANIC,1008120,238322,40.82079045300003,-73.91375915499998 +204464564,11/04/2019,13:40:00,BRONX,40,0,,true,45-64,M,BLACK,25-44,M,WHITE HISPANIC,1008120,238322,40.82079045300003,-73.91375915499998 +204468719,11/04/2019,02:41:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,WHITE,999925,214507,40.755443005000075,-73.94342324599995 +204458418,11/03/2019,14:54:00,QUEENS,101,0,,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1050364,156970,40.597284244000036,-73.761930927 +204458421,11/03/2019,00:26:00,BROOKLYN,88,0,,false,18-24,M,BLACK,18-24,M,BLACK,994729,192071,40.693869310000025,-73.96221290099999 +204458419,11/02/2019,10:37:00,BRONX,47,0,,false,25-44,M,BLACK,25-44,M,BLACK,1025538,259944,40.88007212500003,-73.85069487599996 +204458422,11/02/2019,02:40:00,STATEN ISLAND,120,0,PVT HOUSE,false,,,,25-44,M,BLACK,962822,174282,40.645022746000045,-74.077216847 +204458415,11/02/2019,02:09:00,MANHATTAN,23,0,,false,,,,25-44,F,BLACK,998751,226901,40.78946330000008,-73.94763400399995 +204458423,11/02/2019,00:42:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,BLACK,997366,192877,40.69607807800003,-73.95270199199997 +204458420,11/02/2019,00:24:00,BROOKLYN,90,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,WHITE HISPANIC,1000684,198151,40.710548430000074,-73.94072361899998 +204458416,11/01/2019,05:00:00,BRONX,44,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1009312,246894,40.84431481700005,-73.90942043899997 +204434559,10/31/2019,20:59:00,BROOKLYN,83,0,,true,,,,25-44,M,BLACK,1009342,190798,40.69034585500003,-73.90952141999998 +204434561,10/31/2019,19:03:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,25-44,F,BLACK,25-44,M,BLACK,1010674,239150,40.82305580800004,-73.90452830099997 +204434561,10/31/2019,19:03:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1010674,239150,40.82305580800004,-73.90452830099997 +204434560,10/31/2019,14:17:00,BRONX,52,0,,false,,,,<18,M,WHITE HISPANIC,1012932,255857,40.86890454400003,-73.89629841699998 +204424712,10/30/2019,19:55:00,BRONX,52,0,,false,,,,25-44,M,WHITE HISPANIC,1014260,256172,40.86976470700006,-73.891495476 +204396946,10/29/2019,20:36:00,QUEENS,113,0,,false,18-24,M,BLACK,25-44,M,BLACK,1049021,189295,40.68601904400003,-73.76645659599995 +204398628,10/29/2019,20:22:00,BROOKLYN,84,0,,false,<18,M,BLACK,25-44,M,BLACK,988740,194815,40.70140601600008,-73.983808132 +204338715,10/28/2019,22:39:00,BROOKLYN,73,0,,false,,,,45-64,M,BLACK,1006602,185144,40.67483425900008,-73.91942041999994 +204338717,10/28/2019,15:53:00,QUEENS,103,0,,false,<18,M,BLACK,<18,F,BLACK,1039709,196693,40.70638803100008,-73.79997184399997 +204338716,10/28/2019,14:26:00,MANHATTAN,25,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,BLACK,1001769,234797,40.811130194000036,-73.93671450599999 +204340073,10/28/2019,12:19:00,BRONX,44,0,,false,25-44,M,UNKNOWN,18-24,M,BLACK,1008787,243961,40.83626606400002,-73.91132866299995 +204294842,10/27/2019,18:14:00,BROOKLYN,79,0,,false,18-24,M,BLACK,18-24,F,BLACK,998611,187749,40.682000963000064,-73.94822315299997 +204294846,10/27/2019,17:09:00,BRONX,44,0,,false,,,,25-44,M,BLACK,1006769,241999,40.83088631600003,-73.91862797499994 +204294844,10/27/2019,01:30:00,BROOKLYN,73,0,,false,25-44,M,BLACK,25-44,M,BLACK,1010424,180852,40.66304320600005,-73.90565842999997 +204294843,10/26/2019,22:50:00,BROOKLYN,75,0,FAST FOOD,false,,,,18-24,M,WHITE HISPANIC,1020100,188525,40.684069959000055,-73.87074095399998 +204294840,10/26/2019,20:02:00,QUEENS,113,0,,true,,,,<18,M,BLACK,1043970,188448,40.683729750000055,-73.78467642099997 +204296334,10/26/2019,04:20:00,BROOKLYN,69,0,,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK,1010971,174787,40.646394480000026,-73.90371082399997 +204294845,10/26/2019,04:00:00,BRONX,48,0,,false,,,,25-44,M,BLACK,1013751,247662,40.84640903700006,-73.89337329799997 +204294847,10/25/2019,21:04:00,BRONX,47,0,,false,,,,18-24,M,BLACK,1024379,266718,40.89866994400006,-73.85484547899993 +204294847,10/25/2019,21:04:00,BRONX,47,0,,false,,,,25-44,M,BLACK,1024379,266718,40.89866994400006,-73.85484547899993 +204294841,10/25/2019,19:43:00,BRONX,46,0,,false,25-44,M,BLACK,25-44,F,BLACK,1012248,251807,40.857790719000036,-73.89878841299998 +204294841,10/25/2019,19:43:00,BRONX,46,0,,false,25-44,M,BLACK,18-24,M,BLACK,1012248,251807,40.857790719000036,-73.89878841299998 +204294841,10/25/2019,19:43:00,BRONX,46,0,,false,25-44,M,BLACK,18-24,M,WHITE HISPANIC,1012248,251807,40.857790719000036,-73.89878841299998 +204294839,10/25/2019,12:54:00,QUEENS,100,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1037138,154271,40.58996484000005,-73.80957751099999 +204192601,10/24/2019,21:56:00,BRONX,46,0,,false,,,,25-44,M,BLACK,1008471,251020,40.85564181000007,-73.91244513899994 +204192603,10/24/2019,19:43:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1022078,183185,40.66940464800007,-73.86363907499998 +204192600,10/24/2019,00:52:00,STATEN ISLAND,121,0,PVT HOUSE,true,25-44,M,BLACK,25-44,F,BLACK,938149,171781,40.63806398200006,-74.16610830199994 +204138620,10/23/2019,19:53:00,QUEENS,113,0,,true,18-24,M,BLACK,18-24,M,BLACK,1045280,185698,40.67617271100005,-73.77997803999993 +204154391,10/23/2019,15:16:00,MANHATTAN,10,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,982756,210140,40.74347045500008,-74.00539300399998 +204039257,10/22/2019,03:04:00,QUEENS,102,0,,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK,1022254,188529,40.68407195200007,-73.86297449699998 +204020534,10/21/2019,16:00:00,MANHATTAN,20,0,,false,25-44,M,BLACK,25-44,M,BLACK,987818,221369,40.77429060000002,-73.98711927099998 +203980165,10/19/2019,10:25:00,QUEENS,103,0,,false,,,,25-44,M,BLACK,1037533,196062,40.70466945900005,-73.80782521099997 +203980164,10/18/2019,14:43:00,MANHATTAN,32,0,MULTI DWELL - APT BUILD,true,45-64,F,BLACK,45-64,F,WHITE HISPANIC,1000565,234704,40.81087724100007,-73.94106415099996 +203980164,10/18/2019,14:43:00,MANHATTAN,32,0,MULTI DWELL - APT BUILD,true,45-64,F,BLACK,65+,M,BLACK,1000565,234704,40.81087724100007,-73.94106415099996 +203883813,10/17/2019,12:32:00,QUEENS,105,0,,false,,,,18-24,F,BLACK,1053981,179167,40.65818237800004,-73.74867718699994 +203778568,10/15/2019,22:55:00,BROOKLYN,63,0,,false,,,,25-44,M,BLACK,1007121,166201,40.62283851900003,-73.91761360499999 +203676932,10/13/2019,02:30:00,BROOKLYN,81,0,,false,,,,25-44,M,BLACK,1002883,192220,40.69426487000004,-73.93280818499993 +203676932,10/13/2019,02:30:00,BROOKLYN,81,0,,false,,,,45-64,M,BLACK,1002883,192220,40.69426487000004,-73.93280818499993 +203676929,10/13/2019,01:55:00,MANHATTAN,17,0,,false,,,,25-44,M,BLACK,990804,210370,40.744099446000064,-73.97634911099993 +203676930,10/12/2019,18:02:00,MANHATTAN,28,0,,true,25-44,M,BLACK,25-44,M,BLACK,998253,233408,40.80732404600008,-73.94941886199997 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,25-44,M,BLACK,25-44,F,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,45-64,M,BLACK,25-44,F,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,25-44,M,BLACK,25-44,F,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,45-64,M,BLACK,25-44,F,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,25-44,M,BLACK,25-44,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,45-64,M,BLACK,25-44,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,25-44,M,BLACK,25-44,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,45-64,M,BLACK,25-44,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,25-44,M,BLACK,45-64,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,false,45-64,M,BLACK,45-64,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,25-44,M,BLACK,45-64,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203676928,10/12/2019,06:55:00,BROOKLYN,77,0,BAR/NIGHT CLUB,true,45-64,M,BLACK,45-64,M,BLACK,1003550,185645,40.676216571000055,-73.93042172099996 +203678796,10/12/2019,06:30:00,BRONX,42,0,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,WHITE HISPANIC,1009909,241902,40.83061151500005,-73.90728181399999 +203676927,10/12/2019,02:50:00,MANHATTAN,18,0,,false,25-44,M,BLACK,25-44,F,BLACK,988226,217228,40.76292445400002,-73.98564864699993 +203676926,10/11/2019,23:14:00,QUEENS,113,0,,false,,,,18-24,M,BLACK,1044553,188701,40.684420223000075,-73.78257211399993 +203676931,10/11/2019,22:15:00,MANHATTAN,10,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,WHITE HISPANIC,18-24,F,WHITE HISPANIC,983907,212138,40.748954585000035,-74.00123937099994 +203571464,10/10/2019,21:54:00,BROOKLYN,71,0,SUPERMARKET,true,18-24,M,BLACK,25-44,M,BLACK,995358,178299,40.65606750000006,-73.95996734599998 +203517392,10/09/2019,13:38:00,QUEENS,105,0,HOSPITAL,false,,,,25-44,M,BLACK,1065540,213942,40.753532458000045,-73.70659676099996 +203517393,10/09/2019,13:00:00,QUEENS,105,0,,true,,,,18-24,M,ASIAN / PACIFIC ISLANDER,1066815,209653,40.74174848400003,-73.70204752099994 +203394881,10/07/2019,16:21:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,18-24,F,BLACK,984688,150503,40.57978019500007,-73.99842465499995 +203394879,10/07/2019,13:27:00,BRONX,43,0,,false,,,,<18,M,ASIAN / PACIFIC ISLANDER,1024622,237417,40.81824648100008,-73.85414296999993 +203348701,10/06/2019,21:54:00,MANHATTAN,23,0,,false,45-64,M,BLACK HISPANIC,25-44,M,BLACK HISPANIC,999211,227549,40.79124111900006,-73.94597136299996 +203350418,10/06/2019,17:00:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,998286,189885,40.68786431700005,-73.94939048399993 +203348705,10/06/2019,13:49:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,999369,172510,40.640172009000025,-73.94552436799995 +203350417,10/06/2019,01:09:00,BROOKLYN,77,0,,false,,,,18-24,F,BLACK,995325,185155,40.674885741000026,-73.96007501899999 +203350417,10/06/2019,01:09:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,995325,185155,40.674885741000026,-73.96007501899999 +203348698,10/05/2019,21:50:00,MANHATTAN,25,0,,true,,,,25-44,M,WHITE HISPANIC,999296,230862,40.800334261000046,-73.94565697199994 +203348707,10/05/2019,04:38:00,BRONX,40,0,GROCERY/BODEGA,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1009821,236559,40.81594675500003,-73.90762016499998 +203348704,10/05/2019,02:15:00,BRONX,40,0,,false,25-44,M,BLACK,25-44,M,BLACK,1007643,231079,40.80091171200007,-73.91550779499994 +203348706,10/05/2019,00:34:00,BRONX,49,0,,false,,,,25-44,M,BLACK,1026424,251705,40.857454424000025,-73.84754276399997 +203348700,10/04/2019,18:34:00,BRONX,44,1,,true,25-44,M,BLACK,18-24,M,BLACK,1007022,243322,40.834516921000045,-73.91770925599997 +203348699,10/04/2019,01:51:00,BRONX,43,0,,false,,,,25-44,M,BLACK,1021155,242972,40.83350852400008,-73.86663818999993 +203259385,10/03/2019,21:39:00,BROOKLYN,79,0,,true,45-64,M,BLACK,18-24,M,BLACK,998136,187813,40.68217738700002,-73.949935623 +203348703,10/03/2019,14:27:00,BROOKLYN,73,0,MULTI DWELL - APT BUILD,false,25-44,M,BLACK,18-24,M,BLACK,1008529,180190,40.66123156200007,-73.91249125199994 +203211777,10/03/2019,01:45:00,BROOKLYN,67,0,MULTI DWELL - APT BUILD,true,,,,25-44,M,BLACK,1004729,174146,40.64465170600005,-73.92620615399994 +203211776,10/03/2019,00:38:00,MANHATTAN,33,0,,true,,,,25-44,M,WHITE HISPANIC,1001505,245382,40.840183525000036,-73.93764097999998 +203207191,10/02/2019,20:14:00,BRONX,44,0,,false,18-24,M,WHITE HISPANIC,<18,M,WHITE HISPANIC,1007885,246406,40.842979335000045,-73.91457972899997 +203207192,10/02/2019,16:47:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1004856,187468,40.68121734900007,-73.92570780199996 +203207193,10/02/2019,13:26:00,BROOKLYN,79,0,,false,<18,M,BLACK,18-24,M,BLACK,1001139,192775,40.69579171600003,-73.939095905 +203148056,10/01/2019,13:10:00,QUEENS,103,2,MULTI DWELL - PUBLIC HOUS,true,45-64,M,BLACK,18-24,M,BLACK,1040893,194012,40.699021834000064,-73.79572395699995 +203083804,09/30/2019,13:49:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,998869,230618,40.799665264000055,-73.94719977999995 +203083804,09/30/2019,13:49:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,true,18-24,M,BLACK,18-24,M,BLACK,998869,230618,40.799665264000055,-73.94719977999995 +203041425,09/29/2019,23:15:00,BRONX,52,0,,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK HISPANIC,1010668,253614,40.86275525800004,-73.904493002 +203041429,09/29/2019,18:30:00,STATEN ISLAND,120,0,,false,,,,<18,M,BLACK,962585,165738,40.62157070600006,-74.07804344 +203041424,09/29/2019,00:35:00,BRONX,47,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,WHITE,1026855,262287,40.88649666100008,-73.84591741799994 +203041430,09/28/2019,01:17:00,BRONX,42,0,,true,,,,18-24,M,BLACK,1012860,244801,40.83855936400005,-73.89660592299998 +203042901,09/27/2019,23:29:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,BLACK,1019084,183993,40.671634710000035,-73.87442765599997 +203041427,09/27/2019,21:45:00,QUEENS,101,0,,false,18-24,M,BLACK,25-44,F,BLACK,1051162,155661,40.59368532700007,-73.75907037999998 +203041423,09/27/2019,20:40:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,F,BLACK,1013031,182526,40.66762987300007,-73.89625447799993 +203041423,09/27/2019,20:40:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1013031,182526,40.66762987300007,-73.89625447799993 +203041423,09/27/2019,20:40:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1013031,182526,40.66762987300007,-73.89625447799993 +203041432,09/27/2019,20:03:00,QUEENS,101,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1047439,156663,40.59646293100008,-73.77246640899993 +203041432,09/27/2019,20:03:00,QUEENS,101,2,MULTI DWELL - PUBLIC HOUS,true,,,,18-24,M,BLACK,1047439,156663,40.59646293100008,-73.77246640899993 +203041432,09/27/2019,20:03:00,QUEENS,101,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1047439,156663,40.59646293100008,-73.77246640899993 +203041432,09/27/2019,20:03:00,QUEENS,101,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1047439,156663,40.59646293100008,-73.77246640899993 +203041428,09/26/2019,19:00:00,BROOKLYN,84,0,,false,18-24,M,BLACK,25-44,M,WHITE,988226,192253,40.69437416800002,-73.98566339999996 +202944931,09/26/2019,14:00:00,MANHATTAN,25,0,,false,,,,25-44,M,BLACK,999155,230606,40.799631850000026,-73.94616681699993 +202944932,09/26/2019,02:30:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,25-44,F,BLACK HISPANIC,25-44,M,BLACK,1005170,235308,40.812525348000065,-73.92442689199999 +202900139,09/25/2019,19:15:00,BROOKLYN,69,0,,false,,,,18-24,M,BLACK,1014030,174239,40.64488058200004,-73.89268997599999 +202855057,09/24/2019,22:51:00,BROOKLYN,71,0,,false,,,,45-64,F,BLACK,997631,178916,40.65775788800004,-73.95177405399994 +202853370,09/24/2019,21:00:00,BRONX,42,0,,false,25-44,M,UNKNOWN,25-44,M,BLACK,1014493,242565,40.832416753000075,-73.89071440599997 +202853371,09/24/2019,17:45:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,1006117,183402,40.67005407200002,-73.92117453999998 +202853369,09/24/2019,16:35:00,BRONX,46,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,<18,M,BLACK,1006938,248232,40.84799365100001,-73.91799620099994 +202804360,09/23/2019,19:50:00,BROOKLYN,81,0,,false,,,,25-44,M,BLACK,1006290,186730,40.67918825200008,-73.92054002199995 +202804358,09/23/2019,17:48:00,BROOKLYN,70,0,,false,,,,25-44,F,BLACK,995849,172757,40.64085528000004,-73.95820727299997 +202804358,09/23/2019,17:48:00,BROOKLYN,70,0,,false,,,,45-64,F,BLACK,995849,172757,40.64085528000004,-73.95820727299997 +202804357,09/23/2019,11:45:00,MANHATTAN,23,2,MULTI DWELL - APT BUILD,false,25-44,M,BLACK,18-24,M,BLACK HISPANIC,998950,229227,40.79584721300005,-73.94691026399995 +202804357,09/23/2019,11:45:00,MANHATTAN,23,2,MULTI DWELL - APT BUILD,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK HISPANIC,998950,229227,40.79584721300005,-73.94691026399995 +202804359,09/23/2019,02:10:00,MANHATTAN,30,0,,false,,,,18-24,M,WHITE HISPANIC,996722,238203,40.82048727700004,-73.95494033399994 +202807633,09/23/2019,00:23:00,BRONX,50,0,,false,,,,25-44,M,WHITE HISPANIC,1011047,256269,40.870041281000056,-73.90311219699998 +202770945,09/22/2019,20:38:00,BRONX,42,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK,25-44,M,BLACK,1008459,239672,40.82449489700008,-73.91252947799995 +202770951,09/22/2019,20:30:00,BROOKLYN,67,0,,false,,,,45-64,M,BLACK,999010,171976,40.638706899000056,-73.94681909099995 +202770950,09/22/2019,20:17:00,QUEENS,113,0,,false,,,,18-24,M,BLACK,1049137,194504,40.700315647000025,-73.76598816099995 +202770950,09/22/2019,20:17:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1049137,194504,40.700315647000025,-73.76598816099995 +202770947,09/22/2019,03:40:00,BRONX,45,0,,false,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1028868,236932,40.81689486900007,-73.83880601299995 +202770949,09/21/2019,22:49:00,QUEENS,113,0,,true,,,,18-24,M,BLACK,1052349,190359,40.68891449000005,-73.75444613099995 +202770948,09/21/2019,20:45:00,BROOKLYN,67,0,,false,25-44,M,BLACK,25-44,M,BLACK,998553,172620,40.64047529100003,-73.94846436099994 +202770948,09/21/2019,20:45:00,BROOKLYN,67,0,,false,25-44,M,BLACK,45-64,M,BLACK,998553,172620,40.64047529100003,-73.94846436099994 +202770948,09/21/2019,20:45:00,BROOKLYN,67,0,,false,25-44,M,BLACK,65+,M,BLACK,998553,172620,40.64047529100003,-73.94846436099994 +202620767,09/18/2019,19:47:00,BRONX,44,0,,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,1007501,243434,40.834823081000025,-73.91597788499998 +202578454,09/18/2019,00:30:00,MANHATTAN,28,0,,false,,,,45-64,M,BLACK,997406,230838,40.80027140300007,-73.95248348799998 +202562770,09/17/2019,22:37:00,BRONX,44,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,UNKNOWN,1007174,239543,40.82414425700006,-73.91717287899996 +202566072,09/17/2019,08:51:00,STATEN ISLAND,120,0,,false,25-44,M,BLACK,UNKNOWN,F,WHITE HISPANIC,961362,164393,40.617875887000025,-74.08244438599996 +202504685,09/17/2019,00:44:00,QUEENS,108,0,,false,18-24,U,UNKNOWN,18-24,M,WHITE HISPANIC,1010565,210808,40.74526492500007,-73.90503314699998 +202504683,09/16/2019,19:33:00,MANHATTAN,25,0,,false,,,,25-44,F,BLACK,1000558,231080,40.80093037300003,-73.94109824099996 +202504682,09/16/2019,00:20:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,990325,192487,40.69501525100002,-73.97809388299999 +202457199,09/15/2019,23:20:00,BROOKLYN,88,0,MULTI DWELL - APT BUILD,true,45-64,M,BLACK,25-44,F,BLACK,992117,193223,40.69703399000008,-73.97163074399998 +202457202,09/15/2019,18:55:00,MANHATTAN,32,0,,false,,,,25-44,M,BLACK,1001520,238402,40.82102539800008,-73.93760473699997 +202457205,09/15/2019,05:44:00,BRONX,52,0,,false,18-24,M,BLACK,18-24,M,BLACK,1014472,254004,40.863813486000026,-73.89073873399997 +202457206,09/15/2019,00:46:00,BRONX,43,0,,false,,,,18-24,M,BLACK,1020734,239126,40.82295411300004,-73.86818046599996 +202457201,09/14/2019,05:33:00,BROOKLYN,83,0,,false,25-44,M,BLACK,25-44,M,BLACK,1008603,191767,40.693007599000055,-73.91218269899997 +202457203,09/14/2019,00:09:00,MANHATTAN,34,0,,true,,,,18-24,M,WHITE HISPANIC,1003133,249705,40.85204555700005,-73.93174513099996 +202458696,09/13/2019,20:47:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,45-64,M,BLACK,998368,189350,40.68639573400003,-73.949095931 +202457204,09/13/2019,17:53:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1010688,239927,40.82518840900008,-73.90447465599993 +202356982,09/12/2019,20:20:00,BRONX,47,0,,false,,,,25-44,M,WHITE HISPANIC,1023230,262594,40.88735603500004,-73.85902567999993 +202325345,09/12/2019,05:52:00,MANHATTAN,32,0,,true,25-44,M,BLACK,25-44,M,BLACK,1000186,239141,40.82305625200007,-73.94242273799993 +202356981,09/12/2019,01:20:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,1004928,181897,40.665926040000045,-73.92546530099996 +202356981,09/12/2019,01:20:00,BROOKLYN,77,0,,false,,,,25-44,M,BLACK,1004928,181897,40.665926040000045,-73.92546530099996 +202302189,09/11/2019,23:53:00,BROOKLYN,77,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,WHITE HISPANIC,1005432,185233,40.67508142100007,-73.92363809599993 +202301559,09/11/2019,21:10:00,QUEENS,105,0,,false,,,,25-44,M,BLACK,1045484,181998,40.66601566000002,-73.77927619999997 +202302188,09/11/2019,20:00:00,BROOKLYN,67,0,,false,,,,45-64,M,BLACK,1007016,178100,40.65549899200005,-73.91795169699996 +202244820,09/10/2019,22:11:00,MANHATTAN,23,0,,false,,,,25-44,M,BLACK,1001924,227875,40.792130892000046,-73.936172792 +202140604,09/08/2019,20:19:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1051184,191065,40.69086117800003,-73.75863991899996 +202139998,09/07/2019,23:48:00,MANHATTAN,26,0,,false,25-44,U,UNKNOWN,25-44,M,WHITE,996463,235457,40.812950638000075,-73.95588109399995 +202139599,09/06/2019,16:52:00,BROOKLYN,83,0,PVT HOUSE,true,25-44,M,BLACK,25-44,M,BLACK,1008507,191420,40.69205542900005,-73.91253013099998 +202139599,09/06/2019,16:52:00,BROOKLYN,83,0,PVT HOUSE,true,18-24,M,UNKNOWN,25-44,M,BLACK,1008507,191420,40.69205542900005,-73.91253013099998 +202139996,09/06/2019,16:00:00,BROOKLYN,77,0,,false,25-44,F,BLACK,25-44,M,BLACK,1002251,183677,40.67081759000007,-73.93511008699994 +202038516,09/05/2019,20:48:00,BROOKLYN,67,0,,true,,,,25-44,M,BLACK,997923,173810,40.64374258000004,-73.95073198799997 +201982887,09/04/2019,20:30:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1009347,183819,40.67119007600007,-73.90952938099997 +201982888,09/04/2019,20:00:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1021153,182357,40.66713587700008,-73.86697804199997 +201982886,09/04/2019,00:48:00,BRONX,42,0,,false,,,,25-44,M,BLACK,1007582,239642,40.82441491600008,-73.91569835799999 +201875866,09/02/2019,23:44:00,STATEN ISLAND,122,0,,true,,,,18-24,M,WHITE HISPANIC,951830,161855,40.610879854000075,-74.11676658399993 +201875867,09/02/2019,21:05:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,998368,189350,40.68639573400003,-73.949095931 +201875868,09/02/2019,20:25:00,BRONX,48,0,,false,25-44,M,BLACK,18-24,F,BLACK,1013873,250614,40.85451099000005,-73.89291929999997 +201875865,09/02/2019,12:09:00,BRONX,47,0,,false,18-24,M,BLACK,25-44,M,BLACK,1022134,261091,40.883235548000066,-73.86299798899995 +201875864,09/02/2019,05:30:00,BRONX,48,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK HISPANIC,18-24,M,BLACK,1017483,245763,40.841183585000074,-73.87989381599994 +201858654,09/02/2019,04:17:00,QUEENS,102,0,,false,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1034150,193486,40.69761867900007,-73.82004575599996 +201858654,09/02/2019,04:17:00,QUEENS,102,0,,true,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1034150,193486,40.69761867900007,-73.82004575599996 +201858654,09/02/2019,04:17:00,QUEENS,102,0,,false,,,,25-44,M,WHITE HISPANIC,1034150,193486,40.69761867900007,-73.82004575599996 +201858654,09/02/2019,04:17:00,QUEENS,102,0,,true,,,,25-44,M,WHITE HISPANIC,1034150,193486,40.69761867900007,-73.82004575599996 +201856914,09/02/2019,03:42:00,BROOKLYN,83,0,,true,,,,18-24,M,WHITE HISPANIC,1010170,192777,40.69577536400004,-73.90652809699996 +201858653,09/02/2019,02:57:00,BROOKLYN,70,0,,false,,,,45-64,F,WHITE HISPANIC,996636,172210,40.63935281700003,-73.95537251499997 +201858653,09/02/2019,02:57:00,BROOKLYN,70,0,,true,,,,45-64,F,WHITE HISPANIC,996636,172210,40.63935281700003,-73.95537251499997 +201858653,09/02/2019,02:57:00,BROOKLYN,70,0,,false,,,,45-64,M,WHITE HISPANIC,996636,172210,40.63935281700003,-73.95537251499997 +201858653,09/02/2019,02:57:00,BROOKLYN,70,0,,true,,,,45-64,M,WHITE HISPANIC,996636,172210,40.63935281700003,-73.95537251499997 +201852800,09/01/2019,00:05:00,QUEENS,101,0,,false,,,,25-44,M,BLACK,1043677,155192,40.592451366000034,-73.78602574499998 +201852752,08/31/2019,15:50:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1002397,189963,40.68807093600003,-73.93456684899996 +201852654,08/31/2019,07:42:00,BRONX,45,0,GAS STATION,false,18-24,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,1025184,246300,40.84262515300003,-73.85205834399994 +201851567,08/31/2019,06:05:00,BROOKLYN,72,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,982402,174332,40.64518571800004,-74.00666069199998 +201852779,08/31/2019,02:45:00,QUEENS,105,0,,false,,,,25-44,M,BLACK,1058211,195849,40.703936154000075,-73.73324843399996 +201851566,08/30/2019,22:49:00,QUEENS,104,0,,true,25-44,M,BLACK,18-24,M,WHITE HISPANIC,1010733,198666,40.711937611000046,-73.90447463599996 +201851568,08/30/2019,22:35:00,QUEENS,106,0,,true,25-44,M,BLACK,25-44,M,BLACK,1038635,185105,40.674588380000046,-73.80393908099995 +201851564,08/30/2019,20:30:00,BRONX,44,0,,false,,,,25-44,M,WHITE HISPANIC,1009200,247095,40.84486682000005,-73.90982448999995 +201851563,08/30/2019,19:15:00,BROOKLYN,67,0,,false,,,,25-44,M,WHITE HISPANIC,1004519,171743,40.63805647100002,-73.92697009899997 +201851562,08/30/2019,17:44:00,BROOKLYN,75,0,,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK,1019355,188601,40.68428154800005,-73.87342672099999 +201851565,08/30/2019,17:15:00,BROOKLYN,83,0,LIQUOR STORE,false,18-24,M,BLACK,25-44,M,BLACK,1009856,190833,40.69044044900005,-73.90766784 +201765787,08/30/2019,01:47:00,QUEENS,103,0,,false,25-44,M,BLACK,25-44,M,BLACK,1039614,192065,40.693685878000046,-73.80035253199996 +201765788,08/29/2019,20:45:00,QUEENS,103,0,,false,18-24,M,BLACK,25-44,M,BLACK,1040339,195947,40.70433647000005,-73.79770578099993 +201765788,08/29/2019,20:45:00,QUEENS,103,0,,false,UNKNOWN,U,UNKNOWN,25-44,M,BLACK,1040339,195947,40.70433647000005,-73.79770578099993 +201720171,08/28/2019,15:20:00,MANHATTAN,28,0,,false,25-44,M,BLACK,25-44,M,BLACK,997406,230838,40.80027140300007,-73.95248348799998 +201720172,08/28/2019,00:29:00,BRONX,52,0,,false,,,,45-64,F,UNKNOWN,1010676,253888,40.86350728100007,-73.90446299999998 +201664631,08/27/2019,21:50:00,BRONX,49,0,,false,,,,25-44,M,BLACK,1020762,245865,40.84145059700006,-73.86804261899994 +201664628,08/27/2019,21:33:00,BROOKLYN,71,0,,false,,,,45-64,M,BLACK,1000960,179894,40.660436625000045,-73.93977335499993 +201664629,08/27/2019,14:20:00,BRONX,44,0,,false,,,,25-44,M,BLACK,1008653,241755,40.83021160200008,-73.91182094199996 +201664630,08/27/2019,01:00:00,QUEENS,113,0,,false,<18,M,UNKNOWN,<18,F,UNKNOWN,1043252,187998,40.682499421000045,-73.78726915499993 +201614529,08/26/2019,21:25:00,QUEENS,105,0,,true,,,,18-24,M,BLACK,1057800,176535,40.65092724700002,-73.73494154499997 +201613990,08/26/2019,21:20:00,BRONX,40,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,M,BLACK,1007753,235353,40.81264236700008,-73.91509552299993 +201613991,08/26/2019,15:47:00,QUEENS,113,0,,true,,,,18-24,M,BLACK,1051798,184226,40.672085081000034,-73.75649442199995 +201575315,08/26/2019,03:23:00,MANHATTAN,5,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,WHITE HISPANIC,986929,202082,40.72135294100008,-73.99033666499997 +201573941,08/25/2019,20:20:00,BROOKLYN,62,0,MULTI DWELL - APT BUILD,false,65+,M,WHITE,45-64,F,WHITE,984603,160012,40.60588050000007,-73.99873015699995 +201573935,08/25/2019,17:00:00,QUEENS,110,0,,true,25-44,M,ASIAN / PACIFIC ISLANDER,25-44,M,ASIAN / PACIFIC ISLANDER,1016382,206914,40.73455764800008,-73.88405877499997 +201575313,08/25/2019,04:29:00,BROOKLYN,60,0,,false,18-24,M,UNKNOWN,25-44,M,BLACK,987994,151818,40.583388831000036,-73.986522456 +201573936,08/25/2019,03:20:00,BRONX,52,0,,true,,,,45-64,M,WHITE HISPANIC,1017545,257530,40.87348021900005,-73.87961129699994 +201573939,08/25/2019,01:20:00,QUEENS,115,0,,false,18-24,M,WHITE HISPANIC,45-64,M,UNKNOWN,1021994,213268,40.75197560600003,-73.86377323599999 +201573938,08/25/2019,00:59:00,QUEENS,110,0,,false,,,,18-24,M,BLACK,1022839,208240,40.73817137200007,-73.86075225699994 +201573944,08/24/2019,20:15:00,QUEENS,103,0,,false,,,,25-44,M,BLACK,1040325,191194,40.69129071300006,-73.79779584499995 +201573940,08/24/2019,02:10:00,MANHATTAN,5,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,WHITE HISPANIC,987297,202425,40.72229427400004,-73.98900890899995 +201573942,08/24/2019,00:50:00,BRONX,47,0,,false,18-24,U,UNKNOWN,25-44,M,BLACK,1022270,260274,40.880992555000034,-73.86251079699997 +201575314,08/23/2019,22:10:00,QUEENS,103,0,,false,,,,25-44,M,BLACK,1037451,193561,40.697805308000056,-73.80814071699997 +201573943,08/23/2019,19:18:00,BROOKLYN,63,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1006048,171108,40.63630990100006,-73.92146300499998 +201573937,08/23/2019,17:58:00,BRONX,40,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1006669,233631,40.80791877300004,-73.91901728199997 +201573937,08/23/2019,17:58:00,BRONX,40,0,,false,45-64,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1006669,233631,40.80791877300004,-73.91901728199997 +201483470,08/22/2019,23:47:00,MANHATTAN,9,0,,false,,,,25-44,M,BLACK,988940,205476,40.730667809000074,-73.98307939999995 +201483469,08/22/2019,19:40:00,QUEENS,113,0,PVT HOUSE,false,45-64,M,BLACK,25-44,M,BLACK,1049842,182564,40.66753798700007,-73.76356183699994 +201483468,08/22/2019,18:03:00,BRONX,46,0,,false,25-44,M,BLACK HISPANIC,18-24,M,BLACK,1008224,250621,40.85454734900002,-73.91333944399997 +201483468,08/22/2019,18:03:00,BRONX,46,0,,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK,1008224,250621,40.85454734900002,-73.91333944399997 +201436772,08/21/2019,23:34:00,STATEN ISLAND,120,0,GROCERY/BODEGA,false,<18,M,WHITE HISPANIC,<18,M,WHITE HISPANIC,951232,170429,40.634411467000064,-74.11896229899996 +201436770,08/21/2019,03:42:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1006548,180674,40.662565245000046,-73.91962987899994 +201436771,08/21/2019,01:30:00,BRONX,49,0,,false,25-44,M,BLACK,25-44,M,BLACK HISPANIC,1021136,251009,40.85556779000007,-73.86666264199994 +201384510,08/20/2019,22:11:00,BROOKLYN,60,0,,true,25-44,M,BLACK HISPANIC,25-44,M,BLACK HISPANIC,988124,149736,40.577674096000074,-73.98605562899996 +201384969,08/20/2019,21:25:00,BROOKLYN,73,0,,true,,,,25-44,M,BLACK,1006120,181463,40.66473194200007,-73.92117001499997 +201384509,08/20/2019,20:08:00,QUEENS,103,0,,true,,,,25-44,M,BLACK,1039546,192115,40.69382354100002,-73.800597338 +201339051,08/20/2019,00:29:00,QUEENS,105,0,,true,,,,18-24,M,BLACK,1047537,181372,40.66428299800003,-73.77188182599998 +201291298,08/19/2019,01:26:00,BRONX,42,0,,false,,,,18-24,M,WHITE HISPANIC,1013401,241249,40.82880838400007,-73.89466620499996 +201291297,08/18/2019,03:52:00,BRONX,43,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1021756,236492,40.81572025100007,-73.86450258499997 +201291292,08/18/2019,02:30:00,BROOKLYN,73,0,,false,,,,18-24,M,BLACK,1006376,181512,40.66486580000004,-73.92024708999998 +201291292,08/18/2019,02:30:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1006376,181512,40.66486580000004,-73.92024708999998 +201291295,08/17/2019,22:19:00,BROOKLYN,83,0,,true,,,,25-44,M,BLACK,1009333,191223,40.69151240700006,-73.90955229099995 +201291296,08/17/2019,04:47:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1006918,238567,40.82146607400006,-73.91810115099996 +201291290,08/16/2019,22:25:00,BRONX,52,0,,true,UNKNOWN,M,BLACK,25-44,M,WHITE HISPANIC,1014313,254676,40.86565846400004,-73.89131055799999 +201291290,08/16/2019,22:25:00,BRONX,52,0,,true,UNKNOWN,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,1014313,254676,40.86565846400004,-73.89131055799999 +201291293,08/16/2019,22:19:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1007628,183445,40.670168236000045,-73.91572748899993 +201291291,08/16/2019,16:45:00,MANHATTAN,24,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,18-24,M,BLACK,993964,229442,40.796444217000044,-73.96491761499993 +201291294,08/16/2019,03:06:00,BROOKLYN,75,0,,false,18-24,M,BLACK,18-24,F,BLACK,1017165,183047,40.66904549700007,-73.88135010699995 +201195511,08/15/2019,22:59:00,MANHATTAN,30,0,,false,,,,25-44,M,BLACK,999472,239857,40.82502272800008,-73.945000882 +201147236,08/15/2019,00:26:00,BRONX,41,0,,true,,,,25-44,M,BLACK,1012474,239561,40.824178317000076,-73.89802295699997 +201141629,08/14/2019,23:14:00,BROOKLYN,83,0,,false,25-44,M,BLACK,25-44,M,BLACK,1003183,192859,40.696018140000035,-73.93172454799998 +201141630,08/14/2019,17:10:00,BROOKLYN,75,0,,true,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1015966,188407,40.683761854000075,-73.88564701099993 +201089982,08/13/2019,23:49:00,BROOKLYN,62,0,,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,988770,161130,40.60894803700006,-73.98372250599994 +201089982,08/13/2019,23:49:00,BROOKLYN,62,0,,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,988770,161130,40.60894803700006,-73.98372250599994 +201089981,08/13/2019,23:40:00,MANHATTAN,30,0,,false,,,,25-44,M,WHITE HISPANIC,999924,241388,40.82922409500002,-73.94336412599996 +201089979,08/13/2019,15:55:00,QUEENS,105,0,,false,18-24,M,BLACK,25-44,M,BLACK,1055614,186261,40.67764073700005,-73.74271647099994 +201089980,08/13/2019,03:45:00,BRONX,46,0,GROCERY/BODEGA,false,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1009120,247786,40.84676363700004,-73.91011107099996 +201034737,08/12/2019,19:38:00,MANHATTAN,25,0,,false,<18,M,BLACK,<18,M,BLACK,1001806,230243,40.79863064400007,-73.93659275299996 +201034738,08/12/2019,16:21:00,BROOKLYN,75,0,GROCERY/BODEGA,false,45-64,M,BLACK,25-44,M,BLACK,1012523,180392,40.661774156000035,-73.89809461399994 +201034738,08/12/2019,16:21:00,BROOKLYN,75,0,GROCERY/BODEGA,false,45-64,M,BLACK,45-64,M,BLACK,1012523,180392,40.661774156000035,-73.89809461399994 +201034736,08/12/2019,03:10:00,MANHATTAN,20,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,987818,221369,40.77429060000002,-73.98711927099998 +200994115,08/11/2019,23:42:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,true,45-64,M,WHITE HISPANIC,18-24,M,BLACK,1020965,255753,40.86858934000002,-73.86725479999996 +200994115,08/11/2019,23:42:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,true,45-64,M,WHITE HISPANIC,<18,M,BLACK,1020965,255753,40.86858934000002,-73.86725479999996 +200994116,08/11/2019,23:30:00,BROOKLYN,63,0,,false,,,,25-44,M,BLACK,1007947,158836,40.60262094700005,-73.914663965 +200994114,08/11/2019,04:20:00,BROOKLYN,75,0,,false,,,,25-44,F,WHITE HISPANIC,1019671,180297,40.661487692000044,-73.87233098799999 +200994114,08/11/2019,04:20:00,BROOKLYN,75,0,,false,,,,18-24,M,BLACK,1019671,180297,40.661487692000044,-73.87233098799999 +200995687,08/11/2019,04:00:00,QUEENS,113,0,,false,18-24,M,BLACK,<18,M,BLACK,1040791,190159,40.68844691900005,-73.79612414799993 +200994120,08/11/2019,03:40:00,BROOKLYN,75,0,,false,,,,18-24,F,BLACK,1011772,185617,40.67611797400008,-73.90078017499997 +200994120,08/11/2019,03:40:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1011772,185617,40.67611797400008,-73.90078017499997 +200995689,08/11/2019,02:47:00,BROOKLYN,75,0,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,BLACK,1020214,183053,40.669050105000046,-73.87035911599996 +200994119,08/11/2019,02:17:00,MANHATTAN,13,0,BAR/NIGHT CLUB,false,,,,18-24,M,BLACK,986432,209222,40.74095063100003,-73.99212733199995 +200994118,08/10/2019,23:37:00,BRONX,48,0,,false,,,,18-24,M,WHITE HISPANIC,1014831,245134,40.83946674600002,-73.88948128799996 +200995688,08/10/2019,22:51:00,BROOKLYN,67,0,,false,45-64,M,UNKNOWN,25-44,M,UNKNOWN,1001101,174027,40.64433272300005,-73.93927980499996 +200994112,08/10/2019,22:00:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,45-64,M,BLACK,25-44,M,WHITE HISPANIC,1001896,221756,40.77533592200007,-73.93628998399998 +200994113,08/10/2019,16:50:00,BRONX,40,0,,false,25-44,M,BLACK,25-44,M,BLACK,1006075,236932,40.81698058400008,-73.92115225499998 +200891279,08/08/2019,22:28:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1000504,176531,40.65120677600004,-73.941425027 +200856233,08/08/2019,00:13:00,STATEN ISLAND,121,0,,false,,,,18-24,M,BLACK,937223,171002,40.635920928000075,-74.16943934199998 +200839848,08/06/2019,18:30:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,M,BLACK,1010869,183398,40.67003008100005,-73.90404439699995 +200781634,08/06/2019,14:45:00,BRONX,44,0,MULTI DWELL - APT BUILD,true,18-24,M,BLACK,18-24,M,BLACK,1006954,242413,40.83202215400007,-73.91795806799998 +200899516,08/06/2019,00:27:00,STATEN ISLAND,120,0,,false,18-24,M,BLACK,25-44,M,BLACK,960021,172286,40.63953693600007,-74.08730302399994 +200725653,08/05/2019,20:46:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,999530,214433,40.75524058600007,-73.94484914899994 +200725655,08/05/2019,16:45:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,<18,M,BLACK,1009905,180751,40.662767503000055,-73.90752952599996 +200725654,08/05/2019,01:52:00,BROOKLYN,77,0,,false,,,,25-44,F,BLACK,1004964,183810,40.67117671300008,-73.92532965699996 +200725654,08/05/2019,01:52:00,BROOKLYN,77,0,,false,,,,45-64,F,BLACK,1004964,183810,40.67117671300008,-73.92532965699996 +200725654,08/05/2019,01:52:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,1004964,183810,40.67117671300008,-73.92532965699996 +200725654,08/05/2019,01:52:00,BROOKLYN,77,0,,false,,,,25-44,M,BLACK,1004964,183810,40.67117671300008,-73.92532965699996 +200725652,08/05/2019,01:45:00,BRONX,48,0,,false,,,,25-44,M,BLACK,1017239,246250,40.84252117200003,-73.88077326199993 +200680424,08/04/2019,06:44:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,F,BLACK,1007915,183324,40.66983535600008,-73.91469332599996 +200680426,08/04/2019,04:00:00,BROOKLYN,79,0,,false,,,,25-44,M,BLACK,998225,186768,40.679308959000025,-73.94961690299994 +200668267,08/04/2019,03:47:00,MANHATTAN,26,0,,false,25-44,M,BLACK,25-44,M,BLACK,997306,234542,40.81043801200008,-73.952837473 +200668267,08/04/2019,03:47:00,MANHATTAN,26,0,,true,25-44,M,BLACK,25-44,M,BLACK,997306,234542,40.81043801200008,-73.952837473 +200680425,08/03/2019,23:23:00,BROOKLYN,75,0,,false,18-24,M,BLACK,25-44,F,BLACK,1020209,184499,40.67301906900008,-73.87036942699996 +200680423,08/03/2019,22:05:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK,999584,230371,40.79898610500004,-73.94461786899996 +200656488,08/03/2019,18:01:00,BRONX,42,0,,true,<18,M,BLACK,18-24,M,BLACK,1012541,242362,40.83186604400004,-73.897769064 +200656489,08/03/2019,02:45:00,BRONX,46,0,,true,25-44,M,BLACK,25-44,M,BLACK,1005912,249926,40.852645755000026,-73.92169917899997 +200521041,07/31/2019,15:35:00,QUEENS,115,0,,false,25-44,M,WHITE,18-24,M,WHITE HISPANIC,1021302,213563,40.75278823200006,-73.86626921999994 +200465330,07/30/2019,21:44:00,MANHATTAN,23,0,,false,,,,<18,M,BLACK,999321,229329,40.796126551000036,-73.94557011499995 +200465329,07/30/2019,03:22:00,QUEENS,113,0,,false,25-44,M,BLACK,45-64,M,BLACK,1044898,186376,40.67803628700005,-73.78134910699998 +200408149,07/29/2019,22:37:00,BRONX,42,0,,false,,,,25-44,F,WHITE HISPANIC,1015667,243850,40.83593960600007,-73.88646598899999 +200408147,07/29/2019,22:05:00,BRONX,41,0,,false,,,,18-24,M,BLACK HISPANIC,1011949,239415,40.82377925000004,-73.89992047999993 +200408148,07/29/2019,14:15:00,BRONX,48,0,,false,,,,18-24,M,BLACK,1016042,249486,40.85140742400005,-73.88508408799999 +200408150,07/29/2019,02:18:00,BROOKLYN,81,0,,false,18-24,M,BLACK,25-44,M,BLACK,1003080,186817,40.67943445800007,-73.93211287499997 +200365032,07/28/2019,22:40:00,BRONX,44,0,,false,18-24,M,WHITE HISPANIC,25-44,M,BLACK HISPANIC,1007847,245236,40.83976812900005,-73.91472118499998 +200365035,07/28/2019,21:49:00,BRONX,45,0,,true,25-44,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,1027073,246270,40.84253385300008,-73.84523135199998 +200365038,07/28/2019,20:14:00,BRONX,46,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,BLACK,1006991,249487,40.85143811800003,-73.91780037699993 +200365038,07/28/2019,20:14:00,BRONX,46,0,MULTI DWELL - APT BUILD,false,,,,18-24,M,WHITE HISPANIC,1006991,249487,40.85143811800003,-73.91780037699993 +200365034,07/28/2019,14:35:00,MANHATTAN,30,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,WHITE HISPANIC,25-44,M,BLACK,997408,237516,40.81860066000007,-73.95246317599998 +200365037,07/28/2019,04:00:00,BRONX,50,0,,false,25-44,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1010984,261034,40.88311992000007,-73.90332096899994 +200331332,07/28/2019,01:54:00,BROOKLYN,69,0,,true,,,,18-24,M,BLACK,1010249,170398,40.63434976900004,-73.90632950099996 +200365031,07/28/2019,01:40:00,QUEENS,106,0,,false,,,,25-44,M,WHITE HISPANIC,1023841,184945,40.67422773900006,-73.85727348699999 +200365030,07/28/2019,00:35:00,BRONX,41,0,,false,,,,25-44,M,BLACK,1015656,236156,40.814821817000045,-73.88654175399995 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,false,18-24,M,BLACK,18-24,F,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,true,18-24,M,BLACK,18-24,F,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,false,18-24,M,BLACK,25-44,F,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,true,18-24,M,BLACK,25-44,F,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,false,18-24,M,BLACK,25-44,M,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,true,18-24,M,BLACK,25-44,M,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,false,18-24,M,BLACK,45-64,M,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,true,18-24,M,BLACK,45-64,M,BLACK,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,false,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1011786,178738,40.657236613000066,-73.90075779799997 +200331333,07/27/2019,22:53:00,BROOKLYN,73,0,,true,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1011786,178738,40.657236613000066,-73.90075779799997 +200365033,07/27/2019,09:08:00,BROOKLYN,75,0,GROCERY/BODEGA,false,18-24,M,BLACK,25-44,M,BLACK,1021056,181470,40.664701666000035,-73.86733253799997 +200365036,07/27/2019,01:15:00,BROOKLYN,73,0,,false,,,,18-24,M,BLACK,1007524,188555,40.684194302000044,-73.91608474599997 +200365029,07/27/2019,00:30:00,MANHATTAN,33,0,,false,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1000038,243153,40.83406831000008,-73.94294803999998 +200365028,07/26/2019,21:15:00,BROOKLYN,79,0,,false,,,,25-44,M,BLACK,998489,188550,40.68419972300006,-73.94866132899993 +200272477,07/26/2019,03:35:00,BROOKLYN,75,0,,true,25-44,M,BLACK,25-44,M,ASIAN / PACIFIC ISLANDER,1011808,185390,40.675494798000045,-73.90065131699998 +200263248,07/25/2019,17:49:00,BROOKLYN,71,0,,false,18-24,M,BLACK,25-44,M,BLACK,995671,183339,40.669900788000064,-73.95883073299996 +200263247,07/25/2019,02:17:00,QUEENS,113,0,,false,25-44,M,BLACK,25-44,M,ASIAN / PACIFIC ISLANDER,1052412,191419,40.69182345000007,-73.75420823699994 +200263247,07/25/2019,02:17:00,QUEENS,113,0,,false,25-44,M,UNKNOWN,25-44,M,ASIAN / PACIFIC ISLANDER,1052412,191419,40.69182345000007,-73.75420823699994 +200263247,07/25/2019,02:17:00,QUEENS,113,0,,false,25-44,M,BLACK,25-44,M,BLACK,1052412,191419,40.69182345000007,-73.75420823699994 +200263247,07/25/2019,02:17:00,QUEENS,113,0,,false,25-44,M,UNKNOWN,25-44,M,BLACK,1052412,191419,40.69182345000007,-73.75420823699994 +200209683,07/24/2019,23:20:00,BROOKLYN,83,0,,false,,,,25-44,M,BLACK,1008131,189610,40.68708841900008,-73.91389240999997 +200209679,07/24/2019,19:56:00,BRONX,44,0,,false,,,,45-64,M,BLACK,1006672,241120,40.828473961000036,-73.91898142499997 +200209681,07/24/2019,19:50:00,BROOKLYN,79,0,,false,,,,<18,F,BLACK,1000538,186727,40.67919247000003,-73.94127786699994 +200209682,07/24/2019,17:00:00,QUEENS,109,0,,false,25-44,M,WHITE,25-44,M,WHITE,1034255,227687,40.79149108400002,-73.81941282399998 +200209680,07/24/2019,13:20:00,BRONX,47,0,,false,25-44,M,BLACK,25-44,M,WHITE,1028124,257461,40.87324459100006,-73.84135960699997 +200155033,07/23/2019,19:49:00,BROOKLYN,69,0,,false,18-24,M,BLACK,18-24,M,BLACK,1013937,169957,40.633127726000055,-73.89304393799993 +200155465,07/23/2019,02:10:00,BROOKLYN,90,0,,false,18-24,M,WHITE HISPANIC,<18,M,BLACK HISPANIC,996036,197616,40.70908739400005,-73.95748999799997 +200099025,07/22/2019,22:27:00,BRONX,44,0,,false,25-44,M,WHITE HISPANIC,25-44,M,BLACK,1010044,244313,40.83722861900003,-73.90678471699994 +200056613,07/21/2019,22:33:00,BRONX,45,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK HISPANIC,1033678,238650,40.821584683000026,-73.82141588799993 +200056611,07/21/2019,15:22:00,MANHATTAN,23,0,,false,25-44,M,BLACK,<18,M,BLACK,998684,229230,40.79585588600002,-73.94787095499998 +200056616,07/21/2019,02:00:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1015734,177743,40.65449240100002,-73.886533307 +200056614,07/21/2019,01:58:00,BROOKLYN,60,0,,false,18-24,M,BLACK,18-24,M,BLACK,989472,148971,40.57557363000007,-73.98120362499998 +200056615,07/20/2019,05:00:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,WHITE HISPANIC,1009077,214329,40.75493348100008,-73.91039019299996 +200056612,07/19/2019,23:50:00,BRONX,46,0,,false,25-44,M,BLACK,18-24,M,BLACK,1008497,248717,40.84932069000007,-73.91235948099995 +200056612,07/19/2019,23:50:00,BRONX,46,0,,false,UNKNOWN,U,UNKNOWN,18-24,M,BLACK,1008497,248717,40.84932069000007,-73.91235948099995 +200056608,07/19/2019,20:54:00,BRONX,42,0,,false,,,,18-24,M,BLACK,1010567,240691,40.827285732000064,-73.90490886099997 +200056610,07/19/2019,18:44:00,BRONX,46,0,,false,<18,M,BLACK,18-24,M,BLACK,1012551,251121,40.85590689000002,-73.89769596199994 +199900180,07/17/2019,16:38:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,999585,214041,40.75416455100003,-73.94465152299993 +199900181,07/17/2019,07:33:00,MANHATTAN,25,0,,false,18-24,M,BLACK,18-24,M,BLACK,1001756,233153,40.806617895000045,-73.93676575499995 +199844336,07/16/2019,21:30:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,BLACK,1000102,229680,40.79708858400005,-73.94274857999993 +199844336,07/16/2019,21:30:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,1000102,229680,40.79708858400005,-73.94274857999993 +199785879,07/15/2019,17:35:00,MANHATTAN,25,0,,false,18-24,M,BLACK,<18,M,BLACK,1000550,230489,40.79930825400004,-73.94112857099998 +199752462,07/15/2019,01:00:00,MANHATTAN,25,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1002785,230463,40.799232486000044,-73.93305619799997 +199752462,07/15/2019,01:00:00,MANHATTAN,25,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1002785,230463,40.799232486000044,-73.93305619799997 +199786226,07/15/2019,00:07:00,BROOKLYN,73,0,,false,,,,18-24,M,BLACK,1009869,180290,40.66150226400004,-73.90766103699997 +199744073,07/14/2019,22:43:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1009968,182502,40.667573424000075,-73.90729576599993 +199744071,07/14/2019,03:45:00,BRONX,45,0,,false,25-44,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1032140,242004,40.83079891400007,-73.82694879599995 +199741932,07/14/2019,02:22:00,MANHATTAN,25,0,,true,,,,25-44,M,BLACK,1001354,234576,40.81052442400005,-73.93821424599997 +199744074,07/14/2019,01:30:00,BROOKLYN,81,0,,false,,,,25-44,M,BLACK HISPANIC,1004748,188134,40.683045618000044,-73.92609516299996 +199744072,07/14/2019,00:28:00,BROOKLYN,73,0,,false,25-44,M,UNKNOWN,45-64,M,BLACK,1009905,180751,40.662767503000055,-73.90752952599996 +199742311,07/14/2019,00:03:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1005657,181039,40.663569288000076,-73.92284026399994 +199742311,07/14/2019,00:03:00,BROOKLYN,67,0,,false,,,,25-44,M,UNKNOWN,1005657,181039,40.663569288000076,-73.92284026399994 +199742308,07/13/2019,23:25:00,BROOKLYN,81,0,,false,,,,18-24,M,BLACK,1003614,186315,40.67805543000002,-73.93018906599998 +199742309,07/13/2019,22:56:00,BRONX,48,0,,false,,,,25-44,M,BLACK HISPANIC,1013952,247178,40.84507992600004,-73.89264894999997 +199742307,07/13/2019,21:43:00,BRONX,46,0,,false,18-24,M,BLACK,25-44,M,BLACK,1011711,248986,40.85004960500004,-73.90074122799997 +199728579,07/13/2019,02:45:00,MANHATTAN,9,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,UNKNOWN,990311,201886,40.720813298000046,-73.97813591099998 +199728579,07/13/2019,02:45:00,MANHATTAN,9,2,MULTI DWELL - PUBLIC HOUS,true,<18,M,BLACK,25-44,M,UNKNOWN,990311,201886,40.720813298000046,-73.97813591099998 +199728579,07/13/2019,02:45:00,MANHATTAN,9,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,WHITE HISPANIC,25-44,M,UNKNOWN,990311,201886,40.720813298000046,-73.97813591099998 +199742305,07/13/2019,00:43:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,65+,F,BLACK,999155,226676,40.788845063000046,-73.94617553799998 +199742305,07/13/2019,00:43:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,45-64,M,BLACK,999155,226676,40.788845063000046,-73.94617553799998 +199742305,07/13/2019,00:43:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,999155,226676,40.788845063000046,-73.94617553799998 +199742303,07/12/2019,22:50:00,QUEENS,115,0,,false,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1019596,213314,40.75211177400007,-73.87242800499997 +199742306,07/12/2019,22:35:00,QUEENS,113,0,,false,<18,M,BLACK,65+,F,BLACK,1044480,188539,40.68397606800004,-73.78283677199995 +199658515,07/12/2019,01:50:00,QUEENS,109,0,,false,,,,25-44,M,WHITE HISPANIC,1031989,209995,40.74294374700002,-73.82772191799995 +199637606,07/11/2019,21:45:00,BRONX,46,0,,true,18-24,M,UNKNOWN,25-44,M,WHITE HISPANIC,1012078,252019,40.85837313300004,-73.89940208399997 +199637606,07/11/2019,21:45:00,BRONX,46,0,,true,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1012078,252019,40.85837313300004,-73.89940208399997 +199582060,07/10/2019,02:56:00,BROOKLYN,69,0,,false,25-44,M,BLACK,25-44,M,BLACK,1012579,175845,40.64929346200007,-73.89791186799994 +199582060,07/10/2019,02:56:00,BROOKLYN,69,0,,true,25-44,M,BLACK,25-44,M,BLACK,1012579,175845,40.64929346200007,-73.89791186799994 +199526931,07/09/2019,10:00:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,<18,F,BLACK,1003112,216851,40.76187046200005,-73.93191334299998 +199467222,07/08/2019,23:32:00,BRONX,48,0,,false,,,,25-44,M,WHITE HISPANIC,1016293,250009,40.85284199500006,-73.88417430999993 +199467222,07/08/2019,23:32:00,BRONX,48,0,,false,,,,<18,M,WHITE HISPANIC,1016293,250009,40.85284199500006,-73.88417430999993 +199467225,07/08/2019,17:40:00,BROOKLYN,71,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,M,BLACK,1002948,182618,40.66790942700004,-73.93260042799993 +199467225,07/08/2019,17:40:00,BROOKLYN,71,0,MULTI DWELL - APT BUILD,true,18-24,M,BLACK,25-44,M,BLACK,1002948,182618,40.66790942700004,-73.93260042799993 +200839849,07/07/2019,20:20:00,QUEENS,102,0,HOSPITAL,false,,,,25-44,F,BLACK,1035310,194572,40.70059287300006,-73.81585419699996 +199422329,07/07/2019,10:50:00,BROOKLYN,60,0,PVT HOUSE,false,18-24,M,BLACK,25-44,F,BLACK,985897,148507,40.574301425000044,-73.99407278899997 +199403139,07/07/2019,00:30:00,STATEN ISLAND,120,0,,false,,,,18-24,M,BLACK,950823,170806,40.63544471700004,-74.12043775599993 +199403138,07/06/2019,23:45:00,MANHATTAN,28,0,,false,,,,25-44,M,BLACK,997800,229887,40.79766057200004,-73.95106232399996 +199403137,07/06/2019,00:03:00,BROOKLYN,67,0,MULTI DWELL - APT BUILD,false,,,,<18,M,BLACK,997786,177027,40.652572760000055,-73.951219199 +199408422,07/05/2019,23:12:00,QUEENS,105,0,,true,,,,25-44,M,BLACK,1053876,181365,40.66421620500005,-73.74903292999993 +199403136,07/05/2019,21:25:00,BRONX,47,0,,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,1020357,259231,40.87813788000005,-73.86943433699997 +199403136,07/05/2019,21:25:00,BRONX,47,0,,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1020357,259231,40.87813788000005,-73.86943433699997 +199401908,07/05/2019,17:20:00,BRONX,41,0,PVT HOUSE,false,18-24,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1015346,236367,40.815402050000046,-73.88766070399998 +199401908,07/05/2019,17:20:00,BRONX,41,0,PVT HOUSE,false,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1015346,236367,40.815402050000046,-73.88766070399998 +199483245,07/05/2019,10:48:00,BRONX,46,0,MULTI DWELL - APT BUILD,true,45-64,M,WHITE HISPANIC,25-44,M,BLACK,1005992,249443,40.85131986700002,-73.92141156699995 +199325319,07/05/2019,04:25:00,BRONX,52,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1014384,256796,40.87147697300003,-73.89104432799998 +199325320,07/05/2019,04:15:00,BRONX,44,0,,false,,,,18-24,M,BLACK HISPANIC,1007070,241390,40.82921401300007,-73.917542369 +199325321,07/05/2019,04:10:00,MANHATTAN,28,0,,false,,,,18-24,M,BLACK,998688,233318,40.80707632000008,-73.94784771899998 +199325325,07/05/2019,04:02:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1015157,243351,40.834571796000034,-73.88831133599997 +199325322,07/05/2019,03:36:00,BROOKLYN,71,0,,false,,,,25-44,M,BLACK,1002882,181672,40.66531300600008,-73.93284095299998 +199323631,07/05/2019,02:45:00,MANHATTAN,25,0,,false,,,,25-44,M,BLACK,1000558,231080,40.80093037300003,-73.94109824099996 +199325323,07/05/2019,01:14:00,BRONX,48,0,PVT HOUSE,true,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1016293,250009,40.85284199500006,-73.88417430999993 +199325324,07/05/2019,00:10:00,BROOKLYN,75,0,,false,,,,25-44,F,BLACK,1016729,184070,40.67185501100005,-73.88291686099996 +199325324,07/05/2019,00:10:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1016729,184070,40.67185501100005,-73.88291686099996 +199314079,07/04/2019,23:22:00,BRONX,46,0,,false,,,,25-44,M,BLACK,1008934,249674,40.85194616000007,-73.91077639999997 +199314080,07/04/2019,21:16:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,999446,171582,40.63762471600006,-73.94524900899995 +199298013,07/04/2019,06:20:00,BROOKLYN,67,0,,false,,,,25-44,F,BLACK,1008050,178718,40.65719254700008,-73.91422293299998 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,WHITE,18-24,M,BLACK,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,WHITE,25-44,M,WHITE HISPANIC,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,UNKNOWN,U,UNKNOWN,18-24,M,BLACK,999925,214507,40.755443005000075,-73.94342324599995 +199247701,07/03/2019,00:04:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,UNKNOWN,U,UNKNOWN,25-44,M,WHITE HISPANIC,999925,214507,40.755443005000075,-73.94342324599995 +199188161,07/02/2019,05:10:00,BROOKLYN,77,0,,false,,,,45-64,M,BLACK,1004161,181456,40.664717351000036,-73.92823133899999 +199174261,07/01/2019,22:10:00,BRONX,48,0,,false,,,,<18,M,WHITE HISPANIC,1015351,247531,40.846043990000055,-73.88759088499995 +199174260,07/01/2019,17:58:00,MANHATTAN,33,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1001602,246487,40.84321623700004,-73.93728755699995 +199134397,06/30/2019,21:35:00,QUEENS,101,0,,false,,,,25-44,M,WHITE HISPANIC,1051810,158386,40.60115995800004,-73.75670987699993 +199134405,06/30/2019,04:24:00,MANHATTAN,10,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,F,BLACK,982756,210140,40.74347045500008,-74.00539300399998 +199134404,06/30/2019,03:33:00,STATEN ISLAND,120,0,,false,,,,18-24,M,BLACK,961586,167100,40.625306611000035,-74.08164662399997 +199134399,06/30/2019,01:20:00,BRONX,41,0,MULTI DWELL - APT BUILD,true,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1011581,235322,40.81254626700007,-73.90126678999997 +199134403,06/29/2019,18:39:00,BROOKLYN,83,0,,false,45-64,M,BLACK,25-44,M,BLACK,1003824,192762,40.695750503000056,-73.92941323199994 +199134401,06/29/2019,06:00:00,BROOKLYN,70,0,,false,25-44,M,WHITE HISPANIC,18-24,M,WHITE,996021,167201,40.62560501000007,-73.95759720299998 +199134406,06/29/2019,05:48:00,BROOKLYN,69,0,PVT HOUSE,false,18-24,M,BLACK,25-44,F,BLACK,1013573,170157,40.63367789500006,-73.89435450199994 +199134406,06/29/2019,05:48:00,BROOKLYN,69,0,PVT HOUSE,false,18-24,M,BLACK,25-44,M,BLACK,1013573,170157,40.63367789500006,-73.89435450199994 +199134398,06/28/2019,17:35:00,BROOKLYN,73,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,F,BLACK,1008228,183789,40.67111083400005,-73.91356336299998 +199134398,06/28/2019,17:35:00,BROOKLYN,73,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,M,BLACK,1008228,183789,40.67111083400005,-73.91356336299998 +199134402,06/28/2019,12:34:00,BROOKLYN,72,0,MULTI DWELL - APT BUILD,true,25-44,M,ASIAN / PACIFIC ISLANDER,45-64,M,ASIAN / PACIFIC ISLANDER,982753,172890,40.64122780400004,-74.00539554699996 +199134400,06/28/2019,04:30:00,QUEENS,110,0,,false,,,,25-44,M,BLACK,1021509,208334,40.73843508200008,-73.86555105999997 +199061351,06/28/2019,00:26:00,BROOKLYN,83,0,,false,18-24,M,BLACK,<18,M,WHITE HISPANIC,1003823,194497,40.70051267600007,-73.92941179699994 +199052835,06/28/2019,00:25:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,BLACK,1009394,242828,40.833154599000075,-73.90913931099993 +199046249,06/27/2019,21:02:00,QUEENS,101,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1053917,159316,40.603696297000056,-73.74911276899996 +199046250,06/27/2019,01:00:00,BRONX,52,0,,false,,,,18-24,M,BLACK HISPANIC,1009309,252307,40.859171900000035,-73.90941104999997 +199046251,06/27/2019,00:15:00,BRONX,46,0,,false,,,,25-44,M,BLACK,1005725,249742,40.85214118700002,-73.92237572199997 +198998743,06/26/2019,20:45:00,BROOKLYN,81,0,,false,<18,M,BLACK,<18,M,BLACK,1004471,187274,40.68068575000007,-73.92709647699996 +198998742,06/26/2019,00:36:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,UNKNOWN,1009077,214329,40.75493348100008,-73.91039019299996 +198948496,06/25/2019,22:24:00,BROOKLYN,81,0,PVT HOUSE,false,,,,18-24,M,BLACK,1006938,187372,40.680948759000046,-73.91820160899994 +198948498,06/25/2019,16:48:00,QUEENS,108,0,PVT HOUSE,false,65+,M,UNKNOWN,45-64,F,WHITE,1009241,212324,40.74942980400005,-73.90980569899993 +198948497,06/25/2019,02:55:00,BRONX,42,0,,false,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1013492,243405,40.834725680000076,-73.89432798599995 +198948497,06/25/2019,02:55:00,BRONX,42,0,,false,18-24,M,UNKNOWN,25-44,M,BLACK HISPANIC,1013492,243405,40.834725680000076,-73.89432798599995 +198948495,06/25/2019,01:20:00,QUEENS,109,0,,false,<18,M,ASIAN / PACIFIC ISLANDER,18-24,M,UNKNOWN,1032807,217854,40.76451021500004,-73.82471319199995 +198948494,06/25/2019,00:01:00,BRONX,48,0,,false,18-24,M,BLACK,25-44,M,BLACK,1014015,251634,40.85731010600006,-73.89240146599997 +198900605,06/24/2019,18:55:00,MANHATTAN,32,0,GROCERY/BODEGA,true,,,,25-44,M,BLACK,1000928,236480,40.81575118600006,-73.93974841499994 +198900606,06/24/2019,02:49:00,BRONX,41,0,,false,,,,25-44,M,BLACK,1014135,236990,40.817116189000046,-73.89203291499997 +198900607,06/24/2019,00:05:00,BROOKLYN,60,0,,false,,,,18-24,M,BLACK,985897,148507,40.574301425000044,-73.99407278899997 +198858232,06/23/2019,23:08:00,BRONX,43,0,,false,,,,25-44,M,WHITE HISPANIC,1019719,243343,40.834532695000064,-73.87182548099996 +198858233,06/23/2019,20:35:00,BRONX,50,0,,false,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1010218,258831,40.87707565900007,-73.90609965999994 +198858231,06/23/2019,16:00:00,BRONX,44,0,,false,,,,25-44,M,BLACK,1008053,241673,40.82998817300006,-73.91398933899995 +198858231,06/23/2019,16:00:00,BRONX,44,0,,false,,,,<18,M,BLACK,1008053,241673,40.82998817300006,-73.91398933899995 +198858230,06/23/2019,12:02:00,BROOKLYN,61,0,,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,995122,155693,40.59401905900006,-73.96085431599995 +198858229,06/23/2019,02:15:00,BRONX,46,0,,false,18-24,M,BLACK HISPANIC,18-24,M,WHITE HISPANIC,1011477,250772,40.85495236700007,-73.90157978699995 +198858229,06/23/2019,02:15:00,BRONX,46,0,,false,<18,M,BLACK HISPANIC,18-24,M,WHITE HISPANIC,1011477,250772,40.85495236700007,-73.90157978699995 +198858227,06/23/2019,00:30:00,MANHATTAN,30,0,,false,,,,25-44,M,WHITE HISPANIC,997736,240029,40.82549764000004,-73.95127310099997 +198857666,06/22/2019,22:30:00,BRONX,44,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,F,BLACK,1006852,239269,40.82339303400005,-73.91833724599996 +198857666,06/22/2019,22:30:00,BRONX,44,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1006852,239269,40.82339303400005,-73.91833724599996 +198858228,06/22/2019,02:36:00,BROOKLYN,94,2,MULTI DWELL - PUBLIC HOUS,true,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1001064,200639,40.71737668200007,-73.93934673599993 +198857665,06/21/2019,23:30:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1005530,233943,40.808777943000045,-73.923130702 +198760075,06/20/2019,19:09:00,BROOKLYN,75,0,GAS STATION,false,,,,25-44,M,WHITE HISPANIC,1019847,184424,40.67281467300006,-73.87167482899997 +198760073,06/20/2019,19:02:00,BROOKLYN,77,0,,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK,1002625,183496,40.670320017000044,-73.93376235799997 +198760073,06/20/2019,19:02:00,BROOKLYN,77,0,,false,25-44,M,BLACK HISPANIC,<18,M,BLACK,1002625,183496,40.670320017000044,-73.93376235799997 +198760074,06/20/2019,17:43:00,BROOKLYN,63,0,,false,18-24,M,BLACK,25-44,M,BLACK,1001311,166450,40.623535065000056,-73.938542237 +198705941,06/19/2019,18:01:00,BROOKLYN,73,0,,false,45-64,M,BLACK,45-64,M,BLACK,1006976,184974,40.67436669500006,-73.91807268799994 +198705943,06/19/2019,10:40:00,MANHATTAN,5,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,984075,198251,40.71083816400005,-74.000632678 +198653292,06/18/2019,10:50:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,1010854,182099,40.66646466200007,-73.90410359499998 +198595255,06/17/2019,23:21:00,BROOKLYN,73,0,,false,25-44,M,BLACK,45-64,M,WHITE HISPANIC,1009528,186407,40.67829303700007,-73.90886718999997 +198595257,06/17/2019,17:34:00,BRONX,43,0,,false,,,,18-24,M,BLACK,1023757,242233,40.83146892900004,-73.85723973399996 +198595258,06/17/2019,14:47:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1001727,191635,40.69266153900003,-73.93697840199997 +198552502,06/15/2019,04:14:00,MANHATTAN,32,0,,true,<18,M,BLACK,25-44,M,BLACK,999488,235746,40.81373916300004,-73.94495240499998 +198552994,06/15/2019,01:25:00,MANHATTAN,32,0,,false,,,,18-24,M,BLACK,1000313,234249,40.80962885300004,-73.94197557899997 +198552995,06/14/2019,15:57:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1005740,182009,40.666231521000036,-73.92253800099996 +198552996,06/14/2019,02:45:00,BRONX,44,0,,false,,,,25-44,M,WHITE HISPANIC,1007338,246716,40.84383164100007,-73.91655562999993 +198457970,06/13/2019,16:10:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,WHITE HISPANIC,997937,226909,40.789486555000046,-73.95057358399998 +198457971,06/13/2019,15:06:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,991352,192378,40.69471530800007,-73.97439044799995 +198405079,06/12/2019,22:57:00,BROOKLYN,61,0,,false,25-44,M,BLACK,25-44,M,BLACK,1000566,156826,40.59712056600006,-73.94124921699995 +198404597,06/12/2019,19:37:00,BROOKLYN,77,0,GROCERY/BODEGA,true,25-44,M,BLACK,45-64,M,BLACK,1000435,185274,40.67520450200004,-73.94165270399996 +198405080,06/12/2019,19:27:00,STATEN ISLAND,121,0,,false,18-24,M,WHITE HISPANIC,18-24,M,BLACK HISPANIC,937942,170983,40.635872566000046,-74.16684866599996 +198405076,06/12/2019,08:09:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,UNKNOWN,25-44,F,WHITE,1023622,253318,40.86189455900006,-73.85766248 +198405077,06/12/2019,02:14:00,BROOKLYN,77,0,,false,,,,25-44,M,BLACK,993387,187600,40.68159892600005,-73.96705837799993 +198350536,06/11/2019,21:41:00,BROOKLYN,75,0,,false,18-24,M,WHITE HISPANIC,18-24,M,BLACK,1020214,183053,40.669050105000046,-73.87035911599996 +198266990,06/10/2019,02:21:00,MANHATTAN,30,0,,true,18-24,M,BLACK,25-44,M,BLACK,998886,240181,40.825913006000064,-73.94711752799998 +198295765,06/10/2019,00:55:00,BROOKLYN,83,0,,false,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1006847,192241,40.69431327700005,-73.91851337199995 +198295765,06/10/2019,00:55:00,BROOKLYN,83,0,,false,18-24,M,UNKNOWN,25-44,M,BLACK HISPANIC,1006847,192241,40.69431327700005,-73.91851337199995 +198255470,06/09/2019,22:20:00,BRONX,42,0,,false,,,,18-24,M,BLACK,1015667,243850,40.83593960600007,-73.88646598899999 +198255468,06/09/2019,22:13:00,QUEENS,103,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1041409,193095,40.696501571000056,-73.79387084199995 +198255469,06/09/2019,20:01:00,BRONX,52,0,,false,18-24,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,1010327,253958,40.86370044700004,-73.90572447299998 +198255466,06/09/2019,02:25:00,MANHATTAN,25,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,F,BLACK,1000980,231749,40.802765805000035,-73.93957234299995 +198255467,06/08/2019,22:44:00,STATEN ISLAND,120,0,,false,18-24,M,BLACK,25-44,M,BLACK,951610,171560,40.63751722000006,-74.11760587299993 +198255459,06/08/2019,05:05:00,MANHATTAN,33,0,,true,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1001264,244950,40.838998278000076,-73.93851306099998 +198255459,06/08/2019,05:05:00,MANHATTAN,33,0,,true,18-24,M,BLACK HISPANIC,18-24,M,WHITE HISPANIC,1001264,244950,40.838998278000076,-73.93851306099998 +198255465,06/08/2019,02:55:00,BROOKLYN,79,0,MULTI DWELL - APT BUILD,false,,,,45-64,F,BLACK,995826,188145,40.68309197400004,-73.958263731 +198255463,06/08/2019,00:40:00,BROOKLYN,79,0,,false,,,,45-64,M,BLACK,995908,187609,40.68162066800004,-73.95796900499995 +198255461,06/07/2019,22:25:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,F,BLACK,999382,190051,40.68831814300006,-73.94543815999998 +198255461,06/07/2019,22:25:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,999382,190051,40.68831814300006,-73.94543815999998 +198255460,06/07/2019,17:50:00,BROOKLYN,73,0,,false,45-64,M,WHITE HISPANIC,25-44,M,BLACK,1009650,186966,40.67982701600005,-73.90842523899995 +198255460,06/07/2019,17:50:00,BROOKLYN,73,0,,false,45-64,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1009650,186966,40.67982701600005,-73.90842523899995 +198255458,06/07/2019,17:08:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,45-64,F,BLACK,997920,227368,40.790746414000076,-73.95063404199995 +198255457,06/07/2019,10:30:00,BROOKLYN,75,0,PVT HOUSE,false,25-44,M,BLACK,45-64,M,BLACK,1020467,183148,40.66930982700006,-73.86944659699996 +198171739,06/07/2019,00:15:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1025619,256059,40.869408631000056,-73.85042595199997 +198171739,06/07/2019,00:15:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,BLACK,1025619,256059,40.869408631000056,-73.85042595199997 +198171739,06/07/2019,00:15:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,45-64,M,BLACK,1025619,256059,40.869408631000056,-73.85042595199997 +198171739,06/07/2019,00:15:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,45-64,M,BLACK,1025619,256059,40.869408631000056,-73.85042595199997 +198159775,06/06/2019,17:30:00,BROOKLYN,70,0,,false,18-24,M,BLACK,18-24,M,BLACK,998712,170677,40.635141912000044,-73.94789561099998 +198159773,06/06/2019,00:56:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,998989,189991,40.688154120000036,-73.94685537799995 +198107751,06/05/2019,23:38:00,QUEENS,105,0,PVT HOUSE,false,,,,65+,F,BLACK,1053432,185858,40.676551919000076,-73.75058721799998 +198107752,06/05/2019,12:20:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,<18,M,BLACK,1007373,232752,40.80550434700007,-73.91647725199994 +198107752,06/05/2019,12:20:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,WHITE HISPANIC,<18,M,BLACK,1007373,232752,40.80550434700007,-73.91647725199994 +198052649,06/04/2019,22:50:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,990007,192515,40.69509231700005,-73.979240625 +198052648,06/04/2019,19:58:00,BRONX,52,0,,false,18-24,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1011095,253282,40.861842730000035,-73.90295060899997 +198052647,06/04/2019,19:56:00,BROOKLYN,90,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,<18,F,BLACK,1001414,195664,40.70372081700003,-73.93809683099995 +198055667,06/04/2019,02:00:00,BRONX,52,0,,false,,,,25-44,F,WHITE HISPANIC,1013735,255974,40.86922302700003,-73.89339456699997 +197997726,06/03/2019,23:05:00,BRONX,46,0,MULTI DWELL - APT BUILD,false,,,,18-24,M,WHITE HISPANIC,1013293,252852,40.86065555300007,-73.89500620399998 +197997725,06/03/2019,07:07:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK,1016409,178125,40.65553848200005,-73.88409879299998 +197953468,06/02/2019,22:15:00,BROOKLYN,75,0,,true,,,,25-44,M,BLACK,1021396,183855,40.671246534000026,-73.86609385299994 +197953470,06/02/2019,01:56:00,BRONX,41,0,,false,,,,18-24,M,WHITE HISPANIC,1011153,235312,40.812520134000074,-73.90281300199997 +197953469,06/01/2019,23:11:00,BROOKLYN,75,0,RESTAURANT/DINER,false,45-64,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1012920,183086,40.669167307000066,-73.89665221699995 +197953465,06/01/2019,22:20:00,BROOKLYN,71,0,,false,,,,18-24,M,BLACK,1003286,181971,40.66613283600003,-73.93138385999998 +197953467,06/01/2019,22:12:00,BRONX,41,0,,false,18-24,M,BLACK,<18,M,BLACK,1015287,235984,40.81435102900008,-73.88787562499994 +197953467,06/01/2019,22:12:00,BRONX,41,0,,false,<18,M,BLACK,<18,M,BLACK,1015287,235984,40.81435102900008,-73.88787562499994 +197953466,06/01/2019,21:25:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1010706,243782,40.83576922100008,-73.90439441599993 +197953462,06/01/2019,14:14:00,QUEENS,101,0,,false,18-24,M,BLACK,45-64,F,WHITE,1052809,159159,40.60327400700004,-73.75310453299994 +197953462,06/01/2019,14:14:00,QUEENS,101,0,,false,18-24,M,BLACK,25-44,M,BLACK,1052809,159159,40.60327400700004,-73.75310453299994 +197953471,06/01/2019,13:45:00,BROOKLYN,77,0,,false,18-24,M,BLACK,18-24,M,BLACK,996216,184738,40.673740010000074,-73.95686362099997 +197953471,06/01/2019,13:45:00,BROOKLYN,77,0,,false,<18,M,BLACK,18-24,M,BLACK,996216,184738,40.673740010000074,-73.95686362099997 +197953464,06/01/2019,04:47:00,BROOKLYN,73,0,,true,18-24,M,BLACK,25-44,M,BLACK,1008382,187866,40.682300858000076,-73.91299361299998 +197953463,05/31/2019,15:55:00,BROOKLYN,79,0,,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK,1001329,187143,40.68033280500004,-73.93842499899995 +197850804,05/30/2019,05:35:00,BRONX,46,0,,false,25-44,M,WHITE HISPANIC,25-44,M,BLACK HISPANIC,1008550,248223,40.84796466000005,-73.91216969999994 +197850586,05/30/2019,04:33:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1005192,176639,40.65149336800005,-73.92453001199993 +197801426,05/29/2019,10:15:00,BROOKLYN,60,0,,false,18-24,M,BLACK,18-24,M,BLACK,988806,153480,40.58795031200003,-73.98359800899993 +197700945,05/28/2019,04:15:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1017589,180904,40.663161856000045,-73.87983227999997 +197706724,05/28/2019,03:10:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK HISPANIC,1006699,233128,40.80653810100006,-73.918910596 +197700947,05/28/2019,02:42:00,MANHATTAN,32,0,,false,,,,25-44,M,BLACK,1001900,238191,40.82044551200005,-73.93623234699999 +197700946,05/28/2019,01:50:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1000102,229680,40.79708858400005,-73.94274857999993 +197700944,05/28/2019,01:20:00,BROOKLYN,69,0,,false,,,,18-24,M,BLACK,1014401,169812,40.63272816400007,-73.89137286999993 +197692916,05/27/2019,23:32:00,BRONX,42,0,,true,18-24,M,BLACK,18-24,M,BLACK,1013407,243571,40.83518158300007,-73.89463443299998 +197692916,05/27/2019,23:32:00,BRONX,42,0,,true,<18,M,BLACK,18-24,M,BLACK,1013407,243571,40.83518158300007,-73.89463443299998 +197706725,05/27/2019,23:00:00,QUEENS,107,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1036732,207396,40.73578327800004,-73.81062580299994 +197691092,05/27/2019,20:50:00,BROOKLYN,79,0,,false,,,,18-24,M,BLACK,1000286,186745,40.67924233600007,-73.94218636599999 +197691092,05/27/2019,20:50:00,BROOKLYN,79,0,,false,,,,<18,M,BLACK,1000286,186745,40.67924233600007,-73.94218636599999 +197691091,05/27/2019,18:53:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1021254,181801,40.66560936100007,-73.86661702199996 +197691091,05/27/2019,18:53:00,BROOKLYN,75,0,,true,,,,25-44,M,BLACK,1021254,181801,40.66560936100007,-73.86661702199996 +197691090,05/27/2019,18:00:00,BROOKLYN,67,0,,false,18-24,M,BLACK,18-24,M,BLACK,998235,173191,40.64204307200004,-73.94960900699994 +197691090,05/27/2019,18:00:00,BROOKLYN,67,0,,false,<18,M,BLACK,18-24,M,BLACK,998235,173191,40.64204307200004,-73.94960900699994 +197665544,05/27/2019,02:46:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1052435,194734,40.70092214400006,-73.75409174199996 +197662445,05/26/2019,21:22:00,BROOKLYN,71,0,,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1002498,181698,40.665385170000036,-73.93422504099993 +197662447,05/26/2019,21:01:00,BROOKLYN,75,0,,false,,,,25-44,M,WHITE,1019237,189214,40.68596455800008,-73.87384899899996 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,false,18-24,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,false,25-44,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,false,<18,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,true,18-24,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,true,25-44,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197662446,05/26/2019,20:08:00,BROOKLYN,75,0,,true,<18,M,BLACK,25-44,M,BLACK,1015379,182115,40.66649382600008,-73.88779253999998 +197660700,05/26/2019,18:44:00,BROOKLYN,67,0,,false,<18,M,BLACK,<18,M,BLACK,1006437,176073,40.64993678900004,-73.92004510699996 +197660699,05/26/2019,14:00:00,BROOKLYN,77,0,,false,,,,25-44,M,BLACK,1004127,182891,40.668656183000046,-73.92834966199997 +197660693,05/26/2019,05:21:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,F,BLACK,1000552,225907,40.78673189800003,-73.94113246799998 +197660693,05/26/2019,05:21:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,F,BLACK,1000552,225907,40.78673189800003,-73.94113246799998 +197660693,05/26/2019,05:21:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,1000552,225907,40.78673189800003,-73.94113246799998 +197660693,05/26/2019,05:21:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,BLACK,1000552,225907,40.78673189800003,-73.94113246799998 +197660695,05/25/2019,23:58:00,BROOKLYN,75,0,,false,,,,25-44,M,BLACK,1014557,181661,40.66525054900006,-73.890757594 +197660697,05/25/2019,23:40:00,QUEENS,100,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1037554,154246,40.58989372800004,-73.80807989899995 +197660694,05/25/2019,00:12:00,MANHATTAN,7,0,,false,,,,25-44,M,BLACK,988664,200228,40.71626346000005,-73.98407867999998 +197654796,05/24/2019,22:13:00,BRONX,44,0,,false,,,,18-24,M,BLACK,1006954,242413,40.83202215400007,-73.91795806799998 +197654798,05/24/2019,20:29:00,BROOKLYN,67,0,,false,,,,<18,M,BLACK,1004363,176942,40.65232695800007,-73.92751668299998 +197655792,05/24/2019,16:11:00,BROOKLYN,70,0,,false,<18,M,UNKNOWN,18-24,M,BLACK,995678,176383,40.650808090000055,-73.95881728799998 +197654797,05/24/2019,00:23:00,BRONX,49,0,,false,,,,25-44,M,BLACK,1026773,256451,40.87047906600003,-73.84625102199995 +197573448,05/23/2019,20:39:00,BROOKLYN,75,0,,false,25-44,M,BLACK,25-44,M,BLACK,1018964,182071,40.666359726000046,-73.87487014199996 +197573447,05/23/2019,19:16:00,MANHATTAN,34,0,,false,<18,M,BLACK,18-24,M,WHITE HISPANIC,1003718,252533,40.85980630000005,-73.92962232099995 +197534776,05/23/2019,01:35:00,BRONX,40,2,MULTI DWELL - APT BUILD,false,,,,25-44,M,WHITE HISPANIC,1007857,235590,40.81329258800002,-73.91471898299993 +197534775,05/23/2019,00:20:00,BRONX,42,0,,false,,,,25-44,M,BLACK,1014875,244467,40.83763587300007,-73.88932531599994 +197525797,05/22/2019,22:19:00,MANHATTAN,28,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,998330,230187,40.798483162000025,-73.94914747099993 +197525242,05/22/2019,21:32:00,BRONX,42,0,,false,,,,18-24,M,BLACK,1012059,244779,40.83850153900005,-73.89950079699997 +197475508,05/21/2019,22:22:00,BROOKLYN,77,1,,false,<18,M,BLACK,45-64,F,WHITE,995908,183618,40.67066627200006,-73.95797590799998 +197423972,05/20/2019,18:30:00,BRONX,45,0,MULTI DWELL - APT BUILD,false,,,,18-24,M,BLACK,1032380,259229,40.878075016000025,-73.82595788299993 +197423567,05/20/2019,04:30:00,QUEENS,108,0,,false,25-44,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,998672,211187,40.74633257700003,-73.94795301199997 +197381376,05/19/2019,18:37:00,QUEENS,103,0,,false,,,,25-44,M,BLACK,1044315,193135,40.69659211500005,-73.78339071499995 +197381382,05/19/2019,04:17:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1007709,178177,40.65570853100007,-73.91545382599996 +197381379,05/19/2019,02:30:00,MANHATTAN,7,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,WHITE HISPANIC,45-64,M,BLACK,987900,198758,40.712229008000065,-73.98683547899996 +197381384,05/18/2019,21:10:00,BRONX,46,0,,false,,,,18-24,M,WHITE HISPANIC,1011078,248752,40.84940928900005,-73.90303019599996 +197381383,05/18/2019,20:13:00,BROOKLYN,75,0,,false,18-24,M,BLACK,18-24,M,BLACK,1016177,175721,40.64894086900005,-73.88494631099996 +197381381,05/18/2019,18:40:00,MANHATTAN,28,0,,false,,,,18-24,M,BLACK HISPANIC,996922,233397,40.80729586300004,-73.95422681099996 +197381380,05/18/2019,09:53:00,MANHATTAN,32,0,,false,25-44,F,BLACK,45-64,F,BLACK,1000871,237255,40.81787845200005,-73.93995242199998 +197381377,05/18/2019,03:39:00,MANHATTAN,28,0,PVT HOUSE,false,,,,25-44,M,BLACK,998495,229943,40.79781318400006,-73.94855204399995 +197381375,05/17/2019,23:59:00,BRONX,44,0,,false,18-24,M,BLACK HISPANIC,18-24,M,BLACK,1008123,244271,40.837118743000076,-73.91372714799998 +197381374,05/17/2019,21:36:00,MANHATTAN,32,2,MULTI DWELL - PUBLIC HOUS,true,<18,M,BLACK,<18,M,BLACK,999126,235493,40.81304536500005,-73.94626073199998 +197293452,05/16/2019,22:01:00,BRONX,47,0,,false,18-24,M,BLACK,18-24,M,BLACK,1020808,262493,40.88708918800006,-73.86778566699996 +197293452,05/16/2019,22:01:00,BRONX,47,0,,false,18-24,M,BLACK,18-24,M,WHITE,1020808,262493,40.88708918800006,-73.86778566699996 +197293450,05/16/2019,20:15:00,BROOKLYN,79,0,,false,<18,M,BLACK,<18,M,BLACK,1000422,192120,40.69399523200008,-73.94168313999995 +197293451,05/16/2019,19:26:00,BROOKLYN,77,0,,true,18-24,M,BLACK,25-44,M,BLACK,999272,185194,40.67498697000008,-73.94584562599994 +197254458,05/15/2019,19:08:00,BRONX,46,0,,false,18-24,M,BLACK,45-64,M,WHITE HISPANIC,1010606,250926,40.85537769300004,-73.90472771799993 +197254458,05/15/2019,19:08:00,BRONX,46,0,,false,18-24,M,BLACK,<18,M,WHITE HISPANIC,1010606,250926,40.85537769300004,-73.90472771799993 +197254458,05/15/2019,19:08:00,BRONX,46,0,,false,UNKNOWN,U,UNKNOWN,45-64,M,WHITE HISPANIC,1010606,250926,40.85537769300004,-73.90472771799993 +197254458,05/15/2019,19:08:00,BRONX,46,0,,false,UNKNOWN,U,UNKNOWN,<18,M,WHITE HISPANIC,1010606,250926,40.85537769300004,-73.90472771799993 +197200331,05/14/2019,19:45:00,MANHATTAN,34,0,,false,18-24,M,BLACK,25-44,M,BLACK,1005202,253699,40.863003221000035,-73.92425384299997 +197200331,05/14/2019,19:45:00,MANHATTAN,34,0,,false,18-24,M,BLACK HISPANIC,25-44,M,BLACK,1005202,253699,40.863003221000035,-73.92425384299997 +197200331,05/14/2019,19:45:00,MANHATTAN,34,0,,false,25-44,M,WHITE,25-44,M,BLACK,1005202,253699,40.863003221000035,-73.92425384299997 +197200331,05/14/2019,19:45:00,MANHATTAN,34,0,,false,25-44,M,WHITE HISPANIC,25-44,M,BLACK,1005202,253699,40.863003221000035,-73.92425384299997 +197106407,05/11/2019,01:34:00,BRONX,47,0,SOCIAL CLUB/POLICY LOCATI,true,25-44,M,BLACK,25-44,M,BLACK,1024693,261681,40.88484355600008,-73.85374008999997 +197016009,05/09/2019,09:23:00,BROOKLYN,75,0,,false,25-44,M,BLACK,25-44,M,BLACK,1012920,183086,40.669167307000066,-73.89665221699995 +197016008,05/09/2019,01:32:00,MANHATTAN,1,0,BAR/NIGHT CLUB,false,18-24,M,WHITE HISPANIC,25-44,M,BLACK,982762,204595,40.728250797000044,-74.00537012399997 +197016008,05/09/2019,01:32:00,MANHATTAN,1,0,BAR/NIGHT CLUB,false,18-24,M,WHITE HISPANIC,25-44,M,BLACK HISPANIC,982762,204595,40.728250797000044,-74.00537012399997 +196820305,05/04/2019,01:45:00,BRONX,48,0,,false,,,,25-44,M,BLACK,1016691,250307,40.853658463000045,-73.88273420199994 +197423973,05/03/2019,17:08:00,STATEN ISLAND,121,0,,false,,,,25-44,F,WHITE HISPANIC,944564,168983,40.63041514200007,-74.14297795599998 +196820303,05/03/2019,14:24:00,MANHATTAN,28,0,,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK,997399,230992,40.80069410200008,-73.95250846999993 +196730309,05/02/2019,14:35:00,BRONX,42,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK HISPANIC,25-44,M,BLACK,1014588,242096,40.83112915700008,-73.89037323199994 +196678735,05/02/2019,00:23:00,BROOKLYN,75,0,,false,45-64,M,BLACK,25-44,M,BLACK,1016008,185359,40.67539564000003,-73.88550993999998 +196680983,05/02/2019,00:19:00,BRONX,46,0,,false,18-24,M,BLACK,18-24,M,BLACK,1010447,252191,40.85885021100006,-73.90529753999994 +196630584,04/30/2019,18:29:00,MANHATTAN,25,2,MULTI DWELL - PUBLIC HOUS,false,25-44,U,BLACK,18-24,M,BLACK,1002228,234677,40.810799905000074,-73.93505670199994 +196582021,04/30/2019,00:13:00,BROOKLYN,90,0,MULTI DWELL - APT BUILD,false,,,,18-24,M,WHITE HISPANIC,996319,198679,40.712004695000076,-73.95646732699998 +196582020,04/29/2019,01:36:00,BRONX,44,0,,false,,,,45-64,M,BLACK,1005501,245608,40.84079511700002,-73.92319851599996 +196542452,04/27/2019,23:54:00,BROOKLYN,67,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,WHITE HISPANIC,996876,177505,40.65388611000003,-73.95449784399995 +196525187,04/27/2019,11:36:00,BRONX,48,0,MULTI DWELL - APT BUILD,true,25-44,M,BLACK,18-24,M,BLACK HISPANIC,1013952,247178,40.84507992600004,-73.89264894999997 +196414298,04/24/2019,23:15:00,BRONX,44,0,,false,,,,25-44,M,BLACK,1009069,244907,40.83886177100004,-73.91030606099997 +196414299,04/24/2019,14:58:00,BROOKLYN,71,0,,false,,,,25-44,M,BLACK,1001270,180581,40.662321699000074,-73.93865428399994 +196375777,04/24/2019,01:44:00,MANHATTAN,28,0,,true,25-44,M,BLACK,25-44,M,BLACK,999029,231931,40.80326882400004,-73.94661899399993 +196364281,04/23/2019,22:54:00,BRONX,47,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1030386,260908,40.882693990000064,-73.83315683199999 +196364280,04/23/2019,22:53:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK HISPANIC,1010896,244231,40.837001024000074,-73.90370600899996 +196364279,04/23/2019,00:18:00,STATEN ISLAND,121,0,,false,18-24,M,BLACK,18-24,M,BLACK,936722,172119,40.63898417600007,-74.17125230499995 +196315233,04/22/2019,23:15:00,BRONX,42,0,,false,,,,18-24,M,BLACK,1010951,240480,40.82670544500007,-73.903522174 +196315234,04/22/2019,17:20:00,BROOKLYN,81,0,MULTI DWELL - APT BUILD,false,65+,M,BLACK,45-64,M,BLACK,1006938,187372,40.680948759000046,-73.91820160899994 +196315235,04/22/2019,17:01:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,999484,214810,40.75627543400003,-73.94501432899995 +204054325,04/21/2019,05:25:00,BRONX,52,0,,true,25-44,M,BLACK,18-24,M,BLACK,1015814,259929,40.88007108800008,-73.88585904599995 +196276907,04/20/2019,01:22:00,BRONX,40,0,,false,,,,25-44,M,BLACK,1010089,237011,40.81718658800003,-73.90665021099994 +196276904,04/20/2019,01:19:00,BROOKLYN,84,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK,988740,194815,40.70140601600008,-73.983808132 +196276908,04/19/2019,17:43:00,QUEENS,105,0,,false,18-24,M,BLACK,18-24,M,BLACK,1056792,192445,40.694604754000075,-73.73840293399996 +196276903,04/19/2019,00:12:00,QUEENS,113,0,,false,25-44,M,BLACK,25-44,M,BLACK,1053637,190566,40.68947265200006,-73.74979967899996 +196276903,04/19/2019,00:12:00,QUEENS,113,0,,false,25-44,M,BLACK,45-64,M,BLACK,1053637,190566,40.68947265200006,-73.74979967899996 +196193415,04/18/2019,23:24:00,BROOKLYN,75,0,,false,25-44,M,BLACK,25-44,M,BLACK,1018747,183640,40.67066712500008,-73.87564431799996 +196195745,04/18/2019,22:30:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK HISPANIC,998437,228299,40.79330094300008,-73.94876499799993 +196195743,04/18/2019,21:54:00,MANHATTAN,7,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK HISPANIC,989021,200767,40.71774270100008,-73.98279048099994 +196193416,04/18/2019,19:50:00,BROOKLYN,75,0,,false,,,,<18,M,BLACK,1017353,185387,40.67546756600007,-73.88066091799993 +196193414,04/18/2019,18:05:00,BROOKLYN,88,0,,false,,,,<18,F,BLACK,990027,191934,40.693497594000064,-73.97916899999996 +196195746,04/18/2019,16:25:00,MANHATTAN,34,0,,false,25-44,M,BLACK HISPANIC,UNKNOWN,U,UNKNOWN,1002644,250694,40.85476109900002,-73.93351000399997 +196193413,04/18/2019,13:53:00,QUEENS,108,0,DRUG STORE,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE,1007610,211185,40.746307995000045,-73.91569614099996 +196145427,04/17/2019,16:34:00,MANHATTAN,7,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK,989578,198999,40.712889645000075,-73.98078254999997 +196095817,04/16/2019,20:20:00,QUEENS,106,0,,false,25-44,M,BLACK,25-44,M,BLACK,1038488,183613,40.67049408600008,-73.80448103199996 +196095818,04/16/2019,19:45:00,QUEENS,105,0,,false,,,,25-44,M,BLACK,1057395,201036,40.71817995600002,-73.73613510799998 +196095816,04/16/2019,17:40:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1001955,216397,40.760626741000074,-73.93609107899994 +196095819,04/16/2019,17:12:00,BROOKLYN,77,2,MULTI DWELL - PUBLIC HOUS,true,,,,18-24,M,BLACK,1003789,183568,40.67051514900004,-73.92956610799997 +196043547,04/15/2019,08:34:00,QUEENS,113,0,,false,25-44,F,BLACK,25-44,M,BLACK HISPANIC,1043652,190369,40.68900458000007,-73.78580605399996 +196043547,04/15/2019,08:34:00,QUEENS,113,0,,false,25-44,M,UNKNOWN,25-44,M,BLACK HISPANIC,1043652,190369,40.68900458000007,-73.78580605399996 +196000891,04/14/2019,18:35:00,MANHATTAN,30,0,GROCERY/BODEGA,true,,,,45-64,M,WHITE HISPANIC,997098,237847,40.81950961800004,-73.95358253499995 +196000892,04/14/2019,14:03:00,BRONX,52,0,,false,,,,18-24,M,BLACK,1010728,252491,40.85967278300007,-73.90428052199997 +196000889,04/14/2019,03:35:00,MANHATTAN,9,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,990832,202826,40.723392998000065,-73.97625544299996 +196000890,04/14/2019,03:03:00,BRONX,52,0,,false,,,,25-44,M,BLACK HISPANIC,1010032,252384,40.85938115900007,-73.90679704999997 +196000888,04/14/2019,00:50:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1007628,183445,40.670168236000045,-73.91572748899993 +196000888,04/14/2019,00:50:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1007628,183445,40.670168236000045,-73.91572748899993 +195978521,04/13/2019,06:04:00,QUEENS,103,0,,true,,,,45-64,M,BLACK,1042298,192835,40.695782146000056,-73.79066712199995 +195978522,04/13/2019,01:50:00,QUEENS,110,0,,true,,,,25-44,M,WHITE HISPANIC,1022285,212504,40.74987737400005,-73.86272726099996 +196000887,04/13/2019,00:01:00,MANHATTAN,32,0,BAR/NIGHT CLUB,false,,,,25-44,F,BLACK,1001406,241015,40.82819756300007,-73.93800993799994 +195907494,04/11/2019,03:10:00,MANHATTAN,32,0,,false,25-44,M,BLACK,25-44,M,BLACK,1001288,238999,40.82266444500005,-73.93844143899997 +195854214,04/10/2019,18:05:00,BRONX,48,0,,false,18-24,M,BLACK,18-24,M,BLACK,1015010,250473,40.854120099000056,-73.88880988799998 +195854769,04/10/2019,16:11:00,BROOKLYN,67,0,,true,,,,18-24,M,BLACK,1000243,171648,40.63780446800007,-73.94237719699998 +195799804,04/09/2019,18:20:00,QUEENS,115,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1021031,216635,40.76122121100008,-73.86723053699995 +195799803,04/09/2019,12:25:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,986229,148311,40.573763375000055,-73.99287775699997 +195744020,04/08/2019,21:35:00,BROOKLYN,79,0,GROCERY/BODEGA,false,,,,25-44,M,BLACK,997892,189416,40.68657763600004,-73.950812118 +195743584,04/08/2019,20:35:00,STATEN ISLAND,120,0,,false,18-24,M,BLACK,18-24,M,BLACK,949942,170297,40.63404425200008,-74.12360937499993 +195743585,04/08/2019,19:40:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,1002318,184652,40.67349360900005,-73.93486594799998 +195743583,04/08/2019,16:00:00,BROOKLYN,75,0,FAST FOOD,false,,,,25-44,M,BLACK,1012266,186110,40.67746959700002,-73.89899717699996 +195743581,04/08/2019,11:55:00,QUEENS,115,0,MULTI DWELL - APT BUILD,true,45-64,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1017904,212282,40.74928579900006,-73.87854005699995 +195743582,04/08/2019,04:25:00,BROOKLYN,71,0,HOSPITAL,false,,,,25-44,M,BLACK,1002530,179472,40.65927522700008,-73.93411572899998 +195700548,04/07/2019,15:27:00,QUEENS,105,0,,false,,,,45-64,M,BLACK,1056164,181089,40.66344036200008,-73.74078877299998 +195699916,04/07/2019,09:53:00,BROOKLYN,67,0,,false,,,,25-44,M,BLACK,1004666,181265,40.664191948000045,-73.92641162299998 +195699915,04/07/2019,05:15:00,QUEENS,110,0,,false,,,,18-24,M,BLACK HISPANIC,1018767,207199,40.73533091600007,-73.87545147199995 +195699915,04/07/2019,05:15:00,QUEENS,110,0,,false,,,,<18,M,BLACK HISPANIC,1018767,207199,40.73533091600007,-73.87545147199995 +195699913,04/07/2019,03:15:00,BRONX,47,2,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,M,BLACK,1027514,261656,40.88476156000007,-73.84353817799997 +195699914,04/07/2019,01:45:00,MANHATTAN,32,0,BAR/NIGHT CLUB,false,25-44,M,BLACK,18-24,M,BLACK,1001841,235976,40.814366077000045,-73.93645131899994 +195699912,04/06/2019,20:20:00,BRONX,40,0,,false,18-24,M,BLACK,18-24,M,BLACK,1006022,238221,40.82051865600005,-73.92133955099996 +195700547,04/06/2019,12:58:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,45-64,M,BLACK,989961,192624,40.69539152700002,-73.97940641699995 +195604250,04/04/2019,22:35:00,BROOKLYN,67,0,,false,25-44,M,BLACK,25-44,M,BLACK,1004757,178619,40.656929053000056,-73.92609165799998 +195604251,04/04/2019,21:10:00,QUEENS,105,0,,false,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1057564,200120,40.71566436900008,-73.73553543099996 +195553175,04/03/2019,14:00:00,BRONX,42,0,,false,25-44,M,BLACK,25-44,M,BLACK,1011134,241668,40.829965609000055,-73.90285617699995 +195553175,04/03/2019,14:00:00,BRONX,42,0,,true,25-44,M,BLACK,25-44,M,BLACK,1011134,241668,40.829965609000055,-73.90285617699995 +195440618,04/01/2019,22:21:00,BRONX,42,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,BLACK,1010674,239150,40.82305580800004,-73.90452830099997 +195396614,03/31/2019,21:16:00,BROOKLYN,71,0,,false,,,,18-24,M,BLACK,997631,178916,40.65775788800004,-73.95177405399994 +195396618,03/31/2019,07:29:00,BROOKLYN,79,0,,false,18-24,M,BLACK,25-44,F,BLACK,1001063,186966,40.679847490000036,-73.93938447299998 +195396616,03/31/2019,05:05:00,BROOKLYN,75,0,GROCERY/BODEGA,false,,,,25-44,M,BLACK,1015774,180556,40.66221332200007,-73.88637599799995 +195397264,03/31/2019,03:30:00,BRONX,40,0,,false,25-44,M,BLACK,25-44,M,BLACK,1004261,234901,40.811410352000046,-73.92771191299995 +195396617,03/30/2019,23:30:00,BROOKLYN,77,0,,false,,,,25-44,M,BLACK,998854,184734,40.67372507300007,-73.94735355499995 +195396615,03/30/2019,21:30:00,BROOKLYN,70,0,GROCERY/BODEGA,false,,,,18-24,M,BLACK,994871,177892,40.65495097100006,-73.96172317299995 +195396615,03/30/2019,21:30:00,BROOKLYN,70,0,GROCERY/BODEGA,false,,,,<18,M,BLACK,994871,177892,40.65495097100006,-73.96172317299995 +195396612,03/30/2019,00:50:00,QUEENS,113,0,,false,,,,18-24,M,BLACK,1046315,187088,40.67998073800004,-73.77623390699993 +195396612,03/30/2019,00:50:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1046315,187088,40.67998073800004,-73.77623390699993 +195303946,03/28/2019,07:45:00,QUEENS,108,0,,false,25-44,M,UNKNOWN,45-64,M,UNKNOWN,1004902,211595,40.74744008000005,-73.92546794099997 +195254733,03/27/2019,13:43:00,MANHATTAN,34,0,,true,25-44,M,WHITE HISPANIC,45-64,M,WHITE HISPANIC,1003064,249581,40.85170536100002,-73.93199489299997 +195203576,03/26/2019,02:25:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,994109,187431,40.68113428400005,-73.96445548499997 +195145308,03/25/2019,16:08:00,BRONX,40,0,,false,,,,25-44,M,BLACK HISPANIC,1008860,233679,40.808044688000045,-73.91110256099995 +195102370,03/24/2019,00:10:00,BROOKLYN,63,0,PVT HOUSE,false,,,,25-44,M,BLACK,1006739,165849,40.62187333100008,-73.91899084899995 +195102369,03/23/2019,20:47:00,QUEENS,101,0,,false,18-24,M,BLACK,25-44,M,BLACK,1044821,156440,40.59586912100008,-73.78189543199994 +195102367,03/23/2019,15:50:00,BRONX,47,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK HISPANIC,25-44,F,BLACK HISPANIC,1026591,262398,40.88680259100005,-73.84687148999996 +195102364,03/23/2019,05:44:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,WHITE HISPANIC,999025,193414,40.69754940400002,-73.94671806199995 +195102368,03/22/2019,22:25:00,BRONX,48,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK HISPANIC,1013667,246291,40.84264632600008,-73.89368292099994 +195102368,03/22/2019,22:25:00,BRONX,48,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,M,BLACK HISPANIC,1013667,246291,40.84264632600008,-73.89368292099994 +195102365,03/22/2019,22:05:00,BROOKLYN,77,0,,true,25-44,M,BLACK,25-44,M,BLACK,994239,186637,40.67895478900005,-73.96398795599998 +195102366,03/22/2019,15:01:00,BRONX,42,0,,false,,,,25-44,M,BLACK,1011260,240722,40.82736872600003,-73.90240468499996 +195013388,03/21/2019,21:25:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,45-64,F,BLACK,990281,192762,40.69577009300008,-73.97825230899997 +195013387,03/21/2019,18:20:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,WHITE HISPANIC,<18,M,BLACK,1005386,235950,40.81428694400006,-73.92364455999996 +195013387,03/21/2019,18:20:00,BRONX,40,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,WHITE HISPANIC,<18,M,BLACK,1005386,235950,40.81428694400006,-73.92364455999996 +195013385,03/21/2019,04:07:00,BROOKLYN,75,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,BLACK,1018017,180049,40.660813449000045,-73.87829385299993 +195013384,03/21/2019,03:20:00,BRONX,44,0,,true,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1007022,243322,40.834516921000045,-73.91770925599997 +194965392,03/20/2019,21:36:00,QUEENS,105,0,,false,,,,25-44,M,BLACK,1054771,188274,40.683172699000075,-73.74573461299997 +194915415,03/19/2019,17:21:00,BROOKLYN,75,0,,true,18-24,M,BLACK,18-24,M,BLACK,1017307,181828,40.66569908600008,-73.88084420599995 +194915415,03/19/2019,17:21:00,BROOKLYN,75,0,,true,25-44,M,BLACK,18-24,M,BLACK,1017307,181828,40.66569908600008,-73.88084420599995 +194859638,03/18/2019,21:33:00,MANHATTAN,28,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,BLACK,995874,231986,40.803424497000044,-73.95801490799995 +194859637,03/18/2019,20:08:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,18-24,M,BLACK,1000655,228899,40.794943941000035,-73.94075321199995 +194859637,03/18/2019,20:08:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,18-24,M,BLACK HISPANIC,1000655,228899,40.794943941000035,-73.94075321199995 +194859637,03/18/2019,20:08:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,18-24,M,WHITE HISPANIC,1000655,228899,40.794943941000035,-73.94075321199995 +194817576,03/17/2019,06:30:00,BRONX,47,0,,false,25-44,M,BLACK,25-44,M,BLACK,1025737,261092,40.88322209000006,-73.84996813899994 +194817577,03/17/2019,03:38:00,BROOKLYN,75,0,,false,18-24,M,UNKNOWN,25-44,M,BLACK,1017019,185083,40.67463439800008,-73.88186650699998 +194817571,03/17/2019,03:37:00,MANHATTAN,25,0,,false,18-24,M,BLACK,18-24,M,BLACK,1001547,229776,40.79734936800003,-73.93752941099996 +194817578,03/16/2019,13:30:00,QUEENS,113,0,,false,25-44,U,UNKNOWN,25-44,M,BLACK,1046468,192314,40.694323792000034,-73.77563402799996 +194817575,03/16/2019,09:24:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,true,,,,45-64,M,BLACK,998160,193776,40.69854441100006,-73.949836781 +194817572,03/16/2019,00:50:00,MANHATTAN,32,2,MULTI DWELL - PUBLIC HOUS,true,,,,45-64,M,BLACK,998762,235107,40.811986508000075,-73.94757654399997 +194817574,03/15/2019,11:50:00,QUEENS,112,1,,false,25-44,M,BLACK,18-24,M,BLACK,1029239,201142,40.718658885000025,-73.83770522999998 +194817573,03/15/2019,10:19:00,BROOKLYN,75,0,,false,45-64,M,WHITE HISPANIC,25-44,M,BLACK HISPANIC,1012359,181228,40.66406931200004,-73.89868224799993 +194677549,03/13/2019,21:17:00,STATEN ISLAND,122,0,,true,18-24,M,WHITE,45-64,M,WHITE,953944,154834,40.591616128000055,-74.10912122599996 +194626071,03/12/2019,23:34:00,BROOKLYN,77,0,,false,,,,18-24,M,BLACK,1002251,183677,40.67081759000007,-73.93511008699994 +194626070,03/12/2019,22:20:00,BROOKLYN,75,0,,false,,,,18-24,M,BLACK,1019191,182199,40.66671016400005,-73.87405122799998 +194626069,03/12/2019,08:21:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,F,BLACK,1006026,185469,40.675727746000064,-73.92149590099996 +194626068,03/12/2019,01:00:00,BROOKLYN,73,0,,false,25-44,M,BLACK,25-44,M,BLACK,1009653,183399,40.67003639800004,-73.90842786599995 +194570530,03/11/2019,21:05:00,BROOKLYN,81,0,,false,,,,45-64,M,BLACK,1006104,187792,40.68210366200003,-73.92120716799997 +194570529,03/11/2019,16:30:00,BROOKLYN,81,0,,false,18-24,M,BLACK,25-44,M,BLACK,1001181,189778,40.68756556300008,-73.93895197599994 +194570529,03/11/2019,16:30:00,BROOKLYN,81,0,,false,<18,M,UNKNOWN,25-44,M,BLACK,1001181,189778,40.68756556300008,-73.93895197599994 +194525845,03/10/2019,22:30:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,18-24,M,BLACK,998314,192761,40.69575822900004,-73.94928351799997 +194525843,03/10/2019,05:38:00,MANHATTAN,13,0,,false,25-44,M,WHITE HISPANIC,45-64,M,BLACK,990300,209478,40.74165148800005,-73.97816876899999 +194525841,03/09/2019,15:40:00,QUEENS,109,0,,false,25-44,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1032665,219163,40.76810385400006,-73.82521637499997 +194525841,03/09/2019,15:40:00,QUEENS,109,0,,false,25-44,M,WHITE HISPANIC,25-44,M,WHITE HISPANIC,1032665,219163,40.76810385400006,-73.82521637499997 +194527595,03/09/2019,09:20:00,BRONX,42,0,,false,,,,18-24,M,BLACK,1010697,241162,40.82857810400003,-73.90443726899997 +194527594,03/09/2019,04:00:00,QUEENS,106,0,BAR/NIGHT CLUB,false,25-44,M,WHITE HISPANIC,18-24,M,BLACK,1025542,187004,40.67987145200004,-73.85112867499998 +194525846,03/09/2019,02:41:00,MANHATTAN,25,,,false,UNKNOWN,M,BLACK,25-44,M,BLACK,1000472,230833,40.80025258300003,-73.94140946199997 +194525844,03/09/2019,01:10:00,BRONX,41,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,25-44,M,BLACK HISPANIC,1012780,236449,40.81563577600008,-73.89693055399994 +194378288,03/06/2019,20:29:00,BROOKLYN,62,0,MULTI DWELL - APT BUILD,false,,,,25-44,M,WHITE,986543,157612,40.599292698000056,-73.99174431699998 +194324356,03/05/2019,23:24:00,BROOKLYN,79,0,,true,,,,25-44,M,WHITE HISPANIC,996757,190062,40.68835243400008,-73.95490341799997 +194324355,03/05/2019,22:30:00,QUEENS,105,0,,true,18-24,M,BLACK,25-44,M,BLACK,1049440,181649,40.66502949200003,-73.76501976899993 +194324354,03/05/2019,20:04:00,BRONX,44,0,GROCERY/BODEGA,false,,,,25-44,M,BLACK HISPANIC,1008093,245355,40.84009408900005,-73.91383171199995 +194269158,03/04/2019,22:22:00,BROOKLYN,81,2,MULTI DWELL - PUBLIC HOUS,false,<18,M,BLACK,<18,M,BLACK,1004899,187202,40.680487139000036,-73.92555358299995 +194232503,03/04/2019,00:40:00,BRONX,45,0,,false,25-44,M,BLACK,25-44,F,BLACK,1033217,254904,40.86619963500005,-73.82296280999998 +194226976,03/02/2019,21:30:00,BROOKLYN,75,0,,false,18-24,M,BLACK,<18,M,WHITE HISPANIC,1017036,183890,40.67135982000008,-73.88181102299995 +194226977,03/02/2019,04:20:00,QUEENS,113,0,,false,,,,18-24,M,BLACK,1041582,183607,40.67045812200007,-73.79332768599994 +194085122,02/28/2019,02:18:00,MANHATTAN,23,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,999211,229699,40.79714228700004,-73.94596657399995 +194085121,02/27/2019,18:22:00,MANHATTAN,34,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,WHITE HISPANIC,1005232,253268,40.861820186000045,-73.92414673399996 +194032274,02/26/2019,17:46:00,QUEENS,103,0,PVT HOUSE,true,,,,45-64,M,ASIAN / PACIFIC ISLANDER,1043295,195411,40.70284605000006,-73.78704914399998 +194032590,02/26/2019,16:23:00,BROOKLYN,60,0,,false,<18,M,BLACK,18-24,F,WHITE HISPANIC,989383,149489,40.57699549000005,-73.98152360899996 +193982311,02/25/2019,11:00:00,QUEENS,112,0,,false,18-24,M,BLACK,<18,M,WHITE HISPANIC,1026312,207207,40.73532021200003,-73.84822634799998 +193939359,02/24/2019,23:20:00,BRONX,44,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,BLACK,1008653,241755,40.83021160200008,-73.91182094199996 +193939355,02/24/2019,00:10:00,BROOKLYN,73,0,,false,,,,<18,F,BLACK,1009526,183374,40.66996814200007,-73.90888577399994 +193939355,02/24/2019,00:10:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1009526,183374,40.66996814200007,-73.90888577399994 +193939360,02/23/2019,06:29:00,BRONX,43,2,MULTI DWELL - PUBLIC HOUS,false,,,,45-64,M,BLACK,1026382,237309,40.81794183300008,-73.84778502199998 +193939354,02/23/2019,00:27:00,MANHATTAN,32,0,,false,,,,25-44,M,BLACK,1001775,235861,40.81405056600005,-73.93669005299995 +193938809,02/22/2019,17:44:00,BROOKLYN,70,0,MULTI DWELL - APT BUILD,true,18-24,M,BLACK,<18,M,BLACK,997703,171170,40.63649668200002,-73.95153000199997 +193939357,02/22/2019,17:03:00,BROOKLYN,67,0,,true,18-24,M,BLACK,18-24,M,BLACK,1008498,176354,40.65070267000005,-73.91261677899996 +193939358,02/22/2019,15:30:00,QUEENS,101,0,,false,<18,M,BLACK,45-64,F,WHITE HISPANIC,1050837,157878,40.59977297000006,-73.76021875499998 +193939358,02/22/2019,15:30:00,QUEENS,101,0,,false,<18,M,BLACK,18-24,M,BLACK,1050837,157878,40.59977297000006,-73.76021875499998 +193939356,02/22/2019,05:51:00,QUEENS,109,0,,false,25-44,M,ASIAN / PACIFIC ISLANDER,25-44,M,ASIAN / PACIFIC ISLANDER,1030152,213941,40.753784232000044,-73.83432429699997 +193939353,02/22/2019,04:11:00,BRONX,46,0,,false,,,,45-64,M,BLACK,1010969,248351,40.84830899400004,-73.90342577999998 +193779318,02/19/2019,22:27:00,BROOKLYN,81,0,GROCERY/BODEGA,false,25-44,F,BLACK,45-64,M,BLACK,1005118,185998,40.67718191900008,-73.92476772999999 +193779318,02/19/2019,22:27:00,BROOKLYN,81,0,GROCERY/BODEGA,false,25-44,M,BLACK,45-64,M,BLACK,1005118,185998,40.67718191900008,-73.92476772999999 +193733167,02/18/2019,23:49:00,BRONX,40,0,,false,,,,18-24,M,BLACK HISPANIC,1007951,238554,40.82142768200004,-73.91436893199995 +193732895,02/18/2019,18:16:00,BRONX,47,0,,false,45-64,M,BLACK,25-44,F,BLACK,1028857,263946,40.89104019400003,-73.83866600699997 +193694862,02/17/2019,14:08:00,BROOKLYN,63,0,,false,18-24,M,BLACK,18-24,M,BLACK,1006878,169152,40.63093901600007,-73.91847906599996 +193694863,02/17/2019,03:00:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,18-24,M,BLACK,25-44,M,BLACK,999484,214810,40.75627543400003,-73.94501432899995 +193694861,02/16/2019,22:30:00,BRONX,52,0,,false,25-44,M,WHITE HISPANIC,25-44,M,BLACK HISPANIC,1015040,256807,40.87150490000005,-73.88867234499997 +193602933,02/14/2019,22:38:00,MANHATTAN,33,0,,false,25-44,M,BLACK,25-44,M,BLACK,1000607,243285,40.834429577000044,-73.94089151099996 +193517125,02/12/2019,18:10:00,QUEENS,102,0,,false,25-44,M,BLACK,UNKNOWN,M,UNKNOWN,1032234,192287,40.69433830500003,-73.82696399999998 +193517125,02/12/2019,18:10:00,QUEENS,102,0,,true,25-44,M,BLACK,UNKNOWN,M,UNKNOWN,1032234,192287,40.69433830500003,-73.82696399999998 +193517125,02/12/2019,18:10:00,QUEENS,102,0,,false,25-44,M,BLACK,25-44,M,WHITE,1032234,192287,40.69433830500003,-73.82696399999998 +193517125,02/12/2019,18:10:00,QUEENS,102,0,,true,25-44,M,BLACK,25-44,M,WHITE,1032234,192287,40.69433830500003,-73.82696399999998 +193509769,02/12/2019,11:00:00,BRONX,41,0,,false,,,,25-44,M,BLACK,1011837,239059,40.82280248200004,-73.90032661699998 +193466266,02/12/2019,02:34:00,QUEENS,109,0,,true,,,,25-44,M,ASIAN / PACIFIC ISLANDER,1030259,213170,40.75166748000004,-73.83394336999999 +193462348,02/11/2019,23:16:00,BROOKLYN,75,0,PVT HOUSE,false,25-44,M,ASIAN / PACIFIC ISLANDER,25-44,F,BLACK HISPANIC,1020078,185188,40.67491074800005,-73.87083801799997 +193462347,02/11/2019,08:50:00,BROOKLYN,75,0,,false,<18,M,BLACK,<18,M,BLACK,1020930,185590,40.67601065700006,-73.86776429099997 +193418291,02/10/2019,10:52:00,BRONX,42,0,,false,25-44,M,BLACK,25-44,M,BLACK,1010697,241162,40.82857810400003,-73.90443726899997 +193418290,02/10/2019,04:40:00,MANHATTAN,34,0,,false,,,,25-44,M,BLACK HISPANIC,1007515,256198,40.869856423000044,-73.91588299999995 +193418293,02/09/2019,19:00:00,BRONX,49,2,MULTI DWELL - PUBLIC HOUS,false,,,,<18,M,BLACK,1021316,253601,40.86268129200005,-73.86599762999998 +193418294,02/09/2019,02:00:00,MANHATTAN,23,0,,false,18-24,M,BLACK,18-24,M,BLACK,998391,229756,40.797300086000064,-73.94892805999996 +193417904,02/08/2019,17:00:00,BRONX,40,0,,true,18-24,M,BLACK,18-24,M,BLACK,1010201,237368,40.81816612400007,-73.90624419799997 +193417904,02/08/2019,17:00:00,BRONX,40,0,,true,<18,M,WHITE HISPANIC,18-24,M,BLACK,1010201,237368,40.81816612400007,-73.90624419799997 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,false,,,,18-24,F,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,true,,,,18-24,F,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,false,,,,45-64,F,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,true,,,,45-64,F,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,false,,,,18-24,M,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193267668,02/06/2019,22:26:00,BROOKLYN,81,0,,true,,,,18-24,M,BLACK,1004228,186742,40.67922608300007,-73.92797416799993 +193226256,02/06/2019,04:52:00,BROOKLYN,90,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,BLACK HISPANIC,1001020,196400,40.70574171900005,-73.93951601999999 +193214568,02/05/2019,12:03:00,QUEENS,101,0,,false,18-24,M,BLACK,25-44,M,WHITE HISPANIC,1051960,160392,40.606664855000076,-73.75614960299998 +193162778,02/04/2019,20:38:00,MANHATTAN,32,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,998842,235649,40.81347401500005,-73.94728636499997 +193160951,02/04/2019,13:40:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,998286,189885,40.68786431700005,-73.94939048399993 +193160952,02/04/2019,11:41:00,BROOKLYN,60,0,,false,25-44,M,BLACK,45-64,F,BLACK,984147,150278,40.57916262500004,-74.00037223199998 +193160952,02/04/2019,11:41:00,BROOKLYN,60,0,,true,25-44,M,BLACK,45-64,F,BLACK,984147,150278,40.57916262500004,-74.00037223199998 +193160952,02/04/2019,11:41:00,BROOKLYN,60,0,,false,25-44,M,BLACK,45-64,M,BLACK,984147,150278,40.57916262500004,-74.00037223199998 +193160952,02/04/2019,11:41:00,BROOKLYN,60,0,,true,25-44,M,BLACK,45-64,M,BLACK,984147,150278,40.57916262500004,-74.00037223199998 +193118589,02/03/2019,23:10:00,BROOKLYN,67,0,,true,,,,25-44,M,BLACK,1003612,172783,40.64091307700004,-73.93023512999997 +193118591,02/03/2019,12:43:00,QUEENS,115,1,,true,18-24,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1018475,211969,40.748424502000034,-73.87648084299997 +193118591,02/03/2019,12:43:00,QUEENS,115,1,,true,25-44,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1018475,211969,40.748424502000034,-73.87648084299997 +193118596,02/02/2019,19:40:00,MANHATTAN,23,0,,false,18-24,M,WHITE HISPANIC,18-24,M,BLACK HISPANIC,999347,227795,40.79191609100008,-73.94547965999998 +193118593,02/02/2019,00:45:00,QUEENS,113,0,GROCERY/BODEGA,false,18-24,M,BLACK,25-44,M,ASIAN / PACIFIC ISLANDER,1040720,190569,40.689572726000044,-73.79637672499997 +193118593,02/02/2019,00:45:00,QUEENS,113,0,GROCERY/BODEGA,false,25-44,M,WHITE,25-44,M,ASIAN / PACIFIC ISLANDER,1040720,190569,40.689572726000044,-73.79637672499997 +193118592,02/01/2019,19:57:00,MANHATTAN,25,0,,false,25-44,M,BLACK HISPANIC,25-44,M,WHITE HISPANIC,999826,230239,40.79862337700007,-73.94374411699994 +193026088,01/31/2019,18:45:00,QUEENS,105,0,,false,,,,25-44,M,BLACK,1052230,179775,40.65986481400005,-73.75498197399996 +192978312,01/31/2019,00:15:00,MANHATTAN,33,0,,false,,,,18-24,M,BLACK HISPANIC,1000038,243153,40.83406831000008,-73.94294803999998 +192978312,01/31/2019,00:15:00,MANHATTAN,33,0,,true,,,,18-24,M,BLACK HISPANIC,1000038,243153,40.83406831000008,-73.94294803999998 +192978312,01/31/2019,00:15:00,MANHATTAN,33,0,,false,,,,25-44,M,WHITE HISPANIC,1000038,243153,40.83406831000008,-73.94294803999998 +192978312,01/31/2019,00:15:00,MANHATTAN,33,0,,true,,,,25-44,M,WHITE HISPANIC,1000038,243153,40.83406831000008,-73.94294803999998 +192974876,01/30/2019,22:54:00,MANHATTAN,34,0,,false,,,,18-24,M,UNKNOWN,1003851,250093,40.85310893600007,-73.92914864499993 +192974875,01/30/2019,19:02:00,MANHATTAN,34,0,,false,,,,25-44,M,BLACK HISPANIC,1003738,254096,40.86409622000008,-73.92954547499993 +192876454,01/28/2019,20:36:00,BRONX,43,0,GROCERY/BODEGA,false,18-24,M,BLACK,<18,M,BLACK,1023548,238402,40.82095486800005,-73.85801740899994 +192876454,01/28/2019,20:36:00,BRONX,43,0,GROCERY/BODEGA,false,18-24,M,BLACK,18-24,M,BLACK HISPANIC,1023548,238402,40.82095486800005,-73.85801740899994 +192876037,01/28/2019,03:14:00,MANHATTAN,34,0,,false,,,,25-44,M,BLACK,1006901,254647,40.86560099800005,-73.91810825999994 +192834302,01/27/2019,10:44:00,QUEENS,113,0,,false,18-24,M,BLACK,18-24,M,BLACK,1045308,188293,40.68329518400003,-73.77985358499996 +192834302,01/27/2019,10:44:00,QUEENS,113,0,,false,25-44,M,BLACK,18-24,M,BLACK,1045308,188293,40.68329518400003,-73.77985358499996 +192834300,01/26/2019,20:55:00,BROOKLYN,83,0,,true,18-24,M,BLACK,18-24,M,BLACK,1007922,189765,40.68751442000007,-73.91464546899994 +192834303,01/26/2019,16:07:00,BROOKLYN,73,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,18-24,M,BLACK HISPANIC,1008228,183789,40.67111083400005,-73.91356336299998 +192834301,01/25/2019,23:58:00,BROOKLYN,90,2,MULTI DWELL - PUBLIC HOUS,false,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1001438,194908,40.70164572700002,-73.93801220099994 +192834299,01/25/2019,01:55:00,QUEENS,106,0,,false,25-44,M,BLACK,45-64,F,ASIAN / PACIFIC ISLANDER,1033346,183414,40.66997788500004,-73.82301862099996 +192699974,01/24/2019,00:42:00,BRONX,47,0,,false,25-44,M,BLACK,25-44,M,BLACK,1021895,259481,40.87881762600006,-73.86387135299998 +192582052,01/21/2019,21:30:00,BRONX,47,0,,false,,,,18-24,M,BLACK,1023388,256742,40.87129342900005,-73.85848844499998 +192545751,01/20/2019,15:10:00,BRONX,41,0,,false,,,,25-44,M,WHITE HISPANIC,1013775,238190,40.820411060000026,-73.89332824199995 +192545414,01/19/2019,22:25:00,BROOKLYN,94,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1000940,201183,40.71887006600008,-73.93979270399994 +192545747,01/19/2019,19:30:00,MANHATTAN,23,0,,false,,,,<18,M,WHITE HISPANIC,998811,229459,40.79648422100007,-73.94741177999998 +192545750,01/19/2019,14:36:00,BRONX,43,0,,false,,,,25-44,M,BLACK,1017982,240268,40.82609951400008,-73.87811801099997 +192545749,01/19/2019,04:00:00,QUEENS,109,0,,false,,,,25-44,M,BLACK,1030092,220250,40.77110109700004,-73.83449783599998 +192545749,01/19/2019,04:00:00,QUEENS,109,0,,true,,,,25-44,M,BLACK,1030092,220250,40.77110109700004,-73.83449783599998 +192545748,01/19/2019,00:43:00,MANHATTAN,32,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1000001,238478,40.821236836000026,-73.94309272199997 +192545746,01/18/2019,18:32:00,BRONX,40,0,,false,,,,45-64,M,BLACK HISPANIC,1006920,235434,40.812866866000036,-73.91810450699995 +192440376,01/17/2019,13:20:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,WHITE HISPANIC,995728,190315,40.689048255000046,-73.95861337799995 +192455949,01/17/2019,13:18:00,BRONX,46,2,,false,25-44,M,WHITE HISPANIC,<18,M,WHITE HISPANIC,1012007,250172,40.853303895000074,-73.89966639999993 +192301916,01/14/2019,17:10:00,BROOKLYN,75,0,,false,18-24,M,BLACK,18-24,M,BLACK,1017640,182557,40.66769877900003,-73.87964026499998 +192301916,01/14/2019,17:10:00,BROOKLYN,75,0,,false,25-44,M,BLACK,18-24,M,BLACK,1017640,182557,40.66769877900003,-73.87964026499998 +192301917,01/14/2019,11:55:00,BROOKLYN,75,0,PVT HOUSE,false,45-64,F,BLACK,25-44,M,BLACK,1015806,183889,40.671361545000025,-73.88624505699994 +192301917,01/14/2019,11:55:00,BROOKLYN,75,0,PVT HOUSE,false,25-44,M,BLACK,25-44,M,BLACK,1015806,183889,40.671361545000025,-73.88624505699994 +192258908,01/13/2019,22:11:00,QUEENS,113,0,,false,,,,25-44,M,BLACK,1051144,193463,40.697443411000044,-73.75876034299995 +192258908,01/13/2019,22:11:00,QUEENS,113,0,,true,,,,25-44,M,BLACK,1051144,193463,40.697443411000044,-73.75876034299995 +192259536,01/13/2019,19:55:00,MANHATTAN,32,0,,false,,,,45-64,M,BLACK,1000486,235640,40.813446445000075,-73.94134727099998 +192258906,01/13/2019,13:35:00,BROOKLYN,77,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1004594,185427,40.675615872000044,-73.92665858699996 +192259533,01/13/2019,06:00:00,BROOKLYN,70,0,,false,,,,25-44,M,BLACK,996079,174395,40.64535093400008,-73.95737565299999 +192258907,01/13/2019,04:00:00,BROOKLYN,79,0,,false,,,,25-44,M,BLACK,998234,186890,40.67964380700005,-73.94958420199998 +192259535,01/12/2019,05:47:00,QUEENS,109,0,PVT HOUSE,false,18-24,M,WHITE,18-24,F,BLACK HISPANIC,1038778,216009,40.759411366000045,-73.80317322499997 +192259537,01/12/2019,05:24:00,BROOKLYN,79,0,,false,,,,25-44,F,BLACK,1001291,186474,40.67849662500004,-73.93856369499997 +192259534,01/11/2019,15:15:00,BRONX,46,0,MULTI DWELL - APT BUILD,false,,,,18-24,M,WHITE HISPANIC,1009356,247701,40.846529670000045,-73.90925838899994 +192159800,01/11/2019,01:30:00,BROOKLYN,69,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,1012853,176538,40.65119471500003,-73.89692151399998 +192059857,01/09/2019,05:43:00,BRONX,47,0,,true,25-44,M,BLACK,25-44,M,BLACK,1024819,260118,40.88055303600004,-73.85329388199995 +192049864,01/08/2019,11:03:00,BROOKLYN,73,0,,false,,,,25-44,M,BLACK,1006411,182794,40.66838451700004,-73.92011671699998 +191997175,01/08/2019,00:32:00,BRONX,42,0,,false,18-24,M,BLACK,18-24,M,WHITE HISPANIC,1010106,241483,40.82946090600007,-73.90657156199995 +191997175,01/08/2019,00:32:00,BRONX,42,0,,false,18-24,M,WHITE HISPANIC,18-24,M,WHITE HISPANIC,1010106,241483,40.82946090600007,-73.90657156199995 +193118595,01/07/2019,19:30:00,QUEENS,107,0,,false,,,,25-44,M,BLACK,1034880,204404,40.72758178300006,-73.81733103899995 +191995443,01/07/2019,19:19:00,BRONX,48,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,BLACK,1017483,245763,40.841183585000074,-73.87989381599994 +191951586,01/06/2019,23:36:00,BROOKLYN,60,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,BLACK,986481,148626,40.57462792900003,-73.99197054399998 +191951588,01/06/2019,03:00:00,BRONX,43,2,MULTI DWELL - PUBLIC HOUS,true,18-24,M,BLACK,25-44,M,WHITE HISPANIC,1021283,238581,40.82145595800005,-73.86619987399997 +191951588,01/06/2019,03:00:00,BRONX,43,2,MULTI DWELL - PUBLIC HOUS,true,25-44,M,BLACK,25-44,M,WHITE HISPANIC,1021283,238581,40.82145595800005,-73.86619987399997 +191949900,01/06/2019,02:46:00,BRONX,41,0,,false,,,,45-64,M,BLACK HISPANIC,1013902,238673,40.82173633200006,-73.89286725999993 +191951587,01/05/2019,16:00:00,QUEENS,114,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,1002652,215969,40.759450567000044,-73.933576266 +191949902,01/05/2019,01:50:00,BRONX,43,0,,false,,,,45-64,M,BLACK,1025519,242145,40.83121933700004,-73.85087315799996 +191951589,01/05/2019,00:42:00,STATEN ISLAND,120,0,,false,,,,<18,M,BLACK HISPANIC,951319,171306,40.63681896700007,-74.11865312699997 +191949899,01/04/2019,15:49:00,BROOKLYN,61,2,,false,<18,M,BLACK,<18,M,BLACK,1000639,157279,40.598363825000035,-73.94098525199998 +191853461,01/04/2019,02:20:00,BROOKLYN,60,0,MULTI DWELL - APT BUILD,false,18-24,M,BLACK,45-64,M,BLACK,986229,148311,40.573763375000055,-73.99287775699997 +191851038,01/03/2019,23:00:00,STATEN ISLAND,121,0,,false,,,,18-24,M,BLACK,939054,166916,40.62471527000002,-74.16281491499996 +191851037,01/03/2019,21:00:00,BRONX,49,0,,false,,,,25-44,M,BLACK,1024472,256716,40.871217194000046,-73.85456914199995 +191790873,01/02/2019,13:34:00,BROOKLYN,79,2,MULTI DWELL - PUBLIC HOUS,false,,,,25-44,M,WHITE HISPANIC,999653,193642,40.69817414000005,-73.94445277199996 +191739125,01/01/2019,05:40:00,BROOKLYN,88,2,MULTI DWELL - PUBLIC HOUS,false,,,,18-24,M,BLACK,991148,192533,40.69514090800004,-73.975125947 +191709964,01/01/2019,04:26:00,BROOKLYN,75,2,MULTI DWELL - PUBLIC HOUS,true,,,,25-44,M,BLACK,1021382,181825,40.665674700000075,-73.86615550299997 +191739126,01/01/2019,02:19:00,BRONX,46,2,MULTI DWELL - APT BUILD,false,25-44,M,BLACK HISPANIC,25-44,M,BLACK,1013072,251276,40.85633063300003,-73.89581193099998 diff --git a/data/nyc_shooting_data2.csv b/data/nyc_shooting_data2.csv new file mode 100644 index 00000000..ccd6d4ac --- /dev/null +++ b/data/nyc_shooting_data2.csv @@ -0,0 +1,968 @@ +occur_date,occur_time,borough,precinct,vic_sex,latitude,longitude +12/31/2019,23:15:00,MANHATTAN,28,M,40.80024432600004,-73.95339008999997 +12/31/2019,20:14:00,BROOKLYN,73,M,40.66052686300003,-73.91715616699997 +12/30/2019,21:29:00,BROOKLYN,71,M,40.656923240000026,-73.93964677899999 +12/30/2019,03:17:00,BROOKLYN,81,M,40.68681516500004,-73.91936988499998 +12/30/2019,03:17:00,BROOKLYN,81,M,40.68681516500004,-73.91936988499998 +12/29/2019,00:50:00,BROOKLYN,77,M,40.67286180100007,-73.95718142799996 +12/28/2019,19:51:00,BROOKLYN,75,M,40.684281548000044,-73.87342672099999 +12/28/2019,17:53:00,STATEN ISLAND,121,M,40.62657078000007,-74.16084527699995 +12/28/2019,04:20:00,MANHATTAN,23,M,40.79415025600008,-73.93986908699995 +12/27/2019,23:27:00,BRONX,46,M,40.85406302600006,-73.90478382299993 +12/27/2019,22:40:00,QUEENS,113,M,40.706808642000055,-73.75105110599996 +12/27/2019,10:11:00,BROOKLYN,73,M,40.668839045000034,-73.90764006599994 +12/26/2019,04:25:00,QUEENS,114,M,40.75300814800004,-73.92389526399995 +12/25/2019,22:50:00,BRONX,41,M,40.820411060000026,-73.89332824199995 +12/25/2019,02:40:00,BROOKLYN,67,M,40.64174589100002,-73.95440522899997 +12/25/2019,00:19:00,BROOKLYN,90,M,40.70412913900003,-73.947870547 +12/24/2019,19:07:00,BROOKLYN,77,M,40.66829116100007,-73.92412169499994 +12/23/2019,20:51:00,BROOKLYN,60,F,40.57978019500007,-73.99842465499995 +12/23/2019,20:51:00,BROOKLYN,60,M,40.57978019500007,-73.99842465499995 +12/23/2019,15:31:00,BROOKLYN,73,M,40.661794060000034,-73.90872392799997 +12/23/2019,11:25:00,QUEENS,113,M,40.679125323000044,-73.77391494099999 +12/23/2019,05:28:00,BRONX,48,F,40.84757900300008,-73.90031840799999 +12/23/2019,05:28:00,BRONX,48,M,40.84757900300008,-73.90031840799999 +12/21/2019,04:36:00,BRONX,44,M,40.818741576000036,-73.92782678799993 +12/21/2019,04:30:00,BROOKLYN,78,M,40.67800757700008,-73.97305570499998 +12/21/2019,03:20:00,BROOKLYN,70,M,40.65222405100008,-73.95785778499999 +12/20/2019,21:36:00,BRONX,47,M,40.87233570600006,-73.86712799899993 +12/19/2019,21:22:00,QUEENS,105,M,40.67337996200007,-73.75618326799997 +12/19/2019,16:20:00,BROOKLYN,67,F,40.66194314900008,-73.92102913399998 +12/19/2019,05:15:00,MANHATTAN,28,M,40.80186520800004,-73.95723931799995 +12/18/2019,23:22:00,MANHATTAN,32,M,40.80941319900006,-73.94436716399997 +12/18/2019,18:15:00,QUEENS,100,M,40.58740067900004,-73.81260554099998 +12/16/2019,19:15:00,STATEN ISLAND,120,M,40.634711295000045,-74.10713802599996 +12/16/2019,12:37:00,MANHATTAN,23,M,40.79501283900004,-73.93613752499994 +12/15/2019,20:00:00,MANHATTAN,28,M,40.805036364000046,-73.95276183299995 +12/15/2019,03:36:00,BROOKLYN,79,M,40.69407488400003,-73.947496157 +12/14/2019,21:35:00,BRONX,52,M,40.86857634900008,-73.89455982599996 +12/11/2019,04:00:00,BROOKLYN,60,M,40.575031251000034,-73.98988266699997 +12/10/2019,23:32:00,STATEN ISLAND,122,M,40.56539505300003,-74.11191815299998 +12/10/2019,23:32:00,STATEN ISLAND,122,M,40.56539505300003,-74.11191815299998 +12/10/2019,23:32:00,STATEN ISLAND,122,M,40.56539505300003,-74.11191815299998 +12/10/2019,21:36:00,BRONX,48,M,40.846879195000035,-73.88842801999994 +12/10/2019,20:35:00,STATEN ISLAND,120,M,40.61879293100003,-74.08204929199997 +12/08/2019,23:16:00,BRONX,47,M,40.88784211400008,-73.83064118999994 +12/07/2019,22:40:00,BROOKLYN,70,M,40.65139047100007,-73.96020079799997 +12/07/2019,00:41:00,BRONX,40,M,40.808777943000045,-73.923130702 +12/07/2019,00:23:00,QUEENS,115,M,40.749926198000026,-73.86223992399994 +12/06/2019,23:30:00,BRONX,47,M,40.88561885600007,-73.84836422499995 +12/06/2019,23:00:00,BROOKLYN,77,M,40.67140715000005,-73.92948225299993 +12/06/2019,17:40:00,BROOKLYN,75,M,40.66794473600004,-73.87604591299998 +12/05/2019,14:15:00,BRONX,42,M,40.82389216900003,-73.91400444399994 +12/05/2019,14:15:00,BRONX,42,M,40.82389216900003,-73.91400444399994 +12/04/2019,23:12:00,BROOKLYN,67,F,40.65289404700008,-73.945438299 +12/04/2019,03:30:00,QUEENS,110,M,40.738374951000026,-73.88615590799998 +12/03/2019,20:45:00,BRONX,48,M,40.84464334200004,-73.88955581599998 +12/03/2019,14:28:00,BROOKLYN,67,M,40.63944734500007,-73.93488836999995 +12/02/2019,15:52:00,BROOKLYN,73,M,40.675221247000025,-73.91938390099993 +12/02/2019,11:50:00,BROOKLYN,67,M,40.64341191200003,-73.92754078099993 +12/01/2019,22:10:00,BROOKLYN,81,M,40.678959457000076,-73.92313972699995 +12/01/2019,21:10:00,BROOKLYN,81,M,40.69056345100006,-73.92594259299993 +12/01/2019,03:32:00,STATEN ISLAND,123,M,40.54059638700004,-74.17683949599996 +12/01/2019,01:07:00,QUEENS,114,M,40.75742705300007,-73.94260579999997 +11/30/2019,23:01:00,BRONX,46,M,40.84512030900004,-73.92249595899995 +11/29/2019,18:17:00,BROOKLYN,84,M,40.69543880800006,-73.98322537599995 +11/29/2019,14:07:00,BRONX,42,M,40.82585965700008,-73.89981617899997 +11/28/2019,08:52:00,BROOKLYN,75,M,40.667974171000026,-73.88319042199998 +11/28/2019,04:12:00,BRONX,50,M,40.877413096000055,-73.90590391399995 +11/27/2019,23:55:00,QUEENS,113,M,40.67259514700004,-73.77514474599997 +11/27/2019,23:30:00,BRONX,45,F,40.83079891400007,-73.82694879599995 +11/27/2019,23:30:00,BRONX,45,M,40.83079891400007,-73.82694879599995 +11/27/2019,22:24:00,BRONX,41,M,40.82414626900004,-73.89294648299993 +11/27/2019,22:24:00,BRONX,41,M,40.82414626900004,-73.89294648299993 +11/27/2019,15:54:00,BRONX,40,F,40.81869973000005,-73.91857061799993 +11/27/2019,15:54:00,BRONX,40,F,40.81869973000005,-73.91857061799993 +11/27/2019,15:54:00,BRONX,40,M,40.81869973000005,-73.91857061799993 +11/27/2019,15:54:00,BRONX,40,M,40.81869973000005,-73.91857061799993 +11/27/2019,00:45:00,BRONX,47,M,40.887459573000065,-73.86066017599995 +11/26/2019,20:19:00,BROOKLYN,81,M,40.68753374200002,-73.93595560199999 +11/25/2019,22:00:00,QUEENS,114,M,40.77270715700007,-73.93268571799997 +11/23/2019,03:20:00,BROOKLYN,69,F,40.645844089000036,-73.91220873599997 +11/23/2019,03:20:00,BROOKLYN,69,M,40.645844089000036,-73.91220873599997 +11/21/2019,18:32:00,BRONX,49,F,40.857454424000025,-73.84754276399997 +11/20/2019,23:11:00,BRONX,44,M,40.83427221300008,-73.91710967899995 +11/20/2019,23:11:00,BRONX,44,M,40.83427221300008,-73.91710967899995 +11/20/2019,23:11:00,BRONX,44,M,40.83427221300008,-73.91710967899995 +11/20/2019,23:11:00,BRONX,44,M,40.83427221300008,-73.91710967899995 +11/20/2019,17:58:00,STATEN ISLAND,122,M,40.586855984000074,-74.10082545299997 +11/20/2019,14:56:00,BROOKLYN,81,M,40.68000674300004,-73.92546037999993 +11/19/2019,08:45:00,BROOKLYN,75,M,40.66553377300004,-73.89424277099994 +11/17/2019,21:12:00,BRONX,43,M,40.816366145000075,-73.86762631099998 +11/17/2019,21:12:00,BRONX,43,M,40.816366145000075,-73.86762631099998 +11/17/2019,14:45:00,MANHATTAN,23,M,40.79708858400005,-73.94274857999993 +11/17/2019,02:27:00,BROOKLYN,72,M,40.64696537000003,-74.02093827699997 +11/16/2019,03:44:00,BROOKLYN,79,M,40.689048255000046,-73.95861337799995 +11/15/2019,20:22:00,BRONX,46,M,40.849341252000045,-73.91792586299994 +11/15/2019,00:17:00,BRONX,42,M,40.83026481100006,-73.90620546899999 +11/14/2019,21:01:00,MANHATTAN,34,M,40.86225524200007,-73.92629731299998 +11/14/2019,00:59:00,BRONX,44,M,40.83289538100007,-73.92671649599998 +11/14/2019,00:12:00,MANHATTAN,25,M,40.80925797900005,-73.93614553099997 +11/13/2019,20:35:00,BROOKLYN,69,M,40.638270777000045,-73.88941816399995 +11/13/2019,00:08:00,BRONX,43,M,40.830641297000064,-73.87487918899996 +11/12/2019,02:24:00,BRONX,44,M,40.824144257000064,-73.91717287899995 +11/10/2019,22:34:00,BRONX,44,M,40.83119531600005,-73.91327951999993 +11/10/2019,19:30:00,BROOKLYN,71,M,40.66423549600006,-73.94546506699999 +11/10/2019,14:03:00,BROOKLYN,63,F,40.62016320400005,-73.92700768599997 +11/10/2019,14:03:00,BROOKLYN,63,F,40.62016320400005,-73.92700768599997 +11/10/2019,14:03:00,BROOKLYN,63,M,40.62016320400005,-73.92700768599997 +11/10/2019,14:03:00,BROOKLYN,63,M,40.62016320400005,-73.92700768599997 +11/10/2019,06:50:00,MANHATTAN,19,M,40.76406937600007,-73.95505791899996 +11/10/2019,02:48:00,MANHATTAN,34,F,40.86587636400003,-73.92766355499998 +11/10/2019,02:48:00,MANHATTAN,34,M,40.86587636400003,-73.92766355499998 +11/10/2019,02:48:00,MANHATTAN,34,M,40.86587636400003,-73.92766355499998 +11/06/2019,22:36:00,BRONX,49,M,40.86970325500005,-73.86688016399995 +11/06/2019,21:21:00,BROOKLYN,77,M,40.67651622300008,-73.93596257699994 +11/06/2019,02:27:00,BROOKLYN,72,M,40.667056208000076,-73.99470257699994 +11/05/2019,23:30:00,QUEENS,113,M,40.689657398000065,-73.78410196999994 +11/05/2019,21:11:00,BROOKLYN,84,M,40.69980031700004,-73.98373278599996 +11/05/2019,21:11:00,BROOKLYN,84,M,40.69980031700004,-73.98373278599996 +11/04/2019,13:40:00,BRONX,40,M,40.82079045300003,-73.91375915499998 +11/04/2019,13:40:00,BRONX,40,M,40.82079045300003,-73.91375915499998 +11/04/2019,13:40:00,BRONX,40,M,40.82079045300003,-73.91375915499998 +11/04/2019,13:40:00,BRONX,40,M,40.82079045300003,-73.91375915499998 +11/04/2019,02:41:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +11/03/2019,14:54:00,QUEENS,101,M,40.597284244000036,-73.761930927 +11/03/2019,00:26:00,BROOKLYN,88,M,40.693869310000025,-73.96221290099999 +11/02/2019,10:37:00,BRONX,47,M,40.880072125000034,-73.85069487599996 +11/02/2019,02:40:00,STATEN ISLAND,120,M,40.645022746000045,-74.077216847 +11/02/2019,02:09:00,MANHATTAN,23,F,40.78946330000008,-73.94763400399995 +11/02/2019,00:42:00,BROOKLYN,79,M,40.69607807800003,-73.95270199199997 +11/02/2019,00:24:00,BROOKLYN,90,M,40.710548430000074,-73.94072361899998 +11/01/2019,05:00:00,BRONX,44,M,40.84431481700005,-73.90942043899997 +10/31/2019,20:59:00,BROOKLYN,83,M,40.69034585500003,-73.90952141999998 +10/31/2019,19:03:00,BRONX,42,M,40.82305580800004,-73.90452830099997 +10/31/2019,19:03:00,BRONX,42,M,40.82305580800004,-73.90452830099997 +10/31/2019,14:17:00,BRONX,52,M,40.86890454400003,-73.89629841699998 +10/30/2019,19:55:00,BRONX,52,M,40.869764707000066,-73.891495476 +10/29/2019,20:36:00,QUEENS,113,M,40.68601904400003,-73.76645659599995 +10/29/2019,20:22:00,BROOKLYN,84,M,40.70140601600008,-73.983808132 +10/28/2019,22:39:00,BROOKLYN,73,M,40.67483425900008,-73.91942041999994 +10/28/2019,15:53:00,QUEENS,103,F,40.70638803100008,-73.79997184399997 +10/28/2019,14:26:00,MANHATTAN,25,M,40.811130194000036,-73.93671450599999 +10/28/2019,12:19:00,BRONX,44,M,40.83626606400002,-73.91132866299995 +10/27/2019,18:14:00,BROOKLYN,79,F,40.682000963000064,-73.94822315299997 +10/27/2019,17:09:00,BRONX,44,M,40.83088631600003,-73.91862797499994 +10/27/2019,01:30:00,BROOKLYN,73,M,40.66304320600005,-73.90565842999997 +10/26/2019,22:50:00,BROOKLYN,75,M,40.684069959000055,-73.87074095399998 +10/26/2019,20:02:00,QUEENS,113,M,40.683729750000055,-73.78467642099997 +10/26/2019,04:20:00,BROOKLYN,69,M,40.646394480000026,-73.90371082399997 +10/26/2019,04:00:00,BRONX,48,M,40.846409037000065,-73.89337329799997 +10/25/2019,21:04:00,BRONX,47,M,40.89866994400006,-73.85484547899993 +10/25/2019,21:04:00,BRONX,47,M,40.89866994400006,-73.85484547899993 +10/25/2019,19:43:00,BRONX,46,F,40.857790719000036,-73.89878841299998 +10/25/2019,19:43:00,BRONX,46,M,40.857790719000036,-73.89878841299998 +10/25/2019,19:43:00,BRONX,46,M,40.857790719000036,-73.89878841299998 +10/25/2019,12:54:00,QUEENS,100,M,40.58996484000005,-73.80957751099999 +10/24/2019,21:56:00,BRONX,46,M,40.85564181000007,-73.91244513899994 +10/24/2019,19:43:00,BROOKLYN,75,M,40.66940464800007,-73.86363907499998 +10/24/2019,00:52:00,STATEN ISLAND,121,F,40.63806398200006,-74.16610830199994 +10/23/2019,19:53:00,QUEENS,113,M,40.67617271100005,-73.77997803999993 +10/23/2019,15:16:00,MANHATTAN,10,M,40.74347045500008,-74.00539300399998 +10/22/2019,03:04:00,QUEENS,102,M,40.68407195200007,-73.86297449699998 +10/21/2019,16:00:00,MANHATTAN,20,M,40.77429060000002,-73.98711927099998 +10/19/2019,10:25:00,QUEENS,103,M,40.70466945900005,-73.80782521099997 +10/18/2019,14:43:00,MANHATTAN,32,F,40.81087724100007,-73.94106415099995 +10/18/2019,14:43:00,MANHATTAN,32,M,40.81087724100007,-73.94106415099995 +10/17/2019,12:32:00,QUEENS,105,F,40.65818237800004,-73.74867718699994 +10/15/2019,22:55:00,BROOKLYN,63,M,40.62283851900003,-73.91761360499999 +10/13/2019,02:30:00,BROOKLYN,81,M,40.69426487000004,-73.93280818499993 +10/13/2019,02:30:00,BROOKLYN,81,M,40.69426487000004,-73.93280818499993 +10/13/2019,01:55:00,MANHATTAN,17,M,40.744099446000064,-73.97634911099993 +10/12/2019,18:02:00,MANHATTAN,28,M,40.80732404600008,-73.94941886199997 +10/12/2019,06:55:00,BROOKLYN,77,F,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,F,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,F,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,F,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:55:00,BROOKLYN,77,M,40.676216571000055,-73.93042172099996 +10/12/2019,06:30:00,BRONX,42,M,40.83061151500005,-73.90728181399999 +10/12/2019,02:50:00,MANHATTAN,18,F,40.76292445400002,-73.98564864699993 +10/11/2019,23:14:00,QUEENS,113,M,40.684420223000075,-73.78257211399993 +10/11/2019,22:15:00,MANHATTAN,10,F,40.748954585000035,-74.00123937099994 +10/10/2019,21:54:00,BROOKLYN,71,M,40.65606750000006,-73.95996734599998 +10/09/2019,13:38:00,QUEENS,105,M,40.753532458000045,-73.70659676099996 +10/09/2019,13:00:00,QUEENS,105,M,40.74174848400003,-73.70204752099994 +10/07/2019,16:21:00,BROOKLYN,60,F,40.57978019500007,-73.99842465499995 +10/07/2019,13:27:00,BRONX,43,M,40.81824648100008,-73.85414296999993 +10/06/2019,21:54:00,MANHATTAN,23,M,40.79124111900006,-73.94597136299996 +10/06/2019,17:00:00,BROOKLYN,79,M,40.68786431700005,-73.94939048399993 +10/06/2019,13:49:00,BROOKLYN,67,M,40.640172009000025,-73.94552436799995 +10/06/2019,01:09:00,BROOKLYN,77,F,40.674885741000026,-73.96007501899999 +10/06/2019,01:09:00,BROOKLYN,77,M,40.674885741000026,-73.96007501899999 +10/05/2019,21:50:00,MANHATTAN,25,M,40.800334261000046,-73.94565697199994 +10/05/2019,04:38:00,BRONX,40,M,40.815946755000034,-73.90762016499998 +10/05/2019,02:15:00,BRONX,40,M,40.80091171200007,-73.91550779499994 +10/05/2019,00:34:00,BRONX,49,M,40.857454424000025,-73.84754276399997 +10/04/2019,18:34:00,BRONX,44,M,40.834516921000045,-73.91770925599997 +10/04/2019,01:51:00,BRONX,43,M,40.83350852400008,-73.86663818999993 +10/03/2019,21:39:00,BROOKLYN,79,M,40.682177387000024,-73.949935623 +10/03/2019,14:27:00,BROOKLYN,73,M,40.66123156200007,-73.91249125199994 +10/03/2019,01:45:00,BROOKLYN,67,M,40.64465170600005,-73.92620615399994 +10/03/2019,00:38:00,MANHATTAN,33,M,40.840183525000036,-73.93764097999998 +10/02/2019,20:14:00,BRONX,44,M,40.842979335000045,-73.91457972899997 +10/02/2019,16:47:00,BROOKLYN,81,M,40.68121734900007,-73.92570780199995 +10/02/2019,13:26:00,BROOKLYN,79,M,40.69579171600003,-73.939095905 +10/01/2019,13:10:00,QUEENS,103,M,40.699021834000064,-73.79572395699995 +09/30/2019,13:49:00,MANHATTAN,23,M,40.799665264000055,-73.94719977999995 +09/30/2019,13:49:00,MANHATTAN,23,M,40.799665264000055,-73.94719977999995 +09/29/2019,23:15:00,BRONX,52,M,40.86275525800004,-73.904493002 +09/29/2019,18:30:00,STATEN ISLAND,120,M,40.621570706000064,-74.07804344 +09/29/2019,00:35:00,BRONX,47,M,40.88649666100008,-73.84591741799994 +09/28/2019,01:17:00,BRONX,42,M,40.83855936400005,-73.89660592299998 +09/27/2019,23:29:00,BROOKLYN,75,M,40.671634710000035,-73.87442765599997 +09/27/2019,21:45:00,QUEENS,101,F,40.59368532700007,-73.75907037999998 +09/27/2019,20:40:00,BROOKLYN,75,F,40.66762987300007,-73.89625447799993 +09/27/2019,20:40:00,BROOKLYN,75,M,40.66762987300007,-73.89625447799993 +09/27/2019,20:40:00,BROOKLYN,75,M,40.66762987300007,-73.89625447799993 +09/27/2019,20:03:00,QUEENS,101,M,40.59646293100008,-73.77246640899993 +09/27/2019,20:03:00,QUEENS,101,M,40.59646293100008,-73.77246640899993 +09/27/2019,20:03:00,QUEENS,101,M,40.59646293100008,-73.77246640899993 +09/27/2019,20:03:00,QUEENS,101,M,40.59646293100008,-73.77246640899993 +09/26/2019,19:00:00,BROOKLYN,84,M,40.694374168000024,-73.98566339999995 +09/26/2019,14:00:00,MANHATTAN,25,M,40.799631850000026,-73.94616681699993 +09/26/2019,02:30:00,BRONX,40,M,40.812525348000065,-73.92442689199999 +09/25/2019,19:15:00,BROOKLYN,69,M,40.64488058200004,-73.89268997599999 +09/24/2019,22:51:00,BROOKLYN,71,F,40.65775788800004,-73.95177405399994 +09/24/2019,21:00:00,BRONX,42,M,40.832416753000075,-73.89071440599997 +09/24/2019,17:45:00,BROOKLYN,73,M,40.67005407200002,-73.92117453999998 +09/24/2019,16:35:00,BRONX,46,M,40.84799365100001,-73.91799620099994 +09/23/2019,19:50:00,BROOKLYN,81,M,40.67918825200008,-73.92054002199995 +09/23/2019,17:48:00,BROOKLYN,70,F,40.64085528000004,-73.95820727299997 +09/23/2019,17:48:00,BROOKLYN,70,F,40.64085528000004,-73.95820727299997 +09/23/2019,11:45:00,MANHATTAN,23,M,40.795847213000044,-73.94691026399995 +09/23/2019,11:45:00,MANHATTAN,23,M,40.795847213000044,-73.94691026399995 +09/23/2019,02:10:00,MANHATTAN,30,M,40.82048727700004,-73.95494033399994 +09/23/2019,00:23:00,BRONX,50,M,40.870041281000056,-73.90311219699998 +09/22/2019,20:38:00,BRONX,42,M,40.82449489700008,-73.91252947799995 +09/22/2019,20:30:00,BROOKLYN,67,M,40.638706899000056,-73.94681909099995 +09/22/2019,20:17:00,QUEENS,113,M,40.700315647000025,-73.76598816099995 +09/22/2019,20:17:00,QUEENS,113,M,40.700315647000025,-73.76598816099995 +09/22/2019,03:40:00,BRONX,45,M,40.81689486900007,-73.83880601299995 +09/21/2019,22:49:00,QUEENS,113,M,40.688914490000045,-73.75444613099995 +09/21/2019,20:45:00,BROOKLYN,67,M,40.64047529100003,-73.94846436099994 +09/21/2019,20:45:00,BROOKLYN,67,M,40.64047529100003,-73.94846436099994 +09/21/2019,20:45:00,BROOKLYN,67,M,40.64047529100003,-73.94846436099994 +09/18/2019,19:47:00,BRONX,44,M,40.834823081000025,-73.91597788499998 +09/18/2019,00:30:00,MANHATTAN,28,M,40.80027140300007,-73.95248348799998 +09/17/2019,22:37:00,BRONX,44,M,40.824144257000064,-73.91717287899995 +09/17/2019,08:51:00,STATEN ISLAND,120,F,40.617875887000025,-74.08244438599995 +09/17/2019,00:44:00,QUEENS,108,M,40.74526492500007,-73.90503314699998 +09/16/2019,19:33:00,MANHATTAN,25,F,40.80093037300003,-73.94109824099995 +09/16/2019,00:20:00,BROOKLYN,88,M,40.69501525100002,-73.97809388299999 +09/15/2019,23:20:00,BROOKLYN,88,F,40.69703399000008,-73.97163074399998 +09/15/2019,18:55:00,MANHATTAN,32,M,40.82102539800008,-73.93760473699997 +09/15/2019,05:44:00,BRONX,52,M,40.863813486000026,-73.89073873399997 +09/15/2019,00:46:00,BRONX,43,M,40.82295411300004,-73.86818046599996 +09/14/2019,05:33:00,BROOKLYN,83,M,40.693007599000055,-73.91218269899997 +09/14/2019,00:09:00,MANHATTAN,34,M,40.85204555700005,-73.93174513099996 +09/13/2019,20:47:00,BROOKLYN,79,M,40.68639573400003,-73.949095931 +09/13/2019,17:53:00,BRONX,42,M,40.82518840900008,-73.90447465599993 +09/12/2019,20:20:00,BRONX,47,M,40.88735603500004,-73.85902567999993 +09/12/2019,05:52:00,MANHATTAN,32,M,40.82305625200007,-73.94242273799993 +09/12/2019,01:20:00,BROOKLYN,77,M,40.665926040000045,-73.92546530099996 +09/12/2019,01:20:00,BROOKLYN,77,M,40.665926040000045,-73.92546530099996 +09/11/2019,23:53:00,BROOKLYN,77,M,40.67508142100007,-73.92363809599993 +09/11/2019,21:10:00,QUEENS,105,M,40.66601566000002,-73.77927619999997 +09/11/2019,20:00:00,BROOKLYN,67,M,40.65549899200005,-73.91795169699995 +09/10/2019,22:11:00,MANHATTAN,23,M,40.792130892000046,-73.936172792 +09/08/2019,20:19:00,QUEENS,113,M,40.69086117800003,-73.75863991899995 +09/07/2019,23:48:00,MANHATTAN,26,M,40.812950638000075,-73.95588109399995 +09/06/2019,16:52:00,BROOKLYN,83,M,40.69205542900005,-73.91253013099998 +09/06/2019,16:52:00,BROOKLYN,83,M,40.69205542900005,-73.91253013099998 +09/06/2019,16:00:00,BROOKLYN,77,M,40.67081759000007,-73.93511008699994 +09/05/2019,20:48:00,BROOKLYN,67,M,40.64374258000004,-73.95073198799997 +09/04/2019,20:30:00,BROOKLYN,73,M,40.67119007600007,-73.90952938099997 +09/04/2019,20:00:00,BROOKLYN,75,M,40.66713587700008,-73.86697804199997 +09/04/2019,00:48:00,BRONX,42,M,40.82441491600008,-73.91569835799999 +09/02/2019,23:44:00,STATEN ISLAND,122,M,40.610879854000075,-74.11676658399993 +09/02/2019,21:05:00,BROOKLYN,79,M,40.68639573400003,-73.949095931 +09/02/2019,20:25:00,BRONX,48,F,40.85451099000005,-73.89291929999997 +09/02/2019,12:09:00,BRONX,47,M,40.883235548000066,-73.86299798899995 +09/02/2019,05:30:00,BRONX,48,M,40.841183585000074,-73.87989381599994 +09/02/2019,04:17:00,QUEENS,102,M,40.69761867900007,-73.82004575599996 +09/02/2019,04:17:00,QUEENS,102,M,40.69761867900007,-73.82004575599996 +09/02/2019,04:17:00,QUEENS,102,M,40.69761867900007,-73.82004575599996 +09/02/2019,04:17:00,QUEENS,102,M,40.69761867900007,-73.82004575599996 +09/02/2019,03:42:00,BROOKLYN,83,M,40.69577536400004,-73.90652809699995 +09/02/2019,02:57:00,BROOKLYN,70,F,40.63935281700003,-73.95537251499997 +09/02/2019,02:57:00,BROOKLYN,70,F,40.63935281700003,-73.95537251499997 +09/02/2019,02:57:00,BROOKLYN,70,M,40.63935281700003,-73.95537251499997 +09/02/2019,02:57:00,BROOKLYN,70,M,40.63935281700003,-73.95537251499997 +09/01/2019,00:05:00,QUEENS,101,M,40.592451366000034,-73.78602574499998 +08/31/2019,15:50:00,BROOKLYN,81,M,40.68807093600003,-73.93456684899995 +08/31/2019,07:42:00,BRONX,45,M,40.84262515300003,-73.85205834399994 +08/31/2019,06:05:00,BROOKLYN,72,M,40.64518571800004,-74.00666069199998 +08/31/2019,02:45:00,QUEENS,105,M,40.703936154000075,-73.73324843399995 +08/30/2019,22:49:00,QUEENS,104,M,40.711937611000046,-73.90447463599996 +08/30/2019,22:35:00,QUEENS,106,M,40.674588380000046,-73.80393908099995 +08/30/2019,20:30:00,BRONX,44,M,40.84486682000005,-73.90982448999995 +08/30/2019,19:15:00,BROOKLYN,67,M,40.63805647100002,-73.92697009899997 +08/30/2019,17:44:00,BROOKLYN,75,M,40.684281548000044,-73.87342672099999 +08/30/2019,17:15:00,BROOKLYN,83,M,40.69044044900005,-73.90766784 +08/30/2019,01:47:00,QUEENS,103,M,40.693685878000046,-73.80035253199995 +08/29/2019,20:45:00,QUEENS,103,M,40.70433647000005,-73.79770578099993 +08/29/2019,20:45:00,QUEENS,103,M,40.70433647000005,-73.79770578099993 +08/28/2019,15:20:00,MANHATTAN,28,M,40.80027140300007,-73.95248348799998 +08/28/2019,00:29:00,BRONX,52,F,40.86350728100007,-73.90446299999998 +08/27/2019,21:50:00,BRONX,49,M,40.84145059700006,-73.86804261899994 +08/27/2019,21:33:00,BROOKLYN,71,M,40.660436625000045,-73.93977335499993 +08/27/2019,14:20:00,BRONX,44,M,40.83021160200008,-73.91182094199995 +08/27/2019,01:00:00,QUEENS,113,F,40.682499421000045,-73.78726915499993 +08/26/2019,21:25:00,QUEENS,105,M,40.65092724700002,-73.73494154499997 +08/26/2019,21:20:00,BRONX,40,M,40.81264236700008,-73.91509552299993 +08/26/2019,15:47:00,QUEENS,113,M,40.672085081000034,-73.75649442199995 +08/26/2019,03:23:00,MANHATTAN,5,M,40.72135294100008,-73.99033666499997 +08/25/2019,20:20:00,BROOKLYN,62,F,40.60588050000007,-73.99873015699995 +08/25/2019,17:00:00,QUEENS,110,M,40.73455764800008,-73.88405877499997 +08/25/2019,04:29:00,BROOKLYN,60,M,40.583388831000036,-73.986522456 +08/25/2019,03:20:00,BRONX,52,M,40.87348021900005,-73.87961129699994 +08/25/2019,01:20:00,QUEENS,115,M,40.75197560600003,-73.86377323599999 +08/25/2019,00:59:00,QUEENS,110,M,40.73817137200007,-73.86075225699994 +08/24/2019,20:15:00,QUEENS,103,M,40.691290713000065,-73.79779584499995 +08/24/2019,02:10:00,MANHATTAN,5,M,40.72229427400004,-73.98900890899995 +08/24/2019,00:50:00,BRONX,47,M,40.880992555000034,-73.86251079699997 +08/23/2019,22:10:00,QUEENS,103,M,40.697805308000056,-73.80814071699997 +08/23/2019,19:18:00,BROOKLYN,63,M,40.63630990100006,-73.92146300499998 +08/23/2019,17:58:00,BRONX,40,M,40.80791877300004,-73.91901728199997 +08/23/2019,17:58:00,BRONX,40,M,40.80791877300004,-73.91901728199997 +08/22/2019,23:47:00,MANHATTAN,9,M,40.730667809000074,-73.98307939999995 +08/22/2019,19:40:00,QUEENS,113,M,40.66753798700007,-73.76356183699994 +08/22/2019,18:03:00,BRONX,46,M,40.85454734900002,-73.91333944399997 +08/22/2019,18:03:00,BRONX,46,M,40.85454734900002,-73.91333944399997 +08/21/2019,23:34:00,STATEN ISLAND,120,M,40.634411467000064,-74.11896229899995 +08/21/2019,03:42:00,BROOKLYN,73,M,40.662565245000046,-73.91962987899994 +08/21/2019,01:30:00,BRONX,49,M,40.85556779000007,-73.86666264199994 +08/20/2019,22:11:00,BROOKLYN,60,M,40.57767409600008,-73.98605562899995 +08/20/2019,21:25:00,BROOKLYN,73,M,40.66473194200007,-73.92117001499997 +08/20/2019,20:08:00,QUEENS,103,M,40.69382354100002,-73.800597338 +08/20/2019,00:29:00,QUEENS,105,M,40.66428299800003,-73.77188182599998 +08/19/2019,01:26:00,BRONX,42,M,40.82880838400007,-73.89466620499995 +08/18/2019,03:52:00,BRONX,43,M,40.81572025100007,-73.86450258499997 +08/18/2019,02:30:00,BROOKLYN,73,M,40.66486580000004,-73.92024708999998 +08/18/2019,02:30:00,BROOKLYN,73,M,40.66486580000004,-73.92024708999998 +08/17/2019,22:19:00,BROOKLYN,83,M,40.69151240700006,-73.90955229099995 +08/17/2019,04:47:00,BRONX,40,M,40.821466074000064,-73.91810115099996 +08/16/2019,22:25:00,BRONX,52,M,40.86565846400004,-73.89131055799999 +08/16/2019,22:25:00,BRONX,52,M,40.86565846400004,-73.89131055799999 +08/16/2019,22:19:00,BROOKLYN,73,M,40.670168236000045,-73.91572748899993 +08/16/2019,16:45:00,MANHATTAN,24,M,40.796444217000044,-73.96491761499993 +08/16/2019,03:06:00,BROOKLYN,75,F,40.66904549700007,-73.88135010699995 +08/15/2019,22:59:00,MANHATTAN,30,M,40.82502272800008,-73.945000882 +08/15/2019,00:26:00,BRONX,41,M,40.824178317000076,-73.89802295699997 +08/14/2019,23:14:00,BROOKLYN,83,M,40.696018140000035,-73.93172454799998 +08/14/2019,17:10:00,BROOKLYN,75,M,40.683761854000075,-73.88564701099993 +08/13/2019,23:49:00,BROOKLYN,62,M,40.60894803700006,-73.98372250599994 +08/13/2019,23:49:00,BROOKLYN,62,M,40.60894803700006,-73.98372250599994 +08/13/2019,23:40:00,MANHATTAN,30,M,40.82922409500002,-73.94336412599996 +08/13/2019,15:55:00,QUEENS,105,M,40.67764073700005,-73.74271647099994 +08/13/2019,03:45:00,BRONX,46,M,40.84676363700004,-73.91011107099996 +08/12/2019,19:38:00,MANHATTAN,25,M,40.79863064400007,-73.93659275299996 +08/12/2019,16:21:00,BROOKLYN,75,M,40.661774156000035,-73.89809461399994 +08/12/2019,16:21:00,BROOKLYN,75,M,40.661774156000035,-73.89809461399994 +08/12/2019,03:10:00,MANHATTAN,20,M,40.77429060000002,-73.98711927099998 +08/11/2019,23:42:00,BRONX,49,M,40.86858934000002,-73.86725479999996 +08/11/2019,23:42:00,BRONX,49,M,40.86858934000002,-73.86725479999996 +08/11/2019,23:30:00,BROOKLYN,63,M,40.60262094700005,-73.914663965 +08/11/2019,04:20:00,BROOKLYN,75,F,40.661487692000044,-73.87233098799999 +08/11/2019,04:20:00,BROOKLYN,75,M,40.661487692000044,-73.87233098799999 +08/11/2019,04:00:00,QUEENS,113,M,40.68844691900005,-73.79612414799993 +08/11/2019,03:40:00,BROOKLYN,75,F,40.67611797400008,-73.90078017499997 +08/11/2019,03:40:00,BROOKLYN,75,M,40.67611797400008,-73.90078017499997 +08/11/2019,02:47:00,BROOKLYN,75,M,40.669050105000046,-73.87035911599996 +08/11/2019,02:17:00,MANHATTAN,13,M,40.74095063100003,-73.99212733199995 +08/10/2019,23:37:00,BRONX,48,M,40.83946674600002,-73.88948128799996 +08/10/2019,22:51:00,BROOKLYN,67,M,40.64433272300005,-73.93927980499996 +08/10/2019,22:00:00,QUEENS,114,M,40.77533592200007,-73.93628998399998 +08/10/2019,16:50:00,BRONX,40,M,40.81698058400008,-73.92115225499998 +08/08/2019,22:28:00,BROOKLYN,67,M,40.65120677600004,-73.941425027 +08/08/2019,00:13:00,STATEN ISLAND,121,M,40.635920928000075,-74.16943934199999 +08/06/2019,18:30:00,BROOKLYN,73,M,40.67003008100005,-73.90404439699995 +08/06/2019,14:45:00,BRONX,44,M,40.83202215400007,-73.91795806799998 +08/06/2019,00:27:00,STATEN ISLAND,120,M,40.63953693600007,-74.08730302399994 +08/05/2019,20:46:00,QUEENS,114,M,40.75524058600007,-73.94484914899994 +08/05/2019,16:45:00,BROOKLYN,73,M,40.662767503000055,-73.90752952599996 +08/05/2019,01:52:00,BROOKLYN,77,F,40.67117671300008,-73.92532965699995 +08/05/2019,01:52:00,BROOKLYN,77,F,40.67117671300008,-73.92532965699995 +08/05/2019,01:52:00,BROOKLYN,77,M,40.67117671300008,-73.92532965699995 +08/05/2019,01:52:00,BROOKLYN,77,M,40.67117671300008,-73.92532965699995 +08/05/2019,01:45:00,BRONX,48,M,40.84252117200003,-73.88077326199993 +08/04/2019,06:44:00,BROOKLYN,73,F,40.66983535600008,-73.91469332599996 +08/04/2019,04:00:00,BROOKLYN,79,M,40.679308959000025,-73.94961690299994 +08/04/2019,03:47:00,MANHATTAN,26,M,40.81043801200008,-73.952837473 +08/04/2019,03:47:00,MANHATTAN,26,M,40.81043801200008,-73.952837473 +08/03/2019,23:23:00,BROOKLYN,75,F,40.67301906900008,-73.87036942699996 +08/03/2019,22:05:00,MANHATTAN,23,M,40.79898610500004,-73.94461786899996 +08/03/2019,18:01:00,BRONX,42,M,40.83186604400004,-73.897769064 +08/03/2019,02:45:00,BRONX,46,M,40.852645755000026,-73.92169917899997 +07/31/2019,15:35:00,QUEENS,115,M,40.752788232000064,-73.86626921999994 +07/30/2019,21:44:00,MANHATTAN,23,M,40.796126551000036,-73.94557011499995 +07/30/2019,03:22:00,QUEENS,113,M,40.67803628700005,-73.78134910699998 +07/29/2019,22:37:00,BRONX,42,F,40.83593960600007,-73.88646598899999 +07/29/2019,22:05:00,BRONX,41,M,40.82377925000004,-73.89992047999993 +07/29/2019,14:15:00,BRONX,48,M,40.85140742400005,-73.88508408799999 +07/29/2019,02:18:00,BROOKLYN,81,M,40.67943445800007,-73.93211287499997 +07/28/2019,22:40:00,BRONX,44,M,40.83976812900005,-73.91472118499998 +07/28/2019,21:49:00,BRONX,45,M,40.84253385300008,-73.84523135199998 +07/28/2019,20:14:00,BRONX,46,M,40.85143811800003,-73.91780037699993 +07/28/2019,20:14:00,BRONX,46,M,40.85143811800003,-73.91780037699993 +07/28/2019,14:35:00,MANHATTAN,30,M,40.81860066000007,-73.95246317599998 +07/28/2019,04:00:00,BRONX,50,M,40.88311992000007,-73.90332096899994 +07/28/2019,01:54:00,BROOKLYN,69,M,40.63434976900004,-73.90632950099996 +07/28/2019,01:40:00,QUEENS,106,M,40.67422773900006,-73.85727348699999 +07/28/2019,00:35:00,BRONX,41,M,40.814821817000045,-73.88654175399995 +07/27/2019,22:53:00,BROOKLYN,73,F,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,F,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,F,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,F,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,22:53:00,BROOKLYN,73,M,40.657236613000066,-73.90075779799997 +07/27/2019,09:08:00,BROOKLYN,75,M,40.664701666000035,-73.86733253799997 +07/27/2019,01:15:00,BROOKLYN,73,M,40.684194302000044,-73.91608474599997 +07/27/2019,00:30:00,MANHATTAN,33,M,40.83406831000008,-73.94294803999998 +07/26/2019,21:15:00,BROOKLYN,79,M,40.68419972300006,-73.94866132899993 +07/26/2019,03:35:00,BROOKLYN,75,M,40.675494798000045,-73.90065131699998 +07/25/2019,17:49:00,BROOKLYN,71,M,40.669900788000064,-73.95883073299996 +07/25/2019,02:17:00,QUEENS,113,M,40.69182345000007,-73.75420823699994 +07/25/2019,02:17:00,QUEENS,113,M,40.69182345000007,-73.75420823699994 +07/25/2019,02:17:00,QUEENS,113,M,40.69182345000007,-73.75420823699994 +07/25/2019,02:17:00,QUEENS,113,M,40.69182345000007,-73.75420823699994 +07/24/2019,23:20:00,BROOKLYN,83,M,40.68708841900008,-73.91389240999997 +07/24/2019,19:56:00,BRONX,44,M,40.828473961000036,-73.91898142499997 +07/24/2019,19:50:00,BROOKLYN,79,F,40.67919247000003,-73.94127786699994 +07/24/2019,17:00:00,QUEENS,109,M,40.79149108400002,-73.81941282399998 +07/24/2019,13:20:00,BRONX,47,M,40.87324459100006,-73.84135960699997 +07/23/2019,19:49:00,BROOKLYN,69,M,40.633127726000055,-73.89304393799993 +07/23/2019,02:10:00,BROOKLYN,90,M,40.70908739400005,-73.95748999799997 +07/22/2019,22:27:00,BRONX,44,M,40.83722861900003,-73.90678471699994 +07/21/2019,22:33:00,BRONX,45,M,40.821584683000026,-73.82141588799993 +07/21/2019,15:22:00,MANHATTAN,23,M,40.79585588600002,-73.94787095499998 +07/21/2019,02:00:00,BROOKLYN,75,M,40.65449240100002,-73.886533307 +07/21/2019,01:58:00,BROOKLYN,60,M,40.57557363000007,-73.98120362499998 +07/20/2019,05:00:00,QUEENS,114,M,40.75493348100008,-73.91039019299996 +07/19/2019,23:50:00,BRONX,46,M,40.84932069000007,-73.91235948099995 +07/19/2019,23:50:00,BRONX,46,M,40.84932069000007,-73.91235948099995 +07/19/2019,20:54:00,BRONX,42,M,40.827285732000064,-73.90490886099997 +07/19/2019,18:44:00,BRONX,46,M,40.85590689000002,-73.89769596199994 +07/17/2019,16:38:00,QUEENS,114,M,40.75416455100003,-73.94465152299993 +07/17/2019,07:33:00,MANHATTAN,25,M,40.806617895000045,-73.93676575499995 +07/16/2019,21:30:00,MANHATTAN,23,M,40.79708858400005,-73.94274857999993 +07/16/2019,21:30:00,MANHATTAN,23,M,40.79708858400005,-73.94274857999993 +07/15/2019,17:35:00,MANHATTAN,25,M,40.79930825400004,-73.94112857099998 +07/15/2019,01:00:00,MANHATTAN,25,M,40.799232486000044,-73.93305619799997 +07/15/2019,01:00:00,MANHATTAN,25,M,40.799232486000044,-73.93305619799997 +07/15/2019,00:07:00,BROOKLYN,73,M,40.66150226400004,-73.90766103699997 +07/14/2019,22:43:00,BROOKLYN,73,M,40.667573424000075,-73.90729576599993 +07/14/2019,03:45:00,BRONX,45,M,40.83079891400007,-73.82694879599995 +07/14/2019,02:22:00,MANHATTAN,25,M,40.81052442400005,-73.93821424599997 +07/14/2019,01:30:00,BROOKLYN,81,M,40.683045618000044,-73.92609516299996 +07/14/2019,00:28:00,BROOKLYN,73,M,40.662767503000055,-73.90752952599996 +07/14/2019,00:03:00,BROOKLYN,67,M,40.663569288000076,-73.92284026399994 +07/14/2019,00:03:00,BROOKLYN,67,M,40.663569288000076,-73.92284026399994 +07/13/2019,23:25:00,BROOKLYN,81,M,40.67805543000002,-73.93018906599998 +07/13/2019,22:56:00,BRONX,48,M,40.84507992600004,-73.89264894999997 +07/13/2019,21:43:00,BRONX,46,M,40.85004960500004,-73.90074122799997 +07/13/2019,02:45:00,MANHATTAN,9,M,40.720813298000046,-73.97813591099998 +07/13/2019,02:45:00,MANHATTAN,9,M,40.720813298000046,-73.97813591099998 +07/13/2019,02:45:00,MANHATTAN,9,M,40.720813298000046,-73.97813591099998 +07/13/2019,00:43:00,MANHATTAN,23,F,40.788845063000046,-73.94617553799998 +07/13/2019,00:43:00,MANHATTAN,23,M,40.788845063000046,-73.94617553799998 +07/13/2019,00:43:00,MANHATTAN,23,M,40.788845063000046,-73.94617553799998 +07/12/2019,22:50:00,QUEENS,115,M,40.75211177400007,-73.87242800499997 +07/12/2019,22:35:00,QUEENS,113,F,40.68397606800004,-73.78283677199995 +07/12/2019,01:50:00,QUEENS,109,M,40.74294374700002,-73.82772191799995 +07/11/2019,21:45:00,BRONX,46,M,40.85837313300004,-73.89940208399997 +07/11/2019,21:45:00,BRONX,46,M,40.85837313300004,-73.89940208399997 +07/10/2019,02:56:00,BROOKLYN,69,M,40.64929346200007,-73.89791186799994 +07/10/2019,02:56:00,BROOKLYN,69,M,40.64929346200007,-73.89791186799994 +07/09/2019,10:00:00,QUEENS,114,F,40.76187046200005,-73.93191334299998 +07/08/2019,23:32:00,BRONX,48,M,40.85284199500006,-73.88417430999993 +07/08/2019,23:32:00,BRONX,48,M,40.85284199500006,-73.88417430999993 +07/08/2019,17:40:00,BROOKLYN,71,M,40.66790942700004,-73.93260042799993 +07/08/2019,17:40:00,BROOKLYN,71,M,40.66790942700004,-73.93260042799993 +07/07/2019,20:20:00,QUEENS,102,F,40.70059287300006,-73.81585419699995 +07/07/2019,10:50:00,BROOKLYN,60,F,40.574301425000044,-73.99407278899997 +07/07/2019,00:30:00,STATEN ISLAND,120,M,40.63544471700004,-74.12043775599993 +07/06/2019,23:45:00,MANHATTAN,28,M,40.79766057200004,-73.95106232399995 +07/06/2019,00:03:00,BROOKLYN,67,M,40.652572760000055,-73.951219199 +07/05/2019,23:12:00,QUEENS,105,M,40.664216205000045,-73.74903292999993 +07/05/2019,21:25:00,BRONX,47,M,40.87813788000005,-73.86943433699997 +07/05/2019,21:25:00,BRONX,47,M,40.87813788000005,-73.86943433699997 +07/05/2019,17:20:00,BRONX,41,M,40.815402050000046,-73.88766070399998 +07/05/2019,17:20:00,BRONX,41,M,40.815402050000046,-73.88766070399998 +07/05/2019,10:48:00,BRONX,46,M,40.85131986700002,-73.92141156699995 +07/05/2019,04:25:00,BRONX,52,M,40.87147697300003,-73.89104432799998 +07/05/2019,04:15:00,BRONX,44,M,40.82921401300007,-73.917542369 +07/05/2019,04:10:00,MANHATTAN,28,M,40.80707632000008,-73.94784771899998 +07/05/2019,04:02:00,BRONX,42,M,40.834571796000034,-73.88831133599997 +07/05/2019,03:36:00,BROOKLYN,71,M,40.66531300600008,-73.93284095299998 +07/05/2019,02:45:00,MANHATTAN,25,M,40.80093037300003,-73.94109824099995 +07/05/2019,01:14:00,BRONX,48,M,40.85284199500006,-73.88417430999993 +07/05/2019,00:10:00,BROOKLYN,75,F,40.67185501100005,-73.88291686099996 +07/05/2019,00:10:00,BROOKLYN,75,M,40.67185501100005,-73.88291686099996 +07/04/2019,23:22:00,BRONX,46,M,40.85194616000007,-73.91077639999997 +07/04/2019,21:16:00,BROOKLYN,67,M,40.63762471600006,-73.94524900899995 +07/04/2019,06:20:00,BROOKLYN,67,F,40.65719254700008,-73.91422293299998 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/03/2019,00:04:00,QUEENS,114,M,40.755443005000075,-73.94342324599995 +07/02/2019,05:10:00,BROOKLYN,77,M,40.664717351000036,-73.92823133899999 +07/01/2019,22:10:00,BRONX,48,M,40.846043990000055,-73.88759088499995 +07/01/2019,17:58:00,MANHATTAN,33,M,40.84321623700004,-73.93728755699995 +06/30/2019,21:35:00,QUEENS,101,M,40.60115995800004,-73.75670987699993 +06/30/2019,04:24:00,MANHATTAN,10,F,40.74347045500008,-74.00539300399998 +06/30/2019,03:33:00,STATEN ISLAND,120,M,40.625306611000035,-74.08164662399997 +06/30/2019,01:20:00,BRONX,41,M,40.81254626700007,-73.90126678999997 +06/29/2019,18:39:00,BROOKLYN,83,M,40.695750503000056,-73.92941323199994 +06/29/2019,06:00:00,BROOKLYN,70,M,40.62560501000007,-73.95759720299998 +06/29/2019,05:48:00,BROOKLYN,69,F,40.63367789500006,-73.89435450199994 +06/29/2019,05:48:00,BROOKLYN,69,M,40.63367789500006,-73.89435450199994 +06/28/2019,17:35:00,BROOKLYN,73,F,40.67111083400005,-73.91356336299998 +06/28/2019,17:35:00,BROOKLYN,73,M,40.67111083400005,-73.91356336299998 +06/28/2019,12:34:00,BROOKLYN,72,M,40.64122780400004,-74.00539554699995 +06/28/2019,04:30:00,QUEENS,110,M,40.73843508200008,-73.86555105999997 +06/28/2019,00:26:00,BROOKLYN,83,M,40.70051267600007,-73.92941179699994 +06/28/2019,00:25:00,BRONX,42,M,40.833154599000075,-73.90913931099993 +06/27/2019,21:02:00,QUEENS,101,M,40.603696297000056,-73.74911276899995 +06/27/2019,01:00:00,BRONX,52,M,40.859171900000035,-73.90941104999997 +06/27/2019,00:15:00,BRONX,46,M,40.85214118700002,-73.92237572199997 +06/26/2019,20:45:00,BROOKLYN,81,M,40.68068575000007,-73.92709647699995 +06/26/2019,00:36:00,QUEENS,114,M,40.75493348100008,-73.91039019299996 +06/25/2019,22:24:00,BROOKLYN,81,M,40.680948759000046,-73.91820160899994 +06/25/2019,16:48:00,QUEENS,108,F,40.74942980400005,-73.90980569899993 +06/25/2019,02:55:00,BRONX,42,M,40.834725680000076,-73.89432798599995 +06/25/2019,02:55:00,BRONX,42,M,40.834725680000076,-73.89432798599995 +06/25/2019,01:20:00,QUEENS,109,M,40.76451021500004,-73.82471319199995 +06/25/2019,00:01:00,BRONX,48,M,40.857310106000064,-73.89240146599997 +06/24/2019,18:55:00,MANHATTAN,32,M,40.815751186000064,-73.93974841499994 +06/24/2019,02:49:00,BRONX,41,M,40.817116189000046,-73.89203291499997 +06/24/2019,00:05:00,BROOKLYN,60,M,40.574301425000044,-73.99407278899997 +06/23/2019,23:08:00,BRONX,43,M,40.834532695000064,-73.87182548099996 +06/23/2019,20:35:00,BRONX,50,M,40.87707565900007,-73.90609965999994 +06/23/2019,16:00:00,BRONX,44,M,40.82998817300006,-73.91398933899995 +06/23/2019,16:00:00,BRONX,44,M,40.82998817300006,-73.91398933899995 +06/23/2019,12:02:00,BROOKLYN,61,M,40.59401905900006,-73.96085431599995 +06/23/2019,02:15:00,BRONX,46,M,40.85495236700007,-73.90157978699995 +06/23/2019,02:15:00,BRONX,46,M,40.85495236700007,-73.90157978699995 +06/23/2019,00:30:00,MANHATTAN,30,M,40.82549764000004,-73.95127310099997 +06/22/2019,22:30:00,BRONX,44,F,40.82339303400005,-73.91833724599995 +06/22/2019,22:30:00,BRONX,44,M,40.82339303400005,-73.91833724599995 +06/22/2019,02:36:00,BROOKLYN,94,M,40.71737668200007,-73.93934673599993 +06/21/2019,23:30:00,BRONX,40,M,40.808777943000045,-73.923130702 +06/20/2019,19:09:00,BROOKLYN,75,M,40.67281467300006,-73.87167482899997 +06/20/2019,19:02:00,BROOKLYN,77,M,40.670320017000044,-73.93376235799997 +06/20/2019,19:02:00,BROOKLYN,77,M,40.670320017000044,-73.93376235799997 +06/20/2019,17:43:00,BROOKLYN,63,M,40.623535065000056,-73.938542237 +06/19/2019,18:01:00,BROOKLYN,73,M,40.67436669500006,-73.91807268799994 +06/19/2019,10:40:00,MANHATTAN,5,M,40.71083816400005,-74.000632678 +06/18/2019,10:50:00,BROOKLYN,73,M,40.66646466200007,-73.90410359499998 +06/17/2019,23:21:00,BROOKLYN,73,M,40.67829303700007,-73.90886718999997 +06/17/2019,17:34:00,BRONX,43,M,40.83146892900004,-73.85723973399995 +06/17/2019,14:47:00,BROOKLYN,81,M,40.69266153900003,-73.93697840199997 +06/15/2019,04:14:00,MANHATTAN,32,M,40.81373916300004,-73.94495240499998 +06/15/2019,01:25:00,MANHATTAN,32,M,40.80962885300004,-73.94197557899997 +06/14/2019,15:57:00,BROOKLYN,73,M,40.666231521000036,-73.92253800099995 +06/14/2019,02:45:00,BRONX,44,M,40.84383164100007,-73.91655562999993 +06/13/2019,16:10:00,MANHATTAN,23,M,40.789486555000046,-73.95057358399998 +06/13/2019,15:06:00,BROOKLYN,88,M,40.69471530800007,-73.97439044799995 +06/12/2019,22:57:00,BROOKLYN,61,M,40.59712056600006,-73.94124921699995 +06/12/2019,19:37:00,BROOKLYN,77,M,40.67520450200004,-73.94165270399995 +06/12/2019,19:27:00,STATEN ISLAND,121,M,40.635872566000046,-74.16684866599995 +06/12/2019,08:09:00,BRONX,49,F,40.86189455900006,-73.85766248 +06/12/2019,02:14:00,BROOKLYN,77,M,40.68159892600005,-73.96705837799993 +06/11/2019,21:41:00,BROOKLYN,75,M,40.669050105000046,-73.87035911599996 +06/10/2019,02:21:00,MANHATTAN,30,M,40.825913006000064,-73.94711752799998 +06/10/2019,00:55:00,BROOKLYN,83,M,40.69431327700005,-73.91851337199995 +06/10/2019,00:55:00,BROOKLYN,83,M,40.69431327700005,-73.91851337199995 +06/09/2019,22:20:00,BRONX,42,M,40.83593960600007,-73.88646598899999 +06/09/2019,22:13:00,QUEENS,103,M,40.696501571000056,-73.79387084199995 +06/09/2019,20:01:00,BRONX,52,M,40.86370044700004,-73.90572447299998 +06/09/2019,02:25:00,MANHATTAN,25,F,40.802765805000035,-73.93957234299995 +06/08/2019,22:44:00,STATEN ISLAND,120,M,40.63751722000006,-74.11760587299993 +06/08/2019,05:05:00,MANHATTAN,33,M,40.838998278000076,-73.93851306099998 +06/08/2019,05:05:00,MANHATTAN,33,M,40.838998278000076,-73.93851306099998 +06/08/2019,02:55:00,BROOKLYN,79,F,40.68309197400004,-73.958263731 +06/08/2019,00:40:00,BROOKLYN,79,M,40.68162066800004,-73.95796900499995 +06/07/2019,22:25:00,BROOKLYN,79,F,40.68831814300006,-73.94543815999998 +06/07/2019,22:25:00,BROOKLYN,79,M,40.68831814300006,-73.94543815999998 +06/07/2019,17:50:00,BROOKLYN,73,M,40.67982701600005,-73.90842523899995 +06/07/2019,17:50:00,BROOKLYN,73,M,40.67982701600005,-73.90842523899995 +06/07/2019,17:08:00,MANHATTAN,23,F,40.790746414000076,-73.95063404199995 +06/07/2019,10:30:00,BROOKLYN,75,M,40.66930982700006,-73.86944659699995 +06/07/2019,00:15:00,BRONX,49,M,40.869408631000056,-73.85042595199997 +06/07/2019,00:15:00,BRONX,49,M,40.869408631000056,-73.85042595199997 +06/07/2019,00:15:00,BRONX,49,M,40.869408631000056,-73.85042595199997 +06/07/2019,00:15:00,BRONX,49,M,40.869408631000056,-73.85042595199997 +06/06/2019,17:30:00,BROOKLYN,70,M,40.635141912000044,-73.94789561099998 +06/06/2019,00:56:00,BROOKLYN,79,M,40.688154120000036,-73.94685537799995 +06/05/2019,23:38:00,QUEENS,105,F,40.676551919000076,-73.75058721799998 +06/05/2019,12:20:00,BRONX,40,M,40.80550434700007,-73.91647725199994 +06/05/2019,12:20:00,BRONX,40,M,40.80550434700007,-73.91647725199994 +06/04/2019,22:50:00,BROOKLYN,88,M,40.69509231700005,-73.979240625 +06/04/2019,19:58:00,BRONX,52,M,40.861842730000035,-73.90295060899997 +06/04/2019,19:56:00,BROOKLYN,90,F,40.70372081700003,-73.93809683099995 +06/04/2019,02:00:00,BRONX,52,F,40.86922302700003,-73.89339456699997 +06/03/2019,23:05:00,BRONX,46,M,40.86065555300007,-73.89500620399998 +06/03/2019,07:07:00,BROOKLYN,75,M,40.65553848200005,-73.88409879299998 +06/02/2019,22:15:00,BROOKLYN,75,M,40.671246534000026,-73.86609385299994 +06/02/2019,01:56:00,BRONX,41,M,40.812520134000074,-73.90281300199997 +06/01/2019,23:11:00,BROOKLYN,75,M,40.669167307000066,-73.89665221699995 +06/01/2019,22:20:00,BROOKLYN,71,M,40.66613283600003,-73.93138385999998 +06/01/2019,22:12:00,BRONX,41,M,40.81435102900008,-73.88787562499994 +06/01/2019,22:12:00,BRONX,41,M,40.81435102900008,-73.88787562499994 +06/01/2019,21:25:00,BRONX,42,M,40.83576922100008,-73.90439441599993 +06/01/2019,14:14:00,QUEENS,101,F,40.60327400700004,-73.75310453299994 +06/01/2019,14:14:00,QUEENS,101,M,40.60327400700004,-73.75310453299994 +06/01/2019,13:45:00,BROOKLYN,77,M,40.673740010000074,-73.95686362099997 +06/01/2019,13:45:00,BROOKLYN,77,M,40.673740010000074,-73.95686362099997 +06/01/2019,04:47:00,BROOKLYN,73,M,40.682300858000076,-73.91299361299998 +05/31/2019,15:55:00,BROOKLYN,79,M,40.68033280500004,-73.93842499899995 +05/30/2019,05:35:00,BRONX,46,M,40.847964660000045,-73.91216969999994 +05/30/2019,04:33:00,BROOKLYN,67,M,40.65149336800005,-73.92453001199993 +05/29/2019,10:15:00,BROOKLYN,60,M,40.58795031200003,-73.98359800899993 +05/28/2019,04:15:00,BROOKLYN,75,M,40.663161856000045,-73.87983227999997 +05/28/2019,03:10:00,BRONX,40,M,40.80653810100006,-73.918910596 +05/28/2019,02:42:00,MANHATTAN,32,M,40.82044551200005,-73.93623234699999 +05/28/2019,01:50:00,MANHATTAN,23,M,40.79708858400005,-73.94274857999993 +05/28/2019,01:20:00,BROOKLYN,69,M,40.63272816400007,-73.89137286999993 +05/27/2019,23:32:00,BRONX,42,M,40.83518158300007,-73.89463443299998 +05/27/2019,23:32:00,BRONX,42,M,40.83518158300007,-73.89463443299998 +05/27/2019,23:00:00,QUEENS,107,M,40.73578327800004,-73.81062580299994 +05/27/2019,20:50:00,BROOKLYN,79,M,40.67924233600007,-73.94218636599999 +05/27/2019,20:50:00,BROOKLYN,79,M,40.67924233600007,-73.94218636599999 +05/27/2019,18:53:00,BROOKLYN,75,M,40.66560936100007,-73.86661702199996 +05/27/2019,18:53:00,BROOKLYN,75,M,40.66560936100007,-73.86661702199996 +05/27/2019,18:00:00,BROOKLYN,67,M,40.64204307200004,-73.94960900699994 +05/27/2019,18:00:00,BROOKLYN,67,M,40.64204307200004,-73.94960900699994 +05/27/2019,02:46:00,QUEENS,113,M,40.70092214400006,-73.75409174199996 +05/26/2019,21:22:00,BROOKLYN,71,M,40.665385170000036,-73.93422504099993 +05/26/2019,21:01:00,BROOKLYN,75,M,40.68596455800008,-73.87384899899995 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,20:08:00,BROOKLYN,75,M,40.66649382600008,-73.88779253999998 +05/26/2019,18:44:00,BROOKLYN,67,M,40.64993678900004,-73.92004510699995 +05/26/2019,14:00:00,BROOKLYN,77,M,40.668656183000046,-73.92834966199997 +05/26/2019,05:21:00,MANHATTAN,23,F,40.78673189800003,-73.94113246799998 +05/26/2019,05:21:00,MANHATTAN,23,F,40.78673189800003,-73.94113246799998 +05/26/2019,05:21:00,MANHATTAN,23,M,40.78673189800003,-73.94113246799998 +05/26/2019,05:21:00,MANHATTAN,23,M,40.78673189800003,-73.94113246799998 +05/25/2019,23:58:00,BROOKLYN,75,M,40.66525054900006,-73.890757594 +05/25/2019,23:40:00,QUEENS,100,M,40.58989372800004,-73.80807989899995 +05/25/2019,00:12:00,MANHATTAN,7,M,40.71626346000005,-73.98407867999998 +05/24/2019,22:13:00,BRONX,44,M,40.83202215400007,-73.91795806799998 +05/24/2019,20:29:00,BROOKLYN,67,M,40.65232695800007,-73.92751668299998 +05/24/2019,16:11:00,BROOKLYN,70,M,40.650808090000055,-73.95881728799998 +05/24/2019,00:23:00,BRONX,49,M,40.87047906600003,-73.84625102199995 +05/23/2019,20:39:00,BROOKLYN,75,M,40.666359726000046,-73.87487014199995 +05/23/2019,19:16:00,MANHATTAN,34,M,40.859806300000045,-73.92962232099995 +05/23/2019,01:35:00,BRONX,40,M,40.813292588000024,-73.91471898299993 +05/23/2019,00:20:00,BRONX,42,M,40.83763587300007,-73.88932531599994 +05/22/2019,22:19:00,MANHATTAN,28,M,40.798483162000025,-73.94914747099993 +05/22/2019,21:32:00,BRONX,42,M,40.83850153900005,-73.89950079699997 +05/21/2019,22:22:00,BROOKLYN,77,F,40.67066627200006,-73.95797590799998 +05/20/2019,18:30:00,BRONX,45,M,40.878075016000025,-73.82595788299993 +05/20/2019,04:30:00,QUEENS,108,M,40.74633257700003,-73.94795301199997 +05/19/2019,18:37:00,QUEENS,103,M,40.69659211500005,-73.78339071499995 +05/19/2019,04:17:00,BROOKLYN,67,M,40.65570853100007,-73.91545382599996 +05/19/2019,02:30:00,MANHATTAN,7,M,40.712229008000065,-73.98683547899995 +05/18/2019,21:10:00,BRONX,46,M,40.84940928900005,-73.90303019599996 +05/18/2019,20:13:00,BROOKLYN,75,M,40.64894086900005,-73.88494631099995 +05/18/2019,18:40:00,MANHATTAN,28,M,40.80729586300004,-73.95422681099996 +05/18/2019,09:53:00,MANHATTAN,32,F,40.817878452000045,-73.93995242199999 +05/18/2019,03:39:00,MANHATTAN,28,M,40.79781318400006,-73.94855204399995 +05/17/2019,23:59:00,BRONX,44,M,40.837118743000076,-73.91372714799998 +05/17/2019,21:36:00,MANHATTAN,32,M,40.81304536500005,-73.94626073199998 +05/16/2019,22:01:00,BRONX,47,M,40.88708918800006,-73.86778566699995 +05/16/2019,22:01:00,BRONX,47,M,40.88708918800006,-73.86778566699995 +05/16/2019,20:15:00,BROOKLYN,79,M,40.69399523200008,-73.94168313999995 +05/16/2019,19:26:00,BROOKLYN,77,M,40.67498697000008,-73.94584562599994 +05/15/2019,19:08:00,BRONX,46,M,40.85537769300004,-73.90472771799993 +05/15/2019,19:08:00,BRONX,46,M,40.85537769300004,-73.90472771799993 +05/15/2019,19:08:00,BRONX,46,M,40.85537769300004,-73.90472771799993 +05/15/2019,19:08:00,BRONX,46,M,40.85537769300004,-73.90472771799993 +05/14/2019,19:45:00,MANHATTAN,34,M,40.863003221000035,-73.92425384299997 +05/14/2019,19:45:00,MANHATTAN,34,M,40.863003221000035,-73.92425384299997 +05/14/2019,19:45:00,MANHATTAN,34,M,40.863003221000035,-73.92425384299997 +05/14/2019,19:45:00,MANHATTAN,34,M,40.863003221000035,-73.92425384299997 +05/11/2019,01:34:00,BRONX,47,M,40.88484355600008,-73.85374008999997 +05/09/2019,09:23:00,BROOKLYN,75,M,40.669167307000066,-73.89665221699995 +05/09/2019,01:32:00,MANHATTAN,1,M,40.728250797000044,-74.00537012399997 +05/09/2019,01:32:00,MANHATTAN,1,M,40.728250797000044,-74.00537012399997 +05/04/2019,01:45:00,BRONX,48,M,40.853658463000045,-73.88273420199994 +05/03/2019,17:08:00,STATEN ISLAND,121,F,40.63041514200007,-74.14297795599998 +05/03/2019,14:24:00,MANHATTAN,28,M,40.80069410200008,-73.95250846999993 +05/02/2019,14:35:00,BRONX,42,M,40.83112915700008,-73.89037323199994 +05/02/2019,00:23:00,BROOKLYN,75,M,40.67539564000003,-73.88550993999998 +05/02/2019,00:19:00,BRONX,46,M,40.85885021100006,-73.90529753999994 +04/30/2019,18:29:00,MANHATTAN,25,M,40.810799905000074,-73.93505670199994 +04/30/2019,00:13:00,BROOKLYN,90,M,40.712004695000076,-73.95646732699998 +04/29/2019,01:36:00,BRONX,44,M,40.84079511700002,-73.92319851599996 +04/27/2019,23:54:00,BROOKLYN,67,M,40.65388611000003,-73.95449784399995 +04/27/2019,11:36:00,BRONX,48,M,40.84507992600004,-73.89264894999997 +04/24/2019,23:15:00,BRONX,44,M,40.83886177100004,-73.91030606099997 +04/24/2019,14:58:00,BROOKLYN,71,M,40.662321699000074,-73.93865428399994 +04/24/2019,01:44:00,MANHATTAN,28,M,40.80326882400004,-73.94661899399993 +04/23/2019,22:54:00,BRONX,47,M,40.882693990000064,-73.83315683199999 +04/23/2019,22:53:00,BRONX,42,M,40.837001024000074,-73.90370600899995 +04/23/2019,00:18:00,STATEN ISLAND,121,M,40.63898417600007,-74.17125230499995 +04/22/2019,23:15:00,BRONX,42,M,40.82670544500007,-73.903522174 +04/22/2019,17:20:00,BROOKLYN,81,M,40.680948759000046,-73.91820160899994 +04/22/2019,17:01:00,QUEENS,114,M,40.75627543400003,-73.94501432899995 +04/21/2019,05:25:00,BRONX,52,M,40.88007108800008,-73.88585904599995 +04/20/2019,01:22:00,BRONX,40,M,40.817186588000034,-73.90665021099994 +04/20/2019,01:19:00,BROOKLYN,84,M,40.70140601600008,-73.983808132 +04/19/2019,17:43:00,QUEENS,105,M,40.694604754000075,-73.73840293399995 +04/19/2019,00:12:00,QUEENS,113,M,40.68947265200006,-73.74979967899995 +04/19/2019,00:12:00,QUEENS,113,M,40.68947265200006,-73.74979967899995 +04/18/2019,23:24:00,BROOKLYN,75,M,40.67066712500008,-73.87564431799996 +04/18/2019,22:30:00,MANHATTAN,23,M,40.79330094300008,-73.94876499799993 +04/18/2019,21:54:00,MANHATTAN,7,M,40.71774270100008,-73.98279048099994 +04/18/2019,19:50:00,BROOKLYN,75,M,40.67546756600007,-73.88066091799993 +04/18/2019,18:05:00,BROOKLYN,88,F,40.693497594000064,-73.97916899999996 +04/18/2019,16:25:00,MANHATTAN,34,U,40.85476109900002,-73.93351000399997 +04/18/2019,13:53:00,QUEENS,108,M,40.746307995000045,-73.91569614099996 +04/17/2019,16:34:00,MANHATTAN,7,M,40.712889645000075,-73.98078254999997 +04/16/2019,20:20:00,QUEENS,106,M,40.67049408600008,-73.80448103199996 +04/16/2019,19:45:00,QUEENS,105,M,40.71817995600002,-73.73613510799998 +04/16/2019,17:40:00,QUEENS,114,M,40.76062674100008,-73.93609107899994 +04/16/2019,17:12:00,BROOKLYN,77,M,40.67051514900004,-73.92956610799997 +04/15/2019,08:34:00,QUEENS,113,M,40.68900458000007,-73.78580605399995 +04/15/2019,08:34:00,QUEENS,113,M,40.68900458000007,-73.78580605399995 +04/14/2019,18:35:00,MANHATTAN,30,M,40.81950961800004,-73.95358253499995 +04/14/2019,14:03:00,BRONX,52,M,40.85967278300007,-73.90428052199997 +04/14/2019,03:35:00,MANHATTAN,9,M,40.723392998000065,-73.97625544299996 +04/14/2019,03:03:00,BRONX,52,M,40.85938115900007,-73.90679704999997 +04/14/2019,00:50:00,BROOKLYN,73,M,40.670168236000045,-73.91572748899993 +04/14/2019,00:50:00,BROOKLYN,73,M,40.670168236000045,-73.91572748899993 +04/13/2019,06:04:00,QUEENS,103,M,40.695782146000056,-73.79066712199995 +04/13/2019,01:50:00,QUEENS,110,M,40.74987737400005,-73.86272726099996 +04/13/2019,00:01:00,MANHATTAN,32,F,40.82819756300007,-73.93800993799994 +04/11/2019,03:10:00,MANHATTAN,32,M,40.82266444500005,-73.93844143899997 +04/10/2019,18:05:00,BRONX,48,M,40.854120099000056,-73.88880988799998 +04/10/2019,16:11:00,BROOKLYN,67,M,40.63780446800007,-73.94237719699998 +04/09/2019,18:20:00,QUEENS,115,M,40.76122121100008,-73.86723053699995 +04/09/2019,12:25:00,BROOKLYN,60,M,40.573763375000055,-73.99287775699997 +04/08/2019,21:35:00,BROOKLYN,79,M,40.68657763600004,-73.950812118 +04/08/2019,20:35:00,STATEN ISLAND,120,M,40.63404425200008,-74.12360937499993 +04/08/2019,19:40:00,BROOKLYN,77,M,40.67349360900005,-73.93486594799998 +04/08/2019,16:00:00,BROOKLYN,75,M,40.67746959700002,-73.89899717699996 +04/08/2019,11:55:00,QUEENS,115,M,40.74928579900006,-73.87854005699995 +04/08/2019,04:25:00,BROOKLYN,71,M,40.65927522700008,-73.93411572899998 +04/07/2019,15:27:00,QUEENS,105,M,40.66344036200008,-73.74078877299998 +04/07/2019,09:53:00,BROOKLYN,67,M,40.664191948000045,-73.92641162299998 +04/07/2019,05:15:00,QUEENS,110,M,40.73533091600007,-73.87545147199995 +04/07/2019,05:15:00,QUEENS,110,M,40.73533091600007,-73.87545147199995 +04/07/2019,03:15:00,BRONX,47,M,40.88476156000007,-73.84353817799997 +04/07/2019,01:45:00,MANHATTAN,32,M,40.814366077000045,-73.93645131899994 +04/06/2019,20:20:00,BRONX,40,M,40.82051865600005,-73.92133955099996 +04/06/2019,12:58:00,BROOKLYN,88,M,40.69539152700002,-73.97940641699995 +04/04/2019,22:35:00,BROOKLYN,67,M,40.656929053000056,-73.92609165799998 +04/04/2019,21:10:00,QUEENS,105,M,40.71566436900008,-73.73553543099996 +04/03/2019,14:00:00,BRONX,42,M,40.829965609000055,-73.90285617699995 +04/03/2019,14:00:00,BRONX,42,M,40.829965609000055,-73.90285617699995 +04/01/2019,22:21:00,BRONX,42,M,40.82305580800004,-73.90452830099997 +03/31/2019,21:16:00,BROOKLYN,71,M,40.65775788800004,-73.95177405399994 +03/31/2019,07:29:00,BROOKLYN,79,F,40.679847490000036,-73.93938447299999 +03/31/2019,05:05:00,BROOKLYN,75,M,40.66221332200007,-73.88637599799995 +03/31/2019,03:30:00,BRONX,40,M,40.811410352000046,-73.92771191299995 +03/30/2019,23:30:00,BROOKLYN,77,M,40.67372507300007,-73.94735355499995 +03/30/2019,21:30:00,BROOKLYN,70,M,40.65495097100006,-73.96172317299995 +03/30/2019,21:30:00,BROOKLYN,70,M,40.65495097100006,-73.96172317299995 +03/30/2019,00:50:00,QUEENS,113,M,40.67998073800004,-73.77623390699993 +03/30/2019,00:50:00,QUEENS,113,M,40.67998073800004,-73.77623390699993 +03/28/2019,07:45:00,QUEENS,108,M,40.74744008000005,-73.92546794099997 +03/27/2019,13:43:00,MANHATTAN,34,M,40.85170536100002,-73.93199489299997 +03/26/2019,02:25:00,BROOKLYN,77,M,40.68113428400005,-73.96445548499997 +03/25/2019,16:08:00,BRONX,40,M,40.808044688000045,-73.91110256099995 +03/24/2019,00:10:00,BROOKLYN,63,M,40.62187333100008,-73.91899084899995 +03/23/2019,20:47:00,QUEENS,101,M,40.59586912100008,-73.78189543199994 +03/23/2019,15:50:00,BRONX,47,F,40.88680259100005,-73.84687148999996 +03/23/2019,05:44:00,BROOKLYN,79,M,40.69754940400002,-73.94671806199995 +03/22/2019,22:25:00,BRONX,48,M,40.84264632600008,-73.89368292099994 +03/22/2019,22:25:00,BRONX,48,M,40.84264632600008,-73.89368292099994 +03/22/2019,22:05:00,BROOKLYN,77,M,40.67895478900005,-73.96398795599998 +03/22/2019,15:01:00,BRONX,42,M,40.82736872600003,-73.90240468499995 +03/21/2019,21:25:00,BROOKLYN,88,F,40.69577009300008,-73.97825230899997 +03/21/2019,18:20:00,BRONX,40,M,40.81428694400006,-73.92364455999996 +03/21/2019,18:20:00,BRONX,40,M,40.81428694400006,-73.92364455999996 +03/21/2019,04:07:00,BROOKLYN,75,M,40.660813449000045,-73.87829385299993 +03/21/2019,03:20:00,BRONX,44,M,40.834516921000045,-73.91770925599997 +03/20/2019,21:36:00,QUEENS,105,M,40.683172699000075,-73.74573461299997 +03/19/2019,17:21:00,BROOKLYN,75,M,40.66569908600008,-73.88084420599995 +03/19/2019,17:21:00,BROOKLYN,75,M,40.66569908600008,-73.88084420599995 +03/18/2019,21:33:00,MANHATTAN,28,M,40.803424497000044,-73.95801490799995 +03/18/2019,20:08:00,MANHATTAN,23,M,40.794943941000035,-73.94075321199995 +03/18/2019,20:08:00,MANHATTAN,23,M,40.794943941000035,-73.94075321199995 +03/18/2019,20:08:00,MANHATTAN,23,M,40.794943941000035,-73.94075321199995 +03/17/2019,06:30:00,BRONX,47,M,40.88322209000006,-73.84996813899994 +03/17/2019,03:38:00,BROOKLYN,75,M,40.67463439800008,-73.88186650699998 +03/17/2019,03:37:00,MANHATTAN,25,M,40.79734936800003,-73.93752941099996 +03/16/2019,13:30:00,QUEENS,113,M,40.694323792000034,-73.77563402799996 +03/16/2019,09:24:00,BROOKLYN,79,M,40.698544411000064,-73.949836781 +03/16/2019,00:50:00,MANHATTAN,32,M,40.811986508000075,-73.94757654399997 +03/15/2019,11:50:00,QUEENS,112,M,40.718658885000025,-73.83770522999998 +03/15/2019,10:19:00,BROOKLYN,75,M,40.66406931200004,-73.89868224799993 +03/13/2019,21:17:00,STATEN ISLAND,122,M,40.591616128000055,-74.10912122599996 +03/12/2019,23:34:00,BROOKLYN,77,M,40.67081759000007,-73.93511008699994 +03/12/2019,22:20:00,BROOKLYN,75,M,40.66671016400005,-73.87405122799998 +03/12/2019,08:21:00,BROOKLYN,73,F,40.675727746000064,-73.92149590099996 +03/12/2019,01:00:00,BROOKLYN,73,M,40.67003639800004,-73.90842786599995 +03/11/2019,21:05:00,BROOKLYN,81,M,40.68210366200003,-73.92120716799997 +03/11/2019,16:30:00,BROOKLYN,81,M,40.68756556300008,-73.93895197599994 +03/11/2019,16:30:00,BROOKLYN,81,M,40.68756556300008,-73.93895197599994 +03/10/2019,22:30:00,BROOKLYN,79,M,40.69575822900004,-73.94928351799997 +03/10/2019,05:38:00,MANHATTAN,13,M,40.741651488000045,-73.97816876899999 +03/09/2019,15:40:00,QUEENS,109,M,40.76810385400006,-73.82521637499997 +03/09/2019,15:40:00,QUEENS,109,M,40.76810385400006,-73.82521637499997 +03/09/2019,09:20:00,BRONX,42,M,40.82857810400003,-73.90443726899997 +03/09/2019,04:00:00,QUEENS,106,M,40.67987145200004,-73.85112867499998 +03/09/2019,02:41:00,MANHATTAN,25,M,40.80025258300003,-73.94140946199997 +03/09/2019,01:10:00,BRONX,41,M,40.81563577600008,-73.89693055399994 +03/06/2019,20:29:00,BROOKLYN,62,M,40.599292698000056,-73.99174431699998 +03/05/2019,23:24:00,BROOKLYN,79,M,40.68835243400008,-73.95490341799997 +03/05/2019,22:30:00,QUEENS,105,M,40.66502949200003,-73.76501976899993 +03/05/2019,20:04:00,BRONX,44,M,40.84009408900005,-73.91383171199995 +03/04/2019,22:22:00,BROOKLYN,81,M,40.680487139000036,-73.92555358299995 +03/04/2019,00:40:00,BRONX,45,F,40.86619963500005,-73.82296280999998 +03/02/2019,21:30:00,BROOKLYN,75,M,40.67135982000008,-73.88181102299995 +03/02/2019,04:20:00,QUEENS,113,M,40.67045812200007,-73.79332768599994 +02/28/2019,02:18:00,MANHATTAN,23,M,40.79714228700004,-73.94596657399995 +02/27/2019,18:22:00,MANHATTAN,34,M,40.861820186000045,-73.92414673399995 +02/26/2019,17:46:00,QUEENS,103,M,40.70284605000006,-73.78704914399998 +02/26/2019,16:23:00,BROOKLYN,60,F,40.576995490000044,-73.98152360899995 +02/25/2019,11:00:00,QUEENS,112,M,40.73532021200003,-73.84822634799998 +02/24/2019,23:20:00,BRONX,44,M,40.83021160200008,-73.91182094199995 +02/24/2019,00:10:00,BROOKLYN,73,F,40.66996814200007,-73.90888577399994 +02/24/2019,00:10:00,BROOKLYN,73,M,40.66996814200007,-73.90888577399994 +02/23/2019,06:29:00,BRONX,43,M,40.81794183300008,-73.84778502199998 +02/23/2019,00:27:00,MANHATTAN,32,M,40.81405056600005,-73.93669005299995 +02/22/2019,17:44:00,BROOKLYN,70,M,40.63649668200002,-73.95153000199997 +02/22/2019,17:03:00,BROOKLYN,67,M,40.65070267000005,-73.91261677899995 +02/22/2019,15:30:00,QUEENS,101,F,40.59977297000006,-73.76021875499998 +02/22/2019,15:30:00,QUEENS,101,M,40.59977297000006,-73.76021875499998 +02/22/2019,05:51:00,QUEENS,109,M,40.753784232000044,-73.83432429699997 +02/22/2019,04:11:00,BRONX,46,M,40.84830899400004,-73.90342577999998 +02/19/2019,22:27:00,BROOKLYN,81,M,40.67718191900008,-73.92476772999999 +02/19/2019,22:27:00,BROOKLYN,81,M,40.67718191900008,-73.92476772999999 +02/18/2019,23:49:00,BRONX,40,M,40.82142768200004,-73.91436893199995 +02/18/2019,18:16:00,BRONX,47,F,40.89104019400003,-73.83866600699997 +02/17/2019,14:08:00,BROOKLYN,63,M,40.63093901600007,-73.91847906599996 +02/17/2019,03:00:00,QUEENS,114,M,40.75627543400003,-73.94501432899995 +02/16/2019,22:30:00,BRONX,52,M,40.87150490000005,-73.88867234499997 +02/14/2019,22:38:00,MANHATTAN,33,M,40.834429577000044,-73.94089151099996 +02/12/2019,18:10:00,QUEENS,102,M,40.69433830500003,-73.82696399999998 +02/12/2019,18:10:00,QUEENS,102,M,40.69433830500003,-73.82696399999998 +02/12/2019,18:10:00,QUEENS,102,M,40.69433830500003,-73.82696399999998 +02/12/2019,18:10:00,QUEENS,102,M,40.69433830500003,-73.82696399999998 +02/12/2019,11:00:00,BRONX,41,M,40.82280248200004,-73.90032661699999 +02/12/2019,02:34:00,QUEENS,109,M,40.75166748000004,-73.83394336999999 +02/11/2019,23:16:00,BROOKLYN,75,F,40.674910748000045,-73.87083801799997 +02/11/2019,08:50:00,BROOKLYN,75,M,40.67601065700006,-73.86776429099997 +02/10/2019,10:52:00,BRONX,42,M,40.82857810400003,-73.90443726899997 +02/10/2019,04:40:00,MANHATTAN,34,M,40.869856423000044,-73.91588299999995 +02/09/2019,19:00:00,BRONX,49,M,40.86268129200005,-73.86599762999998 +02/09/2019,02:00:00,MANHATTAN,23,M,40.797300086000064,-73.94892805999996 +02/08/2019,17:00:00,BRONX,40,M,40.81816612400007,-73.90624419799997 +02/08/2019,17:00:00,BRONX,40,M,40.81816612400007,-73.90624419799997 +02/06/2019,22:26:00,BROOKLYN,81,F,40.67922608300007,-73.92797416799993 +02/06/2019,22:26:00,BROOKLYN,81,F,40.67922608300007,-73.92797416799993 +02/06/2019,22:26:00,BROOKLYN,81,F,40.67922608300007,-73.92797416799993 +02/06/2019,22:26:00,BROOKLYN,81,F,40.67922608300007,-73.92797416799993 +02/06/2019,22:26:00,BROOKLYN,81,M,40.67922608300007,-73.92797416799993 +02/06/2019,22:26:00,BROOKLYN,81,M,40.67922608300007,-73.92797416799993 +02/06/2019,04:52:00,BROOKLYN,90,M,40.70574171900005,-73.93951601999999 +02/05/2019,12:03:00,QUEENS,101,M,40.606664855000076,-73.75614960299998 +02/04/2019,20:38:00,MANHATTAN,32,M,40.81347401500005,-73.94728636499997 +02/04/2019,13:40:00,BROOKLYN,79,M,40.68786431700005,-73.94939048399993 +02/04/2019,11:41:00,BROOKLYN,60,F,40.57916262500004,-74.00037223199999 +02/04/2019,11:41:00,BROOKLYN,60,F,40.57916262500004,-74.00037223199999 +02/04/2019,11:41:00,BROOKLYN,60,M,40.57916262500004,-74.00037223199999 +02/04/2019,11:41:00,BROOKLYN,60,M,40.57916262500004,-74.00037223199999 +02/03/2019,23:10:00,BROOKLYN,67,M,40.64091307700004,-73.93023512999997 +02/03/2019,12:43:00,QUEENS,115,M,40.748424502000034,-73.87648084299997 +02/03/2019,12:43:00,QUEENS,115,M,40.748424502000034,-73.87648084299997 +02/02/2019,19:40:00,MANHATTAN,23,M,40.79191609100008,-73.94547965999998 +02/02/2019,00:45:00,QUEENS,113,M,40.689572726000044,-73.79637672499997 +02/02/2019,00:45:00,QUEENS,113,M,40.689572726000044,-73.79637672499997 +02/01/2019,19:57:00,MANHATTAN,25,M,40.79862337700007,-73.94374411699994 +01/31/2019,18:45:00,QUEENS,105,M,40.65986481400005,-73.75498197399995 +01/31/2019,00:15:00,MANHATTAN,33,M,40.83406831000008,-73.94294803999998 +01/31/2019,00:15:00,MANHATTAN,33,M,40.83406831000008,-73.94294803999998 +01/31/2019,00:15:00,MANHATTAN,33,M,40.83406831000008,-73.94294803999998 +01/31/2019,00:15:00,MANHATTAN,33,M,40.83406831000008,-73.94294803999998 +01/30/2019,22:54:00,MANHATTAN,34,M,40.85310893600007,-73.92914864499993 +01/30/2019,19:02:00,MANHATTAN,34,M,40.86409622000008,-73.92954547499993 +01/28/2019,20:36:00,BRONX,43,M,40.820954868000044,-73.85801740899994 +01/28/2019,20:36:00,BRONX,43,M,40.820954868000044,-73.85801740899994 +01/28/2019,03:14:00,MANHATTAN,34,M,40.86560099800005,-73.91810825999994 +01/27/2019,10:44:00,QUEENS,113,M,40.68329518400003,-73.77985358499996 +01/27/2019,10:44:00,QUEENS,113,M,40.68329518400003,-73.77985358499996 +01/26/2019,20:55:00,BROOKLYN,83,M,40.68751442000007,-73.91464546899994 +01/26/2019,16:07:00,BROOKLYN,73,M,40.67111083400005,-73.91356336299998 +01/25/2019,23:58:00,BROOKLYN,90,M,40.70164572700002,-73.93801220099994 +01/25/2019,01:55:00,QUEENS,106,F,40.66997788500004,-73.82301862099996 +01/24/2019,00:42:00,BRONX,47,M,40.878817626000064,-73.86387135299998 +01/21/2019,21:30:00,BRONX,47,M,40.87129342900005,-73.85848844499998 +01/20/2019,15:10:00,BRONX,41,M,40.820411060000026,-73.89332824199995 +01/19/2019,22:25:00,BROOKLYN,94,M,40.71887006600008,-73.93979270399994 +01/19/2019,19:30:00,MANHATTAN,23,M,40.79648422100007,-73.94741177999998 +01/19/2019,14:36:00,BRONX,43,M,40.82609951400008,-73.87811801099997 +01/19/2019,04:00:00,QUEENS,109,M,40.77110109700004,-73.83449783599998 +01/19/2019,04:00:00,QUEENS,109,M,40.77110109700004,-73.83449783599998 +01/19/2019,00:43:00,MANHATTAN,32,M,40.821236836000026,-73.94309272199997 +01/18/2019,18:32:00,BRONX,40,M,40.812866866000036,-73.91810450699995 +01/17/2019,13:20:00,BROOKLYN,79,M,40.689048255000046,-73.95861337799995 +01/17/2019,13:18:00,BRONX,46,M,40.853303895000074,-73.89966639999993 +01/14/2019,17:10:00,BROOKLYN,75,M,40.66769877900003,-73.87964026499998 +01/14/2019,17:10:00,BROOKLYN,75,M,40.66769877900003,-73.87964026499998 +01/14/2019,11:55:00,BROOKLYN,75,M,40.671361545000025,-73.88624505699994 +01/14/2019,11:55:00,BROOKLYN,75,M,40.671361545000025,-73.88624505699994 +01/13/2019,22:11:00,QUEENS,113,M,40.697443411000044,-73.75876034299995 +01/13/2019,22:11:00,QUEENS,113,M,40.697443411000044,-73.75876034299995 +01/13/2019,19:55:00,MANHATTAN,32,M,40.813446445000075,-73.94134727099998 +01/13/2019,13:35:00,BROOKLYN,77,M,40.675615872000044,-73.92665858699995 +01/13/2019,06:00:00,BROOKLYN,70,M,40.64535093400008,-73.95737565299999 +01/13/2019,04:00:00,BROOKLYN,79,M,40.67964380700005,-73.94958420199998 +01/12/2019,05:47:00,QUEENS,109,F,40.759411366000045,-73.80317322499997 +01/12/2019,05:24:00,BROOKLYN,79,F,40.67849662500004,-73.93856369499997 +01/11/2019,15:15:00,BRONX,46,M,40.846529670000045,-73.90925838899994 +01/11/2019,01:30:00,BROOKLYN,69,M,40.65119471500003,-73.89692151399998 +01/09/2019,05:43:00,BRONX,47,M,40.88055303600004,-73.85329388199995 +01/08/2019,11:03:00,BROOKLYN,73,M,40.66838451700004,-73.92011671699998 +01/08/2019,00:32:00,BRONX,42,M,40.82946090600007,-73.90657156199995 +01/08/2019,00:32:00,BRONX,42,M,40.82946090600007,-73.90657156199995 +01/07/2019,19:30:00,QUEENS,107,M,40.72758178300006,-73.81733103899995 +01/07/2019,19:19:00,BRONX,48,M,40.841183585000074,-73.87989381599994 +01/06/2019,23:36:00,BROOKLYN,60,M,40.57462792900003,-73.99197054399998 +01/06/2019,03:00:00,BRONX,43,M,40.821455958000044,-73.86619987399997 +01/06/2019,03:00:00,BRONX,43,M,40.821455958000044,-73.86619987399997 +01/06/2019,02:46:00,BRONX,41,M,40.821736332000064,-73.89286725999993 +01/05/2019,16:00:00,QUEENS,114,M,40.759450567000044,-73.933576266 +01/05/2019,01:50:00,BRONX,43,M,40.83121933700004,-73.85087315799996 +01/05/2019,00:42:00,STATEN ISLAND,120,M,40.63681896700007,-74.11865312699997 +01/04/2019,15:49:00,BROOKLYN,61,M,40.598363825000035,-73.94098525199999 +01/04/2019,02:20:00,BROOKLYN,60,M,40.573763375000055,-73.99287775699997 +01/03/2019,23:00:00,STATEN ISLAND,121,M,40.624715270000024,-74.16281491499996 +01/03/2019,21:00:00,BRONX,49,M,40.871217194000046,-73.85456914199995 +01/02/2019,13:34:00,BROOKLYN,79,M,40.69817414000005,-73.94445277199995 +01/01/2019,05:40:00,BROOKLYN,88,M,40.69514090800004,-73.975125947 +01/01/2019,04:26:00,BROOKLYN,75,M,40.665674700000075,-73.86615550299997 +01/01/2019,02:19:00,BRONX,46,M,40.85633063300003,-73.89581193099998 diff --git a/jupyter_nb/AB_NYC_2019.csv b/jupyter_nb/AB_NYC_2019.csv new file mode 100644 index 00000000..f01fb02e --- /dev/null +++ b/jupyter_nb/AB_NYC_2019.csv @@ -0,0 +1,49081 @@ +id,name,host_id,host_name,neighbourhood_group,neighbourhood,latitude,longitude,room_type,price,minimum_nights,number_of_reviews,last_review,reviews_per_month,calculated_host_listings_count,availability_365 +2539,Clean & quiet apt home by the park,2787,John,Brooklyn,Kensington,40.64749,-73.97237,Private room,149,1,9,2018-10-19,0.21,6,365 +2595,Skylit Midtown Castle,2845,Jennifer,Manhattan,Midtown,40.75362,-73.98377,Entire home/apt,225,1,45,2019-05-21,0.38,2,355 +3647,THE VILLAGE OF HARLEM....NEW YORK !,4632,Elisabeth,Manhattan,Harlem,40.80902,-73.9419,Private room,150,3,0,,,1,365 +3831,Cozy Entire Floor of Brownstone,4869,LisaRoxanne,Brooklyn,Clinton Hill,40.68514,-73.95976,Entire home/apt,89,1,270,2019-07-05,4.64,1,194 +5022,Entire Apt: Spacious Studio/Loft by central park,7192,Laura,Manhattan,East Harlem,40.79851,-73.94399,Entire home/apt,80,10,9,2018-11-19,0.10,1,0 +5099,Large Cozy 1 BR Apartment In Midtown East,7322,Chris,Manhattan,Murray Hill,40.74767,-73.975,Entire home/apt,200,3,74,2019-06-22,0.59,1,129 +5121,BlissArtsSpace!,7356,Garon,Brooklyn,Bedford-Stuyvesant,40.68688,-73.95596,Private room,60,45,49,2017-10-05,0.40,1,0 +5178,Large Furnished Room Near B'way ,8967,Shunichi,Manhattan,Hell's Kitchen,40.76489,-73.98493,Private room,79,2,430,2019-06-24,3.47,1,220 +5203,Cozy Clean Guest Room - Family Apt,7490,MaryEllen,Manhattan,Upper West Side,40.80178,-73.96723,Private room,79,2,118,2017-07-21,0.99,1,0 +5238,Cute & Cozy Lower East Side 1 bdrm,7549,Ben,Manhattan,Chinatown,40.71344,-73.99037,Entire home/apt,150,1,160,2019-06-09,1.33,4,188 +5295,Beautiful 1br on Upper West Side,7702,Lena,Manhattan,Upper West Side,40.80316,-73.96545,Entire home/apt,135,5,53,2019-06-22,0.43,1,6 +5441,Central Manhattan/near Broadway,7989,Kate,Manhattan,Hell's Kitchen,40.76076,-73.98867,Private room,85,2,188,2019-06-23,1.50,1,39 +5803,"Lovely Room 1, Garden, Best Area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.66829,-73.98779,Private room,89,4,167,2019-06-24,1.34,3,314 +6021,Wonderful Guest Bedroom in Manhattan for SINGLES,11528,Claudio,Manhattan,Upper West Side,40.79826,-73.96113,Private room,85,2,113,2019-07-05,0.91,1,333 +6090,West Village Nest - Superhost,11975,Alina,Manhattan,West Village,40.7353,-74.00525,Entire home/apt,120,90,27,2018-10-31,0.22,1,0 +6848,Only 2 stops to Manhattan studio,15991,Allen & Irina,Brooklyn,Williamsburg,40.70837,-73.95352,Entire home/apt,140,2,148,2019-06-29,1.20,1,46 +7097,Perfect for Your Parents + Garden,17571,Jane,Brooklyn,Fort Greene,40.69169,-73.97185,Entire home/apt,215,2,198,2019-06-28,1.72,1,321 +7322,Chelsea Perfect,18946,Doti,Manhattan,Chelsea,40.74192,-73.99501,Private room,140,1,260,2019-07-01,2.12,1,12 +7726,Hip Historic Brownstone Apartment with Backyard,20950,Adam And Charity,Brooklyn,Crown Heights,40.67592,-73.94694,Entire home/apt,99,3,53,2019-06-22,4.44,1,21 +7750,Huge 2 BR Upper East Cental Park,17985,Sing,Manhattan,East Harlem,40.79685,-73.94872,Entire home/apt,190,7,0,,,2,249 +7801,Sweet and Spacious Brooklyn Loft,21207,Chaya,Brooklyn,Williamsburg,40.71842,-73.95718,Entire home/apt,299,3,9,2011-12-28,0.07,1,0 +8024,CBG CtyBGd HelpsHaiti rm#1:1-4,22486,Lisel,Brooklyn,Park Slope,40.68069,-73.97706,Private room,130,2,130,2019-07-01,1.09,6,347 +8025,CBG Helps Haiti Room#2.5,22486,Lisel,Brooklyn,Park Slope,40.67989,-73.97798,Private room,80,1,39,2019-01-01,0.37,6,364 +8110,CBG Helps Haiti Rm #2,22486,Lisel,Brooklyn,Park Slope,40.68001,-73.97865,Private room,110,2,71,2019-07-02,0.61,6,304 +8490,"MAISON DES SIRENES1,bohemian apartment",25183,Nathalie,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94028,Entire home/apt,120,2,88,2019-06-19,0.73,2,233 +8505,Sunny Bedroom Across Prospect Park,25326,Gregory,Brooklyn,Windsor Terrace,40.65599,-73.97519,Private room,60,1,19,2019-06-23,1.37,2,85 +8700,Magnifique Suite au N de Manhattan - vue Cloitres,26394,Claude & Sophie,Manhattan,Inwood,40.86754,-73.92639,Private room,80,4,0,,,1,0 +9357,Midtown Pied-a-terre,30193,Tommi,Manhattan,Hell's Kitchen,40.76715,-73.98533,Entire home/apt,150,10,58,2017-08-13,0.49,1,75 +9518,"SPACIOUS, LOVELY FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86482,-73.92106,Private room,44,3,108,2019-06-15,1.11,3,311 +9657,Modern 1 BR / NYC / EAST VILLAGE,21904,Dana,Manhattan,East Village,40.7292,-73.98542,Entire home/apt,180,14,29,2019-04-19,0.24,1,67 +9668,front room/double bed,32294,Ssameer Or Trip,Manhattan,Harlem,40.82245,-73.95104,Private room,50,3,242,2019-06-01,2.04,3,355 +9704,Spacious 1 bedroom in luxe building,32045,Teri,Manhattan,Harlem,40.81305,-73.95466,Private room,52,2,88,2019-06-14,1.42,1,255 +9782,Loft in Williamsburg Area w/ Roof,32169,Andrea,Brooklyn,Greenpoint,40.72219,-73.93762,Private room,55,4,197,2019-06-15,1.65,3,284 +9783,back room/bunk beds,32294,Ssameer Or Trip,Manhattan,Harlem,40.8213,-73.95318,Private room,50,3,273,2019-07-01,2.37,3,359 +10452,Large B&B Style rooms,35935,Angela,Brooklyn,Bedford-Stuyvesant,40.6831,-73.95473,Private room,70,1,74,2019-05-12,0.66,2,269 +10962,"Lovely room 2 & garden; Best area, Legal rental",9744,Laurie,Brooklyn,South Slope,40.66869,-73.9878,Private room,89,4,168,2019-06-21,1.41,3,340 +11452,Clean and Quiet in Brooklyn,7355,Vt,Brooklyn,Bedford-Stuyvesant,40.68876,-73.94312,Private room,35,60,0,,,1,365 +11708,Cute apt in artist's home,44145,Tyrome,Brooklyn,Bushwick,40.70186,-73.92745,Entire home/apt,85,2,231,2019-06-22,1.96,2,22 +11943,Country space in the city,45445,Harriet,Brooklyn,Flatbush,40.63702,-73.96327,Private room,150,1,0,,,1,365 +12048,LowerEastSide apt share shortterm 1,7549,Ben,Manhattan,Lower East Side,40.71401,-73.98917,Shared room,40,1,214,2019-07-05,1.81,4,188 +12192,ENJOY Downtown NYC!,46978,Edward,Manhattan,East Village,40.7229,-73.98199,Private room,68,2,245,2019-06-21,2.08,2,96 +12299,Beautiful Sunny Park Slope Brooklyn,47610,Abdul,Brooklyn,South Slope,40.66278,-73.97966,Entire home/apt,120,3,15,2019-05-27,0.39,1,345 +12303,1bdr w private bath. in lofty apt,47618,Yolande,Brooklyn,Fort Greene,40.69673,-73.97584,Private room,120,7,25,2018-09-30,0.23,1,311 +12318,West Side Retreat,16800,Cyn,Manhattan,Upper West Side,40.79009,-73.97927,Private room,135,4,81,2019-06-16,0.69,1,273 +12343,BEST BET IN HARLEM,47727,Earl,Manhattan,Harlem,40.81175,-73.94478,Entire home/apt,150,7,97,2019-06-13,0.84,1,309 +12627,Entire apartment in central Brooklyn neighborhood.,49670,Rana,Brooklyn,Prospect-Lefferts Gardens,40.65944,-73.96238,Entire home/apt,150,29,11,2019-06-05,0.49,1,95 +12937,"1 Stop fr. Manhattan! Private Suite,Landmark Block",50124,Orestes,Queens,Long Island City,40.74771,-73.9474,Private room,130,3,248,2019-07-01,2.25,1,215 +12940,Charming Brownstone 3 - Near PRATT,50148,Adreinne,Brooklyn,Bedford-Stuyvesant,40.68111,-73.95591,Entire home/apt,110,7,61,2019-05-25,0.52,1,265 +13050,bright and stylish duplex,50846,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9409,Entire home/apt,115,3,11,2017-01-01,0.10,1,0 +13394,Fort Greene brownstone ,52335,Alexander,Brooklyn,Fort Greene,40.69142,-73.97376,Private room,80,3,135,2019-06-17,1.16,2,192 +13808,Blue Room for 2 in Brownstone for $1350 monthly,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93934,Private room,80,1,112,2019-06-16,1.01,3,251 +14287,Cozy 1BD on Central Park West in New York City,56094,Joya,Manhattan,Upper West Side,40.78635,-73.97008,Entire home/apt,151,2,73,2019-07-07,0.63,1,302 +14290,* ORIGINAL BROOKLYN LOFT *,56104,James,Brooklyn,Williamsburg,40.7042,-73.9356,Entire home/apt,228,3,82,2019-05-17,0.70,1,140 +14314,Greenpoint Place...Has It All! ,56246,Jeanne,Brooklyn,Greenpoint,40.73506,-73.95392,Entire home/apt,144,2,328,2019-06-29,2.82,1,234 +14322,Beautiful Apartment in Manhattan!!!,56284,Francesca,Manhattan,Kips Bay,40.73961,-73.98074,Entire home/apt,200,7,19,2019-03-25,0.22,1,257 +14377,Williamsburg 1 bedroom Apartment,56512,Joanna,Brooklyn,Williamsburg,40.70881,-73.9593,Entire home/apt,150,30,105,2019-06-22,0.90,1,30 +14991,"Great Location, Manhattan Bedroom!",59023,Bianca,Manhattan,Lower East Side,40.72004,-73.99104,Private room,110,5,19,2019-05-18,0.17,1,301 +15220,Best Location in NYC! TIMES SQUARE!,59734,Luiz,Manhattan,Hell's Kitchen,40.75531,-73.99293,Private room,69,2,289,2019-06-09,2.49,2,294 +15338,Room in Greenpoint Loft w/ Roof,32169,Andrea,Brooklyn,Greenpoint,40.72401,-73.93788,Private room,49,4,138,2019-06-04,1.19,3,320 +15341,**Bright Nolita Apt w Doorman/Elevators/Gym**,60049,Ted,Manhattan,SoHo,40.7221,-73.99775,Entire home/apt,180,30,21,2019-06-29,0.30,1,154 +15385,"Very, very cozy place",60252,Cristina,Brooklyn,Williamsburg,40.71185,-73.96204,Private room,80,2,42,2019-06-30,0.38,1,263 +15396,Sunny & Spacious Chelsea Apartment,60278,Petra,Manhattan,Chelsea,40.74623,-73.9953,Entire home/apt,375,180,5,2018-11-03,0.12,1,180 +15711,2 bedroom - Upper East Side-great for kids,61491,D,Manhattan,Upper East Side,40.77065,-73.95269,Entire home/apt,250,2,66,2019-03-30,0.57,2,231 +16326,Comfortable 4-bedroom apt in family house.,63588,Dimitri,Brooklyn,Prospect Heights,40.67811,-73.96428,Entire home/apt,200,30,143,2019-01-26,1.33,2,297 +16338,Double Room w Private Deck Clinton Hill Best Area,63613,Patricia,Brooklyn,Clinton Hill,40.69,-73.96788,Private room,55,7,27,2017-09-30,0.23,2,292 +16421,Your Heaven in Hells Kitchen,63924,Mark,Manhattan,Hell's Kitchen,40.75979,-73.99119,Private room,52,30,191,2019-05-16,1.65,1,191 +16458,Light-filled 2B duplex in the heart of Park Slope!,64056,Sara,Brooklyn,Park Slope,40.67343,-73.98338,Entire home/apt,225,3,4,2017-09-24,0.16,1,0 +16580,"Sunny, Modern room in East Village!",64442,Reka,Manhattan,East Village,40.72649,-73.97904,Private room,80,1,338,2019-07-01,4.72,2,72 +16595,*HAVEN LOFT - Entire Floor - Six Windows - Bricks*,64522,Daniel,Brooklyn,Williamsburg,40.70933,-73.96792,Entire home/apt,275,1,148,2019-06-23,1.40,1,362 +16821,Large Room in Amazing East Village Apt,4396,Casey,Manhattan,East Village,40.72298,-73.98474,Private room,99,1,106,2019-06-21,1.26,2,336 +16974,SpaHa Loft: Enormous and Bright,65837,Robin,Manhattan,East Harlem,40.80164,-73.93922,Entire home/apt,225,4,190,2019-06-23,1.64,1,215 +17037,Lovely EV Artist's Home,66035,Anna,Manhattan,East Village,40.72162,-73.98008,Entire home/apt,230,9,49,2018-05-14,0.43,1,116 +17092,Cool Room in Hell's Kitchen,66243,Enzo,Manhattan,Hell's Kitchen,40.76342,-73.98865,Private room,51,7,23,2019-06-01,0.43,1,88 +17693,"HARLEM, NEW YORK WELCOMES YOU!!",68428,Tye And Etienne,Manhattan,Washington Heights,40.83139,-73.94095,Private room,65,2,49,2019-06-18,1.60,2,336 +17747,BLUE TRIM GUEST HOUSE,68599,George,Brooklyn,Clinton Hill,40.68346,-73.96374,Private room,105,2,105,2019-06-26,0.92,1,304 +18127,Charming East Village One Bedroom Flat,69829,Josh,Manhattan,East Village,40.72828,-73.98801,Entire home/apt,190,5,21,2019-01-02,0.20,1,224 +18152,Manhattan Room,69942,Victoria,Manhattan,Upper East Side,40.76865,-73.95058,Private room,200,1,142,2019-07-06,1.50,1,322 +18198,Little King of Queens,70091,Justin,Queens,Woodside,40.75038,-73.90334,Private room,70,30,25,2019-05-31,0.22,1,324 +18590,Fort Greene Retreat on the Park,71512,Blaise,Brooklyn,Fort Greene,40.6932,-73.97267,Private room,95,3,143,2019-06-16,1.28,1,132 +18728,Beautiful Meatpacking District Loft,71876,DAVID And RICK,Manhattan,Chelsea,40.74138,-74.00197,Private room,150,3,167,2019-05-28,1.65,1,295 +18764,Cozy 2 BR in Williamsburg ,72014,Lulú,Brooklyn,Williamsburg,40.71154,-73.96112,Private room,145,3,61,2019-04-22,0.54,4,238 +19159,Spacious luminous apt Upper West NYC,73051,Sybilla,Manhattan,Harlem,40.82915,-73.95136,Entire home/apt,110,31,54,2019-03-23,0.49,1,209 +19169,Entire 2 Bedroom - Large & Sunny,73128,JoLynn,Manhattan,Lower East Side,40.71851,-73.98892,Entire home/apt,285,5,70,2019-06-30,0.62,1,328 +19282,"Sunny, Spacious Top Floor Haven",73469,Gaia,Brooklyn,Flatbush,40.65401,-73.96323,Entire home/apt,130,6,16,2019-06-15,0.15,1,38 +19319,Private room Great Deal at Lower East Side,44263,Ana,Manhattan,Lower East Side,40.7114,-73.98794,Private room,94,30,94,2019-04-08,0.84,1,188 +19601,perfect for a family or small group,74303,Maggie,Brooklyn,Brooklyn Heights,40.69723,-73.99268,Entire home/apt,800,1,25,2016-08-04,0.24,1,7 +19812,2 bedroom Williamsburg Apt - Bedford L stop,74857,Starlee,Brooklyn,Williamsburg,40.71833,-73.95748,Entire home/apt,105,3,61,2018-08-09,0.53,1,272 +20299,Oh glorious spring!,62407,Edward,Manhattan,East Village,40.72334,-73.9844,Private room,60,3,194,2019-06-30,1.73,1,26 +20300,Great Location for NYC,76627,Pas,Manhattan,East Village,40.72912,-73.98057,Private room,50,1,2,2016-02-14,0.05,1,0 +20611,Cozy Bedroom in Williamsburg 3 BR,72014,Lulú,Brooklyn,Williamsburg,40.71156,-73.96218,Private room,85,3,174,2019-06-22,1.54,4,288 +20724,Sunny room+Pvte office in huge loft,961342,Augustin,Brooklyn,Bushwick,40.70032,-73.9383,Private room,65,4,24,2019-05-26,0.28,1,317 +20734,Spacious Prospect Heights Apartment,78460,Sean & Lynette,Brooklyn,Prospect Heights,40.68233,-73.97261,Entire home/apt,131,4,166,2019-06-27,3.40,1,207 +20755,"Large Parlor Room, Landmark Home 1 block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.966,Private room,98,7,16,2019-05-31,0.20,6,185 +20853,2-bed brownstone duplex + garden,79070,Tracy,Brooklyn,Prospect Heights,40.68035,-73.97162,Entire home/apt,250,7,21,2019-05-21,0.30,1,158 +20913,Charming 1 bed GR8 WBurg LOCATION!,79402,Christiana,Brooklyn,Williamsburg,40.70984,-73.95775,Entire home/apt,100,5,168,2018-07-22,1.57,1,0 +21293,Sunny Apartment in Artist Home,44145,Tyrome,Brooklyn,Bushwick,40.70093,-73.92609,Entire home/apt,105,3,118,2019-06-18,1.05,2,9 +21456,Light-filled classic Central Park ,42032,Dana,Manhattan,Upper West Side,40.79764,-73.96177,Entire home/apt,140,3,81,2019-07-07,0.71,1,198 +21644,"Upper Manhattan, New York",82685,Elliott,Manhattan,Harlem,40.82803,-73.94731,Private room,89,1,1,2018-10-09,0.11,1,365 +21794,COZY QUIET room 4 DOOGLERS!,83257,Olan,Manhattan,Chelsea,40.74008,-74.00271,Private room,98,30,30,2019-05-01,0.27,2,364 +22911,The Stuydio Modern and Light Filled,87773,Shelly,Brooklyn,Bedford-Stuyvesant,40.68413,-73.92357,Entire home/apt,125,7,139,2018-10-28,1.23,2,311 +22918,loft bed - near transportation-15min to times sq,32294,Ssameer Or Trip,Manhattan,Harlem,40.82279,-73.95139,Private room,60,3,11,2019-01-03,0.87,3,219 +23135,House On Henry (3rd FLR Suite),11481,Annette,Brooklyn,Carroll Gardens,40.67967,-74.00154,Entire home/apt,175,2,233,2019-06-24,2.09,3,342 +23501,Monkey Retreat Manhattan,63318,Meka,Manhattan,Washington Heights,40.83927,-73.94281,Private room,65,2,68,2012-11-01,0.60,1,312 +23686,2000 SF 3br 2bath West Village private townhouse,93790,Ann,Manhattan,West Village,40.73096,-74.00319,Entire home/apt,500,4,46,2019-05-18,0.55,2,243 +24143,"Williamsburg—Steps To Subway, Private Bath&Balcony",97219,Seth,Brooklyn,Williamsburg,40.71332,-73.94177,Private room,101,3,335,2019-05-29,3.02,1,152 +24285,Beautiful Duplex Apartment,97797,Brenda,Brooklyn,Park Slope,40.66941,-73.98109,Entire home/apt,220,30,88,2018-11-02,0.79,1,9 +25235,Large 2 Bedroom Great for Groups!,87773,Shelly,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92377,Entire home/apt,125,90,162,2019-06-28,1.46,2,137 +25406,"Modern Brooklyn Apt., August sublet",105538,Erik,Brooklyn,Williamsburg,40.71459,-73.94844,Entire home/apt,80,30,29,2018-05-26,0.40,1,222 +25696,"1,800 sq foot in luxury building",107628,Dena,Manhattan,Harlem,40.8092,-73.94421,Private room,100,2,170,2019-06-23,1.61,1,346 +26012,Sunny 2-story Brooklyn townhouse w deck and garden,109589,Jessica,Brooklyn,Gowanus,40.68157,-73.98989,Entire home/apt,200,30,19,2017-03-17,0.20,1,208 +26362,"Times Square, Safe, Clean and Cozy!",59734,Luiz,Manhattan,Hell's Kitchen,40.75527,-73.99291,Private room,59,2,334,2019-06-16,3.00,2,279 +26520,"Cozy Room #3, Landmark Home 1 Block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68698,-73.96572,Private room,125,2,19,2019-06-02,0.20,6,250 +26559,Beautiful Apartment East Village,112793,Sally,Manhattan,East Village,40.7288,-73.98192,Entire home/apt,140,7,12,2017-12-11,0.13,1,164 +26785,Park Slope Green Guest House,42273,Dani,Brooklyn,South Slope,40.66853,-73.98912,Entire home/apt,120,30,467,2018-12-30,4.22,2,192 +26933,2 BR / 2 Bath Duplex Apt with patio! East Village,72062,Bruce,Manhattan,East Village,40.7254,-73.98157,Entire home/apt,350,2,7,2017-08-09,0.06,4,298 +26954,NYC fabulous views Manhattan's eye,115157,Nimo,Manhattan,Kips Bay,40.74294,-73.98009,Entire home/apt,199,5,38,2015-12-02,0.38,1,260 +26969,2 story family home in Williamsburg,115307,Alexandra,Brooklyn,Williamsburg,40.71942,-73.95748,Entire home/apt,325,3,324,2019-06-23,3.01,1,107 +27006,Comfortable UWS 2-BD Family-Friendly Brownstone,115560,Stacy,Manhattan,Upper West Side,40.77823,-73.97637,Entire home/apt,235,6,27,2019-04-27,0.27,1,199 +27385,Great Large 1 BR apt in East Village!,72062,Bruce,Manhattan,East Village,40.72555,-73.97965,Entire home/apt,225,1,115,2019-06-07,1.05,4,299 +27531,Eveland Private Bed & Living Room w/ Own Entrance,118971,Evelyn,Brooklyn,South Slope,40.66831,-73.98604,Private room,99,2,354,2019-05-20,3.20,3,20 +27644,Sugar Hill Rest Stop ,119510,Emma,Manhattan,Harlem,40.82754,-73.94919,Entire home/apt,170,2,195,2019-07-01,2.03,1,318 +27659,3 Story Town House in Park Slope,119588,Vero,Brooklyn,South Slope,40.66499,-73.97925,Entire home/apt,400,2,16,2018-12-30,0.24,2,216 +27759,apartment next to Central park,119900,Sylvie,Manhattan,Upper West Side,40.77842,-73.97556,Entire home/apt,170,7,13,2019-06-26,0.12,1,224 +27883,East Village Sanctuary,120223,Jen,Manhattan,East Village,40.72245,-73.98527,Entire home/apt,100,4,25,2011-12-10,0.23,1,0 +28321,Large 1 BR in a 3 BR Brooklyn apt. next to Q Trn.,65091,Kay,Brooklyn,Prospect-Lefferts Gardens,40.65593,-73.96053,Private room,75,2,9,2018-10-05,0.08,1,324 +28396,Modern Apt with Spectacular Views,6197784,Jo,Brooklyn,Williamsburg,40.71923,-73.96468,Private room,90,1,9,2011-09-18,0.08,1,245 +28907,Garden studio in the Upper East Sid,124352,Lisa,Manhattan,Upper East Side,40.778,-73.94822,Entire home/apt,150,5,21,2017-08-15,0.19,1,189 +29012,Secluded Master Bedroom in Beautiful Huge Apt,124797,Fernando And Lenin,Manhattan,Washington Heights,40.85879,-73.93128,Private room,85,15,36,2017-08-17,0.33,1,307 +29013,B & B Room 1,35935,Angela,Brooklyn,Bedford-Stuyvesant,40.68332,-73.9547,Private room,70,3,63,2019-05-14,0.58,2,310 +29455,ACCOMMODATIONS GALORE #1,126607,Laurine,Manhattan,Harlem,40.81618,-73.94894,Entire home/apt,120,3,155,2019-06-20,1.42,3,213 +29628,Sunny Room in New Condo,127608,Chris,Brooklyn,Clinton Hill,40.68414,-73.96351,Private room,89,3,260,2019-07-03,2.35,1,278 +29683,Stylish & Sleek Apartment Near SoHo!,125857,Uli,Manhattan,East Village,40.72392,-73.99143,Entire home/apt,185,5,73,2019-06-25,0.66,1,209 +30031,NYC artists’ loft with roof deck,129352,Sol,Brooklyn,Greenpoint,40.73494,-73.9503,Private room,50,3,193,2019-05-20,1.86,1,0 +30927,Unique & Charming small 1br Apt. LES,120335,Cs,Manhattan,Lower East Side,40.71341,-73.98856,Entire home/apt,105,3,32,2019-06-14,0.29,1,16 +31130,Most Central Location!,117287,Lara,Manhattan,Hell's Kitchen,40.76754,-73.98399,Private room,130,2,50,2019-05-26,0.45,3,234 +31555,Luminous Beautiful West Village Studio,135619,Tom,Manhattan,West Village,40.73442,-74.00303,Entire home/apt,115,29,26,2019-07-01,0.25,1,12 +31902,Sanctuary in East Flatbush,137292,Sunder,Brooklyn,Flatlands,40.63188,-73.93248,Private room,77,2,2,2019-01-01,0.02,1,178 +31994,Room with En Suite Bathroom & Deck,137814,Waldemar,Brooklyn,Clinton Hill,40.6873,-73.9634,Private room,76,2,426,2019-06-24,3.89,3,275 +32023,FLAT MACDONOUGH,137974,Khem,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93662,Entire home/apt,125,3,227,2019-06-23,2.09,2,163 +32037,Huge Private Floor at The Waverly,116599,Sahr,Brooklyn,Clinton Hill,40.6863,-73.96765,Private room,135,4,84,2019-07-01,0.77,3,365 +32100,"Modern Greenpoint, Brooklyn Apt",138579,Ali+Scott,Brooklyn,Greenpoint,40.73409,-73.95348,Entire home/apt,250,29,3,2017-07-30,0.03,1,34 +32289,"Sun-drenched, artsy modernist 1 BDRM duplex",139612,Elisabeth,Brooklyn,Williamsburg,40.71561,-73.94835,Entire home/apt,199,3,10,2018-06-11,0.10,1,280 +32331,"Sunny, Cobble Hill Apartment",139874,Sarah,Brooklyn,Cobble Hill,40.6857,-73.99183,Entire home/apt,140,2,4,2016-04-24,0.04,1,0 +32363,Fully Furnished Basement Apartment,140025,Fredah,Queens,Flushing,40.74028,-73.83168,Private room,140,2,1,2011-09-19,0.01,1,1 +32965,FLAT MACDONOUGH GARDEN,137974,Khem,Brooklyn,Bedford-Stuyvesant,40.68281,-73.93524,Entire home/apt,115,3,124,2019-06-20,1.72,2,170 +32969,Light filled Williamsburg Apartment,142833,Katherine,Brooklyn,Williamsburg,40.71596,-73.93938,Entire home/apt,160,3,11,2019-07-02,0.11,1,188 +33009,Retreat in Williamsburg,143027,Ming,Brooklyn,Williamsburg,40.71492,-73.95935,Entire home/apt,195,4,240,2019-06-17,2.19,1,214 +33014,NYC Zen,143048,Paula,Manhattan,East Village,40.72354,-73.98295,Entire home/apt,195,3,30,2019-06-17,0.28,1,248 +33223,Cozy BR in Wiliamsburg 3 Bedroom,72014,Lulú,Brooklyn,Williamsburg,40.71165,-73.96087,Private room,80,3,200,2019-06-22,1.86,4,262 +34760,Sunny Room in Old Historical Brooklyn Townhouse,149929,Obed,Brooklyn,Fort Greene,40.69101,-73.97312,Private room,44,8,27,2019-06-29,1.05,5,280 +35526,Sun Filled Classic West Village Apt,120291,Karen,Manhattan,West Village,40.73474,-74.00101,Private room,156,4,79,2019-06-22,0.74,1,307 +36121,Lg Rm in Historic Prospect Heights,62165,Michael,Brooklyn,Prospect Heights,40.67386,-73.96641,Private room,85,15,9,2013-05-10,0.09,1,339 +36133,Classic Artist Loft Williamsburg,142684,White,Brooklyn,Williamsburg,40.71536,-73.96057,Private room,125,3,155,2019-06-13,1.61,1,1 +36442,Great location. Spacious on PROSPECT PARK,137432,Paz,Brooklyn,Prospect Heights,40.6741,-73.96595,Entire home/apt,115,15,4,2018-08-27,0.05,1,269 +36647,Private Bdrm/Bathrm. New! Elevator!,157798,Irene,Manhattan,East Harlem,40.79295,-73.93997,Private room,69,2,34,2017-05-29,0.32,1,10 +36703,"Sunny, clean 1 bdrm in W. Village",158284,Karene,Manhattan,West Village,40.73226,-74.00401,Entire home/apt,225,45,134,2019-03-31,1.24,1,312 +36934,Great location in Williamsburg,159370,Viviana,Brooklyn,Williamsburg,40.71363,-73.96398,Entire home/apt,125,6,27,2018-12-27,0.25,1,189 +38638,Light and Airy Upper East Side 1 BDR apartment,92788,Sara,Manhattan,Upper East Side,40.77711,-73.9527,Entire home/apt,219,4,126,2019-06-26,1.16,2,290 +38663,Luxury Brownstone in Boerum Hill,165789,Sarah,Brooklyn,Boerum Hill,40.68559,-73.98094,Entire home/apt,475,3,23,2018-12-31,0.27,1,230 +39267,CENTRAL PARK LOFT all for YOU,168417,Marie,Manhattan,Upper East Side,40.77456,-73.95323,Entire home/apt,99,1,234,2019-06-08,2.60,2,164 +39282,Indie-Chic Share In Williamsburg,168525,Gus,Brooklyn,Williamsburg,40.71088,-73.95055,Private room,69,4,202,2019-05-28,1.86,2,53 +39593,"A room w/ a Manhattan view, longer stay",110506,Myung,Queens,Sunnyside,40.74559,-73.92313,Private room,79,30,28,2019-04-12,0.26,1,126 +39704,"Private, Large & Sunny 1BR w/W&D",170510,Renée,Brooklyn,Bedford-Stuyvesant,40.68306,-73.94659,Entire home/apt,135,2,309,2019-06-22,2.86,2,3 +40039,Luxurious Condo in DUBMO with View,171851,Henry,Brooklyn,DUMBO,40.70207,-73.98571,Private room,250,3,14,2011-04-25,0.13,1,189 +40453,Charming & Cozy midtown loft any WEEK ENDS !!!,174025,Sylvia,Manhattan,Upper East Side,40.76123,-73.9642,Entire home/apt,250,3,4,2016-09-23,0.08,1,365 +41348,* Spacious GARDEN Park Slope Duplex* 6 people max,180083,Syl,Brooklyn,Gowanus,40.66858,-73.99083,Entire home/apt,250,2,80,2019-07-06,2.17,1,0 +41513,Convenient cozy cheap apt Manhattan,181167,Lorenzo,Manhattan,Harlem,40.82704,-73.94907,Entire home/apt,80,3,2,2015-11-02,0.04,1,0 +42580,Parlor Room In Victorian Townhouse,137814,Waldemar,Brooklyn,Clinton Hill,40.68843,-73.96408,Private room,70,2,294,2019-06-24,3.47,3,336 +42729,House On Henry (2nd FLR Suite),11481,Annette,Brooklyn,Carroll Gardens,40.6783,-74.00135,Entire home/apt,165,2,150,2019-06-18,1.40,3,342 +42882,New York room with a view,185978,Newyorkroomwithaview,Staten Island,St. George,40.64524,-74.08088,Private room,70,2,166,2019-06-13,1.66,1,312 +43957,Sunny cozy room in Brklyn townhouse,177536,Tessa,Brooklyn,Bushwick,40.70641,-73.91765,Private room,50,2,47,2019-06-19,0.94,1,37 +44096,Room with a View,190409,Waundell,Bronx,Highbridge,40.83232,-73.93184,Private room,40,1,219,2019-07-04,2.04,3,353 +44161,Light+Open+Airy+Rustic+Modern Loft,193360,Young,Brooklyn,Williamsburg,40.71045,-73.9677,Entire home/apt,150,2,193,2016-07-06,1.78,1,177 +44212,West Inn 2 - East Village,72062,Bruce,Manhattan,East Village,40.72518,-73.98034,Private room,125,1,84,2019-06-23,0.78,4,310 +44221,Financial District Luxury Loft,193722,Coral,Manhattan,Financial District,40.70666,-74.01374,Entire home/apt,196,3,114,2019-06-20,1.06,1,0 +44229,BROOKLYN VICTORIAN STYLE SUITE.....,181376,Carol,Brooklyn,Fort Greene,40.69098,-73.97113,Private room,110,2,213,2019-06-24,2.00,2,321 +44288,Your own Lovely West Village Studio,193637,Sara,Manhattan,West Village,40.73756,-74.00405,Entire home/apt,170,3,86,2019-06-01,0.80,1,246 +44506,ACCOMMODATIONS GALORE#3. 1-5 GUESTS,126607,Laurine,Manhattan,Harlem,40.81526,-73.94791,Entire home/apt,165,3,80,2019-05-26,0.75,3,231 +45393,Greenwich Village Stylish Apartment,201297,Myrna,Manhattan,West Village,40.73423,-74.0046,Entire home/apt,150,26,38,2016-04-20,0.36,1,225 +45542,Clean and Cozy Harlem Apartment,202249,Campbell,Manhattan,Harlem,40.82374,-73.9373,Entire home/apt,100,2,18,2018-12-17,1.79,1,0 +45556,"Fort Greene, Brooklyn: Center Bedroom",67778,Doug,Brooklyn,Fort Greene,40.68863,-73.97691,Private room,65,2,206,2019-06-30,1.92,2,0 +45910,Beautiful Queens Brownstone! - 5BR,204539,Mark,Queens,Ridgewood,40.70382,-73.89797,Entire home/apt,350,8,10,2019-05-12,0.11,5,365 +45936,Couldn't Be Closer To Columbia Uni,867225,Rahul,Manhattan,Morningside Heights,40.80549,-73.95924,Private room,99,4,122,2019-05-14,1.18,2,233 +45940,Bright Spacious Luxury Condo,204724,Miyoung,Brooklyn,Williamsburg,40.71627,-73.9587,Entire home/apt,200,4,33,2019-04-08,0.58,1,1 +46544,Park Slope haven 15 mins from Soho,8198,Monica,Brooklyn,Park Slope,40.67994,-73.97863,Entire home/apt,150,5,52,2019-06-05,0.50,1,18 +46723,SAFE AND BEAUTIFUL ACCOMODATION,209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.67992,-73.9475,Private room,90,3,126,2019-05-19,1.17,4,343 +46911,Large Room in private Brownstone in Park Slope,210746,Kathleen R.,Brooklyn,Prospect Heights,40.67868,-73.97307,Private room,120,3,51,2019-06-24,0.48,3,250 +47199,"NEW YORK CITY, 1 BDRM.(NEAR CENTRAL PARK & METRO)",212722,Teresa,Manhattan,Upper East Side,40.76834,-73.95334,Private room,75,3,199,2019-06-24,1.85,1,326 +47362,"LARGE, COMFY 1BDR W/CHARACTER!!!",214148,Robert,Brooklyn,Bedford-Stuyvesant,40.68237,-73.9415,Entire home/apt,175,26,30,2012-09-03,0.29,1,364 +47370,Chelsea Studio sublet 1 - 2 months,214287,Alex,Manhattan,Chelsea,40.74031,-73.99999,Entire home/apt,125,3,3,2015-07-17,0.03,1,0 +47926,LUX APT IN TIMES SQUARE NEW BUILDING,218404,Claudia,Manhattan,Hell's Kitchen,40.76307,-73.99665,Entire home/apt,275,1,41,2019-06-26,0.38,1,299 +48719,Designer 1 BR Duplex w/ Terrace- Spectacular Views,221873,Shane,Manhattan,Lower East Side,40.71882,-73.98852,Entire home/apt,299,2,109,2019-06-15,1.04,1,207 +50447,Lovely Apt & Garden; Legal; Best Area; Amenities,9744,Laurie,Brooklyn,South Slope,40.6693,-73.98804,Entire home/apt,135,5,151,2019-06-22,1.43,3,162 +51438,1 Bedroom in 2 Bdrm Apt- Upper East,236421,Jessica,Manhattan,Upper East Side,40.77333,-73.95199,Private room,130,14,0,,,2,0 +51485,Lower East Side $57~/night,236655,Erina,Manhattan,Lower East Side,40.72319,-73.99201,Private room,83,1,285,2019-06-22,2.69,1,7 +51572,Prime Location in Manhattan,237329,Lee,Manhattan,Chelsea,40.74859,-73.99671,Private room,123,1,375,2019-06-18,3.52,1,328 +51850,( F) Excellent/Pvt Rm,27848,Jullett,Queens,Jamaica,40.67252,-73.76597,Private room,55,2,52,2019-05-20,0.49,2,365 +53137,"Quiet, sunny Midtown Manhattan apt.",240360,Marlaine,Manhattan,Hell's Kitchen,40.76244,-73.99271,Entire home/apt,195,5,10,2019-07-01,1.01,1,0 +53196,Big Room/Washer-Dryer/Wifi/AC/JMZ,247432,Charlotte,Brooklyn,Bedford-Stuyvesant,40.69546,-73.93503,Private room,80,2,11,2017-11-13,0.48,1,0 +53469,cozy studio with parking spot,204539,Mark,Queens,Middle Village,40.71722,-73.87856,Entire home/apt,98,30,33,2015-05-09,0.31,5,240 +53470,Clean and convenient 2BR apartment,204539,Mark,Queens,Ridgewood,40.70234,-73.89816,Private room,140,7,6,2015-10-08,0.06,5,365 +53477,3 floors of luxury!,204539,Mark,Queens,Middle Village,40.71546,-73.87854,Entire home/apt,265,7,38,2019-04-27,0.38,5,365 +54158,The Institute—Heart of Williamsburg,10889,Bob,Brooklyn,Williamsburg,40.7195,-73.95976,Entire home/apt,249,2,358,2019-06-20,3.44,2,164 +54453,MIDTOWN WEST - Large alcove studio,255583,Anka,Manhattan,Hell's Kitchen,40.76548,-73.98474,Shared room,105,6,10,2014-01-07,0.09,1,363 +54466,Beautiful Uptown Manhattan apartmnt,253385,Douglas,Manhattan,Harlem,40.80234,-73.95603,Private room,200,30,0,,,1,365 +54508,Sml Rm in pr Brst Park Sl great for Med/students,210746,Kathleen R.,Brooklyn,Prospect Heights,40.6787,-73.97262,Private room,100,2,226,2019-06-06,2.12,3,250 +54544,City Room - Private Penthouse Apt.,256161,Wayne,Manhattan,Harlem,40.81035,-73.94598,Entire home/apt,121,1,104,2019-06-22,1.00,5,247 +54626,Cozy bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83075,-73.93058,Private room,45,1,138,2019-06-30,1.45,3,323 +54860,Great apartment with private bathroom and entrance,258164,Jenny,Manhattan,East Harlem,40.79958,-73.94275,Private room,100,5,204,2019-06-23,1.92,1,192 +55467,Private Garden Apt • New Renovation,260709,Paul,Brooklyn,Williamsburg,40.71625,-73.93845,Entire home/apt,140,2,253,2019-07-02,3.04,1,125 +55498,Modern comfort in art infused landmark Brownstone,262138,Tami,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93549,Private room,71,2,23,2019-07-01,0.22,1,91 +55668,"NOHO/EAST VILLAGE, PRIVATE 1/2 BATH",88209,Jason,Manhattan,NoHo,40.72773,-73.99134,Private room,130,2,115,2018-12-05,1.17,1,75 +55737,Sleek & Comfortable Soho Apt,263414,Pete,Manhattan,West Village,40.72861,-74.0049,Entire home/apt,199,5,129,2019-05-19,1.22,1,286 +55959,Spacious Williamsburg Share w/ LOFT BED,168525,Gus,Brooklyn,Williamsburg,40.70979,-73.95162,Private room,69,4,82,2019-06-10,1.13,2,60 +55982,Cozy 2 br in sunny Fort Greene apt,264928,Sally,Brooklyn,Fort Greene,40.68656,-73.97525,Private room,68,3,37,2018-12-31,0.35,1,0 +56467,Cozy East Village Railroad 1 Bed!,267593,Leonardo,Manhattan,East Village,40.72752,-73.98432,Entire home/apt,130,1,204,2019-07-01,2.04,1,192 +56525,1 Bedroom Loft w/ Private Roof Deck,268014,Alex,Brooklyn,Greenpoint,40.729,-73.95829,Entire home/apt,195,2,69,2019-06-13,0.65,1,58 +56859,City Room - Private & Comfy Bedroom,256161,Wayne,Manhattan,Harlem,40.81219,-73.94499,Private room,64,1,192,2019-06-03,1.84,5,245 +57166,Elegant NYC Pad,272006,Vasili,Queens,Ditmars Steinway,40.77185,-73.90502,Entire home/apt,140,2,17,2019-06-17,0.16,1,292 +57297,"Clean & bright 1BR in Cobble Hill, GREAT location!",199392,S.M.,Brooklyn,Cobble Hill,40.68926,-73.99386,Entire home/apt,159,2,222,2019-06-24,2.12,1,279 +57468,"Modern, Large East Village Loft",239208,Ori,Manhattan,East Village,40.72821,-73.98701,Entire home/apt,189,3,205,2019-06-23,1.96,1,0 +57618,"Great new apt, close to everything",274557,Ana,Manhattan,Hell's Kitchen,40.7672,-73.98508,Entire home/apt,250,3,94,2019-06-09,0.96,1,3 +57740,Quiet & Clean Retreat in the City,275459,I,Manhattan,East Village,40.73012,-73.99053,Entire home/apt,239,3,7,2019-05-24,0.07,1,351 +57754,Stylish Large Gramercy Loft!,275578,R,Manhattan,Flatiron District,40.7403,-73.98498,Entire home/apt,305,2,108,2019-06-30,1.09,1,201 +57874,The Brownstone-Luxury 1 Bd Apt/NYC,276291,Simon,Manhattan,Harlem,40.80931,-73.94343,Entire home/apt,155,3,222,2019-06-26,2.10,2,232 +58059,PRIVATE Room on Historic Sugar Hill,277379,Agnes,Manhattan,Harlem,40.8251,-73.94287,Private room,60,1,458,2019-07-03,4.58,2,258 +58062,South Slope Green,277394,Linda,Brooklyn,Windsor Terrace,40.6585,-73.98397,Private room,135,2,21,2019-05-17,0.26,1,272 +58467,"17 Flr. Manhattan Views, Nr. Subway",279797,Dave,Manhattan,Roosevelt Island,40.76193,-73.9501,Private room,120,7,17,2019-05-08,0.30,1,341 +59014,"Spacious 1BR, Adorable Clean Quiet",282927,Drica,Manhattan,Lower East Side,40.72052,-73.98589,Entire home/apt,150,3,41,2019-01-02,0.39,1,244 +59121,"Nice, clean, safe, convenient 3BR",204539,Mark,Queens,Ridgewood,40.70411,-73.89934,Entire home/apt,140,14,1,2012-09-17,0.01,5,365 +59642,Franklin St Flat in Trendy Greenpoint Brooklyn,274782,Betty,Brooklyn,Greenpoint,40.73401,-73.95967,Entire home/apt,135,2,69,2019-05-19,0.67,1,12 +59709,"Artistic, Cozy, and Spacious w/ Patio! Sleeps 5",186084,Ricardo & Ashlie,Manhattan,Chinatown,40.71756,-73.99503,Entire home/apt,250,4,18,2019-07-01,0.18,2,265 +59855,One bedroom Apt. in NYC,288031,Leslie,Manhattan,Midtown,40.7589,-73.96991,Entire home/apt,250,30,82,2016-01-05,0.78,1,0 +60164,"Beautiful, elegant 3 bed SOHO loft",289653,Harrison,Manhattan,SoHo,40.72003,-74.00262,Entire home/apt,500,4,94,2019-06-23,0.99,1,329 +60457,Spacious Greenwich Village Apt,99212,Jessica,Manhattan,Greenwich Village,40.73194,-73.99474,Entire home/apt,225,5,10,2019-05-11,0.10,1,91 +60611,SpaHa Studio Monthly Rental,292204,Blanca,Manhattan,East Harlem,40.79163,-73.94573,Entire home/apt,125,28,183,2018-09-29,1.83,2,365 +60666,City Room - Private Luxury Suite,256161,Wayne,Manhattan,Harlem,40.8118,-73.94434,Private room,92,1,189,2019-06-11,1.82,5,253 +60673,Private Room/bath Luxurious Harlem,249372,Cynthia,Manhattan,Harlem,40.81583,-73.94707,Private room,175,2,1,2018-10-07,0.11,1,365 +60680,The gem of the East Village,292630,Mich,Manhattan,East Village,40.72654,-73.98049,Entire home/apt,99,2,127,2019-06-20,1.22,1,320 +60794,"Bright and spacious, garden below!",293394,Rachel,Manhattan,Upper West Side,40.80021,-73.96071,Entire home/apt,195,4,4,2017-08-25,0.04,1,0 +60948,ACCOMMODATIONS GALORE #2,126607,Laurine,Manhattan,East Harlem,40.80942,-73.93936,Entire home/apt,140,3,135,2019-06-20,1.30,3,192 +61167,Colorful Private One Bedroom Apt,295760,Greta,Manhattan,Little Italy,40.71961,-73.9954,Entire home/apt,135,2,21,2015-12-12,0.20,1,0 +61224,Huge Chelsea Loft,291112,Frank,Manhattan,Chelsea,40.74358,-74.00027,Entire home/apt,500,2,35,2017-07-27,0.34,1,348 +61406,Great room in great location,297176,Bethania,Manhattan,Harlem,40.80335,-73.9575,Private room,80,14,10,2019-06-01,2.21,2,0 +61492,Exclusive Room with Private Bath in LES,297769,Tunji,Manhattan,Chinatown,40.71445,-73.9908,Private room,120,4,171,2019-06-23,1.80,2,353 +61509,"Quiet, clean midtown apt w. elevato",23619,Anna/Fonzy,Manhattan,Midtown,40.75749,-73.96897,Entire home/apt,110,200,92,2019-04-30,0.90,1,140 +62095,BK Sweet Suite w/Kitchen&FullBath,281764,Colette&Sean,Brooklyn,East Flatbush,40.64446,-73.9503,Entire home/apt,65,3,238,2019-06-14,2.30,1,2 +62427,Great East Village Apartment Rental,303882,Brie,Manhattan,East Village,40.7268,-73.99079,Entire home/apt,130,50,56,2019-05-26,0.58,1,56 +62430,BROWNSTONE SUNDRENCHED BEAUTY,197755,Sheila,Brooklyn,Bushwick,40.688,-73.9171,Entire home/apt,99,3,111,2019-06-22,2.13,1,68 +62452,A SpeciaL!! Private Room in NY,303939,Lissette,Staten Island,Tompkinsville,40.63536,-74.08537,Private room,36,2,193,2019-06-25,1.85,6,360 +62461,B NYC Staten Alternative...,303939,Lissette,Staten Island,Tompkinsville,40.63627,-74.08543,Private room,37,2,147,2019-06-10,1.44,6,0 +62787,C Private Room By The Ferry,303939,Lissette,Staten Island,Tompkinsville,40.63518,-74.08546,Private room,37,2,177,2019-07-02,1.71,6,320 +62891,Smallest House In The Village,306545,Olivia,Manhattan,East Village,40.72477,-73.98161,Entire home/apt,175,3,185,2019-05-24,1.78,2,326 +62903,Beautiful modern studio apartment in heart of NYC,306605,Daniel,Manhattan,Chelsea,40.74238,-73.99567,Entire home/apt,205,9,62,2019-06-21,0.70,2,76 +62925,Beautiful Landmarked Duplex,306739,Maya,Brooklyn,Greenpoint,40.72945,-73.95511,Entire home/apt,285,3,124,2019-06-16,1.22,3,279 +63299,BROOKLYN > Guest Room w/ Queen Bed in Williamsburg,308875,Scott,Brooklyn,Williamsburg,40.70763,-73.95177,Private room,59,2,181,2019-06-23,1.77,2,15 +63320,D Private Che@p Room 2 Explore NYC,303939,Lissette,Staten Island,Tompkinsville,40.63481,-74.08519,Private room,36,2,333,2019-07-02,3.19,6,340 +63360,Safe cute near subway& Manhattan NY NY retro style,307962,Dennis & Naoko,Queens,Astoria,40.75384,-73.91433,Entire home/apt,99,5,441,2019-06-24,4.50,1,226 +63546,Large and Cozy Private Bedroom,308652,Antonín,Brooklyn,Kensington,40.64106,-73.97426,Private room,39,1,45,2019-05-16,0.46,2,365 +63573,Small tidy bedroom in duplex,310458,Emily,Brooklyn,Park Slope,40.66793,-73.98327,Private room,60,14,9,2016-08-29,0.09,2,0 +63588,LL3,295128,Carol Gloria,Bronx,Clason Point,40.81309,-73.85514,Private room,90,2,0,,,7,349 +63610,DOMINIQUE'S NY mini efficiency* wifi*metro*quiet,310670,Vie,Bronx,Eastchester,40.88057,-73.83572,Entire home/apt,105,2,38,2019-06-27,0.50,13,365 +63657,"Private, Large & Sunny Top Floor Apt w/W&D",170510,Renée,Brooklyn,Bedford-Stuyvesant,40.68236,-73.94314,Entire home/apt,135,2,248,2019-06-25,2.39,2,11 +63693,Cottage in the Village,306545,Olivia,Manhattan,East Village,40.72185,-73.98246,Entire home/apt,390,5,143,2019-06-19,1.38,2,316 +63719,BEDROOM1 FOR RENT 10min from Manhan,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.68503,-73.95385,Private room,70,3,36,2018-08-19,0.41,4,281 +63913,"HOSTING YOUR SUNNY, SPACIOUS NYC ROOM",312288,Paula,Manhattan,Inwood,40.86648,-73.9263,Private room,75,7,0,,,2,323 +64000,Williamsburg near soho. / loftbed,312722,Kristian & Di,Brooklyn,Williamsburg,40.7069,-73.95467,Private room,60,17,14,2019-01-07,0.14,4,362 +64015,Prime East Village 1 Bedroom,146944,David,Manhattan,East Village,40.72807,-73.98594,Entire home/apt,200,3,0,,,1,0 +64107,BROOKLYN STUDIO APARTMENT,313317,Niya,Brooklyn,Crown Heights,40.6778,-73.94339,Private room,100,3,279,2019-06-24,2.69,1,301 +64277,BEDROOM2 FOR RENT 10min from Manh,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.68317,-73.94701,Private room,70,4,18,2019-01-02,0.22,4,189 +64314,cozy bedroom in lovely garden apt,314256,Debbie,Brooklyn,Crown Heights,40.6761,-73.9529,Private room,110,6,50,2019-05-26,3.55,1,0 +64365,Crown Heights Garden Apt.,314582,Anthony,Brooklyn,Crown Heights,40.67586,-73.95155,Private room,60,2,227,2019-06-27,2.27,2,287 +64707,Amazing Sunny & Breezy Home In the Heart of NYC,7310,Tilly,Manhattan,Little Italy,40.71702,-73.99811,Entire home/apt,90,14,1,2019-01-02,0.16,1,14 +64837,ENJOY Downtown NYC!!,46978,Edward,Manhattan,East Village,40.72321,-73.98157,Private room,68,2,203,2019-06-23,1.96,2,86 +65019,Charming UWS Treehouse Apt,317809,Claire,Manhattan,Upper West Side,40.77956,-73.98098,Entire home/apt,115,2,210,2019-07-06,2.10,1,261 +65268,Share a HOME - $75 for 1 bdrm/++ for 2 - Brooklyn,319092,Juhli,Brooklyn,Bedford-Stuyvesant,40.68276,-73.95264,Private room,75,5,64,2019-01-05,0.67,1,68 +65556,"Room in S3rd/Bedford, Williamsburg",320422,Marlon,Brooklyn,Williamsburg,40.71368,-73.9626,Private room,60,3,0,,,1,0 +65562,CHARMING EAST VILLAGE 2 (or 1) BR,320450,Mary D,Manhattan,East Village,40.72956,-73.98158,Entire home/apt,129,7,5,2019-01-03,0.15,1,231 +65615,Farmhouse Apartment in Williamsburg,320761,Valerie,Brooklyn,Williamsburg,40.71069,-73.95175,Entire home/apt,130,10,49,2019-06-29,0.48,1,152 +65660,Bright+Spacious Williamsburg Abode!,320538,Larissa,Brooklyn,Williamsburg,40.70863,-73.94641,Entire home/apt,95,4,132,2019-07-07,1.27,1,46 +65813,"Suite Sugar Hill, Harlem, Private Rm in Hosted Apt",321756,Eric,Manhattan,Harlem,40.82888,-73.94307,Private room,75,3,20,2019-01-02,0.26,1,364 +65834,Beautiful 1 Bedroom Apt Park Slope,321934,Jessica,Brooklyn,Park Slope,40.67319,-73.97323,Entire home/apt,175,2,11,2013-05-02,0.11,1,246 +66008,CHARMING CARROLL GARDENS APT.,322884,Melissa,Brooklyn,Carroll Gardens,40.67846,-73.99443,Entire home/apt,190,3,51,2019-07-01,0.57,1,288 +66026,Private Bedroom Brownstone Brooklyn,322716,Alex,Brooklyn,Crown Heights,40.6715,-73.94808,Private room,49,21,15,2019-06-30,0.15,5,331 +66251,East Village Loft with Piano & Patio,324460,Samir,Manhattan,East Village,40.72681,-73.98534,Entire home/apt,212,3,67,2019-06-25,1.31,1,51 +66275,Lower East Side Magic Room,314941,Tony,Manhattan,Lower East Side,40.71904,-73.99392,Private room,95,1,109,2019-06-23,1.11,3,364 +66451,**Fantastic Williamsburg Apt**,325389,Luis Fernando,Brooklyn,Williamsburg,40.71031,-73.9583,Entire home/apt,140,2,9,2019-02-16,0.11,1,254 +66718,West Harlem Home Base - Eco-Apt.,136227,Henning,Manhattan,Harlem,40.81322,-73.95306,Entire home/apt,135,6,187,2019-06-23,1.87,1,189 +66741,Charming Garden Apt in Park Slope,327673,Stefano,Brooklyn,Park Slope,40.67732,-73.98225,Entire home/apt,150,2,214,2019-06-23,2.08,2,263 +66974,"Lovely, Modern, Garden Apartment",329436,Jana,Brooklyn,Gowanus,40.68076,-73.9896,Entire home/apt,190,3,69,2019-07-01,0.79,2,258 +67288,Central Park 1BR sunny condo,101597,Per,Manhattan,East Harlem,40.79603,-73.94903,Entire home/apt,124,28,22,2019-06-15,0.26,1,103 +67299,Cozy Garden Apartment in Williamsburg,330347,Adrienne,Brooklyn,Williamsburg,40.71492,-73.96282,Entire home/apt,135,30,56,2019-05-06,0.56,1,42 +67397,SoHa comfort-by NW Central Park!,332189,Elise,Manhattan,Morningside Heights,40.80393,-73.95838,Private room,122,3,93,2019-06-22,0.93,1,246 +68099,Cozy room in Upper West Side,323517,Deda,Manhattan,Upper West Side,40.80082,-73.9652,Private room,109,1,104,2019-06-25,1.05,2,364 +68305,Cozy Private Room in Apartment,338454,Share,Manhattan,Harlem,40.82976,-73.94867,Private room,85,30,64,2018-07-06,0.68,1,318 +68403,The Cozy Brownstone Inn (discount)!,240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.683,-73.91981,Entire home/apt,145,3,127,2019-06-24,1.25,2,72 +68735,Prewar Penthouse w Private Terrace,342054,Violetta,Manhattan,Upper West Side,40.78971,-73.9729,Entire home/apt,195,11,30,2019-06-13,0.32,1,249 +68765,Designer 2.5 BR Loft in Carroll Gardens by Subway,282655,Jenna,Brooklyn,Carroll Gardens,40.67817,-73.99495,Entire home/apt,250,2,106,2019-06-27,1.34,3,272 +68900,Bright Beautiful Brooklyn,343250,Jason,Brooklyn,Greenpoint,40.73119,-73.95578,Private room,125,3,6,2016-11-13,0.10,1,325 +68974,Unique spacious loft on the Bowery,281229,Alicia,Manhattan,Little Italy,40.71943,-73.99627,Entire home/apt,575,2,191,2019-06-20,1.88,1,298 +69894,"Nice renovated apt, prime location!",352168,Silvia,Manhattan,Upper West Side,40.78,-73.98249,Entire home/apt,150,30,48,2019-06-11,0.55,1,35 +69921,Brooklyn Writer's Nook,155689,Joab,Brooklyn,Bushwick,40.70514,-73.91922,Private room,70,5,47,2019-06-29,0.49,1,203 +70095,Private Bedroom in Large NYC Apartment,353965,Mary And Geoff,Manhattan,Inwood,40.86713,-73.92811,Private room,90,2,120,2019-06-30,1.27,1,132 +70128,"Large, Sunny Room East Village NYC",354330,Eyal,Manhattan,East Village,40.73198,-73.98881,Private room,65,3,52,2019-01-10,0.63,1,5 +70609,Great Large 3 BR/2 Bath Duplex with Private Patio!,72062,Bruce,Manhattan,East Village,40.72542,-73.97986,Entire home/apt,500,2,48,2019-06-16,0.48,4,297 +71010,All That Jazz. Uptown style on Sugar Hill.,361855,Kurt,Manhattan,Washington Heights,40.83494,-73.93869,Entire home/apt,250,3,32,2019-05-24,0.43,2,276 +71248,Bright and lovely 1 bdrm apt in LES,363834,Jennifer,Manhattan,Chinatown,40.71659,-73.98945,Entire home/apt,125,25,43,2019-06-17,0.42,1,102 +71366,Beautiful One Bed West Village - 4 Month Special,364955,Ruperto,Manhattan,West Village,40.72966,-74.00243,Entire home/apt,200,30,39,2019-06-25,0.44,1,251 +71384,Gigantic Private Brooklyn Loft!,365153,Ben,Brooklyn,Greenpoint,40.72898,-73.95552,Entire home/apt,229,1,50,2014-05-13,0.50,1,188 +71812,Condo Apartment with laundry in unit,369015,Thai,Bronx,Kingsbridge,40.87207,-73.90193,Entire home/apt,90,30,4,2019-01-02,0.35,2,346 +72190,1BR: See Central Park from Terrace!,373085,Hudson,Manhattan,Upper West Side,40.77728,-73.97818,Entire home/apt,110,13,38,2019-02-15,0.39,1,0 +72265,Private room in cozy Greenpoint,340692,Vanessa,Brooklyn,Greenpoint,40.72646,-73.95341,Private room,59,3,29,2019-06-16,0.36,1,15 +74073,Food & Music Dream Apartment in Williamsburg,211877,Daniel,Brooklyn,Williamsburg,40.71015,-73.96101,Entire home/apt,195,4,59,2019-06-23,0.60,1,71 +74240,French Garden cottage off Bedford,389924,Patty,Brooklyn,Williamsburg,40.71903,-73.9597,Entire home/apt,169,1,68,2019-06-07,0.67,2,215 +74333,Alcove Studio w/ outdoor Patio Deck,331328,Amir,Manhattan,East Harlem,40.80892,-73.93985,Entire home/apt,113,14,26,2015-11-25,0.27,3,253 +74404,Luxury 3 bed/ 2 bath apt in Harlem w/ terrace,391325,G & S,Manhattan,Harlem,40.80276,-73.9567,Entire home/apt,250,14,31,2012-08-22,0.31,1,78 +74680,One Bedroom Mini studio - Free WIFI,265109,Nazleen,Queens,Astoria,40.77635,-73.93426,Entire home/apt,115,2,198,2019-05-31,2.01,1,257 +74860,"Sunlit and Cozy Williamsburg/Greenpoint, Brooklyn",394752,Allison,Brooklyn,Greenpoint,40.72488,-73.95018,Private room,55,2,1,2011-03-28,0.01,1,0 +75193,BROOKLYN > Guest Room w/ King Bed in Williamsburg,308875,Scott,Brooklyn,Williamsburg,40.71398,-73.95763,Private room,69,2,220,2019-06-22,2.17,2,8 +75635,Bright Cozy Chinatown Studio Apt.,401696,Patricia,Manhattan,Lower East Side,40.71876,-73.98394,Entire home/apt,150,3,286,2019-06-27,2.81,1,191 +76761,Eveland the Place to Stay & Enjoy a 5-⭐️ 2bdrm,118971,Evelyn,Brooklyn,South Slope,40.66552,-73.99019,Entire home/apt,169,2,398,2019-06-28,3.97,3,182 +77765,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73749,-73.95292,Private room,179,3,36,2019-07-01,0.36,28,79 +77936,Hells Kitchen Garden of Eden,134355,Moss Owen,Manhattan,Hell's Kitchen,40.76248,-73.9913,Private room,150,3,36,2019-06-14,0.36,1,49 +78919,"Historic House Boerum Hill, BK, NYC",422561,Nancy,Brooklyn,Boerum Hill,40.68674,-73.98876,Entire home/apt,135,4,6,2016-02-05,0.10,1,0 +79067,Lovely 3 bedroom in Italianate Brownstone w/garden,425506,Bliss,Brooklyn,Clinton Hill,40.6848,-73.96219,Entire home/apt,350,6,14,2019-04-20,0.30,1,156 +79782,"Williamsburg HUGE, PRIVATE BATH - Next to Train!",430188,Pam,Brooklyn,Williamsburg,40.70516,-73.95455,Private room,120,14,76,2019-03-31,0.76,6,343 +80493,Cozy room in East Village with AC,434987,Jennifer,Manhattan,East Village,40.72329,-73.98486,Private room,71,2,182,2019-07-04,1.81,1,200 +80684,Duplex w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73776,-73.95327,Private room,349,3,8,2016-03-27,0.09,28,60 +80700,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73738,-73.95482,Private room,349,3,7,2019-05-24,0.07,28,60 +80924,Spacious 3 Bedroom Duplex in Park Slope,438133,Ellis,Brooklyn,Park Slope,40.67542,-73.98142,Entire home/apt,165,30,34,2018-09-25,0.51,2,189 +81739,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73842,-73.95312,Private room,249,3,2,2011-05-12,0.02,28,60 +82549,Columbia Castle in Brooklyn Heights,448312,Christopher,Brooklyn,Brooklyn Heights,40.6926,-73.99832,Private room,100,3,66,2016-09-16,0.68,2,0 +82550,Columbia Castle 2 BR,448312,Christopher,Brooklyn,Brooklyn Heights,40.69441,-73.99771,Entire home/apt,200,3,80,2019-06-30,0.85,2,106 +82638,"Charming Artist's Flat, East Village",449787,Sarah,Manhattan,East Village,40.72399,-73.98374,Entire home/apt,169,4,240,2019-06-06,2.40,1,276 +82928,BEAUTIFUL 2 BEDROOM APARTMENT,451545,Ruthven,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94615,Entire home/apt,185,3,46,2019-07-02,1.07,1,248 +83243,Brooklyn Cove Studio Apt w/ Garden!!,453519,Julian,Brooklyn,Bushwick,40.68949,-73.91708,Entire home/apt,65,2,228,2019-06-10,2.27,1,194 +83446,"Ft. Greene garden gem, large and convenient",454756,Leslie,Brooklyn,Fort Greene,40.68819,-73.97258,Entire home/apt,130,35,5,2018-09-03,0.05,1,135 +83722,Williamsburg penthouse with private roof cabana,456638,Sophie,Brooklyn,Williamsburg,40.7205,-73.96015,Entire home/apt,199,30,8,2018-08-26,0.11,1,30 +83847,East Village Designer's 1-BR APT,410094,Yvette,Manhattan,East Village,40.72451,-73.98094,Entire home/apt,225,2,33,2019-01-02,0.33,1,0 +84010,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73813,-73.95394,Private room,179,3,13,2019-06-27,0.14,28,81 +84059,So Much Room in Brooklyn,459054,Famous,Brooklyn,Crown Heights,40.67591,-73.94715,Entire home/apt,150,5,5,2018-07-22,0.05,1,0 +84659,Large Studio--Heart of East Village,462776,Kyle,Manhattan,East Village,40.72843,-73.98895,Entire home/apt,139,1,388,2019-06-26,3.88,1,142 +84905,Huge.Bright.Clean.Safe. Private Room,464506,Ange,Manhattan,Two Bridges,40.71271,-73.99776,Private room,95,3,223,2019-06-23,2.22,2,60 +85094,Garden 1BR/1BA Brownstone Apt - 2 blocks to subway,322716,Alex,Brooklyn,Crown Heights,40.66966,-73.94735,Entire home/apt,79,15,11,2019-01-14,0.11,5,179 +86215,MODERN SPACIOUS 2 BR APT DOWNTOWN MANHATTAN,327900,T,Manhattan,Lower East Side,40.71965,-73.98766,Entire home/apt,150,2,151,2019-06-24,1.51,2,52 +89427,The Brooklyn Waverly,116599,Sahr,Brooklyn,Clinton Hill,40.68613,-73.96536,Entire home/apt,650,5,0,,,3,365 +89621,"WONDERFUL, COMFORTABLE STUDIO",209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.68048,-73.94911,Entire home/apt,90,3,218,2019-06-28,2.26,4,324 +93313,MAISON DES SIRENES 2,25183,Nathalie,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93963,Entire home/apt,120,2,75,2019-06-23,0.76,2,237 +94035,"Modern, Safe, Clean, Bright Room in Astoria for 2",35375,Savannah,Queens,Astoria,40.75961,-73.91117,Private room,80,1,42,2019-07-06,1.21,2,365 +94209,LARGE 1BR (CONV 2BR) CROWN HEIGHTS,503800,Sadatu,Brooklyn,Crown Heights,40.67473,-73.94494,Entire home/apt,100,90,0,,,1,365 +94477,The Vernon On Greene,478395,Jason,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93185,Entire home/apt,175,2,370,2019-07-05,3.74,1,204 +94783,"Beautiful, Bright’s, Warm & Spacious 1.5BR Apt",473113,Keishera,Brooklyn,Crown Heights,40.67174,-73.95663,Entire home/apt,120,5,104,2019-06-21,1.04,1,272 +95747,Lovely 1BR in Tree-lined WBurg,509341,Tessa,Brooklyn,Williamsburg,40.71055,-73.95098,Entire home/apt,140,7,13,2016-07-18,0.13,1,0 +95883,Spacious Loft in Clinton Hill,509918,Eduardo,Brooklyn,Bedford-Stuyvesant,40.69465,-73.95458,Entire home/apt,200,5,4,2018-12-26,0.07,1,9 +96471,"The Brooklyn Waverly, One Bedroom",116599,Sahr,Brooklyn,Clinton Hill,40.68413,-73.96542,Private room,165,4,11,2019-06-07,0.11,3,365 +98330,LOVELY APARTMENT IN THE HEART OF NY,31374,Shon,Manhattan,Kips Bay,40.73877,-73.97707,Entire home/apt,125,4,1,2012-01-03,0.01,3,181 +98663,Groovy NYC Chelsea Pad,520279,Peter Michael,Manhattan,Chelsea,40.74893,-73.99544,Entire home/apt,130,30,19,2018-06-11,0.19,1,189 +99070,Comfortable Cozy Space in El Barrio,522065,Liz And Melissa,Manhattan,East Harlem,40.79406,-73.94102,Shared room,65,7,131,2019-05-26,1.31,2,0 +99085,Sunny Bklyn Jewel Fort Greene JULY - AUG 2019,522164,Wanda,Brooklyn,Fort Greene,40.68795,-73.97332,Entire home/apt,123,30,15,2019-05-01,0.15,1,189 +100002,"MANHATTAN Neat, Nice, Bright ROOM",523218,Giorgio,Manhattan,Washington Heights,40.85295,-73.93361,Private room,67,2,136,2019-06-17,1.37,1,296 +100184,Bienvenue,526653,,Queens,Queens Village,40.72413,-73.76133,Private room,50,1,43,2019-07-08,0.45,1,88 +100186,Large Brand New Park Slope 1BR,526805,Mi,Brooklyn,Gowanus,40.66918,-73.99187,Entire home/apt,130,7,98,2019-06-28,0.99,1,35 +101053,Colorful Artistic Williamsburg Apt,530032,Lee And Tara,Brooklyn,Williamsburg,40.71125,-73.95613,Private room,100,3,31,2019-03-01,0.31,1,0 +102995,UWS Brownstone Near Central Park,178043,Chas,Manhattan,Upper West Side,40.78558,-73.9696,Entire home/apt,212,21,45,2018-01-01,0.46,1,35 +103161,Artsy TopFloor Apt in PRIME BEDFORD Williamsburg,465278,Ade,Brooklyn,Williamsburg,40.71577,-73.96053,Entire home/apt,190,3,124,2019-06-26,1.76,1,359 +103311,2 BR w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73861,-73.95485,Private room,599,3,9,2018-05-19,0.09,28,60 +103806,BOHEMIAN EAST VILLAGE 2 BED HAVEN,251176,Jason,Manhattan,East Village,40.72577,-73.98745,Entire home/apt,249,5,166,2019-05-27,1.68,2,365 +105469,Oceanfront Apartment in Rockaway,547386,Michelle,Queens,Rockaway Beach,40.58615,-73.81245,Private room,70,27,13,2015-09-21,0.13,1,335 +105510,Private 1-Bedroom Apt in Townhouse,322716,Alex,Brooklyn,Crown Heights,40.67086,-73.94872,Entire home/apt,100,30,15,2019-01-05,0.16,5,282 +106363,Bright Room With A Great River View,551055,Alicia,Manhattan,Harlem,40.82773,-73.95231,Private room,60,3,380,2019-06-26,3.83,2,247 +106647,Tree lined block modern apartment,552679,Olivia,Brooklyn,Bedford-Stuyvesant,40.68505,-73.95684,Entire home/apt,135,2,86,2019-06-16,0.87,1,102 +107630,Sweet Historic Greenpoint Duplex,306739,Maya,Brooklyn,Greenpoint,40.72911,-73.95493,Entire home/apt,175,3,248,2019-06-20,2.53,3,274 +107895,Riverside Charm with Fire Place,3088389,Kai,Manhattan,Upper West Side,40.77944,-73.98567,Entire home/apt,120,5,49,2019-06-19,0.56,1,201 +110739,"Very Central, Nomad/Chelsea Loft Studio",568568,Driss,Manhattan,Midtown,40.74503,-73.98876,Entire home/apt,169,18,54,2019-07-03,0.57,1,98 +112100,Sunny 3BR Apt Ideal for Family ,572527,Marine,Brooklyn,Crown Heights,40.67539,-73.96093,Entire home/apt,165,7,3,2013-01-01,0.03,1,157 +112304,Cozy Private Room in West Harlem!,573316,Kelli,Manhattan,Harlem,40.8054,-73.95189,Private room,90,1,1,2016-01-02,0.02,1,0 +112359,UES Quiet & Spacious 1 bdrm for 4,571952,Olivia,Manhattan,Upper East Side,40.78491,-73.9508,Entire home/apt,225,2,56,2018-12-28,0.57,1,312 +112435,ALL ABOUT A VERY COMFORTABLE ROOM..,181376,Carol,Brooklyn,Fort Greene,40.69088,-73.97307,Private room,95,2,163,2019-05-24,1.66,2,331 +113265,Brooklyn- Crown Heights Garden Apt.,314582,Anthony,Brooklyn,Crown Heights,40.67555,-73.95057,Private room,55,2,247,2019-06-21,2.51,2,275 +113945,Cozy room in Time Square!,275582,Natalia,Manhattan,Hell's Kitchen,40.75835,-73.99193,Private room,85,10,116,2019-05-11,1.17,1,174 +114123,Large Park Slope Townhouse Duplex,579495,Susi,Brooklyn,South Slope,40.66527,-73.9886,Entire home/apt,199,14,27,2019-05-19,0.28,2,223 +114229,Lower East Side 2 Bedroom Apt,314941,Tony,Manhattan,Lower East Side,40.71895,-73.99434,Entire home/apt,211,1,52,2019-06-08,0.60,3,361 +114969,"Manhattan Studio, Perfect Location",582598,Andrey,Manhattan,Midtown,40.75579,-73.96699,Entire home/apt,145,6,39,2018-09-24,0.40,1,0 +115535,Sun-Drenched Hamilton Hts Jewel ,567187,Jane,Manhattan,Harlem,40.82399,-73.95328,Private room,65,14,35,2019-06-01,0.35,1,283 +115678,Your Stunning Vacation Apartment!,127772,Will,Manhattan,Harlem,40.81822,-73.94095,Entire home/apt,99,1,320,2019-06-23,3.23,1,220 +115748,1 BDRM Apt-Weekend Sublease,585166,Lilly,Queens,Astoria,40.76434,-73.92132,Entire home/apt,110,4,30,2019-06-16,0.32,1,363 +116940,ROOM WITH A KITCHENETTE,209460,Marylyn,Brooklyn,Crown Heights,40.67705,-73.94925,Entire home/apt,80,3,225,2019-06-24,2.27,4,315 +117425,"Conveniently Located, Sunny Brooklyn Heights!",593115,LuLu,Brooklyn,Brooklyn Heights,40.69263,-73.99438,Entire home/apt,150,30,95,2018-05-26,0.96,1,281 +118061,Style in Stuyvesant Heights,2248897,Roberta,Brooklyn,Bedford-Stuyvesant,40.68448,-73.92747,Entire home/apt,110,4,70,2019-06-28,0.75,1,283 +118430,Heart of Meatpacking & Chelsea,585458,Paul,Manhattan,Chelsea,40.74412,-74.00208,Private room,290,2,35,2019-01-03,0.36,1,20 +118680,Spacious East Village apt near it all,599354,Bobby,Manhattan,East Village,40.73067,-73.98702,Private room,87,2,0,,,1,0 +120362,Williamsburg apartment right by the subway,138069,Itamar,Brooklyn,Williamsburg,40.70665,-73.94061,Entire home/apt,190,4,50,2019-07-02,0.51,1,331 +121687,Spacious Brooklyn Loft - 2 Bedroom,262812,Vikram,Brooklyn,Williamsburg,40.72063,-73.95952,Entire home/apt,200,2,29,2019-06-23,0.31,1,36 +121861,"Park Slope Apt:, Spacious 2 bedroom",611716,Elizabeth,Brooklyn,Park Slope,40.67644,-73.98082,Entire home/apt,165,2,23,2016-05-02,0.23,2,7 +123784,NYC Studio for Rent in Townhouse,617990,Christopher,Manhattan,Harlem,40.80481,-73.94794,Entire home/apt,110,2,142,2019-06-16,1.44,2,301 +125053,⚡Quiet Gem w/roof deck on NY's Hottest Street⚡,622460,Justin,Manhattan,East Village,40.72533,-73.99143,Entire home/apt,395,2,70,2019-07-01,0.73,1,170 +125163,Authentic New York City Living ,622855,Rodney,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93038,Private room,99,2,38,2019-06-03,0.54,2,307 +125594,SUPER BIG AND COZY PRIVATE BEDROOM,308652,Antonín,Brooklyn,Kensington,40.64302,-73.97255,Private room,39,1,82,2019-05-19,0.94,2,365 +126443,☆Massive DUPLEX☆ 2BR & 2BTH East Village 9+ Guests,627217,Seith,Manhattan,East Village,40.72939,-73.98857,Entire home/apt,189,2,403,2019-07-07,4.10,3,201 +126816,Gorgeous Upper West Side Apartment,620288,Eric,Manhattan,Upper West Side,40.79918,-73.96607,Private room,85,1,3,2014-11-06,0.03,1,0 +127387,"Luxe, Spacious 2BR 2BA Nr Trains",23276,Katharine,Brooklyn,Gowanus,40.66862,-73.9926,Entire home/apt,260,30,3,2014-08-04,0.03,1,316 +128975,City Room - Street View Apt,256161,Wayne,Manhattan,Harlem,40.81333,-73.94453,Entire home/apt,122,1,116,2019-06-13,1.18,5,271 +131154,Cozy and Bright One Bedroom in BK,275563,Lauren,Brooklyn,Greenpoint,40.72473,-73.95199,Entire home/apt,165,2,175,2019-07-07,1.79,1,139 +132516,Forest Hills Apt minutes to midtown Manhattan,85330,Jean,Queens,Forest Hills,40.70925,-73.85262,Entire home/apt,97,3,28,2019-07-01,1.21,3,209 +132570,Spacious West Village 1 b/room King,651390,Catherine,Manhattan,West Village,40.73215,-74.00922,Entire home/apt,170,4,24,2017-12-26,0.25,1,0 +132695,Perfect Williamsburg Summer Haven,507186,Holly,Brooklyn,Williamsburg,40.71109,-73.94332,Entire home/apt,125,2,15,2016-06-06,0.15,1,0 +133025,Midtown cozy convenient,653405,Tracy,Manhattan,Murray Hill,40.7463,-73.97926,Private room,130,4,105,2019-06-06,1.07,1,193 +134934,Prime Williamsburg Apartment,652842,Giovanni,Brooklyn,Williamsburg,40.71823,-73.95849,Entire home/apt,225,10,22,2019-05-30,0.38,1,52 +135393,"Private, spacious room in Brooklyn",663764,Karen,Brooklyn,East Flatbush,40.651,-73.94886,Private room,50,2,263,2019-06-24,2.69,2,136 +135465,Garden apartment close to Manhattan,663879,Christopher,Brooklyn,Fort Greene,40.68626,-73.97598,Entire home/apt,170,3,86,2019-06-20,0.91,2,286 +135706,The Ground Studio - West Side,665013,Jeff,Manhattan,Chelsea,40.74488,-74.001,Entire home/apt,132,4,10,2017-01-01,0.10,1,0 +136493,Stunning arty 3200sf 3FLR+3BR townhome w/terrace,663384,Irena,Brooklyn,Park Slope,40.67632,-73.97616,Entire home/apt,250,7,18,2019-05-27,0.21,1,18 +138216,Sunny and Spacious Designer's Home,674970,Michael,Brooklyn,Greenpoint,40.72212,-73.94254,Entire home/apt,141,5,8,2018-07-08,0.21,1,9 +139624,"Spacious,Sunny, private one bedroom",680818,Jessica,Brooklyn,Crown Heights,40.67456,-73.95151,Entire home/apt,64,20,70,2019-01-31,0.73,1,3 +140133,Truly Amazing Oasis In The City,622866,Daniel,Brooklyn,Williamsburg,40.71363,-73.96019,Entire home/apt,249,3,150,2019-07-05,1.55,1,277 +140425,Holiday Time in NY - Oh My!!,683975,Ivy,Brooklyn,Crown Heights,40.6755,-73.95878,Private room,79,2,115,2017-05-25,1.18,1,0 +140973,"East Village, King-Sized, Charmer",686147,Dave,Manhattan,East Village,40.72274,-73.97581,Entire home/apt,185,2,69,2019-05-26,0.71,1,233 +141154,Affordable Furnished Apartment,686768,Mark,Brooklyn,Boerum Hill,40.6858,-73.9828,Entire home/apt,120,3,232,2019-06-22,2.41,1,221 +141335,Architect's Brownstone,687361,Orna,Brooklyn,Park Slope,40.67535,-73.97654,Entire home/apt,495,1,35,2018-01-13,0.41,1,355 +141890,LUXURY SOHO 2 Bedroom Apt ,689661,Allison,Manhattan,Nolita,40.72255,-73.99346,Entire home/apt,375,3,18,2013-10-01,0.21,1,0 +141984,Charming Nolita Apartment!!,630453,Vanessa,Manhattan,Nolita,40.72094,-73.99706,Entire home/apt,175,3,68,2019-06-10,0.69,1,277 +142069,"EAST VILLAGE STUDIO, sunny & quiet",277747,Josh,Manhattan,East Village,40.72485,-73.97813,Entire home/apt,150,4,22,2014-11-10,0.23,1,0 +144087,LUXURY OF THE HORIZON,616825,Rinaldo,Manhattan,Harlem,40.80473,-73.9532,Entire home/apt,259,8,17,2019-05-18,0.17,1,343 +144148,1 Bdrm in 4 Bdrm dupelx/roof deck,299755,Jonathan,Manhattan,East Village,40.72217,-73.98419,Private room,96,1,34,2016-01-05,0.58,1,0 +145064,The Heart of Prime Williamsburg,404424,Oliver,Brooklyn,Williamsburg,40.71943,-73.9565,Entire home/apt,145,7,8,2014-06-06,0.08,1,0 +145188,Parisian apartment in Chelsea,703156,Kristin,Manhattan,Chelsea,40.74249,-74.00329,Entire home/apt,200,4,0,,,1,0 +145994,Cozy 2 Bedroom with Private Garden,706418,Carolyn,Manhattan,Upper West Side,40.79264,-73.97294,Entire home/apt,95,5,2,2018-07-06,0.08,1,0 +146754,Three-bedroom house in a quiet neighborhood,709434,Meighan,Brooklyn,Windsor Terrace,40.65749,-73.97675,Entire home/apt,250,4,52,2019-04-27,0.72,1,188 +147586,Beautiful Duplex w/Private Garden,709334,Julie,Manhattan,Harlem,40.80474,-73.94688,Entire home/apt,295,2,74,2019-06-16,0.76,2,264 +148201,NYC - Sunny Greenwich Village 1br,715807,John,Manhattan,Greenwich Village,40.72831,-74.00177,Entire home/apt,175,3,18,2013-05-31,0.19,1,0 +148259,Garage Designer Loft,716064,Mihalis,Brooklyn,Williamsburg,40.71541,-73.94144,Entire home/apt,451,2,72,2019-05-11,0.86,1,331 +148825,Best City Area Columbia U Upper West Side C Park,718349,B.,Manhattan,Upper West Side,40.79765,-73.96245,Entire home/apt,165,2,191,2019-06-29,2.18,1,236 +149287,Your own apartment off Park Avenue,720320,Nancy,Manhattan,Upper East Side,40.78508,-73.95332,Entire home/apt,250,4,0,,,1,0 +149777,Artsy 1 bedroom Apt. 20 min to 42nd Grand Central!,716306,"Dee, Dre & Mama Shelley",Bronx,Woodlawn,40.89747,-73.8639,Entire home/apt,77,1,197,2019-06-23,2.49,1,309 +150804,Lower East Side 2 Bed Apt.,726333,Peter,Manhattan,Lower East Side,40.72008,-73.98404,Entire home/apt,250,4,19,2019-07-06,0.20,1,0 +151199,Astoria-Private Home NYC-,722320,Gladys & Bob,Queens,Astoria,40.75725,-73.91098,Entire home/apt,129,1,414,2019-07-03,4.34,1,245 +151478,"BIG, COMFY , PRIV. ROOM, BIG APT, YARD, GREAT LOC.",216191,M,Brooklyn,Williamsburg,40.7102,-73.94495,Private room,98,2,8,2018-12-11,0.09,4,0 +152071,Park Slope Apartment,731855,Wendy,Brooklyn,Park Slope,40.67359,-73.97904,Entire home/apt,150,2,0,,,1,8 +152078,CHARMING PRIVATE BEDROOM EAST VILLAGE,731904,Ewelina,Manhattan,East Village,40.72674,-73.9782,Private room,95,7,25,2019-02-12,0.30,1,359 +152259,City Room - Semi Private Bedroom,256161,Wayne,Manhattan,Harlem,40.81156,-73.94571,Private room,55,3,119,2019-05-28,1.22,5,333 +152263,Cozy apartment in a brownstone,732535,William,Manhattan,Harlem,40.80497,-73.95016,Entire home/apt,300,2,203,2019-07-06,2.14,3,258 +152520,Female Only Clean15min to Manhattan,733894,Lucy,Queens,Sunnyside,40.7385,-73.91806,Private room,42,40,53,2018-11-16,0.55,3,236 +153405,Greenpoint Spacious Loft,737585,Pat,Brooklyn,Greenpoint,40.72937,-73.95671,Entire home/apt,125,2,104,2019-06-16,1.09,1,22 +153780,Private E. Village Townhouse Stay,739499,Donna,Manhattan,East Village,40.72587,-73.98438,Private room,175,3,175,2019-06-28,1.80,1,236 +154934,Harlem/Hamilton Heights Cozy Room,745069,Kimberly,Manhattan,Harlem,40.82426,-73.9463,Private room,75,3,38,2018-05-08,0.42,3,365 +155296,Incredible Prime Williamsburg Loft!,656841,Meredith,Brooklyn,Williamsburg,40.71624,-73.96272,Entire home/apt,255,45,39,2019-05-02,0.50,1,89 +157673,Large Loft Style Studio Space,757166,Tokunbo,Brooklyn,Bedford-Stuyvesant,40.68101,-73.94081,Entire home/apt,72,31,88,2019-06-16,0.91,1,164 +158061,Hancock Town House!-Stuyvesant Mews,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68669,-73.91989,Private room,165,1,27,2017-10-08,0.28,4,311 +158176,Entire Apt in Heart of Williamsburg,573065,Laura,Brooklyn,Williamsburg,40.71534,-73.95914,Entire home/apt,165,5,117,2019-06-29,1.28,1,23 +158290,Clinton Hill + Free Coffee = #smile,759583,Pepe,Brooklyn,Clinton Hill,40.68288,-73.96024,Private room,75,3,43,2019-05-20,0.44,2,365 +158913,"Nice, cozy, neat apt Greenpoint,BK",762563,Lennny & Megan,Brooklyn,Greenpoint,40.72489,-73.95494,Entire home/apt,130,5,4,2015-03-13,0.05,1,0 +158955,PRIVATE and SUNNY Williamsburg Apt!,465589,Amia,Brooklyn,Williamsburg,40.70867,-73.94284,Entire home/apt,139,2,385,2019-06-29,4.00,1,222 +159749,Purple Room for 2/3 in brownstone $1450 per month,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.67963,-73.93908,Private room,88,1,64,2019-07-01,0.68,3,238 +159815,Red Room for two in Brownstone for $1355/mo,54275,JT And Tiziana,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93908,Private room,80,1,39,2019-06-24,0.41,3,218 +159913,"Chelsea living, 2BR best location",759883,Kaye,Manhattan,Chelsea,40.74346,-73.99882,Private room,150,2,37,2019-07-03,1.79,1,0 +160609,LOCATION LOCATION LOCATION UWS 60's,769247,Ligia,Manhattan,Upper West Side,40.77724,-73.98109,Entire home/apt,200,3,10,2019-01-01,0.12,1,0 +160994,In the heart of East Village,770831,James,Manhattan,East Village,40.72972,-73.97995,Entire home/apt,200,2,103,2019-06-24,1.08,1,235 +161366,Sunny 15min to Manhattan LADY only,733894,Lucy,Queens,Sunnyside,40.74102,-73.91681,Private room,42,40,41,2019-06-01,0.43,3,246 +161394,Surfer room 15mins to downtown NYC!,772300,Alain,Brooklyn,Williamsburg,40.71309,-73.94128,Private room,90,6,3,2014-08-31,0.03,1,0 +161996,Manhattan Penthouse-Max.12 guests,1856604,"Robert ""Bob""",Manhattan,Harlem,40.83096,-73.94633,Entire home/apt,295,3,227,2019-06-26,2.33,1,247 +162493,Prime Williamsburg 3 BR with Deck,776490,Andres,Brooklyn,Williamsburg,40.71323,-73.95745,Entire home/apt,450,5,37,2018-12-27,0.79,1,15 +162508,Beautiful Brooklyn Oasis ,776645,Placid,Brooklyn,Crown Heights,40.67212,-73.9506,Entire home/apt,130,2,29,2019-06-28,0.35,1,119 +163627,Blue Room in Awesome Artist's Apartment!,242506,Jsun,Brooklyn,Williamsburg,40.71023,-73.96665,Private room,89,3,205,2017-12-31,2.31,3,0 +163809,Cool & Spacious Harlem Artist Flat,781647,Jorin,Manhattan,Harlem,40.80523,-73.95139,Entire home/apt,198,5,42,2019-06-03,0.44,2,234 +163814,☆ STUDIO East Village ☆ Own bath! ☆ Sleeps 4 ☆,627217,Seith,Manhattan,East Village,40.72636,-73.98917,Entire home/apt,99,2,280,2019-07-05,2.92,3,257 +163836,Greenpoint Loft / Le Chez Andrea,32169,Andrea,Brooklyn,Greenpoint,40.72185,-73.93956,Private room,46,4,86,2019-06-08,0.89,3,350 +164989,"*SoHo: Clean, Safe, Private, Peaceful Bedroom (A)*",69439,Jade,Manhattan,SoHo,40.72351,-73.99683,Private room,140,2,54,2019-06-16,0.56,1,221 +165080,Amazing Brownstone in Best Brooklyn,787273,Smadar,Brooklyn,Carroll Gardens,40.6809,-73.99233,Entire home/apt,500,7,7,2018-08-29,0.07,1,0 +165461,Couldn't Be Closer To Columbia Uni2,867225,Rahul,Manhattan,Morningside Heights,40.80525,-73.95916,Private room,75,5,57,2019-01-01,0.59,2,201 +165824,Lady only Curtain-divided room,733894,Lucy,Queens,Sunnyside,40.74,-73.91901,Private room,33,44,31,2019-05-01,0.32,3,161 +166006,Nice Manhattan Apt Near Central Park and Subway,791287,Giancarlo,Manhattan,Upper West Side,40.80006,-73.96049,Entire home/apt,250,31,188,2018-08-23,1.94,1,259 +166172,LG Private Room/Family Friendly,792159,Wanda,Brooklyn,Bushwick,40.70283,-73.92131,Private room,60,3,480,2019-07-07,6.70,1,0 +166541,Spacious Quiet rm - 20mins to Midtown,793620,Yvette,Manhattan,Washington Heights,40.84468,-73.94303,Private room,75,2,34,2019-06-15,0.35,1,222 +166983,"3 BR, Beautiful Brooklyn Duplex",795640,Jilly,Brooklyn,Carroll Gardens,40.68252,-73.99619,Entire home/apt,350,5,6,2015-08-08,0.06,1,0 +167013,Spacious modern studio apartment in Manhattan,306605,Daniel,Manhattan,Chelsea,40.74342,-73.99483,Entire home/apt,205,9,3,2018-05-13,0.04,2,76 +167017,Gorgeous Duplex + Garden,795889,Adam,Brooklyn,Park Slope,40.67853,-73.98089,Entire home/apt,219,5,2,2014-08-31,0.03,1,0 +167222,CBG# 4Tiny room w/ huge window/AC,22486,Lisel,Brooklyn,Park Slope,40.6788,-73.97643,Private room,60,1,20,2018-08-24,0.21,6,258 +167482,Charming upper west side apartment,789257,Barbara,Manhattan,Upper West Side,40.77886,-73.98042,Entire home/apt,185,2,129,2019-06-07,1.33,1,14 +168084,Light-filled East Village Delight,800982,Chris,Manhattan,East Village,40.72578,-73.97879,Entire home/apt,190,3,147,2019-06-30,1.60,1,27 +168123,"Sunny, quiet, legal homelike suite-Pk Slope South",720558,Sara,Brooklyn,South Slope,40.66085,-73.98537,Entire home/apt,105,28,101,2019-07-01,1.06,1,167 +168546,Spacious Duplex in Brownstone!,803086,Benton,Manhattan,East Harlem,40.80113,-73.94503,Entire home/apt,250,2,11,2016-01-02,0.12,2,68 +168810,Lovely Vintage Haven—Heart of UWS,747698,Linda & Chris,Manhattan,Upper West Side,40.78569,-73.97581,Entire home/apt,175,65,11,2013-10-15,0.12,1,358 +169002,Modern Space in Charming Pre-war,805344,Alec,Manhattan,Harlem,40.82411,-73.94934,Private room,65,2,41,2019-06-16,0.43,2,59 +169152,Warehouse Loft with Garden view,806112,Julia,Brooklyn,Bedford-Stuyvesant,40.68131,-73.95332,Entire home/apt,75,2,87,2017-04-18,1.09,1,0 +169306, Affordable & Cozy ,806214,Vanessa,Bronx,University Heights,40.85811,-73.90675,Private room,37,4,117,2019-05-21,1.21,1,232 +169464,Creative Vintage Loft in S. Williamsburg,806774,Ali & SweetPea,Brooklyn,Williamsburg,40.70667,-73.96524,Entire home/apt,85,2,86,2019-05-16,0.89,2,15 +169483,Very close to Downtown Awesome Private Apartment,807642,Jeffrey,Brooklyn,Gravesend,40.60452,-73.97103,Entire home/apt,106,7,0,,,2,0 +170420,The Happy home!,812814,Lena,Manhattan,East Harlem,40.7932,-73.94007,Entire home/apt,79,2,15,2016-02-15,0.16,1,0 +170761,"Fort Greene, Brooklyn: Front Bedroom",67778,Doug,Brooklyn,Fort Greene,40.68768,-73.97611,Private room,85,2,35,2019-07-02,0.55,2,161 +171776,Gorgeous 1 bdrm in huge duplex!,803086,Benton,Manhattan,Harlem,40.80224,-73.94558,Private room,170,2,17,2015-10-01,0.18,2,88 +172700,"Sunny, cozy room in Lower East Side",302772,Cheryl,Manhattan,Lower East Side,40.71473,-73.98842,Private room,115,3,3,2016-02-15,0.04,2,337 +172870,Large Quiet Bedroom Near Columbia U,781647,Jorin,Manhattan,Harlem,40.80518,-73.95359,Private room,89,5,43,2018-01-03,0.47,2,247 +173072,Cozy Pre-War Harlem Apartment,826192,Lewis,Manhattan,Harlem,40.80827,-73.95329,Shared room,49,3,168,2019-07-06,4.60,1,248 +173151,spacious studio,826459,Jane,Brooklyn,Greenpoint,40.72901,-73.95812,Private room,91,3,241,2019-06-24,2.49,1,287 +173742,"Elegant 2-BR duplex, Union Square",829652,Donna,Manhattan,Gramercy,40.73476,-73.98452,Entire home/apt,400,2,105,2019-06-23,1.13,1,304 +174527,Cozy private family home in Bushwick,833926,Kris,Brooklyn,Bushwick,40.69055,-73.92357,Entire home/apt,150,2,11,2018-10-28,0.46,1,0 +174966,Luxury 2Bed/2.5Bath Central Park View,836168,Henry,Manhattan,Upper West Side,40.7735,-73.98697,Entire home/apt,2000,30,30,2018-05-05,0.33,11,0 +176135,Cosy Sunny 1brm in Prospect Heights,842125,Jennifer,Brooklyn,Crown Heights,40.67505,-73.95969,Entire home/apt,97,3,31,2018-10-23,0.32,1,193 +176653,East Village bedroom w rooftop,844862,Cj,Manhattan,East Village,40.72974,-73.98201,Private room,100,4,49,2019-05-07,0.51,2,43 +176962,Williamsburg Home Away From Home!,846309,Dani,Brooklyn,Williamsburg,40.70925,-73.95425,Entire home/apt,179,4,23,2019-04-13,0.24,1,25 +177421,Brand New Beautiful Duplex Apartment with Garden,848748,Sarah,Brooklyn,Greenpoint,40.72315,-73.95226,Entire home/apt,500,2,20,2019-06-24,0.21,2,127 +177495,"PRIME, Luxury, Spacious 2 Bedroom Apt in Chelsea",848960,Amit,Manhattan,Chelsea,40.73939,-73.99612,Entire home/apt,429,10,18,2019-06-24,0.90,1,0 +177606,SPACIOUS ALCOVE STUDIO/ JUNIOR ONE,849492,Kathrine,Manhattan,Kips Bay,40.74112,-73.97686,Entire home/apt,189,6,90,2019-06-23,0.95,1,303 +179670,High-end doorman bldg in the LES,21475,Milan,Manhattan,Lower East Side,40.72019,-73.98217,Private room,120,2,99,2019-06-27,1.04,1,345 +179741,Spring & Mulberry 2 Bedroom Apartment,314941,Tony,Manhattan,Nolita,40.72133,-73.99666,Entire home/apt,300,1,6,2019-06-28,0.06,3,115 +180507,Ultra Modern NYC Garden Apartment,864735,Jason,Queens,Astoria,40.75744,-73.92163,Entire home/apt,107,30,21,2018-12-01,0.22,8,200 +180792,Modern Garden Apartment in NYC,864735,Jason,Queens,Astoria,40.75695,-73.9202,Entire home/apt,95,30,24,2019-04-04,0.26,8,271 +181972,Gorgeous Entire Manhattan Townhouse,872121,Rosario,Manhattan,Harlem,40.8296,-73.94651,Entire home/apt,199,2,111,2019-06-02,1.17,1,12 +182069,Cozy studio Apartment in Upper East,39260,Mat,Manhattan,East Harlem,40.79056,-73.9468,Entire home/apt,120,2,86,2019-06-20,0.91,1,268 +182095,Historic classic central cozy Village clean NYU,872805,Mike,Manhattan,West Village,40.73631,-73.99977,Entire home/apt,199,15,66,2019-04-29,0.69,2,89 +182177,A PRIVATE FLAT / APARTMENT- $SPECIAL$,873273,Christian & Carla,Bronx,Allerton,40.86466,-73.85709,Entire home/apt,125,2,271,2019-06-20,2.84,2,347 +182649,Williamsburg bedroom by Bedford Ave,876054,Obed,Brooklyn,Williamsburg,40.71312,-73.96199,Private room,70,2,227,2019-06-18,2.40,1,37 +185266,Clean and bright with a comfortable atmosphere,889106,Lisa,Brooklyn,Williamsburg,40.71297,-73.94336,Private room,75,4,80,2019-07-06,1.55,1,0 +187488,WEST VILLAGE LRG CLEAN SUNNY PRIVATE BDRM,871727,Village,Manhattan,West Village,40.73712,-74.00166,Private room,100,30,5,2018-12-03,0.07,1,359 +187566,Historic Brooklyn Studio Apartment,279078,Andrew & Markus,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95097,Entire home/apt,99,2,187,2019-06-10,1.97,2,287 +187986,Comfort at Crossroads of Downtown,904833,Daniel,Manhattan,Chelsea,40.73862,-73.99758,Entire home/apt,250,1,2,2015-08-28,0.02,1,0 +188146,"""The Oasis"" on Bedford Williamsburg",906200,Mariana,Brooklyn,Williamsburg,40.7158,-73.95803,Entire home/apt,350,6,1,2016-01-01,0.02,1,233 +188661,"Large, sunny garden apartment.",909146,Mj,Brooklyn,Prospect Heights,40.68262,-73.97299,Entire home/apt,170,3,67,2018-10-20,0.70,1,129 +188674,UNION SQUARE/ E. VILL 1BR BEAUTIFUL,909234,Leslie,Manhattan,East Village,40.73217,-73.98801,Entire home/apt,165,1,63,2018-01-12,0.68,1,0 +189135,Hell's Kitchen Funky 80's Hideaway!,179020,Michael,Manhattan,Hell's Kitchen,40.76311,-73.99388,Private room,99,1,89,2019-07-01,1.00,1,353 +189181,Room in Chic Modern High Line Luxury- New!,912541,David,Manhattan,Chelsea,40.74695,-74.00454,Private room,255,4,1,2014-04-20,0.02,1,365 +189732,Family & Friends in New York City,489400,O'Dell,Brooklyn,East New York,40.67497,-73.87305,Entire home/apt,169,3,177,2019-06-29,1.86,1,297 +189787,Spacious & Comfy BK Brownstone,915640,Sundiata,Brooklyn,Crown Heights,40.66788,-73.94813,Entire home/apt,99,4,90,2019-06-30,0.94,1,56 +190267,Large Luxury Upper East Side Studio,918866,Marina,Manhattan,Upper East Side,40.76684,-73.95944,Entire home/apt,169,7,39,2019-07-07,0.41,1,44 +190542,Chateau Style Brooklyn Loft for Singles or Couples,920542,Farrah,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95445,Entire home/apt,160,3,42,2019-05-18,0.44,1,355 +190968,Lovely Brooklyn Brownstone 1BR!,922922,Karen,Brooklyn,Prospect Heights,40.67946,-73.96501,Entire home/apt,215,3,33,2019-05-08,0.35,1,156 +190974,Beautiful Grdn. Apt. in Park Slope,874471,Alan,Brooklyn,Park Slope,40.66944,-73.98083,Entire home/apt,130,3,179,2019-05-29,2.02,1,273 +191075,Sun-drenched East Village Penthouse,923915,Matthew,Manhattan,East Village,40.72566,-73.97748,Private room,110,3,81,2019-03-28,0.85,2,274 +193105,Columbus Circle Luxury Bldg - Private Room&Bath,936114,Marcela,Manhattan,Hell's Kitchen,40.7709,-73.99181,Private room,150,28,43,2019-06-29,0.45,2,258 +193333,Bright Private Bedroom in Williamsburg (Bedford L),302936,Melody,Brooklyn,Williamsburg,40.71943,-73.95958,Private room,65,30,52,2018-10-31,0.54,1,276 +193393,"Spacious, Kid-Friendly, and 15-20 Mins. to Midtown",938056,Mike,Queens,Sunnyside,40.74249,-73.92466,Private room,75,2,160,2019-06-25,1.68,1,65 +193853,Quiet Chelsea Studio w/Charm,48599,Anastasia,Manhattan,Chelsea,40.74033,-74.00024,Entire home/apt,149,6,23,2018-05-21,0.27,2,0 +194154,Large Room Overlooking Central Park,936830,Elina,Manhattan,Upper West Side,40.7969,-73.96128,Private room,89,6,35,2017-06-18,0.37,1,180 +195123,"Cheerful, comfortable room",940724,Susan,Manhattan,Washington Heights,40.83403,-73.94553,Private room,50,1,225,2019-06-12,2.35,1,343 +195233,Hospitality on Propsect Pk-12 yrs Hosting Legally!,949221,Dennis,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95641,Private room,43,1,401,2019-07-04,6.62,2,43 +195240,"Prospect Pk*NYC in 5 stops* Cozy,Clean & Legal!",949221,Dennis,Brooklyn,Prospect-Lefferts Gardens,40.65589,-73.95539,Private room,42,1,72,2019-06-17,0.84,2,96 +195578,Loft Style Apt in Williamsburg,304493,Erika,Brooklyn,Williamsburg,40.70275,-73.94501,Private room,85,1,46,2018-12-30,0.97,1,59 +195971,2 Beds over Bed-Stuy,953279,Tim,Brooklyn,Bedford-Stuyvesant,40.68897,-73.93569,Entire home/apt,139,3,83,2019-06-23,1.19,1,255 +195989,"Sunny, Large, Park Slope Bedroom",611716,Elizabeth,Brooklyn,Park Slope,40.67617,-73.98136,Private room,105,1,211,2019-06-15,2.21,2,252 +196010,Huge Bklyn Loft w Private Roofdeck,953565,Vanessa,Brooklyn,Park Slope,40.67595,-73.98053,Entire home/apt,265,5,15,2015-06-14,0.16,1,0 +197155,Quiet Jr Alcove Near Times Square!,960836,Vlad,Manhattan,Hell's Kitchen,40.76415,-73.99067,Entire home/apt,149,1,122,2019-06-23,1.29,1,20 +197753,Large room in elevator drman bldg,964482,Colin,Manhattan,Harlem,40.83127,-73.94718,Private room,68,2,295,2019-06-12,3.90,2,188 +197942,"Comfy, Cozy, Brooklyn close to Manhattan",289135,Toni,Brooklyn,Bedford-Stuyvesant,40.68497,-73.95592,Entire home/apt,99,3,207,2019-07-07,2.18,1,304 +199195,Modern Bedroom in Hamilton Heights,971075,Jabari,Manhattan,Harlem,40.82922,-73.94174,Private room,75,3,50,2019-03-30,0.65,2,38 +199312,Sunny Space in Williamsburg,973438,Susanne,Brooklyn,Williamsburg,40.71137,-73.94362,Private room,100,2,273,2019-06-24,2.85,1,254 +200645,Best Manhattan Studio Deal! ,933378,Edo,Manhattan,Upper East Side,40.76739,-73.9557,Shared room,90,1,0,,,1,0 +200955,STYLISH EAST VILLAGE FLAT,568325,Simone,Manhattan,East Village,40.73089,-73.98195,Entire home/apt,160,30,25,2018-04-30,0.26,1,46 +201992,Serene Park Slope Garden Apartment,988350,Andrea,Brooklyn,Park Slope,40.6755,-73.97859,Entire home/apt,190,4,105,2019-05-11,1.62,1,328 +202273,Cozy and spacious - rare for NYC!,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94934,Private room,67,4,72,2016-12-26,0.76,3,0 +203901,Beautiful UES apartment,1000477,Elizabeth,Manhattan,Upper East Side,40.7694,-73.9572,Entire home/apt,190,1,8,2016-09-18,0.08,1,0 +204065,St. James Pl Garden Studio 1block to PRATT &Gtrain,51038,Erica,Brooklyn,Clinton Hill,40.68634,-73.96161,Entire home/apt,248,2,58,2019-06-04,0.61,6,199 +204833,"Great, spacious apt in Williamsburg",903686,Melanie,Brooklyn,Williamsburg,40.7093,-73.9497,Private room,100,6,8,2015-09-17,0.09,1,249 +204959,Comfortable. Spacious. Private Room.,464506,Ange,Manhattan,Chinatown,40.713,-73.99752,Private room,95,3,172,2019-07-02,1.84,2,64 +205043,Modern Condo in Midtown,1007558,Welcome To My Place,Manhattan,Theater District,40.75895,-73.9883,Private room,150,1,330,2019-06-20,7.14,1,111 +205485,Ideal Brooklyn Brownstone Apartment,1010242,Zora & Chris,Brooklyn,Bedford-Stuyvesant,40.68186,-73.94113,Entire home/apt,145,3,123,2019-06-11,1.29,1,287 +205735,"A Cozy Oasis in Bushwick, NY",1011426,Danielle,Brooklyn,Bushwick,40.68364,-73.91076,Private room,41,2,55,2019-04-30,0.59,1,286 +205867,Private Entrance - Private Parking,1012691,Tiffaney,Brooklyn,Williamsburg,40.71893,-73.9428,Entire home/apt,120,4,87,2019-07-03,0.99,1,263 +206071,Yankee Stadium Oasis 2 stops to Manhattan!,12221,Lori,Bronx,Concourse Village,40.82802,-73.92039,Private room,50,3,258,2019-06-25,2.70,2,276 +206316,"Sunny, Spacious Studio in Ft.Greene",1014639,Brett,Brooklyn,Fort Greene,40.68765,-73.97073,Entire home/apt,157,2,4,2018-08-27,0.18,1,0 +206772,Williamsburg Exposed Brick Loft,1017473,Evan,Brooklyn,Williamsburg,40.71413,-73.96596,Entire home/apt,195,14,31,2019-05-26,0.33,1,263 +206957,Bright Modern Charming Housebarge,1018472,Angus,Brooklyn,Sheepshead Bay,40.58422,-73.94079,Entire home/apt,70,4,128,2016-11-15,1.34,2,90 +208148,Central Bedford Avenue Apartment,1024355,Martina,Brooklyn,Williamsburg,40.71973,-73.95582,Entire home/apt,185,3,14,2015-08-31,0.15,1,0 +208889,Welcome to Brooklyn! Bed-Stuy,1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93323,Entire home/apt,145,3,30,2019-06-24,0.32,3,11 +209310,Sunnyside NYC/ AC room/ city views/ near Midtown,1031148,Iulia,Queens,Sunnyside,40.73826,-73.92458,Private room,50,28,258,2019-05-28,2.90,1,287 +211078,Greenpoint Waterfront Loft,306739,Maya,Brooklyn,Greenpoint,40.73049,-73.96115,Entire home/apt,185,3,228,2018-04-25,2.39,3,1 +211974,East Village House -- Unique!,272730,Goldi,Manhattan,East Village,40.72956,-73.97903,Entire home/apt,250,1,60,2019-07-01,0.65,1,0 +212109,2-bedroom share in heart of Greenwich Village!,666271,Susan,Manhattan,West Village,40.73854,-74.00821,Private room,80,90,9,2019-06-30,0.20,1,338 +212178,1 Bedroom Pre War apt,1094178,Jeremy,Manhattan,Theater District,40.75877,-73.98863,Entire home/apt,230,2,179,2019-06-19,1.88,1,44 +212544,Quiet One Bedroom in Park Slope,1096084,Daniel,Brooklyn,Gowanus,40.67688,-73.9859,Entire home/apt,100,7,9,2016-06-23,0.10,1,0 +213272,CreaTive Live-In Artspace/Birdsnest,293130,Meli,Brooklyn,Bushwick,40.70051,-73.92204,Private room,40,1,1,2019-04-21,0.37,1,5 +213330,RARE Penthouse Oasis featured on DesignSponge,800223,Nader,Manhattan,Lower East Side,40.71712,-73.98898,Private room,200,30,25,2018-08-29,0.49,1,0 +214917,New Clean Spacious Bed & Breakfast,1109658,Carmel,Staten Island,Emerson Hill,40.60742,-74.14388,Private room,80,2,2,2018-02-08,0.05,1,158 +215560,"Sunny, calm room in Victorian home",1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95741,Private room,79,3,152,2019-06-25,1.60,3,192 +215784,Modern Unique Studio in NYC,864735,Jason,Queens,Long Island City,40.75627,-73.9211,Entire home/apt,95,30,24,2019-03-31,0.25,8,358 +215907,"2 Bed, 2 Bath Apartment on Central Park West",1114587,Keenan & Emily,Manhattan,Upper West Side,40.79816,-73.9619,Entire home/apt,300,2,45,2019-04-22,0.47,3,31 +217580,"Luxury Furnished 1 bedro, Bay Ridge",1121193,Samuel,Brooklyn,Fort Hamilton,40.61927,-74.0307,Entire home/apt,100,30,7,2018-11-14,0.08,1,241 +218358,Your Haven in the Upper West Side,1129218,Orlando,Manhattan,Harlem,40.8078,-73.95208,Private room,80,7,19,2019-06-03,0.35,1,285 +219066,"Wonderful Studio In Brooklyn, NY!!!",447754,Yana,Brooklyn,Bensonhurst,40.61922,-73.99399,Entire home/apt,110,1,24,2019-01-19,0.26,1,183 +219482,A Cozy Brooklyn Hideaway,759583,Pepe,Brooklyn,Clinton Hill,40.68275,-73.96148,Entire home/apt,172,4,8,2017-10-14,0.09,2,189 +219793,✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿,1138692,Keera (Jena),Manhattan,Lower East Side,40.71813,-73.98416,Entire home/apt,199,1,29,2015-06-03,0.31,2,162 +219818,✿✿✿ COUNTRY COTTAGE IN THE CITY✿✿✿,1138692,Keera (Jena),Manhattan,Lower East Side,40.71892,-73.98401,Entire home/apt,199,1,14,2015-07-20,0.15,2,158 +219922,"Lovely Bdr in Harlem, Manhattan",1139574,Carmel,Manhattan,Harlem,40.816,-73.95545,Private room,100,1,33,2019-05-25,0.38,1,84 +220351,THE BEST DEAL ON THE HUDSON RIVER!!,921500,Boubacar And Pattee,Manhattan,Harlem,40.82748,-73.95153,Private room,55,4,99,2019-02-28,1.04,1,260 +220563,Lovely HUGE Master Bed + Study,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95088,Private room,75,3,59,2017-01-05,0.62,3,0 +220946,Newly Reno’d Chic Quiet Exec 1BR,1144415,Lisa,Manhattan,East Village,40.72229,-73.97901,Entire home/apt,146,3,142,2019-06-16,1.50,1,166 +221043,1 Bedroom in prime Flatiron,846050,Eziah,Manhattan,NoHo,40.72956,-73.99287,Private room,250,2,0,,,1,0 +221097,Large Artist Floorthru- Greenpoint,1146744,Deborah,Brooklyn,Greenpoint,40.72595,-73.95298,Entire home/apt,116,29,22,2019-03-15,0.23,1,335 +221618,Gorgeous PermaGO Private Room in FiDi - 1/2,4887492,Gershwyn,Manhattan,Tribeca,40.71193,-74.00817,Private room,150,3,82,2019-05-21,0.87,2,90 +222054,CBG Helps Haiti Rm #3,22486,Lisel,Brooklyn,Park Slope,40.68012,-73.97847,Private room,120,2,23,2018-09-15,0.24,6,342 +222304,BEST DEAL IN CHELSEA 1 bdrm NYC,1153993,Anton,Manhattan,Chelsea,40.74233,-73.99865,Entire home/apt,199,4,32,2019-05-08,0.34,1,28 +223930,Lovely Apartment,1164642,Rosalynn,Brooklyn,Prospect Heights,40.67424,-73.96665,Entire home/apt,150,5,24,2019-06-23,0.25,1,363 +224004,Artsy Loft-like Harlem Apartment,1165231,Deirdre,Manhattan,Harlem,40.80486,-73.95298,Private room,69,1,59,2018-10-26,0.63,2,86 +224006,Harlem/Manhattan Classic Apartment,1165231,Deirdre,Manhattan,Harlem,40.80307,-73.95048,Private room,300,55,6,2015-01-02,0.08,2,83 +224510,"BEAUTIFUL APARTMENT, GREAT LOCATION",991380,Stefania,Brooklyn,Boerum Hill,40.68653,-73.98562,Entire home/apt,230,4,18,2018-07-05,0.21,1,0 +225297,Quiet sunny studio Midtown,1173599,Gaya,Manhattan,Midtown,40.74267,-73.98569,Entire home/apt,125,4,3,2018-12-26,0.03,1,0 +225306,Charming room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.68749,-73.95494,Private room,79,3,115,2019-07-05,1.21,3,264 +225887,Brooklyn B & B close to Manhattan,663879,Christopher,Brooklyn,Fort Greene,40.68645,-73.97538,Private room,130,3,154,2019-06-19,1.63,2,305 +225926,The Notorious B.N.B. { The Erhart },1177497,Jessica,Brooklyn,Clinton Hill,40.68999,-73.96711,Private room,239,1,164,2019-07-01,1.73,11,356 +225976,Sunny cozy multileveled apartment!,1177947,Marina,Staten Island,Shore Acres,40.61077,-74.06824,Entire home/apt,75,6,76,2019-06-13,0.80,1,278 +226021,Sunny 2 bedroom Williamsburg Duplex w/ 3 beds,815977,Ryan,Brooklyn,Williamsburg,40.71126,-73.94576,Entire home/apt,220,3,116,2019-06-30,1.23,2,135 +227715,ROOM WITH KITCHENETTE #2,209460,Marylyn,Brooklyn,Bedford-Stuyvesant,40.67855,-73.94949,Entire home/apt,80,3,234,2019-06-30,2.47,4,308 +227735,Alpha-Bet City entire floor large cool 2br -L.E.S,1187935,Daniel,Manhattan,East Village,40.72416,-73.9853,Entire home/apt,288,2,120,2019-06-24,1.27,1,229 +228317,"Your Haven Awaits At ""Emma's Place""",1191142,Lady Jay,Brooklyn,Bedford-Stuyvesant,40.68516,-73.92521,Entire home/apt,135,4,82,2019-05-18,0.87,1,273 +228496,"Spacious, Kid-Friendly 2 BR in West Village",1192424,Gordon,Manhattan,West Village,40.73507,-74.00048,Entire home/apt,225,3,13,2019-05-26,0.15,1,83 +228517,Great Bedroom in Downtown Manhattan,1192610,Raven,Manhattan,Chinatown,40.71611,-73.99828,Private room,110,30,59,2019-06-24,0.64,1,281 +228925,Beautiful Brownstone,1194377,Marceline,Brooklyn,Bedford-Stuyvesant,40.67964,-73.93946,Entire home/apt,100,7,63,2019-06-26,1.87,1,321 +228979,1BDR - Hell's Kitchen Hideaway,1190088,Tim,Manhattan,Hell's Kitchen,40.76189,-73.99,Private room,130,2,52,2018-08-14,0.55,1,303 +229367,COMFY ROOM/COFFEE AND BAGEL/WEEKLY DISCOUNT,1097545,Carol,Manhattan,East Village,40.72645,-73.98035,Private room,89,1,278,2019-07-03,2.95,3,192 +229874,Oversized Studio in Park Slope,507304,Derrick,Brooklyn,Sunset Park,40.66293,-73.99833,Entire home/apt,200,5,1,2012-01-02,0.01,1,0 +230321,Apt with EmpireState view-Subway around the corner,1203500,Civan,Brooklyn,Bedford-Stuyvesant,40.69046,-73.95167,Entire home/apt,80,2,35,2019-06-09,0.40,1,36 +230854,Zen Yankee Stadium Pad 5 Minutes To Manhattan!,12221,Lori,Bronx,Concourse,40.83001,-73.92158,Private room,50,5,235,2019-06-29,2.49,2,271 +230877,Monthly Apartment Rental,292204,Blanca,Manhattan,East Harlem,40.79239,-73.94535,Entire home/apt,135,28,115,2019-06-30,1.21,2,341 +230956,Wonderfully inviting East Village,1207399,Mark,Manhattan,East Village,40.72709,-73.98274,Private room,90,1,109,2015-10-02,1.15,1,333 +231414,TURQUOISE: One-Bedroom Apt. in Soho,1184442,Roberto,Manhattan,SoHo,40.72599,-74.00168,Private room,270,5,1,2013-07-09,0.01,1,210 +232612,"Lovely pied-à-terre, in an historic building",1217241,Dee,Brooklyn,Bedford-Stuyvesant,40.68309,-73.94219,Entire home/apt,110,3,305,2019-06-27,3.24,1,231 +232618,"Spacious, well furnished, high fl. beautiful views",763420,Selma,Manhattan,East Harlem,40.79442,-73.93433,Entire home/apt,145,1,102,2019-06-18,1.52,1,308 +233189,NYC Studio in Heart of Times Square,1220414,Michael,Manhattan,Hell's Kitchen,40.76166,-73.99675,Entire home/apt,179,30,83,2019-05-31,0.88,1,292 +233638,rooms for rent in Queens with piano,1012895,Melody,Queens,Ridgewood,40.70163,-73.90867,Private room,55,1,19,2018-07-31,0.25,1,311 +233662,Large Sunny Luxe Prvt Room/Midtown,1223568,Tiffany,Manhattan,Midtown,40.75575,-73.96842,Private room,110,2,61,2019-05-18,0.65,1,264 +234184,Spacious Stunning Harlem Townhouse,902054,William,Manhattan,Harlem,40.80903,-73.94197,Entire home/apt,325,5,89,2019-06-30,0.94,1,153 +234870,Private Room With GREAT Location,1229984,John,Queens,Long Island City,40.74581,-73.95295,Private room,75,30,65,2017-07-31,0.74,3,219 +235552,HUGE Sunny Duplex Loft with Garden,1234405,Bertie,Brooklyn,South Slope,40.66414,-73.98574,Entire home/apt,300,1,40,2019-06-16,0.44,1,0 +235651,LARGE ARTSY Room w/ Loft Bed 4 DOOGLERS!,83257,Olan,Manhattan,West Village,40.74,-74.00381,Private room,130,30,80,2019-04-26,0.86,2,332 +235951,Stylish Studio with exclusive Terrace,1236070,Dan,Manhattan,Midtown,40.75348,-73.97065,Entire home/apt,190,30,136,2019-06-19,1.45,1,120 +235960,"LES private apt, 1 bedroom & more",1236817,Blue,Manhattan,Lower East Side,40.72066,-73.98506,Entire home/apt,200,3,100,2018-05-28,1.06,1,191 +236671,"Williamsburg Garden Home, 5 minutes from Manhattan",1240820,Triny,Brooklyn,Williamsburg,40.71746,-73.95497,Entire home/apt,180,2,125,2019-07-06,1.36,3,248 +236788,"HUGE, modern 2-LEVEL Brooklyn apt",4166168,Nick And Noémie,Brooklyn,DUMBO,40.70257,-73.9847,Entire home/apt,350,5,40,2019-04-14,0.50,1,67 +236806,charming 2bdrm apt in East Village,1151987,Juvie,Manhattan,East Village,40.72264,-73.9837,Entire home/apt,160,4,0,,,1,0 +237127,LOCATION LOCATION LOCATION Liz's,1146958,Liz,Manhattan,Kips Bay,40.73833,-73.98186,Entire home/apt,195,30,139,2019-04-28,1.59,4,325 +237210,Manhattan Loft in Prime East Village Location,1243192,Jacqueline,Manhattan,Greenwich Village,40.73268,-73.99255,Entire home/apt,241,30,0,,,1,249 +239055,Nolita Penthouse_Private Deck_Elev_,65064,Ashley & Nir,Manhattan,Chinatown,40.71892,-73.99628,Entire home/apt,300,7,2,2014-10-06,0.03,1,0 +239733,Astoria Garden Suite,1256874,Nancy,Queens,Ditmars Steinway,40.77679,-73.91687,Entire home/apt,75,28,49,2019-06-26,0.53,1,313 +239766,Lower East Side/Chinatown 1 Bedroom,1257309,Austin,Manhattan,Lower East Side,40.71693,-73.98948,Entire home/apt,100,5,8,2018-05-18,0.11,1,0 +239826,"Amazing 1 bed, live like a Newyorkr",1257760,Jay,Manhattan,Gramercy,40.73685,-73.98359,Entire home/apt,399,1,0,,,1,12 +239883,Private Room in Fort Green BK close to city,136962,Li,Brooklyn,Fort Greene,40.68501,-73.97019,Private room,85,5,124,2019-05-25,1.32,1,69 +239899,Spacious & Charming by Prospect Pk,1258363,Todd,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.96003,Entire home/apt,80,21,5,2018-12-19,0.12,1,0 +240800,Private Room Near Brooklyn Museum ,1263176,Joseph,Brooklyn,Prospect Heights,40.67722,-73.96542,Private room,55,1,147,2019-06-30,1.57,1,293 +241140,The Notorious B.N.B. { The Wallace },1177497,Jessica,Brooklyn,Clinton Hill,40.68975,-73.96703,Private room,438,1,43,2019-04-14,0.46,11,363 +241159,Clinton Hill 1 Bed Bright Loft Apartment,1264655,Ruari,Brooklyn,Bedford-Stuyvesant,40.69221,-73.95866,Entire home/apt,110,6,8,2019-01-03,0.33,1,4 +241862,Great Studio in W. Village - NYC!,1269455,Mike,Manhattan,West Village,40.72969,-74.00635,Entire home/apt,200,2,37,2019-01-02,0.39,1,257 +242532,The Notorious B.N.B. { The Swoon },1177497,Jessica,Brooklyn,Clinton Hill,40.6893,-73.96602,Private room,279,1,120,2019-06-19,1.28,11,362 +242643,"BIG 1br, SLEEPS 4, dishwashr, TV",1273825,Lauryn,Brooklyn,Williamsburg,40.70832,-73.94157,Entire home/apt,137,1,24,2019-01-01,0.29,1,0 +243229,2BR Apt - 20min to Soho,1276497,Alon,Brooklyn,Bedford-Stuyvesant,40.68016,-73.94878,Entire home/apt,280,3,5,2017-07-09,0.05,1,365 +243708,Williamsburg - Quiet and Comfy stay,288711,Andy,Brooklyn,Williamsburg,40.70875,-73.95508,Entire home/apt,199,30,242,2019-04-01,2.59,1,102 +245504,One Fabulous Private Room,714200,Baron,Manhattan,Inwood,40.85888,-73.92886,Private room,71,4,229,2019-06-21,2.45,1,26 +245544,NY/ Big Room for 2 near Manhattan,1260921,Victor,Bronx,Kingsbridge,40.8679,-73.90023,Private room,42,2,108,2019-06-19,1.36,2,302 +245574,Brooklyn Brownstone apartment,1288460,Al-,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95383,Entire home/apt,180,2,181,2019-06-05,1.92,1,280 +245607,big 1 bedroom apt very central,825022,Jaidev,Manhattan,Chelsea,40.75127,-73.99637,Entire home/apt,226,5,34,2019-07-01,0.39,1,302 +246134,"Lovely, Large Room in Crown Heights",283604,Shelley,Brooklyn,Crown Heights,40.67607,-73.94421,Private room,85,3,5,2016-10-02,0.05,1,281 +246351,"Sweet Apt, Steps From Gramercy Park",1292250,Jerry,Manhattan,Gramercy,40.73834,-73.9823,Entire home/apt,135,1,5,2015-08-17,0.06,1,0 +246916,Quality Cozy Studio Next to Subway,3647,Rafael,Queens,Elmhurst,40.7347,-73.88066,Entire home/apt,79,4,60,2019-06-25,0.64,2,297 +246938,Scandinavian-apt for up to 5. LES,936630,Jens,Manhattan,Lower East Side,40.71876,-73.98851,Entire home/apt,154,1,238,2019-06-23,2.59,1,246 +248865,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73787,-73.95385,Entire home/apt,199,3,34,2019-04-22,0.37,28,60 +248871,4 BEDROOM -2BATHRM WEST VILLAGE DUPLEX TOWNHOUSE,605463,West Village,Manhattan,West Village,40.73066,-74.00287,Entire home/apt,700,3,131,2019-06-24,1.40,4,296 +249414,Large & bright 900ft² 1br in WV,1306587,Andy,Manhattan,West Village,40.73291,-74.00059,Entire home/apt,246,4,6,2017-06-28,0.16,1,0 +249618,At a very nice area in the WestSide,1307773,Karina,Manhattan,Washington Heights,40.85099,-73.92822,Private room,125,60,4,2015-07-03,0.06,1,364 +249867,HANCOCK VERY SMALL ROOM,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68707,-73.91918,Private room,100,1,7,2018-10-07,0.08,4,281 +250259,Pre-War Williamsburg Loft,1311398,Ben,Brooklyn,Williamsburg,40.7184,-73.96019,Entire home/apt,295,5,125,2019-07-07,3.04,1,0 +250311,1 Bedroom Available In My Two Bedroom Flat,945499,Kyle,Brooklyn,Crown Heights,40.67495,-73.95563,Private room,150,3,0,,,1,0 +250323,SPACIOUS PRIVATE LITTLE ITALY FLAT,1311870,Christy,Manhattan,Chinatown,40.71582,-73.99902,Entire home/apt,119,1,49,2014-12-03,0.58,1,0 +250536,The Lenox in Harlem,1313306,Yvette,Manhattan,Harlem,40.81068,-73.94288,Private room,125,1,11,2017-09-25,0.12,2,365 +250537,The Lenox in Harlem,1313306,Yvette,Manhattan,Harlem,40.81122,-73.94279,Entire home/apt,400,5,0,,,2,365 +250801, Heart & Soul of Greenwich Village ,1314834,Rhona,Manhattan,Greenwich Village,40.73129,-73.99944,Entire home/apt,850,3,107,2019-05-23,1.15,1,249 +251262,Prime Williamsburg Loft off Bedford,1278802,Anne,Brooklyn,Williamsburg,40.71628,-73.95737,Private room,129,2,241,2019-06-29,2.60,1,303 +251277,Private Bdrm /Bath 1 block Ctrl Prk,1317343,Carol,Manhattan,Upper West Side,40.78558,-73.9726,Private room,140,1,176,2019-06-29,1.89,1,300 +252076,+Highly Satisfactory LES dwelling++,297769,Tunji,Manhattan,Chinatown,40.7146,-73.991,Private room,115,4,151,2019-06-16,1.63,2,323 +252607,Whole apartment / 2 bedroom in NYC,1325961,Chris,Manhattan,East Harlem,40.79493,-73.94462,Entire home/apt,200,3,49,2018-08-09,0.53,2,0 +253332,"Spacious, modern loft in awesome neighborhood",552343,Cynthia,Brooklyn,Sunset Park,40.6623,-73.99049,Entire home/apt,96,120,13,2018-09-01,0.14,1,204 +253466,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73693,-73.95284,Entire home/apt,199,3,33,2019-06-24,0.47,28,60 +253471,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73641,-73.9533,Entire home/apt,199,3,24,2018-11-06,0.32,28,84 +253475,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73794,-73.95254,Entire home/apt,199,3,59,2019-06-24,0.66,28,60 +253548,Well Kept Private Room around Brighton Beach,1331493,Olia,Brooklyn,Brighton Beach,40.58147,-73.96726,Private room,69,1,2,2015-06-25,0.04,1,303 +253590,Large 1 Bedroom furnished on UWS,1331850,G,Manhattan,Upper West Side,40.79771,-73.96323,Entire home/apt,185,2,16,2019-06-28,0.23,1,261 +253623,Chez Carine - Privacy in Manhattan,1332108,Cici,Manhattan,Harlem,40.81512,-73.94692,Private room,81,2,72,2018-11-26,0.77,1,0 +253800,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.7373,-73.95323,Entire home/apt,199,3,24,2019-04-25,0.26,28,60 +253803,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73708,-73.95271,Entire home/apt,199,3,23,2019-06-22,0.26,28,60 +253806,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73652,-73.95236,Entire home/apt,199,3,43,2019-07-02,0.47,28,60 +253811,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73693,-73.95316,Entire home/apt,199,3,30,2019-07-03,0.32,28,56 +253815,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73784,-73.95324,Entire home/apt,199,3,39,2019-06-29,0.44,28,84 +253828,Duplex w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73674,-73.95247,Private room,349,3,8,2018-07-26,0.09,28,58 +253839,Loft w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73783,-73.95259,Private room,249,3,3,2015-11-03,0.03,28,60 +253842,1 BR w/ Terrace @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73714,-73.95296,Private room,299,3,6,2018-04-19,0.10,28,60 +253846,Superior @ Box House,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73731,-73.9545,Private room,179,3,4,2015-12-04,0.05,28,81 +254131,"Read it 1st, A seprat fur BR, low $",1267021,Sharma,Queens,Jackson Heights,40.74965,-73.89344,Private room,54,5,56,2019-07-06,0.66,3,365 +254168,2 BR Duplex @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73793,-73.95316,Private room,599,3,7,2018-11-16,0.08,28,60 +254409,Husband & Wife Art-Filled Apartment,1336542,Stephanie,Brooklyn,Clinton Hill,40.68197,-73.96549,Entire home/apt,110,1,2,2014-01-13,0.03,1,0 +255024,"3BR, 2 bathroom condo in Bushwick",1340007,Roger,Brooklyn,Bushwick,40.70271,-73.91566,Entire home/apt,220,2,178,2019-06-24,2.69,1,297 +255476,"The BLUE OWL: +VEGETARIAN WBURG W PATIO & BACKYARD!",1302029,Bree,Brooklyn,Williamsburg,40.7116,-73.9529,Private room,89,30,30,2019-05-31,0.80,1,91 +255601,Cozy 2 Bedroom 20 Min from City,1343630,Antonio,Brooklyn,Bedford-Stuyvesant,40.69241,-73.94885,Entire home/apt,170,2,190,2019-06-23,2.04,1,315 +255957,NOLITA! LOCATION! LOCATION! VIEWS! FREE GYM!,506779,Claudia,Manhattan,Nolita,40.72004,-73.99424,Entire home/apt,495,7,25,2019-06-30,0.27,2,338 +256078,"Entire apt NYC, Queens. 15 min from Times Square.",1346437,Cristina,Queens,Sunnyside,40.74511,-73.92398,Entire home/apt,80,10,81,2019-05-31,0.98,2,40 +256328,Luxury Chelsea Townhouse at the High Line,1347034,Janine,Manhattan,Chelsea,40.74599,-74.00253,Entire home/apt,760,2,7,2019-06-22,0.08,1,361 +256369,Alchemy BnB - room in artist loft,1348494,Pamela,Brooklyn,Cobble Hill,40.68946,-73.99385,Private room,98,4,216,2019-07-01,2.31,1,288 +257097,Sunny! 2br Steps to train/restaurants - 15 to NYC,315401,Jaime,Brooklyn,Bedford-Stuyvesant,40.68226,-73.95473,Entire home/apt,125,30,31,2019-01-28,0.33,1,218 +257568,Zen Den (Airport Pickup: JFK & LGA),1123923,Adolfo,Brooklyn,Cypress Hills,40.67855,-73.8896,Private room,48,90,53,2017-08-12,0.57,2,1 +257787,Heart of Williamsburg. Brand New.,1356046,Daniel,Brooklyn,Williamsburg,40.71408,-73.9489,Private room,64,3,247,2019-06-21,2.65,2,117 +258284,"Fresh, Clean Brooklyn Garden Apt.",1358312,S,Brooklyn,Clinton Hill,40.68618,-73.96144,Entire home/apt,154,3,233,2019-04-10,2.50,1,0 +258397,Guest Apartment in Owner Occupied Home,1354758,Annie,Brooklyn,Park Slope,40.67379,-73.98454,Entire home/apt,139,3,135,2019-06-24,1.45,1,204 +258686,My Home Is Your Home,1233267,Kim,Queens,St. Albans,40.70554,-73.76637,Private room,75,4,20,2015-12-30,0.23,1,0 +258688,Spacious & Stylish Chelsea One Bedroom Apartment,436599,Chad,Manhattan,West Village,40.74031,-74.00532,Entire home/apt,325,4,46,2019-06-02,0.50,1,20 +258690,CHELSEA 1 Bdrm Plus Sleeping Loft!!,1359611,Andrea,Manhattan,Chelsea,40.74618,-74.00392,Entire home/apt,195,365,10,2014-10-26,0.12,1,0 +258740,Spacious room in beautiful apt! ,1360043,Adrienne,Manhattan,Harlem,40.81872,-73.94567,Private room,58,1,143,2018-06-30,2.83,1,0 +258838,"Oceanview,close to Manhattan",1360198,Marina,Staten Island,Arrochar,40.59251,-74.06479,Entire home/apt,250,2,21,2019-05-22,0.26,4,333 +258876,"Affordable rooms,all transportation",1360198,Marina,Staten Island,Arrochar,40.59101,-74.06685,Private room,50,7,0,,,4,189 +259946,"Budget stay, near transportation",1360198,Marina,Staten Island,Arrochar,40.59262,-74.06659,Entire home/apt,125,2,8,2019-05-19,0.09,4,353 +260451,Fort Greene brownstone 1BR- SUBLET,52335,Alexander,Brooklyn,Fort Greene,40.69142,-73.97203,Entire home/apt,70,7,4,2017-08-28,0.05,2,0 +260765,NewYork Modern Pre-War LoftStudio ,480943,Ro,Manhattan,Upper East Side,40.76928,-73.95021,Entire home/apt,189,2,314,2019-07-01,3.45,2,206 +261194,Cozy Artist Duplex **Bedstuy Charm**,696482,Christine,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95289,Entire home/apt,130,3,18,2019-06-18,0.25,1,1 +261259,Apartment in Best location in NYC,1370358,Keiko,Manhattan,West Village,40.72953,-74.00462,Entire home/apt,145,7,11,2015-05-27,0.12,1,0 +261344,Inspired in Historic Downtown NYC!,568103,Liah,Manhattan,Financial District,40.70523,-74.01345,Private room,101,7,51,2019-06-02,0.55,1,307 +261674,Chelsea/West Village - 2bdrm apt,1372786,Lindsey,Manhattan,Chelsea,40.74025,-74.00161,Private room,95,5,20,2017-04-01,0.33,1,0 +261781,1500+ sq ft 2BR West Village Loft,1359519,Nadya,Manhattan,West Village,40.73378,-74.00429,Entire home/apt,375,7,8,2017-12-30,0.12,1,0 +262343,Cozy & Clean Lower East Side Apt.,1376385,Lauren,Manhattan,Lower East Side,40.72087,-73.99022,Entire home/apt,153,31,59,2019-06-06,0.63,1,27 +262405,Spacious Townhome Apt in Brooklyn,1376778,Wade,Brooklyn,East Flatbush,40.64468,-73.94219,Entire home/apt,92,4,54,2019-06-24,0.62,1,27 +262478,Chic + Stylish room in heart of LowerEastSide NYC!,535128,Juliana,Manhattan,Lower East Side,40.7193,-73.98966,Private room,80,5,10,2018-12-31,0.46,1,348 +262583,Landmark 2 Bedroom West Village NYC,605463,West Village,Manhattan,West Village,40.73312,-74.0042,Entire home/apt,300,4,153,2019-06-25,1.66,4,246 +263005,2 bedroom apt in charming brick townhouse,1380060,Marisa And Colin,Brooklyn,Fort Greene,40.69778,-73.97676,Entire home/apt,145,3,110,2019-06-02,1.20,1,15 +263190,Room in East Village with Private Entrance,1020539,Dominique,Manhattan,East Village,40.72534,-73.98591,Private room,88,2,69,2019-01-01,0.91,2,0 +263232,Cozy&Clean in a great neighborhood,1381171,Nicole,Manhattan,Harlem,40.82151,-73.94516,Entire home/apt,155,1,1,2019-01-27,0.18,1,5 +263502,Prime Williamsburg 1/BD New Condo,1382749,Shaun,Brooklyn,Williamsburg,40.72059,-73.9567,Entire home/apt,185,180,24,2015-08-19,0.26,1,0 +263776,City Skyline Views from every room!,1384111,Joanne,Queens,Sunnyside,40.74558,-73.92324,Private room,73,2,95,2019-01-02,1.02,2,0 +263888,Contemporary & Classic Sanctuary on the Hudson,1384559,C,Manhattan,Upper West Side,40.79433,-73.9765,Entire home/apt,225,2,129,2019-04-28,1.41,1,107 +264323,Comfortable Manhattanville,305972,Allan,Manhattan,Morningside Heights,40.81055,-73.95549,Private room,85,7,171,2019-03-31,1.84,2,144 +265036,Private room w/ queen bed + rooftop,21188,Leo,Brooklyn,Crown Heights,40.6711,-73.95231,Private room,99,2,20,2019-06-09,0.59,1,98 +265064,Zen Eyrie –Airport Pick-Up: JFK/LGA,1123923,Adolfo,Brooklyn,Cypress Hills,40.67962,-73.88928,Private room,48,90,17,2017-05-03,0.27,2,0 +265145,Studio sublet in Hell's kitchen,1390947,Akiko,Manhattan,Theater District,40.76217,-73.98411,Entire home/apt,200,5,8,2015-01-08,0.09,1,0 +265506,Luxury NYC 2 Bedroom with Terrace,1392440,Sandra,Manhattan,Upper East Side,40.76128,-73.96463,Entire home/apt,485,7,11,2015-11-01,0.12,1,0 +265831,Bright unique designer loft in Soho,1394190,Jen,Manhattan,Nolita,40.72313,-73.99438,Entire home/apt,310,5,5,2018-07-05,0.09,1,89 +265912,Spacious 2 bed Loft apartment Bedford L,1394719,Jill,Brooklyn,Williamsburg,40.7177,-73.95576,Entire home/apt,110,4,0,,,1,354 +266146,Beautiful studio by Central Park,1385157,Brian,Manhattan,Upper West Side,40.78448,-73.97289,Entire home/apt,109,30,36,2019-03-19,0.39,5,286 +266155,One bed suite with private garden,1385157,Brian,Manhattan,Upper West Side,40.78304,-73.97447,Entire home/apt,167,30,16,2019-03-31,0.17,5,252 +266351,SUNNY 1 Bedroom APT in Fort Greene - BROOKLYN,1396546,Elena,Brooklyn,Fort Greene,40.68737,-73.97125,Entire home/apt,147,15,5,2018-07-12,0.12,1,189 +266437,West Village cozy 2 bedroom NYC ,1397061,Asia Joanna,Manhattan,Chelsea,40.74139,-74.0005,Entire home/apt,220,4,0,,,1,0 +266449,2 Bedroom Gem - Prime LES Location,1397115,Drew,Manhattan,Lower East Side,40.71992,-73.98773,Entire home/apt,195,4,68,2019-06-03,0.77,1,271 +266756,REAL 2BR-HEART OF SOHO-LITTLE ITALY,1398809,Roberto Mike,Manhattan,Little Italy,40.71905,-73.99677,Entire home/apt,199,28,89,2018-06-30,0.99,1,0 +267376,BIG ROOM / DOWNTOWN LOFT /,638721,Fred,Manhattan,Financial District,40.70741,-74.00102,Private room,65,30,10,2019-06-24,1.02,1,0 +267435,Large Sunny Bedroom in QNS NYC,1402454,Jocelin,Queens,Rego Park,40.73349,-73.86009,Private room,55,1,38,2019-07-01,0.85,1,0 +267535,Home Away From Home-Room in Bronx,1402951,Clara,Bronx,Wakefield,40.89557,-73.8447,Private room,50,2,15,2019-06-09,0.17,1,337 +267652,Private clean pleasant spacious room.,164675,Janice,Brooklyn,Kensington,40.64277,-73.97296,Private room,60,2,20,2019-01-21,0.42,1,347 +267708,"Charming Hotel Alternative +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79111,-73.94466,Private room,99,3,25,2019-06-15,0.96,2,127 +268392,SUNNY 2-bdrm CHILD-friendly Uptwn by Centrl Park!,1406773,Eyal And Amy,Manhattan,Harlem,40.79951,-73.95257,Entire home/apt,130,2,35,2019-05-27,0.42,1,41 +268481,Resort-like living in Williamsburg,1380703,Vishal,Brooklyn,Williamsburg,40.71647,-73.93974,Entire home/apt,290,30,1,2013-09-24,0.01,1,0 +268868,Hudson Yards with views of The Highline Park,1408733,Sergio,Manhattan,Chelsea,40.75114,-74.00195,Entire home/apt,350,3,64,2019-06-02,0.70,1,18 +269283,Brooklyn: A Huge Bedroom + Good Vibes,1410714,Antoinette,Brooklyn,Crown Heights,40.66431,-73.93216,Private room,50,3,26,2019-02-16,0.33,1,158 +269889,One stop from Midtown Manhattan!,1413098,M,Queens,Long Island City,40.74579,-73.95012,Private room,96,2,244,2019-06-25,2.74,1,270 +270139,"Private Room Very Near L train, Bushwick",1093220,Chavisa,Brooklyn,Bushwick,40.70278,-73.92673,Private room,45,15,21,2019-01-15,0.29,3,88 +270231,Cozy New York City private room,1366310,Janina,Queens,Woodside,40.74409,-73.91122,Private room,85,2,270,2019-07-07,2.95,2,306 +270315,Bed-stuy Royal Room,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68812,-73.93254,Private room,34,10,16,2019-03-27,0.19,3,216 +270345,SUPER CUTE EAST VILLAGE APARTMENT,1415590,Cameron,Manhattan,East Village,40.72454,-73.99151,Entire home/apt,250,3,24,2019-06-27,0.26,1,16 +270680,GREAP STUDIO / 4PPL IN MIDTOWN,1315849,Javier Pedraza,Brooklyn,Williamsburg,40.71073,-73.96207,Private room,190,1,30,2019-06-28,0.33,2,365 +270681,BEDFORD AV. ROOM IN WILLIAMSBURG..,1315849,Javier Pedraza,Brooklyn,Williamsburg,40.71028,-73.96128,Private room,75,2,5,2015-09-07,0.06,2,365 +271083,Sleep & Wake near Botanical Gardens,1217923,Kevin,Brooklyn,Prospect-Lefferts Gardens,40.65772,-73.96131,Entire home/apt,93,4,115,2019-06-12,1.25,1,312 +271128,Tranquil in the heart of Brooklyn 2,1417166,Lex,Brooklyn,Bedford-Stuyvesant,40.68884,-73.95059,Private room,60,5,9,2019-06-25,0.19,2,33 +271130,Tranquil in the heart of Brooklyn 1,1417166,Lex,Brooklyn,Bedford-Stuyvesant,40.6865,-73.95372,Private room,65,5,45,2019-05-26,0.52,2,0 +271694,"Easy, comfortable studio in Midtown",1387370,James,Manhattan,Midtown,40.75282,-73.97315,Entire home/apt,125,365,19,2015-09-08,0.21,1,365 +271950,Huge luxury 1BR apt near Central Park South(4 ppl),1362808,Max,Manhattan,Upper East Side,40.76373,-73.96897,Entire home/apt,300,3,5,2018-12-31,0.08,1,27 +271954,Beautiful brownstone apartment,1423798,Aj,Manhattan,Greenwich Village,40.73388,-73.99452,Entire home/apt,150,2,203,2019-06-20,2.22,1,300 +272026,1 Bd. MANHATTAN NY Entire Apt. 1 yr-6 months min.,1423613,Arthur,Manhattan,Washington Heights,40.85774,-73.92901,Entire home/apt,56,122,20,2018-01-02,0.41,1,216 +272044,Luxury Designer Downtown Apartment,1195295,M,Manhattan,East Village,40.72257,-73.98465,Entire home/apt,299,3,49,2018-10-27,0.53,1,365 +272427,Spacious room on charming block in Greenpoint!,511993,Diana,Brooklyn,Greenpoint,40.72723,-73.95728,Private room,60,4,6,2019-04-21,0.07,1,303 +272706,"SUNNY, SPACIOUS APT. in FT. GREENE",1402817,Valerie,Brooklyn,Fort Greene,40.69135,-73.97321,Entire home/apt,88,5,7,2017-06-18,0.08,1,0 +272738,Guest Room in Authentic Williamsburg Factory Loft,1427381,Elizabeth,Brooklyn,Williamsburg,40.70513,-73.95505,Private room,60,2,35,2019-06-30,0.38,2,161 +273190,6 Bedroom Landmark West Village Townhouse,605463,West Village,Manhattan,West Village,40.73301,-74.00268,Entire home/apt,1300,5,28,2018-09-25,0.31,4,297 +273256,Beautiful bed and bath - Manhattan,1429642,Delia,Manhattan,East Harlem,40.79793,-73.93612,Private room,200,6,0,,,1,0 +274062,Beautiful Room Near Central Park!,1433395,Stacia,Manhattan,Harlem,40.80285,-73.95166,Private room,99,2,54,2019-06-24,0.88,1,50 +274329,Fantastic 1-bedroom basement apt.,1434654,Andrew,Brooklyn,Bushwick,40.70642,-73.91665,Entire home/apt,110,3,115,2019-06-25,1.75,2,28 +274376,"Private Clinton Hill, Brooklyn Apt",1434931,Aaron,Brooklyn,Clinton Hill,40.68156,-73.96537,Entire home/apt,135,5,6,2019-06-24,0.13,1,317 +274743,Charming furnished Studio-Loft,1436404,Catherine,Manhattan,Upper East Side,40.77368,-73.95198,Entire home/apt,110,15,1,2014-08-31,0.02,1,275 +275976,Lovely 2 bedroom apartment with backyard access,1417757,Kwab,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93702,Entire home/apt,165,3,204,2019-06-30,2.31,1,80 +276216,Nights in White Satin in the Slope,1440691,Dena,Brooklyn,Sunset Park,40.65992,-73.99042,Entire home/apt,127,180,1,2016-09-01,0.03,1,365 +276317,"The Carlton, Brooklyn brownstone Duplex w/ garden",130901,Chauncey,Brooklyn,Prospect Heights,40.67847,-73.97038,Entire home/apt,402,3,89,2019-06-23,0.97,1,340 +276482,Comfortable Manhattanville.,305972,Allan,Manhattan,Harlem,40.81371,-73.95585,Private room,85,6,130,2019-06-02,1.42,2,97 +277207,Beautiful lrg 1800's syle apt share,1447684,Rosa,Brooklyn,Greenpoint,40.72868,-73.95835,Private room,75,7,15,2019-06-08,0.25,3,365 +277370,Location wins for East Village Apt,1448432,Jim,Manhattan,East Village,40.73168,-73.98662,Entire home/apt,139,30,52,2019-05-13,0.60,1,314 +277883,Sunny Entire Apt with Romantic Bedroom,950657,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65689,-73.9533,Entire home/apt,70,6,58,2017-12-29,0.63,1,0 +278090,Furnished room for rent - Manhattan,1451723,Bia,Manhattan,East Harlem,40.7928,-73.93967,Private room,50,3,208,2019-06-11,2.32,1,339 +278145,Large Room in a Huge NY apartment.,1452026,Heidi,Queens,Astoria,40.77117,-73.91905,Private room,30,5,3,2017-06-20,0.03,1,0 +278631,West Village NYC Sun-filled Studio!,1132207,Cathryne,Manhattan,West Village,40.73729,-74.00807,Entire home/apt,250,30,7,2013-04-21,0.08,1,35 +278876,"Large, furnished room in a 2 bedroom!",368528,Ally,Brooklyn,Crown Heights,40.66984,-73.95141,Private room,64,1,1,2017-03-18,0.04,1,0 +279093,Huge Apartment! Amazing View!,1455825,Erica,Manhattan,Harlem,40.82977,-73.94071,Entire home/apt,300,3,2,2018-04-10,0.06,1,365 +279857,#1 Yellow Block BnB/see at Net Flix Show Stay Here,1420300,Gordy,Brooklyn,Bedford-Stuyvesant,40.68492,-73.95489,Entire home/apt,800,4,122,2019-07-02,1.37,1,257 +279969,Cozy Brownstone Inn I(studio),240427,Naimah,Brooklyn,Bedford-Stuyvesant,40.68255,-73.91957,Entire home/apt,100,3,63,2019-06-18,0.72,2,5 +280315,Crown Height's Brooklyn Cozy Apt,1151818,Gabrielle,Brooklyn,Crown Heights,40.67392,-73.94662,Entire home/apt,250,5,26,2014-10-31,0.28,1,0 +281521,Amazing West Village 2br,70614,Vimal,Manhattan,West Village,40.73879,-74.00425,Entire home/apt,200,27,1,2012-10-02,0.01,1,0 +281756,Authentic NY Charming Artist Loft,1468658,Barbara,Brooklyn,Greenpoint,40.73321,-73.95587,Entire home/apt,140,5,14,2019-06-19,0.16,1,0 +281851,Beautiful Private Bedroom - Downstairs,1469036,Tw,Manhattan,Harlem,40.80671,-73.95082,Private room,130,1,107,2019-06-25,2.38,1,304 +282341,Kensington/Ditmas Park pied-a-terre,1471384,Dan,Brooklyn,Kensington,40.6433,-73.97386,Entire home/apt,90,30,3,2017-07-30,0.05,1,286 +282443,QT STUDIO FOR ROMANTIC COUPLES,36897,Lydia,Manhattan,Chinatown,40.71601,-73.99123,Entire home/apt,90,3,107,2019-05-18,1.17,1,0 +282514,"Own Room & Bath, Sunny Town House, 18"" to Wall St",1464358,Dian,Brooklyn,Bedford-Stuyvesant,40.68106,-73.9292,Private room,97,3,29,2019-06-25,1.57,1,118 +282863,Cozy & Charming Boerum Hill Flat,322934,Kate,Brooklyn,Gowanus,40.68131,-73.98879,Entire home/apt,91,6,69,2019-06-21,0.76,1,265 +282977,Park Slope Brooklyn! Sunny Bedroom.,1474071,Diana,Brooklyn,Park Slope,40.67264,-73.98136,Private room,125,3,232,2019-07-06,2.52,1,303 +283072,One bedroom sharing Bathroom,1474637,Eliza,Brooklyn,Cypress Hills,40.67889,-73.86404,Private room,75,7,0,,,1,0 +283090,Spacious East Village Apartment,511175,Luis,Manhattan,East Village,40.7241,-73.97899,Entire home/apt,180,7,24,2018-08-10,0.26,2,125 +283184,Huge Williamsburg Loft..Perfect for Big Groups!,1427381,Elizabeth,Brooklyn,Williamsburg,40.70766,-73.95191,Entire home/apt,300,7,0,,,2,354 +283272,Stylish Garden House - Trendy area,524730,Oz,Brooklyn,Williamsburg,40.71422,-73.9484,Entire home/apt,100,19,5,2016-08-03,0.06,2,6 +283550,Hells Kitchen Ground Fl 1-bedroom,1476954,Jose,Manhattan,Hell's Kitchen,40.76001,-73.99133,Entire home/apt,175,3,10,2019-04-21,0.23,1,0 +284208,Pre War Park Slope on Prospect Park,1366270,Louisa,Brooklyn,South Slope,40.66441,-73.97974,Private room,65,4,36,2018-11-12,0.47,2,80 +284855,Charming Apt in the Best Location!,1482460,Dara,Manhattan,West Village,40.73362,-74.00923,Entire home/apt,240,5,94,2019-06-19,1.10,1,134 +285442,Huge room with private balcony,1475866,Jesper,Manhattan,East Village,40.73119,-73.98819,Private room,300,6,1,2013-05-06,0.01,1,0 +285492,Amazing 1 bedroom apt with NYC View,1486034,Eric,Manhattan,Chelsea,40.74494,-73.9998,Entire home/apt,385,1,63,2018-08-03,0.71,1,364 +285716,Great spacious room by the L train!,1487126,Anamaria,Brooklyn,Bushwick,40.69657,-73.9129,Private room,47,15,5,2013-09-11,0.06,1,0 +286662,Charming Brooklyn Studio,1491538,Erika,Brooklyn,Crown Heights,40.67106,-73.95463,Entire home/apt,110,3,238,2019-07-02,2.60,1,297 +286838,Private Room in Brownstone,1492339,Karin,Manhattan,Harlem,40.80748,-73.95589,Private room,75,2,101,2015-10-31,1.10,1,0 +287397,Bed Stuy Pride! Welcome to Brooklyn,1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93179,Entire home/apt,100,3,21,2019-06-24,0.23,3,43 +287408,Lovely Hell's Kitchen Studio...,1495090,Carey,Manhattan,Hell's Kitchen,40.76147,-73.99152,Entire home/apt,165,2,72,2018-07-31,0.82,1,10 +287417,HOT SPOT FOR 20 AND 30 SOMETHING'S,1495196,Yvette,Brooklyn,Bedford-Stuyvesant,40.68174,-73.91921,Entire home/apt,300,2,40,2019-06-23,0.68,1,0 +287421,"Cozy, Clean Cobble Hill Brownstone",1495141,Keow,Brooklyn,Cobble Hill,40.68538,-74.00056,Entire home/apt,140,3,103,2017-08-01,1.13,1,189 +287481,Bright Loft Apt w Skylight in Wburg,1495502,Olly,Brooklyn,Williamsburg,40.70839,-73.94289,Entire home/apt,120,6,66,2019-05-01,0.72,2,17 +287839,"Cozy, beautiful doormen studio-",1498424,Hibo,Brooklyn,Fort Greene,40.69018,-73.98107,Entire home/apt,175,3,35,2019-06-27,0.40,1,289 +287845,Carroll Gardens Gem-2BD with Garden,1496847,Paul & Ewa,Brooklyn,Carroll Gardens,40.68128,-73.99522,Entire home/apt,275,31,121,2019-07-01,1.33,1,305 +289020,Sunny 1BR Center of East Village!,347036,Jasmine,Manhattan,East Village,40.72948,-73.98694,Entire home/apt,179,8,15,2018-08-29,0.19,1,0 +289037,"2BR in Cobble Hill, Brooklyn, NY",632334,Michael,Brooklyn,Carroll Gardens,40.68353,-73.9914,Entire home/apt,189,2,13,2016-09-05,0.18,1,0 +289288,Perfect East Village Apartment,1502469,Max,Manhattan,East Village,40.72506,-73.98865,Entire home/apt,219,2,129,2019-05-11,1.42,1,220 +289665,Decorators 5-Star Flat West Village,1503831,Elle,Manhattan,West Village,40.72891,-74.00293,Entire home/apt,450,20,157,2016-08-11,1.71,1,0 +289703,Beautiful SoHo Luxury Apartment,815741,Geoff,Manhattan,SoHo,40.7253,-73.99916,Entire home/apt,249,5,8,2016-11-26,0.11,1,0 +289958,2 Rooms in Cottage NYC,1454655,Ronaldo,Queens,Long Island City,40.75295,-73.93228,Private room,65,2,5,2014-09-09,0.06,1,362 +289995,Zen Minimalist w/Garden- Bedford L Stop,1505217,Pia,Brooklyn,Greenpoint,40.71947,-73.95252,Entire home/apt,250,4,46,2019-06-23,0.52,1,121 +290457,Between Two Bridges 2BD -Whole Apt!,207124,Mikki & Bazi,Manhattan,Chinatown,40.71283,-73.99703,Entire home/apt,139,30,37,2019-02-16,0.41,1,153 +291524,BIG LUXURY LINCOLN CENTER AREA STUDIO + !!,1470688,Philip,Manhattan,Upper West Side,40.77338,-73.98887,Entire home/apt,209,7,14,2019-06-25,0.16,1,205 +291714,Brooklyn Beauty - Large 2 bedroom Apartment,1321504,Rohan,Brooklyn,Crown Heights,40.67385,-73.94405,Entire home/apt,120,5,37,2018-04-15,0.45,1,310 +291812,"Entire Apartment in Astoria, 15mins from Manhattan",1509416,Natalia,Queens,Astoria,40.76856,-73.91828,Entire home/apt,70,5,1,2016-08-30,0.03,1,0 +292047,Gorgeous pvt room in West Village,1490696,Alejandra,Manhattan,West Village,40.73908,-74.00378,Private room,90,3,209,2019-07-04,2.38,1,236 +292121,1 bedroom apt in Midtown West,169927,Hubert,Manhattan,Hell's Kitchen,40.7625,-73.9869,Entire home/apt,199,3,4,2018-09-12,0.07,1,200 +292266,Sunny and spacious bedroom,1513294,Urszula,Brooklyn,Bushwick,40.69755,-73.91187,Private room,50,60,17,2019-04-01,0.19,2,74 +292637,Beautiful Spacious One Bedroom,1021834,Svetlana,Brooklyn,Crown Heights,40.67335,-73.96,Entire home/apt,100,5,0,,,1,0 +293004,Room next to Columbia Uni.,910719,Sena,Manhattan,Harlem,40.80497,-73.95146,Entire home/apt,110,1,0,,,1,0 +293837,"Big Apt for Funky Art /Music Lovers, Outdoor Patio",1495502,Olly,Brooklyn,Williamsburg,40.70736,-73.94331,Entire home/apt,157,4,54,2019-06-11,0.66,2,12 +294227,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73683,-73.9543,Entire home/apt,199,3,43,2019-06-22,0.49,28,84 +294239,NYC Summer Getaway | Full Home 2BR,1521432,Carmen,Queens,Astoria,40.76444,-73.92607,Entire home/apt,192,3,7,2017-04-18,0.08,1,0 +294242,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.7389,-73.95395,Entire home/apt,199,3,75,2019-06-05,0.93,28,84 +294250,Beautiful New Garden Apartment ,45682,Irina,Manhattan,Upper West Side,40.77611,-73.97808,Entire home/apt,150,1,88,2019-06-07,0.99,1,0 +294259,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73806,-73.95462,Entire home/apt,199,3,73,2019-06-30,0.84,28,56 +294263,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73661,-73.95479,Entire home/apt,199,3,89,2019-07-01,1.06,28,62 +294280,Loft Suite @ The Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73857,-73.95435,Entire home/apt,199,3,23,2019-04-23,0.26,28,81 +294297,"Lovely apt in Williamsburg, BK",1521604,Summer,Brooklyn,Williamsburg,40.711,-73.96225,Entire home/apt,105,3,11,2019-06-23,0.16,1,0 +294353,Williamsburg HUGE SUNNY next2train!,430188,Pam,Brooklyn,Williamsburg,40.70686,-73.95365,Private room,135,28,84,2019-02-16,1.12,6,310 +294490,Loft Suite @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73857,-73.95299,Entire home/apt,199,3,54,2019-06-10,0.61,28,60 +294717,Modern apartment w/ gorgeous view,1523610,Marissa,Brooklyn,Williamsburg,40.71095,-73.95239,Private room,125,3,17,2015-05-20,0.19,1,0 +295231,"Sunny, clean br available",1387286,Felicia,Brooklyn,Williamsburg,40.70918,-73.94881,Private room,60,7,1,2014-03-24,0.02,2,0 +295379,Have Whole Apt! Prime Williamsburg!,1525761,Ric,Brooklyn,Williamsburg,40.71685,-73.96573,Entire home/apt,85,1,73,2019-06-19,0.89,1,0 +295998,Panoramic View Central Park & NYC,568585,Alan,Manhattan,Upper West Side,40.7909,-73.96762,Entire home/apt,300,3,36,2019-05-01,0.47,1,29 +296345,E Williamsburg Apartment with Yard,496164,Todd,Brooklyn,Williamsburg,40.71143,-73.94159,Private room,75,2,98,2019-05-31,1.07,2,264 +296361,Nice Private Room Beauty in Queens,1528912,Weiwei,Queens,Elmhurst,40.737,-73.87444,Private room,55,1,63,2019-05-18,0.89,2,341 +296658,Sublet in Brooklyn/Lefferts Gardens,1530106,Glenn,Brooklyn,Crown Heights,40.66469,-73.96091,Private room,44,5,2,2017-09-21,0.09,1,0 +296717,"Cozy Corner, Bedford Ave Brooklyn!",1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95405,Private room,55,5,18,2018-10-10,0.20,3,0 +296844,"HISTORIC WILLIAMSBURG, BKLYN #1",839679,Brady,Brooklyn,Williamsburg,40.71653,-73.95554,Private room,30,3,24,2013-12-04,0.28,3,0 +297611,Inexpensive apartment in exchange for cat-care,997124,Alison,Brooklyn,Fort Greene,40.69309,-73.97074,Private room,35,3,1,2018-05-13,0.07,1,0 +297962,"Private room in 2 br Apt, Wburg, BK",1535987,Sergio,Brooklyn,Williamsburg,40.70638,-73.96627,Private room,70,1,2,2018-01-02,0.05,1,363 +298073,"Bright, Airy Williamsburg Apt",1536533,Irina,Brooklyn,Williamsburg,40.71629,-73.95786,Entire home/apt,130,14,23,2016-11-08,0.25,1,25 +298759,Large Double Room Queenbed Wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68622,-73.94675,Private room,52,2,93,2019-07-07,1.12,4,0 +298854,"Low$pacious in Williamsburg, Bklyn",1412944,Jason,Brooklyn,Williamsburg,40.71635,-73.94609,Private room,75,3,0,,,1,358 +299062,1 Bdrm in 2 Bdrm Apt in Upper East Lux Drmn Bldng,236421,Jessica,Manhattan,Upper East Side,40.77272,-73.95307,Private room,190,3,0,,,2,0 +299078,Charming 1BD in SoHo,787261,L,Manhattan,SoHo,40.72509,-74.00304,Entire home/apt,250,5,152,2019-06-23,1.69,1,109 +299531,Feel like you never leave your home,1220404,Tom,Brooklyn,East New York,40.66795,-73.89232,Entire home/apt,100,1,119,2019-06-30,1.39,2,289 +299699,Sunny apartment in Greenpoint,1557998,Eliza,Brooklyn,Greenpoint,40.72582,-73.95843,Entire home/apt,130,4,9,2018-04-02,0.10,1,188 +301034,Furnished Bedroom with private half bath,1550578,Ron,Manhattan,Harlem,40.80637,-73.95433,Private room,140,2,44,2019-06-26,0.49,1,260 +302057,Sunny private room featured in film,1555897,Alice,Brooklyn,Flatbush,40.64387,-73.96855,Private room,75,2,158,2019-01-02,1.77,1,168 +302758,Sunny 1BR East Harlem Apartment,8605,Dimitry,Manhattan,East Harlem,40.7968,-73.93611,Entire home/apt,150,7,12,2016-03-26,0.14,1,0 +303345,The best studio in town,1561505,Ibrahima,Manhattan,East Harlem,40.79596,-73.94463,Entire home/apt,90,3,51,2019-05-04,0.57,1,311 +303462,Fully Furnished 1B/1BTH UWS GEM 1 YR Sublease,1562045,Antonio,Manhattan,Upper West Side,40.78012,-73.98439,Entire home/apt,295,1,0,,,1,146 +304799,Penthouse Studio by Central Park,185753,Carolyn,Manhattan,Upper West Side,40.77508,-73.9799,Entire home/apt,150,2,11,2019-06-09,0.13,1,2 +305211,Your Own 2 Br Apt Bedford and Grand,1570170,Kristina,Brooklyn,Williamsburg,40.71532,-73.96064,Entire home/apt,180,3,236,2019-06-18,2.74,2,242 +306702,Spacious + Sunny Studio in Ft. Greene Brooklyn!,1577493,Tina,Brooklyn,Fort Greene,40.68786,-73.97421,Private room,135,3,16,2018-09-01,0.18,1,0 +306799,2 rooms; private entrance & bath!,1577961,Oona,Brooklyn,Bushwick,40.70793,-73.91987,Private room,65,5,123,2019-02-28,1.42,1,46 +309342,Giant Sunny Bedroom & Private Bath in my Apartment,1586945,Ben,Manhattan,Upper West Side,40.79044,-73.97513,Private room,99,3,14,2015-08-19,0.22,1,365 +310220,Prime location! Backyard & outdoor shower! Unique!,1590548,Magdalena,Brooklyn,Greenpoint,40.72668,-73.95762,Private room,149,14,65,2018-12-30,0.73,1,364 +310272,"Private Room in Artist's Home, Stapleton, SI",1390555,Jonathan,Staten Island,Clifton,40.62318,-74.07848,Private room,59,1,50,2019-06-03,0.56,1,352 +310325,Large Sunny Bedroom with Bay Window,745069,Kimberly,Manhattan,Harlem,40.82286,-73.94596,Private room,75,3,33,2019-06-10,0.39,3,301 +310338,Harlem/Hamilton Heights Sunny Room,745069,Kimberly,Manhattan,Harlem,40.82451,-73.94457,Private room,75,3,30,2019-01-01,0.35,3,322 +310524,Clinton Hill Duplex near Pratt w/Balcony!,1597481,Mary,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95927,Private room,75,3,13,2019-01-31,0.15,1,298 +310796,"Sunny 1 BR, West 80s & Central Park",1385157,Brian,Manhattan,Upper West Side,40.78443,-73.97399,Entire home/apt,109,30,18,2019-06-07,0.20,5,285 +311003,"2 BD / 2BA WITH GARDEN, SLEEPS 6",72747,Karen,Brooklyn,Crown Heights,40.67679,-73.95639,Entire home/apt,225,4,1,2013-04-21,0.01,1,342 +311343,COMFORTABLE ROOM,1601664,Junior,Manhattan,East Harlem,40.79107,-73.94381,Private room,86,3,216,2019-05-14,2.44,1,250 +311356,Charming Ridgewood Soulful Walk-Up,142147,Richard,Queens,Ridgewood,40.70215,-73.91139,Private room,52,2,98,2019-05-01,1.09,1,326 +312429,"Comfortable, well-appointed room",1606222,P,Brooklyn,Prospect Heights,40.67339,-73.96519,Private room,100,2,61,2019-06-02,0.86,1,90 +313890,2ND AVENUE OFF HOUSTON/LOFTLIKE STU,1613244,Ariel,Manhattan,Lower East Side,40.72209,-73.99274,Entire home/apt,99,30,13,2019-04-23,0.34,9,289 +314982,Share in NYC's trendy East Village,1617817,Chris,Manhattan,East Village,40.73171,-73.98717,Private room,89,3,136,2019-07-01,1.52,1,193 +316238,Historic Brooklyn 2-Bedroom Apt,279078,Andrew & Markus,Brooklyn,Bedford-Stuyvesant,40.69213,-73.951,Entire home/apt,135,2,39,2019-06-09,0.47,2,293 +317838,APT W/ OUTDOOR SPACE!! LONG TERM RENTAL PREFERRED!,1631400,Sean And Kiana,Manhattan,West Village,40.73237,-74.00608,Entire home/apt,199,14,65,2019-07-01,0.73,1,155 +317905,Come and go as you please in BKLN!,1631733,Jane,Brooklyn,Kensington,40.64354,-73.97777,Entire home/apt,89,3,62,2019-01-02,0.71,1,189 +318021,Room in Huge 1200sf W Harlem Suite,1632149,Michael,Manhattan,Harlem,40.80343,-73.9531,Private room,110,3,47,2019-06-30,0.57,1,248 +318187,"Huge, Sunny, Open Loft in Brooklyn",1633100,Ana,Brooklyn,Bushwick,40.70462,-73.9228,Entire home/apt,120,2,42,2019-06-20,0.48,1,238 +319724,Cozy Nook in Heart of Williamsburg,1639120,Jason,Brooklyn,Williamsburg,40.71394,-73.96267,Private room,59,3,207,2019-06-16,2.29,2,284 +319798,Peaceful Room...,9647066,Maria Luiza,Brooklyn,Bay Ridge,40.6339,-74.02035,Private room,49,4,72,2019-07-03,0.81,2,343 +319844,Cute Room in Historic Loft!,1639884,Nora,Brooklyn,Greenpoint,40.73028,-73.95927,Private room,79,14,22,2019-05-02,0.25,1,268 +320865,Harlem on the Range,1643782,Katy,Manhattan,Harlem,40.8076,-73.94433,Entire home/apt,135,30,25,2019-03-31,0.28,1,249 +320876,Amazing Park Slope Duplex with Deck,516347,Lillian,Brooklyn,South Slope,40.66485,-73.98343,Entire home/apt,185,2,215,2019-06-30,2.42,1,291 +320877,Entire 2 Bedroom Apartment in Williamsburg,1366194,Fabiana,Brooklyn,Williamsburg,40.71279,-73.95852,Entire home/apt,225,4,26,2017-06-24,0.73,1,0 +321014,Big Bright E Village 2BR (Baby Nursery),1644452,Erin,Manhattan,Gramercy,40.73294,-73.98282,Entire home/apt,245,5,18,2018-01-02,0.21,1,0 +321136,Private Manhattan Studio on Harlem/Heights Border,1644999,Candice,Manhattan,Washington Heights,40.83456,-73.9457,Entire home/apt,115,3,18,2018-12-31,0.21,1,31 +322037,"Luxury Williamsburg, Brooklyn LOFT",1649300,James,Brooklyn,Williamsburg,40.72091,-73.95814,Entire home/apt,325,2,320,2019-07-07,3.60,1,0 +322604,Artist Loft-McCarren Park-Williamsburg-BrooklynNYC,1651591,Todd,Brooklyn,Williamsburg,40.71819,-73.95414,Private room,95,2,160,2019-07-02,1.80,2,79 +322974,Chelsea/Meat Packing Artist Space!,1610852,Amanda,Manhattan,West Village,40.73887,-74.00342,Private room,120,2,78,2019-02-08,1.22,1,0 +323706,Elegant Spacious Family Townhouse,6064192,Ted And Diane,Manhattan,Upper West Side,40.77892,-73.98238,Entire home/apt,499,30,64,2018-08-03,0.72,1,157 +324115,Large Master Bedroom - Williamsburg,1639120,Jason,Brooklyn,Williamsburg,40.71336,-73.96192,Private room,75,2,219,2019-06-19,2.44,2,277 +324517,Central Park Fifth Av MET Museum,1660724,S,Manhattan,Upper East Side,40.77688,-73.96177,Private room,109,1,66,2017-12-10,0.94,1,353 +324800,Real Williamsburg Artist Loft,1661965,Mathias,Brooklyn,Williamsburg,40.71368,-73.94478,Entire home/apt,160,3,25,2018-12-22,0.29,1,0 +325429,Lovely Upper East Yorkville 1 BDRM,92788,Sara,Manhattan,Upper East Side,40.7761,-73.95265,Entire home/apt,219,4,102,2019-06-28,1.15,2,280 +326832,Cozy Upper East Side Studio,668564,Nitzan,Manhattan,Upper East Side,40.77471,-73.95574,Entire home/apt,159,2,32,2019-06-23,0.47,1,7 +326956,"Large Cozy Room #2, Landmark Home 1 Block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68625,-73.96446,Private room,180,3,15,2019-04-22,0.18,6,266 +327521,"Lovely studio in East Village, NY",82896,Esther,Manhattan,East Village,40.725,-73.98851,Entire home/apt,150,5,1,2015-11-16,0.02,1,0 +327778,NYC Summer Discount 1 BR Gramercy Apt,1675255,Jill,Manhattan,Kips Bay,40.74016,-73.97665,Entire home/apt,106,3,12,2019-06-30,0.14,1,271 +328040,"Awesome views, Central location",1676487,Robyn,Manhattan,Midtown,40.75023,-73.98293,Entire home/apt,299,10,19,2019-06-11,0.27,1,101 +328693,Spacious Manhattan Apartment near Central Park,1013131,Joseph,Manhattan,Upper West Side,40.78867,-73.96809,Entire home/apt,179,3,297,2019-06-24,3.37,1,205 +328744,Entire Apt: Sunny 2bd! 15min to NYC,890215,Duane,Brooklyn,Crown Heights,40.66604,-73.95914,Entire home/apt,165,3,12,2019-07-07,0.13,1,343 +329064,Your Historic House in Brooklyn,1680375,Marc,Brooklyn,Flatbush,40.63593,-73.96076,Entire home/apt,500,4,9,2017-01-02,0.11,1,0 +329310,Creative Director's Chinatown Loft,1681546,Todd,Manhattan,Chinatown,40.71638,-73.99167,Entire home/apt,250,15,9,2016-05-14,0.10,1,190 +329385,"HOSTING YOUR COZY, ECLECTIC MILIEU FOR NYC VISIT",312288,Paula,Manhattan,Inwood,40.86658,-73.92558,Private room,87,7,46,2019-05-25,0.62,2,310 +333189,Charming private room in New-York,1697784,Jonathan,Brooklyn,Williamsburg,40.71179,-73.96449,Private room,79,4,42,2019-06-24,0.47,2,52 +333323,Cozy bedroom near Times Square,1698391,Pat,Manhattan,Hell's Kitchen,40.76186,-73.99165,Private room,75,2,118,2019-07-01,2.11,3,312 +334607,Artist's Flat in Historic Building #10263,52043,Patrick,Brooklyn,Williamsburg,40.71417,-73.95917,Entire home/apt,200,30,53,2019-05-03,0.60,1,0 +334781,Queen size sofa bed in Harlem,547177,Chryslaine,Manhattan,Harlem,40.82772,-73.93877,Private room,80,1,15,2019-06-24,0.21,1,329 +335797,Bklyn 6 Beds 1 Bathroom Rental 2,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63602,-73.94607,Entire home/apt,115,3,64,2019-05-11,0.72,4,333 +335819,Bklyn 4 Beds 1 Bathroom Rental 3,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63759,-73.9459,Entire home/apt,115,3,51,2019-04-27,0.58,4,327 +335820,4 Beds 2 Bathrooms Rental 1,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63611,-73.94637,Entire home/apt,120,3,79,2019-04-29,0.88,4,349 +336220,Stylish & Quiet NYC Retreat!,1711529,Jason,Manhattan,Harlem,40.803,-73.95278,Private room,125,3,202,2019-06-19,2.29,1,217 +339456,"Bright, new luxury apartment in doorman building",1723485,Mary,Manhattan,Upper West Side,40.79526,-73.9655,Entire home/apt,387,1,23,2018-12-31,0.63,1,0 +341525,TIMES SQUARE MASTER BEDROOM!,1732559,J,Manhattan,Hell's Kitchen,40.75763,-73.99482,Private room,95,6,62,2019-06-01,0.76,2,80 +341982,"Lincoln Center Studio, Clean&Sunny!",483013,Yj,Manhattan,Upper West Side,40.77577,-73.98258,Entire home/apt,99,2,36,2015-08-23,0.45,1,0 +342027,Serenity amidst the busy city,168417,Marie,Manhattan,Upper East Side,40.77631,-73.95289,Entire home/apt,121,1,16,2019-06-16,0.19,2,351 +342965,Super Clean Apt by Columbus Circle,1740233,Gladys,Manhattan,Hell's Kitchen,40.76774,-73.9892,Entire home/apt,350,4,24,2017-09-21,0.27,1,362 +342995,Unique private room and bathroom in Brownstone,1740216,Laura,Manhattan,Harlem,40.81169,-73.94355,Private room,75,2,77,2019-07-01,0.88,2,144 +343276,TIMES SQUARE HOUSE!,1732559,J,Manhattan,Hell's Kitchen,40.75782,-73.99349,Private room,95,5,110,2019-05-26,1.27,2,43 +343971,Beautiful Room in a Beautiful New NYC Apartment,10609846,Ben,Manhattan,Harlem,40.83177,-73.95,Private room,89,1,56,2018-07-16,0.64,1,365 +344019,Best West Village/Meatpacking Space,1746209,R.,Manhattan,West Village,40.73104,-74.00879,Private room,195,1,7,2012-06-07,0.08,1,129 +344068,21 day Chelsea Apartment rental,1745312,Steven,Manhattan,Flatiron District,40.74253,-73.9916,Private room,160,21,0,,,1,0 +344092,"Heavy Sun, Quiet, Arty 1 Bedroom",1745402,Tony,Brooklyn,Sunset Park,40.64372,-74.02066,Entire home/apt,70,18,19,2016-07-13,0.22,1,0 +346248,Cosy apartment in West Village,1755339,Julie,Manhattan,Greenwich Village,40.72886,-74.00013,Private room,100,3,7,2015-05-31,0.09,1,0 +346805,Spacious Lower East Side Apt in NYC,562614,Beth,Manhattan,Lower East Side,40.71868,-73.99017,Entire home/apt,140,1,53,2014-10-28,0.60,1,0 +347865,ARTY 2 BED EAST VILLAGE GEM,251176,Jason,Manhattan,East Village,40.72143,-73.98117,Entire home/apt,189,3,265,2019-06-24,2.99,2,355 +349841,Williamsburg Loft: Amazing Sublet,202507,Nom,Brooklyn,Williamsburg,40.71682,-73.96369,Private room,160,5,0,,,1,0 +350168,Artist 2BR in Park Slope w/backyard,1774431,Kate,Brooklyn,Park Slope,40.67725,-73.9821,Entire home/apt,178,30,8,2018-01-02,0.10,1,280 +350525,Spacious 2BR near Botanic Garden,74777,Niki & Colin,Brooklyn,Crown Heights,40.66888,-73.95292,Entire home/apt,145,14,46,2018-06-19,0.52,1,38 +351530,Gorgeous brownstone next to park!,1747222,Sascha,Brooklyn,Park Slope,40.67188,-73.97533,Entire home/apt,125,5,6,2018-11-04,0.08,1,31 +351859,Exquisite Spacious Studio in Midtown,417652,Ron,Manhattan,Chelsea,40.74964,-73.99158,Entire home/apt,265,4,75,2019-07-01,0.86,1,324 +352651,COMFORTABLE LARGE ROOM,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.95057,Private room,77,5,11,2019-06-23,0.13,3,365 +352864,Cute Private room in Upper East Side #14,1786901,Shai,Manhattan,Upper East Side,40.78164,-73.94717,Private room,60,3,5,2019-06-29,1.47,9,0 +353317,Lower East Side 1bedroom apt in NYC,314377,Marc,Manhattan,Chinatown,40.71515,-73.99029,Entire home/apt,129,3,132,2019-06-23,1.49,1,171 +354095,Large Beautiful East Village 1-Bdrm,1474749,Jared,Manhattan,East Village,40.72986,-73.97913,Entire home/apt,199,6,41,2019-06-07,0.47,1,36 +355106,Big room near Prospect Park! NY!,1797859,Camila,Brooklyn,Prospect-Lefferts Gardens,40.66039,-73.95937,Private room,92,7,34,2019-04-07,0.39,1,332 +356230,It's so easy to get to EVERYthing!,1251762,Molly,Brooklyn,Crown Heights,40.66898,-73.9571,Entire home/apt,185,3,34,2014-06-09,0.39,1,0 +357509,Manhattan - Best Location in Midtown,684129,Ellie,Manhattan,Midtown,40.75407,-73.96713,Entire home/apt,110,7,27,2019-03-01,0.31,1,192 +359982,Sunny private room right off L train,1631288,Kay,Brooklyn,Williamsburg,40.70712,-73.94013,Private room,65,4,30,2019-04-13,0.34,1,139 +360400,Beautiful Room in Manhattan Loft,1386983,Candice,Manhattan,Midtown,40.74553,-73.98943,Private room,135,3,214,2019-06-02,2.45,2,167 +361803,"Luxury, Adorable Studio Apartment",1562039,Jennifer,Manhattan,Upper East Side,40.77584,-73.9502,Shared room,115,30,12,2018-04-15,0.14,1,0 +363320,HOME AWAY FROM HOME,390251,Lilly,Manhattan,Harlem,40.79967,-73.95156,Private room,175,2,6,2018-07-30,0.09,4,10 +363673,Beautiful 3 bedroom in Manhattan,256239,Tracey,Manhattan,Upper West Side,40.80142,-73.96931,Private room,3000,7,0,,,1,365 +364275,Den of Zen at The Denizen Bushwick,1840564,Rico,Brooklyn,Williamsburg,40.70507,-73.9353,Private room,72,3,156,2019-07-04,1.80,1,110 +364785,Sunny large private room in Park Slope,1842714,Susan,Brooklyn,Park Slope,40.67962,-73.97655,Private room,80,2,30,2018-12-29,0.74,1,0 +367042,Eastern Parkway Brooklyn 1BR Flat,774128,Andre,Brooklyn,Crown Heights,40.66847,-73.94875,Entire home/apt,125,5,1,2014-09-04,0.02,1,0 +367810,1400sf Manhattan View Artistic Loft,1728785,Veronika And John,Brooklyn,Greenpoint,40.7376,-73.95678,Private room,120,5,3,2019-04-24,0.09,1,242 +369411,"ingefära hus! Private room Williamsburg, Brooklyn",179679,Ginger,Brooklyn,Williamsburg,40.71148,-73.95573,Private room,94,2,272,2019-06-27,3.18,3,22 +369567,Private MasterBR w/ View of Museum,1863447,Luke,Brooklyn,Prospect Heights,40.67425,-73.96514,Private room,56,3,63,2019-01-01,0.82,1,0 +369671,LUXURY 2BD/2BTH - HUGE PATIO,1863713,Alix,Manhattan,East Village,40.72899,-73.97792,Entire home/apt,549,30,58,2019-07-01,0.66,1,200 +371138,"Comfy Brooklyn 2BD, W/ Backyard",1869567,Max,Brooklyn,Greenpoint,40.72488,-73.94013,Entire home/apt,190,2,5,2015-10-12,0.10,1,0 +373618,Authentic designer loft/roof deck best Williamsbrg,1879389,Christina,Brooklyn,Williamsburg,40.72212,-73.95696,Private room,129,3,63,2019-06-30,0.71,2,87 +374548,Sunny Retreat with Roof Garden,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68534,-73.93433,Entire home/apt,85,5,268,2019-07-02,3.04,2,202 +375249,Enjoy Staten Island Hospitality,1887999,Rimma & Jim,Staten Island,Graniteville,40.62109,-74.16534,Private room,20,3,80,2019-05-26,0.92,1,226 +377217,Great apt on the UWS - A RARE FIND!,1895957,Ido,Manhattan,Upper West Side,40.78161,-73.97898,Entire home/apt,145,3,22,2017-04-14,0.25,1,0 +378460,Cozy 2 BD in Midtown West,1900800,Geny,Manhattan,Hell's Kitchen,40.75643,-73.99046,Entire home/apt,200,7,13,2019-06-17,0.15,1,327 +380416,Park Slope Sunny Studio,438133,Ellis,Brooklyn,Park Slope,40.67407,-73.98111,Entire home/apt,125,4,23,2019-04-30,0.67,2,262 +380730,Luxury L-Shape Studio + 3 cats,1317588,Alexander,Brooklyn,Sheepshead Bay,40.59721,-73.95149,Entire home/apt,50,30,3,2018-12-04,0.08,1,0 +382523,A cozy Red Room with private bathroom,732535,William,Manhattan,Harlem,40.80491,-73.94866,Private room,160,3,10,2018-10-24,0.12,3,359 +382524,Cozy room with private bathroom & outside garden,732535,William,Manhattan,Harlem,40.80334,-73.94805,Private room,180,3,14,2019-04-04,0.16,3,348 +385190,"Beautiful 1 bdrm, Inwood Manhattan",1928213,Brace,Manhattan,Inwood,40.87039,-73.91611,Private room,100,1,20,2019-06-06,0.28,1,0 +385657,Beautiful Loft/10 min to Manhattan!,1930204,Sophia,Brooklyn,Williamsburg,40.704,-73.93285,Private room,70,5,2,2015-05-15,0.02,1,0 +385824,New York City- Riverdale Modern two bedrooms unit,1931205,Orit,Bronx,Spuyten Duyvil,40.87991,-73.91673,Entire home/apt,120,2,47,2019-07-03,1.22,1,318 +386555,A PLACE TO STAY CLOSE TO MANHATTAN,773928,Nen,Staten Island,Stapleton,40.62766,-74.07988,Private room,110,2,6,2019-01-01,0.19,1,363 +386744,Great room priv/bathrm Eastside location 70's ST,1935291,Cristina,Manhattan,Upper East Side,40.7685,-73.96034,Private room,105,7,93,2019-06-07,1.06,1,70 +386799,Midtown NYC - 1 Bedroom Apartment,1935605,Jon,Manhattan,Midtown,40.76082,-73.97548,Entire home/apt,250,3,116,2016-01-03,1.32,1,0 +387324,Cozy Room in Sunny Apartment (Long/Short Term),1828506,Yogi,Manhattan,Kips Bay,40.74238,-73.98122,Private room,74,240,15,2018-09-04,0.17,1,90 +387377,THERE'S NO PLACE LIKE HOME.........,390251,Lilly,Manhattan,Harlem,40.80151,-73.9522,Entire home/apt,165,2,70,2019-06-03,0.80,4,15 +387666,Cozy home in vibrant Manhattan,1939728,Michael & Aleksandra,Manhattan,Washington Heights,40.83434,-73.94027,Private room,99,3,4,2019-03-04,0.41,1,335 +387735,LOCATION LOCATION LOCATION Sara's,1146958,Liz,Manhattan,Gramercy,40.73677,-73.98084,Entire home/apt,125,30,128,2019-06-11,1.46,4,0 +389482,Quaint & Quiet in Queens,1947974,Constance F.,Queens,Briarwood,40.71151,-73.81561,Private room,75,1,59,2018-11-09,0.69,2,0 +391948,Single Room,1960128,Luana,Queens,Ozone Park,40.68581,-73.84642,Shared room,45,1,8,2015-09-30,0.11,2,364 +391955,Charming brownstone apartment,1960189,Rebecka,Brooklyn,Columbia St,40.68636,-74.00345,Entire home/apt,159,2,106,2019-06-24,1.22,1,34 +392948,Williamsburg near soho .support artist living,312722,Kristian & Di,Brooklyn,Williamsburg,40.70994,-73.96573,Private room,45,15,15,2019-06-26,0.57,4,242 +393016,Your Times Square Sanctuary,1303029,Kristina,Manhattan,Hell's Kitchen,40.76013,-73.99007,Private room,104,2,133,2019-05-05,1.51,1,147 +393094,Designer studio in Luxury Building,1965972,Alayna,Manhattan,Financial District,40.70621,-74.01525,Entire home/apt,225,4,27,2019-05-25,0.31,1,169 +393682,Private cozy bedroom in Nolita,1968502,Paola,Manhattan,Nolita,40.72172,-73.99689,Private room,100,5,61,2018-01-02,0.70,1,188 +394026,ArtistLoft-MccarenPark-Williamsburg,1651591,Todd,Brooklyn,Greenpoint,40.72049,-73.95221,Private room,90,2,2,2018-10-08,0.02,2,89 +394111,"Beautiful Bedrooms in Briarwood, NY",1947974,Constance F.,Queens,Briarwood,40.71068,-73.81577,Private room,75,1,16,2017-01-01,0.18,2,189 +394235,Flatiron-Designer's loft,1970839,Javier,Manhattan,Flatiron District,40.74125,-73.98862,Entire home/apt,350,7,0,,,1,0 +396636,Stylish Designer Studio with Piano,1981742,Daniel,Manhattan,Harlem,40.83091,-73.94223,Entire home/apt,135,5,38,2019-05-16,0.44,1,253 +397034,New York City for All Seasons!,70234,Richelle,Manhattan,Upper West Side,40.7824,-73.98294,Private room,125,1,25,2013-06-22,0.28,1,311 +397297,STUNNING E Vill Penthouse,1982209,Wendy,Manhattan,East Village,40.72634,-73.98267,Entire home/apt,225,3,93,2015-11-17,1.05,1,0 +397420,New York Host who knows The Most,1985717,Darktalia,Manhattan,Harlem,40.82703,-73.94311,Private room,85,3,6,2017-09-05,0.07,1,363 +398281,One Block From Central Park!,325790,Michael,Manhattan,Upper East Side,40.78521,-73.95489,Entire home/apt,200,7,30,2016-12-04,0.34,1,224 +398283,"PARK SLOPE: SWEET, LARGE 2BR DUPLEX",1989327,William,Brooklyn,South Slope,40.66106,-73.98316,Entire home/apt,250,3,17,2019-07-05,0.46,1,5 +399946,Light Superhosted Chill LES Apt,1996265,David,Manhattan,Lower East Side,40.72123,-73.98996,Private room,90,10,67,2019-05-16,0.77,1,301 +400039,Big Beautiful Railroad in Brooklyn,1488809,John,Brooklyn,Bushwick,40.70339,-73.92945,Entire home/apt,130,30,53,2017-06-30,0.68,1,0 +400466,"Bright Brooklyn Flat w/Park Views, 30 day minimum",1985759,Esther,Brooklyn,Prospect-Lefferts Gardens,40.66009,-73.96237,Entire home/apt,90,30,32,2016-10-11,0.37,1,50 +401579,"ECO-APT, free YOGA, 2 new bedrooms. Best location!",462379,Loretta,Brooklyn,Carroll Gardens,40.67939,-73.99398,Entire home/apt,298,30,131,2019-06-23,1.84,2,296 +401836,"Sunny UES 1.5 Bedroom, Sleeps 6",2005740,Maya,Manhattan,Upper East Side,40.76494,-73.95804,Entire home/apt,300,4,19,2019-05-21,0.22,1,84 +402037,Stay with a Jazz Singer in Harlem!,2006712,Amanda,Manhattan,Harlem,40.80192,-73.95827,Private room,125,1,0,,,1,365 +403056,Large Private Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79314,-73.94853,Private room,125,3,74,2019-05-28,0.84,3,212 +403264,Luxury room in Manhattan Duplex Apt,1386983,Candice,Manhattan,Midtown,40.7453,-73.99056,Private room,145,3,165,2019-07-03,1.88,2,181 +403668,"Gorgeous Sunny, Spacious 1 bdrm in East Village",2013117,Katya,Manhattan,East Village,40.72812,-73.97966,Entire home/apt,147,2,16,2019-01-02,0.18,1,0 +404502,ARTIST LOFT+OFFICE in PRIME WILLIAMSBURG!,242506,Jsun,Brooklyn,Williamsburg,40.7093,-73.96484,Private room,123,3,269,2019-06-05,3.09,3,158 +404923,Private Garden Entry,2017752,Jeruschka,Brooklyn,Windsor Terrace,40.64791,-73.97904,Entire home/apt,88,3,243,2019-06-24,2.75,1,217 +405025,LUXE Privé L.I.C. Apt & Garden,2018042,Megan,Queens,Long Island City,40.75453,-73.93377,Entire home/apt,215,2,59,2019-07-01,0.94,1,335 +405408,"Magazine SOHO Studio Loft. +Read our reviews!",2020431,M. C.,Manhattan,SoHo,40.72057,-73.99976,Entire home/apt,225,3,134,2019-06-22,1.53,1,231 +406926,Nolita apt. with private garden,2027134,Marie-Helene,Manhattan,Nolita,40.7234,-73.99439,Entire home/apt,269,28,81,2019-07-03,0.93,1,122 +406992,Family friendly Williamsburg Apt for Vacation!,1952186,Erin,Brooklyn,Williamsburg,40.71121,-73.94669,Entire home/apt,145,3,7,2016-10-22,0.08,1,270 +407469,BROWNSTONE TWO IN BROOKLYN in NYC,2015914,Majar,Brooklyn,Bushwick,40.68979,-73.91661,Private room,75,3,112,2019-05-26,1.28,8,330 +408491,Charming West Village One Bedroom,2034361,Marshall,Manhattan,Greenwich Village,40.73448,-73.99797,Entire home/apt,145,5,0,,,1,0 +408983,Brooklyn Brownstone full floor/garden ProspectPark,520189,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65937,-73.95906,Entire home/apt,229,2,92,2019-06-09,1.05,1,321 +409262,"Family friendly, steps to subway, large garden :)",1621363,Elizabeth,Brooklyn,Boerum Hill,40.68599,-73.98826,Entire home/apt,300,29,23,2019-02-14,0.26,2,312 +409293,Private Sunny Room Near Central Park & Mount Sinai,2010724,K. Naomi,Manhattan,East Harlem,40.79477,-73.95046,Private room,100,3,67,2019-05-28,0.76,3,345 +409666,"1 bdr apt, sunny & artsy, 4 min walk to the beach",405225,Olga,Brooklyn,Brighton Beach,40.5781,-73.95455,Entire home/apt,75,2,8,2016-09-18,0.10,1,2 +411336,"""Simple Perfect Soho""",2047776,Jennifer,Manhattan,Nolita,40.72278,-73.9967,Entire home/apt,225,2,244,2019-07-01,2.81,2,252 +411525,Beautiful Room + Private Balcony,1697784,Jonathan,Brooklyn,Williamsburg,40.71472,-73.96225,Private room,120,6,62,2019-05-17,0.70,2,15 +411918,"3 BR apartment Crown Heights, BKLYN",2050338,Verena,Brooklyn,Crown Heights,40.66924,-73.94406,Entire home/apt,160,5,125,2019-07-02,1.47,3,169 +412061,Brownstone Sunny & Spacious top fl,2051075,Linda,Brooklyn,Crown Heights,40.67259,-73.95489,Entire home/apt,125,30,58,2019-06-01,0.67,2,212 +412180,"Morocco in Brooklyn with the flyest loft, Amazing!",2051961,Kim,Brooklyn,Bedford-Stuyvesant,40.69321,-73.9442,Entire home/apt,95,5,9,2018-09-03,0.10,1,0 +413504,Perfect NYC/Williamsburg Location,1286417,Omri,Brooklyn,Williamsburg,40.71348,-73.94447,Private room,119,3,137,2019-06-13,1.57,1,296 +413775,Midtown East Sutton Area Entire Apt,2058589,Cary,Manhattan,Midtown,40.75816,-73.96457,Entire home/apt,275,2,16,2019-05-09,0.24,1,167 +413876,Finest Gateway to historic Financial District,2059155,Dan,Manhattan,Financial District,40.70537,-74.00992,Entire home/apt,160,1,36,2018-09-26,0.57,1,365 +414801,Industrial Brooklyn Loft with Tree-Lined Windows,319077,Shell,Brooklyn,Clinton Hill,40.68722,-73.96289,Entire home/apt,500,1,54,2019-03-24,0.65,4,365 +415304,Cute east village apartment.,2050328,Martis,Manhattan,East Village,40.73111,-73.98528,Entire home/apt,175,14,1,2016-05-31,0.03,1,0 +416557,"All Charm: Lush Garden, Huge Kitchen + Quiet",2714164,Jasmine,Brooklyn,Greenpoint,40.72212,-73.94389,Entire home/apt,87,6,39,2019-03-13,0.47,2,258 +417685,Bright and Quiet 2 BR in Park Slope,119588,Vero,Brooklyn,Park Slope,40.66626,-73.97933,Entire home/apt,160,1,145,2019-06-22,1.76,2,257 +418291,"Cozy, bright 1BR avail. in East Village apartment",626289,Marshall,Manhattan,East Village,40.72978,-73.9793,Private room,125,3,28,2019-06-25,0.33,1,364 +419373,Stylish Loft w/Lovely Backyard,2085639,Eada,Brooklyn,Bedford-Stuyvesant,40.68838,-73.94193,Entire home/apt,90,2,206,2019-06-30,2.40,1,236 +419792,Great Apt IDEAL Location 900 SF,2087636,Maddine,Manhattan,Lower East Side,40.71804,-73.98565,Entire home/apt,200,7,4,2019-05-04,0.22,1,0 +421554,Garden - Brownstone Experience,2096690,Richard,Brooklyn,Bedford-Stuyvesant,40.68559,-73.93896,Entire home/apt,250,15,37,2016-10-30,0.52,2,54 +422040,Gorgeous ! Best Location in NYC !,1090764,Lynda,Manhattan,Upper West Side,40.77995,-73.98342,Private room,99,30,27,2017-08-11,0.31,1,189 +424192,luxury 1 BedRoom Apt Hells Kitchen,2108853,Jasen,Manhattan,Hell's Kitchen,40.7559,-73.99469,Entire home/apt,325,30,18,2016-05-21,0.21,1,364 +424667,Luxury room + En-suite bath in Times Sq/Midtown W,2111060,Jj,Manhattan,Hell's Kitchen,40.76291,-73.99202,Private room,99,1,134,2019-04-02,1.54,1,265 +424767,"Chic, Spacious Loft + Backyard",2103888,Akari,Manhattan,Midtown,40.74406,-73.98273,Entire home/apt,325,2,197,2019-06-20,2.25,1,207 +424889,Sunny and Zen W. Village Studio of Your Own,2076827,Shelley,Manhattan,West Village,40.73041,-74.00498,Entire home/apt,129,7,5,2015-05-21,0.09,1,0 +424930,2BR Lux Prospect Heights,905122,Supriya,Brooklyn,Crown Heights,40.6764,-73.96218,Entire home/apt,130,28,5,2015-10-06,0.06,1,196 +425784,"An airy, comfy, bookish refuge!",2116807,Rafil,Brooklyn,Vinegar Hill,40.70279,-73.98284,Entire home/apt,190,4,8,2018-01-02,0.09,1,0 +428226,Bright & Vibrant- The BK experience,2128778,Rachael,Brooklyn,Crown Heights,40.67436,-73.956,Private room,55,2,62,2019-05-11,0.71,2,57 +430427,"Very clean, quiet bedroom available",820046,Elaine,Manhattan,Washington Heights,40.83559,-73.94095,Private room,60,2,13,2017-01-31,0.15,1,0 +430665,Lux One-bed Central Park View UWS,2141109,Kishore,Manhattan,Upper West Side,40.79234,-73.96482,Entire home/apt,250,1,8,2014-08-22,0.09,1,0 +431865,Elegant Uptown Historic District Garden Apartment,361855,Kurt,Manhattan,Washington Heights,40.83451,-73.93885,Entire home/apt,275,3,50,2019-06-30,0.87,2,277 +432090,Only 5 Min. to Manhattan!,2148881,Grace,Queens,Long Island City,40.74826,-73.94633,Private room,50,180,69,2016-09-28,0.79,1,0 +433218,Lovely 1 bdrm in Prospect Heights!,644941,Miya,Brooklyn,Prospect Heights,40.67763,-73.97185,Entire home/apt,125,4,41,2019-05-20,0.47,1,10 +433414,Spacious & Sunny in Prime Brooklyn,287733,David,Brooklyn,Clinton Hill,40.68472,-73.96691,Entire home/apt,150,20,89,2019-06-28,1.04,1,247 +433914,1 Bedroom Apt - Close to JFK & City,1906804,Terrance,Brooklyn,East New York,40.65408,-73.87883,Entire home/apt,70,4,40,2019-06-17,0.46,1,273 +434792,"1 br. studio duplex, Park Slope/Gowanus, Brooklyn",2117078,Joe,Brooklyn,Gowanus,40.67302,-73.98756,Entire home/apt,138,3,106,2019-06-07,1.22,1,189 +435774,A REAL New Yorkers Wall St,2164138,Suzanne,Manhattan,Financial District,40.70633,-74.00974,Entire home/apt,265,4,33,2018-11-25,0.39,1,0 +435776,ROOM AVAILABLE IN NEW YORK CITY,2164452,Robert,Manhattan,Upper East Side,40.77548,-73.95183,Private room,145,5,2,2017-10-03,0.09,1,365 +435909,Sunny West Village Dream,2165401,Andrew,Manhattan,West Village,40.73775,-74.00344,Entire home/apt,151,88,19,2016-12-24,0.22,1,249 +435946,SUNNY ZEN FULL SERVICE HUGE STUDIO,2165711,Alda,Manhattan,Financial District,40.70917,-74.0146,Entire home/apt,208,6,100,2019-06-14,1.14,1,310 +436510,Beautiful corner prewar apartment in Williamsburg,2168251,Jennifer,Brooklyn,Williamsburg,40.7108,-73.96226,Entire home/apt,200,3,16,2018-09-25,0.19,1,291 +436619,"Tranquil, Artsy, Sunny Bedroom",2168468,Cp,Manhattan,East Village,40.72507,-73.98861,Private room,110,2,64,2019-06-09,0.76,1,74 +436824,Room in Harlem,200243,Laetitia,Manhattan,Harlem,40.82726,-73.9444,Private room,58,1,17,2019-04-27,0.31,2,289 +436916,Room for the Summer,2169825,Serge,Manhattan,Harlem,40.82669,-73.94281,Private room,55,2,7,2016-10-11,0.08,1,0 +437352,Fantastic 2BR in Brooklyn's Best Area,290662,Seth,Brooklyn,Park Slope,40.67078,-73.98815,Entire home/apt,105,115,15,2018-12-31,0.17,1,219 +437906,GREAT 1BR/2BA TERRACE & W/D! in EV!,2175110,Ralph,Manhattan,East Village,40.728,-73.97903,Entire home/apt,350,5,4,2015-10-07,0.07,1,0 +438513,Big Beautiful Brooklyn Apt @ Park!,2177462,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.96181,Entire home/apt,150,3,87,2019-06-16,1.00,1,73 +439750,Perfect apt. above L train Graham stop,1566042,Haley,Brooklyn,Williamsburg,40.71517,-73.94292,Private room,55,150,10,2018-05-19,0.14,1,97 +439870,"Gorgeous Park Slope, BK triplex 4BD",1903758,Andrij,Brooklyn,Park Slope,40.66859,-73.98235,Entire home/apt,299,20,0,,,1,149 +442636,"Private,Affordable, 20 min to NYC!",1655939,Joris,Queens,Ridgewood,40.70054,-73.90255,Entire home/apt,77,3,289,2019-06-24,3.30,1,85 +442649,Lovely Chelsea 1 Bedroom,793225,Rachel,Manhattan,Chelsea,40.74572,-73.99965,Entire home/apt,125,9,10,2018-08-22,0.11,1,0 +443646,Classy 2.5 BR Brownstone w/ Garden,2204078,Michelle,Manhattan,Upper West Side,40.78911,-73.97396,Entire home/apt,395,14,39,2019-05-16,0.45,1,50 +444171,Upper Duplex in Brooklyn Brownstone,2206506,James,Brooklyn,Bedford-Stuyvesant,40.68813,-73.92817,Entire home/apt,189,7,7,2017-04-17,0.10,2,303 +444430,comfy room minutes from museums,420542,Danielle,Bronx,Mott Haven,40.81128,-73.92399,Private room,49,1,23,2018-03-27,0.27,1,333 +446367,"Best Block, NYC! July 25-Aug 18",2216673,Joy,Manhattan,Upper West Side,40.77593,-73.97699,Entire home/apt,90,4,22,2019-06-10,0.27,1,239 +447766,"Great 1 BR Apt in Kips Bay, NY",1109143,Mark,Manhattan,Kips Bay,40.73903,-73.97975,Private room,100,1,1,2014-08-21,0.02,1,6 +447840,Private Artist’s Apt/ Amazing Location!,242506,Jsun,Brooklyn,Williamsburg,40.71164,-73.965,Entire home/apt,299,2,5,2016-01-09,0.06,3,0 +448048,"1 BR, Book it 1st then write me",1267021,Sharma,Queens,Jackson Heights,40.75193,-73.87873,Private room,75,5,30,2019-05-24,0.37,3,180 +448049,"No Inq,Read it, 1 BR, Rt of Subway,",1267021,Sharma,Queens,Jackson Heights,40.74906,-73.89377,Private room,69,7,55,2018-09-30,0.64,3,318 +449034,Spacious Loft 5 min to Union Square,124357,Alex,Brooklyn,Williamsburg,40.71756,-73.95282,Private room,90,1,155,2019-06-07,1.78,3,328 +449130,Your Own Private Entrance Studio in Stylish Duplex,2229582,Yamil,Manhattan,Harlem,40.8179,-73.94319,Private room,94,1,95,2019-06-28,1.09,1,18 +449660,Art & Music Salon,2233165,Liz,Brooklyn,Windsor Terrace,40.64814,-73.97304,Private room,80,2,118,2019-06-16,1.35,1,353 +449680,Artfully Decorated 2 Bedroom Apt,1812871,Karen,Bronx,Longwood,40.81611,-73.89909,Entire home/apt,100,5,82,2018-12-15,0.96,1,63 +450009,Lavender Joy Room in Duplex!,2219255,Natalie,Brooklyn,Canarsie,40.62897,-73.90334,Private room,39,5,105,2019-06-09,1.21,3,34 +450577,1 bdrm brownstone-west 70's-1 block Central Park,2237267,Marjorie,Manhattan,Upper West Side,40.77555,-73.9767,Entire home/apt,250,3,73,2019-06-07,0.84,1,284 +450578,Serene Room...,9647066,Maria Luiza,Brooklyn,Sunset Park,40.6397,-74.0162,Private room,55,7,28,2019-05-12,0.32,2,333 +450905,Master Bedroom / ParkSlope Brooklyn,2228665,Martha,Brooklyn,Park Slope,40.67267,-73.98348,Private room,110,2,0,,,1,0 +452068,"Spacious 4 bedroom house, New York",2246071,Tamara,Brooklyn,Kensington,40.64205,-73.97173,Entire home/apt,200,1,3,2015-08-16,0.06,1,0 +452541,Brooklyn Apartment Windsor Terrace,2248545,Helen,Brooklyn,Windsor Terrace,40.66034,-73.9829,Entire home/apt,142,3,120,2019-07-01,1.40,1,222 +453094,Bedroom with Garden at the Back,137814,Waldemar,Brooklyn,Clinton Hill,40.68699,-73.9635,Private room,70,2,339,2019-06-23,3.88,3,333 +453161,"Family friendly, sunny new condo in McCarren Park",2107905,Laura,Brooklyn,Greenpoint,40.72183,-73.94908,Entire home/apt,260,2,7,2018-06-23,0.09,1,0 +453255,"Exciting Lower East Side, Loft Life",2252261,Stephanie,Manhattan,Lower East Side,40.71986,-73.9869,Entire home/apt,225,4,13,2019-04-29,0.15,1,195 +453317,Large Room w/ Private Entrance,1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68881,-73.95405,Private room,59,21,6,2013-11-01,0.07,3,0 +454334,Private spacious studio available,2257289,Toni,Manhattan,Harlem,40.81669,-73.94267,Private room,65,1,3,2014-12-31,0.03,1,0 +454763,For Cat-Lovers ONLY,2259061,Felo,Manhattan,Inwood,40.86717,-73.9194,Entire home/apt,99,20,11,2018-08-16,0.18,1,249 +454929,UNION SQUARE❤️PENTHOUSE 2FL+TERRACE❤️EAST VIllAGE,1385575,Alex,Manhattan,East Village,40.72981,-73.98318,Entire home/apt,239,2,67,2019-07-02,1.33,1,78 +455734,"Sunny, spacious 1-bedroom in Upper Manhattan",2265389,Laura,Manhattan,Inwood,40.86929,-73.92421,Entire home/apt,50,2,123,2019-07-02,1.47,1,21 +455801,Hello! Cozy-Singles NYC- Upper Manhattan- Harlem!!,2265770,Jeanine,Manhattan,Harlem,40.80533,-73.95204,Private room,65,4,109,2018-09-19,1.25,3,0 +456110,Beautiful One Bedroom in Chelsea,2267508,Daniel,Manhattan,Chelsea,40.7476,-73.99698,Entire home/apt,139,4,23,2015-10-04,0.27,1,0 +456190,"West Village Loft, 1st floor",2267864,Gary,Manhattan,West Village,40.73357,-74.00723,Entire home/apt,174,2,269,2019-06-29,3.15,2,167 +456457,West Village Gem - 2BR,1594083,David,Manhattan,West Village,40.73204,-74.00189,Entire home/apt,315,3,7,2016-08-29,0.08,1,0 +456526,Central Harlem Comfy Bedroom with Private Bath,2270183,Kaye,Manhattan,Harlem,40.81713,-73.94217,Private room,75,3,36,2019-06-23,1.76,1,47 +457829,Beautiful apartment in the heart of The Village,2275829,Lorena,Manhattan,East Village,40.72917,-73.98811,Entire home/apt,210,1,178,2019-07-01,2.06,1,0 +458154,"Cozy private room, williamsburg NYC",2268393,Javier & Jorge,Brooklyn,Williamsburg,40.7061,-73.94531,Private room,55,4,132,2019-06-10,1.51,2,195 +458377,Bright Spacious 2 Bedroom/5 Room - wRoof Deck,346366,Sarah,Brooklyn,Williamsburg,40.70147,-73.94378,Entire home/apt,229,3,12,2019-05-28,0.15,1,319 +459066,******AMAZING DEAL IN NYC*****,2282355,Ivana,Manhattan,Upper East Side,40.76719,-73.95303,Entire home/apt,150,2,23,2019-01-01,0.27,1,0 +460036,Great DEAL Gramercy 1 BDROOM /2beds,2287727,Jan,Manhattan,Kips Bay,40.74134,-73.98113,Entire home/apt,129,2,47,2019-06-08,0.55,1,177 +460999,Beautiful duplex apt in Harlem,128890,Sara,Manhattan,Harlem,40.8162,-73.94747,Entire home/apt,100,8,8,2019-03-28,0.11,1,0 +461050,Perfect Bedford L Williamsburg Location!,2286224,Sarah,Brooklyn,Williamsburg,40.71613,-73.95837,Entire home/apt,200,3,17,2016-05-12,0.20,1,67 +462454,Beautiful Lower East Side Apt! Women only.,2298239,Sunserae,Manhattan,Lower East Side,40.71746,-73.98782,Private room,89,5,4,2018-03-24,0.06,1,0 +463107,Historic 3 Bedroom Eastern Parkway,2301624,Miryam,Brooklyn,Crown Heights,40.66933,-73.93798,Entire home/apt,250,90,19,2018-12-16,0.22,1,311 +464231,Large Room w/ Private Entrance,1530310,Jacques,Brooklyn,Bedford-Stuyvesant,40.68905,-73.9541,Private room,65,7,2,2012-05-29,0.02,3,0 +465277,Sunny plant-filled apartment with 2 balconies,2065453,Ora & Scout,Brooklyn,Crown Heights,40.67615,-73.95441,Entire home/apt,68,2,35,2018-01-01,0.54,3,0 +466277,"W'burg 2 bedroom w/ yard & laundry, 5 mins to L",815977,Ryan,Brooklyn,Williamsburg,40.7111,-73.94643,Entire home/apt,235,3,108,2019-07-02,1.25,2,144 +466457,"Bright, Bedstuy Gem",2316542,Nicole Lavonne,Brooklyn,Bedford-Stuyvesant,40.68944,-73.9376,Entire home/apt,100,3,182,2019-07-01,2.15,1,220 +467569,Curated 1BR on the prettiest block of the LES,282315,Rj,Manhattan,Lower East Side,40.72106,-73.98384,Entire home/apt,311,3,31,2019-06-11,0.41,1,28 +467634,yahmanscrashpads,2321321,Lloyd,Queens,Jamaica,40.67747,-73.76493,Shared room,39,1,454,2019-06-18,5.27,1,353 +467866,"Our NY home, Greenwich Village apt",2321870,David,Manhattan,West Village,40.73123,-74.00591,Private room,100,2,199,2019-07-05,2.30,1,19 +468613,$ (Phone number hidden by Airbnb) weeks - room f,2325861,Cynthia,Manhattan,Lower East Side,40.72152,-73.99279,Private room,1300,1,0,,,1,0 +470090,Studio Apt. Lower East - Manhattan,2332430,Murch,Manhattan,Lower East Side,40.72147,-73.99208,Entire home/apt,210,1,230,2019-07-01,2.65,1,319 +470370,PRIVATE ROOM NEW YORK,2120259,Sue,Brooklyn,Crown Heights,40.66604,-73.95086,Private room,55,4,101,2019-06-24,1.19,4,170 +470498,*Unique Master BR in Battery Park!*,2334269,Filip,Manhattan,Battery Park City,40.71012,-74.01504,Private room,65,2,8,2015-12-22,0.13,1,0 +470709,Spacious sunny LOFT - best location,2335775,Diana,Brooklyn,Williamsburg,40.71856,-73.95166,Entire home/apt,165,30,154,2018-12-12,1.87,1,157 +471712,Beautiful Sunny Apartment in South Harlem,1274269,Aram,Manhattan,Morningside Heights,40.80661,-73.9576,Private room,89,28,69,2019-05-26,0.81,1,80 +471758,TriBeCa Amazing River View Loft 3BR,2339722,Francesca,Manhattan,Tribeca,40.72203,-74.00988,Entire home/apt,500,10,3,2018-06-19,0.05,1,0 +471845,Gorgeous Summer Duplex/Yard sublet,2220859,Verena And Dylan,Brooklyn,Bedford-Stuyvesant,40.68229,-73.94287,Entire home/apt,145,14,3,2013-09-01,0.04,1,0 +471914,Brooklyn one-bedroom right by Prospect Park!,2147438,Stephen,Brooklyn,Prospect-Lefferts Gardens,40.65955,-73.96066,Private room,110,4,12,2019-04-26,0.16,1,330 +472052,Luxury Doorman Bldg Nr Central Park,2341078,George,Manhattan,Upper West Side,40.77137,-73.98943,Entire home/apt,180,5,13,2014-08-22,0.15,1,0 +472376,Great Brooklyn Studio/1BR!,1689040,Rich,Brooklyn,Prospect Heights,40.67796,-73.96458,Entire home/apt,115,2,10,2016-05-23,0.17,1,0 +472546,Cozy place,1600988,Sweet Home,Brooklyn,Bushwick,40.6933,-73.90823,Entire home/apt,82,15,5,2019-01-04,0.06,1,311 +473592,AMAZING Private 1stop away from NYC 1 block Subway,2347382,Massi & Ray,Queens,Long Island City,40.7502,-73.94189,Private room,70,1,144,2019-06-17,1.68,2,340 +473777,Bright Modern Artist's Apartment,2348973,Koren,Brooklyn,Williamsburg,40.71285,-73.94383,Entire home/apt,155,5,10,2017-02-19,0.12,1,0 +474283,Studio apartment by Columbus Circle,950232,Deborah,Manhattan,Hell's Kitchen,40.76487,-73.98471,Entire home/apt,117,7,0,,,1,0 +475216,Studio Apt in Park Slope- Brooklyn!,2355439,Kara,Brooklyn,Sunset Park,40.66387,-73.99077,Entire home/apt,100,2,17,2015-07-27,0.20,1,0 +476527,1RW- CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72893,-73.98278,Entire home/apt,89,30,57,2019-05-05,0.67,6,0 +476570,3RE - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.73009,-73.9827,Entire home/apt,89,30,70,2019-03-09,0.83,6,4 +476571,2RE - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72955,-73.98298,Entire home/apt,99,30,62,2019-01-10,0.74,6,8 +476899,NYC studio in ST MARKS PLACE & 1AVE,2363997,Teresa,Manhattan,East Village,40.72693,-73.98521,Entire home/apt,155,6,17,2018-10-11,0.20,1,0 +476983,"PRIVATE Room in Spacious, Quiet Apt",277379,Agnes,Manhattan,Harlem,40.82537,-73.94392,Private room,85,1,439,2019-07-05,5.12,2,238 +478053,Great LES / Chinatown bedroom,2368753,Kristine,Manhattan,Two Bridges,40.71137,-73.99403,Private room,80,4,48,2019-01-06,0.56,1,96 +478385,Sunny Midtown East Apt w/ a Loft!!!,2368133,Jimmy,Manhattan,Kips Bay,40.74428,-73.97809,Entire home/apt,135,3,134,2019-06-29,1.56,1,236 +478832,Gorgeous 2 bdrm in Carroll Gardens,2371814,Jennifer,Brooklyn,Carroll Gardens,40.67579,-73.99968,Entire home/apt,150,6,2,2014-05-20,0.03,1,0 +478949,"Spectacular Lux 1 Bed Apt, Best Location, Terrace!",1130454,Samir,Manhattan,Chelsea,40.74087,-74.00226,Entire home/apt,380,3,16,2017-11-04,0.19,1,0 +479002,Brooklyn Brownstone w/ Beautiful Garden,1708956,Josh,Brooklyn,Fort Greene,40.68723,-73.96897,Entire home/apt,450,2,31,2019-07-03,1.14,1,30 +479263,Mini Loft Williamsburg Bkln-Bedford,2373905,Jaime,Brooklyn,Williamsburg,40.7182,-73.95763,Entire home/apt,145,30,36,2019-01-19,0.42,1,342 +479285,Rent in beautiful Sunnyside Gardens for holidays,2374190,Jazmin,Queens,Sunnyside,40.74679,-73.91853,Private room,80,3,1,2012-12-30,0.01,1,330 +479867,Williamsburg 2b apartment with deck,2377104,Hannah,Brooklyn,Williamsburg,40.71739,-73.95472,Entire home/apt,225,2,338,2019-07-07,3.90,2,225 +480549,"Studio 54, Cozy Room For 2",2361715,Ron,Manhattan,Upper West Side,40.77099,-73.9898,Private room,99,3,117,2017-12-11,1.41,1,0 +481022,Super Cute Junior 1BR in LES!!,2382189,Candice,Manhattan,Lower East Side,40.7195,-73.98022,Entire home/apt,125,1,261,2019-06-22,3.24,1,212 +482365,GREAT BRAND NEW 1 BED APT*TIMES SQ,914838,Lior,Manhattan,Hell's Kitchen,40.75636,-73.9939,Entire home/apt,80,30,32,2017-01-31,0.37,7,365 +482765,Beautiful Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.68834,-73.97875,Private room,100,2,112,2019-06-30,1.30,2,12 +483414,Best double Room all included wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68586,-73.94837,Private room,55,2,22,2019-05-20,0.26,4,297 +483485,Downtown Full Floor Loft,1492619,Wallace,Manhattan,Civic Center,40.71164,-74.00774,Entire home/apt,328,2,319,2019-07-02,3.78,1,112 +483505,Perfect & Stylish Williamsburg Apt,2393537,Jodi,Brooklyn,Williamsburg,40.70743,-73.96728,Entire home/apt,142,7,69,2019-06-20,0.85,1,261 +484297,Large home in most desirable Brooklyn hood!,2397411,John,Brooklyn,Clinton Hill,40.68545,-73.96534,Entire home/apt,350,4,10,2018-09-12,0.12,1,0 +484312,Loft-Like Park Slope 3bdr Duplex,2306962,Hana,Brooklyn,Windsor Terrace,40.65854,-73.98384,Entire home/apt,300,2,24,2019-02-20,0.39,1,23 +484728,Modern 1br by ocean in Brooklyn,2396741,Alex,Brooklyn,Fort Hamilton,40.61269,-74.03381,Entire home/apt,105,30,3,2017-08-12,0.05,1,30 +485026,Sunny Apt in Brooklyn-Close to Manhattan,2400932,Jackie'S Place,Brooklyn,Gowanus,40.67858,-73.98537,Private room,125,31,17,2014-06-30,0.20,2,331 +486350,Great 2 bedroom apartment in Williamsburg!,2407024,Michael,Brooklyn,Williamsburg,40.70821,-73.95352,Entire home/apt,225,7,13,2016-08-21,0.15,2,0 +488083,Nice apartment with a deck!,619154,Keith,Brooklyn,Sunset Park,40.66158,-73.98954,Entire home/apt,92,2,58,2019-05-27,0.67,1,0 +489018,Lovely Central East Village 2 Person Entire Apt,864370,Mick & Heidi,Manhattan,East Village,40.72457,-73.98453,Entire home/apt,185,2,62,2019-06-23,0.74,1,0 +489365,PRIME LOCATION STYLISH COMFORT,2420670,Carter,Brooklyn,Williamsburg,40.71689,-73.95706,Entire home/apt,226,3,203,2019-06-27,2.85,1,38 +489924,South Slope Private Bedroom,1027283,Kelly,Brooklyn,Sunset Park,40.66221,-73.99743,Private room,50,2,33,2019-06-30,0.39,1,20 +489965,A Gem in Harlem - Modern Living,2423067,Clara,Manhattan,East Harlem,40.79313,-73.93493,Private room,80,3,47,2019-03-09,0.66,2,0 +490011,Great for families!,2423401,Peter,Brooklyn,Carroll Gardens,40.68444,-73.99904,Private room,200,5,0,,,1,342 +490278,Lovely 1BR - Midtown East by metro!,2424873,A.B.,Manhattan,Midtown,40.75632,-73.96464,Entire home/apt,99,14,30,2018-03-02,0.35,1,317 +490989,Cat lovers: 3-story Park Slope Townhouse with cat!,2427385,Andy,Brooklyn,Park Slope,40.67996,-73.98027,Entire home/apt,68,3,2,2017-03-29,0.05,1,0 +491123,Cozy Love Nest Prospect Heights,2427868,Ada,Brooklyn,Prospect Heights,40.67369,-73.96589,Private room,102,2,121,2019-06-17,1.60,1,361 +491529,3 bdrm family friendly home in central Park Slope,2429432,Julie,Brooklyn,Park Slope,40.67211,-73.976,Entire home/apt,220,3,27,2019-05-17,0.45,1,68 +491942,Renovated Spacious 1BR Upper West,1995093,Carly,Manhattan,Upper West Side,40.79183,-73.97172,Entire home/apt,199,3,24,2016-10-09,0.30,1,0 +491977,Stylish Large 1bd APT in Chinatown/Tribeca NYC,2431528,Christine,Manhattan,Chinatown,40.71456,-73.99978,Entire home/apt,165,5,22,2019-05-11,0.26,1,316 +493177,Two Bridges District Chinatown NYC,2436633,Gelya,Manhattan,Chinatown,40.71668,-73.99073,Entire home/apt,150,2,162,2019-06-16,1.92,1,231 +493611,Huge sunny artist loft +roof garden,1407251,Ute,Brooklyn,Gowanus,40.67862,-73.98561,Entire home/apt,385,1,66,2019-05-19,0.76,2,363 +494296,Brooklyn waterfront large sunny apt,2442340,Maddy,Brooklyn,Columbia St,40.68721,-74.00147,Private room,75,7,0,,,1,0 +494937,"The SoHo Loft - Huge Penthouse - 1,200 sqft",1527535,Jean-Marie,Manhattan,SoHo,40.72162,-74.00414,Entire home/apt,499,2,63,2019-07-07,0.76,1,26 +495249,10min Walk & 15mins to Tourist Spot,2446219,Biren,Queens,East Elmhurst,40.75541,-73.89239,Private room,85,1,219,2019-06-14,2.63,2,305 +495348,Classic Brooklyn Brownstone,2389885,Megan,Brooklyn,Fort Greene,40.69011,-73.97691,Entire home/apt,160,4,2,2013-03-31,0.03,2,34 +496166,"Beautiful, Spacious 4 BR Brooklyn Brownstone",2450665,D,Brooklyn,South Slope,40.66641,-73.98283,Entire home/apt,249,3,12,2019-07-01,0.27,1,26 +497370,Carroll Gardens Carriage House,2455462,Elizabeth (And Jeff Too),Brooklyn,Gowanus,40.67828,-73.99136,Private room,80,2,35,2017-05-30,0.41,1,189 +498052,Modern private room in condominium,2426779,Regina,Brooklyn,Williamsburg,40.71483,-73.96216,Private room,120,1,124,2019-06-10,1.46,1,292 +498120,Hi Traveler.. welcome,2459648,Ellen,Bronx,Allerton,40.8687,-73.8524,Private room,35,7,2,2018-07-23,0.17,1,90 +498859,"NYC 30 min by Subway, Brooklyn 2",2462260,Dimitry,Brooklyn,Brighton Beach,40.5822,-73.96392,Entire home/apt,169,4,63,2019-07-06,1.27,1,323 +500845,Trendy Nest in the East Village,1336370,Bojan+Margaret,Manhattan,East Village,40.72686,-73.9797,Entire home/apt,220,4,162,2019-06-21,1.88,1,341 +500886,BEAUTIFUL ROOM IN BKLYN BROWNSTONE,2206506,James,Brooklyn,Bedford-Stuyvesant,40.68825,-73.92951,Private room,85,3,103,2019-06-15,1.25,2,344 +501041,UPWS sunny DUPLEX +PATIO,1386685,Aleksandra,Manhattan,Upper West Side,40.78451,-73.97882,Entire home/apt,300,7,0,,,1,0 +501082,Private Bdrm & Bath-30-night min-Weekly Maid Serv.,2471671,Joyce,Manhattan,Harlem,40.82392,-73.94205,Private room,79,30,185,2019-06-07,2.15,1,302 +501098,Private Bedroom in Wooden House,2472680,Fanny,Brooklyn,Williamsburg,40.71384,-73.9474,Private room,90,4,219,2019-06-15,2.54,1,30 +501693,Room w/pvt bathroom on Central Park,1490833,Patrick,Manhattan,Upper West Side,40.7952,-73.9624,Private room,99,1,280,2019-06-23,3.51,1,246 +502132,Beautiful Downtown Manhattan Share,48599,Anastasia,Manhattan,Chelsea,40.73942,-74.00009,Shared room,50,1,61,2017-05-07,0.71,2,0 +502309,"Sunny Rm #1, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65524,-73.95646,Private room,46,1,184,2019-06-10,2.14,5,362 +502429,Park Slope duplex with backyard,2100968,Elodie,Brooklyn,South Slope,40.66153,-73.98554,Entire home/apt,325,3,116,2019-07-07,1.37,1,203 +503460,Spacious Apartment w extra room,2483236,Caitlin,Staten Island,New Springville,40.59274,-74.16178,Private room,68,2,11,2018-10-22,0.24,1,88 +503529,HEART OF SOHO The Perfect One Bedroom Apt,2483293,Eric,Manhattan,SoHo,40.72701,-74.0011,Entire home/apt,198,3,9,2019-02-23,0.10,1,0 +503585,Charming & Spacious One Bedroom,2483766,Rebecca (Marks),Brooklyn,Bedford-Stuyvesant,40.68607,-73.95839,Entire home/apt,100,5,4,2013-07-14,0.05,1,0 +503722,Hip Stylish WIlliamsburg Studio,2484383,Theresa,Brooklyn,Williamsburg,40.71345,-73.95689,Entire home/apt,175,2,15,2019-06-03,0.29,1,64 +503790,SLEEK WEST VILLAGE ARTIST STUDIO LOFT,2484654,Michele,Manhattan,West Village,40.73214,-74.00188,Entire home/apt,130,4,22,2019-05-26,0.28,1,77 +504322,Sunny 1BD in Greenwich Village,471928,Mahalia,Manhattan,Greenwich Village,40.72903,-74.00028,Entire home/apt,180,3,18,2017-07-01,0.21,1,0 +504362,1760 Sq ft Penthouse apartment,2487309,Eric,Brooklyn,Prospect Heights,40.67823,-73.97007,Entire home/apt,209,3,56,2019-07-04,0.65,1,160 +504394,"Charming, Retro Apt on the UWS",2487319,Erin,Manhattan,Upper West Side,40.79842,-73.96903,Entire home/apt,150,4,2,2014-09-03,0.03,1,141 +504437,The biggest small apt in Manhattan,2356449,Mariana,Manhattan,Lower East Side,40.72232,-73.98686,Entire home/apt,104,3,57,2019-06-30,0.70,1,6 +505029,SPACIOUS Fabulous Sunny Loft for 2 wks in Fall,2490471,Ann,Manhattan,East Village,40.72454,-73.97944,Entire home/apt,175,4,13,2018-11-16,0.17,1,0 +505231,"Enjoy a 1 Bedroom to share, NYC",2490915,Catherine,Manhattan,Upper East Side,40.77799,-73.95223,Private room,80,1,1,2012-06-22,0.01,1,0 +505315,Charming ROOM(s)*Lovely BUSHWICK Block*25min->City,167417,Kelly,Brooklyn,Bushwick,40.69227,-73.90852,Private room,68,2,37,2019-06-23,0.49,1,23 +506121,Cozy Room in Lively East Village,2267153,John,Manhattan,East Village,40.7276,-73.98347,Private room,72,5,451,2019-06-30,5.26,2,13 +506527,Modern Sunny 2 Bedroom Apartment,864735,Jason,Queens,Astoria,40.75782,-73.92129,Entire home/apt,107,30,24,2019-04-30,0.29,8,262 +506571,Large sunny 1br apt in East Village,2349977,Anthony,Manhattan,East Village,40.72756,-73.97939,Entire home/apt,150,7,19,2019-03-22,0.32,1,24 +506575,Bronx Room Near Yankees + Harlem,2001830,Jose And Ysaira,Bronx,Morris Heights,40.84937,-73.91328,Private room,45,3,190,2019-06-06,2.21,2,329 +507393,Ready private furnished room w/Wifi,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94724,Private room,49,2,46,2019-05-27,0.54,4,301 +509989,Artist's Ditmas Pk 5 bedroom house,2472305,Rick,Brooklyn,Flatbush,40.64229,-73.96548,Entire home/apt,349,1,169,2019-06-23,2.08,1,344 +510218,Spacious Upper West Side 1-Bedroom,2513726,Margaret,Manhattan,Upper West Side,40.79218,-73.97926,Entire home/apt,185,2,165,2019-06-18,1.92,1,259 +510454,"Gramercy Pk Area, w Rooftop Gdn!",2515124,Jacqueline,Manhattan,Kips Bay,40.73951,-73.98146,Entire home/apt,145,3,2,2016-06-23,0.02,1,0 +511436,"Wake up to the skyline of the city, prime location",2519356,Darya,Brooklyn,Williamsburg,40.7139,-73.96553,Entire home/apt,96,3,1,2018-05-26,0.07,1,0 +511733,"Artist Loft @ Bushwick, Brooklyn",1840766,Samantha,Brooklyn,Bushwick,40.70753,-73.92048,Entire home/apt,120,5,3,2015-09-20,0.04,1,0 +511960,Wonderful east village floor thru,2521848,Gay,Manhattan,East Village,40.73044,-73.98683,Entire home/apt,160,1,15,2016-05-09,0.18,1,0 +512209,Your own townhouse in Bklyn Heights,2521513,Amy,Brooklyn,Brooklyn Heights,40.69964,-73.99299,Entire home/apt,800,3,60,2019-01-01,0.70,1,67 +512210,The Brooklyn Woodworker 3bdrm/2bth,2522854,Rich,Brooklyn,Crown Heights,40.67709,-73.95237,Entire home/apt,349,2,320,2019-06-22,3.85,1,260 +512775,The Cottage / 1500 sqft. of Privacy,2396295,Richard,Queens,Long Island City,40.75296,-73.93716,Entire home/apt,350,2,182,2019-06-11,2.20,1,272 +513343,"Cozy, Hella Sunny, and Convenient!",2528671,Dennis,Brooklyn,Prospect Heights,40.67717,-73.96915,Entire home/apt,125,30,1,2012-07-11,0.01,1,341 +513688,Boerum Hill Brownstone Garden Duplx,2530670,Tiffany,Brooklyn,Boerum Hill,40.68586,-73.9809,Entire home/apt,350,2,134,2019-07-07,1.56,1,56 +514457,Brownstone Beauty with Deck,2096690,Richard,Brooklyn,Bedford-Stuyvesant,40.68543,-73.93838,Entire home/apt,150,10,10,2019-05-26,0.17,2,185 +514548,Loft Apt and Art Studio: 4-month rental,2533991,Amanda,Brooklyn,Bushwick,40.69849,-73.92678,Entire home/apt,180,30,0,,,1,352 +515392,Beautiful Brand New Chelsea Studio,2538544,Michael,Manhattan,Chelsea,40.74348,-73.9998,Entire home/apt,200,1,60,2019-06-02,0.78,1,260 +516452,"Big, Bright, and Beautiful",2542888,Catrinel,Brooklyn,Fort Greene,40.68679,-73.97378,Entire home/apt,99,30,5,2019-05-12,0.06,1,242 +516461,Great studio apt in midtown west!,2542895,Aaron,Manhattan,Chelsea,40.75086,-73.99776,Entire home/apt,130,5,9,2016-08-04,0.10,1,0 +516643,"Williamsburg Apt, close to metro L",2543761,Stephane,Brooklyn,Williamsburg,40.71915,-73.95581,Entire home/apt,150,3,1,2013-01-04,0.01,1,0 +516791,Lovely Brooklyn Apt,696306,Bethany,Brooklyn,Kensington,40.64625,-73.97932,Entire home/apt,90,10,33,2019-05-22,0.39,1,269 +517626,Above Graham stop - L train,2438262,Walker,Brooklyn,Williamsburg,40.71577,-73.94084,Private room,95,1,10,2014-12-03,0.14,1,0 +517654,Beautiful apt 10 min to Wbrg!,78742,Joni,Queens,Ridgewood,40.70278,-73.90153,Entire home/apt,70,30,3,2015-08-15,0.04,1,0 +518566,"Gorgeous, charming Upper East private room",1497427,Andrea,Manhattan,Upper East Side,40.77108,-73.95967,Private room,82,3,10,2019-05-15,0.13,2,251 +518576,3 bedroom duplex apt with backyard,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68812,-73.94627,Entire home/apt,250,30,62,2019-07-02,0.73,3,292 +518960,Cozy and quiet with secret garden,2155832,Federico,Manhattan,Harlem,40.82823,-73.94691,Entire home/apt,90,4,266,2019-07-04,3.17,1,150 +519310,YOU ROOM IN NYC,1366310,Janina,Queens,Woodside,40.74377,-73.91225,Private room,75,2,251,2019-07-07,2.92,2,317 +521018,1BR Loft in Brooklyn,2562882,Brendan,Brooklyn,Clinton Hill,40.69432,-73.96481,Entire home/apt,160,14,3,2016-04-28,0.04,1,0 +521038,Cozy room in 2 bedrm apt in amazing Harlem!,2563132,Ghislaine,Manhattan,Harlem,40.82749,-73.9382,Private room,115,7,8,2012-12-25,0.09,1,178 +521522,Beautiful 3 room studio in Brooklyn,2440317,Amelia,Brooklyn,South Slope,40.66777,-73.98367,Private room,150,4,5,2012-12-31,0.06,1,0 +521672,Luxury Loft in Creative & Fun Apt,1720619,Glace,Brooklyn,Williamsburg,40.71423,-73.95305,Private room,89,4,160,2019-06-21,1.92,1,23 +521806,Airy 1BR nice area Queens nr subway,2389494,Anya,Queens,Rego Park,40.72719,-73.86166,Entire home/apt,69,5,5,2019-05-17,0.10,1,4 +522081,Guest Room in Art Loft in Chelsea,1413546,Asher,Manhattan,Chelsea,40.74341,-73.99298,Private room,170,2,183,2019-06-14,2.19,2,254 +523123,Tranquility & convenience in Bklyn,2572253,Carl,Brooklyn,South Slope,40.66051,-73.98495,Entire home/apt,375,5,19,2018-12-30,0.23,1,43 +524111,"Convenient East Village Studio,",62508,Leigh,Manhattan,East Village,40.72915,-73.98019,Entire home/apt,118,3,141,2019-06-24,1.66,1,13 +525120,Very cute quiet Studio in chelsea,184883,Noele,Manhattan,Chelsea,40.74767,-74.01061,Entire home/apt,135,6,42,2019-05-27,0.49,1,170 +525293,Yankee Nest,2556498,Chris,Bronx,Concourse,40.82822,-73.92439,Entire home/apt,250,3,119,2019-07-01,1.41,1,339 +525388,Greenpoint gypset retreat,787204,Jenna,Brooklyn,Greenpoint,40.73067,-73.955,Entire home/apt,200,7,20,2019-06-23,0.24,1,365 +525412,Beautiful sunny Nolita/Soho Apt,1104814,Robert,Manhattan,Nolita,40.72246,-73.99552,Entire home/apt,150,5,5,2015-06-28,0.06,1,0 +525523,Comfortable Private Room in Upper Manhattan 2BR,2582890,Kim,Manhattan,East Harlem,40.80762,-73.94017,Private room,50,2,16,2018-07-04,0.62,1,60 +526520,Large light-filled Apt in Brooklyn,2576980,Eleanor,Brooklyn,Prospect Heights,40.67786,-73.97166,Private room,60,2,0,,,1,0 +526532,Beautiful Spacious Brownstone,2492286,Reena,Manhattan,Harlem,40.80719,-73.94253,Entire home/apt,100,2,24,2018-09-10,0.29,1,0 +526923,Come stay in super comfy and cozy!,2589521,Lisbeth,Manhattan,Flatiron District,40.74129,-73.98374,Entire home/apt,265,3,26,2019-06-15,0.32,1,341 +526942,UES Jewel-Private Long Term Rental,2205455,Wendy,Manhattan,Upper East Side,40.77761,-73.94606,Private room,90,30,3,2018-09-14,0.04,1,128 +527076,"Great 1BR, 1BaR in Lux Bldg w Pool",2590219,Kyle,Manhattan,Upper East Side,40.76413,-73.96227,Entire home/apt,175,2,0,,,1,0 +528485,lovely private room in South Park Slope,17985,Sing,Brooklyn,Sunset Park,40.66119,-73.98822,Private room,36,10,5,2019-04-30,0.07,2,44 +530247,☆ Home Away From Home <3 of NYC! ☆ 2BR ENTIRE HOME,2604437,Lane,Manhattan,Upper West Side,40.78339,-73.98003,Entire home/apt,250,4,2,2014-06-28,0.03,2,0 +530431,"Bright, Renovated 1BR in Brownstone",2605064,Larah,Manhattan,Harlem,40.80654,-73.95019,Entire home/apt,220,3,194,2019-07-04,2.42,1,338 +530576,"1bedroom, 70s UWS,brownstone charm",263510,Sandy,Manhattan,Upper West Side,40.78111,-73.97739,Private room,93,14,88,2019-06-28,1.03,1,176 +530632,Sunny + Charming 2 BR in Brooklyn Brownstone,1816331,Justine,Brooklyn,Crown Heights,40.67147,-73.94979,Entire home/apt,275,5,2,2018-10-18,0.10,1,357 +531091,King size bedroom in 2 bed apartment,1787284,Dragan,Queens,Astoria,40.75532,-73.91603,Private room,109,30,304,2019-06-19,3.70,1,0 +531208,Industrial Loft in Williamsburg,2495836,Sofia,Brooklyn,Williamsburg,40.70762,-73.96764,Entire home/apt,450,2,11,2014-07-08,0.13,1,0 +531258,1 BR Village - 30 day+ stay,2609535,Alexandra,Manhattan,Greenwich Village,40.7311,-73.99913,Entire home/apt,165,30,19,2018-10-15,0.23,1,259 +531455,Nice one bedroom apartment by the Prospect park,1445298,Gita,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.96294,Entire home/apt,80,7,23,2019-06-05,0.27,1,20 +532288,A Little West Village Charm,683230,Thomas,Manhattan,Greenwich Village,40.73176,-73.99895,Private room,295,5,103,2019-06-30,1.25,3,350 +532749,"Very Large, Airy, and Bright Loft -Williamsburg",2617850,Matthew,Brooklyn,Williamsburg,40.71606,-73.95526,Entire home/apt,280,7,82,2019-06-21,0.98,1,41 +533168,Spacious Nolita 2 Bd w/roof garden,2620162,Olivia,Manhattan,Nolita,40.72184,-73.9944,Entire home/apt,300,30,92,2019-06-08,1.09,1,106 +533506,2RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72829,-73.98156,Entire home/apt,99,30,66,2019-07-03,0.77,6,0 +533625,Sunny 2 Bedroom Duplex with Garden,367815,Liz,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95677,Entire home/apt,175,3,18,2018-10-08,0.35,2,0 +533927,Large NYC Chelsea Studio - King Bed,2624738,Michael,Manhattan,Chelsea,40.74403,-73.99581,Entire home/apt,225,4,153,2019-06-24,2.03,1,205 +534897,"CHELSEA APT- SPACE, LIGHT, BEAUTY! ",2426404,Judith & Reid,Manhattan,Chelsea,40.74552,-74.0006,Entire home/apt,230,6,6,2015-06-12,0.09,1,0 +535095,Beautiful bedroom in Prospect Heights,598770,Maite & Javi,Brooklyn,Prospect Heights,40.6744,-73.96558,Private room,90,7,43,2019-06-29,0.52,1,38 +535352,Upper West Side 1-bedroom,2630351,Dawn,Manhattan,Upper West Side,40.79358,-73.97043,Entire home/apt,102,3,36,2019-07-02,0.50,1,21 +536578,Nice and clean private space in Bklyn loft.,2635819,Fabrizio,Brooklyn,Bushwick,40.7014,-73.91333,Private room,59,10,19,2019-06-20,0.27,1,0 +538344,East Village Oasis! 1Bd Apt,2644519,David,Manhattan,East Village,40.72924,-73.98113,Entire home/apt,195,2,160,2019-06-11,2.31,1,68 +538590,cozy 2bedroomAPART 10min to MIDTOWN,2645592,De & Claudia,Queens,Astoria,40.75919,-73.91836,Entire home/apt,150,3,74,2019-05-15,0.87,2,365 +539160,Manhattan *SuperHost* Luxury 2 Bdrm Apt Sleeps 6+,512878,Michelle,Manhattan,Washington Heights,40.83064,-73.94076,Entire home/apt,170,1,47,2019-04-28,0.58,2,17 +539350,Hell's Kitchen Musician's Hideaway,2640100,Stefanie,Manhattan,Hell's Kitchen,40.76184,-73.99334,Entire home/apt,217,2,43,2018-09-14,0.51,1,0 +540057,Stylish Uptown Westside Apt.,2653648,Kareem,Manhattan,Harlem,40.82445,-73.95243,Entire home/apt,185,1,102,2019-06-13,1.19,2,91 +540489,Large + Bright private bedroom in NoLiTa,2656413,Anton,Manhattan,Little Italy,40.72006,-73.99579,Private room,58,6,18,2019-01-20,0.21,1,0 +541725,"Entire loft, best Williamsburg",1879389,Christina,Brooklyn,Williamsburg,40.71872,-73.96042,Entire home/apt,189,4,33,2019-04-07,0.44,2,1 +542054,3RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72855,-73.98265,Entire home/apt,88,30,60,2019-06-09,0.72,6,0 +542203,QUITE LOVELY STUDIO IN HEART OF HELLS KITCHEN**,1846051,Kj,Manhattan,Hell's Kitchen,40.76304,-73.9888,Entire home/apt,195,3,22,2019-06-23,1.61,2,59 +543792,Studio Apartment Bushwick/Ridgewood,865264,Sharon And Tom,Queens,Ridgewood,40.70878,-73.91727,Entire home/apt,110,5,107,2019-06-21,1.25,1,276 +544039,Luxury 2-bdrm w Piano & Gym,2674637,Greta,Brooklyn,Sunset Park,40.64437,-74.00304,Entire home/apt,120,14,0,,,1,0 +544131,Heart of Greenwich Village near Bleecker St,534328,F,Manhattan,Greenwich Village,40.72987,-74.00082,Private room,79,4,87,2019-07-04,1.02,1,30 +544331,1 corner bedroom with lots of light,2676438,Srdjan,Manhattan,Upper East Side,40.77424,-73.94839,Entire home/apt,110,10,16,2018-08-07,0.20,1,0 +545261,Clinton Hill Lux Apt Grill & Lawn,746552,Tom,Brooklyn,Clinton Hill,40.68752,-73.96688,Private room,200,3,2,2015-08-07,0.02,1,365 +545651,COMFORTABLE PRIVATE ROOM FOR RENT,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.65841,-73.95016,Private room,69,4,19,2019-05-20,0.24,3,43 +546383,My Little Guest Room in Flushing,2680820,Linda,Queens,Flushing,40.75578,-73.81948,Private room,55,1,474,2019-05-25,5.53,3,332 +546504,Brooklyn Heights 1brm Private Deck ,2687009,Jeff,Brooklyn,Brooklyn Heights,40.69271,-73.99365,Entire home/apt,135,4,5,2016-05-16,0.06,1,0 +546573,Stunning apt with downtown views!,1792568,Mickey,Manhattan,Financial District,40.70587,-74.01534,Entire home/apt,500,2,63,2019-05-19,0.75,1,79 +547830,Brooklyn Summer Sublet-Ditmas Park,2693076,Kristin,Brooklyn,Flatbush,40.64882,-73.9605,Entire home/apt,90,3,0,,,1,157 +548133,Chic One-Bedroom Apt,2694451,Shontae,Brooklyn,Clinton Hill,40.69073,-73.96762,Entire home/apt,135,3,28,2019-06-01,0.40,1,211 +548184,Cozy Room in GREENPOINT Apt. YeY,2694253,Yonatan,Brooklyn,Greenpoint,40.72515,-73.95153,Private room,199,1,0,,,1,365 +549873,1 BR with garden--East Village,2702563,James,Manhattan,East Village,40.72564,-73.98252,Entire home/apt,90,2,5,2015-05-25,0.09,1,0 +550288,Cozy Upper East Side 1 Bedroom,2684478,Brian,Manhattan,Upper East Side,40.78024,-73.94813,Entire home/apt,160,4,16,2019-02-12,0.20,1,0 +550653,Sun Fill Room in a Spacious Apt,2706505,Huxley,Brooklyn,Windsor Terrace,40.6599,-73.98279,Private room,65,20,6,2018-09-30,0.32,1,311 +550777,"Lrg1Bdrm, Terrace w/ Cent.Park View",2707053,Kathleen,Manhattan,Upper West Side,40.7964,-73.9675,Entire home/apt,210,3,25,2019-06-10,0.30,1,347 +550858,Gorgeous Chelsea loft in the heart of Manhattan,2277487,Henrik,Manhattan,Chelsea,40.74664,-73.99441,Entire home/apt,399,3,15,2017-08-10,0.31,1,0 +552141,Historic sundrenched apt of the Lower East Side,2712998,Greg,Manhattan,Lower East Side,40.71788,-73.98975,Entire home/apt,300,1,45,2019-06-08,0.62,1,111 +552519,Brooklyn Amazing 2bedrm Luxury Apt,2715012,Maurice,Brooklyn,Crown Heights,40.67356,-73.9425,Entire home/apt,185,1,215,2019-06-16,2.55,3,348 +552639,Beautiful 2-BDRM Brownstone Apartment,2518984,Historic Harlem,Manhattan,Harlem,40.81757,-73.94709,Entire home/apt,220,3,33,2019-06-22,0.51,2,174 +553516,One Bdrm in Trendy Prospect Hts,2261381,Jennie,Brooklyn,Prospect Heights,40.68052,-73.97254,Entire home/apt,121,2,46,2017-01-02,0.54,1,0 +553565,Feels like home with park view,567226,Yah,Manhattan,Inwood,40.86821,-73.92252,Entire home/apt,120,10,25,2019-06-01,0.30,1,129 +553862,"Bedroom, kitchen and private garden",2647043,Steve,Brooklyn,Park Slope,40.67981,-73.97967,Private room,152,2,23,2018-10-08,0.27,1,365 +554165,"View of skyline w roof deck, perfect for families!",1267900,Maayan,Brooklyn,Gowanus,40.68251,-73.98486,Entire home/apt,250,2,57,2019-07-02,0.67,1,25 +555206,Spacious Room/Hip East Village Apt!,1925503,Evan,Manhattan,East Village,40.72718,-73.9812,Private room,99,6,80,2019-05-26,1.01,1,0 +557487,Full apartment close to G & L train,2740824,Lindsey,Brooklyn,Greenpoint,40.72363,-73.9457,Entire home/apt,104,11,22,2019-05-10,0.26,1,0 +559511,Huge & sunny 1BR apt in Greenpoint,2750389,Jessica,Brooklyn,Greenpoint,40.72697,-73.93921,Entire home/apt,120,5,40,2016-04-22,0.54,1,0 +560078,Gorgeous Unique Garden-Terrace-Apt.,2753256,Vana,Manhattan,East Village,40.72274,-73.97934,Entire home/apt,295,3,85,2019-06-23,1.02,1,261 +560406,Charming old school 1BR in C. Gardens Brooklyn,2755668,Annie,Brooklyn,Carroll Gardens,40.68343,-73.99189,Entire home/apt,90,4,1,2012-07-11,0.01,1,0 +563442,Designer Studio in the HEART of WV!,2770788,Laura,Manhattan,West Village,40.73514,-73.99954,Entire home/apt,197,14,29,2016-12-05,0.36,1,0 +563496,Studio Apartment Greenwich Village,2770985,Aaron,Manhattan,Greenwich Village,40.73481,-73.99845,Entire home/apt,145,5,1,2012-09-05,0.01,1,0 +564049,Lovely Manhattan Apartment,2773585,Mathilde,Manhattan,Upper West Side,40.80053,-73.96651,Entire home/apt,90,30,23,2017-02-15,0.27,1,0 +564184,CLEAN PRIVATE ROOM IN CHELSEA NYC,2378357,David,Manhattan,Chelsea,40.73971,-74.00221,Private room,125,2,42,2019-05-31,0.50,1,172 +564447,GREAT DEAL IN TIMES SQ./HK,2775674,Matt,Manhattan,Hell's Kitchen,40.75767,-73.99034,Entire home/apt,190,1,195,2019-06-25,2.83,1,69 +564751,Artist space for creative nomads.,2777672,Kalae,Manhattan,Upper West Side,40.80165,-73.96287,Shared room,76,2,158,2019-05-05,1.91,3,324 +565814,Bright friendly room in Brooklyn,532819,Heather,Brooklyn,Bedford-Stuyvesant,40.68328,-73.9379,Private room,50,2,1,2016-12-28,0.03,1,0 +566712,"GREAT EAST VILLAGE LOCATION, ELEVATOR & ROOFTOP!!!",2786764,Marianna,Manhattan,East Village,40.72819,-73.97933,Private room,107,1,115,2019-06-07,1.40,1,85 +566911,Entire 1 Bedroom Apartment Flat Historic Bedstuy,2788488,Sajjad,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93875,Entire home/apt,80,4,42,2019-05-28,0.49,1,245 +567195,Beautiful Garden Duplex in Brooklyn,2790324,Erin,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94004,Entire home/apt,150,5,3,2015-08-17,0.04,1,0 +568661,"Bright, Airy Loft Apt in Bushwick",2590864,Jason,Brooklyn,Bushwick,40.70779,-73.92129,Entire home/apt,110,90,32,2019-06-10,0.40,1,330 +568684,800sqft apartment with huge terrace,2798644,Alessandra,Brooklyn,Bushwick,40.70202,-73.92402,Entire home/apt,115,370,6,2018-04-15,0.09,1,365 +568743,☆ 2BR East Village ☆ Sleeps 5 | BEST LOCATION ☆,627217,Seith,Manhattan,East Village,40.72603,-73.98751,Entire home/apt,151,2,214,2019-07-06,2.53,3,256 +570218,Duplex Loft in Fort Greene,2805772,Christopher,Brooklyn,Fort Greene,40.68522,-73.97771,Entire home/apt,130,2,11,2019-05-06,0.13,1,0 +570750,Fabulous Urban Retreat 2bdr,2806561,Noemie,Brooklyn,Crown Heights,40.67391,-73.94039,Entire home/apt,180,2,221,2019-06-23,2.60,1,264 +571564,large spacious room,1141935,Ana,Brooklyn,Crown Heights,40.67436,-73.94807,Private room,95,1,123,2019-06-02,1.47,3,359 +573612,"Sunny Private Bedroom by Express Train, Colleges!",2270624,Ny,Manhattan,Harlem,40.81199,-73.95116,Private room,79,1,132,2019-06-16,1.56,2,335 +573671,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68586,-73.9501,Private room,60,30,41,2019-02-23,0.65,8,245 +573795,Spacious Stylish 2 Bedroom Suite,38513,Nkosi,Brooklyn,East Flatbush,40.65204,-73.94938,Entire home/apt,133,4,104,2019-06-06,1.32,1,338 +573870,Central Park West/ 80s One bedroom!,1385157,Brian,Manhattan,Upper West Side,40.78292,-73.97438,Entire home/apt,120,30,18,2019-05-27,0.22,5,337 +575061,Your own floor (private) in prime Williamsburg!!,2828813,Katherine,Brooklyn,Williamsburg,40.71603,-73.95665,Private room,120,2,143,2019-06-30,4.14,1,102 +576227,Bright and Spacious Manhattan,2834840,Sheri,Manhattan,Harlem,40.82446,-73.95274,Private room,700,28,4,2016-10-03,0.05,1,22 +576426,TIMES SQ - FABULOUS 1BR/ BEST VIEW!,426725,Goran,Manhattan,Hell's Kitchen,40.7641,-73.98803,Entire home/apt,165,3,25,2014-04-15,0.30,1,0 +576916,"Beautiful, Quiet, Spacious 1BR - UWS by parks",2837527,Alexandra,Manhattan,Upper West Side,40.79785,-73.97202,Entire home/apt,165,4,4,2017-08-22,0.05,1,0 +577324,Stylish 1BR Apartment Quick to Midtown and LGA!,2839267,Dustin,Queens,Ditmars Steinway,40.76961,-73.90451,Entire home/apt,54,45,198,2019-06-15,2.33,1,80 +577703,Romantic Creative Retreat: Feel the Glow,2841175,Ina,Manhattan,East Village,40.73047,-73.98229,Entire home/apt,100,5,6,2012-09-14,0.07,1,0 +577824,Modern Private 2 BR Near DT Manhattan – 3 stops,2841374,Stephon & Luke,Brooklyn,Crown Heights,40.6772,-73.9506,Private room,80,7,10,2019-05-21,0.48,1,365 +578267,*Lovely Bedroom! Big Sunny Apt*Manhattan*,1449904,Edel,Manhattan,Chinatown,40.71328,-73.99315,Private room,96,19,30,2019-04-08,0.36,1,165 +578941,Beautiful Park Slope 2 bedroom,2847655,Gideon,Brooklyn,Park Slope,40.66732,-73.98233,Entire home/apt,159,2,4,2015-09-21,0.08,1,0 +579716,Sweet n' Spectacular PARK SLOPE!,2851409,Mark And Stoph,Brooklyn,South Slope,40.66488,-73.98079,Private room,50,2,201,2019-07-01,2.42,1,54 +580323,Upper East Side 1 LG BR Avail in my Cute 2BR Apt,2311767,Melanie,Manhattan,East Harlem,40.78837,-73.94628,Private room,75,2,51,2019-06-30,0.61,1,77 +581180,Beautiful Fresh Studio for Sublet,2775107,Dana,Brooklyn,Clinton Hill,40.68232,-73.96501,Entire home/apt,155,30,63,2019-05-26,0.75,1,249 +581421,Pvblic Bath Artist Loft,2861848,Bekah,Brooklyn,Greenpoint,40.73252,-73.95496,Private room,150,2,28,2018-08-05,0.59,1,72 +581542,Escape to our Great Beach Getaway,2861854,Jeanmarie,Queens,Arverne,40.59783,-73.80158,Entire home/apt,92,1,55,2017-06-01,0.66,1,8 +582272,Privet Room in Greenpoint +Backyard *location,2712129,Raziel,Brooklyn,Greenpoint,40.72437,-73.94847,Private room,75,5,1,2018-11-13,0.13,1,0 +582372,Comfy New York City Launching Pad!!,733370,Tim,Queens,Astoria,40.77115,-73.92275,Private room,69,40,23,2016-07-01,0.27,1,207 +583337,Lovely Condo Carroll Gardens/Gowanus,2874587,Ibie,Brooklyn,Carroll Gardens,40.67859,-73.99444,Entire home/apt,115,4,61,2019-03-09,0.72,1,15 +583352,Charming Loft in the East Village,2423042,Nitin,Manhattan,East Village,40.72304,-73.97923,Entire home/apt,120,60,5,2013-06-20,0.06,1,0 +584122,"PRIVATE ROOM in HELL'S KITCHEN, NYC",2878358,Gio/Joey,Manhattan,Hell's Kitchen,40.77032,-73.99493,Private room,120,2,67,2019-06-25,0.80,1,179 +585369,SOHO/VILLAGE CHARMING STUDIO,911596,Anna,Manhattan,Greenwich Village,40.72692,-73.99948,Entire home/apt,215,30,110,2019-04-02,1.30,1,332 +585491,Beautiful Modern Apt in Brooklyn,2886652,Kanan & Tobias,Brooklyn,Crown Heights,40.6806,-73.96317,Entire home/apt,195,2,160,2019-06-18,1.95,1,255 +585937,Comfortable 1 Bedroom in Greenpoint,2888900,Alex,Brooklyn,Greenpoint,40.72949,-73.95493,Entire home/apt,175,3,102,2019-06-25,1.23,2,215 +586847,LARGE BEDROOM +PRIVATE BATHROOM,311286,Helene,Brooklyn,Crown Heights,40.67649,-73.9435,Private room,80,2,5,2017-05-08,0.08,4,311 +587519,Huge Bdrm in New Wilibrg 3 Bed Loft,2897835,Tim,Brooklyn,Williamsburg,40.71099,-73.95217,Private room,48,5,1,2015-03-31,0.02,1,0 +587554,Warm&Cozy Studio West Village,2897329,Josefina,Manhattan,West Village,40.73041,-74.00326,Entire home/apt,200,7,34,2019-06-30,0.41,1,217 +587641,Luxury Pad NYC - Williamsburg Loft,717562,John,Brooklyn,Williamsburg,40.7197,-73.95741,Entire home/apt,275,30,6,2015-10-31,0.07,1,363 +587698,Very close to Downtown Awesome Room,807642,Jeffrey,Brooklyn,Gravesend,40.60399,-73.97092,Private room,72,1,61,2019-07-06,0.81,2,335 +587740,Designer open space in TriBeCa Soho 1000sq ft,2899508,Tom & Jennifer,Manhattan,SoHo,40.72372,-74.00277,Entire home/apt,199,60,11,2019-06-21,0.13,1,281 +588677,Great find- 2 bedroom apartment in Williamsburg!,2407024,Michael,Brooklyn,Williamsburg,40.70989,-73.95347,Entire home/apt,250,30,1,2012-08-10,0.01,2,250 +590903,CLOSE TO CENTRAL PRK & EXPRESS TRAINS ABCD 2/3,1345769,Wowa,Manhattan,Harlem,40.80797,-73.9489,Private room,75,5,46,2019-05-05,0.60,1,343 +591135,Awesome Place! Amazing Location!!!,1523018,T,Manhattan,SoHo,40.72466,-73.99632,Private room,125,1,132,2019-06-05,1.75,1,365 +591565,Everyone who stays leaves happy!,2919467,Lisa,Manhattan,Tribeca,40.71552,-74.00749,Private room,229,1,62,2014-04-27,0.73,1,36 +591710,Spacious one bedroom apartment in Brooklyn Heights,2920855,Theodore,Brooklyn,Brooklyn Heights,40.69464,-73.99885,Entire home/apt,175,10,8,2018-08-24,0.17,1,0 +592785,Adorable 1 Bedroom,2932668,Stephanie,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95824,Entire home/apt,140,3,16,2017-04-17,0.27,1,0 +592831,Beautiful Bedroom in Brooklyn,2926404,Chris,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95809,Private room,54,2,19,2016-07-15,0.23,1,220 +592853,A GEM IN THE CITY,2926593,Valerie,Queens,Ridgewood,40.70001,-73.90698,Entire home/apt,75,2,17,2017-01-01,0.20,1,0 +593000,Cozy 1BD Manhattan close Central Pk,2927446,Marie-Jeanne,Manhattan,Upper East Side,40.77247,-73.94665,Entire home/apt,110,7,12,2016-11-18,0.14,1,0 +593292,Penthouse Studio East 50s Terrace,2929585,Hillary,Manhattan,Murray Hill,40.75128,-73.97658,Entire home/apt,165,1,321,2019-06-15,3.93,1,185 +593320,In Manhattan+1 Small Block to train,2929756,Chris,Manhattan,Inwood,40.86345,-73.92039,Private room,55,4,160,2019-06-12,1.89,2,79 +594020,In_Manhattan+1 Small Block to train,2929756,Chris,Manhattan,Inwood,40.86284,-73.91955,Private room,55,4,142,2019-06-03,1.68,2,179 +594036,Spacious Greenwich Village Loft,2934010,Bill,Manhattan,West Village,40.73413,-74.00465,Entire home/apt,300,1,5,2015-10-11,0.06,1,0 +594640,NYC Chelsea very spacious 1-bedroom apartment,2937468,Markus,Manhattan,Chelsea,40.74026,-74.00079,Entire home/apt,275,6,61,2019-06-30,0.73,1,69 +594732,Greenwich Village Skylit 1BR +deck!,2938302,Chris,Manhattan,Greenwich Village,40.73474,-73.99527,Entire home/apt,331,7,0,,,1,189 +595321,Williamsburg Peace for the Solo Traveler,898980,Kelly,Brooklyn,Williamsburg,40.71316,-73.94532,Private room,77,3,5,2018-10-21,0.08,1,0 +595604,1 Bed Manhattan Apt. Minimum 7 DAYS,2943157,Ana,Manhattan,Washington Heights,40.8347,-73.94857,Private room,60,30,36,2017-01-25,0.44,1,365 +596448,The Perfect Brooklyn Heights Apt,2648088,Angela,Brooklyn,Brooklyn Heights,40.69082,-73.99281,Entire home/apt,129,1,109,2019-06-14,1.51,1,261 +597544,Dream Room in Sunnyside New York,2954200,Nancy,Queens,Sunnyside,40.74124,-73.92273,Private room,100,3,28,2019-03-31,0.38,1,188 +597624,Beautiful apartment in Park Slope,2954680,Onur,Brooklyn,Park Slope,40.67465,-73.97975,Entire home/apt,120,4,14,2019-05-20,0.16,1,0 +598612,Most breathtaking view of Manhattan,2960326,Fabio,Brooklyn,Williamsburg,40.72203,-73.95376,Entire home/apt,500,2,250,2019-06-26,2.99,1,307 +599595,BIG UWS APT-BLOCK FROM CENTRAL PARK,2965915,Amy,Manhattan,Upper West Side,40.7839,-73.97897,Entire home/apt,179,4,12,2018-05-28,0.25,1,11 +599847,Beautiful Ft. Greene Apartment-NEW!,2966937,Chris,Brooklyn,Clinton Hill,40.68533,-73.96808,Entire home/apt,149,2,20,2018-12-30,0.24,1,4 +600286,"lovely, spacious wmsbrg apt w deck",1036617,George,Brooklyn,Williamsburg,40.70397,-73.95536,Entire home/apt,180,14,27,2019-05-13,0.36,1,312 +600775,Sml Rm in pr. Brst in Pk Sl great for Med/students,210746,Kathleen R.,Brooklyn,Prospect Heights,40.68084,-73.97429,Private room,100,2,73,2019-06-27,0.89,3,257 +600877,Rare Loft Apt in Heart of Brooklyn,2973437,Kevin + Casey,Brooklyn,Boerum Hill,40.68379,-73.98313,Entire home/apt,180,3,2,2015-12-29,0.05,1,0 +602070,"Amazing Greenpoint/WBurg, BRKLN 1BR",2640845,Zach,Brooklyn,Greenpoint,40.72188,-73.94963,Entire home/apt,128,5,38,2019-05-06,0.45,1,20 +602142,2B+Office Perfect 4 Young Family!!,2233907,Kyle,Brooklyn,Prospect Heights,40.67963,-73.97237,Entire home/apt,260,14,5,2014-10-18,0.07,1,0 +602250,College Students see New York !,2979607,Miriam,Queens,Cambria Heights,40.69249,-73.73382,Private room,55,3,0,,,2,365 +602453,Cosy Large Bedroom Park Slope,2316922,Nat,Brooklyn,Park Slope,40.6686,-73.98342,Private room,65,3,31,2018-08-10,0.50,1,22 +602888,Bright UES Gem Near Central Park,177724,Lauren,Manhattan,Upper East Side,40.76985,-73.95815,Entire home/apt,200,2,17,2015-12-07,0.21,1,0 +606269,Garden Oasis in the ♥️ of NYC | Steps to Times Sq!,3002643,Heather,Manhattan,Hell's Kitchen,40.76257,-73.99303,Entire home/apt,249,3,35,2019-05-27,0.42,1,38 +607735,Brownstone Home - BEST BKLYN BLOCK!,3011547,Wendy,Brooklyn,Gowanus,40.68466,-73.98871,Entire home/apt,300,30,63,2019-04-18,0.77,3,365 +607781,"Convenient, Central, Comfortable",2874433,Eric,Manhattan,East Harlem,40.79183,-73.94743,Entire home/apt,120,7,149,2019-06-29,1.78,1,16 +607891,Charming triplex in NYC brownstone!,893148,Silvia,Manhattan,Upper West Side,40.77471,-73.98261,Private room,120,20,107,2018-06-05,1.29,1,144 +609213,"Cozy 1BR apart. in Prospect Hts, BK",3019795,Marta,Brooklyn,Prospect Heights,40.67293,-73.96399,Entire home/apt,125,5,7,2015-12-31,0.08,1,0 +609559,Queens Quality Convenient Apartment,3647,Rafael,Queens,Elmhurst,40.73587,-73.88279,Entire home/apt,99,3,48,2019-06-23,0.58,2,301 +609983,Gorgeous 1 Bdrm Haven/Shared Ktchn,3024659,Jonathan,Brooklyn,Bushwick,40.69945,-73.92148,Entire home/apt,115,3,54,2019-06-19,0.65,1,3 +610118,Hip Brooklyn Photo Studio Loft!,1144721,Andrew And Kat,Brooklyn,Bushwick,40.7072,-73.92245,Entire home/apt,275,31,17,2015-10-18,0.20,1,364 +610596,Chateau Gowanus,2992042,"Christopher, Samantha And Mason",Brooklyn,Gowanus,40.67376,-73.99648,Entire home/apt,198,2,103,2019-06-08,1.62,1,299 +611009,HUGE East Village 2 Bd w/Priv Yard,3029414,Deborah,Manhattan,East Village,40.7256,-73.97857,Entire home/apt,199,3,243,2019-06-24,2.95,1,142 +611408,Cozy Comfortable Friendly & Cheap!,2979607,Miriam,Queens,Cambria Heights,40.6916,-73.73323,Private room,45,3,0,,,2,365 +612936,1 FLOOR OF A BROWNSTONE WITH GARDEN,3039868,Lori & John,Manhattan,Upper West Side,40.79196,-73.97065,Private room,125,3,93,2019-06-18,1.17,1,58 +613528,Full-Service Studio Apt in Brownstone/Townhouse,2518984,Historic Harlem,Manhattan,Harlem,40.81726,-73.94583,Entire home/apt,80,2,54,2019-07-01,0.74,2,193 +613556,"2 BED TriBeCa, Beautiful-Renovated!",1475015,Mike,Manhattan,Tribeca,40.71655,-74.01171,Entire home/apt,130,30,2,2015-10-31,0.03,52,116 +613818,Small Private Room # 1 with Window,2712353,Masud,Brooklyn,Cypress Hills,40.68375,-73.87065,Private room,35,28,88,2019-05-22,1.05,4,326 +614269,Full Apt! L Train On The Corner!!,3047107,Bradley,Brooklyn,Williamsburg,40.70958,-73.93578,Entire home/apt,90,30,15,2017-07-29,0.18,1,0 +616585,Great house in Williamsburg ,10889,Bob,Brooklyn,Williamsburg,40.72091,-73.96133,Entire home/apt,250,3,25,2017-11-21,0.30,2,188 +618836,1 BR Apartment near Prospect Park!,3065891,Sarah,Brooklyn,Crown Heights,40.66959,-73.95718,Entire home/apt,115,3,0,,,1,0 +618916,Brooklyn Carriage House,92451,Cath,Brooklyn,Prospect Heights,40.68066,-73.96644,Entire home/apt,200,4,11,2019-04-28,0.13,1,0 +619122,Big Sunny Williamsburg 14ft Ceilings w Half Bath,2272846,Zack,Brooklyn,Williamsburg,40.71447,-73.95237,Private room,64,30,17,2019-05-30,0.26,2,230 +619471,Historic Brownstone Parlor & Garden,3069794,Hayley,Brooklyn,Bedford-Stuyvesant,40.68372,-73.9406,Private room,65,3,5,2014-08-31,0.06,2,341 +620214,NYC/Queens 1 Bedroom Apartment,3073291,David,Queens,Astoria,40.76408,-73.92461,Entire home/apt,175,14,0,,,1,0 +621430,Cozy bedroom in Hells Kitchen,2957827,Mauricio,Manhattan,Hell's Kitchen,40.76876,-73.99473,Private room,90,2,28,2018-09-13,0.34,1,358 +622410,"Great room in 2BR, Bright + Cozy!",1563352,Evelina,Brooklyn,Crown Heights,40.66839,-73.96001,Private room,85,2,0,,,1,0 +623423,ENTIRE LUXURY MADISON AVE STUDIO,3091205,Angela,Manhattan,Midtown,40.74519,-73.98338,Entire home/apt,150,30,0,,,1,352 +623747,Great deal! Manhattan 1-bedroom 1 month sublet,3050955,Laura And Bernard,Manhattan,Kips Bay,40.74285,-73.97986,Entire home/apt,50,30,8,2018-08-21,0.11,1,91 +624222,"Spacious apt in South Harlem, steps to subways !",3097033,Aida,Manhattan,Harlem,40.80352,-73.95127,Entire home/apt,136,2,15,2019-04-27,0.18,2,6 +625197,"Williamsburg, Brooklyn Townhouse",1974637,Gina,Brooklyn,Williamsburg,40.71455,-73.93739,Entire home/apt,400,3,2,2018-10-22,0.17,1,83 +625365,"In the heart of Prospect Park, BK!",3102648,Zhenia,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95951,Entire home/apt,125,4,40,2019-01-01,0.57,1,29 +627432,"In the Hub of Union Square, NYC",3114411,Carlita,Manhattan,East Village,40.7324,-73.98577,Entire home/apt,165,7,57,2019-05-06,0.68,1,32 +627949,COMFY-CUTE-N-CLEAN APT in WBURG,585879,Armando,Brooklyn,Williamsburg,40.71402,-73.93989,Entire home/apt,180,3,0,,,1,0 +628078,NYC Whole Apt. Dec 26th- Feb 3rd,3119145,Dennis,Manhattan,Harlem,40.80338,-73.95594,Entire home/apt,105,14,6,2018-08-16,0.07,1,0 +628227,Ti me Square Stylish 1 Bedroom,3120156,Sag,Manhattan,Hell's Kitchen,40.7592,-73.99133,Entire home/apt,148,4,57,2019-05-24,0.69,1,0 +629315,1BD brownstone apt in Fort Greene!,2397437,Lauren,Brooklyn,Fort Greene,40.68935,-73.9695,Entire home/apt,120,3,22,2015-10-28,0.27,1,189 +629770,Slick Studio with High Ceilings,3129020,Ian,Manhattan,Gramercy,40.73326,-73.98245,Entire home/apt,99,8,6,2013-09-04,0.07,1,0 +629774,East Village perch!,834185,Zachary,Manhattan,East Village,40.73082,-73.98502,Entire home/apt,175,1,17,2015-10-13,0.20,1,0 +629855,Big Room in Williamsburg Loft,155163,Niral,Brooklyn,Williamsburg,40.71382,-73.94164,Private room,85,2,14,2018-10-28,0.19,1,0 +629949,1 BR - Garden - Broadway?,3130534,Ken,Manhattan,Upper East Side,40.77975,-73.94977,Private room,80,1,160,2019-06-27,1.90,1,319 +630034,Sal's bnb,3129017,Lascell,Brooklyn,Bedford-Stuyvesant,40.68517,-73.95563,Entire home/apt,119,2,85,2019-06-23,1.02,1,338 +633276,"Jacuzzi Suite, Minutes to Times Sq.",1568517,Karl & Catherine,Queens,Long Island City,40.74609,-73.94691,Private room,89,1,165,2019-06-22,1.99,2,50 +633950,1-Bd Apt in PRIME Soho - NYC- July,2354167,Paul,Manhattan,SoHo,40.72625,-74.0018,Shared room,195,2,13,2014-04-22,0.16,1,0 +634353,Luxury 1Bed with Central Park Views,836168,Henry,Manhattan,Upper West Side,40.77428,-73.98594,Entire home/apt,1000,30,44,2015-09-28,0.53,11,364 +635114,NYC - Heart of Greenwich Village,3158530,Peter,Manhattan,Greenwich Village,40.72812,-74.00191,Entire home/apt,225,4,51,2019-05-02,0.62,1,172 +635282,"Huge factory loft, prime location",1215949,Misty,Brooklyn,Williamsburg,40.71657,-73.96264,Entire home/apt,165,2,179,2019-06-17,2.20,1,0 +635662,bedroom in front of prospect park w/2 queens beds,3033622,Jose,Brooklyn,Windsor Terrace,40.65193,-73.97301,Private room,60,2,206,2019-06-15,2.49,2,86 +636391,Charming Sunny W. Village Apt.,8425,Sharon,Manhattan,West Village,40.73485,-74.00637,Entire home/apt,165,5,4,2018-07-08,0.05,1,87 +637228,"Beautiful, bright room w/priv bath",1363434,Daniel,Brooklyn,Bushwick,40.70074,-73.92333,Private room,80,14,2,2019-06-23,0.11,1,67 +637504,Private bedroom in a 2-fam house for solo traveler,3179968,Tony,Queens,Sunnyside,40.73607,-73.92439,Private room,52,3,1,2018-06-04,0.08,1,0 +637716,"NOLITA, Home Sweet Home in NYC",3181665,Cortney,Manhattan,Nolita,40.72095,-73.99401,Entire home/apt,160,4,2,2013-04-03,0.02,1,0 +638894,"1-BDRM, Good Light, Fire-Escape, AC",1182294,Jonny,Brooklyn,Crown Heights,40.67639,-73.96003,Entire home/apt,110,5,3,2016-01-11,0.04,1,15 +638898,Apt Near Central Park & Columbia!,1583594,Jeffrey,Manhattan,Upper West Side,40.79913,-73.96057,Private room,60,2,19,2015-09-23,0.23,1,0 +639199,"Beautiful 4BR/4BA Home, Staten Island, NY City.",1483081,Marina,Staten Island,Tottenville,40.50868,-74.23986,Entire home/apt,299,3,59,2019-07-08,0.82,1,245 +639781,East Village 1 Bedroom Apartment,3194190,Jack,Manhattan,East Village,40.72389,-73.98934,Entire home/apt,200,6,1,2019-01-05,0.16,1,128 +640589,Sweet Super Bowl Accomodations,3198479,Gina,Manhattan,West Village,40.73727,-74.00213,Entire home/apt,700,5,1,2012-09-18,0.01,1,365 +640691,Homey Townhouse + PRIVATE Bathroom,3199395,Chris & Don,Brooklyn,Cobble Hill,40.68648,-73.99257,Private room,120,3,254,2019-06-23,3.05,1,271 +640990,Cozy E. Harlem Brownstone PH,3201337,Diego,Manhattan,East Harlem,40.79512,-73.93182,Private room,65,2,129,2019-04-06,1.56,2,32 +641768,INSANE NYC views! Live in the sky!,3206521,Dee,Manhattan,Hell's Kitchen,40.76206,-73.9998,Entire home/apt,263,30,11,2013-03-08,0.13,2,33 +642682,Up Among the Trees 2,579412,Mateo And Anna,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95002,Entire home/apt,120,20,32,2019-04-21,0.68,1,149 +643591,Central Park Luxury ( BEST DEAL ;),81335,Evan,Manhattan,Upper West Side,40.78455,-73.97352,Entire home/apt,150,5,8,2016-08-21,0.12,3,0 +643948,Luxe Queen Size Bed*Cozy Elegance*Inwood Manhattan,400262,Grace,Manhattan,Inwood,40.87114,-73.91791,Private room,60,2,261,2019-07-03,3.16,1,156 +644464,Loft Room in Heart of Williamsburg,3225114,Ryan,Brooklyn,Williamsburg,40.71827,-73.96259,Private room,350,2,3,2012-09-23,0.04,1,365 +644575,Enjoy and discover New York Citi,15523,Vadim,Staten Island,Tompkinsville,40.63358,-74.0833,Private room,71,2,23,2018-10-07,0.33,2,352 +644833,3 Bedroom 2.5 Bath Multilevel Home,195137,James,Manhattan,Harlem,40.82312,-73.94971,Entire home/apt,433,5,108,2019-06-03,1.44,2,318 +644869,Luxury Doorman Building! w/Pvt Bath,1223359,Steven,Manhattan,Harlem,40.8224,-73.94358,Private room,79,3,9,2019-06-30,0.11,1,329 +645075,"Hell's Kitchen, Midtown west!",2494666,Brian,Manhattan,Hell's Kitchen,40.76376,-73.99161,Private room,140,2,248,2019-06-24,2.99,1,0 +645693,☆☆New Discount☆☆ Beautiful Room / Next to Subway,3233986,Daniel,Queens,Astoria,40.75703,-73.91666,Private room,61,4,107,2019-06-22,1.29,2,335 +645922,Gorgeous Modern Manhattan Apt,1740784,Gal,Manhattan,Midtown,40.74648,-73.98459,Private room,100,3,41,2015-09-25,0.52,1,0 +645942,Amazing NY apartment in SoHo/Nolita,3235547,Mathilde,Manhattan,Nolita,40.72294,-73.99388,Entire home/apt,250,4,43,2019-06-02,0.52,1,347 +646147,Private rooms on a XLarge 3 br 2 baths,352230,Andrea,Manhattan,Harlem,40.82732,-73.95112,Private room,145,3,39,2016-12-08,0.47,1,44 +646391,Lofted Bed in a Funky Family Loft!!,147388,Mary,Brooklyn,Bedford-Stuyvesant,40.6951,-73.95605,Shared room,45,4,31,2017-06-01,0.37,1,0 +646458,Room in Williamsburg Loft - Long Stays,415660,Carmen,Brooklyn,Williamsburg,40.71256,-73.96626,Private room,73,6,6,2019-05-13,0.07,2,310 +647413,Charming 1 bedroom Apt in Brooklyn,3245898,Ede,Brooklyn,Prospect Heights,40.6795,-73.9685,Entire home/apt,150,3,18,2019-04-06,0.26,1,68 +647520,Charming 1br in of NYC's best Neighborhood!,3245431,Jon,Manhattan,NoHo,40.7256,-73.99445,Entire home/apt,234,20,29,2019-04-30,0.37,1,302 +647580,East Village Hideaway,3247050,Moira,Manhattan,East Village,40.73045,-73.98541,Entire home/apt,150,1,11,2013-12-25,0.13,1,0 +648047,"Cute, comfortable room in Gramercy",672510,Jernee,Manhattan,Gramercy,40.737,-73.98199,Private room,65,4,161,2019-07-01,1.92,1,182 +648246,Spacious Brooklyn Loft w/ River View,62583,Karina,Brooklyn,Williamsburg,40.71227,-73.96776,Entire home/apt,195,1,39,2019-04-28,0.47,1,270 +649561,Manhattan Sky Crib (1 year sublet),3260084,David,Manhattan,Chelsea,40.75164,-73.99425,Entire home/apt,135,365,0,,,1,365 +649903,Studio With Old-World Character,3262771,Christina,Brooklyn,Crown Heights,40.67189,-73.93499,Entire home/apt,90,7,2,2015-08-25,0.03,1,0 +651375,"Spacious, rare, elegant, art-filled loft w sauna",3272526,Lisa,Manhattan,SoHo,40.72381,-73.99684,Entire home/apt,595,5,59,2019-06-27,0.77,1,169 +651475,"Comfortable, clean & quiet in EV",468752,Casper,Manhattan,Gramercy,40.73337,-73.984,Private room,109,1,323,2019-06-20,3.89,1,276 +651648,One Bedroom Apartment in an 1879 Brownstone,3274376,Edward,Brooklyn,Clinton Hill,40.68304,-73.96348,Entire home/apt,200,3,56,2019-05-21,0.96,1,365 +652371,ELEGANT MIDTOWN EAST STUDIO E.52 ST,1475015,Mike,Manhattan,Midtown,40.75743,-73.96939,Entire home/apt,90,30,3,2016-12-31,0.05,52,358 +652466,32nd St & Lexington Ave / Doorman Beautiful Studio,1475015,Mike,Manhattan,Kips Bay,40.7419,-73.9816,Entire home/apt,100,30,2,2018-06-30,0.04,52,342 +652515,COLUMBUS CIRCLE~FULLY FURNISHED!!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76758,-73.98722,Entire home/apt,85,30,2,2016-08-15,0.04,52,223 +652648,GRAMERCY PARK~FURNISHED E.20's ST P,1475015,Mike,Manhattan,Kips Bay,40.74189,-73.97833,Entire home/apt,87,30,3,2018-08-15,0.05,52,363 +652691,COLUMBUS CIRCLE~100% FURNISHED W.58,1475015,Mike,Manhattan,Upper West Side,40.76934,-73.98464,Entire home/apt,95,30,1,2012-11-01,0.01,52,365 +654005,Charming 2 Bdrm UWS w/ private deck,1242765,Kate,Manhattan,Upper West Side,40.78363,-73.97797,Entire home/apt,349,3,58,2019-06-18,0.70,1,341 +654232,BIG East Village 1bd all the extras,3291022,Noel,Manhattan,East Village,40.72171,-73.98334,Entire home/apt,99,3,10,2015-10-24,0.14,1,0 +654612,THE HEART OF ART IN THE HEART OF NY,3293368,Kathleen,Manhattan,Hell's Kitchen,40.76803,-73.98767,Entire home/apt,160,2,83,2019-05-23,1.01,1,105 +655230,Be in NYC's best: Lower East Side!,3298062,Connie,Manhattan,Chinatown,40.71695,-73.99031,Entire home/apt,149,4,12,2019-06-03,0.14,1,203 +655472,Lovely 2-room Studio in Crown Hghts,326329,Nick,Brooklyn,Crown Heights,40.67574,-73.95434,Entire home/apt,60,3,1,2012-08-25,0.01,1,0 +655783,Chic Luxe 1BR 1.5BA 900sf -Midtown ,3301845,Alana,Manhattan,Midtown,40.75663,-73.96681,Entire home/apt,285,7,10,2019-07-06,3.53,1,0 +656281,"QUIET, SPACIOUS, COMFORTABLE, & GREAT LOCATION",3180741,Manon,Brooklyn,Kensington,40.64573,-73.98013,Private room,72,1,48,2019-02-28,0.59,1,312 +657005,Charming West Village Pad,159780,Horatio,Manhattan,West Village,40.74004,-74.00426,Entire home/apt,150,16,5,2019-07-03,0.06,1,339 +657198,"2BR gem in Cobble Hill, Brooklyn",414627,Charlotte,Brooklyn,Columbia St,40.68863,-74.00181,Entire home/apt,200,3,15,2018-07-09,0.18,1,0 +657217,Prime location near Central Park !!,3312204,Olga,Manhattan,Upper East Side,40.7779,-73.95246,Private room,79,1,347,2019-07-04,4.24,2,247 +657727,"Bright, Quiet 2 BR in Awesome Area!",3315563,Mariko,Manhattan,Upper West Side,40.78194,-73.98248,Entire home/apt,197,1,108,2019-07-05,1.31,2,269 +658008,Secret Garden,3317183,Claire,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95375,Entire home/apt,75,3,163,2019-06-19,1.96,2,218 +658366,HEART OF NYC! Sunny furn 1 br wifi,3319410,Dawn,Manhattan,Gramercy,40.73354,-73.98593,Entire home/apt,127,3,182,2019-06-23,2.30,1,264 +658515,A nice quiet room in Manhattan,3320650,Jay,Manhattan,East Harlem,40.8014,-73.94361,Private room,110,1,37,2019-06-02,0.45,1,365 +658932,Cozy room on a tree lined street ,3323929,Erika,Queens,Ridgewood,40.69922,-73.90027,Private room,69,1,30,2019-06-22,0.40,1,0 +659880,1 bedroom in a super cute 2 bed,1648054,Ruth,Brooklyn,Williamsburg,40.70653,-73.94421,Private room,100,60,3,2015-05-15,0.04,1,365 +659952,GREAT Studio apartment in Midtown W,3166753,Ben,Manhattan,Hell's Kitchen,40.76287,-73.9957,Entire home/apt,99,3,46,2018-01-04,0.56,1,31 +660016,"Peaceful with Windows, Brooklyn Apt",270064,Sean - Hygge Stay,Brooklyn,Williamsburg,40.70249,-73.9488,Entire home/apt,139,2,211,2019-07-04,2.57,1,19 +660036,Great Apt Steps from Central Park,3330459,Lynne,Manhattan,Upper West Side,40.78754,-73.96989,Private room,113,1,93,2019-05-21,1.12,1,2 +661814,1 bedroom apt in heart of Chelsea,3341426,Nika,Manhattan,Chelsea,40.741,-73.99957,Entire home/apt,250,2,10,2016-05-07,0.13,1,0 +663608,Boho Chic Rhapsody in New York City,3351317,Clara,Manhattan,Kips Bay,40.74027,-73.98061,Entire home/apt,295,4,72,2019-06-22,1.02,1,122 +664047,Lux 2Bed/2.5Bath Central Park Views,836168,Henry,Manhattan,Upper West Side,40.77516,-73.98573,Entire home/apt,2000,30,59,2016-01-28,0.71,11,364 +665394,Winning Location in Hells Kitchen,1139222,Carl,Manhattan,Hell's Kitchen,40.7589,-73.99015,Entire home/apt,220,2,18,2018-12-01,0.24,1,0 +666220,Beautiful East Village apartment,2490963,Matteo,Manhattan,East Village,40.72771,-73.98172,Private room,75,5,6,2013-07-11,0.07,1,0 +666315,BEDFORD AVE STUDIO APT WITH GARDEN,1486465,Carlo,Brooklyn,Williamsburg,40.71157,-73.9636,Entire home/apt,100,31,15,2015-10-12,0.18,1,223 +666613,Amazing Williamsburg entire Loft. Floor 2B,3370705,Valentin,Brooklyn,Williamsburg,40.71112,-73.96338,Entire home/apt,199,4,78,2019-06-07,1.26,1,65 +667375,Light & airy Chelsea NY 1bdrm apt,3376141,Nic,Manhattan,Chelsea,40.74272,-74.00309,Entire home/apt,200,3,17,2018-06-24,0.21,1,5 +667549,My Brooklyn Studio in Ditmas Park,3377231,Lina,Brooklyn,Flatbush,40.64895,-73.95758,Entire home/apt,140,4,15,2017-08-03,0.18,1,365 +668400,1BR in nice 2BR Apt lovely Area ,3383354,Martina,Manhattan,Inwood,40.86186,-73.92701,Private room,50,7,1,2015-07-16,0.02,1,0 +668691,Comfy room in beautiful apartment,3363720,Kate,Brooklyn,Bushwick,40.68888,-73.91911,Private room,45,5,69,2019-05-25,0.89,3,223 +669633,Popular area in BK and Close to Manhattan,2400932,Jackie'S Place,Brooklyn,Gowanus,40.67947,-73.98458,Entire home/apt,109,31,114,2019-06-10,1.38,2,110 +669831,Central Park Sunny Bedroom,3392287,Roxanne,Manhattan,East Harlem,40.79591,-73.94801,Private room,108,3,161,2019-06-15,1.98,2,24 +670767,Bookcase Room with Hidden Door!,3363720,Kate,Brooklyn,Bushwick,40.68796,-73.91906,Private room,42,5,70,2019-04-29,0.88,3,236 +671496,Great private room in awesome area!,3403890,Cory,Brooklyn,Crown Heights,40.67138,-73.95577,Private room,70,3,0,,,1,0 +671633,REDUCED! Private Apt~Fun NYC area!,1709717,Camille,Manhattan,Upper East Side,40.77382,-73.95088,Entire home/apt,141,2,46,2019-06-14,0.57,1,346 +672724,Elegant 2 BDRM Brooklyn Brownstone,3411621,Elizabeth,Brooklyn,Fort Greene,40.68418,-73.96926,Entire home/apt,355,5,19,2018-11-02,0.24,1,301 +673248,Secret Garden Big and Comfortable,3317183,Claire,Brooklyn,Bedford-Stuyvesant,40.68773,-73.95631,Entire home/apt,80,3,162,2019-06-24,1.97,2,249 +673760,Sunrise Room in Spacious Duplex,2219255,Natalie,Brooklyn,Canarsie,40.62764,-73.90086,Private room,250,2,70,2018-10-10,0.85,3,0 +674692,A LITTLE PARADISE NEXT TO SUBWAY!,3425965,Francesca,Queens,Ridgewood,40.70719,-73.89632,Private room,75,14,11,2018-08-31,0.15,1,332 +675793,AMAZING LOCATION YOU WILL LOVE IT,3432742,Callie,Manhattan,West Village,40.73456,-74.00347,Private room,88,2,2,2019-07-04,0.05,1,348 +676257,small private bedroom female only,1465539,Ouii,Manhattan,Kips Bay,40.74166,-73.97811,Private room,65,5,39,2019-01-18,0.55,1,318 +676295,(B) BARGAIN SPACE,27848,Jullett,Queens,Jamaica,40.67166,-73.76566,Private room,58,2,56,2019-07-01,0.67,2,365 +679633,Cozy 1 bedroom apartment in NYC,3458785,Glauce,Queens,Ditmars Steinway,40.77987,-73.91565,Entire home/apt,75,3,1,2012-09-18,0.01,1,0 +679769,Great Room in Astoria! Close to Everything!,3404680,James,Queens,Astoria,40.77329,-73.92832,Private room,100,2,35,2019-06-21,0.42,1,144 +680104,Newly Renovated 1 BR,3462232,Stephen,Manhattan,Lower East Side,40.7195,-73.99416,Private room,167,5,32,2018-09-14,0.39,1,341 +680225,"Large private bedroom in house, Bushwick/Ridgewood",2675998,Alice,Queens,Ridgewood,40.70866,-73.91537,Private room,65,2,1,2018-01-03,0.05,2,0 +680998,Trendy Harlem Apartment in New York,3467798,Laila,Manhattan,Harlem,40.80829,-73.9426,Entire home/apt,125,21,12,2018-12-20,0.15,2,267 +681518,Artist room for creative nomads,2777672,Kalae,Manhattan,Upper West Side,40.80114,-73.96378,Private room,95,2,211,2019-06-21,2.54,3,126 +681805,NEAR THE CITY THAT NEVER SLEEPS!,3375455,Maria,Staten Island,Mariners Harbor,40.62879,-74.16062,Private room,54,2,48,2019-06-11,0.59,1,232 +682122,"Warm, Comfortable, Inviting Home",3475005,Yolanda,Brooklyn,Flatlands,40.61676,-73.92552,Entire home/apt,89,2,219,2019-06-12,2.63,2,319 +682155,Central Park Chic Single Room,3392287,Roxanne,Manhattan,East Harlem,40.79417,-73.95101,Private room,92,3,218,2019-06-23,2.63,2,12 +683084,Midtown West- A COZY ONE bedroom.,3480879,Danny,Manhattan,Chelsea,40.75286,-74.00162,Entire home/apt,199,6,40,2017-10-15,0.50,1,0 +683681,Beautiful West Village 1 BR apartment,1397883,Jeff,Manhattan,West Village,40.73477,-74.00275,Entire home/apt,179,14,37,2019-06-08,0.46,1,284 +683743,Low Cost Room With GREAT Location,1229984,John,Queens,Long Island City,40.7453,-73.95294,Private room,65,20,28,2017-05-20,0.34,3,188 +683821,Spacious Private room in beautiful 1BR near Park,3447309,Mie,Manhattan,Harlem,40.80314,-73.95768,Private room,55,3,66,2019-06-17,0.80,2,13 +684808,Gorgeous NY Studio in Midtown East,3491890,George Steven,Manhattan,Murray Hill,40.74888,-73.97828,Entire home/apt,129,30,43,2019-07-04,0.67,6,256 +684991,Terrific NY Studio in Midtown East,3491890,George Steven,Manhattan,Murray Hill,40.74851,-73.97796,Entire home/apt,134,30,9,2018-11-04,0.11,6,313 +685435,Cozy Private Bedroom $800 Month,1360296,Maria Daniela,Brooklyn,East New York,40.67635,-73.89124,Private room,35,3,13,2019-05-29,0.16,1,2 +686696,duplex with backyard upper eastside,3502638,Daniel,Manhattan,Upper East Side,40.78002,-73.95211,Private room,250,1,60,2019-05-16,0.93,1,148 +688652,Huge Sunny Modern Apt. (1k+sqft),62855,Andrew,Brooklyn,Clinton Hill,40.69445,-73.96401,Entire home/apt,249,4,19,2019-06-07,0.23,1,362 +689329,Cozy 15 mins Manhattan& 10 Mins LGA,2446219,Biren,Queens,East Elmhurst,40.75772,-73.8953,Private room,62,1,296,2019-06-29,3.92,2,234 +689900,Large Room / Light / Columbia University - UWS,475916,Katherine,Manhattan,Upper West Side,40.80373,-73.9679,Private room,119,1,96,2017-05-18,1.16,1,0 +690349,Full 1BR Apartment in Park Slope,3540041,Peter,Brooklyn,South Slope,40.66481,-73.98367,Entire home/apt,179,2,77,2019-06-24,0.97,1,0 +690516,Lovely Garden Apt. in Fort Greene.,66329,Collin,Brooklyn,Fort Greene,40.68757,-73.97469,Entire home/apt,220,1,115,2019-06-24,1.40,2,96 +690553,Modern Lofted Williamsburg 3bd,743742,Ethan And Wray,Brooklyn,Williamsburg,40.7056,-73.94202,Entire home/apt,198,1,294,2019-07-04,3.59,1,233 +690603,Brooklyn's top,3530446,Maurice,Brooklyn,Crown Heights,40.67722,-73.95005,Entire home/apt,155,3,66,2019-06-30,1.75,3,309 +690675,Quirky Sunny Retreat Central Williamsburg,2172525,Slava,Brooklyn,Williamsburg,40.71407,-73.95336,Entire home/apt,199,7,4,2018-08-10,0.09,1,0 +690849,East Village Artist's Studio,284224,Daniel,Manhattan,East Village,40.72912,-73.98355,Entire home/apt,95,3,39,2019-06-18,0.47,1,15 +690934,"LEGAL PARK SLOPE 5 BR, ROOF TERRACES for 14 PEOPLE",570988,Yves,Brooklyn,Park Slope,40.68305,-73.97853,Entire home/apt,550,4,173,2019-07-01,2.12,1,258 +690960,Guestroom w/ 2 beds 20 mins to NYC ,3531317,Ingrid,Brooklyn,Bushwick,40.68161,-73.90796,Private room,60,2,295,2019-06-16,3.56,2,210 +692137,Stunning 3BR loft in Williamsburg!!!!,3538661,Phillip,Brooklyn,Williamsburg,40.71428,-73.961,Entire home/apt,380,4,62,2019-01-02,0.75,2,170 +692567,Bushwick Creative Den of Bliss,3541525,Lindsay,Brooklyn,Bushwick,40.70234,-73.91849,Private room,84,2,138,2019-07-02,1.69,1,225 +693597,UWS Charming 1 bedroom + loft,2817397,Larysa,Manhattan,Upper West Side,40.77563,-73.98065,Entire home/apt,165,30,27,2019-06-24,0.34,1,128 +695002,Roomy Updated Studio - East Village,1443121,Pavel,Manhattan,East Village,40.72866,-73.98048,Entire home/apt,105,30,96,2019-06-16,1.17,1,295 +695216,Private Suite in Historic House,3558158,Natalie,Brooklyn,Fort Greene,40.69096,-73.97241,Entire home/apt,134,2,119,2018-01-25,1.46,1,0 +695297,Sunny Elegant and Big Room!,2195782,Boris,Brooklyn,Bedford-Stuyvesant,40.69114,-73.94601,Private room,68,5,8,2018-09-07,0.10,1,281 +695465,The heart of the metropolis,3561489,John,Manhattan,East Village,40.72482,-73.98097,Entire home/apt,73,30,100,2019-07-01,1.25,1,3 +696593,Park Slope One bedroom with Balcony,3228992,Karin,Brooklyn,Park Slope,40.67406,-73.97697,Entire home/apt,150,5,1,2015-07-16,0.02,1,27 +697499,"Lovely, large studio near Central Park",1372779,Charlie,Manhattan,Upper West Side,40.77392,-73.97852,Entire home/apt,100,3,89,2019-06-27,1.12,1,0 +697923,Cute & Cozy NYC Room - Hell's Kitchen (dog in apt),3576466,Kevin,Manhattan,Hell's Kitchen,40.76422,-73.99382,Private room,75,2,176,2019-06-21,2.22,2,23 +698094,5th Ave Apartment in Midtown! ,3569392,Kristen,Manhattan,Midtown,40.76221,-73.97787,Private room,120,4,31,2016-08-26,0.38,1,0 +698132,"LARGE PRIVATE FLOOR IN BROOKLYN, NY",3577509,Eric,Brooklyn,Bedford-Stuyvesant,40.69128,-73.93653,Entire home/apt,85,4,239,2019-06-26,2.89,2,1 +698162,"Comfy apartment, adorable cat!",3577848,Abby,Manhattan,Inwood,40.86737,-73.91877,Entire home/apt,55,2,79,2019-04-24,0.96,1,3 +698298,GREAT private apt on MULBERRY st - Nolita / Soho,1746432,Joseph,Manhattan,Nolita,40.72177,-73.9961,Private room,95,10,13,2019-04-15,0.33,1,51 +698327,Clean Cute Private Room in CHELSEA,3579337,Nina,Manhattan,Chelsea,40.74034,-74.00259,Private room,72,14,11,2017-12-08,0.16,3,297 +698514,"SUNNY LOFT: Greenwich Village, NYC",3579116,Kristin,Manhattan,West Village,40.73105,-74.00285,Entire home/apt,250,80,5,2017-05-03,0.06,2,78 +698882,The Serenity Room in Historic BKLYN,2994135,Devin & Justin,Brooklyn,Cobble Hill,40.68902,-73.99517,Private room,69,2,13,2016-12-31,0.37,1,0 +699348,Peaceful double room in Brooklyn Brownstone,279845,Chantille & Linda,Brooklyn,Prospect Heights,40.67793,-73.96577,Private room,78,4,190,2019-01-04,2.30,2,188 +699472,NYC 1st Shipping Container Home,3587751,Janet-David,Brooklyn,Williamsburg,40.70995,-73.95536,Entire home/apt,220,1,404,2019-06-25,4.90,2,341 +700530,Charming South Village w/ Private Terrace,2495668,Christos,Manhattan,SoHo,40.72756,-74.00239,Entire home/apt,230,2,27,2019-07-06,1.40,1,101 +700916,Airy Bed Sty Restoration,3595395,Gabriela,Brooklyn,Bedford-Stuyvesant,40.68906,-73.94103,Entire home/apt,150,4,79,2019-05-20,0.97,1,246 +701227,Cozy Private room in Fort Greene,3598306,Afaliah,Brooklyn,Fort Greene,40.6967,-73.97622,Private room,80,2,14,2017-10-06,0.17,2,364 +702213,W'burg Hidden Treasure Off Lorimer,240471,Roberto,Brooklyn,Williamsburg,40.70751,-73.9467,Private room,150,3,32,2018-10-20,0.42,2,365 +702440,Park Slope Brownstone with Garden,3605606,Gisela,Brooklyn,Park Slope,40.67507,-73.98093,Entire home/apt,150,3,76,2019-06-01,0.98,1,266 +702551,UWS renovated 2bedroom 2bath near everything.,3606458,Mathew,Manhattan,Upper West Side,40.79507,-73.97568,Entire home/apt,900,1,7,2019-01-01,0.09,2,365 +703745,Great apt in the heart of E Village,3597177,Ori,Manhattan,East Village,40.72225,-73.98496,Entire home/apt,130,7,11,2016-10-02,0.14,1,0 +703971,HOME AWAY FROM HOME,1785800,Marvet,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95275,Private room,70,5,18,2019-05-30,0.22,3,365 +704838,An Oasis in the Big Apple 1,3621183,Paul,Queens,Woodside,40.74723,-73.89706,Entire home/apt,120,3,60,2019-07-04,1.59,3,281 +705749,Room Available Close to Manhattan-A,3625735,Marianne,Staten Island,Concord,40.60183,-74.08953,Private room,75,30,59,2019-03-30,0.72,2,354 +705997,Classy Brooklyn Studio,240048,Katherine / François,Brooklyn,Sunset Park,40.66084,-73.99328,Entire home/apt,100,15,22,2018-12-10,0.47,2,5 +706347,"HISTORIC WILLIAMSBURG, BKLYN #2",839679,Brady,Brooklyn,Williamsburg,40.71796,-73.95439,Private room,69,3,2,2013-05-06,0.03,3,284 +707396,2BR PENTHOUSE w Private Roofdeck,3636235,Ari,Manhattan,East Village,40.72558,-73.97929,Entire home/apt,399,7,104,2019-07-02,1.28,1,42 +707736,Brand New 2-Level 2-Bedroom Condo,1507336,Jeff,Manhattan,Harlem,40.80748,-73.94869,Entire home/apt,299,3,6,2019-05-24,0.09,1,348 +708374,private bedroom w/private bathroom on Central Park,315918,Arlette,Manhattan,Upper West Side,40.79854,-73.96089,Private room,100,3,326,2019-07-01,3.96,1,90 +708637,Cozy bedroom near Manhattan & airport,3644693,Eugenia,Queens,Jackson Heights,40.74869,-73.88293,Private room,68,28,55,2019-06-01,0.67,2,89 +710015,"Large room, Outdoor Patio, Great Host, Safe Area!",3136147,Gym Hoodie,Brooklyn,Borough Park,40.63324,-73.99461,Private room,103,3,0,,,1,0 +710243,"Cozy, ideal live-work space in the heart of LES!",1444304,Alejandra,Manhattan,Lower East Side,40.71819,-73.99136,Entire home/apt,175,5,56,2019-07-06,0.79,1,263 +710283,"Sunny, Large & Lovely in Greenpoint",283215,Isabelle,Brooklyn,Greenpoint,40.72582,-73.95213,Entire home/apt,330,3,51,2019-06-22,0.62,1,19 +710284,"**YOUR CHELSEA LOFT, WELCOME HOME",3642625,Amy,Manhattan,Chelsea,40.74225,-73.99492,Entire home/apt,425,5,7,2015-04-11,0.09,1,0 +711635,Charming East Village Apartment,3662459,Barry,Manhattan,East Village,40.73016,-73.98643,Entire home/apt,240,5,86,2019-06-30,1.15,1,344 +712136,Room Available-Close to Manhattan-B,3625735,Marianne,Staten Island,Concord,40.60213,-74.0893,Private room,75,30,36,2017-08-29,0.44,2,362 +712260,Private Two Bedroom with Garden in Cobble Hill,3666608,Paul And Debra,Brooklyn,Carroll Gardens,40.68344,-73.9933,Private room,210,2,75,2019-06-19,0.92,1,309 +713538,Chic Victorian private apartment in townhouse,3672774,Alison,Brooklyn,Clinton Hill,40.68341,-73.9606,Entire home/apt,175,1,363,2019-06-16,4.55,2,323 +713891,Amazing location! 10ft from L train,3675389,Giorgia & Benjamin,Brooklyn,Williamsburg,40.71534,-73.94906,Private room,85,2,146,2019-06-23,1.78,1,46 +714028,An Oasis in the Big Apple 2,3621183,Paul,Queens,Woodside,40.74746,-73.89712,Entire home/apt,120,3,51,2019-07-03,1.52,3,253 +714049,An Oasis in the Big Apple 3,3621183,Paul,Queens,Woodside,40.74687,-73.89892,Entire home/apt,120,3,55,2019-06-04,0.67,3,289 +714075,Room in Clinton Hill Brooklyn Loft,3597769,Enid,Brooklyn,Bedford-Stuyvesant,40.68712,-73.95876,Private room,75,5,1,2013-08-08,0.01,2,0 +714939,West Village 2 Bedroom Apt,3578480,Radan,Manhattan,West Village,40.73795,-74.00593,Entire home/apt,495,3,29,2019-03-12,0.38,1,22 +715102,WILLIAMSBURG 1 private room in loft,1002452,Florencia,Brooklyn,Williamsburg,40.71055,-73.94915,Private room,65,14,30,2018-09-02,0.76,2,38 +715270,2 Beds/Queen & Full Beautiful Room 40 minsT.Square,3684360,Enrique,Bronx,Allerton,40.85956,-73.87067,Private room,39,2,169,2019-06-12,2.07,4,306 +716169,Feel the Brooklyn Love!,2055073,Melissa,Brooklyn,Fort Greene,40.68811,-73.97236,Entire home/apt,93,4,1,2015-05-14,0.02,1,0 +718761,"2 private BRs, private bath - Like your OWN APT",216191,M,Brooklyn,Williamsburg,40.70985,-73.9452,Private room,146,2,8,2019-03-09,0.11,4,88 +719329,Bright 1 BR in Brooklyn,3711499,Silvia,Brooklyn,Crown Heights,40.67473,-73.96263,Entire home/apt,120,3,12,2019-03-17,0.18,1,15 +719914,Charming Harlem Getaway-Women Only,3715319,Crystal,Manhattan,Harlem,40.82655,-73.93943,Private room,79,3,19,2018-10-26,0.30,1,365 +720274,Nice studio apartment in Brooklyn!,3717536,Adam,Brooklyn,Crown Heights,40.67471,-73.95324,Entire home/apt,100,5,9,2017-04-16,0.11,1,0 +720394,Large pleasant room nr Central Park,3718361,Jo,Manhattan,Upper West Side,40.80155,-73.96569,Private room,120,1,5,2014-05-19,0.06,2,0 +721719,Heart of Harlem 1 BR Garden apt,3726131,John,Manhattan,Harlem,40.80745,-73.94353,Entire home/apt,150,5,17,2018-06-25,0.26,2,36 +721762,Colorful New York East Village Apt,3726366,Dk,Manhattan,East Village,40.72576,-73.98582,Entire home/apt,144,4,70,2019-06-19,0.86,1,198 +722264,Medium-sized furnished room,3729726,Samir,Brooklyn,Crown Heights,40.67641,-73.95729,Private room,60,7,0,,,1,0 +722451,"NYC Spacious 3b, new, river view",3730928,Dustin,Manhattan,Harlem,40.82398,-73.954,Entire home/apt,350,1,1,2015-10-05,0.02,1,0 +722464,Large Private Room in Clinton Hill Brooklyn Loft,3597769,Enid,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95837,Private room,85,5,1,2019-01-07,0.16,2,189 +723507,Space! Light! Charm! 1BR close to subways & park,3737582,Ellen,Manhattan,Upper West Side,40.79241,-73.97111,Entire home/apt,195,3,17,2018-09-18,0.43,1,26 +723523,MANHATTAN CHARMER WOW - ALL YOURS!!,3390362,Neill,Manhattan,Upper East Side,40.77042,-73.96145,Entire home/apt,200,2,59,2017-08-21,0.73,1,0 +723560,Modern and Cozy Home - LES,3738130,Andrea,Manhattan,Lower East Side,40.71625,-73.9843,Entire home/apt,169,5,62,2019-07-01,0.75,1,249 +723709,Large room 2blks from central Park,297176,Bethania,Manhattan,Harlem,40.80351,-73.95648,Private room,95,10,6,2019-05-11,0.07,2,63 +725270,Very Large Loft in Chelsea for Your Stay!!,3750402,Alexander,Manhattan,Flatiron District,40.74056,-73.99262,Entire home/apt,375,2,33,2019-05-15,0.84,1,346 +725509,3 BR Apartment in Heart of Brooklyn,3752523,Ari,Brooklyn,Crown Heights,40.66983,-73.94322,Entire home/apt,168,2,158,2019-06-16,1.93,2,253 +726422,Grand Brooklyn Apartment,3759301,Natalia,Brooklyn,Crown Heights,40.67942,-73.96248,Entire home/apt,50,4,8,2019-04-29,0.12,1,220 +726465,"❤️ of Williamsburg, Private Entrance",1869332,Elli,Brooklyn,Williamsburg,40.71927,-73.95591,Private room,129,2,129,2019-04-25,1.67,3,36 +726692,House 10 min from Midtown Manhattan,3641304,Remo,Queens,Astoria,40.76216,-73.92542,Entire home/apt,245,6,1,2015-08-29,0.02,1,164 +727512,Duplex Loft Suite w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73867,-73.95448,Entire home/apt,199,3,50,2019-07-02,0.67,28,47 +727547,Duplex w/ Patio @ Box House Hotel,417504,The Box House Hotel,Brooklyn,Greenpoint,40.73844,-73.95456,Entire home/apt,199,3,116,2019-06-28,1.56,28,36 +727835,Pristine Room and Art Experience,3772684,Glasshouse,Brooklyn,Williamsburg,40.70866,-73.95166,Private room,99,6,89,2017-12-12,1.09,2,89 +727964,Garden Pl Historical Artist studio,3493470,Tari,Brooklyn,Brooklyn Heights,40.69127,-73.99552,Entire home/apt,160,1,17,2016-03-15,0.21,1,0 +728409,Huge Room in South Williamsburg,3778274,AJ And Freddy,Brooklyn,Williamsburg,40.70061,-73.9552,Private room,65,2,164,2017-01-01,2.07,2,0 +728493,Feel at HOME away from HOME,1601416,Clement & Natalia,Manhattan,Harlem,40.81073,-73.9437,Private room,70,7,67,2019-01-01,0.87,1,0 +728498,WEST HARLEM PRIVATE BEDROOM,3779334,Lex And Derek,Manhattan,Harlem,40.80517,-73.95404,Private room,80,1,135,2019-06-22,1.67,1,365 +728764,AMAZING COLUMBUS CIRCLE LOCATION :),1475015,Mike,Manhattan,Hell's Kitchen,40.76761,-73.98619,Entire home/apt,100,30,3,2018-11-01,0.12,52,365 +729306,"Clean & Quiet BR in Sunset Park, BK",3787686,"Porfirio ""Firo"" & Maria",Brooklyn,Borough Park,40.64431,-74.00016,Private room,70,1,139,2019-06-04,1.70,1,364 +729841,Gorgeous Apt Heart of West Villlage,73549,Melinda,Manhattan,West Village,40.73616,-74.004,Entire home/apt,200,2,23,2018-12-07,0.32,1,0 +730480,Private Bedroom in Sunny Brooklyn Apartment,3798686,Jonathan,Brooklyn,Sunset Park,40.65989,-73.99536,Private room,66,3,51,2019-05-30,0.64,1,329 +731293,**YOUR HOME AWAY FROM HOME** : UES/66th LG 1 BDRM,3805320,R And R,Manhattan,Upper East Side,40.76352,-73.96394,Entire home/apt,200,3,203,2019-06-20,2.53,1,260 +731300,Private Room Williamsburg(Ariel) 4p,3398752,Alessandra,Brooklyn,Williamsburg,40.71141,-73.95427,Private room,95,2,164,2019-06-23,2.07,2,93 +731316,"Sunny & Clean Apt, Ideal Location",3805397,Christa,Manhattan,Chelsea,40.74092,-74.00037,Entire home/apt,140,1,6,2016-05-25,0.07,1,0 +732624,1 Pvt. Room in Upper West Manhattan,3813161,Cleveland,Manhattan,Harlem,40.81908,-73.94776,Private room,65,1,327,2019-06-29,4.01,1,287 +732700,Centrally located and spacious apt.,3815537,Reshma,Manhattan,Midtown,40.75154,-73.97104,Entire home/apt,106,7,10,2019-07-06,10,1,0 +734749,"QUIET spacious 1BR, great location!",3831783,Shahar,Manhattan,Upper West Side,40.78361,-73.97645,Entire home/apt,155,181,82,2016-08-26,1.07,1,188 +735677,CHIC Apt in TRENDY East Village,3771963,Megan,Manhattan,East Village,40.72849,-73.98041,Entire home/apt,249,2,111,2019-07-06,4.44,1,28 +735890,"Homey, Clean studio- East Village",3839667,Hallie,Manhattan,East Village,40.72369,-73.9894,Entire home/apt,120,7,6,2018-01-02,0.08,1,0 +736187,Private Room in lovely Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72661,-73.94586,Private room,52,5,35,2019-01-03,0.44,3,1 +737075,"Bright Friendly Apt, East Village!",2333904,Stephanie,Manhattan,East Village,40.7232,-73.97927,Private room,75,26,57,2019-05-20,0.70,3,98 +737126,Williamsburg Loft!! Bedford L 1blk!,3847832,Eric,Brooklyn,Williamsburg,40.71714,-73.95447,Shared room,195,2,80,2017-05-26,0.98,1,364 +738588,"Wedding guests accommodations, 3-7 bedrooms",1360198,Marina,Staten Island,Arrochar,40.59193,-74.06476,Entire home/apt,625,4,1,2015-11-01,0.02,4,335 +739239,Luxury Furnished 1 BR Apartment Near Central Park,15145088,Izi,Manhattan,Upper West Side,40.78674,-73.97243,Entire home/apt,171,30,4,2018-08-02,0.06,8,346 +739242,1 BR Modern Luxury Apart w W/D Steps From Park,15145088,Izi,Manhattan,Upper West Side,40.78747,-73.97238,Entire home/apt,185,30,8,2018-10-15,0.10,8,346 +739815,Cozy Private Room in LIC,1486623,Sol,Queens,Long Island City,40.74975,-73.93688,Private room,55,7,39,2019-06-25,0.48,1,46 +740823,Beautiful private Apt-15m Manhattan (3rd Room),570882,Eldad & Paulina,Brooklyn,Bushwick,40.70226,-73.92797,Private room,50,2,27,2019-06-12,0.35,1,2 +740947,BEST KIPS BAY LOCATION. HUGE 1BD,1475015,Mike,Manhattan,Kips Bay,40.74231,-73.97839,Entire home/apt,120,30,3,2015-08-02,0.05,52,365 +741154,Beautiful duplex loft with Skylight,1406458,Nancy,Manhattan,Tribeca,40.71778,-74.00452,Entire home/apt,210,14,10,2019-07-04,10,1,0 +741346,Entire 1BR Bohemian Apartment in Center of NYC,1099464,Nicolas,Manhattan,East Village,40.7296,-73.98479,Entire home/apt,133,2,1,2018-07-24,0.09,1,50 +741354,Simple and cozy place on the beach,2577615,Ella,Brooklyn,Brighton Beach,40.57728,-73.95362,Entire home/apt,73,30,21,2017-04-18,0.26,1,251 +741783,LOVELY 2BR West Village Apt!,3880974,Neil & Katie,Manhattan,West Village,40.73454,-74.00365,Entire home/apt,350,1,237,2018-09-16,2.96,1,0 +741797,Luxury Tribeca 1bdr in Doorman Bldg,3131199,Oly,Manhattan,Tribeca,40.71729,-74.00424,Entire home/apt,259,2,20,2015-12-30,0.25,1,17 +741806,Inwood-at the foot of the Cloisters,3883580,Viva,Manhattan,Inwood,40.85963,-73.93107,Private room,97,7,2,2018-09-05,0.06,1,87 +742026,NOLITA&SOHO BEST LOCATION&GREAT APT,132132,Rachel,Manhattan,Nolita,40.7229,-73.99574,Entire home/apt,199,7,66,2019-06-09,0.83,1,142 +742779,Upper West Side Stunner,3889339,Stacey,Manhattan,Morningside Heights,40.80529,-73.96467,Entire home/apt,125,2,7,2017-12-15,0.09,1,358 +742795,Spacious Heart of Ft. Greene Studio,3889383,Elizabeth,Brooklyn,Fort Greene,40.68736,-73.97496,Entire home/apt,100,1,273,2019-06-20,3.35,1,45 +744078,Tiffany Room in Duplex Home,2219255,Natalie,Brooklyn,Canarsie,40.6258,-73.90004,Private room,39,5,60,2019-06-09,0.95,3,34 +744220,Beautiful 1 bedroom in NOLITA (2 blocks from SOHO),52615,Kjersti,Manhattan,Nolita,40.72064,-73.99605,Entire home/apt,125,28,19,2019-06-18,0.25,1,267 +744228,"Entire gorgeous,cozy,light two bed ",192750,Charlotte,Manhattan,Harlem,40.80145,-73.95572,Entire home/apt,150,1,2,2013-01-05,0.03,1,0 +745037,Luxury Locale Sunny 1BR Suite,3906249,Page,Manhattan,Midtown,40.76412,-73.97666,Entire home/apt,170,7,83,2019-06-23,1.04,1,203 +746088,Little Italy gem Center of it all!,1483464,Robert,Manhattan,Little Italy,40.71955,-73.99706,Entire home/apt,199,3,219,2019-06-16,2.68,1,212 +746983,Enjoy All the Comforts of Home!,3920171,Sophia,Manhattan,Harlem,40.81161,-73.94046,Private room,80,3,0,,,1,362 +746996,Park Slope-Private Room/Bath/Entry,3920265,Kedin,Brooklyn,Park Slope,40.6747,-73.98245,Private room,125,3,270,2019-07-02,3.34,1,300 +747029,Private rooms in heart of Chelsea,3920522,Erik,Manhattan,Chelsea,40.74314,-74.00119,Private room,155,5,18,2019-06-05,0.24,1,90 +747159,sunny private room in east village,3801683,Jackson,Manhattan,Gramercy,40.73158,-73.98303,Private room,120,4,132,2019-07-02,1.62,1,267 +747344,"Stunning views! 3 separate bedrooms, L train Loft",3011406,Ellie,Brooklyn,Williamsburg,40.70608,-73.93154,Entire home/apt,220,3,151,2019-06-22,1.86,1,115 +747419,"Lovely, Sunny 1-Bedroom Apt with Kitcat",160565,Corina,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95604,Entire home/apt,90,1,3,2015-07-06,0.06,1,0 +747538,"HUGE mid-century modern, sunny flat w/ amazing cat",2293050,Nick,Brooklyn,Crown Heights,40.67652,-73.9614,Private room,61,2,167,2019-07-03,4.16,1,320 +747605,"East Village Studio, Great Location",3665794,Jack,Manhattan,East Village,40.72699,-73.97969,Entire home/apt,179,4,213,2019-07-01,2.62,1,277 +748656,Cozy Vintage Studio in Flushing (Close to LGA/JFK),1687335,Aimée,Queens,Flushing,40.76372,-73.79201,Shared room,108,5,2,2017-08-01,0.08,1,0 +749108,Cozy 4 BR Brooklyn townhouse in Clinton Hill,3936154,Molly,Brooklyn,Clinton Hill,40.68391,-73.96201,Entire home/apt,575,3,12,2019-07-01,0.15,1,0 +749455,Lovely Loft space near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77938,-73.98247,Private room,99,1,353,2019-06-25,4.33,4,73 +749896,"1 Bed Williamsburg Apt, Amazing Loc",3941862,Phil,Brooklyn,Williamsburg,40.7189,-73.95725,Entire home/apt,175,3,3,2016-10-15,0.05,1,0 +749965,Charming Brooklyn Abode,3905456,Amber,Brooklyn,Flatbush,40.64294,-73.96016,Entire home/apt,110,1,3,2016-08-21,0.05,1,0 +751851,Spacious 3 bedroom in Park Slope ,3010682,Philippa,Brooklyn,Park Slope,40.66777,-73.97781,Entire home/apt,250,10,4,2015-12-28,0.05,1,0 +752202,"Historic Mansion, Comfortable Room",3955766,Emily,Brooklyn,Bedford-Stuyvesant,40.67968,-73.94715,Private room,100,1,113,2018-08-27,1.43,1,0 +752289,Cozy Village apartment near NYU,2285974,Cristiana,Manhattan,Greenwich Village,40.72863,-74.00137,Entire home/apt,200,4,11,2017-05-20,0.14,1,259 +752366,"Big, close to subway, 3 stops from the city",3956850,Dana,Queens,Astoria,40.75583,-73.91839,Entire home/apt,89,3,17,2019-03-15,0.31,1,0 +752616,Sunny 2BR Penthouse - HUGE Terrace,3916070,Boris,Manhattan,Chinatown,40.71592,-73.9898,Entire home/apt,400,3,46,2019-06-27,0.57,1,175 +752783,LUXURY BROOKLYN LOFT STEPS TO PARK & SUBWAY,3959655,Eric And Aoife,Brooklyn,Windsor Terrace,40.65142,-73.97601,Entire home/apt,149,21,52,2017-06-24,0.64,2,0 +753399,SoHo Loft - The One,3963008,Philip,Manhattan,SoHo,40.72408,-73.99823,Entire home/apt,500,10,10,2019-04-28,0.22,1,33 +753622,1 Private Bedroom / East Village,869880,Karen,Manhattan,East Village,40.73233,-73.98695,Private room,95,5,64,2019-06-29,0.88,1,316 +753687,Mitchell Manor,3964655,Nicole,Brooklyn,Bedford-Stuyvesant,40.67958,-73.93687,Entire home/apt,125,3,104,2019-06-24,1.36,1,275 +753983,Super Cute Upper West Side Apt!!,3966721,Shaina,Manhattan,Upper West Side,40.80193,-73.96703,Private room,80,4,75,2019-07-01,0.93,1,15 +753991,Elegant Stuyvesant Heights Retreat,1884204,Mark,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93557,Entire home/apt,105,5,227,2019-07-03,2.79,2,234 +754353,Location Moreno,3250450,Petya,Queens,Long Island City,40.75754,-73.93004,Private room,39,30,13,2015-12-13,0.16,18,360 +755528,PRIVATE BATH/TONS OF SUNLIGHT/SAFE,3684360,Enrique,Bronx,Allerton,40.8584,-73.86969,Entire home/apt,49,2,189,2019-06-23,2.32,4,238 +755684,Cozy Soho Studio Loft Apt Bleecker ,3977494,Sandra,Manhattan,Greenwich Village,40.72714,-73.99581,Entire home/apt,187,14,1,2013-01-04,0.01,1,0 +755703,Room: King size bed + private bath,3977693,Oliver,Brooklyn,Bushwick,40.70118,-73.92826,Private room,55,3,10,2015-10-27,0.15,1,0 +756655,Light-Filled Prospect Height Apt.,3983140,Randy,Brooklyn,Prospect Heights,40.68116,-73.96559,Entire home/apt,250,3,61,2017-05-22,0.76,1,0 +756892,Clean Bright Midtown Studio by Park,3731320,Sara,Manhattan,Midtown,40.75982,-73.96521,Entire home/apt,125,4,3,2015-04-28,0.04,1,0 +756928,Your OWN Private Garden Apartment,1358245,Tania,Brooklyn,Clinton Hill,40.68785,-73.96708,Entire home/apt,100,2,27,2018-09-15,0.33,1,159 +757007,Zen Holiday Getaway,2124690,Chanelle,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95692,Entire home/apt,175,7,1,2015-05-23,0.02,1,0 +757187,Brooklyn Charm in Clinton Hill,209647,Jorge,Brooklyn,Clinton Hill,40.68468,-73.96303,Private room,50,4,32,2019-05-30,0.40,1,347 +758782,Perfect Midtown Apt E. 50th St,286313,Kiovanna,Manhattan,Midtown,40.75383,-73.96777,Entire home/apt,133,6,22,2019-06-29,0.33,1,5 +760303,UES Manhattan Quiet Nest 1 Bdrm,4007393,Jenni,Manhattan,Upper East Side,40.77638,-73.95247,Entire home/apt,155,5,63,2019-07-05,0.78,1,235 +761606,"Great location, cozy and quiet.",1292205,Pasha,Queens,Astoria,40.76361,-73.91793,Entire home/apt,140,5,15,2019-05-31,0.19,1,260 +761835,Apto 2 bed $80 night per person,4015459,Joao Lucas,Queens,Astoria,40.76605,-73.92922,Private room,80,2,72,2019-06-30,0.89,1,364 +762015,"Private Oasis, en suite bathroom",3992566,Clay,Brooklyn,Bushwick,40.70022,-73.93032,Private room,103,2,58,2019-06-20,0.94,3,69 +762145,Gorgeous Duplex w Riverview Terrace,3315563,Mariko,Manhattan,Upper West Side,40.78227,-73.9841,Entire home/apt,600,3,9,2018-10-20,0.12,2,353 +763527,Artist's Jungle Suite + Private Bathroom,3604585,Jenny,Brooklyn,Flatbush,40.64073,-73.95832,Private room,70,3,169,2019-07-01,3.07,3,188 +763600,"Private 2BR / East Williamsburg, Bk",3891399,Anthony,Brooklyn,Williamsburg,40.70369,-73.93284,Private room,75,3,2,2014-11-03,0.03,1,0 +763809,Mermaid Oasis in the Heart of Brooklyn,3604585,Jenny,Brooklyn,Flatbush,40.64232,-73.9572,Private room,55,3,66,2019-06-07,1.16,3,264 +763965,East Harlem Studio,4027283,Mariko,Manhattan,East Harlem,40.80826,-73.93401,Entire home/apt,50,4,24,2015-03-02,0.30,1,25 +764052,1 Bedroom Apartment in quiet area.,2618273,Sabrina,Queens,Ditmars Steinway,40.77466,-73.91807,Entire home/apt,390,3,1,2016-12-27,0.03,1,89 +764753,Beautiful 3 bedroom apartment!!,3371859,Jenny & Jose,Brooklyn,Crown Heights,40.67679,-73.93776,Entire home/apt,82,8,108,2019-06-16,1.33,2,238 +765203,Art Lover's Abode Brooklyn,2276842,Debbie,Brooklyn,Williamsburg,40.70745,-73.94307,Shared room,52,3,19,2019-06-30,0.44,2,88 +765315,Bed & Bathroom in Williamsburg Loft,4034995,Susan,Brooklyn,Williamsburg,40.71203,-73.95993,Private room,115,2,91,2017-04-30,1.18,1,258 +765563,Big Comfy Beds & Breakfast on the Deck,4036685,Norman,Queens,Bayside,40.75666,-73.76314,Entire home/apt,299,2,67,2019-06-20,0.95,2,322 +765569,"Brand New, Boutique Brooklyn Condo",4036700,Anna,Brooklyn,Downtown Brooklyn,40.69594,-73.98375,Entire home/apt,175,13,64,2019-03-31,0.80,1,116 +766542,"Designer apt. in Williamsburg, NYC",4041877,Ana,Brooklyn,Williamsburg,40.71988,-73.95616,Entire home/apt,100,90,4,2013-09-04,0.05,1,250 +766814,Adorable Midtown West Studio!,4022922,Caitlin,Manhattan,Hell's Kitchen,40.759,-73.9953,Entire home/apt,95,1,0,,,1,0 +766964,"Sublet Lovely Room in Astoria, 3-4 months",4044889,Jenna,Queens,Astoria,40.77016,-73.92316,Private room,55,80,3,2012-11-10,0.04,1,119 +767562,Beautiful communal house Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69254,-73.91092,Private room,45,2,77,2019-06-02,0.95,5,167 +767761,Beautiful 1 br in Williamsburg,4049527,Nathaniel,Brooklyn,Williamsburg,40.71572,-73.95574,Entire home/apt,165,1,41,2018-06-29,0.52,1,19 +767967,Studio in Chelsea,3949235,Lior,Manhattan,Chelsea,40.75039,-74.00287,Entire home/apt,105,7,2,2019-03-19,0.50,1,0 +767983,Gorgeous Williamsburg Apt + balcony,4048448,Miki & Yacine,Brooklyn,Williamsburg,40.71435,-73.95073,Entire home/apt,200,3,4,2015-12-31,0.05,1,0 +769175,Gorgeous apt. steps from subway,4061660,Amy,Manhattan,Washington Heights,40.83556,-73.94609,Private room,65,30,1,2017-07-01,0.04,1,249 +769279,Room for rent in East Village,1228080,Sasha,Manhattan,East Village,40.72439,-73.97767,Private room,100,7,1,2016-05-01,0.03,1,0 +769448,"Bedford Loft, Williamsburg Prime",4059034,Ian,Brooklyn,Williamsburg,40.7179,-73.96107,Entire home/apt,312,2,302,2019-06-23,4.18,1,246 +770514,"Studio in FlatIron, NYC !! ",4064804,Niki,Manhattan,Flatiron District,40.73997,-73.98789,Entire home/apt,195,1,1,2014-09-22,0.02,1,0 +770893,1 Bdrm Apt-Luxury Bldg-Upper West,4066797,Victoria,Manhattan,Upper West Side,40.77734,-73.9877,Entire home/apt,100,29,3,2019-02-11,0.11,1,301 +770960,Cozy 1 BR in Prospect Heights,4067211,Stephane & Hana,Brooklyn,Prospect Heights,40.67453,-73.96759,Entire home/apt,155,3,13,2016-04-21,0.16,1,0 +771436,3BR/3 Bath House in Astoria,4070269,William,Queens,Ditmars Steinway,40.78027,-73.90821,Entire home/apt,250,28,0,,,1,88 +772362,TIMES SQ/THEATRE DIST STUDIO,2631234,Frank,Manhattan,Hell's Kitchen,40.76078,-73.99076,Entire home/apt,165,3,276,2019-07-06,3.44,1,146 +772679,"Very large, clean 1 BR apartment",4076876,Tauheed,Manhattan,East Harlem,40.80343,-73.93514,Entire home/apt,120,3,22,2019-07-02,0.31,1,365 +773041,Nice beautiful room In the Bronx,3684360,Enrique,Bronx,Allerton,40.85914,-73.86979,Private room,38,1,187,2019-06-23,2.34,4,241 +773497,Great spot in Brooklyn,4081688,Santiago,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94551,Shared room,200,1,0,,,1,365 +773844,2 Beautiful Large Rooms/Fort Greene,4083145,Hannah,Brooklyn,Fort Greene,40.69377,-73.97009,Private room,90,10,1,2018-09-30,0.11,1,0 +773993,Upper East Side Oasis!,4083654,Santina,Manhattan,Upper East Side,40.77032,-73.95331,Private room,85,2,138,2019-07-07,2.06,1,196 +774791,Very clean bed room in queens NYC,1528912,Weiwei,Queens,Flushing,40.75612,-73.82517,Private room,55,2,31,2018-06-28,0.53,2,282 +774899,Unique West Village Loft with Deck,266210,Charles,Manhattan,West Village,40.73461,-74.00594,Shared room,350,2,13,2015-10-19,0.17,1,0 +775238,Fantastic East Village Location!,3659439,Michelle,Manhattan,East Village,40.72578,-73.98448,Private room,59,4,12,2019-06-23,0.16,1,12 +775280,New-York Family Friendly 2bdr/2bath,4089511,Marie,Manhattan,Harlem,40.81381,-73.94314,Entire home/apt,280,4,97,2019-06-28,1.25,2,48 +775326,Cozy Room in Artistic Brownstone,1568517,Karl & Catherine,Queens,Long Island City,40.74527,-73.94629,Private room,69,1,153,2019-01-18,1.89,2,132 +776257,Large One Bedroom in heart of North Williamsburg,4094151,Sean,Brooklyn,Williamsburg,40.71813,-73.9606,Entire home/apt,230,5,72,2019-06-30,0.91,1,325 +777297,XL 2 Bedroom LOFT in the Heart of Williamsburg,3419446,Jennifer,Brooklyn,Williamsburg,40.71606,-73.95527,Entire home/apt,200,2,72,2019-06-23,0.95,1,52 +777327,Cozy Quiet Sunny 1br Ditmas Park Close to Train,4086839,Nataliya,Brooklyn,Flatbush,40.64047,-73.96388,Entire home/apt,150,5,52,2019-05-28,0.65,1,311 +778381,Gorgeous Brooklyn Getaway,3043126,Aziza,Brooklyn,Bedford-Stuyvesant,40.6953,-73.95832,Private room,75,1,28,2019-06-01,0.36,1,365 +778495,Family Friendly Room & Bathroom on Central Park W,1114587,Keenan & Emily,Manhattan,Upper West Side,40.79767,-73.96114,Private room,120,3,2,2018-08-03,0.02,3,0 +779561,FULLY Furnished Studio ♥ Manhattan,4110491,Daniel,Manhattan,West Village,40.73652,-74.00876,Entire home/apt,140,30,18,2019-06-22,0.29,1,182 +779838,rent whole apt. classy 1-bedroom upper west side,4040811,Vance,Manhattan,Upper West Side,40.7982,-73.97173,Entire home/apt,200,2,8,2019-06-02,0.53,1,337 +780205,"Large 2 bedroom, full floor apt.",4092307,Eddie,Manhattan,Civic Center,40.71247,-73.99873,Entire home/apt,225,3,3,2017-01-02,0.07,2,189 +780858,"Charming Fort Greene studio, dream location",4118217,Peter,Brooklyn,Fort Greene,40.68798,-73.97442,Entire home/apt,145,7,4,2018-11-03,0.05,1,36 +781486,Spacious room in historic house,2723812,Libertad,Bronx,Port Morris,40.80461,-73.92276,Private room,60,3,86,2017-12-12,1.13,2,1 +782063,Cozy apartment steps to subway,4125000,Joseph,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95475,Entire home/apt,119,5,7,2016-04-23,0.09,1,0 +782554,Great West Village 1 bdr apartment!,1830890,Adela,Manhattan,West Village,40.73364,-74.00539,Entire home/apt,189,2,68,2019-07-01,0.92,1,63 +783202,"Charming Apt off Bleecker, First Fl",4129805,Evelyn,Manhattan,West Village,40.73164,-74.00327,Entire home/apt,190,2,185,2019-06-24,2.30,5,0 +783341,Private Bedroom LOWER EAST SIDE,4111640,Jennifer,Manhattan,Lower East Side,40.71502,-73.98192,Private room,69,7,48,2019-06-21,0.61,1,235 +783964,GREAT ROOM Fast 2 TIMES SQ 9min NYC,2347382,Massi & Ray,Queens,Long Island City,40.74997,-73.9397,Private room,70,1,148,2019-06-01,1.90,2,303 +784088, 1 Bed Apt in Utopic Williamsburg ,1506795,Anthony,Brooklyn,Williamsburg,40.71188,-73.9608,Entire home/apt,155,2,8,2014-04-28,0.10,1,0 +784124,"New Flat, Great Light, Unique Brooklyn Bungalow",3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68176,-73.914,Entire home/apt,149,2,67,2019-07-06,0.88,3,329 +784169,"Sunny, Gorgeous West Village Home",4135221,Nathalie,Manhattan,West Village,40.73186,-74.00329,Private room,160,1,148,2019-06-21,1.83,1,295 +784170,"HUGE, SUNNY ROOM, BLOCK 4RM TRAIN!",430188,Pam,Brooklyn,Williamsburg,40.70719,-73.95228,Private room,100,20,1,2014-06-10,0.02,6,214 +785166,Comfy Cool Convenient Downtown Manhattan,2840710,Mark,Manhattan,Lower East Side,40.71818,-73.98206,Entire home/apt,220,25,1,2013-10-17,0.01,1,350 +785508,Experience New York - A Locals Way,873273,Christian & Carla,Manhattan,Washington Heights,40.84448,-73.93978,Private room,85,2,211,2019-07-02,2.63,2,339 +785978,For cat lovers - East Village 1 bdr,953375,Wiebke,Manhattan,East Village,40.72762,-73.98218,Entire home/apt,135,5,18,2016-11-13,0.24,1,0 +786053,"Sunny Rm #2, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65545,-73.95781,Private room,45,1,168,2019-06-01,2.30,5,359 +786685,Big Brnstn Grdn Apt 2 stops to Midtown,4147380,Lauren,Manhattan,Harlem,40.82294,-73.94999,Entire home/apt,225,1,50,2019-06-14,0.72,1,265 +786727,Xmas in NYC!!!,4147608,Alison,Manhattan,Harlem,40.81915,-73.93964,Entire home/apt,100,7,11,2015-09-07,0.18,1,0 +786843,PRIVATE ROOFTOP +BEST LOCATION+COZY,3117671,Mariana,Brooklyn,Williamsburg,40.71222,-73.95827,Entire home/apt,145,3,121,2019-07-02,1.51,1,45 +786955,West Village - Gorgeous Studio Apt.,4148114,Dawn,Manhattan,West Village,40.73403,-74.00298,Entire home/apt,210,1,108,2019-07-02,1.35,1,305 +788005,"Spacious 1 Bedroom Apt, Prospect Hts/Park Slope",4153591,Rita,Brooklyn,Prospect Heights,40.67708,-73.96649,Entire home/apt,195,4,10,2019-03-16,0.13,1,95 +788035,Room in 2 Bdr Apt in Nolita/Soho LES,4105376,Luis,Manhattan,Nolita,40.72232,-73.99343,Private room,95,7,46,2017-11-18,0.57,1,0 +788106,Cozy West Village Apartment,3106826,Carl,Manhattan,West Village,40.73761,-74.00043,Entire home/apt,140,2,34,2018-08-31,0.43,1,159 +789476,Room With A View of Central Park,184110,Kiersten,Manhattan,Harlem,40.79863,-73.95292,Private room,95,2,25,2018-01-04,0.48,1,0 +789559,Love NYC! Luxury Apt Upper West ,4160421,Adam,Manhattan,Upper West Side,40.77775,-73.98732,Entire home/apt,295,10,11,2017-06-24,0.14,1,0 +789686,Cute & Quirky Private Room,3055496,Tessa,Manhattan,Washington Heights,40.85082,-73.9378,Private room,80,3,0,,,1,0 +790767,"East Village, Modern Apartment @ Astor Place",1212041,Michelle,Manhattan,East Village,40.72877,-73.98794,Entire home/apt,250,9,2,2019-04-26,0.20,2,126 +791452,Jazzy condo in Riverdale -fresh grown veggies,2556784,Claudia,Bronx,Fieldston,40.88757,-73.90522,Entire home/apt,60,1,25,2019-07-05,0.67,1,311 +792142,Studio Available on Upper East Side,4173419,Meredith,Manhattan,Upper East Side,40.76553,-73.96262,Entire home/apt,150,2,4,2015-06-09,0.06,1,0 +792835,Spacious Lower East Side Studio,180416,Martin,Manhattan,Lower East Side,40.71703,-73.98612,Entire home/apt,159,2,260,2019-06-27,3.58,1,141 +793590,Sunny in the Heart of Williamsburg,2450605,Jennifer,Brooklyn,Williamsburg,40.72034,-73.95669,Entire home/apt,225,1,0,,,1,0 +793951,Beautiful Bedroom in Harlem,4182834,Cruz,Manhattan,Harlem,40.82169,-73.93882,Private room,78,1,52,2017-08-14,0.66,1,0 +794156,Lincoln Center luxury condo,58366,Linna,Manhattan,Upper West Side,40.77445,-73.98496,Entire home/apt,210,30,48,2019-01-03,0.60,1,36 +794245,Historic Brownstone Private Garden,3069794,Hayley,Brooklyn,Bedford-Stuyvesant,40.68356,-73.94042,Private room,60,14,12,2016-09-01,0.22,2,0 +794281,Open loft in the heart of Union Sq.,2275401,Amir,Manhattan,Greenwich Village,40.73545,-73.9931,Entire home/apt,220,6,23,2017-01-02,0.29,1,0 +794425,Brooklyn two bedroom,4185135,David,Brooklyn,Windsor Terrace,40.65954,-73.97805,Entire home/apt,199,265,20,2018-07-27,0.32,2,90 +794427,Prospect Park Modern 3 Bedroom,4185135,David,Brooklyn,Windsor Terrace,40.65875,-73.9766,Entire home/apt,225,300,13,2018-04-07,0.23,2,0 +794472,Beautiful apartment nr Central Park,3718361,Jo,Manhattan,Upper West Side,40.80118,-73.96783,Entire home/apt,350,6,13,2015-06-15,0.16,2,0 +794496,Bright Quiet Room in N. Manhattan,4185984,Greer,Manhattan,Inwood,40.8678,-73.92619,Private room,65,2,93,2018-08-03,1.16,1,0 +794535,"Live in real NY apt, Midtown west",4186145,Raquel,Manhattan,Chelsea,40.75351,-73.99762,Entire home/apt,225,7,3,2015-09-26,0.06,1,250 +794567,Brooklyn Oasis - Master Bedroom.,4103779,Rachel,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95953,Private room,82,3,62,2019-06-22,0.80,1,247 +795198,"Big City of Dreams, East Village!",2333904,Stephanie,Manhattan,East Village,40.72381,-73.97896,Private room,75,26,58,2019-06-07,0.73,3,129 +795641,Weekend NY getaway? Holiday stay?,3472148,Brian,Queens,Ditmars Steinway,40.77452,-73.90889,Private room,60,1,0,,,1,0 +795680,Upper East side cozy 1 bdr apt,4191209,Fran,Manhattan,Upper East Side,40.7666,-73.95903,Entire home/apt,105,14,7,2019-01-06,0.16,1,84 +796232,"Cozy Apt in Bushwick, Brooklyn!",4194142,Alexandra,Brooklyn,Bushwick,40.70308,-73.92765,Entire home/apt,115,4,12,2018-09-21,0.18,1,0 +796370,Monthly discount - 2 bedroom - upper east side,61491,D,Manhattan,Upper East Side,40.77043,-73.9515,Entire home/apt,150,25,1,2017-09-30,0.05,2,207 +796490,Park Slope House -private room -1 block from metro,4107826,Mike,Brooklyn,South Slope,40.66882,-73.98841,Private room,65,5,5,2016-09-28,0.14,1,0 +796523,Rustic Modern Duplex Brownstone,4195861,Doris,Brooklyn,Crown Heights,40.67759,-73.95432,Entire home/apt,150,4,13,2019-01-02,0.30,2,15 +797696,Prime Williamsburg location with private deck,4025188,Suzanne,Brooklyn,Williamsburg,40.70773,-73.9566,Private room,101,2,32,2017-08-19,0.40,1,0 +797972,Spacious 1 Bdrm in BEST location!!,3882661,Ms,Manhattan,Gramercy,40.73493,-73.98655,Entire home/apt,130,3,26,2019-06-28,0.32,2,19 +798008,Hancock Town House!-Stuyvesant Mews,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68561,-73.92029,Private room,165,1,0,,,4,0 +798128,Large one-bed apt Upper East Side,4160649,Alex,Manhattan,Upper East Side,40.77483,-73.94674,Entire home/apt,175,3,1,2017-01-03,0.03,1,0 +798429,Modern 1-bedroom in Harlem Heights,4204890,Martin,Manhattan,Harlem,40.82536,-73.94923,Entire home/apt,115,3,186,2019-06-17,2.32,1,237 +799319,Peaceful Garden Sanctuary best part of Brooklyn!,838848,Sarah,Brooklyn,Fort Greene,40.69075,-73.97192,Entire home/apt,128,5,154,2019-05-13,1.93,1,301 +799484,E'33-EMPIRE STATE -PERFECT SPAC,1475015,Mike,Manhattan,Kips Bay,40.7449,-73.97656,Entire home/apt,116,30,5,2019-03-11,0.09,52,311 +799829,Small Town in the Big Apple!,4153233,Ted,Manhattan,Washington Heights,40.85262,-73.93821,Entire home/apt,192,2,41,2017-12-30,0.60,2,0 +799900,"Amazing apartment near museum, gardens & park!",4211266,Nora,Brooklyn,Prospect Heights,40.67338,-73.96415,Entire home/apt,150,17,3,2016-09-26,0.07,1,0 +799924,"Big Loft in Bushwick: Unfurnished, longterm sublet",2291000,Tommy,Brooklyn,Williamsburg,40.70538,-73.92946,Entire home/apt,163,1,3,2016-06-27,0.04,1,0 +799945,"Very Small Room, Old Historic Brooklyn Townhouse",149929,Obed,Brooklyn,Fort Greene,40.68537,-73.97713,Private room,40,8,32,2019-06-29,0.40,5,284 +800051,Bright & Beautiful 3bdr apt in Prime Williamsburg,195932,Zoe,Brooklyn,Williamsburg,40.7176,-73.95234,Entire home/apt,200,10,6,2018-04-30,0.09,1,174 +801281,Cozy Modern LES Apt-Prime Location,1010338,Stefan,Manhattan,Lower East Side,40.71956,-73.98574,Entire home/apt,158,5,39,2019-01-04,0.55,1,0 +801626,CBG HelpsHaiti #5 Suite,22486,Lisel,Brooklyn,Park Slope,40.68015,-73.978,Private room,115,2,25,2019-05-26,0.36,6,89 +802498,Manhattan *SuperHost* Luxury Master Bedrm PRIVATE,512878,Michelle,Manhattan,Harlem,40.82974,-73.94193,Private room,85,1,190,2019-06-30,3.70,2,178 +802677,Large & Elegant Pre-War One Bedroom,4224513,Adam,Manhattan,Upper West Side,40.78592,-73.97775,Entire home/apt,173,4,16,2018-11-10,0.20,1,0 +803237,Duplex with two terraces and a view,3642035,Arsenio,Brooklyn,Crown Heights,40.67504,-73.95273,Entire home/apt,250,4,6,2019-01-02,0.08,1,250 +803778,Luxury Loft Noho New York City,4230317,Jenny,Manhattan,NoHo,40.72591,-73.99452,Entire home/apt,465,30,47,2019-05-31,0.67,1,277 +804194,Large but cosy Bushwick apartment,4232762,Sigfus,Brooklyn,Williamsburg,40.70747,-73.93879,Entire home/apt,275,7,2,2016-01-07,0.03,1,0 +804246,"HUGE, PRIVATE, SUNLIT ROOM IN DOWNTOWN NYC LOFT!",4233030,Michael,Manhattan,Chinatown,40.71786,-73.99518,Private room,195,3,61,2019-06-30,0.77,1,134 +804388,Cute Studio Apt in a Mansion (1882),4233879,Karen,Brooklyn,Clinton Hill,40.68631,-73.96802,Entire home/apt,63,5,5,2015-11-14,0.06,1,0 +804815,Washington Heights homestay,4112902,Tiffany,Manhattan,Washington Heights,40.83329,-73.93834,Private room,36,1,33,2019-06-18,0.77,1,211 +804911,Sunny apartment in Carroll Gardens,2373697,Doug,Brooklyn,Carroll Gardens,40.68216,-73.99504,Entire home/apt,130,5,2,2015-06-26,0.04,1,0 +805028,"BOERUM HILL, Entire Home / Loft",1131081,Patrick,Brooklyn,Boerum Hill,40.68418,-73.98039,Entire home/apt,200,4,13,2019-01-04,0.22,1,0 +805218,Private Room in Converted Loft,4238591,Leah & Reed,Brooklyn,Greenpoint,40.73159,-73.95048,Private room,85,2,36,2019-06-14,0.45,1,278 +805793,Charming Astoria/NYC Studio Sublet,4241831,Timothy,Queens,Long Island City,40.76108,-73.9274,Entire home/apt,150,14,0,,,1,0 +806038,Home Sweet Room-SAPPHIRE-Queens NYC,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73698,-73.87763,Private room,45,3,89,2019-06-28,1.12,3,213 +806040,Home Sweet Room-EMERALD-Queens NYC!,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73842,-73.87609,Private room,45,3,125,2019-06-23,1.57,3,208 +807535,Spacious Private Bedroom Brooklyn - Williamsburg,4249297,Martina,Brooklyn,Williamsburg,40.70876,-73.94971,Private room,79,5,5,2019-01-02,0.21,2,198 +807882,Apt in Heart of Williamsburg,4250697,Brandon,Brooklyn,Williamsburg,40.71986,-73.95925,Entire home/apt,149,4,1,2013-06-30,0.01,1,0 +808313,Sunny East Village studio apartment,4252788,Suzana,Manhattan,East Village,40.72721,-73.98411,Entire home/apt,200,7,3,2015-11-13,0.04,1,0 +808476,Great Space / Private Room,3775799,Wendee,Manhattan,Harlem,40.83378,-73.94966,Private room,85,1,1,2013-11-01,0.01,1,365 +808618,Spacious & Sunny in Scenic Kw Gdns,4254417,Renee,Queens,Kew Gardens,40.70947,-73.82922,Private room,60,3,12,2019-06-08,0.31,1,351 +808705,ONE BED/ LUXURY @ COLUMBUS CIRCLE!,3038687,Karen,Manhattan,Hell's Kitchen,40.76704,-73.98345,Entire home/apt,139,45,16,2017-11-20,0.21,8,0 +808774,Chic 1 bd apt in Prime Williamsburg,4255290,Julia,Brooklyn,Williamsburg,40.7119,-73.96031,Entire home/apt,160,30,19,2019-04-26,0.26,1,59 +808851,Comfortable Room in UES - NYC ,1289936,Jhon,Manhattan,East Harlem,40.78728,-73.94579,Private room,95,4,150,2019-06-23,1.88,1,192 +810346,"Beautiful Apartment, Great Location",4252490,Luka,Brooklyn,Williamsburg,40.70281,-73.94328,Private room,80,10,15,2017-06-01,0.30,1,0 +810681,City View From Brooklyn– 2Bd+2Bth,2184470,Said,Brooklyn,Clinton Hill,40.69319,-73.96351,Entire home/apt,250,5,2,2017-01-01,0.03,1,0 +811198,Downtown Manhattan Luxury 1 Bedroom,4265697,Justin,Manhattan,Chelsea,40.74117,-73.99517,Entire home/apt,349,3,3,2016-11-13,0.07,1,0 +811238,Warm and Beautiful Harlem Apartment,4266017,Connie & Michael,Manhattan,Harlem,40.80586,-73.94642,Entire home/apt,165,7,8,2016-08-15,0.10,1,234 +811299,Radiant Cobble Hill - 1 bedroom,4231668,Darren,Brooklyn,Boerum Hill,40.68515,-73.99055,Entire home/apt,119,5,42,2017-01-02,0.53,1,0 +811347,West Village 1-BR Gem - Great Price,4255199,Bryan,Manhattan,West Village,40.73713,-74.00232,Entire home/apt,240,7,7,2018-07-24,0.10,1,0 +811450,Private Townhouse Guest Suite,4267089,Jo,Brooklyn,Bedford-Stuyvesant,40.68194,-73.92757,Private room,79,4,1,2015-01-02,0.02,1,359 +812057,DEBBIE'S COZY RETREAT,4065620,Debbie,Brooklyn,Bedford-Stuyvesant,40.68509,-73.93854,Entire home/apt,215,3,1,2013-01-01,0.01,2,300 +812467,"Vintage Chic Haven in Kensington, Brooklyn",574584,Jesse,Brooklyn,Kensington,40.63547,-73.97417,Private room,49,1,61,2019-06-23,0.95,1,100 +812671,CSS (Central/Sunny/Spacious) 1 BR in Park Slope,4271822,Angelina,Brooklyn,Park Slope,40.67138,-73.97772,Entire home/apt,190,3,76,2019-06-13,0.95,1,48 +812938,Shabby Chic Modern Chelsea Studio,4272748,Jason,Manhattan,Chelsea,40.74082,-73.99581,Entire home/apt,99,2,52,2018-04-07,0.65,1,30 +813225,"Quirky, Exposed-Brick Cozy Room Brooklyn Townhouse",149929,Obed,Brooklyn,Fort Greene,40.68871,-73.97181,Private room,68,8,37,2019-07-02,0.50,5,280 +813554,Historic Park Slope Gem - 1br,4275254,Valeria,Brooklyn,Park Slope,40.67228,-73.97248,Entire home/apt,185,30,36,2019-05-28,0.58,1,358 +813793,"Large, Private 2-BR Flat in the Lower East Side!",4276374,Peter,Manhattan,Lower East Side,40.71988,-73.98639,Entire home/apt,225,4,92,2019-06-24,1.47,1,67 +814327,room in uper east side manhattan,4279005,Jefry,Manhattan,Upper East Side,40.77171,-73.95042,Private room,81,10,64,2019-05-04,0.93,1,311 +814616,BIG STYLISH SUNNY EAST VILLAGE 1BR,545600,Alta,Manhattan,East Village,40.72699,-73.97894,Entire home/apt,199,5,23,2019-05-24,0.38,1,0 +814911,TASTEFUL DESIGN + SPACE FOREVER,4281123,Albert,Brooklyn,Bushwick,40.6916,-73.92294,Private room,55,2,2,2019-05-12,0.03,1,0 +815045,Stylish West VILLAGE Water Views,4281957,Marina,Manhattan,West Village,40.73227,-74.00949,Entire home/apt,340,7,38,2018-01-02,0.54,1,302 +815465,Central Park North Guest House,4284154,Jennifer,Manhattan,Harlem,40.80139,-73.95433,Entire home/apt,135,3,205,2019-06-11,3.19,2,184 +816637,Big apartment with top view! 1 block from subway.,1099716,Alvaro,Queens,Sunnyside,40.74263,-73.92476,Entire home/apt,85,2,108,2019-06-23,1.35,1,0 +816673,Very Cool Entire Apartment | BUSHWICK,4289709,Elise,Brooklyn,Bushwick,40.69764,-73.93084,Entire home/apt,65,7,4,2017-04-01,0.09,1,0 +816888,Whole Manhattan Apartment,2805766,Tristan,Manhattan,Washington Heights,40.85604,-73.93469,Entire home/apt,100,30,13,2018-11-28,0.18,1,219 +817113,large spaciousbrownstone house,1141935,Ana,Brooklyn,Crown Heights,40.67309,-73.94799,Private room,109,1,73,2019-06-23,0.92,3,284 +818084,Gorgeous sunny prime SoHo 1BR Apt.,128256,Annie,Manhattan,Greenwich Village,40.72825,-74.00225,Entire home/apt,290,2,70,2019-05-31,0.92,1,339 +818314,Cozy room in beautiful apartment !,4298156,Melina,Manhattan,Harlem,40.82513,-73.94617,Private room,35,7,0,,,1,0 +818325,Pied-à-Terre in Midtown Manhattan,4298167,Shane,Manhattan,Kips Bay,40.7445,-73.97583,Entire home/apt,148,5,29,2019-06-01,0.37,1,188 +818337,Newly Reno Room with Private Bath^,4241953,Celeste,Queens,Flushing,40.75979,-73.81016,Private room,57,2,17,2019-06-22,0.21,4,308 +818451,Lovely studio upper east side !,4298896,Nathalie,Manhattan,Upper East Side,40.76883,-73.95353,Entire home/apt,150,6,23,2018-01-07,0.31,1,0 +818481,MANHATTAN BEAUTIFUL PIANO ROOM,4299040,Ale,Manhattan,Harlem,40.82258,-73.95418,Private room,60,2,67,2019-06-28,0.88,4,117 +818518,MANHATTAN BEAUTIFUL FIRESCAPE ROOM,4299040,Ale,Manhattan,Harlem,40.82238,-73.95534,Private room,60,2,48,2019-06-23,0.61,4,114 +819206,Cute shared studio apartment,4306950,Christopher,Manhattan,East Harlem,40.79106,-73.95058,Shared room,45,2,107,2019-06-24,1.50,1,313 +819228,MANHATTAN CONVENIENT 2 CLOSET ROOM,4299040,Ale,Manhattan,Harlem,40.82173,-73.95548,Private room,60,2,33,2019-05-28,0.46,4,211 +819419,"Entire Private, Spacious 1-BR in Ft. Greene",4303726,Tanjila,Brooklyn,Clinton Hill,40.68443,-73.96337,Entire home/apt,125,3,124,2019-05-27,1.56,1,158 +819893,MANHATTAN CONVENIENT NICE ROOM IN NYC,4299040,Ale,Manhattan,Harlem,40.82233,-73.95568,Private room,60,2,36,2019-05-19,0.54,4,133 +819956,"Home away from home,clean and cozy.",9269794,Jerbean,Brooklyn,Bedford-Stuyvesant,40.68615,-73.93095,Private room,75,2,38,2019-01-02,0.51,1,365 +820218,"Lovely East Village Apartment, Sept. 2 to 5 Only",337159,Thomas,Manhattan,East Village,40.73131,-73.98609,Entire home/apt,121,2,6,2018-09-05,0.09,1,156 +820710,1 large bedroom w/private bath,4310378,Autumn,Brooklyn,Clinton Hill,40.69413,-73.96389,Private room,89,2,89,2019-01-01,1.12,3,318 +820801,"Sunny 2BD, 2 balconies",25632,LeeAnn,Brooklyn,Greenpoint,40.72103,-73.94798,Entire home/apt,300,30,1,2014-09-12,0.02,1,0 +820946,Charm&Quiet in Hip Greenpt Brooklyn,4311270,Annie,Brooklyn,Greenpoint,40.73319,-73.95623,Private room,110,1,4,2017-12-28,0.18,1,0 +820953,Entire Apt Yours! (5 Night Minimum),4105474,Amanda,Brooklyn,Greenpoint,40.72166,-73.94037,Entire home/apt,99,7,10,2019-01-01,0.13,1,81 +821135,Bright Loft One Stop from Soho,4311243,Owen,Brooklyn,Downtown Brooklyn,40.69379,-73.98525,Entire home/apt,170,7,41,2019-01-12,0.55,1,0 +822016,1BR w/private bath in modern Prospect Heights apt,61873,Seema,Brooklyn,Crown Heights,40.67231,-73.96032,Private room,90,2,24,2019-07-03,0.30,1,30 +823520,ON HIGHLINE! Private room & bath,4323625,Arthur,Manhattan,Chelsea,40.75284,-74.00138,Private room,179,2,251,2019-07-03,3.15,1,157 +823618,"Large,sunny private room in Harlem",4324286,Ettice,Manhattan,Harlem,40.81024,-73.94154,Private room,80,4,41,2019-06-20,0.52,2,119 +823631,"Bright, cozy private room in Harlem",4324286,Ettice,Manhattan,Harlem,40.80997,-73.93992,Private room,65,5,29,2019-05-18,0.40,2,186 +823880,"Clean Private Bedroom on Lower East Side,Manhattan",69685,Anja,Manhattan,Lower East Side,40.72125,-73.99272,Private room,69,1,322,2019-07-04,4.46,1,84 +824163,Sunny Convienent Bushwick Room,4317067,Kamollio,Brooklyn,Bushwick,40.69763,-73.93102,Private room,42,1,18,2016-10-03,0.35,1,60 +824421,Central Williamsburg Fab Large Room,4328005,Dina,Brooklyn,Williamsburg,40.71622,-73.96042,Private room,70,1,8,2015-01-07,0.10,1,0 +825193,Park Slope Apartment ,4330726,Jon,Brooklyn,Park Slope,40.67507,-73.97792,Entire home/apt,155,5,22,2019-05-09,0.28,1,189 +825486,1 BEDROOM APARTMENT IN UPPER EAST,4331441,Francesco,Manhattan,Upper East Side,40.76744,-73.96118,Entire home/apt,135,1,225,2019-06-18,2.83,1,19 +825545,Clean cozy room central historic gay best area,872805,Mike,Manhattan,Greenwich Village,40.73336,-73.99836,Private room,120,21,79,2019-07-07,1.04,2,34 +825550,Luxury 1BD in Historic Carrol Gardens Brownstone,4331864,Jeff,Brooklyn,Gowanus,40.67869,-73.99197,Entire home/apt,135,8,7,2019-04-27,0.14,1,0 +826307,"Near Manhatten, NEW Empire Outlets, park!",4192794,Anna,Staten Island,Tompkinsville,40.63132,-74.08799,Private room,47,1,20,2016-11-06,0.26,1,323 +826388,"Spacious & Comfy, Top of Central Pk",359447,Adrian,Manhattan,Harlem,40.80394,-73.9506,Private room,69,4,18,2019-04-25,0.23,1,280 +826603,No Longer Available Brooklyn Brownstone,4079140,Kat,Brooklyn,Crown Heights,40.67828,-73.95646,Private room,100,2,37,2015-11-10,0.52,1,2 +826685,Dreamy Private Room in Super Cool Bedstuy Apt.,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68407,-73.93944,Private room,51,3,36,2019-06-23,3.04,2,32 +826690,"Sunny, Family-Friendly 2 Bedroom",4289240,Lucy,Brooklyn,Prospect Heights,40.67919,-73.97191,Entire home/apt,4000,4,0,,,1,83 +826764,Spacious Sunny Union Sq Room,4336760,Marie,Manhattan,Chelsea,40.73588,-73.99224,Private room,65,180,2,2019-06-02,0.07,1,263 +827719,Experience Brooklyn like a True Brooklynite,611137,Shahar,Brooklyn,Clinton Hill,40.68334,-73.96704,Private room,60,3,126,2019-06-27,3.59,2,120 +828130,Brooklyn Apt next to Prospect Park,4210082,Monica,Brooklyn,Prospect-Lefferts Gardens,40.66229,-73.96296,Private room,70,1,84,2016-10-08,1.06,1,188 +828553,Location AND Space in the city!!,3882661,Ms,Manhattan,Gramercy,40.7349,-73.98549,Entire home/apt,130,3,26,2019-06-23,0.41,2,23 +828685,Cute Room in Artist/Designers' Flat,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94698,Private room,70,1,37,2019-06-10,0.48,3,325 +828796,Large 2BR Apt in Brownstone,4344588,Gabe And Jane,Brooklyn,Clinton Hill,40.68673,-73.96252,Entire home/apt,200,2,267,2019-06-19,3.37,1,266 +829083,"Steps From Art, Shopping & Eats",4345735,Jennifer,Brooklyn,Prospect Heights,40.67378,-73.96471,Entire home/apt,150,3,11,2014-12-26,0.14,1,0 +829935,Charming Backyard Apt in Townhouse,4348003,Bob,Manhattan,Washington Heights,40.83783,-73.93832,Entire home/apt,130,5,47,2019-06-12,0.59,1,9 +830840,Private Bedroom in a Studio,4350748,Anna,Brooklyn,Midwood,40.62908,-73.95965,Private room,68,7,1,2012-12-12,0.01,1,87 +830949,DESIGNER LOFT W PRIVATE ROOFTOP & PANORAMIC VIEWS,4352069,Rebecca,Manhattan,East Village,40.72632,-73.97907,Private room,79,1,137,2019-06-20,1.98,2,298 +831911,Entire apt close to Lincoln Center ,4355788,Ef,Manhattan,Upper West Side,40.77627,-73.98365,Entire home/apt,149,10,9,2017-06-09,0.19,1,0 +832157,Seeking tenant for January 2013,4356301,Coire,Brooklyn,Bushwick,40.70738,-73.92213,Private room,120,1,0,,,1,0 +832596,Spacious 1 BR Near the Water UES,1723222,Nick,Manhattan,Upper East Side,40.77613,-73.94872,Entire home/apt,250,4,1,2016-05-24,0.03,1,0 +832772,NO PLACE LIKE YOUR NYC HOME! UPPER WEST SIDE 1BDRM,4358812,Scott,Manhattan,Upper West Side,40.77837,-73.97964,Entire home/apt,175,7,23,2019-03-02,0.29,1,0 +833519,Large Bedroom for 2 brickwall,4112404,Vero,Manhattan,Washington Heights,40.85123,-73.93223,Private room,40,15,4,2019-01-01,0.05,3,353 +834088,Charming Private room in Greenpoint,4363775,O.,Brooklyn,Greenpoint,40.73184,-73.95802,Private room,55,11,11,2018-08-31,0.23,3,11 +834190,Manhattan Lux Loft.Like.Love.Lots.Look !,2369681,Carol,Manhattan,Lower East Side,40.71921,-73.99116,Private room,99,2,540,2019-07-06,6.95,1,179 +834968,3br w/ Private Roof Steps to Subway,1896642,Jay,Brooklyn,Williamsburg,40.71699,-73.95817,Entire home/apt,500,5,0,,,1,0 +836578,Airy+Sunny 1bdrm- Steps to HighLine,1268505,Jh,Manhattan,Chelsea,40.74372,-74.00021,Entire home/apt,240,7,26,2019-05-13,0.37,1,330 +836720,Brand New Bay House ,4372934,Manuel Alberto,Queens,College Point,40.78417,-73.83875,Entire home/apt,400,2,47,2019-06-11,0.61,1,361 +837256,"UES APT- NEAR CENTRAL PARK, MUSEUMS",2862643,Nia,Manhattan,Upper East Side,40.77389,-73.951,Entire home/apt,280,2,0,,,1,0 +837282,Spacious Loft in heart of Tribeca,4375496,Jared,Manhattan,Tribeca,40.71969,-74.00876,Entire home/apt,235,3,5,2015-10-04,0.08,1,177 +837430,Ground Floor Studio With Backyard,252365,Eileen,Manhattan,East Village,40.7225,-73.98267,Entire home/apt,130,5,4,2015-01-03,0.05,1,0 +837503,❤️Feel@HOME Brooklyn Clinton Hill ❤️,265525,Casey,Brooklyn,Bedford-Stuyvesant,40.69165,-73.95456,Entire home/apt,96,5,224,2019-06-21,2.82,1,77 +837958,Very cozy room with a tv.!,4378763,Antonio,Queens,Long Island City,40.7529,-73.92985,Private room,63,2,26,2014-07-13,0.33,3,249 +838070,Brooklyn Apt: 1 Bedroom w/Garden,240048,Katherine / François,Brooklyn,Sunset Park,40.66059,-73.99361,Entire home/apt,150,10,8,2018-06-23,0.17,2,176 +838586,***HOT SPOT*** 2 blocks to L/G Trains *** Modern,326150,Ronny,Brooklyn,Williamsburg,40.71733,-73.9531,Entire home/apt,200,2,11,2019-04-27,0.23,1,0 +838974,comfy artsy cottage garden studio,4255319,Laura,Brooklyn,Prospect Heights,40.67922,-73.96907,Entire home/apt,90,7,6,2018-01-03,0.08,1,0 +839058,Midtown Lux Manhattan by 5th Ave,4383196,David,Manhattan,Midtown,40.76188,-73.97193,Entire home/apt,269,5,15,2017-01-03,0.22,1,0 +839539,"Awesome, Unique EAST VILLAGE LOFT!!",3200135,Matt,Manhattan,East Village,40.72876,-73.98413,Private room,80,7,0,,,1,31 +840103,"Charming, huge BR, nr Prospect Park",164534,Holly,Brooklyn,Prospect Heights,40.68062,-73.97042,Private room,80,2,24,2015-08-31,0.33,1,0 +840594,Huge beautiful one bed West Village,4389865,Fiona,Manhattan,West Village,40.73126,-74.00502,Entire home/apt,400,7,7,2018-10-13,0.10,1,365 +840667,Amazing Greenwich Village w pool,4390058,Jeffrey,Manhattan,Greenwich Village,40.73075,-73.99265,Entire home/apt,349,3,17,2016-11-26,0.21,1,356 +840731,Historic East Village Townhouse,4390639,Joanna,Manhattan,East Village,40.73345,-73.98956,Entire home/apt,495,2,66,2019-07-01,0.93,1,334 +840794,Big one bedroom located in Brooklyn,4390881,Todd,Brooklyn,Prospect Heights,40.6763,-73.96528,Entire home/apt,85,14,13,2019-01-26,0.17,1,22 +841075,Spacious and Clean Brooklyn Flat,4392420,John,Brooklyn,Bushwick,40.70366,-73.9269,Entire home/apt,85,15,22,2016-10-22,0.28,1,0 +841211,Spacious Centrally Located Apt!!!,3665164,Joseph,Manhattan,Chelsea,40.7466,-73.99219,Private room,999,10,30,2016-10-12,0.40,1,365 +841292,BIG room in fun loft – heart of NYC,4393626,Aaron,Manhattan,Chelsea,40.74712,-73.99514,Private room,109,3,26,2019-05-27,0.36,2,18 +841484,cozy charming apt - Lower East Side,2682735,Andrew,Manhattan,Lower East Side,40.71892,-73.98627,Entire home/apt,175,3,50,2019-06-30,0.63,1,1 +842167,1 BDR in Heart of Lower East side,2257960,Melanie,Manhattan,Chinatown,40.71593,-73.99031,Entire home/apt,150,4,14,2019-05-28,0.31,1,18 +842176,Cozy Room in Williamsburg Loft Apt,3330412,Pierre & Amira,Brooklyn,Williamsburg,40.71541,-73.94464,Private room,80,4,80,2017-10-18,1.08,1,245 +842494,Charming Studio Near Central Park!,148545,Lisa,Manhattan,Upper West Side,40.77886,-73.98444,Entire home/apt,150,7,1,2013-11-09,0.01,1,0 +842973,Great 1 bedroom- awesome location,4401275,Ashley,Manhattan,Hell's Kitchen,40.76194,-73.99346,Entire home/apt,175,1,33,2016-03-30,0.44,1,0 +843003,Modern Two-Bedroom Balcony Apartment,864735,Jason,Queens,Astoria,40.75665,-73.92015,Entire home/apt,107,30,15,2019-04-30,0.19,8,268 +843036,Beautiful apt uptown Manhattan,4401623,Roman,Manhattan,Washington Heights,40.84714,-73.94172,Entire home/apt,80,60,22,2019-04-17,0.28,1,226 +843491,Clean 1 bedroom with private bath :),4241953,Celeste,Queens,Flushing,40.76074,-73.80969,Private room,80,3,8,2019-01-04,0.17,4,342 +843499,Large sunny room 10 min to Midtown!,350553,Stav,Manhattan,Harlem,40.8129,-73.95213,Private room,75,1,4,2015-01-02,0.06,2,0 +843524,A Little Palace in Brooklyn for Shoots and Events,673406,Alex & Britta,Brooklyn,Bushwick,40.70234,-73.92424,Entire home/apt,800,1,34,2019-07-01,0.45,1,365 +844319,"XL 90m2 2BR Victorian area,sleeps 7",683027,Camille,Brooklyn,Flatbush,40.62961,-73.9572,Entire home/apt,130,1,219,2019-06-13,2.91,1,237 +845362,Perfect 750 SF W. Village 1 Bedroom,4413463,Carolyn,Manhattan,West Village,40.73574,-74.00056,Entire home/apt,250,7,0,,,1,0 +845417,LOVELY LOFT | 24H DOORMAN | PERFECT,3891436,Felix,Manhattan,Lower East Side,40.71312,-73.99033,Entire home/apt,260,6,23,2019-05-20,0.30,1,0 +845517,Queen-sized Room Avail in Huge 2 bdrm/2bth loft.,4414425,Ian,Brooklyn,Clinton Hill,40.69691,-73.96713,Private room,36,1,8,2019-05-26,0.10,1,83 +846190,Modern condo close to Prospect park,3159197,Lewis,Brooklyn,Prospect-Lefferts Gardens,40.66251,-73.95374,Entire home/apt,140,2,11,2019-06-27,0.18,1,35 +846275,"BEST LOWER EAST SIDE APT, SLEEPS 4 COMFORTABLY.",1732005,Ren,Manhattan,Lower East Side,40.72003,-73.98693,Entire home/apt,145,2,220,2019-06-21,2.97,1,268 +846457,Beatiful Studio in williamsburg,945407,Clara,Brooklyn,Williamsburg,40.7141,-73.96477,Entire home/apt,120,3,8,2017-09-25,0.13,1,0 +846470,"COZY SUNNY ROOM, BLOCK 4RM TRAIN :)",430188,Pam,Brooklyn,Williamsburg,40.70694,-73.95307,Private room,75,18,5,2019-05-11,0.06,6,112 +846549,New York City Dream Apartment,4420306,Luis Alejandro,Brooklyn,Bedford-Stuyvesant,40.68941,-73.95247,Private room,60,2,2,2015-08-02,0.04,1,0 +846799,Strawberry B&B,4421935,Maddy,Brooklyn,Bushwick,40.7077,-73.92212,Private room,69,30,51,2017-05-24,0.67,1,7 +846829,Private room in the lower east side,395609,Jb,Manhattan,Lower East Side,40.71275,-73.98682,Private room,95,1,7,2015-08-15,0.12,1,0 +846854,Large Garden Duplex on Park block,4422368,Dirk,Manhattan,Upper West Side,40.78689,-73.97314,Entire home/apt,300,30,93,2019-06-08,1.24,1,284 +846871,"Cozy 1 BR near Central Park, AMNH, The MET & More",3179895,Dee,Manhattan,Upper West Side,40.78429,-73.97815,Private room,131,2,220,2019-06-23,2.85,1,1 +847591,Brooklyn Apartment,4425467,Oded,Brooklyn,Bushwick,40.7016,-73.91868,Entire home/apt,120,5,6,2015-09-27,0.10,1,0 +848087,Great light-filled 1BR in Brooklyn,3526444,Luca,Brooklyn,Bedford-Stuyvesant,40.68196,-73.95168,Entire home/apt,100,5,15,2019-06-04,0.25,1,94 +848170,Gorgeous 1BR near Prospect Park,4428278,Rohit,Brooklyn,Kensington,40.64651,-73.97662,Entire home/apt,100,4,20,2017-09-10,0.26,1,0 +848174,1BR East Village Apt - Entire Apt.,1468667,Darragh,Manhattan,East Village,40.73031,-73.98426,Entire home/apt,190,1,0,,,1,0 +848220,LUXURY APT w PRIVATE GARDEN NYC UES,4425694,Gregory,Manhattan,Upper East Side,40.76714,-73.95922,Entire home/apt,160,1,187,2019-05-24,2.36,1,221 +848707,"Bright Room in Queens, Shared bath%",4241953,Celeste,Queens,Flushing,40.76,-73.81117,Private room,60,2,17,2018-10-07,0.22,4,314 +848718,Spacious & Comfy by Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.6593,-73.95686,Private room,75,3,46,2019-06-06,0.82,3,311 +848722,Lovely BR In The ❤ Of Flushing! Free Metro Card,4241953,Celeste,Queens,Flushing,40.76014,-73.81146,Private room,45,2,39,2019-06-07,0.52,4,292 +848853,Upper Manhattan//Harlem Classic,4432173,Stella,Manhattan,Harlem,40.80712,-73.95316,Private room,65,2,15,2018-05-16,0.20,1,361 +849409,Spacious garden appartment brooklyn,4434798,Bernard,Brooklyn,Prospect Heights,40.68099,-73.97446,Entire home/apt,120,5,145,2019-07-01,1.82,1,0 +849567,Your own large 1BR apt in Manhattan,52394,Geraldine,Manhattan,Inwood,40.86585,-73.92693,Entire home/apt,80,4,16,2018-05-11,0.20,1,0 +849603,Spacious Crown Heights Apartment,4435623,Ayana,Brooklyn,Crown Heights,40.67525,-73.9486,Entire home/apt,100,7,52,2019-06-15,0.67,1,56 +849703,"Convenient, Renovated 2 Bedroom",145609,Ceci,Brooklyn,Carroll Gardens,40.67771,-73.99428,Entire home/apt,250,2,82,2016-02-29,1.08,1,0 +850097,Beautiful 1BD in the West Village,4438960,Taleah,Manhattan,West Village,40.73118,-74.0029,Entire home/apt,235,2,97,2019-04-10,1.47,1,40 +850148,1 ROOM IN AMAZING ARTIST NYC LOFT,2843998,Julie,Brooklyn,Williamsburg,40.7106,-73.96532,Private room,85,2,35,2019-05-04,0.55,2,365 +850198,"UES 1 br, 2 blocks from the Met ",4439578,Zs,Manhattan,Upper East Side,40.77815,-73.95902,Entire home/apt,195,31,8,2013-06-28,0.10,1,273 +850338,Authentic Luxury Designed Loft,4440548,Thomas,Brooklyn,Williamsburg,40.71427,-73.94671,Entire home/apt,145,3,166,2019-06-20,2.15,2,151 +850435,Sunny Loft in Brooklyn next to Bedford L,4441020,Tara,Brooklyn,Williamsburg,40.71731,-73.95627,Entire home/apt,55,30,0,,,1,159 +850517,3 Bedroom Duplex/ 2 Baths and 2 LR,254846,Brendan,Brooklyn,Bushwick,40.68646,-73.91313,Entire home/apt,289,3,38,2019-05-20,0.51,4,354 +850712,Cute Studio Greenwich Village NYC,4442608,Mario,Manhattan,Greenwich Village,40.73132,-73.99979,Entire home/apt,120,30,17,2019-06-30,0.27,1,231 +850943,ARTIST TRENDY NYC LOFT,2843998,Julie,Brooklyn,Williamsburg,40.71171,-73.96694,Entire home/apt,149,5,26,2019-04-22,0.41,2,14 +851130,Nice Furnished Short Term in NY,4444170,Tiziana,Manhattan,Washington Heights,40.84764,-73.93875,Shared room,100,1,31,2018-10-08,0.40,1,364 +851772,CHIC 1 BEDROOM IN MANHATTAN (UES),4445677,Ari,Manhattan,Upper East Side,40.7704,-73.95024,Entire home/apt,166,1,15,2014-09-06,0.19,1,188 +851784,Designer's spacious Manhattan apt.,4446767,Ks & Eli,Manhattan,Washington Heights,40.85016,-73.93178,Entire home/apt,99,3,106,2019-07-04,1.43,1,331 +852118,Spacious 3 Bedroom Prospect Brooklyn near subway,3259274,Hannah,Brooklyn,Crown Heights,40.67434,-73.95728,Entire home/apt,150,2,37,2019-05-19,0.58,2,230 +852632,Gowanis Urban Oasis,4451246,Raymond,Brooklyn,Gowanus,40.66893,-73.99404,Shared room,44,2,155,2019-07-01,2.11,1,325 +852949,INCREDIBLY LOCATED GREENWICH/WEST VILLAGE APT.!,4453107,Sandi,Manhattan,Greenwich Village,40.72977,-74.00164,Entire home/apt,195,2,12,2019-05-15,0.18,1,90 +853900,Immaculate brand new one bedroom ,4459052,Dominique,Queens,Astoria,40.76488,-73.9297,Entire home/apt,95,30,0,,,1,0 +854033,1 BR in large full floor apartment,4092307,Eddie,Manhattan,Civic Center,40.7123,-73.99946,Private room,100,4,8,2019-04-21,0.11,2,7 +854253,Great Lrg Apt next to Park/Subway,4461145,Cristian,Brooklyn,Flatbush,40.6489,-73.96872,Entire home/apt,60,5,3,2019-04-30,0.06,1,189 +854521,"Room, Central Location, Priv. Entry",4463092,Samuel,Manhattan,Harlem,40.80925,-73.95541,Private room,62,2,45,2019-07-04,0.64,2,310 +855206,Bedroom with Private Bath and Roof,4467554,Sunny,Manhattan,East Village,40.72957,-73.98406,Private room,99,5,8,2015-11-05,0.14,1,0 +855462,1BR in Charming Downtown Apt,4469832,Stefan,Manhattan,Lower East Side,40.72034,-73.98585,Private room,90,15,25,2018-10-10,0.46,1,35 +855549,"Have the 1st floor of a two floor duplex,",213020,Robert,Manhattan,Upper West Side,40.79279,-73.97131,Private room,88,1,100,2019-07-05,1.41,3,98 +855919,Lovely Apt. in the heart of Harlem,4473860,Marina,Manhattan,Harlem,40.80845,-73.94435,Entire home/apt,125,1,64,2019-07-01,1.37,1,135 +856304,"Clean,spacious,comfy Brooklyn room",524575,Alicia,Brooklyn,Flatbush,40.6483,-73.9644,Private room,74,1,8,2015-10-19,0.10,1,283 +856440,YOUR OWN PLACE WITH VIEWS OF CENTRAL PARK,627898,Peter,Manhattan,Hell's Kitchen,40.76616,-73.98411,Entire home/apt,176,7,33,2019-05-02,0.42,1,0 +856918,Large Room in Garden Duplex ,4481005,Karen,Brooklyn,Park Slope,40.67422,-73.98097,Private room,62,2,11,2018-10-29,0.14,2,158 +857696,PRIVATE LARGE-MODERN-CLEAN master bedroom,2559004,Sergio,Manhattan,East Harlem,40.80215,-73.93889,Private room,51,1,4,2019-06-26,0.10,5,0 +857810,Heart of Williamsubrg 1 Bedroom,4487224,Tara,Brooklyn,Williamsburg,40.71373,-73.94958,Entire home/apt,249,3,31,2015-09-27,0.40,1,365 +858223,Entire flat west village,4431107,Ally,Manhattan,Chelsea,40.73818,-73.9977,Entire home/apt,200,2,82,2019-06-08,2.02,3,157 +858695,Very Large Private Room on quiet st,4494343,Douglas,Bronx,Mount Eden,40.84058,-73.91382,Private room,30,2,291,2019-06-20,3.69,1,208 +859023,Charming Artist's Home in Brooklyn,1536441,Erica,Brooklyn,Gowanus,40.66958,-73.98998,Entire home/apt,240,2,22,2018-10-27,0.29,1,280 +859596,Quiet room w/ 2 beds +light near subway+ museums,4500999,Aaron,Manhattan,East Harlem,40.79541,-73.94465,Private room,100,1,58,2019-07-02,0.83,2,316 +860163,Manhattan Studio Apartment: 2 Adults $125,4504962,Judith,Manhattan,East Harlem,40.78844,-73.94951,Entire home/apt,125,2,71,2019-07-02,0.90,1,199 +860401,Lovely 2 Bed Garden Apt Fort Greene,1603942,James,Brooklyn,Fort Greene,40.68681,-73.97675,Entire home/apt,149,29,86,2018-09-01,1.10,2,125 +860827,carriage house apartment,4524130,Claire,Brooklyn,Clinton Hill,40.68707,-73.96571,Entire home/apt,170,1,315,2019-06-22,4.03,1,275 +862890,Private bedroom w/ king size bed + pvt bathroom,4224309,Rachel...You Can Call Me Kaya :),Manhattan,Washington Heights,40.85081,-73.93118,Private room,150,2,3,2019-05-31,0.15,1,365 +864790,PEACEFUL SHARE BY CENTRAL PARK,4538664,Nicole,Manhattan,Upper West Side,40.77366,-73.98574,Private room,125,4,77,2019-05-25,0.99,1,326 +864981,Cozy Room in Charming Brownstone,1650330,Chandle,Brooklyn,Sunset Park,40.64902,-74.00897,Private room,68,5,43,2019-05-26,0.56,2,282 +865355,Spacious and Comfortable Room!,4543792,George,Manhattan,Harlem,40.82719,-73.94484,Private room,90,7,35,2019-04-30,0.48,1,312 +866890,Budget/diamond in heart of Harlem,4555996,Ben,Manhattan,Harlem,40.82316,-73.94129,Private room,65,3,68,2019-07-05,0.88,2,361 +867020,Nice quiet room on a backyard,4363775,O.,Brooklyn,Greenpoint,40.73404,-73.95737,Private room,50,31,10,2018-07-20,0.25,3,193 +867721,Comfortable Modern Room in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68344,-73.92189,Private room,65,3,132,2019-06-30,1.68,3,35 +867749,Sunny 2 bedroom in Prospect heights + terrace,745186,Chiara,Brooklyn,Crown Heights,40.67813,-73.96355,Entire home/apt,200,30,1,2015-07-19,0.02,1,283 +867769,Full Bedroom in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92973,Private room,65,3,116,2019-05-21,1.47,3,73 +868548,Friendly & fun w/ private terrace,4372160,Seth,Brooklyn,Williamsburg,40.70933,-73.94141,Private room,58,10,7,2018-05-02,0.10,1,0 +869522,Private room/Upper Manhattan,4581489,Nick,Manhattan,Harlem,40.82579,-73.94907,Private room,65,2,2,2015-12-08,0.05,1,0 +870119,Beautiful 2bdrm Bklyn duplex w/deck + backyard,355548,Jessica,Brooklyn,Clinton Hill,40.69208,-73.96525,Entire home/apt,185,4,8,2018-08-27,0.22,1,8 +871076,"LARGE 2 BR w/Dining Room, Balcony, Echo",4590460,Clare,Brooklyn,Bensonhurst,40.6101,-73.99591,Entire home/apt,115,4,6,2017-12-06,0.08,1,0 +872035,furnished bedroom 1150$ a month ,4599027,Amal,Manhattan,East Harlem,40.8032,-73.94004,Private room,100,30,0,,,2,365 +872210,Quiet 1BR Heart of the East Village,4600589,Carter,Manhattan,East Village,40.732,-73.98759,Private room,200,1,0,,,1,0 +873465,Cute & Comfortable One Bedroom,3588693,Maria,Brooklyn,Flatbush,40.65307,-73.95781,Entire home/apt,115,2,20,2019-05-19,0.25,1,282 +873701,"Chic, quiet 1BR with patio (steps from the subway)",699759,Becky,Brooklyn,Crown Heights,40.67121,-73.95534,Entire home/apt,140,4,125,2019-06-11,1.60,1,239 +874683,Spacious Bushwick Duplex Apartment,4617159,Alvin,Brooklyn,Bushwick,40.68777,-73.91601,Private room,62,2,22,2019-06-30,0.37,1,87 +874706,Fully Updated Modern 1 Bedroom Apartment,4616773,Joan,Brooklyn,Kensington,40.64534,-73.97189,Entire home/apt,95,3,154,2019-07-01,2.00,1,310 +875111,1-bedroom apt in Clinton Hill,2908554,Michael,Brooklyn,Bedford-Stuyvesant,40.68586,-73.95875,Entire home/apt,100,3,7,2019-01-27,0.11,1,0 +875567,Cozy West Village Studio Apartment,4622733,Marise,Manhattan,West Village,40.73746,-74.00686,Entire home/apt,113,3,71,2019-06-09,0.95,1,343 +876355,Large 1BR Columbia University,3994331,Vivian,Manhattan,Morningside Heights,40.81368,-73.95942,Entire home/apt,108,30,5,2019-01-19,0.07,1,230 +876565,Spacious Comfy Bedroom in Bed-Stuy,4509849,Ines,Brooklyn,Bedford-Stuyvesant,40.68598,-73.92677,Private room,62,3,112,2019-06-30,1.43,3,59 +877135,Williamsburg 1br APT,4628887,Hoonju / Co Host: Jose,Brooklyn,Williamsburg,40.71518,-73.94571,Entire home/apt,95,3,36,2019-06-16,0.95,1,89 +878142,Serene 1BR+Garden+Goldfish Pond+Cook's Kitchen,2597159,Alana,Brooklyn,Williamsburg,40.71335,-73.9496,Entire home/apt,200,4,4,2018-10-25,0.42,2,0 +880256,Beautiful Trendy 2br Harlem Apt.,4655169,Rochelle,Manhattan,Harlem,40.82764,-73.93842,Entire home/apt,165,2,21,2019-01-02,0.30,1,347 +880424,★Beautiful Home Away From Home★,3549531,Jeremy,Brooklyn,Prospect-Lefferts Gardens,40.65514,-73.95956,Private room,60,1,109,2019-06-04,1.52,1,2 +882209,Gorgeous Williamsburg Apartment,3673451,Nikki,Brooklyn,Williamsburg,40.70502,-73.95262,Private room,80,2,37,2019-05-04,0.56,2,89 +882258,Beautiful Studio on Prospect Park!,4233288,Jake,Brooklyn,Prospect-Lefferts Gardens,40.66033,-73.96212,Entire home/apt,100,6,78,2018-12-28,1.07,1,0 +882559,Private bedroom&bathroom in the heart of Manhattan,4670155,Idan,Manhattan,Hell's Kitchen,40.76113,-73.98918,Private room,110,3,213,2019-06-24,2.79,1,281 +883209,World Travelers to Couchcrash in BK,4158086,Vivian,Brooklyn,Bedford-Stuyvesant,40.69132,-73.94205,Shared room,50,3,15,2017-09-16,0.20,1,365 +883306,1 Bedroom in Clinton Hill Share,4310378,Autumn,Brooklyn,Clinton Hill,40.69494,-73.96372,Private room,79,2,102,2019-06-17,1.41,3,361 +883423,Clean and charming apartment in Carroll Gardens,4313683,Antoinette,Brooklyn,Carroll Gardens,40.67996,-74.00101,Entire home/apt,140,3,93,2019-05-04,1.24,1,65 +883517,3 Bedroom Upper West Side Gem,4677362,Julie,Manhattan,Upper West Side,40.78615,-73.98137,Entire home/apt,339,4,28,2019-07-06,0.37,1,167 +886808,"Free Metrocard*, Safe & Affordable",4701443,Christina,Queens,Flushing,40.75088,-73.81029,Private room,55,1,116,2019-06-14,1.51,2,298 +886833,"Private Suite, Free Metrocard*",4701443,Christina,Queens,Flushing,40.7525,-73.81126,Entire home/apt,81,1,313,2019-07-05,4.09,2,263 +887129,Comfortable and Large Duplex with Private Terrace,3490818,Jon,Brooklyn,Williamsburg,40.71437,-73.96054,Entire home/apt,191,3,156,2019-06-30,2.08,1,21 +887292,2 Bedroom Bushwick Apartment,4704914,Robert,Brooklyn,Bushwick,40.69982,-73.91957,Entire home/apt,139,3,106,2019-05-08,1.42,1,248 +887355,2 bedrooms 5-star building midtown ,4705358,D,Manhattan,Murray Hill,40.74791,-73.97334,Entire home/apt,500,5,1,2015-03-25,0.02,1,281 +888583,Gorgeous Greenpoint Railroad,4282125,Caroline,Brooklyn,Greenpoint,40.734,-73.95474,Entire home/apt,120,2,27,2019-01-01,0.35,1,280 +888905,"Sunny bedroom, next to subway and Central Park",4714927,Elisa,Manhattan,East Harlem,40.78933,-73.94932,Private room,60,2,53,2019-06-19,0.86,4,0 +890794,Cozy- bedroom in Jackson Heights!,4731046,Luis,Queens,Jackson Heights,40.75374,-73.8924,Private room,70,2,0,,,1,188 +890839,"Spacious, duplex townhouse w large garden oasis",831185,Andrew,Brooklyn,Crown Heights,40.68015,-73.96299,Entire home/apt,295,2,8,2019-05-28,0.11,3,365 +890855,Sun-Drenched Studio in Clinton Hill,128920,Magera,Brooklyn,Clinton Hill,40.68252,-73.96664,Entire home/apt,100,6,10,2017-07-03,0.13,1,0 +891117,Private Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82264,-73.94041,Private room,49,1,594,2019-06-15,7.57,3,339 +892463,Ideal Location + Shower In Kitchen!,1758019,Wil,Manhattan,West Village,40.73084,-74.00431,Entire home/apt,150,3,9,2015-03-30,0.12,1,0 +892704,Enjoy Brownstone Brooklyn!,4746193,Richelle & Neil,Brooklyn,Bedford-Stuyvesant,40.68485,-73.93684,Entire home/apt,120,2,163,2019-07-05,2.12,1,161 +893413,Architecturally Stunning Former Synagogue!,4751930,Martin,Manhattan,East Village,40.72668,-73.98179,Entire home/apt,2500,30,15,2019-07-01,0.26,1,89 +893853,Best Location btwn Un Sq/ Chelsea,1208402,Kristen,Manhattan,Flatiron District,40.74207,-73.99094,Entire home/apt,175,25,49,2016-10-17,0.63,1,188 +894015,Boldera: Your Home Away From Home,4622027,Damon And Kent,Brooklyn,Bedford-Stuyvesant,40.68194,-73.92896,Entire home/apt,107,2,147,2019-06-22,1.89,1,27 +894063,"Penthouse patio,city view,BIG bed",1803302,Lacey,Brooklyn,Williamsburg,40.71216,-73.96326,Private room,98,3,78,2019-05-27,1.01,1,268 +894093,"Cozy room,only 2 blocks from subway,10min to City!",4644172,Sheena,Queens,Astoria,40.7686,-73.9201,Private room,47,1,71,2018-09-04,1.05,1,0 +895368,Large 2 bedroom apt in Manhattan,4770121,Somaya,Manhattan,Harlem,40.82434,-73.93957,Entire home/apt,100,180,0,,,4,365 +895386,NYC-THE BEST: Stay in Comfy Apt Manhattan-Harlem!,2265770,Jeanine,Manhattan,Harlem,40.80706,-73.95403,Entire home/apt,170,5,86,2019-06-21,1.13,3,29 +898669,Hip Modern West Village Apartment,4782600,Brian,Manhattan,West Village,40.73276,-74.00074,Entire home/apt,150,3,90,2019-03-24,1.17,1,184 +898861,"Private One Bedroom Suite, 45 min from City",3546135,Jeanette & Henry,Queens,Briarwood,40.71156,-73.8091,Entire home/apt,63,3,104,2019-06-19,1.35,1,256 +900383,Brooklyn-Bedstuy-Studio,4808242,Selam,Brooklyn,Bedford-Stuyvesant,40.68145,-73.95178,Shared room,110,3,28,2019-04-11,0.36,1,34 +900503,Stylish 1897 garden duplex oasis!,4634013,Brandi,Brooklyn,Clinton Hill,40.68753,-73.96002,Entire home/apt,275,3,0,,,1,0 +903906,charming house on family block,4837614,Christine & Philip,Brooklyn,South Slope,40.66485,-73.98838,Entire home/apt,329,4,2,2016-08-18,0.05,1,0 +903947,Beautiful Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82124,-73.93838,Private room,49,1,597,2019-06-23,7.72,3,342 +903972,Great Bedroom in Manhattan,4734398,Jj,Manhattan,Harlem,40.82085,-73.94025,Private room,49,1,607,2019-06-21,7.75,3,293 +904060,Beautiful Modern apt in Brooklyn,4834187,Howard,Brooklyn,Clinton Hill,40.68496,-73.96111,Entire home/apt,165,4,37,2018-09-30,0.47,1,343 +905425,PAINTERS PARADISE / GREENPOINT,4843750,Painter,Brooklyn,Greenpoint,40.73425,-73.95506,Entire home/apt,160,5,152,2019-06-19,2.10,1,281 +905947,CHIC ROOM IN BROOKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64388,-73.95279,Private room,38,3,66,2019-06-10,0.93,3,283 +906038,Central Pk West-Convenient 1 BR,4848828,Joy,Manhattan,Upper West Side,40.79626,-73.96145,Entire home/apt,170,7,28,2019-05-22,0.37,1,333 +906058,Columbia area room pvt bath & entry,4765670,Irene,Manhattan,Morningside Heights,40.80776,-73.9654,Private room,105,2,233,2019-06-23,3.01,1,294 +907966,1 rm @ 3BR artist loft williamsburg,4864306,Joseph,Brooklyn,Greenpoint,40.72676,-73.95529,Private room,50,2,30,2019-07-02,0.42,3,249 +908046,1150$furnished room with a balcony,4599027,Amal,Manhattan,East Harlem,40.801,-73.94009,Private room,100,30,0,,,2,365 +908923,Charming East Village Studio,4872812,Toby,Manhattan,East Village,40.72784,-73.98486,Entire home/apt,100,3,2,2017-08-02,0.06,1,0 +909859,"charming luxurious house, NY, Brooklyn",3343848,Laurence,Brooklyn,Park Slope,40.6734,-73.97657,Entire home/apt,890,3,26,2018-11-27,0.34,1,341 +910976,Gorgeous PermaGO HOMES™ - FiDi - Room 2/2,4887492,Gershwyn,Manhattan,Financial District,40.71078,-74.00995,Private room,160,3,24,2018-02-12,0.31,2,352 +911092,Avenue A Apartment,4888892,Darina,Manhattan,East Village,40.723,-73.97861,Entire home/apt,145,2,157,2019-06-23,2.03,1,221 +912376,Room in cool Bushwick loft!,4103952,Maria,Brooklyn,Bedford-Stuyvesant,40.69901,-73.93967,Private room,51,3,4,2019-01-03,0.06,1,188 +915020,Garden Apartment in Park Slope,181756,Roslyn,Brooklyn,South Slope,40.66414,-73.98457,Entire home/apt,150,3,136,2019-07-07,1.80,1,301 +916311,Rooms in Spacious East Village Apt.,511175,Luis,Manhattan,East Village,40.72361,-73.97877,Private room,180,3,5,2017-02-19,0.08,2,31 +917058,Charming Greenwich Village studio,4924435,Darla,Manhattan,Greenwich Village,40.73356,-73.99876,Entire home/apt,225,1,3,2019-01-01,0.04,1,188 +918049,Union Sq European Serene apt,4929807,Liz,Manhattan,Chelsea,40.73949,-73.99483,Entire home/apt,250,3,48,2019-06-23,0.66,1,217 +918239,Cozy bedroom in Artist Loft,4930847,Rachel,Brooklyn,Williamsburg,40.70159,-73.94346,Private room,56,1,103,2019-06-10,1.60,1,65 +918426,IDEAL AREA!Reviews! LARGE btfl room,4932354,Mitty,Brooklyn,Prospect Heights,40.67852,-73.97008,Private room,70,7,73,2019-06-16,0.94,4,212 +919491,Park Slope LARGEST (private) SHARE IN PARK SLOPE,4938247,Kevin,Brooklyn,Park Slope,40.67665,-73.97925,Private room,70,2,163,2019-06-18,2.13,1,163 +919830,1br in a 2br apartment in Chelsea (23/7),1895793,Eduardo,Manhattan,Chelsea,40.74605,-73.99906,Private room,125,2,153,2019-06-28,2.17,1,161 +919978,2bdrm + Patio/BackYard/Time Square/1st Floor,2230103,Time Square,Manhattan,Hell's Kitchen,40.7642,-73.98677,Entire home/apt,399,2,287,2019-06-10,3.69,1,284 +919990,2 Bedroom Apt in Caroll Gardens,4629954,Sarah,Brooklyn,Carroll Gardens,40.67573,-73.99878,Entire home/apt,157,6,1,2017-01-03,0.03,1,24 +920930,Backyard BBQ in Brooklyn Brownstone,4950369,Meryl,Brooklyn,Bedford-Stuyvesant,40.68863,-73.94294,Entire home/apt,145,7,28,2018-08-27,0.39,1,188 +921441,Artsy Bedroom/Office in WaHi,4954283,Michelle,Manhattan,Washington Heights,40.84408,-73.93675,Private room,75,1,120,2019-06-21,1.89,1,90 +921585,Cosmopolitan Brownstone Sanctuary,4955205,Stelian & Deanna,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93648,Entire home/apt,280,3,68,2019-06-24,0.89,1,280 +921624,Rare Spacious Quiet Prime Williamsburg Duplex Loft,4955560,Emmanuel,Brooklyn,Williamsburg,40.71579,-73.9588,Entire home/apt,220,4,22,2019-02-23,0.30,1,8 +921862,Breathtaking view of New York city,4957149,George,Manhattan,Upper West Side,40.7886,-73.97553,Entire home/apt,190,28,28,2019-05-31,0.41,1,283 +923566,Sunlit Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78775,-73.98152,Entire home/apt,200,6,22,2019-01-04,0.28,2,354 +923979,"Private Studio Near JFK, LGA & Subway Not A Bsmnt",4970027,Tzvi,Queens,Briarwood,40.70715,-73.81468,Entire home/apt,77,1,78,2019-07-05,1.02,1,168 +924600,"Sunny, private room in Brooklyn!",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68713,-73.93659,Private room,35,5,69,2019-06-15,0.91,3,244 +924658,"Bright, airy room share in Brooklyn",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.687,-73.93446,Shared room,30,5,91,2019-06-01,1.18,3,248 +924719,Beautiful East Village Apartment,552453,Christian,Manhattan,East Village,40.72615,-73.98781,Entire home/apt,199,29,12,2017-08-22,0.17,1,31 +925075,Sunny Loft Style Apt-Great Location,4938485,Paul & Elena,Manhattan,Hell's Kitchen,40.75893,-73.99014,Entire home/apt,140,3,25,2015-01-03,0.33,1,157 +925137,Cute Manhattan Chelsea Apartment,3458692,Karla,Manhattan,Chelsea,40.74435,-74.00038,Entire home/apt,124,30,4,2016-06-10,0.07,1,42 +925240,Artist Loft - Union Square,4976428,Jonathan,Manhattan,East Village,40.73194,-73.98939,Entire home/apt,295,7,92,2019-06-24,1.23,1,316 +925730,Large studio all to yourself,4980428,L,Manhattan,Chinatown,40.7189,-73.99654,Entire home/apt,160,7,13,2019-06-10,0.17,1,335 +926337,Charm w/amazing city view by PS1,4260529,Harry,Queens,Long Island City,40.74641,-73.94611,Private room,349,1,30,2016-10-16,0.39,2,365 +927408,"Large Cozy Room #1, Landmark Home 1 block to PRATT",51038,Erica,Brooklyn,Clinton Hill,40.68618,-73.96603,Private room,98,2,38,2019-02-16,0.50,6,158 +927597,(2) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75444,-73.83057,Private room,76,1,75,2017-01-01,1.00,2,0 +927987,Bright Doorman One Bedroom on Upper East Side,755172,Meg,Manhattan,Upper East Side,40.77543,-73.95499,Entire home/apt,230,3,20,2019-06-10,0.26,1,282 +929032,Dumbo | Spacious private room w/ private bathroom,2420592,Lucas,Brooklyn,Vinegar Hill,40.70163,-73.98208,Private room,60,3,13,2019-06-18,0.66,1,0 +931352,Lovely Private Room in Bushwick! :),4156449,Cassia,Brooklyn,Bushwick,40.69958,-73.92006,Private room,40,5,0,,,1,0 +931642,Murray Hill Garden Apt. MANHATTAN,4976872,Min,Manhattan,Murray Hill,40.74848,-73.97884,Private room,118,30,116,2019-06-23,1.93,1,228 +932277,Fabulous Industrial Dumbo Loft,2902266,Kate,Brooklyn,DUMBO,40.70434,-73.98989,Private room,125,20,35,2015-01-05,0.45,1,311 +933129,Fort Greene Jewel,5072123,Sandra,Brooklyn,Fort Greene,40.69097,-73.97972,Entire home/apt,195,29,55,2019-05-31,0.72,2,233 +933861,Hell's Kitchen Hideaway - Private Entrance,5025046,Nick & Jim,Manhattan,Hell's Kitchen,40.763,-73.98911,Private room,85,2,100,2019-06-24,1.31,1,63 +936218,Clean-Furnished Room Near The Apollo (W 125th St.),5052897,Anthony,Manhattan,Harlem,40.81378,-73.95353,Private room,55,14,17,2019-06-30,0.23,1,41 +937678,Bushwick Loft,5062254,Michael,Brooklyn,Bushwick,40.70627,-73.92223,Entire home/apt,155,2,20,2019-07-01,0.26,1,0 +938022,Private Bedroom in Williamsburg,1866827,Gregory,Brooklyn,Williamsburg,40.7078,-73.94827,Private room,99,1,94,2019-06-16,1.22,1,358 +939657,Behind the Red Door II ,5076827,Diane And Craig,Manhattan,Harlem,40.81071,-73.94493,Entire home/apt,140,30,81,2019-05-31,1.05,2,194 +939724,Stylish Room-Artist/Designers' Flat,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.6943,-73.94538,Private room,85,1,32,2019-05-19,0.43,3,340 +940115,Cozy Studio in the Heart of Crown Heights,5067409,Ni,Brooklyn,Crown Heights,40.67555,-73.95254,Entire home/apt,75,7,15,2019-06-29,0.23,1,178 +940116,Bright Room in Historic Brownstone,1650330,Chandle,Brooklyn,Sunset Park,40.64942,-74.00749,Private room,53,5,39,2019-04-28,0.52,2,282 +941179,Clean & Cozy Brooklyn 1 BR Gem - Great location!,4085497,Michael,Brooklyn,Crown Heights,40.67296,-73.9501,Entire home/apt,150,2,42,2019-05-20,0.72,1,365 +941642,HELL'S KITCHEN STUDIO for 2 or 3,4888599,Rod,Manhattan,Hell's Kitchen,40.76662,-73.99302,Entire home/apt,179,3,209,2019-06-11,2.70,1,202 +944040,Entire 1.5 Br Apt- Crown Heights - Franklin Ave,896918,Rusty,Brooklyn,Crown Heights,40.67607,-73.95408,Entire home/apt,135,1,67,2019-06-23,0.87,1,348 +944049,Beautiful 1BR in Prime West Village,1908073,Andrew,Manhattan,West Village,40.73194,-74.00189,Entire home/apt,200,4,45,2019-07-01,0.59,1,48 +944183,your holiday-ready Harlem home away from home!,3361696,Lindsay,Manhattan,Harlem,40.81177,-73.95139,Entire home/apt,200,3,1,2018-01-02,0.05,1,0 +944755,STUDIO APT 1. IN PROSPECT LEFFERTS GARDENS,3270460,William M.,Brooklyn,Prospect-Lefferts Gardens,40.65908,-73.96125,Entire home/apt,100,5,117,2019-05-18,1.61,2,73 +944840,Dumbo Loft With A Beautiful View,5110818,Kevin,Brooklyn,DUMBO,40.70447,-73.98754,Entire home/apt,134,14,14,2019-01-29,0.18,1,0 +945297,East Village Gay Friendly Dbl Room,5074654,Seth,Manhattan,East Village,40.72836,-73.98163,Private room,100,1,414,2019-06-22,5.39,2,231 +947810,Seeking Short Term Roommate on UES,5138312,Georgina,Manhattan,Upper East Side,40.77464,-73.95695,Private room,50,20,11,2019-06-03,0.16,1,269 +947963,Sunny WILLIAMSBURG Room near SUBWAY,3229099,Brian,Brooklyn,Williamsburg,40.71684,-73.9441,Private room,50,40,16,2019-06-09,0.21,1,324 +949713,Luxury Duplex Loft w. Private Roof & Amazing Views,1295416,Tal,Brooklyn,Gowanus,40.6745,-73.99582,Entire home/apt,400,30,30,2019-06-01,0.39,1,67 +951365,Bushwick/Ridgewood aprtmt w parking,2675998,Alice,Queens,Ridgewood,40.7099,-73.91509,Entire home/apt,115,2,74,2019-05-19,0.96,2,314 +951944,Quiet Studio in Prime SoHo,1408973,Dom,Manhattan,SoHo,40.72493,-74.00307,Entire home/apt,235,3,73,2019-07-05,0.94,1,44 +953275,Apartment For Your Holidays in NYC!,4460034,Alain,Manhattan,East Harlem,40.79531,-73.9333,Entire home/apt,125,7,50,2018-05-06,0.66,1,188 +953951,West Village Large 1BR,4797813,Nicole,Manhattan,West Village,40.73377,-74.00259,Entire home/apt,250,2,56,2019-07-01,0.73,1,134 +955153,Elegant loft in heart of soho,5165749,Ben,Manhattan,SoHo,40.72256,-73.99767,Entire home/apt,650,5,7,2014-06-27,0.09,2,90 +955542,*Sunny Master BD* in Garden Duplex,4932354,Mitty,Brooklyn,Prospect Heights,40.67942,-73.97078,Private room,97,7,13,2018-11-01,0.17,4,204 +956412,Charming Bright 2BR apt- sleeps 6,588270,Dikla,Brooklyn,DUMBO,40.70424,-73.98597,Entire home/apt,189,2,236,2019-06-21,3.08,2,279 +957002,Cozy PRIVATE Studio Apartment UWS and Jazz Tour.,5202854,Sabrina,Manhattan,Upper West Side,40.7982,-73.96394,Entire home/apt,100,1,129,2019-06-21,1.76,1,281 +957642,Large bedroom/Heart of Brooklyn,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.66167,-73.95098,Private room,49,5,114,2019-06-09,1.49,3,323 +958444,Great 1BD waterfront City Island NY,5214644,Noelva,Bronx,City Island,40.85235,-73.78873,Entire home/apt,84,3,67,2018-06-10,0.91,1,0 +959349,Modern New Duplex with Private Yard,1797637,Daniel,Brooklyn,Williamsburg,40.71765,-73.93999,Entire home/apt,165,7,5,2016-01-03,0.09,1,0 +959478,"Chic, Cozy LES 1BR. Weekly clean included!",4191076,Michelle,Manhattan,Chinatown,40.71687,-73.99046,Entire home/apt,87,59,51,2019-02-01,0.66,1,0 +959871,Bask in the light! Studio bedroom in Williamsburg,1822729,Derek,Brooklyn,Williamsburg,40.71081,-73.96121,Private room,120,6,15,2019-01-01,0.21,2,9 +959948,Designer Triplex Loft Soho/Greenwich Village,1229358,Lauren,Manhattan,SoHo,40.72538,-74.00375,Entire home/apt,195,10,10,2018-06-26,0.13,1,270 +960210,Brooklyn Fashionista 1Bdr Loft,1865527,Kayla,Brooklyn,Bedford-Stuyvesant,40.69437,-73.94519,Private room,89,1,21,2018-10-14,0.30,3,365 +962045,"Private Room & Coffee, only 3 blocks to Train",5239845,Deanna,Brooklyn,Bushwick,40.69288,-73.90374,Private room,62,2,324,2019-06-28,4.30,1,267 +964379,WATER VIEWS 3 BED HOME W/ PARKING,555739,Rosana,Brooklyn,Bay Ridge,40.63463,-74.03621,Entire home/apt,130,28,14,2019-02-28,0.69,2,340 +966104,Private room in large 2 bed room,5268970,Javier,Manhattan,East Village,40.72726,-73.97573,Private room,75,3,51,2018-11-25,0.70,1,127 +968848,"Cozy private room in 2 Bedroom, BK",5289072,Mark,Brooklyn,Prospect Heights,40.67501,-73.96651,Private room,64,2,35,2019-02-03,0.46,1,329 +969463,Artsy Fashion Pad in the Heart of Williamsburg,1447988,Patrick And Erin,Brooklyn,Williamsburg,40.71916,-73.95696,Entire home/apt,150,2,11,2018-10-15,0.14,1,364 +971158,Sunny room with private bathroom,5286584,Liya,Manhattan,Harlem,40.80667,-73.95562,Private room,100,2,53,2019-06-23,0.70,1,350 +971247,Sunny Artist Live/Work Apartment,5308961,Larry,Manhattan,Upper West Side,40.79368,-73.96487,Entire home/apt,190,3,159,2019-07-03,2.09,1,244 +972426,"BIG, COMFY, PRIV. room, Big apt, yard, Will-B dplx",216191,M,Brooklyn,Williamsburg,40.71149,-73.94504,Private room,98,2,7,2018-12-21,0.09,4,273 +973128,Pretty One Bed in Brooklyn Heights,434473,Patricia,Brooklyn,Brooklyn Heights,40.69224,-73.99638,Entire home/apt,150,30,48,2016-11-11,0.63,1,0 +973535,"Garden Apt, 5 mins from LaGuardia",3179866,Gonzalo And Nora,Queens,East Elmhurst,40.76356,-73.8885,Entire home/apt,99,3,158,2019-07-02,2.08,2,322 +973653,A true Sanctuary in Harlem NYC,4770121,Somaya,Manhattan,Harlem,40.82421,-73.93996,Entire home/apt,100,185,0,,,4,358 +975229,Prime East Village location w/backyard garden!,5333736,Timothy,Manhattan,East Village,40.73055,-73.98875,Entire home/apt,159,4,65,2019-06-16,0.85,1,1 +975250,Bushwick Duplex 2,3709510,Deacon,Brooklyn,Bushwick,40.69282,-73.92477,Private room,70,1,18,2019-05-13,0.32,3,146 +975965,Great Room in Lively East Village,2267153,John,Manhattan,East Village,40.72792,-73.98507,Private room,91,5,395,2019-06-21,5.16,2,1 +975990,Brooklyn Heights Brownstone - Private Bdrm Avail.,5339881,Gerard,Brooklyn,Brooklyn Heights,40.69293,-73.99679,Entire home/apt,325,1,11,2018-12-09,0.19,1,363 +976167,Newly Furnished Beautiful & Quiet,5341060,Simo,Brooklyn,Fort Hamilton,40.61806,-74.03195,Entire home/apt,149,4,33,2018-01-07,0.46,1,313 +976242,Cozy East Village Haven,854208,Anna,Manhattan,East Village,40.7282,-73.98893,Entire home/apt,200,10,35,2019-01-02,0.46,1,51 +977870,Upper West Side Pied A Terre /NYC,5350359,Matthew,Manhattan,Upper West Side,40.80014,-73.9637,Entire home/apt,169,2,61,2019-06-23,0.80,1,59 +978062,West Village 1 BR Apartment,5186189,Betsy,Manhattan,West Village,40.73359,-74.00524,Entire home/apt,249,3,10,2019-01-01,0.30,1,5 +978386,"A GEM Garden Apt on Broadway & 42ST QUEENS, NY",5354308,Yiota,Queens,Astoria,40.75751,-73.91678,Entire home/apt,85,2,260,2019-07-03,3.44,1,254 +978615,NICE ROOM IN ASTORIA NEAR MANHATTAN,5369117,Rosa,Queens,Astoria,40.76291,-73.91871,Private room,81,2,183,2019-06-15,2.45,2,326 +980098,Quiet ST MARK'S PLACE ARTIST'S GEM,5364702,Lynn,Manhattan,East Village,40.72658,-73.98907,Entire home/apt,199,2,54,2019-07-02,0.72,1,322 +980561,"Beautiful, private, uptown studio",15742,Alix,Manhattan,Harlem,40.82892,-73.94745,Entire home/apt,88,3,37,2018-09-08,0.48,1,47 +981410,Sunny Studio in the West Village,5374768,Maria,Manhattan,West Village,40.73331,-74.00471,Entire home/apt,170,4,1,2013-04-09,0.01,1,273 +981494,Large and sunny one BR (600 sq.ft),5207582,Olivia,Manhattan,Morningside Heights,40.81062,-73.96015,Entire home/apt,100,1,0,,,1,0 +982038,Entire 1bdrm cnr of Fort Greene- off Park,5378922,Eileen,Brooklyn,Fort Greene,40.68859,-73.9729,Entire home/apt,130,9,3,2018-09-25,0.04,1,329 +983625,Great Studio in the heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80421,-73.94302,Entire home/apt,135,30,190,2019-06-04,2.63,4,253 +984721,QUIET GARDEN APT FACING NY BAY!,555739,Rosana,Brooklyn,Bay Ridge,40.63508,-74.03628,Entire home/apt,65,30,25,2018-12-22,0.36,2,188 +985338,"Monthly rental of guest room,limited kitchen use",1417489,Lorna,Brooklyn,Brooklyn Heights,40.70162,-73.99465,Entire home/apt,100,180,0,,,1,365 +986727,Manhattan's Best Deal!,5414067,Adrianne,Manhattan,East Harlem,40.80626,-73.94009,Entire home/apt,165,3,281,2019-06-21,3.68,2,177 +987329,ROOM NEAR TIMES SQUARE MANHATTAN,5369117,Rosa,Queens,Astoria,40.76491,-73.9207,Private room,78,4,70,2019-06-12,1.64,2,348 +987616,5 Bdrm Historic Brownstone Triplex,4018660,Emily,Brooklyn,Cobble Hill,40.68556,-73.99779,Entire home/apt,350,5,12,2016-08-20,0.17,1,0 +989976,Three Bedroom NY Private Apartment,5435208,Rose,Queens,Flushing,40.74142,-73.8202,Entire home/apt,160,3,96,2019-06-22,1.29,1,298 +990130,Spacious 3br Apartment in Brooklyn,5435713,Nikolai,Brooklyn,Prospect Heights,40.67682,-73.96586,Entire home/apt,225,5,6,2016-08-26,0.08,1,188 +990367,Colorful Manhattan - Harlem Apartment,5438325,Lauri,Manhattan,Harlem,40.80684,-73.94844,Entire home/apt,170,5,25,2019-06-01,0.34,1,177 +990529,Sunny Luxury Bedroom Guest Bathroom,5440087,Dn,Manhattan,Midtown,40.75136,-73.97076,Private room,349,3,3,2014-09-24,0.04,2,87 +992508,"Next to Subway, Private bedroom",4714927,Elisa,Manhattan,East Harlem,40.79218,-73.95076,Private room,65,2,57,2019-06-26,0.78,4,251 +992598,"Village Life, 2-Bedroom, East Village",2203885,Sascha,Manhattan,East Village,40.72399,-73.98134,Private room,420,3,182,2019-05-29,2.39,1,301 +992891,Sunny Nolita 1 Bedroom Apartment,458021,Brian,Manhattan,Nolita,40.72131,-73.99487,Entire home/apt,119,3,17,2018-06-11,0.22,1,0 +992977,Park Slope Pre-War Apartment,4000059,Shahdiya,Brooklyn,Park Slope,40.67359,-73.97434,Entire home/apt,100,365,1,2013-08-01,0.01,1,365 +993040,YOUR HARLEM HOME AWAY FROM HOME!!! ,5454862,Barbara,Manhattan,Harlem,40.8278,-73.94891,Entire home/apt,97,3,185,2019-06-14,2.46,1,6 +993514,Luxury Furnished 1 BR UWS Apt w W/D & Deck,15145088,Izi,Manhattan,Upper West Side,40.78729,-73.97439,Entire home/apt,191,30,8,2019-06-03,0.11,8,346 +993575,1 BR Large Luxury Furnished Apartment UWS,15145088,Izi,Manhattan,Upper West Side,40.7852,-73.9746,Entire home/apt,187,30,13,2019-06-15,0.20,8,346 +993576,Luxury Furnished 1 BR Apartment UWS,15145088,Izi,Manhattan,Upper West Side,40.78558,-73.97251,Entire home/apt,172,30,4,2018-03-31,0.08,8,346 +995169,West Village Gem - Amazing Location,5466191,Ricky,Manhattan,West Village,40.73464,-74.00225,Entire home/apt,950,3,28,2019-07-03,1.52,1,357 +995187,"BIG & SUNNY, 1 STOP FROM MANHATTAN",2829145,Charlotta,Brooklyn,Fort Greene,40.69248,-73.96983,Entire home/apt,275,4,81,2019-05-21,1.07,2,310 +995215,Upper West Side Amazing Large 2 Bedrooms,3038687,Karen,Manhattan,Upper West Side,40.78954,-73.97222,Entire home/apt,99,30,1,2014-10-05,0.02,8,113 +995367,1BR Apt as featured in New York Mag,412783,Nick,Manhattan,Greenwich Village,40.73506,-73.99728,Entire home/apt,334,11,14,2018-05-29,0.24,1,238 +995469,Beautiful Large Furnished Bedroom on UES,5468901,Sanya,Manhattan,Upper East Side,40.76896,-73.95898,Private room,60,7,1,2015-12-22,0.02,1,0 +997404,Charming Apt. In Brooklyn Townhouse,5480570,Darnell And Allison,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92638,Entire home/apt,145,3,200,2019-07-04,2.62,1,303 +998423,Great space minutes from Manhattan!,2765234,Casey,Queens,Astoria,40.7603,-73.91395,Private room,75,4,19,2019-04-25,0.52,1,10 +998887,Sunny studio apt in heart of SoHo,227908,Mischa,Manhattan,SoHo,40.72602,-74.00318,Entire home/apt,130,20,33,2019-06-02,0.43,1,11 +999248,TriBeCa 2500 Sq Ft w/ Priv Elevator,273174,Jon,Manhattan,Tribeca,40.71927,-74.00453,Entire home/apt,575,1,447,2019-07-01,5.89,3,207 +999977,Cozy studio apartment on upperwest,5497326,Jennifer,Manhattan,Upper West Side,40.77896,-73.97849,Entire home/apt,295,7,2,2017-08-19,0.03,2,0 +999984,Greenwich Village Townhouse Apt,5468033,Linda,Manhattan,West Village,40.73303,-74.00237,Entire home/apt,300,3,108,2019-07-01,1.44,1,318 +1000788,Modern Lux 1 br near 2/3/4/5 Trains,4797532,Priscilla,Brooklyn,Crown Heights,40.67319,-73.95987,Entire home/apt,120,28,1,2015-10-29,0.02,2,280 +1001147,Big Room with Bath in Bushwick! ,3363720,Kate,Brooklyn,Bushwick,40.68923,-73.91946,Private room,50,3,92,2019-06-19,1.22,3,171 +1001447,Comfy twin bed/Cosy apartment/East Harlem / Subway,214794,Pete & Marcos,Manhattan,East Harlem,40.79307,-73.95138,Shared room,56,2,117,2019-06-24,1.53,1,303 +1002469,Comfortable Apt near Bloomingdales,5512719,Ellen,Manhattan,Upper East Side,40.76249,-73.96054,Entire home/apt,191,2,66,2019-05-28,0.94,1,347 +1003530,New York City - Upper West Side Apt,454250,Greta,Manhattan,Upper West Side,40.79962,-73.96523,Private room,135,7,70,2018-08-12,0.93,1,44 +1003754,Chic Park Slope Pied-à-terre,5520355,Finola,Brooklyn,South Slope,40.66162,-73.97994,Entire home/apt,195,7,98,2019-06-26,1.39,1,94 +1005416,South Harlem Gem! 113th St & 8th Ave,5529633,Michael,Manhattan,Harlem,40.80132,-73.95568,Shared room,75,1,43,2019-06-02,0.61,1,9 +1005763,★Private Room Overlooking the Park★,450050,Yakov & Cynthia,Manhattan,Harlem,40.81309,-73.95267,Private room,99,10,45,2015-08-05,0.60,1,83 +1009883,"Modern, Carroll Garden Townhouse",329436,Jana,Brooklyn,Carroll Gardens,40.68204,-73.99249,Entire home/apt,350,3,41,2019-05-27,0.59,2,22 +1009973,Brooklyn Wildlife Loft Mckibbin st,5556571,Chris,Brooklyn,Williamsburg,40.70607,-73.935,Entire home/apt,40,15,10,2013-11-09,0.13,3,365 +1010785,Astoria awesome balcony apartment PARKING AVAILABL,3898812,Ahmed,Queens,Astoria,40.76295,-73.92652,Entire home/apt,130,1,58,2019-07-06,0.77,1,301 +1011449,Spacious and EASY access to all!,5563508,Nate,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.9601,Entire home/apt,225,2,48,2019-05-05,0.64,1,339 +1013648,Gorgeous 2 Fl Apt in1887 Brownstone,5018907,Vera,Brooklyn,Park Slope,40.67541,-73.9784,Entire home/apt,225,7,8,2015-08-29,0.11,1,342 +1016004,Clean and Cute Shared Room in Very Safe Area,5577926,Lou,Queens,Astoria,40.76777,-73.91109,Shared room,38,1,127,2019-06-23,1.67,4,55 +1016105,BK - Spacious & Sunny 4 bedroom apartment,5591685,Paul,Brooklyn,Clinton Hill,40.68924,-73.9681,Entire home/apt,200,7,10,2018-08-19,0.17,1,11 +1016352,Midtown West Modern & Sunny-near Central Park,5593208,Tj,Manhattan,Hell's Kitchen,40.76777,-73.98932,Entire home/apt,550,1,0,,,1,365 +1016819,2BR 2Bath duplex w garden & terrace,5596242,Sabrina And Eduardo,Brooklyn,Clinton Hill,40.68771,-73.96186,Entire home/apt,235,6,5,2018-07-03,0.07,1,3 +1018181,Master Bedroom Ideal for 2 - Luxury for 1 !,4937803,Alicia,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95875,Private room,75,5,8,2014-05-27,0.11,1,365 +1018529,Large 2 BDRM @ McCarren Park!!,5606448,Pete,Brooklyn,Greenpoint,40.72031,-73.9483,Entire home/apt,249,30,71,2019-05-31,0.94,1,273 +1019360,Hip charming Williamsburg apartment,693889,Heather,Brooklyn,Williamsburg,40.70798,-73.94263,Entire home/apt,120,5,7,2016-10-26,0.10,1,0 +1021005,Cute Bedroom in Clinton Hill,5619749,Jen,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95493,Private room,50,28,1,2017-01-03,0.03,2,343 +1021491,Whole Apt: Artsy home by BK Museum,5622682,Sabrina,Brooklyn,Crown Heights,40.66974,-73.958,Entire home/apt,85,3,10,2019-04-27,0.85,1,149 +1021957,PRIVATE QUIET SUITE,315606,Cynthia,Brooklyn,Crown Heights,40.67515,-73.95435,Private room,78,3,10,2017-08-26,0.14,2,95 +1022204,"Glowing reviews, hip neighborhood",3483960,Keith,Manhattan,Lower East Side,40.72198,-73.98932,Private room,110,3,49,2018-09-05,0.69,1,0 +1023181,"LOCATION/garden!(FEMALE only, next to girl's room)",4932354,Mitty,Brooklyn,Prospect Heights,40.6787,-73.97065,Private room,50,3,138,2019-06-22,1.82,4,315 +1023529,Convenient and private,5634395,Sarah,Manhattan,Harlem,40.82153,-73.95512,Private room,52,3,163,2019-06-05,2.17,2,0 +1024113,"Lovely room in East Williamsburg, NY",2120889,Megan,Brooklyn,Williamsburg,40.71238,-73.9379,Private room,63,2,0,,,1,66 +1024135,Beautiful UES Studio with Backyard for Sublet,261530,Melissa,Manhattan,Upper East Side,40.77421,-73.9528,Entire home/apt,105,45,20,2017-01-03,0.26,1,109 +1025001,Private Entrance Charming Bedroom,5641042,Livia,Queens,Glendale,40.70538,-73.89448,Private room,75,2,132,2019-06-25,1.74,1,333 +1025786,Fantastic 1br in Astoria/LIC,5647813,Atlanta,Queens,Long Island City,40.74417,-73.94823,Private room,69,7,12,2019-07-05,0.18,1,365 +1025847,Modern 1BR East Village Apt w/patio,62316,Sam,Manhattan,East Village,40.72538,-73.98351,Entire home/apt,165,60,11,2015-10-15,0.15,1,311 +1026565,Peaceful Park Slope near subways,825252,Meredith,Brooklyn,Park Slope,40.67651,-73.98007,Entire home/apt,125,2,45,2017-06-19,0.66,1,0 +1026683,Mi Casa Tu Casa Guesthouse Mexico ,5652395,Julio,Bronx,Concourse,40.81906,-73.92806,Private room,85,2,11,2018-09-02,0.18,2,363 +1027808,East Village Loft - 1300 sq/ft home - 2 Bedrooms!,5655889,East Village Loft,Manhattan,East Village,40.72351,-73.98283,Entire home/apt,499,5,47,2019-06-08,0.63,1,341 +1028263,Spacious Room/Great Location,5658953,Claudia,Manhattan,East Village,40.72944,-73.98645,Private room,60,5,66,2019-06-26,0.87,1,232 +1029482,Private Room w TV in East Village,5664550,Kelly,Manhattan,East Village,40.72346,-73.97907,Private room,95,5,35,2019-06-10,0.46,1,320 +1029808,Spacious 1bd Near Trendy Neighborhoods And City,5293735,Hayley,Brooklyn,Bedford-Stuyvesant,40.69872,-73.94635,Entire home/apt,105,5,12,2019-05-30,1.01,1,0 +1030254,Large room in Beautiful communal house,1949282,Kyla,Brooklyn,Bushwick,40.69449,-73.91156,Private room,55,2,65,2019-06-05,0.86,5,235 +1030392,"BIG, COMFY, 4BR DUPLEX, GARDEN APT, Williamsburg",216191,M,Brooklyn,Williamsburg,40.71132,-73.94493,Entire home/apt,289,2,39,2019-06-05,0.58,4,88 +1030780,NYC Brooklyn Sunset Park- Great Bed. Great House.,1113080,Audrey,Brooklyn,Sunset Park,40.64871,-74.00774,Private room,70,2,45,2018-01-01,0.60,3,0 +1032127,Short Term Stay in Chelsea/MP NYC,5679237,Renee,Manhattan,Chelsea,40.74583,-74.00363,Entire home/apt,275,7,0,,,1,188 +1032610,Beautiful loft in trendy Harlem!,5681729,Sandrine,Manhattan,Harlem,40.80938,-73.94196,Entire home/apt,130,7,5,2017-06-03,0.16,1,231 +1032611," Private 1 bdrm Lefferts Gr, BK apt",5682003,Rachael,Brooklyn,Prospect-Lefferts Gardens,40.65743,-73.96155,Entire home/apt,125,2,38,2019-06-10,0.61,1,3 +1034911,"Entire Spaceous, Sunny, Loft in Clinton Hill",5696628,Christine,Brooklyn,Bedford-Stuyvesant,40.68854,-73.95742,Entire home/apt,150,2,17,2019-05-01,0.23,2,23 +1036498,☆☆New Discount☆☆ 10min to Manhattan,3233986,Daniel,Queens,Astoria,40.75537,-73.91648,Private room,46,4,70,2019-05-23,0.93,2,173 +1036734,Apartment in the heart of Upper East Side,5707409,Mary,Manhattan,Upper East Side,40.77054,-73.95497,Entire home/apt,100,3,226,2019-07-01,2.97,1,221 +1037016,Quiet central Williamsburg Loft room,237477,Alexander,Brooklyn,Williamsburg,40.718,-73.96603,Private room,90,5,8,2017-05-31,0.11,1,0 +1039215,Heart of Williamsburg - authentic & central!,4911550,Marc,Brooklyn,Williamsburg,40.72091,-73.96124,Entire home/apt,90,3,166,2018-07-28,2.21,1,104 +1039435,"Lovely studio in Manhattan,New York",5709288,Fabia,Manhattan,Midtown,40.75879,-73.9638,Entire home/apt,220,360,1,2015-01-02,0.02,1,0 +1039983,Tribeca Loft w/ Private Elevator,273174,Jon,Manhattan,Tribeca,40.72008,-74.0043,Entire home/apt,1000,1,25,2019-06-22,0.36,3,37 +1039984,Furnished BrownStone Apartment,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93597,Entire home/apt,130,30,52,2018-01-03,0.72,3,171 +1040156,2 floor Luxury Loft in the best location!,3740730,S,Manhattan,Chelsea,40.74398,-73.99624,Entire home/apt,499,6,127,2019-06-14,1.68,2,303 +1041996,Small room with private bath in New York,964482,Colin,Manhattan,Harlem,40.82943,-73.94728,Private room,45,2,18,2019-06-16,3.05,2,197 +1042416,Sunny Brownstone Attic,5738733,Elizabeth,Brooklyn,Bedford-Stuyvesant,40.69235,-73.93836,Entire home/apt,70,2,210,2019-07-06,2.79,2,288 +1042806,My Other Little Guestroom,2680820,Linda,Queens,Flushing,40.75334,-73.81699,Private room,59,1,281,2019-06-11,3.70,3,322 +1043046,Studio in Best Possible Location!,2335804,Lindsay,Manhattan,Chelsea,40.74112,-74.00177,Entire home/apt,160,5,70,2018-10-26,1.16,1,0 +1044502,HELLO HARLEM,5749899,Obora & Michael,Manhattan,Harlem,40.8035,-73.94764,Entire home/apt,195,4,128,2019-06-22,1.76,1,278 +1044731,Dear Potential Airbnb Guests.,5751206,Nigel,Brooklyn,Flatbush,40.64745,-73.95606,Private room,96,3,58,2019-05-19,0.77,1,364 +1045491,Prime Williamsburg. Brand new,1356046,Daniel,Brooklyn,Williamsburg,40.71454,-73.9507,Private room,75,3,179,2019-06-09,2.39,2,136 +1045897,"HISTORIC WILLIAMSBURG, BKLYN",839679,Brady,Brooklyn,Williamsburg,40.71797,-73.95508,Entire home/apt,195,3,173,2019-06-06,2.34,3,273 +1046443,"Beautiful & spacious apartment in Astoria, Queens",5760970,Chris,Queens,Ditmars Steinway,40.77117,-73.90427,Private room,200,1,16,2019-06-30,0.68,2,364 +1048190,Huge Sunny Loft w Patio + Charm,832244,Elise,Brooklyn,Bedford-Stuyvesant,40.68753,-73.95851,Entire home/apt,139,30,26,2019-05-20,0.38,1,205 +1049224,Beautiful duplex in a brownstone,1740216,Laura,Manhattan,Harlem,40.81241,-73.94371,Entire home/apt,190,30,31,2018-01-04,0.43,2,84 +1051575,Quiet and Comfort Near Columbia University,5245246,Lisa,Manhattan,Harlem,40.80384,-73.95419,Private room,95,2,27,2019-05-26,0.57,1,320 +1053523,Beautiful Ground Level Townhouse Ap,4128399,Jose,Manhattan,Lower East Side,40.71886,-73.98497,Entire home/apt,350,3,7,2017-12-10,0.10,1,364 +1054006,Bohemian East Village Brownstone,92272,Kristin,Manhattan,Gramercy,40.73323,-73.98224,Private room,80,3,7,2016-09-05,0.10,3,217 +1054201,One Bedroom Townhouse Apartment,4165498,L.A.,Manhattan,East Harlem,40.79535,-73.93274,Entire home/apt,120,5,83,2019-06-10,1.11,2,242 +1055029,Washington Heights/Inwood apartment,5810195,Emilie,Manhattan,Inwood,40.85933,-73.92863,Private room,42,1,46,2019-07-07,0.79,2,357 +1056119,Cozy Private Space in Williamsburg Townhome,5817011,Clyde,Brooklyn,Williamsburg,40.70851,-73.949,Entire home/apt,116,4,112,2019-07-02,1.49,1,127 +1056185,Sunny+Cozy Double bedroom in BKLYN!,697442,Chris And Zach,Brooklyn,East Flatbush,40.64851,-73.94667,Private room,60,1,356,2019-07-05,4.72,3,19 +1056256,Beautiful eco triplex w/green roof. Free yoga/spa.,462379,Loretta,Brooklyn,Carroll Gardens,40.67881,-73.99379,Entire home/apt,1395,1,55,2019-06-02,0.73,2,362 +1056445,Upscale Designer Studio-Heart of Manhattan,1600541,Marina,Manhattan,Upper East Side,40.77014,-73.96222,Entire home/apt,425,2,68,2019-06-06,0.91,1,358 +1056804,Spacious Modern & Comfy 2BR in BK Brownstone,2413155,Noreen,Brooklyn,Boerum Hill,40.68554,-73.98924,Entire home/apt,225,4,95,2019-04-14,1.26,1,251 +1057022,Spacious 1br East Village Apartment,5822377,Shunan,Manhattan,East Village,40.7265,-73.99,Entire home/apt,159,5,16,2018-09-27,0.25,2,0 +1059531,Staten Island 1st floor Apartment,7875272,Mary,Staten Island,Port Richmond,40.62922,-74.13354,Entire home/apt,221,30,0,,,3,0 +1059891,"“L l,x w w. XThank &mftkn. .",11837926,Anthony,Manhattan,Midtown,40.76463,-73.98112,Private room,150,7,44,2019-05-31,0.74,3,365 +1060019,"Modern Duplex 1 bdrm , 1.5 Baths + terrace!",5837033,Mark,Manhattan,Upper East Side,40.7744,-73.95578,Entire home/apt,199,1,116,2019-06-17,1.54,1,300 +1061337,Sunny Private BR Crown Hts Brooklyn,1557383,Candace,Brooklyn,Crown Heights,40.67418,-73.94661,Private room,70,1,4,2017-08-01,0.06,1,0 +1063020,Private Brownstone,5851210,Amy,Manhattan,East Harlem,40.79417,-73.94376,Entire home/apt,110,31,235,2019-05-31,3.14,2,84 +1063554,bedroom in big sunny loft (& Roof!),2873394,Aurora,Brooklyn,Bushwick,40.69935,-73.93713,Private room,60,2,10,2019-06-23,0.13,2,18 +1065138,Private room in beautiful neighborhood in Brooklyn,5861233,Nevena,Brooklyn,Crown Heights,40.67046,-73.94835,Private room,50,3,2,2017-05-29,0.08,1,0 +1066769,"Clean Room, Central Location in Manhattan",3327668,Tim,Manhattan,Lower East Side,40.72046,-73.98773,Private room,120,1,360,2019-06-24,4.79,1,240 +1067251,Entire home/apt in New York,5872605,Patrick,Manhattan,East Village,40.7239,-73.97869,Entire home/apt,395,5,0,,,1,0 +1068505,Relaxing and Roomy in Crown Heights,2128778,Rachael,Brooklyn,Crown Heights,40.67414,-73.95667,Private room,60,2,51,2019-06-30,0.68,2,57 +1069266,Stay like a real New Yorker!,5867023,Michael,Manhattan,Midtown,40.75783,-73.96383,Entire home/apt,145,2,146,2019-06-09,1.94,1,148 +1069287,Park Slope 1br by Barclays Center/Prospect Park!,5879729,Stephanie,Brooklyn,Williamsburg,40.71273,-73.94399,Entire home/apt,83,30,16,2017-12-02,0.21,2,26 +1070458,Room in a cozy loft,3968209,Swetha,Manhattan,SoHo,40.72086,-73.99999,Private room,100,3,64,2019-05-06,0.87,2,355 +1071743,Brooklyn Family Friendly Brownstone,5895535,Tara,Brooklyn,Crown Heights,40.67151,-73.94885,Entire home/apt,200,2,3,2017-05-29,0.08,1,0 +1072212,Relaxed in New York,5897760,Eo,Manhattan,Harlem,40.825,-73.94132,Private room,50,3,145,2019-06-09,1.97,1,211 +1072481,Bedroom for two in Chelsea,5479559,Michael,Manhattan,Chelsea,40.74573,-73.99712,Private room,70,1,206,2019-06-19,2.72,1,15 +1073635,Cozy Carroll Gardens Brownstone Apt,4243849,Emma,Brooklyn,Carroll Gardens,40.68304,-73.99819,Entire home/apt,175,2,279,2019-06-22,3.68,1,218 +1073780,Sunny Clinton Hill Apt w/Patio,1149419,Alex,Brooklyn,Crown Heights,40.6803,-73.96059,Entire home/apt,149,28,18,2019-04-29,0.36,1,265 +1073832,Designer Studio Apt in Red Hook,5585945,Orren,Brooklyn,Red Hook,40.67685,-74.00581,Entire home/apt,125,3,162,2019-06-26,2.15,1,300 +1074155,"Big 1st Meal, Kind Host, Ace Space",5909206,Nancy,Manhattan,East Harlem,40.79794,-73.93223,Private room,58,1,323,2019-07-01,4.30,1,284 +1074506,Amazing Queens Oasis Steps to Train,2981156,Kia,Queens,Astoria,40.76359,-73.92531,Entire home/apt,160,2,13,2018-10-14,0.26,2,56 +1076324,2BR Sunny Apt - 15 min from MIDTOWN,3864301,Sen,Queens,Sunnyside,40.74361,-73.91662,Entire home/apt,150,30,9,2016-08-20,0.12,2,365 +1077176,Beautiful Gramercy duplex loft with terrace,5927702,Shayne,Manhattan,Gramercy,40.73807,-73.98187,Entire home/apt,131,30,23,2019-05-18,0.61,2,33 +1077179,Large luxury 1 bedroom loft in Gramercy,5927702,Shayne,Manhattan,Gramercy,40.73775,-73.98324,Entire home/apt,250,30,17,2019-01-31,0.39,2,327 +1077375,Private RM 15min from the Manhattan,5855145,Edward,Queens,Astoria,40.75959,-73.90835,Private room,70,1,136,2019-06-23,1.81,2,359 +1079675,"Clean, Complete and Cool",5938496,Michael,Manhattan,Nolita,40.71972,-73.99438,Entire home/apt,149,5,26,2019-06-01,0.35,1,0 +1080543,Sunny Sunset Park Artist Loft,5943212,Doug,Brooklyn,Sunset Park,40.65475,-74.01211,Entire home/apt,109,2,70,2019-06-24,0.96,1,339 +1080766,Summer Special Price Times Square,5944682,Maja & Pierre,Manhattan,Theater District,40.75964,-73.98534,Private room,185,2,243,2019-06-27,3.22,1,127 +1080816,Cozy apartment in Greenpoint,5944756,Hasan,Brooklyn,Greenpoint,40.72428,-73.94472,Entire home/apt,138,14,6,2018-10-06,0.10,1,356 +1080839,Spacious sunny bedroom - East Village (A),3417321,David,Manhattan,East Village,40.73099,-73.98762,Private room,150,10,36,2018-12-01,0.48,2,0 +1083888,"Verna's Brownstone (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68532,-73.92429,Private room,80,1,14,2019-03-08,0.20,2,283 +1086640,"1 Bedroom Apt Greenpoint, Brooklyn",5972975,Leigh,Brooklyn,Greenpoint,40.72613,-73.93915,Entire home/apt,75,2,2,2014-10-02,0.03,1,0 +1087215,Stunning Designer Loft in the heart of Chelsea,1841580,George,Manhattan,Chelsea,40.74877,-73.9994,Entire home/apt,300,5,44,2019-07-03,0.62,1,87 +1089240,Great Apartment with luxurious bath in NYC/Chelsea,5971251,D. Anthony,Manhattan,Chelsea,40.74197,-73.99702,Private room,176,2,123,2019-06-23,1.63,1,268 +1089542,Private Cozy Bedroom in Brooklyn,663764,Karen,Brooklyn,East Flatbush,40.6536,-73.94883,Private room,47,2,248,2019-05-05,3.27,2,0 +1089619,"Bright, Huge Room in 3 Bedroom Apt.",5986790,Gen,Manhattan,Washington Heights,40.83535,-73.94334,Private room,40,7,26,2019-06-25,0.67,6,272 +1090732,You take living or bedroom!,5993276,Alfred,Queens,Richmond Hill,40.7017,-73.82316,Shared room,60,7,0,,,1,362 +1091582,Two Comfy Rooms in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66326,-73.98805,Private room,89,1,49,2019-06-24,0.66,4,24 +1091840,"Private bedroom in Manhattan, NYC ",4714927,Elisa,Manhattan,East Harlem,40.78859,-73.94715,Private room,75,2,152,2019-05-31,2.03,4,12 +1092760,Private Entrance - Backyard Summer Dining - Enjoy,5887081,Michelle,Brooklyn,Bedford-Stuyvesant,40.69034,-73.95321,Entire home/apt,110,7,195,2019-07-03,2.72,2,284 +1093977,"Sunny Apt in Harlem, New York",6010467,Mary Anne,Manhattan,Harlem,40.81102,-73.94562,Entire home/apt,85,30,23,2017-12-07,0.47,1,0 +1095106,Greenpoint - with your own space!,6016424,Susan,Brooklyn,Greenpoint,40.73026,-73.95596,Private room,72,4,54,2019-06-02,0.72,1,71 +1096326,"Private studio in staten island + +",6024006,Johnny,Staten Island,St. George,40.64699,-74.08151,Entire home/apt,190,2,0,,,1,365 +1096511,Private Room in Large Apt w/ Gorgeous Park View,364499,Ife,Manhattan,Harlem,40.80602,-73.95362,Private room,85,2,233,2019-06-25,3.12,1,72 +1097816,Group-Student-Friendly Bklyn House,1709216,Steve And Heather,Brooklyn,East Flatbush,40.63612,-73.946,Entire home/apt,325,2,19,2018-12-27,0.31,4,328 +1098863,Great Bushwick Studio Apartment,2413714,Wilfredo,Brooklyn,Bushwick,40.69305,-73.90398,Entire home/apt,125,2,116,2019-07-04,1.55,1,365 +1099244,Big UWS 1Bdrm 2 min to Central Park,5604089,Chris,Manhattan,Upper West Side,40.78264,-73.97803,Entire home/apt,200,3,3,2016-10-14,0.06,1,0 +1100421,"Cobble Hill, sunny large 1BR apt",1545977,Lelia,Brooklyn,Cobble Hill,40.68754,-73.99284,Entire home/apt,195,30,38,2019-06-01,0.51,1,345 +1100753,Stunner Garden Apt in Townhouse,6046616,Stephen,Manhattan,Washington Heights,40.83695,-73.94124,Entire home/apt,175,2,0,,,1,280 +1101035,Sunny 1 or 2 BR apt in Boerum Hill,6048514,Judy,Brooklyn,Boerum Hill,40.68779,-73.98517,Entire home/apt,189,4,227,2019-06-17,3.01,1,247 +1101224,THE PUTNAM,2571,Teedo,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93845,Entire home/apt,182,9,27,2019-05-21,0.37,1,23 +1102858,Brownstone Flat on Tree-Lined Block,5908577,Eric,Brooklyn,Crown Heights,40.67271,-73.94551,Entire home/apt,105,1,349,2019-06-30,4.73,2,277 +1102942,"1BR, 1BTH Duplex W/ LRG OUTD SPACE",6057624,Scooter,Manhattan,Kips Bay,40.74268,-73.97853,Entire home/apt,240,1,67,2019-06-15,0.89,1,321 +1102963,The Bushwick 3BR 2BA 20 mins to NYC,3531317,Ingrid,Brooklyn,Bushwick,40.68185,-73.90655,Entire home/apt,185,4,95,2019-06-13,1.33,2,215 +1105845,Convenient Location! 1 BR on 1Floor,3630531,Yuko,Manhattan,Chelsea,40.7457,-73.99775,Entire home/apt,160,4,5,2019-01-01,0.07,1,168 +1106284,Modern Loft Space on Gramercy Park,2757621,James,Manhattan,Gramercy,40.73708,-73.98455,Entire home/apt,250,4,23,2019-06-30,0.31,1,11 +1107092,Brand new 2BD Apt in Gramercy,4373782,Victoria,Manhattan,Kips Bay,40.74052,-73.97907,Entire home/apt,650,30,36,2019-06-29,0.48,1,256 +1107976,Manhattan & Time Square in 30 minutes. Back room.,3158364,Devika,Queens,Sunnyside,40.736,-73.92425,Private room,35,5,59,2019-07-05,1.76,4,250 +1108309,Charming Housebarge w/ outside deck,1018472,Angus,Brooklyn,Sheepshead Bay,40.58408,-73.94122,Entire home/apt,85,4,72,2016-05-28,0.97,2,360 +1109092,Beautiful Park Slope 3bdrm Duplex,6088518,Evelyn,Brooklyn,Park Slope,40.66698,-73.98162,Entire home/apt,550,3,21,2018-11-26,0.30,1,1 +1110195,Chic Brooklyn Apt.- Private Room,6093878,Gee,Brooklyn,Bedford-Stuyvesant,40.68068,-73.9535,Private room,80,2,44,2019-06-29,0.62,1,159 +1110484,"Forget NYC, Stay in Williamsburg! Best 1 BR Apt",1690569,Greg,Brooklyn,Williamsburg,40.71852,-73.95616,Entire home/apt,175,6,32,2019-05-10,0.43,1,291 +1112070,Private Room & Bath in Brooklyn!,350702,Autumn,Brooklyn,Crown Heights,40.66773,-73.96144,Private room,95,2,132,2019-06-30,1.75,1,354 +1112407,Harlem Short Term Stay,6105036,George,Manhattan,Harlem,40.80477,-73.9512,Entire home/apt,158,4,37,2019-06-23,0.49,3,314 +1112484,Beautiful duplex on Bowery,3211592,Loli,Manhattan,Chinatown,40.71744,-73.99718,Private room,85,3,37,2019-07-07,0.58,1,5 +1113125,Huge 1br - tons of light - williamsburg,2733465,David,Manhattan,Nolita,40.72068,-73.99576,Entire home/apt,209,1,23,2018-07-23,0.46,1,365 +1114409,2BR spacious luminous brownstone,265152,Marta,Brooklyn,Fort Greene,40.68545,-73.97572,Entire home/apt,150,2,21,2019-06-02,0.29,3,3 +1114493,Quiet room with desk in 2BR spacious brownstone,265152,Marta,Brooklyn,Fort Greene,40.688,-73.97745,Private room,70,2,55,2019-06-22,0.88,3,13 +1114788,Astoria Heights Gorgeous Guest Bedroom,6118355,William,Queens,Ditmars Steinway,40.77103,-73.89461,Private room,73,1,6,2019-03-31,0.13,1,363 +1115381,Private Room & Balcony in New York,6121678,Kamala,Brooklyn,Park Slope,40.67771,-73.98152,Private room,85,2,1,2015-09-12,0.02,1,0 +1117516,Beautiful new one bedroom apartment,6133754,Trevor,Brooklyn,Bedford-Stuyvesant,40.68798,-73.93903,Entire home/apt,95,3,218,2019-06-19,2.92,1,246 +1117706,"Bright, Bohemian, Spacious Apt in Williamsburg",2843987,Simona,Brooklyn,Williamsburg,40.71353,-73.96216,Entire home/apt,125,2,16,2018-12-19,0.26,1,0 +1118031,Private room in Prime Soho/Nolita location,6136511,Sky,Manhattan,Nolita,40.72212,-73.99676,Private room,89,3,29,2019-07-01,0.41,2,190 +1121448,1 rm @ 3BR loft williamsburg room 2,4864306,Joseph,Brooklyn,Greenpoint,40.72541,-73.9567,Private room,50,2,36,2019-04-24,0.51,3,232 +1121497,Spacious E Williamsburg with Yard!!,496164,Todd,Brooklyn,Williamsburg,40.70974,-73.93962,Private room,75,5,73,2019-06-07,0.99,2,307 +1121502,ART HOUSE VAULT,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68316,-73.93906,Private room,60,1,65,2019-05-24,0.87,4,26 +1123737,"Leelas Bright, Cosy, and furnushed room.",5986790,Gen,Manhattan,Washington Heights,40.83479,-73.94345,Private room,45,5,20,2019-06-23,0.54,6,244 +1123934,Sunny 1BR Apt in N. Williasmburg,6164428,Bjarke And Holly,Brooklyn,Williamsburg,40.72065,-73.959,Entire home/apt,130,14,1,2015-01-09,0.02,1,296 +1123960,Private Rm for 1 in Historic Harlem,6165258,Gita,Manhattan,Harlem,40.80815,-73.94325,Private room,70,28,16,2018-01-01,0.22,3,365 +1124012,FOODIE HAVEN -ENJOY THE REAL NYC :),5848607,Meredith,Manhattan,East Village,40.72778,-73.98305,Private room,125,2,246,2019-06-11,3.30,1,216 +1124329,1 bedroom Apt 1 minute from the subway!,6163192,Izz,Manhattan,Lower East Side,40.71928,-73.98993,Entire home/apt,140,3,126,2019-06-30,1.68,1,228 +1126432,South Slope One-Bedroom with Garden Terrace,5268463,Christy,Brooklyn,Sunset Park,40.66065,-73.98817,Entire home/apt,120,3,13,2018-12-31,0.18,1,201 +1126492,Andy Phillips,6180052,Andrian,Brooklyn,Fort Greene,40.68769,-73.9749,Private room,99,5,4,2017-09-29,0.17,1,250 +1126944,Private Home w/ Parking in Brooklyn,128663,Tina,Brooklyn,Kensington,40.64024,-73.96976,Entire home/apt,300,5,1,2015-01-01,0.02,1,15 +1127040,spacious PARK SLOPE room available ,835112,Leah,Brooklyn,South Slope,40.66842,-73.98659,Private room,40,90,0,,,2,311 +1127140,Manhattan NYC - The Blue Room,6158233,Craig,Manhattan,Harlem,40.82865,-73.94621,Private room,47,3,61,2019-06-15,0.81,1,285 +1128681,Sunny Room in Lower East Side Apt!,302772,Cheryl,Manhattan,Lower East Side,40.71446,-73.98833,Private room,115,3,29,2019-06-29,0.48,2,339 +1129105,Quiet and Cozy Brooklyn Brownstone Apartment,131014,Serge,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94434,Entire home/apt,90,2,4,2018-05-28,0.05,1,0 +1129483,Unique 1BR in energetic E. Village,6196141,Brian,Manhattan,East Village,40.72271,-73.98478,Entire home/apt,199,3,42,2019-06-15,0.63,1,330 +1130138,West Harlem Clean Park 1 Bedroom,1124797,Marianna,Manhattan,Harlem,40.82101,-73.94582,Entire home/apt,110,3,82,2019-06-30,1.09,1,15 +1130680,It's all about Bushwick BROOKLYN,55176,Madison,Brooklyn,Bushwick,40.68767,-73.91261,Entire home/apt,100,3,308,2019-07-05,4.11,1,99 +1130855,Brooklyn: Close-In With Character ,4623093,Matt,Brooklyn,Prospect Heights,40.67673,-73.96399,Private room,90,14,79,2019-05-12,1.09,1,336 +1131422,ART HOUSE BIGGIE SMALL,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68312,-73.94082,Private room,40,1,66,2019-06-17,0.89,4,118 +1131804,Elegant 2BR in Manhattan 15 mins to Midtown,6209044,Timothy,Manhattan,Harlem,40.80745,-73.94279,Entire home/apt,133,14,19,2019-05-02,0.26,1,279 +1132201,Cozy North Park Slope Apartment,712590,Erin,Brooklyn,Prospect Heights,40.68034,-73.97321,Private room,130,2,8,2018-06-24,0.11,1,0 +1132409,Amazing Upper West Side Loft-Studio,3038687,Karen,Manhattan,Upper West Side,40.78898,-73.97589,Entire home/apt,79,30,12,2016-04-01,0.16,8,36 +1132907,1 BDR in Greenwich Village Full APT,3965911,Tim,Manhattan,Greenwich Village,40.72855,-74.00136,Entire home/apt,200,2,26,2017-05-21,0.35,1,188 +1133296,Entire home/apt in Chelsea New York,6216882,Raquel,Manhattan,Chelsea,40.74119,-74.00234,Entire home/apt,175,3,19,2019-06-24,0.25,1,194 +1134365,Private Garden Apt. with outdoor space in Red Hook,6012816,Jeffrey,Brooklyn,Red Hook,40.67659,-74.01551,Entire home/apt,200,1,7,2019-04-21,0.52,1,0 +1136399,Furnished Nolita Studio,6233644,Sri,Manhattan,Nolita,40.72404,-73.99529,Entire home/apt,200,3,0,,,1,0 +1137093,Triplex Penthouse in New York,5446918,Paresh,Brooklyn,Williamsburg,40.71756,-73.94839,Entire home/apt,300,5,34,2019-06-15,0.46,1,365 +1137270,large Private room in UWS New York,6169516,Audra,Manhattan,Upper West Side,40.78892,-73.97435,Private room,135,3,13,2016-08-23,0.17,1,219 +1137587,Plum Guide Award-Winning Prospect Heights Oasis,354887,Jenny,Brooklyn,Prospect Heights,40.67678,-73.96692,Entire home/apt,189,3,173,2019-06-10,2.36,1,265 +1137999,Private room in a townhouse in NYC,6242426,H. Ann,Queens,Jamaica,40.69965,-73.79286,Private room,133,1,0,,,1,281 +1138052,Private room in Brooklyn,6131397,Dan,Brooklyn,Sunset Park,40.66582,-73.99349,Private room,65,1,4,2016-08-17,0.11,1,0 +1138455,Big and Well Appointed NYC 1 Bdrm,6245239,Erica,Manhattan,Upper West Side,40.77097,-73.98083,Entire home/apt,179,4,27,2018-07-07,0.36,1,0 +1139851,The Perfect Large Chelsea Studio,5654454,Stuart,Manhattan,Chelsea,40.74057,-73.99771,Entire home/apt,90,45,11,2019-02-19,0.18,1,279 +1140826,Private room/bedroom in Park Slope/Gowanus BK,6256118,Katie,Brooklyn,Gowanus,40.67173,-73.98968,Private room,49,1,9,2017-08-19,0.19,1,98 +1141120,Beautiful stylish one bedroom home with balcony.,2637874,Elon,Brooklyn,Williamsburg,40.71666,-73.94552,Entire home/apt,140,3,60,2019-06-15,1.19,1,197 +1142034,Large Flatiron 2 bedroom,1474508,Samuel,Manhattan,Midtown,40.74658,-73.98847,Entire home/apt,115,2,70,2019-06-03,0.95,1,120 +1144861,Stylish Arty Brooklyn Appartment #4,252361,Lucien,Brooklyn,Cobble Hill,40.6866,-73.99123,Entire home/apt,190,1,221,2019-07-01,3.00,1,238 +1145134,Lovely garden bedroom in Greenpoint,585273,Summer,Brooklyn,Greenpoint,40.72448,-73.94328,Private room,99,5,179,2019-05-28,2.61,1,0 +1145288,5 STARS***MIDTOWN EAST-BRAND NEW!!!,1475015,Mike,Manhattan,Midtown,40.75274,-73.97026,Entire home/apt,110,30,3,2016-07-04,0.06,52,365 +1145337,Spacious Private Room -East Village,6280254,Jc,Manhattan,East Village,40.73125,-73.98344,Private room,109,2,292,2019-06-08,3.90,2,231 +1146534,furnished br in 2 br share in WV,6286114,Stephen,Manhattan,West Village,40.73614,-74.00634,Private room,64,5,42,2019-04-10,0.56,1,0 +1146653,Luxury 1 Bedroom Central Park Views,836168,Henry,Manhattan,Upper West Side,40.79208,-73.96482,Entire home/apt,1000,30,24,2016-01-27,0.33,11,364 +1147507,RUSTIC/MODERN/EV/NYC,5523186,Mark,Manhattan,East Village,40.73032,-73.98469,Entire home/apt,750,3,9,2018-08-30,0.18,2,364 +1147524,3br family-friendly Astoria house,244071,Litza,Queens,Ditmars Steinway,40.77755,-73.90599,Entire home/apt,175,7,2,2014-07-12,0.03,1,8 +1148144,Private Room (Long room) in Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.80421,-73.94037,Private room,47,1,6,2019-06-01,0.08,5,353 +1148279,Family Owned & Operated Brownstone,6294856,Yoki,Brooklyn,Bedford-Stuyvesant,40.68018,-73.94839,Private room,60,3,140,2019-01-01,1.87,1,189 +1148978,1 BR 1/2 block to A/B/C/D trains,6298986,Marcelo,Manhattan,Washington Heights,40.83307,-73.93957,Private room,48,14,46,2019-05-17,0.62,1,287 +1150382,Fab 1 Bedroom Apartment!,6305367,Suzanne,Manhattan,East Harlem,40.79921,-73.93657,Entire home/apt,100,1,54,2019-07-07,0.75,1,0 +1150398,Bright room in Brooklyn,6305477,Alex,Brooklyn,Park Slope,40.68247,-73.97837,Private room,105,1,127,2019-06-30,1.72,1,88 +1150514,Lovely Entire Apt in Prime Brooklyn,4376062,Eliza,Brooklyn,Fort Greene,40.68798,-73.97182,Entire home/apt,138,7,1,2013-05-24,0.01,1,0 +1150594,HEART OF EAST VILLAGE! Quiet apt in middle of NYC!,7399728,Mickey,Manhattan,East Village,40.7252,-73.98261,Entire home/apt,129,1,96,2019-01-13,1.31,1,324 +1150869,Large UWS Apt $170.00/day May 2018- September 2018,6142196,Neni,Manhattan,Morningside Heights,40.80815,-73.96779,Entire home/apt,170,30,4,2018-01-01,0.07,1,1 +1151209,Large Sunny 1BR - Entire 2nd Floor,6309691,Lisa,Brooklyn,Greenpoint,40.73369,-73.95854,Entire home/apt,139,1,284,2019-06-19,3.80,2,160 +1151343,Large room in 2/1 on park w/2day discounts,4910820,Alex,Manhattan,Harlem,40.80449,-73.95687,Private room,94,1,30,2019-07-05,0.40,1,218 +1151582,Quiet & Convenient Upper East Side ,364351,Katie,Manhattan,Upper East Side,40.77068,-73.95867,Private room,115,3,1,2016-11-07,0.03,1,0 +1155475,"Big, glamorous, 4BR, 3-story house",2199502,Jon,Brooklyn,Fort Greene,40.68675,-73.97713,Entire home/apt,499,2,126,2019-06-25,1.75,1,256 +1155885,Fresh and modern 1BR in Bed-Stuy,6334250,Shaila & Alex,Brooklyn,Bedford-Stuyvesant,40.68683,-73.92922,Entire home/apt,79,2,198,2019-06-21,2.66,1,250 +1156440,Trendy East Village 1 Bedroom - NYC,1908631,Derek,Manhattan,East Village,40.72845,-73.98598,Entire home/apt,200,4,26,2019-06-10,1.34,1,0 +1156499,MODERN/ SUBWAY/TERRACE/LOFT/ LARGE MASTER BEDROOM,5644215,LiVi,Brooklyn,Greenpoint,40.72897,-73.95132,Private room,152,5,13,2019-01-02,0.17,1,241 +1157036,private spacious sunny bedroom,3696460,Radium,Brooklyn,Kensington,40.63381,-73.9714,Private room,50,30,10,2016-11-30,0.13,1,205 +1157522,North Williamsburg whole apt - Off the BEDFORD L,6263282,Liza,Brooklyn,Williamsburg,40.71813,-73.95981,Entire home/apt,212,2,51,2019-06-15,0.91,1,147 +1159142,Private Master Bedroom@Central Park,2010724,K. Naomi,Manhattan,East Harlem,40.7948,-73.94835,Private room,108,14,4,2015-09-22,0.06,3,38 +1164101,Oasis in the West Village,6376776,Kurt,Manhattan,West Village,40.73804,-74.00416,Private room,89,30,13,2018-04-30,0.18,1,282 +1164111,COMFORTABLE NYC RETREAT & Breakfast,6375533,LaNola,Manhattan,East Harlem,40.79025,-73.9488,Private room,89,1,273,2019-06-23,3.66,2,47 +1165913,Quiet/Clean minutes to Manhattan,6385492,John,Queens,Sunnyside,40.74239,-73.92213,Private room,65,2,12,2018-09-30,0.16,1,332 +1166339,Spring in Central Park-UWS,3496628,Ali,Manhattan,Upper West Side,40.78571,-73.97149,Entire home/apt,239,4,3,2017-05-20,0.04,1,184 +1166398,Entire 2 bedroom flat,6387355,Eric,Brooklyn,Bushwick,40.69814,-73.92996,Entire home/apt,99,30,13,2018-09-14,0.25,2,280 +1166616,Gorgeous Large Sunny Room - Upper Manhattan,6388666,Celine,Manhattan,Washington Heights,40.84002,-73.9385,Private room,80,2,56,2019-06-22,0.76,1,249 +1166947,Huge Private Sunny Bedroom in NYC,6390340,Lori,Manhattan,Washington Heights,40.8532,-73.93225,Private room,125,56,0,,,1,365 +1167658,Cozy Greenpoint Accommodation,6394282,Patricia,Brooklyn,Greenpoint,40.73135,-73.95489,Private room,55,7,116,2019-06-09,1.57,1,308 +1170268,Modern Trendy Duplex Brooklyn Loft!,6407125,Alyssia,Brooklyn,Bushwick,40.69776,-73.90939,Entire home/apt,160,2,31,2018-10-26,0.42,1,0 +1171566,Nolita: 1BR with private bathroom,6395317,Pierre,Manhattan,Nolita,40.72011,-73.99468,Private room,100,15,5,2019-04-30,0.08,1,197 +1171581,Spacious 2 bedroom near Times Sq,6414296,Noelle,Manhattan,Hell's Kitchen,40.7593,-73.99143,Entire home/apt,1000,1,0,,,1,365 +1171674,Great One-Bed in the West Village,6414916,Jon,Manhattan,Greenwich Village,40.7302,-74.00165,Entire home/apt,225,2,136,2019-06-22,1.83,1,10 +1171716,Room with a sunrise view over colored rooftops,6415261,John,Brooklyn,Flatbush,40.63641,-73.96712,Private room,35,30,0,,,1,317 +1171955,Manhattan apt in the centre of it!,4922378,Erin,Manhattan,Midtown,40.74568,-73.98321,Entire home/apt,275,7,6,2016-10-09,0.08,1,191 +1173994,Steps to Subway! Entire apt! 20 min to Manhattan!,6387598,Ana,Brooklyn,Bedford-Stuyvesant,40.68177,-73.9389,Entire home/apt,200,2,80,2019-07-01,3.93,1,109 +1174944,*Soho Duplex* with private rooftop,5189987,Jorge,Manhattan,SoHo,40.7252,-74.00279,Entire home/apt,190,4,25,2017-01-03,0.34,1,0 +1175400,LARGE light filled loft/apt! PRIME Williamsburg.✨,5536387,Heather And John,Brooklyn,Williamsburg,40.71374,-73.94642,Private room,117,2,43,2019-05-28,0.59,1,88 +1177971,Amazing View from Contemporary Loft,6444977,Chris,Manhattan,Midtown,40.74542,-73.98205,Shared room,80,1,66,2019-05-04,0.89,1,365 +1178231,"Private, Cozy hideaway apt in Bklyn for 1 to 3 .",6445684,Sharon,Brooklyn,Canarsie,40.64298,-73.89035,Entire home/apt,99,1,93,2019-06-23,1.28,1,311 +1178389,"Beautiful, clean 1-bdrm private apt",6447462,Adam,Manhattan,Washington Heights,40.8506,-73.94023,Entire home/apt,70,6,19,2017-07-24,0.26,1,188 +1180157,PRIVATE ROOM (BRIGHT & CLEAN) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.80393,-73.94046,Private room,44,30,2,2017-08-12,0.03,5,325 +1180296,Comfortable Central Park North Rm,3274316,Clotaire,Manhattan,Harlem,40.8004,-73.95645,Private room,125,1,85,2019-06-29,1.15,1,301 +1180537,"spacious, tranquil east village apt",6030235,Parker (& Juan),Manhattan,Lower East Side,40.71646,-73.97656,Entire home/apt,130,2,32,2019-04-06,0.44,1,184 +1180618,One-Bedroom Apt. on Upper East Side,6459215,Aryn,Manhattan,Upper East Side,40.76841,-73.95213,Entire home/apt,130,14,8,2016-01-09,0.11,1,332 +1182187,Best Chelsea Street. Beautiful Room. Superhost.,6467086,George,Manhattan,Chelsea,40.74652,-74.00089,Private room,125,2,228,2019-07-01,3.07,1,53 +1182844,"Large apt at Central Park, TimesSq",6470443,Alex,Manhattan,Hell's Kitchen,40.76636,-73.9855,Entire home/apt,199,7,30,2019-01-26,0.52,1,184 +1183005,Hostess Dawn in Brooklyn.,6471326,Dawn,Brooklyn,East Flatbush,40.64513,-73.94944,Private room,89,2,0,,,1,365 +1183172,"Sunny, Quiet! Lovely 1 Bedroom in Prospect Heights",6436296,Zach,Brooklyn,Prospect Heights,40.67839,-73.96623,Entire home/apt,155,4,125,2018-12-29,1.68,1,297 +1183236,Fantastic 1 BR in massive share.,6472794,Joel,Queens,Long Island City,40.74984,-73.91834,Private room,60,1,0,,,1,0 +1183628,Perfect 1st Floor Brownstone in Meatpacking- 2 ppl,732985,Nicki,Manhattan,Chelsea,40.73984,-74.00187,Entire home/apt,248,2,9,2015-05-17,0.12,1,363 +1183667,Sunlit cozy studio apt in UWS (70s),6474981,Kinneret,Manhattan,Upper West Side,40.77938,-73.98721,Entire home/apt,85,4,42,2019-06-16,1.44,1,9 +1185357,Central Park Room/Bath with a View!,6482637,William,Manhattan,Upper West Side,40.79631,-73.96152,Private room,85,3,118,2019-01-23,1.61,1,0 +1185525,Peaceful Brooklyn Flat,6483295,Jason,Brooklyn,Bay Ridge,40.63719,-74.03489,Entire home/apt,80,3,38,2019-05-01,0.53,1,192 +1186153,Sexy Bedroom near Central Park!,6486116,Ari,Manhattan,East Harlem,40.78943,-73.94726,Private room,79,1,38,2019-05-04,0.60,4,106 +1186569,beautiful spacious room,6471461,Robert,Queens,Ridgewood,40.70823,-73.89925,Private room,55,1,224,2019-07-02,3.87,2,356 +1187643,PRIVATE ROOM IN NYC ARTIST LOFT,6494389,Daniel,Bronx,Port Morris,40.80904,-73.93037,Private room,65,2,64,2019-06-20,0.87,1,307 +1189225,"Bright, New Luxury Exec Studio ",6501414,Sean,Manhattan,Hell's Kitchen,40.76161,-73.99452,Entire home/apt,150,60,7,2018-10-17,0.10,1,188 +1189378,Authentic Soho Loft (1200 sq ft),867249,Norwin,Manhattan,Tribeca,40.71976,-74.00571,Entire home/apt,285,2,124,2019-06-22,1.70,1,131 +1190223,Large 1 Bedroom in Astoria,3202825,Joseph,Queens,Astoria,40.76797,-73.92858,Entire home/apt,119,7,11,2019-04-30,0.63,1,143 +1191606,"STUNNING OCEAN-VIEW 1BR in BROOKLYN, NYC",6514245,Al,Brooklyn,Brighton Beach,40.57519,-73.95468,Entire home/apt,137,2,59,2019-06-28,0.81,1,80 +1194066,ENTIRE 1 Bedroom apartment- Upper East Side,6525255,Dana,Manhattan,Upper East Side,40.76703,-73.95413,Entire home/apt,190,2,191,2019-06-23,2.60,1,282 +1194508,Sunny room - Prime Location,6527494,Mar,Manhattan,Two Bridges,40.71166,-73.9972,Private room,80,1,1,2016-07-01,0.03,1,0 +1195198,Cozy 1 Bedroom in Clinton Hill,6531502,Shannon And Dahrehn,Brooklyn,Bedford-Stuyvesant,40.68647,-73.95909,Entire home/apt,120,3,155,2019-06-15,2.39,1,18 +1195260,The Ganham House,6532132,MarQuerite,Brooklyn,East Flatbush,40.65176,-73.93452,Entire home/apt,95,3,105,2019-06-24,1.42,1,333 +1196791,Creative Hub in Upper Manhattan,4324767,Caits & Taf,Manhattan,Washington Heights,40.83448,-73.94476,Private room,90,1,33,2016-05-09,0.48,1,189 +1197899,Sunny Bedroom in Clinton Hill,2360794,Gillian,Brooklyn,Clinton Hill,40.69258,-73.96649,Private room,75,3,11,2018-10-22,0.16,1,318 +1198231,Clean & Quiet Apartment.,2020556,Michael,Queens,Astoria,40.75962,-73.92176,Shared room,50,1,0,,,1,0 +1199863,1 room available for rent in 3 bedroom.,6554341,Beca,Brooklyn,Crown Heights,40.67463,-73.91811,Private room,103,8,5,2018-08-25,0.21,1,2 +1203812,Quiet minimal clean,6575712,Emma,Manhattan,East Village,40.73138,-73.98807,Entire home/apt,125,2,28,2019-05-20,0.45,1,179 +1205103,Cozy & Private Fort Green Cottage,6582962,Allon,Brooklyn,Fort Greene,40.69486,-73.97132,Entire home/apt,150,2,213,2019-07-06,2.87,1,288 +1209069,One bedroom July 1- Decemb (Phone number hidden by Airbnb) p.mo .,6602545,Eleni,Brooklyn,South Slope,40.6672,-73.98986,Private room,50,90,0,,,2,0 +1209492,Beautiful East Village Apt,396433,Kevin,Manhattan,East Village,40.72499,-73.98127,Private room,148,3,14,2019-05-17,0.24,1,365 +1209887,East Village Bright & Spacious Artist Loft,2910509,Tamar,Manhattan,East Village,40.72434,-73.97715,Entire home/apt,120,29,10,2019-01-18,0.17,1,3 +1209921,Authentic NYC Living 2,622855,Rodney,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92885,Entire home/apt,99,3,68,2019-06-26,0.97,2,270 +1209955,The Green Room: Your NYC Adventure starts here,3007815,Alia,Queens,Ditmars Steinway,40.77147,-73.9166,Private room,69,2,103,2019-06-23,1.39,2,124 +1210916,Stylish apt in the heart of NYC!,2554853,Nim,Manhattan,Midtown,40.75099,-73.96994,Entire home/apt,200,1,7,2019-04-12,0.10,1,358 +1212319,Large room in Washington Heights,3166165,Karen,Manhattan,Washington Heights,40.85121,-73.93734,Private room,55,5,4,2016-08-19,0.07,1,218 +1213745,"Cozy, modern 1BR, 1st fl brownstone",6625516,Carlos,Manhattan,Upper West Side,40.78806,-73.97969,Entire home/apt,175,8,3,2018-07-31,0.04,1,68 +1213991,Private 2 bedroom Midtown Manhattan,6626827,Steve,Manhattan,Hell's Kitchen,40.76247,-73.99294,Private room,240,4,77,2019-06-19,1.81,1,21 +1215122,Rm #1 River view Hamilton Heights,6632440,Emmett,Manhattan,Harlem,40.82393,-73.95308,Private room,95,7,2,2014-10-12,0.03,2,365 +1215627,Floating Cabin Houseboat Rockaway Surf's Up!,5720054,Ingrid,Queens,Arverne,40.59204,-73.78665,Entire home/apt,150,1,109,2019-06-22,1.49,1,358 +1215836,Prospect Park Apt,6533489,Ryan,Brooklyn,Crown Heights,40.67394,-73.95951,Entire home/apt,150,2,1,2017-06-22,0.04,1,0 +1217046,Sunny Williamsburg Apt w/ Deck,645887,Dave & Theresa,Brooklyn,Williamsburg,40.71317,-73.94851,Entire home/apt,179,3,146,2019-06-26,2.08,2,282 +1217318,Williamsburg Penthouse Hideaway,6642777,Martin,Brooklyn,Williamsburg,40.71024,-73.9517,Private room,105,1,374,2019-06-23,5.06,2,69 +1217670,"BK Rest - Williamsburg, Brooklyn",4532557,Joshua,Brooklyn,Williamsburg,40.70653,-73.9462,Entire home/apt,84,45,45,2019-06-04,0.61,1,244 +1220548,Cozy 2 BR apartment in Queens,2050338,Verena,Queens,Richmond Hill,40.69414,-73.82538,Entire home/apt,90,30,33,2017-12-08,0.46,3,298 +1221332,Furnished 1 Bedroom in East Harlem,3757699,Jeremiah,Manhattan,East Harlem,40.79293,-73.94048,Entire home/apt,53,7,7,2019-02-19,0.33,2,0 +1221517,Private Room (Cozy & Clean) Manhattan NYC,2559004,Sergio,Manhattan,East Harlem,40.8035,-73.94041,Private room,41,30,4,2018-07-01,0.09,5,217 +1221962,Newly Renovated West Village Privat,5962196,Karim,Manhattan,Flatiron District,40.74389,-73.99159,Private room,135,1,17,2016-09-27,0.25,1,365 +1222563,"Renovated, Residential Space",3475005,Yolanda,Queens,Queens Village,40.70382,-73.73955,Entire home/apt,84,2,172,2019-06-27,2.32,2,345 +1223230,Stunning Sundrenched Tribeca Loft,6672450,Jacqueline,Manhattan,Tribeca,40.71908,-74.00546,Entire home/apt,290,1,21,2019-06-23,0.29,1,128 +1223755,"Cozy, friendly, 3 min from subway.",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69122,-73.95648,Shared room,35,5,110,2018-01-03,1.49,4,0 +1225060,Lovely Studio in Astoria,6682511,Inga,Queens,Ditmars Steinway,40.77546,-73.91571,Entire home/apt,110,3,23,2019-01-04,0.67,1,14 +1225110,"Lovely, Private Home in Greenpoint",2888900,Alex,Brooklyn,Greenpoint,40.72992,-73.95628,Entire home/apt,350,7,4,2015-07-01,0.06,2,0 +1226176,Private bedroom (15 min Manhattan).,6688471,Guillaume,Brooklyn,Bedford-Stuyvesant,40.69652,-73.93548,Private room,60,3,13,2019-05-15,0.22,1,294 +1227258,Amazing Duplex in Williamsburg,5309521,Reut,Brooklyn,Williamsburg,40.71333,-73.96605,Entire home/apt,220,5,0,,,1,234 +1227528,Modern Williamsburg,3086048,Christine,Brooklyn,Williamsburg,40.71704,-73.95789,Entire home/apt,275,4,27,2019-01-02,0.37,1,197 +1228561,Stylish Apt in Heart of Ft. Greene,2305477,Amy,Brooklyn,Fort Greene,40.68764,-73.97545,Entire home/apt,142,7,6,2018-12-02,0.11,1,188 +1229484,SUNNY AND COZY BEDROOM IN BROOKLYN!,6706914,Leanne,Brooklyn,Crown Heights,40.67322,-73.95847,Private room,38,5,1,2015-08-01,0.02,2,0 +1229630,Spacious Harlem Condo,6706578,Nancy,Manhattan,Harlem,40.81691,-73.94251,Entire home/apt,100,60,0,,,1,365 +1231273,LUXURY TIMES SQUARE APARTMENT,5894425,Dan,Manhattan,Hell's Kitchen,40.76168,-73.9949,Entire home/apt,200,2,52,2019-04-10,0.71,1,193 +1232212,"Beautiful Huge Loft in Williamsburg, NY",3547817,Tad,Brooklyn,Williamsburg,40.71038,-73.96299,Entire home/apt,225,3,56,2019-06-26,0.79,1,55 +1232433,Manhattan Upper East Side 1bedroom,6721198,Susie,Manhattan,Upper East Side,40.78104,-73.94916,Entire home/apt,135,1,190,2019-06-21,2.57,1,105 +1235078,Big Private Room w/ AC & 5 Blocks to 1 Train,4185151,Gia,Manhattan,Harlem,40.8291,-73.94816,Private room,72,30,3,2015-08-23,0.05,1,179 +1238285,Stuyvesant Heights Apt mins 2 City,6270968,Ryan,Brooklyn,Bedford-Stuyvesant,40.68185,-73.94108,Private room,59,3,13,2017-08-18,0.26,2,100 +1239017,Spacious 4-BD/2BA Townhouse in PLG,6581587,Livia,Brooklyn,Crown Heights,40.66521,-73.95427,Entire home/apt,350,2,23,2019-04-20,0.37,1,188 +1239293,Cozy Retreat in Brooklyn Apartment,6755111,Jessica,Brooklyn,Kensington,40.6412,-73.9786,Private room,75,2,8,2014-01-07,0.11,1,312 +1240530,Large Sunny Room in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69107,-73.91995,Private room,70,3,12,2018-07-27,0.65,2,0 +1240586,Spacious and clean 1 bed apt in West Harlem,900154,Joel,Manhattan,Harlem,40.80545,-73.95563,Entire home/apt,99,30,4,2018-08-03,0.09,1,0 +1240594,Private room 2nd Fl near C&A line and 15mins JFK,6762657,Yvette,Brooklyn,Cypress Hills,40.68287,-73.87295,Private room,42,3,28,2018-01-01,0.74,2,355 +1241905,Bedroom in big sunny loft (& roof!),2873394,Aurora,Brooklyn,Bushwick,40.69822,-73.93517,Private room,60,2,11,2019-06-04,0.15,2,296 +1244117,Cozy Huge Brownstone in Bedstuy,6781477,Joseph,Brooklyn,Bedford-Stuyvesant,40.69324,-73.93217,Entire home/apt,125,1,153,2019-06-17,2.21,1,1 +1245479,Private Room In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.7084,-73.94153,Private room,99,6,148,2019-06-26,2.09,3,252 +1245977,Charming Prewar on Prospect Park!,6789857,Dayna,Brooklyn,Prospect Heights,40.67321,-73.96574,Entire home/apt,99,5,12,2017-06-29,0.25,1,0 +1251566,SPACE FOR 8,6774871,Karece,Brooklyn,Bedford-Stuyvesant,40.68065,-73.95154,Entire home/apt,165,3,130,2017-12-14,1.84,1,0 +1251681,"Entire House in Brooklyn for 6, super good price¡¡",6819812,Margarita,Brooklyn,Kensington,40.6458,-73.97097,Entire home/apt,250,5,11,2019-01-01,0.15,1,34 +1251889,Private Room in Williamsburg!,2868153,Matt,Brooklyn,Williamsburg,40.7149,-73.93983,Private room,135,4,12,2018-10-24,0.17,1,365 +1252565,Simple Spacious Uptown Bedroom,6824711,Jordan,Manhattan,Harlem,40.82427,-73.94428,Private room,58,5,66,2018-12-16,0.91,1,242 +1252826,"Three bedroom apartment, Manhattan",4656534,Anna,Manhattan,Upper East Side,40.77244,-73.95206,Entire home/apt,250,3,0,,,1,10 +1255828,Sunny Beach House type room on UWS,5561816,Caitlin,Manhattan,Upper West Side,40.78323,-73.98105,Private room,95,3,191,2019-06-24,2.61,1,207 +1256536,Clean 2Bedroom-Ideal UpperEast Loc.,4995411,Mayrav,Manhattan,Upper East Side,40.76398,-73.9589,Entire home/apt,125,1,92,2019-06-15,1.27,1,247 +1256768,Beautiful Park Slope apt w garden,1537501,Lenny,Brooklyn,Park Slope,40.67157,-73.9852,Entire home/apt,147,7,42,2019-07-01,0.61,1,365 +1258651,Chic Historic Harlem Brownstone,6854750,Margo,Manhattan,Harlem,40.80707,-73.94884,Entire home/apt,300,3,66,2019-06-13,1.62,1,286 +1260727,Luxury 3 Bd 2Bth w/600 sqft deck,6866620,Adam,Manhattan,Flatiron District,40.74119,-73.99168,Entire home/apt,350,14,4,2018-07-28,0.06,1,5 +1262053,Stylish Park Slope Townhouse,6873370,Thomas,Brooklyn,Sunset Park,40.66134,-73.98844,Entire home/apt,102,2,24,2019-01-08,0.34,1,0 +1263964,Designer amazing room in NYC!!,6881792,Carlos,Manhattan,Harlem,40.81388,-73.95105,Private room,95,5,206,2019-06-21,2.89,1,252 +1264621,nice room in bedstuy N,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68388,-73.95019,Private room,65,1,85,2019-06-03,1.16,15,345 +1264663,Prospect Park Apt With Terrace,809716,Adero,Brooklyn,Prospect-Lefferts Gardens,40.65994,-73.95892,Entire home/apt,350,5,0,,,1,365 +1264695,Classy Penthouse with Amazing View!,2737373,Ray,Manhattan,Chelsea,40.74984,-73.99482,Entire home/apt,595,3,106,2019-06-18,1.51,1,247 +1264920,BEAUTIFUL UPPER WEST SIDE SANCTUARY,6882340,Patricia,Manhattan,Upper West Side,40.78815,-73.9737,Shared room,165,3,21,2015-10-12,0.29,1,363 +1266411,Cozy Brownstone Living in Brooklyn,6893861,Phillip + Zack,Brooklyn,Bedford-Stuyvesant,40.68445,-73.93785,Entire home/apt,181,3,153,2019-06-16,3.17,1,174 +1267186,Private room for labor day weekend,6897732,Wilson,Manhattan,Midtown,40.74331,-73.98351,Private room,110,1,4,2015-09-08,0.05,1,0 +1267945,nice room in bedstuy I,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95012,Private room,65,1,119,2019-06-30,1.61,15,313 +1267954,Cozy 1 Bedroom Brownstone In Clinton Hill!,6901734,Liz,Brooklyn,Clinton Hill,40.68843,-73.96239,Entire home/apt,155,2,114,2019-06-17,1.82,1,314 +1270324,Clean & Sunny Clinton Hill/Bed room,5619749,Jen,Brooklyn,Bedford-Stuyvesant,40.68919,-73.95399,Private room,50,30,1,2017-01-01,0.03,2,253 +1271103,Lovely spacious 1 Bdrm in Ridgewood,2243431,Marcelle,Queens,Glendale,40.70518,-73.89133,Entire home/apt,85,2,1,2015-03-16,0.02,1,0 +1271361,ABSOLUTELY GORGEOUS $10MILLION LOFT w/BASQUIAT,6912221,Masako,Brooklyn,Williamsburg,40.7084,-73.92642,Private room,120,5,6,2019-05-21,0.26,1,66 +1273533,1 Bedroom avail in BK 3BD w/ porch,2246253,Nerenda,Brooklyn,Bedford-Stuyvesant,40.69585,-73.9446,Private room,75,1,2,2014-08-13,0.03,1,0 +1275942,nice room in bedstuy H,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6824,-73.95039,Private room,55,1,127,2019-06-14,1.77,15,318 +1276554,1 Guest Room in New Condo,6903334,Marisa,Brooklyn,Brooklyn Heights,40.70117,-73.99147,Private room,200,1,3,2015-10-01,0.05,1,0 +1276760,1bedroom apartment in Williamsburg,6949594,Sego,Brooklyn,Williamsburg,40.70971,-73.95621,Entire home/apt,75,7,10,2015-12-19,0.15,1,0 +1277955,Gorgeous Windsor Terrace home,836911,Cathy,Brooklyn,Windsor Terrace,40.65641,-73.97937,Entire home/apt,150,1,1,2014-05-17,0.02,3,129 +1278784,Private room minutes from midtown!,6959061,Roque,Bronx,Mott Haven,40.81291,-73.90772,Private room,60,2,147,2019-06-24,2.02,1,213 +1279234,"Massive, sunny 1-br in Brooklyn",3967827,Ezequiel,Brooklyn,Crown Heights,40.66886,-73.95412,Entire home/apt,150,50,4,2017-08-20,0.07,1,312 +1280188,The Original Williamsburg Loft!,3891706,Jon Paul,Brooklyn,Williamsburg,40.71737,-73.96396,Entire home/apt,240,1,77,2019-06-27,1.08,1,116 +1281023,Your private bedroom in the Upper East Side!,6970732,Sullivan,Manhattan,East Harlem,40.78747,-73.95276,Private room,150,3,18,2019-05-04,0.25,1,0 +1281054,Casa de Chester Baby Kitty,6970929,Andy,Manhattan,East Village,40.7216,-73.98204,Entire home/apt,200,3,0,,,1,0 +1281257,1BR LUXURY PENTHOUSE MODERN CONDO,2577135,Elena,Manhattan,Financial District,40.70735,-74.00971,Entire home/apt,269,5,18,2018-10-13,0.29,1,179 +1283453,Adorable Williamsburg room!,4365496,Sarah,Brooklyn,Williamsburg,40.70794,-73.96077,Private room,112,2,9,2018-01-02,0.37,2,0 +1284776,Modern Apartment in Brownstone Bkln,6989825,Angus,Brooklyn,Carroll Gardens,40.68013,-73.99397,Entire home/apt,250,5,49,2019-01-02,0.67,1,0 +1284789,Light-filled Brownstone Triplex with Roof Deck,5768571,Gus,Brooklyn,Prospect Heights,40.67731,-73.96402,Entire home/apt,390,3,0,,,1,28 +1286024,*Superhost* Modern One Bedroom Manhattan apt,6986713,Chris,Manhattan,Financial District,40.70946,-74.01235,Entire home/apt,350,3,27,2018-09-08,0.37,1,22 +1290208,Live like a real New Yorker!,7016230,André,Manhattan,Lower East Side,40.7191,-73.98866,Entire home/apt,80,3,67,2017-01-16,0.92,1,85 +1290336,Spacious & Stylish 2br-Prime Williamsburg Hot Spot,1240820,Triny,Brooklyn,Williamsburg,40.71787,-73.95585,Entire home/apt,295,2,114,2019-07-05,1.59,3,79 +1291020,One family house sublet August 1st to August 31,6602545,Eleni,Brooklyn,South Slope,40.66812,-73.99022,Private room,160,30,1,2019-06-19,1,2,39 +1291245,ENORMOUS Artsy 2BR in trendy LES!,2078796,Andy,Manhattan,Chinatown,40.71634,-73.99031,Entire home/apt,399,2,2,2016-09-19,0.05,1,0 +1291261,Dream Apartment - Greenwich Village,7020798,Light,Manhattan,Greenwich Village,40.73104,-73.99957,Entire home/apt,150,12,16,2019-03-16,0.22,1,35 +1291490,nice room in bedstuy M,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68322,-73.95085,Private room,60,1,142,2019-06-13,1.95,15,321 +1291561,True West Village Experience-1 Bdrm,7022451,Deborah,Manhattan,Greenwich Village,40.72948,-73.99957,Entire home/apt,219,6,45,2018-09-11,0.64,1,188 +1292428,Room in Great Loft - Fun/Convenient,4393626,Aaron,Manhattan,Chelsea,40.7433,-73.99832,Private room,119,4,106,2019-06-17,1.47,2,23 +1294721,Skylight Apartment Williamsburg,306825,Jesse,Brooklyn,Williamsburg,40.7132,-73.96798,Entire home/apt,190,4,1,2014-09-22,0.02,1,0 +1294973,PRIVATE BEDROOM IN COMFY & CHIC UWS APT!,7041410,Jeffrey,Manhattan,Upper West Side,40.79475,-73.976,Private room,140,5,90,2019-06-30,1.37,1,16 +1297171,Artists' Haven in Williamsburg,4855335,Laura,Brooklyn,Williamsburg,40.70894,-73.94135,Private room,125,2,4,2018-08-23,0.08,1,364 +1297663,Your West Village NYC 1 Bdm Apt,7055547,Tege,Manhattan,West Village,40.73532,-74.00448,Entire home/apt,144,4,27,2017-01-01,0.39,1,0 +1300097,"Marcel the Shell with Shoes On or Off, Whatever",4069241,Shannon,Brooklyn,Brooklyn Heights,40.69424,-73.99313,Private room,1500,1,0,,,1,0 +1300216,1 Bdrm Apt 2 blocks to subway 15 mins to Midtown,2135948,Giovanni,Queens,Astoria,40.76788,-73.92334,Entire home/apt,100,1,102,2019-07-03,1.73,1,33 +1300950,Great Room and Private Bathroom,7073209,Jackie,Brooklyn,Fort Greene,40.68846,-73.97567,Private room,115,2,57,2019-06-30,2.67,2,288 +1301321,West Village Penthouse-terrace/view,2214774,Ben And Jess,Manhattan,West Village,40.73305,-74.00412,Entire home/apt,1899,7,18,2015-10-09,0.28,1,0 +1302684,"1 Bedroom, Near Subway, Wash Hts",3003533,Jeff,Manhattan,Washington Heights,40.84346,-73.94471,Entire home/apt,110,29,10,2018-08-20,0.14,1,205 +1303515,Greenwich Village 1BR Fantastic Apt,430826,Dee,Manhattan,West Village,40.73384,-74.00462,Entire home/apt,140,14,51,2018-01-31,0.70,1,298 +1303850,Private spacious studio,2687920,Ikk,Manhattan,Morningside Heights,40.80777,-73.96703,Entire home/apt,94,2,1,2018-10-27,0.12,1,3 +1304181,beautiful ROOM in a DREAM APARTMENT,7089676,Michel Fabrice,Manhattan,Midtown,40.75728,-73.97152,Private room,50,1,49,2017-12-30,0.91,1,14 +1304459,Sunny Williamsburg Artist's Loft,7090408,Paco & Pamela,Brooklyn,Williamsburg,40.70706,-73.95071,Entire home/apt,131,4,68,2019-06-16,1.06,1,5 +1304952,Two Bedrooms and Private Bathroom,7073209,Jackie,Brooklyn,Fort Greene,40.68809,-73.97578,Private room,175,2,5,2019-03-10,0.13,2,334 +1305265,Perfect House for the Whole Family,7092157,Dennis,Brooklyn,Kensington,40.64342,-73.97851,Entire home/apt,299,3,4,2017-07-30,0.06,1,321 +1305346,Studio in the Heart of Soho,7096964,Chris,Manhattan,SoHo,40.72098,-73.99869,Entire home/apt,145,30,12,2018-11-30,0.17,1,342 +1306749,Superstar Manhattan Apt - Harlem,5230482,Anthony,Manhattan,Harlem,40.82612,-73.95216,Entire home/apt,145,2,64,2019-07-02,0.91,1,132 +1306966,Beautiful 1BR: Heart of the Village,5444717,Jonathan,Manhattan,Greenwich Village,40.72805,-73.99871,Entire home/apt,175,2,2,2016-09-04,0.03,1,0 +1307095,2 Bedroom Apartment in the East Village,6714376,Alec,Manhattan,Gramercy,40.73227,-73.98451,Private room,109,5,5,2018-07-27,0.07,1,22 +1307723,A real home on the UWS.,5435074,Deborah,Manhattan,Upper West Side,40.80274,-73.96459,Private room,150,1,28,2019-05-23,0.51,1,364 +1308155,Deep House in Bed Stuy,7111113,Carolina,Brooklyn,Bedford-Stuyvesant,40.69582,-73.94989,Private room,133,7,0,,,1,0 +1308308,Renovated 2 Bedroom (Hells Kitchen) TIME SQUARE,7112116,Ty,Manhattan,Hell's Kitchen,40.76248,-73.98597,Entire home/apt,399,3,108,2019-06-22,1.51,2,351 +1309148,PROSPECT HEIGHTS LARGE PRIVATE ROOM,1785016,Martin,Brooklyn,Crown Heights,40.67396,-73.96083,Private room,48,25,4,2015-04-03,0.06,1,311 +1310672,BROWNSTONE BROOKLYN'S FINEST in NYC,2015914,Majar,Brooklyn,Bushwick,40.68799,-73.91677,Private room,75,3,73,2018-12-08,1.00,8,341 +1312228,NYC - CLINTON HILL - FURNISHED ROOM,7130382,Walter,Brooklyn,Clinton Hill,40.68371,-73.96461,Private room,55,1,3,2015-12-20,0.06,2,343 +1313340,Spacious Guest Room in Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67782,-73.95386,Private room,75,3,107,2019-07-02,1.70,4,255 +1313593,GORGEOUS SUNNY LOFT w/ 15 WINDOWS,7138163,Ruby,Manhattan,East Village,40.72353,-73.99059,Entire home/apt,465,30,11,2019-05-29,0.18,1,273 +1313711,Less than a minute from the Metro,7120328,Kiriko,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.94819,Entire home/apt,151,1,173,2019-07-05,2.36,1,213 +1313768,"Large, Quiet, Sunny 1 Bedroom Condo Williamsburg",7139147,Hank,Brooklyn,Williamsburg,40.71063,-73.96774,Entire home/apt,199,3,6,2018-04-21,0.08,1,12 +1316480,nice room in bedstuy K,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68325,-73.94975,Private room,45,1,117,2019-05-30,1.61,15,236 +1316961,Huge Sunny Apt Hip/Family Area,772862,Jesse,Brooklyn,Clinton Hill,40.68645,-73.96587,Entire home/apt,160,3,24,2019-05-18,0.33,1,365 +1317612,"Sunny Rm #3, Air Conditioner, Park,Express Q train",2478675,Gina,Brooklyn,Flatbush,40.65393,-73.95845,Private room,36,1,173,2019-06-29,2.38,5,360 +1320550,Nice cozy apartment by Central Park,7169746,Patricia,Manhattan,Upper East Side,40.77444,-73.95908,Entire home/apt,235,2,10,2019-05-26,0.20,1,345 +1322432,"Modern, Steps to Subway - Sleeps 4",7178784,Peter,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9489,Entire home/apt,225,4,5,2016-01-01,0.07,1,365 +1323349,Spacious Bright 2B Apt East Village,7183070,Vanessa,Manhattan,East Village,40.72188,-73.9816,Entire home/apt,300,3,19,2019-01-31,0.27,1,0 +1323801,"Cozy, friendly, 3 min from subway!",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69081,-73.95627,Shared room,35,5,120,2018-01-03,1.66,4,0 +1324087,Lovely 1-bedroom-heart of Astoria,6002245,Nicholas,Queens,Astoria,40.76062,-73.9175,Entire home/apt,80,70,44,2019-04-26,0.61,1,198 +1325432,"Private Room in Woodside, Queens: Good Deal!",2989617,Seth,Queens,Woodside,40.74265,-73.89781,Private room,79,2,61,2019-05-20,0.93,1,353 +1325472,"Sunny, Huge, Quiet Room Doorman Bld",7182180,Lee,Manhattan,Washington Heights,40.85704,-73.93789,Private room,82,1,6,2017-09-07,0.10,2,334 +1325473,"Doorman Bldg, Sunny, Huge, Quiet Rm",7182180,Lee,Manhattan,Washington Heights,40.85677,-73.93727,Private room,82,1,5,2015-06-28,0.07,2,311 +1325507,Garden duplx in beautiful brwnstne,4932354,Mitty,Brooklyn,Prospect Heights,40.67915,-73.97125,Entire home/apt,215,3,2,2018-08-16,0.09,4,189 +1325759,Gorgeous Apt in Prime Williamsburg,7195403,Emily,Brooklyn,Williamsburg,40.71058,-73.96243,Entire home/apt,147,3,14,2019-03-11,0.20,2,0 +1325911,Gramercy apartment ,7165563,Raul,Manhattan,Kips Bay,40.74019,-73.98115,Entire home/apt,145,2,26,2019-06-01,0.43,1,269 +1326514,Sunny Private Room in Brooklyn ,7240751,Emily,Brooklyn,Crown Heights,40.67475,-73.9465,Private room,65,3,72,2017-07-01,1.22,1,157 +1326566,Peaceful Park Slope 2BR in 4BR dplx w/outdoor spce,514261,Vanessa,Brooklyn,South Slope,40.66701,-73.98703,Private room,78,3,24,2019-05-27,0.33,3,28 +1327775,Luxury 1BR w/ Rooftop,7205838,Erik,Queens,Long Island City,40.76592,-73.93428,Entire home/apt,120,3,2,2016-05-29,0.05,1,0 +1327940,Huge Gorgeous Park View Apartment!,3290436,Hadar,Brooklyn,Flatbush,40.65335,-73.96257,Entire home/apt,120,3,13,2016-08-27,0.28,2,327 +1329559,Sunny master bedroom Room in LowerEastSide/Nolita,5957620,Nami,Manhattan,Lower East Side,40.71925,-73.99123,Private room,95,1,86,2019-06-23,2.87,1,86 +1330056,Spacious Loft 5 min to Union Square,124357,Alex,Brooklyn,Williamsburg,40.71571,-73.95813,Private room,90,1,115,2019-05-21,1.63,3,359 +1330753,"Garden, Private Deck, Williamsburg apartment",2014720,Amy,Brooklyn,Williamsburg,40.71276,-73.95022,Entire home/apt,95,25,11,2017-07-31,0.15,1,168 +1330775,Large private live/work space; garden & parking,7187069,Wendy,Brooklyn,Williamsburg,40.70392,-73.93635,Entire home/apt,100,7,41,2019-03-29,0.58,1,45 +1331231,"Studio Plus, Hilton Grand Vacation",7220851,Richard,Manhattan,Midtown,40.76417,-73.97704,Entire home/apt,350,6,3,2019-01-02,0.22,1,351 +1331960,ARTSY & CONVENIENT in Williamsburg.,2671491,Savannah,Brooklyn,Bedford-Stuyvesant,40.69811,-73.95557,Entire home/apt,188,3,38,2019-06-30,0.54,1,261 +1332473,2 BED ROOM APT. IN A PRIVATE HOUSE,7027562,Deidra,Queens,Queens Village,40.72512,-73.73986,Private room,80,1,5,2019-07-01,0.07,1,363 +1334633,Meatpacking District Large Loft,7125872,Joe,Manhattan,West Village,40.73896,-74.00522,Entire home/apt,175,4,5,2017-12-03,0.07,1,0 +1334793,Prime brownstone with lush backyard,671579,Karen,Brooklyn,Carroll Gardens,40.6838,-73.99849,Entire home/apt,495,7,4,2018-12-29,0.08,1,256 +1335036,Charming 2 Bedroom Little Italy Apt,4581902,Magi,Manhattan,Little Italy,40.71833,-73.99826,Entire home/apt,250,3,155,2019-06-22,2.18,1,159 +1335510,Bright & cosy Williamsburg apt,4202236,John,Brooklyn,Williamsburg,40.71657,-73.9597,Entire home/apt,115,7,3,2013-11-21,0.04,1,0 +1335550,nice room in bedstuy J,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95167,Private room,55,1,75,2019-06-13,1.04,15,285 +1336223,"Safe, Sunny, Quiet Chelsea Apt has Washer/Dryer",7245581,Michael,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,93,39,25,2019-05-13,0.35,19,245 +1336230,"Safe,Sunny,SouthFacing Apt Near All",7245581,Michael,Manhattan,Chelsea,40.75032,-73.99676,Entire home/apt,93,120,34,2019-05-16,0.47,19,316 +1336390,"Charming, Quiet, & Clean 1BR APT",1673136,Erin,Manhattan,Chelsea,40.73981,-74.0016,Entire home/apt,199,3,35,2019-06-28,0.49,1,69 +1336984,Chez Humphries,7236564,Heather,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93478,Private room,70,2,6,2015-09-07,0.10,1,0 +1337148,Sunny Top Floor Uptown Apartment,7251483,Marc,Manhattan,Inwood,40.86446,-73.92694,Entire home/apt,125,6,0,,,1,0 +1338362,AMAZING 2BD COL CIRCLE/BRAND NEW ;),1475015,Mike,Manhattan,Upper West Side,40.76934,-73.9863,Entire home/apt,125,30,2,2018-10-13,0.04,52,282 +1340982,Steps from Central Park,7273689,Olya,Manhattan,Upper East Side,40.77207,-73.95923,Entire home/apt,169,7,11,2019-01-05,0.20,1,24 +1342507,Brooklyn duplex 10 mins to U Square,7281456,Fabiano,Brooklyn,Williamsburg,40.70816,-73.93931,Entire home/apt,150,2,24,2019-01-03,0.53,1,296 +1342515,Furnished Room + Bath in Hamiliton Heights,7281500,Christian,Manhattan,Harlem,40.82343,-73.94507,Private room,61,1,86,2019-06-30,1.83,1,233 +1343532,Room2 in a Good Vibe Apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67275,-73.95144,Private room,40,7,14,2019-03-02,0.20,2,221 +1346003,1 Bedroom Railroad in Williamsburg,5605755,Amith,Brooklyn,Williamsburg,40.71652,-73.94309,Entire home/apt,150,3,52,2019-04-22,0.72,1,342 +1347126,Bedroom for 2 in 1896 townhouse,7308715,Brooke,Brooklyn,Fort Greene,40.69774,-73.97076,Private room,65,2,14,2019-05-31,0.20,1,275 +1347175,NYC from River dale's Perspective,7309046,Bojana,Bronx,Kingsbridge,40.88166,-73.91103,Private room,90,3,0,,,1,353 +1347204,Beautiful Central Harlem sleeps 4,7309232,London,Manhattan,Harlem,40.80861,-73.94574,Entire home/apt,190,3,123,2019-07-02,1.73,3,248 +1347478,Bright Bohemian master bedroom in Williamsburg,7310886,Kristin,Brooklyn,Williamsburg,40.71101,-73.95164,Private room,79,2,11,2019-04-21,0.80,1,73 +1347847,3 bedroom duplex Brooklyn townhouse,2061760,Lise,Brooklyn,Bedford-Stuyvesant,40.69376,-73.93776,Entire home/apt,225,3,230,2019-07-01,3.31,1,259 +1348118,Sweet Deal*Harlem2bdrm Apt #1/Sleeps4,7309232,London,Manhattan,Harlem,40.80862,-73.94516,Entire home/apt,185,3,141,2019-06-25,2.00,3,258 +1349187,Light filled Brooklyn apartment with skyline view,1330500,Dayna,Brooklyn,Crown Heights,40.67421,-73.9504,Private room,100,2,8,2018-11-26,0.11,1,156 +1349237,"Bright, Very Spacious, & Quiet Room in Manhattan",7320160,Smyles And Diara,Manhattan,Harlem,40.80887,-73.94756,Private room,85,2,146,2019-06-30,2.01,1,129 +1349658,"A Comfortable Room in a Great Location, Manhattan",5569141,Jiajia,Manhattan,Morningside Heights,40.80998,-73.95898,Private room,75,2,20,2019-06-07,0.33,1,29 +1350055,Cozy room in Beautiful Williamsburg Appartment,2035472,Alessio,Brooklyn,Williamsburg,40.71449,-73.95905,Private room,85,3,2,2019-02-03,0.32,1,89 +1351217,English Basement Studio Apartment / private entry,7318649,Stacey & Anthony,Brooklyn,Bedford-Stuyvesant,40.68208,-73.93115,Entire home/apt,98,3,144,2019-06-23,2.87,1,249 +1351427,Charming New 3br House+bkyard BRKLN,6414252,Arza,Brooklyn,Kensington,40.64734,-73.97334,Entire home/apt,262,30,1,2015-04-03,0.02,1,16 +1352560,XLG Studio Apt w/TONS of Amenities,7341015,Aviva,Queens,Long Island City,40.74318,-73.95108,Entire home/apt,145,2,30,2018-09-03,0.42,1,278 +1352657,Spacious 1BR Midtown Manhattan w DM,7341851,Maya,Manhattan,Upper East Side,40.76178,-73.96713,Entire home/apt,280,2,7,2019-04-01,0.11,1,365 +1354042,1BR East Village Duplex w/ Terrace,7021990,Tim & MaryAnn,Manhattan,East Village,40.72685,-73.97874,Entire home/apt,210,5,11,2019-06-11,0.18,1,8 +1354250,Beautiful Authentic 1BR Apt with skylight near all,1631330,Irina,Brooklyn,Fort Greene,40.68842,-73.97781,Entire home/apt,70,15,2,2016-01-30,0.03,1,0 +1354415,Great Flat in Historic Brownstone,7136700,Michelle,Brooklyn,Bedford-Stuyvesant,40.67927,-73.94252,Entire home/apt,100,3,162,2019-07-02,2.24,4,141 +1354775,Sunlit Noho Loft,7353062,Tim,Manhattan,NoHo,40.72631,-73.99387,Entire home/apt,250,1,0,,,1,0 +1354973,Gorgeous spacious. 2 subways close,306394,Marialuisa,Brooklyn,Bedford-Stuyvesant,40.6842,-73.9177,Private room,59,1,123,2019-06-30,2.23,1,336 +1356710,Sunny 1 Bdrm ❤️ Private Bath ❤️ No Cleaning Fee,4783987,Kim,Manhattan,East Village,40.72758,-73.97762,Private room,199,1,141,2019-06-27,4.51,1,130 +1357021,MIDTOWN EAST 1BR APARTMENT - NEW,1411399,Carlos,Manhattan,Midtown,40.75639,-73.96558,Entire home/apt,219,1,78,2019-06-22,1.10,5,301 +1358963,1 Bedroom in Sunny & Spacious Apt.,6776157,Giovanna,Brooklyn,Prospect Heights,40.67738,-73.96509,Private room,100,1,96,2019-06-28,1.36,2,333 +1359438,Perfect in Park Slope: EZ 2 NYC,3599914,Daniel,Brooklyn,Park Slope,40.67274,-73.97339,Entire home/apt,175,30,58,2019-06-30,0.81,1,220 +1360781,LUXMaster Suite 24hrDrm WestVillage,176903,Tana,Manhattan,West Village,40.73432,-74.00306,Private room,220,1,2,2013-10-09,0.03,2,364 +1360791,Renovated Big Private Room # 3,2712353,Masud,Brooklyn,Cypress Hills,40.68822,-73.8759,Private room,40,28,91,2019-06-24,1.25,4,325 +1360932,Cozy apartment in NY for 3 weeks,7387960,Max,Manhattan,Harlem,40.8266,-73.94443,Private room,120,15,0,,,1,365 +1361017,Vacation sublet in Brooklyn NY,7388499,Julia,Brooklyn,Park Slope,40.66945,-73.98157,Entire home/apt,140,2,24,2019-07-01,0.38,1,255 +1361428,Private room w Patio in Nolita,4194894,Esef,Manhattan,Nolita,40.72122,-73.99395,Private room,105,1,16,2019-06-19,0.23,2,308 +1363957,Charming WILLIAMSBURG 1 bdrm apt great location,3470583,Brandy,Brooklyn,Williamsburg,40.71327,-73.93979,Entire home/apt,110,10,6,2019-05-16,0.08,1,13 +1365000,Brownstone - Garden level - 2 rooms,287122,Dominik,Brooklyn,Clinton Hill,40.69074,-73.96619,Entire home/apt,131,7,140,2019-06-25,1.94,1,32 +1365028,Soho Loft. Authentic and Eccentric! 2 Bedroom.,7409102,James,Manhattan,SoHo,40.72411,-73.99865,Entire home/apt,265,4,95,2019-06-19,1.31,1,257 +1367775,Furnished room with private bathroom,7419960,Marilyn,Manhattan,Roosevelt Island,40.76175,-73.95012,Private room,54,30,5,2018-08-18,0.15,1,2 +1370154,Special Rate Luxury 2bd/2bth Apt W. Village,176903,Tana,Manhattan,West Village,40.73268,-74.00314,Entire home/apt,800,1,2,2014-08-23,0.03,2,364 +1370405,"Fresh, Simple Sleep in Brooklyn!",697442,Chris And Zach,Brooklyn,East Flatbush,40.64895,-73.94838,Private room,53,1,245,2019-07-06,3.41,3,90 +1371957,NEEDS TO BE DEACTIVATED- NOT AVAILABLE,7437876,Shamara,Manhattan,Washington Heights,40.833,-73.93806,Entire home/apt,99,3,5,2015-01-02,0.07,1,365 +1373456,Warm & Welcoming Private Room,1286275,Kerry,Brooklyn,Bushwick,40.7041,-73.92418,Private room,65,5,39,2017-05-28,0.56,1,187 +1374457,Bedroom in Williamsburg Brooklyn,5386695,Joanne,Brooklyn,Williamsburg,40.71668,-73.94083,Private room,55,28,0,,,1,365 +1377134,Room in lovely E.Village triplex,7460434,Rocco,Manhattan,East Village,40.72383,-73.9829,Private room,120,3,90,2019-06-14,1.25,2,173 +1377320,Classic and Comfortable UWS PreWar,7461332,Badrul,Manhattan,Upper West Side,40.79801,-73.97045,Entire home/apt,169,120,3,2013-09-06,0.04,1,36 +1377820,"Great Studio in Chelsea, New York",7463731,Alessandro,Manhattan,Chelsea,40.74572,-73.99637,Entire home/apt,180,4,28,2016-05-18,0.40,1,280 +1378165,Sunny Brooklyn Artists' Enclave! *huge room!*,7465509,Tyler,Brooklyn,Bedford-Stuyvesant,40.68732,-73.93004,Private room,67,7,2,2019-06-21,1.00,1,14 +1380326,Positive Cozy Room!,7475363,Lola,Manhattan,Upper East Side,40.76723,-73.9551,Private room,111,2,77,2019-06-17,1.10,2,259 +1382158,1 double room in modern apt in heart of soho,7458733,Alexandra,Manhattan,SoHo,40.72466,-74.0042,Private room,90,1,77,2019-07-05,2.00,1,269 +1382607,Family-Friendly 3 BR in Cobble Hill,6245535,Jennifer,Brooklyn,Carroll Gardens,40.68298,-73.99171,Entire home/apt,259,1,2,2016-08-22,0.04,1,0 +1386742,Columbus Circle/Central Park/Hells Kitchen,40100,Nicole,Manhattan,Upper West Side,40.76977,-73.98638,Private room,89,3,231,2019-06-27,4.67,2,38 +1390532,Amazing Designer Loft in BK Factory,7503643,Vida,Brooklyn,Greenpoint,40.72456,-73.94343,Entire home/apt,129,30,7,2019-03-27,0.11,52,189 +1391024,Bright Brooklyn Room in Shared Apt!,969279,Travis,Brooklyn,Bushwick,40.69731,-73.92417,Private room,69,2,98,2019-06-16,1.36,1,20 +1391683,Huge Sunny BR Washington Heights 1-4 guests,7474069,Carrie,Manhattan,Washington Heights,40.8469,-73.94522,Private room,75,4,14,2017-09-29,0.23,3,0 +1392144,3-Bed Brownstone on Beautiful Block,1873589,Jill,Brooklyn,Crown Heights,40.67071,-73.94752,Entire home/apt,250,5,25,2019-01-02,0.35,1,220 +1392330,"Verna's Brownstone Suite (no stove, no gatherings)",5959653,Verna,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92364,Entire home/apt,120,1,226,2019-07-04,3.22,2,274 +1392673,Spacious Factory Converted Loft,7503643,Vida,Brooklyn,Greenpoint,40.72756,-73.9423,Entire home/apt,129,30,6,2018-09-02,0.09,52,249 +1396458,"Stylish 3 Bedrm, perfect for groups & 1/Pr'spct PK",1517723,Zoesarah (And) Anu,Brooklyn,Prospect Heights,40.6775,-73.96509,Entire home/apt,199,28,33,2019-05-11,0.47,1,315 +1397705,Unique 3BR Triplex in Brooklyn,346356,Matthieu,Brooklyn,Fort Greene,40.68996,-73.97855,Entire home/apt,450,3,82,2019-07-01,1.19,1,258 +1398234,Elegant SOHO One Bedroom,6083756,Sara,Manhattan,Nolita,40.72352,-73.99498,Entire home/apt,217,30,0,,,1,293 +1398326,"Charming, light-filled 1-bedroom",1705617,David,Brooklyn,Fort Hamilton,40.62347,-74.0359,Entire home/apt,90,7,0,,,1,0 +1398609,Perfect home away from home!,7553984,Hannah,Manhattan,Upper East Side,40.76893,-73.95967,Entire home/apt,350,3,53,2018-10-03,0.79,1,87 +1399187,Fabulous UWS Apartment,7556987,Menny,Manhattan,Morningside Heights,40.80684,-73.96404,Entire home/apt,160,24,10,2018-08-31,0.18,1,218 +1399273,NYC - furnished room - Greenpoint ,7130382,Walter,Brooklyn,Greenpoint,40.72991,-73.95208,Private room,45,4,7,2018-10-12,0.21,2,88 +1399352,A Nest in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69243,-73.94547,Private room,70,3,54,2019-06-17,0.77,5,316 +1399448,★HUGE beautiful E. Villager 2nd Av★,7558452,Zev,Manhattan,East Village,40.72463,-73.98938,Entire home/apt,260,1,320,2019-06-12,5.68,2,253 +1401826,As Seen In NY Magazine! Chic & Stylish!,7566397,Brett,Queens,Sunnyside,40.74342,-73.92635,Entire home/apt,100,30,2,2018-08-31,0.06,1,250 +1402084,"Waterfront Red Hook, Brooklyn",2362862,Louise,Brooklyn,Red Hook,40.67611,-74.01635,Entire home/apt,125,3,23,2019-06-03,0.64,1,77 +1403129,Penthouse Designer Loft Brooklyn,7573341,Robert,Brooklyn,Sunset Park,40.63947,-74.01888,Entire home/apt,195,2,220,2019-06-27,3.10,2,287 +1403466,Brooklyn Retreat,212738,Julian,Brooklyn,Bushwick,40.69916,-73.92219,Private room,58,5,31,2019-02-28,0.43,1,297 +1403635,Sunny & large W. Harlem private 1 bedroom.,754675,Lucy,Manhattan,Harlem,40.82036,-73.95589,Private room,75,5,3,2018-12-31,0.16,1,0 +1403870,Sunny Soho Apartment with Great Views,7576337,Beth,Manhattan,SoHo,40.72587,-74.00186,Entire home/apt,200,4,68,2019-04-27,0.95,1,21 +1404355,Jazz it Up in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69063,-73.94534,Private room,75,2,33,2019-05-23,0.52,5,201 +1404510, A charming Space in Brooklyn ,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94673,Private room,95,2,44,2019-01-25,0.64,5,47 +1404828,Bohemian Paradise in Industrial BK,7581642,Ehren,Brooklyn,Williamsburg,40.70759,-73.92678,Private room,99,2,189,2017-12-20,2.63,1,0 +1407364,BROOKLYN'S FAVORITE BROWNSTONE in HIPSTER BED-STUY,7591257,Ruty,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94201,Private room,275,3,20,2019-04-28,0.34,1,257 +1408406,"Beautiful, spacious apartment - with a cute cat!",5761173,Kappie,Brooklyn,Downtown Brooklyn,40.69648,-73.98261,Entire home/apt,162,2,11,2019-01-01,0.44,1,0 +1408914,"Modern, Art Deco Chelsea Studio",2594389,Arsen,Manhattan,Chelsea,40.74206,-73.99499,Entire home/apt,200,3,0,,,1,345 +1409947,SOHO Sanctuary Privately Owned,7603226,Lysa,Manhattan,SoHo,40.72347,-74.00488,Entire home/apt,285,5,11,2017-06-18,0.16,1,173 +1410197,Your Furnished Private Apartment,4165498,L.A.,Manhattan,East Harlem,40.79813,-73.93132,Entire home/apt,120,7,64,2019-04-03,0.91,2,184 +1411583,GREAT 1BR apt 162st at Amsterdam av,7499240,Candy,Manhattan,Washington Heights,40.8392,-73.94216,Entire home/apt,120,1,76,2019-01-13,1.07,2,314 +1411811,Charming Parlor Apt off Bleecker,4129805,Evelyn,Manhattan,West Village,40.73078,-74.00282,Entire home/apt,210,2,140,2019-06-10,2.10,5,319 +1415738,Private bedroom and bathroom in Brooklyn,7628445,Rosa,Brooklyn,Park Slope,40.67317,-73.97676,Private room,160,30,25,2018-08-22,0.35,1,363 +1416631,Family-Friendly Artist Loft in West Village,7633037,Jesse,Manhattan,West Village,40.73721,-74.00973,Entire home/apt,110,6,1,2018-09-01,0.10,2,0 +1420295,"Sunny, Bright, Vibrant Apartment in Williamsburg!",2357027,Harmon,Brooklyn,Williamsburg,40.71419,-73.95042,Entire home/apt,200,7,0,,,1,345 +1420559,Great 1BR apartment in a convenient location,3349838,Tom,Queens,Long Island City,40.74449,-73.95201,Entire home/apt,138,1,4,2016-07-05,0.06,1,41 +1421933,Room in Chelsea New York,7654246,Tamara,Manhattan,Chelsea,40.74036,-74.00138,Private room,90,3,5,2016-07-25,0.11,1,0 +1423112,"Private Room in Brooklyn, NY",7659871,Cristie,Brooklyn,Prospect-Lefferts Gardens,40.65671,-73.9622,Private room,45,30,21,2019-04-30,0.45,1,21 +1423175,Bright open space in Sunset Park,1403769,Anastasia,Brooklyn,Sunset Park,40.64674,-74.01043,Entire home/apt,80,30,18,2017-09-30,0.31,1,161 +1425801,Perfectly situated williamsburg apt,1862491,Ben,Brooklyn,Williamsburg,40.71406,-73.94965,Private room,70,10,0,,,1,365 +1426004,Charming private room & sunny deck!,7670501,Jennifer,Brooklyn,Bedford-Stuyvesant,40.6937,-73.93104,Private room,72,7,41,2019-06-11,0.58,1,68 +1426529,Comfy room in vibrant East Village,7672728,Brooke & Terry,Manhattan,East Village,40.72418,-73.98283,Private room,95,14,172,2019-05-25,2.39,1,14 +1427084,Private Room Private Restroom tons Natural Light,5531489,Aurelio,Brooklyn,Bedford-Stuyvesant,40.68584,-73.9263,Private room,75,5,13,2019-05-22,0.56,1,3 +1427401,Fully furnished private apartment..,7676839,Gabor,Queens,Astoria,40.76781,-73.92684,Entire home/apt,70,20,75,2018-09-15,1.05,1,364 +1427518,"Spacious, amenity-filled 1 BDR Williamsburg Apt",7654662,Elizabeth,Brooklyn,Williamsburg,40.71385,-73.93861,Entire home/apt,160,6,1,2013-09-07,0.01,1,0 +1428154,"Central, Peaceful Semi-Private Room",5912572,Tangier,Brooklyn,Flatbush,40.63899,-73.95177,Shared room,29,2,5,2014-10-20,0.07,1,321 +1428359,Comfy Park Slope 1 BR Apt Near Prospect Park,7681637,Linda,Brooklyn,South Slope,40.66453,-73.97912,Entire home/apt,175,3,62,2019-05-12,1.46,1,213 +1428371,Great Room in Astoria - New York,7681692,Ernesto,Queens,Astoria,40.76924,-73.91776,Private room,75,6,0,,,1,180 +1428648,Bright Rm avail in heart of Village,7683052,Leah,Manhattan,Greenwich Village,40.72998,-73.99999,Private room,110,3,7,2018-12-10,0.12,1,0 +1428844,Gorgeous sky-lit 2BR,266878,Jean & Gabriel,Brooklyn,Williamsburg,40.71362,-73.93561,Entire home/apt,175,3,199,2019-06-30,2.78,1,272 +1430650,"Columbus Circle Comfort, minutes from Times Square",7691518,Brent,Manhattan,Hell's Kitchen,40.768,-73.98695,Private room,99,1,123,2019-06-25,1.99,2,245 +1431246,Private bedroom + private bathroom,7693917,Brian,Manhattan,Inwood,40.86457,-73.92749,Private room,100,2,7,2015-12-07,0.15,1,36 +1433897,The Lavender Suite on Greene,33816,Kamaya,Brooklyn,Bedford-Stuyvesant,40.68714,-73.95775,Entire home/apt,144,5,3,2016-10-09,0.06,1,0 +1434010,Brooklyn College Manor,5654072,Mark,Brooklyn,Flatbush,40.63427,-73.95248,Entire home/apt,171,2,34,2019-07-02,1.47,3,243 +1436810,W80's Renovated with Chef's Kitchen,3038687,Karen,Manhattan,Upper West Side,40.78622,-73.97586,Entire home/apt,99,30,23,2019-04-20,0.32,8,89 +1437044,Gorgeous West Village Hidden Gem,3355679,Roxanne,Manhattan,West Village,40.73556,-74.00903,Entire home/apt,270,1,4,2015-10-04,0.06,1,0 +1438369,True Two Bedroom Apartment in Lower Manhattan,4314535,Arielle,Manhattan,Lower East Side,40.71444,-73.98348,Entire home/apt,160,3,220,2019-06-28,3.19,1,24 +1438870,Spacious very High ceiling place !,7728790,Celin,Manhattan,Harlem,40.82407,-73.94434,Private room,65,7,40,2019-06-13,0.86,1,64 +1439162,Cozy & Private 1 Bedroom Garden Level Apartment,7460181,Geraldine,Brooklyn,Bedford-Stuyvesant,40.68238,-73.93795,Entire home/apt,99,3,208,2019-06-25,2.89,1,206 +1440363,Artsy Harlem Guest Space,7735666,Laura,Manhattan,Harlem,40.81623,-73.94907,Entire home/apt,125,3,232,2019-06-13,3.22,1,47 +1442450,Saratoga Park Suite,7388128,Aqila,Brooklyn,Bedford-Stuyvesant,40.68669,-73.91897,Private room,72,3,0,,,1,365 +1442495,Spacious Duplex in Fun & Hip Area,5908577,Eric,Brooklyn,Crown Heights,40.67427,-73.95042,Entire home/apt,300,2,16,2019-06-09,0.24,2,41 +1444400,Large Room In Newly Renovated Hell's Kitchen Apt.,7755092,Ron,Manhattan,Hell's Kitchen,40.76391,-73.99225,Private room,112,1,196,2019-07-03,5.40,1,71 +1444924,New Law in New York | NO rentals under 30 days..,926743,Lancelot,Brooklyn,Carroll Gardens,40.67947,-73.99709,Entire home/apt,100,30,4,2019-01-28,0.06,1,321 +1445250,"1Bedroom, Seconds from L train",5109475,Liam,Brooklyn,Bushwick,40.70444,-73.92005,Private room,60,2,64,2019-06-01,0.89,2,87 +1445977,Spacious Loft in East Village,7701933,Henry,Manhattan,East Village,40.7262,-73.97913,Entire home/apt,232,10,2,2015-09-01,0.03,1,234 +1446009,Room in Colourful Williamsburg Apartment,1481172,Elena,Brooklyn,Williamsburg,40.70823,-73.94405,Private room,138,1,0,,,1,29 +1446483,Cozy 1BD in Vibrant East Village,5283769,Donna,Manhattan,East Village,40.7223,-73.9821,Entire home/apt,140,2,149,2019-06-16,2.41,1,16 +1448703,Beautiful 1 Bedroom in Nolita/Soho ,213266,Jessica,Manhattan,Nolita,40.72193,-73.99379,Entire home/apt,5000,1,2,2013-09-28,0.03,1,365 +1449263,Beautiful Brooklyn Brownstone Apt,7777902,Zachary,Brooklyn,Bedford-Stuyvesant,40.68665,-73.93293,Entire home/apt,168,2,1,2016-05-04,0.03,1,0 +1449546,Cozy Studio in Flatbush,7779204,,Brooklyn,Flatbush,40.64965,-73.96154,Entire home/apt,100,30,49,2017-01-02,0.69,1,342 +1452786,"A beautiful, and quiet place to stay in NYC!!!",6122499,Marjorie,Queens,Bellerose,40.73193,-73.74481,Shared room,150,2,0,,,1,365 +1453049,Studio Apt in the heart of Bushwick,2780717,Alonzo,Brooklyn,Bushwick,40.69979,-73.92078,Entire home/apt,95,4,21,2019-01-02,0.29,1,98 +1455804,One Bedroom Apt Near Central Park,4028305,Abigail,Manhattan,Morningside Heights,40.8057,-73.95826,Entire home/apt,175,2,1,2017-10-28,0.05,1,0 +1456142,"Modern, cozy artist's escape in WV",683794,Mark,Manhattan,West Village,40.73458,-74.00492,Entire home/apt,220,2,13,2019-06-09,0.23,1,3 +1456352,Monthly Rental or more than 30 days for 6 people,838704,Thomas,Manhattan,Upper West Side,40.80028,-73.9618,Entire home/apt,178,32,132,2018-05-01,1.84,1,211 +1457505,sunny beautiful studio apartment,7815949,Dee,Brooklyn,Crown Heights,40.67265,-73.9247,Entire home/apt,85,2,67,2018-11-12,0.97,1,8 +1458987,Room in My Apt. Rego Park Queens NY,7645338,King,Queens,Rego Park,40.72638,-73.85852,Private room,35,4,76,2019-02-04,1.07,1,5 +1460017,Lovely Factory Loft in Greenpoint!,7503643,Vida,Brooklyn,Greenpoint,40.72732,-73.94076,Entire home/apt,129,30,6,2018-09-11,0.08,52,277 +1461721,3B. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80759,-73.93839,Private room,55,1,167,2019-05-07,2.78,10,363 +1461814,Zen Supersized Master Suite,3604585,Jenny,Brooklyn,Flatbush,40.64187,-73.9586,Private room,69,4,34,2019-01-01,0.72,3,68 +1461873,"Cozy, quiet single room in Brooklyn brownstone",279845,Chantille & Linda,Brooklyn,Prospect Heights,40.6762,-73.96671,Private room,68,3,11,2019-01-27,0.33,2,187 +1461965,Private Bedroom WITH a Living room!,7833913,Gya,Brooklyn,Crown Heights,40.67471,-73.94571,Private room,69,2,90,2019-07-02,1.25,1,186 +1462341,Great Apt/Roof in Hells Kitchen,7837136,Jorion,Manhattan,Hell's Kitchen,40.76582,-73.99468,Entire home/apt,300,2,23,2018-09-23,0.32,1,365 +1465446,Historic Townhouse with Private Backyard,7850260,Raymond,Manhattan,Harlem,40.80533,-73.94665,Entire home/apt,175,1,152,2019-07-04,4.54,3,248 +1466081,JFK Jupiter Suites w/ Parking,7853251,Enyinne,Queens,St. Albans,40.6891,-73.7733,Private room,59,1,190,2019-06-16,2.64,5,359 +1466534,Jupiter Suites- Rm #1 (JFK),7853251,Enyinne,Queens,St. Albans,40.69045,-73.77467,Private room,59,1,19,2016-06-29,0.26,5,359 +1466552,ALL YOU NEED!! HK/TIME SQ./THEATER (READ REVIEWS),7112116,Ty,Manhattan,Theater District,40.76199,-73.98627,Private room,169,2,33,2019-04-10,0.47,2,340 +1466688,Bright Apartment In Williamsburg,7856381,Jp,Brooklyn,Williamsburg,40.70901,-73.95291,Entire home/apt,120,2,1,2015-05-17,0.02,1,0 +1467106,Bedford Stuyvesant Urban Hang Suite,7858405,Diavanna,Brooklyn,Bedford-Stuyvesant,40.69301,-73.94551,Entire home/apt,155,3,227,2019-06-14,3.16,1,244 +1467238,Charming Prime Williamsburg 2 bedroom Entire home,7859118,Kristen & Corey,Brooklyn,Williamsburg,40.71915,-73.94061,Entire home/apt,165,2,80,2017-07-19,1.28,1,188 +1467392,"VERY BIG, BEDROOM/ PRIVATE BATHROOM.",7858210,Maxime,Manhattan,Harlem,40.81384,-73.93973,Private room,60,2,125,2019-06-28,1.77,4,167 +1467618,1 min to Bedford Ave (L) Station,7860852,Matthew,Brooklyn,Williamsburg,40.71867,-73.9557,Entire home/apt,190,3,10,2019-05-26,0.26,2,0 +1469895,Bright and Spacious West Village Studio,6263540,Adam,Manhattan,West Village,40.73695,-74.00572,Entire home/apt,150,5,3,2018-01-01,0.13,1,0 +1469955,Luxury 1 Bedroom Upper West,10528,Olivier,Manhattan,Upper West Side,40.77864,-73.98437,Entire home/apt,150,30,18,2019-05-20,0.29,2,135 +1470069,Sunny Apartment in Clinton Hill,4130492,Keiko & Ilya,Brooklyn,Bedford-Stuyvesant,40.69077,-73.95745,Entire home/apt,120,4,26,2019-07-05,0.53,1,10 +1471244,Cozy w/amazing city views by PS1,4260529,Harry,Queens,Long Island City,40.74632,-73.94799,Private room,349,1,26,2016-12-13,0.36,2,365 +1471952,Jupiter Suites- Rm #2- (JFK),7853251,Enyinne,Queens,St. Albans,40.68872,-73.77373,Private room,59,1,14,2016-10-22,0.19,5,359 +1472002,SHARED STUDIO AT MANHATTAN'S HEART BY C. PARK,3003563,Rocio,Manhattan,Theater District,40.76035,-73.98026,Shared room,99,2,62,2019-05-23,2.22,1,21 +1472009,"Jupiter Suites, Rm #3- (JFK)",7853251,Enyinne,Queens,St. Albans,40.69054,-73.77306,Private room,59,1,32,2016-09-21,0.45,5,359 +1474752,Dope Williamsburg Apartment,2259113,Ange,Brooklyn,Williamsburg,40.71215,-73.95637,Private room,110,3,23,2019-05-06,0.32,1,159 +1474980,Be my Guest! Cozy East Village apt!,823392,Karen,Manhattan,East Village,40.72247,-73.97947,Private room,73,12,11,2019-06-29,0.16,1,21 +1475084,"Fun LES 1br, close to everything!",7895068,Ana,Manhattan,Chinatown,40.71608,-73.98962,Entire home/apt,179,3,201,2019-06-14,2.84,1,256 +1475427,Cozy Twin for the NYC Win! [Gay/LGBT Friendly],7896605,Daveyjoe!,Queens,Sunnyside,40.74234,-73.92579,Private room,102,5,8,2018-01-02,0.24,1,0 +1475631,BLYN BROWNSTONE CORZY CORNER in NYC,2015914,Majar,Brooklyn,Bushwick,40.68786,-73.91722,Private room,62,3,95,2019-02-11,1.32,8,338 +1475661,Gorgeous Apt. 20 min to Manhattan!,7897301,Rickey,Queens,Astoria,40.7703,-73.93306,Entire home/apt,140,2,13,2014-09-01,0.18,1,0 +1476238,Spacious Midtown 1BR Apt - 4.5 Stars/21 Reviews,7324189,Buke,Manhattan,Midtown,40.76084,-73.96908,Entire home/apt,300,15,6,2018-11-07,0.58,2,98 +1476484,Spacious Sunny SoHo-Awesome Locale!,7901999,Steven,Manhattan,Nolita,40.7245,-73.99419,Entire home/apt,299,2,26,2017-09-30,0.37,1,88 +1478315,1 bedroom in heart of Fort Greene,1834942,Tessa,Brooklyn,Clinton Hill,40.69332,-73.96543,Entire home/apt,104,12,11,2017-07-30,0.15,1,15 +1478946,"Prime Chelsea Location,Washer/Dryer",7245581,Michael,Manhattan,Chelsea,40.75029,-73.99556,Entire home/apt,98,120,38,2019-05-15,0.54,19,290 +1479113,"Spacious, quiet room with private full bathroom.",176836,Gil,Manhattan,Lower East Side,40.71501,-73.98061,Private room,49,1,90,2019-01-01,1.29,1,0 +1479283,"Great Chelsea Location, Couch/2nd bed, Free WiFi",7245581,Michael,Manhattan,Chelsea,40.75028,-73.99533,Entire home/apt,96,115,45,2019-03-15,0.63,19,210 +1479349,Sunny Private Room in Williamsburg,5464042,Nicole,Brooklyn,Williamsburg,40.70952,-73.95078,Private room,80,3,130,2017-05-04,1.85,1,0 +1479731,Master Bedroom in Modern Loft Apt.,7809536,Brian,Brooklyn,Crown Heights,40.68007,-73.96334,Private room,89,3,147,2019-07-01,2.05,1,362 +1480002,Huge rm in 1500sq ft loft w/lots ,7919277,Daren,Manhattan,Lower East Side,40.71862,-73.99154,Private room,125,1,1,2013-09-16,0.01,1,364 +1481907,Charming BK Townhouse Home by Highland Park!,7938019,Megan,Brooklyn,Cypress Hills,40.68505,-73.8718,Entire home/apt,345,2,78,2019-06-30,2.49,1,185 +1483688,Peaceful Studio in Fort Greene,477140,Mark,Brooklyn,Fort Greene,40.6862,-73.97184,Entire home/apt,150,3,17,2016-09-24,0.43,1,0 +1484031,"Private room in cozy Harlem, NY Apt",6228539,Michelle,Manhattan,Harlem,40.80427,-73.95404,Private room,100,2,15,2019-05-20,0.21,2,326 +1484310,1 bed aprt best location in NewYork,7727015,Lucie,Manhattan,Lower East Side,40.7204,-73.99042,Entire home/apt,120,5,9,2016-09-28,0.16,1,0 +1486099,All New Bohemian Chic 1BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.72267,-73.94362,Entire home/apt,149,30,9,2018-02-18,0.13,52,343 +1487222,2BR Sunlight & Secret Garden Apartment,1308282,Sam,Brooklyn,Crown Heights,40.67838,-73.95549,Entire home/apt,145,4,18,2018-11-25,0.25,1,0 +1489426,New york Multi-unit building,7964729,Justin,Manhattan,Financial District,40.70582,-74.00888,Entire home/apt,390,3,1,2018-09-13,0.10,1,0 +1490223,Private Bed & Bath in a townhouse:Charm-Calm-Cozy-,6586128,Martine,Bronx,Port Morris,40.80011,-73.9133,Private room,60,21,19,2019-01-02,0.28,2,178 +1491991,Charming Brwnstn Duplex sleeps 5,7959444,Molly,Brooklyn,Park Slope,40.6747,-73.97947,Entire home/apt,190,3,17,2018-10-22,0.28,1,167 +1492286,West Village/SoHo Prvt Rm,7977178,Abby,Manhattan,SoHo,40.72822,-74.00429,Private room,80,3,51,2019-04-26,0.79,3,276 +1492856,small room in bedstuy P,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68411,-73.95169,Private room,55,1,162,2019-06-19,2.26,15,334 +1494527,Huge Loft In South Williamsburg,7988149,Moses,Brooklyn,Williamsburg,40.71202,-73.96602,Entire home/apt,275,2,195,2019-06-30,2.74,1,331 +1496319,Private Huge 2br Williamsburg Artist Apartment!,7997061,Rebecca,Brooklyn,Williamsburg,40.71471,-73.94045,Entire home/apt,250,1,87,2019-06-27,1.23,1,272 +1497024,New York City Historical Brownstone Ground Floor,8000315,Naima,Manhattan,Harlem,40.82124,-73.94973,Entire home/apt,100,2,271,2019-06-30,3.85,2,270 +1499635,Gorgeous apartment by Grand Central,1601577,Tilia,Manhattan,Murray Hill,40.74776,-73.97335,Entire home/apt,600,4,7,2015-09-04,0.10,1,0 +1503618,"Private, quiet Antique room on first floor duplex",6457253,Irene,Brooklyn,Sunset Park,40.66405,-73.9923,Private room,66,2,4,2019-05-12,0.08,1,365 +1503670,Best location in Brooklyn!,2024924,Lisa,Brooklyn,Park Slope,40.67171,-73.98079,Private room,65,7,58,2019-03-29,0.83,2,333 +1506985,Garden Rowhouse Duplex-2 bd/3 bth,8049757,Omar,Manhattan,East Harlem,40.80108,-73.94346,Entire home/apt,220,4,60,2019-06-19,0.85,1,332 +1507845,"Rare large modern garden studio, comfy; location!",109505,Jason,Manhattan,Upper East Side,40.77006,-73.95441,Entire home/apt,159,2,114,2019-06-23,1.62,1,46 +1511216,Private room in 2 bedroom apartment,8071107,Tov,Brooklyn,Williamsburg,40.7057,-73.93836,Private room,70,2,31,2017-03-31,0.44,2,20 +1511303,Private fits 3 ppl. Prospect Park ,1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.65936,-73.95139,Private room,49,5,84,2019-06-16,1.17,3,296 +1511534,Huge Room with View in Bushwick!,8071900,Jordan,Brooklyn,Bushwick,40.70121,-73.91883,Private room,47,5,21,2018-11-30,0.36,1,56 +1512006,Designer Space For Families: 2 Bed | 2 Bath,4731948,Kiki,Manhattan,Lower East Side,40.71804,-73.99147,Entire home/apt,299,1,200,2019-06-02,2.80,4,100 +1514939,Bright Studio Apt on Prospect Park,8088731,Jon,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96107,Entire home/apt,79,7,19,2019-02-18,0.43,1,0 +1515026,"Garden Apartment, Ft. Greene",1396183,Lee,Brooklyn,Fort Greene,40.69197,-73.97218,Entire home/apt,115,4,12,2019-02-22,0.17,1,0 +1515611,"AMAZING, HUGE NEW YORK LOFT!",8092548,Habib,Brooklyn,Clinton Hill,40.68639,-73.9624,Entire home/apt,229,3,38,2019-06-25,0.54,1,364 +1515659,Relax at our duplex + backyard,8092818,Romi,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94645,Entire home/apt,115,5,3,2014-04-02,0.04,1,0 +1515692,Beautiful Lower East Side Penthouse,4358024,Jonathan,Manhattan,Greenwich Village,40.73051,-73.99518,Entire home/apt,1100,2,17,2018-10-20,0.25,2,364 +1516120,Art Dealer's One of a Kind Williamsburg Aptartment,228583,Angelo,Brooklyn,Williamsburg,40.71,-73.9523,Entire home/apt,165,4,10,2018-10-06,0.14,1,49 +1517917,Elegant modern 1-bedroom in Bed-Stuy,1430128,Jenn,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94678,Entire home/apt,67,6,10,2018-05-30,0.39,1,0 +1519957,BedStuy with a View,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69289,-73.94356,Private room,68,3,52,2019-06-24,2.44,3,72 +1519994,McSimon's | Queen Room | 10 mins from JFK,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63591,-73.90941,Private room,85,3,1,2019-01-04,0.16,2,132 +1520806,HUGE 2BR+1BA Apt For Group Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92804,Entire home/apt,170,3,134,2019-06-20,2.00,3,209 +1521318,"modern, convenient safe Midwood, Brooklyn",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62666,-73.96094,Private room,95,3,46,2019-07-01,0.76,3,86 +1521335,Private Room in Brooklyn Brownstone,8120180,Ivey,Brooklyn,Bedford-Stuyvesant,40.68329,-73.95111,Private room,45,3,2,2016-07-09,0.05,1,0 +1523556,Simply brooklyn. Bedroom with office off L train.,7304881,Amanda,Brooklyn,Williamsburg,40.71041,-73.93847,Private room,178,2,2,2016-09-04,0.06,1,0 +1524017,CHELSEA BROWNSTONE 1BRM GARDEN APT ,8131878,Tabita,Manhattan,Chelsea,40.74461,-74.00172,Entire home/apt,140,5,50,2019-06-13,0.91,1,328 +1524302,Huge 1 Bedroom Loft at Habitat 101!,7503643,Vida,Brooklyn,Greenpoint,40.72686,-73.94177,Entire home/apt,149,30,7,2018-10-31,0.11,52,281 +1524562,Stuyvesant Heights Townhouse,4540899,Tee,Brooklyn,Bedford-Stuyvesant,40.69399,-73.93135,Entire home/apt,89,3,86,2019-05-26,1.29,1,223 +1524711,Sunny 1-Bedroom Apartment: Astoria,8135210,Milena,Queens,Astoria,40.76387,-73.92593,Entire home/apt,108,4,3,2015-12-01,0.06,1,0 +1524895,NYC apartment! Bright and spacious!,3217480,Victoria,Manhattan,Washington Heights,40.85652,-73.92975,Entire home/apt,138,7,14,2019-04-24,0.30,1,13 +1525602,Perfect Temporary Brooklyn Home,1200603,Andrea,Brooklyn,Crown Heights,40.66751,-73.95867,Entire home/apt,115,2,121,2019-05-31,1.70,1,39 +1526741,Comfy Couch in a nice and safe apt!!,6486116,Ari,Manhattan,East Harlem,40.79004,-73.94846,Shared room,69,1,136,2019-04-04,2.13,4,103 +1530386,A Lovely 2br in Chelsea,8163133,Nikhil,Manhattan,West Village,40.73988,-74.0036,Entire home/apt,269,2,68,2019-06-20,1.14,1,311 +1530660,Boutique Williamsburg Duplex Apartment,173980,Will And Jo,Brooklyn,Williamsburg,40.70919,-73.95012,Entire home/apt,160,30,13,2014-01-05,0.18,2,252 +1530919,2bd in heart of Soho/Little Italy!,4045167,Manuel,Manhattan,SoHo,40.71908,-73.99976,Entire home/apt,150,1,2,2015-03-18,0.03,1,207 +1533652,Charming Central Park Studio: Summer Park Strolls!,8178950,Mari,Manhattan,Upper West Side,40.78357,-73.97268,Entire home/apt,121,7,76,2019-06-30,1.11,1,151 +1533807,Sunny Spacious Dwelling,8179855,Kris,Brooklyn,Flatbush,40.63863,-73.95729,Entire home/apt,95,7,22,2019-06-21,0.49,1,20 +1534212,Great studio with 2 rooms and kitchen,7365834,Alex,Brooklyn,Sheepshead Bay,40.58426,-73.95949,Entire home/apt,99,3,66,2019-05-27,1.05,5,365 +1534782,Cozy,8184930,Leonice,Brooklyn,Prospect Heights,40.68249,-73.97139,Private room,40,1,73,2019-05-13,1.10,1,65 +1535607,"EV, Hippest East Village",2333904,Stephanie,Manhattan,East Village,40.72307,-73.97911,Private room,89,28,23,2019-05-05,0.38,3,125 +1538077,New Listing! Terrific Price.,8200820,Valerie,Brooklyn,Greenpoint,40.71938,-73.95136,Private room,50,2,11,2014-02-03,0.16,2,157 +1542279,nice room in bedstuy L,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.6839,-73.95042,Private room,55,1,126,2019-06-19,1.77,15,343 +1546518,"Sunny, pretty Park Slope 3+ bed apt",66193,Brennan,Brooklyn,South Slope,40.66448,-73.98695,Entire home/apt,224,2,229,2019-06-24,3.28,1,257 +1546678,One Bedroom in Astoria NY,7646038,Malik,Queens,Ditmars Steinway,40.77448,-73.90907,Entire home/apt,120,2,2,2018-09-12,0.19,1,0 +1546945,(1) CLEAN HOME AWAY FROM HOME!,4983320,Terri,Queens,Flushing,40.75431,-73.83131,Private room,59,1,116,2017-09-06,1.63,2,0 +1549413,Beautiful Studio in Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.8033,-73.95008,Entire home/apt,135,31,177,2019-06-06,2.49,4,340 +1551044,Nexus of the Universe!,8261145,Tommy,Manhattan,Lower East Side,40.72317,-73.9929,Entire home/apt,175,3,105,2019-06-19,1.49,1,274 +1552242,Single family home 2 bedrooms 2 bathrooms,8126811,Jessica,Queens,Long Island City,40.75676,-73.93463,Entire home/apt,250,3,184,2019-06-26,2.65,1,84 +1555919,East Village New Luxury Bldg - 1BR,8282962,Anna,Manhattan,East Village,40.7282,-73.98067,Entire home/apt,156,2,31,2019-05-16,0.44,1,3 +1559435,Gorgeous & Spacious Full 1 BR Apt,5191738,Alisha,Brooklyn,Bedford-Stuyvesant,40.68864,-73.9213,Entire home/apt,75,2,36,2019-06-25,0.66,1,0 +1559912,Quiet Large 1BR Near Columbia,8301763,Kevin,Manhattan,Morningside Heights,40.8061,-73.9662,Entire home/apt,79,5,9,2016-10-12,0.13,1,0 +1560339,Entire Modern Studio Apartment/Prime Location,3038687,Karen,Manhattan,Upper West Side,40.78981,-73.97518,Entire home/apt,104,30,27,2019-05-31,0.38,8,137 +1560408,Airy Designer Loft in Williamsburg,8300712,Andrew And Stine,Brooklyn,Williamsburg,40.7133,-73.94602,Entire home/apt,280,1,124,2019-06-23,1.77,1,359 +1564553,Cozy Room in Best Downtown NYC Location,8323145,Madeleine,Manhattan,Nolita,40.72411,-73.99372,Private room,80,4,131,2019-06-07,1.88,1,34 +1566326,Studio in South Williamsburg,7776144,Bertte,Brooklyn,Williamsburg,40.71171,-73.96101,Entire home/apt,136,30,50,2018-07-08,0.72,1,0 +1567225,"NYC LARGE 3 BR West Side Manhattan, New York City",8336526,Matthew,Manhattan,Upper West Side,40.78024,-73.97942,Entire home/apt,550,4,17,2019-04-29,0.27,1,201 +1569396,Ditmas Park Carriage House Loft,8111912,Jed,Brooklyn,Flatbush,40.64361,-73.96821,Entire home/apt,190,2,95,2019-06-29,1.65,2,349 +1570204,SPECIAL OFFER* 1BDR IN EAST VILLAGE,377151,Shervin,Manhattan,East Village,40.72915,-73.98565,Entire home/apt,199,2,29,2019-06-30,0.47,1,361 +1571455,"NEW YORK, Queens "" WELCOME "" ",8316059,Jorge,Queens,Woodside,40.74409,-73.89864,Private room,75,2,25,2018-10-28,0.40,1,365 +1572815,Private room - Heart of East Village,4106680,Alexandre,Manhattan,East Village,40.72853,-73.98619,Private room,100,1,212,2019-06-23,3.05,1,278 +1573068,COZY STUDIO,8362282,Drica 2017,Manhattan,Upper West Side,40.78808,-73.9754,Entire home/apt,125,1,15,2016-05-24,0.21,1,362 +1576883,Entire Floor of Brooklyn Brownstone,6866353,Julie,Brooklyn,Bushwick,40.68585,-73.90686,Private room,75,2,12,2018-07-01,0.24,1,0 +1578103,Private room in Harlem gem with fab New Yorkers!,245881,Steph,Manhattan,Harlem,40.80355,-73.95227,Private room,99,2,30,2019-06-29,2.61,1,24 +1578721,"Huge, Sunny Greenpoint Flat",999689,Eric,Brooklyn,Greenpoint,40.72887,-73.95163,Private room,35,30,5,2014-04-23,0.07,1,97 +1578776,Nice private room in Astoria,4645357,Beatrix,Queens,Long Island City,40.75909,-73.93217,Private room,51,1,165,2019-06-23,2.36,1,361 +1581579,★★★★★- Lux Astoria |❤of NYC| Near subway/Manhattan,7748180,Ryan,Queens,Ditmars Steinway,40.77787,-73.91472,Entire home/apt,188,2,260,2019-07-07,3.97,1,312 +1582540,1-bedroom APT SoHo / NoLITa,8422502,Stephan,Manhattan,NoHo,40.72545,-73.99492,Entire home/apt,90,7,2,2015-12-23,0.04,1,0 +1583111,Modern Design in Sunny Duplex,4894525,Am,Brooklyn,Crown Heights,40.68034,-73.9615,Entire home/apt,279,3,9,2018-12-31,0.19,1,0 +1583335,West Village 2 br 850 sf - right by the Hudson!,117236,Raj,Manhattan,West Village,40.73078,-74.0104,Entire home/apt,350,4,9,2018-06-11,0.14,1,13 +1583653,Private room and bathroom,8434244,William,Manhattan,East Harlem,40.79255,-73.93842,Private room,125,2,59,2019-06-16,0.84,1,360 +1584060,"Safe upscale room, Flatbush, Brooklyn, near subway",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62733,-73.96102,Private room,85,4,38,2019-05-14,0.56,3,81 +1586454,Private Room With Patio In Queens,8452695,Macit,Queens,Maspeth,40.73732,-73.90168,Private room,48,20,33,2019-04-21,0.46,2,297 +1586576,Private Bedroom in QUEENS,8452695,Macit,Queens,Maspeth,40.74033,-73.89921,Private room,56,28,14,2017-04-15,0.20,2,310 +1586641,SALE- SUNNY MASTER BEDROOM NEAR MANHATTAN,8452639,C S,Brooklyn,Flatbush,40.64919,-73.96143,Private room,84,2,68,2019-05-27,0.96,3,362 +1586773,Beautiful Brownstone in West Harlem,8455776,Wendy,Manhattan,Harlem,40.82453,-73.94923,Entire home/apt,155,1,123,2019-06-24,1.74,2,170 +1586935,Luxury Gramercy Lg 1Bd w Balcony,8457613,Erin,Manhattan,Gramercy,40.73494,-73.98751,Entire home/apt,250,365,0,,,1,365 +1588221,Large 2 BR Loft Downtown NY,1400369,Ernesto,Manhattan,Chinatown,40.71702,-73.99566,Entire home/apt,300,5,31,2019-06-23,0.45,1,278 +1589248,Hip Apartment in Williamsburg,8255208,Kate,Brooklyn,Williamsburg,40.70951,-73.96262,Entire home/apt,140,1,1,2015-07-16,0.02,1,0 +1589715,Private: The Brass Room,8481125,Thomas,Manhattan,Upper East Side,40.76142,-73.96086,Private room,120,7,19,2019-04-19,0.27,2,245 +1591811,Sunlit apartment in Williamsburg,8265050,Jae,Brooklyn,Williamsburg,40.71188,-73.95155,Entire home/apt,99,2,198,2019-06-17,2.78,2,89 +1593444,Designer Home in Village Center,8289606,Stephen,Manhattan,Greenwich Village,40.73158,-73.99254,Entire home/apt,240,7,19,2019-05-23,0.27,1,158 +1596314,Gorgeous charming Manhattan 1bdrm Alexa Smart Home,4327300,Stephen,Manhattan,Washington Heights,40.83399,-73.94474,Entire home/apt,72,7,27,2019-05-25,0.46,1,73 +1598012,"Close to the city, Astoria",3360223,Rosemary,Queens,Astoria,40.76792,-73.92228,Private room,45,4,68,2019-01-01,0.96,1,0 +1598033,Staten Island Apartment - 2nd floor,7875272,Mary,Staten Island,Port Richmond,40.62947,-74.13378,Entire home/apt,250,30,1,2015-10-07,0.02,3,0 +1598328,Room in heart of the West Village!,8521063,Wes,Manhattan,West Village,40.73254,-74.00467,Private room,100,2,48,2019-01-02,0.90,1,78 +1598785,SUNNY STUDIO MIDTOWN EAST W/DOORMAN,8038118,Maria,Manhattan,Midtown,40.7529,-73.97094,Entire home/apt,175,5,116,2019-05-27,1.65,1,299 +1598863,1Br apt + backyard -east village,8523970,Tanya,Manhattan,East Village,40.72694,-73.98304,Entire home/apt,200,5,10,2019-04-26,0.14,1,0 +1600917,"Jupiter Suites, Rm #4 w/Bthrm-(JFK)",7853251,Enyinne,Queens,St. Albans,40.69015,-73.77472,Private room,59,1,8,2017-05-11,0.12,5,359 +1601955,"Cozy, QUIET Dream Home in SEAPORT",2698515,Chandler,Manhattan,Financial District,40.70939,-74.00121,Entire home/apt,420,2,285,2019-07-02,4.02,1,294 +1604488,Private room with stunning view,8548430,Bernardo & Andressa,Brooklyn,Williamsburg,40.72149,-73.96174,Private room,120,3,142,2019-07-07,2.01,1,37 +1604489,Spacious and modern Chelsea loft,8548453,Jon,Manhattan,Chelsea,40.74611,-73.99209,Entire home/apt,295,30,3,2016-09-19,0.04,1,235 +1606312,Williamsburg 2BR 2BA Hotel Condo,3130819,Shana,Brooklyn,Williamsburg,40.72079,-73.95641,Entire home/apt,200,120,12,2014-07-21,0.17,1,306 +1608220,The Heart of Bushwick!,7009551,Joseph,Brooklyn,Bushwick,40.70188,-73.92275,Private room,48,7,61,2019-02-15,0.87,1,0 +1609672,CENTRAL PARK/ TIMES SQUARE,5533135,Rodrigo,Manhattan,Hell's Kitchen,40.76476,-73.99011,Entire home/apt,99,2,55,2019-06-30,0.78,1,182 +1613110,Sunny Studio Loft @ Habitat 101,7503643,Vida,Brooklyn,Greenpoint,40.7257,-73.94181,Entire home/apt,129,30,8,2019-01-30,0.12,52,344 +1614817,PRIME apartment in East Village!,5283853,Chara,Manhattan,East Village,40.73082,-73.98693,Entire home/apt,160,2,44,2018-01-01,0.64,2,0 +1614869,"Cute, quirky Park Slope Jr 1 bdroom",1254489,Randy,Brooklyn,Park Slope,40.67477,-73.97404,Entire home/apt,142,4,41,2019-06-18,0.58,1,151 +1614964,Charming Room in Astoria!!,8783166,Marinez,Queens,Astoria,40.76752,-73.9273,Private room,120,3,12,2019-05-21,0.17,2,365 +1615764,"",6676776,Peter,Manhattan,Battery Park City,40.71239,-74.0162,Entire home/apt,400,1000,0,,,1,362 +1616540,Modern Clean 1 Bedroom apt in Clinton Hill,953843,Sara,Brooklyn,Clinton Hill,40.68572,-73.9641,Entire home/apt,130,7,26,2018-03-07,0.41,1,182 +1617443,Great Artistic Studio in Historic Building,2240143,Pavel,Manhattan,Harlem,40.81606,-73.94363,Shared room,85,3,38,2019-05-27,0.56,1,157 +1617488,Rooftop Oasis in Brooklyn for Shoots & Gigs,8102595,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69017,-73.95757,Entire home/apt,600,1,48,2015-10-11,0.68,1,89 +1619695,Only 10 mins to CENTRAL PARK! :),8616291,Chikie,Manhattan,Harlem,40.82184,-73.95031,Private room,69,5,152,2019-06-29,2.14,2,110 +1620225,Charming studio in Williamsburg,8619862,Karlee,Brooklyn,Williamsburg,40.70863,-73.95543,Entire home/apt,150,3,1,2016-07-18,0.03,1,0 +1620248,Large furnished 2 bedrooms- - 30 days Minimum,2196224,Sally,Manhattan,East Village,40.73051,-73.9814,Entire home/apt,10,30,0,,,4,137 +1621235,An artist place in Bedstuy,1345611,Bahiyyah,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95223,Private room,87,1,4,2019-06-30,2.26,1,12 +1623431,Enormous Chrysler-View Bedroom/Bath,5440087,Dn,Manhattan,Midtown,40.7513,-73.97239,Private room,249,3,1,2015-09-30,0.02,2,87 +1624665,"Bushwick Biodome Loft, Fun & Unique, Great View!",8638841,Nathan,Brooklyn,Williamsburg,40.70537,-73.92975,Private room,65,4,142,2019-06-26,2.03,1,115 +1628156,A Tree Grows in Brooklyn,8653725,Marlyn,Brooklyn,Canarsie,40.64308,-73.9077,Entire home/apt,175,3,158,2019-07-07,2.27,1,317 +1628564,Stylish Room on Express Line to Midtown,5334697,Shane,Manhattan,Washington Heights,40.83942,-73.93855,Private room,79,5,112,2019-07-02,1.59,3,1 +1630572,Private Room in Designer's NYC Apt,2935265,Andrew,Manhattan,SoHo,40.72391,-73.99879,Private room,194,2,141,2019-06-21,2.00,2,340 +1631845,1 bedroom apartment in NYC,1232988,Matthew,Manhattan,Lower East Side,40.71915,-73.99309,Entire home/apt,150,3,19,2019-06-16,0.27,1,9 +1633313,Bohemian W'Burg Duplex,8677042,Malcolm,Brooklyn,Williamsburg,40.7086,-73.94715,Entire home/apt,241,2,1,2018-12-26,0.15,1,0 +1633420,NYC Harlem cozy private room,8677477,Tia,Manhattan,Harlem,40.81307,-73.93854,Private room,80,1,73,2019-05-24,1.08,1,309 +1633924,Smart Family 1BD Retreat in Bedstuy,8680097,Zaire,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92505,Entire home/apt,120,4,72,2019-06-15,1.02,1,284 +1635088,Cosy studio in great location at UES,8685072,Agnes,Manhattan,Upper East Side,40.78013,-73.95082,Entire home/apt,155,4,13,2019-06-07,0.22,1,0 +1635672,Cute studio apt in West Village,8687489,Adam,Manhattan,West Village,40.7338,-74.00328,Entire home/apt,150,7,40,2017-11-25,0.57,1,0 +1640995,One bedroom apartment - UES,8313953,Natalie,Manhattan,Upper East Side,40.76866,-73.9536,Entire home/apt,140,6,36,2019-06-06,0.69,1,71 +1644133,Large Spacious Apt For Sublet,8726014,ELouise,Brooklyn,East Flatbush,40.63205,-73.94587,Entire home/apt,90,1,5,2019-05-03,0.08,1,361 +1644146,"Quaint, beautiful studio Brooklyn",1338262,Rachel,Brooklyn,Carroll Gardens,40.68468,-73.99145,Entire home/apt,150,3,94,2019-07-01,1.33,3,250 +1645181,Lovely Brownstone-- Close to Subway,8708720,Nehprii,Brooklyn,Bedford-Stuyvesant,40.68019,-73.93042,Entire home/apt,135,2,127,2019-06-23,1.80,1,354 +1645196,Park Slope 1BR with Private Outdoor Space,4623045,Sean,Brooklyn,Park Slope,40.67179,-73.97248,Entire home/apt,140,2,45,2019-05-27,1.64,1,31 +1645667,Truly A Sweet Home away from Home.,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68656,-73.95348,Entire home/apt,130,3,220,2019-06-23,3.11,2,0 +1645772,"Private Entrance/Bath, 2 story Apt.",8026393,Ruth,Manhattan,Upper East Side,40.77118,-73.9527,Private room,150,2,121,2019-06-29,1.72,1,225 +1645915,Cozy 1.5BD in Parkslope Brooklyn,1967871,Lisa,Brooklyn,South Slope,40.66623,-73.98217,Entire home/apt,115,3,185,2019-06-05,2.62,1,163 +1646432,Beautiful Home Away From Home!,8732694,Ravanna,Brooklyn,Bedford-Stuyvesant,40.68471,-73.95325,Entire home/apt,130,3,229,2019-06-29,3.32,2,259 +1646838,1 BR apt in heart of the Village,8739354,Caspar,Manhattan,Greenwich Village,40.72831,-73.9987,Entire home/apt,380,6,29,2019-04-29,0.43,1,365 +1646910,"Bright, Cheerful Brooklyn Apartment",2899693,Kali,Brooklyn,Williamsburg,40.70773,-73.94144,Entire home/apt,115,20,1,2014-08-10,0.02,1,0 +1649957,GRACIOUS HARLEM 1 BEDROOM,8751800,Olubode Shawn,Manhattan,Morningside Heights,40.8117,-73.9555,Entire home/apt,125,2,21,2019-05-07,0.30,1,363 +1650470,Spacious room in Bushwick L & JMZ !,8753908,Rebecca,Brooklyn,Bushwick,40.70045,-73.93832,Private room,65,5,1,2015-06-01,0.02,1,169 +1651595,"Cozy Apartment, 30 min train ride to Times Square!",8759781,Augusto M Gallardo,Queens,Jackson Heights,40.75238,-73.87746,Entire home/apt,110,9,11,2019-06-01,0.16,1,362 +1652236,Amazing Spacious Room,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68708,-73.95126,Private room,31,6,41,2019-07-03,0.58,3,55 +1652996,Large Charming 1 BR + Den in Brownstone Apt,517966,Shean,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93911,Entire home/apt,135,3,173,2019-06-23,2.47,2,277 +1654551,"West Village: Cozy, Quiet 1BR Apt",8772693,Billy,Manhattan,West Village,40.73119,-74.00615,Entire home/apt,200,3,20,2016-10-01,0.29,1,0 +1654561,Cozy room in bed-stuy,8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68553,-73.94466,Private room,212,3,1,2019-04-09,0.33,3,109 +1654713,Brooklyn Wildlife Loft rm 2,5556571,Chris,Brooklyn,Williamsburg,40.70617,-73.93761,Shared room,40,1,34,2019-01-24,0.48,3,75 +1654738,GREAT BRAND NEW 1 BED! TIMES SQ!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.76364,-73.99465,Entire home/apt,80,30,12,2019-06-16,0.18,7,365 +1654929,COZY GARDEN APT IN BKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64233,-73.95655,Entire home/apt,95,2,147,2019-06-17,2.09,3,275 +1655550,Gorgeous NewModern_BestLocation!NYC,2119276,Host,Manhattan,Hell's Kitchen,40.76544,-73.9882,Entire home/apt,185,30,7,2018-12-26,0.13,39,347 +1655824,Art House Suite,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68194,-73.94068,Entire home/apt,100,1,59,2019-06-19,0.84,4,165 +1655880,"4BD, 2 Bath Apt Flatiron on 6th Ave",8778889,Steven,Manhattan,Flatiron District,40.74096,-73.9927,Entire home/apt,1200,1,0,,,1,0 +1656254,Habitat 101. Amazing 1br Loft Apartment,7503643,Vida,Brooklyn,Greenpoint,40.72531,-73.94222,Entire home/apt,149,30,9,2018-10-13,0.14,52,341 +1656539,West Village townhouse private suite incl bath,93790,Ann,Manhattan,West Village,40.73089,-74.00302,Private room,139,1,203,2019-07-01,2.87,2,32 +1656585,Sunny 1bd - Near SOHO Washington SQ,1147345,Molly,Manhattan,Greenwich Village,40.72866,-74.00095,Entire home/apt,226,3,25,2019-01-02,0.36,1,80 +1656621,Classic Brownstone private suite,5738733,Elizabeth,Brooklyn,Bedford-Stuyvesant,40.68978,-73.93751,Entire home/apt,74,2,189,2019-06-30,3.02,2,131 +1657110,Luxury & Charm. Steps from Christopher Park!,8315861,Jonathan,Manhattan,West Village,40.73433,-74.0036,Entire home/apt,195,5,52,2019-02-07,0.74,1,0 +1658703,Close to trains! Special long-term rates!!,8791051,Danielle,Brooklyn,East Flatbush,40.6526,-73.94999,Entire home/apt,104,59,48,2018-10-18,0.69,1,122 +1664209,2000 SQ FT Spacious Artist Loft in SOHO,1253125,Tanya,Manhattan,SoHo,40.72047,-74.00049,Entire home/apt,275,2,6,2019-04-28,0.51,1,5 +1664614,Great Views on Upper West Side,8796895,Rebecca,Manhattan,Upper West Side,40.7854,-73.97368,Private room,310,4,12,2017-09-22,0.18,1,358 +1664716,apartment in heart of East Village ,2110601,Julia,Manhattan,East Village,40.72379,-73.98826,Entire home/apt,145,29,3,2016-10-02,0.04,1,35 +1665498,"3rd FL, Private Suite w Own Bath & Study Area",8821936,Lynn,Staten Island,Shore Acres,40.61135,-74.06356,Entire home/apt,75,3,19,2019-05-30,0.28,1,258 +1668328,Quiet Williamsburg apartment,8265050,Jae,Brooklyn,Williamsburg,40.71084,-73.94861,Entire home/apt,99,2,201,2019-06-19,2.85,2,106 +1669149,Beautiful Modern Midtown Apartment,8838470,Carlos,Manhattan,Hell's Kitchen,40.76464,-73.98749,Entire home/apt,250,6,79,2019-01-01,1.12,1,137 +1669250,Large Studio w/ Entertainment Room!,3038687,Karen,Manhattan,Upper West Side,40.79221,-73.97476,Entire home/apt,104,30,24,2018-11-18,0.34,8,57 +1670517,Union Square area 1BD Apartment,8844412,Pat,Manhattan,Gramercy,40.73681,-73.98366,Entire home/apt,250,5,5,2018-09-19,0.07,1,358 +1672860,New**Beauty**W50's_Luxury&BALCONY!!,2119276,Host,Manhattan,Hell's Kitchen,40.76493,-73.98652,Entire home/apt,150,30,18,2019-04-04,0.27,39,340 +1672977,NEW_2BR_PrivateRoof&CityView_Beauty,2119276,Host,Manhattan,Hell's Kitchen,40.76703,-73.98874,Entire home/apt,195,30,17,2019-04-12,0.35,39,333 +1673040,NEW_Duplex_BreathtakingViews_Beauty,2119276,Host,Manhattan,Hell's Kitchen,40.76671,-73.98666,Entire home/apt,350,30,14,2019-06-17,0.22,39,327 +1673338,Comfortable Room + Kitty + Food,5719998,Charles,Brooklyn,Williamsburg,40.71346,-73.93883,Private room,75,1,23,2019-06-29,0.33,1,0 +1677887,Charming LG Bedroom by Park & Train,8756595,Jenny,Brooklyn,Prospect-Lefferts Gardens,40.66139,-73.96027,Private room,80,31,28,2016-07-12,0.40,1,167 +1678809,Sunny Spacious Retro 1 Bedroom,8619985,Mel,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93933,Entire home/apt,96,2,14,2019-06-25,4.62,1,50 +1682258,Big Studio Apt Convenient Gramercy,5434492,Elizabeth,Manhattan,Kips Bay,40.74011,-73.98185,Entire home/apt,200,1,0,,,1,0 +1682282,Private room in MANHATTAN NYC,8896180,Facundo Martin /Teresa,Manhattan,East Harlem,40.79053,-73.94398,Private room,90,3,139,2019-07-06,2.38,1,293 +1682958,Beautiful Cozy Room Great Price!,6194487,Rocio & James,Queens,Astoria,40.76359,-73.90586,Private room,79,1,274,2019-04-25,4.02,3,308 +1683227,Clean room near Columbia Univ,8900383,Zee,Manhattan,Morningside Heights,40.81326,-73.96181,Private room,220,1,0,,,1,365 +1683968,Landmark Loft in Williamsburg Brooklyn 1 month min,274702,Sabina Giovanna,Brooklyn,Williamsburg,40.71108,-73.96318,Entire home/apt,224,31,14,2018-08-05,0.20,1,219 +1684053,Arverne By The Bay Private Room & Bathroom,762610,Christopher,Queens,Arverne,40.59684,-73.79449,Private room,35,2,201,2019-06-18,3.28,2,88 +1687108,"Private, Clean and Comfortable NY",177712,Amara,Queens,Astoria,40.76394,-73.92022,Private room,70,7,34,2019-03-31,0.48,1,140 +1688711,Luxury Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66359,-73.95235,Private room,85,1,40,2019-06-07,0.83,10,293 +1688914,Strivers Row Sanctuary in Harlem - Monthly,8925763,Joy,Manhattan,Harlem,40.8174,-73.94629,Entire home/apt,110,30,128,2019-06-28,1.82,2,314 +1690764,One very large room two beds,8925493,Yvonne,Brooklyn,Bedford-Stuyvesant,40.68208,-73.9104,Private room,65,3,2,2019-05-07,0.06,2,365 +1691188,4 bedroom 2Bath apt Maspeth Queens,8934751,Mike,Queens,Maspeth,40.72509,-73.89687,Entire home/apt,200,4,24,2019-06-01,0.38,2,157 +1691798,Beautiful apt in the heart of LES,8937205,Golan,Manhattan,Chinatown,40.7157,-73.99183,Entire home/apt,249,31,6,2015-11-01,0.09,1,365 +1692823,ON A BUDGET COZY IN BROOKLYN In NYC,2015914,Majar,Brooklyn,East New York,40.66759,-73.88584,Private room,62,3,52,2019-05-27,0.74,8,361 +1693028,Private Room with adjoining bathroom,8918030,Theodore,Bronx,Williamsbridge,40.88296,-73.86264,Private room,50,1,19,2019-03-30,0.83,1,311 +1693171,BLYN SPECIAL BUDGET PRICE IN NYC,2015914,Majar,Brooklyn,East New York,40.66907,-73.88493,Private room,62,3,48,2019-06-17,0.68,8,340 +1693524,1 rm @ 3BR loft williamsburg room 3,4864306,Joseph,Brooklyn,Greenpoint,40.72668,-73.95555,Private room,50,2,13,2019-06-17,0.22,3,282 +1695731,1BR Apt in Murray Hill/Midtown,8955761,Murrel,Manhattan,Murray Hill,40.74722,-73.97734,Private room,55,1,0,,,1,0 +1696050,"Spacious Room, Central Location, Historic block.",4463092,Samuel,Manhattan,Harlem,40.80339,-73.95167,Private room,71,2,64,2019-06-26,1.02,2,18 +1696381,Charming Room Near Central Park,2717428,Ellen,Manhattan,East Harlem,40.7977,-73.93754,Private room,75,1,37,2019-06-30,0.53,1,139 +1697047,Charming Private Room with a View,4184612,Lynne,Brooklyn,Williamsburg,40.71251,-73.947,Private room,115,3,146,2019-06-09,2.08,1,277 +1698334,Williamsburg off Bedford/no extra $ for 2ppl!,1562642,Molly,Brooklyn,Williamsburg,40.7138,-73.96251,Private room,82,2,144,2019-04-02,3.37,1,0 +1699934,SAFE BUDGET IN Brooklyn NYC,2015914,Majar,Brooklyn,East New York,40.66874,-73.88548,Private room,75,3,34,2019-04-06,0.49,8,341 +1700471,CHARM Rm HAMILTON HEIGHTS Harlem,8289663,Shane,Manhattan,Harlem,40.81976,-73.94029,Private room,60,3,101,2019-06-10,1.44,1,340 +1701981,"Modern, Light-Filled Apt in Chelsea/Meatpacking",1120027,Clay,Manhattan,Chelsea,40.74072,-74.00438,Entire home/apt,200,7,11,2019-06-22,1.17,1,11 +1702032,The Top-Notch Top-Floor,8986314,Stephen,Brooklyn,Greenpoint,40.7337,-73.95427,Private room,90,1,0,,,1,0 +1702533,BROOKLYN FAVORITE VACATION HOME 2,8335875,Mr. Williams,Brooklyn,Park Slope,40.68242,-73.97904,Entire home/apt,215,3,59,2019-05-23,0.84,1,356 +1702581,PRIVATE. ROOM - Midtown/Central Park,5668786,Ed &Alexa,Manhattan,Hell's Kitchen,40.76796,-73.98601,Private room,100,2,244,2019-07-05,3.49,1,52 +1702781,Nice and quiet,7614595,Maria,Queens,Astoria,40.7672,-73.92799,Private room,38,30,7,2018-11-03,0.19,1,137 +1703506,"Gorgeous, Family-Friendly, NYC Apt!",706623,Emilia,Brooklyn,Bushwick,40.69383,-73.90837,Entire home/apt,159,3,11,2019-04-27,0.20,4,77 +1703834,Your Own Private Room To Sleep In! BEAUTIFUL!,8136206,Rob,Brooklyn,Prospect-Lefferts Gardens,40.65763,-73.96029,Private room,64,2,108,2019-06-16,1.61,2,296 +1704210,Gorgeous 1-2 bedroom(Prospect park),2731594,Ronak,Brooklyn,Windsor Terrace,40.64928,-73.97538,Entire home/apt,125,15,53,2019-03-27,0.75,1,5 +1704560,Beautiful/Spacious 1 Bedroom in LES,5693756,Daniel,Manhattan,Lower East Side,40.7189,-73.99177,Entire home/apt,120,4,182,2019-07-05,2.60,1,72 +1704798,Perfect cozy PRIVATE room!!,8998805,Koji & H,Manhattan,Chelsea,40.75224,-73.99487,Private room,76,3,164,2019-06-24,2.34,1,27 +1706997,Cozy 1BD next to Central Park,5662533,Megan,Manhattan,Upper West Side,40.77532,-73.97952,Private room,175,2,4,2016-08-05,0.10,1,0 +1707422,"VERY UNIQUE TOWNHOUSE in GREENPOINT, BROOKLYN",9008935,Robin,Brooklyn,Greenpoint,40.72646,-73.95799,Private room,110,5,7,2019-01-02,0.10,1,300 +1707823,Private Room in the Heart of Greenpoint,9010955,Lindsey,Brooklyn,Greenpoint,40.73487,-73.95789,Private room,75,1,69,2019-06-30,4.43,2,49 +1708771,"Comfort; Next to ""A"" express subway",840868,Ric,Manhattan,Washington Heights,40.85287,-73.93794,Private room,80,2,28,2019-07-02,0.40,2,327 +1712462,Cozy Private Room in Brooklyn NY,9031941,Sarah,Brooklyn,Greenpoint,40.72124,-73.93673,Private room,110,4,2,2017-09-04,0.06,1,0 +1712660,Cosy Room in Great Location -W'burg,2332618,Alison,Brooklyn,Williamsburg,40.70833,-73.95395,Private room,89,1,214,2019-06-28,3.07,2,354 +1713409,Sunny 1BR + Outdoor space [L line],6144668,Eydie,Brooklyn,Bushwick,40.70306,-73.92526,Entire home/apt,110,3,23,2019-06-23,0.33,1,67 +1716441,Large sunny room queen bed &balcony,153494,Amikole,Manhattan,Lower East Side,40.71906,-73.9845,Private room,96,1,274,2019-06-29,3.94,1,145 +1716640,One Stop to TimesSQ Vacation Apt,9051298,Lydiah,Manhattan,Harlem,40.81027,-73.94639,Entire home/apt,75,5,31,2016-04-11,0.49,2,0 +1717058,Top floor 1 bedroom soho/nolita,9053036,Raynald,Manhattan,Nolita,40.72182,-73.99625,Entire home/apt,185,3,65,2019-06-07,1.04,1,106 +1717138,"Cozy private Basement studio,15mins from the city",8943770,Patrick,Brooklyn,Flatbush,40.63304,-73.95625,Entire home/apt,49,2,23,2019-07-03,3.50,1,262 +1717149,Corner High Rise Apartment - City Views,9053452,Liam,Manhattan,West Village,40.74035,-74.00615,Entire home/apt,440,3,6,2015-11-21,0.09,1,70 +1717226,BIG BROOKLYN HOUSE TO LOVE,9053876,Amy,Brooklyn,Crown Heights,40.6776,-73.93504,Entire home/apt,220,7,18,2019-06-30,0.27,2,156 +1721115,Financial District Oasis Room-1 Queen Bed,9072771,Kindra,Manhattan,Financial District,40.70758,-74.00799,Private room,99,4,11,2019-06-20,0.18,2,365 +1725295,Midtwn E BEST LOCATION Priv Twin Rm 1 Loving Cat,215764,Lynn,Manhattan,Murray Hill,40.7474,-73.97847,Private room,85,1,135,2018-12-12,1.93,1,15 +1727923,Large private 1BR with backyard - Williamsburg,2510744,Isabelle,Brooklyn,Williamsburg,40.71316,-73.95648,Entire home/apt,98,7,7,2017-01-07,0.10,1,0 +1728339,Large Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66231,-73.95394,Private room,84,1,60,2019-06-26,1.05,10,302 +1728437,Cozy Room in Landmark House,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66182,-73.95338,Private room,65,1,38,2019-05-30,0.60,10,239 +1728625,New Williamsburg 1B With Backyard,9109049,Todd,Brooklyn,Greenpoint,40.71985,-73.94015,Entire home/apt,160,2,19,2017-12-04,0.32,1,0 +1728938,Sunny Room/private bath/ Brownstone,478717,Deborah,Brooklyn,Park Slope,40.67629,-73.97654,Private room,115,3,200,2019-05-28,3.16,1,256 +1729286,"Sunny, Large (Queen Bed) Private room in 2Bedroom",8366233,Helga,Manhattan,East Harlem,40.79377,-73.9361,Private room,59,14,30,2019-06-04,0.43,2,36 +1730937,Private room in Midtown East,9119678,Alex,Manhattan,Midtown,40.75622,-73.9728,Private room,119,2,27,2019-05-10,0.58,1,325 +1731245,"Sunny, Comfortable Space",7228995,Sophie,Brooklyn,Crown Heights,40.67394,-73.924,Entire home/apt,120,2,92,2019-06-24,1.37,1,311 +1731365,Duplex apartment with garden,7379093,Francesca,Manhattan,Upper West Side,40.79086,-73.96683,Entire home/apt,439,5,79,2019-06-29,1.15,2,154 +1731969,Beautiful UES residence minutes from everything,17318747,Jay,Manhattan,Upper East Side,40.77084,-73.95811,Private room,99,1,20,2019-06-30,0.42,2,278 +1732498,Hip Two Story BK Apt w/Private Yard,1818792,Clarissa & Rich,Brooklyn,Greenpoint,40.72716,-73.94971,Entire home/apt,199,2,25,2016-10-18,0.44,1,5 +1733054,"Williamsburg Brooklyn, Parkside Penthouse NYC View",8072802,John,Brooklyn,Williamsburg,40.7179,-73.95103,Private room,99,1,340,2019-07-01,4.90,2,263 +1733157,Private Family Home 2BR mins to Midtown Manhattan,9131167,Myrna And David,Queens,Astoria,40.76135,-73.91571,Private room,195,3,231,2019-06-30,3.51,1,304 +1734724,Williamsburg Luxury- 30 days +,8910286,Lane,Brooklyn,Williamsburg,40.72076,-73.95614,Entire home/apt,180,30,183,2017-12-17,2.63,1,0 +1735478,"Relaxing, serene room in NYC Apt",6790494,Paul,Queens,Long Island City,40.76081,-73.93163,Private room,100,20,52,2015-08-25,0.75,1,182 +1735804,Lovely Suite in Historic Brownstone near Subway,1755097,Jay,Brooklyn,Bedford-Stuyvesant,40.68972,-73.93073,Entire home/apt,115,2,210,2019-06-14,3.58,2,106 +1736064,Sunny 1BR Overlooking Prospect Park,721267,Debbie,Brooklyn,Prospect-Lefferts Gardens,40.65769,-73.96161,Entire home/apt,115,30,2,2019-05-16,0.03,1,0 +1738513,Sunny Floral Artist Apartment Chinatown LES,5064855,Krista,Manhattan,Two Bridges,40.70911,-73.99685,Entire home/apt,180,3,18,2019-06-30,0.26,1,72 +1739847,Welcome to a beautiful Quiet Bronx.,8989844,Ronald,Bronx,Soundview,40.82138,-73.87603,Private room,45,3,53,2018-08-18,0.82,1,249 +1740311,"LARGE PRIVATE BED + BATH, LES",9162713,Sarah,Manhattan,Lower East Side,40.72105,-73.98519,Entire home/apt,300,2,65,2019-06-28,0.96,1,350 +1741622,Cozy NY-style 1BDRM Apartment UES.,652092,Art,Manhattan,Upper East Side,40.76358,-73.95895,Entire home/apt,90,80,20,2016-10-31,0.29,1,203 +1741745,Private room in East Harlem,1845333,Annabel,Manhattan,East Harlem,40.79858,-73.93585,Private room,95,1,0,,,1,0 +1742471,View of Empire State Building!,2127723,Tavia,Queens,Sunnyside,40.74609,-73.91406,Entire home/apt,140,2,40,2019-05-20,0.60,1,20 +1742610,Studio in the Upper East Side ,2548224,Melissa,Manhattan,Upper East Side,40.78031,-73.94653,Entire home/apt,123,5,14,2019-05-30,0.20,1,0 +1742654,High Floor apt.near Columbus Circle,9173924,Jon,Manhattan,Hell's Kitchen,40.76708,-73.986,Entire home/apt,200,2,119,2019-07-07,1.89,1,216 +1743116,Cozy Room in Astoria,8783166,Marinez,Queens,Astoria,40.76549,-73.92934,Private room,100,3,4,2019-06-02,0.07,2,364 +1743379,Spacious Historic Williamsburg 2/1.5 Townhouse,9177920,Irie,Brooklyn,Williamsburg,40.70982,-73.9642,Entire home/apt,250,3,144,2019-07-05,2.06,1,128 +1744216,Prime Williamsburg Large bedroom for 1or2 people,2480939,Charles,Brooklyn,Williamsburg,40.71973,-73.96071,Private room,85,1,221,2019-06-26,4.10,3,206 +1744941,Charming One Bedroom,6544987,Timothy,Manhattan,Kips Bay,40.74148,-73.98304,Entire home/apt,100,3,3,2015-09-10,0.05,1,0 +1745358,Spacious and Chic Times Square 1 Bedroom,9186542,Soren,Manhattan,Hell's Kitchen,40.765,-73.98904,Entire home/apt,109,2,26,2019-05-18,0.49,1,139 +1745430,Bohemian 2BR DuplexLoft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72569,-73.94054,Entire home/apt,159,30,6,2019-06-10,0.10,52,310 +1745658,1 Bedroom in Greenwich Village,9187795,James,Manhattan,Greenwich Village,40.73236,-73.9992,Entire home/apt,260,5,13,2018-10-25,0.21,1,167 +1746726,"Chelsea NYC luxury 2 bed/2 bath, garden apt",4051126,Kris,Manhattan,Chelsea,40.74188,-73.99729,Entire home/apt,555,3,111,2019-07-03,1.63,1,191 +1747405,"Spacious, Cozy NYC Apartment - 1 Minute to Subway!",9117590,Samantha,Manhattan,East Harlem,40.80012,-73.94087,Private room,87,2,235,2019-06-29,3.37,1,23 +1747833,Affordable Clean Private Room NYC ,9197101,Alex Nova York,Bronx,Mount Eden,40.84367,-73.91718,Private room,43,2,11,2014-09-28,0.16,1,338 +1748189,UPPER EAST SIDE 1BR APT - CENTRAL,1411399,Carlos,Manhattan,Upper East Side,40.77219,-73.95073,Entire home/apt,199,1,29,2019-05-29,0.42,5,339 +1750248,"Priv room in 3 bdrm apt - Room ""A""",9207223,Ryan,Manhattan,Harlem,40.80247,-73.94531,Private room,90,2,17,2015-09-01,0.24,3,177 +1750527,"Modern, Sunny Duplex PENTHOUSE w/ BALCONY",3336010,Dahlia,Brooklyn,Bedford-Stuyvesant,40.69194,-73.95952,Entire home/apt,195,3,78,2019-05-12,1.13,1,312 +1750679,THE LINCOLN PARLOR,9209820,Althea,Brooklyn,Crown Heights,40.66946,-73.95008,Entire home/apt,185,3,115,2019-06-08,2.09,3,314 +1752112,NYC Central Park family apt - 3bdr,5862053,Alexana,Manhattan,Upper West Side,40.78952,-73.98097,Entire home/apt,400,7,19,2019-04-27,0.28,1,46 +1752206,Elegant 1b Near Everything,5243858,Yvonne,Manhattan,Chelsea,40.74314,-73.9957,Entire home/apt,200,2,144,2019-07-05,2.07,1,263 +1753671,Big quiet Sunny room in Upper East Side,4500999,Aaron,Manhattan,East Harlem,40.79692,-73.94434,Private room,100,1,41,2019-06-02,0.87,2,355 +1755484,Museum Mile Central Pk- Madison Ave,9232106,Lynne,Manhattan,Upper East Side,40.77648,-73.96126,Entire home/apt,225,4,10,2019-05-28,0.17,1,348 +1755844,Brooklyn Stunning Event Space.,2715012,Maurice,Brooklyn,Crown Heights,40.67247,-73.93616,Entire home/apt,450,1,9,2019-03-30,0.25,3,364 +1758391,"Sunny Room, Only 1 Block to Subway!",9234456,Angelo,Brooklyn,Bedford-Stuyvesant,40.69696,-73.93577,Private room,80,3,112,2018-01-01,1.61,2,0 +1759154,BEST Bushwick 1 Bedroom - 15 min to Manhattan,8998154,Gordon,Brooklyn,Bushwick,40.69366,-73.92281,Entire home/apt,89,4,123,2019-06-17,1.76,2,18 +1759462,Modern/Renovated/Best EV Location!!,9250406,Simon,Manhattan,East Village,40.72714,-73.98397,Entire home/apt,179,4,127,2019-05-28,1.83,1,17 +1759526,Lovely Room in Awesome Apartment - Fun/Convenient,104250,Yair,Manhattan,Chelsea,40.74563,-73.99325,Private room,90,3,6,2019-06-03,0.10,1,11 +1762513,"2bd/2bth, drmn, 1 block from subway in LIC",9264606,Jeremy,Queens,Long Island City,40.74849,-73.94947,Entire home/apt,275,7,0,,,1,0 +1762852,Charming and Cozy Bedroom in Artists Colony,173997,Beth,Brooklyn,Williamsburg,40.70942,-73.95302,Private room,35,2,3,2017-06-24,0.12,2,0 +1763209,"10mins to Manhattan, 59th St, 17mins Times Square.",9268156,DeLex,Queens,Astoria,40.76451,-73.92942,Private room,86,2,107,2018-11-01,1.58,1,0 +1763333,"Cozy 1 BR Apt - Sunnyside, Queens",9268805,David,Queens,Sunnyside,40.74244,-73.91676,Entire home/apt,95,1,41,2016-06-13,0.59,2,177 +1763736,Charming Upper West Side 1 Bedroom,1304097,Edon,Manhattan,Upper West Side,40.78448,-73.97386,Private room,116,1,43,2018-08-01,0.63,1,0 +1763956,Nice cozy bedroom with cool views in Hell's kit..!,9271872,Anthony,Manhattan,Hell's Kitchen,40.76421,-73.99115,Private room,80,5,62,2019-06-23,1.72,2,23 +1766846,Newly Renovated East Village Private Guest Studio,5586949,S & G,Manhattan,East Village,40.731,-73.98427,Entire home/apt,110,1,233,2019-07-06,3.39,2,17 +1767037,Small Cozy Room Wifi & AC near JFK,9284163,Antonio,Queens,Woodhaven,40.68968,-73.85219,Private room,29,2,386,2019-06-19,5.53,3,50 +1771965,Fully furnished 2 Bedrooms floor-through apartment,9306716,Sophie,Manhattan,Harlem,40.80266,-73.94728,Entire home/apt,200,60,74,2019-04-14,1.08,1,233 +1776732,2000 sqf Duplex in Townhouse,7379093,Francesca,Manhattan,Upper West Side,40.78852,-73.96746,Entire home/apt,390,5,108,2019-07-06,2.63,2,156 +1777007,Space For guest,3980927,Aude,Manhattan,Battery Park City,40.71078,-74.01623,Shared room,55,1,205,2019-06-15,3.04,1,326 +1777197,( Hostal ) 1 full size Mattress (Top Bunk),2793778,Fernando,Queens,Forest Hills,40.71697,-73.83396,Shared room,75,5,63,2019-05-19,0.91,5,19 +1777674,Charming space in lively neighborhood.,6327260,Joseph,Brooklyn,Crown Heights,40.67528,-73.95741,Private room,75,1,0,,,1,58 +1778294,Sweet Apartment on Quiet Block,367815,Liz,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95548,Entire home/apt,120,7,39,2019-06-22,0.91,2,50 +1780748,Sunny 1 bedroom In The Heart of NYC,9293512,Pk,Manhattan,Murray Hill,40.74881,-73.97234,Private room,143,2,37,2018-12-08,0.53,1,364 +1781052,CELEBRATE NEW YEAR'S EVE IN NYC,9348961,Colleen,Manhattan,Midtown,40.76456,-73.98233,Entire home/apt,250,3,1,2016-01-03,0.02,1,0 +1781697,Beautiful 1 bdrm in 2 bdrm apt,1482208,Allison,Brooklyn,Williamsburg,40.71284,-73.93965,Private room,99,3,19,2018-06-28,0.41,2,310 +1781786,Charming 1BR ,9352452,Zuffina,Manhattan,Harlem,40.80395,-73.95519,Entire home/apt,150,3,50,2019-05-07,0.74,1,152 +1782079,LOFT Private Room - MOVIE THEATER/GYM/LAUNDRY/ROOF,226697,Adriana,Brooklyn,Bedford-Stuyvesant,40.69009,-73.95314,Private room,55,10,20,2019-05-20,0.29,1,184 +1782437,1800sf Urban Goddess Brooklyn Loft,7880914,Claudia,Brooklyn,Bedford-Stuyvesant,40.69169,-73.9603,Entire home/apt,175,2,85,2019-06-17,1.31,1,287 +1782667,Bushwick Artist Loft - Cozy Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70818,-73.92202,Private room,69,1,142,2019-06-17,2.12,3,329 +1782872,Suite Spot in Tribeca,9358396,Anne,Manhattan,Tribeca,40.71481,-74.00934,Entire home/apt,184,4,22,2018-07-19,0.33,1,12 +1785141,Entire 1 Bedroom in Williamsburg,5481728,Mike,Brooklyn,Williamsburg,40.70658,-73.96759,Entire home/apt,145,2,6,2017-06-11,0.09,1,0 +1785187,Classic Cool Comfortable LES,8222814,Rock,Manhattan,Lower East Side,40.72131,-73.98527,Private room,100,3,210,2019-07-05,3.01,1,256 +1785942,"Private, Cozy Bedroom/ Barclay Ctr",1354796,Natasha,Brooklyn,Prospect-Lefferts Gardens,40.65987,-73.95076,Private room,44,5,79,2019-06-29,1.14,3,251 +1786408,A quite nice bedroom in Greenpoint,9375506,Selim,Brooklyn,Greenpoint,40.72495,-73.95112,Private room,70,3,0,,,1,0 +1787771,CHIC NEW YORK OASIS WITH ROOF DECK!,9381867,Gilleon,Brooklyn,Bedford-Stuyvesant,40.68273,-73.95437,Entire home/apt,185,1,0,,,1,0 +1788989,Sunny and charming Soho 1 bedroom,7607092,Tanja,Manhattan,Nolita,40.72311,-73.99476,Entire home/apt,225,3,10,2016-09-01,0.15,1,0 +1789715,2 BR Apt in Luxury Building - UES,6989380,Shane,Manhattan,Upper East Side,40.78277,-73.95164,Entire home/apt,199,2,2,2014-10-19,0.03,1,0 +1791105,Harlem Oasis,8535372,Ephraim,Manhattan,Harlem,40.81157,-73.95335,Private room,60,1,57,2019-05-24,0.91,1,301 +1793091,Private Studio Museum Block UWS,9407785,Ana Maria,Manhattan,Upper West Side,40.77631,-73.97953,Entire home/apt,175,3,258,2019-06-25,3.80,1,235 +1793411,Union Square/East Village Apartment,2273886,Ki,Manhattan,East Village,40.7312,-73.98857,Entire home/apt,199,5,4,2015-12-01,0.06,1,0 +1794250,"Large, bright Williamsburg room",7757648,Ana,Brooklyn,Williamsburg,40.70683,-73.95375,Private room,65,1,10,2019-05-20,0.44,1,73 +1796722,Effortlessly Chic WILLIAMSBURG BK,2140820,Cory,Brooklyn,Williamsburg,40.71295,-73.93874,Entire home/apt,190,2,11,2019-06-15,0.24,1,331 +1797025,Charming Spacious 1 Bdrm Apt,9340104,Mike,Brooklyn,Crown Heights,40.67204,-73.95147,Entire home/apt,107,3,143,2019-06-17,2.07,1,23 +1798210,NYC Super Cool East Village 1 BD,9430658,Maegan,Manhattan,East Village,40.72878,-73.97854,Entire home/apt,150,1,26,2016-09-05,0.38,1,0 +1798271,Spacious center hall colonial,9430973,Donna,Staten Island,Woodrow,40.53884,-74.19826,Entire home/apt,700,7,0,,,1,0 +1798500,DOMINIQUE'S NY*Wanderlust room/Metro/Bronx Zoo/Gdn,310670,Vie,Bronx,Co-op City,40.86317,-73.82494,Private room,75,2,32,2019-01-01,0.46,13,363 +1801036,Private room with sleeping loft,8200820,Valerie,Brooklyn,Williamsburg,40.7187,-73.95133,Private room,45,2,14,2014-02-01,0.20,2,36 +1801130,"Perfect Brooklyn Stay, Apt for 4",9443112,Isaac,Brooklyn,Park Slope,40.67749,-73.98031,Entire home/apt,179,2,15,2015-08-07,0.22,1,0 +1802584,YOUR PRIVATE COZY 1Br + 15min from Manhattan,2961266,John,Queens,Sunnyside,40.73747,-73.9248,Entire home/apt,110,1,92,2019-07-03,6.30,2,147 +1802838,Industrial Modern 1 Bedroom - Prime Williamsburg,2019832,Lauren,Brooklyn,Williamsburg,40.71875,-73.94935,Entire home/apt,245,2,14,2019-05-20,0.76,1,65 +1803165,Huuuge Sunny Central Park REAL 2 bedroom 1.5 baths,9453400,Lo,Manhattan,Midtown,40.76391,-73.9782,Entire home/apt,799,6,40,2018-09-01,0.58,1,365 +1803279,Near Subway Sunny Spacious Room in NYC,7239405,Katy,Manhattan,Morningside Heights,40.81569,-73.96058,Private room,100,2,12,2019-03-31,0.17,1,252 +1805150,nice room in bedstuy B,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68366,-73.95009,Private room,61,1,71,2019-07-04,1.06,15,314 +1805261,Flat Iron 2BD Beautiful Apt ,9462127,Krista,Manhattan,Flatiron District,40.74107,-73.98487,Entire home/apt,475,1,0,,,1,0 +1806138,Brooklyn Heights One Bedroom Loft,8423479,Sherief,Brooklyn,Brooklyn Heights,40.7001,-73.99183,Entire home/apt,275,5,16,2018-08-28,0.23,1,12 +1806378,Mayor's Mansion - Fort Greene,1929442,Claudia And Leo,Brooklyn,Fort Greene,40.68585,-73.97016,Entire home/apt,250,4,134,2019-07-02,1.95,1,222 +1806651,Bright and Airy Brooklyn Loft,3267818,Allison,Brooklyn,Williamsburg,40.70498,-73.92868,Entire home/apt,120,3,2,2015-01-02,0.03,1,0 +1807106,Stunning Limestone 1 Bdrm Flat,9223085,Danielle,Brooklyn,Crown Heights,40.67191,-73.93997,Entire home/apt,135,3,190,2019-06-25,2.77,1,267 +1807757,"SUNNY,SUPER CLEAN WEST VILLAGE APT",9473928,Hakan,Manhattan,West Village,40.73246,-74.00215,Entire home/apt,199,10,4,2019-01-02,0.06,1,3 +1808497,Queen size room in Brooklyn,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69023,-73.94628,Private room,75,1,19,2019-06-22,0.29,5,289 +1808550,Invitation to travelers,7557833,Christine,Brooklyn,Bedford-Stuyvesant,40.69096,-73.94613,Private room,75,7,30,2019-02-16,0.43,5,216 +1809547,"Priv room in 3 bdrm apt - Room ""B""",9207223,Ryan,Manhattan,East Harlem,40.80126,-73.9454,Private room,75,3,22,2016-01-05,0.32,3,177 +1810640,R & R In Harlem,4572968,Na'Im,Manhattan,Harlem,40.81748,-73.94539,Private room,140,1,0,,,1,365 +1811446,Private Room,9490594,Brian,Manhattan,Chelsea,40.74166,-73.99892,Private room,90,30,83,2017-10-23,1.20,1,282 +1812111,Spacious Parkside View Bedroom,2621935,Jennifer,Manhattan,Harlem,40.8145,-73.94962,Private room,80,1,1,2015-11-16,0.02,1,0 +1813681,East Williamsburg Clean Apartment,9486005,Nikki,Brooklyn,Williamsburg,40.71261,-73.94154,Entire home/apt,115,2,2,2016-02-12,0.05,1,0 +1813829,Enjoy Harlem Renassiance Sunny Room,9501531,Andre,Manhattan,Harlem,40.82519,-73.9453,Private room,60,1,93,2019-07-02,1.34,3,358 +1814010,"Large, Private 1BR in Noho/Nolita/Soho",3257486,Drew,Manhattan,NoHo,40.72644,-73.9923,Entire home/apt,175,2,25,2018-12-29,0.36,1,273 +1814279,Urban Jungle in Bedford Stuyvesant,6841194,Eric,Brooklyn,Bushwick,40.68909,-73.9173,Entire home/apt,125,2,240,2019-06-11,3.53,2,242 +1815211,":: Spacious 1bedroom, great loca ::",1572271,Ilana,Manhattan,Gramercy,40.73689,-73.98451,Entire home/apt,185,1,80,2018-01-02,1.16,1,0 +1815505,Peaceful Oasis. 25 mins. Manhattan,9509269,Carlos,Queens,Briarwood,40.71594,-73.82264,Private room,56,5,80,2019-06-08,1.16,2,298 +1817510,Skylight BR in Gorgeous Rooftop Apt,6957798,Charisse,Brooklyn,Bushwick,40.69048,-73.92193,Private room,64,1,336,2019-06-28,4.83,1,133 +1817905,Amazing views in Williamsburg Condo,9520082,Mark,Brooklyn,Williamsburg,40.71454,-73.94965,Entire home/apt,300,2,10,2019-06-08,0.15,1,214 +1818411,HUGE 2bdrm LOFT in NOHO/East Vill!,9522475,Liam,Manhattan,NoHo,40.72569,-73.99227,Entire home/apt,455,30,93,2019-01-03,1.36,2,332 +1818420,Budget Friendly & Spacious,9522524,Nancy,Brooklyn,Canarsie,40.64738,-73.89163,Private room,37,5,54,2019-07-03,0.78,5,353 +1818820,Urban Cottage in Williamsburg BK,9524360,Michael,Brooklyn,Williamsburg,40.71618,-73.94189,Entire home/apt,193,3,164,2019-06-30,2.39,2,256 +1819623,Private room in sunny Bedstuy apartment,159011,Michael,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94161,Private room,53,3,35,2019-06-21,0.72,1,113 +1820858,Large Comfortable Studio in Chelsea,3609524,Nayef,Manhattan,Chelsea,40.74386,-73.99541,Entire home/apt,161,2,8,2016-07-29,0.18,1,0 +1820931,Gorgeous large 1 bedroom apt for March- April.,3889301,Marek,Manhattan,Washington Heights,40.85557,-73.93641,Entire home/apt,99,7,3,2018-04-08,0.04,1,0 +1821541,Large 2BR apartment East Village,2208993,Chris,Manhattan,East Village,40.7221,-73.98356,Entire home/apt,420,1,53,2019-04-28,1.04,3,250 +1823141,Large 1 BR apartment in the LES!,3981706,Leo,Manhattan,Lower East Side,40.72018,-73.98839,Entire home/apt,92,2,0,,,1,0 +1824808,LOCATION LOCATION LOCATION Abigail,1146958,Liz,Manhattan,Gramercy,40.73679,-73.98177,Entire home/apt,195,30,104,2019-04-06,1.51,4,333 +1825949,"Lovely Bedroom - Bed Stuy, Brooklyn",9554965,Jenelle & Michael,Brooklyn,Bedford-Stuyvesant,40.68385,-73.92349,Private room,81,1,36,2016-01-02,0.53,1,0 +1826701,Just like home & more in Rm #2,6632440,Emmett,Manhattan,Harlem,40.82557,-73.95514,Private room,65,7,9,2019-05-21,0.14,2,332 +1827525,Huge Room with Private Bathroom,9470293,Lana,Brooklyn,Flatbush,40.65083,-73.96101,Private room,70,3,3,2016-07-03,0.04,1,188 +1827723,2 bdr NYC duplex w balcony,9563216,Aimee,Manhattan,Gramercy,40.73285,-73.98245,Entire home/apt,400,2,40,2019-05-28,0.63,1,190 +1827962,Bright & cosy 1 bedroom apartment,9564410,Ines,Brooklyn,Williamsburg,40.71766,-73.95634,Entire home/apt,170,3,61,2019-07-06,0.90,1,190 +1828063,••BEST Manhattan Downtown Location!!••,9339714,Jessica,Manhattan,East Village,40.72982,-73.98532,Entire home/apt,175,2,53,2018-01-01,0.79,2,0 +1830244,Cool and spacious room-Approx 150 yard from LTrain,5309364,Michael,Brooklyn,Bushwick,40.68135,-73.9046,Private room,41,3,7,2017-09-04,0.11,1,0 +1831227,Brownstone Penthouse Apartment,6499364,David,Manhattan,Harlem,40.80964,-73.94098,Entire home/apt,149,4,35,2019-06-19,0.52,1,16 +1832120,Heart of Williamsburg,7195403,Emily,Brooklyn,Williamsburg,40.71216,-73.96274,Private room,87,3,85,2019-06-17,1.35,2,38 +1834738,Luxury Contemporary Central Home,9593224,Ian,Manhattan,Chelsea,40.73865,-73.9962,Entire home/apt,300,5,0,,,1,0 +1835367,"Washer, Marble Bath, Yard near Subways, High Line",7245581,Michael,Manhattan,Chelsea,40.75,-73.99721,Entire home/apt,92,110,13,2019-03-09,0.21,19,327 +1836381,Bushwick / Bed Sty Retreat,9600781,Brian,Brooklyn,Bedford-Stuyvesant,40.69168,-73.932,Private room,85,2,0,,,1,0 +1839231,Great Apt-Heart of East Village! ,9613050,Sinead,Manhattan,East Village,40.73135,-73.98298,Entire home/apt,150,1,0,,,1,0 +1839341,Modern Waterfront 2Bed Williamsburg,9610339,Cris,Brooklyn,Williamsburg,40.71817,-73.96401,Entire home/apt,300,5,14,2015-02-06,0.22,1,188 +1839818,"1B in NYC - East Village, Manhattan",9615574,Gwen,Manhattan,Stuyvesant Town,40.73196,-73.97932,Entire home/apt,139,5,27,2017-07-21,0.48,1,0 +1841356,Cozy spacious 1 bed in Murray Hill,9622750,Taran Pal,Manhattan,Kips Bay,40.74392,-73.9811,Private room,90,3,12,2016-03-08,0.18,3,0 +1842739,Large Eco bedroom on the River,8976567,Y&Y,Manhattan,Kips Bay,40.73544,-73.97465,Private room,118,5,51,2019-06-10,0.76,1,201 +1843034,SPECIAL NEW YEAR'S LUXURIOUS MANHATTAN APT,9630447,Lois,Manhattan,Midtown,40.76547,-73.97729,Entire home/apt,295,2,0,,,1,0 +1843108,HappyCozy GuestSuite w/ Great Energy close to JFK,2021121,Megan,Brooklyn,Cypress Hills,40.6784,-73.89362,Entire home/apt,125,1,319,2019-07-08,8.52,1,357 +1843674,Self contained ground level apt,9632747,Mick,Brooklyn,Bedford-Stuyvesant,40.68674,-73.95392,Entire home/apt,122,7,122,2019-06-17,1.91,2,364 +1843955,Spacious Midtown Manhattan room,9634183,Ayse Sera,Manhattan,Midtown,40.76129,-73.96869,Entire home/apt,280,3,21,2016-10-12,0.34,1,98 +1844088,Renovated Studio Midtown East,1512462,Evan & Maria,Manhattan,Midtown,40.7525,-73.96492,Entire home/apt,215,4,130,2019-05-31,1.92,2,270 +1844705,Lux Doorman by 11 trains,9637768,Reginald,Brooklyn,Boerum Hill,40.68897,-73.98765,Private room,89,90,47,2015-12-11,0.73,1,365 +1844792,Clean Cute and Cozy Harlem Apt,9638204,Teresa,Manhattan,Harlem,40.82097,-73.93765,Private room,130,1,1,2016-09-11,0.03,2,0 +1844847,"Serene, Authentic Artist's Loft",1340205,Kali,Brooklyn,Bushwick,40.70714,-73.9216,Entire home/apt,201,2,8,2019-06-24,0.12,1,177 +1846100,Cosy Brooklyn NYC One Bedroom in Garden Level,9644289,Carol-Anne,Brooklyn,East Flatbush,40.64469,-73.9469,Private room,119,2,23,2018-10-31,0.34,1,311 +1846528,East Village - 180º City View & Private Balcony,8951505,Esther & Aaron,Manhattan,East Village,40.72369,-73.9753,Entire home/apt,103,2,29,2019-06-28,0.86,1,55 +1846580,Park Slope Bedroom in Eccentric New York Apartment,9646158,Frederick,Brooklyn,South Slope,40.66516,-73.9794,Private room,72,2,166,2019-07-02,2.49,1,78 +1847096,Beautiful 1BR in East Village!,3952560,Camille,Manhattan,East Village,40.72969,-73.98151,Entire home/apt,169,5,9,2016-06-05,0.13,1,0 +1847261,AUTHENTIC TRIBECA LOFT NEAR SOHO,315654,Genevieve,Manhattan,Tribeca,40.71417,-74.00678,Entire home/apt,240,3,60,2019-05-04,0.91,1,348 +1847389,Beautiful BK 1 Block From Subway,9371210,Shane,Brooklyn,Carroll Gardens,40.67522,-73.99978,Entire home/apt,180,2,29,2019-06-30,0.63,1,45 +1847434,Beautiful warm duplex apartment,9632747,Mick,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95473,Entire home/apt,150,7,108,2019-06-17,1.72,2,359 +1850695,Great Manhattan apartment,9665594,Roberto,Manhattan,Morningside Heights,40.80738,-73.95855,Entire home/apt,120,5,4,2017-10-06,0.07,1,0 +1851767,Luxurious Brownstone Duplex w Outdoor Space,173980,Will And Jo,Brooklyn,Bedford-Stuyvesant,40.69322,-73.94581,Entire home/apt,345,3,181,2019-06-28,2.69,2,213 +1851926,Studio in the Family Brownstone,9671392,Dorcas,Brooklyn,Bedford-Stuyvesant,40.6889,-73.92469,Entire home/apt,95,3,134,2019-06-21,2.00,1,281 +1853765,"Pre-War - Subway,Park's & Museum's",416918,Kimberly,Manhattan,Upper East Side,40.77593,-73.94927,Entire home/apt,550,1,0,,,1,0 +1855846,Unshared Apt Cozy One Bedroom,9685977,Sherry,Manhattan,Harlem,40.82597,-73.95102,Entire home/apt,150,5,29,2019-05-18,0.43,1,260 +1856027,"Hip, Brick East Village Apartment",267955,Peter,Manhattan,East Village,40.72485,-73.98349,Private room,95,3,97,2019-06-24,1.45,1,11 +1856261,Private room in Center of Manhattan,9407818,Anthony,Manhattan,Hell's Kitchen,40.76254,-73.98712,Private room,90,1,61,2019-06-25,1.04,1,316 +1856627,Labor Day in Brooklyn Room Stay,9689041,Jay,Brooklyn,Crown Heights,40.67143,-73.94929,Private room,175,5,0,,,1,359 +1856803,1BR Priv. East Village Apt Sleeps 4,485738,Ross,Manhattan,East Village,40.72335,-73.98549,Entire home/apt,225,3,10,2016-09-07,0.15,1,0 +1856914,Luxury Apartment a walk to the park,1010940,Amber,Manhattan,Upper East Side,40.76906,-73.9517,Entire home/apt,240,5,6,2015-07-13,0.10,1,0 +1859901,Prime East Village Spacious 1 BED,9702964,Amanda,Manhattan,East Village,40.72394,-73.98941,Entire home/apt,150,4,43,2018-12-30,0.68,1,188 +1860838,Affordable Private Room in NYC! ,8276592,Alex,Manhattan,Washington Heights,40.84278,-73.93725,Private room,44,3,79,2019-06-23,1.15,1,191 +1861281,Carol,9709464,Jessica,Manhattan,East Village,40.72898,-73.98051,Private room,1700,1,0,,,1,0 +1861493,1 BR Penthouse with Private Terrace,9710466,Kristie,Manhattan,Upper West Side,40.78618,-73.97339,Entire home/apt,299,4,38,2018-01-01,0.56,1,3 +1863930,2nd@THROOP MANSION ,3351261,Kris,Brooklyn,Bedford-Stuyvesant,40.68864,-73.94166,Entire home/apt,120,1,93,2018-04-29,1.51,1,0 +1864061,"2 Br Condo: Elegant, Amazing Views!",9720494,Coats,Manhattan,Hell's Kitchen,40.75562,-73.99736,Entire home/apt,525,5,42,2019-05-25,0.61,1,80 +1864757,3+ Bedroom Steps to Park Avenue,194918,David,Manhattan,Upper East Side,40.77585,-73.95566,Entire home/apt,600,3,46,2019-05-27,0.67,1,210 +1865336,Private bedroom in awesome loft apt,9725785,J.D. & Stephanie,Brooklyn,Williamsburg,40.71338,-73.96833,Private room,88,1,220,2019-06-21,3.53,2,100 +1865884,Harlem 1BR - 3 blocks to subway!,1753078,Abby,Manhattan,Harlem,40.80491,-73.94752,Entire home/apt,139,5,0,,,1,0 +1866051,1 BR in Luxury Chelsea Doorman Bldg,9729421,Brian,Manhattan,Chelsea,40.74386,-74.00106,Entire home/apt,200,2,2,2016-03-13,0.05,1,0 +1869202,Cozy & Sunny central Manhattan APT!,5008954,Mich,Manhattan,Midtown,40.7582,-73.96692,Entire home/apt,100,2,19,2016-02-20,0.28,1,0 +1869432,West Village/SOHO Pretty Apartment,9744172,Melissa,Manhattan,SoHo,40.72838,-74.00462,Entire home/apt,209,2,7,2018-01-01,0.10,1,265 +1869467,Carroll Gardens Brownstone Flat,376084,Mary,Brooklyn,Carroll Gardens,40.68283,-73.99813,Entire home/apt,240,3,14,2019-05-27,0.21,1,199 +1869685,Cozy apartment available!,9745149,Idoline,Brooklyn,Bedford-Stuyvesant,40.68185,-73.95336,Entire home/apt,90,7,8,2019-05-10,0.35,2,301 +1870228,Long Island City Home 1.!,4378763,Antonio,Queens,Long Island City,40.75283,-73.92915,Private room,73,2,97,2019-06-09,1.44,3,359 +1871261,Big room only 90. Great location.,9751988,Asuka,Manhattan,Chelsea,40.74599,-73.99775,Private room,90,6,4,2015-12-28,0.07,1,0 +1871311,Times Square Modern Apartment,2808971,Frederic,Manhattan,Hell's Kitchen,40.76316,-73.99358,Entire home/apt,200,2,6,2019-06-09,0.09,1,20 +1872838,Clean & Cozy 1BD,4693453,Natalie,Brooklyn,Crown Heights,40.67593,-73.95885,Entire home/apt,94,20,46,2019-02-26,0.72,1,0 +1873531,Entire Apartment in Nolita/LES,9762099,Mary,Manhattan,Lower East Side,40.71845,-73.99326,Entire home/apt,145,1,0,,,1,0 +1876811,Sweet Union Square/ Gramercy Studio,9774018,Dan,Manhattan,Gramercy,40.7366,-73.98703,Entire home/apt,199,2,240,2019-07-02,3.49,1,152 +1876969,Penthouse in Bedford Stuyvesant ,9582999,Shane,Brooklyn,Bedford-Stuyvesant,40.68305,-73.9419,Entire home/apt,150,1,0,,,1,0 +1877255,"PRIVATE Room, located on Central MANHATTAN***",7748646,Denise,Manhattan,Upper East Side,40.7789,-73.95311,Private room,85,3,134,2019-06-18,1.96,1,108 +1878642,"New York City, Manhattan Modern Apartment",9782866,Ronald,Manhattan,Murray Hill,40.74855,-73.977,Entire home/apt,195,4,31,2019-07-01,0.46,1,78 +1878692,Andrea's bohemian pied-a-terre,9782676,Andrea,Manhattan,Greenwich Village,40.72934,-74.00075,Entire home/apt,173,5,143,2019-06-26,2.13,1,144 +1878965,Gorgeous 2BR Flex Loft w/NYC views,7503643,Vida,Brooklyn,Greenpoint,40.72589,-73.94055,Entire home/apt,159,30,5,2019-01-01,0.07,52,346 +1880539,Room in spacious charming loft,9790609,Naomi,Brooklyn,Williamsburg,40.71216,-73.96615,Private room,85,3,92,2019-06-28,1.57,1,123 +1881556,"Private, Spacious Garden Apartment",9795483,Ayana,Brooklyn,Bedford-Stuyvesant,40.68413,-73.92693,Entire home/apt,120,3,207,2019-06-23,3.04,1,237 +1881586,"Spacious, Sunny, 1br in Midtown East with doorman",9795610,Joel,Manhattan,Midtown,40.75669,-73.9666,Entire home/apt,225,3,1,2018-01-01,0.05,1,0 +1881801,Gorgeous 1.5 Br - 1 block to Subway-9 min to NYC!,8292927,Christian,Brooklyn,Williamsburg,40.71394,-73.94193,Entire home/apt,175,2,111,2019-06-23,2.40,2,108 +1881846,Cozy sunny room in the heart of the city,586409,Ahmed,Manhattan,Midtown,40.75375,-73.96556,Private room,130,2,128,2019-05-28,1.88,1,294 +1884398,Art-filled 1BR on best block in WV ,3627583,Brandon,Manhattan,West Village,40.73311,-74.00761,Entire home/apt,249,60,0,,,1,363 +1885385,Large Sunny Room,9522524,Nancy,Brooklyn,Canarsie,40.64448,-73.89222,Private room,38,5,72,2018-03-16,1.11,5,349 +1885714,Nice Bedroom in Central Bushwick!,2673168,David,Brooklyn,Bushwick,40.70343,-73.91343,Private room,53,1,38,2019-05-25,0.55,1,312 +1885826,LOFT-CentralPrk/TimeSq/TheaterDist1,32704,LoftMidtownNYC,Manhattan,Hell's Kitchen,40.76296,-73.98641,Private room,125,4,108,2019-06-23,1.69,1,285 +1886240,June 30 Th to August 31 st,9813233,Tao,Manhattan,SoHo,40.72617,-74.00141,Entire home/apt,245,1,0,,,1,0 +1886294,quitissential brooklyn loft,9813350,Jeremy,Brooklyn,DUMBO,40.70289,-73.98583,Entire home/apt,150,9,0,,,1,0 +1886978,Sunny & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64674,-73.89501,Private room,32,5,85,2019-06-16,1.25,5,155 +1887291,"Private, Peaceful Times Square 1BR",9817733,Ana,Manhattan,Hell's Kitchen,40.75406,-73.99376,Entire home/apt,160,3,158,2019-06-15,2.33,1,188 +1887489,Gracious Brooklyn Limestone,9818634,Lara,Brooklyn,Prospect-Lefferts Gardens,40.66173,-73.95382,Entire home/apt,175,1,0,,,1,0 +1887874,"Big, bright, Williamsburg bedroom",9820312,Brandon,Brooklyn,Williamsburg,40.70711,-73.94457,Private room,40,7,0,,,1,331 +1888006,"14 Min 2Union Sq, Manhattan with Private Entrance",9820942,Erica And Jorel,Brooklyn,Bushwick,40.70565,-73.92254,Private room,58,1,236,2019-06-24,3.45,3,350 +1890851,"Stylish,Sunny, spacious luxury loft",6321587,Bud,Brooklyn,Bedford-Stuyvesant,40.68166,-73.94325,Entire home/apt,149,2,20,2019-06-09,0.31,1,355 +1891017,Awesome Huge Studio - NYC Center,9794342,Pavel,Manhattan,Chelsea,40.75066,-74.00377,Entire home/apt,200,3,35,2016-08-22,0.55,1,0 +1891118,Large Studio apartment,9831559,Cassi,Brooklyn,Bedford-Stuyvesant,40.68285,-73.95112,Entire home/apt,100,4,10,2017-06-06,0.24,1,0 +1891274,Clinton Hill 1BR in charming 2BR,9832158,Daniel,Brooklyn,Bedford-Stuyvesant,40.68442,-73.95639,Private room,50,2,6,2017-10-24,0.12,1,0 +1891798,The Spencer,3196987,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95366,Entire home/apt,97,5,44,2018-12-31,1.50,1,66 +1892319,Private BR in Chelsea (women or couples only),3416555,Anya,Manhattan,Chelsea,40.74793,-74.00691,Private room,84,2,143,2019-05-04,2.13,1,311 +1893225,"Modern, spacious 2 BR, 2 Bath - BK",1297675,Helena,Brooklyn,Prospect Heights,40.68049,-73.97302,Entire home/apt,275,4,19,2018-08-07,0.28,2,205 +1895196,Apt near Museum Mile,9847713,Ksenia,Manhattan,Upper East Side,40.76981,-73.95812,Entire home/apt,99,2,249,2019-06-20,3.63,1,172 +1895457,Greenpoint Studio w/ 2 cats,9848620,Kevin,Brooklyn,Greenpoint,40.72587,-73.94122,Entire home/apt,70,5,2,2016-08-23,0.06,1,26 +1896296,Modern Industrial 1br Loft w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.94201,Entire home/apt,149,30,7,2019-05-31,0.11,52,340 +1897001,"GIANT! Perfect for families, in the center of NYC",9854533,Izzy,Manhattan,Midtown,40.75463,-73.97062,Entire home/apt,399,5,33,2018-03-31,0.49,1,36 +1897447,Large Garden Apartment,9856784,Cristobal,Brooklyn,Gowanus,40.68374,-73.98558,Entire home/apt,145,3,266,2019-07-02,4.49,1,224 +1898110,Charming one bedroom in brownstone,9520651,Vivian,Brooklyn,Gowanus,40.68323,-73.98643,Private room,200,2,0,,,1,365 +1899076,"14 min to Union Square, Manhattan-Sunny Modern Rm",9820942,Erica And Jorel,Brooklyn,Bushwick,40.70505,-73.92281,Private room,59,1,238,2019-05-12,3.46,3,320 +1900616,nice furnished room ground floor,5097458,Nes,Brooklyn,Williamsburg,40.71863,-73.94575,Private room,70,3,30,2018-11-07,0.60,1,364 +1900780,1000 Sq Ft Loft in Flatiron.,9870396,Damian,Manhattan,Gramercy,40.73892,-73.98922,Entire home/apt,249,4,26,2019-01-03,0.62,1,281 +1901357,Spring in Ditmas Park Brooklyn!!!,9872650,Patrick,Brooklyn,Flatbush,40.6406,-73.96195,Entire home/apt,70,4,26,2018-05-19,0.39,1,81 +1903198,Time Square in 30 minutes. Front room.,3158364,Devika,Queens,Sunnyside,40.73673,-73.92526,Private room,45,5,70,2019-06-30,2.23,4,250 +1903249,The heart of Manhattan - NYC,3187531,Michelle,Manhattan,Chelsea,40.74676,-74.00234,Private room,75,1,202,2019-06-05,3.19,1,0 +1903288,Beautiful and spacious bedroom in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.71351,-73.94316,Private room,70,6,1,2017-08-26,0.04,2,0 +1905865,Zen & Cozy 2Bedroom in Williamsburg,2332618,Alison,Brooklyn,Williamsburg,40.70727,-73.95459,Entire home/apt,159,1,15,2019-05-26,0.22,2,194 +1906604,280 Degree Views Of Manhattan (TS),6806417,Jonathan,Manhattan,Hell's Kitchen,40.76019,-73.99586,Entire home/apt,499,4,8,2016-05-25,0.12,1,0 +1906804,Private Master Bedroom w/Garden 14 min to Union Sq,9820942,Erica And Jorel,Brooklyn,Bushwick,40.70561,-73.92515,Private room,55,1,227,2019-06-14,3.31,3,341 +1906993,Lower East Side Penthouse Room w/ Epic Views,4358024,Jonathan,Manhattan,Lower East Side,40.72147,-73.98806,Private room,228,1,2,2019-06-23,0.22,2,365 +1907058,PRIVATE ROOM #2 STARTING AT $67 PER NIGHT,9898029,Anthony,Brooklyn,East Flatbush,40.64913,-73.92525,Private room,67,5,17,2018-09-23,0.25,5,308 +1908767,Large Bedroom in the East Village,9888877,Jessica,Manhattan,East Village,40.72745,-73.98344,Private room,119,3,1,2013-12-15,0.01,1,0 +1908852,Oversized Studio By Columbus Circle,684629,Alana,Manhattan,Upper West Side,40.7706,-73.98919,Entire home/apt,189,1,7,2016-05-06,0.13,1,0 +1908986,NYC UES APT RENTAL,9906590,Evan,Manhattan,Upper East Side,40.77785,-73.9454,Entire home/apt,350,1,0,,,1,0 +1910270,Lovely Brooklyn Brownstone one block from Subway,9912620,Sunita,Brooklyn,Gowanus,40.68396,-73.98914,Entire home/apt,450,30,14,2018-08-08,0.21,1,1 +1911333,A room with private bathroom,9917136,Rani,Brooklyn,Bedford-Stuyvesant,40.67814,-73.92375,Private room,45,29,12,2018-11-11,0.18,3,337 +1911641,"Modern Midtown Apt, close to MoMA",5032943,Michael,Manhattan,Midtown,40.75876,-73.96854,Entire home/apt,175,30,2,2015-03-23,0.04,1,342 +1912357,"Brooklyn apt, hip hood, with a view",9921108,Amy,Brooklyn,Crown Heights,40.67801,-73.96106,Entire home/apt,83,7,2,2014-10-14,0.03,1,0 +1913540,Cute Spacious Studio in Fort Greene,325455,Ashley,Brooklyn,Fort Greene,40.68516,-73.97461,Entire home/apt,120,1,2,2015-10-26,0.03,1,0 +1913864,One Bedroom in an apartment,9745149,Idoline,Brooklyn,Crown Heights,40.67138,-73.96058,Private room,35,30,7,2019-05-04,0.15,2,318 +1914231,"Perfect Harlem, New York Retreat",9709235,Ferris,Manhattan,Harlem,40.81056,-73.943,Entire home/apt,140,2,322,2019-07-01,4.71,1,258 +1914381,Bedroom for one,9909455,Nicole,Manhattan,Harlem,40.82954,-73.94436,Private room,45,4,7,2019-06-23,2.26,1,32 +1914461,"Space, elegance, and comfort - Room",9930219,Arlene,Manhattan,East Harlem,40.80029,-73.94294,Private room,90,3,7,2016-02-27,0.11,1,310 +1914590,Nice clean large Bedroom in Astoria,6194487,Rocio & James,Queens,Astoria,40.76425,-73.90489,Private room,79,1,108,2019-05-30,2.68,3,313 +1914630,"Comfy, Spacious, Modern, Sweet Home",342599,Charlotte And Pierre,Brooklyn,Bedford-Stuyvesant,40.69309,-73.95921,Private room,100,3,15,2018-08-16,0.22,1,0 +1914759,Urban Oasis in Chelsea,9931428,Joseph,Manhattan,Chelsea,40.74276,-74.00016,Entire home/apt,225,2,0,,,1,17 +1914787,Your home away from home in Comfort,9509269,Carlos,Queens,Briarwood,40.71477,-73.82012,Private room,66,5,95,2019-05-25,1.39,2,301 +1917629,Gorgeous duplex 1 BR Brownstone apt,5453550,Christine & James,Brooklyn,Clinton Hill,40.69414,-73.96634,Entire home/apt,140,3,123,2019-06-07,1.80,3,244 +1918693,Lovely Bedrooms in Artist's Home,9947332,Lorelei & Alex,Brooklyn,Clinton Hill,40.68474,-73.9632,Private room,98,4,245,2019-06-10,3.61,1,247 +1918903,Private 2 BR APT: Free WIFI & JACUZZI,5243122,R,Brooklyn,Bedford-Stuyvesant,40.67963,-73.9375,Entire home/apt,140,3,156,2019-04-25,2.36,2,230 +1919647,2 floor Apt w 300sqft Terrace,9951559,Evan,Manhattan,Lower East Side,40.72083,-73.98755,Entire home/apt,195,2,71,2019-06-23,1.04,1,222 +1919766,Full of Harlem Soul & Charm,9501531,Andre,Manhattan,Harlem,40.82438,-73.94332,Private room,60,1,245,2019-07-07,3.60,3,336 +1919896,Sunny 2 bedroom in Prospect/Crown Heights,1345452,Nico,Brooklyn,Crown Heights,40.67689,-73.95878,Entire home/apt,150,5,11,2017-05-25,0.16,1,0 +1920085,Small Room With Private Loft Bed,1229984,John,Queens,Long Island City,40.74404,-73.95233,Private room,40,25,8,2017-06-11,0.12,3,0 +1921859,Adorable 1BD Home with view of NYC,9959323,Lauren,Queens,Astoria,40.77453,-73.92833,Entire home/apt,130,4,17,2017-05-06,0.25,1,347 +1922448,Sunny bedroom in Williamsburg,8740210,Angelica,Brooklyn,Williamsburg,40.71278,-73.94035,Private room,75,3,1,2015-11-13,0.02,1,0 +1922863,Bi-level Loft with a Private Garden,915973,Donald P.,Brooklyn,Williamsburg,40.71715,-73.95527,Entire home/apt,248,3,57,2019-06-06,0.90,1,344 +1923153,Cozy Vintage Inspired East Village,9965028,Sasha,Manhattan,East Village,40.72709,-73.98442,Entire home/apt,450,2,18,2017-01-15,0.28,1,363 +1924645,Sunny Studio in Prime Williamsburg,110958,Ellen,Brooklyn,Williamsburg,40.7161,-73.95074,Entire home/apt,120,14,29,2016-10-04,0.43,1,0 +1925224,"Beautiful, large, charming spot",9946315,Susan,Brooklyn,Williamsburg,40.71758,-73.9543,Entire home/apt,250,8,79,2019-07-01,1.16,1,78 +1925519,Sublet: $490/Wk,2765870,Amarie2131,Manhattan,Lower East Side,40.7193,-73.98986,Private room,80,1,1,2015-11-01,0.02,1,0 +1928556,"Private Apt, Large, Safe / 5mins to TIMES SQUARE",4482351,Zoey,Manhattan,Hell's Kitchen,40.76143,-73.99223,Entire home/apt,140,5,17,2019-04-08,0.25,2,2 +1928570,"Studio Apt. in Williamsburg, Brooklyn, NY",4393792,Jose C.,Brooklyn,Williamsburg,40.71532,-73.94581,Entire home/apt,120,3,5,2018-11-04,0.26,1,0 +1928961,Futon 2.0,9989761,Gaudhi,Manhattan,Harlem,40.80026,-73.95197,Shared room,45,3,229,2019-06-22,3.36,2,312 +1929041,BEST PRICE - WILLIAMSBURG 1 ROOM,9265204,Gianni,Brooklyn,Williamsburg,40.70576,-73.94827,Private room,100,1,1,2015-09-06,0.02,2,44 +1929186,Modern Bright Loft in Clinton Hill,9990552,Susan,Brooklyn,Bedford-Stuyvesant,40.69135,-73.95859,Entire home/apt,175,2,52,2019-07-04,1.26,1,264 +1929321,Quiet 1br in a Mansion!,9991075,Erika,Brooklyn,Clinton Hill,40.68492,-73.96669,Entire home/apt,130,1,16,2017-04-17,0.38,2,0 +1929540,2 floor loft in Gramercy park,6846161,Stefano,Manhattan,Kips Bay,40.73772,-73.98025,Entire home/apt,175,3,9,2014-06-21,0.13,1,0 +1931341,Cozy bedroom on Wall Street,9997988,Jagriti,Manhattan,Financial District,40.70602,-74.0072,Private room,40,1,0,,,1,0 +1931609,Entire Park Slope Townhouse,9442045,Miriam,Brooklyn,Park Slope,40.67982,-73.98005,Entire home/apt,650,2,166,2019-06-24,2.87,1,215 +1932094,"HEART OF NYC! AMAIZING LOCATION!, SUPER ROOM",10001478,Anya,Manhattan,Midtown,40.76135,-73.97785,Private room,85,4,29,2017-04-01,0.42,1,13 +1932110,Manhattan/ LES Short term Stay,10001551,Herman F,Manhattan,East Village,40.72373,-73.99118,Private room,175,30,20,2018-08-21,0.31,1,83 +1932491,Best View/Luxury Building/Time Squ.,10003254,Mac,Manhattan,Hell's Kitchen,40.75887,-73.99475,Private room,105,4,10,2016-06-26,0.20,1,0 +1934444,Havemeyer Holiday,4393358,Cj,Brooklyn,Williamsburg,40.71674,-73.95262,Private room,80,10,5,2014-11-01,0.07,1,0 +1934512,Penthouse studio w/ skylights and skyline views,2317686,Bryan,Brooklyn,Clinton Hill,40.6912,-73.96686,Entire home/apt,150,7,37,2019-06-09,0.60,1,39 +1934765,"One Bedroom Apt, Suitable for Two",10012271,Karmesha,Bronx,Parkchester,40.83645,-73.86634,Entire home/apt,195,5,1,2015-01-01,0.02,1,0 +1934804,3 Story Brooklyn House - Sleeps 10!,10012421,Deborah,Brooklyn,Clinton Hill,40.69356,-73.96744,Entire home/apt,750,3,32,2019-05-19,1.66,1,141 +1935109,Unique sunny loft in Manhattan!,1319462,Zi Ying,Manhattan,Lower East Side,40.71972,-73.99299,Entire home/apt,249,2,230,2019-06-28,3.39,2,166 +1935175,cute 2BD apt in greenpoint,239829,Lauren,Brooklyn,Greenpoint,40.73419,-73.95493,Entire home/apt,140,7,1,2016-08-16,0.03,1,0 +1935302,COZY and WARM Garden Apartment,10008086,Brandon,Brooklyn,Fort Greene,40.69117,-73.97047,Entire home/apt,180,2,72,2019-07-07,3.12,1,290 +1935826,"Priv room in 3 bdrm apt - Room ""C""",9207223,Ryan,Manhattan,Harlem,40.80688,-73.94932,Private room,90,3,1,2015-10-14,0.02,3,177 +1936633,Great 1BD waterfront City Island NY,10018391,Alex,Bronx,City Island,40.85258,-73.78762,Entire home/apt,120,3,84,2018-12-01,1.26,1,16 +1936772,Private Ground Floor Studio Apt PLUS Driveway,2274545,Kerri & Steve,Queens,Middle Village,40.71576,-73.86268,Entire home/apt,85,2,97,2019-07-01,1.43,1,230 +1937226,Awesome Harlem House 3 bdr 2 floors,8826175,Grover,Manhattan,Harlem,40.80874,-73.94756,Entire home/apt,174,3,177,2019-06-11,2.62,3,165 +1937323,"Hell's Kitchen, close to All",10023559,Judson,Manhattan,Hell's Kitchen,40.76247,-73.99225,Entire home/apt,150,21,2,2015-12-17,0.04,1,203 +1937325,2Br East Village VERY Spacious Apt.,5048868,Matthew,Manhattan,East Village,40.72815,-73.98059,Entire home/apt,295,1,261,2019-06-08,3.82,1,245 +1937761,Modern & Quiet 2bdr Astoria - 2 blocks from Subway,3294551,Michelangelo,Queens,Astoria,40.7582,-73.91687,Entire home/apt,180,3,77,2019-06-11,1.35,1,254 +1939106,Charming 1BR in the East Village,3710931,Stephanie,Manhattan,East Village,40.72997,-73.98497,Entire home/apt,172,1,18,2018-07-16,0.27,1,0 +1939283,Wyckoff Street Garden Apartment,7329934,Laurence,Brooklyn,Gowanus,40.68437,-73.98654,Entire home/apt,130,5,36,2019-06-29,0.53,1,224 +1940534,Big specious room is Manhattan!!!,5164854,Lilia,Manhattan,Harlem,40.82024,-73.93799,Private room,52,7,19,2019-01-31,0.28,8,324 +1940780,Amazing Greenpoint/Williamsburg Apt,576056,Flick,Brooklyn,Greenpoint,40.72318,-73.94931,Entire home/apt,220,1,2,2014-08-03,0.03,1,0 +1941094,XLARGE-Modern-clean master bedroom,2559004,Sergio,Manhattan,East Harlem,40.80447,-73.94034,Private room,50,30,0,,,5,356 +1941435,Sunny Room near all,9917136,Rani,Brooklyn,Bedford-Stuyvesant,40.67769,-73.92303,Private room,37,25,16,2018-12-06,0.24,3,179 +1941439,Private Room next to Park - 5 mins to subways!!,10041857,Veronica,Manhattan,East Harlem,40.79629,-73.94769,Private room,85,2,36,2019-06-26,0.53,1,288 +1941495,"Huge Garden Duplex, 20 min Manhattan!",1430695,"Julia, Anthony, Apollo & Atlas",Brooklyn,Bushwick,40.68626,-73.91324,Entire home/apt,249,3,76,2019-07-05,1.13,1,40 +1942935,Family house in South Park Slope,1479666,Maria,Brooklyn,South Slope,40.66583,-73.98956,Entire home/apt,150,14,10,2016-08-06,0.21,1,0 +1944155,Funky Furnished Studio on Tree-Lined Street,7720086,Henri-Leon,Brooklyn,Fort Greene,40.68605,-73.97517,Entire home/apt,119,6,7,2019-06-11,0.25,1,0 +1944891,Spacious one bedroom apartment,861330,Joseph,Brooklyn,Williamsburg,40.70139,-73.94499,Entire home/apt,49,7,0,,,3,0 +1945115,Beautiful Luxury Room in Central Harlem/Columbia,10061009,Minetta,Manhattan,Harlem,40.80419,-73.95582,Private room,90,4,57,2019-07-05,2.67,1,74 +1947400,1BD Cozy Chelsea Apartment,10071397,Trevor,Manhattan,Chelsea,40.74328,-73.99742,Entire home/apt,200,4,4,2018-08-20,0.06,1,0 +1948494,Amazing 550 Sq Ft Studio Apartment.,9950152,Dawn & Vernon,Brooklyn,East Flatbush,40.63803,-73.94894,Entire home/apt,97,3,177,2019-07-07,2.64,1,272 +1948745,Immaculate 3BR Williamsburg Condo,9535237,Ryan,Brooklyn,Greenpoint,40.72575,-73.95231,Entire home/apt,399,30,13,2016-06-20,0.19,1,363 +1950311,"Bright, cozy East Williamsburg home",8551260,Hannah,Brooklyn,Williamsburg,40.70604,-73.94457,Entire home/apt,151,5,39,2019-06-18,0.58,2,0 +1950318,NYC Theatre District 1 Bdrm Apt ,10074602,Shane,Manhattan,Hell's Kitchen,40.76435,-73.99054,Entire home/apt,200,5,0,,,1,0 +1950588,Newly Renovated One Bedroom,10087095,Brian,Manhattan,Little Italy,40.7193,-73.99781,Entire home/apt,200,3,41,2019-06-10,0.60,1,0 +1950603,Cozy NYC apt. 10min to Central Park,8048803,Daan,Queens,Long Island City,40.75401,-73.91757,Entire home/apt,82,5,2,2015-07-25,0.03,1,0 +1952271,Super Clean 1 bedroom Upper West Side,4259154,Christine,Manhattan,Upper West Side,40.80009,-73.97009,Entire home/apt,130,1,87,2019-07-07,1.42,1,5 +1953636,large private bedroom in shared ap,1294674,Alex,Brooklyn,Fort Greene,40.68508,-73.97393,Private room,69,2,12,2019-06-24,0.18,1,6 +1953928,Huge 2 Bedrooms NYC ,10100413,A,Queens,Astoria,40.76266,-73.91451,Entire home/apt,150,1,89,2019-01-20,1.32,1,148 +1954429,Scenic 1 Bedroom sleeps 4,10102581,Deborah,Manhattan,Washington Heights,40.85516,-73.93717,Entire home/apt,150,4,0,,,1,0 +1954450,Spacious Sunny Designer 1 Bedroom in East Village,2266169,Erika,Manhattan,East Village,40.72187,-73.98083,Entire home/apt,150,2,221,2019-06-18,3.30,1,215 +1954495,East Village gem!,10102809,Jennifer,Manhattan,East Village,40.7281,-73.98671,Entire home/apt,100,3,2,2014-12-19,0.03,1,0 +1954653,FIVE STAR LIGHT-FILLED DUPLEX - PRIVATE DECK,10103520,Graham,Manhattan,Kips Bay,40.74423,-73.97614,Entire home/apt,195,4,30,2019-05-28,0.45,1,4 +1955844,Charming 1BD Apt in Classy Brownstone by Union Sq,1308525,Otilia,Manhattan,Chelsea,40.73925,-73.99359,Entire home/apt,251,5,26,2018-11-23,0.43,1,14 +1956346,THE HEART OF COOL WILLIAMSBURG NYC,5278115,Marc,Brooklyn,Williamsburg,40.71746,-73.9607,Entire home/apt,200,1,1,2015-01-02,0.02,1,320 +1956467,"Big, beautiful, central 1BD in Brooklyn",1500550,Shira,Brooklyn,Prospect Heights,40.67475,-73.96385,Entire home/apt,100,6,5,2017-12-30,0.07,1,0 +1956677,"The ""Humphrey Bogart""",120623,David,Bronx,Port Morris,40.80844,-73.92889,Entire home/apt,140,30,16,2018-09-26,0.24,1,365 +1956726,Colorful 1 Bedroom APT in the East Village,2301618,Monica,Manhattan,East Village,40.7334,-73.98801,Entire home/apt,146,18,34,2018-06-01,0.50,1,0 +1958765,Stylish 1 BR Loft Apt Williamsburg,10123248,Sylvana,Brooklyn,Williamsburg,40.71688,-73.94584,Entire home/apt,250,2,88,2019-05-28,1.31,1,223 +1959024,950 SQ FT ONE BEDROOM + 2 TERRACES,10124193,Courtney,Manhattan,Upper East Side,40.77924,-73.95405,Entire home/apt,499,1,6,2014-10-26,0.10,1,0 +1960045,Loft Bedroom in Luxury Apartment,6655162,Carlos,Brooklyn,Williamsburg,40.71842,-73.94093,Private room,80,31,0,,,1,0 +1960358,Couples and Family Paradise.,10129919,Jorge,Brooklyn,Cypress Hills,40.68528,-73.87819,Entire home/apt,80,3,225,2019-06-30,3.49,2,250 +1961288,Gorgeous Modern Downtown Condo with Stunning Views,1321170,Dave,Manhattan,Lower East Side,40.72139,-73.99271,Entire home/apt,220,2,85,2019-06-20,1.27,1,305 +1961361,Private Master BR in 3 BR Apt,10134825,Kara,Manhattan,Lower East Side,40.71286,-73.98437,Private room,102,2,6,2016-01-02,0.13,4,0 +1961937,Lovely 2 bedroom apartment,3899946,Anna,Manhattan,Harlem,40.8233,-73.95591,Entire home/apt,120,5,8,2016-04-04,0.12,1,0 +1965103,Quiet and Sunny studio in EV,10150931,Pierre,Manhattan,East Village,40.72811,-73.98663,Entire home/apt,170,2,7,2016-09-25,0.11,1,312 +1965712,Lovely large 1-bdrm apt UWS,10153235,Tammie,Manhattan,Upper West Side,40.78122,-73.98473,Entire home/apt,235,1,0,,,1,0 +1965766,LARGE Studio in elevator building!,10153970,Lindsay,Manhattan,Upper East Side,40.76876,-73.95979,Entire home/apt,149,1,1,2016-04-11,0.03,1,0 +1967045,Top Floor Brooklyn Pad 1.5Bd/1Bth,9975193,Julianna & Lawrence,Brooklyn,Park Slope,40.67694,-73.9813,Entire home/apt,180,3,6,2018-07-30,0.13,1,0 +1970017,"Chic & Cheerful Home in Williamsburg, Brooklyn",2052364,Melissa,Brooklyn,Williamsburg,40.71367,-73.95673,Private room,89,1,25,2019-06-16,0.43,1,78 +1970574,Park Slope Townhouse TOP FLOOR,579495,Susi,Brooklyn,South Slope,40.66579,-73.98991,Entire home/apt,199,2,31,2019-06-17,0.52,2,220 +1970697,Lovely & Large Private Queen Bedroom,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69484,-73.9342,Private room,72,5,62,2019-07-01,1.05,6,140 +1970915,Private Backyard! Beautiful 1BR apartment.,10176907,Maria,Brooklyn,Bushwick,40.70022,-73.91441,Entire home/apt,80,7,6,2016-11-14,0.12,1,3 +1971200,Big Room by Times Square,10178252,Tino,Manhattan,Hell's Kitchen,40.76636,-73.98634,Private room,99,3,160,2019-05-31,2.36,1,133 +1971239,BRIGHT AND SPACIOUS 3 BEDROOM WITH GARDEN,1225787,Andres & Mapa,Brooklyn,Crown Heights,40.6713,-73.94329,Entire home/apt,125,30,26,2019-06-25,0.38,1,264 +1971540,Sunny Midtown NYC Room,10179999,Joseph,Manhattan,Upper West Side,40.77021,-73.98721,Private room,150,1,157,2019-06-28,2.49,1,365 +1971635,Adorable Apt on Prospect Park!,10180449,Isabel,Brooklyn,Windsor Terrace,40.65899,-73.97771,Entire home/apt,100,15,0,,,1,0 +1973889,Exposed Brick Wall Bedroom,3020145,Eva,Manhattan,SoHo,40.72493,-74.00193,Private room,106,2,191,2019-06-23,2.81,1,291 +1974700,AMAZING ONE BEDROOM IN MANHATTAN,1556814,Tammy,Manhattan,Harlem,40.81381,-73.94166,Entire home/apt,250,30,19,2019-07-05,0.30,1,318 +1975069,Loft Bedroom in Duplex 3BR & Private Roof,151654,Brad,Manhattan,Greenwich Village,40.72796,-73.99761,Private room,150,2,7,2017-12-02,0.12,1,0 +1975168,Fantastic Williamsburg Waterfront!,1351409,Katie,Brooklyn,Williamsburg,40.70978,-73.96854,Private room,100,3,15,2019-06-04,0.24,1,358 +1975999,Luxury studio,10200352,Marie,Manhattan,Chelsea,40.74163,-73.99857,Entire home/apt,189,3,9,2019-05-13,0.87,1,0 +1976123,Huge Loft with Private Entrance,6547579,Josh,Manhattan,East Village,40.72823,-73.98933,Entire home/apt,1999,1,20,2015-08-20,0.39,1,0 +1977888,East Village Studio Super location,9878261,Sam,Manhattan,East Village,40.72679,-73.98598,Entire home/apt,120,1,73,2019-01-01,1.07,1,49 +1978445,Bedroom in East Williamsburg,8551260,Hannah,Brooklyn,Williamsburg,40.70608,-73.94269,Private room,100,4,3,2014-09-30,0.05,2,0 +1979076,Authentic Factory 1BR w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72539,-73.94074,Entire home/apt,149,30,7,2018-05-04,0.11,52,277 +1979127,East Village Duplex Penthouse,1472225,Rachel,Manhattan,East Village,40.7282,-73.98615,Entire home/apt,480,10,59,2019-05-21,0.87,1,24 +1979506,Cozy duplex on the Upper East side!,10071119,Nora,Manhattan,Upper East Side,40.76838,-73.95481,Private room,100,1,1,2014-01-02,0.01,1,0 +1979579,Best Central Park/NYC View Apt,8219931,Jason,Manhattan,Upper West Side,40.78468,-73.97137,Entire home/apt,300,1,0,,,1,0 +1979744,Bright & Budget Friendly,9522524,Nancy,Brooklyn,Canarsie,40.64605,-73.89382,Private room,33,5,84,2019-06-27,1.25,5,295 +1979848,1 BR in a luxury apt bldg,10217559,Mary Elizabeth,Brooklyn,Park Slope,40.67122,-73.98618,Entire home/apt,175,1,0,,,1,0 +1980179,Best of the East Village Cozy 2 Bedroom,18174,Katya,Manhattan,East Village,40.72862,-73.98885,Entire home/apt,142,1,214,2019-07-05,3.17,1,242 +1981410,Spacious 1 bed near train!,6638763,Terry & Kristen,Queens,Ditmars Steinway,40.77906,-73.91265,Entire home/apt,135,3,38,2019-07-02,0.62,1,243 +1981590,Loft 15 - 20 minutes to Manhattan,10225447,Giovani,Brooklyn,Bushwick,40.69937,-73.91463,Entire home/apt,135,3,164,2019-01-05,2.45,1,325 +1981656,Loft 402 : Photo Studio : Brooklyn,4139790,Harry,Brooklyn,Williamsburg,40.71871,-73.96456,Entire home/apt,350,5,0,,,1,365 +1981669,1 Bedroom Apartment Lefferts Garden,10226006,Ester,Brooklyn,Prospect-Lefferts Gardens,40.66362,-73.94926,Entire home/apt,80,5,19,2018-08-18,0.28,1,0 +1983188,1BR near Columbia / Central Park,1521508,Jose,Manhattan,Upper West Side,40.79859,-73.96078,Private room,80,3,38,2019-06-26,0.59,1,344 +1983466,A Cozy Creative Room for Nomads,2777672,Kalae,Manhattan,Upper West Side,40.80168,-73.96253,Private room,87,2,272,2019-06-16,4.02,3,133 +1983531,Spacious Bright 1 Bedroom East Village Apartment,5586949,S & G,Manhattan,East Village,40.72754,-73.98555,Entire home/apt,450,3,12,2019-01-02,0.19,2,0 +1984390,Big Cozy Studio ,10238618,Zeynep,Manhattan,Upper East Side,40.77556,-73.9483,Entire home/apt,275,2,2,2015-05-08,0.03,1,0 +1984486,Comfortable Brown Stone apartment ,10239152,Joyce,Brooklyn,Crown Heights,40.67468,-73.94184,Entire home/apt,150,2,43,2019-04-27,0.64,1,285 +1985022,Large Light Filled Apartment,10241822,Jessica,Brooklyn,Crown Heights,40.67148,-73.95698,Private room,50,5,3,2019-01-03,0.16,1,0 +1987371,"Williamsburg, prime loction, Brooklyn private room",1525582,Christina,Brooklyn,Williamsburg,40.71971,-73.95998,Private room,79,3,176,2019-06-21,2.63,1,37 +1987546,nice room in bedstuy A,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68248,-73.95149,Private room,60,1,93,2019-04-22,1.38,15,305 +1987584,Home Sweet Room-HOMEY-Queens NYC!!,4113132,Jacqueline & Tyas,Queens,Elmhurst,40.73943,-73.87475,Private room,45,3,49,2019-04-25,0.77,3,307 +1987627,1BD Upper West Side NYC,10251511,Jordan,Manhattan,Upper West Side,40.78918,-73.97927,Entire home/apt,120,2,5,2016-01-01,0.07,1,0 +1987949,3 Bedroom Apt. in Washington Height,10252755,Lauren,Manhattan,Washington Heights,40.84082,-73.93896,Entire home/apt,145,3,1,2014-01-02,0.01,1,0 +1988823,Family Friendly Apt in Quiet Building,10256663,Rachel,Manhattan,Harlem,40.81402,-73.94358,Entire home/apt,175,3,136,2019-07-02,2.00,1,171 +1989731,1br Near Everything in East Village,1674102,Heidi,Manhattan,East Village,40.72886,-73.98036,Entire home/apt,137,7,6,2016-03-25,0.11,1,0 +1989838,Luxury 4 BD NYC Times Sq Apartment,3185905,Patrick,Manhattan,Midtown,40.76316,-73.98109,Entire home/apt,1500,1,0,,,1,0 +1989972,Cozy & Nice Bedroom in an Apt/NYC.,10262420,Cesar,Manhattan,East Harlem,40.78813,-73.94495,Private room,86,4,37,2019-06-30,0.97,1,22 +1992751,Bushwick House,10258336,Angelo,Brooklyn,Bushwick,40.70618,-73.91669,Entire home/apt,90,3,0,,,1,0 +1994398,Spring and Summer in New York - Near Central Park,2719126,Nadia,Manhattan,Midtown,40.76663,-73.98069,Entire home/apt,345,5,19,2019-06-12,0.33,1,192 +1994548,luxury bldg for the coming holiday,10280728,Uri,Manhattan,Roosevelt Island,40.77,-73.94285,Entire home/apt,150,1,0,,,1,0 +1997487,Luxury Doorman 1BR Best part of NY,374305,Pedro,Manhattan,Hell's Kitchen,40.76485,-73.98752,Entire home/apt,250,5,7,2019-06-16,0.32,1,314 +1997957,Winter Fun in Brooklyn!!!,10294443,Shari,Brooklyn,Crown Heights,40.67497,-73.95879,Entire home/apt,105,4,2,2014-12-31,0.03,1,0 +1998026,"Bright, serene apt in Fort Greene/Clinton Hill",10294707,Amanda,Brooklyn,Clinton Hill,40.69025,-73.96704,Entire home/apt,130,2,15,2019-04-21,0.41,1,0 +2000156,Nice & cozy - 15min to Times Square-,3767367,Regina,Manhattan,Upper East Side,40.7838,-73.9482,Private room,90,3,97,2019-07-01,2.39,3,332 +2000576,3BR in a classic 1925 BK Limestone,10263251,Marietta,Brooklyn,Crown Heights,40.66952,-73.94377,Entire home/apt,150,3,154,2019-06-24,2.27,1,218 +2000611,Cute brick wall apt. 2BR,10304755,Michael,Brooklyn,Williamsburg,40.71002,-73.95802,Entire home/apt,150,4,42,2019-06-11,0.62,2,0 +2003180,NEW YORK CITY HOME in MANHATTAN,6716330,Chris,Manhattan,Inwood,40.8639,-73.92808,Entire home/apt,225,3,127,2019-06-08,1.89,3,157 +2003807,UWS MANHATTAN APT FOR SUPERBOWL WE,10317189,Edouard,Manhattan,Upper West Side,40.79321,-73.9694,Entire home/apt,1000,1,0,,,1,0 +2006452,Sunny Filled Room in Williamsburg,4467316,Barbara,Brooklyn,Williamsburg,40.71044,-73.93987,Private room,80,30,4,2019-01-02,0.08,2,254 +2008122,Large 1 Bedroom Apt in Park Slope,10335193,Whitney,Brooklyn,South Slope,40.66928,-73.98662,Entire home/apt,150,1,3,2014-08-01,0.04,1,0 +2008190,Private: The Grey Room,8481125,Thomas,Manhattan,Upper East Side,40.76273,-73.95866,Private room,120,1,12,2016-09-22,0.19,2,206 +2008227,Private Studio in Private Home,9539641,Dianne,Bronx,North Riverdale,40.90804,-73.90005,Private room,53,2,143,2019-06-30,2.13,1,263 +2010624,Sunny and spacious 2 BR apartment,10346273,Yolanda,Brooklyn,Flatbush,40.63524,-73.96602,Entire home/apt,115,30,4,2016-01-15,0.07,1,47 +2010787,Amazing Williamsburg/Greenpoint Apt w/ 2 Terraces!,1859395,Beto,Brooklyn,Williamsburg,40.71861,-73.94362,Shared room,175,1,7,2016-11-26,0.10,1,0 +2010971,Gorgeous 1BR brownstone,4803115,Daniel,Manhattan,Harlem,40.8083,-73.9439,Entire home/apt,150,1,5,2015-08-19,0.08,1,0 +2011212,West Village Charm and Quiet!,7683195,Brenton,Manhattan,SoHo,40.72778,-74.0086,Entire home/apt,162,2,18,2019-06-22,0.26,1,247 +2011692,STAYING IN MANHATTAN ,2933058,Anne,Manhattan,Morningside Heights,40.80446,-73.96366,Private room,95,4,9,2018-10-13,0.13,1,0 +2012104,"Spacious haven near Riverside park, subway, and CU",10352213,Nicole,Manhattan,Morningside Heights,40.81615,-73.96156,Private room,55,2,19,2018-01-08,0.79,2,0 +2012368,Amazing Downtown With Rooftop,1364042,Jake,Manhattan,Chinatown,40.71695,-73.99178,Entire home/apt,117,5,221,2019-06-13,3.27,2,163 +2012424,Thanksgiving in Manhattan Luxury Suite,275744,Xander,Manhattan,Midtown,40.76542,-73.98081,Entire home/apt,175,2,4,2018-11-25,0.12,1,0 +2012750,"LOVELY 1 BEDROOM APT, BATH + KIT+ LIVING ROOM",10355206,Rosa,Queens,Ridgewood,40.70493,-73.90795,Entire home/apt,75,30,64,2015-11-02,0.95,1,178 +2013807,Magic Manhattan with Rooftop,1364042,Jake,Manhattan,Lower East Side,40.71914,-73.99174,Entire home/apt,189,5,220,2019-06-23,3.25,2,271 +2014701,Studio Apt. on Upper West Side,10363037,Molly,Manhattan,Upper West Side,40.78021,-73.9805,Entire home/apt,150,2,7,2016-10-10,0.18,1,0 +2015094,Private room in Manhattan,10364678,Dany,Manhattan,Inwood,40.86888,-73.92059,Private room,45,2,36,2016-06-11,0.57,2,188 +2015168,Cozy 2BD APT close to subway,10365281,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95575,Entire home/apt,190,2,237,2019-07-06,3.70,1,266 +2015586,Wonderful bright Brooklyn apt,7127362,Lydia,Brooklyn,Clinton Hill,40.6841,-73.96691,Entire home/apt,130,5,9,2016-01-06,0.13,1,0 +2016579,Cozy Private room in Brooklyn,8013034,Kenny And Christine,Brooklyn,Bushwick,40.69641,-73.90994,Private room,79,1,13,2018-12-01,0.49,2,315 +2017012,W Village Luxury Apt. (Super Bowl),10373126,Sirous,Manhattan,West Village,40.73967,-74.00933,Entire home/apt,850,3,0,,,1,0 +2017397,☆ DESIGN Spacious ☆ 1 BR Sleeps 4 Brooklyn Museum,2496464,Monica,Brooklyn,Crown Heights,40.66687,-73.95619,Entire home/apt,150,5,68,2019-07-01,1.07,1,202 +2019755,Front Studio in Loft Apartment - Steiner Studios,10383481,Bradley,Brooklyn,Clinton Hill,40.69594,-73.96715,Entire home/apt,100,2,100,2019-07-03,1.49,1,280 +2019927,Beautiful Furnished 1 Bedroom apt; Wash Hts,10384087,Todd,Manhattan,Inwood,40.86317,-73.92873,Entire home/apt,115,1,78,2019-06-21,1.81,1,93 +2020881,2 BR apt in East Village w private patio,10387304,Michael,Manhattan,East Village,40.73003,-73.98576,Entire home/apt,300,2,17,2019-01-02,0.55,2,169 +2021742,Cozy Apt in the heart of Manhattan!,10390993,Danny,Manhattan,Midtown,40.74873,-73.98827,Entire home/apt,159,7,0,,,1,0 +2022126,Midtown Manhattan Apt,10392717,Rick,Manhattan,Midtown,40.74897,-73.98265,Private room,500,5,0,,,1,0 +2022728,Room in Manhattan! 15min=TimeSquare,7580038,Jack Andrew,Manhattan,Harlem,40.82475,-73.94842,Private room,39,12,26,2019-04-26,0.42,3,155 +2022920,UES,8214568,Allison,Manhattan,Upper East Side,40.78081,-73.95045,Entire home/apt,250,1,0,,,1,0 +2022938,Sunny Duplex on Prospect Park,4419367,Paul,Brooklyn,Windsor Terrace,40.65391,-73.97401,Entire home/apt,200,4,20,2018-12-31,0.30,1,279 +2022958,Elegant 1BR @ Columbus Circle,195168,Raees,Manhattan,Hell's Kitchen,40.76709,-73.98577,Entire home/apt,250,3,16,2016-10-15,0.24,1,0 +2023357,Artistic n Funky 1BD by the Park!,10398270,Andrew And Katie,Manhattan,East Harlem,40.78605,-73.95087,Entire home/apt,120,6,4,2016-04-09,0.06,1,0 +2023577,Charming bedroom on the Upper West,323517,Deda,Manhattan,Upper West Side,40.80034,-73.96638,Private room,105,1,31,2019-06-22,0.46,2,365 +2024991,Beautiful king-size 1-bedroom with balcony,10362054,Mary,Queens,Astoria,40.7577,-73.91981,Entire home/apt,100,3,1,2018-01-01,0.05,1,0 +2025779,Charming East Village One Bedroom,212572,Joyce,Manhattan,East Village,40.72977,-73.98713,Entire home/apt,175,4,0,,,1,0 +2026434,Fab Williamsburg Brooklyn Apt.,5772472,Anthony,Brooklyn,Greenpoint,40.72,-73.95433,Entire home/apt,500,5,0,,,1,0 +2026869,Sunny Village Studio: Long Stays,10411521,Matt,Manhattan,East Village,40.7282,-73.9834,Entire home/apt,120,5,0,,,1,0 +2028178,1BD Modern Contemporary in Williamsburg,10417106,Helene & Michael,Brooklyn,Williamsburg,40.71491,-73.94864,Private room,85,2,7,2018-05-31,0.11,1,207 +2028272,Luxurious Chelsea Apt with Terrace,4363412,Yonathan,Manhattan,Chelsea,40.73985,-74.00138,Entire home/apt,320,30,24,2018-12-07,0.36,1,66 +2028291,"Entire studio with backyard, Close to subway!!!",10243387,Mirlet,Queens,Astoria,40.7582,-73.92811,Entire home/apt,149,3,19,2019-07-07,0.56,2,291 +2028391,"Soho Penthouse Loft, Terrace & View",10417911,Nisian,Manhattan,SoHo,40.72329,-73.9981,Entire home/apt,400,3,1,2015-07-23,0.02,1,0 +2028432,Sunny Private Studio With Backyard Close 2 Subway!,10243387,Mirlet,Queens,Long Island City,40.75832,-73.92874,Private room,72,3,26,2019-03-14,0.41,2,307 +2028625,"SB 2014/Winter in NYC, PH, 860 sf!!",10419406,Scott,Manhattan,Harlem,40.82486,-73.93993,Entire home/apt,300,3,0,,,1,0 +2028677,1BR in HARLEM...SUNNY & SPACIOUS,9852787,Brooklyn,Manhattan,Harlem,40.81639,-73.94085,Entire home/apt,115,7,57,2019-05-25,0.89,1,125 +2028925,Art Boutique 2BR Suite at JFK Airport,10162529,Jay,Queens,St. Albans,40.70039,-73.75233,Entire home/apt,325,3,82,2019-01-01,1.37,2,359 +2030736,Room B,10384906,Susan,Brooklyn,Sunset Park,40.64532,-74.02063,Private room,32,1,111,2019-04-20,1.70,5,208 +2031495,Big Private Sunny Room in UWS Duplex w/ Terrace,25100,Susana,Manhattan,Upper West Side,40.79675,-73.96916,Private room,100,3,11,2016-06-07,0.16,1,0 +2033224,2-br Apartment in Manhattan,10437461,Igor,Manhattan,Harlem,40.81858,-73.9559,Entire home/apt,150,4,12,2018-01-01,0.20,1,0 +2033846,"Boutique Hip Hotel Feel, WiFi, NetFlix, Private",667627,Marvin,Manhattan,Harlem,40.81728,-73.94583,Entire home/apt,95,4,72,2019-05-19,1.10,1,11 +2033866,East Village 2 Bed 2 Floor Luxury Apartment,7846216,Rafael,Manhattan,East Village,40.72635,-73.97595,Entire home/apt,290,1,114,2018-10-07,1.71,1,157 +2036105,Private room D,10384906,Susan,Brooklyn,Dyker Heights,40.6283,-74.01608,Private room,30,1,67,2019-01-22,0.99,5,150 +2037508,Bed Stuy Apartment One Bedroom,10211848,Ben,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94446,Entire home/apt,75,4,1,2014-01-03,0.01,1,0 +2037632,Cute East Village 1 Bedroom Apt,1415489,Angelita,Manhattan,East Village,40.72782,-73.98095,Entire home/apt,140,5,25,2019-06-13,0.37,1,13 +2037951,Modern West Village Apartment,4191006,Nick,Manhattan,West Village,40.73858,-74.00875,Private room,500,365,0,,,1,0 +2038278,Bright and Open Astoria Apartment,10456845,Taylor,Queens,Astoria,40.76589,-73.92864,Entire home/apt,100,1,2,2015-12-30,0.03,2,0 +2041041,Your Living Room is the UES,7028387,Todd,Manhattan,Upper East Side,40.76749,-73.95533,Private room,80,24,89,2019-06-13,1.40,1,146 +2041143,Perfect for Visiting Family,10468616,Sara,Brooklyn,Park Slope,40.67559,-73.98362,Entire home/apt,125,3,1,2016-08-28,0.03,1,0 +2042764,Architect's home in Park Slope,3707465,Sim,Brooklyn,South Slope,40.66719,-73.98361,Entire home/apt,250,4,11,2016-09-06,0.17,1,0 +2043049,Bushwick Calabrese Abode,6447895,Stella,Brooklyn,Bushwick,40.68673,-73.91024,Private room,50,2,2,2019-04-15,0.50,1,35 +2043060,"Clean, spacious entire 1br in NYC!",1499286,Andrey,Manhattan,Midtown,40.76326,-73.98165,Entire home/apt,395,5,37,2019-06-09,0.55,2,350 +2043329,Studio in Hell's Kitchen,10478532,Erin,Manhattan,Hell's Kitchen,40.76473,-73.98937,Entire home/apt,100,2,11,2015-05-27,0.16,1,0 +2044392,The heart of Williamsburg 2 bedroom,620218,Sarah,Brooklyn,Williamsburg,40.71257,-73.96149,Entire home/apt,250,4,0,,,1,0 +2044873,Bushwick Artist Loft - Awesome Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70781,-73.92184,Private room,79,1,89,2019-04-24,1.39,3,310 +2045097,Charming Lower East Side Studio!,4119331,Ryan,Manhattan,Lower East Side,40.71892,-73.98383,Entire home/apt,100,7,0,,,1,0 +2045727,Cozy Room in Family Home..BKLYN!!!,320284,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93346,Private room,52,2,203,2019-05-26,3.13,1,323 +2046007,1 BR in LES. Heart of New York City,4274857,Helena,Manhattan,Lower East Side,40.72148,-73.98823,Private room,98,4,67,2019-07-02,1.09,3,102 +2046225,"Large, Sunny Brooklyn Apartment",10490291,Lauren,Brooklyn,Crown Heights,40.66539,-73.95651,Entire home/apt,120,2,3,2016-08-29,0.04,1,0 +2046273,Private room in Park Slope,3126588,Laszlo,Brooklyn,Sunset Park,40.66118,-73.98901,Private room,40,25,0,,,1,0 +2046789,"Huge, Arty, Earthy + BEST Location!",1442412,Meredith,Manhattan,Kips Bay,40.73987,-73.98317,Entire home/apt,345,1,56,2016-06-13,0.83,1,0 +2048796,Sunnyside Gardens Oasis!,763439,Joel,Queens,Sunnyside,40.74817,-73.91886,Private room,50,1,1,2017-08-12,0.04,1,0 +2049322,Private room in Brooklyn Loft,9446761,Paul,Brooklyn,Williamsburg,40.70371,-73.93344,Private room,45,7,0,,,1,0 +2050406,"Bright, Huge 1Bdrm in Midtown",10406601,Amaryllis,Manhattan,Midtown,40.7552,-73.9724,Entire home/apt,250,1,0,,,1,0 +2050993,"Noho East Vill Lux Bldg w/Gym,Pool ",4836650,Kris,Manhattan,NoHo,40.72717,-73.9927,Entire home/apt,350,2,1,2014-09-07,0.02,1,0 +2051675,Nice modern room by Prospect Park!,4684532,Noel And Patricia,Brooklyn,Flatbush,40.65398,-73.96139,Private room,57,2,199,2019-06-29,2.98,1,265 +2053940,Sunny top floor apartment in Clinton Hill,4965107,Nichola,Brooklyn,Fort Greene,40.69767,-73.97137,Entire home/apt,120,2,4,2019-01-02,0.06,1,42 +2054899,Sunny Apartment in West Village,800720,Seb,Manhattan,West Village,40.73187,-74.00865,Entire home/apt,1000,3,0,,,1,0 +2055050,Charming studio upper east side NYC,10525320,Candace,Manhattan,Upper East Side,40.77376,-73.95343,Entire home/apt,125,5,54,2019-06-01,0.90,2,274 +2055303,South Harlem 1 Bedroom Apartment,10526058,Ashley & Nate,Manhattan,Harlem,40.80163,-73.95413,Entire home/apt,145,3,58,2017-01-01,0.97,1,0 +2055467,Great Location on St. Marks Place,10526877,Steven,Manhattan,East Village,40.72852,-73.98705,Entire home/apt,150,1,0,,,1,0 +2055614,Lovely designer's studio,10527465,Gigi,Brooklyn,Fort Greene,40.6856,-73.97418,Private room,89,90,13,2018-10-08,0.19,1,101 +2055819,"Garden Oasis, Williamsburg! ",10528287,Mike,Brooklyn,Williamsburg,40.71589,-73.95534,Entire home/apt,164,1,200,2019-07-05,3.37,2,208 +2056012,"Rancho Deluxe, Williamsburg! ",10528287,Mike,Brooklyn,Williamsburg,40.71542,-73.95652,Entire home/apt,210,1,215,2019-07-02,3.20,2,224 +2056307,1 room in HUGE 2Bedroom/1.5 Bath,1584064,Adrienne,Manhattan,Harlem,40.80121,-73.95063,Private room,115,7,1,2015-09-27,0.02,2,0 +2057295,Junior 1-BR in West Village,10534508,Amanda,Manhattan,West Village,40.73075,-74.00238,Entire home/apt,110,45,21,2018-01-02,0.31,1,0 +2057403,Spacious Upper West side 2 bedroom apartment,10535116,Connie,Manhattan,Upper West Side,40.79053,-73.96956,Entire home/apt,199,5,8,2019-01-01,0.12,1,9 +2057480,Spacious 2BR in the heart of Soho,6145679,Omar,Manhattan,SoHo,40.72577,-74.00279,Entire home/apt,272,5,4,2016-04-22,0.08,1,0 +2057553,PRIVATE ROOM in Peacuful 2-Bedroom,10535719,Mike,Manhattan,East Harlem,40.79981,-73.94048,Private room,75,7,7,2018-10-15,0.12,3,328 +2057595,Great location in the East Village,10535464,Steve,Manhattan,East Village,40.72829,-73.98907,Private room,69,13,42,2019-05-25,0.62,1,84 +2060275,NoHa Living,10545845,Evan,Manhattan,East Harlem,40.80797,-73.93686,Private room,179,1,1,2013-12-14,0.01,1,0 +2060720,Charming Jr. 1 bedroom Midtown,9563358,Chun,Manhattan,Midtown,40.75184,-73.97199,Entire home/apt,106,7,3,2019-05-24,0.09,1,4 +2060768,West Village Apt steps to Path,10547610,Raj,Manhattan,West Village,40.73246,-74.00854,Entire home/apt,800,1,0,,,1,0 +2061367,"Room on Upper West Side, Manhattan",10550207,Brooke,Manhattan,Upper West Side,40.77895,-73.97837,Private room,100,2,0,,,1,0 +2061725,"❤️ 2 Beds Option + Private Bath, Sunshine Bushwick",4601412,Mia,Brooklyn,Bushwick,40.6922,-73.92399,Private room,60,2,226,2019-06-30,3.42,2,164 +2061811,Great NYC Location for beginning of JULY,10552208,Julia,Manhattan,Upper West Side,40.77928,-73.97966,Entire home/apt,120,7,3,2016-01-05,0.04,1,0 +2062630,Large 1 bedroom apartment (shared),6313448,Lexy,Bronx,Bronxdale,40.85667,-73.86543,Entire home/apt,80,1,1,2014-08-19,0.02,1,0 +2063587,Beautiful Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74282,-73.9803,Private room,75,30,42,2018-12-10,0.67,26,345 +2065101,Sunny Room,7455886,Emily,Queens,Astoria,40.7672,-73.90795,Private room,35,7,0,,,1,0 +2065538,Sunny Place in Cool Hood,617671,Jason,Brooklyn,Crown Heights,40.67659,-73.95608,Entire home/apt,88,2,14,2018-07-13,0.21,1,16 +2065985,"Woodside Queens, New York",9757249,Kenny,Queens,Sunnyside,40.74071,-73.9191,Private room,50,1,0,,,1,0 +2066165,Cozy room in NYC 5,5164854,Lilia,Manhattan,Harlem,40.82078,-73.93771,Private room,45,4,19,2019-04-10,0.31,8,42 +2067166,Private Room in Upper East Side,10573163,Diana,Manhattan,Upper East Side,40.77127,-73.95033,Entire home/apt,75,3,2,2017-07-25,0.08,1,0 +2067688,MIDTOWN MANHATTAN-WALKING DISTANCE TO EMPIRE STATE,10575680,David,Manhattan,Kips Bay,40.74221,-73.98121,Private room,79,2,2,2017-01-02,0.06,2,0 +2068054,One Room in Lovely Zen House,10577541,Kat,Queens,Forest Hills,40.71215,-73.85356,Private room,55,15,6,2018-04-21,0.10,1,255 +2069051,Your private space in Brooklyn,10581418,Frank,Brooklyn,Williamsburg,40.71524,-73.94299,Private room,45,1,17,2019-05-12,0.55,1,354 +2069059,Cozy 2BR Brooklyn retreat w/Bckyard,10581580,Carolyn,Brooklyn,South Slope,40.66551,-73.98805,Private room,85,10,0,,,1,0 +2069359,New 1BR + 1BA with Private Entrance,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.67828,-73.92965,Private room,80,3,130,2019-06-10,2.00,3,220 +2070290,LARGE 2 BEDROOM FOR SUPER BOWL ,10585956,Yigal,Manhattan,Hell's Kitchen,40.76874,-73.98757,Entire home/apt,599,1,0,,,1,0 +2071265,GET COSY IN WILLIAMSBURG...,10590038,Rory,Brooklyn,Williamsburg,40.70491,-73.94268,Entire home/apt,110,3,3,2015-05-30,0.05,1,0 +2071420,Classic Chelsea Brownstone 1 Bedroom,10590692,Wade,Manhattan,Chelsea,40.74374,-74.00044,Entire home/apt,199,2,177,2019-07-01,2.85,2,112 +2071446,Inspiring spacious loft space,3608781,Katja,Brooklyn,Williamsburg,40.71955,-73.96049,Private room,94,2,129,2019-02-23,2.22,1,188 +2071464,Brooklyn garden 2 bedroom,3011547,Wendy,Brooklyn,Boerum Hill,40.6863,-73.98572,Entire home/apt,400,5,34,2019-06-22,0.50,3,333 +2071839,Room in a lovely 2br apartment - East Williamsburg,1939680,Silvia,Brooklyn,Williamsburg,40.70731,-73.94344,Private room,60,7,5,2018-08-05,0.14,1,3 +2071873,Cozy Studio in Murray Hill,1394669,Lala,Manhattan,Murray Hill,40.75053,-73.97747,Entire home/apt,175,2,31,2019-05-26,0.46,1,33 +2071941,Huge Sunny Family Friendly Loft in Greenpoint,1468317,Jessie,Brooklyn,Greenpoint,40.72323,-73.94915,Entire home/apt,200,5,0,,,1,0 +2074653,Cozy East Village Bedroom,1468247,Kris,Manhattan,East Village,40.73033,-73.98742,Private room,100,5,2,2016-10-22,0.06,1,0 +2074985,Summer catsit in Brooklyn!,248739,Jeremy,Brooklyn,Crown Heights,40.66806,-73.95358,Entire home/apt,50,3,9,2016-11-18,0.13,1,0 +2075377,Studio Apartment centrally located!,10607256,Lisa,Manhattan,Kips Bay,40.73899,-73.98153,Entire home/apt,175,3,0,,,1,0 +2075453,Sunny & Bright Bohemian 2BR XL Loft,7503643,Vida,Brooklyn,Greenpoint,40.72532,-73.93992,Entire home/apt,199,30,8,2018-07-17,0.14,52,308 +2075471,Big room in Greenpoint.,10607636,Brandon,Brooklyn,Greenpoint,40.73397,-73.95442,Private room,54,4,4,2014-05-20,0.06,1,0 +2075526,1 BR Apt in Park Slope Brooklyn,8109174,Katie And Matt,Brooklyn,Park Slope,40.66952,-73.98285,Entire home/apt,130,4,8,2016-12-30,0.12,1,0 +2075600,Delicious & Airy Apt in Landmark Brownstone,5089,Subhana,Brooklyn,Bedford-Stuyvesant,40.68637,-73.9417,Entire home/apt,151,2,43,2019-07-01,0.65,1,220 +2076101,Cozy 1BR in Morningside Heights,10610482,Robyn,Manhattan,Morningside Heights,40.81233,-73.96101,Entire home/apt,80,1,1,2016-03-20,0.02,1,0 +2078687,Lower East Side Haven on Ludlow St,10621196,Kate,Manhattan,Lower East Side,40.71715,-73.98936,Entire home/apt,110,8,5,2016-01-06,0.07,1,333 +2079686,Sunny apt with Backyard,7624316,Rebecca,Brooklyn,Bushwick,40.7018,-73.91823,Entire home/apt,60,3,14,2017-02-20,0.21,1,0 +2079765,"Charming, sunny oasis",3389163,Nadine,Brooklyn,Bedford-Stuyvesant,40.68171,-73.92085,Entire home/apt,110,10,58,2019-06-03,0.92,1,282 +2080709,Awesome Bedroom close to Manhattan!,4030621,Rob,Brooklyn,Greenpoint,40.73303,-73.95153,Private room,73,2,19,2016-01-05,0.28,1,0 +2080861,Spacious 3BD/2BA - Parking Included,10630723,Nancy,Brooklyn,Bedford-Stuyvesant,40.69142,-73.93481,Entire home/apt,177,3,209,2019-06-26,3.11,2,237 +2081177,Lovely Studio in New York City,542611,Robyn,Queens,Sunnyside,40.74409,-73.91868,Entire home/apt,90,14,6,2016-09-11,0.09,1,0 +2081394,Apartment-NYC-LES-Lower East Side,2707940,Adrien,Manhattan,Lower East Side,40.71864,-73.98496,Entire home/apt,190,1,2,2015-07-13,0.04,1,0 +2081408,Cozy Sun Drenched Crown Heights Apt,318435,Rose,Brooklyn,Crown Heights,40.66646,-73.93605,Entire home/apt,105,5,1,2015-01-08,0.02,1,0 +2081850,"Huge, gorgeous apt in Harlem, NYC",1657228,Aktina,Manhattan,Harlem,40.81286,-73.94385,Entire home/apt,150,14,1,2014-01-13,0.01,1,35 +2082328,Comfy & Spacious Room next to the Subway/Metro,9947836,Jenny,Bronx,Longwood,40.82347,-73.89495,Private room,65,4,26,2019-05-28,0.85,2,7 +2082670,East Williamsburg Room near L train,10638597,Reid,Brooklyn,Williamsburg,40.70674,-73.94365,Private room,35,1,2,2016-06-01,0.03,1,0 +2082694,Brand New 3BR Apartment,10638711,Corey,Brooklyn,Williamsburg,40.70958,-73.94287,Entire home/apt,700,3,1,2014-01-02,0.01,1,0 +2083547,3 Bed/ 2 Bath Full Apt. BK Heights,4690301,Eric,Brooklyn,Brooklyn Heights,40.69134,-73.99334,Entire home/apt,185,2,10,2017-09-20,0.20,1,0 +2083749,STYLISH NYC OASIS NEAR CENTRAL PARK,10643341,Rt,Manhattan,Upper West Side,40.80033,-73.96509,Entire home/apt,150,90,54,2019-01-10,0.86,1,153 +2083791,Live like a native,14751,Chris,Brooklyn,Bedford-Stuyvesant,40.68773,-73.9452,Private room,100,1,0,,,1,220 +2083824,Luxurious & Spacious 1 Bedroom Apt,10643695,Sam,Brooklyn,Williamsburg,40.71131,-73.96813,Entire home/apt,575,1,0,,,1,0 +2084817,Huge Bedroom at Downtown Manhattan,2657134,Luna,Manhattan,Lower East Side,40.71044,-73.98756,Private room,128,1,16,2018-02-28,0.75,1,0 +2085632,Private Deck 2 Bedroom+2 Bath East Village,10650502,Jeni,Manhattan,East Village,40.72247,-73.97923,Entire home/apt,299,28,92,2018-07-25,1.37,1,14 +2086647,LES Sun Drenched w/ Balcony,10653693,Christina,Manhattan,Chinatown,40.71651,-73.99053,Entire home/apt,169,3,2,2015-05-19,0.03,1,0 +2087226,Penthouse With Private Roof Deck,1763458,Patrick,Manhattan,East Village,40.72864,-73.98216,Private room,109,7,130,2019-07-03,3.38,1,78 +2087524,Private Parlour Floor,10656683,Lorna,Brooklyn,Clinton Hill,40.68041,-73.95838,Entire home/apt,99,4,74,2019-06-11,1.93,1,261 +2087663,"Chic, neat & cozy small 1 BR Apt",10657268,Boryana,Queens,Astoria,40.76165,-73.92179,Entire home/apt,130,5,0,,,1,0 +2087970,West Village Wonder -spacious 1 bed,10658486,Owen,Manhattan,West Village,40.73552,-74.00716,Entire home/apt,239,4,52,2019-06-26,0.82,1,84 +2088389,Entire Sun Drenched Apartment in Clinton Hill,234918,Mariya,Brooklyn,Clinton Hill,40.68476,-73.96672,Entire home/apt,100,30,17,2017-08-30,0.25,1,0 +2088725,Beautiful renovated 1 bedroom Apt.,10661536,Edgar,Brooklyn,Gowanus,40.66983,-73.9904,Entire home/apt,124,4,52,2019-06-30,0.80,1,147 +2089226,"SALE- 2 BEDS, IN PRIVATE BEDROOM NEAR MANHATTAN!",8452639,C S,Brooklyn,Flatbush,40.64717,-73.96189,Private room,69,1,64,2019-06-15,0.96,3,362 +2089273,Williamsburg Luxury 1 Bedroom,8956323,Jayar,Brooklyn,Williamsburg,40.70867,-73.94799,Entire home/apt,180,2,0,,,1,0 +2089492,Sunny 1 Bedroom Apt in Williamsburg,1104548,Kimberly,Brooklyn,Williamsburg,40.71371,-73.96236,Entire home/apt,225,2,28,2018-10-31,0.55,1,0 +2089712,Spacious 1-BR Midtown West,10666587,Kevin,Manhattan,Hell's Kitchen,40.75774,-73.99371,Entire home/apt,119,2,3,2015-12-14,0.04,1,0 +2089745,GREAT in CHELSEA: JUST SEE REVIEWS,10661984,Joseph,Manhattan,Chelsea,40.74611,-74.00014,Entire home/apt,220,7,55,2019-06-04,1.12,1,13 +2091204,Spacious and bright Bedroom,10672341,Emily,Brooklyn,Crown Heights,40.66876,-73.95633,Entire home/apt,150,4,6,2019-05-09,0.10,2,0 +2091483,Large BR in a 3BR apartment,2529788,Cagil,Brooklyn,Prospect Heights,40.67321,-73.96514,Private room,75,1,0,,,1,188 +2092588,Staying in Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73408,-73.95601,Private room,51,3,19,2018-01-23,0.32,4,0 +2092611,"Bright & cozy, private UES studio",10662294,Daria,Manhattan,Upper East Side,40.77519,-73.95688,Entire home/apt,150,9,9,2017-09-05,0.13,1,0 +2093035,"Modern & Artsy, Awesome Location",10099888,Enrique,Brooklyn,Williamsburg,40.71243,-73.95873,Private room,91,1,9,2016-07-04,0.14,1,0 +2093064,"Sunny Chelsea 1 B.R. Hi Line, Washer/Dryer, 3 Beds",7245581,Michael,Manhattan,Chelsea,40.74978,-73.99686,Entire home/apt,139,90,20,2018-12-15,0.31,19,219 +2093304,Hidden gem in Fort Greene,9791461,Brian,Brooklyn,Fort Greene,40.69286,-73.96993,Entire home/apt,100,4,45,2019-01-03,1.01,1,190 +2093455,Nice bedroom,6471461,Robert,Queens,Ridgewood,40.70716,-73.89906,Private room,60,1,275,2019-07-05,4.64,2,329 +2094213,Large Stylish 1.5 BR Noho/Nolita,10642609,Laura,Manhattan,NoHo,40.72477,-73.99323,Entire home/apt,255,2,8,2017-01-02,0.12,1,0 +2095959,Big Sunlit Studio - Nice Bed - 18 min to Manhattan,10692401,Jp,Queens,Sunnyside,40.74409,-73.92471,Entire home/apt,94,7,27,2016-08-28,0.40,1,0 +2096581,SUNNY APARTMENT DOWNTOWN!,10694601,Gill,Manhattan,East Village,40.72287,-73.98462,Entire home/apt,179,2,21,2016-10-10,0.31,1,0 +2096968,*Upper East Side Cozy 1 Bedroom*,1461630,Ro,Manhattan,Upper East Side,40.76352,-73.95548,Entire home/apt,135,4,105,2019-06-29,1.56,1,267 +2098338,Big Room near Prospect Park.,4970579,Sasha,Brooklyn,Flatbush,40.63832,-73.96769,Private room,50,5,77,2018-12-16,1.14,1,33 +2098817,Historic Townhouse 3bed 2bath * 1 block to subway,2462590,Jenny And Mark,Brooklyn,Bushwick,40.69067,-73.92207,Entire home/apt,350,2,6,2019-05-01,0.95,2,99 +2100174,Private Furnished Studio Apartment,10710522,Jessica,Manhattan,Upper East Side,40.77452,-73.94951,Entire home/apt,150,30,26,2019-04-21,0.41,1,269 +2100887,1200sqft artsy loft SOHO/NOLITA gem,10545523,Adar,Manhattan,Nolita,40.72045,-73.99598,Entire home/apt,375,3,6,2015-05-19,0.10,1,0 +2101349,Stunning UWS studio private room;,9829662,Victoria,Manhattan,Upper West Side,40.77747,-73.98095,Private room,150,3,10,2019-05-27,0.16,1,42 +2101710,In the heart of Hell's Kitchen,10717291,Adam,Manhattan,Hell's Kitchen,40.76204,-73.99143,Entire home/apt,175,1,0,,,1,0 +2101884,Sunny & Spacious in Park Slope,7096230,Richard And Mollie,Brooklyn,Park Slope,40.67281,-73.97628,Entire home/apt,170,2,24,2017-12-21,0.38,1,0 +2102315,Spacious Modern Williamsburg Loft!,10720001,Phoebe,Brooklyn,Williamsburg,40.70981,-73.95189,Entire home/apt,275,3,3,2014-11-30,0.05,1,0 +2102344,Cozy Private Room in Artsy Bushwick,5976214,Angela,Brooklyn,Bushwick,40.70381,-73.92766,Private room,30,3,2,2014-01-03,0.03,1,0 +2102542,Cozy 1BD-15min to NYC $150,2977901,Andrea,Brooklyn,Cobble Hill,40.68803,-73.99182,Entire home/apt,150,1,19,2015-06-22,0.28,1,0 +2102571,Studio Midtown East,4265753,Dai,Manhattan,Midtown,40.75426,-73.96886,Entire home/apt,140,3,2,2017-04-07,0.07,1,0 +2102651,Central Park West Studio Value,10721586,Dana,Manhattan,Upper West Side,40.78835,-73.9681,Entire home/apt,200,30,1,2014-06-02,0.02,1,365 +2103480,Thanksgiving in Manhattan!,10725397,Andrea,Manhattan,Upper West Side,40.77822,-73.98016,Entire home/apt,560,1,0,,,1,0 +2104588,Time Square doorman building 1 bdrm,6757150,Olena,Manhattan,Theater District,40.76263,-73.98271,Entire home/apt,240,4,0,,,1,0 +2104910,SPACIOUS APT BK/QUEENS w/BACKYARD!,10643810,Alex,Queens,Ridgewood,40.70988,-73.90845,Entire home/apt,99,2,57,2017-03-08,0.89,1,42 +2105163,Gramercy Park Studio Apartment,10732706,Joe,Manhattan,Gramercy,40.73646,-73.98337,Entire home/apt,195,3,3,2019-01-03,0.21,1,0 +2105180,COZY CLEAN BDR 3 MINUTE WALK FROM GRAND CENTRAL,10575680,David,Manhattan,Murray Hill,40.74961,-73.97865,Private room,89,2,10,2017-01-29,0.32,2,0 +2106241,Private Room with Plush Queen Bed,1318137,Adriano,Brooklyn,Bushwick,40.69472,-73.92874,Private room,65,3,87,2019-06-11,1.37,2,305 +2106662,Large one bedroom apartment,10736013,Javier,Manhattan,West Village,40.73192,-74.00433,Entire home/apt,156,1,0,,,1,0 +2106706,"Large Bright Room, East Village Apt",1534243,Seth,Manhattan,East Village,40.72859,-73.98957,Private room,120,1,0,,,1,0 +2107372,Best NYC Deal on upper west!,10346860,Shlom And Lyndz,Manhattan,Upper West Side,40.79994,-73.97094,Entire home/apt,400,1,0,,,1,0 +2107696,Entire 2 BED APARTMENT - WILLIAMSBURG- Best Price,9265204,Gianni,Brooklyn,Williamsburg,40.70765,-73.94821,Entire home/apt,210,3,7,2019-06-10,0.10,2,343 +2107883,Industrial Modernism Flex 2br Loft!,7503643,Vida,Brooklyn,Greenpoint,40.72587,-73.94138,Entire home/apt,159,30,5,2019-04-21,0.14,52,338 +2107939,Private Single Room Steps to Subway,1318137,Adriano,Brooklyn,Bedford-Stuyvesant,40.69193,-73.9274,Private room,55,3,70,2019-05-27,1.11,2,285 +2108178,Fabulous City View Studio Loft,7503643,Vida,Brooklyn,Greenpoint,40.72546,-73.94136,Entire home/apt,129,30,4,2018-01-05,0.06,52,322 +2108237,Large 2BR/2B next to Lincoln Center,4185342,Itay,Manhattan,Upper West Side,40.77517,-73.98829,Entire home/apt,300,3,4,2015-04-21,0.06,1,0 +2108424,Sunny Private room in Brooklyn,8013034,Kenny And Christine,Brooklyn,Bushwick,40.69636,-73.91138,Private room,79,1,20,2019-06-15,0.32,2,285 +2108635,One room/full floor in a Duplex,2770596,Emilio,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94673,Private room,100,4,0,,,2,0 +2110145,UWS 1BR w/backyard + block from CP,2151325,Jay And Liz,Manhattan,Upper West Side,40.77782,-73.97848,Entire home/apt,6000,14,17,2015-02-17,0.27,1,359 +2110493,PRIVATE studio/not shared/ SAFE/ CLEAN/Affordable,1834769,Debbie,Queens,Maspeth,40.72675,-73.90522,Entire home/apt,64,3,7,2019-06-22,0.69,1,333 +2111172,Williamsburg. By Bedford L train,8337801,De,Brooklyn,Williamsburg,40.71872,-73.95496,Private room,110,10,72,2018-12-30,1.07,1,42 +2111336,Nice Modern Mirrored Room in NYC,10764579,Kevin,Manhattan,Harlem,40.82532,-73.94992,Private room,55,14,66,2019-04-30,1.12,1,17 +2112142,"No security req,great price,new queen bed!",10784618,Miguel,Brooklyn,Bedford-Stuyvesant,40.68162,-73.94848,Private room,55,5,8,2018-04-30,0.21,1,270 +2112344,Private Bushwick Loved Room with a Sacred Garden,10768668,Shervin,Brooklyn,Bushwick,40.70177,-73.91922,Private room,75,5,0,,,1,0 +2113431,Amazing room in Greenpoint,10775192,Joshua,Brooklyn,Greenpoint,40.72553,-73.94571,Private room,70,1,0,,,2,0 +2113934,Futon on the Upper East Side!,10777592,Lorna,Manhattan,Upper East Side,40.7686,-73.95307,Shared room,85,2,16,2017-05-21,0.25,1,0 +2115611,Large 1 bedroom apartment next to Prospect Park,1998676,Mal,Brooklyn,Windsor Terrace,40.65022,-73.97247,Entire home/apt,130,29,16,2018-12-19,0.26,1,217 +2115773,Spacious 1BR Haven in Duplex w/Deck,514261,Vanessa,Brooklyn,South Slope,40.66639,-73.98706,Private room,120,7,0,,,3,0 +2115784,Beautiful Prewar 1BD Apartment,10787148,Sarah,Brooklyn,Flatbush,40.64759,-73.96173,Entire home/apt,50,10,4,2014-07-13,0.06,1,0 +2116059,Renting apt for a weekend getaway,10788865,Jochy,Manhattan,Washington Heights,40.83454,-73.94224,Entire home/apt,100,1,205,2019-06-30,3.05,1,1 +2116940,"Sunny, Modern Open 1BR ",2715062,Stephen,Manhattan,Lower East Side,40.71973,-73.99338,Entire home/apt,145,2,4,2016-11-05,0.06,1,0 +2117705,Refreshingly Peaceful Room in Prime Williamsburg,5243832,Andrew,Brooklyn,Williamsburg,40.71258,-73.96392,Private room,100,5,44,2019-05-26,1.68,1,41 +2118102,Charming West Village One Bedroom,7579627,Maria,Manhattan,West Village,40.73236,-74.00353,Entire home/apt,200,1,4,2016-12-22,0.06,1,0 +2119216,"Affordable, Private, Simple & Clean NYC Flat!",10806025,Christina,Manhattan,Harlem,40.82029,-73.93861,Entire home/apt,80,1,353,2019-06-19,5.26,1,258 +2120619,Beautiful Central Park Apartment,4967515,Cody,Manhattan,Upper West Side,40.78881,-73.98116,Entire home/apt,200,6,4,2015-09-21,0.06,2,364 +2122613,SuperBowl West Village Apartment,6854214,Nick,Manhattan,West Village,40.72975,-74.00414,Entire home/apt,325,1,0,,,1,0 +2123079,Artist Loft Studio close to all,10577784,Julian,Queens,Long Island City,40.76304,-73.92777,Entire home/apt,120,3,80,2019-07-02,1.74,2,69 +2123731,Spacious Suite in Midtown West/Times sq.,10828833,Stephen,Manhattan,Hell's Kitchen,40.76466,-73.99325,Private room,180,3,191,2019-06-19,3.29,1,161 +2124536,Downtown Filmmaker's Loft by WTC,269710,Alfredo,Manhattan,Financial District,40.70912,-74.01322,Entire home/apt,379,2,96,2018-06-27,1.52,1,0 +2124910,Private Room E,10384906,Susan,Brooklyn,Borough Park,40.63592,-74.00476,Private room,33,1,98,2019-06-16,1.55,5,0 +2126376,Spacious Bedroom in Williamsburg Loft.,10846328,Luis,Brooklyn,Williamsburg,40.71296,-73.95088,Private room,60,4,0,,,2,0 +2126576,2BR XL Industrial Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72552,-73.94195,Entire home/apt,199,30,4,2018-08-14,0.07,52,365 +2127016,Charming 1br loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72722,-73.94167,Entire home/apt,149,30,4,2018-09-28,0.06,52,343 +2127382,Upper East Side apt for Super Bowl,10852093,Mark,Manhattan,Upper East Side,40.77924,-73.95092,Entire home/apt,150,1,0,,,1,0 +2127713,GREAT COZY APT,8384058,Hb,Manhattan,Harlem,40.81143,-73.94248,Entire home/apt,98,8,37,2018-12-12,0.59,1,170 +2127767,Sun-drenched 2 Bedroom Penthouse,923915,Matthew,Manhattan,East Village,40.72476,-73.97643,Entire home/apt,250,4,34,2016-11-21,0.52,2,239 +2128464,Warm & Spacious (not available),10859032,Garth,Brooklyn,Bushwick,40.69312,-73.90582,Private room,60,1,4,2014-06-10,0.06,1,0 +2128761,"Studio 1 block from subway, 10min to Manhattan!",407078,Mary,Brooklyn,Williamsburg,40.71558,-73.94355,Entire home/apt,149,2,49,2019-07-07,0.73,1,171 +2132248,Huge Master Bedroom w/ Private Bath,3695778,Zach,Brooklyn,Williamsburg,40.7147,-73.96554,Private room,95,5,0,,,1,0 +2134047,Artistic Studio Apartment,2533833,Tico,Brooklyn,Bedford-Stuyvesant,40.68409,-73.95402,Entire home/apt,85,3,122,2019-06-15,1.93,1,41 +2134052,Large artsy studio with 90s style,7978448,Seth,Manhattan,Chelsea,40.74193,-74.0017,Entire home/apt,90,3,23,2015-12-06,0.36,1,0 +2134294,"Nice room in Astoria, Queens, NYC",10859726,Don Luis,Queens,Astoria,40.77073,-73.93229,Private room,47,5,11,2018-03-10,0.16,3,162 +2134697,Gorgeous New 1BR_Heart of Midtown,2119276,Host,Manhattan,Hell's Kitchen,40.76613,-73.98721,Entire home/apt,180,30,16,2019-04-22,0.25,39,337 +2135116,"Downtown, close to every subway!",2382974,Chris,Manhattan,Battery Park City,40.71,-74.0154,Private room,110,3,1,2017-05-25,0.04,1,0 +2135489,Charming Studio in Brooklyn,8624212,Leon,Brooklyn,Carroll Gardens,40.68362,-73.99714,Entire home/apt,170,2,131,2019-06-16,2.02,1,26 +2135754,CONVENIENT Greenwich Village 2 BED!,7793849,Dain,Manhattan,Greenwich Village,40.72934,-73.99983,Entire home/apt,210,5,25,2018-08-24,0.42,1,0 +2135766,"Super Bowl, 2 bdrm, UWS apartment ",4074918,Julie,Manhattan,Upper West Side,40.79478,-73.97474,Entire home/apt,900,1,0,,,1,0 +2136293,Studio Apartment Near Express Subway to Manhattan,6599585,Mike,Queens,Richmond Hill,40.70171,-73.82788,Entire home/apt,65,2,162,2019-06-26,2.45,1,302 +2136511,Private room with bathroom and balcony.,6001762,Ajang,Brooklyn,Bedford-Stuyvesant,40.67927,-73.9113,Private room,60,7,0,,,1,365 +2137111,"Upper West Side 1 BR APT, ~675sg ft",10906528,Chris,Manhattan,Upper West Side,40.78689,-73.96985,Entire home/apt,225,2,14,2016-05-15,0.29,1,0 +2137714,Casa de La Musica,1193933,Yoruba,Brooklyn,Bushwick,40.68342,-73.91017,Entire home/apt,200,7,0,,,1,0 +2137796,A Beautiful Brownstone,10909829,Richelle And Pela,Brooklyn,Bedford-Stuyvesant,40.68478,-73.92971,Entire home/apt,170,3,125,2019-06-22,1.86,2,314 +2138787,"HARLEM, NEW YORK WELCOMES YOU!!",68428,Tye And Etienne,Manhattan,Washington Heights,40.83191,-73.9411,Private room,62,2,4,2019-04-01,0.19,2,336 +2141470,Centrally located Midtown East 1 BR,10928857,Ashley,Manhattan,Murray Hill,40.74487,-73.97452,Entire home/apt,125,2,8,2015-01-02,0.13,1,0 +2141635,"Room in Soho, Manhattan",10929586,Chad,Manhattan,SoHo,40.72356,-74.00305,Private room,106,1,1,2014-04-23,0.02,1,0 +2141667,Riverview at Lovely Harlem/UWS Home,10929872,Carlyn,Manhattan,Harlem,40.81968,-73.95353,Private room,93,2,138,2019-06-05,2.23,1,7 +2141975,Charming and Large UES ROOM for travellers,1580799,Jenn,Manhattan,Upper East Side,40.77459,-73.95149,Private room,85,5,44,2019-06-28,0.77,1,299 +2142092,"Furnished room - W. 181 St. by A, 1",8280182,Alejandro,Manhattan,Washington Heights,40.85098,-73.93664,Private room,300,2,0,,,1,365 +2142130,Fully renovated 1br apt in LES,10932521,Kenneth,Manhattan,Lower East Side,40.71978,-73.98643,Entire home/apt,224,2,12,2018-11-25,0.21,1,0 +2144033,Williamsburg - country house in NYC,6166889,Shelly,Brooklyn,Williamsburg,40.71473,-73.96495,Private room,145,1,52,2019-06-17,0.82,1,291 +2144319,"Cheap, furnished private room",10945216,Rebecca,Brooklyn,Crown Heights,40.67177,-73.95221,Private room,40,1,1,2014-01-04,0.01,1,0 +2145599,Large Private BR in Hell's Kitchen,1698391,Pat,Manhattan,Hell's Kitchen,40.76197,-73.99308,Private room,135,2,150,2019-06-28,2.42,3,98 +2145620,"Bright, Lovely, Private Room in Midtown Manhattan",10949644,Lydia,Manhattan,Midtown,40.75667,-73.96464,Private room,97,3,177,2019-06-28,2.69,1,58 +2145759,Cozy Room in Upper East Side,2879920,Alberto,Manhattan,Upper East Side,40.76141,-73.96273,Private room,69,60,43,2016-05-29,0.65,2,90 +2148025,Bed & Bagel~a charming 3 bedroom loft,9130465,Roberta (And Chris),Brooklyn,Bushwick,40.69346,-73.90765,Entire home/apt,225,4,233,2019-06-29,3.55,1,89 +2149184,Super Bowl Rental 2BR in Soho,7363831,Garrett,Manhattan,SoHo,40.72615,-74.00123,Entire home/apt,900,1,0,,,1,0 +2149854,Amazing NYC 1BR Apartment,10454853,Margy,Manhattan,Hell's Kitchen,40.76213,-73.99376,Entire home/apt,215,3,2,2015-08-04,0.04,1,0 +2149954,Hip Bushwick Apartment,10972334,Rob,Brooklyn,Bushwick,40.6966,-73.93072,Private room,99,2,8,2018-06-19,0.25,2,88 +2150328,"SUPERBOWL!! 2 Bd, 2 Ba w Roof Deck!",10974237,Abby,Manhattan,East Village,40.72767,-73.98825,Entire home/apt,850,1,0,,,1,0 +2150727,1500 sq ft apt sleeps 8 - SuperBowl,5579700,Steve,Manhattan,Gramercy,40.73545,-73.98238,Entire home/apt,2000,1,0,,,1,0 +2150750,"Private Bedroom in Sunnyside, NYC ",9268805,David,Queens,Sunnyside,40.74527,-73.91693,Private room,60,1,10,2014-10-12,0.16,2,184 +2151106,2br. Luxury Building in Upper East,6542088,Inbar,Manhattan,Upper East Side,40.7836,-73.95093,Entire home/apt,303,7,29,2018-11-25,0.46,1,3 +2151259,Superbowl Studio Upper West Side,10263977,A,Manhattan,Upper West Side,40.79752,-73.96298,Entire home/apt,750,3,0,,,1,0 +2151479,Newly renovated house,10981050,Rhonda,Brooklyn,Bedford-Stuyvesant,40.68922,-73.94626,Entire home/apt,111,3,104,2019-06-17,1.65,1,261 +2151558,COZY ROOM WITH STUNNING VIEW IN AN AUTHENTIC FLAT,2838861,Ryan,Brooklyn,Greenpoint,40.73107,-73.95712,Private room,60,30,10,2018-05-28,0.15,1,92 +2153435,The best Williamsburg has to offer!,4630562,Edward,Brooklyn,Williamsburg,40.71587,-73.96351,Entire home/apt,320,2,172,2019-07-04,2.99,1,330 +2154075,"Brooklyn Charm, Close to Manhattan (30+ Days Only)",10992588,Joni,Brooklyn,Bedford-Stuyvesant,40.6864,-73.94529,Entire home/apt,112,200,314,2019-06-20,4.82,2,42 +2154567,Cozy Brownstone Suite,9430366,Sharon And Ronn,Brooklyn,Bedford-Stuyvesant,40.68232,-73.92746,Entire home/apt,185,2,159,2019-06-30,3.20,1,348 +2155219,Private Bedroom in LIC/ Astoria,10998158,Laura,Queens,Long Island City,40.75874,-73.92999,Private room,100,29,37,2018-12-08,0.57,1,305 +2155345,Bushwick Bungalow,10995590,Cat,Brooklyn,Bushwick,40.70014,-73.92705,Entire home/apt,150,1,1,2015-10-14,0.02,1,0 +2156111,Lg Private Rm wTerrace Midtown West,305395,Ritza,Manhattan,Hell's Kitchen,40.76337,-73.98576,Private room,130,5,98,2019-06-24,1.73,1,48 +2157550,"2BD True Loft, Hip & Artsy Location",11010011,Adrien,Brooklyn,Bushwick,40.70751,-73.92058,Entire home/apt,130,5,9,2017-06-26,0.18,1,0 +2158171,Luxury NYC Studio for Super Bowl 48,11012889,Judy,Manhattan,Financial District,40.70451,-74.00671,Entire home/apt,575,1,0,,,1,0 +2159193,The Perfect 1-bedroom in Cobble Hill,11012377,Edward,Brooklyn,Carroll Gardens,40.68497,-73.9902,Entire home/apt,125,5,2,2019-04-19,0.32,1,196 +2159898,East Village Studio,11021180,Sheila,Manhattan,East Village,40.72671,-73.98437,Entire home/apt,190,4,216,2019-07-06,3.34,1,55 +2160591,"Brooklyn NY, Comfy,Spacious Repose!",6326737,Benjamin,Brooklyn,Bushwick,40.68926,-73.91595,Private room,70,3,40,2019-05-19,0.63,1,365 +2163602,Upper West Side elegance. Riverside,11039974,Poppi,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,599,1,5,2016-08-25,0.14,2,0 +2164135,"BIG, BRIGHT, STYLISH + CONVENIENT",1470471,Kerstin,Brooklyn,Bedford-Stuyvesant,40.69112,-73.95203,Private room,80,3,90,2019-06-17,1.39,1,199 +2164631,Exclusive Upper East Side Studio,2090668,Ellen,Manhattan,Upper East Side,40.77464,-73.95226,Entire home/apt,99,1,0,,,1,0 +2165107,Cozy Manhattan 1 BR,10533538,Sean,Manhattan,Upper East Side,40.7604,-73.96029,Entire home/apt,100,6,29,2019-05-30,0.47,1,128 +2165933,Furnished one bedroom in Midtown West.,11051885,Gregory,Manhattan,Theater District,40.76252,-73.98376,Entire home/apt,200,30,2,2017-12-06,0.05,1,339 +2168268,Home Sweet Home in Historic Harlem-Riverside Drive,9949214,Logan,Manhattan,Harlem,40.82252,-73.94462,Private room,60,2,13,2017-08-17,0.45,1,33 +2169106,Huge Sunny Room In Awesome Apt/Neighborhood,11066377,Brett,Brooklyn,Prospect-Lefferts Gardens,40.6591,-73.96116,Private room,100,2,13,2019-05-19,0.36,1,365 +2169765,Lower Park Avenue Pre War,8258307,James,Manhattan,Murray Hill,40.74855,-73.98001,Entire home/apt,2000,1,0,,,1,0 +2170035,Historical Harlem @ express train!,11070320,Tracy,Manhattan,Harlem,40.812,-73.95367,Private room,90,3,82,2018-04-23,1.29,1,0 +2170618,Brooklyn Artist Bdrm center of everything,11073109,Maya,Brooklyn,Clinton Hill,40.68214,-73.96474,Private room,61,4,3,2015-08-17,0.06,1,0 +2171809,Room w/ Private Bathroom,11063639,Weilong,Brooklyn,Williamsburg,40.71557,-73.96149,Private room,99,1,0,,,1,0 +2171821,Cool New 1br Apt - 1block from L&M,11079245,Florian / Anna,Queens,Ridgewood,40.70218,-73.91005,Private room,100,7,14,2019-05-08,0.24,1,365 +2172139,Modern Apt Steps from Central Park,10096792,Alex,Manhattan,Upper West Side,40.77608,-73.97614,Entire home/apt,340,6,1,2019-04-26,0.41,1,365 +2175827,Room Bedford Heart of Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71354,-73.96183,Private room,75,2,183,2019-06-30,3.03,3,154 +2177004,Sunny Loft in heart of williamsburg - entire loft!,11103721,Michelle,Brooklyn,Williamsburg,40.71364,-73.96427,Entire home/apt,130,30,6,2018-07-05,0.17,1,39 +2178294,Garden apt in Wlmsbrg - Lorimer L,5716241,Aditya,Brooklyn,Williamsburg,40.71328,-73.95154,Entire home/apt,140,2,6,2019-01-02,0.10,1,0 +2181941,Beautiful Apartment On Stivers Row,824689,Phyllis,Manhattan,Harlem,40.81562,-73.94426,Entire home/apt,112,3,22,2019-06-04,0.34,1,313 +2182899,Sunny & spacious NYC Apartment,377361,Zed,Manhattan,East Village,40.72456,-73.98004,Entire home/apt,160,3,25,2017-05-23,0.40,1,0 +2183423,2 Convertible Bdrms Great for 1-6,5414067,Adrianne,Manhattan,Harlem,40.81333,-73.94194,Entire home/apt,165,3,142,2019-06-14,2.27,2,301 +2185668,Clean Private Room in Chelsea apt,3579337,Nina,Manhattan,Chelsea,40.74106,-74.00262,Private room,80,30,8,2017-01-31,0.12,3,301 +2185842,1BR Superbowl rental Hells Kitchen,6910298,Anna,Manhattan,Hell's Kitchen,40.76,-73.99009,Entire home/apt,850,1,0,,,1,0 +2186138,Superbowl - NYC Apartment,11147328,Ankur,Manhattan,Midtown,40.75764,-73.96827,Entire home/apt,950,1,0,,,1,0 +2186452,Tribeca Loft for Superbowl Wknd,10636508,Reed,Manhattan,Tribeca,40.71725,-74.00528,Entire home/apt,1500,1,0,,,1,0 +2186699,Modern Alcove Studio in Chelsea NYC,11126880,Jeffrey,Manhattan,Chelsea,40.74259,-73.99708,Entire home/apt,160,4,8,2017-12-25,0.12,1,0 +2187847,Beautiful 1-Bedroom in West Village,11155956,Lauren,Manhattan,West Village,40.73818,-74.00433,Entire home/apt,300,2,0,,,1,0 +2188204,Herkimer House,11157871,Anthony,Brooklyn,Bedford-Stuyvesant,40.67892,-73.95156,Entire home/apt,150,2,94,2019-06-23,2.55,1,144 +2189129,10-Room Apt w/ 3BR & Park Views,11163727,Marcus,Brooklyn,Park Slope,40.66587,-73.97737,Entire home/apt,250,1,0,,,1,0 +2189450,East Village 2BR with view!,11165856,Jonathan,Manhattan,East Village,40.72358,-73.9867,Entire home/apt,100,10,0,,,1,0 +2189742,*Queen-sized comfort in cozy Historic Sugar Hill*,11167829,Dana (& Justin),Manhattan,Harlem,40.82811,-73.94372,Private room,49,2,79,2019-06-09,1.22,3,52 +2191591,3 story Home in NYC-upper east side,11176329,Jan,Manhattan,Upper East Side,40.78401,-73.94863,Entire home/apt,675,5,3,2014-09-09,0.05,1,0 +2191612,Full apartment - perfect location,6959160,Craig,Manhattan,Hell's Kitchen,40.76293,-73.98981,Entire home/apt,150,5,9,2018-09-04,0.15,1,6 +2193027,A charming UES apartment,11183488,Ashley,Manhattan,Upper East Side,40.78328,-73.95273,Entire home/apt,300,1,0,,,1,0 +2193649,CLEAN ROOM on Lower East Side,11136429,Yanina,Manhattan,Lower East Side,40.71735,-73.99095,Private room,79,1,259,2017-12-20,3.93,1,2 +2193902,East Village~Organic Living,1587234,Marie,Manhattan,East Village,40.72422,-73.98211,Entire home/apt,225,2,46,2019-04-30,0.80,1,320 +2193945,BEDROOM WITH PRIVATE BATHROOM,11189139,Mete,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9521,Private room,90,2,145,2019-06-29,2.26,1,250 +2194038,Two Bedroom Flat,11189753,Sj,Brooklyn,Fort Greene,40.68683,-73.96981,Entire home/apt,285,8,23,2019-06-15,0.36,4,364 +2194382,"Spacious 2BR/2BA Classic UWS Apt, Great for Family",11192207,Ish & Asa,Manhattan,Upper West Side,40.78731,-73.97805,Entire home/apt,300,2,2,2017-01-05,0.06,1,0 +2196271,Bright Dble Bedroom. Private Bath. Close to Subway,396599,Thomas,Brooklyn,Bushwick,40.69972,-73.92244,Private room,55,2,1,2018-12-28,0.16,2,157 +2197283,Charming Cozy Studio Apt. in NYC,8706294,J,Manhattan,Washington Heights,40.84058,-73.93885,Entire home/apt,80,5,81,2019-07-03,1.26,1,315 +2197401,Bedroom with Private Bathroom,11208418,Maureen And Josiah,Manhattan,Washington Heights,40.84119,-73.939,Private room,90,1,271,2019-06-23,4.32,1,281 +2197725,Luxury 1BD 1.5 Bath In UES in NYC,7181895,Yumi,Manhattan,Upper East Side,40.7759,-73.94921,Entire home/apt,325,2,3,2016-01-02,0.05,1,0 +2198970,BEAUTIFUL 1 BEDROOM,4173868,Maryam,Manhattan,Washington Heights,40.84531,-73.93583,Private room,55,7,9,2017-09-22,0.14,1,0 +2201154,Prime E. Village at St. Marks Place,5081260,Eden,Manhattan,NoHo,40.7278,-73.99205,Private room,208,2,38,2019-06-18,0.60,1,313 +2201491,BEST LOCATION! On the border of Chelsea/W Village,3579337,Nina,Manhattan,West Village,40.73776,-73.99996,Entire home/apt,156,1,8,2019-02-09,0.15,3,300 +2201581,Sunny Brooklyn Home,11231506,Reid,Brooklyn,Bedford-Stuyvesant,40.69587,-73.94037,Entire home/apt,85,4,9,2019-06-03,0.22,1,1 +2202858,Gorgeous Ft. Greene apt amazing vu,305591,James,Brooklyn,Fort Greene,40.69093,-73.97936,Entire home/apt,200,2,4,2018-05-21,0.06,1,0 +2203154,Prime East Village 1 bedroom,5392354,Aviad,Manhattan,East Village,40.73087,-73.98713,Entire home/apt,180,2,2,2014-09-29,0.03,1,0 +2203450,Perfect Location - 2 bdrm/2 bth ,1500487,David,Brooklyn,Williamsburg,40.71577,-73.95408,Entire home/apt,250,10,0,,,1,0 +2203926,"Bright, Modern Two Bedroom With Stunning Rooftop",1451417,H,Brooklyn,Williamsburg,40.71292,-73.95876,Entire home/apt,325,3,169,2019-07-01,3.33,1,277 +2206311,Modern Studio in Midtown East,5149997,Christine,Manhattan,Midtown,40.75701,-73.96781,Entire home/apt,140,3,0,,,1,0 +2208545,Spacious 1 Bedroom in Lower East Side/Chinatown,4906960,Laura,Manhattan,Chinatown,40.71539,-73.99379,Entire home/apt,160,6,65,2019-07-05,1.19,1,7 +2208567,Spacious Room in the Heart of NYC,11265131,Jay,Manhattan,Lower East Side,40.72053,-73.98901,Private room,130,1,59,2018-08-26,1.00,1,0 +2209460,Room in perfect Manhattan location,9538322,Beth,Manhattan,West Village,40.73747,-74.00014,Private room,110,1,136,2019-07-01,3.10,1,63 +2209835,LARGE 1 BEDROOM APT. IN MIDTOWN NEAR SUBWAY/BUS,8811222,Claudia,Manhattan,Kips Bay,40.74361,-73.97677,Entire home/apt,150,2,120,2019-07-01,3.25,1,29 +2210041,"CENTRAL PARK, NYC APT",8112314,Mena,Manhattan,Upper West Side,40.78616,-73.97348,Private room,149,2,121,2019-06-23,2.06,2,270 +2210088,SUPER BOWL 2014 in TRENDY CHELSEA!,11273539,Julia,Manhattan,Chelsea,40.74798,-74.00314,Entire home/apt,900,1,0,,,1,0 +2210615,Chelsea HUGE apartment w/ King bed + office,11276922,Everett,Manhattan,Chelsea,40.74047,-73.99508,Entire home/apt,215,3,9,2018-08-26,0.27,1,0 +2210663,"Luxury Modern Spacious 1BR,1 block to subway",6447944,Richard,Manhattan,Upper West Side,40.79558,-73.96969,Entire home/apt,155,1,21,2018-07-01,0.38,1,0 +2210795,Sunny room with private ensuite!,4618666,Tim,Brooklyn,Gowanus,40.68019,-73.98119,Private room,50,3,3,2016-04-07,0.07,1,0 +2211028,Vibrant Brooklyn location!,11279303,Patrick,Brooklyn,Greenpoint,40.72764,-73.95557,Entire home/apt,225,5,0,,,1,0 +2213680,A Room WIth A View,551055,Alicia,Manhattan,Harlem,40.82649,-73.95253,Private room,65,2,2,2016-09-23,0.05,2,114 +2214256,Artist owned brownstone apartment,7644839,Rebecca And Vilem,Brooklyn,Bedford-Stuyvesant,40.68631,-73.93993,Entire home/apt,112,4,138,2019-06-29,2.21,1,248 +2214323,Heart of downtown Manhattan,4237535,Alex&Ivy,Manhattan,Lower East Side,40.71969,-73.99287,Entire home/apt,250,3,107,2019-06-24,1.64,1,273 +2214689,Large Wiliamsburg Private Bedroom,5278391,Ashley,Brooklyn,Williamsburg,40.71527,-73.94038,Private room,65,4,8,2018-08-31,0.19,2,19 +2214710,Beautiful 2BR Flex Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72572,-73.94031,Entire home/apt,159,30,0,,,52,349 +2214831,LAVISH 2 BR APT by Central Park!!!,11297009,Lex,Manhattan,Upper West Side,40.78605,-73.97354,Entire home/apt,99,1,153,2019-05-26,2.39,4,327 +2214978,Beautiful City Oasis 2BR/1.5 BATH ,11257635,T,Manhattan,Upper West Side,40.7834,-73.97904,Entire home/apt,395,3,1,2014-09-14,0.02,1,340 +2216470,Comfortable Room ,11306420,Darius,Brooklyn,Bushwick,40.70039,-73.92867,Private room,145,1,0,,,1,0 +2217342,1BR West Village! Landmark Building,1544485,Laura And Jake,Manhattan,West Village,40.73311,-74.00401,Entire home/apt,185,7,19,2016-07-31,0.31,1,0 +2217398,"226 E 29th St, NY - Super Bowl",11312158,Andrew,Manhattan,Kips Bay,40.74262,-73.97945,Entire home/apt,1500,1,0,,,1,0 +2217609,(Williamsburg) - Large Bedroom w/ Private Bathroom,11313668,Adam,Brooklyn,Williamsburg,40.70046,-73.95133,Private room,45,2,26,2019-03-01,0.68,2,241 +2219294,Great Studio!,10485182,Jennifer,Manhattan,Upper West Side,40.78835,-73.97257,Entire home/apt,60,1,0,,,1,0 +2220959,XTRA LARGE 1 Bedroom Gramercy Apt,11330638,Lindsay,Manhattan,Kips Bay,40.73879,-73.98226,Entire home/apt,749,1,0,,,1,0 +2221852,Sunny Room in Beautiful Artist's Home,12190039,Lyndell,Manhattan,Washington Heights,40.83426,-73.94758,Private room,55,2,17,2018-10-22,0.27,2,34 +2222428,Large 1-BR Apt w/Fireplace & Patio,11339193,Rachel,Manhattan,Midtown,40.74364,-73.98303,Entire home/apt,1000,3,0,,,1,0 +2222641,Charming West Village 1 Bed - Ideal Location,11340369,Rachel,Manhattan,West Village,40.73823,-74.00233,Entire home/apt,165,7,1,2019-06-30,1,1,8 +2223082,Beautiful 1 BR with Private Garden,1446751,Allison,Manhattan,Chelsea,40.74502,-74.00429,Entire home/apt,285,2,47,2019-07-01,0.74,1,194 +2223247,Lovely Duplex (2-story) flat on the UES,11111521,Victoria,Manhattan,Upper East Side,40.77266,-73.95257,Entire home/apt,220,3,20,2019-01-02,0.32,1,31 +2223628,Haus of Taylor (Bronx Prohibition),11342593,Emery,Bronx,Kingsbridge,40.86467,-73.90125,Private room,75,2,11,2015-12-06,0.20,1,365 +2224417,"Spacious, bright, heart of Bushwick",4028092,Assaf,Brooklyn,Bushwick,40.70147,-73.92005,Entire home/apt,120,5,11,2017-09-30,0.27,1,2 +2224896,NYC SuperBowl Wk 5 Bdrs River View ,11353904,Todd,Manhattan,Upper West Side,40.79476,-73.97299,Entire home/apt,4000,1,0,,,1,0 +2227377,Downtown NY Apt - SuperBowl Weekend,11366961,Gabriel,Manhattan,Gramercy,40.73588,-73.98252,Entire home/apt,650,1,0,,,1,0 +2228296,Super Bowl 2014,11371978,Joe,Manhattan,Midtown,40.76402,-73.9777,Entire home/apt,750,4,0,,,1,0 +2228840,Cozy and homey railroad in bushwick,11375556,Carly & Sebastian,Brooklyn,Bushwick,40.70054,-73.92374,Entire home/apt,100,3,10,2019-01-01,0.15,1,10 +2230762,"Harlem/Morningside, charm and quiet",11386273,Karen,Manhattan,Harlem,40.80922,-73.95306,Private room,95,1,4,2018-07-29,0.11,1,270 +2230982,An Accomodating Apartment on Wall,11385753,Greg,Manhattan,Financial District,40.70511,-74.00943,Shared room,1000,1,0,,,1,0 +2231296,Great Location in the heart of NYC!,8312378,Ever,Manhattan,Greenwich Village,40.72926,-73.9989,Private room,119,2,146,2019-06-24,2.21,2,265 +2231814,Modern Luxury Meets Old Money Charm,112879,Caroline,Brooklyn,Williamsburg,40.70949,-73.94221,Entire home/apt,1200,1,0,,,1,0 +2232600,"",11395220,Anna,Manhattan,East Village,40.73215,-73.98821,Entire home/apt,200,1,28,2015-06-08,0.45,1,341 +2232697,Kate's Place,1726966,Katarina,Brooklyn,Crown Heights,40.67167,-73.92434,Shared room,48,1,146,2019-07-06,2.21,1,0 +2234100,"Coffee,Tea&Milk Astor Place Lodging",10931680,John,Manhattan,East Village,40.72672,-73.98851,Shared room,30,30,125,2017-12-31,1.88,1,304 +2236458,Cozy 1 Bdrm n the Heart of Astoria!,11418277,Vanessa,Queens,Astoria,40.76437,-73.9195,Entire home/apt,65,4,2,2014-04-21,0.03,1,0 +2237032,"Cozy Room in LIC, 7 min to Times Sq",1589909,Alosha,Queens,Long Island City,40.74495,-73.95146,Private room,79,15,15,2019-05-23,0.29,2,238 +2237063,"Modern Large Studio, Great Location",11313778,Jian,Manhattan,Kips Bay,40.74163,-73.97533,Entire home/apt,105,7,22,2019-06-29,0.46,1,121 +2237851,2BD in Midtown East,5078978,Victoria,Manhattan,Kips Bay,40.74383,-73.97909,Entire home/apt,420,2,2,2015-09-27,0.04,1,0 +2237981,Cool UES 1 Bed Sleeps upto 4,2261678,Ayesha,Manhattan,Upper East Side,40.77331,-73.95067,Entire home/apt,250,1,0,,,1,0 +2238300,"Peaceful home, friendly area!",249753,Penny,Brooklyn,Bushwick,40.70422,-73.91405,Entire home/apt,95,5,1,2018-01-06,0.05,1,0 +2238389,Huge Duplex in South Slope,11430355,Monika,Brooklyn,Sunset Park,40.66296,-73.98955,Entire home/apt,290,2,25,2019-04-27,0.39,1,195 +2238435,Central Harlem Hideaway,11430909,Tennessee,Manhattan,Harlem,40.81085,-73.94768,Entire home/apt,100,1,0,,,1,0 +2240196,Chelsea Studio for Super Bowl!,11440643,Ari,Manhattan,Chelsea,40.75,-73.99637,Entire home/apt,395,3,0,,,1,0 +2240661,Large 1BR Upper East Side Apartment,4660888,Stephanie,Manhattan,Upper East Side,40.77226,-73.95895,Entire home/apt,180,2,2,2015-06-22,0.03,1,0 +2243180,Sun-bathed spacious Luxury 2 BR near CENTRALPARK!,11457317,Philippe,Manhattan,Upper West Side,40.77775,-73.98485,Entire home/apt,380,3,11,2018-08-03,0.18,1,43 +2243266,Top floor!,11457662,Indie,Brooklyn,Bensonhurst,40.60918,-73.99799,Entire home/apt,40,2,0,,,2,0 +2243321,A cozy apartment,11457662,Indie,Brooklyn,Bensonhurst,40.60931,-73.99847,Entire home/apt,45,2,28,2018-01-02,0.43,2,0 +2243548,Lux 1600sf 1BR w. Private Terrace,9644281,Michelle,Manhattan,Lower East Side,40.72082,-73.99028,Entire home/apt,300,1,2,2016-03-13,0.05,1,0 +2243699,"SuperBowl Penthouse Loft 3,000 sqft",1483320,Omri,Manhattan,Little Italy,40.71895,-73.99793,Entire home/apt,5250,1,0,,,1,0 +2243769,Super Bowl New York City Apartment,11460768,Brian,Manhattan,Upper West Side,40.8002,-73.96045,Entire home/apt,1500,1,0,,,1,0 +2243962,Spacious & Convenient UWS Apt,11461795,Helen,Manhattan,Upper West Side,40.79859,-73.9697,Private room,125,2,0,,,1,0 +2243984,Superbowl in the West Village,11461854,Lauren,Manhattan,West Village,40.73295,-74.00755,Entire home/apt,1500,1,0,,,1,0 +2246112,"Upper E. side, one month minimum",11443640,James,Manhattan,Upper East Side,40.78158,-73.94808,Entire home/apt,110,1,3,2017-08-29,0.06,1,0 +2247803,"Landmark Brownstone, Crown Heights",11333699,Clifton,Brooklyn,Crown Heights,40.67112,-73.94536,Entire home/apt,105,2,281,2019-06-30,4.29,1,248 +2248069,Private Room in Central Park Slope,2024924,Lisa,Brooklyn,Park Slope,40.67232,-73.97879,Private room,45,5,42,2019-06-30,0.64,2,221 +2248580,Luxury 1 Bedroom Condo,11483903,Avril,Manhattan,Greenwich Village,40.73411,-73.99723,Entire home/apt,1000,1,0,,,1,0 +2249464,Full of Light Studio Apartment close to Subway,4358264,Sole,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94579,Entire home/apt,80,13,109,2019-04-01,1.66,1,15 +2249878,Great UWS Apt./Central Park ,470870,Ruben,Manhattan,Upper West Side,40.78531,-73.96988,Entire home/apt,375,1,0,,,1,0 +2249928,Super Bowl Wknd! 3-Bedroom Apt UWS,2675913,Sam,Manhattan,Upper West Side,40.78574,-73.9764,Entire home/apt,1000,1,0,,,1,0 +2250170,Spacious/New 3 Bedroom East Village,11492501,Victoria,Manhattan,Stuyvesant Town,40.73205,-73.98094,Entire home/apt,1500,1,0,,,1,0 +2250372,"Huge 3BR Penthouse, Private Roof!",11490872,Nick,Manhattan,Kips Bay,40.74422,-73.97822,Entire home/apt,1550,2,0,,,1,0 +2250790,Private room on the UWS,11494661,Maayan,Manhattan,Upper West Side,40.79891,-73.96705,Private room,89,3,7,2019-05-22,0.15,1,10 +2251009,Bedroom in Huge Apt on St. Marks,4265028,Jordan,Manhattan,East Village,40.72847,-73.99029,Private room,129,5,1,2016-02-24,0.02,1,0 +2252844,Great place to crash for Super Bowl,11505536,Alex,Manhattan,East Village,40.73046,-73.9921,Private room,500,1,0,,,1,0 +2253397,For Super Bowl- cool 1BDRM on UES!,11508018,Gretchen,Manhattan,Upper East Side,40.7829,-73.94721,Entire home/apt,500,3,0,,,1,0 +2253500,Fantastic Soho/Tribeca Loft,11473727,Sal,Manhattan,Tribeca,40.7196,-74.00571,Entire home/apt,250,30,4,2018-11-11,0.06,1,310 +2253949,Large 1 + Den in the West Village,10036249,Jenna,Manhattan,West Village,40.73341,-74.00791,Entire home/apt,250,1,2,2014-06-26,0.03,1,0 +2254388,"Spacious apt, 5 min to Central Park",11512483,Danielle,Manhattan,Upper East Side,40.78021,-73.95044,Entire home/apt,175,2,5,2016-12-30,0.08,1,0 +2254428,Spacious Duplex Apt in Brooklyn,11512676,Danni,Brooklyn,Bedford-Stuyvesant,40.68835,-73.95568,Private room,40,3,10,2018-01-08,0.16,1,0 +2254469,"Private Studio Apt, Luxury Building",11512908,Augustus,Manhattan,Upper East Side,40.7732,-73.95082,Entire home/apt,400,2,0,,,1,0 +2254541,Private Bedroom in Williamsburg!,6060700,Kevin,Brooklyn,Williamsburg,40.71801,-73.95869,Private room,85,14,1,2014-08-20,0.02,1,0 +2254582,Delightful 2BR Historic Brownstone Duplex,3672774,Alison,Brooklyn,Clinton Hill,40.68255,-73.96124,Entire home/apt,219,4,21,2019-02-15,0.33,2,31 +2254817,Elegant private studio in Manhattan 73 St. & 3 Ave,9420221,Kourosh,Manhattan,Upper East Side,40.76886,-73.95877,Entire home/apt,130,30,3,2019-06-30,0.39,1,156 +2254851,Sunny and Bright 1BR Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72599,-73.94172,Entire home/apt,149,30,4,2019-04-20,0.09,52,330 +2255005,Quiet Gramercy Apartment,7748022,Jeff,Manhattan,Kips Bay,40.73876,-73.98108,Entire home/apt,100,1,5,2016-03-29,0.12,1,0 +2255340,2 Bedroom Greenwich/Soho Apartment,8312378,Ever,Manhattan,Greenwich Village,40.72832,-73.99916,Entire home/apt,289,3,41,2019-06-17,0.96,2,247 +2255501,Cozy Room in the heart of UWS,11297009,Lex,Manhattan,Upper West Side,40.78409,-73.97886,Private room,67,1,21,2018-10-11,0.36,4,331 +2255549,New Studio in Heart of Chelsea,735701,Charles,Manhattan,Chelsea,40.7444,-73.9994,Entire home/apt,221,2,252,2019-07-06,4.91,1,256 +2256519,Spacious 1BR Chelsea Apt. for SB 48,11523254,Nicholas,Manhattan,Chelsea,40.74344,-73.99826,Entire home/apt,750,2,0,,,1,0 +2257064,Sunny Room in Heart of Williamsburg,11526701,Victor,Brooklyn,Williamsburg,40.71357,-73.96279,Private room,75,4,3,2016-01-05,0.05,1,0 +2257080,SUPERBOWLSUNDAY! 3BLOCK FROM TIMESQ,3312524,Athena,Manhattan,Hell's Kitchen,40.75361,-73.99501,Entire home/apt,350,1,0,,,1,0 +2259331,Luxury Building Huge Studio,11538076,Alex,Manhattan,Battery Park City,40.70517,-74.01753,Entire home/apt,425,2,0,,,1,0 +2259719,Apartment in Soho,11539672,Thomas,Manhattan,SoHo,40.72706,-74.00043,Entire home/apt,200,1,0,,,1,0 +2259813,Spacious 2 BR in North Chelsea,11540028,Nick,Manhattan,Chelsea,40.74999,-73.99687,Entire home/apt,1000,3,0,,,1,0 +2260029,Williamsburg Loft,10683147,Keefe,Brooklyn,Williamsburg,40.70943,-73.95101,Private room,100,7,0,,,1,0 +2260042,Clean and pleasant Room in NYC,11503864,Omar,Queens,Astoria,40.76427,-73.91562,Shared room,65,1,0,,,1,0 +2260274,SUPER LOCATION 4 SUPER BOWL WKEND!!,11542120,Brett,Manhattan,Greenwich Village,40.73532,-73.99473,Private room,1250,1,0,,,1,0 +2260595,4RW - CARRIAGE HOUSE STUDIO OFF CTYD,2027013,Adam,Manhattan,East Village,40.72959,-73.98112,Entire home/apt,112,30,22,2019-05-11,0.34,6,244 +2261018,Studio Apartment on 35th and 3rd ,9389685,Bobbi,Manhattan,Murray Hill,40.7461,-73.97628,Entire home/apt,175,1,15,2015-09-25,0.29,1,0 +2261367,brooklyn 14 bedroom gated community,10416706,Tzvi,Brooklyn,Sea Gate,40.57645,-74.01065,Entire home/apt,1485,2,6,2019-06-30,0.24,1,260 +2262357,spacious homey one bdrm apt.,11552512,Sandra,Queens,Sunnyside,40.74622,-73.92296,Entire home/apt,120,2,5,2019-05-27,0.19,1,81 +2262868,Consider it home,11163915,Marie-Hélène & Rick,Manhattan,Upper West Side,40.79432,-73.97269,Entire home/apt,150,26,1,2014-08-24,0.02,1,0 +2263248,Large 1 bedroom,11557572,William,Manhattan,Kips Bay,40.74438,-73.97965,Entire home/apt,369,2,1,2015-10-01,0.02,1,0 +2263265,Paddy Pad,9989761,Gaudhi,Manhattan,Harlem,40.80119,-73.95295,Private room,81,1,133,2019-06-04,2.23,2,13 +2265827,Williamsburg Lodge (the best home in Brooklyn),11570627,Paul & Marçal,Brooklyn,Williamsburg,40.70868,-73.95343,Private room,89,3,152,2019-06-26,2.67,1,147 +2266468,Amazing 2BR/2Bath Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72569,-73.94017,Entire home/apt,199,30,3,2019-02-28,0.06,52,127 +2267006,Stunning 1BR Brooklyn Loft,7503643,Vida,Brooklyn,Greenpoint,40.72537,-73.94076,Entire home/apt,149,30,0,,,52,330 +2267177,Large Bedroom 15 Min From Manhattan,11576459,Skip,Brooklyn,Sunset Park,40.655,-74.00676,Private room,45,2,211,2019-06-23,3.25,1,270 +2267692,Newly Converted Factory 1BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.7272,-73.94176,Entire home/apt,149,30,2,2014-08-18,0.03,52,337 +2268632,Big Queens NY Apt. Clean & safe.,3619427,Ian,Queens,Sunnyside,40.73817,-73.92463,Entire home/apt,600,4,0,,,1,0 +2268845,Super Apt for Superbowl,1531465,Jim,Manhattan,Kips Bay,40.74438,-73.97744,Entire home/apt,400,1,0,,,1,0 +2269104,Modern Style private room in queens,8568891,Sufia,Queens,Jamaica,40.7095,-73.78828,Private room,65,2,13,2018-07-14,0.22,1,362 +2271504,SUPER BOWL Brooklyn Duplex Apt!!,11598359,Jonathan,Brooklyn,Clinton Hill,40.68766,-73.96439,Entire home/apt,6500,1,0,,,1,0 +2271792,Little Heaven — Upper West Side,11599506,Lara,Manhattan,Upper West Side,40.78345,-73.97858,Entire home/apt,150,2,48,2016-11-27,0.73,1,0 +2272080,equipped and modern 2-bd apt,11600691,Evonne,Brooklyn,Gowanus,40.68107,-73.98245,Entire home/apt,265,3,0,,,1,0 +2272739,Sunny Spacious West Village 1BR,11603608,Dylan,Manhattan,Greenwich Village,40.7358,-73.99677,Entire home/apt,199,3,8,2015-06-21,0.16,1,0 +2272872,Great location Cntl Park Times Sq,5175067,Anthony,Manhattan,Hell's Kitchen,40.76726,-73.98285,Entire home/apt,395,5,9,2015-11-19,0.19,1,0 +2273019,Super Bowl Weekend,8105524,Rhett,Manhattan,Upper West Side,40.77018,-73.98643,Entire home/apt,150,1,0,,,1,0 +2273613,Bondtastic: Fabulous in Brooklyn.,11607949,Clarina,Brooklyn,Gowanus,40.67632,-73.99204,Entire home/apt,130,30,28,2019-05-20,0.43,1,297 +2273733,Heart of the West Village!,8730513,Corey,Manhattan,Greenwich Village,40.73357,-73.99767,Private room,175,3,1,2018-05-18,0.07,1,0 +2274084,3 Bedroom Apartment,11610321,Patrick,Manhattan,Kips Bay,40.74215,-73.98018,Entire home/apt,2750,1,0,,,1,0 +2274268,Private Rm - Times Sq/Hell'sKitchen,11611239,Sally,Manhattan,Hell's Kitchen,40.7604,-73.9922,Private room,90,1,170,2019-06-10,2.92,1,255 +2276065,PERFECT SUPERBOWL STAY,9451697,Shaunna,Manhattan,Midtown,40.75225,-73.98725,Entire home/apt,1500,1,0,,,1,0 +2276383,Penthouse with Private Rooftop for Events/Shoots,11623750,Mike,Manhattan,Greenwich Village,40.7335,-73.99834,Entire home/apt,2500,1,0,,,1,0 +2277707,Great UWS Apt Along Central Park,11630571,Ariel,Manhattan,Upper West Side,40.78498,-73.97284,Entire home/apt,350,1,7,2019-01-02,0.14,1,365 +2279335,Gorgeous 1 BR in N Williamsburg,7009234,Sarah,Brooklyn,Williamsburg,40.71947,-73.9552,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +2281142,Prime NYC Location for Super Bowl ,1427243,Jordana,Manhattan,East Village,40.73323,-73.98859,Entire home/apt,3750,1,0,,,1,0 +2281147,Midtown Gem/ Carnegie Hall/theaters/ Central Park,7580102,(Email hidden by Airbnb),Manhattan,Midtown,40.76292,-73.98128,Private room,250,3,6,2019-05-19,0.58,2,170 +2282085,Duplex PH 2 bedLoft Williamsburg,2044302,Christopher,Brooklyn,Williamsburg,40.71969,-73.9583,Entire home/apt,500,1,0,,,1,0 +2283001,Gorgeous 1 bdrm in Carroll Gardens,10532769,Vanessa,Brooklyn,Carroll Gardens,40.68123,-73.99558,Entire home/apt,180,2,97,2019-07-06,1.83,1,24 +2283143,The Best of Both Worlds-Manhattan Country Living!,11661229,Michele,Manhattan,Upper West Side,40.78269,-73.9839,Entire home/apt,800,7,0,,,1,0 +2284454,MANHATTAN SUPERBOWL ACCOMODATION,11668649,Andrew,Manhattan,Upper East Side,40.76904,-73.95435,Entire home/apt,1600,1,0,,,1,0 +2284484,Sunny & Spacious Upper West Side One Bedroom Apt,11669123,Kaley,Manhattan,Upper West Side,40.79822,-73.97059,Entire home/apt,85,5,0,,,1,0 +2284809,"Great 1 bedroom, close to subway!",11671329,Connor,Brooklyn,Bushwick,40.69982,-73.9249,Private room,49,4,2,2015-12-27,0.04,1,0 +2285355,SUPER BOWL RENTAL NYC LOW PRICE,11674823,Bruce,Manhattan,Upper West Side,40.77859,-73.97964,Entire home/apt,750,1,0,,,1,0 +2285440,Large Rooms with Bar and PullOut Prime Greenpoint,11675390,Peter,Brooklyn,Greenpoint,40.73052,-73.95568,Private room,91,4,106,2019-06-03,2.82,1,113 +2285444,"Cozy, Quiet Bedroom in Historic West Village",11675431,Rob,Manhattan,West Village,40.73521,-74.00089,Private room,100,5,8,2019-06-07,0.26,1,0 +2288762,Large sun-filled Studio: Murray Hill,11691665,Lauren,Manhattan,Kips Bay,40.74398,-73.97662,Entire home/apt,152,1,5,2018-01-05,0.14,1,0 +2289119,2 bdrm in center of Williamsburg,9968385,William,Brooklyn,Williamsburg,40.71725,-73.96249,Entire home/apt,250,1,0,,,1,0 +2289612,Private Room in Best Location!!,11673798,Shell,Manhattan,Murray Hill,40.74576,-73.97821,Private room,110,1,227,2019-06-30,3.50,1,239 +2291507,"Large, Sunny Room—in Fun, Trendy Area",11057719,Chloe,Brooklyn,Williamsburg,40.71558,-73.94881,Private room,73,14,0,,,1,0 +2291575,Super Bowl Space Available! ,11706506,Andrea,Queens,Astoria,40.76895,-73.9236,Shared room,300,1,0,,,1,0 +2291943,SuperBowl Weekend Rental! 3 BR/1ba,11708656,Justin,Manhattan,Upper East Side,40.77477,-73.95503,Entire home/apt,1000,1,0,,,1,0 +2292275,Instant NYC,11710466,Lindsey,Manhattan,Upper East Side,40.77715,-73.94788,Entire home/apt,135,2,3,2016-06-15,0.06,1,0 +2292366,cozy upper east side 1 br abode,440396,Mary,Manhattan,Upper East Side,40.78103,-73.95069,Entire home/apt,75,2,14,2019-06-01,0.33,1,0 +2294594,Hilton timeshare west 57st ,11721588,Richard,Manhattan,Midtown,40.76486,-73.97885,Private room,600,1,0,,,1,0 +2294663,Mid Town East Side Apartment ,6509406,Judy,Manhattan,Hell's Kitchen,40.75786,-73.99485,Entire home/apt,800,1,0,,,1,0 +2296024,Three bedroom upscale condo,2321783,Donna,Bronx,Riverdale,40.88579,-73.91599,Entire home/apt,250,7,2,2019-01-02,0.04,1,338 +2297029,large 2bdrm apt - midtown manhattan,10974421,Jj,Manhattan,Hell's Kitchen,40.76182,-73.99003,Entire home/apt,200,1,8,2016-09-25,0.16,1,0 +2297147,Gorgeous 1400 Sq Ft Artist's Loft,10674441,Annie,Brooklyn,Bedford-Stuyvesant,40.69329,-73.95607,Private room,75,3,5,2019-01-27,0.08,2,334 +2297192,2BD/2BA Manhattan Apt,11732741,Bryce,Manhattan,Financial District,40.70825,-74.00495,Entire home/apt,1000,1,0,,,1,0 +2297259,SUPER SUPER BOWL PAD,11733037,Clayton,Brooklyn,Boerum Hill,40.68497,-73.989,Entire home/apt,900,1,0,,,1,365 +2297951,Working Fireplace in TriBeCa loft,7636125,Kristen,Manhattan,Tribeca,40.72035,-74.00493,Private room,70,14,0,,,1,0 +2298373,Luxury private apartment/Suite/with balcony,10149317,Lana,Queens,Rego Park,40.72988,-73.85773,Entire home/apt,88,3,33,2019-04-20,0.77,5,262 +2298759,Luxury Studio -Midtown/Times Square,11741773,Samson,Manhattan,Hell's Kitchen,40.76774,-73.98503,Entire home/apt,425,1,0,,,1,0 +2299633,Ritz-Plaza - 2 bedroom / 2 fullbath,11747009,Troy,Manhattan,Theater District,40.76096,-73.98646,Entire home/apt,975,2,1,2015-10-09,0.02,1,0 +2301258,Entire Park Slope Brownstone,11753837,Alexandra,Brooklyn,Park Slope,40.67262,-73.97351,Entire home/apt,305,10,8,2018-08-11,0.12,1,30 +2303436,SOHO - Large Studio Apt,11762397,Nathan,Manhattan,Lower East Side,40.72153,-73.99331,Entire home/apt,220,2,146,2019-06-30,3.45,1,112 +2303583,Awesome Hells Kitchen Apt!,11764444,Cory,Manhattan,Hell's Kitchen,40.76532,-73.99061,Entire home/apt,150,1,11,2018-07-01,0.26,1,0 +2305025,"Big, Sunny Bedroom, right by subway!",7714918,Carrie-Anne,Brooklyn,Bushwick,40.70544,-73.92192,Private room,49,4,4,2015-03-11,0.07,2,8 +2305170,Eclectic Studio in Cozy Bay Ridge,11774081,Diana,Brooklyn,Bay Ridge,40.62455,-74.02756,Entire home/apt,86,2,0,,,1,0 +2305890,Midwood Aerie - Bright & Private!,11778114,Jake,Brooklyn,Flatbush,40.63449,-73.95742,Entire home/apt,140,1,141,2019-07-01,2.41,1,307 +2308802,Big 2 bds House w/ Parking and Yard,11790431,Laura,Queens,Kew Gardens Hills,40.72664,-73.82795,Entire home/apt,86,1,52,2019-07-01,0.79,1,53 +2309363,Huge Loft heart of Upper West Side,11793333,Jamie,Manhattan,Upper West Side,40.78263,-73.97415,Entire home/apt,650,2,30,2016-06-02,0.47,1,0 +2309559,Luxury New York,11254580,Bryan,Manhattan,East Village,40.73259,-73.98681,Entire home/apt,350,1,0,,,1,0 +2309873,Amazing Location-Private Studio near Central Park!,11796166,Shaina,Manhattan,Upper East Side,40.77469,-73.96327,Entire home/apt,225,2,3,2017-07-30,0.09,1,88 +2310008,CLEAN LES HOME,5019619,Chris,Manhattan,Chinatown,40.71627,-73.99404,Private room,75,1,4,2015-02-22,0.06,1,0 +2310445,Super Cute Chelsea One Bedroom,10973455,Amy,Manhattan,Chelsea,40.74935,-73.99723,Entire home/apt,150,1,49,2019-06-16,0.75,1,0 +2310542,Hamilton Heights/Harlem Private Bedroom with Roof,7317241,Tim,Manhattan,Harlem,40.82016,-73.94559,Private room,199,3,1,2019-05-16,0.56,1,0 +2310594,Studio Apt. in East Williamsburg,4148248,Guillermo,Brooklyn,Williamsburg,40.70972,-73.93864,Entire home/apt,95,4,204,2019-06-16,3.10,2,22 +2310791,Old Brooklyn Charm,3689829,Lee,Brooklyn,Clinton Hill,40.68583,-73.96558,Entire home/apt,200,2,110,2019-06-24,1.73,1,51 +2314392,Spacious Studio on West 72nd,11774035,Alina,Manhattan,Upper West Side,40.7803,-73.98347,Entire home/apt,200,3,45,2019-04-06,0.73,1,346 +2314398,Duplex Brownstone sleeps 4-6,11246260,Claudia,Brooklyn,Cobble Hill,40.68554,-73.99499,Entire home/apt,175,7,32,2019-06-02,0.50,1,24 +2314553,Spectacular Studio Loft w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72727,-73.93986,Entire home/apt,129,30,3,2019-05-24,0.08,52,365 +2314589,"Large, 2fl/2bdrm Williamsburg Apt",305132,Alix,Brooklyn,Williamsburg,40.70771,-73.94344,Entire home/apt,200,3,13,2017-01-01,0.22,1,0 +2318126,Private Rm for 1 in Prime Harlem,6165258,Gita,Manhattan,Harlem,40.80269,-73.94637,Private room,60,3,11,2018-01-01,0.18,3,365 +2319588,Luxury Apartment in Manhattan's Financial District,11845040,Alison,Manhattan,Financial District,40.70583,-74.00612,Private room,130,7,0,,,1,157 +2320028,SPACIOUS BEDROOM AND PRIVATE BATH!!!,11847492,Steve,Manhattan,East Harlem,40.7916,-73.94686,Private room,115,3,242,2019-06-17,3.69,1,55 +2320581,Your own room in NY's best area,1639277,Eyal,Manhattan,West Village,40.73374,-74.00121,Private room,135,2,80,2019-07-03,1.22,1,296 +2322189,1 room available,11861244,Ishaan,Manhattan,Upper East Side,40.76225,-73.96165,Private room,300,1,0,,,1,0 +2323502,Cute & cozy room in Ridgewood,3976338,Vanessa,Queens,Ridgewood,40.70206,-73.90936,Private room,59,3,106,2019-07-01,1.61,1,87 +2323714,Peaceful Parlor Floor Apartment,5714455,Lila & Paul,Brooklyn,Clinton Hill,40.68568,-73.96244,Entire home/apt,196,2,232,2019-07-07,4.31,1,261 +2325144,Cozy Nook in a Unique Loft,11876825,Christopher,Brooklyn,Bushwick,40.69856,-73.93162,Private room,128,3,52,2018-01-06,0.80,1,219 +2329047,Large 2 Bedroom available,9754117,David,Manhattan,Upper West Side,40.77794,-73.97699,Entire home/apt,400,1,0,,,1,0 +2329807,BEAUTIFUL CONDO IN TIMES SQUARE ,11894522,Georgia,Manhattan,Theater District,40.76054,-73.98508,Entire home/apt,200,30,11,2018-09-16,0.18,1,363 +2331148,Charming Sunny 1 Bedroom LES Apt!,3627104,Doria,Manhattan,Lower East Side,40.72171,-73.99053,Entire home/apt,180,5,13,2019-03-05,0.22,1,0 +2331154,Spacious Private Room in East Williamsburg,4467316,Barbara,Brooklyn,Williamsburg,40.70874,-73.93818,Private room,60,30,16,2019-07-05,0.28,2,190 +2331929,"Stylish apartment/ Serene Room in Williamsburg, BK",11910223,Michele,Brooklyn,Williamsburg,40.71216,-73.94612,Private room,70,90,2,2014-08-31,0.03,1,264 +2332284,La ponderosa,8873749,Fany,Manhattan,Washington Heights,40.84966,-73.93945,Private room,40,2,76,2019-04-07,1.29,1,291 +2332880,Huge 2 bed 2 bath Apartment!,11915544,Helena,Brooklyn,Prospect-Lefferts Gardens,40.65747,-73.95798,Entire home/apt,250,5,7,2017-08-01,0.11,1,195 +2333141,Bohemian Brooklyn Bungalow,11917311,Rebeca,Brooklyn,Crown Heights,40.67026,-73.92587,Entire home/apt,80,2,17,2018-03-07,0.39,1,0 +2334411,Amazing New York apt in Harlem with Backyard!!!,11280333,Brenda,Manhattan,Harlem,40.81128,-73.94117,Entire home/apt,85,3,82,2019-06-30,1.38,1,35 +2339096,Cozy bedroom in Lower East Side,11947308,Véronique,Manhattan,Chinatown,40.7159,-73.99059,Private room,70,1,196,2018-09-17,3.03,1,0 +2345266,"Bright room, close to everything.",11976770,Ezra,Brooklyn,Williamsburg,40.70941,-73.9522,Private room,55,5,4,2016-09-06,0.08,1,0 +2346089,"Stylish, Affordable & Private Room",11981562,Maureen,Brooklyn,Bedford-Stuyvesant,40.6901,-73.94524,Private room,60,2,0,,,1,0 +2346106,Amazing Greenpoint Loft-Best Deal!,6771815,El,Brooklyn,Greenpoint,40.73421,-73.95698,Private room,100,2,9,2015-05-04,0.14,1,0 +2346296,Private Room in Williamsburg Loft,10792303,Nora,Brooklyn,Williamsburg,40.71165,-73.96716,Private room,73,10,19,2019-04-23,0.30,1,13 +2346335,Spacious and bright 2 or 3 bedroom,10672341,Emily,Brooklyn,Crown Heights,40.66732,-73.95794,Entire home/apt,145,2,0,,,2,0 +2346416,Lovely private room close to Manhattan,11983859,Lauren,Queens,Astoria,40.76315,-73.92617,Private room,65,2,183,2019-06-10,2.82,1,146 +2349715,Cozy 2-BD w/ Lots of Light,11998560,Ruby,Brooklyn,Crown Heights,40.67286,-73.92566,Entire home/apt,162,1,75,2019-06-08,1.20,2,103 +2349737,NYC Apt - Close to Metro & Mnhtn,11722972,Karen,Queens,Rego Park,40.73243,-73.86773,Entire home/apt,275,30,9,2017-08-03,0.14,1,342 +2350883,Large 1BR - PRIME Williamsburg,1334808,Kristina,Brooklyn,Williamsburg,40.71338,-73.95738,Private room,56,12,0,,,2,0 +2356082,"Modern, Clean, West Village Apt!",6970733,Laurence,Manhattan,Greenwich Village,40.72946,-74.00189,Entire home/apt,200,2,26,2017-10-22,0.55,1,0 +2359340,ART COLLECTORS APARTMENT - TIMES SQUARE-10TH AV.,3793026,Andreas,Manhattan,Hell's Kitchen,40.76349,-73.98985,Entire home/apt,250,5,176,2018-10-08,2.72,1,0 +2361020,URBAN CHIC VIDEO/PHOTO SHOOTS ONLY,5535265,Krystal,Brooklyn,Bedford-Stuyvesant,40.68172,-73.93236,Entire home/apt,500,1,11,2015-10-20,0.19,1,365 +2361323,Safe Sunny 1brm near subway,12059266,Audrey,Brooklyn,Crown Heights,40.67935,-73.9633,Entire home/apt,120,30,14,2018-07-21,0.22,1,108 +2362306,Peaceful Artsy Huge Sunny Bedroom!,10283677,Emma,Brooklyn,Flatbush,40.65173,-73.96035,Private room,55,3,8,2018-10-25,0.36,1,0 +2362357,Cozy Room in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66468,-73.98777,Private room,59,1,126,2019-06-01,2.15,4,22 +2365645,"Quiet Apartment in Williamsburg, Bk",7881738,Michele,Brooklyn,Williamsburg,40.711,-73.95403,Entire home/apt,99,1,1,2016-01-12,0.02,1,0 +2367089,Full Apt w/ large kitchen in UES,12092726,Alice,Manhattan,Upper East Side,40.78092,-73.95162,Entire home/apt,155,1,75,2017-02-19,1.30,1,0 +2368021,Spacious and Amazing Location!,12098551,Ashley,Manhattan,Kips Bay,40.73997,-73.98137,Entire home/apt,200,3,4,2015-10-13,0.08,2,0 +2368214,Private bedroom in historic Chinatown apartment,7708014,John,Manhattan,Civic Center,40.71654,-74.00138,Private room,60,4,23,2017-09-15,0.35,1,0 +2371632,"Great 1 Br Apt, Ozone Park, NYC",10721506,Lee,Queens,Ozone Park,40.67657,-73.84083,Entire home/apt,85,3,106,2019-06-27,1.66,1,238 +2371794,Master bedroom in historic house,2588427,Rip,Manhattan,SoHo,40.72541,-74.01015,Private room,150,3,30,2019-01-02,0.48,2,4 +2372740,Chez Jazz BnB--Cozy BK/Queens room,12120448,Rob,Queens,Ridgewood,40.70375,-73.9094,Private room,45,2,27,2019-05-15,0.42,1,190 +2373238,Times Square Area Quiet + Private Guest Studio,12123995,Michal,Manhattan,Hell's Kitchen,40.76046,-73.99131,Entire home/apt,200,2,53,2019-07-04,2.51,2,223 +2374228,Amazing Two Bedroom Apartment,12129877,Andre,Brooklyn,Crown Heights,40.6738,-73.93985,Entire home/apt,120,2,193,2019-07-01,2.97,2,292 +2376206,Hell's Kitchen- Times Square,12140561,Danielle,Manhattan,Hell's Kitchen,40.76394,-73.99448,Entire home/apt,100,1,0,,,1,4 +2377514,Sophisticated Harlem True 2BR NYC,12145783,Enid,Manhattan,East Harlem,40.80021,-73.94142,Entire home/apt,195,4,137,2019-07-01,2.13,2,233 +2379865,Cozy private room available in a great location,12157737,Dushyant,Brooklyn,Crown Heights,40.67343,-73.96291,Private room,38,3,0,,,1,0 +2380403,"Artsy and Comfy Bedroom, Living Room, Terrace",1226950,Marysia,Brooklyn,Crown Heights,40.6769,-73.9513,Private room,75,2,0,,,1,0 +2381302,"New 1-Bdrm, 3-beds in Bensonhurst, Brooklyn, NY",12126255,Elska,Brooklyn,Bensonhurst,40.61518,-73.98874,Entire home/apt,76,30,28,2018-11-07,0.44,1,282 +2383233,Entire 1400 sq ft Artist Loft - FOUR Private Rooms,10674441,Annie,Brooklyn,Bedford-Stuyvesant,40.69392,-73.95446,Entire home/apt,175,27,0,,,2,148 +2385344,The Rose House,179296,Rich,Brooklyn,Greenpoint,40.73334,-73.95478,Entire home/apt,500,3,74,2019-06-24,1.17,1,364 +2385779,"The center of NYC, Brooklyn!",12186466,Edmund,Brooklyn,Bedford-Stuyvesant,40.68843,-73.93678,Entire home/apt,179,3,149,2019-07-04,2.33,1,242 +2391204,"SALE 2 BEDROOMS, LARGE MASTER & GUEST BEDROOM",8452639,C S,Brooklyn,Flatbush,40.64846,-73.96186,Private room,200,1,30,2019-05-19,0.50,3,362 +2392051,Spacious apt in the Lower East Side,132244,Tal,Manhattan,Lower East Side,40.71762,-73.98334,Entire home/apt,400,7,0,,,1,365 +2392296,"A Simple, Calm Space",10510181,Août,Bronx,Kingsbridge,40.88437,-73.89746,Shared room,32,2,6,2016-09-22,0.16,1,83 +2392301,Charming Bedroom in Artists Colony,173997,Beth,Brooklyn,Williamsburg,40.7106,-73.95325,Private room,50,3,16,2016-07-11,0.25,2,0 +2392814,Room in Huge 3 Bedroom L.E.S,12223914,Lakis,Manhattan,Lower East Side,40.71968,-73.98726,Private room,75,1,0,,,1,0 +2396867,Near Columbia Universit/Female only,12245536,Rong,Manhattan,Harlem,40.82039,-73.95514,Private room,40,1,5,2016-01-03,0.08,2,0 +2399434,"House of Music and Art, Large Happy Room, full bed",3992566,Clay,Brooklyn,Bushwick,40.70054,-73.92954,Private room,62,21,39,2019-05-23,0.65,3,110 +2400010,The Notorious B.N.B. { The Pfizer },1177497,Jessica,Brooklyn,Clinton Hill,40.69045,-73.96762,Private room,239,1,16,2019-05-19,0.28,11,363 +2400614,Your Very Own Williamsburg Apt!,2297544,Julian,Brooklyn,Williamsburg,40.71919,-73.9418,Entire home/apt,179,5,22,2019-07-01,0.37,1,336 +2404708,Williamsburg 1 bedroom appartement,12290324,Lara,Brooklyn,Williamsburg,40.71952,-73.96281,Entire home/apt,250,5,21,2019-03-28,0.35,1,284 +2405505,Luxury West Village apt with views!,12294891,Lillian,Manhattan,West Village,40.73618,-74.00256,Entire home/apt,400,5,8,2017-12-10,0.13,1,35 +2407196,"Harlem 1 BR, Private Master Bath",5905011,Annette,Manhattan,Harlem,40.81904,-73.94325,Private room,98,2,182,2019-06-23,2.85,1,312 +2410200,"Heart of Williamsburg, Brooklyn!",11982812,Georgia,Brooklyn,Williamsburg,40.71023,-73.94657,Private room,89,1,99,2017-11-18,1.55,1,0 +2410620,Cozy apt in the Upper East Side,12320096,Luanna,Manhattan,Upper East Side,40.78331,-73.94489,Entire home/apt,185,2,3,2019-06-09,0.27,1,0 +2410819,In the heart of the East Village,1522929,Anoop,Manhattan,East Village,40.72916,-73.98022,Private room,125,3,13,2017-06-26,0.34,1,0 +2412916,"Elegant Brooklyn Comfort, One Bedroom",4183222,James,Brooklyn,Carroll Gardens,40.68008,-73.99392,Entire home/apt,180,2,1,2014-06-10,0.02,1,0 +2414157,Relaxed Comfortable Beds in A Cozy Apartment.,8904815,Sandra&Orlando,Brooklyn,Flatbush,40.64307,-73.95455,Shared room,30,5,34,2019-06-29,0.52,2,288 +2415563,The Big Brooklyn,12346795,Ron,Brooklyn,Crown Heights,40.67019,-73.95541,Private room,60,1,35,2018-04-24,0.54,1,333 +2416016,Modern Lower East Side Apartment,1191562,Ross,Manhattan,Lower East Side,40.71962,-73.99178,Private room,115,2,130,2019-03-24,2.30,1,276 +2416104,"Private home, quiet Brooklyn street",12348871,Hetty,Brooklyn,Kensington,40.64742,-73.97559,Entire home/apt,200,2,13,2018-08-18,0.21,2,0 +2416191,Cute Apartment in Williamsburg,1473507,Moema,Brooklyn,Williamsburg,40.7186,-73.9451,Private room,70,1,0,,,1,0 +2417098,Sunny Studios in Historic Browstone,26640,Sally,Manhattan,Upper West Side,40.78327,-73.97343,Entire home/apt,179,30,14,2015-09-21,0.27,2,365 +2419438,1 Bedroom Bushwick apartment,571080,Michael,Brooklyn,Bushwick,40.6998,-73.92913,Entire home/apt,109,1,12,2018-09-03,0.19,1,0 +2419574,Private Room HK/Theatre District!,12366541,Pj,Manhattan,Hell's Kitchen,40.76589,-73.98536,Private room,124,5,263,2019-06-02,4.10,2,236 +2422991,Trendy Apt by Chelsea Market with High Line Views,12384418,Daniel,Manhattan,Chelsea,40.7453,-74.00704,Entire home/apt,159,2,43,2019-06-23,1.10,1,25 +2424199,"Bright, Eclectic, Happy Brooklyn Apartment",10434821,H. Erin,Brooklyn,Crown Heights,40.67422,-73.95569,Entire home/apt,85,10,9,2018-01-02,0.14,1,12 +2424342,Amazing Room—Private Bath (100% LEGAL!),2841152,Matthew,Brooklyn,Greenpoint,40.73169,-73.9554,Private room,109,2,107,2019-06-24,1.64,1,269 +2425222,Luxury Alcove Studio Apt in TriBeCa,12394900,Alice,Manhattan,Tribeca,40.72034,-74.01122,Entire home/apt,110,10,1,2016-01-05,0.02,1,0 +2425871,Newly Built Full Bedroom In TriBeCa,12399023,Ankush,Manhattan,Tribeca,40.7159,-74.00834,Private room,500,1,0,,,1,0 +2425980,"Cozy BR in Hamilton Heights, Harlem",9915185,Sarah,Manhattan,Harlem,40.82301,-73.94907,Private room,65,2,2,2015-10-12,0.04,1,0 +2430828,Private Room Available in nice apartment!,8351424,Anthony,Manhattan,Washington Heights,40.83358,-73.94462,Private room,112,2,20,2019-06-23,1.44,1,179 +2431607,"Bright, Airy Room Share for 2",4973668,Gloria,Brooklyn,Bedford-Stuyvesant,40.68642,-73.9344,Shared room,25,5,76,2019-06-06,1.22,3,258 +2431784,Newly renovated 1BD on UWS,2335233,Amber,Manhattan,Upper West Side,40.7809,-73.98215,Entire home/apt,220,5,0,,,1,0 +2432545,Your own apartment in Bushwick,3053987,Darwin And Nicole,Brooklyn,Bushwick,40.6911,-73.92125,Entire home/apt,79,3,43,2018-07-07,0.71,2,0 +2432622,Great 2 bdr apt in WB/Greenpoint,377287,Marianne,Brooklyn,Greenpoint,40.72545,-73.95405,Entire home/apt,200,3,2,2018-06-30,0.03,1,205 +2433591,Private Room Brooklyn NY,2120259,Sue,Brooklyn,Crown Heights,40.66586,-73.95128,Private room,55,4,21,2019-04-08,0.34,4,129 +2435198,"Lovely Private Bedroom in Vibrant Bronx, NY",12446529,Migdalia,Bronx,Soundview,40.82528,-73.86004,Private room,50,2,32,2019-04-07,0.51,2,156 +2435408,Modern Duplex Studio Factory Loft,7503643,Vida,Brooklyn,Greenpoint,40.72669,-73.9419,Entire home/apt,129,30,9,2019-04-30,0.16,52,325 +2435621,Stunning 1br in Historic Brownstone,26640,Sally,Manhattan,Upper West Side,40.7851,-73.97397,Entire home/apt,195,30,45,2019-05-31,0.73,2,327 +2435669,Charming Mid-Century Studio,1301613,Janet,Brooklyn,Flatbush,40.64815,-73.96486,Entire home/apt,79,2,8,2017-09-05,0.13,1,6 +2438181,Bedroom in sunny downtown apartment,2102889,Arthur,Manhattan,Two Bridges,40.71149,-73.99721,Private room,65,3,8,2019-07-02,1.71,1,123 +2440173,Theater District Studio (Sleeps 4),3948178,Redi,Manhattan,Hell's Kitchen,40.76453,-73.99515,Entire home/apt,123,2,8,2017-03-13,0.13,1,0 +2440846,Loft in Williamsburg! ,9872597,Sofia,Brooklyn,Williamsburg,40.71124,-73.9499,Private room,70,5,8,2015-07-22,0.15,1,0 +2445856,"Guest rm, 2 stops from GrandCentral",3578009,Walther,Queens,Long Island City,40.74955,-73.95081,Private room,100,2,37,2018-10-06,0.58,2,97 +2446430,Comfy Room in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66443,-73.98792,Private room,69,1,143,2019-06-04,2.41,4,22 +2447138,HUGE LUX 2FLOOR 2 BDRMSOHO LOFTw/HOME CINEMA,3540714,Simonie,Manhattan,Tribeca,40.72023,-74.00715,Entire home/apt,450,1,10,2016-05-26,0.16,1,0 +2447298,Soho loft with everything,5165749,Ben,Manhattan,SoHo,40.72512,-74.00024,Entire home/apt,650,5,0,,,2,83 +2447460,Cozy Entire Apt1Bd APT inGREAT Loc,12386614,Carlos,Manhattan,East Harlem,40.79926,-73.94499,Entire home/apt,125,3,2,2018-04-15,0.13,1,249 +2447467,Charming Spacious Master Bedroom,12515888,Kaet,Brooklyn,Greenpoint,40.73418,-73.95683,Private room,75,1,35,2019-06-21,0.55,2,306 +2447634,Charming 2BR in Greenpoint,12515888,Kaet,Brooklyn,Greenpoint,40.73348,-73.95689,Entire home/apt,154,1,7,2019-06-21,0.11,2,213 +2447868,Charming Upper West Side Studio,6717488,Francesca,Manhattan,Morningside Heights,40.8049,-73.96315,Entire home/apt,60,14,12,2017-06-22,0.19,1,0 +2451110,2019 Special! LARGE West Village 1 BED!,12533228,Rose,Manhattan,Greenwich Village,40.72908,-73.9965,Entire home/apt,279,1,78,2019-05-12,1.22,1,363 +2451438,Quiet & private room in luxury doorman bldg,10193030,Kaori,Manhattan,Harlem,40.82349,-73.94193,Private room,80,3,3,2017-10-03,0.05,2,178 +2451647,"Bright, Modern Room in East Village!",64442,Reka,Manhattan,East Village,40.72598,-73.97778,Private room,84,1,184,2019-07-01,2.86,2,59 +2453730,"Sunny, charming duplex in best Brooklyn 'hood",10232293,Georgia,Brooklyn,Gowanus,40.67906,-73.99093,Entire home/apt,180,6,1,2019-07-05,1,1,26 +2453739,Awesome Child Friendly Apartment!,6369087,Andrea,Brooklyn,Crown Heights,40.67652,-73.95713,Entire home/apt,100,5,7,2018-08-21,0.11,1,0 +2454281,Private room in Clinton Hill,5696628,Christine,Brooklyn,Bedford-Stuyvesant,40.69011,-73.96026,Private room,86,2,20,2019-06-30,0.31,2,35 +2454504,Center Park Slope 2 Bedroom Townhouse Apartment,6718172,Sharon,Brooklyn,Park Slope,40.67348,-73.9779,Entire home/apt,189,7,13,2019-06-20,0.39,1,33 +2454507,Close to everything - Jr 1 bedroom,9991763,Andrew,Manhattan,Financial District,40.70781,-74.00701,Entire home/apt,130,365,6,2016-10-02,0.10,1,262 +2457755,Ultimate Luxury Manhattan Apartment,4335080,Tiffany,Manhattan,Hell's Kitchen,40.76852,-73.98735,Entire home/apt,150,1,94,2019-06-23,1.48,2,215 +2458656,Beautiful 1br loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72708,-73.94171,Entire home/apt,149,30,1,2018-04-14,0.07,52,0 +2458811,Gorgeous Private 1BR. 10m to MHTN.,4549281,Ido,Queens,Astoria,40.75705,-73.91771,Entire home/apt,83,14,0,,,1,0 +2459587,Upper East Side Large 2 Bedroom,12575621,Daniel,Manhattan,Upper East Side,40.78474,-73.94974,Entire home/apt,180,1,0,,,1,0 +2459916,"$455 Cozy 1bd, BKLYN Sublet March",12577771,Victor,Brooklyn,Bedford-Stuyvesant,40.68948,-73.93528,Private room,18,1,0,,,1,0 +2460303,Charming Brooklyn Brownstone,12579916,Andrea,Brooklyn,Park Slope,40.68091,-73.9766,Entire home/apt,100,2,1,2014-06-09,0.02,1,0 +2460611,1890s North Williamsburg Townhouse,4137875,Rachel,Brooklyn,Greenpoint,40.72559,-73.95033,Private room,145,2,21,2019-04-22,0.45,1,64 +2461439,Pristine Lower East Side Sanctuary,12586492,Sausan,Manhattan,Lower East Side,40.72007,-73.98946,Entire home/apt,133,14,177,2019-05-03,2.82,2,221 +2461540,Big BR 15 min away from Manhattan,12587147,Joao,Queens,Astoria,40.75799,-73.92006,Private room,75,7,186,2019-06-10,2.93,1,193 +2464673,Beautiful Bright & Airy Guest Room ,1262622,Mike And Lucy,Brooklyn,Williamsburg,40.70669,-73.93578,Private room,100,2,16,2016-07-28,0.25,1,341 +2464679,East Village,6530413,Chris,Manhattan,East Village,40.73237,-73.98918,Shared room,99,1,94,2015-05-10,1.46,1,0 +2465333,Spacious one bedroom in prime Fort Greene,12058474,Garth,Brooklyn,Fort Greene,40.68825,-73.98038,Entire home/apt,132,3,5,2016-11-26,0.14,1,0 +2465699,Beautiful Central Park Apartment!,12608261,Jimmie,Manhattan,Harlem,40.79841,-73.95257,Private room,72,2,27,2019-04-12,0.44,1,183 +2465962,1 BEDROOM ENTIRE HOME/APT❤ ASTORIA,1000014,Amy,Queens,Astoria,40.76122,-73.91163,Entire home/apt,125,1,13,2015-09-28,0.22,1,0 +2466687,"New, spacious 1BD in Williamsburg",8778997,Lee,Brooklyn,Williamsburg,40.71512,-73.94978,Entire home/apt,102,7,26,2019-05-27,0.41,1,2 +2466770,New Factory Converted Studio Loft,7503643,Vida,Brooklyn,Greenpoint,40.72574,-73.94146,Entire home/apt,129,30,3,2017-11-06,0.05,52,303 +2466816,"2 Bedroom in Carroll Gardens West, minimum 1 month",101924,Seth,Brooklyn,Columbia St,40.68727,-74.00352,Entire home/apt,107,30,35,2019-07-04,0.55,1,18 +2467087,BEAUTIFUL ARTIST APT IN NOLITA w/ Private Backyard,12616627,Nico,Manhattan,Nolita,40.72297,-73.99539,Entire home/apt,250,1,2,2016-01-02,0.05,1,0 +2467377,Centrally located in Bayside / Nice,7801481,Inez,Queens,Bay Terrace,40.78645,-73.77958,Private room,90,3,8,2019-01-15,0.25,2,324 +2467680,Upper West Side Lux Apt. Available 8/5-8/14/2017,12620213,Lara,Manhattan,Upper West Side,40.78792,-73.97758,Entire home/apt,200,4,0,,,1,0 +2467879,"Great, cozy room in Williamsburg!",786862,Cristina,Brooklyn,Williamsburg,40.71841,-73.95992,Private room,90,1,2,2015-04-30,0.03,1,0 +2468186,Luxury Living Near Central Park,4665764,Ziporah,Manhattan,Upper West Side,40.79838,-73.96388,Private room,200,5,20,2019-01-01,0.33,1,0 +2471108,Prime Brooklyn 1BR-10min to City!,12637520,Laura,Brooklyn,Boerum Hill,40.68955,-73.98885,Entire home/apt,160,7,7,2016-09-12,0.15,1,0 +2471725,Awesome Spot near HK/Theatre Distri,12366541,Pj,Manhattan,Hell's Kitchen,40.76269,-73.9907,Private room,124,5,196,2017-12-06,3.02,2,149 +2471815,"Sunny Master Suite: large bdrm, priv bth, priv liv",12641005,Omar,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95279,Private room,95,4,171,2019-06-30,2.72,1,137 +2471910,Studio Loft with 2 queen beds and large kitchen,7503643,Vida,Brooklyn,Greenpoint,40.72591,-73.9422,Entire home/apt,129,30,2,2017-10-31,0.04,52,341 +2472636,Full Floor Apt with NY Skyline views,10431172,En,Brooklyn,Williamsburg,40.71492,-73.94124,Private room,110,4,66,2019-06-22,1.04,1,323 +2473611,Overlooking Harlem,12649246,Leah,Manhattan,Harlem,40.80121,-73.95002,Private room,92,2,173,2019-06-19,2.71,1,276 +2473861,Royal Harlem TRIPLEX Home 5 Beds,8826175,Grover,Manhattan,Harlem,40.80705,-73.94452,Entire home/apt,175,3,157,2019-06-22,2.46,3,38 +2477138,Private Room: The cheapest deal!!,9089934,Siddharth,Queens,Ozone Park,40.67948,-73.85335,Private room,30,7,0,,,1,0 +2478415,Red Hook Classic Townhouse w Garden and Treehouse,12516367,Peter,Brooklyn,Red Hook,40.68075,-74.00961,Entire home/apt,134,2,157,2019-06-25,2.45,1,264 +2478825,2 BR Designer's Apt in Heart of NYC,2935265,Andrew,Manhattan,SoHo,40.72337,-74.00175,Entire home/apt,400,1,18,2019-01-02,0.28,2,30 +2479193,Chic New York city apartment,7974574,Vanita,Manhattan,Kips Bay,40.744,-73.98054,Entire home/apt,152,270,5,2016-01-06,0.10,1,0 +2485482,Boutique Apt. NYC by 24 HR Metro,12718658,Ray,Queens,Jackson Heights,40.75484,-73.8764,Shared room,75,2,0,,,1,0 +2487073,18th Floor Bright Bedroom with Private Bathroom,6194434,Chiara,Manhattan,Financial District,40.70933,-74.00381,Private room,169,8,15,2019-06-10,0.24,1,60 +2487848,Quintessential W'burg Apartment,12358955,Priya,Brooklyn,Williamsburg,40.71116,-73.96078,Private room,95,2,156,2019-06-10,2.43,2,274 +2487851,Quintessential W'burg Private Room,12358955,Priya,Brooklyn,Williamsburg,40.71072,-73.96143,Private room,90,2,142,2019-06-16,2.22,2,306 +2488022,Sunny Quiet Room In Harlem,12732806,Jerome,Manhattan,Harlem,40.8151,-73.95147,Private room,60,1,19,2018-10-22,1.34,1,356 +2488227,COZY 1 BR IN COOL LOWER EAST SIDE,12732385,Asaf,Manhattan,Lower East Side,40.72005,-73.98609,Entire home/apt,180,6,55,2019-06-15,0.85,1,97 +2489407,Peaceful Bed w Breakfast - Manhattan,3562864,Daniel,Manhattan,Upper East Side,40.77194,-73.94773,Private room,84,3,150,2019-06-21,2.38,1,294 +2489615,Big Sunny Bushwick Apartment,2498724,Josh,Brooklyn,Bushwick,40.70451,-73.92588,Entire home/apt,98,4,32,2019-05-15,0.50,1,8 +2489920,Charming Studio!--Brooklyn College ,9543143,Angel,Brooklyn,Flatlands,40.62338,-73.94078,Entire home/apt,90,7,21,2015-12-29,0.33,1,0 +2492275,Charming Apartment in Greenpoint,4543994,Dusan,Brooklyn,Greenpoint,40.72771,-73.95382,Entire home/apt,134,6,6,2017-02-07,0.09,1,0 +2493039,Private Room in Large Two-floor Apt w/ Backyard,598167,Michael,Manhattan,Chelsea,40.75066,-73.9972,Private room,119,2,32,2017-10-30,1.09,1,0 +2493176,Cozy spacious UES studio,12760201,Megan,Manhattan,Upper East Side,40.77574,-73.9524,Entire home/apt,141,1,20,2018-06-05,0.33,1,0 +2495596,Charming 1 Bedroom in West Village,12773532,Idan,Manhattan,Greenwich Village,40.73405,-73.99725,Entire home/apt,199,4,3,2015-07-13,0.05,1,0 +2496301,"Comfy, Roomy Bushwick 1-BR ~ Steps from L/M Train",4142684,Suzette,Brooklyn,Bushwick,40.69587,-73.9096,Entire home/apt,108,3,232,2019-07-06,3.62,1,89 +2500087,NYC Steps from Central Park!,12796040,Robyn,Manhattan,Hell's Kitchen,40.7673,-73.98809,Entire home/apt,150,5,3,2015-01-05,0.05,1,0 +2500560,"Ingefära Hus! One bedroom Williamsburg, Brooklyn",179679,Ginger,Brooklyn,Williamsburg,40.71009,-73.95741,Entire home/apt,175,2,46,2019-02-18,0.72,3,14 +2501384,Private 1Bed/Bath in Sunny 3Bed Apt,3030031,Elizabeth,Brooklyn,Boerum Hill,40.68844,-73.98513,Private room,90,3,5,2016-09-12,0.08,1,0 +2501809,Parkside Apartment on Prospect Park,12806055,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.6574,-73.96174,Private room,45,2,3,2015-09-21,0.06,1,151 +2507612,Mamas red rm#2- profs-interns-students bklyn train,12834599,Ms. Edith,Brooklyn,Borough Park,40.63256,-73.99453,Private room,49,3,0,,,4,180 +2508374,Cozy 1br mins from CASINO JFK & NYC,8552126,Claudius,Queens,Jamaica,40.67349,-73.76951,Entire home/apt,63,3,146,2019-06-20,2.28,2,23 +2508745,Historic Harlem 2,3905432,Rose,Manhattan,Harlem,40.81456,-73.94583,Private room,100,6,13,2019-05-31,0.22,2,308 +2509093,Private Room in WILLIAMSBURG,3034421,Heather,Brooklyn,Williamsburg,40.71683,-73.95623,Private room,110,1,38,2018-04-22,0.63,1,157 +2509617,Georgous 3BD in 24-hr doorman bldg,12622830,Ana,Manhattan,Upper East Side,40.77979,-73.96153,Entire home/apt,600,1,0,,,1,0 +2510394,"HUGE LUXURY 2BD/2B, 7mn TO TIME SQR",12851900,Dominique,Queens,Long Island City,40.74263,-73.95594,Entire home/apt,395,7,50,2019-05-01,0.80,1,319 +2513351,Bright and Open Astoria Apartment!,12864943,Tegan,Queens,Astoria,40.76441,-73.92878,Private room,70,3,1,2015-04-06,0.02,2,0 +2514689,3 BEDS IN LOVELY 2BEDROOM/2BATH MIDTOWN RENTAL,12872352,Jada,Manhattan,Midtown,40.75879,-73.96413,Entire home/apt,399,1,87,2017-12-18,1.37,3,267 +2514760,Fully Furnished Upper West Side 1BD,12872812,Scott,Manhattan,Upper West Side,40.79732,-73.97259,Entire home/apt,145,14,22,2018-11-29,0.35,1,282 +2515876,"Comfortable, spacious “ 1 bedroom “ apartment",12878653,Nicholas P,Queens,Astoria,40.76374,-73.90965,Private room,59,14,19,2019-05-07,0.31,1,346 +2516430,Lg Private Rm 10mins to Manhattan,10440985,Jimmy,Queens,Astoria,40.75879,-73.91185,Private room,50,10,1,2016-07-31,0.03,1,0 +2517989,1BR on Quiet Block in Nolita,9229424,John,Manhattan,Nolita,40.72276,-73.99499,Entire home/apt,145,2,52,2019-06-18,0.86,1,0 +2518907,"Art-Packed, One-Of-A-Kind Triplex",10264377,Anthony,Manhattan,East Village,40.73101,-73.98936,Entire home/apt,245,2,3,2015-12-22,0.07,1,0 +2519112,in the heart of manhattan,9372538,Fabiola,Manhattan,Hell's Kitchen,40.76152,-73.98793,Private room,149,1,158,2019-06-13,3.11,2,78 +2519255,Beautiful Brooklyn Room,808206,Brenna,Brooklyn,Bushwick,40.70365,-73.92711,Private room,50,1,1,2014-04-11,0.02,1,0 +2519770,2-3 bedroom apt in Astoria NYC,12899510,Solange,Queens,Ditmars Steinway,40.77804,-73.91623,Entire home/apt,150,1,1,2014-08-28,0.02,1,0 +2519879,Cozy private room in L.E.S -,10149453,Girish,Manhattan,Lower East Side,40.71934,-73.98196,Private room,110,3,0,,,1,0 +2521670,Spacious Studio in Prospect Heights,6723969,Mari,Brooklyn,Crown Heights,40.67571,-73.95161,Entire home/apt,60,1,2,2014-04-21,0.03,1,0 +2523629,ENTIRE APT IN GORGEOUS PARK SLOPE,12921356,Elizabeth,Brooklyn,South Slope,40.66517,-73.98637,Entire home/apt,165,5,7,2015-12-31,0.11,1,0 +2524034,Nice room Convenient to Manhattan A,8288419,Jason,Brooklyn,Borough Park,40.64426,-73.99555,Private room,53,1,162,2019-06-13,2.51,4,60 +2524058,Huge 1 bedroom in the East Village,918543,Simona,Manhattan,East Village,40.72314,-73.98491,Entire home/apt,160,5,0,,,1,0 +2524213,Nice room Convenient to Manhattan C,8288419,Jason,Brooklyn,Borough Park,40.64601,-73.99765,Private room,38,1,40,2019-06-16,0.62,4,280 +2524228,Nice room Convenient to Manhattan B,8288419,Jason,Brooklyn,Borough Park,40.64447,-73.99574,Private room,49,1,96,2019-06-12,1.51,4,120 +2524451,Close to Maimonides Center. Room D,8288419,Jason,Brooklyn,Borough Park,40.64492,-73.99612,Private room,47,1,90,2019-06-08,1.43,4,74 +2524658,"Unique loft in Bushwick - Offices, yoga & roof!",1091832,Julie,Brooklyn,Bushwick,40.69728,-73.93066,Entire home/apt,120,2,15,2019-03-10,0.24,1,61 +2524947,Gorgeous Apartment in Battery Park!,7520792,Jenna,Manhattan,Financial District,40.70558,-74.01533,Entire home/apt,175,2,45,2016-02-21,0.76,1,0 +2525956,Beautiful 1 Bdr in the heart of NYC,7365834,Alex,Manhattan,Theater District,40.76084,-73.98367,Entire home/apt,129,30,16,2017-12-01,0.25,5,171 +2526152,"Sunny, Child Friendly Loft. ",11825464,SirRoan,Brooklyn,Crown Heights,40.67901,-73.96237,Private room,105,1,1,2014-05-02,0.02,1,0 +2529085,Sunny luxury in Bklyn's best hood,1210541,Jodie,Brooklyn,Carroll Gardens,40.68287,-73.99082,Entire home/apt,275,2,3,2018-06-24,0.05,1,0 +2530057,1BD in a Quiet Brownstone in Harlem,3237558,Andre,Manhattan,Harlem,40.81927,-73.94631,Private room,99,1,0,,,1,0 +2531865,Flatiron studio + dining / sunlight,4517005,Ryan,Manhattan,Kips Bay,40.73905,-73.98161,Entire home/apt,210,1,32,2018-05-08,0.50,1,0 +2532068,Beautiful Prewar UWS Apartment,12967572,Laura,Manhattan,Upper West Side,40.77929,-73.97787,Private room,65,1,1,2015-09-01,0.02,1,0 +2532443,LUXURY 2BED CONDO / OUTDOOR STONE TERRACE,4636483,Christina,Brooklyn,Sunset Park,40.63747,-74.01153,Private room,52,3,5,2019-06-03,0.11,1,281 +2532873,Beautiful Master Bedroom in the Heart of Astoria,12972780,Ismail,Queens,Astoria,40.76163,-73.91783,Private room,100,1,13,2019-05-20,0.51,2,0 +2536005,Bright Room in Battery Park!,9426702,KayCee,Manhattan,Battery Park City,40.70657,-74.01676,Private room,91,2,26,2017-07-27,0.44,1,0 +2538248,Large newly renovated studio ,9743617,Patricia,Manhattan,Harlem,40.81472,-73.94291,Entire home/apt,124,5,124,2019-06-25,1.93,2,279 +2539759,/,4358702,Bram,Manhattan,Harlem,40.82277,-73.94981,Private room,200,1,0,,,1,0 +2540173,Elegant Triplex Townhouse,7821383,Gary,Brooklyn,Prospect Heights,40.67454,-73.96803,Entire home/apt,550,1,24,2017-02-19,0.38,1,0 +2545184,Great room! Good for med students!,4096786,Nicolas,Bronx,Norwood,40.87605,-73.88047,Private room,70,6,40,2019-03-01,0.73,1,313 +2547198,Jewel Box Studio in Soho / Nolita,4291837,Wilson,Manhattan,Nolita,40.72224,-73.99491,Entire home/apt,150,1,156,2019-05-31,2.46,1,111 +2551532,Charm & Beauty close to Manhattan,13063145,Vinneth,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95558,Entire home/apt,176,3,168,2019-06-15,2.64,2,302 +2552606,Beautiful and cozy 1BR Apt,13068601,Martin,Manhattan,Morningside Heights,40.8075,-73.95844,Entire home/apt,99,30,9,2015-01-02,0.14,1,0 +2554110,Great east village studio!,7132792,Milenna,Manhattan,Gramercy,40.73237,-73.98288,Entire home/apt,130,6,2,2017-01-01,0.06,1,0 +2554749,Two real bedrooms near Central Park,9586465,Lang,Manhattan,Hell's Kitchen,40.76518,-73.98746,Entire home/apt,109,1,208,2019-06-22,3.22,1,261 +2557654,East Village Charm,13094498,Doug,Manhattan,East Village,40.72939,-73.98319,Private room,75,2,124,2019-07-07,1.92,1,109 +2559129,Large private bedroom in Manhattan,4912237,Jonathan,Manhattan,Hell's Kitchen,40.76791,-73.98735,Private room,95,4,7,2018-10-08,0.11,1,0 +2560559,Sunny Private Room Near Prospect Pk,2766490,Daisy,Brooklyn,Crown Heights,40.68027,-73.96379,Private room,50,7,1,2016-01-03,0.02,1,0 +2563135,Sunny Private Williamsburg room,6754169,Ellie,Brooklyn,Williamsburg,40.71685,-73.94246,Private room,100,2,38,2016-01-05,0.61,2,0 +2563440,Big & Cozy Private Room,8785876,Alessandro,Manhattan,Harlem,40.8235,-73.95144,Private room,68,1,86,2019-06-10,1.36,1,64 +2563611,Apartment 6,1163315,Craig,Manhattan,Harlem,40.8029,-73.95694,Private room,104,3,298,2019-06-27,4.67,1,42 +2563764,Huge room in South Prospect Park,13125674,Yago,Brooklyn,Flatbush,40.64576,-73.95871,Private room,30,15,1,2018-06-20,0.08,1,0 +2563997,Garden Duplex in Clinton Hill,13067214,Dominick,Brooklyn,Clinton Hill,40.6842,-73.9636,Entire home/apt,595,4,22,2019-01-01,0.39,1,0 +2565087,Williamsburg: great room with a sunny terrace!,13132515,Carlos,Brooklyn,Williamsburg,40.70819,-73.94813,Private room,65,9,12,2019-01-31,0.19,1,0 +2569466,Shared studio in East Harlem,13156191,Serenity,Manhattan,East Harlem,40.79731,-73.94231,Shared room,55,1,10,2015-08-18,0.20,1,0 +2569629,Beautiful 2 Bedroom in Quaint Cobble Hill,13156754,Nan,Brooklyn,Boerum Hill,40.68611,-73.99031,Entire home/apt,250,6,6,2019-04-21,0.09,1,56 +2569808,"Williamsburg, Brooklyn Apartment",10302140,Zandy,Brooklyn,Williamsburg,40.71075,-73.95676,Entire home/apt,85,10,40,2019-06-26,0.64,1,324 +2570488,Union Square - Best NYC location,153675,Matteo,Manhattan,East Village,40.73112,-73.98558,Private room,90,5,109,2019-06-22,1.73,2,21 +2570561,Charming apartment river view,1676600,Angie,Manhattan,Washington Heights,40.84309,-73.94127,Private room,90,3,2,2016-07-16,0.03,1,0 +2571224,Williamsburg Bedroom & Study,13165300,Sean,Brooklyn,Williamsburg,40.72002,-73.9578,Entire home/apt,90,14,2,2018-05-08,0.14,1,310 +2571283,Entire home 1 BR+ office or 2 BR best UWS location,5140244,Jennifer,Manhattan,Upper West Side,40.78283,-73.97206,Entire home/apt,199,13,2,2019-01-01,0.03,1,0 +2574386,Luxury Apt - west village/Chelsea,9090698,G,Manhattan,Chelsea,40.74311,-74.00718,Entire home/apt,275,30,2,2014-10-05,0.03,1,365 +2576750,Better than hotel,7451917,Fe,Brooklyn,Bay Ridge,40.63113,-74.02767,Entire home/apt,125,5,0,,,2,213 +2577467,1 BR with private bath new building,2920976,Shay,Manhattan,Harlem,40.8127,-73.94367,Private room,150,3,23,2017-07-01,0.36,1,0 +2578731,Spacious Modern 2BD Apartment,13207016,Jessica,Queens,Rockaway Beach,40.58451,-73.815,Entire home/apt,140,2,14,2014-10-31,0.22,1,0 +2581456,Charming Modern Studio w/Large Garden,413336,Christian,Manhattan,East Harlem,40.79249,-73.94592,Entire home/apt,120,7,0,,,1,6 +2582812,Brooklyn loft apt in industrial building,13225047,Lila,Brooklyn,Williamsburg,40.71997,-73.95945,Private room,60,1,44,2018-03-28,1.24,3,0 +2584258,Lovely home-y room in Bushwick,4612212,Guillaume,Brooklyn,Bushwick,40.69304,-73.92079,Private room,36,10,2,2017-10-01,0.03,1,0 +2586484,Large Private Room,6970030,Wendy,Manhattan,Harlem,40.80546,-73.95221,Private room,85,3,51,2019-06-22,1.27,1,66 +2586794,Private Bedroom in Spacious Brooklyn Apartment,2132620,Eva,Brooklyn,Crown Heights,40.67656,-73.95825,Private room,85,1,4,2017-03-05,0.11,1,0 +2586923,Beautiful Prospect Park South room,12508991,Melinda,Brooklyn,Flatbush,40.64772,-73.96273,Private room,45,7,30,2019-06-16,0.48,1,287 +2590590,Washer&Dryer - 6 Subway stops to NYC / 15 min ride,727585,Frances,Brooklyn,Bedford-Stuyvesant,40.6883,-73.95644,Entire home/apt,92,3,227,2019-07-01,3.61,1,173 +2592640,Great room with awesome amenities!,13272957,Johnny,Brooklyn,Bedford-Stuyvesant,40.69135,-73.94694,Private room,30,1,1,2014-03-28,0.02,1,0 +2598087,Sunny Private Room w/Exposed Brick,13304615,Andrew,Brooklyn,Greenpoint,40.72707,-73.95681,Private room,75,1,3,2018-01-01,0.05,1,0 +2599963,Amazing Penthouse Studio (Midtown East),13314076,Abraham,Manhattan,Midtown,40.75529,-73.96897,Entire home/apt,99,6,15,2018-08-26,0.24,1,0 +2600199,Williamsburg Dream loft,13314736,Justin,Brooklyn,Williamsburg,40.70942,-73.94693,Entire home/apt,100,20,7,2018-09-29,0.21,1,327 +2601402,Cozy 1BR in Beautiful Brooklyn,13322259,Alex,Brooklyn,Boerum Hill,40.68647,-73.98595,Entire home/apt,115,3,54,2018-07-26,0.94,1,188 +2601899,Sun-drenched Artist Loft,8798158,Stephen And Hector,Brooklyn,Bushwick,40.69911,-73.93713,Entire home/apt,175,5,16,2018-12-31,0.25,1,0 +2606083,Large Garden Apartment in BK Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67648,-73.95098,Entire home/apt,112,4,19,2019-06-05,0.52,2,0 +2606370,Beautiful Brownstone near Central Park,13347139,Nicole,Manhattan,Harlem,40.80007,-73.9562,Entire home/apt,450,7,6,2018-08-18,0.16,1,0 +2607583,Exquisite Furnished 1-BR Studio,13347167,AFI Apartments,Manhattan,Upper East Side,40.77231,-73.95588,Entire home/apt,103,30,7,2019-04-30,0.23,29,326 +2607741,Stylish Comfort 1-BR Upper East,13347167,AFI Apartments,Manhattan,Upper East Side,40.77263,-73.95567,Entire home/apt,117,30,0,,,29,331 +2608217,"Lovely, quiet 1-Bedroom Apt",13322169,Sonja,Manhattan,Morningside Heights,40.81503,-73.96029,Entire home/apt,150,5,9,2018-12-30,0.14,1,0 +2611458,close to Manhattan country setting,13373889,Aaron,Staten Island,Concord,40.60375,-74.08065,Private room,129,1,40,2018-10-14,0.85,2,86 +2611765,Luxury One Bedroom Upper West Side,10331953,Omar,Manhattan,Upper West Side,40.79071,-73.97408,Entire home/apt,145,3,8,2016-06-13,0.13,1,0 +2611869,LRG 1 Bdrm w/office and backyard,2681844,Hedia,Brooklyn,Bushwick,40.70318,-73.91462,Entire home/apt,115,14,0,,,1,0 +2612035,UPPER WEST SIDE 2BR APT ,10894722,Naftali,Manhattan,Upper West Side,40.79733,-73.96104,Entire home/apt,90,5,0,,,1,0 +2613864,Sunny Studio NYC West 50's,6222620,Joe,Manhattan,Hell's Kitchen,40.76608,-73.99203,Entire home/apt,90,2,1,2014-04-24,0.02,1,0 +2615065,Beautiful & Tranquil Oasis in a Great Location,524730,Oz,Brooklyn,Williamsburg,40.7165,-73.94842,Entire home/apt,100,30,99,2019-01-09,1.57,2,151 +2618288,Tour like a local,13408910,Tmc,Bronx,Concourse,40.83012,-73.92714,Private room,41,2,12,2018-01-01,0.35,2,0 +2619549,"Charming, Modern 2BR | Central Park",13347167,AFI Apartments,Manhattan,Upper East Side,40.77265,-73.9574,Entire home/apt,145,30,1,2018-09-30,0.11,29,329 +2619802,Incredible 2-BR w/ Kitchen Island!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95675,Entire home/apt,139,30,4,2018-07-29,0.07,29,308 +2620068,Cute Apartment with Great Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77107,-73.95682,Entire home/apt,117,30,6,2019-03-31,0.11,29,255 +2620837,Spacious room in huge loft,4691967,Mark,Brooklyn,Bushwick,40.70065,-73.93862,Private room,50,5,5,2017-09-05,0.12,1,0 +2626457,Cozy Private Room Upper West Side - with Deck!,13451102,Ronnie,Manhattan,Upper West Side,40.79827,-73.96881,Private room,80,1,254,2019-06-23,4.02,1,118 +2627737,"Large Sunny Apt, Great Location!",3881345,Conall,Brooklyn,Prospect Heights,40.67318,-73.96738,Entire home/apt,100,5,10,2016-10-13,0.16,1,0 +2627940,Garden Appartment in Clinton Hill,2818232,Jas,Brooklyn,Fort Greene,40.68661,-73.97054,Entire home/apt,225,3,12,2017-04-16,0.19,1,0 +2627951,Cozy private space in a brand new apartment,4045120,Guyen,Brooklyn,Flatbush,40.64851,-73.96121,Private room,70,1,7,2019-07-01,2.21,1,176 +2628191,Charming Cozy Cool 2BR Apartment. ,12360441,Angel,Bronx,Co-op City,40.86646,-73.82154,Private room,80,3,2,2015-10-13,0.03,1,365 +2631224,Tasteful Room in Charming Two Bedroom Apartment,6243156,Yoni,Manhattan,Harlem,40.82424,-73.94664,Private room,70,2,228,2019-07-06,4.27,1,247 +2632699,Budge private room F,10384906,Susan,Brooklyn,Borough Park,40.63081,-73.99638,Private room,31,1,60,2019-04-01,0.97,5,158 +2633717,Private room in friendly Brownstone,13486605,Rachael And Christopher,Brooklyn,Bushwick,40.69616,-73.93201,Private room,40,1,25,2018-09-15,0.39,1,0 +2634963,North Central Park Apartament,9482259,Radu,Manhattan,Harlem,40.80029,-73.95362,Entire home/apt,290,4,12,2019-07-07,0.20,1,359 +2635078,"GREAT 2bed/2bath/patio, FORT GREENE",1821771,Daria,Brooklyn,Fort Greene,40.68914,-73.9776,Entire home/apt,235,4,23,2019-06-21,0.36,1,31 +2635794,"room in a two bedroom apt, whole apartment",13496782,Nicole,Brooklyn,Williamsburg,40.70719,-73.96407,Entire home/apt,200,1,2,2016-12-12,0.06,1,0 +2635913,beautiful 2br 2bath 2 balconies. ,13497325,Octavio,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94184,Entire home/apt,180,1,0,,,1,0 +2636139,Sunny apt steps from Prospect Pk!,7250500,Heather,Brooklyn,South Slope,40.66141,-73.98097,Entire home/apt,110,1,5,2019-04-28,0.88,1,85 +2636396,Private room in in East Village,13499885,Arash,Manhattan,East Village,40.72839,-73.98613,Private room,120,3,5,2016-05-30,0.09,2,0 +2636532,GORGEOUS Newly-Renovated 2-BR Flat,13347167,AFI Apartments,Manhattan,Upper East Side,40.77278,-73.95753,Entire home/apt,142,30,1,2016-08-13,0.03,29,205 +2636534,Cozy Room in Lower East Side- NYC,4274857,Helena,Manhattan,Lower East Side,40.72073,-73.98954,Private room,105,3,21,2019-07-02,0.33,3,20 +2636643,darling small studio,13501034,Tanya,Manhattan,Upper East Side,40.78061,-73.9498,Entire home/apt,100,10,4,2015-11-06,0.06,1,0 +2636731,Private room in Hell's Kitchen,13295673,João,Manhattan,Hell's Kitchen,40.76503,-73.98827,Private room,102,2,6,2017-11-12,0.26,1,0 +2636762,Beautiful Prime Williamsburg Apt,8481739,David,Brooklyn,Williamsburg,40.71498,-73.96104,Entire home/apt,152,1,334,2019-06-27,5.20,1,269 +2637014,Apt #2: Beautiful 2BR/1BA Crown Hgt,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67228,-73.93352,Entire home/apt,150,28,22,2019-01-05,0.38,2,207 +2637533,Spacious Studio Suite w Adjoining Sunroom,2687435,Abby & Kurt,Queens,Ditmars Steinway,40.77594,-73.91786,Entire home/apt,95,3,25,2019-05-31,3.04,1,6 +2639521,PRIVATE RM #1 STARTING AT $67 A NIGHT,9898029,Anthony,Brooklyn,East Flatbush,40.64942,-73.92482,Private room,67,5,50,2018-09-19,0.80,5,300 +2640467,Private Room with a View in Brownstone Brooklyn,1570348,Clare,Brooklyn,Crown Heights,40.67265,-73.9485,Private room,65,2,51,2019-06-20,0.81,1,73 +2640764,Cozy Room in Williamsburg 3BR,72014,Lulú,Brooklyn,Williamsburg,40.71112,-73.96268,Private room,79,22,21,2019-06-14,0.34,4,313 +2641730,Artist’s Pad on Prospect Park,4282318,Al,Brooklyn,Flatbush,40.65403,-73.95904,Private room,55,1,151,2019-06-23,2.37,2,135 +2644321,"Bright, comfy 1 Bedroom apt in Manhattan",4294396,Angélique,Manhattan,Morningside Heights,40.8098,-73.95722,Entire home/apt,83,60,1,2016-01-08,0.02,1,0 +2645558,A bright spacious one-bedroom ,2653156,Lenny,Manhattan,Gramercy,40.73409,-73.98559,Entire home/apt,200,30,38,2019-01-14,0.65,1,170 +2650690,Carroll Gardens entire apartment,7706697,Barbara,Brooklyn,Carroll Gardens,40.67909,-73.996,Private room,150,4,0,,,2,257 +2651125,"Charming Studio / East Village, NYC",320285,Fabrizio,Manhattan,East Village,40.72816,-73.98035,Entire home/apt,160,10,18,2019-07-03,0.28,1,281 +2651810,Quiet Queens Apt in middle of NYC,13574223,Jimmy,Queens,Maspeth,40.71827,-73.90647,Entire home/apt,80,2,61,2019-06-16,3.13,1,32 +2652865,Classic Upper West Side Getaway!,9951993,Jason,Manhattan,Upper West Side,40.79592,-73.97024,Entire home/apt,159,2,1,2017-11-20,0.05,1,0 +2653186,"Bright, spacious 1BR in UES",13360423,Izumi,Manhattan,Upper East Side,40.77645,-73.94865,Entire home/apt,90,30,13,2016-04-30,0.25,1,0 +2653544,Common Area + Room in Spacious Loft-Like Apt.,157795,Madeline,Brooklyn,Crown Heights,40.67799,-73.94709,Shared room,45,4,11,2015-11-16,0.19,2,0 +2653644,Private 1BR W/ Private Bathroom in Chinatown,6991947,Peter,Manhattan,Two Bridges,40.71226,-73.99416,Private room,100,1,103,2019-06-23,2.21,1,223 +2656394,GORGEOUS LUXURY APARTMENT AND VIEW!,13596820,Michael,Brooklyn,Greenpoint,40.73282,-73.9578,Entire home/apt,125,3,16,2019-07-01,0.25,1,60 +2657689,Your Amazing Vacation Apartment!,9051298,Lydiah,Manhattan,Harlem,40.8106,-73.94647,Shared room,100,1,0,,,2,0 +2658325,"Manhattan, East Village next to Lower East Side",13604945,Fabian,Manhattan,East Village,40.721,-73.98169,Private room,80,4,143,2019-06-23,2.24,1,187 +2659183,"Luxury 5BR Townhouse, Upper East",5907325,Isabel,Manhattan,Upper East Side,40.76791,-73.96509,Entire home/apt,2300,3,32,2018-09-23,0.53,1,139 +2659448,Bedstuy Apartment for Rent,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68852,-73.93588,Entire home/apt,90,30,62,2019-06-01,1.20,3,280 +2659477,Stunning 1BR apt UES/Harlem,2294061,Kurtis,Manhattan,East Harlem,40.7913,-73.94265,Entire home/apt,140,3,2,2015-12-13,0.04,1,0 +2659732,Private room in Charming Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72561,-73.94745,Private room,52,5,7,2019-06-20,0.18,3,342 +2659961,Lovely spacious studio in LES,2319102,Alexandra,Manhattan,Chinatown,40.71675,-73.99092,Entire home/apt,200,2,9,2017-11-04,0.18,1,0 +2660538,A Photographer's Bohemian Artist Dream 1BD,13617251,Michael,Brooklyn,Williamsburg,40.70844,-73.95191,Entire home/apt,94,2,0,,,1,0 +2660576,"Come see Brooklyn, New York",13617520,Howard T.,Brooklyn,Clinton Hill,40.69172,-73.96934,Shared room,40,5,8,2015-02-25,0.13,1,0 +2661098,"New York City, a safe and (mostly) quiet place.",13621509,Renald,Queens,Rego Park,40.72786,-73.86946,Private room,55,2,12,2019-06-23,0.20,1,89 +2663243,Private Room + Balcony in Bushwick.,5352610,Mira,Brooklyn,Williamsburg,40.70585,-73.92698,Private room,69,5,6,2019-05-07,0.10,2,0 +2663296,Spacious One Bedroom in Gramercy ,13632182,Natalie,Manhattan,Gramercy,40.73657,-73.98019,Entire home/apt,200,3,6,2016-08-13,0.09,1,0 +2664975,"Cute Studio in Bushwick BK, NYC",12461367,Brittany,Brooklyn,Bushwick,40.69987,-73.92552,Entire home/apt,100,1,104,2019-06-23,1.65,1,334 +2668311,Quaint Studio Apt. $1300 monthly for one person,197156,Sofia,Brooklyn,Bay Ridge,40.63465,-74.02366,Entire home/apt,53,20,16,2019-06-02,0.27,1,220 +2669352,Cozy 3 bedroom on upper west side,13664226,Rebecca,Manhattan,Upper West Side,40.79512,-73.97092,Private room,425,3,24,2019-06-08,0.39,1,365 +2669366,"Priv. Room in a House,15min,Manhatt",13664245,Denise,Bronx,Claremont Village,40.84192,-73.91108,Private room,40,3,46,2019-05-31,0.72,2,292 +2670522,Zen Bedroom in Artist Loft in Williamsburg,13670148,Michelle,Brooklyn,Williamsburg,40.71209,-73.95196,Private room,40,2,32,2018-08-12,0.50,1,0 +2671402,"1BR - gym, laundry in apt, roof ",706191,Rachel,Brooklyn,Williamsburg,40.71639,-73.95271,Entire home/apt,150,4,0,,,1,0 +2671737,Private room in shared 2BR,8212880,Micky,Manhattan,Washington Heights,40.83677,-73.94314,Private room,65,3,1,2014-04-22,0.02,1,0 +2674267,Comfy UWS Room near Central Park & Times Square,3929012,Kevin,Manhattan,Upper West Side,40.77848,-73.98334,Private room,109,1,288,2019-07-02,4.58,4,103 +2677779,Quaint Room ,8083568,Favio,Queens,Jackson Heights,40.75107,-73.87654,Private room,60,5,66,2019-05-27,1.05,1,348 +2678773,Entire spacious loft Williamsburgh,10846328,Luis,Brooklyn,Williamsburg,40.71262,-73.95292,Entire home/apt,180,3,13,2018-12-29,0.21,2,0 +2679171,"Cozy, close to everything in NY :)",1091875,Jovana,Queens,Long Island City,40.74627,-73.94666,Private room,95,2,126,2019-06-29,1.98,1,39 +2683387,Great Room In Mid Town New York NYC,11837926,Anthony,Manhattan,Midtown,40.76419,-73.98018,Private room,140,7,49,2019-06-13,0.82,3,296 +2683455,4BR Family apt 15 min to Manhattan,1273385,Cecile,Queens,Long Island City,40.74749,-73.92089,Entire home/apt,155,3,4,2015-10-13,0.07,1,0 +2683758,City Life in Harlem,13736818,John,Manhattan,Harlem,40.80494,-73.95638,Entire home/apt,105,5,132,2019-06-20,2.09,1,12 +2684223,Cozy Clean Room in Bed Stuy,4334757,Vashti,Brooklyn,Bedford-Stuyvesant,40.6821,-73.91632,Private room,45,2,53,2019-07-01,0.83,1,365 +2685701,Spectacular Williamsburg 2 BR Loft,1602568,Thomas,Brooklyn,Williamsburg,40.70934,-73.9627,Entire home/apt,330,10,1,2014-08-07,0.02,1,0 +2685844,YUGE Sunlit Furnished Room!,10621468,Mikaela,Brooklyn,Crown Heights,40.66733,-73.95667,Private room,50,30,0,,,1,281 +2686002,Large Clean Room Midtown East NYC,13749425,Juan,Manhattan,Midtown,40.75413,-73.96792,Private room,100,2,198,2019-06-09,3.10,1,305 +2686412,Clinton Hill BdRm in Artists' Home,13384586,Julie,Brooklyn,Clinton Hill,40.68274,-73.96487,Private room,49,3,74,2019-06-17,1.16,1,284 +2687083,Cozy 1Bdr in Bed Stuy/Clinton Hill,5283121,Sarah,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95033,Entire home/apt,65,1,1,2018-08-14,0.09,1,98 +2687375,Queen Size Foam Mattress,10264372,Tyrell,Manhattan,Harlem,40.82305,-73.93739,Private room,70,1,6,2015-10-12,0.11,1,0 +2687606,Spacious Gramercy 1bdrm. Clean!,3016371,Daniel,Manhattan,Gramercy,40.73701,-73.98242,Entire home/apt,180,3,7,2018-12-30,0.11,1,0 +2690370,Spectacular Views of Mid-Town,480923,Diane,Queens,Long Island City,40.74606,-73.95765,Entire home/apt,130,30,1,2014-08-04,0.02,1,0 +2694274,Fort Greene 2 bedroom Apartment,13788158,Amir,Brooklyn,Fort Greene,40.69265,-73.97009,Entire home/apt,225,3,95,2019-06-21,1.51,2,112 +2694916,BREATHTAKING VIEWS! POOL/GYM ** Central Park,13773574,Cecile,Manhattan,Hell's Kitchen,40.76711,-73.98371,Entire home/apt,225,30,0,,,12,343 +2695367,Bright spacious 3bd; near subways and bus,13795689,Juliette,Manhattan,Washington Heights,40.84203,-73.93985,Private room,85,2,24,2019-06-28,0.63,1,318 +2695372,Charming Studio in Gramercy ,13795760,Eliza Love,Manhattan,Kips Bay,40.74035,-73.98114,Entire home/apt,125,2,0,,,2,0 +2695469,W50's Sunny Studio in a 24/7 DM BL,3038687,Karen,Manhattan,Hell's Kitchen,40.76479,-73.98455,Entire home/apt,99,30,8,2019-05-01,0.14,8,107 +2698645,Just 3 Minutes to Midtown! Live like a NYer!,10851687,Arya,Queens,Long Island City,40.74332,-73.95426,Private room,95,2,185,2019-06-30,2.92,1,140 +2698984,Huge Modern Waterfront Home,13811875,Grace,Queens,Whitestone,40.79721,-73.816,Entire home/apt,400,3,7,2018-09-04,0.15,1,281 +2700296,Sunny Bedroom for two,13792543,Gregory,Manhattan,Harlem,40.8084,-73.95123,Private room,99,3,81,2019-07-01,1.28,3,307 +2700596,Comfortable bedroom for one person,13792543,Gregory,Manhattan,Harlem,40.80697,-73.95203,Private room,85,3,100,2019-06-30,1.60,3,341 +2702351,"Spacious, Safe, and Furnished",13829968,Jonathan,Manhattan,Harlem,40.82907,-73.94939,Entire home/apt,90,5,16,2019-06-08,0.25,1,3 +2702489,Charming Entire ❤️ apartment,13830544,Renee,Brooklyn,Bushwick,40.69574,-73.93111,Entire home/apt,85,5,32,2019-06-16,0.66,3,38 +2707194,Large Sunny Apartment,159726,Tina,Manhattan,Washington Heights,40.83482,-73.94617,Entire home/apt,130,6,5,2014-08-20,0.08,1,0 +2707824,Bedroom with Queensize Bed in Nolita/SoHo,8373183,Arash,Manhattan,Nolita,40.72173,-73.99383,Private room,95,1,32,2018-09-09,0.75,1,0 +2708371,Factory Converted 1BR Loft Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72595,-73.94143,Entire home/apt,149,30,2,2017-07-03,0.08,52,341 +2710417,Cosy One Bedroom in Greenpoint,4341057,Nicole,Brooklyn,Greenpoint,40.72812,-73.94704,Entire home/apt,225,7,2,2015-10-29,0.04,1,0 +2710442,"Charming studio, great location!!!",13871213,Monica,Brooklyn,Williamsburg,40.70666,-73.9506,Entire home/apt,135,2,2,2015-04-14,0.03,1,0 +2711082,Beautiful Home by Central Park,9854463,Ed,Manhattan,Hell's Kitchen,40.7678,-73.9868,Entire home/apt,140,2,41,2017-11-14,0.73,1,0 +2713887,Furnished Studio UES near the Met,13888072,Will,Manhattan,Upper East Side,40.77518,-73.95618,Entire home/apt,200,5,4,2018-09-29,0.07,1,0 +2714699,Sunny Flex 2br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72713,-73.94141,Entire home/apt,159,30,7,2019-01-07,0.12,52,327 +2716009,Large Two Bedroom Brooklyn Loft,3964453,Naz,Brooklyn,Red Hook,40.67795,-74.00747,Entire home/apt,200,2,17,2019-07-03,1.68,1,81 +2716889,Apt #1: 2BR/1BA w/ Backyard,13503154,Clayon Elizabeth,Brooklyn,Crown Heights,40.67203,-73.93494,Entire home/apt,155,28,23,2018-11-03,0.36,2,336 +2716929,Room In Duplex Apartment Steps to Prospect Park!,13903103,Patrizza,Brooklyn,South Slope,40.66481,-73.97807,Entire home/apt,125,150,18,2014-10-13,0.29,1,0 +2719640,"Independant Suite in townhouse: Big, Bright & Calm",6586128,Martine,Bronx,Port Morris,40.80091,-73.91449,Private room,71,4,18,2018-12-30,0.37,2,45 +2719792,"Perfect location, Bushwick Full room in 2 room apt",13917921,Robert,Brooklyn,Bushwick,40.69895,-73.93249,Private room,75,2,26,2019-06-18,1.22,2,266 +2721610,Cozy and quiet 2bd on the UES,13262455,Bridget,Manhattan,Upper East Side,40.77107,-73.95322,Entire home/apt,275,3,7,2017-01-01,0.11,3,157 +2722391,Beautiful Room In Williamsburg ,13931194,Daniel,Brooklyn,Williamsburg,40.70024,-73.95047,Private room,70,7,0,,,1,0 +2722693,Luxury High Rise Near Central Park,3280997,Scott,Manhattan,Theater District,40.76351,-73.98431,Entire home/apt,250,1,1,2014-05-05,0.02,1,0 +2722983,GREAT FOR FAMILIES AND GROUPS!!!,8489537,Tony,Brooklyn,Williamsburg,40.70404,-73.93496,Entire home/apt,200,2,129,2019-07-04,2.03,1,64 +2723019,Cozy & modern 1 br apt in Brooklyn,13934498,Herby,Brooklyn,Prospect-Lefferts Gardens,40.6582,-73.95688,Entire home/apt,90,30,3,2018-03-02,0.08,1,311 +2723338,Peaceful Bedroom in Brooklyn,13933851,Yagil,Brooklyn,Bedford-Stuyvesant,40.69026,-73.92701,Private room,50,4,2,2018-01-01,0.09,2,0 +2723515,Stylish Pre-war,9652075,Devin,Brooklyn,Clinton Hill,40.69418,-73.9677,Entire home/apt,124,4,65,2019-07-01,1.06,1,165 +2723554,Studio apartment Chelsea NYC,13937830,Jenniffer,Manhattan,Chelsea,40.73942,-73.99629,Entire home/apt,110,25,0,,,1,0 +2727166,Cozy Room by Kaufman Studios,136352,Fotis,Queens,Astoria,40.7558,-73.92377,Private room,50,5,37,2019-04-22,0.59,1,313 +2727766,Convenient Private Room in Spanish Harlem (SpaHa),4992804,Zachary,Manhattan,East Harlem,40.79121,-73.94793,Private room,75,2,1,2014-04-17,0.02,1,0 +2728293,East Village w/ Private Bathroom & Roof & Elevator,12511213,Vijay,Manhattan,East Village,40.7221,-73.98259,Private room,90,4,1,2016-06-13,0.03,1,0 +2730497,Entire Private Garden Floor of Brownstone,13974214,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68058,-73.93856,Entire home/apt,130,3,92,2019-06-19,1.45,1,248 +2735650,DISCOUNTED Entire Apt: Prime UWS location!,13968910,Mike,Manhattan,Upper West Side,40.79496,-73.97349,Entire home/apt,140,1,19,2018-08-08,0.30,1,0 +2736911,"Full apt-Brooklyn-near park, SUNNY!",3758251,Sarah,Brooklyn,Kensington,40.64468,-73.97208,Entire home/apt,200,3,2,2014-10-12,0.03,1,0 +2738377,Carroll Gardens Brownstone,14011859,Ann,Brooklyn,Carroll Gardens,40.68322,-73.99248,Entire home/apt,350,5,6,2016-08-28,0.12,1,0 +2739420,"Cheerful 1 BD in Harlem, New York",3130728,Sarah,Manhattan,Harlem,40.80966,-73.94711,Entire home/apt,100,2,23,2016-12-11,0.39,1,0 +2739577,Current Location,12082653,Taylor,Queens,Long Island City,40.7625,-73.93919,Entire home/apt,225,1,1,2014-05-29,0.02,1,0 +2739707,Vintage Bed/Bath in Bed-Stuy,12449641,Heather,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93055,Private room,65,1,3,2016-05-18,0.07,2,0 +2739793,Modern Sunny 2-Bedroom in Bushwick,14019268,Seth,Brooklyn,Bushwick,40.69686,-73.93042,Entire home/apt,145,5,171,2019-07-01,2.75,2,275 +2739884,Lovely Time Square/Theater District,3417714,Cong,Manhattan,Hell's Kitchen,40.75927,-73.99223,Entire home/apt,189,5,14,2016-06-02,0.25,1,0 +2739978,Spacious Downtown Apartment,14020493,Eva,Manhattan,Greenwich Village,40.73085,-73.99421,Entire home/apt,265,3,6,2018-10-12,0.10,1,29 +2743624,Luxury 2 BEDS/2 BATH Midtown/Central Park,8511789,Marie-Christine,Manhattan,Midtown,40.76544,-73.98186,Entire home/apt,409,1,3,2016-09-11,0.05,1,0 +2744106,BKLYN private room w/ private bath!,12958562,Olivia,Brooklyn,Fort Greene,40.69226,-73.98056,Private room,95,4,12,2017-11-12,0.19,1,0 +2744185,"PRIVATE, GIGANTIC full floor loft w/priv bath",2739598,Sandy,Manhattan,Harlem,40.81677,-73.94371,Private room,175,3,89,2019-05-28,1.41,1,324 +2745620,Small Room Astoria20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.77138,-73.90895,Private room,55,1,115,2019-06-23,1.82,5,30 +2748064,"Spacious 1 bedroom, prime location.",6055938,Al,Manhattan,Hell's Kitchen,40.7645,-73.99314,Entire home/apt,200,4,36,2019-06-08,0.57,1,248 +2748094,Union Square spacious studio,14058714,Craig,Manhattan,East Village,40.73243,-73.98906,Entire home/apt,200,5,51,2019-06-23,0.81,1,88 +2748128,The Haven 2beds,11757212,Jasmine,Brooklyn,Bushwick,40.6982,-73.92852,Private room,69,1,159,2019-06-24,2.89,4,280 +2751311,Beautiful Large Williamsburg Studio,2153455,Rachel,Brooklyn,Williamsburg,40.71813,-73.95869,Entire home/apt,135,5,33,2019-07-06,0.53,1,76 +2752977,Carroll Gardens townhouse,14081811,Linda,Brooklyn,Carroll Gardens,40.68009,-74.00009,Entire home/apt,325,4,12,2018-08-10,0.20,1,0 +2754006,Cool apt in the BEST location in NYC!,933263,Michelle,Manhattan,Lower East Side,40.71542,-73.98511,Private room,95,2,267,2019-06-23,4.20,1,18 +2754179,Fabulous Apt w/ Gorgeous Bathroom!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77249,-73.95756,Entire home/apt,117,30,3,2018-01-04,0.09,29,298 +2755909,Cozy sunny Apt in NYC,3447539,Nick,Manhattan,Washington Heights,40.84915,-73.93848,Private room,59,30,65,2019-06-06,1.33,2,99 +2756159,Living Room sofa Bed in Chelsea2,12750945,Luis,Manhattan,Chelsea,40.74389,-73.99835,Shared room,85,2,65,2019-06-23,1.03,4,171 +2757036,Bayview room,14103991,Ruth,Queens,Flushing,40.75606,-73.81954,Private room,55,1,51,2019-05-26,0.82,4,333 +2760968,Sunny Room in the Heart of it All!,14120733,Lisa,Brooklyn,Williamsburg,40.71614,-73.96134,Private room,80,2,349,2019-06-17,5.54,1,13 +2761766,Spacious apt. in Brownstone,2155360,Evan,Brooklyn,Park Slope,40.66587,-73.97881,Entire home/apt,115,13,2,2016-03-23,0.04,1,0 +2763206,COZY PRIVATE BR AT59TH ST MANHATTAN,14133008,Lisa,Manhattan,Midtown,40.75967,-73.96595,Private room,78,12,43,2019-04-29,0.74,1,49 +2764516,East Village Manhattan NYC Bedroom!,2208993,Chris,Manhattan,East Village,40.72278,-73.98497,Private room,150,3,38,2019-06-17,0.60,3,357 +2769718,Bright and spacious 2 bed apartment,14163479,Yulia,Brooklyn,Park Slope,40.67736,-73.98084,Entire home/apt,195,5,3,2016-10-27,0.05,1,0 +2771126,Large Loft in Brooklyn w/ Deck,2333018,Max,Brooklyn,Clinton Hill,40.68998,-73.96072,Entire home/apt,142,10,8,2019-01-03,0.13,1,157 +2771877,Central Park Treasure,14174901,Anasha,Manhattan,Upper West Side,40.78694,-73.97384,Entire home/apt,150,20,0,,,1,0 +2772111,It's very warm and friendly.,14176488,Ada Azra,Bronx,Fordham,40.86705,-73.88545,Shared room,55,7,10,2018-10-13,0.16,1,365 +2773754,Lovely 1-bedroom on Prospect Park,3883648,Jenn,Brooklyn,Windsor Terrace,40.66044,-73.97977,Entire home/apt,97,30,5,2019-06-15,0.12,1,282 +2774381,Brooklyn Studio,1253739,Ariana,Brooklyn,Flatbush,40.64602,-73.95964,Entire home/apt,70,20,11,2018-12-30,0.21,1,211 +2774934,Females only for midtown apt share,1866728,Jeani,Manhattan,Upper West Side,40.77024,-73.98746,Shared room,70,1,225,2019-07-07,3.53,1,262 +2775553,Experience ELEGANT LIFESTYLE,9421493,Frances,Manhattan,Upper West Side,40.77852,-73.98577,Private room,155,5,24,2018-10-14,0.40,1,88 +2776119,Studio Apt Avail - Convenient to City & Hot Spots,14197781,Bruce,Brooklyn,Bedford-Stuyvesant,40.69707,-73.93914,Entire home/apt,68,30,3,2016-12-13,0.09,1,0 +2778250,Queen size bedroom with river view! (Female only),4417252,Amina,Manhattan,Harlem,40.83252,-73.94916,Private room,68,9,31,2019-06-22,0.61,1,129 +2781747,Beautiful brownstone apartment,309329,Eilon,Brooklyn,Carroll Gardens,40.68235,-74.00047,Entire home/apt,150,2,52,2019-07-01,1.33,1,53 +2782449,1BD on Smith St. in Carroll Gardens,621971,Ethan,Brooklyn,Carroll Gardens,40.68238,-73.99481,Entire home/apt,150,4,0,,,1,0 +2783468,Nice 1 Bedroom in Lovely Building,3187645,Ken,Manhattan,Upper East Side,40.77349,-73.95137,Entire home/apt,150,6,1,2014-04-28,0.02,1,0 +2784311,"1 Bedroom East Village, NYC",10870477,Henriette,Manhattan,East Village,40.72105,-73.9814,Private room,100,1,1,2018-05-25,0.07,1,365 +2786015,Comfortable Strivers Row Hideaway - Monthly Rental,8925763,Joy,Manhattan,Harlem,40.81781,-73.94577,Entire home/apt,110,30,101,2019-03-09,1.61,2,331 +2788298,Fort Greene Perfect Location,14262697,Eric,Brooklyn,Fort Greene,40.69056,-73.98038,Entire home/apt,150,3,1,2015-05-19,0.02,1,0 +2789713,New- Downtown Brooklyn Apt- 10 min Manhattan,14269155,Stephen,Brooklyn,Boerum Hill,40.68671,-73.98952,Entire home/apt,160,5,0,,,1,24 +2791446,CUTE Studio in the heart of Chelsea,7069480,Marc,Manhattan,Chelsea,40.74309,-73.99436,Entire home/apt,218,6,53,2019-07-01,0.90,1,304 +2791688,Downtown NYC Soho Loft 2br,4731948,Kiki,Manhattan,Nolita,40.72106,-73.99417,Entire home/apt,430,1,24,2019-05-22,0.38,4,14 +2791758,Bright Modern Room with Balcony and City Views,2637408,Chris,Brooklyn,Williamsburg,40.71173,-73.94955,Private room,79,3,115,2019-07-01,2.83,2,111 +2791797,Greenwich Village Chic Cottage,9031632,Martina,Manhattan,West Village,40.73571,-74.00375,Entire home/apt,120,1,58,2019-06-23,0.91,1,99 +2793004,Sunny Brooklyn Heights Apartment,14285627,Norman,Brooklyn,Brooklyn Heights,40.69297,-73.99758,Entire home/apt,200,5,42,2018-06-08,0.67,1,15 +2793630,Gorgeous Loft in Prime Location 2 with Rooftop,14289427,Francesca,Manhattan,Chinatown,40.71418,-73.99295,Private room,120,5,12,2018-10-17,0.19,3,0 +2793740,East Village loft; authentic NY.,9509125,Leo,Manhattan,East Village,40.72266,-73.98337,Private room,250,3,0,,,1,365 +2793834,Central Park beauty,14290739,Stanton,Manhattan,Upper West Side,40.79194,-73.96913,Entire home/apt,200,30,28,2018-01-15,0.45,3,0 +2794725,LOOK! Attached single family,14295613,Skylar,Staten Island,Clifton,40.62578,-74.07356,Entire home/apt,75,1,1,2014-04-19,0.02,1,0 +2794734,Spacious brownstone parlour ,2343136,Tyson,Brooklyn,Cobble Hill,40.68811,-73.99421,Entire home/apt,175,1,2,2015-04-26,0.03,1,0 +2794762,Beautiful Sunny fully Furnished Studio,251842,Virginie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.93876,Entire home/apt,76,31,1,2017-04-28,0.04,1,333 +2799360,Beautiful 1 Bed - Great Transport Links,14317804,Samantha,Manhattan,Upper West Side,40.78414,-73.9783,Entire home/apt,75,1,2,2018-02-22,0.10,1,0 +2801214,Huge duplex in chic area of BK with deck.,14325632,Sil,Brooklyn,Crown Heights,40.67301,-73.95312,Entire home/apt,400,30,22,2015-02-22,0.35,2,171 +2801300,cozy room /female guests,14103991,Ruth,Queens,Flushing,40.75611,-73.81957,Private room,75,1,48,2019-06-23,0.77,4,355 +2803013,Columbus Circle/Central Park - WIFI,8497788,Cyn,Manhattan,Hell's Kitchen,40.7642,-73.99133,Entire home/apt,189,3,1,2014-10-04,0.02,1,0 +2803944,Lovely Private Bedroom in 2BR Apt,3181226,Emily,Queens,Woodside,40.74235,-73.90375,Private room,55,1,1,2015-09-05,0.02,1,0 +2803981,Room in Duplex Apartment!!,11330223,Ger,Brooklyn,Williamsburg,40.71389,-73.9657,Private room,80,5,11,2016-05-22,0.18,1,0 +2804065,Chic Mid Century Modern 1 BD +Gym +Laundry +AC,14343538,Cash,Brooklyn,Bushwick,40.70012,-73.93062,Private room,69,3,19,2017-11-24,0.31,1,238 +2804557,Cozy bedroom in shared 2br apt,8741682,Ines,Manhattan,Morningside Heights,40.80504,-73.96454,Private room,100,4,1,2015-04-25,0.02,1,0 +2804989,"Sunny, colorful, 1BD close to city ",2918667,Neisha,Queens,Sunnyside,40.74405,-73.91502,Entire home/apt,100,1,1,2014-05-27,0.02,1,0 +2805293,Large & Stunning 5th Ave 1 BR,5225737,Brandon,Manhattan,West Village,40.7339,-74.00177,Entire home/apt,300,5,19,2019-01-02,0.30,1,219 +2806791,PRIVATE ROOM IN NEW YORK MANHATTAN,11725608,Juan,Manhattan,Washington Heights,40.83333,-73.94182,Private room,53,3,209,2019-07-03,3.29,2,117 +2807615,1 bedroom in the heart of the UWS,14361027,Matthew,Manhattan,Upper West Side,40.78882,-73.97945,Entire home/apt,179,2,15,2017-05-20,0.26,1,0 +2807939,Ditmas Park 1BR,14362628,Michael,Brooklyn,Flatbush,40.6435,-73.96065,Entire home/apt,100,8,0,,,1,0 +2814076,Charming 1br apartment in Astoria,6364557,Fernando,Queens,Astoria,40.7576,-73.92698,Entire home/apt,130,4,45,2019-06-16,0.82,1,170 +2814931,Large New York style loft ,14399467,Caroline,Bronx,Port Morris,40.80554,-73.92606,Entire home/apt,120,4,89,2017-11-11,1.54,2,0 +2816152,Bright/Sunny/1block from Bedfordsub,2739024,Jerome,Brooklyn,Greenpoint,40.7202,-73.95191,Private room,150,7,25,2017-11-12,0.42,1,16 +2817967,Beautiful Studio Suite! Upper East,13347167,AFI Apartments,Manhattan,Upper East Side,40.77125,-73.95735,Entire home/apt,105,30,5,2019-03-23,0.09,29,265 +2818471,Sunny Bedford Stuyvesant Townhouse,7850260,Raymond,Brooklyn,Bedford-Stuyvesant,40.68576,-73.92211,Entire home/apt,150,1,197,2019-07-01,3.19,3,209 +2821079,Spacious 1 BR apt in the UWS,2333304,Roger,Manhattan,Upper West Side,40.77589,-73.98188,Entire home/apt,200,1,1,2014-07-15,0.02,1,0 +2821294,Beautiful Furnished Room!,5986790,Gen,Manhattan,Washington Heights,40.83418,-73.94274,Private room,39,30,18,2019-05-27,0.30,6,168 +2821782,"Sunny, ample, quiet w/balcony!",14435551,Denise,Manhattan,Harlem,40.8068,-73.94258,Entire home/apt,67,5,6,2017-08-17,0.12,1,0 +2823023,"Cozy One Bedroom + Loft in Manhattan, NYC",14441566,Paula,Manhattan,Midtown,40.76147,-73.9761,Entire home/apt,200,4,7,2019-06-24,0.93,1,32 +2824329,Spacious Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94136,Entire home/apt,129,30,3,2015-11-06,0.05,52,336 +2825322,nice room in bedstuy D,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95136,Private room,55,1,67,2019-06-28,1.11,15,307 +2830518,"Safe Clean Sunny, 15 min Manhattan",11363157,Delia,Queens,Astoria,40.76123,-73.92177,Private room,65,50,30,2015-11-15,0.48,1,198 +2831424,Cozy Studio On The Upper East Side,12795393,Bee,Manhattan,Upper East Side,40.77065,-73.95495,Entire home/apt,100,3,18,2016-10-04,0.29,1,0 +2833998,Clean apartment at Harlem 125/lenox.,3289988,Emilie,Manhattan,Harlem,40.80925,-73.94226,Private room,55,5,0,,,1,90 +2835159,Large studio,7915183,Alfonso,Manhattan,Midtown,40.75546,-73.96762,Entire home/apt,240,1,1,2014-05-19,0.02,1,0 +2835711,"Sunny West Village apt, 2 beds",3237504,Aspen,Manhattan,Greenwich Village,40.73083,-74.0006,Entire home/apt,150,3,33,2019-05-31,0.52,1,107 +2835738,Apt Lincoln Center And Central Park! Best location,2074433,Anna,Manhattan,Upper West Side,40.77397,-73.98242,Entire home/apt,299,2,155,2019-06-21,2.46,1,267 +2836845,Old World Elegance in Astoria!,10987233,Anastasia,Queens,Ditmars Steinway,40.77297,-73.91604,Entire home/apt,160,2,175,2019-07-01,2.78,1,269 +2838061,Charming Bedroom in renovated Apart,14518375,Chriis,Manhattan,East Harlem,40.78833,-73.94888,Private room,299,1,0,,,1,365 +2838354,"Large 1-bedroom, 2 blocks from park",8867917,Steven,Brooklyn,Prospect Heights,40.67446,-73.96324,Entire home/apt,99,17,0,,,1,0 +2845257,Stunning 2BR Penthouse w/City View,7503643,Vida,Brooklyn,Greenpoint,40.72733,-73.9404,Entire home/apt,199,30,5,2019-06-01,0.08,52,311 +2847633,"Charming, central apartment",3864482,Erin,Manhattan,Greenwich Village,40.72842,-73.99903,Private room,100,1,34,2016-09-18,0.55,1,0 +2847652,Cool and comfortable room for rest and relaxation,3056690,Gilberto,Manhattan,Washington Heights,40.83687,-73.94324,Private room,45,4,120,2019-06-24,1.92,1,53 +2848235,Perfect room for one in beautiful home,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85711,-73.91594,Private room,44,2,135,2019-06-16,2.13,4,70 +2851945,Stylish Spacious w Lrge Deck 11231,14582705,S,Brooklyn,Carroll Gardens,40.68108,-73.99381,Entire home/apt,150,2,0,,,1,0 +2854050,Cozy bedroom in the heart of Bushwick,6194657,Sylvia,Brooklyn,Bushwick,40.69727,-73.92373,Private room,100,20,0,,,1,0 +2856036,"Modern Loft, Large Private Terrace.",14601436,Andrea,Manhattan,Lower East Side,40.71484,-73.98977,Entire home/apt,185,5,4,2018-09-29,0.08,1,0 +2856478,Charming Fort Greene 2 BR,6064963,Sarah,Brooklyn,Fort Greene,40.68879,-73.97589,Entire home/apt,150,3,0,,,1,0 +2856770,Family Friendly 3 bedroom 2 bath w. Washer/Dryer,14565422,Janelle,Manhattan,East Harlem,40.78587,-73.94764,Entire home/apt,650,2,67,2019-06-23,1.76,2,283 +2856890,Gay Friendly Room Williamsburg NYC,13759034,Patrick,Brooklyn,Williamsburg,40.71055,-73.95553,Private room,100,2,11,2015-10-05,0.18,1,0 +2858010,☀️Sunny Central Park North☀️,14611970,Chad,Manhattan,Harlem,40.80005,-73.95212,Private room,111,3,104,2019-06-23,1.65,1,317 +2862900,Charming & Bright Studio @ W 50's,3716641,Ofer,Manhattan,Hell's Kitchen,40.76634,-73.98719,Entire home/apt,99,30,8,2018-07-09,0.19,8,139 +2863223,Cozy Room with Private Entrance,14586041,Louie,Brooklyn,Williamsburg,40.70665,-73.95067,Private room,75,7,18,2015-08-12,0.31,1,87 +2863408,Newly Renovated Modern 1-Bed Studio,13347167,AFI Apartments,Manhattan,Upper East Side,40.77233,-73.95627,Entire home/apt,103,30,3,2018-04-07,0.06,29,336 +2863530,APPARTEMENT 2 CHAMBRES ASTORIA NY,14636480,Ilda,Queens,Astoria,40.77182,-73.93129,Entire home/apt,130,4,56,2019-06-15,1.55,1,0 +2863589,Entire Private Modern Studio UPW Manhattan,3716641,Ofer,Manhattan,Upper West Side,40.79193,-73.97443,Entire home/apt,109,30,20,2019-06-07,0.34,8,90 +2863696,Live in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.7196,-73.96335,Private room,95,3,0,,,3,0 +2864637,Ting Ting's Home in Heart of Brklyn,14641776,Ting,Brooklyn,Fort Greene,40.69053,-73.9791,Entire home/apt,100,5,3,2015-05-01,0.05,1,0 +2865117,Huge and beautiful Park Slope Apt,3543836,Glenn,Brooklyn,Park Slope,40.66977,-73.98305,Entire home/apt,155,29,5,2017-08-31,0.08,1,59 +2867115,Room for Rent - Close to City & Clean,14655604,Caitlin,Queens,Sunnyside,40.74547,-73.93184,Private room,60,2,55,2019-06-02,2.64,1,118 +2867463,Brooklyn Brownstone - Prospect Park,13601944,Mark,Brooklyn,South Slope,40.66372,-73.97793,Entire home/apt,195,6,11,2018-07-22,0.18,1,13 +2870603,One Bedroom Apartment,14204809,Alwin,Queens,Jackson Heights,40.75625,-73.87542,Entire home/apt,69,6,78,2019-06-22,1.25,1,30 +2870840,Cozy private room in beautiful apt,1668930,Julio,Manhattan,Washington Heights,40.85084,-73.94125,Private room,72,2,65,2019-06-03,1.05,1,311 +2872288,3 BR duplex with huge backyard,14680576,Cristina,Brooklyn,Crown Heights,40.67007,-73.94729,Entire home/apt,300,2,13,2018-09-08,0.24,1,224 +2872353,Modern 1-Bed Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77105,-73.95727,Entire home/apt,119,30,4,2019-06-08,0.13,29,339 +2874695,Pvt Bedroom in Williamsburg Central,164781,Sine,Brooklyn,Williamsburg,40.71242,-73.96793,Private room,100,30,5,2018-09-30,0.09,1,296 +2874932,The Notorious B.N.B. { The Erhart II },1177497,Jessica,Brooklyn,Clinton Hill,40.6907,-73.96732,Private room,199,1,72,2019-06-08,1.14,11,363 +2875923,"Cozy, Clean, Spacious Apartment!",9638204,Teresa,Manhattan,Harlem,40.82149,-73.93718,Private room,75,1,3,2019-05-19,0.33,2,126 +2876055,Williamsburg Room - 2 Blocks to L Train,5317082,Kells,Brooklyn,Williamsburg,40.71376,-73.94239,Private room,100,21,62,2019-06-30,1.22,2,96 +2879157,Family Friendly Apt,6122006,Allison,Manhattan,Morningside Heights,40.81153,-73.95856,Entire home/apt,125,2,27,2019-06-16,1.00,2,0 +2880336, quaint apartment with city views,14720647,Christian,Queens,Ridgewood,40.71046,-73.91786,Entire home/apt,95,5,25,2015-12-25,0.40,1,0 +2880806,2B & Private Garden A Williamsburg Spacious Escape,1240820,Triny,Brooklyn,Williamsburg,40.71923,-73.95684,Entire home/apt,295,2,110,2019-07-05,1.74,3,151 +2880864,Awesome Apartment in Astoria,14723162,Hugh,Queens,Astoria,40.77162,-73.92626,Private room,149,1,10,2018-10-08,0.17,1,365 +2882666,"UWS Large clean 1Br entire apt, 2 stops fromTiMESQ",6964353,Patricia,Manhattan,Upper West Side,40.79972,-73.96418,Entire home/apt,150,10,6,2016-06-29,0.10,1,0 +2883054,Urban Holiday...,5117939,Shanti,Brooklyn,Crown Heights,40.67335,-73.91881,Entire home/apt,100,5,177,2019-07-01,2.87,1,214 +2887581,June sublet in Prospect Heights,4119786,Shimrit,Brooklyn,Prospect Heights,40.67353,-73.96505,Private room,45,20,0,,,2,0 +2887761,Quiet & Central West Village Artist’s 2 Bedroom,14554858,Sara,Manhattan,West Village,40.72965,-74.00397,Entire home/apt,385,5,44,2019-05-25,0.75,1,180 +2888088,Private space in Brooklyn,14759766,Jerry,Brooklyn,Flatbush,40.6435,-73.96208,Entire home/apt,87,2,132,2019-06-14,3.31,2,233 +2888877,"Sunny, clean studio.",14763882,Paulo,Manhattan,Kips Bay,40.74288,-73.9803,Entire home/apt,180,4,5,2015-11-03,0.10,1,184 +2889377, garden view / female guest ,14103991,Ruth,Queens,Flushing,40.75494,-73.81818,Private room,59,2,48,2019-06-22,0.78,4,185 +2889387,New York City near Staten Is. Ferry,2269517,Rob&Elle,Staten Island,St. George,40.6427,-74.08001,Private room,95,2,234,2019-06-30,3.74,1,264 +2889781,Holidays in Manhattan ,14724243,Inga,Manhattan,Upper East Side,40.77291,-73.95176,Entire home/apt,130,25,3,2018-07-18,0.05,1,161 +2895511,Historic Bed-Stuy,14291250,Alexandra,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91624,Entire home/apt,120,5,136,2019-06-30,2.20,1,254 +2895820,Quiet Room in Central Location,5454390,Tracy & Matt,Manhattan,East Village,40.73362,-73.9892,Private room,113,2,255,2019-07-07,4.05,1,41 +2896760,"Safe, cozy & minutes to NYC",3339701,Angelo,Queens,Ditmars Steinway,40.77503,-73.91882,Private room,60,1,135,2019-06-16,2.14,4,309 +2897507,Private Room in Cozy Brooklyn Apt. for Female,9840901,Anna,Brooklyn,Bedford-Stuyvesant,40.68105,-73.95783,Private room,40,7,16,2019-05-18,0.50,1,221 +2897714,Amazing and Large Modern Studio,7853680,Nesrine,Manhattan,Murray Hill,40.74923,-73.97849,Entire home/apt,250,5,2,2015-04-22,0.03,1,0 +2899082,"Large, Bright Williamsburg Loft",7321253,Kathryn,Brooklyn,Williamsburg,40.71853,-73.96287,Entire home/apt,150,3,0,,,1,0 +2904330,Spectacular Prospect Heights Loft,4123046,Julie,Brooklyn,Prospect Heights,40.68183,-73.97195,Entire home/apt,450,30,0,,,1,0 +2904571,Carroll Gardens Brooklyn Apartment ,6789600,Derek,Brooklyn,Carroll Gardens,40.67786,-73.99871,Entire home/apt,149,6,2,2015-08-07,0.04,1,0 +2906314,Sunny 1BR with Terrace/City Views,195783,Bradley,Brooklyn,Williamsburg,40.71264,-73.94017,Entire home/apt,169,4,33,2015-10-21,0.54,1,0 +2908211,"Lovely Park Slope Apt, Brooklyn",14019963,Kieran,Brooklyn,Park Slope,40.68006,-73.97759,Private room,105,2,88,2019-07-05,1.40,1,93 +2908417,Huge Room in Brooklyn Loft,10593364,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.69924,-73.94057,Private room,42,7,6,2017-09-10,0.10,1,0 +2909006,Loft Like Studio in Luxury Building,14861483,Brian,Manhattan,Battery Park City,40.7162,-74.01565,Entire home/apt,325,1,0,,,1,0 +2909461,Spacious One Bedroom in UWS,14864202,Raymond,Manhattan,Upper West Side,40.78352,-73.97482,Entire home/apt,200,1,9,2015-07-28,0.14,1,0 +2917698,Crown heights Brooklyn House NYC,263500,Claire,Brooklyn,East Flatbush,40.66411,-73.92905,Entire home/apt,160,1,44,2018-04-27,0.74,2,279 +2918225,"Central Penthouse Room, Terrace & Private Bath",1646926,Dave,Brooklyn,Williamsburg,40.71288,-73.95822,Private room,155,2,42,2016-12-11,0.67,1,0 +2918393,Beautiful Garden rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9425,Entire home/apt,151,3,34,2018-12-04,0.54,5,308 +2918732,West Chelsea Brownstone Apartment,4619132,Merrill,Manhattan,Chelsea,40.74411,-74.0029,Entire home/apt,200,1,1,2014-06-13,0.02,1,0 +2918764,Beautiful Spacious Brooklyn Room,6683775,Sophia,Brooklyn,Bushwick,40.70071,-73.92468,Private room,80,2,9,2015-10-16,0.14,1,0 +2919062,Spacious 1 Bedroom in LIC,14906518,Michael,Queens,Long Island City,40.74923,-73.94962,Entire home/apt,119,3,2,2016-10-03,0.05,1,0 +2919330,NearWilliamsburg bridge 11211 BK,14908606,Bianca,Brooklyn,Bedford-Stuyvesant,40.69572,-73.95731,Private room,5000,6,10,2016-01-02,0.16,1,363 +2919578,Artist’s Pad Prospect Park,4282318,Al,Brooklyn,Flatbush,40.65387,-73.95973,Private room,45,1,91,2019-06-22,1.58,2,99 +2919885,"Spacious, Sunny 2BR near subway",7229763,Robert And Zafir,Brooklyn,East Flatbush,40.65267,-73.9485,Entire home/apt,115,7,5,2016-03-24,0.08,1,0 +2922197,Furnished privte room,1447684,Rosa,Brooklyn,Greenpoint,40.73026,-73.95513,Private room,65,1,56,2019-05-07,1.06,3,269 +2924528,Spacious room in the heart of Manhattan (Downtown),14932802,Winona,Manhattan,Chinatown,40.71782,-73.99422,Private room,87,4,9,2018-11-04,0.63,1,89 +2924588,"Exclusive Manhattan , 24 h doormen",14933223,Maria,Manhattan,Midtown,40.75293,-73.97173,Private room,110,14,9,2019-06-01,0.14,1,21 +2924834,RARE: Large Room + Big Townhouse = Better Stay,9576121,Jon,Brooklyn,Williamsburg,40.71416,-73.9488,Private room,80,2,71,2019-02-26,1.13,1,0 +2925138,Steps from Central Park,14935685,Uday,Manhattan,Hell's Kitchen,40.76761,-73.98497,Entire home/apt,250,1,0,,,1,0 +2925397,Quaint room in artist's apartment.,8520430,Jess,Brooklyn,South Slope,40.66449,-73.99047,Private room,63,4,65,2019-01-02,1.34,1,290 +2927005,Charming 2 Bedroom by Prospect Park,17930,Seryn,Brooklyn,Windsor Terrace,40.65541,-73.9761,Entire home/apt,200,5,37,2019-05-27,0.78,2,78 +2931544,Bright 1BR in heart of Greenpoint,3136117,Meg,Brooklyn,Greenpoint,40.73487,-73.95627,Entire home/apt,185,3,9,2017-04-20,0.16,1,0 +2931595,Light filled SoHo walk-up,846521,James,Manhattan,SoHo,40.7241,-74.0042,Entire home/apt,250,2,18,2019-06-30,1.83,1,9 +2931859,2 BR Sun Filled Feng Shui W Village,14970988,Satya,Manhattan,West Village,40.73704,-74.01049,Entire home/apt,130,2,57,2019-04-09,0.94,1,187 +2932263,Cheery Brooklyn Heights Studio!!,9503874,Gillian,Brooklyn,Brooklyn Heights,40.69683,-73.99206,Entire home/apt,185,4,65,2019-06-30,1.18,1,254 +2932779,Huge Room near Prospect Heights,14975379,Lily,Brooklyn,Crown Heights,40.67512,-73.96278,Private room,75,2,5,2015-10-24,0.08,1,0 +2933772,"Large, Bright Apt Near Central Park",11774630,Jane,Manhattan,East Harlem,40.7888,-73.94844,Entire home/apt,240,4,229,2019-07-01,3.67,2,52 +2934382,Sunshine & Cozy Bedtime in Brooklyn,7171571,Nicole,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94689,Private room,65,1,4,2015-10-18,0.08,1,0 +2935456,UWS Luxury Studio Near CentralPark,10395636,Joseph,Manhattan,Upper West Side,40.77435,-73.97889,Entire home/apt,195,2,32,2016-12-19,0.51,1,0 +2936054,October SPECIAL!! Enjoy the Holiday in NYC! Sale!,14990573,Ray,Manhattan,Battery Park City,40.71097,-74.01658,Entire home/apt,200,1,46,2017-10-22,0.74,1,0 +2936192,Bright Quiet Room in the W Village,13908017,Kaytlin,Manhattan,Greenwich Village,40.73034,-73.99992,Private room,120,2,209,2019-06-19,4.07,1,283 +2936517,Boerum Hill 2BR Garden Apartment,686494,Molly,Brooklyn,Gowanus,40.68322,-73.98968,Entire home/apt,180,1,183,2019-06-23,2.90,1,197 +2939670,"Bright Room Near JFK ,LGA & Train with AC",15009272,Yolanda,Queens,Woodhaven,40.6955,-73.86281,Private room,53,3,89,2019-01-03,1.44,2,189 +2940007,Charming one bedroom in the LES,15010803,Carlo,Manhattan,Lower East Side,40.71615,-73.98478,Entire home/apt,200,1,10,2015-05-04,0.16,1,0 +2940163,Sunny 1BR near Central Park close to Columbia U.,15002363,Michael,Manhattan,Harlem,40.80071,-73.9534,Private room,100,3,60,2019-06-08,2.26,1,0 +2940729,Le Petit Château,4963379,Tamoi,Brooklyn,Flatbush,40.63615,-73.95148,Entire home/apt,86,3,62,2017-11-04,1.07,1,0 +2941297,Full 1 bedroom Apt in GREAT Locale,1495881,Zuben,Manhattan,Chelsea,40.73936,-73.99965,Entire home/apt,225,3,6,2016-05-06,0.10,1,0 +2942129,"Bright Large Room near JFK, LGA & Train 2 beds",15009272,Yolanda,Queens,Woodhaven,40.69414,-73.86324,Private room,40,3,136,2019-06-09,2.21,2,291 +2942732,"Large 1 bdrm, River views!",160337,Sanjna,Manhattan,Washington Heights,40.83549,-73.94765,Entire home/apt,60,365,9,2019-06-15,0.15,1,291 +2943724,3 Bedroom @ JFK CASINO BEACH LOCALE,15029400,Astoria,Queens,Bayswater,40.60549,-73.75547,Private room,70,1,13,2015-05-25,0.21,1,220 +2947668,Location Queen Elena,3250450,Petya,Queens,Maspeth,40.73726,-73.89792,Private room,35,30,1,2019-06-28,1,18,364 +2949128,FAB APT & LOCALE in HELLS KCHN PRIVATE SAFE COMFY!,15049157,Marjorie,Manhattan,Hell's Kitchen,40.76375,-73.9924,Entire home/apt,250,3,136,2019-06-21,2.17,1,284 +2952861,Photography Location,1177497,Jessica,Brooklyn,Clinton Hill,40.69127,-73.96563,Entire home/apt,4500,1,5,2018-12-29,0.09,11,365 +2953058,Film Location,1177497,Jessica,Brooklyn,Clinton Hill,40.69137,-73.96723,Entire home/apt,8000,1,1,2016-09-15,0.03,11,365 +2954785,Trendy studio NYC centrally located,15081041,Jaclyn,Manhattan,Murray Hill,40.74551,-73.97757,Entire home/apt,169,5,0,,,1,0 +2956443,Large 2 Floor Apt 2 Bdrm Sleeps 8 ,15089968,Anna,Queens,Richmond Hill,40.70061,-73.84107,Entire home/apt,255,2,60,2019-06-24,0.97,2,297 +2958412,A beautiful modern 3 bedroom apt,15099550,Bah.,Manhattan,Harlem,40.80879,-73.94127,Entire home/apt,290,1,77,2019-07-01,1.25,1,252 +2958912,STUNNING! 1BD Jr in Midtown East NY,15100977,Nataliya,Manhattan,Midtown,40.75969,-73.96644,Entire home/apt,140,300,0,,,1,365 +2959036,Sunny Manhattan Studio,15102869,Ellie,Manhattan,Washington Heights,40.85504,-73.93648,Entire home/apt,115,7,11,2019-04-22,0.30,1,4 +2965008, Family Friendly Brooklyn House,37879,Jeffrey,Brooklyn,Gowanus,40.67024,-73.99351,Entire home/apt,299,3,13,2019-04-24,0.56,1,346 +2966685,Charming West Village Studio - Amazing Location!,3963645,Quyen,Manhattan,West Village,40.73279,-74.00322,Entire home/apt,160,2,13,2018-11-25,0.55,1,0 +2967631,Upper East Side 1BR,15141764,Kevin,Manhattan,Upper East Side,40.78139,-73.95261,Shared room,175,1,1,2015-09-28,0.02,1,0 +2968070,Near Times Square and Hell's Kitchen,14380456,Claude,Manhattan,Hell's Kitchen,40.75971,-73.98979,Private room,120,1,365,2019-07-05,5.81,1,174 +2969427,Artist's Studio in Mansion,1177497,Jessica,Brooklyn,Clinton Hill,40.68975,-73.96724,Private room,179,1,8,2018-10-07,0.13,11,365 +2969489,"Great Room, Bedford L Train!! (10min to Manhattan)",1012583,Mariano,Brooklyn,Williamsburg,40.71587,-73.95934,Private room,74,4,106,2019-05-25,1.71,2,25 +2969803,King Bed or Two Singles - You're choice!,7691518,Brent,Manhattan,Hell's Kitchen,40.76794,-73.98781,Private room,68,1,152,2019-05-23,2.42,2,237 +2969919,Spacious Junior 1BR Apt in USQ/Flatiron,15153596,Allie,Manhattan,Chelsea,40.73726,-73.99399,Private room,235,1,34,2019-07-01,0.68,1,135 +2974433,Stylish Williamsburg Loft Apartment,2363988,Mads,Brooklyn,Williamsburg,40.70775,-73.94214,Private room,100,5,2,2018-01-03,0.07,1,0 +2974877,Sunny and Stylish on the Park,15082988,Karen,Brooklyn,Greenpoint,40.72292,-73.94924,Entire home/apt,270,3,13,2017-04-23,0.22,1,0 +2974957,Open/Sunny 2 BR in Prospect Heights,588899,Lily,Brooklyn,Prospect Heights,40.67925,-73.9688,Entire home/apt,200,14,2,2015-06-18,0.04,1,0 +2975715,August sublet in Greenwich Village,15178288,Michael,Manhattan,Greenwich Village,40.72603,-73.99746,Entire home/apt,161,21,0,,,1,0 +2976105,Crown (Prospect) Heights Brooklyn Room,3259274,Hannah,Brooklyn,Crown Heights,40.67479,-73.95722,Private room,60,2,2,2015-09-07,0.04,2,83 +2976758,Prime location in the east village,15182886,Frederico,Manhattan,East Village,40.7231,-73.98494,Entire home/apt,155,4,44,2019-05-20,0.70,1,341 +2977232,"Priv Room in Artists UES Apt, Central Park & Train",15185319,Alesandra,Manhattan,East Harlem,40.79285,-73.94482,Private room,95,1,270,2019-06-17,4.50,1,288 +2978421,Hip Chinatown Apt in Great Location,5418972,Nico,Manhattan,Chinatown,40.71433,-73.99028,Entire home/apt,125,2,11,2019-05-31,0.27,1,0 +2979097,Perfect NYC Flat! Modern!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77233,-73.9572,Entire home/apt,118,30,1,2017-02-04,0.03,29,308 +2979714,Cozy Private RM Near Central Park N,15198359,Grace Brigitte,Manhattan,Harlem,40.80095,-73.9541,Private room,80,7,95,2019-06-14,1.56,1,278 +2983952,Williamsburg Oasis of Art ,11018460,Patricia,Brooklyn,Williamsburg,40.71593,-73.95642,Entire home/apt,210,3,4,2016-09-27,0.11,2,0 +2984662,Brooklyn Heights - 1 Bedroom,15179425,Chris,Brooklyn,Brooklyn Heights,40.69443,-73.99068,Entire home/apt,150,2,10,2018-09-14,0.16,1,0 +2985678,2BR on Express 2 stops to Manhattan,1720071,Karen And Ben,Brooklyn,Sunset Park,40.65841,-73.99664,Entire home/apt,135,2,133,2019-05-27,2.19,1,296 +2987465,"Chic, Modern Apt Near Central Park!",13347167,AFI Apartments,Manhattan,Upper East Side,40.77222,-73.95544,Entire home/apt,118,30,3,2018-08-30,0.06,29,326 +2994478,☆ Central Park - Home Away From Home,2604437,Lane,Manhattan,Upper West Side,40.78504,-73.97959,Private room,110,3,40,2019-05-16,1.48,2,113 +2994536,The Perfect Greenpoint Getaway,15265839,Danie,Brooklyn,Greenpoint,40.73057,-73.95023,Private room,70,2,8,2016-07-03,0.17,1,0 +2994659,Private cozy room,15266695,Sergey & Kate,Brooklyn,Bensonhurst,40.62019,-73.99624,Private room,43,1,127,2019-06-27,2.77,2,220 +2995000,Bright Brooklyn garden apartment!,1971142,David,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94295,Entire home/apt,140,2,205,2019-07-07,3.26,1,294 +2995209,"NEW! Gorgeous 1-BR, Colorful Design",13347167,AFI Apartments,Manhattan,Upper East Side,40.77126,-73.95671,Entire home/apt,116,30,1,2014-06-14,0.02,29,335 +2995459,Cozy & Large Corner Flex 2BR Loft,7503643,Vida,Brooklyn,Greenpoint,40.72525,-73.9418,Entire home/apt,159,30,6,2018-10-13,0.12,52,317 +2995701,Sun filled 2BR in BedStuy Townhouse,15271110,Josandra,Brooklyn,Bedford-Stuyvesant,40.68548,-73.92039,Entire home/apt,135,2,296,2019-06-25,4.84,1,187 +2997377,"Cosy HUS Room, furnished & all utilities included!",5986790,Gen,Manhattan,Washington Heights,40.83383,-73.94469,Private room,39,7,13,2019-05-11,0.36,6,310 +2998174,Sanctuary Bedroom in Huge Duplex,5684941,Jade,Brooklyn,Bushwick,40.69666,-73.93248,Private room,59,20,16,2018-10-11,0.28,1,54 +2999527,One-of-a-Kind Luxury NYC EPIC VIEW!,5422083,Aivars,Manhattan,Battery Park City,40.70633,-74.01837,Entire home/apt,600,30,2,2014-05-27,0.03,1,0 +3003127,Private Room with Full Amenities,11998560,Ruby,Brooklyn,Crown Heights,40.67401,-73.92833,Private room,66,1,6,2019-06-30,0.11,2,41 +3003228,Prime Tribeca! Breathtaking View,1475015,Mike,Manhattan,Civic Center,40.71662,-74.00352,Entire home/apt,130,30,2,2015-02-21,0.03,52,365 +3004348,Modern Stay in Brownstone Brooklyn,15310896,Christy,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95054,Entire home/apt,100,3,284,2019-06-24,4.57,1,237 +3004563,The spot,15303460,Emma,Brooklyn,Prospect-Lefferts Gardens,40.65595,-73.95412,Private room,50,7,1,2019-06-08,0.94,1,125 +3005261,Hudson Heights Art Deco,7629544,Alison,Manhattan,Washington Heights,40.85719,-73.93573,Private room,185,2,34,2018-08-07,0.56,1,365 +3005990,Beautiful Large Room in Park Slope,15318802,Jessie,Brooklyn,Sunset Park,40.66528,-73.99382,Private room,54,1,4,2018-05-15,0.07,1,0 +3010328,1BR apartment in Brooklyn,15341073,Camille,Brooklyn,Flatbush,40.64661,-73.95999,Entire home/apt,100,6,2,2018-07-01,0.11,1,202 +3010430,Studio in Center of Chelsea,15341568,Selma,Manhattan,Chelsea,40.74227,-73.99362,Entire home/apt,180,1,6,2014-08-25,0.10,1,0 +3010577,Old World Garden Apartment,550520,Kendall,Brooklyn,East Flatbush,40.65262,-73.94867,Entire home/apt,115,30,43,2019-07-01,0.70,1,78 +3010664,"Giant 3 story family house, 15 min to Manhattan",5663597,Amir,Brooklyn,Prospect Heights,40.67553,-73.96376,Entire home/apt,350,3,11,2019-04-28,0.19,1,21 +3010988,Big Private room in Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.6769,-73.94483,Private room,32,7,3,2018-06-15,0.07,3,319 +3012871,Williamsburg Luxury Apton Bedford,1504257,Neomi,Brooklyn,Williamsburg,40.71756,-73.95579,Entire home/apt,165,8,23,2019-04-21,0.38,1,297 +3013158,Alcove Studio in Downtown Manhattan,15355526,Nattie,Manhattan,Chelsea,40.73893,-73.99464,Entire home/apt,350,2,12,2015-11-02,0.19,1,0 +3013383,Unique Brooklyn Brownstone,15356877,Rachel,Brooklyn,Cobble Hill,40.68494,-73.99685,Entire home/apt,795,6,0,,,1,14 +3013404,Cozy Williamsburg Apartment,15134522,Enma,Brooklyn,Williamsburg,40.70971,-73.9639,Entire home/apt,200,4,15,2017-08-18,0.32,1,95 +3013668,Gorgeous Apt in Bushwick Brooklyn,15358791,Arnan & Zahira,Brooklyn,Bushwick,40.70113,-73.91119,Entire home/apt,175,5,5,2019-06-17,0.10,1,107 +3017320,Dani private room in Manhattan,10364678,Dany,Manhattan,Inwood,40.86786,-73.92077,Private room,50,2,58,2017-10-20,0.96,2,188 +3018285,Heart of Manhattan: Charming 1BD,67180,Nicholas,Manhattan,West Village,40.73722,-74.00043,Entire home/apt,190,1,11,2018-10-17,0.18,1,0 +3018422,Private Room with Private Bath,8656650,Genny,Manhattan,Harlem,40.80453,-73.95699,Private room,110,2,37,2018-12-09,0.60,1,182 +3019237,"Carroll Gardens Row House, Brooklyn",7249524,Kellie,Brooklyn,Gowanus,40.67729,-73.99164,Entire home/apt,414,3,2,2016-08-22,0.06,1,0 +3021617,1BR Doorman Bldg Boerum Hill BK,10842335,Brian,Brooklyn,Downtown Brooklyn,40.68968,-73.98404,Entire home/apt,135,2,0,,,1,0 +3026848,NYC Finest location!~amazing view!!,1475015,Mike,Manhattan,Murray Hill,40.74318,-73.97193,Entire home/apt,150,30,2,2016-11-29,0.03,52,365 +3029690,Safe Sunny South Facing Near All,7245581,Michael,Manhattan,Chelsea,40.74873,-73.99557,Entire home/apt,93,365,10,2018-02-12,0.17,19,97 +3032355,Cozy bedroom - Upper East Side,15445130,Sarah,Manhattan,Upper East Side,40.76712,-73.95668,Private room,70,2,0,,,1,0 +3037740,Beautiful turn-of-the-century home,339586,Oswaldo,Staten Island,St. George,40.64444,-74.08302,Entire home/apt,175,3,22,2019-06-20,0.40,1,39 +3038614,"Lovely, Huge, Open, Quiet, Spacious, Sunny, A/C",14892152,Laura,Brooklyn,Bedford-Stuyvesant,40.68596,-73.95837,Entire home/apt,155,25,3,2015-04-02,0.05,1,364 +3038797,2 Queen beds Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.7276,-73.94029,Entire home/apt,129,30,4,2019-06-06,0.08,52,337 +3039110,The proud New Yorker Room,8159536,Genae,Bronx,Concourse Village,40.83288,-73.91834,Private room,50,1,21,2019-06-02,0.36,3,188 +3039332,1910 Town House in leafy Kensington,15476280,Jacques,Brooklyn,Kensington,40.64638,-73.97723,Entire home/apt,499,7,2,2015-08-11,0.03,1,31 +3039888,Very unique - half block from Industry City,15478980,William,Brooklyn,Sunset Park,40.65513,-74.00621,Shared room,80,1,7,2019-05-21,0.15,1,90 +3040585,Awesome Studio East 58&3rd avenue! ,1475015,Mike,Manhattan,Midtown,40.76132,-73.96612,Entire home/apt,115,30,0,,,52,342 +3040654,Sunny Bedroom In Astoria!,6041,Miranda,Queens,Ditmars Steinway,40.77748,-73.90971,Private room,47,2,14,2018-01-02,0.28,1,0 +3041280,Crown Heights Duplex Apt.,4401973,Juan Felipe,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.95043,Private room,95,1,1,2015-06-30,0.02,1,0 +3041785,Luxury Space East Village 3 Bedrm sleeps 7,15430260,Michelle,Manhattan,East Village,40.72889,-73.98853,Entire home/apt,249,1,150,2019-06-24,2.52,1,278 +3041973,Perfect 1BR / Doorman / 22 St & 2nd Ave,1475015,Mike,Manhattan,Murray Hill,40.74475,-73.97201,Entire home/apt,150,30,2,2016-08-31,0.04,52,362 +3042553,Quiet bedroom in East Village NY.,15492140,Harper,Manhattan,Lower East Side,40.72232,-73.98987,Private room,77,3,139,2019-07-07,2.29,1,18 +3043029,2 bedroom in the East Village,1451702,Paco,Manhattan,East Village,40.72687,-73.97995,Entire home/apt,225,8,0,,,1,0 +3043467,Room in Duplex Apartment,10432817,Deedles,Brooklyn,Brooklyn Heights,40.69405,-73.99634,Private room,70,14,16,2019-07-02,0.61,1,67 +3046941,Awesome 2 bedroom~murray hill~deal ,1475015,Mike,Manhattan,Murray Hill,40.74462,-73.97488,Entire home/apt,100,30,6,2017-06-30,0.11,52,311 +3048234,Best Deal/Columbus Circle/Renovated,1475015,Mike,Manhattan,Hell's Kitchen,40.76866,-73.98616,Entire home/apt,87,30,6,2018-10-04,0.10,52,365 +3050544,Large 2 Full BR 15min to Manhattan!,2534076,Helen,Brooklyn,Park Slope,40.6728,-73.97166,Entire home/apt,245,4,3,2014-08-17,0.05,1,0 +3052726,Great apt in awesome area,15542183,Brian,Manhattan,Upper West Side,40.78576,-73.97594,Entire home/apt,300,3,92,2019-05-06,1.53,1,254 +3052904,Spacious Upper East Side Pvt. Room,15543098,Carlos,Manhattan,Upper East Side,40.77401,-73.9457,Private room,55,1,2,2016-12-31,0.03,1,0 +3056451,One Bedroom close to everything!,15559190,Kerry,Manhattan,West Village,40.72916,-74.00433,Entire home/apt,120,3,5,2016-10-28,0.08,1,0 +3058087,Fully Furnished Luk Room including Air Conditiner!,5986790,Gen,Manhattan,Washington Heights,40.83568,-73.94457,Private room,40,31,2,2019-06-16,0.15,6,130 +3059273,1 bedroom in Nolita/Soho,15569250,SoSo,Manhattan,Nolita,40.72118,-73.99682,Private room,115,2,9,2019-07-07,0.29,1,332 +3060297,Great Chelsea block near Highline & Subways,7245581,Michael,Manhattan,Chelsea,40.74897,-73.9968,Entire home/apt,93,75,16,2019-05-15,0.30,19,234 +3060745,"Furnished Sublet, Manhattan, Harlem",7101220,David,Manhattan,East Harlem,40.79245,-73.94563,Private room,37,30,1,2015-07-31,0.02,1,0 +3061093,Penthouse in Williamsburg w/ Patio!,15579200,Marc,Brooklyn,Williamsburg,40.7172,-73.9616,Entire home/apt,240,2,18,2015-11-12,0.29,1,0 +3061106,Private Room in Cozy Downtown Apt!,15581137,Maya,Manhattan,West Village,40.73229,-74.004,Private room,130,2,0,,,1,0 +3061995,Explore NYC - 1 Stop to Manhattan!,6653718,Kara Ayn,Queens,Long Island City,40.74902,-73.94066,Private room,70,3,145,2019-06-23,2.33,1,32 +3066892,Huge 1br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72691,-73.94041,Entire home/apt,149,30,5,2017-12-11,0.10,52,295 +3067062,Musician's Private Room,5317082,Kells,Brooklyn,Williamsburg,40.71477,-73.94105,Private room,100,21,10,2019-07-04,0.17,2,14 +3067093,Stylish East Village Studio near Union Sq,3541594,Jennifer,Manhattan,East Village,40.73057,-73.99034,Entire home/apt,200,2,12,2019-06-09,1.52,1,0 +3067244,Bright Prospect Park Charmer,3241305,Emilia,Brooklyn,Prospect-Lefferts Gardens,40.65962,-73.96063,Entire home/apt,99,4,43,2019-05-06,0.70,1,0 +3067670,"sunny 3 Bedrrom great view, Chelsea",2539525,Eran,Manhattan,Chelsea,40.74221,-73.9974,Entire home/apt,220,8,5,2018-07-23,0.08,1,2 +3068047,Upper East Side Steal,15613241,Courtney,Manhattan,Upper East Side,40.78145,-73.95588,Entire home/apt,250,3,3,2015-10-11,0.06,1,0 +3068145,Cozy & Modern Studio | Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77209,-73.9563,Entire home/apt,103,30,12,2019-02-26,0.20,29,209 +3068852,Beautiful & Modern | Top Location!,13347167,AFI Apartments,Manhattan,Upper East Side,40.77224,-73.95629,Entire home/apt,108,30,7,2018-06-02,0.14,29,188 +3070876,Fantastic fully furnished room,2448006,El Haj,Manhattan,Harlem,40.80392,-73.94685,Private room,75,3,5,2016-10-20,0.10,3,325 +3072242,Sunny and Spacious apt in Bushwick,3053987,Darwin And Nicole,Brooklyn,Bushwick,40.69158,-73.92115,Entire home/apt,78,3,10,2015-05-20,0.16,2,0 +3073195,Spacious room in great neighborhood,15639713,Agustina,Brooklyn,Williamsburg,40.70442,-73.95413,Private room,75,4,6,2015-12-01,0.13,1,0 +3079125,Cute and cozy in Manhattan,1370474,Edmi,Brooklyn,Navy Yard,40.70481,-73.97755,Entire home/apt,152,2,3,2017-04-22,0.10,1,12 +3079237,Sunny clean studio in heart of LES,13969061,Lisa,Manhattan,Lower East Side,40.71987,-73.98641,Entire home/apt,150,1,32,2018-12-12,0.51,1,3 +3079567,Nolita / Soho A cozy 2 bedroom apartment.,740656,Einar,Manhattan,Nolita,40.72293,-73.99413,Entire home/apt,320,3,168,2019-06-30,2.70,1,269 +3080233,1BR UNFURN SUBLET in Williamsburg,15674437,Benjamin,Brooklyn,Williamsburg,40.70789,-73.94632,Entire home/apt,220,29,4,2014-08-15,0.07,1,0 +3081771,Luxurious Brooklyn Getaway!,15681707,Joycelyn,Brooklyn,Crown Heights,40.67489,-73.91405,Entire home/apt,99,2,190,2019-07-01,3.67,3,287 +3083197,Spectacular East Village Townhouse with 3 patios,15688520,Alex,Manhattan,East Village,40.72592,-73.97991,Entire home/apt,950,3,42,2019-06-10,0.69,2,34 +3083899,Charming Studio on Upper West Side,15638528,Lindsey,Manhattan,Upper West Side,40.78087,-73.97812,Entire home/apt,120,1,1,2014-07-10,0.02,1,0 +3084473,One Bedroom Apartment ,5691429,Patrick,Manhattan,Morningside Heights,40.80739,-73.95918,Entire home/apt,100,1,5,2014-12-22,0.08,1,0 +3089577,Spacious 2 bd 2 bth apt 45 min from Time Sq sleep6,15636404,Anneta,Brooklyn,Borough Park,40.61098,-73.9742,Entire home/apt,199,4,4,2018-08-25,0.11,1,37 +3090474,Times Square Unique Studio,15718962,Samira,Manhattan,Hell's Kitchen,40.75771,-73.99407,Private room,100,1,257,2019-06-13,4.20,1,20 +3090922,"Private Rm in Cozy Wburg Loft, 1 blk fr Bedford L",4936720,Mac,Brooklyn,Williamsburg,40.7152,-73.95445,Private room,75,1,52,2019-06-16,1.29,2,25 +3091202,Great 1bd!Murray Hill NYC~renovated,1475015,Mike,Manhattan,Kips Bay,40.74175,-73.97741,Entire home/apt,84,30,7,2018-10-04,0.12,52,365 +3091872,Beautiful private 2 bedroom in prime Greenpoint,2308616,Rebecca,Brooklyn,Greenpoint,40.7245,-73.95022,Entire home/apt,100,14,1,2017-08-07,0.04,1,0 +3093240,Lovely Guestroom in Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67104,-73.94562,Private room,75,3,85,2019-06-19,1.41,4,292 +3093469,Amazing Private Room in Brooklyn - Fort Greene,7107807,Crystal & Clee,Brooklyn,Clinton Hill,40.68541,-73.96728,Private room,93,6,108,2019-05-01,1.73,1,336 +3093616,Quite 2 bedroom apt. in Brooklyn,15733420,Marcus,Brooklyn,Bedford-Stuyvesant,40.69205,-73.93144,Entire home/apt,140,4,64,2019-06-29,1.38,2,315 +3095119,"Great apartment, heart of Brooklyn",15740819,Heather,Brooklyn,Fort Greene,40.69071,-73.97057,Entire home/apt,200,30,38,2017-07-31,0.63,2,5 +3095348,True Loft in Williamsburg,13125226,Kristen,Brooklyn,Williamsburg,40.7177,-73.94612,Entire home/apt,200,2,2,2014-08-21,0.03,1,157 +3095477,Luxury Family Sunny 2 bdrm 1 bath Apt Park Slope,15743167,Cristina,Brooklyn,South Slope,40.66508,-73.98974,Entire home/apt,200,2,14,2018-06-10,0.60,1,0 +3095502,Cozy 1BR Apartment by Subway,10930874,Tyler,Queens,Forest Hills,40.72713,-73.84946,Entire home/apt,100,1,1,2014-09-04,0.02,1,0 +3098703,At home in Historic Harlem,9716281,Sarah,Manhattan,Harlem,40.80399,-73.94665,Private room,100,250,91,2018-08-10,1.47,1,138 +3100156,Your own studio apt in Upper East,1906150,Susana,Manhattan,Upper East Side,40.7759,-73.94227,Entire home/apt,120,7,100,2019-06-18,1.61,1,203 +3101058,Entire One Bedroom Apartment next to Prospect Park,15767190,Mark,Brooklyn,Flatbush,40.65235,-73.9635,Entire home/apt,109,2,2,2017-06-28,0.08,1,0 +3101140,Large Sunny Room with Huge patio in Wburg,9229108,Etan,Brooklyn,Greenpoint,40.72126,-73.93961,Private room,126,2,15,2019-05-11,0.80,2,105 +3103596,BIG Private Room in NYC APT.,15778597,Ayo,Manhattan,Harlem,40.82243,-73.94786,Private room,50,2,2,2016-01-03,0.04,1,321 +3104652,West Chelsea Apt! AMAZING Location!,15783686,Matt,Manhattan,Chelsea,40.74765,-74.0042,Entire home/apt,325,4,6,2016-12-06,0.12,1,0 +3105531,Bright & lovely Upper East Side apt,9306192,Su-En,Manhattan,Upper East Side,40.77766,-73.9561,Entire home/apt,750,6,0,,,1,0 +3105986,Steps away from Brooklyn museum,8822946,Mariam,Brooklyn,Crown Heights,40.67228,-73.96239,Entire home/apt,135,5,4,2015-10-17,0.07,1,0 +3106154,"Safe, Cozy, Cute and Cheap",2885147,Marty,Queens,Rego Park,40.7246,-73.85744,Entire home/apt,52,2,1,2014-05-24,0.02,1,0 +3111416,Charming and Artsy LES 1-Bedroom ,3765042,Grant,Manhattan,Lower East Side,40.71848,-73.98159,Entire home/apt,124,28,13,2018-01-12,0.21,1,38 +3112284,Spacious room in flushing ny ❤️,15815237,Mack,Queens,Flushing,40.76428,-73.83225,Private room,59,3,35,2016-12-31,0.61,1,158 +3112872,Sunny Studio Near Central Park,2641574,Meredith,Manhattan,Upper West Side,40.77573,-73.98264,Entire home/apt,215,2,8,2015-06-21,0.13,1,0 +3112953,Spectacular Townhouse with your own private patio,15688520,Alex,Manhattan,East Village,40.72488,-73.97996,Private room,240,2,8,2017-12-30,0.13,2,93 +3114929,Modern Stylish and Legendary.,14911623,Nicholas,Manhattan,Harlem,40.81736,-73.93921,Private room,150,1,2,2019-05-19,0.19,2,87 +3116279,Cozy Studio on McGolrick Park,5352357,Bernice,Brooklyn,Greenpoint,40.72418,-73.94528,Private room,83,2,2,2016-08-25,0.03,1,0 +3116519,Large 900 sqft Artist's Apartment,3008690,Alex,Queens,Ridgewood,40.70124,-73.90941,Entire home/apt,70,10,0,,,1,0 +3120723,Charming Private Studio in LES,15853337,Julia,Manhattan,Lower East Side,40.72165,-73.98573,Entire home/apt,160,2,6,2015-06-19,0.10,1,0 +3120957,"Clean, Safe, Convenient, Comfy",8703,Michael,Manhattan,Harlem,40.80699,-73.94227,Shared room,200,1,8,2016-09-29,0.13,1,180 +3121176,1 BEDROOM APT IN PRIME WILLIAMSBURG,3663033,Jehan,Brooklyn,Williamsburg,40.71662,-73.95993,Entire home/apt,50,7,4,2016-03-09,0.07,1,0 +3121851,Amazing 1BD! Renovated Col Circle!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76745,-73.98489,Entire home/apt,87,30,8,2018-08-15,0.20,52,311 +3122230,Cozy Harlem Home,15859636,Kyle,Manhattan,Harlem,40.81595,-73.9447,Private room,125,1,0,,,1,0 +3122636,"East Village - Family friendly, specious and quiet",4025280,Alon & Adi,Manhattan,Upper East Side,40.78276,-73.95299,Entire home/apt,250,5,22,2019-04-26,0.36,1,7 +3122731,Park Slope 2 bedroom - Amazing Access to All!!!,2442348,Zoe,Brooklyn,South Slope,40.6679,-73.9872,Entire home/apt,162,2,123,2019-06-28,3.47,1,282 +3128865,"charming, sunny and quiet studio",15890334,Joscelyn,Brooklyn,Prospect Heights,40.67527,-73.96604,Entire home/apt,67,1,0,,,1,0 +3129731,Dbl Room with Terrace and View!,7853594,Hans,Manhattan,Upper East Side,40.76282,-73.9637,Private room,147,1,25,2019-04-21,0.51,2,10 +3131756,Beautiful 3 Bedroom apt in Bed-Stuy,2213809,Dean,Brooklyn,Bedford-Stuyvesant,40.68176,-73.92883,Entire home/apt,149,2,225,2019-06-30,3.70,1,254 +3131982,"Spacious, Sunny Apartment in BK!",15904341,Monica,Brooklyn,Crown Heights,40.67231,-73.94426,Entire home/apt,65,5,6,2018-06-21,0.14,1,0 +3132960,Lovely Park Slope Pied a Terre,2472358,Craig,Brooklyn,Park Slope,40.67668,-73.97718,Entire home/apt,250,5,2,2018-12-31,0.21,1,0 +3133055,Relax in an oasis of quiet in a beautiful house!,15908653,Gil,Brooklyn,Flatbush,40.63463,-73.95899,Private room,160,2,156,2019-07-01,2.54,2,307 +3136535,"Peaceful, Upper East Side Studio",15414317,Madeleine,Manhattan,Upper East Side,40.76299,-73.96166,Entire home/apt,150,5,10,2017-09-23,0.16,1,0 +3137426,Gramercy Luxurious 2 BD condominium,15667008,Manhattan,Manhattan,Gramercy,40.73666,-73.9796,Private room,199,1,0,,,1,365 +3137906,Lovely room in Williamsburg,3814039,Natalie,Brooklyn,Williamsburg,40.70921,-73.95178,Private room,64,3,47,2019-06-10,0.77,1,282 +3139489,"Nice Cozy Room in BROOKLYN, NYC, NY, Bushwick",2885704,Victor,Brooklyn,Bushwick,40.69545,-73.91967,Private room,33,2,182,2019-06-21,3.62,2,16 +3139749,Room in Manhattan=15 min to TimesSq,7580038,Jack Andrew,Manhattan,Harlem,40.82584,-73.94673,Private room,500,1,3,2014-09-27,0.05,3,363 +3139918,Bright Quiet 1BD in the Heart of BK,469098,Sara,Brooklyn,Boerum Hill,40.68474,-73.97959,Entire home/apt,150,3,55,2019-06-17,0.94,1,7 +3143311,Lower Eastside - Perfect Room,15518085,Isabelle,Manhattan,Lower East Side,40.71973,-73.98993,Private room,110,14,2,2015-01-11,0.03,1,0 +3143596,Open Loft in Historic Townhome - Near Metro & Food,3323488,Tenisha & Marty,Brooklyn,Bedford-Stuyvesant,40.68452,-73.95535,Entire home/apt,145,2,119,2019-05-15,1.96,2,218 +3143649,"Lovely Apt/Room in Ditmas Park, BK",15960720,Taylor,Brooklyn,Flatbush,40.64056,-73.96571,Private room,40,10,0,,,1,0 +3143838,Williamsburg Penthouse Private Room,7784911,Marc,Brooklyn,Williamsburg,40.70724,-73.94217,Private room,95,3,10,2015-11-02,0.17,2,0 +3144135,Cozy Garden View Apartment! Perfect for Families!,10835806,Rick,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92994,Entire home/apt,185,5,60,2019-03-29,1.30,1,0 +3145484,Historic Townhome for Photo and Video Shoots,3323488,Tenisha & Marty,Brooklyn,Bedford-Stuyvesant,40.68695,-73.95427,Entire home/apt,500,1,28,2018-11-02,0.71,2,365 +3147439,Charming West Village Studio With Cat,7361593,Samantha,Manhattan,West Village,40.72976,-74.00445,Entire home/apt,115,3,2,2017-11-11,0.03,1,0 +3153140,Four-Bedroom Victorian Near Ferry,13530123,Lynn,Staten Island,St. George,40.64553,-74.08323,Entire home/apt,195,3,105,2019-06-14,1.73,1,204 +3153464,Sunny 1 BD in trendy Prospect Heights Brooklyn.,16003147,Victoria And Juliana,Brooklyn,Prospect Heights,40.67391,-73.96739,Entire home/apt,105,21,5,2018-07-31,0.08,1,221 +3153603,Private 1 bd Apt 1 blk off the J,4299288,Quinn,Brooklyn,Bushwick,40.69465,-73.92675,Entire home/apt,67,30,10,2019-05-23,0.16,1,26 +3157330,"clean, casual 2BD apt in bed-stuy!",9105586,Marc,Brooklyn,Bedford-Stuyvesant,40.68898,-73.9412,Entire home/apt,75,1,1,2015-02-12,0.02,1,0 +3157420,Giant Private Room in Battery Park ,4119683,Zachary,Manhattan,Battery Park City,40.71029,-74.01725,Private room,100,1,4,2016-07-26,0.08,1,0 +3161739,Up among the trees in Bed Stuy,14736455,Anna,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95017,Entire home/apt,125,7,56,2019-05-15,0.93,1,188 +3162817,"Sunny, Williamsburg Condo",6754169,Ellie,Brooklyn,Williamsburg,40.71572,-73.94058,Entire home/apt,350,2,2,2015-08-02,0.04,2,0 +3164173,Bright Studio in New WB Building,2338762,Masha,Brooklyn,Williamsburg,40.71808,-73.95511,Entire home/apt,150,1,12,2016-08-28,0.33,1,0 +3164997,Charming XL 1br in Astoria,15998942,David,Queens,Astoria,40.77221,-73.92493,Entire home/apt,200,5,22,2018-05-17,0.37,1,188 +3166540,"Brownstone Duplex with Garden,Deck & 8' pool table",2323652,Mark,Brooklyn,Park Slope,40.678,-73.98049,Entire home/apt,270,3,6,2019-01-01,0.16,1,12 +3166564,Family-friendly 2BR w Rooftop,8488933,Teresa,Brooklyn,Windsor Terrace,40.65516,-73.97633,Entire home/apt,184,5,22,2018-08-27,0.37,1,0 +3167768,Family-friendly 3-bedroom condo,16067583,Natasha,Brooklyn,Prospect Heights,40.67765,-73.96378,Entire home/apt,275,4,19,2019-07-05,0.32,1,34 +3168120,SPACIOUS & SUNNY East Village Gem,16069958,Nicholas,Manhattan,East Village,40.72854,-73.98434,Entire home/apt,171,2,1,2014-06-30,0.02,1,0 +3171234,~ PRIME location Williamsburg sunny 3BR loft ~,2416036,Hadas,Brooklyn,Williamsburg,40.71765,-73.9624,Entire home/apt,425,5,0,,,1,0 +3171480,HUGE 1BR in Prime West Village,6183406,Justin,Manhattan,West Village,40.73509,-74.00323,Entire home/apt,200,4,4,2016-09-22,0.07,1,0 +3171880,Light Filled Loft Studio in Fort Greene,847230,Benjamin,Brooklyn,Fort Greene,40.68731,-73.9745,Entire home/apt,165,3,7,2019-04-21,0.19,1,0 +3172212,Spacious room in artist Loft,7351,Tanda,Brooklyn,South Slope,40.66257,-73.98777,Private room,85,2,23,2019-06-10,0.45,3,363 +3172778,PRIME WILLIAMSBURG FAMILY ART LOFT,16109802,Daphna,Brooklyn,Williamsburg,40.71262,-73.95676,Entire home/apt,170,7,20,2019-06-30,0.33,1,44 +3173148,BEAUTIFUL Williamsburg Palace!,6396561,Justin,Brooklyn,Williamsburg,40.70675,-73.94984,Private room,70,3,69,2019-04-30,1.13,1,142 +3173412,Big room & private bathroom!,16092773,Erin & Becky,Brooklyn,Crown Heights,40.66638,-73.95229,Private room,125,2,36,2018-12-01,0.60,1,7 +3175088,SPACIOUS ARTIST LOFT IN CHELSA,16100913,S Anthony,Manhattan,Chelsea,40.74449,-73.99445,Entire home/apt,275,3,63,2019-06-16,1.02,1,323 +3176526,Great room with private bathroom!!,14325632,Sil,Brooklyn,Crown Heights,40.67476,-73.95312,Private room,120,2,8,2019-06-17,2.20,2,162 +3176553,Studio Plus at Hilton West 57th ,16107699,Mary,Manhattan,Midtown,40.76552,-73.97738,Entire home/apt,429,2,0,,,1,0 +3176655,Lovely Single Family House in South Slope,16108191,David,Brooklyn,South Slope,40.66488,-73.98725,Entire home/apt,225,4,2,2018-12-30,0.11,1,0 +3176874,New 2 Bed.apt. 10 min to NYC! one block from train,16108973,Vlado & Sandra,Queens,Astoria,40.76068,-73.91359,Entire home/apt,119,2,217,2019-06-21,3.67,1,214 +3177630,Large Studio w/ NEW MATTRESS in UES,16114134,Jeff,Manhattan,Upper East Side,40.77737,-73.95032,Entire home/apt,175,3,6,2016-06-13,0.10,1,0 +3177702,Brooklyn Flat in Historic Row House,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68291,-73.94613,Entire home/apt,155,3,44,2019-05-27,0.71,5,363 +3181376,"Homey, inviting 1BR w/ lots of room",8158276,Matthew,Manhattan,Inwood,40.85893,-73.92985,Entire home/apt,100,3,1,2016-01-03,0.02,1,0 +3185489,Private Bedroom in Nice Apt. Near Riverside Park!,16142344,Jeffrey,Manhattan,Harlem,40.82165,-73.95491,Private room,70,3,16,2016-07-31,0.26,1,209 +3185829,2BR Private Apt Guest Homestay,16151285,Carol,Bronx,Williamsbridge,40.88075,-73.84845,Entire home/apt,95,3,58,2019-06-10,0.96,4,358 +3186103,Park Slope 3 BR Duplex with Garden,16152979,Ryan,Brooklyn,Park Slope,40.67507,-73.97706,Entire home/apt,450,2,12,2019-04-22,0.20,1,13 +3187925,Brownstone Luxury Apartment Facing Ft.Greene Park,11249746,Stanley,Brooklyn,Fort Greene,40.69117,-73.97421,Entire home/apt,215,5,28,2019-05-25,0.53,1,106 +3191450,Cozy Bedroom by Prospect Park BKLYN,241593,Thomas,Brooklyn,Flatbush,40.64996,-73.9615,Private room,60,3,4,2015-07-23,0.07,2,0 +3191678,Private Room in Riverdale NY,9122601,Yan,Bronx,Fieldston,40.89603,-73.89958,Private room,75,5,35,2019-05-11,0.67,1,300 +3191925,Art Room + Backyard in Williamsburg,3772684,Glasshouse,Brooklyn,Williamsburg,40.70667,-73.94921,Private room,99,3,22,2017-09-04,0.36,2,11 +3198018,Park slope 2BR duplex with garden,738918,Birgitta,Brooklyn,Park Slope,40.67561,-73.97823,Entire home/apt,300,2,85,2019-06-16,1.81,2,268 +3198365,Cozy Studio Close to Central Park,16209547,Gina,Manhattan,Harlem,40.80185,-73.95667,Entire home/apt,175,2,142,2019-06-29,2.39,2,339 +3198824,Bright 1 bedroom near Columbia,9523245,Albane,Manhattan,Upper West Side,40.79739,-73.96945,Entire home/apt,195,3,8,2017-07-09,0.13,1,0 +3199681,Bright & Sunny FULLY FURNISHED Room,627678,Nathan,Queens,Forest Hills,40.73381,-73.85366,Private room,50,7,2,2018-08-20,0.15,1,140 +3200198,Hell's Kitchen One Bedroom (near Times Square),16217769,Karlan,Manhattan,Hell's Kitchen,40.76309,-73.99155,Entire home/apt,175,4,1,2017-01-02,0.03,1,0 +3200522,Brooklyn 3BR Near Subways,1369577,Thomas & Gaby,Brooklyn,Crown Heights,40.67499,-73.92427,Entire home/apt,120,5,175,2019-06-19,2.86,2,56 +3200728,Sunlit Room near Prospect Park!,727114,Anthony,Brooklyn,Flatbush,40.64677,-73.96946,Private room,54,10,11,2015-07-03,0.19,1,0 +3201696,Cozy 5 Bdrm in Historic Harlem NY,13789963,Larry,Manhattan,Harlem,40.82931,-73.94358,Entire home/apt,345,3,141,2019-07-05,2.34,1,273 +3202590,The Lincoln,9209820,Althea,Brooklyn,Crown Heights,40.67138,-73.94949,Entire home/apt,225,3,76,2019-05-18,1.24,3,275 +3205292,Large Sunny Open Brooklyn Apartment,1832751,Chris,Brooklyn,Boerum Hill,40.68823,-73.98604,Entire home/apt,151,28,12,2016-10-24,0.30,1,54 +3206224,Improved Response Rate@ The Valley,16245414,Shae,Brooklyn,Bushwick,40.69368,-73.92295,Entire home/apt,110,1,189,2019-06-15,3.06,4,179 +3206379,Luxury apartment in Manhattan.,16245979,Karima,Manhattan,Upper East Side,40.77059,-73.94991,Entire home/apt,280,2,17,2018-03-23,0.28,1,0 +3207986,"Modern loft in Cobble Hill, BK",1874429,Lisa,Brooklyn,Boerum Hill,40.68558,-73.9903,Private room,99,1,75,2019-05-31,1.28,1,125 +3208188,3BR Carroll Gardens townhouse loft,16254543,Jennifer,Brooklyn,Carroll Gardens,40.67863,-73.99399,Entire home/apt,350,3,8,2018-08-18,0.14,1,0 +3208609,"W'burg Brooklyn, Sunny, Spacious, Private",1465030,Gautam,Brooklyn,Williamsburg,40.71042,-73.94702,Private room,70,5,0,,,1,0 +3208747,Cute UWS Studio Near Central Park Clean & Quiet,8658146,Michelle,Manhattan,Upper West Side,40.77802,-73.98256,Entire home/apt,120,3,214,2019-06-21,3.47,1,197 +3208904,Chic Designer’s Room & 2 Beds in Manhattan LES,16257970,Jackie,Manhattan,Lower East Side,40.71254,-73.98535,Private room,89,3,231,2019-07-07,3.72,2,177 +3209866,"Cozy 1br - Fort Greene, Brooklyn",16258619,Folake,Brooklyn,Fort Greene,40.69802,-73.97614,Private room,120,3,1,2014-09-17,0.02,1,365 +3209980,Private room in 2B East Village!,16264357,Tal,Manhattan,East Village,40.7215,-73.97747,Private room,85,5,142,2019-07-05,2.30,1,80 +3210405,BEAUTIFUL DESIGNER SOHO LOFT,16266298,Caroline,Manhattan,Little Italy,40.71883,-73.99716,Entire home/apt,220,2,119,2018-03-03,1.93,1,0 +3212765,A single room that converts with bathroom,11837926,Anthony,Manhattan,Midtown,40.76429,-73.98043,Private room,125,7,17,2019-07-01,0.29,3,309 +3213712,LUXURY 1 BR MIDTOWN w POOL & GYM,1014484,Petek,Manhattan,Murray Hill,40.74814,-73.97277,Entire home/apt,189,1,3,2016-01-05,0.05,1,0 +3213813,Beautiful Room+Shared Living Room,16279457,Michael,Brooklyn,Crown Heights,40.66985,-73.95675,Private room,100,7,0,,,1,0 +3215486,Large sunny private room downtown,7691955,Ingrid,Manhattan,Lower East Side,40.71981,-73.98701,Private room,81,3,9,2017-10-15,0.19,1,0 +3215660,Comfortable sofa bed in Manhattan,6150328,Heather,Manhattan,East Harlem,40.79794,-73.93876,Shared room,45,2,136,2019-06-23,2.22,1,15 +3215722,Airy Duplex Room with Private Bath,496465,Daniel,Brooklyn,Williamsburg,40.71622,-73.93942,Private room,150,21,0,,,1,0 +3216134,Tranquil Washington Heights Space ,16288210,Cheryl,Manhattan,Washington Heights,40.84919,-73.94021,Private room,62,3,37,2017-05-09,0.61,1,35 +3216335,Quiet Park Slope Apartment - August specials!,16288928,Julie,Brooklyn,Park Slope,40.68193,-73.97636,Entire home/apt,330,2,122,2019-06-12,1.98,2,351 +3216400,1 BR minutes from Central Park!,9502879,Maria,Manhattan,Upper East Side,40.76158,-73.96031,Private room,80,2,10,2017-05-03,0.25,1,0 +3217221,"Quiet, Full bed, Sleeps 1 or 2 ppl",16251030,Ford,Manhattan,Washington Heights,40.8365,-73.93688,Shared room,65,2,9,2017-03-02,0.21,1,0 +3218320,SOHO Studio Best Location,3321910,Carl,Manhattan,Nolita,40.72243,-73.99655,Private room,125,6,3,2015-07-11,0.05,1,43 +3218526,Sunny Suite in Historic Brooklyn,103640,Samantha And Scott,Brooklyn,Flatbush,40.63649,-73.96508,Entire home/apt,165,2,172,2019-07-06,3.10,1,264 +3219401,Lovely room in Greenwich Village,3481965,Pierre-Hubert,Manhattan,Greenwich Village,40.72928,-74.00135,Private room,90,4,3,2017-01-01,0.05,1,0 +3219654,2 Bedroom Garden Apt. Park Slope,16304160,Laurie,Brooklyn,South Slope,40.66565,-73.98782,Entire home/apt,120,3,8,2017-09-02,0.13,1,9 +3219835,Beautiful Row House Steps From Park,16305093,Betsy,Brooklyn,Windsor Terrace,40.65779,-73.97595,Entire home/apt,250,1,0,,,2,0 +3220115,Large 1-bedroom in Brooklyn,16306708,Melissa,Brooklyn,Clinton Hill,40.68331,-73.96568,Entire home/apt,115,7,6,2015-01-12,0.10,1,0 +3220178,Artist's home near park and trains,16307118,Dov,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.95719,Private room,55,1,47,2019-06-22,0.79,1,249 +3220725,Orchard St,15646137,Joe,Manhattan,Lower East Side,40.71813,-73.99063,Entire home/apt,200,30,0,,,1,365 +3223080,Modern Renovated Luxury 1BR - Soho,16319729,Tim,Manhattan,SoHo,40.72652,-74.00266,Entire home/apt,149,1,0,,,1,0 +3224913,Private Nook in Bushwick Improved Response Rate,16245414,Shae,Brooklyn,Bushwick,40.69436,-73.9253,Entire home/apt,55,1,115,2019-06-23,1.91,4,64 +3225975,Spacious Townhouse Great for Families & Friends,16329859,Caroline,Brooklyn,Gowanus,40.68338,-73.98927,Entire home/apt,400,6,34,2018-12-30,0.56,1,1 +3227002,Sunny 2 bedroom in Fort Greene,2941712,Claudia,Brooklyn,Clinton Hill,40.68717,-73.9669,Entire home/apt,200,5,3,2015-07-03,0.05,1,0 +3230053,Modern 1BR apt in Greenpoint/Williamsburg Brooklyn,4427756,May,Brooklyn,Greenpoint,40.7215,-73.94136,Entire home/apt,111,2,45,2019-02-24,3.08,1,0 +3231460,Bright & Spacious Fort Greene 1 Bed,15384170,Jonathan,Brooklyn,Fort Greene,40.68727,-73.972,Entire home/apt,175,3,12,2016-07-31,0.20,1,0 +3235070,"Peaceful, beautiful home away ",14337132,Norva,Manhattan,Harlem,40.80118,-73.95451,Entire home/apt,150,2,31,2019-06-16,0.54,1,0 +3236301,Private room in Harlem,5164854,Lilia,Manhattan,Harlem,40.82075,-73.9379,Private room,52,7,17,2018-10-07,0.28,8,17 +3236385,Cute and Cozy Two Bedroom in Sunset Park,16376419,Brooke,Brooklyn,Sunset Park,40.64811,-74.01366,Entire home/apt,88,30,2,2019-01-07,0.09,1,101 +3236977,Private 3 Floor Whole Hse/Garden,11494077,Melissa,Brooklyn,Carroll Gardens,40.68252,-73.99224,Entire home/apt,425,6,5,2019-07-05,0.08,1,321 +3237160,Spacious East Village Gem -Union Sq,4928687,Yuval,Manhattan,East Village,40.7278,-73.97997,Entire home/apt,175,1,2,2017-07-01,0.05,1,0 +3237602,STUNNING WILLIAMSBURG HOME W/GARDEN,16379550,Elizabeth,Brooklyn,Williamsburg,40.72123,-73.95891,Entire home/apt,270,14,0,,,1,0 +3238109,Cozy 1 BR in a 4br/2ba apartment!!!,16383743,Yuma,Brooklyn,Flatbush,40.64964,-73.96017,Private room,180,1,0,,,1,0 +3238355,Amazing & Bright Loft-style Room,2656209,Aurelie,Brooklyn,Williamsburg,40.70552,-73.93842,Private room,55,13,0,,,1,0 +3238517,Brooklyn Cozy Garden Apt,16385595,Ava,Brooklyn,Bedford-Stuyvesant,40.67994,-73.94318,Private room,105,14,26,2019-06-05,0.42,1,285 +3240518,Elegant 1876 Boerum Hill Brownstone,16395150,Patti,Brooklyn,Boerum Hill,40.68554,-73.98471,Entire home/apt,265,2,10,2016-09-07,0.18,1,0 +3240838,Sunny and cozy room in Midtown,16396714,Andrea,Manhattan,Kips Bay,40.74059,-73.97953,Private room,60,2,15,2019-04-27,0.25,3,188 +3241287,Small Cozy Private Room in NYC,16399575,Kristiana,Manhattan,Washington Heights,40.83686,-73.94393,Private room,45,3,13,2016-01-02,0.21,1,0 +3241502,Modern Bedroom & Living Room Combination!,4422817,Malik,Manhattan,East Harlem,40.80801,-73.93854,Private room,89,2,7,2019-05-13,0.92,1,0 +3241858,Right in the center of Manhattan,1866033,Chen,Manhattan,Upper East Side,40.7659,-73.96611,Entire home/apt,200,4,102,2019-06-26,1.70,1,6 +3245000,Spacious prewar apartment in heart of Greenpoint,13561307,Katy,Brooklyn,Greenpoint,40.7238,-73.94859,Entire home/apt,149,1,2,2019-03-18,0.28,1,0 +3247291,Comfort and Charm in Harlem Brownstone near Subway,16425715,Soon,Manhattan,Harlem,40.81198,-73.9437,Private room,80,1,134,2019-07-03,4.36,1,227 +3248010,Chic Aptmnt close to Barclay Center,1588656,Rebekah,Brooklyn,Park Slope,40.67794,-73.97398,Entire home/apt,125,1,154,2019-06-25,3.05,2,122 +3248526,Beautiful Comfortable Apt in North Manhattan,16430857,Aseel,Manhattan,Harlem,40.82524,-73.94186,Entire home/apt,78,5,13,2018-09-16,0.22,1,0 +3248671,Private Room in Artist's Loft,6032480,Anna,Brooklyn,Williamsburg,40.71207,-73.95077,Private room,65,2,152,2019-06-18,2.50,2,80 +3249076,"One stop from Manhattan, Fort Greene.",16433878,Laurence,Brooklyn,Fort Greene,40.68833,-73.97606,Entire home/apt,350,7,5,2018-07-18,0.14,1,0 +3249078,Brooklyn Heights 1.5BR and Cat Sit,1705205,Ebonie,Brooklyn,Brooklyn Heights,40.6906,-73.99339,Entire home/apt,115,5,0,,,1,0 +3249253,Panoramic Penthouse - 30% OFF,14369316,Jon,Manhattan,Chelsea,40.74156,-73.99476,Entire home/apt,289,2,1,2014-06-28,0.02,1,0 +3249726,"High Ceilings, Period Details",16437254,Benjamin,Brooklyn,Sunset Park,40.66592,-73.99434,Entire home/apt,158,30,1,2018-12-07,0.14,21,365 +3250685,Great East Harlem spot for 1 or 2,16442583,Ali,Manhattan,East Harlem,40.79848,-73.93908,Private room,50,2,6,2016-07-06,0.11,1,0 +3251014,Cozy but Cool:Huge 1bed in ❤️of NY,8349905,Lorna,Manhattan,Midtown,40.76016,-73.96597,Entire home/apt,234,4,5,2015-10-09,0.08,1,0 +3251638,"Subletting in CrownHeights,Brooklyn",8243983,Sara,Brooklyn,Crown Heights,40.66758,-73.95033,Private room,50,1,0,,,1,0 +3251901,Huge Room in Manhattan's Upper West,6726808,Eve,Manhattan,Upper West Side,40.80131,-73.9675,Private room,69,5,2,2017-03-08,0.03,1,0 +3257345,Beautiful LES Apartment,417100,Tara,Manhattan,Chinatown,40.71338,-73.99226,Entire home/apt,135,1,18,2016-12-16,0.35,1,0 +3258196,"Big sunny room, prime location!",169843,Goran,Brooklyn,Williamsburg,40.71601,-73.9587,Private room,89,3,73,2019-01-07,1.19,1,359 +3258197,Large 1br Duplex in Heart of Upper East Side,16477306,Jeff,Manhattan,Upper East Side,40.76866,-73.95553,Entire home/apt,16,2,21,2019-06-30,1.69,1,9 +3261569,Big Private 4 bedrooms 1 bathroom Near Subway!,10297692,Dee,Brooklyn,Crown Heights,40.67658,-73.93122,Entire home/apt,300,1,32,2019-05-25,0.52,2,254 +3262238,Murray Hill Modern,124345,Ramon,Manhattan,Kips Bay,40.74436,-73.97977,Entire home/apt,250,5,49,2019-06-30,0.83,1,234 +3262855,BEAUTIFUL ROOM NEAR PROSPECT PARK!!,16499705,John,Brooklyn,Flatbush,40.65148,-73.95847,Entire home/apt,70,1,5,2015-12-01,0.08,1,0 +3262930,Cosy room with private bathroom-NYC,16500110,Irena,Manhattan,Upper East Side,40.76572,-73.95541,Private room,140,3,118,2019-06-24,1.91,1,316 +3264261,Spacious Studio in Midtown,5668550,Kevin,Manhattan,Midtown,40.75182,-73.97052,Entire home/apt,175,3,18,2017-09-11,0.30,1,0 +3264684,Carroll Gardens - Two Bedroom Apartment,8830645,Kevin,Brooklyn,Carroll Gardens,40.6812,-74.00116,Entire home/apt,160,3,2,2015-08-12,0.03,1,0 +3265275,"2BR, UWS, Doorman, Balcony, CntrlPK",16512899,Jeremy,Manhattan,Upper West Side,40.7898,-73.9708,Entire home/apt,200,1,0,,,1,0 +3265407,Sunny Brooklyn room,9944244,Linnea,Brooklyn,Prospect Heights,40.67303,-73.96424,Private room,57,7,11,2019-04-27,0.18,1,0 +3265409,Charming Chelsea bedroom,5508109,Rivani,Manhattan,Chelsea,40.74956,-73.99671,Private room,90,3,2,2019-06-28,1.58,1,53 +3265410,Private Apartment 15 Minutes from the Big Apple,16514175,Karen,Queens,Elmhurst,40.74644,-73.88656,Private room,89,2,40,2018-01-02,0.65,5,1 +3265982,"Clean design, One BD, Renovated!",16516195,Tania,Brooklyn,Park Slope,40.67766,-73.98191,Entire home/apt,90,4,22,2018-11-15,0.37,1,13 +3268008,West Village designer studio,16525423,Matt,Manhattan,West Village,40.73547,-74.0051,Entire home/apt,200,4,48,2019-07-02,0.82,1,312 +3269281,Stylish 2BR in heart of Park Slope,1746811,Jon,Brooklyn,Park Slope,40.67751,-73.98143,Entire home/apt,100,2,52,2019-06-30,1.08,2,30 +3270009,Private oasis-charming gingerbread home!❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68174,-73.93444,Entire home/apt,68,30,14,2019-04-19,0.41,5,334 +3270428,Large East Village One Bedroom ,16536815,Daniel,Manhattan,East Village,40.72823,-73.9817,Entire home/apt,170,4,14,2017-10-23,0.23,1,0 +3270702,Lovely room in big shared Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.6774,-73.94566,Private room,40,28,13,2018-12-24,0.22,3,318 +3270809,Artist Loft in Lower East Side with Roof,14289427,Francesca,Manhattan,Chinatown,40.71613,-73.99266,Entire home/apt,500,4,6,2018-12-12,0.18,3,341 +3271052,Gorgeous Apt 1 block from Subway,2009585,Cecile,Brooklyn,Cobble Hill,40.68785,-73.99181,Entire home/apt,145,3,13,2016-08-14,0.22,1,0 +3271893,Park Slope Town House,327673,Stefano,Brooklyn,Park Slope,40.67592,-73.98107,Entire home/apt,250,3,16,2019-07-05,0.27,2,6 +3272201,Gorgeous Chic Apt on Prime West Village Street,16545323,Katie,Manhattan,West Village,40.73504,-74.00658,Entire home/apt,288,7,14,2017-11-06,0.23,1,222 +3272552,"Tasteful, calm, central 2BR/2Baths",4233003,Roy,Brooklyn,Williamsburg,40.71314,-73.96719,Entire home/apt,245,3,18,2017-09-03,0.30,1,0 +3272628,cozy harlem getaway,1568951,Laura,Manhattan,Harlem,40.80407,-73.94603,Entire home/apt,80,3,12,2019-04-07,0.25,1,0 +3272721,Beautiful Penthouse Apt - Brooklyn,4080758,Arun,Brooklyn,Prospect Heights,40.68033,-73.96528,Entire home/apt,125,5,5,2016-01-05,0.08,1,0 +3276963,"Huge, Perfect Location West Village",16566615,Celeste,Manhattan,West Village,40.73691,-74.00013,Entire home/apt,166,14,18,2019-06-24,0.30,1,48 +3278436,UWS 2 BR 2 Ba. Gorgeous Apt!,7105630,Christine,Manhattan,Upper West Side,40.78206,-73.97797,Entire home/apt,330,4,11,2017-11-25,0.18,1,260 +3278530,Private room in Williamsburg apt,16572580,Travis,Brooklyn,Williamsburg,40.70943,-73.94948,Private room,60,5,6,2017-09-06,0.16,2,0 +3278631,Private Bedroom Available June 1,16572957,Hope,Manhattan,East Harlem,40.8008,-73.94347,Private room,130,1,3,2015-06-06,0.05,1,0 +3278691,Sunny and Bright Room with a Terrace,16069319,Julie,Brooklyn,Gravesend,40.59601,-73.96862,Private room,45,30,4,2016-09-01,0.07,1,0 +3279671,Quiet 1BR in Chelsea,109738,Michelle,Manhattan,Chelsea,40.7518,-73.9969,Entire home/apt,165,3,159,2019-05-25,2.71,1,75 +3281606,"great spacious 2BR duplex apt in S. Harlem, NYC",16509287,Taller,Manhattan,Harlem,40.80002,-73.95559,Private room,155,2,14,2018-12-09,0.23,1,172 +3281660,Penthouse next to Central Park !,418289,Andrey,Manhattan,Upper East Side,40.77449,-73.96228,Entire home/apt,119,60,1,2017-06-06,0.04,1,0 +3282550,Quintessential Brooklyn...!!,1174963,Aaron,Brooklyn,Boerum Hill,40.6846,-73.98454,Entire home/apt,158,3,12,2015-06-08,0.19,1,0 +3283028,"NICE Williamsburg Brooklyn, 2 Bedrooms off L train",16591767,Danny,Brooklyn,Williamsburg,40.71165,-73.94708,Entire home/apt,169,5,51,2019-06-02,0.83,1,91 +3283409,Beautiful Brooklyn Brownstone,16593547,Mary & Josh,Brooklyn,Bedford-Stuyvesant,40.68562,-73.92375,Entire home/apt,139,2,124,2019-06-25,2.09,1,231 +3283729,"Beautiful, Furnished Studio!",16596651,Gautam,Manhattan,Upper East Side,40.77787,-73.95104,Entire home/apt,125,4,7,2015-11-15,0.11,1,0 +3284019,Spacious and Sunny 1BDR Astoria NYC,15055035,Michelle,Queens,Astoria,40.7631,-73.92262,Private room,70,3,25,2016-07-30,0.41,1,353 +3286369,Close to JFK & LGA Feels like home,16608415,Smidty,Brooklyn,East New York,40.67517,-73.89814,Private room,135,1,173,2019-07-02,4.69,3,162 +3288496,Entire Cozy One Bed #Manhattan #LES,3716641,Ofer,Manhattan,Lower East Side,40.71769,-73.98953,Entire home/apt,99,30,8,2018-02-27,0.13,8,170 +3288625,Sunny and Spacious 1BR Loft in Williamsburg,4042938,Alexandra,Brooklyn,Williamsburg,40.71189,-73.96282,Entire home/apt,175,10,0,,,1,0 +3289009,Quiet Brooklyn Apartment ,5231131,Danielle,Brooklyn,Greenpoint,40.72096,-73.94424,Entire home/apt,150,7,0,,,1,0 +3290309,Oasis in the heart of New York,16622685,Amanda,Manhattan,Nolita,40.72235,-73.99543,Entire home/apt,250,3,30,2019-05-24,0.51,1,173 +3291286,Private Room in great neighborhood,16628226,Rachel,Queens,Long Island City,40.7593,-73.92884,Private room,100,1,0,,,1,0 +3291524,Great Location,15740819,Heather,Brooklyn,Fort Greene,40.69236,-73.97254,Private room,100,30,5,2018-07-30,0.08,2,10 +3293500,Brooklyn Garden Level 2bdrm Home,16580725,Faith,Brooklyn,Bedford-Stuyvesant,40.68073,-73.90915,Entire home/apt,128,3,89,2018-12-29,1.53,1,32 +3293842,Brooklyn Living with Balcony!,16641600,Theresa,Brooklyn,Sunset Park,40.66294,-73.99675,Entire home/apt,121,12,8,2019-04-27,0.13,2,7 +3297016,Super cute private room +amminities,2051075,Linda,Brooklyn,Crown Heights,40.67045,-73.95716,Entire home/apt,160,30,36,2019-06-15,0.63,2,228 +3301484,"Great Apt, Great Area",56920,Linda,Manhattan,Upper West Side,40.80118,-73.97063,Private room,135,2,0,,,2,352 +3302463,Luxurious Brownstone Parlour,16678513,Robert,Manhattan,Gramercy,40.73548,-73.98896,Entire home/apt,275,5,30,2019-06-22,0.50,1,20 +3302905,Great west village studio,16680791,Adam,Manhattan,West Village,40.7381,-74.00489,Entire home/apt,180,3,3,2017-10-29,0.07,1,0 +3302921,Cozy quiet East Village room/en suite bathroom,16680861,Carrie,Manhattan,East Village,40.72749,-73.99071,Entire home/apt,189,2,138,2019-06-23,2.86,1,203 +3302932,Whole beautiful house with Backyard,2082345,Rabah,Queens,Woodhaven,40.69165,-73.84841,Entire home/apt,250,5,0,,,1,32 +3303165,Ocean Hill Oasis,4279827,Louisa,Brooklyn,Cypress Hills,40.67731,-73.90733,Entire home/apt,99,2,148,2019-06-26,2.46,1,235 +3303301,Superhost! Modern Private APT/15min Manhattan,12385603,Anne,Brooklyn,Bedford-Stuyvesant,40.68207,-73.94994,Entire home/apt,200,5,120,2019-06-29,2.00,1,193 +3303382,Hamilton Heights - Private Guest Suite,16683574,Delphine And Michael,Manhattan,Harlem,40.82888,-73.94997,Entire home/apt,145,4,115,2019-06-29,1.90,2,262 +3304307,Lovely Shiny Private Room in NYC,12465884,Natasha,Manhattan,East Harlem,40.79269,-73.94218,Private room,100,3,64,2019-06-01,1.05,1,219 +3307936,NYC Studio Loft in Meatpacking ,7889819,Tara,Manhattan,West Village,40.73993,-74.00619,Entire home/apt,240,1,22,2015-10-24,0.37,1,0 +3309572,Private Room in Light-Filled Apt with Gym,341981,Amber,Brooklyn,Bedford-Stuyvesant,40.67822,-73.9389,Private room,90,3,52,2018-10-23,0.85,1,0 +3309982,3 Bedroom Brownstone in Historic Crown Heights.,16713474,Simone,Brooklyn,Crown Heights,40.66939,-73.94839,Entire home/apt,220,2,55,2019-01-01,0.91,1,306 +3311821,Williamsburg COZY SUNNY next2train!,430188,Pam,Brooklyn,Williamsburg,40.70648,-73.95444,Private room,100,20,62,2019-05-26,1.01,6,240 +3311830,Beautiful Clean & Quiet Room! Rm#1,11674837,Christopher,Queens,Ridgewood,40.70476,-73.90874,Private room,59,1,142,2019-06-16,2.34,3,359 +3311834,Apartment - private kitchen & bath,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68975,-73.9346,Entire home/apt,78,30,81,2018-08-31,1.33,3,188 +3312276,"Cozy studio/kitchen, bathroom",14214034,Desmar,Bronx,Mott Haven,40.81444,-73.92516,Entire home/apt,75,2,85,2019-06-09,1.41,2,253 +3312417,Cozy bedroom in Brooklyn!,3691863,Jessica,Brooklyn,Bedford-Stuyvesant,40.68172,-73.94095,Private room,78,3,86,2019-06-30,1.43,1,362 +3315933,Upper East Side 2 Bedroom Apartment,12774721,Morgan,Manhattan,Upper East Side,40.76884,-73.95826,Entire home/apt,250,1,4,2016-01-03,0.07,1,0 +3316877,Giant Private Townhouse w/ Garden,175694,Mia,Brooklyn,Bedford-Stuyvesant,40.6979,-73.94126,Entire home/apt,150,1,0,,,1,0 +3317978,Spacious Queen Size Room,16751902,Asher,Manhattan,Upper West Side,40.80048,-73.96621,Private room,44,1,2,2016-06-30,0.05,1,0 +3318859,Studio w/ Private Entry in Greenpoint Brooklyn,9306976,Aaron,Brooklyn,Greenpoint,40.73535,-73.9565,Private room,69,2,25,2019-02-12,0.47,2,125 +3319483,Room w/ Private Bathroom,1498951,Yolanda,Brooklyn,Bushwick,40.70247,-73.92061,Private room,65,1,0,,,1,5 +3320635,Sunny airy beautiful Brooklyn 1B,7640229,Lihi,Brooklyn,Flatbush,40.65376,-73.95336,Entire home/apt,90,7,4,2016-05-18,0.07,1,0 +3321643,Charming Colonial House in Brooklyn,1442768,Carolina,Brooklyn,East Flatbush,40.64082,-73.94818,Entire home/apt,125,4,10,2016-08-27,0.17,1,0 +3322922,"Cozy, Clean, Quiet, ENTIRE APT!!",18566028,Kitt,Brooklyn,Flatbush,40.6532,-73.96216,Entire home/apt,78,18,11,2015-08-03,0.20,1,0 +3323189,2000 sq ft Photographers loft,16777963,Dave,Manhattan,Chinatown,40.71556,-73.99234,Entire home/apt,785,2,85,2019-06-30,1.52,1,331 +3324203,Spacious Studio in my new smart house,16782573,Dorina,Queens,Middle Village,40.71347,-73.88199,Entire home/apt,99,3,160,2019-07-05,2.65,4,299 +3324498,Garden apt 15 mins from Manhattan,11827364,Cris,Queens,Sunnyside,40.73873,-73.92435,Private room,74,30,9,2018-08-24,0.16,1,76 +3325584,Cozy UWS Apt Close to Central Park / Times Square,16789954,Fate,Manhattan,Upper West Side,40.7995,-73.96965,Entire home/apt,130,4,2,2018-01-02,0.06,1,0 +3325617,LEGAL studio in Queens,16790098,Shawn & Christine,Queens,Woodside,40.74549,-73.90872,Entire home/apt,105,2,216,2019-06-18,3.54,1,70 +3325807,Large 1 BDR Apt on the UWS,3053578,Natalie,Manhattan,Upper West Side,40.79921,-73.96704,Entire home/apt,145,7,6,2016-10-06,0.10,1,0 +3328706,Central Park West. Queen Size Room,16805656,Fernando,Manhattan,Upper West Side,40.79893,-73.96249,Private room,90,1,146,2019-06-23,2.67,2,40 +3331279,Spacious Brooklyn Townhouse,3840659,Alicia And Jamie,Brooklyn,Bedford-Stuyvesant,40.6851,-73.95655,Entire home/apt,215,4,14,2018-04-05,0.23,1,0 +3332881,Apartment near Upper East Side,16826094,Jeremy,Manhattan,East Harlem,40.78728,-73.94976,Entire home/apt,100,3,1,2016-05-15,0.03,1,0 +3334361,Seven Days Sleep Near Prospect Park,16834792,Louis,Brooklyn,Prospect-Lefferts Gardens,40.65752,-73.95728,Entire home/apt,92,5,192,2019-07-06,3.14,2,281 +3334850,Charming Quiet Apartment in NYC (安靜公寓),16838156,Mark,Manhattan,Kips Bay,40.73953,-73.98009,Entire home/apt,185,29,5,2018-07-03,0.08,1,2 +3337808,Clean & Comfy Modern Townhouse,3655542,Alexis,Brooklyn,Boerum Hill,40.68732,-73.98254,Entire home/apt,1000,4,0,,,1,0 +3339205,Updated 1 bedroom heart of Chelsea,15689833,Whitney,Manhattan,Chelsea,40.74259,-74.00128,Entire home/apt,160,4,11,2017-01-02,0.18,1,1 +3339273,Quiet & Close to All + Washer/Dryer in Chelsea,7245581,Michael,Manhattan,Chelsea,40.75045,-73.99662,Entire home/apt,93,110,12,2019-02-18,0.26,19,329 +3339399,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73316,-74.00632,Entire home/apt,300,30,13,2019-05-20,0.24,39,291 +3341682,Prime Greenpoint/Williamsburg room,1558222,Nikki,Brooklyn,Greenpoint,40.72285,-73.95192,Private room,75,1,3,2015-10-19,0.05,3,0 +3343038,Mellow One Bedroom in Chelsea ,16872923,Spencer,Manhattan,Chelsea,40.74934,-74.00274,Entire home/apt,370,1,8,2014-08-28,0.13,1,365 +3343299,Gorgeous brownstone- NYC living! ,16874459,Nicole,Manhattan,Kips Bay,40.74369,-73.98153,Entire home/apt,425,2,4,2015-09-14,0.07,1,0 +3344177,Park Slope Haven,10457196,Richard,Brooklyn,South Slope,40.6674,-73.98273,Entire home/apt,200,30,4,2019-06-28,0.18,11,282 +3344237,Stay in the heart of the East side!,16879147,Alejandro,Manhattan,Midtown,40.75958,-73.96231,Private room,125,2,55,2019-06-27,0.89,1,348 +3344509,Beautiful Chelsea Loft 700 Sq ft,1290508,Robert,Manhattan,Chelsea,40.74646,-73.99678,Entire home/apt,179,10,1,2017-01-03,0.03,1,0 +3344815,Good Living in Brooklyn! Double Bed,16883036,Karen,Brooklyn,Bushwick,40.69893,-73.91549,Private room,46,2,55,2019-01-02,1.24,1,346 +3349699,Spacious apartment with garden,19402,Susanna,Brooklyn,Williamsburg,40.70972,-73.95576,Entire home/apt,150,5,37,2019-04-26,0.76,1,86 +3350417,Affordable Room in Artsy Apartment,12556197,Rez,Brooklyn,Crown Heights,40.66959,-73.95664,Private room,52,4,37,2017-03-04,0.60,2,0 +3351584,Amazing Oasis in NYC!,455017,Lauren,Manhattan,Washington Heights,40.83473,-73.93706,Private room,80,1,1,2019-05-25,0.67,1,351 +3352030,Delightful & Modern 1 Bedroom,317692,Tara,Brooklyn,Boerum Hill,40.68687,-73.98472,Entire home/apt,120,2,4,2015-09-27,0.08,1,0 +3352608,A Dream! Luxury 3 Bedroom Apt+Pking,16916853,Olga,Brooklyn,Sheepshead Bay,40.58527,-73.93534,Entire home/apt,300,5,8,2017-01-09,0.13,2,363 +3354367,Beautiful Brooklyn Heights Share,8882019,Katherine,Brooklyn,Brooklyn Heights,40.69846,-73.99312,Private room,110,2,1,2015-10-01,0.02,1,189 +3354459,Family home near Prospect Park,16926937,Johanna,Brooklyn,South Slope,40.66691,-73.98507,Entire home/apt,200,1,4,2019-04-27,0.07,1,0 +3354484,Sunny 1 bed home close to Manhattan,4319841,Maria,Brooklyn,Windsor Terrace,40.65181,-73.97648,Entire home/apt,75,5,9,2017-08-10,0.16,1,0 +3357882,Spacious and unique 1 bdrm / 2 bath,16942970,Caleb,Manhattan,Upper East Side,40.76649,-73.96453,Entire home/apt,200,5,49,2018-12-02,0.84,1,25 +3358937,ADORABLE 2BR in Chelsea!!,16947051,Cayla,Manhattan,Chelsea,40.74722,-74.00466,Entire home/apt,300,3,11,2016-04-17,0.19,1,0 +3359315,Sublet near Columbia University,16948705,Berhani,Manhattan,Harlem,40.81742,-73.95358,Private room,22,10,3,2015-08-08,0.05,1,0 +3359510,Gorgeous Loft w/ 2 queen beds & full kitchen!,7503643,Vida,Brooklyn,Greenpoint,40.72428,-73.94348,Entire home/apt,129,30,15,2019-06-30,0.27,52,157 +3362302,TRENDY LOWER EAST SIDE STUDIO,16962600,Debris,Manhattan,Lower East Side,40.71866,-73.98592,Entire home/apt,125,7,4,2015-01-30,0.07,1,0 +3363364,Cozy 1 bedroom in charming home.,16968100,Sandra,Brooklyn,East Flatbush,40.65284,-73.94413,Private room,150,1,0,,,1,299 +3363462,Gorgeous Studio Apt Upper East Side,16968641,Tanya,Manhattan,Upper East Side,40.77486,-73.94857,Entire home/apt,185,5,18,2019-05-20,0.30,1,31 +3367150,"Sunny, spacious, 1BR in Willamsburg",16989237,Aleksandra,Brooklyn,Williamsburg,40.71626,-73.95795,Entire home/apt,158,4,17,2017-07-24,0.28,1,0 +3368427,Happy big family,4044499,Alexander,Brooklyn,Flatbush,40.65287,-73.96353,Private room,30,1,0,,,1,0 +3368441,Modern rowhouse in prime Ft Greene,5783747,Kathrine,Brooklyn,Fort Greene,40.68981,-73.97768,Entire home/apt,316,3,29,2019-06-23,0.49,1,6 +3369100,Park Slope Studio Apartment,16106756,Michael,Brooklyn,Park Slope,40.67978,-73.97458,Entire home/apt,175,3,176,2019-06-26,2.88,1,0 +3369623,Astoria: full apartment,17000648,Michael,Queens,Astoria,40.7743,-73.92579,Entire home/apt,97,3,33,2016-01-02,0.65,1,0 +3369826,Quant 1bdrm in midtown west,17001535,Paul,Manhattan,Hell's Kitchen,40.75524,-73.99839,Entire home/apt,175,1,1,2014-09-24,0.02,1,347 +3369929,Couch in E. Williamsburg Luxury Apt,1910452,Thuy,Brooklyn,Williamsburg,40.70586,-73.94135,Shared room,60,1,0,,,2,0 +3370285,Private Charming Spacious Bedroom,17003476,Catherine,Brooklyn,Crown Heights,40.67591,-73.93985,Private room,72,3,6,2016-06-15,0.10,1,83 +3372399,Lisa's Townhouse - Luxury & Style,17015217,Peter,Brooklyn,Bedford-Stuyvesant,40.68753,-73.93656,Entire home/apt,175,5,82,2019-01-01,1.41,1,0 +3372642,"Upper West Side Apt, One Block to Central Park",1283991,Loubna,Manhattan,Upper West Side,40.78818,-73.97133,Entire home/apt,225,3,0,,,1,0 +3372925,Beautiful Summer Sublet in Ditmas Park Brooklyn,17018997,Paul,Brooklyn,Flatbush,40.64615,-73.9641,Entire home/apt,85,5,1,2017-07-03,0.04,1,0 +3373030,"Cute,Cozy Lower East Side 1bdrm",7549,Ben,Manhattan,Lower East Side,40.71307,-73.99025,Entire home/apt,150,1,60,2019-06-25,1.00,4,188 +3375448,Williamsburg Garden Apartment,2377104,Hannah,Brooklyn,Williamsburg,40.71122,-73.94985,Entire home/apt,225,2,257,2019-06-23,4.21,2,179 +3375998,"Manhattan Club Dec. 23-30, 2017",17032761,Julia,Manhattan,Midtown,40.76423,-73.98187,Private room,400,7,5,2017-12-30,0.09,1,0 +3376567,Luxury Duplex in Williamsburg with private bath,2042864,Anna,Brooklyn,Williamsburg,40.70926,-73.94673,Private room,125,4,14,2018-03-20,0.30,1,0 +3376999,Fabulous Family Getaway,17036912,Julia,Brooklyn,Crown Heights,40.66911,-73.94824,Entire home/apt,200,3,153,2019-06-24,2.64,1,260 +3378404,WHOLE LARGE 1-BEDROOM APARTMENT,3463555,David,Manhattan,Washington Heights,40.85304,-73.93555,Entire home/apt,88,2,0,,,1,0 +3378576,Private room in Williamsburg Apt,6273146,Jon,Brooklyn,Williamsburg,40.70935,-73.94614,Private room,250,1,0,,,1,0 +3378585,Beautiful Studio Near Times Square ,13535952,Nastassia,Manhattan,Hell's Kitchen,40.76125,-73.99642,Entire home/apt,300,1,0,,,1,0 +3379914,Spacious & Cozy NYC Apartment in Brooklyn/Queens,9317567,Suzy,Queens,Ridgewood,40.70026,-73.90721,Entire home/apt,89,10,10,2019-03-18,0.18,1,222 +3383382,Modern 1 BR + terrace in Gramercy,908514,David,Manhattan,Kips Bay,40.73873,-73.981,Entire home/apt,165,2,25,2019-05-27,0.41,1,0 +3383662,Affordable Room in Beautiful Apt !,6146050,Victoria,Manhattan,Financial District,40.70885,-74.002,Private room,84,15,0,,,2,0 +3386226,"Lovely 2 Floor Home, Gem in Heart of Williamsburg!",4185064,Paulina,Brooklyn,Williamsburg,40.71649,-73.96166,Entire home/apt,285,1,89,2019-06-23,1.47,2,110 +3386746,Extra Large 1BR,17087544,Hannah,Brooklyn,Windsor Terrace,40.64846,-73.97338,Entire home/apt,150,4,26,2015-09-15,0.44,1,0 +3386923,"cozy room, close to trains, explore brooklyn!",2468616,Arika,Brooklyn,Crown Heights,40.66955,-73.95027,Private room,70,2,10,2019-06-08,0.16,2,68 +3387493,Superior Two BR - UES (30 Days MIN),15310997,Mor,Manhattan,Upper East Side,40.78193,-73.94884,Entire home/apt,300,30,3,2017-11-30,0.05,9,365 +3390839,Beautiful 2BD in Brooklyn Heights,3435970,Reno,Brooklyn,Brooklyn Heights,40.691,-73.99467,Entire home/apt,220,5,3,2018-11-04,0.13,1,186 +3391220,"City retrieve -confort,quite,light",3542562,Jana,Manhattan,Harlem,40.82491,-73.94774,Entire home/apt,149,31,0,,,4,77 +3393798,Greenwich Village cozy 1-2BD with outdoor space,8597778,Nadine,Manhattan,West Village,40.73817,-74.00274,Entire home/apt,249,3,6,2016-08-11,0.10,1,0 +3393999,Spacious 1 bd in Crown Heights,2443535,Avraham,Brooklyn,Crown Heights,40.67321,-73.93093,Entire home/apt,90,7,0,,,1,0 +3394044,Panoramic view of Upper Manhattan!,10657357,Ivan,Manhattan,Washington Heights,40.83367,-73.94298,Private room,69,3,18,2019-05-04,0.29,4,270 +3394314,Entire lux apt in Williamsburg - 30 days or more,12057272,Nicky,Brooklyn,Greenpoint,40.71959,-73.95153,Entire home/apt,120,30,77,2016-05-16,1.30,1,3 +3394517,A cozy room in a 3 bedroom apt,17125263,Mario,Manhattan,East Harlem,40.80174,-73.93925,Private room,69,2,60,2019-06-29,1.05,2,271 +3394768,Your NYC haven at Upper Manhattan!,10657357,Ivan,Manhattan,Harlem,40.83058,-73.9495,Private room,54,5,21,2019-04-29,0.34,4,187 +3394964,Your Manhattan haven: dressed in red,10657357,Ivan,Manhattan,Washington Heights,40.83132,-73.94101,Private room,50,5,24,2019-06-27,0.39,4,177 +3395099,An Upper-Manhattan room of your own!,10657357,Ivan,Manhattan,Washington Heights,40.83328,-73.94511,Private room,51,6,20,2019-06-15,0.33,4,258 +3395398,Cozy BR in heart of Manhattan (Hell's Kitchen),17130866,Thomas,Manhattan,Hell's Kitchen,40.76496,-73.99073,Private room,99,3,10,2018-07-15,0.58,1,0 +3395697,Two-Floor Apartment on Upper West,17132728,Nick,Manhattan,Upper West Side,40.7939,-73.97485,Entire home/apt,290,7,1,2016-09-22,0.03,1,0 +3399909,Super cute and sunny 2 bedroom,39304,Andrea,Brooklyn,Williamsburg,40.71852,-73.94165,Entire home/apt,240,365,0,,,1,363 +3400359,Awesome Deal NYC,16286162,Pat,Bronx,Allerton,40.86677,-73.85938,Private room,49,2,114,2019-06-29,1.87,4,240 +3400645,Charming 1BR Private GARDEN Apt!,178784,Michael,Brooklyn,Boerum Hill,40.68572,-73.98602,Entire home/apt,115,3,6,2017-09-15,0.10,1,0 +3400739,Brooklyn Cozy and Convenient,17151343,Ayodele,Brooklyn,Crown Heights,40.67132,-73.9325,Private room,78,21,60,2016-12-01,0.99,1,0 +3401083,Sunny Bushwick Brownstone,17153037,Janice,Brooklyn,Bushwick,40.69195,-73.92068,Entire home/apt,125,7,25,2018-08-13,0.41,1,270 +3401271,Suite Lounge,5851210,Amy,Manhattan,East Harlem,40.79191,-73.94433,Entire home/apt,135,3,225,2019-07-01,3.69,2,13 +3401911,Battery Park City Sunny Bedroom ,17156530,Lily,Manhattan,Battery Park City,40.71062,-74.01537,Private room,110,1,0,,,1,0 +3402474,"Modern 1 Bedroom with Large Windows, Lots of Light",17157906,Brendon,Manhattan,Financial District,40.70765,-74.00761,Entire home/apt,205,2,8,2017-01-01,0.16,1,0 +3403034,Modern Manhattan Living Suite 2A,17161465,Judette,Manhattan,Harlem,40.82967,-73.94428,Entire home/apt,95,30,36,2019-04-30,0.61,1,245 +3404472,Charming Boutique Room in Bushwick,17169449,Kip,Brooklyn,Bushwick,40.69502,-73.90645,Private room,55,3,225,2019-06-30,3.70,1,15 +3404668,"Comfy room, minutes from metro for up to 3 people!",17170345,Carl,Brooklyn,Brownsville,40.66682,-73.92303,Private room,47,2,118,2019-06-10,1.99,1,310 +3404873,Spot in the Heights!,17171419,Mordechai,Manhattan,Washington Heights,40.85083,-73.9287,Private room,39,4,48,2019-06-12,0.82,2,12 +3408897,Gorgeous 2 Bedroom Loft in the Heart of Chelsea,17190169,Craig,Manhattan,Chelsea,40.7476,-73.99195,Entire home/apt,349,5,19,2019-05-04,0.45,1,358 +3410516,Luxurious Living in Williamsburg/Brooklyn,17196239,Sabine,Brooklyn,Williamsburg,40.71082,-73.95186,Entire home/apt,250,1,7,2019-04-26,0.12,1,170 +3411006,"COOL, ARTSY & CENTRAL APARTMENT",4903508,Dee,Manhattan,East Village,40.73165,-73.98715,Entire home/apt,290,7,90,2019-06-14,1.53,1,41 +3411815,"Lovely, Sunny Bedroom in Huge DUMBO Apartment",1649108,Allie,Brooklyn,Vinegar Hill,40.7044,-73.98153,Private room,85,1,83,2019-05-31,1.51,3,21 +3411912,"Charming Apt, Perfect for Couples!",2574806,Liz,Brooklyn,Bushwick,40.69349,-73.92211,Entire home/apt,170,2,1,2015-12-09,0.02,1,0 +3412633,Sunny top floor loft with skylight in downtown NY,1964249,Stina,Manhattan,Lower East Side,40.72012,-73.99092,Entire home/apt,146,11,50,2019-06-04,0.82,1,0 +3412893,Studio Apt. 15 min from Manhattan,17206543,Griffin,Queens,Astoria,40.77056,-73.92159,Entire home/apt,99,2,7,2018-09-04,0.12,1,0 +3414607,Sweet 2 bed in Elevator Building,3640784,Marta,Brooklyn,Prospect Heights,40.68148,-73.96674,Entire home/apt,150,3,25,2019-07-06,0.42,1,18 +3414885,Artsy Modern Hideout | Two bedrooms with backyard!,5722995,Blake,Brooklyn,Williamsburg,40.71122,-73.94893,Entire home/apt,240,2,87,2019-06-28,1.46,1,77 +3415102, 3 bedroom loft in Williamsburg,17218916,Randall,Brooklyn,Williamsburg,40.7117,-73.96321,Entire home/apt,500,2,48,2019-05-05,0.80,1,365 +3415455,Bright & Spacious 15 mins to Midtown Manhattan,4345336,Steve,Queens,Sunnyside,40.7468,-73.92218,Private room,48,2,33,2019-06-28,0.92,1,113 +3420223,Sunny Bushwick Apartment / Morgan L,17241205,Abigail,Brooklyn,Williamsburg,40.70791,-73.93396,Entire home/apt,129,1,21,2016-09-05,0.36,1,0 +3420648,Lovely Near Time square in 1bedroom,16345041,Han,Manhattan,Hell's Kitchen,40.76477,-73.98542,Entire home/apt,750,3,16,2015-08-19,0.27,1,365 +3421589,Adorable Soho Apartment,17243187,Lana,Manhattan,SoHo,40.72511,-74.00016,Entire home/apt,180,5,9,2019-04-14,0.15,1,87 +3423032,"Cozy 1 BD in Astoria, City Bike & NYFerry nearby",12483101,FLora,Queens,Long Island City,40.76844,-73.93819,Private room,70,3,1,2018-08-25,0.09,1,342 +3423516,Independence in NYC,17256091,Timothy,Manhattan,Upper East Side,40.77565,-73.95086,Entire home/apt,150,2,0,,,1,0 +3424458,Sun-soaked 1BR in Park Slope with amazing NYC view,17247205,Laura,Brooklyn,Park Slope,40.66891,-73.97987,Entire home/apt,240,1,1,2017-10-31,0.05,1,0 +3425054,Gorgeous 1BR Park Slope Apt/Garden,7398990,Laura,Brooklyn,Park Slope,40.67505,-73.97795,Entire home/apt,100,5,10,2018-01-05,0.17,1,0 +3425168,East Village Apt at Great Location ,10665748,Gabi,Manhattan,East Village,40.73005,-73.98525,Entire home/apt,122,30,7,2019-05-16,0.12,1,339 +3426233,2 Bd/1 Bath Apartment Upper East Side NYC,17272284,Geoffrey,Manhattan,Upper East Side,40.76349,-73.95969,Entire home/apt,400,3,9,2019-04-28,0.36,2,0 +3429765,Sunny Private Room,16286162,Pat,Bronx,Allerton,40.86689,-73.85776,Private room,47,2,75,2018-07-05,1.27,4,172 +3430612,Beautiful Brooklyn 3 bdrm in Prospect Heights,17289499,Laura,Brooklyn,Prospect Heights,40.67998,-73.96743,Entire home/apt,140,3,12,2017-09-04,0.20,1,4 +3431378,Luxe Tuscan Suite Private Room,17292935,Anne,Bronx,Mott Haven,40.81055,-73.92482,Private room,55,1,231,2019-06-22,3.95,2,16 +3431816,APT IN PROSPECT/CROWN HEIGHTS ,4274268,Konstantino,Brooklyn,Crown Heights,40.67183,-73.95491,Entire home/apt,110,4,3,2016-01-03,0.05,1,0 +3432660,"Neat, Classy, and Simple.",17299359,Lionel,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95792,Entire home/apt,175,3,1,2014-10-24,0.02,2,365 +3434211,Luxury Furnished Apt @TriBeCa/Soho,11081628,Arjun,Manhattan,Civic Center,40.71663,-74.00231,Entire home/apt,80,7,6,2018-05-29,0.18,1,0 +3434303,Cute Studio in Midtown East/UES!,16914467,Sharon,Manhattan,Midtown,40.75812,-73.96171,Entire home/apt,150,2,4,2016-11-10,0.07,1,0 +3434471,Spacious 2 BDR Apt. Upper West Side,13148521,Kira,Manhattan,Upper West Side,40.79037,-73.97195,Entire home/apt,200,4,4,2015-08-11,0.07,1,0 +3435260,Private Sunny Room in Park Slope,17315514,Ana,Brooklyn,Sunset Park,40.66201,-73.99719,Private room,50,10,1,2016-11-08,0.03,2,0 +3437101,Sparkling Brick APT Heart UES +Yoga,17318747,Jay,Manhattan,Upper East Side,40.77343,-73.95979,Private room,99,1,21,2019-06-15,0.47,2,82 +3439207,Comfortable and Convenient,5634395,Sarah,Manhattan,Harlem,40.82186,-73.95672,Private room,60,7,11,2018-08-26,0.18,2,0 +3440135,Cozy studio in the heart of Greenwich Village,7356757,Casey,Manhattan,Greenwich Village,40.73232,-74.0002,Entire home/apt,225,1,39,2019-06-18,2.73,1,49 +3440741,Charming Tudor 1BD Uptown,17339848,Elizabeth,Manhattan,Washington Heights,40.85529,-73.9398,Entire home/apt,175,3,5,2016-09-09,0.08,1,0 +3441130,New Building in Williamsburg,6045456,Daniel,Brooklyn,Williamsburg,40.71409,-73.93979,Private room,60,7,16,2019-04-05,0.26,1,313 +3442067,Spacious Studio in Luxury Building,17198795,Julie,Manhattan,Upper East Side,40.78284,-73.94825,Entire home/apt,255,2,1,2015-09-28,0.02,1,341 +3442140,Large room in renovated apartment in Williamsburg,8697041,Gaspard,Brooklyn,Williamsburg,40.71266,-73.94829,Private room,75,15,4,2015-09-30,0.07,2,0 +3442152,Stunning Park Slope 2BR,17347275,Jean-Cosme,Brooklyn,Gowanus,40.68094,-73.98205,Entire home/apt,190,3,2,2015-08-16,0.03,1,0 +3445138,The Sunniest of Brooklyn Brownstones,17051201,G,Brooklyn,Park Slope,40.67224,-73.97837,Entire home/apt,495,3,15,2019-05-27,0.27,3,198 +3447238,"Spacious, Sunny 1 Bedroom Apartment",13637847,Sasha,Brooklyn,Crown Heights,40.67432,-73.95949,Entire home/apt,98,5,11,2019-06-17,0.18,1,188 +3447448,Waterfront Experience,14509754,Wally,Brooklyn,Williamsburg,40.71936,-73.96181,Private room,150,1,0,,,1,364 +3448037,Modern Pad in Prime Williamsburg!,634096,Naomi,Brooklyn,Williamsburg,40.71644,-73.95876,Entire home/apt,250,1,0,,,1,0 +3450210,Spacious Apt in Townhouse near Columbia University,17389236,Emilie,Manhattan,Harlem,40.80493,-73.95677,Entire home/apt,215,1,107,2019-06-22,1.80,1,47 +3452721,Prime Williamsburg 1 bd apartment,17130308,David Jerome,Brooklyn,Williamsburg,40.72154,-73.95449,Entire home/apt,200,5,7,2016-01-02,0.12,1,0 +3452835,"Artsy, Garden Getaway in Central Brooklyn",666862,Amy,Brooklyn,Clinton Hill,40.68266,-73.96743,Entire home/apt,100,2,45,2016-11-27,0.98,1,0 +3453488,Huge Loft in prime Williamsburg - monthly rental,2533026,Omar,Brooklyn,Williamsburg,40.71204,-73.95628,Entire home/apt,200,30,0,,,1,0 +3455983,Perfect Apartment For Young Family,178551,Jena,Manhattan,Harlem,40.81525,-73.95279,Entire home/apt,200,6,0,,,1,0 +3457770,Cute 1 BR in the Lower East Side,9604972,Alexia,Manhattan,Lower East Side,40.7212,-73.98893,Entire home/apt,110,1,1,2014-08-09,0.02,1,0 +3458525,Modern & Cozy 1BD Garden Apt,17430718,Natasha,Manhattan,Harlem,40.81511,-73.94315,Entire home/apt,115,3,64,2019-06-19,1.05,2,211 +3461872,Private BR in 3 BR Apt - E. Harlem,5220670,Jonathon,Manhattan,East Harlem,40.80278,-73.94001,Private room,75,1,3,2015-10-04,0.05,1,0 +3462975,Boutique Loft Condo In West Village,17159358,Richard,Manhattan,West Village,40.73476,-74.001,Entire home/apt,289,1,7,2015-09-24,0.12,1,0 +3463385,Gorgeous room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76717,-73.95532,Private room,95,1,202,2019-05-27,3.31,2,263 +3463475,☆ PERFECT MANHATTAN LOCATION NEAR SUBWAY & CAFES!☆,1384256,Jenny,Manhattan,Lower East Side,40.71812,-73.98619,Entire home/apt,197,1,285,2019-06-30,4.83,1,8 +3464727,Fabulous 1 Bedroom Apt for 1 week,17456385,Kelsey,Manhattan,Hell's Kitchen,40.76753,-73.98397,Entire home/apt,150,1,0,,,1,0 +3464971,Sunny Home on Brooklyn Border: 15 min to Manhattan,17457445,Kermit & Azadeh,Queens,Ridgewood,40.70706,-73.91437,Entire home/apt,225,7,0,,,1,0 +3465604,Elegant Brownstone Duplex,12220316,Mary,Brooklyn,Fort Greene,40.6857,-73.97088,Entire home/apt,375,3,6,2018-08-27,0.10,1,252 +3465651,"“No Place Like Home” +1st Floor Suburban Apt.",4060346,"Lisa, Nancy & John",Staten Island,Eltingville,40.54268,-74.16254,Private room,56,1,145,2019-07-05,2.38,1,258 +3465977,Next to Central Park and Natural Science Museum,1535732,Pablo,Manhattan,Upper West Side,40.78478,-73.97668,Entire home/apt,225,15,15,2019-06-16,0.45,1,266 +3468486,2br with Balcony in East Harlem!,17475146,C,Manhattan,East Harlem,40.80409,-73.93988,Entire home/apt,70,7,1,2014-07-28,0.02,1,0 +3468914,Luxury One Bedroom CentralPark West,17477908,Mat,Manhattan,Upper West Side,40.79098,-73.96745,Entire home/apt,264,30,6,2018-05-24,0.10,10,281 +3468942,Luxury Studio Central Park West,17477908,Mat,Manhattan,Upper West Side,40.79219,-73.96862,Entire home/apt,199,30,11,2019-04-24,0.19,10,365 +3469115,5-Star Park Slope Suite w/King Bed,17051201,G,Brooklyn,Park Slope,40.6705,-73.97954,Entire home/apt,149,2,19,2019-04-07,0.33,3,28 +3469171,Red Hook Prime 1 BR Priv. Garden 3 blks NYC Ferry,1499484,Tom,Brooklyn,Red Hook,40.67851,-74.01591,Entire home/apt,142,1,169,2019-06-24,2.80,2,306 +3469295,Harlem Renovated Duplex Townhouse ,17479416,Tae,Manhattan,East Harlem,40.80422,-73.93841,Entire home/apt,299,4,58,2019-06-22,0.97,2,324 +3473305,One bedroom apartment,16718001,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95013,Entire home/apt,50,3,15,2016-06-21,0.25,1,0 +3474320,Private brownstone studio Brooklyn,12949460,Asa,Brooklyn,Park Slope,40.67926,-73.97711,Entire home/apt,160,1,488,2019-07-01,8.14,1,269 +3476105,Your own private big Brooklyn apt!,5810978,Ala,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95666,Entire home/apt,127,4,142,2019-05-28,2.34,1,2 +3476431,Charming Fort Greene Studio,4374828,Michelle,Brooklyn,Clinton Hill,40.68407,-73.96715,Entire home/apt,110,3,39,2019-01-01,0.85,1,0 +3478771,Great Room in Heart of LES,6230230,John,Manhattan,Lower East Side,40.71922,-73.98472,Private room,69,2,36,2019-06-30,0.60,3,5 +3479019,Lovely and quiet Brownstone!!!!,17299359,Lionel,Brooklyn,Bedford-Stuyvesant,40.68448,-73.95854,Entire home/apt,175,3,4,2014-11-02,0.07,2,365 +3479614,Charming East Village Apartment,3395227,Brian,Manhattan,East Village,40.72402,-73.98771,Entire home/apt,179,5,72,2016-11-22,1.18,1,0 +3479639,Designer's duplex loft with 16' ceilings,17527788,Taylor,Brooklyn,Bushwick,40.69642,-73.93361,Entire home/apt,144,1,51,2019-06-15,0.84,2,85 +3482919,Awesome SoHo/Little Italy 1BD,4320908,David,Manhattan,Nolita,40.72044,-73.99645,Entire home/apt,175,7,0,,,1,0 +3485146,"Sun Soaked, NYC Brownstone Apt",6707119,Parnell,Manhattan,Harlem,40.8079,-73.94887,Entire home/apt,150,1,1,2014-12-30,0.02,1,0 +3486103,Best of Brooklyn & 5 min to Manhattan!,3841446,Tony,Brooklyn,Williamsburg,40.71023,-73.95688,Entire home/apt,109,2,214,2019-06-27,4.58,1,127 +3487445,Sunny and Spacious 1 bedroom apt,2553182,Esty,Manhattan,Upper East Side,40.77097,-73.94848,Entire home/apt,350,1,0,,,1,0 +3488283,1BR Apt in the Bay Ridge!,17208512,Aleksandar,Brooklyn,Bay Ridge,40.63195,-74.0214,Entire home/apt,75,3,4,2019-04-28,0.08,1,0 +3488989,"Sunny, Quiet Apt. in Manhattan",17568735,William,Manhattan,Harlem,40.82639,-73.94186,Entire home/apt,135,3,3,2015-09-08,0.05,1,0 +3489095,Location Silma,3250450,Petya,Queens,Maspeth,40.74064,-73.89956,Private room,39,30,0,,,18,352 +3489242,Location little Elio,3250450,Petya,Queens,Astoria,40.771,-73.92563,Private room,38,30,8,2019-06-12,0.14,18,358 +3490317,Lovely sun-lit 3-bedroom apartment,15697051,Assiati,Brooklyn,Bedford-Stuyvesant,40.68885,-73.92354,Entire home/apt,195,2,231,2019-06-22,3.82,1,251 +3492910,Manhattan Columbia University Courtyard Studio,17266994,Tom,Manhattan,Morningside Heights,40.8081,-73.95647,Entire home/apt,146,3,91,2019-06-06,1.52,2,223 +3493833,Huge Artist Loft with BBQ deck - WILLIAMSBURG,17592620,Paul,Brooklyn,Williamsburg,40.71788,-73.96021,Entire home/apt,318,5,19,2019-06-01,0.32,1,268 +3495686,Lofted Murray Hill 1-bedroom w/ spiral staircase,721833,Joshua,Manhattan,Kips Bay,40.74593,-73.97915,Entire home/apt,184,3,0,,,1,0 +3495854,Studio loft - Williamsburg/Bushwick,17601262,Enrico,Brooklyn,Williamsburg,40.7139,-73.9353,Entire home/apt,140,2,133,2019-06-27,2.52,2,283 +3496384,Interfaith Retreat Guest Rooms (Om),16677326,Alex And Zeena,Manhattan,Chelsea,40.74977,-73.99647,Private room,85,1,145,2019-06-24,3.48,12,342 +3496438,NYC 1BD near Central Park & Shops,17604079,Meghan,Manhattan,Harlem,40.80724,-73.94739,Entire home/apt,170,1,1,2014-08-05,0.02,1,0 +3499016,House 1 Bed $100/ night per person,17618198,Edvaldo,Queens,Ditmars Steinway,40.77902,-73.90768,Private room,100,2,2,2014-09-22,0.03,1,365 +3499174,"One of a Kind, Penthouse Apartment ",6145540,Eddie,Manhattan,Nolita,40.7208,-73.99436,Entire home/apt,350,4,8,2017-05-06,0.13,1,196 +3499251,Classic Upper West Side studio loft,10034987,Izzy,Manhattan,Upper West Side,40.78273,-73.97319,Entire home/apt,199,3,25,2016-12-31,0.42,1,0 +3499326,"Sunny, Tall Artsy Loft @ Williamsburg",380728,Ligeia,Brooklyn,Williamsburg,40.71119,-73.96703,Private room,77,6,17,2015-09-01,0.29,1,188 +3504289,Cheap accommodation in Manhattan,11308483,Nathan,Manhattan,Kips Bay,40.73877,-73.98171,Private room,80,1,2,2014-07-11,0.03,1,0 +3507112,"#1 PRIVATE STUDIO IN BX,15MINS NYC.",17658078,Richard,Bronx,Mott Haven,40.81049,-73.9043,Private room,79,2,11,2016-03-19,0.19,1,0 +3509822,"Cute Room, Courteous Hosts",17671787,Nicole,Brooklyn,Bushwick,40.69601,-73.92236,Private room,550,3,5,2015-06-05,0.10,1,358 +3510929,Apartment in beautiful Brooklyn Heights,130216,Maria,Brooklyn,Brooklyn Heights,40.69088,-73.99416,Entire home/apt,155,5,7,2018-07-17,0.12,1,17 +3511778,10th St / W Village Junior Loft,17681072,Brooks,Manhattan,Greenwich Village,40.73331,-73.9941,Entire home/apt,275,30,12,2016-09-25,0.20,1,358 +3511883,Williamsburg Garden Escape,17347754,Benjamin,Brooklyn,Williamsburg,40.71187,-73.93593,Entire home/apt,119,2,10,2017-10-09,0.18,1,0 +3511898,"Cute & Cozy Greenpoint Apt, Great Location",17682043,Adi,Brooklyn,Greenpoint,40.73689,-73.95488,Entire home/apt,85,20,5,2017-07-31,0.09,1,0 +3511934,Beautiful West Harlem brownstone,17682312,Arnold,Manhattan,Harlem,40.82947,-73.95104,Private room,84,1,0,,,1,0 +3512428,Lovely room in doorman building,17616305,Gabrielle,Manhattan,Harlem,40.82774,-73.9508,Private room,90,2,127,2019-07-06,2.15,1,58 +3512620,Garden Floor Duplex with patio,617127,Amy,Brooklyn,Crown Heights,40.67619,-73.94389,Entire home/apt,135,5,53,2019-06-24,0.90,1,191 +3513303,CHEAP BIG room in Williamsburg,4904811,Megan,Brooklyn,Williamsburg,40.70848,-73.95323,Private room,90,3,230,2019-06-16,3.79,1,125 +3513662,Luxury 2 bed apt in WILLIAMSBURG BK,6153186,Michael,Brooklyn,Williamsburg,40.71784,-73.95521,Entire home/apt,150,1,5,2015-12-17,0.08,1,0 +3513960,AMAZING ROOM ARTSY BKLYN BROWNSTONE,4847926,Shelley,Brooklyn,Flatbush,40.64246,-73.95443,Private room,38,3,76,2019-06-03,1.30,3,253 +3517621,Amazing Renovated studio MurrayHill,1475015,Mike,Manhattan,Kips Bay,40.74318,-73.97858,Entire home/apt,87,30,4,2019-06-30,0.07,52,343 +3517646,"Spacious, light-filled home by Prospect Park",17711637,Carrie,Brooklyn,Kensington,40.6451,-73.97798,Entire home/apt,210,5,3,2018-08-13,0.05,1,0 +3518682,Beautiful Room in Park-Side Apt,5407403,Marissa,Manhattan,Inwood,40.86176,-73.93082,Private room,80,2,50,2017-05-21,0.83,1,6 +3519172,Gallery Suite,17719747,Rhonda,Brooklyn,Fort Greene,40.68902,-73.96976,Entire home/apt,250,3,20,2019-06-23,0.39,1,323 +3521162,Studio in the heart of Chelsea,17730490,Ashley,Manhattan,Chelsea,40.74252,-73.9975,Entire home/apt,175,1,18,2016-05-11,0.31,1,0 +3522244,Charming Brooklyn Room,922478,Brad,Brooklyn,Clinton Hill,40.6825,-73.95888,Private room,65,1,52,2019-06-09,0.87,2,82 +3522329,East Village 1 Bedroom,17737666,Allie,Manhattan,East Village,40.73136,-73.98714,Entire home/apt,140,1,48,2016-01-17,0.81,1,0 +3522513,Central Park home away from home,17739111,Christopher,Manhattan,Harlem,40.80297,-73.95132,Entire home/apt,129,4,17,2019-06-24,0.28,1,64 +3522539,"Musician's Loft 1BR w/ Outdoor Space, WiFi, Parks",515946,Jonathan,Manhattan,East Village,40.73041,-73.9896,Entire home/apt,159,4,45,2019-06-12,0.75,1,87 +3523001,"Lovely Tudor Home with Studio in Queens, NY",10628463,Pat & Ray,Queens,Fresh Meadows,40.75037,-73.79154,Private room,125,7,0,,,1,365 +3526122,W Village Apt w/ Private Roof,4254072,Sean,Manhattan,West Village,40.73022,-74.00421,Entire home/apt,249,3,44,2019-06-21,0.74,1,332 +3529500,Gorgeous pre war rowhouse apartment,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68388,-73.94427,Entire home/apt,151,5,52,2019-06-19,0.91,5,333 +3529503,Quiet room+bath w/ separate entry.,6491377,Zaineb,Brooklyn,Bedford-Stuyvesant,40.69334,-73.94608,Private room,79,4,70,2019-06-24,1.19,1,308 +3529888,Architect's Oasis,9952523,Fabi,Brooklyn,Crown Heights,40.66919,-73.95079,Entire home/apt,125,3,10,2017-03-10,0.22,1,0 +3530122,Cozy Harlem Flat!,228012,Kev,Manhattan,Harlem,40.81792,-73.94236,Entire home/apt,135,5,76,2019-07-06,1.28,1,257 +3530395,1 BR in Great NYC Neighborhood,7665324,Edward,Manhattan,Lower East Side,40.72274,-73.99169,Entire home/apt,151,2,5,2019-04-08,0.10,2,46 +3530517,2 Story Loft!! Tribeca/Soho :-) best neighborhood,17773625,Josie,Manhattan,Tribeca,40.72113,-74.00478,Entire home/apt,600,3,73,2019-06-14,1.23,1,282 +3531018,It's The Brooklyn Way !!!,12291588,Maximus,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92975,Entire home/apt,59,1,142,2019-07-01,2.63,1,318 +3531190,"Cozy/Hip LES 2 bedroom, sleeps 2-4",1457351,Michael,Manhattan,Lower East Side,40.72007,-73.99078,Entire home/apt,273,4,85,2019-07-05,1.41,1,91 +3531345,Ensuite in Duplex Brownstone with Private Terrace!,12337318,Andrew,Manhattan,Harlem,40.82435,-73.94507,Private room,70,2,28,2019-04-26,0.82,2,80 +3531959,Charming Artists in the Heights,17781037,Gideon & Chantal,Manhattan,Harlem,40.82447,-73.95076,Private room,95,1,2,2014-10-20,0.03,1,0 +3533180,6BDRM*APT TRAIN TO NYC 15 MIN,254846,Brendan,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9256,Entire home/apt,399,3,49,2019-06-12,0.96,4,269 +3533604,Private Room in a two bedroom apt.,9510645,Rylan,Brooklyn,Bushwick,40.70399,-73.92813,Private room,96,1,332,2019-07-06,5.57,2,355 +3533669,Charming West Village Apartment,6828085,Ricardo,Manhattan,West Village,40.73622,-74.00147,Shared room,110,1,47,2019-06-03,0.81,1,362 +3533741,Private Room in Famed Artistic Flat,17791294,Taylor,Manhattan,Hell's Kitchen,40.76878,-73.98719,Private room,110,1,0,,,1,0 +3533777,Private Room In Clean Spacious Apt,17791467,Anthony,Manhattan,Harlem,40.82233,-73.93779,Private room,69,2,249,2019-06-16,4.12,2,132 +3534137,Beautiful sunny bedroom just off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65732,-73.95991,Private room,85,2,67,2019-07-04,1.56,3,264 +3534443,Lower East Side Studio- Great Location!,13337141,Aurea,Manhattan,Lower East Side,40.71867,-73.98612,Entire home/apt,150,2,121,2019-02-03,2.02,1,0 +3539618,Large modern studio in Gramercy,506909,Nevena,Manhattan,Kips Bay,40.73788,-73.98048,Entire home/apt,170,1,9,2015-05-21,0.15,1,0 +3539882,Renovated Studio - LES,16583238,Tommy,Manhattan,Lower East Side,40.72165,-73.98759,Entire home/apt,125,5,12,2015-12-31,0.20,1,0 +3540370,Sunny room in East Village!,17820079,Kent,Manhattan,East Village,40.72673,-73.98004,Private room,130,1,191,2019-05-27,3.17,1,0 +3540722,Modern Bohemian Studio,17820464,Allison,Manhattan,East Village,40.72454,-73.97836,Entire home/apt,145,1,358,2018-12-03,5.96,1,3 +3542523,HEART of Williamsburg w/ Rooftop!,747031,Jack,Brooklyn,Williamsburg,40.71466,-73.96429,Entire home/apt,500,1,138,2017-12-20,2.34,1,282 +3543227,Private Suite 15min to Times Square,3912009,Brendan,Manhattan,Harlem,40.82193,-73.94499,Private room,95,3,160,2019-07-01,2.78,2,0 +3544273,3BR condo Brooklyn/Prospect Heights,17842194,Cathleen,Brooklyn,Crown Heights,40.67893,-73.96262,Entire home/apt,150,4,9,2017-12-31,0.15,2,0 +3544610,Apartment near the US Open,17845064,Ingrid,Queens,Forest Hills,40.73334,-73.85433,Entire home/apt,150,1,0,,,1,364 +3544828,PrivateRoom in Beautiful Brownstone,17224426,Jillian,Brooklyn,Bedford-Stuyvesant,40.68643,-73.92208,Private room,56,2,180,2019-01-02,3.04,1,0 +3544858,"Private room in Greenpoint, BK",7879349,Abby,Brooklyn,Greenpoint,40.72472,-73.94135,Private room,60,1,1,2014-08-18,0.02,1,0 +3544899,Cozy Family Gateaway!!!,7458731,Esther,Brooklyn,East Flatbush,40.66123,-73.93428,Entire home/apt,85,3,37,2018-08-06,0.62,1,310 +3545066,Cozy Apartment in Chinatown/LES,7250241,Irene,Manhattan,Lower East Side,40.71306,-73.98856,Private room,80,5,3,2015-08-29,0.05,1,0 +3548393,Charming West Village apartment,6212988,Kim,Manhattan,West Village,40.73326,-74.00604,Private room,100,3,16,2016-03-22,0.26,1,0 +3549074,Modern Townhouse - Chic Sunny Room - L/J/A/C Train,17866326,Rony,Brooklyn,Bushwick,40.70228,-73.92824,Private room,54,3,2,2017-01-02,0.05,2,0 +3549478,Tasteful French 1BD Apt w/ Garden,3563304,Fanny,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95693,Entire home/apt,113,4,38,2019-07-07,0.63,1,191 +3549798,Sunny Private Williamsburg Space,6309019,John,Brooklyn,Williamsburg,40.71474,-73.95662,Entire home/apt,200,2,175,2019-07-02,2.93,1,303 +3550298,"Bright, big, BEAUTIFUL room in renovated apt",16974369,Robert,Manhattan,Harlem,40.81813,-73.9398,Private room,75,5,5,2018-06-30,0.10,1,0 +3550879,Beautiful Harlem apt with views,17874864,Kayvon,Manhattan,Harlem,40.8214,-73.95675,Shared room,200,1,31,2016-11-01,0.53,1,365 +3551778,"Faboules 1 br, in trendy Park Slope",1439449,Ilona,Brooklyn,South Slope,40.66308,-73.98309,Entire home/apt,110,30,4,2016-05-19,0.07,1,220 +3552043,Zen Loft: Huge Brooklyn Loft for Shoots & Events,319077,Shell,Brooklyn,Clinton Hill,40.68761,-73.96096,Entire home/apt,500,3,19,2019-05-05,0.36,4,365 +3552693,"2 room, by Sutton Place",17885257,David,Manhattan,Midtown,40.75503,-73.96711,Entire home/apt,180,1,0,,,1,0 +3553361,Awesome Loft in Williamsburg,15735446,Thomas,Brooklyn,Williamsburg,40.71707,-73.94708,Entire home/apt,200,1,14,2019-06-30,0.24,1,336 +3553679,Room in Upper East Side,2879920,Alberto,Manhattan,Upper East Side,40.76189,-73.96298,Private room,69,60,9,2016-04-04,0.16,2,90 +3553768,"Serene, minimalist studio W Village",17891677,Arianna,Manhattan,West Village,40.73496,-74.00005,Entire home/apt,200,5,64,2019-06-24,1.09,1,329 +3554230,Beautiful 1200 sf 3 bedroom apt off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95972,Entire home/apt,140,5,7,2019-01-01,0.15,3,14 +3554285,Entire Room Brooklyn NYC!!!,2120259,Sue,Brooklyn,Crown Heights,40.66518,-73.95109,Private room,45,4,37,2019-06-24,0.64,4,281 +3554287,Academic Summer Sublet/Sunset Park,6504434,Ayanna,Brooklyn,Sunset Park,40.64993,-74.00191,Private room,35,7,0,,,1,0 +3554599,"Great Apartment, Great Location",3902832,Elizabeth,Brooklyn,Greenpoint,40.7322,-73.95882,Private room,80,3,0,,,1,0 +3556241,Private Bamboo Garden Studio,636319,Roger,Brooklyn,South Slope,40.66252,-73.98433,Entire home/apt,150,2,0,,,1,0 +3556577,Landmark Brownstone Sunny 3 Rooms,7245581,Michael,Manhattan,Washington Heights,40.83365,-73.94059,Entire home/apt,70,180,7,2018-07-06,0.12,19,308 +3556615,TimeSq/Brdway/Midtown/A Cozy Petit Versaille/Quiet,17906693,Earle,Manhattan,Hell's Kitchen,40.76553,-73.9953,Private room,200,2,62,2019-06-09,1.06,1,304 +3559515,"Christmas in NYC! Spacious King Suite, 2 bath apt",17920050,Deidre,Manhattan,Midtown,40.76524,-73.98018,Entire home/apt,308,2,9,2018-12-02,0.15,1,0 +3559695,Soho/Nolita Studio Loft with Beautiful Terrace,17920926,Gerald,Manhattan,Nolita,40.71987,-73.9947,Entire home/apt,270,5,8,2018-08-24,0.21,1,0 +3561828,Converted Carriage House,2401823,Erin,Brooklyn,Clinton Hill,40.68695,-73.9631,Entire home/apt,150,3,0,,,1,0 +3562245,"Quiet Sunny 1-Bedroom, Prime East Village Location",8924899,Theresa,Manhattan,East Village,40.72832,-73.9852,Entire home/apt,365,2,62,2019-07-01,1.02,1,28 +3563271,Williamsville Sleep & Stay,6911276,Brian & Arlette,Brooklyn,Clinton Hill,40.6818,-73.96238,Private room,99,1,83,2019-06-12,1.39,1,248 +3565617,Modern sunny one bed apt,17953139,Oisin,Manhattan,Lower East Side,40.7211,-73.98397,Entire home/apt,175,7,9,2018-12-07,0.27,1,255 +3567258,Beautiful Loft in Union Square,298914,Fara,Manhattan,Gramercy,40.73711,-73.98985,Entire home/apt,220,4,60,2019-06-24,1.01,1,4 +3568596,Beautiful 1 BR in The Heights!,7499240,Candy,Manhattan,Washington Heights,40.8362,-73.94033,Private room,80,1,3,2015-10-19,0.05,2,314 +3569374,"Lovely 1BR Park Slope, near trains!",1673750,Valerie,Brooklyn,Park Slope,40.66617,-73.97593,Entire home/apt,230,2,7,2016-01-02,0.15,1,0 +3574304,Semi-furnished room in a large 3 bedroom apt,7438973,Telora,Manhattan,Harlem,40.81464,-73.95351,Private room,60,30,2,2018-11-12,0.19,1,183 +3575859,GREENWICH VILLAGE ROOM WITH PR.BATH (DM 4 monthly),1239959,Naz,Manhattan,Greenwich Village,40.72802,-73.99644,Private room,120,14,1,2016-09-23,0.03,1,0 +3575918,The Artist's House (with roof garden!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65698,-73.95761,Private room,45,14,8,2019-06-09,0.81,4,31 +3576160,One Bedroom in East Harlem,18008945,Francesco,Manhattan,East Harlem,40.79805,-73.94533,Entire home/apt,100,4,50,2019-05-12,0.83,1,12 +3578158,"1 bedroom apt, Brownstone in central Harlem",17891224,Jan,Manhattan,Harlem,40.80612,-73.95678,Entire home/apt,138,4,0,,,1,0 +3580577,Park Slope beauty,18032197,Domenick,Brooklyn,Sunset Park,40.66273,-73.99111,Entire home/apt,100,4,25,2019-01-03,1.11,1,0 +3581153,Modern 1BD Chelsea Apartment,18038832,Crystal & John,Manhattan,Chelsea,40.74767,-73.99393,Entire home/apt,230,1,29,2019-05-26,0.49,1,0 +3581652,Duplex in SoHa,18041691,Sebastien,Manhattan,Harlem,40.80411,-73.95624,Entire home/apt,225,1,5,2016-07-29,0.09,1,0 +3582816,Brownstone Apt with Sunny Garden,3771272,Smith O'Brien,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95031,Entire home/apt,120,2,60,2019-06-30,1.00,1,156 +3583482,Huge modern Private room available,3609048,Ken,Brooklyn,Crown Heights,40.67089,-73.93323,Private room,99,2,8,2016-06-24,0.17,3,365 +3583605,2 Bedroom in Hudson Heights ,18051675,Alexandra,Manhattan,Washington Heights,40.85153,-73.93815,Entire home/apt,150,3,0,,,1,0 +3583702,Brooklyn's Finest,18018059,Erin,Brooklyn,Bushwick,40.68258,-73.90472,Entire home/apt,122,1,157,2019-07-01,2.64,1,235 +3584528,Spacious Loft with Spiral Staircase,11495235,Leslie,Brooklyn,Bushwick,40.70204,-73.92109,Entire home/apt,150,1,2,2016-01-05,0.03,1,0 +3585452,A Beautiful Brownstone Apartment,17943391,Michael,Manhattan,Harlem,40.809,-73.94263,Entire home/apt,140,2,292,2019-06-26,4.95,2,186 +3585974,1BD in Lower East Side ,3588028,Elisa,Manhattan,Lower East Side,40.72158,-73.98998,Entire home/apt,150,3,18,2018-05-16,0.30,1,0 +3586141,"Brooklyn private room, by F,Gtrain",14898658,Chadanut,Brooklyn,Windsor Terrace,40.65015,-73.97945,Private room,38,30,77,2019-04-28,1.28,11,309 +3587219,Nice studio in heart of the of the West Village,8483704,Patrick,Manhattan,West Village,40.73002,-74.00653,Entire home/apt,200,7,16,2019-07-02,1.09,1,50 +3591107,Gorgeous Bedroom by the Park,6310115,Lanny,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95512,Private room,50,1,12,2019-01-01,0.31,1,0 +3593491,Cozy room in NYC,5164854,Lilia,Manhattan,Harlem,40.82071,-73.93813,Private room,45,6,13,2018-07-14,0.23,8,346 +3593821,Bedroom in Williamsburg w/ Terrace,18105672,Eric,Brooklyn,Williamsburg,40.71659,-73.9458,Private room,90,30,1,2015-07-26,0.02,1,0 +3594408,Bedr w Priv Bathr+Balc 15m frm city,6150064,Sonya,Queens,Astoria,40.76972,-73.9206,Private room,85,2,2,2015-08-25,0.04,1,0 +3595503,Charming bedroom in Comfy apt,18115202,Robie,Manhattan,East Village,40.7296,-73.99054,Private room,85,1,0,,,1,0 +3595554,Jackson Stayover Apt,18108212,Adriana,Queens,St. Albans,40.69283,-73.75828,Entire home/apt,108,2,81,2019-06-27,1.35,1,328 +3595574,Cheery Studio with Separate Kitchen,18115545,Olivia,Brooklyn,Prospect Heights,40.6751,-73.96558,Entire home/apt,129,3,15,2019-05-23,0.25,1,204 +3600108,Great location! Fort Greene!!!,7076239,Annie And Joan,Brooklyn,Fort Greene,40.68744,-73.9747,Entire home/apt,275,2,180,2019-06-19,2.99,2,290 +3600496,Large & Spacious **Prime Location ,12485770,Raanan,Manhattan,Midtown,40.74596,-73.98411,Entire home/apt,148,30,9,2019-03-25,0.15,9,329 +3600518,Sunny Grammercy Park Getaway,4367602,Anne,Manhattan,Gramercy,40.73389,-73.98724,Entire home/apt,250,31,0,,,1,365 +3600961,Charming 1 Bed in Trendy Location!,18142696,Morgan,Manhattan,East Village,40.72974,-73.98372,Entire home/apt,160,2,5,2015-08-20,0.08,1,0 +3601324,7even Days Sleep Near Prospect Park,16834792,Louis,Brooklyn,Crown Heights,40.66529,-73.9557,Entire home/apt,130,5,150,2019-07-03,2.48,2,309 +3601743,Classic Brooklyn brownstone,18146661,Richard,Brooklyn,Park Slope,40.66884,-73.97575,Private room,180,3,192,2019-06-29,3.20,1,60 +3601900,Cozy Private Room in the heights!,18147523,Carli,Manhattan,Washington Heights,40.84943,-73.93146,Private room,50,1,14,2018-01-01,0.23,1,0 +3602534,Gorgeous Room in Historic Townhouse,18150845,Sara,Manhattan,Washington Heights,40.83473,-73.93982,Private room,145,6,61,2019-05-17,1.17,1,257 +3602739,Private BR in Huge 2BR in Chinatown,18151946,Dave,Manhattan,Chinatown,40.71445,-73.99287,Private room,94,7,17,2017-04-17,0.28,1,0 +3603134,Amazing 1 Bedroom Apt CENTRAL PARK,17898189,Danielle,Manhattan,Upper East Side,40.77487,-73.949,Entire home/apt,180,2,24,2015-09-27,0.41,1,0 +3603287,Beautiful Furnished Room in SOHO,146825,Masaki,Manhattan,Nolita,40.72061,-73.99472,Private room,80,6,3,2016-03-26,0.07,1,0 +3603426,Brooklyn Getaway-Special Discount,18156556,Rachel,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91856,Entire home/apt,97,3,15,2018-09-30,0.25,1,0 +3604145,UNIQUE APT COZY APARTMANT,11430190,Maria,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94082,Entire home/apt,90,2,51,2018-10-29,0.86,1,179 +3605388,Serengeti Comfy APT,14157138,Justa,Brooklyn,Brownsville,40.66748,-73.92554,Entire home/apt,70,2,56,2018-10-29,0.94,1,1 +3605493,Spacious Private Apt. Near All!,16809056,Jason,Queens,Astoria,40.75997,-73.90926,Entire home/apt,120,3,29,2016-08-02,0.55,1,0 +3605524,"Midtown Apt, Quiet, Walk to Subway",17958831,Tomer,Manhattan,Kips Bay,40.74173,-73.97906,Entire home/apt,120,3,116,2019-05-29,1.95,1,261 +3605654,Large 1 bedroom/bathroom w/balcony,18170442,Giuliana,Manhattan,Financial District,40.7055,-74.00866,Entire home/apt,165,1,0,,,1,0 +3605896,Clean Private Room in Renovated Apartment,1921498,Pedro Pablo,Manhattan,Washington Heights,40.84464,-73.9355,Private room,59,9,26,2019-05-25,0.44,3,109 +3608353,Prospect Park South,18183144,Timothy,Brooklyn,Flatbush,40.64802,-73.97095,Private room,91,3,33,2019-07-01,0.65,1,90 +3609762,Sunny spacious 3 BR/ 2Bth in Bayside townhouse,18189519,Irma,Queens,Bay Terrace,40.77995,-73.78506,Entire home/apt,184,3,146,2019-06-19,2.46,1,143 +3611620,Private Room In Gorgeous Apartment July 1st-30th!,18198406,Joseph,Brooklyn,Bedford-Stuyvesant,40.692,-73.93852,Private room,45,1,13,2017-07-31,0.26,1,0 +3611813,Discount! Central Clean & Quiet,8410380,Marshall,Manhattan,Gramercy,40.73755,-73.98595,Private room,150,4,147,2019-06-14,2.44,1,344 +3613161,Exquisite SoHa/Columbia area large 2 BR,11976676,David,Manhattan,Harlem,40.80465,-73.95365,Entire home/apt,139,3,24,2017-04-26,0.49,1,0 +3613839,Cozy and sunny room in Manhattan,17450462,Esther,Manhattan,Harlem,40.82544,-73.9402,Private room,65,7,45,2019-06-09,0.92,1,290 +3614113,Private Room in East Village Manhattan,2033003,Darren,Manhattan,East Village,40.72966,-73.98515,Private room,65,2,13,2019-05-05,0.28,2,157 +3614159,"Bright, Spacious, and Well Designed",461269,Anna,Brooklyn,Prospect Heights,40.67426,-73.96586,Private room,150,2,13,2016-05-01,0.26,1,0 +3614680,"Great View, Close to City in Queens",18212957,Eddie,Queens,Astoria,40.7638,-73.91622,Entire home/apt,115,2,5,2015-12-30,0.08,1,0 +3616001,Luxury 1 Bedroom in FiDi,4421323,Justin,Manhattan,Financial District,40.70883,-74.01266,Entire home/apt,299,7,6,2018-04-29,0.19,1,0 +3616003,Large Clean Apt in Ditmas Park,18219988,Deanna,Brooklyn,Flatbush,40.63981,-73.95712,Entire home/apt,80,2,103,2019-05-27,1.70,1,0 +3616173,PRIVATE BEDROOM YOU'LL LOVE,2383619,Elma,Brooklyn,Carroll Gardens,40.68184,-73.99308,Private room,80,21,88,2018-04-02,1.50,1,364 +3616527,Pvt 1 Bed in Fort Greene,16669342,Matthew,Brooklyn,Clinton Hill,40.69741,-73.96942,Entire home/apt,100,1,0,,,1,0 +3616946,Great room near Chelsea market,18225315,Alain,Manhattan,Chelsea,40.74016,-74.00049,Private room,135,1,14,2015-12-14,0.27,1,0 +3617498,"Comfy, convenient bedroom in Bklyn!",6643482,Andy,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.96046,Private room,80,2,122,2019-06-06,2.07,1,227 +3619399,Best Cozy & Modern Room in Town,17619450,Sean,Brooklyn,Flatbush,40.63631,-73.95313,Private room,69,1,4,2015-10-20,0.09,1,0 +3623158,Private bedroom apartment 5A#1,18212433,Veronique Camille,Manhattan,East Harlem,40.7946,-73.94105,Private room,75,30,2,2018-08-05,0.04,8,352 +3623201,Charming brownstone top floor 1BD,14273136,Allegra,Brooklyn,Park Slope,40.66981,-73.98462,Entire home/apt,94,10,26,2019-06-22,0.52,1,0 +3623946,Sunny and Spacious Two Bedroom Duplex with Terrace,18254730,Valeria,Brooklyn,South Slope,40.66748,-73.98971,Entire home/apt,192,4,6,2019-04-28,0.14,1,8 +3624205,Private bedroom apartment 4B,18212433,Veronique Camille,Manhattan,East Harlem,40.79319,-73.94209,Private room,50,21,3,2019-02-12,0.30,8,350 +3624380,Private bedroom apartment 4B/2,18212433,Veronique Camille,Manhattan,East Harlem,40.7942,-73.94136,Private room,58,21,2,2017-07-04,0.04,8,331 +3624387,"Beautiful Apt x Rent in Astoria, NY",4666670,Jeanny,Queens,Long Island City,40.76481,-73.93163,Entire home/apt,120,6,25,2019-05-21,0.42,4,346 +3624653,S 2/Bedford Well-Lit Private Room,6472334,Matthew,Brooklyn,Williamsburg,40.71286,-73.96244,Private room,69,2,11,2016-04-29,0.18,2,0 +3624952,Oasis in Queens: Private BR/ bath,2574452,Samita,Queens,Jackson Heights,40.75193,-73.89085,Private room,50,4,2,2014-09-20,0.03,1,0 +3625075,Available Manhattan Apt,18260128,Neal,Manhattan,Harlem,40.82279,-73.94947,Entire home/apt,125,3,8,2018-08-13,0.13,1,0 +3625117,60s-inspired @ a penthouse loft!,18260299,Ota,Brooklyn,Bushwick,40.69217,-73.90768,Private room,50,30,14,2019-06-10,0.23,6,88 +3625870,Modern Style Meets Old World,18264329,Joaquin,Brooklyn,Sunset Park,40.64894,-74.00621,Private room,85,3,47,2019-06-23,0.81,1,299 +3626302,Beautiful Clean & Quiet Room! Rm#2,11674837,Christopher,Queens,Ridgewood,40.70554,-73.90729,Private room,59,1,173,2019-06-19,2.87,3,352 +3626426,Gorgeous! Newly Renovated 2-BR Flat,13347167,AFI Apartments,Manhattan,Upper East Side,40.77274,-73.95732,Entire home/apt,130,30,3,2018-08-10,0.08,29,308 +3626609,Entire Awesome One Bed-Lower East Side Manhattan,3038687,Karen,Manhattan,Lower East Side,40.71749,-73.99016,Entire home/apt,104,30,11,2019-03-16,0.19,8,80 +3626699,Vintage NY apt - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74365,-73.91632,Entire home/apt,95,30,8,2018-11-21,0.16,3,332 +3627106,Great 1BR-private balcony/doorman,18212433,Veronique Camille,Manhattan,Hell's Kitchen,40.76385,-73.9905,Entire home/apt,199,5,40,2019-05-20,0.68,8,43 +3627326,Spain Room,5652395,Julio,Bronx,Concourse,40.81954,-73.92715,Private room,105,1,3,2018-09-16,0.14,2,365 +3627589,Cozy Single private room.,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68599,-73.95182,Private room,34,6,81,2019-07-04,1.35,3,92 +3628190,Sunny Private Apt in Ditmas Park,14905237,Tina,Brooklyn,Flatbush,40.64372,-73.95969,Entire home/apt,120,3,12,2018-08-19,0.22,1,0 +3628328,2BR Apartment in Doorman Building,1279211,Aldo,Bronx,Concourse Village,40.82603,-73.92312,Entire home/apt,87,6,11,2019-06-04,0.28,1,0 +3628553,1 Bedroom Apartment close to Northwell & JFK,3552711,Louann,Queens,Queens Village,40.7229,-73.7462,Entire home/apt,125,1,30,2019-03-14,0.50,2,158 +3629217,Spacious 2BR townhouse,10262649,Andrew,Brooklyn,Bushwick,40.68779,-73.90521,Entire home/apt,170,2,41,2016-01-25,0.69,2,0 +3629381,Cozy UES apartment with balcony near Central Park,18287550,Grace,Manhattan,Upper East Side,40.77242,-73.96212,Entire home/apt,250,7,3,2016-12-31,0.06,1,0 +3629580,Upper East Renovated 1 Bedroom,18289867,Dan,Manhattan,East Harlem,40.79032,-73.94523,Private room,55,1,3,2014-08-27,0.05,1,0 +3630304,Spacious Bedroom 15 mins from NYC!,18297103,Beatriz,Queens,Sunnyside,40.74269,-73.91518,Private room,80,1,57,2019-06-08,0.97,1,253 +3630309,1BR Comfy Apt - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74493,-73.91528,Entire home/apt,95,30,10,2019-04-19,0.28,3,332 +3632258,Awesome NYC/UWS private bed/bath in private home,3325418,Patricia,Manhattan,Morningside Heights,40.80309,-73.96367,Private room,150,1,13,2019-04-15,1.27,3,273 +3634361,3 Bedroom Duplex,740032,Dexter,Brooklyn,Windsor Terrace,40.65413,-73.97684,Entire home/apt,140,5,28,2019-07-07,0.60,1,192 +3635348,BKLYN Brownstone- Glam Getaway!,3096525,Kini,Brooklyn,Bedford-Stuyvesant,40.67927,-73.93208,Entire home/apt,150,3,117,2019-06-21,1.96,1,242 +3635624,Cozy 1BD in the lower east side,6050632,Yana,Manhattan,Lower East Side,40.72138,-73.98371,Entire home/apt,159,3,1,2014-08-28,0.02,1,0 +3636601,"Sunny and Quiet private apartment, great location!",7245581,Michael,Manhattan,Chelsea,40.74994,-73.99612,Entire home/apt,95,75,13,2019-04-30,0.23,19,245 +3636967,Sunny 2BR Flex Loft in Greenpoint,7503643,Vida,Brooklyn,Greenpoint,40.72705,-73.94033,Entire home/apt,159,30,3,2016-09-09,0.08,52,365 +3637029,Cozy Wiliamsburg!,18343265,Melissa,Brooklyn,Bushwick,40.69942,-73.91209,Private room,65,4,18,2015-12-22,0.30,1,0 +3638841,Cozy 1 BD apartment in Sunset park,17917168,Karina,Brooklyn,Sunset Park,40.65046,-74.00402,Entire home/apt,100,1,26,2019-03-24,2.52,1,0 +3638852,Sunny room in Alphabet City,3563235,Andra,Manhattan,East Village,40.72135,-73.98,Private room,85,5,12,2016-09-06,0.20,1,0 +3641819,Sunlight filled top floor refuge with roof deck,534776,Shawna,Brooklyn,Prospect Heights,40.6786,-73.96694,Entire home/apt,175,2,25,2019-01-05,0.43,1,2 +3642278,Brooklyn Carroll Gardens Charmer!,18388112,Brett,Brooklyn,Carroll Gardens,40.68235,-73.99806,Entire home/apt,175,3,4,2016-10-03,0.07,1,0 +3642325,Luxurious Brooklyn 2BD w/ Parking,16916853,Olga,Brooklyn,Sheepshead Bay,40.58363,-73.93553,Entire home/apt,260,7,3,2017-03-13,0.05,2,363 +3642801,"Cozy Brooklyn studio, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.95816,Entire home/apt,80,3,24,2019-06-23,0.40,3,19 +3643392,Relaxed Elegance in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.93246,Private room,69,2,56,2019-07-02,0.95,7,66 +3643673,Chill 1bdrm Bk getaway,10263308,Isaiah,Brooklyn,Bedford-Stuyvesant,40.68949,-73.92784,Entire home/apt,100,3,36,2018-08-02,0.60,1,89 +3644017,"Lovely, quiet, private, close to everything",5909599,Danica,Queens,Ditmars Steinway,40.77591,-73.9145,Private room,85,1,31,2019-06-04,0.51,2,84 +3644037,Bright & Modern Apt. in Brooklyn NY,14945045,Anna,Brooklyn,Bay Ridge,40.63777,-74.02497,Entire home/apt,95,3,2,2015-08-23,0.03,1,0 +3645284,Reno 2BR~Sleeps5~Prime Upper east~,2119276,Host,Manhattan,Upper East Side,40.76043,-73.95992,Entire home/apt,160,30,15,2019-04-07,0.25,39,333 +3645866,Welcome to Kensington,946672,Josh,Brooklyn,Kensington,40.63402,-73.97556,Private room,49,2,6,2016-09-05,0.10,1,0 +3646059,Quiet Room in East Williamsburg,17525930,Jillian,Brooklyn,Williamsburg,40.71566,-73.941,Private room,65,1,35,2016-11-13,0.88,1,0 +3646551,Gramercy~Reno New 1BR-Sleeps 4~,2119276,Host,Manhattan,Gramercy,40.73568,-73.98062,Entire home/apt,150,30,2,2015-08-07,0.03,39,331 +3652120, AMAZING TIME SQUARE!!BRICK WALLS!!,1475015,Mike,Manhattan,Hell's Kitchen,40.76073,-73.99215,Entire home/apt,115,30,3,2016-02-22,0.06,52,342 +3652230,Bay Beauty - Room On The Water!,681225,Haya,Queens,Rockaway Beach,40.5903,-73.8143,Private room,113,2,36,2019-07-07,0.74,1,365 +3653996,"BRAND NEW 1BD, Columbus Circle!!",1475015,Mike,Manhattan,Hell's Kitchen,40.76882,-73.98699,Entire home/apt,110,30,10,2019-03-15,0.18,52,323 +3654510,"Sunny, spacious room in 3BR apt",7920086,Susan,Manhattan,East Harlem,40.78698,-73.944,Private room,75,11,14,2018-03-15,0.23,3,0 +3654511,ROOFTOP SWIMMING-POOL 1/BR APT.,15784,Francesco,Manhattan,Midtown,40.7509,-73.96963,Entire home/apt,250,5,2,2017-08-07,0.04,1,0 +3655007,Great Room for International Students!,18492106,Sharon,Bronx,Wakefield,40.88855,-73.85127,Private room,50,7,12,2018-09-15,0.55,1,0 +3655367,Sunny/Cozy 1BD,18495460,Frank,Brooklyn,Crown Heights,40.6737,-73.95335,Entire home/apt,81,30,99,2019-01-06,1.67,3,318 +3659544,Home Away from Home-Room in Midtown,12327430,Marco,Manhattan,Hell's Kitchen,40.76625,-73.99387,Private room,69,3,168,2019-06-23,2.88,2,129 +3660983,Amazing LOFT in Prime Williamsburg,8182126,Maggie,Brooklyn,Greenpoint,40.71952,-73.94844,Private room,125,5,1,2016-05-14,0.03,2,0 +3661168,Private Room in Williamsburg,3344830,Caitlin,Brooklyn,Williamsburg,40.71202,-73.96665,Private room,65,5,2,2015-01-04,0.03,1,0 +3662091,Beautiful 1 BR - Downtown Union Square,18556644,Heike,Manhattan,East Village,40.73312,-73.99097,Entire home/apt,150,62,0,,,1,358 +3662724,5144-Prime Doorman!78ST & Madison ,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77448,-73.96102,Entire home/apt,175,30,2,2019-05-30,0.06,96,281 +3662795,Comfortable Place in Brooklyn,18565670,Maia,Brooklyn,Midwood,40.62401,-73.95775,Private room,49,2,26,2019-04-15,0.54,1,362 +3662827,Nolita Duplex w/ private terrace,8200795,Brooke,Manhattan,Nolita,40.72168,-73.99544,Entire home/apt,191,3,51,2019-06-30,0.88,1,55 +3662887,1 Bedroom Apartment in Gramcery!,14041891,Tom,Manhattan,Flatiron District,40.7411,-73.98455,Entire home/apt,200,4,0,,,1,0 +3662949,Stylish & Spacious Perfect for Pride!,18567895,Ryan,Manhattan,Hell's Kitchen,40.76522,-73.99486,Entire home/apt,250,2,6,2016-06-17,0.11,1,0 +3663178,"Landmark Cottage, Brownstone block",710916,Adam,Brooklyn,Crown Heights,40.67541,-73.94408,Entire home/apt,216,1,233,2019-07-02,3.89,1,295 +3663423,Beautiful duplex for family w/kids ,18570567,Gisela,Brooklyn,Bedford-Stuyvesant,40.68412,-73.95039,Entire home/apt,200,3,0,,,1,0 +3663798,"Big WBurg Rm, 5 min from L, Fits 4!",18272570,Qian,Brooklyn,Williamsburg,40.70917,-73.94918,Private room,119,2,43,2016-06-30,0.72,1,0 +3663984,Sunny & Modern 1-BR | Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77222,-73.95604,Entire home/apt,118,30,4,2019-02-02,0.08,29,341 +3664439,"Murray Hill, The Heart of Manhattan",6913016,Alicia,Manhattan,Midtown,40.74911,-73.98202,Private room,95,3,67,2019-06-11,1.65,1,355 +3664714,Great Greenpoint Apartment,5872286,Tim,Brooklyn,Greenpoint,40.73526,-73.95375,Entire home/apt,110,3,34,2018-05-19,0.57,1,12 +3666653,Brooklyn Brownstone,17544112,Robert,Brooklyn,Bay Ridge,40.62356,-74.024,Entire home/apt,170,4,137,2019-07-04,2.55,1,302 +3666709,Cozy Private UES Studio Apt!,18594426,Amanda,Manhattan,Upper East Side,40.7729,-73.95276,Entire home/apt,99,3,9,2019-05-30,0.15,1,0 +3670659,"Bright & New Reno, Quiet Block",16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68337,-73.95819,Entire home/apt,172,30,9,2019-03-27,0.16,21,342 +3672455,Private RM | Queens | 20min to city,6966831,Victoria,Queens,Sunnyside,40.74532,-73.91974,Private room,75,2,3,2015-07-23,0.06,1,0 +3673938,Affordable long stay room for individual,4578923,Normandy,Brooklyn,Bedford-Stuyvesant,40.69437,-73.95841,Private room,50,5,18,2019-05-19,0.79,1,0 +3674757,Cozy Vintage Artist Flat(Williamsburg/Bushwick),2702080,Drew & Kristen,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94714,Private room,77,2,145,2019-06-02,2.42,1,365 +3675957,"Brooklyn Loft Studio, One Subway from Manhattan",2076525,Douglas,Brooklyn,Navy Yard,40.69839,-73.97666,Entire home/apt,125,14,15,2019-06-18,0.41,1,32 +3677769,Beautiful Large Sunny Bedroom,18681479,Pamela,Queens,Sunnyside,40.74189,-73.92375,Private room,75,2,111,2019-06-24,1.89,1,348 +3677995,Modern Harlem Flat,9553177,Joshua,Manhattan,Harlem,40.80677,-73.94977,Entire home/apt,350,2,13,2017-06-09,0.35,1,0 +3678064,Per/night Room Brklyn New York,2120259,Sue,Brooklyn,Crown Heights,40.66709,-73.9514,Private room,55,4,27,2019-07-05,0.46,4,261 +3678796,beautiful brownstone,18693665,Linda Green And Norga,Brooklyn,Bedford-Stuyvesant,40.68138,-73.95018,Entire home/apt,99,2,216,2019-06-24,3.61,1,321 +3678829,Bright. Clean. Elegant. A perfect Brooklyn home.,17051201,G,Brooklyn,Park Slope,40.67164,-73.97761,Entire home/apt,545,2,6,2018-12-29,0.12,3,227 +3678990,Sunny Warm Quiet NYC Retreat,7474069,Carrie,Manhattan,Washington Heights,40.84686,-73.94181,Private room,70,2,277,2019-06-13,4.67,3,244 +3683236,Peaceful 2BR inside a brownstone,378737,Parris,Brooklyn,Bedford-Stuyvesant,40.68908,-73.92893,Private room,250,2,0,,,1,365 +3683241,Spacious 2 bedroom 1 bathroom BRKLY,18726889,Suzanne,Brooklyn,Bushwick,40.68781,-73.91377,Entire home/apt,150,4,2,2014-08-21,0.03,1,0 +3684144,(Hidden by Airbnb) ! BrooklynCleanRoom!!,2955491,Natsuko,Brooklyn,Bushwick,40.69753,-73.93619,Private room,55,2,20,2019-06-25,0.41,1,19 +3684302,Crown Hts Beauty: Quiet and Cozy!,18030682,Amanda,Brooklyn,Crown Heights,40.67472,-73.94737,Entire home/apt,100,7,46,2019-06-29,0.87,1,0 +3685433,Stunning Studio in Fort Greene,15817252,Nicole,Brooklyn,Clinton Hill,40.69494,-73.96888,Entire home/apt,100,5,7,2017-01-04,0.12,1,0 +3685704,Private Apt. in Brooklyn Brownstone + Garden,2640773,Nick,Brooklyn,Bedford-Stuyvesant,40.68822,-73.94357,Entire home/apt,95,2,116,2019-05-29,2.18,1,226 +3686493,Irving Place!Doorman!Laundry 5135,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73632,-73.98475,Entire home/apt,175,30,0,,,96,312 +3686972,1 BR Apt steps from Central Park! #10223,18690148,Luci,Manhattan,Upper West Side,40.77905,-73.97939,Entire home/apt,200,4,22,2019-07-01,0.45,1,2 +3687172,Enchanting Studio in West Village,5771331,Alex,Manhattan,Greenwich Village,40.72858,-73.99951,Entire home/apt,190,1,20,2016-05-04,0.33,1,0 +3687227,"spacious, quiet room w/private bath: BK brownstone",4765290,Emily,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95333,Private room,65,2,3,2016-08-08,0.06,1,0 +3688168,The Brooklyn Public House Apartment,2461535,Andriana,Brooklyn,Fort Greene,40.68927,-73.96957,Entire home/apt,400,2,120,2019-06-23,2.05,1,300 +3688197,Peaceful and breezy one bedroom,11371357,Julienne,Brooklyn,Kensington,40.64644,-73.9756,Entire home/apt,95,1,10,2018-12-29,0.21,1,0 +3689140,"West Village Loft, 2nd floor",2267864,Gary,Manhattan,West Village,40.73419,-74.00213,Entire home/apt,197,2,207,2019-06-30,3.46,2,166 +3692566,Spacious 5 BR house in Brooklyn,2673332,Alexandra,Brooklyn,Kensington,40.64295,-73.97632,Entire home/apt,395,3,20,2018-08-14,0.34,1,9 +3693901,THE BEST HOUSE IN BROOKLYN !,17696653,Arleta,Brooklyn,Bedford-Stuyvesant,40.69134,-73.94468,Private room,100,1,2,2016-08-28,0.04,1,365 +3694441,"Modern, Bright, Airy Brooklyn Apt",1010344,Ian & Sady,Brooklyn,Bedford-Stuyvesant,40.68592,-73.95502,Entire home/apt,200,3,6,2016-01-01,0.10,1,0 +3694498,Welcome to Williamsburg!,18646528,Catherine,Brooklyn,Williamsburg,40.71385,-73.94156,Entire home/apt,165,3,6,2017-04-01,0.10,1,0 +3695776,"Sunny, Spacious Carroll Gardens 1BR",1176165,Corey,Brooklyn,Carroll Gardens,40.68431,-73.99782,Entire home/apt,145,5,4,2015-11-07,0.07,1,0 +3696043,Weeklong Discounted Bklyn Apt by Train & Near Dwtn,807340,Kevin,Brooklyn,Brownsville,40.66827,-73.92509,Entire home/apt,75,1,135,2019-07-01,2.27,1,174 +3696746,Fabulous Loft Studio in Gramercy,18138735,Jed,Manhattan,Gramercy,40.73343,-73.98634,Entire home/apt,180,3,72,2019-01-02,1.22,1,25 +3697432,Experience NYC to the fullest @UES!,18836774,Jime,Manhattan,Upper East Side,40.77542,-73.95437,Private room,73,4,48,2019-01-19,0.80,5,153 +3698111,Your NYC home in the Upper East Side!,18836774,Jime,Manhattan,Upper East Side,40.77579,-73.9557,Private room,87,3,61,2019-05-29,1.01,5,132 +3698241,Your NYC headquarters @ the Upper East Side!,18836774,Jime,Manhattan,Upper East Side,40.77688,-73.95616,Private room,74,3,60,2019-06-27,1.00,5,169 +3698367,Amazing Location!,5465947,Rose,Brooklyn,Prospect Heights,40.67948,-73.97219,Private room,65,1,6,2015-08-21,0.12,1,0 +3700364,Greenwich Village in the Sky,7644834,Dawnie,Manhattan,Greenwich Village,40.7284,-73.99812,Entire home/apt,199,8,48,2019-06-19,1.06,1,37 +3701708,Quaint Room in Brooklyn,18866837,Barbara,Brooklyn,Park Slope,40.67916,-73.97454,Private room,65,60,2,2016-09-07,0.03,1,0 +3701890,1 bedroom apartment on the UWS,3146957,Alexandra,Manhattan,Upper West Side,40.77918,-73.9874,Entire home/apt,160,7,5,2016-07-05,0.09,1,0 +3702400,Brooklyn Apartment W/ Balcony,10972334,Rob,Brooklyn,Bushwick,40.69825,-73.92788,Private room,175,1,6,2015-11-04,0.10,2,0 +3703037,SUBLET in the UWS,18876264,Daniel,Manhattan,Upper West Side,40.77817,-73.97844,Entire home/apt,200,1,0,,,1,0 +3703633,Reno 2BR~prime union squar~,2119276,Host,Manhattan,East Village,40.73268,-73.98689,Entire home/apt,195,30,7,2017-10-22,0.14,39,331 +3703805,Cozy spacious room in Crown Heights,6932160,Terry,Brooklyn,Crown Heights,40.66935,-73.9485,Private room,99,5,27,2018-10-25,0.70,1,365 +3704067,Garden Apartment with private patio in Townhouse,188896,Ellen,Brooklyn,Clinton Hill,40.69034,-73.96675,Entire home/apt,175,1,121,2019-01-21,2.03,2,171 +3706213,A Beautiful Alvoce Studio,10856201,Neda,Manhattan,Hell's Kitchen,40.76027,-73.99081,Entire home/apt,190,1,0,,,1,0 +3709013,Huge 1.5BR Artist Home in Brownstone Brooklyn :),7420906,Alix,Brooklyn,Bedford-Stuyvesant,40.68473,-73.95697,Entire home/apt,99,3,10,2018-11-13,0.28,1,66 +3710162,"CENTRAL Clean, Peaceful Private Room NoLita",1788746,Nathalie,Manhattan,Nolita,40.7216,-73.99558,Private room,100,2,6,2018-01-01,0.16,1,0 +3710230,Stunning renovated greystone,18929364,Abigail,Brooklyn,Prospect-Lefferts Gardens,40.66271,-73.95392,Entire home/apt,199,2,18,2018-08-25,0.30,1,0 +3710436,THREE BEDROOM APARTMENT IN BROOKLYN,318729,Mitch,Brooklyn,Bedford-Stuyvesant,40.67862,-73.94687,Entire home/apt,199,3,118,2019-07-01,2.12,1,23 +3710685,Vintage NYC apt 15min from Times Sq,15789646,Steven,Queens,Sunnyside,40.74502,-73.9169,Entire home/apt,100,3,70,2019-07-01,1.21,2,319 +3711039,Summer Porch: Taking Manhattan? Sleep in Astoria!,3007815,Alia,Queens,Astoria,40.76977,-73.91596,Shared room,45,2,38,2019-07-04,1.60,2,38 +3715638,Sunny Private Room at Central Park!,9784206,Saint,Manhattan,East Harlem,40.79508,-73.94895,Private room,72,1,204,2019-07-05,3.41,1,219 +3715824,Quiet spot in NYC,13042411,Walt,Manhattan,East Village,40.72669,-73.98419,Entire home/apt,129,2,179,2019-06-08,2.99,1,179 +3716193,Beautiful 2 Bedroom Townhouse,18970667,"Erin, Avi, Kaleb & Shiloh",Brooklyn,Bedford-Stuyvesant,40.68205,-73.94239,Entire home/apt,100,3,168,2019-06-27,2.81,1,317 +3717689,CHARMING BROOKLYN LOFT WITH PATIO,18393872,Natalie,Brooklyn,Bedford-Stuyvesant,40.69141,-73.95886,Entire home/apt,85,7,2,2017-05-15,0.03,1,0 +3717749,Two Porches & Private Room,5573250,Jason,Brooklyn,Kensington,40.6413,-73.98233,Private room,70,1,2,2015-07-06,0.03,1,0 +3718713,Sleek 1 bdrm in East W'burg/Bwick,18988423,Amanda Reil,Brooklyn,Williamsburg,40.70536,-73.94229,Entire home/apt,100,2,5,2015-12-27,0.09,1,0 +3720404,Sunny South Williamsburg Apartment,1363910,Emily,Brooklyn,Williamsburg,40.70914,-73.95236,Entire home/apt,160,3,1,2014-09-01,0.02,1,0 +3721826,Amazing apartment with your old private bathroom,19011946,John,Manhattan,Upper East Side,40.77883,-73.95498,Entire home/apt,185,30,1,2014-09-15,0.02,2,365 +3725902,"Sunny zen apt in Park Slope, BK",4830699,Jennifer,Brooklyn,Gowanus,40.6779,-73.98421,Entire home/apt,162,1,9,2016-09-06,0.23,1,0 +3727816,Great place near Flushing Meadow,19044620,Claudiu,Queens,Forest Hills,40.73538,-73.853,Private room,80,1,2,2014-10-22,0.03,1,0 +3727861,Manhattan Apartment- low rate ,19044783,Jasmine,Manhattan,Harlem,40.80257,-73.9548,Private room,200,1,0,,,1,0 +3728309,Private room in 3 bedroom apartment Bed Stuy,19046961,Amanda,Brooklyn,Bedford-Stuyvesant,40.68905,-73.92685,Private room,45,5,8,2019-05-01,0.31,1,247 +3728837,Factory Converted Studio Loft in GP,7503643,Vida,Brooklyn,Greenpoint,40.72533,-73.94204,Entire home/apt,129,30,6,2019-04-01,0.12,52,188 +3731209,"Quaint, Quiet 1BD",19067223,Mohini,Brooklyn,Williamsburg,40.71795,-73.95804,Private room,55,1,1,2015-06-17,0.02,1,0 +3731871,Sunny Bedroom in Bushwick Luxury Building,19072805,Carly,Brooklyn,Bushwick,40.69865,-73.92972,Private room,68,5,12,2018-12-05,0.26,1,14 +3731965,Williamsburg Brooklyn quiet abode,7598755,Elliot,Brooklyn,Williamsburg,40.71985,-73.94422,Entire home/apt,120,2,1,2016-03-13,0.02,1,0 +3735483,Beautiful Room in Sunny Brooklyn Apartment,5064699,Juliana,Brooklyn,Bedford-Stuyvesant,40.68732,-73.94058,Private room,55,2,41,2019-01-04,1.09,2,0 +3737180,Sanctuary Quiet Room in Apartment,19107278,Jaime,Brooklyn,Bushwick,40.70033,-73.91197,Private room,50,5,0,,,2,0 +3737847,Sanctuary Close To Manhattan ,19107278,Jaime,Brooklyn,Bushwick,40.7001,-73.91204,Private room,50,5,2,2016-06-01,0.03,2,0 +3738529,True Industrial Loft in Brooklyn,19111611,Chaim,Brooklyn,Navy Yard,40.69817,-73.9654,Entire home/apt,150,1,7,2016-07-11,0.12,1,0 +3738756,1 BR Beautiful Central Williamsburg,10675384,John,Brooklyn,Williamsburg,40.72037,-73.9596,Entire home/apt,140,30,21,2016-09-13,0.38,1,252 +3738815,"Large apartment, 2BR, Midtown NYC! 3D",17770287,Nina,Manhattan,Midtown,40.75068,-73.98177,Entire home/apt,136,30,9,2018-12-16,0.17,14,220 +3739126,Beautiful Private Bedroom in Soho,3586725,Sophie,Manhattan,Nolita,40.72339,-73.99477,Private room,92,5,0,,,1,0 +3739712,Rest your head-West Side Manhattan,2523466,Samuel,Manhattan,Hell's Kitchen,40.76215,-73.99036,Private room,125,3,133,2019-06-26,2.25,1,9 +3739864,Large Bedroom in Brooklyn for June and July.,14102923,Mark,Brooklyn,Flatbush,40.65136,-73.95974,Private room,48,5,0,,,1,0 +3740402,NYC: an Upper-Eastside room of your own!,18836774,Jime,Manhattan,Upper East Side,40.77693,-73.95632,Private room,82,3,56,2019-06-29,0.94,5,138 +3741405,2br in Manhattan NY ,10577253,Nataly,Manhattan,Harlem,40.81217,-73.95303,Entire home/apt,150,1,3,2016-01-02,0.05,1,0 +3741530,Large Light-Filled Brownstone 1-BR,19131844,Gemma,Brooklyn,Bedford-Stuyvesant,40.68237,-73.94811,Entire home/apt,90,8,17,2019-03-12,0.42,1,0 +3741728,Missy's Place,19133023,Melissa,Brooklyn,Bedford-Stuyvesant,40.68667,-73.93897,Entire home/apt,117,5,105,2019-06-27,1.77,1,6 +3741945,Have your NYC experience with us!,18836774,Jime,Manhattan,Upper East Side,40.77707,-73.95652,Private room,71,3,55,2019-06-01,1.03,5,156 +3742373,Beautiful apartment by Columbus Circle,9859391,Andrew,Manhattan,Chelsea,40.74944,-73.99631,Entire home/apt,390,3,10,2019-01-02,0.17,1,9 +3743048,*WARM*Beautiful*Room*ST. GEORGE steps to ferry!,19143974,Meghan,Staten Island,St. George,40.64408,-74.07834,Private room,58,3,93,2019-05-06,2.10,1,279 +3747107,Clean+Comfy+Cozy Room in NYC Home,9535767,Nayoung,Queens,Woodside,40.74626,-73.9009,Private room,50,5,3,2015-08-07,0.05,1,0 +3747240,Stunning 2BR Apartment in Top Location,2203817,Debbie,Brooklyn,Park Slope,40.67256,-73.97212,Entire home/apt,150,5,10,2018-01-03,0.17,1,0 +3747392,Private Rm in heart of Williamsburg,15805343,Tessa,Brooklyn,Williamsburg,40.71858,-73.95711,Private room,150,1,9,2016-06-07,0.19,1,0 +3747567,Sunny Bedroom in El Barrio,522065,Liz And Melissa,Manhattan,East Harlem,40.79416,-73.93984,Private room,80,7,47,2019-05-23,0.80,2,121 +3749971,Williamsburg Apt. w/ private patio,10094431,Sofia,Brooklyn,Williamsburg,40.71623,-73.96415,Private room,115,1,78,2019-07-01,1.31,1,8 +3750917,SPACIOUS LIVINGROOM IN BROOKLYN,19191737,Joshua,Brooklyn,Windsor Terrace,40.65084,-73.97334,Private room,70,10,0,,,1,0 +3751048,GREAT ONE BED! ELEVATOR/LAUNDRY ,1475015,Mike,Manhattan,Upper East Side,40.77175,-73.95742,Entire home/apt,95,30,10,2018-11-10,0.22,52,336 +3751919,A Fantastic Master Bedroom Suite in a 3BD apt,15270760,Ed,Brooklyn,Bedford-Stuyvesant,40.69411,-73.93987,Private room,85,2,1,2018-01-01,0.05,1,0 +3752035,New & Modern 2 BR Brownstone Apt.,14961638,Elito,Brooklyn,Bedford-Stuyvesant,40.68772,-73.95484,Entire home/apt,180,3,72,2019-06-17,1.31,1,291 +3755474,New Bright & Modern Apartment within a Brownstone,9928037,Elliot,Manhattan,Murray Hill,40.74735,-73.97671,Entire home/apt,149,3,8,2018-01-02,0.17,1,0 +3757178,last minute TRIBECA CONDO AVAILABLE,19233588,Jupira,Manhattan,Tribeca,40.71726,-74.01134,Entire home/apt,200,7,16,2017-09-19,0.34,1,0 +3757461,"Manhattan Sun Drenched +Near Gramercy",17465563,Lola,Manhattan,Gramercy,40.73601,-73.98205,Private room,69,2,177,2019-06-22,2.98,1,285 +3758296,Central Park West & Columbia U: Comfy Private Room,19240279,Ms. Yvonne,Manhattan,Morningside Heights,40.80645,-73.95804,Private room,85,5,25,2019-01-02,0.44,1,198 +3758686,★ Convenience & Comfort Awaits! ♥️ Your Stay! ★,19242857,O.D.,Brooklyn,Crown Heights,40.67472,-73.93,Entire home/apt,117,1,82,2019-06-16,1.39,1,280 +3759009,Spacious Studio in West Village!,18270150,Nancy,Manhattan,West Village,40.73243,-74.00052,Entire home/apt,219,1,68,2019-06-25,1.15,1,122 +3760029,Charming studio for rent in Astoria,19250606,Sylvia,Queens,Astoria,40.75508,-73.91673,Entire home/apt,100,2,141,2019-07-02,2.43,1,216 +3760158,Hey Beautiful Brooklyn Brownstone!,10491406,Donna,Brooklyn,Prospect Heights,40.67609,-73.96459,Entire home/apt,320,3,39,2019-04-21,0.71,1,242 +3760592,Large Room in Penthouse Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74213,-73.9801,Private room,95,30,54,2018-12-16,0.91,26,335 +3760824,Bushwick Room w/ Private Entrance & Bathroom!,12720552,Julie,Brooklyn,Bushwick,40.70322,-73.92913,Private room,110,1,16,2019-06-15,0.32,5,345 +3762842,Perfect mid summer apart available,19272788,Pierre,Manhattan,Harlem,40.80581,-73.95374,Entire home/apt,105,24,2,2018-08-31,0.04,1,60 +3764540,"Beautiful 1BR with Yard, Williamsburg",3022504,Michael,Brooklyn,Williamsburg,40.7151,-73.95422,Entire home/apt,134,4,46,2019-06-18,0.89,1,32 +3765095,Sunny Private Room Facing Beautiful Prospect Park,5242693,Neysa,Brooklyn,Flatbush,40.65441,-73.96257,Private room,45,10,9,2018-05-16,0.26,1,90 +3765357,Feel at home in Manhattan at charming NY apartment,5160726,Tony,Manhattan,Kips Bay,40.73967,-73.98041,Entire home/apt,200,13,3,2016-05-15,0.05,1,166 +3766496,THEATRE DISTRICT - LARGE ROOM,5086937,Josh,Manhattan,Hell's Kitchen,40.76559,-73.99221,Private room,110,2,79,2019-06-24,1.33,1,80 +3766770,Romantic 1 bedroom Part2 Harlem USA,17479416,Tae,Manhattan,East Harlem,40.80592,-73.93653,Entire home/apt,150,3,72,2019-04-29,1.23,2,283 +3767156,Mid-Century Modern Garden Paradise,16351647,Carmia And Joe,Brooklyn,Bushwick,40.6825,-73.90818,Entire home/apt,149,2,234,2019-06-23,3.90,1,255 +3767267,Lovely private room in Manhattan,3231109,Trish,Manhattan,Morningside Heights,40.81065,-73.96312,Private room,85,2,52,2019-06-05,0.91,2,329 +3767674,2BR Apt with huge outdoor space,4951037,Carolina,Brooklyn,Bedford-Stuyvesant,40.68818,-73.959,Entire home/apt,200,7,5,2016-09-10,0.09,1,0 +3768977,"2 bedroom Duplex condo ++ yard 7 min to Manhattan",18953786,Ehsan,Queens,Astoria,40.76403,-73.92162,Entire home/apt,170,3,116,2019-06-13,1.96,2,355 +3769052,Great Sunny Spacious Room,3086826,Melody,Bronx,Mount Hope,40.84611,-73.91036,Private room,40,3,59,2019-04-05,1.00,1,343 +3769257,Spacious Stylish Sunny Retreat,19315796,Andrew,Manhattan,Midtown,40.75911,-73.96299,Private room,70,1,0,,,1,0 +3771656,Amazing Upper East Side Location,19331457,Yevgeny,Manhattan,Upper East Side,40.77632,-73.95458,Private room,95,1,389,2019-07-01,6.51,2,254 +3771845,Private Room in Great NYC Nbrhood,7665324,Edward,Manhattan,Lower East Side,40.72144,-73.99356,Private room,95,1,64,2019-06-23,1.12,2,266 +3772256,Modern Studio at The Manhattan Club,15765273,Schatzie,Manhattan,Midtown,40.76514,-73.98058,Private room,350,1,9,2018-08-25,0.20,1,0 +3775259,BED-STUY SOUTHERN COMFORT ,19356930,Ella,Brooklyn,Bedford-Stuyvesant,40.6872,-73.93805,Entire home/apt,165,3,173,2019-07-06,2.97,1,297 +3775379,Peaceful Studio in Prospect Heights,2274845,Liz,Brooklyn,Prospect Heights,40.67262,-73.96542,Entire home/apt,120,2,21,2019-05-19,0.51,1,13 +3775978,Private Room in Flatiron,19359650,Julian,Manhattan,Midtown,40.74596,-73.98678,Private room,130,3,10,2017-09-19,0.38,1,0 +3779230,"Bright, cozy den in 4 bedrm duplex.",23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68826,-73.9385,Private room,40,1,8,2019-06-05,0.16,4,335 +3779262,BKLYN BROWNSTONE: The Stuyvesant,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.6825,-73.92519,Entire home/apt,130,3,135,2019-05-28,2.27,2,206 +3780113,Studio apartment,5785240,Laurent,Manhattan,Harlem,40.80919,-73.94815,Entire home/apt,120,3,80,2019-06-29,1.37,1,245 +3780206,Perfect Brooklyn Studio Apartment,6739436,Madeline,Brooklyn,Bushwick,40.70716,-73.92171,Entire home/apt,90,1,40,2016-01-16,0.68,1,0 +3780715,Akua's Bed-Stuy Study,18880856,Carlton,Brooklyn,Bedford-Stuyvesant,40.68358,-73.94838,Private room,120,2,82,2019-06-21,1.60,1,328 +3780951,Charming Harlem apartment,16065171,Gina,Manhattan,Harlem,40.81022,-73.94266,Shared room,115,1,16,2019-05-26,0.27,1,365 +3782283,HUGE space at the heart of Meatpacking - Chelsea .,7196556,Eilon,Manhattan,Chelsea,40.73986,-74.00035,Entire home/apt,150,2,1,2014-09-01,0.02,1,0 +3782441,cute convenient village suite,5003239,Ali,Manhattan,Greenwich Village,40.7311,-74.00014,Private room,170,1,20,2019-05-02,0.40,1,364 +3782925,Cute apartment with Backyard,3363799,Andrew,Brooklyn,Williamsburg,40.70967,-73.94945,Entire home/apt,124,5,85,2019-06-23,1.45,1,238 +3783016,Luxury Studio on (Email hidden by Airbnb),3716641,Ofer,Manhattan,Upper West Side,40.79253,-73.97378,Entire home/apt,104,30,16,2018-12-23,0.28,8,101 +3783021,Entire Luxury Newly Renovated Studio,3716641,Ofer,Manhattan,Upper West Side,40.79203,-73.97299,Entire home/apt,99,30,14,2019-06-19,0.24,8,135 +3783639,Quiet private room in luxury bldg facing park,10193030,Kaori,Manhattan,Harlem,40.82217,-73.94149,Private room,85,3,0,,,2,88 +3785438,Quiet Oasis in the Middle of it All,16437254,Benjamin,Brooklyn,Fort Greene,40.68961,-73.97781,Entire home/apt,158,30,5,2019-03-30,0.10,21,278 +3787867,Lower East Side Luxury,15047361,Brooke,Manhattan,Lower East Side,40.72046,-73.99237,Entire home/apt,400,3,0,,,1,0 +3789265,Lovely Walk Up in the Heights,5680409,Jennifer,Manhattan,Washington Heights,40.85672,-73.9302,Shared room,100,2,0,,,1,363 +3789758,1 Bed Apt in Greenpoint Brooklyn ,18609156,Tim,Brooklyn,Greenpoint,40.72793,-73.95011,Entire home/apt,115,1,2,2015-06-18,0.03,1,0 +3790118,Metro-luxe Tuscan Suite Private Room,17292935,Anne,Bronx,Mott Haven,40.8105,-73.92507,Private room,55,1,276,2019-06-17,4.63,2,19 +3790746,Tidy Sweet Room in Sugar Hill/Hamilton Heights,1317384,Tamara,Manhattan,Harlem,40.82621,-73.94596,Private room,72,3,154,2019-06-22,2.72,2,153 +3791244,west village 1BR!best value!,2119276,Host,Manhattan,West Village,40.73254,-74.00698,Entire home/apt,170,30,12,2018-08-12,0.22,39,252 +3791325,1BR Clinton Hill Apt Beautiful Garden - Video,3028267,Vernon,Brooklyn,Clinton Hill,40.69352,-73.96556,Entire home/apt,150,7,15,2019-05-25,0.27,1,280 +3791554,Cosy Inwood apartment,5810195,Emilie,Manhattan,Inwood,40.85988,-73.92709,Private room,39,1,13,2019-06-30,1.18,2,233 +3792246,private bedroom in NYC apartment,7508547,Pamela,Queens,Ridgewood,40.7012,-73.90008,Private room,49,2,77,2019-06-22,1.53,1,1 +3793161,location Vera,3250450,Petya,Queens,Woodside,40.75338,-73.90618,Private room,39,30,9,2019-05-14,0.16,18,318 +3793246,large 1 BR in heart of East Village,2331719,Marina,Manhattan,East Village,40.72695,-73.98617,Entire home/apt,200,3,78,2019-05-12,1.33,1,336 +3793542,Vintage Williamsburg 1BR near park!,700913,Gage,Brooklyn,Williamsburg,40.71601,-73.95359,Entire home/apt,185,30,12,2018-08-13,0.20,1,0 +3793874,Beautiful West Village 1 BR Apt--Best Location!,19106718,Leena,Manhattan,West Village,40.73223,-74.00355,Entire home/apt,200,4,17,2019-06-28,0.29,1,35 +3797183,Room in spacious Boerum Hill duplex,2538522,Emma,Brooklyn,Boerum Hill,40.68558,-73.9815,Private room,110,3,1,2014-08-19,0.02,1,0 +3798874,Spacious Duplex Garden Apt Park Slope Brooklyn,19510462,Tracey,Brooklyn,Park Slope,40.68098,-73.97925,Entire home/apt,275,3,4,2016-09-17,0.07,1,0 +3798941,Williamsburg Penthouse Guestroom,6642777,Martin,Brooklyn,Williamsburg,40.71231,-73.95313,Private room,105,1,372,2019-06-21,6.23,2,59 +3799598,★Unique two bedroom on 2nd Avenue★,7558452,Zev,Manhattan,East Village,40.72328,-73.98926,Entire home/apt,260,1,299,2019-06-23,5.04,2,232 +3800332,South Williamsburg large parlor apt.,3245596,Scottie,Brooklyn,Williamsburg,40.71283,-73.96714,Entire home/apt,175,25,4,2016-04-08,0.07,1,0 +3800547,PrivatePeaceful Pad near JFKairport,7453027,Marie Yves,Brooklyn,Canarsie,40.64287,-73.90228,Entire home/apt,90,3,96,2019-06-24,1.66,1,295 +3800549,Williamsburg Studio,810266,Jonathan,Brooklyn,Williamsburg,40.71694,-73.96017,Entire home/apt,125,21,1,2015-04-30,0.02,1,0 +3801407,Art Boutique Stateroom at JFK Airport,10162529,Jay,Queens,St. Albans,40.7012,-73.75041,Entire home/apt,239,3,11,2018-11-20,0.45,2,355 +3801701,Private Studio Near Union Square,12090062,Annie,Manhattan,Chelsea,40.73996,-73.99919,Entire home/apt,195,2,31,2018-12-09,0.52,1,10 +3802218,Cozy Private Bedroom,19533769,Chandra,Bronx,Mott Haven,40.80772,-73.91791,Private room,53,1,321,2019-06-12,5.46,1,44 +3802538,Best location in NYC,16677444,Jeevan,Manhattan,Hell's Kitchen,40.75882,-73.99168,Private room,99,1,147,2019-05-19,2.84,1,4 +3802966,One bedroom in Inwood Apartment,19539944,Jen,Manhattan,Inwood,40.86711,-73.92742,Private room,52,7,0,,,1,0 +3804690,Statue of Liberty Views Downtown,19550968,Silvia,Manhattan,Battery Park City,40.71019,-74.01705,Entire home/apt,130,60,4,2015-05-07,0.07,1,13 +3808093,Amazing 1BR condo with water views,19569660,Brian,Manhattan,Battery Park City,40.71031,-74.01557,Entire home/apt,325,30,9,2015-06-17,0.16,1,0 +3808119,"Charming, Airy 2 Bedroom Brownstone in Bed-Stuy",19569725,Cathy,Brooklyn,Bedford-Stuyvesant,40.68419,-73.92217,Entire home/apt,135,2,252,2019-06-22,4.37,1,35 +3808230,Big Beautiful Bedroom w/Private Bathroom,7848968,Morgan,Brooklyn,Prospect Heights,40.67548,-73.96802,Private room,85,2,206,2019-06-18,3.50,2,3 +3808323,Large Private Rm in Historic Central Harlem Home,265278,Atlantis & Carmen,Manhattan,Harlem,40.80384,-73.94692,Private room,68,3,164,2019-06-21,2.85,1,87 +3808358,Room 15. min from Midtown in Super Safe Area,19569282,Kay,Queens,Astoria,40.76315,-73.92709,Private room,45,14,1,2014-08-16,0.02,1,0 +3808620,Great Renovations. Columbus Circle,1475015,Mike,Manhattan,Hell's Kitchen,40.76867,-73.98541,Entire home/apt,87,30,6,2019-04-21,0.11,52,365 +3811186,Chandelier Room on Historic Brooklyn Block,19524858,Isa,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.95419,Private room,89,1,52,2018-09-23,1.44,1,188 +3811639,Beautiful sun-filled Loft BROOKLYN,10603767,Samantha,Brooklyn,Bushwick,40.70784,-73.92224,Entire home/apt,150,3,203,2019-06-22,3.42,1,308 +3811757,Elegant Gramercy Park Studio,3997854,Andre,Manhattan,Flatiron District,40.73923,-73.98589,Entire home/apt,124,30,10,2016-08-13,0.17,1,0 +3812133,"Sunny, Central, Quiet, UWS, 72&Bway",1529179,Gs,Manhattan,Upper West Side,40.77885,-73.98178,Entire home/apt,169,7,0,,,1,0 +3812222,"Suite w/private bath, Forest Hills",19597910,Ruth,Queens,Forest Hills,40.72356,-73.83982,Private room,125,2,128,2019-05-18,2.17,3,332 +3812554,"Master Bedrm, Steam Shr/Jacuzzi, FH",19597910,Ruth,Queens,Forest Hills,40.727,-73.83924,Private room,145,2,75,2019-05-19,1.27,3,358 +3816424,3,23633,Eugene,Brooklyn,Bushwick,40.70248,-73.93225,Private room,75,1,0,,,2,0 +3816499,2,23633,Eugene,Brooklyn,Bushwick,40.70315,-73.93124,Private room,75,2,2,2015-11-01,0.04,2,0 +3817216,Doorman nice 1bd/ United Nations!!,1475015,Mike,Manhattan,Murray Hill,40.74915,-73.97196,Entire home/apt,87,30,7,2019-05-31,0.12,52,340 +3817304,"Stay 30 min to Times Sq in quaint Sunnyside, Qns",6615826,Chad,Queens,Sunnyside,40.74219,-73.92585,Private room,50,5,6,2019-06-24,1.41,1,54 +3817666,ColumbusCircle~W/D~new BLDG~Balcony,2119276,Host,Manhattan,Hell's Kitchen,40.7662,-73.98612,Entire home/apt,150,30,11,2019-03-23,0.20,39,313 +3818187,Sunny Room in Shared Apartment,19633755,Corey,Manhattan,Upper West Side,40.79744,-73.97098,Private room,95,30,2,2016-05-27,0.04,1,365 +3818279,Reno1BR~RiverView~Luxury24D~Roof~,2119276,Host,Manhattan,Murray Hill,40.74445,-73.97181,Entire home/apt,200,30,7,2018-08-20,0.14,39,188 +3818298,Sunny 1bed Oasis in South Harlem/Upper West Side,3856533,Amanda,Manhattan,Harlem,40.80293,-73.95586,Entire home/apt,120,1,23,2019-01-07,0.45,1,0 +3819407,"UWS Charmer, Central Park/Lincoln Center",9784802,Tina,Manhattan,Upper West Side,40.77627,-73.98081,Entire home/apt,325,3,70,2019-05-26,1.19,1,71 +3819656,SoHo/Village Studio,19644902,Russell,Manhattan,Greenwich Village,40.72774,-74.00004,Entire home/apt,165,2,2,2015-06-26,0.04,1,0 +3819703,5107-Studio Doorman GYM LuX,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79082,-73.97452,Entire home/apt,140,30,4,2017-09-04,0.09,96,342 +3819946,Great cozy in Brooklyn,20169857,Fabeye & Nabou,Brooklyn,Bedford-Stuyvesant,40.69634,-73.9441,Private room,33,1,52,2019-04-08,0.87,2,255 +3821676,Lower East Side Artist's Sanctuary,14908547,Elyse,Manhattan,Lower East Side,40.71962,-73.98434,Entire home/apt,169,4,7,2016-01-03,0.14,1,0 +3822172,Colorful 2 Bedroom in Brooklyn,19663195,Alison,Brooklyn,Williamsburg,40.71863,-73.94416,Entire home/apt,75,24,0,,,1,27 +3825437,Trendy East Village Penthouse Apt,7018154,Maha,Manhattan,Gramercy,40.73293,-73.9836,Entire home/apt,190,5,5,2016-01-02,0.08,1,0 +3826037,Location Little Lapa ( only female ),3250450,Petya,Queens,Astoria,40.76577,-73.91471,Private room,39,30,9,2018-07-26,0.19,18,237 +3826226,Brooklyn 2 bedroom Apartment,15733420,Marcus,Brooklyn,Bedford-Stuyvesant,40.68252,-73.94443,Entire home/apt,165,4,138,2019-06-24,2.66,2,322 +3826908,"Home, Sweet Home!",19691070,Haim,Queens,Long Island City,40.74622,-73.94277,Private room,79,1,39,2019-07-06,0.83,1,297 +3827311,Cozy & Sunny Hamilton Heights Apt ,19693124,Maia,Manhattan,Harlem,40.82654,-73.9462,Entire home/apt,125,1,10,2019-06-12,0.17,1,297 +3827442,"Large, Luxurious 1 bdrm W. Village",1484799,Matthew,Manhattan,West Village,40.73016,-74.00259,Entire home/apt,349,4,10,2016-09-05,0.17,1,0 +3829039,Prime Williamsburg Brooklyn Apartment for Holidays,4702135,Jared,Brooklyn,Williamsburg,40.71328,-73.95787,Private room,130,1,0,,,1,0 +3829261,Beautiful Terrace Room,19708200,Larry,Brooklyn,Canarsie,40.63881,-73.91751,Private room,40,3,41,2019-05-03,0.70,3,278 +3829609,Brooklyn's finest. Renovated apt!,4928083,Fernando,Brooklyn,Crown Heights,40.67767,-73.95162,Entire home/apt,76,5,14,2019-04-11,0.28,1,0 +3831962,Lg Quiet Artist Home -Ditmas Park -,2236848,Liz,Brooklyn,Flatbush,40.64699,-73.96307,Entire home/apt,50,24,0,,,1,0 +3832444,Bushwick schoolhouse,19239110,Kurt,Brooklyn,Bushwick,40.70098,-73.93959,Private room,45,30,25,2019-03-28,0.53,1,197 +3832774,"Sunny, charming 1 bedroom apartment",18982191,Todd,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93797,Entire home/apt,80,3,2,2016-08-15,0.06,1,0 +3832863,1 Bedroom w/ huge Deck in West Village/SOHO,18094896,Wendy,Manhattan,West Village,40.72912,-74.00298,Entire home/apt,265,4,21,2019-03-30,0.36,1,334 +3832932,Beautiful Sunset Park,15192022,Kaykay,Brooklyn,Sunset Park,40.64752,-74.0059,Shared room,65,2,7,2017-05-13,0.12,1,0 +3833538,Classic Brownstone 1 Bed. Apt.,2141246,Polly,Brooklyn,Bedford-Stuyvesant,40.68127,-73.94865,Entire home/apt,90,3,2,2016-09-11,0.05,1,0 +3835052,"Sunny, Charming Boho Apt Near all in the Village!",3284613,Jana,Manhattan,Greenwich Village,40.72917,-73.99974,Private room,115,25,70,2018-08-26,1.27,1,31 +3835334,UWS one br near Central Park,539204,Joaquin,Manhattan,Upper West Side,40.79998,-73.96404,Entire home/apt,145,15,0,,,1,0 +3835633,The Emerald Room,19708200,Larry,Brooklyn,Canarsie,40.63888,-73.91729,Private room,45,3,23,2019-06-23,0.39,3,327 +3835681,"Great location, new lower rates!!!",3339701,Angelo,Queens,Ditmars Steinway,40.77478,-73.91913,Private room,50,1,164,2019-06-20,2.78,4,308 +3835740,Cozy & Comfy in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68769,-73.93074,Private room,72,2,36,2019-06-29,0.61,7,71 +3835757,...New lower rates for low season!!,3339701,Angelo,Queens,Ditmars Steinway,40.77376,-73.91855,Private room,50,1,207,2019-06-21,3.48,4,311 +3835766,Oasis in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68565,-73.93249,Private room,57,2,43,2019-05-26,0.72,7,58 +3836180,Beautiful West Village 1 BR Gem!,19758346,Adriana,Manhattan,West Village,40.73648,-74.00173,Entire home/apt,225,3,5,2016-06-19,0.08,1,0 +3836189,"Amazing, Spacious Bedroom in BK",9314076,Naeem,Brooklyn,Bedford-Stuyvesant,40.69291,-73.95142,Private room,80,1,0,,,1,0 +3836199,"2 bedroom with yard, 4 mins to LGA",19758179,Telmo,Queens,East Elmhurst,40.76287,-73.88367,Entire home/apt,120,3,102,2019-06-04,1.73,1,300 +3838056,Unique stylish garden apartment,4091348,Ila,Brooklyn,Williamsburg,40.71241,-73.9653,Entire home/apt,450,4,0,,,1,0 +3838375,"Cheerful, Comfortable & Convenient",177233,Lisa,Manhattan,Upper West Side,40.79903,-73.96451,Entire home/apt,249,2,80,2019-07-06,1.35,1,58 +3838388,Large Sunny Nicely Furnished Studio,19772879,Kim,Manhattan,Washington Heights,40.83818,-73.94303,Entire home/apt,100,1,0,,,1,0 +3838416,Beautiful Huge 2Br House w/Backyard,107340,Eric,Brooklyn,Prospect-Lefferts Gardens,40.65806,-73.95815,Entire home/apt,225,4,3,2014-10-19,0.05,1,0 +3839364,"Fabulous Large 1 Bed in Riverdale, Bronx NYC",9332835,Karen,Bronx,Fieldston,40.89022,-73.9039,Entire home/apt,95,14,3,2019-07-05,0.13,1,0 +3840000,4 ROOM RAILROAD - WILLIAMSBURG,19783353,Ryan,Brooklyn,Williamsburg,40.70955,-73.95085,Entire home/apt,90,4,17,2019-01-24,0.29,1,4 +3840127,Cozy yet spacious apt in Brooklyn,1459837,Geeta,Brooklyn,Bedford-Stuyvesant,40.68056,-73.9151,Entire home/apt,101,10,16,2018-05-27,0.29,1,0 +3840286,"Modern, sunny two bedroom",1482208,Allison,Brooklyn,Williamsburg,40.71159,-73.94043,Entire home/apt,246,2,25,2019-03-31,0.54,2,0 +3840324,Williamsburg + private patio garden,10366196,Matt,Brooklyn,Williamsburg,40.70859,-73.94639,Entire home/apt,120,5,18,2019-02-26,0.32,1,188 +3840541,Spacious Modern Loft in Cobble Hill,19785817,Gary,Brooklyn,Downtown Brooklyn,40.69054,-73.99039,Entire home/apt,150,3,68,2019-06-13,1.35,1,88 +3841033,"Bright, clean studio by subway",9708374,Anaïs,Brooklyn,Bay Ridge,40.63592,-74.02704,Entire home/apt,119,1,1,2016-01-09,0.02,1,0 +3841048,"2BR, Heart of Lower East Side",18286622,Ryan,Manhattan,Lower East Side,40.72174,-73.98501,Entire home/apt,150,1,8,2015-06-19,0.13,1,0 +3841113,Cozy private room in UES,2222500,Valerie,Manhattan,Upper East Side,40.77993,-73.94939,Private room,80,5,18,2017-11-18,0.30,2,118 +3842694,Spacious Home by the Bay,1277222,Sanda,Brooklyn,Sheepshead Bay,40.58581,-73.9383,Entire home/apt,189,2,13,2016-10-25,0.27,1,0 +3847733,"Sunny Apt in Bed Stuy, A/C/E Trains",12971995,Kate,Brooklyn,Bedford-Stuyvesant,40.68082,-73.93599,Private room,90,3,39,2015-05-23,0.67,1,0 +3848324,West Village apt - 2 Bedroom,11495251,(Email hidden by Airbnb),Manhattan,West Village,40.73123,-74.00428,Entire home/apt,200,5,1,2014-08-30,0.02,1,0 +3848431,Apt in Harlem 1 month minimun stay,19839188,Dolores,Manhattan,Harlem,40.82019,-73.95448,Entire home/apt,120,25,6,2019-01-23,0.11,1,225 +3849226,Gorgeous Room in Heart of Soho,5369757,Leighann,Manhattan,SoHo,40.72569,-74.00331,Private room,149,1,55,2019-05-22,0.94,1,354 +3849347,Beautiful 1b Bloomingdales location,1475015,Mike,Manhattan,Upper East Side,40.76236,-73.96642,Entire home/apt,130,30,2,2016-07-16,0.04,52,365 +3850254,"Private Room in Bushwick, fully furnished",5175407,Holly,Brooklyn,Bushwick,40.6998,-73.93265,Private room,35,10,20,2018-02-01,0.34,1,0 +3850493,JOE'S PARADISE 5019,19349568,Joseph,Brooklyn,Flatlands,40.6225,-73.92578,Entire home/apt,139,3,108,2019-07-06,1.83,1,353 +3850967,"A bright, beautiful treehouse",3424306,Kristina,Brooklyn,Crown Heights,40.6692,-73.94739,Entire home/apt,100,2,11,2016-08-08,0.24,1,0 +3851498,L,19860559,Nancy,Manhattan,Upper West Side,40.78802,-73.97509,Private room,65,30,12,2017-09-30,0.21,1,336 +3851623,"Convenient, Greenwich/West Village Apartment",1582736,Pam,Manhattan,Greenwich Village,40.7338,-73.99498,Entire home/apt,200,5,7,2019-01-05,0.18,1,0 +3851719,Amazing 1brm in the Best Location,4940167,Theodora,Manhattan,Gramercy,40.73608,-73.9857,Entire home/apt,99,4,26,2017-04-27,0.49,1,0 +3851911,large sunny pre war studio ,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.6847,-73.94523,Entire home/apt,115,2,59,2019-06-08,1.02,5,337 +3852261,SUNNY ROOM FOR TWO @ ELEGANT HOME NEAR JFK,19866189,Natasha,Queens,Arverne,40.58835,-73.79565,Private room,149,1,91,2019-07-01,1.53,5,358 +3852988,"Lovely, modern townhouse",12615927,Kate,Brooklyn,Sunset Park,40.65957,-73.99253,Entire home/apt,135,3,15,2019-07-07,0.32,1,10 +3857180,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65575,-73.9609,Private room,150,5,11,2016-10-31,0.23,2,0 +3857863,Studio In Townhouse,19902271,John & Catherine,Manhattan,Washington Heights,40.83602,-73.94294,Private room,105,3,104,2019-06-24,1.79,1,288 +3858105,Light and Airy top floor apartment ,5174082,Rebecca,Brooklyn,Columbia St,40.68404,-74.004,Entire home/apt,75,8,1,2014-08-25,0.02,1,0 +3858822,"Big, Sunny and QUIET West Village Studio",7782769,Alexander,Manhattan,West Village,40.73824,-74.00027,Entire home/apt,175,3,45,2018-07-17,1.05,1,0 +3860464,"BedStuy Fly, a relaxing retreat.",1812825,Samita,Brooklyn,Bedford-Stuyvesant,40.68695,-73.92947,Entire home/apt,135,3,8,2015-09-10,0.14,1,0 +3860762,Amazing Big Sunny Room with Porch,1908606,Suleman,Brooklyn,Bedford-Stuyvesant,40.68989,-73.95428,Private room,72,5,0,,,1,88 +3860899,Huge room in East Williamsburg,12749383,Joseph,Brooklyn,Williamsburg,40.70684,-73.94227,Private room,60,1,0,,,1,0 +3861713,2 BRs with private entrance/kid-fr,13644183,Maria And Mariano,Brooklyn,Greenpoint,40.72241,-73.94179,Private room,97,5,3,2015-09-16,0.06,1,0 +3861943,Spacious Studio in Time Square,14733148,Susan,Manhattan,Hell's Kitchen,40.76052,-73.99115,Entire home/apt,860,4,39,2016-08-17,0.67,1,365 +3864528,Amazing Priv 1 BR in Hells Kitchen,19800918,Will,Manhattan,Hell's Kitchen,40.76053,-73.99002,Private room,200,1,0,,,1,0 +3866538,Home Away from Home,19961114,Chris,Manhattan,Upper West Side,40.78789,-73.97427,Entire home/apt,98,3,233,2019-06-26,3.97,1,33 +3866843,"Renovated, Nice 1BD Central Park",1475015,Mike,Manhattan,Upper West Side,40.76908,-73.98483,Entire home/apt,87,30,5,2019-03-16,0.10,52,365 +3866888,Midtown NYC 2bdrm with patio! 2D,17770287,Nina,Manhattan,Midtown,40.7495,-73.98313,Entire home/apt,150,30,13,2019-05-05,0.23,14,331 +3867293,Breathtaking Penthouse Skyline Room & 20min to NYC,18260299,Ota,Brooklyn,Bushwick,40.69349,-73.90726,Private room,50,4,3,2019-01-09,0.06,6,79 +3867705,5146-Doorman Pool!1 bedroom View,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7937,-73.9659,Entire home/apt,185,30,2,2018-07-16,0.13,96,310 +3868100,Heart of LES + Patio,47459,James,Manhattan,Lower East Side,40.72168,-73.98876,Entire home/apt,225,2,16,2019-04-28,0.28,1,0 +3868344,elegant pre war two bedroom flat,14902860,Velma,Brooklyn,Bedford-Stuyvesant,40.68374,-73.942,Entire home/apt,151,5,51,2019-06-07,0.87,5,318 +3869398,private Greenpoint apt,2718526,Kory,Brooklyn,Greenpoint,40.73385,-73.95418,Entire home/apt,75,1,42,2019-06-18,0.72,1,10 +3869762,Upper East Side Manhattan 1 Bed Apt,8180517,Manuel,Manhattan,Upper East Side,40.78124,-73.95227,Entire home/apt,110,1,0,,,1,0 +3869779,Loft in Bushwick/East Williamsburg,4089400,Alex,Brooklyn,Bushwick,40.70818,-73.92256,Entire home/apt,150,2,254,2019-06-20,4.33,1,294 +3870158,Cozy East Village/Gramercy Studio by Union Square,19986984,Eliane,Manhattan,East Village,40.73263,-73.98728,Entire home/apt,145,4,17,2019-06-17,0.29,1,0 +3870294,Large 1-Bedroom by Subway with Elevator and Charm!,736815,Irena,Manhattan,East Village,40.72471,-73.98673,Entire home/apt,250,4,28,2019-06-09,0.49,1,4 +3870793,"Only 20 min to Times Sq., US Open",19993822,Tony,Queens,Elmhurst,40.74122,-73.88641,Private room,170,1,4,2015-09-27,0.07,1,90 +3874702,A garden apartment in a brownstone.,16765013,Marek,Brooklyn,Clinton Hill,40.68423,-73.96242,Entire home/apt,145,5,53,2019-06-02,0.90,1,14 +3874870,Charming 1-Bedroom in East Village,4564600,Roxanne,Manhattan,East Village,40.72915,-73.98501,Entire home/apt,200,6,19,2017-07-06,0.32,1,0 +3875294,Beautiful Brooklyn Bedroom!,20022909,Jessica,Brooklyn,Crown Heights,40.6749,-73.95166,Private room,50,1,5,2016-09-25,0.09,1,0 +3876850,Beautiful - Upper West Side ,20033436,Michael,Manhattan,Upper West Side,40.79254,-73.97531,Private room,250,1,6,2015-05-19,0.10,1,365 +3880588,Penthouse Apt with Roofdeck,4084075,Taz And Nayyirah,Manhattan,Murray Hill,40.74712,-73.97434,Entire home/apt,229,2,21,2018-12-31,0.36,1,0 +3881808,"Park Ave, Sunny 2beds 6 train, WiFi",18051112,Caleb,Manhattan,East Harlem,40.78697,-73.94999,Entire home/apt,129,2,12,2016-05-10,0.20,1,0 +3882103,5136-Doorman 2 bedroom 3 beds!,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76665,-73.9866,Entire home/apt,250,30,0,,,96,281 +3882466,5132- Huge Studio! SWIMMING POOL,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79563,-73.9664,Entire home/apt,168,30,4,2019-03-31,0.16,96,283 +3882682,Private sunny room in Harlem house w/garden,194994,Nora,Manhattan,Harlem,40.81419,-73.94717,Private room,80,4,27,2018-10-29,0.46,1,196 +3883020,Huge Apartment! Convenient! Artsy! Comfy!,12556197,Rez,Brooklyn,Crown Heights,40.66856,-73.95619,Entire home/apt,104,5,45,2019-06-30,0.77,2,159 +3884105,"Big, Bright Studio Blocks from Park and Subway",20084270,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.96001,Entire home/apt,100,2,7,2018-08-26,0.12,1,0 +3884893,Convenient Lovely Manhattan Private Bathroom,16715941,Ian,Manhattan,East Harlem,40.79887,-73.94178,Private room,95,1,297,2019-07-03,5.03,2,127 +3885177,"Clean/nice Suite 5m T LIRR,B,Q65,13",4680747,Del,Queens,Flushing,40.75664,-73.79975,Private room,95,2,2,2019-05-19,0.06,1,267 +3887138,Kid friendly next to Prospect Park,176285,Ari,Brooklyn,Prospect Heights,40.6742,-73.96639,Entire home/apt,200,7,2,2015-06-24,0.03,1,0 +3887381,Modern 2BR Near Union Square,8179499,Brent,Manhattan,East Village,40.73177,-73.98598,Entire home/apt,180,5,0,,,1,0 +3888469,Private room,8834412,Deborah,Bronx,Longwood,40.81321,-73.90259,Private room,100,3,2,2019-01-02,0.22,2,207 +3888752,"Bright, quiet, cozy 1BR by C Park!",20116872,Michael,Manhattan,Upper West Side,40.77571,-73.97757,Entire home/apt,195,1,401,2019-06-30,6.76,1,178 +3889997,Prime West Village/Chelsea 1B SUPERB VIEW/Location,3150902,Dan,Manhattan,Chelsea,40.74057,-73.99977,Entire home/apt,299,5,1,2018-03-03,0.06,1,0 +3890417,Sunrise & Sunset in Penthouse - 20min to Manhattan,18260299,Ota,Brooklyn,Bushwick,40.69439,-73.90715,Private room,45,30,7,2019-01-02,0.74,6,92 +3891031,LAST DAY TO BOOK Bedroom on Wall St,20133610,Shi Qing,Manhattan,Financial District,40.7094,-74.00278,Private room,139,365,13,2015-07-15,0.23,1,365 +3891370,"Heart of Nolita, close to SoHo",20136355,Aalap,Manhattan,Nolita,40.72241,-73.99592,Entire home/apt,200,4,3,2015-09-13,0.05,1,0 +3892700,Cozy 1BR-Country living in NYC!,46969,Aurelie,Staten Island,Clifton,40.6205,-74.07451,Entire home/apt,70,2,242,2019-06-30,4.09,1,256 +3895289,Unique room in historic Greenpoint,20156576,Glenn,Brooklyn,Greenpoint,40.72829,-73.95354,Private room,50,7,1,2014-08-28,0.02,1,0 +3895455,Bedroom in Spacious Loft-Like Apt.,157795,Madeline,Brooklyn,Crown Heights,40.67658,-73.94683,Private room,42,4,4,2018-07-17,0.11,2,0 +3895930,Beautiful 2br in Williamsburg,20166817,Amitai,Brooklyn,Greenpoint,40.71959,-73.94795,Entire home/apt,116,28,45,2019-05-31,0.76,1,35 +3896579,1 Bedroom Apt in Chelsea,20171951,Mary,Manhattan,Chelsea,40.73957,-74.00027,Entire home/apt,200,4,1,2015-09-19,0.02,1,0 +3896701,Spacious Master Bed w Private Ensuite Bath in EV,20172814,Jesse,Manhattan,East Village,40.72859,-73.97915,Private room,129,4,32,2019-05-25,0.56,1,365 +3897387,Bed & Bath in Park Slope Mansion,20177472,Virginia,Brooklyn,Park Slope,40.67927,-73.97434,Private room,125,2,117,2019-06-30,1.99,1,270 +3897601,In the heart of Park Slope,18572906,Eylem,Brooklyn,Park Slope,40.67053,-73.98558,Private room,55,3,4,2016-09-19,0.07,1,0 +3898329,Best views of Manhattan!,20177186,Ted,Manhattan,Financial District,40.70943,-74.01405,Entire home/apt,200,2,6,2015-10-12,0.10,1,0 +3902156,Fort Greene Gem,5072123,Sandra,Brooklyn,Fort Greene,40.69098,-73.97989,Entire home/apt,165,29,7,2019-01-04,0.27,2,159 +3902791,Luxury West Village 1 bdrm w/ views,6426063,Sarah,Manhattan,West Village,40.73377,-74.0057,Entire home/apt,199,5,5,2016-04-29,0.08,1,0 +3903173,One bedroom in Greenwich Village,18481203,Ellie,Manhattan,Greenwich Village,40.73374,-73.9976,Entire home/apt,150,3,15,2016-07-30,0.26,1,0 +3903284,Most amazing spot in Williamsburg,9990930,Alexander,Brooklyn,Williamsburg,40.71751,-73.95895,Private room,95,1,0,,,1,0 +3904135,Authentic Williamsburg Appartment,2316267,Nicole,Brooklyn,Williamsburg,40.7083,-73.94846,Private room,90,1,10,2019-01-03,0.17,1,365 +3905849,Stylish Gramercy Park Duplex LOFT,3097631,Max,Manhattan,Gramercy,40.7364,-73.98436,Entire home/apt,120,10,51,2019-07-01,0.86,1,64 +3907413,Great cozy for summer in Brooklyn,20169857,Fabeye & Nabou,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94314,Private room,40,1,73,2019-06-08,1.23,2,190 +3907603,Nyc! Cozy room in Williamsburg,14890430,Evy,Brooklyn,Williamsburg,40.71223,-73.94169,Private room,75,3,174,2019-07-01,2.96,1,311 +3908094,Spacious Comfy Bedroom in Bushwick,5879951,Marine,Brooklyn,Williamsburg,40.70617,-73.93674,Private room,68,5,5,2017-09-20,0.11,1,0 +3908257,Big Room by Metro/Subway-15mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68137,-73.9565,Private room,75,2,99,2019-06-11,1.67,3,365 +3911451,Haven near Riverside Park n 1 train,10352213,Nicole,Manhattan,Morningside Heights,40.81488,-73.96058,Entire home/apt,45,2,7,2017-07-16,0.12,2,0 +3911453,"Sweet Studio Near Subway, LGA, and Central Park",20260083,Tim,Manhattan,East Harlem,40.79332,-73.94105,Shared room,45,1,6,2017-09-14,0.21,1,0 +3911632,Cozy rooms with private bath,12348871,Hetty,Brooklyn,Kensington,40.64487,-73.97895,Private room,65,1,74,2019-07-02,1.26,2,21 +3912794,"Park Slope 1 Bedroom, 1.5 Bath",102525,David,Brooklyn,South Slope,40.66714,-73.98401,Private room,75,3,14,2019-05-19,0.24,2,347 +3913541,Lovely Private Rm in the heart of NYC! Hells Ktchn,4934489,Jessica,Manhattan,Hell's Kitchen,40.76008,-73.992,Private room,84,2,5,2018-12-23,0.09,3,0 +3913635,Sunny Central Location!,18834080,Jake,Manhattan,Chinatown,40.71672,-73.99184,Entire home/apt,130,2,101,2017-07-28,1.71,1,0 +3914400,"Big Private Room, Prospect Heights",960861,Schuyler,Brooklyn,Prospect Heights,40.67652,-73.96442,Private room,50,30,12,2017-05-09,0.20,1,0 +3914773,Upper West Side Museum/Central Park,2045335,Jonathan,Manhattan,Upper West Side,40.78099,-73.97416,Private room,150,3,50,2019-01-01,0.85,1,365 +3914962,Beautiful Prvt Rm w. NEW 1/2 Bth,20278196,Stephanie,Brooklyn,East Flatbush,40.66165,-73.92536,Private room,95,2,7,2018-10-13,0.13,3,365 +3915042,Murray Hill / Midtown East Studio,9081271,Samantha,Manhattan,Murray Hill,40.74933,-73.9724,Entire home/apt,300,1,2,2014-12-08,0.03,1,0 +3915796,Central Park Life! Beautiful 1 Bed.,1475015,Mike,Manhattan,Upper West Side,40.76904,-73.98494,Entire home/apt,113,30,8,2018-07-01,0.13,52,258 +3916312,Cozy Artist Space,20286123,Kenneth,Manhattan,Harlem,40.82079,-73.95115,Entire home/apt,145,1,23,2019-06-02,0.39,1,219 +3917007,Williamsburg BK Studio Luxury Bldg,4718049,Anup,Brooklyn,Williamsburg,40.71981,-73.95558,Entire home/apt,150,3,0,,,1,0 +3920562,Large & Beautiful Manhattan NYC,16715941,Ian,Manhattan,East Harlem,40.79882,-73.94266,Private room,90,1,295,2019-06-27,4.99,2,155 +3922417,"Safe, Quiet and Bright near Subways has 2 beds",7245581,Michael,Manhattan,Chelsea,40.75076,-73.99588,Entire home/apt,95,30,15,2019-01-15,0.27,19,204 +3923128,Sunny 1-BR Apt with Soaking Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77237,-73.95536,Entire home/apt,118,30,3,2018-08-31,0.10,29,282 +3923538,Large Retro Style Pre-War Studio,20324827,Catherine,Brooklyn,Flatbush,40.64117,-73.96167,Entire home/apt,75,5,2,2015-09-23,0.03,1,0 +3924092,Lincoln Center Area Apartment,13135873,Jan,Manhattan,Upper West Side,40.77595,-73.97966,Entire home/apt,225,7,26,2019-05-23,0.68,1,85 +3924325,"Beautiful, Mdrn, Nwly Renovated Rm",20278196,Stephanie,Brooklyn,East Flatbush,40.66336,-73.92656,Private room,81,2,4,2016-10-31,0.08,3,364 +3924397,Quiet Location with two balconies,20329737,Aleksandra,Brooklyn,Williamsburg,40.71267,-73.95721,Entire home/apt,190,2,4,2015-09-29,0.08,1,0 +3924506,Room in sunny & plant filled apt!,452781,Lian,Brooklyn,Crown Heights,40.67297,-73.95489,Private room,75,1,3,2015-10-11,0.05,1,0 +3924619,Gorgeous Room Near Prospect Park,1216362,Camila,Brooklyn,Flatbush,40.65271,-73.96074,Private room,59,2,12,2017-02-10,0.20,4,189 +3924820,Manhattan - Next to Subway!,1632428,Matias & Marlana,Manhattan,Harlem,40.82035,-73.95529,Private room,99,1,75,2018-06-27,1.31,2,361 +3925426,Room in Gorgeous apartment,2224374,Younes,Brooklyn,Williamsburg,40.71293,-73.95321,Entire home/apt,270,7,0,,,1,0 +3928241,1 Bedroom in the Lower East Side,14549202,Jeff,Manhattan,Lower East Side,40.71957,-73.9863,Entire home/apt,140,70,0,,,1,83 +3928525,Stunning 2 bed 2bath Wall St. Luxury Apt,16101222,Andrew M.,Manhattan,Financial District,40.70563,-74.00878,Entire home/apt,275,3,9,2018-05-26,0.19,1,0 +3928833,Brooklyn townhouse for filming,1331180,Matt -N- Jenny,Brooklyn,Bushwick,40.6845,-73.91193,Entire home/apt,1000,2,0,,,1,0 +3929669,Sunny 1 br in Greenpoint,622694,Shawn,Brooklyn,Greenpoint,40.72942,-73.95291,Entire home/apt,120,28,12,2016-12-22,0.22,1,0 +3930149,Charming and Beautiful 1-BR Apt ,92782,Payal,Brooklyn,Greenpoint,40.723,-73.94237,Entire home/apt,125,3,11,2015-10-24,0.19,1,0 +3930842,1BR+BA IN LXRY CONDO W POOL+PARKING,1568383,Joshua,Brooklyn,Williamsburg,40.71494,-73.93906,Private room,75,30,1,2019-04-28,0.42,1,271 +3930878,Clean One Bedroom Apartment,20364466,Michael,Manhattan,East Village,40.72509,-73.97898,Entire home/apt,117,3,7,2018-05-25,0.12,1,7 +3933059,Where Love and Happiness Live,20377328,MaryEllen,Manhattan,Washington Heights,40.85749,-73.93258,Entire home/apt,80,1,4,2015-12-07,0.07,1,0 +3933382,Private room 5 min from manhattan!,20379079,Zack,Queens,Long Island City,40.7512,-73.94019,Private room,60,6,3,2016-07-26,0.08,1,0 +3936970,XL Fort Greene Garden Apt,1406214,Patric,Brooklyn,Fort Greene,40.6926,-73.97337,Private room,103,3,169,2018-12-30,2.88,1,192 +3939041,Private cozy studio apartment,284199,Avijit,Queens,Jackson Heights,40.74946,-73.89505,Entire home/apt,65,1,1,2018-02-12,0.06,2,0 +3939086,"Call this Home (for a spell, at least....)",881214,Mysia,Bronx,Mott Haven,40.80866,-73.92069,Private room,45,5,14,2017-08-26,0.28,1,0 +3939535,JFK/LGA Queens Modern Apt.,20411855,Chuck,Queens,Briarwood,40.71009,-73.8196,Private room,70,3,64,2018-09-26,1.16,1,282 +3940301,1 bdrm in Washington Hgts-Park side,7837510,Anna,Manhattan,Washington Heights,40.85722,-73.93354,Entire home/apt,90,7,1,2014-10-17,0.02,1,124 +3942731,Top Floor Doorman Apt-Water Views,2555556,Laura,Manhattan,Battery Park City,40.70797,-74.01693,Entire home/apt,225,5,7,2015-12-31,0.12,1,0 +3943279,ENTIRE FURNISHED 1BD APT.,20433199,Merritt,Manhattan,East Village,40.72186,-73.97663,Entire home/apt,125,14,2,2018-08-26,0.04,1,3 +3943879,Prime Williamsburg loft on Bedford,20435647,Mette,Brooklyn,Williamsburg,40.71713,-73.95669,Entire home/apt,175,2,76,2019-06-21,1.29,1,19 +3944200,A Safe & Pleasant Time in NYC,20438402,Geoff & Aurelia,Manhattan,East Harlem,40.79508,-73.93256,Entire home/apt,195,3,25,2018-11-05,0.43,3,0 +3944233,Huge space and MILLION DOLLAR VIEWs,12351216,Kevin,Manhattan,Theater District,40.75848,-73.98414,Private room,130,4,177,2019-06-21,3.01,1,235 +3944499,Cozy Bedroom in Crown Heights Brooklyn,6771709,Lauren,Brooklyn,Crown Heights,40.67081,-73.95761,Private room,96,3,1,2014-09-18,0.02,1,0 +3944625,Huge serene room in a perfect area!,20440955,Mario,Brooklyn,Brooklyn Heights,40.69417,-73.99443,Private room,129,2,199,2019-07-06,3.42,1,298 +3944627,Gramercy One Bedroom w Two Beds,71418,Matt,Manhattan,Gramercy,40.73845,-73.98373,Entire home/apt,200,7,10,2018-06-29,0.17,1,100 +3945796,Grand Central/UN/Langone. Lrg Rm Vu's. Own1/2 Bath,20447869,Burton,Manhattan,Kips Bay,40.74533,-73.97956,Private room,95,4,11,2019-01-02,0.19,2,0 +3946018,Luxury Building in Time Square,20449160,Mark,Manhattan,Theater District,40.75977,-73.98763,Entire home/apt,189,2,57,2019-07-07,1.18,1,9 +3946115,Large 3 bedroom on Upper West Side,20449763,Christine,Manhattan,Upper West Side,40.80075,-73.9677,Entire home/apt,450,1,1,2016-12-30,0.03,1,121 +3946177,"A Safe & Pleasant Time in NYC, 2",20438402,Geoff & Aurelia,Manhattan,East Harlem,40.7948,-73.93457,Entire home/apt,264,3,38,2018-10-01,0.65,3,0 +3946201,"Spacious king size redwood bedroom, 20 min to NYC",5650180,Jessica,Queens,Elmhurst,40.74471,-73.88075,Private room,45,30,20,2018-11-09,0.34,2,188 +3946239,Clinton Hill Apartment 2 BR,20449694,Luis,Brooklyn,Clinton Hill,40.68646,-73.95975,Entire home/apt,150,2,11,2018-06-08,0.42,1,0 +3946288,"A Safe & Pleasant Time in NYC, 3",20438402,Geoff & Aurelia,Manhattan,East Harlem,40.79365,-73.9349,Entire home/apt,540,3,20,2018-12-05,0.38,3,350 +3946471,Bedford Avenue,7739416,Ade,Brooklyn,Flatbush,40.65101,-73.95517,Private room,95,3,0,,,1,365 +3948939,Comfy 1 bd/1 bath-Upper West Side,20464791,Olga,Manhattan,Upper West Side,40.78829,-73.97053,Entire home/apt,230,6,1,2014-10-24,0.02,1,0 +3950114,"Warm, Spacious, Convenient and Cozy",10528897,Erika,Queens,Astoria,40.76957,-73.91502,Private room,65,2,16,2019-07-01,0.27,1,302 +3951363,Historical Cozy Home in Bushwick,9769764,Skyler,Brooklyn,Bushwick,40.68819,-73.91594,Private room,70,30,0,,,1,0 +3952093,Entire 2 bdrm/2 bth UWS/RiversdePrk,20484008,Mike,Manhattan,Upper West Side,40.79407,-73.97513,Entire home/apt,160,4,75,2019-06-29,1.31,2,8 +3952676,Designer Apartment in Williamsburg,3097283,Leta,Brooklyn,Williamsburg,40.71305,-73.94334,Entire home/apt,200,6,0,,,1,0 +3952731,Entire Flat in quiet neighborhood,20435679,Frank,Brooklyn,Windsor Terrace,40.65527,-73.97853,Entire home/apt,138,5,1,2018-09-26,0.10,1,0 +3953314,Hamiltons Hideway Lower Level Apt NYC,295128,Carol Gloria,Bronx,Clason Point,40.81192,-73.85334,Entire home/apt,155,1,19,2019-07-01,0.35,7,332 +3953415,LL2,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85349,Private room,75,2,0,,,7,349 +3953585,Manhattan Private Room15min=TimesSQ,7580038,Jack Andrew,Manhattan,Harlem,40.82546,-73.94629,Private room,39,4,33,2019-06-04,0.57,3,292 +3953942,Spacious 1 Bedroom Apt in Brooklyn,8015051,Justine,Brooklyn,Crown Heights,40.67042,-73.95608,Entire home/apt,115,2,76,2019-06-16,1.30,1,283 +3957619,"Prime SoHo! shops, food, fun",12485770,Raanan,Manhattan,SoHo,40.72699,-74.0012,Entire home/apt,110,30,3,2017-03-26,0.05,9,333 +3958460,Central Park-Lincoln Center,10194688,Mariela,Manhattan,Upper West Side,40.77323,-73.98014,Private room,100,3,172,2019-07-01,2.93,1,214 +3959369,Luxurious 1BR Best Views in NYC! ,2032408,Kimberly,Manhattan,Battery Park City,40.71185,-74.01719,Entire home/apt,225,3,2,2015-11-03,0.04,1,0 +3962389,Two bedroom fully furnished apt.,20534981,Charlayne,Brooklyn,Flatlands,40.61938,-73.92471,Entire home/apt,125,14,10,2019-01-25,0.21,1,180 +3962586,Sunny private room in Gramercy,20536249,Daphne,Manhattan,Gramercy,40.73371,-73.98576,Private room,150,1,1,2014-09-14,0.02,1,0 +3963137,Beautiful Bed-Stuy Brownstone,5742948,Tommy,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91472,Entire home/apt,199,4,9,2017-07-01,0.23,1,0 +3963345,Large Duplex Apt. with Balcony near Union Square,978546,Shivani,Manhattan,East Village,40.73152,-73.98676,Entire home/apt,250,3,12,2018-02-11,0.25,1,0 +3963635,"A 2-story, 2-bedroom house - 20min to Downtown",20543178,Pervaiz,Brooklyn,Bedford-Stuyvesant,40.68043,-73.93705,Entire home/apt,210,2,10,2019-05-18,0.21,2,180 +3967160,Firehouse Loft with Harbor Views,20555401,Susannah,Staten Island,Stapleton,40.63628,-74.07763,Entire home/apt,180,2,139,2019-06-23,2.42,1,263 +3967492,East Village Studio Apt.,5160894,Pat,Manhattan,East Village,40.72777,-73.99005,Entire home/apt,129,5,26,2019-06-03,0.58,1,0 +3967945,Great Apt steps from Central Park,18481481,Jeff And Jessica,Manhattan,East Harlem,40.79347,-73.95029,Private room,90,1,265,2019-01-06,4.50,1,36 +3968434,SUNNY HUDSON RIVER VIEW 2BATHRM APT NEAR SUBWAY,1100494,Mike&Mavi,Manhattan,Harlem,40.82257,-73.95565,Private room,50,30,46,2017-08-24,0.79,3,330 +3968610,Charming apt in Greenwich Village!,20567256,Marina,Manhattan,Greenwich Village,40.72818,-73.9981,Entire home/apt,140,1,37,2019-06-26,0.66,1,19 +3970224,Groovy Two Story Garden Apartment,1033829,Joe & Michael,Brooklyn,Bedford-Stuyvesant,40.68692,-73.93113,Entire home/apt,150,2,5,2018-12-29,0.09,1,0 +3970345,Luxury large Penthouse /Fireplace / City views..,363472,Barry,Manhattan,East Village,40.72088,-73.98149,Entire home/apt,233,30,17,2018-07-15,0.33,1,364 +3970562,In The Heart of The East Village,15309829,Natalie,Manhattan,East Village,40.73057,-73.98726,Entire home/apt,170,2,1,2019-01-01,0.16,1,0 +3970701,Beautiful Private Room in Newly Renovated Apt,20278196,Stephanie,Brooklyn,East Flatbush,40.66303,-73.92526,Private room,60,2,6,2019-02-03,0.26,3,326 +3970724,Spacious 2 bedroom in trendy hood,3339819,Jennifer,Brooklyn,Crown Heights,40.6723,-73.95951,Entire home/apt,200,2,3,2015-05-26,0.05,1,0 +3970755,Sunny Junior 1 Bedroom,3164949,Robert,Brooklyn,Cobble Hill,40.68781,-73.99415,Entire home/apt,160,4,0,,,1,0 +3970936,"Prime Gramercy, Luxury 1BD DOORMAN ",1475015,Mike,Manhattan,Gramercy,40.73771,-73.98058,Entire home/apt,150,30,1,2014-10-08,0.02,52,342 +3971065,Spacious Modern Apt that feels like HOME,20580437,Adam,Brooklyn,Williamsburg,40.71276,-73.95114,Entire home/apt,140,2,3,2017-09-04,0.12,1,0 +3971526,"Sunny, Spacious Room in Brooklyn!",1840581,Angelica,Brooklyn,Flatbush,40.63762,-73.96155,Private room,65,1,0,,,1,0 +3971534,SpaciousBedroom in Brownstone Bklyn,14741088,Victoria,Brooklyn,Carroll Gardens,40.67845,-73.99983,Private room,60,3,3,2017-12-01,0.07,1,0 +3971580,Entire apartment 1st Floor,17576229,Mary,Brooklyn,Bay Ridge,40.63562,-74.0235,Entire home/apt,130,3,1,2018-05-26,0.07,1,83 +3971948,Charming sunny room in Brooklyn,19808313,Georgia,Brooklyn,Clinton Hill,40.68316,-73.96163,Entire home/apt,103,1,0,,,1,0 +3973944,Ground & Rejuvenate PR Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.70974,-73.95612,Private room,89,2,30,2019-05-26,0.52,3,219 +3974464,Art Studio Loft in Manhattan (UWS),20047729,Fabio,Manhattan,Upper West Side,40.78789,-73.97679,Private room,50,5,0,,,1,0 +3975630,Beautiful 1 bedroom in NYC,20604091,Eliana E,Queens,Woodside,40.74433,-73.91172,Entire home/apt,150,2,110,2019-06-27,1.86,1,294 +3979360,!!Studio next to Empire State Bldg.,20624434,Matti,Manhattan,Midtown,40.74819,-73.9856,Entire home/apt,240,3,7,2015-04-07,0.13,1,0 +3979611,Located at the heart of Manhattan,19407840,Peng,Manhattan,Roosevelt Island,40.75592,-73.95515,Entire home/apt,1400,90,31,2015-12-03,0.53,1,88 +3979613,ECO-CHIC PALLET DESIGN APARTMENT,20625992,Christian,Queens,Jackson Heights,40.74892,-73.88883,Entire home/apt,200,2,0,,,1,364 +3979628,BR/Private Bath 10Mins to TIME SQ,2766755,Mara,Manhattan,Harlem,40.8095,-73.95395,Private room,88,2,171,2019-06-16,2.93,2,234 +3979714,Central Park North 1BD,557329,James,Manhattan,Harlem,40.8012,-73.95424,Shared room,75,1,6,2019-06-13,0.10,1,315 +3980487,Awesome Apartment near Times Sq.,3424328,Jd,Manhattan,Chelsea,40.73923,-73.99827,Entire home/apt,500,1,27,2016-09-17,0.46,1,90 +3983422,Chelsea Home with a View,17546682,Angela,Manhattan,Chelsea,40.74496,-73.99934,Entire home/apt,125,4,1,2018-07-19,0.08,1,0 +3983469,Private room near Columbia University,8734291,Mike,Manhattan,Upper West Side,40.80311,-73.96648,Private room,75,1,65,2019-07-05,1.12,1,301 +3983643,Gorgeous 1BD Best Gramercy Park ,1475015,Mike,Manhattan,Gramercy,40.73731,-73.98338,Entire home/apt,130,30,2,2015-10-30,0.04,52,335 +3984168,Union Square~Reno 2BR~Great Value,2119276,Host,Manhattan,East Village,40.73256,-73.98558,Entire home/apt,170,30,11,2019-05-09,0.19,39,319 +3985673,NYC Artists Loft in Chelsea,6337882,Michael,Manhattan,Chelsea,40.75319,-74.00159,Entire home/apt,300,2,11,2019-05-20,0.19,1,137 +3987571,Garden Apartment with Private Entry,20670026,Monifa & Saint,Brooklyn,Bedford-Stuyvesant,40.68084,-73.94779,Entire home/apt,115,2,259,2019-06-30,4.43,1,285 +3987599,"Great 3 Bdrm- Internships, Students",20670246,Jaxon,Brooklyn,Bushwick,40.6876,-73.9167,Entire home/apt,93,30,23,2018-06-24,0.40,1,226 +3989564,Brooklyn Garden Apartment ,1272714,Arielle,Brooklyn,Bedford-Stuyvesant,40.68313,-73.9413,Entire home/apt,119,2,209,2019-06-19,3.62,1,241 +3992326,Bohemian Den in Chinatown-New York,20694703,Pablo,Manhattan,Lower East Side,40.71421,-73.98793,Entire home/apt,180,6,24,2018-10-10,0.41,2,51 +3993392,Stylish 2bdr harlem brownstone,11790239,Mina,Manhattan,Harlem,40.81453,-73.94807,Entire home/apt,226,3,8,2015-10-19,0.14,3,303 +3993553,North Park Slope Studio,6198638,Carla,Brooklyn,Park Slope,40.67814,-73.9778,Entire home/apt,155,2,2,2015-12-01,0.04,1,0 +3999228,Best Location NYC! Studio in heart of The Village,14545465,Tom,Manhattan,West Village,40.73455,-74.00614,Entire home/apt,115,4,16,2017-03-17,0.27,1,0 +4000133,Ditmas Park townhouse front bedroom,20738908,James,Brooklyn,Flatbush,40.64119,-73.96295,Private room,50,2,4,2015-10-29,0.07,1,0 +4000561,Large apartment in Manhattan UWS,3325418,Patricia,Manhattan,Morningside Heights,40.80395,-73.96436,Entire home/apt,600,1,0,,,3,344 +4000571,Private Suite/Bath in Manhattan NYC,3325418,Patricia,Manhattan,Morningside Heights,40.80452,-73.96393,Private room,200,1,30,2018-04-30,0.52,3,0 +4000579,Sunny 1 BR Brooklyn Loft Apartment ,3146353,Sara,Brooklyn,Clinton Hill,40.68329,-73.9609,Entire home/apt,157,4,3,2014-10-22,0.05,1,0 +4000621,Hancock House cozy Garden Level,1542375,Nicci & David,Brooklyn,Bedford-Stuyvesant,40.6835,-73.92754,Entire home/apt,145,3,122,2019-06-10,2.14,1,269 +4003515,Charming New York town house,2787824,Martyn,Queens,Glendale,40.70591,-73.89264,Private room,95,2,46,2017-06-23,1.15,1,0 +4006264,Cozy Parkside 1 Bedroom Apartment,942933,David,Manhattan,Harlem,40.80489,-73.95759,Entire home/apt,115,1,1,2014-09-25,0.02,1,0 +4007277,Convenient and Affordable in the Heart of Astoria,3120671,Benham,Queens,Astoria,40.76294,-73.91545,Private room,65,2,5,2019-07-07,5,1,2 +4007770,One Bedroom in Heart of Harlem,16949652,Derrick,Manhattan,Harlem,40.80655,-73.94854,Entire home/apt,275,1,0,,,1,0 +4008443,"Private room in Astoria, NY!!",20741468,Sarah,Queens,Astoria,40.75568,-73.91578,Private room,250,2,22,2018-01-02,0.43,1,123 +4013339,Amazing Private Room in the Heart of Manhattan,2090439,Matt,Manhattan,Little Italy,40.72023,-73.99693,Private room,95,3,135,2019-06-16,2.31,1,9 +4013668,Spacious Park Slope brownstone,20809866,David,Brooklyn,Park Slope,40.66972,-73.97954,Entire home/apt,185,4,111,2019-06-07,1.90,1,9 +4016069,1C. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80732,-73.93775,Private room,55,1,163,2019-05-14,2.76,10,359 +4016121,Located in the heart of NoLita.,14707270,Hamish,Manhattan,Nolita,40.72322,-73.99351,Entire home/apt,350,1,1,2016-01-05,0.02,1,0 +4016142,Big Bedroom in Sunny & New Lower East Side Apt,20822611,Robin,Manhattan,Lower East Side,40.71891,-73.98592,Private room,170,5,22,2018-10-14,0.38,1,259 +4016173,Turn of the Century Railroad Flat /4 day Wknd,9639040,Joanne,Brooklyn,Park Slope,40.66723,-73.98043,Entire home/apt,100,2,18,2019-06-24,0.31,1,58 +4016791,Sunny Private Bedroom,20827756,Jillian,Manhattan,Washington Heights,40.84787,-73.93306,Private room,36,2,10,2017-10-01,0.20,1,0 +4017226,Comfortable room in Brooklyn,20830484,Lorcán,Brooklyn,Gowanus,40.68163,-73.98088,Private room,60,1,1,2014-09-21,0.02,1,0 +4020957,Sunny Room in Bedstuy,12876904,Marla,Brooklyn,Bedford-Stuyvesant,40.67918,-73.95318,Private room,125,2,1,2015-06-05,0.02,1,0 +4024936,"Beautiful, Bright, Williamsburg apt",10263619,Chloe,Brooklyn,Williamsburg,40.71908,-73.95675,Entire home/apt,120,2,135,2019-07-03,2.32,1,66 +4025313,One Bed Studio at Wall Street,17249397,Sushant,Manhattan,Financial District,40.70457,-74.00733,Shared room,90,1,8,2015-05-21,0.14,2,0 +4025329,SPACIOUS STUDIO-HIGH END FINISHES,9743617,Patricia,Manhattan,Harlem,40.81586,-73.94117,Entire home/apt,129,5,91,2019-06-17,1.63,2,260 +4026150,"Personal, Private and Pretty NYC Apartment",16514175,Karen,Queens,Elmhurst,40.74561,-73.88514,Entire home/apt,78,2,133,2019-06-23,2.26,5,107 +4028670,Luxury 1 Bedroom Sublet ,7877288,James,Manhattan,Lower East Side,40.72102,-73.98622,Entire home/apt,120,1,0,,,1,0 +4031297,Clean Bedroom in Greenwich Village,4163733,Mike,Manhattan,Greenwich Village,40.72924,-74.00148,Private room,99,2,21,2017-11-02,0.36,1,268 +4031463,Comfortable Private space with a terrace,20900568,Mike,Bronx,Norwood,40.87786,-73.87641,Private room,50,1,108,2019-06-28,1.84,1,261 +4031809,Prewar classic NYC apartment.,20902552,Miquel,Manhattan,Washington Heights,40.83456,-73.94344,Private room,16,14,0,,,1,0 +4032229,Beautiful airy room in nice family home,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85696,-73.91439,Private room,47,2,122,2019-07-02,2.15,4,71 +4033300,Sunny and comfortable 2 bedroom apt,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68693,-73.95725,Entire home/apt,150,5,18,2019-06-26,2.57,3,254 +4033422,The Lighthouse Manor,20911928,Judith,Staten Island,Lighthouse Hill,40.57718,-74.13981,Entire home/apt,200,2,49,2018-12-31,0.92,1,360 +4033444,Big New York City Suite Near Subway,20912185,Saya & Diego,Brooklyn,Crown Heights,40.66649,-73.92855,Entire home/apt,125,2,130,2019-06-23,2.23,1,293 +4033521,Brooklyn 1 BR Near Subway,1369577,Thomas & Gaby,Brooklyn,Crown Heights,40.67441,-73.92371,Entire home/apt,60,6,144,2019-06-18,2.50,2,59 +4033998,Chic and peaceful,11818785,Fabio,Queens,Jackson Heights,40.7525,-73.88592,Private room,200,30,0,,,1,88 +4037379,"Bright, Spacious Studio in Brooklyn",5642757,Ilona,Brooklyn,Flatbush,40.62918,-73.96348,Entire home/apt,100,3,9,2016-04-05,0.16,1,0 +4037522,"Cozy, Safe & Clean room in Astoria",608396,Kiara,Queens,Astoria,40.76269,-73.90816,Private room,99,1,15,2019-02-16,0.26,1,322 +4038794,Bright room with private bathroom,19638238,Elke,Manhattan,Washington Heights,40.83428,-73.94738,Private room,75,2,25,2019-05-30,0.53,1,198 +4039020,"HUGE, PRIVATE BATH, STEPS FRM TRAIN",430188,Pam,Brooklyn,Williamsburg,40.70588,-73.95422,Private room,140,5,1,2014-09-14,0.02,6,185 +4039789,Harmonious Sanctuary near Yankee Stadium.,20945243,Michael,Bronx,Concourse Village,40.83331,-73.91742,Entire home/apt,90,30,1,2017-05-12,0.04,1,358 +4040900,Couch in times square,3789165,Lisa,Manhattan,Theater District,40.75974,-73.9866,Shared room,59,2,58,2019-06-01,0.99,1,345 +4040926,1BR Apartment- Fantastic Location!,15742426,Lauren,Manhattan,East Village,40.73118,-73.98794,Entire home/apt,111,3,51,2019-04-29,0.88,1,198 +4041189,"Cozy 1 bedroom + air mattress, 2 cats, sleeps 3",19755511,Agnieszka,Manhattan,Washington Heights,40.83469,-73.93961,Entire home/apt,80,4,3,2018-12-06,0.05,1,0 +4041351,Private Room In A Comfy 3BR Apt,2034343,David,Brooklyn,Crown Heights,40.67152,-73.92687,Private room,80,1,0,,,1,0 +4041383,Harlem Knight - the heart of Manhattan,20955075,Rk,Manhattan,Harlem,40.81118,-73.93977,Private room,50,14,5,2017-05-26,0.14,1,0 +4044625,LES Studio with Large Patio,20971414,Tuvia,Manhattan,Chinatown,40.71399,-73.99107,Entire home/apt,300,4,7,2016-04-02,0.12,1,0 +4044906,Ft Greene / Garden / Sauna,15582617,Andrew,Brooklyn,Fort Greene,40.6878,-73.97167,Entire home/apt,90,4,3,2017-07-30,0.12,1,0 +4046281,Spacious and Sunny Private Bedroom!,20979850,David,Manhattan,East Village,40.72087,-73.97952,Private room,119,1,49,2019-06-19,1.40,1,84 +4047638,NYC-Great Cost x Benefit-Huge Room-Next to Subway.,20987432,Valeria,Queens,Astoria,40.7653,-73.92661,Private room,69,4,22,2019-06-04,0.38,1,311 +4047751,Beautiful Upper West 1 BR Apartment,16325217,Sarah,Manhattan,Upper West Side,40.7908,-73.97723,Entire home/apt,260,2,0,,,1,0 +4047791,Spacious Sunny 2BR/Prime Greenpoint,20987992,Alicja,Brooklyn,Greenpoint,40.72414,-73.95355,Entire home/apt,185,2,114,2019-07-07,1.94,1,16 +4047815,Jackson Heights charmer!,20988865,Elizabeth,Queens,Jackson Heights,40.7517,-73.89478,Entire home/apt,100,2,24,2018-12-30,0.42,1,0 +4047932,Central Park Housing,20989479,Arnab,Manhattan,Upper West Side,40.77222,-73.98923,Shared room,85,1,33,2015-12-28,0.56,1,0 +4048043,1 BR in Exposed Brick SoHo apt,10135,Jason,Manhattan,SoHo,40.71972,-73.99986,Private room,135,2,125,2019-06-16,2.14,2,340 +4050254,Mid-Century Modern En-Suite in Brownstone!,9492212,Emily And Joel,Brooklyn,Park Slope,40.66898,-73.97831,Private room,169,1,151,2019-01-19,2.58,4,0 +4050765,Harmony House 3 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68852,-73.92393,Private room,38,2,50,2019-06-25,1.35,3,126 +4050795,Cozy Contempo Rustic Chic (stay w/a local artist!),21004091,Tony,Brooklyn,Bushwick,40.70102,-73.92864,Private room,90,2,52,2019-05-22,2.21,1,288 +4051643,Cozy Chic Uptown Home,21009723,Magen,Manhattan,Harlem,40.8242,-73.93789,Private room,45,4,1,2016-06-02,0.03,1,0 +4052514,Wow! Two Bedroom Apartment in Safe Neighborhood!,2037149,Steve & Anna,Brooklyn,Windsor Terrace,40.6501,-73.97985,Entire home/apt,149,4,143,2019-06-24,2.62,1,254 +4053249,Quiet 2 bdrm in cozy Clinton Hill!,21019043,Jason,Brooklyn,Clinton Hill,40.68436,-73.96223,Entire home/apt,200,2,14,2016-11-29,0.24,1,0 +4053287,Spacious Apartment with River Views!,21019260,Michael And Donna,Manhattan,Roosevelt Island,40.76365,-73.94914,Entire home/apt,125,60,6,2019-06-30,0.11,1,278 +4053471,Apartment in Heart of Greenpoint,3967335,Molly,Brooklyn,Greenpoint,40.72607,-73.95103,Private room,65,2,26,2019-06-20,0.45,2,6 +4053517,Two-Bedroom Greenpoint Apartment,3967335,Molly,Brooklyn,Greenpoint,40.72527,-73.95016,Entire home/apt,174,2,31,2019-06-02,0.54,2,12 +4053564,Beautiful room with bathroom,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93848,Private room,89,2,24,2019-05-31,0.41,5,339 +4053597,Artist's Creative Cozy Studio in Park Slope,5133495,Mary Kathryn,Brooklyn,South Slope,40.66202,-73.98589,Entire home/apt,150,3,8,2019-05-27,0.15,1,0 +4053912,"Lots of space, great location",21017521,Isis,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.95915,Private room,75,18,0,,,1,0 +4053987,Small Private Room for 1 person,1960128,Luana,Queens,Ozone Park,40.6844,-73.8472,Private room,58,1,2,2015-08-16,0.04,2,364 +4054332,awesome location.,21026294,Gilda,Brooklyn,Park Slope,40.67017,-73.97752,Private room,103,30,45,2016-10-05,0.82,1,0 +4054450,Comfortable & Spacious Home in NYC,4054295,Charles,Manhattan,Hell's Kitchen,40.76331,-73.99262,Entire home/apt,383,3,24,2019-06-28,0.41,1,251 +4055732,Stay in Clinton Hill sprout house!,12368114,Rachelle,Brooklyn,Clinton Hill,40.68454,-73.96382,Private room,40,1,1,2015-06-07,0.02,1,0 +4057361,"Large, Bright, Studio-Style Bedroom",2075509,Melissa,Queens,Long Island City,40.75977,-73.92904,Private room,76,1,14,2019-04-11,0.41,1,225 +4058701,Spare bedroom for rent in UWS-NYC,20484008,Mike,Manhattan,Upper West Side,40.79408,-73.9757,Private room,170,1,3,2015-11-10,0.05,2,0 +4058949,3C. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80617,-73.93868,Private room,45,1,151,2019-05-09,2.59,10,357 +4059037,Light Filled Studio,20441343,Lilah,Brooklyn,Bedford-Stuyvesant,40.69587,-73.95114,Private room,100,3,0,,,1,352 +4059620,Heart of Soho/Nolita,2788262,Stara,Manhattan,SoHo,40.72525,-73.99636,Entire home/apt,199,2,167,2019-06-23,3.17,1,17 +4060446,Modern spacious flat in Manhattan,21060554,Rob,Manhattan,Inwood,40.87279,-73.91991,Entire home/apt,99,5,61,2019-04-21,1.06,1,1 +4060526,Private Room A,10384906,Susan,Brooklyn,Sunset Park,40.64047,-74.00842,Private room,39,1,51,2019-06-09,0.88,5,273 +4060993,Spacious apt. 15 min to Manhattan,21064077,Dan,Queens,Ridgewood,40.70046,-73.90692,Entire home/apt,60,21,5,2017-10-31,0.10,1,0 +4063357,Stuvesant East,19382874,Anthony/Joanne,Brooklyn,Bedford-Stuyvesant,40.68439,-73.92811,Entire home/apt,130,3,132,2019-06-21,2.53,2,257 +4066224,Williamsburg Gem With Private Patio!,4050500,Kelly,Brooklyn,Williamsburg,40.71236,-73.9379,Entire home/apt,200,1,170,2019-06-30,2.96,1,303 +4067861,Newly Renovated BR in Heart of BK!,21096602,Khadija,Brooklyn,East Flatbush,40.64434,-73.94831,Private room,65,1,0,,,1,0 +4068216,Unbelievable Upper East Side Loc.,19331457,Yevgeny,Manhattan,Upper East Side,40.77462,-73.95461,Private room,105,1,239,2019-06-29,4.13,2,287 +4069228,1BR condo right by Prospect Park,14793862,Eleanor,Brooklyn,East Flatbush,40.65301,-73.95241,Entire home/apt,115,3,64,2018-06-08,1.13,1,0 +4069341,Urban Rustic Retreat,21105084,Sugeiry,Manhattan,Harlem,40.81575,-73.9537,Entire home/apt,145,7,34,2017-10-23,0.58,2,0 +4069681,"""DECO CASA"" 2 Bedroom Greenpoint Brooklyn",20741012,Devin,Brooklyn,Greenpoint,40.73357,-73.95439,Entire home/apt,75,2,102,2019-06-30,4.27,1,30 +4070025,Luxury Flat with Outdoor and Study Room,21110000,Shahram,Brooklyn,DUMBO,40.70452,-73.98583,Entire home/apt,250,2,150,2019-07-05,2.57,1,309 +4070027,Room at East 110th St Upper East/E. Harlem,5558013,Suzanne,Manhattan,East Harlem,40.7941,-73.94045,Private room,80,2,2,2016-08-26,0.06,1,0 +4071007,Cozy 1 BR in Exposed Brick SoHo Apt,10135,Jason,Manhattan,SoHo,40.71995,-73.99975,Private room,120,3,71,2019-06-11,1.21,2,304 +4074248,Skylight Room in BK Duplex in Williamsburg,6459254,Todd,Brooklyn,Williamsburg,40.71413,-73.94868,Private room,100,4,32,2019-06-09,0.56,1,0 +4074892,Huge shared apt Near Times Sq & Convention Center,13322263,Aj,Manhattan,Hell's Kitchen,40.75735,-73.99603,Private room,125,10,12,2016-10-16,0.20,1,0 +4076084,Alcove Studio & Terrace best part of Williamsburg!,7116594,Russell,Brooklyn,Williamsburg,40.71009,-73.96471,Entire home/apt,132,3,2,2017-12-30,0.05,1,0 +4077090,Quiet Haven in Park Slope Huge 2BR,316474,Ellie,Brooklyn,South Slope,40.66693,-73.98801,Entire home/apt,225,2,66,2019-01-02,1.13,1,158 +4077427,"Bright, Modern loft in Williamsburg",4148174,Daniel,Brooklyn,Williamsburg,40.70808,-73.94757,Entire home/apt,175,2,2,2014-10-12,0.03,1,0 +4077428,Amazing park view in the LES!!!,21149119,David,Manhattan,Chinatown,40.71585,-73.99014,Entire home/apt,225,3,2,2015-10-04,0.03,1,221 +4077460,Brooklyn modern 2 BR Garden Floor,21149129,Jenny,Brooklyn,Bedford-Stuyvesant,40.69013,-73.92805,Entire home/apt,215,1,167,2019-06-20,2.86,1,250 +4081707,Red Hook Architectural with huge outdoor area,4792032,Cee,Brooklyn,Red Hook,40.67815,-74.01443,Entire home/apt,300,7,9,2019-04-23,0.18,1,32 +4081800,Classic Brownstone Apartment,4835582,Julia,Manhattan,Harlem,40.80856,-73.94573,Entire home/apt,130,2,185,2019-06-17,3.76,1,300 +4081926,1 BDR APARTMENT 7 MINS FROM JFK 5 STAR RATED,21171867,Jennifer And Basil,Queens,Springfield Gardens,40.67425,-73.75796,Entire home/apt,110,1,279,2019-06-16,5.02,1,355 +4082062,Unique room w/2 Twin beds..wifi*metro* quiet*safe,310670,Vie,Bronx,Eastchester,40.8806,-73.83433,Private room,75,2,37,2019-06-16,0.73,13,364 +4082357,Big bedroom in Brooklyn!,3801427,Liz,Brooklyn,Greenpoint,40.72631,-73.94127,Private room,36,14,18,2019-04-27,0.34,1,0 +4083049,Modern Brooklyn Brownstone,1335736,Ozlem,Brooklyn,Bedford-Stuyvesant,40.68634,-73.92516,Entire home/apt,299,4,8,2017-08-02,0.15,1,279 +4084603,Prime East Village 1 Bedroom,7861502,Aviad,Manhattan,East Village,40.72878,-73.98521,Entire home/apt,200,1,1,2015-05-24,0.02,1,0 +4085647,Cozy and Convenient – Spacious 1 Bedroom Apartment,21145652,Kathisha,Brooklyn,East New York,40.65741,-73.87854,Entire home/apt,110,3,9,2018-12-21,0.16,1,36 +4088506,"Modern, central WBurg 2BR w/rooftop",2436652,Krzysztof,Brooklyn,Williamsburg,40.71381,-73.96065,Entire home/apt,160,30,44,2019-06-10,0.76,1,226 +4089102,Serenity Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68407,-73.95487,Entire home/apt,152,3,146,2019-05-24,2.51,2,287 +4089189,Stunning Parlor Garden Apartment,5317124,Caroline,Brooklyn,Clinton Hill,40.6921,-73.96797,Entire home/apt,145,3,16,2019-06-15,0.31,1,96 +4089492,BUSHWICK (1 block from Jefferson L),21210898,Fagan,Brooklyn,Bushwick,40.70794,-73.92168,Private room,120,2,11,2019-06-22,0.20,2,365 +4089915,"PRIVATE, Airy, 1 Bedroom Apt in Central Bushwick",2917387,Emily,Brooklyn,Bushwick,40.7041,-73.92476,Entire home/apt,84,3,120,2019-06-19,2.29,1,224 +4090748,Entire Manhattan Apt in Upper East,21217401,Yong,Manhattan,Upper East Side,40.76965,-73.96258,Entire home/apt,160,5,13,2016-09-20,0.22,1,0 +4091629,"DO DROP IN, LLC",21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95373,Entire home/apt,150,5,14,2017-12-27,0.28,2,363 +4092826,Forest Hills Villa 皇后区“曼哈顿”-森林小丘别墅!,21228368,Jessica,Queens,Forest Hills,40.71291,-73.84678,Entire home/apt,180,2,105,2019-06-25,1.80,5,190 +4093399,DOMINIQUE'S NY*chic* quiet room*wifi*metro,310670,Vie,Bronx,Eastchester,40.88009,-73.83442,Private room,68,2,41,2019-01-01,0.74,13,365 +4093511,Soho 1 Bedroom,21232737,Donour,Manhattan,SoHo,40.72651,-74.00014,Entire home/apt,125,1,0,,,1,1 +4093591,1 Room & 1 Bath,11090576,Michael,Brooklyn,Bushwick,40.69216,-73.90859,Private room,25,1,8,2015-01-15,0.14,1,0 +4096470,THE THOMPSON SUITE,4065620,Debbie,Brooklyn,Bedford-Stuyvesant,40.68663,-73.9379,Entire home/apt,155,3,1,2019-07-01,1,2,342 +4097279,A room with a window,2705041,Alexa,Manhattan,East Village,40.73131,-73.98321,Private room,105,2,0,,,1,0 +4097284,"Bklyn, private Three Bedroom.",11948817,Leslie,Brooklyn,Canarsie,40.63056,-73.89043,Entire home/apt,75,2,91,2019-06-09,1.56,2,289 +4098078,Hamilton Heights Convent Ave Apartment,15277039,Ryan,Manhattan,Harlem,40.8236,-73.94743,Private room,80,4,2,2015-12-31,0.05,1,0 +4098271,"Spacious Bedroom, L.E.S.",20245055,Sade,Manhattan,Lower East Side,40.71273,-73.9882,Private room,72,3,56,2019-06-30,0.96,2,304 +4098814,Private Single Room,1539749,Edward,Brooklyn,Bedford-Stuyvesant,40.68641,-73.94735,Private room,52,2,29,2019-05-05,0.50,4,335 +4102208,"Convenient, clean and chic apartment",21279472,Zheni,Brooklyn,Carroll Gardens,40.67335,-73.99886,Entire home/apt,125,3,93,2019-06-21,1.82,1,30 +4102483,Sunny room on quiet block,4473954,Milena,Manhattan,Upper West Side,40.78156,-73.97796,Private room,85,29,10,2018-12-01,0.36,1,241 +4103623,Prospect Park Neighborhood Retreat,61463,Channa,Brooklyn,Windsor Terrace,40.65157,-73.97383,Private room,58,4,18,2019-07-01,0.42,1,58 +4103970,Private room in hip east Williamsburg/Greenpoint,1637916,Mandy,Brooklyn,Greenpoint,40.72122,-73.94121,Private room,100,1,36,2019-06-21,2.69,1,335 +4108547,East Village Queen Bed - Breakfast - Subway 2 Blk,21315876,Helen,Manhattan,East Village,40.72333,-73.98838,Private room,65,1,139,2019-06-27,3.64,2,103 +4108799,Gorgeous Big & Bright Greenpoint Apt,622779,Kat,Brooklyn,Greenpoint,40.72452,-73.93916,Entire home/apt,300,1,12,2018-03-30,0.32,1,362 +4109246,Calm Bushwick Room--Next to subway!,7714918,Carrie-Anne,Brooklyn,Bushwick,40.70569,-73.92268,Private room,40,28,191,2019-05-15,3.36,2,95 +4109420,"Accessible, large & stylish 2BR apt in Astoria!",19914713,Samantha,Queens,Astoria,40.76177,-73.91359,Entire home/apt,110,2,47,2019-07-07,0.81,2,0 +4110645,Art deco apartment in Brooklyn,21327210,David,Brooklyn,Bay Ridge,40.63745,-74.02534,Private room,85,2,45,2019-06-22,0.77,2,90 +4115327,The Garden Apartment,21352288,Deborah Lily,Brooklyn,South Slope,40.66617,-73.98627,Entire home/apt,158,3,87,2019-06-26,1.53,1,204 +4116403,Bright Room in Great Location,4314639,Brad,Brooklyn,Crown Heights,40.67284,-73.9521,Private room,65,1,0,,,1,0 +4117134,Beautiful Room in the heart of NYC. Hell's Kitchen,4934489,Jessica,Manhattan,Hell's Kitchen,40.76032,-73.99076,Private room,100,2,8,2018-12-09,0.97,3,0 +4117817,East Williamsburg Oasis,4516038,Zak,Brooklyn,Williamsburg,40.71673,-73.94316,Private room,64,5,4,2016-09-11,0.07,1,0 +4118244,3-LvPenthouse NYC skyline Subwy 50m,21362718,Rafael,Brooklyn,Carroll Gardens,40.67823,-73.99515,Entire home/apt,395,4,33,2018-05-18,0.65,1,158 +4118907,Charming 2-Bedroom Townhouse Apt,21367938,Rayna,Queens,Sunnyside,40.74947,-73.91472,Entire home/apt,120,10,30,2017-06-22,0.52,1,142 +4119763,"Large, Sunny 25 min to Central Park",10172703,HayNoor,Bronx,Norwood,40.87184,-73.88622,Private room,51,4,109,2019-07-04,1.88,1,212 +4119794,Large studio in Seaport Area,21371406,Anthony,Manhattan,Two Bridges,40.70989,-74.00105,Entire home/apt,149,6,1,2018-01-01,0.05,1,0 +4120122,Cosy room in Williamsburg,21373495,Lara,Brooklyn,Williamsburg,40.7105,-73.9438,Private room,65,1,113,2019-06-21,3.99,1,308 +4120182,Master Bedroom 别墅二楼主卧房,21228368,Jessica,Queens,Forest Hills,40.71293,-73.84915,Private room,70,1,11,2016-11-05,0.19,5,183 +4121110,Upper West Side studio with private terrace,1923075,Andrew,Manhattan,Upper West Side,40.79145,-73.97709,Entire home/apt,170,5,1,2014-10-19,0.02,1,0 +4121173,Large Studio in Luxury Building,17249397,Sushant,Manhattan,Financial District,40.70499,-74.00819,Entire home/apt,150,1,2,2015-06-07,0.04,2,0 +4121363,Large Garden Alcove Studio Apartment in Manhattan,21380762,Rachel,Manhattan,East Harlem,40.80738,-73.93707,Entire home/apt,75,30,6,2019-05-22,0.12,1,203 +4125398,Private Room in prime UWS duplex!,21400083,Katherine,Manhattan,Upper West Side,40.78732,-73.97489,Private room,100,1,10,2016-08-17,0.21,1,0 +4125515,Cute room in Large Crown heights Apartment,21400616,LeKethia,Brooklyn,Crown Heights,40.67673,-73.9362,Private room,38,2,12,2018-01-01,0.21,2,351 +4126452,Quiet Two Bedroom Apartment ,21405141,Altin,Manhattan,Gramercy,40.73327,-73.98503,Entire home/apt,200,3,13,2015-10-19,0.22,1,157 +4126676,Great Apt 5min from Time Square NYC,19802029,Roger,Manhattan,Hell's Kitchen,40.76468,-73.98514,Entire home/apt,145,7,37,2019-02-11,0.65,1,97 +4127402,Brand New Furnished Brooklyn Apt.,21336880,Madison,Brooklyn,Crown Heights,40.67822,-73.95883,Entire home/apt,150,5,14,2016-11-01,0.29,1,0 +4127524,Entire 1BD Apt in Long Island City!,828682,Leora,Queens,Long Island City,40.74264,-73.95122,Entire home/apt,200,1,2,2015-12-01,0.04,1,0 +4128337,Entire Apartment - charming 1BR-20min to Downtown,20543178,Pervaiz,Brooklyn,Bedford-Stuyvesant,40.67879,-73.93653,Entire home/apt,125,2,191,2019-06-23,3.27,2,311 +4128428,Sunny Bedroom in quirky apartment,21416490,Elizabeth,Manhattan,Murray Hill,40.74713,-73.98075,Private room,175,2,8,2019-06-07,0.43,1,177 +4128450,"Sunny, Spacious 1BR in BoCoCa",6885530,P,Brooklyn,Cobble Hill,40.6883,-73.99132,Entire home/apt,180,2,2,2014-10-18,0.03,1,0 +4128603,Cute 1 bedroom apt in East Village,8280108,Prune,Manhattan,East Village,40.72884,-73.98277,Entire home/apt,175,3,6,2016-06-05,0.13,1,18 +4129195,2 sleeping areas for 2 people together +2 singles,702419,Lars,Manhattan,Chelsea,40.75097,-73.99562,Entire home/apt,175,14,78,2019-03-10,1.36,1,0 +4129212,Large 1 Bedroom apartment with office room.,11555258,Patrick,Brooklyn,Kensington,40.64449,-73.97238,Private room,50,3,8,2016-07-25,0.14,2,14 +4129365,Beautiful SUNLIGHT in quiet apt!,21422095,Timothy,Brooklyn,Flatbush,40.64335,-73.96316,Entire home/apt,109,2,37,2019-06-16,0.64,1,356 +4129487,Peaceful Retreat in a Brownstone,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68706,-73.93077,Private room,67,2,21,2019-05-21,0.36,7,58 +4129513,Haven of Tranquility in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68707,-73.93247,Private room,57,2,22,2019-03-06,0.38,7,71 +4129541,Wonderful Getaway in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.68627,-73.93131,Private room,77,2,38,2019-03-16,0.66,7,66 +4129909,"Great View, only one block to metro",9234456,Angelo,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93387,Private room,80,2,61,2019-05-09,1.05,2,0 +4129992,Country in the City,20169986,Victoria,Brooklyn,Flatbush,40.63146,-73.96486,Entire home/apt,85,3,12,2018-09-21,0.21,1,97 +4130266,Spacious Sunny Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69562,-73.93792,Private room,86,2,11,2018-01-01,0.19,5,311 +4132116,Beautiful house top floor 1-3 large bedrooms,15908653,Gil,Brooklyn,Flatbush,40.63268,-73.96059,Private room,120,2,114,2019-04-07,1.96,2,312 +4134035,Sunny Studio in Brooklyn,7677048,Florrie,Brooklyn,Downtown Brooklyn,40.69682,-73.9837,Entire home/apt,140,3,131,2019-06-29,3.24,1,28 +4135674,Warm & lovely garden duplex in BK,2011110,Rebecca,Brooklyn,Fort Greene,40.68786,-73.97339,Entire home/apt,300,1,5,2015-07-10,0.09,1,0 +4135848,Cozy Bedroom with en suite bathroom,21455632,Venessa,Manhattan,Harlem,40.82498,-73.93629,Private room,90,1,5,2017-08-26,0.11,1,0 +4135876,"""The Studio"" Harlem Brownstone",21455957,Jason & Agnes,Manhattan,Harlem,40.81892,-73.94647,Private room,70,3,86,2019-01-15,1.48,2,157 +4136252,Chic NYC apt - near train & 42st St,14952623,Ammy,Manhattan,Harlem,40.80985,-73.94348,Private room,90,2,82,2018-02-01,1.53,1,0 +4136596,Entire Home/1 Bedroom Apt LES,21459667,Joanna,Manhattan,Lower East Side,40.72005,-73.98649,Entire home/apt,200,30,35,2019-06-26,0.61,1,286 +4137414,"Sunny, Charming, and Zen",9232428,Scott,Manhattan,East Village,40.72934,-73.98603,Entire home/apt,135,1,6,2015-12-27,0.10,1,0 +4137415,Private room overlooking yard in prime Bushwick,7410674,Jess And Josh,Brooklyn,Bushwick,40.70495,-73.9209,Private room,37,1,202,2019-07-01,3.74,1,73 +4137645,Beautiful Williamsburg Private Room,11134688,Noelle,Brooklyn,Williamsburg,40.71243,-73.95655,Private room,60,1,1,2014-09-23,0.02,1,0 +4137680,"LUXURY entire apt, steps to Central Park",3507684,Michael,Manhattan,Upper West Side,40.77607,-73.98035,Entire home/apt,419,2,10,2019-04-21,0.47,1,10 +4137756,Gorgeous Newly-Renovated Apt,3145112,Emma,Queens,Ridgewood,40.70293,-73.90771,Entire home/apt,130,7,2,2016-01-07,0.03,1,0 +4137789,"Sunny 2BR in Brooklyn townhouse, steps to subway",21466751,Elizabeth,Brooklyn,Windsor Terrace,40.65282,-73.97394,Entire home/apt,180,3,56,2019-05-28,0.99,1,121 +4137900,Beautiful apartment on the UES,6087686,Tal,Manhattan,Upper East Side,40.76968,-73.9593,Entire home/apt,160,2,7,2016-05-03,0.12,1,0 +4137979,Williamsburg/Greenpoint Studio,7243674,Eric,Brooklyn,Greenpoint,40.72126,-73.94328,Entire home/apt,125,2,204,2019-06-30,3.51,1,71 +4140622,Spacious room in Bed-Stuy,21480710,Theodore,Brooklyn,Bedford-Stuyvesant,40.68514,-73.93207,Entire home/apt,100,1,0,,,2,0 +4140776,Basement 别墅的地下室,21228368,Jessica,Queens,Forest Hills,40.71146,-73.84677,Private room,65,4,20,2019-05-25,0.35,5,133 +4142125,Modern South Slope Studio w View,18189742,Kat,Brooklyn,Sunset Park,40.66355,-73.99547,Entire home/apt,140,1,0,,,1,0 +4144519,1 Bedroom & Semi- Private Living Area,1756624,Samer,Queens,Sunnyside,40.74059,-73.91985,Private room,79,3,23,2018-08-31,0.40,1,88 +4144630,Bedford Ave,21500500,Juan,Brooklyn,Williamsburg,40.71794,-73.95682,Private room,125,2,0,,,1,0 +4144849,Cozy little studio in Chelsea,21501965,Yulia,Manhattan,Chelsea,40.74411,-74.00204,Entire home/apt,115,3,33,2019-06-15,0.57,1,11 +4145124,Studio Apt,651818,Lucio,Manhattan,Hell's Kitchen,40.7555,-73.9926,Private room,100,23,12,2018-08-04,0.22,1,23 +4145494,Very Sunny Private Room with Bath,21505913,Geri,Brooklyn,Crown Heights,40.67205,-73.95092,Private room,90,12,24,2017-06-19,0.41,1,64 +4148088,Central Harlem Private Studio,11950557,Loni & Russ,Manhattan,Harlem,40.80709,-73.94952,Entire home/apt,135,2,232,2019-06-23,4.01,1,192 +4148280,Comfy and Smart on Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.66079,-73.95693,Private room,50,3,47,2019-03-31,0.84,3,76 +4150932,Cozy Bedroom in BK Apt,7848968,Morgan,Brooklyn,Prospect Heights,40.67579,-73.9679,Private room,71,2,174,2019-07-03,3.00,2,3 +4150972,"1 BDRM APT, 15 MINS FROM MANHATTAN",21535262,Cecilia,Queens,Ridgewood,40.70599,-73.89755,Entire home/apt,80,30,4,2017-02-01,0.08,1,220 +4152752,Location is Everything. And Quiet Too!,21546973,Niko,Manhattan,Hell's Kitchen,40.76444,-73.98965,Private room,103,1,394,2019-06-30,6.79,1,237 +4154009,Luxury One Bedroom View on CP,17477908,Mat,Manhattan,Upper West Side,40.79545,-73.96595,Entire home/apt,250,30,5,2017-08-02,0.10,10,303 +4155012,true 1 BR in prime east village,21560088,Sarah,Manhattan,East Village,40.72784,-73.99104,Entire home/apt,219,2,9,2017-09-22,0.15,1,0 +4155099,Large Group Friendly Rental,11948817,Leslie,Brooklyn,Canarsie,40.62864,-73.89265,Entire home/apt,225,2,11,2019-06-02,0.22,2,305 +4156015,Cozy East River 1 bed/1 bath,21565088,ZVIPCO LLC (Robert),Manhattan,East Harlem,40.79591,-73.93316,Entire home/apt,99,1,50,2019-07-06,0.87,1,333 +4157064,16' x 11' Furnished BR with Balcony,3563,Arnie,Brooklyn,Sunset Park,40.64076,-74.0224,Private room,35,6,1,2014-11-28,0.02,1,0 +4157451,Bedroom in Manhattan - Prime Location,9432174,Daniel,Manhattan,Upper East Side,40.76805,-73.95424,Private room,90,4,87,2019-06-13,2.01,1,10 +4158078,Private room in Loft,19139700,Tanya,Queens,Ridgewood,40.69518,-73.9038,Private room,47,30,4,2017-08-05,0.07,1,157 +4160934,Luxury Private 2 Beds nr C/3 Subways,17462748,Steven,Brooklyn,Crown Heights,40.67495,-73.93845,Private room,75,5,125,2019-06-27,2.15,5,108 +4161127,An Open and Peaceful Space Great for Families,6580488,Sandy,Brooklyn,Windsor Terrace,40.65337,-73.97483,Entire home/apt,170,4,43,2019-06-27,0.77,1,275 +4162292,Charming Full 1BR Apt w/Backyard,21601222,Joan,Brooklyn,Flatbush,40.63512,-73.95815,Entire home/apt,150,3,37,2019-07-01,0.86,1,320 +4162519,Happy cozy Manchi GUEST ROOM,1267556,Mari J,Brooklyn,Flatbush,40.63995,-73.96196,Shared room,30,1,81,2019-06-29,1.39,1,319 +4163020,Gorgeous UWS apt with OWN full bath,6897051,Corey,Manhattan,Upper West Side,40.78398,-73.97795,Private room,119,4,7,2017-05-11,0.12,2,0 +4163710,Cozy private room in beautiful apt ,21609476,Beatrice,Brooklyn,Midwood,40.6251,-73.96163,Private room,40,15,1,2014-11-03,0.02,1,0 +4163742,Lovely 1BR in Ft. Greene,17451048,Ritchie,Brooklyn,Fort Greene,40.6888,-73.97635,Entire home/apt,85,2,1,2016-10-22,0.03,1,0 +4163781,Sun Soaked & Cozy PR Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.71007,-73.95653,Private room,99,3,19,2019-07-06,0.33,3,354 +4163804,Classic UWS 1 Bed in Doorman Bldg,15573381,Lindsay,Manhattan,Upper West Side,40.78085,-73.98471,Entire home/apt,250,1,0,,,1,0 +4165278,HUGE Room in an AMAZING Location!,4403262,Adam,Manhattan,Lower East Side,40.71906,-73.98433,Private room,79,9,5,2016-08-15,0.09,1,0 +4168660,Northside Williamsburg Private Bdrm,20979241,Amy,Brooklyn,Williamsburg,40.72022,-73.96055,Private room,60,3,5,2016-05-19,0.10,1,0 +4168812,PRIVATE 1BR APT: Free WIFI & DIRECT TV,5243122,R,Brooklyn,Bedford-Stuyvesant,40.6805,-73.93775,Entire home/apt,115,3,131,2019-06-22,2.27,2,241 +4169094,"Room in 2br apt Location by N,W,M60bus,Beer Garden",21634948,Monika,Queens,Ditmars Steinway,40.77375,-73.91646,Private room,90,3,17,2019-06-30,0.31,1,340 +4169840,Trendy Bushwick neighborhood,9452830,David,Brooklyn,Bushwick,40.70732,-73.91926,Private room,65,1,32,2015-11-10,0.55,1,188 +4170460,#1 Superhost Special Offer in NYC!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.6956,-73.94827,Private room,65,1,357,2019-06-22,6.19,4,321 +4170796,MODERN AND COZY FLAT w/ BACKYARD,733543,Monica,Manhattan,Harlem,40.80849,-73.9446,Entire home/apt,131,3,10,2019-07-01,0.27,1,12 +4171272,"Clean, Bright 1BD in Bushwick!",21645208,Grace,Brooklyn,Bushwick,40.69917,-73.93146,Entire home/apt,150,1,3,2016-01-02,0.05,1,0 +4171406,Private room in artist's loft!,6032480,Anna,Brooklyn,Williamsburg,40.7095,-73.94945,Private room,55,2,86,2019-06-11,1.49,2,38 +4171692,Luxe New Queen Br near Subways,17462748,Steven,Brooklyn,Crown Heights,40.67412,-73.93833,Private room,70,5,92,2019-07-06,1.58,5,148 +4172633,Cozy one bedroom apt at the center of Astoria,21652004,June,Queens,Astoria,40.75637,-73.92132,Entire home/apt,160,2,1,2017-07-03,0.04,1,0 +4172947,Your Own 2-Bd ~ Comfortable and Unique ~ Bed-Stuy,21653460,Zoya,Brooklyn,Bedford-Stuyvesant,40.6942,-73.95269,Entire home/apt,95,7,69,2018-12-07,1.79,2,0 +4173751,Lovely Apartment in Harlem West,9197440,Ana,Manhattan,Harlem,40.81619,-73.94003,Entire home/apt,99,3,5,2016-07-02,0.09,1,0 +4174115,Spacious Soho Loft,5739699,Rosemary,Manhattan,SoHo,40.7244,-73.99763,Entire home/apt,500,3,3,2015-05-05,0.05,1,0 +4174286,Bushwick BR/Private Bathroom,21660125,Chris,Brooklyn,Bushwick,40.69358,-73.91914,Private room,35,15,1,2016-04-15,0.03,1,0 +4174847,Quiet bedroom in a waste free household,21663531,Dana,Queens,Ridgewood,40.7078,-73.90177,Private room,50,21,38,2018-09-30,0.76,2,245 +4178152,"Modern Private Entrance Bedroom, Nr A/C Subways",17462748,Steven,Brooklyn,Crown Heights,40.67599,-73.93995,Private room,77,5,108,2019-06-28,2.14,5,129 +4178851,Lofty Living: Heart of Williamsburg,21680683,Jenny,Brooklyn,Williamsburg,40.71961,-73.95837,Entire home/apt,380,3,105,2019-06-30,1.82,2,264 +4179420,Cozy victorian peace of mind ,21682640,Clarise,Brooklyn,Flatbush,40.64251,-73.9597,Private room,65,30,0,,,2,365 +4180643,luxury one bedroom apt in prime LES location,21688467,Avril,Manhattan,Lower East Side,40.71814,-73.98411,Entire home/apt,150,60,9,2019-03-27,0.16,1,210 +4181598,"HUGE 1BD, RENOVATED, TIME SQUARE !!",1475015,Mike,Manhattan,Hell's Kitchen,40.76239,-73.99227,Entire home/apt,125,30,0,,,52,331 +4182262,BedStuy Brooklyn Charm Awaits U - 3BR Apt,18049970,Lou,Brooklyn,Bedford-Stuyvesant,40.68312,-73.92507,Entire home/apt,199,3,82,2019-07-07,1.78,2,269 +4182568,WilliamsburgBrooklynPrivateBedroom,3267848,June,Brooklyn,Williamsburg,40.70969,-73.96225,Private room,150,1,12,2019-06-02,0.21,1,180 +4183424,Charming West Village 1 bdrm,9405848,Susie,Manhattan,West Village,40.73314,-74.00475,Entire home/apt,145,3,11,2019-04-08,0.34,1,0 +4183664,Cozy Room for 1,21705739,Maha,Brooklyn,Crown Heights,40.67196,-73.93824,Private room,70,7,20,2016-01-21,0.35,1,364 +4183801,"Colorful apt, 25 mins to Manhattan",21706654,Katerina,Brooklyn,Bedford-Stuyvesant,40.68454,-73.93178,Entire home/apt,120,30,131,2019-01-07,2.29,1,336 +4183989,SPRING in the City!! Zen-Style Tranquil Bedroom,919218,,Manhattan,Harlem,40.80606,-73.95061,Private room,86,3,34,2019-05-23,1.00,1,359 +4187387,Beautiful Studio in posh Upper East,20289059,Cristina,Manhattan,Upper East Side,40.7661,-73.9573,Entire home/apt,139,2,160,2019-06-27,2.76,1,248 +4187653,Great Deal.,12360407,Firas,Brooklyn,Bay Ridge,40.62433,-74.02892,Private room,85,2,1,2015-05-09,0.02,1,0 +4187747,UPPER EAST Landmark Blding:Walk to Central Park,5309160,Elizabeth And Roberto,Manhattan,Upper East Side,40.77065,-73.95064,Entire home/apt,94,30,15,2016-02-21,0.26,1,309 +4188351,"Cozy, charming private apt in Brooklyn",610819,Brian,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93058,Entire home/apt,116,2,148,2019-06-16,2.56,1,0 +4188807,Spacious Bedroom in a Brooklyn House,4152484,Oates + Bill,Brooklyn,Prospect-Lefferts Gardens,40.66018,-73.96005,Private room,72,1,229,2019-06-24,3.94,1,20 +4189428,Gorgeous Park Slope Space & Light,21734605,Jenn,Brooklyn,Park Slope,40.67925,-73.97463,Entire home/apt,95,4,0,,,2,0 +4190301,Cool room while I'm away!,21739563,Redding,Brooklyn,Bedford-Stuyvesant,40.69525,-73.93768,Private room,100,1,0,,,1,0 +4191257,Spacious 2 story Apt in Midtown!!,17106992,Alejandro,Manhattan,Murray Hill,40.74643,-73.97536,Entire home/apt,200,1,1,2014-10-27,0.02,1,0 +4192400,Private+Cozy Room w/ Superhost ($0 Cleaning Fee)!,21751476,Grace,Brooklyn,Bushwick,40.69233,-73.90579,Private room,72,1,360,2019-07-07,6.22,1,66 +4194010,Idealistic Inwood,21759005,Alaina,Manhattan,Inwood,40.86496,-73.9262,Entire home/apt,100,3,15,2018-01-02,0.27,1,0 +4194494,Unique Full-Floor 2br/2bath in the Heart of SoHo,10367443,J,Manhattan,SoHo,40.72149,-73.99815,Entire home/apt,900,3,10,2018-12-30,0.17,1,0 +4195677,Clean private room in safe area near Manhattan,191324,Keith,Queens,Sunnyside,40.74944,-73.91361,Private room,80,2,76,2019-06-24,1.31,2,102 +4196039,Artist's Studio Apartment,21768291,Jo,Brooklyn,Greenpoint,40.72401,-73.94016,Entire home/apt,75,2,0,,,1,0 +4197760,Stylish 1 BedRoom very quiet Upper East Side Apt!,21777274,Kelly,Manhattan,Upper East Side,40.76169,-73.95682,Entire home/apt,92,4,179,2019-06-17,3.14,1,245 +4198391,"Manhattan 1-Bedroom, East Village",7805184,Valeria,Manhattan,East Village,40.72956,-73.98275,Entire home/apt,160,3,0,,,1,0 +4198695,Large and furnished,21782731,Marley,Brooklyn,Midwood,40.62735,-73.95704,Private room,50,7,7,2016-07-31,0.12,1,364 +4199411,Greenwich Village Living!,21787420,Mo,Manhattan,East Village,40.73062,-73.99122,Entire home/apt,350,2,0,,,1,0 +4199782,Park Slope's - Pied à Terre (1-Bedroom Apt),21789707,Alexandre,Brooklyn,South Slope,40.6656,-73.98575,Entire home/apt,135,2,128,2019-04-24,2.23,1,245 +4201905,Sunny 1 Bedroom -Financial District,4738242,Meghna,Manhattan,Financial District,40.70956,-74.01341,Entire home/apt,160,7,3,2015-01-03,0.05,1,0 +4203460,1 Br Near Empire State Building,12419083,Andre,Manhattan,Kips Bay,40.7444,-73.98031,Entire home/apt,270,1,0,,,1,0 +4204083,The White House,21811394,Hazel,Brooklyn,Bedford-Stuyvesant,40.6789,-73.94001,Entire home/apt,129,1,223,2019-06-20,3.91,1,230 +4204302,Prime W. Village location 1 bdrm,17550546,Genevieve,Manhattan,Greenwich Village,40.73293,-73.99782,Entire home/apt,180,1250,2,2014-11-09,0.03,1,365 +4204988,Charming Soho One Bedroom + Loft,1162642,Emily,Manhattan,NoHo,40.72577,-73.99337,Entire home/apt,350,2,0,,,2,0 +4205232,Private Room in Brooklyn,6468894,Cherng-Mao,Brooklyn,Williamsburg,40.71564,-73.95107,Private room,75,1,10,2016-04-19,0.17,1,0 +4205816,Spacious South Slope apartment,20312973,Diana,Brooklyn,Sunset Park,40.66423,-73.99565,Entire home/apt,119,5,6,2015-12-27,0.11,1,0 +4206034,Clean and Huge Studio in Safe Area,18382740,Takao & Aiko,Staten Island,Tompkinsville,40.63481,-74.09591,Entire home/apt,99,7,35,2019-05-30,0.61,1,326 +4206087,Spacious Artist's Studio,2423107,Brad,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.95965,Entire home/apt,120,1,4,2015-05-03,0.07,1,0 +4208547,Sweet Luxe Bed w/Private Backyard,17462748,Steven,Brooklyn,Crown Heights,40.67417,-73.94028,Private room,73,5,102,2019-07-06,1.88,5,147 +4209106,Bright Private Apartment w/ Manhattan Views,4218058,Jessica,Brooklyn,Fort Greene,40.68526,-73.97154,Entire home/apt,500,7,11,2018-07-31,0.20,2,173 +4209595,"",20700823,Jesse,Manhattan,Greenwich Village,40.73473,-73.99244,Entire home/apt,225,1,1,2015-01-01,0.02,1,0 +4211276,"Beautiful, Spacious Brooklyn Home ",21064917,Alissa,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95198,Entire home/apt,275,3,3,2015-01-01,0.05,1,0 +4211510,Simple Astoria Room 20minToManhattan,1172202,Funda,Queens,Ditmars Steinway,40.76989,-73.90735,Private room,50,1,127,2019-06-20,2.25,5,52 +4215595,LowerEastSide apt share shortterm 3,7549,Ben,Manhattan,Lower East Side,40.71329,-73.99047,Shared room,40,1,88,2019-05-19,1.53,4,197 +4216183,Cozy and Vibey Apt in Williamsburg,14565233,Gabriela,Brooklyn,Williamsburg,40.71543,-73.94159,Entire home/apt,115,2,3,2015-01-04,0.05,1,0 +4216435,Cozy hideaway,1361993,Daniel,Bronx,Kingsbridge,40.88399,-73.89502,Entire home/apt,110,2,0,,,1,0 +4216745,Sunlit Private Room / Spacious Pre-War Apartment,21881605,Julie,Brooklyn,Crown Heights,40.67658,-73.9444,Private room,100,1,0,,,2,83 +4216774,Stay in the heart of Williamsburg!,15243531,Amanda,Brooklyn,Williamsburg,40.71722,-73.95862,Entire home/apt,150,2,4,2015-11-16,0.07,1,0 +4216813,Penthouse w/Terrace Williamsburg,9904977,Matt,Brooklyn,Greenpoint,40.72309,-73.93767,Entire home/apt,200,3,95,2019-06-26,1.65,1,358 +4217268,1 Bedroom Apartment in Washington Heights - Summer,21886798,Robert,Manhattan,Washington Heights,40.84261,-73.93771,Entire home/apt,75,7,1,2018-08-12,0.09,1,0 +4217758,Beautiful Apartment in Bushwick/Ridgewood,10618980,Lumin And Hendrik,Queens,Ridgewood,40.70729,-73.91697,Entire home/apt,98,2,157,2019-07-05,2.73,1,15 +4218034,Urban Jungle Garden Duplex,6841194,Eric,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91971,Entire home/apt,199,2,222,2019-07-04,3.92,2,238 +4218067,Central One Bedroom Manhattan Apt,20448670,Crystal,Manhattan,Harlem,40.81422,-73.94844,Entire home/apt,109,2,11,2016-10-03,0.19,1,0 +4218098,"Sunny, small apartment near Central Park-Columbia",21892444,Francesca,Manhattan,Harlem,40.80653,-73.95194,Entire home/apt,110,4,26,2019-06-24,0.45,1,14 +4218129,Special OFFER on Airbnb NYC Room!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94786,Private room,59,1,350,2019-06-24,6.05,4,328 +4219851,"Bushwick Brooklyn NYC Apt, with LG kitchen & yard!",21902316,Amy,Brooklyn,Bushwick,40.70071,-73.92913,Entire home/apt,95,2,19,2019-05-27,0.44,2,172 +4220151,"Clean/Quiet Apt, Great Location, with washer/dryer",21903562,David,Manhattan,Chelsea,40.74588,-74.00055,Entire home/apt,159,1,202,2019-06-19,3.53,1,234 +4221999,Spacious & Bright: 1 BR Midtown!,20335235,Stephen,Manhattan,Midtown,40.75576,-73.96548,Entire home/apt,225,1,10,2018-08-22,0.18,1,0 +4224091,Brooklyn - Boerum Hill Beauty,21921207,Nick,Brooklyn,Boerum Hill,40.68449,-73.98524,Entire home/apt,195,2,116,2019-07-03,2.02,1,260 +4225569,Lovely Astoria Studio-close to NYC!,21929547,Orinda,Queens,Astoria,40.76273,-73.90579,Entire home/apt,96,1,196,2019-07-07,3.44,1,316 +4225745,Cute Studio in Trendy Neighborhood,21930475,Whitney,Brooklyn,Clinton Hill,40.68275,-73.96542,Entire home/apt,73,2,7,2018-08-13,0.13,1,0 +4226098,W. 80's Central Park 3 Blocks Walk,21930989,Mark,Manhattan,Upper West Side,40.78883,-73.97616,Private room,88,1,319,2019-06-25,5.60,2,251 +4226269,Private 1 bedroom in Williamsburg,20112613,Simone,Brooklyn,Williamsburg,40.70013,-73.95165,Entire home/apt,90,2,3,2016-05-24,0.05,1,0 +4226535,Bright Top Floor Apartment In The Heart Of BK,14543419,Juli,Brooklyn,Crown Heights,40.6721,-73.95372,Entire home/apt,99,5,16,2018-12-06,0.28,1,0 +4227018,Amazing View in East Williamsburg ,21937306,William,Brooklyn,Williamsburg,40.71752,-73.94187,Shared room,150,1,0,,,1,0 +4227141,Cozy Bedroom,21938126,Reenie,Brooklyn,Bedford-Stuyvesant,40.68724,-73.94218,Private room,35,2,11,2019-06-02,0.81,2,11 +4227161,New York I Love You 7 Bedrooms,20318233,Nirit (Nina),Brooklyn,Bedford-Stuyvesant,40.68542,-73.95184,Entire home/apt,1050,3,121,2019-06-10,2.19,1,327 +4227207,Park Slope perfectly renovated 1BR+,21938678,Christophe,Brooklyn,South Slope,40.66752,-73.98892,Entire home/apt,175,2,76,2019-07-01,1.33,1,308 +4227499,Cozy Home w/Private Garden&Hot Tub!,2811458,Brandon,Manhattan,Chelsea,40.74724,-74.00355,Entire home/apt,395,4,73,2018-01-03,1.27,1,2 +4227554,"Big 2BR, just minutes to Manhattan!",21941065,David,Queens,Woodside,40.7426,-73.90706,Entire home/apt,195,3,124,2019-06-26,2.20,1,305 +4232255,Super Clean Newly Furnished in Prime Bay Ridge,21962039,Beatriz,Brooklyn,Bay Ridge,40.62605,-74.03014,Private room,49,10,7,2019-03-05,0.14,1,281 +4232356,Studio Apartment ,9368118,Peter,Manhattan,Upper East Side,40.77065,-73.95163,Entire home/apt,150,1,0,,,1,0 +4232865,Beautiful Oasis,21964818,Anita,Manhattan,Upper West Side,40.78278,-73.97437,Entire home/apt,250,1,1,2015-11-01,0.02,1,0 +4233025,Huge Loft in Brooklyn 15 mins from Manhattan,651771,Cristina,Brooklyn,Williamsburg,40.7068,-73.93772,Entire home/apt,150,4,17,2019-06-08,0.30,1,170 +4233705,looking for someone to stay 12days,11243583,Joseph,Manhattan,Upper West Side,40.77715,-73.98235,Entire home/apt,260,1,0,,,1,0 +4235620,Elegant furnished 1BR apartment,21979970,Louise & Thomas,Queens,Flushing,40.73303,-73.79736,Entire home/apt,100,7,9,2019-06-28,0.16,1,268 +4235843,Charming Bedroom Bright and Cozy A2,20559017,Yohan,Manhattan,East Harlem,40.78627,-73.94316,Private room,55,30,4,2018-08-27,0.07,9,339 +4235961,Central 2 Bedroom in Chelsea,16276317,Lee,Manhattan,Chelsea,40.74366,-73.99721,Entire home/apt,275,3,1,2016-07-07,0.03,1,0 +4236107,nice apt in west village,14729523,Zherui,Manhattan,West Village,40.73408,-74.0057,Private room,110,1,0,,,1,0 +4236725,"Spacious, elegant home in Brooklyn",3650005,Rae,Brooklyn,Clinton Hill,40.69191,-73.96624,Entire home/apt,150,3,0,,,1,0 +4240861,Small Private Studio!,22005943,Tameisha,Brooklyn,Bushwick,40.69108,-73.91443,Private room,80,2,129,2019-06-16,2.24,1,346 +4241028,Private Studio Apartment ,22006854,Kishorie,Queens,Jamaica,40.6852,-73.7962,Entire home/apt,89,1,352,2019-06-16,6.10,1,359 +4241486,Floor Through East Village Lux Apt,22009089,Lorcan,Manhattan,East Village,40.72685,-73.98638,Entire home/apt,280,2,92,2019-07-04,1.59,1,173 +4243533,Private Bedroom in Large Apartment,8732038,Lorna,Queens,Woodside,40.74808,-73.90404,Private room,100,1,0,,,1,0 +4244174,Quiet room in Greenpoint,21062282,Madison,Brooklyn,Greenpoint,40.73235,-73.95106,Private room,80,2,0,,,1,0 +4244242,Best Bedroom in Bedstuy/Bushwick. Ensuite bathroom,22023014,BrooklynSleeps,Brooklyn,Bedford-Stuyvesant,40.69496,-73.93949,Private room,70,1,110,2019-06-23,1.96,1,323 +4244476,Sunny and Funky Greenpoint Room,782008,Lori,Brooklyn,Greenpoint,40.73093,-73.95332,Private room,75,1,1,2015-07-10,0.02,1,0 +4244528,Williamsburg Beauty,4162754,Angel,Brooklyn,Williamsburg,40.71295,-73.9623,Private room,80,1,52,2019-05-27,1.12,1,297 +4244576,Very clean/comfortable shared room,21977919,Nathaniel,Manhattan,Washington Heights,40.8544,-73.93091,Shared room,41,1,1,2015-06-05,0.02,1,0 +4247883,Sunny & quiet 2BR in great location,22010885,Anja,Manhattan,West Village,40.73545,-74.00097,Entire home/apt,195,4,1,2014-12-27,0.02,1,0 +4248788,W70s Lg. Studio with outdoor space,22047286,Chloe,Manhattan,Upper West Side,40.77881,-73.97726,Entire home/apt,250,2,5,2015-11-27,0.11,1,0 +4249131,BEST LOCATION in MANHATTAN!,12534414,Gina,Manhattan,East Village,40.73175,-73.98756,Entire home/apt,96,1,198,2019-06-21,3.47,1,169 +4249342,Perfect Private Room in Luxury Bldg w/Gym/Rooftop,2495483,Andy,Manhattan,Financial District,40.70948,-74.00654,Private room,98,7,23,2019-06-01,0.55,1,116 +4250746,Newly-Renovated 2BR/1BTH Garden Apt,22057975,Kevin,Brooklyn,Bushwick,40.69271,-73.92535,Entire home/apt,140,4,120,2019-06-10,2.09,1,100 +4252172,Williamsburg Penthouse w/ Balcony,13949526,Fran,Brooklyn,Williamsburg,40.70028,-73.95439,Private room,99,1,0,,,1,0 +4256091,Charming West Village Apartment ,1542713,Brandon,Manhattan,West Village,40.73539,-74.00818,Entire home/apt,175,2,105,2019-05-04,1.88,1,276 +4257572,Charming Studio in the Heart of NYC,19644682,Janet,Manhattan,Upper West Side,40.78245,-73.98163,Entire home/apt,120,6,5,2016-04-21,0.09,1,0 +4257889,Large Room@ColumbiaUniversity/15min toTime Square,22096807,Stephenie,Manhattan,Morningside Heights,40.8049,-73.96558,Private room,89,1,46,2019-07-05,1.33,1,363 +4258443,Private bedroom in Bushwick,20408723,Andrea,Brooklyn,Bushwick,40.69863,-73.91235,Private room,90,3,0,,,1,0 +4258867,Charming Brownstone Apt Fort Greene,1663994,Hellen,Brooklyn,Fort Greene,40.68796,-73.97735,Entire home/apt,178,3,11,2019-07-02,0.24,1,32 +4259427,Appartement en duplex de 3 chambres,21833312,Solange Et Michel,Brooklyn,Crown Heights,40.67027,-73.94033,Entire home/apt,210,6,27,2019-05-02,0.47,1,302 +4260964,"Charming, private 1BR garden apt",16212001,Erin,Manhattan,Harlem,40.81774,-73.94595,Entire home/apt,150,4,82,2019-05-22,1.53,1,46 +4261214,Cozy place in Uptown Manhattan,22022473,Gita,Manhattan,Harlem,40.80936,-73.94454,Entire home/apt,149,2,82,2019-06-05,1.43,1,215 +4261951,Beautiful 1 Bedroom in Midtown West,8533891,Lev,Manhattan,Hell's Kitchen,40.76443,-73.99184,Entire home/apt,225,3,2,2015-01-03,0.03,1,0 +4262120,Columbus Circle and Park Views,6914968,Lisa,Manhattan,Upper West Side,40.7681,-73.98377,Entire home/apt,2695,1,0,,,1,0 +4262707,"Upscale, JFK/Beach, modern 1BR apt.",22124628,Aj,Queens,Howard Beach,40.65443,-73.84605,Entire home/apt,63,30,2,2014-10-11,0.03,1,362 +4263488,Columbus Circle 2br,7651028,Jesse,Manhattan,Hell's Kitchen,40.76842,-73.98589,Entire home/apt,150,1,0,,,1,0 +4263624,LOVELY GARDEN APT FOR 2 TO 4,22131209,Gregory,Brooklyn,Crown Heights,40.67566,-73.93944,Entire home/apt,106,3,15,2019-04-22,0.26,1,0 +4263802,Fort Greene - Parlor One Bed,11189753,Sj,Brooklyn,Fort Greene,40.68562,-73.9693,Entire home/apt,165,10,36,2019-06-25,0.63,4,328 +4263880,Nice room available in modern Apt.,3609048,Ken,Brooklyn,Crown Heights,40.67009,-73.9329,Private room,75,2,25,2016-10-09,0.43,3,365 +4264049,Location Little Marcela,3250450,Petya,Queens,Astoria,40.76496,-73.91169,Private room,39,31,5,2018-01-26,0.10,18,310 +4264127,Location Lucy ( only female ),3250450,Petya,Queens,Astoria,40.75896,-73.9153,Private room,39,30,13,2018-09-09,0.26,18,341 +4265471,Ladies Shared Dorm Room (Top Bunk),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.68676,-73.95801,Shared room,30,2,13,2019-07-01,0.37,3,339 +4267133,Large private room in huge LES Apt,6793885,Nick,Manhattan,Lower East Side,40.72156,-73.98712,Private room,70,1,2,2015-06-10,0.03,1,0 +4268286,Cozy brownstone bed & bath; pvt.ent,22158091,Marjorie,Manhattan,East Harlem,40.79608,-73.93819,Private room,100,3,140,2019-07-06,2.45,1,66 +4270499,Cozy One Bedroom Apt - Astoria,22171095,George & Diana,Queens,Astoria,40.76369,-73.92291,Entire home/apt,125,2,112,2018-06-18,1.94,2,0 +4270683,Very nice studio 15 mins to the heart of Manhattan,5835210,Daniela,Queens,Astoria,40.76386,-73.91002,Entire home/apt,110,3,3,2019-01-07,0.05,1,342 +4271059,Huge 2.5 bdrm in North Brooklyn!,208565,Maria,Brooklyn,Greenpoint,40.73527,-73.95398,Entire home/apt,145,2,7,2016-08-16,0.13,2,0 +4271119,Private bedroom in Hell's Kitchen,15638520,Joseph & Hector,Manhattan,Upper West Side,40.76845,-73.9832,Private room,112,3,126,2019-07-01,2.92,1,230 +4271877,New Private Bathroom Master Bedroom,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.6869,-73.92254,Private room,69,1,121,2019-06-22,2.68,3,286 +4273931,UPPER EAST SIDE DOORMAN BUILDING,22188911,Alessio,Manhattan,Upper East Side,40.76751,-73.96309,Entire home/apt,300,4,57,2016-11-28,1.08,1,0 +4274443,Wyndham 45 Midtown NYC,22131245,Roberta,Manhattan,Midtown,40.75195,-73.97191,Private room,260,2,1,2016-05-17,0.03,1,177 +4274462,Spacious and cosy private room.,22189723,Diego,Queens,Ridgewood,40.70439,-73.91111,Private room,49,2,37,2019-05-28,0.73,2,298 +4274589,Modern XL Tribeca apt with terrace ,16666294,Lp,Manhattan,Tribeca,40.71743,-74.00623,Entire home/apt,215,2,23,2017-04-12,0.40,1,187 +4274595,Garden Oasis Apartment - 2 bedroom,22088164,Julia,Manhattan,East Harlem,40.80751,-73.94097,Entire home/apt,200,3,162,2019-06-15,2.84,1,208 +4275729,Two room suite for rent in Bushwick,22198017,Ezra,Brooklyn,Bushwick,40.69341,-73.92266,Entire home/apt,100,15,0,,,1,0 +4276532,Harlem Getaway Jazz Mansion,9854191,Joyce,Manhattan,Harlem,40.80469,-73.94594,Entire home/apt,1000,3,38,2019-06-09,0.72,1,270 +4276618,"Great location, great value",1405217,James,Manhattan,Chelsea,40.75238,-73.9945,Entire home/apt,120,3,18,2018-01-03,0.31,1,0 +4276762,5Bedroom Manhattan townhome triplex,2807798,Sean,Manhattan,Harlem,40.83048,-73.9437,Entire home/apt,310,1,64,2019-07-07,1.32,2,7 +4277614,Private Room in a Spacious & Bright Apartment,14279331,James,Brooklyn,Gowanus,40.67044,-73.99157,Private room,70,4,91,2018-12-29,3.64,1,0 +4277724,"Bright, Spacious Wburg APT w/ VIEW!",6894447,Andrew,Brooklyn,Williamsburg,40.71484,-73.96742,Entire home/apt,195,2,57,2019-06-24,0.99,1,15 +4277980,The Jewel of Crown Heights- Franklin Ave {NEW},22209733,SooKi,Brooklyn,Crown Heights,40.67484,-73.95751,Entire home/apt,110,2,32,2019-06-13,0.56,1,264 +4278084,Midtown NYC Studio Apartment 4E,17770287,Nina,Manhattan,Midtown,40.75062,-73.98247,Entire home/apt,75,30,13,2019-01-17,0.23,14,167 +4278389,M1 Twin couch bed sleeps 1 guest,295128,Carol Gloria,Bronx,Clason Point,40.81231,-73.85535,Shared room,45,1,7,2019-07-01,0.14,7,365 +4278568,The Lower East Side Experience,1143151,Mila,Manhattan,Lower East Side,40.72184,-73.98755,Entire home/apt,165,3,23,2019-05-27,0.41,1,0 +4279260,Spacious Scandi-inspired apt in private house,22216726,Linda,Queens,Ridgewood,40.70463,-73.90132,Entire home/apt,150,2,77,2019-06-09,1.50,1,24 +4279323,"Cozy/spacious 3bd, room for rent",21140491,Ariel,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.9484,Private room,80,1,2,2014-11-09,0.03,1,0 +4279550,Pure Serenity 1BR in the Lower East Side,22218694,Lea,Manhattan,Lower East Side,40.71912,-73.9863,Entire home/apt,180,2,122,2019-07-01,2.15,2,362 +4280053,Clean Room by Metro/Subway -15mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68206,-73.95441,Private room,80,2,100,2019-06-27,1.73,3,365 +4280118,"Lovely, light-filled Bushwick flat",1990602,Jessica,Brooklyn,Bushwick,40.70741,-73.92239,Private room,60,3,2,2016-06-22,0.04,1,0 +4281241,Can't Beat this Central Location!,22227178,Daniel,Manhattan,Greenwich Village,40.73341,-73.99489,Entire home/apt,149,1,26,2016-07-31,0.45,1,0 +4282178,A Superhost SALE! DELUXE Room!,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69724,-73.94914,Private room,53,1,351,2019-06-24,6.09,4,0 +4282998,Spacious 1 BR & terrace on 19th floor viewing NYC,9471525,Chris,Manhattan,Kips Bay,40.74092,-73.97817,Entire home/apt,200,7,9,2019-01-05,0.16,1,291 +4284031,BRIGHT BEAUTIFUL CHELSEA APT,4532548,Tess,Manhattan,Chelsea,40.74305,-73.99733,Entire home/apt,160,2,79,2019-06-06,1.38,1,108 +4284158,Homey East Village Private Bedroom ,22240717,Steven,Manhattan,East Village,40.72833,-73.98917,Private room,199,1,0,,,1,0 +4285876,LES/Chinatown One Bedroom apt (all to yourself),22248783,Xiao,Manhattan,Lower East Side,40.71281,-73.99174,Entire home/apt,140,1,16,2019-04-06,0.28,1,0 +4286196,Two bedroom in Prime East Village,6280254,Jc,Manhattan,East Village,40.73045,-73.98392,Entire home/apt,199,4,8,2018-12-14,0.19,2,232 +4286662,1 Bedroom in Greenwich Village!,22253568,Brian,Manhattan,Greenwich Village,40.73032,-73.99976,Entire home/apt,190,1,43,2019-07-01,0.75,1,3 +4287589,"LG GARDEN Apt ON Sunset Park, on41ST near 6th Ave",15715046,Katie,Brooklyn,Sunset Park,40.65031,-74.00239,Entire home/apt,125,2,51,2019-07-01,0.89,1,351 +4288276,"New Apt near Central Park, Broadway, Museums",3750547,Angela,Manhattan,Upper East Side,40.76051,-73.96083,Entire home/apt,145,3,62,2019-05-28,1.10,1,50 +4288361,Cozy 1BD on historic Stuyvesant St.,1994261,Anna,Manhattan,East Village,40.73046,-73.98808,Entire home/apt,150,3,1,2014-11-14,0.02,1,0 +4291200,"Comfy Rm, Hallway Bath, Forest Hills",19597910,Ruth,Queens,Forest Hills,40.7269,-73.83952,Private room,95,2,42,2019-05-09,0.74,3,334 +4291654,Private room in Bushwick Loft,22280299,Brad,Brooklyn,Williamsburg,40.70407,-73.93562,Private room,100,1,0,,,1,0 +4293935,Beautiful brownstone room,1141935,Ana,Brooklyn,Crown Heights,40.67391,-73.9472,Private room,99,1,74,2019-06-09,1.34,3,290 +4294546,Bright Apt Williamsburg-Greenpoint,13402436,Manuela,Brooklyn,Greenpoint,40.7223,-73.94938,Entire home/apt,130,1,43,2019-05-05,0.84,1,0 +4294640,"Bedroom, balcony and best of NY.",21499988,Joey,Brooklyn,Williamsburg,40.71613,-73.95336,Private room,56,1,1,2014-10-26,0.02,1,0 +4294969,Welcome to my home,4473916,Ross,Manhattan,Greenwich Village,40.73175,-73.99518,Entire home/apt,450,1,1,2015-01-03,0.02,1,0 +4295108,Large Sunny Master Private bedroom,19841476,Rasheeda,Manhattan,East Harlem,40.80161,-73.94277,Private room,75,1,7,2016-12-08,0.20,1,0 +4295542,Private 1 Bdrm Suite in Historic Brownstone,19174715,Judith,Brooklyn,Brooklyn Heights,40.69276,-73.9963,Private room,240,2,45,2019-05-22,0.79,1,348 +4295603,Beautiful Loft in flawless factory conversion,7503643,Vida,Brooklyn,Greenpoint,40.7255,-73.9409,Entire home/apt,129,30,1,2015-03-27,0.02,52,300 +4295733,Comfortable Room w/access to full apartment,10981052,Talisa,Brooklyn,East Flatbush,40.64768,-73.95138,Private room,45,1,5,2018-07-27,0.27,1,0 +4296126,POSH High Rise near Times Square,22299389,Lindsay Alexa,Manhattan,Hell's Kitchen,40.7555,-73.99369,Entire home/apt,259,4,25,2019-06-17,0.44,1,255 +4296291,"100 st! cozy, clean, private UES E Harlem",22303517,Danielle,Manhattan,East Harlem,40.78907,-73.94877,Entire home/apt,75,1,107,2019-06-27,1.91,1,116 +4296710,NICE SPACE IN NYC ,1260921,Victor,Bronx,Kingsbridge,40.86809,-73.90201,Private room,37,2,63,2019-06-24,1.15,2,305 +4296956,Sharbell’s vacation,22307859,Sharon,Brooklyn,Canarsie,40.63621,-73.89407,Entire home/apt,210,3,11,2019-07-07,2.75,5,83 +4297952,Awesome Chelsea 1 bedroom,22305520,James,Manhattan,Chelsea,40.7492,-73.99847,Entire home/apt,199,2,194,2019-07-06,3.37,2,178 +4299536,10 Minutes to Manhattan,17164818,Victoria,Brooklyn,Clinton Hill,40.68566,-73.96022,Entire home/apt,189,8,33,2019-06-22,0.58,1,271 +4302293,Private Room with 2nd Full Bath in Modern Art Apt,4600692,J.,Queens,Long Island City,40.74742,-73.94647,Private room,58,1,33,2019-06-06,1.98,1,101 +4303600,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68531,-73.95185,Private room,60,30,44,2019-05-19,0.78,8,99 +4303825,Cute apartment with 2 big bedrooms,3578009,Walther,Queens,Long Island City,40.74853,-73.95068,Entire home/apt,190,1,34,2019-03-10,0.60,2,182 +4305170,Cute ethnic cosy private studio!,5918341,Mona,Brooklyn,Clinton Hill,40.68147,-73.96488,Entire home/apt,139,2,88,2019-06-22,1.53,2,82 +4308612,Holiday special! Best location!,16798055,Ehud,Manhattan,Hell's Kitchen,40.76502,-73.98932,Entire home/apt,125,1,186,2019-06-30,3.28,1,193 +4308633,Wonderful Willi!,22364611,Basil,Brooklyn,Williamsburg,40.71603,-73.9547,Private room,94,2,46,2019-06-03,0.90,1,267 +4308798,Upper East Side 1-Bedroom,16906759,Karen,Manhattan,Upper East Side,40.77254,-73.96193,Entire home/apt,100,2,58,2019-06-11,1.02,1,9 +4308991,Big Room with Private Bathroom,6195809,Dean,Manhattan,East Village,40.72607,-73.98867,Private room,149,364,8,2019-01-07,0.17,1,90 +4309079,Big Sunny Room in Apartment With Views,22367030,Tarek,Manhattan,East Village,40.72603,-73.98897,Private room,128,7,15,2019-04-13,0.26,1,249 +4309648,Ebony & Ivory Close to Manhattan,13063145,Vinneth,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95266,Entire home/apt,160,3,149,2019-06-24,2.61,2,303 +4309757,Beautiful Studio apartment in Prime Park Slope,1918986,Roni,Brooklyn,Park Slope,40.66651,-73.97922,Entire home/apt,160,31,8,2018-10-29,0.17,1,296 +4310501,Spacious Bedroom in East Village,21127377,Orhun,Manhattan,East Village,40.72627,-73.98915,Private room,110,3,64,2019-06-30,1.26,1,14 +4311648,Modern & Sunny w/ Private Terrace,4644513,Liana,Brooklyn,Williamsburg,40.71436,-73.96362,Entire home/apt,285,3,43,2019-05-26,0.75,1,12 +4315934,The Brooklyn Haven,22405856,Val And Taylor,Brooklyn,Bedford-Stuyvesant,40.6792,-73.90937,Entire home/apt,75,10,2,2018-11-02,0.10,1,349 +4318364,Beautiful Loft in Meatpacking,22420381,Ahmad,Manhattan,Chelsea,40.74039,-74.00356,Entire home/apt,650,7,6,2019-07-02,0.13,1,358 +4320934,Central Harlem large beautiful studio,11790239,Mina,Manhattan,Harlem,40.81599,-73.94676,Entire home/apt,133,1,20,2019-05-22,0.36,3,345 +4325244,East Village Comfort & Convenience,2999445,Sindhu,Manhattan,East Village,40.73073,-73.98105,Entire home/apt,149,2,36,2018-06-30,0.79,1,0 +4325284,"Lovely, Clean, Comfy w/River Views!",22459182,Sean,Manhattan,Upper East Side,40.78535,-73.94997,Entire home/apt,210,1,0,,,1,0 +4325329,Charming Brownstone Apt Steps from Central Park!,1537663,Madeline,Manhattan,Upper West Side,40.78667,-73.96924,Entire home/apt,200,2,56,2019-06-28,0.98,1,226 +4329728,Spacious room with view in Chelsea,2657430,Rahul,Manhattan,Chelsea,40.74751,-74.00086,Private room,110,6,20,2018-01-01,0.36,2,0 +4331684,Modern 2-Bed Apt.- Great Location!,22487371,John,Manhattan,Hell's Kitchen,40.75579,-73.99154,Entire home/apt,375,3,13,2018-06-23,0.23,1,0 +4331691,Full apartment - cute & quirky,22490457,Danielle,Manhattan,Lower East Side,40.71845,-73.986,Entire home/apt,95,10,2,2016-11-17,0.04,1,0 +4333204,Harlem cosy renovated unit for two,11790239,Mina,Manhattan,Harlem,40.81618,-73.94517,Entire home/apt,94,1,23,2019-07-03,0.57,3,316 +4334446,"Cozy 1 bdrm Park Slope, Brooklyn,",8659738,Janine,Brooklyn,South Slope,40.6631,-73.98603,Entire home/apt,120,3,118,2019-06-23,2.07,1,266 +4334513,1 bed/bath condo steps from Bedford,2357221,Swati,Brooklyn,Williamsburg,40.71104,-73.95917,Entire home/apt,150,5,1,2015-01-02,0.02,1,0 +4338177,Sleeps 4! Prime Chelsea~large 1BR,2119276,Host,Manhattan,Chelsea,40.73947,-74.00114,Entire home/apt,160,30,6,2018-10-04,0.12,39,267 +4338541,Beautiful 1BR apt Upper West Side,22410033,Georges,Manhattan,Morningside Heights,40.80801,-73.9582,Entire home/apt,132,2,9,2017-01-04,0.16,1,0 +4338548,Gorgeous Sunny Bohemian Duplex with Garden,910592,Angie And Matthew,Brooklyn,Bedford-Stuyvesant,40.6845,-73.93968,Entire home/apt,102,1,10,2019-01-26,0.18,1,4 +4339188,Fantastic Comfortable Space. Affordable,22526585,Chema,Brooklyn,Bedford-Stuyvesant,40.6933,-73.94976,Entire home/apt,85,1,84,2019-07-01,1.46,1,286 +4339189,"Big, Bright Fort Greene Apartment! ",3341356,Katie,Brooklyn,Fort Greene,40.69172,-73.9703,Entire home/apt,142,6,2,2015-11-28,0.04,1,0 +4339202,"**ASTORIA one private cozy, cute room** Nihongo ok",22527661,Mio,Queens,Astoria,40.76261,-73.91767,Private room,70,3,2,2019-05-23,0.05,1,23 +4339924,"Penthouse Flat, Million-$-View, Best Area!",22530714,Murad,Brooklyn,Bushwick,40.6989,-73.92904,Entire home/apt,200,90,91,2016-10-04,1.59,1,365 +4340609,Gorgeous 2BR XL Loft @ Habitat 101,7503643,Vida,Brooklyn,Greenpoint,40.72603,-73.94147,Entire home/apt,199,30,5,2018-03-24,0.09,52,339 +4341158,"Large, Cozy & Comfortable Apartment",22448247,Leatha,Brooklyn,East Flatbush,40.65337,-73.91229,Entire home/apt,100,3,62,2019-06-24,1.19,1,343 +4342895,The Perfect 1brm Apartment - Sunny & Spacious!,3800365,Mei-Ling,Brooklyn,Williamsburg,40.71874,-73.94055,Entire home/apt,123,3,21,2017-11-22,0.61,1,0 +4342924,Large Sunlight House,356690,LaToya,Brooklyn,Flatlands,40.62677,-73.9326,Entire home/apt,175,2,17,2018-08-27,0.49,1,0 +4343011,City Studio in the Upper East Side,3822369,Maria,Manhattan,Upper East Side,40.7681,-73.96018,Private room,100,4,14,2016-07-06,0.25,1,0 +4343312,Room For Rent,22548091,Cynthia,Manhattan,Harlem,40.80733,-73.95642,Private room,57,7,3,2019-07-06,0.22,2,222 +4343401,Room #1 Private Room,22384027,Shahana,Brooklyn,Crown Heights,40.67122,-73.91813,Private room,39,1,153,2019-06-14,2.66,10,178 +4343956,Large Spacious Room For Rent,22548091,Cynthia,Manhattan,Morningside Heights,40.8067,-73.95799,Private room,107,6,12,2019-01-03,0.47,2,251 +4347579,NY Duplex Apartment in Flatiron,22568643,Jose,Manhattan,Flatiron District,40.73956,-73.98774,Entire home/apt,2000,7,0,,,1,0 +4349695,Rustic Chic Private Living Room,22578720,Derek,Brooklyn,Flatbush,40.64507,-73.95933,Private room,69,1,33,2017-10-30,0.59,1,0 +4350120,Spacious 3-room apt. in prime area of Brooklyn.,21457707,Peter,Brooklyn,Greenpoint,40.72623,-73.94298,Entire home/apt,137,5,26,2019-05-06,1.16,1,344 +4350406,Studio apartment in heart East Village,1717520,Andrew,Manhattan,East Village,40.7239,-73.98312,Entire home/apt,150,5,0,,,2,0 +4350464,"LargeApt 1 BLOCK frm A,C,B,D,2,3",6697886,Mandy,Manhattan,Harlem,40.81588,-73.94591,Private room,65,3,1,2015-10-21,0.02,2,0 +4350495,Private Room for Rent,14194388,Michael,Manhattan,East Harlem,40.79008,-73.94766,Private room,66,4,1,2015-11-27,0.02,1,0 +4350952,Brooklyn Brownstone Clinton hill,5982086,Joshua,Brooklyn,Clinton Hill,40.68485,-73.9643,Private room,77,14,9,2017-11-24,0.16,1,0 +4351563,Rooftop Apt in Prospect Heights,16504161,Gung,Brooklyn,Prospect Heights,40.67757,-73.96412,Entire home/apt,110,3,8,2018-12-30,0.14,1,0 +4352537, Beautiful Room In Gramercy!!!,22595345,Abel,Manhattan,Gramercy,40.73541,-73.98061,Private room,64,26,47,2019-02-04,0.82,1,331 +4354764,A private humble abode for you,16572955,Sandra,Brooklyn,Canarsie,40.63969,-73.89548,Entire home/apt,90,2,112,2019-06-16,1.96,1,349 +4354901,Williamsburg Apt Flexible for December,14730409,Ken,Brooklyn,Williamsburg,40.70941,-73.94556,Private room,50,5,0,,,1,0 +4356396,Cozy Studio in a great neighborhood (Upper East),20539345,Husain,Manhattan,Upper East Side,40.7786,-73.95104,Entire home/apt,146,5,21,2019-03-24,1.01,1,0 +4357134,Beautiful NY Gem,7809661,Mamie,Queens,Ditmars Steinway,40.77172,-73.91769,Entire home/apt,200,1,0,,,1,0 +4357892,New!!! 4 BR/2 Bth in a private house.,22727798,Roman,Queens,Bay Terrace,40.77774,-73.78376,Entire home/apt,189,3,85,2019-06-15,1.88,1,330 +4358291,Stunning Brooklyn Brownstone,22622958,Wayne,Brooklyn,Park Slope,40.67761,-73.97667,Entire home/apt,985,2,20,2019-07-05,1.60,2,19 +4359219,Eagle-eye view of New York,20599015,Farrell,Brooklyn,Bedford-Stuyvesant,40.69103,-73.95441,Entire home/apt,285,2,37,2016-05-09,0.65,1,0 +4359718,Charming 2BD flt in Trendy Bushwick,841179,Treasure,Brooklyn,Bushwick,40.69584,-73.90794,Entire home/apt,140,3,122,2019-06-19,2.21,1,251 +4359756,"MANHATTANs BEST, 12minutes from TIMES SQUARE",2129777,Aj,Queens,Long Island City,40.75259,-73.94104,Private room,97,2,14,2019-04-20,0.55,2,90 +4359921,Bright Loft Style place in the best of ASTORIA,22240236,Tony & Lea,Queens,Astoria,40.7672,-73.91198,Entire home/apt,180,2,7,2018-12-19,0.31,1,90 +4362474,Adorable East Village 1 Bedroom,13481367,Anna,Manhattan,East Village,40.72841,-73.98231,Entire home/apt,199,2,10,2016-05-10,0.18,1,0 +4362570,Welcoming Park Slope Garden Apt.,19735589,Felicia,Brooklyn,Park Slope,40.67683,-73.97617,Entire home/apt,220,2,83,2019-04-29,1.48,1,253 +4363228,Magnificent Loft in East Village,3905383,Gillian,Manhattan,Lower East Side,40.71847,-73.98246,Entire home/apt,180,3,5,2018-10-09,0.13,1,226 +4364789,"Sunny Williamsburg, Brooklyn Studio",22656394,Julie,Brooklyn,Williamsburg,40.70874,-73.95439,Entire home/apt,88,14,5,2018-05-13,0.09,1,0 +4364924,Pre-War Gem in the heart of the UWS,22657141,Phin,Manhattan,Upper West Side,40.77859,-73.9816,Entire home/apt,350,4,0,,,1,0 +4365276,Entire 2BR APT (not a railroad),3081990,Amanda,Brooklyn,Williamsburg,40.70698,-73.95406,Entire home/apt,170,1,141,2019-06-22,3.05,1,28 +4365328,"Clean, cozy bedroom in sunny East Village/LES apt",2814004,Jasmine,Manhattan,East Village,40.72325,-73.98336,Private room,120,14,14,2015-10-25,0.24,2,0 +4365491,Cozy room in East Village,2814004,Jasmine,Manhattan,East Village,40.72242,-73.98262,Private room,105,2,9,2015-10-18,0.16,2,0 +4365756,Brownstone Parlor Floor Suite by Superhost!,22661286,Steef,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93678,Entire home/apt,110,2,192,2019-07-02,3.35,1,132 +4365765,Beautiful spacious bedroom,22661810,Marie,Brooklyn,East Flatbush,40.63213,-73.94598,Private room,55,4,10,2019-01-01,0.20,2,100 +4365833,"Lux Baby Friendly Apt, Williamsburg, Brooklyn",208410,Mauricio,Brooklyn,Williamsburg,40.71759,-73.95407,Entire home/apt,150,5,7,2019-02-18,0.12,1,0 +4366049,Sleeps 6 by Metro/Subway - 15 mns to Manhattan,20243795,Tony,Brooklyn,Bedford-Stuyvesant,40.68204,-73.95642,Entire home/apt,180,3,50,2018-10-28,0.97,3,365 +4366115,Bright duplex apartment,14400653,Belinda,Brooklyn,Greenpoint,40.72668,-73.94728,Entire home/apt,110,2,4,2017-01-04,0.12,1,0 +4369737,"Bright 1 Bedroom, Perfect Location!",15154,Gloria,Manhattan,Upper West Side,40.78,-73.97793,Entire home/apt,160,3,5,2016-03-29,0.09,1,0 +4370230,"",22686810,Michaël,Manhattan,Nolita,40.72046,-73.9955,Entire home/apt,215,7,5,2016-01-02,0.09,1,0 +4375146,Beautiful & spacious apartment,22715031,Fernando,Queens,Astoria,40.76575,-73.92092,Private room,75,5,1,2014-11-10,0.02,1,0 +4375375,"Artsy 2 Bedroom Apt. in Harlem, NY",22716230,M. Johanne,Manhattan,East Harlem,40.80006,-73.9459,Entire home/apt,200,5,0,,,1,0 +4377337,Beautiful Railroad Style Apartment!,18893494,Leonella,Manhattan,East Harlem,40.79872,-73.9411,Entire home/apt,120,3,6,2019-06-18,0.96,1,279 +4377929,Spacious 1Br in East Village,7245580,David,Manhattan,East Village,40.72627,-73.98303,Entire home/apt,198,4,180,2019-06-18,3.22,1,269 +4378816,"Room in Bushwick Brooklyn NYC, LG KITCHEN & YARD",21902316,Amy,Brooklyn,Bushwick,40.70253,-73.92898,Private room,60,2,63,2019-06-17,1.68,2,352 +4378951,Child-friendly 2BR w/ Yard access and Free Parking,510577,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68578,-73.93965,Entire home/apt,170,3,207,2019-06-22,3.76,1,151 +4379145,specious 1bd apt on Saint Marks Pl,16598048,Yervand,Manhattan,East Village,40.72902,-73.98814,Entire home/apt,248,6,1,2014-11-02,0.02,1,0 +4379271,Spacious Bklyn Apt Near Manhattan,22738480,Aaron,Brooklyn,Cobble Hill,40.68874,-73.99855,Private room,100,8,1,2015-01-05,0.02,1,0 +4379307,"West Village Apt with patio, Steps from subway!",11742895,Jonathan,Manhattan,West Village,40.73858,-74.00145,Entire home/apt,180,2,1,2016-06-17,0.03,1,0 +4383734,Sunny room with private entrance,18674671,Lindsay,Brooklyn,Bushwick,40.69435,-73.91852,Private room,60,2,12,2016-12-19,0.21,1,0 +4384181,Livin' La Vida Brooklyn!!!,457976,Bellamy,Brooklyn,Bedford-Stuyvesant,40.69017,-73.93951,Entire home/apt,83,2,88,2019-06-30,4.66,1,165 +4384442,Bedroom in Crown Heights,7010789,Adriana,Brooklyn,Crown Heights,40.67054,-73.95668,Private room,45,2,1,2016-06-29,0.03,1,0 +4384820,N 6th & Bedford PRIME Williamsburg ,22764554,Linda,Brooklyn,Williamsburg,40.71797,-73.95981,Private room,135,1,1,2014-11-04,0.02,1,0 +4385360,Massive 1BR in the Lower East Side,7809712,Eliot,Manhattan,Lower East Side,40.71938,-73.98906,Entire home/apt,275,3,0,,,1,0 +4386513,"2 Bedroom Duplex, INCREDIBLE views! 30day discount",10556597,Dan,Manhattan,East Village,40.72478,-73.97771,Entire home/apt,230,3,12,2019-06-10,0.21,1,4 +4386598,1 Bedroom in Top Lower East Side Address,356933,Jessica,Manhattan,Lower East Side,40.71962,-73.98567,Entire home/apt,180,2,178,2019-07-01,3.11,1,227 +4386718,One bedroom near Central Park West,22502212,Kristen,Manhattan,Upper West Side,40.78749,-73.97087,Entire home/apt,175,21,1,2014-11-15,0.02,1,0 +4387007,Beautiful Beach & Great Space,21802126,Mark,Queens,Belle Harbor,40.57321,-73.85769,Private room,110,2,1,2019-06-23,1,1,325 +4387152,Petit chalet with secret garden,22262958,Kanae,Brooklyn,Williamsburg,40.71142,-73.95535,Entire home/apt,160,3,87,2019-06-19,1.63,1,302 +4387491,"Light Filled Spacious 1BR, with Cat",3597708,Brittan,Brooklyn,Bedford-Stuyvesant,40.68708,-73.9577,Entire home/apt,115,2,9,2015-09-06,0.16,1,0 +4390865,Upper East Side 1 Bedroom Gem,22688555,Marc,Manhattan,Upper East Side,40.77126,-73.95483,Shared room,169,2,3,2016-07-09,0.07,1,0 +4392066,one room bushwick,5605897,Sarah,Brooklyn,Williamsburg,40.70903,-73.9394,Private room,100,1,0,,,1,0 +4392351,MURRAY HILL! your home.. BEAUTIFUL,1475015,Mike,Manhattan,Kips Bay,40.74111,-73.97951,Entire home/apt,87,30,4,2018-08-12,0.09,52,325 +4392596,Great room in a 2 BD apartment,20820856,Waleed,Queens,Ditmars Steinway,40.77431,-73.9114,Private room,75,1,4,2019-05-26,1.85,1,0 +4392996,Heart of Upper West Side 1BR,844096,Joe,Manhattan,Upper West Side,40.78568,-73.97698,Entire home/apt,130,1,10,2016-09-23,0.19,1,0 +4393126,West Village - Charming Studio,22805263,Gena,Manhattan,West Village,40.7322,-74.00423,Entire home/apt,115,30,7,2017-03-08,0.13,1,251 +4393502,Attic Space - 三楼阁楼,21228368,Jessica,Queens,Forest Hills,40.7132,-73.84901,Private room,50,1,1,2015-08-10,0.02,5,183 +4393519,Penthouse for 4th of July Weekend,6032373,Vyacheslav,Manhattan,Hell's Kitchen,40.7659,-73.99543,Entire home/apt,200,2,2,2015-01-02,0.04,1,0 +4393628,Double-deck bed room 别墅二楼卧房,21228368,Jessica,Queens,Forest Hills,40.71233,-73.84848,Private room,55,1,13,2016-12-01,0.23,5,281 +4394687,Upper East Side Studio,10952317,Angela,Manhattan,Upper East Side,40.77626,-73.95246,Entire home/apt,125,1,7,2016-10-03,0.13,1,0 +4396142,Entirely private suite in our townhouse!,1167801,Pascal & Karin,Queens,Long Island City,40.75227,-73.95012,Entire home/apt,160,4,79,2019-06-30,1.38,1,133 +4396299,"Cozy Private Bedroom, Brooklyn NY.",22384027,Shahana,Brooklyn,Brownsville,40.66938,-73.91831,Private room,39,1,158,2019-06-24,2.77,10,32 +4396939,Private Room in Midtown Manhattan,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76049,-73.99569,Private room,89,4,56,2019-06-01,0.98,2,301 +4397455,Quiet 2 bedroom retreat in the heart of Brooklyn,5912357,Gina,Brooklyn,Canarsie,40.63269,-73.90358,Entire home/apt,85,4,60,2019-06-22,1.12,1,247 +4399721,Bedroom in Beautiful Brooklyn Loft,22840018,Emily,Brooklyn,Crown Heights,40.67828,-73.96228,Private room,50,1,4,2019-03-25,0.11,1,0 +4401013,3BR/2BA Duplex - 1min to subway!,2007928,Erin,Brooklyn,Bedford-Stuyvesant,40.67849,-73.91672,Entire home/apt,229,2,195,2019-06-24,3.41,1,254 +4401193,"Private Studio, Columbia University",22205787,Adrien,Manhattan,Morningside Heights,40.80699,-73.95937,Entire home/apt,130,4,4,2015-09-26,0.07,1,0 +4402117,GORGEOUS 2 Bedroom in Queens NYC,22780462,Mark,Queens,Kew Gardens Hills,40.72891,-73.82588,Entire home/apt,149,3,82,2019-06-23,1.55,2,327 +4402805,LRG 2br BKLYN APT CLOSE TO TRAINS AND PARK,22807362,Jenny,Brooklyn,Prospect-Lefferts Gardens,40.66025,-73.9627,Entire home/apt,120,3,3,2018-08-28,0.05,1,16 +4403159,Cute bedroom in Williamsburg,13061093,Priscillia,Brooklyn,Williamsburg,40.70953,-73.95994,Private room,45,1,1,2016-03-16,0.02,1,0 +4403928,Modern Apt Close to Manhattan,2558779,Marina,Queens,Ridgewood,40.70216,-73.90716,Private room,56,3,45,2019-06-15,0.88,2,304 +4403972,Upper east doorman,22860848,Seth,Manhattan,Upper East Side,40.77891,-73.9484,Entire home/apt,295,6,0,,,1,0 +4404544,"Beautiful, bright, quiet room w/ private bathroom",22864208,Rustam,Brooklyn,Bushwick,40.69703,-73.93207,Private room,75,2,53,2019-06-17,1.23,1,340 +4404818,Bountiful Space and Cozy Home,2909990,Daniel,Manhattan,Washington Heights,40.85104,-73.93617,Entire home/apt,110,7,0,,,1,0 +4405156,CHEAP & CONVENIENT,5787701,Christine,Manhattan,East Harlem,40.78802,-73.95026,Entire home/apt,115,4,68,2019-06-25,1.20,1,10 +4405874,Master room super clean in Prospect Park!!!! :),2770375,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95414,Private room,90,4,12,2019-06-10,0.37,1,365 +4407787,"Clean Charming, Walk-In Closet + Garden",22880393,Sara,Manhattan,Lower East Side,40.71287,-73.98685,Private room,109,3,83,2019-06-02,1.57,2,355 +4407790,Retreat Room,16286162,Pat,Bronx,Allerton,40.86682,-73.85812,Private room,49,2,42,2019-06-21,0.74,4,227 +4408381,Apartment Crown Heights Brooklyn NY,263500,Claire,Brooklyn,East Flatbush,40.66428,-73.92911,Entire home/apt,100,1,102,2019-06-16,1.85,2,243 +4409074,Spacious 3BDR Prime Location!,22886115,Kristen,Manhattan,East Village,40.73112,-73.98572,Entire home/apt,295,2,4,2016-08-24,0.09,1,0 +4410626,Spacious neo-country seaside loft,22893493,Nick,Brooklyn,Red Hook,40.68039,-74.01729,Entire home/apt,245,1,50,2019-06-02,0.92,1,19 +4412533,cozy tucked away in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79765,-73.94022,Private room,79,3,56,2019-05-27,1.10,2,90 +4415695,Cozy Room in Classic NY Apt//Lively Midtown Area,10074473,Dominique,Manhattan,Hell's Kitchen,40.76638,-73.98741,Private room,60,1,22,2018-02-10,0.63,1,0 +4416667,"Quiet Brooklyn Hideaway, At the Subway",980118,Alex,Brooklyn,Bedford-Stuyvesant,40.69024,-73.95197,Entire home/apt,125,3,7,2018-07-16,0.12,1,0 +4416970,Soaring Space in Laid-back Brooklyn,22628166,Caroline,Brooklyn,Bushwick,40.69787,-73.93202,Private room,55,1,8,2016-08-20,0.17,1,0 +4417147,New year in New York City,22927481,Howard,Manhattan,Midtown,40.76564,-73.98013,Private room,425,7,1,2015-01-02,0.02,3,0 +4417912,Huge Apartment on Prospect Park,21571748,Chad,Brooklyn,Windsor Terrace,40.65783,-73.97501,Entire home/apt,150,14,1,2016-08-17,0.03,1,0 +4421355,Your own apartment in Brooklyn!,16744487,Estelle,Brooklyn,Bedford-Stuyvesant,40.69367,-73.93981,Entire home/apt,130,5,0,,,1,0 +4421826,Manhattan Studio,22927646,Chad,Manhattan,Upper East Side,40.77371,-73.95007,Entire home/apt,250,1,0,,,1,0 +4422017,"Private Spacious Rm, Prospect Park",22954228,Cassandra,Brooklyn,Flatbush,40.65339,-73.962,Private room,49,3,7,2016-01-06,0.12,2,0 +4422602,East Village Walkup Jam,651770,Mark,Manhattan,East Village,40.72801,-73.98336,Entire home/apt,250,3,0,,,1,0 +4423650,Private Room - Central Park View,7183243,Annette,Manhattan,Upper West Side,40.79913,-73.95932,Private room,97,2,114,2019-06-24,2.00,1,363 +4423782,Large studio in trendy Harlem,22963957,Travis,Manhattan,Harlem,40.80479,-73.9529,Entire home/apt,115,1,8,2016-04-12,0.16,1,0 +4424261,Large 1 BR with backyard on UWS,3447311,Sarah,Manhattan,Upper West Side,40.80188,-73.96808,Entire home/apt,200,2,22,2019-05-21,0.50,1,0 +4424391,Cozy Studio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.78278,-73.9482,Entire home/apt,250,30,4,2018-05-15,0.07,9,311 +4424405,Lovely 2 BR Upper East NYC - 1 month min,15310997,Mor,Manhattan,Upper East Side,40.78368,-73.94942,Entire home/apt,200,30,8,2018-09-05,0.14,9,336 +4424511,"Great location, cozy, near F, G, R!",3641595,Deirdre,Brooklyn,Park Slope,40.67099,-73.98791,Entire home/apt,160,1,323,2019-06-22,5.81,1,211 +4426780,Convenient Harlem studio,22980167,Maria,Manhattan,Harlem,40.81613,-73.93765,Entire home/apt,90,30,20,2019-06-01,0.36,1,249 +4426877,"Sunny 2BR, 2BA duplex",11636894,Gena,Brooklyn,Fort Greene,40.68499,-73.97403,Entire home/apt,239,3,19,2018-12-25,0.33,1,257 +4427442,Large Apt. in NYC w/natural light,22984252,Toby,Manhattan,Washington Heights,40.85083,-73.94093,Entire home/apt,290,4,21,2019-01-03,0.37,1,193 +4428027,True Brooklyn Loft Experience ,10396079,Anissa,Brooklyn,Prospect Heights,40.67734,-73.96814,Entire home/apt,150,6,5,2016-01-01,0.09,1,0 +4428854,Charming Furnished Private Room,1447684,Rosa,Brooklyn,Greenpoint,40.72951,-73.95525,Private room,55,1,75,2019-06-19,1.52,3,173 +4428906,Family Friendly Park Slope House,2119928,Rachael,Brooklyn,South Slope,40.66421,-73.98706,Entire home/apt,380,4,7,2018-08-29,0.12,1,62 +4429337,"Large, stylish & sun-filled 1BDRM loft",1728899,Tanya,Brooklyn,Williamsburg,40.70789,-73.94811,Entire home/apt,120,2,19,2019-07-06,1.82,1,11 +4430645,Brooklyn Townhouse Duplex,819257,Nina,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95225,Entire home/apt,200,7,0,,,1,0 +4430657,Coming soon,22992909,Joshua,Brooklyn,Carroll Gardens,40.68592,-73.99285,Private room,188,2,0,,,1,0 +4430747,Adorable 1Bd Next to Subway in Bushwick - Brooklyn,747934,Lia,Brooklyn,Bedford-Stuyvesant,40.69175,-73.92834,Entire home/apt,103,2,5,2019-01-03,0.09,1,211 +4430808,Studio-Private Entrance /Bath/Kitchen Near JFK,23002099,Sol & Izak,Queens,Jamaica Estates,40.71873,-73.80324,Entire home/apt,64,2,192,2019-06-17,3.47,1,234 +4430819,Prime East Village One Bedroom Apt!,23002143,Amanda,Manhattan,East Village,40.72847,-73.98682,Entire home/apt,195,5,3,2015-08-03,0.05,1,0 +4431247,1st Time/Solo/Duo Travelers!Charming Studio Share!,22382732,Sue,Manhattan,Chelsea,40.74726,-74.00213,Shared room,70,2,126,2019-06-29,2.61,1,309 +4431674,HOME AWAY FROM HOME,21841949,Patwell,Manhattan,Harlem,40.80066,-73.95147,Entire home/apt,150,2,36,2018-11-06,0.78,2,0 +4435766,West Village - Celebrities + LIGHT,23025661,Lee,Manhattan,West Village,40.73191,-74.00679,Entire home/apt,300,3,0,,,1,0 +4436185,Charming Park Slope Studio Sublet,3708965,Nicole,Brooklyn,Sunset Park,40.66063,-73.98894,Entire home/apt,60,1,0,,,1,0 +4436944,COMFORTABLE & COZY-2 STOPS BARCLAY,21841949,Patwell,Brooklyn,Crown Heights,40.66825,-73.95304,Private room,150,7,21,2019-06-10,0.54,2,292 +4437053,Sunlit 1 bedroom in NoLita,23030943,Kristin,Manhattan,Nolita,40.72144,-73.99435,Private room,105,1,102,2019-06-16,1.79,1,362 +4438029,Chelsea High End Apartment,974868,Jackie,Manhattan,Chelsea,40.74635,-73.99604,Entire home/apt,360,3,28,2019-04-22,0.50,1,128 +4438223,Hip 1 bedroom in perfect location,22606202,Gerald,Manhattan,Harlem,40.80743,-73.95663,Private room,165,2,6,2019-01-02,0.12,1,363 +4438459,Gorgeous 1 Bedroom in the heart of NYC: Chelsea,4967319,Jessica,Manhattan,Chelsea,40.73974,-73.99985,Entire home/apt,325,2,19,2016-09-08,0.34,1,0 +4438470,Home away from home East Village ,3289567,Campbell,Manhattan,East Village,40.72607,-73.98045,Private room,105,2,9,2017-11-19,0.19,2,191 +4438931,FURNISHED CHARMING ROOM IN MANHATTA,1405374,Jane,Manhattan,Inwood,40.86626,-73.92543,Private room,57,4,0,,,1,4 +4439602,East Village Bedroom,14612223,Alex,Manhattan,East Village,40.72624,-73.99018,Private room,100,6,10,2019-07-01,0.61,1,200 +4439839,Entire 3BR Private Apt 20min>Manhattan,23044811,Ettrick,Brooklyn,Bedford-Stuyvesant,40.68687,-73.94518,Entire home/apt,129,2,179,2019-06-16,3.14,2,285 +4440020,2 Bedrooms and One Bath Room,195137,James,Manhattan,Harlem,40.82272,-73.94942,Entire home/apt,229,5,38,2019-06-03,0.75,2,332 +4440181,One bedroom in 2 bedroom apartment,23046908,Melissa,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95952,Private room,64,1,14,2018-11-05,0.28,1,0 +4440611,Bright Spacious Bushwick Home,14546480,Irena,Brooklyn,Bushwick,40.7026,-73.92787,Entire home/apt,100,3,4,2016-06-04,0.08,1,0 +4440751,Entire Amazing Chic Studio @ Lower East,3716641,Ofer,Manhattan,Lower East Side,40.72169,-73.98773,Entire home/apt,99,30,21,2019-03-11,0.38,8,52 +4444204, 2-3 bedroom UWS garden triplex ,5162192,Amy,Manhattan,Upper West Side,40.79795,-73.96175,Entire home/apt,300,30,4,2015-10-06,0.07,12,310 +4445185,2 Level Loft room in Artist Studio,7351,Tanda,Brooklyn,South Slope,40.66483,-73.98892,Private room,84,2,11,2018-09-04,0.20,3,87 +4446178,Bright & big apt 3 blks from subway,946323,Ran,Brooklyn,Flatbush,40.63826,-73.96815,Entire home/apt,125,3,6,2016-07-08,0.11,1,0 +4446862,Charming Room in Prospect Heights!,23077718,,Brooklyn,Crown Heights,40.67512,-73.96146,Private room,50,1,0,,,1,0 +4447524,Charming West Village Studio,9685363,Ceyda,Manhattan,West Village,40.73634,-74.00841,Entire home/apt,200,2,9,2018-05-19,0.16,1,0 +4447611,1 BR in Gramercy Park,10471097,Jared,Manhattan,Gramercy,40.73577,-73.98455,Entire home/apt,350,1,0,,,1,0 +4447904,Beautiful Upper West Side,23083111,Michael,Manhattan,Upper West Side,40.77783,-73.9815,Entire home/apt,80,30,5,2018-08-12,0.09,1,180 +4449058,Cozy Private Room in Upper WestSide,23089516,Lisa,Manhattan,Harlem,40.81693,-73.95421,Private room,180,1,26,2019-06-25,0.47,1,0 +4449559,Very Bright Modern Apartment 2 Mins from Manhattan,23092836,Gary,Bronx,Concourse,40.82636,-73.92655,Entire home/apt,105,30,18,2019-06-02,0.48,1,52 +4449611,Big Duplex 1 BR/Loft w/ outdoors,16761703,Michael,Brooklyn,Bushwick,40.69796,-73.93124,Entire home/apt,200,7,0,,,1,0 +4450020,Entire One Bedroom apartment,23095202,Victoria,Brooklyn,East Flatbush,40.63395,-73.94772,Entire home/apt,100,2,1,2018-10-07,0.11,2,363 +4452723,Cozy 2BR apartment,2050338,Verena,Queens,Richmond Hill,40.69947,-73.82795,Entire home/apt,90,30,11,2019-03-04,0.20,3,189 +4453233,Cozy Hells Kitchen/Times Sq 2BR,5827529,Ariel,Manhattan,Hell's Kitchen,40.76221,-73.99028,Entire home/apt,160,1,8,2015-10-18,0.14,1,0 +4453484,Prime Artist Loft & Exposed Brick,2166065,Peter,Brooklyn,Williamsburg,40.71909,-73.95897,Entire home/apt,250,2,103,2019-06-20,1.87,1,315 +4454122,Cozy Harlem Hideaway **,1390414,Loryn,Manhattan,Harlem,40.81071,-73.94433,Entire home/apt,115,2,84,2019-06-18,1.51,1,50 +4454400,NYC UES charming 1 bedroom,454009,Nicholas,Manhattan,Upper East Side,40.77481,-73.95562,Entire home/apt,250,2,0,,,1,0 +4454538,"Bright, Spacious Entire Studio",22552201,Lane,Manhattan,Upper West Side,40.7982,-73.97119,Entire home/apt,130,5,9,2015-12-31,0.16,1,0 +4455094,West Village Style and Charm,13541655,Michael,Manhattan,West Village,40.73014,-74.00754,Private room,159,2,150,2019-06-28,3.19,1,54 +4455301,Pretty and Private in Clinton Hill,8490286,Jan,Brooklyn,Clinton Hill,40.68653,-73.96412,Entire home/apt,110,3,189,2019-07-01,3.40,1,268 +4456004,Spacious Bedroom in Bushwick w/AC,1171707,Gabriel,Brooklyn,Bushwick,40.70112,-73.91201,Private room,60,3,4,2016-06-12,0.09,1,0 +4456312,Large Cheerful Private Bronx Room for Med Students,3551179,Veralisa,Bronx,Kingsbridge,40.87829,-73.89337,Private room,57,3,20,2019-06-30,0.43,1,311 +4456555,Entire flr-thru 2bdrm apartment near ProspectPark!,747671,Sarah Jazmine,Brooklyn,South Slope,40.66347,-73.98438,Entire home/apt,180,1,7,2017-01-01,0.12,1,0 +4456880,Superhost 3 bedroom DISCOUNT,21641206,Veronica,Brooklyn,Bedford-Stuyvesant,40.69725,-73.94908,Entire home/apt,250,1,4,2016-02-29,0.07,4,165 +4457556,cozy queen for 2 in el barrio,22904933,Charlene,Manhattan,East Harlem,40.79849,-73.93843,Private room,92,3,48,2019-06-17,0.94,2,115 +4460838,The Elizabeth,14758012,Stéphane,Manhattan,Nolita,40.72421,-73.99304,Entire home/apt,195,3,66,2018-04-15,1.24,1,0 +4462008,Twin room,16286162,Pat,Bronx,Allerton,40.86814,-73.85874,Private room,47,2,97,2019-06-12,1.81,4,262 +4462491,Beautiful Loft in LES Manhattan!,302529,Cynthia,Manhattan,Lower East Side,40.71331,-73.98189,Entire home/apt,175,3,2,2015-12-08,0.05,1,0 +4462553,Greenwich / West Village 2 Bedroom,15778416,Courtney,Manhattan,West Village,40.73066,-74.00371,Entire home/apt,175,1,0,,,2,0 +4464418,Charming 1BD Pre-War Apartment ,6526979,Kim,Manhattan,Upper West Side,40.78962,-73.97718,Entire home/apt,165,2,9,2015-05-19,0.16,1,0 +4464508,Flatbush Gardens,23162890,Terrance,Brooklyn,Flatbush,40.6489,-73.96374,Private room,79,3,35,2018-10-28,0.62,2,336 +4467771,Beautiful Chelsea 2 Bedroom apt,23178728,SabinaAndTahir,Manhattan,Chelsea,40.74998,-73.99772,Entire home/apt,345,7,95,2019-06-29,1.70,1,13 +4469264,Cute brick wall Br in Williamsburg.,10304755,Michael,Brooklyn,Williamsburg,40.71156,-73.95826,Private room,80,2,108,2019-06-01,1.93,2,4 +4469650,Huge 5BR Townhouse - LEGAL NYC B&B!,23189353,Elizabeth,Manhattan,Harlem,40.80521,-73.94519,Entire home/apt,300,4,143,2019-06-23,2.56,1,204 +4469679,Sunny Lower East Side Penthouse,19336493,Ryan,Manhattan,Lower East Side,40.71777,-73.99011,Entire home/apt,325,4,0,,,1,0 +4470423,Large One Bedroom near Union square,5838331,Katie,Manhattan,Gramercy,40.73549,-73.98311,Entire home/apt,249,1,0,,,1,0 +4471513,The Ultimate Luxury!,3740730,S,Manhattan,Theater District,40.75607,-73.98593,Entire home/apt,699,6,186,2019-07-05,3.27,2,254 +4472904,Dorm Sz Room. Near 2 & 5 train 180 st Bronx zoo,1532337,Monica,Bronx,Van Nest,40.8423,-73.87055,Private room,25,30,6,2019-05-28,0.17,4,219 +4472978,Charming Studio in a Great location,5800619,Catia,Manhattan,Hell's Kitchen,40.75531,-73.99945,Entire home/apt,195,1,136,2019-07-05,2.94,1,203 +4473156,"NYC,Modern and Spacious Apt",23208658,Iryna,Manhattan,East Harlem,40.8002,-73.94079,Entire home/apt,165,2,146,2019-06-22,2.60,3,277 +4475128,Amazing Single Bedroom Only 5min From Central Park,16066343,Curtis,Manhattan,East Harlem,40.78834,-73.9472,Private room,65,2,219,2019-06-28,3.88,2,35 +4476605,Great 4 Families Near Parade + Park,23226529,Marc,Manhattan,Upper West Side,40.77706,-73.98407,Entire home/apt,550,4,0,,,1,0 +4476945,Modern Brownstone in Harlem,23228839,Tiffany,Manhattan,Harlem,40.81056,-73.94627,Entire home/apt,149,3,28,2019-05-19,0.50,1,329 +4479556,Amazing convenient 5 min to city,23243453,Rodney,Queens,Long Island City,40.74681,-73.94586,Entire home/apt,225,1,1,2015-01-04,0.02,1,0 +4479625,"Charming 1 bedroom, great location!",2380912,Helen,Brooklyn,Williamsburg,40.71234,-73.94158,Entire home/apt,135,2,0,,,1,0 +4479632,Charming duplex garden flat in SoHo,20431437,Richard,Manhattan,SoHo,40.72736,-74.00192,Entire home/apt,495,30,159,2019-06-12,2.83,1,129 +4480308,"Charming, Sunny Downtown Studio",5152761,Jane,Manhattan,Chinatown,40.71759,-73.9922,Entire home/apt,200,2,23,2016-10-24,0.41,1,0 +4480793,B's Suite,23249630,Sheila,Brooklyn,Bedford-Stuyvesant,40.68256,-73.94326,Entire home/apt,125,3,24,2019-06-19,0.44,2,69 +4481427,1BR w/ Large Patio on Ridgewood/Bushwick border.,1816417,Raoul,Queens,Ridgewood,40.69945,-73.90651,Entire home/apt,95,4,44,2019-07-01,0.81,1,271 +4481474,B's Elegant Parlor Suite,23249630,Sheila,Brooklyn,Bedford-Stuyvesant,40.68339,-73.9422,Entire home/apt,135,3,15,2019-07-02,0.27,2,89 +4481694,*NEW* Modern Sunny Loft in Bushwick/Brooklyn,567972,Melanie,Brooklyn,Bushwick,40.69815,-73.93616,Entire home/apt,120,3,4,2017-01-06,0.08,1,157 +4482158,Lovely and Spacious Park Slope Home,23256032,Katharine,Brooklyn,Park Slope,40.66767,-73.9828,Entire home/apt,160,14,1,2015-01-04,0.02,1,36 +4482584,Private & clean 1 bd/1br Willamsburg w/ roofdeck.,304346,Andy,Brooklyn,Williamsburg,40.71498,-73.96437,Entire home/apt,225,2,0,,,1,0 +4482783,"❤️ of Wburg, Private Living+Entrance",1869332,Elli,Brooklyn,Williamsburg,40.7188,-73.95775,Private room,139,2,6,2017-07-29,0.12,3,36 +4483117,Large private br in renovated apt/close to subway,23159248,Christie,Manhattan,Upper East Side,40.77473,-73.94859,Private room,69,2,11,2019-01-10,0.19,1,240 +4483517,Stunning room. 15mins to Manhattan!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92508,Private room,100,30,2,2015-04-28,0.04,4,7 +4483672,Warm and Cozy Room in Harlem,17065184,Fallon,Manhattan,Harlem,40.80743,-73.94256,Private room,71,3,211,2019-07-05,3.72,1,6 +4484212,King size bed -Private bdrm,21938150,Niraj,Manhattan,Gramercy,40.7373,-73.98392,Private room,250,1,4,2015-09-16,0.08,1,365 +4484620,Large Sunny Private Room in 2BR steps from subway,2589436,Sarah,Brooklyn,Williamsburg,40.71594,-73.95649,Private room,70,2,15,2018-03-23,0.29,2,0 +4484899,Classic East Village Studio,8713930,Zane,Manhattan,East Village,40.72908,-73.97901,Entire home/apt,225,1,0,,,1,0 +4485286,Luxury Apartment on Wall Street,14138135,Sabir,Manhattan,Financial District,40.70388,-74.00633,Entire home/apt,170,1,2,2015-08-03,0.04,1,0 +4488882,Lovely Garden Apartment in Bklyn,23287601,Petal,Brooklyn,Flatlands,40.62598,-73.92509,Entire home/apt,125,3,2,2016-09-21,0.05,1,161 +4490268,Elegant Bushwick Apartment,23293704,Su-Ling,Brooklyn,Bushwick,40.68488,-73.91225,Entire home/apt,139,2,190,2019-07-04,4.15,1,218 +4491140,Tranquility in The Heart of Astoria,15823911,Rand,Queens,Long Island City,40.76063,-73.92801,Private room,69,1,0,,,1,0 +4492303,"Bright 1 bdrm apt near Central Park, shops & metro",7567309,Susan,Manhattan,Upper West Side,40.78137,-73.98183,Entire home/apt,199,2,19,2019-05-20,0.35,1,0 +4492678,Heart of the East Village- Best Loc,18601618,Chris,Manhattan,East Village,40.72724,-73.98639,Entire home/apt,175,1,2,2015-01-06,0.04,1,0 +4492821,"Great location, spacious apt.",743716,Santiago,Brooklyn,Boerum Hill,40.68348,-73.98087,Entire home/apt,120,3,3,2016-01-05,0.05,1,0 +4493474,Cozy Bedroom in best area of FiDi,5777821,Denis,Manhattan,Financial District,40.70428,-74.00952,Private room,100,5,2,2016-01-01,0.04,1,0 +4493526,"Amazing Location, Incredible Space",23308381,Priya,Manhattan,West Village,40.73647,-73.99814,Private room,150,1,0,,,1,0 +4493658,Cute & Modern 1 Bedroom Apt,1869421,David,Brooklyn,Williamsburg,40.71256,-73.94188,Entire home/apt,100,8,14,2016-03-24,0.25,1,0 +4494217,Stylish West Village Artists Penthouse Loft,22720650,Duane,Manhattan,West Village,40.73604,-74.0056,Entire home/apt,130,30,1,2018-12-24,0.15,2,0 +4494588,Cosy apartment in the East Village,23314412,Olivia,Manhattan,East Village,40.72347,-73.98116,Entire home/apt,150,5,0,,,1,0 +4494705,1 bedroom in Brooklyn,11228023,Danielle,Brooklyn,Sunset Park,40.65188,-74.00611,Private room,50,30,2,2017-06-27,0.04,1,0 +4497294,"Clean, quiet, safe 25Min Dwntn NYC",22831759,Ruth,Brooklyn,Flatbush,40.64617,-73.97018,Private room,80,2,11,2015-10-11,0.19,1,0 +4497963,Iconic West Village Apartment,10225905,Kym,Manhattan,West Village,40.73474,-74.00867,Entire home/apt,250,2,0,,,1,0 +4498688,"Large, Immaculate Brooklyn 2 BR apt, sleeps 4-5",12881527,Tanya,Brooklyn,Bedford-Stuyvesant,40.684,-73.95002,Entire home/apt,227,1,17,2018-08-27,0.31,1,362 +4498927,Manhattan townhouse near subway,23334165,Patricia,Manhattan,Harlem,40.82257,-73.94543,Entire home/apt,300,5,91,2019-06-21,1.65,3,288 +4499097,Upper West Side Studio doorman bld,23334541,Josh,Manhattan,Upper West Side,40.77998,-73.98462,Entire home/apt,130,2,17,2019-05-27,0.37,1,2 +4499976,Large Sunny 2 Bedroom + den - UWS,23338742,Aneela,Manhattan,Upper West Side,40.78878,-73.97386,Entire home/apt,225,30,17,2018-06-15,0.31,1,179 +4500272,"HUGE STUDIO-Cozy,Centrally Located!",2829908,Rahul,Manhattan,Murray Hill,40.74685,-73.97598,Entire home/apt,149,2,1,2016-01-01,0.02,1,0 +4500615,"Chelsea, balcony and 2 bedrooms!",6519939,Raj,Manhattan,Chelsea,40.75005,-73.99718,Entire home/apt,320,3,0,,,1,0 +4500794,"Sunny/artistic, Manhattan 2 bedroom",23342156,Shelby,Manhattan,Washington Heights,40.83714,-73.93713,Private room,75,1,9,2016-05-06,0.20,1,0 +4500897,Cozy Brooklyn Apartment!,2781725,Julia,Brooklyn,Kensington,40.64687,-73.98182,Entire home/apt,115,7,6,2018-08-19,0.11,1,183 +4501164,Union Square Apartment + Private Backyard,17074459,Mattan,Manhattan,East Village,40.73325,-73.98789,Private room,97,3,64,2017-07-24,1.15,3,0 +4502339,Centrak Park North cozy apartment,23349530,Yely,Manhattan,Harlem,40.80204,-73.95656,Shared room,80,1,0,,,1,59 +4502545,XL off Fifth Avenue & Central Park,23084155,Stefani,Manhattan,Upper East Side,40.7671,-73.96968,Entire home/apt,275,2,20,2019-01-02,0.45,1,0 +4503472,Park Slope Home away from Home,23353897,Barbara,Brooklyn,Park Slope,40.66763,-73.98156,Entire home/apt,163,4,58,2019-05-29,1.38,1,132 +4504049,Blissfully Quiet Room,16151285,Carol,Bronx,Williamsbridge,40.87896,-73.84978,Private room,55,28,27,2019-05-28,0.53,4,338 +4504353,"Sunny, Artsy Brooklyn Room",1607087,Iyabo,Brooklyn,Crown Heights,40.6771,-73.95994,Private room,75,2,2,2015-11-15,0.04,1,0 +4504493,Studio Apartment- Furnished,10303277,Alexis,Brooklyn,Fort Greene,40.69059,-73.97853,Entire home/apt,110,5,0,,,1,0 +4507262,Luxurious Village 1 bed!,2282450,Philip,Manhattan,West Village,40.73553,-74.00546,Entire home/apt,247,2,21,2018-05-02,0.41,2,173 +4508885,Upper West Apartment Block Away from Central Park!,301549,Michelle,Manhattan,Upper West Side,40.76885,-73.98254,Entire home/apt,180,14,0,,,1,0 +4509357,Clean-Cozy-Beside 3 train station,15313939,Jeremy,Manhattan,Harlem,40.82412,-73.93872,Private room,69,1,22,2017-01-03,0.47,1,365 +4509500,Prime Chelsea~XL1Br~Terrace~Sleeps4,2119276,Host,Manhattan,Chelsea,40.73984,-74.0006,Entire home/apt,150,30,7,2019-06-14,0.15,39,339 +4509560,Reno Studio Gramercy~Sleeps3!,2119276,Host,Manhattan,Gramercy,40.73505,-73.98212,Entire home/apt,140,30,9,2018-08-11,0.17,39,344 +4509664,2BR - Great West Village Location,23383529,Joseph,Manhattan,West Village,40.73277,-74.00413,Entire home/apt,205,2,6,2016-03-27,0.13,1,0 +4512045,Beautiful Exposed Brick Studio Loft,13282162,Manuel,Manhattan,Upper West Side,40.78294,-73.98474,Entire home/apt,148,3,35,2019-07-01,0.63,1,207 +4512093,manhattan (UWS) townhouse,11760806,Raj,Manhattan,Upper West Side,40.79994,-73.97001,Private room,299,1,1,2019-05-23,0.64,1,88 +4512329,Spacious Room in Sugar Hill,16685925,Douglas,Manhattan,Washington Heights,40.83089,-73.94125,Private room,49,3,3,2016-07-14,0.05,2,0 +4513084,Beautiful Sunny Private Penthouse Suite,23401472,Heather,Manhattan,Harlem,40.82624,-73.94527,Entire home/apt,150,30,1,2016-07-30,0.03,2,244 +4513190,Beautiful 1 Bedroom Apt,23401743,Ticemen,Manhattan,East Harlem,40.79917,-73.93995,Entire home/apt,195,2,0,,,1,0 +4514042,Bushwick Duplex 1,3709510,Deacon,Brooklyn,Bushwick,40.69213,-73.92371,Private room,80,1,4,2019-05-28,0.34,3,342 +4516766,"Large, Luxury Bedroom nr JMZ subway",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93467,Private room,68,5,81,2019-06-07,1.47,6,83 +4516939,"Zen Oasis in Bushwick, near JMZ Subways",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93427,Private room,72,5,89,2019-05-22,1.65,6,322 +4517117,BELLA CASA-Pvt Rm-2 beds-Sleeps 4. Near Columbia!!,16480700,Eddie&Vlad,Manhattan,Harlem,40.82014,-73.95433,Private room,97,2,146,2019-06-10,2.59,7,83 +4517177,1 bedroom apt 1 stop from Manhattan,23419852,Gazelle,Queens,Long Island City,40.74236,-73.95641,Entire home/apt,170,2,84,2019-05-28,1.51,1,178 +4517848,"Landmark 1 Bedroom has 2 beds, Free WiFi",7245581,Michael,Manhattan,Washington Heights,40.83335,-73.94048,Entire home/apt,67,74,7,2018-08-31,0.14,19,251 +4518242,Zen MiniPalace Astoria,23424461,Alex,Queens,Astoria,40.76369,-73.91601,Entire home/apt,80,1,3,2016-01-02,0.05,1,0 +4519764,Private Space in Manhattan 8/25-9/9,16310013,Tan,Manhattan,Washington Heights,40.85181,-73.93824,Private room,29,7,0,,,1,0 +4520113,"Lovely - Spacious, Garden + Garden View",22880393,Sara,Manhattan,Lower East Side,40.71452,-73.9871,Private room,120,3,66,2019-06-15,1.27,2,295 +4520449,"Spacious 1 Bedroom in Midwood, BK!",9196903,George,Brooklyn,Midwood,40.62403,-73.9618,Private room,100,1,0,,,1,0 +4520941,"SPACIOUS, 2 bedrooms, sleeps 4, private bath",23439479,Victoria,Manhattan,Inwood,40.86644,-73.92677,Private room,250,3,18,2018-10-29,0.35,2,336 +4523324,Large private 2 bedroom near Union Sq .,20019392,Shirley,Manhattan,East Village,40.73337,-73.98828,Private room,200,2,109,2019-06-21,2.15,1,336 +4524289,Private room in South Slope,2138902,Asher,Brooklyn,Gowanus,40.66694,-73.99299,Private room,90,1,0,,,1,0 +4525475,"Manhattan, UWS, Bright, 1BR, & Loft",12149644,Brandon,Manhattan,Upper West Side,40.78304,-73.98146,Entire home/apt,125,1,0,,,1,0 +4525589,Spacious studio apt in Jackson Hts,20627511,Mark,Queens,Jackson Heights,40.75034,-73.89215,Entire home/apt,90,3,0,,,1,0 +4530085,Cosy East Village apartment!,2277244,Victoria,Manhattan,East Village,40.72949,-73.97894,Entire home/apt,180,1,2,2016-05-28,0.05,1,0 +4530154,Park Slope Sky Parlor,3201774,Ashley,Brooklyn,South Slope,40.66388,-73.9905,Private room,53,1,105,2019-06-21,2.11,2,137 +4530160,Large apt in heart of Williamsburg,9997747,Devon,Brooklyn,Williamsburg,40.71906,-73.95798,Entire home/apt,200,3,7,2016-06-27,0.12,1,0 +4530432,Landmark Parlor Studio near train has 2 beds.,7245581,Michael,Manhattan,Washington Heights,40.83488,-73.93843,Entire home/apt,66,180,7,2018-12-16,0.14,19,330 +4531802,Sunny East Village 1 Bedroom,6197480,Christine,Manhattan,East Village,40.72568,-73.98823,Entire home/apt,200,2,0,,,1,0 +4531990,Charming and Clean Brooklyn Apt.,23497375,Liat,Brooklyn,Bedford-Stuyvesant,40.68157,-73.92023,Private room,75,1,0,,,1,0 +4532435,Beautiful 2 Bedroom Apartment in Williamsburg,13888249,Omer,Brooklyn,Williamsburg,40.70798,-73.95374,Entire home/apt,165,3,15,2018-05-12,0.27,2,158 +4532913,Williamsburg private clean cozy RM,20164579,Oliver,Brooklyn,Williamsburg,40.71909,-73.95998,Private room,45,1,170,2019-06-20,5.90,1,245 +4533010,Spacious Manhattan One Bedroom Apt,23503432,Luke,Manhattan,Washington Heights,40.8552,-73.93354,Entire home/apt,80,1,150,2019-06-28,2.68,1,35 +4536637,Kosher new studio close to subway,11010205,Jacob,Brooklyn,Bensonhurst,40.61576,-73.99166,Private room,125,2,4,2018-04-11,0.07,2,0 +4537198,Huge room wt bathroom + entrance,6926899,Liana,Brooklyn,Williamsburg,40.7113,-73.94938,Private room,90,3,4,2016-06-11,0.07,1,0 +4537297,Rosa B Private Apartment! Quiet and Safe Area.,1509863,Eddie,Queens,Rego Park,40.72937,-73.86804,Entire home/apt,40,7,53,2019-06-25,0.94,1,10 +4537389,New Years In New York City,22927481,Howard,Manhattan,Midtown,40.76377,-73.98103,Private room,400,3,0,,,3,0 +4537500,Location Nancy,3250450,Petya,Queens,Astoria,40.76496,-73.9282,Private room,39,31,2,2017-09-29,0.04,18,310 +4537520,1 bdrm apartment in boerum hill!,8737911,Laura,Brooklyn,Boerum Hill,40.6875,-73.99027,Entire home/apt,125,1,2,2015-01-01,0.04,1,0 +4538012,Bright Harlem Home in New Building!,12879538,Gregory,Manhattan,Harlem,40.82102,-73.94633,Private room,85,1,21,2018-01-01,0.38,2,343 +4538019,Luxury Queen Bed_Plush Mattress,22384027,Shahana,Brooklyn,Brownsville,40.67061,-73.91672,Private room,39,1,130,2019-06-21,2.32,10,26 +4538238,Sunny studio apartment in the heart of Manhattan,3473330,Shira,Manhattan,Kips Bay,40.7401,-73.97994,Entire home/apt,150,2,23,2018-10-28,0.41,1,12 +4538274,"Country Vibe, Big City Feel",23532244,Wendy,Queens,Astoria,40.77002,-73.91498,Entire home/apt,100,2,18,2019-05-27,0.38,1,83 +4538901,Entire Apt. in E. Williamsburg,4806989,Ava,Brooklyn,Williamsburg,40.70826,-73.94059,Entire home/apt,189,1,0,,,1,0 +4539483,Colorful Studio Near Columbia Univ.,2968247,Lauren,Manhattan,Harlem,40.80583,-73.95712,Entire home/apt,99,3,18,2017-08-26,0.33,1,0 +4539520,Spacious 1 Bedroom in Bohemian Comfort,23538896,DeeDee,Brooklyn,Crown Heights,40.67771,-73.96286,Entire home/apt,167,4,6,2019-01-02,0.12,1,0 +4539906,"Bright 1BR, central location",23540800,Carl,Manhattan,Hell's Kitchen,40.75381,-73.99491,Entire home/apt,205,2,0,,,1,0 +4540852,Williamsburg Apartment,10718241,Jason,Brooklyn,Greenpoint,40.7191,-73.94964,Private room,50,1,0,,,1,0 +4541102,"Perfect 2 Bed Bklyn Apt, near SUNY Downstate!",23548583,Shari,Brooklyn,East Flatbush,40.65262,-73.94211,Entire home/apt,109,30,23,2019-05-01,0.44,2,221 +4541187,Cozy 1BR Apartment in Astoria,23185328,Deniz,Queens,Ditmars Steinway,40.77672,-73.90878,Entire home/apt,127,2,12,2016-11-23,0.25,2,0 +4545882,Amazing studio/Loft with a backyard,23569951,Kaveh,Manhattan,Upper East Side,40.7811,-73.94567,Entire home/apt,220,3,28,2019-05-23,0.50,1,293 +4545999,Your Brooklyn Nook,23570473,James,Brooklyn,Crown Heights,40.67414,-73.95368,Private room,45,1,22,2019-07-02,0.96,3,339 +4546034,1BR by 1&A trains,23570593,Joshua,Manhattan,Washington Heights,40.84769,-73.93512,Private room,75,2,24,2019-06-30,0.44,1,321 +4546721,Large 1 bdrm near L in Williamsburg,23573737,Michelle,Brooklyn,Williamsburg,40.71171,-73.94575,Entire home/apt,120,5,1,2014-12-31,0.02,1,0 +4547143,CHARMING bedroom in BedStuy,23575706,Blair,Brooklyn,Bedford-Stuyvesant,40.6958,-73.94515,Private room,55,1,0,,,1,0 +4547273,Beautiful Spacious Studio By Park,10411359,Alison,Manhattan,Upper West Side,40.78316,-73.97269,Entire home/apt,120,3,33,2019-07-01,0.62,1,0 +4549155,Quaint Brownstone with Garden,1443186,Ash,Manhattan,East Harlem,40.80985,-73.93919,Entire home/apt,108,4,3,2016-08-29,0.07,1,0 +4549248,Cozy One Bedroom in Williamsburg!,22089583,Cesar,Brooklyn,Williamsburg,40.71901,-73.95618,Entire home/apt,200,3,3,2015-10-22,0.05,1,0 +4549555,"Studio Space, 10 minutes to Central Park and river",6571805,Agata,Manhattan,Upper West Side,40.79407,-73.97679,Shared room,55,2,54,2019-06-26,1.40,2,336 +4549557,Central Harlem ,23588055,Genine,Manhattan,Harlem,40.81208,-73.94243,Private room,205,2,3,2018-07-10,0.05,1,364 +4549627,Large Room with Private Bathroom,2748575,Charlotte,Manhattan,Hell's Kitchen,40.75506,-73.99622,Private room,129,4,0,,,1,0 +4549930,Charming apt close to everything!,19196381,Kimia,Manhattan,Upper East Side,40.77127,-73.95108,Entire home/apt,150,3,74,2019-05-27,1.33,1,263 +4550015,Greenwich/West Village Private Room,15778416,Courtney,Manhattan,West Village,40.73033,-74.00284,Private room,110,1,0,,,2,0 +4550041,Bright! LARGE 2 BEDS near Manhattan,23591164,Angela,Queens,East Elmhurst,40.76539,-73.87636,Private room,65,1,356,2019-06-23,6.31,4,341 +4550494,"2BR, 2 Full Bath, SPACE, Short term monthly",785283,Melinda,Queens,Ditmars Steinway,40.77648,-73.91595,Entire home/apt,150,28,50,2019-05-05,0.89,2,38 +4550557,Bright LARGE 2 BEDS! near Manhattan,23591164,Angela,Queens,East Elmhurst,40.7668,-73.87759,Private room,65,1,426,2019-06-17,7.53,4,312 +4550602,Cozy & Clean #3,23533897,Fatou,Brooklyn,Crown Heights,40.6759,-73.95274,Private room,75,1,77,2019-06-11,1.40,7,340 +4550747,Cozy & Clean #4,23533897,Fatou,Brooklyn,Crown Heights,40.67565,-73.95121,Private room,85,2,37,2019-05-19,0.67,7,325 +4553528,Brownstone Williamsburg room with skylight Create,2480939,Charles,Brooklyn,Williamsburg,40.71839,-73.95996,Private room,58,1,210,2019-07-02,3.80,3,217 +4553721,Art Large bedroom Brownstone for 1 or 2 persons,2480939,Charles,Brooklyn,Williamsburg,40.71994,-73.9599,Private room,90,1,194,2019-07-05,3.81,3,229 +4554473,"Bright and Spacious, near the Park",20042936,Yarimar,Brooklyn,Prospect Heights,40.67376,-73.96373,Entire home/apt,120,5,1,2016-05-17,0.03,1,0 +4554577,Bright and Cheerful Prospect Heights 1-bedroom,22568612,Ilana,Brooklyn,Prospect Heights,40.6803,-73.97185,Entire home/apt,115,6,3,2017-08-27,0.06,1,0 +4555241,"Clean, Cozy, Close to City (15min)",23342410,Amy,Queens,Long Island City,40.75985,-73.92979,Entire home/apt,99,2,0,,,1,0 +4555470,Lovely One Bedroom Heart Of Astoria,22348314,Mike,Queens,Astoria,40.76542,-73.92115,Entire home/apt,105,25,14,2018-07-31,0.27,1,277 +4556564,Private Room in Spacious Uptown Apt,23612276,Janine Renee,Manhattan,Harlem,40.82083,-73.95436,Private room,69,7,15,2019-06-11,0.27,1,213 +4556760,"Beautiful, Spacious Room in Loft",3074432,Minka,Brooklyn,Greenpoint,40.73298,-73.95813,Private room,80,1,0,,,1,0 +4557206,Cozy 1BD Apartment near Manhattan,6246089,Sara,Queens,Astoria,40.76587,-73.92157,Entire home/apt,125,5,27,2019-06-05,0.50,1,2 +4557370,Holiday in Manhattan! Great Views!,7257731,Anna,Manhattan,Inwood,40.86335,-73.92822,Entire home/apt,90,7,7,2019-06-21,0.15,1,249 +4558046,Spacious Studio in Brooklyn,23629361,Paris,Brooklyn,Crown Heights,40.66953,-73.92686,Entire home/apt,80,7,0,,,1,0 +4559096,$99 Manhattan/Time Sq.,23635670,Johnny,Manhattan,Hell's Kitchen,40.75856,-73.99569,Private room,125,1,186,2019-07-07,3.33,1,271 +4563401,MIDTOWN APARTMENT WITH SPECTACULAR VIEW,22885233,Peter,Manhattan,Hell's Kitchen,40.76575,-73.99241,Entire home/apt,215,6,39,2019-06-01,1.57,1,24 +4564292,HEART of NEW YORK // ニューヨークの中心,23659408,Marcello,Manhattan,Hell's Kitchen,40.75811,-73.99073,Entire home/apt,107,21,193,2017-10-27,3.42,1,310 +4564695,"Sunny, Quiet Queen Bedroom, Best Block in LES",619991,David,Manhattan,Lower East Side,40.72082,-73.98952,Private room,89,4,91,2019-06-01,1.86,1,16 +4564840,"Woodsy-chic Lofted 1BR, Office, AC",1019170,Sebastian,Manhattan,East Village,40.72312,-73.98255,Entire home/apt,175,2,81,2018-06-27,1.59,1,0 +4565734,Spacious 2 Bedroom + Study,54712,Nick,Brooklyn,Greenpoint,40.73351,-73.95459,Entire home/apt,245,3,0,,,2,280 +4566340,Spacious 2BR Greenpoint Getaway,54712,Nick,Brooklyn,Greenpoint,40.73455,-73.95489,Entire home/apt,245,3,0,,,2,0 +4566571,Penthouse loft with private patio,3814458,Ole,Manhattan,Midtown,40.75186,-73.98557,Entire home/apt,450,3,12,2016-04-10,0.23,1,0 +4566818,1 bedroom in Cozy 2 bedroom upper west side,23671946,Yonatan,Manhattan,Harlem,40.81622,-73.95885,Private room,100,3,0,,,2,0 +4566989,10 Minutes From Manhattan,23673285,Marisa,Queens,Astoria,40.76413,-73.92374,Entire home/apt,98,6,38,2019-06-02,0.67,1,306 +4567433,Room #2 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Brownsville,40.67068,-73.91633,Private room,39,1,89,2018-08-16,1.57,10,0 +4567518,Cozy 2BD Near Columbia Univ,23671946,Yonatan,Manhattan,Morningside Heights,40.81473,-73.96039,Entire home/apt,160,4,10,2019-06-02,0.43,2,0 +4567703,2 Bdr Cozy Apartment in Park Slope,22935835,Gislane,Brooklyn,South Slope,40.66616,-73.99009,Entire home/apt,150,2,0,,,1,0 +4567765,★3BR/2BA Amazing East Village Penthouse+Pvt Terr★,1277144,T.,Manhattan,East Village,40.72809,-73.98188,Entire home/apt,299,2,63,2019-06-01,1.15,1,210 +4567820,Lovely Studio on the edge of the McGolrick Park,5650951,Simon,Brooklyn,Greenpoint,40.7249,-73.94528,Private room,75,8,6,2018-11-05,0.14,1,0 +4571518,Park Slope - Furnished room in 2BR,23697064,Matt,Brooklyn,South Slope,40.66289,-73.98176,Private room,99,5,1,2015-10-09,0.02,1,0 +4571925,Funky East Village Garden Apt.,23699355,Harmony And Eric,Manhattan,East Village,40.7309,-73.98785,Entire home/apt,165,2,40,2016-06-29,0.73,1,0 +4572225,Columbia UWS 1BD Apt-Quiet & Comfy,14768898,Yiyi,Manhattan,Morningside Heights,40.80747,-73.9603,Entire home/apt,145,1,12,2015-09-08,0.21,1,0 +4573728,Cool & Cozy 2B/1BA in prime LES!,23708028,Ivan,Manhattan,Lower East Side,40.72058,-73.98674,Entire home/apt,239,3,145,2019-06-30,2.63,1,1 +4573897,Private BR in 2 BR Modern Apartment,21935479,Crysdian,Manhattan,Inwood,40.86821,-73.92128,Private room,76,2,70,2019-06-08,1.37,1,352 +4574224,GREAT SPACIOUS PRIVATE ROOM,11308807,Mathew,Manhattan,Harlem,40.82158,-73.9533,Private room,65,1,0,,,2,0 +4574225,Bright and Cozy Bedroom NYC A1,20559017,Yohan,Manhattan,East Harlem,40.78617,-73.94421,Private room,60,30,2,2017-08-26,0.04,9,312 +4575364,Zen Den & Modern Outdoor Space,23038979,Carmen,Brooklyn,Cypress Hills,40.68711,-73.87336,Entire home/apt,50,3,114,2019-06-24,2.02,1,18 +4576206,Brooklyn Brownstone Beauty,22017065,Marycatherine,Brooklyn,Prospect Heights,40.68137,-73.97081,Entire home/apt,250,3,27,2019-07-05,0.49,1,266 +4576821,"Charming apt. in Brooklyn, New York",4362140,María,Brooklyn,Bedford-Stuyvesant,40.68798,-73.95678,Entire home/apt,140,3,11,2015-09-22,0.20,1,0 +4578471,CHARMING 1-BD w CITY VIEWS,4263114,LeeAnne,Manhattan,Hell's Kitchen,40.76612,-73.99324,Entire home/apt,125,5,5,2015-08-24,0.09,1,0 +4581479,曼哈顿上西区林肯中心附近优质公寓短租!,23748343,Apple,Manhattan,Upper West Side,40.77334,-73.99031,Shared room,80,1,0,,,1,0 +4581788,"",21600904,Lucie,Brooklyn,Williamsburg,40.7137,-73.94378,Private room,150,1,0,,,1,0 +4581942,"Clean, Cozy - South ParkSlope - NYC",4618480,Justin,Brooklyn,Sunset Park,40.65687,-74.00489,Private room,75,1,0,,,1,0 +4582087,Thanksgiving Vacation ,23751556,Tai,Manhattan,Hell's Kitchen,40.75835,-73.99286,Private room,200,4,0,,,1,0 +4582684,Comfortable one bedroom with patio,23754530,Josh,Brooklyn,Fort Greene,40.68859,-73.9767,Entire home/apt,150,2,99,2019-06-29,1.77,1,246 +4582781,Prime Williamsburg duplex Bedford L,6780571,Julia,Brooklyn,Williamsburg,40.71765,-73.95772,Entire home/apt,220,2,79,2019-06-25,1.62,1,143 +4582785,Between Central Park and the Subway,13161042,Tom,Manhattan,Upper East Side,40.78555,-73.95311,Entire home/apt,180,2,18,2017-07-30,0.33,1,0 +4585734,"NYC, Modern and Spacious Apt fits 6",23208658,Iryna,Manhattan,East Harlem,40.79826,-73.94145,Entire home/apt,260,3,20,2019-06-20,2.74,3,283 +4586330,Artist Loft in Greenpoint/Williamsb,23677128,Darby,Brooklyn,Greenpoint,40.72712,-73.95499,Private room,80,1,0,,,1,0 +4586448,East Village Townhouse,8503180,Kathy,Manhattan,East Village,40.73118,-73.98885,Entire home/apt,1500,30,24,2019-04-22,0.43,2,358 +4586880,Vintage Room in Brooklyn,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68373,-73.92925,Private room,50,2,100,2019-07-04,3.21,3,260 +4587321,Bright 3 bdrm in East Village,23778946,Katie,Manhattan,East Village,40.72523,-73.97999,Entire home/apt,400,3,1,2015-01-02,0.02,1,0 +4587905,New 2 br Apt Williamsburg,3693416,Carolina,Brooklyn,Greenpoint,40.72214,-73.94835,Entire home/apt,450,1,0,,,1,0 +4588273,"UWS Penthouse, Amazing Deck",1500858,Adrienne,Manhattan,Upper West Side,40.77926,-73.97877,Entire home/apt,225,30,7,2015-06-18,0.13,1,173 +4588678,Gorgeous bohemian Apt. in a Brownstone,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68596,-73.94068,Entire home/apt,100,2,2,2017-08-08,0.05,2,0 +4588689,One Bedroom East Village New York,5926785,Cynthia,Manhattan,East Village,40.72556,-73.98504,Entire home/apt,205,1,0,,,1,0 +4589819,Cozy bedroom in a luxury building with 24h doorman,7852646,Tysha,Brooklyn,Fort Greene,40.69563,-73.98193,Private room,110,1,38,2019-07-07,2.06,1,46 +4592475,Private Terrace in Brooklyn!,4445796,Courtney,Brooklyn,Greenpoint,40.72557,-73.95243,Private room,95,1,7,2015-06-02,0.14,1,0 +4593609,1 Bedroom Apt in Hell's Kitchen !,23810895,Scott & Ellyn,Manhattan,Hell's Kitchen,40.7592,-73.98902,Entire home/apt,150,2,42,2019-06-18,0.76,1,258 +4593770,Sunny & spacious 1 bedroom gem!,23812318,Chelsea,Queens,Jackson Heights,40.75401,-73.88236,Entire home/apt,100,2,21,2019-04-08,0.38,1,124 +4593939,Charming and Convenient Garden Apt,5050537,Melissa,Brooklyn,Bedford-Stuyvesant,40.68402,-73.94164,Entire home/apt,69,1,40,2019-06-19,0.83,1,3 +4594389,Furnished 2BR in UES (30 DAYS MIN),23772724,Elem,Manhattan,Upper East Side,40.78302,-73.94647,Entire home/apt,110,30,12,2019-02-18,0.27,15,332 +4594620,Spacious Full 2br Holiday Home ,1520215,Brad,Brooklyn,Boerum Hill,40.68598,-73.98004,Entire home/apt,250,3,0,,,1,0 +4596378,Nice and cozy near Laguardia,23824219,Joshua,Queens,East Elmhurst,40.75943,-73.89553,Private room,44,3,46,2019-03-17,0.83,1,88 +4598265,"Hamilton Hts Beauty, Manhattan 1 BR",23834677,Kumar,Manhattan,Harlem,40.82863,-73.94358,Entire home/apt,155,1,242,2019-06-30,4.40,2,238 +4600556,Beautiful 2 BR Apt UES- Min 30 Days,15310997,Mor,Manhattan,Upper East Side,40.78318,-73.94556,Entire home/apt,300,30,10,2019-02-28,0.19,9,331 +4601325,Cozy private bedroom in Manhattan,23847354,Nicole,Manhattan,East Harlem,40.78882,-73.94869,Private room,67,1,2,2016-02-07,0.05,1,0 +4602440,Great 2 bedroom Greenpoint BK,6949069,Laura,Brooklyn,Greenpoint,40.72403,-73.95055,Entire home/apt,175,4,2,2015-12-30,0.04,1,0 +4603012,Spacious 1BR Apt in Greenpoint,45609,Sean,Brooklyn,Greenpoint,40.73132,-73.95831,Entire home/apt,149,15,22,2019-04-30,0.39,1,0 +4603954,BRIGHT MODERN BEDROOM,23718461,Ingrid,Brooklyn,Flatlands,40.62949,-73.92703,Private room,85,2,0,,,1,365 +4604991,Confortable and private room.,23861788,Luis&Victor,Brooklyn,Bedford-Stuyvesant,40.70007,-73.94338,Private room,75,2,224,2019-07-03,4.44,1,74 +4605455,Private Room & Bathroom in LES,23575977,Carly,Manhattan,Two Bridges,40.71205,-73.99463,Private room,120,5,0,,,1,0 +4605840,Large Sunny Bedroom With great View,23788242,Suzanne,Brooklyn,Bedford-Stuyvesant,40.68853,-73.9498,Private room,100,3,50,2019-06-15,1.08,1,339 +4606017,Studio with Loft bed by the river,23867361,Kurt,Manhattan,Upper West Side,40.79284,-73.97675,Entire home/apt,129,12,20,2019-05-01,0.37,1,193 +4606385,Coziest 2BD Brownstone in Jefftown,3184878,Maggie,Brooklyn,Bushwick,40.70545,-73.91929,Entire home/apt,150,1,1,2015-03-17,0.02,1,0 +4606473,Radiant 2bed E Village Apartment,23862900,Cecily,Manhattan,East Village,40.72887,-73.98633,Entire home/apt,219,5,1,2014-12-26,0.02,1,0 +4606614,Uptown Convenience & Comfort,23870076,Sam,Manhattan,Morningside Heights,40.80549,-73.96393,Entire home/apt,185,3,10,2018-08-24,0.38,1,0 +4606675,Private Room 2 Beds New York City!,23591164,Angela,Queens,East Elmhurst,40.7661,-73.87739,Private room,65,1,21,2017-07-27,0.38,4,0 +4607923,LOVELY LARGE SUNNY ROOM Sunset Park,1113080,Audrey,Brooklyn,Sunset Park,40.64722,-74.00475,Private room,55,7,98,2019-05-22,1.75,3,312 +4611004,Christmas Harlem! Duplex,626876,Kimberly,Manhattan,Washington Heights,40.83653,-73.94277,Entire home/apt,350,3,0,,,3,0 +4611203,Large 1 bedroom apt - can sleep 4,11702175,Meghan,Manhattan,East Harlem,40.79038,-73.94412,Entire home/apt,170,3,6,2017-01-01,0.11,1,0 +4611256,Upper East Side Manhattan,626876,Kimberly,Manhattan,Upper East Side,40.77963,-73.94864,Private room,250,1,0,,,3,0 +4611295,Upper East Side Manhattan #2,626876,Kimberly,Manhattan,Upper East Side,40.77941,-73.94862,Private room,250,1,0,,,3,0 +4612401,Bushwick Pad,21906247,Sam,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93537,Private room,70,1,0,,,1,0 +4613154,New York City Studio,23899573,Oscar,Manhattan,Hell's Kitchen,40.76679,-73.98598,Entire home/apt,150,7,23,2016-06-26,0.42,1,0 +4614091,"Big Kitchen, Beautiful Bathroom",16437254,Benjamin,Brooklyn,Sunset Park,40.6642,-73.99322,Entire home/apt,172,30,5,2019-06-25,0.09,21,328 +4614146,Stay on St. Marks Place for your NYC Vacation!,4293340,Teena,Manhattan,East Village,40.72764,-73.98748,Private room,79,2,2,2017-12-25,0.10,1,0 +4614435,Bright Studio on Riverside Park,8530836,Katarina,Manhattan,Harlem,40.82458,-73.95223,Entire home/apt,100,4,5,2017-09-25,0.09,1,105 +4614838,"2 Bedroom, 1 Bath Hell's Kitchen",1698391,Pat,Manhattan,Hell's Kitchen,40.76142,-73.99177,Entire home/apt,272,2,7,2019-04-30,0.13,3,277 +4615631,Charming Bedroom in Cozy NYC Apt.,22350590,Veronica,Manhattan,Harlem,40.82351,-73.94047,Private room,85,10,57,2019-06-10,1.03,1,6 +4615887,Lofted duplex in Kips Bay,23073152,Cara,Manhattan,Kips Bay,40.7396,-73.98228,Entire home/apt,350,2,0,,,1,0 +4616452,Upper East Side Spacious 2 Bedrooms,23915731,Helene,Manhattan,Upper East Side,40.77439,-73.94965,Entire home/apt,249,3,1,2016-07-19,0.03,1,0 +4616700,Cozy sun drenched 2br Fort Greene,1403669,Simone,Brooklyn,Fort Greene,40.68547,-73.96886,Entire home/apt,180,4,20,2018-09-05,0.39,1,208 +4616865,Colorful Room in Crown Heights,6028908,Kelly,Brooklyn,Crown Heights,40.67569,-73.95548,Private room,38,10,0,,,1,0 +4619579,One bedroom loft in West Village ,23929065,Eli,Manhattan,West Village,40.73173,-74.00904,Entire home/apt,450,3,0,,,1,0 +4620262,Cozy bedroom in heart of Manhattan,1599319,Lakshmi,Manhattan,Little Italy,40.71954,-73.9975,Private room,60,7,5,2016-04-26,0.09,1,0 +4620505,1br - Williamsburg Luxury Sublet ,12511067,Jaclyn,Brooklyn,Williamsburg,40.718,-73.95344,Entire home/apt,95,1,0,,,1,0 +4620954,"Tranquil, clean bedroom,",23935018,Marlon,Brooklyn,Bedford-Stuyvesant,40.68175,-73.95417,Private room,85,3,1,2015-10-24,0.02,1,0 +4620962,Beautiful one bedroom apt 850 sqf!!,21685221,Sael,Manhattan,Upper West Side,40.79293,-73.97126,Entire home/apt,199,1,0,,,1,0 +4621213,"Cozy 2 bedroom, near Central Park",23899821,Maria,Manhattan,Upper West Side,40.78604,-73.97363,Entire home/apt,260,2,54,2019-07-01,0.98,1,16 +4621217,Gramercy~New 1BR~Sleeps4~Rono~,2119276,Host,Manhattan,Gramercy,40.73346,-73.98216,Entire home/apt,140,30,7,2018-09-10,0.13,39,332 +4621713,Prime Union Square! Large 1BR~Great value,2119276,Host,Manhattan,Gramercy,40.7339,-73.98548,Entire home/apt,185,30,5,2019-01-24,0.10,39,1 +4621923,Spacious 1BD in lovely Clinton Hill,7947211,Meredith,Brooklyn,Prospect Heights,40.68153,-73.96669,Entire home/apt,126,1,44,2019-07-02,0.78,1,7 +4622869,Huge LES 3 BD 3 BA Elevator + Patio,2593268,Rose,Manhattan,Chinatown,40.7157,-73.99094,Entire home/apt,399,2,122,2019-06-15,2.24,1,109 +4623217,Bright and Charming Studio East V.,23945185,Natalia,Manhattan,East Village,40.726,-73.97773,Entire home/apt,100,7,6,2016-03-02,0.11,1,0 +4623622,Victorian with Stunning Views of NYC Harbor,22506665,William,Staten Island,St. George,40.64571,-74.07835,Entire home/apt,1000,1,0,,,1,364 +4623635,Historic Brownstone Duplex,1136842,Amanda,Brooklyn,Fort Greene,40.69249,-73.97068,Entire home/apt,225,7,3,2019-01-01,0.05,1,44 +4623696,Great deal in Heart of Greenpoint,2378231,Romy,Brooklyn,Greenpoint,40.73108,-73.95416,Entire home/apt,85,4,4,2015-12-29,0.07,1,0 +4623771,Bright + Cheerful Apt- the Real NYC,23267314,Millie,Manhattan,East Harlem,40.79127,-73.94431,Entire home/apt,147,2,45,2019-05-15,0.92,2,154 +4624521,Financial District Oasis-Queen Bedroom,9072771,Kindra,Manhattan,Financial District,40.70581,-74.00948,Private room,90,14,8,2019-05-29,0.23,2,146 +4624657,Modern Duplex with yard in Bedstuy,23952819,Jason,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93286,Entire home/apt,500,1,1,2015-08-30,0.02,2,362 +4624874,Flatbush Gardens II,23162890,Terrance,Brooklyn,Flatbush,40.65039,-73.96393,Private room,72,3,37,2018-10-15,0.66,2,334 +4625126,Bedroom and art studio/office space,7799229,Artem,Brooklyn,Williamsburg,40.71387,-73.95652,Private room,41,4,14,2018-10-06,0.37,2,0 +4628603,Bright and Sunny Williamsburg Oasis,6465286,Masha,Brooklyn,Williamsburg,40.71191,-73.96376,Entire home/apt,180,3,103,2019-06-06,1.92,2,0 +4628804,Cozy Room in NYC! =),23971734,Rene,Queens,Sunnyside,40.73978,-73.92124,Private room,67,5,4,2016-10-26,0.07,1,0 +4629211,Brooklyn - Funky 1 Bedroom,3754729,Mike,Brooklyn,Bushwick,40.69087,-73.90917,Entire home/apt,122,3,48,2019-06-04,0.87,1,256 +4629359,"ENTIRE home - Modern, huge, sunny 2BD",23974215,Alex,Manhattan,Harlem,40.80797,-73.95181,Entire home/apt,105,3,29,2019-03-20,0.52,2,0 +4629599,Coozy Room In Park Slope.,22503794,Shawn,Brooklyn,South Slope,40.66238,-73.98457,Private room,95,1,2,2015-08-08,0.04,1,364 +4629726,Sunny Studio,23971405,Monica,Queens,Kew Gardens,40.70705,-73.83346,Entire home/apt,100,2,1,2016-01-02,0.02,1,0 +4629870,"Super Quiet, Private Patio",16437254,Benjamin,Brooklyn,Boerum Hill,40.68851,-73.98655,Entire home/apt,130,30,3,2017-09-03,0.07,21,312 +4632542,Queen Sized Bedroom in Spacious Apartment,6762751,Alexander,Manhattan,Harlem,40.80096,-73.95776,Private room,107,2,92,2019-05-20,1.64,1,157 +4632795,Location Top Manhattan,3250450,Petya,Manhattan,Upper West Side,40.78628,-73.97264,Private room,100,30,12,2017-05-23,0.24,18,364 +4632852,"Spacious, rustic barn style bedroom",23991556,Natasha,Bronx,Concourse,40.83719,-73.92015,Private room,85,1,9,2017-10-16,0.18,1,342 +4633258,Room 15 min from Manhttn.,23993707,Bogna,Queens,Woodside,40.74626,-73.89727,Private room,30,5,2,2017-12-29,0.04,2,0 +4635425,Modern Studio with Loft in the LES.,23876129,Juan Carlos,Manhattan,Chinatown,40.71648,-73.9912,Entire home/apt,175,4,57,2017-03-02,1.04,1,0 +4636323,1x furnished Bdr in 2Bdr Apt-Wburg,24006197,Piper,Brooklyn,Williamsburg,40.7118,-73.93729,Private room,95,1,0,,,1,0 +4636643,"Sunny, Spacious 1 Bdrm in E. Vil.",24007762,Kate,Manhattan,East Village,40.72639,-73.98827,Entire home/apt,125,1,8,2018-03-02,0.15,1,0 +4636874,Nice room 15 min from Manhattan!,23993707,Bogna,Queens,Woodside,40.74668,-73.89723,Private room,35,5,9,2018-12-30,0.16,2,0 +4637014,法拉盛中心温馨两房两厅公寓。近一切。2 br close to everything,12459436,Zena,Queens,Flushing,40.75398,-73.82778,Entire home/apt,119,3,26,2019-06-30,0.46,2,319 +4637053,Beautiful Astoria apt next to Mtan,24009463,Vadim,Queens,Astoria,40.76794,-73.93413,Entire home/apt,150,3,149,2019-07-06,2.71,2,133 +4637145,Cozy apartment in Williamsburg,3123405,Pénélope,Brooklyn,Williamsburg,40.7033,-73.94305,Private room,55,1,4,2018-02-22,0.13,1,0 +4637146,Gorgeous Parlor Floor Suite near Subway,1755097,Jay,Brooklyn,Bedford-Stuyvesant,40.69084,-73.93079,Entire home/apt,115,2,214,2019-06-21,4.07,2,108 +4637858,Chic apartment in Brooklyn with stunning view,5552587,Chris,Brooklyn,Bedford-Stuyvesant,40.69492,-73.95839,Private room,99,5,14,2017-09-25,0.25,1,306 +4638668,Beautiful Apartment in Greenpoint,6569891,Brandon,Brooklyn,Greenpoint,40.73396,-73.95537,Private room,150,1,0,,,1,0 +4638967,"Sunny/Huge private room, by Columbia/Jazz clubs",23974215,Alex,Manhattan,Harlem,40.80649,-73.95225,Private room,84,2,38,2019-06-15,0.68,2,147 +4639015,Elite Exclusive Chic NYC Times Square LuxuryApt,14380678,S Barn,Manhattan,Hell's Kitchen,40.76195,-74.00001,Private room,129,2,13,2019-06-27,0.27,1,176 +4639179,"Private room, minutes from subway!",3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.68951,-73.9565,Private room,44,5,86,2017-12-31,1.67,4,0 +4639451,Comfortable Greenpoint Bedroom,24020898,Rebekah,Brooklyn,Greenpoint,40.72499,-73.94481,Private room,55,6,0,,,1,0 +4639746,Charming Studio in Carroll Gardens,6470787,Franklin,Brooklyn,Carroll Gardens,40.68244,-73.99539,Entire home/apt,100,3,15,2016-06-13,0.27,1,0 +4640515,"Small, Cozy, Clean and Modern private room!",23355801,Andrey,Manhattan,Harlem,40.8257,-73.93786,Private room,65,1,40,2019-06-25,2.88,1,45 +4641291,Room in queens covenient safe locat,24030482,Eddie,Queens,Bellerose,40.72401,-73.72901,Private room,99,1,3,2019-05-19,0.23,1,365 +4641406,Cozy Loft-Style Studio Near Subway ,17281607,Alexis,Manhattan,Harlem,40.80297,-73.95537,Entire home/apt,100,7,2,2016-01-05,0.04,1,0 +4642539,Spacious 2 BDRM near Times Square,5025692,Annika,Manhattan,Hell's Kitchen,40.7616,-73.99677,Entire home/apt,225,5,13,2018-09-28,0.24,1,0 +4642913,Spacious Bright and Airy,16035346,Jonathan,Brooklyn,Windsor Terrace,40.65057,-73.97858,Entire home/apt,120,7,23,2019-01-05,0.41,1,196 +4643192,Quiet 1 Bedroom near Union Square,6694436,Itai,Manhattan,Gramercy,40.73533,-73.98384,Entire home/apt,139,2,5,2016-05-10,0.11,1,0 +4643199,NEW! 2-BR Apt with Whirlpool Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77167,-73.95735,Entire home/apt,142,30,3,2018-12-31,0.09,29,321 +4643295,Great one bedroom loft space in Manhattan,8555319,Simsim,Manhattan,Chinatown,40.71399,-73.99744,Entire home/apt,140,4,13,2019-04-29,0.65,1,0 +4644632,"Brooklyn Life, Easy to Manhattan (30+ Days only)",10992588,Joni,Brooklyn,Bedford-Stuyvesant,40.68797,-73.94696,Entire home/apt,130,200,271,2019-07-03,4.84,2,64 +4644669,Upper East Side,24046558,M David,Manhattan,Upper East Side,40.76358,-73.96464,Entire home/apt,325,5,64,2019-06-08,1.15,1,330 +4644688,2 Bedroom New York Charmer,16927633,Lee,Manhattan,Hell's Kitchen,40.76198,-73.98718,Entire home/apt,350,2,9,2016-07-12,0.21,1,0 +4644828,Hip&Central! Charming Williamsburg!,805843,Johnny,Brooklyn,Williamsburg,40.71745,-73.95961,Entire home/apt,175,2,5,2017-01-06,0.12,1,0 +4645170,Private Room with Queen size bed,22827111,Matthew & Marilyn,Manhattan,Hell's Kitchen,40.76025,-73.99555,Private room,89,4,59,2019-06-30,1.06,2,286 +4645319,Beautiful private unit in the heart of Brooklyn,2520125,Katja,Brooklyn,East New York,40.66171,-73.89891,Entire home/apt,69,4,159,2019-06-23,3.25,2,48 +4645824,"Room in front of Prospect Park, 1 block to subway",1660261,Andres Mekos,Brooklyn,Prospect-Lefferts Gardens,40.65859,-73.96196,Private room,40,6,10,2019-04-15,0.21,1,0 +4645831,Light filled room w/full size bed in LES,24052348,Tara,Manhattan,East Village,40.72052,-73.98003,Shared room,65,10,21,2017-12-30,0.38,4,0 +4649468,BRIGHT!-STEPS TO PARK!-SUBWAY OUTSIDE!-FITS 4!,2592109,Lia,Manhattan,Upper East Side,40.76904,-73.95902,Entire home/apt,160,14,20,2019-06-20,0.37,1,43 +4649627,"Spacious 1 BR, En Suite in Brownstone!",9492212,Emily And Joel,Brooklyn,Park Slope,40.6702,-73.97885,Private room,135,2,88,2018-12-31,1.60,4,0 +4650123,"Stunning Lower East 2 Bed, Live New York Style!",6230230,John,Manhattan,Lower East Side,40.71927,-73.98511,Entire home/apt,109,3,42,2019-06-13,1.13,3,7 +4650725,Lovely Room in a 2 BR in Greenpoint,24075308,Saskia,Brooklyn,Greenpoint,40.72518,-73.93844,Private room,85,14,3,2015-07-03,0.05,1,0 +4651354,Lower East Side True 1 BR,24020050,Max,Manhattan,Chinatown,40.71566,-73.99076,Entire home/apt,189,4,25,2019-04-15,0.48,1,191 +4651486,Prospect Park 2BR Near MANHATTAN!!!,2563415,Anthony,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.96109,Entire home/apt,125,3,56,2019-06-16,2.42,1,19 +4652629,Classic East Village Apartment,9953720,Eva,Manhattan,East Village,40.72921,-73.98631,Private room,140,1,1,2015-01-03,0.02,1,0 +4653508,1 BR in shiny new building + bikes!,6349214,David,Brooklyn,Fort Greene,40.69492,-73.97061,Entire home/apt,160,3,4,2017-12-30,0.07,1,0 +4654785,"Parkslope, 1 bdrm, steps to subway",24094211,Rebecca,Brooklyn,Park Slope,40.67256,-73.97229,Entire home/apt,115,5,4,2017-01-02,0.08,1,0 +4656361,"Large, Cozy One Bedroom Apartment",8291260,Elizabeth,Manhattan,Washington Heights,40.85171,-73.92894,Entire home/apt,80,3,31,2019-06-29,0.56,1,68 +4658293,Luxury 1BD apt by Prospect Park,7518105,Dan & Michelle,Brooklyn,Windsor Terrace,40.64961,-73.97465,Entire home/apt,198,2,7,2017-06-04,0.13,1,0 +4658860,Astoria Queens great room for rent!,24109809,Jonathon,Queens,Astoria,40.77271,-73.93159,Private room,200,1,0,,,1,0 +4659046,Large eclectic studio East Village,1420868,Oksana,Manhattan,East Village,40.7257,-73.9795,Entire home/apt,230,1,46,2019-05-10,0.84,1,353 +4659285,Manhattan! Bunk beds for 10+,23334165,Patricia,Manhattan,Harlem,40.82396,-73.94388,Entire home/apt,450,5,81,2019-06-09,1.48,3,303 +4660022,Best Block Clean Luxury Loft in SoHo,745486,Re,Manhattan,SoHo,40.72592,-73.99933,Entire home/apt,895,1,66,2019-06-24,1.18,1,365 +4660633,Quiet and cozy 2BR. Great location!,4517642,Kali,Manhattan,Morningside Heights,40.8104,-73.95977,Entire home/apt,170,3,6,2016-05-23,0.11,1,0 +4660939,Large Sunny Apartment in Astoria,24117644,Joshua,Queens,Astoria,40.75583,-73.92596,Private room,120,3,18,2017-01-11,0.33,2,0 +4660964,"Cozy 1BR, 5 minutes from the train",24118443,Megan,Brooklyn,Williamsburg,40.7193,-73.94502,Entire home/apt,140,2,18,2018-12-28,0.33,1,0 +4661135,SUNNY GUEST BDRM in Fort Greene!,3175065,Taya,Brooklyn,Fort Greene,40.69207,-73.97407,Private room,70,14,18,2019-06-30,0.35,1,128 +4661662,"""The Green Room"": Harlem Brownstone",21455957,Jason & Agnes,Manhattan,Harlem,40.81995,-73.94607,Private room,70,3,122,2019-06-29,2.19,2,243 +4662584,Best value single room in New York B5,20559017,Yohan,Manhattan,East Harlem,40.78644,-73.9438,Private room,45,30,4,2018-02-14,0.08,9,311 +4662784,Lovely Duplex in Brooklyn,21688465,William,Brooklyn,Crown Heights,40.67489,-73.93081,Private room,140,3,148,2019-07-03,2.88,1,0 +4662889,Pre-War Apt on Central Park West!,24041562,Darren,Manhattan,Upper West Side,40.78697,-73.96929,Entire home/apt,600,5,6,2016-08-05,0.11,1,0 +4663122,Beautiful 2 Bdrm Duplex w Backyard,16018853,Sasha,Brooklyn,Clinton Hill,40.69289,-73.96701,Entire home/apt,195,4,0,,,1,0 +4663804,Cozy Room by CentralPark-Times Sq,24132118,Deborah,Manhattan,Hell's Kitchen,40.76793,-73.98817,Private room,79,7,1,2015-06-17,0.02,1,0 +4663807,Entire 2 Bedroom Apartment - 20 min to Times Sqr,4098538,Olga,Manhattan,Harlem,40.82768,-73.94737,Entire home/apt,55,14,2,2017-01-08,0.05,1,0 +4666584,Unique 2 Bed/2 Bath Duplex Apt,24144577,Bill,Manhattan,Harlem,40.80382,-73.94476,Entire home/apt,275,3,41,2019-05-12,0.79,1,258 +4666794,Cozy Bedroom in Large Apartment,18511357,Meagan,Queens,Ditmars Steinway,40.77272,-73.90757,Private room,60,7,1,2017-07-01,0.04,1,0 +4667046,Idy Safe Secure mins to Times Square 5*,24146326,Julien,Queens,Astoria,40.76638,-73.93236,Entire home/apt,195,3,86,2019-06-08,1.69,2,248 +4667146,Best value double room in New York B4,20559017,Yohan,Manhattan,East Harlem,40.78512,-73.94409,Private room,50,30,5,2018-12-30,0.11,9,330 +4667148,1 Bdrm in Greenwich Village,2312420,Marie-Claire,Manhattan,West Village,40.73317,-74.00118,Entire home/apt,125,30,31,2019-05-12,0.83,2,346 +4667707,Beautifully Furnished 1 BR w/Office,24149026,Nychele,Bronx,Concourse Village,40.82393,-73.92414,Entire home/apt,145,5,1,2016-01-02,0.02,1,0 +4668252,Furnished studioA UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77388,-73.95343,Entire home/apt,99,30,15,2019-04-30,0.31,15,341 +4671552,Garden Level Brooklyn Brownstone,10860081,Hillary,Brooklyn,Clinton Hill,40.68241,-73.96354,Entire home/apt,130,1,9,2015-12-27,0.16,1,0 +4671712,Spacious luxury loft Downtown NYC,1901846,Andre,Manhattan,Lower East Side,40.7136,-73.98936,Entire home/apt,115,3,8,2016-07-19,0.16,1,0 +4671824,Master Bedroom by Yankee Stadium,190409,Waundell,Bronx,Highbridge,40.83212,-73.93054,Private room,60,1,56,2019-06-23,1.09,3,355 +4672445,West Village upscale apartment,966461,Jon,Manhattan,West Village,40.73814,-74.00047,Entire home/apt,199,4,108,2019-06-08,1.93,1,162 +4672452,"Great bright 1BR,in true BK style",3108161,Michelle,Brooklyn,Williamsburg,40.71596,-73.95876,Entire home/apt,170,3,22,2017-09-26,0.40,1,0 +4677056,"1,200 sq/ft loft +private backyard ",10476487,Avi,Manhattan,SoHo,40.72632,-74.00749,Entire home/apt,385,3,1,2015-02-16,0.02,1,365 +4677469,Cozy 1-BDR apartment on Manhattan,24191104,Timur,Manhattan,Morningside Heights,40.81099,-73.95759,Entire home/apt,125,4,0,,,1,0 +4677654,"Good, clean quite, and private!",10387090,Luis Enrique,Brooklyn,Bushwick,40.68348,-73.90817,Private room,37,30,6,2015-09-01,0.11,5,333 +4678514,Cozy 1BR in the heart of Harlem,23939128,Mariela,Manhattan,Harlem,40.8136,-73.94999,Entire home/apt,80,5,5,2017-11-23,0.10,1,0 +4678568,Spacious private BR 2 Queen beds & 3 mins to train,24195428,Maireni,Brooklyn,Crown Heights,40.66811,-73.93393,Private room,65,1,222,2019-06-17,3.99,1,292 +4678742,2 Bedroom West Village Manhattan,24195790,Patrick,Manhattan,Greenwich Village,40.73444,-73.99761,Entire home/apt,600,1,0,,,1,0 +4678795,sunny & spacious one-bedroom ,24048208,Maura,Brooklyn,Bedford-Stuyvesant,40.6848,-73.95728,Entire home/apt,140,3,0,,,1,0 +4679967,Big quiet room in Harlem,7304425,Elia,Manhattan,Harlem,40.82888,-73.94467,Private room,56,1,7,2016-06-07,0.14,1,0 +4680299,Sunny Lg BR in 2BR apt- sleeps 2,23047797,Marie,Manhattan,Washington Heights,40.85658,-73.92656,Private room,70,2,7,2016-09-28,0.13,1,0 +4681193,Entire Apt in Jackson Heights-25 min to Manhattan,24201950,Ceci,Queens,Jackson Heights,40.752,-73.88898,Entire home/apt,105,7,3,2019-06-27,0.17,1,141 +4681219,"""Central Park"" View Prvt Room,Mnh ",24208781,William Hakan,Manhattan,Harlem,40.80126,-73.95777,Private room,70,2,68,2019-05-19,1.31,1,129 +4685448,"Cozy 2BD, 20 mins to Times SQ",2368446,Chelsey,Queens,Ditmars Steinway,40.77443,-73.90756,Private room,60,1,0,,,1,0 +4685985,Living room & Bedroom_Williamsburg,4357223,Itziar,Brooklyn,Williamsburg,40.70574,-73.95552,Private room,120,1,0,,,1,0 +4686678,LARGE GREAT STUDIO HELLS KITCHEN,7759020,Valmik,Manhattan,Hell's Kitchen,40.76663,-73.9895,Entire home/apt,150,1,3,2015-06-08,0.05,1,0 +4686821,"Bright, contemporary and best location",24232061,Tracy,Manhattan,Upper East Side,40.77345,-73.95848,Private room,112,10,38,2019-05-14,0.78,3,157 +4687730,"PRICE REDUCED! Clean, safe, & roomy",529546,Aditi,Manhattan,Hell's Kitchen,40.76865,-73.98672,Private room,145,3,0,,,2,0 +4687896,Adelphi Garden Apartment,24236837,Faye,Brooklyn,Fort Greene,40.69549,-73.97144,Entire home/apt,80,30,6,2017-05-31,0.11,1,187 +4688418,Spacious 2BR in UES - 30 DAYS MIN,23772724,Elem,Manhattan,Upper East Side,40.7734,-73.95357,Entire home/apt,99,30,6,2018-08-16,0.11,15,332 +4690677,Flatiron studio next to Madison Pk,19007585,Darren,Manhattan,Flatiron District,40.744,-73.9907,Entire home/apt,110,7,11,2016-03-25,0.20,1,0 +4691130,Cozy room in center of Park Slope,24253453,Lisah,Brooklyn,Park Slope,40.67489,-73.97963,Private room,70,2,120,2018-01-04,2.47,2,68 +4691649,New Studio Loft in Williamsburg w/ Private Terrace,8501698,Meghan,Brooklyn,Williamsburg,40.71971,-73.95919,Entire home/apt,140,4,1,2016-06-01,0.03,1,0 +4693338,"Brooklyn off J/Z, Newly Renovated",9123948,Chris,Brooklyn,Bedford-Stuyvesant,40.68229,-73.91574,Private room,46,4,3,2016-01-03,0.05,1,0 +4694179,Artsy and Cozy 1b. - Walk Everywhere!,3753306,Michelle,Manhattan,Gramercy,40.73287,-73.98585,Entire home/apt,180,1,1,2017-09-15,0.05,1,0 +4694480,1000 SQ FT Cobble Hill Übercharmer,24268565,Daniel,Brooklyn,Cobble Hill,40.68982,-73.99675,Entire home/apt,250,1,185,2019-07-05,3.32,1,209 +4694622,Cozy Garden Apartment in Bushwick!!,24269297,Caitlin,Brooklyn,Bushwick,40.69935,-73.9228,Private room,75,3,41,2019-06-25,0.81,1,294 +4694625,"Chic 2Br/2bath, Lower Manhattan",1843216,Guillermo,Manhattan,Lower East Side,40.7135,-73.988,Entire home/apt,250,4,26,2019-06-15,0.61,1,102 +4694688,Happy Chic Convenient New Listing!,4217567,Emily,Manhattan,Chelsea,40.7416,-73.99681,Entire home/apt,250,3,2,2016-01-03,0.04,1,0 +4695408,Spacious bedroom for Summer Months,15642271,Julissa,Manhattan,Washington Heights,40.8442,-73.93721,Private room,60,1,3,2015-07-13,0.05,1,0 +4697809,Cozy | Spacious | Great Location,4259327,Cole,Manhattan,Flatiron District,40.74128,-73.98428,Private room,95,7,10,2018-05-26,0.18,1,331 +4698079,Sunny Cozy East Village Apartment,24067453,Danny,Manhattan,East Village,40.72274,-73.98143,Entire home/apt,138,11,5,2017-01-03,0.09,1,0 +4698707,NY TIMES Featured Dumbo Penthouse,5352419,Brian,Brooklyn,Vinegar Hill,40.70213,-73.9838,Entire home/apt,550,20,1,2018-06-12,0.08,1,220 +4699061,Cosy room in Brooklyn!2min to Sbwy,24291213,Joerg,Brooklyn,Sunset Park,40.64009,-74.01714,Private room,35,1,0,,,2,0 +4699123,Huge Bdr in Loft in Williamsburg,11708876,Paloma,Brooklyn,Williamsburg,40.7114,-73.96293,Private room,90,1,0,,,1,0 +4699289,Charming two bedroom in Greenpoint,17014518,Jessica,Brooklyn,Greenpoint,40.73039,-73.9541,Entire home/apt,180,1,0,,,1,0 +4699535,Light and Spacious your 1BR Fort Greene Apt Awaits,41358,Jen,Brooklyn,Fort Greene,40.6908,-73.97332,Entire home/apt,145,2,1,2015-09-28,0.02,1,0 +4699963,"Cozy 1BD in PLG, Brooklyn!",24295835,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.66074,-73.96035,Entire home/apt,100,3,15,2017-05-24,0.27,1,0 +4700082,Fort Greene Brooklyn 1 bedroom apt,21409261,Trey,Brooklyn,Fort Greene,40.69477,-73.97258,Entire home/apt,119,4,19,2017-07-23,0.36,1,0 +4700265,Fantastic Room in Williamsburg,14320459,Hillary,Brooklyn,Williamsburg,40.70985,-73.94738,Private room,70,2,0,,,1,0 +4700565,Charming Bohemian Bushwick Apt,24298733,Tuva,Brooklyn,Bushwick,40.69167,-73.92169,Private room,48,4,1,2015-08-22,0.02,2,0 +4700809,Cozy Two-bedroom Apt in a Cute House in Brooklyn!,24298733,Tuva,Brooklyn,Kensington,40.6367,-73.97434,Private room,35,4,0,,,2,0 +4700894,PEACEFUL NYC 2-Bedroom FLAT,10535719,Mike,Manhattan,East Harlem,40.79863,-73.93795,Entire home/apt,200,7,28,2019-06-23,0.55,3,363 +4701270,Cozy bedroom in the heart of Lower East Side,15702523,Elia,Manhattan,Lower East Side,40.7198,-73.98434,Private room,64,2,58,2018-12-09,1.05,1,0 +4701425,Master Bedroom in E.Village Triplex,7460434,Rocco,Manhattan,East Village,40.72119,-73.98021,Private room,120,3,25,2019-06-06,0.46,2,89 +4701749,Brooklyn Oasis,24304871,Heather,Brooklyn,Flatbush,40.6536,-73.95811,Private room,50,2,23,2019-04-01,0.42,1,0 +4701802,Boerum Hill Brownstone with Skylights,10568263,Stephanie,Brooklyn,Boerum Hill,40.68518,-73.9853,Entire home/apt,190,2,8,2019-06-08,0.87,1,0 +4704813,New York Upper East Side Luxury Apt,24319884,Pete & Laurie,Manhattan,Upper East Side,40.77429,-73.95628,Entire home/apt,235,7,8,2017-08-29,0.16,1,0 +4705670,"Private, quiet spacious room with tons of sun!",24117644,Joshua,Queens,Astoria,40.75572,-73.92632,Private room,70,3,74,2019-06-26,1.38,2,285 +4706957,Amazing location! Cozy apartment!,633339,Sara,Manhattan,East Harlem,40.80651,-73.93776,Shared room,60,1,4,2015-08-31,0.08,1,0 +4707057,"Private, sunny room!",6327629,Bb,Manhattan,Harlem,40.82502,-73.94404,Private room,90,3,1,2014-12-08,0.02,1,0 +4707159,NEAR TIMES SQUARE & CENTRAL PARK!,529546,Aditi,Manhattan,Hell's Kitchen,40.76689,-73.98612,Private room,125,1,1,2014-12-27,0.02,2,0 +4708314,Spacious Williamsburg Retreat,1265619,Felipe,Brooklyn,Williamsburg,40.72018,-73.96055,Entire home/apt,120,2,8,2019-03-17,0.16,1,8 +4708609,Skyline View Piano Room,19972390,Melissa,Brooklyn,Greenpoint,40.73262,-73.95795,Private room,55,1,24,2016-06-17,0.44,1,157 +4708909,"Manhattan, modern chic - 2BR/2Bath",670367,Paul,Manhattan,Hell's Kitchen,40.75614,-73.99341,Entire home/apt,225,7,0,,,1,0 +4709252,ROOM AVAILABLE IN PERFECT FLAT,1511206,Mauricio,Manhattan,East Harlem,40.79912,-73.94187,Private room,150,2,1,2015-09-30,0.02,1,0 +4710102,Harlem Renaissance,24343117,Sachin,Manhattan,East Harlem,40.80038,-73.94656,Entire home/apt,175,3,44,2016-09-28,0.80,1,280 +4710310,GREAT ROOM IN ASTORIA QUEENS,24344136,Steffany,Queens,Astoria,40.76888,-73.90807,Private room,70,5,0,,,1,0 +4710315,Comfy 2Bdr Railroad in Greenpoint,129558,Osvaldo,Brooklyn,Greenpoint,40.72907,-73.95468,Entire home/apt,112,2,8,2016-10-10,0.18,1,0 +4710488,Stunning Pre-war Penthouse Studio ,24344873,Christopher,Manhattan,Kips Bay,40.74512,-73.98041,Entire home/apt,200,10,3,2016-01-01,0.05,1,0 +4711070,RENTING SPACE IN WOODSIDE NYC,24347671,Ioanna,Queens,Sunnyside,40.74607,-73.91415,Shared room,105,1,19,2019-05-26,0.54,1,364 +4713896,Charming brownstone,10148113,Caylah,Brooklyn,Bedford-Stuyvesant,40.68927,-73.94767,Private room,70,2,3,2015-02-04,0.05,1,0 +4714600,"Spacious bedroom,amazing location! ",12098551,Ashley,Manhattan,Kips Bay,40.73937,-73.98187,Private room,115,3,1,2015-01-02,0.02,2,0 +4714854,Cozy 2BR in the UES (MIN 30 DAYS),23772724,Elem,Manhattan,Upper East Side,40.78171,-73.94617,Entire home/apt,99,30,6,2019-03-10,0.15,15,225 +4715740,1 BR with Steinway Grand Piano (30 Day Min),13976132,Joseph,Manhattan,Harlem,40.79973,-73.95541,Entire home/apt,120,3,133,2019-06-22,2.39,1,4 +4716349,Fully Furnished Private Bedroom,21208237,Sam,Manhattan,East Harlem,40.79311,-73.94587,Private room,80,1,0,,,1,0 +4716613,Private Room w/ Patio Near L Train!,2466294,Ian,Brooklyn,Bushwick,40.70131,-73.91745,Private room,90,2,8,2018-05-21,0.16,2,363 +4717237,Spacious Apt in Bushwick!,2358032,Vanessa,Brooklyn,Bushwick,40.70027,-73.9231,Entire home/apt,70,4,8,2017-09-17,0.33,1,0 +4717267,LARGE QUEEN ROOM FOR THE HOLIDAYS,24370211,Yety,Brooklyn,Williamsburg,40.71138,-73.95385,Private room,52,6,1,2016-01-11,0.02,2,0 +4717296,"Luxury Astoria 1BD apt, 20min from Manhattan",24009463,Vadim,Queens,Long Island City,40.76586,-73.93342,Entire home/apt,150,3,63,2019-06-20,1.34,2,187 +4717440,"Bright, art-filled elevator apt, LES/Chinatown",3237577,Eddie,Manhattan,Chinatown,40.71585,-73.98982,Entire home/apt,170,3,94,2019-06-23,1.71,1,7 +4718031,Cool artist apartment in Williamsburg/Bushwick,9633085,Henrique,Brooklyn,Williamsburg,40.70659,-73.94049,Entire home/apt,132,4,7,2018-08-20,0.16,1,0 +4718314,Cozy apartment in Brooklyn,24374791,Emelie,Brooklyn,Bedford-Stuyvesant,40.67893,-73.95236,Entire home/apt,90,4,12,2016-04-14,0.22,2,0 +4718436,VIEWS VIEWS VIEWS from Designer Apt,4655338,Danny,Brooklyn,Williamsburg,40.71751,-73.95839,Entire home/apt,525,6,28,2019-06-16,0.50,1,365 +4718809,Private Retreat on Central Park,8778846,Max,Manhattan,East Harlem,40.79315,-73.94787,Entire home/apt,249,1,67,2016-09-23,1.25,1,0 +4719825,Ideal One Bedroom on UWS,24381419,Adam,Manhattan,Upper West Side,40.79973,-73.9711,Entire home/apt,160,2,6,2015-08-09,0.11,1,0 +4720086,Harlem Brownstone - It's Historic!,24382598,Leesa,Manhattan,Harlem,40.81455,-73.94471,Entire home/apt,125,1,142,2019-07-01,2.55,1,266 +4720121,Luxurious Upper East Side Duplex,34915,Anna,Manhattan,Upper East Side,40.77169,-73.95583,Entire home/apt,500,7,0,,,1,0 +4720142,"Fresh, Quite and Poppin.",21466735,Stephen,Brooklyn,Carroll Gardens,40.68234,-73.9932,Private room,65,1,0,,,1,0 +4720326,Gramercy/Kips Bay 1BR- the best! ,5279180,Jane,Manhattan,Kips Bay,40.73951,-73.9827,Entire home/apt,170,3,0,,,1,0 +4720460,Charming Upper West Side Studio,1887912,Anna,Manhattan,Upper West Side,40.78657,-73.97161,Entire home/apt,150,30,31,2019-05-21,0.59,1,213 +4720558,Room in a 4 bedroom Apt. in Harlem,14140782,Adam,Manhattan,Harlem,40.81535,-73.95322,Private room,80,1,0,,,1,0 +4720719,Bright Design Loft Perfect for Photoshoots,19924780,Ani,Manhattan,Chelsea,40.74968,-73.99381,Entire home/apt,1000,2,95,2018-12-30,1.70,1,353 +4720752,Huge Sunny Room in UES Townhouse ,23752440,Cris,Manhattan,Upper East Side,40.77065,-73.95702,Private room,175,30,0,,,1,365 +4720783,Cosy bedroom in Brooklyn duplex,9288052,Lauren,Brooklyn,Clinton Hill,40.68563,-73.95956,Private room,50,2,15,2018-09-09,0.29,2,0 +4720789,"Spacious, sun filled village haven",855266,Jennifer,Manhattan,West Village,40.73767,-74.0065,Entire home/apt,250,5,1,2017-10-17,0.05,1,0 +4721007,Cozy Bedroom in Brooklyn,6720617,Nadine,Brooklyn,Crown Heights,40.67116,-73.93582,Private room,40,1,1,2015-01-06,0.02,1,0 +4724857,Bed-Stuy Brownstone,12729740,Petey,Brooklyn,Bedford-Stuyvesant,40.68467,-73.92863,Private room,75,1,0,,,1,0 +4724943,Charming 1BD Across from Park,24403405,Naomi,Brooklyn,Crown Heights,40.67163,-73.94265,Entire home/apt,82,1,1,2015-01-01,0.02,1,0 +4725251,Gorgeous Sunny Studio,24404709,Jane,Manhattan,Upper West Side,40.78635,-73.97616,Entire home/apt,93,30,16,2019-01-07,0.29,1,271 +4725852,Cozy home in south Williamsburg,405090,Sacha,Brooklyn,Williamsburg,40.7119,-73.96377,Entire home/apt,100,7,6,2019-01-09,0.15,1,0 +4726749,Harlem,11686822,Douglas,Manhattan,Harlem,40.81169,-73.94301,Private room,75,1,0,,,1,0 +4726941,"Stylish 3,000 sq ft loft in TriBeCa",724633,Yaroslav,Manhattan,Tribeca,40.72325,-74.00991,Entire home/apt,1000,2,6,2018-03-14,0.25,1,19 +4727369,Sunny and spacious private room,24413323,Yana,Brooklyn,Williamsburg,40.70828,-73.95481,Private room,65,1,13,2017-11-22,0.24,1,128 +4727731,Prime Williamsburg Loft Oasis with Garden!,18746337,Adam,Brooklyn,Williamsburg,40.71064,-73.96335,Entire home/apt,250,2,5,2019-06-27,5,1,204 +4727889,Beautiful Light Filled Apartment in New York City!,10679309,Kirac,Manhattan,Midtown,40.74578,-73.98076,Entire home/apt,130,1,3,2019-04-07,0.08,2,0 +4727912,"Cosy 2 bed, Gramercy, NYC Apartment",24415699,Charlie,Manhattan,Civic Center,40.71395,-74.00545,Entire home/apt,199,6,0,,,1,0 +4728136,Private 2-room space (ba and kitchen shared),12261576,Bohdana,Brooklyn,Sunset Park,40.65014,-74.00615,Private room,37,3,10,2019-04-22,0.20,1,6 +4729374,Sunny Private Bedroom in Bushwick,799566,Sarah,Brooklyn,Bushwick,40.69702,-73.93365,Private room,80,2,0,,,1,0 +4730371,Hipster-Chic Bushwick Apartment,6898927,Sarah,Brooklyn,Bushwick,40.69738,-73.91162,Private room,33,2,9,2019-01-01,0.19,1,0 +4730379,Bedroom in Spacious East Village Apt,10503555,Amanda,Manhattan,East Village,40.72717,-73.991,Private room,55,26,0,,,1,0 +4730857,West Village Gorgeous Chic 1BR Apt,24429897,Roger,Manhattan,West Village,40.73552,-74.00521,Entire home/apt,299,5,0,,,1,0 +4733949,Beautiful Brooklyn Apartment Share (Purple Room),706623,Emilia,Brooklyn,Bushwick,40.69439,-73.9068,Private room,69,4,5,2016-02-10,0.09,4,98 +4734069,BEAUTIFUL WILLIAMSBURG BROWNSTONE,1279274,Jena,Brooklyn,Williamsburg,40.71334,-73.96207,Entire home/apt,200,30,0,,,1,0 +4734170,Modern 1 BD near Prospect Park,17893360,Charles,Brooklyn,Crown Heights,40.67238,-73.95768,Entire home/apt,109,1,18,2017-04-14,0.38,1,0 +4734709,Bright & quiet 2 bedroom brownstone,6274029,Belle,Brooklyn,Prospect Heights,40.67895,-73.97233,Entire home/apt,200,4,5,2016-12-31,0.10,1,21 +4735505,Greenwich Village w Private Garden,3570170,John,Manhattan,Greenwich Village,40.72874,-74.00088,Private room,95,2,4,2017-06-02,0.08,1,0 +4736480,Upper East Side Apatments,4568686,Amy,Manhattan,Upper East Side,40.77556,-73.95245,Entire home/apt,375,4,0,,,1,0 +4736912,Room in Manhattan (Upper West Side),24454737,Umberto,Manhattan,Morningside Heights,40.81088,-73.95774,Private room,50,14,1,2015-01-08,0.02,1,0 +4737392,"Luxurious bed in a clean, cozy home",24418383,Christopher,Queens,Astoria,40.75916,-73.91427,Private room,60,1,72,2018-10-16,1.30,1,364 +4737830,great room in the best place,24459029,Nima,Brooklyn,Crown Heights,40.67083,-73.94944,Private room,44,1,3,2015-07-15,0.05,1,0 +4737930,Spanish Harlem Apt,1235070,Olson,Manhattan,East Harlem,40.79264,-73.93898,Entire home/apt,9999,5,1,2015-01-02,0.02,1,0 +4738250,room in prime williamsburg,24461143,Jisoo,Brooklyn,Williamsburg,40.71754,-73.96228,Private room,77,1,0,,,1,0 +4738406,Holiday Sublet! 20 min to midtown,24462091,Jasmin,Manhattan,Washington Heights,40.84749,-73.9391,Private room,40,6,0,,,1,0 +4738429,M3 Hamilton's Hideaway Studio,295128,Carol Gloria,Bronx,Clason Point,40.81214,-73.85371,Entire home/apt,110,1,15,2019-06-23,0.49,7,325 +4738946,"Amazing, classy, safe & convenient!",15821855,Tessa,Manhattan,Morningside Heights,40.81615,-73.95921,Private room,65,1,1,2015-09-14,0.02,1,0 +4739407,"Spacious, Cool 1-BD in Brooklyn",24467359,Juan-Pablo,Brooklyn,Crown Heights,40.67656,-73.94542,Entire home/apt,85,5,14,2016-02-18,0.26,1,0 +4739703,1BR Duplex in Heart of Brooklyn with 2 cats!!!,24468833,Amanda,Brooklyn,Prospect Heights,40.67906,-73.96602,Entire home/apt,175,3,19,2015-09-09,0.34,2,88 +4742068,Spacious 1 Bedroom Apartment,22616989,Don,Brooklyn,Bensonhurst,40.61957,-73.9936,Entire home/apt,93,3,52,2019-06-22,0.99,1,325 +4742102,Our home is your home.(Vegetarian),6932195,Mindy (...And I'M Jeff),Queens,Fresh Meadows,40.7312,-73.78579,Entire home/apt,375,2,30,2019-07-01,0.66,1,351 +4742842,Cozy Harlem Escape 20 mins to Times Square,7111318,Morgan Marie,Manhattan,Harlem,40.82784,-73.93704,Entire home/apt,100,3,111,2019-06-23,3.15,1,9 +4743840,"My home in West Village--Huge, Modern",895109,Jeffrey,Manhattan,West Village,40.73571,-74.00341,Entire home/apt,258,3,57,2019-06-23,1.10,1,320 +4744276,Huge Room in First Floor Brownstone,24487418,Daniel,Brooklyn,Crown Heights,40.67318,-73.94842,Private room,75,2,19,2016-08-26,0.39,1,0 +4744487,Williamsburg Carriage House w/ yard,24487842,David,Brooklyn,Williamsburg,40.71181,-73.95736,Entire home/apt,118,30,29,2019-01-23,0.52,1,295 +4744592,Quiet & Peaceful Upper West Escape,6648212,Mike,Manhattan,Morningside Heights,40.81509,-73.96019,Entire home/apt,120,4,4,2015-05-30,0.07,1,0 +4745012,Charming UES 1bdr near Central Park,1766929,Stephanie,Manhattan,Upper East Side,40.76339,-73.95832,Entire home/apt,154,4,17,2017-08-05,0.31,1,0 +4745212,Bright & Spacious in Williamsburg,2665225,Sila,Brooklyn,Williamsburg,40.71717,-73.95688,Entire home/apt,150,3,1,2016-01-03,0.02,1,0 +4745876,Urban sanctuary in the heart of NYC,21047204,Michael,Queens,Long Island City,40.74821,-73.94803,Entire home/apt,150,2,1,2014-12-31,0.02,1,0 +4745879,West Village / Bleecker & Cornelia,18975770,Martina,Manhattan,West Village,40.7325,-74.00453,Private room,145,2,93,2019-06-22,1.82,2,193 +4746171,Modern 2BR Apartment in Heart of East Village,24450948,Peter,Manhattan,East Village,40.72649,-73.98284,Entire home/apt,250,2,11,2017-01-01,0.20,1,0 +4747068,Lovely Studio next to Park/Subway,24500940,Jesse,Brooklyn,Windsor Terrace,40.65131,-73.97405,Entire home/apt,100,5,24,2017-05-08,0.44,1,0 +4747624,Convenient clean downtown private room + BREAKFAST,24109763,Tang,Manhattan,Two Bridges,40.7123,-73.9956,Private room,155,1,193,2019-07-05,8.21,1,37 +4748873,Capturing Meditation Style Room ,24508767,Angelina,Brooklyn,Williamsburg,40.71174,-73.94353,Private room,100,1,0,,,1,0 +4750486,Sun-drenched 1BD in Upper East Side,13631524,Hernan & Chelsea,Manhattan,East Harlem,40.79774,-73.93244,Private room,75,2,262,2019-06-09,4.73,1,166 +4750578,Cozy Boutique Studio in Brooklyn,11950208,Luisa,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95759,Entire home/apt,110,1,0,,,1,0 +4751686,Beautiful Bedroom in Williamsburg,21247073,Bowie,Brooklyn,Williamsburg,40.71573,-73.96172,Private room,50,12,4,2018-01-13,0.10,1,0 +4752020,Historic Jumel Terrace Manhattan ,24454906,Kristopher,Manhattan,Washington Heights,40.83301,-73.9394,Entire home/apt,225,1,0,,,1,0 +4752249,Beautiful artist brownstone,12112004,Kylie,Brooklyn,Bedford-Stuyvesant,40.68369,-73.92336,Private room,150,1,0,,,1,365 +4752659,Enjoying New York like a local. Share my Apartment,24525377,Jin,Manhattan,East Village,40.72513,-73.98064,Private room,125,1,73,2018-08-25,1.51,1,154 +4753571,Your own West Village/ Soho home,24529969,Ellie,Manhattan,SoHo,40.72704,-74.00558,Entire home/apt,200,3,10,2017-03-31,0.21,1,0 +4753639,Heaven On Riverside,24530713,Byron,Manhattan,Harlem,40.82332,-73.95471,Private room,90,2,16,2019-04-30,0.30,3,235 +4753866,Nirvana On Riverside,24530713,Byron,Manhattan,Harlem,40.82501,-73.95373,Private room,125,1,4,2015-11-27,0.08,3,365 +4753918,Bushwick Duplex 3 (suite),3709510,Deacon,Brooklyn,Bushwick,40.69258,-73.92528,Private room,125,2,0,,,3,280 +4754646,Room in a great UWS apartment,6649124,Yuval,Manhattan,Upper West Side,40.80149,-73.96458,Private room,70,1,0,,,1,0 +4756125,Habitación muy soleada en Bushwick!,2702777,Vicky,Brooklyn,Bushwick,40.6984,-73.91476,Private room,55,1,0,,,1,0 +4756297,Perfect 1BD in Gramercy/Union Sq,840590,Ben,Manhattan,Gramercy,40.73348,-73.98562,Entire home/apt,199,2,3,2019-06-30,0.07,1,19 +4756551,Bedroom w/Private Bath,4031913,Sheena,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.96055,Private room,89,2,139,2019-06-18,2.53,1,94 +4756578,"Clean | Green | Spacious +WB BK Sanctuary! 2BR/2BA",24544724,Katrina,Brooklyn,Williamsburg,40.71383,-73.96289,Entire home/apt,298,3,16,2019-06-23,0.39,1,4 +4756856,"",1832442,Carolina,Brooklyn,Bushwick,40.70046,-73.92825,Private room,70,1,0,,,1,0 +4757212,Studio apartment Midtown East in NY,10563051,Eveline,Manhattan,Murray Hill,40.74811,-73.97298,Entire home/apt,110,15,26,2016-07-29,0.47,1,0 +4757941,Cute & Cozy 1BR in the East Village,24551170,Neil,Manhattan,East Village,40.72619,-73.98284,Entire home/apt,239,2,2,2015-02-05,0.04,1,0 +4758028,Beautiful and great located UES apt,9150099,Melisa,Manhattan,Upper East Side,40.76244,-73.96215,Entire home/apt,300,3,2,2016-01-06,0.04,1,0 +4758601,Sunny Room in Charming Bed-stuy Apartment,24554369,Laina,Brooklyn,Bedford-Stuyvesant,40.68778,-73.92484,Private room,31,5,1,2015-08-01,0.02,1,0 +4758877,Bedroom in the Lower East Side,24555605,Robert,Manhattan,Lower East Side,40.72229,-73.9873,Private room,70,2,0,,,1,0 +4758924,Luxury Apt in Artsy Bushwick ,24555785,Shanna,Brooklyn,Bushwick,40.69685,-73.92933,Private room,73,1,1,2015-01-03,0.02,1,0 +4759361,Comfy large room in Wash Heights,15055041,Nathan,Manhattan,Washington Heights,40.83779,-73.94328,Private room,70,2,248,2019-07-05,4.65,1,12 +4759680,HUGE Beautiful Brooklyn Loft,11045893,Nicky,Brooklyn,Red Hook,40.67915,-74.00707,Private room,63,25,10,2019-05-31,0.20,1,290 +4759906,Cute & Charming Studio W/ Private Outdoor Space NY,15310997,Mor,Manhattan,Upper East Side,40.78032,-73.95249,Entire home/apt,200,30,9,2019-03-04,0.21,9,332 +4760076,Beautiful Apt in the Center of NYC,7741110,Victoria,Manhattan,Midtown,40.74245,-73.9845,Entire home/apt,220,4,149,2019-06-21,2.68,1,287 +4760085,Roomy/sunny/quiet/fun/great locale,24561040,Ame,Brooklyn,Park Slope,40.67851,-73.97678,Private room,95,2,132,2019-06-23,2.70,3,265 +4760107,"Tall Ceilings, Large Windows",16437254,Benjamin,Brooklyn,Boerum Hill,40.68902,-73.98632,Entire home/apt,127,30,7,2019-01-08,0.15,21,342 +4760504,Williamsburg Loft Bedroom,302865,Gamze,Brooklyn,Williamsburg,40.71337,-73.9642,Private room,85,8,0,,,1,0 +4762718,Unique 1BR / Upper West Side,22814290,Maximiliano,Manhattan,Upper West Side,40.78143,-73.98321,Entire home/apt,250,5,0,,,1,0 +4763327,"Luxurious, best location, spa inc'l",24576978,,Brooklyn,Greenpoint,40.72035,-73.95355,Entire home/apt,195,1,1,2015-10-20,0.02,1,0 +4765123,Beautiful Apt in West Harlem,24584990,Travis,Manhattan,Harlem,40.8261,-73.95074,Private room,50,3,8,2016-09-02,0.15,1,0 +4765631,Sunny Room- Prospect Heights- Bklyn,24587292,Rania,Brooklyn,Crown Heights,40.67507,-73.96092,Private room,60,7,0,,,2,0 +4765659,Beautiful live/work Brooklyn artists loft,24587457,James,Brooklyn,Bedford-Stuyvesant,40.69776,-73.96006,Private room,58,9,2,2015-09-09,0.04,1,0 +4766198,Private Room with Own Entrance,24590092,Debbie,Queens,Astoria,40.75962,-73.91419,Private room,80,1,2,2015-06-26,0.04,1,0 +4766284,Large queen size bedroom in huge loft apt,420111,Angie,Manhattan,East Harlem,40.79796,-73.93856,Private room,73,2,15,2019-06-29,0.33,2,250 +4766468,Lovely and Immaculate Bushwick Apt,24591281,James,Brooklyn,Bushwick,40.69913,-73.91484,Entire home/apt,91,15,1,2017-01-02,0.03,1,0 +4766582,"Clean, big room in SoHo",24591710,Ela,Manhattan,SoHo,40.72494,-74.00839,Private room,100,30,19,2016-11-13,0.50,1,0 +4766618,Cozy room mins from Central Park!,16066343,Curtis,Manhattan,East Harlem,40.78825,-73.94861,Private room,52,3,186,2019-06-16,3.39,2,49 +4766819,1 bedroom in Prime Williamsburg,13705706,Rebecca,Brooklyn,Williamsburg,40.71887,-73.94845,Private room,65,1,0,,,1,0 +4767139,Large room in two-story Brownstone,15815124,Tanya,Brooklyn,Prospect Heights,40.68163,-73.97122,Private room,70,2,45,2018-11-19,0.85,1,0 +4767549,Charming Apartment Up in the Trees,207356,Martin & Julia,Brooklyn,Carroll Gardens,40.68171,-73.99765,Entire home/apt,150,5,1,2016-09-06,0.03,1,0 +4767748,"Apt in Astoria, Queens.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77206,-73.91124,Entire home/apt,107,7,105,2019-07-02,2.07,8,261 +4768030,East Harlem Private Room ,24598868,Elijah,Manhattan,East Harlem,40.79588,-73.93646,Private room,80,1,0,,,1,0 +4768982,Beautiful Bedroom / Winter Getaway,7182609,Hannah,Brooklyn,Bushwick,40.70016,-73.91572,Private room,45,12,0,,,1,0 +4771964,Bright Brooklyn Bedroom next to Subway,23062393,Yalda,Brooklyn,Bedford-Stuyvesant,40.6894,-73.95357,Private room,62,20,2,2018-04-27,0.11,1,0 +4772857,Spacious queen size room; 15 min to Midtown NYC,24597265,Freda,Queens,Ditmars Steinway,40.77075,-73.91018,Private room,49,7,4,2019-04-01,0.10,8,309 +4772987,Queen size bedroom. 15 min to NYC,24597265,Freda,Queens,Ditmars Steinway,40.77183,-73.90973,Private room,50,6,17,2019-06-02,0.34,8,365 +4773463,Bright new studio in heart of LIC,7156474,Haley,Queens,Long Island City,40.74651,-73.954,Entire home/apt,175,1,0,,,1,0 +4774041,3 Bedroom apartment & Yard next to Subway sleeps 6,22565253,Yinny,Brooklyn,Bay Ridge,40.6342,-74.02337,Entire home/apt,129,5,48,2019-06-15,0.87,4,91 +4774190,Charming East Village/Gramercy Park Studio,17921968,Danielle,Manhattan,Gramercy,40.73196,-73.9823,Entire home/apt,198,3,103,2019-06-02,1.99,1,0 +4774496,Five star large one bedroom!,24517455,Terry,Manhattan,Upper East Side,40.77792,-73.9539,Entire home/apt,185,1,121,2019-06-17,2.19,1,337 +4774629,Beautiful Spacious Suite..,1660841,Syreeta,Brooklyn,Prospect-Lefferts Gardens,40.65713,-73.9537,Private room,90,1,0,,,1,0 +4774658,"",24625694,Josh,Manhattan,Washington Heights,40.85198,-73.93108,Private room,40,1,0,,,1,0 +4774763,1BR 2-blocks from BK Museum,24404928,Jeremy,Brooklyn,Crown Heights,40.67117,-73.95934,Entire home/apt,130,1,9,2016-05-28,0.16,1,0 +4774924,Sunny and Quiet Williamsburg Room,6465286,Masha,Brooklyn,Williamsburg,40.71217,-73.96367,Private room,100,2,32,2018-10-07,0.55,2,74 +4775278,Private Apartment In Heart Of Brooklyn,6948005,Matt,Brooklyn,Bedford-Stuyvesant,40.69294,-73.96001,Private room,75,1,1,2016-01-01,0.02,1,0 +4775547,"Private Studio On Roof, Private bath + Deck",4601412,Mia,Brooklyn,Bushwick,40.69437,-73.92607,Private room,90,5,107,2018-04-13,2.03,2,133 +4775737,A Cozy Studio in Clinton Hill,24630374,Takako,Brooklyn,Clinton Hill,40.68233,-73.96418,Entire home/apt,110,4,14,2016-12-25,0.25,1,0 +4776045,Sunny Bedroom in BK,8873293,Helena S,Brooklyn,Bedford-Stuyvesant,40.68897,-73.95477,Private room,65,2,8,2019-01-05,0.15,2,175 +4776065,Lovely Large Room with Private Bathroom,12300501,Paul,Manhattan,Hell's Kitchen,40.75984,-73.99214,Private room,49,1,102,2019-06-11,1.84,1,1 +4776107,Modern (Website hidden by Airbnb) Sq Apt!,24631934,Idris,Manhattan,East Village,40.72781,-73.97646,Entire home/apt,400,3,42,2016-09-21,0.77,1,363 +4777063,Big Sunny Room 10secs from L train,1641589,Lauren,Brooklyn,Williamsburg,40.71172,-73.93973,Private room,60,2,0,,,1,0 +4777166,"Super Clean, Quiet & Spacious Room",24636847,Troy,Queens,Woodhaven,40.69634,-73.8563,Private room,31,3,3,2018-07-11,0.23,1,0 +4777236,Private floor and entrance in townhouse,3295012,Marc & Farnoosh,Queens,Rego Park,40.72018,-73.86322,Private room,70,1,28,2019-06-22,0.61,1,325 +4777269,Two story apt with rooftop terrace,24585465,Amy,Manhattan,Upper West Side,40.77871,-73.97733,Entire home/apt,250,2,23,2019-06-17,0.48,1,0 +4777597,Beautiful Apt - Flatiron/ Chelsea,10319096,Saville,Manhattan,Chelsea,40.73932,-73.99264,Entire home/apt,215,1,0,,,1,0 +4777745,"600 SF appartment in NYC, Manhattan",24639120,Alexander,Manhattan,Midtown,40.76022,-73.9744,Entire home/apt,235,6,13,2017-01-10,0.25,1,0 +4777903,SOHO GALLERY,1581845,Indi,Manhattan,Tribeca,40.71883,-74.00357,Entire home/apt,2400,1,2,2016-10-19,0.05,1,365 +4778638,Affordable room in a friendly house,24643923,Toby,Manhattan,Harlem,40.80882,-73.94165,Private room,35,20,2,2015-01-10,0.04,1,0 +4781069,Cool Room In Cool Harlem ,482242,Roy,Manhattan,Harlem,40.81651,-73.94319,Private room,59,1,0,,,1,0 +4781700,Cool Room in NYC,24655252,Gabriel,Manhattan,Hell's Kitchen,40.7637,-73.98985,Private room,65,17,24,2019-06-03,0.45,1,86 +4782243,Charming LES studio w/ BBQ patio,2715121,Miriam,Manhattan,Lower East Side,40.71801,-73.99078,Entire home/apt,180,1,5,2016-05-22,0.09,1,0 +4782252,PENTHOUSE STUDIO WITH LARGE TERRACE,24657274,Daniel,Manhattan,Upper West Side,40.79202,-73.97947,Entire home/apt,175,1,0,,,1,0 +4782569,Private 1st level studio near NYC,5071632,Rose,Brooklyn,Borough Park,40.61959,-73.97857,Entire home/apt,81,3,47,2019-03-28,1.06,1,287 +4782799,Spacious Studio- Midtown Manhattan!,2910317,Megan,Manhattan,Midtown,40.7555,-73.96575,Entire home/apt,225,1,14,2016-04-26,0.25,1,0 +4783057,HOUSE SUITE,24660443,Hollis,Brooklyn,Bushwick,40.69504,-73.92709,Entire home/apt,100,4,123,2019-06-08,2.48,1,184 +4783437,Amazing Private & Cozy Williamsburg Room *rooftop*,186888,Matthew,Brooklyn,Williamsburg,40.70936,-73.94109,Private room,75,3,125,2019-07-03,3.26,1,134 +4783614,Master bedroom w/ private bathroom and free gym,3805240,Lika,Brooklyn,Bushwick,40.7001,-73.93009,Private room,85,7,2,2018-02-12,0.09,1,0 +4783738,MODERN Luxury Hotel Residence in Midtown,7655962,Dee J,Manhattan,Hell's Kitchen,40.7574,-73.99361,Entire home/apt,99,6,11,2018-11-01,0.22,1,0 +4783809,"Quiet, value & convenience in NYC's best hood!",177846,Alexandra,Brooklyn,Fort Greene,40.68916,-73.977,Entire home/apt,175,4,27,2019-06-22,0.49,2,11 +4784618,Private Room With Balcony UES,24666854,Namrata,Manhattan,Upper East Side,40.77321,-73.95175,Private room,90,1,0,,,1,0 +4784741,Private entrance Private roofdeck NO CLEANING FEE,12374283,Ryan,Manhattan,East Village,40.72333,-73.97948,Private room,125,1,39,2019-07-02,0.80,4,0 +4784846,1 BR in loft / Bushwick,24667595,Pierre,Brooklyn,Bushwick,40.69169,-73.92351,Private room,30,1,8,2017-06-25,0.15,1,0 +4784867,Great location w/ Terrace!,198387,Kim,Brooklyn,Williamsburg,40.71349,-73.9629,Entire home/apt,165,5,26,2016-10-12,0.47,1,0 +4785105,Cozy Nolita Apt - 1 BDR + Study,18156463,Bethany,Manhattan,Nolita,40.72405,-73.99518,Entire home/apt,149,3,0,,,1,0 +4785563,Holiday Sublet in Carroll Gardens,1977947,Stephanie,Brooklyn,Carroll Gardens,40.67725,-73.99968,Private room,100,1,0,,,1,0 +4785941,Beautiful Greenwich Village Loft,1786943,Nikolaos,Manhattan,Greenwich Village,40.72904,-74.00129,Entire home/apt,200,4,2,2016-04-13,0.04,1,0 +4786030,East Village sunny/new bedroom,24672682,Panayota,Manhattan,East Village,40.72879,-73.97959,Private room,110,1,1,2015-01-01,0.02,1,0 +4786139,Designer 1BD w/ backyard space,1760609,Matt + Allie,Manhattan,East Village,40.7223,-73.98128,Entire home/apt,315,1,2,2015-08-31,0.04,1,0 +4786675,Contemporary Luxury Studio Apartment,23852000,Aram,Brooklyn,Williamsburg,40.71975,-73.96285,Entire home/apt,148,30,16,2019-04-19,0.37,1,195 +4787201,Sunny and Spacious Brooklyn Apartment,7365719,Annika,Brooklyn,Bedford-Stuyvesant,40.67958,-73.94581,Entire home/apt,150,5,12,2018-08-19,0.24,1,9 +4787386,Spacious East Village Apartment,24678971,Nir,Manhattan,East Village,40.72454,-73.98688,Private room,175,1,41,2016-07-24,0.77,1,0 +4787527,"Home Sweet Home! +Spring fling!",9767363,Roger,Manhattan,East Harlem,40.79637,-73.93371,Private room,59,2,151,2019-07-02,2.75,1,308 +4788812,Comfy apt next to Central Park!,23020530,Val,Manhattan,Upper West Side,40.77917,-73.97397,Entire home/apt,139,1,1,2016-02-04,0.02,1,0 +4790969,"Room in Brooklyn, 20 min from Manh",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95936,Private room,50,3,50,2019-06-20,0.92,3,98 +4791389,Penthouse on Park Ave,4923436,Simon,Manhattan,Gramercy,40.73877,-73.98707,Entire home/apt,250,30,2,2015-03-22,0.04,1,0 +4791542,Lovely Bedroom in Trendy Brooklyn,14608821,Jiawen,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95422,Private room,42,7,0,,,1,0 +4791964,Bohemian Retreat in Williamsburg,1725974,Elani,Brooklyn,Williamsburg,40.70973,-73.96056,Private room,100,1,0,,,1,0 +4792192,BROOKLYN Authentic artsy LOFT :),16297020,Kasia,Brooklyn,Williamsburg,40.71234,-73.96601,Private room,80,1,0,,,1,0 +4792219,"Heart of Astoria, Spacious 2 bdrm, 15min to City!",11479819,Marnie,Queens,Astoria,40.76235,-73.9217,Entire home/apt,90,14,0,,,1,0 +4792342,Cozy 1-bedroom apt ,6328283,Steven,Manhattan,Harlem,40.82291,-73.94171,Entire home/apt,105,2,49,2019-06-30,0.90,1,193 +4792430,Bedroom in 19th Century Charmer - Clinton Hill,13343955,Sarah,Brooklyn,Clinton Hill,40.68451,-73.96461,Private room,75,2,6,2019-05-23,0.20,1,133 +4792529,Restored Bungalow of Rockaway Beach,57101,Maribel & Carolina,Queens,Rockaway Beach,40.58822,-73.81299,Entire home/apt,130,1,186,2019-06-23,3.35,1,292 +4792705,Elegant Quiet Spacious 2BD Brownstone Brooklyn NYC,3471761,Kevin & Yuan,Brooklyn,Bedford-Stuyvesant,40.68811,-73.92398,Entire home/apt,149,2,145,2019-07-02,2.62,2,305 +4794322,True one bedroom,24704747,Eli,Manhattan,Upper East Side,40.77378,-73.95684,Entire home/apt,200,1,3,2016-03-27,0.07,1,0 +4794512,Bohemian 1 Bedroom Loft with city view,7503643,Vida,Brooklyn,Greenpoint,40.72545,-73.94039,Entire home/apt,149,30,2,2018-08-15,0.06,52,358 +4795029,Morning Side Heights Private Room,24710778,Nick,Manhattan,Harlem,40.81004,-73.95231,Private room,60,1,1,2015-01-03,0.02,1,0 +4795088,Charming West Harlem Apartment,24711105,Stephanie,Manhattan,Harlem,40.82796,-73.9505,Private room,100,1,0,,,1,0 +4795390,Cozy Private Room,16151285,Carol,Bronx,Williamsbridge,40.88016,-73.84923,Private room,43,28,15,2019-05-31,0.30,4,336 +4795485,"Beautiful, sunny, large 1BD!",24712268,L & R,Brooklyn,Gowanus,40.66845,-73.99181,Entire home/apt,145,5,11,2019-06-16,0.24,1,40 +4795857,Spacious 2 Bedroom apartment in Washington Heights,8902883,Matthias,Manhattan,Washington Heights,40.83729,-73.94372,Entire home/apt,85,30,10,2019-06-30,0.28,1,147 +4796070,1A GREAT APT NEW YORK CITY !!!,24715671,Julia,Manhattan,Midtown,40.74439,-73.98329,Entire home/apt,275,30,39,2018-09-29,0.72,4,365 +4796255,"Pvt room in 2br/1bath, Crown Hghts",810311,Farai,Brooklyn,Crown Heights,40.66596,-73.9549,Private room,100,3,3,2018-10-08,0.08,1,89 +4798723,Adorable sunny studio great area-For monthly stays,23982388,Jolie,Manhattan,Midtown,40.75235,-73.96781,Entire home/apt,105,30,2,2015-08-11,0.04,5,315 +4798794,Roomy West Village Studio,1660906,Victoria,Manhattan,West Village,40.73245,-74.00275,Entire home/apt,250,2,3,2015-10-19,0.06,1,0 +4799245,"1 Bedroom - 1 Bathroom MIDTOWN,NYC",24728241,Eddie,Manhattan,Kips Bay,40.74317,-73.97508,Entire home/apt,180,1,0,,,1,0 +4799839,Private Room in Hell's Kitchen NYC,5999440,Gaetano,Manhattan,Hell's Kitchen,40.75511,-73.99247,Private room,175,2,188,2019-07-03,4.01,1,203 +4800921,"Comfy 4br, 2 full baths, 3 fls, 2 living rooms",1559494,Hill,Brooklyn,Williamsburg,40.71262,-73.95026,Entire home/apt,600,2,20,2019-06-23,3.30,1,283 +4801661,Another Large Room in Midtown Apartment,9864136,Anthony,Manhattan,Kips Bay,40.74156,-73.97968,Private room,95,30,37,2016-12-01,0.68,26,365 +4802299,"Spacious 1 BDR in Astoria, Queens ",24740606,Zsuzsanna,Queens,Astoria,40.76457,-73.91205,Entire home/apt,150,2,2,2015-05-24,0.04,1,0 +4802374,Charming Upper East Side Studio,12968821,Anupam,Manhattan,Upper East Side,40.77613,-73.9462,Entire home/apt,119,10,12,2016-07-20,0.22,1,0 +4802648,One Bed Room Apt In Midtown East,13026391,Kenneth,Manhattan,Midtown,40.75456,-73.96626,Entire home/apt,165,2,11,2016-04-24,0.21,1,0 +4803244,Fabulous bedroom in the heart of BK,24744819,Diego Fernando,Brooklyn,Bedford-Stuyvesant,40.68549,-73.94951,Private room,50,1,0,,,1,0 +4803623,great location luxury buiding,24747103,Rachel,Manhattan,Hell's Kitchen,40.7646,-73.98799,Entire home/apt,225,1,0,,,1,0 +4803750,Sugarhill Studio,932245,Angelina,Manhattan,Harlem,40.82775,-73.94313,Entire home/apt,80,2,22,2019-05-27,0.48,1,87 +4804228,Kosher Upper West Side Studio Apt,24750076,Chaz,Manhattan,Upper West Side,40.79331,-73.97537,Entire home/apt,149,4,15,2019-04-27,0.30,1,0 +4807244,"Clean, New Private Garden Level Apartment in BKLYN",24761711,Aron,Brooklyn,Windsor Terrace,40.64865,-73.97947,Entire home/apt,195,2,186,2019-06-30,3.55,2,230 +4807492,"quiet, sunny, floor-through brownstone",1870841,David,Brooklyn,Prospect Heights,40.67995,-73.97021,Entire home/apt,130,3,5,2018-05-08,0.11,1,0 +4807899,Complete 1 bedroom near Columbia U,3422859,Martin,Manhattan,Harlem,40.80434,-73.95476,Entire home/apt,95,3,9,2016-07-16,0.16,1,0 +4808065,Midtown East Lovely Nice Studio,23982388,Jolie,Manhattan,Midtown,40.75244,-73.96619,Entire home/apt,125,30,5,2017-04-15,0.10,5,331 +4808239,Loft Studio Near UN Building-30 days min stay,23982388,Jolie,Manhattan,Midtown,40.75248,-73.96695,Entire home/apt,95,30,3,2016-03-15,0.06,5,318 +4808505,"Cozy, CLEAN & SAFE room",24765924,Cesar,Queens,East Elmhurst,40.76313,-73.88368,Private room,50,1,55,2019-07-07,1.21,1,332 +4808745,Monthly studio-heart of Manhattan,23982388,Jolie,Manhattan,Midtown,40.75427,-73.96689,Entire home/apt,85,30,2,2019-05-08,0.05,5,83 +4809056,Entire Basement + Yard Access. ,5715779,Jessi,Brooklyn,Bushwick,40.70468,-73.92863,Shared room,95,1,0,,,1,0 +4809337,Cozy 1BD close to Prospect Park,24770709,Sakina,Brooklyn,Crown Heights,40.67033,-73.95262,Private room,50,1,0,,,1,0 +4809346,Spacious Sunny Brooklyn Sanctuary,24766218,Anna,Brooklyn,Clinton Hill,40.68917,-73.96545,Private room,80,14,2,2015-08-16,0.04,1,335 +4813140,Private Roof 4 bedroom 2.5Baths 15m to Manhattan,22643930,Joe,Brooklyn,Bushwick,40.69711,-73.93373,Entire home/apt,320,3,125,2019-06-23,3.42,1,269 +4813236,beautiful ROOFTOP apartment,24789838,Aljosha,Brooklyn,Bushwick,40.68876,-73.90824,Private room,37,17,0,,,2,0 +4813259,Big & Bright near Park & Museum,4312196,Joshua,Brooklyn,Crown Heights,40.6794,-73.9616,Private room,90,4,1,2015-07-08,0.02,1,0 +4813342,Times Square Cozy Studio ,23982388,Jolie,Manhattan,Hell's Kitchen,40.76497,-73.98854,Entire home/apt,95,30,4,2018-06-11,0.11,5,337 +4813781,"Private room in cozy, large UWS apt",24792241,Stephanie,Manhattan,Upper West Side,40.7915,-73.96697,Private room,85,3,6,2019-05-31,0.15,1,193 +4813832,Cozy room in Prospect Heights,13486673,David,Brooklyn,Prospect Heights,40.67904,-73.97289,Private room,79,13,8,2019-03-13,0.19,3,24 +4814075,EPIC east village room!,24793480,Nathan,Manhattan,East Village,40.72771,-73.98549,Private room,100,7,0,,,1,0 +4814810,"Quiet retreat, peaceful stay",24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67234,-73.92721,Private room,54,2,50,2019-06-05,2.26,4,302 +4815028,affordable and convenient Manhattan studio,24797535,Leslie,Manhattan,Upper West Side,40.80123,-73.96248,Entire home/apt,129,10,29,2019-07-02,0.54,1,0 +4815848,"Elegant NYC, 10mins to Manhattan!",3211,Catherine,Queens,Long Island City,40.76308,-73.92843,Private room,90,4,21,2018-10-06,0.41,1,89 +4815886,Amazing Artist Loft,7351,Tanda,Brooklyn,South Slope,40.66442,-73.99047,Entire home/apt,254,2,8,2019-06-16,0.23,3,365 +4817139,Studio Apartment in Midtown,21671443,Leandro,Manhattan,Hell's Kitchen,40.76557,-73.98745,Entire home/apt,159,2,16,2016-12-21,0.31,1,0 +4817208,Perfect private studio in NYC,3514707,Kaori,Manhattan,East Harlem,40.7945,-73.94298,Entire home/apt,90,5,2,2015-09-26,0.04,1,0 +4820897,Comfy & Cozy in Best Hood in Bk,177846,Alexandra,Brooklyn,Fort Greene,40.68864,-73.97669,Private room,85,5,47,2019-05-06,0.85,2,9 +4821218,A Mini Home Away From Home,24827152,Wendy,Brooklyn,Bedford-Stuyvesant,40.68383,-73.95298,Private room,45,3,5,2016-01-06,0.09,1,0 +4821331,Lofty Brownstone Floor-Through,24827643,Danny,Brooklyn,Cobble Hill,40.68617,-73.99632,Entire home/apt,275,10,1,2016-05-06,0.03,1,1 +4821605,1 BR in Spacious 4 BR duplex,24828814,Aaron,Brooklyn,Bushwick,40.70295,-73.91354,Private room,38,1,1,2016-04-02,0.03,1,0 +4821786,Sunny & Cozy 1 Bedroom Apartment,1543006,Sophia,Brooklyn,Bedford-Stuyvesant,40.68675,-73.93749,Entire home/apt,100,2,3,2015-09-18,0.06,1,0 +4822057,Room in Airy Williamsburg Apt,19660044,Jennifer,Brooklyn,Williamsburg,40.70816,-73.94244,Private room,103,1,7,2016-05-31,0.13,1,0 +4822181,"Amazing 2BR (5) UES, (MIN 30 DAYS)",23772724,Elem,Manhattan,Upper East Side,40.77427,-73.95325,Entire home/apt,99,30,8,2019-04-23,0.28,15,270 +4822324,NYC Duplex + Terrace in East 60s ,24832100,Lindsay,Manhattan,Upper East Side,40.76172,-73.96074,Entire home/apt,185,3,7,2016-07-24,0.13,1,0 +4822557,Cozy room in Brooklyn!!,24832418,Patrick,Brooklyn,Bedford-Stuyvesant,40.69253,-73.94681,Private room,90,1,0,,,1,0 +4822822,Luxury Building $80 per night,11708118,Brian,Manhattan,Financial District,40.70373,-74.00827,Private room,86,4,2,2016-08-29,0.06,1,0 +4823105,Cozy Affordable Room Available In NYC!!,24835471,Olga,Manhattan,Washington Heights,40.84359,-73.94134,Private room,40,3,23,2019-06-29,0.43,1,70 +4823386,Lovely 2 Bedroom Family Apartment Close to City,16514175,Karen,Queens,Elmhurst,40.74632,-73.88681,Entire home/apt,165,2,58,2019-06-14,2.10,5,163 +4823529,Perfectly Located UpperWest Futon,6677425,Isabel,Manhattan,Upper West Side,40.79584,-73.96381,Shared room,35,2,134,2019-05-23,2.48,2,66 +4823682,Cat-sit in our Awesome Apartment!,2921076,Kelly,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94634,Entire home/apt,2000,7,3,2015-12-30,0.05,1,0 +4823910,Spacious and light-filled Manhattan apartment,10503302,Florence,Manhattan,Upper West Side,40.79228,-73.97414,Entire home/apt,117,14,0,,,1,15 +4823959,Private room for 2 in cool BK apt,24633966,Phil,Brooklyn,Kensington,40.64469,-73.97086,Private room,50,14,0,,,1,0 +4824052,"Big, bright Park Slope 2.5 bedroom!",24839116,Ainsley,Brooklyn,South Slope,40.66437,-73.9823,Entire home/apt,175,3,14,2017-07-22,0.25,1,0 +4824146,Spacious Apt in Bushwick,24840863,Daniel,Brooklyn,Bushwick,40.70092,-73.92945,Entire home/apt,95,1,1,2015-01-04,0.02,1,0 +4824211,Bright Comfy Room in East Village,24841295,Micheline,Manhattan,East Village,40.72503,-73.97696,Private room,70,2,5,2017-06-08,0.14,1,0 +4824310,Lovley loft in Williamsburg!,7402258,Golsana,Brooklyn,Williamsburg,40.7091,-73.94279,Entire home/apt,100,3,18,2019-05-29,0.33,1,3 +4824361,Modern Living,1445060,Chi,Brooklyn,Williamsburg,40.70777,-73.94816,Private room,150,4,3,2018-11-09,0.21,1,362 +4824521,Cozy 1 Bedroom Apt In Great Location!,24842701,Mel,Manhattan,Upper East Side,40.77493,-73.95874,Entire home/apt,169,3,130,2019-07-01,2.36,1,274 +4824808,Cozy Room in Crown Heights,24844547,Cristina,Brooklyn,Crown Heights,40.66934,-73.94976,Private room,50,1,0,,,1,0 +4824847,Times Square Midtown Mahattan Room,20934972,Kai,Manhattan,Kips Bay,40.74246,-73.9767,Private room,99,1,5,2015-11-03,0.11,1,0 +4824849,2 Bedrooom- near Columbus Circle,24844621,Paul,Manhattan,Midtown,40.76609,-73.98038,Entire home/apt,200,1,0,,,1,0 +4825359,Bright & Spacious GP/N Williamsburg,3800548,Phoebe,Brooklyn,Greenpoint,40.73176,-73.95371,Private room,70,4,6,2017-01-01,0.11,1,0 +4828336,Spacious Sunny 2 Bedroom Close to the Subway!,7552191,Lindsey,Brooklyn,Bedford-Stuyvesant,40.68515,-73.91981,Entire home/apt,130,14,33,2019-06-30,0.72,1,105 +4829068,Studio - Midtown East,17883343,Myles,Manhattan,Murray Hill,40.74768,-73.97562,Private room,125,1,0,,,1,0 +4829088,1BR apartment in the heart of SoHo,854458,Brian,Manhattan,Greenwich Village,40.72812,-73.99983,Entire home/apt,180,2,11,2017-05-22,0.22,1,0 +4829779,Sunlit Room in Brooklyn Brownstone,1631807,Jillian,Brooklyn,Clinton Hill,40.6868,-73.96517,Private room,80,5,1,2016-07-07,0.03,1,0 +4830154,"Furnished room with Bed, Closet, TV",24865745,Subramanian,Queens,Ozone Park,40.68337,-73.8431,Private room,45,1,0,,,1,0 +4830158,Loft in Brooklyn / Clinton Hill,21191214,Alex,Brooklyn,Clinton Hill,40.68348,-73.96394,Entire home/apt,99,5,0,,,1,0 +4830494,Charming & sunny studio apartment,2489199,Michael,Manhattan,Harlem,40.82376,-73.94492,Entire home/apt,99,25,16,2019-07-01,0.30,1,157 +4830799,bright and clean! vintage style!,3677131,Alex,Brooklyn,Red Hook,40.67627,-74.00625,Private room,99,1,58,2019-06-14,1.15,1,88 +4831603,Cozy Lower East Side Apartment,24872048,Kelly,Manhattan,Lower East Side,40.72229,-73.98913,Entire home/apt,225,1,0,,,1,0 +4831703,Astoria Gem: 15min. From Manhattan,24614110,Adreanna,Queens,Astoria,40.76042,-73.92073,Entire home/apt,150,1,3,2015-05-15,0.06,1,0 +4831795,Walk everywhere! Soho Charm. Bargain *NOW* Nolita,323771,Maxi,Manhattan,Nolita,40.72351,-73.99627,Entire home/apt,100,3,0,,,1,13 +4832126,HUGE SUNNY SUITE w Private Entrance 3 min to city,6707311,T-Po,Brooklyn,Williamsburg,40.71895,-73.95604,Private room,73,2,39,2019-06-13,0.71,1,260 +4833294,Spacious Apt-1 BDRM & Office,24878584,Spencer,Manhattan,East Village,40.72999,-73.98764,Private room,180,1,0,,,1,0 +4833671,Comfortable and Cozy!,20038668,Sheila,Manhattan,Harlem,40.82899,-73.95024,Private room,80,1,9,2019-06-30,0.19,1,364 +4836986,Private bedroom,24895956,Giorgi,Manhattan,East Harlem,40.78712,-73.95365,Private room,80,1,39,2017-06-16,0.91,1,189 +4837865,"Spacious, sunlit room w/balconies by Central Park",19636200,Sonam And Roommates,Manhattan,Upper West Side,40.77692,-73.97977,Private room,85,1,34,2019-07-02,0.71,1,8 +4837935,New Large 1 Bedroom East Village,24899760,Christopher,Manhattan,Stuyvesant Town,40.72912,-73.97624,Entire home/apt,175,4,0,,,1,0 +4838260,Large private room in the sky,20357771,Jun,Brooklyn,Williamsburg,40.71114,-73.94438,Private room,100,1,1,2015-05-19,0.02,1,0 +4838271,Modern fully furnished bedroom,1304390,Barry,Brooklyn,Bushwick,40.70037,-73.92821,Private room,85,4,2,2018-07-02,0.07,1,364 +4838540,"103rd st/lex/clean, Comfort and big room",10600973,Mj,Manhattan,East Harlem,40.79113,-73.94792,Private room,65,5,7,2018-05-14,0.22,1,80 +4839016,Queen Room in Penthouse Fidi Apt,24903878,Herbie,Manhattan,Financial District,40.70465,-74.00773,Private room,150,1,1,2015-01-01,0.02,1,0 +4839323,Perfect 2-bedroom in the best part of Williamsburg,988069,Angelina,Brooklyn,Williamsburg,40.71983,-73.96465,Entire home/apt,249,30,0,,,1,0 +4839357,1 Bedroom apartment with Backyard ,854567,Oketo,Brooklyn,Bushwick,40.68843,-73.91577,Private room,40,1,0,,,2,0 +4839805,Beautiful Room by Central Park,6430105,Lisa,Manhattan,Upper West Side,40.77773,-73.97764,Private room,200,1,1,2015-06-22,0.02,1,0 +4839932,"Super spacious cozy one-bedroom apartment, Astoria",24907501,Milena,Queens,Astoria,40.76974,-73.91819,Entire home/apt,124,14,8,2019-01-03,0.15,1,0 +4840211,Cozy Queen BR in Hell's Kitchen,24821875,Rosalia,Manhattan,Hell's Kitchen,40.76451,-73.9882,Private room,200,1,0,,,1,0 +4840381,"Chill 2B UWS, close to A,C,E/1,2,3",12730517,Robert,Manhattan,Upper West Side,40.80107,-73.96065,Entire home/apt,50,1,1,2016-03-16,0.02,1,0 +4840794,1 Bedroom Apt. in Nolita/Chinatown,24833732,Bobby,Manhattan,Little Italy,40.71763,-73.99753,Entire home/apt,160,2,6,2017-04-17,0.12,1,0 +4840841,"Quiet, Modern Gem in LES w balcony!",4244200,Claire,Manhattan,Lower East Side,40.71942,-73.98605,Entire home/apt,200,2,0,,,1,0 +4840977,Spacious Chinatown/LES 2 Bedroom,24913141,Mara,Manhattan,Lower East Side,40.7182,-73.99326,Entire home/apt,300,6,0,,,1,0 +4841187,Well-kept Studio/♥ of Chelsea,14923355,Ra-Ey,Manhattan,Chelsea,40.74583,-74.00405,Entire home/apt,200,3,7,2017-07-12,0.13,1,0 +4841431,Spacious 1BR By Prospect Park,24915465,Oded,Brooklyn,Prospect-Lefferts Gardens,40.66244,-73.95813,Entire home/apt,139,1,44,2016-05-08,0.80,1,0 +4841843,"Huge, Sunny Bedroom in Bushwick",15615036,Ronnie,Brooklyn,Bushwick,40.69091,-73.91402,Private room,49,4,19,2018-11-15,0.35,2,0 +4842054,Cozy Bedroom in hip Williamsburg,24918898,Javier,Brooklyn,Williamsburg,40.70765,-73.95116,Private room,55,4,13,2016-06-14,0.24,2,0 +4842112,2 bed / 2 bath East Village top floor AMAZING,7065271,Sophie,Manhattan,East Village,40.72551,-73.98542,Entire home/apt,260,10,4,2018-08-31,0.08,1,31 +4842507,Two Bedrooms in Chelsea Apartment,6954001,Arian,Manhattan,Chelsea,40.74372,-73.99682,Private room,150,1,0,,,1,0 +4845237,East Village Beauty,12485770,Raanan,Manhattan,East Village,40.72829,-73.98072,Entire home/apt,110,30,8,2018-08-14,0.18,9,280 +4846199,Beautiful Boerum Hill apartment!,5545129,Brady,Brooklyn,Boerum Hill,40.68896,-73.98961,Entire home/apt,110,5,2,2015-10-12,0.04,1,0 +4846449,Perfect room/Great Safe Location 20mins to TimesSq,6486116,Ari,Manhattan,East Harlem,40.78804,-73.94906,Private room,81,1,142,2019-06-01,2.81,4,223 +4846754,Basement apartment in bedstuy,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68266,-73.95032,Entire home/apt,60,1,23,2019-07-05,1.99,15,83 +4846877,A Crown Heights Holiday ,6706914,Leanne,Brooklyn,Crown Heights,40.67278,-73.95688,Private room,65,1,1,2015-01-04,0.02,2,0 +4847312,Clinton Hill Guest Room,24941494,Rudy And Joan,Brooklyn,Clinton Hill,40.68924,-73.96453,Private room,175,3,0,,,1,83 +4847624,Cozy 1BR in Brooklyn Heights ,22930715,Natalie,Brooklyn,Brooklyn Heights,40.69191,-73.99331,Entire home/apt,130,2,1,2015-01-03,0.02,1,0 +4847648,Spacious Williamsburg Home,157051,Agatha,Brooklyn,Williamsburg,40.71411,-73.9495,Entire home/apt,240,2,9,2017-12-28,0.20,1,0 +4848500,Cesco's House,6902571,Francesco,Brooklyn,Bedford-Stuyvesant,40.68886,-73.95212,Entire home/apt,130,2,6,2018-04-24,0.29,1,0 +4848528,"STUNNING 1BD BRIGHT UNIT, RENOVATED",1475015,Mike,Manhattan,Hell's Kitchen,40.76719,-73.98533,Entire home/apt,97,30,6,2017-08-09,0.12,52,365 +4849266,Room for rent in Sheepshead bay,24950473,Dasha,Brooklyn,Sheepshead Bay,40.58414,-73.95489,Private room,50,2,0,,,1,0 +4849703,Huge Loft In heart of Bushwick,21209568,Greg,Brooklyn,Bushwick,40.70516,-73.91946,Entire home/apt,88,7,2,2015-09-27,0.04,1,0 +4849864,Cozy Quiet Apt 10min to Manhattan,2464823,Andy,Queens,Astoria,40.7643,-73.92637,Entire home/apt,112,7,5,2016-10-04,0.10,1,0 +4850000,1 Bedroom in Bushwick APT,22219331,Sam,Brooklyn,Bushwick,40.70141,-73.91782,Private room,65,1,0,,,1,0 +4853011,Charming apt in beautiful Brooklyn!,24967136,Paul,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93183,Entire home/apt,105,7,53,2018-10-28,1.12,2,77 +4853287,Currently Not Avail,23621417,Agel,Brooklyn,Williamsburg,40.70969,-73.94925,Entire home/apt,120,1,0,,,1,0 +4853365,2 Bedroom midcentury Brooklyn Brownstone apartment,414477,Ajay,Brooklyn,Crown Heights,40.6776,-73.94918,Entire home/apt,70,2,15,2019-03-24,0.27,1,18 +4853437,Comfortable Room in Great Location,24880134,Cam,Brooklyn,Prospect Heights,40.67935,-73.96912,Private room,75,3,1,2018-09-15,0.10,3,0 +4853647,Modern & luxurious close to trains,6162041,Nick,Queens,Ozone Park,40.68559,-73.8496,Entire home/apt,99,2,129,2019-06-30,2.33,1,344 +4853870,Amazing Brooklyn Heights 2BR+patio,11064999,Andrei,Brooklyn,Brooklyn Heights,40.69454,-73.99547,Entire home/apt,275,5,0,,,1,0 +4854552,Apartment Downtown New York ,24973819,Wen,Manhattan,Stuyvesant Town,40.73001,-73.97579,Private room,600,1,0,,,1,0 +4855004,Cozy UWS room with amazing Hudson view,12220,Corina E.,Manhattan,Upper West Side,40.77904,-73.98899,Private room,90,1,24,2019-05-18,0.46,3,341 +4855612,Cozy Spacious Apartment,24448659,Christian,Brooklyn,Midwood,40.62971,-73.95069,Entire home/apt,60,3,1,2015-01-02,0.02,1,0 +4855835,"Brooklyn luxury bldg, with rooftop and balcony!",2306320,Michelle,Brooklyn,Crown Heights,40.6785,-73.96041,Entire home/apt,125,1,7,2016-10-30,0.20,1,0 +4856857,Great location with private access & private bath,14747290,Corinne,Brooklyn,Bushwick,40.70583,-73.91658,Private room,65,10,4,2018-07-13,0.27,1,349 +4857075,Beautiful apartment in Bushwick,4306959,Arikia,Brooklyn,Bushwick,40.69986,-73.9298,Entire home/apt,159,3,30,2018-01-01,0.54,1,0 +4857619,Entire One-Bedroom Apartment Near Columbia Univers,19263941,John,Manhattan,Morningside Heights,40.80442,-73.96338,Entire home/apt,145,5,3,2016-01-02,0.06,1,0 +4859716,Cozy Room - Best Manhattan Location,3449749,Jeana Paola,Manhattan,Upper East Side,40.76203,-73.96183,Private room,130,1,0,,,1,0 +4859903,Entire 1 Bedroom 1 Bath Central Park APT,15398647,Kathy,Manhattan,Upper West Side,40.7838,-73.97266,Entire home/apt,255,2,47,2019-06-08,0.92,1,352 +4860430,Location is Everything!,25002053,Shailah,Manhattan,Upper West Side,40.78866,-73.96908,Private room,90,2,157,2019-06-23,2.95,1,85 +4860650,Happy Brooklyn! Happy Konakolo!,25001808,Hanayo,Brooklyn,South Slope,40.66003,-73.98567,Entire home/apt,150,3,73,2019-06-18,1.34,1,120 +4860876,Huge Classic Williamsburg 2BR loft,2503221,Shuang,Brooklyn,Williamsburg,40.72104,-73.96034,Entire home/apt,295,2,75,2019-06-17,1.50,1,339 +4861046,Beautiful light cozy apartment,7355953,Carmen,Queens,Astoria,40.75741,-73.92509,Entire home/apt,125,1,0,,,1,0 +4863176,Large room in Uptown Manhattan near Cloisters,25015010,Irina,Manhattan,Inwood,40.86648,-73.92754,Entire home/apt,75,1,5,2016-09-01,0.11,1,31 +4863419,NEW LISTING-Great for Traveler! Duplx 3 Bdrm/2 Bth,25017014,Quincy,Brooklyn,Bedford-Stuyvesant,40.68662,-73.9479,Entire home/apt,188,2,23,2019-07-02,3.47,1,75 +4865377,Spacious Studio Apartment ,11457159,Logan,Manhattan,Upper East Side,40.78335,-73.94822,Entire home/apt,130,1,2,2017-10-25,0.09,1,0 +4865387,"Spacious, Cozy 1 Bedroom",7017213,Lenore,Brooklyn,Flatbush,40.64919,-73.96129,Entire home/apt,72,1,3,2016-06-05,0.07,1,0 +4865454,"Cozy room in Queens, 20 min to NYC",5650180,Jessica,Queens,Elmhurst,40.74513,-73.8825,Private room,45,3,12,2019-04-28,0.37,2,201 +4866426,Private Room in Prime Brooklyn Spot,2346300,Donna And Joaquin,Brooklyn,Boerum Hill,40.68983,-73.99114,Private room,80,1,168,2019-06-30,3.11,1,272 +4866620,Private room on Upper East Side,1292274,Forest,Manhattan,Upper East Side,40.78343,-73.94764,Private room,94,1,51,2019-06-11,0.93,2,88 +4866867,"Brooklyn. Room, private bath & private entrance",1113080,Audrey,Brooklyn,Sunset Park,40.64605,-74.00338,Private room,70,22,16,2019-06-02,0.29,3,173 +4866875,2BD loft with 180 Manhattan view,87473,Sibin,Brooklyn,Greenpoint,40.72996,-73.95302,Entire home/apt,150,6,1,2019-01-03,0.16,1,0 +4867016,Charming Brooklyn Getaway,1968327,Azza,Brooklyn,Bedford-Stuyvesant,40.69268,-73.95575,Private room,70,2,6,2019-05-20,0.12,1,365 +4867504,"Quite Room, Private Bath Easy Tra!",10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.6815,-73.91267,Private room,42,30,3,2016-01-02,0.05,5,348 +4867749,Sunny apt in heart of The Village!,4952537,Eric,Manhattan,Greenwich Village,40.72904,-74.00116,Entire home/apt,225,3,0,,,1,0 +4867876,Sunny and Spacious Brooklyn Apt,25037051,Ruth,Brooklyn,Crown Heights,40.67006,-73.9553,Private room,70,1,10,2017-01-02,0.18,2,0 +4868048,Room in Down town Brooklyn Parkslop,15442902,Akim,Brooklyn,Boerum Hill,40.6832,-73.98109,Private room,60,1,0,,,1,0 +4868150,Gorgeous quiet & central NYC apt!,3336995,Tamara,Manhattan,Hell's Kitchen,40.76736,-73.98383,Entire home/apt,180,2,8,2017-09-24,0.15,1,10 +4868571,Beautiful & Cozy true 2 Bedroom in SoHo/Nolita,25043292,Vane,Manhattan,Nolita,40.72011,-73.99465,Entire home/apt,150,3,2,2019-01-02,0.08,2,0 +4869988,Private Room - 2 blocks from Central Park,1509237,Leandro,Manhattan,East Harlem,40.7951,-73.94716,Private room,105,2,88,2019-05-27,2.03,2,266 +4870239,2 bdrms in 3 Bdrm Lovely Brownstone,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69627,-73.94371,Entire home/apt,100,5,9,2018-11-24,0.17,3,262 +4871966,Williamsburg Brooklyn Apartment,3896287,Andrew And Clara,Brooklyn,Williamsburg,40.71396,-73.94021,Entire home/apt,225,4,9,2016-07-18,0.16,1,0 +4873207,Bright Beautiful Spacious 1 bedroom,12708335,Sara,Brooklyn,Crown Heights,40.66948,-73.95157,Entire home/apt,125,15,0,,,1,0 +4873690,"Private room, 10min to Times Square",4712698,Jonathan,Queens,Long Island City,40.74282,-73.94994,Private room,82,2,116,2019-05-25,2.10,1,58 +4873699,"Classic Tenement 1BR, Center of LES",22840947,Michael,Manhattan,Chinatown,40.71633,-73.99133,Entire home/apt,140,1,0,,,1,0 +4874334,2 Bedroom Apt in downtown Brooklyn,25073318,Brook,Brooklyn,Fort Greene,40.69203,-73.97088,Entire home/apt,250,4,0,,,1,0 +4874519,Garden Spot in Bushwick,6439895,Bradley,Brooklyn,Bushwick,40.70253,-73.91889,Private room,69,4,0,,,1,0 +4874735,Beautiful Apt in Prime NY Location,516877,Julie,Manhattan,Hell's Kitchen,40.76332,-73.9863,Entire home/apt,275,2,0,,,1,0 +4877884,Bright + Stylish *THREE* Bedroom BK Apt Near Train,25093848,Faye + Amiyr,Brooklyn,Bedford-Stuyvesant,40.68175,-73.9153,Entire home/apt,145,3,209,2019-06-18,3.79,1,219 +4879530,LUXURY PRIVATE MANHATTAN APARTMENT,25102191,Andy,Manhattan,East Harlem,40.80732,-73.93972,Entire home/apt,125,7,0,,,1,0 +4879911,"Sunny, spacious bedroom with a view",1473630,Hillela,Brooklyn,Gowanus,40.68234,-73.98168,Private room,100,1,2,2015-04-25,0.04,1,0 +4880277,Large 1 Bedroom Artist Loft in the Lower East Side,18254644,Sarah,Manhattan,Lower East Side,40.71951,-73.98449,Entire home/apt,100,5,131,2019-01-01,2.40,1,108 +4880542,Artists Home with Large Sunny Backyard+Parking,66276,Lee,Brooklyn,Williamsburg,40.7077,-73.94785,Entire home/apt,190,6,8,2019-01-02,0.16,1,5 +4880811,A writer's den in Nolita ...,3568184,Brock,Manhattan,SoHo,40.72219,-73.99742,Entire home/apt,200,1,49,2016-07-29,0.94,1,0 +4880985,"Modern, south facing and spacious UWS 1BR",25110559,Max,Manhattan,Upper West Side,40.77669,-73.97696,Entire home/apt,125,31,1,2015-04-01,0.02,1,41 +4881017,"Spacious, 3 bedrooms, 2 bath",23439479,Victoria,Manhattan,Inwood,40.86494,-73.92672,Entire home/apt,300,4,3,2018-10-08,0.06,2,316 +4881420,LARGE COZY STUDIO BEST LOCATION - PARADISIAC OASIS,25112856,Mio,Manhattan,West Village,40.73933,-74.00313,Entire home/apt,159,4,40,2019-06-24,0.83,1,267 +4884601,1BD UWS Apt. 1 block from C. Park,12417880,Carson,Manhattan,Upper West Side,40.79527,-73.96486,Entire home/apt,225,2,0,,,1,0 +4885240,2BR Entire Floor Apt in Flatiron,210602,Deepen,Manhattan,Chelsea,40.73932,-73.99032,Entire home/apt,300,1,0,,,1,0 +4885569,"Heart of Greenwich Village - Large, Clean Space",17056215,Yaniv And Vanessa,Manhattan,Greenwich Village,40.73055,-74.0007,Entire home/apt,180,2,28,2018-12-31,0.58,1,0 +4885595,1 bd apt in Astoria,25134822,Irena,Queens,Astoria,40.77029,-73.92493,Entire home/apt,99,1,38,2019-06-28,0.74,2,263 +4885673,Stylish Apartment with Spacious Private Room,24943630,Sarah,Manhattan,Greenwich Village,40.73222,-73.9969,Private room,120,4,19,2019-07-05,0.35,1,339 +4885975,Large Bedroom by Grand Central Station in NYC,21817218,Jason,Manhattan,Midtown,40.75163,-73.9722,Private room,90,7,27,2018-08-09,0.50,1,35 +4886678,Big & Sunny room w Private Entrance,2470606,Ben,Brooklyn,Greenpoint,40.72418,-73.94757,Private room,59,1,2,2015-06-02,0.04,1,0 +4887250,VICTORIAN SUNFILLED APT DREAM VIEW,1705071,Nika,Queens,Long Island City,40.74741,-73.94712,Private room,95,1,141,2019-06-24,2.77,2,331 +4887473,Cozy Brownstone Room Near NYU Hospital,24982697,Fidelia,Brooklyn,Sunset Park,40.64132,-74.01767,Private room,65,30,11,2019-04-12,0.20,2,312 +4887638,"Sunnyside, New York - Stay and get connected",25145883,Sp,Queens,Sunnyside,40.74461,-73.91514,Private room,40,2,2,2019-06-29,2,1,5 +4887727,Spend the Fall in NoLita!,3339901,Meghan,Manhattan,Nolita,40.72285,-73.99409,Entire home/apt,250,4,7,2015-10-21,0.14,1,0 +4889948,Cozy Quiet Room in Williamsburgs,17928071,Mabel,Brooklyn,Williamsburg,40.71009,-73.9575,Private room,85,3,23,2019-04-01,0.42,2,280 +4890335,Spacious Rm in 3br apt-private bath,7920086,Susan,Manhattan,East Harlem,40.78615,-73.94295,Private room,71,30,19,2018-10-28,0.35,3,0 +4891172,Peaceful 1BD in Historic W. Harlem,14813211,Vriana,Manhattan,Harlem,40.81964,-73.9468,Entire home/apt,109,4,0,,,1,0 +4891441,"166 Reviews, Single-Family House",3417940,Jeremy,Brooklyn,Gowanus,40.67308,-73.99333,Entire home/apt,262,2,166,2017-09-29,3.06,1,0 +4891477,Bedford Loft in Williamsburg,6438118,Zachary,Brooklyn,Williamsburg,40.71279,-73.9641,Private room,55,3,0,,,1,0 +4891616,"Very spacious, clean Manhattan Apt",25168328,Daniel,Manhattan,Harlem,40.82389,-73.94033,Entire home/apt,70,1,1,2016-02-01,0.02,1,0 +4891701,NYC GORGEOUS LIGHT SPACE RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82191,-73.95736,Entire home/apt,109,14,3,2015-01-03,0.05,3,0 +4892675,20 min from Union Square,25175433,Pablo,Queens,Ridgewood,40.69958,-73.90825,Private room,40,3,0,,,1,0 +4896937,Cute 1 Bedroom in 2BR Apartment,9845403,Lenur,Queens,Long Island City,40.75358,-73.92336,Private room,70,1,0,,,1,0 +4897673,Room available for long term,14035846,Monica,Queens,Sunnyside,40.74383,-73.92077,Private room,50,15,2,2018-08-12,0.17,1,341 +4900034,Gorgeous Loft apt. Prime Location with Rooftop,14289427,Francesca,Manhattan,Chinatown,40.71579,-73.99253,Private room,120,5,8,2018-11-21,0.15,3,318 +4901020,Summer sublet sunny room in Harlem,10450922,Prerna,Manhattan,Harlem,40.8076,-73.95274,Private room,80,50,0,,,1,0 +4901269,Brooklyn Heights ,6285979,Alexandra,Brooklyn,Brooklyn Heights,40.6945,-73.99543,Entire home/apt,200,3,6,2016-11-10,0.11,1,0 +4901424,HOME SWEET HOME - VISIT NYC!,25230336,Juan Carlos,Brooklyn,Clinton Hill,40.68382,-73.96292,Entire home/apt,300,3,0,,,1,0 +4901617,"Bright, Spacious 1BR - West Village",16460889,Daniel,Manhattan,Greenwich Village,40.72969,-73.9995,Entire home/apt,175,1,4,2016-01-03,0.08,1,0 +4902025,BIG ROOM IN BROOKLYN!! ,5564276,Monica,Brooklyn,Bedford-Stuyvesant,40.68998,-73.95646,Private room,75,1,0,,,1,0 +4902143,"Large One Bedroom Apartment, 15 mins to Manhattan",557918,Bill & Regina,Queens,Sunnyside,40.74628,-73.9196,Entire home/apt,119,6,15,2019-03-09,0.46,1,1 +4902497,CLOSE- EAST SIDE HOSPITALS- 2 Bedroom Apt 5C,25237492,Juliana,Manhattan,Upper East Side,40.76067,-73.9602,Entire home/apt,165,30,11,2018-03-31,0.21,34,274 +4904582,Boutique Retreat,25249481,Jacqueline,Bronx,Mount Hope,40.85062,-73.90251,Private room,40,14,5,2017-06-17,0.13,1,322 +4905118,TOWNHOUSE NEAR RSD PARK - Spacious 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper West Side,40.78286,-73.98339,Entire home/apt,265,30,14,2018-11-04,0.26,34,274 +4905248,*DYLAN* Exquisite 1 BR & Terrace - Contemporary,25237492,Juliana,Manhattan,Upper West Side,40.78141,-73.98445,Entire home/apt,130,30,12,2019-04-18,0.23,34,292 +4905337,"Clean and Serene Kensington, Bk",13772270,Mariano,Brooklyn,Kensington,40.6461,-73.97332,Entire home/apt,85,2,3,2017-05-10,0.08,1,351 +4906823,Beautiful sunny apt near prospect park!,25263341,Dana,Brooklyn,Crown Heights,40.66412,-73.95591,Private room,70,15,1,2015-12-31,0.02,1,314 +4906961,Gorgeous Waterfront Studio: Williamsburg,551139,Owen,Brooklyn,Williamsburg,40.70666,-73.96526,Entire home/apt,210,3,31,2019-05-13,0.57,1,0 +4907206,New Year's Eve in the Heart of NYC!,25264954,Andrew,Manhattan,Hell's Kitchen,40.7583,-73.99001,Private room,225,1,0,,,1,0 +4907369,Funky and Fresh room in Brooklyn ,25037051,Ruth,Brooklyn,Crown Heights,40.66915,-73.95339,Private room,46,1,8,2017-08-28,0.15,2,333 +4907749,Cosy room in spacious apartment,25268374,Gabriela,Brooklyn,Crown Heights,40.6741,-73.94496,Private room,75,1,0,,,1,0 +4907861,Huge Brooklyn Oasis only 1 block from subway!,25268900,Jessica,Brooklyn,Bushwick,40.70083,-73.91679,Entire home/apt,126,3,98,2019-06-13,1.95,1,180 +4908078,Modern Minimalism w/ Private Bath,25242899,Dave,Brooklyn,Sunset Park,40.65616,-74.00091,Private room,88,4,42,2019-07-01,0.82,1,261 +4908331,Beautiful and Spacious 2 bedroom West Harlem Apt.,25266756,Antoinette,Manhattan,Harlem,40.80739,-73.95159,Entire home/apt,150,5,14,2019-06-20,0.26,1,66 +4908634,Cozy Downtown Brooklyn Apartment,25273326,Dennis,Brooklyn,Fort Greene,40.68528,-73.97528,Entire home/apt,175,1,89,2019-04-28,1.77,1,0 +4908978,"1BR in Murray Hill, E 26th & 2nd Ave (30 DAYS MIN)",23772724,Elem,Manhattan,Hell's Kitchen,40.76102,-73.98882,Entire home/apt,380,30,5,2017-04-18,0.11,15,332 +4909080,2 Stops to MANHATTAN!,25276263,Charles,Brooklyn,Boerum Hill,40.6881,-73.98699,Entire home/apt,500,6,29,2016-09-02,0.53,1,89 +4909427,Oasis in Prime LES,6230230,John,Manhattan,Lower East Side,40.71806,-73.98493,Private room,110,20,13,2016-01-02,0.25,3,0 +4909438,New Year's in the East Village,24127267,Arnell,Manhattan,East Village,40.73037,-73.98268,Entire home/apt,175,1,1,2015-01-02,0.02,1,0 +4916150,Great location in South Manhattan,236659,Justin,Manhattan,Financial District,40.7082,-74.00139,Private room,78,1,1,2015-02-20,0.02,1,0 +4916323,Luxurious 2BD Perfect for Kids,4422415,Damien,Manhattan,Upper East Side,40.77716,-73.94779,Entire home/apt,250,2,11,2019-04-26,0.21,2,358 +4916340,Central Park Suite,81335,Evan,Manhattan,Upper West Side,40.78334,-73.97452,Entire home/apt,125,1,171,2019-07-03,4.63,3,121 +4917122,Beautiful 1 br Williamsburg apt,4445005,Jamaal,Brooklyn,Williamsburg,40.71281,-73.9657,Entire home/apt,200,2,3,2018-08-30,0.10,1,16 +4917217,Labor Day Special: Brooklyn Base Camp,1780076,Ashleigh,Brooklyn,Crown Heights,40.6763,-73.95764,Private room,55,3,0,,,2,0 +4918117,Lovely room!- 15 min to Manhattan!!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68679,-73.92327,Private room,65,2,9,2015-05-20,0.17,4,280 +4920912,Stylish & New Chelsea Apartment,22338025,Kerrie,Manhattan,Chelsea,40.74244,-73.99854,Entire home/apt,175,1,0,,,1,0 +4921548,"*OASIS* 2 BEDROOM, 2 BATH & Garden! Great UWS Area",25237492,Juliana,Manhattan,Upper West Side,40.7813,-73.98319,Entire home/apt,205,30,20,2018-12-27,0.38,34,274 +4924590,Beautiful Apartment near subway,25365628,Brian,Queens,Woodside,40.74468,-73.91102,Entire home/apt,90,1,0,,,1,0 +4925050,"Beautiful Guest Room in Fort Greene, Brooklyn",23069182,Richard,Brooklyn,Fort Greene,40.68346,-73.97214,Private room,100,1,55,2019-06-23,4.16,1,342 +4925368,Great Room with Good Amenities,331579,Marlon,Brooklyn,Bedford-Stuyvesant,40.68744,-73.92322,Private room,60,3,29,2019-06-04,0.60,2,232 +4925517,L♥vely 1BR! Times Square BROADWAY Theatre District,22210080,Kyle,Manhattan,Hell's Kitchen,40.76175,-73.9892,Private room,99,1,318,2019-06-24,5.78,1,0 +4926610,Panoramic City Views in Lux bldg,7537442,Loydeen,Manhattan,East Harlem,40.80315,-73.94017,Private room,50,7,25,2019-06-28,0.50,1,151 +4927853,"All-Inclusive Room, Super Cute Apt",331579,Marlon,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92331,Private room,50,3,32,2019-06-23,0.72,2,329 +4928303,Cozy & Clean #2,23533897,Fatou,Brooklyn,Crown Heights,40.67419,-73.95251,Private room,68,1,91,2019-06-17,1.78,7,329 +4929917,"Huge, Cozy 1BR in the ❤️️ of Harlem",25003560,Adam,Manhattan,Harlem,40.81405,-73.95285,Entire home/apt,125,1,31,2018-09-03,0.57,1,188 +4930306,Charming One Bedroom in Chelsea,25394253,Pete,Manhattan,Chelsea,40.74141,-73.99996,Entire home/apt,175,1,1,2015-02-20,0.02,1,0 +4930683,This cozy space is a newly renovate,25399747,Ron,Brooklyn,Bedford-Stuyvesant,40.68168,-73.9368,Entire home/apt,100,3,91,2019-01-01,2.00,1,160 +4930951,Quiet queen bed in bustling Greenwich Village,15824660,Jack,Manhattan,Greenwich Village,40.7282,-74.00165,Private room,85,2,0,,,1,0 +4931807,Cozy & Quaint,25401356,Krystle,Manhattan,East Harlem,40.79717,-73.93298,Entire home/apt,125,2,7,2016-01-09,0.15,1,0 +4932075,Brooklyn Beauty! Private Bed+Bath,5037211,Mariana,Brooklyn,Greenpoint,40.72023,-73.9479,Private room,118,3,1,2015-09-29,0.02,2,188 +4932139,Luxury in Best Location,25404246,Stacey,Manhattan,Nolita,40.72139,-73.99688,Entire home/apt,346,198,163,2018-11-21,2.96,1,0 +4932714,1 bd Artist Retreat in Brooklyn,25295888,Alanna,Brooklyn,Bedford-Stuyvesant,40.67917,-73.92565,Private room,52,2,16,2017-09-30,0.37,1,0 +4933043,Mid Century Modern 2 Bedroom Apt,864735,Jason,Queens,Astoria,40.75782,-73.92128,Entire home/apt,107,30,15,2018-12-04,0.29,8,311 +4936023,Nice studio in Midtown Manhattan,8183266,Zahid,Manhattan,Midtown,40.75462,-73.96869,Entire home/apt,99,2,168,2019-06-16,3.10,1,46 +4936254,Big & bright 2 bedroom apartment! Lower East Side!,22087408,Dominik,Manhattan,Lower East Side,40.71763,-73.98359,Entire home/apt,150,1,17,2019-07-07,0.36,3,264 +4936694,PenthousPrivate room & bath w roof,2439175,Gary,Brooklyn,Bedford-Stuyvesant,40.69147,-73.94113,Private room,65,4,180,2019-06-17,3.37,1,6 +4937135,Big & bright apt in Harlem!,25439443,Joel,Manhattan,Harlem,40.81831,-73.93833,Entire home/apt,85,30,5,2017-07-31,0.11,1,7 +4941141,Cozy Apt.Near Park/Museums & Subway,15297517,Christopher,Manhattan,Upper East Side,40.78096,-73.9475,Entire home/apt,155,4,9,2015-10-27,0.19,1,0 +4941771,Perfectly Located Brooklyn Studio,25468442,Alexandra,Brooklyn,Prospect Heights,40.67273,-73.96361,Entire home/apt,125,2,34,2017-12-26,0.64,1,0 +4942200,A lovely room in heart of NY,519554,Umut&Deniz,Manhattan,Lower East Side,40.72007,-73.98775,Private room,59,3,36,2019-06-18,0.80,5,349 +4942523,Huge Room 15 min to Grand Central,25473311,Michael,Queens,Sunnyside,40.73835,-73.92636,Private room,70,7,56,2019-01-01,1.18,2,90 +4942985,Quirky BrwnStone Studio in Harlem ,25476493,Taylor,Manhattan,Harlem,40.80607,-73.94805,Entire home/apt,115,1,0,,,1,0 +4943742,Beautiful full-service UWS studio ,3834614,Jilly,Manhattan,Upper West Side,40.79432,-73.97637,Private room,175,10,0,,,1,0 +4946624,Stylish Apartment in post-war walk-up Building,25494876,Vivienne,Manhattan,Lower East Side,40.71959,-73.9919,Entire home/apt,149,2,14,2018-09-09,0.28,1,0 +4947174,Open Room for 12 Days this February,25412718,Benjamin,Brooklyn,Crown Heights,40.66948,-73.93638,Private room,50,5,0,,,1,0 +4947515,Your Home with View in Greenpoint!,1556712,Margrethe,Brooklyn,Greenpoint,40.73208,-73.95653,Entire home/apt,190,3,32,2019-06-04,0.60,1,265 +4948928,HUGE 1 BED@TIMES SQUARE@BRAND NEW!!,914838,Lior,Manhattan,Hell's Kitchen,40.76537,-73.99438,Entire home/apt,80,20,5,2017-01-17,0.15,7,346 +4948953,Greenpoint apartment,19965673,Amanda,Brooklyn,Greenpoint,40.72086,-73.94609,Private room,75,1,0,,,1,0 +4950357,"Quiet Room, Near Columbia University & Subway",8253604,James & Shaun,Manhattan,Harlem,40.81561,-73.95264,Private room,89,1,203,2019-06-28,3.89,2,162 +4950807,Amazing Central Park view,25517905,Andreias,Manhattan,Upper West Side,40.79751,-73.96168,Private room,123,3,176,2019-06-21,3.39,3,253 +4951402,Best Location on the UWS!!,10795846,Sasha,Manhattan,Upper West Side,40.78936,-73.97502,Private room,78,2,171,2018-01-14,3.43,2,0 +4952989,Sun-Filled Apartment 1 Minute From Subway,25379501,Rivka,Brooklyn,Crown Heights,40.66585,-73.94993,Private room,62,1,44,2019-06-23,1.26,1,77 +4956293,South Slope Pied-A-Terre Studio,7463662,Nick,Brooklyn,South Slope,40.66599,-73.9869,Entire home/apt,120,2,149,2018-06-14,2.76,1,0 +4956469,Contemporary & Clean 1 bdrm Apartment(Lower Level),25537637,Emmanuel,Queens,Bayside,40.7583,-73.77232,Entire home/apt,80,2,123,2019-07-05,4.69,1,108 +4956896,"Modern, Bright, One Bedroom",8951256,Solomon,Manhattan,Lower East Side,40.71316,-73.9916,Entire home/apt,180,3,38,2019-06-07,0.81,1,36 +4957358,A Romantic Loft plus terrace Heart of Brooklyn,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93141,Entire home/apt,145,2,222,2019-06-26,4.15,4,109 +4958223,Beautiful Central Park View,25517905,Andreias,Manhattan,Upper West Side,40.7962,-73.96156,Private room,99,1,277,2019-06-23,5.44,3,294 +4961949,Huge Bright 1BR+Office in Downtown Manhattan NYC!,1649951,Sameer,Manhattan,Lower East Side,40.72091,-73.98475,Entire home/apt,300,3,57,2019-06-23,1.12,1,168 +4963215,East Village Floor Thru plus Garden,7245581,Michael,Manhattan,East Village,40.72251,-73.97677,Entire home/apt,87,100,5,2019-01-02,0.10,19,7 +4963237,"DOMINIQUE'S NYC cosy,2 bedrm crashPad*Stay here*",310670,Vie,Bronx,Eastchester,40.87829,-73.83471,Entire home/apt,155,2,11,2019-05-19,0.29,13,348 +4963511,Dominiq's NY cosy 3bedrm crashpad*metro*wifi*$$ale,310670,Vie,Bronx,Eastchester,40.88017,-73.83484,Entire home/apt,250,1,15,2019-06-02,1.08,13,357 +4965152,Stylish and cozy SOHO loft bedroom,14854832,Alix,Manhattan,SoHo,40.72101,-74.00189,Private room,130,1,9,2016-12-16,0.17,1,0 +4966559,cozy room 5 minutes to manhattan,25602663,Mizo,Queens,Long Island City,40.75202,-73.93588,Shared room,65,4,1,2018-10-16,0.11,2,1 +4967004,Funky Union Square Apartment,2007148,Chris,Manhattan,Gramercy,40.73721,-73.98887,Entire home/apt,156,3,4,2017-01-03,0.08,1,0 +4967098,"Bronx, 1Bdrm in 3Bdrm Apt.",25605654,Cindy,Bronx,Morris Park,40.85465,-73.85669,Private room,50,1,2,2015-02-23,0.04,1,0 +4967114,Beautiful One Bedroom Apartment,25605887,Cindy,Manhattan,Hell's Kitchen,40.7666,-73.98475,Entire home/apt,450,1,0,,,1,0 +4967258,private room avail in lovely BK apt,25082897,Fen,Brooklyn,Bushwick,40.70516,-73.91609,Private room,40,1,0,,,1,0 +4968633,Private Cozy Bright Brooklyn Studio,248490,Leecia,Brooklyn,Bedford-Stuyvesant,40.68045,-73.93796,Entire home/apt,95,3,51,2019-07-02,1.19,2,194 +4968798,Room in Jackson Heights (Queens),23345098,Jorge,Queens,East Elmhurst,40.75703,-73.87667,Private room,45,7,30,2019-04-14,0.56,1,115 +4968817,Hostal : FULL SIZE BUNK BED ( Bottom on floor),2793778,Fernando,Queens,Forest Hills,40.71543,-73.83564,Shared room,60,4,45,2019-04-12,0.87,5,0 +4970846,GREAT ROOM IN HELL'SKITCHEN!!,9271872,Anthony,Manhattan,Hell's Kitchen,40.76543,-73.99154,Private room,100,4,117,2019-06-28,2.44,2,162 +4973452,Canal Street bedroom ,693815,Jimmy,Manhattan,Chinatown,40.71652,-73.99801,Private room,75,1,0,,,1,0 +4973520,Sunny Room near Central Park,12342828,Marco,Manhattan,East Harlem,40.79399,-73.94255,Private room,84,4,99,2019-06-28,2.06,2,11 +4974843,Charming private Studio,25641892,Tonia,Staten Island,West Brighton,40.63182,-74.124,Entire home/apt,70,2,196,2019-06-21,3.63,1,231 +4976848,a cozy room in manhattan!,519554,Umut&Deniz,Manhattan,Lower East Side,40.71904,-73.98962,Private room,69,2,80,2019-06-24,1.49,5,331 +4976919,"Huge artist loft, heart of W'Burg!",373019,Leah,Brooklyn,Williamsburg,40.71189,-73.94632,Private room,62,30,3,2015-09-29,0.06,1,319 +4977744,Lower East Side Gem,10350245,Brian,Manhattan,Lower East Side,40.72076,-73.98925,Entire home/apt,200,1,1,2015-01-18,0.02,1,0 +4977756,1bd in fantastic BK location,25659180,Justin,Brooklyn,Crown Heights,40.6729,-73.96003,Entire home/apt,100,2,4,2016-04-29,0.08,1,0 +4978214,The Golden Room,3737351,Lawrence,Brooklyn,Canarsie,40.64027,-73.91751,Private room,45,4,33,2019-06-11,0.66,1,323 +4978241,CHARMING GARDEN APT IN TOWNHOUSE,271527,Richard,Manhattan,Harlem,40.81007,-73.94007,Entire home/apt,170,3,52,2019-06-24,1.00,2,316 +4978607,Cute and Cozy UWS Studio,2316247,Lam,Manhattan,Upper West Side,40.78124,-73.98475,Entire home/apt,150,7,10,2016-10-08,0.18,1,68 +4982699,Two Bedroom Apartment,25686141,Linden,Queens,Ozone Park,40.67924,-73.84771,Entire home/apt,99,3,66,2018-07-21,1.29,1,189 +4982969,Beautiful room in Brooklyn,2803589,Helida,Brooklyn,Prospect-Lefferts Gardens,40.65833,-73.95196,Private room,45,1,0,,,1,0 +4983264,Comfortable room steps from Central Park,25688822,Lucie,Manhattan,Harlem,40.79967,-73.95444,Private room,95,3,70,2019-06-30,1.38,1,117 +4983691,Greenpoint is the place to be!,4162067,Citlali,Brooklyn,Greenpoint,40.72811,-73.94925,Private room,95,4,1,2015-10-28,0.02,1,0 +4984951,Home Away From Home,23570473,James,Brooklyn,Crown Heights,40.6726,-73.95364,Private room,79,1,37,2019-05-27,0.72,3,339 +4986843,Amazing Loft/ Bed-Stuy/ Full Cleaning Service.,2628658,Marc-Antoine,Brooklyn,Bedford-Stuyvesant,40.68301,-73.93738,Entire home/apt,120,30,2,2018-12-21,0.18,2,0 +4987238,Chic Downtown 1 Bedroom,17985595,Lora,Manhattan,Greenwich Village,40.73189,-73.9947,Entire home/apt,375,14,26,2018-12-18,0.59,1,147 +4987355,Great Spacious Appartment,23929877,Ely,Manhattan,East Harlem,40.7912,-73.94318,Entire home/apt,120,5,23,2019-06-18,1.25,1,151 +4987370,1 Bedroom in a Williamsburg Loft,25711730,Natsuki,Brooklyn,Williamsburg,40.7116,-73.96774,Shared room,85,1,0,,,1,0 +4987929,Near Subway -15 min to Manhattan,25715117,Lilia,Queens,Astoria,40.76357,-73.92829,Private room,100,5,46,2019-06-14,0.91,1,338 +4988556,Sun-Filled Room near Central Park,12342828,Marco,Manhattan,East Harlem,40.79492,-73.94087,Private room,84,4,79,2019-06-29,2.06,2,8 +4988687,Chelsea Oasis 1 Bedroom Brownstone,25720293,Lena,Manhattan,Chelsea,40.74481,-74.00148,Entire home/apt,549,4,17,2017-12-20,0.33,3,6 +4989295,"Huge, Beautiful Artist's 2 bedroom",637688,Dan,Brooklyn,Prospect Heights,40.67347,-73.96544,Entire home/apt,230,7,12,2018-12-26,0.24,1,5 +4991235,"Cozy, quiet 2-story place by subway",25271688,Margot,Brooklyn,Greenpoint,40.7313,-73.95341,Private room,100,14,1,2015-09-21,0.02,1,0 +4991895,"Bright & spacious room, 2 minutes to subway!",10635169,Jin,Brooklyn,Crown Heights,40.67067,-73.95693,Private room,70,1,49,2019-07-02,4.45,1,47 +4993422,A Beautiful and Sunny Artist's Home,25744379,Sonia,Queens,Astoria,40.76958,-73.92223,Entire home/apt,72,3,36,2019-06-28,0.71,1,10 +4994058,MyModernCrib w/ Empire State Views ,25747773,Ellen!,Manhattan,Kips Bay,40.74045,-73.98175,Private room,140,5,2,2016-05-21,0.05,1,0 +4994264,1 Bdrm in Luxury High Rise,41398078,Jimmy,Manhattan,Financial District,40.7076,-74.01367,Private room,125,3,0,,,1,0 +4994266,Midtown Launching Pad,24620881,Jack,Manhattan,Midtown,40.75765,-73.96466,Entire home/apt,135,1,168,2019-06-21,3.21,1,287 +4995083,East Village Studio,25748492,David,Manhattan,East Village,40.72954,-73.98337,Entire home/apt,120,1,8,2016-05-30,0.18,1,0 +4995739,"Private room in Brooklyn, Calico Cat in the house!",25757883,Sayaka,Brooklyn,Bushwick,40.70213,-73.91472,Private room,49,1,43,2018-11-19,0.82,1,25 +4996027,Rare Find - Oversized 1BR in Williamsburg center,45384,Nicole,Brooklyn,Williamsburg,40.70971,-73.96561,Entire home/apt,240,14,20,2019-06-20,0.43,1,238 +4996877,"Awesome, Sunny Loft - Two Floors!",317718,Andrew,Brooklyn,Greenpoint,40.72514,-73.95392,Entire home/apt,380,4,0,,,1,177 +4998025,Perfect apt in UES,25773982,Yas,Manhattan,Upper East Side,40.77569,-73.95721,Entire home/apt,150,1,9,2019-05-13,0.24,2,364 +4998221,汤母小屋,25774748,Dong Ming,Queens,Flushing,40.76435,-73.83211,Private room,89,1,3,2019-05-19,0.06,2,365 +4998294,"Enjoy Central Park,",25773982,Yas,Manhattan,Upper East Side,40.77595,-73.95573,Private room,100,3,28,2019-05-22,0.55,2,364 +5002867,The Red House,262760,Megan,Brooklyn,Flatbush,40.6404,-73.9612,Private room,75,1,24,2017-05-31,0.52,1,0 +5003266,A hop to La Guardia Airport in quiet College Point,19918657,Tommy,Queens,College Point,40.78631,-73.83923,Private room,50,5,5,2019-03-28,0.47,1,310 +5004463,Spacious Private Room ,25807709,Shula,Brooklyn,Midwood,40.6216,-73.95315,Private room,60,10,27,2019-07-05,0.50,1,322 +5006113,LUXURY MID-CENTURY MODERN LOFT SOHO,6095946,Fiona,Manhattan,SoHo,40.72177,-74.00356,Entire home/apt,760,14,1,2017-08-19,0.04,1,292 +5006114,Charming Private Bedroom in 2 Bedroom Apartment,4830078,Wesley William,Brooklyn,Williamsburg,40.70853,-73.95368,Private room,85,3,15,2019-06-14,0.57,1,82 +5006927,PRIVATE SUNNY ROOM IN BUSHWICK! ,25821864,Viva,Queens,Ridgewood,40.70739,-73.91498,Private room,65,3,5,2015-10-07,0.09,1,0 +5010368,Upper East Side Gem!,25840204,Daniel,Manhattan,Upper East Side,40.77546,-73.95165,Entire home/apt,150,3,75,2019-04-27,1.44,1,234 +5010729,Quaint One Bed Apartment on UES,7847292,Tom,Manhattan,Upper East Side,40.77537,-73.95029,Entire home/apt,169,4,147,2019-06-23,2.76,1,310 +5011693,Harlem Studio w/ view!!,8834234,Jeremy,Manhattan,Harlem,40.81419,-73.95033,Entire home/apt,85,2,25,2019-06-09,0.52,1,58 +5013302,Best location & Amazing view / Apt in Tribeca,10207681,Sol,Manhattan,Tribeca,40.71732,-74.00981,Entire home/apt,350,3,13,2019-05-16,0.36,1,69 +5013556,"Sunny, modern 1BR in Crown Heights",1387175,David,Brooklyn,Crown Heights,40.67279,-73.96033,Entire home/apt,148,7,56,2019-06-14,1.05,1,44 +5014831,Cozy Studio Close to Everything,5349999,David,Brooklyn,Crown Heights,40.67777,-73.95131,Entire home/apt,100,6,13,2019-01-04,0.26,1,0 +5015281,Gramercy Park View Pied A Terre,25870353,Amie,Manhattan,Gramercy,40.73661,-73.98706,Entire home/apt,1000,7,0,,,1,365 +5019183,Large 1 Bedroom in Brooklyn,25894037,Margaret,Brooklyn,Crown Heights,40.67477,-73.94961,Entire home/apt,125,1,0,,,1,0 +5019373,"Cozy Apt, Terrace in Williamsburg",25895198,Mateo,Brooklyn,Williamsburg,40.71505,-73.93936,Entire home/apt,80,7,10,2016-06-20,0.22,1,0 +5020687,BRAND NEW condo in Flushing!,10366837,Jia,Queens,Flushing,40.75784,-73.83181,Entire home/apt,72,2,94,2019-07-01,3.40,3,102 +5020842,Private BR in amazing neighborhood,17770322,Nicole,Brooklyn,Carroll Gardens,40.68138,-73.9926,Private room,125,1,8,2019-07-07,0.16,1,191 +5021376,Easily accessible cozy room! R202,17638424,Sophie,Queens,Elmhurst,40.74602,-73.87338,Private room,34,1,95,2019-07-02,2.37,8,175 +5025771,Full Prospect Heights Brownstone!,630519,Alex,Brooklyn,Prospect Heights,40.67676,-73.96683,Entire home/apt,288,1,2,2016-01-03,0.05,1,0 +5028135,Modern Prime Williamsburg 1BR w/ Terrace & Views,3560446,Jay,Brooklyn,Williamsburg,40.7169,-73.95087,Entire home/apt,167,2,59,2019-05-25,1.20,1,0 +5028264,Charming Studio Apartment,25881276,Jordana,Manhattan,Upper West Side,40.7921,-73.97918,Entire home/apt,125,21,45,2019-05-27,0.86,2,176 +5028478,Spacious and welcoming 1 bedroom apt,3116461,Kyala,Brooklyn,East Flatbush,40.65308,-73.95109,Entire home/apt,100,2,67,2019-06-14,1.27,1,153 +5028653,Sun drenched art filled apartment,5244243,Mie,Manhattan,Financial District,40.71068,-74.00713,Entire home/apt,290,5,0,,,1,0 +5029202,"Spacious 2 Bedroom, 2 Bath, 5th Avenue Entire Apt",14362471,Andy And TJ,Manhattan,East Harlem,40.79641,-73.94847,Entire home/apt,229,30,6,2019-02-14,0.12,1,61 +5029204,Boho Williamsburg Room W/ Private Entrance,3646549,Katherine,Brooklyn,Williamsburg,40.71735,-73.94465,Private room,100,2,49,2019-06-15,0.90,1,149 +5029573,Private Room w/ Bath and Balcony,25961456,Adam,Brooklyn,Prospect Heights,40.67824,-73.96514,Private room,60,1,0,,,1,0 +5029703,PRIME LOCATION - Beautiful 3BR Artist Oasis w/Deck,25318403,Bethany,Brooklyn,Williamsburg,40.71281,-73.95796,Entire home/apt,225,3,87,2019-07-05,1.63,3,275 +5030256,Spacious Room in Apt with Backyard,8707742,Kanhar,Brooklyn,Bedford-Stuyvesant,40.6955,-73.94385,Private room,70,2,0,,,1,0 +5031178,Beautiful Bushwick - 3BR Apartment,21721684,S.,Brooklyn,Bushwick,40.68594,-73.90653,Entire home/apt,174,3,198,2019-06-09,3.70,2,269 +5031539,GORGEOUS 1BR IN MIDTOWN 1/15-1/19,25974544,Patrick,Manhattan,Hell's Kitchen,40.76263,-73.9887,Entire home/apt,350,1,0,,,1,0 +5033691,*GALAXY* Spectacular 2 Bedroom - Spacious & Light!,25237492,Juliana,Manhattan,Upper West Side,40.78147,-73.98315,Entire home/apt,250,30,13,2019-06-15,0.25,34,304 +5034136,CHARMING TOWNHOUSE NEAR RSD PARK - STUDIO APT,25237492,Juliana,Manhattan,Upper West Side,40.78215,-73.98349,Entire home/apt,105,30,15,2019-04-19,0.31,34,285 +5036261,LARGE ROOM IN A GREAT NEIGHBORHOOD,15929586,Jorge,Queens,Ditmars Steinway,40.77645,-73.90566,Private room,40,3,95,2019-05-20,1.75,1,336 +5036659,Relaxing Brooklyn Oasis - Prime Location,25999700,Jacqueline,Brooklyn,Crown Heights,40.67615,-73.95776,Private room,50,14,43,2019-06-22,0.80,1,313 +5037654,East River view,26005018,Pia,Manhattan,Roosevelt Island,40.76193,-73.94942,Private room,65,3,43,2019-05-28,0.81,1,35 +5037892,Stay in Harlem 1 - 3 months!,6228539,Michelle,Manhattan,Harlem,40.80535,-73.95407,Private room,75,30,1,2019-05-03,0.45,2,330 +5038299,Beautiful Fort Greene Studio,17465490,Tarun,Brooklyn,Fort Greene,40.68752,-73.9795,Entire home/apt,180,31,1,2015-01-21,0.02,1,0 +5039939,Spacious Room in Bushwick Brooklyn,26018110,Vincent,Brooklyn,Williamsburg,40.70898,-73.93286,Private room,60,25,0,,,1,0 +5040218,LUX Blg-Prime Area! Lg PRIVATE RM & BATH w/VIEWS!,26019828,Sonia,Manhattan,Hell's Kitchen,40.76159,-73.99824,Private room,69,2,22,2019-03-20,0.64,2,7 +5040653,"Spacious Room at Broome St, LES",19195540,Dor,Manhattan,Chinatown,40.71723,-73.99164,Private room,150,4,36,2019-06-04,0.71,3,294 +5040919,Furnished room in DUMBO/Fort Greene,26024349,Joyce,Brooklyn,Downtown Brooklyn,40.6978,-73.98396,Private room,200,1,0,,,1,0 +5040951,Charming 1BR near Union Square,26024433,Sal,Manhattan,Gramercy,40.73272,-73.9852,Entire home/apt,125,3,21,2019-06-02,0.40,1,7 +5041891,Historic Upper West Side Townhouse,26031034,David,Manhattan,Upper West Side,40.79693,-73.96348,Entire home/apt,795,4,22,2019-06-20,0.42,1,249 +5046189,Modern/Spacious 4BR +Tent Perfect for LARGE groups,23732730,Buddy,Bronx,Allerton,40.87054,-73.84681,Entire home/apt,450,2,45,2019-07-02,0.84,4,342 +5046190,Cozy Room available in UES Apt,22776830,Ella,Manhattan,Upper East Side,40.77209,-73.95083,Private room,80,1,0,,,1,0 +5046422,Big 2-story home in Brooklyn Hts.,2370532,Nick,Brooklyn,Brooklyn Heights,40.69119,-73.99438,Entire home/apt,300,2,8,2016-10-24,0.22,1,0 +5046894,"Cozy Space in Harlem, Manhattan",6454648,Laksen & Nikki,Manhattan,Harlem,40.81549,-73.95278,Shared room,80,1,29,2019-06-12,0.62,1,357 +5048535,Great Gramercy Share Apt,905563,Courtney,Manhattan,Gramercy,40.73718,-73.98373,Private room,75,5,0,,,1,0 +5049823,NYC New Years Penthouse suite,22927481,Howard,Manhattan,Midtown,40.7655,-73.98018,Private room,500,3,1,2015-11-11,0.02,3,0 +5050156,Wake Up In The City That Never Sleeps,193488,Jane,Manhattan,East Village,40.73273,-73.98969,Private room,135,1,14,2019-05-26,0.28,2,332 +5050369,East Village Ageloff Towers,23465153,Darrin,Manhattan,East Village,40.72536,-73.9856,Entire home/apt,250,1,0,,,1,0 +5050664,"Simple, sweet in NOLITA-NYC",93292,Alexa,Manhattan,Chinatown,40.71848,-73.99549,Private room,80,3,153,2019-06-25,2.90,1,238 +5050799,Great Prospect / Crown Heights 1BR,16616158,Will,Brooklyn,Crown Heights,40.67586,-73.9621,Entire home/apt,85,5,22,2015-10-28,0.42,1,0 +5051597,Restored 1910 Brooklyn Loft Suite,10975987,Lisa,Brooklyn,Bushwick,40.68386,-73.90936,Entire home/apt,150,4,119,2019-06-20,2.23,1,273 +5052495,Sunny Room in Historic Williamsburg Loft,26089087,Karron,Brooklyn,Williamsburg,40.70907,-73.96396,Private room,60,1,33,2019-06-26,2.75,1,19 +5052897,Beautiful Manhattan 1br apartment close to subway!,26079021,Michael,Manhattan,Upper East Side,40.76173,-73.96183,Entire home/apt,249,3,85,2019-06-28,1.59,1,158 +5054072,*SPLENDID* Fantastic 2 BR Apt near many Hospitals,25237492,Juliana,Manhattan,Upper East Side,40.7606,-73.96028,Entire home/apt,155,30,17,2019-02-02,0.32,34,316 +5054397,Large & Sunny Bedroom - super close to subway,8873293,Helena S,Brooklyn,Bedford-Stuyvesant,40.68951,-73.95524,Private room,65,2,14,2018-05-26,0.27,2,0 +5055033,"Railroad Apt in Greenpoint, BKLYN",26100862,Ira,Brooklyn,Greenpoint,40.72474,-73.94733,Entire home/apt,90,1,0,,,1,0 +5056421,1 BR Apartment in UES - 5' walk to CentralPark,13220337,Brian,Manhattan,East Harlem,40.79213,-73.94974,Entire home/apt,150,3,27,2019-05-24,0.50,1,0 +5058683,It's always sunny in Williamsburg!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71301,-73.95374,Private room,96,1,175,2019-06-16,3.27,4,44 +5059402,1BR with backyard in Williamsburg!,26124805,Laura,Brooklyn,Williamsburg,40.71677,-73.95773,Private room,90,1,0,,,1,0 +5060771,Large Room in Greenwich Village,26133955,William,Manhattan,West Village,40.73345,-74.00302,Private room,89,1,1,2016-04-21,0.03,1,365 +5061165,Private Bedroom in Upper Manhattan,9018446,Javier,Manhattan,Washington Heights,40.83554,-73.93849,Private room,80,1,307,2019-06-29,5.66,1,54 +5061178,near Columbia Hospital,26136707,Jorge,Manhattan,Washington Heights,40.8447,-73.93369,Private room,77,4,80,2019-06-16,1.57,1,66 +5061309,Sunny room in Bushwick; Minutes from subway!,13501341,Fiorella,Brooklyn,Bushwick,40.70171,-73.91344,Private room,60,1,155,2019-06-20,3.39,2,170 +5065185,"Spaceful 1 BR apartment, sleeps 3",10428997,Marta,Manhattan,Upper West Side,40.79463,-73.97061,Entire home/apt,165,4,72,2019-06-24,1.35,1,0 +5065276,"Sunny, comfy room in quiet Park Slope apmt",25963759,Andrew,Brooklyn,South Slope,40.66135,-73.98726,Private room,70,1,3,2015-10-05,0.06,1,363 +5065630,2 Bedroom in Bed Stuy,8813443,Win,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95758,Entire home/apt,83,1,0,,,1,0 +5066526,Lovely Big Bedroom in Clinton Hill,26162659,Kylie,Brooklyn,Bedford-Stuyvesant,40.69494,-73.95507,Private room,70,1,0,,,1,0 +5066813,Reduced$ EastVillage Entire 1BD APT,1445871,Gregory,Manhattan,East Village,40.73096,-73.98376,Entire home/apt,139,1,62,2019-06-30,1.15,1,240 +5066900,Private Bedroom in BK Brownstone,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69604,-73.94504,Private room,50,7,13,2019-05-16,0.33,3,227 +5066963,Humble 1BR in Bushwick,26164700,Nico,Brooklyn,Bushwick,40.69709,-73.91003,Private room,50,1,0,,,1,0 +5067097,"Cute, Cozy in Prime Williamsburg",2372310,Liz,Brooklyn,Williamsburg,40.71343,-73.94842,Entire home/apt,220,5,0,,,1,21 +5067348,Million Dollar Listing :Times Square,6278351,Scott,Manhattan,Hell's Kitchen,40.75977,-73.98981,Entire home/apt,250,3,26,2019-06-29,0.51,1,96 +5067417,Study in 1885 Gothic Brownstone.,8954264,Rod,Manhattan,Harlem,40.80858,-73.95132,Private room,177,10,25,2019-06-08,0.51,1,213 +5068972,Modern 1br downtown Manhattan,23340108,Andrew,Manhattan,Financial District,40.71182,-74.00497,Entire home/apt,150,3,7,2016-05-25,0.13,1,0 +5069145,Cozy private bedroom in duplex,26176627,Jon,Brooklyn,Bushwick,40.70126,-73.93731,Private room,50,1,0,,,1,0 +5070183,Sunny NYC APT - 15min from Midtown,12306481,Pao,Queens,Sunnyside,40.74513,-73.91685,Entire home/apt,90,30,10,2019-05-23,0.28,3,332 +5070378,BR in heart of trendy williamsburg,26184062,Laura,Brooklyn,Williamsburg,40.71223,-73.95681,Private room,150,7,1,2016-08-31,0.03,1,179 +5075659,Cozy New York Studio,192852,Dim,Manhattan,Upper East Side,40.77407,-73.95238,Entire home/apt,125,3,211,2019-06-22,3.95,1,230 +5077231,Charming Bright Upper East Space,7021059,Katie,Manhattan,Upper East Side,40.77636,-73.95099,Entire home/apt,150,1,0,,,2,0 +5078828,Lovely Victorian Brooklyn 6BR Home,3196390,Orli,Brooklyn,Flatbush,40.63854,-73.95814,Entire home/apt,415,4,3,2015-07-03,0.06,1,0 +5079124,Clean & Cozy Private Room,12603113,Stephanie & Linda,Brooklyn,Kensington,40.63953,-73.97214,Private room,50,2,39,2019-06-24,0.77,1,245 +5081207,Charming Townhouse Near RSD Park! 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper West Side,40.78305,-73.98398,Entire home/apt,165,30,16,2019-06-15,0.31,34,326 +5082455,15 mins to Times Square + Sleeps 4,2908101,Mahesh,Manhattan,Harlem,40.82846,-73.94393,Entire home/apt,175,4,29,2018-11-05,0.55,1,7 +5083907,Large Room In Beautiful Brownstone ,63613,Patricia,Brooklyn,Clinton Hill,40.69105,-73.96789,Private room,50,60,0,,,2,210 +5084095,Great 2 bedroom on The Upper East Side,1700398,Vered,Manhattan,Upper East Side,40.77421,-73.95361,Entire home/apt,250,4,0,,,1,0 +5084887,Clean & Warm East Village Escape!,26265097,Nancy,Manhattan,East Village,40.7295,-73.98398,Entire home/apt,100,5,1,2015-02-06,0.02,1,0 +5085803,Beautiful Studio in the Upper East (30 DAYS MIN),23772724,Elem,Manhattan,Upper East Side,40.78151,-73.94775,Entire home/apt,99,30,12,2019-04-27,0.29,15,208 +5091056,Comfy Bedroom quite neighborhood ,26301893,Claude,Queens,Forest Hills,40.71158,-73.85273,Private room,80,1,12,2019-01-03,0.35,1,59 +5093174,flexible 1BD LIVE/ WORK space BK,17312709,Matthew,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94719,Entire home/apt,140,5,4,2015-06-06,0.08,1,0 +5093352,Room w/artwork & huge window on historic block!,19850240,Neal,Manhattan,Harlem,40.80954,-73.94227,Private room,83,7,18,2019-03-03,0.66,1,0 +5094593,Cozy room in a quite neighborhood,7801481,Inez,Queens,Bay Terrace,40.78598,-73.77915,Private room,99,3,4,2018-05-04,0.08,2,7 +5096158,Fun Space in the Heart of Williamsburg,21201361,Jamie,Brooklyn,Williamsburg,40.71102,-73.95627,Private room,79,1,1,2018-08-26,0.09,1,89 +5101342,Quiet private retreat high above Brooklyn.,19293586,Adam,Brooklyn,Williamsburg,40.71759,-73.94388,Private room,100,2,19,2019-06-29,0.61,1,34 +5102006,Quaint Sunny Cobble Hill Brownstone,26360956,Jen,Brooklyn,Cobble Hill,40.68854,-73.99533,Entire home/apt,160,4,16,2016-11-21,0.30,1,0 +5102132,Huge Sunny Private Room in Bushwick,26260328,Alec,Brooklyn,Bushwick,40.70206,-73.91342,Private room,45,7,1,2016-02-16,0.02,1,0 +5102389,Top Floor Williamsburg Beauty,26362901,William,Brooklyn,Williamsburg,40.71124,-73.95717,Entire home/apt,225,1,63,2017-11-14,1.27,1,0 +5104668,Alcove Studio 1 blk from Times Sq,24915685,Naveen,Manhattan,Hell's Kitchen,40.75928,-73.99036,Entire home/apt,180,1,0,,,1,0 +5105514,Modern Studio Apt in Williamsburg,26380626,Shamim,Brooklyn,Williamsburg,40.71768,-73.95355,Entire home/apt,90,7,1,2018-04-29,0.07,1,0 +5105632,Lovely room in Prospect Heights,15321576,Daniel,Brooklyn,Prospect Heights,40.67467,-73.96557,Private room,60,1,0,,,1,0 +5105768,"Close to subway, Manhattan, & shops with kitchen",26382036,William,Queens,Elmhurst,40.74038,-73.87599,Entire home/apt,120,5,31,2019-05-27,0.64,2,64 +5105805,Best Location in Midtown Manhattan,8329975,Gore,Manhattan,Hell's Kitchen,40.76645,-73.98539,Entire home/apt,150,4,15,2019-06-29,0.41,1,5 +5106041,I LOVE BROOKLYN PRIVATE 1-BR APT,4265630,Nowme And Ra,Brooklyn,Flatbush,40.64801,-73.95623,Entire home/apt,80,4,51,2019-06-22,0.97,2,306 +5106214,Historic West Village Charmer,22984995,Erin,Manhattan,West Village,40.73822,-74.00606,Entire home/apt,275,2,11,2018-07-18,0.21,1,0 +5106749,Cozy 1BD near midtown Manhattan,26388856,Kat,Queens,Long Island City,40.7599,-73.9285,Entire home/apt,110,14,35,2019-05-24,0.69,1,177 +5110224,Room in artist apartment/ close to Ferry,26405093,Jeff,Staten Island,Stapleton,40.6375,-74.07654,Private room,85,1,0,,,2,359 +5110541,Upper East Side Beautiful Studio,1965783,Cranford,Manhattan,Upper East Side,40.76996,-73.95875,Entire home/apt,245,1,3,2015-05-24,0.06,1,0 +5112761,Master bedroom in Williamsburg,2638171,Renan,Brooklyn,Williamsburg,40.71577,-73.94604,Private room,90,3,0,,,1,364 +5113910,Designer's Red Hook Apartment,10125456,Carly,Brooklyn,Red Hook,40.67404,-74.01021,Entire home/apt,115,5,51,2019-05-15,0.95,1,8 +5115372,Comfy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76374,-73.87103,Private room,54,1,430,2019-07-03,13.45,5,347 +5115534,Large williamsburg apt. Sleeps 4.,26433326,Martha,Brooklyn,Williamsburg,40.70783,-73.94858,Entire home/apt,195,2,3,2015-12-30,0.06,1,0 +5116726,Stunning townhouse in Park Slope,7203997,Gosia,Brooklyn,Park Slope,40.67034,-73.97512,Entire home/apt,995,2,43,2019-06-13,0.82,2,328 +5116727,Amazingly bright and cozy apartment,2897021,Julia,Manhattan,East Village,40.72695,-73.98675,Entire home/apt,120,10,7,2017-01-04,0.13,1,0 +5117339,Quiet Bdrm w/Private Bath & TV in BIG apartment!,26446036,Buddy,Manhattan,Upper West Side,40.78648,-73.9692,Private room,135,2,78,2019-06-02,1.68,1,0 +5119201,"SpaciousRoom in the heart of New York,Times Square",17450152,Tiba,Manhattan,Hell's Kitchen,40.76332,-73.9884,Private room,150,1,38,2019-06-21,0.77,5,307 +5122899,Cozy Private Room for one female,9059339,Christine,Manhattan,East Harlem,40.78744,-73.95211,Private room,61,7,167,2019-05-22,3.21,1,292 +5123033,BEAUTIFUL 2 BED/ BRICK WALLS/ 52ST,1475015,Mike,Manhattan,Midtown,40.75587,-73.96856,Entire home/apt,115,30,0,,,52,281 +5126391,1bd in a sunny 2 bd Ft. Greene Apt,26003292,Carrie,Brooklyn,Fort Greene,40.69454,-73.97166,Private room,63,1,104,2019-06-23,2.16,1,11 +5127131,Cozy one-bedroom in E Village,1946840,Nick,Manhattan,East Village,40.72982,-73.98316,Entire home/apt,185,7,21,2019-06-04,0.40,1,27 +5131879,"Large, comfy 1br in Williamsburg!",26529661,Alexis,Brooklyn,Williamsburg,40.7127,-73.94643,Entire home/apt,1763,60,0,,,1,0 +5132306,Monthly Rental in Crown Heights,24711354,Forrest,Brooklyn,Crown Heights,40.66809,-73.93373,Private room,33,28,20,2019-04-06,0.37,1,282 +5132986,NOT AVAILABLE,2086194,Robert,Brooklyn,Prospect Heights,40.68163,-73.96709,Private room,55,2,3,2015-05-17,0.06,1,189 +5133942,"Sunny 1000 sqft, heart of Crown Hts",7088204,Genesis,Brooklyn,Crown Heights,40.67131,-73.94979,Entire home/apt,150,5,8,2019-05-20,0.36,1,118 +5135121,Roomy Studio at Prospect Park,5125933,Penelope,Brooklyn,Prospect-Lefferts Gardens,40.65621,-73.95696,Entire home/apt,80,21,3,2017-08-27,0.07,1,0 +5136673,Spacious Brooklyn Loft/private room,8118080,Theresa,Brooklyn,Bedford-Stuyvesant,40.68716,-73.91882,Private room,40,7,0,,,1,0 +5136833,Spacious private room upper west side,26558533,Jinqiu,Manhattan,Upper West Side,40.79678,-73.96545,Private room,79,2,8,2016-10-16,0.22,1,0 +5137531,LUXURY*Doorman*Walk to Central Park,7881946,Emmanuel,Manhattan,Harlem,40.80657,-73.95532,Entire home/apt,140,2,5,2015-03-05,0.09,1,0 +5141379,True 1BR Apt in Greenwich Village,21112602,Maggie,Manhattan,Greenwich Village,40.73253,-73.99826,Entire home/apt,198,2,15,2016-09-29,0.29,1,0 +5143959,Master Bedroom in Lefferts Garden,20518366,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.95105,Private room,65,1,0,,,2,0 +5144689,Harlem Style Spacious and Sunny,26597048,M. Elizabeth,Manhattan,Harlem,40.80516,-73.94299,Entire home/apt,117,3,126,2019-07-05,3.91,2,66 +5144831,Modern and convenient,2055698,Nadia Dara,Manhattan,Upper East Side,40.77944,-73.95296,Entire home/apt,125,3,2,2016-08-25,0.05,1,0 +5146173,*Designer West Village Dream Home*,26606802,Christina,Manhattan,West Village,40.73451,-74.00746,Entire home/apt,510,3,12,2016-10-23,0.24,1,364 +5148878,"GORGEOUS 2 BD PENTH., 500SF TERRACE",215570,Dirk,Brooklyn,Williamsburg,40.71135,-73.96596,Entire home/apt,125,2,5,2018-01-01,0.12,1,0 +5149368,Luxury penthouse in FiDi,1867263,Lisa,Manhattan,Financial District,40.70663,-74.0117,Private room,170,1,0,,,1,0 +5152230,Convenience & Chill,26640253,Rachel,Manhattan,Harlem,40.82383,-73.94639,Private room,65,1,61,2019-04-24,1.16,1,323 +5159567,Perfect One Bedroom in Greenpoint,22011099,David,Brooklyn,Greenpoint,40.72981,-73.95268,Entire home/apt,195,6,21,2018-08-15,0.44,1,42 +5159990,Huge 1 Bedroom in East Harlem,115669,Lauren,Manhattan,East Harlem,40.79643,-73.93543,Entire home/apt,115,3,8,2017-05-17,0.15,1,183 +5160871,Cozy Chelsea Studio,8780729,Ellen,Manhattan,Chelsea,40.7417,-73.9978,Entire home/apt,135,3,31,2016-12-05,0.63,1,0 +5161173,3BDR architect's garden home,1027417,Julien,Brooklyn,Park Slope,40.67365,-73.9814,Entire home/apt,350,3,5,2019-02-19,0.12,1,22 +5162578,Best place for families & groups in Manhattan NYC!,23719409,Carlina,Manhattan,Harlem,40.82774,-73.95181,Private room,115,1,28,2018-12-08,1.13,4,6 +5162580,Convenient place to stay in Manhattan!,23719409,Carlina,Manhattan,Harlem,40.82801,-73.95167,Private room,45,1,205,2019-06-21,3.86,4,0 +5164045,"Cozy, sunny private room",26710027,Sara,Brooklyn,Bedford-Stuyvesant,40.68074,-73.92513,Private room,65,2,21,2016-07-17,0.43,1,0 +5168749,LIC Super Sunny & Spacious 1BR Apt,10433019,Serene,Queens,Long Island City,40.74401,-73.95094,Entire home/apt,135,30,3,2019-06-30,0.06,1,231 +5172992,1br in duplex of luxury building,23386756,Daniel,Brooklyn,Williamsburg,40.70792,-73.94602,Private room,40,6,0,,,1,0 +5173154,"COZY, AFFORDABLE, PVT. BEDSTUY ROOM",26756453,Tyler,Brooklyn,Bedford-Stuyvesant,40.68833,-73.94329,Private room,70,1,0,,,1,0 +5175054,Perfect Times Square 1 bedroom ,22305520,James,Manhattan,Hell's Kitchen,40.76064,-73.99112,Entire home/apt,199,30,119,2019-06-11,2.21,2,215 +5178944,Amazing BR in Doorman Building!,18388649,Brian,Manhattan,Harlem,40.82415,-73.94113,Private room,100,2,0,,,1,364 +5179493,Gorgeous Renovated One Bedroom ues,4406876,Maureen,Manhattan,Upper East Side,40.76761,-73.95391,Entire home/apt,195,6,5,2019-06-13,0.11,1,329 +5179556,Huge 3BR on Prospect Park,26789544,Martin,Brooklyn,Windsor Terrace,40.65494,-73.97478,Entire home/apt,200,3,0,,,1,0 +5179785,3 bedroom 2 1/2 bath duplex Park Slope,10711342,Mr. & Mrs. Kris,Brooklyn,Sunset Park,40.66298,-73.99012,Entire home/apt,150,5,1,2018-08-14,0.09,1,0 +5180624,"Cozy Room in Bushwick, Brooklyn",26794599,Carmen,Brooklyn,Bushwick,40.69237,-73.92097,Private room,60,2,1,2015-09-21,0.02,1,0 +5181492,"Spacious, sunny, private loft bdrm!",15714652,Tejal,Brooklyn,Bushwick,40.70041,-73.93816,Private room,70,11,21,2019-05-18,0.40,1,134 +5181720,Bushwick Live/Work,5399418,Jennifer,Brooklyn,Bushwick,40.69092,-73.90443,Private room,30,1,0,,,1,0 +5183502,"Airy, Modern, Large Room W'burg two blocks subway",1762555,Arti,Brooklyn,Williamsburg,40.71508,-73.94586,Private room,100,4,38,2019-06-12,1.06,1,10 +5184986,Large studio in Manhattan,26819401,Alberto,Manhattan,Upper East Side,40.77594,-73.95584,Entire home/apt,180,3,3,2016-02-16,0.06,1,0 +5185359,1.5 Bedroom - Artist's Retreat,5788393,Amy,Queens,Long Island City,40.76117,-73.9265,Entire home/apt,105,2,19,2018-02-17,0.41,1,0 +5188746,FANTASTIC MANHATTAN LIVING 5 day Minimum,5896802,Patricio,Manhattan,Harlem,40.81502,-73.9546,Entire home/apt,110,90,7,2018-02-26,0.28,1,90 +5188840,Home 4 Medical Professionals-St John's Episcopal 2,26377263,Stat,Queens,Far Rockaway,40.59642,-73.75606,Private room,38,6,5,2017-12-02,0.11,43,313 +5191617,"Cozy Room in Clinton Hill, Bk",3977023,Vaida,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95603,Private room,70,1,1,2015-08-31,0.02,2,0 +5191630,Comfortable & Spacious 1 BR apt,21538710,Marýa,Brooklyn,Crown Heights,40.67116,-73.94293,Entire home/apt,72,7,11,2016-11-11,0.21,1,0 +5191965,Bright room in townhouse with yard!,610690,Julien,Brooklyn,Bedford-Stuyvesant,40.68006,-73.91113,Private room,75,1,35,2019-06-26,0.69,2,80 +5192165,Classic Harlem Brownstone - Manhattan,26856159,Glenda,Manhattan,Harlem,40.82306,-73.94688,Private room,63,1,209,2019-06-13,4.12,3,274 +5192219,Metro Retreat - - Harlem,26856159,Glenda,Manhattan,Harlem,40.82153,-73.94651,Private room,58,1,194,2019-06-22,3.81,3,307 +5192459,Quiet Room in 4BR UWS Brownstone,10677483,Greg,Manhattan,Upper West Side,40.80173,-73.96625,Private room,70,1,0,,,1,0 +5193421,Sunny 1BR in the East Village center,1002840,Vladimir,Manhattan,East Village,40.72669,-73.98275,Entire home/apt,145,5,63,2019-06-24,1.24,1,242 +5193916,Private room available in Dumbo Brooklyn,26867230,Kayla,Brooklyn,Fort Greene,40.69605,-73.98207,Private room,45,1,3,2016-07-15,0.08,2,0 +5194812,"Cozy, Convenient, Clean & Colorful!",23909946,Robin Laverne,Brooklyn,Bushwick,40.68755,-73.91856,Private room,60,2,77,2019-06-19,1.56,3,28 +5195409,Upper West Nest,12879620,Neda,Manhattan,Upper West Side,40.79148,-73.97828,Entire home/apt,158,100,2,2018-08-01,0.04,1,290 +5195568,private room,26877037,Catherine,Brooklyn,Sheepshead Bay,40.60059,-73.95899,Private room,139,1,3,2015-10-14,0.06,2,0 +5195654,Large Size Room Next to Subway,26877931,Nikki,Brooklyn,Bedford-Stuyvesant,40.69467,-73.9501,Private room,45,5,20,2017-10-23,0.38,1,52 +5199439,Furnished studioB UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77339,-73.95421,Entire home/apt,99,30,13,2019-05-25,0.26,15,333 +5199814,Sunny 1bedroom with yard ,26899122,Katherine,Brooklyn,South Slope,40.66437,-73.98353,Entire home/apt,85,3,1,2015-09-01,0.02,1,0 +5200433,Soothing Place in the City,24052348,Tara,Manhattan,East Village,40.72042,-73.97998,Private room,85,10,14,2019-04-03,0.27,4,18 +5204458,Vintage Jewel in Crown Heights,1238879,Kristen,Brooklyn,Crown Heights,40.67198,-73.93011,Entire home/apt,95,3,2,2015-08-27,0.04,1,0 +5205123,"Spacious, Bright, & Modern Apt",81928,Evan,Brooklyn,Bedford-Stuyvesant,40.6856,-73.95332,Entire home/apt,150,3,45,2018-12-24,0.96,1,0 +5205171,Comfy 1BD + Private Bath in Williamsburg,1242374,Erin & Brad,Brooklyn,Williamsburg,40.71495,-73.93997,Private room,96,3,82,2019-06-16,1.58,1,289 +5207973,Bright 2BD in East Village,26942242,Alfred,Manhattan,East Village,40.7295,-73.98623,Entire home/apt,230,2,1,2015-03-31,0.02,1,0 +5210286,Chic Apartment in Sunny Brownstone Building,8353665,Alexandra,Manhattan,Harlem,40.82227,-73.94878,Entire home/apt,150,4,4,2019-05-15,0.07,1,33 +5211090,"Central 1 bdrm, W/D, roof deck",26958002,Justin,Manhattan,Kips Bay,40.74041,-73.98176,Entire home/apt,225,2,2,2015-06-25,0.04,1,0 +5211296,Chez Louise sunny BK garden apt.,17448220,Louise,Brooklyn,Bedford-Stuyvesant,40.68383,-73.92226,Entire home/apt,130,3,138,2019-06-18,2.59,1,254 +5212133,Large 1 Bedroom Apartment w/ Office in Greenpoint!,2265800,Sky,Brooklyn,Greenpoint,40.72862,-73.95495,Entire home/apt,116,1,0,,,1,0 +5213963,Cozy East Harlem 1BD,26975156,Vanessa,Manhattan,East Harlem,40.80302,-73.93476,Entire home/apt,115,4,1,2015-04-01,0.02,1,0 +5214511,North Brooklyn Experience.,25762289,Amar,Brooklyn,Greenpoint,40.72614,-73.94813,Entire home/apt,126,3,3,2019-06-04,0.06,1,110 +5216799,Three-bedroom apartment in beautiful house,26564745,Lisa And Jessica,Brooklyn,Prospect-Lefferts Gardens,40.65649,-73.95854,Entire home/apt,174,5,17,2016-01-03,0.32,1,15 +5217507,Great 1-bd apartment in Murray Hill,3510638,Eugene,Manhattan,Murray Hill,40.74479,-73.97573,Entire home/apt,149,5,13,2018-05-20,0.24,1,0 +5219488,Luxury Upper East Side Studio Apt,26781249,Harman,Manhattan,Upper East Side,40.76802,-73.95653,Entire home/apt,150,4,10,2018-05-29,0.19,1,0 +5224210,Feel at home,1220404,Tom,Brooklyn,East New York,40.66811,-73.89394,Entire home/apt,100,2,1,2016-05-03,0.03,2,292 +5225088,Glorious Mornings Townhouse,2265022,K. Zovia,Staten Island,Mariners Harbor,40.62726,-74.1588,Entire home/apt,150,5,16,2019-05-17,0.33,1,299 +5227024,"Extra Large Room in Huge, Serene Harlem Brownstone",27046912,Tara & Carl,Manhattan,Harlem,40.80669,-73.95655,Private room,89,4,56,2019-06-20,1.07,2,15 +5229212,BRIGHT MODERN CLEAN townhouse 4 Bedroom 6 guests,1226742,Johnny,Brooklyn,Clinton Hill,40.68383,-73.96319,Entire home/apt,308,2,62,2019-06-24,2.01,2,294 +5231104,Spacious room available in Brooklyn,27072226,Winona,Brooklyn,Crown Heights,40.66926,-73.93603,Private room,40,1,0,,,1,0 +5231817,UES LRG 1BR SLEEPS 4~61ST~Gr8 value,2119276,Host,Manhattan,Upper East Side,40.76201,-73.96084,Entire home/apt,150,30,5,2018-03-28,0.11,39,228 +5232121,".Safe, cozy & minutes to NYC",3339701,Angelo,Queens,Ditmars Steinway,40.77776,-73.91612,Private room,55,1,90,2019-06-21,1.72,4,310 +5232570,"Cozy room awaits, best location, center of NYC",27081028,Norman,Manhattan,Midtown,40.759,-73.9701,Private room,55,1,16,2019-05-18,0.52,1,0 +5233279,"Quiet, Cozy studio walk to Central Park",19034179,Jennifer,Manhattan,Upper East Side,40.76902,-73.95807,Entire home/apt,139,2,2,2017-01-03,0.07,1,0 +5233345,Cosy style private bedroom with Queen bed,27084741,Paul,Queens,Woodside,40.74436,-73.91141,Private room,90,1,27,2018-10-22,0.55,2,365 +5236146,Cozy 2bdr 1 block from Central Park,4655245,Douglas,Manhattan,East Harlem,40.79462,-73.94923,Entire home/apt,249,3,150,2019-06-18,2.91,1,159 +5236234,"1BR, elevator, kitchen, doorman!",12762559,Jeremy,Manhattan,Upper East Side,40.78633,-73.95218,Entire home/apt,150,1,0,,,1,0 +5237336,Warm and Inviting 1 Bedroom In Fort Greene,189275,Erika,Brooklyn,Fort Greene,40.69658,-73.97116,Entire home/apt,95,1,49,2019-06-30,6.77,1,40 +5237422,Private modern BR & Bath in BK,1297675,Helena,Brooklyn,Prospect Heights,40.68093,-73.97182,Private room,135,2,79,2019-06-19,1.49,2,11 +5238491,Cozy Greenpoint Private Room,675317,Elvira,Brooklyn,Greenpoint,40.73712,-73.95521,Private room,45,17,0,,,1,0 +5240711,2 BEDROOM IN MIDTOWN EAST,27121854,Olga,Manhattan,Midtown,40.75239,-73.9707,Entire home/apt,289,10,169,2019-01-02,3.23,1,3 +5241757,Eclectic Loft 20 min-> Union Sq! ,1884659,Brett,Brooklyn,Bushwick,40.70827,-73.92264,Entire home/apt,97,2,47,2019-06-09,0.88,2,345 +5242156,Park Slope townhouse apartment,956379,David,Brooklyn,South Slope,40.66309,-73.98497,Entire home/apt,180,30,84,2019-05-31,1.70,1,204 +5247202,Gem-like UES writer's studio,172672,Tara,Manhattan,Upper East Side,40.77828,-73.94768,Entire home/apt,75,30,32,2019-05-06,0.67,1,4 +5248975,Large Penthouse in Williamsburg,9423379,Francois,Brooklyn,Williamsburg,40.71526,-73.95016,Entire home/apt,320,6,10,2018-08-21,0.20,1,0 +5251338,"Stay in beautiful Carroll Gardens, Brooklyn!! 1BD",17129810,Jeffrey,Brooklyn,Red Hook,40.66541,-74.01407,Private room,60,5,66,2018-11-02,1.75,5,326 +5251340,Beautiful big room in Carroll Gardens Brooklyn!!!,17129810,Jeffrey,Brooklyn,Columbia St,40.68173,-74.00366,Private room,60,3,118,2019-07-07,2.84,5,326 +5251586,Large & Sunny Apt in Prime Location,5102579,Maggie,Brooklyn,Park Slope,40.68247,-73.97961,Entire home/apt,144,15,6,2016-09-01,0.11,1,0 +5251624,"Sunny, Warm, Comfortable Room",3114551,Jules,Brooklyn,Bushwick,40.69888,-73.92081,Private room,40,14,0,,,1,0 +5251673,Quiet Space Directly Off L Train,27181264,Jaclyn,Brooklyn,Williamsburg,40.71843,-73.95725,Private room,115,1,0,,,1,0 +5251719,1 Bedroom in Luxury Wall street Apt,27181498,Ben,Manhattan,Financial District,40.70573,-74.00855,Shared room,75,1,0,,,1,0 +5252343,Close to LGA/JFK & 15min to Midtown,419629,Nicky,Queens,Elmhurst,40.74125,-73.89035,Private room,47,2,2,2015-02-23,0.04,1,17 +5257388,Private room in 3rd bedroom apt.,27212322,Krupa,Manhattan,Hell's Kitchen,40.75563,-73.99424,Private room,1450,1,0,,,1,0 +5258014,"Williamsburg Gardens Flat, Large Room Private Bath",3605729,Drew,Brooklyn,Williamsburg,40.70709,-73.95191,Private room,100,3,19,2019-05-05,0.42,1,0 +5258459,Urban Oasis for the Single Traveler,1519119,Jason,Manhattan,Washington Heights,40.8545,-73.93169,Shared room,50,1,0,,,1,89 +5259407,2BR Prime West village~Sleeps 5,2119276,Host,Manhattan,West Village,40.73226,-74.00644,Entire home/apt,250,30,3,2015-12-23,0.06,39,365 +5260942,"Spacious Luxury Condo-1 bedroom, NYC",1478146,Anne,Manhattan,Harlem,40.80177,-73.9571,Entire home/apt,115,8,9,2018-10-15,0.18,1,111 +5261712,Large bedroom in East Village,17491348,Valentin,Manhattan,East Village,40.72878,-73.97747,Private room,60,7,1,2015-05-15,0.02,1,0 +5261913,"Small, Comfortable Bedroom w/Private Bathrm for 2",27238076,Stephanie,Manhattan,Hell's Kitchen,40.76432,-73.98599,Private room,135,2,195,2019-06-28,3.69,1,241 +5262076,Tiny Cozy Room in West Harlem!,4534649,L & A,Manhattan,Harlem,40.81617,-73.95371,Private room,50,2,170,2019-06-23,3.20,3,84 +5262333,Excellent Midtown Location!,27053744,Antal,Manhattan,Midtown,40.76186,-73.97324,Entire home/apt,149,3,1,2015-02-28,0.02,1,0 +5266736,Cozy Garden Flat.,27261471,Philmore,Brooklyn,Canarsie,40.64716,-73.89403,Entire home/apt,120,2,1,2019-06-30,1,2,140 +5266888,Spacious East Village 1 Bedroom,14684238,Matthew,Manhattan,East Village,40.7249,-73.98852,Entire home/apt,150,5,22,2019-06-19,0.41,1,6 +5267177,Spacious 1BR Bushwick Surfers Loft!,27263990,Lindsey,Brooklyn,Bushwick,40.69544,-73.93046,Entire home/apt,110,3,0,,,1,0 +5268045,Beautiful room in Manhattan,10698270,Evgenia,Manhattan,Upper East Side,40.76578,-73.95509,Private room,95,1,21,2019-02-09,0.39,2,188 +5268960,Cozy 1 Bdrm Greenpoint-Williamsburg,6155803,Barrie,Brooklyn,Greenpoint,40.72402,-73.95025,Entire home/apt,190,2,12,2017-10-15,0.29,1,0 +5269840,Remsen Village Rental,27277459,Dawn,Brooklyn,East Flatbush,40.65491,-73.9222,Entire home/apt,139,4,77,2019-06-26,1.65,2,340 +5270589,"Large, Furnished East Village Room",26732630,Bennett,Manhattan,East Village,40.72787,-73.98969,Private room,115,1,0,,,1,0 +5271661,Master Bedroom available with en suite bathroom.,6960329,Edna,Manhattan,Upper West Side,40.77484,-73.98659,Private room,130,2,2,2019-06-30,0.94,1,150 +5271997,NEW YORK CITY!!! LOCATION LOCATION!,6716330,Chris,Manhattan,Upper West Side,40.77311,-73.98606,Private room,125,3,124,2019-06-24,2.32,3,347 +5276602,Fully Furnished Brownstone Bedroom,20114391,Lisa,Brooklyn,Fort Greene,40.68557,-73.97073,Private room,45,21,14,2019-01-14,0.27,2,48 +5276704,"Cozy, Sunny, Clean UES Home in central location",27314977,Roza,Manhattan,Upper East Side,40.76771,-73.95844,Entire home/apt,110,4,8,2018-12-20,0.15,1,0 +5276908,SUN FILLED 1BR in ARTSY FORT GREENE,8858347,Rob,Brooklyn,Fort Greene,40.68792,-73.97319,Entire home/apt,120,21,12,2018-08-13,0.22,1,22 +5277117,Comfortable Crown Heights Room,6023360,Ali,Brooklyn,Crown Heights,40.67221,-73.95584,Private room,50,1,1,2015-05-16,0.02,1,0 +5277242,Sleek Bushwick Loft,8627814,Alex,Brooklyn,Williamsburg,40.70629,-73.92884,Entire home/apt,100,2,3,2016-04-13,0.06,1,0 +5278810,Cozy room in a newly renovated apt!,6900870,Harish,Brooklyn,Prospect Heights,40.67382,-73.96782,Private room,75,2,14,2016-09-19,0.27,1,0 +5278927,Bohemian Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72546,-73.94046,Entire home/apt,129,30,7,2019-06-01,0.14,52,328 +5279859,Large Bohemian Studio- Gramercy!,6339750,Gabrielle,Manhattan,Kips Bay,40.74084,-73.98008,Entire home/apt,196,5,66,2019-07-02,1.23,1,323 +5279902,Mod. Apartment NYC w/ Outdoor Space,7181834,Juan,Manhattan,Chelsea,40.73861,-73.99482,Entire home/apt,400,1,0,,,1,0 +5279925,Apt available - Best NYC Location,153675,Matteo,Manhattan,East Village,40.73279,-73.98746,Entire home/apt,140,12,1,2015-09-01,0.02,2,164 +5284341,Quiet Cottage with Private Yard,15264295,Toby,Queens,Maspeth,40.73973,-73.90731,Private room,60,1,0,,,1,0 +5285141,Big Williamsburg BR near the J train!,11483208,Claire,Brooklyn,Williamsburg,40.70903,-73.95936,Private room,55,1,4,2016-04-24,0.10,1,0 +5285553,Beautiful Views from a Warm Home,2423067,Clara,Manhattan,East Harlem,40.79303,-73.93368,Entire home/apt,175,2,24,2019-03-11,0.56,2,0 +5285867,Spacious Full 1 Bedroom Apartment,11601961,Amy,Brooklyn,Flatbush,40.64858,-73.96378,Entire home/apt,90,3,24,2019-04-07,0.45,1,29 +5286096,Amazing Studio-EmpireStateBuilding,3866196,Guillaume,Manhattan,Midtown,40.7461,-73.98632,Entire home/apt,281,1,3,2016-04-22,0.07,1,0 +5286482,"New York Brooklyn Midwood Area +PRIVATE ROOM",27371081,Igor,Brooklyn,Midwood,40.62636,-73.9627,Private room,50,2,21,2019-04-21,1.47,1,179 +5287414,"A BETTA share -Low maintanence guests, e20's NYC!",27376622,Eja,Manhattan,Gramercy,40.73765,-73.98366,Shared room,65,1,49,2019-06-19,0.93,1,353 +5287733,Cozy Room,27379417,Dr.Sally,Queens,South Ozone Park,40.66788,-73.82419,Private room,85,1,243,2018-04-30,4.54,1,281 +5288228,Sunny Room across CrotonaPark for Women Only Space,860636,Shawn(Ta),Bronx,Tremont,40.83875,-73.88728,Private room,38,3,15,2018-10-01,0.28,3,0 +5288376,Cozy room on Upper West Side,11297009,Lex,Manhattan,Upper West Side,40.78785,-73.97717,Private room,59,1,15,2017-09-04,0.29,4,330 +5288942,Quaint and cozy sun-filled room,1189622,Janira,Queens,Ridgewood,40.69804,-73.90683,Private room,40,4,15,2016-11-14,0.30,1,0 +5292616,Chelsea Apartment - GREAT LOCATION!!!!,16427090,Frank,Manhattan,Chelsea,40.73933,-73.99879,Entire home/apt,229,3,2,2016-11-01,0.06,1,0 +5293662,Ft Greene/Clinton Hill Jr 1 Bedroom,6177121,Casey,Brooklyn,Clinton Hill,40.69358,-73.96966,Entire home/apt,70,2,1,2016-01-03,0.02,1,0 +5295884,Spacious East Harlem apartment with sunset views,27428173,Lisa E,Manhattan,East Harlem,40.799,-73.9428,Entire home/apt,190,7,2,2019-07-06,2,1,135 +5297292,Charming 2BR Brownstone near subway,26134830,Isabel,Brooklyn,Bedford-Stuyvesant,40.68211,-73.92121,Entire home/apt,150,3,109,2019-06-15,2.10,1,343 +5297788,"Charming Room in Luxe New Home, near C/3 Subways",17462748,Steven,Brooklyn,Crown Heights,40.67411,-73.93843,Private room,68,5,115,2019-06-30,2.20,5,149 +5298299,Sunny Private Bedroom in Chelsea,11462251,Danielle,Manhattan,Chelsea,40.73885,-73.99701,Private room,109,2,2,2015-09-21,0.04,1,0 +5298458,"Upper West SIDE,Washington bridge,Time Square 30'",2730883,Seb,Manhattan,Washington Heights,40.85341,-73.93181,Entire home/apt,37,30,3,2017-12-26,0.06,2,82 +5298896,Unique NYC Loft - Guest Room,3868692,Lucas,Manhattan,Financial District,40.70457,-74.00952,Private room,124,1,107,2019-07-07,3.21,2,62 +5299177,Bright & Spacious Apt in Prime Brooklyn,11414889,Ben,Brooklyn,Prospect Heights,40.67986,-73.97027,Entire home/apt,190,2,9,2018-06-10,0.25,1,0 +5300082,CLEAN AND STYLISH EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.72956,-73.98166,Entire home/apt,160,1,210,2019-06-23,3.93,4,265 +5301003,Newly renovated 1BR+ in Park Slope,1763862,Jing,Brooklyn,South Slope,40.66485,-73.98543,Entire home/apt,160,1,111,2019-06-22,2.23,1,253 +5302719,Spacious & Bright Apt in Park Slope,9846230,Celine,Brooklyn,Park Slope,40.6774,-73.98247,Entire home/apt,145,5,0,,,1,0 +5303100,"Cute & Cozy Room in Greenpoint, BK",25854571,Bryn,Brooklyn,Greenpoint,40.72556,-73.94104,Private room,49,1,2,2016-06-08,0.05,1,0 +5304431,Sunny 2BR Flex w/CityView From Bed!,7503643,Vida,Brooklyn,Greenpoint,40.72738,-73.94077,Entire home/apt,159,30,9,2019-03-31,0.21,52,362 +5305619,"Newly Renovated Flat, McKibbin Loft",5663328,Scott,Brooklyn,Williamsburg,40.70429,-73.93793,Private room,75,14,0,,,1,0 +5309343,Serene West Village Sun-flooded apt,27502743,John,Manhattan,West Village,40.73183,-74.00649,Entire home/apt,175,90,0,,,1,89 +5309460,Spacious Room in Uptown Manhattan,7989115,Nikki,Manhattan,Washington Heights,40.83299,-73.94527,Private room,150,2,8,2018-06-23,0.16,1,364 +5309810,Private room near Columbia,24528234,Hua,Manhattan,Harlem,40.80446,-73.95786,Private room,65,1,8,2015-11-27,0.18,1,0 +5309959,"A room in private house,",22420999,Herman,Queens,Richmond Hill,40.69509,-73.83203,Private room,50,2,20,2018-11-02,0.47,5,347 +5313584,"Large Sunny Room, Crown Heights, BK",1747467,Kristina,Brooklyn,Crown Heights,40.67464,-73.95735,Private room,52,1,0,,,1,0 +5315796,Spacious Private West Village Studio,839021,Laura,Manhattan,West Village,40.73075,-74.00233,Entire home/apt,176,5,7,2018-04-12,0.21,1,8 +5315798,Williamsburg Apt. S 2nd & Bedford,22761603,Dan,Brooklyn,Williamsburg,40.71425,-73.96054,Private room,90,1,1,2015-03-17,0.02,1,0 +5316158,Sunny 2-bedroom in Clinton Hill ,936258,Kelsey,Brooklyn,Clinton Hill,40.68378,-73.96483,Entire home/apt,175,2,8,2016-08-22,0.15,1,0 +5316266,Studio in North Manhattan ,27538684,Pat,Manhattan,Harlem,40.81186,-73.94019,Entire home/apt,125,6,2,2015-08-25,0.04,1,0 +5316377,"5 Bedroom, 2 Bath, Steps to Train. FREE PARKING!",11137400,Eli,Brooklyn,Crown Heights,40.6686,-73.93037,Entire home/apt,249,3,193,2019-06-05,3.61,1,344 +5316908,Beautiful 1BD/ NEW RENOVATIONS/ELEV,1475015,Mike,Manhattan,Upper West Side,40.76917,-73.98488,Entire home/apt,87,30,7,2018-12-23,0.18,52,365 +5317871,Private Room in Fort Greene! (Baby Friendly),7389379,Nikki,Brooklyn,Fort Greene,40.68436,-73.9735,Private room,65,2,0,,,1,0 +5318322,"Triplex 3 bedroom Private Apt, Deck, yard & pond!",8354345,Gennaro,Brooklyn,Gowanus,40.68095,-73.98901,Entire home/apt,495,2,95,2019-06-17,1.94,1,285 +5319150,"Modern Williamsburg Apt. Comfort, style, ease!",3865502,Roy,Brooklyn,Williamsburg,40.71323,-73.95852,Entire home/apt,120,30,21,2019-03-30,0.40,1,219 +5319431,Beautiful Design studio next to Central Park!,27315132,Stratos,Manhattan,East Harlem,40.78866,-73.95461,Entire home/apt,110,6,25,2018-07-22,0.49,1,161 +5319785,Charming 1-BR in Gramercy,5734689,Eunice,Manhattan,Gramercy,40.73627,-73.9802,Entire home/apt,159,2,13,2019-06-16,0.25,1,10 +5320983,Beautiful bright renovated 2BR w Balcony-sleeps 5!,588270,Dikla,Brooklyn,DUMBO,40.7043,-73.98667,Entire home/apt,189,2,177,2019-06-09,3.33,2,235 +5325551,"Large Room, Private Entrance",27591905,Gene,Brooklyn,Bedford-Stuyvesant,40.68076,-73.91673,Private room,58,2,0,,,1,0 +5326138,Eclectic Loft Room 20 min-Union Sq!,1884659,Brett,Brooklyn,Bushwick,40.70745,-73.92255,Private room,59,1,12,2019-03-16,0.23,2,358 +5327035,The Long Hallway,7363727,Tanmaya,Brooklyn,Crown Heights,40.67784,-73.94995,Private room,51,7,0,,,1,0 +5327598,Convenient & Updated- prime East Village location!,11576606,Katie,Manhattan,East Village,40.72259,-73.98502,Entire home/apt,199,3,1,2016-10-02,0.03,1,0 +5328543,Private Bedroom Private Bathroom,322716,Alex,Brooklyn,Crown Heights,40.67209,-73.94899,Private room,52,12,1,2015-03-06,0.02,5,89 +5334478,One Bedroom Apartment in Chelsea,5074654,Seth,Manhattan,Chelsea,40.74326,-74.00004,Entire home/apt,199,2,98,2019-06-26,1.88,2,33 +5335792,Great East Village bedroom NYC,7877557,Guy,Manhattan,East Village,40.72825,-73.98879,Private room,100,2,0,,,1,0 +5336588,"Sun filled room- Manhattan, steps to Express train",12213641,Joshua,Manhattan,East Harlem,40.80249,-73.93463,Private room,54,1,46,2019-06-30,0.91,2,14 +5337757,"Beautiful, Sunny, by Park, with Private Entrance",117949,Ariel,Brooklyn,Greenpoint,40.72722,-73.94209,Private room,49,3,59,2019-06-08,1.12,1,99 +5338293,"Soho loft, Private bed & bath w/ luxury amenities",14794302,Vanessa,Manhattan,SoHo,40.72578,-73.99998,Private room,250,1,10,2019-04-11,0.26,1,364 +5340170,Spacious room in Park Slope,27240422,Hardik,Brooklyn,Park Slope,40.67487,-73.98459,Private room,45,1,2,2015-07-09,0.04,1,0 +5340262,纽约之家(Sunnyhome7),27673980,Amy,Queens,Flushing,40.74569,-73.83299,Private room,50,1,214,2019-06-24,4.08,8,56 +5341379,Modern Doorman Apt with Great Views,17502474,Sylvia,Brooklyn,Fort Greene,40.68894,-73.9803,Entire home/apt,600,1,0,,,1,0 +5343821,Quiet Midtown Oasis - Sutton Place,27589508,James,Manhattan,Midtown,40.75624,-73.96417,Entire home/apt,200,2,84,2019-06-25,2.21,1,272 +5344850,Cozy room 15 min from Manhattan,27698133,Jakub,Queens,Woodside,40.74705,-73.89564,Private room,38,5,13,2018-12-18,0.25,1,0 +5345293,Historic Landmark Neighborhood,27700855,Peter,Brooklyn,Brooklyn Heights,40.69165,-73.99764,Entire home/apt,300,2,62,2019-06-30,1.19,1,274 +5346488,Huge Sunny Room With En Suite,4731044,Becky,Brooklyn,Bedford-Stuyvesant,40.694,-73.93472,Private room,50,14,0,,,1,0 +5346743,Beautiful room close to Manhattan,7451917,Fe,Brooklyn,Bay Ridge,40.63304,-74.02811,Private room,55,15,7,2018-12-13,0.13,2,317 +5352301,Housing for SGU/AUA/SABA/ROSS students,27741331,Lyn,Brooklyn,East Flatbush,40.65777,-73.92263,Private room,27,30,9,2019-03-23,0.18,2,345 +5352802,Unique loft space in the middle of Manhattan!,5740424,Maria,Manhattan,Midtown,40.75045,-73.98456,Entire home/apt,200,6,1,2016-12-30,0.03,1,0 +5353312,Fabulous studio UES 30 days min,23772724,Elem,Manhattan,Upper East Side,40.77528,-73.95238,Entire home/apt,99,30,13,2019-03-24,0.30,15,323 +5353431,Charming Studio close to everything,16548665,Britta,Brooklyn,Bedford-Stuyvesant,40.69365,-73.95841,Entire home/apt,80,5,5,2016-01-05,0.09,1,0 +5353612,Beautiful private suite-like 2FL apt. West Village,9350960,Victoria,Manhattan,West Village,40.73433,-74.00588,Entire home/apt,250,2,168,2019-06-23,4.39,1,222 +5353815,Top Floor Brooklyn Apartment,27748965,Cecilia And Bryan,Brooklyn,Flatbush,40.6549,-73.95432,Entire home/apt,95,3,0,,,1,0 +5354632,Private Room Inwood Park Top of Manhattan,19931875,Luz & Ruben,Manhattan,Inwood,40.87206,-73.92946,Private room,59,4,13,2018-08-18,0.28,3,157 +5354796,Spacious airy room perfect for two!,13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85535,-73.91388,Private room,57,2,106,2019-06-20,2.02,4,82 +5358354,New BLDG~Balcony~W/D~Prime location,2119276,Host,Manhattan,Hell's Kitchen,40.76685,-73.98644,Entire home/apt,170,30,20,2019-05-09,0.43,39,320 +5359410,"Comfy Room, Close to the Train! ",27782348,Morgan,Brooklyn,Bushwick,40.6983,-73.92607,Private room,50,1,1,2015-03-10,0.02,1,0 +5361021,Beautiful Washington Heights room,27790643,Carl,Manhattan,Washington Heights,40.84522,-73.93952,Private room,49,1,1,2015-03-23,0.02,1,0 +5361824,"1BR bright studio w/ priv bathroom, own entrance!",1290741,Kelvin,Brooklyn,Williamsburg,40.71539,-73.95426,Private room,65,4,2,2018-11-20,0.04,1,0 +5362041,Columbia U/Harlem Townhouse Duplex,27796188,John,Manhattan,Harlem,40.80917,-73.95405,Entire home/apt,250,3,104,2019-06-11,2.07,2,266 +5362279,Stylish 1br in Brooklyn Heights,9787502,Shehzad,Brooklyn,Brooklyn Heights,40.69482,-73.99222,Entire home/apt,200,4,24,2017-07-01,0.45,1,0 +5363669,Brand new apt close to Central Park,13483550,Eleanor,Manhattan,East Harlem,40.79312,-73.94115,Entire home/apt,110,2,10,2016-08-15,0.19,1,0 +5363874,2br Duplex w/Roof Deck Close to Empire State Build,17982486,Cheri,Manhattan,Kips Bay,40.74205,-73.97997,Entire home/apt,250,30,13,2018-04-30,0.25,1,274 +5364134,Sunny Park Slope Bedroom,3201774,Ashley,Brooklyn,South Slope,40.66305,-73.9886,Private room,73,1,199,2019-07-02,4.15,2,142 +5364337,1 Private Bedroom w/ private bath,27807705,Isoke,Brooklyn,Bedford-Stuyvesant,40.68767,-73.94147,Private room,70,1,0,,,1,0 +5364814,Artist Loft in Bushwick,9881214,Darcy,Brooklyn,Bushwick,40.70018,-73.92586,Entire home/apt,125,1,1,2015-04-01,0.02,1,0 +5365190,Amazing 2 BR Loft-Style Apt in South Williamsburg!,27551876,Charlie,Brooklyn,Williamsburg,40.71186,-73.96115,Entire home/apt,195,1,0,,,1,50 +5366126,Great Private Bedroom,569577,John,Brooklyn,Prospect-Lefferts Gardens,40.66126,-73.96257,Private room,75,1,0,,,1,0 +5370580,Private room in 2/bed doorman condo,12621774,Calogero,Queens,Corona,40.73886,-73.85147,Private room,36,1,69,2019-07-01,1.32,1,354 +5371463,Charming sun drenched sanctuary,1295576,Johnny,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95481,Entire home/apt,99,1,100,2019-01-01,1.97,1,158 +5372082,Cozy Vacation Getaway,20806507,Nat,Brooklyn,Boerum Hill,40.68558,-73.98175,Entire home/apt,100,2,8,2018-07-02,0.17,1,359 +5372526,Great share - central location downtown,1223259,Jeff,Manhattan,Lower East Side,40.71952,-73.99313,Private room,71,10,56,2019-05-14,1.08,1,131 +5373297,Comfy 1 Bedroom Apt with Guest Room,26951283,Alexsis,Brooklyn,Park Slope,40.67092,-73.98759,Entire home/apt,100,2,4,2016-10-23,0.08,1,0 +5373703,Sunny Fort Greene Suite,10887881,Erin,Brooklyn,Clinton Hill,40.68943,-73.96635,Private room,85,1,28,2016-03-27,0.53,1,0 +5374226,Homey Well-Located Apartment!,6917906,Michelle,Manhattan,Gramercy,40.73554,-73.98855,Entire home/apt,169,2,16,2016-09-03,0.31,1,0 +5376069,W Village - Airy & Charming Studio,10306287,Debra,Manhattan,West Village,40.73666,-74.00691,Entire home/apt,149,2,3,2017-06-17,0.10,1,0 +5381943,"Cozy, quiet room near Central Park",4693468,Melissa,Manhattan,Upper East Side,40.77993,-73.94879,Private room,89,1,91,2019-06-14,1.71,1,166 +5382755,Home 4 Medical Professionals-Kngbr6,26377263,Stat,Brooklyn,East Flatbush,40.6593,-73.93512,Private room,44,30,1,2016-09-30,0.03,43,273 +5383005,"Gorgeous, Luxurious, Modern Apt in Williamsburg!",27660118,Alan,Brooklyn,Williamsburg,40.70713,-73.94537,Entire home/apt,150,2,233,2019-06-23,4.38,1,5 +5384643,Adorable Studio in Heart of BKLYN,1564111,Madeline,Brooklyn,Fort Greene,40.69105,-73.97356,Entire home/apt,125,2,73,2019-06-08,1.39,1,20 +5384774,"Home For Medical Professionals - ""The Singultus""",26377263,Stat,Queens,Far Rockaway,40.59696,-73.75524,Private room,42,6,2,2015-07-31,0.04,43,151 +5385943,Spacious Room in Awesome Apt Sublet,27919611,Matthew,Manhattan,Washington Heights,40.83242,-73.93931,Private room,28,20,0,,,1,0 +5386402,Bohemian Paradise in Williamsburg,4624753,Casey,Brooklyn,Williamsburg,40.71395,-73.96298,Entire home/apt,155,4,0,,,1,0 +5389907,House 10 min from Manhattan w/ parking near subway,3641421,Martha & Remo,Queens,Astoria,40.7636,-73.926,Entire home/apt,300,7,1,2019-01-01,0.16,1,42 +5390483,Snowfort penthouse with lots of natural light,4589525,Michael,Manhattan,Upper West Side,40.77461,-73.98899,Private room,250,7,3,2015-11-07,0.06,1,0 +5390882,Charming Bedroom in Harlem,27944388,Charles,Manhattan,East Harlem,40.80226,-73.94506,Private room,70,1,325,2019-06-19,6.19,1,108 +5392517,A Spacious Private Peaceful Studio,1509452,Sayam,Brooklyn,Crown Heights,40.67494,-73.95841,Entire home/apt,80,15,2,2015-10-31,0.04,1,0 +5395116,Studio in UWS- Manhattan,14586567,Paula,Manhattan,Upper West Side,40.79368,-73.97324,Entire home/apt,150,1,0,,,1,0 +5395679,Large Private Room in Spacious Apt,27969560,Zach,Queens,Ridgewood,40.69829,-73.90771,Private room,65,2,132,2019-06-24,2.54,1,261 +5396325,Clean and Cozy in Greenpoint/W'burg,1721426,Ashia,Brooklyn,Greenpoint,40.72559,-73.95384,Entire home/apt,167,5,2,2015-06-09,0.04,1,0 +5396701,Union square~reno Studio~Terrace,2119276,Host,Manhattan,East Village,40.73117,-73.98335,Entire home/apt,130,30,10,2019-05-31,0.20,39,311 +5396801,Premium Apartment in Brooklyn,22249707,Alex,Brooklyn,Sheepshead Bay,40.58343,-73.95386,Entire home/apt,115,2,60,2019-06-23,1.15,1,0 +5397157,Private studio by McCarren Park!,27530449,Estefania,Brooklyn,Greenpoint,40.72071,-73.94902,Private room,94,4,199,2019-06-14,3.75,2,246 +5397568,New York 2 to 8 Guest + Private ROOFTOP SUPERHOST,9209691,Anatha Angèle,Manhattan,Harlem,40.82313,-73.94982,Entire home/apt,185,4,137,2019-06-28,2.83,2,261 +5401148,"Artful Chelsea 1-BR Apt, BR Faces Garden",27998261,Adrienne,Manhattan,Chelsea,40.74742,-73.99617,Entire home/apt,195,7,14,2018-09-24,0.29,1,0 +5402239,Full Apt. in PRIME Williamsburg!,27159364,Brett,Brooklyn,Williamsburg,40.71475,-73.95557,Entire home/apt,90,4,1,2015-03-14,0.02,1,0 +5402632,Private BDR/BATH in Luxury Condo near Times Square,27927011,Ashley,Manhattan,Hell's Kitchen,40.75755,-73.99305,Private room,99,365,7,2018-03-08,0.14,1,337 +5402672,Luxurious 1BR/1.5Bath Park Ave Apt,28005408,Srini,Manhattan,Murray Hill,40.74746,-73.97883,Entire home/apt,499,30,4,2015-10-27,0.09,1,364 +5404201,Sun-filled Brownstone in Brooklyn,28013319,Gagandeep,Brooklyn,Prospect Heights,40.67665,-73.97094,Entire home/apt,180,2,135,2019-06-16,2.62,1,151 +5404627,Sun Drenched Williamsburg Apt,5175035,Francesca And Angelique,Brooklyn,Williamsburg,40.71208,-73.95091,Entire home/apt,300,2,3,2016-06-02,0.07,1,0 +5406041,Mod 3 BR duplex-East Village,27974744,Cara,Manhattan,East Village,40.72755,-73.97876,Private room,100,2,156,2019-06-19,3.90,1,197 +5406067,Great Value Great Location!,17062221,Vanessa,Manhattan,Kips Bay,40.73879,-73.97994,Private room,134,3,139,2019-07-02,2.66,2,3 +5406167,Spacious and sunny private room,22189723,Diego,Queens,Ridgewood,40.70696,-73.91155,Private room,49,2,49,2019-06-02,0.95,2,303 +5406187,Sunny Room by Prospect Park,400240,Murat,Brooklyn,Flatbush,40.65323,-73.96223,Private room,47,2,91,2019-07-07,1.73,2,51 +5409372,Artsy English Basement Apartment,7016520,Patricia,Brooklyn,Windsor Terrace,40.65497,-73.97459,Entire home/apt,120,2,17,2019-06-24,0.33,1,0 +5409607,SPACIOUS 2 Bedroom Apt Near Upper East HOSPITALS,25237492,Juliana,Manhattan,Upper East Side,40.76235,-73.96005,Entire home/apt,185,30,9,2018-12-07,0.18,34,342 +5410897,Fab Park Slope garden apt w/ patio,5768957,Michael,Brooklyn,South Slope,40.66832,-73.98754,Entire home/apt,169,30,136,2019-07-05,2.70,1,279 +5411787,Art deco apartment in Bay Ridge,21327210,David,Brooklyn,Bay Ridge,40.63692,-74.0276,Entire home/apt,130,14,23,2019-05-27,0.48,2,33 +5412567,Bright & Colorful Studio in BK,19655924,Dominique,Brooklyn,Bedford-Stuyvesant,40.68856,-73.95315,Entire home/apt,110,1,3,2015-11-16,0.06,1,0 +5413565,Artist/Musician Loft (HUGE space!),11968309,Raviv,Brooklyn,Williamsburg,40.70882,-73.93705,Entire home/apt,122,4,21,2019-05-12,0.41,1,306 +5414178,Master bedroom in prime Brooklyn,28065838,Dana,Brooklyn,Prospect Heights,40.6769,-73.96485,Private room,150,1,2,2015-04-24,0.04,1,0 +5414471,Cool Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72533,-73.94014,Entire home/apt,129,30,1,2018-05-31,0.07,52,340 +5414911,“纽约之家 ”独立洗手间PrivateBathroom,27673980,Amy,Queens,Flushing,40.74428,-73.8333,Private room,65,1,76,2019-04-08,1.46,8,25 +5418312,*PIZZAZZ* Fantastic Studio Apartment-Upper East!,25237492,Juliana,Manhattan,Upper East Side,40.76181,-73.96127,Entire home/apt,115,30,18,2019-06-30,0.35,34,311 +5418807,Home away From Home in Queens!,27614204,Stella,Queens,Bayswater,40.59968,-73.76452,Private room,60,2,81,2019-06-16,1.60,1,312 +5419405,Cozy 1BR with Backyard,1020326,Michael & Andrea,Brooklyn,Carroll Gardens,40.67757,-73.99617,Entire home/apt,150,7,1,2015-08-03,0.02,1,0 +5420456,"clean, quiet, 1 bdrm, great locale",28100741,Michael,Manhattan,Upper West Side,40.77529,-73.98192,Entire home/apt,200,6,35,2019-06-24,0.69,1,11 +5423135,New York/Upper East Side Loft Apt,11650470,Ingrid,Manhattan,Upper East Side,40.78026,-73.9529,Entire home/apt,110,30,1,2015-04-02,0.02,1,188 +5424042,4 Bedroom Apt On Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.75077,-73.80676,Entire home/apt,259,1,72,2019-05-20,1.37,6,257 +5424994,Ideal SoHo 1BR,9488731,Steven,Manhattan,SoHo,40.72593,-74.00185,Entire home/apt,150,1,5,2018-06-08,0.10,1,0 +5429358,Converted Church Loft -Williamsburg,420993,Yanwen,Brooklyn,Williamsburg,40.71813,-73.95758,Entire home/apt,295,3,0,,,1,0 +5430560,Columbus Circle Studio Apt,15402737,Gabriella,Manhattan,Upper West Side,40.7717,-73.98759,Private room,140,1,2,2016-10-21,0.04,1,0 +5430658,nice room in bedstuy F,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68182,-73.95152,Private room,70,1,49,2019-06-27,0.94,15,359 +5431845,Beautiful Fully Furnished 1 bed/bth,3680008,Aliya,Queens,Long Island City,40.75104,-73.93863,Entire home/apt,134,500,30,2018-06-24,0.57,1,90 +5432089,Manhattan house for large groups,23334165,Patricia,Manhattan,Harlem,40.82249,-73.94479,Entire home/apt,825,5,28,2019-06-01,0.59,3,290 +5432178,Great Space in Williamsburg's Heart,28000421,Luca,Brooklyn,Williamsburg,40.71551,-73.9436,Private room,100,1,0,,,2,0 +5432597,1 Full Bed Room Apt in NYC,17822208,Kristin,Manhattan,Kips Bay,40.74352,-73.97859,Entire home/apt,175,2,0,,,1,0 +5432743,Quiet Room with a View,23163374,Kyle,Brooklyn,Bushwick,40.69987,-73.93216,Private room,60,1,0,,,1,0 +5433287,"Perfect Location Downtown, Walk Everywhere!",5261137,Nazieh,Manhattan,East Village,40.73418,-73.9893,Entire home/apt,250,1,15,2019-06-23,0.40,1,15 +5433367,Huge Bedroom in a Charming House with Private Yard,6480337,Sandra,Brooklyn,Greenpoint,40.72665,-73.94832,Private room,58,2,4,2017-08-21,0.17,1,0 +5433746,European eco-chic in trendy Bklyn,28187447,Francis,Brooklyn,Bedford-Stuyvesant,40.68406,-73.91612,Entire home/apt,142,4,106,2019-06-26,2.07,2,247 +5433967,Bedstuy Garden Half Block to Subway,3674378,Jane,Brooklyn,Bedford-Stuyvesant,40.68369,-73.91349,Entire home/apt,120,3,194,2019-06-20,3.72,1,213 +5434150,CHARMING NYC Studio Loft NEAR SOHO!,27813383,O,Manhattan,Greenwich Village,40.72937,-74.00125,Entire home/apt,136,30,43,2019-01-25,0.85,1,338 +5434197,Convenient Room Near Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.81663,-73.95315,Private room,55,2,71,2016-12-15,1.34,3,0 +5434655,New York City Dreaming - Upper West,3810454,Michael,Manhattan,Upper West Side,40.79584,-73.97156,Entire home/apt,185,3,0,,,1,0 +5439148,Private Room in Duplex Apartment,24468833,Amanda,Brooklyn,Prospect Heights,40.67734,-73.96433,Private room,75,1,1,2015-08-09,0.02,2,188 +5439372,A Historic Harlem Abode,19066350,Eric,Manhattan,East Harlem,40.79963,-73.94628,Entire home/apt,103,2,98,2019-06-24,1.94,1,237 +5442054,Chef's Kitchen and private garden,16437254,Benjamin,Brooklyn,Fort Greene,40.68969,-73.97797,Entire home/apt,193,30,1,2018-11-16,0.13,21,311 +5442313,3 Fully Furnished Apts 1 House!,3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91374,Entire home/apt,700,1,6,2017-02-15,0.13,3,322 +5442584,one bedroom in the middle of it all,27204642,Anna,Manhattan,Theater District,40.76115,-73.98224,Entire home/apt,200,30,14,2019-05-09,0.29,1,284 +5443318,Prime Columbus C~New BLDG~1BR~W/D,2119276,Host,Manhattan,Hell's Kitchen,40.76615,-73.9879,Entire home/apt,145,30,11,2019-06-09,0.24,39,351 +5443581,Bright New Mod 1bd+RoofDeck/WBurg,28234750,Ashley,Brooklyn,Williamsburg,40.70892,-73.94982,Entire home/apt,200,14,14,2017-08-28,0.28,1,0 +5445314,Beautiful Artist loft,21838149,Marcia,Brooklyn,DUMBO,40.70299,-73.98624,Private room,160,1,54,2019-06-20,1.03,1,10 +5445743,"Cozy, private room in Bed-Stuy Apt!",17246368,Sam,Brooklyn,Bedford-Stuyvesant,40.6848,-73.94939,Private room,45,2,43,2019-03-29,0.82,1,302 +5447255,Cozy 1BR Near Theater Distict!,28255422,Sara,Manhattan,Hell's Kitchen,40.76387,-73.99039,Entire home/apt,151,7,12,2015-10-26,0.24,1,0 +5447434,A cozy night in the heart of NYC,28173937,Jeehee,Manhattan,Hell's Kitchen,40.7634,-73.98928,Private room,98,2,20,2016-01-03,0.41,1,0 +5451108,Beautiful room with large windows,7159349,Marian,Brooklyn,Greenpoint,40.73556,-73.9557,Private room,75,6,0,,,1,0 +5454050,Gorgeous 1BR New W/D Modern_BestLocation!NYC,2119276,Host,Manhattan,Hell's Kitchen,40.76494,-73.9881,Entire home/apt,185,30,15,2018-10-09,0.29,39,336 +5458432,Large Industrial Apt. Near Trains & Yankee Stadium,1364903,Farah,Bronx,Concourse Village,40.83161,-73.91958,Entire home/apt,150,4,6,2019-06-10,0.32,1,346 +5465270,"Sunny, and Spacious in Cobble Hill!",4413909,Adam,Brooklyn,Boerum Hill,40.68557,-73.99074,Entire home/apt,170,3,7,2016-08-07,0.14,1,0 +5466630,588A Brownstone Hospitality,28183109,Dara,Brooklyn,Bedford-Stuyvesant,40.68481,-73.93187,Entire home/apt,119,2,83,2019-06-16,1.58,1,217 +5466680,1 BR TSquare balcony great view,18212433,Veronique Camille,Manhattan,Hell's Kitchen,40.76602,-73.99249,Entire home/apt,229,5,5,2018-09-11,0.09,8,43 +5470350,Spacious rm 15 mins from downtown!,1340207,Deena,Manhattan,Harlem,40.81574,-73.94877,Private room,80,2,5,2016-09-19,0.10,1,0 +5475870,Prime Location - Large Private Room,22709931,Richard,Manhattan,Hell's Kitchen,40.76909,-73.98639,Private room,100,5,0,,,1,0 +5476046,Large Duplex Near Subway! 5bdrm/2ba,10297692,Dee,Brooklyn,Crown Heights,40.67615,-73.92945,Entire home/apt,500,1,68,2019-04-27,1.41,2,313 +5476474,Amazing HK one bedroom apartment,20318406,Dimitriy,Manhattan,Hell's Kitchen,40.76571,-73.99482,Entire home/apt,120,1,12,2018-07-19,0.24,1,163 +5477034,Comfy room in Williamsburg Loft Apt,4687722,Mav,Brooklyn,Williamsburg,40.71538,-73.94527,Private room,85,1,0,,,1,0 +5477876,Stylish Greenpoint Gem,1506972,Vanessa & Christian,Brooklyn,Greenpoint,40.73406,-73.95551,Entire home/apt,135,3,17,2019-06-08,0.32,1,8 +5478741,"Garden, Walk to Empire State, B'way, Subway 2 Blks",28411613,Marea,Manhattan,Midtown,40.74447,-73.98362,Entire home/apt,524,3,57,2019-06-09,1.14,1,115 +5478901,Private Room in Harlem,20121732,Alison,Manhattan,Harlem,40.82205,-73.94523,Private room,60,1,0,,,1,0 +5481762,Artfully Renovated Brownstone Space,5515591,Tina,Brooklyn,Bedford-Stuyvesant,40.68685,-73.95526,Entire home/apt,159,4,142,2019-01-04,2.74,2,24 +5482031,Beautiful Spacious 2 Bedroom Apt,8817100,Ulysses,Manhattan,Washington Heights,40.8434,-73.94139,Entire home/apt,200,2,0,,,1,0 +5482918,Pleasant-Place JFK Private Housings Complex,26602392,Dean&Paula,Queens,Springfield Gardens,40.6631,-73.76749,Private room,73,1,148,2019-05-30,3.82,2,347 +5487204,Spacious Room in Brooklyn,6834165,Amanda,Brooklyn,Crown Heights,40.67044,-73.94292,Shared room,70,2,2,2015-08-25,0.04,1,0 +5490366,Spacious Private Room + Full Bath!,28468845,Jacob,Brooklyn,Bushwick,40.69024,-73.9059,Private room,168,7,1,2015-03-21,0.02,1,179 +5490833,Brooklyn Luxury,11463877,Danielle,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93487,Private room,75,1,0,,,1,0 +5491149,Located in the heart of EVERYTHING!,59185,Gabriela,Manhattan,Upper East Side,40.76272,-73.96775,Entire home/apt,169,3,76,2018-12-15,1.48,1,126 +5492696,"Lovely Studio, a Block from Trains!",15107994,Saad,Queens,Jackson Heights,40.74761,-73.89466,Entire home/apt,85,4,6,2016-01-06,0.11,1,0 +5494750,Home 4 Medical Professionals-Kngbr4,26377263,Stat,Brooklyn,East Flatbush,40.66087,-73.93516,Private room,38,30,1,2019-03-30,0.29,43,331 +5495026,Home 4 Medical Professionals-Kngbr5,26377263,Stat,Brooklyn,East Flatbush,40.65881,-73.93376,Private room,48,30,2,2016-05-07,0.04,43,306 +5495927,Crotona Park Sunny Room at SUMMIT!,860636,Shawn(Ta),Bronx,Tremont,40.83887,-73.88805,Private room,42,2,25,2018-09-30,0.47,3,0 +5497874,Sunny spacious private unit close CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77045,-73.95564,Private room,80,30,57,2018-10-10,1.10,3,245 +5500197,Luxurious studio w/ rooftop & gym,6050250,Aram,Brooklyn,Williamsburg,40.71404,-73.93982,Entire home/apt,145,3,8,2016-10-24,0.16,1,0 +5500740,Room Two in sun bathed walk-up_2,26080167,Douglas,Manhattan,Washington Heights,40.83551,-73.94232,Private room,72,2,18,2019-05-05,0.35,3,145 +5502282,Great Room in Williamsburg (uriel),3398752,Alessandra,Brooklyn,Williamsburg,40.71074,-73.95429,Private room,95,2,186,2019-06-22,3.75,2,62 +5504568,Spacious European Room for rent!,3562322,Lord Daniel,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95291,Private room,45,4,49,2019-07-04,0.93,3,40 +5505726,Modern One Bed Apt Near Time Square,25602417,Jardeen,Manhattan,Hell's Kitchen,40.7624,-73.99136,Entire home/apt,250,2,64,2019-06-21,1.96,1,27 +5505918,Winter Deal! Cosy room available in East Village,28557212,Marion,Manhattan,Gramercy,40.73305,-73.98255,Private room,73,5,4,2017-02-21,0.08,1,0 +5506438,Luxury High Rise Apartment,2263462,Anna Meng,Manhattan,Murray Hill,40.74467,-73.97202,Private room,100,1,1,2015-10-03,0.02,1,0 +5507371,No sleep till....Brooklyn!,28564535,Emily,Brooklyn,Bedford-Stuyvesant,40.69129,-73.93338,Private room,50,1,1,2016-07-29,0.03,1,0 +5507784,Bushwick Artist Loft,1924825,Gilad,Brooklyn,Williamsburg,40.70565,-73.93518,Entire home/apt,165,1,75,2019-06-27,1.45,1,365 +5509771,"Modern, renovated garden apartment",1098902,Amy,Brooklyn,Park Slope,40.66999,-73.98079,Entire home/apt,184,3,123,2019-07-07,2.35,2,292 +5509802,High rise building. On 5th Avenue.,25134906,Jonathan,Manhattan,East Harlem,40.79582,-73.9479,Entire home/apt,295,2,0,,,1,365 +5509980,★NEW YORK APT★ 20 Minutes to Manhattan ★1ST Floor,6145618,Rocio & Dejan,Queens,Ridgewood,40.70612,-73.9079,Entire home/apt,135,2,97,2019-06-30,1.85,1,0 +5510725,Fun in the Heart of Manhattan,7580514,Mekado,Manhattan,Hell's Kitchen,40.76181,-73.98757,Entire home/apt,160,2,53,2019-06-09,1.06,1,0 +5511036,1BR bottom fl apt Prospect Heights,28584269,Andre,Brooklyn,Crown Heights,40.67687,-73.96242,Entire home/apt,99,3,72,2019-06-23,1.40,1,266 +5511067,"Studio in heart of Cobble Hill, BK",28577246,Nick,Brooklyn,Boerum Hill,40.68607,-73.99048,Entire home/apt,85,10,3,2015-09-28,0.06,1,0 +5512274,West Village Ground Floor Studio,7033514,Paul,Manhattan,West Village,40.73426,-74.00525,Entire home/apt,199,1,1,2015-10-30,0.02,1,0 +5518629,Cozy East Village 1Bdrm Apt w/ Yard,2353777,Natalie,Manhattan,East Village,40.72843,-73.97872,Entire home/apt,195,2,3,2015-10-12,0.06,1,0 +5519207,Chez Jesse Vacation Spot - Garden,3191371,Jesse,Manhattan,East Harlem,40.80843,-73.93722,Private room,80,1,134,2019-06-13,2.69,3,211 +5521107,Bright and Cozy in Crown Heights,9862957,Miklos,Brooklyn,Crown Heights,40.67049,-73.94177,Private room,69,15,21,2018-09-26,0.43,1,360 +5522518,Cozy & Bright West Village 1BR Apt!,201390,Meggie,Manhattan,West Village,40.73174,-74.00309,Entire home/apt,145,3,13,2016-05-06,0.25,1,0 +5523413,Oasis in Kensington,12212944,Janine,Brooklyn,Kensington,40.64321,-73.98294,Private room,52,3,8,2019-05-18,0.15,2,27 +5523654,Hamilton Heights Heaven,28645131,Nadeen,Manhattan,Harlem,40.81777,-73.95753,Entire home/apt,80,5,2,2017-04-05,0.06,1,0 +5523876,Light and Airy with Hudson Views,119911,Kristin,Manhattan,Harlem,40.82056,-73.95661,Entire home/apt,300,2,9,2015-11-14,0.18,1,0 +5524950,Modern 1 Br Apartment,18950563,Naio,Manhattan,Washington Heights,40.85396,-73.93785,Entire home/apt,75,20,2,2019-05-19,0.04,1,100 +5525206,Gorgeous Studio UWS Lincoln Center!,1854977,Amanda,Manhattan,Upper West Side,40.77361,-73.97908,Entire home/apt,180,3,7,2016-01-02,0.15,1,0 +5525510,Cozy Bohemian Room in New York City,23086547,Arya,Manhattan,Chinatown,40.71705,-73.99668,Private room,62,6,62,2019-06-23,1.27,1,317 +5526210,The TriBeCa Apartment — Spacious Living with View,8278521,Ross,Manhattan,Tribeca,40.71966,-74.00984,Entire home/apt,750,1,50,2019-06-30,1.07,1,345 +5528111,Cozy room right on BROADWAY - Washington Heights,28669815,Nga,Manhattan,Washington Heights,40.84503,-73.93978,Private room,31,7,0,,,1,0 +5533000,Modern and spacious with backyard,28690907,Dwayne,Brooklyn,Bushwick,40.69525,-73.91385,Entire home/apt,250,3,16,2019-07-01,0.31,2,72 +5534192,"Spacious, cozy 1BR in Washington Heights",28696923,Steven,Manhattan,Washington Heights,40.84347,-73.93406,Entire home/apt,99,1,8,2016-12-04,0.23,1,0 +5534660, Studio apartment in Greenpoint,28699661,Andrzej,Brooklyn,Greenpoint,40.73066,-73.955,Entire home/apt,120,7,17,2016-01-05,0.33,1,0 +5534962,Cozy Getaway in The ❤ of SoHo,1539848,Edythe,Manhattan,SoHo,40.72092,-73.99966,Entire home/apt,150,3,58,2019-07-01,2.78,1,40 +5536023,Luxury Home Base of Operations,28706617,Ruben,Manhattan,East Harlem,40.80177,-73.93532,Entire home/apt,100,7,0,,,1,0 +5536560,"Classy neighborhood, close to everything.",257479,Colleen,Manhattan,Upper West Side,40.78257,-73.97681,Entire home/apt,150,14,6,2017-03-05,0.12,1,0 +5536638,Bedford Ave N. WBurg Room in 2BR-1,28709982,Sidiq,Brooklyn,Williamsburg,40.71986,-73.95619,Private room,99,2,35,2017-01-02,0.68,3,76 +5536824,2 BEDROOM GREAT APT ON LEXINGTON AVE MUST SEE,24715671,Julia,Manhattan,Midtown,40.74294,-73.98499,Entire home/apt,200,30,9,2018-07-19,0.17,4,342 +5536844,Park Slope Master Bedroom,28711190,Adam,Brooklyn,Park Slope,40.6682,-73.98196,Private room,75,1,0,,,1,0 +5538353,Home 4 Medical Professionals-KingsC,26377263,Stat,Brooklyn,Prospect-Lefferts Gardens,40.65604,-73.94221,Private room,45,30,0,,,43,361 +5538410,Home 4 Medical Professionals-Dwnst8,26377263,Stat,Brooklyn,East Flatbush,40.65546,-73.94619,Private room,45,30,0,,,43,361 +5538720,A room in the dreamland waiting for,28722667,Qudsia,Brooklyn,Flatlands,40.62506,-73.93046,Private room,59,1,75,2019-05-12,1.46,3,322 +5538798,Beautiful 1BR Brooklyn Brownstone,16862116,Denise,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93823,Private room,84,2,5,2016-09-19,0.10,1,364 +5541897,TOWNHOUSE NEAR RSD PARK - 1 Bedroom Apt & Terrace,25237492,Juliana,Manhattan,Upper West Side,40.78182,-73.98492,Entire home/apt,140,30,11,2019-07-01,0.22,34,204 +5543210,Sunny Oasis in Carroll Gardens,3424719,Demetria,Brooklyn,Columbia St,40.68255,-74.00224,Private room,90,4,8,2019-05-13,0.16,1,0 +5543996,Large 1 bdrm in Brooklyn - NYC,28745989,Jordan,Brooklyn,Midwood,40.61056,-73.96558,Entire home/apt,125,1,0,,,1,0 +5545560,1892 Brownstone on Landmarked Block,28752891,Sarah,Manhattan,Upper West Side,40.79093,-73.9678,Private room,250,3,33,2019-07-01,2.31,2,38 +5545876,Sunny one bedroom blocks from park and trains,10014288,Jaclyn,Brooklyn,Prospect-Lefferts Gardens,40.65739,-73.95983,Entire home/apt,100,5,0,,,1,0 +5546217,4 bedroom Townhouse/Brownstone/Prospect Park,11369454,Mimi,Brooklyn,Prospect-Lefferts Gardens,40.655,-73.95975,Entire home/apt,190,2,119,2019-06-17,2.42,1,243 +5547081,Spacious 2 Story Apt. Near Subway,6289792,Che-Wei,Brooklyn,Bedford-Stuyvesant,40.68937,-73.95097,Entire home/apt,298,3,17,2019-05-14,0.33,1,35 +5549530,Sun-filled bedroom in East Village / Gramercy NYC,322697,Jeff & TJ,Manhattan,Gramercy,40.7317,-73.98272,Private room,99,2,136,2019-07-03,2.67,1,33 +5550377,Sunny East Village,13972159,Erin,Manhattan,East Village,40.72681,-73.97994,Entire home/apt,250,2,12,2017-12-12,0.26,1,0 +5550788,"Cozy 3 and 1/2 bedroom apt ,near Times Square",1982425,Nya,Manhattan,Hell's Kitchen,40.75702,-73.99458,Private room,95,7,2,2019-05-15,0.14,1,335 +5556358,Doesn't get any better than this!!,28513635,Shayan,Brooklyn,Williamsburg,40.71755,-73.95437,Private room,110,6,0,,,1,0 +5557097,A private room in New York. One block from A,3447539,Nick,Manhattan,Washington Heights,40.84898,-73.93642,Private room,59,4,109,2019-06-27,2.08,2,284 +5557135,Beautiful Chic Studio,28809821,Michelle,Manhattan,Murray Hill,40.74444,-73.97174,Shared room,115,1,7,2016-11-06,0.15,1,0 +5557536,The Ruppe Railroad,28812204,Kate,Queens,Ridgewood,40.70463,-73.91272,Entire home/apt,200,2,6,2019-04-27,0.13,1,349 +5557684,Private Rm/Bath in Fab Brickstone,9035762,Laura & Tim,Brooklyn,Bushwick,40.69099,-73.91665,Private room,75,1,8,2017-01-01,0.17,1,281 +5558242,Sunny Park Slope Studio Brownstone,16548032,Galya,Brooklyn,Park Slope,40.66907,-73.97609,Entire home/apt,115,5,4,2017-06-23,0.08,1,0 +5558596,Cozy and Warm 1 bedroom,28473177,Niki,Manhattan,Upper West Side,40.77122,-73.98135,Entire home/apt,146,3,45,2019-07-01,0.87,1,211 +5561355,Large charming bedroom,640117,Simon,Brooklyn,Williamsburg,40.71193,-73.95605,Private room,110,3,4,2017-09-03,0.08,5,0 +5562394,Cozy Bedroom Off Eastern Parkway,17548709,Robert,Brooklyn,Crown Heights,40.67151,-73.95789,Private room,60,1,0,,,1,0 +5562420,Gorgeous 6 BED Family Home / Williamsburg,1693243,Jason,Brooklyn,Williamsburg,40.71544,-73.94771,Entire home/apt,450,5,137,2019-06-21,2.63,1,226 +5562710,CLEAN & COZY EAST VILLAGE PAD,16155254,Lina,Manhattan,East Village,40.73097,-73.98178,Entire home/apt,160,1,169,2019-06-21,3.22,4,238 +5562962,Lovely upper east side studio,1389487,Lina,Manhattan,Upper East Side,40.77399,-73.95101,Entire home/apt,149,2,15,2017-06-22,0.29,1,0 +5567220,Spacious 2-bedroom in a modern bldg,27201435,Svetlana,Manhattan,East Harlem,40.80015,-73.94043,Entire home/apt,100,2,32,2016-05-25,0.62,1,0 +5567278,Spacious Bright West Village Apt!,2306485,Sam,Manhattan,West Village,40.73296,-74.00235,Entire home/apt,220,3,118,2019-05-20,2.26,1,180 +5567361,Modern Apt - Vibrant Neighborhood!,7797690,Danica,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.95824,Entire home/apt,120,1,282,2019-07-07,5.51,1,187 +5567401,Bright 1BR w balconies + roof deck!,134936,April,Brooklyn,Williamsburg,40.70893,-73.94832,Entire home/apt,99,25,24,2017-03-25,0.46,1,0 +5568799,Lovely room in 2 bedroom apartment,13299977,Sofia,Manhattan,Harlem,40.81608,-73.9397,Private room,65,1,27,2018-11-12,0.52,1,1 +5569167,Private room in Heart of Astoria,13728275,Elvira,Queens,Astoria,40.76272,-73.92004,Private room,50,4,1,2015-03-16,0.02,1,0 +5569302,"Sunny Apt, park view - Jeffreson L",5074343,Josh,Brooklyn,Bushwick,40.70336,-73.92416,Entire home/apt,65,5,0,,,1,0 +5569464,Sun-filled apartment in Greenpoint ,2729850,Alienor,Brooklyn,Greenpoint,40.72658,-73.94031,Entire home/apt,125,1,0,,,1,0 +5571405,Beautiful MASTER BEDROOM East side C7,20559017,Yohan,Manhattan,Upper East Side,40.76324,-73.96251,Private room,75,30,8,2018-09-21,0.16,9,303 +5572393,Shared Living and Bathroom Brooklyn Rental,28891151,Kimesha,Brooklyn,East New York,40.66905,-73.88976,Private room,85,2,3,2019-06-09,0.22,4,353 +5578843,Private cozy Bedroom in Brooklyn ,26098783,Sam,Brooklyn,Sunset Park,40.65137,-74.00666,Private room,2000,40,28,2015-12-06,0.54,2,0 +5579147,"Bright, Big 2 bedroom in Park Slope",10054163,Jaclyn,Brooklyn,South Slope,40.6642,-73.98435,Entire home/apt,149,2,1,2015-04-09,0.02,1,0 +5579629,Lovely sunlit room in Brooklyn,329917,Clémentine,Brooklyn,Greenpoint,40.72905,-73.95755,Private room,53,2,5,2016-10-21,0.13,1,0 +5580236,Make Our Home Your Home,19512999,Bennett,Manhattan,Upper West Side,40.80251,-73.96532,Entire home/apt,325,3,2,2015-09-14,0.04,1,0 +5580648,SunnyPrivateRoom TrendyNeighborhood,21497854,Meaghan,Brooklyn,Bushwick,40.70124,-73.92218,Private room,45,2,13,2015-08-17,0.25,1,0 +5581272,"Home 4 Medical Professionals - The ""Horripilation""",26377263,Stat,Queens,Far Rockaway,40.59535,-73.75441,Private room,38,30,4,2018-11-03,0.08,43,222 +5581273,"Clean, Cozy One Bedroom Apartment",28937325,Em,Manhattan,Washington Heights,40.85769,-73.93374,Shared room,120,3,38,2016-09-03,0.74,1,178 +5581442,Home 4 Medical Professionals- St Johns Episcopal 4,26377263,Stat,Queens,Far Rockaway,40.59594,-73.75492,Private room,38,30,5,2017-05-13,0.10,43,312 +5582283,Cozy bedroom in Brooklyn Sunsetpark,26098783,Sam,Brooklyn,Sunset Park,40.65118,-74.00842,Private room,2000,2,0,,,2,365 +5588253,"Bright, Clean Room, Ideal location",28974263,Maria,Brooklyn,Williamsburg,40.70945,-73.95491,Private room,60,3,31,2019-06-26,0.77,1,147 +5588684,Spacious + Modern with Yard,489950,Maria,Brooklyn,Greenpoint,40.73111,-73.95592,Entire home/apt,190,3,16,2018-10-13,0.40,1,0 +5590387,Village One Bedroom,20573060,Jenna,Manhattan,East Village,40.72566,-73.98032,Private room,125,2,16,2019-06-02,0.37,1,18 +5590400,"Charming, Artsy 1 Bedroom w/office",28984530,Genni And Stephen,Manhattan,Harlem,40.81251,-73.95102,Entire home/apt,100,6,0,,,1,0 +5590966,Riverside Suite,28723165,Taylor & Tee,Manhattan,Harlem,40.82778,-73.94884,Private room,70,1,131,2018-01-20,2.50,1,0 +5591612,"Huge 1br, 22min to Manhattan, steps to Prospect Pk",7434416,Nicole,Brooklyn,Flatbush,40.64913,-73.96379,Entire home/apt,130,1,45,2019-06-23,0.86,1,7 +5593205,Room Available in Fort Greene,20083880,Maryam,Brooklyn,Fort Greene,40.69701,-73.97353,Private room,45,1,1,2016-01-01,0.02,1,0 +5593679,Luxury Upper West Side Studio,5855080,Sue,Manhattan,Upper West Side,40.78965,-73.9687,Entire home/apt,110,30,7,2019-04-30,0.14,1,67 +5593725,Large/comfy/beautiful BR near ABCD Manhattan..!!!,29003805,Akemi,Manhattan,Harlem,40.82753,-73.94602,Private room,60,3,18,2019-07-01,1.17,2,0 +5593975,Adorable Private Room w/ backyard!,29005043,Brianna,Brooklyn,Bedford-Stuyvesant,40.67861,-73.9453,Private room,125,14,7,2016-10-03,0.15,1,179 +5594865,Large Bedroom in Two Bedroom Apartment,1342014,Christian,Manhattan,Lower East Side,40.71369,-73.98828,Private room,81,1,3,2019-04-24,0.68,1,0 +5594883,"One private guest room in a 3 bedroom +Condo.",29011140,Nebiyu,Manhattan,Harlem,40.80672,-73.95404,Private room,80,5,0,,,1,0 +5598465,1 BR Bohemian Oasis in Astoria,18941320,Alexandra,Queens,Astoria,40.76327,-73.92457,Entire home/apt,105,1,7,2017-10-22,0.14,1,0 +5600260,Gorgeous Studio in Greenwich Village,29034854,Viviana,Manhattan,Greenwich Village,40.72918,-73.99882,Entire home/apt,200,7,1,2016-08-01,0.03,1,23 +5601147,Spacious 1BR apt - Columbia U,11658596,Lucas,Manhattan,Morningside Heights,40.80469,-73.96381,Entire home/apt,100,1,0,,,1,0 +5602027,Sunny Room in Trendy Williamsburg,7798111,Shlomit,Brooklyn,Williamsburg,40.70827,-73.95229,Private room,100,2,0,,,1,61 +5602200,Quiet artist's den,24665235,Ippei,Brooklyn,Bedford-Stuyvesant,40.68417,-73.94977,Entire home/apt,75,2,9,2016-04-19,0.20,1,0 +5602369,3 bedroom brownstone duplex,1407325,Przemek,Brooklyn,Prospect Heights,40.67909,-73.97315,Entire home/apt,250,5,17,2018-12-31,0.33,1,36 +5604005,Make Yourself At Home NYC,3852579,Merylin & David,Manhattan,Nolita,40.72092,-73.99386,Entire home/apt,400,2,101,2019-06-29,1.94,1,258 +5604704,Spacious Chique Brooklyn Gem,19523446,Aundre,Brooklyn,Crown Heights,40.67644,-73.95991,Entire home/apt,160,3,134,2019-07-02,2.62,1,338 +5605209,Cozy Room for 2 in Chinatown/LES,28576665,Anna & Ben,Manhattan,Chinatown,40.7175,-73.99264,Private room,110,1,175,2019-06-24,3.34,2,43 +5605790,So clean so convenient.,28690907,Dwayne,Brooklyn,Bushwick,40.69363,-73.91329,Entire home/apt,220,1,76,2019-07-03,2.95,2,81 +5605822,Sunny 2 bedroom Apt in Brownstone,517966,Shean,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93886,Entire home/apt,135,3,148,2019-06-21,2.86,2,134 +5606308,Amazing 1 BR in Loft in Williamsburg,4514390,Stephanie,Brooklyn,Williamsburg,40.71061,-73.96764,Private room,99,2,41,2019-06-22,0.82,1,143 +5611893,Clean BD: Heart of the East Village,5934575,Karly,Manhattan,East Village,40.72795,-73.98539,Private room,89,4,6,2019-06-24,0.14,1,35 +5613334,Beautiful room in Brownstone Bklyn,7322898,Clemencia,Brooklyn,Prospect Heights,40.67928,-73.97013,Private room,110,7,0,,,1,0 +5615835,"Nice Room with Loft Bed- Manhattan, East Village",29106164,Christina,Manhattan,East Village,40.72805,-73.98415,Private room,75,3,32,2019-05-24,1.39,1,72 +5616298,Lux 2Bed/2.5Bath Central Park View!,836168,Henry,Manhattan,Upper West Side,40.7747,-73.98708,Entire home/apt,2000,30,9,2016-01-28,0.18,11,364 +5618341,"Quaint 2 bdrm apt in Greenpoint, BK",11904076,Keith,Brooklyn,Greenpoint,40.73046,-73.95211,Entire home/apt,160,1,0,,,1,0 +5619149,Vibrant Manhattan Artist Loft,3868692,Lucas,Manhattan,Financial District,40.70462,-74.00986,Entire home/apt,475,2,57,2019-03-01,1.11,2,141 +5621141,Large Sunny 1BD in Chelsea!,23747060,Cathy,Manhattan,Chelsea,40.74406,-73.99551,Entire home/apt,230,4,41,2019-06-30,0.80,1,236 +5623799,Sunny lofty BR on Express A/D line,9311147,Esther,Manhattan,Harlem,40.82417,-73.94496,Private room,49,1,0,,,1,0 +5624616,Master w/ private bath and sleeping loft. 2 beds,20469855,Kate,Manhattan,Upper West Side,40.78913,-73.97021,Private room,125,2,7,2016-05-17,0.14,1,248 +5624807,"Luxury 2BR, Prime Location, 20 Min to Manhattan",15775091,Asaf,Brooklyn,Crown Heights,40.67051,-73.95851,Entire home/apt,180,2,2,2017-06-11,0.07,1,0 +5625386,1 bdrm apt near Prospect Park,6372947,Michelle & Sebastien,Brooklyn,Flatbush,40.65305,-73.95818,Entire home/apt,80,5,1,2015-09-15,0.02,1,0 +5626601,Easy Tourist resting place!,29161738,Gerardo,Manhattan,Harlem,40.82855,-73.94745,Private room,55,1,7,2016-06-12,0.18,1,0 +5627418,"Charming, quiet and comfortable 1BR",13451939,Dana,Brooklyn,Bedford-Stuyvesant,40.68153,-73.93825,Entire home/apt,135,3,140,2019-07-02,2.75,2,197 +5627944,Huge Studio Midtown Manhattan -BEST,29167335,Yedda,Manhattan,Midtown,40.7555,-73.96826,Entire home/apt,182,4,56,2019-06-14,1.08,2,148 +5628539,3 B GREAT 1BR APT IN NEW YORK CITY,24715671,Julia,Manhattan,Midtown,40.74197,-73.98373,Entire home/apt,209,30,14,2018-06-10,0.28,4,0 +5629953,Large Private Bedroom in NYC!!!,23863437,Sheresa,Manhattan,Harlem,40.82955,-73.9477,Private room,78,7,26,2017-08-18,0.71,1,0 +5631916,One Bedroom Upper East Side,14358525,Pierre-Hubert,Manhattan,Upper East Side,40.76873,-73.95487,Entire home/apt,202,1,0,,,1,0 +5632551,"Home 4 Medical Professionals- The ""Zona""",26377263,Stat,Brooklyn,Bushwick,40.70406,-73.91811,Private room,48,30,3,2019-03-02,0.06,43,224 +5636395,"Sunny, comfy and quiet room",11363708,Nanie,Brooklyn,Bedford-Stuyvesant,40.70021,-73.9447,Private room,81,4,165,2019-06-21,3.26,1,15 +5638270,Bohemian Den Sofa-Bed Chinatown NYC,20694703,Pablo,Manhattan,Lower East Side,40.71286,-73.98849,Shared room,80,2,12,2019-06-30,0.24,2,89 +5638792,Incredible Location!,3128437,Natalie,Queens,Astoria,40.7576,-73.92134,Private room,60,1,0,,,2,89 +5638917,Spacious and Sunny Studio Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72751,-73.94078,Entire home/apt,129,30,5,2019-06-22,0.10,52,342 +5640394,"Airy, Bright Bushwick Apt W/ Views",240584,Aswini,Brooklyn,Bushwick,40.7001,-73.93602,Entire home/apt,100,3,28,2018-12-18,0.54,1,0 +5641644,Private Cozy Room in Crown Heights,25354313,Tommy,Brooklyn,Crown Heights,40.67413,-73.95916,Private room,35,3,54,2019-01-27,1.18,2,0 +5641857,New York City Historical Brownstone First Floor.,8000315,Naima,Manhattan,Harlem,40.8215,-73.95006,Entire home/apt,100,2,243,2019-06-28,4.65,2,250 +5642982,Room One in cozy apartment_1,26080167,Douglas,Manhattan,Washington Heights,40.83481,-73.94317,Private room,82,2,11,2019-05-31,0.32,3,364 +5646613,Room available in 2 br apartment,9503725,Shane,Queens,Astoria,40.76224,-73.92023,Private room,80,7,0,,,1,0 +5647213,"Experience Brownstone Brooklyn: Comfy, Roomy 2BR",16482147,Margenett,Brooklyn,Bedford-Stuyvesant,40.68294,-73.92672,Entire home/apt,128,4,44,2019-06-20,1.98,1,88 +5647416,Paris in Manhattan with 2 balconies,2458750,Stephanie,Manhattan,Upper East Side,40.76923,-73.95034,Entire home/apt,159,30,14,2019-05-23,0.30,1,265 +5649163,Sun drenched 1 bed - few mins walk from subway,643512,Kizzy,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95016,Entire home/apt,101,7,4,2019-05-26,0.11,1,365 +5649580,4th fl Large Private Room - Central Park & Rooftop,29278028,Alexis,Manhattan,Upper East Side,40.77618,-73.95627,Private room,195,5,56,2019-03-03,1.10,4,145 +5649623,Lux 2Bed/2Bath Central Park Views!,836168,Henry,Manhattan,Upper West Side,40.77306,-73.98637,Entire home/apt,2000,30,9,2015-10-19,0.17,11,364 +5651523,Modern + Spacious 1 bd w/ the works,9680175,Becca,Manhattan,East Harlem,40.79331,-73.9408,Entire home/apt,160,2,57,2019-07-07,1.11,1,129 +5651679,Sunny Room w/Master Bathroom in NYC,6165258,Gita,Manhattan,Harlem,40.80302,-73.94477,Private room,100,7,0,,,3,365 +5651944,5th fl Private Suite & Bath - Central Park,29278028,Alexis,Manhattan,Upper East Side,40.77789,-73.95731,Private room,195,5,62,2019-02-19,1.20,4,84 +5652403,Room in Clean/Quiet/Funky Space!,3999695,Sarah,Brooklyn,Bedford-Stuyvesant,40.69561,-73.93603,Private room,475,3,1,2015-09-26,0.02,1,0 +5652542,"Spacious, Quiet 1 bdrm on the Park",29279330,Sarah,Manhattan,Inwood,40.85991,-73.93193,Entire home/apt,122,3,34,2017-06-28,0.68,1,0 +5652946,Sunny Bedroom Near Prospect Park,19233353,Kallie,Brooklyn,Prospect-Lefferts Gardens,40.65758,-73.95866,Private room,45,14,6,2018-10-15,0.12,2,0 +5656458,Quiet Cobble Hill Gem 2BR Duplex,16091512,Ana,Brooklyn,Cobble Hill,40.68534,-73.99471,Entire home/apt,235,5,10,2016-02-25,0.21,1,0 +5656639,Modern Luxury in brownstone at Central Park,5790236,Clay,Manhattan,Upper West Side,40.78974,-73.97018,Entire home/apt,275,7,15,2019-05-24,0.29,2,45 +5659180,Brooklyn's Finest! Huge apt next to train & park!,1394543,Jennifer,Brooklyn,Flatbush,40.65044,-73.96327,Entire home/apt,99,2,35,2019-04-28,0.76,2,15 +5659204,Room Three with loft bed_3,26080167,Douglas,Manhattan,Washington Heights,40.83514,-73.94334,Private room,78,5,0,,,3,364 +5659417,Charming East Village Nook,29332408,William,Manhattan,East Village,40.72866,-73.9806,Entire home/apt,125,3,51,2019-06-13,1.06,1,67 +5659666,Andy's Place,29336125,Don,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92909,Entire home/apt,125,3,64,2019-05-30,1.26,1,132 +5660972,Recently Renovated Boerum Hill Apt,4653182,Kayla,Brooklyn,Boerum Hill,40.68282,-73.98112,Entire home/apt,170,1,0,,,1,0 +5661080,Cozy&Central:EmpireState/Highline/Times Square,29345363,Simone,Manhattan,Chelsea,40.74924,-73.99784,Entire home/apt,165,3,58,2019-06-20,1.72,1,138 +5661276,1-Br Hell's Kitchen / Times Square,21503931,Steve,Manhattan,Hell's Kitchen,40.76561,-73.99439,Entire home/apt,129,1,178,2019-07-01,3.43,1,272 +5661603,2 bedroom home in Brooklyn,27755788,Gian-Murray,Brooklyn,Park Slope,40.67812,-73.97353,Entire home/apt,150,6,1,2018-08-26,0.09,1,209 +5661631,Home 4 Medical Professionals-Intrf8,26377263,Stat,Brooklyn,Crown Heights,40.677,-73.93763,Private room,45,30,0,,,43,303 +5663222,Elegant Private Studio - Town House,29358602,Lillybeth & Crystal,Manhattan,Harlem,40.80663,-73.94991,Private room,90,1,151,2019-06-30,4.42,1,129 +5670038,Private Room + Bath in East Village (+ Roof deck!),10807892,Nora,Manhattan,East Village,40.724,-73.98905,Private room,175,3,85,2018-12-01,1.65,1,0 +5670672,Entire Floor of Sunny Brownstone,5515591,Tina,Brooklyn,Clinton Hill,40.68699,-73.96049,Entire home/apt,188,3,146,2019-06-21,2.93,2,135 +5671103,"Chic, clean, and comfortable!",1686834,Daniel,Queens,Astoria,40.76632,-73.91873,Private room,80,3,11,2016-11-07,0.21,1,0 +5671922,Perfect Holiday House in NYC,1434654,Andrew,Queens,Ridgewood,40.7073,-73.91775,Entire home/apt,160,7,3,2016-08-13,0.06,2,15 +5672196,"Come, relax, and explore NYC",29408218,Corey,Brooklyn,Crown Heights,40.67092,-73.95301,Private room,50,1,0,,,1,0 +5672288,Cozy 1 br apartment in Williamsburg,15586243,Andrew And Coline,Brooklyn,Williamsburg,40.7095,-73.94933,Entire home/apt,100,3,1,2015-04-27,0.02,1,0 +5672471,Sunny Room close to Express Train,142695,Lynn,Brooklyn,Bedford-Stuyvesant,40.6813,-73.9476,Private room,65,1,0,,,1,0 +5672615,Room in Big Duplex and Backyard!,2423554,Mark,Brooklyn,Crown Heights,40.67531,-73.94967,Private room,50,4,15,2019-05-24,0.32,1,324 +5672704,Cozy Room in Times Square,6003891,Inigo,Manhattan,Hell's Kitchen,40.76196,-73.99194,Private room,70,3,3,2016-04-22,0.07,1,0 +5678143,Perfect Studio on Ft. Green Park!,93781,Devin,Brooklyn,Fort Greene,40.6918,-73.9729,Entire home/apt,130,7,83,2019-06-21,1.59,1,67 +5679129,1 Bedroom Apt in Tree Line Block,2671902,Iki,Brooklyn,Bedford-Stuyvesant,40.68024,-73.93987,Entire home/apt,60,14,0,,,1,59 +5679557,Charming Brooklyn Brownstone Home - GREAT LOCATION,14513121,C.,Brooklyn,Park Slope,40.67731,-73.97475,Entire home/apt,180,3,21,2019-07-07,0.40,1,125 +5679938,Stunning Furnished Modern Studio,1303542,Frank,Manhattan,Financial District,40.70909,-74.00579,Entire home/apt,150,90,3,2016-10-06,0.06,1,86 +5681611,Private room in Jackson Heights Apartment 2+,16514175,Karen,Queens,Elmhurst,40.74595,-73.88691,Private room,69,1,20,2018-10-26,0.57,5,65 +5681742,European Host in Manhattan,4029415,Maggie,Manhattan,Harlem,40.81645,-73.94483,Private room,62,5,47,2019-05-23,0.90,1,89 +5681745,Charming1 Bedroom Apt in Greenpoint,29456424,Dallas,Brooklyn,Greenpoint,40.73125,-73.95905,Entire home/apt,150,2,8,2015-11-09,0.16,1,0 +5684147,Sun Drenched Amazing large 1 br,1606397,Andrew,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.95969,Entire home/apt,118,5,1,2015-05-26,0.02,1,0 +5684940,Sunny apt. in Renovated brownstone,470675,Edna Luise,Manhattan,East Village,40.72322,-73.98283,Entire home/apt,195,12,10,2017-06-25,0.20,1,64 +5690007,New York City Private Room near Metro,22020703,Patricio,Manhattan,Washington Heights,40.85494,-73.93179,Private room,75,1,155,2019-07-07,4.42,1,314 +5691347,Lovely studio - Clinton Hill/Barclays Center area.,26264587,Nancy,Brooklyn,Clinton Hill,40.68319,-73.96766,Entire home/apt,135,14,20,2019-06-13,0.46,1,41 +5691755,Charming West Village Apartment,24575626,Melissa,Manhattan,West Village,40.73398,-74.00369,Entire home/apt,450,2,3,2018-07-07,0.08,1,260 +5692492,Cozy room in unique artsy apartment,3148473,Maria,Manhattan,Washington Heights,40.83891,-73.93758,Private room,45,1,10,2016-09-04,0.19,1,0 +5692807,Charming Two Bedroom in Chelsea 30 days+,1803036,Eric,Manhattan,Chelsea,40.74405,-73.99915,Entire home/apt,250,3,164,2019-06-17,3.21,1,71 +5692870,Greenpoint Master Bedroom,4471002,Janet,Brooklyn,Greenpoint,40.72705,-73.95504,Private room,70,5,0,,,2,0 +5693978,1 large bedroom apartment available,29518961,Akshay,Manhattan,Upper West Side,40.77937,-73.97805,Entire home/apt,120,1,1,2015-03-22,0.02,1,0 +5694862,Lovely Brooklyn Room & Private Bath,12419033,Rachel,Brooklyn,Gowanus,40.68202,-73.98151,Private room,125,2,40,2019-06-13,0.77,1,295 +5695055,Newly Renovated Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.7711,-73.95627,Entire home/apt,118,30,4,2018-07-28,0.08,29,283 +5695509,Private room in great apt bwick,15897880,Sander,Queens,Ridgewood,40.70066,-73.90964,Private room,50,1,0,,,1,0 +5695523,Stay European in Brooklyn,36841,Irene & Alban,Brooklyn,Bedford-Stuyvesant,40.68421,-73.92608,Entire home/apt,100,2,107,2019-07-03,2.23,1,41 +5695566,Cozy room for short term sublet,29528182,Jerie,Brooklyn,Bedford-Stuyvesant,40.6792,-73.95358,Private room,40,10,2,2015-04-08,0.04,1,0 +5697062,"Sunny, Open Studio Apartment",29537636,Lauren,Manhattan,Financial District,40.7091,-74.01286,Entire home/apt,225,1,3,2015-10-24,0.07,1,0 +5697237,New bldg~Junior 1~colombus circle~Terrace~WD,2119276,Host,Manhattan,Hell's Kitchen,40.76646,-73.98805,Entire home/apt,185,30,6,2018-05-23,0.20,39,281 +5697517,"Quiet, Meatpacking/W.Village",93779,Kat,Manhattan,West Village,40.74033,-74.00872,Private room,225,1,17,2017-09-28,0.34,1,365 +5697556,Magical rowhouse and garden in Williamsburg,946943,Annie,Brooklyn,Williamsburg,40.71212,-73.94965,Entire home/apt,155,4,58,2019-06-28,1.21,3,3 +5699348,Spacious UES 1 bedroom apartment,8686625,Marie,Manhattan,Upper East Side,40.78301,-73.95085,Entire home/apt,165,1,166,2019-06-23,3.30,1,210 +5705775,"Bright & Beautiful, Private Garden",16437254,Benjamin,Brooklyn,Boerum Hill,40.68897,-73.98634,Entire home/apt,165,30,3,2019-02-20,0.06,21,339 +5706202,"New City View 1BR Loft, Greenpoint",7503643,Vida,Brooklyn,Greenpoint,40.72573,-73.94071,Entire home/apt,149,30,1,2017-10-15,0.05,52,357 +5706280,New! 2-Bed Apt Near Central Park,13347167,AFI Apartments,Manhattan,Upper East Side,40.77276,-73.95557,Entire home/apt,142,30,3,2018-08-10,0.10,29,315 +5707711,Cozy & clean private bedroom&bath-LGBTQIA welcome!,29592244,S,Queens,Forest Hills,40.71811,-73.83368,Private room,59,4,138,2019-06-18,2.69,1,35 +5707888,"Homey, Large, Gorgeous 2 BR Apt!",3780975,Shira,Manhattan,Harlem,40.80403,-73.95615,Entire home/apt,200,2,6,2016-01-03,0.12,1,0 +5708360,Large 1 bdrm in Prospect Heights,2946319,Heather,Brooklyn,Prospect Heights,40.67758,-73.96452,Entire home/apt,125,7,1,2017-01-31,0.03,1,0 +5715049,Park Block Studio,29628369,Nick,Brooklyn,Park Slope,40.66568,-73.9774,Entire home/apt,181,2,238,2019-06-23,4.57,1,302 +5717355,Private 1 BR Apt in Exciting Bushwick,29641189,Joseph,Brooklyn,Williamsburg,40.70314,-73.93656,Private room,90,2,3,2019-06-02,1.73,1,18 +5717674,Welcome to Brooklyn!,29642992,Annalyn,Brooklyn,Kensington,40.63694,-73.97487,Private room,70,3,8,2016-10-18,0.17,1,0 +5718494,Spacious studio between NoLiTa and LES,11559667,Veronica And Tyler,Manhattan,Lower East Side,40.72019,-73.99297,Entire home/apt,150,2,3,2017-09-15,0.13,1,0 +5718935,Spacious Studio - Central Park!,29651191,Adam,Manhattan,Upper West Side,40.79589,-73.96187,Entire home/apt,225,3,13,2018-01-02,0.25,1,0 +5719742,"Great location, close to everything",87105,Jeff,Manhattan,Upper West Side,40.77737,-73.98355,Entire home/apt,240,7,8,2019-06-04,0.16,1,38 +5720133,Cozy apt next to park & train for 4,5735779,Aubrey,Brooklyn,Prospect-Lefferts Gardens,40.66012,-73.96078,Entire home/apt,98,5,11,2017-03-25,0.24,1,0 +5720569,NYC 1-Bedroom Apt in the Heights,29661897,Eric,Manhattan,Washington Heights,40.8558,-73.93025,Entire home/apt,100,5,15,2017-10-23,0.29,1,30 +5720988,Perfect Studio in the West Village,29664627,Luis,Manhattan,West Village,40.73271,-74.00545,Entire home/apt,200,2,8,2016-07-06,0.19,1,0 +5725154,DNTWN BK / Boerum Hill Sky Loft,29683852,Lindsay,Brooklyn,Downtown Brooklyn,40.68927,-73.98423,Entire home/apt,150,1,2,2015-04-12,0.04,1,0 +5726139,Room in Williamsburg,14001033,Hadrien,Brooklyn,Williamsburg,40.71239,-73.96178,Private room,65,5,0,,,1,0 +5726773,Your Brooklyn Nest,23570473,James,Brooklyn,Crown Heights,40.67219,-73.95461,Private room,129,30,18,2016-09-26,0.36,3,339 +5727093,Urban Rustic Room In Artist's Loft!,29693386,Jeffrey,Brooklyn,Williamsburg,40.70506,-73.93201,Private room,65,7,1,2015-04-08,0.02,1,0 +5727850,Beautiful Room Near S. St. Seaport,29697292,Hans,Manhattan,Financial District,40.70854,-73.99992,Private room,70,7,12,2019-05-21,0.28,1,318 +5728014,Cozy & Quiet 1 BR - Lincoln Center,29698290,Allie,Manhattan,Upper West Side,40.77655,-73.98074,Entire home/apt,200,3,9,2019-01-01,0.19,1,0 +5728500,Cozy Private Room in Astoria,23185328,Deniz,Queens,Ditmars Steinway,40.77842,-73.90994,Private room,58,1,34,2017-01-23,0.66,2,129 +5728502,Hand Crafted Williamsburg Sanctuary,26955105,Danny,Brooklyn,Williamsburg,40.70835,-73.95226,Entire home/apt,180,4,67,2019-06-30,1.32,1,304 +5728806,Large private room in Nolita,4271676,Nat,Manhattan,Nolita,40.72217,-73.99481,Private room,120,7,3,2015-09-01,0.06,3,0 +5729118,REAL LUXURY my SUNNY alcove studio,12020405,Jen,Manhattan,Upper West Side,40.77556,-73.98416,Entire home/apt,244,4,38,2019-06-12,0.74,1,222 +5729222,Cozy and bright room with a closet,27281731,Sergii,Brooklyn,Flatbush,40.64295,-73.95276,Private room,40,3,20,2019-07-07,0.38,1,131 +5729530,1Br apt on the UES accomodates two,29707420,Riki,Manhattan,Upper East Side,40.76939,-73.9504,Entire home/apt,150,1,0,,,1,0 +5735314,"Large, sunny, private studio Apt 2R",29739883,Adam & Allen,Brooklyn,Greenpoint,40.72102,-73.94382,Entire home/apt,135,2,249,2019-07-04,4.84,2,248 +5735323,Central Park Brownstone Studio,29741575,Tyson,Manhattan,Upper West Side,40.78519,-73.97032,Entire home/apt,150,5,0,,,1,0 +5735447,Charming 1BR in Brooklyn Brownstone,4471002,Janet,Brooklyn,Fort Greene,40.68914,-73.97406,Entire home/apt,200,1,0,,,2,0 +5736059,Single room in townhouse with yard!,610690,Julien,Brooklyn,Bedford-Stuyvesant,40.6801,-73.90976,Private room,65,1,24,2019-07-01,0.47,2,80 +5736925,Park Slope center Garden Studio ,16621177,Susan,Brooklyn,Park Slope,40.66812,-73.98303,Entire home/apt,140,2,232,2019-07-04,4.46,1,326 +5737678,Amazing room in Williamsburg!!!,6094516,Lupe,Brooklyn,Williamsburg,40.70905,-73.95152,Private room,80,1,0,,,1,0 +5737759,Sunny Studio Loft in Greenpoint,7503643,Vida,Brooklyn,Greenpoint,40.7254,-73.94051,Entire home/apt,129,30,1,2018-11-07,0.12,52,311 +5738785,Compact cosy studio with separate kitchen,22557949,Ray,Queens,East Elmhurst,40.7583,-73.87679,Entire home/apt,112,2,3,2019-05-19,0.35,1,338 +5739031,"Great space, amazing location",9080758,Mary & Ewen,Brooklyn,Gowanus,40.67959,-73.98713,Private room,80,2,48,2018-07-29,0.93,1,0 +5742615,"Spacious, Renovated 1 BR Loft Apt",29784880,Amy,Manhattan,Chinatown,40.71491,-73.99182,Entire home/apt,149,7,6,2019-06-25,0.12,1,241 +5742795,Big Bedroom in Huge Loft. W.37thNYC,29786027,Peter,Manhattan,Hell's Kitchen,40.75437,-73.99334,Private room,99,4,2,2015-06-14,0.04,1,0 +5743959,Private Room Available!,29792577,Nina,Manhattan,Harlem,40.82171,-73.95515,Private room,50,1,6,2016-08-16,0.12,1,0 +5746781,Luxury apartment in Bushwick,22677829,Daniel,Brooklyn,Bushwick,40.69226,-73.92286,Entire home/apt,190,2,34,2018-09-17,0.69,1,341 +5748301,"Sleeping in NYC, like home.",29817997,Alberto,Queens,Rego Park,40.72799,-73.85543,Private room,70,2,175,2019-06-26,3.45,2,349 +5749147,Quiet Attic Room for Single Female Traveler,860636,Shawn(Ta),Bronx,Tremont,40.84061,-73.88858,Private room,30,3,11,2018-10-02,0.45,3,0 +5749382,Massive Private Bedroom/Bath and Beautiful Terrace,24911518,Erion,Manhattan,East Harlem,40.79733,-73.9363,Private room,96,21,14,2019-06-03,1.38,1,3 +5749889,Sunny back bedroom in duplex,16727332,Emily,Brooklyn,Park Slope,40.66801,-73.98142,Private room,85,7,0,,,1,0 +5756241,1 bedroom in a 2 bedroom apartment,11732381,Teri,Manhattan,Midtown,40.75858,-73.96342,Entire home/apt,200,2,0,,,1,0 +5756464,Sunny & Spacious Apt Near Subway,13347167,AFI Apartments,Manhattan,Upper East Side,40.7729,-73.95587,Entire home/apt,118,30,3,2018-03-31,0.11,29,204 +5756476,"Bright, sunny Gramercy apartment!",27583102,Sarah,Manhattan,Kips Bay,40.73894,-73.98049,Entire home/apt,150,2,21,2019-06-17,0.40,1,191 +5756643,Spacious Private room near Columbia University,4275400,Siwen,Manhattan,Morningside Heights,40.80317,-73.96338,Private room,50,20,0,,,1,0 +5756767,CLEAN SUNNY ARTSY APARTMENT,75815,Marie Sophie & Christopher,Brooklyn,Bedford-Stuyvesant,40.68411,-73.92079,Entire home/apt,99,3,0,,,1,0 +5757333,Manhattan Full Apt Next to Subway!,1632428,Matias & Marlana,Manhattan,Harlem,40.82003,-73.95745,Entire home/apt,350,1,4,2019-04-20,0.08,2,365 +5757509,Luxury/Midtown East,29867161,Tal,Manhattan,Murray Hill,40.74415,-73.97322,Private room,165,1,0,,,1,0 +5758234,Soaring Bushwick 3 Bedroom,21823,Greg,Brooklyn,Bushwick,40.6878,-73.91452,Entire home/apt,225,3,82,2019-06-18,1.58,3,255 +5760510,Lower East Side Studio !,1613244,Ariel,Manhattan,Lower East Side,40.72292,-73.99242,Entire home/apt,110,30,17,2019-05-25,0.34,9,276 +5760776,Architects Central SoHo 1BR Home,29885916,Axel,Manhattan,SoHo,40.72386,-74.00462,Entire home/apt,245,4,8,2019-01-02,0.16,1,52 +5761032,Comfy Bedroom- Artsy Townhouse- Location Location,29887425,Cheryl,Manhattan,Harlem,40.81732,-73.94757,Private room,65,2,58,2019-07-03,1.12,1,24 +5761564,East Village - Private Room in 2 BR,10532169,Ben,Manhattan,East Village,40.73065,-73.98444,Private room,100,1,0,,,1,0 +5762947,“纽约之家” 独立洗手间PrivateBathroom,27673980,Amy,Queens,Flushing,40.74513,-73.83139,Private room,60,1,100,2019-05-27,1.93,8,76 +5763191,"BEAUTIFUL APT UPPER WEST SIDE, 68St ONLY GIRLS",29901463,Nadia,Manhattan,Upper West Side,40.7726,-73.97928,Shared room,68,3,105,2019-06-23,2.09,1,302 +5766499,Sunny Bedroom in Brooklyn Loft,19735540,Hannah,Brooklyn,Bushwick,40.70754,-73.92138,Private room,55,2,0,,,1,0 +5766895,Charmingly Rustic Apt in Ft Greene,3448931,Rachel,Brooklyn,Clinton Hill,40.69174,-73.96872,Entire home/apt,195,3,6,2017-05-29,0.12,1,0 +5769218,"24 h doorman,luxury 1Bdr Upper East",29452212,Bengu,Manhattan,Upper East Side,40.76545,-73.95668,Entire home/apt,120,7,0,,,1,0 +5770283,Awesome apartment in Williamsburg!,11722846,Anael,Brooklyn,Williamsburg,40.715,-73.95018,Entire home/apt,80,10,3,2018-08-05,0.06,1,0 +5770483,Cozy Quiet 1 BR Apt Hell's Kitchen,29936494,Monica,Manhattan,Hell's Kitchen,40.76525,-73.98953,Entire home/apt,195,5,55,2019-06-14,1.09,1,34 +5771361,Newly renovated 2 bed 2 bath in EV,21191263,Jonny,Manhattan,East Village,40.72915,-73.98866,Entire home/apt,275,1,1,2015-03-30,0.02,1,0 +5771366,Authentic New York Vintage Home,1211067,"Hans, Sandra & Son",Staten Island,Tompkinsville,40.62105,-74.08723,Private room,49,2,151,2019-06-30,3.06,2,277 +5771655,Brooklyn Bargain for August!,12212944,Janine,Brooklyn,Kensington,40.64455,-73.98298,Private room,30,21,1,2015-06-19,0.02,2,1 +5773199,Lovely apartment on Upper West Side,2446016,Aryeh,Manhattan,Upper West Side,40.79246,-73.97481,Entire home/apt,150,5,48,2019-07-04,0.93,1,0 +5774245,Bright Peaceful Clean | One Bedroom,25859072,Elizabeth,Brooklyn,Clinton Hill,40.6896,-73.96761,Entire home/apt,140,5,5,2017-10-03,0.10,1,0 +5779471,New Sunny East Village Apartment,1674428,Jules,Manhattan,East Village,40.72478,-73.9755,Entire home/apt,160,7,9,2016-11-13,0.24,1,0 +5779752,East Village with 2x Balcony + Roof,19498957,Peter,Manhattan,East Village,40.72481,-73.98216,Private room,125,3,4,2015-10-07,0.08,1,0 +5783307,Large Bedroom in Bushwick,30002976,Lora,Brooklyn,Bushwick,40.70212,-73.93032,Private room,48,7,0,,,1,0 +5783517,Cozy & Clean #1,23533897,Fatou,Brooklyn,Crown Heights,40.67383,-73.95137,Private room,50,2,61,2019-06-26,1.17,7,285 +5783899,"Live like a local! Queen size bed, private room.",23977712,Sarah,Manhattan,East Harlem,40.79088,-73.94597,Private room,100,1,315,2019-06-27,6.10,2,76 +5783925,"Shared room, full size bed & Skyline view!",23977712,Sarah,Manhattan,East Harlem,40.79082,-73.94615,Shared room,50,1,181,2019-06-30,3.49,2,46 +5784146,"2 Bedroom, Doorman. Roof deck. Skyview!",19446943,Roger,Manhattan,Upper East Side,40.76236,-73.95827,Entire home/apt,320,30,9,2018-08-31,0.19,1,215 +5784897,Spacious Private Room in Wash Hts!,29888597,Eric,Manhattan,Washington Heights,40.84347,-73.93978,Private room,200,7,41,2017-12-22,0.80,1,87 +5789606,Cozy BedRoom in a great location.,30037999,Loyda,Manhattan,Morningside Heights,40.80593,-73.9583,Private room,70,2,200,2019-06-29,3.92,1,202 +5790990,Big Private Bedroom in Williamsburg Townhouse,8818661,Jordan,Brooklyn,Williamsburg,40.71335,-73.9655,Private room,70,3,16,2018-08-27,0.49,1,0 +5791540,Brooklyn Heights gem,30046603,Jane,Brooklyn,Brooklyn Heights,40.69758,-73.99139,Entire home/apt,200,2,2,2017-06-13,0.05,1,0 +5791707,#1 LARGE STUDIO NEAR CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77107,-73.95517,Entire home/apt,100,30,71,2019-06-25,1.42,3,248 +5792144,Wall Street luxury short term stay,15175443,Val,Manhattan,Financial District,40.70471,-74.00817,Private room,150,3,2,2015-07-28,0.04,1,0 +5792453,Renovated 1 BDRMUnion Sq/E.Village,30050649,Samantha,Manhattan,East Village,40.73141,-73.98737,Entire home/apt,185,1,9,2016-11-06,0.24,1,0 +5793707,Lower East Side Minimalist Studio,8390853,Warren & Jessica,Manhattan,Lower East Side,40.7189,-73.99182,Entire home/apt,125,3,117,2019-06-23,2.29,1,228 +5794806,Brooklyn Soul,257676,Linda,Brooklyn,Flatbush,40.65409,-73.96025,Private room,148,1,11,2019-01-04,0.22,2,90 +5796405,Manhattan Condo at Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75245,-73.97342,Private room,295,1,6,2017-09-19,0.12,3,0 +5797398,"1 bedroom, large williamsburg loft",30078721,Elizabeth,Brooklyn,Williamsburg,40.71375,-73.96312,Private room,80,7,0,,,1,0 +5803068,AFFORDABLE COZY PRIVATE ROOM,16151285,Carol,Bronx,Williamsbridge,40.8789,-73.84855,Private room,45,14,27,2018-01-01,0.55,4,325 +5803875,"New, Modern, Brooklyn Apartment ",278576,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.95071,Entire home/apt,114,2,81,2019-06-20,1.57,2,160 +5804170,"Queens,Woodside.NY",30063582,Vic,Queens,Woodside,40.74905,-73.90185,Private room,37,1,0,,,1,0 +5804184,Dreamy belltower room in huge loft,30112106,John,Brooklyn,Bushwick,40.70033,-73.93964,Private room,45,6,13,2019-06-23,0.25,1,0 +5804451,The Perfect Studio in Brooklyn,13501779,Alex,Brooklyn,Crown Heights,40.67169,-73.95117,Entire home/apt,85,2,14,2019-02-26,0.28,2,0 +5805232,Comfortable room near everything,3974808,Noah,Queens,Ditmars Steinway,40.7778,-73.9144,Private room,150,1,0,,,1,0 +5805561,Cozy Chelsea Carriage House Apt,19390428,Ardeana,Manhattan,Chelsea,40.74157,-74.00141,Entire home/apt,240,1,0,,,1,0 +5806273,Great and private place to stay in Manhattan!,23719409,Carlina,Manhattan,Harlem,40.8261,-73.95139,Private room,65,1,157,2019-06-08,3.04,4,137 +5806416,Soho/Nolita - Best Location - Large 1 BDRM.,12484957,Marina,Manhattan,Nolita,40.72102,-73.99469,Entire home/apt,280,3,122,2019-06-24,2.35,1,113 +5806687,Comfortable bedroom in Bushwick ,18060780,Jessica,Brooklyn,Bushwick,40.69611,-73.92258,Private room,65,1,1,2015-05-05,0.02,1,0 +5806803,White private room with 0min to bus stop,17997408,Nancy,Brooklyn,Clinton Hill,40.69439,-73.96484,Private room,65,1,136,2019-06-24,5.72,2,11 +5806817,"Sleeping in NYC, like home (1).",29817997,Alberto,Queens,Rego Park,40.72846,-73.85546,Private room,65,1,120,2019-06-01,2.35,2,355 +5806829,"LOVELY APARTMENT, BIG LIVING ROOM",4473420,Sophiane,Brooklyn,Boerum Hill,40.68821,-73.9903,Private room,120,1,0,,,1,0 +5811254,A beautiful Brownstone in Bed-Stuy.,6877794,Ron&Leetal,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94171,Entire home/apt,255,6,12,2018-10-04,0.24,1,66 +5811500,Cozy Nest 15 Minutes from Manhattan,2558779,Marina,Queens,Ridgewood,40.70152,-73.90568,Private room,54,3,47,2019-05-20,0.93,2,321 +5812875,"Large studio, view on Central Park",5963594,Geoffroy,Manhattan,Upper West Side,40.77647,-73.98211,Entire home/apt,175,1,0,,,1,0 +5816130,AWESOME SUNNY ROOM C IN A CHARMING AREA!,29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69307,-73.96073,Private room,90,30,30,2019-03-30,0.58,6,338 +5816145,AWESOME MODERN ROOM IN CHARMING AREA +SWEET ROOF 2,29650513,Katie Graham,Brooklyn,Clinton Hill,40.69454,-73.96198,Private room,90,30,47,2019-03-13,0.91,6,297 +5816151,AWESOME MODERN ROOM IN CHARMING AREA+ SWEET ROOF B,29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9607,Private room,90,30,47,2019-05-12,0.92,6,323 +5818551,"Cozy apartment ,in uptown Manhattan",30196119,Mark,Manhattan,Harlem,40.82943,-73.9407,Entire home/apt,120,5,28,2019-05-23,0.82,1,355 +5821886,"Sunny,Private,Williamsburg 1BD Apt",10553573,William,Brooklyn,Williamsburg,40.71122,-73.95602,Entire home/apt,210,1,3,2015-07-01,0.06,1,0 +5823337,Beautiful 2BR Upper West Side,30224326,Matthew,Manhattan,Morningside Heights,40.8063,-73.96268,Entire home/apt,150,7,2,2016-08-11,0.05,1,0 +5823579,Amazing location!!!!!!! Upper East Side Manhattan,30224269,Todd,Manhattan,Upper East Side,40.77907,-73.95211,Entire home/apt,140,2,135,2019-06-16,2.68,1,228 +5824543,Private room for 2 (10 min to city) - Females only,30232055,Qasim,Bronx,Longwood,40.82209,-73.90086,Private room,80,1,2,2019-04-30,0.32,1,255 +5825173,Apt. in Classic Brooklyn Brownstone,2483427,Vasuki,Brooklyn,Crown Heights,40.66907,-73.94168,Entire home/apt,200,2,61,2019-06-23,1.18,1,341 +5825911,Stunning Brooklyn brownstone 20 mins to Manhattan,22627992,Ed,Brooklyn,Park Slope,40.67681,-73.97535,Entire home/apt,450,6,12,2018-12-29,0.24,1,2 +5826468,Large 2 bed 2 bath w private patio!,27894798,Aya,Manhattan,East Harlem,40.79372,-73.94316,Entire home/apt,200,30,0,,,1,0 +5826475,NYC Charming Harlem Brownstone w/ private garden!,30242959,Celine And Ken,Manhattan,Harlem,40.82682,-73.94634,Private room,116,2,129,2019-07-02,2.50,1,89 +5826518,Chic Downtown Getaway: Large 1BR Flat,4731948,Kiki,Manhattan,Chinatown,40.71647,-73.99116,Entire home/apt,215,1,36,2019-06-30,1.45,4,0 +5826700,Beautiful Spacious Uptown Apartment,26328221,Geoff,Manhattan,Harlem,40.82505,-73.95294,Entire home/apt,160,30,36,2017-03-26,0.70,2,0 +5831012,Spacious bedroom in Oversized Apt.,1409854,Didi,Manhattan,Upper East Side,40.77155,-73.94763,Private room,150,25,2,2018-04-24,0.04,1,110 +5833530,Shared Room in Apartment,30280316,Victor,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92056,Private room,40,1,0,,,1,0 +5834668,Phenomenal 1br Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72704,-73.94007,Entire home/apt,149,30,7,2019-06-01,0.15,52,335 +5838858,Cozy Apartment in Lower Manhattan,30314132,Devin,Manhattan,Chinatown,40.71509,-73.9967,Entire home/apt,65,5,108,2018-08-14,2.10,1,0 +5839029,Modern Williamsburg Treehouse,580009,Timothy,Brooklyn,Williamsburg,40.71603,-73.94785,Entire home/apt,260,7,56,2019-05-31,1.08,1,132 +5840936,Large Outdoor Patio Space for Small Events,16245414,Shae,Brooklyn,Bushwick,40.69476,-73.92359,Entire home/apt,400,1,2,2017-07-15,0.04,4,179 +5842819,"Amazing Apartment, Heart of Willy!",3560299,Auminea,Brooklyn,Williamsburg,40.71671,-73.95591,Private room,90,1,1,2015-06-03,0.02,1,0 +5845124,Beautiful Astoria Apartment,30346554,Kristin,Queens,Astoria,40.76956,-73.91787,Private room,75,2,6,2016-06-06,0.12,1,0 +5846050,Cozy Harlem Stay,22534207,Jemar,Manhattan,East Harlem,40.80906,-73.93686,Private room,75,2,45,2019-06-03,0.94,1,123 +5846654,HUGE 1BR on the Upper East Side ,30354449,Avraham,Manhattan,Upper East Side,40.77139,-73.95766,Entire home/apt,110,1,3,2016-02-14,0.07,1,0 +5846745,"Spacious room in fun, quiet house",24561040,Ame,Brooklyn,Park Slope,40.68018,-73.97596,Private room,115,2,153,2019-07-05,3.00,3,0 +5847182,Lefferts Gardens Brooklyn Room,30357478,Ingrid,Brooklyn,East Flatbush,40.65406,-73.9506,Private room,20,1,0,,,1,0 +5847724,Private Room In Bushwick,8968224,Julia,Brooklyn,Bushwick,40.68917,-73.91549,Private room,49,1,0,,,1,0 +5847793,Large private room on quiet street,30360956,Kimberly,Queens,Ridgewood,40.70573,-73.89873,Private room,100,180,0,,,1,266 +5848422,Doorman buildng studio-East Village,13465396,Ami,Manhattan,East Village,40.72956,-73.98613,Entire home/apt,82,5,3,2016-01-20,0.07,1,0 +5848515,Sunny bedroom in the West Village,28252018,Ellie,Manhattan,West Village,40.73379,-74.00422,Private room,90,1,5,2015-10-26,0.10,1,0 +5849386,Delightful Lighthouse -Direct Train To JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68638,-73.91368,Private room,69,2,148,2019-06-27,2.86,5,112 +5849810,Traveler’s Nest - Straight train from JFK Airport,5541374,Hassan And Patti,Brooklyn,Bushwick,40.6863,-73.91378,Private room,69,3,127,2019-06-24,2.48,5,40 +5849991,3 bedroom Apt at $249 per Night.,9898029,Anthony,Brooklyn,East Flatbush,40.65041,-73.92574,Entire home/apt,249,3,10,2019-06-03,0.65,5,156 +5850040,The Charmer - Straight shot from JFK Arprt!,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68691,-73.91317,Private room,89,3,116,2019-06-24,2.24,5,83 +5850148,"Entire Floor, Private Bathroom -Direct ride to JFK",5541374,Hassan And Patti,Brooklyn,Bushwick,40.6864,-73.9133,Private room,159,3,30,2019-04-22,0.59,5,254 +5850978,"Huge, central & artsy Park Ave apt!",2843970,M&J,Manhattan,Flatiron District,40.74121,-73.98648,Entire home/apt,220,1,1,2015-06-17,0.02,1,0 +5851054,Serenity in the Heart of Brooklyn,26440049,Samantha,Brooklyn,Bushwick,40.70088,-73.91831,Private room,95,3,12,2017-12-10,0.25,1,0 +5856685,Private Room in “Hipster Times Square”,4194830,Stephanie,Brooklyn,Williamsburg,40.71047,-73.95732,Private room,60,1,13,2019-04-23,0.39,1,0 +5856760,"Renovated 1BR in exciting, convenient area",29408349,Chad,Manhattan,Chinatown,40.7149,-73.99976,Entire home/apt,179,5,7,2017-04-18,0.14,1,0 +5857212,Fantastic Room in Midtown Manhattan,8953823,Lisa,Manhattan,Hell's Kitchen,40.76348,-73.99344,Private room,120,3,0,,,1,0 +5857515,SUN-FILLED WILLIAMSBURG APT w/DECK!,2171626,Shawnelle,Brooklyn,Williamsburg,40.71228,-73.96103,Entire home/apt,275,5,0,,,1,0 +5857519,"Large Room, Hamilton Heights Section of Manhattan",27378293,Lendy,Manhattan,Harlem,40.82862,-73.94706,Private room,86,1,8,2018-08-11,0.17,3,325 +5857692,Private Room in Williamsburg,30382692,Cecilia,Brooklyn,Williamsburg,40.71251,-73.9517,Private room,62,3,47,2019-06-12,1.14,1,24 +5858505,Fantastic Studio with King bed- Best Location!,30418082,CA & Gray,Manhattan,Upper East Side,40.77554,-73.95141,Entire home/apt,165,6,46,2019-01-03,0.92,1,3 +5858757,Long term sublet Brooklyn,4267075,Jen,Brooklyn,Clinton Hill,40.68498,-73.96618,Entire home/apt,89,14,4,2017-03-01,0.11,2,343 +5859030,Perfect Home Away from Home in NYC!,13347167,AFI Apartments,Manhattan,Upper East Side,40.7717,-73.95572,Entire home/apt,116,30,2,2016-11-29,0.05,29,333 +5860123,Tall Ceilings & Sunlight Galore,16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68449,-73.95893,Entire home/apt,172,30,6,2019-05-11,0.14,21,221 +5861303,"Pet friendly, homey 1 BR in Lower East Side, NYC",30432695,LisaMarie,Manhattan,Lower East Side,40.71832,-73.98325,Entire home/apt,125,7,11,2019-06-28,0.22,1,20 +5861963,One bedroom Apt,30436731,Kristine,Queens,Astoria,40.76279,-73.92039,Entire home/apt,90,2,16,2019-03-31,0.31,1,0 +5866656,Home 4 Medical Professionals-MAIM0,26377263,Stat,Brooklyn,Borough Park,40.64032,-73.99728,Private room,50,30,0,,,43,361 +5869197,Large/Modern Apt - Lincoln Center,30475154,Cynthia,Manhattan,Upper West Side,40.77636,-73.98937,Entire home/apt,250,1,3,2015-12-28,0.07,1,0 +5870127,❤️Lovely Historic Brownstone Charm❤️ LEGAL LISTING,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.68469,-73.93467,Entire home/apt,185,3,213,2019-06-22,4.14,3,298 +5871372,Tiny Private Artist's Studio in NYC,5309143,Ayesha,Bronx,Williamsbridge,40.87765,-73.86318,Entire home/apt,63,5,85,2019-07-02,2.24,1,235 +5872177,Sunny One Bedroom-Amazing Location,9893040,Sari,Manhattan,Chelsea,40.74302,-74.00015,Entire home/apt,163,3,12,2016-05-12,0.24,1,0 +5873309,Columbia University Dorm,30498160,Celia,Manhattan,Upper West Side,40.8034,-73.96832,Shared room,40,1,0,,,1,0 +5873714,East Village - Beautiful 1 Bedroom,30500226,Majeed,Manhattan,East Village,40.73182,-73.9845,Private room,195,5,19,2016-11-28,0.37,1,178 +5874326,A nice room and free parking,28722667,Qudsia,Brooklyn,Flatlands,40.62345,-73.93001,Private room,89,1,68,2019-06-23,1.31,3,365 +5875384,Comfy Futon- 20mins Times Sq.,9235481,Reynaldo,Manhattan,Washington Heights,40.8538,-73.93197,Shared room,45,2,2,2016-12-05,0.04,2,0 +5878382,"Beautiful, bright and friendly",18527346,Kaley,Brooklyn,Prospect Heights,40.67417,-73.96518,Private room,60,1,5,2016-06-12,0.10,1,0 +5881122,"Lovely, bright & cozy room in Manhattan!",22087408,Dominik,Manhattan,Lower East Side,40.71735,-73.98213,Private room,125,1,44,2019-06-10,1.15,3,284 +5881858,Newly renovated 1 bedroom apartment,3311124,Georgie,Manhattan,East Village,40.73172,-73.98874,Entire home/apt,220,2,0,,,1,0 +5882068,Comfortable classy 1br in Ditmas Pk,2533934,Leeore,Brooklyn,Flatbush,40.64802,-73.96063,Entire home/apt,85,2,11,2019-06-20,0.78,1,0 +5882725,Beautiful Private Williamsburg Suite with Terrace,20557884,Anita,Brooklyn,Williamsburg,40.70691,-73.9481,Entire home/apt,165,4,73,2019-06-25,1.42,1,237 +5883159,Beautiful One-Bedroom Apartment Near Central Park,436365,Jessica M.,Manhattan,Upper East Side,40.76813,-73.95354,Entire home/apt,144,7,17,2018-05-24,0.35,3,0 +5883655,Unique Furnished Loft Sublet,30554435,Max,Brooklyn,Greenpoint,40.72684,-73.95628,Private room,75,1,0,,,1,0 +5885101,one large private bedroom/ two bedroom apartment,21364540,Francisca,Brooklyn,Williamsburg,40.70217,-73.93737,Private room,60,4,3,2017-09-02,0.09,2,25 +5885201,SUNNY ROOM A IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9598,Private room,95,30,40,2019-06-01,0.80,11,331 +5885280,CHARMING ROOM A - PRIVATE BALCONY!!,4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69442,-73.96016,Private room,95,30,53,2019-03-16,1.05,11,201 +5885396,SUNNY ROOM 2 IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69344,-73.96153,Private room,95,30,46,2019-05-22,0.90,11,317 +5885402,CHARMING ROOM W/ ROOF DECK ACCESS 1 :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.69498,-73.96002,Private room,95,30,35,2019-05-28,0.69,11,340 +5885542,SUNNY ROOM 1 IN CHARMING AREA :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69292,-73.96151,Private room,95,30,43,2019-02-23,0.84,11,312 +5889379,"Che' Randall +SoBro +10 min from Manhattan!",30585124,Rawn,Bronx,Longwood,40.81935,-73.90772,Private room,65,5,15,2019-06-09,0.69,2,150 +5891777,Cozy 1BD side apartment w/parking,18014128,Inessa,Staten Island,Great Kills,40.5517,-74.14636,Entire home/apt,65,5,62,2019-05-21,1.22,1,336 +5892693,"Large, sunny, private studio Apt 2F",29739883,Adam & Allen,Brooklyn,Greenpoint,40.72232,-73.9434,Entire home/apt,110,2,248,2019-06-13,4.82,2,1 +5892733,Room in 3 bedroom apt.,10859726,Don Luis,Queens,Astoria,40.77093,-73.93291,Private room,47,5,7,2019-05-28,0.13,3,236 +5893277,Enjoy Views of NYC Skyline,30606207,Liza,Queens,Ditmars Steinway,40.77842,-73.92549,Private room,175,30,5,2019-03-25,0.31,1,283 +5894720,Bright Lux 1BR in Williamsburg,8201914,Faye,Brooklyn,Williamsburg,40.71124,-73.95256,Entire home/apt,234,4,11,2018-08-26,0.23,1,0 +5894824,Hotel Gabrielle,26554386,Gabrielle,Brooklyn,Prospect-Lefferts Gardens,40.65516,-73.95882,Entire home/apt,105,14,43,2019-01-02,0.83,1,319 +5895056,2 Flushing Sunny Garden View 舒适阳光房,30616879,Anna,Queens,Flushing,40.754,-73.80701,Private room,47,2,40,2017-10-12,0.81,3,311 +5895082,45 Ave 159 st Flushing private room,30616879,Anna,Queens,Flushing,40.76173,-73.80767,Private room,55,2,55,2019-02-28,1.12,3,342 +5897622,Manhattan Columbia Sunny and Quiet Private Studio.,17266994,Tom,Manhattan,Harlem,40.80796,-73.95623,Entire home/apt,146,5,67,2019-07-03,2.17,2,239 +5899598,1-BdRm Entire Apartment St. George,6319915,Jason,Staten Island,St. George,40.64567,-74.08368,Entire home/apt,60,4,118,2019-06-20,2.54,2,17 +5902510,Clean & Cozy room in Great Location,30656279,Jill,Manhattan,Hell's Kitchen,40.76799,-73.98644,Private room,61,12,31,2018-03-19,0.60,4,102 +5903889,PRIVATE BEDROOM on Lower East Side,30616009,Daniel,Manhattan,Chinatown,40.71758,-73.99201,Private room,84,1,2,2017-06-25,0.08,1,2 +5904098,La Bohème/ Authentic NYC Experience,766580,Michael And Kimberly,Manhattan,East Harlem,40.78935,-73.94788,Entire home/apt,179,2,55,2016-07-08,1.06,1,185 +5904178,Private Bedroom Minutes to Midtown,30665412,Adrian,Queens,Astoria,40.76384,-73.92023,Private room,100,1,0,,,1,365 +5904490,Spacious & Sunny Near McCarren Park,30667498,Cristina,Brooklyn,Greenpoint,40.72492,-73.95097,Entire home/apt,175,1,1,2015-07-16,0.02,1,0 +5904522,2 Bedroom Apartment in Chelsea,30667653,Adam,Manhattan,Chelsea,40.74621,-73.99119,Entire home/apt,250,2,1,2015-10-26,0.02,1,0 +5904538,Spacious Midtown-East Bedroom/Apt,30667773,Alexander,Manhattan,Kips Bay,40.74405,-73.97781,Private room,150,1,0,,,1,0 +5905128,European eco-chic in trendy Bklyn 2,28187447,Francis,Brooklyn,Bedford-Stuyvesant,40.68336,-73.91449,Entire home/apt,83,3,57,2019-06-08,1.13,2,264 +5905501,BROOKLYN BEDSTUY PIED-A-TERRE,9053876,Amy,Brooklyn,Crown Heights,40.67768,-73.93682,Entire home/apt,105,1,59,2018-01-03,1.15,2,213 +5913433,Spacious apartment in Greenpoint,30710562,Tim,Brooklyn,Greenpoint,40.7229,-73.94775,Entire home/apt,125,2,5,2015-10-12,0.10,1,0 +5915351,Amazing apartment!,30719563,David,Brooklyn,Bedford-Stuyvesant,40.67953,-73.95136,Private room,150,7,12,2018-08-26,0.25,1,0 +5916713,Williamsburg Sunny Large Loft,2272846,Zack,Brooklyn,Williamsburg,40.71614,-73.95282,Private room,69,30,16,2019-06-06,0.45,2,225 +5917209,"Secret Garden Apartment in Bed Stuy, Brooklyn",7956482,Lauren,Brooklyn,Bedford-Stuyvesant,40.68701,-73.95412,Entire home/apt,190,2,1,2017-06-26,0.04,1,0 +5917563,Charming Room off the L train,4327985,Maria Ana,Brooklyn,Williamsburg,40.71288,-73.94406,Private room,76,2,34,2018-09-30,0.70,1,39 +5917687,1300 usd monthly Private Bedroom Brooklyn Heights,30731188,Megan,Brooklyn,Brooklyn Heights,40.69713,-73.99235,Private room,45,120,0,,,1,146 +5918053,1 Quiet Private Room in Heart of Soho!,2938204,Veronica,Manhattan,SoHo,40.72741,-74.00178,Private room,142,5,8,2017-12-21,0.16,1,188 +5918356,Heart of times square Best location,2588808,Arturo,Manhattan,Hell's Kitchen,40.76115,-73.98707,Entire home/apt,125,7,4,2018-02-19,0.08,1,0 +5919646,*** Gorgeous 2BD apt with Terrace ***,410962,Mike,Manhattan,Hell's Kitchen,40.76738,-73.98466,Entire home/apt,200,3,14,2019-07-07,0.32,1,9 +5925343,The Notorious B.N.B. { The William Henry },1177497,Jessica,Brooklyn,Clinton Hill,40.68963,-73.96713,Private room,259,1,94,2019-06-26,1.85,11,365 +5925550,Classic 4 BR brownstone,30768511,Richard,Brooklyn,Park Slope,40.67616,-73.97418,Entire home/apt,275,5,1,2016-07-30,0.03,1,0 +5926854,Modern Studio Loft in Downtown NYC,557157,Sumit,Manhattan,NoHo,40.72951,-73.99203,Entire home/apt,179,1,28,2017-11-25,0.54,1,0 +5926953,"Modern, Cozy & Bright Private Room and Bathroom",30430827,Steve,Brooklyn,Fort Greene,40.69634,-73.97296,Private room,70,1,152,2019-06-24,3.02,1,249 +5927152,Room in heart of East Village,30775529,Adam,Manhattan,East Village,40.73101,-73.99087,Private room,300,2,0,,,1,0 +5928949,Convienent Midtown West getwaway!,28362995,Landa,Manhattan,Hell's Kitchen,40.76042,-73.99021,Entire home/apt,300,3,0,,,1,0 +5931103,Bright and Cheerful,24982374,David,Brooklyn,Clinton Hill,40.69354,-73.96152,Entire home/apt,259,2,99,2019-06-28,3.07,1,296 +5931824,LARGE SUNNY QUIET NY APARTMENT,23116198,Sash,Manhattan,Harlem,40.82896,-73.94059,Private room,50,1,0,,,1,0 +5932543,Quiet 1BD in West Village,30803097,Nikki,Manhattan,West Village,40.72934,-74.00276,Entire home/apt,300,2,6,2018-04-08,0.27,1,0 +5934108,Cozy Park Slope Ground Floor Apt,4461578,Jose,Brooklyn,Park Slope,40.6748,-73.97736,Entire home/apt,95,3,4,2015-08-24,0.08,1,270 +5934255,"Artist loft in prime WILLIAMSBURG, art everywhere!",1407676,Jessica,Brooklyn,Williamsburg,40.71604,-73.9589,Private room,132,1,143,2019-06-26,2.99,4,273 +5935275,~*Awesome Room in LIC w/ backyard*~,28846474,Adam,Queens,Long Island City,40.7477,-73.94438,Private room,80,4,3,2015-09-02,0.06,1,0 +5936796,Room-Convenient UES Near everything,30824695,Idamil,Manhattan,Upper East Side,40.7817,-73.94613,Private room,85,3,3,2017-08-16,0.09,1,0 +5939328,Modern Clean Loft in Prime Brooklyn,14152383,Scott,Brooklyn,Gowanus,40.6777,-73.99126,Entire home/apt,246,4,0,,,1,0 +5940268,The Big Room in Flushing,30839692,Stavros,Queens,Flushing,40.75518,-73.80422,Private room,50,1,154,2019-07-06,3.05,3,243 +5940868,Sunlit Gem in Happening Greenpoint,2862308,Auran,Brooklyn,Greenpoint,40.72777,-73.95231,Entire home/apt,75,2,6,2017-01-04,0.14,1,0 +5940920,Luxurious Designer 2 Bedm Union Square/Gramercy,30836013,Ellen,Manhattan,Gramercy,40.73536,-73.98393,Entire home/apt,209,30,27,2019-05-11,0.53,1,197 +5941888,Full Floor Loft Style Apt/Noho/Bond,1679702,Kristy,Manhattan,NoHo,40.72634,-73.9932,Entire home/apt,330,2,4,2015-10-14,0.08,1,0 +5942962,Large BED in Amazing LIVING SPACE,2981156,Kia,Queens,Long Island City,40.7618,-73.92728,Shared room,55,1,26,2018-12-02,0.55,2,84 +5943770,Chambre Privée près de Central Park,18002339,Juliette,Manhattan,Upper West Side,40.79788,-73.9618,Private room,60,7,1,2015-06-15,0.02,1,0 +5944460,views to die for apartment on water,17300177,Peggy,Brooklyn,Williamsburg,40.70965,-73.96817,Entire home/apt,180,30,4,2017-06-22,0.13,1,13 +5944801,Brownstone Duplex Harlem/Columbia U,27796188,John,Manhattan,Harlem,40.80947,-73.95392,Entire home/apt,300,2,60,2019-07-05,1.18,2,198 +5945548,Breakfast in Manhattan on terrace!,30865924,Eva,Manhattan,Inwood,40.87093,-73.91737,Entire home/apt,175,3,6,2018-08-31,0.13,1,0 +5946137,Spacious UWS pre-war guest room!,11237515,Lindiwe,Manhattan,Harlem,40.82335,-73.94887,Private room,100,3,4,2015-07-01,0.08,1,358 +5954466,Sunny Elegant Parkside Apartment,30909882,Peter,Brooklyn,Greenpoint,40.72102,-73.94808,Entire home/apt,175,5,21,2019-04-16,0.41,1,0 +5956257,Private Prospect Park Bed and Bath ,30918671,Conor,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.95222,Private room,60,1,0,,,1,0 +5957111,1bd garden apartment in Fort Greene,5449480,Jana,Brooklyn,Fort Greene,40.69134,-73.97229,Entire home/apt,175,10,1,2016-07-06,0.03,1,189 +5958299,Cozy NYC Bedroom in the Best Manhattan Location!,30454464,Sterling,Manhattan,Chelsea,40.74717,-73.99179,Private room,105,1,158,2019-07-04,3.08,1,105 +5965198,Private Vintage L Shaped Studio,1566167,Beth,Brooklyn,Kensington,40.63555,-73.97151,Entire home/apt,49,5,21,2019-03-20,0.42,1,34 +5965946,Private Master Bed-Queen Pillowtop & PRIVATE BATH,4308068,Crystal,Brooklyn,Bushwick,40.69904,-73.91282,Private room,65,2,37,2019-06-23,0.78,1,0 +5967998,2 Bedroom Appartment with Rooftop-Central Park,29278028,Alexis,Manhattan,Upper East Side,40.77635,-73.95616,Entire home/apt,450,5,37,2019-07-05,0.86,4,108 +5977676,"Bright, Clean, Spacious Upper West Zen w/Balcony",3912042,Katie,Manhattan,Upper West Side,40.79092,-73.97426,Entire home/apt,185,3,59,2019-06-19,1.17,1,4 +5978999,Clean Loft Bed 17min from Manhattan,31040344,Richard,Brooklyn,Bedford-Stuyvesant,40.68402,-73.95176,Private room,57,2,104,2018-01-03,2.33,1,0 +5979675,`AMAZING BROOKLYN HOME,7039396,Sol And Coach,Brooklyn,Cypress Hills,40.68085,-73.88895,Entire home/apt,79,1,91,2019-06-29,1.81,2,255 +5985742,"Park Slope, Sunny, Private, Quiet, 2 Bedroom",31074353,Peter,Brooklyn,South Slope,40.66923,-73.98714,Entire home/apt,218,2,137,2019-06-26,2.79,1,250 +5986444,BRAND NEW HUGE 1 BED@TIMES SQ!!!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.75709,-73.99545,Entire home/apt,70,30,11,2018-10-07,0.23,7,333 +5990045,"As seen on Netflix! Bright, 3-bedroom in Red Hook",12411178,Brandon,Brooklyn,Red Hook,40.67477,-74.01046,Entire home/apt,350,2,71,2019-06-13,1.45,1,287 +5990467,Peaceful Private Room with deck & garden,31102831,Marj,Brooklyn,Boerum Hill,40.68401,-73.98521,Private room,100,4,120,2019-06-16,2.36,1,22 +5991434,Charming Studio Apt w Home Theater,31108509,David,Brooklyn,Borough Park,40.6409,-73.99891,Entire home/apt,150,3,51,2019-06-28,1.07,1,180 +5991641,Charming Pre-War Apt in NYC,429305,Becca,Queens,Ridgewood,40.70914,-73.90737,Entire home/apt,45,4,0,,,1,0 +5991675,Peaceful room in sweet neighborhood,22388424,Leslie,Queens,Ridgewood,40.70399,-73.91195,Private room,46,4,17,2018-09-08,0.39,2,262 +5992438,Room in Historic Fort Greene Apt.,2537749,Anna,Brooklyn,Fort Greene,40.6942,-73.97104,Private room,50,1,2,2016-09-23,0.06,1,0 +5993541,Chic Loft Like 2 bed-2bath,4562182,Florence,Manhattan,Harlem,40.81506,-73.94851,Entire home/apt,285,30,74,2019-05-23,1.47,4,284 +5998890,Classic Brooklyn Row House,5574620,Lynn,Brooklyn,Crown Heights,40.67215,-73.95753,Entire home/apt,220,2,5,2015-08-11,0.10,1,0 +5998978,Small room in heart of Manhattan,4198853,Chad,Manhattan,Lower East Side,40.71769,-73.98801,Private room,125,1,1,2015-05-04,0.02,1,0 +5999786,"Central Park- 5 mins. away, Subway on corner(med.)",4714927,Elisa,Manhattan,East Harlem,40.79155,-73.94746,Private room,80,1,70,2019-06-18,1.36,4,102 +6000709,Comfortable Room in 3BR apartment,10859726,Don Luis,Queens,Astoria,40.7701,-73.93219,Private room,58,1,2,2019-07-01,0.04,3,249 +6000785,Charming 1BR Bed-Stuy Garden Apt,31150792,Micah,Brooklyn,Bushwick,40.69709,-73.93538,Entire home/apt,100,2,143,2019-05-18,3.41,1,0 +6000868,Charming Brownstone Apartment,2787900,Maggie,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94662,Entire home/apt,175,2,42,2019-02-09,0.82,1,0 +6000898,Magnificent Townhouse - Upper East Side - NYC,23708009,Eric,Manhattan,Upper East Side,40.78155,-73.95175,Entire home/apt,1200,5,43,2019-05-23,0.90,1,309 +6002382,Cozy room in Great Neighborhood,4266202,Jackeline,Queens,Astoria,40.76105,-73.92068,Private room,60,2,0,,,1,0 +6004052,Beautiful Apartment with Garden Access,27175572,Susanne,Brooklyn,Prospect Heights,40.67949,-73.97172,Entire home/apt,160,2,105,2019-06-01,2.05,1,18 +6004200,Cozy Harlem Experience,20109767,Jennifer,Manhattan,Harlem,40.82846,-73.94492,Private room,65,1,6,2015-06-18,0.12,1,341 +6004567,BEST LOCATION 12ST BY UNION SQUARE,28720717,Albert,Manhattan,East Village,40.73235,-73.98646,Entire home/apt,499,30,11,2019-03-03,0.52,2,332 +6004786,Lovely Soho / Village 1BR,14477996,Simone,Manhattan,SoHo,40.72703,-74.00286,Entire home/apt,350,2,10,2015-12-21,0.20,1,0 +6005231,The Hub for Two,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68459,-73.93985,Entire home/apt,105,2,127,2019-06-27,3.88,3,113 +6005868,"Sunny, Spacious & Sweet 2BD home!",31177258,Sam,Brooklyn,Williamsburg,40.71151,-73.95339,Entire home/apt,245,5,32,2019-04-26,0.63,1,305 +6005910,3 BDR Apt-Just Minutes to Manhattan,23044811,Ettrick,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94358,Entire home/apt,139,2,119,2019-06-09,2.31,2,175 +6006387,FABULOUS SUNNY BEDROOM IN HARLEM,31181172,T.,Manhattan,Harlem,40.82442,-73.95203,Private room,50,20,9,2018-01-27,0.24,1,300 +6006603,"Private Room, 33rd and 2nd",31182668,Jerry,Manhattan,Kips Bay,40.74349,-73.97577,Private room,90,5,0,,,1,0 +6006661,Beautiful Spacious Studio,31183039,Jai,Queens,Jackson Heights,40.74936,-73.88698,Entire home/apt,90,7,2,2015-12-05,0.04,1,0 +6006711,Awesome Place in the Heart of EV,28429835,Arpan,Manhattan,East Village,40.72753,-73.98749,Private room,250,1,1,2015-05-22,0.02,1,0 +6006837,Large private bdrm in S. Park Slope,6527023,Sehrish,Brooklyn,Sunset Park,40.66343,-73.99324,Private room,70,4,1,2015-05-13,0.02,1,0 +6012187,1 BR apt East Village,25796636,Michael,Manhattan,East Village,40.72425,-73.98866,Entire home/apt,150,1,44,2017-07-30,0.91,1,0 +6013171,Master Private Room in Midtown,13917722,Fan,Manhattan,Theater District,40.76164,-73.98594,Private room,150,1,0,,,1,0 +6013186,Lovely 1BR Garden Apartment w/Private Garden,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68446,-73.93956,Entire home/apt,109,3,79,2019-06-30,2.07,3,0 +6014926,Charming Stylish E. Village Studio,820011,Ike,Manhattan,East Village,40.72646,-73.98685,Entire home/apt,140,7,59,2019-06-23,1.17,1,268 +6015754,Comfortable and Large Room,8636732,Kay,Brooklyn,Flatbush,40.63676,-73.96713,Private room,31,10,1,2015-11-02,0.02,2,0 +6018325,COLUMBIA PRESBYTERIAN MED CTR * 2 Bedroom Apt*,25237492,Juliana,Manhattan,Washington Heights,40.84245,-73.93918,Entire home/apt,140,30,8,2019-06-17,0.17,34,312 +6018589,Charming Private Room,31241183,Lilian,Manhattan,Washington Heights,40.83741,-73.93928,Private room,65,2,36,2019-06-22,0.74,2,273 +6019386,Boarding Room-style mini apartment/Harlem Oasis,31245355,Kiela,Manhattan,Harlem,40.80991,-73.94058,Entire home/apt,85,2,18,2019-06-02,0.38,1,90 +6020044,Park Slope Bedroom,12154854,Ryan,Brooklyn,Gowanus,40.67092,-73.98997,Private room,35,1,0,,,1,0 +6020237,Beautiful 1BR in West Harlem!,28422099,D,Manhattan,Morningside Heights,40.81134,-73.95531,Entire home/apt,155,5,87,2019-05-25,1.70,1,99 +6020382,Cozy Room in Brooklyn Brownstone,1511065,Mitra,Brooklyn,Bedford-Stuyvesant,40.6825,-73.94709,Private room,65,1,0,,,1,0 +6021955,Delightful Brooklyn digs!,31260008,Charlotte,Brooklyn,Williamsburg,40.70532,-73.93868,Private room,100,5,0,,,1,88 +6025389,Large Room in Washington Heights,31274483,Erlingur,Manhattan,Washington Heights,40.83413,-73.94297,Private room,100,1,0,,,1,0 +6026166,Perfect 1BD in East Village,3372156,Kate,Manhattan,East Village,40.7254,-73.98854,Private room,125,3,2,2016-01-03,0.04,1,0 +6026546,Beautiful Studio Steps from the Met,22613302,Brittany,Manhattan,Upper East Side,40.77793,-73.9602,Entire home/apt,170,5,2,2015-10-05,0.04,1,0 +6027345,Newly renovated historic brownstone,2881,Loli,Brooklyn,Bedford-Stuyvesant,40.68242,-73.94774,Private room,65,2,280,2019-07-05,5.51,2,249 +6027485,1 bedroom in 3 bedroom apartment,31283971,Ana,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95237,Private room,38,3,1,2017-12-31,0.05,1,0 +6027682,"Beautiful, Bright Private-Room in West Harlem!",31284832,Marina,Manhattan,Harlem,40.82875,-73.94371,Private room,68,2,0,,,1,0 +6029332,Very private & large room Wburg BK,1257611,Arthur,Brooklyn,Williamsburg,40.71192,-73.94161,Private room,110,2,4,2015-08-29,0.08,1,0 +6029809,Charming Brownstone apartment in Brooklyn,4049004,Poppy,Brooklyn,Bedford-Stuyvesant,40.68245,-73.91951,Entire home/apt,100,3,106,2019-07-05,2.28,1,52 +6029987,Spacious & Trendy Uptown Apartment,15635060,Chris,Manhattan,Washington Heights,40.84305,-73.94045,Entire home/apt,125,2,10,2016-06-29,0.21,1,0 +6031895,Private Bedroom near Time Square,6396863,Tianhui,Manhattan,Theater District,40.76257,-73.98574,Private room,60,1,1,2015-08-02,0.02,1,0 +6031904,Charming Room in West Village Apartment,20667334,Irene,Manhattan,West Village,40.73261,-74.00116,Private room,80,3,129,2019-06-14,2.52,1,78 +6033449,COLUMBIA PRESBYTERIAN MED CTR *AURA* Studio Apt,25237492,Juliana,Manhattan,Washington Heights,40.84035,-73.94089,Entire home/apt,95,30,11,2019-05-25,0.25,34,97 +6037761,Spacious Room in East Village/NoHo,7256281,Sne,Manhattan,East Village,40.72816,-73.98843,Private room,163,2,396,2019-06-23,7.71,1,143 +6040757,Big & Bright w Terrace near park!,23713669,Vanessa & Martin,Brooklyn,Prospect Heights,40.67554,-73.96384,Entire home/apt,225,3,29,2019-06-04,0.58,1,56 +6041875,Harlem 2bdr apt,30354475,Pepper,Manhattan,East Harlem,40.8124,-73.9347,Entire home/apt,150,2,0,,,1,0 +6042335,In The Middle of It All!,17199564,Mark,Brooklyn,Boerum Hill,40.68686,-73.98231,Entire home/apt,170,10,2,2015-10-12,0.04,1,0 +6042635,Spacious Studio,31358851,Mo,Manhattan,Washington Heights,40.85882,-73.92897,Entire home/apt,65,4,38,2019-06-30,0.79,1,307 +6043199,Big Room in Central BK Neighborhood,9745447,Clara,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95116,Private room,60,1,11,2017-10-08,0.32,1,0 +6043671,HEART of Manhattan,16458904,Margaret,Manhattan,Murray Hill,40.74725,-73.97431,Entire home/apt,168,30,12,2017-05-30,0.25,1,58 +6043733,Cozy 1 BR - Prospect Heights,6475110,Meg,Brooklyn,Crown Heights,40.67652,-73.96147,Entire home/apt,100,2,3,2016-10-27,0.09,1,0 +6044268,Family summer on the Hudson - 1 wk. min. 8/16-9/4,6657363,Amy,Manhattan,Battery Park City,40.71111,-74.01567,Entire home/apt,195,7,0,,,1,0 +6044964,Beach Lovers Dream!,31204745,Monika,Queens,Arverne,40.58921,-73.79479,Entire home/apt,89,2,150,2019-06-11,3.00,1,268 +6045055,Entire floor. Private bathroom. Great location.,3435092,Elena,Manhattan,Upper East Side,40.78234,-73.94907,Private room,109,4,191,2019-06-20,3.75,3,243 +6045917,Perfect Private Room for 1 or 2 per,31376201,William,Queens,Kew Gardens,40.70664,-73.83395,Private room,150,1,0,,,3,365 +6046877,Private room in queens New York,31376201,William,Queens,Kew Gardens,40.7064,-73.83327,Private room,150,1,0,,,3,363 +6048412,Partially Furnished 3BR - UES,11884842,David,Manhattan,Upper East Side,40.77727,-73.95089,Entire home/apt,150,2,0,,,1,0 +6048583,3 Bedroom Apartment - Greenwich Vlg,31389734,Matt,Manhattan,Greenwich Village,40.72966,-73.99787,Entire home/apt,120,4,1,2015-08-22,0.02,1,0 +6051044,Private Garden View — Eco Home — 3 Min to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67815,-73.91518,Private room,40,3,101,2019-06-24,2.01,6,180 +6051782,Oversized 1BR~Union square~Sleeps 4~Best Value,2119276,Host,Manhattan,Gramercy,40.73342,-73.98545,Entire home/apt,150,30,10,2019-04-11,0.21,39,67 +6051856,Homey Room w/ Lots of Sunlight!,9828418,Gabriela,Manhattan,Washington Heights,40.84411,-73.93764,Private room,45,2,3,2016-05-07,0.07,1,0 +6052119,Loft in South Park Slope (Brooklyn),8893700,John,Brooklyn,Sunset Park,40.66124,-73.99449,Entire home/apt,159,30,8,2018-11-11,0.81,2,51 +6052129,A Charming & Spacious Flat in NYC,7809025,Omri,Manhattan,East Harlem,40.79816,-73.94111,Entire home/apt,149,4,14,2019-06-01,0.28,1,0 +6054194,"Bright, Clean 1 Bd 2 Blks to Trains",2568690,Collin,Queens,Astoria,40.75673,-73.9253,Entire home/apt,125,3,3,2015-06-11,0.06,1,0 +6054400,Cozy Brooklyn Apartment,18874199,Alina,Brooklyn,Greenpoint,40.73629,-73.95208,Entire home/apt,75,1,27,2015-10-05,0.53,1,0 +6054864,"Sunny, Spacious, Perfect Location!",3088202,Pete,Brooklyn,Carroll Gardens,40.68051,-73.99743,Entire home/apt,109,4,6,2017-03-05,0.12,1,0 +6056028,Central Park W Pristine Apartment,10622869,Lori,Manhattan,Upper West Side,40.78826,-73.96767,Entire home/apt,499,1,19,2019-06-11,0.38,1,296 +6059556,Beautifully renovated brownstone,1098902,Amy,Brooklyn,Park Slope,40.66955,-73.98174,Entire home/apt,480,3,0,,,2,191 +6062060,2 large rooms in sunny brownstone,24561040,Ame,Brooklyn,Park Slope,40.67975,-73.97666,Private room,220,2,9,2017-05-21,0.20,3,251 +6063050,Private Room in 3BD Apt with a queen bed,9897580,David,Brooklyn,Bedford-Stuyvesant,40.68669,-73.93452,Private room,55,3,51,2019-06-19,1.00,1,340 +6064471,Big Manhattan Apartment 3 bedrooms big Living Room,31477675,Jango,Manhattan,Lower East Side,40.7208,-73.9867,Entire home/apt,341,3,138,2019-06-08,2.87,1,58 +6065370,Cute One-Bedroom on treelined block,31483029,Jaclyn,Brooklyn,Greenpoint,40.72661,-73.95153,Entire home/apt,108,2,3,2019-06-16,0.06,1,33 +6065778,Sunny Apt near Park and Subways in Windsor Terr,12811150,Sarah,Brooklyn,Windsor Terrace,40.65888,-73.98013,Entire home/apt,128,5,83,2018-12-26,1.63,1,52 +6066563,Garden House in the East Bronx,19810363,Eric,Bronx,Clason Point,40.8115,-73.85607,Entire home/apt,110,2,95,2019-06-23,1.91,1,283 +6069703,Urban sanctuary near Bedford L!,17958459,Maria,Brooklyn,Williamsburg,40.71462,-73.96309,Entire home/apt,179,8,39,2019-01-01,0.77,1,113 +6070899,Spacious Family Apt Block from Park,13934385,Jesse,Manhattan,Upper West Side,40.77684,-73.97979,Entire home/apt,175,5,2,2017-10-18,0.04,1,0 +6071347,"Cozy, Entire Apt, Close to L train",3987736,Marcel,Brooklyn,Bushwick,40.70069,-73.91114,Entire home/apt,80,5,8,2017-09-08,0.16,1,0 +6071456,Super cool and sunny apartment in Crown Heights,21248779,Charles,Brooklyn,Crown Heights,40.67406,-73.95234,Entire home/apt,149,2,22,2019-06-25,0.49,1,365 +6071870,Live in Harlem close to Columbia U!,21940966,Mekkie,Manhattan,Morningside Heights,40.80465,-73.95827,Private room,50,2,7,2019-01-07,0.15,2,191 +6072842,Convenient and cozy space!,31522185,Dimitri,Queens,Astoria,40.76602,-73.91742,Shared room,75,5,4,2016-08-28,0.08,1,0 +6074676,West wing private room in NYC loft,6600505,Jami,Manhattan,Financial District,40.70763,-74.00778,Private room,100,3,24,2018-08-09,0.48,2,186 +6074975,Home On Kissena Park in Flushing NYC,23234988,Ann,Queens,Flushing,40.74896,-73.80715,Entire home/apt,369,2,74,2019-05-28,1.46,6,256 +6076202,A Modern 1 bedroom Apartment in Brooklyn,12692690,Sebastian,Brooklyn,Brooklyn Heights,40.69384,-73.99261,Entire home/apt,198,7,7,2018-01-04,0.14,1,4 +6077354,Cozy attic with private bath,31545214,Paul & Hana,Queens,Middle Village,40.72399,-73.87088,Private room,100,2,49,2019-06-08,0.96,1,365 +6078234,"Chic, Spacious & Quiet UWS Manhattan NYC 1BDR Gem!",31425596,Kevin,Manhattan,Upper West Side,40.78866,-73.97878,Entire home/apt,195,3,67,2019-06-30,1.33,1,85 +6078788,"LES 3 BR Apt, CENTRALLY LOCATED!",1820750,Eric,Manhattan,Lower East Side,40.72004,-73.98896,Entire home/apt,257,3,11,2017-08-02,0.22,1,0 +6079079,4 bedrooms private house,30214562,Sharon,Queens,Jamaica Estates,40.72362,-73.791,Entire home/apt,145,4,38,2017-06-28,0.75,1,125 +6079197,Single private room near train 1,31555753,Naichen,Manhattan,Upper West Side,40.80272,-73.96634,Private room,45,1,7,2015-08-02,0.14,1,0 +6084475,"Room in Lic, Queens brick townhouse",31534322,Nia,Queens,Long Island City,40.74637,-73.94615,Private room,60,2,83,2019-06-03,1.65,4,81 +6085109,Spacious 1BD Red Hook Apartment,8448216,Rhys,Brooklyn,Red Hook,40.67529,-74.0099,Entire home/apt,120,43,0,,,1,0 +6085932,"Historic, Sunny Prospect Park Apt!",1211856,Kim,Brooklyn,Prospect-Lefferts Gardens,40.6586,-73.96104,Private room,80,3,4,2019-01-01,0.22,1,331 +6087827,One Block From Train - 4/23-4/30,31594375,Jesseca,Brooklyn,Bedford-Stuyvesant,40.69962,-73.94102,Private room,85,1,0,,,1,0 +6087959,2000sq $2 million 3 story townhouse,28023382,Edwin,Brooklyn,Gowanus,40.684,-73.98859,Entire home/apt,99,1,183,2019-06-30,3.74,1,196 +6088910,Charming 1 Bed Room/ Exposed Brick,31599293,Courtney,Manhattan,Hell's Kitchen,40.75749,-73.99657,Entire home/apt,180,3,1,2015-05-04,0.02,1,0 +6090186,Location Angel Marlie ( only female),3250450,Petya,Queens,Jackson Heights,40.75181,-73.89064,Private room,40,25,1,2018-09-04,0.10,18,364 +6091208,BK Private Room&Bath - comfortable!,4183050,Brett,Brooklyn,Williamsburg,40.7168,-73.94073,Private room,96,3,28,2016-07-02,0.56,1,0 +6091224,Sunny 1 Bedroom in Harlem!,2798394,Dana,Manhattan,Harlem,40.80386,-73.95369,Entire home/apt,105,4,9,2019-01-02,0.18,1,0 +6091850,Cozy 1BD in a cool neighborhood.,31614694,Silvia,Queens,Long Island City,40.76019,-73.92915,Entire home/apt,80,3,177,2019-06-24,3.66,1,196 +6092607,Manhattan 1BR for $2000/mo Sublet,7271842,Arlen,Manhattan,Washington Heights,40.83987,-73.94279,Entire home/apt,100,2,1,2016-11-01,0.03,1,0 +6093352,Sunny Room 15min from Manhattan,31621291,Elisabeth,Brooklyn,Williamsburg,40.7058,-73.93803,Private room,58,1,270,2019-07-01,5.29,2,83 +6093459,The very heart of Williamsburg,26414016,Guillermo,Brooklyn,Williamsburg,40.7186,-73.95951,Private room,89,5,6,2016-11-27,0.12,2,0 +6094046,Central Times Square w prvte bath,31626212,Troy,Manhattan,Theater District,40.75863,-73.98472,Private room,105,90,163,2019-06-08,3.21,5,316 +6094708,"Lower East Side, Private 1BD+ for2",31629890,Takuya,Manhattan,Lower East Side,40.71724,-73.98546,Entire home/apt,85,1,0,,,1,0 +6099485,Enormous Sunny Room in Prime Clinton Hill Brooklyn,15763944,Maral,Brooklyn,Clinton Hill,40.69069,-73.96043,Private room,68,3,2,2018-06-25,0.11,1,0 +6100514,1BR 5 minute walk to Times Square,6230173,Luke,Manhattan,Hell's Kitchen,40.76017,-73.99198,Entire home/apt,200,4,30,2017-10-24,0.65,1,0 +6101104,1 BR UPPER EAST SIDE,9107715,Michele,Manhattan,Upper East Side,40.77526,-73.95075,Entire home/apt,170,5,26,2019-05-18,0.55,1,115 +6103146,Beautiful 1 BR by Prospect Park,182477,Shante,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96148,Entire home/apt,60,5,9,2018-04-18,0.19,1,0 +6103273,Chic 2bed-2bath Manhattan Dream,4562182,Florence,Manhattan,Harlem,40.81128,-73.94647,Entire home/apt,285,30,104,2019-06-30,2.07,4,249 +6103774,Studio Apt East Harlem,27289632,Willa,Manhattan,East Harlem,40.79842,-73.93549,Entire home/apt,90,3,138,2019-07-02,2.74,1,71 +6104187,Cute Studio close to subway for monthly rental,31673092,Ayal,Brooklyn,Crown Heights,40.67757,-73.94886,Entire home/apt,75,30,101,2019-06-08,2.06,1,62 +6104542,Nice cozy studio apt close to all,19661729,Sopchok,Queens,Jackson Heights,40.74898,-73.88638,Entire home/apt,115,1,51,2019-07-01,1.03,1,78 +6104951,2 Bed/2 Bath - Driveway & Backyard!,815619,Rajesh,Brooklyn,East Flatbush,40.64685,-73.95,Entire home/apt,118,30,1,2015-08-25,0.02,1,68 +6105140,Bright Room w/ Private Bathroom and Roof Deck,946182,Zachary,Brooklyn,Bedford-Stuyvesant,40.68582,-73.94231,Private room,76,1,19,2019-05-26,0.70,1,89 +6105240,Ideal Greenpoint Location,184833,Edward,Brooklyn,Greenpoint,40.72123,-73.95357,Entire home/apt,245,7,6,2018-05-08,0.12,1,67 +6105342,One Bedroom Available (May 1-May 6),31678869,Sonya,Manhattan,Harlem,40.8251,-73.93899,Private room,200,1,0,,,1,0 +6106142,Studio Apartment/ 3 blocks from Central park,2077383,Tatiana,Manhattan,Upper East Side,40.77724,-73.95883,Entire home/apt,75,3,3,2016-06-14,0.06,1,0 +6106445,Hell's Kitchen 1 Bedroom,7241674,Danielle,Manhattan,Hell's Kitchen,40.76378,-73.98847,Entire home/apt,200,6,24,2019-05-20,0.70,1,188 +6106544,Beautiful HUGE Studio.. 52ST 3AVE.,1475015,Mike,Manhattan,Midtown,40.75621,-73.96802,Entire home/apt,85,30,4,2018-12-03,0.12,52,342 +6107289,Beautiful Brownstone in Greenpoint,13920011,Andrea,Brooklyn,Greenpoint,40.72987,-73.95296,Entire home/apt,350,5,11,2018-08-25,0.23,1,12 +6107592,Private Room in a Shared Apt by Columbia Univ,30080463,Barbi,Manhattan,Harlem,40.80226,-73.94976,Private room,101,3,65,2019-06-22,1.28,1,138 +6108021,Large Park Slope Alcove Studio,10873558,Michelle,Brooklyn,Gowanus,40.67743,-73.98464,Entire home/apt,110,2,0,,,2,0 +6114161,Beautiful Apartment in SoHo,21327551,Liza,Manhattan,Nolita,40.72191,-73.99587,Private room,125,1,1,2015-05-19,0.02,1,0 +6114353,"Ideal ""Hotel Style"" Bedroom in LES",16923190,Chris,Manhattan,Lower East Side,40.71974,-73.98549,Private room,89,3,19,2019-01-01,0.41,1,0 +6115275,Cozy studio near Grand Central,8164199,An,Manhattan,Midtown,40.75102,-73.97447,Entire home/apt,180,1,0,,,1,0 +6115341,Beautiful Apartment close to Metro Line.,24216745,Luiz,Brooklyn,Williamsburg,40.71482,-73.93863,Entire home/apt,120,30,1,2017-12-31,0.05,1,128 +6117178,Large room in beautiful Park Slope,31737002,Tim,Brooklyn,Gowanus,40.66928,-73.99019,Private room,50,5,0,,,1,0 +6117496,The Manhattan Club studio New York,30787515,Brooke,Manhattan,Midtown,40.76365,-73.98057,Entire home/apt,299,2,8,2015-12-14,0.16,1,176 +6121052,Chic calm in the heart of Soho,13525339,Robert,Manhattan,SoHo,40.72337,-73.99724,Entire home/apt,195,2,60,2019-06-24,1.18,1,16 +6121300,Charming Bedroom in Greenwich,7655328,Jessica,Manhattan,Greenwich Village,40.72923,-73.99949,Private room,78,1,3,2016-01-31,0.06,3,0 +6124097,Amazing 2 Bedroom Chelsea,3035426,Dimitri,Manhattan,Chelsea,40.74089,-74.00181,Entire home/apt,250,2,28,2019-05-26,0.56,1,328 +6128992,"LOCATION, LOCATION, LOCATION -NYC!!",301346,Dawn,Manhattan,Chelsea,40.75054,-73.99683,Entire home/apt,150,14,1,2015-05-20,0.02,1,0 +6129158,Large modern 1BR w/ Balcony!,31796292,Mary,Manhattan,Upper East Side,40.777,-73.95253,Entire home/apt,350,1,0,,,1,0 +6130145,Moma Casanova. New Additions!,29871437,Ester,Queens,Sunnyside,40.74315,-73.91733,Private room,78,3,113,2019-07-01,2.23,1,285 +6131266,BIG SUNNY ROOM IN CROWN HEIGHTS,3940516,Ali,Brooklyn,Crown Heights,40.67331,-73.95863,Private room,55,1,1,2015-05-15,0.02,1,0 +6131580,Classic Soho Brownstone,311608,Richard,Manhattan,SoHo,40.72716,-74.0032,Entire home/apt,300,10,7,2019-06-21,2.04,1,239 +6131606,Harmony House 2 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68875,-73.92377,Private room,38,2,39,2019-06-20,0.86,3,99 +6132230,"Quiet 1 Bed, Heart of SoHo",6976808,Tim,Manhattan,SoHo,40.72708,-74.00055,Entire home/apt,150,5,36,2017-09-08,0.71,1,0 +6132646,queen sized room for one-Great View,15078552,Christine,Manhattan,Lower East Side,40.71869,-73.98282,Private room,75,1,0,,,1,0 +6133150,Spend Your Fall in Bed-Stuy,31817441,André,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93305,Private room,52,2,1,2015-11-01,0.02,1,0 +6134199,Stylish Pop-Art studio on trendy UWS,6003040,Lalo,Manhattan,Upper West Side,40.78926,-73.96989,Entire home/apt,198,2,161,2019-06-29,3.21,1,252 +6134906,"Clean, comfy & casual private room - 1min to train",6541721,Erika,Brooklyn,Sunset Park,40.64027,-74.01774,Private room,49,1,67,2019-06-23,1.56,1,8 +6138423,Manhattan Multi-Million $ Luxury Central Park View,1978841,Diane,Manhattan,Upper West Side,40.79233,-73.9643,Entire home/apt,950,4,6,2019-06-06,0.13,1,274 +6140695,Orchard Street Studio !,1613244,Ariel,Manhattan,Lower East Side,40.72003,-73.98901,Entire home/apt,105,30,12,2017-10-06,0.24,9,227 +6141401,Large Alcove Studio,10529692,Jon,Manhattan,Kips Bay,40.74257,-73.98207,Entire home/apt,225,30,276,2019-06-21,5.54,1,338 +6141561,Beautiful room & Amazing location,6984488,Jessica,Brooklyn,Prospect Heights,40.67483,-73.9646,Private room,125,4,16,2016-10-30,0.32,2,339 +6142960,CleanLovely 1BR Apt in Clinton Hill,10520210,Scarlet,Brooklyn,Bedford-Stuyvesant,40.69315,-73.95998,Entire home/apt,110,2,19,2016-06-10,0.44,1,0 +6145124,Spacious Bedroom in Brooklyn,31876574,Morteza,Brooklyn,Crown Heights,40.66739,-73.9501,Private room,44,1,1,2015-05-21,0.02,1,0 +6145637,SPACE IN APT IN PERFECT LOCATION,9532490,Alexandra,Manhattan,East Village,40.73065,-73.98899,Shared room,77,2,57,2019-06-02,1.13,3,311 +6146081,Wow Historical Brooklyn New York!@!,1943161,Al,Brooklyn,East Flatbush,40.64944,-73.93376,Entire home/apt,97,3,62,2019-06-23,1.23,1,326 +6146783,"Quiet, quaint room in Victorian TH",14796247,Sandra And Cary,Brooklyn,Flatbush,40.64224,-73.96273,Private room,45,5,59,2019-06-24,1.46,4,247 +6149507,2B Williamsburg Loft Apartment,21558108,Emma,Brooklyn,Williamsburg,40.712,-73.96666,Entire home/apt,157,1,1,2015-05-07,0.02,1,0 +6150778,Guest Suite in Prime Williamsburg,608113,Adam,Brooklyn,Williamsburg,40.71059,-73.9506,Private room,80,4,1,2015-05-20,0.02,1,0 +6151450,Large room in Hamilton Heights,26790498,Esther,Manhattan,Harlem,40.82366,-73.9461,Private room,50,3,1,2018-05-28,0.07,1,0 +6152725,A Cozy 4 bedrm Apt Queen(5minsLGA),31916657,Rosario,Queens,East Elmhurst,40.76509,-73.877,Entire home/apt,275,3,96,2019-07-01,1.90,1,333 +6155072,A Gem in Fort Greene Brooklyn,15395133,Brett,Brooklyn,Clinton Hill,40.68732,-73.96654,Private room,129,3,103,2019-05-22,2.02,1,156 +6155857,Heart of West Village cozy apt,7573842,Christina,Manhattan,West Village,40.73405,-74.00283,Entire home/apt,250,3,1,2016-07-21,0.03,1,0 +6155877,Solo traveler oasis,18248926,Yana,Manhattan,Harlem,40.82434,-73.94816,Shared room,36,1,84,2019-06-15,2.26,1,347 +6156278,Cozy Studio - Midtown West,10154856,Ayumu,Manhattan,Hell's Kitchen,40.76881,-73.98832,Entire home/apt,200,5,0,,,1,0 +6156319,Bright Studio Perfect for the Wknd!,7775447,Sara,Manhattan,Upper East Side,40.78073,-73.94976,Entire home/apt,185,1,4,2015-12-07,0.08,1,0 +6156442,2 bedroom in hell's kitchen,31937844,Ryan,Manhattan,Hell's Kitchen,40.76329,-73.99554,Entire home/apt,130,1,2,2015-04-28,0.04,1,0 +6157276,Bright LARGE BED near Manhattan,23591164,Angela,Queens,East Elmhurst,40.76664,-73.87577,Private room,65,1,466,2019-06-22,9.16,4,331 +6161282,Loft in Williamsburg,31963371,Rajan,Brooklyn,Williamsburg,40.71014,-73.96253,Entire home/apt,275,3,78,2018-11-08,1.53,1,0 +6163657,Cosy and sunny studio for you!,6090087,Giulia,Manhattan,Upper East Side,40.77253,-73.95789,Entire home/apt,120,1,9,2017-01-02,0.18,1,0 +6164719,Spacious Sunny Studio in LES,886109,Tzveta,Manhattan,Lower East Side,40.72134,-73.99104,Entire home/apt,180,2,25,2018-08-06,0.51,1,200 +6165032,Entire apt right at the park!,25406101,Sara,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.96114,Entire home/apt,123,2,2,2015-07-27,0.04,1,0 +6165564,Large room in newly renovated apt,30906910,Yuriy,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94339,Private room,750,1,0,,,1,0 +6167683,Charming one bedroom Central Park,25228783,Laurence,Manhattan,Upper West Side,40.77804,-73.97611,Entire home/apt,210,6,7,2017-08-26,0.14,1,0 +6167817,Sunny studio West Village/Chelsea,31997128,Rachel,Manhattan,West Village,40.73905,-74.0014,Entire home/apt,139,3,4,2016-09-05,0.08,1,0 +6168331,Sun-filled living room with futon!,32001723,Lena,Brooklyn,Bushwick,40.69505,-73.93161,Shared room,45,1,1,2015-05-05,0.02,1,0 +6168663,Private bedroom in sunny apt,15743117,Alice,Manhattan,Harlem,40.81192,-73.95239,Private room,79,5,2,2015-10-07,0.04,1,0 +6169068,"Prime Park Slope Townhouse, 4 BR and Garden",9773128,Deborah,Brooklyn,Park Slope,40.66798,-73.9761,Entire home/apt,345,30,0,,,1,156 +6169172,Relaxing Brooklyn Getaway,3598306,Afaliah,Brooklyn,Fort Greene,40.69677,-73.97622,Private room,90,1,2,2016-12-16,0.06,2,364 +6169335,Contemporary Modern Studio,32007353,Vanesa,Queens,Ridgewood,40.70801,-73.9011,Entire home/apt,150,2,65,2019-07-03,1.32,1,171 +6169897,Wonderful Large 1 bedroom,10720264,John,Manhattan,Harlem,40.82135,-73.95521,Entire home/apt,75,500,0,,,1,362 +6169981,Spacious Gramercy Penthouse Studio,32011239,Mike,Manhattan,Gramercy,40.73556,-73.98679,Entire home/apt,200,2,14,2016-09-10,0.28,1,0 +6170979,Cozy 1 Bedroom apartment fitting 4,31104121,Alexander,Brooklyn,Clinton Hill,40.68678,-73.96044,Entire home/apt,100,3,127,2019-06-24,2.62,1,290 +6171211,Room in Prospect Heights,32018795,Ciara,Brooklyn,Crown Heights,40.66746,-73.96073,Private room,32,7,0,,,1,0 +6179073,Mini Studio in NY city safest area,32052000,Gennady + Laura,Brooklyn,Manhattan Beach,40.5777,-73.93988,Private room,45,4,118,2019-07-06,2.34,2,269 +6179500,"Ideal Location, Spacious IBr",26819117,Sagnes,Manhattan,Kips Bay,40.74174,-73.97878,Private room,115,7,1,2015-05-31,0.02,1,0 +6180121,Modern Vibrant Large Cozy Bedroom* 正面能量,8826175,Grover,Bronx,Concourse,40.82122,-73.92773,Private room,56,2,132,2019-06-26,2.61,3,52 +6180741,2BR Lower East Side,14318669,Grady & Cristina,Manhattan,Lower East Side,40.71526,-73.9867,Entire home/apt,210,2,44,2017-05-25,1.16,1,0 +6180762,BRAND NEW 1BD / STEPS CENTRAL PARK!,1475015,Mike,Manhattan,Upper West Side,40.76877,-73.9846,Entire home/apt,87,30,3,2017-11-30,0.10,52,275 +6181131,"Share quiet, clean and spacious apt",32060911,Elvis,Staten Island,West Brighton,40.63438,-74.11518,Private room,40,30,6,2019-03-31,0.12,2,354 +6182580,Private Room In a Goodhome,10576263,Odalys & Maya,Brooklyn,Crown Heights,40.67603,-73.95302,Private room,58,4,1,2016-01-02,0.02,1,332 +6184748,"Sunny, Charming Williamsburg 1-BR",8389213,Danny,Brooklyn,Williamsburg,40.70778,-73.94953,Entire home/apt,125,4,7,2016-09-29,0.14,1,0 +6184827,Large and Beautiful 1 Bedroom in Bushwick,1912541,Clayton,Brooklyn,Bushwick,40.68994,-73.92125,Entire home/apt,100,2,3,2015-08-19,0.06,1,0 +6184855,Artist Loft Heart of Williamsburg,23593179,Alexander,Brooklyn,Williamsburg,40.71998,-73.95838,Entire home/apt,195,2,3,2015-06-20,0.06,1,0 +6185426,"Big bedroom, heart of Williamsburg",5689587,Delphine,Brooklyn,Williamsburg,40.71178,-73.95684,Entire home/apt,90,15,27,2019-04-11,0.68,1,173 +6185599,Nice and Comfortable Private Room,31241183,Lilian,Manhattan,Washington Heights,40.83776,-73.94087,Private room,65,2,43,2019-03-31,0.85,2,279 +6185629,Large Room with a Balcony *10 mins to Manhattan*,32083955,Esin,Brooklyn,Bedford-Stuyvesant,40.69542,-73.9497,Private room,100,14,0,,,1,123 +6185880,Student/Family Friendly Near Schools Parks Dining,3341690,Martha,Manhattan,Upper West Side,40.80121,-73.96163,Entire home/apt,200,31,2,2018-07-14,0.04,1,212 +6187204,Chinatown/Lower East Side Room,32092775,Jess,Manhattan,Chinatown,40.71546,-73.99226,Private room,75,4,23,2018-11-18,0.45,1,212 +6188014,Spacious 1 BR Near Central Park!,32096696,Matt,Manhattan,Upper West Side,40.77901,-73.97596,Entire home/apt,220,1,4,2016-01-03,0.08,1,0 +6188022,Handsome historic Greenpoint 2BR,1811344,Jennifer,Brooklyn,Greenpoint,40.73163,-73.95434,Entire home/apt,225,3,1,2015-08-01,0.02,1,0 +6192999,Zen urban sanctuary.,32117091,Marc,Brooklyn,Williamsburg,40.70776,-73.95886,Entire home/apt,163,30,37,2019-06-05,0.74,1,186 +6195564,Beautiful Room near L train,14600914,Greg,Brooklyn,Williamsburg,40.71371,-73.95433,Private room,85,1,118,2019-07-01,2.38,1,327 +6196265,Charming House in Astoria,10618197,Ambre,Queens,Ditmars Steinway,40.7802,-73.90913,Entire home/apt,150,7,1,2015-07-02,0.02,1,0 +6196354,A Couch In East Williamsburg Near Train.,31621291,Elisabeth,Brooklyn,Williamsburg,40.70472,-73.93784,Shared room,38,1,236,2019-06-30,4.63,2,56 +6196860,Comfy convenient apt. by the trains,32135311,Oliver,Manhattan,Inwood,40.85901,-73.92874,Entire home/apt,79,4,4,2016-01-20,0.09,1,0 +6197119,Sunny 1 bd -Prospect Park!,26908204,Bridgette,Brooklyn,Crown Heights,40.66356,-73.95667,Entire home/apt,90,4,59,2019-06-26,1.17,1,28 +6197134,Private Rooms @ Townhouse,10014644,Myrta,Brooklyn,Park Slope,40.6681,-73.98319,Private room,100,3,97,2019-06-24,1.91,2,300 +6197915,LES SUNNY STUDIO on Chrystie Street,1613244,Ariel,Manhattan,Lower East Side,40.72182,-73.99263,Entire home/apt,99,30,8,2019-05-10,0.17,9,197 +6198343,Calm airy top floor W'burgh 1.5 bed,1245722,Jen,Brooklyn,Williamsburg,40.71776,-73.94538,Entire home/apt,200,3,30,2019-07-01,0.65,1,364 +6198636,Studio steps from park & train!,31877774,Alexandra,Manhattan,Upper West Side,40.77889,-73.98155,Entire home/apt,190,2,1,2015-05-22,0.02,1,0 +6200613,"BIG PRIVATE ROOM, UPSCALE LOCATION",10418386,Tatiana,Manhattan,Upper West Side,40.79422,-73.97565,Private room,90,7,0,,,1,0 +6200692,ColumbiaUniversityHousing 9.1-9.6,32155871,Ashley,Manhattan,Morningside Heights,40.81143,-73.95987,Private room,60,1,0,,,1,0 +6201730,Beautiful Washington Heights Apt!,32158960,Rachel And Ari,Manhattan,Washington Heights,40.83562,-73.94581,Private room,90,1,0,,,1,0 +6201914,"Plush King Size Bed, Great Location",9671470,Jacob,Manhattan,Harlem,40.81422,-73.95199,Private room,75,2,129,2019-06-22,3.01,2,6 +6208002,Oasis in Manhattan on Hudson river!,15498912,Ksenia,Manhattan,Washington Heights,40.85677,-73.93715,Private room,70,3,14,2019-05-30,0.30,1,0 +6208855,Upper East Side - Private Room,32195844,Jiaying,Manhattan,Upper East Side,40.78428,-73.94872,Private room,85,4,1,2015-05-19,0.02,1,0 +6209084,Spacious room in Williamsburg,14772147,Javier,Brooklyn,Williamsburg,40.71295,-73.93716,Private room,50,4,2,2016-01-21,0.04,1,0 +6209147,Sunny 1 Bedroom Apt in East Harlem!,32197200,Sabrina,Manhattan,East Harlem,40.79614,-73.93787,Entire home/apt,130,2,34,2016-07-31,0.69,1,0 +6209619,"A fine, modern, spacious apartment",32199364,Guillermo,Manhattan,Harlem,40.80686,-73.9554,Entire home/apt,199,1,0,,,1,0 +6209799,"Spacious, new studio, in Gramercy",7894614,Daniel,Manhattan,Gramercy,40.73697,-73.98074,Entire home/apt,150,7,5,2015-08-24,0.10,1,0 +6209994,4500 SQ FT Quiet Brooklyn Loft for Shoots & Events,319077,Shell,Brooklyn,Clinton Hill,40.68556,-73.96238,Entire home/apt,750,1,15,2019-05-19,0.34,4,364 +6210050,Room in Beautiful Brownstone,12422467,Tyler,Brooklyn,Bedford-Stuyvesant,40.68901,-73.94054,Private room,80,1,0,,,1,0 +6215083,Comfy Space in Williamsburg!,26811311,Betsy,Brooklyn,Williamsburg,40.70431,-73.94528,Shared room,62,2,45,2019-06-17,0.90,1,325 +6216318,"Cozy room in a fun, low-key neighb!",16970067,Jesse,Brooklyn,Williamsburg,40.7137,-73.94214,Private room,105,14,0,,,1,0 +6220514,Amazing 3 bedrooms in East Village,31617949,Lana,Manhattan,East Village,40.72551,-73.97893,Entire home/apt,250,30,25,2018-10-06,0.51,1,0 +6220699,Amazing Airy Hs w Old World Details,770004,Milyoung,Brooklyn,Clinton Hill,40.68346,-73.96264,Entire home/apt,350,1,2,2015-08-17,0.04,1,0 +6221877,Brooklyn Zen Gem w/Personal Balcony,31675601,Sophie,Brooklyn,Bay Ridge,40.62672,-74.02802,Private room,65,30,56,2018-09-02,1.14,4,208 +6223929,Charming studio near Little Italy!,1613244,Ariel,Manhattan,Nolita,40.72342,-73.99292,Entire home/apt,95,30,13,2019-05-04,0.27,9,137 +6224336,"5 min from midtown, but peaceful.",32279718,Mike,Queens,Long Island City,40.74253,-73.9549,Entire home/apt,153,4,77,2019-06-02,1.62,1,252 +6225501,1-bedroom in heart of Williamsburg!,150832,Katie,Brooklyn,Williamsburg,40.71479,-73.96048,Entire home/apt,150,4,95,2018-03-08,1.88,1,0 +6225766,Large condo with stunning park views,7702854,Matei,Manhattan,Lower East Side,40.72014,-73.99268,Entire home/apt,280,3,46,2019-06-24,3.17,1,64 +6225935,Columbia University in Manhattan,19682564,Yi,Manhattan,Upper West Side,40.80301,-73.96644,Private room,70,4,2,2015-06-28,0.04,1,0 +6225968,"Amazing 1bedroom uptown, Manhattan",19007308,Luca,Manhattan,Harlem,40.82337,-73.94529,Entire home/apt,155,5,22,2019-05-10,0.44,1,362 +6225974,Central Williamsburg Room,909577,Jaclyn,Brooklyn,Williamsburg,40.714,-73.96253,Private room,71,2,162,2019-07-03,3.18,3,332 +6226327,Midtown EAST 1 BDR APT - BEST area of Manhattan,29167335,Yedda,Manhattan,Midtown,40.75531,-73.966,Entire home/apt,182,4,51,2019-05-31,1.03,2,317 +6226794,1 bedroom in a 2 bedroom apartment,32295605,Yana,Manhattan,Upper East Side,40.76449,-73.96169,Private room,105,3,75,2019-06-12,1.57,1,338 +6227027,Bright and Beautiful UWS Treasure!!,6089159,Samantha,Manhattan,Upper West Side,40.78302,-73.98057,Entire home/apt,100,14,3,2019-05-20,0.13,1,205 +6227341,Cozy & Convenient Room in Bed-Stuy,26595479,Emily,Brooklyn,Bedford-Stuyvesant,40.67998,-73.9452,Private room,45,1,0,,,1,0 +6227680,"Amazing 2 Bedroom Bklyn apt, near SUNY Downstate!",23548583,Shari,Brooklyn,East Flatbush,40.65336,-73.94345,Entire home/apt,109,30,23,2018-10-27,0.46,2,188 +6227871,You have chosen...wisely!,36119,Seth,Brooklyn,Clinton Hill,40.68465,-73.96051,Entire home/apt,95,14,3,2016-07-19,0.08,1,0 +6228461,Brooklyn Zen Gem Serenity Bedroom,31675601,Sophie,Brooklyn,Bay Ridge,40.62674,-74.02996,Private room,65,30,67,2019-05-19,1.31,4,252 +6232987,"Spacious Studio, Freedom Tower View",32340523,Lindsay,Manhattan,Murray Hill,40.74409,-73.97145,Entire home/apt,250,1,0,,,1,0 +6233779,Cozy South Williamsburg Bedroom off Bedford Ave!,32345728,Michael,Brooklyn,Williamsburg,40.70834,-73.96646,Private room,60,2,0,,,1,339 +6233819,Shared Room in Luxurious 2BD,4422415,Damien,Manhattan,Upper East Side,40.7755,-73.9475,Private room,130,1,1,2015-05-19,0.02,2,364 +6234096,Charming 1 bedroom on the water!,32347526,Heather,Manhattan,East Harlem,40.79445,-73.93307,Entire home/apt,120,3,116,2019-06-20,2.29,1,231 +6234329,Luxury 1 Bedroom in Astoria,13324888,Duygu,Queens,Astoria,40.77262,-73.92364,Entire home/apt,200,7,2,2016-09-18,0.04,1,0 +6236181,On the Park -- one-bedroom.,16419236,Karen,Manhattan,Upper West Side,40.78078,-73.97466,Entire home/apt,190,2,2,2018-05-24,0.04,1,21 +6237065,NEW YORK CITY WITH AN OCEAN BREEZE,32365131,Sawyer,Brooklyn,Brighton Beach,40.58148,-73.96696,Private room,129,3,0,,,1,365 +6237443,"Large Room in Spacious Flat , Central Location",32305413,Laurence,Brooklyn,Prospect Heights,40.67554,-73.96835,Private room,85,1,156,2019-06-24,3.11,1,150 +6237974,Brownstone! Entire Garden Apt w/ Private Entrance!,25689357,Peter,Brooklyn,Bedford-Stuyvesant,40.682,-73.92246,Entire home/apt,125,3,165,2019-07-01,3.27,1,249 +6238281,One bedroom in Midtown,32374510,Shannon,Manhattan,Hell's Kitchen,40.76497,-73.9933,Entire home/apt,175,1,0,,,1,0 +6239508,Brooklyn New York City - JFK/LGA,32384960,Saf,Brooklyn,Cypress Hills,40.68465,-73.8684,Entire home/apt,130,1,94,2019-06-23,1.92,1,0 +6239643,"Marilyn's Home Stay 1, Brooklyn, NY",23290881,Marilyn,Brooklyn,Flatbush,40.64943,-73.96245,Private room,70,3,121,2019-07-01,2.63,1,341 +6242355,Great Loft in Williamsburg-Brooklyn,32405588,Marco,Brooklyn,Williamsburg,40.71046,-73.96054,Entire home/apt,184,10,1,2016-08-06,0.03,2,6 +6242600,Double Bed In a Central Location,32406934,Alleyne,Brooklyn,Bedford-Stuyvesant,40.67986,-73.94259,Private room,180,2,9,2018-03-19,0.36,1,364 +6243991,Quiet Park Slope Apartment,1892681,Richard,Brooklyn,South Slope,40.66586,-73.97948,Entire home/apt,100,1,183,2019-06-28,5.17,1,1 +6244089,Modern 3BR Brownstone Apartment,17264040,Junior,Bronx,Mount Hope,40.84819,-73.90648,Entire home/apt,125,2,41,2019-05-19,0.81,2,342 +6244461,Bright studio in the heart of Brooklyn,7290581,Juliana,Brooklyn,Prospect Heights,40.67847,-73.96694,Entire home/apt,150,2,2,2017-01-14,0.06,1,0 +6245408,Sweet Harlem studio,7038817,Sarah,Manhattan,Harlem,40.80373,-73.95523,Entire home/apt,105,5,5,2016-12-30,0.10,1,0 +6245521,Ensuite Redroom,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93641,Private room,35,1,162,2019-06-20,3.20,5,162 +6245792,Orange Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93532,Private room,30,1,163,2019-06-18,3.21,5,134 +6246010,Skyview Private Small Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.9369,Private room,30,1,170,2019-06-23,3.34,5,165 +6246559,"Quiet, Sunny Studio in Downtown NYC",519483,Ashley,Manhattan,East Village,40.72587,-73.98244,Entire home/apt,125,2,3,2015-10-30,0.06,1,0 +6246681,Sun-Drenched Williamsburg Apartment,27428499,Allyssa,Brooklyn,Williamsburg,40.71475,-73.93782,Entire home/apt,190,2,1,2015-09-28,0.02,1,0 +6247104,NYC space,30586356,Susana,Manhattan,Washington Heights,40.85475,-73.93372,Shared room,95,1,36,2019-06-25,3.03,1,27 +6247466,Comfy Room in E Williamsburg Loft,4336757,Geoff,Brooklyn,Williamsburg,40.71905,-73.93905,Private room,55,3,4,2015-08-26,0.08,1,0 +6248093,BEAUTIFUL UES Apt w/ Door Man,32443084,Jordan,Manhattan,Upper East Side,40.76288,-73.96084,Entire home/apt,130,3,2,2015-12-28,0.04,1,0 +6248335,Neat Home 20 min to LGA Airport,32445083,Sandra,Bronx,Longwood,40.82883,-73.88854,Entire home/apt,119,4,48,2019-07-05,0.98,1,223 +6249050,300 Square Foot Private Room - in MANHATTAN!!,18418581,Pooja,Manhattan,Washington Heights,40.85228,-73.93498,Private room,67,1,297,2019-07-03,5.92,3,271 +6249100,Spacious room next to 96 st Station,14614459,Dario,Manhattan,Upper East Side,40.78354,-73.94699,Private room,90,5,4,2015-12-16,0.08,4,0 +6249465,Lovely bedroom near Central Park,31914305,Guangyu,Manhattan,Morningside Heights,40.80461,-73.96401,Private room,60,1,0,,,1,0 +6249740,"Brooklyn Brownstone, 3-Bdr & Garden",6493905,Christine,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95402,Entire home/apt,199,3,10,2018-11-24,0.20,1,0 +6252815,Park Slope Garden Level Studio,32479008,Christiana,Brooklyn,Park Slope,40.66936,-73.98116,Entire home/apt,150,7,47,2019-06-23,0.96,1,291 +6253399,A Perfect Stay,32482524,Gomez,Brooklyn,Williamsburg,40.71494,-73.95472,Private room,115,3,40,2019-06-30,2.80,1,18 +6255407,Cozy & Bright 1 Bedroom,8095903,Christelle,Manhattan,Harlem,40.82903,-73.94123,Entire home/apt,100,1,2,2015-08-26,0.04,1,0 +6255597,FT Greene - Oversized Parlor,11189753,Sj,Brooklyn,Fort Greene,40.68698,-73.97097,Entire home/apt,165,6,30,2019-06-21,0.59,4,0 +6256470,The Most Affordable 3BR Apartment,17264040,Junior,Bronx,Mount Hope,40.84626,-73.90473,Entire home/apt,105,2,80,2019-06-15,1.66,2,365 +6257586,Skylight on Hart,11757212,Jasmine,Brooklyn,Bushwick,40.69755,-73.92748,Private room,49,1,170,2019-06-22,3.36,4,356 +6257715,Sunny top floor of a brownstone,1856829,Annie,Brooklyn,Fort Greene,40.68559,-73.96932,Entire home/apt,100,2,1,2015-05-10,0.02,1,0 +6258983,"Large Bedroom, Lovely Backyard & Separate WC",32517582,Elissa,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95642,Private room,94,1,46,2019-06-09,1.81,1,72 +6259928,Private Bedroom in St. Marks Place,31405259,Oliver,Manhattan,East Village,40.72745,-73.98362,Private room,75,6,3,2017-01-07,0.06,1,0 +6259989,Large room in Prospect Heights,11131161,Tina,Brooklyn,Crown Heights,40.67822,-73.96069,Private room,60,7,0,,,1,0 +6260442,Strawberry Fields,32527193,Kenneth,Manhattan,Upper West Side,40.77894,-73.98099,Entire home/apt,322,4,89,2019-07-03,1.76,1,76 +6261696,Private Room in E. Williamsburg,1197823,Elliott,Brooklyn,Williamsburg,40.70839,-73.94538,Private room,119,3,126,2018-01-27,2.49,2,0 +6261890,Williamsburg Penthouse with Stunning Views,32537024,Steve,Brooklyn,Williamsburg,40.71234,-73.94085,Entire home/apt,100,30,63,2018-09-12,1.25,1,321 +6261971,Morningside Heights Cathedral Lane,32537929,Sara,Manhattan,Upper West Side,40.80146,-73.96132,Private room,50,2,0,,,1,0 +6262339,Cozy room with a view of the Hudson,4153233,Ted,Manhattan,Washington Heights,40.85457,-73.94062,Private room,90,2,2,2017-10-15,0.08,2,0 +6262496,Bedroom right in Chelsea!,4582357,Dennis,Manhattan,Chelsea,40.73889,-73.99749,Private room,150,1,1,2015-05-06,0.02,1,0 +6262536,Centrally Located Studio - Times Sq,405555,Prerna,Manhattan,Theater District,40.76295,-73.98435,Entire home/apt,230,1,1,2015-06-05,0.02,1,0 +6262562,"25 minutes to Manhattan,near subway",15743237,Champson,Queens,Forest Hills,40.71448,-73.85286,Private room,59,1,2,2015-08-16,0.04,2,0 +6262645,Queen-sized bed in sunny East Harlem private room,32304586,Amanda,Manhattan,East Harlem,40.79115,-73.94663,Private room,90,3,95,2019-06-18,1.88,1,175 +6262821,"Manhattan, near subway, quiet street in LES!",1190853,Tanner,Manhattan,Lower East Side,40.7175,-73.98435,Private room,95,2,247,2019-06-27,4.87,1,60 +6263101,Williamsburg Loft w/ Amazing Roof,7322303,Matt,Brooklyn,Williamsburg,40.71335,-73.95789,Private room,75,45,0,,,1,92 +6268515,Large bedroom outside Times Square!,32576167,Jaime,Manhattan,Midtown,40.75179,-73.98606,Private room,85,1,0,,,1,0 +6269439,"Spacious&Pretty, heart of Brooklyn",32800,Naama,Brooklyn,Bedford-Stuyvesant,40.68739,-73.94859,Entire home/apt,85,10,4,2018-11-06,0.08,1,0 +6269517,Tailored Studio in Williamsburg BK,9524360,Michael,Brooklyn,Williamsburg,40.7137,-73.93734,Entire home/apt,150,3,139,2019-06-27,2.74,2,238 +6269608,Heavenly Hell's Kitchen 2 bedroom,32582256,James,Manhattan,Hell's Kitchen,40.75546,-73.99701,Entire home/apt,189,5,9,2018-07-15,0.25,2,0 +6269610,Heavenly Hell's Kitchen private room in 2bdrm,32582256,James,Manhattan,Hell's Kitchen,40.75691,-73.9984,Private room,99,2,35,2019-07-01,0.69,2,28 +6269646,"近地铁及市中心,交通方便,干净,明亮,到曼哈頓只要30分鐘",25915648,正川,Queens,Flushing,40.75532,-73.8206,Private room,41,2,151,2019-05-12,3.09,2,0 +6269808,Bright 3 bd/ 2 bath on the park.,233161,Mac,Brooklyn,Windsor Terrace,40.65246,-73.97369,Entire home/apt,150,6,0,,,1,0 +6269945,Manhattan Apartment (Female Guests),32583105,Nancy,Manhattan,Upper East Side,40.77867,-73.95121,Private room,90,1,75,2019-06-14,1.49,1,359 +6269968,"近地铁及市中心,干净 NYC 30 min to Manhattan",25915648,正川,Queens,Flushing,40.75717,-73.82004,Private room,37,2,128,2019-02-25,2.53,2,20 +6271152,Luxury 2bdr 2bath in Tribeca,1118139,Moran,Manhattan,Tribeca,40.71296,-74.00982,Entire home/apt,300,1,0,,,1,0 +6272125,NY Executive Apartment,3773133,Daniel,Brooklyn,Williamsburg,40.7207,-73.96217,Private room,380,1,1,2015-05-07,0.02,1,0 +6272181,Room available in a 3 bdrm apt!,32596841,Katie,Brooklyn,Crown Heights,40.67905,-73.95612,Private room,75,1,0,,,2,0 +6273469,Beautiful West Village Studio,4248868,Nancy,Manhattan,West Village,40.73674,-74.00832,Entire home/apt,200,1,0,,,1,0 +6273500,"Cozy Room, great Apartment, nice and safety area",3759052,Aracelli,Manhattan,East Harlem,40.7882,-73.94762,Private room,50,3,5,2019-03-26,0.13,1,188 +6274181,"Large, Bright & Airy 2BR Loft in ❤️of Williamsburg",32608639,Randall,Brooklyn,Williamsburg,40.71544,-73.95552,Entire home/apt,225,3,24,2019-05-27,0.47,1,17 +6277476,Cozy in Upper East Manhattan,3764548,Lori,Manhattan,Upper East Side,40.78042,-73.95128,Entire home/apt,150,14,2,2015-10-01,0.04,1,0 +6278513,Little Brownstone,29111260,Kham,Brooklyn,Bedford-Stuyvesant,40.69148,-73.9388,Private room,55,1,2,2016-06-17,0.05,1,0 +6279160,1 Bedroom steps from Central Park,9742010,Peter,Manhattan,Upper West Side,40.78203,-73.97644,Private room,175,2,0,,,1,0 +6283028,A Gorgeous 1BR in a Luxury Building,3603806,Shir,Manhattan,Upper West Side,40.7722,-73.98119,Entire home/apt,276,4,46,2019-04-27,1.15,1,9 +6283933,Large room w its own bathroom (& bath),41612,Toni,Brooklyn,Carroll Gardens,40.67678,-73.99708,Private room,45,2,0,,,1,0 +6284582,Sunny/Spacious 2 Bedroom Washington Heights,7474069,Carrie,Manhattan,Washington Heights,40.84656,-73.94143,Entire home/apt,199,1,39,2019-05-13,0.89,3,192 +6285403,Colorfull and Modern Bedroom UES A3,20559017,Yohan,Manhattan,East Harlem,40.78709,-73.94423,Private room,48,30,4,2018-11-24,0.15,9,341 +6285844,2BR. Brooklyn Loft,8726203,Mario,Brooklyn,Bushwick,40.70451,-73.92685,Entire home/apt,145,3,99,2019-07-05,1.97,1,327 +6286253,SunLit Room in Hip Neighborhood,32678605,Rebekah,Brooklyn,Bushwick,40.69756,-73.92209,Private room,100,1,0,,,1,0 +6286307,Terrific Location in Prospect Heights,1771148,Alex & Laura,Brooklyn,Crown Heights,40.67809,-73.95903,Private room,62,4,12,2016-09-02,0.24,1,0 +6287961,East Village Oasis,4405241,Guy,Manhattan,East Village,40.73112,-73.98364,Entire home/apt,230,6,6,2019-02-18,0.13,1,0 +6288004,Cozy Room with Exposed Bricks,27054429,Hien,Manhattan,Two Bridges,40.71063,-73.99526,Private room,90,10,133,2019-06-22,2.64,1,81 +6290301,Brooklyn Modern Spacious Studio,32142173,Yury,Brooklyn,Sheepshead Bay,40.58662,-73.94263,Entire home/apt,83,3,29,2017-10-23,0.58,1,227 +6290988,The Heart of Fort Greene,612221,Yvette,Brooklyn,Fort Greene,40.68648,-73.97525,Entire home/apt,120,1,7,2016-05-22,0.17,1,239 +6291371,Brooklyn Zen Gem Restful Retreat,31675601,Sophie,Brooklyn,Bay Ridge,40.62449,-74.02977,Private room,65,30,57,2019-05-02,1.13,4,307 +6291454,Spacious & Sunny Williamsburg Apt,20565470,Branden,Brooklyn,Williamsburg,40.71859,-73.95598,Entire home/apt,140,3,2,2015-06-18,0.04,1,0 +6291568,2 Bedroom in Wburg w/ living room,987621,Tommy,Brooklyn,Williamsburg,40.70792,-73.94274,Private room,80,1,2,2015-05-25,0.04,1,0 +6292309,Cozy studio apartment,931790,Rebekah & Jason,Brooklyn,Kensington,40.63822,-73.97123,Entire home/apt,75,1,0,,,1,0 +6292334,Cozy UES Studio,7189415,Jennifer,Manhattan,Upper East Side,40.77357,-73.95193,Entire home/apt,300,1,0,,,1,0 +6292828,Beautiful room in Williamsburg!,28980092,Meghan,Brooklyn,Williamsburg,40.71075,-73.95168,Private room,110,1,0,,,1,0 +6292866,Modern Quiet Gem Near All,32722063,,Brooklyn,East Flatbush,40.65263,-73.93215,Entire home/apt,85,2,182,2019-06-19,3.59,2,318 +6292893,Great East Village Studio,2563284,Jonas,Manhattan,East Village,40.72232,-73.98289,Entire home/apt,120,3,6,2016-11-06,0.12,1,0 +6297266,Cozy Family Home. Two Floors,32745492,Tami,Brooklyn,Sunset Park,40.66066,-73.99257,Entire home/apt,100,10,5,2017-04-23,0.10,1,0 +6300353,Lovely private space! 15min > city!,29854689,Danielle,Brooklyn,Bushwick,40.69793,-73.92775,Private room,65,2,17,2019-06-16,0.45,1,30 +6300424,Sunny Room! Block From park! SwEeT!,19575935,Dov,Brooklyn,Greenpoint,40.72469,-73.95099,Private room,80,1,2,2016-04-03,0.05,1,0 +6300809,Lovely 1-bed w Terrace by Cen Park!,4505274,Alexandra,Manhattan,Upper West Side,40.77468,-73.97966,Entire home/apt,299,7,3,2015-10-20,0.06,1,0 +6301965,Beautiful SoHo Loft,655506,Silvia,Manhattan,SoHo,40.7234,-73.99967,Entire home/apt,16,3,3,2018-01-08,0.16,1,0 +6302159,King Loft Bed in Bushwick Loft,20451969,Grace,Brooklyn,Bushwick,40.69985,-73.94001,Private room,46,4,0,,,1,0 +6302423,Perfectly Located West Village Loft,31913986,Rachel,Manhattan,West Village,40.73318,-74.00745,Entire home/apt,245,3,62,2019-06-23,1.23,1,350 +6302460,Private Bedroom and Office,21211868,Cliff,Brooklyn,Bedford-Stuyvesant,40.68728,-73.94104,Private room,55,5,1,2015-06-21,0.02,1,0 +6302996,Spacious Room in Washington Heights,18671223,Josette,Manhattan,Washington Heights,40.84773,-73.93346,Private room,45,1,1,2015-06-26,0.02,1,0 +6303109,COBBLE HILL SUMMER HAVEN,32778868,Jacqueline Mia,Brooklyn,Cobble Hill,40.68749,-73.99899,Entire home/apt,100,60,2,2017-05-25,0.04,1,0 +6303611,Spacious 2 Bd & 2 bath Apartment,6283678,Duncan,Brooklyn,Greenpoint,40.72666,-73.94819,Entire home/apt,165,17,0,,,1,0 +6303845,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95112,Private room,60,30,26,2019-06-06,0.52,8,236 +6304002,Luminous Modern Apt Share for Young Professionals,2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68563,-73.94953,Private room,60,30,23,2019-03-29,0.48,8,244 +6304307,Charming 1BR Apt in Williamsburg!,10384362,Michael,Brooklyn,Williamsburg,40.716,-73.94666,Entire home/apt,140,2,7,2017-05-27,0.14,1,0 +6304803,Bright and airy Brooklyn townhouse,1528333,Jon,Brooklyn,Clinton Hill,40.69322,-73.96554,Entire home/apt,300,2,1,2016-05-07,0.03,1,0 +6304928,Huge Backyard - Williamsburg Loft,886705,Nicholas,Brooklyn,Williamsburg,40.71749,-73.96525,Entire home/apt,249,2,4,2015-06-22,0.08,1,0 +6305027,Beautiful Boerum Hill 2 Bedroom,309393,Thomas,Brooklyn,Boerum Hill,40.68492,-73.97913,Entire home/apt,175,30,1,2015-08-31,0.02,1,45 +6305553,BK Room Available 5/17-5/24,32798845,Justin,Brooklyn,Kensington,40.64345,-73.98258,Private room,35,1,0,,,1,0 +6309328,BBoho Room in Williamsburg/Bushwick,30494262,Sanam,Brooklyn,Bushwick,40.70227,-73.92926,Private room,55,2,4,2016-05-18,0.08,1,0 +6311716,1 Bedroom Greenpoint Close To All,32826638,Nadia,Brooklyn,Greenpoint,40.73284,-73.95822,Entire home/apt,135,3,2,2015-08-14,0.04,1,0 +6311978,LES Private Room in 3BR Apt,4309521,Sarah,Manhattan,Lower East Side,40.71959,-73.98984,Private room,60,1,1,2016-01-05,0.02,1,0 +6313624,Small Room in Beautiful Apartment/Building,9864136,Anthony,Manhattan,Kips Bay,40.74253,-73.98006,Private room,75,30,1,2018-12-07,0.14,26,345 +6314148,"Beautiful, SEXY apartment",24874937,Brigitte,Manhattan,NoHo,40.72652,-73.99259,Entire home/apt,300,1,0,,,1,0 +6314794,Bright Room at the Hudson!,3944633,Siobhan,Manhattan,Harlem,40.82782,-73.95155,Private room,79,1,0,,,1,0 +6315050,Great Private Room in Bedstuy,6844007,Alicia,Brooklyn,Bedford-Stuyvesant,40.69053,-73.95466,Private room,65,3,0,,,1,0 +6315659,GORGEOUS BEDROOM IN VICTORIAN HOME W/PRIVATE BATH,3249903,Kamilya,Brooklyn,Flatbush,40.63598,-73.95611,Private room,129,3,12,2018-12-15,0.26,3,75 +6316005,well designed apt with yard!,656798,Manny,Brooklyn,Bedford-Stuyvesant,40.68068,-73.92874,Entire home/apt,280,3,152,2019-06-24,3.01,1,274 +6316121,"Cozy, quiet and comfortable 1BR",13451939,Dana,Brooklyn,Bedford-Stuyvesant,40.68321,-73.93666,Entire home/apt,132,3,120,2019-07-06,2.37,2,214 +6316666,Sunny private room in Park Slope,1231888,Alejandra,Brooklyn,Park Slope,40.67173,-73.97724,Private room,70,1,1,2015-07-01,0.02,1,0 +6316786,Cozy Room in Super Convenient Area,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66083,-73.96247,Private room,52,1,26,2018-07-31,0.52,3,332 +6321475,a Peace House and free parking,28722667,Qudsia,Brooklyn,Flatlands,40.62536,-73.929,Private room,148,1,8,2019-06-30,0.16,3,365 +6322937,Large Sunny NYC entire apt 15 mins!,80447,Francesca,Queens,Long Island City,40.7645,-73.93181,Entire home/apt,115,5,6,2016-10-16,0.13,1,0 +6323445,Beautiful UES 1BR Apartment,24070095,Ryan,Manhattan,Upper East Side,40.77032,-73.96161,Entire home/apt,175,3,0,,,1,0 +6323975,Luxury Apartment in Midtown West,32904968,Yulia,Manhattan,Hell's Kitchen,40.75815,-73.99374,Shared room,130,1,0,,,1,0 +6324190,1 Bedroom in Giant Bushwick House,4157362,Casey,Brooklyn,Bedford-Stuyvesant,40.69564,-73.93335,Private room,35,10,0,,,1,0 +6325210,Elegant Master Suite NYC Brownstone,3471761,Kevin & Yuan,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92347,Entire home/apt,109,5,2,2016-06-04,0.04,2,0 +6326345,Comfortable private room Brooklyn,23589288,Fabian,Brooklyn,Bedford-Stuyvesant,40.68851,-73.9574,Private room,60,3,9,2017-01-16,0.18,1,0 +6326410,Stylish 1 bed room in the East Village,32922532,Jillian,Manhattan,East Village,40.73069,-73.98515,Entire home/apt,150,3,107,2019-06-23,2.16,1,99 +6326568,W Village - 3 BR - 5/31 to 7/2,32924122,Jeffrey,Manhattan,West Village,40.73623,-74.00036,Entire home/apt,207,1,1,2015-06-29,0.02,1,0 +6326582,"Sunny, Quiet, Open Space Uptown",32924087,Faiven,Manhattan,Washington Heights,40.8327,-73.94028,Shared room,63,1,2,2015-08-17,0.04,2,0 +6326681,Cozy apt convenient to everything!,241395,Ruby,Manhattan,East Village,40.72526,-73.99201,Entire home/apt,185,3,10,2018-12-30,0.21,1,275 +6326865,Best of Carroll Gardens,29594719,Beth,Brooklyn,Carroll Gardens,40.6795,-73.99468,Entire home/apt,445,5,1,2015-06-27,0.02,1,0 +6326959,Unique 1BR near Columbia Medical,16152105,Marc,Manhattan,Washington Heights,40.8531,-73.94091,Entire home/apt,125,7,6,2018-02-01,0.13,1,0 +6327222,Ensuite Turquoise Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68497,-73.93669,Private room,35,1,174,2019-06-09,3.45,5,153 +6327529,Beautiful West Village Apartment,27289127,Joel,Manhattan,West Village,40.74039,-74.00665,Entire home/apt,200,5,3,2016-01-01,0.06,1,0 +6328046,Spacious 1BDR apartment Upper West Side,31033526,Natalia,Manhattan,Upper West Side,40.79466,-73.96623,Entire home/apt,141,7,4,2018-06-17,0.16,1,0 +6328175,Large apartment near Columbia Univ,25697753,Eduardo,Manhattan,Morningside Heights,40.80692,-73.96434,Entire home/apt,120,4,2,2016-06-22,0.04,1,0 +6328394,"Trendy, newly renovated 1 BD Apt.",8876603,Tammy,Manhattan,Harlem,40.81356,-73.94807,Entire home/apt,145,3,143,2019-06-24,2.95,1,252 +6329973,Times Square room with private bath,31626212,Troy,Manhattan,Theater District,40.75731,-73.98479,Private room,120,60,140,2019-06-24,2.81,5,283 +6330321,2-Bdrm Entire Apartment St. George,6319915,Jason,Staten Island,St. George,40.64524,-74.08326,Entire home/apt,89,4,129,2019-06-30,2.57,2,25 +6331598,Stylish Apt in the Heart of BedStuy,32958503,Shatia,Brooklyn,Bedford-Stuyvesant,40.686,-73.93793,Entire home/apt,90,1,2,2016-09-21,0.04,1,0 +6332130,Lefferts Apt in Brownstone @ Park,21725994,Tim,Brooklyn,Prospect-Lefferts Gardens,40.65597,-73.95807,Entire home/apt,95,2,77,2019-06-18,1.61,2,83 +6333850,Nice Cozy Space,11127879,Roger,Brooklyn,Crown Heights,40.6726,-73.92859,Private room,120,1,0,,,2,177 +6333994,Two Bedroom in a townhouse with a patio in Nolita!,4194894,Esef,Manhattan,Nolita,40.72131,-73.99429,Entire home/apt,295,2,94,2019-05-07,1.98,2,272 +6334236,Brooklyn Tranquil Artist Space,32901759,Danielle,Brooklyn,Crown Heights,40.6756,-73.92305,Entire home/apt,104,3,60,2019-05-24,1.20,1,320 +6334292,Charming and Sunny Central Brooklyn,139311,Michael,Brooklyn,Boerum Hill,40.68363,-73.98011,Entire home/apt,150,2,63,2018-11-03,1.26,1,0 +6334492,Spacious PRIVATE Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.57679,-73.96016,Private room,75,1,127,2019-06-30,2.54,2,247 +6334808,05/19- 05/27 Big East Village Room,32979427,Maria,Manhattan,East Village,40.72786,-73.988,Private room,170,5,0,,,1,0 +6335490,Best location in NYC!,4365980,Benjamin,Manhattan,Gramercy,40.73481,-73.98669,Entire home/apt,194,2,8,2017-01-19,0.16,1,0 +6336480,Available in August only. One room with twin bed.,12459436,Zena,Queens,Flushing,40.73627,-73.81305,Private room,49,15,0,,,2,27 +6336738,Bklyn Brownstone 2Bedroom Apartment w/Office Space,32992675,Hollie,Brooklyn,Bedford-Stuyvesant,40.68351,-73.93224,Entire home/apt,125,3,90,2019-06-23,1.88,1,155 +6336834,SPACIOUS WILLIAMSBURG DESTINATION,32991339,Eric,Brooklyn,Williamsburg,40.70841,-73.95497,Private room,84,2,190,2019-06-16,3.82,2,254 +6337725,Cozy Harlem 1BD 15 mins to midtown,33000709,Casey,Manhattan,Harlem,40.81412,-73.95185,Entire home/apt,140,2,2,2015-08-27,0.04,1,0 +6338068,#1 Private room near CENTRAL PARK!,248865,Nina,Manhattan,Upper East Side,40.77072,-73.95424,Private room,50,30,14,2018-09-23,0.28,3,310 +6342741,PRIVATE Bedroom & bathroom TRIBECA,29893120,Marco,Manhattan,Tribeca,40.71466,-74.00802,Private room,89,3,9,2016-05-13,0.18,1,0 +6343619,Room in Historical Crown Heights,33037772,Acadia,Brooklyn,Crown Heights,40.66756,-73.95187,Private room,55,1,5,2015-08-26,0.10,1,0 +6343641,Private Room Right by Subway to Manhattan *alt*,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.96083,Private room,62,1,54,2017-10-25,1.10,3,343 +6343837,Central Fort Greene Apt w deck,32849197,Kate,Brooklyn,Fort Greene,40.68673,-73.97318,Entire home/apt,100,1,0,,,1,0 +6344926,Brooklyn private room,14898658,Chadanut,Brooklyn,Kensington,40.64423,-73.98224,Private room,40,30,43,2019-01-08,0.87,11,99 +6344936,Modern 2-bedroom Loft in Greenpoint,9680171,Tracy,Brooklyn,Greenpoint,40.73148,-73.95929,Entire home/apt,350,3,1,2015-08-17,0.02,1,0 +6345234,Brownstone in Clinton Hill,2427529,Drew,Brooklyn,Clinton Hill,40.68409,-73.96264,Private room,75,1,0,,,1,0 +6345728,Dwtn 1 Bedroom W/Spectacular Views,13275837,Jaime,Manhattan,Greenwich Village,40.73109,-73.99411,Entire home/apt,190,3,7,2017-04-10,0.15,1,0 +6346456,Modern 1BR on Soho's Bowery,32846930,Erica,Manhattan,Nolita,40.72098,-73.99493,Entire home/apt,350,1,0,,,1,0 +6346496,East Village Apartment with Terrace,14087588,Drew,Manhattan,East Village,40.72514,-73.9896,Entire home/apt,300,1,1,2016-05-30,0.03,1,0 +6346662,Perfect West Village Studio!,1659891,Laurie,Manhattan,West Village,40.73854,-74.00147,Entire home/apt,295,5,6,2017-05-28,0.12,1,0 +6347548,Furnished Room with View of E River,33063310,Judy,Manhattan,Kips Bay,40.73789,-73.97493,Private room,113,1,2,2015-06-29,0.04,1,0 +6347713,Huge Private Room in the BEST location,33064443,Judy,Manhattan,Flatiron District,40.74169,-73.9933,Private room,95,3,1,2017-07-14,0.04,1,0 +6347729,Modern& Pretty Bedroom UpperBest!!!!,33064599,Yukee,Manhattan,Upper West Side,40.80168,-73.96543,Private room,59,3,68,2019-04-19,1.42,6,319 +6348548,Family Friendly Getaway,33070890,Susan,Brooklyn,Flatbush,40.63025,-73.96555,Entire home/apt,100,28,0,,,1,4 +6348972,Cosy & Quiet BD in Central Harlem,33074274,Vigil,Manhattan,Harlem,40.80581,-73.95,Private room,69,6,40,2019-05-02,0.80,2,329 +6349111,Perfect location!,10562062,Dajana,Manhattan,East Village,40.72297,-73.98604,Private room,190,2,1,2015-05-25,0.02,1,0 +6349524,1 bedroom in East village,8852945,Pierre,Manhattan,East Village,40.72852,-73.9856,Private room,110,4,0,,,1,0 +6355217,Cozy Brooklyn Studio with Parking,33108060,Shay,Brooklyn,Flatlands,40.62276,-73.93289,Entire home/apt,65,14,1,2015-08-01,0.02,1,0 +6356070,Ocean Hill - Beautiful 3 Bedroom,20320155,Alex & Family,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91156,Entire home/apt,185,1,69,2019-06-16,1.40,1,309 +6356359,Gorgeous home steps from the park!,31600563,Beatrice,Brooklyn,Park Slope,40.67194,-73.97247,Entire home/apt,152,3,1,2015-06-02,0.02,1,0 +6356366,Extra Large 1 Bdroom Sunny/Spacious,33113275,Iz,Manhattan,East Village,40.72872,-73.98043,Entire home/apt,249,3,3,2015-10-21,0.06,1,0 +6357058,Chambre disponnible,23975421,Marine,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94948,Private room,100,1,0,,,1,0 +6357128,Private Bedroom in Beautiful Apartment,20156894,Florence And Peter,Manhattan,Harlem,40.80627,-73.94896,Private room,95,4,20,2018-10-02,0.51,1,69 +6357527,Great UWS Studio Apartment,18762837,Gino,Manhattan,Upper West Side,40.79159,-73.97809,Entire home/apt,130,2,3,2015-05-29,0.06,1,0 +6358723,2 Bedroom Duplex,33125859,Sylvia,Brooklyn,Prospect Heights,40.67758,-73.97239,Entire home/apt,145,3,18,2019-06-25,0.37,1,0 +6359111,"A huge, debonair loft in midtown",5720429,Gregory,Manhattan,Murray Hill,40.74853,-73.98192,Entire home/apt,325,1,66,2019-07-02,1.33,1,67 +6359266,"1 Train, Delis, Duane Read,Eat Outs",33128992,Sundar,Manhattan,Morningside Heights,40.81444,-73.95863,Private room,75,1,1,2015-05-18,0.02,1,0 +6360224,"Sunny, Private room in Bushwick",33134899,,Brooklyn,Bushwick,40.70146,-73.92792,Private room,37,1,1,2015-07-01,0.02,1,0 +6360639,The city cabin,3320288,Jerry,Queens,Ridgewood,40.70365,-73.90351,Entire home/apt,75,1,52,2019-06-08,1.78,1,317 +6361102,Cozy Artist Bedroom — Only a 3 Min Walk to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67682,-73.91597,Private room,50,3,102,2019-06-23,2.02,6,364 +6361204,Million Dollar Views of Manhattan!!,33138892,Roy,Queens,Long Island City,40.74725,-73.95669,Entire home/apt,150,14,0,,,1,0 +6362061,Entire Prime Upper West Side Large Studio,3716641,Ofer,Manhattan,Upper West Side,40.78185,-73.97844,Entire home/apt,99,30,13,2019-01-29,0.27,8,140 +6362227,"Cozy room with beautiful yard and huge, soft bed",28645487,Ilana,Brooklyn,Bushwick,40.6952,-73.92396,Private room,50,4,11,2018-09-23,0.48,1,0 +6362662,Private room 3min from Bedford stop,33149697,Signe,Brooklyn,Williamsburg,40.72026,-73.96111,Private room,65,1,0,,,1,0 +6363059,FIDI brand new studio on 33th floor,33152462,Elly,Manhattan,Financial District,40.70778,-74.00685,Entire home/apt,150,1,9,2015-07-11,0.18,1,0 +6363796,Colorful & Spacious near A Express,14104449,Andrew,Manhattan,Washington Heights,40.85111,-73.93325,Private room,88,2,48,2019-06-30,0.97,1,122 +6364086,Spacious Luxury Studio-96th and WEA,3471132,Robin,Manhattan,Upper West Side,40.7966,-73.97154,Entire home/apt,190,4,8,2016-11-27,0.16,1,0 +6364117,Lovely Lofted Room in UWS,7532832,Wing-Yee,Manhattan,Upper West Side,40.80066,-73.96941,Private room,125,1,1,2015-06-09,0.02,1,0 +6364150,Colorful flat in heart of E Village,32162351,A.J.,Manhattan,East Village,40.72917,-73.98223,Entire home/apt,284,4,11,2018-09-14,0.22,2,0 +6364280,Breathtaking Light & View West Village Apartment,4358400,Shehzad,Manhattan,West Village,40.73707,-74.00524,Private room,150,1,1,2015-05-26,0.02,1,0 +6364324,The Oasis.,33106693,Elena,Manhattan,Harlem,40.82159,-73.95013,Private room,16,2,43,2019-07-01,1.66,3,154 +6364404,Luxury High-Rise in Center of NYC/Manhattan,6415669,Nisha,Manhattan,Midtown,40.74832,-73.98814,Entire home/apt,190,6,0,,,1,0 +6364807,Your home away from home,33166971,Miriam,Brooklyn,Bushwick,40.6861,-73.91241,Private room,60,2,70,2019-07-01,1.39,2,70 +6370032,Cozy 1Br Apt❤️of Upper East Side near Central Park,33182386,Ulysse,Manhattan,East Harlem,40.78775,-73.94891,Private room,99,4,49,2019-04-21,0.97,1,97 +6370773,Best Location - HUGE 2 bedroom by Times Square!,2683773,Michael Shane,Manhattan,Hell's Kitchen,40.76521,-73.98776,Entire home/apt,100,3,63,2019-06-20,1.25,1,7 +6370889,1 BD in Washington Heights,33198779,Catherine,Manhattan,Washington Heights,40.84064,-73.93727,Private room,35,1,4,2015-10-31,0.08,1,0 +6371191,"Charm and Comfort, Heart of the UWS",33200237,Christopher,Manhattan,Upper West Side,40.78576,-73.97629,Entire home/apt,167,7,2,2019-06-17,0.07,1,14 +6371373,Save$PrivateRoom walking distance to Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76525,-73.98895,Private room,140,1,159,2019-06-30,3.17,5,249 +6371504,Sunny Upper West Side Summer Rental,26484511,Emily,Manhattan,Upper West Side,40.78293,-73.97667,Entire home/apt,175,3,4,2016-06-18,0.08,1,0 +6371593,Fantastic Apt. Amazing LES Location,11740479,Brian,Manhattan,Lower East Side,40.71818,-73.9935,Entire home/apt,249,1,6,2015-12-30,0.12,1,0 +6371890,Private bedroom in SOHO,6771594,Charlotte,Manhattan,Tribeca,40.71959,-74.00429,Private room,110,1,0,,,1,0 +6373379,Large Apartment w/ Amenities,33212205,Firas,Manhattan,Midtown,40.75506,-73.96887,Entire home/apt,250,1,0,,,1,0 +6373582,Gowanus Brooklyn Bed,33213436,Alec,Brooklyn,Gowanus,40.67883,-73.98407,Private room,129,1,116,2019-06-24,2.38,8,236 +6373770,Huge private bedroom for quiet sleep in Manhattan!,3867,Luke,Manhattan,Two Bridges,40.71213,-73.99661,Private room,95,1,92,2019-06-29,2.40,2,47 +6373790,Enjoy a comfy apartment on the UWS,26818265,Gat,Manhattan,Upper West Side,40.79745,-73.96916,Entire home/apt,280,1,1,2015-07-05,0.02,1,0 +6374545,Studio one block from Central Park,33221872,Jocelyn,Manhattan,Upper West Side,40.78587,-73.97181,Entire home/apt,200,7,3,2015-08-21,0.06,1,0 +6375124,Park Slope -Sunny 3BR duplex,738918,Birgitta,Brooklyn,Park Slope,40.67619,-73.97726,Entire home/apt,276,3,19,2019-07-02,0.38,2,78 +6375331,1bdrm east village,32203454,Curtis,Manhattan,East Village,40.72378,-73.98385,Entire home/apt,130,3,26,2016-01-20,0.51,1,0 +6376345,!!BEAUTIFUL APARTMENT WITH GARDEN!!,33232851,Luis,Manhattan,Marble Hill,40.87494,-73.91057,Entire home/apt,40,3,2,2016-02-01,0.05,1,0 +6376487,Our Astorian Alcove,2321422,Angela,Queens,Astoria,40.76273,-73.91316,Entire home/apt,122,6,0,,,1,13 +6376606,"Gramercy Apt, Private Bedroom",33234599,Smit,Manhattan,Kips Bay,40.74025,-73.98323,Private room,64,3,4,2016-04-13,0.08,1,0 +6377161,Steps from Gramercy Park,14141873,Scott,Manhattan,Gramercy,40.73637,-73.98619,Entire home/apt,399,1,28,2019-06-17,0.61,1,354 +6377384,Spacius and quiet loft in Greenwich village,1993978,Sylvie,Manhattan,Chelsea,40.74068,-74.00346,Entire home/apt,495,5,8,2016-11-23,0.16,1,0 +6377624,Duplex garden brownstone apt,25472836,Maeva & Aaron,Brooklyn,Clinton Hill,40.68672,-73.96376,Entire home/apt,145,2,2,2016-08-10,0.06,1,0 +6377669,"""Your home away from home #2",33166971,Miriam,Brooklyn,Bushwick,40.68541,-73.91211,Private room,53,2,56,2019-06-01,1.12,2,81 +6378298,"Well-located Apt in Sunnyside, NYC",33163646,Kyoung,Queens,Sunnyside,40.74444,-73.92451,Entire home/apt,100,1,72,2018-01-18,1.46,1,0 +6380118,Brooklyn artist apartment,6645134,May,Brooklyn,Bushwick,40.70104,-73.91813,Private room,42,3,5,2017-08-20,0.10,1,298 +6380761,Modern Stdio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.77643,-73.95086,Entire home/apt,200,30,3,2018-01-01,0.09,9,353 +6384275,GARDEN OASIS CLINTON HILL BROWNSTON,252121,Emiliano,Brooklyn,Clinton Hill,40.68374,-73.96452,Entire home/apt,130,3,97,2019-06-17,1.95,1,348 +6384383,Penthouse Triplex/ Union Sq / Roof,1245695,Chris,Manhattan,East Village,40.73249,-73.9887,Private room,200,30,8,2016-10-22,0.16,1,365 +6384560,Sublet in Furnished Master Bedroom,4233168,Kim,Brooklyn,Prospect-Lefferts Gardens,40.65628,-73.95753,Private room,75,1,1,2015-07-10,0.02,1,0 +6384622,Sunny room right by park!,31752474,Tine,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.96197,Private room,45,14,9,2017-04-06,0.19,2,0 +6385039,Historic room in renovated brownstone,2881,Loli,Brooklyn,Bedford-Stuyvesant,40.68473,-73.946,Private room,52,2,110,2019-07-01,2.63,2,220 +6385364,Front bdrm in massive NoLita Loft,3922258,Alex,Manhattan,Lower East Side,40.7188,-73.99452,Private room,100,1,1,2015-08-10,0.02,1,0 +6385547,3 Bedroom Greenpoint Townhouse,834483,Dorothy,Brooklyn,Greenpoint,40.72833,-73.94781,Entire home/apt,350,3,15,2015-09-14,0.30,1,0 +6386823,Cozy Manhattan room ★ 3 mins to subway,21361229,Vivian Yuen Ting,Manhattan,Washington Heights,40.83998,-73.94295,Private room,70,1,88,2019-06-30,3.66,1,0 +6387739,"Room in Bushwick, Brooklyn",33297467,Camilla,Brooklyn,Bushwick,40.70104,-73.92278,Private room,39,4,4,2018-12-17,0.13,1,0 +6388315,UPPER WEST SIDE one bedroom apt,9815198,Nicola,Manhattan,Upper West Side,40.77724,-73.97699,Entire home/apt,120,150,0,,,1,365 +6388721,"Amazing windows, large West Village one-bedroom",3269171,Alison,Manhattan,West Village,40.73507,-74.00826,Entire home/apt,239,2,6,2017-01-01,0.18,1,0 +6389473,1785 The Oldest Row House in New York.,7202402,Ross,Manhattan,Chinatown,40.71399,-73.99707,Entire home/apt,375,2,15,2016-10-26,0.30,2,365 +6390092,Desirable apt. in prime location,33159253,Julianne,Brooklyn,Williamsburg,40.71999,-73.94551,Entire home/apt,125,1,1,2015-05-29,0.02,1,0 +6390777,Bkln (Vinegar Hill) duplex w/garden,33317997,Anna,Brooklyn,Vinegar Hill,40.70098,-73.98211,Entire home/apt,375,14,0,,,1,0 +6391062,"Cozy, artistic room in Brooklyn Apt",5972246,Elle,Brooklyn,Bedford-Stuyvesant,40.68217,-73.9534,Private room,45,3,3,2018-01-07,0.06,1,0 +6391286,Private room in spacious house,3911265,Ali,Queens,Long Island City,40.75405,-73.93717,Private room,60,7,1,2015-10-01,0.02,1,0 +6391465,Room in Condo,33323743,Coral,Brooklyn,Crown Heights,40.67371,-73.92743,Private room,75,1,5,2019-01-01,0.55,1,65 +6395425,The Golden Chamber,33346283,Jonathan,Manhattan,Harlem,40.83001,-73.94815,Private room,70,5,42,2019-05-27,0.87,3,348 +6395433,Charming Private Suite in the South Bronx,23693099,Justin,Bronx,Concourse Village,40.82809,-73.9159,Entire home/apt,65,4,107,2019-06-24,2.30,1,210 +6397059,Sunny Bedroom in West Village Loft,33355603,Lisa,Manhattan,West Village,40.73314,-74.00835,Private room,250,2,0,,,1,0 +6397592,Lower East Side/Chinatown Bedroom,2696970,Sasha,Manhattan,Two Bridges,40.71193,-73.99454,Private room,99,2,28,2018-11-08,0.55,1,296 +6397963,Room in BushBurg Apt w/ Rooftop,21894410,Jordan,Brooklyn,Williamsburg,40.70125,-73.94061,Private room,95,1,3,2016-03-28,0.06,1,0 +6398715,Studio!Astoria station in 3min!,31762883,Daisuke,Queens,Ditmars Steinway,40.77915,-73.90902,Private room,46,7,0,,,1,0 +6399305,"Spacious, unique apt - see reviews! Last minute ok",264659,Nikhil,Manhattan,East Village,40.72361,-73.98775,Entire home/apt,275,1,35,2017-12-08,0.70,1,0 +6399885,Beautiful 2bdroom apartmnt,33368633,John,Queens,Forest Hills,40.72391,-73.84407,Entire home/apt,168,3,133,2019-06-07,2.64,2,336 +6400055,Private bedroom in two bedroom APT,1535739,Ron,Brooklyn,Williamsburg,40.70956,-73.95328,Private room,45,31,3,2018-08-05,0.06,1,0 +6400170,Fantastic Cozy Stay-NYC. 4B,24833181,Andres,Brooklyn,Bedford-Stuyvesant,40.69385,-73.9481,Entire home/apt,80,1,93,2019-06-29,2.00,2,0 +6400255,Studio in Lux Building on UWS!,5707879,Laura,Manhattan,Upper West Side,40.78017,-73.98317,Entire home/apt,150,16,0,,,1,0 +6400482,"NEW! SAFE, Bright in the Heights",15195194,Akiea,Manhattan,Washington Heights,40.839,-73.94543,Entire home/apt,115,1,4,2015-07-30,0.08,1,0 +6400649,Cosy Bedroom in typical brownstone,11731168,Candice,Brooklyn,Boerum Hill,40.68848,-73.99009,Private room,65,2,6,2016-07-06,0.13,1,0 +6401500,"Wburg Penthouse, Private elevator, balcony, roof",5463220,Nick And Jade,Brooklyn,Williamsburg,40.71258,-73.95556,Entire home/apt,201,2,175,2019-07-01,3.53,1,68 +6401592,Brooklyn Summer,10645724,Daliso,Brooklyn,Crown Heights,40.67704,-73.93955,Private room,55,7,0,,,1,0 +6402424,Bright Private Room in Williamsburg!,7256646,Surabhi,Brooklyn,Williamsburg,40.70609,-73.95332,Private room,120,1,3,2016-06-26,0.08,1,0 +6402712,Private Room in Astoria,30166510,Alina,Queens,Astoria,40.77006,-73.93043,Private room,50,1,1,2015-08-10,0.02,1,0 +6402807,Stylish central 1 BR apartment,6354467,Robert,Manhattan,Chelsea,40.74476,-73.99862,Entire home/apt,100,4,4,2017-01-03,0.09,1,0 +6403485,Homey 1 BR apartment in Harlem,33394459,Alana,Manhattan,Harlem,40.80645,-73.95261,Entire home/apt,100,14,2,2016-01-07,0.04,1,0 +6403755,Entire Williamsburg Music Lovers Palace―1 Blk to L,33396510,Christopher,Brooklyn,Williamsburg,40.70745,-73.94223,Entire home/apt,59,7,9,2019-06-12,0.19,1,0 +6403795,Twin Loft Nook in Brooklyn,21090508,Jarad,Brooklyn,Bushwick,40.69914,-73.93591,Shared room,44,5,27,2018-08-14,0.54,2,0 +6404584,Tree-lined block+Roof+private rooms,33403059,Joshua,Brooklyn,Crown Heights,40.67725,-73.95994,Private room,79,5,3,2015-10-16,0.06,3,0 +6405859,Eclectic Williamsburg Townhouse,10396710,Robbie,Brooklyn,Williamsburg,40.70933,-73.95577,Private room,56,3,2,2016-06-13,0.04,1,0 +6407534,"Clean, bright, renovated apt in Lower East Side",5919678,Carole,Manhattan,Lower East Side,40.71983,-73.98801,Entire home/apt,140,5,8,2018-06-14,0.16,1,0 +6408849,MODERN NYC APARTMENT,33426004,Joshua,Manhattan,Murray Hill,40.74583,-73.97834,Entire home/apt,160,1,5,2015-09-25,0.10,1,0 +6410511,"Big space, great price, a home by Mnhn, best in BK",10136764,Michael,Brooklyn,Crown Heights,40.67766,-73.93934,Entire home/apt,119,4,91,2019-06-21,1.81,1,316 +6410814,Spacious Studio + Patio,15613411,Stacey,Manhattan,Lower East Side,40.7187,-73.99043,Entire home/apt,185,3,26,2017-05-06,0.52,1,0 +6410924,Quiet Bedroom in Large Charming Apt,1503493,Phi Lee,Brooklyn,Prospect-Lefferts Gardens,40.65901,-73.96045,Private room,55,3,0,,,1,0 +6412693,Cozy Room in Washington Heights Apt,11555845,Elizabeth And Elias,Manhattan,Washington Heights,40.84543,-73.94283,Private room,58,1,148,2019-06-12,3.58,1,280 +6416714,1 private bedroom in Williamsburg,24448775,Mo,Brooklyn,Williamsburg,40.70883,-73.94068,Private room,85,4,4,2015-09-19,0.08,1,0 +6420850,Great sunny room in a fun house,2216353,Kat,Brooklyn,Bedford-Stuyvesant,40.69435,-73.93294,Private room,100,1,1,2015-06-09,0.02,1,0 +6421011,"Cozy ""Jr."" 1B, historic brownstone",33499491,Seth,Brooklyn,Crown Heights,40.67699,-73.95179,Entire home/apt,110,1,5,2016-01-01,0.10,1,0 +6421335,Cozy room near LES/Chinatown,6680071,Billy,Manhattan,Chinatown,40.71489,-73.99168,Private room,80,5,1,2015-05-25,0.02,1,0 +6421429,Dominique's LowerLevel 1 bdrm pad*video projects,310670,Vie,Bronx,Eastchester,40.88241,-73.83422,Entire home/apt,115,1,6,2019-06-30,0.18,13,364 +6421799,relaxed and simple in Williamsburg,3011903,Matthew,Brooklyn,Williamsburg,40.7105,-73.9451,Private room,99,4,58,2019-05-27,1.25,1,307 +6422511,My Little Guest Apartment,2680820,Linda,Queens,Flushing,40.75348,-73.81785,Entire home/apt,105,2,204,2019-06-24,4.05,3,313 +6422762,Cozy Room in UES Apartment,13341919,Jennifer,Manhattan,Upper East Side,40.78396,-73.95218,Private room,110,2,3,2015-12-27,0.06,1,0 +6422875,Brooklyn Creative Snooze Factory,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69271,-73.94353,Private room,70,1,397,2019-06-28,7.97,2,35 +6423521,Private Room w/ access to Terrace,33513998,Mackenzie,Manhattan,Upper West Side,40.77883,-73.97494,Private room,160,1,7,2016-05-21,0.14,1,0 +6423589,Lofted bedroom in large loft space full of plants,6767463,Tim,Brooklyn,Bushwick,40.70746,-73.92054,Private room,150,30,10,2017-02-28,0.20,1,0 +6423799,UWS STUDIO,26624082,Maurine,Manhattan,Upper West Side,40.78885,-73.98013,Entire home/apt,90,4,1,2016-03-26,0.03,1,0 +6424227,Bright and Sunny Apartment DUMBO,6969910,Ben,Brooklyn,DUMBO,40.70372,-73.9899,Entire home/apt,150,7,0,,,1,0 +6424961,"Skylighted Floor, All Yours, 23 Mins to Manhattan",30641136,Michael,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95162,Entire home/apt,86,30,10,2019-05-31,0.33,1,302 +6425712,Roomy and quiet 2BR in Manhattan!,16598550,Candace,Manhattan,Washington Heights,40.85516,-73.9378,Entire home/apt,200,1,2,2015-06-27,0.04,1,0 +6425751,LUXURY DOORMAN HIGH RISE One Bedroom,33530934,Jason,Manhattan,Hell's Kitchen,40.76525,-73.99056,Entire home/apt,272,1,38,2019-05-09,0.89,1,360 +6425850,"Spacious, charming studio",32715865,Yelena,Manhattan,Upper West Side,40.79169,-73.97498,Entire home/apt,86,1,5,2017-09-23,0.13,1,0 +6426032,Beautiful Apartment in Williamsburg,33533091,Maeve,Brooklyn,Williamsburg,40.70885,-73.94927,Entire home/apt,200,5,0,,,1,0 +6426292,"Comfy Apt! Private Bathroom, Prime Location, Patio",33535691,Jonathan,Manhattan,Hell's Kitchen,40.75674,-73.99774,Private room,129,2,290,2019-06-25,5.92,1,26 +6428482,2C Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80749,-73.93803,Private room,50,1,103,2019-05-31,2.07,10,365 +6428581,Nolita Room - Convenient & Quaint,3760161,Sharmilli,Manhattan,Nolita,40.72066,-73.99566,Private room,95,4,1,2016-06-11,0.03,1,0 +6428913,COBBLE HILL BROWNSTONE,13043852,Claire,Brooklyn,Cobble Hill,40.68477,-73.99825,Entire home/apt,400,6,5,2017-07-16,0.10,1,85 +6428942,Entire 1 BR apt in luxury building!,21694306,Brooke,Manhattan,Financial District,40.70949,-74.01379,Entire home/apt,212,1,0,,,1,0 +6429905,Unique Space in Red Hook,33558572,Kim,Brooklyn,Red Hook,40.67731,-74.0112,Entire home/apt,160,2,64,2019-06-16,1.27,1,341 +6432836,Enormous bedroom in UWS 2-bed,19251040,Barr,Manhattan,Upper West Side,40.79275,-73.97199,Private room,90,3,1,2015-06-11,0.02,1,0 +6433445,Sunny Studio in Clinton Hill,1905361,Gillian,Brooklyn,Clinton Hill,40.68404,-73.96714,Entire home/apt,145,6,17,2019-05-30,0.34,1,15 +6433621,Forest Hills home shares its breathtaking beauty,33582013,Nate,Queens,Forest Hills,40.71345,-73.85658,Entire home/apt,125,2,44,2019-06-30,0.91,1,319 +6436433,Upper East Side + 2 queen size bed,2433524,Daniel,Manhattan,Upper East Side,40.78125,-73.94851,Entire home/apt,250,3,0,,,1,0 +6437014,"Family Friendly & Cozy Apt Near Subway, 1 Bedroom",17382690,Erica,Brooklyn,South Slope,40.66632,-73.99013,Entire home/apt,100,3,100,2019-06-25,1.98,1,6 +6437262,"Cozy private room, close to the subway & beach",33605594,Misha,Brooklyn,Sheepshead Bay,40.59225,-73.95026,Private room,75,1,8,2019-05-15,0.26,1,311 +6437347,Cosy Williamsburg,7108862,Estelle,Brooklyn,Williamsburg,40.7103,-73.96622,Private room,75,4,2,2015-06-13,0.04,1,0 +6438239,A spacious studio in Midtown / UES,11885649,Jay,Manhattan,Upper East Side,40.76313,-73.96192,Entire home/apt,195,3,0,,,1,0 +6438254,Charming Brooklyn 1BD+Den,33611370,Christopher,Brooklyn,Carroll Gardens,40.68303,-73.99686,Entire home/apt,125,14,2,2015-10-26,0.04,1,0 +6438456,"Private! entire studio, own entrance, private bath",33614329,Walter,Brooklyn,Bushwick,40.69528,-73.93079,Entire home/apt,85,1,208,2019-07-06,4.14,4,197 +6443330,West Village Studio,33640698,Peter,Manhattan,West Village,40.73404,-74.00955,Entire home/apt,200,1,0,,,1,0 +6444554,3 bedrooms in Upper East Side with amazing terrace,7853594,Hans,Manhattan,Upper East Side,40.76235,-73.9626,Entire home/apt,449,4,6,2018-12-30,0.14,2,4 +6445126,Williamsburg 2 Bedroom,32850071,Mary Kate,Brooklyn,Williamsburg,40.71411,-73.95771,Entire home/apt,150,2,1,2015-05-25,0.02,1,0 +6445173,Luxury Williamsburg Duplex w/ Yard!,5622480,Gigi,Brooklyn,Williamsburg,40.71106,-73.94918,Entire home/apt,250,2,176,2019-06-23,3.51,1,275 +6445656,Big Room in Heart of Williamsburg,13873277,Elan,Brooklyn,Williamsburg,40.71599,-73.95539,Private room,100,28,0,,,1,0 +6447136,Magical Oasis in Bushwick! 20 min to City,33648474,Leah,Brooklyn,Bushwick,40.6971,-73.92046,Entire home/apt,120,2,56,2019-07-04,1.11,1,314 +6447332,"Perfect Room, East Village Dream",2223278,Michael,Manhattan,East Village,40.72644,-73.97866,Private room,115,2,246,2019-06-29,4.94,1,69 +6447797,L.E.S. / Chinatown,33616159,Jada,Manhattan,Chinatown,40.71762,-73.99328,Private room,89,4,3,2015-09-29,0.06,1,0 +6449002,SoHo/Greenwich Village 1BR Apt,11179499,Jeffrey,Manhattan,Greenwich Village,40.72846,-74.00113,Entire home/apt,180,3,2,2015-05-31,0.04,1,0 +6449238,Astoria next to Beer Garden!,517772,Faye,Queens,Ditmars Steinway,40.77387,-73.91778,Entire home/apt,70,4,2,2015-09-17,0.04,1,0 +6449718,Sunny Bohemian Tasteful East Harlem,33675739,Giselle,Manhattan,East Harlem,40.79276,-73.93854,Private room,140,2,50,2019-01-01,1.01,2,0 +6450118,Sunny Spacious Room/Friendly Rates,9522524,Nancy,Brooklyn,Canarsie,40.64548,-73.8949,Private room,37,5,72,2019-05-28,1.43,5,322 +6450240,Brooklyn Cute Room + Private Bath!,4498389,Zuzi,Brooklyn,Clinton Hill,40.68384,-73.96042,Private room,70,1,4,2015-10-26,0.08,1,0 +6450252,Large Sunny Room in Williamsburg,640117,Simon,Brooklyn,Williamsburg,40.71339,-73.95546,Private room,88,4,7,2015-11-14,0.14,5,0 +6450408,3 Bedroom Apt in Williamsburg w Private Rooftop,640117,Simon,Brooklyn,Williamsburg,40.71408,-73.95708,Entire home/apt,320,4,56,2019-06-23,1.13,5,141 +6450457,Wonderful Kips Bay 1 BR + Elevator!,33680384,Jeff,Manhattan,Kips Bay,40.74077,-73.98085,Entire home/apt,200,2,0,,,1,0 +6451892,Spacious room is Park Slope,20192028,Alexander,Brooklyn,Gowanus,40.66683,-73.99308,Private room,55,1,1,2015-06-16,0.02,1,0 +6452019,Loft Studio Midtown Lux Doorman,17408676,Patrick,Manhattan,Midtown,40.74957,-73.98255,Entire home/apt,195,3,5,2018-05-19,0.10,1,0 +6452027,Spacious South Williamsburg Apartment,1471506,Ryan,Brooklyn,Williamsburg,40.70798,-73.95095,Private room,115,3,0,,,1,0 +6452138,Large Midtown East Duplex,12060709,Joshua,Manhattan,Midtown,40.75545,-73.96896,Private room,125,1,0,,,1,0 +6452188,The Brownstone 2 / Luxury 1 Bd Apt,276291,Simon,Manhattan,East Harlem,40.80755,-73.94141,Entire home/apt,155,3,116,2019-06-29,2.36,2,247 +6452251,Modern 1BR Next To Central Park,33433635,Casey,Manhattan,Harlem,40.80273,-73.95748,Entire home/apt,170,3,1,2015-07-18,0.02,1,0 +6452585,"Cozy, sunny East Village bedroom",6826449,Lucas,Manhattan,East Village,40.72672,-73.98514,Private room,115,2,0,,,1,0 +6452764,Spacious One Bedroom Apartment,33695968,R.J.,Brooklyn,Prospect-Lefferts Gardens,40.66102,-73.96224,Entire home/apt,74,2,0,,,1,0 +6452788,Huge Bright Room in Williamsburg,28000421,Luca,Brooklyn,Williamsburg,40.71532,-73.9442,Private room,100,1,0,,,2,0 +6452940,Spacious Studio in Midtown,19475826,Mark,Manhattan,Murray Hill,40.7487,-73.97358,Entire home/apt,125,2,21,2016-12-30,0.44,1,0 +6457121,Bright Nordic Serenity in Brooklyn,33721278,Margrethe,Brooklyn,Midwood,40.61839,-73.95762,Private room,70,1,0,,,1,0 +6457367,Studio Apt With Backyard,33722691,Danny And June,Brooklyn,Clinton Hill,40.69298,-73.96851,Entire home/apt,110,1,179,2019-06-15,3.56,2,118 +6458979,Beautiful Condo w/ Private Rooftop,26408268,Neil,Brooklyn,Williamsburg,40.71161,-73.95957,Entire home/apt,395,4,9,2019-05-12,0.25,1,10 +6459617,Prime Williamsburg LOFT next to Bedford L,1531125,Marek,Brooklyn,Williamsburg,40.71741,-73.95555,Entire home/apt,215,3,14,2018-09-28,0.33,1,0 +6460353,A True Gem.,11775328,Kamilah,Brooklyn,Prospect-Lefferts Gardens,40.6566,-73.96162,Entire home/apt,150,2,17,2019-05-19,0.37,1,336 +6460927,Classic Parlor Level Brownstone,33741028,Cristy,Manhattan,Gramercy,40.73235,-73.98392,Private room,295,3,22,2016-12-30,0.46,1,0 +6461245,Big room with private bathroom in Bushwick,33607986,Anisia,Brooklyn,Bushwick,40.69113,-73.91501,Private room,60,4,6,2019-06-30,0.13,1,2 +6461789,"Cozy private room in Brooklyn, NYC.",33746505,Viktoriya,Brooklyn,Gravesend,40.6075,-73.96763,Private room,55,1,135,2019-02-02,2.79,1,22 +6462046,Cozy 1BD | 15 min. to Grand Central,33736005,Sarah,Queens,Sunnyside,40.7453,-73.92311,Entire home/apt,85,1,3,2015-10-12,0.06,2,0 +6462078,Great room near CUMC!,16549175,Alana,Manhattan,Washington Heights,40.84441,-73.94218,Private room,40,6,0,,,1,0 +6462454,"Spacious, Bright, Brooklyn Beauty",3210626,Matthew,Brooklyn,Park Slope,40.6761,-73.97509,Entire home/apt,200,1,0,,,1,0 +6462513,"Sunny Private Room, & bath",33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68521,-73.93707,Private room,90,2,115,2019-05-25,2.29,2,0 +6462549,Private room,3312204,Olga,Manhattan,Upper East Side,40.77224,-73.94844,Private room,49,2,78,2018-04-16,1.66,2,182 +6463098,Sweet Home at Washington high everyone is welcome,32430692,Frank,Manhattan,Washington Heights,40.84405,-73.93796,Private room,50,1,10,2019-07-06,8.82,1,71 +6464881,Cozy Studio in Prospect Heights,18412434,Felami,Brooklyn,Prospect Heights,40.67485,-73.9632,Entire home/apt,85,7,52,2019-05-06,1.05,1,24 +6466301,Entire rowhouse+garden+deck in Park Slope/Gowanus,21176015,Jennifer,Brooklyn,Park Slope,40.67844,-73.98136,Entire home/apt,350,4,1,2019-04-24,0.39,1,14 +6466590,Room in spacious apt near the park,7455366,Sidra,Brooklyn,Flatbush,40.64876,-73.96279,Private room,38,30,2,2016-08-26,0.05,1,0 +6467264,Spacious room w/private roof deck,33782884,Kate,Brooklyn,Carroll Gardens,40.67674,-73.99805,Private room,158,2,4,2015-07-02,0.08,2,0 +6467509,Modern Rustic NYC Chic in the LES,253533,Matt,Manhattan,Chinatown,40.71507,-73.99033,Entire home/apt,245,4,27,2018-05-18,0.58,1,0 +6467744,Cozy Williamsburg Brooklyn Space,645887,Dave & Theresa,Brooklyn,Williamsburg,40.71323,-73.94699,Entire home/apt,110,3,137,2019-07-03,3.51,2,154 +6467905,Harlem Home Away From Home,33788184,Tiana,Manhattan,Harlem,40.82948,-73.94876,Private room,55,2,0,,,1,0 +6470740,Luxury Apt in Financial District,33803881,Lisa,Manhattan,Financial District,40.70516,-74.00798,Entire home/apt,275,1,0,,,1,0 +6471117,"Clean room in a cozy, peaceful home",10380050,Lisa,Manhattan,Harlem,40.82373,-73.95144,Private room,50,1,37,2016-09-15,0.74,1,0 +6472275,"Cozy,newly furnished room inAstoria",24597265,Freda,Queens,Ditmars Steinway,40.77077,-73.90903,Private room,45,6,4,2017-06-15,0.09,8,318 +6473307,Modern Mulberry St Room for 1 Female Guest,33817646,A,Manhattan,Little Italy,40.71864,-73.99753,Private room,85,2,79,2019-02-10,1.70,1,0 +6474699,1 bedroom apt in pvt 2 fam house,33825321,Debra,Brooklyn,Crown Heights,40.67255,-73.93328,Entire home/apt,150,1,24,2019-06-22,0.51,1,299 +6476242,Huge duplex apartment with garden!,33833944,Andreas Per Daniel,Manhattan,Midtown,40.76015,-73.96378,Entire home/apt,247,5,25,2019-02-23,0.51,1,0 +6476333,1BR in East Harlem apt,18693139,Eliana,Manhattan,East Harlem,40.80182,-73.94014,Private room,105,2,5,2019-01-01,0.10,1,273 +6476426,3 Bedroom Downtown NYC loft,25646971,Ella,Manhattan,Financial District,40.71095,-74.00912,Entire home/apt,400,2,8,2018-08-16,0.19,1,44 +6477272,Astoria HUGE Balcony PRIME location,6696648,Chris,Queens,Astoria,40.7666,-73.92079,Entire home/apt,155,6,4,2017-01-01,0.11,1,173 +6477558,2 Bdrm apt Near Empire State Building,17770287,Nina,Manhattan,Midtown,40.75085,-73.98266,Entire home/apt,150,30,5,2018-12-16,0.13,14,217 +6477586,A large 1-bedroom apartment,29690360,Olga,Manhattan,Inwood,40.86743,-73.92643,Entire home/apt,120,3,0,,,1,0 +6478141,Cheap & Basic Temporary Airbed Room,15743237,Champson,Queens,Elmhurst,40.734,-73.86596,Private room,69,1,14,2015-10-27,0.28,2,0 +6478214,Studio apartment in the heart of Chelsea,7898046,Zachariah,Manhattan,Chelsea,40.73992,-73.99888,Entire home/apt,199,2,71,2017-08-05,1.42,1,0 +6478459,Duplex 3BR SOHO Penthouse w.Terrace,18897568,Meriem,Manhattan,Greenwich Village,40.72764,-74.00076,Entire home/apt,499,5,3,2015-08-15,0.06,1,0 +6479559,Best location! Chelsea/West Village/Meatpacking,33774886,Ryan,Manhattan,Chelsea,40.74026,-73.99746,Entire home/apt,150,2,150,2019-06-23,2.99,1,2 +6479956,Spacious private room,13356805,Sophie,Brooklyn,Park Slope,40.66753,-73.97747,Private room,300,1,0,,,1,0 +6480490,Wburg 1 bedroom - Spacious & Sunny,1871609,Franky,Brooklyn,Williamsburg,40.72008,-73.94464,Entire home/apt,105,5,33,2019-04-28,0.66,1,8 +6480685,"Cozy, single bed room.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77209,-73.91082,Private room,45,6,25,2019-01-03,0.53,8,307 +6481924,"Brooklyn, Sundrenched & Peaceful",1862576,Gan,Brooklyn,Sunset Park,40.65168,-74.00178,Entire home/apt,105,7,3,2016-01-06,0.06,1,0 +6484983,Master bedroom + private bathroom,3499548,Costanza,Manhattan,Hell's Kitchen,40.7644,-73.99338,Private room,130,3,14,2019-05-28,0.63,1,293 +6487196,Huge&Bright Room in Greenwich Vill.,3263765,Shef,Manhattan,Greenwich Village,40.72986,-73.99468,Private room,75,2,4,2015-11-02,0.08,1,0 +6487933,BK Heights Apartment for cat lovers,14063,Meredith & Dave,Brooklyn,Brooklyn Heights,40.7007,-73.99257,Entire home/apt,150,5,15,2017-08-04,0.31,1,0 +6489828,Industrial Flex 2br duplex Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72583,-73.94177,Entire home/apt,159,30,3,2016-08-07,0.07,52,340 +6491278,Cozy home in Williamsburg!,818508,Souheil,Brooklyn,Williamsburg,40.71515,-73.94798,Entire home/apt,100,7,15,2018-12-16,0.30,1,0 +6492185,A beautiful and friendly beach area,33929905,Oleg,Brooklyn,Manhattan Beach,40.57872,-73.95251,Entire home/apt,145,4,59,2019-06-17,1.24,1,157 +6492190,Live like a real New Yorker right by Central Park,1982268,Chloe,Manhattan,Upper West Side,40.79,-73.97318,Entire home/apt,220,2,13,2018-08-25,0.26,1,0 +6492449,Spacious Duplex for Spring Retreat,6804278,Randy,Brooklyn,Bedford-Stuyvesant,40.68084,-73.93075,Entire home/apt,160,4,9,2015-10-26,0.18,1,365 +6492778,"2 Bedroom fully furnished apt,Clinton Hill BK",21575456,Myrdith,Brooklyn,Clinton Hill,40.68502,-73.96073,Entire home/apt,175,1,150,2019-07-05,2.98,1,300 +6492864,Private Artisitic Room East Village,1480124,Goldwyn,Manhattan,East Village,40.72174,-73.98418,Private room,82,3,11,2015-09-26,0.23,1,0 +6493181,"Sunny & Tall 1 BR, Central Pk,Train",26270573,Joe,Manhattan,Upper East Side,40.77025,-73.95491,Entire home/apt,200,5,95,2019-05-26,1.95,2,182 +6493288,NY City for the 4th of July!,2938550,Jon,Manhattan,Midtown,40.76571,-73.98023,Entire home/apt,300,1,0,,,1,0 +6493737,Steps to Grand Central! Large 1BDR,33941066,Kennedi,Manhattan,Murray Hill,40.74696,-73.9767,Entire home/apt,199,1,0,,,1,0 +6494256,"Spacious, Peaceful Room",33527075,Brooke,Queens,Elmhurst,40.74525,-73.87627,Private room,85,2,188,2019-07-04,3.75,2,2 +6499058,Great Upper East Side Location!,33970775,McClain,Manhattan,Upper East Side,40.764,-73.9587,Entire home/apt,135,3,11,2016-05-30,0.22,1,0 +6499870,Kid friendly 2 bedroom in Harlem,33975064,Jessica,Manhattan,Harlem,40.80571,-73.95429,Entire home/apt,150,3,2,2016-08-06,0.04,1,0 +6500246,BROWNSTONE BUILDING IN CLINTON HILLS,33977124,Donovan,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95535,Private room,65,2,49,2019-06-14,1.42,2,310 +6501082,3BR Williamsburg Duplex w/Backyard,33977623,Britt,Brooklyn,Williamsburg,40.71238,-73.96451,Entire home/apt,395,5,16,2019-07-03,0.32,1,67 +6501996,Private Terrace in the East Village,1304710,Ashley,Manhattan,East Village,40.72275,-73.98525,Entire home/apt,379,7,45,2019-06-29,0.91,1,364 +6502493,Stylish Apartment in GREAT West Village Location,14231957,Milan,Manhattan,West Village,40.73408,-74.00263,Entire home/apt,250,2,5,2016-09-20,0.14,1,0 +6502954,NICEQUIET10 MINUTES TO TIME SQUARE.,17344881,El,Manhattan,Harlem,40.80454,-73.95133,Private room,90,2,11,2019-07-01,0.22,3,282 +6504972,Gem of Bushwick,5785497,Jaamil,Brooklyn,Bushwick,40.70154,-73.92154,Private room,40,10,22,2019-05-16,0.47,1,4 +6505898,Riverside and 160th--Long Stay,34009194,Seán,Manhattan,Washington Heights,40.83771,-73.94638,Entire home/apt,200,2,1,2015-06-30,0.02,1,0 +6505927,Casa de la Luna -Bedford Stuyvesant,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.68997,-73.94205,Entire home/apt,133,2,49,2019-06-24,1.00,3,319 +6506449,"Large, charming studio on UWS",34013546,Yelena,Manhattan,Upper West Side,40.79324,-73.97489,Entire home/apt,140,1,2,2015-06-22,0.04,1,0 +6507084,Renovated 2BR apartment MIN 30 DAY,23772724,Elem,Manhattan,East Harlem,40.79726,-73.9329,Entire home/apt,100,30,12,2019-03-22,0.25,15,342 +6509338,Vintage 1B Artist Loft in Brooklyn,25441469,Kyle,Brooklyn,Prospect-Lefferts Gardens,40.6587,-73.95911,Entire home/apt,85,2,2,2018-03-04,0.09,1,0 +6509750,Art Deco NYC Upper West 2br Apt,696487,Ted,Manhattan,Upper West Side,40.7837,-73.97851,Entire home/apt,385,30,0,,,1,0 +6511675,Sunny room 30 min from Manhattan,10077626,Nelesi,Brooklyn,Flatbush,40.65208,-73.95341,Private room,50,10,0,,,1,0 +6512429,Charming Park Slope 1BR w/ Patio,34049419,Becky And John,Brooklyn,South Slope,40.6675,-73.98898,Entire home/apt,140,3,14,2016-08-18,0.28,1,0 +6512929,Large Studio on the Upper East Side,34052554,Whitney,Manhattan,Upper East Side,40.77499,-73.94875,Entire home/apt,120,1,1,2015-06-29,0.02,1,0 +6515562,STUDIO in the East Village,14979188,Esther,Manhattan,East Village,40.72781,-73.9862,Entire home/apt,110,4,3,2015-08-27,0.06,1,0 +6515686,Lovely room In Williamsburg,4224588,Olivia,Brooklyn,Williamsburg,40.71155,-73.94883,Private room,106,14,0,,,1,0 +6516344,Beautiful Spacious 1 Bed in Hip Harlem Neighborhd,25865233,Leonarda,Manhattan,Harlem,40.81698,-73.95259,Entire home/apt,115,3,71,2019-04-07,1.43,1,4 +6519873,Houseboat in the Rockaways,829717,Ambrose And Florence,Queens,Arverne,40.59428,-73.78855,Entire home/apt,120,1,26,2019-06-28,0.53,1,14 +6520350,The Kook House - Rockaways BEST Summer House!!,4089529,Michael,Queens,Arverne,40.59399,-73.79693,Entire home/apt,300,1,67,2019-07-07,1.34,1,344 +6522849,Home Sweet Home :),26439972,Leonit,Brooklyn,Sheepshead Bay,40.60078,-73.96527,Private room,59,1,5,2019-01-03,0.13,1,319 +6522938,COZY HOUSE 10 MINS FROM LA GUARDIA!,34113764,Nick,Queens,Ditmars Steinway,40.77086,-73.89578,Entire home/apt,140,3,2,2019-06-15,1.33,2,363 +6523409,Large BR w/Private Ent & Living Rm!,2124716,Jules,Brooklyn,Park Slope,40.66923,-73.98134,Private room,99,1,100,2017-09-18,2.11,1,1 +6524806,Great room for couples on a budget!,34124276,Nicole,Queens,Long Island City,40.75235,-73.93714,Private room,52,1,4,2016-07-28,0.08,1,0 +6525622,Garden Apt. East Village NY,33733944,John,Manhattan,East Village,40.72152,-73.97761,Entire home/apt,125,1,4,2017-09-04,0.09,1,0 +6525765,Room for rent in corona queens,34129674,Angelo,Queens,Corona,40.74826,-73.86755,Private room,150,2,0,,,1,363 +6528040,NYC ROOM GORGEOUS LIGHT! RIVER VIEW,25168888,Svjetlana,Manhattan,Harlem,40.82119,-73.95773,Private room,65,4,37,2019-06-15,0.76,3,196 +6528046,Immaculate Gramercy One-Bedroom,34142649,Joseph,Manhattan,Gramercy,40.73742,-73.98052,Entire home/apt,249,2,0,,,1,0 +6528060,Furnished Unit (115 and Amsterdam),34142729,Connor R,Manhattan,Morningside Heights,40.80625,-73.96176,Private room,84,1,0,,,1,0 +6528103,Spacious bedroom in Astoria,34143084,Sam,Queens,Astoria,40.77238,-73.92446,Private room,53,3,2,2018-12-29,0.22,1,0 +6534409,Unbelievable NYC Apt Avail Nov!,34174768,Dana,Manhattan,Midtown,40.75055,-73.98679,Entire home/apt,340,2,19,2015-10-25,0.38,1,0 +6536719,Perfect Room in Brooklyn,34186180,Grant,Brooklyn,Bushwick,40.70252,-73.9279,Private room,80,7,2,2015-07-25,0.04,1,0 +6536744,Spacious One-Bedroom near Prospect Park,8479809,A,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96241,Entire home/apt,75,5,0,,,1,0 +6538963,Art filled Brooklyn Hideaway with private bathroom,34197591,Daniela,Brooklyn,Bedford-Stuyvesant,40.6832,-73.95455,Private room,80,3,131,2019-07-06,2.64,1,140 +6539114,Private Room in Williamsburg Apt,111837,Emeka,Brooklyn,Williamsburg,40.71145,-73.95302,Private room,78,2,1,2015-06-16,0.02,1,0 +6539778,Large 1BR in heart of Williamsburg!,34201688,Samantha,Brooklyn,Williamsburg,40.71834,-73.95867,Entire home/apt,149,30,35,2019-05-17,0.83,1,0 +6540907,Sunny Bedroom near major stations,31298029,Cynthia,Brooklyn,Fort Greene,40.68626,-73.97138,Private room,80,2,124,2019-06-15,2.50,1,251 +6541214,Huge one bedroom apartment,7155183,Stephanie,Brooklyn,Crown Heights,40.67191,-73.95265,Entire home/apt,115,5,1,2015-08-23,0.02,1,0 +6541532,Amazing UWS /Central Park West Location,33975302,Kirsten,Manhattan,Upper West Side,40.79909,-73.9602,Private room,90,1,185,2019-07-07,3.71,1,60 +6542603,PRIVATE one Bedroom in Williamsburg,3057531,Jeffrey,Brooklyn,Williamsburg,40.71839,-73.94329,Entire home/apt,175,3,10,2019-01-05,0.20,1,0 +6542818,Luxury Apt on Central Park South,23116237,Kate,Manhattan,Midtown,40.76622,-73.97783,Entire home/apt,350,1,0,,,1,364 +6542929,Clean & Cozy East Village Home Steps From Park,6789992,L,Manhattan,East Village,40.72496,-73.98289,Entire home/apt,194,2,36,2016-11-16,0.74,1,0 +6543312,Lovely 1 BR duplex in prime Chelsea,18342421,Patty,Manhattan,Chelsea,40.73963,-73.99898,Entire home/apt,175,4,5,2017-01-05,0.10,1,0 +6543581,Dreamy Luxury Penthouse w/ Terrace,2436695,Jerome,Manhattan,Chelsea,40.74218,-73.99963,Entire home/apt,350,14,0,,,1,0 +6543852,Sunny Apt. in Historic Harlem Bldg.,2482106,Jennifer,Manhattan,Harlem,40.82553,-73.93875,Private room,63,1,6,2016-05-18,0.13,1,0 +6544347,Spend Summer in Park Slope,2232455,Zach,Brooklyn,Park Slope,40.67289,-73.97129,Entire home/apt,150,7,4,2018-08-06,0.08,1,94 +6544899,Beautiful Greenwich Village Apartment,34233009,Carol,Manhattan,West Village,40.73638,-74.00393,Entire home/apt,180,28,0,,,1,0 +6545310,"House of Music and Art, Small Happy ROom",3992566,Clay,Brooklyn,Bushwick,40.69918,-73.92886,Private room,64,2,32,2019-06-16,0.64,3,14 +6545519,Amazing Studio-Loft w/Outdoor Space,3174520,Peter,Manhattan,Greenwich Village,40.73399,-73.99305,Entire home/apt,185,2,52,2019-01-01,1.04,1,35 +6546016,Harlem luxury w/ great amenities!,10771238,Justin,Manhattan,Harlem,40.82589,-73.95094,Private room,80,2,126,2019-06-19,2.65,3,173 +6550596,Studio-Heart of Harlem****,34262042,Jodil H.,Manhattan,Harlem,40.81781,-73.9347,Entire home/apt,75,2,15,2018-12-19,0.32,1,0 +6553257,Royal Oxford,34272645,Jean,Staten Island,Tompkinsville,40.63489,-74.08592,Entire home/apt,105,3,69,2019-06-16,1.49,1,343 +6553559,"City view, Long Island City 1 BR",33945670,Eli,Queens,Long Island City,40.74876,-73.94507,Entire home/apt,130,1,137,2019-06-13,2.82,2,197 +6553874,"PERFECT 1 BR, Elevator, BEST Area!!",34276823,Mike,Manhattan,West Village,40.73626,-74.00181,Entire home/apt,264,2,5,2017-01-01,0.12,1,0 +6554833,Fun & Trendy Kid Friendly Family Home,33125778,Kt,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95466,Entire home/apt,215,3,5,2017-07-23,0.10,1,0 +6554879,Adorable room on the Upper East Side!,13262455,Bridget,Manhattan,Upper East Side,40.77323,-73.95567,Private room,85,20,2,2016-09-27,0.06,3,128 +6555262,Comfortable and Spacious Bedroom,14098887,Fareed,Queens,Ridgewood,40.70503,-73.91433,Private room,35,2,0,,,1,0 +6555427,"Inviting,sunny grdn 15 min to Manhattan",24597265,Freda,Queens,Ditmars Steinway,40.77209,-73.91096,Private room,50,6,11,2019-05-31,0.24,8,358 +6555586,A 2BR Oasis in Red Hook,34285520,Penny,Brooklyn,Red Hook,40.67811,-74.00606,Entire home/apt,145,7,2,2015-09-01,0.04,1,0 +6555997,"Sunny, Clean & Spacious in the LES",11513446,Erica,Manhattan,Lower East Side,40.71908,-73.99446,Entire home/apt,150,3,2,2016-01-01,0.04,1,0 +6556848,Bright and Airy Brooklyn Abode,9119676,Angeline,Brooklyn,Prospect Heights,40.6815,-73.97309,Entire home/apt,175,2,10,2015-12-28,0.20,1,0 +6557289,1 Room in a 2 Bedroom Available,7074531,Jonathan,Bronx,Longwood,40.82639,-73.90363,Private room,680,1,0,,,1,0 +6558125,Amazing apartment with great views,28305098,Bishal,Manhattan,Chelsea,40.74574,-73.99226,Entire home/apt,900,3,13,2016-01-20,0.26,1,24 +6558729,"Artist Loft In Bushwick, Brooklyn",12764940,Robert,Brooklyn,Williamsburg,40.70608,-73.93223,Private room,95,1,0,,,1,0 +6559453,Private Rm–Industrial Loft–Bushwick,34306160,Dan,Brooklyn,Williamsburg,40.70306,-73.93629,Private room,60,4,87,2019-06-27,1.75,1,96 +6559615,Brooklyn Zen Gem Spacious Bedroom,31675601,Sophie,Brooklyn,Bay Ridge,40.62487,-74.02949,Private room,70,30,54,2019-06-30,1.17,4,288 +6559926,"Sunny 1Bdr + 2 Big Sofabed, Clean!",26270573,Joe,Manhattan,Upper East Side,40.77205,-73.95339,Entire home/apt,240,5,82,2019-06-08,1.87,2,158 +6559985,big bright Bushwick loft 2 blocks from Jefferson L,3531344,Eleanor & Greg,Brooklyn,Bushwick,40.70755,-73.92277,Entire home/apt,150,3,16,2018-09-02,0.33,1,0 +6560055,Lovely uptown furnished 1 bedroom,34310803,Michel,Manhattan,Washington Heights,40.85509,-73.93744,Entire home/apt,150,30,0,,,1,0 +6560165,Large Upper West Side 1 bedroom,23311838,Adrianna,Manhattan,Upper West Side,40.7791,-73.98565,Entire home/apt,175,1,4,2016-06-11,0.08,1,0 +6560257,Luxury 1-Bedroom King Suite with Central Park View,836168,Henry,Manhattan,Upper West Side,40.79222,-73.96445,Entire home/apt,1000,30,27,2017-05-04,0.57,11,364 +6560459,"Chill, Sunny Room Bed-Stuy Bushwick",34313950,Bee,Brooklyn,Bedford-Stuyvesant,40.68584,-73.92294,Private room,48,1,0,,,1,0 +6561328,Artist Loft in Brooklyn,24860438,Stephanie,Brooklyn,Williamsburg,40.70313,-73.93566,Private room,42,8,1,2015-09-08,0.02,1,0 +6561509,"airy, earthy room in artistic apt",34322623,Elizabeth,Manhattan,Washington Heights,40.85133,-73.93844,Private room,80,2,18,2019-05-31,0.36,1,326 +6567114,Funky Studio Apartment,34345802,Gloria,Brooklyn,Crown Heights,40.67569,-73.95563,Entire home/apt,150,5,15,2018-06-12,0.34,1,342 +6568523,2 Bdrm in Luxury Condo on Hudson,33459378,Karen,Manhattan,Battery Park City,40.7101,-74.01721,Entire home/apt,195,7,2,2015-08-16,0.04,1,0 +6569350,Bright Brooklyn Bed-Stuy Apartment,22261783,Gregory,Brooklyn,Bedford-Stuyvesant,40.68258,-73.93893,Entire home/apt,145,3,130,2019-07-06,2.63,2,105 +6570517,Comfy Room Close the Subway ABCD&1!,4534649,L & A,Manhattan,Harlem,40.8179,-73.9539,Private room,75,2,52,2017-03-08,1.04,3,0 +6570718,Spacious Railroad in LIC/Astoria,9630921,Vasilios,Queens,Long Island City,40.75628,-73.92072,Entire home/apt,85,7,0,,,1,0 +6571039,WoodyAllen FilmSet-Like Digs (Apt),1808103,Maria,Brooklyn,Williamsburg,40.70723,-73.95515,Entire home/apt,90,2,85,2019-06-09,1.99,2,4 +6571441,Brooklyn Brownstone Master Bedroom,31458100,Drew,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95307,Private room,53,2,11,2016-04-11,0.23,1,0 +6571890,1 bedroom-Manhattans East Village,34372907,Meagan,Manhattan,East Village,40.72872,-73.98639,Entire home/apt,155,2,36,2019-01-02,0.80,1,164 +6572344,WoodyAllen FilmSet-Like Digs (Room),1808103,Maria,Brooklyn,Williamsburg,40.70664,-73.95399,Private room,49,3,13,2017-07-24,0.26,2,181 +6572570,Charming Private Entrance — 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.677,-73.91677,Private room,78,3,108,2019-05-30,2.17,6,158 +6573055,"Charming, Quiet, Light-Filled Room",31234460,Arielle,Manhattan,East Village,40.72854,-73.98118,Private room,100,1,0,,,1,0 +6574353,Tranquil Garden Level Apartment,34386255,Nicholas,Brooklyn,Bedford-Stuyvesant,40.67922,-73.95383,Private room,85,1,0,,,1,0 +6574537,Bright & Spacious,34387513,Michael,Queens,Long Island City,40.7583,-73.9315,Private room,225,1,0,,,1,365 +6574595,Two Adjoined Rooms Williamsburg,909577,Jaclyn,Brooklyn,Williamsburg,40.71329,-73.96232,Private room,199,1,2,2018-01-04,0.06,3,346 +6575471,NYC 2 Bedroom,33247865,Anthony,Manhattan,Greenwich Village,40.72911,-73.99915,Entire home/apt,350,2,34,2017-01-01,0.74,1,0 +6576327,"manhattan uptown 2/b, excellent for big family",33680030,Ruby,Manhattan,Harlem,40.82033,-73.95632,Entire home/apt,120,1,3,2015-07-28,0.06,1,0 +6576336,Large Private Studio Newly Renevated,34397256,Nanda,Queens,Ozone Park,40.6904,-73.83727,Private room,70,2,114,2019-06-28,2.47,1,310 +6581248,Upper West Side Spacious Home,34426902,Susan,Manhattan,Upper West Side,40.8017,-73.96991,Entire home/apt,250,15,0,,,1,39 +6582117,Cozy Private Bdrm/Bthrm in Midtown,23607132,Rebecca,Manhattan,Midtown,40.76539,-73.97897,Private room,180,2,62,2019-05-25,1.34,1,261 +6582467,Entire 1 Bedroom Apt,2566034,Megan,Brooklyn,Park Slope,40.67326,-73.98077,Entire home/apt,145,7,1,2015-07-01,0.02,1,8 +6584448,Perfect with or w/out kids!,3450556,Ahna,Manhattan,Inwood,40.86719,-73.92679,Entire home/apt,130,2,0,,,1,0 +6585028,ROOFTOP TERRACE ROOM @ ELEGANT HOME NEAR JFK,19866189,Natasha,Queens,Arverne,40.58977,-73.79498,Private room,149,1,56,2019-07-06,1.14,5,361 +6585852,1 bedroom close to Central Park,1263574,Lauren,Manhattan,Upper West Side,40.80133,-73.96574,Private room,60,4,5,2015-07-22,0.10,1,0 +6586663,Studio in the LES,34453577,Chris,Manhattan,Lower East Side,40.72101,-73.98905,Entire home/apt,140,4,119,2019-05-27,2.43,1,29 +6588947,Sunny Prospect Park 2 Bedroom,19233353,Kallie,Brooklyn,Prospect-Lefferts Gardens,40.65599,-73.95746,Private room,60,3,0,,,2,0 +6589412,Beautiful Park Slope Brownstone,34748949,Julienne,Brooklyn,Park Slope,40.67533,-73.9793,Entire home/apt,350,7,0,,,1,0 +6590549,Luxury 1bdrm w/ private terrace,6495511,Kari,Brooklyn,Williamsburg,40.71214,-73.95111,Entire home/apt,175,3,5,2016-08-15,0.10,1,0 +6590569,Private bedroom in Chelsea,20113500,Clement,Manhattan,Chelsea,40.74465,-73.9955,Private room,110,3,2,2015-09-06,0.04,1,0 +6590570,Harlem Treasure,9777215,Theresa,Manhattan,Harlem,40.81346,-73.94458,Entire home/apt,177,3,122,2019-06-20,2.49,3,199 +6594861,Park Slope Brownstone Duplex (unfurnished),34501360,Eric,Brooklyn,Park Slope,40.6746,-73.97901,Entire home/apt,275,30,12,2017-09-03,0.25,1,70 +6595943,Cozy 1 bedroom in a quiet neighborh,34113764,Nick,Queens,Ditmars Steinway,40.76962,-73.89604,Entire home/apt,99,1,49,2018-09-03,0.99,2,0 +6596747,Bedroom in FABULOUS W. Village Apt!,4654046,Kate,Manhattan,West Village,40.73086,-74.00507,Private room,105,2,111,2019-07-04,2.31,1,92 +6596927,"Lambe’s Vacation Rentals- Maspeth, Queens",8934751,Mike,Queens,Maspeth,40.72721,-73.89346,Entire home/apt,200,4,1,2019-05-23,0.64,2,129 +6597854,Charming Spacious Harlem Share,5280006,Jennifer,Manhattan,Harlem,40.82606,-73.95075,Private room,58,3,27,2016-12-10,0.54,1,0 +6598334,Upper West Side Manhattan,13106591,Valentino,Manhattan,Upper West Side,40.80157,-73.96635,Private room,100,9,3,2016-01-02,0.06,1,0 +6598376,Spacious Room in Adorable Apartment,8838164,Mia,Brooklyn,Bedford-Stuyvesant,40.69224,-73.95865,Private room,45,14,0,,,1,0 +6598624,"Private Bed, Bath & Patio in prime Williamsburg !",17382149,Rosie,Brooklyn,Williamsburg,40.71684,-73.95907,Private room,110,1,48,2018-12-27,2.17,1,0 +6599302,"An ENTIRE, Lovely NYC Apartment",15386409,Mateo,Manhattan,Harlem,40.82879,-73.93821,Entire home/apt,80,3,3,2017-08-15,0.06,1,0 +6599689,Beautiful room upper manhttn.,34475475,Richard,Manhattan,Washington Heights,40.85131,-73.94059,Private room,75,1,0,,,1,0 +6599950,studio : chelsea/west villlage,1651102,Lauren,Manhattan,West Village,40.73752,-74.00113,Entire home/apt,700,1,0,,,1,0 +6601120,Entire place in Williamsburg. Rustic Den.,34534668,Gohe,Brooklyn,Williamsburg,40.71297,-73.96409,Entire home/apt,165,2,5,2018-04-29,0.27,1,0 +6601194,Modern prime location in Williamsburg,7155363,Lauren,Brooklyn,Williamsburg,40.71198,-73.96114,Private room,80,2,12,2019-05-19,0.38,1,356 +6601284,Gorgeous Garden Apartment in Park Slope,1021060,Marc,Brooklyn,South Slope,40.66564,-73.98465,Entire home/apt,145,3,133,2019-07-07,3.69,1,277 +6601606,Large Lower East Side Room with a View,6864230,Danica,Manhattan,Lower East Side,40.71343,-73.98826,Private room,125,1,0,,,1,0 +6601683,Sunny lrg 1 BR in Chilled Bushwick,5226684,Kate,Brooklyn,Bushwick,40.70338,-73.91374,Private room,45,1,2,2015-08-07,0.04,1,0 +6603534,Private Small Grey Room,9922972,Memo & Iso,Brooklyn,Bedford-Stuyvesant,40.68517,-73.93473,Private room,30,1,107,2019-06-15,2.18,5,345 +6603756,Amazing Bright bedroom in Harlem,22222260,Simone,Manhattan,Harlem,40.81894,-73.93871,Private room,81,4,20,2019-04-26,0.41,2,334 +6607833,Amazing & Safe Brooklyn Location,570850,Yovel,Brooklyn,Midwood,40.61814,-73.97078,Entire home/apt,49,4,5,2019-07-04,0.20,1,179 +6608246,Duplex Suite Sleeps 8,26415767,Christopher,Brooklyn,Sunset Park,40.6655,-73.99501,Entire home/apt,225,3,52,2019-06-25,1.12,1,297 +6608666,Lively Rm w/Private Entrance & Bath,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92827,Private room,70,2,131,2019-06-24,2.63,3,255 +6609293,Spacious brownstone apt in Park Sl,26228337,Jon,Brooklyn,Park Slope,40.6801,-73.97918,Entire home/apt,120,7,20,2018-05-18,0.43,1,0 +6609871,COMFORTABLE NYC RETREAT,6375533,LaNola,Manhattan,East Harlem,40.78828,-73.9484,Entire home/apt,175,1,70,2019-06-27,1.62,2,123 +6610244,Sunny Jewel In Historic Harlem,7701992,Grace,Manhattan,Harlem,40.82536,-73.94383,Entire home/apt,130,1,0,,,1,0 +6610516,Bright and Sunny 2 Bedroom,5753744,Rindon,Brooklyn,Prospect-Lefferts Gardens,40.66058,-73.95825,Entire home/apt,130,4,2,2015-08-21,0.04,2,0 +6610629,Art Gallery in Harlem,23152983,Nicholas,Manhattan,Washington Heights,40.83206,-73.94261,Entire home/apt,150,4,11,2019-07-03,0.24,1,319 +6611547,Private Park Slope Brooklyn Hideaway,34595916,Andrew,Brooklyn,South Slope,40.66934,-73.98793,Entire home/apt,95,5,161,2019-07-01,3.22,3,207 +6611557,GC Bushwick First Floor 4 Bedroom,21823,Greg,Brooklyn,Bushwick,40.68781,-73.91421,Entire home/apt,300,3,18,2019-06-05,0.45,3,217 +6611592,Modern luxury apartment - easy subway to Manhattan,4124666,Rafik,Queens,Ditmars Steinway,40.7724,-73.90474,Entire home/apt,180,1,145,2019-07-04,3.55,1,33 +6611652,Garden Commons Bushwick 5 Bedroom,21823,Greg,Brooklyn,Bushwick,40.68779,-73.91407,Entire home/apt,375,3,46,2019-06-20,1.07,3,217 +6611774,Bright Bedroom in Park Slope,3183567,Ale,Brooklyn,Park Slope,40.6777,-73.98106,Private room,75,2,0,,,1,0 +6612664,Great BedRoom in Hell's Kitchen,1797304,Marg,Manhattan,Hell's Kitchen,40.7617,-73.99244,Private room,75,5,53,2019-06-26,1.34,1,239 +6612737,Furnished Bedroom in Murray Hill,28181993,Anshul,Manhattan,Kips Bay,40.73909,-73.9788,Private room,70,15,0,,,1,0 +6612744,Sunny&Stylish 1BR★Terrace★Doorman,24261066,Lisa,Manhattan,Lower East Side,40.71966,-73.99236,Entire home/apt,300,2,5,2016-01-03,0.10,1,0 +6612941,1 Bedroom Apt. Sunnyside Queens!,33976673,Jake,Queens,Sunnyside,40.74137,-73.9234,Private room,60,7,11,2015-09-29,0.22,1,0 +6613106,Private Room/Single Bed,10014644,Myrta,Brooklyn,Park Slope,40.66775,-73.98151,Private room,60,3,18,2019-05-24,0.36,2,0 +6613154,Duplex Bedroom w/Private Rooftop,33782884,Kate,Brooklyn,Gowanus,40.67711,-73.99577,Private room,158,2,3,2015-07-06,0.06,2,0 +6613354,CHARMING ONE BEDROOM APT IN LES/CHINATOWN,34608427,Aixa,Manhattan,Lower East Side,40.71855,-73.9895,Entire home/apt,184,4,11,2019-06-08,1.20,1,273 +6614604,"Nice, cozy double size bedroom",6492234,Martin,Manhattan,Washington Heights,40.83721,-73.93894,Private room,50,4,0,,,1,0 +6619100,Cozy studio in the heart of Chelsea,34642925,Anastasia,Manhattan,Chelsea,40.74327,-73.99807,Entire home/apt,230,2,1,2015-06-07,0.02,1,0 +6619187,Stylish NYC Art Loft,34643568,Dave,Manhattan,East Harlem,40.79229,-73.93954,Private room,95,3,24,2019-07-02,0.49,6,334 +6619589,PRIVATE MODERN ENTIRE APT FOR YOU,4265630,Nowme And Ra,Brooklyn,Flatbush,40.64683,-73.95429,Entire home/apt,110,3,58,2019-06-24,1.18,2,205 +6619797,Sunny Apartment near Columbia & beautiful parks!,4769812,Georgina,Manhattan,Harlem,40.81287,-73.95186,Entire home/apt,120,10,7,2019-03-29,0.19,1,8 +6619984,Charming Home in Brooklyn Townhouse,263882,Eva Maria,Brooklyn,Bedford-Stuyvesant,40.68023,-73.91047,Entire home/apt,189,2,92,2019-06-30,1.95,2,239 +6620407,Cozy one bedroom in bushwick!,31880074,Rachel,Brooklyn,Bedford-Stuyvesant,40.69666,-73.93548,Entire home/apt,98,10,7,2016-01-06,0.14,1,0 +6620911,Gramercy Studio w/ Private Garden,2128805,Lola,Manhattan,Gramercy,40.73391,-73.98552,Entire home/apt,150,3,12,2019-06-10,0.24,1,38 +6622389,Bright and Spacious in Trendy Area,5025809,Sarah,Brooklyn,Crown Heights,40.6737,-73.95913,Entire home/apt,100,1,1,2015-07-06,0.02,1,0 +6625406,1 Bedroom in Williamsburg!,23527094,Ginevra,Brooklyn,Williamsburg,40.71187,-73.96342,Private room,85,1,11,2019-01-23,0.33,1,154 +6626581,Cute East Village 2BR,27077862,Alex,Manhattan,East Village,40.72699,-73.98694,Entire home/apt,200,1,0,,,1,0 +6626894,Beautiful 2BR on Riverside Park,13500220,Jim,Manhattan,Upper West Side,40.78283,-73.98396,Entire home/apt,450,3,1,2015-08-02,0.02,1,0 +6627016,Spacious 1BR in Prime Williamsburg,263614,Justin,Brooklyn,Williamsburg,40.71932,-73.95446,Entire home/apt,250,3,1,2015-06-25,0.02,1,0 +6627254,Private room - Perfect location!,10899109,Dave & Nat,Brooklyn,South Slope,40.66526,-73.98449,Private room,100,2,1,2015-06-26,0.02,1,0 +6627553,MODERN LOFT 3 STOPS TO MANHATTAN!!,16941743,Ernesto,Queens,Astoria,40.76482,-73.92514,Private room,40,2,36,2017-09-16,0.73,1,0 +6627650,Private Bedroom in Spanish Harlem,34690679,Kay,Manhattan,East Harlem,40.79601,-73.93454,Private room,50,2,0,,,1,0 +6627668,Central Park North - 15min de T SQ,27462282,Quentin,Manhattan,Harlem,40.80133,-73.95251,Private room,80,1,0,,,1,0 +6627752,"Cosy Apt. in Brooklyn, near subway",25599307,Julia,Brooklyn,Flatbush,40.63915,-73.95451,Entire home/apt,90,6,33,2017-05-31,0.69,1,0 +6627931,Spacious 2 Bedroom + Backyard in Fort Greene BK,33722691,Danny And June,Brooklyn,Clinton Hill,40.69374,-73.96727,Entire home/apt,150,4,2,2019-04-24,0.06,2,22 +6628117,Cozy room in heart of Williamsburg,24839107,Brittany,Brooklyn,Williamsburg,40.71681,-73.96141,Private room,80,1,7,2015-11-02,0.14,1,0 +6628193,Private Bedroom near Central Park,3274213,Levi & Kaz,Manhattan,Upper West Side,40.78602,-73.97729,Private room,89,2,133,2019-07-01,2.80,1,155 +6628493,Large Williamsburg (Brooklyn) Room,20587549,Nick,Brooklyn,Williamsburg,40.70784,-73.94698,Private room,90,2,15,2019-06-30,0.41,1,188 +6631351,Beautiful Brooklyn brownstone with lots of light,34712280,Helen,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95832,Entire home/apt,91,2,16,2019-07-07,1.70,1,10 +6633613,Cozy Room in a Luxury Apartment,22058409,Abigail,Manhattan,Financial District,40.7061,-74.0157,Private room,85,1,2,2016-11-26,0.05,2,0 +6635179,Home in Lower East Side,3173147,Andrea,Manhattan,Lower East Side,40.71968,-73.98708,Entire home/apt,250,3,68,2019-06-08,1.36,2,166 +6635985,New Bedroom for ONE (1) Professional.,34720872,Carlos,Queens,Long Island City,40.75529,-73.92961,Private room,50,1,4,2019-06-15,1.62,1,107 +6636389,perfect west village location!,27439632,Brian,Manhattan,West Village,40.73204,-74.00399,Entire home/apt,160,4,0,,,1,0 +6636906,Romain's home,3858150,Romain,Manhattan,Morningside Heights,40.81165,-73.95639,Private room,60,9,7,2017-08-15,0.15,1,0 +6636968,1 BR and a sleeper sofa,34738375,Robert,Brooklyn,Prospect-Lefferts Gardens,40.66205,-73.96301,Entire home/apt,150,5,12,2018-01-04,0.34,1,0 +6636993,Room available in Williamsburg,20123174,Brian,Brooklyn,Williamsburg,40.71178,-73.94617,Private room,90,1,0,,,1,0 +6637311,Spacious Contemporary NoMad Loft,34740215,Previn,Manhattan,Midtown,40.74801,-73.98817,Entire home/apt,225,3,11,2016-05-16,0.23,1,0 +6638042,City convenience--country calm,5609081,Jonathan,Queens,Richmond Hill,40.70054,-73.83781,Entire home/apt,290,4,13,2018-11-20,0.28,1,277 +6638377,Lightfilled studio in Brooklyn,31889552,Chris,Brooklyn,Fort Greene,40.68711,-73.9747,Entire home/apt,95,3,1,2015-07-27,0.02,1,0 +6638446,"Modern, Spacious 2BR Apartment",23032146,Florian,Manhattan,Washington Heights,40.84239,-73.93574,Entire home/apt,139,4,3,2016-09-27,0.07,1,0 +6638539,Spacious family House in Old Neighborhood,562114,Sveva,Brooklyn,Bay Ridge,40.63314,-74.02896,Entire home/apt,295,5,4,2019-04-27,0.13,1,19 +6639120,King Bed in Trendy Lower East Side,240740,Ariel,Manhattan,Lower East Side,40.7192,-73.99139,Private room,140,1,221,2019-06-18,4.59,1,187 +6642187,Sunny & Modern 1 Bedroom with Amazing view of NY,2536417,Anna,Manhattan,Upper East Side,40.76555,-73.95791,Entire home/apt,399,3,38,2019-07-01,0.77,1,311 +6643716,Private room in Nolita PH,2329581,Michael,Manhattan,Nolita,40.72299,-73.99344,Private room,100,7,11,2017-10-24,0.22,2,0 +6644449,Sunny 1BR Private Room in Williamsburg,15537676,Alex,Brooklyn,Williamsburg,40.71082,-73.94276,Private room,80,10,1,2015-10-11,0.02,1,0 +6644669,1 bedroom Upper West Side apartment,34779392,Joseph,Manhattan,Upper West Side,40.77689,-73.98103,Entire home/apt,135,5,8,2019-05-18,0.16,1,0 +6645224,6 bedroom apt on Union Square,34782697,Alexander,Manhattan,Chelsea,40.73783,-73.99383,Private room,100,21,0,,,1,0 +6645263,Brooklyn at its finest,351650,Nick,Brooklyn,Williamsburg,40.71084,-73.96557,Entire home/apt,175,3,2,2016-07-06,0.05,1,0 +6645963,Sunny private room in Spanish Harlem art house,24260658,Kristy,Manhattan,East Harlem,40.79478,-73.93416,Private room,70,2,32,2019-06-24,0.64,5,63 +6646009,Loft Space in South Williamsburg!,4580943,Brian,Brooklyn,Williamsburg,40.70569,-73.95329,Private room,50,1,1,2015-06-12,0.02,1,0 +6646365,Lovely Brooklyn Room With Balcony,23582893,Laramie,Brooklyn,Bushwick,40.69038,-73.91462,Private room,52,18,24,2019-05-08,0.49,8,76 +6647114,COZY CORNER GREENWICH VILLAGE,3579116,Kristin,Manhattan,West Village,40.73267,-74.00379,Private room,140,3,64,2019-06-20,1.29,2,5 +6649555,Amazing 1BR - heart of West Village,20700509,Gunnar,Manhattan,West Village,40.73592,-74.00492,Entire home/apt,169,4,11,2016-03-19,0.22,1,0 +6650704,"Beautiful, Comfortable Park Slope Home",18081869,Francesca,Brooklyn,South Slope,40.66561,-73.98843,Entire home/apt,173,3,1,2015-07-27,0.02,1,0 +6651156,Brooklyn Heights Dream Apt w/ Private Deck & Views,34813492,Susan,Brooklyn,Boerum Hill,40.68932,-73.99082,Entire home/apt,169,2,49,2019-06-26,1.00,1,4 +6652170,Bunk Bed room share in Bklyn near Brooklyn College,17927814,Malisa,Brooklyn,Flatlands,40.62787,-73.94276,Shared room,27,5,0,,,1,0 +6652353,Bienvenue à NY - 2BDM with a view,7106617,Nacer,Manhattan,Upper West Side,40.79828,-73.97231,Entire home/apt,150,5,6,2016-08-30,0.12,1,0 +6652755,The Art Loft! Spacious and Bright!,16718896,Kim,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96029,Entire home/apt,145,5,25,2018-01-02,0.51,1,0 +6653095,Come to Know New York III,25812962,Claudio & Rose,Manhattan,East Harlem,40.79052,-73.94364,Private room,70,1,33,2019-05-11,1.28,3,313 +6654081,4-BR Townhouse on Quiet Brooklyn Block,2979971,Anna,Brooklyn,Prospect-Lefferts Gardens,40.66016,-73.95382,Entire home/apt,205,3,1,2019-01-06,0.16,1,0 +6654202,Great One bedroom in Midtown East,34824417,Kate,Manhattan,Murray Hill,40.74522,-73.97505,Entire home/apt,145,5,18,2019-06-01,0.38,1,179 +6654304,"Charming, Cozy & spacious bedroom in Brooklyn",34828488,Pauline,Brooklyn,Canarsie,40.64372,-73.90361,Private room,88,2,12,2019-06-28,0.26,1,180 +6654323,Sunny Deck and Private Garden,16437254,Benjamin,Brooklyn,Fort Greene,40.6882,-73.97719,Entire home/apt,179,30,0,,,21,0 +6654984,Beautiful apartment in trendy Brooklyn,5417600,Elvira,Brooklyn,Park Slope,40.67376,-73.98397,Entire home/apt,200,365,4,2018-06-16,0.14,1,173 +6655786,"Sunny, modern 1 bedroom condo",7088466,Carly,Brooklyn,Prospect Heights,40.67904,-73.967,Entire home/apt,165,2,13,2016-07-04,0.27,1,0 +6656441,Beautiful Room in Clinton Hill,1418498,Meryl,Brooklyn,Clinton Hill,40.68402,-73.96637,Private room,89,4,0,,,1,0 +6656567,Modern Room in Huge Apartament in Manhattan,33622924,Besinfe,Manhattan,Harlem,40.83155,-73.94804,Private room,85,1,52,2019-06-19,1.39,4,355 +6657134,"Spacious 2BR/2BA, Great Location!",1131394,Jeremy,Manhattan,Upper East Side,40.78071,-73.95309,Entire home/apt,240,5,4,2019-02-23,0.09,1,0 +6657454,Spacious & sunny in Clinton Hill :),6913285,Marc,Brooklyn,Bedford-Stuyvesant,40.69154,-73.95544,Entire home/apt,95,5,4,2016-06-03,0.08,1,0 +6658870,"Modern, Cute Room in The Heart of Williamsburg",30858029,Becca,Brooklyn,Williamsburg,40.71018,-73.94988,Private room,99,1,0,,,1,0 +6659165,Room available in BUSHWICK!,12720552,Julie,Brooklyn,Bushwick,40.70168,-73.92845,Private room,70,1,20,2019-05-27,0.42,5,332 +6659371,Cute Mid-Century Bushwick sleeps 3!,192349,Peter,Brooklyn,Bushwick,40.70323,-73.92836,Entire home/apt,99,1,3,2015-09-09,0.06,1,0 +6660046,Bespoke Williamsburg Row House,1761447,Marc,Brooklyn,Williamsburg,40.7123,-73.95401,Entire home/apt,177,3,78,2019-06-03,1.68,2,177 +6660117,Cosi 2 Beds East Village- 2 months Minimum,2196224,Sally,Manhattan,East Village,40.73082,-73.98182,Entire home/apt,120,30,0,,,4,213 +6660330,Charming West Village 2.5bd Apt,1586060,Tom,Manhattan,West Village,40.73608,-74.00039,Entire home/apt,300,1,7,2016-03-26,0.14,1,0 +6660373,Come to Know New York II,25812962,Claudio & Rose,Manhattan,East Harlem,40.79131,-73.94344,Private room,40,1,62,2019-07-05,1.35,3,257 +6660511,Highly Desired LOCATION East V. NYC,34861715,Diana,Manhattan,East Village,40.72639,-73.98875,Entire home/apt,280,2,29,2019-01-01,0.59,1,0 +6660518,NY Queens Penthouse Share = 1BR aka Brooklyn Room,34861728,Iris,Queens,Kew Gardens,40.70945,-73.83132,Private room,59,9,12,2019-05-31,0.26,4,318 +6660816,Light Filled Apartment on Tree-Lined Street,1546620,Alison,Brooklyn,Bedford-Stuyvesant,40.68657,-73.94072,Entire home/apt,100,3,1,2016-10-06,0.03,1,0 +6661923,"Hell´s Kitchen, cozy functional 2br",15008796,Admir,Manhattan,Hell's Kitchen,40.7611,-73.99316,Entire home/apt,150,4,1,2015-07-05,0.02,1,0 +6662112,Charming Manhattan 2 Bedroom,29212339,Linda,Manhattan,Harlem,40.79982,-73.95405,Entire home/apt,140,1,52,2019-05-28,1.05,1,222 +6662241,NYC Brownstone Duplex With Backyard in Chelsea.,30208406,Yaron,Manhattan,Chelsea,40.73857,-73.99787,Entire home/apt,400,1,4,2017-12-31,0.08,1,0 +6662422,"Modern Park Slope Family 2 BR, 2 BA",34873920,Joedan,Brooklyn,Park Slope,40.68018,-73.97557,Entire home/apt,250,6,0,,,1,0 +6662487,Beautiful & Private Manhattan Room,34874378,Jessica,Manhattan,Harlem,40.82398,-73.94846,Private room,75,1,59,2017-09-15,1.19,2,0 +6662511,Beautiful and sunny,6984488,Jessica,Brooklyn,Prospect Heights,40.67679,-73.96502,Entire home/apt,175,4,34,2019-06-30,0.79,2,286 +6662967,Very comfortable room,34876980,Alfredo,Manhattan,Harlem,40.80132,-73.9547,Private room,85,1,19,2019-06-27,0.39,1,365 +6669443,Bedroom with Empire St Bldg View!,8816218,Alexa,Brooklyn,Williamsburg,40.71162,-73.94551,Private room,125,1,0,,,1,0 +6670191,"Size, Splendor & High Ceilings",16437254,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68356,-73.95851,Entire home/apt,179,30,0,,,21,274 +6671082,Cozy East Village Getaway,1287185,Michelle,Manhattan,East Village,40.72865,-73.98023,Entire home/apt,150,35,7,2016-01-02,0.14,1,304 +6672758,Cool Large 3 bedrooms in the heart of East village,2196224,Sally,Manhattan,East Village,40.73037,-73.98158,Entire home/apt,197,30,1,2018-03-10,0.06,4,191 +6672812,Cozy room in light-filled apartment,1549512,Ilene,Brooklyn,Clinton Hill,40.68385,-73.96748,Private room,68,7,0,,,2,0 +6673630,Stylish L.E.S Studio,6591262,Natasha,Manhattan,Lower East Side,40.71661,-73.98916,Entire home/apt,150,3,1,2015-08-01,0.02,1,0 +6673638,A clean private room in Brooklyn,19600872,Pianpian Carolyn,Brooklyn,Gravesend,40.6046,-73.97772,Private room,69,1,0,,,1,0 +6674155,Upper East Side Alcove Studio,1208337,Sandra,Manhattan,Upper East Side,40.76832,-73.96118,Entire home/apt,200,1,4,2016-01-31,0.08,1,0 +6674342,NYC Hell's Kitchen/Midtown West 1BR,5143511,Danyel,Manhattan,Hell's Kitchen,40.76127,-73.99161,Entire home/apt,125,3,0,,,1,0 +6674363,"New Building, Best Location in NYC",6725667,Megan,Manhattan,Chelsea,40.73969,-73.99447,Private room,130,3,11,2019-05-11,0.23,1,106 +6674482,Private Bedroom in East Harlem,34933217,Emilie,Manhattan,East Harlem,40.79435,-73.94071,Private room,97,1,0,,,1,0 +6676250,Comfortable bed in a great room!,12720552,Julie,Brooklyn,Bushwick,40.70161,-73.92919,Shared room,50,1,9,2019-05-05,0.19,5,365 +6676383,2 Bedroom apartment in Brooklyn,34943122,Hadrien,Brooklyn,Bedford-Stuyvesant,40.68566,-73.95808,Entire home/apt,175,1,5,2017-12-29,0.10,2,0 +6677647,Large private room / Williamsberg,34950721,Samuel,Brooklyn,Williamsburg,40.70621,-73.94903,Private room,100,1,1,2015-06-15,0.02,2,0 +6678082,Newly renovated amazing 2 bedrooms,34371968,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68207,-73.93279,Entire home/apt,150,4,70,2019-06-26,1.54,1,293 +6678277,Charming Grand Central Two Bedroom Apartment (4R),34954047,Heather,Manhattan,Murray Hill,40.74912,-73.98007,Entire home/apt,145,30,2,2016-05-11,0.05,1,189 +6678351,Spacious Private Bedroom+Bathroom !,7577024,Daphne,Manhattan,Harlem,40.82875,-73.94574,Private room,100,1,0,,,1,0 +6679063,Luxury Apt near Time Square,7409073,Leiya,Manhattan,Hell's Kitchen,40.75885,-73.99584,Private room,130,7,2,2015-11-07,0.04,1,0 +6680201,NYC Crash Pad,30839692,Stavros,Queens,Flushing,40.75394,-73.80538,Private room,45,2,186,2019-06-26,3.74,3,170 +6684189,PRETTY CLINTON HILL BROWNSTONE!,4028339,Nadine,Brooklyn,Clinton Hill,40.68542,-73.96103,Entire home/apt,600,4,28,2019-06-23,0.58,1,295 +6684697,"Modern Williamsburg apt w/Gym, Roof",315082,Nicholas,Brooklyn,Williamsburg,40.70877,-73.94889,Entire home/apt,125,3,20,2017-05-07,0.40,1,0 +6685873,Sunny & Quiet Luxury NYC Oasis,1030526,Elizabeth,Brooklyn,Fort Greene,40.69023,-73.98086,Entire home/apt,95,2,0,,,1,0 +6686140,1 bedroom apartment in Nolita,6743604,Lauren,Manhattan,Nolita,40.72227,-73.99526,Entire home/apt,130,1,13,2016-10-09,0.26,1,0 +6686165,Astoria Room,34995566,Alexa,Queens,Long Island City,40.76177,-73.92627,Private room,44,28,14,2019-04-20,0.39,1,275 +6686332,Modern/Sunny Apt Close to Train!,30340506,Alyson,Brooklyn,Bushwick,40.69207,-73.92312,Entire home/apt,190,1,0,,,1,0 +6687933,"Clean, Trendy, Private Room in LES",35000945,Jacqueline,Manhattan,Lower East Side,40.71748,-73.98364,Private room,60,1,0,,,1,0 +6688119,Cozy Apartement,35005938,Carole,Brooklyn,South Slope,40.66136,-73.98437,Entire home/apt,199,1,1,2015-06-06,0.02,1,0 +6688617,"Quiet, Spacious, Safe Studio in BK",35008385,Abe,Brooklyn,Williamsburg,40.71366,-73.94021,Entire home/apt,49,7,1,2015-06-09,0.02,1,0 +6688780,"Private Room at ""The Boat House""",11199830,Meagan,Manhattan,Marble Hill,40.87495,-73.90982,Private room,45,2,1,2015-11-09,0.02,1,0 +6689548,Cozy apartment in Nolita/SoHo,4271676,Nat,Manhattan,Nolita,40.72287,-73.99593,Entire home/apt,265,2,90,2019-06-22,1.95,3,11 +6690696,Sunny Prewar 2BR/2BA in Fort Greene,3131306,Alissa,Brooklyn,Clinton Hill,40.68623,-73.96755,Entire home/apt,220,30,1,2015-08-09,0.02,1,0 +6691625,Elegant private room in beautiful apartment,2135117,Susan,Brooklyn,Windsor Terrace,40.65766,-73.97927,Private room,52,2,53,2019-07-07,2.87,1,55 +6691723,Bright Cozy Lux 1BR w/Balcony,35025150,Chris,Brooklyn,Williamsburg,40.72006,-73.95694,Entire home/apt,180,2,6,2019-01-02,0.14,1,0 +6692213,Well Furnished Upper East Side Studio,6847312,David & Derek,Manhattan,Upper East Side,40.78165,-73.94825,Entire home/apt,127,2,30,2019-03-17,0.62,1,0 +6692573,Sunny 1BR in hip East Village,35030648,Corey,Manhattan,East Village,40.72354,-73.9819,Private room,108,2,17,2016-08-01,0.35,1,0 +6692574,Cozy 1br apt in center flushing,22727131,Iris,Queens,Flushing,40.75529,-73.83043,Entire home/apt,150,7,1,2015-11-01,0.02,1,0 +6692633,"Stylish, family-friendly house, Prospect Heights",481921,Sean,Brooklyn,Prospect Heights,40.67604,-73.96875,Entire home/apt,440,4,23,2019-06-23,0.47,1,7 +6692975,Cozy room in Chelsea,29417590,Alice,Manhattan,Chelsea,40.7465,-73.991,Private room,100,1,2,2015-08-24,0.04,1,0 +6693052,Kid-friendly house with parking/back patio,398440,Marla,Brooklyn,Bedford-Stuyvesant,40.6913,-73.92934,Entire home/apt,200,3,4,2019-03-25,0.53,1,14 +6693403,PERFECT FOR A SMALL GET AWAY.,10717539,Eddie,Brooklyn,Flatbush,40.63485,-73.96208,Entire home/apt,175,1,0,,,1,0 +6693612,Beautiful One Bedroom Apartment (Midtown) NYC,4316973,Alberto,Manhattan,Hell's Kitchen,40.75335,-73.99525,Entire home/apt,180,3,2,2019-05-19,0.76,1,2 +6698963,Artist's Apt in Downtown Manhattan,12432650,Yazmany,Manhattan,Chinatown,40.7142,-73.99119,Entire home/apt,250,5,14,2018-12-29,0.45,1,5 +6699725,Quiet room around corner fr. Subway,34914311,Sandrine,Bronx,Longwood,40.8198,-73.90341,Private room,99,1,0,,,1,0 +6699912,Good size room in large 3 bedroom,35070587,Tim,Brooklyn,Sunset Park,40.65972,-73.9937,Private room,75,7,0,,,1,0 +6700860,"Family Friendly, Brooklyn, NYC 2br",35075473,Amanda,Brooklyn,Carroll Gardens,40.67885,-74.00027,Entire home/apt,150,5,5,2016-08-28,0.10,1,0 +6701706,"Large Light Room for Female, Cat Friendly",13953653,Liora,Queens,Sunnyside,40.74573,-73.92261,Private room,49,6,15,2017-12-08,0.30,1,128 +6702693,"Designer Fifth Ave 4BR 5Ba 6,000sf Modern Loft",8730,Allison,Manhattan,Chelsea,40.73692,-73.99219,Entire home/apt,1495,1,11,2016-11-16,0.22,1,0 +6703091,Charming East Village Apartment,35087743,Joshua,Manhattan,East Village,40.72132,-73.98263,Entire home/apt,100,5,0,,,1,0 +6703106,"Cozy 1BR in Williamsburg, Brooklyn",34841020,Tara,Brooklyn,Williamsburg,40.71056,-73.94906,Private room,110,1,1,2015-06-18,0.02,1,0 +6704000,Sunny Room in Astoria NYC!,34578795,Ryan,Queens,Astoria,40.75929,-73.9173,Private room,45,10,1,2015-08-14,0.02,1,0 +6705158,Luxury Central Park North Apartment,35100060,Jessica,Manhattan,Harlem,40.80144,-73.95193,Entire home/apt,399,4,15,2019-04-29,0.31,2,5 +6705558,Spacious Bright Room in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71506,-73.96182,Private room,103,2,1,2017-02-15,0.03,3,0 +6705604,Beautiful Private Bedroom in NY,35103293,Maria,Bronx,Norwood,40.87225,-73.88748,Private room,33,7,40,2018-11-27,0.82,1,0 +6705606,Your NYC spot,35103206,Anthony And Laura,Queens,Rego Park,40.7262,-73.8672,Entire home/apt,86,3,3,2017-08-29,0.09,1,0 +6706074,Beautiful neighborhood,25071191,Khamis,Queens,Ditmars Steinway,40.78112,-73.91079,Entire home/apt,110,5,5,2018-09-10,0.10,1,0 +6706494,2 BR Apt w/ patio close to the L,2466294,Ian,Brooklyn,Bushwick,40.70264,-73.91702,Entire home/apt,160,2,3,2015-11-13,0.06,2,359 +6706703,"Cheap, basic room",8556751,Adam,Queens,Ditmars Steinway,40.77583,-73.9131,Private room,50,3,0,,,1,0 +6709867,Large Private Room in prime BK,11039369,Mike,Brooklyn,Fort Greene,40.68881,-73.97391,Private room,55,1,1,2016-03-24,0.02,1,0 +6711306,Brownstone in Heart Of Park Slope!,14946552,Nathan,Brooklyn,Park Slope,40.66866,-73.98214,Private room,100,14,0,,,1,0 +6712530,⭐️Harlem getaway w/ great amenities,10771238,Justin,Manhattan,Harlem,40.82608,-73.9525,Private room,80,2,185,2019-06-19,3.72,3,203 +6712618,"Big room 2 blocks from Central Park, UWS Manhattan",22651758,Tiphaine,Queens,Sunnyside,40.74147,-73.91997,Entire home/apt,85,1,2,2015-09-08,0.04,1,0 +6713005,Large one bedroom,35144920,Kevin,Manhattan,Upper East Side,40.767,-73.95456,Private room,100,1,0,,,1,0 +6713521,Your Garden Oasis in Brooklyn!,1401919,Mike,Brooklyn,Bedford-Stuyvesant,40.68447,-73.9543,Entire home/apt,275,3,21,2018-11-24,0.44,1,5 +6713742,Midtown Gem - Nestled by Hotel Row,35149173,L.M.,Manhattan,Midtown,40.75549,-73.97149,Entire home/apt,450,2,2,2015-07-02,0.04,1,364 +6713821,Spacious Room w/ Queen Bed,12447185,Craig,Brooklyn,Crown Heights,40.67547,-73.95711,Private room,80,1,0,,,1,0 +6713911,"Perfect studio w/ Coutryard, piano!",34988058,Sheri,Manhattan,Upper East Side,40.76217,-73.96622,Entire home/apt,275,1,0,,,1,0 +6716066,Harlem/Columbia historic landmark,6226676,Aparna,Manhattan,Harlem,40.80748,-73.94922,Entire home/apt,120,2,1,2015-06-24,0.02,1,0 +6716154,Luxury alcove studio on high floor,35108277,Yury,Manhattan,Upper East Side,40.76685,-73.95265,Entire home/apt,250,5,0,,,1,0 +6716160,Park Slope Family Oasis w/ Patio,171653,Stefanie,Brooklyn,Park Slope,40.6669,-73.97827,Entire home/apt,250,2,1,2016-09-11,0.03,1,0 +6716199,large private bedroom,31765814,Yassine,Queens,Astoria,40.76561,-73.92056,Private room,85,1,3,2019-05-12,0.06,1,0 +6716444,Large and Quiet Private Bedroom,24466159,Tim,Manhattan,East Village,40.72879,-73.98575,Private room,100,7,2,2015-06-26,0.04,1,0 +6716695,Private Entrance in Prime Burg,23082955,Pj,Brooklyn,Williamsburg,40.70873,-73.95219,Private room,65,1,107,2018-05-13,2.17,1,0 +6717053,Lovely Studio in Flushing/kew Garde,34992043,Frances,Queens,Flushing,40.74024,-73.83105,Private room,68,1,222,2019-07-04,4.48,2,330 +6717309,Marvellous spacious Upper East apt,15444104,Willem,Manhattan,Upper East Side,40.77878,-73.94491,Entire home/apt,170,10,11,2017-05-16,0.24,1,0 +6717544,Relaxing Home for your NY Trip,35174506,Michelle,Brooklyn,Bensonhurst,40.61625,-73.9916,Private room,50,2,9,2019-06-23,1.41,1,81 +6717607,Spacious Private Room/Bath in Bushwick!,4130512,Tanni,Brooklyn,Bushwick,40.69093,-73.91291,Private room,45,30,1,2016-11-25,0.03,1,0 +6718257,"Home 4 Medical Professionals - The ""Clinomania""",26377263,Stat,Brooklyn,East Flatbush,40.66079,-73.9342,Private room,48,30,2,2018-09-22,0.06,43,249 +6718383,Home 4 Medical Professionals-Kngbr1,26377263,Stat,Brooklyn,East Flatbush,40.66058,-73.93383,Private room,43,30,1,2015-11-28,0.02,43,347 +6719207,Home 4 Medical Professionals-Kngbr3,26377263,Stat,Brooklyn,East Flatbush,40.66037,-73.93316,Private room,47,30,0,,,43,311 +6722799,Spacious 2 BR sun-filled apartment in Chelsea,21079341,Georgina,Manhattan,Chelsea,40.74558,-74.00325,Entire home/apt,260,2,2,2018-12-30,0.18,1,0 +6723207,spacious apartment in Ditmas Park,5013592,Anton,Brooklyn,Flatbush,40.638,-73.96742,Entire home/apt,75,7,0,,,1,0 +6725463,Sunny Midtown Apartment,19406327,Ze,Manhattan,Murray Hill,40.74786,-73.97277,Shared room,160,1,0,,,1,365 +6726337,Beautiful 2 Bedroom Apartment!! NYC,21444167,Rony,Bronx,Kingsbridge,40.88238,-73.90689,Entire home/apt,159,3,8,2019-06-02,0.17,2,112 +6726361,"South Facing Brownstone, 2nd Floor",921857,Victoria,Brooklyn,Bedford-Stuyvesant,40.68354,-73.92612,Private room,50,7,3,2016-12-29,0.06,1,31 +6726702,One bedroom in quiet Brooklyn,7588851,Jamie,Brooklyn,Prospect-Lefferts Gardens,40.6637,-73.94644,Entire home/apt,100,5,0,,,1,0 +6728550,"Cozy, Spacious Bedstuy Pad",34058193,Beverly,Brooklyn,Bedford-Stuyvesant,40.68972,-73.95629,Entire home/apt,60,5,5,2015-11-25,0.10,1,0 +6729568,Cozy room in beautiful light-filled apt,6386894,Adrienne,Brooklyn,Cobble Hill,40.68701,-73.99054,Private room,80,2,4,2018-02-16,0.19,2,0 +6729589,Sunny 1.5 BR Charmer!,6386894,Adrienne,Brooklyn,Boerum Hill,40.68542,-73.98916,Entire home/apt,115,4,13,2019-05-14,0.64,2,18 +6730056,Sunny Studio in Chelsea,7186661,Sabrina,Manhattan,Chelsea,40.74688,-74.00145,Entire home/apt,200,1,4,2017-09-16,0.09,1,0 +6730582,"3 bdrms, fully equip bth/rm kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68491,-73.75895,Entire home/apt,160,3,29,2019-01-16,0.59,3,179 +6731170,Nice & Sweet Apartment in Manhhatan,24131487,Liu,Manhattan,Harlem,40.80352,-73.95079,Entire home/apt,109,3,1,2015-08-29,0.02,1,0 +6731373,Brooklyn Yellow,35086035,Sammy,Brooklyn,Crown Heights,40.66913,-73.93199,Private room,25,2,5,2018-12-31,0.27,1,158 +6731463,Large Brooklyn 3 Bedroom Apartment,63588,Dimitri,Brooklyn,Prospect Heights,40.67731,-73.96683,Entire home/apt,280,5,5,2018-08-21,0.10,2,0 +6731564,1 bedroom apt in Astoria,35254359,Romain,Queens,Astoria,40.76774,-73.92414,Entire home/apt,120,1,0,,,1,0 +6731830,Williamsburg Apartment on Bedford,30345458,Thomas,Brooklyn,Williamsburg,40.71444,-73.96024,Entire home/apt,98,3,8,2017-06-24,0.21,1,0 +6732446,Sunny & Happy Room in Williamsburg,5532810,Sandy,Brooklyn,Williamsburg,40.71676,-73.9439,Private room,70,2,99,2019-06-16,2.02,2,37 +6733512,A Serine Stay in Bedstuy,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.68814,-73.93089,Private room,55,10,14,2019-05-06,0.31,3,301 +6737048,"Owesome entire apart, Bushwick 20 min Manhattan!!!",35280507,Elimara,Queens,Ridgewood,40.70737,-73.91439,Entire home/apt,100,3,17,2018-12-11,1.41,1,0 +6737815,Chic Modern Apt w/ View of Hudson,10576227,Alexander,Manhattan,Chelsea,40.7481,-74.00533,Entire home/apt,200,5,1,2015-07-05,0.02,1,0 +6738207,Heart of Lower East Side,8965532,Claire,Manhattan,Lower East Side,40.71937,-73.99098,Entire home/apt,120,1,11,2017-06-29,0.27,1,0 +6738524,"Stunning, sunny 1bedroom, Greenpoit",35287916,Naum & Alexandra,Brooklyn,Greenpoint,40.73401,-73.95471,Entire home/apt,150,14,1,2015-09-01,0.02,1,0 +6739145,Ranch style house with driveway,25368839,Florence,Staten Island,Dongan Hills,40.58115,-74.09182,Entire home/apt,155,3,63,2019-06-22,1.29,1,0 +6741023,Big Room @ the Heart of Brooklyn!!,1012583,Mariano,Brooklyn,Williamsburg,40.71458,-73.96181,Private room,60,7,6,2017-11-13,0.13,2,0 +6741094,Gorgeous Luxury Apartment,35299368,Adriana,Manhattan,Murray Hill,40.74798,-73.9814,Private room,200,1,1,2015-06-21,0.02,1,0 +6742680,Spacious & Charming Duplex in Upper East,6028102,Ana,Manhattan,Upper East Side,40.77259,-73.95647,Entire home/apt,200,3,47,2019-03-24,0.95,1,0 +6743346,Wildlife Loft Living room adventure,5556571,Chris,Brooklyn,Williamsburg,40.70645,-73.9379,Shared room,25,1,25,2019-04-28,0.50,3,358 +6743935,Whole West Village Studio,740756,Lydia,Manhattan,West Village,40.73742,-74.00171,Entire home/apt,199,2,14,2016-05-08,0.29,1,0 +6746003,Retro Style Living In New York City,1211067,"Hans, Sandra & Son",Staten Island,Tompkinsville,40.62154,-74.08701,Private room,49,2,100,2019-06-29,2.12,2,284 +6747106,New York apt in beautiful area for Summer,2388537,Andrea,Manhattan,Morningside Heights,40.81666,-73.96074,Entire home/apt,105,15,33,2019-01-02,0.69,2,5 +6747193,Room & Breakfast- Room 2,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92783,Private room,49,1,107,2019-07-06,2.19,3,69 +6747308,Luxury 2 BD with spectacular views,3282552,Roger,Manhattan,Upper West Side,40.77818,-73.98959,Entire home/apt,256,4,11,2017-07-27,0.23,1,0 +6747685,Beautiful 1205 ft classic NoHo Loft,29769754,Tom,Manhattan,NoHo,40.7259,-73.9939,Entire home/apt,499,3,35,2019-05-27,0.72,1,223 +6747958,1 cozy & centrally located bedroom,20904647,Christina,Brooklyn,Fort Greene,40.68662,-73.97602,Private room,90,4,32,2019-07-03,0.67,1,295 +6748032,Beloved Brooklyn style apartment,35329789,Simone,Brooklyn,Sunset Park,40.66002,-73.99073,Entire home/apt,80,4,152,2019-06-19,3.08,1,142 +6748711,Awesomely Sunny 1 Bedroom w Balcony,3900093,Damien,Brooklyn,Williamsburg,40.71054,-73.95669,Entire home/apt,180,3,35,2017-01-28,0.71,1,18 +6748933,Cozy 1 BR in ideal location,1490702,Amanda,Manhattan,Chelsea,40.74121,-74.00122,Entire home/apt,145,6,2,2017-06-26,0.04,1,0 +6748952,Private Room w/Bathroom / W'Berg BK,34950721,Samuel,Brooklyn,Williamsburg,40.70799,-73.94888,Private room,100,1,1,2015-06-15,0.02,2,0 +6749285,Sunny 2 Bedroom Brownstone Apt.,4195861,Doris,Brooklyn,Crown Heights,40.67837,-73.95517,Entire home/apt,150,3,208,2019-07-01,4.36,2,238 +6749837,2 beds in 3 bed with balcony in elevator bldng!,25111342,Alix,Brooklyn,Kensington,40.6345,-73.97271,Private room,95,2,0,,,1,0 +6750178,Brooklyn Comfort w Rooftop View,173938,Vuong,Brooklyn,Bedford-Stuyvesant,40.68491,-73.94919,Private room,55,5,4,2018-02-08,0.08,1,21 +6750443,Stunning & Comfortable Home in Williamsburg,35288455,Gabriela,Brooklyn,Williamsburg,40.71154,-73.96424,Entire home/apt,147,3,55,2018-12-26,1.29,1,5 +6751450,Next to Empire State building,7209,Liz,Manhattan,Midtown,40.74642,-73.98516,Entire home/apt,220,3,108,2019-06-21,2.17,1,24 +6757821,Riverside Dr Apartment,28813132,Junyuan,Manhattan,Morningside Heights,40.81656,-73.96122,Private room,70,1,0,,,1,0 +6758846,"Williamsburg, BK large apt",22894987,Daniel,Brooklyn,Williamsburg,40.71085,-73.94894,Entire home/apt,100,1,0,,,1,0 +6758849,UPPER EAST SIDE 5BR/4BA GARDEN APT,35384978,Hans,Manhattan,Upper East Side,40.77635,-73.94813,Entire home/apt,888,2,42,2019-07-07,0.86,2,35 +6759052,Bed-Stuy apt with central air,5693024,Peter,Brooklyn,Bedford-Stuyvesant,40.68675,-73.94497,Private room,40,1,1,2015-07-28,0.02,1,0 +6759264,Cozy private bedroom & bathroom,35386618,Andrea,Queens,Astoria,40.75706,-73.91834,Private room,70,1,7,2016-05-25,0.15,1,325 +6759527,Room Available in Sunset Park!,35388074,Maddie,Brooklyn,Sunset Park,40.64465,-74.01881,Private room,150,1,1,2015-06-12,0.02,1,0 +6760295,"Sunny, couple-friendly MasterBedroom in Greenpoint",12432739,Monica,Brooklyn,Greenpoint,40.73511,-73.95551,Private room,75,7,1,2016-11-15,0.03,1,0 +6760353,City living in a suburb on NYC,35391852,Sunita,Brooklyn,Bushwick,40.69545,-73.92336,Entire home/apt,85,5,2,2015-06-20,0.04,1,0 +6760893,Central Park / Full Apartment / 5th Ave,11631535,Scott,Manhattan,East Harlem,40.79596,-73.94958,Entire home/apt,124,3,6,2016-08-26,0.14,1,0 +6761084,mhttnfullapt lowprce,29239547,Emanuel,Manhattan,Washington Heights,40.85322,-73.93563,Entire home/apt,89,2,25,2019-06-23,0.79,1,346 +6761717,Brooklyn Heights Brownstone Duplex,1549503,Alison,Brooklyn,Brooklyn Heights,40.69009,-73.99355,Entire home/apt,195,3,1,2015-06-28,0.02,1,0 +6761985,Williamsburg Sunlit Sanctuary.,2521069,Emma,Brooklyn,Williamsburg,40.71374,-73.9627,Entire home/apt,160,3,27,2019-06-24,0.55,1,193 +6763899,"Bright, spacious room in Manhattan",5360450,Sarah,Manhattan,Harlem,40.81791,-73.95357,Private room,60,1,5,2015-09-15,0.10,1,0 +6764316,GIANT LOFT IN DUMBO -- BY BROOKLYN BRIDGE PARK,362418,Julia,Brooklyn,DUMBO,40.70318,-73.9878,Private room,125,3,181,2019-07-05,3.67,1,111 +6764999,"Large, light-filled W. Village condo w/river views",35415860,Debra,Manhattan,West Village,40.7342,-74.00854,Entire home/apt,225,2,6,2016-08-28,0.12,1,0 +6765697,Cozy bedroom for 2 in Astoria,35417042,Maria,Queens,Astoria,40.76855,-73.92583,Private room,86,4,28,2019-04-23,0.59,1,364 +6765965,Williamsburg Cozy Apartement,35421272,Joffrey,Brooklyn,Williamsburg,40.71128,-73.954,Entire home/apt,119,4,6,2016-09-26,0.12,1,0 +6766169,Nice and spacious 1BR in Brooklyn,35422693,Raquel,Brooklyn,Crown Heights,40.66922,-73.94682,Entire home/apt,70,15,9,2018-07-25,0.19,1,0 +6766259,Lovely & Cozy Room Heart of Astoria,35423181,Cidinha,Queens,Astoria,40.7665,-73.91759,Private room,75,1,10,2018-10-07,0.22,1,357 +6766662,Gorgeous 1 Bedroom: Balcony + View!,35426209,Talia,Queens,Astoria,40.76964,-73.91402,Entire home/apt,150,3,3,2016-08-01,0.06,1,0 +6766875,"2 bedroom apartment, Fort Greene",35426480,Loukia,Brooklyn,Fort Greene,40.69297,-73.9741,Entire home/apt,145,25,1,2015-07-21,0.02,1,0 +6766894,"Private room, Williamsburg Brooklyn",27103894,Lee,Brooklyn,Williamsburg,40.70965,-73.94411,Private room,115,1,0,,,1,0 +6766908,Renovated & Spacious Apt.,308930,Andres,Brooklyn,Prospect-Lefferts Gardens,40.65577,-73.95903,Entire home/apt,130,5,7,2017-12-18,0.15,1,0 +6767047,Bright Big Room With Fireplace,23582893,Laramie,Brooklyn,Bushwick,40.69047,-73.91565,Private room,53,21,24,2019-05-31,0.49,8,114 +6767603,Quiet and spacious midtown apt,35432501,Sterling,Manhattan,Midtown,40.75861,-73.96939,Private room,110,1,0,,,1,0 +6767911,"Private Floor, 1BR 1BTH, PR Entry",24742173,Tammy,Manhattan,Upper West Side,40.79745,-73.96936,Entire home/apt,130,4,16,2018-04-20,0.32,3,0 +6768399,3)Cozy Sunny Warm Room 阳光温馨单房 停车容易,30616879,Anna,Queens,Flushing,40.75443,-73.80787,Private room,48,2,53,2019-04-07,1.07,3,153 +6769535,"1 brm, fully equip bth/rm & kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68511,-73.76012,Entire home/apt,105,3,7,2017-09-17,0.14,3,0 +6775098,Soho/West Village 1 bedroom apt,23985505,Liz,Manhattan,Greenwich Village,40.72835,-74.00259,Entire home/apt,150,1,0,,,1,0 +6775943,JFK Studio Flat with Kitchen and Private bathroom,9284163,Antonio,Queens,Woodhaven,40.68982,-73.85379,Entire home/apt,65,2,85,2019-06-24,2.40,3,311 +6776230,Ridgewood 2 Bedroom,35474215,Gregory,Queens,Ridgewood,40.70966,-73.90064,Entire home/apt,100,4,1,2015-07-15,0.02,1,0 +6776698,JFK SPACIOUS ROOM / A 4 BLOCKS TO SUBWAY,9284163,Antonio,Queens,Woodhaven,40.68955,-73.85348,Private room,39,2,262,2019-06-23,5.28,3,346 +6776711,"Classic NYC, Upper East Side Apt",35476099,Alec,Manhattan,Upper East Side,40.76966,-73.95319,Entire home/apt,150,5,2,2016-12-26,0.04,1,0 +6777603,Sunny Bedroom in Bushwick,6378149,Laurel,Brooklyn,Bushwick,40.6987,-73.91578,Private room,50,2,28,2017-12-04,0.56,3,0 +6778776,Private Room in Bohemian Haven,18591697,Heidi,Manhattan,Washington Heights,40.83705,-73.9399,Private room,55,7,4,2016-07-31,0.09,1,0 +6779136,West Village on the Hudson River,35488245,Jillian,Manhattan,West Village,40.73212,-74.01051,Entire home/apt,195,1,1,2015-08-25,0.02,1,0 +6780285,Beautiful Williamsburg townhouse on a park.,230856,Gabrielle & Malcolm,Brooklyn,Williamsburg,40.7154,-73.93866,Entire home/apt,295,30,6,2018-04-19,0.13,1,0 +6781648,2BR Creative Oasis,3403868,Cusi,Manhattan,West Village,40.73643,-74.00351,Entire home/apt,140,4,0,,,1,0 +6782407,"",31147528,Huei-Yin,Brooklyn,Williamsburg,40.71354,-73.93882,Private room,45,1,0,,,1,0 +6782841,Bright Brookyn Room W/ Bay Windows,23582893,Laramie,Brooklyn,Bushwick,40.69058,-73.91471,Private room,50,91,42,2018-10-02,0.85,8,218 +6783518,PRIVATE Room||Luxury Apt,35512327,Mayowa,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94243,Private room,75,3,0,,,1,0 +6784171,Bright and Clean Little Italy Apt.,18268348,Paul,Manhattan,Little Italy,40.71968,-73.9968,Private room,110,4,12,2017-08-02,0.26,1,0 +6784207,Single Room in 2 bedroom apt.,6387355,Eric,Brooklyn,Bushwick,40.69959,-73.92975,Private room,64,2,48,2019-06-22,1.00,2,318 +6784378,Large Room & Own Bath by train,7788268,Marites,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95947,Private room,75,2,10,2018-05-07,0.22,1,52 +6784406,1BR (IN 2BR FLEX) - MANHATTAN FIDI,12764250,Ravi,Manhattan,Financial District,40.70793,-74.00411,Private room,125,1,0,,,1,0 +6784669,Charming one bedroom Upper East,29509026,Melissa,Manhattan,Upper East Side,40.76644,-73.95803,Entire home/apt,130,1,6,2016-06-01,0.13,1,0 +6784807,"One bedroom in Queens , with 2 single beds",15724675,Juan,Queens,Woodside,40.74375,-73.90678,Private room,50,2,16,2017-04-17,0.42,2,0 +6784873,Spacious Greenpoint 3BR/2BA Apt w/ Organic Garden,2903840,Sari,Brooklyn,Greenpoint,40.72298,-73.94545,Entire home/apt,270,4,4,2019-03-24,0.09,1,7 +6784908,Spacious/quiet one bedroom apt,18186682,Catherine,Manhattan,Inwood,40.87211,-73.91544,Entire home/apt,78,30,2,2019-03-31,0.09,1,15 +6786181,R&S Modern Spacious Hideaway,32722063,,Brooklyn,East Flatbush,40.64345,-73.93643,Entire home/apt,100,2,157,2019-06-19,3.18,2,342 +6786761,[202] 5 min WALK to Times Square!,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76037,-73.99084,Private room,155,1,176,2019-06-19,3.57,11,248 +6787310,[205] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76044,-73.98903,Private room,210,1,182,2019-06-23,3.69,11,249 +6791173,Room Available in Large 3 Bdrm Apt!,32596841,Katie,Brooklyn,Crown Heights,40.67852,-73.9557,Private room,59,1,1,2015-06-28,0.02,2,0 +6792415,Family getaway with amazing roof.,8198108,Gabriel,Brooklyn,Greenpoint,40.72278,-73.94478,Entire home/apt,140,2,8,2016-08-15,0.17,1,0 +6792702,Bright room in lovely Greenpoint apartment,12965328,Delaney,Brooklyn,Greenpoint,40.73632,-73.95445,Private room,59,3,0,,,1,0 +6792888,ONE BR SUNNY APT-15 MIN FROM TIMESQ,35340889,Uros,Queens,Sunnyside,40.74589,-73.91956,Entire home/apt,89,5,4,2015-10-09,0.09,1,0 +6794912,Large room in NYC - 2 months,24973811,Toma,Manhattan,Inwood,40.86623,-73.91993,Private room,50,1,1,2015-08-27,0.02,1,0 +6795252,Private Room in Large 2BR Apartment,12541502,Ryan,Brooklyn,Bedford-Stuyvesant,40.69393,-73.94438,Private room,85,3,0,,,1,0 +6795568,[203] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.7614,-73.98954,Private room,155,1,179,2019-06-20,3.66,11,243 +6795657,Beautiful newly renovated apartment,33622924,Besinfe,Manhattan,Harlem,40.83174,-73.94686,Private room,75,1,134,2019-06-30,3.13,4,354 +6796530,Stay in our wonderful loft!,35574300,Spanky,Brooklyn,Gowanus,40.67928,-73.98254,Private room,98,1,238,2019-07-01,4.85,1,236 +6797129,Spacious 1BR & Loft near Park,8924676,Taeler,Manhattan,Upper West Side,40.77824,-73.97701,Entire home/apt,375,1,0,,,1,0 +6797564,Summer in Gramercy Park. New York,35581556,Emma,Manhattan,Gramercy,40.73727,-73.98432,Entire home/apt,120,1,0,,,1,0 +6797905,Elegant studio in the UES,11013095,Giorgia,Manhattan,Upper East Side,40.77734,-73.95997,Entire home/apt,150,8,0,,,1,0 +6798068,SUNNY 2 BEDROOM IN WILLIAMSBURGGGGG,1320538,Tyler,Brooklyn,Williamsburg,40.70995,-73.96609,Entire home/apt,102,10,8,2019-01-09,0.20,1,277 +6798811,"Spacious, quiet and comfortable 1BR",33279657,Mariya,Brooklyn,Midwood,40.61291,-73.94972,Entire home/apt,85,2,20,2017-04-26,0.41,1,0 +6799118,2 Bedroom Apt. Available July 15 thru Sept. 1,35590273,Nikima,Brooklyn,Red Hook,40.67728,-74.00572,Entire home/apt,80,1,0,,,2,0 +6799130,1 Bedroom available for the entirety of September,35590273,Nikima,Brooklyn,Red Hook,40.67659,-74.00643,Private room,35,10,1,2015-09-02,0.02,2,0 +6799692,[206] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.7618,-73.99093,Private room,255,1,192,2019-06-26,3.91,11,305 +6799814,[306] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76207,-73.98945,Private room,245,1,162,2019-06-30,3.29,11,1 +6799895,[301] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76146,-73.99109,Private room,155,1,201,2019-06-28,4.10,11,240 +6799932,[302] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76015,-73.99086,Private room,155,1,200,2019-06-16,4.07,11,240 +6799944,Brooklyn Bright Times,257676,Linda,Brooklyn,Flatbush,40.65348,-73.95978,Private room,148,1,12,2018-06-18,0.24,2,90 +6799957,[303] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.75987,-73.99056,Private room,155,1,203,2019-06-13,4.13,11,211 +6799999,[305] 5 min WALK to Times Square!,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76036,-73.99073,Private room,165,1,153,2019-06-15,3.16,11,271 +6800277,[307] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.76185,-73.99126,Private room,155,1,189,2019-06-23,3.86,11,245 +6800548,Spacious 4bed/2bath-heart of W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71296,-73.96148,Entire home/apt,389,3,18,2016-07-24,0.37,3,0 +6800576,1 BEDROOM IN 3 BEDROOMS APARTMENT,7858210,Maxime,Manhattan,Harlem,40.81456,-73.94159,Private room,65,2,105,2019-06-14,2.12,4,180 +6800858,Charming and private room in W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71481,-73.96262,Private room,89,8,6,2015-11-11,0.13,3,0 +6804319,"Big, sunny garden apt in Brooklyn",20279153,Matthew,Brooklyn,Crown Heights,40.67702,-73.96261,Entire home/apt,250,5,3,2017-07-01,0.06,1,0 +6805817,Bedroom on Riverside Park,7323687,Russell,Manhattan,Upper West Side,40.79304,-73.97725,Private room,125,1,0,,,1,0 +6806165,Large Private Room Uptown,32924087,Faiven,Manhattan,Washington Heights,40.8334,-73.93913,Private room,81,2,8,2019-01-03,0.16,2,0 +6806282,Cozy Room in Charming East Village,4055091,Tina,Manhattan,East Village,40.72949,-73.98012,Private room,80,1,0,,,1,0 +6807079,Luxury Apartment in Brooklyn,7853731,Hod,Brooklyn,Crown Heights,40.67367,-73.96079,Entire home/apt,200,5,3,2018-12-22,0.06,2,157 +6807281,Bright spacious 1BR on the park,35634594,Eden,Brooklyn,Prospect-Lefferts Gardens,40.66233,-73.9615,Entire home/apt,130,7,1,2015-08-14,0.02,1,0 +6807871,MANHATTAN STUDIO,35637698,Yaniv,Manhattan,Kips Bay,40.74362,-73.98058,Entire home/apt,100,6,4,2016-10-10,0.08,1,0 +6808818,Big Room With Piano & Tin Ceilings,23582893,Laramie,Brooklyn,Bushwick,40.68908,-73.91452,Private room,61,2,59,2019-06-23,1.22,8,102 +6809332,"Cozy, Warm Home in the West Village",198010,Shenaz,Manhattan,West Village,40.73728,-74.00773,Entire home/apt,95,5,4,2016-02-21,0.09,1,0 +6812061,"6 minutes from La Guardia Airpt. Quiet, Clean Room",35660592,Luis,Queens,Maspeth,40.73878,-73.89423,Private room,65,2,92,2019-06-15,1.87,6,79 +6812270,Bushwick/Bed Stuy Border,21130473,Justin,Brooklyn,Bedford-Stuyvesant,40.68587,-73.92094,Private room,40,5,4,2015-11-25,0.08,1,0 +6812456,Large 2 bedroom apartment,400240,Murat,Brooklyn,Flatbush,40.65303,-73.96164,Entire home/apt,120,6,1,2018-09-04,0.10,2,0 +6812690,Sunny Big Room With Garden Views,23582893,Laramie,Brooklyn,Bushwick,40.69054,-73.91403,Private room,59,2,36,2019-07-01,0.83,8,218 +6812717,View Waterfront Studio - Manhattan,2608356,Dimitry,Manhattan,Battery Park City,40.70944,-74.01829,Entire home/apt,100,21,0,,,1,222 +6812924,Charming 1BD- 10 min to Manhattan & Central Park,19109608,Elle,Queens,Astoria,40.76219,-73.91963,Entire home/apt,135,1,229,2019-06-16,4.65,3,89 +6813041,*Musician's Apartment* in Brooklyn,1550419,Gordon,Brooklyn,Fort Greene,40.6892,-73.96976,Private room,50,1,0,,,1,0 +6813226,Large 2BR 2BH duplex-Central Park!,24742173,Tammy,Manhattan,Upper West Side,40.79866,-73.9681,Entire home/apt,460,4,11,2016-01-05,0.23,3,0 +6820048,BEAUTIFUL STUDIO IN BROWNSTONE,2264481,Sara,Brooklyn,Bedford-Stuyvesant,40.68552,-73.93581,Entire home/apt,110,4,15,2018-08-13,0.31,1,97 +6820637,Modern 1 BR w/ Private Patio in Boerum Hill!,1153591,Megan,Brooklyn,Boerum Hill,40.68724,-73.98596,Entire home/apt,225,2,24,2019-05-05,0.49,1,189 +6821839,"1 BR Apt., historic Jackson Heights",35726649,Chris,Queens,Jackson Heights,40.75129,-73.88784,Entire home/apt,135,5,8,2019-06-29,0.17,1,0 +6821978,"Charming, Sunny Home in Heart of BK",13219494,New,Brooklyn,Clinton Hill,40.68636,-73.96207,Entire home/apt,125,1,1,2015-07-14,0.02,1,0 +6822519,Sun filled private room in Brooklyn,1456436,Kevin And Regard,Brooklyn,Bushwick,40.69859,-73.92401,Private room,64,5,32,2017-05-01,0.65,1,0 +6822854,Two Story Room With Reclaimed Bed,23582893,Laramie,Brooklyn,Bushwick,40.6904,-73.91538,Private room,58,6,31,2019-05-25,0.63,8,147 +6823578,Beautiful home in the Heights,35350208,Zachary,Manhattan,Washington Heights,40.84872,-73.93633,Private room,69,1,1,2015-07-18,0.02,1,0 +6824996,"Upper East Side Sublet, Cute Street",7021059,Katie,Manhattan,Upper East Side,40.76806,-73.95227,Private room,59,1,0,,,2,0 +6827028,ROOMY 2BA/3BD - Parking Included,10630723,Nancy,Brooklyn,Bedford-Stuyvesant,40.6888,-73.93545,Entire home/apt,177,3,144,2019-07-02,3.02,2,260 +6829632,Sunny spacious apt at Jefferson L!,5967944,April,Brooklyn,Bushwick,40.7027,-73.92512,Entire home/apt,150,1,0,,,1,0 +6829746,Bright Williamsburg/Shwick Art Loft,28509737,Michael,Brooklyn,Williamsburg,40.70412,-73.93555,Private room,69,14,1,2015-06-23,0.02,2,0 +6829990,Garden/Parlor Apt - Fort Greene,3759488,Isabelle,Brooklyn,Fort Greene,40.6886,-73.97409,Entire home/apt,275,4,1,2015-08-21,0.02,1,146 +6831518,Awesome Location with Best Commute,35788303,Kimihiro,Manhattan,Chelsea,40.74733,-73.99023,Private room,99,1,17,2019-01-01,0.39,1,0 +6832599,Room in Williamsburg opposite park,26185036,Tim,Brooklyn,Williamsburg,40.71647,-73.93824,Private room,65,1,0,,,1,0 +6833000,Studio in the heart of Manhattan,1587123,Raymond,Manhattan,Upper East Side,40.76716,-73.96366,Entire home/apt,135,3,4,2016-05-24,0.09,1,0 +6833049,Sunny Spacious 1BR in West Village,1787313,Lauren,Manhattan,West Village,40.73185,-74.00271,Entire home/apt,150,4,5,2017-12-11,0.10,1,0 +6833395,Amazing panoramic view loft,10767841,Manon,Manhattan,Lower East Side,40.71321,-73.99099,Entire home/apt,2000,1,18,2019-03-10,0.39,1,365 +6833755,New Charming Brooklyn 1 Bed Apartment,2851131,Craig,Brooklyn,Bedford-Stuyvesant,40.68175,-73.91144,Entire home/apt,90,2,23,2019-05-28,3.65,1,190 +6833911,Bright art loft in E. Williamsburg,28509737,Michael,Brooklyn,Williamsburg,40.70299,-73.93585,Private room,59,5,2,2015-09-01,0.04,2,0 +6834972,Floorthru Two Bed & Private Yard,438545,Christie,Brooklyn,Carroll Gardens,40.68276,-74.00016,Entire home/apt,275,4,0,,,1,0 +6835487,"Cozy one bdrm apt, Lower East Side",2947857,Jocelyn,Manhattan,Lower East Side,40.71966,-73.98166,Entire home/apt,215,14,1,2015-08-12,0.02,1,0 +6836485,Lovely and quiet garden studio,14261988,Gretchen,Brooklyn,Flatbush,40.6412,-73.95302,Entire home/apt,70,2,150,2019-06-22,3.34,1,222 +6837529,1 BR available in lovely LES unit,35829854,Ben,Manhattan,Lower East Side,40.72082,-73.98592,Private room,135,1,6,2016-05-07,0.12,1,0 +6843145,"Perfect, 1 block from Central Park",5361360,Michael,Manhattan,Upper West Side,40.78787,-73.97116,Entire home/apt,200,3,6,2017-07-17,0.16,1,0 +6845877,Big & Bright & Elevator on the UES,14171882,Brett,Manhattan,Upper East Side,40.77372,-73.94986,Entire home/apt,120,1,6,2016-09-11,0.12,1,0 +6846956,"ONE-OF-A-KIND, EXPOSED-BRICK, 2-BR LOFT w/ VIEWS",2558534,Nash,Brooklyn,Williamsburg,40.71571,-73.96556,Entire home/apt,85,3,93,2019-06-16,1.90,1,13 +6847053,Room in Sunny & Spacious Uptown Apt,35878048,Avia,Manhattan,Morningside Heights,40.81103,-73.95804,Private room,82,1,0,,,1,0 +6849332,"Clean, Convenient & Calming Space",973817,Carol,Manhattan,Washington Heights,40.85151,-73.93789,Entire home/apt,105,2,0,,,1,0 +6850752,Large Bright Williamsburg Apartment - Lorimer St.,35897162,Monica,Brooklyn,Williamsburg,40.70954,-73.94808,Private room,52,20,6,2018-05-08,0.23,1,0 +6850801,3 Bedroom Kid-Friendly Apartment,27287584,Chana,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.94457,Entire home/apt,250,4,0,,,1,0 +6851685,Hudson Luxury Suite - Water and Bridge Views,33605216,Elam,Manhattan,Washington Heights,40.8395,-73.9447,Private room,145,3,1,2015-07-15,0.02,1,3 +6851700,Private room in quintessential BK!,35902297,Meg,Brooklyn,Carroll Gardens,40.67416,-73.99955,Private room,40,1,0,,,1,0 +6852315,Cozy and ideally located Greenwich village apt,6959884,Josephine,Manhattan,Greenwich Village,40.729,-74.00066,Entire home/apt,245,3,18,2019-07-02,0.38,1,307 +6852731,Cozy apt in very hip Greenpoint!,2407990,Linsy,Brooklyn,Greenpoint,40.72982,-73.95503,Entire home/apt,120,3,2,2015-12-14,0.05,1,0 +6853271,Unique Studio apartment in the heart of Chelsea!,3997451,Maria,Manhattan,Chelsea,40.74153,-74.00036,Entire home/apt,150,2,106,2019-06-30,2.29,1,318 +6853661,"Clean, Spacious LES 1 Bdrm",35914632,Pete,Manhattan,Lower East Side,40.71905,-73.98487,Entire home/apt,250,2,2,2015-09-28,0.04,1,0 +6853752,Three-story house in prime Wburg,946943,Annie,Brooklyn,Williamsburg,40.71332,-73.94952,Entire home/apt,295,2,0,,,3,0 +6853761,Prime Williamsburg sanctuary,946943,Annie,Brooklyn,Williamsburg,40.71238,-73.94776,Entire home/apt,125,4,148,2019-07-03,3.01,3,11 +6854013,Beautiful Penthouse Apartment,22136368,Anna,Brooklyn,Bedford-Stuyvesant,40.68382,-73.9215,Entire home/apt,120,2,0,,,1,0 +6854221,Convenient Room In Greenpoint,14495918,Sam,Brooklyn,Greenpoint,40.73376,-73.95443,Private room,40,7,2,2016-08-24,0.05,1,0 +6854372,Beautiful bedroom in Brooklyn,1461503,Phillip,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92425,Private room,55,1,2,2015-10-25,0.04,1,0 +6854404,Beautiful Apt. Above WTC Memorial,35919822,Christian,Manhattan,Financial District,40.70892,-74.01325,Entire home/apt,130,14,1,2015-09-12,0.02,1,0 +6855514,Clean & sunny private room (fits 3),24260658,Kristy,Manhattan,East Harlem,40.79487,-73.93477,Private room,110,2,68,2019-06-22,1.39,5,44 +6860656,Your Cozy NYC Private Room Getaway!,15783878,Steven,Manhattan,Harlem,40.82094,-73.95622,Private room,185,2,14,2019-06-15,0.33,1,155 +6862191,"2 Bedroom Apartment in Dumbo, Brooklyn",17782625,David,Brooklyn,DUMBO,40.70212,-73.9851,Entire home/apt,245,3,8,2019-05-27,0.16,2,0 +6862482,$100 per night with purchase agreement.,4754282,Daniel,Manhattan,Midtown,40.76493,-73.98066,Entire home/apt,700,2,5,2018-12-23,0.10,1,63 +6862600,Bright Parkside Brownstone,21705761,Jonathan,Brooklyn,Park Slope,40.66722,-73.97811,Entire home/apt,215,2,2,2016-04-05,0.05,1,0 +6863691,BKLYN'S Best 3BR Townhouse W/Garden,700224,Shane & Nicole,Brooklyn,Gowanus,40.68338,-73.98657,Entire home/apt,250,29,16,2019-04-30,0.36,4,300 +6863948,Studio + loft space in Gramercy,3313475,Mimi,Manhattan,Kips Bay,40.74229,-73.98165,Entire home/apt,150,2,2,2015-07-25,0.04,1,0 +6864482,Queer friendly lofted Bedstuy room,35798207,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69468,-73.94729,Private room,80,1,0,,,1,0 +6865053,Bright and Calm in Manhattan's LES,35969865,Justin,Manhattan,Lower East Side,40.71449,-73.9874,Private room,89,3,68,2019-06-15,1.38,1,252 +6865662,"Loft style, chill, charming East Village sanctuary",29480685,Anna,Manhattan,East Village,40.72148,-73.98235,Entire home/apt,244,2,22,2019-07-02,0.45,1,1 +6866040,Pretty Artists Apt Private BR in Williamsburg,844227,Barbara,Brooklyn,Williamsburg,40.71117,-73.95292,Private room,74,3,9,2019-03-19,0.66,1,18 +6866061,Delightful & Roomy 1 Bdrm Apt,4939720,Masha,Brooklyn,Crown Heights,40.66689,-73.95882,Entire home/apt,88,1,8,2016-01-29,0.17,1,0 +6866397,Ideal Manhattan Escape #4,3256433,Ira,Manhattan,Lower East Side,40.72215,-73.9914,Entire home/apt,150,30,17,2019-05-01,0.36,7,0 +6866960,Elegant 3 BR in Victorian Home by Brooklyn College,35983559,Laura,Brooklyn,East Flatbush,40.63868,-73.95049,Entire home/apt,150,4,93,2019-07-03,1.93,3,320 +6867325,Private Cosy Harlem Bedroom,13667779,Miriam,Manhattan,Harlem,40.82443,-73.93843,Private room,40,2,27,2019-06-24,0.55,2,345 +6869363,Location! Upper West Side,35997540,Luis,Manhattan,Upper West Side,40.78748,-73.98023,Entire home/apt,150,1,0,,,1,0 +6869940,Furnished Room in a Spacious Apt,731601,Idil,Queens,Astoria,40.77199,-73.93159,Private room,55,15,1,2015-08-13,0.02,2,0 +6871251,Large UWS Apartment by the Park,34780872,Natalie,Manhattan,Upper West Side,40.7787,-73.98088,Entire home/apt,259,3,20,2017-12-30,0.41,1,0 +6871600,Cozy room in Nolita/SoHo,4271676,Nat,Manhattan,Nolita,40.7214,-73.99635,Private room,100,1,18,2017-06-06,0.38,3,0 +6879485,Charming Classic Brooklyn Railroad,26490481,Matthew,Brooklyn,Greenpoint,40.72424,-73.95303,Entire home/apt,125,1,1,2015-08-29,0.02,1,0 +6880873,Parkside Renovated 1 bedroom,17475096,Rosemary,Brooklyn,Flatbush,40.65194,-73.95997,Entire home/apt,85,2,2,2016-10-03,0.05,2,0 +6880990,En suite room Upper West Side,36055888,Ryan,Manhattan,Harlem,40.83019,-73.94991,Private room,75,2,1,2015-07-26,0.02,1,0 +6881827,Times Square/Hells Kitchen Home,25111426,David,Manhattan,Hell's Kitchen,40.76308,-73.99,Private room,190,2,0,,,1,0 +6882689,Cool centrally located LES apt.,4040200,Bobby,Manhattan,Lower East Side,40.71952,-73.98535,Entire home/apt,198,2,17,2016-04-05,0.35,1,0 +6883096,Brand NEW built luxury Apartment,14510607,Gregory,Queens,Astoria,40.76257,-73.92634,Entire home/apt,300,2,13,2016-10-12,0.27,1,365 +6883404,Chic and homey Chelsea Studio,35651501,Elizabeth,Manhattan,Chelsea,40.73983,-73.9988,Entire home/apt,295,1,17,2019-05-15,0.35,1,175 +6884147,Bedroom with huge windows and space,36072139,Hyun Na,Brooklyn,Bushwick,40.69296,-73.9242,Private room,50,1,0,,,1,0 +6884254,Cozy quiet room off of Broadway,19789003,Mike,Brooklyn,Bedford-Stuyvesant,40.68666,-73.91972,Private room,35,1,1,2015-08-22,0.02,1,0 +6884509,Comfy Room in Williamsburg,640117,Simon,Brooklyn,Williamsburg,40.71314,-73.95535,Private room,80,3,8,2017-09-04,0.17,5,0 +6884647,3 bed 3 bath in Bedstuy brownstone,36074783,Brian,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95211,Entire home/apt,200,5,0,,,1,0 +6884974,Private Bedroom in Cozy Loft,7238334,Ethan,Brooklyn,Greenpoint,40.72253,-73.94733,Private room,110,1,1,2015-07-20,0.02,1,0 +6885369,Beautiful Apt in Lefferts Gardens,1442860,Godfrey,Brooklyn,Flatbush,40.6548,-73.95388,Private room,40,2,32,2019-07-01,0.68,1,82 +6885767,Real New York City Cozy Living,36080537,Samara,Manhattan,Hell's Kitchen,40.75603,-73.99247,Entire home/apt,95,1,0,,,1,0 +6885805,Private room in South Williamsburg,5743711,Frasier,Brooklyn,Williamsburg,40.70748,-73.95503,Private room,75,2,2,2015-10-11,0.04,1,0 +6886371,Bright Large Hell's Kitchen Studio,1694147,Rachel,Manhattan,Hell's Kitchen,40.76734,-73.98676,Entire home/apt,199,3,13,2019-05-28,0.27,1,4 +6887405,Private Room in Comfy NYC Apt!,11081099,Rob,Manhattan,Harlem,40.82878,-73.94625,Private room,50,1,1,2015-06-27,0.02,1,0 +6887755,Spacious and nice 2BR near Subway,21426910,Allen,Brooklyn,Gravesend,40.59627,-73.97287,Entire home/apt,109,2,224,2019-07-05,4.70,2,73 +6892731,"Clean Safe Apartment Kitchen, Wifi Parking +more",36119026,Mila,Brooklyn,Sheepshead Bay,40.58804,-73.95674,Entire home/apt,120,2,15,2019-06-23,0.40,1,334 +6895056,Nice Single room sublet for April 1st onward!,10348305,Devin,Brooklyn,Flatbush,40.63967,-73.96424,Private room,50,27,3,2018-07-31,0.06,1,17 +6895123,"Large, Sunny 1 BR GREENPOINT",7107154,Zyanna,Brooklyn,Greenpoint,40.73659,-73.95354,Entire home/apt,95,5,4,2017-01-01,0.11,1,0 +6896715,Charming 1br apartment in midtown,10489933,Michelle,Manhattan,Midtown,40.76003,-73.96969,Entire home/apt,180,30,0,,,1,177 +6897911,Chic and Cozy Heart of Williamsburg,72773,Guillerma,Brooklyn,Williamsburg,40.72004,-73.95615,Private room,100,3,51,2019-06-22,1.07,1,345 +6898240,Spacious Midtown Retreat!,11395856,Claire,Manhattan,Kips Bay,40.74508,-73.97854,Entire home/apt,350,3,6,2015-12-29,0.13,1,0 +6898600,Bright cozy apartment,32775769,Remigijus,Brooklyn,Midwood,40.61679,-73.95521,Entire home/apt,89,7,5,2019-01-05,0.10,1,251 +6899995,Come to Know New York I,25812962,Claudio & Rose,Manhattan,East Harlem,40.78968,-73.94202,Private room,80,1,39,2019-06-10,0.82,3,306 +6900168,Wanderlust. A perfect private space to unwind.,2831384,Mustafa,Queens,Woodside,40.74198,-73.89558,Entire home/apt,125,1,262,2019-07-06,5.37,1,246 +6901401,Spacious Contemporary Living,36164182,Glender,Brooklyn,Bushwick,40.69712,-73.93325,Entire home/apt,155,2,114,2019-06-30,2.86,3,250 +6901484,Williamsburg - Berry and N 9th,36166165,Johnathon,Brooklyn,Williamsburg,40.71909,-73.95811,Private room,62,1,1,2017-09-17,0.05,1,0 +6901734,Spacious Apt Near Central Park,36167966,Justin,Manhattan,Harlem,40.80054,-73.95497,Entire home/apt,93,12,5,2017-06-29,0.14,1,0 +6901856,Spacious Modern Contemp Living 2,36164182,Glender,Brooklyn,Bushwick,40.69768,-73.93359,Private room,80,2,51,2019-05-11,1.04,3,249 +6902147,Studio Apartment in Crown Heights,88032,Timothy,Brooklyn,Crown Heights,40.67659,-73.95417,Entire home/apt,65,7,0,,,1,0 +6902855,Loft-like Apt on the Park / 18 min to Manhattan,36176332,Marcel,Brooklyn,Flatbush,40.65146,-73.96634,Entire home/apt,120,5,19,2016-07-25,0.39,1,1 +6908140,Lovely Brick Townhouse,21705530,Jessica,Brooklyn,Clinton Hill,40.69439,-73.96898,Entire home/apt,450,7,1,2017-07-12,0.04,1,0 +6908209,PrimChelsea~1BR~Sleeps4~hugeOutdoor,2119276,Host,Manhattan,Chelsea,40.74138,-74.00072,Entire home/apt,155,30,6,2019-03-30,0.13,39,289 +6908837,**Caribbean Blue- 8 mins to JFK **,36205028,Mrs. T,Queens,Jamaica,40.68637,-73.79214,Private room,53,1,189,2019-06-21,3.90,2,348 +6909447,Cozy & perfectly located Studio,36207962,Ariel,Manhattan,Upper West Side,40.78267,-73.97661,Entire home/apt,150,3,13,2015-11-28,0.26,1,0 +6909615,Nifty room near Express A train!,36208205,Jakob,Manhattan,Washington Heights,40.84666,-73.9379,Private room,45,1,1,2015-08-25,0.02,1,0 +6910072,Sunny Room in Bushwick & central AC,36211685,Vienna,Queens,Ridgewood,40.70588,-73.91464,Private room,85,1,1,2015-08-17,0.02,1,0 +6911965,Private Bedroom on Prospect Park,1106323,Sebastian,Brooklyn,Windsor Terrace,40.66036,-73.98214,Private room,59,1,1,2016-04-25,0.03,2,0 +6912211,Retreat Near Manhattan,21183428,Jae (Owen's Wife),Brooklyn,Bedford-Stuyvesant,40.68402,-73.95573,Entire home/apt,122,3,101,2019-05-09,2.08,2,293 +6913023,A Hideaway Room,36227371,Brittney,Brooklyn,Bushwick,40.70035,-73.92316,Private room,75,1,0,,,1,0 +6913240,Bedroom + Study with private bath,15792771,Wenxin,Queens,Rego Park,40.72597,-73.86131,Private room,80,4,2,2015-09-15,0.04,1,0 +6913431,Garden Level Nest in Brooklyn,36229779,Juliana,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95767,Entire home/apt,105,1,9,2015-08-09,0.18,1,0 +6913773,"Home 4 Medical Professionals - The ""Delirium""",26377263,Stat,Brooklyn,Bushwick,40.70376,-73.91765,Private room,47,30,3,2019-02-02,0.07,43,144 +6913795,Nevena's,10716661,Dimitrios,Queens,Ditmars Steinway,40.77228,-73.91345,Entire home/apt,75,3,2,2016-01-31,0.04,1,0 +6913969,"Home 4 Medical Professionals - The ""Necrosis""",26377263,Stat,Brooklyn,Bushwick,40.70393,-73.91679,Private room,47,30,3,2018-08-18,0.06,43,259 +6914268,Room in apartment,36166297,Tejal,Manhattan,Stuyvesant Town,40.7339,-73.97743,Private room,45,1,0,,,1,0 +6914516,Large Bedroom with Private Terrace,36237566,Nora,Manhattan,East Village,40.72714,-73.97894,Private room,100,1,1,2015-11-18,0.02,1,0 +6915467,clean room close to subway station,27962518,Xiangyu,Queens,Elmhurst,40.73713,-73.8741,Private room,85,1,1,2015-07-02,0.02,2,0 +6919797,1BR TSquare with Terrace and View,4112404,Vero,Manhattan,Hell's Kitchen,40.76441,-73.99245,Entire home/apt,269,7,31,2018-06-23,0.66,3,11 +6919971,Studio Apartment on Upper West Side,36268893,Brittany Nicole,Manhattan,Upper West Side,40.80108,-73.9705,Entire home/apt,70,1,1,2016-07-18,0.03,1,0 +6921004,Stunning room factory building apt,1544412,Carlota,Brooklyn,Williamsburg,40.71761,-73.9641,Private room,90,5,18,2019-05-30,0.40,1,37 +6921831,Home Sweet Harlem,36279488,Brian,Manhattan,Harlem,40.8122,-73.95246,Private room,172,3,8,2017-10-30,0.17,1,0 +6921974,Williamsburg Studio,35921273,Andrew,Brooklyn,Williamsburg,40.7173,-73.9532,Entire home/apt,160,1,1,2015-07-14,0.02,1,0 +6921984,The Perfect West Village Stay!,619693,Nick,Manhattan,West Village,40.73323,-74.00434,Entire home/apt,198,2,3,2016-10-22,0.07,1,0 +6922490,Perfect Location! Large One Bedroom,742729,Michael,Manhattan,East Village,40.72691,-73.98534,Entire home/apt,154,2,37,2019-06-18,0.81,1,0 +6922505,Large 2 Bedrooms Apt. in Greenpoint/Williamsburg,12738054,Aude,Brooklyn,Greenpoint,40.72532,-73.95338,Entire home/apt,230,2,6,2019-06-04,0.13,2,272 +6922758,Scandi Apartment w/ Roofdeck & Manhattan Views,896708,Kat,Brooklyn,Cobble Hill,40.68391,-73.99583,Entire home/apt,285,5,4,2019-03-17,0.36,2,19 +6923000,Williamsburg Luxury Apartment,1164568,Emilie,Brooklyn,Williamsburg,40.71199,-73.96022,Entire home/apt,180,3,3,2016-08-25,0.06,1,0 +6923161,Cozy room just off Central Park,36285615,Selim,Manhattan,Harlem,40.80152,-73.9509,Private room,90,2,12,2016-07-05,0.24,1,0 +6924363,Private bedroom in NYC,12072392,Valerie,Manhattan,Harlem,40.80286,-73.94997,Private room,120,1,0,,,1,0 +6924400,West Village Apartment With Character,32767789,Josh,Manhattan,Greenwich Village,40.73256,-74.00008,Private room,60,14,0,,,1,0 +6924793,Private Apt. Downtown LES. 2 blocks from subway.,4019055,Katherine,Manhattan,Lower East Side,40.7179,-73.98477,Entire home/apt,99,2,57,2019-01-28,1.17,1,0 +6924942,Perfect Spot while visiting NYC,1325961,Chris,Manhattan,East Harlem,40.79721,-73.94328,Entire home/apt,111,3,6,2017-08-25,0.13,2,0 +6925777,Lofty/Sunny Private Rm in Bushwick!,26330490,Sandy,Brooklyn,Bushwick,40.70479,-73.92316,Private room,40,7,5,2016-08-09,0.11,1,0 +6926449,Lovely room off Prospect Park,36308476,Erica,Brooklyn,Flatbush,40.64924,-73.96714,Private room,35,4,2,2016-08-21,0.06,1,157 +6926686,CLEAN and COMFY room avail in SoHo!,4667102,Alexia,Manhattan,Little Italy,40.7185,-73.99805,Private room,95,5,1,2015-08-24,0.02,1,0 +6927027,Charming & private room in W'burg,503555,Phyl,Brooklyn,Williamsburg,40.71488,-73.96148,Private room,89,8,2,2015-12-13,0.04,3,0 +6929738,CLOSE TO EAST SIDE HOSPITALS- Modern 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper East Side,40.76044,-73.96068,Entire home/apt,195,30,7,2018-10-30,0.20,34,304 +6930780,Beautiful Sunny Top Floor 1BD Flat,36333834,Paul,Brooklyn,Bedford-Stuyvesant,40.68378,-73.93573,Entire home/apt,139,4,152,2019-06-13,3.26,1,281 +6933326,STUNNING NYC ROOM RIVER VIEW/LIGHT!,25168888,Svjetlana,Manhattan,Harlem,40.82231,-73.95626,Private room,75,3,14,2019-01-02,0.29,3,20 +6933582,Cozy home in the heart of Astoria,35914251,Loren,Queens,Astoria,40.76371,-73.92049,Entire home/apt,100,4,2,2015-12-31,0.04,1,0 +6934249,"Location, light, and charm",24465231,Gael,Brooklyn,Greenpoint,40.72464,-73.9533,Entire home/apt,149,7,7,2018-07-01,0.15,1,0 +6934770,Cozy and Large 1 bedroom Apartment,36356923,Ali,Queens,Astoria,40.76348,-73.91995,Private room,55,1,0,,,1,0 +6936794,Modern 3 Beds in Gorgeous Building,12028820,Kim,Manhattan,Upper East Side,40.76348,-73.95884,Entire home/apt,900,7,28,2019-05-05,0.58,1,340 +6936903,Williamsburg Oasis w/ Private Yard!,36369314,Rinat,Brooklyn,Williamsburg,40.71616,-73.94352,Entire home/apt,199,7,3,2016-08-07,0.06,1,0 +6937480,BUSHWICK Beaut! Private bed & bath,36373090,Erika,Brooklyn,Bushwick,40.70043,-73.92167,Private room,70,5,1,2015-08-19,0.02,1,0 +6937871,Large Private Room on Prospect Park,1106323,Sebastian,Brooklyn,Windsor Terrace,40.66036,-73.98244,Private room,65,3,0,,,2,0 +6937897,Tasteful Duplex in Gramercy Park,36375657,John,Manhattan,Kips Bay,40.73873,-73.98153,Shared room,800,30,1,2015-09-14,0.02,1,0 +6938378,Big Sunny room in NYC (M5),5164854,Lilia,Manhattan,Harlem,40.81961,-73.93937,Private room,43,6,6,2017-12-18,0.12,8,324 +6938827,Prime apartment in prime Park Slope location!,36381094,Gidon,Brooklyn,Park Slope,40.67177,-73.97882,Entire home/apt,229,3,22,2018-12-26,0.46,1,0 +6939024,Chic 1 BR in East Village,34930811,Paloma,Manhattan,East Village,40.72517,-73.98742,Entire home/apt,195,1,15,2015-12-06,0.31,1,0 +6939175,Beautiful Greenpoint Apartment,2419331,Ameira,Brooklyn,Greenpoint,40.73407,-73.95314,Entire home/apt,150,14,3,2016-04-18,0.06,1,0 +6939597,Full garden apartment in Brownstone,2723812,Libertad,Bronx,Mott Haven,40.80993,-73.92613,Entire home/apt,100,2,57,2019-06-23,1.17,2,284 +6939638,Heart of Tribeca next to everything,36307255,Josh,Manhattan,Tribeca,40.715,-74.0094,Entire home/apt,700,1,8,2016-01-03,0.16,1,0 +6939668,Lovely 1BR on the Upper West Side,36387290,Megan,Manhattan,Upper West Side,40.78147,-73.97806,Entire home/apt,150,1,0,,,1,0 +6939719,Bright and Spacious Two Room Studio in Midtown!!!,36006178,Eric,Manhattan,Hell's Kitchen,40.76497,-73.98848,Entire home/apt,300,7,8,2018-10-08,0.21,1,0 +6939758,Mid-century Apt. Next To Subway,3266476,Jack,Manhattan,Kips Bay,40.74206,-73.98014,Private room,100,5,11,2018-05-31,0.23,1,0 +6939859,"Nice room, very close to the subway",36388501,Loralee,Brooklyn,Williamsburg,40.70658,-73.93801,Private room,50,3,5,2015-09-16,0.10,1,0 +6940108,Classic Upper East Side 1 Bed (king bed) Apt,13031379,Esther,Manhattan,Upper East Side,40.77252,-73.9556,Entire home/apt,140,2,57,2019-06-16,1.18,1,0 +6941601,Manhattan Club,36400642,Abdul Rahman,Manhattan,Midtown,40.76448,-73.98187,Entire home/apt,175,7,0,,,1,0 +6942211,Sunny UWS Apt Steps to Central Park,10124757,Ning,Manhattan,Upper West Side,40.78905,-73.96748,Entire home/apt,185,8,3,2016-01-03,0.06,1,0 +6944665,Gorgeous room!! Open for summer!,36413917,Kory,Brooklyn,Williamsburg,40.70703,-73.95234,Private room,73,14,0,,,1,0 +6946479,Lovely 3 Story Cottage in Park Slope,204472,Raul,Brooklyn,South Slope,40.66672,-73.98462,Entire home/apt,250,3,2,2016-08-28,0.04,1,0 +6947017,Private room. Amazing location!,35968845,Andre,Manhattan,Upper West Side,40.79421,-73.97097,Private room,89,3,1,2015-07-26,0.02,2,0 +6947196,5th ave Flatiron Loft,36425465,Eli,Manhattan,Chelsea,40.73857,-73.99256,Entire home/apt,800,15,0,,,1,0 +6947477,Private room. Amazing location!,35968845,Andre,Manhattan,Upper West Side,40.79265,-73.97108,Private room,89,1,1,2015-07-19,0.02,2,0 +6948161,Awesome Studio in Chelsea,24806455,Julian,Manhattan,Chelsea,40.74815,-73.99417,Entire home/apt,250,1,0,,,1,0 +6948441,Cozy 2BR at Chelsea with Balcony,2176547,Amy,Manhattan,Chelsea,40.74723,-73.9916,Entire home/apt,220,31,4,2019-05-27,0.12,1,54 +6949104,"Chelsea Flat-Gorgeous, Bright, Safe",6884282,Matthew,Manhattan,Chelsea,40.74682,-74.00417,Private room,135,5,1,2015-08-09,0.02,1,0 +6949526,"Brooklyn's heart, + Ft Greene! 1day free bicycle",36434721,Gabriel,Brooklyn,Fort Greene,40.68503,-73.9742,Entire home/apt,160,1,70,2019-06-30,1.43,1,356 +6949554,Clean bedroom with private bathroom,10609847,Kristie,Brooklyn,Williamsburg,40.70781,-73.95553,Private room,93,3,0,,,1,0 +6950074,"Beautiful, Cozy Apartment",6434434,Jenna,Queens,Ditmars Steinway,40.7789,-73.90688,Entire home/apt,110,2,14,2017-12-10,0.29,1,0 +6950477,Cozy Studio in Historic Brownstone,7253422,Nate',Manhattan,Harlem,40.82599,-73.94545,Entire home/apt,76,1,3,2015-08-22,0.06,1,0 +6950807,Spacious 1bdrm in Long Island City,36441990,Samir,Queens,Astoria,40.75671,-73.91749,Entire home/apt,105,1,5,2016-08-13,0.10,1,0 +6952302,2BR- Downtown Brooklyn,31883140,Fabiana,Brooklyn,Fort Greene,40.69173,-73.97756,Entire home/apt,120,4,1,2016-07-04,0.03,1,0 +6953013,One bedroom apt in East Harlem,36453453,Khaled,Manhattan,East Harlem,40.79063,-73.94718,Entire home/apt,110,5,3,2017-07-24,0.06,1,0 +6954288,Cozy and Chic 1 Bedroom!!,14379468,Pamela,Manhattan,Harlem,40.81254,-73.94118,Entire home/apt,125,1,4,2016-11-20,0.09,1,0 +6955143,Large Sunny Private Bedroom,16533401,Aaron,Brooklyn,Gowanus,40.67781,-73.9851,Private room,130,1,0,,,1,0 +6955782,The Sweet Spot!,21976382,Emily,Brooklyn,Boerum Hill,40.68564,-73.98408,Entire home/apt,105,14,48,2019-05-23,1.02,1,74 +6956358,Spacious & happy gem in LES!,7013442,Rafael,Manhattan,Lower East Side,40.71996,-73.98729,Private room,100,3,2,2015-08-30,0.04,1,0 +6956731,New! Beautifully Designed & Modern,13347167,AFI Apartments,Manhattan,Upper East Side,40.77566,-73.95335,Entire home/apt,118,30,4,2019-03-31,0.09,29,258 +6956956,SPACIOUS Room Near Manhattan!,18091740,Brittany,Brooklyn,Williamsburg,40.70198,-73.947,Private room,70,4,1,2016-12-08,0.03,1,0 +6957168,Charming Carroll Gardens 2 bed apt,22346913,Gideon,Brooklyn,Carroll Gardens,40.68153,-74.0016,Entire home/apt,220,2,118,2019-06-19,2.51,1,277 +6957272,"Beautiful, spacious & sunny 1BR",15647782,Reinier,Manhattan,Upper West Side,40.80271,-73.96853,Entire home/apt,155,4,10,2017-05-12,0.21,1,0 +6957328,Williamsburg❤️Central Location Queen Bed A/C,330976,Daniel,Brooklyn,Williamsburg,40.70875,-73.95364,Private room,85,1,20,2018-07-27,0.42,1,0 +6958652,Brooklyn Room Available [furnished],33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93153,Private room,40,20,42,2019-06-09,1.12,2,257 +6958924,Upper WestSide NYC Central Park II,36489857,Janice,Manhattan,Upper West Side,40.78768,-73.97238,Entire home/apt,85,3,29,2018-12-30,0.75,1,309 +6959212,A Well Equipped Studio,28601986,Isiah,Manhattan,East Harlem,40.79952,-73.93502,Entire home/apt,84,3,10,2019-01-02,0.21,1,0 +6965441,1 Bedroom on Tree Lined Street in Chelsea,19228782,Ben,Manhattan,Chelsea,40.74438,-74.00178,Entire home/apt,150,3,2,2016-06-14,0.05,1,1 +6965529,Big comfy space close to Yankees.,2001830,Jose And Ysaira,Bronx,Morris Heights,40.85073,-73.9128,Private room,50,3,20,2019-04-22,0.47,2,316 +6966936,Single Family Bushwick Oasis,36208562,Rebecca & Warren,Brooklyn,Bushwick,40.69847,-73.92787,Entire home/apt,250,2,23,2016-10-29,0.49,1,0 +6966985,Large Room in Central Apt,2714997,Shirly,Manhattan,Upper West Side,40.801,-73.96647,Private room,70,30,76,2018-07-11,1.57,1,0 +6967201,Huge Room on Central Park,36530547,Tj,Manhattan,Upper West Side,40.79126,-73.96738,Private room,110,1,0,,,1,0 +6967305,Prospect Heights garden apartment,36531150,Stephanie,Brooklyn,Prospect Heights,40.67886,-73.96802,Entire home/apt,164,1,2,2015-08-16,0.04,1,0 +6967861,A huge apartment near Manhattan,36534042,Rabie,Brooklyn,Fort Hamilton,40.62084,-74.03739,Entire home/apt,120,7,1,2015-08-01,0.02,1,0 +6968488,One bedroom in Brooklyn-Fort Greene,8080357,Kathryn,Brooklyn,Fort Greene,40.69246,-73.97171,Private room,55,4,0,,,1,0 +6968520,Entire Townhouse in Red Hook 2 unit,36537579,Amyt,Brooklyn,Red Hook,40.67819,-74.00924,Entire home/apt,500,1,0,,,1,0 +6968737,Park Slope Brooklyn for July,36538690,Thomas,Brooklyn,South Slope,40.6648,-73.98044,Entire home/apt,224,4,1,2015-07-31,0.02,1,0 +6969011,"BIG Beautiful private bedroom, 5 minutes to subway",107016,Grace,Brooklyn,Crown Heights,40.67618,-73.95133,Private room,47,14,9,2019-04-04,0.19,1,8 +6969425,Large Room w/ personal Bath in Bed-Wick Near All!,12906455,Jennifer,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93333,Private room,61,2,29,2019-06-22,0.59,1,5 +6969473,SOHO GEM 2750 SQ FT,30247261,Nima,Manhattan,Little Italy,40.72039,-73.99683,Entire home/apt,999,7,1,2015-12-27,0.02,1,0 +6970005,"Artist home, Greenwich Village, NYC",23026033,Charlotte,Manhattan,Greenwich Village,40.73104,-73.99708,Entire home/apt,230,7,1,2015-09-19,0.02,1,0 +6970372,*RAZZMATAZZ* Upper East Side 2 Bedroom,25237492,Juliana,Manhattan,Upper East Side,40.76112,-73.9619,Entire home/apt,150,30,12,2018-11-14,0.27,34,298 +6970776,*ESSENTIAL* Convenient Studio- Upper East Side!,25237492,Juliana,Manhattan,Upper East Side,40.76216,-73.96195,Entire home/apt,115,30,12,2019-05-02,0.26,34,331 +6970965,"Cozy and Spacious, 1 Bedroom, Astoria",36551297,Sebastian,Queens,Astoria,40.76194,-73.91881,Private room,70,2,8,2016-12-23,0.16,1,0 +6971141,Upper East Side 2 bedroom- close to Hospitals-,25237492,Juliana,Manhattan,Upper East Side,40.76222,-73.9603,Entire home/apt,325,30,2,2019-06-08,0.21,34,191 +6971348,Close to East Side Hospitals- Modern 2 Bedroom Apt,25237492,Juliana,Manhattan,Upper East Side,40.76249,-73.96217,Entire home/apt,155,30,6,2019-01-31,0.14,34,295 +6971639,ACADIA Spacious 2 Bedroom Apt - Close to Hospitals,25237492,Juliana,Manhattan,Upper East Side,40.76021,-73.96157,Entire home/apt,165,30,10,2018-11-18,0.22,34,346 +6971750,*ENCHANTMENT* Upper East Side 2 bedroom- Sunny!,25237492,Juliana,Manhattan,Upper East Side,40.76244,-73.96031,Entire home/apt,165,30,9,2018-09-30,0.20,34,280 +6971871,*JAMES* Amazing Spacious 2 Bedroom- Bright!,25237492,Juliana,Manhattan,Upper East Side,40.76035,-73.96133,Entire home/apt,155,30,8,2019-06-11,0.27,34,339 +6972046,Large Private Upper West Side Room,23574544,Maxwell,Manhattan,Upper West Side,40.78567,-73.97665,Private room,150,1,7,2015-09-26,0.14,1,0 +6972089,*ODYSSEY* Sunny 1 Bedroom Apt- Bright & Cheery!,25237492,Juliana,Manhattan,Upper West Side,40.78181,-73.98466,Entire home/apt,130,30,10,2019-04-01,0.26,34,303 +6972192,*WINDSONG* Serene 1 BR in Townhouse near Park,25237492,Juliana,Manhattan,Upper West Side,40.78289,-73.98477,Entire home/apt,125,30,17,2019-06-17,0.38,34,202 +6972271,"2BR Cozy, Large & Central Apartment",31213925,Philippe,Manhattan,Midtown,40.74462,-73.98272,Entire home/apt,150,2,0,,,1,0 +6972534,Nice room in a super nice apartment,21803081,Terry,Brooklyn,Williamsburg,40.71591,-73.9417,Private room,55,7,2,2015-08-16,0.04,1,0 +6972554,Nice 1 BR Apartment at Central Park,17155244,Drew,Manhattan,East Harlem,40.7984,-73.94777,Entire home/apt,155,4,4,2015-09-08,0.08,1,0 +6972673,Spacious one bedroom with en-suite,13698410,Rawan,Brooklyn,Clinton Hill,40.69489,-73.96496,Private room,80,7,12,2017-06-25,0.25,1,0 +6973011,Beautiful Large Private 1 Bd w/ Mediation Space,19247979,Neelam,Brooklyn,Flatbush,40.63488,-73.96546,Entire home/apt,85,3,0,,,1,0 +6973159,Bed-stuy belle,4225192,Gaby,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94653,Private room,40,1,1,2015-07-11,0.02,1,0 +6973286,Private bedroom w/ roofdeck NO CLEANING FEE,12374283,Ryan,Manhattan,East Village,40.72297,-73.97973,Private room,99,3,12,2019-04-29,0.26,4,0 +6973292,Book Now & Save: Spend July in New York City!,5577926,Lou,Queens,Astoria,40.76583,-73.91086,Private room,59,1,108,2019-06-06,2.23,4,0 +6973463,"Penthouse Apt w/private roofdeck, NO cleaning fee",12374283,Ryan,Manhattan,East Village,40.72403,-73.97783,Entire home/apt,300,2,1,2017-11-26,0.05,4,0 +6973598,Large bedroom in Astoria/LIC area,36566148,Felicia,Queens,Long Island City,40.75328,-73.92244,Private room,55,1,5,2015-07-28,0.10,1,0 +6974249,Prime Williamsburg Location,6623402,Robert,Brooklyn,Williamsburg,40.7196,-73.95599,Entire home/apt,125,1,6,2016-08-28,0.13,1,0 +6974728,"Private Room, Bath & Terrace on UWS",36571434,Zack,Manhattan,Upper West Side,40.80016,-73.96448,Private room,139,2,24,2018-06-22,0.50,1,20 +6974801,"1BR with Roof, Balcony, best 'hood!",21175506,Peter,Brooklyn,Greenpoint,40.73006,-73.95694,Entire home/apt,165,1,1,2015-07-03,0.02,1,0 +6975129,"Large room, cozy, 15min Manhattan",36575095,Hana,Brooklyn,Clinton Hill,40.68409,-73.96531,Private room,50,1,1,2015-07-03,0.02,1,0 +6976045,Cozy apt in lively Carroll Gardens,1373836,Carlotta,Brooklyn,Carroll Gardens,40.68151,-73.99285,Entire home/apt,150,5,3,2016-12-27,0.06,1,0 +6977204,Private Room in Very Convenient Location,687062,Sarah,Manhattan,Harlem,40.81398,-73.95213,Private room,65,1,142,2019-06-21,4.22,1,93 +6982174,Room for rent shared bathroom,36610302,Eudelia,Brooklyn,Bedford-Stuyvesant,40.68682,-73.92019,Private room,50,1,0,,,1,0 +6985434,*SKYTRAIN* Studio Loft Apartment - Great Space!,25237492,Juliana,Manhattan,Upper West Side,40.78201,-73.98379,Entire home/apt,120,30,9,2019-04-30,0.24,34,339 +6985888,*TERRA GARDEN* 1 Bedroom Garden Apartment,25237492,Juliana,Manhattan,Upper West Side,40.7818,-73.98483,Entire home/apt,115,30,7,2018-10-31,0.19,34,325 +6987811,Cozy Brooklyn Room W/ Skylight,23582893,Laramie,Brooklyn,Bushwick,40.69054,-73.91446,Private room,51,13,20,2019-06-26,0.41,8,14 +6988265,Great for a family of 4!,36634420,Kobi,Manhattan,Washington Heights,40.85183,-73.94022,Entire home/apt,120,1,0,,,1,0 +6988793,"Perfect for Cat, Book, Park Lovers!",13857446,Laura,Brooklyn,Flatbush,40.65371,-73.95623,Entire home/apt,90,2,12,2015-12-19,0.25,1,0 +6988794,Private Room in large 2 bedroom apt,36641477,David,Queens,Forest Hills,40.724,-73.84962,Private room,75,3,1,2015-08-31,0.02,1,0 +6988905,A Perfect Midtown Studio (24/hr Doorman),36133913,Matt,Manhattan,Midtown,40.7544,-73.97345,Entire home/apt,190,2,25,2018-11-19,0.51,1,4 +6989258,Cozy Gem in Harlem Close to ALL!,7339760,Maritza,Manhattan,East Harlem,40.79243,-73.93952,Entire home/apt,130,2,1,2015-08-13,0.02,1,0 +6989436,Spanish Harlem with terrace.,36644635,Ingrid,Manhattan,East Harlem,40.79229,-73.94962,Private room,80,2,142,2018-12-16,3.05,1,0 +6990524,3BR Gramercy Apt in heart of NYC,36650631,Alissa,Manhattan,Kips Bay,40.73912,-73.9825,Entire home/apt,300,1,0,,,1,0 +6991749,NO LONGER AVAILABLE,16978260,Dominque,Manhattan,Harlem,40.81161,-73.94306,Shared room,70,1,0,,,1,365 +6991910,"Discount! Mins to SOHO -Cozy, Good Sized Bedroom",36656552,Kandee,Manhattan,Lower East Side,40.71947,-73.99327,Private room,150,1,2,2016-09-23,0.04,3,0 +6992300,Tranquility On Riverside,24530713,Byron,Manhattan,Harlem,40.82416,-73.95306,Private room,75,1,11,2019-05-29,0.25,3,332 +6992310,A Serene NYC Skyline Room w Breakfast!,18260299,Ota,Brooklyn,Bushwick,40.69347,-73.90703,Private room,50,30,2,2018-07-06,0.04,6,5 +6992831,Big 1 Bedroom Brooklyn Ditmas Park,36663321,Mel,Brooklyn,Flatbush,40.63504,-73.96603,Private room,60,3,173,2019-06-25,3.52,1,281 +6992939,"Beautiful Cute Studio, Fort Greene",1281637,Jessica,Brooklyn,Fort Greene,40.6873,-73.97225,Entire home/apt,140,2,1,2015-08-24,0.02,1,0 +6992973,1 Bedroom in Prime Williamsburg,5162530,,Brooklyn,Williamsburg,40.71838,-73.9563,Entire home/apt,145,1,0,,,1,0 +6993265,Huge Loft - Heart of Williamsburg,36666388,Gabriel,Brooklyn,Williamsburg,40.7166,-73.96379,Entire home/apt,375,2,0,,,1,0 +6994064,The Most Efficient Efficiency Ever,35928174,Greg,Brooklyn,Williamsburg,40.70458,-73.94095,Entire home/apt,110,2,15,2019-07-01,0.31,1,12 +6994259,Beautiful apartment in awesome Clinton Hill!,36673376,Xristina&Keith,Brooklyn,Bedford-Stuyvesant,40.69213,-73.95869,Entire home/apt,100,15,5,2019-05-20,0.26,1,24 +6999056,Manhattan at its best! Trendy area,415502,Enrica,Manhattan,Harlem,40.80418,-73.95513,Private room,70,1,3,2015-08-21,0.06,1,0 +7001872,Perfect UES; steps from Park Ave,36708202,Robert,Manhattan,Upper East Side,40.76425,-73.96811,Entire home/apt,195,7,26,2019-06-30,0.54,1,1 +7002139,Must Love Dogs / Bushwick Brooklyn,2720363,Ange,Brooklyn,Bushwick,40.68802,-73.91474,Private room,125,2,4,2019-06-01,0.19,1,310 +7002250,Sunny studio in the Upper East Side,36452416,Allie,Manhattan,Upper East Side,40.77138,-73.94809,Entire home/apt,95,14,2,2017-09-16,0.06,1,4 +7002269,15 min walk to Prospect Park!,10945786,Keith,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94882,Private room,30,6,1,2015-09-17,0.02,1,0 +7002406,Near Columbia University,36710507,Tao,Manhattan,Morningside Heights,40.81514,-73.95954,Private room,80,1,0,,,1,0 +7002884,Studio with East River View,36713105,Markus,Manhattan,East Harlem,40.78551,-73.94167,Entire home/apt,99,3,4,2016-06-15,0.10,1,0 +7002915,Charming UWS 1-bedroom w/loft,1599175,Louise,Manhattan,Upper West Side,40.77828,-73.9764,Entire home/apt,165,3,1,2017-03-20,0.04,1,0 +7003507,Whole Apartment - Beautiful Sunny Studio,6968630,Doug,Brooklyn,Crown Heights,40.67627,-73.94775,Entire home/apt,95,4,5,2018-07-23,0.10,1,1 +7003697,Furnished room in Astoria apartment,20582832,Kathrine,Queens,Astoria,40.7681,-73.91651,Private room,10000,100,2,2016-02-13,0.04,1,0 +7003788,Luxury Apt 10mins Manhattan,21773199,Joo,Queens,Long Island City,40.74406,-73.94504,Entire home/apt,149,4,4,2015-10-17,0.09,1,0 +7004408,Cozy & Zen Manhattan Soho Studio,21641864,Yann,Manhattan,SoHo,40.72745,-74.0027,Entire home/apt,190,6,61,2019-06-07,1.27,1,275 +7006151,Warm Cozy Manhattan Studio,36727985,Patricia,Manhattan,Midtown,40.74379,-73.98795,Entire home/apt,177,3,22,2019-06-21,0.45,1,0 +7006494,Chelsea Square Apartment,36726560,Curtis,Manhattan,Chelsea,40.74613,-74.00468,Entire home/apt,350,1,0,,,1,0 +7009152,Four stops to Manhattan!,22908412,Donna,Brooklyn,Crown Heights,40.67259,-73.95831,Private room,65,2,155,2019-06-22,3.17,1,117 +7010135,Upper East Side - 1 Bedroom Queen,24706492,Dani,Manhattan,Upper East Side,40.77734,-73.95779,Shared room,130,7,0,,,1,0 +7010681,Gorgeous Garden Apt Steps To Park,36754170,Steve,Brooklyn,Prospect-Lefferts Gardens,40.65703,-73.95964,Entire home/apt,110,1,2,2015-08-10,0.04,1,0 +7015831,Relaxing bedroom in 6br apartment,36029533,John,Brooklyn,Bushwick,40.69034,-73.91666,Private room,35,1,1,2015-07-28,0.02,1,0 +7017768,W.B. Spacious Contemporary Living 3,36164182,Glender,Brooklyn,Bushwick,40.6969,-73.93435,Private room,75,2,46,2019-05-07,0.94,3,256 +7018619,Cozy Bedroom in Renovated Harlem Apartment,4783045,Delesia,Manhattan,Harlem,40.81435,-73.94588,Private room,52,2,1,2016-07-20,0.03,1,0 +7019122,Giant Sunny East Williamsburg LOFT!,1733462,Kim,Brooklyn,Williamsburg,40.71351,-73.92999,Entire home/apt,160,4,40,2019-06-20,0.83,1,138 +7019534,Beautiful convenient Brooklyn loft,34908118,Linda,Brooklyn,Williamsburg,40.70711,-73.95136,Entire home/apt,100,3,5,2016-12-14,0.11,1,0 +7020266,Private room in sunny apt.,3524653,Simona,Brooklyn,Williamsburg,40.71688,-73.94162,Private room,90,2,18,2019-05-20,0.37,1,280 +7020776,Mid Century Beauty In East Village,6406576,Wendy,Manhattan,East Village,40.72795,-73.98503,Entire home/apt,250,5,0,,,1,0 +7021346,Nice and Cozy Room,6661559,Melissa,Manhattan,East Village,40.72294,-73.9857,Private room,99,1,0,,,1,0 +7023033,♡Private Rm/Women's Safe Art Home♡,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.93208,Private room,99,1,4,2015-10-07,0.08,3,189 +7023437,Loft rental off of Graham!,1298759,Frances,Brooklyn,Williamsburg,40.71303,-73.94063,Entire home/apt,220,7,2,2016-08-23,0.04,1,0 +7023583,LG Bright Apartment,36816110,Katie,Manhattan,Morningside Heights,40.80481,-73.96375,Private room,45,21,4,2018-01-06,0.09,1,0 +7023636,"Safe,quiet,cozy,Washington Hts Apt",36816089,Lynn,Manhattan,Washington Heights,40.84454,-73.94188,Private room,70,1,0,,,1,0 +7023739,Charming One Bedroom in UES!,23833056,Mira,Manhattan,Upper East Side,40.7688,-73.9535,Private room,150,1,0,,,1,0 +7023818,Near Central Park & Grand Central,36817279,Steve,Manhattan,Midtown,40.7587,-73.96705,Private room,105,2,17,2019-04-28,0.55,1,190 +7024079,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.80395,-73.96531,Private room,50,3,3,2015-08-17,0.06,2,0 +7024138,Sunny - Large Two Bedroom,12930988,Be,Manhattan,Upper East Side,40.78402,-73.94974,Entire home/apt,222,2,94,2019-06-23,2.16,1,281 +7024303,LIGHTFILLED ONE BEDROOM LOFT,2750745,Sarah,Brooklyn,Bedford-Stuyvesant,40.69039,-73.95947,Entire home/apt,120,2,4,2017-10-29,0.08,1,0 +7024342,"Custom Designed Cozy Garden Apt,",36579485,Jean& Toney,Brooklyn,Canarsie,40.64574,-73.90781,Entire home/apt,600,7,0,,,3,365 +7024474,Beautiful Private Room,15929157,Christina,Brooklyn,East New York,40.6724,-73.88118,Private room,34,20,29,2019-03-30,0.59,3,192 +7024538,Sublet entire apt in Brooklyn,16112564,Laszlo Jakab,Brooklyn,Brooklyn Heights,40.69382,-73.99334,Entire home/apt,130,7,1,2015-06-29,0.02,1,0 +7024774,Our beautiful apt in Fort Greene,703023,Rebecca,Brooklyn,Fort Greene,40.69276,-73.97061,Entire home/apt,205,3,3,2019-06-30,0.06,1,0 +7024778,Charming & Modern One Bedroom in BK,238354,Israel,Brooklyn,Clinton Hill,40.68524,-73.9607,Entire home/apt,150,3,125,2019-06-25,2.60,1,271 +7025026,Prime West Village w/Outdoor Patio,3011750,Drew,Manhattan,West Village,40.73669,-74.00375,Entire home/apt,149,3,5,2016-05-15,0.10,1,0 +7025693,Beautiful Brooklyn Brownstone,3743867,Megan,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95275,Private room,100,1,0,,,1,0 +7026258,Airy Living Room | 15 min. to GC,33736005,Sarah,Queens,Sunnyside,40.74439,-73.92163,Shared room,50,1,1,2015-06-28,0.02,2,0 +7028199,NO FEE RENTAL *Lease Takeover Modern Apt Downtown,4051711,Monica,Manhattan,Financial District,40.70809,-74.0017,Entire home/apt,210,1,0,,,1,0 +7031803,1 bdr in the heart of Harlem,1971850,Jonathan,Manhattan,Harlem,40.81054,-73.94447,Private room,135,1,0,,,1,0 +7032396,Large 1Br Apt + Balcony in LES!,3716646,Elena,Manhattan,Lower East Side,40.72115,-73.98308,Entire home/apt,240,5,1,2015-09-16,0.02,1,0 +7032855,Clean & Cozy- Private Room by Park and Subway!,7651357,Jayanthi,Brooklyn,Flatbush,40.65452,-73.9596,Private room,48,2,55,2018-06-14,1.12,1,0 +7032930,BROWNSTONE DUPLEX HUGE 1 BEDROOM,14104350,Irving,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94232,Entire home/apt,90,5,25,2019-06-03,0.53,2,347 +7033271,Amazing room in uptown Manhattan,27439022,Boris,Manhattan,Washington Heights,40.85008,-73.94277,Private room,85,2,95,2019-07-06,1.96,1,321 +7034609,Comfy room close to Columbia,36871638,Francisco,Manhattan,Morningside Heights,40.81142,-73.95978,Private room,70,4,5,2018-01-02,0.10,1,0 +7034787,Furnished Bedroom in 2 Bedroom apt.,36881439,Etkin,Queens,Long Island City,40.756,-73.9205,Private room,60,7,0,,,1,365 +7034953,"Elegant 1BR, Private Bath in Brownstone",9492212,Emily And Joel,Brooklyn,Park Slope,40.6688,-73.97865,Private room,139,1,184,2019-02-10,3.86,4,0 +7035051,park slope duplex with yard,33821265,Liz,Brooklyn,Park Slope,40.67792,-73.98035,Private room,200,1,0,,,1,0 +7035513,Sunny 1BR on UES.,36885571,Vitaly,Manhattan,Upper East Side,40.77098,-73.95034,Entire home/apt,153,1,76,2019-06-23,1.61,1,305 +7035579,Bright spacious 1BR w high ceilings,36885622,James,Manhattan,Upper West Side,40.7855,-73.97642,Entire home/apt,125,1,0,,,1,0 +7036079,2BR apt. in converted church with large terrace,5781885,Annika,Brooklyn,Cobble Hill,40.68836,-73.99763,Entire home/apt,285,6,6,2018-10-27,0.13,1,0 +7036285,Couch or space in shared apartment,36889987,Lisa,Manhattan,East Village,40.72815,-73.97598,Shared room,100,1,0,,,1,0 +7036290,NYC Chauncey 2 .20 min to manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68237,-73.91977,Private room,50,1,123,2019-03-17,2.95,4,349 +7036435,Quiet Bushwick Bedroom,5476372,Stonie,Brooklyn,Bushwick,40.69289,-73.92312,Private room,35,1,3,2017-01-11,0.06,1,0 +7037537,Gigantic Private Brooklyn Apartment,36897569,Nikki,Brooklyn,Greenpoint,40.72442,-73.93957,Entire home/apt,115,10,2,2016-07-06,0.04,1,0 +7037585,Sunny & Spacious near Central Park,2170381,Guida,Manhattan,East Harlem,40.79674,-73.94449,Private room,73,5,4,2016-01-06,0.08,1,242 +7037791,Alexander's 2BR Luxury Quarters,36899834,Juan,Brooklyn,Bedford-Stuyvesant,40.6874,-73.9383,Entire home/apt,180,3,123,2019-06-26,2.53,1,211 +7037918,"Near LGA, Citifield, US Open Tennis",36242220,Carmen,Queens,East Elmhurst,40.76578,-73.86424,Private room,60,1,209,2019-06-11,4.38,1,364 +7037999,Bright Bedroom in Bustling Bed Stuy Brooklyn,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92825,Private room,50,2,34,2019-07-01,0.70,3,279 +7038801,Private room in the best part of BK,36907706,Brad,Brooklyn,Crown Heights,40.66743,-73.94712,Private room,58,7,49,2019-06-01,1.01,1,81 +7041968,1 BR apartment sublet.,36926132,Tassili,Manhattan,Harlem,40.80594,-73.95363,Entire home/apt,80,5,0,,,1,0 +7043746,2 block walk from the beach in NYC,36935244,Vladimir,Queens,Arverne,40.5927,-73.7899,Entire home/apt,250,2,89,2019-05-26,1.82,1,300 +7043817,Williamsburg family home -3 bedroom,20270730,Lou,Brooklyn,Williamsburg,40.71558,-73.93926,Entire home/apt,499,5,4,2016-03-27,0.08,1,0 +7047076,Patio Oasis in Upper East Side,3434070,Margaret,Manhattan,Upper East Side,40.77703,-73.94773,Entire home/apt,159,4,8,2016-08-08,0.17,1,0 +7047329,Adorable One-Bed in Williamsburg!,36956206,Taylor,Brooklyn,Williamsburg,40.71687,-73.94656,Entire home/apt,140,1,66,2019-06-16,1.35,1,5 +7047808,"Loft Space for Events, Meetings & Shoots",1299252,Kalin,Manhattan,Flatiron District,40.74068,-73.98999,Entire home/apt,850,1,177,2019-06-29,3.78,1,268 +7048195,Lrg room 1 block from Prospect Park,90316,Dave,Brooklyn,Flatbush,40.65231,-73.96189,Private room,38,3,0,,,1,7 +7048331,Wonderful artists' loft in Brooklyn,1154790,Daniel,Brooklyn,Crown Heights,40.66673,-73.96127,Entire home/apt,289,1,0,,,1,0 +7048398,Columbus Ave Apt 1 block from Park,21323838,Lawrence,Manhattan,Upper West Side,40.77408,-73.98181,Entire home/apt,245,5,17,2019-01-04,0.35,1,346 +7048418,3BR/1 Ba in TriBeCa w/ outdoor deck,36962150,Nick,Manhattan,Tribeca,40.71845,-74.01183,Entire home/apt,500,1,0,,,1,0 +7048508,"Welcoming, Clean, Cheap on St Marks",26389845,Felipe,Manhattan,East Village,40.72826,-73.98422,Private room,130,1,8,2015-09-06,0.16,2,0 +7048518,Spare room in Williamsburg,36962041,Krik,Brooklyn,Williamsburg,40.70862,-73.94651,Private room,80,1,0,,,1,0 +7050316,Best Location near Columbia U,36818817,Mifan,Manhattan,Morningside Heights,40.8046,-73.96545,Private room,50,1,1,2015-07-06,0.02,2,0 +7050731,"Comfy, bright room in Brooklyn",2042568,Megan,Brooklyn,Park Slope,40.67505,-73.98045,Private room,95,3,0,,,1,0 +7051619,Big Studio-One Stop from Midtown,36980964,Christopher,Queens,Long Island City,40.74989,-73.93777,Entire home/apt,155,2,5,2015-10-11,0.10,1,0 +7052026,585 sf Luxury Studio,36976268,Rebecca,Manhattan,Upper West Side,40.76807,-73.98342,Entire home/apt,400,1,0,,,1,0 +7053353,Large PB w/ Half Bath in Astoria,8002698,Jeremy,Queens,Astoria,40.75966,-73.90924,Private room,27,30,3,2017-10-15,0.07,1,0 +7053496,Charming private room,15542610,Carol,Manhattan,Washington Heights,40.84289,-73.93925,Private room,60,1,86,2017-01-09,1.94,1,0 +7053502,Artist Ft Greene Brownstone Garden View,36894011,Miriam,Brooklyn,Fort Greene,40.68835,-73.9736,Private room,120,2,77,2019-06-26,1.68,2,0 +7053815,HUGE Entire Flr. Private Entry/Bath,18600674,Jeannie,Brooklyn,Williamsburg,40.71805,-73.93973,Private room,103,100,128,2018-05-10,2.63,1,358 +7054267,"Clean, quiet Upper East Side apt .",36998520,Alex And Lindsey,Manhattan,Upper East Side,40.76719,-73.95358,Entire home/apt,155,15,0,,,1,0 +7054405,Large room in Prospect Park,36999491,Kyle,Brooklyn,Flatbush,40.65326,-73.96011,Private room,80,1,0,,,1,0 +7054468,Lovely Light-Filled Room,29702921,Navarra,Manhattan,East Village,40.72206,-73.97982,Private room,80,1,0,,,1,0 +7054585,"Spacious Loft in NYC, close to all",24830540,David,Brooklyn,Williamsburg,40.71188,-73.95088,Private room,85,1,1,2015-10-07,0.02,1,0 +7054797,"2 brm, fully equip bth/rm, kitchen, 2nd fl walkup",32220047,Dalton,Queens,Springfield Gardens,40.68485,-73.76063,Entire home/apt,150,3,7,2019-05-27,0.19,3,179 +7054824,West Village 1 BR spectacular views,8082431,Samriti,Manhattan,West Village,40.73489,-74.00182,Entire home/apt,220,1,84,2019-06-25,1.75,1,6 +7059663,WALk 2MOMACENTRAL PARK 1bedroomliving roomQtrain,29204097,Jason,Manhattan,Upper East Side,40.77516,-73.95224,Entire home/apt,160,1,18,2019-06-23,0.95,1,180 +7061944,"Charming, bright and airy studio",2180889,Lisa,Brooklyn,Brooklyn Heights,40.69454,-73.99499,Entire home/apt,125,1,0,,,1,24 +7062446,Midtown Manhattan Hideout,16639377,Brad,Manhattan,Midtown,40.74631,-73.98551,Private room,150,1,0,,,1,0 +7062987,FULL cozy 1 bedroom apt in the UES,4193378,Laureen,Manhattan,Upper East Side,40.77269,-73.95055,Entire home/apt,140,7,8,2018-01-04,0.18,1,0 +7063158,Luxury Studio in High-End Building,37035401,Sam,Manhattan,Upper West Side,40.7736,-73.98428,Entire home/apt,500,3,36,2019-06-10,0.75,1,85 +7063407,Duplex w/Backyard in Fort Greene,12605496,Brooks,Brooklyn,Fort Greene,40.68859,-73.972,Entire home/apt,205,2,0,,,1,0 +7064148,Sunny room w/ Private Bath&Balcony!,11068937,Kara,Brooklyn,Greenpoint,40.73136,-73.95276,Private room,140,2,21,2016-05-30,0.43,2,0 +7064199,One-month SUBLET - bright big room,37040263,Hector And Miriam,Brooklyn,Bushwick,40.69682,-73.91458,Private room,80,1,1,2015-07-14,0.02,1,0 +7064935,Private Room in Gorgeous Apartment In Manhattan,33622924,Besinfe,Manhattan,Harlem,40.8298,-73.94683,Private room,70,1,141,2019-06-20,2.99,4,348 +7065307,Central Soho Apartment,4242708,Jen,Manhattan,SoHo,40.726,-74.00204,Entire home/apt,150,4,12,2019-01-01,0.31,1,0 +7065653,Modern One Bedroom in Kips Bay (4),1306850,Kalpana,Manhattan,Kips Bay,40.7402,-73.97935,Entire home/apt,195,2,7,2016-11-19,0.15,1,0 +7065748,1 Room in Spacious East Village Apt,37047337,Will,Manhattan,East Village,40.72332,-73.97985,Private room,57,1,0,,,1,0 +7066122,1 BEDROOM PENTHOUSE W AMAZING VIEWS,7951613,Andrew,Queens,Long Island City,40.7419,-73.95738,Entire home/apt,125,2,7,2016-07-03,0.14,1,0 +7066414,Fabulous Apartment with Soaking Tub,13347167,AFI Apartments,Manhattan,Upper East Side,40.77553,-73.95343,Entire home/apt,120,30,2,2018-12-22,0.08,29,209 +7067406,Lovely Apt. heart of W. Village,10174191,Chris,Manhattan,West Village,40.73055,-74.00435,Entire home/apt,275,3,58,2019-06-14,1.20,1,59 +7069743,Private Bedroom in Shared Apartment,17475096,Rosemary,Brooklyn,Flatbush,40.65192,-73.96023,Private room,75,1,0,,,2,0 +7070287,Bushwick Artist's Bedroom,16602154,Travis,Brooklyn,Bushwick,40.69811,-73.93051,Private room,60,3,1,2015-07-24,0.02,1,0 +7070947,Exposed Brick Large Soho Nolita Apt,17470984,Andy,Manhattan,Chinatown,40.71813,-73.99665,Private room,89,3,7,2019-04-30,0.18,1,317 +7071657,1 BR UPPER EAST SIDE,4909308,Francesco,Manhattan,Upper East Side,40.77344,-73.95035,Entire home/apt,243,1,26,2019-06-22,1.10,1,149 +7071672,Top floor apartment weside Harlem,37077066,Drew,Manhattan,Harlem,40.81863,-73.95748,Private room,90,1,0,,,1,0 +7071677,"Cozy room in Bushwick, Dekalb L train, Backyard!",37076121,Christopher,Brooklyn,Bushwick,40.69899,-73.92286,Private room,50,2,2,2017-08-31,0.06,1,0 +7072245,Room in Heart of East Village!,6474887,Dean,Manhattan,East Village,40.72397,-73.97855,Private room,115,1,0,,,1,0 +7072541,"1Bdr Artist Apt. (L,M,J,Z trains)",35819315,Hui & Jon,Brooklyn,Bushwick,40.6942,-73.92024,Entire home/apt,150,4,11,2017-05-22,0.23,2,8 +7073418,Mod Glamor in Bed-Stuy Garden Flat,4582256,Consuelo,Brooklyn,Bedford-Stuyvesant,40.68297,-73.93804,Entire home/apt,250,2,3,2015-10-20,0.06,1,0 +7073436,Williamsburg Private Retreat_NYC,2141626,Alejandro,Brooklyn,Williamsburg,40.71067,-73.95419,Private room,109,2,118,2019-07-01,2.54,1,14 +7074232,Studio with Outdoor Space,4133458,Rob,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95282,Entire home/apt,120,2,0,,,1,0 +7074488,"Bilevel Penthouse: Park, City Views",43772,David,Brooklyn,Greenpoint,40.72074,-73.94741,Entire home/apt,272,3,3,2015-08-31,0.06,1,0 +7074504,Lovely private room with half bath,37091023,Olivia,Brooklyn,Park Slope,40.67102,-73.9808,Private room,100,1,1,2015-07-19,0.02,1,0 +7074961,"Spacious bright 2-bed duplex in Bed-Stuy, Brooklyn",37095710,Mary,Brooklyn,Clinton Hill,40.68664,-73.95981,Entire home/apt,170,7,3,2016-09-09,0.08,1,0 +7075103,1BR Greenwich Village Apt. NYC,37096607,Neil,Manhattan,Greenwich Village,40.72968,-74.00114,Entire home/apt,175,2,5,2015-12-30,0.11,1,0 +7075449,Bushwick Beauty,11453695,Sasha,Brooklyn,Bushwick,40.70317,-73.92724,Private room,85,6,1,2015-07-06,0.02,1,0 +7082866,Comfy Alcove Studio,6766728,Javier,Manhattan,East Village,40.72639,-73.98756,Entire home/apt,150,4,1,2016-01-02,0.02,1,0 +7083264,"PERFECT: Times Squ., Broadway CntPrk, Bars, Eats,",32212535,Bronson & Sam,Manhattan,Hell's Kitchen,40.76551,-73.98899,Shared room,116,2,101,2018-12-01,2.07,2,42 +7084130,Large Sunny Private Room,22095455,Danni,Manhattan,Civic Center,40.71674,-74.00334,Private room,100,5,1,2015-08-03,0.02,1,0 +7084621,Renovated W. Village 2 bed 2 bath,27919510,Alexander,Manhattan,West Village,40.73634,-74.00485,Entire home/apt,350,1,7,2017-01-01,0.15,1,0 +7086310,Chic room in big apt near Columbia Medical Center,37138042,John And Kelsey,Manhattan,Washington Heights,40.83621,-73.94646,Private room,80,3,112,2019-06-21,2.29,1,144 +7086331,"Quiet city stay, steps to subway, 15 to Times Sq.",3923244,Bryan,Queens,Astoria,40.76623,-73.91902,Entire home/apt,80,5,17,2019-04-07,0.35,1,12 +7086539,LARGE APARTMENT near TRAIN!!,24982709,Jermaine Antonio,Brooklyn,Bushwick,40.68774,-73.9155,Entire home/apt,110,29,103,2019-02-28,2.16,1,222 +7087255,Charming Windsor Terrace Home,3974249,Amanda,Brooklyn,Windsor Terrace,40.65459,-73.97475,Entire home/apt,267,2,14,2018-12-29,0.42,1,1 +7087528,Private Cozy Bedroom,5476918,Joann,Bronx,Kingsbridge,40.87183,-73.90371,Private room,75,1,0,,,1,0 +7087549,Riverside Park One Bedroom w/ King,10566585,Evyan,Manhattan,Upper West Side,40.7777,-73.9896,Entire home/apt,200,1,0,,,1,0 +7087752,Lovely Room in Wonderful Apartment,12602098,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68115,-73.95074,Private room,55,1,2,2015-07-15,0.04,1,0 +7089310,One of a kind big home in Queens,37157641,Madi,Queens,Jamaica Estates,40.72223,-73.78565,Entire home/apt,398,4,55,2019-06-30,1.28,1,82 +7089639,"Cozy Room, Heart of East Village",19834927,Ryan,Manhattan,East Village,40.72382,-73.98171,Private room,80,1,3,2016-01-02,0.06,1,0 +7090264,UNFURNISHED Bed-Stuy 1BR garden apt,10285950,Christina,Brooklyn,Bedford-Stuyvesant,40.68403,-73.92071,Entire home/apt,125,30,3,2017-07-21,0.11,3,308 +7090512,"Bedroom #4, Basement level, Park, express Q train",2478675,Gina,Brooklyn,Flatbush,40.6541,-73.95814,Private room,38,1,41,2019-06-30,0.87,5,335 +7091014,Cute and Cozy in South Slope/Gowanus Brooklyn,24825760,Jacky,Brooklyn,Gowanus,40.66664,-73.99348,Private room,80,2,18,2017-10-08,0.52,1,189 +7091125,"Flatiron Studio Loft, Elevator Bldg",7719262,Ryan,Manhattan,Flatiron District,40.74138,-73.98814,Entire home/apt,299,28,160,2019-06-22,3.39,1,315 +7091390,Apartment on Riverside,14329995,Nikolas,Manhattan,Harlem,40.82632,-73.95168,Entire home/apt,125,4,2,2018-06-25,0.04,1,0 +7091660,1BR in large apt on Lower East Side,37170055,Sara,Manhattan,Lower East Side,40.72348,-73.99095,Private room,250,1,0,,,1,1 +7092505,Beautiful duplex studio with 2 queen beds,7503643,Vida,Brooklyn,Greenpoint,40.72568,-73.94142,Entire home/apt,129,30,4,2019-06-15,0.08,52,357 +7092618,Central Park Studio,16381764,Rachel,Manhattan,Upper East Side,40.7604,-73.96257,Entire home/apt,190,1,36,2019-05-21,0.75,1,358 +7093122,Perfect Downtown Location in Nolita,36562419,Dan,Manhattan,Nolita,40.72123,-73.99513,Private room,90,1,1,2015-07-17,0.02,1,0 +7093920,Roosevelt Island Charm,37181980,Svetlana,Manhattan,Roosevelt Island,40.76193,-73.94933,Private room,83,2,178,2019-07-05,3.72,1,255 +7093979,1st Floor 3 Bedroom Apt Midtown NYC,3946744,Raj,Manhattan,Midtown,40.75651,-73.96696,Entire home/apt,450,2,0,,,1,0 +7094110,Cozy apartment near Central Park!,25109461,Alex,Manhattan,East Harlem,40.79326,-73.93988,Entire home/apt,102,1,0,,,1,11 +7094112,"Stuyvesant, East Village",12749467,Naomi,Manhattan,East Village,40.73022,-73.98893,Entire home/apt,198,30,5,2019-01-08,0.11,1,301 +7094262,53rd & 3rd Midtown Manhattan,22625462,Gwendolyn,Manhattan,Midtown,40.75788,-73.9689,Entire home/apt,149,2,14,2016-05-01,0.30,1,0 +7094462,Adorable One Bedroom in Greenpoint,10896584,Julianna,Brooklyn,Greenpoint,40.7324,-73.95828,Entire home/apt,120,2,6,2015-10-04,0.13,1,0 +7094539,Tranquil haven in bubbly Brooklyn,2052211,Adriana,Brooklyn,Windsor Terrace,40.6536,-73.97546,Entire home/apt,143,14,2,2016-08-27,0.04,1,10 +7094619,Luxury Apt in Prime Location,37186427,Olta,Manhattan,Kips Bay,40.7449,-73.97959,Private room,120,1,1,2015-07-24,0.02,1,0 +7094976,1 private bedroom in cool BK hood!!,1714147,Nastasha,Brooklyn,Crown Heights,40.67101,-73.9525,Private room,44,4,0,,,1,0 +7095125,"Discount! Mins to SOHO -Queen bed, spacious",36656552,Kandee,Manhattan,Lower East Side,40.71892,-73.99241,Private room,150,1,51,2018-09-06,1.05,3,0 +7095426,Stunning studio on Wall street,2252859,Anne-Sophie,Manhattan,Financial District,40.70668,-74.00913,Entire home/apt,160,200,0,,,1,365 +7095534,Private BR in ABC,37191710,Kevin,Manhattan,East Village,40.72474,-73.98273,Private room,110,1,1,2015-07-23,0.02,1,0 +7095708,NYC Brooklyn Rooftop Full Apartment,37191929,John,Brooklyn,Crown Heights,40.67921,-73.9603,Entire home/apt,125,2,31,2018-03-04,0.67,1,0 +7095783,"Charming , sweet , and cozy Manhattan apartment.",9819284,Alexis,Manhattan,Upper East Side,40.76533,-73.96163,Entire home/apt,270,4,44,2019-07-02,0.92,1,335 +7095888,A Spacious & Homelike Brooklyn Stay,32252422,Mckinley,Brooklyn,Canarsie,40.64796,-73.89176,Entire home/apt,110,2,38,2019-07-06,0.81,2,290 +7101296,Cute apartment in Upper West Side,37011739,Stacey,Manhattan,Upper West Side,40.79435,-73.9745,Entire home/apt,145,5,7,2018-08-01,0.16,1,0 +7101822,Bright & airy 2BR penthouse apt,3627066,Andrea,Brooklyn,South Slope,40.66657,-73.98725,Entire home/apt,190,7,2,2015-10-17,0.04,1,0 +7105709,Great place in Chelsea/West Village,3664074,Kudjo,Manhattan,West Village,40.73894,-74.00067,Entire home/apt,250,2,5,2016-08-22,0.10,1,0 +7105865,Large Room in Upper Manhattan,24797068,Amber,Manhattan,Washington Heights,40.83663,-73.94502,Private room,45,9,1,2016-08-19,0.03,1,0 +7106154,Beautiful Spacious private studio,37229098,Alexandra,Brooklyn,Bushwick,40.70041,-73.93957,Entire home/apt,200,2,9,2019-07-01,0.19,1,357 +7108992,Huge Upper West Side Apartment - 3 rooms,3801047,Anna,Manhattan,Upper West Side,40.7982,-73.96931,Entire home/apt,187,3,1,2015-09-05,0.02,1,0 +7110657,1BR Perfect Williamsburg Location,37248762,Roger,Brooklyn,Williamsburg,40.71643,-73.95431,Private room,90,3,0,,,1,0 +7111050,Cozy Couch In Great Space Perfect For Backpackers,34546849,Amber,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92989,Shared room,29,2,102,2019-07-01,2.11,3,288 +7111775,Charming Park Slope Studio,37252712,Shira,Brooklyn,Park Slope,40.66817,-73.98406,Entire home/apt,100,3,5,2018-02-24,0.17,1,0 +7112684,Sunny & Clean Apt ideal location E.Williamsburg!,26998839,Shahar,Brooklyn,Williamsburg,40.70684,-73.93854,Entire home/apt,90,7,6,2019-06-07,0.15,2,302 +7113258,Private sunny room in Bushwick,11725595,Basil,Brooklyn,Bushwick,40.70415,-73.92551,Private room,100,1,0,,,1,0 +7113393,King size Bed/room in 2 Bed Apt in E.Williamsburg,26998839,Shahar,Brooklyn,Williamsburg,40.70675,-73.93909,Private room,85,11,7,2016-09-17,0.14,2,316 +7114665,Large room,34866720,Louis,Queens,Ridgewood,40.70866,-73.90578,Private room,69,1,0,,,1,0 +7116034,Beautiful room. Private bathroom.,16296388,Mario,Brooklyn,Bushwick,40.68412,-73.91045,Private room,43,1,4,2017-06-06,0.13,1,0 +7116071,30 Minutes to Manhattan / Sleeps 7,36903907,Moe,Brooklyn,Bensonhurst,40.61112,-74.00028,Entire home/apt,145,2,207,2019-07-02,4.26,1,287 +7116273,Sunny private room close to all,37166807,Jake,Brooklyn,Sunset Park,40.65702,-73.99874,Private room,65,7,37,2016-09-08,0.78,1,0 +7116654,Big room overlooking Prospect Park!,7078254,Leila,Brooklyn,Prospect-Lefferts Gardens,40.65683,-73.9609,Private room,45,1,2,2015-09-07,0.04,1,0 +7116799,Spring special ~,37291339,Latoya,Queens,Jamaica,40.69121,-73.78342,Entire home/apt,130,2,77,2019-04-23,1.65,1,322 +7116864,Central Park 1BR Apt NYC Manhattan,20515254,Gill,Manhattan,Upper West Side,40.76812,-73.98341,Entire home/apt,99,3,99,2019-06-23,2.08,1,45 +7122067,Finally! A room with amazing vibes!,37275619,David,Manhattan,Washington Heights,40.85471,-73.93021,Private room,90,1,0,,,1,0 +7122588,Cheap NYC APT! 20 Day Stay!,33002613,Preston,Manhattan,Washington Heights,40.8347,-73.94413,Private room,45,10,0,,,1,0 +7124028,Soho Loft,1788377,Janis,Manhattan,SoHo,40.72621,-74.00186,Entire home/apt,200,1,0,,,1,0 +7124926,Sunny 2BR in Heart of Fort Greene,2055744,Hila,Brooklyn,Fort Greene,40.68842,-73.97254,Entire home/apt,149,4,1,2015-12-31,0.02,1,0 +7125107,Room steps away from LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77005,-73.87691,Private room,45,1,448,2019-07-07,9.63,5,166 +7125323,Beautiful UWS apartment in doorman building,5549408,Aryeh,Manhattan,Upper West Side,40.79033,-73.9729,Entire home/apt,140,2,4,2016-10-26,0.09,1,0 +7125699,East Williamsburg Artist Retreat,19187413,Melissa,Brooklyn,Williamsburg,40.70485,-73.93863,Private room,60,20,0,,,2,88 +7126110,Sunny East Village Bedroom,37325763,Noah,Manhattan,East Village,40.72393,-73.98271,Private room,100,1,0,,,1,0 +7126996,Williamsburg 2 BR Apt w View of NYC,37191276,Deniz,Brooklyn,Williamsburg,40.71255,-73.95121,Private room,125,2,0,,,1,0 +7127458,Great 1 bdr in a 1 bedroom apartment. Great deal!,37332180,Thibault,Queens,Astoria,40.76264,-73.91156,Entire home/apt,70,4,10,2017-10-10,0.21,1,0 +7127600,"Spacious Room in Crown Heights, BK",950041,Caitlin,Brooklyn,Crown Heights,40.66851,-73.95936,Private room,70,3,5,2016-02-29,0.11,1,21 +7127684,Private bedroom in Bushwick BK,37331914,Timothy,Brooklyn,Bushwick,40.69683,-73.92372,Private room,50,2,0,,,1,0 +7128293,Room With a View – Minimalist Respite in Bed-Stuy,1574618,Alyson,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94501,Private room,95,4,47,2019-05-28,1.01,1,3 +7129972,"Beautiful, modern SoHo/TriBeCa apt",3704762,Akash,Manhattan,Civic Center,40.71649,-74.00267,Entire home/apt,169,4,8,2016-05-15,0.17,1,0 +7131007,Cozy Home in Brooklyn Brownstone,2830197,Roberta & Rob,Brooklyn,Bedford-Stuyvesant,40.6852,-73.95636,Entire home/apt,110,3,14,2017-10-15,0.29,1,0 +7132520,"Cozy Room In Clinton Hill, BK",37357605,Camille,Brooklyn,Clinton Hill,40.69139,-73.961,Private room,40,5,0,,,1,0 +7132891,Bohemian & Chic Apartment.,23988743,Rachid,Brooklyn,Bushwick,40.69319,-73.92375,Private room,75,2,22,2019-06-04,0.46,1,362 +7133306,"Bright Room in Creative Brooklyn Neighborhood, JMZ",37362312,Francesco,Brooklyn,Bedford-Stuyvesant,40.69464,-73.93369,Private room,65,2,0,,,2,19 +7133488,Private room in Astoria Broadway st,37188098,Ashraful,Queens,Astoria,40.75878,-73.92615,Private room,85,2,32,2016-07-02,0.67,2,177 +7134343,Modern Apartment in a Historic Home,37368735,Harry,Brooklyn,Bedford-Stuyvesant,40.67995,-73.90922,Entire home/apt,97,2,120,2019-06-27,2.75,1,292 +7134550,LES Bowery FULL 1 BDRM APARTMENT,36715249,Abdur,Manhattan,Chinatown,40.71706,-73.99285,Entire home/apt,110,3,0,,,1,0 +7140625,Cosy apartment West Harlem close to Central Park,37396328,Cécile,Manhattan,Harlem,40.80712,-73.95323,Private room,51,7,0,,,1,4 +7141549,"Sunny, beautiful and spacious room in Midtown",16396714,Andrea,Manhattan,Kips Bay,40.74281,-73.97981,Private room,120,7,11,2019-04-27,0.32,3,2 +7142734,1 Bedroom w/Jacuzzi in Private Home,37405985,Jenny,Queens,Forest Hills,40.71818,-73.84944,Private room,109,1,86,2019-06-30,1.78,1,344 +7143587,Quiet 1-BR in SoHo; Private Rooftop,37410263,David,Manhattan,SoHo,40.72179,-73.99829,Entire home/apt,159,31,8,2016-09-04,0.17,1,0 +7144379,Sunny bedroom in the heart of LES,34582356,Christina,Manhattan,Lower East Side,40.71754,-73.99025,Private room,75,1,1,2015-07-09,0.02,1,0 +7144807,"Spacious, Clean , Close to Local Transportation",37360127,Mel,Staten Island,Castleton Corners,40.61363,-74.12152,Private room,45,30,0,,,1,365 +7148121,Cozy LARGE NYC Bedroom w/homeoffice,4036685,Norman,Queens,Bayside,40.75873,-73.76244,Private room,99,1,3,2018-09-07,0.06,2,322 +7149408,Cozy private room in Manhattan,37440707,Jacqui,Manhattan,Upper West Side,40.79355,-73.97122,Private room,95,1,0,,,1,0 +7149452,Clinton Hill Apartment,16478353,Ali,Brooklyn,Clinton Hill,40.68538,-73.96479,Private room,65,14,6,2017-06-21,0.16,1,0 +7149710,Full bed/air-conditioned/secluded,37442404,Eric,Manhattan,Washington Heights,40.83255,-73.94411,Private room,38,1,0,,,1,0 +7151565,"Bottom half of duplex, Williamsburg",37453881,Hadrien,Brooklyn,Williamsburg,40.71827,-73.94258,Private room,95,1,6,2018-10-20,0.17,1,0 +7153138,Sunny and Airy near Manhattan,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92782,Entire home/apt,120,2,74,2019-04-30,1.83,2,60 +7155442,Huge Room in Prime Williamsburg,1279181,Matthew,Brooklyn,Williamsburg,40.7155,-73.95603,Private room,150,1,0,,,1,0 +7158408,Warehouse loft apartment,5602641,David,Brooklyn,Bedford-Stuyvesant,40.67939,-73.94939,Entire home/apt,135,2,174,2019-06-12,3.58,1,5 +7158417,Dov & Naomi's Beautiful Apt.,15878233,Dov,Brooklyn,Kensington,40.64456,-73.97723,Entire home/apt,115,4,3,2018-07-31,0.09,1,0 +7159258,Forrest and Bogart,292421,Steven,Brooklyn,Bushwick,40.70272,-73.93151,Private room,100,1,14,2018-09-13,0.37,1,0 +7160363,LOVE Central Park Room Private Bath,25517905,Andreias,Manhattan,Upper West Side,40.79632,-73.96225,Private room,99,1,222,2019-06-20,4.56,3,251 +7160545,Sunny East Village Nest,334348,Juju,Manhattan,East Village,40.72299,-73.97756,Entire home/apt,148,3,9,2019-01-25,0.19,1,8 +7161189,Modern and spacious in Bed Stuy,37503617,Sonia,Brooklyn,Bedford-Stuyvesant,40.69325,-73.94819,Entire home/apt,150,7,3,2015-10-05,0.06,1,0 +7162435,Bright Modern Apartment in Chelsea,19055216,Fabrice,Manhattan,Chelsea,40.74219,-73.99903,Entire home/apt,599,5,0,,,1,0 +7170149,Hipster Apt in The Middle of it All,32212535,Bronson & Sam,Manhattan,Hell's Kitchen,40.76546,-73.98782,Entire home/apt,349,3,31,2019-06-13,0.65,2,157 +7172107,Upper West Side Family Escape,37565381,Rebecka,Manhattan,Upper West Side,40.79527,-73.96695,Entire home/apt,165,5,5,2016-04-14,0.10,1,0 +7173864,"Beautiful, spacious 1 bedroom in BK",20914965,Karen,Brooklyn,Kensington,40.64621,-73.98163,Entire home/apt,95,1,4,2015-07-19,0.08,1,0 +7174067,Quiet 1 bedroom near Fort Greene Park,25912623,Allison,Brooklyn,Fort Greene,40.68726,-73.97616,Entire home/apt,129,1,9,2019-06-15,0.41,1,157 +7174361,2 BEDROOM APT IN MANHATTAN midtown SLEEPS 5 GUESTS,37579015,Ana,Manhattan,Hell's Kitchen,40.75788,-73.99223,Private room,250,2,17,2019-01-06,0.37,5,130 +7174695,"Lux, UES, 3Beds, Family Apt",36903246,Dana,Manhattan,Upper East Side,40.77614,-73.95037,Entire home/apt,700,1,1,2015-09-05,0.02,1,0 +7175595,Private Room in Gorgeous Apartment,37588475,Alex,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92963,Private room,66,1,0,,,1,0 +7176975,New/spacious 2 bedrooom 1.5 bath!,32933539,Maria,Manhattan,Washington Heights,40.83524,-73.943,Entire home/apt,165,4,1,2016-06-29,0.03,1,0 +7177666,"Stellar Duplex Home w/Garden,HotTub",37587378,Cecilia,Brooklyn,Gowanus,40.67916,-73.98911,Entire home/apt,450,2,8,2019-04-21,0.17,1,263 +7177958,Convienent 1-bedroom near Columbia,780952,Maria,Manhattan,Morningside Heights,40.80441,-73.96409,Entire home/apt,120,2,7,2016-10-10,0.15,1,0 +7178887,Park slope brownstone-ish,15115649,Malka,Brooklyn,Park Slope,40.67267,-73.97871,Private room,65,1,0,,,1,0 +7179646,Cozy Room in the Heart of Brooklyn!,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.66898,-73.9514,Private room,55,2,47,2017-03-16,0.98,3,0 +7180015,"private room, cute&cozy apartment",37614545,Linda,Queens,Astoria,40.75871,-73.91112,Private room,85,1,0,,,1,0 +7180335,Comfortable Bedroom,3508047,Brian,Brooklyn,Bushwick,40.69765,-73.93334,Private room,35,5,1,2019-01-01,0.16,3,0 +7181422,Cute 1br in Williamsburg,4993337,Stephanie,Brooklyn,Williamsburg,40.71044,-73.953,Entire home/apt,110,1,2,2015-08-10,0.04,1,0 +7192809,Luxury 2200sf Two Bedroom Loft w/ Private Elevator,37668524,Brian,Manhattan,Chelsea,40.73888,-73.99897,Entire home/apt,500,3,11,2016-11-26,0.23,1,2 +7193201,Private RM in Heart of East Village,33739627,Natasha,Manhattan,East Village,40.72896,-73.9843,Private room,99,1,4,2015-10-24,0.08,1,0 +7193370,King Bedroom w/ Private Bath: BUSHWICK L Train,9484908,Aj,Queens,Ridgewood,40.71005,-73.91956,Private room,64,3,0,,,2,77 +7194042,Spacious Williamsburg Loft Studio,7546816,Emma,Brooklyn,Williamsburg,40.71781,-73.96251,Entire home/apt,168,2,20,2018-11-11,0.41,1,0 +7194138,Nice Carroll Gardens 2BR by F Train,16782665,Andrew,Brooklyn,Carroll Gardens,40.6748,-74.00006,Entire home/apt,200,2,28,2016-12-20,0.59,1,0 +7194538,"Big home, 3 floors, good 4 families",37633503,Tina,Manhattan,Harlem,40.80595,-73.94882,Entire home/apt,355,3,42,2019-06-22,1.03,1,116 +7194972,"Charming, Central Park Studio Apt",22502429,Doug,Manhattan,Upper West Side,40.78363,-73.97485,Entire home/apt,190,3,9,2015-10-28,0.19,1,0 +7195202,Sunny central Wmsburg Apartment,2902496,Craig,Brooklyn,Williamsburg,40.7113,-73.94249,Entire home/apt,99,1,2,2015-11-29,0.04,1,0 +7197915,The Heart of the Lower East Side!,37691482,Andrew,Manhattan,Lower East Side,40.72135,-73.98668,Entire home/apt,180,2,8,2018-05-28,0.19,1,0 +7198592,"Lovely 2 Bdrm. Trains, Parks, Food!",140817,Carly,Manhattan,Inwood,40.86717,-73.91943,Entire home/apt,145,3,9,2018-12-30,0.23,1,0 +7198878,sunny + comfy bedroom in greenpoint,30066276,Rachel,Brooklyn,Greenpoint,40.72328,-73.94041,Private room,55,1,1,2015-07-21,0.02,1,0 +7199049,Quaint Room with street view,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.6927,-73.94656,Private room,65,1,5,2019-01-01,0.11,10,158 +7199258,"Private Apt & Patio (spacious, stocked and bright)",11241369,Elizabeth,Brooklyn,Crown Heights,40.67026,-73.9497,Entire home/apt,130,2,151,2019-05-19,3.16,1,36 +7199464,Upper West Side Rm by Central Park!,21651082,Brooks,Manhattan,Upper West Side,40.78487,-73.97816,Private room,68,6,1,2015-07-27,0.02,1,0 +7201169,midtown apartment,37243004,Barry,Manhattan,Midtown,40.75255,-73.98003,Entire home/apt,167,1,0,,,1,0 +7201615,Unique Artist Loft in Soho,6674211,Anders,Manhattan,SoHo,40.72525,-73.99998,Entire home/apt,375,14,0,,,1,0 +7202170,Midtown East penthouse studio,37711914,Aleksandar,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,160,10,25,2019-06-30,0.53,1,1 +7202368,Chic Studio Apartment in Bed Stuy,23952819,Jason,Brooklyn,Bedford-Stuyvesant,40.68651,-73.933,Entire home/apt,98,3,91,2019-06-23,1.92,2,217 +7202612,"Queen Bed, Quiet Room, Prime Williamsburg!",7252535,Wes,Brooklyn,Williamsburg,40.71279,-73.96037,Private room,90,2,262,2019-06-20,5.41,2,226 +7203943,Waterfront in Williamsburg,21381325,Tara,Brooklyn,Williamsburg,40.70999,-73.9689,Private room,100,1,0,,,1,0 +7204443,Peaceful Room in Dumbo Art Loft,37723496,Anna,Brooklyn,DUMBO,40.70429,-73.98773,Private room,125,2,152,2019-06-23,3.16,2,166 +7204547,HUGE 1BD! 5 min to MNHTN!,7065810,Chiara,Brooklyn,Fort Greene,40.68677,-73.97791,Entire home/apt,150,2,0,,,1,0 +7204721,Charming Cozy Brooklyn 1BR,37188272,Rachel,Brooklyn,Crown Heights,40.67357,-73.95268,Entire home/apt,95,2,4,2016-07-25,0.11,1,0 +7205212,Sunny Studio Next to Central Park,35651880,Ayesha,Manhattan,Upper West Side,40.79874,-73.96034,Entire home/apt,130,3,18,2017-09-30,0.39,1,0 +7205456,Enjoy a few days in Greenpoint,16282382,Natalie,Brooklyn,Greenpoint,40.7359,-73.95799,Entire home/apt,130,2,3,2016-01-02,0.06,1,0 +7205668,Sunny room in GPoint/Williamsburg,25712247,Alyssa,Brooklyn,Greenpoint,40.72283,-73.95232,Private room,140,1,0,,,1,0 +7205861,Putnam Gardens -Brooklyn Brownstone,37731444,Debbie,Brooklyn,Bedford-Stuyvesant,40.68435,-73.93806,Entire home/apt,125,3,17,2019-05-20,0.37,1,80 +7205945,Beautiful West Village Apartment,37731966,Ella,Manhattan,West Village,40.73525,-74.00217,Entire home/apt,165,10,10,2016-09-03,0.21,1,0 +7206060,Cozy + Quiet Private Bedroom in Prime Bushwick!,37731938,Brendan,Brooklyn,Bushwick,40.70093,-73.92375,Private room,90,2,11,2019-06-26,0.24,1,89 +7206401,Wonderful Inwood,17383399,Catlin,Manhattan,Inwood,40.86755,-73.92336,Entire home/apt,175,1,0,,,1,0 +7206568,Comfortable Room + Private Bathroom,37735816,Ali,Manhattan,Upper West Side,40.7972,-73.96922,Private room,65,3,95,2018-12-10,1.97,1,0 +7206579,"Sunny, Spacious Room- Heart of Williamsburg!",15491509,Autumn,Brooklyn,Williamsburg,40.71544,-73.95433,Private room,66,2,6,2018-01-25,0.13,1,0 +7206796,The Heart of Fort Greene 2bedrooms,37737721,Tracey,Brooklyn,Fort Greene,40.68919,-73.97474,Entire home/apt,225,2,117,2019-06-29,2.48,1,242 +7207594,Perfect Rental Near Prospect Park!,22792227,Kylie,Brooklyn,Crown Heights,40.67031,-73.95859,Private room,45,1,0,,,1,0 +7208745,Beautiful Furnished Master Bedroom,3415,Nataraj,Queens,Fresh Meadows,40.73859,-73.78891,Private room,59,3,4,2019-06-02,0.09,1,365 +7215836,Quaint&Cozy 1BR-Gem in East Village,12460557,Joyce,Manhattan,East Village,40.72873,-73.98793,Private room,90,8,3,2016-01-01,0.06,1,0 +7216192,Room in classic Harlem brownstone,17464442,Kirsti,Manhattan,Harlem,40.80492,-73.94486,Private room,125,2,3,2016-07-25,0.08,1,0 +7217351,Red Hook Loading Dock Loft,10910216,Kate,Brooklyn,Red Hook,40.67993,-74.00688,Entire home/apt,450,1,5,2019-04-20,0.10,1,207 +7218561,Bed-Stuy BKNY FREEWasher/Dryer,1283476,Mark,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94409,Private room,50,15,4,2017-04-29,0.09,2,0 +7221239,Lovely 1 Bdrm Boerum Hill Apt,6466155,Katherine,Brooklyn,Boerum Hill,40.68618,-73.98837,Entire home/apt,124,2,1,2018-09-02,0.10,1,0 +7221446,# sunny skylit sanctuary in the heart of BK! #,1903737,Natalie,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93384,Private room,29,3,30,2019-03-24,0.65,3,0 +7221712,"Williamsburg, Brooklyn Artist Loft",92436,Yasmin,Brooklyn,Williamsburg,40.70833,-73.9564,Entire home/apt,86,7,1,2015-08-01,0.02,1,0 +7222354,"Sunny Upper East Side Apt, Balcony",18489745,Fon,Manhattan,Upper East Side,40.76446,-73.95603,Private room,86,2,2,2016-03-13,0.04,1,0 +7222833,2BR/2BA luxury condo in W'Burg,6403403,Tony,Brooklyn,Williamsburg,40.71992,-73.95536,Entire home/apt,299,2,18,2017-04-17,0.38,1,0 +7224028,Modest and Cute Room in Bushwick Brooklyn!,5998033,Eddie,Brooklyn,Bushwick,40.68929,-73.90484,Private room,36,2,3,2017-07-01,0.06,1,0 +7224086,Private Bedroom in Bushwick,5570436,Fay,Brooklyn,Bushwick,40.70548,-73.91776,Private room,100,1,15,2019-05-20,0.33,1,359 +7224484,Charming Studio on Orchard Street !,1613244,Ariel,Manhattan,Lower East Side,40.71992,-73.98822,Entire home/apt,110,30,10,2018-10-03,0.23,9,263 +7225366,"Spacious, Modern Times Square 3Bdrm *****",9288577,Tina,Manhattan,Chelsea,40.74923,-73.99376,Entire home/apt,450,4,206,2019-07-03,4.24,1,1 +7226624,"Brooklyn Alcove, Convenient Locale!",6407741,Graham,Brooklyn,Bedford-Stuyvesant,40.69499,-73.9469,Private room,39,1,0,,,1,0 +7227235,All Nations Home II-PVT br Queenbed,1639755,Adriana,Brooklyn,Fort Hamilton,40.61985,-74.03255,Private room,55,2,56,2019-06-28,1.23,2,306 +7227418,All Nations Home II - pvt br. 2 twin beds,1639755,Adriana,Brooklyn,Fort Hamilton,40.61999,-74.03181,Private room,55,1,34,2019-06-16,0.80,2,281 +7227435,Brooklyn loft with huge livingroom,9166253,Jonas,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9589,Private room,60,3,0,,,2,0 +7228259,NYC Excitement Meets Quiet and Comfort!,37101663,Adam,Manhattan,Harlem,40.82101,-73.95436,Private room,71,30,66,2018-12-23,2.99,1,0 +7228397,West Harlem Apartment,700231,Benjamin,Manhattan,Harlem,40.82918,-73.94857,Entire home/apt,500,10,0,,,1,0 +7230002,Large Sunny Room in Williamsburg!,11107448,Jessica,Brooklyn,Williamsburg,40.71965,-73.9428,Private room,63,4,3,2018-05-27,0.08,2,0 +7234538,Lovely sun-filled Brownstone!,1793569,Frances,Brooklyn,Park Slope,40.68073,-73.97515,Entire home/apt,170,1,0,,,1,0 +7237763,BROOKLYN HEIGHTS Luxury Harbor View,1762355,Evan,Brooklyn,Brooklyn Heights,40.6947,-73.99304,Entire home/apt,250,7,11,2019-05-20,0.24,1,225 +7238041,Williamsburg bliss,8438140,Kim,Brooklyn,Williamsburg,40.71335,-73.93957,Entire home/apt,159,3,14,2019-05-29,0.30,1,31 +7238562,"Lovely Williamsburg, BK apartment",19806276,Joseph,Brooklyn,Williamsburg,40.71133,-73.96533,Entire home/apt,200,4,0,,,1,0 +7239527,CLEAN AND COZY UES,37903935,Gabriel,Manhattan,East Harlem,40.79831,-73.93961,Private room,70,1,1,2015-07-20,0.02,1,0 +7239575,"2 Bedroom, UES",37904263,Talal,Manhattan,Upper East Side,40.76364,-73.9588,Entire home/apt,120,5,5,2016-07-20,0.13,1,0 +7240002,Nice and Perfect Location Studio,14905080,Justin You,Manhattan,Morningside Heights,40.80569,-73.96058,Entire home/apt,75,25,1,2015-09-04,0.02,1,0 +7240464,Perfect family getaway!,37909191,Kim,Brooklyn,Bushwick,40.69246,-73.91909,Entire home/apt,195,1,0,,,1,0 +7240563,Brooklyn Sanctuary 1 block to train,4419418,Jocelyn,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9405,Entire home/apt,90,5,9,2019-06-11,0.19,1,8 +7240997,Modern 19th C West Village Charmer,2519631,Chavi,Manhattan,West Village,40.7363,-74.00317,Entire home/apt,233,30,10,2018-11-05,0.21,1,14 +7241020,Spacious & Bright Artist Retreat,6697833,John And Laurie,Manhattan,Washington Heights,40.85487,-73.93777,Entire home/apt,115,7,2,2015-10-29,0.04,1,0 +7243708,Spacious sunny room in Clinton Hill,3302103,Steph,Brooklyn,Clinton Hill,40.69158,-73.96699,Private room,65,2,6,2016-11-19,0.12,1,0 +7244171,Cozy Studio Duplex,37915862,Greg,Brooklyn,East New York,40.6752,-73.89218,Entire home/apt,80,5,49,2019-06-07,1.01,2,217 +7244824,Inviting Private Room in NYC.,37932285,Sarah,Manhattan,Harlem,40.82028,-73.95381,Private room,65,1,3,2018-01-03,0.08,1,0 +7244923,East Village Duplex Private Yard,37934478,Edward,Manhattan,East Village,40.72877,-73.98175,Private room,139,1,9,2016-10-02,0.23,1,0 +7245289,Charming 2BR apartment in Brooklyn,9481957,Joanna,Brooklyn,Bushwick,40.69818,-73.91356,Entire home/apt,210,1,0,,,1,0 +7245876,Beautiful Studio in Bed Stuy,9539044,Nicholas,Brooklyn,Williamsburg,40.71292,-73.94873,Entire home/apt,66,6,3,2017-03-02,0.06,1,0 +7246159,Charming apt on UWS 8/3-8/7,31245915,Jenna,Manhattan,Upper West Side,40.79024,-73.97911,Entire home/apt,200,1,0,,,1,0 +7246609,LES sunny and charming apartment,920222,Rosie,Manhattan,Lower East Side,40.72259,-73.99311,Entire home/apt,200,3,18,2019-01-02,0.37,1,188 +7246757,Amazing LES Manhattan Apt in LES,3586177,Marianna,Manhattan,Lower East Side,40.7201,-73.9841,Entire home/apt,175,3,44,2019-06-23,0.92,1,34 +7246903,Cozy Townhouse with Private Deck,26411218,Desmond,Queens,Maspeth,40.73456,-73.88891,Entire home/apt,96,3,139,2019-06-30,3.14,2,21 +7247033,Sunny Lower E. Side Ap. near BDFMJZ,37947830,Marcus,Manhattan,Chinatown,40.71574,-73.99107,Private room,100,1,13,2019-05-18,0.27,1,2 +7247763,Master bedroom in artsy Bushwick,2483508,Sarah,Brooklyn,Bushwick,40.70464,-73.91596,Private room,44,5,1,2015-07-27,0.02,1,0 +7254952,Prime Park Slope Family Home,16183358,Kim,Brooklyn,Park Slope,40.67545,-73.98234,Entire home/apt,175,4,5,2015-09-07,0.10,1,13 +7254986,Country House in the City,3695529,Jenni,Brooklyn,Carroll Gardens,40.68358,-73.99474,Entire home/apt,600,5,12,2019-05-16,0.25,2,174 +7255372,~Room for Guest in Stunning BK Apt~,37987441,Addie,Brooklyn,Bedford-Stuyvesant,40.68538,-73.92447,Private room,32,3,7,2019-01-27,0.15,1,0 +7255577,Cool room Manhattan - Sleeps up to 3 guests,37579015,Ana,Manhattan,Hell's Kitchen,40.75834,-73.99277,Private room,98,1,147,2019-06-13,3.03,5,149 +7256741,1BR @ East Village - better than a luxury hotel,1468231,Alan,Manhattan,East Village,40.7333,-73.98943,Entire home/apt,219,2,30,2019-06-10,0.62,1,2 +7257163,Super Charming West Village Place,1467387,Ali,Manhattan,West Village,40.7332,-74.00281,Entire home/apt,175,21,17,2017-08-10,0.36,1,0 +7257311,Cozy Walk-up Apt in the Historic Lower East Side.,14726038,Kimberly,Manhattan,Chinatown,40.71475,-73.9912,Entire home/apt,120,2,13,2018-04-04,0.37,1,0 +7258306,Studio in the Heart of Greenwich!!!,23387933,John,Manhattan,Greenwich Village,40.73088,-74.00035,Entire home/apt,140,1,1,2015-07-13,0.02,1,0 +7258864,No better location in Williamsburg!,2662538,Conrad,Brooklyn,Williamsburg,40.71563,-73.95737,Private room,84,1,204,2019-06-22,4.24,1,319 +7259369,1 Bedroom Apartment in Nolita/ Soho,20404001,Emma,Manhattan,Nolita,40.7208,-73.99647,Entire home/apt,80,1,1,2015-07-12,0.02,1,0 +7259804,Beautiful Place near Manhattan,5499064,Akira,Brooklyn,Bedford-Stuyvesant,40.68754,-73.92522,Private room,45,3,87,2019-06-30,1.91,1,258 +7260012,Spacious Brownstone Getaway,24269641,Kai,Brooklyn,Bedford-Stuyvesant,40.68782,-73.935,Entire home/apt,115,1,0,,,1,0 +7261121,Private Room for a Female,38010132,Jennifer,Queens,Astoria,40.77268,-73.92503,Private room,36,1,0,,,1,0 +7262068,Studio apt. Central Park West,24884055,Monada,Manhattan,Upper West Side,40.79715,-73.96873,Private room,80,1,0,,,1,0 +7262439,Bright & cozy room in Brooklyn!,37325782,Elise,Brooklyn,Bedford-Stuyvesant,40.68397,-73.95136,Private room,40,7,0,,,1,0 +7263899,Large Room in Bushwick Near Trains!,38029848,Ramona,Brooklyn,Bedford-Stuyvesant,40.69649,-73.93645,Private room,38,1,2,2015-11-07,0.04,1,0 +7264263,Beautiful classic NYC studio,5030772,Jessica,Manhattan,Upper East Side,40.77258,-73.95213,Entire home/apt,120,1,13,2016-12-27,0.27,1,0 +7264471,Sunset Park Sublet,15416709,Me'lissa,Brooklyn,Sunset Park,40.65295,-74.00411,Private room,70,5,0,,,1,0 +7264496,MorningsideHeights/Columbia Studio,38032297,Melissa,Manhattan,Morningside Heights,40.80445,-73.9649,Entire home/apt,140,4,2,2015-08-21,0.04,1,0 +7264560,"Spacious Room in Creative Neighborhood, JMZ line",37362312,Francesco,Brooklyn,Bushwick,40.69622,-73.93394,Private room,70,1,1,2017-05-07,0.04,2,115 +7264659,Olivier,6994503,Olivier,Manhattan,Upper West Side,40.78931,-73.9752,Entire home/apt,200,5,12,2018-01-30,0.25,1,25 +7265079,Park Slope sweet cozy home! Wifi!,912400,Ming,Brooklyn,Park Slope,40.6756,-73.97781,Private room,89,5,102,2019-06-19,2.17,1,255 +7265118,177st. Manhattan,7118658,Tim,Manhattan,Washington Heights,40.84828,-73.94284,Private room,250,3,11,2018-05-24,0.24,1,345 +7265249,"South Slope Sunny 2 Bedroom, 2 bath",38038797,Robin,Brooklyn,Sunset Park,40.66226,-73.98956,Entire home/apt,125,2,11,2018-12-27,0.23,1,10 +7265253,1 Bed in a Lux Apt on Wall Street,15899061,Amelia,Manhattan,Financial District,40.70583,-74.00717,Shared room,47,1,2,2015-08-17,0.04,1,0 +7269771,CLEAN COZY & COMFY E. VILLAGE PAD,16155254,Lina,Manhattan,Stuyvesant Town,40.7305,-73.98043,Entire home/apt,160,1,150,2019-06-01,3.21,4,238 +7271876,Cozy 1 Bedroom Bushwick Apt off Dekalb L,38073985,Nicole,Brooklyn,Bushwick,40.7005,-73.91816,Entire home/apt,75,60,0,,,1,0 +7272453,East Village Spacious Room,38076944,Hanna,Manhattan,East Village,40.73031,-73.98784,Private room,90,3,0,,,1,0 +7272530,Lovely Room Close to the City,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94678,Private room,65,1,6,2019-01-03,0.13,10,158 +7272680,Sunny Double Room,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94666,Private room,63,1,3,2017-01-15,0.07,10,306 +7274441,Beautiful BedStuy Brownstone Apt,7079175,Al-Nisa,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93193,Private room,100,1,0,,,1,0 +7275122,Stunning NYC Views,21336136,Brooklyn,Brooklyn,Vinegar Hill,40.70107,-73.98391,Entire home/apt,178,3,163,2019-06-30,3.40,1,201 +7275273,Cozy & Super Convenient Studio!,16398769,Michelle,Manhattan,Chelsea,40.74116,-73.99523,Entire home/apt,200,1,0,,,1,0 +7275655,Cosy 1 bed in trendy East Village!,19491505,Kristine,Manhattan,East Village,40.72457,-73.98142,Entire home/apt,170,2,5,2016-04-04,0.11,1,0 +7276534,LaGuardia Room with Private Entrance(1),31851704,Laura,Queens,East Elmhurst,40.7582,-73.87656,Private room,50,1,211,2019-06-24,4.37,2,339 +7277102,"4 Bed, Duplex Garden Apt. on lovely, quiet block",228858,Jada,Brooklyn,South Slope,40.66163,-73.98602,Entire home/apt,295,9,2,2015-08-25,0.04,2,1 +7277143,Quiet private room upper east side,24821272,Sabrina,Manhattan,Upper East Side,40.77877,-73.94824,Private room,100,1,3,2015-10-23,0.06,1,0 +7277180,"Bedroom in Financial District, NYC",38101644,Lucia,Manhattan,Financial District,40.70811,-74.01301,Private room,65,1,1,2015-08-04,0.02,1,0 +7277600,Upper east haven,24772574,Jack,Manhattan,Upper East Side,40.76483,-73.95367,Entire home/apt,175,1,0,,,1,0 +7277878,Sunny and Spacious 1 Bedroom!,6862694,Hayley,Brooklyn,Prospect Heights,40.67628,-73.96425,Entire home/apt,90,5,1,2015-09-02,0.02,1,0 +7278762,"Private Rooftop balcony, skylight PH 2 beds",22816592,Susi,Queens,Elmhurst,40.73626,-73.87143,Entire home/apt,158,30,130,2019-06-23,2.71,1,311 +7279583,The Harlem Mansion,1557442,Chris,Manhattan,Harlem,40.80682,-73.95196,Entire home/apt,450,2,48,2017-09-06,1.04,1,188 +7279657,1 Bdr. Apt. in Ridgewood/Bushwick,13904931,Nick,Queens,Ridgewood,40.70735,-73.90696,Entire home/apt,110,1,0,,,1,0 +7280322,Brownstone Studio with EVERYTHING,7705129,Junho,Brooklyn,Park Slope,40.67128,-73.97863,Entire home/apt,100,5,0,,,1,0 +7286166,Private room & bath in modern apt,5369287,Tatiana,Brooklyn,Williamsburg,40.70995,-73.96722,Private room,130,1,13,2017-05-08,0.28,1,188 +7286324,"Cozy private room in Astoria, 15 min to Manhattan",97580,Igor,Queens,Long Island City,40.7631,-73.92936,Private room,70,3,137,2019-06-24,2.84,1,8 +7288752,Comfortable Greenpoint Apt. Short or Longer Stay,38169148,Liz,Brooklyn,Greenpoint,40.72642,-73.94519,Private room,70,7,3,2016-11-16,0.06,1,0 +7292825,New York City Luxury Building!,13976139,Lori,Manhattan,Upper West Side,40.7905,-73.97385,Entire home/apt,120,10,0,,,1,0 +7292891,Large 2 BR Apartment in Chelsea,9403624,Carol,Manhattan,Chelsea,40.74482,-73.99917,Entire home/apt,170,5,13,2019-05-25,0.30,1,4 +7293506,Charming Upper West Side Apartment,2993160,Lauren,Manhattan,Upper West Side,40.78629,-73.98056,Entire home/apt,200,7,0,,,1,0 +7294225,East Vlg 2 bdrm Private Apt - 1 Block to Union Sq,10353278,James,Manhattan,East Village,40.73125,-73.98675,Entire home/apt,480,3,2,2016-08-01,0.04,2,0 +7302762,Spacious Duplex With Private Deck,1533248,Emily,Brooklyn,Greenpoint,40.7272,-73.95134,Entire home/apt,120,3,2,2016-08-10,0.05,1,0 +7304034,SPACIOUS Lower East Side DUPLEX 3 bed 2 ba COMFY,37623794,Amanda,Manhattan,East Village,40.72545,-73.98802,Entire home/apt,299,1,69,2019-06-16,1.52,1,257 +7305718,"Cozy, clean studio with a view!",38269863,Andrea,Manhattan,Harlem,40.81882,-73.956,Entire home/apt,150,3,0,,,1,0 +7306096,"Big, nice, private room.",38272413,Vasily,Brooklyn,Kensington,40.64028,-73.97396,Private room,45,4,5,2015-09-15,0.10,2,0 +7307027,Large room in two-story brownstone,16237939,Seth,Brooklyn,Prospect Heights,40.67958,-73.96956,Private room,70,2,4,2016-07-11,0.09,1,0 +7307468,Large Room in Brooklyn w/ Office,26364541,Claire,Brooklyn,Bedford-Stuyvesant,40.69381,-73.944,Private room,49,1,1,2015-07-20,0.02,1,0 +7308118,Cozy Artful Zen East Village Nook,38284667,Ruth,Manhattan,East Village,40.72819,-73.98589,Private room,115,1,1,2015-08-07,0.02,2,0 +7308735,Big room with great natural light,38288441,Nathaniel,Manhattan,Harlem,40.82416,-73.94623,Private room,55,3,8,2017-06-26,0.22,1,0 +7308927,cool room in Bushwick loft,34873213,Melody,Brooklyn,Williamsburg,40.70909,-73.9256,Private room,55,1,1,2015-07-22,0.02,1,0 +7309129,Beautiful Airy Lower East Side Loft,7737249,Casandra,Manhattan,Chinatown,40.71431,-73.99142,Entire home/apt,250,30,48,2019-04-29,1.83,2,341 +7309427,Beautiful Architect Renovated Home,38292974,Mark,Brooklyn,South Slope,40.66691,-73.98658,Entire home/apt,399,3,11,2019-01-06,0.31,1,18 +7309459,"Large duplex in trendy Brooklyn, New York",14715701,Daniel & Lia,Brooklyn,Cobble Hill,40.68628,-73.99681,Entire home/apt,198,3,1,2018-08-19,0.09,1,5 +7309633,Small One Bedroom BK - Quiet n Cute,38294553,Joan,Brooklyn,Bedford-Stuyvesant,40.68211,-73.94775,Entire home/apt,78,1,1,2015-08-08,0.02,1,0 +7310097,"3 Bedroom, 1st Fl, family apt.",38297695,Suvi,Brooklyn,Prospect Heights,40.67797,-73.9701,Entire home/apt,200,2,1,2016-01-05,0.02,1,0 +7310330,East Village! Beautiful 2BD Apt.,38294027,Rushil,Manhattan,East Village,40.7228,-73.98562,Entire home/apt,300,23,1,2015-07-21,0.02,1,0 +7310413,Beautiful Spacious Ground Floor Apt,1603343,Carina,Brooklyn,Bushwick,40.70403,-73.91276,Entire home/apt,225,2,3,2015-11-28,0.06,1,0 +7310835,SoHo 2 Bedroom 2 Full Bath with Private Terrace,3390947,Yulia,Manhattan,SoHo,40.72268,-74.00269,Entire home/apt,650,2,24,2019-06-29,0.51,1,23 +7311209,SUPER HUGE ROOM IN GREENPOINT BK,1641537,Lauren,Brooklyn,Greenpoint,40.72503,-73.93909,Private room,53,7,7,2016-03-09,0.15,2,0 +7318332,Our lovely nest in the West Village,38337856,Antoine,Manhattan,Greenwich Village,40.73378,-73.99714,Entire home/apt,159,5,22,2018-12-27,0.46,1,22 +7319512,Modern & Bright Queen Bedroom-Green C8,20559017,Yohan,Manhattan,Upper East Side,40.76164,-73.95995,Private room,65,30,3,2019-05-06,0.08,9,342 +7319582,Room in Bed Stuy - Full Bed,18605510,Reah,Brooklyn,Bedford-Stuyvesant,40.68555,-73.94873,Private room,45,1,0,,,1,0 +7319791,Cozy room at trendy Lower east side,19195540,Dor,Manhattan,Lower East Side,40.71894,-73.99205,Private room,120,3,86,2019-06-06,1.82,3,99 +7319856,450ft Square Studio in Gramercy NY,11773680,Adam,Manhattan,Kips Bay,40.73813,-73.98098,Entire home/apt,280,1,4,2016-05-22,0.09,1,225 +7320160,Charming Old-School Apartment 2,19692652,Benjamin,Brooklyn,Clinton Hill,40.69387,-73.96841,Private room,60,2,42,2017-08-14,0.87,1,0 +7320353,"Clean,quiet room near prospect park",5499953,R Demetre,Brooklyn,Crown Heights,40.67047,-73.95372,Private room,100,1,2,2015-10-08,0.04,2,365 +7320522,Large Apt in Theatre District,38350446,Chris,Manhattan,Hell's Kitchen,40.76146,-73.9896,Private room,160,5,5,2016-11-28,0.13,1,0 +7321054,"Great room, 7 min from Manhattan!",38352423,Ashley,Queens,Long Island City,40.75508,-73.92918,Private room,45,1,1,2015-07-20,0.02,1,0 +7322088,A Bedroom in a Kosher Appartment,24259346,Johnathan Boev,Queens,Rego Park,40.72644,-73.85477,Private room,39,1,2,2015-09-07,0.04,1,0 +7322656,Clean & Quiet room in Bushwick,38360286,Cody,Brooklyn,Bushwick,40.68992,-73.91408,Private room,50,1,0,,,1,0 +7323905,Stylish East Village One Bedroom Apartment,2303270,Zeina,Manhattan,East Village,40.72947,-73.9813,Entire home/apt,120,4,21,2019-06-24,1.23,1,9 +7324746,Cozy & Sunny Sage Room in Townhouse,942252,Kimberly,Brooklyn,Prospect Heights,40.67885,-73.96838,Private room,99,1,8,2015-09-02,0.17,2,0 +7324832,UWS Bedroom with Rooftop Access!,379663,Kenya,Manhattan,Upper West Side,40.78763,-73.97308,Private room,129,3,5,2015-09-26,0.10,1,0 +7325230,Artist Renovated Loft + Roof Garden,38373441,J,Brooklyn,Bushwick,40.70174,-73.92662,Entire home/apt,350,3,58,2019-06-10,1.21,1,81 +7325293,Big Room in the heart of Upper East,1841169,Clara,Manhattan,Upper East Side,40.77016,-73.95716,Entire home/apt,300,1,1,2015-09-29,0.02,1,0 +7326871,Brooklyn Flavor Atelier,38380486,Tiffany,Brooklyn,Williamsburg,40.70521,-73.94258,Entire home/apt,140,2,4,2018-01-01,0.08,1,0 +7327096,Modern 1 BR in the East Village,33300449,Rachel,Manhattan,East Village,40.72869,-73.97653,Entire home/apt,120,1,2,2016-02-21,0.05,1,0 +7327782,Light-Drenched Private 1 Bedroom,38388018,Ruth,Brooklyn,Crown Heights,40.66664,-73.92805,Private room,64,2,56,2019-06-27,2.65,1,184 +7327833,Charming Apartment in Crown Heights,27630423,Julianne,Brooklyn,Crown Heights,40.67464,-73.94276,Entire home/apt,120,2,2,2015-10-03,0.04,1,0 +7328260,Private room (Uptown) Washington Heights,38390671,Sharlene,Manhattan,Washington Heights,40.83769,-73.94207,Private room,40,7,12,2019-06-16,0.27,1,48 +7328319,Cool Apartment in Chinatown,15743291,Maria,Manhattan,Chinatown,40.71479,-73.99284,Entire home/apt,120,4,7,2017-12-31,0.15,1,0 +7328712,Flatiron 1 Bedroom,2482069,Lor,Manhattan,Flatiron District,40.74145,-73.98828,Private room,95,1,0,,,1,0 +7328775,The studio on the park!,38392850,Emma,Brooklyn,Fort Greene,40.68794,-73.97393,Entire home/apt,150,3,10,2016-03-28,0.21,1,0 +7329781,NoLita Design Studio,38398698,Andrew,Manhattan,Nolita,40.72044,-73.99568,Entire home/apt,650,6,14,2018-06-26,0.29,1,90 +7330488,Charming Classic UWS Bedroom & Balcony,18008678,Clayton,Manhattan,Upper West Side,40.80243,-73.9706,Private room,100,2,33,2018-04-20,0.68,2,0 +7331070,Your own house in NYC,22373907,James,Queens,Bayside,40.76729,-73.77162,Entire home/apt,290,1,74,2019-06-09,1.59,1,338 +7331201,Sunny and Homie BK Apartment,681331,Wes,Brooklyn,Crown Heights,40.66539,-73.96041,Entire home/apt,120,3,5,2016-10-17,0.11,1,0 +7331835,Bright Studio heart of LES,23851015,Suwan,Manhattan,Lower East Side,40.72157,-73.98489,Entire home/apt,130,2,0,,,1,0 +7331850,Lovely room in Astoria,38405623,Alena,Queens,Long Island City,40.76432,-73.93401,Private room,70,5,0,,,1,0 +7331958,Sunny luxurious loft Studio,2282450,Philip,Manhattan,West Village,40.73529,-74.00323,Entire home/apt,235,3,111,2019-06-10,2.38,2,126 +7332196,Bright and Hip in Morningside,5628243,Drew,Manhattan,Harlem,40.81024,-73.9525,Private room,95,1,10,2017-01-17,0.21,1,0 +7336085,Midtown West short term sublet,38433605,Huishan,Manhattan,Hell's Kitchen,40.75979,-73.99402,Private room,80,18,0,,,1,0 +7338771,Design Forward East Village 1Br Apt,9892766,Ariel,Manhattan,East Village,40.72261,-73.98196,Entire home/apt,280,30,1,2017-11-24,0.05,1,116 +7339716,Perfect West Village Apt,36625404,Jeff,Manhattan,West Village,40.73545,-74.00686,Entire home/apt,195,2,30,2018-06-26,0.62,1,189 +7339802,"HUGR 1BR+ in Sugar Hill, Harlem",38452274,Aly,Manhattan,Harlem,40.82196,-73.94247,Entire home/apt,100,3,14,2018-01-12,0.29,1,0 +7340318,Private Greenpoint Studio Floor 1,6772512,Curtis,Brooklyn,Greenpoint,40.72138,-73.94709,Entire home/apt,100,3,7,2016-10-28,0.14,1,0 +7340902,Cozy Apt 10 minutes to Central Park,11354707,Andre,Queens,Long Island City,40.75588,-73.93117,Entire home/apt,130,3,6,2016-01-09,0.13,1,0 +7341077,Classic Lower East Side Apartment,21498479,Cate,Manhattan,East Village,40.72168,-73.98418,Entire home/apt,130,7,2,2015-09-22,0.04,1,0 +7341406,Private Spacious Room with bathroom,38460304,Leon,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94101,Private room,125,4,27,2019-03-09,0.57,2,312 +7341983,Brooklyn Studio apartment,38460304,Leon,Brooklyn,Bedford-Stuyvesant,40.69169,-73.93142,Entire home/apt,130,4,34,2019-04-28,0.73,2,340 +7342107,"Cozy, Comfy, City Living.",13891989,Gregory,Bronx,East Morrisania,40.82873,-73.89553,Entire home/apt,120,1,142,2019-06-23,3.10,1,345 +7343048,Comfy 1 Bed 1 Bath - great location,24742173,Tammy,Manhattan,Upper West Side,40.79708,-73.969,Entire home/apt,180,2,3,2019-05-04,0.06,3,70 +7344720,Clean and comfortable 3 person private room,24260658,Kristy,Manhattan,East Harlem,40.7946,-73.93572,Private room,80,2,97,2019-07-07,2.03,5,22 +7344761,Luxury Tribeca Apartment w/Roofdeck,12149983,Kerry,Manhattan,Civic Center,40.71645,-74.00402,Entire home/apt,250,2,2,2016-04-24,0.04,1,0 +7345333,Lg Bedroom Trendy Williamsburg BK,38480809,Christina,Brooklyn,Williamsburg,40.71711,-73.94259,Private room,125,1,0,,,1,0 +7345443,Spacious 3 bedroom on Prospect Park,38480982,Arnold,Brooklyn,South Slope,40.66378,-73.97813,Entire home/apt,166,3,6,2016-09-05,0.13,1,0 +7346434,Cozy/Private Bdrm By Central Park!,9166875,Clara,Manhattan,Upper West Side,40.80304,-73.96582,Private room,64,4,1,2015-08-28,0.02,1,0 +7347350,Room in East Williamsburg 1 Block from L Train,6284410,Fiona,Brooklyn,Williamsburg,40.70794,-73.93976,Private room,35,5,1,2016-07-21,0.03,1,0 +7347733,Studio in central historical Harlem,21056821,Martina,Manhattan,Harlem,40.80819,-73.94315,Entire home/apt,120,1,1,2016-07-13,0.03,1,0 +7348008,Sunny Park Slope Bedroom,3369909,Ian,Brooklyn,Park Slope,40.68006,-73.98053,Private room,60,2,7,2016-10-21,0.16,1,0 +7348509,Modern 1BR in Heart of Williamsburg,38497438,Don,Brooklyn,Williamsburg,40.71969,-73.9562,Entire home/apt,215,1,1,2015-08-02,0.02,1,0 +7348959,Beautiful Room in Brownstone - Prime Location,4579626,Karen,Brooklyn,Park Slope,40.67618,-73.98122,Private room,58,1,211,2019-07-07,5.13,2,178 +7349064,Luxury apartment near Central Park,5042891,Alon,Manhattan,Midtown,40.76579,-73.98057,Entire home/apt,260,5,0,,,1,0 +7349256,Big Cozy Room,15147904,Viviana,Brooklyn,Bushwick,40.69508,-73.91053,Private room,40,3,71,2019-06-29,1.47,1,24 +7349421,Comfortable private room in Harlem,31469635,Ricky,Manhattan,Harlem,40.82606,-73.94659,Private room,78,1,4,2019-07-01,0.09,2,55 +7349633,$500/wk 1br - 150ft2 - Dec 23-Jan 4,38507835,Matt,Manhattan,East Village,40.72492,-73.97914,Private room,80,6,1,2015-07-22,0.02,1,0 +7350310,East Village Studio Like Room,26925894,Alice,Manhattan,East Village,40.72962,-73.9836,Shared room,80,2,2,2015-08-29,0.04,1,0 +7354701,Brooklyn Brownstone duplex + garden,3484734,JaimeLee & Travis,Brooklyn,Bedford-Stuyvesant,40.68396,-73.92872,Entire home/apt,159,7,6,2019-01-04,0.19,1,1 +7355158,Artistic Brooklyn Apartment,12644018,Mary,Brooklyn,Bushwick,40.70055,-73.92193,Private room,150,1,0,,,1,0 +7358093,Brooklyn Brownstone with Backyard,26202073,Raven,Brooklyn,Bushwick,40.68833,-73.91676,Entire home/apt,89,5,0,,,1,0 +7358801,Luxury Hip Brand New LES ROOM w/ Terrace!,2127057,Nick And Julia,Manhattan,Lower East Side,40.72065,-73.98273,Private room,145,2,148,2019-07-03,3.16,1,134 +7359313,Luxury Doorman Apt in Midtown East!,38445572,Jennifer,Manhattan,Murray Hill,40.74823,-73.97447,Private room,130,1,2,2015-09-21,0.04,1,0 +7359878,Bedroom in 4bed/1bath in Brooklyn!,13896003,Shane,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95472,Private room,50,1,0,,,1,0 +7361434,Ditmas Park Spacious Studio Apt,38569616,Quinn,Brooklyn,Flatbush,40.64691,-73.95855,Entire home/apt,100,1,2,2015-12-30,0.04,1,0 +7361457,Lovely private bedroom,38567763,Deidrea,Brooklyn,Bedford-Stuyvesant,40.68856,-73.9547,Private room,63,3,2,2015-08-19,0.04,1,0 +7362840,Beautiful Private Area in Flatbush,2164856,Jasmine,Brooklyn,East Flatbush,40.64939,-73.94791,Private room,50,1,0,,,1,0 +7363109,Manhattan Getaway - LES,34834676,Loreta,Manhattan,Lower East Side,40.71729,-73.98442,Entire home/apt,189,5,21,2019-06-17,0.47,1,239 +7364008,Bohéme 1BR steps from Prospect Park,38583557,Ian,Brooklyn,Flatbush,40.65349,-73.95527,Entire home/apt,99,7,2,2015-08-17,0.04,1,0 +7364374,New York Apt in the Heart of NY,8144621,Thomas,Manhattan,Chelsea,40.74627,-73.99142,Private room,150,1,0,,,1,0 +7366831,"Sunny, big room available in 3 BDRM",38599690,Chantal,Manhattan,East Harlem,40.80023,-73.93822,Private room,35,1,1,2015-07-22,0.02,1,0 +7367039,Welcome to our Luxury home,1472993,Yoav,Manhattan,Financial District,40.7078,-74.00914,Entire home/apt,200,1,6,2017-08-18,0.13,1,0 +7367165,Sunny Room Overlooking Harlem,4964848,Jakob,Manhattan,Harlem,40.82681,-73.9426,Private room,35,5,2,2016-02-02,0.05,1,0 +7367484,Huge private room with bathroom,31452390,Jennifer,Manhattan,Washington Heights,40.83428,-73.94446,Private room,60,1,1,2015-07-23,0.02,1,0 +7367913,Brooklyn oasis with breathtaking skyline view!,38606448,Hanna,Brooklyn,Bedford-Stuyvesant,40.68889,-73.95406,Private room,80,2,8,2018-08-27,0.17,1,281 +7368190,"Bright, Airy, Quiet 1 Bd",3890297,Babita,Manhattan,Kips Bay,40.73943,-73.98135,Entire home/apt,199,3,20,2019-03-08,0.42,1,0 +7369427,"Large 2 bedroom APT, 20mins to Times Square.",6486116,Ari,Manhattan,East Harlem,40.78858,-73.94742,Entire home/apt,174,1,19,2019-05-02,0.43,4,322 +7369852,spacious private rooms in 5bd 4bth,9059810,Vlad,Brooklyn,Sheepshead Bay,40.59244,-73.95633,Private room,85,7,0,,,3,90 +7376952,Brownstone@Central Park❤️Manhattan historic area,32004384,Karen,Manhattan,Upper West Side,40.77976,-73.97837,Private room,120,7,11,2019-06-09,1.16,1,362 +7378773,Clean and Sunny Brooklyn apt!!,11129295,Melissa,Brooklyn,Bushwick,40.70178,-73.92829,Entire home/apt,98,4,1,2015-09-04,0.02,1,0 +7379929,Great E.Village Apt. Best Location!,27283579,Alexi,Manhattan,East Village,40.72423,-73.99013,Private room,119,2,4,2015-08-12,0.08,1,0 +7380251,Private Room in New Bed-Stuy Lofts,38661692,Dee,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95205,Private room,1600,1,0,,,1,0 +7381038,South Slope Modern + Spacious with Outdoor Deck,16283468,Philip,Brooklyn,Sunset Park,40.66196,-73.99177,Private room,75,1,113,2019-06-18,2.33,2,233 +7381236,Authentic Brownstone New York Living,33365473,Paul,Brooklyn,Bedford-Stuyvesant,40.68247,-73.94119,Entire home/apt,450,2,34,2019-04-26,0.76,2,337 +7381893,cozy + bright room in BK!,12866178,Klara,Brooklyn,East New York,40.65918,-73.89226,Private room,55,2,9,2017-11-04,0.19,1,342 +7382396,Bushwick Oasis,38672291,Randy,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93436,Private room,64,1,24,2016-06-10,0.50,1,0 +7382573,Bright room in Williamsburg loft,16548316,Phil,Brooklyn,Williamsburg,40.70767,-73.94821,Private room,70,14,0,,,1,0 +7382982,Bright double room in West Village,19504544,Saga,Manhattan,West Village,40.72911,-74.00338,Private room,106,5,2,2016-01-02,0.04,1,0 +7383380,Large loft in Bushwick,4907734,Paul,Brooklyn,Williamsburg,40.70068,-73.94103,Private room,45,3,14,2018-08-29,0.35,1,0 +7383722,Stunning 1BR - SoHo Prime Location!,14281112,Andrew,Manhattan,SoHo,40.7221,-74.00464,Private room,125,2,2,2015-10-09,0.04,1,0 +7383804,1 room available for in midtown NYC,38678875,Stanley,Manhattan,Midtown,40.75277,-73.96686,Private room,70,1,2,2015-07-31,0.04,1,0 +7385568,Spacious Renovated Apt. in Harlem,1163720,Zack,Manhattan,Harlem,40.81355,-73.94407,Private room,40,1,2,2015-08-14,0.04,1,0 +7385651,Sunny apartment in the heart of LIC,25705189,Greta,Queens,Long Island City,40.74364,-73.95392,Entire home/apt,100,5,0,,,1,0 +7385692,"Huge 1 bdr, convenient location!",38404959,Maria,Queens,Ditmars Steinway,40.77742,-73.90965,Private room,85,3,3,2018-09-05,0.06,2,163 +7386119,"Large, sunny, quiet, 2 bed apt",12517331,Robert,Brooklyn,Prospect Heights,40.67876,-73.9715,Entire home/apt,75,1,4,2015-11-28,0.08,1,0 +7386558,Big Bright Modern East Village 1 BR,38694062,Mike,Manhattan,East Village,40.72164,-73.97927,Entire home/apt,175,1,9,2016-06-27,0.24,1,31 +7387862,Cozy bedroom in E. Village in July,38702813,Alexander,Manhattan,Lower East Side,40.72309,-73.98926,Private room,150,1,0,,,1,0 +7387919,2 bed apartment 2 blocks from 42 st,37993952,Andrew,Manhattan,Hell's Kitchen,40.76171,-73.99478,Private room,150,1,1,2015-07-23,0.02,1,0 +7389120,Boutique apartment by the Ocean,7365834,Alex,Brooklyn,Sheepshead Bay,40.58294,-73.95897,Entire home/apt,129,2,45,2019-06-23,0.93,5,256 +7389278,Bushwick! Unlimited Metro Card!,38712916,Taylor,Brooklyn,Bushwick,40.69927,-73.92133,Private room,60,1,0,,,1,0 +7391230,Cosy bedroom in Williamsburg,1173652,Seb,Brooklyn,Williamsburg,40.71058,-73.9672,Private room,80,2,74,2019-06-03,1.64,1,210 +7394136,One bedroom available in Astoria,38741040,Priscila,Queens,Long Island City,40.75547,-73.92017,Private room,40,1,0,,,1,0 +7395202,Big room in Clinton Hil near subway,23425862,Gagandeep,Brooklyn,Bedford-Stuyvesant,40.69172,-73.95862,Private room,90,1,0,,,2,0 +7396662,Chateau Ludlow,7489344,Noëmi,Manhattan,Lower East Side,40.71508,-73.98973,Private room,120,1,18,2016-09-15,0.37,1,0 +7397237,~Sunny quiet apartment in Brooklyn~,38757107,Joanne,Brooklyn,Bedford-Stuyvesant,40.68978,-73.94444,Entire home/apt,100,7,2,2015-09-06,0.04,1,0 +7397649,"Astoria 1 Bed, 2 Blocks to Train",9991314,Jenna,Queens,Astoria,40.76448,-73.92714,Entire home/apt,125,2,0,,,1,0 +7397699,Room in the heart of Williamsburg!,38759330,Nathaniel,Brooklyn,Williamsburg,40.7122,-73.9511,Private room,35,1,3,2015-09-13,0.06,1,0 +7398144,2 Bedroom in Heart of Williamsburg,7983308,Michael,Brooklyn,Williamsburg,40.71452,-73.95486,Entire home/apt,269,1,1,2015-08-17,0.02,1,0 +7398163,Furnished BR in a 2BR apt Gramercy,28269324,Daniel,Manhattan,Gramercy,40.73448,-73.98056,Private room,45,30,2,2015-08-31,0.04,1,0 +7398507,Chic apartment on Central Park West,5898139,Nicholas,Manhattan,Upper West Side,40.79933,-73.95949,Entire home/apt,185,1,1,2015-09-02,0.02,1,0 +7399036,Amazing apartment available for a year to rent!,38706510,Sarah,Manhattan,Upper West Side,40.78015,-73.97875,Entire home/apt,120,30,2,2017-09-28,0.08,1,200 +7399178,Cozy Room in the LOWER EAST SIDE!,38767720,Caitlin,Manhattan,Lower East Side,40.71934,-73.98424,Private room,97,1,2,2015-12-29,0.04,1,0 +7399449,Modern 1 Bdrm Apt in Mid Manhattan,393944,Guillermo,Manhattan,Murray Hill,40.74537,-73.97462,Entire home/apt,230,2,0,,,1,0 +7399754,Spacious 1BR,4343834,Sean,Brooklyn,Carroll Gardens,40.68189,-73.99695,Entire home/apt,150,1,6,2016-08-02,0.12,1,0 +7400486,My Spacious & Comfy Home Away,32604265,Shaquana,Brooklyn,Crown Heights,40.67647,-73.94813,Entire home/apt,135,2,23,2017-06-12,0.59,1,0 +7400940,Spacious Graham Ave Room Aug 1 -21,3911807,Jean,Brooklyn,Williamsburg,40.71576,-73.94468,Private room,45,5,0,,,1,0 +7401048,Big Cozy Room 2 Blocks From Trains,10832128,Josh,Brooklyn,Sunset Park,40.644,-74.01092,Private room,47,3,2,2015-11-02,0.04,1,0 +7402303,Artists' Sunny 1-BR Apt in Astoria,11962385,Dusan,Queens,Astoria,40.76778,-73.92201,Entire home/apt,120,1,3,2015-08-20,0.06,1,0 +7402608,Charming Williamsburg 1 Bedroom,38788236,William,Brooklyn,Williamsburg,40.70649,-73.94505,Entire home/apt,100,1,11,2015-12-28,0.23,1,0 +7403108,Colorful Apartment Upper West Side,38791434,Kit,Manhattan,Morningside Heights,40.80419,-73.96268,Entire home/apt,60,1,0,,,1,0 +7403161,Entire 1 Bedroom apartment,15107351,NYC Hostess,Manhattan,NoHo,40.72579,-73.99341,Entire home/apt,245,3,14,2019-05-14,0.30,1,198 +7403613,Spacious NOMAD 1 BR for 4,1405974,Alexander,Manhattan,Midtown,40.74603,-73.98364,Entire home/apt,150,3,1,2015-08-07,0.02,1,0 +7403721,Manhattan Club sleeps 4,38796373,Helena,Manhattan,Midtown,40.76441,-73.98058,Entire home/apt,386,7,0,,,1,0 +7404540,Room with a View,3401676,Nadine,Manhattan,Kips Bay,40.73774,-73.97343,Private room,95,28,1,2016-05-01,0.03,1,72 +7410868,Great spot in Lower East Side,5417646,EmiLy,Manhattan,Lower East Side,40.71546,-73.9896,Entire home/apt,120,4,3,2016-05-13,0.08,1,0 +7411044,"French charm at Château Village, Greenwich Village",38827405,John,Manhattan,Greenwich Village,40.7292,-74.00209,Private room,145,3,62,2018-06-06,1.30,1,0 +7411421,Hip & Trendy Williamsburg 2 BR 2BA Apartment,3750905,Louis,Brooklyn,Williamsburg,40.71303,-73.9558,Entire home/apt,109,2,28,2019-06-22,0.61,1,170 +7411499,Master Bedroom in Luxury Apartment,1023985,Andrew,Brooklyn,Williamsburg,40.71376,-73.95293,Private room,80,3,2,2015-08-03,0.04,1,0 +7411733,Sunny apartment overlooking park,38832294,Samantha,Brooklyn,Crown Heights,40.67358,-73.94351,Entire home/apt,105,1,7,2018-09-11,0.15,1,0 +7415011,Cozy room in 1bedroom apt,15824880,Israel,Queens,Astoria,40.7722,-73.93105,Private room,37,1,0,,,1,0 +7415905,Luxury Modern Brownstone Full Apt,38850307,Elwanda,Brooklyn,Bedford-Stuyvesant,40.6846,-73.94478,Entire home/apt,125,3,130,2019-07-06,2.72,1,217 +7417371,Private room in Nolita / SOHO,3417039,David,Manhattan,Nolita,40.72411,-73.99563,Private room,80,2,1,2015-09-06,0.02,1,0 +7417444,Studio in Lincoln Sq - Columbus Cir,11239404,Sholeh,Manhattan,Upper West Side,40.77088,-73.98061,Entire home/apt,140,2,2,2015-12-01,0.04,1,0 +7417520,East Village Two Bedroom,37028138,Matt,Manhattan,East Village,40.72228,-73.9838,Entire home/apt,250,3,21,2017-11-26,0.44,1,0 +7418754,"Affordable, quiet, brownstone home",601586,Luke,Brooklyn,Bedford-Stuyvesant,40.68148,-73.93145,Private room,79,1,0,,,1,0 +7418874,Huge Lower East Side 2 Bedroom,6575777,Pippa,Manhattan,Lower East Side,40.71864,-73.98346,Entire home/apt,450,7,1,2015-10-18,0.02,1,0 +7419040,Sunny Greenpoint 1 Bedroom with vintage feel,30423241,Nick,Brooklyn,Greenpoint,40.72927,-73.95707,Entire home/apt,120,3,6,2018-04-18,0.17,2,43 +7419230,East Village Penthouse With Rooftop,22805576,Will,Manhattan,East Village,40.72163,-73.97888,Private room,100,1,0,,,1,0 +7419334,Bright and beautiful 1 bedroom Apt.,19135506,Rosalia,Manhattan,Upper West Side,40.7777,-73.98796,Entire home/apt,150,1,1,2015-08-10,0.02,1,0 +7419517,Comfy room in Gramercy Park,4875631,Max,Manhattan,Gramercy,40.73579,-73.98175,Private room,200,1,0,,,1,0 +7421930,Long Island City- Furnished Studio,22344488,Jess,Queens,Long Island City,40.75226,-73.94089,Entire home/apt,110,1,9,2015-09-26,0.19,1,0 +7426597,Sunny family-friendly 2br & parking,38902136,Michal,Brooklyn,Gowanus,40.66892,-73.99136,Entire home/apt,165,3,178,2019-06-23,3.70,1,134 +7428365,"City retrieve1 -large bedroom, comfortable / quite",3542562,Jana,Manhattan,Harlem,40.82622,-73.9498,Private room,69,31,1,2017-01-07,0.03,4,64 +7428891,"City retrieve2-comfort, quite, sunny room and desk",3542562,Jana,Manhattan,Harlem,40.82605,-73.94783,Private room,69,31,3,2018-09-30,0.08,4,32 +7429161,BLUE SKIES AND GREEN TREES IN NYC.,38914517,Jean,Brooklyn,Flatbush,40.64213,-73.95298,Private room,180,1,22,2016-11-20,0.50,2,89 +7431316,Large private room in W. Heights,16617981,Emmanuel,Manhattan,Washington Heights,40.83523,-73.9398,Private room,40,1,2,2015-12-18,0.05,1,0 +7432146,2 twins bed Private room in Brooklyn,4279384,Tanya,Brooklyn,Flatbush,40.64167,-73.95465,Private room,40,3,4,2017-08-01,0.09,2,0 +7433174,Apt.-private entrance -Townhouse- 10mins. to JFK,34789416,Carl,Queens,Springfield Gardens,40.67205,-73.75343,Private room,109,1,1,2018-06-16,0.08,1,365 +7433796,Room Epic View Near Freedom Tower,2134232,Crystal,Manhattan,Tribeca,40.71928,-74.01125,Private room,100,1,15,2017-06-08,0.34,2,0 +7434316,Parkside Brooklyn Artist Apartment!,3861404,Stefanie,Brooklyn,Prospect-Lefferts Gardens,40.65628,-73.96014,Private room,70,5,3,2015-09-22,0.06,2,0 +7434420,Steps Away From Grand Central,38943127,Tricia,Manhattan,Murray Hill,40.74981,-73.9786,Entire home/apt,198,5,1,2015-09-13,0.02,1,0 +7435181,Refreshing Bushwick Enclave,38946305,Allon,Brooklyn,Bushwick,40.69496,-73.93088,Private room,50,3,4,2015-12-27,0.08,1,0 +7435223,Patricia's Place near Williamsburg,38948315,Patricia,Brooklyn,Bushwick,40.69644,-73.92707,Entire home/apt,130,2,106,2019-06-08,2.20,1,210 +7435577,Comfy Modern Bklyn 1BR + Guest BR,28460565,Su,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92831,Entire home/apt,135,2,6,2015-12-07,0.13,1,0 +7435882,Bushwick Room,4807448,David,Brooklyn,Bushwick,40.70647,-73.92093,Private room,35,20,0,,,1,0 +7435904,1 BR Apartment Upper West Side,38952124,Joanna,Manhattan,Upper West Side,40.79555,-73.96578,Entire home/apt,399,3,0,,,1,0 +7436186,Beautiful bedroom in Ditmas Park!!!,6367907,J And Lana,Brooklyn,Flatbush,40.63198,-73.95988,Private room,108,2,59,2019-06-23,1.24,1,344 +7437623,Charming UES PreWar 24/7 Doorman 2 bed/2 bath apt,1025745,Meredith,Manhattan,Upper East Side,40.78271,-73.95288,Entire home/apt,595,2,30,2019-06-19,0.63,1,332 +7437824,2BR + Roof Top-20min from Manhattan,17942384,Maud,Brooklyn,Park Slope,40.66835,-73.97981,Entire home/apt,129,5,2,2015-08-23,0.04,1,0 +7438254,"Sunny, cozy, and convenient room in Harlem",38965196,Jen,Manhattan,Harlem,40.80649,-73.95565,Private room,88,4,16,2017-05-28,0.43,1,0 +7438743,Spacious Studio Room with Beautiful view NYC,38840706,Lance,Queens,Flushing,40.76735,-73.81801,Private room,75,1,28,2018-01-01,0.60,1,363 +7439512,One room in artsy Williamsburg,38973529,Abby,Brooklyn,Williamsburg,40.71723,-73.96285,Private room,85,1,0,,,1,0 +7439572,Cozy apt. near the subway in uptown Manhattan,25615380,Mariza,Manhattan,Washington Heights,40.85619,-73.93117,Private room,70,1,2,2016-12-03,0.06,1,145 +7448093,stylish apartment w/ backyard,6223874,Rachael,Brooklyn,Greenpoint,40.73059,-73.95651,Entire home/apt,185,1,3,2017-02-11,0.06,1,0 +7450047,Calm & Quiet in Clinton Hill,3676701,Margo,Brooklyn,Clinton Hill,40.68128,-73.96286,Entire home/apt,145,3,5,2016-09-07,0.10,1,0 +7451145,RARE! Vintage 2 Bed Artist's Flat,918087,Kestrel,Brooklyn,Bedford-Stuyvesant,40.68686,-73.94973,Entire home/apt,150,1,1,2015-12-20,0.02,3,0 +7452987,Big sunny 1BR in Ditmas Park with kitten!,429925,Jordan,Brooklyn,Flatbush,40.63767,-73.95637,Entire home/apt,50,21,0,,,1,0 +7453537,Lg Prospect Hts Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67883,-73.97051,Private room,70,1,258,2019-06-30,5.45,13,320 +7454378,Beautiful Home for seasonal rental,39039509,Emmanuelle,Brooklyn,East Flatbush,40.64563,-73.9419,Entire home/apt,150,2,36,2019-05-31,0.77,1,248 +7454426,Private room in WILLIAMSBURG LOFT,38944275,Hilary,Brooklyn,Williamsburg,40.7138,-73.96798,Private room,100,1,12,2018-10-27,0.26,1,89 +7454585,Private Room in Shared Apartment,8670155,Jason,Manhattan,Kips Bay,40.74085,-73.98153,Private room,69,1,1,2015-09-02,0.02,1,0 +7454629,Brooklyn's finest by Prospect Park,38609509,Casey,Brooklyn,Prospect-Lefferts Gardens,40.6608,-73.95888,Entire home/apt,115,3,65,2018-09-17,1.37,1,127 +7455580,Minimal Central Chelsea Studio,2801316,Arty,Manhattan,West Village,40.73778,-73.99941,Entire home/apt,120,5,17,2019-06-24,0.56,1,28 +7455635,Unique Artists' Studio in Manhattan,1407021,Gabe,Manhattan,Chinatown,40.71624,-73.99015,Entire home/apt,180,3,30,2018-01-03,0.63,1,0 +7456166,Large 1 Bdrm for 5; close to Roberta's / Morgan L,36849759,Peter,Brooklyn,Bushwick,40.70222,-73.93294,Entire home/apt,147,3,109,2019-07-01,2.50,2,191 +7456691,Large One Bedroom with Backyard,5553132,Carver,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95666,Entire home/apt,125,2,6,2015-08-25,0.12,1,0 +7457099,Luxury Upper East Side Apartment,39055176,Bo,Manhattan,Upper East Side,40.76205,-73.96382,Entire home/apt,328,2,145,2019-06-12,3.05,1,298 +7457673,NEW Modern Brooklyn 1BR Apt!,2203415,James,Brooklyn,Bedford-Stuyvesant,40.68678,-73.9513,Entire home/apt,85,1,6,2015-11-29,0.13,1,0 +7460009,One bedroom apartment,37077716,Biruta,Brooklyn,Bay Ridge,40.63014,-74.027,Entire home/apt,60,7,10,2018-08-06,0.21,1,0 +7460677,Cozy Sublet in Brooklyn,32691187,Paul,Brooklyn,Bedford-Stuyvesant,40.68618,-73.93273,Private room,60,3,7,2015-10-22,0.15,1,0 +7460748,East Williamsburg /Bushwick Room,1910452,Thuy,Brooklyn,Williamsburg,40.70608,-73.9433,Private room,46,2,0,,,2,0 +7460803,Large private bed/bath by Times Sq,18922562,Ishan,Manhattan,Hell's Kitchen,40.75538,-73.99751,Private room,90,2,0,,,1,0 +7460924,Experience Brooklyn,14925591,Juan,Brooklyn,Williamsburg,40.70275,-73.93445,Entire home/apt,150,1,191,2019-06-16,3.97,1,290 +7460933,Large Private Room in Greenpoint/ Williamsburg,12738054,Aude,Brooklyn,Greenpoint,40.72435,-73.95154,Private room,95,1,119,2019-06-24,2.57,2,1 +7461611,Extraordinary One Bedroom Apartment,28316637,Lisa,Brooklyn,Crown Heights,40.66514,-73.95688,Entire home/apt,185,3,56,2019-06-26,1.25,1,333 +7461720,Townhouse Bonus Room w/Private Bath,942252,Kimberly,Brooklyn,Prospect Heights,40.68024,-73.96658,Private room,89,1,213,2019-07-01,4.42,2,38 +7461910,Brooklyn Brownstone In Historic Bed Stuy - LEGAL,15539137,Natasha,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93751,Entire home/apt,67,2,149,2019-06-24,4.08,1,142 +7462019,LAKOU LAKAY- A HOME AWAY FROM HOME,39085295,Guerline,Brooklyn,Flatbush,40.63968,-73.95215,Entire home/apt,125,3,105,2019-06-25,2.67,1,195 +7462108,1 BR in a shared flat East Village,39085072,Pierre,Manhattan,Gramercy,40.73366,-73.98313,Private room,80,1,4,2015-12-25,0.08,1,0 +7470123,Entire apartment in Williamsburg,39126862,Alexandra,Brooklyn,Williamsburg,40.70732,-73.95259,Entire home/apt,199,3,4,2016-01-04,0.08,2,0 +7470216,Room in Nolita with great Rooftop,1534857,Sandro,Manhattan,Nolita,40.72261,-73.99333,Private room,79,12,0,,,2,0 +7471102,"Centrally Located, Spacious, and Quiet!",13001047,Mark,Manhattan,Gramercy,40.73768,-73.98727,Entire home/apt,225,3,0,,,1,0 +7471859,Williamsburg Walk Up,3504234,Ben,Brooklyn,Williamsburg,40.7128,-73.94175,Entire home/apt,125,1,0,,,1,0 +7471933,Brooklyn corner loft! Great views+elevator✌️,34315772,Shawn,Brooklyn,Williamsburg,40.70414,-73.93408,Entire home/apt,360,6,34,2019-07-02,0.72,1,76 +7472465,"Large, sunny apartment with rooftop",3700637,Hannah And Michael,Brooklyn,Williamsburg,40.71332,-73.95291,Entire home/apt,200,3,1,2015-08-04,0.02,1,0 +7472710,"The large, sunny two people room. 20 min to city!",26388084,Barbara & Andrzej,Queens,Sunnyside,40.74824,-73.91361,Private room,80,4,42,2019-07-03,0.89,2,1 +7473810,Light-filled urban cabin,39143718,Sean,Brooklyn,Bedford-Stuyvesant,40.68141,-73.95841,Entire home/apt,400,7,9,2019-01-02,0.20,2,365 +7473909,Beautiful Room in Central Brooklyn House,14291580,Ben,Brooklyn,Park Slope,40.68049,-73.97662,Private room,65,8,7,2018-09-02,0.15,1,11 +7475079,Quiet bright clean and convenient in 2 Bdroom apt.,39148503,Ramiro,Brooklyn,Williamsburg,40.70891,-73.94161,Private room,70,3,8,2019-01-01,0.17,2,0 +7475552,"Zen Oasis: Quiet, Comfortable Bushwick Room",22652051,Eric,Brooklyn,Bushwick,40.70414,-73.92888,Private room,85,2,24,2017-05-07,0.58,1,0 +7475708,2 Bedroom in Gramercy,12535775,Christina,Manhattan,Gramercy,40.73764,-73.9819,Entire home/apt,200,1,0,,,1,0 +7478570,Chic pad steps from Prospect Park,10183117,Cam,Brooklyn,Prospect-Lefferts Gardens,40.66037,-73.95901,Entire home/apt,68,2,7,2016-07-25,0.15,1,0 +7479520,Room in cozy Prime-Williamsburg Apt,9942424,Ilinca,Brooklyn,Williamsburg,40.71326,-73.9542,Private room,50,10,0,,,1,0 +7480066,"130/night, big and cozy, Brooklyn",4336763,Lary,Brooklyn,Gowanus,40.6798,-73.98231,Entire home/apt,130,1,4,2015-11-17,0.08,1,0 +7480520,Renovated & Spacious Chelsea Studio,15887987,Benjamin,Manhattan,Chelsea,40.73925,-74.0,Entire home/apt,215,3,94,2019-05-25,2.02,1,8 +7480729,BRIGHT & PRIVATE EAST VILLAGE STUDIO APARTMENT,12161280,Taylor,Manhattan,East Village,40.72528,-73.97882,Entire home/apt,165,4,38,2019-06-16,0.80,1,0 +7480795,1 bedroom in The East Village,18576994,Jennie,Manhattan,East Village,40.72361,-73.98395,Private room,100,1,6,2015-08-10,0.12,1,0 +7482448,Stylish garden apartment,10558084,Gennadiy,Brooklyn,Bedford-Stuyvesant,40.68558,-73.9281,Entire home/apt,85,3,1,2015-11-02,0.02,1,0 +7482767,Apartment share - Private Bedroom,39186813,Robert,Brooklyn,Carroll Gardens,40.67541,-73.99812,Private room,75,1,0,,,1,0 +7482792,Prospect Heights BK Studio,8435624,Heidi,Brooklyn,Crown Heights,40.68073,-73.96369,Entire home/apt,105,2,15,2016-07-20,0.31,1,0 +7482821,Bushwick Artist Haven w Private Yard by JMZ subway,4157435,Blair,Brooklyn,Bushwick,40.69696,-73.93433,Entire home/apt,100,5,71,2019-05-24,1.54,1,238 +7482970,"Time Square, New York City Center. Quiet Oasis!",14084147,Devin,Manhattan,Hell's Kitchen,40.75864,-73.99056,Entire home/apt,499,3,149,2019-07-02,3.11,1,201 +7483034,Spacious Chelsea Private Bedroom,7202390,Drew,Manhattan,Chelsea,40.74582,-73.99472,Private room,195,1,0,,,1,0 +7483049,Lovely 2-Bedroom Near Prospect Park,11816453,Natalie,Brooklyn,South Slope,40.66266,-73.98885,Entire home/apt,150,3,4,2017-09-30,0.09,1,0 +7483853,"Spacious, private UES room",33983182,Kaivan,Manhattan,Upper East Side,40.78235,-73.95058,Private room,54,25,4,2016-07-01,0.08,1,0 +7483951,PH With Big Terrace & City View!!!!,35321797,Miyako,Brooklyn,Williamsburg,40.71802,-73.95228,Entire home/apt,250,1,1,2016-05-01,0.03,1,0 +7484548,Cozy Comfy Private Room,39200438,William,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93983,Private room,40,1,23,2019-05-07,0.56,1,365 +7491626,Balcony Oasis & Open View - 20 min to Manhattan,30662827,Nicole,Queens,Astoria,40.767,-73.93051,Entire home/apt,95,4,1,2016-07-08,0.03,1,0 +7491713,NYC Lavish Studio Apartment Steps from SoHo!,30283594,Kara,Manhattan,Financial District,40.70862,-74.01408,Entire home/apt,169,30,3,2018-12-07,0.09,121,364 +7492539,urban cottage,6004716,Rosalyn,Queens,Astoria,40.7573,-73.92773,Private room,75,1,0,,,1,0 +7495477,Times Square luxury elevator doorman alcove studio,23224059,Zachary,Manhattan,Hell's Kitchen,40.76432,-73.99396,Entire home/apt,175,4,19,2019-05-30,0.43,1,343 +7495497,Park Slope Loft,2045777,Michael & Katherine,Brooklyn,South Slope,40.66707,-73.98994,Entire home/apt,145,1,4,2015-10-12,0.09,1,0 +7496211,Lower Manhattan Studio Alcove Apt,6520502,Jim,Manhattan,Financial District,40.70725,-74.01533,Entire home/apt,450,1,0,,,1,0 +7496720,Artist's Loft,3530591,Nanda,Manhattan,East Village,40.72295,-73.98246,Entire home/apt,135,4,4,2017-02-11,0.09,1,0 +7496824,Upper West Side Apt,39262419,Stacey,Manhattan,Upper West Side,40.7787,-73.98407,Entire home/apt,125,3,2,2015-12-11,0.05,1,0 +7497287,Massive Bedroom by Prospect Park,241593,Thomas,Brooklyn,Flatbush,40.65036,-73.96306,Private room,70,1,0,,,2,0 +7497370,"Spacious, Cozy Upper East Side Apt",39268020,Lorrin,Manhattan,Upper East Side,40.77673,-73.95078,Private room,100,1,7,2017-04-11,0.20,1,0 +7498074,Modern & Renovated | Great Location,13347167,AFI Apartments,Manhattan,Upper East Side,40.77085,-73.95725,Entire home/apt,118,30,4,2019-04-13,0.11,29,315 +7498271,"3Bdr Artist Apt. (L,M,J,Z trains)",35819315,Hui & Jon,Brooklyn,Bushwick,40.69593,-73.92057,Entire home/apt,172,3,135,2019-06-28,2.99,2,247 +7498508,The big little room,24377694,Kori,Brooklyn,Crown Heights,40.67804,-73.95411,Private room,105,1,1,2017-09-24,0.05,3,0 +7498981,The little big room,24377694,Kori,Brooklyn,Crown Heights,40.67628,-73.95422,Private room,55,1,1,2017-08-19,0.04,3,0 +7499452,Fully equiped room. TV AC,7443028,Ivan,Brooklyn,Bushwick,40.68949,-73.91191,Private room,60,5,0,,,1,0 +7500030,Two bedroom with two fold out bed,19976579,Damask,Manhattan,East Village,40.72682,-73.97845,Entire home/apt,250,1,0,,,1,0 +7500228,"Charming cozy bedroom, Downtown",16960158,Monte,Manhattan,Battery Park City,40.71011,-74.01457,Private room,99,2,31,2016-06-26,0.65,1,0 +7500270,Peaceful and Spacious Brooklyn Gem,21742272,Jenny,Brooklyn,Midwood,40.62467,-73.96406,Entire home/apt,88,2,13,2017-09-14,0.37,1,0 +7500390,Modern Apartment in NOHO / SOHO,11279503,Bobby,Manhattan,NoHo,40.7256,-73.99555,Private room,125,1,3,2015-09-21,0.06,1,0 +7500571,Gorgeous 1 Bedroom in Bed-Stuy,39288710,Audra,Brooklyn,Bedford-Stuyvesant,40.68544,-73.93872,Entire home/apt,102,3,64,2019-06-24,1.38,1,296 +7500903,HUGE room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64305,-73.99959,Private room,40,2,1,2015-08-09,0.02,2,0 +7501154,Charming sunny studio - Boerum Hill,2260108,Caroline,Brooklyn,Boerum Hill,40.68852,-73.98697,Entire home/apt,119,5,12,2017-08-21,0.25,1,0 +7501292,Gorgeous 1BR w huge private terrace,5565918,Ted,Brooklyn,Bedford-Stuyvesant,40.69141,-73.934,Entire home/apt,101,4,54,2019-04-28,1.14,1,0 +7501668,"Great Room in Bushwick, Brooklyn!",39249461,Justin,Brooklyn,Bushwick,40.70512,-73.92187,Private room,65,3,3,2015-08-20,0.06,1,0 +7501694,Prolonged Traveler's Dream( a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81335,-73.8873,Private room,40,30,15,2019-06-30,0.32,6,333 +7501794,Nice & Sweat Apartment in Manhhatan,10131727,Alex,Manhattan,Harlem,40.8051,-73.95069,Entire home/apt,109,2,1,2015-09-03,0.02,1,0 +7502146,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81395,-73.88675,Private room,40,30,21,2019-06-22,0.44,6,343 +7507877,Cozy house in Sunnyside gardens,22079796,Fatima Vélez,Queens,Sunnyside,40.74601,-73.9149,Entire home/apt,250,15,0,,,1,18 +7508560,Beautiful and Convenient,39335488,Mirlande,Manhattan,East Harlem,40.81211,-73.9378,Private room,75,3,134,2019-06-02,2.88,1,90 +7508742,Wild Flower Nice quiet space Queen size bed.,26354652,Philbert,Brooklyn,Flatbush,40.64935,-73.96485,Private room,90,2,24,2019-07-02,1.48,1,175 +7509362,Great BIG Upper West Side Apartment,29156329,Andrew,Manhattan,Upper West Side,40.8012,-73.96382,Private room,87,3,9,2018-09-19,0.19,1,0 +7510415,2 BR modern apartment in historic Harlem,30200529,Mark,Manhattan,Harlem,40.81095,-73.9443,Entire home/apt,185,2,12,2018-05-21,0.65,1,0 +7510770,Cozy Small Bedroom w/Bathroom. Balcony & Open Bar.,39347667,Keisher,Brooklyn,Bushwick,40.68496,-73.91107,Private room,45,14,15,2018-07-10,0.48,1,0 +7511452,Historic WoHo Townhouse,2588427,Rip,Manhattan,SoHo,40.72547,-74.01,Private room,300,7,51,2018-01-05,1.11,2,156 +7511610,Ft. Greene cozy & modern studio!,7094504,Ingrid,Brooklyn,Fort Greene,40.68799,-73.97314,Entire home/apt,140,2,19,2019-07-07,0.40,1,1 +7512240,Charming Top Floor Apartment w/ Roof Patio,39355825,Cole,Brooklyn,Williamsburg,40.71477,-73.94761,Private room,70,5,5,2016-07-10,0.11,1,0 +7512407,Heart of Williamsburg w/Backyard,23584870,Sandy,Brooklyn,Williamsburg,40.71733,-73.95566,Entire home/apt,150,6,0,,,1,0 +7512811,A True Brooklyn experience,13873590,Ricky,Brooklyn,Williamsburg,40.70884,-73.95742,Private room,80,1,3,2015-08-24,0.06,1,0 +7512967,Master Bedroom w/ private bathroom,1497263,Melissa,Brooklyn,Williamsburg,40.71704,-73.94509,Private room,60,1,0,,,1,0 +7514135,"1 Bedroom, Bushwick, Brooklyn",37407363,Patrick,Brooklyn,Bushwick,40.70192,-73.92928,Private room,45,1,7,2015-12-05,0.15,1,0 +7515281,"Clean private room, 20min from City",18277294,Noel,Brooklyn,Crown Heights,40.67065,-73.93544,Private room,40,8,1,2015-08-09,0.02,1,0 +7515694,A charming Parisian style apartment,1825554,Chris,Manhattan,Chelsea,40.7394,-73.99838,Entire home/apt,210,1,10,2019-01-01,0.22,1,6 +7516218,Modern 1 Bedroom in Dumbo / Vinegar Hill,60046,John,Brooklyn,Vinegar Hill,40.70146,-73.98188,Entire home/apt,225,30,23,2019-06-11,0.49,1,268 +7516992,Bedroom in Midtown Apartment,29544115,Chisom,Manhattan,Midtown,40.75737,-73.96916,Private room,70,1,1,2015-08-24,0.02,1,0 +7517579,Super Cute Brooklyn Loft,15772306,Jasmine,Brooklyn,Clinton Hill,40.69188,-73.9607,Private room,45,5,0,,,1,0 +7517614,"Cute, Eclectic, & Family Friendly",39389693,Sara,Manhattan,Washington Heights,40.8327,-73.94486,Entire home/apt,120,1,3,2015-09-19,0.06,1,0 +7518327,"13 Essex St, 202",39394883,文立,Manhattan,Chinatown,40.71612,-73.99121,Entire home/apt,150,1,0,,,1,0 +7519160,Comfy room (only) in my apt - UWS,397423,Travis,Manhattan,Upper West Side,40.77778,-73.9781,Private room,133,2,183,2019-07-01,3.90,1,263 +7524934,Large light-filled master bedroom.,39298265,Julia,Manhattan,Harlem,40.80313,-73.95742,Private room,60,2,1,2015-07-25,0.02,1,0 +7526715,Spacious Bedroom in Central Harlem,11203708,Elizabeth,Manhattan,Harlem,40.81189,-73.94148,Private room,64,2,20,2018-12-09,0.42,1,0 +7528664,"Small & Cozy Bedroom, L.E.S",20245055,Sade,Manhattan,Lower East Side,40.71289,-73.98877,Private room,69,3,27,2019-06-21,0.56,2,261 +7529231,"Small One Bedroom, Brooklyn Apt",39457267,Mike,Brooklyn,Bedford-Stuyvesant,40.68887,-73.95393,Private room,40,1,2,2015-09-03,0.04,1,0 +7531309,Studio in the Heart of Wall Street,810560,Jen,Manhattan,Financial District,40.70552,-74.00841,Entire home/apt,190,1,3,2015-07-25,0.06,1,0 +7534543,Garden apt with private entrance,12215421,Brian,Brooklyn,Park Slope,40.66889,-73.97617,Entire home/apt,275,2,60,2018-10-28,1.26,1,0 +7535342,2 BR in Times Sq: The heart of NYC,16387794,Layka,Manhattan,Hell's Kitchen,40.7603,-73.99222,Entire home/apt,200,3,203,2019-06-29,4.27,1,271 +7535450,Upper East Side private bedroom near Central Park,39480845,Jen,Manhattan,East Harlem,40.79042,-73.94641,Private room,75,4,37,2017-03-04,0.77,1,0 +7535791,"Big, bright loft in Williamsburg",39483454,Laura,Brooklyn,Williamsburg,40.7129,-73.95565,Entire home/apt,180,14,2,2015-08-05,0.04,1,0 +7539610,"Private room, shared bathroom.",39503857,Craig,Manhattan,Harlem,40.82034,-73.94345,Private room,200,1,0,,,1,0 +7541249,Cozy room in sunny BK apt,31086628,Lindsay,Brooklyn,Gowanus,40.67758,-73.98519,Private room,59,2,96,2019-07-03,2.07,1,41 +7541444,Beautiful treeline BK apartment!,1110017,Bettina,Brooklyn,Greenpoint,40.72402,-73.9415,Entire home/apt,149,5,2,2016-10-14,0.04,1,0 +7542500,Cozy Brooklyn Apartment,9646150,Lila (Eli),Brooklyn,Prospect-Lefferts Gardens,40.65736,-73.96094,Private room,55,1,107,2019-06-23,2.22,2,46 +7542840,Room in Upper West Side Manhattan,31799541,Eugene,Manhattan,Upper West Side,40.79452,-73.97065,Private room,75,1,12,2017-02-19,0.27,1,0 +7543993,Triplex with private garden,7753501,B,Manhattan,Harlem,40.80772,-73.951,Entire home/apt,400,2,1,2015-08-12,0.02,1,0 +7544709,Cool 1 Bdrm Apt in Lower East Side,39533449,Arthur,Manhattan,Lower East Side,40.71281,-73.98705,Entire home/apt,169,4,68,2019-05-27,2.54,1,44 +7545060,Perfect UWS Studio Sanctuary!,24265578,Jasmine,Manhattan,Upper West Side,40.79955,-73.96369,Entire home/apt,125,2,7,2016-10-23,0.15,1,0 +7545168,Private room in hip & historic area,2277452,Ilean,Brooklyn,Bedford-Stuyvesant,40.68346,-73.95551,Private room,58,2,30,2019-04-30,1.97,1,0 +7545274,Charming 1 Bedroom Apt - Midtown East,25846948,Morgan,Manhattan,Upper East Side,40.7631,-73.96393,Entire home/apt,151,3,19,2017-06-26,0.41,1,0 +7545750,Light Filled Studio Apartment,39539952,Jennifer,Manhattan,Inwood,40.86464,-73.92768,Entire home/apt,67,14,7,2018-09-08,0.15,1,21 +7545751,Edgecombe Ave Room,39539913,Adam,Manhattan,Harlem,40.82599,-73.94238,Private room,100,1,0,,,1,0 +7546039,Charming West Village Studio,39541748,Marcello,Manhattan,West Village,40.73764,-73.99887,Entire home/apt,185,3,4,2015-09-18,0.08,1,0 +7546944,Modern In Classic Brownstone,198538,Francesco,Brooklyn,Crown Heights,40.67215,-73.94126,Entire home/apt,190,2,63,2018-10-25,1.41,1,0 +7547439,"Quaint, Quiet East Village 1 BR",39549996,T.,Manhattan,East Village,40.72962,-73.98932,Private room,78,16,9,2019-04-18,0.19,1,23 +7547481,Adorable Brooklyn Apartment,9646150,Lila (Eli),Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96064,Private room,60,1,140,2019-06-24,4.00,2,40 +7547536,Greenwich Village: BEST Block,17122110,Paul,Manhattan,Greenwich Village,40.73528,-73.99744,Entire home/apt,210,2,193,2019-07-01,4.13,1,169 +7547750,"ENTIRE, SUNNY APT IN HEART OF LIC",9970061,Nicole,Queens,Long Island City,40.7432,-73.95565,Entire home/apt,139,2,6,2016-01-03,0.13,1,0 +7555283,Lovely 2 Bedroom in Upper West Side,39599671,Sara,Manhattan,Upper West Side,40.79045,-73.97361,Entire home/apt,200,5,12,2018-06-16,0.26,1,0 +7555693,Clean White Room overlooking Bridge & River,39603420,Graham,Manhattan,Harlem,40.82652,-73.95304,Private room,75,1,151,2019-05-30,3.17,1,0 +7556153,Fort Greene Sanctuary,16437254,Benjamin,Brooklyn,Fort Greene,40.68896,-73.97737,Entire home/apt,123,30,7,2019-03-09,0.19,21,342 +7556587,Sunny Room in Harlem,39608626,,Manhattan,Harlem,40.82929,-73.94182,Private room,28,1,1,2015-08-01,0.02,1,0 +7556669,Garden Facing Quiet Retreat,16437254,Benjamin,Brooklyn,Boerum Hill,40.68857,-73.98668,Entire home/apt,120,30,7,2018-05-05,0.15,21,360 +7556814,Top Floor Brownstone - Park Slope,3894475,Kyle,Brooklyn,South Slope,40.66671,-73.98172,Private room,85,2,5,2018-07-24,0.10,3,0 +7557546,Bright & Charming 2bdrm Minutes to Manhattan,9443343,Roula,Queens,Ditmars Steinway,40.77672,-73.91956,Entire home/apt,122,3,109,2019-07-03,2.34,1,271 +7559243,Christmas in New York,39624147,Pauline,Manhattan,Midtown,40.76372,-73.98081,Entire home/apt,700,7,0,,,1,0 +7560291,Upper West Side Studio Near All NYC,20670988,Moran,Manhattan,Upper West Side,40.794,-73.97632,Entire home/apt,99,5,16,2017-08-08,0.34,1,0 +7560654,Beautiful 1BR in upper Manhattan- close to subway!,22863142,Sarah And Mike,Manhattan,Washington Heights,40.83353,-73.94393,Private room,110,4,45,2019-06-17,2.23,1,59 +7560658,Perfect Brooklyn Loft Studio,8726365,Puja,Brooklyn,Williamsburg,40.70641,-73.96801,Entire home/apt,185,1,0,,,1,0 +7560918,"Williamsburg Studio, oudoor patio",39635423,Maura,Brooklyn,Williamsburg,40.71272,-73.96632,Entire home/apt,120,1,0,,,1,0 +7561257,"Beautiful, private 1BR in large shared apartment.",19914713,Samantha,Queens,Astoria,40.76254,-73.91415,Private room,89,2,7,2019-06-09,0.15,2,0 +7561314,Private room in modern Bushwick Apt,39636434,Peter,Brooklyn,Bushwick,40.69095,-73.92386,Private room,48,4,8,2017-08-30,0.17,1,0 +7561432,CHARMING ROOM W/ ROOF DECK ACCESS 2 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69342,-73.9611,Private room,90,30,20,2018-08-19,0.42,11,249 +7561584,SUNNY COZY ROOM FOR 1 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69411,-73.96151,Private room,90,30,31,2018-10-10,0.66,11,314 +7561686,Cozy Large Studio - Yankee Stadium,39639929,John,Bronx,Concourse,40.82381,-73.92725,Entire home/apt,110,1,1,2015-08-08,0.02,1,0 +7561847,Large and sunny 1br in Harlem!,10095503,Sophia,Manhattan,Harlem,40.82112,-73.94962,Entire home/apt,150,1,7,2016-10-30,0.15,1,10 +7561953,No better place than Prospect Place,1348134,Mareike,Brooklyn,Crown Heights,40.67552,-73.96041,Entire home/apt,120,5,4,2018-12-31,0.09,1,10 +7562552,Classic 1BR Brownstone w/ Backyard,39639169,Marlene,Brooklyn,Bedford-Stuyvesant,40.68338,-73.92072,Entire home/apt,110,3,125,2019-06-25,2.66,1,315 +7562611,Renovated 2 Rooms with balcony and ensuite bath,10475653,Izabel,Brooklyn,Windsor Terrace,40.64813,-73.97237,Private room,45,1,66,2019-07-01,1.38,3,228 +7563487,Great private room open for Aug!!,3353772,Jackie,Brooklyn,Williamsburg,40.70889,-73.94113,Private room,75,1,1,2015-08-04,0.02,1,0 +7563493,"Small Studio Private Suite by the Park近公園新小套房,鬧中取靜",39648442,A,Queens,Flushing,40.74823,-73.8084,Private room,65,1,158,2019-06-23,3.35,2,355 +7563529,Apartment in Chelsea btwn 6th-7th Aves,39652597,Mackenzie,Manhattan,Chelsea,40.74466,-73.99504,Entire home/apt,170,2,4,2016-09-22,0.09,1,0 +7563717,Spacious Studio in Midtown East,39655899,Ron,Manhattan,Midtown,40.75176,-73.96921,Entire home/apt,140,1,1,2015-08-26,0.02,1,0 +7570475,Cosy Master bedroom in Midtown West,16173306,Ali,Manhattan,Hell's Kitchen,40.76548,-73.99155,Private room,90,1,0,,,1,0 +7572103,Charming one bedroom NYC treasure! #10268,39699925,Avantika,Manhattan,Chinatown,40.71379,-73.99112,Entire home/apt,170,3,39,2019-07-03,0.85,1,19 +7572534,Comfortable cool - Manhattan - up to 2 guests,37579015,Ana,Manhattan,Hell's Kitchen,40.75894,-73.9915,Private room,90,1,142,2019-06-21,3.10,5,164 +7572637,Lovely 2 bedroom prime location,4398238,Andrew,Brooklyn,Prospect Heights,40.67505,-73.96711,Entire home/apt,175,2,5,2016-09-18,0.11,1,0 +7573103,Large 2.5 BR Apt In Park Slope,4565614,Jonathan,Brooklyn,South Slope,40.66293,-73.9838,Entire home/apt,135,1,3,2015-12-31,0.06,1,0 +7573221,"Cozy, clean in Greenpoint Brooklyn!",5287536,Kaya,Brooklyn,Greenpoint,40.72961,-73.95656,Entire home/apt,120,1,0,,,1,0 +7573321,Great NYC Apartment,1242357,Sam,Manhattan,Upper West Side,40.79397,-73.97376,Entire home/apt,175,3,1,2015-08-14,0.02,1,0 +7573430,"Private, renovated & furnished room",6031454,Melanie,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.95866,Private room,40,15,2,2015-11-28,0.04,1,0 +7574515,Furnished Columbia Apartment,38699335,Tom,Manhattan,Morningside Heights,40.80674,-73.96141,Private room,65,1,0,,,1,0 +7574757,"Family-friendly, cozy guest room",39713675,Quami,Brooklyn,Bedford-Stuyvesant,40.68366,-73.9247,Private room,69,2,186,2019-06-05,3.89,1,6 +7575626,Charming West Village Full Bed Apt,35307662,Lauren,Manhattan,Greenwich Village,40.73049,-74.00111,Private room,119,2,0,,,1,0 +7576910,"Private Modern room, stained glass view",39725165,Amanda,Manhattan,Harlem,40.80256,-73.94524,Private room,85,30,27,2018-12-31,0.61,1,0 +7577608,1 Large Bedroom plus 2nd bed,1355616,Carly,Brooklyn,Boerum Hill,40.68234,-73.98088,Private room,100,3,0,,,1,0 +7579573,Sunny NYC studio in prime location,39742177,Elle,Manhattan,Upper West Side,40.78323,-73.97721,Entire home/apt,155,3,1,2015-08-07,0.02,1,0 +7580481,Bright & Stylish Studio in the LES,10622338,Hester,Manhattan,Lower East Side,40.71767,-73.99004,Entire home/apt,160,1,26,2016-12-31,0.54,1,0 +7581611,Room in Spacious Williamsburg Loft,18770940,Ronald,Brooklyn,Williamsburg,40.70461,-73.93845,Private room,50,21,16,2016-10-31,0.34,1,0 +7581690,Spacious 2 Bedroom Apt,62791,Tal,Manhattan,Harlem,40.81208,-73.95097,Entire home/apt,125,3,1,2016-10-14,0.03,1,0 +7581727,SOHO LUXURIOUS LOFTED STUDIO,27921486,Judd,Manhattan,SoHo,40.72487,-73.99858,Entire home/apt,350,1,0,,,1,0 +7582706,1000 square feet of Luxury!,12757332,Jeremy,Manhattan,Financial District,40.70406,-74.01227,Entire home/apt,350,1,0,,,1,0 +7583507,Lovely Clinton Hill Bedroom,23124921,Kyle,Brooklyn,Clinton Hill,40.68973,-73.96073,Private room,65,2,2,2015-08-16,0.04,1,0 +7583901,Gorgeous 1 bedroom apt West Village,23299199,Marine,Manhattan,West Village,40.73453,-74.00656,Entire home/apt,247,1,0,,,1,0 +7584885,Charming large room ...,23129690,Jing,Manhattan,Upper West Side,40.80089,-73.96752,Shared room,85,1,0,,,1,0 +7590712,Cute & Cozy Short or Long Term Stay!,39805148,Chris,Queens,Jamaica,40.68692,-73.78022,Private room,45,1,63,2018-11-01,1.34,2,250 +7592433,Sunny & stylish 1 BR in Greenpoint,3751296,Matt & Alex,Brooklyn,Greenpoint,40.72717,-73.94697,Entire home/apt,139,2,21,2016-10-03,0.45,1,188 +7593263,Brand new 2bed/2bath garden apt steps from train,39808438,Easton,Brooklyn,Bushwick,40.68902,-73.9156,Entire home/apt,85,2,172,2019-06-17,3.60,5,136 +7593556,Big Cozy Apt w/ lrg outdoor space!,34312106,Kenny,Queens,Ridgewood,40.69962,-73.90439,Entire home/apt,125,2,108,2019-06-16,2.28,1,321 +7593985,UES - Private Studio with Kitchen,16382059,Sabrina,Manhattan,Upper East Side,40.77459,-73.9476,Private room,115,2,18,2016-02-15,0.38,1,0 +7594252,"Charming, large and peaceful",13283118,Nathalie,Brooklyn,South Slope,40.66627,-73.98954,Entire home/apt,175,60,1,2019-04-22,0.38,1,282 +7596078,"Funky, Quiet, Safe EV Walk-Up",4582155,Aaron,Manhattan,East Village,40.72475,-73.98009,Entire home/apt,140,3,0,,,1,0 +7596341,Midtown Manhattan best Location,17675081,Nathalia,Manhattan,Midtown,40.7601,-73.96746,Private room,125,1,0,,,1,0 +7597750,"One person, cozy room, real bed. 20 min to city!!!",26388084,Barbara & Andrzej,Queens,Long Island City,40.75037,-73.91265,Private room,59,4,28,2019-06-29,0.59,2,364 +7597951,Private BR in Modern Apt @ LES,17868326,Joshua,Manhattan,Lower East Side,40.72028,-73.98182,Private room,80,3,1,2016-04-27,0.03,1,0 +7599569,Quiet room in Bushwick! Looking for 1 month sublet,15762897,Davey,Brooklyn,Bushwick,40.69574,-73.9286,Private room,50,14,10,2016-06-06,0.21,1,0 +7599621,"Sunny 1 Bed Apt. Greenpoint, BK",19037938,Abby,Brooklyn,Greenpoint,40.72541,-73.95279,Private room,45,12,0,,,1,0 +7599873,GREAT APARTMENT IN BED STUY,7182520,Drew,Brooklyn,Bedford-Stuyvesant,40.6862,-73.9542,Entire home/apt,90,4,7,2018-08-08,0.15,1,18 +7600297,Midcentury Inspired Plantlovers Apt,7399447,Lee And Kara,Brooklyn,Williamsburg,40.71163,-73.95186,Entire home/apt,250,7,33,2017-01-14,0.70,1,0 +7601496,Spacious 1BR in Williamsburg,39706334,Erin,Brooklyn,Williamsburg,40.71009,-73.95398,Entire home/apt,140,1,0,,,1,0 +7601870,Chelsea Chic,35102629,Marino,Manhattan,Chelsea,40.75013,-74.0033,Entire home/apt,215,1,75,2019-05-26,1.61,1,331 +7602400,Stylish 1 BR in the heart of SoHo,2619307,Kameryn & Rob,Manhattan,SoHo,40.72634,-74.00101,Entire home/apt,180,3,6,2016-09-05,0.14,1,0 +7602426,Charming Classic UWS 2BR & Balcony,18008678,Clayton,Manhattan,Upper West Side,40.80193,-73.97038,Entire home/apt,250,2,18,2018-05-19,0.38,2,0 +7602442,Chelsea Apt Great Location,39868106,Michael,Manhattan,Flatiron District,40.74334,-73.99204,Entire home/apt,400,1,0,,,1,0 +7602826,Amazing Chelsea-Flatiron Condo-Loft,2859398,Zafrullah,Manhattan,Chelsea,40.7457,-73.9939,Entire home/apt,700,5,1,2015-10-07,0.02,1,0 +7603075,Adorable room in heart of Brooklyn,17163531,Beck,Brooklyn,Flatbush,40.65353,-73.95611,Private room,65,1,0,,,1,0 +7603389,Private Room in Downtown Manhattan,39875363,James,Manhattan,Chelsea,40.7438,-73.99751,Private room,118,2,259,2019-07-01,5.44,1,47 +7603640,Brand new in the heart of Tribeca,8617411,Benjamin,Manhattan,Tribeca,40.71978,-74.00968,Private room,1500,1,0,,,1,365 +7603716,Zen Private Bedroom in Brooklyn Gem,10831168,Jennifer,Brooklyn,Fort Hamilton,40.61926,-74.03272,Private room,70,1,15,2019-06-30,0.39,1,22 +7604021,Cozy studio close to Central Park,39880500,Marie,Manhattan,Upper West Side,40.79203,-73.96967,Entire home/apt,110,7,9,2019-05-27,0.19,1,19 +7610785,Modern CottageStyle EarlyBirdDiscount! TimeSquare,39915290,A. Kaylee,Manhattan,Harlem,40.81095,-73.95296,Entire home/apt,299,3,90,2019-06-09,1.96,2,304 +7611169,Spacious bedroom with large closet & quiet balcony,39916890,Marianne,Manhattan,East Village,40.7324,-73.98883,Private room,95,4,3,2016-07-23,0.08,1,0 +7611764,Private Bedroom in Renovated Apt,87494,Kevin,Manhattan,Washington Heights,40.83431,-73.9402,Private room,70,2,2,2015-08-26,0.04,1,0 +7612100,Sunny Spotless Manhattan apartment,39921605,Rachel,Manhattan,Upper West Side,40.80417,-73.96874,Private room,167,30,44,2018-03-06,0.92,5,188 +7612456,"Private Bathroom, Room and Entrance on the UWS!",4936739,Bindia,Manhattan,Upper West Side,40.791,-73.9722,Private room,103,5,42,2019-07-01,1.49,1,221 +7615409,AMAZING 1 BR APT LES/Chinatown NYC,39938343,Aleksey,Manhattan,Lower East Side,40.71813,-73.99231,Entire home/apt,145,6,13,2018-06-03,0.27,1,0 +7615496,88 By The Park w/Parking Space,37676608,Akini,Brooklyn,Canarsie,40.63118,-73.89679,Entire home/apt,100,2,187,2019-06-16,3.93,1,300 +7615693,Amazing 4 Bdrm Brownstone Apt,39940356,Craig,Brooklyn,Fort Greene,40.6874,-73.97484,Entire home/apt,275,6,8,2019-04-28,0.23,1,9 +7616651,Cute room in large apartment.,3663218,John Conor,Brooklyn,Williamsburg,40.71405,-73.94129,Private room,60,1,1,2015-08-18,0.02,2,0 +7617511,Cute room in Williamburg,6828611,Ashley,Brooklyn,Williamsburg,40.70854,-73.95281,Private room,70,1,4,2015-12-29,0.09,1,0 +7618832,NoLiTa Creative Live/Work Pad,1464880,Costas,Manhattan,Nolita,40.72118,-73.99575,Entire home/apt,300,4,4,2019-06-04,0.09,1,89 +7619082,Sunny & Spacious W'burg 2 Bed & 2 Bath Penthouse,710443,Andrew,Brooklyn,Williamsburg,40.71534,-73.96633,Entire home/apt,370,2,132,2019-07-06,3.14,1,257 +7619996,"Relaxing, cozy corner of Harlem",16662303,Grace,Manhattan,Harlem,40.81835,-73.94138,Private room,50,1,2,2015-09-14,0.04,1,0 +7620336,$1200/ Feb.16th---Mar.13th *^COZY STUDIO APARTMENT,39968155,Brad,Manhattan,East Harlem,40.79106,-73.94588,Entire home/apt,65,20,0,,,1,0 +7620355,Sunny large room in Bushwick,38670785,Maxime,Brooklyn,Bushwick,40.70189,-73.92872,Private room,68,1,1,2015-08-31,0.02,1,0 +7620763,Lovely Bsmt Apt. Nr trn to NYC - No Cleaning Fee,15163256,Faigie,Brooklyn,Sheepshead Bay,40.60633,-73.95704,Private room,92,3,60,2019-06-17,1.29,3,334 +7621629,Your cozy spot in Upper West Manhat,39977656,Hongqing,Manhattan,Upper West Side,40.80299,-73.96465,Private room,40,9,0,,,1,0 +7621698,A cozy place in Astoria,39978385,Andraz,Queens,Astoria,40.76979,-73.92019,Entire home/apt,100,10,7,2019-06-29,0.15,1,0 +7622042,"Sunny, quiet home away from home",35743318,David,Manhattan,Upper East Side,40.77756,-73.94859,Private room,140,7,9,2018-09-13,0.60,1,204 +7627784,Modern & Stylish HK Private Bedroom,6684858,Jd,Manhattan,Hell's Kitchen,40.76769,-73.99405,Private room,150,3,17,2019-05-24,0.37,1,364 +7629563,Bright and Clean Room for You!,13866555,Kelli,Brooklyn,Bedford-Stuyvesant,40.68268,-73.92825,Private room,45,1,2,2015-09-03,0.04,1,0 +7629972,"1br w/full ba,spacious and private",16929791,Tijana,Brooklyn,Columbia St,40.6851,-74.00228,Private room,70,7,2,2019-05-21,0.17,1,32 +7630422,Upper West Side Perfection,37138251,Matthew,Manhattan,Upper West Side,40.78733,-73.97364,Entire home/apt,230,1,161,2019-06-21,3.39,1,347 +7631233,Room at astoria,22994376,Yoshihisa,Queens,Ditmars Steinway,40.78261,-73.91452,Private room,49,1,0,,,1,0 +7631585,Spacious Well Kept Apartment 5 min to Midtown,40034304,Finley,Queens,Long Island City,40.75203,-73.9361,Private room,80,3,8,2018-10-23,0.56,1,0 +7632128,Huge BR in Hell's Kitchen,19650141,Rahim,Manhattan,Hell's Kitchen,40.75563,-73.99742,Private room,105,1,0,,,1,0 +7632166,1 private bedroom in cozy Apartment in Brooklyn,4596309,Daphne,Brooklyn,Bedford-Stuyvesant,40.68317,-73.91432,Private room,40,3,3,2016-09-12,0.07,1,0 +7632182,Murray Hill Luxury ApT w/ BALCONY,40037773,Brandon,Manhattan,Kips Bay,40.7438,-73.9781,Private room,90,3,19,2016-03-22,0.43,1,0 +7632731,"3 Bdr Upper West Side Elegance, 2500sq ft",39455276,Doug,Manhattan,Upper West Side,40.7874,-73.97381,Entire home/apt,600,10,2,2018-08-03,0.06,1,36 +7632804,Private room in shared apt.,40041424,Marisela,Brooklyn,Crown Heights,40.67215,-73.94281,Private room,50,2,2,2015-09-09,0.04,1,0 +7633154,3 bedrms; ideal for 4-5 persons,3672503,Steven,Brooklyn,South Slope,40.66307,-73.9834,Entire home/apt,195,3,84,2019-07-06,1.77,1,18 +7633507,Spacious West Village Apartment,15192120,David,Manhattan,West Village,40.73866,-74.00537,Entire home/apt,200,3,0,,,1,0 +7634327,Spacious 2BR Duplex in East Village,9584747,Aaron,Manhattan,East Village,40.72178,-73.98212,Entire home/apt,250,2,11,2017-01-03,0.24,1,0 +7636280,Calm and Cute Entire Studio,40058595,Sloane,Manhattan,Upper East Side,40.77865,-73.94858,Entire home/apt,175,2,4,2016-05-29,0.08,1,0 +7636474,Big Room in Greenpoint/Williamsburg,40062888,Kevin,Brooklyn,Greenpoint,40.7252,-73.95276,Private room,100,13,0,,,1,0 +7636986,Cozy studio close to seven subway lines,1723544,Alessandro,Queens,Long Island City,40.75215,-73.93913,Entire home/apt,150,7,9,2018-05-25,0.19,1,9 +7637047,Beautiful Studio on Park Avenue,15090552,Max,Manhattan,Midtown,40.74559,-73.98325,Entire home/apt,175,1,1,2015-08-01,0.02,1,0 +7637101,Spacious 1 bedroom,2484520,Marcus,Manhattan,Morningside Heights,40.81033,-73.95897,Private room,150,1,0,,,1,0 +7637112,Wyndham Vacation Resorts Condos,40068023,John,Manhattan,Midtown,40.75219,-73.97133,Entire home/apt,400,6,0,,,1,0 +7637472,Bright room in 2BR apt in Nolita!,24170584,Lauren,Manhattan,Little Italy,40.71959,-73.99604,Private room,99,2,2,2015-10-06,0.04,2,0 +7637901,"Perfect location, 15 min.Manhattan",39835878,Tuba,Queens,Ditmars Steinway,40.77648,-73.90987,Private room,70,3,13,2016-11-18,0.28,1,219 +7638537,Private Bedroom on Queens Blvd,40072723,Maksud,Queens,Rego Park,40.72929,-73.8574,Private room,48,1,32,2017-08-29,0.92,1,0 +7643399,APARTMENT WITH PARKING BY HOSPITAL,39918716,Kazi,Brooklyn,East Flatbush,40.65551,-73.94206,Entire home/apt,199,2,6,2017-10-02,0.16,1,130 +7643901,Great Location For New Year's Weekend,39706100,Dan,Manhattan,Upper West Side,40.79317,-73.96956,Private room,90,3,6,2015-08-28,0.13,1,0 +7644203,Spacious private apt in pre-war building,33853401,Frances,Brooklyn,Crown Heights,40.67714,-73.9486,Entire home/apt,130,2,3,2016-07-25,0.06,1,0 +7644505,Contemporary Brooklyn Town House,29999716,Scott,Brooklyn,South Slope,40.66393,-73.98728,Entire home/apt,300,7,0,,,1,0 +7645359,Old World Charm in Hip Brooklyn,7500,Russ,Brooklyn,Clinton Hill,40.68864,-73.96759,Entire home/apt,175,30,7,2019-03-02,0.17,1,27 +7646092,Spacious room in Williamsburg,24001156,Jenny,Brooklyn,Williamsburg,40.71905,-73.94937,Private room,48,5,3,2015-11-18,0.06,1,0 +7646751,Great Room in Williamsburg Brooklyn,40027302,Kooky,Brooklyn,Williamsburg,40.72002,-73.96028,Private room,70,3,90,2019-06-30,1.89,1,323 +7646832,Historic Clinton Hill Townhouse,6182854,Douglas,Brooklyn,Clinton Hill,40.68458,-73.96332,Entire home/apt,380,3,5,2016-11-27,0.11,1,0 +7647268,NiceRoomNiceNeighborhoodCloseMaimonidesHospital,40124500,Regina,Brooklyn,Borough Park,40.63741,-74.00118,Private room,45,1,43,2019-06-29,0.99,2,310 +7647651,Private Bedroom in Large Loft,6072700,Adam,Brooklyn,Red Hook,40.67791,-74.0072,Private room,55,5,5,2019-06-22,0.10,1,0 +7649693,"Beautiful, large and sunny bedroom",40138709,Dani,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95634,Private room,32,1,0,,,1,0 +7651418,Cute 1 Bed Apt in Lower East Side,40151792,Neil,Manhattan,Lower East Side,40.71903,-73.9904,Entire home/apt,160,5,10,2019-06-12,0.21,1,11 +7651459,Trendy TriBeCa SoHo Suite,39726069,James,Manhattan,Tribeca,40.7187,-74.00384,Private room,107,1,2,2015-09-30,0.04,1,0 +7651474,Bright Brownstone 2BR BedStuy Apt,405908,Robin & Bob,Brooklyn,Bedford-Stuyvesant,40.68248,-73.92811,Entire home/apt,155,2,139,2019-06-30,2.93,1,235 +7651547,New York 3 Bedroom 3 Bath & Backyard City College,9209691,Anatha Angèle,Manhattan,Harlem,40.82206,-73.95234,Entire home/apt,275,4,5,2019-06-29,2.78,2,284 +7652181,Sunny Room in Tropical Apartment,63607,Felix,Brooklyn,Williamsburg,40.71242,-73.95009,Private room,80,2,33,2017-12-30,0.70,1,0 +7652877,Suite in The Upper East Side,40163236,Manuela,Manhattan,Upper East Side,40.77018,-73.95947,Entire home/apt,205,2,23,2017-01-05,0.61,1,0 +7652929,Studio Apartment on Upper West Side,27784469,Elizabeth,Manhattan,Upper West Side,40.78557,-73.97214,Private room,150,1,2,2015-08-23,0.04,1,0 +7652936,"Sunny, Tree-top Studio",18985761,Abraham,Brooklyn,Carroll Gardens,40.67763,-74.00108,Entire home/apt,99,59,17,2019-06-01,0.49,1,58 +7654931,Private Moonlight Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.6884,-73.9305,Private room,59,1,237,2019-06-28,5.09,7,70 +7656308,Large Private Bedroom in Williamsburg Apartment,1311104,Christopher,Brooklyn,Williamsburg,40.71256,-73.95695,Private room,45,30,19,2019-03-21,0.43,1,0 +7657879,Beautiful GRDN Apt Chelsea Meatpacking Min 30 days,1163318,Vanessa,Manhattan,Chelsea,40.74376,-74.00387,Entire home/apt,270,30,195,2019-03-17,4.26,1,270 +7659042,Cozy Room 25 Minutes from Manhattan,23187157,Andrew,Brooklyn,Bushwick,40.70036,-73.91723,Private room,80,1,0,,,1,0 +7660252,beautiful and spacious one bedroom.,18953786,Ehsan,Queens,Astoria,40.7655,-73.92169,Entire home/apt,150,3,21,2019-06-19,0.46,2,349 +7660853,Lefferts Garden 1 bedroom,40010465,Luca,Brooklyn,East Flatbush,40.65429,-73.94917,Private room,35,1,1,2015-08-31,0.02,1,0 +7661020,Marvelous Manhattan Apartment! DEAL,40204929,Gian Maria,Manhattan,Washington Heights,40.83436,-73.94735,Entire home/apt,99,5,5,2018-06-20,0.11,1,0 +7661218,Brooklyn Garden House,345252,Thomas,Brooklyn,Prospect Heights,40.6799,-73.96416,Entire home/apt,150,7,9,2018-09-12,0.19,3,0 +7661735,Large Studio - Meatpacking District,19071455,Dan,Manhattan,West Village,40.74036,-74.00416,Entire home/apt,190,3,0,,,1,0 +7662160,Sunny Private Room in Crown Heights,6338005,Joy,Brooklyn,Crown Heights,40.67139,-73.94,Private room,50,3,7,2017-07-29,0.15,1,0 +7662874,"Quiet, sunny, renovated",40223271,Max,Manhattan,Harlem,40.82883,-73.94468,Entire home/apt,79,15,22,2019-05-05,0.49,1,0 +7663043,Large(1000 sq ft) 3BR w 1.5 baths,1599136,Sharon,Brooklyn,Bedford-Stuyvesant,40.68716,-73.9243,Entire home/apt,199,7,35,2019-06-08,0.78,1,283 +7663262,Two-Room Astoria Studio,11528105,Gina,Queens,Astoria,40.76508,-73.90935,Entire home/apt,65,14,0,,,1,0 +7663730,Private room in Brooklyn,33007145,Daphne,Brooklyn,Bushwick,40.69589,-73.93232,Private room,65,1,3,2016-05-25,0.06,1,0 +7664062,Private bedroom in booming brooklyn,31250964,Katherine,Brooklyn,Crown Heights,40.67034,-73.95848,Private room,75,1,0,,,1,0 +7664066,Cheerful Private Bedroom 5min to F & N Trains,17466612,Tanya,Brooklyn,Bensonhurst,40.6089,-73.97866,Private room,43,2,22,2018-10-09,0.54,2,0 +7664263,Spacious Fabulous Harlem 1 bedroom,25266538,RaVal,Manhattan,Harlem,40.81541,-73.94149,Entire home/apt,130,5,12,2017-05-27,0.25,1,0 +7664343,"Sunny, East Village Apartment!",15716203,Morgane,Manhattan,East Village,40.72399,-73.98869,Entire home/apt,180,2,2,2015-08-29,0.04,1,0 +7664594,1 Bedroom Park Slope 1 Block Subway,40234779,Tristan,Brooklyn,Sunset Park,40.66016,-73.99813,Private room,60,1,0,,,1,0 +7664692,SemiPrivateLivingRoomTwinBed/MaimonidesLutheranHos,40124500,Regina,Brooklyn,Borough Park,40.63574,-74.00329,Shared room,33,1,73,2019-07-01,1.53,2,365 +7664789,Cozy room in the heart of Astoria/10 min Manhattan,433207,Maryann,Queens,Astoria,40.76205,-73.91379,Private room,45,1,190,2019-07-07,5.20,2,132 +7664863,A Cozy Room In A Brooklyn House,40236384,Oates,Brooklyn,Prospect-Lefferts Gardens,40.65933,-73.95931,Private room,65,1,35,2017-04-30,0.73,2,0 +7664959,Nice and cozy room!,40237377,Lena,Brooklyn,Sheepshead Bay,40.5994,-73.95941,Private room,119,1,0,,,1,126 +7665230,Sunny Master Bedroom in Sunset Park,15892935,Theresa,Brooklyn,Sunset Park,40.64153,-74.01562,Private room,50,1,2,2015-08-22,0.04,1,0 +7665764,US Open? Perfect Lg 1 BR apartment,40244009,Marvin,Queens,Sunnyside,40.73926,-73.92045,Entire home/apt,150,3,2,2015-09-13,0.04,1,0 +7666157,Noel Palace,40164647,Michele,Brooklyn,Midwood,40.62713,-73.95221,Private room,150,3,0,,,1,0 +7669319,"Sunny Studio, Amazing Neighborhood",2048347,Andrea,Brooklyn,Prospect Heights,40.67293,-73.96678,Entire home/apt,99,7,11,2019-06-15,0.23,1,216 +7670562,JFK 10 & LGA 15 MINUTES A/C PRIVATE BEDROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69604,-73.82449,Private room,50,1,424,2018-11-25,8.86,5,0 +7673007,Bright 1 br apt in Greenpoint Brooklyn,3526617,Kyle,Brooklyn,Greenpoint,40.73604,-73.95415,Entire home/apt,250,2,4,2017-08-27,0.16,1,322 +7675781,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69463,-73.8261,Private room,50,1,408,2018-11-24,8.56,5,0 +7675917,PRIVATE ROOM WITH PRIVATE BACKYARD!,40236486,Priscilla,Manhattan,Washington Heights,40.8403,-73.93833,Private room,50,1,6,2018-05-06,0.13,3,64 +7675994,Prime location and room for 1,844862,Cj,Manhattan,East Village,40.73107,-73.98213,Private room,100,2,14,2019-05-27,0.30,2,342 +7676933,Beautiful&New Bedrooms near everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80188,-73.96696,Private room,59,1,26,2019-04-19,0.68,6,326 +7677565,Private Room With Queen Bed in NYC,40316314,Chris,Manhattan,East Village,40.72338,-73.98239,Private room,80,1,1,2015-08-16,0.02,2,0 +7677595,"Bright, one-bedroom in Brooklyn",326952,Ingrid,Brooklyn,Prospect Heights,40.67309,-73.96354,Entire home/apt,95,3,4,2015-11-25,0.09,1,0 +7678187,Stylish Modern Comfort in Bed-Stuy,40319733,Sam,Brooklyn,Bedford-Stuyvesant,40.68548,-73.94988,Entire home/apt,110,2,3,2015-09-24,0.06,1,0 +7678453,Beautiful Sunny Bedroom in BedStuy,39197422,Caitlin,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9303,Private room,60,5,1,2016-03-28,0.03,1,0 +7678743,FISHGRALA - Bedroom & Private Bathroom + Backyard,1477833,Blue & Elli,Brooklyn,Red Hook,40.67894,-74.0128,Private room,64,1,128,2019-06-19,2.71,1,76 +7679094,Bright and Airy Astoria Loft,3130040,Ana María,Queens,Ditmars Steinway,40.77679,-73.9212,Entire home/apt,175,2,7,2018-10-07,0.15,1,0 +7679236,Belle Harbor 4 BR 2 bath- 1 bl from Beach,40327248,Sarina,Queens,Neponsit,40.57215,-73.85822,Entire home/apt,350,2,5,2019-07-07,2.88,1,334 +7679691,Nice bedroom - Lower East Side,7065413,Johanna,Manhattan,Lower East Side,40.72014,-73.98498,Private room,80,1,2,2015-08-24,0.04,1,0 +7679697,Midtown West Modern Charming 1BD Apt near Times Sq,5513694,Paul,Manhattan,Hell's Kitchen,40.76377,-73.98786,Entire home/apt,200,2,49,2019-05-10,1.06,1,205 +7679943,Colorful 2 bedroom in great Brooklyn neighborhood,40332331,Joyce,Brooklyn,Windsor Terrace,40.65758,-73.97801,Entire home/apt,128,3,10,2019-06-25,0.21,2,3 +7680504,Ground Fl Apt. w/ backyard-Long term stay welcomed,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.68001,-73.94971,Entire home/apt,150,30,11,2019-05-31,0.29,3,332 +7680750,New 2BR+1BA For Up To 6 Ppl Only 15 Min To NYCity,347642,Jullien,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92795,Entire home/apt,100,3,120,2019-06-18,2.63,3,220 +7685764,Sunny Modern Gem Overlooking UWS,268419,Kevin,Manhattan,Upper West Side,40.79387,-73.97136,Entire home/apt,300,5,0,,,1,0 +7686940,The Wielingen,40371157,Jimmy,Bronx,Longwood,40.82417,-73.90156,Private room,95,1,182,2019-01-01,3.82,2,0 +7687937,Cozy apt in heart of the e village,40076332,Steven,Manhattan,East Village,40.72644,-73.98403,Entire home/apt,175,5,0,,,1,0 +7688481,Perfect Location - Meticulously Kept Flat,12620454,Will,Brooklyn,Bushwick,40.70442,-73.92484,Entire home/apt,220,5,27,2017-01-01,0.57,1,0 +7688839,Garden Apt in Historic Brownstone!,2060383,Lisa,Brooklyn,Cobble Hill,40.68732,-73.99245,Entire home/apt,147,3,23,2019-06-16,0.51,1,2 +7689346,East Village Private Room & Terrace,39956905,Can,Manhattan,East Village,40.72811,-73.98453,Private room,95,2,1,2015-08-29,0.02,2,0 +7689495,Cosy apartment in Carroll Gardens,33064750,Suzan,Brooklyn,Carroll Gardens,40.68282,-73.99774,Entire home/apt,160,5,2,2017-08-08,0.06,1,0 +7689651,Cozy One BR in Queens near Airport,33068587,Falana,Queens,Jamaica,40.68547,-73.78924,Private room,99,3,0,,,1,365 +7691534,"2 bed, 2 bath in Battery Park City",40394783,Richard,Manhattan,Battery Park City,40.70803,-74.01735,Entire home/apt,200,1,0,,,1,0 +7692326,Designer 5 BR home by Prospect Park,255597,Cassandra,Brooklyn,Crown Heights,40.66465,-73.95372,Entire home/apt,225,3,105,2019-06-30,2.28,1,94 +7692660,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81229,-73.88887,Private room,40,30,19,2019-06-29,0.40,6,287 +7692701,My home in Harlem,40401163,Stefan,Manhattan,Harlem,40.80591,-73.95525,Private room,75,14,0,,,1,0 +7692870,Privacy in Unique Shipping Container Home,3587751,Janet-David,Brooklyn,Williamsburg,40.70841,-73.9539,Private room,120,1,205,2019-06-28,4.39,2,349 +7693040,"Park Facing, Spacious 1 BR APT",4073947,Chris,Brooklyn,Crown Heights,40.66542,-73.96062,Entire home/apt,110,1,0,,,1,0 +7693124,Upper West Side 64th and Amsterdam,20691165,Ahnastasia,Manhattan,Upper West Side,40.77368,-73.98704,Private room,60,3,4,2017-08-01,0.08,1,0 +7693424,Shared Apartment to share,40404813,Ingrid,Brooklyn,East Flatbush,40.64588,-73.94961,Private room,100,1,2,2016-01-05,0.05,1,365 +7694064,Quiet Sanctuary right by the Subway,24666317,Keenan,Brooklyn,Clinton Hill,40.68443,-73.96737,Private room,77,2,12,2018-08-19,0.25,1,0 +7694418,Close to Central Park,1784925,Karen,Manhattan,Upper West Side,40.791,-73.96809,Entire home/apt,150,3,10,2018-01-02,0.21,1,0 +7695043,"Beautiful studio aprt Cobble Hill, BK",1338262,Rachel,Brooklyn,Boerum Hill,40.68589,-73.99102,Entire home/apt,160,3,38,2019-06-06,0.80,3,249 +7695442,Big sunny bedroom - heart of LES!,6654378,Veronica,Manhattan,Lower East Side,40.71796,-73.99032,Private room,58,10,0,,,1,0 +7696314,Private Bedroom in Midtown West,16932691,Tarin,Manhattan,Hell's Kitchen,40.75946,-73.99083,Private room,70,1,5,2015-10-22,0.11,1,0 +7696645,BrooklynBridge/Ft Greene,7590543,Dolores,Brooklyn,Navy Yard,40.69855,-73.97595,Entire home/apt,215,4,99,2019-07-06,2.09,1,0 +7696654,Spacious Harlem 1-Br. Terrace Apt with Doorman,5742112,Maximillian,Manhattan,Harlem,40.81236,-73.94142,Entire home/apt,100,4,0,,,1,0 +7696843,Room in the heart of Williamsburg,40425528,Matthew,Brooklyn,Williamsburg,40.71608,-73.95967,Private room,60,3,1,2015-10-21,0.02,1,0 +7697161,Beautiful 1 BR w/ Private Backyard,40427171,Lyle,Brooklyn,Cobble Hill,40.68665,-73.9922,Entire home/apt,125,1,0,,,1,0 +7697256,Room in a lovely UWS Apartement,17326743,Antoine,Manhattan,Upper West Side,40.78506,-73.97723,Private room,130,1,9,2016-03-30,0.19,1,0 +7697425,Private room in Williamsburg loft,40428881,Miles,Brooklyn,Williamsburg,40.71119,-73.96471,Private room,99,3,1,2015-10-26,0.02,1,0 +7697504,Industrial style Artist loft,40429192,K.,Brooklyn,Greenpoint,40.72831,-73.949,Entire home/apt,175,3,96,2019-06-02,2.06,1,328 +7698593,Bedstuy Brownstone Duplex w/ HUGE Backyard,5974094,Cody,Brooklyn,Bedford-Stuyvesant,40.69351,-73.94011,Entire home/apt,200,2,3,2019-05-27,0.09,1,188 +7698619,Room in Williamsburg Duplex,35997506,Michael,Brooklyn,Williamsburg,40.70939,-73.96758,Private room,85,1,0,,,1,0 +7698722,"2 BR Brownstone Retreat, 2nd Fl.",31919780,Neil,Brooklyn,Bedford-Stuyvesant,40.68599,-73.9394,Entire home/apt,99,3,98,2019-06-23,2.39,2,52 +7699037,Airy Basement Apartment,40439772,Ezra,Manhattan,Washington Heights,40.85076,-73.93049,Private room,45,3,29,2019-01-05,0.61,2,0 +7699156,One bedroom at Dream Location,820649,Ivo,Manhattan,Murray Hill,40.74751,-73.97676,Entire home/apt,190,1,0,,,1,0 +7699516,HUGE 2 bdrm 30 m ride from Midtown,40443551,Sherry,Manhattan,Washington Heights,40.8508,-73.94004,Entire home/apt,112,1,1,2015-09-02,0.02,1,0 +7699542,Master bedroom in a 3BR apt in UES,22703843,Haïssam,Manhattan,Upper East Side,40.76102,-73.96124,Private room,95,1,1,2015-08-07,0.02,1,0 +7699703,Private Brooklyn room by the L line,15420345,Anastassia,Brooklyn,Bushwick,40.70005,-73.91882,Private room,65,1,0,,,1,0 +7700054,Carroll Gardens Retreat,3074287,Gianni,Brooklyn,Carroll Gardens,40.68167,-73.99276,Entire home/apt,150,4,96,2019-05-19,2.02,2,3 +7700185,Cozy studio apartment in W Harlem.,40448425,Grayson,Manhattan,Harlem,40.81882,-73.9468,Entire home/apt,77,1,1,2015-08-31,0.02,1,0 +7700741,Spacious Private Room near train station :-)!,3284564,Mahrokh,Manhattan,Harlem,40.81406,-73.95282,Private room,69,2,1,2015-09-22,0.02,1,0 +7707191,1 room in 3 bdrm apt 78th and 3rd,38301594,Shana,Manhattan,Upper East Side,40.77484,-73.95726,Private room,80,1,2,2015-09-19,0.04,2,0 +7707274,"Sunny, top-floor apt (East Village)",19056507,Anastasia (Tess),Manhattan,East Village,40.72448,-73.9895,Entire home/apt,175,2,9,2017-09-17,0.19,1,0 +7708934,Beautiful sunny bedroom with balcony,6238227,Cecilia,Brooklyn,Bedford-Stuyvesant,40.69551,-73.95075,Private room,60,5,0,,,1,0 +7709293,master bedroom in a 4 bed 2 bath,40498479,Meryl,Manhattan,Harlem,40.82364,-73.95122,Private room,59,1,0,,,1,0 +7710250,Midtown East Bedroom Available,40503855,Dana,Manhattan,Midtown,40.75669,-73.96411,Private room,90,1,3,2015-10-11,0.06,1,0 +7710442,Light-filled cozy Greenpoint Brooklyn two bedroom,6432385,Tyler,Brooklyn,Greenpoint,40.72446,-73.94008,Entire home/apt,70,30,4,2016-01-02,0.09,1,34 +7710608,2 Bed in Center of West Village,278713,Kristin,Manhattan,West Village,40.73351,-74.00454,Entire home/apt,350,3,0,,,1,0 +7711161,Large and Sunny room in Downtown NY,3737483,Miguel,Manhattan,Chinatown,40.71382,-73.99769,Private room,75,6,2,2016-04-30,0.05,1,0 +7711451,Manhattan/ private room & private toilet.,5663719,Asger,Manhattan,Little Italy,40.71912,-73.99776,Private room,61,2,6,2019-07-07,0.13,1,213 +7711899,FEMALE ONLY 'Heaven'PrivateBed/SharedSpace w/Wifi,40509550,Denise,Manhattan,Washington Heights,40.84805,-73.94209,Shared room,42,1,14,2018-11-01,0.30,1,363 +7712022,Perfect Escape in NYC! #6,3256433,Ira,Manhattan,Nolita,40.72276,-73.99314,Entire home/apt,350,60,10,2018-08-19,0.22,7,0 +7712750,светлая комната с балконом,40516440,Galina,Brooklyn,Sheepshead Bay,40.58851,-73.9558,Private room,45,4,52,2019-06-12,1.09,1,341 +7713509,"Brooklyn, Clinton Hill, Private rm",12303720,Cameron,Brooklyn,Clinton Hill,40.68405,-73.96681,Private room,75,3,2,2015-09-14,0.04,1,0 +7714405,"Ideal Apt for US Tennis Open, 2BR",40527701,Christine,Queens,Elmhurst,40.73726,-73.88065,Entire home/apt,150,2,2,2015-08-17,0.04,1,0 +7714664,Authentic Apartment in the heart of Brooklyn,2520125,Katja,Brooklyn,East New York,40.66045,-73.89873,Entire home/apt,72,4,121,2019-06-24,2.54,2,33 +7715342,Beautiful Home Away From Home,11272233,Kat,Brooklyn,Crown Heights,40.6735,-73.93856,Private room,59,1,199,2019-06-22,4.19,2,288 +7715344,1 Bedroom Apart in Spanish Harlem,15581933,Mary,Manhattan,East Harlem,40.79324,-73.94513,Entire home/apt,90,2,4,2016-03-31,0.08,1,0 +7716148,Whole Floor In Cobble Hill,40206276,Jon,Brooklyn,Cobble Hill,40.6881,-73.99498,Entire home/apt,145,2,4,2016-07-08,0.09,1,0 +7716322,Huge Room with a View on Manhattan!,19411025,Natalija,Queens,Sunnyside,40.74633,-73.91293,Private room,115,1,0,,,1,0 +7716489,Idyllic Studio in Williamsburg,22770300,Melody,Brooklyn,Williamsburg,40.71331,-73.96347,Entire home/apt,225,1,0,,,1,0 +7717284,"Brooklyn Apt Near Park, Franklin Av",27474206,Juliana,Brooklyn,Crown Heights,40.67317,-73.95419,Private room,45,1,1,2015-12-12,0.02,1,0 +7717598,Cozy Brooklyn Private Home,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.67982,-73.91347,Entire home/apt,35,3,63,2019-01-21,1.33,4,0 +7717785,George Washington Bridge Delight- Entire Apt!,11003269,Sally,Manhattan,Washington Heights,40.85159,-73.94036,Entire home/apt,150,1,32,2019-06-30,1.18,1,358 +7718452,Cosy and Convenient Carroll Garden,3074287,Gianni,Brooklyn,Carroll Gardens,40.68333,-73.99369,Entire home/apt,147,4,91,2019-05-27,2.10,2,3 +7718995,Private Space with Outdoor Patio,25169596,Jessica,Manhattan,Upper West Side,40.77148,-73.98226,Private room,182,1,221,2019-06-10,4.65,2,327 +7724031,Apartment is in Washington heights,40585281,Teddy,Manhattan,Washington Heights,40.84687,-73.94004,Private room,110,1,0,,,1,0 +7724136,Large Lower East Side 1 BDR,40585961,Miguel,Manhattan,Lower East Side,40.72092,-73.98849,Private room,85,1,0,,,1,0 +7724865,Gramercy Apartment,36195153,Ben,Manhattan,Kips Bay,40.73999,-73.98122,Private room,175,3,174,2019-06-24,3.66,1,194 +7725030,Contemporary Clinton Hill 1BR Condo,7456416,Leah,Brooklyn,Clinton Hill,40.6867,-73.9621,Entire home/apt,250,1,2,2015-11-29,0.04,1,0 +7725042,1BR in a 3BR Apt by Columbia,23715762,Joon,Manhattan,Upper West Side,40.80113,-73.96566,Private room,50,1,0,,,1,0 +7725075,Come Be A Part of NYC,40591396,Eric,Queens,Long Island City,40.74229,-73.95427,Private room,70,1,5,2015-10-11,0.10,1,0 +7725197,Huge Bed-Stuy Townhouse,3320167,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94662,Private room,47,7,0,,,1,0 +7725573,Huge Private Bedroom in Harlem Apt,10872717,Mala,Manhattan,Harlem,40.81469,-73.94887,Private room,75,1,1,2016-03-31,0.03,1,0 +7725825,COMFORT 25 MINS FROM NEW YORK,40595718,Adria,Queens,Ozone Park,40.68792,-73.83752,Entire home/apt,79,1,22,2019-04-15,0.49,1,130 +7726296,Beautiful 1 Bedroom Apartment,7375767,Daniel,Brooklyn,Bedford-Stuyvesant,40.68927,-73.95277,Entire home/apt,115,1,0,,,1,0 +7727061,Bright Private room NYC Near train,25843005,Daljit,Queens,Astoria,40.75818,-73.92679,Private room,35,2,191,2019-06-30,4.00,3,24 +7727644,Charming 2 Bedroom Apt in Midtown,40539880,Reid,Manhattan,Hell's Kitchen,40.76104,-73.9885,Entire home/apt,300,3,4,2016-10-31,0.12,1,0 +7727798,Room with its private bathroom and garden access,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69461,-73.93406,Private room,86,3,91,2019-07-02,1.99,7,20 +7728018,Beautiful Upper East Side,40608098,Nicole,Manhattan,East Harlem,40.78502,-73.94763,Entire home/apt,189,1,14,2015-11-29,0.30,1,0 +7728262,Sunny Bed-Stuy Cove,23420949,Bekah,Brooklyn,Bedford-Stuyvesant,40.69451,-73.94419,Entire home/apt,70,1,2,2015-08-17,0.04,1,0 +7728265,clinton Hill - bedsty,6623512,Nitzan,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95779,Private room,32,7,0,,,1,0 +7728553,GR8 CARROLL GARDENS/ENTIRE STUDIO/!,40611169,Sol,Brooklyn,Carroll Gardens,40.67793,-73.99531,Entire home/apt,150,1,78,2019-05-09,2.22,5,365 +7728860,Flex 2br+sofa bed+kitchen,7503643,Vida,Brooklyn,Greenpoint,40.72674,-73.94004,Entire home/apt,159,30,2,2018-12-22,0.05,52,0 +7729804,Spacious Pre-War in Crown Heights,18066933,Emily,Brooklyn,Crown Heights,40.67517,-73.94421,Private room,50,1,2,2016-07-04,0.04,2,0 +7730160,Furnished NYC 1BR apt near Rockefeller Center!!!,30283594,Kara,Manhattan,Theater District,40.75967,-73.98573,Entire home/apt,135,30,0,,,121,174 +7730865,Haha,21256980,Peiyu,Manhattan,Murray Hill,40.7459,-73.97607,Private room,170,1,0,,,1,0 +7731215,Beautiful Studio near Times Square,21297782,David,Manhattan,Hell's Kitchen,40.76292,-73.99551,Entire home/apt,140,5,5,2016-10-07,0.11,1,0 +7731348,Perfect UWS Apartment,40627479,Mindy,Manhattan,Upper West Side,40.79433,-73.97333,Entire home/apt,175,1,5,2015-11-19,0.11,1,0 +7733236,Spacious Room in Lovely Sunnyside Apartment,5085741,Maggie,Queens,Sunnyside,40.73678,-73.92437,Private room,55,7,0,,,1,0 +7733241,Amazing room in Williamsburg House,16683784,Charles,Brooklyn,Williamsburg,40.71375,-73.94342,Private room,72,2,5,2017-06-30,0.11,1,0 +7733315,sunny and spacious respite,3010260,Genevieve & Brett,Brooklyn,Crown Heights,40.66983,-73.95332,Entire home/apt,198,4,4,2018-08-12,0.08,1,0 +7733651,Perfect 2BR for a family!,36539736,Katie,Brooklyn,Boerum Hill,40.68658,-73.9891,Entire home/apt,180,2,17,2017-01-01,0.36,1,0 +7733862,Modern 2 bed in Park Slope,1289713,Rachel,Brooklyn,Park Slope,40.67757,-73.98195,Entire home/apt,200,4,12,2018-08-25,0.25,1,5 +7733896,Big Master bedroom with attached Private Bathroom,1036161,Blake,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95016,Private room,220,1,88,2019-06-02,1.84,2,60 +7734034,Ocean view studio with balcony,35976278,Yin,Queens,Arverne,40.59029,-73.79032,Entire home/apt,125,1,9,2019-06-24,0.20,1,340 +7734176,Spacious two bedroom in NYC,40645778,Angela,Manhattan,Hell's Kitchen,40.76444,-73.98592,Entire home/apt,300,3,12,2019-01-01,0.26,1,33 +7734670,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81387,-73.88797,Private room,37,30,13,2019-02-28,0.28,6,333 +7740527,Sunny Air Conditioned Bedroom,40684968,Matt,Manhattan,Harlem,40.8127,-73.95004,Private room,60,1,1,2015-08-09,0.02,1,0 +7741113,Prospect Park Room,910884,Kristian,Brooklyn,Prospect-Lefferts Gardens,40.65606,-73.95902,Private room,49,10,1,2016-04-16,0.03,1,0 +7742287,Spacious furnished room,40694772,Data05,Queens,Flushing,40.73331,-73.80811,Private room,55,2,0,,,1,0 +7742486,"Charming Park Slope 1BR! Near F, G, R",40695843,Maia,Brooklyn,Park Slope,40.67202,-73.98531,Entire home/apt,145,5,18,2019-01-03,0.50,1,0 +7742889,"Cozy, parkside room in Inwood",8692598,Jen,Manhattan,Inwood,40.86363,-73.93002,Private room,48,1,5,2015-09-27,0.11,1,0 +7743287,HUGE Private Loft Bedroom! (June),40699990,Liesl,Brooklyn,Crown Heights,40.67589,-73.9287,Private room,75,2,0,,,1,0 +7744239,"Garden Apt, Brooklyn - 2 nights min",1641361,Nadia,Brooklyn,Carroll Gardens,40.68229,-73.99369,Entire home/apt,200,1,0,,,1,0 +7744805,Harlem's Finest Beautiful Garden Apt w/Backyard!,40703442,Graham,Manhattan,Harlem,40.80739,-73.94196,Entire home/apt,153,4,91,2018-12-31,1.95,3,4 +7745375,Cozy Private Room in Williamsburg,15905720,Dennis,Brooklyn,Williamsburg,40.71278,-73.96292,Private room,69,1,0,,,1,0 +7745868,Private Room in East Williamsburg,7876900,Taylor,Brooklyn,Williamsburg,40.7088,-73.93983,Private room,45,1,3,2016-03-30,0.06,1,0 +7746285,1br/1office big apartment w garden,20156140,Sam,Brooklyn,Greenpoint,40.7334,-73.95639,Entire home/apt,104,5,0,,,1,0 +7746303,127 soundspace and meeting place,40703442,Graham,Manhattan,Harlem,40.80872,-73.94228,Entire home/apt,150,1,2,2018-03-30,0.07,3,0 +7746872,Stylish 2BR! 5 min to Central Park!,16641806,Noa,Manhattan,East Harlem,40.78824,-73.94687,Entire home/apt,195,1,112,2019-06-06,2.38,1,262 +7747237,Central Harlem Loft Bdrm + Garden,40703442,Graham,Manhattan,Harlem,40.8098,-73.94443,Private room,90,2,1,2015-09-21,0.02,3,0 +7748044,Neat room with private bath $60,40140854,Soojeong,Queens,Elmhurst,40.73607,-73.87981,Private room,60,1,1,2015-08-08,0.02,1,0 +7748422,Great 4 Fl walk up studio apt w/den,1353426,Katie,Brooklyn,Clinton Hill,40.68202,-73.96273,Entire home/apt,145,3,2,2018-09-24,0.06,1,0 +7749069,Large 1BR apt only 20 minutes to Manhattan.,40735098,Joel,Brooklyn,Borough Park,40.64346,-73.99814,Entire home/apt,120,2,35,2019-06-15,0.78,1,346 +7749239,"1BR w/roof: Williamsburg, Brooklyn",10784441,Aaron,Brooklyn,Williamsburg,40.7149,-73.95588,Entire home/apt,111,2,15,2017-12-24,0.32,1,0 +7749367,"Park Slope gem, Best of Brooklyn",40732314,Catherine,Brooklyn,Park Slope,40.67621,-73.97238,Entire home/apt,140,5,1,2015-09-03,0.02,1,0 +7749472,Sunny Peaceful Harlem Space,13667779,Miriam,Manhattan,Harlem,40.82453,-73.93952,Private room,60,2,9,2019-06-04,0.19,2,280 +7749763,Shared male Room on Manhattan. Amazing view! II,39528519,Max,Manhattan,Lower East Side,40.70993,-73.987,Shared room,35,14,6,2019-02-16,0.25,28,201 +7749818,Dream bedroom with private bathroom.,40221604,John,Manhattan,Harlem,40.82312,-73.94539,Private room,93,1,100,2019-06-16,2.74,3,49 +7750936,$30 per night private room Bushwick,3508047,Brian,Brooklyn,Bushwick,40.69845,-73.93495,Private room,30,1,3,2016-09-14,0.07,3,0 +7754916,Awesome room! 10 min to the city!!,15931768,Teodoro,Brooklyn,Bedford-Stuyvesant,40.69704,-73.94761,Private room,60,5,2,2015-09-29,0.04,1,0 +7756711,Charming garden apt in a brownstone,40784273,Anne,Brooklyn,Bedford-Stuyvesant,40.68266,-73.91819,Entire home/apt,99,5,1,2015-08-27,0.02,1,0 +7757549,Spacious Chelsea Penthouse w/roof!,8314981,Kevin,Manhattan,Chelsea,40.74212,-73.99828,Private room,210,2,20,2016-09-01,0.42,2,0 +7758577,2 Bed apart in the heart of Chelsea,30669247,Rui,Manhattan,Chelsea,40.74313,-73.99844,Entire home/apt,175,3,2,2016-03-12,0.04,1,0 +7760204,"LG, quiet room nr Cloisters, A, 1",8335684,Mary,Manhattan,Inwood,40.86274,-73.92842,Private room,22,1,13,2019-01-02,0.28,3,0 +7760406,Modern Chelsea Studio,39060578,Scott,Manhattan,Chelsea,40.74336,-74.00278,Entire home/apt,200,6,45,2018-01-02,0.99,1,0 +7760545,"COZY STUDIO in Sunnyside/Queens, NY",40812784,Elena,Queens,Sunnyside,40.74494,-73.91513,Entire home/apt,120,30,29,2018-10-27,0.62,1,178 +7760808,West 57th Hilton Breakfast/Wine 30 sec from Parade,4403646,Paul,Manhattan,Midtown,40.76352,-73.9777,Entire home/apt,319,4,9,2018-09-09,0.24,1,358 +7761394,One room in a 4 Bedroom apt.,40812084,Chris,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92494,Private room,45,4,2,2015-09-29,0.04,1,0 +7762201,"Studio Apartment, Brooklyn",3189999,Sebastian,Brooklyn,Bedford-Stuyvesant,40.6831,-73.94962,Entire home/apt,99,5,1,2015-09-08,0.02,1,0 +7762374,Artsy townhouse in Sugar Hill (Manhattan),1273607,David,Manhattan,Harlem,40.82651,-73.94871,Entire home/apt,450,3,35,2019-06-28,0.77,1,264 +7763203,Large comfy room in Victorian home,1112560,Mary,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95595,Private room,89,5,28,2019-06-15,0.60,3,282 +7763869,The Dream Room near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66026,-73.93992,Private room,65,2,71,2019-05-14,1.57,4,170 +7764285,Spacious Modern Williamsburg Apt,489734,Andrew,Brooklyn,Williamsburg,40.71264,-73.94622,Entire home/apt,185,3,8,2016-07-01,0.17,1,0 +7764516,Furnished quiet clean room,40834217,Jay,Queens,Whitestone,40.78223,-73.80724,Private room,35,7,0,,,1,365 +7768661,Brand new Manhattan Apartment sleeps 7!,39921605,Rachel,Manhattan,Upper West Side,40.80328,-73.96898,Entire home/apt,238,30,14,2019-04-03,0.31,5,91 +7769782,Beautiful Room in Bushwick.,40867860,Patricia,Brooklyn,Bedford-Stuyvesant,40.68053,-73.90879,Private room,63,1,4,2019-06-28,2.18,1,240 +7769946,Lovely House in the Hill/ 2bedrm apt,40863179,Kevin,Brooklyn,Fort Greene,40.68504,-73.9696,Entire home/apt,150,7,43,2019-06-13,1.20,1,53 +7770529,Charming Studio in the West Village,514455,Elana,Manhattan,West Village,40.73162,-74.00928,Entire home/apt,180,1,0,,,1,0 +7770735,Private Room close to subway (3/3),40874834,Esteban,Queens,Jackson Heights,40.75421,-73.86435,Private room,75,1,96,2019-06-22,2.06,3,339 +7771170,Creative Woodside Studio,8134104,Kaplan,Queens,Woodside,40.74507,-73.90738,Entire home/apt,500,1,10,2016-07-18,0.21,1,0 +7771351,NYC Queen size Bedroom w/private bathroom.,40877319,Ray,Bronx,Pelham Bay,40.84423,-73.83602,Private room,59,3,113,2019-06-06,2.42,1,290 +7771777,Private bedroom and bathroom,14139134,Eliza,Manhattan,Morningside Heights,40.8061,-73.96641,Private room,90,1,1,2015-08-14,0.02,1,0 +7772377,"Large, Spacious, Bright Apartment",16000650,Jamal,Brooklyn,Park Slope,40.68193,-73.97807,Entire home/apt,150,5,1,2015-09-12,0.02,1,0 +7774167,"Basement Beach Apartment, Rockaways",40895369,Vanda,Queens,Rockaway Beach,40.58881,-73.81066,Entire home/apt,70,1,70,2019-07-02,2.45,1,336 +7774182,Family House 7 Minutes To Manhattan,40895328,Beatriz & Will,Queens,Astoria,40.75743,-73.92366,Entire home/apt,289,2,176,2019-06-30,4.07,2,309 +7774373,I Love NY Studio Deluxe,40895919,Jules,Manhattan,Chelsea,40.74327,-73.99848,Entire home/apt,245,3,115,2019-07-02,2.43,1,125 +7774519,Bushwick Sunny Private Room,1503022,Regard,Brooklyn,Bushwick,40.69866,-73.92498,Private room,53,14,0,,,1,0 +7775128,Quiet apartment in Chelsea,2640056,Yuval,Manhattan,Chelsea,40.74148,-74.00048,Entire home/apt,225,4,2,2016-10-13,0.04,1,0 +7775431,Spacious and Charming UES Bedroom in Best Location,10054959,E.F.,Manhattan,Upper East Side,40.78339,-73.95239,Private room,149,4,33,2018-12-06,0.83,1,53 +7775627,Bright apartment in Lower Manhattan,40905449,Abby,Manhattan,Financial District,40.70689,-74.01451,Entire home/apt,160,2,7,2016-07-01,0.15,1,0 +7775711,1 bedroom in Bed-Stuy,33190103,Kris,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9478,Entire home/apt,70,2,1,2015-08-11,0.02,1,0 +7775879,2br Near Brooklyn Bridge,24560401,Danuza,Brooklyn,Fort Greene,40.69705,-73.97743,Entire home/apt,165,3,120,2019-06-21,2.54,1,170 +7775924,AUG 16-31 - LARGE FURNISHED 1 BDRM,3002111,Ana,Manhattan,Kips Bay,40.74056,-73.98389,Private room,70,15,0,,,1,0 +7780335,Sunny studio in Williamsburg,7285322,Allie,Brooklyn,Williamsburg,40.71607,-73.95352,Entire home/apt,150,3,9,2017-12-29,0.20,1,0 +7782176,Newly Renovated Private Room,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94495,Private room,65,1,11,2018-04-22,0.24,10,260 +7782340,Fabulous Apartment in NYC,25881276,Jordana,Manhattan,Upper West Side,40.79063,-73.97864,Entire home/apt,175,2,13,2016-04-09,0.28,2,0 +7783855,"Cozy 2 Bedrooms Bedstuy,Brooklyn",40958326,Gerald,Brooklyn,Bedford-Stuyvesant,40.68528,-73.91573,Entire home/apt,175,4,99,2019-06-15,2.12,1,334 +7784365,Great cozy room 5 minutes to city,25602663,Mizo,Queens,Long Island City,40.75255,-73.93654,Private room,90,4,19,2018-09-16,0.41,2,286 +7785582,Basement Room with Private Bathroom,11048791,Jarred,Brooklyn,Bushwick,40.70068,-73.91621,Private room,40,7,2,2018-05-22,0.04,1,0 +7785952,Spacious Studio UES,4797755,William,Manhattan,Upper East Side,40.7829,-73.94694,Entire home/apt,170,2,53,2019-05-27,1.19,1,0 +7786903,Huge bedroom in Brooklyn duplex!,4263734,Nisa,Brooklyn,Crown Heights,40.67195,-73.95535,Private room,70,3,8,2016-10-10,0.17,1,0 +7787799,Home 4 Medical Professionals-Wyckoff Heights MC 1,26377263,Stat,Brooklyn,Bushwick,40.70326,-73.91822,Private room,50,30,1,2016-05-28,0.03,43,203 +7787983,**Caribbean Blush-8 mins to JFK**,36205028,Mrs. T,Queens,Jamaica,40.68542,-73.7926,Private room,52,1,179,2019-06-24,3.79,2,350 +7788438,Home 4 Medical Professionals-Wykof3,26377263,Stat,Brooklyn,Bushwick,40.70249,-73.91904,Private room,47,30,0,,,43,347 +7788565,Home 4 Medical Professionals-Wykof4,26377263,Stat,Brooklyn,Bushwick,40.70468,-73.91935,Private room,47,30,0,,,43,257 +7788880,"Home 4 Medical Professionals- The ""Camphor""",26377263,Stat,Brooklyn,Bushwick,40.70387,-73.91665,Private room,47,30,4,2018-08-18,0.13,43,144 +7789152,Charming exposed brick apartment,1439611,Dipak,Manhattan,Lower East Side,40.71783,-73.98392,Entire home/apt,175,4,36,2019-04-17,0.77,1,0 +7789213,Home 4 Medical Professionals-Wykof8,26377263,Stat,Brooklyn,Bushwick,40.70233,-73.9175,Private room,47,30,2,2017-05-13,0.06,43,229 +7789346,"Home 4 Medical Professionals - The ""Noxious""",26377263,Stat,Brooklyn,Bushwick,40.70619,-73.9191,Private room,47,30,3,2018-08-18,0.07,43,291 +7789408,"Home 4 Medical Professionals - The ""Acidotic""",26377263,Stat,Brooklyn,Bushwick,40.70468,-73.91683,Private room,47,2,4,2018-09-27,0.11,43,222 +7789606,"Spacious, Light Filled - 2 BR in BK",40994490,Nisha Mary,Brooklyn,Bushwick,40.70153,-73.93064,Entire home/apt,200,3,0,,,1,0 +7789678,"哥伦比亚大学附近公寓内客厅一间,30美元一天",40995200,Yi,Manhattan,Morningside Heights,40.81483,-73.9609,Private room,30,1,0,,,1,0 +7789850,Huge Room with Private Backyard - 25% OFF,1418015,Reuben,Brooklyn,Crown Heights,40.67839,-73.95434,Private room,80,2,158,2019-06-30,3.47,4,204 +7790838,"Quiet, Charming Studio in UES",17550956,Kelsie,Manhattan,Upper East Side,40.77357,-73.94729,Entire home/apt,142,2,48,2019-04-27,1.02,1,329 +7790911,"Clean,Huge Furnished Room in Safe Neighborhood",16962694,Guanshan,Brooklyn,Bensonhurst,40.60788,-73.98161,Private room,69,7,3,2015-09-27,0.06,1,0 +7791635,"Dominique's mini room NYC-sleep, shower & go*wifi",310670,Vie,Bronx,Eastchester,40.88001,-73.8345,Private room,62,2,5,2017-07-11,0.12,13,320 +7791636,**Dominique's NYC couch bed **sleep*shower & go**,310670,Vie,Bronx,Eastchester,40.88211,-73.83625,Shared room,45,1,1,2019-04-20,0.37,13,318 +7796446,Spacious apt right off the highline,19693990,Marc,Manhattan,Chelsea,40.75194,-74.00468,Entire home/apt,300,30,0,,,1,0 +7798327,Private bedroom in Lower East Side,41046343,Brian,Manhattan,Lower East Side,40.72235,-73.98769,Private room,75,1,1,2015-09-04,0.02,1,0 +7798542,Cozy and Homey Brooklyn Apartment,21150000,Tamar,Brooklyn,Flatbush,40.65474,-73.95448,Entire home/apt,80,3,10,2019-05-27,1.53,1,124 +7798930,UWS - Columbia and @CentralParkNYC,41049217,Jose Manuel,Manhattan,Upper West Side,40.79882,-73.96382,Entire home/apt,200,1,0,,,1,0 +7798935,Large & very comfortable 2br/2bath by Ditmas Park,33593407,Stefan,Brooklyn,Flatbush,40.63219,-73.95835,Entire home/apt,90,1,3,2016-07-10,0.06,1,0 +7799045,Fabulous 2 bedroom apartment in Harlem,3467798,Laila,Manhattan,Harlem,40.80877,-73.94456,Entire home/apt,173,30,12,2019-05-31,0.28,2,194 +7800079,Great space with artist's studio and garden,5134018,Momo,Brooklyn,Williamsburg,40.70694,-73.93246,Entire home/apt,100,14,10,2018-12-14,0.24,1,249 +7800835,Big 1.5 bedroom on a great block-Private apt,11549078,Kristian,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93092,Entire home/apt,160,5,148,2019-07-02,3.24,1,149 +7800905,Sunlit oasis in WILLIAMSBURG BK,41059169,Alex,Brooklyn,Williamsburg,40.71003,-73.96097,Private room,116,2,17,2019-05-07,0.37,3,329 +7801023,Cute room right by Prospect Park,41060321,Maria,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.95015,Private room,35,1,0,,,1,0 +7801034,"Great, sunny 1 bedroom apartment in prime location",41060870,Dan And Lily,Manhattan,Lower East Side,40.72077,-73.98551,Entire home/apt,160,4,0,,,1,0 +7801169,Spacious apt in the heart of EV,1619994,Emma,Manhattan,East Village,40.72822,-73.98639,Entire home/apt,150,4,11,2019-04-09,0.25,1,0 +7801262,"COZY ZEN 1 bedroom, top of CENTRAL PARK! safe :)",2083759,Mei,Manhattan,Harlem,40.79996,-73.95485,Entire home/apt,104,3,42,2019-06-08,0.89,1,219 +7801783,Private 2 Bedroom Apartment in the East Village,2033003,Darren,Manhattan,East Village,40.72935,-73.98465,Entire home/apt,200,2,6,2019-04-08,0.13,2,134 +7802086,Sunny Apt in Prime Location,12904034,Shan,Queens,Long Island City,40.74462,-73.95521,Entire home/apt,80,2,1,2015-09-14,0.02,1,0 +7802198,"Large, Sunny, 1 Bedroom Rental",26358061,Avalon,Manhattan,Upper East Side,40.77059,-73.95686,Entire home/apt,150,1,0,,,1,0 +7803475,Large 2 Bdrm in prime UWS location,25847311,Mandy,Manhattan,Upper West Side,40.77849,-73.98527,Entire home/apt,374,30,16,2017-01-02,0.35,1,363 +7803828,Spacious Private Bedroom,8375500,Rosario,Manhattan,Washington Heights,40.83261,-73.94328,Private room,46,2,9,2017-05-20,0.19,1,0 +7804337,Williamsburg Studio Apartment,41079797,Emma Leigh,Brooklyn,Williamsburg,40.71158,-73.94653,Entire home/apt,94,1,28,2019-06-16,0.62,1,274 +7805443,Simple and Central Near Times Sq,30467944,Reymon,Manhattan,Hell's Kitchen,40.76294,-73.99248,Private room,92,2,1,2015-09-16,0.02,1,0 +7806322,Beautiful Zen 3BR Apartment,37915862,Greg,Brooklyn,East New York,40.67351,-73.89267,Entire home/apt,155,5,80,2019-07-03,1.73,2,256 +7807146,UWS Private Bedroom with patio,37353953,Sabrina,Manhattan,Upper West Side,40.78101,-73.98533,Private room,70,3,4,2016-09-07,0.11,1,0 +7807454,Ideal Downtown Brooklyn 1 Bedroom,16853124,James,Brooklyn,Boerum Hill,40.68671,-73.98541,Entire home/apt,75,1,2,2015-09-30,0.04,1,0 +7808266,Garden apt with private backyard,40080883,Jill,Brooklyn,Williamsburg,40.71225,-73.96246,Entire home/apt,150,2,1,2015-10-28,0.02,1,0 +7808356,U.E.S 1 Bedroom Spacious Apartment,17141160,Brian,Manhattan,Upper East Side,40.78086,-73.95029,Entire home/apt,130,4,0,,,1,0 +7808565,Room w Private Bath in Brooklyn,6947307,Charles,Brooklyn,Williamsburg,40.70497,-73.94194,Private room,75,1,1,2015-09-07,0.02,1,0 +7808745,Private Room in Shared Apartment,41106580,Adam,Manhattan,Kips Bay,40.74111,-73.97959,Private room,70,7,0,,,1,0 +7809535,Brooklyn Brownstone Beautiful,1103465,Julia,Brooklyn,Clinton Hill,40.68332,-73.96271,Entire home/apt,145,6,35,2019-06-08,0.76,1,31 +7810109,1 bedroom garden apartment,30247185,Samantha,Queens,Ridgewood,40.70994,-73.90201,Entire home/apt,65,1,2,2015-09-03,0.04,1,0 +7814575,Charming Park Slope 2 bed w/Garden,41140356,Jana,Brooklyn,Park Slope,40.67231,-73.98069,Entire home/apt,195,7,14,2019-04-19,0.37,1,326 +7815865,Manhattan Club (1 bedroom/Sleeps 4),41147578,Kleon,Manhattan,Midtown,40.76387,-73.98021,Entire home/apt,420,1,3,2017-09-30,0.07,1,0 +7816449,Dreamlike Soho loft and rooftop,1317360,John,Manhattan,SoHo,40.72219,-74.0014,Entire home/apt,500,7,44,2017-09-25,0.94,2,365 +7817350,1 Room in 3 bedroom Apt - 70s & 3rd,38301594,Shana,Manhattan,Upper East Side,40.77441,-73.95692,Private room,100,1,0,,,2,0 +7818701,Brooklyn Studio near ALL subways,41162207,Edixon,Brooklyn,Fort Greene,40.68854,-73.97789,Entire home/apt,85,2,4,2017-01-20,0.13,1,0 +7819539,1BR GARDEN APT 25 MIN TO MANHATTAN,5623834,Anna,Brooklyn,East Flatbush,40.64569,-73.94776,Entire home/apt,100,30,29,2019-05-22,0.74,1,326 +7819704,Quaint Sunny apartment in Bed-stuy,40070423,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.92622,Private room,70,3,5,2016-05-16,0.11,1,0 +7819706,East Village 1 Bedroom,13612070,Steph,Manhattan,East Village,40.7305,-73.98416,Entire home/apt,150,1,0,,,1,0 +7820423,Large 2 Bedroom apt near Union Sq,4068324,Heidi,Manhattan,Greenwich Village,40.73415,-73.99814,Entire home/apt,425,4,68,2019-06-16,1.45,1,36 +7820664,Spacious Chelsea Apartment w/Roof!,8314981,Kevin,Manhattan,Chelsea,40.74221,-73.99822,Entire home/apt,490,3,1,2016-01-03,0.02,2,0 +7820825,Beautiful Sunny Room Near A/D & 2/3,2327346,John,Manhattan,Harlem,40.80689,-73.94784,Private room,70,1,0,,,1,0 +7821813,Sunny apartment in Greenpoint,1249116,Eric,Brooklyn,Greenpoint,40.72971,-73.95834,Private room,135,7,2,2015-09-18,0.04,1,0 +7823121,Nice Private Room Near Columbia U.,37402024,Shichao,Manhattan,Morningside Heights,40.80379,-73.96571,Private room,80,1,4,2015-08-29,0.08,1,0 +7823396,Quiet Home Away from Home,41190629,Michael,Brooklyn,Crown Heights,40.66443,-73.94822,Entire home/apt,90,1,3,2015-10-12,0.06,1,0 +7823495,Elegant Oasis - Private Roof Terrace,11898556,Ola,Manhattan,Chelsea,40.7414,-73.99815,Entire home/apt,800,30,22,2019-06-08,0.48,1,266 +7823546,Cozy 1 bdrm in a 2 Bdr apt. Great location.,39148503,Ramiro,Brooklyn,Williamsburg,40.70866,-73.94122,Private room,70,4,7,2019-06-07,0.21,2,364 +7824018,"Hell's Kitchen, the ❤️ of the city!",41193978,Caroline,Manhattan,Hell's Kitchen,40.76222,-73.99088,Private room,100,3,4,2016-10-15,0.09,1,0 +7824945,Small Room on the Upper West Side,37138145,C,Manhattan,Upper West Side,40.80111,-73.96539,Private room,75,1,205,2019-07-03,4.32,2,197 +7826033,Sapphire Suite,36070324,Luke,Manhattan,Harlem,40.83107,-73.9486,Private room,88,3,6,2019-06-21,0.33,1,82 +7826411,Private room in trendy LES,24881130,Fred,Manhattan,Lower East Side,40.72184,-73.9868,Private room,100,3,0,,,1,0 +7827616,Private Room in Cozy NYC Apartment,41219108,Darsell,Queens,Astoria,40.76257,-73.91803,Private room,50,3,1,2016-09-05,0.03,1,0 +7827908,Private Entrance/ Private Bathroom,41201538,Faith,Brooklyn,Bushwick,40.70126,-73.918,Private room,63,2,104,2019-06-08,2.19,1,230 +7828204,Large Room Close to NYC,30379314,Caitlin,Queens,Sunnyside,40.74447,-73.92547,Private room,50,1,1,2015-09-09,0.02,1,0 +7831486,Private room in Financial District!,41240531,Lauren,Manhattan,Financial District,40.70501,-74.01395,Private room,90,5,2,2016-05-26,0.05,1,0 +7834712,Sunny 1 Bedroom in Brooklyn,41262382,Catherine,Brooklyn,Bedford-Stuyvesant,40.68237,-73.95257,Entire home/apt,85,2,10,2018-11-15,0.21,1,0 +7834733,"Beautiful, Airy, Minimal Apartment",13425453,Peter,Brooklyn,Clinton Hill,40.68096,-73.95902,Private room,69,1,0,,,1,0 +7834765,✦Artsy Loft Master Suite✦Private Bath/High Ceiling,41261306,Hsiang Wei,Brooklyn,Clinton Hill,40.69218,-73.96127,Private room,90,2,32,2019-06-29,1.24,1,20 +7835470,"Spacious, 2 Bedroom Bed Stuy home",2682346,Seema N James,Brooklyn,Bedford-Stuyvesant,40.6891,-73.93926,Entire home/apt,75,2,4,2016-06-27,0.08,1,0 +7835680,West Village one bedroom,1302599,Ashley,Manhattan,West Village,40.72966,-74.00234,Entire home/apt,150,2,1,2015-09-27,0.02,1,0 +7835778,Bright room in quiet Brooklyn home,40693481,Miles,Brooklyn,Kensington,40.64493,-73.97801,Private room,38,5,1,2015-08-31,0.02,1,0 +7836591,True Brooklyn Loft,10786794,Fig,Brooklyn,Williamsburg,40.70492,-73.93832,Private room,70,3,1,2015-08-23,0.02,1,0 +7837347,Pre-War Apartment By Riverside Park,13089720,Garret,Manhattan,Morningside Heights,40.81411,-73.96073,Entire home/apt,180,2,0,,,1,0 +7837583,Huge Bedroom w/ Private Bathroom,7641397,Melissa,Brooklyn,Williamsburg,40.71621,-73.93984,Private room,65,12,2,2015-10-14,0.04,1,0 +7837685,Bright bedroom with private bathroom,41007099,Romina,Brooklyn,Crown Heights,40.66855,-73.92945,Private room,75,10,12,2019-05-21,0.26,1,0 +7837816,"Bright, Cozy room in Brooklyn",19483885,Edgar,Brooklyn,Bedford-Stuyvesant,40.69695,-73.95951,Private room,60,1,184,2019-07-02,4.83,2,240 +7837952,Excellent Location Gramercy Studio,2610233,Julia,Manhattan,Flatiron District,40.73947,-73.98593,Entire home/apt,221,3,99,2019-06-17,2.26,1,110 +7838393,Stunning 2bed/2bath W'burg luxury apt w/ VIEWS!,3147660,Georgia,Brooklyn,Williamsburg,40.70985,-73.96923,Entire home/apt,500,2,39,2019-05-30,0.84,1,330 +7838854,Charming Central Park Abode,12650039,Danielle,Manhattan,Upper West Side,40.78718,-73.97521,Entire home/apt,150,2,0,,,1,0 +7839096,prime midtown~charming Huge Loft~hi,2119276,Host,Manhattan,Midtown,40.74926,-73.98201,Entire home/apt,250,30,2,2018-08-12,0.04,39,98 +7839972,Manhattan Penthouse 1 Bdrm Apt,2905589,Phong,Manhattan,Midtown,40.74645,-73.9853,Entire home/apt,239,4,4,2015-10-26,0.09,1,0 +7840953,Large Lofted Brooklyn Studio,7579910,Christine,Brooklyn,Bedford-Stuyvesant,40.69588,-73.93944,Entire home/apt,105,30,5,2018-12-31,0.11,1,363 +7841464,Williamsburg Crow's Nest,3064885,Michael,Brooklyn,Williamsburg,40.71086,-73.96088,Private room,50,1,2,2015-09-06,0.04,1,0 +7841904,Modern Private Room in Meatpacking,24976518,Mike,Manhattan,West Village,40.74005,-74.00466,Private room,75,3,4,2017-01-02,0.09,1,0 +7842116,Huge room in Sunset Park with AC,30320622,Caitlin,Brooklyn,Borough Park,40.64362,-74.00046,Private room,55,1,0,,,2,0 +7842276,Charming & Colorful 1BR in Brooklyn,7634973,Alyssa,Brooklyn,Boerum Hill,40.68357,-73.98285,Entire home/apt,108,1,40,2019-04-25,0.87,1,0 +7842671,Bedroom in Soho/Nolita Two-bedroom,3599088,Chris,Manhattan,Nolita,40.72113,-73.99465,Private room,59,2,10,2018-02-18,0.21,2,0 +7843122,Luxury Highrise Condominium,8475475,Claire,Manhattan,Upper West Side,40.78128,-73.98184,Entire home/apt,149,2,3,2016-05-22,0.06,1,0 +7843320,Bright Airy 1 Bed in Williamsburg,328951,Mathew,Brooklyn,Williamsburg,40.70955,-73.95678,Entire home/apt,150,1,20,2019-04-28,1.44,1,35 +7843582,"Spacious, Quiet One Bedroom Apt",1246073,Josh,Brooklyn,Crown Heights,40.67042,-73.95677,Entire home/apt,119,2,27,2019-07-01,0.58,1,154 +7843604,"Big, cozy & chic! 1BR Apt in Harlem",41329387,Calatayud Family,Manhattan,Harlem,40.80755,-73.95104,Entire home/apt,100,2,193,2019-06-14,4.17,1,213 +7843696,Private Cozy Bedroom w Divider Wall,41330687,Alex,Manhattan,Gramercy,40.73363,-73.98545,Private room,79,1,0,,,1,0 +7843851,Private room in artsy Brooklyn home,41332081,Stephanie,Brooklyn,Crown Heights,40.67689,-73.94884,Private room,85,3,8,2015-11-18,0.17,1,179 +7844193,Great Crown Heights Room (w/ roof!),14199417,Preston,Brooklyn,Crown Heights,40.67053,-73.95136,Private room,45,1,1,2015-08-24,0.02,1,0 +7850400,Quiet charming Duplex,41367164,Haim,Manhattan,Lower East Side,40.72147,-73.98733,Entire home/apt,295,3,63,2019-07-01,1.40,1,214 +7851047,2000 sq/ft AMAZING apt East Village,41371043,Patrick,Manhattan,East Village,40.7246,-73.98953,Entire home/apt,400,1,0,,,1,0 +7851219,- A - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71631,-73.96353,Private room,60,2,121,2019-06-18,2.55,8,69 +7851753,CHAMBRE BROOKLYN,24570526,Agathe Et Francois,Brooklyn,Fort Greene,40.69565,-73.9711,Private room,90,1,0,,,1,0 +7853110,"Carroll Gardens, 25 ft from F/G",631747,Logan,Brooklyn,Carroll Gardens,40.67986,-73.9945,Private room,60,2,1,2015-08-23,0.02,1,0 +7853561,2Br~Union square~Newly furnished,2119276,Host,Manhattan,Gramercy,40.73337,-73.98524,Entire home/apt,200,30,5,2019-01-13,0.11,39,331 +7853584,Charming Apt in Historic Harlem,41385305,Khalid,Manhattan,Harlem,40.81899,-73.94694,Entire home/apt,80,2,1,2016-03-09,0.02,1,0 +7854307,- H - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71692,-73.96353,Private room,60,2,97,2019-06-15,2.07,8,83 +7854999,private bedroom in greenpoint pad,41392993,Niki,Brooklyn,Greenpoint,40.72555,-73.94846,Private room,50,3,2,2016-07-02,0.05,1,0 +7856476,"Private floor with private half-bath, living area",24629261,Natalie,Staten Island,Randall Manor,40.63878,-74.10636,Private room,69,3,23,2019-06-07,0.52,1,172 +7856749,"Easy Access, Cute Space",16437254,Benjamin,Brooklyn,Boerum Hill,40.68782,-73.98514,Entire home/apt,123,30,7,2019-04-30,0.23,21,319 +7857040,Cozy Brooklyn Bedroom Available,41405875,Nichole,Brooklyn,Bedford-Stuyvesant,40.69457,-73.93889,Private room,36,1,0,,,1,0 +7857185,Midtown great location private Apt,41406733,George,Manhattan,Midtown,40.75399,-73.96967,Entire home/apt,135,1,214,2019-06-19,4.50,1,170 +7858023,Luxury 1BR Overlooking Manhattan Skyline,41411996,Abdirazak,Manhattan,East Village,40.72316,-73.97706,Entire home/apt,400,2,9,2017-05-24,0.25,1,0 +7858096,Large Bedroom in Kips Bay/Gramercy,41411803,Dan,Manhattan,Gramercy,40.7357,-73.98087,Private room,87,3,3,2015-10-05,0.06,1,0 +7858468,The Artist's Experience,8552927,Jeffrey,Manhattan,Hell's Kitchen,40.76425,-73.99162,Private room,99,1,309,2019-07-07,6.61,1,254 +7858532,Cozy artsy space in Brooklyn,735786,Christine,Brooklyn,Crown Heights,40.67082,-73.9278,Private room,55,2,39,2019-05-31,0.83,1,311 +7858541,Creative NoLita Apartment,6181443,Gehad,Manhattan,Nolita,40.71987,-73.99436,Entire home/apt,225,5,9,2017-10-15,0.33,1,0 +7858673,- I - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71767,-73.96252,Private room,60,2,92,2019-06-08,1.94,8,87 +7858741,Your own West Village flat!,2577242,Braden,Manhattan,West Village,40.73039,-74.00223,Entire home/apt,250,4,0,,,1,0 +7858824,Spacious apt - GREAT location,27655084,Michelle,Manhattan,Midtown,40.75709,-73.96972,Entire home/apt,299,2,7,2016-11-27,0.15,1,0 +7859630,Brooklyn Room Available (furnished),33069475,Sean,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92989,Private room,40,20,23,2019-05-13,0.49,2,206 +7859723,Spacious Studio in Chelsea,8554194,Andy,Manhattan,Chelsea,40.74453,-73.99988,Entire home/apt,120,3,39,2019-06-16,0.84,1,1 +7860155,Private bedroom in the heart of NYC,24559181,Aldi,Manhattan,Upper East Side,40.76312,-73.96624,Private room,89,1,148,2019-06-23,3.18,3,351 +7861113,Upper West Side 2 bedroom/1 bath,37138145,C,Manhattan,Upper West Side,40.80021,-73.96634,Entire home/apt,195,1,0,,,2,0 +7862762,Spacious pre-war apartment,40548594,Justine,Manhattan,Financial District,40.70623,-74.0051,Entire home/apt,150,2,52,2019-06-23,1.11,1,72 +7863289,1 XLrg BR w backyard - Heart of city next to PENN,9367710,Prem,Manhattan,Hell's Kitchen,40.75543,-73.99662,Private room,140,1,0,,,1,0 +7864877,Bright and Convenient 2 Br,36264666,Dins,Manhattan,Harlem,40.80156,-73.95128,Entire home/apt,240,3,2,2015-08-30,0.04,1,0 +7866421,"Big Sunny Room in BedStuy, Brooklyn",40511631,Joey,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93867,Private room,36,2,6,2017-06-25,0.13,2,0 +7867805,Best location in manhattan,41464907,Furkan,Manhattan,Kips Bay,40.74086,-73.9803,Entire home/apt,67,1,1,2015-08-20,0.02,1,0 +7867890,UWS Apartment and Garden Terrace,17714726,Craig,Manhattan,Upper West Side,40.80268,-73.969,Entire home/apt,140,4,11,2018-07-24,0.23,1,10 +7869449,Cozy room in Bushwick!,30541205,Mya,Brooklyn,Bushwick,40.69994,-73.92176,Private room,50,3,0,,,1,0 +7869876,"Entire floor of house Very Private 2BR suite,SUNNY",17382996,Eileen,Bronx,Port Morris,40.80247,-73.91435,Entire home/apt,90,2,152,2019-06-30,3.25,1,299 +7870258,- C - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71755,-73.96419,Private room,60,2,99,2019-06-15,2.10,8,77 +7870403,Mins to Manhattan and Williamsburg!,39840590,Sachiko,Queens,Long Island City,40.74365,-73.95377,Entire home/apt,138,1,227,2019-06-21,4.83,1,21 +7870442,Spacious Upper West Side Studio,25613217,Maya,Manhattan,Upper West Side,40.80049,-73.96064,Entire home/apt,96,1,2,2016-07-04,0.05,1,0 +7871818,"Artist/Musician Apartment, Bushwick",4769886,Tom & Nic,Brooklyn,Bushwick,40.69533,-73.92053,Private room,109,2,105,2019-06-27,2.25,2,244 +7871858,Putnam Garden -2BDR Garden Apt,10659447,Keisha,Brooklyn,Bedford-Stuyvesant,40.68439,-73.95231,Entire home/apt,135,4,106,2019-06-26,2.23,1,282 +7871985,Your Perfect Home Away From Home,5577926,Lou,Queens,Astoria,40.75793,-73.90959,Entire home/apt,58,30,7,2019-03-19,0.15,4,134 +7872172,"Private room, home away from home",1212731,Emilia,Manhattan,Upper West Side,40.79943,-73.968,Private room,65,1,2,2016-09-02,0.04,1,0 +7872617,Stylish Uptown 2Bd Family Apt,38337141,Natalie,Manhattan,Washington Heights,40.84984,-73.94187,Entire home/apt,225,3,2,2015-09-27,0.04,1,0 +7873524,lovely apartment at central park,37282412,Meredith,Manhattan,Harlem,40.80009,-73.95313,Entire home/apt,130,3,1,2015-09-07,0.02,1,0 +7873655,- G - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71714,-73.96234,Private room,60,2,107,2019-06-21,2.26,8,84 +7873893,Private Room - Condo @ FiDi,3593739,Andres,Manhattan,Financial District,40.70518,-74.0127,Private room,80,2,0,,,1,0 +7874958,Luxury Williamsburg Apt with Views,10447370,Jennifer,Brooklyn,Williamsburg,40.7167,-73.95272,Entire home/apt,210,2,2,2015-12-02,0.04,1,0 +7877599,Luxury Townhouse in Brownstone Brooklyn,34595916,Andrew,Brooklyn,South Slope,40.66921,-73.98813,Entire home/apt,275,6,28,2019-04-30,0.68,3,0 +7880998,NoMad One Bedroom on Park Ave,41543076,Kelsey,Manhattan,Midtown,40.74321,-73.98474,Entire home/apt,175,7,1,2016-07-01,0.03,1,0 +7881023,Charming Chelsea Home,66354,Laura,Manhattan,Chelsea,40.7468,-74.00493,Entire home/apt,175,1,6,2016-05-07,0.13,1,0 +7884731,Big Spacious Room - North Manhattan,41565192,Austin,Manhattan,Washington Heights,40.84877,-73.93515,Private room,43,3,1,2015-08-27,0.02,1,0 +7884922,Artsy Duplex in Chelsea w/ Terrace,7139819,Nauman,Manhattan,Chelsea,40.74716,-74.00047,Entire home/apt,250,3,2,2016-12-04,0.05,2,0 +7885044,Bedroom in Williamsburg's Heart,20792304,Baptiste,Brooklyn,Williamsburg,40.71413,-73.95044,Private room,79,2,3,2015-08-31,0.06,1,0 +7886308,Union Square/Gramercy Apartment,41574770,Hadi,Manhattan,Gramercy,40.73428,-73.98521,Entire home/apt,300,3,0,,,1,0 +7886635,- E - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71636,-73.96246,Private room,60,2,97,2019-06-18,2.13,8,122 +7887966,The City Farmhouse APT B **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75837,-73.91387,Entire home/apt,100,30,61,2019-03-28,1.39,3,224 +7889596,Large sunny room close to N&D train LGBTQ friendly,11010205,Jacob,Brooklyn,Bensonhurst,40.61391,-73.99128,Private room,79,2,2,2019-06-22,0.22,2,365 +7891403,"BIG SUNNY 2 1/2 BR, 1 STOP FR. NYC",2829145,Charlotta,Brooklyn,Fort Greene,40.6923,-73.97123,Entire home/apt,285,3,66,2019-05-27,1.41,2,292 +7893820,Prime Wburg renovated 2 bedroom,1330961,Julian,Brooklyn,Williamsburg,40.71502,-73.96436,Entire home/apt,220,1,0,,,1,0 +7894007,MyPlace2Beach,41619645,D.,Queens,Arverne,40.58875,-73.79109,Private room,200,2,70,2019-06-24,1.48,1,90 +7894084,Cozy and modern studio by the park,41620310,Olivia,Manhattan,Upper East Side,40.77391,-73.94816,Entire home/apt,100,3,0,,,1,0 +7894907,Cosy studio in East Village,1830864,Natasha,Manhattan,East Village,40.72395,-73.98001,Entire home/apt,150,2,25,2016-07-22,0.55,1,0 +7895157,Midtown West Studio,39531775,Mark,Manhattan,Hell's Kitchen,40.76449,-73.9934,Entire home/apt,175,3,0,,,1,0 +7897229,Bright Comfy Studio!,598090,Adrienne,Manhattan,Upper West Side,40.777,-73.97708,Private room,180,1,8,2017-07-30,0.17,1,0 +7898302,Upper West Side charming brownstone,41644172,Jody,Manhattan,Upper West Side,40.78888,-73.97723,Entire home/apt,150,1,1,2015-08-19,0.02,1,0 +7899605,COZY ROOM CLOSE TO TOUR SITES,39472987,Eileen,Manhattan,Harlem,40.82861,-73.94127,Private room,58,1,5,2016-09-19,0.11,1,0 +7899658,MANHATTAN LIVING!,40605120,(Ari) HENRY LEE,Manhattan,East Harlem,40.78938,-73.94679,Entire home/apt,140,7,3,2017-12-08,0.06,1,56 +7900119,Bright Room in Williamsburg,2697468,Vera,Brooklyn,Williamsburg,40.71058,-73.95191,Private room,80,1,2,2015-09-26,0.04,1,0 +7900437,Studio/Brick Wall/Fireplace/Patio,32828988,Annie,Manhattan,Theater District,40.75995,-73.98617,Entire home/apt,100,15,5,2015-10-28,0.11,1,0 +7900575,"Charming, quiet West Village studio",41657584,Beatriz,Manhattan,West Village,40.73519,-74.00642,Entire home/apt,200,3,9,2019-06-02,0.20,1,168 +7900722,Sunlit Big 1BR in Williamsburg,37728157,Aya,Brooklyn,Williamsburg,40.71139,-73.94176,Entire home/apt,175,11,11,2018-10-01,0.24,1,0 +7900908,Clean Cozy & Comfy Apartment!,41658748,Ben,Manhattan,Gramercy,40.73518,-73.98047,Entire home/apt,250,2,105,2019-06-11,2.26,3,307 +7900957,Delightful Refuge in Bedstuy,18397763,Seun And Marie,Brooklyn,Bedford-Stuyvesant,40.6869,-73.93074,Private room,74,2,22,2019-06-24,0.63,7,76 +7901635,- F - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71544,-73.96211,Private room,60,2,99,2019-06-23,2.10,8,100 +7901715,Cozy bedroom with full-size bed,29599415,Zhaoyu,Manhattan,Harlem,40.80356,-73.95666,Private room,60,1,2,2015-09-15,0.04,1,0 +7901928,Cozy Room in the Heart of Astoria,4646764,Amanda,Queens,Astoria,40.76281,-73.91554,Private room,60,1,2,2015-11-09,0.04,1,0 +7902089,UES Pincushion Living,41666655,Andrea,Manhattan,Upper East Side,40.77098,-73.95965,Entire home/apt,150,2,5,2016-02-25,0.11,1,157 +7902291,"Large room, rooftop, queen bed",41667978,Doreen,Manhattan,Lower East Side,40.71449,-73.987,Private room,70,2,1,2015-09-05,0.02,1,0 +7902556,Room in NYC Financial district apt,3041587,Richy,Manhattan,Financial District,40.70395,-74.00995,Private room,98,14,121,2019-06-01,2.58,1,204 +7908355,"Loft Bedroom in Clinton Hill, Brooklyn",21657314,Luke,Brooklyn,Clinton Hill,40.69143,-73.96079,Private room,108,4,21,2019-06-15,2.31,1,12 +7911249,Huge Room in Lower East Side Loft,16430135,Hannes,Manhattan,Lower East Side,40.71846,-73.98672,Private room,80,4,3,2015-12-19,0.06,1,0 +7911437,Private Studio in Queens,15904258,Monika,Queens,Maspeth,40.72172,-73.8881,Entire home/apt,60,3,45,2019-06-28,1.06,1,219 +7911571,2BR Warehouse Style Apt in Williamsburg w/rooftop,4152479,Conor,Brooklyn,Williamsburg,40.70978,-73.95143,Entire home/apt,220,3,5,2017-12-29,0.13,2,0 +7911917,Beautiful Studio // East Village,24732939,Suraj,Manhattan,East Village,40.72578,-73.98236,Entire home/apt,140,5,16,2019-06-29,0.72,1,1 +7912513,"New Yorker-Featured, Light-Filled 3 Bedroom Loft",1696219,George,Manhattan,East Village,40.7336,-73.99006,Entire home/apt,1200,3,9,2018-01-02,0.25,1,359 +7912525,Prospect Heights Apartment,18118610,Amy,Brooklyn,Prospect Heights,40.67308,-73.96336,Entire home/apt,120,2,0,,,1,0 +7913426,LUX 1-Bedroom NYC Apartment Near Times Square!,30283594,Kara,Manhattan,Theater District,40.75654,-73.98891,Entire home/apt,369,30,0,,,121,364 +7913704,Quiet Room in Harlem Apartment,2405940,Hannah,Manhattan,Harlem,40.82457,-73.94984,Private room,42,2,3,2016-09-06,0.08,1,0 +7914369,Charming 1 Bedroom Garden Apt!,2010157,Alex,Brooklyn,Bedford-Stuyvesant,40.68372,-73.91994,Entire home/apt,120,2,92,2019-07-03,2.02,1,54 +7914401,The perfect nightlife spot,22282829,Kyle,Manhattan,East Village,40.72686,-73.98743,Private room,69,5,10,2017-10-08,0.28,1,0 +7915525,"Bedroom in Clinton Hill, Brooklyn",34943122,Hadrien,Brooklyn,Clinton Hill,40.68433,-73.95982,Private room,85,1,14,2018-03-11,0.30,2,0 +7915596,"Large, Bright NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.69919,-73.93818,Private room,75,2,226,2019-06-10,4.78,2,128 +7915831,"Lovely, Room/with Private bathroom",5719436,Leonie,Brooklyn,Flatbush,40.63982,-73.96634,Private room,1100,1,1,2016-09-11,0.03,1,365 +7916103,Sunny Private Room by Prospect Park,29235148,Ehi,Brooklyn,Prospect-Lefferts Gardens,40.65508,-73.95689,Private room,60,2,3,2016-09-24,0.07,1,0 +7916684,Room in Stylish Hells Kitchen Apt.,41743945,George - Francis,Manhattan,Hell's Kitchen,40.76328,-73.99347,Private room,160,3,3,2016-03-27,0.06,2,0 +7916802,Exposed brick Room- Columbus Circle,20336015,Miranda,Manhattan,Hell's Kitchen,40.7699,-73.98985,Private room,120,1,1,2015-09-07,0.02,1,0 +7917251,"Amazing LES apt - cool, bright...",41747327,Amy,Manhattan,Lower East Side,40.71909,-73.99028,Entire home/apt,95,1,98,2019-06-23,2.13,1,240 +7917755,Comfort & Ease in East Village 1BR,16262059,Nathan,Manhattan,East Village,40.72304,-73.97696,Entire home/apt,180,1,1,2015-09-27,0.02,1,0 +7919094,Spacious 1 Bd in Heart of WillyB,41757762,Sara,Brooklyn,Williamsburg,40.71122,-73.95663,Entire home/apt,170,13,6,2018-03-01,0.17,1,0 +7919303,Huge Brooklyn Flat by Jefferson L,10399992,Jesse,Brooklyn,Bushwick,40.70098,-73.92674,Private room,39,14,1,2016-01-17,0.02,1,0 +7919372,Cozy & Clean #6,23533897,Fatou,Brooklyn,Crown Heights,40.67568,-73.95124,Private room,75,1,38,2019-06-16,1.12,7,322 +7919636,Beautiful and spacious 3BR UES,41760536,Austin,Manhattan,Upper East Side,40.7695,-73.95115,Private room,100,1,0,,,1,0 +7919803,Comfy & Charming 2 Bedroom Home,4549552,Jill,Brooklyn,Bedford-Stuyvesant,40.69118,-73.95928,Entire home/apt,160,2,14,2016-05-21,0.30,1,0 +7920072,East Village - private room - chill,10353278,James,Manhattan,East Village,40.73243,-73.98692,Private room,96,2,114,2019-06-28,2.47,2,98 +7920170,Sunny room in a contemporary modern apartment,36089884,Adrian,Manhattan,Washington Heights,40.85597,-73.9333,Private room,50,2,93,2019-06-05,3.37,1,208 +7920394,SoHo- Spacious 1 Bed/Bath- Private Apartment,6272532,Dan,Manhattan,SoHo,40.72521,-74.00213,Entire home/apt,145,5,8,2018-09-04,0.19,1,0 +7921643,Luxury studio in Brooklyn,15102423,Prachal,Brooklyn,Fort Greene,40.69011,-73.98053,Entire home/apt,225,1,0,,,1,0 +7922002,Studio in heart of LES (Manhattan),41775303,Shinsuke,Manhattan,Lower East Side,40.72131,-73.98541,Entire home/apt,100,3,1,2015-09-06,0.02,1,0 +7927838,Spacious Sunny Brownstone Room - Great Location!,6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.6796,-73.93022,Private room,95,2,153,2019-06-21,3.27,3,296 +7928219,Crown Heights Gem w/ pvt. balcony,6238742,Kilolo,Brooklyn,Crown Heights,40.67702,-73.959,Entire home/apt,115,1,0,,,1,0 +7928917,Studio in Full Service Chelsea Bldg,41810578,Anisha,Manhattan,Chelsea,40.7393,-73.99609,Entire home/apt,215,1,0,,,1,0 +7929441,Beautiful Loft w/ Waterfront View!,1453898,Anthony,Brooklyn,Williamsburg,40.71268,-73.96676,Private room,105,2,232,2019-06-19,5.00,3,64 +7931059,Bedroom near Columbia,6312322,Aditya,Manhattan,Harlem,40.8215,-73.95565,Private room,75,1,0,,,1,0 +7931180,Beautiful Converted School House,28398689,Ryan,Brooklyn,Bedford-Stuyvesant,40.68179,-73.92947,Private room,150,1,0,,,1,0 +7932177,Private room with patio,41827222,Michael,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94962,Private room,35,6,10,2017-06-10,0.28,2,0 +7932428,Bushwick 1 bedroom w/ private roof,21468915,Adrianna,Brooklyn,Bushwick,40.69559,-73.92783,Entire home/apt,80,1,1,2015-09-07,0.02,1,0 +7933257,Artist's brownstone apartment in Brooklyn,109981,Rosie,Brooklyn,Bedford-Stuyvesant,40.68279,-73.92135,Entire home/apt,120,2,11,2019-01-01,0.93,1,6 +7933400,Astoria Nice Neighborhood,40336543,Simon,Queens,Long Island City,40.76422,-73.93169,Private room,89,2,0,,,2,364 +7933773,BK sunny 1 BR close to trains,41764756,Luz,Brooklyn,Prospect-Lefferts Gardens,40.65602,-73.95891,Entire home/apt,130,3,20,2018-09-25,0.43,1,0 +7933896,Huge Lower East Side 1 bedroom,8363605,Jimmy,Manhattan,Two Bridges,40.71106,-73.99576,Entire home/apt,122,1,0,,,1,0 +7936161,Room in a Beautiful East Village Apt!,12589844,Asif,Manhattan,East Village,40.72157,-73.97861,Private room,71,7,42,2019-04-30,0.89,1,0 +7936698,"Spacious, sunny bedroom next to Prospect Park!",2128535,Lily,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96246,Private room,50,3,5,2017-01-14,0.11,1,0 +7937398,Serene Brownstone Living Close To It All!,6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.67973,-73.93058,Private room,72,2,151,2019-06-16,3.23,3,288 +7937553,Riomaggiore Room. Queen Bedroom in Bklyn Townhouse,2787,John,Brooklyn,Bensonhurst,40.60951,-73.97622,Private room,99,1,21,2018-10-27,0.50,6,153 +7938424,Carroll Gardens Brownstone,5504415,Bailey,Brooklyn,Carroll Gardens,40.68129,-73.99426,Entire home/apt,110,1,2,2015-09-26,0.04,1,0 +7938492,Upper East Side Studio,355259,Priscilla,Manhattan,Upper East Side,40.76637,-73.95345,Entire home/apt,118,1,2,2016-08-23,0.04,1,0 +7939788,Apt. with yard near Central Park,26297795,Jesse,Manhattan,East Harlem,40.79025,-73.9482,Private room,75,1,5,2016-06-28,0.11,1,0 +7945940,Roof garden & River Sunsets Zen,7020836,Jeeku,Manhattan,West Village,40.73849,-74.00589,Entire home/apt,225,3,159,2019-06-24,3.40,1,132 +7949344,Large Chill and Vibes 1 Bedroom,41919914,Austin,Brooklyn,Bushwick,40.69881,-73.93057,Private room,80,1,2,2015-10-03,0.04,1,188 +7949480,City Island Sanctuary BR & Pvt Bath à la française,119445,Linda & Didier,Bronx,City Island,40.85205,-73.78868,Private room,107,1,73,2019-06-30,1.73,1,173 +7950368,Williamsburg Bedford Ave L Train,1696218,David,Brooklyn,Williamsburg,40.7187,-73.95606,Entire home/apt,500,26,9,2018-02-25,0.19,1,178 +7951281,Brand new 2BR heart of Fort Greene,292522,Jonathan,Brooklyn,Fort Greene,40.68857,-73.97385,Entire home/apt,200,2,120,2019-07-04,2.61,2,287 +7951346,Cozy Room with private balcony close to La Guardia,7057608,Andres And Salina,Queens,East Elmhurst,40.75712,-73.89365,Private room,42,2,25,2019-07-06,0.54,1,283 +7952315,Designer's Large 1BR in Chelsea,11081810,Sam,Manhattan,Chelsea,40.74768,-73.99625,Entire home/apt,350,4,3,2016-07-27,0.06,1,0 +7952963,Gorgeous Pre War Sanctuary - 1 block from Union Sq,3333577,Julia,Manhattan,Gramercy,40.73523,-73.98668,Private room,160,2,53,2019-07-01,1.16,2,344 +7953220,Huge Modern Luxury Brooklynite (2k+sqrft),41939599,Noah,Brooklyn,Prospect Heights,40.68024,-73.97173,Entire home/apt,164,30,0,,,1,0 +7953690,L Train · 11' Windows · Rooftop,10556524,Ryan,Brooklyn,Williamsburg,40.70649,-73.92954,Private room,89,2,2,2016-06-19,0.05,2,0 +7953819,Lovely Brooklyn Brownstone w Yard,2665690,Mercedes,Brooklyn,Bedford-Stuyvesant,40.68432,-73.93227,Entire home/apt,150,30,10,2017-01-03,0.25,1,30 +7954940,East Village Private Room & Bath,39956905,Can,Manhattan,East Village,40.72775,-73.9863,Private room,100,2,0,,,2,0 +7955150,Entire Apartment in South Slope,41951749,Erin,Brooklyn,South Slope,40.66495,-73.99147,Entire home/apt,120,2,8,2015-11-10,0.17,1,0 +7955889,"Gorgeous, clean, room for rent.",6263244,Nkatha,Manhattan,Harlem,40.82036,-73.94219,Private room,73,1,10,2019-06-14,0.29,2,365 +7955984,Elegant Accommodation On A Budget!,6263244,Nkatha,Manhattan,Harlem,40.81944,-73.9408,Private room,73,1,27,2019-06-19,0.59,2,340 +7956149,"Studio Apartment in New York, NY",32502064,Danielle,Manhattan,Financial District,40.7044,-74.00851,Entire home/apt,200,1,0,,,1,0 +7956593,Brooklyn Beauty w/private garden!,5555793,Lindsay,Brooklyn,Carroll Gardens,40.67857,-73.99485,Entire home/apt,140,3,3,2015-10-12,0.06,2,0 +7956643,Authentic Brooklyn - Near Prospect Park,3251778,Megan,Brooklyn,Crown Heights,40.67323,-73.9619,Entire home/apt,125,2,4,2016-10-16,0.09,1,0 +7957339,Luxury Waterfront Building 1Bd/1Bth,32088026,Robert,Brooklyn,Sheepshead Bay,40.58479,-73.9388,Entire home/apt,109,1,0,,,1,0 +7962707,SPACIOUS APT CLOSE TO MANHATTAN!!,42008401,Adam,Queens,Long Island City,40.75403,-73.91814,Entire home/apt,140,1,9,2016-04-19,0.19,1,0 +7965847,Modern Room Near Express Train to Manhattan,2762022,Skye,Brooklyn,Bedford-Stuyvesant,40.69398,-73.9338,Private room,48,4,22,2018-12-17,0.47,1,0 +7966153,Spacious 2 BR for Weekend Rental,42030960,Michael,Brooklyn,Bay Ridge,40.63519,-74.02634,Entire home/apt,135,1,0,,,1,0 +7966358,NYC High End 2BR Midtown West Apt,30283594,Kara,Manhattan,Midtown,40.76633,-73.98145,Entire home/apt,335,30,0,,,121,201 +7966447,SOHO NYC SEPT ROOM AVAILABLE!!,42034713,Olivia,Manhattan,SoHo,40.72251,-73.99957,Private room,50,1,0,,,1,0 +7966943,BEAUTIFUL 1 BDR APT W/ PRIVATE ROOF,4352069,Rebecca,Manhattan,East Village,40.72672,-73.97965,Entire home/apt,400,1,15,2019-01-02,0.34,2,6 +7967503,Perfect midtown west studio,2781031,Paolo,Manhattan,Hell's Kitchen,40.76885,-73.98631,Entire home/apt,165,3,68,2019-06-19,1.46,1,195 +7967829,Bright large bedroom in Bushwick,42043282,Arielle,Brooklyn,Bushwick,40.70335,-73.92891,Private room,70,2,1,2015-09-07,0.02,1,0 +7967922,Big Private Room in Ridgewood,4094837,Siebren,Queens,Ridgewood,40.71111,-73.91689,Private room,52,10,8,2019-03-10,0.17,1,36 +7967942,West Village/Meatpacking Loft!,24707895,Regi,Manhattan,Chelsea,40.74052,-74.00423,Entire home/apt,385,3,3,2016-06-20,0.07,1,0 +7968283,Large room & private bathroom,42045746,Owen,Brooklyn,Bushwick,40.68935,-73.9127,Private room,45,1,1,2015-10-06,0.02,1,0 +7968983,4 bedroom 3 bath duplex w roof deck & washer/dryer,780477,Donavan,Brooklyn,East New York,40.66125,-73.89976,Entire home/apt,275,3,77,2019-07-03,1.67,1,256 +7969111,Charming Chelsea Flat,42050222,Jose,Manhattan,Chelsea,40.74192,-73.99978,Private room,135,3,250,2019-07-02,5.36,1,111 +7970110,ASTORIA APARTMENT AVAILABLE,4831239,Mariand,Queens,Astoria,40.76583,-73.92878,Entire home/apt,75,1,0,,,1,0 +7970450,Adorable Upper East Side Apartment,39651842,Samantha,Manhattan,Upper East Side,40.77285,-73.94715,Private room,110,1,0,,,1,0 +7970578,Magical 3-bed/3-bath fabulous views,20233558,Ruth,Brooklyn,Greenpoint,40.73175,-73.95403,Entire home/apt,350,2,5,2019-06-22,0.11,1,0 +7972210,Large room in Bushwick!,12720552,Julie,Brooklyn,Bushwick,40.70158,-73.92724,Private room,100,1,22,2019-06-22,0.48,5,324 +7972825,"Lovely, kitschy 1BR + Foldout Couch",42073103,Brent,Queens,Astoria,40.75535,-73.92609,Entire home/apt,100,2,4,2015-11-29,0.09,1,0 +7972839,Spacious apt. near Prospect Park,1287826,Alexander,Brooklyn,Prospect Heights,40.67603,-73.96941,Entire home/apt,135,4,2,2015-10-17,0.04,1,0 +7973484,Sunny Apt. on the UES in NYC,17770287,Nina,Manhattan,Upper East Side,40.76769,-73.95236,Entire home/apt,115,30,12,2019-02-08,0.27,14,239 +7973730,Sunny Williamsburg apartment,5828974,Farah,Brooklyn,Williamsburg,40.71147,-73.95312,Entire home/apt,150,6,2,2017-07-12,0.04,1,0 +7973933,The Blue Room,42082221,Katherine,Manhattan,Washington Heights,40.83713,-73.94343,Private room,60,1,3,2016-07-20,0.07,1,0 +7974235,Spacious cozy apartment,42082780,Judith,Brooklyn,Flatbush,40.64689,-73.96048,Entire home/apt,99,2,85,2018-06-03,1.83,1,342 +7975360,Harlem Row House 2 BDRM Apt-City Col/Columbia Univ,12986426,Lovelynn,Manhattan,Harlem,40.82215,-73.95601,Entire home/apt,180,5,95,2019-07-04,2.09,1,60 +7979200,1 Bed Apt in ClintonHill Brownstone,12739246,Pete,Brooklyn,Bedford-Stuyvesant,40.68426,-73.95669,Entire home/apt,95,5,11,2016-09-03,0.23,1,0 +7979237,New Guest Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.6796,-73.96948,Private room,60,1,197,2019-07-01,4.19,13,324 +7979433,Comfortable 1B in hot-spot Queens,37801911,Marissa,Queens,Astoria,40.75959,-73.92439,Entire home/apt,100,1,2,2015-09-21,0.04,1,0 +7980191,1 Bedroom Apt in Midtown Manhattan,27331181,Telitha,Manhattan,Murray Hill,40.74763,-73.9733,Entire home/apt,250,2,26,2017-01-02,0.58,1,0 +7981341,Couch for the Night,42125531,Michelle,Manhattan,Chelsea,40.75091,-73.99414,Shared room,200,1,0,,,1,0 +7982304,Brooklyn townhouse-2 floors..,27712561,Richard,Brooklyn,Gowanus,40.6834,-73.98549,Entire home/apt,150,3,0,,,1,0 +7982720,"Spacious One Bedroom in PreWar Building, Ft Greene",41112084,Aria,Brooklyn,Clinton Hill,40.68817,-73.96852,Entire home/apt,145,3,3,2018-05-29,0.06,1,0 +7983640,Great Loft Steps From All Williamsburg Hotels,13037911,Erica,Brooklyn,Williamsburg,40.72124,-73.95847,Entire home/apt,250,1,54,2019-05-19,1.15,1,365 +7984555,Your Spacious Home Away From Home!,43671,Anna,Brooklyn,Carroll Gardens,40.68502,-73.99306,Entire home/apt,150,2,8,2018-06-09,0.17,1,196 +7985333,"Chic, Modern 2 Bedroom in Bright, Airy High Rise",32218896,Nick,Manhattan,Chelsea,40.74904,-74.00164,Entire home/apt,400,3,15,2019-07-06,0.39,1,0 +7985537,Cozy Apartment in BKLYN near Prospect Park!,15311573,Alicia And Zach,Brooklyn,Prospect-Lefferts Gardens,40.65798,-73.95985,Private room,83,3,14,2017-01-02,0.31,1,0 +7986666,Spacious Studio Apt in Williamsburg,6491050,Zack,Brooklyn,Williamsburg,40.71939,-73.94356,Entire home/apt,150,13,8,2017-07-26,0.17,1,0 +7987209,Floor 35th in the heart of New York,42154621,Ricardo,Manhattan,Theater District,40.7566,-73.98329,Entire home/apt,1195,3,109,2019-06-02,2.37,1,264 +7987212,Large Private Bedroom in Williamsburg,30487854,Ben,Brooklyn,Williamsburg,40.71067,-73.96005,Private room,68,5,14,2019-07-03,0.30,2,10 +7987306,Huge room in a cool neighbourhood,34149113,Jeremy,Brooklyn,Bushwick,40.70227,-73.92362,Private room,50,2,0,,,1,0 +7987971,Comfy Room in Trendy Brooklyn!,4277896,Tzooli And Ay,Brooklyn,Clinton Hill,40.6917,-73.96508,Private room,70,2,173,2019-07-01,3.80,2,93 +7988259,Private room with your own backyard,5555793,Lindsay,Brooklyn,Gowanus,40.67705,-73.99607,Private room,65,1,3,2015-10-26,0.06,2,0 +7988385,"Cozy, simple, uncluttered.",42160853,Jessica,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93003,Private room,45,1,2,2015-08-28,0.04,1,0 +7988411,Heart of Greenwich Village!,276042,Kathleen,Manhattan,Greenwich Village,40.72913,-74.00074,Private room,75,1,32,2019-01-01,1.63,1,0 +7988491,"Cute, Peaceful - East Williamsburg",83834,Jill,Brooklyn,Williamsburg,40.71381,-73.93619,Entire home/apt,115,7,0,,,1,0 +7995078,A King Size Bed in private room in NYC!,38793847,Chad & David,Manhattan,Harlem,40.82291,-73.95172,Private room,65,2,80,2019-07-02,1.71,1,347 +7995140,Loft with garden - Williamsburg,3318161,Etienne,Brooklyn,Williamsburg,40.71212,-73.95888,Entire home/apt,170,3,36,2019-05-27,0.77,1,1 +7997433,30 Mins to Times Square -Javits Ctr! Awesome food!,42215969,Isaac,Queens,Woodside,40.74583,-73.90059,Entire home/apt,450,1,0,,,1,341 +7998385,Spectacular Manhattan Skyline View,975656,Jennifer,Brooklyn,Crown Heights,40.66783,-73.93042,Entire home/apt,100,5,11,2017-07-28,0.24,1,0 +7999409,Amazing Riverside Park Studio,9835167,Abby,Manhattan,Upper West Side,40.78129,-73.98572,Shared room,65,2,7,2015-10-22,0.15,2,0 +7999574,Beautiful 3bdrm Apt w/ 2 Entrances!,30529,Marianne,Brooklyn,Prospect Heights,40.67354,-73.96359,Entire home/apt,280,2,24,2019-04-18,0.52,2,151 +7999671,Cozy 1 bdrm with balcony,40536602,Rachel,Brooklyn,Midwood,40.62022,-73.95622,Entire home/apt,65,7,0,,,1,0 +8000640,1 bedroom APT with private garden,42233780,Nicole,Brooklyn,Clinton Hill,40.69485,-73.96254,Entire home/apt,150,2,9,2017-05-19,0.20,1,0 +8000716,luxury 1 bedroom apartment midtown Manhattan,3348610,Ronnie,Manhattan,Chelsea,40.75014,-73.99069,Entire home/apt,250,6,17,2019-06-16,0.37,1,0 +8001648,New 3BR~Prime Midtown~Design Loft,2119276,Host,Manhattan,Midtown,40.74947,-73.98257,Entire home/apt,250,90,3,2017-05-31,0.08,39,0 +8002080,Luxury suite.(private),42243297,Wilson,Brooklyn,Bensonhurst,40.61059,-74.00602,Entire home/apt,65,1,287,2019-07-06,7.31,1,308 +8005645,BEST DEAL – 1BR APT – 15 MIN from MANHATTAN!,11360525,James,Queens,Sunnyside,40.74667,-73.92361,Entire home/apt,130,5,4,2019-01-03,0.09,1,0 +8007908,Rare Find: Stylish West Village Townhouse,390117,Coco,Manhattan,West Village,40.73221,-74.00928,Entire home/apt,375,3,19,2019-02-19,0.46,2,0 +8009332,My cozy artistic Apartment,37849636,Maggie,Brooklyn,Sheepshead Bay,40.60991,-73.95677,Shared room,48,1,59,2019-07-05,1.26,1,90 +8009966,Sunny 1-bedroom in south Brooklyn,3491228,Courtney,Brooklyn,Sunset Park,40.6529,-74.00399,Entire home/apt,80,10,2,2017-12-07,0.04,1,0 +8010033,Upscale Apt blocks to Columbia Med./Presb. Hosp.,1883133,Christian,Manhattan,Washington Heights,40.84269,-73.93605,Entire home/apt,110,1,133,2019-06-28,2.85,1,267 +8011605,"Sunny, Clean, Safe, Zen!",42295490,C-S,Manhattan,Chinatown,40.71608,-73.99425,Private room,72,4,12,2019-05-11,0.25,2,0 +8012041,Bedroom by the River,16762482,Tessa Marie,Brooklyn,Greenpoint,40.73219,-73.95776,Private room,49,1,16,2016-01-14,0.34,1,0 +8012334,2 BR/2BA Near Lincoln Center/Central Park/Trains,21267483,Monica,Manhattan,Upper West Side,40.77569,-73.98028,Entire home/apt,250,1,3,2016-11-26,0.07,1,0 +8012976,Master Suite w/ Private Bath in Financial District,48165,Donna,Manhattan,Financial District,40.70726,-74.00593,Private room,120,2,128,2019-06-15,2.74,1,246 +8013358,Bedford-Stuyvesant 3 bedroom 2 bathroom duplex,8687068,Terrie,Brooklyn,Bedford-Stuyvesant,40.68318,-73.95002,Entire home/apt,240,1,33,2019-06-24,2.96,1,83 +8013498,Huge Studio! Prime Harlem! Clean!,42309351,Lyuba,Manhattan,Harlem,40.82987,-73.94625,Entire home/apt,77,15,2,2015-10-12,0.04,1,0 +8013780,Cute East Village Room for 1,24496111,Tessa,Manhattan,Gramercy,40.7331,-73.984,Private room,65,11,0,,,1,0 +8013947,ICONIC STUDIO MIDTOWN 5TH AVENUE!,29338009,Guilherme,Manhattan,Midtown,40.74921,-73.98445,Entire home/apt,185,7,17,2018-03-31,0.36,1,0 +8014087,Prime location Chelsea/Flatiron RM,38857566,Gabi,Manhattan,Chelsea,40.74042,-73.99714,Private room,100,1,2,2018-01-01,0.04,1,0 +8014298,BEST QUICK STAY CROWN HEIGHTS BKLYN,42315851,Matthew,Brooklyn,Crown Heights,40.66827,-73.93255,Private room,50,1,1,2015-09-06,0.02,1,0 +8014315,Cozy Victorian Hideaway in Bushwick,259826,Cass,Brooklyn,Bushwick,40.69312,-73.9236,Private room,50,1,1,2015-10-08,0.02,1,0 +8014773,"Cozy, peaceful, sunny, pristine- Prime Astoria",20413250,Sara,Queens,Astoria,40.76189,-73.9225,Private room,90,14,0,,,2,0 +8014811,1 bedroom/1 Bath/Balcony/Wash-Dryer,42320409,Timothy,Brooklyn,Williamsburg,40.7076,-73.94072,Entire home/apt,87,1,3,2015-10-24,0.07,1,0 +8015917,Room in Brownstone Apartment,12474780,Mike,Brooklyn,Park Slope,40.66948,-73.97797,Private room,30,1,6,2016-08-01,0.14,1,0 +8016681,Cozy private room up in the Heights,21787440,Yi-Chen,Manhattan,Washington Heights,40.84074,-73.93544,Private room,65,1,11,2016-04-23,0.24,2,0 +8016747,Modern Manhattan Oasis,1444040,Ethan,Manhattan,Lower East Side,40.72126,-73.98482,Entire home/apt,109,1,76,2016-09-29,1.65,1,0 +8017587,Lovely 1BR West Village Apartment,10779300,Marlow,Manhattan,West Village,40.7383,-74.00602,Entire home/apt,150,4,0,,,1,0 +8021914,Manhattan Studio with Huge Garden!,39921605,Rachel,Manhattan,Upper West Side,40.80189,-73.96962,Private room,152,1,39,2016-12-30,0.83,5,157 +8024051,Spacious 2BD near Prospect Park!,312080,Gwen,Brooklyn,Prospect Heights,40.67427,-73.96511,Entire home/apt,150,3,28,2019-05-15,0.60,1,168 +8025808,Mid-Century Modern Oasis in the LES,40082650,Momo,Manhattan,Chinatown,40.71555,-73.99298,Entire home/apt,300,3,30,2019-05-21,0.66,1,87 +8028767,"Clean, Comfy Bright Small Bedroom",20490026,Josie,Queens,Sunnyside,40.74109,-73.91577,Private room,55,90,15,2017-04-19,0.32,1,365 +8029217,MASSIVE UNION SQ LOFT - Labor Day,36640518,Michelle,Manhattan,Chelsea,40.737,-73.99576,Entire home/apt,500,1,0,,,1,0 +8030123,Private rm in Prime Boerum Hill 2BR,22221590,Danny,Brooklyn,Downtown Brooklyn,40.68973,-73.98563,Private room,70,10,1,2015-09-08,0.02,2,0 +8031617,"Big Private, Sunny, and Quiet Room",28185540,Ayse,Brooklyn,Williamsburg,40.7083,-73.95473,Private room,60,1,4,2016-05-28,0.10,1,0 +8032689,Charming Studio in Prospect Heights,2073942,Miriam,Brooklyn,Prospect Heights,40.67874,-73.96842,Entire home/apt,150,1,1,2015-09-24,0.02,1,0 +8033609,Studio Apartment with King Bed,33213436,Alec,Brooklyn,Gowanus,40.67872,-73.98286,Private room,119,1,171,2019-06-19,3.82,8,236 +8033860,Spacious 1 Bedroom Apartment,42418809,Mallory,Manhattan,Washington Heights,40.85563,-73.93509,Entire home/apt,74,1,3,2015-11-01,0.07,1,0 +8034514,Sunny & Spacious Apartment in LES,1346505,Jovan & Zaga,Manhattan,Lower East Side,40.72045,-73.99016,Entire home/apt,250,3,4,2016-02-13,0.09,1,0 +8034665,Cozy & Comfortable Bedroom,42237225,Orlando,Manhattan,Harlem,40.80083,-73.95584,Private room,250,1,22,2017-01-01,0.47,1,365 +8035074,Beautiful Brownstone near the Park,58546,Jason,Manhattan,Upper West Side,40.79791,-73.96951,Entire home/apt,130,3,4,2015-09-21,0.09,1,0 +8036524,Renting very clean bedroom,42436366,Sun,Manhattan,Murray Hill,40.7484,-73.97298,Private room,200,1,0,,,1,0 +8040050,Spacious Manhattan studio w patio!,39921605,Rachel,Manhattan,Upper West Side,40.80377,-73.96903,Private room,163,1,30,2017-01-04,0.64,5,188 +8042732,Beautiful One Bedroom Apartment,1229609,Glenn,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95218,Entire home/apt,125,3,2,2016-09-28,0.06,1,0 +8043824,Spacious Williamsburg apartment,183594,Hannah,Brooklyn,Williamsburg,40.71693,-73.94477,Entire home/apt,149,1,7,2016-08-15,0.15,1,0 +8044856,Williamsburg/Billburg/The Burg,42404417,Erin,Brooklyn,Williamsburg,40.71848,-73.95834,Entire home/apt,135,4,54,2019-06-22,1.17,1,158 +8045421,NYC Chelsea Luxury 1BR Apt,30283594,Kara,Manhattan,Chelsea,40.74465,-73.99253,Entire home/apt,129,30,3,2017-12-31,0.07,121,161 +8045552,"A Gem Studio Apartment +Astoria,NYC",42488595,Tony,Queens,Astoria,40.76762,-73.90727,Entire home/apt,87,3,151,2019-06-17,3.32,1,210 +8047711,"Clean, Modern, Minimal Bedroom",23027887,John,Brooklyn,Greenpoint,40.72569,-73.95179,Private room,55,4,2,2015-12-30,0.04,1,0 +8052046,Traveler's Bunk Beds in Brooklyn,21090508,Jarad,Brooklyn,Bushwick,40.69758,-73.93417,Shared room,54,5,73,2018-10-05,1.56,2,0 +8052159,"Great Studio- East Village, NYC",42524168,Peter,Manhattan,East Village,40.72351,-73.98288,Entire home/apt,110,4,6,2016-06-06,0.13,1,0 +8052243,Modern 1BR Apt in Williamsburg,16396888,Emily,Brooklyn,Williamsburg,40.71062,-73.95274,Entire home/apt,250,1,3,2015-09-25,0.06,1,0 +8052841,"Bright, spacious, midtown studio",39084892,Devon,Manhattan,Midtown,40.75512,-73.96826,Entire home/apt,150,4,15,2017-01-03,0.32,1,0 +8053024,Modern apt with exposed brick,3367355,Jane,Manhattan,Upper East Side,40.78451,-73.94939,Entire home/apt,150,1,0,,,1,0 +8053664,Bare Bones Backyard Bungalow,1112829,Erin,Brooklyn,Bushwick,40.70011,-73.92119,Private room,40,5,1,2015-09-18,0.02,1,0 +8054277,Modern Condo in Heart of Harlem,42535703,Fma,Manhattan,Harlem,40.80025,-73.95519,Entire home/apt,295,3,32,2017-05-09,0.70,2,0 +8054523,1BR in Prime spot Cozy Stylish Williamsburg Apt,965061,Roman,Brooklyn,Williamsburg,40.71278,-73.96471,Private room,130,3,7,2018-05-18,0.15,1,278 +8054651,Private Sunlight Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68929,-73.93079,Private room,79,1,296,2019-06-27,6.37,7,59 +8055508,Private Spring Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68917,-73.92901,Private room,69,1,291,2019-07-01,6.23,7,68 +8055582,Private Autumn Room in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69003,-73.93085,Private room,79,1,284,2019-06-09,6.09,7,67 +8055598,"SPACIOUS APT, A/C, WIFI, SUBWAY!",2799733,Vinny,Manhattan,Washington Heights,40.85296,-73.93527,Entire home/apt,147,7,27,2019-07-04,0.78,1,294 +8055721,Private Garden View in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69022,-73.93077,Private room,79,1,291,2019-06-29,6.26,7,26 +8055778,Classic Elegance in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93035,Private room,69,1,327,2019-07-02,7.07,7,41 +8055859,Private Bedroom and Bath in Spacious Duplex,14019268,Seth,Brooklyn,Bushwick,40.69702,-73.93167,Private room,70,2,67,2019-06-29,1.45,2,353 +8058693,Large Bedroom & Private Bath – 15 min fr Manhattan,4304095,Amelie & Pascal,Brooklyn,Clinton Hill,40.68352,-73.96348,Private room,119,4,115,2019-06-10,2.47,1,26 +8061409,Private Bedroom in Quiet Brooklyn Neighborhood,1100659,Joe,Brooklyn,Bushwick,40.7052,-73.91549,Private room,49,1,107,2019-06-09,3.04,1,340 +8063109,"True Bed-Stuy, Brooklyn, New York",42586851,Brigitte,Brooklyn,Bedford-Stuyvesant,40.69132,-73.93866,Entire home/apt,132,2,81,2017-07-27,1.94,1,10 +8063277,"Spacious 2 br in Williamsburg, BK",4671519,Sue,Brooklyn,Williamsburg,40.71549,-73.94712,Entire home/apt,155,31,8,2018-05-31,0.17,1,331 +8063565,Light-filled Brooklyn duplex loft,5072735,Rory,Brooklyn,Clinton Hill,40.6854,-73.96741,Entire home/apt,150,7,0,,,1,0 +8065272,Bright & quiet West Village studio,2928867,Irene,Manhattan,West Village,40.7354,-74.00861,Entire home/apt,179,2,10,2019-01-01,0.22,1,0 +8065705,Large Room Next to Central Park,42601948,Tyson,Manhattan,Upper West Side,40.80115,-73.96043,Private room,60,1,0,,,1,0 +8066385,Share A Rustic Forte Greene studio w/ adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68667,-73.9676,Entire home/apt,104,2,15,2019-05-19,0.39,2,100 +8067561,Private room with queen size bed.,19510122,Frank,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95798,Private room,40,2,9,2016-09-11,0.20,1,0 +8067738,Rm @Top Floor of a Luxury Building!,3958647,Yegor,Brooklyn,Bushwick,40.69955,-73.92225,Private room,90,3,0,,,1,0 +8068089,Cozy One Bedroom-Lower East Side,7890158,Matthew,Manhattan,Lower East Side,40.71373,-73.98465,Entire home/apt,80,3,16,2018-11-05,0.34,1,1 +8068363,Big Bedroom with Private Bathroom,1433657,Evy,Brooklyn,Williamsburg,40.7079,-73.95598,Private room,89,2,86,2019-06-27,1.90,2,307 +8069030,Clinton Hill Flat,42619297,John,Brooklyn,Clinton Hill,40.69242,-73.96828,Entire home/apt,999,2,141,2019-04-28,3.04,2,67 +8069316,Spacious Apt w/ Balcony in Bushwick,7363236,Scott,Brooklyn,Bushwick,40.69715,-73.92865,Entire home/apt,85,25,2,2015-11-01,0.04,1,0 +8069765,Brooklyn Jeff L Huge Room and yard!,42623155,Edward,Brooklyn,Bushwick,40.70343,-73.92538,Private room,75,10,1,2015-09-16,0.02,1,0 +8069858,Room avail in Bowery neighborhood,29896455,Josh,Manhattan,Chinatown,40.71743,-73.99372,Private room,59,6,72,2019-06-16,1.57,2,200 +8071607,Lovely duplex in Williamsburg,22470446,Louise,Brooklyn,Williamsburg,40.70803,-73.94868,Private room,45,3,2,2015-10-11,0.04,1,0 +8071687,Historic Townhouse Apartment,36481078,Timur,Manhattan,SoHo,40.72731,-74.00472,Entire home/apt,350,3,74,2019-07-05,1.60,1,247 +8072371,❤️ Beautiful Artistic 2 Level Brownstone ❤️LEGAL❤️,54255,Sarah,Brooklyn,Bedford-Stuyvesant,40.684,-73.93227,Entire home/apt,395,3,60,2019-06-03,1.29,3,17 +8072744,One floor kitchen and living room,40085749,Garvin,Brooklyn,East Flatbush,40.63774,-73.93714,Private room,200,1,0,,,1,0 +8075854,The Manhattan Studio,42660040,Henri,Manhattan,Midtown,40.75513,-73.96446,Entire home/apt,180,4,20,2019-07-02,1.46,1,13 +8077469,"Cozy room, great area, near train",42667448,Rachel,Brooklyn,Williamsburg,40.71982,-73.94409,Private room,46,7,2,2016-08-07,0.04,1,0 +8078896,Upscale Studio Apt in NYC'S Theatre District!,30283594,Kara,Manhattan,Theater District,40.76145,-73.98556,Entire home/apt,203,30,0,,,121,365 +8081037,Lavish Studio with Great Amenities in FiDi,30283594,Kara,Manhattan,Financial District,40.7055,-74.00812,Entire home/apt,189,30,4,2019-01-28,0.11,121,365 +8081193,2 bedroom Home..2 metro/train stops to NY City,14946082,Alexandra,Queens,Long Island City,40.75644,-73.93486,Entire home/apt,195,3,121,2019-07-02,2.59,1,66 +8082651,"Private room in bright, clean home!",42691960,Marie,Manhattan,Harlem,40.80557,-73.94618,Private room,39,4,14,2018-01-01,0.30,2,0 +8083295,UES Studio Crash Pad,9489975,Zac,Manhattan,Upper East Side,40.7795,-73.94778,Entire home/apt,57,7,0,,,1,0 +8083931,Private Bedroom In Refurbished Apt!,15585119,Ryan,Brooklyn,Bushwick,40.70111,-73.92935,Private room,65,1,1,2015-09-08,0.02,1,0 +8085420,*COMFORTABLE bedroom for FEMALE*,42700722,Yudu,Manhattan,East Harlem,40.79985,-73.93836,Shared room,35,120,0,,,1,0 +8086028,Nicely furnished one bedroom apt,42701501,Ersellia,Brooklyn,Greenpoint,40.72218,-73.93894,Entire home/apt,140,4,18,2019-07-04,0.39,1,30 +8087274,"HUGE Master Suite + Private bath, up to 4 Guests!",1903737,Natalie,Brooklyn,Bushwick,40.69542,-73.93258,Private room,65,2,5,2018-11-18,0.11,3,4 +8087725,Beautiful Upper East 1 Bedroom,12483260,Chris,Manhattan,Upper East Side,40.77343,-73.95651,Entire home/apt,118,1,1,2015-08-31,0.02,1,0 +8088779,[201] 5 min WALK to Times Square,35524316,Yasu & Akiko,Manhattan,Hell's Kitchen,40.75989,-73.989,Shared room,250,1,134,2019-06-07,2.88,11,306 +8089062,Cozy bed in Midtown,18655157,Phuong,Manhattan,Midtown,40.74475,-73.98512,Shared room,55,5,32,2019-06-22,0.69,3,0 +8089270,Upper east side townhouse apt 2,42718751,Anita,Manhattan,Upper East Side,40.76511,-73.96555,Entire home/apt,155,30,9,2018-12-01,0.20,1,316 +8090529,"Modern studio in Queens, NY",17377835,Alex,Queens,Sunnyside,40.74674,-73.91881,Entire home/apt,250,3,0,,,1,364 +8097567,Giant Sunny Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67811,-73.97126,Private room,85,1,222,2019-06-27,4.98,13,290 +8100914,Beautiful Apt on the UpperWest,20739852,Jenn,Manhattan,Upper West Side,40.79494,-73.97221,Entire home/apt,168,1,2,2016-01-06,0.04,1,0 +8101258,Cozy Studio Apartment,39156453,Yessenia,Brooklyn,South Slope,40.66594,-73.98814,Entire home/apt,110,2,10,2016-06-19,0.22,1,0 +8101762,Spacious & sunny 1 bdrm w views,16420179,Natasha,Brooklyn,Columbia St,40.68274,-74.00433,Entire home/apt,125,2,2,2015-09-28,0.04,1,0 +8101848,"Charming, Exposed Brick 1 Bedroom",5489956,Megan,Brooklyn,Fort Greene,40.68886,-73.97687,Entire home/apt,125,3,3,2015-12-01,0.06,1,0 +8102145,Charming UWS Private Room,26163238,Nadalie,Manhattan,Upper West Side,40.78856,-73.97368,Private room,115,1,1,2017-06-04,0.04,1,0 +8103766,Charming duplex downtown manhattan,42788707,Filippo,Manhattan,Chinatown,40.71475,-73.99257,Entire home/apt,130,180,15,2016-10-24,0.35,1,365 +8104879,Here comes the sun!,1831760,Vishnu,Brooklyn,Gowanus,40.68334,-73.9847,Private room,64,7,1,2015-10-03,0.02,1,0 +8105749,Beautiful 1 bedroom in city center,23613165,Gia,Manhattan,Midtown,40.75932,-73.96396,Entire home/apt,140,2,2,2016-01-07,0.04,1,0 +8106774,BRIGHT HARLEM FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81525,-73.94552,Entire home/apt,165,7,86,2019-06-28,1.84,3,99 +8106902,Cosy clean modern apartment,202211,Pon,Manhattan,Gramercy,40.73284,-73.98511,Entire home/apt,160,2,1,2015-09-13,0.02,1,0 +8107212,Large Private Room in Williamsburg,19668001,Marie,Brooklyn,Williamsburg,40.71061,-73.94971,Private room,70,1,40,2018-10-01,0.87,1,125 +8108376,"home, sweet home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74267,-73.78737,Entire home/apt,100,1,59,2019-06-09,1.58,3,132 +8110973,Spacious 1 bedroom in East Village,2035326,Katie,Manhattan,East Village,40.72873,-73.98399,Entire home/apt,225,2,2,2015-09-27,0.04,1,0 +8111321,Huge 1 BR entire apt,32441059,Cory,Queens,Astoria,40.768,-73.92429,Entire home/apt,70,2,13,2019-01-11,0.28,1,159 +8113156,Room in heart of Williamsburg,23075765,Amandine,Brooklyn,Williamsburg,40.7151,-73.96037,Private room,60,1,2,2015-11-29,0.04,1,0 +8114144,Sunny Duplex in Heart of Bushwick,9659956,Alexandra,Brooklyn,Bushwick,40.7027,-73.92811,Entire home/apt,120,1,2,2015-10-26,0.04,1,0 +8114639,Cozy Private Bedroom in heart of Williamsburg,19058116,Sarah,Brooklyn,Williamsburg,40.7105,-73.94693,Private room,50,1,3,2016-07-29,0.08,1,0 +8115321,Private Room close to subway (1/3),40874834,Esteban,Queens,Jackson Heights,40.75526,-73.86468,Private room,75,1,114,2019-06-17,2.45,3,328 +8115423,Private Room close to subway (2/3),40874834,Esteban,Queens,Jackson Heights,40.75548,-73.86632,Private room,75,1,102,2019-06-23,2.21,3,362 +8117209,Location Dali ( rail road room ) only girls.,3250450,Petya,Queens,Long Island City,40.75547,-73.91867,Private room,37,15,12,2019-06-12,0.26,18,361 +8117213,Luxury Highline living West Chelsea Hudson Yards,722831,Jennifer,Manhattan,Chelsea,40.75165,-74.00074,Entire home/apt,225,29,9,2018-12-30,0.24,1,280 +8117729,Comfy Quiet Modern E Village Studio,1106804,Ari,Manhattan,East Village,40.7281,-73.98106,Entire home/apt,250,31,2,2015-11-26,0.04,1,358 +8118112,Bed-Stuy Brooklyn Garden Apartment,22261783,Gregory,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93961,Entire home/apt,125,3,92,2019-06-19,1.97,2,121 +8118692,Charming Studio by Bryant Park,37670256,Elaine,Manhattan,Midtown,40.75245,-73.98442,Entire home/apt,170,1,3,2016-04-20,0.07,1,0 +8119018,Private Room In Upper East Side,42874738,Dogan,Manhattan,Upper East Side,40.77887,-73.95406,Private room,110,4,81,2019-05-27,1.75,1,360 +8123857,New / Priv Deck / Cntrl Park (UES),10606799,Craig,Manhattan,Upper East Side,40.76777,-73.96393,Entire home/apt,299,7,0,,,1,0 +8125640,Amazing Water View from Midtown Apt,8301365,Jacob,Manhattan,Murray Hill,40.74553,-73.97302,Private room,100,6,5,2019-05-21,0.14,1,25 +8126091,Spacious Quiet Room,42911814,Chris,Brooklyn,Williamsburg,40.70788,-73.9426,Private room,50,10,3,2019-04-17,0.09,1,0 +8126282,Quintessential West Village apartment,3228421,Ilton,Manhattan,West Village,40.73319,-74.00502,Entire home/apt,205,3,47,2019-06-23,1.01,1,262 +8126631,Cozy room harlem,16746108,April,Manhattan,Harlem,40.81993,-73.94704,Private room,45,2,0,,,1,0 +8126777,Sunlit Oasis in WILLIAMSBURG BK (2 Bedrooms),41059169,Alex,Brooklyn,Williamsburg,40.7124,-73.96314,Entire home/apt,90,3,17,2019-07-01,0.36,3,77 +8130534,Lovely BR w/Access to Everything!,3692257,Tasia,Brooklyn,Kensington,40.64423,-73.98019,Private room,49,1,1,2015-11-05,0.02,2,0 +8130551,Clean and Spacious Room on the UWS,13164593,Majd,Manhattan,Upper West Side,40.80266,-73.96465,Private room,88,1,0,,,1,0 +8131285,Modern one bed in Alphabet City,17478311,Stephen,Manhattan,East Village,40.72573,-73.97926,Entire home/apt,129,3,5,2018-06-28,0.11,1,0 +8131995,Studio with Million Dollar Views,42942193,John,Manhattan,Kips Bay,40.73845,-73.9795,Entire home/apt,165,3,2,2017-09-22,0.04,1,0 +8132082,Lovely 1br in Heart of Brooklyn,4983838,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68499,-73.93918,Entire home/apt,103,7,14,2019-01-01,0.31,1,13 +8133275,Victorian House near Brooklyn College,33519200,George,Brooklyn,East Flatbush,40.63939,-73.94988,Entire home/apt,97,2,100,2019-06-30,2.15,1,307 +8133707,Best Private Room in Times Sq!,42951928,Prashanth,Manhattan,Theater District,40.76205,-73.9845,Private room,49,1,8,2017-08-21,0.18,1,0 +8135144,Time Square! 2 Fully Furnished apt!,42959506,Vapee,Manhattan,Hell's Kitchen,40.76127,-73.99181,Entire home/apt,245,4,55,2019-06-21,1.29,1,261 +8135887,Private Room in Modern Apartment,27362570,Autumn,Queens,Ridgewood,40.70136,-73.89608,Private room,52,1,4,2015-10-24,0.09,1,0 +8139311,Modern Beauty in Brooklyn!,7849109,Victoria,Brooklyn,Bedford-Stuyvesant,40.68041,-73.92972,Entire home/apt,280,1,1,2015-10-12,0.02,1,0 +8141256,Beautiful Riverside Park Apartment,9835167,Abby,Manhattan,Upper West Side,40.78143,-73.98638,Entire home/apt,120,3,0,,,2,0 +8141967,Bel appartement meublé de 75m2,33747092,Tom,Brooklyn,Bedford-Stuyvesant,40.6795,-73.90899,Private room,30,7,0,,,1,0 +8142536,Perfect Luxury Space in NYC!,42991737,Kent,Manhattan,Financial District,40.70517,-74.01142,Entire home/apt,350,3,0,,,1,0 +8143588,2 bedroom private apt - boerum hill,22221590,Danny,Brooklyn,Downtown Brooklyn,40.68967,-73.98664,Entire home/apt,150,3,0,,,2,0 +8144049,Sunny Room In Historic Central Harlem,2126994,Andres,Manhattan,Harlem,40.80679,-73.94408,Private room,62,3,5,2018-06-01,0.11,1,0 +8144798,Lovely East Village Apartment,18223173,Kelly,Manhattan,East Village,40.72777,-73.98545,Entire home/apt,195,1,0,,,1,0 +8145339,Chelsea 2-Bedroom Doorman Apt NEW,24430182,Carole,Manhattan,Chelsea,40.74318,-73.9982,Entire home/apt,129,1,6,2016-11-27,0.13,1,0 +8145441,Roomy Brooklyn Brownstone,7950356,Liz,Brooklyn,Park Slope,40.66766,-73.98257,Entire home/apt,175,2,10,2016-09-14,0.25,1,0 +8145603,"Spacious, Beautiful, Private Room",43007744,Ardis,Queens,Ditmars Steinway,40.77433,-73.91734,Private room,80,4,32,2019-06-21,0.72,1,303 +8146444,Sunny 1 bedroom in Brooklyn!,12796091,Rebeckah,Brooklyn,Crown Heights,40.67658,-73.95786,Entire home/apt,90,3,14,2017-01-02,0.30,1,0 +8146609,Large room in Williamsburg,8860559,James,Brooklyn,Williamsburg,40.70939,-73.95155,Private room,77,4,1,2015-09-13,0.02,1,0 +8151183,"Light, Bright and Cozy!",5983145,Benjamin,Brooklyn,Bushwick,40.69867,-73.91134,Entire home/apt,120,30,51,2018-10-27,1.28,1,202 +8151536,Sunny Room in Williamsburg Brooklyn,24982391,Maythem,Brooklyn,Williamsburg,40.71248,-73.96379,Private room,90,1,5,2015-10-19,0.11,1,0 +8151605,Amazing 2BR in Bed-Stuy,1740952,Kaila,Brooklyn,Bedford-Stuyvesant,40.68355,-73.94129,Entire home/apt,180,2,1,2015-09-26,0.02,1,0 +8151782,Prospect Park Cozy Abode,43034440,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.96177,Entire home/apt,100,30,43,2019-06-12,0.94,1,43 +8151925,Modern Studio in Cultural LES,43038322,Autumn,Manhattan,Lower East Side,40.71826,-73.99199,Entire home/apt,159,3,170,2019-06-24,3.64,1,37 +8152675,CLEAN & COZY 2 bedroom apartment,34920172,Angela,Manhattan,East Village,40.72995,-73.98135,Entire home/apt,200,1,101,2019-06-24,2.19,1,247 +8152985,Private BR in 3 BR Apt,10134825,Kara,Manhattan,Lower East Side,40.7146,-73.98423,Private room,89,3,5,2016-01-02,0.11,4,0 +8153005,Sunny 2 BR apartment in E Village,19966390,John,Manhattan,East Village,40.72845,-73.97989,Entire home/apt,200,2,3,2015-10-12,0.06,1,0 +8153235,Large room in central SOHO,28888685,Shakeh,Manhattan,SoHo,40.72528,-74.00223,Private room,72,2,5,2016-09-30,0.11,1,0 +8153240,Cozy 3 Bedroom Apartment - LES,10134825,Kara,Manhattan,Lower East Side,40.71358,-73.98456,Entire home/apt,250,3,0,,,4,0 +8155028,"Battery Park Monthly rental, great location.",43052750,Pat,Manhattan,Battery Park City,40.70956,-74.01605,Entire home/apt,165,30,6,2019-04-26,0.13,1,43 +8160542,Private Balcony and views of WTC!,43075550,Leyla,Manhattan,Tribeca,40.72018,-74.00981,Private room,100,1,18,2019-06-22,0.38,1,31 +8161540,Artist's Room in Bushwick,11315661,Angel,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92198,Private room,90,1,0,,,1,0 +8162214,"Large Room, Full Bed, Trendy LES",41087164,Jordan,Manhattan,Lower East Side,40.71349,-73.98473,Private room,90,10,8,2016-03-04,0.17,1,0 +8162587,Studio in Midtown East (1 q+couch),43082153,Ema,Manhattan,Midtown,40.75249,-73.96866,Entire home/apt,120,4,3,2016-07-10,0.06,1,0 +8162607,Brownstone Apt near Central Park,22372311,Alyshia,Manhattan,Upper West Side,40.79877,-73.96259,Entire home/apt,185,3,200,2019-07-02,4.31,1,6 +8163660,Lower East Side Garden Apartment,6816235,Maggie,Manhattan,Lower East Side,40.71977,-73.98176,Private room,100,1,0,,,1,0 +8164253,Huge Studio -East Vill/Alphbet City,43091823,Elizabeth,Manhattan,East Village,40.72362,-73.98519,Entire home/apt,120,5,0,,,1,0 +8164402,"Luxury, Cozy 1BD, walk to CentrPark",43092626,Jennifer,Manhattan,Upper East Side,40.78338,-73.95008,Entire home/apt,159,1,126,2019-06-25,2.70,1,338 +8164877,Private Room 1 Stop From Manhattan,9862206,Devon,Brooklyn,Williamsburg,40.71697,-73.95919,Private room,70,1,19,2016-07-01,0.41,1,0 +8165315,1BR in Spacious 3Bed/3ba w/backyard,19990876,Sharan,Brooklyn,Bedford-Stuyvesant,40.68389,-73.95557,Private room,80,3,4,2016-06-23,0.09,1,0 +8166218,Spacious Parisian style apartment,2881763,Miguel,Manhattan,Chelsea,40.73921,-73.99717,Entire home/apt,220,2,3,2016-11-18,0.06,1,0 +8166737,1 bedroom Prospect-Lefferts Gardens,6101617,Joe,Brooklyn,Prospect-Lefferts Gardens,40.65845,-73.96131,Entire home/apt,89,4,3,2016-05-30,0.07,1,0 +8167145,Cherry Blossom Apartment,1510638,Alessandro,Queens,Astoria,40.75535,-73.91397,Entire home/apt,135,7,2,2015-10-02,0.04,1,157 +8167182,Central Park North 1 Bedroom Apt,19982835,Maria,Manhattan,Harlem,40.79965,-73.95446,Entire home/apt,150,2,13,2019-06-16,0.28,1,362 +8167884,Greenpoint Brooklyn Modern Charm,43108922,Robbin,Brooklyn,Greenpoint,40.72176,-73.94393,Entire home/apt,165,2,129,2019-06-06,2.80,2,235 +8168619,Steps away from Laguardia airport,37312959,Maya,Queens,East Elmhurst,40.77006,-73.87683,Private room,46,1,543,2019-07-01,11.59,5,163 +8170072,179st Hub Room with balcony,20912691,Jeff,Queens,Jamaica,40.71036,-73.78261,Private room,50,2,24,2019-05-31,0.95,7,0 +8170276,Beautiful 2BR Apt in UES NYC,43119699,Shea,Manhattan,Upper East Side,40.78222,-73.94791,Entire home/apt,100,1,1,2015-09-09,0.02,1,0 +8170917,HK SWEET SPOT,41466973,Christopher,Manhattan,Hell's Kitchen,40.75849,-73.9907,Entire home/apt,200,2,1,2015-09-22,0.02,1,161 +8171965,Astoria Room Facing the Park,40336543,Simon,Queens,Long Island City,40.76211,-73.92894,Private room,100,1,1,2015-09-02,0.02,2,364 +8172864,Your Convenient Sanctuary 1br apt.,3692257,Tasia,Brooklyn,Kensington,40.64277,-73.97947,Entire home/apt,81,1,1,2015-09-06,0.02,2,0 +8172995,Open Plan & Garden Brownstone Apt,43134580,Danielle,Manhattan,East Harlem,40.80965,-73.93912,Entire home/apt,150,4,111,2019-06-10,2.44,1,99 +8173226,Small cosy room in Lower East Side,12485696,Julien,Manhattan,Chinatown,40.71343,-73.99532,Private room,60,2,3,2015-10-19,0.07,1,0 +8173232,Bright studio on Upper East Side!,14196588,Julia,Manhattan,Upper East Side,40.77914,-73.94965,Entire home/apt,180,14,0,,,1,0 +8173434,LOFT2bdrm apt near metro20min to Manhattan/wall st,38378985,Rebekah,Brooklyn,Bedford-Stuyvesant,40.67797,-73.93967,Entire home/apt,239,5,147,2019-06-18,3.19,1,142 +8173559,Bright Private Room with Big Closet,24982697,Fidelia,Brooklyn,Sunset Park,40.64355,-74.01908,Private room,70,7,13,2019-05-04,0.28,2,326 +8173563,Cosy double bedroom in Brooklyn #1,27990825,Sophie,Brooklyn,Bushwick,40.70128,-73.92666,Private room,45,2,7,2016-01-02,0.15,2,0 +8173609,Cozy Apartment Next To Central Park,43137812,Lenny,Manhattan,Harlem,40.80089,-73.95674,Entire home/apt,200,2,113,2019-06-21,2.46,1,197 +8174397,Roosevelt Island-great location,9511935,Jocelyn,Manhattan,Roosevelt Island,40.76641,-73.94561,Shared room,45,1,1,2015-09-13,0.02,1,0 +8174635,Modern Brooklyn Apartment,20538121,Michelle,Brooklyn,Bedford-Stuyvesant,40.68372,-73.95551,Entire home/apt,45,2,7,2019-06-22,0.15,1,14 +8182759,Original Old Skool 2 Bedroom Brooklyn LOFT,3538661,Phillip,Brooklyn,Williamsburg,40.71519,-73.96174,Entire home/apt,400,4,0,,,2,170 +8183112,Bright Home in Heart of Brooklyn,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.6683,-73.94977,Entire home/apt,110,1,5,2017-02-14,0.12,3,0 +8183217,Spacious Room in Heart of Brooklyn,37563411,Andrew And Talia,Brooklyn,Crown Heights,40.6682,-73.94927,Private room,65,14,0,,,3,0 +8183563,"Quiet, Clean, Beautiful East Village Loft",10963050,Dave,Manhattan,East Village,40.73178,-73.98842,Entire home/apt,250,2,48,2019-06-22,1.07,1,211 +8184502,Private Room in Luxury Building,43175172,Keith,Manhattan,Financial District,40.7066,-74.00396,Private room,120,1,2,2015-09-27,0.04,1,0 +8185845,1-Bedroom Upper East Side Apartment!,30283594,Kara,Manhattan,Upper East Side,40.76391,-73.95938,Entire home/apt,249,30,2,2018-07-28,0.10,121,273 +8186068,Bright&Beautiful BR in Williamsburg,2182167,Mez,Brooklyn,Williamsburg,40.71288,-73.94137,Private room,80,2,2,2015-09-23,0.04,1,0 +8186181,AMAZING LOCATION Large Studio Centrally Located,56350,Steven,Manhattan,Midtown,40.75463,-73.97445,Entire home/apt,124,2,14,2018-06-28,0.42,1,0 +8186924,Airy 1500 sq ft Exposed Brick Apt,22751337,Philip,Brooklyn,Fort Greene,40.69262,-73.97245,Entire home/apt,175,3,2,2016-05-01,0.04,1,0 +8187719,Location au coeur de Brooklyn!,6898461,Marie,Brooklyn,Bushwick,40.70511,-73.91755,Private room,45,1,0,,,1,0 +8189063,Cute Room in Williamsburg Apartment,3663218,John Conor,Brooklyn,Williamsburg,40.71321,-73.94099,Private room,60,1,0,,,2,0 +8189121,Sunny & Spacious in Carroll Gardens,333195,Anne,Brooklyn,Carroll Gardens,40.68326,-73.99327,Entire home/apt,115,3,27,2018-09-03,0.58,1,166 +8190219,Huge apartment on tree-lined street,1597935,Elyse,Brooklyn,Prospect Heights,40.67697,-73.97069,Entire home/apt,99,7,11,2018-04-13,0.24,1,0 +8190747,cozy apartment,43203249,Gina,Queens,Woodside,40.74715,-73.91104,Private room,75,7,1,2017-03-19,0.04,1,364 +8191699,Studio near Central Park.,13184549,Mila,Manhattan,Upper East Side,40.77569,-73.95202,Entire home/apt,140,7,3,2016-08-14,0.06,1,0 +8192079,Spacious room in shared apartment!,31804977,Laura,Manhattan,Harlem,40.82488,-73.94472,Private room,75,4,0,,,1,0 +8192443,- J - Cozy Secure Private Room in a Shared Loft,31304940,John,Brooklyn,Williamsburg,40.71596,-73.96215,Private room,60,2,106,2019-06-23,2.29,8,104 +8192532,Room in Woodside,13871584,Pj,Queens,Woodside,40.74693,-73.90146,Private room,132,1,0,,,1,0 +8192768,Pleasant room on garden floor,2808153,Basil And Jacqueline,Manhattan,Harlem,40.80577,-73.94708,Private room,120,2,11,2017-06-22,0.25,2,263 +8192789,Spacious Private Parlor Suite in Heart of Harlem,2808153,Basil And Jacqueline,Manhattan,Harlem,40.80565,-73.94621,Entire home/apt,150,2,13,2019-06-08,0.42,2,271 +8193127,Spacious TriBeCa 3BR w/ Balcony,28421010,Roberto,Manhattan,Tribeca,40.72095,-74.00918,Entire home/apt,500,3,0,,,1,0 +8193608,Top location Heart of Manhattan!,10473601,Fabiana,Manhattan,Upper East Side,40.7734,-73.95832,Entire home/apt,150,5,11,2016-06-09,0.24,1,0 +8194369,Cute room in huge artist loft!,13076168,Jaimie,Brooklyn,Bedford-Stuyvesant,40.67889,-73.9481,Private room,49,14,9,2018-10-02,0.20,1,0 +8194497,Charming Fort Greene park studio!,7430851,Aaron,Brooklyn,Fort Greene,40.68791,-73.97438,Entire home/apt,110,2,2,2015-09-18,0.04,1,0 +8195335,Cozy room in renovated Harlem apt,43226806,Jacqueline,Manhattan,Harlem,40.80214,-73.95325,Private room,65,6,1,2017-01-31,0.03,1,0 +8195719,Luxury Apartment in Williamsburg Br,24128401,Yonatan,Brooklyn,Williamsburg,40.71387,-73.95697,Entire home/apt,190,13,1,2015-10-11,0.02,1,0 +8202455,Beautiful Upper West Side Studio,43257501,Tara,Manhattan,Upper West Side,40.77795,-73.9825,Entire home/apt,125,2,1,2015-09-06,0.02,1,0 +8204305,Gorgeous Penthouse next to Central Park,32791632,Pratik,Manhattan,Upper West Side,40.77354,-73.98462,Private room,92,2,21,2019-06-14,0.46,1,39 +8204392,"Entire House in East Williamsburg, Brooklyn!",11268108,Meredith,Brooklyn,Williamsburg,40.71468,-73.93774,Entire home/apt,100,2,0,,,1,3 +8205572,Cool Chill Space In a 5BR 2.5 bath,10387090,Luis Enrique,Brooklyn,Bushwick,40.68358,-73.90884,Private room,36,20,0,,,5,346 +8206060,2 bed duplex with private garden!,3039478,Leela,Brooklyn,Bedford-Stuyvesant,40.69352,-73.94376,Entire home/apt,325,5,9,2019-06-29,0.21,1,0 +8207003,Comfy East Village Studio,4307662,Umar,Manhattan,East Village,40.72555,-73.97713,Entire home/apt,120,4,3,2015-12-28,0.07,1,0 +8207453,Quiet Relaxed Room in Williamsburg,1194064,Alexandra,Brooklyn,Williamsburg,40.70788,-73.95106,Private room,60,5,1,2015-12-16,0.02,1,0 +8207764,Beautiful & Cozy One Bedroom Apt,9911159,Vicky,Manhattan,East Harlem,40.79505,-73.93925,Entire home/apt,175,3,24,2017-01-02,0.52,1,0 +8208090,Modern private apartment in historic brownstone,43282186,Damien,Brooklyn,Bushwick,40.68989,-73.92128,Entire home/apt,200,2,147,2019-06-18,3.24,1,103 +8208285,Cute East Village 2 Bedroom Apt.,22572797,Amy,Manhattan,East Village,40.72504,-73.97905,Entire home/apt,180,1,146,2019-06-19,3.14,1,270 +8208317,Apartment share with stunning sunset views,17686601,Lauren,Manhattan,Theater District,40.76365,-73.98484,Private room,155,1,0,,,1,0 +8208997,Comfy home in heart of Williamsburg,43286973,Ivory,Brooklyn,Williamsburg,40.71887,-73.96069,Entire home/apt,120,1,0,,,1,0 +8210379,Comfy garden level room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.678,-73.97118,Private room,60,1,186,2019-07-06,3.99,13,293 +8210423,Chelsea Charm: shared apartment,19477617,Essam,Manhattan,Chelsea,40.74513,-74.00076,Private room,95,3,100,2019-06-26,2.16,1,80 +8210686,Beautiful Room in Greenpoint Loft,4998154,Minka,Brooklyn,Greenpoint,40.73266,-73.95841,Private room,80,3,0,,,1,0 +8210840,Penthouse Dream in Brooklyn,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68498,-73.93192,Entire home/apt,230,2,203,2019-06-27,4.55,4,283 +8211314,Cosy double bedroom in Brooklyn #2,27990825,Sophie,Brooklyn,Bushwick,40.70015,-73.92693,Private room,45,2,1,2015-10-26,0.02,2,0 +8211513,"Cozy Room, In Quiet Neighborhood",43299973,Alex,Queens,Ridgewood,40.70468,-73.90553,Private room,40,2,1,2015-10-13,0.02,1,0 +8212051,Monty,43302952,Monty,Brooklyn,East Flatbush,40.66383,-73.92706,Shared room,95,2,7,2015-10-30,0.15,1,238 +8213015,Crown Heights Stunner,13563861,Mandi,Brooklyn,Crown Heights,40.67211,-73.94947,Entire home/apt,200,2,0,,,1,0 +8213227,-CENTRAL PARK - 3 stops by subway(32'' TV room),43298076,Gordon M,Manhattan,Harlem,40.8224,-73.95402,Private room,42,2,34,2019-05-01,0.73,4,101 +8213488,Bed-Stuy Gem with Private Entrance,28025816,Bridgett,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95103,Private room,70,2,255,2019-06-27,5.46,1,11 +8217454,The Notorious B.N.B. {Custom},1177497,Jessica,Brooklyn,Clinton Hill,40.68971,-73.96695,Private room,199,1,20,2019-01-03,0.45,11,365 +8219648,Beautiful Apartment in Manhattan NYC,7806471,Chester,Manhattan,Washington Heights,40.84111,-73.93698,Private room,65,3,157,2019-07-05,3.40,1,287 +8221965,Artist's Loft in Garment District,42849963,Anne,Manhattan,Hell's Kitchen,40.75383,-73.99536,Entire home/apt,190,30,4,2018-08-03,0.09,1,9 +8222742,Lovely nest in Greenwich Village,22529847,Sam And Roxanna,Manhattan,Greenwich Village,40.72853,-73.99914,Entire home/apt,200,2,146,2019-06-20,3.13,1,264 +8222951,Artsy Studio near The Brooklyn Museum,19379151,David,Brooklyn,Crown Heights,40.6766,-73.95987,Entire home/apt,75,3,21,2019-04-08,1.06,1,0 +8223230,Bright and Cozy Room Williamsburg,43361668,Lia,Brooklyn,Greenpoint,40.71923,-73.95204,Private room,98,1,31,2019-06-21,0.67,1,343 +8224368,Bushwick Brooklyn Morgantown Oasis,4591602,Alec & Laura,Brooklyn,Bushwick,40.7043,-73.92719,Private room,120,2,78,2019-06-03,1.79,1,206 +8225035,International Meeting Place_Room 4,43371802,Sinaly,Brooklyn,Flatlands,40.62802,-73.92729,Private room,130,4,9,2019-05-27,0.20,5,365 +8225210,Doorman Harlem Apt with Great Views,43370599,John,Manhattan,Harlem,40.81243,-73.9392,Entire home/apt,250,1,0,,,1,89 +8225997,Bright 1BD in happening E Village,11004198,Caroline,Manhattan,East Village,40.72057,-73.97997,Entire home/apt,125,31,2,2016-04-01,0.04,1,204 +8226137,1-Bedroom Apartment in Heart of UWS,37440683,Ben,Manhattan,Upper West Side,40.77832,-73.98069,Entire home/apt,225,2,0,,,1,0 +8226346,"Cozy, light, private room",41962603,Dmitry,Brooklyn,Bushwick,40.6972,-73.92697,Private room,96,3,0,,,1,0 +8228217,Bold and bodacious in the fall,43390488,Valvil,Brooklyn,Flatbush,40.64438,-73.95408,Private room,55,5,4,2018-09-10,0.09,1,89 +8231648,1st Fl Comfortable Room in Manhatan,43330303,Cristian,Manhattan,Washington Heights,40.85369,-73.93187,Private room,68,3,8,2019-06-17,0.20,2,160 +8234295,"Sunny, spacious, bedroom for rent",481603,Lindsey,Brooklyn,Bushwick,40.69017,-73.91291,Private room,45,15,0,,,1,0 +8234510,"Beautiful Astoria Apt 1BR, 2bath",7853503,Lindsay,Queens,Astoria,40.7713,-73.92628,Entire home/apt,140,1,2,2016-01-02,0.05,1,0 +8234740,Nice Studio in Hell's kitchen,37440412,Rebecca,Manhattan,Hell's Kitchen,40.76016,-73.98929,Entire home/apt,160,4,5,2016-06-12,0.11,1,0 +8235820,Brand new Williamsburg apt!,13716326,Oran,Brooklyn,Williamsburg,40.70828,-73.95246,Private room,77,7,1,2015-09-18,0.02,1,0 +8236539,"Quiet room in Greenpoint, Brooklyn",43434198,Dee,Brooklyn,Greenpoint,40.72784,-73.94937,Private room,90,1,1,2015-09-21,0.02,1,0 +8236660,Large & Cozy Manhattan LES 2BR Apt,8332684,Mostafa,Manhattan,Lower East Side,40.71868,-73.99036,Entire home/apt,208,13,1,2015-09-28,0.02,1,0 +8237244,Charming Studio + Private Balcony,38363621,Michael,Manhattan,East Village,40.72765,-73.98634,Entire home/apt,215,3,72,2019-03-23,1.56,1,0 +8238934,I bedroom w/ private bathroom,43446271,Crystal & Allan,Manhattan,Harlem,40.80204,-73.95794,Private room,100,2,21,2019-06-21,0.45,1,79 +8239111,"Sunlit, Spacious & Near train",36192346,Robert,Manhattan,Washington Heights,40.85415,-73.93108,Private room,40,2,9,2016-01-16,0.20,1,0 +8239352,Private Room 12x12 close to manhattan,43449898,Ashley,Queens,Maspeth,40.72194,-73.91138,Private room,59,1,85,2019-06-30,1.85,1,176 +8239650,"Waterfront, perfect NYC getaway!",13407785,Frank And Anna,Bronx,Throgs Neck,40.81476,-73.80001,Entire home/apt,325,2,44,2019-07-02,2.23,1,153 +8240016,Large Brooklyn Apt Artsy & Centric,36791609,Paul,Brooklyn,Bushwick,40.69836,-73.93521,Entire home/apt,98,1,201,2019-06-24,4.37,1,293 +8241378,West Village: the best part of town,43461780,Andrew,Manhattan,West Village,40.73618,-74.00201,Private room,109,1,0,,,1,0 +8241545,Spacious Sunny Rm in Stylish Duplex,21628945,Keith,Brooklyn,Bedford-Stuyvesant,40.68167,-73.92525,Private room,69,3,13,2017-08-14,0.28,2,333 +8241894,1 large bedroom 10mins to Manhattan,6865699,Yuxi,Queens,Long Island City,40.75363,-73.93463,Private room,80,3,1,2015-09-14,0.02,1,0 +8247721,Charming Crown Heights Brownstone,43494916,Tilly,Brooklyn,Crown Heights,40.67791,-73.95337,Entire home/apt,80,3,0,,,2,0 +8249156,Room #3 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Brownsville,40.67065,-73.91643,Private room,39,1,45,2019-05-21,0.97,10,158 +8250280,Zee's Brooklyn nest,9775058,Nazifa,Brooklyn,Kensington,40.64125,-73.9763,Private room,70,2,7,2019-07-03,2.63,1,37 +8250457,"Heart of W. Village 1-BR, Renovated",43509184,Catrina,Manhattan,West Village,40.73418,-74.0046,Entire home/apt,194,3,117,2018-01-11,2.58,1,0 +8250925,NYC Lofted Room in the Lower East Side,7455706,Amanda,Manhattan,East Village,40.72255,-73.97813,Private room,90,5,92,2019-06-07,2.01,2,8 +8251228,Private Bedroom Near Manhattan NYC,22384027,Shahana,Brooklyn,Crown Heights,40.67115,-73.91621,Private room,39,1,70,2019-06-21,1.51,10,33 +8252369,Cute Sunny Loft Space Williamsburg,10276104,Alice,Brooklyn,Williamsburg,40.71219,-73.95623,Private room,85,2,71,2019-06-24,1.53,1,151 +8253376,large house with inground pool/spa,43524236,Miran,Staten Island,Todt Hill,40.60926,-74.10092,Entire home/apt,429,2,4,2015-11-06,0.09,1,0 +8254405,Classic Harlem --- Economy Room,26856159,Glenda,Manhattan,Harlem,40.82205,-73.9467,Private room,42,1,161,2019-06-17,3.46,3,259 +8254640,Large Beautiful BedStuy Apartment,123713,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68178,-73.94179,Entire home/apt,200,2,1,2015-10-27,0.02,1,0 +8254674,NOHO ART LOFT ON LAFAYETTE. BEST LOCATION IN NYC,4910739,Max,Manhattan,NoHo,40.72847,-73.99302,Entire home/apt,700,2,31,2019-07-01,1.29,1,54 +8255329,Private room in middle of Bushwick,19963678,Erin,Brooklyn,Bushwick,40.70299,-73.92648,Private room,50,1,4,2015-10-10,0.09,1,0 +8255464,Great new 1 bdrm condo in Greenwood :),43534773,Christine,Brooklyn,Sunset Park,40.65585,-73.99918,Entire home/apt,100,1,1,2015-09-21,0.02,1,0 +8255964,"Safe,Convenient,economical,Clean 2",18183596,Danny,Brooklyn,Crown Heights,40.67743,-73.95523,Entire home/apt,150,4,61,2019-06-30,1.33,1,365 +8256749,Luis and Melanie's B and B,41514104,Luis,Brooklyn,Bushwick,40.6938,-73.92562,Entire home/apt,100,5,85,2019-06-15,1.84,1,269 +8256930,*Lovely Apt in Heart of Park Slope*,5973406,Andrew,Brooklyn,Park Slope,40.66826,-73.98223,Entire home/apt,85,30,26,2018-12-12,0.56,2,282 +8257585,Spacious apartment in trendy neighborhood,41547419,Candy,Manhattan,Greenwich Village,40.72681,-73.99952,Entire home/apt,240,1,72,2019-01-18,1.80,1,0 +8257903,"Sanctuary Oasis, Midtown Manhattan",43549138,Romona,Manhattan,Kips Bay,40.74123,-73.97731,Entire home/apt,135,7,2,2015-10-30,0.04,1,0 +8257999,awesome private studio on ues !,37376980,Jared,Manhattan,Upper East Side,40.78086,-73.94974,Entire home/apt,135,14,3,2015-12-10,0.07,1,0 +8265482,Cozy Private Room Near Bronx Zoo,43583032,Stephanie,Bronx,West Farms,40.84328,-73.88173,Private room,79,1,3,2018-10-08,0.16,1,179 +8266287,East Village apt w/ ESB views,32277262,Mickey,Manhattan,East Village,40.72305,-73.98834,Private room,150,2,10,2017-08-27,0.31,1,0 +8266641,2 bedroom in Stuyvesant Heights,43588775,Anthony,Brooklyn,Bedford-Stuyvesant,40.68137,-73.94233,Private room,139,4,84,2019-05-08,1.83,1,307 +8266871,"Cozy, comfortable private room",983006,Gabriela,Brooklyn,Bedford-Stuyvesant,40.68632,-73.95093,Private room,38,2,2,2019-01-01,0.04,1,0 +8266933,Bright Bedroom in a Brooklyn Loft,32492147,Grete,Brooklyn,Downtown Brooklyn,40.69579,-73.98296,Private room,100,4,65,2017-12-22,1.43,1,0 +8266969,Cozy and Comfortable,43590457,Michael,Queens,Astoria,40.76599,-73.91777,Private room,75,3,0,,,1,0 +8267425,Ridgewood/Bushwick ~ Bungalow,21148770,Ian,Queens,Ridgewood,40.70995,-73.90959,Entire home/apt,170,4,6,2017-01-04,0.13,1,0 +8268465,Beautiful Private Room and Bath in Historic Harlem,43600713,Julie,Manhattan,Harlem,40.82137,-73.94769,Private room,70,2,57,2018-12-10,1.48,1,188 +8268849,Private Floor in SOHO Townhouse,43599290,Scott,Manhattan,SoHo,40.72409,-74.00241,Private room,199,3,107,2019-06-23,2.69,2,276 +8269241,Room #5 Near Manhattan NYC.,22384027,Shahana,Brooklyn,Crown Heights,40.67073,-73.91799,Private room,39,1,62,2018-11-25,1.34,10,159 +8269318,Dreamy Private Bedroom Near Manhattan NYC.,22384027,Shahana,Brooklyn,Crown Heights,40.67112,-73.91685,Private room,39,1,73,2019-05-10,1.57,10,33 +8269681,Sunny Clean Bedroom,43601551,Anamaria & Ricardo,Manhattan,East Harlem,40.78987,-73.94883,Private room,75,2,13,2019-01-02,0.28,2,325 +8270710,Gorgeous sunny apt steps to park!,3959655,Eric And Aoife,Brooklyn,Windsor Terrace,40.65106,-73.97704,Entire home/apt,99,20,30,2017-06-11,0.65,2,65 +8272122,Cozy Room 4 stops from 5 avenue,2417692,Verena,Queens,Astoria,40.75748,-73.91221,Private room,100,15,15,2019-07-01,0.32,2,61 +8272327,Quiet Brownstone Parlor Studio,38465372,Nadege & Charles,Brooklyn,Cobble Hill,40.6869,-73.99741,Entire home/apt,225,3,38,2019-06-30,0.96,1,135 +8272749,Prime Room with View in Brooklyn Heights,25728891,Melissa,Brooklyn,Brooklyn Heights,40.69449,-73.99727,Private room,99,2,72,2019-06-14,1.62,1,231 +8272818,"Three-Story Brick Brownstone, Perfect for Families",179246,Francis & Daniele,Brooklyn,Bedford-Stuyvesant,40.67804,-73.90997,Entire home/apt,469,9,7,2019-01-02,0.16,2,48 +8274113,Bed-Stuy Apartment w/ Rooftop Patio,1804684,Daniel,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93884,Private room,67,60,6,2019-06-22,0.13,1,266 +8274440,Upper Manhattan Luxury Town Home - Mins to Midtown,43628713,Ed,Manhattan,Harlem,40.80801,-73.9486,Private room,180,3,18,2019-05-21,0.39,1,362 +8274516,Central Park west. Big Cozy Room,16805656,Fernando,Manhattan,Upper West Side,40.79927,-73.96235,Private room,100,1,87,2019-06-22,1.88,2,263 +8274711,Penthouse Studio in Historic Harlem,1017231,Susan,Manhattan,Harlem,40.82755,-73.93787,Entire home/apt,125,3,8,2016-03-19,0.17,1,1 +8274931,Stunning apartment with view only 5 min from metro,43633040,Nika,Queens,Astoria,40.76086,-73.92604,Entire home/apt,85,3,25,2019-06-03,0.55,1,0 +8275069,Duplex Upper East side,9597454,Robin,Manhattan,Upper East Side,40.77001,-73.95691,Private room,175,2,3,2016-07-18,0.08,1,0 +8275331,Affordable and Spacious room,32379616,Fabiola,Bronx,Williamsbridge,40.88301,-73.85452,Private room,65,5,17,2017-10-03,0.40,2,123 +8275346,Brooklyn Apt,43635876,Denise,Brooklyn,Borough Park,40.64077,-73.99268,Private room,52,2,6,2019-05-20,2.09,1,90 +8275455,Lovely Inwood Studio,424343,Melissa,Manhattan,Inwood,40.85911,-73.928,Entire home/apt,85,3,3,2016-07-04,0.07,1,0 +8275676,LOVELY Clean&Safe 2 BR NYC Suburban,43637999,Martha,Staten Island,Great Kills,40.5455,-74.14829,Private room,99,1,82,2019-06-30,1.78,1,325 +8276819,International Meeting Place_Room 3•,43371802,Sinaly,Brooklyn,Flatlands,40.62841,-73.92591,Private room,130,4,3,2019-05-19,0.07,5,364 +8276961,Cozy 1 BR Apt- Perfect Location NYC,43645608,C,Manhattan,Hell's Kitchen,40.76128,-73.99617,Entire home/apt,189,2,39,2019-05-06,0.86,1,37 +8281340,"Spacious, Townhouse Garden Apt",21628945,Keith,Brooklyn,Bedford-Stuyvesant,40.68223,-73.9269,Entire home/apt,121,2,16,2019-01-28,0.42,2,0 +8281889,"Williamsburg, Brooklyn space",43669213,Jasmine,Brooklyn,Williamsburg,40.70309,-73.94788,Private room,150,1,4,2017-03-19,0.09,1,363 +8281967,Stylish Studio in Midtown East,43669488,Shwetha,Manhattan,Midtown,40.7579,-73.96243,Entire home/apt,170,1,1,2015-10-01,0.02,1,0 +8283627,Private Room Steps from Time Square,11428056,Brian,Manhattan,Hell's Kitchen,40.76039,-73.99002,Private room,70,2,11,2016-08-22,0.24,1,0 +8283646,A cozy room on the Upper West Side.,21221987,Joshua,Manhattan,Upper West Side,40.79512,-73.97479,Private room,80,5,1,2015-09-08,0.02,1,0 +8283693,Nice apt in New York,15809410,Gabriela,Manhattan,Morningside Heights,40.81464,-73.96185,Entire home/apt,186,7,0,,,1,0 +8285992,Large and Charming East Village Apt,1181122,Matin,Manhattan,East Village,40.72824,-73.97543,Entire home/apt,174,3,11,2018-07-30,0.24,1,0 +8286139,Private BR in 3 BR Apartment,10134825,Kara,Manhattan,Lower East Side,40.71413,-73.9864,Private room,89,1,5,2015-11-04,0.11,4,0 +8286476,Prime Location & Tech Entrepreneurs,23936958,Alex,Manhattan,East Village,40.72749,-73.98894,Private room,109,3,4,2015-11-01,0.09,1,0 +8286494,Huge apt w New York City Skyline view,43691297,Camille,Brooklyn,Greenpoint,40.72788,-73.95408,Entire home/apt,100,4,26,2018-11-15,0.57,1,0 +8286580,Modern Williamsburg Apt w/ Balcony,6112537,David,Brooklyn,Williamsburg,40.71078,-73.94061,Private room,80,5,5,2015-10-12,0.11,2,0 +8287001,Cozy skylight room in Victorian Town House,14796247,Sandra And Cary,Brooklyn,Flatbush,40.6419,-73.96421,Private room,41,7,16,2019-04-04,0.35,4,292 +8290210,Overlooking NYC skyline in Greenpoint,41152325,I-Nu,Brooklyn,Greenpoint,40.72373,-73.94537,Entire home/apt,120,5,0,,,1,0 +8290724,Sunny Greenwich Village 1BR Apt!,2857722,Joseph,Manhattan,West Village,40.73435,-73.99903,Entire home/apt,230,8,23,2018-04-29,0.50,1,0 +8291897,Cozy with Great location !!,43719073,Nora,Brooklyn,Sheepshead Bay,40.6,-73.95612,Shared room,45,1,126,2019-07-01,2.94,5,342 +8292864,Charming East Village Apartment,19194060,Ryan,Manhattan,East Village,40.7241,-73.97992,Entire home/apt,600,3,0,,,1,0 +8293281,GREAT LOCATION QUIET BKLYN STREET,634004,Chris,Brooklyn,Prospect Heights,40.67835,-73.97074,Entire home/apt,125,2,80,2019-06-24,2.83,1,105 +8293802,Epic 1BR in Heart of East Village,3901962,Dylan,Manhattan,East Village,40.72948,-73.98664,Entire home/apt,149,2,1,2015-09-26,0.02,1,0 +8294259,Room in Private House(Queen Bed) by Montefiore-NYC,11305944,Yahaira,Bronx,Allerton,40.86789,-73.85999,Private room,63,4,40,2018-07-16,0.87,5,0 +8294525,Studio in Bensonhurst - Near subway,25266527,Maria,Brooklyn,Bensonhurst,40.62054,-73.99828,Entire home/apt,60,3,6,2017-01-17,0.13,1,0 +8301159,Big Sunny Room in Manhattan!!! (B6),5164854,Lilia,Manhattan,Harlem,40.81959,-73.9379,Private room,57,3,17,2019-01-02,0.38,8,341 +8301850,Private top floor,36955448,Indira,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95893,Entire home/apt,160,2,59,2019-06-16,1.58,1,304 +8302680,Sunny 2BR Apartment in Williamsburg,3038856,Samir,Brooklyn,Williamsburg,40.7124,-73.96259,Entire home/apt,164,1,10,2018-05-06,0.23,3,0 +8303074,Two bedroom apt near prospect park,5499953,R Demetre,Brooklyn,Crown Heights,40.66916,-73.95288,Entire home/apt,250,2,10,2019-06-20,0.22,2,365 +8303337,Your Riverside Romance: Sunny and Bright Apartment,8791857,Mario,Manhattan,Morningside Heights,40.81067,-73.96377,Entire home/apt,194,5,29,2019-06-22,0.75,1,102 +8304576,Beautiful studio in FIDI,14386700,Elsa,Manhattan,Financial District,40.70698,-74.01383,Entire home/apt,140,10,0,,,1,0 +8304809,Parkway Chic ( 2 Bedrooms),43443842,Rigoberto,Brooklyn,Crown Heights,40.66889,-73.93045,Entire home/apt,205,3,84,2019-06-20,1.85,1,172 +8305649,International Meeting Place_Room 1*,43371802,Sinaly,Brooklyn,Flatlands,40.6283,-73.92619,Private room,129,4,5,2017-01-04,0.11,5,365 +8306427,Williamsburg Penthouse Apartment,7784911,Marc,Brooklyn,Williamsburg,40.70948,-73.94081,Entire home/apt,250,4,0,,,2,188 +8306839,1 Week NYC during the Holidays!,41007625,Cheryl,Manhattan,Midtown,40.76502,-73.98198,Private room,399,6,0,,,1,0 +8307946,Spacious Greenwich Village 1 Bed,6502766,Katie,Manhattan,Greenwich Village,40.73637,-73.99746,Entire home/apt,150,2,16,2017-01-01,0.37,1,0 +8308683,Couples' Nest.,10129919,Jorge,Brooklyn,Cypress Hills,40.68537,-73.8775,Entire home/apt,75,3,160,2019-06-20,3.44,2,256 +8308797,shared space with Great location!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59836,-73.95417,Shared room,45,1,135,2019-07-07,2.91,5,351 +8309474,Comfy room in East Williamsburg.,51414,Jose Xavier,Brooklyn,Williamsburg,40.71525,-73.94742,Private room,65,2,9,2018-11-01,0.20,1,0 +8309731,Convenient studio,43804373,Solange,Manhattan,Upper East Side,40.76096,-73.95964,Entire home/apt,250,1,13,2016-02-12,0.28,1,0 +8311468,Huge Loft Studio in Hip Greenpoint!,10023505,Gabriel,Brooklyn,Greenpoint,40.7347,-73.95727,Shared room,185,1,1,2015-10-24,0.02,1,0 +8312148,West Village 1 Bedroom w/ fireplace,8550571,Nolan,Manhattan,West Village,40.73105,-74.00541,Entire home/apt,400,2,10,2017-08-11,0.25,1,0 +8313551,Recently renovated private floor,5268758,Jennifer,Queens,Sunnyside,40.73633,-73.92641,Entire home/apt,125,1,172,2019-07-06,4.48,1,234 +8316959,Sun-soaked Oasis in Astoria.,41817016,G. Angela,Queens,Ditmars Steinway,40.77188,-73.91555,Private room,175,1,5,2017-09-03,0.11,1,87 +8319488,Spacious park slope 2 bedroom,43126563,Andrew,Brooklyn,Park Slope,40.67173,-73.98303,Entire home/apt,300,3,70,2019-06-30,1.51,1,338 +8319784,~Lavish 1 Bedroom Upper East Side NYC Apt!,30283594,Kara,Manhattan,Upper East Side,40.76483,-73.95801,Entire home/apt,249,30,1,2017-06-29,0.04,121,273 +8320129,Cozy Studio Apt Upper East Side Near Hospitals,30283594,Kara,Manhattan,Upper East Side,40.76137,-73.96042,Entire home/apt,199,30,3,2018-04-22,0.11,121,365 +8320702,Convenient full 1 bdrm + loft apt,39047190,Stacy,Manhattan,Gramercy,40.73858,-73.98882,Entire home/apt,180,4,2,2015-10-19,0.04,1,0 +8321236,Conveniently Located Brooklyn Apt,4818113,Veralyn,Brooklyn,Brownsville,40.6678,-73.92526,Private room,60,3,34,2019-05-26,0.73,1,116 +8321495,CLEAN & BRIGHT 1BR IN WILLIAMSBURG,30866347,Ignacio,Brooklyn,Williamsburg,40.70866,-73.94116,Private room,55,7,2,2016-01-16,0.05,1,0 +8322478,Designers brownstone in Bed-Stuy,5008870,Mia,Brooklyn,Bedford-Stuyvesant,40.68211,-73.9236,Entire home/apt,135,2,129,2019-07-01,3.32,1,242 +8323015,Caribbean Retreat in the heart of Brooklyn,43876308,Everol,Brooklyn,East Flatbush,40.64464,-73.94807,Entire home/apt,90,2,4,2019-07-02,1.85,1,93 +8323765,Master Bedroom in East Village,14156051,Brooke,Manhattan,East Village,40.73305,-73.98668,Private room,130,4,1,2015-09-28,0.02,1,0 +8324941,Charming studio apartment,43885876,Nicholas,Bronx,Pelham Bay,40.85362,-73.82949,Shared room,150,1,0,,,1,364 +8325605,Big & Sunny Greenpoint Room,43889585,Allyson,Brooklyn,Greenpoint,40.73747,-73.95289,Private room,80,1,0,,,1,0 +8326389,Exquisite Apartment in Hip Hamilton Heights,43893277,Edward,Manhattan,Harlem,40.82523,-73.95383,Private room,85,3,37,2019-06-11,0.81,1,61 +8326753,Prime Location in Theatre District,34934128,Aly,Manhattan,Theater District,40.76095,-73.98668,Private room,150,2,3,2017-06-19,0.08,1,0 +8327302,Spacious bedroom,43897442,Nick,Brooklyn,Flatbush,40.65309,-73.95523,Private room,62,1,73,2019-06-19,1.58,1,334 +8327773,"Gorgeous Brooklyn Brownstone Flat, Great Location!",6444987,Jason,Brooklyn,Bedford-Stuyvesant,40.68121,-73.93038,Entire home/apt,155,2,188,2019-06-19,4.06,3,262 +8328900,Private room in a 4 bedroom loft,890425,Lea,Brooklyn,Bedford-Stuyvesant,40.67889,-73.94326,Private room,40,2,3,2018-09-30,0.27,1,0 +8334574,Unbeatable NY room in East Village!,5283853,Chara,Manhattan,East Village,40.72972,-73.9875,Private room,140,2,35,2017-08-21,0.78,2,28 +8335539,Comfy bed in a beautiful apartment!,12720552,Julie,Brooklyn,Bushwick,40.69902,-73.93102,Shared room,50,1,5,2019-06-25,0.11,5,365 +8335547,W Hotel Style 2 BR w/ Private Patio,1237358,David,Manhattan,East Village,40.72342,-73.98871,Entire home/apt,250,2,1,2015-09-26,0.02,1,0 +8337597,Spacious Clinton Hill Room,43949321,Ronald,Brooklyn,Clinton Hill,40.68717,-73.96015,Private room,70,7,1,2015-10-04,0.02,1,0 +8338312,Vacation Rental in Prospect Heights,1854179,Fedor,Brooklyn,Prospect Heights,40.68043,-73.96781,Entire home/apt,160,5,5,2018-07-15,0.11,1,0 +8339036,Top Floor 1 Bedroom Apt XpressTrain,11995451,Sam,Brooklyn,Midwood,40.62857,-73.94828,Entire home/apt,78,2,114,2019-06-20,2.65,1,217 +8339140,Historic Little Italy / Chinatown Jewel,43956548,Baizy,Manhattan,Chinatown,40.71631,-73.99694,Entire home/apt,139,4,8,2018-06-03,0.17,1,350 +8340381,CHEAP & LOVELY ROOM IN MANHATTAN!!!,20990447,Adir,Manhattan,Washington Heights,40.85338,-73.93061,Private room,50,5,4,2017-04-19,0.09,1,0 +8340665,True One BR - Upper East Side,43964253,Rob,Manhattan,Upper East Side,40.77455,-73.94982,Entire home/apt,145,2,31,2018-12-30,0.69,1,0 +8341556,-MANHATTAN - Upper West BIG ROOM w/tv,43298076,Gordon M,Manhattan,Harlem,40.82323,-73.95494,Private room,55,2,84,2019-05-26,1.82,4,72 +8341669,Upper West Side Luxury Rental,43969051,Kate,Manhattan,Upper West Side,40.79061,-73.97335,Entire home/apt,215,5,1,2015-09-27,0.02,1,0 +8341919,Brand New Luxury Apt Lease Takeover,43945071,Shining,Queens,Long Island City,40.74654,-73.95778,Entire home/apt,199,480,0,,,1,365 +8342009,Cozy apartment with lots of light,43375242,Gabriela,Queens,Long Island City,40.75653,-73.93268,Private room,120,2,9,2019-04-22,0.20,2,89 +8342053,Chelsea apartment with a backyard,26012172,Katarina,Manhattan,Chelsea,40.75093,-73.99675,Entire home/apt,160,3,9,2016-11-30,0.19,1,0 +8342200,"Upper West Side, Close to Park",37131217,Rowdy,Manhattan,Upper West Side,40.7816,-73.97638,Entire home/apt,125,5,0,,,1,0 +8342917,Cozy 1 bedroom uptown,43976299,Sean,Manhattan,Harlem,40.83057,-73.94582,Entire home/apt,99,1,0,,,1,0 +8343222,"New Apartment, Close to Ferry",43977828,Mona And Wally,Staten Island,Silver Lake,40.62257,-74.09984,Entire home/apt,80,2,147,2019-07-05,3.19,1,324 +8347980,Large Modern Studio Next To The Park,4230646,Jonathan,Manhattan,East Village,40.72595,-73.98218,Entire home/apt,150,2,6,2017-01-01,0.18,1,0 +8348832,BUSHWICK ground floor beauty,15756065,Genna,Brooklyn,Bushwick,40.69795,-73.92162,Private room,110,1,2,2015-12-04,0.04,1,0 +8353055,Bright Brooklyn Penthouse +Roofdeck,619330,Nancy,Brooklyn,South Slope,40.66616,-73.98904,Entire home/apt,360,4,5,2016-07-31,0.12,1,0 +8354383,Artist 1.5 bedroom WHOLE apartment!,38204730,Kathy,Manhattan,Gramercy,40.73524,-73.98441,Entire home/apt,239,5,2,2019-01-05,0.05,3,30 +8355713,Cozy Private Brooklyn Bed room,44042396,Gabriel,Brooklyn,Crown Heights,40.66754,-73.95265,Private room,40,4,3,2016-04-30,0.07,1,0 +8355794,New York Upper West Near Columbia U,15833732,Yawen,Manhattan,Upper West Side,40.80285,-73.9657,Private room,60,5,2,2015-12-01,0.05,1,0 +8356955,Find Serenity in this Harlem Studio,30460662,Gabrielle-Renée,Manhattan,Harlem,40.82117,-73.94306,Entire home/apt,87,2,11,2017-12-12,0.25,1,0 +8357147,Perfect Solo Traveler Room in Williamsburg,33874814,Victor,Brooklyn,Williamsburg,40.70617,-73.95055,Private room,44,2,0,,,1,6 +8358047,Nice Bedroom in Harlem (Sugar Hill),44050884,Amaurys,Manhattan,Harlem,40.8272,-73.94137,Private room,80,1,0,,,1,0 +8361443,"Cozy studio, with fantastic light",10618178,Greg,Manhattan,Upper East Side,40.78174,-73.94829,Entire home/apt,119,6,4,2015-10-30,0.09,1,0 +8362098,Lovely 1.5 bed in South Park Slope,2128335,Julian,Brooklyn,Sunset Park,40.66198,-73.99785,Entire home/apt,69,5,9,2016-12-30,0.20,1,0 +8364733,Pleasant Enviornment,44087298,Catherine,Manhattan,Washington Heights,40.84707,-73.93541,Private room,50,1,38,2017-06-12,0.84,2,0 +8364979,Modern • Sleek • Brooklyn,8489997,Evonne,Brooklyn,Williamsburg,40.71111,-73.95141,Entire home/apt,200,10,27,2019-05-21,0.59,1,280 +8365647,1 Bedroom/1 Bathroom in Riverdale (close to HIR),10024006,Long,Bronx,Riverdale,40.88837,-73.90939,Private room,65,1,202,2019-05-18,4.35,1,0 +8367125,Nice & clean studio for a couple,44099001,Agnieszka,Queens,Elmhurst,40.7452,-73.89086,Entire home/apt,78,2,1,2016-09-18,0.03,1,0 +8367271,Cozy Studio in Heart of Ft Greene,2477248,Christopher,Brooklyn,Fort Greene,40.68602,-73.97386,Entire home/apt,150,4,4,2017-01-04,0.09,1,0 +8367486,Private Bed/Bath-Central Park Views,44096608,Ericka,Manhattan,Upper West Side,40.7965,-73.96179,Private room,99,2,165,2019-06-18,3.56,1,105 +8368708,Cozy 1 bedroom apt Prime Location!!,20413250,Sara,Queens,Astoria,40.76307,-73.92247,Entire home/apt,150,14,0,,,2,0 +8368794,Modern Lux Furnished 1 Bedroom Apt,4167576,Sid,Manhattan,Chelsea,40.7368,-73.9925,Entire home/apt,140,1,71,2019-06-01,1.56,1,256 +8368928,Private 2BD Apartment in Manhattan,15789077,Lisa,Manhattan,Murray Hill,40.74716,-73.97607,Entire home/apt,500,1,1,2015-09-28,0.02,1,0 +8368973,Modern & Comfortable 1 BR,28916226,Suzy,Brooklyn,Prospect-Lefferts Gardens,40.65774,-73.95202,Entire home/apt,75,1,0,,,1,0 +8369401,Peaceful South Slope Living Quarters,31104953,Deborah,Brooklyn,Windsor Terrace,40.66012,-73.98343,Entire home/apt,123,3,141,2019-07-03,3.09,1,0 +8369701,INTER HOUSE entire apt minim 16 day,43371802,Sinaly,Brooklyn,Flatlands,40.62862,-73.92629,Entire home/apt,414,16,5,2018-08-11,0.12,5,365 +8369857,International Meeting Place_Room 2,43371802,Sinaly,Brooklyn,Flatlands,40.62868,-73.92739,Private room,125,4,13,2019-05-19,0.29,5,180 +8369895,Spacious Chelsea Loft!,40376473,Matthew,Manhattan,Chelsea,40.74451,-73.99226,Entire home/apt,299,2,25,2019-05-03,1.22,1,221 +8370236,Barbara's Home Stay,44107591,Barbara,Brooklyn,Flatbush,40.65216,-73.96119,Private room,55,3,219,2019-07-02,4.73,1,286 +8371626,Cozy little room UWS,44123353,Griffin,Manhattan,Upper West Side,40.78583,-73.9768,Private room,55,3,2,2015-09-30,0.04,1,0 +8372368,The Herkimer House Room #2,27708645,Malik,Brooklyn,Bedford-Stuyvesant,40.67831,-73.93903,Private room,65,3,3,2015-10-13,0.07,1,342 +8372650,Luxurious 1BR in Herald Square,25360921,Darwaysh,Manhattan,Midtown,40.74911,-73.9877,Entire home/apt,300,3,0,,,1,0 +8373265,Huge Private Cool 1BR Harlem -Close 2 Central Park,15094887,Lisa,Manhattan,Harlem,40.80582,-73.95355,Entire home/apt,150,5,11,2019-01-02,0.82,1,0 +8381173,Charming Hell's Kitchen nest -- bedroom 2,19838610,Scott,Manhattan,Hell's Kitchen,40.76859,-73.9872,Private room,79,1,5,2017-05-13,0.14,1,0 +8381381,Studio in Manhattan,2284111,Su,Manhattan,Hell's Kitchen,40.76599,-73.98388,Entire home/apt,152,1,0,,,1,0 +8381953,Tranquil Apt with Garden Access,44171084,Sheena,Manhattan,Harlem,40.82244,-73.94773,Entire home/apt,124,3,102,2019-06-15,2.66,1,247 +8382660,One cozy bedroom in Bay Ridge NY,44170892,"Keiko, Harumi & Eric",Brooklyn,Bay Ridge,40.63421,-74.0263,Private room,85,2,36,2019-06-26,0.94,1,281 +8385108,Cozy private room,2448006,El Haj,Manhattan,Harlem,40.80311,-73.94858,Private room,100,3,6,2019-01-02,0.13,3,349 +8385284,"2 bdrm apt in Bushwick off L,M",13501341,Fiorella,Brooklyn,Bushwick,40.70054,-73.91185,Entire home/apt,82,4,8,2019-02-24,0.22,2,0 +8386220,Yankee Stadium Lavished Bedroom,2422554,Brais,Bronx,Highbridge,40.83746,-73.92268,Private room,59,4,51,2017-02-24,1.11,2,0 +8386889,Penthouse Floor Room in Luxury Apt,44193702,Dylan,Manhattan,East Village,40.72137,-73.97786,Private room,75,1,5,2015-10-29,0.11,1,0 +8387244,Bushwick for Thanksgiving/Christmas,26909087,Jordan,Brooklyn,Bedford-Stuyvesant,40.69067,-73.92643,Private room,65,1,2,2015-10-11,0.04,1,0 +8387338,Private Room Available in 2BedApt,44195923,Dawn,Staten Island,Tompkinsville,40.63378,-74.08726,Private room,50,1,0,,,1,0 +8388278,Bright Williamsburg Apartment,25370219,Sacha,Brooklyn,Williamsburg,40.71495,-73.96321,Private room,65,2,12,2017-01-31,0.26,1,0 +8388776,"Massive, Cozy, Modern 1BR in Heart of Chelsea!",2227376,Eunwoo,Manhattan,Chelsea,40.74501,-73.99725,Entire home/apt,109,3,10,2018-10-08,0.33,1,0 +8388864,Quiet Bedroom in Cobble Hill,36688169,Sloan,Brooklyn,Boerum Hill,40.68863,-73.98935,Private room,59,1,151,2019-06-29,3.37,1,325 +8389259,Great 1bdrm in lower UES near Park,23968798,Anthony,Manhattan,Upper East Side,40.76436,-73.96471,Entire home/apt,300,4,7,2016-09-17,0.16,1,188 +8389302,Elegant Sanctuary close to all,4168247,Lidia,Brooklyn,Fort Greene,40.69371,-73.97076,Entire home/apt,135,6,12,2019-01-25,0.32,1,188 +8389603,"Sunny, Open, East Harlem 1 bedroom",32588705,Abraham,Manhattan,East Harlem,40.79771,-73.93449,Entire home/apt,110,2,1,2016-01-01,0.02,1,0 +8390906,"Big living room, w/ 3 big bedrooms",10953390,Sam,Manhattan,East Village,40.72369,-73.98998,Entire home/apt,300,2,1,2015-09-21,0.02,1,0 +8391035,Private room in Washington Heights,2321776,Hugo,Manhattan,Washington Heights,40.83368,-73.94314,Private room,80,4,0,,,1,0 +8391096,Stylish 1 Bdr. Apt. on Upper East,5338040,Jackie,Manhattan,Upper East Side,40.77372,-73.94803,Private room,185,5,7,2016-10-28,0.15,1,341 +8392929,AFFORDABLE & COZY IN SUNSET PARK,1182180,"Isaac, Linda & Noelia",Brooklyn,Sunset Park,40.64985,-74.00207,Private room,35,6,26,2019-06-30,0.57,1,160 +8398120,one bedroom apt 1000sqf,17871237,Mandy,Brooklyn,Williamsburg,40.71599,-73.95514,Private room,250,5,0,,,1,0 +8398566,Room in 1-Br by Columbus Circle,43779028,Allan,Manhattan,Upper West Side,40.76974,-73.98743,Private room,90,2,2,2016-01-03,0.05,1,0 +8398955,LaGuardia Room with Private Entrance(2)!,31851704,Laura,Queens,East Elmhurst,40.75819,-73.87504,Private room,50,1,209,2019-06-24,4.53,2,1 +8400115,Brooklyn bohemian haven,43768534,AnnMarie,Brooklyn,Greenpoint,40.72403,-73.94306,Private room,60,7,11,2019-05-31,0.24,1,0 +8401484,Private Rm in Cozy Williamsburg Apt,1278978,Nelly,Brooklyn,Williamsburg,40.71602,-73.94645,Private room,70,3,1,2017-10-10,0.05,1,0 +8401620,NICE AND BRIGHT ROOM UPPER WEST!,44262118,Martin,Manhattan,Upper West Side,40.77915,-73.97794,Private room,130,2,3,2016-07-20,0.06,1,0 +8402207,BEDROOM PRIVATE COMFY NEAR 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.82939,-73.86514,Private room,28,2,98,2019-06-21,2.12,3,108 +8402882,Peaceful BR in Historic Brownstone,3687880,Veola,Brooklyn,Bedford-Stuyvesant,40.68293,-73.93437,Private room,35,14,0,,,1,0 +8403327,Sunny Apt in Williamsburg Brooklyn,15928518,Karen,Brooklyn,Williamsburg,40.7127,-73.94048,Entire home/apt,110,3,10,2019-01-01,0.22,1,0 +8404181,Crown Heights Great Single Bedroom,44273727,Wes,Brooklyn,Crown Heights,40.67416,-73.93854,Private room,70,1,3,2015-11-02,0.06,1,0 +8404499,Spacious and sunny 1BR w terrasse,6630320,Florie,Brooklyn,Williamsburg,40.71109,-73.95918,Entire home/apt,200,2,7,2017-07-06,0.15,1,0 +8405978,Eclectic bedroom in FiDi Brick Loft,15807888,Jared,Manhattan,Financial District,40.70963,-74.00759,Private room,90,2,71,2019-04-15,1.55,1,0 +8407092,Historic Ridgewood Brick Townhouse,9684993,Randy,Queens,Ridgewood,40.70928,-73.89795,Entire home/apt,139,5,3,2018-07-30,0.16,1,0 +8407577,Real New York Home - Times Square,44206893,Ana,Manhattan,Hell's Kitchen,40.7595,-73.98967,Entire home/apt,360,1,13,2016-01-17,0.28,1,188 +8407963,Gilded Age Bohemia,1938669,Amanda,Manhattan,Midtown,40.74268,-73.98401,Entire home/apt,185,4,15,2019-05-19,0.33,1,7 +8408695,15 MIN FROM MANHATTAN,10181589,Jodi,Queens,Sunnyside,40.74592,-73.92399,Entire home/apt,95,1,0,,,1,0 +8408853,Top-Floor Williamsburg Apt Bedroom,6112537,David,Brooklyn,Williamsburg,40.71116,-73.94014,Private room,100,1,2,2016-02-20,0.05,2,0 +8409178,Private large bedroom in the heart of NYC!!,25802929,Michelle,Manhattan,Midtown,40.76146,-73.96649,Private room,195,3,67,2019-06-27,1.64,1,265 +8409246,Charming East Village Garden Apt.,3266068,Alex,Manhattan,East Village,40.72625,-73.98173,Entire home/apt,235,3,4,2015-12-05,0.09,1,0 +8409459,Greenpoint Brooklyn Modern Charm II,43108922,Robbin,Brooklyn,Greenpoint,40.72321,-73.9433,Entire home/apt,150,3,107,2019-06-18,2.38,2,277 +8410347,"Haven In The Heights - Huge, Bright Bedroom!",44303500,Bruce & Suzanne,Manhattan,Washington Heights,40.8484,-73.93972,Private room,70,2,1,2019-01-02,0.16,2,0 +8410796,"Welcoming, Clean, Cheap on St Marks",26389845,Felipe,Manhattan,East Village,40.72696,-73.98406,Private room,95,2,2,2015-09-27,0.04,2,0 +8411164,New York - Theatre District- Luxury Building,19939430,Salvatore,Manhattan,Hell's Kitchen,40.76041,-73.99496,Entire home/apt,450,6,15,2019-06-30,0.44,1,364 +8411226,Cozy Master Bedroom Upper Manhattan,44308521,David,Manhattan,Harlem,40.82355,-73.94881,Private room,50,2,0,,,1,0 +8411390,Comfy Upper West Side haven,9247072,Jennifer,Manhattan,Upper West Side,40.79879,-73.96721,Private room,100,1,9,2018-05-21,0.19,1,0 +8412352,Apt on President St & Kingston Ave,44314131,Raphael,Brooklyn,Crown Heights,40.66852,-73.9425,Entire home/apt,160,1,1,2015-10-06,0.02,1,0 +8414314,Huge Space in Williamsburg BK,44322686,Matt,Brooklyn,Williamsburg,40.71193,-73.94266,Private room,65,1,9,2019-03-16,0.19,1,35 +8416015,Cozy apt 20 minutes to Manhattan,44329555,Enzo,Queens,Jackson Heights,40.75273,-73.87144,Entire home/apt,104,2,166,2019-06-22,3.63,1,195 +8416681,Massive Apartment in the LES! Amazing rooftop too!,6722310,Rob,Manhattan,Lower East Side,40.71915,-73.98546,Private room,60,2,12,2017-07-03,0.26,1,0 +8419475,Clean and quiet Bushwick Apartment,44344360,Jeremiah,Brooklyn,Bushwick,40.69882,-73.91771,Private room,60,7,0,,,1,0 +8420572,Cozy Room in East Williamsburg!,44347591,Kyle,Brooklyn,Bushwick,40.7034,-73.9296,Private room,50,2,0,,,1,0 +8420870,"Perfect, Private 1-Bdrm Union Squar",44350279,Jp,Manhattan,Gramercy,40.73572,-73.98735,Entire home/apt,190,2,134,2019-06-27,3.20,4,270 +8421771,~Spacious~Sunny~Stylized~Suite~,44343181,Monica,Brooklyn,Greenpoint,40.72522,-73.94563,Private room,60,6,0,,,1,0 +8422085,Cozy apartment in Brooklyn,9996343,Leticia,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9463,Private room,55,3,18,2017-05-31,0.39,1,0 +8423636,"Large Brooklyn Apt,Private Backyard",31230100,Elissa,Brooklyn,Crown Heights,40.67352,-73.95633,Entire home/apt,80,7,45,2019-06-29,1.06,3,161 +8423666,"""Bloom of Floral Park"" 1 BR Basement Suite",44361695,Mordeana,Queens,Bellerose,40.73351,-73.71299,Private room,65,2,39,2019-05-29,0.85,1,222 +8424350,Cozy 2BR apt in Midtown West/Chelsea/Hells Kitchen,41808609,Emma,Manhattan,Hell's Kitchen,40.75711,-73.99665,Entire home/apt,235,2,20,2018-01-02,0.43,1,0 +8425148,*Amazing Lower East Side Apartment*,21940002,Zlatko,Manhattan,Lower East Side,40.71978,-73.98424,Entire home/apt,205,2,6,2017-01-01,0.13,1,0 +8425657,Sun-filled Clinton Hill apartment.,3404110,Kristofer,Brooklyn,Clinton Hill,40.69561,-73.969,Entire home/apt,109,3,1,2015-09-21,0.02,1,0 +8426309,Private Bdrm in 2 BR Brooklyn Apt,14564141,Teddy,Brooklyn,Clinton Hill,40.68255,-73.96167,Private room,85,2,12,2018-10-14,0.26,1,0 +8426584,Sunny large apt facing huge park. 20min2Manhattan,5354888,Clifford,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96144,Private room,80,1,169,2019-05-27,4.11,1,233 +8426874,Private Holiday Loft in the East Village,17853061,Jonathan,Manhattan,East Village,40.73106,-73.98467,Entire home/apt,120,3,4,2019-01-01,0.09,1,0 +8427028,Room for 2 in Amazing duplex Loft,17473615,Bleik,Manhattan,Hell's Kitchen,40.75548,-73.99706,Private room,130,1,1,2015-10-03,0.02,1,0 +8427638,NYC CHIC!!! LARGE STUDIO APT on UWS,9036787,Katie,Manhattan,Upper West Side,40.80109,-73.97093,Entire home/apt,190,4,46,2019-05-12,1.02,1,207 +8427707,Studio Condo,44382810,Terrell,Manhattan,Midtown,40.75188,-73.97252,Entire home/apt,455,2,0,,,1,0 +8427772,The real deal 2 blox away from CP!,21737404,Miklos,Manhattan,Harlem,40.8022,-73.95737,Private room,99,4,2,2015-10-26,0.04,1,0 +8428777,Awesome 1Bdr Apt. in Wash Hts,1905482,Steven,Manhattan,Washington Heights,40.84747,-73.94279,Entire home/apt,125,30,0,,,1,0 +8431626,Lovely bedroom/private full bath in Brooklyn,44398705,Victoria,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92805,Private room,52,4,3,2019-05-06,0.35,2,157 +8431906,Lovely 2 bed/2 bath Bed Stuy oasis,44398705,Victoria,Brooklyn,Bedford-Stuyvesant,40.68942,-73.9287,Entire home/apt,110,4,5,2019-05-28,0.11,2,50 +8431998,Cozy Private Room in Ridgewood,2945143,Ahmed,Queens,Ridgewood,40.70588,-73.90821,Private room,75,2,0,,,1,0 +8435067,"Bright, Light & Sunny Room",18830662,Jack,Manhattan,Chinatown,40.71707,-73.99066,Private room,99,3,1,2015-10-12,0.02,2,0 +8438775,Private BR & Bath near Central Park,41042927,Gabi,Manhattan,Upper West Side,40.77697,-73.97698,Private room,137,1,163,2019-06-28,3.55,1,32 +8439030,One Room in Murray Hill / Midtown,44433249,Sarah,Manhattan,Murray Hill,40.7465,-73.97734,Private room,85,5,2,2015-10-10,0.04,1,0 +8439145,"Beautiful, Secure, Central NYC Apartment!",7654837,George,Manhattan,Midtown,40.75287,-73.97439,Entire home/apt,149,10,3,2019-01-01,0.13,1,14 +8439191,Sunny Williamsburg Apt with View,2761047,Katarina,Brooklyn,Williamsburg,40.71175,-73.96092,Entire home/apt,124,2,13,2016-05-01,0.28,1,0 +8439758,Modern 1BR w/ Gorgeous Balcony View,44436646,Jaqui,Manhattan,East Village,40.72529,-73.97756,Private room,125,2,23,2017-01-01,0.51,1,0 +8440352,Private bedroom in great LES spot,7137049,Susie,Manhattan,Lower East Side,40.71323,-73.9878,Private room,70,1,212,2019-06-21,4.64,1,41 +8441969,"Full Bedroom Avaliable, Astoria",1411399,Carlos,Queens,Astoria,40.76615,-73.91325,Private room,99,1,6,2019-06-17,0.13,5,323 +8442642,Private Bath/Master Bedroom Astoria,1411399,Carlos,Queens,Astoria,40.76799,-73.91234,Private room,109,1,2,2016-05-12,0.04,5,138 +8442997,"1,000 Square Foot Apt - in MANHATTAN!",18418581,Pooja,Manhattan,Washington Heights,40.85432,-73.93198,Entire home/apt,235,1,28,2019-03-10,0.64,3,364 +8444013,Cozy Wkd Getaway Spot in Prime BK,11625123,Jennifer,Brooklyn,Crown Heights,40.67501,-73.95873,Entire home/apt,95,2,20,2019-04-26,0.44,1,0 +8444115,2br Design in the heart of LES,15231059,Apollo,Manhattan,Lower East Side,40.71978,-73.98705,Entire home/apt,250,2,8,2016-07-23,0.17,4,297 +8444227,Private Room in Heart of Soho,44457589,Joel,Manhattan,SoHo,40.72607,-74.00166,Private room,95,1,152,2019-06-04,3.34,2,9 +8444619,NYC Room near Central Park East !!!,4821374,Millie,Manhattan,Upper East Side,40.77564,-73.9533,Private room,85,1,71,2019-06-20,1.55,2,186 +8444730,Greenwich Village Studio,44460139,Chloe,Manhattan,Greenwich Village,40.72815,-74.00084,Entire home/apt,190,4,4,2016-05-05,0.09,1,0 +8445883,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72831,-73.98481,Private room,125,1,2,2015-10-26,0.04,2,0 +8446914,"Custom design, Cozy Manhattan stay",36573037,Tracey,Manhattan,Inwood,40.87126,-73.91722,Entire home/apt,125,2,20,2018-12-25,0.46,2,164 +8450523,Mint 2 bedroom w rooftop terrace!,39921605,Rachel,Manhattan,Upper West Side,40.8037,-73.96803,Entire home/apt,374,1,31,2017-03-31,0.69,5,188 +8454886,"Super Cozy, Warm Eclectic Oasis",16954469,Michele,Brooklyn,Crown Heights,40.66999,-73.94735,Private room,160,2,2,2015-10-02,0.04,1,364 +8455561,Lorenna Gonzalez,17607789,Lorenna,Manhattan,East Harlem,40.79866,-73.94148,Private room,59,1,0,,,1,0 +8456825,Bushwick Oasis,44516268,Tom And Claudia,Brooklyn,Bushwick,40.70337,-73.93071,Entire home/apt,70,2,171,2019-06-22,3.74,1,183 +8458505,Rosie's Home away from HomeBrooklyn,44506171,Yvette And Ashley,Brooklyn,East Flatbush,40.63401,-73.93808,Entire home/apt,55,1,47,2019-06-23,1.03,1,348 +8458863,"Spacious Studio, Upper East Side",44086736,Darren,Manhattan,Upper East Side,40.78465,-73.94914,Entire home/apt,100,1,7,2016-12-26,0.20,1,0 +8458966,Bedroom In Midtown East,24559181,Aldi,Manhattan,Upper East Side,40.76301,-73.96734,Private room,95,1,60,2019-05-24,1.31,3,351 +8459183,Lower East side Ideal Location #7,3256433,Ira,Manhattan,Lower East Side,40.72116,-73.99124,Entire home/apt,250,30,8,2018-08-17,0.20,7,4 +8459687,Park Slope apt. w/ private yard,3626916,Alisa & Dante,Brooklyn,Park Slope,40.67307,-73.97235,Entire home/apt,95,1,1,2016-08-23,0.03,1,0 +8459744,Studio style Room with private bath,30791331,Tsepak,Queens,East Elmhurst,40.7568,-73.88894,Entire home/apt,89,2,9,2019-05-27,0.20,2,331 +8460304,Sleeps 4 people - Prime Madison Sq Park/Park Ave,44534342,Faith,Manhattan,Midtown,40.74568,-73.98324,Entire home/apt,285,7,8,2018-11-10,0.18,1,302 +8467862,Heart of Downtown Tribeca,35302724,Wei,Manhattan,Tribeca,40.71924,-74.01165,Private room,127,2,2,2015-11-02,0.04,1,0 +8467950,One bedroom apartment in NoLita,44593150,Alberto,Manhattan,Civic Center,40.7139,-74.00621,Entire home/apt,150,1,0,,,1,0 +8468180,Upper Westside 1 BR/1.5 Bath Apt,44593642,Charlie,Manhattan,Upper West Side,40.78385,-73.97466,Entire home/apt,225,30,1,2016-01-05,0.02,1,0 +8468662,Cozy Loft in the UWS Manhattan,19244346,Emanuele,Manhattan,Upper West Side,40.79893,-73.96769,Entire home/apt,150,4,1,2015-12-16,0.02,1,0 +8468835,Private room in Brooklyn,6518093,Mathilde,Brooklyn,Bedford-Stuyvesant,40.67968,-73.90764,Private room,50,1,2,2015-09-29,0.04,1,0 +8470281,Cozy room in the city,31469635,Ricky,Manhattan,Harlem,40.82497,-73.94595,Private room,60,1,1,2019-01-01,0.16,2,363 +8470974,$199 SPECIAL VERY QUIET WVILLGMTPKGCHLS 65”TV/BOSE,2742979,Lawrence,Manhattan,Chelsea,40.73983,-74.00102,Entire home/apt,275,7,6,2017-06-15,0.14,1,0 +8471063,"Spacious, light-filled room in NYC",14817413,Jessica,Manhattan,Kips Bay,40.74088,-73.98285,Shared room,65,1,8,2016-06-03,0.17,1,0 +8472069,Cute & Comfy Williamsburg Refuge,3826160,Josh & Chris,Brooklyn,Williamsburg,40.71032,-73.9517,Private room,80,1,215,2019-06-29,4.68,1,232 +8472812,2 bedroom apt 1 min walk to train,9295237,Noelle,Queens,Astoria,40.75763,-73.91389,Entire home/apt,130,5,2,2019-05-31,0.04,2,0 +8472997,"LIC 1 BR, City & River Views",3191699,Tori,Queens,Long Island City,40.74534,-73.95557,Entire home/apt,199,2,0,,,1,0 +8473532,"Beautiful, rustic room in artistic apt.",44623374,Jordan,Brooklyn,Crown Heights,40.67763,-73.95943,Private room,65,1,5,2016-06-20,0.11,1,0 +8473623,"Large, sunny Williamsburg room",5803786,Bailey,Brooklyn,Williamsburg,40.70727,-73.94025,Private room,75,2,1,2015-09-28,0.02,1,0 +8473811,NYC.ANGUS.5. 20.min to manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68251,-73.91944,Entire home/apt,200,1,52,2019-06-22,1.82,4,359 +8474260,Columbia University Apartment,40696448,Zhehui,Manhattan,Morningside Heights,40.80773,-73.95977,Private room,40,4,2,2016-03-07,0.05,1,0 +8474806,"Huge 1 BR Apt close to A,B,C,D &1 trains",44630169,Stephen,Manhattan,Harlem,40.82725,-73.9453,Entire home/apt,68,2,9,2017-06-12,0.29,1,0 +8474859,Beautiful 1 Bedroom + futon,44631190,Eli,Brooklyn,Columbia St,40.68053,-74.00387,Entire home/apt,130,3,15,2019-05-19,0.33,1,356 +8479799,CLASSIC GUEST ROOM - UWS Townhouse,44660079,Leslie,Manhattan,Upper West Side,40.7786,-73.98554,Private room,135,3,79,2019-07-05,2.19,2,20 +8480087,West Side Studio Apartment,44660079,Leslie,Manhattan,Upper West Side,40.77875,-73.9875,Entire home/apt,165,5,25,2019-05-24,0.54,2,70 +8481074,Last minute! East Village Apartment,44666806,Alex,Manhattan,East Village,40.72767,-73.98452,Entire home/apt,250,1,2,2015-10-01,0.04,1,0 +8482165,Charming living room in Astoria,32833549,Siju,Queens,Astoria,40.76541,-73.92009,Shared room,52,1,1,2015-09-27,0.02,1,363 +8482952,"Warm, Comfortable West Village Apt with Courtyard",44675456,Mark,Manhattan,West Village,40.73798,-73.99963,Entire home/apt,170,2,1,2016-12-29,0.03,1,0 +8483688,Sunny private room in Brooklyn,9246269,Nick,Brooklyn,Bedford-Stuyvesant,40.69498,-73.94237,Private room,42,5,0,,,1,0 +8484152,Cozy room in Brooklyn loft,26443890,Matthieu,Brooklyn,Williamsburg,40.70496,-73.93689,Private room,65,3,2,2015-10-15,0.04,1,0 +8485057,Affordable Artistic Apartment,10364617,Nikolina,Brooklyn,Sunset Park,40.64685,-74.01097,Entire home/apt,80,3,34,2019-06-16,0.75,1,0 +8485529,Central Park/UES,30376992,Chloé,Manhattan,Upper East Side,40.77964,-73.95474,Entire home/apt,130,2,5,2018-06-16,0.11,1,0 +8485571,Furnished Apt. in Upper East Side,5805675,Avik,Manhattan,Upper East Side,40.76693,-73.95911,Entire home/apt,140,7,2,2016-01-02,0.05,1,0 +8485671,Gramercy Park Studio by Manhattan,29821368,Matthew,Manhattan,Gramercy,40.73809,-73.98215,Entire home/apt,200,2,2,2015-10-17,0.04,1,0 +8486828,Architect's Room in Large apt w/ rooftop deck,44697034,Kevin,Brooklyn,Bedford-Stuyvesant,40.69504,-73.94807,Private room,55,1,14,2017-08-31,0.30,1,0 +8486946,Private Bright Garden Room|Bushwick,39769788,Nico,Brooklyn,Bushwick,40.7012,-73.92682,Private room,50,3,0,,,1,0 +8488615,Spacious 1 BD w/washer dryer in UES,3969780,Zaka,Manhattan,Upper East Side,40.77843,-73.95191,Entire home/apt,175,2,1,2015-10-27,0.02,1,0 +8496270,Sunny Loft Studio on 46th and 10th,44742061,Megan,Manhattan,Hell's Kitchen,40.76326,-73.99142,Entire home/apt,500,1,0,,,1,0 +8496622,Studio in heart of NYC,29408645,Tara,Manhattan,Chinatown,40.71879,-73.99586,Entire home/apt,99,2,4,2019-07-01,0.09,1,18 +8498323,Great UES location for Pope visit,44751629,Jeffrey,Manhattan,Upper East Side,40.77532,-73.95132,Entire home/apt,650,2,0,,,1,0 +8498885,2 Full Size Beds Lower East Side,32583045,Charles,Manhattan,Lower East Side,40.71297,-73.98561,Entire home/apt,200,1,4,2015-12-28,0.09,1,0 +8498999,Historically located 1 bdroom,44754726,Danielle,Manhattan,Harlem,40.81646,-73.9369,Entire home/apt,180,1,0,,,1,0 +8499719,"Huge Room, Safe Neighborhood,Near Manhattan",3501090,Sebastian & Andrea,Queens,Astoria,40.76404,-73.91174,Private room,75,4,86,2019-06-18,1.88,1,324 +8501589,ENTIRE APARTMENT in L.E.S. (-30% exceptional deal),28783846,Fleur,Manhattan,Lower East Side,40.71435,-73.98924,Entire home/apt,90,6,7,2018-07-28,0.23,1,0 +8501697,Airy private room near E/F/M/R/7 and LGA,938086,Benjamin,Queens,Elmhurst,40.74537,-73.88337,Private room,51,1,12,2018-01-21,0.26,1,0 +8501823,Spacious Master Bedroom in Bushwick,17530762,Ian,Brooklyn,Bushwick,40.70374,-73.93016,Private room,62,5,1,2015-11-15,0.02,1,0 +8502814,Comfortable Junior One Bedroom,8636732,Kay,Brooklyn,Flatbush,40.63682,-73.9676,Entire home/apt,70,3,0,,,2,0 +8503064,Minimalistic en suite in Bushwick,17028800,Gina,Brooklyn,Bushwick,40.69856,-73.93087,Private room,90,1,1,2015-10-02,0.02,1,0 +8503280,1 Bedroom near Williamsburg,25913948,Natalie,Brooklyn,Bushwick,40.70145,-73.93798,Private room,45,3,1,2015-10-29,0.02,1,0 +8504231,*Clean & Bright Master Room - UWS*,44779572,Justin,Manhattan,Upper West Side,40.80096,-73.96671,Private room,109,1,7,2016-01-02,0.15,1,0 +8504263,Room for Female in NoHo/EastVillage,38361857,Betsy,Manhattan,East Village,40.72612,-73.99043,Private room,100,3,98,2019-04-20,2.15,1,0 +8504666,Brownstone DUPLEX - Near Subway,44782700,Danielle,Brooklyn,Bedford-Stuyvesant,40.68426,-73.91939,Entire home/apt,200,3,63,2019-06-13,1.39,1,354 +8504873,Private Bedroom in Chic East Village Apartment,20338412,Dallas,Manhattan,East Village,40.7298,-73.9791,Private room,149,3,86,2019-06-19,1.88,1,62 +8505781,Immaculate Bedroom,43220439,Annesha,Queens,Jamaica,40.67068,-73.76711,Private room,55,5,29,2019-07-07,0.64,1,314 +8505892,"Bright, Spacious, Art Filled Apt",11241345,Madison,Manhattan,Lower East Side,40.72027,-73.98565,Entire home/apt,275,1,0,,,1,0 +8506167,Brooklyn Basement Apartment,44791079,Mike,Brooklyn,Kensington,40.64291,-73.97928,Entire home/apt,70,1,1,2015-11-02,0.02,1,0 +8506745,Comfy Bed in Clinton Hill Loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.6924,-73.96042,Shared room,29,8,41,2019-02-26,0.89,4,53 +8506757,Brownstone in Brooklyn Heights,3599579,Andrew,Brooklyn,Brooklyn Heights,40.69472,-73.99856,Entire home/apt,195,5,94,2019-06-04,2.04,1,26 +8506867,"Sunny, spacious UWS abode with view",258023,Johann,Manhattan,Upper West Side,40.77799,-73.98205,Entire home/apt,220,1,2,2016-03-10,0.05,1,0 +8507219,"NYC Room, NO Extra or Hidden Fees",20985328,​ Valéria,Queens,Astoria,40.76152,-73.92254,Private room,80,5,30,2018-11-05,0.66,2,249 +8507643,Cozy One BR with Ideal Location,5557052,Saket,Queens,Astoria,40.76436,-73.92628,Private room,110,1,5,2017-01-01,0.14,1,0 +8507768,"Charming Bedroom, Prime Manhattan Near Museum Mile",436365,Jessica M.,Manhattan,Upper East Side,40.7696,-73.95275,Private room,70,3,31,2019-05-17,0.68,3,345 +8511404,"Big bed, cosy room, groovy LES apt!",21180293,Illtyd,Manhattan,Chinatown,40.71342,-73.99045,Private room,90,2,47,2019-06-24,1.04,1,28 +8513839,Huge Gorgeous1 Bed Apt Williamsburg,2876700,Anais,Brooklyn,Williamsburg,40.71369,-73.95523,Entire home/apt,130,10,2,2017-07-25,0.04,1,0 +8515213,Studio 250 New York City,44837740,David,Manhattan,Theater District,40.75601,-73.98909,Entire home/apt,2000,1,3,2017-11-06,0.07,1,0 +8516438,Charming East Village Studio,32768581,Veronica,Manhattan,East Village,40.72948,-73.98856,Entire home/apt,149,5,107,2019-06-13,2.84,1,12 +8518051,Cozy Living Environment,44850669,Taft,Bronx,Clason Point,40.81773,-73.86164,Entire home/apt,100,2,58,2019-07-03,1.26,1,324 +8518280,Convenient 1Bdr with Outdoor Space (sleeps 4),4264360,Matt,Brooklyn,Williamsburg,40.71263,-73.9591,Entire home/apt,100,2,6,2017-01-29,0.13,1,0 +8518878,Cute and roomy Bushwick apartment!,4277248,Dorothy,Brooklyn,Bushwick,40.69999,-73.93863,Entire home/apt,125,2,1,2015-11-05,0.02,1,0 +8519400,2 Bedroom Near Meatpacking,44857362,Bao,Manhattan,Chelsea,40.74041,-74.00141,Entire home/apt,200,1,0,,,1,0 +8520094,Quaint 1 Bedroom in Happenin' E.V,44862166,Ed,Manhattan,East Village,40.72689,-73.98676,Entire home/apt,199,1,205,2019-07-06,4.50,1,349 +8520667,Room in 4 Bedroom Brooklyn Apt,9864136,Anthony,Brooklyn,Bushwick,40.68623,-73.91374,Private room,50,1,2,2016-11-01,0.06,26,365 +8520836,HUGE 3Bedroom Duplex in Meatpacking,44866282,Michelle,Manhattan,Chelsea,40.74026,-74.00091,Entire home/apt,300,1,2,2015-09-29,0.04,1,0 +8521188,1 Bed Room BEST LOCATION EPIC VIEWS,684398,Deepak,Manhattan,Hell's Kitchen,40.75744,-73.99269,Entire home/apt,285,4,2,2016-10-09,0.04,1,0 +8521692,Location! Large 1 bedroom oasis w elevator,3321346,Jade,Manhattan,East Village,40.72903,-73.98938,Entire home/apt,330,3,12,2018-11-22,0.32,1,58 +8522395,Harmony House 1 on Madison Street,21014758,Garnet,Brooklyn,Bedford-Stuyvesant,40.68793,-73.92179,Private room,39,2,57,2019-06-24,1.25,3,117 +8522756,In the heart of the East Village,44875359,Sandra,Manhattan,East Village,40.72184,-73.98165,Shared room,60,10,0,,,2,0 +8522933,Charming Cottage in Huge Victorian,44018877,Yves,Brooklyn,Flatbush,40.6394,-73.95136,Entire home/apt,77,2,136,2019-07-01,3.00,2,265 +8523688,1BR Railroad Apt in Heart of Wburg,12649916,Mari,Brooklyn,Williamsburg,40.71383,-73.95273,Entire home/apt,115,1,2,2015-10-22,0.04,1,0 +8523742,Uptown Studio With Character,44881523,Russell,Manhattan,Harlem,40.8294,-73.94695,Entire home/apt,99,3,13,2017-08-07,0.28,1,0 +8523910,Tompkins Square/East Village Apt.,44882587,Rachel,Manhattan,East Village,40.72613,-73.98062,Entire home/apt,250,1,1,2015-11-29,0.02,1,0 +8525172,Shared Studio (NO PRIVACY) On The Upper East Side,44887928,Brianna,Manhattan,Upper East Side,40.7851,-73.95254,Shared room,62,1,104,2019-06-23,2.26,1,333 +8525292,Williamsburg home w/Private Garden,44225290,Jacqueline,Brooklyn,Williamsburg,40.71323,-73.94866,Entire home/apt,105,3,26,2017-04-20,0.58,1,0 +8525477,Room in private Victorian house,22420999,Herman,Queens,Richmond Hill,40.69474,-73.83038,Private room,55,1,7,2019-05-18,0.15,5,344 +8530517,"Sundrenched, Beautiful New Reno",16437254,Benjamin,Brooklyn,Sunset Park,40.66406,-73.9949,Entire home/apt,172,30,2,2019-06-13,0.46,21,362 +8531441,"Monthly only, Cozy, Quaint, Central",11234583,Sarah,Manhattan,Midtown,40.75547,-73.96467,Entire home/apt,100,1,0,,,1,0 +8532128,Beautiful UES 1 Bedroom,44923714,Carolyn,Manhattan,Upper East Side,40.7818,-73.95122,Entire home/apt,120,1,0,,,1,0 +8532358,Smile APT in BK,44924968,Stephan,Brooklyn,Crown Heights,40.67677,-73.94804,Private room,60,2,42,2019-01-01,0.94,1,354 +8532763,D Rm 12 Sgl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68347,-73.97971,Private room,72,1,201,2019-06-26,4.45,4,5 +8532876,中央公园旁的现代公寓,34021565,Yujun,Manhattan,Upper West Side,40.79401,-73.96432,Private room,80,1,0,,,1,0 +8533225,Huge Duplex only minutes from NYC,1420715,Omar And Kareema,Brooklyn,Bushwick,40.68821,-73.9187,Entire home/apt,229,3,159,2019-06-16,3.54,3,231 +8533457,"Close to everything, transportation",44924379,Roland,Queens,Jamaica,40.69872,-73.78614,Private room,70,1,68,2019-06-13,1.50,3,349 +8534267,STARTUP SPACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64487,-73.94919,Shared room,40,30,3,2017-01-01,0.07,7,360 +8534893,East Village Gem,406843,Trevor,Manhattan,East Village,40.72904,-73.97946,Private room,99,2,50,2019-06-20,1.10,2,131 +8535125,Stay in Astoria's heart,44932338,Maria,Queens,Astoria,40.7657,-73.92469,Private room,100,2,15,2016-10-01,0.33,1,318 +8535332,Modern Room in Trendy LES,32289994,Michael,Manhattan,Lower East Side,40.72195,-73.98797,Private room,78,4,5,2017-09-07,0.11,1,0 +8535434,Large Soho Studio Loft,19100918,James,Manhattan,SoHo,40.72792,-74.00323,Entire home/apt,125,1,88,2019-06-30,1.91,1,320 +8536270,"Walk to UN, Macy's & Empire State B",44941648,Mike,Manhattan,Murray Hill,40.74648,-73.97726,Entire home/apt,190,3,130,2019-07-02,2.83,1,249 +8536679,East Village Apt for New Years,44875359,Sandra,Manhattan,East Village,40.72367,-73.98131,Shared room,100,15,0,,,2,0 +8537400,Times Square Area Studio,43523900,Shaun,Manhattan,Hell's Kitchen,40.76366,-73.99438,Entire home/apt,135,2,2,2015-10-20,0.04,1,0 +8538077,Cozy bright apt with a touch of rustic charm -,44950182,Dawn,Brooklyn,Cobble Hill,40.68665,-73.99151,Entire home/apt,250,2,23,2019-06-24,1.04,1,0 +8538668,"Spacious, clean studio in Kips Bay",6193870,Erin,Manhattan,Murray Hill,40.74469,-73.97443,Entire home/apt,125,4,0,,,1,0 +8539830,Gorgeous renovated apt w garden,1841463,Baptiste,Brooklyn,Greenpoint,40.72361,-73.94123,Entire home/apt,228,1,0,,,1,0 +8540941,Sunny & Quiet Room in Woodside,6653707,David,Queens,Sunnyside,40.74854,-73.91338,Private room,37,1,0,,,1,0 +8541831,Luxury Apt in Chelsea,44967011,Jose,Manhattan,Chelsea,40.75215,-74.00426,Entire home/apt,116,120,0,,,1,0 +8541991,Comfortable Private Apartment in Heart of Flatbush,27615247,Judy,Brooklyn,Midwood,40.62419,-73.96287,Entire home/apt,99,5,67,2019-06-17,1.83,3,27 +8542461,JFK Airport Spacious and gorgeous Room,14046692,Pedro J,Queens,Howard Beach,40.65918,-73.83038,Private room,50,1,5,2017-10-20,0.24,2,0 +8547335,BedStuy's Chillest,44992001,SidewalksofRIO,Brooklyn,Bedford-Stuyvesant,40.69562,-73.94734,Private room,54,30,9,2016-10-25,0.20,1,0 +8547630,Brand new Building. Great space.,44996314,Chris,Brooklyn,Williamsburg,40.71179,-73.96092,Private room,70,3,26,2018-12-28,0.57,1,0 +8547691,Amazing view from luxury building near Times Sq,44996501,Dave,Manhattan,Hell's Kitchen,40.7633,-73.98591,Private room,135,2,58,2019-05-05,2.16,1,42 +8548971,Reno'ed 2bed/2bath walk-up~East Village~Pristine!,23296023,Nick,Manhattan,East Village,40.72828,-73.98602,Entire home/apt,425,2,95,2019-06-22,2.17,1,0 +8549497,My GREENPOINT apt just for you!,45003774,Fernando,Brooklyn,Greenpoint,40.73248,-73.95237,Entire home/apt,122,5,3,2016-08-24,0.07,1,189 +8550041,NYC Studio outside Columbus Circle,22910743,Noah,Manhattan,Upper West Side,40.77205,-73.98924,Entire home/apt,141,6,2,2015-12-13,0.04,1,0 +8551866,The Epic: Right by MSG,45016174,Jared,Manhattan,Chelsea,40.74789,-73.98953,Entire home/apt,800,1,0,,,1,0 +8552070,Sunny Greenpoint Room,3656083,Juan,Brooklyn,Greenpoint,40.73464,-73.95413,Private room,70,4,17,2019-05-20,0.37,2,159 +8553197,Prospect-Lefferts near Prospectpark,1603471,Arthur,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95287,Private room,90,1,0,,,1,0 +8553287,Cozy 2 Bedroom on famous St Marks,45023742,Anne,Manhattan,East Village,40.72623,-73.98452,Entire home/apt,150,1,2,2016-01-07,0.05,1,0 +8554425,14th St 1BR,45029559,Alex,Manhattan,Chelsea,40.74068,-74.00279,Entire home/apt,250,1,1,2015-09-30,0.02,1,0 +8555250,"Nice small room for 1 person, near Times Square!",45033175,Eugene,Manhattan,Theater District,40.75731,-73.98435,Private room,115,4,122,2019-06-16,2.71,3,29 +8555411,CLEAN/QUIET APT IN UPPER EAST SIDE!,45033715,Mina,Manhattan,Upper East Side,40.7796,-73.94806,Entire home/apt,130,2,19,2016-09-24,0.42,1,0 +8555872,C Rm 11 Dbl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68498,-73.97856,Private room,74,1,241,2019-06-24,5.42,4,4 +8558627,Tulsi's Private Cozy Studio,45045974,Shivaul,Brooklyn,Cypress Hills,40.68173,-73.87314,Private room,48,2,58,2019-04-15,1.34,1,248 +8563025,Cozy Apartment Near Central Park,13313020,Carmen,Manhattan,Hell's Kitchen,40.76389,-73.99072,Shared room,85,1,8,2016-01-02,0.17,1,0 +8563124,Modern Apartment in Charming Nolita,25170062,Ayesha,Manhattan,Nolita,40.72271,-73.99545,Entire home/apt,180,3,2,2016-07-01,0.04,1,0 +8564804,Luxury Studio Apartment with private outdoor space,24632224,Kendra,Brooklyn,Crown Heights,40.67902,-73.96101,Entire home/apt,97,5,2,2016-10-31,0.04,1,0 +8566656,Harlem Cozy One Bedroom,6178560,Alan,Manhattan,Harlem,40.81951,-73.93715,Entire home/apt,131,1,0,,,1,0 +8568094,CONDO big space lots of mirrors,45093051,Vincent,Manhattan,Harlem,40.80255,-73.95347,Private room,100,1,36,2019-06-09,2.52,2,365 +8568363,Spacious 1 Bedroom Available,45094827,Rivkie,Brooklyn,Sheepshead Bay,40.60676,-73.96012,Entire home/apt,100,1,0,,,1,0 +8569534,Cozy 3 BD in the East Village,45100854,Will & Tash,Manhattan,East Village,40.72249,-73.98042,Private room,105,5,74,2018-10-04,1.61,2,0 +8569922,Beautiful Bright Williamsburg Home,3062365,Claudia,Brooklyn,Williamsburg,40.71894,-73.95713,Entire home/apt,100,6,3,2016-01-03,0.07,1,0 +8571594,3 Bdrm Family Friendly Suite,45112353,Sherry & Ivan,Brooklyn,Bedford-Stuyvesant,40.68528,-73.92296,Entire home/apt,145,4,59,2019-05-21,1.37,1,242 +8576773,"Modern, Sunny Apt in West Village",6926778,Maurice,Manhattan,West Village,40.73932,-74.00382,Entire home/apt,289,3,10,2018-08-31,0.22,1,88 +8577949,Large Victorian home in Brooklyn,11623096,Pietta,Brooklyn,Flatbush,40.64697,-73.96465,Entire home/apt,800,3,1,2015-12-21,0.02,1,0 +8582762,1 private bedroom in 3 bedroom apt,45082108,Kristen,Brooklyn,Greenpoint,40.72564,-73.94885,Private room,90,1,0,,,1,0 +8583175,Big Bedroom in Manhattan with an Artist,28272799,Este,Manhattan,Harlem,40.82855,-73.94033,Private room,29,3,27,2018-12-19,0.59,1,0 +8588016,"Big studio in Brooklyn, suitable for 2",45197192,Kathryn,Brooklyn,Prospect-Lefferts Gardens,40.65869,-73.95652,Entire home/apt,70,2,7,2016-07-25,0.15,1,0 +8588357,Spacious Williamsburg with backyard,2636827,Erin,Brooklyn,Williamsburg,40.71795,-73.94273,Private room,80,3,6,2017-01-02,0.16,2,0 +8588390,Sunny private room and bath room.,10312377,Harvey,Manhattan,Harlem,40.80458,-73.94888,Private room,120,3,0,,,1,0 +8588621,Room in beautiful Brownstone Apt,25889382,Erin,Brooklyn,Crown Heights,40.67649,-73.94657,Private room,60,2,79,2019-05-30,1.75,1,268 +8589299,Temporary Stay for 2 Weeks,45203510,Francis,Manhattan,Tribeca,40.72075,-74.00982,Private room,80,1,0,,,1,0 +8589444,Large Sunny Williamsburg Apt Near L Train #1,45204053,Curtis,Brooklyn,Williamsburg,40.71681,-73.9408,Private room,70,5,22,2019-06-01,0.48,2,359 +8589668,"Gorgeous, sun-filled LES 1 bedoom",32228,Brooke,Manhattan,Chinatown,40.7148,-73.99248,Entire home/apt,175,5,16,2019-05-03,0.35,1,0 +8589729,Magnolia House Saint George,45201692,Danforth,Staten Island,St. George,40.64779,-74.0846,Entire home/apt,144,1,105,2019-06-30,2.30,1,258 +8590198,Room in Bright Brooklyn Apt.,32792372,Paul,Brooklyn,Crown Heights,40.66872,-73.95362,Private room,40,2,18,2017-06-30,0.40,1,0 +8590275,Studio midtown west,45208389,Maria Luna,Manhattan,Hell's Kitchen,40.75589,-73.99729,Entire home/apt,340,1,0,,,1,0 +8590777,BEAUTIFUL&BRIGHT 1 bd (E. Village),6346333,Zac,Manhattan,East Village,40.72917,-73.98517,Private room,180,1,27,2017-02-22,0.59,2,0 +8593656,SMALL AND COZY PARISIAN STYLE APT IN EAST HARLEM,45226022,Caroline,Manhattan,East Harlem,40.79802,-73.94003,Private room,75,4,162,2019-06-23,3.55,1,60 +8593798,"Rustic, Warm Decor in Historic Crown Heights",45226868,Jovanna,Brooklyn,Crown Heights,40.67455,-73.93968,Entire home/apt,80,4,56,2019-05-25,1.23,1,343 +8594833,Spacious and Sunny Duplex with Deck,9737872,Michal And John,Brooklyn,Red Hook,40.67521,-74.01103,Entire home/apt,352,3,7,2017-11-26,0.16,1,0 +8595036,Cozy room in the heart of Astoria,45232769,Nadir,Queens,Astoria,40.76685,-73.91762,Private room,69,2,62,2019-06-24,1.37,3,67 +8595149,"Prime location, Renovated,Inspiring",45231777,Elena,Manhattan,Upper East Side,40.76517,-73.96665,Entire home/apt,150,2,134,2019-06-28,2.95,1,36 +8595191,Greenwich Village Hotspot,19564640,Dave,Manhattan,Greenwich Village,40.73008,-74.0005,Entire home/apt,500,1,0,,,1,0 +8595346,Elegant Brooklyn Heights 2 BR Apt,642004,John,Brooklyn,Brooklyn Heights,40.69162,-73.99252,Entire home/apt,250,30,6,2016-07-31,0.14,1,0 +8595349,BEAUTIFUL&BRIGHT 2bd/2ba(E Village),6346333,Zac,Manhattan,East Village,40.72756,-73.98588,Entire home/apt,280,4,2,2016-05-28,0.05,2,0 +8595394,Sunny Room in Renovated Brooklyn Townhouse,6424258,Alihan,Brooklyn,Clinton Hill,40.69589,-73.96261,Private room,55,3,16,2019-05-12,0.37,1,0 +8597141,"Private Room, 15min from MANHATTAN",43908809,M&L,Queens,Woodside,40.74921,-73.9037,Private room,50,1,3,2016-06-08,0.07,3,65 +8597265,"Cozy 1 BR on Bedford Avenue, Wburg",43298844,Christina,Brooklyn,Williamsburg,40.71764,-73.95689,Private room,49,1,1,2016-01-03,0.02,1,0 +8603083,Park Slope Light and Location,21734605,Jenn,Brooklyn,Park Slope,40.67786,-73.97412,Private room,135,4,0,,,2,0 +8605739,Bedroom in artist apartment,3210447,Caitlin,Brooklyn,Bushwick,40.69784,-73.9284,Private room,45,4,2,2016-11-01,0.05,1,0 +8608243,Boerum Hill Central Downtwn BK Apt!,28781526,Devon,Brooklyn,Downtown Brooklyn,40.68879,-73.98127,Entire home/apt,150,1,68,2019-04-29,1.49,1,74 +8608841,3BR Private Williamsburg Apartment,17258663,Christopher,Brooklyn,Williamsburg,40.71006,-73.95726,Entire home/apt,120,3,1,2016-05-24,0.03,1,0 +8609130,Great Nolita Apartment!,2520559,Victoria,Manhattan,SoHo,40.72214,-73.99793,Entire home/apt,150,2,89,2019-06-02,1.94,1,55 +8609779,Spacious Brooklyn Home Close to NYC,4586854,Ajna,Brooklyn,Bedford-Stuyvesant,40.68552,-73.95328,Entire home/apt,120,30,143,2019-04-16,3.17,1,221 +8610093,Spacious One bedroom apartment,45295976,Nicholas,Manhattan,Morningside Heights,40.81281,-73.95882,Entire home/apt,80,14,3,2017-01-05,0.07,1,0 +8611817,Central Park North Apt,45303998,Sheying,Manhattan,Harlem,40.80171,-73.95303,Private room,60,5,78,2019-06-17,2.32,1,30 +8612715,"NYC-Room,NoHiddenFees+FreeBreakfast",20985328,​ Valéria,Queens,Astoria,40.76258,-73.92141,Private room,70,3,1,2015-10-12,0.02,2,36 +8613175,Time SQ Dream Suite in Midtown w/ Projector,27018630,Richard,Manhattan,Hell's Kitchen,40.76069,-73.99068,Entire home/apt,239,2,163,2019-07-05,4.18,1,118 +8614125,Cozy One Bedroom -Beautiful Terrace,45315085,Anthony,Manhattan,Upper West Side,40.77866,-73.98065,Entire home/apt,275,1,0,,,1,0 +8614204,"Top (2nd) Floor Limestone +Ideal for Large Groups",1367316,Deb,Brooklyn,Prospect-Lefferts Gardens,40.66301,-73.95487,Entire home/apt,89,2,58,2019-05-20,1.50,1,279 +8614790,Prime Park Slope apartment,45318624,Max,Brooklyn,Park Slope,40.67858,-73.97902,Entire home/apt,300,1,0,,,1,0 +8614862,Sunny Bedroom with a huge window,6272317,Mariana,Manhattan,Washington Heights,40.84957,-73.93959,Private room,50,3,6,2018-02-19,0.13,1,0 +8615012,Private Tent - Shared Room (Bed-2),44620317,Claudia,Queens,Corona,40.73977,-73.85777,Shared room,37,1,34,2018-09-21,0.76,4,362 +8615062,WEST VILLAGE CHARM - BEST LOCATION!,45319781,Jenny,Manhattan,West Village,40.73464,-74.00084,Entire home/apt,239,1,272,2019-07-07,5.98,1,305 +8615333,Amazing Duplex Loft in Williamsburg,14035150,Stephanie,Brooklyn,Williamsburg,40.71186,-73.95098,Entire home/apt,190,4,0,,,1,0 +8615681,Charming Artistic Loft with Terrace,3699016,Veronika,Brooklyn,Bedford-Stuyvesant,40.67912,-73.9506,Entire home/apt,150,4,12,2017-09-27,0.27,2,0 +8616102,Cozy Upper East Side Apartment,13487080,Mary,Manhattan,Upper East Side,40.77065,-73.95205,Private room,150,1,1,2015-10-11,0.02,1,0 +8616888,THE LINCOLN DUPLEX - 5 BEDROOMS,9209820,Althea,Brooklyn,Crown Heights,40.67017,-73.94852,Entire home/apt,360,3,12,2018-10-15,0.37,3,261 +8620134,CHARM & LOCATION! Private Ensuite Bathroom in UES!,17428203,Christine,Manhattan,Upper East Side,40.77127,-73.95175,Private room,115,7,90,2019-06-28,1.97,2,23 +8621113,Charming Mini Loft/ Lower East Side,4308094,Laure,Manhattan,Lower East Side,40.71848,-73.99091,Entire home/apt,150,1,2,2016-04-13,0.04,1,0 +8621133,✪ Friends & Family Downtown ✪ 2BR / 3 Bed ✪ Best !,41420696,Camila,Manhattan,Lower East Side,40.72135,-73.98915,Entire home/apt,207,4,84,2019-06-23,2.16,1,88 +8622301,Astoria Full Basement Apartment,45354224,'Cil,Queens,Astoria,40.76914,-73.92118,Private room,120,2,240,2019-07-01,5.22,1,298 +8622987,Huge luxury 1 bedroom apt in Fidi,4228414,Lucy,Manhattan,Financial District,40.7083,-74.00415,Entire home/apt,160,7,1,2016-09-03,0.03,1,0 +8623370,Private luxury apartment,45359132,Patricia,Queens,Queens Village,40.72001,-73.75402,Entire home/apt,85,2,57,2019-07-01,1.26,1,317 +8623922,Red Hook Brooklyn Apartment,11796122,Candace,Brooklyn,Red Hook,40.67916,-74.00467,Entire home/apt,100,1,2,2015-10-05,0.04,1,0 +8624104,Large and Sunny Private Room near Prospect Park,45293333,Melody,Brooklyn,Flatbush,40.65336,-73.95305,Private room,45,2,3,2019-05-01,0.69,1,249 +8627561,Carroll Gardens Studio,17286936,Stephanie,Brooklyn,Carroll Gardens,40.6787,-73.99857,Entire home/apt,160,5,79,2019-07-06,1.72,1,271 +8627973,"2BR2BA apartment, PRIVATE bathroom & AC inside",19303369,Hiroki,Queens,Elmhurst,40.74073,-73.87591,Private room,40,29,1,2019-05-31,0.77,37,30 +8628425,LRG furnished Loft Space,4481005,Karen,Brooklyn,Park Slope,40.67397,-73.98237,Private room,49,2,43,2019-04-27,0.94,2,283 +8628970,"1BR available in Bedstuy, Brooklyn!",45383901,Eric,Brooklyn,Bedford-Stuyvesant,40.69333,-73.94184,Private room,40,1,0,,,1,0 +8629187,ARTSY UNIQUE GIANT TWO FLOOR APARTMENT,200782,Keith,Manhattan,Kips Bay,40.74262,-73.98063,Entire home/apt,495,15,4,2017-05-20,0.09,1,0 +8630185,Bedford Ave N. WBurg Room in 2BR-2,28709982,Sidiq,Brooklyn,Greenpoint,40.72014,-73.95496,Private room,89,3,19,2018-05-30,0.42,3,76 +8630560,Romantic 2-Bedroom UWS Charmer!,33200173,Paige,Manhattan,Upper West Side,40.78709,-73.97755,Entire home/apt,220,3,7,2018-11-25,0.16,2,4 +8630662,Most desired EastVillage retreat,45391169,Tania,Manhattan,East Village,40.72781,-73.98398,Private room,99,2,78,2019-06-20,1.71,1,363 +8630853,East Village Apartment,27504587,Megan,Manhattan,East Village,40.72979,-73.98905,Entire home/apt,160,1,0,,,1,0 +8631355,One Bedroom Available in 2BR APT,19480603,Michele,Brooklyn,Crown Heights,40.67589,-73.95196,Private room,80,5,2,2016-07-31,0.04,1,0 +8632393,Brooklyn's Coolest One Bedroom,4920604,Eric,Brooklyn,Williamsburg,40.71872,-73.9603,Private room,78,2,23,2016-10-31,0.51,1,0 +8634024,East Williamsburg Bedroom,45399701,Dorthy,Brooklyn,Williamsburg,40.70828,-73.94572,Private room,110,1,1,2015-10-12,0.02,1,0 +8634515,"★ Hidden Gem. Spacious. Restaurants, Cafés Galore.",24188973,Lei,Manhattan,Harlem,40.80449,-73.94743,Entire home/apt,130,31,31,2019-05-27,0.69,1,66 +8635363,Studio in Amazing UES Location,20008462,Sara,Manhattan,Upper East Side,40.76643,-73.95809,Entire home/apt,150,1,2,2016-03-18,0.05,1,0 +8635762,"Studio Close To LIJ, JFK.Private Entry,欢迎中国朋友来住",45404928,Joan,Queens,Queens Village,40.71412,-73.73008,Entire home/apt,59,1,113,2019-07-07,2.79,1,346 +8635964,Cozy Williamsburg Apartment,2568318,Katie,Brooklyn,Williamsburg,40.7172,-73.95983,Private room,80,9,1,2015-10-14,0.02,1,0 +8636811,Amazing bedroom in South Harlem !,45329725,Alexis,Manhattan,Harlem,40.80316,-73.95447,Private room,80,3,1,2015-10-27,0.02,1,0 +8642428,Village apt on tree-lined street,45433475,Richard,Manhattan,East Village,40.72976,-73.98245,Entire home/apt,160,2,8,2016-06-17,0.18,1,0 +8642982,Cozy BK RM for 2! 30min > Manhattan,13440686,Samuel,Brooklyn,Bedford-Stuyvesant,40.68233,-73.91001,Private room,45,1,87,2017-08-28,1.90,1,0 +8643939,Private Bedroom in Upper East Side,32970856,Jason,Manhattan,Upper East Side,40.78406,-73.95294,Private room,94,14,1,2015-11-25,0.02,1,0 +8646618,NYC suite w/ Bath & Balcony near LGA JFK Manhattan,10164435,Stella,Queens,Astoria,40.7571,-73.92792,Private room,77,1,254,2019-06-24,5.61,3,11 +8647773,Park Slope Brooklyn brownstone apt,7374372,Julie,Brooklyn,Park Slope,40.67374,-73.97976,Entire home/apt,149,6,108,2019-07-06,2.38,1,268 +8648134,5star review Beautiful&Spacious Apt,15954226,Jen,Brooklyn,Bedford-Stuyvesant,40.68222,-73.95284,Entire home/apt,130,7,2,2015-11-02,0.04,1,0 +8648818,Private Bedroom + Live/Workspace - best location!,2591842,Alan,Queens,Astoria,40.75758,-73.9206,Private room,57,3,2,2018-12-27,0.19,1,5 +8649144,Spacious & Bright 1BR Williamsburg,8733761,Eli,Brooklyn,Williamsburg,40.70821,-73.95187,Entire home/apt,150,5,9,2016-10-16,0.20,1,0 +8649999,Cozy private room in Queens NY,45464080,Paula,Queens,Jackson Heights,40.75167,-73.89171,Private room,55,4,6,2015-12-23,0.13,1,249 +8650076,NYC luxury apt in W Style building,9094952,Marisa,Manhattan,Financial District,40.70428,-74.01067,Entire home/apt,127,2,3,2016-04-27,0.07,1,0 +8650119,BAYRIDGE LOVELY ROOM.,8137499,Moni,Brooklyn,Bay Ridge,40.6328,-74.02748,Private room,60,2,20,2017-07-02,0.44,1,363 +8650854,Beautiful and Large Private Room 1Block from train,21508828,Nguyen,Manhattan,Washington Heights,40.85289,-73.93508,Private room,64,1,16,2019-01-02,0.36,2,249 +8651132,Simple clean room,9917136,Rani,Brooklyn,Crown Heights,40.677,-73.92363,Private room,40,1,22,2019-04-20,0.50,3,67 +8651887,Cool and cozy room in the Heights,45471621,Sean,Manhattan,Washington Heights,40.85041,-73.92645,Private room,50,3,122,2019-06-28,2.68,1,199 +8652556,A Rm 8 Dbl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68522,-73.97856,Private room,83,1,202,2019-06-25,4.53,4,0 +8652653,Whole apartment in Greenpoint.,21169602,Jonathan,Brooklyn,Greenpoint,40.72714,-73.95088,Entire home/apt,200,1,3,2019-03-31,0.11,1,0 +8652729,Beautiful room in a great location NYC!,4154037,Rajiv,Manhattan,Harlem,40.82305,-73.94555,Private room,49,14,25,2019-06-15,0.55,2,276 +8652866,B Rm 9 Sgl Pensione-like Hrt of Bk,44924546,Hayes,Brooklyn,Boerum Hill,40.68477,-73.97833,Private room,60,1,194,2018-09-30,4.29,4,0 +8653449,Private room with Shared Bathroom,31598220,Adishwar,Queens,Jackson Heights,40.74766,-73.88949,Private room,45,20,1,2016-06-20,0.03,1,0 +8653999,Charming Upper West Side Apartment,43219894,Lauren,Manhattan,Upper West Side,40.78322,-73.97435,Entire home/apt,180,1,2,2016-11-27,0.04,1,0 +8654929,Tranquilo y soleado XL Bushwick loft w/breakfast,39031994,Florencia,Brooklyn,Bushwick,40.69428,-73.90679,Private room,45,2,4,2018-12-15,0.34,1,34 +8662518,Beautiful Brooklyn Basement Studio,24856634,Luis,Brooklyn,Bay Ridge,40.63461,-74.03164,Entire home/apt,89,2,101,2019-06-24,2.26,1,291 +8662610,Private Room - BedStuy - 2 Flr Unit,45513630,Thomas,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94485,Private room,25,2,1,2015-11-12,0.02,1,0 +8662997,2 BEDROOM IN WILLIAMSBURG MINUTES FROM MANHATTAN,45468039,Kevin,Brooklyn,Williamsburg,40.71871,-73.95862,Entire home/apt,285,2,53,2019-05-26,1.20,1,13 +8663101,Large room in UWS 92nd near RivPark,45516192,Philip,Manhattan,Upper West Side,40.7936,-73.97442,Private room,100,5,91,2019-06-17,2.07,1,279 +8663831,Room in a beautiful apartment,16339935,Amy,Queens,Long Island City,40.75819,-73.93213,Private room,90,3,1,2015-10-24,0.02,1,0 +8664611,Affordable Luxury Minutes to Manhattan,45519775,Ayman,Staten Island,Randall Manor,40.62859,-74.12272,Entire home/apt,75,2,131,2019-07-02,2.85,1,310 +8664615,Stylish Astoria Apartment,45446889,Justin,Queens,Astoria,40.76707,-73.91473,Entire home/apt,75,3,1,2016-08-31,0.03,1,0 +8664721,Private room & bathroom in the sky,23073564,Evan,Manhattan,Midtown,40.74576,-73.98146,Private room,200,2,150,2018-10-21,3.32,1,0 +8664965,shared space with Great location!!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59852,-73.95481,Shared room,35,1,116,2019-06-25,2.55,5,351 +8665047,Zen Apartment With Backyard,17074459,Mattan,Manhattan,East Village,40.7316,-73.98543,Entire home/apt,297,1,9,2017-06-19,0.24,3,0 +8665778,Huge loft type 1 bedroom in NYC,22044830,Sol,Brooklyn,Bushwick,40.68697,-73.91592,Private room,150,1,0,,,1,0 +8667280,3BR w/ Patio by Subway (Rate covers 4 guests),31876150,Rose-Marie,Brooklyn,Sunset Park,40.66567,-73.99509,Entire home/apt,195,3,116,2019-06-23,2.56,1,38 +8667450,Bushwick Brooklyn 1 Bedroom,45533710,John,Brooklyn,Bushwick,40.70498,-73.92115,Entire home/apt,80,3,4,2017-12-12,0.15,1,0 +8668115,Zen Room in Crown Heights Brooklyn,8996336,Laura,Brooklyn,Crown Heights,40.67255,-73.94914,Private room,50,500,10,2016-09-22,0.22,1,365 +8668418,Times Square Area Neat & clean and exclusive AAA+,22251283,Nir,Manhattan,Hell's Kitchen,40.75679,-73.99547,Entire home/apt,115,30,18,2019-05-19,0.41,4,37 +8668701,Centrally Located Park Slope Duplex,11540159,Summer,Brooklyn,Park Slope,40.67376,-73.98195,Entire home/apt,70,5,4,2018-08-22,0.26,2,0 +8668932,Bright and Artsy Crown Heights Apt!,10595966,Jennifer,Brooklyn,Crown Heights,40.66687,-73.95662,Entire home/apt,119,4,13,2018-06-05,0.29,1,0 +8671663,Two bus stops to World Trade Center,45550171,Michael,Staten Island,Concord,40.60514,-74.07367,Entire home/apt,120,1,26,2019-02-16,0.58,1,333 +8671786,Room in pre-war space,6639602,Allie,Brooklyn,Williamsburg,40.71151,-73.96665,Private room,400,3,0,,,1,0 +8672280,Large Studio - Midtown Manhattan Near Times Sq,4068325,Regina,Manhattan,Midtown,40.75594,-73.96874,Entire home/apt,250,3,8,2019-06-16,0.19,1,1 +8673141,Near Yankee Stadium,45557152,Rodney,Bronx,Morrisania,40.82424,-73.91316,Entire home/apt,225,1,0,,,1,0 +8676240,Comfortable & Clean Zen Bedroom,27973696,Sarah,Manhattan,Washington Heights,40.83401,-73.94254,Entire home/apt,45,1,1,2016-02-07,0.02,1,0 +8679596,1 bedroom in nyc,4360949,Denetrias,Manhattan,Hell's Kitchen,40.76366,-73.98849,Entire home/apt,260,1,0,,,1,0 +8680417,Sunny beautiful home Audubon Distr,12190039,Lyndell,Manhattan,Washington Heights,40.83591,-73.94777,Entire home/apt,155,5,3,2016-05-23,0.08,2,0 +8681709,Shared living in New York City,1644914,Obi,Manhattan,Kips Bay,40.73842,-73.98008,Shared room,97,1,1,2015-11-15,0.02,1,0 +8681776,"20 Mins to Manhattan, 7 mins LGA",17794638,Burak,Queens,Ditmars Steinway,40.77442,-73.91465,Private room,75,2,4,2016-10-01,0.12,1,0 +8682875,Stylish 1 BDR in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76942,-73.96705,Entire home/apt,155,30,7,2019-05-03,0.19,12,52 +8683432,Spacious Apartment in Midtown West!,45598282,Niki,Manhattan,Hell's Kitchen,40.76414,-73.99296,Entire home/apt,237,3,6,2016-11-28,0.15,2,0 +8683482,Perfect room in Williamsburg loft,45598132,Jacob,Brooklyn,Williamsburg,40.71358,-73.95906,Private room,80,5,0,,,1,0 +8683610,Beautiful one bedroom in Tribeca!,28518140,Sophie,Manhattan,Tribeca,40.7252,-74.01054,Entire home/apt,250,3,8,2016-07-28,0.18,1,0 +8683858,纽约之家(PrivateBathroom4),45600001,Amy,Queens,Flushing,40.74491,-73.83355,Private room,60,1,27,2019-05-27,0.59,3,76 +8684074,The Tranquility Room-large & light,45601111,Dlb,Queens,Laurelton,40.67168,-73.74744,Private room,42,2,54,2018-05-27,1.22,5,189 +8684082,Spacious Room in Hell's Kitchen!!,45598282,Niki,Manhattan,Hell's Kitchen,40.76443,-73.99219,Private room,105,3,17,2017-01-02,0.40,2,0 +8684292,Times Sq/Restaurant Row Apartment,45601660,John,Manhattan,Hell's Kitchen,40.759,-73.98894,Entire home/apt,300,1,0,,,1,0 +8684886,Private Entrance Bed & Bath with Garden and Deck,45604174,Jennifer,Brooklyn,South Slope,40.668,-73.98702,Private room,120,2,125,2019-07-05,2.75,1,177 +8685857,Spacious Brooklyn Getaway,42713726,Emily,Brooklyn,Crown Heights,40.66882,-73.95396,Private room,80,1,1,2016-01-05,0.02,1,0 +8686040,LARGE MANHATTAN ONE BEDROOM,45608786,Virginia,Manhattan,Washington Heights,40.85845,-73.92861,Entire home/apt,125,1,6,2015-11-22,0.13,1,0 +8686167,"1BR, Steps from the 7 Train",20234611,Tyler,Queens,Sunnyside,40.74454,-73.92394,Entire home/apt,125,1,14,2017-01-01,0.33,1,0 +8686361,Elegant Queen size bed room.,24597265,Freda,Queens,Ditmars Steinway,40.77114,-73.90968,Private room,50,14,2,2018-11-30,0.06,8,317 +8687096,Full Floor in Sunny Brooklyn Duplex,45613202,Miles,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95548,Private room,60,2,10,2018-07-28,0.22,1,0 +8687556,NYC Garden apartment next to trains/restaurants,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97418,Entire home/apt,90,4,68,2019-07-01,1.78,2,267 +8687767,"Prime East Village, Sunny room",3856750,Sabra,Manhattan,East Village,40.7229,-73.98313,Private room,60,5,0,,,2,0 +8688783,Fun Unique Spacious Midtown Getaway,45620787,William,Manhattan,Upper East Side,40.7644,-73.9693,Entire home/apt,275,2,148,2019-06-23,3.26,1,216 +8689608,Charming and Modern Home Base,19808319,Lilian,Manhattan,Harlem,40.80706,-73.94665,Private room,100,30,146,2019-05-07,3.22,2,44 +8691258,Luxury Apartment by Time Square,45632792,Nickie,Manhattan,Theater District,40.7599,-73.98542,Private room,200,1,1,2015-10-13,0.02,2,0 +8693545,Great affordable room.,42421006,Jose,Manhattan,Washington Heights,40.84874,-73.94202,Private room,99,1,129,2019-01-24,3.75,2,299 +8698671,Perfect 8th Avenue Apt in Chelsea,45667135,Jen,Manhattan,Chelsea,40.7411,-74.00184,Private room,112,5,31,2016-06-18,0.68,1,0 +8698962,Brooklyn loft with huge livingroom,9166253,Jonas,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95826,Private room,65,1,1,2015-10-11,0.02,2,0 +8703355,Eclectic 1 Bdrm off Park Ave South,7991797,Jamaal,Manhattan,Midtown,40.74509,-73.98268,Entire home/apt,200,1,9,2016-04-08,0.20,1,0 +8703711,Cozy Suite near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66159,-73.94129,Entire home/apt,98,5,135,2019-06-19,2.96,4,102 +8703888,Private room with Full size Bed M,30791331,Tsepak,Queens,Jackson Heights,40.7553,-73.88702,Private room,50,2,49,2019-01-02,1.08,2,356 +8704348,Spacious & Artsy Astoria Apartment,9376458,Jorge,Queens,Astoria,40.76512,-73.92431,Entire home/apt,135,3,11,2016-10-02,0.24,1,0 +8704528,Private bedroom & bath in Red Hook Bklyn for solo,45694156,Marjorie,Brooklyn,Red Hook,40.67807,-74.01397,Private room,50,1,190,2019-06-27,4.23,1,188 +8704967,UES Studio with backyard,45696732,Carol,Manhattan,Upper East Side,40.77858,-73.95059,Entire home/apt,145,4,2,2016-07-05,0.05,1,0 +8709068,Great UWS apt with amazing terrace!,43820172,Paul,Manhattan,Upper West Side,40.79494,-73.96545,Entire home/apt,450,28,0,,,1,365 +8709326,East 60's - Amazing Private Room,41638669,Karan,Manhattan,Upper East Side,40.76574,-73.95875,Private room,141,1,2,2015-10-29,0.04,1,0 +8712309,Large and cosy room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69473,-73.93437,Private room,110,2,86,2019-07-02,1.90,7,316 +8712745,Private Room Near Central Park -UWS,22502130,Laura,Manhattan,Upper West Side,40.8005,-73.96211,Private room,107,2,0,,,1,0 +8713401,Walk to beach...Brighton Beach 2BD,1613244,Ariel,Brooklyn,Brighton Beach,40.58176,-73.96264,Entire home/apt,110,30,7,2018-08-08,0.19,9,284 +8713685,Brooklyn Apt w/ Recording Studio,9739435,Maureen And Ned,Brooklyn,Gowanus,40.67475,-73.99707,Entire home/apt,1000,2,0,,,1,365 +8717373,West Village 2 Bed/2 Bath Loft Apt!,10111580,Jen,Manhattan,West Village,40.73406,-74.00963,Entire home/apt,299,2,2,2016-01-05,0.05,1,0 +8719522,Charming Upper East Side apt,2610741,Olivia,Manhattan,Upper East Side,40.775,-73.95071,Entire home/apt,190,2,26,2019-07-01,0.58,1,42 +8719788,"Big, Convenient, Working Fireplace!",18052038,Caroline,Brooklyn,Fort Greene,40.68601,-73.97813,Entire home/apt,175,1,0,,,1,0 +8719948,Private Bedroom in Nolita/Soho,3869531,Mei,Manhattan,Nolita,40.72143,-73.99427,Private room,70,3,13,2016-06-20,0.29,1,0 +8719984,Charming STUDIO w/ PATIO MIDTOWN,42788011,Ambria,Manhattan,Kips Bay,40.74279,-73.97833,Entire home/apt,75,1,4,2017-07-02,0.09,1,0 +8720070,Central & Cute Studio by Union Sq!,4319369,Sarena,Manhattan,Gramercy,40.73438,-73.9853,Entire home/apt,155,3,17,2016-08-10,0.37,1,0 +8720655,UES - True 1 BR | Clean & Quiet,729279,Corey,Manhattan,Upper East Side,40.77243,-73.95016,Entire home/apt,96,2,34,2019-06-24,0.75,1,0 +8720865,Spacious Brooklyn Home w/ Backyard,2636827,Erin,Brooklyn,Williamsburg,40.7171,-73.94289,Entire home/apt,350,3,2,2016-01-02,0.04,2,0 +8720923,Sunny and Spacious Private Bedroom,41324442,Richard,Manhattan,Lower East Side,40.71971,-73.98494,Private room,90,4,59,2019-07-01,1.36,1,2 +8721348,Midcentury Modern Duplex 3BR/2BA in Times Square,45774138,Jeff & Stephanie,Manhattan,Hell's Kitchen,40.76302,-73.98833,Entire home/apt,500,3,55,2019-06-24,1.23,1,46 +8721414,Charming private bedroom Park Slope,8315176,Dharshana,Brooklyn,South Slope,40.66852,-73.9895,Private room,40,1,0,,,1,0 +8721444,Huge Apt on Central Park South,45774825,Saman,Manhattan,Midtown,40.7675,-73.98228,Entire home/apt,175,7,15,2018-07-08,0.34,1,0 +8722224,"$1,400/month Summer Rental: Spacious One Bdrm",45778782,Genéa,Brooklyn,Prospect-Lefferts Gardens,40.65949,-73.94852,Entire home/apt,50,5,1,2015-12-23,0.02,1,0 +8729771,Private Studio Apartment in Harlem,2101644,Tom,Manhattan,Harlem,40.82248,-73.94891,Entire home/apt,130,1,289,2019-06-19,6.46,1,217 +8729819,Spacious Room in East Willamsburg,3910533,Paolo,Brooklyn,Williamsburg,40.70696,-73.94349,Private room,90,2,1,2015-10-18,0.02,1,0 +8729960,"huge, clean and great loft space",420111,Angie,Manhattan,East Harlem,40.79699,-73.93882,Private room,65,2,38,2019-04-30,0.83,2,270 +8731224,"Bright, cozy East Village apartment",45815117,Kacy,Manhattan,East Village,40.72895,-73.98789,Entire home/apt,200,1,1,2016-05-31,0.03,1,0 +8731667,ENTERING WINTER FESTIVALS,38914517,Jean,Brooklyn,Flatbush,40.64201,-73.95425,Entire home/apt,63,5,35,2019-06-12,0.78,2,98 +8732919,Private room in Upper West Side,960850,Francia,Manhattan,Upper West Side,40.80093,-73.96308,Private room,110,1,2,2018-12-17,0.07,1,0 +8733472,20 mins to Manhattan Entire Studio,475986,Mary Beth,Queens,Kew Gardens,40.71065,-73.83015,Entire home/apt,100,1,14,2019-01-01,0.31,1,90 +8733480,"Apartment on upper west side, NYC",45823919,Ed,Manhattan,Morningside Heights,40.81669,-73.96029,Private room,60,2,11,2017-06-10,0.25,1,188 +8733620,Lg private room minutes from subway,3571821,Andy & Friends,Brooklyn,Bedford-Stuyvesant,40.69053,-73.95632,Private room,45,5,32,2017-12-26,0.70,4,0 +8734174,Sunny Duplex w/Private Roof Deck Monthly Rental,19808319,Lilian,Manhattan,Harlem,40.80864,-73.95007,Entire home/apt,117,28,125,2018-11-17,2.77,2,29 +8735399,Spacious + Cozy Loft in Williamsburg,22171747,Aaron,Brooklyn,Williamsburg,40.71104,-73.96113,Entire home/apt,175,5,10,2019-06-13,0.23,1,32 +8736827,Rain or Shine Studios: Dedicated to Production,45837698,Brian,Brooklyn,Sheepshead Bay,40.58599,-73.92762,Entire home/apt,2000,1,1,2015-10-27,0.02,1,365 +8736934,Great sun drenched room near park!,12639098,Imrul,Brooklyn,Flatbush,40.65315,-73.95538,Private room,60,1,0,,,1,0 +8736973,Cozy Studio for your Business Trip,45837872,Faith,Manhattan,Midtown,40.75531,-73.9655,Private room,148,1,30,2019-07-04,0.84,1,16 +8737468,Spacious Private Room,16934136,Tracey,Queens,Queens Village,40.71341,-73.74804,Private room,65,1,0,,,1,0 +8737991,Master Bedroom in Roofdeck Lux Apt,5270447,Sean,Brooklyn,Bushwick,40.70076,-73.92828,Private room,150,4,0,,,1,0 +8738025,An Exquisite Private Bedroom.,44508730,Cadet,Brooklyn,Prospect-Lefferts Gardens,40.65973,-73.94826,Private room,100,1,5,2017-10-29,0.22,1,89 +8738086,Furnished 2BR in the UES (94th and 2nd),23772724,Elem,Manhattan,Hell's Kitchen,40.76612,-73.98545,Entire home/apt,200,30,3,2018-04-30,0.07,15,336 +8738438,Harlem Haven - Stunning Duplex,3784682,Trace,Manhattan,Harlem,40.80745,-73.9418,Entire home/apt,650,2,1,2017-03-05,0.04,1,0 +8739326,1BR APT in LES with PRIVATE BACKYARD,2851789,Raquel,Manhattan,Chinatown,40.71569,-73.99174,Entire home/apt,199,2,18,2019-06-15,1.28,1,1 +8740683,AMAZING 2BR Apartment Elev/laundry!,1475015,Mike,Manhattan,Midtown,40.7569,-73.96408,Entire home/apt,115,30,1,2017-01-27,0.03,52,341 +8741020,Voted #1 Location Quintessential 1BR W Village Apt,45854238,John,Manhattan,West Village,40.73631,-74.00611,Entire home/apt,245,3,51,2018-09-19,1.12,1,0 +8741446,"Clean, inviting apt.15min to NYC",24597265,Freda,Queens,Ditmars Steinway,40.77058,-73.91091,Entire home/apt,187,6,57,2019-06-09,1.33,8,275 +8741489,Awesome Private Artist Studio for FEMALE Traveler,45857976,J.,Manhattan,Harlem,40.8186,-73.94413,Entire home/apt,88,2,24,2019-06-29,0.53,1,39 +8741676,"Spacious 2BR, close to central park",45859613,Emma,Manhattan,Upper West Side,40.77812,-73.98067,Entire home/apt,280,1,1,2015-10-13,0.02,1,0 +8742567,Alcove Studio in Heart of Chelsea!,45864201,Lindsay B,Manhattan,Chelsea,40.74043,-73.99913,Entire home/apt,200,1,0,,,1,0 +8743269,Studio: Heart of Harlem w backyard,12226733,Henna,Manhattan,Harlem,40.81132,-73.94496,Entire home/apt,95,2,1,2015-10-20,0.02,1,0 +8750772,Charming East Village Corner 2 BD,24032852,Jessica,Manhattan,East Village,40.72774,-73.97934,Entire home/apt,260,2,170,2019-07-01,3.85,1,236 +8750901,Prime Location 63rd St + First Ave,45897508,Antonio,Manhattan,Upper East Side,40.76127,-73.95815,Entire home/apt,148,2,1,2015-12-29,0.02,1,0 +8752714,HUGE STUDIO! LOFT STYLE! PRIVATE !,1475015,Mike,Manhattan,Midtown,40.75618,-73.966,Entire home/apt,100,30,2,2016-04-17,0.05,52,365 +8753832,"Bright, airy, private room/shared bath-W Harlem",21180442,Ed,Manhattan,Harlem,40.82219,-73.9448,Private room,100,1,58,2019-06-23,1.27,1,78 +8754339,Gran Fondo Cyclist Haven,20261309,Sarah,Manhattan,Washington Heights,40.8465,-73.94319,Shared room,60,1,0,,,1,0 +8754560,Manhattan Private Room with a Garden View (Room 1),45913415,Grisula,Manhattan,Harlem,40.81146,-73.94589,Private room,64,3,142,2019-07-06,3.12,2,210 +8755259,1 BR in Carroll Gardens Townhouse,7706697,Barbara,Brooklyn,Carroll Gardens,40.67763,-73.99628,Private room,125,2,30,2019-06-27,0.67,2,80 +8756017,BronxHattan,26129793,Corey,Bronx,Fordham,40.86711,-73.89525,Private room,65,1,0,,,1,0 +8757920,CathedraNYC,8235517,Valjean,Manhattan,Harlem,40.81925,-73.94073,Entire home/apt,110,2,4,2017-07-23,0.11,1,0 +8758534,Large 3 bdrm apt in Manhattan (downtown) village,45619483,Lesley,Manhattan,East Village,40.73138,-73.99002,Entire home/apt,745,1,0,,,1,0 +8759876,Stylish 1BR apt in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76942,-73.96614,Entire home/apt,140,30,5,2019-04-12,0.15,12,0 +8760003,Cozy Room in Willamsburg Loft,45937698,Rhea,Brooklyn,Greenpoint,40.72604,-73.95536,Private room,35,1,9,2017-03-06,0.20,1,0 +8760442,Private studio in Jackson Heights w/free parking,45937956,Fahim,Queens,Jackson Heights,40.75115,-73.8939,Entire home/apt,85,3,91,2019-06-24,2.11,2,50 +8760775,Lexington Avenue Luxury Condominium,45941254,Tianyou,Manhattan,Murray Hill,40.7494,-73.97823,Private room,111,1,4,2015-10-30,0.09,1,0 +8761013,"STUNNING 1661SFT, SOHO/TRIBECA LOFT",18062807,Marcelo,Manhattan,SoHo,40.72613,-74.00826,Entire home/apt,399,90,5,2018-05-02,0.11,1,365 +8761292,Private Tent- Shared Room (Bed 1),44620317,Claudia,Queens,Corona,40.74049,-73.85607,Shared room,40,1,39,2019-07-01,0.87,4,351 +8761451,Chic Bachelorette Pad,45944532,Deborah,Manhattan,Greenwich Village,40.73076,-73.99567,Entire home/apt,300,1,0,,,1,0 +8762135,2 Bedroom in Trendy Clinton Hill,4277896,Tzooli And Ay,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95976,Private room,180,5,12,2019-04-27,0.28,2,189 +8762969,Charming room Chinatown Manhattan,45951143,Alexandra,Manhattan,Chinatown,40.71319,-73.99265,Private room,100,1,1,2015-10-13,0.02,1,0 +8763502,Stay here and love Williamsburg!!,45955013,Jason,Brooklyn,Williamsburg,40.70894,-73.94554,Entire home/apt,150,2,198,2019-06-23,4.48,1,92 +8764617,Bedroom avail in Bowery neighborhod,29896455,Josh,Manhattan,Chinatown,40.7182,-73.99562,Private room,63,1,52,2019-06-15,1.14,2,276 +8770660,Spacious apt. with a great feel,2972546,Manrique And Ticiani,Manhattan,Washington Heights,40.84478,-73.94132,Entire home/apt,175,1,1,2015-12-27,0.02,1,0 +8772365,LARGE private bdrm & private bthrm!,2399157,Jaime,Brooklyn,Bushwick,40.69911,-73.91601,Private room,84,3,17,2016-08-19,0.38,1,0 +8772654,Friendly-colorful-cozy W/ breakfast,45990565,Alba & Genesis,Bronx,Morris Heights,40.85311,-73.90861,Private room,33,2,103,2019-05-31,2.27,2,282 +8775324,Fantastic Private Room with Own Bathroom -,6408132,Michael,Brooklyn,Crown Heights,40.67553,-73.94195,Private room,50,5,1,2016-01-02,0.02,1,35 +8775344,Private spacious master bedroom,4205149,La,Brooklyn,Crown Heights,40.67869,-73.95498,Private room,75,1,1,2015-10-27,0.02,1,0 +8775910,AMAZING UNIQUE COZY MANHATTAN APT,46004430,Michael,Manhattan,Kips Bay,40.74433,-73.97769,Private room,125,2,10,2018-10-22,0.22,1,256 +8776479,East Williamsburg / Bushwick loft,8822845,Adam,Brooklyn,Williamsburg,40.70353,-73.93482,Entire home/apt,140,7,16,2019-03-15,0.49,1,1 +8777316,Sunny and pleasant Sunset Park apt,44524700,Sheryl,Brooklyn,Sunset Park,40.64962,-74.0035,Entire home/apt,85,5,0,,,1,0 +8777936,Prime carroll gardens chrming 2 bed rooms,40611169,Sol,Brooklyn,Carroll Gardens,40.67778,-73.9952,Entire home/apt,250,1,50,2019-06-25,1.46,5,365 +8780378,1 bedroom in large clean apt,2774528,Andrew,Brooklyn,Bushwick,40.70021,-73.92241,Private room,60,3,1,2015-10-14,0.02,1,0 +8781396,Awesome 1 privet room apartment,45408439,AHm,Brooklyn,Bedford-Stuyvesant,40.69348,-73.95472,Private room,45,1,0,,,1,0 +8781837,"Amazing, Modern East Village Loft",4380547,Rishie,Manhattan,East Village,40.73046,-73.98094,Entire home/apt,395,7,0,,,1,0 +8782401,The Quiet Part of New York City,5170691,David,Manhattan,Inwood,40.86729,-73.92716,Entire home/apt,140,1,49,2019-06-26,1.23,1,16 +8783567,Studio Apt on The Upper West Side,46039971,Brady,Manhattan,Upper West Side,40.77874,-73.98437,Entire home/apt,190,5,15,2019-03-21,0.35,1,0 +8793166,"Cool, cozy urban pad",13456636,Cathy,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92584,Entire home/apt,91,2,166,2019-07-01,3.66,1,38 +8793503,"Large private room in BK,.5 bath",46066063,Mungyu,Brooklyn,Bedford-Stuyvesant,40.6945,-73.93113,Private room,40,4,34,2018-12-24,0.75,2,105 +8794495,1 Bedroom in a Modern Mid-Town Apt,12330542,Angela,Manhattan,Midtown,40.75417,-73.97279,Private room,135,1,0,,,1,0 +8794624,"Cozy Bedroom in Crown Heights, BK",11918958,Elizabeth,Brooklyn,Crown Heights,40.68003,-73.96123,Private room,50,1,0,,,1,0 +8795721,Spacious studio 10 min to Manhattan,6672223,Katia,Queens,Astoria,40.76196,-73.924,Entire home/apt,72,3,7,2016-01-18,0.15,1,0 +8796283,Sunny flat in lovely brownstone,9138796,Eli And Maggie,Brooklyn,Bedford-Stuyvesant,40.68967,-73.93381,Entire home/apt,130,3,115,2019-06-23,2.83,1,49 +8796876,Big private bed/bath in penthouse!,46096478,Laurent,Brooklyn,Prospect Heights,40.68078,-73.96816,Private room,90,1,6,2018-06-22,0.13,1,0 +8797770,Large Room available in Seaport.,4455698,Pierre,Manhattan,Financial District,40.70867,-74.0003,Private room,100,15,2,2018-04-16,0.06,3,313 +8798403,Bed and Breakfast in Manhattan!,37818581,Sofia,Manhattan,East Harlem,40.80275,-73.93904,Private room,150,1,225,2018-09-30,4.95,4,0 +8798499,"Large Bedroom with everything, Great location !",46105205,William,Manhattan,Chinatown,40.71591,-73.99488,Private room,62,10,32,2018-11-22,0.74,1,144 +8799529,Private Studio in Times Square,7512454,Christina,Manhattan,Hell's Kitchen,40.75902,-73.99112,Entire home/apt,100,7,5,2016-05-09,0.11,1,0 +8799559,ROOM WITH VIEW IN MANHATTAN!,37818581,Sofia,Manhattan,East Harlem,40.80109,-73.93887,Private room,150,1,207,2019-02-21,4.55,4,0 +8800003,Large Serene Garden Apartment Historic Harlem,46112296,Tina,Manhattan,Harlem,40.81057,-73.94565,Entire home/apt,95,2,3,2017-05-07,0.11,1,6 +8800203,Spacious Williamsburg 1 bedroom!,22159648,Sinat,Brooklyn,Williamsburg,40.7057,-73.94258,Entire home/apt,170,1,8,2018-09-19,0.19,2,0 +8800996,"Bright, sunny, airy room in Victorian TH",14796247,Sandra And Cary,Brooklyn,Flatbush,40.63976,-73.96419,Private room,40,7,16,2018-08-11,0.39,4,130 +8801963,Sunny Room With Charming Slate Fireplace,23582893,Laramie,Brooklyn,Bushwick,40.69036,-73.91608,Private room,54,9,23,2019-05-21,0.53,8,135 +8802289,Private Room in Bushwick off of the DeKalb L Stop,26033344,Aj,Brooklyn,Bushwick,40.70438,-73.92117,Private room,30,1,4,2016-09-28,0.12,1,0 +8806104,"1 Bedroom Garden Apartment, Harlem",7650414,Keith,Manhattan,Harlem,40.80281,-73.94644,Entire home/apt,150,6,51,2019-04-30,1.13,2,66 +8806783,Large 1 BD Upper East With Roof Top,8115401,Quili (Sounds Keelee),Manhattan,Midtown,40.75606,-73.97004,Entire home/apt,250,2,33,2019-05-04,0.73,1,7 +8807842,Spacious arty loft in Bushwick,13318184,Rebecca,Brooklyn,Williamsburg,40.70548,-73.93698,Private room,50,1,1,2015-11-08,0.02,4,0 +8808863,Studio Apartment in Park Slope!,496979,Razan,Brooklyn,Park Slope,40.67424,-73.97717,Entire home/apt,120,1,1,2015-12-01,0.02,1,0 +8809245,Classic NY Apartment. Prime Manhattan Location,3333577,Julia,Manhattan,Gramercy,40.73563,-73.98801,Entire home/apt,410,30,3,2019-05-27,0.15,2,346 +8809420,"Spacious, Sunny & Clean, 1 bed, 1.5 bath Apt",33899056,Ashley,Brooklyn,Bushwick,40.69609,-73.92369,Entire home/apt,73,45,3,2016-08-20,0.07,1,21 +8809578,Beautiful Quiet Chelsea Apartment,14914020,Cihan,Manhattan,Chelsea,40.7442,-74.00123,Entire home/apt,250,1,1,2015-12-16,0.02,1,0 +8810949,NYC Upscale Midtown East 3BR Apt,30283594,Kara,Manhattan,Midtown,40.74867,-73.96734,Entire home/apt,1170,80,0,,,121,365 +8811514,Two Floor Open Space Perfect 'Hood,7227499,John,Manhattan,West Village,40.73523,-74.00607,Entire home/apt,250,2,2,2015-11-08,0.04,1,0 +8811687,Nature in the Heart of Manhattan,17074459,Mattan,Manhattan,East Village,40.73128,-73.98596,Private room,139,1,6,2017-06-14,0.13,3,0 +8812730,"LES, 5 min to subway, quiet street",41865488,Sergio,Manhattan,Lower East Side,40.71292,-73.98496,Entire home/apt,149,5,11,2017-02-04,0.28,1,0 +8813306,Cozy Apartment Near Times Square,4385138,Mike,Manhattan,Hell's Kitchen,40.7567,-73.99277,Entire home/apt,185,2,241,2019-06-24,5.65,1,22 +8813547,For Christmas-Large New 1 BR Near Central Park,30350590,Natasha,Manhattan,Theater District,40.76268,-73.98407,Private room,230,5,10,2016-09-10,0.23,1,0 +8813854,Stay next to TimesSquare & Broadway,45850983,Peter,Manhattan,Hell's Kitchen,40.76455,-73.99297,Entire home/apt,175,1,49,2019-05-05,1.11,1,4 +8814070,Charming 1 bdr near Central Park,10167933,Karina,Manhattan,Upper West Side,40.78481,-73.97414,Entire home/apt,150,2,1,2015-12-19,0.02,1,0 +8814936,"Lovely Home, Heart of Williamsburg!",4185064,Paulina,Brooklyn,Williamsburg,40.71554,-73.96246,Entire home/apt,325,1,264,2019-06-16,5.85,2,47 +8815120,Comfortable 1 bedroom apt in Brooklyn just for you,46178050,Shyann,Brooklyn,East New York,40.66586,-73.89443,Shared room,100,4,0,,,1,270 +8815979,"Комната в Манхеттене, 19-24 октября",46182625,Kateryna,Manhattan,East Harlem,40.79333,-73.94274,Private room,50,1,0,,,1,0 +8816070,LOVELY APT IN MANHATTAN! 1 block from the subway!,40236486,Priscilla,Manhattan,Washington Heights,40.84121,-73.93881,Entire home/apt,80,12,27,2018-08-10,0.67,3,88 +8816465,"Large, Sunny Family-Friendly Apt. (Smoke-Free)",40800505,Beverly,Brooklyn,Bedford-Stuyvesant,40.68691,-73.93294,Entire home/apt,135,28,29,2018-11-10,0.65,1,268 +8817102,Sunlit Bedroom in Forest Hills Apartment,4430927,Martha,Queens,Forest Hills,40.73122,-73.85302,Private room,32,60,3,2018-12-21,0.08,1,0 +8819442,*PRIME* Linen & Lavender in the LES (Clinton St.),24628477,Jessy & Grant,Manhattan,Lower East Side,40.71963,-73.98499,Entire home/apt,261,4,196,2019-06-05,4.30,1,125 +8823472,Appartment in Lefferts Gardens,1415417,Lorenzo,Brooklyn,Prospect-Lefferts Gardens,40.65685,-73.95688,Entire home/apt,60,3,0,,,1,0 +8823897,Massive Room in Brownstone - 25% OFF,1418015,Reuben,Brooklyn,Crown Heights,40.67722,-73.95305,Private room,57,2,91,2019-06-23,2.06,4,228 +8825297,SPACIOUS 2 BEDROOM MANHATTAN DUPLEX!!,46224845,Angela,Manhattan,East Harlem,40.8081,-73.93807,Entire home/apt,225,2,62,2019-06-19,1.62,1,231 +8825701,"Modern Condo in Greenpoint, BK",414999,Brandon,Brooklyn,Greenpoint,40.72922,-73.95134,Entire home/apt,200,3,1,2015-11-03,0.02,1,0 +8826129,Private bedroom Private Living Room,46230558,Joseph,Queens,Glendale,40.70302,-73.89499,Private room,115,2,0,,,1,0 +8826833,Spacious Studio: Upper East Side,46234202,Alex,Manhattan,Upper East Side,40.769,-73.9541,Entire home/apt,200,2,5,2016-05-22,0.11,1,0 +8829421,2 Bed/ 2 Bath in Heart of SOHO/ LES,4087478,Nicole,Manhattan,Lower East Side,40.72159,-73.99234,Entire home/apt,699,6,0,,,1,0 +8830825,Spacious Rooms near Barclays Center,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.93993,Private room,65,2,81,2019-04-08,1.79,4,131 +8832355,"Open Space, Outdoor Space",4703687,Daphne,Brooklyn,Greenpoint,40.72311,-73.93819,Entire home/apt,150,2,1,2016-02-27,0.02,2,0 +8837432,NEW: 2 BR Steps from Times Square,41743945,George - Francis,Manhattan,Hell's Kitchen,40.76206,-73.9937,Entire home/apt,375,3,3,2016-01-02,0.07,2,0 +8838341,Beautiful Oversized King Bedroom - Entire Apt,5172606,Paula,Manhattan,Upper West Side,40.78698,-73.97005,Entire home/apt,175,3,0,,,1,0 +8838513,Room in colorful Bushwick SUPER close to subways!,1423123,Gretchen,Brooklyn,Bedford-Stuyvesant,40.69937,-73.94447,Private room,45,1,9,2019-03-06,0.27,1,0 +8838861,UWS One Bedroom Pre-War Gem,46289881,Jerry,Manhattan,Upper West Side,40.79221,-73.96588,Entire home/apt,225,3,2,2015-11-02,0.04,1,0 +8838957,Lovely Space in the heart of SoHo!,10595200,Lauren,Manhattan,SoHo,40.72549,-74.00523,Entire home/apt,165,10,31,2019-05-16,0.71,1,55 +8839938,Beautiful 1BR in Chelsea,46293809,Courtney,Manhattan,Chelsea,40.74336,-73.99706,Entire home/apt,250,1,0,,,1,0 +8840563,Sunny 1 bedroom long or short term,42621530,Maory,Brooklyn,Williamsburg,40.71097,-73.95886,Entire home/apt,1150,7,2,2015-12-07,0.04,1,0 +8840959,1-Bedroom in Brooklyn Brownstone,39556296,Lizzie,Brooklyn,Bedford-Stuyvesant,40.6802,-73.95768,Entire home/apt,85,3,1,2016-09-08,0.03,1,0 +8841107,Beautiful and Homey Enclave,21332287,John,Brooklyn,Park Slope,40.67129,-73.98277,Entire home/apt,135,2,0,,,1,0 +8841646,Art & Light-Filled Apt By The Park,5380471,John,Manhattan,East Harlem,40.79037,-73.9445,Entire home/apt,125,1,2,2015-11-29,0.04,1,0 +8842185,Staten Island NYC Marathon,46305818,Elizabeth,Staten Island,Shore Acres,40.60597,-74.06208,Private room,300,1,0,,,1,0 +8842667,Brooklyn apartment in Boreum Hill,10261855,Ruby,Brooklyn,Boerum Hill,40.68338,-73.98231,Entire home/apt,120,4,0,,,1,0 +8842752,1 Bedroom Apt in Williamsburg,4586937,Matt,Brooklyn,Williamsburg,40.70658,-73.94413,Entire home/apt,100,1,2,2017-06-02,0.05,1,0 +8842793,Private Patio in Soho/NoLita,3411058,Kevin,Manhattan,Nolita,40.72337,-73.99574,Entire home/apt,179,3,26,2019-06-16,0.58,1,6 +8843403,Cute room in charming Bk share,4231636,David,Brooklyn,Bedford-Stuyvesant,40.68721,-73.94257,Private room,50,3,4,2016-01-13,0.09,1,0 +8843681,LARGE 2 BEDROOM DUPLEX WITH YARD,14104350,Irving,Brooklyn,Bedford-Stuyvesant,40.68363,-73.94142,Entire home/apt,115,5,28,2019-07-08,0.70,2,347 +8843995,Charming and Artsy Studio Apartment,46314409,Jake And Catharine,Brooklyn,Bedford-Stuyvesant,40.68549,-73.93268,Entire home/apt,100,3,151,2019-06-29,3.32,1,105 +8844402,Cozy room in the Heart of Astoria,45232769,Nadir,Queens,Astoria,40.76628,-73.91761,Private room,75,2,94,2019-07-07,2.08,3,35 +8844652,Quiet living room in Greenpoint 1BR,34738391,Rae,Brooklyn,Greenpoint,40.7308,-73.95394,Private room,60,1,4,2016-10-23,0.09,1,0 +8845002,Beautiful One Bedroom Chelsea,21172422,Ellie,Manhattan,Chelsea,40.74197,-74.00409,Entire home/apt,240,2,1,2015-11-02,0.02,1,0 +8845289,Yve's Getaway,46322064,Yve,Manhattan,Harlem,40.81147,-73.9471,Entire home/apt,290,3,58,2018-01-02,1.33,1,188 +8845441,Comfy private bedroom in Bushwick,46323110,Dan,Brooklyn,Bushwick,40.69639,-73.91008,Private room,56,5,76,2019-04-11,1.74,2,68 +8845805,Large Sunny Private Room,46322730,Tia,Manhattan,Washington Heights,40.84444,-73.9399,Private room,95,2,32,2019-06-30,0.72,1,170 +8845951,Cozy & Private Harlem Bedroom,4035773,T.,Manhattan,Harlem,40.80769,-73.95497,Private room,70,1,76,2019-06-18,1.78,1,293 +8845982,Superb loft in Manhattan,15641304,Jean-Noël,Manhattan,East Harlem,40.79387,-73.94202,Entire home/apt,125,4,8,2017-06-18,0.18,1,0 +8846233,East Village Apartment,3285026,Jordanna,Manhattan,East Village,40.72704,-73.98783,Entire home/apt,195,1,4,2015-10-31,0.09,1,0 +8846293,5min from airport,46087238,Michion,Queens,Jamaica,40.68858,-73.78961,Private room,45,1,25,2019-01-31,0.65,2,335 +8846634,442 w 57st. hanover apt sharing,23521722,Jinwon,Manhattan,Hell's Kitchen,40.76767,-73.98783,Shared room,64,2,0,,,1,0 +8847200,Sunny Room in Ditmas Park,46329096,Mia,Brooklyn,Flatbush,40.64272,-73.95852,Private room,50,3,9,2016-10-22,0.20,1,0 +8847268,Apartment with terrasse greenpoint brooklyn,1818225,Amael,Brooklyn,Greenpoint,40.72212,-73.9378,Entire home/apt,80,3,0,,,1,0 +8847542,private bathroom and balcony,6630815,Emmanuelle,Brooklyn,Bushwick,40.68769,-73.91377,Private room,55,2,197,2019-06-24,4.46,2,21 +8847577,Beautiful Brooklyn Brownstone,21052756,Odette,Brooklyn,Cobble Hill,40.68561,-73.99572,Entire home/apt,1000,5,1,2016-01-03,0.02,1,0 +8848162,"Great, Clean NYC Apartment",46122430,Liana,Queens,Astoria,40.76114,-73.91398,Private room,42,60,1,2015-10-26,0.02,1,0 +8848243,Cozy and Clean Room,39975694,Dante,Brooklyn,Williamsburg,40.70813,-73.95104,Private room,80,4,0,,,1,0 +8849684,"Super clean, Great location!!",10549906,Mikael,Brooklyn,Clinton Hill,40.68313,-73.96165,Entire home/apt,105,1,54,2019-06-11,1.19,1,365 +8849758,Peaceful Retreat,23270872,Jason,Brooklyn,Bedford-Stuyvesant,40.68519,-73.91494,Private room,45,3,11,2018-09-11,0.24,1,66 +8855930,Chic and Inviting East Village Apartment,46365876,Josefine,Manhattan,East Village,40.73113,-73.98295,Entire home/apt,125,2,2,2016-08-31,0.06,1,0 +8857546,Comfy Rooms,45601111,Dlb,Queens,Laurelton,40.66943,-73.74778,Private room,45,2,85,2019-05-26,1.99,5,333 +8857842,Bright Charming Artistic Loft: Relax or Work,46372931,Bahar,Brooklyn,Clinton Hill,40.69096,-73.96052,Private room,95,2,10,2019-06-15,0.22,1,22 +8858228,Spacious yet cozy apt; heart of BK,2232742,Kate,Brooklyn,Cobble Hill,40.68954,-73.99383,Entire home/apt,200,5,7,2019-01-01,0.16,1,0 +8860450,Stylish One-Bedroom in Gramercy!,12838732,Elizabeth,Manhattan,Gramercy,40.73743,-73.98652,Entire home/apt,190,2,76,2019-06-14,1.68,1,12 +8861269,Harlem Vacation Rental,9933134,Darryl,Manhattan,Harlem,40.80519,-73.94974,Entire home/apt,170,4,28,2019-06-18,0.82,1,364 +8861340,Spacious 2 Bedroom in Brooklyn,46388202,Diana,Brooklyn,Columbia St,40.6893,-74.00023,Entire home/apt,250,7,0,,,1,0 +8861719,Right in the heart of Brooklyn,46389507,Kenneth,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91142,Private room,54,2,2,2016-01-02,0.05,1,0 +8863005,Quaint Midtown Studio,46395463,Heather,Manhattan,Midtown,40.75556,-73.96817,Entire home/apt,150,1,3,2015-12-28,0.07,1,0 +8863296,Incredible 750sqft East Village 1BR,27657527,Sean,Manhattan,East Village,40.72417,-73.98391,Entire home/apt,300,2,1,2016-01-03,0.02,1,0 +8863320,Brooklyn Museum at your window,46397067,Nia & David,Brooklyn,Prospect Heights,40.67381,-73.96496,Private room,115,2,2,2019-06-23,0.92,1,362 +8864262,Greenwich Village Stylish Studio,46401172,Anne Marie,Manhattan,West Village,40.73458,-74.00808,Entire home/apt,225,1,83,2019-06-17,1.90,1,344 +8864404,Darian Place,46401675,Benjamin,Manhattan,East Harlem,40.7929,-73.94108,Private room,83,1,0,,,1,0 +8864740,Charming 1 Bedroom in Townhouse,45595980,Tny,Manhattan,Upper East Side,40.76941,-73.96694,Entire home/apt,125,30,10,2019-05-18,0.27,12,0 +8865020,Manhattan Club Oct 16-Oct 18,46404051,Brenda,Manhattan,Midtown,40.76385,-73.98212,Entire home/apt,250,1,1,2015-10-18,0.02,1,0 +8865499,"Rustic, 1-bdrm retreat w/roof deck.",986623,Armando Rafael,Brooklyn,Greenpoint,40.72216,-73.94255,Entire home/apt,129,3,93,2019-05-28,2.10,1,0 +8866178,Clean cozy and convenient stay,1596626,Gypsy,Manhattan,Hell's Kitchen,40.76262,-73.98677,Entire home/apt,135,2,115,2019-06-23,2.56,1,19 +8866435,RARE & AWESOME Williamsburg Loft!,3629010,William,Brooklyn,Williamsburg,40.71248,-73.96679,Entire home/apt,200,20,0,,,1,0 +8866669,Gorgeous Loft in Greenpoint!,2452616,Arielle,Brooklyn,Greenpoint,40.73072,-73.95416,Entire home/apt,175,2,12,2019-01-13,0.77,1,0 +8867383,Cozy Bedroom - 1 Stop to Manhattan,46414646,Giovana,Queens,Long Island City,40.75085,-73.93743,Private room,55,3,6,2015-11-20,0.13,1,0 +8868762,Room in Loft,7234603,Frida,Brooklyn,Williamsburg,40.70953,-73.92657,Private room,50,1,0,,,1,0 +8869029,Private room in East Village,18048584,Stanley,Manhattan,East Village,40.72988,-73.98713,Private room,125,1,2,2015-12-30,0.05,1,0 +8869381,Elegant Brooklyn Heights Studio,9444795,Emilie,Brooklyn,Brooklyn Heights,40.69933,-73.99249,Entire home/apt,200,3,2,2017-04-17,0.06,1,0 +8869383,Lefferts Garden/ Prospect Park Gem,46420811,Stacy,Brooklyn,Prospect-Lefferts Gardens,40.65631,-73.95535,Private room,40,10,12,2019-06-30,0.28,1,343 +8869857,纽约之家(SunnyHome6),45600001,Amy,Queens,Flushing,40.74651,-73.83195,Private room,50,1,71,2019-05-11,1.57,3,83 +8869998,Triplex Penthouse with 3 Balconies,1845920,Matt,Brooklyn,Williamsburg,40.70883,-73.94415,Private room,166,1,16,2016-11-14,0.36,1,0 +8873479,Beautiful modern room with private bathroom,27240092,Darin,Manhattan,Gramercy,40.73557,-73.98353,Private room,124,1,118,2019-06-23,2.70,1,278 +8877466,"Spacious Apt, 15min from the city",46458011,Emma,Brooklyn,Bushwick,40.69497,-73.92598,Private room,65,2,28,2019-03-19,0.70,1,204 +8878172,"Sunny, spacious - 35 mins Times Sq",46399563,Angela,Manhattan,Inwood,40.86689,-73.92224,Private room,57,1,6,2017-01-02,0.13,1,1 +8880194,"Private Bedroom, Huge Apt.",18023496,Bobby,Manhattan,Midtown,40.74382,-73.98798,Private room,100,1,1,2015-10-15,0.02,1,0 +8880524,Attic Cove,3758073,Marcos,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9567,Private room,60,3,9,2018-07-28,0.20,1,0 +8880999,NicE Room with Private Bathroom BK:) SUPERHOST :),3441272,Jasmin,Brooklyn,Bushwick,40.69883,-73.93364,Private room,90,1,254,2019-06-23,5.59,5,222 +8881253,A piece of Heaven in Hells Kitchen,21366569,Quentin,Manhattan,Hell's Kitchen,40.76374,-73.99422,Private room,130,1,66,2019-07-03,1.75,2,289 +8881765,Location! Great for families/groups,218425,Odile,Brooklyn,Park Slope,40.66848,-73.98002,Entire home/apt,350,4,18,2016-11-24,0.42,1,0 +8881955,Big ass room in Brooklyn,46476909,Eric,Brooklyn,Crown Heights,40.67052,-73.95621,Private room,60,2,1,2015-10-21,0.02,1,0 +8882549,Private room in the East Village!,26123839,Oliver,Manhattan,East Village,40.72285,-73.98133,Private room,80,2,7,2016-03-01,0.15,1,0 +8883032,"Studio Apt, Prospect Park, Brooklyn",46481544,Jose,Brooklyn,Prospect-Lefferts Gardens,40.65874,-73.96108,Entire home/apt,70,1,0,,,1,0 +8883074,"Private bdr in Bushwick, Brooklyn",46474221,Faina,Brooklyn,Bushwick,40.70554,-73.91934,Private room,41,7,0,,,1,0 +8883269,Cute 1 bedroom apt close to all,46482708,Djamal,Queens,Maspeth,40.72582,-73.90549,Entire home/apt,100,3,74,2019-05-20,1.63,1,321 +8883877,Gorgeous Director’s Penthouse,14889425,Julian,Manhattan,East Village,40.72887,-73.98835,Entire home/apt,500,1,0,,,1,53 +8884181,Greene Hill 3BR Brownstone Apt,46486441,Holly/Rick,Brooklyn,Bedford-Stuyvesant,40.68846,-73.95653,Entire home/apt,200,3,115,2019-07-07,2.61,1,243 +8885835,Cozy Sunny Bedroom in Hell's Kitchen / Time Square,30426158,Bryan,Manhattan,Hell's Kitchen,40.76285,-73.99159,Private room,120,6,17,2017-10-18,0.38,2,0 +8886292,Spacious MasterBedRoom 15min to NYC,43908809,M&L,Queens,Woodside,40.74968,-73.90333,Private room,170,1,1,2016-06-08,0.03,3,90 +8887748,Sunny room in Downtown Brooklyn,46501842,Charlotte,Brooklyn,Park Slope,40.67603,-73.98239,Private room,42,15,3,2017-05-18,0.07,1,0 +8887907,Luxurious Manhattan Getaway for 1 adult,36573037,Tracey,Manhattan,Inwood,40.87157,-73.91744,Private room,50,1,38,2019-07-01,0.85,2,344 +8888689,1BR apartment on Broadway (UWS),11469296,Michael,Manhattan,Morningside Heights,40.80596,-73.96471,Entire home/apt,170,1,7,2016-10-08,0.16,1,0 +8889118,Glamorous one bedroom Nolita.,46509461,Mike,Manhattan,Little Italy,40.71855,-73.99791,Entire home/apt,189,1,168,2019-06-22,3.71,1,347 +8889423,Beautiful Upper West Side Large 1BD,10328631,Yulia,Manhattan,Upper West Side,40.78671,-73.97825,Entire home/apt,150,2,11,2016-06-26,0.24,1,0 +8889664,Cozy East Village Apartment,7006490,Jibran,Manhattan,East Village,40.72797,-73.97787,Private room,77,1,9,2016-09-10,0.21,1,0 +8892174,Vintage WB Nest with Backyard,24297041,Alexandra,Brooklyn,Williamsburg,40.7069,-73.93754,Entire home/apt,150,1,0,,,1,0 +8894773,Cozy bedroom in Bushwick,46323110,Dan,Brooklyn,Bushwick,40.6965,-73.91036,Private room,60,5,165,2019-05-21,3.63,2,261 +8895019,1 Bd Ap. in Hell's Kitchen Times Sq,1020828,Philipp,Manhattan,Hell's Kitchen,40.76392,-73.99514,Entire home/apt,150,1,1,2016-05-08,0.03,1,0 +8897305,Cozy Apartment on the Upper East,46544348,Kim,Manhattan,Upper East Side,40.77688,-73.94687,Entire home/apt,120,1,2,2015-12-16,0.05,1,0 +8899450,Cozy 2 Story Home in U-UES,31067208,Brianna,Manhattan,East Harlem,40.79714,-73.94023,Entire home/apt,85,1,2,2016-06-29,0.05,1,0 +8899476,"ENTIRE Floor,PRIVATE Bath&Entrance! SUPERHOST :))",3441272,Jasmin,Brooklyn,Bushwick,40.69699,-73.93387,Private room,85,1,270,2019-06-21,5.94,5,227 +8900026,"BOUTIQUE LUXURY 2 Bedroom, 2 bath Apt in Chelsea",2543296,Jazil,Manhattan,Chelsea,40.74339,-73.99414,Entire home/apt,450,6,2,2018-12-29,0.05,1,0 +8901538,WELCOME TO MY HUMBLE ABODE!!!!!,46562860,Paisha,Bronx,Longwood,40.82226,-73.88906,Private room,60,3,8,2018-01-03,0.19,1,363 +8901901,Spacious apartment in Harlem,15433113,Christine,Manhattan,Harlem,40.80541,-73.95198,Entire home/apt,95,2,5,2016-02-21,0.11,1,0 +8903147,Yankees Room in the Bronx,3684360,Enrique,Bronx,Norwood,40.87709,-73.88228,Private room,38,1,50,2018-06-27,1.10,4,267 +8903855,Queens Condo w/ Manhattan View,46573375,Loren,Queens,Long Island City,40.75216,-73.94099,Shared room,150,3,0,,,1,0 +8904076,Forest Hills 3 Bedroom Apartment,46574350,Sean,Queens,Forest Hills,40.71372,-73.83693,Entire home/apt,125,1,2,2016-08-10,0.05,1,0 +8904662,"Central Park, Museum Mile",20367564,Irene,Manhattan,East Harlem,40.79212,-73.95032,Private room,125,2,1,2015-11-03,0.02,1,0 +8905176,Beautiful Upper East Side Studio,46579560,Federico,Manhattan,Upper East Side,40.77837,-73.95318,Entire home/apt,130,5,0,,,1,0 +8905651,Cozy room in E.Williamsburg + Rooftop & Backyard,3989837,Nadav,Brooklyn,Williamsburg,40.7074,-73.94063,Private room,59,3,59,2019-06-30,1.30,2,119 +8906260,Cozy Harlem Studio,9597041,Che,Manhattan,Harlem,40.82494,-73.943,Entire home/apt,65,2,32,2019-06-17,0.73,1,16 +8907184,Williamsburg 3 Bedroom Loft,9012184,Cyrus,Brooklyn,Williamsburg,40.72227,-73.95788,Entire home/apt,259,2,222,2019-06-17,4.90,1,250 +8907362,1 Bdr in 3bdr East Village Apt,46537493,Erica,Manhattan,East Village,40.72822,-73.98128,Private room,90,3,0,,,1,0 +8914109,Conveniently located Central Harlem,13951574,Andrea,Manhattan,Harlem,40.81491,-73.94779,Private room,60,30,22,2019-05-15,0.51,1,0 +8914649,2 Rooms! Steps from the L train!,5109475,Liam,Brooklyn,Bushwick,40.70544,-73.91993,Private room,95,2,20,2019-06-02,0.45,2,191 +8915246,Cozy Sofa Bed for Nightly Stays,2968774,Alexis,Brooklyn,Crown Heights,40.66838,-73.95624,Shared room,45,1,1,2015-11-11,0.02,2,0 +8916387,"Large, bright Upper West Studio",25688324,Shannon,Manhattan,Upper West Side,40.77757,-73.97932,Entire home/apt,133,3,38,2019-06-30,0.89,1,2 +8916716,Lovely 2 Bedroom Apartment. Perfect Getaway!,46632551,J,Manhattan,Hell's Kitchen,40.75994,-73.98812,Entire home/apt,259,2,103,2019-06-21,2.29,1,34 +8916960,Central Park Slope Garden Apt,46632214,Patrick,Brooklyn,Park Slope,40.6711,-73.9772,Entire home/apt,150,7,40,2019-06-25,0.89,1,279 +8920714,A Spacious Room in Bushwick Apt,46650449,Sam,Brooklyn,Bushwick,40.69846,-73.91202,Private room,35,1,0,,,1,0 +8920794,Charming Lower-East Side apartment,15995278,Camille,Manhattan,Lower East Side,40.72189,-73.99187,Entire home/apt,139,3,6,2016-10-27,0.13,1,0 +8920816,Upper West Side room near Columbia,4262510,Ibrahim,Manhattan,Morningside Heights,40.81417,-73.9603,Private room,39,3,6,2016-01-23,0.13,1,0 +8920988,1 BDRM APT BROOKLYN (REDHOOK),29823680,Jonathan,Brooklyn,Red Hook,40.67668,-74.00247,Entire home/apt,125,1,0,,,1,0 +8921125,Superbe appartement vue sur Central Park,36264739,Carole,Manhattan,Upper West Side,40.7941,-73.96314,Entire home/apt,434,5,1,2018-01-03,0.05,1,0 +8924038,Huge Unique Two Story E.Vill Oasis,46665505,Cj,Manhattan,East Village,40.72179,-73.97951,Entire home/apt,500,2,0,,,1,0 +8924552,Sunny 2 bedroom apartment!,6818674,Emily,Brooklyn,Greenpoint,40.73262,-73.95209,Entire home/apt,100,1,2,2015-11-29,0.05,1,0 +8924966,1BR+Futon+Terrace 20' to Manhattan,27502041,Alex,Queens,Sunnyside,40.74746,-73.91416,Entire home/apt,99,3,40,2019-06-10,0.91,1,128 +8925072,Big Bright Room in Bushwick NEXT to L and M Train,4077292,Unue,Brooklyn,Bushwick,40.69744,-73.90773,Private room,70,4,57,2019-06-23,1.44,2,333 +8925082,Chic apt on cutest corner in Soho,33834627,Charlotte,Manhattan,Nolita,40.72217,-73.99375,Entire home/apt,200,1,0,,,1,0 +8929521,Private studio room - Brownstone - Brooklyn,46690777,Michael,Brooklyn,Crown Heights,40.67653,-73.93766,Private room,88,4,64,2019-05-11,1.44,1,68 +8930935,Cozy apartment in Brooklyn,4824082,Amel,Brooklyn,Bedford-Stuyvesant,40.68112,-73.94409,Entire home/apt,115,1,0,,,1,0 +8931373,Delightful flat near the Park,719497,Cinjon,Manhattan,Harlem,40.81425,-73.9516,Private room,75,3,0,,,1,0 +8931635,Bright New 1bd Central Park Slope,5641193,Melissa,Brooklyn,Park Slope,40.66795,-73.98053,Entire home/apt,140,40,59,2017-08-28,1.31,1,126 +8932049,Big manhattan room w gorgeous views.,16877292,D,Manhattan,East Harlem,40.79207,-73.94196,Private room,80,1,16,2019-05-04,1.15,2,345 +8932929,Spacious Room in Bushwick with a back yard.,12502512,Ashley,Brooklyn,Bushwick,40.69451,-73.92397,Private room,44,1,1,2015-12-27,0.02,1,0 +8934119,Deluxe 1 Bedroom Chelsea NYC Apt!,30283594,Kara,Manhattan,Chelsea,40.74226,-73.99608,Entire home/apt,269,30,0,,,121,337 +8935528,*Spectacular Sublet - All inclusive,35430339,Melissa,Brooklyn,Prospect Heights,40.6791,-73.97369,Entire home/apt,150,1,0,,,1,0 +8936266,Prime West Village haven,6764705,Kirk,Manhattan,West Village,40.7382,-74.00299,Entire home/apt,299,5,4,2016-07-05,0.09,1,0 +8937816,L-Train - 3BR Duplex in Brooklyn,3538412,Tom,Brooklyn,Williamsburg,40.70573,-73.92887,Entire home/apt,195,4,85,2019-06-19,1.93,1,63 +8939341,Stay in the heart of Williamsburg,46628999,Sabine,Brooklyn,Williamsburg,40.71282,-73.95537,Entire home/apt,140,3,8,2018-11-09,0.18,1,0 +8940685,Central Park Time SQ Chic Studio,7918948,Elle,Manhattan,Hell's Kitchen,40.76263,-73.98909,Entire home/apt,180,1,1,2015-12-13,0.02,1,0 +8941092,Sunnyside:Large 1 bedroom apartment,45738364,Joe,Queens,Sunnyside,40.74153,-73.91806,Entire home/apt,84,2,0,,,1,0 +8941820,Ensuite privacy close to Manhattan,46741696,Manchang,Queens,Woodside,40.74688,-73.90674,Private room,70,3,138,2019-06-20,3.10,1,54 +8942272,Huge Brooklyn Room in Bushwick,9864136,Anthony,Brooklyn,Bushwick,40.68587,-73.91435,Private room,55,1,4,2018-05-20,0.19,26,365 +8942360,Calm and Cozy Bed-Stuy Room in an Inspiring House,11659708,Malav,Brooklyn,Bedford-Stuyvesant,40.69349,-73.94746,Private room,65,5,1,2016-03-06,0.02,1,0 +8942367,Large Room in Trendy Bushwick,9864136,Anthony,Brooklyn,Bushwick,40.68591,-73.91344,Private room,45,1,18,2018-02-26,0.41,26,250 +8942467,Your own hip and cozy 1BD apartment,36821356,Vitaly And Lena,Brooklyn,Borough Park,40.62251,-73.99397,Entire home/apt,96,14,93,2019-06-23,2.06,1,73 +8943358,Loved by NYLocals Private Room SoHo,2695451,Elle,Manhattan,SoHo,40.72476,-74.00387,Private room,82,1,228,2019-07-05,5.11,2,28 +8948898,"Bright, Modern Studio in Upper East",5548597,Katie,Manhattan,Upper East Side,40.77162,-73.95808,Entire home/apt,150,1,6,2016-07-26,0.14,1,0 +8949503,"Huge, Sumptuous En-Suite Bedroom",46778191,Zoe,Brooklyn,Williamsburg,40.71454,-73.95894,Private room,125,3,1,2015-10-27,0.02,1,0 +8950064,Brooklyn Apt with AMAZING NYC view,30116009,Veronica,Brooklyn,Sunset Park,40.6503,-74.00231,Entire home/apt,115,5,1,2016-01-03,0.02,1,0 +8950419,Bright Artistic Downtown Studio,3736228,Graham,Manhattan,Chinatown,40.71719,-73.99109,Entire home/apt,145,30,60,2019-06-20,1.38,1,15 +8951083,Bright Studio in the trees of North Williamsburg,46785121,Mel,Brooklyn,Greenpoint,40.72024,-73.95483,Entire home/apt,169,1,22,2019-07-02,2.59,1,39 +8951315,Cozy (2) bedrooms in Brooklyn NYC.,46786142,Janet & Vincent,Brooklyn,East Flatbush,40.65012,-73.94056,Private room,75,1,15,2018-10-08,0.33,1,355 +8951480,Unique townhouse apartment,46787065,C,Manhattan,Upper West Side,40.80356,-73.9698,Entire home/apt,100,7,2,2016-08-16,0.05,1,0 +8951763,Cozy 1 Bedroom apt right by park!,31752474,Tine,Brooklyn,Prospect-Lefferts Gardens,40.66141,-73.9615,Entire home/apt,69,45,1,2016-09-01,0.03,2,0 +8952816,CHARMING ROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76786,-73.92433,Private room,45,1,137,2019-06-16,3.06,9,283 +8953050,Beautiful private studio,46794554,Bhargav,Queens,Ditmars Steinway,40.77987,-73.90309,Entire home/apt,75,7,0,,,1,0 +8953200,CLASSIC BEDROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76783,-73.92316,Private room,55,1,143,2019-06-21,3.19,9,276 +8953404,LARGE BEDROOM CLOSE TO MANHATTAN,45416627,Lolita,Queens,Astoria,40.76801,-73.92501,Private room,55,1,78,2019-06-20,1.78,9,311 +8953625,"PRIVATE, CLEAN, ROOM CLOSE TO MANH",45416627,Lolita,Queens,Astoria,40.76832,-73.92346,Private room,48,1,150,2019-06-23,3.39,9,323 +8954037,BIG NEW ROOM,45416627,Lolita,Queens,Astoria,40.76942,-73.92343,Private room,50,1,99,2019-05-20,2.21,9,341 +8955506,Large Room in Artist Loft,20627781,Grace,Brooklyn,Greenpoint,40.72569,-73.95515,Private room,56,2,1,2016-01-03,0.02,1,0 +8955543,Jewel On Parkside 2,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.6553,-73.9607,Private room,65,28,13,2019-02-05,0.30,3,319 +8955750,Sunny Brooklyn Brownstone apartment,46182242,Kristen,Brooklyn,Sunset Park,40.64469,-74.01035,Entire home/apt,140,2,74,2018-12-16,1.65,1,2 +8956253,BRKLYN - Comfy & Chic private space,46810144,Emmanoele,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.95405,Private room,95,2,57,2019-06-24,1.27,1,209 +8957187,Lovely Room in Sunny & Modern Apartment,1317384,Tamara,Manhattan,Harlem,40.82647,-73.94747,Private room,73,2,92,2019-06-12,2.08,2,177 +8957189,Cozy 2 BR in heart of East Village,25492187,Abigail,Manhattan,East Village,40.72566,-73.98323,Entire home/apt,230,1,0,,,1,0 +8963790,New York City 2bd-apt in great location!,46846064,Frahydel,Manhattan,Roosevelt Island,40.76348,-73.94859,Entire home/apt,180,7,2,2017-01-02,0.05,2,0 +8963968,Large room in cute neighborhood,1610862,Madelyn,Brooklyn,Prospect Heights,40.67985,-73.96454,Private room,47,7,8,2017-06-14,0.18,1,0 +8964008,Cozy Bed in Midtown Manhattan,18655157,Phuong,Manhattan,Midtown,40.74387,-73.98496,Shared room,55,5,5,2019-06-20,0.12,3,0 +8964308,Relaxing Modern Brooklyn Space,2968774,Alexis,Brooklyn,Crown Heights,40.66776,-73.957,Entire home/apt,125,2,10,2016-04-18,0.22,2,0 +8964446,Cozy Bedroom in Astoria Two Bedroom Apartment.,46848226,Jessica,Queens,Astoria,40.7601,-73.91929,Private room,60,2,5,2018-06-01,0.21,1,0 +8964740,Alcove Studio in Murray Hill,46851431,Anthony,Manhattan,Murray Hill,40.74637,-73.97469,Entire home/apt,104,1,0,,,1,0 +8966368,Beautiful Apartment in Cobble Hill,321710,Piero,Brooklyn,Cobble Hill,40.68653,-73.99288,Entire home/apt,225,3,1,2016-04-12,0.03,1,0 +8971258,Gorgeous Three Bedroom Split Level,46881049,Elizabeth,Brooklyn,Canarsie,40.64455,-73.90978,Entire home/apt,169,2,30,2019-06-30,0.87,1,345 +8971863,"Coliving in Brookln, New York / Private room / Fl",27974952,Alex,Brooklyn,East Flatbush,40.64595,-73.9504,Private room,45,30,7,2017-02-16,0.15,7,124 +8972219,Cozy apartment East Village NYC,12933114,Ausra,Manhattan,East Village,40.72143,-73.97824,Entire home/apt,130,5,4,2017-01-01,0.09,1,0 +8972807,Cosy loft 20 mins to Manhattan,46888345,Amélie,Brooklyn,Williamsburg,40.70666,-73.93788,Private room,53,3,1,2015-12-31,0.02,1,0 +8972957,"Artsy 3-Bdrm, 2 bath, Sleeps 10, 1 min from subway",806818,Jasmine,Brooklyn,Bedford-Stuyvesant,40.67851,-73.92002,Entire home/apt,150,2,121,2019-06-14,2.69,1,287 +8973075,"Large Private Room, great location!",8595112,Adrien,Manhattan,Midtown,40.75531,-73.97147,Private room,140,1,13,2016-05-17,0.29,2,0 +8973292,Cozy Upper East Side two bedroom,1372837,Manoj,Manhattan,Upper East Side,40.77595,-73.94969,Entire home/apt,295,4,0,,,1,0 +8973682,1 Room in Apt. near Columbia Univ.,26271616,Ian,Manhattan,Upper West Side,40.80101,-73.96076,Private room,98,2,1,2015-12-20,0.02,2,0 +8973873,Sunny Loft in Clinton Hill,11458977,Robin,Brooklyn,Clinton Hill,40.68699,-73.9639,Entire home/apt,120,3,88,2019-06-26,2.04,1,49 +8974121,Cozy Sizeable Sutton Place Studio!,46815771,Tide,Manhattan,Midtown,40.75687,-73.96639,Entire home/apt,170,3,1,2015-12-09,0.02,1,0 +8974316,"Great room in Upper Manhattan, New York!!!",4154037,Rajiv,Manhattan,Harlem,40.82325,-73.94444,Private room,47,14,19,2019-05-26,0.54,2,210 +8975190,Fresh and great 2BR,46901221,Sandy,Brooklyn,Sheepshead Bay,40.5974,-73.96211,Entire home/apt,129,2,137,2019-07-02,3.55,2,133 +8975201,Great 2BR Apartment,46901221,Sandy,Brooklyn,Sheepshead Bay,40.59629,-73.96367,Entire home/apt,119,2,174,2019-06-30,3.88,2,65 +8980303,Serene Brooklyn Apt w/ Terrace,9903826,Robin,Brooklyn,Clinton Hill,40.68713,-73.96226,Shared room,99,3,0,,,1,0 +8984018,Quaint 1BR In West Village,3256202,Kyle,Manhattan,Chelsea,40.74044,-74.00326,Entire home/apt,225,1,0,,,1,0 +8984085,Bedroom with private bathroom & rooftop in duplex,4428757,Benjamin,Brooklyn,Crown Heights,40.6758,-73.93185,Private room,50,6,24,2018-05-13,0.54,1,0 +8985316,Upper East close to the subway PERFECT LOCATION,46941561,Maria,Manhattan,Upper East Side,40.76066,-73.96372,Entire home/apt,100,20,16,2019-05-31,0.60,1,49 +8985856,1 bdr w Private balcony Fort Greene!,27670390,Leigha,Brooklyn,Fort Greene,40.69402,-73.97274,Private room,55,1,3,2018-12-31,0.09,1,0 +8986308,King Sized Bed Park Slope,21293445,Ryan,Brooklyn,Gowanus,40.66864,-73.99484,Private room,155,1,0,,,1,0 +8986585,Williamsburg Two Bedroom/Two Bath,46946480,Danielle,Brooklyn,Williamsburg,40.71223,-73.94864,Entire home/apt,275,3,51,2017-12-03,1.14,1,0 +8987285,Beauty bedroom in 1899 gem,2948932,Natalie,Brooklyn,Bushwick,40.69689,-73.93333,Private room,65,2,6,2016-09-10,0.13,1,156 +8987462,Lux Apt by Botanic Garden & Museum,2932525,Joel,Brooklyn,Crown Heights,40.66352,-73.96005,Entire home/apt,170,3,28,2018-10-01,0.62,1,0 +8988451,New York City Living,46953097,Lauren,Bronx,Concourse Village,40.82705,-73.91337,Private room,95,2,6,2016-08-14,0.14,1,173 +8988997,Beautiful Furnished 1 Bedroom NYC Apartment,30283594,Kara,Manhattan,Chelsea,40.74569,-73.99183,Entire home/apt,129,30,0,,,121,164 +8989320,1 BEDROOM SUITE IN HARLEM FAMILY TOWNHOUSE,15105912,Maribel,Manhattan,Harlem,40.80473,-73.94763,Entire home/apt,175,3,186,2019-07-05,4.12,1,187 +8989430,Furnished Luxury 1BR apt. in the heart of NYC!,30283594,Kara,Manhattan,Chelsea,40.74463,-73.9919,Entire home/apt,136,30,0,,,121,349 +8990063,UWS/Elevator/CENTRAL/SUBWAYS/PARK,46962156,Martha,Manhattan,Upper West Side,40.78172,-73.97825,Entire home/apt,190,1,0,,,1,0 +8990116,Bright and spacious 1 bedroom,5485733,Jelena,Brooklyn,Williamsburg,40.70862,-73.95432,Entire home/apt,150,2,19,2017-10-14,0.42,1,0 +8990988,The Most Happening Hood in BK!,9060143,Amelia,Brooklyn,Bushwick,40.69502,-73.93126,Entire home/apt,75,3,6,2017-08-29,0.15,1,0 +8992423,Luxury 2BDR apt - 45 floor top view,8113248,Francesco,Manhattan,Theater District,40.75935,-73.9875,Entire home/apt,590,1,0,,,2,0 +8992666,Newly reno 1BR Harlem brownstone,579126,Banna,Manhattan,Harlem,40.80307,-73.946,Entire home/apt,169,5,0,,,1,0 +8992714,Thanksgiving in Beautiful Bed-Stuy,40552516,Henry,Brooklyn,Bedford-Stuyvesant,40.6863,-73.92635,Private room,51,1,2,2015-11-28,0.05,1,0 +8992894,CENTRAL PARK TOWNHOUSE Near Columbia Univ,46973966,Lorena,Manhattan,Harlem,40.80049,-73.95533,Entire home/apt,899,6,52,2019-06-22,1.16,2,287 +8993461,One bedroom and shared space,46976876,Carolina,Manhattan,East Village,40.72477,-73.98836,Private room,90,7,0,,,2,0 +8993857,Comfy place to stay in Brooklyn / Flatbush / 4,27974952,Alex,Brooklyn,East Flatbush,40.64601,-73.94886,Shared room,25,30,8,2017-07-01,0.18,7,343 +8993871,"Sunny bedroom with balcony, Queens",46979077,Maya,Queens,Elmhurst,40.74085,-73.89022,Private room,65,1,123,2019-06-22,2.76,2,333 +8993887,NYC.CHAUNCEY1 15.min to Manhattan.,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68003,-73.92094,Private room,42,1,122,2019-06-23,2.84,4,340 +8994025,Sunny & Spacious Room w/ Private Bathroom,12774739,Stefan,Brooklyn,Bedford-Stuyvesant,40.68654,-73.95044,Private room,40,5,12,2019-03-10,0.28,1,0 +8994058,Brooklyn Bliss 1,44929652,Lawanne,Brooklyn,East Flatbush,40.64335,-73.94888,Private room,60,2,9,2019-07-01,0.21,4,361 +8994197,1 Bedroom in the heart of Greenwich Village / SoHo,4974196,Dan,Manhattan,Greenwich Village,40.72744,-73.99979,Entire home/apt,157,3,2,2017-11-25,0.10,1,0 +8994423,1 bedroom on lower east side,2599664,Maria,Manhattan,Lower East Side,40.7154,-73.98473,Entire home/apt,170,1,1,2015-11-26,0.02,1,0 +8995042,Private room in Brooklyn,25077909,Carlos,Brooklyn,Bedford-Stuyvesant,40.68915,-73.92467,Private room,50,3,15,2019-02-28,0.33,2,217 +8995426,Manhattan skyline Rm,13813923,Maria,Queens,Long Island City,40.74417,-73.94964,Private room,55,1,33,2019-04-22,2.10,2,293 +9002096,Queen Size Bedroom with full closet,47013708,Mark,Brooklyn,Crown Heights,40.67867,-73.96276,Private room,45,3,3,2015-11-25,0.07,1,0 +9003691,Luxury Studio Apartment in NYC'S Chelsea District,30283594,Kara,Manhattan,Chelsea,40.7449,-73.99167,Entire home/apt,109,30,1,2016-10-31,0.03,121,184 +9004946,One bedroom garden apartment.,47025665,Heather,Brooklyn,Bedford-Stuyvesant,40.68973,-73.93785,Entire home/apt,105,4,131,2019-06-17,2.92,1,55 +9004969,New and stylish NYC pad with skylight,47022650,Jillian,Manhattan,East Harlem,40.79405,-73.93429,Entire home/apt,150,1,48,2019-06-23,1.07,3,326 +9005771,6 week sublet in Harlem,31666407,Nathan,Manhattan,Harlem,40.81999,-73.93933,Private room,45,14,1,2016-01-05,0.02,1,0 +9006920,Chill place in Brooklyn / Flatbush,27974952,Alex,Brooklyn,East Flatbush,40.64517,-73.94843,Shared room,40,30,5,2018-05-03,0.11,7,365 +9007591,Lg Top Flr Rm Park Slope Brownstone,25344446,Philip,Brooklyn,Park Slope,40.67037,-73.97637,Private room,105,5,32,2019-05-25,0.71,2,312 +9007767,Spacious Modern Alcove Studio 4,45595980,Tny,Manhattan,Midtown,40.76135,-73.96707,Entire home/apt,135,30,8,2018-09-09,0.19,12,282 +9010782,Quiet and Spacious luxury townhouse,7324559,William,Manhattan,Lower East Side,40.71067,-73.98695,Private room,180,1,0,,,1,0 +9011614,Bed-Stuy Brownstone,31019553,Miranda,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92576,Entire home/apt,150,1,1,2015-11-02,0.02,1,0 +9013280,Luxury studio Bedstuy Brooklyn,8011670,Joel,Brooklyn,Bedford-Stuyvesant,40.68757,-73.93032,Entire home/apt,70,2,77,2019-06-29,1.77,1,274 +9013350,Sunny Clinton Hill Apartment,4048695,Deniz,Brooklyn,Clinton Hill,40.68724,-73.96361,Entire home/apt,120,2,28,2019-06-30,0.64,1,294 +9014126,Cozy Bedroom in East Village,24622525,Hannah,Manhattan,East Village,40.7268,-73.98027,Private room,89,1,0,,,1,0 +9014320,Cute Doublebed in Lower East Side,36228511,Nieve,Manhattan,East Village,40.72247,-73.98435,Private room,100,1,5,2017-01-04,0.12,1,0 +9015649,Charming duplex Morningside Heights-Private Floor,47076540,Edlira,Manhattan,Morningside Heights,40.81111,-73.95465,Private room,125,1,27,2019-05-28,2.87,1,80 +9016650,Spacious 1 BR Apartment - Sleeps 4,24677080,Patrick,Manhattan,Upper East Side,40.77762,-73.9516,Entire home/apt,170,1,190,2019-06-17,4.36,1,260 +9022118,Single room in apartment share,8311526,Sean,Manhattan,Upper West Side,40.79807,-73.96894,Private room,80,1,1,2015-11-03,0.02,1,0 +9022913,"Stylish Townhouse, 2 large bedrooms + ensuite bths",47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93228,Private room,249,3,5,2019-07-02,0.45,3,360 +9023240,Duplex Penthouse & Private Rooftop,7366091,Harry,Brooklyn,Williamsburg,40.71623,-73.9579,Entire home/apt,350,3,4,2016-05-22,0.09,1,0 +9024193,LUXURY XLARGE/24/7 DOORMAN~MIDTOWN,2856748,Ruchi,Manhattan,Midtown,40.75251,-73.97262,Entire home/apt,175,30,0,,,49,365 +9024549,Spacious & Lofted in Williamsburg,8313697,Koppel,Brooklyn,Park Slope,40.673,-73.98076,Private room,120,20,0,,,1,365 +9024661,TRUE2BR-PRIME MIDTOWN EAST~53rd&3rd,2856748,Ruchi,Manhattan,Midtown,40.75759,-73.96902,Entire home/apt,230,30,0,,,49,332 +9024747,Tranquil Room :),47113234,Bryan,Brooklyn,Bushwick,40.69989,-73.92352,Private room,100,1,0,,,1,0 +9024874,Beautiful Apartment in East Village,410665,Jayden,Manhattan,East Village,40.7232,-73.98561,Entire home/apt,139,3,11,2018-05-28,0.25,1,0 +9025421,Charming comfy apt in hip Bushwick!,4422465,Isabel,Brooklyn,Bushwick,40.70288,-73.91506,Entire home/apt,89,4,5,2018-09-06,0.12,1,2 +9025565,Flex 2BR Loft ( 1br +Sleep Loft +Sofa Bed )!,7503643,Vida,Brooklyn,Greenpoint,40.72614,-73.94007,Entire home/apt,159,30,6,2019-06-04,0.15,52,343 +9025602,Luxury 1-Bedroom Financial District Apartment!,30283594,Kara,Manhattan,Financial District,40.70726,-74.01429,Entire home/apt,229,30,0,,,121,184 +9026203,Subway-Ocean-Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.58892,-73.97379,Private room,70,3,67,2018-10-07,1.53,2,40 +9026474,UWS 1 BR/High Ceilings/Central Park,4619655,Neil,Manhattan,Upper West Side,40.78487,-73.9754,Entire home/apt,125,1,0,,,1,0 +9026479,2 Bedroom East Village Americana Oasis,2266437,Rachel,Manhattan,East Village,40.72314,-73.97929,Entire home/apt,200,5,10,2018-12-28,0.26,1,0 +9026485,Luxury Studio Apt in NYC Financial District!,30283594,Kara,Manhattan,Financial District,40.70776,-74.01514,Entire home/apt,169,30,2,2016-06-28,0.05,121,364 +9027607,Bright West Village Apartment,19435113,Mark,Manhattan,West Village,40.73139,-74.00452,Entire home/apt,175,1,0,,,1,0 +9028399,LOWER EAST SIDE GEM,3754629,Gina,Manhattan,Lower East Side,40.71873,-73.98394,Entire home/apt,150,1,0,,,1,0 +9028493,"Charming & Spacious, 2 bedrooms in❤️of Greenpoint",24780521,Alisa,Brooklyn,Greenpoint,40.72698,-73.94911,Private room,90,1,116,2019-06-09,3.17,1,76 +9028527,Sunny duplex near Central Park,1584064,Adrienne,Manhattan,Harlem,40.80093,-73.95012,Entire home/apt,165,1,0,,,2,0 +9028589,Gramercy & Madison Park CONDO 3 BED 2BATH,47129484,Michelle,Manhattan,Gramercy,40.73744,-73.98413,Entire home/apt,305,3,175,2019-06-21,3.89,1,132 +9028839,3 bdroom apt off Montrose L,3248277,Sara,Brooklyn,Williamsburg,40.70742,-73.94185,Entire home/apt,200,3,0,,,1,0 +9029289,Stylish Boutique Apt Close to Central Park,46473604,Paul,Manhattan,Upper West Side,40.77739,-73.98231,Entire home/apt,88,29,71,2019-06-02,1.62,1,95 +9030997,ARTISTIC STUDIO FOR TWO,47139912,Claude,Manhattan,Upper East Side,40.77029,-73.95812,Entire home/apt,110,3,69,2018-09-10,1.78,1,5 +9031216,"upstairs apartment private, spacious",47140247,Hilary,Queens,Bellerose,40.72756,-73.71795,Entire home/apt,42,3,0,,,1,0 +9033081,Steps from Museum of Art,39763202,Kya & Evan,Brooklyn,Crown Heights,40.66869,-73.96022,Entire home/apt,150,2,11,2016-10-09,0.24,1,0 +9033218,HUGE room in beautiful apartment,7252221,Zhenya,Brooklyn,Flatbush,40.65061,-73.96125,Private room,50,27,6,2017-09-30,0.14,2,0 +9035181,Cute Clinton Hill brownstone apt!,15055897,Heather,Brooklyn,Clinton Hill,40.6921,-73.96603,Entire home/apt,125,3,3,2017-01-02,0.08,2,0 +9036422,Columbus Circle/Hell's Kitchen Gem,45296989,Patrick,Manhattan,Upper West Side,40.77188,-73.98847,Entire home/apt,125,7,4,2017-04-08,0.10,1,0 +9037702,An Artists' Home in Chinatown - B,254860,Ricky,Manhattan,Chinatown,40.71434,-73.99342,Private room,80,4,1,2015-11-02,0.02,1,0 +9039236,"Sunny, spacious Washington Heights!",47176167,Christopher,Manhattan,Washington Heights,40.8512,-73.93693,Private room,75,1,0,,,1,0 +9040796,Lovely Studio in Midtown,21716352,Alice,Manhattan,Kips Bay,40.74208,-73.98084,Entire home/apt,120,1,4,2016-04-01,0.10,1,0 +9040931,Queen bedroom & huge private bath,29213,Angela,Brooklyn,Fort Greene,40.68785,-73.97682,Private room,79,7,1,2015-10-23,0.02,1,0 +9042254,Beautiful & Spacious EV Bedroom,47187008,Francesca,Manhattan,East Village,40.72737,-73.98605,Private room,90,7,0,,,1,0 +9043652,Great 1 bedroom apartment in the heart of soho,6304221,Phil,Manhattan,SoHo,40.72038,-73.99818,Entire home/apt,190,2,10,2019-07-01,0.97,1,41 +9043722,Lavish 1BR in FiDi + city views,30283594,Kara,Manhattan,Financial District,40.70574,-74.00809,Entire home/apt,239,30,2,2018-06-10,0.09,121,186 +9043905,"Bright, Charming APT in West Village/SoHo",3331710,Amy,Manhattan,Greenwich Village,40.72874,-74.00122,Entire home/apt,200,2,29,2019-01-01,0.65,1,0 +9045427,Sunrise Condominium Apartment,47198995,Diana,Staten Island,Grymes Hill,40.61201,-74.09513,Entire home/apt,200,1,1,2015-11-01,0.02,1,0 +9045876,BEAUTIFUL BROWNSTONE PARLOR FLOOR,7380428,Mel,Manhattan,Harlem,40.81345,-73.94659,Entire home/apt,175,7,44,2019-06-29,0.99,3,193 +9046095,Private & Quaint West Village Gem!,12995701,Robyn,Manhattan,West Village,40.73208,-74.00393,Entire home/apt,200,4,1,2016-01-01,0.02,1,0 +9046203,Large renovated 2 bedroom apt.,47202400,Alister,Brooklyn,Bedford-Stuyvesant,40.67867,-73.92282,Entire home/apt,130,3,129,2019-06-11,2.93,1,163 +9046808,Sunny East Harlem one bedroom,21647215,Vadim,Manhattan,East Harlem,40.79717,-73.93519,Entire home/apt,95,1,2,2015-11-18,0.04,1,0 +9047417,"King Bed,Entire Home Downtown, WiFi",31153462,Talia,Manhattan,Lower East Side,40.72176,-73.99345,Entire home/apt,140,7,3,2016-01-05,0.07,1,0 +9047816,Beautiful Home 1 Stop from Midtown,2660650,Allan (& Max),Queens,Long Island City,40.74977,-73.93979,Private room,100,4,46,2019-06-29,1.18,1,284 +9048630,Upper Manhattan Inwood - Beautiful,47212879,Mary,Manhattan,Inwood,40.86703,-73.93007,Private room,75,3,1,2016-07-08,0.03,1,89 +9049505,Spacious Room in West Harlem,2413971,Teresa,Manhattan,Harlem,40.80193,-73.95573,Private room,74,1,0,,,1,0 +9049582,1 br in a spacious 2 br apt in UES,47217135,Cal,Manhattan,Upper East Side,40.7737,-73.95616,Shared room,80,1,17,2016-04-23,0.38,1,0 +9049607,Room In Central and Spacious Williamsburg Loft!,14456700,Simone,Brooklyn,Williamsburg,40.71594,-73.95991,Private room,60,2,1,2019-05-12,0.52,1,0 +9050105,"Prospect Park 3 bedroom, Sleeps 8",47219962,Babajide,Brooklyn,Prospect-Lefferts Gardens,40.66289,-73.96175,Entire home/apt,125,2,125,2019-06-30,2.79,2,229 +9050144,"Sunny Apt, Clinton Hill Brownstone",7360880,Kay,Brooklyn,Bedford-Stuyvesant,40.68532,-73.9571,Private room,80,1,2,2015-12-29,0.05,1,0 +9050373,Peaceful & Colorful Brooklyn Oasis Near Park+Train,1393469,Tatiana,Brooklyn,Flatbush,40.65228,-73.96428,Entire home/apt,97,2,22,2019-05-21,0.54,1,2 +9050597,"Charming,Quiet & Relaxing",7407846,Alison,Manhattan,Harlem,40.82642,-73.93668,Private room,79,1,0,,,1,0 +9051314,Private Room in Fab East Village,22007415,Hannah,Manhattan,East Village,40.72246,-73.97912,Private room,110,3,2,2016-06-12,0.05,1,0 +9051437,"Bright, spacious and cozy",14544355,Elizabeth,Brooklyn,Crown Heights,40.66588,-73.95677,Entire home/apt,140,3,60,2019-06-10,1.34,1,37 +9051763,"Room in 3BR Condo, FREE WASHER/DRYER",1283476,Mark,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94572,Private room,57,5,14,2019-05-29,0.37,2,216 +9052018,Near Museum Mile and Central Park,47228873,James,Manhattan,East Harlem,40.78972,-73.9503,Private room,195,1,0,,,1,0 +9057283,Renovated Modern-right on Times Sqr,2856748,Ruchi,Manhattan,Theater District,40.75891,-73.9845,Entire home/apt,175,30,0,,,49,333 +9058854,"Bright, Sunny Room in Crown Heights",10701169,Christine,Brooklyn,Crown Heights,40.67192,-73.95116,Private room,50,3,1,2016-06-30,0.03,1,0 +9059397,Spacious apartment close to 96St St,14614459,Dario,Manhattan,Upper East Side,40.7837,-73.94877,Entire home/apt,180,1,1,2016-01-05,0.02,4,0 +9061117,LOVELY 1BR. 15Min. to Times Square,4087778,Katie,Queens,Sunnyside,40.74502,-73.91355,Entire home/apt,180,3,0,,,1,0 +9061331,Sunny Harlem penthouse,4186597,Michael Francis,Manhattan,Harlem,40.80822,-73.94264,Entire home/apt,180,2,18,2019-06-13,0.42,1,29 +9062257,Spacious 1-bedroom in Crown Heights,6075567,Yasmin,Brooklyn,Crown Heights,40.67089,-73.94825,Entire home/apt,100,2,13,2018-09-09,0.31,1,0 +9062515,"Adorable, Artsy 1BR; Hip Location!",21804910,Brinn,Brooklyn,Greenpoint,40.73258,-73.95582,Entire home/apt,175,2,21,2019-05-19,1.40,1,38 +9063028,1bdr in luxury 2bdr apt - 45 floor,8113248,Francesco,Manhattan,Theater District,40.7594,-73.98634,Private room,210,3,0,,,2,0 +9063139,Prime Location & Tech Entrepreneurs,13530279,Chris,Manhattan,East Village,40.72517,-73.99023,Private room,100,3,3,2016-01-03,0.07,1,0 +9063266,Sunny 1BR in Heart of Williamsburg,47275801,Eric,Brooklyn,Williamsburg,40.71256,-73.95224,Entire home/apt,250,2,1,2015-12-06,0.02,1,0 +9063376,Pre-Thxgiving Park Slope Large 2br,3819001,Tracy,Brooklyn,South Slope,40.6647,-73.97791,Entire home/apt,55,3,0,,,2,0 +9063972,Chill Bushwick Suite,3040551,Olu Bliss,Brooklyn,Bushwick,40.69709,-73.91435,Private room,80,3,0,,,1,0 +9064238,Large 1-bedroom in midtown sleeps 1-4 people,4166175,Rob,Manhattan,Midtown,40.75454,-73.97083,Entire home/apt,103,6,0,,,1,0 +9064688,2 bedroom with yard! Near L train!,1606152,Laura,Brooklyn,Williamsburg,40.70697,-73.94291,Entire home/apt,150,1,1,2015-11-29,0.02,1,0 +9064714,1870's 3-story house private bedroom,26379512,Sheila,Queens,Long Island City,40.74495,-73.9557,Private room,90,3,34,2019-07-06,1.02,1,3 +9065297,Charming 2 Bed apt/Uptown Manhattan,17713747,Polly,Manhattan,Washington Heights,40.85479,-73.93313,Entire home/apt,150,5,6,2016-11-26,0.14,3,37 +9066389,Cozy 2 bedroom in heart of LES,47289872,Kara,Manhattan,Lower East Side,40.72004,-73.99026,Entire home/apt,190,1,2,2015-11-25,0.05,1,0 +9073600,Upper East Side 2 Bedroom Sleeps 4,6942997,Deborah,Manhattan,Upper East Side,40.7834,-73.94556,Entire home/apt,95,2,0,,,1,0 +9074702,Private Room Downtown,260958,Aura,Manhattan,Lower East Side,40.71334,-73.99025,Private room,75,1,91,2018-10-08,2.07,3,0 +9074921,Spacious Williamsburg Apartment,8163703,Mariana,Brooklyn,Williamsburg,40.71238,-73.9559,Entire home/apt,150,3,12,2016-07-19,0.28,1,0 +9074963,Lovely room available in large apt!,47329500,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.67852,-73.94377,Private room,48,15,0,,,1,0 +9075249,Spacious Ft. Greene room near subway/restaurants,7019923,Allison,Brooklyn,Clinton Hill,40.69161,-73.96572,Private room,65,30,8,2019-01-05,0.18,1,18 +9077858,Beautiful shared apartment / Coliving in Brooklyn,27974952,Alex,Brooklyn,East Flatbush,40.64509,-73.94825,Shared room,27,30,7,2019-03-20,0.16,7,342 +9078222,"Prospect Park 3 bdrm, Sleeps 8 (#2)",47219962,Babajide,Brooklyn,Prospect-Lefferts Gardens,40.66086,-73.96159,Entire home/apt,150,2,123,2019-07-01,2.74,2,263 +9078632,Private room in Manhattan,42570179,Joanne,Manhattan,Washington Heights,40.83559,-73.94552,Private room,75,2,53,2018-06-29,1.18,1,0 +9078739,Modern Williamsburg Loft Great View,1453898,Anthony,Brooklyn,Williamsburg,40.71254,-73.96849,Private room,80,2,38,2018-07-28,0.89,3,0 +9079335,Spacious Apartment in East Village,3724325,Anne-Laure,Manhattan,East Village,40.72162,-73.97923,Entire home/apt,185,2,4,2016-09-10,0.09,1,0 +9079542,Cozy room + backyard in Bushwick,2123463,Eyal,Brooklyn,Bushwick,40.69342,-73.91116,Private room,55,1,2,2016-10-01,0.05,1,0 +9079628,ღ Spacious and chill studio 웃♥유,46019410,Regina,Brooklyn,Sheepshead Bay,40.59631,-73.95743,Entire home/apt,98,2,12,2018-06-24,0.27,1,320 +9079871,NYCHaven1: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65422,-73.93784,Entire home/apt,165,1,232,2019-06-23,5.18,4,231 +9080286,Quiet room close to subway.,47353889,Marcelo,Brooklyn,Prospect Heights,40.67939,-73.97126,Private room,75,4,40,2016-09-30,0.89,1,0 +9087285,Modern Upper East Side Studio,34398769,Sean,Manhattan,Upper East Side,40.76773,-73.95456,Entire home/apt,145,1,3,2016-01-02,0.07,1,0 +9089306,"East Village, 1 Bed, Clean & Clear.",5671308,Jordan,Manhattan,East Village,40.73164,-73.98454,Entire home/apt,135,3,10,2016-03-24,0.23,1,0 +9089397,"Hosting single travelers, Weekends",47394476,Alexander,Queens,Astoria,40.76352,-73.91353,Private room,50,2,1,2015-11-03,0.02,1,0 +9090351,"Huge TriBeCa Loft, Shared Space 1Br",47399155,Dan,Manhattan,Tribeca,40.72024,-74.00866,Private room,100,1,25,2017-10-20,0.72,1,0 +9091373,Cozy and Creative in Clinton Hill,3829471,Julian,Brooklyn,Bedford-Stuyvesant,40.69045,-73.95852,Private room,100,6,0,,,1,0 +9091710,Sunny East Village Apartment,47403089,Kathleen,Manhattan,East Village,40.72281,-73.97768,Entire home/apt,130,1,6,2015-12-30,0.13,1,0 +9092024,Enjoy a Private Room in SoHo,47406119,Jacqueline,Manhattan,SoHo,40.72558,-74.00195,Private room,145,2,1,2015-10-27,0.02,1,0 +9092331,"Large, beautiful and sunny room",47407352,Dorota,Manhattan,Inwood,40.86444,-73.92899,Private room,45,5,0,,,1,0 +9092903,"Cosy Loft, Studio - lots of light",552067,Miriam,Brooklyn,Williamsburg,40.70994,-73.94915,Entire home/apt,120,7,9,2018-12-11,0.21,1,0 +9093219,Serenity Space,47411697,Marie,Manhattan,Harlem,40.81185,-73.94579,Private room,90,2,67,2019-06-22,1.54,1,211 +9093261,Large East Village 1 bedroom,47036828,David,Manhattan,East Village,40.732,-73.98518,Entire home/apt,190,1,0,,,1,0 +9093358,2 bedroom apt on Upper East Side,8093077,Annie,Manhattan,Upper East Side,40.76717,-73.95317,Entire home/apt,250,2,3,2016-07-30,0.07,1,0 +9093389,Studio Apartment in Brooklyn,38738475,Homero,Brooklyn,Park Slope,40.67036,-73.97776,Entire home/apt,90,5,1,2016-01-05,0.02,1,0 +9093866,2-bedroom in Landmark building on W116th. Special,47414802,Jason,Manhattan,Harlem,40.8035,-73.95105,Entire home/apt,165,120,7,2018-08-08,0.22,2,139 +9093991,Beautiful East Village Apartment,4655737,Saara,Manhattan,East Village,40.72742,-73.98968,Entire home/apt,175,5,9,2017-08-27,0.20,1,0 +9096381,Brownstone apt in historic Brooklyn,2653685,Marisa & Tom,Brooklyn,Bedford-Stuyvesant,40.68282,-73.93289,Entire home/apt,120,2,74,2019-07-01,1.65,1,333 +9096478,"Open, private room, Central Harlem",47426195,Shawn,Manhattan,Harlem,40.80891,-73.94113,Private room,85,1,3,2017-10-22,0.07,1,0 +9096630,Apartment in Lower Manhattan,23948552,Chikezie,Manhattan,Chinatown,40.71544,-73.99106,Private room,90,1,1,2015-10-28,0.02,1,0 +9096938,Sunny plant-filled Park Slope apt,14356,Amy,Brooklyn,South Slope,40.66255,-73.983,Private room,70,6,9,2017-08-31,0.21,1,0 +9104108,Cozy Large 1 BR Apt -Hamilton Hts,47457325,Miranda,Manhattan,Harlem,40.8239,-73.95393,Entire home/apt,110,3,1,2015-11-29,0.02,1,0 +9104505,Fully-Furnished 1-BR New York City Apt,30283594,Kara,Manhattan,Financial District,40.70535,-74.00672,Entire home/apt,239,30,0,,,121,186 +9104995,Times Square Area Neat & clean all inclusive AAA+,22251283,Nir,Manhattan,Hell's Kitchen,40.75633,-73.99439,Entire home/apt,125,30,8,2019-05-31,0.30,4,56 +9105223,Modernly Furnished 1 Bedroom Apt in FiDi,30283594,Kara,Manhattan,Financial District,40.70358,-74.00824,Entire home/apt,239,30,0,,,121,186 +9105853,Cushy Room in Cool Bk Neighborhood,32848328,Barbra,Brooklyn,Bushwick,40.70107,-73.91983,Private room,55,1,0,,,1,0 +9106735,West Village Apartment,29721928,Isabella,Manhattan,West Village,40.73001,-74.00369,Entire home/apt,195,3,5,2017-03-12,0.14,1,0 +9106756,Santuary from the City - Sunny Greenpoint Apt,1692708,Rebecca,Brooklyn,Greenpoint,40.72782,-73.95459,Entire home/apt,150,14,0,,,1,42 +9106907,"2 Private Rooms for price of 1, Downtown NYC",23338493,Ryan,Manhattan,Chinatown,40.71665,-73.99633,Private room,104,3,65,2017-05-26,1.46,1,0 +9107046,"Charming Room in East Village, NY",4336010,Audrey,Manhattan,East Village,40.72786,-73.98693,Private room,95,3,0,,,1,0 +9107118,Bright loft style room in Bed-Stuy,42786873,Geoffrey,Brooklyn,Bedford-Stuyvesant,40.6948,-73.94161,Private room,45,1,2,2015-11-02,0.04,1,0 +9107450,Spacious 2BR apt in UES,3664194,Michael,Manhattan,Upper East Side,40.78419,-73.94851,Entire home/apt,210,5,0,,,1,0 +9107626,Luxurious studio apt. across from Battery Park!,30283594,Kara,Manhattan,Financial District,40.70415,-74.00688,Entire home/apt,189,30,0,,,121,365 +9107681,A Dreamy Brooklyn Solarium nearby Prospect Park!,16154600,Kai,Brooklyn,Kensington,40.64584,-73.97303,Private room,40,4,1,2016-01-02,0.02,1,0 +9107772,Beautiful 1-Bedroom near Columbia!,4055295,Sara,Manhattan,Harlem,40.82673,-73.94995,Entire home/apt,100,2,17,2016-12-27,0.39,1,0 +9107788,Brownstone in Heart of West Village,301887,Andres,Manhattan,West Village,40.73658,-74.00121,Entire home/apt,295,4,2,2016-07-23,0.05,1,0 +9107846,UWS Lovely NYC Home - Private Entry&Bath,6509584,Lila,Manhattan,Upper West Side,40.80059,-73.96552,Entire home/apt,75,1,123,2019-07-01,2.89,1,80 +9108196,Cozy Room,45601111,Dlb,Queens,Laurelton,40.67106,-73.74833,Private room,34,2,71,2019-01-29,1.72,5,282 +9108295,"2 bedroom apt in Bushwick, Brooklyn",2581079,Harriet,Brooklyn,Bushwick,40.70246,-73.91756,Entire home/apt,200,5,0,,,1,0 +9110077,Room in East Williamsburg,19885346,Mireia,Brooklyn,Williamsburg,40.70448,-73.94208,Private room,75,3,6,2016-08-16,0.16,1,0 +9110135,Affordable stay in NYC,7486909,Allie,Manhattan,East Harlem,40.79311,-73.93928,Entire home/apt,110,1,85,2019-05-06,1.90,1,304 +9111561,"East Harlem Cozy, Rustic Apartment!",35905254,Rose,Manhattan,East Harlem,40.79423,-73.94214,Private room,100,1,0,,,1,0 +9112240,Charming East Village/ABC City 1 Bedroom Apt,2069753,Jessica,Manhattan,East Village,40.73014,-73.98019,Entire home/apt,185,2,2,2016-09-25,0.06,1,0 +9112463,"Cozy 1 bedroom, close to it all in Manhattan !",39916377,Jaclyn,Manhattan,Upper East Side,40.76295,-73.95725,Entire home/apt,145,6,49,2019-06-21,2.38,1,76 +9112676,"!! CLASSIC, LUXURY & CHARM !! By Central Park UWS",1202621,Lizzy And Ryan,Manhattan,Upper West Side,40.78607,-73.97347,Entire home/apt,250,7,34,2019-06-30,0.78,1,147 +9112776,"Spacious, Comfortable BK Room",47489718,Eric,Brooklyn,Bedford-Stuyvesant,40.68516,-73.9533,Private room,55,2,0,,,1,0 +9113032,Large 1 Bedroom apartment in 1897 landmarked house,15175378,Missy & Julien,Brooklyn,Crown Heights,40.67594,-73.94839,Entire home/apt,145,5,98,2019-06-29,2.26,2,88 +9113702,"Beautiful Apartment in Harlem, NY!",47493116,Elsa,Manhattan,Harlem,40.8243,-73.94258,Entire home/apt,150,1,0,,,1,0 +9114642,Large 1Br in Brooklyn cottage,7390259,Sean,Brooklyn,Williamsburg,40.71591,-73.95695,Private room,70,6,0,,,1,0 +9114773,Cozy Upper East Side 1 bedroom apt,47408505,Anya,Manhattan,Upper East Side,40.77038,-73.95829,Entire home/apt,195,4,4,2016-05-14,0.09,1,0 +9115251,Midtown East Room,27012583,Dasha,Manhattan,Midtown,40.7606,-73.97181,Private room,86,1,3,2015-11-02,0.07,1,0 +9115536,Peaceful,47500192,Satvic,Brooklyn,Prospect-Lefferts Gardens,40.66059,-73.95842,Entire home/apt,120,5,0,,,1,190 +9115832,Lge bedroom (2 pers) in Bushwick,47501348,Margot,Brooklyn,Bushwick,40.69824,-73.93231,Private room,60,1,0,,,1,0 +9116018,Full-Sized Harlem Room with Style,12690012,Sonskeshana,Manhattan,Harlem,40.83013,-73.94112,Private room,65,3,17,2019-04-18,0.39,1,280 +9116126,Sunny Vibrant Historic 1 Bdrm Apt on CENTRAL PARK,3883685,Dan,Manhattan,Upper West Side,40.78627,-73.97112,Entire home/apt,199,28,17,2019-06-04,0.63,1,114 +9116734,"Large, fully renovated room in Brooklyn, Bed-Stuy!",20318052,Laura,Brooklyn,Bedford-Stuyvesant,40.69587,-73.9453,Private room,55,2,67,2019-06-23,1.72,2,110 +9116752,!Spacious & Modern Brooklyn Loft!,8862886,Rachel,Brooklyn,Bushwick,40.70842,-73.9208,Entire home/apt,150,2,40,2018-09-03,0.90,1,0 +9116831,1 Bedroom w/ GARDEN -Williamsburg,3922367,Christophe,Brooklyn,Williamsburg,40.71617,-73.95395,Entire home/apt,165,4,0,,,1,0 +9116868,"Gorgeous, Cozy Studio w/ Projector!",8503277,Cathy,Manhattan,East Village,40.7281,-73.97952,Entire home/apt,100,5,3,2018-01-13,0.07,1,0 +9117817,CLASSY BROWNSTONE FOR UP TO 5!! Fee for extra beds,46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68357,-73.94126,Entire home/apt,149,2,26,2019-06-23,0.67,3,360 +9117976,Cozy Artistic Haven,41510712,Jac,Manhattan,Harlem,40.82827,-73.9493,Private room,36,1,1,2015-12-27,0.02,1,0 +9118958,Nice Room in private house,22420999,Herman,Queens,Richmond Hill,40.69417,-73.83072,Private room,50,2,3,2018-01-07,0.08,5,346 +9121896,1 RED BEDROOM IN 3 BEDROOMS APT,7858210,Maxime,Manhattan,Harlem,40.81614,-73.94116,Private room,50,2,66,2019-05-29,1.51,4,180 +9125862,Luxury large one-bedroom apartment,47541749,Aline,Manhattan,Midtown,40.75807,-73.96308,Entire home/apt,300,1,0,,,1,0 +9125917,Cosy private room in the City !,20233581,Sofia,Manhattan,Kips Bay,40.73833,-73.98058,Private room,73,1,4,2016-01-05,0.09,1,0 +9125932,Modern and Quaint (long term 3 weeks or more),1519189,Annie,Brooklyn,Bedford-Stuyvesant,40.69342,-73.94322,Entire home/apt,100,15,3,2016-08-01,0.07,2,211 +9127011,Luxury 1 Bed apt in the heart of chelsea,19627702,Andrea,Manhattan,Chelsea,40.74384,-73.99383,Entire home/apt,193,1,8,2017-12-30,0.23,1,0 +9127163,Quiet retreat- exclusive. Access NYC attractions.,47546771,June,Queens,Holliswood,40.72402,-73.76828,Private room,79,3,4,2019-06-02,0.31,1,180 +9128491,Rooftop View from Brooklyn,47549695,Lena,Brooklyn,Crown Heights,40.67846,-73.96242,Private room,60,4,2,2016-05-28,0.05,1,0 +9129113,Private Room in Bushwick - Brooklyn,17497762,Marco,Brooklyn,Bushwick,40.69836,-73.9212,Private room,60,3,1,2015-12-14,0.02,1,0 +9130275,The BEST LOCATION in MANHATTAN!,47556575,Kira,Manhattan,Gramercy,40.7356,-73.99049,Entire home/apt,159,1,188,2018-11-20,4.19,1,157 +9132614,Room in the heart of Williamsburg,9870919,Sebastian,Brooklyn,Williamsburg,40.71253,-73.96023,Private room,75,4,2,2017-07-07,0.04,1,0 +9132731,"2800 SQ FT Loft for Off-Sites, Events, & Shoots",6674503,Evelyn,Brooklyn,Clinton Hill,40.68567,-73.96272,Entire home/apt,750,1,6,2019-06-14,0.17,1,365 +9132760,"Private Room, Upper East Side",14829766,Jake,Manhattan,Upper East Side,40.77549,-73.95196,Private room,235,1,2,2015-11-06,0.04,1,0 +9132807,Modernly Furnished Studio Apt in Midtown NYC,30283594,Kara,Manhattan,Midtown,40.75242,-73.97187,Entire home/apt,139,30,0,,,121,360 +9133278,This Empty Nest is the Best!,25459,Christine,Manhattan,Harlem,40.82711,-73.93989,Private room,41,1,124,2019-06-25,2.78,2,37 +9133645,Whole floor apt in old 5 points,7202402,Ross,Manhattan,Chinatown,40.71381,-73.99784,Entire home/apt,220,2,93,2019-06-22,2.48,2,293 +9133959,"Top floor, Hudson River views",3092054,Shirley,Manhattan,Hell's Kitchen,40.76642,-73.98621,Entire home/apt,120,360,0,,,1,365 +9136581,East Village,47584049,Jonathan,Manhattan,East Village,40.72524,-73.9882,Entire home/apt,180,4,5,2016-11-27,0.11,1,0 +9136814,NYC Midtown APT near Time Square,44034234,Jay,Manhattan,Hell's Kitchen,40.75911,-73.98932,Entire home/apt,185,6,10,2018-11-27,0.23,1,0 +9137194,East Village Large Studio,15278522,Matt,Manhattan,East Village,40.72479,-73.98849,Entire home/apt,225,2,1,2016-01-05,0.02,1,0 +9137941,1 BR UES Apartment,4223044,Alexandra,Manhattan,Upper East Side,40.77012,-73.95777,Entire home/apt,200,1,0,,,1,0 +9138319,Huge 2BR in the heart of Brooklyn,2264413,Zachary,Brooklyn,Prospect-Lefferts Gardens,40.65838,-73.96048,Entire home/apt,150,2,9,2018-12-29,0.21,1,6 +9138664,Private Lg Room 15 min to Manhattan,47594947,Iris,Queens,Sunnyside,40.74271,-73.92493,Private room,74,2,6,2019-05-26,0.13,1,5 +9140055,Room and Breakfast - Room 1,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92926,Private room,49,1,136,2019-07-07,3.05,3,200 +9144999,Central and Vibrant Chelsea Home,47621361,Denise,Manhattan,Chelsea,40.74526,-73.99545,Private room,140,14,1,2016-01-01,0.02,1,0 +9145070,Great Deal! Steps to Central Park,3025128,David,Manhattan,Upper West Side,40.77942,-73.97627,Entire home/apt,180,1,43,2016-08-27,0.98,1,0 +9145150,Lrg Private Bedroom in Williamsburg,31980952,Emily,Brooklyn,Williamsburg,40.71076,-73.96328,Private room,50,3,2,2015-12-29,0.05,1,0 +9145202,Room near JFK Queen Bed,47621202,Dona,Queens,Jamaica,40.6673,-73.76831,Private room,47,1,629,2019-07-05,14.58,2,333 +9146175,BRAND NEW RENOVATED 2BR~TIMES SQR,2856748,Ruchi,Manhattan,Midtown,40.75687,-73.97321,Entire home/apt,245,30,1,2016-08-15,0.03,49,331 +9146595,Super cozy private 1 bedroom garden apartment,835110,Charlotte,Brooklyn,Bedford-Stuyvesant,40.68984,-73.92703,Entire home/apt,115,1,131,2019-06-23,2.92,1,241 +9146709,Beautiful Private Rm in Trendy Area,47627249,Colin,Brooklyn,Bushwick,40.69907,-73.92723,Private room,50,7,1,2016-01-02,0.02,1,0 +9147025,Cozy City Island Cottage,403032,Diane,Bronx,City Island,40.84487,-73.78954,Entire home/apt,110,2,112,2019-07-01,2.60,1,162 +9147431,Lge Rm Middle Park Slope Brownstone,25344446,Philip,Brooklyn,Park Slope,40.67143,-73.97538,Private room,125,5,26,2019-05-20,0.59,2,292 +9148875,Lovely E. Harlem Brownstone PH,3201337,Diego,Manhattan,East Harlem,40.79779,-73.93648,Entire home/apt,150,3,90,2019-06-25,2.11,2,37 +9149182,a,47636934,Rob,Manhattan,Kips Bay,40.73975,-73.98073,Entire home/apt,139,1,1,2015-11-09,0.02,1,0 +9149435,Bright and Spacious Park Slope 1BR,46561509,John,Brooklyn,Park Slope,40.67286,-73.97133,Entire home/apt,220,1,0,,,1,0 +9149930,Prime west village ~Charming 1BR,2119276,Host,Manhattan,West Village,40.73533,-74.00378,Entire home/apt,150,30,10,2019-01-25,0.39,39,241 +9150194,Sunny Private Room nr 4 Train Lines,22489244,Jared,Brooklyn,Williamsburg,40.7048,-73.94294,Private room,79,2,78,2019-06-12,1.91,1,58 +9151490,Wdful 2 br/2bth apt in Williamsbug,8133069,Maria,Brooklyn,Williamsburg,40.70919,-73.94804,Entire home/apt,240,1,1,2017-10-09,0.05,1,0 +9151677,Light filled apt. on quiet street,40880743,Soph,Brooklyn,Clinton Hill,40.68481,-73.9656,Entire home/apt,115,5,1,2015-11-06,0.02,1,0 +9152795,Studio Bedroom Apt in Williamsburg,1443812,Luciana,Brooklyn,Williamsburg,40.71083,-73.96401,Entire home/apt,120,3,184,2019-06-27,4.10,2,262 +9152932,Spacious Duplex w/ Additional Loft.,4313126,Andy,Brooklyn,Bushwick,40.69844,-73.9334,Entire home/apt,200,1,1,2015-11-27,0.02,2,0 +9152965,Spacious Duplex w/ additional loft.,4313126,Andy,Brooklyn,Bushwick,40.69885,-73.93371,Entire home/apt,200,10,1,2016-01-07,0.02,2,0 +9153256,NEWLY RENOVATED 1BDR PRIME LOCATION,9787825,Rebecca,Manhattan,Flatiron District,40.74283,-73.99246,Entire home/apt,150,7,1,2017-07-29,0.04,1,0 +9155206,2 BATHS & 2 BEDROOMS IN PENTHOUSE!,46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68271,-73.94038,Entire home/apt,165,2,53,2019-06-22,1.24,3,289 +9155212,Affordable & Cozy East Village Room,47661247,Lydia,Manhattan,East Village,40.72525,-73.98691,Private room,85,6,10,2019-01-02,0.23,1,36 +9155475,Prime Chelsea 1BR Minimalist W16th,4900788,Jonathan,Manhattan,Chelsea,40.73868,-73.99647,Entire home/apt,130,2,4,2016-04-01,0.10,1,0 +9155741,1 private bedroom,47663806,Anshu,Manhattan,Kips Bay,40.7427,-73.98231,Private room,85,1,1,2015-11-08,0.02,1,0 +9156676,2 Bedrooms 100% Private,43825074,Masud,Brooklyn,Cypress Hills,40.6845,-73.87706,Entire home/apt,90,3,82,2019-06-24,1.83,3,351 +9157504,曼哈顿上西区比邻哥伦比亚大学一室一厅可住2-3人温馨小屋,47672492,Jingyi,Manhattan,Morningside Heights,40.80447,-73.96621,Private room,120,1,0,,,1,0 +9162161,Huge new modern chic reno 2 bed TSQ,914838,Lior,Manhattan,Hell's Kitchen,40.76321,-73.99297,Entire home/apt,70,20,2,2018-05-18,0.06,7,341 +9165191,Sunny Garden Facing Bedroom,16947579,Hayet,Brooklyn,Bedford-Stuyvesant,40.68201,-73.93802,Private room,40,5,8,2019-05-26,0.23,1,289 +9166769,Zen State,44087298,Catherine,Manhattan,Washington Heights,40.84699,-73.9362,Private room,55,7,24,2018-01-01,0.54,2,0 +9167889,A Unique studio apartment,17943391,Michael,Manhattan,Harlem,40.80843,-73.94125,Entire home/apt,130,2,210,2019-07-04,4.73,2,237 +9168009,Room available in Midtown West NYC,47577737,Ye,Manhattan,Midtown,40.7662,-73.98321,Private room,60,3,1,2016-04-24,0.03,1,0 +9168809,Guest Room with Queen Bed.,47718277,Steven And John,Brooklyn,Bedford-Stuyvesant,40.68878,-73.93109,Private room,65,1,71,2018-11-12,1.61,1,0 +9170129,New Apt -2 Blocks CENTRAL PARK Near COLUMBIA UNIV,46973966,Lorena,Manhattan,Harlem,40.79939,-73.9547,Entire home/apt,249,7,107,2019-06-23,2.40,2,249 +9171140,Private Room PRIME Williamsburg!!,12986471,Grayson,Brooklyn,Williamsburg,40.71984,-73.9588,Private room,75,1,1,2015-11-25,0.02,1,0 +9172067,2 BR Pent House Loft in NYC!,47731857,Gerard,Manhattan,Chelsea,40.74809,-73.99272,Entire home/apt,500,2,2,2016-02-08,0.05,1,0 +9172192,"2BR 30days MIN! Less than 30, BOOK MY ROOMS BELOW!",47705853,Katherine,Manhattan,Hell's Kitchen,40.75525,-73.99412,Entire home/apt,169,1,66,2017-08-28,1.51,3,231 +9172277,Chic and Rustic Townhouse,6615642,Derek,Brooklyn,Crown Heights,40.67342,-73.9561,Entire home/apt,300,4,0,,,1,0 +9173061,Walk to Times Square and More!,8167329,Katie,Manhattan,Hell's Kitchen,40.76236,-73.99261,Entire home/apt,95,1,6,2016-05-16,0.14,1,0 +9173352,Beautiful Brooklyn Apartment Share (Yellow Room),706623,Emilia,Brooklyn,Bushwick,40.69513,-73.90881,Private room,69,1,0,,,4,334 +9174180,Entire Apartment-Brooklyn heights,12901128,Yasmin,Brooklyn,Brooklyn Heights,40.69927,-73.994,Private room,240,1,0,,,1,0 +9175286,"Quiet studio in the UES, Manhattan",47741973,Agnieszka,Manhattan,Upper East Side,40.76935,-73.95381,Entire home/apt,120,3,1,2015-11-10,0.02,1,0 +9175459,"Location, Location, Location Meat Packing District",10621862,Shawn,Manhattan,Chelsea,40.74236,-74.00656,Entire home/apt,180,4,13,2019-06-26,0.35,1,4 +9178165,Great Space.. Central Park Area!,527811,D. Christopher,Manhattan,Harlem,40.79724,-73.94968,Private room,80,1,200,2019-06-23,4.51,1,58 +9181483,My Casa Ur Home Away From Home,47773961,Jhovana,Manhattan,East Village,40.72403,-73.97741,Private room,90,4,72,2019-06-27,1.62,1,63 +9182008,Huge beautiful 2 bedroom Apt in BEST Area,16176030,Amal,Queens,Ditmars Steinway,40.77497,-73.91425,Entire home/apt,140,4,11,2017-08-26,0.25,1,38 +9182754,Charming Apartment in East Village,9859148,Jacob,Manhattan,East Village,40.72603,-73.98614,Entire home/apt,200,1,1,2016-01-03,0.02,1,0 +9183131,Private room in unique Chelsea loft,872654,Adam,Manhattan,Chelsea,40.74406,-73.99287,Private room,139,1,3,2015-12-20,0.07,1,0 +9184688,BEAUTIFUL APT ON CENTRAL PARK WEST,8737065,Barbara And Dan,Manhattan,Upper West Side,40.79644,-73.96135,Entire home/apt,250,7,0,,,1,0 +9184982,Cozy Bedroom in Harlem,31291159,Sean,Manhattan,Harlem,40.81686,-73.94129,Private room,47,7,2,2015-12-09,0.04,1,0 +9185329,"Sunny, Spacious, Botanical Greenpoint 1 Bdrm",17615713,Merrily,Brooklyn,Greenpoint,40.72697,-73.94712,Entire home/apt,108,7,19,2019-06-21,0.43,1,21 +9185689,"Homie,cozy,artsy,warm,sweet,Harlem!",47790612,Hannah,Manhattan,Harlem,40.81344,-73.95007,Entire home/apt,85,1,0,,,1,0 +9185696,Excellent 1 Bedroom Apt. in Queens,47790995,Harman,Queens,Queens Village,40.71846,-73.75584,Entire home/apt,75,5,85,2019-05-25,1.90,1,332 +9185754,A Tree Grows in Brooklyn,46547144,Jane,Brooklyn,Williamsburg,40.70782,-73.95462,Private room,60,1,2,2015-11-23,0.05,1,0 +9186894,Cozy large and sunny bedroom in Greenpoint,6217827,Krzysztof,Brooklyn,Greenpoint,40.73051,-73.95496,Private room,80,2,2,2016-05-16,0.05,1,0 +9187221,Sunny room in the heart of Bushwick,36297318,Josh,Brooklyn,Bushwick,40.70269,-73.92626,Private room,60,1,0,,,1,0 +9187379,"The room . 25 min to time square, Midway LGA/JFK",1495355,John,Queens,Forest Hills,40.7232,-73.84426,Private room,50,1,9,2019-04-21,0.42,2,0 +9191908,Studio in the Financial District,14340851,Sophia,Manhattan,Financial District,40.70437,-74.00952,Entire home/apt,120,2,0,,,1,0 +9193390,Luxury stay near Lincoln Center NYC,47825300,Sid,Manhattan,Upper West Side,40.77616,-73.98974,Private room,300,1,0,,,1,0 +9194620,NYC Loft Living Close to Everything!,3129612,Jonathan,Manhattan,Upper East Side,40.7605,-73.96053,Entire home/apt,275,30,4,2016-08-20,0.09,1,253 +9195534,"Park Slope 1 Bed, Roofdeck, Laundry",47835171,Lynette,Brooklyn,Park Slope,40.67384,-73.97765,Private room,100,1,0,,,1,0 +9196297,in the heart of the Upper East Side,34907341,Ragan,Manhattan,Upper East Side,40.76579,-73.96168,Private room,65,2,24,2016-12-27,0.54,1,0 +9196408,Large Sunny Room in West Harlem,47838741,Ibrahima,Manhattan,Harlem,40.82411,-73.94404,Private room,65,5,2,2016-01-05,0.05,1,159 +9197311,Stunning 3 BR Apartment Fort Greene,26474885,Alvaro,Brooklyn,Clinton Hill,40.69517,-73.96702,Entire home/apt,350,3,0,,,1,0 +9197829,"Spacious, Bright and Comfortable",7897952,Nima,Brooklyn,Gowanus,40.67652,-73.99682,Entire home/apt,132,1,1,2015-12-01,0.02,1,0 +9199020,COMFY SOFA BED IN MY 1 BEDROOM APT!,40236486,Priscilla,Manhattan,Washington Heights,40.8398,-73.9385,Shared room,35,1,25,2019-05-24,0.63,3,55 +9199352,"Sunny, charming Soho studio",1459609,Tift,Manhattan,Greenwich Village,40.72796,-74.00194,Entire home/apt,150,7,0,,,1,0 +9201458,Gorgeous bedroom near Central Park,13794250,Jackie,Manhattan,Upper West Side,40.78107,-73.97817,Private room,75,5,1,2015-11-21,0.02,1,0 +9201479,Chelsea NYC Shared Apartment,47860375,Todd,Manhattan,Chelsea,40.74188,-73.99865,Private room,100,1,2,2015-12-03,0.05,1,0 +9201989,"Peaceful, Sun-drenched Apartment in Vibrant Area",39939246,Sara,Brooklyn,Clinton Hill,40.68363,-73.96305,Entire home/apt,89,3,3,2017-12-28,0.07,1,0 +9207023,Clean private room with bathroom,47886371,Megan,Brooklyn,Midwood,40.62402,-73.97071,Private room,50,1,1,2015-12-29,0.02,1,0 +9207124,West 57th Street by Hilton Club,25798603,Jill,Manhattan,Midtown,40.76331,-73.97911,Private room,300,3,0,,,1,0 +9208886,Cozy SpaHa Apartment,47893591,Stephen,Manhattan,East Harlem,40.79804,-73.93127,Private room,50,13,0,,,1,0 +9211087,Midtown 2B/2BTH w large living room,47903548,Juan,Manhattan,Midtown,40.75505,-73.96714,Entire home/apt,400,1,0,,,1,0 +9211258,Midtown Hells Kitch. Next to Timesq,36430529,Bharathi,Manhattan,Hell's Kitchen,40.75997,-73.99265,Entire home/apt,250,2,0,,,1,0 +9211534,"Spacious, Private Room For Rent",43846246,Zoey,Queens,Astoria,40.76547,-73.92079,Private room,70,1,0,,,1,0 +9211969,Upper East Side At Its Best,17634934,Zahra,Manhattan,Upper East Side,40.78179,-73.947,Entire home/apt,135,1,0,,,1,0 +9212510,Spacious 2-Bedroom near Highline,28570275,Brian,Manhattan,Chelsea,40.74799,-73.99993,Entire home/apt,450,2,9,2018-04-16,0.23,1,0 +9214148,Spacious One Bedroom,47917120,Christina,Manhattan,East Harlem,40.78748,-73.95102,Entire home/apt,80,2,2,2018-10-09,0.05,1,0 +9215307,Beautiful Room: Charming Apt Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71292,-73.96215,Private room,90,1,46,2019-06-09,1.04,3,16 +9216664,Brand New Chic Building-Fort Greene,1651250,Shervin,Brooklyn,Fort Greene,40.68766,-73.97837,Private room,100,1,1,2016-08-01,0.03,2,0 +9217460,2 bedroom Artist's Sunny top floor Brownstone apt,19648898,Debra,Manhattan,Harlem,40.80542,-73.9455,Entire home/apt,90,3,1,2016-06-12,0.03,1,0 +9217592,Charming + Spacious Brownstone Apt,881301,Camillia,Brooklyn,Clinton Hill,40.68356,-73.96152,Entire home/apt,145,3,3,2019-06-17,0.07,1,0 +9217707,Sunny and charming one bedroom,47932600,Marina,Queens,Rego Park,40.7303,-73.86674,Entire home/apt,125,5,6,2018-09-04,0.16,1,157 +9217745,Artsy Loft In Prime Location,13318184,Rebecca,Brooklyn,Williamsburg,40.70521,-73.93623,Private room,50,1,2,2015-11-12,0.04,4,0 +9217837,Quaint South Slope Retreat,8838044,Aaron,Brooklyn,South Slope,40.66249,-73.98704,Entire home/apt,150,3,34,2019-05-01,0.77,1,0 +9218051,"Welcoming, Clean, Cheap on St Marks",20123860,Chase,Manhattan,East Village,40.72647,-73.98379,Private room,95,1,2,2015-11-10,0.04,2,0 +9219569,"Quiet, cozy, and big Bushwick Apt!",47672228,Danielle,Brooklyn,Bushwick,40.69064,-73.921,Entire home/apt,125,1,9,2016-07-23,0.21,1,0 +9219588,"Cozy, yet Spacious Apt in Astoria!",12864943,Tegan,Queens,Astoria,40.75855,-73.91021,Entire home/apt,120,1,1,2015-12-27,0.02,2,0 +9222165,Upscale 3 Bedrooms + 2 Bath Apt +Washer/Dryer,47952362,Ys,Manhattan,Upper East Side,40.77707,-73.94994,Entire home/apt,400,3,124,2019-06-30,2.82,1,245 +9227929,Manhattan Townhome Garden Apartment,2807798,Sean,Manhattan,Harlem,40.82993,-73.9435,Entire home/apt,201,1,162,2019-07-05,4.46,2,73 +9230523,Cozy private space,15565209,Violette,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95703,Private room,50,2,38,2017-12-09,1.06,1,98 +9230605,Times Square,47985489,Sam,Manhattan,Hell's Kitchen,40.76018,-73.98916,Entire home/apt,199,2,5,2016-05-19,0.11,1,0 +9230690,Cosy and quiet Williamsburg room,8439782,Tim,Brooklyn,Williamsburg,40.71322,-73.95199,Private room,49,5,0,,,1,0 +9230738,Charming 1-bed apt w/ private deck,4031222,Romain,Manhattan,Upper West Side,40.77431,-73.97883,Entire home/apt,185,5,14,2019-04-21,0.38,1,4 +9231083,Beautiful Loft Home in Bushwick!,20956615,Cheryl,Brooklyn,Bedford-Stuyvesant,40.68698,-73.91861,Private room,85,1,8,2018-09-04,0.19,1,364 +9231257,Cozy Studio,45168846,Hang,Brooklyn,Flatbush,40.64631,-73.96258,Entire home/apt,89,1,0,,,1,0 +9231341,BRIGHT AND HUGE ROOM - BED STY BK,14667282,Pénélope,Brooklyn,Bedford-Stuyvesant,40.69436,-73.93144,Private room,100,1,0,,,1,0 +9231791,Hip Bushwick apartment,47989547,Hannah,Brooklyn,Bushwick,40.69647,-73.92495,Private room,60,1,3,2016-05-01,0.07,1,0 +9232861,Midtown East Modern Alcove Studio 5,45595980,Tny,Manhattan,Midtown,40.7598,-73.96684,Entire home/apt,132,30,5,2019-05-01,0.13,12,220 +9233068,Williamsburg Brooklyn 1 Bedroom,42528111,Heejoo,Brooklyn,Greenpoint,40.71964,-73.94719,Entire home/apt,125,2,0,,,1,0 +9233338,"Quiet, cozy, sunlit Brooklyn home",47995413,Sethu,Brooklyn,Flatbush,40.64873,-73.96419,Entire home/apt,100,1,10,2016-07-17,0.23,1,0 +9233883,Artsist's NYC Downtown Luxury Loft,43538528,Andrea,Manhattan,Financial District,40.7092,-74.00699,Entire home/apt,175,5,0,,,1,0 +9235437,"Luxury Midtown West 1BR w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.7602,-73.99868,Entire home/apt,304,30,0,,,3,176 +9236348,Spacious two bedroom with backyard,48007438,Daniel,Brooklyn,Bushwick,40.70198,-73.91571,Entire home/apt,95,1,0,,,1,0 +9237142,"Charming, Clean 1BR in Brooklyn",11013791,Guy,Brooklyn,Clinton Hill,40.68864,-73.96154,Entire home/apt,100,30,4,2017-07-25,0.11,1,0 +9237147,2 BR in Theater Dist./Times Square,47743811,Fritz,Manhattan,Hell's Kitchen,40.76416,-73.98807,Entire home/apt,300,2,8,2019-05-27,0.18,1,181 +9237600,Private Cozy studio NBPC/Tribeca,17051015,Kerry,Manhattan,Battery Park City,40.71704,-74.0162,Entire home/apt,175,1,0,,,1,0 +9237857,Penthouse Suites Midtown Manhattan,17507097,Ravi,Manhattan,Midtown,40.76371,-73.98204,Entire home/apt,300,3,3,2017-11-26,0.07,1,0 +9238214,Sublet Cozy Spacious Private Room near Manhattan,48016303,Nelson,Queens,Astoria,40.75546,-73.91768,Private room,39,4,9,2019-04-25,0.21,1,0 +9238295,Modern Spacious Apartment near UN (doorman bldg),24272490,Slavka,Manhattan,Midtown,40.75145,-73.97162,Entire home/apt,179,1,9,2017-09-11,0.21,1,189 +9238515,Cozy studio just off Main Street,48017685,Gonzalo,Queens,Flushing,40.7544,-73.82866,Shared room,20,3,3,2019-01-25,0.07,1,0 +9238861,One-bedroom in Morningside Heights,4396038,Egor,Manhattan,Morningside Heights,40.80874,-73.9589,Entire home/apt,120,2,2,2018-03-02,0.05,1,0 +9239252,A clean and warm master bedroom!,47052253,Wenjia,Manhattan,Lower East Side,40.71244,-73.98756,Private room,82,5,0,,,1,0 +9240067,Cozy studio on the Upper East Side!,20761853,Elena,Manhattan,Upper East Side,40.78167,-73.95004,Entire home/apt,170,1,137,2019-06-23,3.06,2,289 +9240346,Charming Union Sq Studio w/Elevator,2598539,Carol,Manhattan,Gramercy,40.73318,-73.98449,Entire home/apt,120,1,206,2019-06-23,4.64,1,278 +9240606,"Sunny, Book-Filled Room in Carroll Gardens",14078910,Andy,Brooklyn,Carroll Gardens,40.68172,-73.99358,Private room,75,2,42,2018-06-06,0.96,1,0 +9241147,Bushwick 2 bdrm near JMZ train stop,39768761,Latane,Brooklyn,Bushwick,40.69813,-73.93433,Entire home/apt,110,2,50,2018-12-25,1.15,1,0 +9241956,The New Downtown* 1 bdrm,23267314,Millie,Manhattan,Hell's Kitchen,40.75474,-73.99836,Entire home/apt,177,2,123,2019-06-28,2.81,2,261 +9242243,Cozy 1bdrm apt in Midtown Manhattan,3335559,Sworupa,Manhattan,Midtown,40.76362,-73.97542,Private room,180,1,10,2019-06-06,0.30,1,175 +9247687,Newly renovated apartment.,48055483,Vincent,Queens,Middle Village,40.71527,-73.89829,Private room,70,1,1,2016-01-05,0.02,1,364 +9247923,Stunning Greenwich Village Triplex,46631730,Anne,Manhattan,Greenwich Village,40.73297,-73.99217,Entire home/apt,325,2,9,2016-11-03,0.21,1,0 +9248049,NYC Fantastic Apartment (very quiet &private bath),48054322,Nina,Manhattan,Hell's Kitchen,40.76637,-73.98342,Private room,165,1,193,2019-07-05,4.37,1,213 +9248239,Private Room in Williamsburg Loft,48057837,Diana,Brooklyn,Williamsburg,40.71914,-73.96477,Private room,75,1,2,2015-12-28,0.05,1,0 +9248558,1 Queen Bed,48059119,Wolcott,Manhattan,Midtown,40.74784,-73.9862,Private room,159,1,0,,,3,365 +9249597,Typical Cozy 1BR - Prime Upper West,20694807,Alexandre,Manhattan,Upper West Side,40.77912,-73.97976,Entire home/apt,150,6,1,2016-01-01,0.02,1,0 +9249776,1 Bedroom in USW 71/Columbus,11120994,Christine,Manhattan,Upper West Side,40.77741,-73.97789,Entire home/apt,150,1,0,,,1,0 +9250196,Furnished 1-BR near all NYC'S major attractions!,30283594,Kara,Manhattan,Theater District,40.76063,-73.98577,Entire home/apt,230,30,0,,,121,363 +9250241,2 Twin Beds,48059119,Wolcott,Manhattan,Midtown,40.74702,-73.98778,Private room,159,1,1,2018-05-11,0.07,3,365 +9250374,Entire home-- Brownstone Brooklyn,733282,Tabitha,Brooklyn,Carroll Gardens,40.68152,-73.99518,Entire home/apt,250,28,4,2018-07-21,0.09,1,0 +9250731,Bright and spacious 1 bedroom,798653,Chrissy And Scott,Brooklyn,Williamsburg,40.7131,-73.94422,Entire home/apt,119,1,7,2016-04-11,0.16,1,0 +9251088,-Deluxe Furnished 1 Bedroom Apartment in Midtown,30283594,Kara,Manhattan,Theater District,40.75856,-73.98221,Entire home/apt,239,30,0,,,121,363 +9253112,Spacious Beautiful 1BR APT,1941852,Helga,Brooklyn,Crown Heights,40.66965,-73.95517,Entire home/apt,80,1,17,2017-08-30,0.38,1,0 +9253505,Spacious room in Midtown East,3001268,Tianni,Manhattan,Midtown,40.75261,-73.97063,Private room,99,1,0,,,1,0 +9253823,Spacious 2BR (4 rooms) in the Upper West Side,31537314,Katja,Manhattan,Upper West Side,40.80118,-73.96642,Entire home/apt,250,5,12,2019-06-15,0.27,1,20 +9253827,Close to train - Williamsburg Garden Apartment,48078451,Mathew,Brooklyn,Williamsburg,40.71673,-73.94193,Entire home/apt,125,3,93,2019-06-30,2.69,1,23 +9255049,"Designy, cozy, & kid friendly!",902703,Jessica,Brooklyn,Bushwick,40.69975,-73.92051,Entire home/apt,150,5,30,2019-05-14,0.76,1,284 +9256750,Sunny bedroom with backyard (L Jefferson),16865342,Elene,Brooklyn,Bushwick,40.70484,-73.91942,Private room,50,3,71,2019-05-27,1.85,2,2 +9259254,Large Apartment - East Village,12587611,Logan,Manhattan,East Village,40.72614,-73.98795,Entire home/apt,200,4,0,,,1,0 +9260415,Comfy Room Near Bronx Zoo and NYBG!,48106825,Julia,Bronx,Pelham Gardens,40.86617,-73.848,Private room,47,2,138,2019-05-20,3.22,2,353 +9260616,Large Modern Apartment w Backyard,8996900,Kristine,Brooklyn,Kensington,40.64735,-73.97611,Entire home/apt,150,4,1,2015-12-02,0.02,1,0 +9260911,Luxury Apt in EV - 2 Spacious BR + 2 Full Bath!!,1974661,Em,Manhattan,East Village,40.72788,-73.9869,Entire home/apt,299,1,177,2019-06-22,4.05,1,91 +9260951,Home for the Holidays: Midtown West,3509166,Anders,Manhattan,Hell's Kitchen,40.76375,-73.98885,Entire home/apt,142,20,0,,,1,0 +9261302,Spacious top floor townhouse in BK,12780893,Jessica,Brooklyn,South Slope,40.66905,-73.9877,Entire home/apt,150,1,0,,,1,0 +9261392,Modern Lux APT Private Bath 15 min to Times Sq,7174662,K,Queens,Sunnyside,40.74461,-73.92004,Private room,88,2,132,2019-06-01,3.23,1,14 +9263457,1 bed/bath w/ Cali King bed- duplex,30637963,Deena,Manhattan,Upper West Side,40.79355,-73.96641,Private room,800,5,0,,,1,0 +9266394,Spacious apt next to Botanic Garden,48133396,Katherine,Brooklyn,Crown Heights,40.66563,-73.96118,Entire home/apt,85,90,0,,,1,0 +9269126,Cleanest times square room,9372538,Fabiola,Manhattan,Hell's Kitchen,40.76121,-73.98895,Private room,169,1,9,2019-05-03,0.21,2,89 +9269191,Beautiful Private Parlor-Level 1-BR Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.683,-73.93305,Entire home/apt,110,2,104,2019-06-16,2.38,2,155 +9270122,Beautiful Room in Artistic Loft,48148603,Ricardo,Brooklyn,Greenpoint,40.73469,-73.95778,Private room,60,1,1,2016-01-03,0.02,1,0 +9271742,Spacious Private Ground Floor Studio Apt.,2801328,Ben,Brooklyn,Bedford-Stuyvesant,40.68375,-73.93313,Entire home/apt,110,2,122,2019-07-04,2.76,2,159 +9273161,Located in the heart of Soho!!,48161896,Kate,Manhattan,SoHo,40.72356,-74.00472,Entire home/apt,78,5,2,2017-05-22,0.08,1,0 +9274832,"Apartment in Bay Ridge, Brooklyn",48169083,Rebekah,Brooklyn,Bay Ridge,40.63066,-74.02577,Entire home/apt,110,1,0,,,1,0 +9275199,"Sunny, Spacious Apartment",48170780,Christopher,Brooklyn,Bedford-Stuyvesant,40.67936,-73.93388,Private room,46,1,0,,,1,0 +9275453,"Spacious House, 20 min to Manhattan",48171900,Michael,Queens,Ditmars Steinway,40.77707,-73.91398,Private room,80,1,2,2016-01-03,0.05,1,0 +9276587,Convenient Hell's Kitchen 1br/2-4pp,2782391,Jeff,Manhattan,Hell's Kitchen,40.76639,-73.98727,Entire home/apt,150,3,12,2019-06-14,0.27,2,1 +9276634,2-bedroom in the heart of the EV!,46323876,Mario,Manhattan,East Village,40.72765,-73.98199,Entire home/apt,199,2,1,2015-11-28,0.02,1,0 +9277581,"Clean, mid-century modern decorated",25687571,Jorge,Manhattan,East Village,40.72959,-73.98245,Entire home/apt,125,2,15,2017-12-03,0.34,1,0 +9277608,Soho 3BR/2BA Everything is just outside your door!,42047615,Jonathan & Nancy,Manhattan,Nolita,40.72347,-73.99302,Entire home/apt,650,3,130,2019-06-05,3.11,2,235 +9278192,*LARGE PRIVATE ROOM WITH A LARGE WINDOW*,48183551,Carlos,Queens,Elmhurst,40.74507,-73.88352,Private room,58,6,76,2019-06-21,1.75,5,279 +9278786,Great 2br East Village Apartment,1449710,Whitney,Manhattan,East Village,40.72404,-73.98838,Entire home/apt,200,1,2,2015-12-13,0.05,1,0 +9279920,Charming Gramercy Studio Furnished,48190744,Samantha,Manhattan,Gramercy,40.73438,-73.98615,Entire home/apt,145,21,0,,,1,0 +9280902,"Clean, Quiet, Hip Apt in Bed Stuy",1747007,Hanson,Brooklyn,Bedford-Stuyvesant,40.69029,-73.95443,Entire home/apt,98,14,9,2018-06-04,0.20,1,6 +9281688,Cozy Cove in Crown Heights,114649,Onome,Brooklyn,Crown Heights,40.66933,-73.9252,Private room,40,7,23,2018-12-26,0.57,1,130 +9281747,TIMES SQ BLCK AWAY w/ SUNNY BDRM. NO INSTANT BOOKN,11526455,Joey,Manhattan,Hell's Kitchen,40.76046,-73.9901,Private room,135,2,123,2019-06-27,2.81,1,124 +9282032,Cozy 1br in the Heart of Kips Bay,4835399,Felicia,Manhattan,Kips Bay,40.74138,-73.98048,Entire home/apt,250,5,0,,,1,0 +9282443,"HUGE Artist's 1 bedroom LOFT, Lower East Side.",5603037,Anna,Manhattan,Lower East Side,40.72014,-73.98277,Entire home/apt,250,13,9,2019-04-23,0.21,1,44 +9282987,"Park Slope, Brooklyn Charm",11607339,Nani,Brooklyn,Park Slope,40.67815,-73.97878,Entire home/apt,130,2,4,2016-12-31,0.09,1,0 +9283104,Cozy room in heart of Brooklyn!,26885466,Sergey,Brooklyn,Midwood,40.61949,-73.95443,Private room,60,2,54,2017-08-19,1.22,1,0 +9288411,Heart of St Marks 2 Bedroom,6640038,Kasia,Manhattan,East Village,40.72789,-73.98756,Entire home/apt,350,3,0,,,1,0 +9289159,"Beautiful 5bedrm duplex, sleeps 11 comfortably!",43963802,Tanya,Manhattan,Harlem,40.8228,-73.94567,Entire home/apt,465,3,46,2019-06-29,1.22,2,325 +9291870,Cozy Upper East Side 1 Bed,48244550,Janice,Manhattan,Upper East Side,40.76405,-73.95967,Entire home/apt,126,1,3,2016-06-04,0.07,1,0 +9292072,Spacious 1 Bedroom Apartment,23429756,Maggie,Manhattan,Upper East Side,40.77638,-73.9476,Entire home/apt,215,1,0,,,1,0 +9295059,"1BR steps from park, museums, more",11797330,Casey,Manhattan,Upper East Side,40.78397,-73.95041,Entire home/apt,139,3,18,2016-07-25,0.44,1,0 +9296077,Central Park - spacious 1 bedroom -,42064476,Marine,Manhattan,Upper East Side,40.77234,-73.96045,Entire home/apt,200,1,9,2016-10-13,0.20,1,0 +9296089,Fantastic Upper West Side!,34734634,David,Manhattan,Upper West Side,40.79174,-73.97755,Entire home/apt,200,6,0,,,1,0 +9296598,i would like to sublet for 3 months,48264527,Roberta,Manhattan,Upper West Side,40.77944,-73.98518,Entire home/apt,40,1,1,2016-03-31,0.03,1,0 +9296742,Room Available- Prospect Park South,48264768,Wesley,Brooklyn,Flatbush,40.64905,-73.96799,Private room,55,1,0,,,1,0 +9297852,Cozy Loft Apartment in Bushwick,48261452,Carolina,Brooklyn,Bushwick,40.70686,-73.91961,Entire home/apt,99,30,7,2017-11-26,0.16,1,0 +9297960,Master Bedroom in Williamsburg Loft,10646374,Aurora,Brooklyn,Williamsburg,40.70801,-73.94787,Private room,82,3,0,,,1,0 +9298825,Charming Brooklyn One Bedroom,4631581,Kim And Jordan,Brooklyn,Cobble Hill,40.68805,-73.99634,Entire home/apt,185,2,3,2016-10-16,0.07,1,0 +9298895,Spacious Sunny room in East Village,3856750,Sabra,Manhattan,East Village,40.72283,-73.98356,Private room,60,7,6,2018-01-05,0.18,2,0 +9299515,Luxury Studio in Chelsea/Flat Iron,48277456,Mariya,Manhattan,Chelsea,40.73936,-73.99352,Entire home/apt,200,7,0,,,1,0 +9299707,Upper East Side Studio - 77/1st Ave,48278499,Daniel,Manhattan,Upper East Side,40.77161,-73.95295,Entire home/apt,140,1,0,,,1,0 +9300556,A Express train Bed Stuy Getaway,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.68061,-73.94996,Entire home/apt,94,30,3,2017-12-03,0.08,3,355 +9300634,Cozy Boerum Hill Apartment,15895218,Amy,Brooklyn,Carroll Gardens,40.68423,-73.98996,Entire home/apt,134,2,2,2016-02-22,0.05,2,0 +9301562,Cozy Loft in Trendy Brooklyn area,48287405,Alicia,Brooklyn,Williamsburg,40.70644,-73.93759,Private room,60,1,0,,,1,0 +9301647,Semi-Private Space in Prime Midtown East,9226879,Christina,Manhattan,Midtown,40.75249,-73.97412,Private room,70,3,6,2019-06-29,0.28,2,233 +9301755,Amazing Loft on the Lower East Side,4865452,Rj,Manhattan,Lower East Side,40.71269,-73.98171,Entire home/apt,200,1,1,2015-12-03,0.02,1,0 +9302921,Cozy and Friendly Central Park Room,31038604,Olivia,Manhattan,Harlem,40.79912,-73.95204,Private room,90,2,66,2018-06-25,1.50,1,0 +9308016,Spacious Greenpoint Duplex w/Yard,1516920,Jonathan,Brooklyn,Greenpoint,40.73077,-73.95851,Entire home/apt,115,1,1,2015-12-27,0.02,2,0 +9309192,Large 1BR in Heart of LES,84320,Kevin,Manhattan,Lower East Side,40.71692,-73.98259,Entire home/apt,245,10,6,2017-01-03,0.14,1,0 +9310390,Chic East Village 2BR,21893700,Ben,Manhattan,East Village,40.72837,-73.98631,Entire home/apt,375,1,110,2019-06-23,2.47,1,134 +9310959,"Cozy, 1 bedroom Brownstone Apt",7065964,Ashley,Brooklyn,Crown Heights,40.66722,-73.948,Entire home/apt,75,2,161,2019-06-28,3.65,1,183 +9311761,Cozy apartment in Lower East Side,6655182,Tim,Manhattan,Lower East Side,40.71846,-73.98727,Private room,150,2,2,2016-09-24,0.05,1,0 +9312190,"Gorgeous, convenient apt, sleeps 7",6930315,Diana,Bronx,Concourse,40.81897,-73.92735,Entire home/apt,159,1,0,,,1,0 +9313531,Great room with FULL private Bath,10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.68244,-73.91092,Private room,40,15,0,,,5,342 +9313758,Spacious Room in Greenpoint Duplex,1516920,Jonathan,Brooklyn,Greenpoint,40.73274,-73.95505,Private room,57,1,10,2016-03-17,0.22,2,0 +9314139,Spacious 2 bedroom loft (1600 sf),48345272,Dino,Manhattan,Tribeca,40.71474,-74.01101,Entire home/apt,425,5,1,2016-01-01,0.02,1,0 +9315478,Darling West Village Studio,15815555,Meredith,Manhattan,West Village,40.7356,-74.00405,Entire home/apt,200,1,0,,,1,0 +9315567,I am Minutes from it All.,48351548,Kandisann,Manhattan,Harlem,40.80157,-73.95407,Private room,65,1,11,2016-07-04,0.25,1,0 +9315797,Sunny room in heart of Greenpoint,1838431,Tomas,Brooklyn,Greenpoint,40.73419,-73.95264,Private room,65,15,1,2016-07-01,0.03,1,0 +9316528,Spacious Room in Beautiful Apartment in Brooklyn!,48356150,Tomas,Brooklyn,Bedford-Stuyvesant,40.68465,-73.91528,Private room,75,14,3,2018-07-15,0.13,1,0 +9316653,Central Park/Museum Mile,31245408,Ginger,Manhattan,East Harlem,40.79259,-73.95171,Private room,90,1,0,,,1,0 +9317779,Bedroom for two near St Marks,30738895,Enzo,Manhattan,East Village,40.72518,-73.98439,Private room,100,1,0,,,1,0 +9319328,"Cozy Bowery Studio (6, BDFM trains)",48370995,James,Manhattan,NoHo,40.72624,-73.99317,Entire home/apt,100,1,8,2016-11-15,0.19,1,0 +9319688,EXCELLENT LOCATION near Manhattan!!,48372942,Magdalena,Queens,Astoria,40.76354,-73.91789,Private room,77,2,1,2018-05-06,0.07,1,364 +9324841,Large artist one bedroom in Williamsburg!,9659504,Danny,Brooklyn,Williamsburg,40.71676,-73.94575,Entire home/apt,165,4,10,2018-07-31,0.23,1,0 +9325951,"",33377685,Jonathan,Manhattan,Hell's Kitchen,40.76436,-73.98573,Entire home/apt,190,4,1,2016-01-05,0.02,1,0 +9325979,Gorgeous Loft in the LES/Chinatown!,48402458,Mo,Manhattan,Chinatown,40.71377,-73.99311,Entire home/apt,190,2,119,2019-06-23,2.72,1,78 +9327458,Sunny Bedroom in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66641,-73.99078,Private room,45,3,7,2018-04-01,0.16,2,0 +9328355,Stylish and Comfy in Bed Stuy,2754405,Janice,Brooklyn,Bedford-Stuyvesant,40.69153,-73.94263,Entire home/apt,72,30,11,2019-06-22,0.26,1,251 +9328578,"Sleeps 5, 2.5 bedrooms. Families or small group.",43963802,Tanya,Manhattan,Harlem,40.82287,-73.94561,Entire home/apt,230,3,52,2019-06-04,1.33,2,325 +9329015,MANHATTAN SWEET 2 Bd/3Bd DEAL,11241615,Faruk,Manhattan,East Harlem,40.79598,-73.94288,Entire home/apt,250,5,33,2019-05-14,0.76,1,28 +9329090,Prime MidTown East Spacious Studio,9226879,Christina,Manhattan,Midtown,40.75145,-73.9752,Entire home/apt,140,4,1,2016-01-10,0.02,2,223 +9330135,Brand new 1 BR apt Steps from train,48423154,Evelyn,Brooklyn,Brighton Beach,40.57808,-73.96253,Entire home/apt,85,5,0,,,1,0 +9330771,East Village Studio Apartment,28396398,Cy,Manhattan,East Village,40.72919,-73.98104,Entire home/apt,99,30,0,,,1,0 +9330884,"Downtown Manhattan, 2 Bedroom",48427159,Kyle,Manhattan,Lower East Side,40.7225,-73.9894,Entire home/apt,200,3,0,,,1,0 +9331036,Spacious Master BR Near BK Museum,20267329,Nika,Brooklyn,Prospect Heights,40.67263,-73.96437,Private room,99,2,3,2017-01-02,0.07,1,0 +9331114,Bright One Bedroom in Williamsburg,1698259,Jeff,Brooklyn,Williamsburg,40.71108,-73.94799,Entire home/apt,140,7,31,2019-03-25,0.72,1,209 +9331413,Beautiful Apartment in Center of Williamsburg,17433287,Efrat,Brooklyn,Williamsburg,40.71786,-73.95588,Entire home/apt,181,4,4,2017-05-02,0.09,2,188 +9331520,Large Brooklyn Apartment In Townhouse,6894897,Autumn,Brooklyn,Bedford-Stuyvesant,40.69122,-73.94377,Entire home/apt,165,2,166,2019-07-01,3.76,1,8 +9331671,Essential Lower East Side,48431029,Kevin,Manhattan,Lower East Side,40.72201,-73.98775,Entire home/apt,175,3,14,2019-06-17,1.86,1,51 +9331683,SuperSunny Apt 20min From Manhattan,45589955,Jacopo,Brooklyn,Crown Heights,40.67637,-73.95951,Entire home/apt,100,6,1,2016-01-07,0.02,1,0 +9332872,Charming Carroll Gardens 2 BR,48356908,David & Nancy,Brooklyn,Carroll Gardens,40.68047,-73.99594,Entire home/apt,209,1,178,2019-06-18,4.47,1,228 +9332926,Room in 3br apt,48437907,Filip,Manhattan,Washington Heights,40.83819,-73.94373,Private room,110,1,1,2015-11-10,0.02,1,0 +9333533,Private Room in Williamsburg,48442001,Carlos,Brooklyn,Williamsburg,40.70723,-73.94811,Private room,50,7,4,2016-03-20,0.09,1,0 +9334086,"Large 1BR apt,25min to Times Square",25402037,Khaleed,Manhattan,Washington Heights,40.84465,-73.93733,Entire home/apt,80,2,3,2016-03-30,0.07,1,0 +9334185,Trendy but cozy private bdrm & bath,48249473,Marisol,Bronx,Kingsbridge,40.87842,-73.9029,Private room,75,1,59,2019-06-23,1.45,2,354 +9334228,Cozy Studio in an Amazing Location,1423321,Olivera,Manhattan,East Village,40.72695,-73.99012,Entire home/apt,70,7,1,2015-12-08,0.02,1,0 +9334365,1bd steps from Central Park/museum,20592462,Julia,Manhattan,Upper East Side,40.77751,-73.9556,Entire home/apt,125,1,1,2015-11-23,0.02,1,0 +9334840,Cozy warm one bedroom,2716515,Nick,Queens,Astoria,40.7576,-73.9067,Entire home/apt,70,1,1,2015-11-11,0.02,1,0 +9336526,Small room with convenient commute,27962518,Xiangyu,Queens,Elmhurst,40.73682,-73.875,Private room,180,1,0,,,2,0 +9339253,Clean ground floor apartment,48471249,Kimberly,Brooklyn,Clinton Hill,40.69306,-73.96813,Private room,100,2,7,2018-10-28,0.19,1,310 +9340975,Sunny & Spacious Park Slope Gem,1939202,Sarah,Brooklyn,Park Slope,40.66675,-73.97571,Entire home/apt,200,8,2,2016-06-07,0.05,1,0 +9341144,Inviting & immaculate 1BR - 15 min to midtown,377783,Sandra,Manhattan,Harlem,40.80786,-73.94313,Entire home/apt,100,30,3,2018-07-22,0.16,1,0 +9341196,Quiet Upper West Side Private Room,5549166,Jesse,Manhattan,Upper West Side,40.7915,-73.97197,Private room,95,3,0,,,1,0 +9341671,2BR apt 10 min to Midtown!,350553,Stav,Manhattan,Harlem,40.81293,-73.95191,Entire home/apt,150,5,0,,,2,0 +9342019,Cozy 2 Bedroom in Historic District,22308430,Benjamin,Queens,Jackson Heights,40.75462,-73.88284,Entire home/apt,144,2,13,2019-03-24,0.30,1,288 +9342478,"Beautiful, airy, light-filled room",10406276,Kathleen,Brooklyn,Williamsburg,40.70491,-73.93098,Private room,42,3,0,,,1,0 +9343313,Charming Bdrm Mins from Lively LES,11824700,Rachel,Manhattan,Lower East Side,40.71514,-73.98293,Private room,95,1,13,2018-05-18,0.32,2,0 +9343350,Charming 2 bd 1 br Apartment in LES,11824700,Rachel,Manhattan,Lower East Side,40.71549,-73.9834,Entire home/apt,220,2,3,2016-12-23,0.07,2,0 +9343634,Private Bedroom in Luxury Highrise,48492929,Benjamin,Manhattan,Kips Bay,40.74198,-73.9768,Private room,209,3,7,2019-06-20,0.22,1,317 +9344858,Beautiful room in Center of Williamsburg!,17433287,Efrat,Brooklyn,Williamsburg,40.71896,-73.95423,Private room,118,3,5,2017-05-31,0.16,2,0 +9345056,Cozy Room in Bushwick Apartment!,16963843,Martina,Brooklyn,Bushwick,40.69902,-73.92195,Private room,50,5,28,2018-08-20,1.36,2,0 +9345131,Master Bedroom- Beautiful Bed Stuy,4429743,Maria,Brooklyn,Bedford-Stuyvesant,40.68534,-73.95709,Private room,95,1,0,,,1,0 +9345523,Cute Private Bedroom | East Village,39333015,XiWei,Manhattan,East Village,40.7228,-73.98352,Private room,85,1,1,2015-11-14,0.02,1,0 +9347368,Family Friendly 2BR/1BA in UWS,48511336,Peter,Manhattan,Upper West Side,40.78479,-73.97521,Entire home/apt,200,5,5,2017-08-18,0.12,1,0 +9348111,Charming 2BR Apartment: Central Williamsburg,3311487,Scott,Brooklyn,Williamsburg,40.71294,-73.96224,Entire home/apt,161,2,21,2019-06-30,0.48,3,2 +9348923,Modern/Spacious 1Br-1 stop to city!,6264251,Chris,Brooklyn,Williamsburg,40.71968,-73.9602,Entire home/apt,110,2,24,2017-10-13,0.56,1,0 +9348941,Spacious 1 BR in Midtown East,7992346,Nikali,Manhattan,Midtown,40.75218,-73.97217,Entire home/apt,149,1,0,,,1,0 +9349010,Smart & Chic Studio Prime Location,3716641,Ofer,Manhattan,Upper West Side,40.79273,-73.97216,Entire home/apt,104,30,5,2017-02-26,0.13,8,156 +9349116,Great place - heart of Williamsburg,5854655,Ian,Brooklyn,Williamsburg,40.71824,-73.95455,Entire home/apt,200,1,1,2016-01-01,0.02,1,0 +9349221,Charming & Sunny Williamsburg Apt,35489917,Erin,Brooklyn,Williamsburg,40.71401,-73.96333,Private room,99,1,5,2016-05-01,0.12,1,0 +9349950,Spacious Bohemian Apartment,10621509,Taylor,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91479,Entire home/apt,80,5,12,2017-06-15,0.28,1,0 +9350295,Gorgeous 2br West Village Getaway,2539393,Sandy,Manhattan,West Village,40.73486,-74.00386,Entire home/apt,400,1,3,2016-11-27,0.08,1,0 +9350645,Entire 2bed apt in Brooklyn,13031745,Madeline,Brooklyn,Williamsburg,40.7073,-73.94219,Entire home/apt,98,4,3,2016-03-23,0.07,3,0 +9350729,Cozy room in the heart of Brooklyn,2953015,Soria,Brooklyn,Clinton Hill,40.69223,-73.96879,Private room,63,2,2,2016-06-11,0.05,1,0 +9351006,Cozy & Comfortable Private Room | Private Bathroom,47784768,Yemi,Brooklyn,Brownsville,40.66447,-73.91743,Private room,69,2,75,2019-06-21,1.73,2,249 +9351013,"Boutique Living, 10 min from NYC",48532777,Alexander,Queens,Ditmars Steinway,40.77627,-73.90963,Entire home/apt,89,1,16,2017-12-31,0.45,1,36 +9351679,"1Bdr APARTMENT, Astoria, NY [10min from Manhattan]",48534909,Despina,Queens,Astoria,40.76483,-73.91522,Entire home/apt,99,4,4,2019-01-04,0.09,1,0 +9352565,Studio Apartment in Herald Square,33281828,Vikram,Manhattan,Midtown,40.74966,-73.98781,Entire home/apt,140,4,2,2015-12-28,0.05,1,0 +9355498,Amazing Brownstone,10909829,Richelle And Pela,Brooklyn,Bedford-Stuyvesant,40.68346,-73.93121,Entire home/apt,150,4,76,2019-06-25,1.78,2,274 +9356909,Airy & Open Apt. In Carroll Gardens Brooklyn,9038714,Elyssa,Brooklyn,Carroll Gardens,40.67578,-73.99814,Entire home/apt,199,2,6,2019-06-30,1.40,1,73 +9358066,Luxury Studio in Financial District,34654571,Priyanka,Manhattan,Financial District,40.71035,-74.01343,Entire home/apt,120,20,0,,,1,0 +9358718,Chez Sullivan,23716267,Michael,Manhattan,Hell's Kitchen,40.75505,-73.99354,Entire home/apt,175,1,0,,,1,0 +9359564,"Beautiful 2BD Apt. in Trendy Lower East side,NYC",19195540,Dor,Manhattan,Lower East Side,40.71806,-73.99222,Entire home/apt,300,3,25,2019-06-24,0.58,3,0 +9359933,Private Room & Modern Feel,1733622,Nathan,Brooklyn,Crown Heights,40.67246,-73.93401,Private room,40,1,3,2016-01-01,0.07,1,0 +9360968,Sunny 2nd Bedroom in Cheery Bushwick Apt,29988752,Charis,Brooklyn,Bushwick,40.7047,-73.92109,Private room,100,2,22,2017-11-06,0.50,1,0 +9361107,Light and airy 2 bedroom apartment.,48576700,Ayanna,Brooklyn,Clinton Hill,40.69545,-73.96796,Entire home/apt,170,2,127,2019-05-29,2.90,2,236 +9361349,400 Sq Ft 1 BR - East Village - Prime Location,48577772,Ben,Manhattan,East Village,40.72787,-73.98718,Entire home/apt,120,8,6,2017-09-07,0.14,1,0 +9362344,Spacious Room in Trendy Brooklyn Area with Yard,820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94249,Private room,60,1,145,2019-07-01,3.26,3,313 +9362388,Beautiful Large 1 BED in Upper Manhattan,4983133,Mo,Manhattan,Harlem,40.82339,-73.95271,Entire home/apt,90,7,7,2019-04-27,0.16,1,269 +9362527,Quiet roomy space,48582770,Kyron,Manhattan,Inwood,40.86227,-73.92943,Private room,60,5,1,2015-12-30,0.02,1,0 +9362788,Large Family Size Apt. Ground Zero,812866,Vicki,Manhattan,Battery Park City,40.70941,-74.01774,Entire home/apt,450,1,0,,,1,0 +9363966,2 BR available for summer rental!!!,48588586,Adam,Manhattan,Midtown,40.75511,-73.96825,Private room,75,1,0,,,1,0 +9364184,Upper West Side Studio,24708016,Clark,Manhattan,Upper West Side,40.78228,-73.97748,Entire home/apt,170,3,11,2018-08-19,0.31,1,0 +9364626,"Your sunny, large room in Brooklyn!",22141007,Sarine,Brooklyn,Prospect Heights,40.68048,-73.97463,Private room,75,2,0,,,1,0 +9364750,Feel at home.,48592068,Gregory,Manhattan,Washington Heights,40.84864,-73.94046,Private room,75,1,0,,,1,1 +9365025,Light filled room in Greenpoint,2376644,Katherine,Brooklyn,Greenpoint,40.72741,-73.94337,Private room,80,2,0,,,1,0 +9365126,Fully Furnished studio in Brooklyn,48593631,George,Brooklyn,Gowanus,40.67696,-73.99569,Entire home/apt,139,3,10,2018-09-07,0.70,1,0 +9365176,Fifth Ave. Modern Studio,48593893,Alex,Manhattan,Midtown,40.75103,-73.98349,Entire home/apt,250,2,10,2017-05-24,0.23,1,0 +9365502,Cozy 1 bdrm Chelsea/Meatpacking,3843401,Chanel,Manhattan,Chelsea,40.74097,-73.99953,Entire home/apt,150,1,1,2015-11-17,0.02,1,0 +9366053,Sunny and Spacious Room in Bushwick,258409,Stephanie,Brooklyn,Bushwick,40.701,-73.91593,Private room,90,3,6,2019-01-02,0.32,1,0 +9366256,Serene Private Room w/ River View!,10549294,Mona,Manhattan,Upper East Side,40.76999,-73.9477,Private room,55,4,14,2019-06-02,0.33,1,8 +9366707,Loft on the Bowery w/roofdeck,48601058,Marc,Manhattan,NoHo,40.72711,-73.99198,Entire home/apt,296,2,24,2019-06-23,1.69,1,0 +9366904,Sun-filled Nolita 1 Bdrm Apt - prime location,31668272,Ava,Manhattan,Little Italy,40.719,-73.99565,Entire home/apt,150,2,9,2019-06-04,1.41,1,89 +9367337,HUGE Sundrenching Apartment Waiting Just For YOU!,48603884,Katherine,Bronx,Parkchester,40.83735,-73.85997,Entire home/apt,139,3,30,2019-05-21,0.69,1,357 +9367923,Greenwhich Village Luxury Loft,24975940,William,Manhattan,Greenwich Village,40.73294,-73.99726,Private room,249,4,0,,,2,0 +9368365,Perfect 1 BR in UWS,22157668,Sofi,Manhattan,Upper West Side,40.78074,-73.98393,Entire home/apt,250,5,0,,,1,0 +9368754,"Spacious, Fun 1BR Home in Village",801176,Jenny,Manhattan,Greenwich Village,40.72893,-74.00176,Entire home/apt,205,3,2,2016-05-19,0.05,1,0 +9369426,Spacious Bushwick 1Br off Morgan L. Sleeps 2.,943095,Talia,Brooklyn,Bushwick,40.70267,-73.92923,Entire home/apt,90,2,2,2017-07-20,0.07,1,0 +9369514,STARTUP CHEAP PLACE BROOKLYN,27974952,Alex,Brooklyn,East Flatbush,40.64603,-73.94869,Shared room,25,30,5,2018-05-08,0.12,7,365 +9370370,Garden Apartment with patio,48618336,Yvonne,Queens,Astoria,40.76507,-73.90577,Entire home/apt,65,30,32,2017-09-23,0.72,1,67 +9370538,Charming 1 bedroom apt ...,6452596,Juliana,Manhattan,Chinatown,40.71544,-73.99052,Entire home/apt,250,2,1,2015-11-28,0.02,1,0 +9370896,Castle View Brownstone,46638648,Geert,Brooklyn,Bedford-Stuyvesant,40.68503,-73.93809,Entire home/apt,140,29,12,2018-08-20,0.31,1,339 +9371009,"Neat, Safe and Well Located Apt.",5993775,Vanessa K,Manhattan,Upper East Side,40.775,-73.94842,Entire home/apt,110,3,4,2016-08-16,0.09,1,0 +9371045,Large terrace 1 bed room (br) apt,32975805,Khalil,Manhattan,Murray Hill,40.74961,-73.97846,Entire home/apt,200,2,0,,,1,0 +9371171,Large and cozy Apart NYC.,149430,Tida,Manhattan,East Harlem,40.7884,-73.94533,Entire home/apt,120,5,79,2019-06-28,1.82,2,307 +9371173,1 bedroom in Williamsburg,6337128,Tara,Brooklyn,Greenpoint,40.72096,-73.94574,Entire home/apt,120,4,0,,,1,0 +9373167,E.village Uber cool Ensuite room,3289567,Campbell,Manhattan,East Village,40.72502,-73.97835,Private room,110,2,2,2018-04-26,0.06,2,188 +9374263,Ashes Cove,48638439,Aston,Queens,Springfield Gardens,40.66203,-73.7698,Entire home/apt,200,30,68,2019-07-03,1.66,2,365 +9377185,Light-filled Room in Renovated Apt,1021134,Manny,Brooklyn,Williamsburg,40.7069,-73.96833,Private room,60,2,1,2016-08-08,0.03,1,0 +9379983,Gooood Morning America!,48664130,Connor,Manhattan,Theater District,40.75572,-73.98531,Entire home/apt,205,2,1,2015-12-06,0.02,1,0 +9380474,Private master bedroom with TV - Williamsburg,48578050,Chris,Brooklyn,Williamsburg,40.71439,-73.96256,Private room,50,7,4,2017-07-18,0.11,1,0 +9381315,comfy NYC studio apartment,7379511,Anhad,Manhattan,East Village,40.72847,-73.98579,Entire home/apt,183,1,1,2016-01-09,0.02,1,0 +9381449,Holidays in Williamsburg!,27499750,Donovan,Brooklyn,Williamsburg,40.70943,-73.94277,Entire home/apt,125,1,0,,,1,0 +9381657,Sunny room in great location,822839,Sarah,Brooklyn,Williamsburg,40.70704,-73.95522,Private room,70,2,47,2019-05-18,1.10,1,54 +9382195,"Private, modern South Slope studio",48674244,Jessica,Brooklyn,Sunset Park,40.66289,-73.99584,Entire home/apt,90,14,7,2017-08-31,0.16,1,0 +9382719,Center of Williamsburg - Modern apt w HUGE PATIO,8237570,Akash,Brooklyn,Williamsburg,40.71801,-73.9526,Entire home/apt,375,1,23,2018-05-20,0.52,2,364 +9383071,"Bright, Comfortable space in Historic Brownstone!",48677964,Lincoln,Brooklyn,Bedford-Stuyvesant,40.69329,-73.95069,Private room,50,3,6,2018-10-08,0.14,1,10 +9383406,ENTIRE Upper East Side Loft Apartment,6991164,Mike,Manhattan,Upper East Side,40.76854,-73.95532,Private room,199,1,49,2019-06-17,1.11,1,230 +9384367,Spacious Bedroom on the East River,48627335,Judy,Manhattan,Kips Bay,40.73763,-73.97284,Private room,130,1,0,,,1,0 +9384723,North of Madison Square Park Duplex,13838573,Zachary Robert,Manhattan,Midtown,40.74538,-73.98313,Entire home/apt,285,31,5,2016-05-24,0.12,1,365 +9384981,Relax in your Brooklyn Private Bed with Key,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.6947,-73.93481,Private room,72,4,100,2019-06-28,2.34,6,113 +9385790,Great Big Room near Prospect Park,23268312,Rachel,Brooklyn,Prospect-Lefferts Gardens,40.65822,-73.95439,Private room,36,15,14,2019-06-07,0.49,1,15 +9386923,Private Master Bedroom / Bushwick,4769886,Tom & Nic,Brooklyn,Bushwick,40.69535,-73.9184,Private room,84,2,48,2019-06-30,1.11,2,263 +9387120,"Private Room/Full Bed, East Village",48695642,Anne,Manhattan,East Village,40.72314,-73.98066,Private room,100,1,1,2015-12-01,0.02,1,0 +9387436,Rhonda's bed and breakfast,48696992,Rhonda,Brooklyn,Bedford-Stuyvesant,40.68925,-73.94462,Private room,130,2,16,2019-01-01,0.41,1,262 +9387914,Amazing 3 Bedroom in East Village,6753765,Austin,Manhattan,East Village,40.72219,-73.98409,Entire home/apt,285,4,1,2016-01-03,0.02,3,0 +9390084,*SOHO 1 bedroom plus pullout sofa*,47581480,Alex,Manhattan,SoHo,40.72667,-74.00257,Entire home/apt,175,4,0,,,1,0 +9390729,Manhattan Brownstone Great Location,15280538,Elisabeth,Manhattan,East Harlem,40.78758,-73.95026,Entire home/apt,465,3,74,2019-07-06,1.67,1,62 +9391430,Charming 1 BR in Heart of Nolita,6487616,Eli,Manhattan,Nolita,40.72291,-73.9945,Entire home/apt,175,3,6,2016-02-03,0.14,1,0 +9391509,"Lovely, Serene Brooklyn (NYC) Charm with ACs.",48712266,Eka,Brooklyn,Greenpoint,40.72528,-73.94488,Entire home/apt,165,5,201,2019-06-27,4.70,2,212 +9391541,Design Lux 1 bed ! Doorman Gym!5222,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79312,-73.96606,Entire home/apt,156,30,1,2018-08-31,0.10,96,252 +9391609,Doorman 1 Bedroom Furnished LUX5156,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79155,-73.97477,Entire home/apt,191,30,0,,,96,341 +9392042,Sunny 2 full bedroom apartment :),9703540,Lucy,Brooklyn,Williamsburg,40.70973,-73.94289,Entire home/apt,160,14,1,2016-08-28,0.03,1,0 +9393005,"Sunny, Near Times Sq & Central Park",14847501,Zachary,Manhattan,Hell's Kitchen,40.76646,-73.9929,Entire home/apt,305,1,0,,,2,0 +9393127,LUXURY SUNLIT place in the EAST VILLAGE!,47730499,Katherine,Manhattan,East Village,40.72161,-73.98013,Entire home/apt,200,1,52,2019-06-30,1.20,1,74 +9393134,Spacious 3br Williamsburg Apt One Block From Water,32812120,Bjorn,Brooklyn,Williamsburg,40.7196,-73.95956,Entire home/apt,260,3,4,2017-05-29,0.11,2,0 +9393314,Bright Room near Times Sq/Central Pk.,14847501,Zachary,Manhattan,Hell's Kitchen,40.76747,-73.99422,Private room,105,5,0,,,2,0 +9393332,Little house on 12th Street,46467513,Patricia,Brooklyn,Gowanus,40.67017,-73.99029,Private room,85,1,0,,,1,0 +9393343,Spacious 1 bedroom near 125th St.,35899921,Alexandra,Manhattan,Harlem,40.81176,-73.94999,Entire home/apt,100,3,2,2016-02-22,0.05,1,0 +9393610,Big room in Williamsburg Penthouse,48723117,Gaute,Brooklyn,Williamsburg,40.7116,-73.9521,Private room,79,4,0,,,1,0 +9393674,Staying with Mike in Hells Kitchen/Times Square.,1557889,Michael,Manhattan,Hell's Kitchen,40.75925,-73.99136,Private room,120,5,125,2018-09-29,2.83,2,177 +9393885,three bedroom in east village,48723057,Carlo,Manhattan,East Village,40.72339,-73.9833,Entire home/apt,300,3,0,,,1,0 +9394188,Room for 1 Female or Couple,38805180,Maria,Bronx,Mott Haven,40.8113,-73.92465,Private room,65,3,2,2019-01-02,0.05,1,356 +9394266,Chelsea studio,48726094,Antonia,Manhattan,Chelsea,40.75088,-73.99951,Private room,100,2,151,2019-06-17,3.46,1,0 +9394419,Sunny Clinton Hill Brownstone Apt,3732336,Moira,Brooklyn,Clinton Hill,40.68215,-73.96121,Entire home/apt,127,1,7,2017-07-23,0.16,1,0 +9395128,"LGA/TimeSqaure/Private BDroom+Bath, Queens",36577517,Nan,Queens,Elmhurst,40.74449,-73.88096,Private room,49,2,21,2019-06-15,0.48,2,311 +9396442,Upper west Apt close to Central Pk,26347594,Mahesh,Manhattan,Upper West Side,40.77772,-73.98514,Private room,108,1,11,2017-12-08,0.25,1,0 +9400570,Be comfortable in Harlem,48489264,Claudio,Manhattan,Harlem,40.81443,-73.94121,Entire home/apt,121,30,0,,,1,0 +9401453,High Luxury Thanksgiving Stay,39694819,Montana,Manhattan,Chelsea,40.74081,-74.00296,Entire home/apt,180,1,1,2015-11-21,0.02,1,0 +9401508,Private RM in 3 bedroom brownstone in Bedstuy,48757168,Eva,Brooklyn,Bedford-Stuyvesant,40.6869,-73.95496,Private room,34,5,34,2019-01-14,0.77,1,7 +9401601,Quiet Renovated Chinatown Apartment,10999333,Tam,Manhattan,Two Bridges,40.71271,-73.99512,Entire home/apt,180,4,0,,,1,0 +9401880,NEW Penthouse UnionSq Wraparound Terrace,24530091,Jt,Manhattan,Greenwich Village,40.73491,-73.99231,Entire home/apt,250,53,2,2018-02-14,0.05,1,365 +9402784,Sunny Greenpoint Junior 1 Bedroom,20475463,Adam,Brooklyn,Greenpoint,40.72264,-73.93823,Entire home/apt,100,5,3,2019-06-03,0.25,1,78 +9403937,Doorman Gym Studio Deck!5155,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79224,-73.97417,Entire home/apt,175,30,0,,,96,265 +9404068,Doorman Swimming Pool Gym Modern Furnished!5208,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79285,-73.967,Entire home/apt,175,30,7,2019-06-24,0.18,96,280 +9404707,Spacious & Sunny East Village Studio,381669,Ashley,Manhattan,East Village,40.73047,-73.98576,Entire home/apt,190,4,10,2018-12-28,0.23,1,0 +9404709,Stylish apartment in Sunset Park Brooklyn,2743716,Spyridon,Brooklyn,Sunset Park,40.64577,-74.00532,Entire home/apt,90,7,6,2018-07-01,0.17,1,0 +9404985,UNBEATABLE LOCATION/TIMES SQUARE!,48771768,Leo,Manhattan,Hell's Kitchen,40.75735,-73.99007,Entire home/apt,160,2,143,2019-07-05,3.29,1,215 +9405124,1 Bed available in 2 BR Apt in UWS,19059946,Andrew,Manhattan,Upper West Side,40.79947,-73.964,Private room,51,1,1,2016-01-05,0.02,1,0 +9405466,Quiet 1 bdr UWS Apartment,3414967,Thomas,Manhattan,Upper West Side,40.77668,-73.97815,Entire home/apt,150,1,1,2015-12-14,0.02,1,0 +9405895,Stylish and zen Brooklyn retreat,48775347,Mathieu,Brooklyn,Fort Greene,40.68914,-73.97853,Entire home/apt,325,3,16,2019-04-20,0.42,1,103 +9407719,The LOFT in Bushwick+ Arcade!,8712984,William,Brooklyn,Bushwick,40.70889,-73.92135,Entire home/apt,99,3,9,2019-06-04,0.23,1,42 +9407921,1 Bedroom Luxury Apartment on 33rd,48784045,Jake,Manhattan,Kips Bay,40.74379,-73.97803,Private room,150,1,0,,,2,0 +9408123,Beautiful Loft - Willimsbrg Bedford,31368679,Brenda,Brooklyn,Williamsburg,40.71914,-73.95709,Entire home/apt,280,1,13,2016-10-29,0.30,1,363 +9408218,Charming One Bed Room Apartment,48784879,Olga,Manhattan,East Harlem,40.79417,-73.94331,Entire home/apt,110,2,166,2019-06-15,3.78,1,229 +9408391,Private Room in Beautiful Williamsburg Apt.,24338701,Alexa,Brooklyn,Williamsburg,40.71787,-73.95396,Private room,100,5,0,,,1,0 +9409457,Two Bedroom Apt w/Private Balcony & Small Bathroom,48790146,Violet,Brooklyn,Bedford-Stuyvesant,40.69182,-73.95696,Entire home/apt,125,2,127,2019-06-17,2.92,1,126 +9409873,Greenwich Village - SoHo Duplex+Balcony+Terrace,1442864,Alex,Manhattan,Greenwich Village,40.72824,-73.99517,Entire home/apt,275,4,18,2019-07-01,1.90,1,85 +9410042,Modern Southwestern Retreat- Spacious 1 Bed,2370614,Leslie,Brooklyn,Williamsburg,40.71133,-73.96924,Entire home/apt,308,2,22,2019-06-23,0.55,1,109 +9410527,Spacious modern 3 BR in Park Slope,1401316,Karoline,Brooklyn,South Slope,40.66548,-73.98279,Entire home/apt,200,4,3,2016-01-03,0.07,1,0 +9410580,Room #3 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79668,-73.93379,Private room,60,2,136,2019-04-21,3.07,4,48 +9411914,Great room in Greenwich Village!,17234494,Fer,Manhattan,West Village,40.73319,-74.00225,Private room,65,1,2,2016-01-03,0.05,1,0 +9412276,UWS Railroad Apartment,7683847,David,Manhattan,Upper West Side,40.79632,-73.96879,Entire home/apt,110,1,0,,,1,0 +9412522,City living without all the noise.,48249473,Marisol,Bronx,Kingsbridge,40.879,-73.90062,Entire home/apt,189,1,8,2019-04-26,0.22,2,354 +9412636,Safe&Cozy bdoom/5 mins to Manhattan,24244132,Yuhao,Manhattan,Roosevelt Island,40.76168,-73.95059,Private room,60,2,1,2016-05-30,0.03,1,0 +9412913,Private Room - Midtown West NYC,26926354,Pavan,Manhattan,Hell's Kitchen,40.76534,-73.9925,Private room,90,5,0,,,1,0 +9413287,Ensuite Bathroom in Luxury Duplex,3337974,Erik,Brooklyn,Williamsburg,40.71605,-73.95176,Private room,65,3,1,2015-12-01,0.02,1,0 +9413809,Bright & Calm Brooklyn Retreat,492064,Melanie,Brooklyn,Clinton Hill,40.68281,-73.96446,Entire home/apt,128,2,37,2018-11-25,0.84,1,0 +9414019,Yogi's Luxury on Prospect Park,1333485,Jenny,Brooklyn,Windsor Terrace,40.6491,-73.97434,Entire home/apt,200,2,19,2017-01-02,0.45,1,0 +9414237,Your Park Slope Retreat,14435697,Jacob,Brooklyn,Park Slope,40.67159,-73.97482,Entire home/apt,120,14,0,,,1,0 +9414317,Cozy Private Room in 2 bedroom APT,48811662,Kelly,Brooklyn,Prospect-Lefferts Gardens,40.65837,-73.96115,Private room,75,3,67,2019-06-09,1.52,1,296 +9414496,Gorgeous studio available!,37169371,Shannon,Manhattan,Inwood,40.85945,-73.92834,Entire home/apt,69,1,1,2015-11-27,0.02,1,0 +9414521,"Perfect apartment, Manhattan NYC",23850513,Fabiana,Manhattan,Morningside Heights,40.80887,-73.95917,Entire home/apt,120,5,3,2017-01-01,0.07,1,0 +9415026,Murray Hill NYC Apartment,14995329,Sierra,Manhattan,Kips Bay,40.7435,-73.97907,Private room,95,1,1,2015-12-14,0.02,1,0 +9415109,Quiet modern space,48816743,Wesley,Brooklyn,Bedford-Stuyvesant,40.69856,-73.94368,Entire home/apt,142,2,18,2017-01-02,0.44,1,0 +9415568,Cozy 1BR,17764174,Mike,Manhattan,Inwood,40.87045,-73.9183,Entire home/apt,210,1,0,,,1,365 +9415685,Master Room & private bathroom 15m to Manhattan,43908809,M&L,Queens,Woodside,40.75066,-73.90424,Private room,155,2,14,2018-04-29,0.33,3,90 +9415828,Large & Bright in West Village!,43864152,Kristina,Manhattan,West Village,40.73129,-74.00237,Entire home/apt,300,2,3,2016-10-24,0.08,1,0 +9416007,Subway. Ocean. Parking,31680304,Alex & Alena,Brooklyn,Gravesend,40.5888,-73.97278,Private room,70,3,46,2019-06-13,1.05,2,92 +9416198,Cute private space in an Awesome Location,48823036,Fred,Manhattan,Midtown,40.75452,-73.96767,Entire home/apt,180,1,156,2019-06-27,3.58,1,22 +9420768,Come Enjoy My Trendy Harlem,48603189,Marcella,Manhattan,Harlem,40.82402,-73.9456,Private room,70,1,17,2018-01-03,0.40,1,0 +9422196,Private Room in Gramercy Park,12154291,Cindy,Manhattan,Gramercy,40.73537,-73.98244,Private room,95,1,1,2016-06-13,0.03,1,0 +9422573,Private Light-Filled 2-Room Space,248490,Leecia,Brooklyn,Bedford-Stuyvesant,40.68041,-73.93612,Entire home/apt,100,3,83,2019-05-31,1.90,2,224 +9423397,"Brooklyn Gem nr Shops, Subways",48854322,Yuna,Brooklyn,Bushwick,40.69994,-73.92378,Entire home/apt,129,5,89,2019-05-26,2.02,2,72 +9424217,"Monthly+. Quiet, Upscale Neighborhood",12122228,Joseph,Manhattan,Upper East Side,40.77557,-73.94615,Private room,62,30,0,,,1,174 +9425220,Cozy private bedroom in 3BR Apt,48861563,Kalyani,Manhattan,Washington Heights,40.84899,-73.94018,Private room,40,1,2,2016-01-03,0.05,1,0 +9425357,Large bedroom available in 2-bedroom apt.,31985378,Adrian,Brooklyn,Williamsburg,40.7158,-73.95587,Private room,90,2,3,2019-06-10,0.48,1,6 +9425524,Big Bright Private Room in Brooklyn,5753744,Rindon,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.9588,Private room,42,1,1,2016-10-02,0.03,2,0 +9426406,Stunning 2 bd home in historic limestone,12241602,Crystal,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94276,Entire home/apt,125,7,0,,,1,0 +9426418,Modern Williamsburg Apartment,32725953,Andrew,Brooklyn,Williamsburg,40.7197,-73.95519,Entire home/apt,100,4,0,,,1,0 +9426526,NEW HUGE 2 ROOMS TIMES SQ CHIC NY!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76465,-73.99499,Entire home/apt,70,30,1,2018-11-14,0.13,5,365 +9427331,Huge/private studio right off the L,48870194,Brad,Brooklyn,Bushwick,40.70505,-73.92239,Entire home/apt,108,2,4,2016-07-01,0.09,1,0 +9427868,Grand Home On Kissena Park in Flushing NYC,23234988,Ann,Queens,Flushing,40.75114,-73.80695,Entire home/apt,500,2,20,2019-05-31,0.85,6,243 +9428356,Trendy 1 BR in the LES NY,47507350,Alyssa,Manhattan,Lower East Side,40.72278,-73.98878,Private room,115,1,0,,,1,0 +9429015,Amazing Location! mid-70s 1BR @ Columbus,13129524,Whitney,Manhattan,Upper West Side,40.78198,-73.97803,Entire home/apt,275,1,4,2016-06-26,0.09,1,0 +9430502,Stay in the coolest neighborhood,3100823,Kyle,Brooklyn,Bushwick,40.70383,-73.92853,Private room,40,1,0,,,1,0 +9431085,Hi! Stylish Spotless 2Bdr w Terrace,1601345,Sonia,Brooklyn,Williamsburg,40.71409,-73.96359,Entire home/apt,289,3,128,2019-06-21,2.89,1,92 +9433088,Relaxing Retreat in Williamsburg,34236533,Stan,Brooklyn,Williamsburg,40.70851,-73.94244,Private room,130,5,102,2019-07-01,2.48,1,288 +9434105,Huge room in El Barrio.,26299995,Luiz & Daniel,Manhattan,East Harlem,40.79733,-73.93988,Private room,55,3,125,2019-06-20,2.87,1,1 +9434432,Roomy Manhattan Studio,8012008,Sean,Manhattan,Kips Bay,40.74015,-73.98038,Entire home/apt,125,2,0,,,1,0 +9434464,Sunny Studio Apt in Historic Harlem,1241420,Justin,Manhattan,Harlem,40.81051,-73.94723,Entire home/apt,130,4,94,2019-06-21,2.20,1,27 +9434495,Cozy room in a spacious house,48899796,Beth,Brooklyn,Midwood,40.62186,-73.95347,Private room,60,2,62,2019-05-23,1.45,2,107 +9434513,2000sq $2 million 3 story townhouse,48899736,Lindsay,Brooklyn,Boerum Hill,40.68632,-73.98796,Entire home/apt,99,1,140,2019-06-09,3.20,1,363 +9434801,Cozy Bedroom in Sunny Apartment,10335025,Sharif,Brooklyn,Bushwick,40.70254,-73.93095,Private room,50,5,12,2017-08-03,0.27,1,0 +9435315,Beautiful Duplex with Patio!!!,35539248,Ashish,Manhattan,East Village,40.72117,-73.98126,Private room,78,25,0,,,1,0 +9435428,Cozy Studio in East Harlem,48904356,Hasan,Manhattan,East Harlem,40.79335,-73.94583,Entire home/apt,150,1,1,2016-01-02,0.02,1,0 +9435503,Library BnB by the Park - Upper West Side,16722827,MaElena,Manhattan,Morningside Heights,40.80294,-73.96007,Private room,90,2,62,2019-05-10,1.73,1,320 +9435931,2Bed/ 2Bath Impeccable Stylish Brooklyn Home,5037211,Mariana,Brooklyn,Greenpoint,40.72104,-73.94805,Entire home/apt,275,5,77,2019-06-29,1.89,2,6 +9436038,Huge New Reno Slick Times Sq Quiet!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76365,-73.99472,Entire home/apt,70,30,3,2018-06-30,0.07,5,339 +9436049,Huge room with private bathroom in Brooklyn,7117596,Fernando,Brooklyn,Bedford-Stuyvesant,40.68964,-73.94884,Private room,39,3,0,,,1,0 +9436311,Location Location Location!!!!,4284267,Al,Manhattan,Theater District,40.75732,-73.98276,Entire home/apt,185,3,177,2019-06-22,4.16,1,216 +9437085,BIG bedroom in Uptown Manhattan,48913242,Alec,Manhattan,Washington Heights,40.83907,-73.94256,Private room,49,2,0,,,1,0 +9437574,"Large, Sunny Room in Bushwick!",20496152,Michaela,Brooklyn,Bushwick,40.69798,-73.93206,Private room,69,1,30,2018-01-01,0.80,1,0 +9443911,4 Bedroom Downtown Brooklyn,48943908,Aaron,Brooklyn,Clinton Hill,40.6846,-73.96536,Entire home/apt,330,2,84,2019-06-23,2.03,1,327 +9444324,Boutique Studio,15873085,Alana,Manhattan,Upper West Side,40.7894,-73.9762,Entire home/apt,110,5,0,,,1,7 +9444819,Upper East Side doorman building.,14266812,Rona,Manhattan,Upper East Side,40.77254,-73.9493,Entire home/apt,450,1,0,,,1,0 +9444997,Central Park Room for 2 on the UWS,29417940,Tolley,Manhattan,Upper West Side,40.77813,-73.97574,Private room,150,2,2,2016-08-22,0.05,2,0 +9445342,Times Sq brand huge new 2 room!!!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.75591,-73.99499,Entire home/apt,80,30,10,2019-03-31,0.24,5,357 +9445501,Modern reno 2 room Times Sq quiet!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76376,-73.99323,Entire home/apt,80,30,5,2018-06-16,0.12,5,365 +9445593,"SoHo Apt. in Historic Townhouse, Private Terrace",48949937,Jocelyn,Manhattan,SoHo,40.72419,-74.00451,Entire home/apt,310,3,117,2019-06-22,2.88,1,57 +9445789,Reno huge 2 room quiet Times Sq!!!,48866651,Nissim,Manhattan,Hell's Kitchen,40.76373,-73.99297,Entire home/apt,70,30,5,2019-01-27,0.12,5,341 +9447274,True 2 BR in heart of Chelsea,9703336,Jeff,Manhattan,Chelsea,40.7411,-73.99978,Entire home/apt,325,1,2,2016-01-03,0.05,1,0 +9450180,Private Room Available,7989399,Esin,Queens,Sunnyside,40.7388,-73.92501,Private room,65,3,13,2019-05-18,0.58,2,167 +9451126,Cosy Carroll Garden Apartment,48970186,Margarita,Brooklyn,Carroll Gardens,40.68315,-73.99387,Entire home/apt,155,4,128,2019-05-26,2.89,2,0 +9451334,Beautiful &Cozy&Spacious!,3718888,Ana,Brooklyn,Bushwick,40.68943,-73.90574,Private room,45,1,2,2016-01-10,0.05,1,0 +9451492,"Best location, Midtown Times Square",25406270,Dan,Manhattan,Hell's Kitchen,40.76355,-73.98914,Entire home/apt,125,4,148,2019-07-05,3.69,1,129 +9451597,beautiful room with balcony,6630815,Emmanuelle,Brooklyn,Bushwick,40.68817,-73.91257,Private room,49,2,213,2019-06-24,4.90,2,30 +9451768,New Years in Hudson Heights!,48977782,Miriam,Manhattan,Washington Heights,40.85128,-73.93907,Private room,150,1,0,,,1,0 +9451784,Trendy Williamsburg Apartment!,22953164,Caroline,Brooklyn,Williamsburg,40.71028,-73.95445,Private room,80,2,4,2016-09-05,0.09,1,0 +9452124,LUXURY@ Reasonable Price! Few Mins 2 Times Square!,34403316,Ben,Manhattan,East Harlem,40.79382,-73.94334,Entire home/apt,145,1,152,2019-06-21,3.43,1,200 +9452237,2 BED STEP TO THE TRAIN,5855145,Edward,Queens,Ditmars Steinway,40.77588,-73.90782,Entire home/apt,125,2,38,2019-06-03,0.87,2,330 +9452728,❤️ Charming and Quiet NYC Guestroom ❤️,48983104,Lily,Queens,Middle Village,40.7206,-73.87382,Private room,60,1,95,2019-06-23,2.22,3,80 +9452887,Lovely Little Literary Loft!,23909946,Robin Laverne,Brooklyn,Bedford-Stuyvesant,40.68632,-73.91793,Private room,50,3,70,2019-06-17,1.59,3,25 +9453245,Light Room In Little Italy,3784521,Matiss,Bronx,Belmont,40.85487,-73.88711,Private room,70,7,0,,,1,0 +9453653,Beautiful penthouse in Williamsburg,48988714,Luigi,Brooklyn,Williamsburg,40.71174,-73.95544,Entire home/apt,531,1,119,2019-06-23,2.71,3,353 +9457270,COMFY East Village w loft sleep 6 Coffee included,48320077,Michael,Manhattan,East Village,40.72443,-73.98289,Entire home/apt,199,1,81,2019-07-06,1.91,2,318 +9457285,The Central Park Studio,8604689,Emel,Manhattan,Upper East Side,40.76892,-73.96845,Entire home/apt,214,3,151,2019-06-26,3.58,1,219 +9457917,Cozy 1 Bed Rm Appt in Kipps Bay !,49011283,Murtaza,Manhattan,Kips Bay,40.74404,-73.97564,Entire home/apt,70,3,0,,,1,0 +9458150,1BR Beautifull Bright Very Spacious,7571483,Veronica,Brooklyn,Crown Heights,40.66971,-73.95645,Entire home/apt,105,4,1,2016-08-23,0.03,1,0 +9458704,"Large 1BR Apartment, near Times Sq (2nd Floor)",49015331,Iradj,Manhattan,Hell's Kitchen,40.76037,-73.99016,Entire home/apt,240,2,64,2019-06-30,1.68,2,262 +9459037,Gorgeous studio,33368633,John,Queens,Forest Hills,40.72484,-73.84505,Entire home/apt,114,4,74,2019-06-27,1.69,2,350 +9459232,Bedroom in spacious apt w/ backyard,4052055,Lorien,Manhattan,East Village,40.724,-73.98376,Private room,45,1,1,2015-12-21,0.02,1,0 +9460093,Private Room in SAFE area of Harlem,17263290,Valerie,Manhattan,Harlem,40.82241,-73.9412,Private room,45,1,0,,,1,0 +9461187,Apartment 20 minutes from Manhattan,49027658,Loretta,Brooklyn,Greenpoint,40.73391,-73.95679,Entire home/apt,143,1,0,,,1,0 +9461236,Artist & art filled apartment in williamsbourg,29408743,Monika,Brooklyn,Williamsburg,40.7121,-73.96101,Entire home/apt,145,10,18,2019-04-30,0.43,1,157 +9461660,Room in a Historic Old Brownstone,11611066,Nazgol,Manhattan,Harlem,40.8096,-73.94099,Private room,90,1,0,,,1,0 +9461669,Centrally Located Bedroom with Private Garden,29518662,Jennifer,Brooklyn,Park Slope,40.68182,-73.97704,Private room,75,3,14,2019-04-04,0.33,1,352 +9461803,Private room in classic SoHo loft,2611503,Ronnie,Manhattan,SoHo,40.72675,-74.00757,Private room,225,3,49,2019-06-06,1.44,1,322 +9461851,Charming Upper West Side Studio,1374432,Quentin,Manhattan,Upper West Side,40.78743,-73.96855,Entire home/apt,150,2,51,2019-06-15,1.21,1,0 +9462694,Beautiful 1BR Garden Apt in BK,10240786,Sam,Brooklyn,Carroll Gardens,40.68177,-73.99393,Entire home/apt,150,1,1,2015-12-06,0.02,1,0 +9463039,Wonderful 1-BR apt in Chelsea,5857948,Dimitrios,Manhattan,Chelsea,40.74163,-74.00102,Entire home/apt,182,20,6,2019-05-05,0.17,1,32 +9463261,"Clean bright room, Upper West Side",30942491,Aga,Manhattan,Morningside Heights,40.80473,-73.96528,Private room,62,20,0,,,1,0 +9464046,Beautiful New Apt-perfect location!,1607111,Damian,Brooklyn,Williamsburg,40.7075,-73.95385,Private room,65,6,3,2016-04-28,0.07,1,0 +9464137,Elegant High Rise Condo w/ Doorman,42956813,Naomi,Manhattan,Upper East Side,40.7713,-73.95443,Entire home/apt,175,1,15,2016-09-05,0.35,1,0 +9464318,Huge NYC 4BR Condo ByD'subwaySlp 12,48890727,Ruth,Brooklyn,Carroll Gardens,40.67939,-73.99598,Entire home/apt,525,4,11,2018-10-09,0.28,1,159 +9464543,Prime Location in CHELSEA,15208048,Philipp,Manhattan,Chelsea,40.74601,-73.99987,Private room,98,1,1,2015-12-14,0.02,1,0 +9464605,Private Cozy BR near Union Square - FEMALE only,5776966,Lily,Manhattan,Gramercy,40.73683,-73.98191,Private room,61,3,21,2019-07-05,0.47,1,16 +9464835,Modern Studio UWS,33580313,Kristina,Manhattan,Upper West Side,40.78339,-73.98018,Entire home/apt,159,30,21,2018-04-22,0.48,1,141 +9466003,Best house for New York 欢迎中国游客短租,39981142,Bryant,Queens,Maspeth,40.73329,-73.89463,Private room,68,1,0,,,1,0 +9469009,Luxury Studio in Artsy Brooklyn,15674613,Masha,Brooklyn,Bushwick,40.69395,-73.92418,Entire home/apt,69,10,11,2017-06-25,0.27,1,226 +9469827,"Spacious, Upper East Side apartment",1240958,Caroline,Manhattan,East Harlem,40.78763,-73.95111,Private room,125,5,0,,,1,0 +9470528,"Sunshine 1BR Apt near M&L Subways, Kitchenette",48854322,Yuna,Brooklyn,Bushwick,40.69979,-73.92261,Entire home/apt,115,4,132,2019-06-25,3.00,2,71 +9470554,Private bedroom available in the East Village,49082748,Robert,Manhattan,East Village,40.72911,-73.98151,Private room,85,14,99,2019-07-03,2.32,1,21 +9470677,Fifth Ave/Central Park 1BR IN A TownHouse Garden,49083612,Joe,Manhattan,Upper East Side,40.76656,-73.97038,Entire home/apt,209,1,116,2019-06-23,2.63,1,168 +9471893,Newly Renovated Soho Apt: 2 bedroom/2 bathroom,49090209,Jack,Manhattan,Greenwich Village,40.72772,-74.0013,Entire home/apt,225,1,1,2016-01-02,0.02,1,0 +9471997,Lovely 1-bedroom apartment in SoHo!,10208450,Olai,Manhattan,SoHo,40.72615,-74.00225,Entire home/apt,100,4,1,2016-03-08,0.02,1,0 +9473492,1 Bedroom in 2 bdr Bushwick apt,49099055,Charles,Brooklyn,Bushwick,40.68983,-73.90512,Private room,55,1,1,2015-12-27,0.02,1,0 +9473646,Cozy Private Room in Cobble Hill,6240859,Sarah,Brooklyn,Carroll Gardens,40.68535,-73.99192,Private room,80,2,11,2016-11-03,0.27,1,0 +9473837,Cozy Room in Artistic Apartment,13713658,Isabelle,Brooklyn,Williamsburg,40.7161,-73.94264,Private room,80,1,1,2016-01-02,0.02,1,0 +9473889,"CHARMING, QUIET ONE BEDROOM APT W/ BACK YARD",49101398,Nicholas,Brooklyn,Gravesend,40.59592,-73.97523,Entire home/apt,85,30,9,2019-06-02,0.21,3,216 +9474607,Brand new apt in heart of Midtown!,43951918,Mian,Manhattan,Hell's Kitchen,40.75553,-73.9923,Entire home/apt,280,4,0,,,1,0 +9475052,"Super Cool Brooklyn, Near Manhattan",49108001,Manne,Brooklyn,Bedford-Stuyvesant,40.68735,-73.94541,Entire home/apt,125,2,180,2019-06-18,4.09,1,116 +9475136,Williamsburg Room & Private Bath,13034246,Clinton,Brooklyn,Williamsburg,40.71642,-73.95298,Private room,90,1,0,,,1,0 +9475494,Upper East Side - amazing location!,3394386,Kevin,Manhattan,Upper East Side,40.78113,-73.95452,Entire home/apt,175,1,1,2015-12-27,0.02,1,0 +9475907,Spacious alcove studio in Tribeca,1991700,Rajat,Manhattan,Financial District,40.71124,-74.00834,Entire home/apt,150,3,0,,,1,0 +9476198,Amazing 1BR Apt in the heart of East Village,49115124,Kin,Manhattan,East Village,40.72636,-73.98454,Entire home/apt,180,2,51,2019-07-07,4.77,1,6 +9476212,Awesome Green Vill. Penthouse Apt.,9721574,Gregory,Manhattan,West Village,40.73338,-74.00752,Entire home/apt,250,1,0,,,1,0 +9476397,Spacious room in the heart of Astoria!,40503875,Hebert,Queens,Astoria,40.75823,-73.90881,Private room,60,1,49,2019-02-04,1.13,2,0 +9476449,Spacious Park Slope 3 Bb APT,13859188,Julien,Brooklyn,Park Slope,40.66737,-73.97822,Entire home/apt,200,2,2,2016-08-28,0.05,1,0 +9476774,2 BR/2BA UWS Luxury Apartment w Private Backyard,15145088,Izi,Manhattan,Upper West Side,40.78613,-73.9732,Entire home/apt,295,30,2,2017-03-08,0.06,8,332 +9476831,Private room in Wash Heights NYC,49118721,Raphael,Manhattan,Washington Heights,40.85068,-73.93046,Private room,40,4,1,2016-01-02,0.02,1,0 +9476850,Cozy UWS Studio by Central Park,40947332,Michelle,Manhattan,Upper West Side,40.77877,-73.97872,Entire home/apt,150,3,39,2019-04-16,0.89,1,0 +9477096,Holiday Rental in NYC!,49120717,Sarah,Manhattan,Harlem,40.82516,-73.95288,Private room,40,1,1,2015-12-21,0.02,1,0 +9477359,"Bright, airy East Village apartment",22063782,Jennifer,Manhattan,East Village,40.72311,-73.98389,Entire home/apt,180,7,1,2016-01-03,0.02,1,0 +9477489,1 bedroom clean & simple in manhattan.,49123284,Kyriaki,Manhattan,Two Bridges,40.71255,-73.99673,Entire home/apt,145,6,106,2019-06-24,2.48,2,249 +9477988,Sunny and Close to Everything!,7530710,Lili And Antoine,Brooklyn,Prospect Heights,40.67768,-73.97114,Entire home/apt,175,10,11,2016-10-10,0.25,1,0 +9478196,"Spacious W.Village Triplex, terrace",26748898,Abby,Manhattan,West Village,40.73431,-74.00635,Entire home/apt,275,3,4,2016-07-20,0.11,1,0 +9478370,Spacious and comfortable 1Br apt close to NYC.,8200337,María Cristina,Queens,Sunnyside,40.74538,-73.92139,Entire home/apt,115,2,6,2018-07-02,0.18,1,0 +9479084,Cosy studio / newly renovated,1177400,Bella,Manhattan,Two Bridges,40.71183,-73.99685,Entire home/apt,175,4,3,2017-01-02,0.08,1,0 +9479324,Subletting my room (Jan-May),49133999,Eli,Brooklyn,Clinton Hill,40.69585,-73.96344,Private room,65,60,0,,,1,0 +9479348,Penthouse Duplex & Roof Top Terrace,369154,Michael,Manhattan,Harlem,40.81319,-73.94423,Entire home/apt,345,4,16,2019-04-30,0.37,1,206 +9484346,Handsome Lower East Side 1-bedroom,49158190,Sarah,Manhattan,Chinatown,40.71564,-73.99169,Entire home/apt,150,1,3,2016-01-03,0.07,1,0 +9484892,"Cozy, E.Vill room w/ private bath!",13667539,Brian,Manhattan,East Village,40.72145,-73.97881,Private room,75,1,2,2016-01-01,0.05,1,0 +9485047,Cozy 1 bed Apt in Hell's Kitchen!,49160243,Paulo,Manhattan,Hell's Kitchen,40.76472,-73.98813,Entire home/apt,219,4,130,2019-02-14,3.04,1,329 +9485566,Spacious Artist's Loft,46142110,Charlotte,Brooklyn,Williamsburg,40.72182,-73.95576,Entire home/apt,300,3,0,,,1,0 +9485606,Big 2BR with large living area,49164778,Dmitriy,Manhattan,Harlem,40.81041,-73.9445,Entire home/apt,225,3,76,2019-06-16,1.78,1,360 +9486111,Clean 2 Bedroom Apt w. Washer/Dryer,14565422,Janelle,Manhattan,East Harlem,40.78591,-73.94832,Entire home/apt,275,2,95,2019-06-23,2.51,2,248 +9486229,"Stylish and clean apt, sleeps 5",49167739,Carine,Manhattan,Greenwich Village,40.72797,-74.0019,Entire home/apt,350,4,47,2019-05-15,1.06,2,283 +9486332,Brand New Upper East Side!,49167534,Andrea,Manhattan,Upper East Side,40.77281,-73.95822,Entire home/apt,175,2,0,,,1,0 +9486961,Large Bright Bushwick Private Room!,49170998,Nina,Brooklyn,Bushwick,40.70138,-73.92168,Private room,60,7,3,2018-01-01,0.07,1,0 +9487424,South Slope house for Families!,7526931,Margaret,Brooklyn,Sunset Park,40.66214,-73.99223,Entire home/apt,350,4,0,,,1,0 +9487497,"Sunny, Charming Brooklyn 1 Bedroom!",2448332,Robyn,Brooklyn,Cobble Hill,40.69035,-73.99633,Entire home/apt,119,8,37,2019-06-19,0.87,1,85 +9487684,Nice and cozy studio in the Upper West Side.,4515330,Alo,Manhattan,Upper West Side,40.7795,-73.98258,Entire home/apt,175,4,2,2016-06-06,0.05,1,0 +9488285,J&D Vacation Home,49177258,Mrs .D,Brooklyn,Bedford-Stuyvesant,40.68282,-73.92934,Entire home/apt,335,2,21,2019-06-16,0.53,1,304 +9488756,A tranquil base for exploring NYC,1657540,Charlie,Brooklyn,Bedford-Stuyvesant,40.68023,-73.94487,Private room,70,7,2,2015-12-07,0.05,1,0 +9488762,Comfy Bushwick Apartment,3848874,Becky,Brooklyn,Bushwick,40.70479,-73.92054,Entire home/apt,180,4,0,,,1,0 +9488878,Manhattan furnished 2 bedrooms #2,49176019,Marie-Louise,Manhattan,Upper West Side,40.7996,-73.9621,Entire home/apt,299,4,114,2019-06-20,2.62,1,282 +9489073,Mi Casa Es Su Casa NYC,49181430,Grace,Manhattan,East Harlem,40.79351,-73.93388,Entire home/apt,99,5,13,2019-06-28,0.30,1,127 +9490080,"Cozy, Artsy Apartment in Upper NYC",49186493,Danni,Manhattan,Washington Heights,40.84369,-73.93828,Entire home/apt,95,4,0,,,1,0 +9490600,Room in Williamsburg penthouse,26415140,Gabriele,Brooklyn,Williamsburg,40.71002,-73.94796,Private room,50,5,0,,,1,0 +9490959,Brooklyn Comfort.,49191712,Stephen Dayo,Brooklyn,Bedford-Stuyvesant,40.69372,-73.94578,Entire home/apt,150,2,59,2019-06-14,1.38,1,19 +9491126,Charming Tenament Apt Great View,5658754,G,Manhattan,East Village,40.72776,-73.98328,Private room,655,3,1,2015-12-02,0.02,1,0 +9491448,Bright 1 bedroom in Hells Kitchen,47066108,Karla,Manhattan,Hell's Kitchen,40.76393,-73.99124,Private room,99,3,5,2017-05-18,0.12,1,0 +9492069,Fabulous FiDi home away from home,171213,Jamie,Manhattan,Financial District,40.70864,-74.00675,Entire home/apt,250,1,0,,,1,0 +9492678,Gorgeous 1BR in Williamsburg church,1335392,Matthew,Brooklyn,Williamsburg,40.71584,-73.95868,Entire home/apt,450,2,0,,,1,0 +9492750,Spacious and quiet Manhattan Harlem 1-bed apt!,15441931,Aaron,Manhattan,Harlem,40.80965,-73.94553,Entire home/apt,190,3,102,2019-07-05,2.33,1,281 +9492969,Spacious Prospect Heights Room,826493,David,Brooklyn,Crown Heights,40.67252,-73.96154,Private room,58,1,0,,,1,0 +9493142,"Cozy, clean apartment in Greenpoint",49202910,Megan,Brooklyn,Greenpoint,40.72637,-73.94467,Private room,70,1,0,,,1,0 +9493324,Private Comfortable Room,1857387,Jake,Brooklyn,Williamsburg,40.7139,-73.94628,Private room,41,3,1,2015-11-23,0.02,1,0 +9494304,1 BD BALCONY APT SECURE ELEVATOR BLDG W/ ROOFTOP,224009,Michelle,Manhattan,East Harlem,40.79478,-73.94178,Entire home/apt,325,7,5,2018-09-26,0.12,1,358 +9495205,Comfy & Sunny Studio Rental,33058791,Amanda,Brooklyn,Clinton Hill,40.6858,-73.96789,Entire home/apt,180,2,0,,,1,0 +9495238,Old World Manhattan One-Bedroom,45514903,Trevor,Manhattan,Washington Heights,40.84687,-73.94228,Entire home/apt,95,5,2,2017-01-05,0.05,1,0 +9495907,"Huge, 2-Bedroom West Village Apt",8920162,Brandon,Manhattan,West Village,40.73302,-74.00585,Entire home/apt,500,1,0,,,1,0 +9496094,Modern Flat in the Heart of Chelsea,41066327,Netanya,Manhattan,Chelsea,40.74603,-74.00147,Entire home/apt,160,4,2,2016-09-14,0.05,1,0 +9496137,1BR newly renovated - 5 min walk to Central Park,42573050,Jesse,Manhattan,Midtown,40.75903,-73.96287,Entire home/apt,303,5,0,,,1,0 +9496176,Hells Kitchen hideaway,1557889,Michael,Manhattan,Hell's Kitchen,40.75826,-73.98923,Entire home/apt,400,5,15,2019-06-24,0.35,2,78 +9496213,Queen Bed in williamsburg Brooklyn,6515431,Solange,Brooklyn,Williamsburg,40.70564,-73.93646,Private room,46,1,2,2015-11-23,0.05,1,0 +9496372,W 4th Ground Floor 1bd Apt,8472477,Scott,Manhattan,West Village,40.73095,-74.00242,Entire home/apt,132,1,1,2016-01-03,0.02,1,0 +9496398,"Sunny, spacious 1 BR apt in Harlem",49220133,Venessa,Manhattan,Harlem,40.81297,-73.93922,Entire home/apt,125,3,0,,,1,0 +9496559,Charming PreWar Bedroom in Flatbush,20160518,Jenny,Brooklyn,East Flatbush,40.65343,-73.95175,Private room,50,3,0,,,1,129 +9497513,"Sunny, quiet place room 1",1850477,Michela,Brooklyn,Crown Heights,40.67797,-73.94675,Private room,45,3,0,,,2,320 +9502150,Modern 1 Bedroom Harlem Apt,49245656,Amal & Alex,Manhattan,Harlem,40.80211,-73.94573,Entire home/apt,165,5,42,2019-06-02,0.97,1,281 +9504043,BRIGHT & SPACIOUS ROOM!,31155262,Deborah,Brooklyn,Williamsburg,40.71165,-73.94898,Private room,79,56,0,,,1,0 +9504843,Charming 3 bedroom/2ba in Brooklyn,19410959,Kristie,Brooklyn,Bushwick,40.69914,-73.91471,Entire home/apt,215,3,0,,,1,0 +9505047,Private Room/Bath in Modern Williamsburg Apt.,49255756,Sol,Brooklyn,Williamsburg,40.71848,-73.95817,Private room,80,7,11,2019-05-04,0.25,1,0 +9505268,Chelsea studio,7098925,Dimitri,Manhattan,Chelsea,40.75182,-73.99779,Entire home/apt,150,5,1,2016-01-05,0.02,1,0 +9505449,"Private room in heart of Boerum Hill, Brooklyn",338562,Shanika,Brooklyn,Boerum Hill,40.6836,-73.98285,Private room,62,2,4,2017-05-08,0.11,1,0 +9505990,whole apartment & 2 cats!,49260425,Fernanda,Brooklyn,Bushwick,40.69544,-73.93221,Entire home/apt,68,3,1,2016-07-25,0.03,1,0 +9506014,A COOL APARTMENT in MANHATTAN Perfect for Holiday,37579015,Ana,Manhattan,Theater District,40.75598,-73.98796,Entire home/apt,300,5,7,2019-04-22,0.16,5,82 +9507100,Modern luxurious studio apt. 15 mins to Times Sq.,49182321,Julie,Queens,Long Island City,40.75211,-73.94082,Entire home/apt,149,5,4,2017-10-20,0.14,1,0 +9507112,Perfect one Bed in central Location #12,3256433,Ira,Manhattan,Lower East Side,40.72292,-73.99307,Entire home/apt,200,30,7,2018-10-22,0.19,7,0 +9507521,Beautiful Renovated Brownstone,49268145,James,Brooklyn,South Slope,40.66872,-73.98648,Entire home/apt,275,2,2,2016-01-01,0.05,1,0 +9508202,Sugar Hill Airbnb,43707936,Adriaan,Manhattan,Washington Heights,40.83279,-73.94174,Private room,110,2,0,,,1,0 +9508780,Pretty 1 BR 2 mins from subway,10039346,Valeria,Brooklyn,Flatbush,40.62924,-73.96311,Entire home/apt,83,2,0,,,1,0 +9509148,Beautiful Condo Prospect Heights,5023498,Kalana,Brooklyn,Crown Heights,40.67682,-73.96178,Entire home/apt,150,4,116,2019-04-19,2.74,1,165 +9509218,Large 1 Bedroom Gem in A+ location.,49275064,Chelsea,Manhattan,East Village,40.73161,-73.9896,Entire home/apt,166,3,54,2019-06-23,1.24,1,0 +9509369,Gorgeous sunny studio & perfect beautiful NYC area,24767704,Danielle,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93262,Entire home/apt,79,2,4,2016-06-20,0.09,1,0 +9510158,Luxury Stay in my 2brm humble abode,21366569,Quentin,Manhattan,Hell's Kitchen,40.7638,-73.99298,Entire home/apt,220,5,49,2019-05-31,1.15,2,251 +9510385,Lovely bedroom,49279577,Yone,Queens,Astoria,40.76737,-73.91244,Private room,70,2,26,2019-05-22,0.75,1,128 +9511490,Williamsburg Secret Treasure with deck,240471,Roberto,Brooklyn,Williamsburg,40.70766,-73.94739,Private room,60,3,6,2017-06-02,0.14,2,188 +9511685,Apartment in Stuy Town,49286334,Tairan,Manhattan,Stuyvesant Town,40.73288,-73.97984,Private room,80,1,1,2016-01-06,0.02,1,0 +9512372,Near Hudson River and Subway quiet apt,4110869,Golden&Mavy,Manhattan,Harlem,40.82243,-73.95447,Private room,50,30,10,2019-06-16,0.23,2,359 +9512472,Sunny apt in heart of Greenpoint!,33136017,Julia,Brooklyn,Greenpoint,40.72689,-73.94674,Entire home/apt,120,1,0,,,1,0 +9513152,A nice private room in East Village,20019653,威,Manhattan,East Village,40.72309,-73.98285,Private room,50,1,1,2015-12-28,0.02,1,0 +9513278,Sunny and chic SoHo apartment,49293535,Aleksandra,Manhattan,SoHo,40.72741,-74.00178,Entire home/apt,185,3,2,2016-05-26,0.05,1,0 +9513287,3 bedroom brownstone bklyn backyard,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68481,-73.92763,Entire home/apt,320,80,0,,,3,25 +9513379,"Cozy Private Room, Williamsburg",24295818,Sarah,Brooklyn,Williamsburg,40.70968,-73.94575,Private room,45,10,0,,,1,0 +9513511,Spacious & Sunny Room Perfect for Medical Students,49293611,Gloria,Bronx,Allerton,40.85753,-73.86605,Private room,85,7,9,2019-06-26,0.25,1,364 +9513743,"Central Park West, private terrace!",49295995,Elise,Manhattan,Upper West Side,40.77685,-73.9771,Entire home/apt,300,30,5,2019-06-14,0.12,1,263 +9514193,CUTE PLACE & QUIET DREAMS W BALCONY,48936457,Raquel,Manhattan,East Village,40.72536,-73.98252,Entire home/apt,199,7,36,2018-08-19,0.84,1,164 +9514730,Lovely 1 BR Close to Central Park,2005639,Kasey,Manhattan,Upper West Side,40.78462,-73.97273,Entire home/apt,150,1,0,,,1,0 +9514772,Private Entrance Trendy Greenpoint Williamsburg BK,5668894,Sunim,Brooklyn,Greenpoint,40.72396,-73.95182,Private room,50,5,2,2017-06-20,0.05,1,0 +9514805,Brooklyn Family Getaway,912101,Adrian,Brooklyn,Prospect Heights,40.67806,-73.96735,Entire home/apt,180,5,0,,,1,0 +9514860,Amazing last minute Thanksgiving,16675838,Marc,Manhattan,Hell's Kitchen,40.76526,-73.99096,Entire home/apt,299,1,0,,,1,0 +9514935,Lovely East Williamsburg room,38342237,Leonore,Brooklyn,Williamsburg,40.70725,-73.94187,Private room,66,2,0,,,1,0 +9515597,Brooklyn Brownstone in Fort Greene,49305338,Elizabeth,Brooklyn,Fort Greene,40.68719,-73.97777,Entire home/apt,410,1,0,,,1,0 +9515733,Modern Boho Apt. in Prime Brooklyn Location,888939,Amber,Brooklyn,Boerum Hill,40.68644,-73.9857,Entire home/apt,200,2,8,2018-04-01,0.35,1,0 +9516142,In the Heart of Williamsburg,42597922,Al,Brooklyn,Williamsburg,40.71171,-73.95704,Entire home/apt,149,1,87,2019-06-16,1.99,1,151 +9517131,Cleanly Kept Manhattan Bedroom FiDi,42807409,Sami,Manhattan,Financial District,40.71002,-74.00723,Private room,98,3,0,,,1,0 +9517488,Studio in the fabulous West Village,31248442,Hayley Lynn,Manhattan,West Village,40.7347,-74.00784,Entire home/apt,150,2,1,2018-05-21,0.07,1,0 +9519514,NYC Town House,3338222,Damian,Manhattan,West Village,40.73837,-74.00586,Entire home/apt,1200,6,1,2019-01-04,0.16,1,290 +9520489,Furnished 2 bed | 2 bath w/ views,14466771,Michael,Manhattan,Battery Park City,40.70702,-74.01676,Entire home/apt,300,180,0,,,1,0 +9521009,Amazing loft in East Williamsburg,34066586,Alessandro,Brooklyn,Williamsburg,40.70501,-73.93738,Private room,55,14,0,,,1,0 +9521704,Cute apartment in East Village,14391637,Maxime,Manhattan,East Village,40.72286,-73.9834,Entire home/apt,200,1,3,2016-01-02,0.07,1,0 +9522763,Chic and beautiful apt by the park!,1216362,Camila,Brooklyn,Prospect-Lefferts Gardens,40.65497,-73.96169,Entire home/apt,140,2,45,2019-06-23,1.08,4,345 +9523488,Welcome to Williamsburg,19733878,Sabrina,Brooklyn,Williamsburg,40.71018,-73.95488,Entire home/apt,110,3,4,2017-01-01,0.11,1,0 +9523761,NYC Great View&Private Bathroom,39072477,Yujie,Manhattan,Roosevelt Island,40.76689,-73.94564,Private room,80,10,2,2015-12-21,0.05,1,0 +9524033,Cozy UWS private room,37606128,Kristin,Manhattan,Harlem,40.80319,-73.95432,Private room,60,1,6,2016-07-04,0.14,1,0 +9525241,Clean & Quiet 1br @ Chelsea/Village,2787066,Nate,Manhattan,Chelsea,40.73945,-73.99616,Entire home/apt,126,4,8,2017-05-18,0.18,1,0 +9525335,"Single Bedroom in West Harlem, NYC",49347979,Matthew,Manhattan,Harlem,40.81376,-73.95321,Private room,55,1,2,2015-12-25,0.05,1,0 +9525490,Charming East Village Brownstone,41094794,Benjamin,Manhattan,East Village,40.72826,-73.98871,Entire home/apt,325,3,2,2016-01-03,0.05,1,0 +9525925,Brooklyn Best - Sunny&Spacious Apt,8702561,Kat,Brooklyn,Fort Greene,40.69027,-73.97847,Entire home/apt,140,90,78,2019-05-16,1.83,1,126 +9527309,Sunny Bushwick Room with Balcony,5341236,Christina,Brooklyn,Bushwick,40.69745,-73.92527,Private room,50,2,30,2018-11-07,0.68,2,0 +9528920,"Quiet, Clean, Lit @ LES & Chinatown",3906464,Amy,Manhattan,Lower East Side,40.71355,-73.98507,Private room,9999,99,6,2016-01-01,0.14,1,83 +9529332,Flat in Historic Fort Greene Home,49364392,Michou,Brooklyn,Fort Greene,40.69093,-73.97046,Entire home/apt,186,3,104,2019-06-20,2.52,1,249 +9529493,Large hip open-space loft,1461344,Adam,Brooklyn,Williamsburg,40.71218,-73.95766,Entire home/apt,245,3,20,2019-07-01,0.46,1,128 +9529607,Soho/Little Italy Privat Room for 2,43333475,Jp,Manhattan,Nolita,40.72132,-73.99708,Private room,150,1,3,2019-04-02,0.90,1,178 +9529662,Room #1 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79735,-73.93386,Private room,99,2,80,2019-06-23,1.83,4,158 +9530079,Posh Upper West 2 BR w/ Doorman,49367316,Tara,Manhattan,Morningside Heights,40.80542,-73.9623,Entire home/apt,290,5,0,,,1,0 +9530293,Private Room in Sunny & Spacious WaHi Retreat,21100276,Cory,Manhattan,Washington Heights,40.85617,-73.93141,Private room,43,4,70,2019-03-07,1.61,1,0 +9530381,Suite #2 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79823,-73.9326,Private room,85,2,155,2019-06-12,3.55,4,141 +9530515,Room #4 in Hip Harlem Garden Apt.,47993495,Mama,Manhattan,East Harlem,40.79886,-73.93373,Private room,95,2,169,2019-06-30,3.87,4,166 +9531148,5* Columbus Circle Location*5168,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.76941,-73.98162,Entire home/apt,180,30,1,2016-01-09,0.02,96,280 +9531437,Room in Seaport (Financial District,4455698,Pierre,Manhattan,Two Bridges,40.70889,-73.99964,Private room,100,20,2,2019-05-10,0.25,3,330 +9532048,Adorable light-filled room in BK,485349,Delna,Brooklyn,Crown Heights,40.67483,-73.94697,Private room,40,1,0,,,1,0 +9532665,Studio apartment by Central Park,49379520,Taylor,Manhattan,Upper West Side,40.78572,-73.97036,Entire home/apt,129,1,0,,,1,0 +9533058,Spacious Apartment Steps From Park,24120376,Warren,Brooklyn,Greenpoint,40.72484,-73.94307,Entire home/apt,130,4,1,2017-04-10,0.04,1,0 +9533144,"Beautifully renovated, spacious 2br",12260878,Konstans,Queens,Astoria,40.75762,-73.9144,Entire home/apt,280,2,0,,,1,0 +9534327,Elegant Spacious Brownstone Apt,12449641,Heather,Brooklyn,Bedford-Stuyvesant,40.68216,-73.93178,Entire home/apt,165,10,0,,,2,0 +9538618,"Sunny, Cozy, Modern and Spacious Prospect Heights",396819,Sandy,Brooklyn,Prospect Heights,40.67413,-73.96497,Entire home/apt,100,3,4,2017-03-07,0.13,1,0 +9539912,1BDRM 25 min subway to Times sq,49411357,Viacheslav,Queens,Forest Hills,40.71425,-73.84503,Entire home/apt,100,14,0,,,1,0 +9540193,Washington Heights 1 bedroom beauty,49412548,Laiona,Manhattan,Washington Heights,40.84335,-73.94059,Entire home/apt,85,1,28,2019-05-25,0.65,1,27 +9540414,Cozy Carroll Gardens Ground Floor Apartment,2027404,Kat And Chris,Brooklyn,Carroll Gardens,40.68048,-73.99379,Entire home/apt,160,7,46,2019-06-19,1.06,1,254 +9540974,Great room in PERFECT location,6904334,Francisco,Manhattan,Chelsea,40.74556,-74.00156,Private room,195,2,0,,,1,0 +9541017,Das Haus: our cozy NYC home,55480,Erin,Queens,Long Island City,40.76227,-73.93034,Entire home/apt,150,1,0,,,1,0 +9541320,Gorgeous BK Apt steps from Barcalys,19698371,Ben,Brooklyn,Gowanus,40.68068,-73.98186,Entire home/apt,63,5,2,2019-01-04,0.05,1,0 +9541753,2 Bedroom Prospect Heights Hideaway,11460541,Nick,Brooklyn,Prospect Heights,40.67939,-73.96631,Entire home/apt,60,1,1,2016-06-22,0.03,1,0 +9541921,Clean & Convenient Room in UES,13262455,Bridget,Manhattan,Upper East Side,40.7709,-73.95561,Private room,95,5,1,2016-09-15,0.03,3,0 +9542259,Clean and Bright (READ NOTES),13778440,Cinthia,Manhattan,Washington Heights,40.85256,-73.93598,Private room,50,2,95,2019-06-23,2.19,1,315 +9542827,BIG room with bath & balcony in BK!,2966628,Mike,Brooklyn,Bedford-Stuyvesant,40.68795,-73.94173,Private room,59,1,2,2016-01-01,0.05,1,0 +9543557,Modern Williamsburg Apartment,48498097,Benjamin,Brooklyn,Williamsburg,40.71849,-73.95212,Entire home/apt,175,3,0,,,1,0 +9543637,Lovely studio in East Village,10681247,Sonja,Manhattan,East Village,40.7229,-73.98414,Entire home/apt,83,3,31,2019-02-16,0.73,1,0 +9543678,"Bay Ridge,Brooklyn 20minutes to NYC",49413208,Sotira,Brooklyn,Fort Hamilton,40.61605,-74.03642,Entire home/apt,80,5,4,2018-10-10,0.10,2,269 +9544242,"Charming 2BD Cozy & Quiet, 6 Train",17888644,Elizabeth,Manhattan,East Harlem,40.78987,-73.9482,Entire home/apt,200,2,39,2019-05-27,1.14,1,19 +9544410,Large 1-bedroom near Times Square (3rd Floor),49015331,Iradj,Manhattan,Hell's Kitchen,40.76103,-73.99001,Entire home/apt,265,2,88,2019-06-28,2.01,2,278 +9544812,Doorman Brand Penthouse 2 bed 2 bath 5207,16098958,Jeremy & Laura,Manhattan,Theater District,40.76251,-73.98552,Entire home/apt,350,30,0,,,96,327 +9544914,"King Bed, Private Room in Crown Heights, Comedian",22423049,Abraham,Brooklyn,Crown Heights,40.67157,-73.94117,Private room,36,2,100,2017-07-31,2.28,1,0 +9545059,private bedroom and private bath,49431548,Isabelle,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95777,Private room,78,1,1,2015-12-03,0.02,1,0 +9545498,Private Room in East Village,40316314,Chris,Manhattan,East Village,40.72363,-73.98234,Private room,80,1,1,2015-11-29,0.02,2,0 +9546039,Found a tree I like so built a nest,49435973,Jason,Brooklyn,Williamsburg,40.70665,-73.93529,Entire home/apt,218,3,102,2019-06-11,2.46,1,171 +9546695,Entire Apt in Trendy Williamsburg!,34000566,Andrew,Brooklyn,Williamsburg,40.71069,-73.95283,Entire home/apt,95,2,0,,,1,0 +9546994,Spacious 1BR in UES townhouse,45595980,Tny,Manhattan,Upper East Side,40.76866,-73.96562,Entire home/apt,130,30,10,2019-01-07,0.41,12,13 +9547361,Charming 1BR in Upper Eastside,45595980,Tny,Manhattan,Upper East Side,40.76719,-73.96565,Entire home/apt,130,30,11,2019-04-29,0.30,12,28 +9547920,Private room in East Williamsburg,24337956,Vince,Brooklyn,Williamsburg,40.70714,-73.93611,Private room,51,1,1,2016-01-05,0.02,1,0 +9548422,Nice Room in Beautiful Clinton Hill,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.69002,-73.96002,Private room,45,12,2,2016-05-04,0.05,3,281 +9548756,Manhattan 1-BR by Grand Central,21188854,Sarah,Manhattan,Midtown,40.75553,-73.97251,Entire home/apt,200,2,0,,,1,0 +9549544,Luxury Suite in Theater District - Midtown NYC,49451877,Sean,Manhattan,Midtown,40.76374,-73.98089,Entire home/apt,350,2,2,2016-12-30,0.05,1,0 +9549937,"Cozy, updated 2 bedroom in Nolita!",24170584,Lauren,Manhattan,Little Italy,40.72011,-73.99729,Entire home/apt,265,1,1,2016-12-10,0.03,2,0 +9550171,"Perfectly located, vibrant studio!",49455312,Jonatan,Manhattan,Upper West Side,40.77472,-73.98323,Entire home/apt,228,2,14,2017-05-21,0.41,1,0 +9550485,Private Bedroom in Heart of Soho,34691404,Noah,Manhattan,SoHo,40.72501,-74.00353,Private room,90,3,2,2016-03-05,0.05,1,0 +9550620,❤️❤️Relaxing Guestroom by a Lovely Park ❤️❤️,48983104,Lily,Queens,Middle Village,40.72058,-73.87493,Private room,60,2,72,2019-04-20,1.68,3,81 +9550714,"Brooklyn Charmer, Close to Everything NYC!",48399349,Lakan,Brooklyn,Downtown Brooklyn,40.69072,-73.99034,Entire home/apt,120,2,1,2016-10-10,0.03,1,0 +9550807,Large Studio-Style Bedroom,21787440,Yi-Chen,Manhattan,Washington Heights,40.84005,-73.93735,Private room,65,1,1,2016-01-01,0.02,2,0 +9550884,Cute basement apartment,1459446,Katie,Brooklyn,Windsor Terrace,40.64801,-73.97562,Private room,90,3,4,2018-11-04,0.09,1,290 +9551417,"Modern 2BR Apt by Central Park, & Subway",49349133,Onur,Manhattan,East Harlem,40.79665,-73.94824,Entire home/apt,225,2,31,2019-06-09,0.70,1,160 +9555648,15 Minutes from Central Park - Studio apartment,23815371,Tina,Queens,Ditmars Steinway,40.78115,-73.90883,Entire home/apt,103,1,126,2019-06-11,3.20,1,245 +9556028,Large 3 BR Greenwich Village Apartment,41863600,Ken,Manhattan,East Village,40.73068,-73.98949,Entire home/apt,500,5,4,2018-12-28,0.22,1,0 +9556983,Private modern room with NYC skyline view,49485109,Spencer,Brooklyn,Bushwick,40.70111,-73.92202,Private room,62,6,18,2019-06-09,0.51,1,4 +9558052,Sunny Room Minutes from the Subway,49489331,Henry,Brooklyn,Crown Heights,40.66528,-73.93293,Private room,45,2,1,2016-01-10,0.02,1,0 +9559239,Stunning 2 story Duplex in SOHO,608275,Helen,Manhattan,Greenwich Village,40.72704,-73.99954,Entire home/apt,300,3,1,2016-01-03,0.02,1,0 +9559335,Designer Duplex - Highline. Brand new mattresses!,49494701,Rand,Manhattan,Chelsea,40.74835,-74.00336,Entire home/apt,299,1,176,2019-06-22,4.02,1,297 +9560034,Huge room in LES townhouse,23854797,Joel,Manhattan,Lower East Side,40.72136,-73.98767,Private room,85,1,1,2016-06-06,0.03,1,0 +9560584,Cozy Room In Chinatown!,17493980,Bridget,Manhattan,Financial District,40.71142,-74.00535,Private room,80,30,0,,,1,67 +9561251,Upper East Side Luxury Rooftop & Doorman Building,49502599,Alisa,Manhattan,Upper East Side,40.76928,-73.96163,Private room,250,1,1,2015-12-13,0.02,1,0 +9561650,AMAZING Clean Location on a budget!,2316568,Rani,Manhattan,East Village,40.72564,-73.98088,Private room,49,1,0,,,1,0 +9562515,Duplex in Historic Fort Greene,253057,Jim,Brooklyn,Fort Greene,40.68965,-73.97169,Entire home/apt,220,55,10,2018-05-07,0.23,1,0 +9562872,"Close to subway, all shops, restaurants!",49509847,Abhilasha Ashiv,Queens,Rego Park,40.72478,-73.85579,Entire home/apt,109,3,88,2019-07-01,2.49,1,357 +9563266,Beautiful cozy LES apartment!,49511227,Alex,Manhattan,Lower East Side,40.71582,-73.98812,Entire home/apt,300,2,60,2019-06-15,1.36,2,118 +9563436,The PERFECT Nolita vacation,7969836,Ohad,Manhattan,SoHo,40.71927,-73.99943,Entire home/apt,300,2,4,2016-06-04,0.09,1,0 +9563529,Clean and spacious apartment,48937383,Sophia,Manhattan,Inwood,40.86458,-73.92883,Private room,90,1,0,,,1,0 +9563868,Downtown Airy Designer Loft,49513668,Jaclyn,Manhattan,Financial District,40.71143,-74.00596,Entire home/apt,289,2,180,2019-06-26,4.13,1,253 +9563873,1 ROOM IN A NEW HOUSE IN QUEENS,49514708,Steve,Queens,Jamaica,40.69009,-73.79555,Private room,37,4,42,2019-07-07,0.98,1,228 +9564986,Super Cozy Room in Floor Through Apartment,5532810,Sandy,Brooklyn,Williamsburg,40.71731,-73.943,Private room,50,2,42,2018-11-24,1.33,2,244 +9571665,Brightly Tucked into Williamsburg,1401835,Danielle,Brooklyn,Williamsburg,40.71032,-73.95482,Private room,75,3,17,2019-06-09,0.49,3,355 +9572219,-TIMES SQUARE - 19 MinutesBIG ROOM,43298076,Gordon M,Manhattan,Harlem,40.82292,-73.95373,Private room,44,2,12,2019-05-13,0.28,4,45 +9572448,Lovely room in the heart of BK,49482081,Bianca,Brooklyn,Bedford-Stuyvesant,40.69886,-73.94617,Private room,45,1,1,2015-12-10,0.02,1,0 +9573394,Cozy studio in Brooklyn,26787684,Karlee,Brooklyn,Windsor Terrace,40.65863,-73.98435,Entire home/apt,120,2,0,,,1,0 +9573876,Sunny 1 Bedroom Apartment - 2 Cats,49561278,Weijia,Manhattan,Lower East Side,40.71752,-73.99077,Entire home/apt,110,4,1,2016-01-02,0.02,1,0 +9574823,1 Bedroom Loft in Williamsburg,2699292,Eric,Brooklyn,Greenpoint,40.72066,-73.95308,Entire home/apt,195,3,39,2019-06-13,0.94,1,54 +9574936,Convenient Place in Midtown,49566321,Timur,Manhattan,Hell's Kitchen,40.76515,-73.9847,Shared room,100,2,18,2017-04-04,0.41,1,365 +9574953,Beautiful 2BR Apt in Williamsburg,4025647,Eduardo,Brooklyn,Williamsburg,40.71259,-73.96037,Entire home/apt,200,7,3,2019-01-02,0.08,1,216 +9575089,2 Bedroom Private Garden Apartment,48966726,Grace,Brooklyn,Crown Heights,40.66996,-73.94989,Entire home/apt,160,2,35,2019-05-05,0.90,1,8 +9575562,Sunny Apt in the Heart of Brooklyn,23254783,Amanda,Brooklyn,Williamsburg,40.71219,-73.94826,Entire home/apt,115,3,43,2019-07-07,1.03,1,0 +9575567,20 Minutes to Manhattan,7252221,Zhenya,Brooklyn,Flatbush,40.65221,-73.96289,Private room,55,14,5,2019-06-30,0.24,2,21 +9575790,Entire Spacious Apt: LIMITED DATES,43632142,Michael,Queens,Astoria,40.76275,-73.92052,Entire home/apt,150,3,0,,,1,220 +9575809,Huge Space in Clinton Hill,49570763,Colin,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95896,Entire home/apt,70,1,0,,,1,0 +9575903,"Heart of Crown Heights, 15 min to Manhattan",1115741,Stephan,Brooklyn,Crown Heights,40.67228,-73.9573,Entire home/apt,130,30,6,2018-05-19,0.14,1,8 +9575930,Gorgeous 1bd in 2bd Apt. Manhattan,16417917,Karina,Manhattan,Morningside Heights,40.80774,-73.95703,Private room,100,2,17,2019-06-14,0.39,1,0 +9575961,Chelsea / High Line Oasis,69510,Brian,Manhattan,Chelsea,40.7465,-74.0036,Entire home/apt,375,3,0,,,1,0 +9576230,Penthouse Room in Williamsburg,10619345,Max,Brooklyn,Williamsburg,40.7157,-73.96011,Private room,49,1,1,2016-02-15,0.02,1,0 +9576278,NEW CLEAN COMFORTABLE PRIVATE ROOM,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.68664,-73.92318,Private room,49,1,113,2019-06-03,2.89,3,288 +9576478,Angelina,49572701,Vitaliy,Manhattan,Harlem,40.80948,-73.94739,Entire home/apt,245,3,69,2019-06-11,1.61,1,226 +9576812,Spectacular Designer Loft,4562182,Florence,Manhattan,Harlem,40.81246,-73.94506,Entire home/apt,250,30,57,2019-06-27,1.32,4,224 +9577006,Private Bedroom,44620317,Claudia,Queens,Corona,40.73703,-73.85861,Private room,55,2,33,2018-02-19,0.75,4,280 +9577296,1BD in West Village,49577355,J.J.,Manhattan,West Village,40.74029,-74.00578,Entire home/apt,225,2,185,2019-06-21,4.24,1,250 +9577748,Beautiful bedroom w/ private bath,4451240,Eli,Manhattan,Morningside Heights,40.80536,-73.96228,Private room,68,14,1,2016-01-17,0.02,1,0 +9577777,Large 1 BR bright designer gem,1439333,Crystal,Manhattan,West Village,40.73866,-74.00063,Entire home/apt,220,6,79,2019-07-04,1.90,1,81 +9577968,Cozy BR | Private Floor & Terrace,3389541,Tal,Brooklyn,Crown Heights,40.67859,-73.96076,Private room,75,1,117,2019-06-24,2.82,1,96 +9578181,Spacious & Convenient Midtown Apt,19510808,Ding,Manhattan,Murray Hill,40.74755,-73.98054,Entire home/apt,120,2,2,2018-05-20,0.05,1,0 +9578325,"Lovely, Cozy Loft Carroll Gardens",1407251,Ute,Brooklyn,Gowanus,40.67924,-73.98718,Entire home/apt,129,1,120,2019-06-22,2.73,2,275 +9578639,HUGE 2 bed/2 bath in doorman building,2335786,Rom,Manhattan,Upper East Side,40.77919,-73.94733,Entire home/apt,199,4,10,2019-05-05,0.26,1,0 +9578683,Cozy room in the heart of LES,49511227,Alex,Manhattan,Chinatown,40.71668,-73.98954,Private room,92,1,120,2018-03-19,2.74,2,0 +9578848,Amazing apartment Brooklyn Highs,20510488,Apic,Brooklyn,Prospect Heights,40.67748,-73.96469,Entire home/apt,185,5,0,,,1,0 +9579542,Large and Sunny Artistic Apt / City Center,49287218,Misha,Manhattan,Hell's Kitchen,40.76661,-73.98439,Entire home/apt,179,2,27,2019-06-23,0.63,1,8 +9580218,Comfy Space in Gramercy/Manhattan,49592958,Jared,Manhattan,Gramercy,40.73684,-73.98194,Private room,80,1,0,,,1,0 +9585027,Cozy Oversized Room - near Park Ave,45632792,Nickie,Manhattan,Kips Bay,40.74231,-73.97697,Private room,80,1,2,2015-12-05,0.05,2,0 +9585339,Sunny 1 BR apt in West Chelsea,49616729,Annie,Manhattan,Chelsea,40.75164,-74.00146,Entire home/apt,100,2,5,2016-04-18,0.12,1,0 +9586086,"Bright, Beautiful House w/ Yard",397900,Kari,Brooklyn,Kensington,40.63984,-73.97197,Entire home/apt,225,4,0,,,1,0 +9586258,PRIVATE COSY ROOM IN BROOKLYN,27065592,Shane,Brooklyn,Clinton Hill,40.68402,-73.96094,Private room,60,1,2,2016-01-02,0.05,1,0 +9587933,Old World in New York with Location! Location!,47933513,Jim,Manhattan,Upper East Side,40.78039,-73.95863,Entire home/apt,166,2,8,2019-05-19,0.39,1,3 +9588196,Cozy & sunny room in Bushwick,4739974,Naomi,Brooklyn,Bushwick,40.70641,-73.92158,Private room,70,4,0,,,1,0 +9588699,"LargeApt 1 BLOCK frm A,C,B,D,2,3",6697886,Mandy,Manhattan,Harlem,40.81613,-73.94546,Private room,63,1,0,,,2,0 +9588828,Comfortable UES 2BDR Apt,49630478,Kaitlyn,Manhattan,Upper East Side,40.78007,-73.94677,Entire home/apt,115,4,1,2015-12-29,0.02,1,0 +9588992,One Bedroom for Rent,9910378,Donna,Brooklyn,Bushwick,40.69276,-73.92493,Private room,65,14,0,,,1,0 +9589030,Modern+cozy room in Bushwick,10061428,Wipawe,Brooklyn,Bushwick,40.69911,-73.92441,Private room,55,1,6,2016-08-20,0.14,1,0 +9589086,Modern Duplex Apt with courtyard!,21086012,Babak,Brooklyn,Bedford-Stuyvesant,40.69422,-73.94616,Private room,76,1,4,2016-08-22,0.09,1,0 +9589179,Nolita 1br near Little Italy/SoHo,6312670,Kevin,Manhattan,Nolita,40.72097,-73.99605,Entire home/apt,140,20,1,2015-12-30,0.02,1,0 +9590519,Fun Spacious Midtown Apt near U.N. & Central Park,49383811,Christian,Manhattan,Midtown,40.75435,-73.96729,Entire home/apt,150,1,142,2019-06-25,3.52,1,58 +9590866,Amazing 1bd in the heart of NYC!!!,49641082,Gary,Manhattan,Harlem,40.81872,-73.94491,Private room,39,1,0,,,1,0 +9591852,Soho Greenwich Village 3+ BDR Duplx,49645950,Karen,Manhattan,SoHo,40.72546,-74.00036,Entire home/apt,450,3,12,2019-04-27,0.28,2,3 +9591913,"New Studio, 10 mn to Manhattan, Clinton Hill",34503055,Chrystelle,Brooklyn,Clinton Hill,40.68275,-73.96705,Entire home/apt,105,14,9,2019-02-03,0.21,1,285 +9592655,Spacious Room (Double Bed/Sofa Bed),49649740,Jd,Manhattan,Harlem,40.81026,-73.95279,Private room,80,5,0,,,1,0 +9592781,Overlooking Fort Greene Park,12982906,Kate,Brooklyn,Fort Greene,40.69338,-73.97322,Entire home/apt,110,3,19,2019-06-17,0.44,3,0 +9593093,Beautiful Spacious Apt In Harlem,49651648,Morgan,Manhattan,Harlem,40.80196,-73.95261,Private room,75,1,0,,,1,0 +9594892,Beautiful Luxury Soho 2 bedroom,10651357,Jeanne,Manhattan,SoHo,40.72468,-74.00746,Entire home/apt,450,3,2,2016-01-05,0.05,1,0 +9594995,Beautiful private 1BR apt in Harlem,49661200,Alex And Tom,Manhattan,Harlem,40.82458,-73.95038,Entire home/apt,150,1,287,2019-06-21,6.57,1,198 +9595222,Cozy Park Slope Apartment,4397614,Sarah,Brooklyn,Park Slope,40.67809,-73.97324,Entire home/apt,125,1,0,,,1,0 +9595353,Bright 1 Bedroom in 2 BR Apt,49662115,Sherry,Manhattan,Midtown,40.74606,-73.98688,Private room,125,3,0,,,1,0 +9595863,Cozy Private Room in Williamsburg,33906084,Manon,Brooklyn,Williamsburg,40.7171,-73.95273,Entire home/apt,80,4,1,2015-12-23,0.02,1,0 +9596551,Blocks Away From Central Park - NYC,37058836,Andrew,Manhattan,East Harlem,40.79682,-73.94876,Entire home/apt,260,1,1,2016-01-01,0.02,1,0 +9596608,Family friendly upper west side apt,4931159,Rob,Manhattan,Upper West Side,40.7924,-73.97265,Entire home/apt,85,4,17,2019-04-21,0.55,1,0 +9596708,BEAUTIFUL WHITE BEDROOM/TIMES SQUARE/8 AVE,47705853,Katherine,Manhattan,Hell's Kitchen,40.75452,-73.99267,Private room,199,2,93,2019-06-20,2.14,3,232 +9596854,Large Bright 1 bdr in newly renovated building,21498793,Tiffany,Brooklyn,Crown Heights,40.67726,-73.95928,Entire home/apt,135,3,21,2018-12-30,0.56,1,15 +9597031,Cozy Apartment 20 min to Manhattan!,49671297,Kujtim,Queens,Ridgewood,40.70777,-73.898,Entire home/apt,100,3,27,2018-08-27,0.63,1,107 +9597111,BEAUTIFUL SMALL BEDROOM/TIMES SQUARE/8 AVENUE,47705853,Katherine,Manhattan,Hell's Kitchen,40.75429,-73.99198,Private room,99,2,5,2018-10-02,0.11,3,252 +9597258,Cozy and affordable room.,32379616,Fabiola,Bronx,Williamsbridge,40.88165,-73.85625,Private room,34,5,17,2019-05-31,0.40,2,313 +9597325,Perfect Studio in Brooklyn/Queens,2736439,Cindy & Jeremy,Queens,Maspeth,40.71382,-73.91282,Entire home/apt,89,3,54,2019-06-19,1.26,1,331 +9597627,Beautiful Room - 20 min. to Lower Manhattan,37450458,Olivia,Brooklyn,Bedford-Stuyvesant,40.68125,-73.91272,Private room,77,1,118,2019-06-30,2.74,2,216 +9597629,Lovely Park Slope Bklyn Brownstone,24951732,Anne,Brooklyn,South Slope,40.66519,-73.98264,Entire home/apt,350,2,0,,,1,0 +9602518,Beautifully Private Brooklyn Apt,11491789,Neev,Brooklyn,Williamsburg,40.70721,-73.93957,Entire home/apt,190,4,64,2019-05-21,1.54,1,159 +9603611,Light-filled Artist Loft in the heart of Bushwick,47710992,Emilie,Brooklyn,Bushwick,40.70831,-73.92095,Entire home/apt,115,2,9,2017-12-10,0.27,1,1 +9603803,Brooklyn Charm,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68777,-73.9387,Private room,40,2,5,2019-04-08,0.12,4,87 +9603991,Homely Apartment For The Holidays!!,6725302,Nancy,Manhattan,Hell's Kitchen,40.76769,-73.988,Entire home/apt,200,2,0,,,1,0 +9605039,"Sunny, Clean One bedroom!",2513586,Marguerite,Manhattan,Upper East Side,40.78495,-73.9503,Entire home/apt,135,7,1,2016-01-01,0.02,1,0 +9606832,HIP MODERN 2BR1b Williamsburg/Grnpt,49709755,Julianna,Brooklyn,Greenpoint,40.72304,-73.95239,Entire home/apt,135,1,0,,,1,0 +9607482,Cozy Studio in Midtown East,36380016,Eman,Manhattan,Midtown,40.7532,-73.96711,Entire home/apt,99,1,7,2016-01-27,0.16,1,0 +9607855,Beautiful apt in Soho,46222477,Karoliina,Manhattan,SoHo,40.7261,-74.00281,Entire home/apt,145,2,61,2017-10-30,1.40,1,0 +9607952,Extra large downtown apartment,6590142,C,Manhattan,Financial District,40.70835,-74.00702,Entire home/apt,349,2,5,2016-07-23,0.13,1,0 +9607995,Cozy 3 BD in NYC's East Village,45100854,Will & Tash,Manhattan,East Village,40.72401,-73.98061,Private room,75,5,4,2017-02-22,0.09,2,0 +9609049,Modern Apt in Williamsburg-roofdeck,2816129,Anne-Laure,Brooklyn,Greenpoint,40.71984,-73.95386,Entire home/apt,200,4,25,2019-05-26,0.58,1,6 +9609246,Private bedroom w/Terrace,49720830,Sarah,Manhattan,Murray Hill,40.74899,-73.97301,Private room,119,1,1,2015-12-31,0.02,1,0 +9609762,Room on the UWS (near Columbia U),9144442,Samantha,Manhattan,Upper West Side,40.80219,-73.96618,Private room,65,3,9,2016-12-31,0.21,1,0 +9609800,"*Huge, Clean & Spacious Stay in NYC*",12651062,Adam,Manhattan,Washington Heights,40.83625,-73.93753,Private room,50,3,2,2018-09-17,0.05,1,5 +9609825,Chelsea 1 BR - Brand New Apartment,27158859,Harrison,Manhattan,Chelsea,40.74761,-73.99761,Entire home/apt,199,4,15,2017-09-15,0.38,1,0 +9610704,Private Room in the West Village,15337454,Henriette,Manhattan,West Village,40.73436,-73.99994,Private room,80,1,1,2016-01-05,0.02,1,0 +9610982,A private room in an apartment,47511212,Aanchal,Manhattan,Morningside Heights,40.80508,-73.96262,Private room,55,2,4,2016-05-11,0.09,1,0 +9611121,Penthouse in Crown Heights,1192413,Yoav,Brooklyn,Crown Heights,40.66909,-73.95144,Entire home/apt,99,1,0,,,1,0 +9611372,Bright space in beautiful area,5238157,Jessica,Brooklyn,Carroll Gardens,40.68002,-73.99626,Entire home/apt,125,1,5,2016-09-05,0.12,1,0 +9611586,Modern Minimal Central Chelsea Loft,8797100,Adam,Manhattan,Chelsea,40.74361,-73.99503,Entire home/apt,235,4,107,2019-06-23,2.98,1,27 +9612260,Lovely Brooklyn Apt,8871082,Houston,Brooklyn,Carroll Gardens,40.6776,-74.0014,Entire home/apt,110,5,1,2016-07-02,0.03,1,0 +9612938,Studio apt in Historic House Museum,49736436,George,Manhattan,Washington Heights,40.83549,-73.93968,Entire home/apt,120,3,10,2019-07-01,0.70,2,244 +9613369,Beautiful studio - Upper West Side,49737913,Jacqueline,Manhattan,Upper West Side,40.78095,-73.98178,Entire home/apt,195,3,1,2015-12-22,0.02,1,0 +9613465,Central Park - Cozy Room for 2,37626481,Lugao,Manhattan,Upper West Side,40.79622,-73.97059,Private room,109,1,113,2019-06-30,2.58,2,197 +9613541,Open Room for December,49738780,Katie,Queens,Astoria,40.77211,-73.92055,Private room,100,1,0,,,1,0 +9613626,Clean & Simple Brooklyn Bedroom,7371085,Alisha,Brooklyn,Williamsburg,40.70436,-73.93225,Private room,55,7,2,2016-01-02,0.05,1,0 +9614378,"Hip, Young & Fabulous Midtown",49742527,Lumduan,Manhattan,Midtown,40.75246,-73.97171,Entire home/apt,150,4,76,2019-06-21,1.79,1,299 +9614552,Huge brownstone apt. on cute block!,766920,Archie,Brooklyn,Carroll Gardens,40.68316,-73.99775,Entire home/apt,100,2,4,2016-04-18,0.09,1,0 +9614672,Beautiful Apartment Hells Kitchen,7534128,Kevin,Manhattan,Hell's Kitchen,40.76406,-73.98705,Entire home/apt,450,1,0,,,1,0 +9614785,Serene in Sunset,6040624,Dan,Brooklyn,Sunset Park,40.6454,-74.00782,Entire home/apt,155,1,138,2019-06-22,3.14,1,225 +9614933,Prime location Williamsburg Apt,32971323,Shivangi,Brooklyn,Williamsburg,40.70863,-73.95328,Private room,80,14,0,,,1,0 +9614969,Cozy Room in East Harlem,49673620,Vanessa,Manhattan,East Harlem,40.79651,-73.93184,Private room,60,3,10,2019-01-02,0.23,1,0 +9615209,Cozy Studio in Luxury Building LIC,49746656,Elva,Queens,Long Island City,40.74572,-73.95679,Entire home/apt,85,5,1,2016-08-13,0.03,1,0 +9615417,"Private BRoom ,Bathroom & backyard",6628233,Maia,Brooklyn,Bedford-Stuyvesant,40.68534,-73.95533,Private room,90,4,0,,,1,0 +9615485,Spacious private bedroom 1 stop to Manhattan,35320945,Peggy,Manhattan,Roosevelt Island,40.76108,-73.95058,Private room,70,2,5,2017-03-25,0.14,1,0 +9615727,Slice of paradise in Bushwick!,3501254,Brett,Brooklyn,Bushwick,40.70393,-73.9284,Private room,50,5,1,2016-01-06,0.02,1,66 +9615815,Sunny and Cozy apt in Midtown,16396714,Andrea,Manhattan,Kips Bay,40.74054,-73.97626,Entire home/apt,120,3,1,2017-07-08,0.04,3,0 +9616453,Room next to Columbia University,49753169,Juan Luis,Manhattan,Morningside Heights,40.80838,-73.95995,Private room,75,2,1,2016-01-06,0.02,1,0 +9616729,cute and cozy room in brooklyn,49754509,Ornella,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95057,Private room,31,2,1,2015-12-30,0.02,1,0 +9617219,Studio One Deluxe Private Room (private bathroom),47784768,Yemi,Brooklyn,Brownsville,40.66374,-73.91733,Private room,79,2,70,2019-06-23,1.60,2,253 +9618477,Warm Warm Wooded Quiet City Escape,38284667,Ruth,Manhattan,East Village,40.72888,-73.98193,Entire home/apt,160,160,2,2015-12-14,0.05,2,363 +9618986,1 Bedrom Apt(One Block From Subway),49764808,Danielle,Brooklyn,Bedford-Stuyvesant,40.67695,-73.91567,Entire home/apt,99,2,96,2019-06-23,2.50,2,357 +9619848,Beautiful apt 2 blocks from Central Park,1509237,Leandro,Manhattan,East Harlem,40.79686,-73.9459,Entire home/apt,199,2,5,2019-05-02,0.12,2,177 +9623722,One of a Kind Duplex Garden Apt,518931,Amal,Manhattan,Harlem,40.80263,-73.94662,Entire home/apt,260,3,38,2019-07-02,0.94,1,296 +9624177,Great modern apt in Williamsburg,623474,Bridget,Brooklyn,Williamsburg,40.70983,-73.96494,Entire home/apt,200,6,0,,,1,0 +9625266,West 57th Street in Manhattan,41702722,Pür,Manhattan,Midtown,40.76278,-73.97443,Entire home/apt,395,7,0,,,1,0 +9625826,Home Sweet Home in Brooklyn,11497855,Lina,Brooklyn,Prospect-Lefferts Gardens,40.66145,-73.96005,Private room,65,10,1,2016-01-12,0.02,1,0 +9625926,2 bedroom in Cobble Hill,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68406,-73.99156,Entire home/apt,219,2,0,,,2,0 +9627513,Cozy 4br in the heart of Harlem,36792245,Kilandra,Manhattan,Harlem,40.80272,-73.95564,Private room,60,2,8,2016-08-22,0.19,1,0 +9628471,Peaceful Brooklyn Sancutary,2247187,Simone,Brooklyn,Bedford-Stuyvesant,40.68545,-73.95883,Private room,45,25,1,2018-01-02,0.05,1,19 +9630295,Beautiful Bed Stuy Brownstone Subl,49807145,Eric,Brooklyn,Bedford-Stuyvesant,40.68379,-73.94648,Private room,60,60,34,2018-08-02,0.79,1,189 +9630342,Quiet Studio in Prime East Village,49807312,Ryan,Manhattan,East Village,40.72554,-73.9838,Entire home/apt,107,3,19,2019-06-23,0.44,1,72 +9631380,Doorman Laundry Large Studio 5195,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7659,-73.98674,Entire home/apt,230,30,1,2018-10-31,0.12,96,281 +9631464,Doorman Swim. Pool 2 bed 2bath!5126,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79509,-73.96649,Entire home/apt,288,30,0,,,96,311 +9633119,Feel.Like.A.Local in Williamsburg,47640633,Murat,Brooklyn,Williamsburg,40.71621,-73.93941,Private room,50,7,0,,,1,0 +9633323,EmpireStateView one bedroom apart,23312516,Vera,Queens,Astoria,40.75697,-73.91847,Entire home/apt,130,3,39,2019-06-30,0.89,1,331 +9633740,1 Bedroom within Full Apartment,6753765,Austin,Manhattan,East Village,40.72422,-73.98465,Shared room,85,2,2,2017-01-04,0.05,3,0 +9633920,"Sunny, quiet, minimalist 1 bdrm apt in Brooklyn",7631412,Amy,Brooklyn,Crown Heights,40.66426,-73.94758,Entire home/apt,80,2,18,2019-05-27,0.42,1,0 +9634829,Spacious 1bd in 2bd Harlem/UWS Area,12298772,Harrison,Manhattan,Harlem,40.80464,-73.95637,Private room,84,2,3,2016-05-21,0.07,1,0 +9634880,"Spacious, private living + bedroom in BedStuy",18330683,Iris,Brooklyn,Bedford-Stuyvesant,40.68608,-73.93015,Private room,63,3,15,2018-09-16,0.35,1,0 +9635223,Beautiful Red Brick Room,49827772,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91944,Private room,45,2,1,2016-01-02,0.02,1,0 +9635607,Suite Oasis - Luxurious & Cozy Apt,49831860,Robert,Brooklyn,Canarsie,40.6424,-73.91275,Entire home/apt,125,2,172,2019-06-23,4.01,2,155 +9635880,Private room in Lux Boho Loft,49742862,Angela,Brooklyn,Greenpoint,40.73168,-73.95829,Private room,160,2,5,2018-03-31,0.12,2,0 +9635981,Sweet apt by Prospect Park - 20 minutes from NYC,298841,Ella,Brooklyn,Windsor Terrace,40.65992,-73.98403,Private room,63,2,22,2019-05-14,0.51,1,48 +9637937,Art Lovers Lower East Side 2bedroom,24298532,Brian,Manhattan,Lower East Side,40.72043,-73.98916,Private room,125,1,85,2019-06-29,2.23,1,335 +9644430,Cosy room in a sunny Brooklyn flat,11132113,Arno,Brooklyn,Bedford-Stuyvesant,40.68673,-73.95829,Private room,45,3,1,2016-01-09,0.02,1,0 +9644961,Amazing loft in Williamsburg,7897771,Nour,Brooklyn,Williamsburg,40.71769,-73.9544,Private room,115,3,3,2016-01-26,0.07,1,0 +9645073,Downtown Manhattan Modern Gem!!,49808435,Alexandra,Manhattan,Gramercy,40.73857,-73.98335,Entire home/apt,269,3,145,2019-06-20,3.31,1,110 +9645338,Lovely room in prime Crown Heights,14965776,Kyra,Brooklyn,Crown Heights,40.66931,-73.9555,Private room,55,5,5,2017-08-04,0.12,1,0 +9645768,Prime West village studio apartment,49873719,Jil,Manhattan,West Village,40.72941,-74.00481,Entire home/apt,150,7,0,,,1,0 +9645934,Great NYC Apt in Forest Hills,2204011,Beto,Queens,Forest Hills,40.71322,-73.83493,Entire home/apt,100,4,11,2019-01-15,0.31,1,15 +9646346,Large 1 Bed Apartment East Village,18668835,Elaine,Manhattan,East Village,40.7233,-73.98819,Entire home/apt,190,1,0,,,1,0 +9646874,"Cozy, bohemian, modern oasis",1120455,Shetal,Brooklyn,Greenpoint,40.72798,-73.95038,Entire home/apt,150,7,0,,,1,0 +9647235,Excellent condition condo Apt,49879147,Rohit,Queens,Forest Hills,40.7276,-73.85183,Private room,75,1,0,,,1,0 +9647450,Be Comfy Loft Bedroom,47341341,Imad,Brooklyn,Midwood,40.61952,-73.96928,Private room,59,28,2,2015-12-09,0.05,1,365 +9649558,Sunny with 2 large bedrooms,48576700,Ayanna,Brooklyn,Clinton Hill,40.69347,-73.967,Entire home/apt,173,2,179,2019-06-15,4.18,2,228 +9652170,Best Location in S. Williamsburg,49898234,Lemuel,Brooklyn,Williamsburg,40.71205,-73.95787,Private room,60,7,0,,,1,0 +9652365,Sunny Room in Design Loft - Heart of Greenpoint,16356851,Sophia,Brooklyn,Greenpoint,40.73419,-73.95905,Private room,115,5,24,2019-05-19,0.56,2,179 +9652413,1 Bedroom Near Columbia/Morningside,17065519,Chelsea,Manhattan,Harlem,40.80407,-73.95762,Entire home/apt,89,1,1,2015-12-26,0.02,1,0 +9652438,"Private room in Bushwick, Brooklyn",8308648,Kristina,Brooklyn,Bushwick,40.68781,-73.91695,Private room,70,1,5,2018-07-09,0.14,2,0 +9652591,Cozy comfort minutes to Manhattan!,22855974,Lauren + Reggie,Queens,Astoria,40.76561,-73.9248,Private room,89,2,53,2019-06-30,1.33,1,39 +9652949,REALLY HUGE&COZY ROOM ASTORIA 10 MIN TO MANHATTAN,433207,Maryann,Queens,Astoria,40.76112,-73.9146,Private room,60,1,150,2019-06-17,3.75,2,179 +9653005,Lovely apartment near Prospect Park,4878479,Patrik,Brooklyn,Crown Heights,40.67629,-73.96208,Entire home/apt,130,5,0,,,1,0 +9654190,Central Park/Museum of Natural Hist,49907738,Ashley,Manhattan,Upper West Side,40.78494,-73.97663,Entire home/apt,400,1,2,2015-12-26,0.05,1,0 +9660635,Brownstone!- 15 min to Manhattan!!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68736,-73.92369,Entire home/apt,90,4,8,2019-03-25,0.19,4,0 +9660751,1 BR in heart of East Village,45166068,Derrick,Manhattan,East Village,40.72316,-73.9844,Entire home/apt,200,2,8,2017-01-01,0.19,1,188 +9662070,Large private bedroom in bushwick,506208,Erin,Brooklyn,Bushwick,40.70435,-73.91646,Private room,65,1,2,2016-07-24,0.06,1,0 +9663062,Location Eden,3250450,Petya,Queens,Astoria,40.75806,-73.91345,Private room,43,30,3,2018-11-07,0.08,18,310 +9664497,Room in Modern Brooklyn Apartment,32173907,Oliver,Brooklyn,Bushwick,40.70433,-73.92652,Private room,55,3,6,2017-04-14,0.14,1,0 +9665709,Spacious 1 BR apartment,49951208,Steven,Queens,Long Island City,40.74391,-73.95461,Entire home/apt,120,2,0,,,1,0 +9668485,Private BR+Bath Near Central Park,49963831,Mariella,Manhattan,East Harlem,40.79479,-73.94919,Private room,110,1,123,2019-06-10,3.07,1,264 +9668948,Huge affordable studio in Wash Hts,13197498,Tazo,Manhattan,Washington Heights,40.85,-73.93797,Entire home/apt,95,7,0,,,1,0 +9669305,Mid Nolita Soho Lit. Italy Village,49967558,Joao,Manhattan,NoHo,40.72459,-73.99366,Entire home/apt,145,1,3,2016-01-01,0.07,1,0 +9670233,3 Bed - 3 Bath East Village Oasis w Private Patio,49970809,Enzo,Manhattan,East Village,40.72846,-73.98987,Entire home/apt,550,1,141,2019-07-01,3.29,1,302 +9674142,1 bed in Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76768,-73.90986,Private room,59,1,156,2019-07-02,3.59,4,208 +9674453,ENTIRE Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76923,-73.91203,Entire home/apt,239,3,8,2019-01-02,0.19,4,274 +9674869,Cozy room in Chic Apt Astoria NY,49620552,Raul,Queens,Astoria,40.76933,-73.91164,Private room,49,1,14,2019-06-16,0.32,4,89 +9674880,"Large bright room,near Times Square",30312537,Mounia,Manhattan,Hell's Kitchen,40.7608,-73.9947,Private room,95,3,0,,,1,0 +9675061,Cozy 1 BR on the Upper East Side,23048845,Carolin,Manhattan,Upper East Side,40.7718,-73.94916,Entire home/apt,160,2,0,,,1,0 +9675064,"Clean Quiet 2 Bedroom Apartment, Private",49991005,Petrona,Brooklyn,Canarsie,40.63013,-73.90809,Entire home/apt,90,2,214,2019-06-08,4.89,1,82 +9675609,HUGE sunny room in Williamsburg-2 min from L train,5480274,Mia,Brooklyn,Williamsburg,40.70997,-73.94297,Private room,80,2,9,2017-11-06,0.41,1,0 +9676482,Sunny Loft Apartment 5 min. Walk to Pratt! #01401,9966670,Gene,Brooklyn,Bedford-Stuyvesant,40.68986,-73.95892,Entire home/apt,125,3,42,2019-07-02,0.98,1,226 +9676890,Spacious Room available,1387286,Felicia,Brooklyn,Williamsburg,40.70796,-73.95035,Private room,65,1,1,2016-04-02,0.03,2,0 +9677744,Affordable Studio next to Subway,50001302,David,Manhattan,Harlem,40.82476,-73.9438,Entire home/apt,77,4,63,2018-04-16,1.56,1,0 +9677912,"3 BR 2 BA Brownstone Duplex, Yard, sleeps 6, W/E +",50001799,Halona,Brooklyn,Bedford-Stuyvesant,40.69218,-73.93574,Entire home/apt,220,2,26,2019-06-30,0.61,1,8 +9678112,Entire 2 bed apartment in Prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71462,-73.94641,Entire home/apt,150,40,4,2018-07-21,0.16,2,0 +9678327,Bright Williamsburg Apartment,5731898,Sofia,Brooklyn,Williamsburg,40.71,-73.95507,Private room,200,5,8,2017-08-28,0.19,2,0 +9678488,Studio in the Heart of WVillage,50003858,Michael,Manhattan,West Village,40.73702,-74.00633,Entire home/apt,200,1,5,2017-04-16,0.12,1,0 +9678870,Sunny Heart of Park Slope 1 Bedroom,50005319,Chris,Brooklyn,Park Slope,40.67632,-73.98116,Entire home/apt,160,4,0,,,1,0 +9679058,Private bedroom in Williamsburg,5731898,Sofia,Brooklyn,Williamsburg,40.70794,-73.9566,Private room,90,3,28,2017-12-10,0.65,2,0 +9679278,Our Unique 3br Home in Bushwick,50006995,Josh And Amanda,Brooklyn,Bushwick,40.7005,-73.92814,Entire home/apt,230,1,1,2016-01-05,0.02,1,0 +9679289,"Entire Large Basement, very quiet.",50006975,William,Brooklyn,Bushwick,40.70633,-73.92231,Private room,55,1,1,2016-01-05,0.02,1,0 +9679310,Two Large Rooms in Union Sq Duplex,25165109,Alex,Manhattan,Gramercy,40.73429,-73.98689,Private room,160,2,1,2015-12-13,0.02,1,0 +9679337,Huge private room in the heart of Williamsburg,4369380,Emmanuel,Brooklyn,Williamsburg,40.71436,-73.95421,Private room,46,3,11,2017-05-22,0.26,1,0 +9679935,"Wyndham Resort Midtown 45 NYC Studio Sep 1-4, 2019",24199235,Dar,Manhattan,Midtown,40.75328,-73.97212,Private room,224,3,0,,,1,3 +9682617,mid century modern apartment,50015739,Anne,Manhattan,Murray Hill,40.74695,-73.98062,Entire home/apt,300,2,13,2017-04-24,0.30,1,0 +9682862,Large Apartment in Manhattan!,50016613,Becky,Manhattan,Harlem,40.8241,-73.95259,Private room,100,3,1,2016-03-28,0.03,1,0 +9682898,Bright room in Williamsburg,17261034,Cillian,Brooklyn,Williamsburg,40.71211,-73.95949,Private room,95,12,1,2017-01-01,0.03,1,0 +9683486,Mater bedroom in Roosevelt Island,39093118,Song,Manhattan,Roosevelt Island,40.75965,-73.95125,Private room,100,1,0,,,1,0 +9683691,Spacious Room + Separate Office,1885068,Joe,Brooklyn,Flatbush,40.65373,-73.95535,Private room,47,1,0,,,1,0 +9684366,"UWS, Big Private Room, CP + Metro!",16024390,M,Manhattan,Upper West Side,40.79499,-73.96631,Private room,139,1,0,,,1,0 +9684503,Big Comfy Bedroom 20 mins from Midtown Manhattan!,50024703,Emily,Queens,Astoria,40.75658,-73.92181,Private room,68,3,6,2017-10-07,0.14,1,0 +9684732,Spacious pre-war apartment in Crown Heights,11054692,Samuel,Brooklyn,Crown Heights,40.66951,-73.94931,Entire home/apt,110,1,0,,,1,0 +9684998,Sunny 1 bedroom in Upper East Side,6115134,Masa,Manhattan,Upper East Side,40.77849,-73.95046,Entire home/apt,112,4,13,2019-03-08,0.30,1,0 +9685104,Beautiful room at nice NYC location,46846064,Frahydel,Manhattan,Roosevelt Island,40.76359,-73.94982,Private room,85,3,32,2018-12-29,0.90,2,0 +9685114,Live in the clouds,33833815,Bradley,Brooklyn,Fort Greene,40.68878,-73.97995,Entire home/apt,450,1,0,,,1,0 +9685158,Awesome East Village Apartment!,28191353,Norah And James,Manhattan,East Village,40.72912,-73.97854,Entire home/apt,390,7,0,,,1,0 +9685213,Winter Sublet 24Dec-18Jan (Midtown),50028109,Kriti,Manhattan,Morningside Heights,40.81109,-73.95904,Private room,55,1,0,,,1,0 +9685865,Pvt Room W/Pvt Bathroom; NO KITCHEN!,50031308,Raj,Brooklyn,Midwood,40.63009,-73.96671,Private room,55,4,47,2019-07-03,1.09,1,304 +9686167,Beautiful Large Bedroom on UWS !!,50032395,Wayne And Yesim,Manhattan,Upper West Side,40.80023,-73.96678,Private room,85,1,7,2016-04-02,0.16,2,188 +9689359,Cozy & Modern ..... 2 Bedroom,50045329,Joann,Brooklyn,Dyker Heights,40.6186,-74.0071,Entire home/apt,160,3,52,2019-06-29,1.20,1,291 +9689477,Large Studio - Lincoln Center,42694270,Thomas,Manhattan,Upper West Side,40.77401,-73.99056,Entire home/apt,155,4,6,2017-08-02,0.14,1,0 +9690687,Huge Brooklyn Apartment,2088995,Padraic,Brooklyn,Flatbush,40.65326,-73.95513,Entire home/apt,70,2,1,2019-04-10,0.33,1,0 +9691204,Spacious / Garden Condo Ft. Greene,50053165,Carina,Brooklyn,Fort Greene,40.68574,-73.97045,Entire home/apt,185,1,1,2015-12-31,0.02,1,0 +9691842,"New, Bright&Spacious cool apartment",38596175,Noa,Brooklyn,Williamsburg,40.71654,-73.94104,Entire home/apt,90,7,0,,,1,0 +9692074,Student apt. 3 minutes from the 1/C,34796316,Tripp,Manhattan,Morningside Heights,40.80562,-73.95978,Private room,200,7,1,2016-01-18,0.02,1,0 +9692090,LES Private Bedroom,9507017,Andrew,Manhattan,Lower East Side,40.71954,-73.99067,Private room,58,10,0,,,1,0 +9692205,East Manhattan (March 10th-18th),42950170,Jenn,Manhattan,East Village,40.72636,-73.98231,Private room,70,4,2,2017-03-10,0.05,1,0 +9692740,Convenient apartment in Manhattan,50013026,Abby,Manhattan,Upper West Side,40.80012,-73.96441,Private room,50,1,2,2015-12-04,0.05,1,0 +9693080,Entire 1BR apartment in NYC,634195,Luis,Queens,Sunnyside,40.74509,-73.9236,Entire home/apt,85,4,2,2016-08-11,0.05,1,0 +9693821,2 Bedroom + Futon - Manhattan,35321358,Collin,Manhattan,East Harlem,40.78626,-73.94295,Entire home/apt,200,6,0,,,1,0 +9694001,West Village Studio Apartment,28422539,Tomas,Manhattan,West Village,40.73713,-74.00059,Entire home/apt,250,7,0,,,1,0 +9694297,Private room in Historic Queens NY,50064597,David,Queens,Woodhaven,40.69472,-73.84856,Private room,45,2,5,2017-08-21,0.12,1,0 +9694633,Renovated Greenpoint Apartment,3245480,Mike,Brooklyn,Greenpoint,40.73154,-73.95485,Entire home/apt,109,4,4,2019-01-01,0.09,1,0 +9695052,Owl's Landing - The Twins,50068597,Alex,Staten Island,Stapleton,40.63573,-74.0772,Private room,48,2,112,2019-07-02,2.60,3,316 +9695552,Comfty 1BR apt in Upper West Side,14651590,Eva,Manhattan,Morningside Heights,40.80462,-73.96074,Entire home/apt,150,7,4,2017-01-04,0.09,1,0 +9696139,BK Oasis- Private 1BD in Heart of Williamsburg,2024620,Anika,Brooklyn,Williamsburg,40.71753,-73.95742,Entire home/apt,350,2,9,2017-09-07,0.27,1,130 +9696307,"Small, cozy studio in the UWS",25499953,Magdalena,Manhattan,Upper West Side,40.80246,-73.96884,Entire home/apt,100,2,1,2016-02-14,0.02,1,0 +9696357,Huge 1BD near Central Park Sleeps 5,48678883,D,Manhattan,Upper East Side,40.76871,-73.95479,Entire home/apt,177,1,136,2019-06-19,3.12,1,258 +9696653,Stylish 1br apt west village,5291029,Qiyao,Manhattan,Greenwich Village,40.73411,-73.99787,Entire home/apt,108,1,111,2019-02-25,2.57,1,0 +9697749,Private bedroom in BedStuy!,43380791,Ali,Brooklyn,Bedford-Stuyvesant,40.68762,-73.92318,Private room,28,10,1,2016-01-06,0.02,1,0 +9697969,East Village 3 Bedroom Apt,50080673,Eric,Manhattan,East Village,40.73033,-73.98788,Private room,101,1,0,,,1,0 +9698613,"1 Bedroom Sublet in Astoria, NY",50084376,Asijah,Queens,Ditmars Steinway,40.77472,-73.90993,Private room,35,1,2,2016-01-05,0.05,1,0 +9698691,"Big 1 Bed, kitchen, living room, TV",50084137,Andrew,Queens,Jackson Heights,40.75251,-73.8898,Entire home/apt,105,7,2,2016-01-31,0.05,1,0 +9698905,Cozy private room w/ensuite bathroom!!,2262706,Shabari,Brooklyn,Carroll Gardens,40.68378,-73.992,Private room,95,1,2,2017-04-23,0.06,1,0 +9698992,-CLEAN ROOM - New Apartment - Manhattan,43298076,Gordon M,Manhattan,Harlem,40.82195,-73.95373,Private room,62,2,24,2019-06-14,0.55,4,97 +9699378,"Spacious, Quiet, 20 steps to subway",24445542,Nicole,Manhattan,Harlem,40.82569,-73.94277,Private room,65,2,0,,,1,0 +9699559,Newly Renovated Midtown Apartment,3655401,Stephen,Manhattan,Kips Bay,40.74106,-73.97818,Entire home/apt,150,3,2,2016-01-02,0.05,1,0 +9703075,2BR in Beautiful Brownstone!!!,38014669,Stephanie,Brooklyn,Bushwick,40.68996,-73.92046,Entire home/apt,113,7,38,2019-05-24,0.94,1,355 +9705782,Spacious Brooklyn Brownstone 3BR+,8144242,Kerry,Brooklyn,Bedford-Stuyvesant,40.68382,-73.95566,Entire home/apt,300,2,24,2017-07-04,0.56,1,0 +9705958,"Comfy, family-friendly BedStuy apt",20007675,Veleda And Orion,Brooklyn,Bedford-Stuyvesant,40.68389,-73.93437,Entire home/apt,65,2,4,2016-01-13,0.09,1,0 +9706724,Cozy Apartment in Crown Heights,50086145,Liam,Brooklyn,Crown Heights,40.66916,-73.95125,Private room,55,2,5,2017-01-01,0.12,1,0 +9707469,"Brooklyn Heights ""Tree House""",7185488,Jeff,Brooklyn,Brooklyn Heights,40.69565,-73.99663,Entire home/apt,150,8,0,,,1,0 +9707498,"Sunny, Quiet Home in Brooklyn's Best Area (Legal)",43438475,Viviana,Brooklyn,South Slope,40.66759,-73.99009,Entire home/apt,120,3,152,2019-06-27,3.60,3,180 +9707531,Bright & Clean 1bed apt *PRIME* LES,35671352,Erin,Manhattan,Lower East Side,40.71941,-73.98534,Entire home/apt,160,1,2,2016-03-20,0.05,1,0 +9707671,Cozy Apartment,14811787,Will,Manhattan,Upper East Side,40.76675,-73.95144,Private room,135,2,10,2019-07-01,0.23,2,339 +9707735,Entire 2 BR Williamsburg Apt (parking/near train),15647614,Lin,Brooklyn,Williamsburg,40.7162,-73.95384,Entire home/apt,175,1,11,2019-05-12,0.36,2,37 +9708577,Miriams Place,50126257,Miriam,Brooklyn,Borough Park,40.63692,-73.99063,Entire home/apt,300,2,51,2019-06-30,2.06,1,297 +9709428,Apt Williamsburg! Perfect location!,40044130,Daniela,Brooklyn,Williamsburg,40.71009,-73.953,Private room,80,6,2,2016-06-13,0.05,1,0 +9709801,Large room,50131208,Rob,Queens,Astoria,40.76994,-73.91841,Private room,40,1,0,,,1,0 +9710169,Doorman 1 bedroom GYM Deck Luxury!5203,16098958,Jeremy & Laura,Manhattan,Midtown,40.76601,-73.97789,Entire home/apt,170,30,1,2017-05-14,0.04,96,332 +9710184,1 br Apt in Washington Heights,20709383,Elena,Manhattan,Washington Heights,40.84504,-73.93658,Entire home/apt,85,90,1,2017-01-08,0.03,1,0 +9710538,Beautiful apartment with a loft.,50132533,Kristy,Bronx,Riverdale,40.88422,-73.90886,Entire home/apt,85,1,0,,,1,0 +9710620,1-bed Apt in Crown Heights,7027191,Matthew,Brooklyn,Crown Heights,40.6773,-73.95001,Entire home/apt,84,10,2,2017-01-22,0.05,1,0 +9711313,Cozy 4BD 2.5BR w/Jacuzzi & Parking,14163805,Michael,Brooklyn,Prospect-Lefferts Gardens,40.66001,-73.94664,Entire home/apt,399,3,129,2019-06-24,3.20,1,237 +9711921,The Archive West Village,30707611,Beth,Manhattan,West Village,40.73123,-74.00684,Entire home/apt,450,1,0,,,1,0 +9712126,••BEST Manhattan Downtown Location!••,9339714,Jessica,Manhattan,Gramercy,40.73304,-73.9843,Entire home/apt,140,3,103,2019-06-24,2.46,2,270 +9712682,Brownstone 1 BR with Huge Backyard,2412806,Amadou,Brooklyn,Fort Greene,40.68792,-73.97904,Entire home/apt,210,2,115,2019-06-21,2.66,1,247 +9712796,Charming Upper West Side 1BR Apt,50143518,Penda And Sebastien,Manhattan,Upper West Side,40.80172,-73.9656,Entire home/apt,135,4,0,,,1,0 +9712829,Light and Airy Loft in Williamsburg,8262339,Michael,Brooklyn,Williamsburg,40.71287,-73.96325,Entire home/apt,200,3,3,2019-05-05,0.42,1,0 +9713045,Lovely and spacious 2BR/2 bath apt,50144728,Cedrick,Manhattan,Harlem,40.80463,-73.95044,Entire home/apt,200,2,148,2019-06-18,3.47,1,0 +9713048,Large Bedstuy/Bushwick Room,50144624,Christian,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93746,Private room,47,2,2,2016-06-10,0.05,1,0 +9713116,Cheerful 1BR Bed-Stuy Apartment with Cat,50144878,Bailey,Brooklyn,Bedford-Stuyvesant,40.68362,-73.94646,Entire home/apt,50,7,1,2016-08-01,0.03,1,0 +9713594,Cozy roof top apartment,11575335,Alejandro,Brooklyn,Crown Heights,40.67762,-73.95764,Private room,95,2,9,2017-09-09,0.21,1,342 +9713626,Meatpacking - Luxury Brownstone,13148824,Ali,Manhattan,Chelsea,40.74186,-74.00528,Entire home/apt,280,2,6,2017-01-01,0.14,1,0 +9713934,Beautiful Apartment in the heart of Brooklyn,16164068,Richard,Brooklyn,Bedford-Stuyvesant,40.68,-73.95526,Private room,50,3,5,2017-05-29,0.13,1,0 +9713997,Extra BR in dreamlike soho loft,1317360,John,Manhattan,SoHo,40.72145,-74.00231,Private room,200,1,16,2019-05-22,0.83,2,365 +9714004,Spacious and Bright Two Bedroom Bedroom Apartment.,50148553,Anna,Manhattan,Theater District,40.76278,-73.98498,Private room,197,3,18,2017-09-08,0.46,1,0 +9714870,Lovely Brooklyn Garden Apt,202665,Joy & Jesse,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95865,Entire home/apt,120,5,4,2017-11-25,0.12,1,0 +9714880,Brooklyn Artist Loft-Style,50152355,Kevin,Brooklyn,Bushwick,40.69715,-73.92243,Entire home/apt,60,14,0,,,1,0 +9715404,1 Bedroom in the Upper East Side,6105861,Shayan,Manhattan,Upper East Side,40.76496,-73.95801,Private room,100,1,0,,,1,0 +9715759,nice small room in upper east side,43198464,Geoffray,Manhattan,Upper East Side,40.7651,-73.95812,Private room,84,1,0,,,1,0 +9715891,"Rooftop, Doorman, Luxury Building",6365575,Samir,Queens,Long Island City,40.74723,-73.94144,Entire home/apt,200,3,0,,,1,0 +9715973,Amazing view midtown studio,50157334,Ada,Manhattan,Kips Bay,40.74285,-73.97468,Entire home/apt,150,5,1,2015-12-27,0.02,1,0 +9716234,Cozy with Great location !!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59878,-73.95425,Shared room,35,1,104,2019-07-08,2.45,5,352 +9716437,Chill Gramercy Flat,956269,Justin,Manhattan,Gramercy,40.73725,-73.98439,Entire home/apt,195,3,19,2019-06-21,0.43,1,34 +9717662,"Serene, Spacious Bedroom in 2BR Apt",4549440,HanJie,Manhattan,Harlem,40.82347,-73.93944,Private room,37,1,0,,,1,0 +9717766,Cozy studio,50165358,Ekaterina,Manhattan,Murray Hill,40.74987,-73.97293,Entire home/apt,200,1,0,,,1,0 +9720768,"Midtown Times Square bright room, private bath",31626212,Troy,Manhattan,Theater District,40.75699,-73.98493,Private room,125,3,141,2019-06-22,3.29,5,226 +9720809,Centrally located Times Square large room,31626212,Troy,Manhattan,Midtown,40.74826,-73.98653,Private room,100,30,2,2019-06-22,2,5,248 +9724452,Small cozy studio WashingtonHeights,45198805,Erika,Manhattan,Washington Heights,40.83288,-73.93821,Entire home/apt,70,1,0,,,1,0 +9725232,"LUX Prospect Park Historic 1BR near 2,5,Q&B trains",290908,Claudia,Brooklyn,Prospect-Lefferts Gardens,40.66195,-73.95275,Entire home/apt,125,6,155,2019-06-24,3.54,1,155 +9725508,"Super Quiet, Your Oasis",16437254,Benjamin,Brooklyn,Boerum Hill,40.68788,-73.98551,Entire home/apt,123,30,10,2019-05-10,0.27,21,246 +9726043,Family apt w/ junglegym-bed for kids,292084,Liliana,Brooklyn,Kensington,40.64463,-73.97057,Entire home/apt,95,7,5,2019-07-05,0.12,1,59 +9726143,"Huge 1-Bedroom, A+ Midtown Location",37803660,Adrienne,Manhattan,Midtown,40.75088,-73.96918,Entire home/apt,199,4,1,2016-01-05,0.02,1,0 +9726720,"Sunny, modern apt on Prospect Park",31543325,David,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.961,Entire home/apt,125,20,0,,,1,0 +9727332,"Bedroom in Brooklyn, NYC",50199816,Meaghan,Brooklyn,Bushwick,40.70168,-73.92593,Private room,45,1,1,2015-12-23,0.02,1,0 +9728168,*Manhattan Luxury Apt - Walk to TSQ,5124437,Anna,Manhattan,Hell's Kitchen,40.76172,-73.99917,Entire home/apt,189,3,4,2015-12-15,0.09,1,0 +9728203,Sunny Room in heart of Crwn Heights,3758471,Stephanie,Brooklyn,Crown Heights,40.6744,-73.95902,Private room,50,2,1,2016-01-02,0.02,2,0 +9728739,Luxury private room near Times Sqr,27163319,Stefano,Manhattan,Hell's Kitchen,40.76444,-73.98728,Private room,120,5,0,,,1,8 +9730117,Carriage House Loft with Fireplace,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68968,-73.95213,Entire home/apt,250,1,11,2018-10-29,0.32,3,365 +9730432,Quiet Apartment in Sunset Park.,50207684,Cyrille,Brooklyn,Sunset Park,40.64962,-74.00028,Entire home/apt,95,3,74,2019-07-01,1.72,1,251 +9730784,Private Space in Lower East Side,1038645,Kim,Manhattan,Lower East Side,40.72133,-73.9877,Private room,140,1,5,2018-05-15,0.12,1,0 +9731039,Studio/Office in heart of Sunnyside,50213378,Mark,Queens,Sunnyside,40.74463,-73.91918,Entire home/apt,99,1,0,,,1,0 +9731134,Peaceful Bohemian Studio,29877911,Saadia,Manhattan,Harlem,40.79989,-73.95213,Entire home/apt,120,30,33,2019-06-01,0.81,1,247 +9731178,Spacious duplex in Bed Stuy,8693741,John,Brooklyn,Bedford-Stuyvesant,40.69616,-73.94737,Private room,35,1,2,2016-06-27,0.05,1,0 +9731739,2BR - TIMES SQUARE - MODERN,34939187,Meredith,Manhattan,Hell's Kitchen,40.76564,-73.98759,Entire home/apt,195,3,30,2016-10-23,0.68,1,0 +9732432,2nd floor bedroom in Bushwick house,14974205,Gabriel,Brooklyn,Bushwick,40.69351,-73.92309,Private room,35,1,1,2016-01-14,0.02,1,0 +9732612,LARGE TRIBECA LOFT WITH ROOF DECK,33624354,Joshua,Manhattan,Tribeca,40.72117,-74.00592,Entire home/apt,250,1,1,2015-12-24,0.02,1,0 +9732834,"Sunny,Cool,Greenpoint apartment...",50220666,Rodin,Brooklyn,Greenpoint,40.72594,-73.95174,Private room,70,7,2,2018-07-14,0.05,1,0 +9733138,Large 1BR with yard in Williamsburg,14800483,Elliot,Brooklyn,Williamsburg,40.71702,-73.94339,Entire home/apt,140,7,0,,,1,0 +9733227,Huge Modern Apartment Williamsburg,4396337,Nicolo,Brooklyn,Williamsburg,40.71964,-73.95538,Entire home/apt,159,28,4,2018-04-30,0.10,1,0 +9733280,"Quiet, 1 Bedroom, Patio, Gramercy",11763414,Ashley,Manhattan,Gramercy,40.73606,-73.98242,Entire home/apt,149,7,13,2018-04-03,0.33,1,0 +9733741,Best Neighborhood Brand New 1 BDRM!,9408069,Maky,Manhattan,Lower East Side,40.72082,-73.98728,Entire home/apt,180,1,130,2019-06-03,2.98,1,328 +9734068,"1 BED ROOM ACCOMMODATION 4, 5 GUEST",50189863,"Manny , Job",Manhattan,East Harlem,40.79566,-73.9448,Entire home/apt,110,1,198,2019-06-23,4.58,1,250 +9735503,Full 1BR+Balcony 17min to Midtown,166014,Matt & Virginia,Queens,Astoria,40.77066,-73.92181,Entire home/apt,100,7,2,2016-08-06,0.05,1,0 +9735931,Private room in spacious apartment,6501582,Gaia,Brooklyn,Crown Heights,40.67693,-73.93234,Private room,50,7,11,2019-05-12,0.26,1,0 +9735957,Unique Duplex Loft Private Roof,49494357,Lindsee And Peter,Manhattan,Nolita,40.72116,-73.9959,Entire home/apt,425,2,23,2019-06-04,0.64,1,54 +9736071,COOL STUDIO IN THE HEART OF MIDTOWN,17870643,Matt,Manhattan,Midtown,40.75843,-73.96265,Entire home/apt,195,1,0,,,1,0 +9736123,Spacious 1BR with river view in the heart of NYC,19135883,Thales,Manhattan,Kips Bay,40.74178,-73.97313,Entire home/apt,260,4,15,2018-10-15,0.35,1,34 +9736227,TIMES SQR 3 BR Modern+NYC Center,9245509,Alex,Manhattan,Hell's Kitchen,40.76,-73.98972,Entire home/apt,499,2,4,2017-01-02,0.09,1,0 +9736600,Furnished Apartment in Morningside,50235395,Nick,Manhattan,Morningside Heights,40.80569,-73.96333,Private room,75,14,0,,,1,0 +9737064,Amazing 2 BR apt in West Village,33075414,Joakim,Manhattan,West Village,40.73053,-74.00297,Entire home/apt,250,3,3,2019-06-03,0.08,1,16 +9737153,Spacious new and luxurious apartment!,267959,Beatriz,Brooklyn,Williamsburg,40.72038,-73.95993,Entire home/apt,350,2,5,2018-01-01,0.12,1,0 +9737362,Spacious 2B apt - KipsBay Manhattan,14786085,Andrew,Manhattan,Kips Bay,40.74302,-73.98098,Entire home/apt,275,5,3,2016-07-30,0.08,1,0 +9737516,Awesome Williamsburg Apartment,9392189,Collin,Brooklyn,Williamsburg,40.71134,-73.95192,Entire home/apt,325,5,0,,,1,0 +9737840,2 Bedrooms & 2 Bathrooms Apt in Hell's Kitchen,40169737,Alex G,Manhattan,Hell's Kitchen,40.76553,-73.98709,Entire home/apt,300,1,268,2019-06-26,6.12,1,261 +9738193,Private Room in Gorgeous Loft Space,30968452,Ellen,Brooklyn,Bushwick,40.68881,-73.92017,Private room,75,3,5,2018-01-02,0.12,1,365 +9738605,Bedford Palace,50054847,Lauryn,Brooklyn,Crown Heights,40.66842,-73.95601,Private room,100,1,0,,,1,0 +9739888,One room in a 4 bedroom apaprtment.,50252837,Abhinaya,Manhattan,Harlem,40.81656,-73.95725,Private room,45,1,0,,,1,0 +9740010,PRIVATE STUDIO: L TRAIN WATERFRONT,389899,Maria,Brooklyn,Williamsburg,40.7179,-73.95938,Entire home/apt,146,28,208,2019-05-26,4.80,2,200 +9740150,Bright and Cosy bedroom,50145118,Sonia,Manhattan,Harlem,40.80857,-73.942,Private room,89,1,19,2019-01-04,0.44,3,0 +9740264,Bright Studio in Harlem Near Trains,11462920,Ijeoma,Manhattan,Harlem,40.81788,-73.93583,Entire home/apt,75,2,19,2016-06-14,0.44,1,0 +9740386,Chic 1 BR in Meatpackiing,50255130,Mary,Manhattan,Chelsea,40.74098,-74.00513,Entire home/apt,175,4,0,,,1,0 +9745297,Big Bedroom in Huge Loft Apartment,18830662,Jack,Manhattan,SoHo,40.72051,-74.00168,Private room,75,1,1,2015-12-17,0.02,2,0 +9745484,"Sun-filled 1 Bdrm, Above Subway",7230698,Megan,Manhattan,Harlem,40.82749,-73.94329,Entire home/apt,102,5,20,2018-07-22,0.52,2,18 +9746225,"Sunny, clean, contemporary Soho Apt",14005489,Jonathan,Manhattan,SoHo,40.72823,-74.00571,Entire home/apt,250,4,0,,,1,0 +9746604,Stylish 2BR ★ Sleeps 6 ★ C.Park,50279938,Gilad,Manhattan,East Harlem,40.78857,-73.94328,Entire home/apt,190,2,118,2019-06-20,2.74,1,237 +9747059,"UWS, Close to Park, Shops, Transpor",50282201,Dinara,Manhattan,Upper West Side,40.80027,-73.96971,Private room,120,1,0,,,1,0 +9747647,Big and sunny room in Greenpoint,8768792,Fernando,Brooklyn,Greenpoint,40.72449,-73.95149,Private room,70,5,1,2015-12-15,0.02,1,0 +9747682,"Private, Serene, Exposed Brick Realness Brownstone",4018726,Lorraine,Brooklyn,Bedford-Stuyvesant,40.69297,-73.94522,Private room,63,3,6,2019-06-30,2.77,1,60 +9748012,"Lovely, 2BR sun filled apartment",9895399,Julian,Brooklyn,Greenpoint,40.72484,-73.9472,Entire home/apt,100,6,1,2016-01-05,0.02,1,0 +9748877,4 person private room in Spanish Harlem,24260658,Kristy,Manhattan,East Harlem,40.79443,-73.93501,Private room,130,2,49,2019-06-19,1.52,5,76 +9749211,Studio- Prime East Village Location,50289490,Michael,Manhattan,East Village,40.72613,-73.98621,Entire home/apt,140,5,0,,,1,0 +9749603,New York artistic house &Queens,19256647,Jiao,Queens,Flushing,40.73157,-73.83263,Entire home/apt,65,7,0,,,1,0 +9750139,Sunset Retreat - Charming Oasis,50292584,Haydee,Brooklyn,Sunset Park,40.64218,-74.01175,Entire home/apt,90,2,75,2019-06-06,1.84,2,364 +9750308,Bushwick artist den: 1 min to L train AC +backyard,50291368,Zoey,Brooklyn,Bushwick,40.6882,-73.90598,Private room,46,2,18,2019-04-27,0.42,1,0 +9750406,Bushwick studio,3051323,Casey,Brooklyn,Bushwick,40.69917,-73.93178,Entire home/apt,72,20,0,,,1,0 +9751043,☆ Easy Access To The Best Of Brooklyn ☆,393473,Bobby,Brooklyn,Bedford-Stuyvesant,40.69227,-73.95187,Entire home/apt,115,2,142,2019-06-17,3.38,2,89 +9752005,A Quiet Room in the West Village,4173415,Pedro,Manhattan,West Village,40.73737,-74.00591,Private room,90,1,103,2019-06-27,2.40,1,239 +9752053,"Private room in Greenpoint, BK",1587834,Bradford,Brooklyn,Greenpoint,40.72212,-73.94423,Private room,65,2,0,,,1,0 +9753018,1200 SQFT Open Loft Williamsburg,1527888,Ilya,Brooklyn,Williamsburg,40.7109,-73.95236,Entire home/apt,250,31,8,2017-01-03,0.19,1,0 +9753240,Sun-drenched SoHo Duplex Loft,1342653,Andrew,Manhattan,SoHo,40.72543,-74.00242,Entire home/apt,1000,4,10,2018-11-26,0.23,1,326 +9753443,Big Studio W/ Prive Patio +Amenity,2147475,Will,Brooklyn,Greenpoint,40.72107,-73.95376,Entire home/apt,159,1,3,2017-01-02,0.10,1,0 +9754436,Awesome room in 2br design Apartment in LES,15231059,Apollo,Manhattan,Lower East Side,40.7203,-73.98698,Private room,99,3,24,2019-04-07,0.56,4,333 +9754751,Large 1 Bedroom Apartment,19067539,Rajesh,Queens,Kew Gardens,40.70344,-73.83435,Entire home/apt,100,1,2,2017-08-10,0.09,1,0 +9754968,Sunny Manhattan Apartment!!,10611392,Lola,Manhattan,East Harlem,40.79331,-73.94149,Entire home/apt,250,4,13,2018-10-08,0.32,1,35 +9755074,Parkside Brooklyn Brownstone,33401596,Luke,Brooklyn,Bedford-Stuyvesant,40.69048,-73.94763,Entire home/apt,120,3,5,2016-06-27,0.12,1,0 +9755384,Private queen room - Hell's Kitchen,9262409,Danielle,Manhattan,Hell's Kitchen,40.76504,-73.98718,Private room,80,3,1,2015-12-28,0.02,1,0 +9755479,Beautiful 1BR NYC,18799694,Evan,Manhattan,East Village,40.73333,-73.99075,Entire home/apt,300,1,0,,,1,0 +9755785,"540 Main Street, Apt 428",47512544,Yingyuan,Manhattan,Roosevelt Island,40.76206,-73.94904,Private room,45,3,1,2016-01-05,0.02,1,0 +9756236,Quiet and large one bedroom,18954539,Tamara,Manhattan,Upper East Side,40.76374,-73.96583,Entire home/apt,200,1,0,,,1,0 +9756258,Room for Female-Upper West Side,11513145,Jessica,Manhattan,Upper West Side,40.78641,-73.97739,Private room,65,1,2,2016-01-08,0.05,1,0 +9756612,Cute space in Manhattan,39631811,Tarini,Manhattan,Morningside Heights,40.80929,-73.95826,Private room,70,1,0,,,1,0 +9756729,Bright new apt in a luxury building,33349807,Dorit,Brooklyn,Bedford-Stuyvesant,40.6801,-73.92873,Entire home/apt,60,13,0,,,1,0 +9756996,Perfect West Village Apartment,1587220,Blossom,Manhattan,West Village,40.73577,-74.00582,Entire home/apt,240,1,0,,,1,0 +9757018,Cozy room in a big house!,50318467,Seyi,Manhattan,Marble Hill,40.87663,-73.91041,Private room,50,1,2,2016-01-01,0.05,1,0 +9757167,1 Full Size Bed with Bike Rental,4422477,Crystal,Manhattan,East Village,40.72936,-73.97882,Private room,100,2,1,2016-07-31,0.03,1,0 +9757351,Two Bedroom next to Central Park,7952263,Anne,Manhattan,Upper East Side,40.78389,-73.95306,Entire home/apt,200,4,1,2016-08-27,0.03,1,0 +9757762,Cute Apartement in Williamsburg,3696938,Z,Brooklyn,Williamsburg,40.70935,-73.95207,Entire home/apt,180,1,0,,,1,0 +9757875,NY Queens Penthouse Share = 1LOFT aka Queens' Loft,34861728,Iris,Queens,Kew Gardens,40.7092,-73.82984,Private room,65,7,8,2018-10-25,0.18,4,320 +9758041,Spacious Williamsburg Beauty,50323495,Angie,Brooklyn,Williamsburg,40.70357,-73.9474,Entire home/apt,130,4,52,2019-07-01,1.20,1,321 +9758320,NYC Hamilton Heights Apartment,50324996,Electra,Manhattan,Harlem,40.83113,-73.94597,Entire home/apt,125,21,0,,,1,0 +9758378,Prospect Heights/Park slope condo next to the Park,50324962,John,Brooklyn,Prospect Heights,40.67545,-73.96884,Entire home/apt,250,30,13,2019-05-11,0.34,1,319 +9758735,1 Bedroom Holiday Sublet in Bklyn,411677,Eli,Brooklyn,Flatbush,40.63565,-73.96434,Entire home/apt,70,20,0,,,1,0 +9759444,Beautiful apartment in Park Slope,13342524,Carola,Brooklyn,South Slope,40.66352,-73.98488,Entire home/apt,100,3,6,2017-01-04,0.14,1,0 +9759525,Central Park South Artist's Studio,50331528,Sarah,Manhattan,Hell's Kitchen,40.76599,-73.98404,Entire home/apt,90,5,3,2016-04-20,0.08,1,0 +9759592,5 minutes to JFK airport bed/bath -room A,50331556,Marilee & Gene,Queens,Rosedale,40.67836,-73.729,Private room,90,1,54,2019-05-19,1.26,1,180 +9759704,Lovely Lofted Artist's Room,6706379,Robyn,Brooklyn,Bedford-Stuyvesant,40.69133,-73.9426,Private room,31,3,2,2016-01-05,0.05,1,0 +9759957,One Bedroom in Washington Heights,9039711,Lorraine,Manhattan,Washington Heights,40.83358,-73.94113,Private room,45,1,2,2016-06-10,0.05,1,0 +9760401,Modern apt by lincoln square,18080415,Dan,Manhattan,Upper West Side,40.77594,-73.98449,Entire home/apt,188,3,0,,,1,0 +9765011,Cute Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6502,-73.95509,Private room,39,7,6,2018-01-05,0.17,4,278 +9765276,Private Room Near Prospect Park,37821056,Nichole,Brooklyn,Flatbush,40.6518,-73.95894,Private room,39,7,13,2018-07-27,0.30,4,346 +9765762,"Room w/ private bathroom, entrance",9662924,Albert,Brooklyn,Williamsburg,40.70669,-73.94943,Private room,85,5,1,2016-01-05,0.02,1,0 +9765897,BRIGHT & QUIET BEDROOM IN CLINTON HILL BROWNSTONE,10366292,Lea,Brooklyn,Clinton Hill,40.68552,-73.96481,Private room,40,5,2,2017-09-05,0.06,3,0 +9765944,SUNNY BEDROOM IN BROOKLYN BROWNSTON,10366292,Lea,Brooklyn,Clinton Hill,40.68522,-73.96326,Private room,75,1,0,,,3,0 +9766228,Deluxe Williamsburg Apartment,38297722,Joe,Brooklyn,Williamsburg,40.71691,-73.93953,Entire home/apt,200,2,1,2016-01-03,0.02,1,0 +9766922,Spacious Uptown bedroom,19874128,Jennifer,Manhattan,Harlem,40.82083,-73.95407,Private room,88,2,0,,,1,0 +9767424,Brooklyn's Finest - ML,50364039,Cathy,Brooklyn,Williamsburg,40.71602,-73.96248,Entire home/apt,130,2,67,2019-07-07,1.57,3,252 +9767864,Owl's Landing- The Loft,50068597,Alex,Staten Island,Tompkinsville,40.63661,-74.07868,Private room,40,2,157,2019-07-01,3.67,3,324 +9768159,Large Room in Morningside Heights,618803,New,Manhattan,Washington Heights,40.83424,-73.94275,Private room,65,3,0,,,1,0 +9768199,Unique & Whimsical-Entire 1-BRM Apt UWS,50366054,Blake,Manhattan,Upper West Side,40.80055,-73.96011,Entire home/apt,129,3,6,2019-05-14,0.14,1,0 +9768313,Luxury doorman building w amenities,670690,Robert,Manhattan,Chelsea,40.73809,-73.99695,Entire home/apt,500,1,0,,,1,0 +9768333,"Spacious 1BD, City View, Near Train",9144218,Daniel,Queens,Astoria,40.76476,-73.91935,Entire home/apt,125,8,0,,,1,0 +9768360,"Quiet, clean, modern 1-bed/1-bath",50368164,Hattie,Brooklyn,Windsor Terrace,40.64845,-73.97302,Entire home/apt,100,1,7,2016-12-29,0.16,1,0 +9768492,BROOKLYN 2 BEDROOM,50368837,Jorge,Brooklyn,Crown Heights,40.67735,-73.94468,Entire home/apt,100,3,1,2018-01-02,0.05,2,0 +9768765,Room in quiet Brooklyn home,50369736,Benjamin,Brooklyn,Kensington,40.64637,-73.97863,Private room,24,18,1,2016-01-29,0.02,1,0 +9769423,Garden Apartment at House on 11th,50372319,Carlo Fabricio,Brooklyn,Gowanus,40.66948,-73.9903,Entire home/apt,160,2,70,2018-01-02,1.63,1,342 +9769817,Eclectic space in Prime Williamsburg,50374022,Elana,Brooklyn,Williamsburg,40.71162,-73.9639,Entire home/apt,125,5,13,2017-01-02,0.31,2,0 +9770041,Two Bedroom In Williamsburg,96598,Michelle,Brooklyn,Greenpoint,40.72061,-73.94886,Entire home/apt,205,7,2,2019-01-01,0.19,1,0 +9770249,WOW! Luxury East Village 3 Bed | 1 Bath Apt,2001524,John,Manhattan,East Village,40.73027,-73.98759,Entire home/apt,750,3,97,2019-06-19,2.22,1,47 +9770459,Private room in Bed Stuy brownstone,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68124,-73.94188,Private room,75,14,18,2019-06-30,0.50,3,189 +9771893,Irving place -Elevator Doorman 1 bed - 5152,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73558,-73.9852,Entire home/apt,150,30,1,2017-08-31,0.04,96,282 +9772152,Quaint West Chelsea Studio near it all. 3,47577639,Jc,Manhattan,Chelsea,40.74105,-74.00401,Entire home/apt,195,4,48,2019-06-19,1.19,2,280 +9772486,Williamsburg 2000sqft,50385630,Bradley,Brooklyn,Williamsburg,40.71712,-73.94671,Private room,477,2,1,2016-10-10,0.03,1,358 +9772539,Sky VieW Doorman Gym Pool!5171,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79569,-73.96583,Entire home/apt,275,30,1,2016-01-19,0.02,96,332 +9773158,"The Spring St Residence,SoHo -Perfect For Families",31758028,Danai,Manhattan,SoHo,40.72496,-74.00928,Entire home/apt,699,7,0,,,1,37 +9773384,Captivating rooftop apartment,3816296,Luke,Manhattan,Chinatown,40.71611,-73.99539,Entire home/apt,180,1,0,,,1,0 +9775055,"Relaxing, Clean Room in Brooklyn",12974174,Brandy,Brooklyn,Crown Heights,40.66782,-73.92969,Private room,60,1,1,2016-01-01,0.02,1,0 +9775146,"Comfy 2BR + Outdoor patio/ Subway 2,3",50396427,Anu -Nicole,Brooklyn,Prospect Heights,40.67702,-73.96445,Entire home/apt,128,28,12,2019-05-09,0.31,1,256 +9775237,Spacious high-rise 1BD with an INCREDIBLE view!,38263259,Michelle,Manhattan,Harlem,40.81949,-73.95676,Entire home/apt,140,5,7,2018-05-21,0.16,1,0 +9775296,"Sunny, quiet Crown Heights apt",24894370,Alex,Brooklyn,Crown Heights,40.67042,-73.95072,Entire home/apt,98,1,5,2016-01-03,0.12,1,0 +9775397,Apartment at the St.Regis Hotel,50397134,Masaichi,Manhattan,Midtown,40.76103,-73.97512,Entire home/apt,1200,1,0,,,1,0 +9776054,Christmas and New Years in NYC,22098830,Alfred,Brooklyn,Bedford-Stuyvesant,40.68581,-73.94689,Entire home/apt,800,3,33,2016-06-12,0.76,1,178 +9777387,East village lovely bedroom!,502563,Cloe,Manhattan,East Village,40.73052,-73.98461,Private room,130,3,134,2019-06-23,3.08,2,23 +9777504,Industrial Williamsburg Loft with Awesome Rooftop!,9424650,Anna,Brooklyn,Williamsburg,40.71761,-73.95423,Entire home/apt,325,3,74,2019-06-27,1.73,1,179 +9777601,Sunny East Village Apartment,2491622,Katherine,Manhattan,East Village,40.72745,-73.98979,Private room,200,1,0,,,1,0 +9777669,Charming 1 BD in Washington Heights,20068971,Jacqueline,Manhattan,Washington Heights,40.85147,-73.93771,Entire home/apt,125,2,0,,,1,0 +9777883,cozy harlem room,4098796,Lux,Manhattan,Harlem,40.82021,-73.95421,Private room,62,2,0,,,1,0 +9778049,PRIVATE STUDIO Central Park West,11026504,Alinka,Manhattan,Upper West Side,40.78818,-73.96928,Entire home/apt,144,2,30,2019-04-07,0.80,1,0 +9778407,Beautiful Room...15 min to NYC,40571321,Dana,Brooklyn,Bedford-Stuyvesant,40.69335,-73.93107,Private room,90,1,0,,,1,0 +9778579,LES sweet bedroom (Female only),50411330,Sophia,Manhattan,Lower East Side,40.71504,-73.98879,Private room,45,1,2,2016-06-22,0.05,1,0 +9778583,Private room in HUGE Apartment!,34351124,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68768,-73.92069,Private room,75,1,1,2016-01-03,0.02,1,0 +9778855,Room in Modern Bushwick Townhouse,10262649,Andrew,Brooklyn,Bushwick,40.69134,-73.90895,Private room,85,4,24,2016-10-13,0.57,2,0 +9778978,upper manhattan rivervie new studio,32525636,Piner,Manhattan,Harlem,40.82094,-73.95745,Entire home/apt,50,3,1,2016-05-22,0.03,1,0 +9779136,Cozy Room in heart of Crown Heights,3758471,Stephanie,Brooklyn,Crown Heights,40.67377,-73.95887,Private room,50,10,1,2016-01-06,0.02,2,0 +9779228,Sunny Winter Union Square Sublet,15401907,Eric,Manhattan,Gramercy,40.73524,-73.98812,Entire home/apt,86,20,0,,,1,0 +9779960,Brooklyn NY min away from Manhattan,30793816,Sap,Brooklyn,Bushwick,40.68589,-73.91486,Private room,60,1,17,2017-10-08,0.40,1,205 +9785516,Beautiful Luxury Manhattan 3bed/2bath!,4094857,Anat,Manhattan,Upper West Side,40.79113,-73.96645,Entire home/apt,372,3,23,2018-12-30,0.54,1,17 +9785847,Heart of Williamsburg 1 BD,42424450,Tyler,Brooklyn,Williamsburg,40.71988,-73.95591,Private room,75,2,1,2015-12-31,0.02,1,0 +9786021,"Beautiful & spacious room, Brooklyn",50442604,Beatriz,Brooklyn,Flatbush,40.63655,-73.95424,Private room,60,1,1,2016-01-01,0.02,1,0 +9786182,Lovely room in Harlem,26627436,Mike,Manhattan,Harlem,40.81602,-73.94316,Private room,29,28,42,2018-08-19,1.00,1,16 +9786398,LOCATION! Private room with yard.,1698487,Chelsea,Brooklyn,Prospect Heights,40.67835,-73.96846,Private room,85,1,90,2019-06-16,2.08,1,345 +9786543,Private bdrm in bedstuy brownstone,49293531,Aliza,Brooklyn,Bedford-Stuyvesant,40.68666,-73.92724,Private room,60,15,14,2019-05-16,0.38,3,251 +9786769,Large Upper West Side apartment,50445531,Wendy,Manhattan,Upper West Side,40.79827,-73.97321,Private room,124,1,0,,,1,0 +9787107,Sunny private room in Spanish Harlem,24260658,Kristy,Manhattan,East Harlem,40.79471,-73.93482,Private room,90,2,17,2019-04-21,0.45,5,0 +9787590,"",50448556,Miguel,Manhattan,Harlem,40.80316,-73.95189,Entire home/apt,300,5,0,,,5,0 +9787634,Studio in Upper East Side,20328794,Maxim,Manhattan,Upper East Side,40.77507,-73.94896,Entire home/apt,70,10,3,2017-08-21,0.07,1,0 +9788114,Large Private Garden Apartment in Townhouse,785524,Eric,Bronx,Concourse,40.82023,-73.92844,Entire home/apt,87,1,132,2019-06-29,3.11,2,211 +9788141,Bedroom in UWS,50448556,Miguel,Manhattan,Harlem,40.80518,-73.95099,Private room,100,1,1,2015-12-03,0.02,5,0 +9789339,"BIG and Comfortable apt, by Park!",10338528,Jared,Brooklyn,Flatbush,40.65411,-73.95816,Private room,55,4,8,2018-12-26,0.19,1,173 +9789350,Cozy 1 Bedroom in Upper East Side,50455731,Timea,Manhattan,Upper East Side,40.77227,-73.94968,Entire home/apt,139,3,26,2018-01-25,0.60,1,0 +9790098,Bedroom in UWS 118th st,50448556,Miguel,Manhattan,Harlem,40.80345,-73.95067,Private room,200,1,0,,,5,0 +9790355,Heart of Manhattan's West Village,50459536,Ryan,Manhattan,West Village,40.73455,-74.00312,Private room,300,1,0,,,1,0 +9790462,Room in Spacious good vibes home,2949577,Ariela,Brooklyn,Crown Heights,40.66593,-73.95082,Private room,50,4,2,2016-05-02,0.05,1,0 +9790748,Doorman 2 bed 1.5 Ba! Sky view!5173,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.7773,-73.95305,Entire home/apt,260,30,1,2019-03-30,0.30,96,336 +9790995,Cozy room around Union Square,39615319,Yiling,Manhattan,East Village,40.73352,-73.98896,Private room,120,2,3,2016-04-18,0.08,1,0 +9791355,Beautiful studio in Gramercy Park,50463621,Josh,Manhattan,Kips Bay,40.7412,-73.98171,Entire home/apt,110,4,0,,,1,0 +9791362,Cozy Room in Heart of Williamsburg,8265805,Amanda,Brooklyn,Williamsburg,40.71725,-73.96447,Private room,50,3,0,,,1,0 +9792286,Private room in East Village Apt.,48593918,Aaron,Manhattan,East Village,40.72265,-73.98365,Private room,90,2,187,2019-07-07,4.31,1,86 +9792315,Sunny Astoria 2BR with Porch!,5814274,Sam,Queens,Astoria,40.77254,-73.92853,Entire home/apt,225,4,0,,,1,0 +9792323,Brand New Studio!! UNITED NATIONS!!,1475015,Mike,Manhattan,Midtown,40.75185,-73.97001,Entire home/apt,83,30,3,2019-04-19,0.09,52,331 +9792367,Crown Heights Room Winter Sublet,50467679,Gerard,Brooklyn,Crown Heights,40.67176,-73.93387,Private room,30,3,3,2017-12-18,0.10,1,0 +9792720,Semi-Private Room Next to TimeSqare,20337316,Matt,Manhattan,Hell's Kitchen,40.76646,-73.99345,Shared room,65,1,1,2015-12-24,0.02,1,0 +9793213,Room in Williamsburg Flatshare,7036796,Julie,Brooklyn,Williamsburg,40.71891,-73.96133,Private room,60,5,0,,,1,0 +9793465,Cozy Apartment in Spanish Harlem,13811334,Rachel,Manhattan,East Harlem,40.79197,-73.94711,Entire home/apt,140,1,1,2016-04-13,0.03,1,0 +9793542,Stunning SoHo 1400sqft LOFT/DUPLEX on Best Street,50472471,Allegra,Manhattan,SoHo,40.7209,-74.00229,Entire home/apt,799,3,16,2019-04-28,0.40,1,365 +9793665,Modern Apt in Thriving W'Burg,11358093,Hugh,Brooklyn,Williamsburg,40.71283,-73.9593,Entire home/apt,330,5,0,,,1,0 +9793676,3 Bed Apt - 63rd St and Madison,50473263,Joshua,Manhattan,Upper East Side,40.76875,-73.96763,Entire home/apt,1100,1,0,,,1,0 +9794077,Bright Private Greenpoint Room,23698012,Amelia,Brooklyn,Greenpoint,40.72276,-73.94857,Private room,75,1,0,,,1,0 +9794251,400 sq foot studio east village,50475515,Gilad,Manhattan,East Village,40.72407,-73.98236,Entire home/apt,140,12,0,,,1,0 +9794364,Large Room in Manhattan Duplex,8546088,Jonathan,Manhattan,Upper West Side,40.8,-73.96404,Private room,100,2,42,2019-03-19,1.02,1,0 +9794402,Cute Apartment - heart of Astoria,17490821,Pierre,Queens,Astoria,40.7609,-73.92288,Entire home/apt,100,3,1,2015-12-28,0.02,1,0 +9794825,Cozy Room in Hell's kitchen,18998261,Flavien,Manhattan,Hell's Kitchen,40.76339,-73.99404,Private room,110,5,0,,,1,0 +9795890,Room in a loft in Tribeca,23372553,Valentine,Manhattan,Tribeca,40.71561,-74.00642,Private room,75,1,1,2015-12-27,0.02,1,0 +9795958,Cute 1 Bedroom in Hells Kitchen,4205782,Jesse,Manhattan,Hell's Kitchen,40.76223,-73.99296,Entire home/apt,150,4,0,,,1,0 +9796155,"Sublet Room in Bushwick, Brooklyn",34202667,Sarah,Brooklyn,Bushwick,40.69084,-73.92075,Private room,90,3,0,,,1,0 +9796737,Private Room in lower east side NYC,41003664,Conor,Manhattan,Lower East Side,40.71282,-73.98448,Private room,70,9,2,2017-06-12,0.05,1,0 +9797293,East Harlem Holiday Stay,5474579,Seun,Manhattan,East Harlem,40.79617,-73.93452,Entire home/apt,85,1,0,,,1,0 +9797510,Idyllic Greenwich Village Apartment,50490104,Ocean,Manhattan,Greenwich Village,40.72939,-74.00225,Entire home/apt,150,2,0,,,1,0 +9798242,Sunlit Private Rm Btwn Times Sq/Central Park/HK,22247089,Min,Manhattan,Hell's Kitchen,40.76576,-73.98383,Private room,145,2,51,2019-06-15,1.19,1,139 +9800247,East Village Bedroom in Duplex!,36585734,Pj,Manhattan,East Village,40.72955,-73.98058,Private room,77,1,0,,,1,0 +9802654,Lovely apartment in West Village,4050348,Bayly,Manhattan,Greenwich Village,40.72935,-74.00064,Private room,200,1,0,,,1,0 +9804243,Beautiful large bedroom in Brooklyn,2330750,Thomas,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95021,Private room,60,3,4,2018-08-17,0.13,1,0 +9804299,Private room in Williamsburg,3285138,Raffi,Brooklyn,Williamsburg,40.71776,-73.9605,Private room,70,5,1,2016-01-05,0.02,1,0 +9804368,Local and authentic in Chelsea,48705835,Leo,Manhattan,Chelsea,40.74566,-73.99989,Entire home/apt,365,6,100,2019-06-19,2.37,1,257 +9804516,High rise apartment with Central Park views!,49347242,Josephine,Manhattan,Hell's Kitchen,40.7682,-73.98467,Entire home/apt,180,1,3,2016-08-22,0.08,1,0 +9804814,Cozy Midtown East apt,10487850,Nael,Manhattan,Midtown,40.75287,-73.96708,Entire home/apt,230,1,0,,,1,0 +9804849,1 private BR in prime location,12996782,Carol,Manhattan,Theater District,40.76278,-73.98178,Private room,79,7,0,,,1,0 +9805128,Spacious Cosy Room with Queen Bed,50520029,Jeremy,Brooklyn,Bushwick,40.69184,-73.90593,Private room,49,7,2,2016-09-01,0.05,1,0 +9805274,Rare Penthouse Master Bedroom/Bath Nolita,2329581,Michael,Manhattan,Nolita,40.72248,-73.99481,Private room,165,7,4,2017-12-26,0.12,2,0 +9806373,"Bright Spacious Brooklyn Gem, 3 BR",50523735,Grace,Brooklyn,Prospect-Lefferts Gardens,40.6576,-73.94609,Entire home/apt,140,2,131,2019-06-23,3.06,1,273 +9806634,Cozy room in sweet East Village Apt!,4765305,Haffro,Manhattan,East Village,40.72288,-73.98454,Private room,72,1,3,2019-06-24,0.08,4,201 +9806799,#Beautifully furnished 2 BR apt. near Central Park,30283594,Kara,Manhattan,Hell's Kitchen,40.76681,-73.98365,Entire home/apt,369,30,0,,,121,331 +9807059,A room of one's own near Columbia U,50526314,Kay,Manhattan,Morningside Heights,40.81047,-73.95735,Private room,63,1,0,,,1,0 +9807758,Doorman One bedroom Laundry!5128,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73564,-73.98611,Entire home/apt,165,30,2,2017-05-31,0.05,96,321 +9808151,"Lovely XL Studio,Lux bldg,24hr drmn",30223110,Deniz,Manhattan,Midtown,40.75134,-73.96807,Entire home/apt,112,4,1,2016-04-28,0.03,1,0 +9808637,"Beautiful, Bright, Farmhouse Apt",10316525,Daniel,Brooklyn,Williamsburg,40.71197,-73.96061,Entire home/apt,119,3,3,2016-09-03,0.07,1,0 +9808859,Doorman Laundry One bedroom!5134,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76565,-73.98587,Entire home/apt,160,30,1,2016-11-30,0.03,96,365 +9809458,Deluxe Large 1-Bedroom Apt in WILLIAMSBURG NYC,3829864,Jeff,Brooklyn,Williamsburg,40.71907,-73.95434,Entire home/apt,170,2,6,2018-12-02,0.32,1,0 +9809784,Lux Interior Designer Brookyln Flat,3976298,Sidra,Brooklyn,Prospect Heights,40.67815,-73.96823,Entire home/apt,995,5,1,2016-01-02,0.02,1,89 +9809911,Classic Brooklyn Charm,50537550,Howard,Brooklyn,Bedford-Stuyvesant,40.68441,-73.91625,Entire home/apt,185,2,24,2019-06-24,0.56,1,365 +9810235,Tribeca Loft,50539403,Yuri,Manhattan,Tribeca,40.71819,-74.00833,Entire home/apt,500,4,0,,,1,0 +9810271,Private room in 4 BR on Riverside,50539477,Brian,Manhattan,Harlem,40.8226,-73.95468,Private room,48,30,100,2019-05-31,2.31,2,183 +9810506,Beautiful Luxury Tribeca Apartment,50540315,Rebecca,Manhattan,Battery Park City,40.71775,-74.01509,Private room,150,3,0,,,1,0 +9810696,MANNYS' PLACE,50541121,Jesus,Manhattan,Hell's Kitchen,40.76385,-73.98669,Entire home/apt,199,2,137,2019-06-24,3.14,1,317 +9811274,Large Room for 2! Hipstest hood for summer!,16003028,Analá,Brooklyn,Greenpoint,40.72974,-73.95163,Private room,80,5,2,2016-06-28,0.05,1,0 +9813364,"1 lg. bedroom, north central park",13275669,Tenzin,Manhattan,Harlem,40.80145,-73.95428,Private room,60,3,0,,,1,0 +9818465,Sunny apt in morningside heights,24554945,Michael E.,Manhattan,Morningside Heights,40.80761,-73.95841,Entire home/apt,125,6,5,2019-01-01,0.16,1,1 +9819018,A cozy room in Lower East Manhattan,49861582,Emily,Manhattan,Lower East Side,40.71209,-73.98794,Private room,62,28,2,2016-01-14,0.05,1,0 +9819164,Large Bay-Windowed by Citi-College,17557243,Wolfgang,Manhattan,Harlem,40.8216,-73.95583,Shared room,60,1,0,,,1,0 +9819437,3BR Modern Upper West CPW w/doorman,1106592,Scott,Manhattan,Upper West Side,40.79502,-73.96703,Entire home/apt,600,3,0,,,1,0 +9819545,Huge Space in E. Williamsburg Apt.,22159648,Sinat,Brooklyn,Williamsburg,40.70657,-73.94234,Private room,75,1,2,2019-01-02,0.21,2,0 +9819589,Designer's Studio with Cats +Yard,2290932,Jack,Brooklyn,Fort Greene,40.68579,-73.97455,Entire home/apt,80,2,4,2018-05-27,0.17,1,0 +9820053,SoHo Studio,22440410,David,Manhattan,SoHo,40.72688,-74.00058,Entire home/apt,195,2,1,2016-01-06,0.02,1,0 +9820308,"Furnished 1 BR, near Times Square",50583919,Samkit,Manhattan,Hell's Kitchen,40.75992,-73.9879,Private room,68,3,1,2016-01-18,0.02,1,0 +9820483,A room in East Village: 2 weeks min,50584770,Anton,Manhattan,East Village,40.72246,-73.98006,Private room,45,14,0,,,1,0 +9820533,1 BR Artist's Haven in Bed-Stuy,4400935,V,Brooklyn,Bedford-Stuyvesant,40.68259,-73.92358,Entire home/apt,90,2,5,2016-10-15,0.12,1,0 +9820968,Large Stylish & Modern 1 BR Apt.,16352538,Alexis,Manhattan,Hell's Kitchen,40.76379,-73.99378,Entire home/apt,200,2,1,2016-01-02,0.02,1,0 +9821359,"Adorable, quiet Astoria apartment",50588693,Robb,Queens,Astoria,40.76125,-73.91008,Private room,30,1,0,,,1,0 +9821370,"Elegant, sunny and spacious room in Harlem",50588394,Alizé,Manhattan,Harlem,40.82391,-73.93881,Private room,80,1,28,2018-11-04,0.72,1,364 +9821408,Cozy East Village apartment w Steinway piano,1010435,Carol,Manhattan,East Village,40.72792,-73.98718,Entire home/apt,125,7,4,2019-04-22,0.17,1,1 +9822032,Shiyi Wang,50591230,Shiyi,Brooklyn,Bushwick,40.69557,-73.9315,Private room,70,1,0,,,1,0 +9822110,Bushwick Room in 3Bedroom Apt,23914377,Bobby,Brooklyn,Bushwick,40.70179,-73.93689,Private room,50,1,0,,,1,0 +9822635,Beautiful Serene Bedroom,50593630,Yari,Brooklyn,Crown Heights,40.67239,-73.93225,Private room,110,1,6,2016-09-19,0.14,1,0 +9822738,Beautiful Upper East Side Apt!,50593964,Laura,Manhattan,Upper East Side,40.77641,-73.95505,Entire home/apt,199,4,1,2016-01-03,0.02,1,0 +9822983,31 Dec - 1 Jan lovely Prospect room,4119786,Shimrit,Brooklyn,Prospect Heights,40.6733,-73.9647,Private room,40,1,1,2015-12-23,0.02,2,0 +9823085,Private room in bright apartment!,46256682,Jose,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95019,Private room,65,5,10,2019-05-04,0.49,1,3 +9823636,Cozy Room in Hell's Kitchen,25153542,Andrea,Manhattan,Hell's Kitchen,40.76057,-73.99038,Private room,85,1,1,2015-12-19,0.02,1,0 +9823806,Spacious 1BD-1 Block to Bedford L!,18195071,Ben,Brooklyn,Williamsburg,40.71481,-73.95475,Entire home/apt,160,3,0,,,1,0 +9824042,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74423,-73.97742,Private room,69,4,107,2019-04-15,2.50,2,0 +9824463,BK's Finest Courtyard Rm close to transportation,50600973,Joyell,Brooklyn,Bushwick,40.69452,-73.9284,Private room,42,1,216,2019-06-24,5.00,7,61 +9824613,Studio near GramercyPark w/ Kitchen,50601765,Xinyan,Manhattan,Kips Bay,40.74195,-73.98242,Entire home/apt,120,2,4,2016-09-05,0.11,1,0 +9824682,1 bedroom apartment w/ Private yard,19103161,Jonathan,Brooklyn,Greenpoint,40.72691,-73.94802,Entire home/apt,150,1,0,,,1,0 +9824807,Sunny Apt by Central Park North,1583768,Grace,Manhattan,Harlem,40.79982,-73.95375,Entire home/apt,130,2,18,2017-08-14,0.42,1,0 +9825420,Great for Work/Leisure w NYC Views!,1570949,DeAnna,Brooklyn,South Slope,40.66817,-73.98774,Private room,85,2,0,,,1,0 +9825939,"Room in Luxury Apt, Williamsburg",9055412,Alexandra,Brooklyn,Williamsburg,40.70663,-73.94701,Private room,100,1,0,,,1,0 +9826062,One Bedroom Midtown East Cozy 1 BR,28768715,Tom,Manhattan,Murray Hill,40.74852,-73.97521,Entire home/apt,210,3,59,2019-07-03,1.54,1,248 +9826081,"Bright apartment, Crown Heights",5385509,Ingrid Harvold,Brooklyn,Crown Heights,40.67534,-73.94958,Private room,28,14,3,2017-01-25,0.07,1,0 +9826494,large room in 3 bedroom apartment,18215000,Haley,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95345,Private room,60,2,1,2016-09-01,0.03,1,0 +9826628,"Cozy Room, Huge Yard, Trendy Brooklyn",820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.6913,-73.9406,Private room,60,1,113,2019-06-27,2.66,3,332 +9826822,Beautiful/Comfy 1BR Brownstone,15312389,Taylor Jo,Brooklyn,Bedford-Stuyvesant,40.68752,-73.9567,Entire home/apt,140,2,5,2018-01-01,0.12,1,0 +9827236,Beautiful Room with Private Balcony,25752230,Bruno,Brooklyn,Bushwick,40.69224,-73.91834,Private room,69,2,0,,,1,0 +9827941,"Rm in Pvt Home, Nr Trn To NYC - NO CLEANING FEE",15163256,Faigie,Brooklyn,Sheepshead Bay,40.60596,-73.95672,Private room,73,3,77,2019-06-27,2.04,3,354 +9828004,Private Rm - near NYC Transit - No Cleaning Fee,15163256,Faigie,Brooklyn,Sheepshead Bay,40.60666,-73.9575,Private room,67,3,62,2019-07-07,1.65,3,338 +9831392,Cozy Modern Apartment Above Subway,49453860,Xionghui,Queens,Forest Hills,40.72126,-73.84542,Entire home/apt,123,1,0,,,1,0 +9832827,Full apartment,50638417,Nany,Manhattan,East Harlem,40.78442,-73.94722,Entire home/apt,110,5,70,2019-06-28,1.81,2,310 +9832882,Greenwich Village 2BR family apt.,50640005,Gwendollyn,Manhattan,Greenwich Village,40.73393,-73.9982,Entire home/apt,250,2,0,,,1,0 +9833212,Charming UWS Studio Loft,15584022,Alicia,Manhattan,Upper West Side,40.77633,-73.97932,Entire home/apt,80,5,7,2016-04-29,0.16,1,0 +9833953,East Village 3br 2 bath Luxury,45911716,Peter,Manhattan,East Village,40.72804,-73.97638,Entire home/apt,325,3,17,2017-06-04,0.46,1,0 +9835402,"Manhattan, luxury, 2 bedroom condo",47785416,Peter,Manhattan,Upper East Side,40.78333,-73.94996,Entire home/apt,300,1,0,,,1,0 +9835950,Vibey Bedroom in 2BR - Williamsburg,2409133,Kristy,Brooklyn,Williamsburg,40.70848,-73.94584,Private room,44,47,7,2017-04-15,0.16,1,0 +9836020,Newly Renovated Tribeca 2 br,33908393,Jay,Manhattan,Tribeca,40.71982,-74.01134,Entire home/apt,197,1,0,,,1,0 +9836642,Spacious & upscale room (Long-term),50656310,Adam,Manhattan,Hell's Kitchen,40.76487,-73.99143,Private room,60,21,0,,,1,0 +9836940,Bright & Sunny 2-Bed - Bushwick/Bed-Stuy Border!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9196,Entire home/apt,165,3,36,2019-07-06,4.37,2,274 +9836960,Cozy Room in Cozy Apartment,38064272,Son,Brooklyn,Bedford-Stuyvesant,40.68535,-73.95036,Private room,30,1,3,2017-06-11,0.11,1,0 +9837205,Cozy private room in Bayridge Brooklyn New York,16209547,Gina,Brooklyn,Fort Hamilton,40.61634,-74.03378,Private room,120,2,9,2019-04-09,0.23,2,365 +9837588,Bright Brooklyn Apartment,46080859,Ellery,Brooklyn,Bedford-Stuyvesant,40.68307,-73.92894,Entire home/apt,119,5,13,2019-06-19,0.30,1,3 +9838053,"Large, Furnished Bedroom in Bushwick",48939879,Ena,Brooklyn,Bushwick,40.70311,-73.91264,Private room,39,10,2,2019-01-14,0.28,1,0 +9838145,Bright 3 BR East Village apartment,5904463,Katherine,Manhattan,East Village,40.72451,-73.98369,Entire home/apt,250,1,0,,,4,0 +9838585,Pre-war 1 br in heart of BK Heights,18982207,Kate,Brooklyn,Brooklyn Heights,40.69237,-73.99412,Entire home/apt,130,4,0,,,1,0 +9838832,1 bd in 2bd steps 2 Lincoln Center,1426080,Jacquelyn,Manhattan,Upper West Side,40.78763,-73.97204,Private room,100,3,21,2017-09-09,0.49,2,0 +9838920,1 bedroom in Morningside Apartment,12745771,Amanda,Manhattan,Washington Heights,40.85509,-73.93236,Private room,28,1,1,2015-12-31,0.02,1,0 +9839017,The new MBnb: No Breakfast. All Business.,3510997,Joe,Manhattan,Harlem,40.82545,-73.94969,Entire home/apt,149,31,24,2019-06-30,0.58,1,149 +9839263,Location Little Nana (only female),3250450,Petya,Queens,Astoria,40.76036,-73.924,Private room,39,18,0,,,18,310 +9839378,Exposed Brick in the East Village,5657756,Jenny,Manhattan,East Village,40.72464,-73.98861,Entire home/apt,225,4,7,2018-11-22,0.19,1,0 +9839532,Large bedroom in Williamsburg- 10min Manhattan,11303788,Paul,Brooklyn,Williamsburg,40.71229,-73.95695,Private room,100,14,0,,,1,88 +9839906,Beautiful sunny room in Brooklyn,14018666,Laura,Brooklyn,Sheepshead Bay,40.587,-73.95588,Private room,45,1,9,2016-10-01,0.22,1,0 +9840355,Gorgeous apartment in West Village,3242525,Ther,Manhattan,West Village,40.73113,-74.00314,Entire home/apt,120,4,1,2016-07-06,0.03,1,0 +9841191,Cozy Studio in the Heart of the UWS,25131945,Abigail,Manhattan,Upper West Side,40.78528,-73.98091,Entire home/apt,99,2,5,2017-04-30,0.12,1,0 +9841695,"Beautiful , Peaceful , Paradise",50678424,Don,Brooklyn,Bedford-Stuyvesant,40.68777,-73.94793,Entire home/apt,206,1,35,2019-01-01,0.81,2,365 +9842117,Cozy and comfortable apart,50638417,Nany,Manhattan,East Harlem,40.79088,-73.94261,Entire home/apt,120,5,52,2019-07-01,1.29,2,323 +9842363,Luxury apartment across One World,50680790,Felipe,Manhattan,Financial District,40.7088,-74.01455,Entire home/apt,275,2,0,,,1,0 +9842492,Vibrant 1 Bedroom Apt.in Midtown,50681342,Joe,Manhattan,Hell's Kitchen,40.76542,-73.98702,Entire home/apt,290,2,55,2019-06-24,1.37,1,0 +9842780,Grand apartment on 5th avenue,145616,Lauren,Manhattan,Greenwich Village,40.73238,-73.99517,Entire home/apt,300,3,0,,,1,0 +9843277,Columbia apartment - Upper West,4210456,Ignacio,Manhattan,Morningside Heights,40.80638,-73.96245,Entire home/apt,75,15,0,,,1,0 +9843634,"Spacious, quiet Greenpoint 1-bedroom",3820569,Eleanore,Brooklyn,Greenpoint,40.73528,-73.95647,Entire home/apt,80,3,2,2016-10-11,0.06,1,0 +9843884,Beautiful and Warm Garden Apartment,50686888,Nadine,Brooklyn,East New York,40.6682,-73.88541,Entire home/apt,150,30,16,2018-11-03,0.37,1,365 +9843892,Cozy East Village Brownstone,92272,Kristin,Manhattan,Gramercy,40.73307,-73.9835,Private room,80,2,23,2019-06-20,0.54,3,362 +9843956,Cheerful studio near Prospect Park,50687223,Jenna,Brooklyn,Prospect-Lefferts Gardens,40.66044,-73.96114,Entire home/apt,70,6,4,2016-07-24,0.09,1,0 +9844047,Spacious Home South Prospect Park,29241227,Ken,Brooklyn,Kensington,40.64689,-73.97446,Entire home/apt,130,4,1,2015-12-30,0.02,2,0 +9844161,[Prospect park] Brand New Huge Room,44791860,Laura,Brooklyn,Prospect-Lefferts Gardens,40.66112,-73.95462,Private room,50,1,0,,,1,0 +9844482,Garden apartment oasis.,9523962,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66201,-73.95352,Entire home/apt,125,9,10,2016-08-24,0.24,1,0 +9844509,Prospect Park Palace,23806994,Michael,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.96003,Entire home/apt,150,2,1,2016-01-02,0.02,1,0 +9844805,Bespoke 2 Building Garden Apartment,1761447,Marc,Brooklyn,Williamsburg,40.71032,-73.95345,Entire home/apt,290,6,1,2017-05-05,0.04,2,95 +9844892,Family-friendly Village Apartment,50690190,Ryan,Manhattan,Greenwich Village,40.72969,-74.00117,Entire home/apt,210,1,0,,,1,0 +9845284,Clean Classic NYC Studio,1134635,Amelia,Manhattan,Midtown,40.74251,-73.98414,Entire home/apt,150,2,1,2017-01-04,0.03,1,0 +9845314,Beautiful Duplex in Bushwick,2580352,Isaac,Brooklyn,Bushwick,40.69923,-73.9308,Entire home/apt,129,7,5,2017-06-05,0.12,1,0 +9846114,"Spacious, Sunny,Beautiful Apartment",20271650,Bj,Bronx,Mott Haven,40.81192,-73.90949,Private room,64,3,36,2019-05-25,0.84,1,1 +9846616,"Spacious Private Room, East Village",21269488,Shirley,Manhattan,East Village,40.73145,-73.98384,Private room,100,3,1,2016-01-01,0.02,1,0 +9847917,Furnished East Village room,7511881,Nika,Manhattan,East Village,40.72608,-73.97843,Private room,60,2,1,2016-01-05,0.02,1,0 +9851704,Beautiful 1 bedroom apt in Bedstuy,12871485,Chris,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94628,Entire home/apt,120,2,9,2016-12-31,0.21,1,0 +9853674,Doorman 2 Bedroom W/ 3 beds Doorman Laundry!5213,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7665,-73.98675,Entire home/apt,180,30,6,2019-05-31,0.16,96,255 +9853884,1 Month Huge 1 Bdr UWS Morningside,50727041,Tristan,Manhattan,Morningside Heights,40.81536,-73.96246,Private room,45,15,0,,,1,0 +9853919,There's an Avenue D?,7033731,Ericka,Manhattan,East Village,40.7243,-73.97684,Private room,90,3,40,2018-10-28,0.94,1,0 +9854420,Beautiful one bedroom in Soho,33889947,Gautier,Manhattan,SoHo,40.72767,-74.00344,Entire home/apt,200,2,20,2017-04-24,0.48,1,0 +9855028,Upscale 1 Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76482,-73.98216,Entire home/apt,239,30,0,,,121,351 +9855043,Cozy Tribeca Studio,5259567,Ross,Manhattan,Tribeca,40.71813,-74.00509,Entire home/apt,139,5,0,,,1,0 +9855273,Modern 1 bedroom apt. near Columbus Circle!,30283594,Kara,Manhattan,Hell's Kitchen,40.76667,-73.98341,Entire home/apt,279,30,0,,,121,352 +9855566,Beautiful Room in Greenpoint Apt,43943644,Alvaro,Brooklyn,Greenpoint,40.72612,-73.95113,Private room,95,1,0,,,1,0 +9855876,Large Room in LES ($80-100/night),18282,Daniel,Manhattan,Lower East Side,40.71813,-73.98715,Private room,70,1,3,2017-01-22,0.07,1,0 +9856683,"Large n Cozy Apt, 30 min to Midtown,Month Discount",3709185,Margarita,Manhattan,Inwood,40.87045,-73.91765,Entire home/apt,90,5,4,2018-06-21,0.09,1,0 +9856995,Calm and Comfy room in Brooklyn,50729557,Miho,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95471,Private room,70,2,63,2019-07-05,1.46,1,322 +9857249,Big Bright 1BR Bed-Stuy Brownstone,8033291,Julia,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94678,Entire home/apt,94,4,6,2017-06-20,0.16,1,0 +9857658,Sunny 2 bedroom Apt (Chelsea),6355999,Natalie,Manhattan,Chelsea,40.74387,-74.00134,Entire home/apt,250,2,3,2016-05-16,0.07,1,0 +9857920,SWING FROM THE CHANDELIER,29941633,William,Manhattan,Tribeca,40.71454,-74.00816,Entire home/apt,850,4,0,,,1,0 +9857967,Big Private Bedroom,1433657,Evy,Brooklyn,Williamsburg,40.70888,-73.95622,Private room,85,2,37,2019-05-26,0.95,2,334 +9858259,"Private guest studio in the heart of Astoria, NYC",50451849,Bianca,Queens,Astoria,40.76993,-73.91762,Entire home/apt,65,2,92,2019-07-03,2.19,1,12 +9858642,NYC Midtown West 2-BR Apt near Theater District!,30283594,Kara,Manhattan,Midtown,40.76704,-73.98153,Entire home/apt,369,30,1,2016-01-20,0.02,121,345 +9858645,Fabulous 1BA/1BD near Times Square,7611383,Leah,Manhattan,Hell's Kitchen,40.76457,-73.98525,Private room,200,3,0,,,1,0 +9859181,2 bed/3 bed with parking,10237786,Livia,Queens,Ditmars Steinway,40.78274,-73.91318,Entire home/apt,88,3,117,2019-07-05,2.88,1,192 +9859888,Apartment in Harlem,50750250,Ryan,Manhattan,Harlem,40.80728,-73.94987,Entire home/apt,65,1,3,2015-12-30,0.07,1,0 +9860190,Deluxe Furnished 1-Bedroom Midtown West Apartment,30283594,Kara,Manhattan,Theater District,40.75943,-73.98302,Entire home/apt,239,30,0,,,121,363 +9860571,The RoyaltySpace @Williamsburg BK3,24120303,Charles Jnr,Brooklyn,Williamsburg,40.70848,-73.94945,Private room,79,1,13,2016-08-21,0.30,1,0 +9860670,Deluxe Furnished 1-BR NYC apt. near Central Park!,30283594,Kara,Manhattan,Theater District,40.76064,-73.98554,Entire home/apt,239,30,0,,,121,363 +9860948,Modern 1 bedroom apt. near Grand Central Station!,30283594,Kara,Manhattan,Theater District,40.75864,-73.98197,Entire home/apt,239,30,0,,,121,363 +9861196,Luxury 1-Bedroom Apartment in Midtown Gym+Pool,30283594,Kara,Manhattan,Theater District,40.76105,-73.98638,Entire home/apt,239,30,1,2018-04-28,0.07,121,363 +9861323,Cozy 10th St. Park Slope 1bdr apt,50755667,Kyla,Brooklyn,Park Slope,40.66854,-73.98482,Entire home/apt,120,3,71,2019-06-24,2.12,3,200 +9861747,Breathtaking view 30th floor Bedroom in FIDI,3965200,Daniel,Manhattan,Financial District,40.70629,-74.0098,Private room,175,3,55,2019-06-20,2.95,1,26 +9861797,Premium Central Park Experience,5559432,Francis,Manhattan,Upper West Side,40.79322,-73.96726,Entire home/apt,200,5,2,2016-09-21,0.05,1,0 +9862199,Cozy Studio Home on the UWS!,32787246,Heather,Manhattan,Upper West Side,40.80383,-73.96793,Entire home/apt,103,3,1,2016-01-01,0.02,1,0 +9862831,Pleasant studio Chelsea (Manhattan),50761842,Michael,Manhattan,Chelsea,40.74443,-74.00259,Entire home/apt,80,5,0,,,1,0 +9862872,A cozy place in Bayridge,50762019,Aditya,Brooklyn,Bay Ridge,40.63266,-74.0284,Private room,80,1,1,2015-12-30,0.02,1,0 +9862913,Room in Sunny Apt in Great Area,7532013,Jennifer,Brooklyn,Fort Greene,40.69431,-73.97316,Private room,60,3,1,2016-01-27,0.02,1,0 +9863097,"Bright, cozy, room in Greenpoint",18900298,Johanna,Brooklyn,Greenpoint,40.72522,-73.95124,Private room,50,1,0,,,1,0 +9863626,"Private room in charming, comfortable & bright apt",11402864,Milen,Brooklyn,Crown Heights,40.66891,-73.9533,Private room,50,2,4,2017-07-24,0.10,1,0 +9864121,Chelsea Studio - great city views,39322,Katrina,Manhattan,Midtown,40.74612,-73.98948,Entire home/apt,145,21,0,,,1,0 +9864137,Townhouse in beautiful brownstone area!,3011547,Wendy,Brooklyn,Boerum Hill,40.68651,-73.98624,Entire home/apt,425,14,4,2018-11-01,0.09,3,205 +9864199,Greenwich Village Penthouse,38795245,Tomo,Manhattan,Greenwich Village,40.73418,-73.99887,Entire home/apt,275,10,0,,,1,0 +9864749,Spacious Bedroom in Flat Iron,50769650,Miguel,Manhattan,Midtown,40.74501,-73.98574,Private room,150,4,0,,,1,0 +9864900,SPACIOUS MIDTOWN APT WITH BACKYARD,50770601,Diana,Manhattan,Midtown,40.75622,-73.96467,Entire home/apt,229,1,0,,,5,306 +9864926,GRAMERCY 1 BD APARTMENT - CENTRAL!!,50770601,Diana,Manhattan,Gramercy,40.73683,-73.97926,Entire home/apt,200,1,1,2016-06-06,0.03,5,335 +9865262,Sunny 3 bedroom LES apartment,50772475,Megan,Manhattan,Lower East Side,40.7201,-73.98984,Entire home/apt,300,3,1,2015-12-13,0.02,1,0 +9865344,Room in beautiful Ditmas Park,50772718,Ross,Brooklyn,Flatbush,40.63443,-73.96703,Private room,47,4,2,2016-07-02,0.05,1,0 +9865374,Lovely 1Br Near Highline! (+2 cats),13757674,Elisabeth,Manhattan,Chelsea,40.74807,-74.00209,Entire home/apt,200,3,0,,,1,0 +9865506,Modern & Sun Filled 1BR in Gramercy,26920640,Kendall,Manhattan,Gramercy,40.73637,-73.98107,Entire home/apt,200,2,2,2016-03-27,0.05,1,0 +9865901,"Quiet, Spacious Studio - Moments from attractions!",109879,Anna,Manhattan,Hell's Kitchen,40.76355,-73.98815,Entire home/apt,180,7,5,2017-06-08,0.19,1,0 +9866039,"Modern, Large & Cozy 1 BR NYC Apt",314008,Charline,Manhattan,Midtown,40.75247,-73.97196,Entire home/apt,270,4,8,2018-04-10,0.19,1,0 +9866779,Big bedroom with private bathroom!,50680795,Sierra,Manhattan,Harlem,40.82976,-73.94663,Private room,30,8,1,2016-01-02,0.02,1,0 +9867629,Spacious Apt in East Williamsburg,8013847,Michole,Brooklyn,Williamsburg,40.70774,-73.94139,Entire home/apt,170,2,17,2019-04-28,0.44,2,270 +9872904,Room in lovely LES apartment,29111960,Daniel,Manhattan,Lower East Side,40.72168,-73.99183,Private room,55,7,1,2015-12-12,0.02,1,0 +9874042,Modern Bushwick Apt,4498059,Claire,Brooklyn,Bushwick,40.70419,-73.92114,Entire home/apt,185,2,0,,,1,0 +9874418,Private room in Greenpoint,7410082,Ricardo,Brooklyn,Greenpoint,40.72515,-73.9397,Private room,30,8,1,2016-01-05,0.02,1,0 +9874710,Lux 1BR in the heart of NYC Theater district!,30283594,Kara,Manhattan,Theater District,40.76118,-73.98535,Entire home/apt,139,30,1,2017-05-17,0.04,121,306 +9875791,Cozy Big Room Next To Central Park,14811787,Will,Manhattan,Upper East Side,40.76678,-73.95171,Private room,101,3,4,2019-06-29,0.15,2,345 +9875822,"Sunny, Quiet, Huge Room in UWS",36830075,Camila,Manhattan,Harlem,40.8292,-73.94874,Private room,85,4,0,,,2,0 +9876335,No Sleep 'Till Brooklyn! 2 Train (accommodates 1),37401126,Leah,Brooklyn,East Flatbush,40.64165,-73.94062,Private room,50,2,32,2019-07-04,0.74,4,362 +9876492,"Spacious Room in Bushwick, Brooklyn",22967540,Anna,Brooklyn,Bushwick,40.70079,-73.92095,Private room,38,7,3,2016-02-29,0.07,1,0 +9876971,"❤️ of Wburg, 2.5 Rms, Sep Entrances",1869332,Elli,Brooklyn,Williamsburg,40.71947,-73.95677,Entire home/apt,219,30,3,2017-05-21,0.09,3,36 +9877776,Standard Triple Room,48059119,Wolcott,Manhattan,Midtown,40.74673,-73.98667,Private room,325,1,0,,,3,360 +9879167,Beautiful apartment in Williamsburg,1090021,Ian,Brooklyn,Williamsburg,40.714,-73.94062,Entire home/apt,100,20,0,,,1,51 +9879216,Stay in a doll factory!,5229579,Ryan,Brooklyn,Williamsburg,40.71811,-73.96222,Private room,69,3,0,,,3,0 +9879235,Luxury 1 Bedroom Apt. in Midtown,50831724,Humberto,Manhattan,Hell's Kitchen,40.76234,-73.98732,Entire home/apt,275,2,6,2016-09-05,0.15,1,0 +9879556,**Luxury 1 Bedroom Upper East Side NYC Apt,30283594,Kara,Manhattan,Upper East Side,40.76257,-73.95915,Entire home/apt,249,30,1,2018-01-25,0.06,121,273 +9879796,Modern 2 Bedroom by Memorial Sloan Kettering!,30283594,Kara,Manhattan,Upper East Side,40.76429,-73.95774,Entire home/apt,249,30,0,,,121,272 +9880049,Furnished 1BR apt. near Empire State Building!,30283594,Kara,Manhattan,Midtown,40.7655,-73.98308,Entire home/apt,239,30,0,,,121,352 +9880140,"Huge amazing 1bdrm, Upper Manhattan",3460956,Anya & Marco,Manhattan,Washington Heights,40.85884,-73.93356,Entire home/apt,100,5,13,2018-02-19,0.35,1,0 +9880294,Bohemian Bushwick Loft,2569188,Ana,Brooklyn,Bushwick,40.70021,-73.94081,Private room,49,1,2,2015-12-26,0.05,1,0 +9880495,NYC Midtown West Luxury 1 bedroom apartment!,30283594,Kara,Manhattan,Midtown,40.76555,-73.98224,Entire home/apt,239,30,0,,,121,351 +9880664,A TASTE OF BROOKLYN,21222224,Erica,Brooklyn,Bedford-Stuyvesant,40.68243,-73.9534,Entire home/apt,150,2,2,2016-10-10,0.06,2,364 +9880673,Lavish 1BR apt. near Madison Square Park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76702,-73.9834,Entire home/apt,239,30,0,,,121,352 +9880827,NYC luxury 1 BR apt near the Chrysler Building!,30283594,Kara,Manhattan,Midtown,40.76693,-73.98139,Entire home/apt,239,30,0,,,121,352 +9881195,HUGE Apartment - Close to Subway,5913612,John-Paul,Queens,Astoria,40.76197,-73.92208,Entire home/apt,150,1,1,2016-01-03,0.02,1,0 +9881339,light filled chic west village apt,23500650,Victoria,Manhattan,West Village,40.7385,-74.00378,Entire home/apt,200,1,0,,,1,0 +9881516,Private Bedroom in Heart of NYC,50839249,Alexandra,Manhattan,Chelsea,40.74836,-73.99031,Private room,50,7,0,,,1,0 +9881685,Upscale and spacious 2bed/2bath Midtown West apt.,30283594,Kara,Manhattan,Midtown,40.76665,-73.98281,Entire home/apt,190,30,1,2017-04-30,0.04,121,286 +9882012,Stay in an artist warehouse!,5229579,Ryan,Brooklyn,Williamsburg,40.71801,-73.96405,Private room,59,3,0,,,3,0 +9882147,Private Room + Office in Duplex,7408257,Jocelyn,Brooklyn,Bedford-Stuyvesant,40.6948,-73.95101,Private room,40,15,0,,,1,0 +9882254,Owl's Landing - Garden Room,50068597,Alex,Staten Island,Stapleton,40.63516,-74.07735,Private room,52,2,137,2019-07-01,3.17,3,340 +9882271,Sunny Greenpoint minimalist rental,4483467,Daniel,Brooklyn,Greenpoint,40.73081,-73.95466,Entire home/apt,89,2,2,2017-05-15,0.07,1,0 +9882440,"Spectacular, high-end 2BR apt close to Bryant Park",30283594,Kara,Manhattan,Hell's Kitchen,40.76704,-73.98355,Entire home/apt,369,30,3,2019-01-10,0.07,121,345 +9883197,old style tenement apartment,50846116,Sarah Justine,Manhattan,Lower East Side,40.72156,-73.98866,Entire home/apt,100,5,0,,,1,0 +9883768,Best location in Williamsburg!,21966105,Ryan,Brooklyn,Williamsburg,40.72049,-73.95894,Private room,90,6,2,2018-07-31,0.16,1,331 +9883870,2 BR Apt Near Central Park UES,22962853,Brandon,Manhattan,Upper East Side,40.78306,-73.94581,Entire home/apt,115,2,8,2016-03-20,0.18,1,0 +9884175,LES Private Room + Private Bath,8936829,Ashley,Manhattan,Lower East Side,40.72282,-73.98908,Private room,150,20,0,,,1,0 +9884237,Central Park Luxury Studio,16177882,Craig,Manhattan,Midtown,40.76566,-73.97873,Entire home/apt,400,1,0,,,1,0 +9884516,Gorgeous Space in LIC/Astoria,47653056,Jamie,Queens,Long Island City,40.75342,-73.9237,Private room,66,7,1,2016-01-05,0.02,1,0 +9884725,New Condo Studio in Downtown NYC,17108566,Faline,Manhattan,East Village,40.73271,-73.98638,Entire home/apt,180,2,0,,,1,0 +9885430,West Village 1-bedroom in co-op,40302046,David,Manhattan,West Village,40.73194,-74.00241,Entire home/apt,149,3,0,,,1,0 +9885501,Private Bedroom in LES/East Village,1762558,Evan,Manhattan,East Village,40.72143,-73.97892,Private room,89,2,24,2017-04-28,0.56,1,0 +9885815,"Studio in Chelsea, New York",42453789,Bernardo,Manhattan,Chelsea,40.74192,-73.99677,Entire home/apt,85,7,0,,,1,0 +9885866,"",37306329,Juliette,Manhattan,Chinatown,40.71632,-73.99328,Private room,67,4,0,,,1,0 +9886034,Charming Crown Heights Apartment,50857647,Shaina,Brooklyn,Crown Heights,40.67797,-73.95397,Private room,75,14,0,,,1,0 +9886606,Beautiful Bedroom & Bath For Rent!!,221266,James,Manhattan,East Harlem,40.79108,-73.94642,Private room,94,2,3,2019-02-12,0.07,1,0 +9886735,Bohemian Room in 2 bdr apt.,17023017,Sade,Brooklyn,Crown Heights,40.66555,-73.95613,Private room,80,2,0,,,1,0 +9887326,"HUGE room, close to subway and CU!",33499326,Hannah,Manhattan,Upper West Side,40.79961,-73.96654,Private room,70,15,2,2016-06-25,0.05,1,0 +9887681,NEW SUNNY PEACEFUL ROOM in Prime Williamsburg,8119817,Mila,Brooklyn,Williamsburg,40.71821,-73.94116,Private room,115,2,0,,,2,121 +9887763,Spacious and comfortable rm in LIC,31534322,Nia,Queens,Long Island City,40.7484,-73.94604,Private room,90,2,59,2019-01-02,1.37,4,33 +9888174,2-bd apt 20min metro to Manhattan,56326,Mehrnoush,Brooklyn,Flatbush,40.65234,-73.95329,Entire home/apt,155,1,1,2016-01-06,0.02,1,0 +9894602,Large Room in Sunny Astoria Apt,10456845,Taylor,Queens,Astoria,40.75764,-73.92283,Private room,65,1,2,2018-08-11,0.05,2,0 +9894741,Uptown Chic,1418854,Charli,Manhattan,Harlem,40.83021,-73.94765,Private room,60,2,0,,,1,0 +9894820,Upper East Side Manhattan 2 Bedroom,50894847,Aidan,Manhattan,Upper East Side,40.7692,-73.96754,Entire home/apt,149,1,1,2015-12-19,0.02,1,0 +9895587,"Exposed brick bedroom, LIC Queens",31534322,Nia,Queens,Long Island City,40.7484,-73.94651,Private room,70,2,113,2019-05-11,2.60,4,63 +9896731,BEDROOM IN UWS,50448556,Miguel,Manhattan,Harlem,40.80489,-73.95171,Private room,100,2,1,2015-12-09,0.02,5,0 +9897418,Beautiful 1B apartment in Harlem!,49120239,Milena,Manhattan,Harlem,40.81437,-73.93833,Entire home/apt,120,7,0,,,1,0 +9898107,Murray Hill Luxury Furnished Rental,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74636,-73.9783,Entire home/apt,150,30,1,2016-02-19,0.02,31,125 +9898409,Small Cozy Studio - Brownstone,40709140,Lee,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94758,Entire home/apt,160,1,0,,,1,0 +9898894,"Charming, spacious UES studio",19529891,Shilpa,Manhattan,Upper East Side,40.7687,-73.9556,Entire home/apt,135,3,0,,,1,0 +9899132,Spacious Private 1-Bedroom Apartment,9995094,Jim,Queens,Long Island City,40.74691,-73.95348,Entire home/apt,200,3,93,2019-07-03,2.17,1,86 +9899499,Beautiful Greenpoint Apartment,10836122,Laurance,Brooklyn,Greenpoint,40.72522,-73.94022,Private room,50,1,1,2015-12-26,0.02,1,0 +9899970,Cozy Nolita Apartment,2574856,Audrey,Manhattan,Nolita,40.72051,-73.99513,Entire home/apt,225,2,29,2019-04-27,0.68,1,176 +9900100,"Sunny, Cozy Double Room in Brooklyn",34991003,Karen,Brooklyn,East Flatbush,40.6458,-73.92384,Private room,35,7,9,2019-05-20,0.39,3,326 +9900120,Bedroom built for... just sleeping,50914877,Kyle,Manhattan,Harlem,40.8185,-73.9442,Private room,45,4,1,2015-12-30,0.02,1,0 +9900224,"Quiet, private room Upper West Side",3879284,Aidan,Manhattan,Upper West Side,40.77578,-73.97794,Private room,140,2,16,2018-04-01,0.47,1,0 +9900885,Entire Huge East Harlem Apt,1345812,David,Manhattan,East Harlem,40.79795,-73.9442,Entire home/apt,160,13,21,2019-07-01,0.88,1,0 +9901423,Sunny Room in Brooklyn,34991003,Karen,Brooklyn,East Flatbush,40.64604,-73.92511,Private room,35,3,19,2018-09-22,0.47,3,272 +9901546,cute spacious bk apartment,914972,Diana,Brooklyn,Prospect Heights,40.67946,-73.96494,Entire home/apt,125,2,7,2018-12-09,0.19,1,0 +9901614,Modern sunny Wall St. apartment,6567286,David,Manhattan,Financial District,40.70844,-74.0124,Entire home/apt,160,3,1,2016-01-01,0.02,1,0 +9901706,Cute big one bedroom,1904415,Natalie,Manhattan,Upper West Side,40.77789,-73.97701,Entire home/apt,180,1,0,,,1,0 +9902123,PERFECT 1 BEDROOM NEAR CENTRAL PARK,50904121,Alex,Manhattan,Upper West Side,40.78366,-73.97899,Entire home/apt,179,2,5,2016-06-22,0.12,1,0 +9902263,Upper West Side furnished studio,2350080,Yiwei,Manhattan,Upper West Side,40.8004,-73.96849,Entire home/apt,120,9,0,,,1,0 +9902314,Room in dreamy Greenpoint loft,35407948,Steph,Brooklyn,Greenpoint,40.73739,-73.95568,Private room,70,1,2,2017-01-01,0.05,1,0 +9902343,Cozy Williamsburg,5325431,Bil,Brooklyn,Williamsburg,40.71374,-73.96336,Private room,68,2,0,,,1,0 +9902915,BEDROOM IN UWS,50448556,Miguel,Manhattan,Harlem,40.80519,-73.95091,Private room,100,6,0,,,5,0 +9902932,Big! 2.5 BR Heart of West Village,6079156,Doug,Manhattan,West Village,40.73434,-74.00462,Entire home/apt,300,4,104,2019-07-05,2.46,1,58 +9903132,large Tribeca loft,50925964,Patrice,Manhattan,Chinatown,40.71844,-74.00228,Entire home/apt,152,3,16,2019-06-03,0.37,1,0 +9904386,East Village / Alphabety City Apt,10396448,Caroline,Manhattan,East Village,40.72626,-73.97822,Private room,100,1,4,2016-06-27,0.09,1,0 +9904570,HighRise Bryant Park Apt w NYC View,3631872,Rui,Manhattan,Midtown,40.75342,-73.98729,Entire home/apt,200,4,3,2016-03-22,0.07,1,0 +9905142,New York NY Downtown (East Village),15869370,Bernie,Manhattan,East Village,40.73036,-73.98673,Entire home/apt,250,7,20,2019-05-13,0.47,1,13 +9905474,Hamilton Heights Gem,246710,Daniel,Manhattan,Harlem,40.8235,-73.95139,Entire home/apt,200,2,0,,,1,0 +9906178,"Clean, cozy, & renovated apartment",11940121,Madison,Manhattan,Greenwich Village,40.73007,-74.00193,Entire home/apt,200,2,2,2016-04-10,0.05,1,0 +9906415,"Spacious, modern 1BR by Times Sq",50939666,Selin,Manhattan,Hell's Kitchen,40.76109,-73.99417,Entire home/apt,245,2,1,2016-06-26,0.03,1,0 +9906768,Soho/Greenwich Village Bedroom,7655328,Jessica,Manhattan,Greenwich Village,40.72791,-73.99997,Private room,79,1,3,2016-06-27,0.07,3,0 +9907257,"1 Bdr. Lower East Side, NY, 2 beds",50943387,Lincoln,Manhattan,Lower East Side,40.71759,-73.9842,Entire home/apt,175,1,1,2016-01-03,0.02,1,0 +9908067,"LARGE, SUNNY ROOM!",15381858,Craig,Brooklyn,Clinton Hill,40.68336,-73.96122,Private room,45,1,0,,,1,0 +9908400,East Village 1BR with private patio,29505367,Lenka,Manhattan,East Village,40.72738,-73.98076,Entire home/apt,180,3,0,,,1,0 +9910133,1 bed cozy studio @ Gramercy on Lex,17131739,Xenia,Manhattan,Midtown,40.7415,-73.98354,Entire home/apt,139,7,1,2016-01-02,0.02,1,0 +9911887,Bright Loft in Heart of Williamsbug,1999466,Robin,Brooklyn,Williamsburg,40.71432,-73.94615,Entire home/apt,220,2,25,2019-01-01,0.65,1,5 +9915508,Luxury Private Room With A View!,14537404,Danielle,Brooklyn,Fort Greene,40.69283,-73.98061,Private room,70,2,6,2016-10-16,0.14,1,0 +9915643,Lovely Suite (private bath) near Botanical garden,33021531,Felix,Brooklyn,Prospect-Lefferts Gardens,40.66184,-73.96001,Private room,99,1,186,2019-07-04,4.73,1,232 +9916371,Beautiful stylish Brooklyn apartmen,66286,Liat,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94138,Entire home/apt,120,3,3,2016-08-09,0.08,2,0 +9917384,Sunny Brooklyn 1 BR Condo with Balcony,50988308,Ashley,Brooklyn,Gowanus,40.66896,-73.9918,Entire home/apt,178,2,12,2018-12-09,0.56,1,0 +9918524,Queen size room near Columbia Uni.,24919557,Ana Carolina,Manhattan,Morningside Heights,40.80756,-73.96724,Private room,55,21,0,,,1,0 +9918963,Brooklyn Apt with Patio in Heart of Fort Greene,50994782,Clay,Brooklyn,Fort Greene,40.68974,-73.97316,Entire home/apt,124,2,20,2019-06-01,0.49,1,0 +9919042,East Village Two Bedroom,50997070,Panayiota,Manhattan,East Village,40.72964,-73.98095,Entire home/apt,380,1,0,,,1,0 +9919518,Spacious bedroom in shared 3 bdrm,22954228,Cassandra,Brooklyn,Prospect-Lefferts Gardens,40.65433,-73.96117,Private room,55,3,0,,,2,0 +9919728,Nice Queens townhome with parking!,50997424,Mark,Queens,Middle Village,40.71578,-73.87713,Entire home/apt,250,7,5,2019-05-28,0.13,2,363 +9920191,Bright 2 Bdrm Apt in Williamsburg,6896056,Jonathan,Brooklyn,Williamsburg,40.71569,-73.93735,Entire home/apt,180,7,0,,,1,0 +9920363,Convenient Ridgewood Brownstone,50997424,Mark,Queens,Ridgewood,40.70422,-73.8984,Entire home/apt,375,4,5,2019-05-17,0.13,2,364 +9920607,Perfectly Located West Village 2BR,15445809,Andrew,Manhattan,Greenwich Village,40.73383,-73.99899,Entire home/apt,200,2,0,,,1,0 +9920626,Gorgeous 2BD LES Apartment,36054372,Camille,Manhattan,Chinatown,40.71401,-73.99063,Entire home/apt,180,1,0,,,1,0 +9920941,Jewel On Parkside,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.65586,-73.95934,Private room,65,28,11,2019-06-01,0.26,3,320 +9921366,Luxury Apartment w/ Rooftop Patio,51002691,Paul,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94537,Entire home/apt,65,1,0,,,1,0 +9921802,Sunny Cozy Room in Lovely Bed-Stuy,19844147,Emory,Brooklyn,Bedford-Stuyvesant,40.68125,-73.94044,Private room,60,3,8,2019-02-10,0.58,1,296 +9922513,Cozy Room in Hell's Kitchen,49964890,Hanson,Manhattan,Hell's Kitchen,40.76684,-73.98766,Private room,60,1,1,2015-12-26,0.02,1,0 +9922753,Private room in Park Slope,51009239,Lilly,Brooklyn,South Slope,40.66249,-73.97921,Private room,45,1,1,2016-01-05,0.02,1,0 +9923319,Private room in brand new condo,3400687,Allen,Brooklyn,Flatbush,40.65353,-73.95528,Private room,50,1,0,,,1,0 +9923485,Quiet Brooklyn Apartment,5879729,Stephanie,Brooklyn,Williamsburg,40.7138,-73.94581,Entire home/apt,74,1,1,2016-01-03,0.02,2,27 +9923887,Large (150sf) Sun-Drenched Room,17646340,Donald,Brooklyn,Williamsburg,40.70293,-73.94279,Private room,50,7,26,2016-08-04,0.63,2,0 +9924665,Private Room in Greenpoint,26714887,Anthony,Brooklyn,Greenpoint,40.73036,-73.95453,Private room,60,1,3,2016-08-23,0.07,2,0 +9925100,Luxury Apartment on Park ave,29413554,Hoda,Manhattan,Flatiron District,40.73926,-73.98758,Entire home/apt,150,1,1,2015-12-28,0.02,1,0 +9925373,Spacious East Williamsburg Duplex!,10799035,Alana,Brooklyn,Williamsburg,40.70728,-73.94144,Private room,55,1,0,,,1,0 +9925507,The Fig: Brooklyn's TinyHome Cabin in Williamsburg,2955215,Bee,Brooklyn,Williamsburg,40.71255,-73.94881,Entire home/apt,40,1,95,2019-06-22,2.24,1,7 +9925760,300sqft Bedroom in LES Duplex,51021121,Brian,Manhattan,Lower East Side,40.7202,-73.98284,Private room,120,1,1,2015-12-30,0.02,1,0 +9926058,"Spacious, Private Bushwick Room",46887682,Anusheh,Brooklyn,Bushwick,40.7049,-73.92,Private room,35,1,1,2015-12-26,0.02,1,0 +9926377,Amazing 1 Bedroom Greenwich Village,1455309,Scott,Manhattan,Greenwich Village,40.7274,-73.99991,Entire home/apt,250,3,0,,,1,0 +9926520,BK/NYC Apt near Prospect Prk,432318,Taylor,Brooklyn,Kensington,40.644,-73.98091,Entire home/apt,85,7,3,2019-01-02,0.14,1,0 +9926599,Spacious Studio Size One bedroom,16616941,Dave,Manhattan,Murray Hill,40.74807,-73.98091,Private room,125,1,0,,,1,0 +9926792,Clean Spacious Artsy Private Room,6161265,John,Manhattan,Hell's Kitchen,40.75578,-73.99523,Private room,146,2,26,2018-06-07,0.60,1,30 +9926917,Large Private Bedroom,51027744,Hamid,Brooklyn,Crown Heights,40.67621,-73.94913,Private room,99,1,4,2017-04-15,0.12,1,342 +9926940,Lofted Tuck-A-Way Private Bedroom,30283911,Rachel,Brooklyn,Bushwick,40.69924,-73.92392,Private room,69,2,1,2016-01-08,0.02,1,0 +9927400,bedroom in converted warehouse,22414947,Frank,Brooklyn,Williamsburg,40.71147,-73.96745,Private room,70,1,1,2016-01-05,0.02,1,0 +9927666,Clean Spacious Apt in Williamsburg,23599716,Derrick,Brooklyn,Williamsburg,40.71896,-73.9592,Entire home/apt,159,3,6,2019-06-16,0.15,2,0 +9928024,Get cozy on a historic Brooklyn St,27371503,Erin,Brooklyn,Bedford-Stuyvesant,40.68389,-73.92659,Private room,40,1,0,,,1,0 +9928031,Minimalist Room in Hip Williamsburg,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71081,-73.94061,Private room,65,2,15,2019-07-04,5.62,3,155 +9928644,Cool room in a Loft in Greenpoint/Williamsburg,10677584,Angelina,Brooklyn,Greenpoint,40.73271,-73.95751,Private room,45,30,5,2017-02-28,0.14,4,0 +9931841,Large Room Close to Midtown,61042,Marlon,Manhattan,Harlem,40.82198,-73.95418,Private room,42,5,7,2018-10-14,0.16,6,24 +9933667,Large Sunny Studio with a View!,31222791,Emily,Brooklyn,Prospect-Lefferts Gardens,40.65986,-73.96163,Entire home/apt,100,1,15,2017-12-25,0.35,1,0 +9934510,Creative Bed-Stuy Brownstone,2670322,Amina,Brooklyn,Bedford-Stuyvesant,40.6894,-73.9518,Private room,40,2,0,,,1,0 +9934696,Super cozy Chic - Brooklyn - Williamsburg,51006349,Medina,Brooklyn,Williamsburg,40.71269,-73.94979,Entire home/apt,175,2,16,2019-06-08,0.37,1,364 +9935095,"Entire pvt. house for rent ,2 floors + 3 bdrms., 2.5 baths. Newly renovated,avail. From Nov (Phone number hidden by Airbnb) thru April (Phone number hidden by Airbnb) / month",51024536,Nadia,Brooklyn,Sheepshead Bay,40.59195,-73.94639,Private room,500,30,0,,,2,173 +9935509,Bright Bedroom in Lower East Side,12838834,Tania,Manhattan,Lower East Side,40.72143,-73.98434,Private room,90,5,5,2018-01-01,0.12,2,0 +9935737,2 bedrooms avail. In my house,51024536,Nadia,Brooklyn,Crown Heights,40.66565,-73.95006,Entire home/apt,400,30,0,,,2,173 +9935888,Private Apartment w Outside Space,28565101,Robert,Brooklyn,Gowanus,40.67264,-73.98802,Entire home/apt,130,2,45,2019-06-30,1.05,1,58 +9935894,Spacious living area near Q and 6 train! :),19242683,Jennifer,Manhattan,East Harlem,40.78929,-73.94178,Shared room,70,1,4,2016-12-27,0.09,1,0 +9935949,Spacious Room in Great Neighborhood,1504702,Casey,Brooklyn,Clinton Hill,40.69353,-73.96784,Private room,48,1,2,2016-01-02,0.05,1,0 +9935992,Lux Studio Apt in Downtown NYC - Gym included!,30283594,Kara,Manhattan,Financial District,40.70749,-74.01413,Entire home/apt,169,30,2,2017-11-17,0.06,121,364 +9936109,"Comfy apartment, close to train, beautiful street!",970003,Cyntia,Manhattan,Morningside Heights,40.81218,-73.96112,Entire home/apt,200,3,1,2016-06-13,0.03,1,0 +9936805,"Spacious, Bright Studio w/ Balcony",2239025,Kelvin,Brooklyn,South Slope,40.66495,-73.98989,Entire home/apt,100,3,0,,,1,0 +9937307,Gigantic private room in BedStuy,17543924,Jet,Brooklyn,Bedford-Stuyvesant,40.68608,-73.92987,Private room,50,6,8,2017-07-01,0.19,1,0 +9937333,Bright Studio Loft Bed Stuy,1714427,Minka,Brooklyn,Bedford-Stuyvesant,40.67902,-73.94747,Entire home/apt,80,30,7,2016-11-29,0.16,1,0 +9937434,"Upper WestSide, Spacious 1 Bdrm Apt",13169974,Paul,Manhattan,Upper West Side,40.78048,-73.98211,Entire home/apt,200,1,11,2018-05-18,0.26,1,0 +9937547,Upscale 2-Bedroom Upper Eastside Apt,30283594,Kara,Manhattan,Upper East Side,40.76453,-73.95911,Entire home/apt,369,30,0,,,121,297 +9937558,Central Park South Luxury 2 Bedroom 2 Bathroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76625,-73.97886,Entire home/apt,215,29,4,2018-03-15,0.11,31,146 +9937667,Central Park South Luxury 3 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76542,-73.97844,Entire home/apt,249,30,5,2019-02-15,0.12,31,125 +9938066,Madison Avenue Studio Suite (4),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74892,-73.9828,Entire home/apt,110,30,7,2018-12-15,0.17,31,179 +9938208,Madison Avenue Studio Suite (3),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74909,-73.98253,Entire home/apt,110,30,1,2016-02-15,0.02,31,145 +9938594,Sublet in Bushwick 1 month,45928403,Iris,Brooklyn,Bushwick,40.69525,-73.90848,Private room,30,1,0,,,1,0 +9938746,Spacious Room in Williamsburg,1968682,Jay,Brooklyn,Williamsburg,40.70926,-73.95037,Private room,50,2,0,,,1,0 +9939029,"Bright and Cozy Studio, Park Slope!",5417308,Tamara,Brooklyn,South Slope,40.66557,-73.97896,Entire home/apt,86,30,1,2016-02-21,0.02,1,0 +9940253,COZY&BIG ROOM FOR YOU:),51087754,卷妮,Manhattan,Roosevelt Island,40.76046,-73.95125,Private room,79,2,3,2016-05-29,0.07,1,0 +9940337,Top floor of Brooklyn townhouse - South Slope,14314420,Josh,Brooklyn,South Slope,40.66086,-73.98421,Entire home/apt,150,2,21,2019-04-21,0.82,1,11 +9940966,Best of Both Worlds Chelsea Studio,51088203,John,Manhattan,Chelsea,40.74676,-73.99562,Entire home/apt,199,4,52,2017-07-17,1.25,1,1 +9941890,Artsy 2-bdrm apartment Sleeps 6. 1 min from Subway,793833,Jason,Brooklyn,Bedford-Stuyvesant,40.6793,-73.91968,Entire home/apt,85,2,133,2019-06-19,3.25,1,34 +9943111,Large Manhattan Private Room,51099309,Nathan And Brock,Manhattan,Inwood,40.86615,-73.92332,Private room,50,1,0,,,1,0 +9943258,Cozy studio in Upper West Side,20765208,Martina,Manhattan,Upper West Side,40.78148,-73.97869,Entire home/apt,140,4,0,,,1,0 +9943427,Cozy Studio 15 minutes to Manhattan,26444500,Hana,Queens,Sunnyside,40.74024,-73.92428,Private room,59,1,0,,,1,0 +9943776,Walk to the American Museum of Natural History,37441611,Jamie,Manhattan,Upper West Side,40.78469,-73.9738,Entire home/apt,330,2,119,2019-06-19,2.78,1,258 +9943876,"Bright, sunny, cozy, convenient Williamsburg 1-BR",19758408,Nicholas,Brooklyn,Williamsburg,40.71817,-73.95635,Entire home/apt,175,2,3,2016-07-05,0.08,1,0 +9944013,Large bedroom in chinatown,50615055,Daniel,Manhattan,Chinatown,40.71521,-73.99606,Private room,91,1,1,2016-01-03,0.02,1,0 +9944320,Nice Spacious Room for a Month,19878684,Lakshey,Queens,Ozone Park,40.68247,-73.84368,Shared room,25,10,0,,,1,0 +9944415,Clean and Cozy BedStuy Apt,47060168,Serik,Brooklyn,Bedford-Stuyvesant,40.69345,-73.93304,Entire home/apt,75,7,2,2016-02-27,0.05,1,0 +9944426,Lower Manhattan Luxury,51105827,Dax,Manhattan,Battery Park City,40.71192,-74.01572,Entire home/apt,225,90,1,2016-03-18,0.02,1,362 +9944710,Cozy Room in the heart of Hell’s Kitchen!,51108205,Alyssa,Manhattan,Hell's Kitchen,40.76322,-73.99354,Private room,66,2,0,,,1,0 +9944808,Modern Brooklyn Duplex,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.68818,-73.93826,Private room,40,1,4,2019-04-15,0.12,4,365 +9944860,arty east village,663517,D,Manhattan,Lower East Side,40.71908,-73.98633,Entire home/apt,174,2,142,2019-06-25,3.31,1,198 +9945127,Convenient & Spacious & Feel Good Apartment,14521821,Koen,Brooklyn,Brooklyn Heights,40.69261,-73.99252,Entire home/apt,200,2,2,2016-07-25,0.05,1,0 +9945496,Luxury Upscale Apartment in Midtown,12574877,Leroy,Manhattan,Hell's Kitchen,40.76443,-73.98728,Entire home/apt,150,1,65,2019-06-19,1.56,1,186 +9945515,Sunny and Cozy Private Room by L train,8515724,J,Brooklyn,Williamsburg,40.70896,-73.94129,Private room,102,1,30,2018-08-27,0.70,3,10 +9950923,Bright Sunny Soho /W village loft,51137245,Robert,Manhattan,Greenwich Village,40.72778,-73.99899,Private room,85,2,0,,,1,0 +9952636,Bright and stylish BR in trendy Brooklyn. Yard!,820010,Liubov,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94204,Private room,76,1,25,2019-07-01,0.58,3,141 +9953403,Marc Alfred,2361525,Marc,Brooklyn,Crown Heights,40.67565,-73.91582,Shared room,75,1,2,2019-04-06,0.19,1,318 +9953443,Large 1 BR LES,3598016,Beatriz,Manhattan,Lower East Side,40.71607,-73.98439,Entire home/apt,135,2,0,,,1,0 +9953924,Spacious Kips Bay NYC studio !,1397160,Jessie,Manhattan,Kips Bay,40.74238,-73.97652,Entire home/apt,175,2,1,2016-01-02,0.02,1,0 +9954585,Heart of Williamsburg 1 bedroom,201232,Brittany,Brooklyn,Williamsburg,40.71104,-73.96287,Entire home/apt,100,5,3,2016-05-29,0.07,1,0 +9955143,"Sunny, comfortable LES apartment for two guests",40597585,Audra,Manhattan,Lower East Side,40.71282,-73.98915,Entire home/apt,145,3,70,2019-06-29,1.64,1,230 +9955765,Comfy room in a loft in Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73343,-73.95638,Private room,49,3,3,2018-01-16,0.10,4,244 +9955886,Sunny Peaceful Furnished Room w/Dresser,16568093,Karla,Manhattan,East Harlem,40.79111,-73.94077,Private room,50,3,1,2016-07-19,0.03,1,0 +9956834,Historic Striver's Row Apartment,18999923,Guirlaine,Manhattan,Harlem,40.82011,-73.94434,Entire home/apt,120,3,92,2019-06-20,2.39,1,32 +9956933,Cute Madison Ave Apartment,10338497,Ashley,Manhattan,Upper East Side,40.78614,-73.95541,Private room,50,10,0,,,1,0 +9957205,Beautiful Bedford Bedroom.,3358001,Erica,Brooklyn,Williamsburg,40.71748,-73.95685,Private room,50,6,5,2017-06-10,0.13,1,0 +9957535,1 MASTER BR-FULL BATH,50735735,Sidika,Queens,Richmond Hill,40.70249,-73.83251,Private room,60,2,10,2017-07-01,0.23,1,0 +9958322,"1BD,shared bath&kitchen in lic",31534322,Nia,Queens,Long Island City,40.74767,-73.94468,Private room,55,2,107,2019-06-23,2.47,4,46 +9958442,NYC 2BR ap for HOLIDAYS in the CITY,10558287,Julian,Manhattan,Kips Bay,40.7439,-73.97974,Entire home/apt,199,10,0,,,1,0 +9958558,Lincoln Center Fully Furnished,51171909,Siyi,Manhattan,Upper West Side,40.77481,-73.98144,Private room,90,20,12,2018-08-31,0.28,1,23 +9959328,"Beautiful, bright, serene Astoria 1 bedroom",51176545,Jennifer,Queens,Astoria,40.77168,-73.9222,Entire home/apt,189,1,0,,,1,0 +9959880,great room in sunny cornerapartment,29871124,Pieter,Manhattan,Morningside Heights,40.81508,-73.95935,Private room,49,1,1,2016-04-11,0.03,1,0 +9960135,Large Room in Spacious Apartment,42741722,Tanya,Manhattan,Harlem,40.82042,-73.95256,Private room,65,2,5,2018-04-22,0.14,2,0 +9965305,Beautiful room in Brooklyn,887115,Liis,Brooklyn,Crown Heights,40.67665,-73.95734,Private room,90,1,1,2016-01-02,0.02,1,0 +9966717,"Spacious, Sunny, Holiday in Brklyn!",51216049,Natalie,Brooklyn,Crown Heights,40.67758,-73.93547,Private room,49,1,2,2016-01-02,0.05,1,0 +9967218,"Large, Open, Beautiful Apartment",7461203,Christopher,Brooklyn,Clinton Hill,40.68715,-73.96433,Entire home/apt,75,3,4,2016-09-26,0.09,1,0 +9967360,Private room for one or two,51219881,Michele,Manhattan,Upper East Side,40.77878,-73.95148,Private room,100,1,2,2016-01-01,0.05,1,0 +9968223,Cozy Bedroom in heart of WillyBurg,23599716,Derrick,Brooklyn,Williamsburg,40.71901,-73.9594,Private room,59,3,82,2018-09-02,1.92,2,0 +9968402,"Luxurious, modern, clean studio apt",6172959,Sanjay,Manhattan,Battery Park City,40.70431,-74.0168,Entire home/apt,130,1,0,,,1,0 +9969559,Prime Upper East Side 1Br Apartment,3859737,Yuan,Manhattan,Upper East Side,40.76481,-73.95651,Entire home/apt,225,3,5,2019-06-25,0.53,1,0 +9969565,Child friendly 1 Bedroom,51230222,Hamish,Manhattan,Morningside Heights,40.80541,-73.96576,Entire home/apt,97,1,0,,,1,0 +9969773,Airy Brooklyn Townhouse,39695769,Avra,Brooklyn,South Slope,40.66719,-73.98957,Entire home/apt,250,7,0,,,1,0 +9970462,Large East Village Apartment,28336810,Gabi,Manhattan,East Village,40.72571,-73.98833,Entire home/apt,150,1,3,2016-03-15,0.07,1,0 +9970995,"Private BR in nice 4BR, Brooklyn",24332919,Gregoire,Brooklyn,Williamsburg,40.72003,-73.94147,Private room,63,7,1,2016-01-05,0.02,1,0 +9971730,Beautiful Private Apt Times Square,31068253,Trish,Manhattan,West Village,40.73342,-74.00615,Entire home/apt,200,4,10,2018-09-05,0.25,1,0 +9973134,Location Location!! 1 bed apt,7614268,Ronnie,Manhattan,West Village,40.73299,-74.00444,Entire home/apt,139,7,0,,,1,0 +9973211,"2nd Floor, 2 Family House",51248093,Amy,Queens,Ditmars Steinway,40.77623,-73.91503,Entire home/apt,250,1,0,,,1,0 +9973600,Comfortable studio in Midtown,3778297,Gabriel,Manhattan,Hell's Kitchen,40.76455,-73.98855,Entire home/apt,140,5,2,2017-01-01,0.05,1,0 +9973654,Quintessential New York Apartment,50928025,Tommy,Manhattan,Upper West Side,40.7859,-73.9779,Private room,95,1,1,2016-12-31,0.03,1,0 +9973680,Private Bedroom in Williamsburg!,33876689,Fionn,Brooklyn,Williamsburg,40.70986,-73.95927,Private room,55,7,1,2016-01-26,0.02,1,0 +9973900,Big and sunny room!,11095923,Tobias,Brooklyn,Flatbush,40.64722,-73.95987,Private room,32,10,3,2016-01-02,0.07,3,0 +9975425,Most Colorful Hamilton Heights Home,4844390,Jade,Manhattan,Harlem,40.82502,-73.95186,Entire home/apt,110,5,9,2017-10-23,0.22,1,0 +9975682,QUIET AND COZY ROOM,11069084,Laura,Brooklyn,Flatbush,40.6465,-73.96066,Private room,30,1,0,,,1,0 +9976190,Two Bedroom Apartment,46976876,Carolina,Manhattan,East Village,40.72537,-73.99054,Entire home/apt,250,2,0,,,2,0 +9976264,Spacious/Beautiful Private Room,51262617,Sandra,Brooklyn,Greenpoint,40.72722,-73.95247,Private room,100,2,101,2019-07-01,2.75,1,284 +9976536,"Safe, Convenient, Sunny apartment",4829216,Aria,Brooklyn,Kensington,40.64682,-73.98036,Entire home/apt,115,1,0,,,1,0 +9976820,Spacious UES room for your travels!,6608183,Elena,Manhattan,Upper East Side,40.76276,-73.96009,Private room,90,1,4,2016-05-28,0.09,1,0 +9976986,Charming Getaway in West Village,15523549,Tanny,Manhattan,West Village,40.73491,-74.00578,Entire home/apt,139,2,11,2019-06-02,0.27,1,49 +9977113,"Huge Private Room, great location",8595112,Adrien,Manhattan,Midtown,40.75606,-73.97108,Private room,150,2,2,2016-02-15,0.05,2,0 +9977283,Tribeca launchpad!,929983,Franck,Manhattan,Tribeca,40.71854,-74.00439,Private room,170,5,7,2019-04-29,0.56,1,6 +9977322,Private bedroom in Tribeca,12573771,Guerin,Manhattan,Tribeca,40.71689,-74.00563,Private room,75,1,0,,,1,0 +9978426,"Bright, spacious BR in East Village",5904463,Katherine,Manhattan,East Village,40.72431,-73.98312,Private room,120,1,1,2016-01-02,0.02,4,0 +9978606,"Bright, brick BR in East Village",5904463,Katherine,Manhattan,East Village,40.7237,-73.98223,Private room,80,1,2,2016-01-05,0.05,4,0 +9978664,"Clean, private bedroom in Bushwick",34010790,Saif,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9206,Private room,50,1,0,,,1,0 +9978722,"Private, comfy BR in East Village",5904463,Katherine,Manhattan,East Village,40.72504,-73.98242,Private room,100,1,0,,,4,0 +9979094,Sunny Room Downtown Queens NYC,51278789,Grace,Queens,Corona,40.74071,-73.86498,Private room,36,16,55,2019-05-28,1.43,2,110 +9979270,Clean condo apartment in TS,6837486,Onusa,Manhattan,Theater District,40.75927,-73.98646,Entire home/apt,100,1,0,,,1,0 +9979707,Lincoln Center Luxury Sunny & Modern Br,936114,Marcela,Manhattan,Upper West Side,40.77208,-73.98907,Private room,129,28,22,2019-06-30,0.52,2,261 +9984143,Quiet Riverside Park 1 bdrm w gym,51300628,Peter,Manhattan,Upper West Side,40.7939,-73.9761,Entire home/apt,199,10,0,,,1,0 +9985852,Garden View Bedroom in Brownstone,310458,Emily,Brooklyn,Park Slope,40.66588,-73.97833,Private room,60,14,1,2016-04-01,0.03,2,0 +9987456,Great location next to Times Square,45832664,Monica,Manhattan,Hell's Kitchen,40.76059,-73.99475,Private room,60,1,2,2016-02-08,0.05,1,0 +9987543,Lovely Private Browstone Apt,9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68945,-73.94595,Private room,60,1,2,2016-01-05,0.05,2,0 +9988233,Cozy Two Room Studio Astoria,404692,Romina,Queens,Astoria,40.76248,-73.91279,Entire home/apt,99,5,15,2018-06-01,0.43,1,0 +9988434,"Home in Ditmas Park, Brooklyn!",3694186,R,Brooklyn,Flatbush,40.64295,-73.96137,Entire home/apt,101,1,2,2015-12-30,0.05,1,0 +9989616,"Large, Bright, Astoria Room",10702860,Sophia,Queens,Astoria,40.76498,-73.91765,Private room,55,10,0,,,1,0 +9989842,Cozy 2 BR Apt in Prime Location!,5445371,Negar,Manhattan,Upper West Side,40.78364,-73.97632,Entire home/apt,219,2,1,2016-11-07,0.03,1,0 +9990026,NYC: AMAZING Gramercy Cool Triplex,51327044,Joanne,Manhattan,Gramercy,40.73882,-73.9857,Entire home/apt,150,7,0,,,1,0 +9990200,Artist Escape With Private Terrace,4878363,Jessie,Brooklyn,Bedford-Stuyvesant,40.68624,-73.94349,Private room,25,1,7,2018-08-28,0.19,2,8 +9990448,Luggage/Shower Depot!!!/US Open/LGA/JFK,21216008,Jose,Queens,Jackson Heights,40.75024,-73.87849,Shared room,26,1,15,2019-06-22,0.68,4,365 +9990560,Loft Room in East Williamburg,8013847,Michole,Brooklyn,Williamsburg,40.70852,-73.94387,Private room,90,2,45,2019-06-25,1.15,2,245 +9991265,Iconic NY loft apt in West village,2974643,Zoe,Manhattan,West Village,40.73105,-74.00464,Entire home/apt,500,7,0,,,1,365 +9991319,1 Bedroom Apt near the Empire State,7367006,Juanjo,Manhattan,Midtown,40.74604,-73.98555,Entire home/apt,120,1,0,,,1,0 +9992479,"Spacious room in Manhattan, NYC",51337085,Jan,Manhattan,Harlem,40.83,-73.94299,Private room,59,1,1,2016-01-06,0.02,1,0 +9992525,Huge & Beautiful Bedroom - Manhattan,34874378,Jessica,Manhattan,Harlem,40.82362,-73.95063,Private room,70,1,7,2018-04-04,0.23,2,0 +9992743,Exposed Brick Midtown East Apt,19131159,Patrick,Manhattan,Midtown,40.75199,-73.97193,Private room,100,4,0,,,1,0 +9992903,Williamsburg Large Modern Studio,431884,Morgan,Brooklyn,Williamsburg,40.71532,-73.93951,Entire home/apt,115,4,38,2019-01-02,0.89,1,0 +9994304,New and modern NYC home,47022650,Jillian,Manhattan,East Harlem,40.7933,-73.93424,Entire home/apt,150,1,48,2019-07-01,1.26,3,321 +9994765,Room In Williamsburg LOFT,35082637,Ollya,Brooklyn,Williamsburg,40.71841,-73.96389,Private room,105,5,7,2019-06-20,0.16,2,212 +9995077,Cozy Bedford Garden Bedroom,51348096,Stanley,Brooklyn,Flatbush,40.65134,-73.958,Private room,65,1,0,,,1,0 +9995163,Spacious Private Brownstone Apt | 2 Bedroom,12877954,Brian,Brooklyn,Bedford-Stuyvesant,40.68076,-73.93996,Entire home/apt,113,3,174,2019-07-01,4.02,1,63 +9995513,Private Room Avail in 3BR LES Apt,51349952,Lauren,Manhattan,Lower East Side,40.71858,-73.98613,Private room,70,1,1,2016-01-02,0.02,1,0 +9995719,Sunny St. Mark's Place Oasis,16222762,Kevin,Manhattan,East Village,40.72788,-73.98436,Entire home/apt,199,1,14,2016-08-23,0.33,1,0 +9995725,Huge beautiful place - Williamsburg,2703735,Carlos,Brooklyn,Williamsburg,40.71638,-73.96357,Entire home/apt,125,3,2,2016-04-22,0.05,1,0 +9996144,"Romantic, Pretty Apt with Kitty",9212402,Alden,Brooklyn,Williamsburg,40.70973,-73.95301,Entire home/apt,140,4,12,2017-11-05,0.29,1,0 +9996642,Friendly place with garden,50865592,Christophe,Brooklyn,Park Slope,40.6735,-73.97644,Private room,85,1,133,2019-06-20,3.23,1,230 +9996793,BEDROOM3 FOR RENT 10min from Manh,311286,Helene,Brooklyn,Bedford-Stuyvesant,40.67955,-73.94839,Private room,70,30,1,2018-07-01,0.08,4,249 +9996830,Morningside Heights Apartment,51356178,Andres,Manhattan,Morningside Heights,40.8046,-73.9654,Entire home/apt,89,1,3,2016-07-29,0.07,1,0 +9996946,Private Rm&Bthrm - 10 min Manhattan,19109608,Elle,Queens,Astoria,40.76273,-73.91642,Private room,95,2,55,2019-06-22,1.28,3,244 +9997006,Sunny and cozy Astoria room!,50695071,Noran,Queens,Ditmars Steinway,40.7756,-73.90825,Private room,70,1,0,,,1,0 +9997433,Cozy 1BR apt in East Village/USQ,51358854,Manny,Manhattan,East Village,40.73048,-73.98197,Entire home/apt,154,5,0,,,1,0 +9997449,Entire 2br apartment in the heart of Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73927,-73.99833,Entire home/apt,220,1,8,2016-08-29,0.19,2,0 +9997702,"Spacious, Cozy Bedroom in Bushwick",5123299,Ian,Brooklyn,Bushwick,40.70352,-73.93104,Private room,45,1,4,2018-01-01,0.09,1,0 +9997980,Quiet 2B duplex in Nolita / Soho,8302904,Anthony,Manhattan,Nolita,40.72336,-73.99618,Private room,59,60,6,2016-11-26,0.15,1,0 +9998091,A bedroom in Chinatown,22735666,Simon,Manhattan,Chinatown,40.71346,-73.99592,Private room,95,1,1,2016-01-02,0.02,1,0 +9998154,Spacious Master Bedroom in EV,32993860,Zach,Manhattan,East Village,40.72658,-73.97827,Private room,129,1,0,,,1,0 +9998296,Beautiful Modern Large 1 Bedroom,36865981,Samantha,Brooklyn,Crown Heights,40.67665,-73.95534,Entire home/apt,115,3,1,2017-01-01,0.03,1,0 +9998688,Large Hell's Kitchen Home,51364562,Michael,Manhattan,Hell's Kitchen,40.76019,-73.99299,Private room,105,3,4,2018-05-29,0.09,1,0 +9998898,Sunny Modern Beauty with Deck,9108035,Ashley,Brooklyn,Bedford-Stuyvesant,40.68636,-73.93104,Entire home/apt,93,4,5,2017-07-28,0.12,1,0 +9998930,Upper West Room Near Columbia U,36279810,Lingzi,Manhattan,Upper West Side,40.80085,-73.96468,Private room,40,6,5,2017-02-01,0.12,1,0 +9999220,"BEAUTIFUL, LARGE, BRIGHT 2 Bedroom",51367478,Brandon,Queens,Long Island City,40.76406,-73.9349,Private room,88,5,0,,,1,0 +9999252,Artistic! Sunny! 1BR Brownstone Apt,2880824,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93176,Entire home/apt,85,1,1,2016-01-03,0.02,1,0 +9999351,Cozy two bedroom apartment,51368588,Paula,Manhattan,Upper East Side,40.76438,-73.95871,Entire home/apt,170,3,35,2019-04-25,0.82,2,0 +9999939,1 bd available in 3bd apt in UWS,51371360,Minoo,Manhattan,Upper West Side,40.78347,-73.97748,Private room,75,2,2,2016-11-26,0.05,1,0 +10000070,Spacious Large Private Room By Pr. Park w Aircon,51372003,Ninell,Brooklyn,Flatbush,40.64881,-73.96724,Private room,55,2,5,2017-08-13,0.12,2,213 +10000470,Charming and CLEAN Room!!,51374331,Daniel,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93893,Private room,57,2,175,2019-06-28,4.08,1,38 +10000943,1 Bedroom in UWS Manhattan,6891770,Mido,Manhattan,Upper West Side,40.78239,-73.97581,Entire home/apt,199,2,10,2017-04-18,0.25,1,0 +10001022,One Bedroom Apartment In Astoria,27078779,Emmanuel,Queens,Astoria,40.76047,-73.92288,Entire home/apt,105,1,0,,,1,0 +10002428,The authentic TriBeCa artist loft experience!,5885714,Micheal,Manhattan,Tribeca,40.71742,-74.00396,Entire home/apt,485,3,14,2019-01-01,0.36,1,54 +10008615,Classic NYC loft apt in brownstone,3841035,Christina,Manhattan,Harlem,40.83034,-73.94902,Entire home/apt,125,2,31,2019-06-12,0.72,1,14 +10008874,YOUR HOME FOR THE HOLIDAY,4409832,Chris,Manhattan,Washington Heights,40.85139,-73.93722,Entire home/apt,150,6,0,,,1,0 +10009737,1 BR available in Midtown,4513827,Salman,Manhattan,Murray Hill,40.74622,-73.97913,Private room,95,14,19,2019-05-06,0.52,1,96 +10010012,CORPORATE RENTAL ON HISTORIC BLOCK!,43014167,Mark,Manhattan,Washington Heights,40.83403,-73.93867,Entire home/apt,200,1,1,2016-05-20,0.03,1,0 +10010845,Modern 1 bedroom 5min Cental Park,49903913,Lily,Manhattan,Upper West Side,40.7993,-73.96642,Entire home/apt,90,1,171,2019-06-10,3.98,1,53 +10011009,Charming and bright UWS apartment,8936313,Maurad & Maria,Manhattan,Upper West Side,40.78146,-73.97845,Entire home/apt,120,5,0,,,1,0 +10011086,"Clean, renovated 1 bedroom apt close to 1 train",22257525,Andrea,Manhattan,Harlem,40.82501,-73.95125,Entire home/apt,100,3,1,2016-08-19,0.03,1,0 +10011763,"Beautiful quiet apartment, Bushwick",24190730,Lara,Brooklyn,Bushwick,40.68353,-73.90484,Private room,70,1,21,2016-09-26,0.50,1,0 +10011850,Madison Avenue Studio Suite (2),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74963,-73.98098,Entire home/apt,110,30,5,2018-09-04,0.16,31,157 +10012292,"Entire 2 bedroom in Williamsburg, Brooklyn!",51422606,Kensey,Brooklyn,Williamsburg,40.71237,-73.93929,Entire home/apt,96,2,17,2019-01-02,0.40,1,0 +10012372,Large Sunny Room/ East Williamsburg,51422338,Kelly,Brooklyn,Williamsburg,40.71993,-73.94479,Private room,50,1,0,,,1,0 +10012551,Cute and Sunny 2 BR Wburg Apt,14910665,Rebeka,Brooklyn,Williamsburg,40.71273,-73.95749,Entire home/apt,175,1,3,2016-03-20,0.07,1,0 +10013355,Affordable Room in Trendy LES/Soho,6570788,Natalie,Manhattan,Lower East Side,40.72173,-73.99351,Private room,70,3,1,2016-01-19,0.02,1,0 +10013750,Beautiful Garden Rooms In Lower East Side,20222376,Olya,Manhattan,Lower East Side,40.71814,-73.99166,Private room,75,10,17,2019-06-19,0.46,1,128 +10014783,Super cozy room,51430742,Jan,Bronx,Morris Heights,40.85292,-73.91683,Private room,51,2,36,2019-05-08,0.96,1,364 +10015137,"1BR-near to park, subway, cafes!",51433399,Meghan,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.96101,Entire home/apt,80,1,1,2016-01-05,0.02,1,0 +10015195,Madison Avenue 1 Bedroom Suite,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.75093,-73.98096,Entire home/apt,110,30,1,2016-09-30,0.03,31,133 +10015258,Beautiful sunny bedroom Upper West,5041830,Edna,Manhattan,Upper West Side,40.80137,-73.9615,Private room,80,3,1,2016-07-06,0.03,1,0 +10015340,Bedroom in Williamsburg Available!,51434460,DJ Timothy,Brooklyn,Williamsburg,40.70998,-73.95956,Private room,60,1,0,,,1,0 +10016124,Madison Avenue 3 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74908,-73.98095,Entire home/apt,170,30,1,2016-08-13,0.03,31,142 +10016343,Grand Madison Avenue Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.75065,-73.98204,Entire home/apt,155,29,0,,,31,327 +10016353,Cozy Orchard St. Bedroom in the Lower East Side,16664377,D,Manhattan,Lower East Side,40.71835,-73.99138,Private room,65,1,178,2019-07-04,4.16,3,79 +10016503,Madison Avenue 3 Room Loft,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74906,-73.98276,Entire home/apt,165,29,3,2017-03-01,0.09,31,134 +10016601,Murray Hill 1 Bedroom Apartment (62),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74711,-73.97694,Entire home/apt,115,30,5,2019-03-17,0.14,31,179 +10016832,Murray Hill 2 Bedroom Apartment (63),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74537,-73.97652,Entire home/apt,150,30,1,2018-05-19,0.07,31,125 +10017050,"Nice and Quiet, lots of trees.",45483124,Maria,Queens,East Elmhurst,40.75836,-73.87631,Private room,700,1,1,2016-01-03,0.02,1,97 +10017087,Classic Murray Hill 1 Bedroom Apartment (64),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74677,-73.97846,Entire home/apt,125,30,4,2017-12-16,0.11,31,111 +10017099,Cozy Room for Rent in Williamsburg!,51439873,Nina,Brooklyn,Williamsburg,40.71557,-73.94004,Private room,75,1,0,,,1,0 +10017170,Murray Hill 2 Bedroom Suite,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74676,-73.97682,Entire home/apt,150,30,3,2019-03-30,0.10,31,107 +10017359,Pre-War Charm with Modern Chic in Hell's Kitchen,36638599,Chelsea,Manhattan,Hell's Kitchen,40.76316,-73.9884,Private room,170,1,112,2017-07-10,2.63,1,0 +10017458,Murray Hill 2 Bedroom Townhouse,50760546,CRNY Monthly Rentals,Manhattan,Kips Bay,40.74495,-73.97627,Entire home/apt,150,30,4,2018-08-04,0.11,31,156 +10017561,Murray Hill 2 Bedroom Classic (84),50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74672,-73.97841,Entire home/apt,150,30,4,2018-11-02,0.12,31,128 +10017871,Sound Bath Sanctuary II Manhattan,7217937,Joule,Manhattan,Inwood,40.8686,-73.92594,Private room,45,2,6,2019-06-17,0.50,2,64 +10017920,Cozy East Village Apartment,13507716,Regina,Manhattan,East Village,40.72324,-73.98195,Entire home/apt,55,1,0,,,1,0 +10018549,Private room in gorgeous 2 floor Williamsburg apt,1909320,Peter,Brooklyn,Williamsburg,40.7167,-73.96327,Private room,89,1,96,2019-06-23,2.24,3,237 +10018550,Open Room in Luxury Apartment,27952234,Brett,Manhattan,Financial District,40.70623,-74.00906,Private room,100,1,0,,,1,0 +10018963,Budget room in Downtown Brooklyn,48487386,Kazuhiro,Brooklyn,Gowanus,40.6824,-73.98824,Private room,35,2,112,2019-06-20,2.70,1,27 +10019023,BROOKLYN 1 BEDROOM,50368837,Jorge,Brooklyn,Crown Heights,40.6781,-73.94584,Entire home/apt,70,3,2,2016-08-08,0.05,2,88 +10019312,Comfy Spacious room/Lower Manhattan - East Side,44216429,Maria,Manhattan,Gramercy,40.73628,-73.98549,Private room,100,4,115,2019-07-07,2.67,1,268 +10019335,Your home in the historic district,48818023,Sarah,Manhattan,Harlem,40.82909,-73.94183,Entire home/apt,78,5,0,,,1,0 +10019508,Glam Hipster Digs,51095356,Tamu,Brooklyn,Bushwick,40.69966,-73.93241,Private room,59,2,41,2018-10-29,0.96,1,301 +10020060,Charming West Village Apartment,51450214,Danny,Manhattan,West Village,40.73004,-74.00381,Entire home/apt,148,1,0,,,1,0 +10020815,Large and light Brooklyn apartment,564585,Mark,Brooklyn,Clinton Hill,40.68731,-73.96446,Entire home/apt,125,6,0,,,1,0 +10021301,Architects' Home in Brooklyn!,12227689,Jen,Brooklyn,Crown Heights,40.67694,-73.95575,Entire home/apt,155,2,24,2018-01-02,0.57,1,0 +10021499,Comfy Private Room in Williamsburg,48446355,Alexandra,Brooklyn,Williamsburg,40.71074,-73.95145,Private room,61,1,1,2016-01-02,0.02,1,0 +10021643,Spacious Room -- Upper West Side,44118283,Guillaume,Manhattan,Upper West Side,40.79546,-73.97497,Private room,100,15,1,2016-02-15,0.02,1,0 +10021680,Experience the Diversity of Queens!,51458776,Frankie,Queens,Jackson Heights,40.75161,-73.88315,Private room,55,2,42,2019-06-19,1.04,1,118 +10021707,Private Room in Bushwick,11275734,Josh,Brooklyn,Bushwick,40.69791,-73.93615,Private room,40,14,1,2016-01-31,0.02,1,0 +10021820,2 BR in Soho/Greenwich Village,7655328,Jessica,Manhattan,Greenwich Village,40.72799,-74.00046,Entire home/apt,196,1,0,,,3,0 +10022144,Modern & Upgraded in Midtown,10770088,Tim,Manhattan,Midtown,40.75221,-73.97157,Entire home/apt,101,2,1,2015-12-28,0.02,1,0 +10022956,Huge room in 4 BR on Riverside,50539477,Brian,Manhattan,Harlem,40.82203,-73.95612,Private room,50,30,77,2019-06-02,3.26,2,190 +10022997,"A clean, spacious studio apartment",4628519,Hana,Manhattan,Upper West Side,40.79072,-73.97252,Entire home/apt,150,3,0,,,1,0 +10023629,"Chic and Spacious 1BD, minutes from Times Sq!",13056751,Eleni,Manhattan,Hell's Kitchen,40.76458,-73.99007,Private room,102,1,49,2019-06-24,1.70,1,134 +10023653,"Sunny, Light room with Loft Bed",7581707,Brianna,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95081,Private room,30,1,0,,,1,0 +10030753,NYC Lower East Side - New Years,51496578,Aline,Manhattan,Lower East Side,40.71504,-73.98072,Entire home/apt,250,1,0,,,1,0 +10030920,Artist Studio in Central Manhattan!,38204730,Kathy,Manhattan,Gramercy,40.73652,-73.98458,Private room,115,4,0,,,3,249 +10031336,GREAT location LARGE 1BR $129 night,21801127,Carlos,Manhattan,Upper East Side,40.77668,-73.94819,Entire home/apt,129,3,0,,,1,0 +10031436,Spacious Sunny room in East Village,51499758,Sabra,Manhattan,Lower East Side,40.71686,-73.98346,Private room,90,4,0,,,1,0 +10031678,Nice 1 Bedroom Apartment China town,46540057,Fabrizio,Manhattan,Chinatown,40.71474,-73.99778,Entire home/apt,120,5,15,2017-12-18,0.61,1,0 +10031902,Great studio near TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76262,-73.99283,Entire home/apt,150,30,3,2019-05-24,0.08,31,210 +10031933,Beautiful Updated Midtown Apartment,8343891,Shauna,Manhattan,Upper East Side,40.76501,-73.95862,Entire home/apt,146,1,0,,,1,0 +10032285,Charming bedroom in Manhattan,20884486,Luis,Manhattan,Morningside Heights,40.80483,-73.96486,Private room,70,1,0,,,1,0 +10032487,Soho Old School,51504193,Hans,Manhattan,SoHo,40.72515,-73.99919,Entire home/apt,115,28,12,2018-12-21,0.31,1,77 +10032495,Private Room on Upper West Side,2830735,Joshua,Manhattan,Upper West Side,40.80195,-73.96714,Private room,49,5,1,2015-12-22,0.02,1,0 +10032560,Cozy and Chic UES Studio,39945901,Mercy,Manhattan,East Harlem,40.78866,-73.94941,Entire home/apt,200,3,28,2019-06-03,0.65,1,3 +10033868,NICE 2 BED APT NEAR TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76244,-73.99295,Entire home/apt,166,30,7,2019-01-03,0.18,31,195 +10034090,Cute Bedroom in Very Cute BK Apt!,7763913,Dawn,Brooklyn,Williamsburg,40.71049,-73.94515,Private room,40,1,1,2016-01-07,0.02,1,0 +10034187,Unique Studio Loft in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72913,-73.9436,Private room,137,3,39,2019-05-06,0.91,13,53 +10034364,Spacious and sunny bedroom,1653404,Erica,Brooklyn,Williamsburg,40.70872,-73.95689,Private room,58,5,1,2015-12-18,0.02,1,0 +10034493,My Artsy Haven in Bed Stuy,10970798,Atiya,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95599,Private room,55,14,0,,,1,0 +10034709,"Fun, Cute, Sunny Bushwick Room",51513260,Morgan,Brooklyn,Bushwick,40.70136,-73.91857,Private room,35,6,1,2016-02-25,0.02,1,0 +10034817,Spacious 1 bed near TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76343,-73.99381,Entire home/apt,150,30,1,2016-06-14,0.03,31,339 +10035023,Upper East Side 1 Bedroom,28640162,Jordan,Manhattan,Upper East Side,40.78352,-73.94973,Entire home/apt,150,3,0,,,1,0 +10035098,Upper West ... Museums/Parks/Subway,51513795,Doug,Manhattan,Upper West Side,40.77845,-73.97985,Entire home/apt,175,2,1,2016-01-03,0.02,1,0 +10035471,Deluxe Loft Suite in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72762,-73.94443,Entire home/apt,189,3,26,2019-06-24,0.61,13,69 +10035706,Sunny room in a great new Apt,51517754,Max,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93705,Private room,42,10,0,,,1,0 +10035920,Best of Brooklyn,51502398,Sasha,Brooklyn,Crown Heights,40.6698,-73.94992,Entire home/apt,175,3,77,2019-06-17,1.80,1,54 +10035950,Room With a View!,50520440,Jessica,Manhattan,Battery Park City,40.71777,-74.01493,Private room,150,4,1,2016-01-03,0.02,1,0 +10036313,Modern Luxury Chelsea Apt w/ Large Sunny Patios,35890377,Carrie,Manhattan,Chelsea,40.74135,-73.99507,Entire home/apt,425,2,59,2019-06-27,1.38,1,39 +10036394,"Huge, Sunny Loft for Rent",583269,Kenzo,Brooklyn,Bedford-Stuyvesant,40.69998,-73.9413,Private room,110,1,0,,,1,0 +10036516,Small but warm and cozy. (^_^) Female Only Please.,51520983,Jeannette,Manhattan,East Harlem,40.80681,-73.93956,Private room,75,3,4,2016-10-19,0.09,1,0 +10037605,Spacious 1BD In Chelsea,24225915,Jason,Manhattan,Chelsea,40.74845,-73.99635,Entire home/apt,170,4,1,2016-02-24,0.02,1,0 +10037631,1bdroom Kid Friendly Quiet Street,51525788,Whitney,Manhattan,Inwood,40.86569,-73.92865,Entire home/apt,120,1,1,2016-01-02,0.02,1,0 +10037800,Room in beautiful plant filled Greenpoint loft,1558222,Nikki,Brooklyn,Greenpoint,40.72809,-73.94365,Private room,65,3,2,2016-09-18,0.06,3,0 +10038170,Brooklyn Deluxe Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72917,-73.94354,Entire home/apt,350,3,1,2017-09-14,0.05,13,74 +10038410,Beautiful Loft Suite in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72717,-73.94479,Entire home/apt,199,3,26,2019-06-25,0.61,13,74 +10038633,Room for Xmas and New Years in NYC,19049309,Willem,Manhattan,East Harlem,40.79586,-73.94332,Private room,67,1,1,2016-01-02,0.02,1,0 +10038693,Studio Loft in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72734,-73.94451,Entire home/apt,189,3,7,2019-05-07,0.21,13,74 +10038695,Master Bedroom & Private Office,16260491,Gregory,Manhattan,East Village,40.72627,-73.9802,Private room,80,5,0,,,1,0 +10038776,Newly renovated room/ 10min LGA #1,51531044,Angela,Queens,Jackson Heights,40.75164,-73.87644,Private room,50,1,84,2019-06-16,2.10,4,302 +10038823,"Apartment for 5, Midtown Manhattan",48681257,Celia,Manhattan,Midtown,40.75828,-73.96286,Entire home/apt,220,1,116,2019-06-23,2.89,1,264 +10039238,1 room in 3BR/1B in East Village,41316877,R David,Manhattan,East Village,40.72434,-73.98447,Private room,79,3,0,,,1,0 +10039250,"JFK,LGA,Manhattan,TimeSq,privateBathroom,Queens",36577517,Nan,Queens,Elmhurst,40.74556,-73.88118,Private room,49,2,1,2016-03-11,0.02,2,83 +10039579,Harlem Hearth - Loft Living on a Grand Scale,7727013,Toby Steven,Manhattan,Harlem,40.81184,-73.94287,Entire home/apt,226,3,61,2019-06-22,2.57,2,276 +10039992,Loft @ Heart of Williamsburg,19912320,Charles,Brooklyn,Williamsburg,40.71686,-73.95428,Private room,79,5,3,2017-01-02,0.07,2,0 +10040649,Sunny and spacious corner apartment,12435489,Dymphna,Brooklyn,Greenpoint,40.72088,-73.95375,Private room,80,5,1,2015-12-30,0.02,1,0 +10040717,Great walk-in studio Apartment in a private house,9059810,Vlad,Manhattan,Civic Center,40.71316,-74.00498,Private room,169,4,0,,,3,89 +10041002,1st Floor Beautiful Brownstone Apt,7503132,Whitney,Brooklyn,Clinton Hill,40.68399,-73.96192,Entire home/apt,100,5,7,2016-11-27,0.16,1,0 +10041376,Studio Apartment in Midtown NYC,51542781,Jessica,Manhattan,Hell's Kitchen,40.7666,-73.99256,Entire home/apt,98,7,6,2018-11-26,0.14,1,0 +10041531,A Large Room in a Huge Apartment,50007401,Jessica,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94833,Private room,45,2,0,,,1,0 +10041589,Large Bright Room with Private Bathroom,49535506,Nic,Queens,Sunnyside,40.73839,-73.93,Private room,70,4,4,2018-08-19,0.10,1,25 +10043064,"Full Apartment NYE! 2BR, fits 6!",51552511,Shelby,Manhattan,Harlem,40.82364,-73.94556,Entire home/apt,150,2,2,2016-01-03,0.05,1,0 +10043483,Cozy Private Entrance & Bathroom,10737943,David,Manhattan,Upper East Side,40.77292,-73.95015,Private room,125,1,210,2019-06-15,4.89,10,81 +10043942,Near to Manhattan and large 2BD Apt,51556615,Edmund,Queens,Sunnyside,40.74444,-73.91467,Entire home/apt,155,4,66,2019-06-28,1.54,1,307 +10046083,Great Studio - Awesome Location,1523549,Moti,Manhattan,Kips Bay,40.74396,-73.9758,Entire home/apt,179,29,4,2016-11-09,0.11,1,0 +10049335,BEAUTIFUL ROOM IN HEART OF BROOKLYN,5065719,Melissa,Brooklyn,Greenpoint,40.73226,-73.95285,Private room,60,1,2,2016-01-01,0.05,1,0 +10049711,Cozy Room in 2BDR Apt UES,2784447,James,Manhattan,Upper East Side,40.76206,-73.95705,Private room,90,8,0,,,1,0 +10049766,1 Bedroom in a 3 bedrooms loft,35083661,Julien,Brooklyn,Williamsburg,40.71741,-73.95978,Private room,65,1,0,,,1,0 +10050536,Studio Loft in Greenpoint,47554473,Henry Norman,Brooklyn,Greenpoint,40.72766,-73.94393,Entire home/apt,179,3,36,2019-06-14,0.84,13,53 +10050847,"Cozy, Bright room in Williamsburg",51584665,Andrew,Brooklyn,Williamsburg,40.71229,-73.96245,Private room,50,10,3,2016-07-15,0.07,1,0 +10052289,"",49522403,Vanessa,Brooklyn,Brownsville,40.66409,-73.92314,Private room,50,3,3,2016-08-18,0.07,1,362 +10052587,Beautiful Loft Suite in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72829,-73.94356,Private room,189,3,34,2019-06-15,0.79,13,74 +10052674,Garden level apt w Bocci court/grill in backyard,5769728,Adam,Brooklyn,Bedford-Stuyvesant,40.69455,-73.95144,Entire home/apt,67,2,12,2019-01-05,0.59,1,332 +10053943,Historic Designer 2 Bed. Apartment,2697686,Glenn H.,Manhattan,Harlem,40.82915,-73.94034,Entire home/apt,99,999,2,2018-01-04,0.07,1,42 +10053993,Cozy 1 BR in heart of West Village,25821059,Jenna,Manhattan,West Village,40.73482,-74.00834,Entire home/apt,140,2,6,2016-07-25,0.15,1,0 +10054040,Cozy and Warm Astoria Apartment,13203690,Zach,Queens,Astoria,40.76805,-73.90906,Entire home/apt,90,2,0,,,1,0 +10054480,"Lovely, cozy private room available",16179625,Kt,Manhattan,Harlem,40.82624,-73.9434,Private room,55,3,58,2019-06-23,1.76,1,0 +10054708,Stunning and Cozy Room in Brooklyn,707992,Andrea,Brooklyn,Sunset Park,40.64041,-74.01497,Private room,80,20,0,,,1,0 +10054892,Our casa is your casa!,7271269,Rick,Brooklyn,Williamsburg,40.71575,-73.94224,Entire home/apt,170,1,1,2016-01-02,0.02,1,0 +10054894,Spacios Room in Gorgeous Apt!,280883,Graciela,Manhattan,Harlem,40.82353,-73.93824,Private room,90,1,0,,,1,0 +10055149,Sunny & Quiet Studio w/ private patio - E Village!,18198859,Angel,Manhattan,East Village,40.72655,-73.97826,Entire home/apt,175,1,59,2019-06-30,1.44,1,307 +10055548,Modern 1-Bedroom Downtown,14852867,Jason,Manhattan,Financial District,40.70938,-74.01371,Entire home/apt,117,2,0,,,1,0 +10055872,Room in loft apartment above bakery,51605949,Miriam,Brooklyn,Clinton Hill,40.69459,-73.96408,Private room,43,1,0,,,1,0 +10055925,Greenpoint Studio Loft w/ Terrace,47554473,Henry Norman,Brooklyn,Greenpoint,40.7287,-73.94504,Private room,189,3,21,2018-05-14,0.49,13,0 +10056245,Spacious room in Brooklyn,25866647,Nick,Brooklyn,Midwood,40.62259,-73.96107,Private room,35,3,175,2019-06-14,4.10,1,49 +10056541,"Bright Studio - Park Slope, BK",10807649,Yehua,Brooklyn,South Slope,40.66218,-73.98385,Entire home/apt,61,2,20,2019-05-30,0.57,1,0 +10057826,Deluxe Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72778,-73.94472,Entire home/apt,205,3,5,2018-02-18,0.12,13,72 +10057854,Room in LIC - females only please,51614806,Justyna,Queens,Long Island City,40.74967,-73.9396,Private room,35,14,1,2016-01-16,0.02,1,0 +10058942,"Columbia Univer, female/couple only",12245536,Rong,Manhattan,Harlem,40.82083,-73.95795,Private room,39,2,3,2016-07-21,0.07,2,0 +10058944,Private Master Bedroom & Full Bath,9050420,Anton,Manhattan,East Village,40.7278,-73.98041,Private room,190,1,0,,,1,0 +10059344,Quaint 2 Bedroom Apt in LES (6 ppl),11068351,Bobby,Manhattan,Little Italy,40.71924,-73.99719,Entire home/apt,249,1,0,,,1,0 +10059699,Amazing Flatiron Entire Studio Apt,51623576,Charlie,Manhattan,Chelsea,40.73719,-73.99336,Entire home/apt,159,3,1,2017-01-02,0.03,1,0 +10065056,Lovely West Village Studio,36905682,Adrian,Manhattan,West Village,40.73454,-74.00141,Entire home/apt,125,1,0,,,1,0 +10065831,Private Bedroom in Bedstuy!,51652888,Sesenu,Brooklyn,Bedford-Stuyvesant,40.68678,-73.95572,Private room,37,7,2,2016-07-26,0.05,1,0 +10066875,NoHo 2 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,NoHo,40.72888,-73.99199,Entire home/apt,299,30,1,2017-04-03,0.04,31,160 +10067083,Entire apt in the heart of uber hip & cool Nolita,22217087,Gabriela,Manhattan,Nolita,40.72321,-73.99532,Entire home/apt,175,3,12,2019-06-02,0.28,1,0 +10067199,Private room in Upper West Side Apt,47472192,Johanna,Manhattan,Upper West Side,40.79954,-73.9626,Private room,42,12,0,,,1,0 +10067809,One bedroom apartment in Greenpoint,9294273,Ayten,Brooklyn,Greenpoint,40.72712,-73.95146,Entire home/apt,110,4,1,2016-02-15,0.02,1,0 +10067924,Cozy & Lux Studio in Nolita,36866768,Lisa,Manhattan,Nolita,40.72238,-73.99631,Entire home/apt,179,7,0,,,1,0 +10067936,1 Bedroom in Crown Heights,51662642,Alex,Brooklyn,Crown Heights,40.67023,-73.95257,Entire home/apt,90,1,0,,,1,0 +10068269,"Large Rm In Williamsburg, Brooklyn",51664119,Toyosi,Brooklyn,Williamsburg,40.71274,-73.94513,Private room,130,2,1,2016-01-03,0.02,1,0 +10068386,An open and airy charming studio,49905246,Ying Ying,Brooklyn,Park Slope,40.67163,-73.98584,Entire home/apt,140,2,89,2019-06-29,2.11,1,9 +10068693,Cozy Mozy apt in Cobble Hill,16591072,Marianna,Brooklyn,Boerum Hill,40.68869,-73.98899,Entire home/apt,168,1,1,2016-01-05,0.02,1,0 +10069174,Spacious Family Apartment near Prospect Park,2436599,Rachel,Brooklyn,Flatbush,40.65132,-73.95691,Entire home/apt,128,3,2,2017-04-30,0.07,1,0 +10069376,Spacious room in Beautiful Bedstuy,13358864,Matthew,Brooklyn,Bedford-Stuyvesant,40.6943,-73.9481,Private room,64,3,6,2016-06-06,0.14,2,0 +10069586,Cozy room in a dynamic Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.67154,-73.94981,Private room,35,14,1,2017-01-19,0.03,2,0 +10069601,Cozy bedroom in beautiful apartment,13358864,Matthew,Brooklyn,Bedford-Stuyvesant,40.69453,-73.94725,Private room,60,3,0,,,2,0 +10069720,Clean Modern Apartment,1522922,Timothy,Brooklyn,Crown Heights,40.67617,-73.95536,Entire home/apt,200,2,0,,,1,0 +10069964,Bright & Modern Williamsburg 1BR,12616662,Anthony,Brooklyn,Williamsburg,40.71742,-73.95511,Entire home/apt,199,3,3,2016-05-07,0.08,1,0 +10070145,Massive apt in prime Williamsburg,8820573,Ali,Brooklyn,Williamsburg,40.714,-73.96395,Entire home/apt,175,3,105,2019-06-19,2.45,1,104 +10070235,"位于曼哈顿纽约上城,高级住宅区",51525183,Sophia,Manhattan,Harlem,40.81566,-73.94293,Private room,95,180,0,,,1,358 +10070294,Beautiful Brooklyn Apartment!,27915373,Lukre,Brooklyn,Bedford-Stuyvesant,40.68273,-73.94786,Private room,55,1,18,2018-12-29,0.49,1,65 +10070350,Beautiful Studio Apartment NYC,39765154,Dave,Manhattan,Upper West Side,40.7986,-73.96168,Entire home/apt,125,9,0,,,1,0 +10070663,Bedroom in Upper Westside Apartment,51674579,Brittany,Manhattan,Upper West Side,40.79616,-73.97506,Private room,45,1,0,,,1,0 +10070693,Convenient Upper East Studio Apt,51651427,Sayaka,Manhattan,Upper East Side,40.7612,-73.96254,Entire home/apt,95,16,8,2018-01-03,0.20,1,0 +10071188,"Beautiful, bright and spacious home",15065559,Daniella,Brooklyn,Crown Heights,40.67105,-73.94324,Entire home/apt,153,4,105,2019-06-10,2.45,1,9 +10071225,Sweet and affordable nook in bk,40532707,Isidora,Brooklyn,Bedford-Stuyvesant,40.68729,-73.95556,Private room,39,1,1,2016-01-06,0.02,1,0 +10071232,Riverside Drive Harlem Apartment,6050369,Dave,Manhattan,Harlem,40.82697,-73.95236,Entire home/apt,200,1,0,,,1,0 +10071464,Christopher Street: Heart of The West Village,51678353,Robert,Manhattan,West Village,40.73326,-74.00577,Private room,85,2,2,2016-01-01,0.05,1,0 +10072022,Spacious 1 bedroom in the heart of Soho,31281230,Brian,Manhattan,SoHo,40.72697,-74.00098,Entire home/apt,315,2,29,2019-06-25,1.31,1,177 +10072678,OPEN LOFT WITH PRIVATE BACKYARD,50687547,Michael,Brooklyn,Bedford-Stuyvesant,40.68843,-73.94537,Entire home/apt,89,5,10,2017-08-29,0.23,1,64 +10072750,Beautiful apt for the winter,51684417,Eduardo,Manhattan,Upper West Side,40.80082,-73.96059,Entire home/apt,350,7,0,,,2,0 +10073940,Welcome to NYC! Modern Luxury 2 BR-5 min from JFK,51688993,Taran & Najla,Queens,Jamaica,40.6896,-73.80446,Entire home/apt,179,1,103,2019-07-02,2.67,2,324 +10073995,Peaceful Bushwick Pad.,1737876,Gray & Alara,Brooklyn,Bushwick,40.68984,-73.91507,Private room,37,1,0,,,1,0 +10074308,Luxury Apt in Downtown Brooklyn,51690846,Devaki,Brooklyn,Downtown Brooklyn,40.6965,-73.98377,Private room,75,5,0,,,1,0 +10076836,Convenient Upper West Apt- Sleeps 3,28504839,Yina,Manhattan,Upper West Side,40.7863,-73.97658,Entire home/apt,150,3,5,2017-09-20,0.13,1,0 +10078736,Newly Renovated Carriage House,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.68886,-73.93084,Entire home/apt,225,2,68,2019-06-04,1.69,3,273 +10080979,One Bedroom - Gramery Park,51728257,Joseph,Manhattan,Gramercy,40.73462,-73.98227,Entire home/apt,140,4,1,2015-12-21,0.02,1,0 +10082057,"Victorian Home, Welcoming Comfort",51734800,Laura,Brooklyn,Flatbush,40.63066,-73.96496,Private room,115,2,5,2018-03-31,0.13,2,358 +10083580,Cozy apartment in Brooklyn,22068394,Julian,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94765,Private room,58,2,2,2016-06-13,0.05,1,0 +10083682,Beautiful Bedford apartment,51742426,Miri,Brooklyn,Williamsburg,40.71193,-73.96383,Entire home/apt,190,4,63,2019-06-28,1.58,1,257 +10083881,Well Equipped One-Bedroom Apartment,51743699,Oliver,Manhattan,Morningside Heights,40.80986,-73.95945,Entire home/apt,100,1,1,2015-12-23,0.02,1,0 +10083973,Williamsburg Getaway,3870120,Sawyer,Brooklyn,Williamsburg,40.71139,-73.96002,Private room,119,2,82,2019-06-03,2.06,1,0 +10084380,Charming Williamsburg apartment,5882165,Pavel,Brooklyn,Williamsburg,40.71171,-73.96256,Entire home/apt,139,5,0,,,1,0 +10085449,Clean room in a nice apartment,51749922,Marianne,Manhattan,Kips Bay,40.73956,-73.98163,Private room,140,1,0,,,1,0 +10085478,Deluxe Brooklyn Loft,47554473,Henry Norman,Brooklyn,Greenpoint,40.72845,-73.94477,Entire home/apt,129,3,16,2019-06-27,0.37,13,71 +10086029,West Village Duplex with Backyard!,2072706,Umang,Manhattan,West Village,40.73191,-74.00493,Entire home/apt,800,3,0,,,1,0 +10086307,Private Suite - room with bathroom,13792543,Gregory,Manhattan,Harlem,40.80729,-73.95238,Private room,110,3,76,2019-06-26,1.78,3,281 +10087575,Chic NYC Brownstone,2144034,Brandon,Manhattan,Harlem,40.82753,-73.94862,Entire home/apt,90,1,2,2016-05-02,0.05,1,0 +10087874,Large room with private bath in Brooklyn home,28840058,Karen,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9189,Private room,61,1,4,2018-01-02,0.10,1,0 +10088464,Cozy East-Village Room + Rooftop :),51764491,Rachel,Manhattan,East Village,40.73076,-73.98374,Private room,65,2,4,2016-02-01,0.09,1,0 +10088612,"Full size bed, 2 guests, Manhattan Upper Westside",216227,Victor,Manhattan,Harlem,40.82069,-73.95549,Private room,60,1,229,2019-07-05,6.25,3,310 +10088636,"2 Twin beds, 2 guests - Manhattan, Upper West Side",216227,Victor,Manhattan,Harlem,40.82232,-73.95696,Private room,60,1,219,2019-06-23,5.95,3,280 +10089333,Amazing loft on the Uper East Side,16684382,Fred & Liz,Manhattan,Upper East Side,40.76266,-73.95989,Entire home/apt,150,2,25,2019-06-23,0.66,1,0 +10089727,"St Regis Hotel, NYC Luxury Hotel Rooms by Owners",51772392,Mark,Manhattan,Midtown,40.76039,-73.9736,Private room,587,1,3,2018-10-03,0.16,1,365 +10090735,Studio Apt at the Heart of Chelsea,6772290,Andrew,Manhattan,Chelsea,40.74156,-74.00037,Entire home/apt,175,3,136,2019-06-28,3.18,1,288 +10091829,Cozy Apartment Close to Everything!,42332704,Connie,Brooklyn,Crown Heights,40.67176,-73.95937,Private room,60,1,0,,,1,0 +10096352,West Village Dream *Newly Renovated,12485770,Raanan,Manhattan,West Village,40.7313,-74.00154,Entire home/apt,166,30,5,2018-12-31,0.13,9,332 +10096515,Prime East Village *Spacious,12485770,Raanan,Manhattan,East Village,40.72962,-73.98078,Entire home/apt,120,30,4,2019-06-08,0.11,9,338 +10096707,Bright & Spacious Apartment. A Williamsburg Gem.,51813565,Yoav,Brooklyn,Greenpoint,40.72034,-73.95478,Entire home/apt,135,2,18,2019-06-30,0.42,1,0 +10096773,Easy 1 Bedroom in Chelsea,34607505,Scott,Manhattan,Chelsea,40.74577,-74.00074,Entire home/apt,145,2,1,2016-01-03,0.02,1,0 +10096788,The Red Door,51813748,Genny & Gina,Brooklyn,Williamsburg,40.71936,-73.94225,Entire home/apt,185,4,77,2019-06-20,1.80,1,25 +10098890,Ideal location in Williamsburg,1822420,Mark,Brooklyn,Williamsburg,40.71119,-73.96515,Entire home/apt,120,1,0,,,1,0 +10098921,restfully space,50678424,Don,Brooklyn,Bedford-Stuyvesant,40.68666,-73.94739,Private room,206,1,1,2017-09-17,0.05,2,365 +10099080,Private large room in Bushwick,7375144,Polly,Brooklyn,Bushwick,40.70348,-73.91477,Private room,65,1,0,,,1,0 +10099517,Master room in a luxury apartment,16869971,Han,Manhattan,Roosevelt Island,40.76947,-73.94303,Private room,80,1,1,2016-01-05,0.02,2,0 +10099859,"1 Bed 1 Bath in Jackson Heights, NY",51829088,Joshua,Queens,Jackson Heights,40.74856,-73.88906,Entire home/apt,139,1,0,,,1,0 +10100121,Modern One Bedroom in Meatpacking,51830532,Alex,Manhattan,Chelsea,40.74201,-74.00325,Entire home/apt,239,4,55,2019-07-02,1.29,1,161 +10100241,"Airy 4 BR Triplex - Private Yard, Trendy Bed-Stuy",23215098,Erica & David,Brooklyn,Bedford-Stuyvesant,40.68513,-73.95286,Entire home/apt,399,4,39,2019-07-07,0.91,1,29 +10100474,"CLEAN, LARGE AND MODERN LOFT",3582774,Dana,Manhattan,Little Italy,40.71756,-73.99824,Entire home/apt,550,5,0,,,1,0 +10100512,Room in spacious house in Brooklyn!,271073,Besanya,Brooklyn,Midwood,40.62391,-73.96146,Private room,30,1,0,,,1,0 +10100799,Spacious Garden Apartment in Heart of Park Slope,9250639,Amy,Brooklyn,Park Slope,40.67622,-73.97953,Entire home/apt,125,2,7,2019-06-30,0.20,1,0 +10101013,East Village/Noho Garden Apartment,6866192,Omar & Ashley,Manhattan,East Village,40.7271,-73.99092,Entire home/apt,195,2,0,,,1,0 +10101097,Beautiful house in the heart of Williamsburg,5073789,Julia,Brooklyn,Williamsburg,40.7184,-73.95359,Entire home/apt,500,2,111,2019-07-01,2.92,1,88 +10101135,Room Near JFK Twin Beds,47621202,Dona,Queens,Jamaica,40.66939,-73.76975,Private room,47,1,576,2019-06-27,13.40,2,173 +10101148,Cozy private room in Woodside,51680319,Michael,Queens,Sunnyside,40.74181,-73.90783,Private room,69,1,0,,,1,0 +10101358,Heart of the East Village,51835429,Timothy,Manhattan,East Village,40.72597,-73.9838,Private room,90,2,0,,,1,0 +10101765,Large private bedroom on Upper East side,51838759,Lucia,Manhattan,Upper East Side,40.76256,-73.9632,Private room,99,2,122,2019-06-08,2.95,1,77 +10101791,Private Room for Rent,51839283,Ashley,Manhattan,Washington Heights,40.85064,-73.93833,Private room,75,1,1,2016-01-02,0.02,1,0 +10102206,Futon in Brooklyn near subway,33480709,Katherine,Brooklyn,Crown Heights,40.67114,-73.93561,Shared room,35,1,0,,,1,0 +10102792,Great room*City View*Huge roofdeck*,8832880,Ashley,Brooklyn,Greenpoint,40.73321,-73.9561,Private room,55,2,0,,,1,0 +10103745,"Cozy 1-Bd, Bushwick (L/M/J train)",2350144,Roxanne,Brooklyn,Bushwick,40.69611,-73.91891,Entire home/apt,80,31,1,2016-11-03,0.03,1,0 +10104123,East Village Bedroom w/Roof Deck,51850937,Joe,Manhattan,East Village,40.73061,-73.98335,Private room,100,2,51,2019-07-02,1.19,3,4 +10104130,"Bright, Spacious Brooklyn Space w/ Private Bath",51851212,Ugi,Brooklyn,Crown Heights,40.67418,-73.95958,Private room,60,1,4,2018-08-26,0.09,1,0 +10104806,Spacious and cozy room!,11095923,Tobias,Brooklyn,Bushwick,40.69802,-73.91472,Private room,40,1,0,,,3,0 +10105110,Studio next to Washington Sq Park,27341303,Yue,Manhattan,Greenwich Village,40.73009,-73.99965,Entire home/apt,118,5,1,2016-01-02,0.02,1,0 +10105477,Midtown Manhattan,1428501,Michael,Manhattan,Hell's Kitchen,40.76407,-73.98579,Private room,97,6,36,2018-07-05,0.84,2,0 +10105606,"UWS large, Elev./Security 1-Bedroom",51857384,Sam,Manhattan,Upper West Side,40.77836,-73.9822,Entire home/apt,210,2,51,2019-06-09,1.19,1,11 +10106530,Sunny One Bedroom in Crown Heights,8511553,J,Brooklyn,Crown Heights,40.6774,-73.94726,Entire home/apt,55,2,6,2016-06-29,0.14,1,0 +10106768,Peaceful Artist Bedroom—Just 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67762,-73.9159,Private room,62,3,69,2019-01-19,1.70,6,27 +10113787,"Newly renovated, 1.5 bdr SoHo apt",51902072,Ben,Manhattan,SoHo,40.72485,-74.00254,Entire home/apt,185,1,1,2016-01-18,0.02,1,0 +10114830,Studio on the Upper West Side,49871658,Michelle,Manhattan,Upper West Side,40.78778,-73.97498,Entire home/apt,200,3,0,,,1,0 +10115137,NYCHaven2: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65382,-73.93903,Entire home/apt,165,1,216,2019-06-22,5.49,4,194 +10115193,Double bedroom downtown,29923547,Meredith,Manhattan,Lower East Side,40.71886,-73.98881,Private room,125,1,0,,,1,0 +10115542,Chic Studio in Heart of Manhattan!,16682678,Casey,Manhattan,Kips Bay,40.74091,-73.98271,Entire home/apt,102,1,3,2016-03-09,0.07,1,0 +10115781,Cozy bedroom in heart of Bedford,10221694,Zhamal,Brooklyn,Williamsburg,40.71276,-73.963,Private room,80,1,2,2016-01-03,0.05,1,0 +10115792,3 Bedroom Luxury Apartment on 33rd,48784045,Jake,Manhattan,Kips Bay,40.7452,-73.97779,Entire home/apt,449,1,0,,,2,0 +10116081,Apartment in Midtown East of NYC,51913270,Andrew,Manhattan,Midtown,40.75939,-73.96949,Entire home/apt,200,1,0,,,1,0 +10116220,Twin Cabin Two,51913826,The Bowery House,Manhattan,Nolita,40.72354,-73.99333,Private room,84,1,1,2019-03-31,0.30,8,0 +10116351,"Large 1,000 SF UES Apt w/ Balcony",8869875,Christina,Manhattan,Upper East Side,40.76427,-73.962,Entire home/apt,95,1,5,2016-01-28,0.12,1,0 +10116619,"Sunny, spacious room in heart of BK",17794202,Taylor,Brooklyn,Boerum Hill,40.68485,-73.9819,Private room,65,3,2,2016-01-03,0.05,1,0 +10116734,Spacious Apartment D on 61st St. 1st & 2nd ave,30370192,Rachel,Manhattan,Upper East Side,40.75979,-73.96079,Entire home/apt,152,1,42,2019-06-02,1.06,1,357 +10117223,"Charming Room in Bushwick, Brooklyn Apt",18782603,Kimberly,Brooklyn,Bushwick,40.68539,-73.9092,Private room,50,3,2,2016-08-15,0.06,1,0 +10117624,Well-furnished studio w/ patio!,12190846,Kerry,Brooklyn,Williamsburg,40.72097,-73.9548,Entire home/apt,250,1,0,,,1,0 +10117636,❤︎ly room in duplex & garden,48535457,Eric,Brooklyn,Williamsburg,40.71975,-73.95964,Private room,149,2,15,2016-05-31,0.35,1,0 +10118660,Queen Cabin with Window One,51913826,The Bowery House,Manhattan,Nolita,40.72288,-73.99466,Private room,124,1,19,2019-03-21,0.46,8,0 +10118847,Large Private Bedroom on the River,6388652,Molly,Manhattan,Washington Heights,40.83871,-73.9468,Private room,58,3,49,2019-06-22,1.28,1,275 +10119376,Queen Cabin with Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72152,-73.99476,Private room,159,1,9,2019-03-16,0.22,8,0 +10120021,2BR Gut-Renovated Apartment,51844270,Alex,Manhattan,East Village,40.73046,-73.98643,Entire home/apt,250,7,1,2016-01-10,0.02,1,0 +10120414,The LES Apartment,33231070,Mert,Manhattan,Lower East Side,40.72063,-73.98944,Entire home/apt,150,3,0,,,1,0 +10122449,Spacious Chelsea 2 Bed/2 Bathroom,24347,Lyla,Manhattan,Chelsea,40.74441,-73.99915,Entire home/apt,250,4,11,2017-04-11,0.35,1,0 +10123090,Midtown Manhattan steps from 5thAve,51948055,Yvonne,Manhattan,Midtown,40.76372,-73.97692,Entire home/apt,500,29,5,2016-09-26,0.13,1,88 +10124343,Hip Trendy and Convenient!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69508,-73.94856,Private room,58,2,256,2019-06-16,5.96,4,38 +10124372,Elegant and Comfortable Stay,51940393,Denise,Brooklyn,Bedford-Stuyvesant,40.68353,-73.94877,Entire home/apt,199,2,74,2019-06-18,1.84,1,231 +10125213,"Cozy, Artistic Room with Comfy Bed",15109029,Zane,Manhattan,East Harlem,40.80197,-73.93888,Private room,55,1,0,,,1,0 +10125955,Beautiful huge Williamsburg room with private bath,18139498,Yonathan,Brooklyn,Williamsburg,40.70987,-73.95392,Private room,95,4,16,2019-06-12,0.46,1,10 +10126128,Temporary habitat home,43128266,常春,Manhattan,Washington Heights,40.83379,-73.94141,Shared room,36,1,20,2019-06-23,0.47,3,324 +10127534,Luxurious Modern West Village Loft,24673896,Jun,Manhattan,West Village,40.73182,-74.01,Entire home/apt,165,4,4,2017-01-01,0.10,1,0 +10130342,Your NYC Home!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69566,-73.95001,Private room,72,2,255,2019-06-16,5.95,4,0 +10130925,Standard Room/kitchen (sleeps 3 ),51991283,Jennifer,Manhattan,Harlem,40.80057,-73.95468,Private room,179,1,2,2016-04-17,0.05,5,309 +10130963,Family room with Shared Bathroom,51991283,Jennifer,Manhattan,Harlem,40.79945,-73.95411,Private room,209,1,1,2019-03-21,0.27,5,244 +10131082,The Central Park North/Economy Room,51991283,Jennifer,Manhattan,Harlem,40.79865,-73.95295,Private room,149,1,0,,,5,281 +10132356,Giant Loft with a Huge Deck and Kitchen,21247379,Paul,Manhattan,Harlem,40.80926,-73.95455,Entire home/apt,150,3,25,2019-06-14,1.20,1,22 +10133128,Prime Williamsburg Spacious Duplex + Huge Yard,16272340,Joel,Brooklyn,Williamsburg,40.71351,-73.95117,Private room,375,2,2,2016-09-05,0.05,1,0 +10133195,Private room 20mins from the city!,15640532,Kelly,Queens,Elmhurst,40.74157,-73.88389,Private room,65,4,1,2016-01-02,0.02,1,0 +10133350,2 bedroom Upper east side,52004369,Chelsea,Manhattan,Upper East Side,40.7664,-73.95854,Entire home/apt,275,2,9,2017-08-19,0.24,1,0 +10133534,Artsy/Neat 1 Bedroom Apartment in the heart of LES,6606618,Louise,Manhattan,Lower East Side,40.7178,-73.98504,Shared room,110,2,4,2016-12-11,0.11,1,0 +10134285,"Cute bedroom in Chinatown,",566660,Markus,Manhattan,Chinatown,40.71615,-73.99539,Private room,99,1,42,2018-01-01,0.98,1,0 +10134298,1 Bedroom in HUGE Full Floored Apt.,2017504,Fataah,Manhattan,Gramercy,40.73375,-73.98474,Private room,85,1,2,2016-10-23,0.06,2,0 +10134546,Family Room/Kitchen/Shared Bathroom,51991283,Jennifer,Manhattan,Harlem,40.79933,-73.95296,Private room,189,1,7,2019-06-23,0.16,5,291 +10134557,1 Bedroom in East Village,6753765,Austin,Manhattan,East Village,40.72423,-73.98327,Shared room,100,5,0,,,3,0 +10135104,Nice And Clean Apartment.,14439022,Cristina,Manhattan,Harlem,40.82774,-73.94983,Private room,75,3,86,2019-07-01,2.01,1,224 +10136508,Charming private room in Astoria-20 min to Midtown,17653796,Diana,Queens,Ditmars Steinway,40.77575,-73.91419,Private room,45,1,27,2019-06-24,0.75,1,16 +10136634,Williamsburg/Greenpoint Brooklyn,11615226,Jolynn,Brooklyn,Greenpoint,40.72308,-73.95071,Private room,75,1,0,,,1,0 +10136994,Beautiful East Village Apartment,4946655,Jack,Manhattan,East Village,40.72435,-73.98461,Entire home/apt,125,2,6,2016-07-06,0.14,1,0 +10137048,Gorgeous Upper West Side Studio,52022983,Ashley,Manhattan,Upper West Side,40.7937,-73.9652,Entire home/apt,150,1,0,,,1,0 +10138349,"Cute Brooklyn Apt, Close to Trains.",10474877,Rachel,Brooklyn,Boerum Hill,40.68358,-73.98127,Private room,71,7,11,2018-11-27,0.42,1,98 +10138784,Room near LGA airport and 35 mins to Times Square,52031360,Cheer,Queens,Jackson Heights,40.74953,-73.88025,Private room,46,3,137,2019-07-05,3.21,1,286 +10138870,Studio in Little Italy,52031473,Hanna,Manhattan,Nolita,40.72148,-73.99581,Private room,105,2,44,2019-05-30,1.03,1,35 +10138996,Queen Bed/Private Room w/ Backyard,52031734,Edward,Brooklyn,Bedford-Stuyvesant,40.69503,-73.94986,Private room,41,1,1,2016-01-20,0.02,1,0 +10142056,Authentic studio-UES (30 days MIN),23772724,Elem,Manhattan,Upper East Side,40.77349,-73.95225,Entire home/apt,99,30,7,2018-12-31,0.18,15,327 +10142499,"Prívate room in Queens, NY",38260715,Lady,Queens,Corona,40.7394,-73.85527,Private room,37,1,74,2019-06-30,1.73,1,135 +10143705,Studio Apartment,31698014,Janine,Manhattan,East Village,40.72747,-73.98833,Entire home/apt,60,5,2,2016-01-17,0.05,1,0 +10144140,Gorgeous Bushwick 3 BR Private Yard,9153601,David,Brooklyn,Bushwick,40.68594,-73.91448,Entire home/apt,218,2,70,2019-05-09,1.67,1,335 +10148201,Beautiful Full Bedroom-sunny-comfi,502563,Cloe,Manhattan,East Village,40.72888,-73.98496,Private room,150,3,17,2019-05-05,0.40,2,43 +10148581,Furnished Apartment in Chelsea,290094,Charlotte,Manhattan,Chelsea,40.7456,-73.99852,Private room,52,2,2,2016-11-04,0.06,1,0 +10148955,Gorgeous 2BDRM Apartment,7342535,Chris,Brooklyn,Clinton Hill,40.68142,-73.95889,Entire home/apt,210,1,3,2016-02-14,0.07,1,0 +10149393,Cozy Studio + Sunroom near Times Square,5461672,Ginji,Manhattan,Hell's Kitchen,40.76374,-73.98872,Entire home/apt,115,3,1,2016-01-03,0.02,1,0 +10149453,SoHo Gem *Amazing Deal!!,12485770,Raanan,Manhattan,SoHo,40.72542,-74.00158,Entire home/apt,105,30,2,2019-03-03,0.06,9,327 +10153654,East Village Bedroom Available,52112891,Brent,Manhattan,East Village,40.72774,-73.98211,Private room,80,2,3,2016-03-24,0.07,1,0 +10154138,Amazing Apt in the West Village,23419527,Diana,Manhattan,West Village,40.73713,-74.00358,Entire home/apt,225,3,1,2016-01-02,0.02,1,0 +10154444,Cozy apartment (East Williamsburg),1260413,Helena,Brooklyn,Williamsburg,40.71275,-73.94299,Entire home/apt,175,3,2,2019-05-26,0.05,3,0 +10154702,"Pool, Gym, Rooftop, East 50's1 bedroom /1 bathroom",9369977,John,Manhattan,Midtown,40.75763,-73.96359,Private room,120,7,4,2018-01-03,0.09,1,0 +10154762,Central Park - Comfy Futon Couch for 2,37626481,Lugao,Manhattan,Upper West Side,40.79637,-73.96996,Shared room,65,1,55,2019-06-04,1.34,2,0 +10155003,"Studio Loft in Greenpoint, Brooklyn",47554473,Henry Norman,Brooklyn,Greenpoint,40.7276,-73.94495,Entire home/apt,99,3,29,2019-06-25,0.70,13,50 +10156290,"Sunny, 4th floor elevator building",342734,Kim,Manhattan,Lower East Side,40.7191,-73.98812,Entire home/apt,160,1,9,2016-05-01,0.21,1,0 +10156314,Cozy room in East Village!!,52127857,Beto,Manhattan,East Village,40.72314,-73.9797,Private room,60,1,1,2016-05-23,0.03,2,0 +10156441,Super cute 1+1 Apartment,28105866,J,Manhattan,East Harlem,40.79739,-73.94054,Entire home/apt,90,1,0,,,1,0 +10156574,Great loft for a couple or family,4023912,Guy,Manhattan,Financial District,40.70524,-74.01278,Entire home/apt,230,5,6,2018-06-21,0.15,1,208 +10157256,"Gramercy Park restful, cozy, sun-filled home",28722501,Javier,Manhattan,Gramercy,40.73618,-73.9833,Entire home/apt,250,2,47,2019-07-06,2.15,1,89 +10157977,NYC 3 Bedroom Loft Apt LES Downtown Manhattan,173218,Alex,Manhattan,Lower East Side,40.7213,-73.98559,Entire home/apt,299,30,60,2019-01-05,1.71,1,332 +10158141,Noho Broadway 2 Bedroom Loft,50760546,CRNY Monthly Rentals,Manhattan,NoHo,40.72895,-73.9934,Entire home/apt,499,30,0,,,31,167 +10160215,Torre del Lago Room.,2787,John,Brooklyn,Gravesend,40.60755,-73.9741,Private room,79,1,17,2019-06-26,0.40,6,174 +10161361,"Cozy room, near LaGuardia Airport",2995352,Rachel,Queens,Jackson Heights,40.75658,-73.86807,Private room,46,1,0,,,1,0 +10162752,Modern PH + Balcony&Skyline view,25169027,Max,Brooklyn,Bushwick,40.70491,-73.92367,Entire home/apt,110,4,3,2016-06-24,0.07,1,0 +10163240,Private room in 3 br in Manhattan,41535999,Amber,Manhattan,Morningside Heights,40.80348,-73.9632,Private room,70,1,1,2016-01-12,0.02,1,0 +10163617,Spacious 2 bdr Bed-Stuy Brownstone,4273661,Julia,Brooklyn,Bedford-Stuyvesant,40.69145,-73.93536,Entire home/apt,150,2,1,2016-05-31,0.03,1,0 +10163936,"Cozy Apartment in Williamsburg, BK",27537912,Kenny,Brooklyn,Williamsburg,40.70379,-73.94228,Private room,59,15,12,2017-07-09,0.28,1,0 +10165064,❤️FAB APT WITH PRIVATE GARDEN NEAR CENTRAL PARK!,39603281,Marty,Manhattan,Upper West Side,40.79437,-73.97152,Entire home/apt,165,1,188,2019-07-05,4.42,1,328 +10165181,Beautiful Unique Greenpoint Loft Suite,47554473,Henry Norman,Brooklyn,Greenpoint,40.72919,-73.94512,Private room,149,3,32,2019-06-29,0.75,13,74 +10165313,Deluxe Loft Living in Brooklyn,47554473,Henry Norman,Brooklyn,Greenpoint,40.72888,-73.94486,Entire home/apt,129,3,3,2017-10-31,0.08,13,74 +10165410,Peaceful room in Bushwick,30658746,Isik,Brooklyn,Bushwick,40.69392,-73.92262,Private room,42,1,3,2016-04-05,0.07,1,0 +10165663,Cozy Private Garden Apartment,52183960,Michael & Bethany,Brooklyn,Bedford-Stuyvesant,40.68025,-73.91199,Entire home/apt,120,2,141,2019-07-06,3.35,1,215 +10166820,Brooklyn apartment 20 min to Manhattan,486147,Christopher,Brooklyn,Park Slope,40.67174,-73.98616,Private room,63,30,17,2018-09-01,0.44,1,73 +10166883,Spacious railroad style 3 bedroom apt in Manhattan,35215309,Victor,Manhattan,East Harlem,40.79805,-73.93943,Entire home/apt,180,4,24,2019-05-24,0.56,2,3 +10166986,Resort-like living in Williamsburg,14461742,Mohammed,Brooklyn,Williamsburg,40.71552,-73.93869,Entire home/apt,220,5,1,2016-01-01,0.02,1,0 +10167436,Sunny Cozy Private Room in East Williamsburg,8515724,J,Brooklyn,Williamsburg,40.7075,-73.94055,Private room,68,1,29,2019-06-04,0.77,3,0 +10167860,"Sunny, Spacious Private BR in East Village!",21430239,Edward,Manhattan,East Village,40.72828,-73.98901,Private room,119,1,134,2018-07-02,3.15,1,0 +10171782,Great Affordable Room In Manhattan,37256833,Jazzy,Manhattan,Harlem,40.82914,-73.94254,Private room,37,2,11,2017-07-05,0.28,1,0 +10172621,Gorgeous and Sunlit 1 BR 31/1-3/1,52228249,Shy,Bronx,Bronxdale,40.85592,-73.86743,Entire home/apt,80,7,0,,,1,0 +10173750,Simple Affordable Room in Brooklyn,24840827,Prashast,Brooklyn,Bedford-Stuyvesant,40.69143,-73.93444,Private room,55,1,0,,,1,0 +10174245,Clean & Cozy room near Central Park,7940120,Yasmine,Manhattan,Upper West Side,40.79958,-73.96403,Private room,50,1,0,,,1,0 +10174662,NOLITA AMAZING Spacious!,40640586,Gary,Manhattan,Lower East Side,40.72299,-73.99251,Entire home/apt,199,2,168,2019-06-22,3.93,1,65 +10175187,Beautiful Brownstone on Tree Lined Block,52243765,Jessie,Brooklyn,Crown Heights,40.67851,-73.95566,Private room,50,3,0,,,1,0 +10175678,Townhouse in Williamsburg,10590489,Caroline,Brooklyn,Williamsburg,40.71367,-73.94228,Private room,60,2,7,2017-05-11,0.17,1,0 +10176552,Astoria LIC 1 bdrm apt 30th ave,15312592,Andrea,Queens,Astoria,40.76722,-73.92203,Entire home/apt,135,3,44,2018-01-02,1.03,1,0 +10177726,"Cute, clean, room in Williamsburg!",12378834,Ana Bess,Brooklyn,Williamsburg,40.70512,-73.94347,Private room,64,1,1,2016-01-05,0.02,1,0 +10182058,Like your cousin house,41326856,Jeerathinan,Queens,Elmhurst,40.74674,-73.87995,Private room,80,1,34,2019-07-01,0.88,5,49 +10184162,In the heart of Williamsburg,50466143,Louis,Brooklyn,Williamsburg,40.71215,-73.95801,Private room,65,2,0,,,1,0 +10185955,Blue Magic,14785032,Jake,Queens,St. Albans,40.69112,-73.77761,Private room,48,1,165,2019-07-02,4.64,1,365 +10185960,Brownstone in Carroll Gardens,42487547,Peter,Brooklyn,Carroll Gardens,40.67875,-73.99599,Entire home/apt,115,3,9,2019-01-03,0.21,1,0 +10186192,Only Steps away from LaGuardia arpt,37312959,Maya,Queens,East Elmhurst,40.77026,-73.87561,Private room,45,1,459,2019-07-07,10.72,5,175 +10186787,Cozy Room In Williamsburg Apartment,10855721,Anthony,Brooklyn,Williamsburg,40.70352,-73.93798,Private room,38,7,1,2016-01-21,0.02,1,0 +10186876,"Lovely LES 1BR, W/D & Elevator: DEC. SUBLET PREFR.",20992861,Chloe,Manhattan,Lower East Side,40.71757,-73.99028,Private room,85,5,1,2016-01-05,0.02,1,0 +10187402,Turtle Bay/UN Brownstone Garden Apt,52320213,Kashif,Manhattan,Midtown,40.7533,-73.97162,Entire home/apt,275,4,77,2018-12-15,1.84,1,0 +10191601,Spacious Astoria Home with Garden,26111326,Larry & Deb,Queens,Astoria,40.76951,-73.93077,Entire home/apt,125,2,26,2017-10-14,0.64,1,0 +10192564,"Lovely,Spacious,UpperWestSide/Spend a SummerMonth",52320041,Lori,Manhattan,Upper West Side,40.80114,-73.96772,Entire home/apt,250,30,17,2018-09-05,0.47,1,190 +10192593,"Cozy Room in LIC, 7 min to TimesSq",1589909,Alosha,Queens,Long Island City,40.74392,-73.95147,Private room,79,15,9,2019-01-03,0.26,2,259 +10192898,"Heart of West Village, over NYE!",7108710,Katie,Manhattan,West Village,40.7344,-74.00262,Private room,105,1,0,,,1,0 +10193343,Steps from subway and Central Park,15891234,Dan,Manhattan,East Harlem,40.794,-73.94585,Entire home/apt,100,2,6,2016-03-29,0.14,1,0 +10193392,great private room,16869971,Han,Manhattan,Roosevelt Island,40.76882,-73.94315,Private room,70,1,7,2016-08-23,0.19,2,0 +10199699,Welcome Students! Huge Very Private Uptown Room,16978120,Chip,Manhattan,Harlem,40.83,-73.94931,Private room,65,30,0,,,2,308 +10200715,"Flatbush Manor, Industrial-Deco 1BR Apt",569864,Jason,Brooklyn,Prospect Heights,40.68007,-73.97317,Entire home/apt,60,2,12,2017-11-26,0.28,1,0 +10201295,private modern room (long term 1 month or more),1519189,Annie,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94273,Private room,50,2,3,2019-06-28,0.09,2,316 +10202835,Cozy room in Artist House,37561828,Evan,Brooklyn,Bushwick,40.69387,-73.92666,Private room,35,3,33,2016-09-05,0.78,1,0 +10204682,NYC Apartment near Central Park!,4821374,Millie,Manhattan,Upper East Side,40.77791,-73.95362,Entire home/apt,180,3,22,2019-07-01,0.83,2,273 +10205011,Entire 1 Bedroom Apt Available In Ditmas Park,43192686,Naudia,Brooklyn,Borough Park,40.62586,-73.98079,Entire home/apt,70,5,33,2018-05-29,0.81,1,27 +10205130,Large Luxury Studio with a view,52430092,Shosh,Manhattan,East Harlem,40.80107,-73.93656,Entire home/apt,220,2,59,2019-07-07,1.47,1,185 +10206990,Cozy Studio Heart Of Midtown!5160,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76544,-73.98651,Entire home/apt,135,30,5,2018-07-13,0.16,96,311 +10207267,Swimming Pool Doorman Studio! 5161,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79544,-73.96736,Entire home/apt,140,30,2,2018-08-26,0.06,96,244 +10207451,Private BR & Bath - Victorian Home,50549394,Susan,Brooklyn,Flatbush,40.63267,-73.96199,Private room,175,2,6,2019-05-12,0.22,1,178 +10207629,Design Swimming Pool!LUX***** 5140,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79534,-73.96583,Entire home/apt,180,30,4,2019-01-03,0.12,96,319 +10207847,Design By Stark!Basket Ball!Washer& Dryer !5230,16098958,Jeremy & Laura,Manhattan,Financial District,40.70503,-74.00674,Entire home/apt,165,30,0,,,96,329 +10208954,Cozy & Elegant Private 1 Bedroom,52445657,Christopher,Queens,Flushing,40.72946,-73.8075,Private room,55,2,16,2018-03-12,0.46,1,0 +10209278,"One Bedroom Apt, Hell's Kitchen",52454608,David,Manhattan,Hell's Kitchen,40.7631,-73.98753,Entire home/apt,100,1,0,,,1,0 +10209973,GREAT BIG ROOM IN APT. W/ BALCONY,9532490,Alexandra,Manhattan,East Village,40.73008,-73.98996,Private room,91,4,8,2018-04-12,0.19,3,0 +10210556,Venerable Chelsea Loft (Small Br),52342677,Austin,Manhattan,Chelsea,40.74729,-73.99107,Private room,175,1,0,,,1,0 +10211452,Lovely Light Filled Room in BedStuy,20086355,Josefina,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95151,Private room,70,5,0,,,1,0 +10212685,Maryhills Brownstone in Park Slope,42413378,Hilal & Maryam,Brooklyn,South Slope,40.6641,-73.98036,Entire home/apt,143,3,180,2019-06-23,4.20,2,263 +10212862,"Tranquil Room in Airy, Sunny Bushwick Loft",2109282,Olga,Brooklyn,Bushwick,40.69688,-73.93448,Private room,55,14,2,2016-09-04,0.06,1,0 +10222008,East Village studio,52526463,Amy,Manhattan,East Village,40.73133,-73.98747,Entire home/apt,110,3,1,2016-01-05,0.02,1,0 +10224557,"Huge room, ready for you, CHEAP!",287634,Asal,Brooklyn,Prospect-Lefferts Gardens,40.65568,-73.95892,Private room,30,1,0,,,1,0 +10224832,Great room,10590166,Vivian,Queens,Fresh Meadows,40.7492,-73.78445,Private room,90,1,3,2018-10-28,0.30,1,87 +10224998,Standard Room/kitchen(sleeps 4),51991283,Jennifer,Manhattan,Harlem,40.80033,-73.9528,Private room,199,1,1,2016-01-11,0.02,5,267 +10226511,Charming Bedroom in Gramercy,52551507,Alisha,Manhattan,Gramercy,40.73728,-73.9842,Private room,99,1,0,,,1,0 +10228901,Sunny private room on LowerEastSide,32824042,Carlos,Manhattan,Lower East Side,40.71334,-73.98575,Private room,40,1,0,,,1,0 +10229075,"Sunny, kid friendly in Midtown East",9504403,Shawna,Manhattan,Kips Bay,40.74443,-73.97949,Entire home/apt,235,3,2,2016-03-15,0.05,1,0 +10229444,"Great Location, 15 mint from Midtown Manhattan.",24884472,Ruveyda,Queens,Astoria,40.7662,-73.92027,Private room,62,2,9,2019-06-03,0.24,1,358 +10230403,"2 room, lower level home in Queens",52573647,Terri,Queens,Rosedale,40.65108,-73.73402,Private room,85,2,9,2016-10-29,0.23,1,87 +10230429,Great room,52539349,Rhonda,Queens,Springfield Gardens,40.67035,-73.7541,Entire home/apt,60,1,212,2019-07-07,4.95,1,297 +10231294,Cozy private room with own TV,52577963,Mark,Queens,Woodhaven,40.69454,-73.85041,Private room,45,5,34,2019-06-10,0.85,6,212 +10231620,Private 2 Bedroom Apt Minutes from Times Square,29452204,Cynthia,Manhattan,Hell's Kitchen,40.76124,-73.98897,Entire home/apt,155,2,0,,,1,0 +10232344,Cozy studio in heart of Manhattan,52584471,Paul,Manhattan,Murray Hill,40.74666,-73.97847,Entire home/apt,135,1,0,,,1,0 +10232553,"PRIVATE BEDROOM,PRIVATE BATH,PRIVATE LIVING ROOM !",389899,Maria,Brooklyn,Williamsburg,40.71742,-73.95847,Entire home/apt,165,1,58,2019-04-07,1.36,2,287 +10233048,"Times Square 2 blks away, Happy NY!",14064072,Ben,Manhattan,Hell's Kitchen,40.76166,-73.99197,Private room,295,1,0,,,1,0 +10233196,The Suite Spot @ Washington Heights,51169036,Francois & Keith,Manhattan,Washington Heights,40.83473,-73.93858,Private room,77,1,89,2019-05-27,2.29,1,228 +10233244,"Sunny, Cozy Room Near Train, Cafes & Parks",11554193,Rishe,Brooklyn,Crown Heights,40.66671,-73.94981,Private room,43,5,16,2018-09-27,0.40,2,38 +10233563,纽约市曼哈顿中城East 52nd st_2室1厅_$4500/月,4227531,Wendy,Manhattan,Midtown,40.75686,-73.96723,Entire home/apt,230,180,0,,,1,365 +10233905,"Sunny Brooklyn, NYC Apartment",14590096,Sophia,Brooklyn,East New York,40.6729,-73.88919,Entire home/apt,70,30,62,2019-01-01,1.56,1,7 +10234090,Park Slope Garden Apartment,52577563,Rosa,Brooklyn,Sunset Park,40.6642,-73.99371,Entire home/apt,105,5,1,2016-01-03,0.02,3,365 +10234232,"Charming, warm room in Bushwick",21094081,Matthew,Brooklyn,Bushwick,40.69675,-73.92964,Private room,54,4,6,2016-09-24,0.14,1,0 +10234437,"Sunny, large 2-bedroom Williamsburg apartment",655234,Julien,Brooklyn,Williamsburg,40.71523,-73.95503,Entire home/apt,199,3,0,,,1,0 +10235422,3 BEDROOMS BROOKLYN - NEW YORK CITY,52604429,Martin,Brooklyn,Bedford-Stuyvesant,40.69171,-73.94891,Entire home/apt,145,4,63,2019-06-16,1.60,2,37 +10241876,Modern Williamsburg BR for rent,39126862,Alexandra,Brooklyn,Williamsburg,40.70635,-73.95175,Private room,97,2,0,,,2,0 +10242095,Huge Room w/ Amazing Queen Bed in S. Williamsburg!,4209540,Aaron,Brooklyn,Williamsburg,40.70154,-73.94759,Private room,55,3,26,2019-05-16,0.68,1,1 +10243895,Beautiful restored full floor apt,5162192,Amy,Manhattan,Upper West Side,40.78273,-73.97553,Entire home/apt,285,5,79,2019-07-02,2.09,12,153 +10244467,Gramercy Suite at The Loralei B&B,18652590,Robert2,Brooklyn,Flatbush,40.63177,-73.96341,Private room,185,2,0,,,1,0 +10244876,Huge room w/ Private outdoor space,52656488,Adeola,Manhattan,Harlem,40.81052,-73.94008,Private room,200,2,0,,,1,0 +10245677,One bedroom in great NYC location!,52661714,Chelsea,Manhattan,Hell's Kitchen,40.76214,-73.98985,Private room,300,1,0,,,1,0 +10246056,Williamsburg Renovated Vintage 3BR,52663715,Mo,Brooklyn,Williamsburg,40.7126,-73.94668,Entire home/apt,255,3,97,2019-05-31,2.37,1,230 +10246479,The St. Johns: A 5-Bedroom Townhouse Near the Park,22693737,Estee,Brooklyn,Crown Heights,40.67146,-73.94377,Entire home/apt,500,30,96,2019-06-23,2.38,1,339 +10246816,Charming Park Slope One+ Bedroom,22663500,Carrie,Brooklyn,South Slope,40.66622,-73.98357,Private room,75,5,1,2018-06-24,0.08,1,0 +10247766,Spacious Brooklyn Room,52674088,Emma,Brooklyn,Greenpoint,40.72738,-73.95553,Private room,150,1,0,,,1,0 +10247799,Cozy Williamsburg Space,2348712,Abe,Brooklyn,Williamsburg,40.70727,-73.96057,Private room,64,2,2,2016-12-31,0.06,1,0 +10249075,Nice comfy pad near Times Square,36494040,Peter,Manhattan,Hell's Kitchen,40.7609,-73.99405,Entire home/apt,250,1,0,,,1,0 +10249886,Cozy 1BR located in Midtown Manhattan,50914821,Ken,Manhattan,Hell's Kitchen,40.76577,-73.9855,Private room,135,1,101,2019-06-25,2.36,1,365 +10250433,Spacious Sunny 1 bed private room in Ditmas Park,21147839,Adrian,Brooklyn,Flatbush,40.64543,-73.96456,Private room,70,7,1,2016-11-01,0.03,1,0 +10251082,"Large, private 2BR in historic brownstone",14084903,Polina,Brooklyn,Prospect Heights,40.67473,-73.96529,Entire home/apt,295,3,182,2019-06-26,4.33,1,226 +10251768,spacious pretty east harlem apt.,19927798,Siobhan,Manhattan,East Harlem,40.79366,-73.94059,Entire home/apt,135,1,4,2016-10-11,0.11,1,0 +10252499,Great Hells Kitchen sofa,2782391,Jeff,Manhattan,Hell's Kitchen,40.76646,-73.98704,Shared room,50,2,2,2016-05-11,0.05,2,0 +10252921,"Central Located Private Apartment, New York Queens",52705961,Harish,Queens,Forest Hills,40.73352,-73.85237,Entire home/apt,69,1,85,2019-07-01,2.13,1,308 +10253159,Newly renovated house 4 bedroom. Minutes from NYC,10721093,Jonathan,Staten Island,Castleton Corners,40.61042,-74.12277,Entire home/apt,299,3,49,2019-06-30,1.91,1,350 +10253315,15 Mins to Times Square & Manhattan-3 Bedroom Apt.,27431753,Lasata,Queens,Sunnyside,40.7388,-73.92327,Entire home/apt,204,4,188,2019-07-04,4.49,1,0 +10253377,Modern luxury condo in Williamsburg,8885753,Dimitri,Brooklyn,Williamsburg,40.71702,-73.95356,Private room,80,3,0,,,1,0 +10257476,Private Room in Artsy Home - Heart of Manhattan,5903619,Kimberly,Manhattan,Hell's Kitchen,40.76464,-73.99403,Private room,125,1,45,2019-06-29,1.13,1,322 +10262473,Awesome Dyker Heights apartment!,11904916,Helen,Brooklyn,Dyker Heights,40.62296,-74.01483,Entire home/apt,69,3,35,2019-06-15,0.88,1,0 +10265988,Serene Apartment Park Ave - UES,6713072,Dana,Manhattan,Upper East Side,40.78464,-73.95142,Entire home/apt,139,4,3,2016-09-21,0.08,1,0 +10267242,Cinque Terre Room. Clean and Quiet Queen Bedroom,2787,John,Brooklyn,Gravesend,40.6081,-73.97541,Private room,149,1,24,2019-05-11,0.64,6,180 +10267693,"Cute beach bungalow by the beach, 80min Manhattan",52793525,J.C.,Queens,Far Rockaway,40.59607,-73.75911,Entire home/apt,100,6,9,2019-05-10,0.22,1,0 +10268663,SkyView - 2 bed 2ba W&D Gym!5175,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.7776,-73.95277,Entire home/apt,360,30,1,2018-10-06,0.11,96,213 +10268712,Hipster Williamsburg Welcomes You!,52799398,Hayley,Brooklyn,Williamsburg,40.71386,-73.94742,Private room,99,3,35,2017-01-09,0.82,1,0 +10268868,Big room at 15min from Times Square,22543733,Leo,Queens,Sunnyside,40.74701,-73.92314,Private room,60,2,5,2017-04-23,0.12,1,0 +10270377,Cozy Bedroom in Apartment Uptown,52601644,Shamroz,Manhattan,Harlem,40.80338,-73.95734,Private room,60,1,2,2016-01-08,0.05,1,0 +10270687,Family Home 2FL 7 Mins To Manhattan,40895328,Beatriz & Will,Queens,Astoria,40.75691,-73.92879,Entire home/apt,275,2,147,2019-07-05,3.43,2,325 +10271071,BROOKLYN'S HAVEN,9346894,Gade,Brooklyn,Cypress Hills,40.68203,-73.89374,Private room,65,1,75,2019-06-06,1.80,2,361 +10271753,BROOKLYN 2 BEDROOM APT,9346894,Gade,Brooklyn,Cypress Hills,40.68281,-73.89509,Entire home/apt,149,1,119,2019-06-23,2.81,2,361 +10272718,Comfortable Room in 3 bedroom Apt,42278723,Ariel,Manhattan,East Harlem,40.78593,-73.94169,Private room,60,1,1,2016-01-24,0.02,1,0 +10273251,Cozy Place - Convenient Location,13187595,Angelica,Brooklyn,Bushwick,40.70161,-73.93131,Entire home/apt,120,4,77,2019-07-05,1.92,1,1 +10276934,位于曼哈顿岛上125街Broadway性价比超高房间短租~,52756677,Yingxiang,Manhattan,Harlem,40.81667,-73.95695,Private room,35,3,0,,,1,0 +10277010,FAMILY FRIENDLY 3BR DUPLEX,5610823,(Email hidden by Airbnb),Brooklyn,Clinton Hill,40.68274,-73.96367,Entire home/apt,261,1,5,2016-08-23,0.14,1,0 +10279086,The Mahogany Suite(Private Studio Apartment),52862385,The Mahogany Suite(Studio Apartment,Brooklyn,Crown Heights,40.66404,-73.93334,Entire home/apt,99,2,110,2019-06-30,2.81,3,271 +10280162,Great room in Awesome Williamsburg,24411752,Sahil,Brooklyn,Williamsburg,40.71042,-73.95071,Private room,49,2,0,,,1,0 +10280345,"Room 5, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64316,-73.96285,Private room,65,1,105,2019-07-03,2.54,2,111 +10280355,Super Cute + Cozy Park Slope Apt.,17607084,Christine,Brooklyn,South Slope,40.6627,-73.98353,Entire home/apt,150,3,0,,,1,0 +10280439,"Comfortable room, lots of sunlight",23156396,Fernando,Manhattan,Harlem,40.82042,-73.95305,Private room,65,1,0,,,1,0 +10280549,"Room 4, Victorian Home to Enjoy!",756173,Laura,Brooklyn,Flatbush,40.64396,-73.96328,Private room,60,1,138,2019-06-24,3.36,2,122 +10281054,Spacious Private Room in Brooklyn,2238052,Chris,Brooklyn,Bushwick,40.69288,-73.90831,Private room,69,2,54,2019-06-09,1.26,1,0 +10282307,Ideal Brooklyn Location/Spacious+Bright 1-Bed,18272255,Przemek,Brooklyn,Prospect Heights,40.67357,-73.96577,Entire home/apt,150,2,77,2019-06-27,2.56,1,142 +10283008,Large Room in BK Quaint Brownstone,13345581,Chaydha,Brooklyn,Crown Heights,40.67607,-73.95121,Private room,37,21,11,2019-05-23,0.28,2,0 +10283574,Apt next to Astoria park,35518413,Suhel,Queens,Long Island City,40.76322,-73.93334,Entire home/apt,100,1,206,2019-07-04,5.25,2,304 +10289124,"2 BR Brownstone Retreat, 3rd Fl.",31919780,Neil,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93888,Entire home/apt,99,3,88,2019-06-05,2.19,2,47 +10291127,Doorman XL one bedroom!5109,16098958,Jeremy & Laura,Manhattan,Midtown,40.75295,-73.98889,Entire home/apt,160,30,4,2019-03-04,0.12,96,365 +10292758,"**3BR, Large Duplex/private Garden, Time Square!!",52950465,Gal,Manhattan,Hell's Kitchen,40.76195,-73.99224,Entire home/apt,225,30,18,2017-12-05,0.45,12,173 +10293298,Private Room/Private Bath in Gorgeous Brooklyn 2BR,52954055,Victoria Maria,Brooklyn,Bedford-Stuyvesant,40.68574,-73.93022,Private room,51,5,13,2019-06-26,0.33,1,89 +10297427,Charming Loft on the UES,52978874,Isaac,Manhattan,East Harlem,40.78703,-73.95196,Entire home/apt,250,90,0,,,1,363 +10297582,Sunny and huge room in Astoria!,52973925,Alexis,Queens,Astoria,40.75619,-73.91881,Private room,66,1,0,,,1,0 +10298783,Comfortable cozy room,52981364,Rosaly,Manhattan,Harlem,40.80621,-73.94461,Private room,65,2,167,2019-06-25,4.16,1,209 +10301359,"Clean, renovated 1 bed apartment",40826687,Ishwarjot,Brooklyn,Williamsburg,40.71081,-73.94238,Entire home/apt,120,5,34,2018-06-16,0.83,1,0 +10307009,Great UES apt with outdoor space,12518470,Norman,Manhattan,Upper East Side,40.78162,-73.9475,Shared room,125,1,6,2019-05-19,0.15,1,365 +10308738,Prime Upper West Side family home top floor,1250061,John,Manhattan,Upper West Side,40.79121,-73.96963,Entire home/apt,260,3,82,2019-07-02,2.05,1,12 +10310874,Art Inspired One Bedroom Apt in Bedford Stuyvesant,36753915,Ozzy,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94539,Entire home/apt,94,2,37,2018-02-04,0.88,1,0 +10311049,Spacious Sunlit Room in Manhattan 18m Times Square,6057887,Mutaz,Manhattan,Washington Heights,40.8471,-73.93803,Private room,79,3,4,2019-06-09,0.10,5,17 +10314305,Big and quiet room!,11095923,Tobias,Brooklyn,Flatbush,40.64569,-73.95849,Private room,49,8,0,,,3,0 +10314411,Ultra-Modern 6-bedroom House (Great for Groups),4393578,Jack,Manhattan,Chelsea,40.74234,-74.00032,Entire home/apt,1731,10,84,2019-03-31,2.80,2,97 +10316551,Brooklyn Queen Bed,33213436,Alec,Brooklyn,Gowanus,40.67843,-73.98393,Private room,99,1,176,2019-06-04,4.14,8,365 +10318675,Minimalist Urban Jungle with Exposed Brick,13031745,Madeline,Brooklyn,Williamsburg,40.70764,-73.94231,Private room,41,1,1,2016-03-16,0.02,3,0 +10319419,Comfy Queen bedroom near East Village LES,4685913,Paul,Manhattan,East Village,40.72156,-73.97902,Private room,90,1,3,2016-09-01,0.08,2,0 +10319699,Cool Private Apt in Manhattan w/ Comfy Queen Bed!,40501530,Dani,Manhattan,Harlem,40.82317,-73.94507,Entire home/apt,69,3,4,2018-11-30,0.34,1,0 +10322621,Luxury High-Rise Manhattan Apt,20193547,Rosa,Manhattan,Chelsea,40.75168,-73.99376,Private room,81,1,0,,,1,0 +10329264,Artist's Nook,53153865,Grant,Brooklyn,Brooklyn Heights,40.69267,-73.99793,Entire home/apt,113,5,77,2019-06-21,1.99,1,44 +10332161,A large sunny bedroom,53169195,Ehssan,Bronx,Fordham,40.85598,-73.90052,Private room,35,3,2,2016-08-20,0.06,1,0 +10332393,Cute and clean apt in East Harlem!,5744448,Katrina,Manhattan,East Harlem,40.79346,-73.94613,Entire home/apt,85,1,0,,,1,0 +10334395,Private Room in Brooklyn Artist Apt,10197136,Kait,Brooklyn,Bedford-Stuyvesant,40.68086,-73.92746,Private room,45,1,0,,,1,0 +10336440,"Sunny, spacious Clinton Hill 1.5 BR",283636,Nathan & Ximena,Brooklyn,Clinton Hill,40.68545,-73.96048,Entire home/apt,200,3,22,2019-06-03,0.54,1,363 +10337217,NYC Sweetheart Studio - Upper East,15310997,Mor,Manhattan,Upper East Side,40.77467,-73.95405,Entire home/apt,100,30,7,2019-02-08,0.21,9,331 +10338696,Studio Apartment in Safe Neighborhood.,50742613,Reed,Bronx,Pelham Bay,40.84721,-73.83222,Entire home/apt,37,5,10,2018-07-04,0.25,1,0 +10338839,Beautiful Executive 1 bedroom Suite,53206623,Wayde,Queens,Edgemere,40.59606,-73.77882,Entire home/apt,180,1,19,2019-06-10,0.54,1,361 +10339291,New Modern Industrial Studio Apt,53209258,Michelle,Brooklyn,Bushwick,40.69724,-73.932,Private room,105,1,0,,,1,0 +10339835,*Chic Oasis in Trendy Union Square*,3599608,Angella,Manhattan,Gramercy,40.73555,-73.98994,Entire home/apt,200,28,4,2019-06-15,0.11,1,73 +10340695,Spacious bedroom near Prospect Park,53217509,Kelsey,Brooklyn,Crown Heights,40.67434,-73.95762,Private room,45,4,0,,,1,0 +10340705,Luxurious Private Room in Harlem,53216788,Jason,Manhattan,Harlem,40.81015,-73.94728,Private room,80,1,27,2019-05-10,0.79,1,302 +10340745,"Cozy, Renovated, 1BD/1BA Manhattan Apt",8292025,Eric,Manhattan,East Village,40.72551,-73.99075,Entire home/apt,122,3,0,,,1,0 +10340849,Executive retreat in Midtown West,5836431,Darryl,Manhattan,Hell's Kitchen,40.76367,-73.98613,Entire home/apt,400,3,0,,,1,0 +10340994,1 room in 2 bedroom apartment,50828435,Madonna,Brooklyn,Bay Ridge,40.62317,-74.02535,Private room,55,1,1,2016-01-27,0.02,1,0 +10341003,"Clean and spacious,grnd floor apt",53218990,Samuel,Manhattan,Harlem,40.82377,-73.94565,Entire home/apt,110,1,0,,,1,0 +10341262,Authentic 2BR in UES 30 days MIN,23772724,Elem,Manhattan,Upper East Side,40.78165,-73.94647,Entire home/apt,110,30,7,2018-07-31,0.22,15,331 +10342448,Heart Of Hell's Kitchen,53228755,Kodchakorn,Manhattan,Hell's Kitchen,40.75427,-73.9928,Entire home/apt,135,1,3,2017-07-04,0.09,1,0 +10342806,Cozy Washington Heights Bedroom,48370755,Sheldon,Manhattan,Washington Heights,40.85143,-73.93089,Private room,45,1,3,2017-07-24,0.08,1,0 +10343320,"UWS 1 bedroom, tree-lined street between 2 parks!",21359759,Kristen,Manhattan,Upper West Side,40.79939,-73.96875,Entire home/apt,145,1,20,2019-06-30,0.48,1,0 +10343542,student friendly and cozy in Brooklyn!,13400096,Ron,Brooklyn,Crown Heights,40.6765,-73.94277,Private room,37,10,6,2018-10-12,0.14,3,0 +10343638,Sunlit & Spacious 2 Bedroom Brooklyn Apt,17929902,Jesse & Rotem,Brooklyn,Bedford-Stuyvesant,40.68676,-73.92192,Entire home/apt,90,1,163,2019-07-01,3.94,1,25 +10346503,Beautiful UWS Apt with Balcony,1288080,Jessica,Manhattan,Upper West Side,40.78986,-73.96825,Entire home/apt,305,2,21,2018-08-10,0.54,1,177 +10350120,Nice Suite with Kitchen,53268392,Crystal,Manhattan,Upper West Side,40.80076,-73.96389,Shared room,100,1,0,,,1,0 +10351249,Spacious 2 Bedroom Lower East Side,53281880,Sandra,Manhattan,Chinatown,40.71288,-73.9974,Entire home/apt,180,2,167,2019-06-25,4.04,1,261 +10351593,Ed's Place,53274087,Edgar,Manhattan,Harlem,40.82284,-73.94199,Private room,90,1,151,2019-07-06,5.34,1,22 +10352280,Spacious and Well-Lit One Bedroom,18471568,Alex,Manhattan,Upper East Side,40.76824,-73.95858,Entire home/apt,135,3,5,2016-10-16,0.13,1,0 +10353094,Clean room for rent in Park Slope,53284346,Steven,Brooklyn,Park Slope,40.66932,-73.98321,Private room,49,5,2,2016-03-08,0.05,1,0 +10354038,Quaint place in seaside Red Hook,22423634,Peter,Brooklyn,Red Hook,40.67741,-74.0139,Entire home/apt,95,3,12,2017-09-20,0.30,1,0 +10355146,Brooklyn's Finest,3530446,Maurice,Brooklyn,Crown Heights,40.67785,-73.95217,Entire home/apt,155,3,71,2019-07-01,1.81,3,302 +10355806,Sunny & Bright Private Room,28340799,Steph,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95936,Private room,47,14,1,2016-06-20,0.03,1,0 +10356093,"Top Floor, Historic Brownstown",2321360,David,Brooklyn,Bedford-Stuyvesant,40.6858,-73.93465,Entire home/apt,120,2,0,,,1,0 +10357730,Live like a local in Astoria Queens,16823940,Missy,Queens,Ditmars Steinway,40.77651,-73.91009,Private room,38,4,54,2019-05-31,1.40,2,24 +10358093,Entire nice 2 bedroom Apt with Balcony in Brooklyn,3609048,Ken,Brooklyn,Crown Heights,40.6695,-73.93298,Entire home/apt,199,2,9,2019-04-07,0.61,3,90 +10358108,Cozy modern room in the heart of NYC!,53308963,Aj,Manhattan,Chinatown,40.71424,-73.9968,Private room,87,3,27,2019-05-25,0.71,2,12 +10359702,Private room with a bathroom,53319402,Yauheniya,Queens,Astoria,40.76301,-73.91295,Private room,80,1,0,,,1,0 +10360144,Live like a local in NYC! Next to Ditmars subway,16823940,Missy,Queens,Ditmars Steinway,40.77673,-73.90993,Private room,40,2,8,2019-06-08,0.20,2,229 +10360180,Seconds to the City!!!,53321966,Robert,Brooklyn,Bushwick,40.69177,-73.90451,Entire home/apt,155,2,207,2019-06-23,4.89,1,20 +10361885,Dreamy Brownstone Brooklyn Duplex,53330133,Deirdre,Brooklyn,Carroll Gardens,40.67905,-74.00089,Entire home/apt,125,21,0,,,1,0 +10365373,Dream Pad,8049682,Krysta,Brooklyn,Crown Heights,40.67433,-73.9575,Private room,81,3,120,2019-07-02,2.81,1,0 +10365516,Charming Brooklyn apartment w/patio,30983216,Meredith,Brooklyn,Bushwick,40.69358,-73.92409,Entire home/apt,129,2,114,2019-07-06,2.75,1,235 +10365991,"Sunny and Spacious 2BR, Murray Hill",17790870,Zal,Manhattan,Murray Hill,40.74673,-73.97343,Entire home/apt,83,1,2,2016-01-31,0.05,1,0 +10367220,Private room in West Harlem,5764600,Sarah,Manhattan,Harlem,40.81388,-73.95229,Private room,70,2,0,,,1,0 +10367884,Cozy studio in Park Slope,724870,Lindy,Brooklyn,Park Slope,40.6732,-73.97282,Entire home/apt,130,2,16,2017-07-28,0.40,1,0 +10368055,Classic Brooklyn Brownstone,29466025,Alex,Brooklyn,Park Slope,40.67992,-73.9776,Entire home/apt,325,4,2,2016-08-14,0.05,1,0 +10368714,Martha's Apartment,53369750,Martha,Manhattan,Washington Heights,40.8379,-73.94095,Private room,30,3,119,2019-06-30,3.19,1,3 +10369038,纽约之家 (Sunny Home2),27673980,Amy,Queens,Flushing,40.74651,-73.83176,Private room,50,1,112,2019-06-10,2.78,8,84 +10369047,纽约之家(Sunny Home1),27673980,Amy,Queens,Flushing,40.74609,-73.83175,Private room,50,1,98,2019-06-02,2.32,8,79 +10371643,Nice room in the Upper West Side,53387593,Nora,Manhattan,Upper West Side,40.79988,-73.9612,Private room,45,27,0,,,1,0 +10377405,Little Italy/Soho,2983459,Jesper,Manhattan,Nolita,40.72174,-73.99639,Entire home/apt,200,2,5,2016-10-07,0.12,1,0 +10377445,Beautiful High-Rise Studio Condo.,53412784,Mark,Manhattan,Midtown,40.74357,-73.98466,Private room,600,1,0,,,1,0 +10381948,Spacious Cozy Greenpoint Apartment,29741970,Jacob,Brooklyn,Greenpoint,40.72508,-73.94488,Private room,80,2,14,2017-03-11,0.37,1,0 +10382430,Private bedroom located in Bushwick,53445174,Robert,Brooklyn,Bushwick,40.68597,-73.91417,Private room,35,1,1,2016-01-31,0.02,1,0 +10383284,Bushwick Suite,53411078,Caroline,Brooklyn,Bushwick,40.6863,-73.91365,Private room,75,1,1,2018-06-24,0.08,1,158 +10383291,"Comfortable, cozy, dorm-like room",53450065,Maria,Queens,Flushing,40.72211,-73.80908,Private room,30,1,0,,,1,0 +10385262,UPPER WEST SIDE GEM ON PARK BLOCK,53462017,Harry,Manhattan,Upper West Side,40.78923,-73.96802,Entire home/apt,135,30,1,2019-06-21,1,1,30 +10386341,Minutes to the Metro!!!,53468381,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69507,-73.94332,Entire home/apt,125,2,202,2019-06-24,4.76,1,276 +10386831,Cozy Room in Boerum Hill,15895218,Amy,Brooklyn,Gowanus,40.68444,-73.98847,Private room,62,2,1,2016-01-18,0.02,2,0 +10386936,Private Room in Williamsburg!,53471415,Mark,Brooklyn,Williamsburg,40.71141,-73.95155,Private room,1002,365,10,2016-05-19,0.25,1,365 +10387839,Cute 2 bed Williamsburg railroad,53477091,Elena,Brooklyn,Williamsburg,40.71436,-73.95445,Entire home/apt,100,1,5,2016-07-06,0.12,1,0 +10388512,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM A,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69317,-73.82527,Private room,50,1,96,2018-11-22,3.77,5,0 +10390252,NEW listing! Large Prospect Park 1 Bed,2581816,Lindsay,Brooklyn,Flatbush,40.65003,-73.96,Entire home/apt,80,7,0,,,1,0 +10390256,East Village Apartment,3078092,Amanda,Manhattan,East Village,40.73144,-73.98355,Private room,75,1,0,,,1,0 +10390481,STUDIO APARTMENT IN LUXURY BUILDING,53492531,Kyla,Brooklyn,Crown Heights,40.67778,-73.96091,Entire home/apt,60,1,2,2016-01-25,0.05,1,0 +10390902,Cozy spot off L train - 20min>City,53495399,Blake,Brooklyn,Bushwick,40.70526,-73.91964,Private room,75,1,1,2016-03-24,0.02,1,0 +10393619,Spacious room in large funky home!,12258594,Rosa,Brooklyn,Crown Heights,40.66386,-73.93876,Entire home/apt,65,3,8,2016-05-04,0.19,2,0 +10401534,West Village Private Bedroom,51309850,Danielle,Manhattan,Greenwich Village,40.73013,-74.00172,Private room,80,1,1,2016-03-13,0.02,1,0 +10403070,Brownstone in Brooklyn,52657843,Yuchen,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94723,Private room,130,3,6,2017-09-09,0.23,1,0 +10403199,Mid-Century Museum Sleepover,29065752,Cullen,Brooklyn,Williamsburg,40.71863,-73.94528,Entire home/apt,333,7,0,,,1,365 +10403231,Cozy Studio in Excellent Location,9870528,Amit,Manhattan,Chelsea,40.73968,-73.99693,Entire home/apt,120,1,0,,,1,0 +10403667,Nice studio with view of the UN,46714717,Gabriella,Manhattan,Murray Hill,40.74796,-73.97018,Entire home/apt,144,3,0,,,1,0 +10403922,Brooklyn Park Slope Queen Bed,33213436,Alec,Brooklyn,Gowanus,40.67991,-73.98368,Private room,149,1,93,2019-02-18,2.48,8,365 +10405694,Modern 2 bedroom apt in Bushwick,12306936,Liz,Brooklyn,Bushwick,40.68413,-73.90731,Entire home/apt,150,3,45,2017-09-23,1.10,1,129 +10405711,Williamsburg Luxury,9679291,Indiana,Brooklyn,Williamsburg,40.71077,-73.96259,Shared room,60,1,1,2016-03-26,0.03,1,0 +10405891,Charming & bright Williamsburg loft,2360150,Simona,Brooklyn,Greenpoint,40.72025,-73.95195,Entire home/apt,190,2,0,,,1,0 +10407271,Luxury Bushwick Apartment,53582731,Jayson,Brooklyn,Bushwick,40.69995,-73.92937,Entire home/apt,100,5,14,2018-06-28,0.33,1,1 +10407723,Fort Greene Hideaway,814747,Maeve,Brooklyn,Fort Greene,40.68805,-73.96952,Entire home/apt,150,2,131,2019-04-29,3.09,2,0 +10408285,Charming Brooklyn One-Bed,3113491,Michelle,Brooklyn,Crown Heights,40.67008,-73.9571,Entire home/apt,170,3,1,2016-12-03,0.03,1,354 +10409669,Cool Large Room In 3 Min From Manhattan,35421139,Shaun,Queens,Long Island City,40.7457,-73.94497,Private room,65,4,38,2019-06-30,0.93,1,12 +10409905,Beautiful One Bedroom East Harlem Apt,8775113,Omar,Manhattan,East Harlem,40.79037,-73.9428,Entire home/apt,90,2,1,2017-06-04,0.04,1,0 +10411679,Cute Comfy Room in Greenpoint,15235299,Hai-Hsin,Brooklyn,Greenpoint,40.73345,-73.95973,Private room,55,2,26,2019-03-25,0.81,2,0 +10412006,Best street in New York.,53618094,Matthew,Manhattan,Nolita,40.72265,-73.99493,Entire home/apt,250,1,0,,,1,0 +10412649,Large bright room in prime Bushwick,36892974,Nikolai,Brooklyn,Bushwick,40.69886,-73.92957,Private room,80,10,0,,,1,0 +10413474,Beautiful 2 bed Artists Loft - Williamsburg,53627366,Nick,Brooklyn,Williamsburg,40.71156,-73.96343,Entire home/apt,319,3,75,2019-06-25,1.84,1,112 +10413492,Great apartment (midtown area ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76343,-73.99391,Entire home/apt,120,30,5,2018-04-16,0.13,31,345 +10413576,Quiet home free ferry to Manhattan,53627900,Mahmood,Staten Island,New Brighton,40.64465,-74.09272,Private room,50,1,149,2019-07-01,3.70,1,276 +10414065,Large Private Minimalist Loft Room,525663,Steven,Manhattan,Chinatown,40.71489,-73.991,Private room,100,1,0,,,1,0 +10417282,Best bedroom in heart of Astoria,53652520,Allie,Queens,Astoria,40.76771,-73.91675,Private room,60,1,0,,,1,0 +10423846,Renovated sunny studio,24796157,Soonbin,Brooklyn,Fort Greene,40.68797,-73.97288,Entire home/apt,175,5,16,2019-05-20,0.46,1,129 +10425572,Large Bedroom in 2BR spacious brownstone,265152,Marta,Brooklyn,Fort Greene,40.68665,-73.9774,Private room,67,3,14,2019-03-19,0.41,3,0 +10427351,Doorman Studio Gym Deck!5108,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79141,-73.97345,Entire home/apt,140,30,0,,,96,338 +10429094,Private bedroom & 1/2 bath in Wburg,6320146,Caroline,Brooklyn,Williamsburg,40.71855,-73.9438,Private room,90,2,0,,,1,0 +10429566,Gorgeous Apartment on Prime waterfront location,52616278,Dominique,Brooklyn,Williamsburg,40.71966,-73.96265,Entire home/apt,165,30,14,2019-05-28,0.36,1,330 +10433284,"Awesome location, and spacious room",5487321,Xinxin,Manhattan,Gramercy,40.73562,-73.98308,Private room,90,1,0,,,1,0 +10434806,Studio near to TIME SQUARE,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76486,-73.99479,Entire home/apt,150,30,8,2018-05-04,0.20,31,298 +10435733,Cute Spacious Williamsburg Apt,5927655,Ann,Brooklyn,Williamsburg,40.71892,-73.95616,Private room,115,3,27,2018-10-29,0.69,1,56 +10435862,Two Beds OR KingSize Bed by Subway; Washer/Dryer,9372363,Tj,Brooklyn,Midwood,40.61465,-73.96065,Private room,65,2,8,2019-04-07,0.19,2,321 +10438662,Kick Back and Relax in this Oasis,53773419,Wesleyan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.94805,Private room,70,3,33,2018-09-03,0.81,1,365 +10439129,East Village Exposed Brick Studio,4289557,Dimitri,Manhattan,East Village,40.72647,-73.99061,Entire home/apt,219,2,3,2019-05-31,0.09,1,306 +10444139,Budget Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67833,-73.96904,Private room,45,1,204,2019-07-04,4.82,13,324 +10445597,Cosy room in a Brooklyn brownstone,299236,Eleonora,Brooklyn,Bedford-Stuyvesant,40.68379,-73.9405,Private room,55,1,2,2019-05-19,0.06,1,365 +10446429,Studio in West Village/Cornelia St,11386786,Sam,Manhattan,West Village,40.7327,-74.00341,Private room,80,1,0,,,1,0 +10446926,Renovated Harlem Private Room,53819985,Matthew,Manhattan,Harlem,40.81699,-73.94254,Private room,45,1,15,2016-10-28,0.35,1,0 +10446989,Large Room with own entrance: Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67887,-73.97006,Private room,65,1,64,2019-07-04,1.53,13,329 +10447691,Sunny room in Lower East Side Apt!,183151,Lynh,Manhattan,Lower East Side,40.71578,-73.98201,Private room,47,1,0,,,1,0 +10448095,Private Studio in Beautiful Duplex,11742675,Malik,Manhattan,Upper East Side,40.77686,-73.95084,Private room,65,5,7,2017-10-30,0.19,2,0 +10449807,Charming Lofty 1bd on Quiet Street,2981910,Daphne,Manhattan,Greenwich Village,40.73466,-73.99539,Entire home/apt,229,1,0,,,1,0 +10450820,Beautiful bright huge pre-war in Williamsburg,1918272,Seva,Brooklyn,Williamsburg,40.71419,-73.94368,Entire home/apt,160,5,1,2019-01-01,0.16,1,305 +10452249,3 Bedroom 1.5 Bath Duplex,49167739,Carine,Manhattan,SoHo,40.72768,-74.00233,Entire home/apt,500,5,24,2019-04-14,0.58,2,321 +10452541,Artsy Bushwick NY 2 Beds with laundry & balcony,3370169,Lydia,Brooklyn,Bushwick,40.70086,-73.93063,Entire home/apt,120,2,99,2019-06-21,2.46,1,288 +10452737,"Large Room, High Floor w/ Views - Times Square",6158370,David,Manhattan,Chelsea,40.75126,-73.99498,Private room,139,3,0,,,1,0 +10454844,Tribeca/Soho Garden Apartment,53327491,Scott,Manhattan,Tribeca,40.71934,-74.00998,Entire home/apt,400,6,40,2019-06-11,1.02,1,105 +10458099,room in Bushwick,53884572,Hans,Brooklyn,Bedford-Stuyvesant,40.69433,-73.93262,Private room,45,5,2,2019-05-27,0.06,1,342 +10460113,BELLA CASA-Private Room-queen bed-historical NYC!!,16480700,Eddie&Vlad,Manhattan,Harlem,40.82021,-73.95307,Private room,87,1,80,2018-12-28,2.29,7,55 +10469388,1 br in the Heart of Williamsburg,32812120,Bjorn,Brooklyn,Williamsburg,40.71986,-73.96046,Private room,50,3,0,,,2,0 +10470258,Stylish & Inviting Brownstone Apt,53955282,Jennifer And Kenneth,Manhattan,East Harlem,40.80985,-73.93838,Entire home/apt,115,3,118,2019-06-30,2.85,1,157 +10471763,"Awesome Apartment, Stunning Views",778746,Paul,Brooklyn,Williamsburg,40.71319,-73.96406,Private room,51,1,0,,,1,0 +10472004,☆ 3min walk to train station. Cute Room!,53966115,Nora,Brooklyn,Bedford-Stuyvesant,40.69693,-73.93725,Private room,43,30,5,2019-05-01,0.12,2,311 +10473052,Room in the heart of Williamsburg,41832478,Caroline,Brooklyn,Williamsburg,40.71852,-73.95897,Private room,70,1,0,,,1,0 +10473676,Modern Apartment in Harlem,6385674,Daniel,Manhattan,Harlem,40.80639,-73.95551,Entire home/apt,125,3,7,2019-03-03,0.19,1,0 +10473730,Private Room in Sunlit & Art-filled Apartment,9383056,Dave,Brooklyn,Bedford-Stuyvesant,40.69664,-73.93628,Private room,55,5,3,2017-07-26,0.09,1,0 +10474780,Private Room next to park,40312267,Trini,Brooklyn,Flatbush,40.65398,-73.96377,Private room,50,2,5,2016-05-11,0.12,1,0 +10475047,Large Bohemian Room in Brownstone Apartment,24094081,Isabella,Brooklyn,Bushwick,40.69808,-73.93174,Private room,60,1,1,2016-09-13,0.03,1,0 +10476556,Close to zoo and Botanical Gardens,53717769,Travis,Bronx,Parkchester,40.83953,-73.85717,Entire home/apt,88,1,121,2019-06-23,2.90,1,170 +10476782,Artist Apartment with Tons of Space,47573846,Jemier,Bronx,Wakefield,40.88808,-73.86017,Entire home/apt,85,20,10,2019-06-04,0.24,1,277 +10477767,Spacious & Relaxing Garden Apartment,347475,Chialing,Brooklyn,Columbia St,40.68606,-74.00122,Entire home/apt,275,2,18,2017-05-07,0.46,1,292 +10478114,cozy large room located in Brooklyn,52172297,Dannale,Brooklyn,Bedford-Stuyvesant,40.68168,-73.93574,Private room,65,1,9,2019-06-23,0.24,1,343 +10478482,Park Slope 2 BR Long Term Rental,9122037,Chris,Brooklyn,Park Slope,40.66564,-73.97666,Entire home/apt,135,30,0,,,1,341 +10478526,A cozy two bedroom apartment,16300728,Hamid,Brooklyn,Sunset Park,40.64953,-74.00011,Private room,40,2,9,2019-07-01,0.25,1,20 +10482237,Interfaith Retreat Guest Rooms (Ganges),16677326,Alex And Zeena,Manhattan,Chelsea,40.74751,-73.99483,Private room,85,1,165,2019-06-24,3.96,12,338 +10482409,Interfaith Retreat Guest Rooms (Faith),16677326,Alex And Zeena,Manhattan,Chelsea,40.74896,-73.99657,Private room,85,1,146,2019-06-16,3.62,12,352 +10482554,Interfaith Retreat Guest Rooms (Mary),16677326,Alex And Zeena,Manhattan,Chelsea,40.74973,-73.99515,Private room,85,1,162,2019-05-22,3.91,12,344 +10484019,Beautiful and bright garden studio,1692144,Cecil,Brooklyn,South Slope,40.66388,-73.98587,Entire home/apt,120,1,5,2016-09-07,0.12,1,0 +10487548,Stylish peaceful oasis,587918,Elle,Manhattan,East Village,40.72315,-73.98251,Entire home/apt,220,2,48,2019-06-14,1.21,1,135 +10488146,Large Sunny Private Room w/Balcony & Roof,2355573,Sarah,Brooklyn,Williamsburg,40.71957,-73.94199,Private room,80,5,81,2019-06-27,1.96,2,308 +10488505,3 bedroom duplex next to Central Pk,5162192,Amy,Manhattan,Upper West Side,40.79783,-73.96405,Entire home/apt,275,30,10,2018-12-28,0.25,12,219 +10489240,Entire 2 Bedroom in a smart new house,16782573,Dorina,Queens,Middle Village,40.71852,-73.88373,Entire home/apt,125,4,93,2019-07-02,2.22,4,306 +10489896,Extra Bed in a Cozy & Sunny Studio,54074349,Razan,Manhattan,Chelsea,40.74398,-73.99664,Shared room,46,1,0,,,1,0 +10489923,Beautiful Spacious NYC Apartment,54074445,Catherine,Manhattan,Roosevelt Island,40.76859,-73.94359,Entire home/apt,65,1,3,2016-02-15,0.07,1,0 +10490073,Charming big room by Propect Park,2503478,Hajra,Brooklyn,Prospect-Lefferts Gardens,40.65436,-73.96179,Private room,58,1,5,2017-05-18,0.13,1,2 +10491207,Priv. Room in Bushwick near L Train,54081802,Urs,Queens,Ridgewood,40.70017,-73.91014,Private room,60,1,0,,,1,0 +10491594,one bedroom apt in a new house,16782573,Dorina,Queens,Middle Village,40.71632,-73.88297,Entire home/apt,115,4,6,2018-11-13,0.14,4,314 +10497886,Lots of Light Brooklyn Apartment,21820535,Patrice,Brooklyn,Crown Heights,40.67104,-73.93859,Private room,65,3,0,,,1,0 +10498577,Cozy bedroom in Astoria,54123180,Shirley (Fred),Queens,Astoria,40.75869,-73.91899,Private room,49,1,5,2019-05-26,0.13,1,332 +10499025,Light-filled Greenpoint 2 bedroom apartment,5829904,Erin,Brooklyn,Greenpoint,40.72709,-73.95326,Entire home/apt,70,3,2,2018-04-12,0.11,1,0 +10500033,Big Manhattan room w. private bath,54130768,Aida,Manhattan,Washington Heights,40.85823,-73.93612,Private room,95,1,0,,,1,158 +10500222,Adorable West Village Apartment,22364252,Federica,Manhattan,West Village,40.73492,-74.00457,Entire home/apt,196,15,2,2016-04-01,0.05,1,31 +10500406,Cozy UES bedroom with private bath,16572048,Melissa,Manhattan,Upper East Side,40.76574,-73.95915,Private room,80,5,5,2016-09-07,0.12,1,0 +10502523,Private Room For 1 w/ Separate Entrance Student / Intern / Traveler,43392243,Rita,Staten Island,Concord,40.60077,-74.07788,Private room,35,4,73,2019-05-01,2.10,4,320 +10509662,Spacious bedroom available in SoHo,8255336,Darren,Manhattan,SoHo,40.72302,-74.00487,Private room,82,5,12,2018-12-17,0.30,2,0 +10512575,Prime UWS studio with loft bed South expo !!,26584499,Ofir,Manhattan,Upper West Side,40.7832,-73.98189,Entire home/apt,136,31,2,2019-05-13,0.10,8,365 +10512812,Bright central Manhattan bedroom,6429683,Andrew,Manhattan,Upper East Side,40.76278,-73.96638,Private room,75,1,89,2019-06-29,2.10,1,268 +10512932,Beautiful 1 bedroom apt.,40861618,Greg,Manhattan,Inwood,40.86818,-73.92708,Entire home/apt,68,6,24,2019-06-26,0.60,1,0 +10513228,Beautiful room in HUGE 2 bedroom loft style apt,853118,Felix,Brooklyn,Bedford-Stuyvesant,40.68709,-73.92059,Private room,64,4,25,2019-05-27,0.59,1,18 +10513499,Sunny 1 bedroom Apartment,54206554,Pippa,Brooklyn,Bedford-Stuyvesant,40.68577,-73.95179,Entire home/apt,100,3,1,2016-03-22,0.02,1,0 +10514166,Spacious Room in hip Williamsburg,48170471,Johanna,Brooklyn,Williamsburg,40.71886,-73.96234,Private room,65,2,2,2016-03-02,0.05,2,0 +10514203,Giant Landmark Apartment in the Sky,3710888,Lisa,Brooklyn,Park Slope,40.67546,-73.97528,Private room,350,365,0,,,1,364 +10514879,"2BR Luxury Sunny Apt, East Village",4118478,Katherine,Manhattan,East Village,40.72948,-73.98885,Entire home/apt,450,1,1,2016-03-27,0.03,1,0 +10516610,Lovely Room in Historic Brownstone,54210823,Kristin,Manhattan,Upper West Side,40.79004,-73.97308,Private room,99,1,0,,,1,157 +10519216,Beautiful LARGE one bedroom apt,54235059,Emmett,Queens,Long Island City,40.74399,-73.95321,Entire home/apt,195,1,0,,,1,0 +10520825,1br Large furnished bedroom in cool Bushwick,54242258,Steven,Brooklyn,Bushwick,40.70206,-73.92964,Private room,48,1,1,2016-10-02,0.03,1,0 +10522830,Beautiful garden studio in Bushwick,1855214,Marie-Adele,Brooklyn,Bushwick,40.69366,-73.91608,Entire home/apt,85,2,99,2019-06-17,2.50,1,29 +10524082,Two blocks from Bedstuy-Nostrand G,54262760,Howard,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95387,Private room,70,1,0,,,1,0 +10524365,Parlor apt 1 block from Times Sq,48705078,Mike,Manhattan,Hell's Kitchen,40.76165,-73.99062,Entire home/apt,180,2,136,2019-06-30,3.45,1,253 +10524983,Midtown West luxury one bedroom,49380531,Autumn,Manhattan,Hell's Kitchen,40.76696,-73.99139,Private room,90,1,0,,,1,0 +10525616,Prime Park Slope Apartment,14076423,J,Brooklyn,Park Slope,40.67626,-73.98211,Entire home/apt,175,7,43,2018-08-01,1.07,1,0 +10525911,Big Bright Quiet Williamsburg Townhouse Family Apt,41177070,Dennis,Brooklyn,Williamsburg,40.71402,-73.94432,Entire home/apt,245,3,16,2018-09-24,0.40,2,66 +10526335,Awesome Loft in Brooklyn-- easy access to the city,13200818,Jay,Brooklyn,Bushwick,40.69913,-73.91814,Private room,45,3,11,2018-04-16,0.31,1,0 +10526745,Large Private Bedroom in Comfy Home,54279433,Mfoniso,Queens,Sunnyside,40.74286,-73.91635,Private room,34,1,1,2016-01-26,0.02,1,0 +10526930,UES Studio with roof access,54280519,Russell,Manhattan,Upper East Side,40.76705,-73.95126,Entire home/apt,125,1,0,,,1,0 +10527142,Beautiful and Cozy Garden Level Brooklyn Townhouse,54282449,Michael,Brooklyn,Bedford-Stuyvesant,40.68449,-73.92773,Entire home/apt,75,1,38,2019-06-25,3.79,1,195 +10527274,"Luxury Apt, Near Subway, Perfect for Work or Play!",54283244,Kara,Brooklyn,Bedford-Stuyvesant,40.67895,-73.92851,Entire home/apt,125,3,75,2019-07-02,3.27,1,316 +10527546,Central Park Quiet 1BR,14290739,Stanton,Manhattan,Upper West Side,40.79182,-73.96564,Entire home/apt,200,31,8,2018-08-14,0.22,3,342 +10534018,Sunny Studio ~ Great Location!,17500155,Karol,Queens,Long Island City,40.74775,-73.94797,Entire home/apt,100,12,5,2016-07-25,0.13,1,0 +10537651,Beautiful Central Harlem Apartment,2650644,Bianca,Manhattan,Harlem,40.81306,-73.94141,Entire home/apt,70,7,12,2019-01-19,0.33,1,38 +10537769,Private Room in Greenpoint Brooklyn,54339185,Julio,Brooklyn,Greenpoint,40.72963,-73.94937,Private room,45,1,0,,,1,0 +10538353,Beautiful designer studio on 1st,7203997,Gosia,Brooklyn,Park Slope,40.67094,-73.97388,Entire home/apt,154,3,123,2019-06-23,3.01,2,289 +10539341,"Sunny, one bedroom apartment UES",54120025,Emma,Manhattan,Upper East Side,40.78271,-73.9451,Entire home/apt,300,31,1,2017-09-04,0.04,1,358 +10539491,Kid Friendly Central Park West Apt.,54348871,Suzette,Manhattan,Upper West Side,40.79753,-73.96211,Entire home/apt,250,1,88,2019-06-20,2.13,1,329 +10539779,"Our home away from home +“Cosy studio”",54351163,Sonia,Manhattan,East Village,40.72834,-73.98048,Entire home/apt,140,7,65,2019-06-25,1.65,1,242 +10540337,Comfy Queen Bed in Spacious Room,54353888,David,Manhattan,Harlem,40.83338,-73.95051,Private room,59,5,26,2018-04-22,0.61,1,0 +10540383,Stylish Bedroom (16 min from TIMES SQUARE),40221604,John,Manhattan,Harlem,40.82385,-73.94687,Private room,80,2,86,2019-06-22,2.43,3,63 +10540910,Greenpoint 2BR in Townhouse w/Parking,53713798,Maryla,Brooklyn,Greenpoint,40.7264,-73.95405,Entire home/apt,230,5,33,2019-06-30,0.94,1,26 +10541080,Gorgeous & cozy studio in Manhattan,36710280,Carolina,Manhattan,Upper West Side,40.78975,-73.97001,Entire home/apt,150,1,4,2017-04-18,0.11,1,0 +10542066,Cozy Room/ 10min LGA #2,51531044,Angela,Queens,Jackson Heights,40.75009,-73.87578,Private room,45,1,78,2019-03-22,1.94,4,337 +10542174,Luxury 1-Bdrm in Downtown Brooklyn,10099253,Ashley,Brooklyn,Fort Greene,40.69406,-73.98102,Entire home/apt,144,3,1,2016-02-21,0.02,1,0 +10542347,Mega comfy pullout QN - clean apartment,30423241,Nick,Brooklyn,Greenpoint,40.7299,-73.95782,Private room,44,4,47,2019-05-21,1.30,2,0 +10542658,1 bed room apartment in Greenpoint,2470568,Jonathan,Brooklyn,Greenpoint,40.7235,-73.94203,Entire home/apt,75,1,0,,,1,0 +10542679,Cozy Guest Room in Brooklyn,18802626,Brittni,Brooklyn,Bedford-Stuyvesant,40.69367,-73.93286,Private room,45,10,25,2019-03-03,0.62,1,29 +10544239,Charming East Village apartment,16911296,Gurdane,Manhattan,East Village,40.72997,-73.98633,Private room,129,1,11,2016-10-31,0.27,1,0 +10544439,Room in Soho Apartment,54375099,Rob,Manhattan,SoHo,40.72566,-74.00275,Private room,75,1,1,2016-03-13,0.02,1,0 +10545027,Clinton Hill - pied-à-terre,54378184,Eej,Brooklyn,Clinton Hill,40.68895,-73.96489,Entire home/apt,220,12,13,2019-06-08,0.31,3,354 +10545815,Whole Apt. in East Williamsburg,4148248,Guillermo,Brooklyn,Williamsburg,40.70687,-73.93981,Entire home/apt,125,4,138,2019-06-01,3.50,2,37 +10546254,Fort Greene Studio-Flat,54378184,Eej,Brooklyn,Fort Greene,40.68706,-73.97065,Entire home/apt,150,30,20,2019-06-09,0.47,3,326 +10546363,Uber Cool East Village Apartment,18030603,Madeline,Manhattan,Gramercy,40.73331,-73.98229,Private room,63,1,3,2016-03-27,0.07,1,0 +10546568,Bright Studio Loft Prime Location,8007003,Bridget,Manhattan,West Village,40.73557,-74.006,Entire home/apt,120,1,0,,,1,0 +10546606,Cozy Private Room in Spacious Apt,13558726,Dory,Brooklyn,Bedford-Stuyvesant,40.68645,-73.95711,Private room,45,7,0,,,1,0 +10546729,Beautiful bright modern apartment,1520623,Bec,Brooklyn,Columbia St,40.68591,-74.00164,Entire home/apt,120,7,0,,,1,0 +10548768,Newly Renovated 1 Bedroom in NYC,54401446,Tucker,Manhattan,Harlem,40.83113,-73.94924,Entire home/apt,125,1,0,,,1,0 +10548910,Cozy Spacious 1 Bedroom Apartment,52262589,Samantha,Manhattan,Kips Bay,40.73988,-73.97968,Entire home/apt,450,2,2,2016-10-05,0.05,1,0 +10549650,Prime Location Luxury Tribeca Loft,25996073,Jonathan,Manhattan,Tribeca,40.71991,-74.00641,Entire home/apt,1250,30,0,,,1,342 +10551015,Big cozy room with 2 windows,880323,Vincent,Brooklyn,Bushwick,40.69447,-73.92213,Private room,36,2,1,2016-02-07,0.02,1,0 +10551695,Sunny Apt in Cultural Neighborhood,54422839,Sarah,Brooklyn,Prospect Heights,40.68018,-73.96572,Private room,48,3,4,2017-08-22,0.10,1,0 +10553095,Beautiful Guest Room(B),44547688,Carol,Brooklyn,East New York,40.67283,-73.87785,Private room,50,1,35,2019-06-11,0.92,2,365 +10554070,Loft Room near to NYC Attractions,6650002,Christina,Queens,Long Island City,40.75951,-73.92821,Private room,59,3,42,2019-06-13,0.99,1,3 +10560986,Sublet Beautiful Room in Brooklyn!,45531690,Anjulika,Brooklyn,Greenpoint,40.72853,-73.95533,Private room,39,1,1,2016-01-15,0.02,1,0 +10561771,La Casa Azul,30356325,Joel,Manhattan,Harlem,40.80734,-73.94666,Entire home/apt,70,2,4,2016-04-11,0.10,1,0 +10562085,Up to 1 Week Rental in Williamsburg,5769963,Anoush,Brooklyn,Williamsburg,40.7172,-73.95557,Entire home/apt,150,1,0,,,1,0 +10562990,Cozy Brooklyn One Bedroom,9932811,Alison,Brooklyn,Flatbush,40.64875,-73.96978,Entire home/apt,100,5,2,2016-04-11,0.05,1,0 +10563076,Large Sunny East Williamsburg Loft,15105293,Ryan,Brooklyn,Williamsburg,40.70777,-73.9435,Entire home/apt,80,6,0,,,1,0 +10563686,Large Private 2BR Apartment by Park,1258469,Mark,Brooklyn,Fort Greene,40.68983,-73.97327,Entire home/apt,125,1,75,2019-05-11,1.81,1,171 +10564375,Chelsea Studio + Private Garden!,304651,Egbert Miles,Manhattan,Chelsea,40.74666,-74.00201,Entire home/apt,180,1,0,,,1,0 +10564483,Big room in East Williamsburg Loft,17012496,Lisa,Brooklyn,Williamsburg,40.71987,-73.93705,Private room,45,4,1,2016-08-14,0.03,1,0 +10564616,Beautiful 2bed apt near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76467,-73.99422,Entire home/apt,185,30,8,2019-03-09,0.21,31,332 +10566341,Front Bedroom in Beautiful Apt,17191693,Moss,Brooklyn,Williamsburg,40.70732,-73.95466,Private room,60,2,18,2017-01-04,0.46,2,0 +10567332,Private room 1 block from Bedford L,22499760,Jonny,Brooklyn,Williamsburg,40.71532,-73.95352,Private room,40,1,1,2016-01-17,0.02,1,0 +10568208,Luxurious Private Suit in 3BR Apt,17191693,Moss,Brooklyn,Williamsburg,40.70692,-73.95501,Private room,80,3,35,2017-02-22,0.85,2,0 +10568646,Spacious apt in hip Williamsburg,48170471,Johanna,Brooklyn,Williamsburg,40.71906,-73.96338,Entire home/apt,85,2,0,,,2,0 +10573225,Charming Spacious Park Slope Studio,54539364,Ildiko,Brooklyn,South Slope,40.6651,-73.98307,Entire home/apt,135,3,134,2019-06-16,3.18,1,241 +10574818,Your stay at NYC Artist's Home,54548232,Anna,Manhattan,Harlem,40.825,-73.95226,Private room,70,2,84,2018-12-31,2.23,2,311 +10574909,Grand Loft in Prime Williamsburg,1802807,Lily,Brooklyn,Williamsburg,40.71412,-73.95895,Entire home/apt,600,30,7,2019-05-17,0.17,2,67 +10575777,One Bedroom w/Huge Window & Ceiling,25475028,Mark,Manhattan,Chinatown,40.71448,-73.99157,Private room,110,1,1,2016-03-28,0.03,1,0 +10575811,Large studio in elevator building Cobble Hill,14611780,Paige,Brooklyn,Columbia St,40.68928,-73.99903,Entire home/apt,105,1,5,2018-12-30,0.14,1,0 +10576172,LRG PRVT ROOM IN NYC NEAR METRO & ACTIVITIES,5479882,Nata,Manhattan,Harlem,40.80512,-73.953,Private room,100,2,72,2019-07-02,2.08,1,19 +10576212,"Sunny, charming room in a 2 bedroom",5304248,Drew,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95,Private room,65,5,8,2017-09-19,0.21,1,0 +10576404,Perfect Studio in the Perfect Location on the UES,10406845,Amanda,Manhattan,Upper East Side,40.76952,-73.95688,Entire home/apt,125,14,28,2019-05-18,1.29,1,22 +10576498,Cozy Room in an Eclectic Vintage Styled Apt.,1424084,Claire,Brooklyn,Bushwick,40.69349,-73.91109,Private room,50,1,9,2019-05-26,0.92,1,179 +10585031,Luxury affordable in Williamsburg!,48988714,Luigi,Brooklyn,Williamsburg,40.71362,-73.95617,Entire home/apt,360,1,4,2019-06-22,0.18,3,201 +10586622,Beautiful Apt w/ rooftop view,14944507,Jason & Carlos,Brooklyn,Park Slope,40.67225,-73.97357,Entire home/apt,160,5,16,2019-05-08,0.40,1,11 +10587891,Chelsea Apartment (2 bedroom),32712155,Russell,Manhattan,Chelsea,40.7408,-74.00127,Entire home/apt,225,1,0,,,1,0 +10589384,Beautiful Views & Apt in Brooklyn!,1558246,Modupe,Brooklyn,Fort Greene,40.68811,-73.97621,Private room,105,3,0,,,1,0 +10591658,Beautiful Studio in Soho - Greenwich Village,14077910,Sabrina And Antoine,Manhattan,Greenwich Village,40.72843,-73.9999,Entire home/apt,175,60,28,2019-03-29,0.70,1,126 +10592839,Light-filled Bushwick apartment,4745560,Michelle,Brooklyn,Bushwick,40.70158,-73.91851,Entire home/apt,130,1,0,,,1,0 +10593675,"La Spezia room. Clean, quiet and comfortable bed",2787,John,Brooklyn,Bensonhurst,40.60951,-73.97642,Shared room,79,1,15,2018-09-29,0.43,6,180 +10595000,Spacious Room in Park Slope,16919131,Joseph,Brooklyn,Park Slope,40.6668,-73.97713,Private room,90,2,56,2019-05-29,1.34,1,60 +10595374,Elegant Chic Brooklyn Duplex House. Private Deck,13731605,Antonella,Brooklyn,Crown Heights,40.6764,-73.93819,Entire home/apt,283,4,92,2019-07-03,2.34,2,234 +10596856,Luxurious 1 King bedroom in NYC.,54675040,Christopher,Queens,Woodside,40.74706,-73.90434,Private room,50,1,0,,,1,0 +10600032,Very nice 1 bedroom house/bungalow,53894093,Rafael,Staten Island,Midland Beach,40.57411,-74.09436,Entire home/apt,100,2,0,,,1,0 +10605445,Big Sunny 3rd fl Room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67897,-73.9709,Private room,70,1,238,2019-07-05,5.87,13,313 +10605897,Chic Modern Luxury Apartment. 2 bed 2 bath. Patio,13731605,Antonella,Brooklyn,Crown Heights,40.67689,-73.93967,Entire home/apt,199,4,52,2019-06-24,1.31,2,242 +10608951,BedStuy Parlor near A&J Trains JFK,43816209,Shawn,Brooklyn,Bedford-Stuyvesant,40.68616,-73.92514,Private room,45,4,30,2019-06-29,0.77,1,286 +10609249,Magnificent New 2 BR near park Ave,1515120,Dino,Manhattan,Midtown,40.755,-73.96562,Private room,325,3,9,2016-12-28,0.23,1,88 +10609963,"Sleek Loft, Premium Location",5179817,Damien,Manhattan,Flatiron District,40.74102,-73.98961,Entire home/apt,275,1,0,,,1,0 +10611168,Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76295,-73.99432,Entire home/apt,130,30,6,2019-06-15,0.15,31,331 +10612067,Beautiful Upper East Side Apartment,24938988,Eli,Manhattan,Upper East Side,40.77032,-73.95268,Entire home/apt,179,1,138,2019-06-16,3.30,1,252 +10612199,Serene luxury in Harlem,54761069,Erika,Manhattan,Harlem,40.80708,-73.95211,Private room,80,3,10,2019-01-05,0.28,1,332 +10612564,Apartment share near Lincoln Center,54763152,Mary Sue,Manhattan,Upper West Side,40.77929,-73.98513,Private room,99,4,68,2019-06-06,1.62,1,57 +10614204,Bright Clean North Central Park,13620283,Brenn,Manhattan,Harlem,40.8027,-73.94629,Entire home/apt,135,3,16,2019-01-01,0.39,1,0 +10615883,Huge Sunny Morocco-Chic Music Pad,4966907,Hatim,Brooklyn,Bedford-Stuyvesant,40.69506,-73.95019,Entire home/apt,145,3,41,2019-05-04,1.00,1,0 +10625484,"Midcentury Feel, Hipster Pad (Hipsters Only)",4274594,Matt,Brooklyn,Bedford-Stuyvesant,40.6859,-73.9576,Entire home/apt,69,90,43,2018-06-27,1.16,1,0 +10628495,Palatial Prime Crown Heights Apt,5812675,Danny,Brooklyn,Crown Heights,40.66791,-73.95914,Entire home/apt,89,5,0,,,1,0 +10630048,Sunny modern oasis near THE Park,9273561,Nadine,Manhattan,East Harlem,40.79013,-73.94473,Private room,75,2,21,2016-09-19,0.50,1,0 +10631201,Luxury apartment 3BDR with balcony,37806185,David,Manhattan,Murray Hill,40.7441,-73.97224,Shared room,200,1,0,,,1,0 +10634636,Cozy room 15mins Manhattan & 10 LGA,697477,Kesang,Queens,Woodside,40.75427,-73.90646,Private room,55,1,54,2019-06-21,1.28,1,297 +10635913,Murray Hill Studio,54908827,Nina,Manhattan,Murray Hill,40.74976,-73.97748,Entire home/apt,80,1,0,,,1,0 +10636997,One Bedroom Beauty in Bushwick,54917558,Valeria,Brooklyn,Bushwick,40.68678,-73.90629,Entire home/apt,75,2,154,2019-06-29,4.04,1,15 +10637010,Harlem Cottage,11160340,Jerome,Manhattan,Morningside Heights,40.80387,-73.96096,Entire home/apt,90,3,1,2018-04-05,0.07,2,0 +10637554,Private Studio: Landmark Dt (Smart TV/Wifi/Cable),54921733,Louise,Brooklyn,Flatbush,40.64295,-73.96704,Entire home/apt,98,4,106,2019-06-24,2.59,3,273 +10647977,Cozy studio in WaHi,32298504,Cassy,Manhattan,Washington Heights,40.83723,-73.94249,Entire home/apt,70,3,34,2018-10-24,0.81,1,0 +10648971,Large Modern 1 BR on UpperWestSide,10489069,Alexandr,Manhattan,Upper West Side,40.79886,-73.96157,Entire home/apt,132,7,0,,,1,0 +10650510,Furnished room + full amenities,25104068,Michael,Brooklyn,Crown Heights,40.66938,-73.95722,Private room,50,2,24,2019-06-22,1.79,1,47 +10651757,LUX 650SQF Balcony Gym W&D 5119,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.75685,-73.99569,Entire home/apt,250,30,1,2018-11-20,0.13,96,331 +10656360,This is a place in the UES,55036405,Shoaib,Manhattan,Upper East Side,40.77524,-73.94682,Shared room,199,1,0,,,1,0 +10657080,Charming 1bed! sleeps4 SOHO Location!Location!,36199306,Shelby,Manhattan,Nolita,40.72396,-73.99445,Entire home/apt,99,2,43,2018-06-30,1.05,1,0 +10657189,"Charming room in South Williamsburg, Brooklyn.",10571574,Claudia,Brooklyn,Bedford-Stuyvesant,40.69892,-73.94645,Private room,77,2,74,2019-06-29,1.88,1,343 +10658564,Cozy 1 Bedroom on Upper east side,21229563,Ankita,Manhattan,Upper East Side,40.78231,-73.94571,Entire home/apt,100,1,0,,,1,0 +10658613,NYC designer loft amazing City view,2645592,De & Claudia,Queens,Astoria,40.75666,-73.91449,Entire home/apt,130,3,50,2019-07-01,1.27,2,352 +10659825,Private room,55060863,Rob,Brooklyn,Midwood,40.61155,-73.96337,Private room,60,1,1,2016-04-18,0.03,1,0 +10660249,Cute Apartment in Hell's Kitchen,55062858,Jennifer,Manhattan,Hell's Kitchen,40.75645,-73.99404,Entire home/apt,200,1,207,2019-06-23,5.01,1,245 +10666314,2 bedroom apartment in Bushwick,9466826,Marion,Brooklyn,Williamsburg,40.70788,-73.93889,Entire home/apt,117,10,3,2019-06-03,0.43,1,1 +10671589,"2 bd, 1.5 bath by Prospect Park",11375436,Sharra,Brooklyn,Windsor Terrace,40.65412,-73.97706,Entire home/apt,89,1,1,2016-03-05,0.02,1,0 +10672698,"COZY FOR 1 TO 2. SHARED BED, SEPARATE FOR A FEE .",8136206,Rob,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95836,Private room,44,2,31,2019-06-30,0.75,2,297 +10674243,Cal King lovely room withTVwasher-dryer in kitchen,40733633,Betsy,Manhattan,Inwood,40.86912,-73.91988,Private room,70,1,1,2016-08-28,0.03,1,312 +10674836,Sunny Room in Prime East Village,51238762,Marcin,Manhattan,East Village,40.73058,-73.98286,Private room,39,1,4,2016-03-03,0.10,1,0 +10675118,Large Renovated Apt. Mins Away From Subway!,2199280,Rosa,Manhattan,Morningside Heights,40.81535,-73.95862,Entire home/apt,150,31,15,2017-05-28,0.36,1,0 +10675218,New York style loft space,7556789,Samuel,Manhattan,East Harlem,40.80523,-73.93929,Private room,60,1,0,,,1,0 +10676786,dreamy Sunset Park one bedroom,12672672,Rebecca,Brooklyn,Sunset Park,40.64179,-74.01147,Entire home/apt,75,1,0,,,1,0 +10676959,Intimate and cozy,47121117,Cindy,Manhattan,Harlem,40.80097,-73.9489,Private room,89,1,8,2017-08-08,0.21,1,0 +10677426,"Bright, Spacious Alcove 1 Bedroom",41474488,Gina,Manhattan,Greenwich Village,40.7276,-74.00075,Entire home/apt,200,2,47,2019-06-16,1.14,1,205 +10679702,Clinton Hill - Garden Apt,48415933,Judene,Brooklyn,Clinton Hill,40.68256,-73.96108,Entire home/apt,124,2,97,2019-07-06,2.45,1,104 +10679740,Spacious Cute room in Williamsburg,55165952,Liz,Brooklyn,Williamsburg,40.71507,-73.94093,Private room,60,1,0,,,1,0 +10680745,Private huge BDR in East Village!,29882817,Nick,Manhattan,East Village,40.72553,-73.9777,Private room,70,4,0,,,1,0 +10681362,BK LOFT: Unique/Modern/Fun,5075354,Ted,Brooklyn,Crown Heights,40.67755,-73.95108,Entire home/apt,100,4,8,2017-11-25,0.19,1,0 +10681555,Doorman XLL Studio Midtown! 5163,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.7653,-73.98536,Entire home/apt,117,30,2,2018-04-26,0.07,96,198 +10681986,Fully furnished room in 2BR NYC Apt,55179950,Emilio,Manhattan,Washington Heights,40.83865,-73.93782,Private room,100,1,0,,,1,0 +10682290,Lovely Room w/backyard in Bushwick,41494545,Connie,Brooklyn,Bushwick,40.70123,-73.91865,Private room,50,5,2,2017-01-04,0.07,1,0 +10682316,Spacious Sanctuary in Bushwick,8655790,Romany,Brooklyn,Bushwick,40.69887,-73.9227,Private room,75,20,1,2018-10-19,0.11,1,93 +10682536,"Bright, central, prime Williamsburg",50296635,Siobhán,Brooklyn,Williamsburg,40.71455,-73.9618,Private room,75,2,3,2016-06-11,0.07,1,0 +10684164,Private 1 Bdrm Apt - Prospect Park,19227044,Adam,Brooklyn,Flatbush,40.64945,-73.9624,Entire home/apt,75,7,1,2016-02-13,0.02,1,0 +10684843,Manhattan 웨스트빌리지에 위치한 고급 스튜디오 (도어맨),55197031,단비,Manhattan,West Village,40.73242,-74.00411,Entire home/apt,150,1,0,,,1,0 +10685403,Urban Bliss - Bushwick,55201743,William,Brooklyn,Bushwick,40.697,-73.92176,Private room,65,1,1,2017-03-16,0.04,1,0 +10685496,"Cozy shared space, heart of Astoria",18192996,Jessica And Danny,Queens,Ditmars Steinway,40.7794,-73.91646,Shared room,22,1,14,2016-12-12,0.34,2,0 +10686287,Brick Wall Charmer in Kips Bay,36998357,Lev,Manhattan,Kips Bay,40.7388,-73.98024,Entire home/apt,120,1,0,,,1,0 +10686350,Chic and Cozy Chinatown Loft,10558652,Teddy,Manhattan,Two Bridges,40.71287,-73.99573,Entire home/apt,320,4,6,2019-01-01,0.18,2,142 +10686406,Master Bedroom w/ en suite,55207670,David,Queens,Astoria,40.76446,-73.92988,Private room,65,2,0,,,1,0 +10686809,Feel at home in Brooklyn,15927582,Hena,Brooklyn,Park Slope,40.67706,-73.98227,Entire home/apt,95,1,0,,,1,0 +10686958,"Lovely and quiet large 1 bedroom in Inwood, NYC",8784903,Terra,Manhattan,Inwood,40.86679,-73.92699,Entire home/apt,115,30,1,2018-08-09,0.09,1,0 +10692885,Cool Chelsea studio for chilling!,2541529,Sarah,Manhattan,Chelsea,40.74237,-74.00063,Entire home/apt,120,2,2,2016-06-08,0.05,1,0 +10695252,"Master Room in 2,300sf Soho Loft",488202,Emlyn,Manhattan,SoHo,40.72112,-74.00039,Private room,150,1,0,,,1,0 +10695321,Ditmas Park Brooklyn private room,55257448,Daniel,Brooklyn,Flatbush,40.64205,-73.96622,Private room,40,5,0,,,1,0 +10696159,Lovely BK 4-BR Duplex with Garden,55261821,Celine,Brooklyn,Park Slope,40.67631,-73.97224,Entire home/apt,425,5,2,2016-07-09,0.05,1,0 +10697652,COZY Brooklyn Apartment 20 minutes to City,55270457,Karolina,Brooklyn,Bushwick,40.68696,-73.91382,Entire home/apt,75,2,179,2019-06-30,4.47,1,123 +10701027,Prospect Heights - Large Sunny Apt,345252,Thomas,Brooklyn,Crown Heights,40.6803,-73.96261,Entire home/apt,150,21,23,2019-06-24,0.57,3,0 +10702489,Charming room in Victorian house,14796247,Sandra And Cary,Brooklyn,Flatbush,40.64266,-73.96492,Private room,49,7,22,2019-02-28,0.54,4,269 +10702506,Large studio w/ doorman and elevator,23778489,Valissa,Manhattan,East Village,40.72215,-73.98496,Entire home/apt,165,4,8,2018-10-21,0.21,1,351 +10702865,Sunny and chic NYC apartment,55300400,Katherine,Manhattan,SoHo,40.72523,-74.00127,Entire home/apt,200,1,0,,,1,0 +10704981,Spacious UWS Studio w/Private Patio,6716450,Lacy,Manhattan,Upper West Side,40.79816,-73.97178,Entire home/apt,175,2,1,2016-10-10,0.03,1,0 +10708300,Beautiful Garden Apartment Close to Train,55334250,Kara & Tyler,Brooklyn,Crown Heights,40.6643,-73.95196,Private room,97,1,209,2019-06-24,5.02,1,9 +10709205,"Light, Large Apt Near Central Park",11774630,Jane,Manhattan,East Harlem,40.79018,-73.94689,Entire home/apt,270,4,171,2019-06-26,4.14,2,15 +10709249,Newly renovated luxury apartment,35761677,Sandrine,Brooklyn,Bedford-Stuyvesant,40.682,-73.91851,Entire home/apt,155,2,156,2019-07-06,3.74,1,223 +10709846,"Sunny, spacious room in Greenpoint",7822683,,Brooklyn,Greenpoint,40.73539,-73.95838,Private room,55,10,2,2016-11-05,0.05,1,0 +10710179,COZY EAST VILLAGE-PRIVATE SPACE,45085848,Joel & Renee,Manhattan,East Village,40.72999,-73.98275,Private room,80,3,72,2019-06-23,1.79,1,133 +10719039,RIVERDALE GRANDVIEW,55395596,Vian,Bronx,Fieldston,40.88777,-73.9059,Private room,70,1,1,2016-08-07,0.03,1,0 +10723142,Cozy and Small bedroom in Astoria!!,24981045,Julio,Queens,Astoria,40.76061,-73.91767,Private room,35,1,1,2016-02-01,0.02,1,0 +10724373,Gorgeous Gramercy Studio,1913404,Ellie,Manhattan,Gramercy,40.73804,-73.9852,Entire home/apt,110,1,3,2017-11-22,0.07,1,0 +10724792,"New, Lux Doorman,U.N. Grand Central",52950465,Gal,Manhattan,Midtown,40.75279,-73.97251,Entire home/apt,129,30,4,2016-09-22,0.11,12,328 +10725897,"Sunny, Arty East Williamsburg Loft",55433649,Brian,Brooklyn,Williamsburg,40.71504,-73.93613,Private room,45,1,169,2019-07-04,4.11,1,134 +10729454,Comfortable and eclectic UES room.,3139829,Tyler,Manhattan,Upper East Side,40.76797,-73.95369,Private room,50,1,2,2016-03-11,0.05,1,0 +10729951,Spacious Oasis w/ Private Entrance,10954437,Riah,Brooklyn,Bedford-Stuyvesant,40.6936,-73.94864,Private room,105,1,24,2017-01-08,0.69,1,0 +10730086,Spacious Brooklyn Room for Travelers,28546873,Justin,Brooklyn,Bedford-Stuyvesant,40.68995,-73.92844,Private room,45,3,9,2019-03-20,0.34,1,80 +10731035,"Nice private room, 2 blocks from Times Square.",45033175,Eugene,Manhattan,Hell's Kitchen,40.76175,-73.99041,Private room,83,2,15,2019-04-22,0.37,3,1 +10731317,Cozy NYC apartment shared space female only,10525320,Candace,Manhattan,Upper East Side,40.77141,-73.9534,Shared room,40,1,56,2019-03-15,1.35,2,173 +10731618,Gramercy Apartment,29880001,Saket,Manhattan,Flatiron District,40.74095,-73.98554,Private room,85,1,0,,,1,0 +10731680,3 bedroom in the heart of Manhattan,12133055,Martin,Manhattan,Hell's Kitchen,40.75981,-73.99071,Entire home/apt,400,3,124,2019-06-17,3.00,1,261 +10732197,Live on an island in NYC!,22774265,Pika,Manhattan,Roosevelt Island,40.76189,-73.94934,Private room,64,3,51,2019-06-30,1.28,1,40 +10732341,Entire Home Cozy Studio on Upper East Side,34040597,Joseph F,Manhattan,Upper East Side,40.76443,-73.95833,Entire home/apt,130,2,19,2019-07-01,0.45,1,13 +10732870,Private Bedroom in the Heights,53224546,Zachory,Manhattan,Washington Heights,40.83365,-73.94459,Private room,65,3,0,,,1,0 +10733505,Entire Apartment to yourself in the Heart of NYC!!,45005719,Nia,Manhattan,Hell's Kitchen,40.76504,-73.98856,Entire home/apt,200,1,1,2016-11-05,0.03,1,364 +10741931,Comfort Home,55532612,Chantelle,Queens,Arverne,40.5903,-73.79247,Entire home/apt,200,1,15,2019-06-23,1.23,1,354 +10746511,Your Own Garden Apt in Brooklyn,55558315,Euvin,Brooklyn,Crown Heights,40.6713,-73.95603,Entire home/apt,120,2,0,,,1,0 +10747156,"Cozy room, Queens, New York",24489871,Adriana,Queens,Rego Park,40.73462,-73.85705,Private room,60,1,64,2017-03-07,1.57,2,280 +10748040,"On Broadway, clean & comfy room",55567227,Neida,Manhattan,Harlem,40.82903,-73.94747,Private room,60,3,124,2019-07-05,3.16,2,82 +10751336,Helen's apartment,15546330,Helen,Manhattan,Morningside Heights,40.80554,-73.96422,Entire home/apt,80,1,1,2016-02-01,0.02,1,0 +10752737,HUGE Bedroom in Lower East Side,20358661,Ryan,Manhattan,Lower East Side,40.71823,-73.98319,Private room,90,7,0,,,1,0 +10753780,Gorgeous Duplex in the Heart of BK,2423061,Mike,Brooklyn,Clinton Hill,40.6837,-73.96505,Entire home/apt,125,5,1,2016-03-17,0.02,1,0 +10753967,☆Williamsburg Cute Room Sublet☆,8794068,Marico,Brooklyn,Williamsburg,40.71113,-73.95457,Private room,40,20,0,,,1,0 +10755415,Harlem Bed and BYOBreakfast,35301269,Maria,Manhattan,Harlem,40.80526,-73.95509,Private room,80,2,69,2019-06-15,1.72,1,140 +10755419,"Hip, renovated 1-bedroom",55617221,Chad,Manhattan,Civic Center,40.71331,-73.99822,Entire home/apt,100,2,0,,,1,0 +10755640,Artist friendly: cozy&sunny in quiet Prospect Park,25514430,Alisha,Brooklyn,Prospect-Lefferts Gardens,40.65846,-73.9489,Entire home/apt,50,6,1,2017-08-08,0.04,1,0 +10755963,A Room in Brooklyn,33859930,Ghe,Brooklyn,East Flatbush,40.64528,-73.93457,Private room,37,1,16,2018-05-22,0.46,1,0 +10765309,Designed west village with PATIO,8851665,Ohad,Manhattan,West Village,40.73303,-74.00118,Entire home/apt,200,3,1,2016-07-02,0.03,1,0 +10765607,Great location • Cozy • Clean,243427,Mar,Brooklyn,Williamsburg,40.71327,-73.96438,Private room,65,3,9,2017-11-05,0.24,1,0 +10766309,Heart Of Chelsea Family Vacation,13713796,Mikael,Manhattan,Chelsea,40.74358,-73.99758,Private room,130,2,32,2019-06-30,0.79,1,355 +10766339,Gorgeous 2BR by Brooklyn Museum,9358748,Uri,Brooklyn,Crown Heights,40.67039,-73.95959,Entire home/apt,95,14,3,2016-10-19,0.08,1,0 +10769752,Brooklyn Bright Room Prospect Park w AirCon.,51372003,Ninell,Brooklyn,East Flatbush,40.65058,-73.94859,Private room,54,2,63,2018-12-09,1.52,2,316 +10770836,Upper West Side Studio,55709707,Ethan,Manhattan,Upper West Side,40.79176,-73.97329,Entire home/apt,82,1,0,,,1,0 +10771369,Awesome Midtown Get-A-Way,55713233,Ryan,Manhattan,Murray Hill,40.7462,-73.97707,Entire home/apt,105,3,3,2016-09-06,0.08,1,0 +10771754,Cozy Studio Near Prospect Park,47062311,Maggie,Brooklyn,Flatbush,40.64681,-73.95901,Shared room,30,3,5,2017-02-05,0.14,1,189 +10772141,Luxury Building 5 Mins- Times Sq,55718379,Aaash,Manhattan,Hell's Kitchen,40.76407,-73.98868,Entire home/apt,169,30,0,,,1,364 +10773150,Upper East Side Little Private Room,55725808,Xin,Manhattan,East Harlem,40.7869,-73.95285,Private room,45,1,2,2016-02-02,0.05,1,0 +10774325,Convenient Studio Apartment!,3068641,Erum,Manhattan,Harlem,40.80806,-73.9435,Entire home/apt,100,4,0,,,1,0 +10782718,Studio (200 square feet),55785222,Ryan,Queens,Astoria,40.76636,-73.90393,Entire home/apt,75,1,0,,,1,0 +10784650,"East Village 3 Beds, 2 bedrooms. Sleeps 5 MAX",48320077,Michael,Manhattan,East Village,40.7276,-73.98635,Entire home/apt,219,1,101,2019-07-01,2.46,2,341 +10786240,nice apartment in New york city,55808233,John,Manhattan,Hell's Kitchen,40.75979,-73.99216,Private room,75,2,0,,,1,0 +10786987,Bright & Spacious living room,55813598,Karen,Brooklyn,Gravesend,40.6074,-73.97458,Shared room,25,3,119,2019-07-02,2.90,2,349 +10787042,Studio 5 min walk to Time Square,16430584,Karen,Manhattan,Hell's Kitchen,40.76371,-73.99306,Entire home/apt,250,3,3,2016-11-16,0.08,1,0 +10788568,Houston St. 1 BDRM East Village/LES,55823684,Timothy,Manhattan,East Village,40.72381,-73.9892,Entire home/apt,149,1,0,,,1,0 +10789121,Big private room in crown heights,329931,Patricia,Brooklyn,Crown Heights,40.67393,-73.9546,Private room,33,7,0,,,1,0 +10789911,One Bedroom in Astoria,32003714,Christopher,Queens,Ditmars Steinway,40.77567,-73.92202,Private room,90,7,3,2018-08-05,0.09,1,358 +10790350,Brooklyn For Life - Park Slope,14171743,Douglas,Brooklyn,South Slope,40.66323,-73.98117,Private room,87,2,112,2019-06-30,2.74,1,10 +10792883,"Cozy , peaceful place to relax",55853534,Megan,Brooklyn,Bedford-Stuyvesant,40.68542,-73.93965,Private room,60,4,0,,,1,0 +10798553,Gorgeous Greenpoint: Sublet April 10th - 27th,798949,Rachel,Brooklyn,Greenpoint,40.7254,-73.95246,Entire home/apt,99,10,0,,,1,0 +10801094,FT Greene Flat Private Entrance,11189753,Sj,Brooklyn,Fort Greene,40.68729,-73.96995,Entire home/apt,225,10,10,2019-06-24,0.26,4,350 +10801474,Spacious room in a 3 bedroom Apt,55908144,Setareh,Manhattan,Harlem,40.81389,-73.95205,Private room,45,7,6,2016-08-11,0.15,1,0 +10803759,"Bright Williamsburg 1 BD, Bedford L",18575991,Gregory,Brooklyn,Williamsburg,40.7178,-73.95595,Entire home/apt,129,4,5,2017-11-26,0.12,1,0 +10805767,East Village 2bdr/1bath,11522679,Andie,Manhattan,East Village,40.73117,-73.98593,Entire home/apt,325,1,0,,,1,0 +10807749,Chic 1-BR in Lovely Park Slope,45082547,Gretta J.,Brooklyn,South Slope,40.66686,-73.98907,Entire home/apt,120,2,5,2016-04-26,0.12,1,0 +10807838,Spacious Room Near Public Transport and shopping,55948559,Barry,Bronx,Pelham Gardens,40.86553,-73.83993,Private room,35,1,67,2019-07-04,1.81,4,11 +10808086,Huge Quiet Fun Spot In Heart o LES!,15129374,Ben,Manhattan,Lower East Side,40.72088,-73.98533,Entire home/apt,200,2,1,2016-03-30,0.03,1,0 +10808493,This quaint 2 bedroom apart in NYC,6198203,Janice,Brooklyn,East Flatbush,40.66101,-73.9302,Entire home/apt,100,2,29,2019-06-08,2.17,1,318 +10810807,Bright w/ stunning Manhattan views,5397742,Natalie,Brooklyn,Downtown Brooklyn,40.70007,-73.99091,Entire home/apt,250,1,0,,,1,0 +10811465,The Quintessential Bushwick Loft: The Brig,6778614,Lindsey,Brooklyn,Bushwick,40.70807,-73.92113,Private room,122,2,11,2018-07-15,0.82,2,0 +10811548,Historic Greenwich Village apt.,19408191,Julien,Manhattan,Greenwich Village,40.72891,-74.00109,Entire home/apt,149,5,0,,,1,0 +10811681,Madison Square Park Luxury Apt,6044561,John,Manhattan,Midtown,40.74662,-73.98965,Entire home/apt,295,1,0,,,1,0 +10811875,Spacious 2BR apt with deck,768181,Darius,Brooklyn,Williamsburg,40.71377,-73.94092,Entire home/apt,120,1,1,2016-03-01,0.02,1,0 +10812027,Cozy 1 bedroom bricked wall loft,6126518,Serafima,Manhattan,Upper East Side,40.77949,-73.94973,Entire home/apt,150,6,11,2019-04-06,0.30,1,174 +10812136,well lit East Williamsburg apt.,4827009,Liat,Brooklyn,Williamsburg,40.70528,-73.94384,Private room,60,1,0,,,1,0 +10812263,Garden Apartment with Backyard in Carroll Gardens,1639309,Fiona,Brooklyn,Columbia St,40.68403,-74.00192,Entire home/apt,110,30,1,2017-01-02,0.03,1,312 +10812612,Enjoy One of a Kind Spectacular NYC Views,55982547,Nick,Manhattan,Battery Park City,40.70642,-74.01756,Entire home/apt,245,3,59,2019-06-16,1.49,1,184 +10812960,Beautiful Duplex in Crown Heights,17052634,Mike,Brooklyn,Crown Heights,40.67204,-73.94614,Private room,100,1,0,,,1,0 +10813133,Homie and cool apartment,16326744,Dariusz,Brooklyn,Bushwick,40.70373,-73.92455,Entire home/apt,75,1,0,,,1,0 +10822131,True 1 bedroom apt in Gramercy,24304455,Natallia,Manhattan,Flatiron District,40.73967,-73.98643,Entire home/apt,99,14,0,,,1,0 +10824421,"Large Apartment in Greenpoint, BK",7911103,David,Brooklyn,Greenpoint,40.72639,-73.94764,Entire home/apt,205,2,0,,,1,0 +10824871,Beautiful Jr 1 Br In SoHo,12485770,Raanan,Manhattan,SoHo,40.72689,-74.00086,Entire home/apt,110,30,2,2016-12-24,0.06,9,333 +10826734,Wonderous Womb Room,10295496,Courtney,Brooklyn,Bushwick,40.68446,-73.90851,Private room,33,1,1,2016-02-22,0.02,1,0 +10827567,Renovated 1 bdrm apt close to city,31411094,Ronit,Brooklyn,Crown Heights,40.6725,-73.93981,Entire home/apt,98,3,128,2019-06-06,3.10,1,342 +10827775,1BR on the best block in the East Village,5075049,Cyrus,Manhattan,East Village,40.7297,-73.98192,Entire home/apt,133,28,2,2019-04-14,0.05,1,0 +10828230,"Sunny, Cozy, Prospect Heights Apt.",56066018,Alex,Brooklyn,Crown Heights,40.6786,-73.9621,Private room,45,1,1,2016-03-01,0.02,1,0 +10829701,Room/s in lovely Williamsburg,697990,Alvaro,Brooklyn,Williamsburg,40.70516,-73.95088,Private room,65,3,2,2016-08-25,0.05,1,0 +10830083,Beautiful well kept private home!,56078939,Tony,Staten Island,Tottenville,40.49979,-74.24084,Private room,110,2,0,,,1,364 +10830815,Bohemian Bedroom for Art Lovers,2276842,Debbie,Brooklyn,Williamsburg,40.7054,-73.94283,Private room,80,2,5,2017-01-01,0.15,2,0 +10830834,Spacious Loft: Williamsburg BK,56082757,Rj,Brooklyn,Williamsburg,40.71074,-73.96276,Entire home/apt,150,2,0,,,1,0 +10833173,Cozy 2BR in the heart of Wburg,1334808,Kristina,Brooklyn,Williamsburg,40.71414,-73.95761,Entire home/apt,110,5,0,,,2,0 +10835801,Spacious Luxury 1bdrm on Bklyn Waterfront,12353168,Ali,Brooklyn,Williamsburg,40.71716,-73.96456,Entire home/apt,149,5,20,2019-06-22,1.08,1,0 +10836260,"Wyndham Midtown 45, New York City",17592675,Jennifer,Manhattan,Midtown,40.75299,-73.97154,Entire home/apt,400,1,0,,,1,0 +10836805,A Zen oasis Harlem apartment,56119624,Neta,Manhattan,Harlem,40.81195,-73.95274,Private room,150,1,17,2017-08-09,0.43,1,363 +10837039,Private Room in Spacious 3BR 2BA,2252514,April,Brooklyn,Prospect-Lefferts Gardens,40.65791,-73.95009,Private room,35,1,2,2016-11-21,0.06,1,0 +10837800,Room in Harlem,43533460,Laurène,Manhattan,Washington Heights,40.83525,-73.9452,Private room,36,1,3,2016-06-28,0.08,1,0 +10838084,UPTOWN FABULOUS,3881467,Robert,Manhattan,Washington Heights,40.85612,-73.93024,Private room,45,1,50,2019-06-23,1.32,1,90 +10838743,Bushwick Room & 2 Awesome Roomies,56112494,Shannon,Brooklyn,Bushwick,40.6887,-73.90598,Private room,65,2,0,,,1,0 +10839007,Lower East Side Walk Up Apartment,56124518,David,Manhattan,Lower East Side,40.72005,-73.98409,Private room,90,5,1,2016-05-28,0.03,1,0 +10847901,"Huge, sunny private room - 1 block from train",38116129,Marissa,Brooklyn,Bensonhurst,40.60729,-74.00117,Private room,68,2,39,2019-01-02,1.10,1,0 +10848827,Prospect Park Adventures HQ,34698196,Nic,Brooklyn,Flatbush,40.65123,-73.96436,Private room,36,1,1,2016-08-18,0.03,1,0 +10849166,Large Brooklyn Apartment.,39261381,Nathaniel,Brooklyn,Flatlands,40.62361,-73.93423,Private room,34,1,7,2017-08-27,0.17,2,349 +10849426,Charming Loft on Upper East Side,56193545,Danny,Manhattan,Upper East Side,40.77516,-73.9555,Shared room,80,1,0,,,1,0 +10849750,Brownstone Beauty 1 Bedroom,185847,Faizal,Brooklyn,Fort Greene,40.68584,-73.97571,Entire home/apt,135,2,1,2016-08-15,0.03,1,0 +10850008,Big Private BR Steps to Barnard Columbia & Subways,56197328,Paul,Manhattan,Morningside Heights,40.80732,-73.9648,Private room,128,1,33,2019-05-23,0.85,2,235 +10850026,Renovated Hamilton Heights apt,7594757,Chaz,Manhattan,Washington Heights,40.83625,-73.94062,Private room,40,2,18,2017-11-24,0.44,1,0 +10851925,Large sunny room in great apartment,8573805,Eve,Queens,Ridgewood,40.70384,-73.91145,Private room,40,7,0,,,1,0 +10853313,Luxury 1 bdrm Apt in Clinton Hills.,56214524,Kathleen,Brooklyn,Clinton Hill,40.6869,-73.96324,Entire home/apt,155,3,161,2019-06-21,3.94,1,251 +10853955,"Sunny, private room; Quick to NYC. Females only.",35494734,Jennifer,Queens,Woodside,40.75293,-73.90304,Private room,50,4,49,2019-05-08,1.21,2,211 +10855464,"A Spacious, Bright Brooklyn Bedroom",790177,Erin,Brooklyn,Sunset Park,40.64553,-74.00221,Private room,40,2,119,2017-11-01,2.88,1,0 +10857454,Artist Garden Duplex Ft. Greene - 2.5 Bedroom,36894011,Miriam,Brooklyn,Fort Greene,40.6884,-73.97527,Entire home/apt,250,2,109,2019-06-24,3.22,2,243 +10858150,"Large, sunny, East Village loft",14460656,Anna,Manhattan,East Village,40.72633,-73.98068,Entire home/apt,295,1,7,2017-08-04,0.18,1,0 +10859700,Beautiful Large 2 Bedroom Apartment,53199312,Zamena,Queens,East Elmhurst,40.76327,-73.88655,Entire home/apt,145,2,61,2019-06-10,1.52,1,302 +10863225,Brownstone Apt Near Central Park,47898830,Dennis,Manhattan,Upper West Side,40.77774,-73.97701,Entire home/apt,199,2,0,,,1,0 +10864440,Red Hook Family Railroad Style Aprt,20408271,Francois,Brooklyn,Red Hook,40.67529,-74.01514,Entire home/apt,140,1,0,,,2,0 +10869804,Studio for 1,56312532,Danoulo28,Manhattan,Upper West Side,40.80283,-73.96504,Entire home/apt,60,15,0,,,1,0 +10874577,Unbelievable luxury apartment,43220844,Adil,Manhattan,Upper East Side,40.76309,-73.95794,Entire home/apt,175,1,1,2016-02-16,0.02,1,0 +10875244,Funky apartment,56342651,Valeria,Manhattan,Upper West Side,40.803,-73.96459,Entire home/apt,150,1,0,,,1,0 +10880196,Beautiful Large Apartment in NYC,617990,Christopher,Queens,Jackson Heights,40.75055,-73.88366,Private room,89,14,4,2017-02-07,0.10,2,0 +10880473,Small Cozy Bedroom In A Classic Brownstone,2478644,Kim,Brooklyn,Bedford-Stuyvesant,40.68926,-73.94074,Private room,38,2,0,,,1,43 +10881164,Sunny Clinton Hill Brownstone Apt w/ 600sq.ft Deck,56376946,Cory,Brooklyn,Clinton Hill,40.68683,-73.96177,Entire home/apt,350,4,1,2018-01-01,0.05,1,86 +10881719,charming Soho/Little Italy nest,30410829,Michelange,Manhattan,Chinatown,40.71786,-74.00009,Entire home/apt,105,1,16,2016-08-25,0.40,1,0 +10882066,Romantic Williamsburg Apartment,14585417,Samantha,Brooklyn,Williamsburg,40.71319,-73.95669,Entire home/apt,185,2,122,2019-06-10,3.12,1,105 +10883053,Artsy Lofty Studio,27360886,Kaya,Manhattan,Upper East Side,40.77617,-73.94677,Entire home/apt,195,1,136,2019-06-18,3.26,1,103 +10885211,Trendy studio btwn Grand Central and Central Park,15651999,Kunjan,Manhattan,Midtown,40.75598,-73.96664,Entire home/apt,135,3,4,2018-09-20,0.13,1,0 +10886372,BK Bedroom in a Comfortable Apartment by the Park!,56410306,Cole,Brooklyn,Prospect-Lefferts Gardens,40.6607,-73.96168,Private room,60,1,0,,,1,0 +10886532,2000sf Williamsburg Apt. w/ Theater,17646340,Donald,Brooklyn,Williamsburg,40.70094,-73.9435,Entire home/apt,120,7,0,,,2,0 +10886628,Large Bedroom Available in 5BR Apt,56412357,Scott,Brooklyn,Greenpoint,40.72527,-73.94803,Private room,34,1,0,,,1,0 +10886971,Cozy Btful Private Room In Brooklyn,8261208,Shakima,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94875,Private room,45,2,27,2019-07-05,0.78,1,339 +10887262,Kid's friendly two levels apartment with a yard,4343152,Anna,Manhattan,Harlem,40.81223,-73.94313,Entire home/apt,199,4,2,2016-10-11,0.05,1,0 +10887852,Cozy Hell's Kitchen Apt,39754804,Karen,Manhattan,Hell's Kitchen,40.76438,-73.99482,Entire home/apt,125,1,64,2019-06-22,1.88,1,0 +10888320,Bronx Home - 30 mins from Midtown!,971075,Jabari,Bronx,Mount Hope,40.8506,-73.90231,Entire home/apt,109,3,62,2019-05-27,1.51,2,58 +10899004,Stylish Windsor Terrace Flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65627,-73.97955,Entire home/apt,250,7,0,,,3,0 +10901062,Stylish Windsor Terrace flat,836911,Cathy,Brooklyn,Windsor Terrace,40.65636,-73.97945,Entire home/apt,150,4,1,2016-03-30,0.03,3,0 +10901255,"6 BEDROOM W VILLAGE TOWNHOUSE, NYC",605463,West Village,Manhattan,West Village,40.73303,-74.005,Entire home/apt,1100,6,4,2019-05-24,0.12,4,313 +10902752,Cozy winter sanctuary,32265481,Neena,Manhattan,Harlem,40.82289,-73.94915,Private room,52,3,0,,,1,0 +10903055,Stay in The Heart of NYC,28378670,Jesse,Manhattan,Chelsea,40.7487,-73.99514,Private room,119,2,134,2019-06-30,3.42,1,66 +10904914,Room in Huge Union Sq Rooftop Apt!,56514111,Jenna,Manhattan,Chelsea,40.7386,-73.99775,Private room,70,1,2,2016-03-27,0.05,1,0 +10909987,Private Bedroom at Central Park N.,5429885,Ergie,Manhattan,Harlem,40.79929,-73.95199,Private room,100,3,147,2019-07-02,3.55,1,66 +10919160,Gorgeous 1BR in Prime E. Village!,25498781,Lauren,Manhattan,East Village,40.72931,-73.98222,Entire home/apt,250,2,9,2016-08-24,0.22,1,0 +10919968,Entire 1BR apt on UWS w/ roof deck,4497387,Cristina,Manhattan,Upper West Side,40.79277,-73.97613,Entire home/apt,150,1,16,2016-12-28,0.40,1,0 +10921091,Stuido apt near Lincoln Center,56607815,Jonathan,Manhattan,Upper West Side,40.77035,-73.98638,Entire home/apt,150,2,0,,,1,0 +10921135,Gorgeous Large Sunny 2 BR,3411196,Tasha,Brooklyn,Kensington,40.64751,-73.97814,Entire home/apt,100,1,0,,,1,0 +10922736,Welcoming Warm and Walk to all!,56616493,Daniele,Queens,Forest Hills,40.72272,-73.84206,Private room,30,14,0,,,1,0 +10922889,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.70985,-73.98724,Shared room,35,14,2,2017-10-01,0.08,28,320 +10924304,"Harlem, NY +Historical Sugar Hill Neighborhood",25461543,David,Manhattan,Harlem,40.83117,-73.94281,Entire home/apt,200,1,3,2019-06-08,0.38,2,365 +10925309,Comfortable Private Room - West Village,36081529,Jon,Manhattan,West Village,40.72965,-74.00261,Private room,99,12,60,2019-05-31,1.60,1,0 +10925844,Bedroom in Bushwick,7364894,Mac,Brooklyn,Bushwick,40.70128,-73.9253,Private room,40,7,0,,,1,0 +10926362,Charming Midtown West - Entire Apt,3576466,Kevin,Manhattan,Hell's Kitchen,40.76364,-73.9898,Entire home/apt,170,2,18,2019-05-13,0.45,2,63 +10928250,Modern Central Harlem Townhouse,7650414,Keith,Manhattan,Harlem,40.80257,-73.94693,Entire home/apt,399,5,9,2018-08-29,0.25,2,12 +10930279,House Near Subway,25044529,Xin,Manhattan,Upper West Side,40.79583,-73.97493,Entire home/apt,87,1,0,,,1,0 +10937904,Spacious Room in Sunny Harlem Apt,17601552,Ashley,Manhattan,Harlem,40.81794,-73.94326,Private room,75,1,0,,,1,0 +10938202,"Spacious, bright, living/bedroom",2455178,Nessa,Brooklyn,Flatbush,40.64145,-73.96642,Private room,55,5,6,2016-11-14,0.17,1,0 +10938544,"Spacious, Private Room Near Subway",10583598,Devon,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.95963,Private room,40,2,9,2016-08-24,0.22,1,0 +10939255,Master Bedroom - Bathroom en Suite,7501803,Hannah,Brooklyn,Flatbush,40.65188,-73.96411,Private room,55,4,3,2017-10-09,0.07,1,0 +10939344,huge sunny 1 bed Times Square!!!!!!,914838,Lior,Manhattan,Hell's Kitchen,40.76382,-73.99498,Entire home/apt,140,30,3,2019-05-07,0.08,7,365 +10939710,NEW YORK LOFTLIKE APARTMENT,9192860,Alex,Queens,Ridgewood,40.70286,-73.90649,Private room,71,3,62,2019-06-09,2.76,1,291 +10940559,Modern and comfortable is this 2 bedrooms,56726605,Weisbrod,Brooklyn,Canarsie,40.6344,-73.8948,Entire home/apt,177,3,23,2018-10-07,0.60,3,363 +10941762,New Museum 2 BR Loft,56732131,Désirée,Manhattan,Lower East Side,40.72221,-73.99284,Entire home/apt,395,2,57,2019-06-28,1.41,1,279 +10943209,Cozy Room In East Village!,52761277,Min,Manhattan,East Village,40.72387,-73.979,Private room,80,2,1,2018-10-07,0.11,1,87 +10943915,Historic Sugar Hill 2 Bdrm Apt Great For families!,56710089,Kate,Manhattan,Harlem,40.8263,-73.94375,Entire home/apt,198,5,42,2019-06-03,1.07,1,267 +10944845,Lower East Side Apartment,56752163,Sabina,Manhattan,Lower East Side,40.71731,-73.99108,Entire home/apt,199,3,4,2018-12-25,0.16,2,0 +10945632,All to yourself home away from home,56758927,Carol,Queens,Queens Village,40.70684,-73.74627,Entire home/apt,97,2,252,2019-06-23,6.08,1,290 +10946644,3 bedrm beauty in Crown Heights,18495460,Frank,Brooklyn,Crown Heights,40.6735,-73.95486,Entire home/apt,162,30,26,2019-04-30,0.64,3,18 +10947986,Entire 1br apartment in Riverdale,56775169,Rose,Bronx,Kingsbridge,40.88214,-73.90847,Entire home/apt,99,3,1,2018-05-20,0.07,1,311 +10949554,Bright Spacious Luxury 1 BR,20903132,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69187,-73.95408,Entire home/apt,80,90,0,,,1,89 +10957871,East Village Apartment w/ NYC Charm,56836468,Mark,Manhattan,East Village,40.72663,-73.97852,Private room,65,1,1,2016-02-20,0.02,1,0 +10958463,Nice bedroom at Manhattan -Upper East Side/Harlem,21784104,Paulo,Manhattan,East Harlem,40.79226,-73.93895,Private room,150,3,73,2019-05-25,1.85,1,32 +10958668,Large Cozy Room in Prospect Heights,4269459,Lindsey,Brooklyn,Crown Heights,40.67734,-73.96076,Private room,35,1,2,2016-03-13,0.05,1,0 +10966240,Private Room in Artist Apt BK,56887361,Ariel,Brooklyn,Bedford-Stuyvesant,40.68636,-73.92599,Private room,30,1,1,2016-02-27,0.02,1,0 +10967026,Quaint Room in Upper Manhattan,4837798,Jayson,Manhattan,Harlem,40.82561,-73.9446,Private room,50,3,107,2019-07-01,2.57,1,209 +10967300,Cozy room in the heart of Hamilton Heights,7781522,Angela,Manhattan,Harlem,40.82332,-73.94705,Private room,40,3,4,2016-09-05,0.11,1,0 +10967749,Luxury Highrise Near Times Square,834052,A.J.,Manhattan,Hell's Kitchen,40.76254,-73.99974,Entire home/apt,259,7,5,2018-11-03,0.14,1,122 +10972148,Lofty 1-Bedroom with Garden Views,11559235,Katherine,Manhattan,Harlem,40.82765,-73.94889,Private room,125,2,3,2016-08-18,0.07,1,87 +10974609,"Cozy couch, free parking, near park",48573590,Sherrilyn,Brooklyn,East Flatbush,40.66209,-73.93947,Shared room,85,1,1,2018-10-08,0.11,1,365 +10978135,Midtown Manhattan East Large Studio Apatment,56754697,Liz,Manhattan,Midtown,40.75862,-73.96841,Entire home/apt,160,3,50,2019-06-02,1.23,1,4 +10980168,Three-story brownstone with garden,22858411,Tracy,Brooklyn,South Slope,40.66252,-73.97911,Entire home/apt,450,5,2,2017-12-28,0.06,1,9 +10980678,"Brooklyn 1 BR Beauty, Great Hood!",79339,Ann,Brooklyn,Bedford-Stuyvesant,40.6811,-73.9542,Entire home/apt,90,14,12,2019-06-26,0.45,1,64 +10983426,"Bright modern apt in a ""tudor"" home",56984176,Giuseppa,Queens,Rego Park,40.72147,-73.86317,Entire home/apt,140,3,84,2019-07-06,2.09,1,32 +10984202,Chic Apt in Doorman Bldg Fashion Wk,23865843,Carlin,Manhattan,Upper West Side,40.78116,-73.9786,Entire home/apt,265,1,0,,,1,0 +10984999,Spacious Room in Penthouse in LES,22702361,Lisa-Marie,Manhattan,Chinatown,40.71628,-73.98999,Private room,85,1,1,2016-03-24,0.02,1,0 +10985093,PEACEFUL PRIVATE ROOM/BATH IN BEAUTIFUL GARDEN APT,56995315,Nina,Manhattan,Roosevelt Island,40.76366,-73.9479,Private room,79,2,29,2019-07-05,0.74,1,321 +10985169,One Bedroom Apartment in Townhouse,825856,Rubi,Brooklyn,Bedford-Stuyvesant,40.68389,-73.92128,Entire home/apt,76,2,2,2016-12-30,0.05,1,0 +10985734,Clean & Quiet Greenpoint Apartment,56998739,Myles & Christian,Brooklyn,Greenpoint,40.72729,-73.95138,Entire home/apt,125,2,0,,,1,0 +10987342,Big & Bright in BK Heights with Private Balcony,7903382,Annie,Brooklyn,Brooklyn Heights,40.69449,-73.99188,Entire home/apt,150,3,7,2016-07-15,0.17,1,0 +10988682,Spacious 1 BR - 5min to Manhattan,57015584,Peter,Queens,Long Island City,40.74129,-73.95004,Entire home/apt,175,3,22,2017-07-13,0.54,1,0 +10990088,"Downtown, Renovated 2 Bedroom Apt",24361297,Summer,Manhattan,Chinatown,40.71781,-73.99569,Entire home/apt,100,1,0,,,1,0 +10992335,Cozy 1BR near subway,19000768,Karina,Queens,Sunnyside,40.74219,-73.92485,Entire home/apt,90,2,3,2017-11-06,0.12,2,0 +10994530,Cozy Renovated 2br Apartment! Close to Manhattan!,11501945,Victoria,Brooklyn,Flatbush,40.63649,-73.95614,Entire home/apt,92,1,25,2018-01-01,0.63,2,0 +10995738,Cozy Private Room,1755999,Lindsey,Brooklyn,Williamsburg,40.70532,-73.92814,Private room,39,5,0,,,1,0 +10995810,Room in gorgeous Astoria Apartment,57055185,Halley,Queens,Astoria,40.76802,-73.91685,Private room,33,1,0,,,1,0 +10996466,"Big, Bright, Beautiful Room",38794144,Hannah,Brooklyn,Crown Heights,40.67754,-73.96163,Private room,64,1,2,2019-01-03,0.07,1,21 +11003247,Two bedroom Apt. in Wash Heights,57097075,Matt,Manhattan,Washington Heights,40.84901,-73.93859,Entire home/apt,90,12,1,2016-08-16,0.03,1,0 +11005300,East Village Sanctuary,57107571,Molly,Manhattan,East Village,40.72808,-73.98763,Entire home/apt,200,30,22,2019-06-09,0.65,1,112 +11006093,West Soho/Hudson Square Gem 1b/1bath,56498254,Tecla,Manhattan,SoHo,40.72761,-74.00902,Entire home/apt,150,7,9,2019-02-18,0.22,1,190 +11006134,Chelsea Apt w/ Private Rooftop Deck,24625891,T,Manhattan,Chelsea,40.74815,-74.00493,Entire home/apt,125,3,0,,,1,0 +11007370,~Lux 2-Bedroom NYC Apt near Times Square,30283594,Kara,Manhattan,Theater District,40.7598,-73.98537,Entire home/apt,369,30,0,,,121,148 +11008081,Cozy Europa,57122538,Balla,Manhattan,Harlem,40.82564,-73.94143,Private room,60,1,6,2019-07-02,2.43,1,83 +11009529,Very Large room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67824,-73.97106,Private room,65,1,245,2019-06-15,5.87,13,339 +11010008,Private Spacious Room ~ Near Trains,57069872,Allison,Queens,Astoria,40.76101,-73.91573,Private room,70,3,65,2019-06-20,1.66,1,89 +11011567,Sweet & Bright Two Bedroom Artist Flat Brooklyn,22861935,Jessica,Brooklyn,Columbia St,40.68443,-74.00392,Entire home/apt,162,3,37,2019-05-20,1.06,1,22 +11011759,"Modern, fun and sophisticated 1BR",38968716,Ali,Manhattan,Kips Bay,40.73939,-73.983,Entire home/apt,250,28,5,2017-05-30,0.13,1,0 +11014346,Big private room ~ 1 bed-1 person.,53051331,James And Mina,Brooklyn,Crown Heights,40.67156,-73.95684,Private room,75,2,13,2019-07-02,0.47,1,354 +11020169,Luxurious one bedroom apartment in a quiet area.,57165692,Charles,Bronx,Baychester,40.87223,-73.84335,Entire home/apt,95,3,206,2019-07-01,4.98,2,144 +11020841,Sage - Charming 2 Room Studio #7,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68366,-73.94607,Private room,75,2,129,2019-06-21,3.36,3,227 +11023993,SunnyHome,27673980,Amy,Queens,Flushing,40.74514,-73.83137,Private room,60,1,66,2019-06-16,3.07,8,67 +11030761,Amazing 1BR Heart of East Village!,57242530,Jack,Manhattan,East Village,40.72794,-73.98731,Entire home/apt,189,2,9,2018-12-30,0.23,1,23 +11031059,Private Room in Bedstuy Brownstone,44776542,Danielle,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94898,Private room,66,1,0,,,1,0 +11032588,Beautiful bedroom in Williamsburg,6265305,Federico,Brooklyn,Williamsburg,40.7169,-73.94714,Private room,100,2,0,,,1,0 +11032957,"Glorious brownstone apt w/ outdoor, Clinton Hill",57254931,Courtney,Brooklyn,Clinton Hill,40.68121,-73.96319,Entire home/apt,190,7,60,2019-02-17,1.66,1,0 +11033476,Spacious Bedroom near Prospect Park,57257971,Jenna,Brooklyn,Sunset Park,40.66227,-73.99138,Private room,50,1,1,2016-02-12,0.02,1,0 +11033590,West Village 2 Bed & Private Roof,16141222,Somar,Manhattan,West Village,40.7341,-74.00434,Entire home/apt,814,3,31,2019-04-11,0.78,1,353 +11035889,Cozy Bedroom in the Lower East Side,57269448,Chantal,Manhattan,Lower East Side,40.72104,-73.98298,Private room,100,2,1,2016-06-14,0.03,1,0 +11036071,Fully Private Suite in Home,57265004,Patricia,Brooklyn,Prospect-Lefferts Gardens,40.65993,-73.95725,Entire home/apt,125,1,151,2019-06-09,3.86,1,37 +11037023,BR in amazing Apt - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70818,-73.94952,Private room,90,1,17,2018-01-02,0.44,3,0 +11037105,Sunny in heart of Williamsburg,57275881,Allegra,Brooklyn,Williamsburg,40.71187,-73.95566,Entire home/apt,250,1,0,,,1,0 +11039706,"Bright, Open, Family Friendly",57289930,Stephanie,Queens,Sunnyside,40.74214,-73.92463,Entire home/apt,115,1,0,,,1,0 +11040458,Huge 3 bedroom apt in West Harlem,20607397,Jonathan,Manhattan,Harlem,40.80735,-73.95684,Entire home/apt,300,2,26,2019-06-26,0.64,1,176 +11042240,Lovely 1.5BR Near Park and Subway,57305837,Yair,Brooklyn,South Slope,40.66355,-73.98056,Entire home/apt,145,3,147,2019-07-03,3.62,1,235 +11042350,Charming Bedroom with Private Bath,1607646,Dee,Manhattan,East Harlem,40.80771,-73.93967,Private room,65,7,7,2018-10-31,0.30,1,0 +11043540,Sunny LES Pied a Terre,5546836,Natalie,Manhattan,Lower East Side,40.71884,-73.98594,Entire home/apt,150,1,1,2016-06-18,0.03,1,0 +11043651,Private room in two fl apartment,31879354,Zach,Brooklyn,Bushwick,40.70131,-73.93032,Private room,50,2,0,,,1,0 +11043970,HUGE 1 BED!TIME SQ!MODERN!,914838,Lior,Manhattan,Hell's Kitchen,40.75774,-73.99523,Entire home/apt,80,30,3,2018-10-15,0.07,7,356 +11044326,Typical NY duplex ap with a garden!,1395401,Peter,Manhattan,Upper East Side,40.78119,-73.9468,Entire home/apt,200,5,6,2018-08-19,0.17,1,67 +11044453,Convent Ave & 127st Col Univ RM 2,57049951,Eliahu,Manhattan,Harlem,40.81238,-73.95319,Private room,69,2,128,2019-05-26,3.16,9,365 +11045529,Centrally located Midtown 1BR,57322543,Richard,Manhattan,Hell's Kitchen,40.76355,-73.99391,Entire home/apt,150,1,52,2019-06-20,1.26,1,7 +11046443,MANHATTAN Studio 10 SECONDS Walk to Subway,17171841,Bond,Manhattan,East Harlem,40.79736,-73.94203,Entire home/apt,79,1,149,2019-06-23,3.63,1,290 +11046598,Huge 3 bdrm in Ditmas Park/Flatbush,10573152,Dasha,Brooklyn,Flatbush,40.64261,-73.95779,Entire home/apt,219,2,119,2019-06-19,2.93,1,275 +11049502,Sunny East Village 1 Bedroom,36369973,Sarah,Manhattan,East Village,40.7264,-73.97889,Entire home/apt,199,2,67,2019-06-09,1.64,1,39 +11057550,Penthouz 1200SQF W&D 2bd 2.5ba 350SQF Terrace 5197,16098958,Jeremy & Laura,Manhattan,West Village,40.73134,-74.00215,Entire home/apt,450,30,0,,,96,327 +11059197,Clean and warm room in Flushing,57398859,Sean,Queens,Flushing,40.76726,-73.81217,Private room,27,1,0,,,1,0 +11060328,5BED OASIS IN 3BEDROOM/3BATH DUPLEX W/BACKYARD,12872352,Jada,Manhattan,Midtown,40.75912,-73.9621,Entire home/apt,550,1,57,2019-05-06,1.44,3,267 +11061063,Spacious 1 BD in Hells Kitchen,30918593,Cindy,Manhattan,Hell's Kitchen,40.76578,-73.99309,Entire home/apt,120,1,0,,,1,0 +11062438,"Private and super quiet, Step to Subway",3419036,Ofer,Manhattan,Upper East Side,40.78482,-73.95191,Entire home/apt,90,4,9,2019-04-29,0.22,1,0 +11062629,room with awesome view,6961443,Victoria,Manhattan,Midtown,40.75957,-73.96802,Private room,70,1,1,2016-02-15,0.02,2,0 +11063065,Spacious room in mid manhattan!,6961443,Victoria,Manhattan,Midtown,40.76163,-73.96956,Private room,70,1,2,2016-03-29,0.05,2,0 +11065341,Greenpoint Apartment,45896206,Dora,Brooklyn,Greenpoint,40.73144,-73.95745,Entire home/apt,110,2,0,,,1,0 +11065571,Charming Brooklyn Heights Studio,57434801,Reese,Brooklyn,Brooklyn Heights,40.69257,-73.99304,Entire home/apt,100,1,0,,,1,0 +11065633,Luxury Doorman Building/Murray Hill,19340034,Ross,Manhattan,Gramercy,40.73788,-73.98103,Private room,150,1,2,2016-03-13,0.05,1,0 +11067934,"Clean, well located Chinatown apt.",8243103,Paul,Manhattan,Civic Center,40.71567,-74.00061,Entire home/apt,200,1,33,2016-10-28,0.80,1,0 +11068187,An Architect's Inviting Studio,9132107,Alice,Manhattan,Upper West Side,40.78731,-73.97407,Entire home/apt,145,3,2,2016-04-23,0.05,1,0 +11068607,"Cityview in E Williamsburg/Bushwick ""Great Place""",57452929,Jonathan,Brooklyn,Williamsburg,40.70673,-73.92695,Private room,79,2,134,2019-07-01,3.26,1,2 +11069190,"Mi Casa, Tu Casa.",390251,Lilly,Manhattan,Harlem,40.80129,-73.95389,Private room,95,2,2,2018-07-22,0.14,4,88 +11069291,A quiet & cozy home for travelers—free st parking,57460097,Pengfei,Queens,Elmhurst,40.73816,-73.88211,Private room,55,1,63,2019-04-07,2.92,1,21 +11077282,The Justice House,38068387,Xolie,Brooklyn,Clinton Hill,40.69308,-73.96649,Entire home/apt,207,2,58,2019-07-03,1.49,4,1 +11080142,Historic Heights-Private Queen Room,2155213,Andy,Manhattan,Washington Heights,40.84393,-73.94065,Private room,83,2,142,2019-06-30,3.55,1,80 +11083362,Bedroom with full size bed in Washington Heights!,30995829,David,Manhattan,Washington Heights,40.84411,-73.93784,Private room,50,3,89,2019-06-13,2.54,1,113 +11085352,"Amazing Williamsburg, Brooklyn Apt.",10994250,Jerry,Brooklyn,Williamsburg,40.70925,-73.94909,Private room,50,1,0,,,1,0 +11086888,"Spacious, Private, Comfortable N. HARLEM Apartment",118126,Pat,Manhattan,Harlem,40.83135,-73.94442,Entire home/apt,200,3,114,2019-07-02,3.19,1,165 +11089123,Awesome bedroom in 2br apartment <3,15231059,Apollo,Manhattan,Lower East Side,40.72118,-73.98875,Private room,100,3,19,2019-04-30,0.46,4,303 +11091309,"NYC-Legal 2br +parking, Metro- 4min, JFK -15min",7775937,Joseph,Brooklyn,East New York,40.66483,-73.88208,Entire home/apt,119,4,148,2019-06-30,3.75,1,111 +11095719,The Justice Suite,38068387,Xolie,Brooklyn,Clinton Hill,40.69458,-73.96757,Entire home/apt,175,1,58,2018-10-07,1.45,4,331 +11096801,BRIGHT & BEAUTIFUL,38120363,Brian,Brooklyn,Crown Heights,40.67415,-73.9163,Private room,49,2,115,2019-06-24,2.96,2,59 +11096888,Peaceful apartment close to F/G,2228137,Amanda,Brooklyn,Kensington,40.64779,-73.97956,Private room,45,500,0,,,1,358 +11097962,"Home, Sweet, Harlem. Welcome!",24800102,Kevin,Manhattan,East Harlem,40.79733,-73.93955,Entire home/apt,110,1,221,2019-06-28,5.53,1,348 +11098018,Sunny private room in Bushwick,10199059,Manasvi,Brooklyn,Bushwick,40.69712,-73.93055,Private room,70,1,0,,,1,0 +11100490,Massive 3 bedroom with Patio,57648603,Shpresa,Manhattan,Gramercy,40.73562,-73.98756,Entire home/apt,500,4,49,2019-06-22,1.23,1,249 +11100541,Garden Apartment in Carroll Gardens,48880382,Samaa,Brooklyn,Carroll Gardens,40.6785,-73.99594,Entire home/apt,180,4,37,2019-07-01,0.91,1,185 +11101754,Upscale Sun-Soaked Luxury apartment in Brooklyn,7872220,Charlie,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9579,Entire home/apt,145,1,153,2019-07-06,4.66,1,47 +11102591,Room in the heart of Williamsburg,4110759,Lorenzo,Brooklyn,Williamsburg,40.71725,-73.95392,Private room,60,7,0,,,1,0 +11105968,5*****Prime W/ Private Outdoor 5177,16098958,Jeremy & Laura,Manhattan,West Village,40.73198,-74.00239,Entire home/apt,550,30,0,,,96,352 +11107261,Hamilton Heights/Apollo Theater,57697937,Artie,Manhattan,Harlem,40.82645,-73.94426,Private room,57,3,90,2019-06-16,2.26,1,247 +11114607,Duplex Apartment,13611255,Lamee,Brooklyn,Bedford-Stuyvesant,40.68652,-73.93506,Entire home/apt,98,30,13,2018-07-23,0.32,3,140 +11117439,Artist Private Studio,57755346,Natalie,Manhattan,East Harlem,40.79014,-73.94698,Entire home/apt,120,3,33,2018-12-02,0.86,1,0 +11118296,Forest Hills Haven,57762390,Annette,Queens,Forest Hills,40.71813,-73.8386,Entire home/apt,100,2,1,2016-08-05,0.03,1,0 +11118641,1 BR in 2BR - Luxury High Rise,57765248,Chandni,Manhattan,Hell's Kitchen,40.75744,-73.9936,Private room,90,1,6,2016-05-18,0.14,1,0 +11120231,Private 1 BR in Brooklyn,15193965,Matt,Brooklyn,Crown Heights,40.66841,-73.93621,Entire home/apt,85,25,1,2016-04-04,0.03,1,0 +11120851,Luxury Apartment Downtown Brooklyn,46980935,Shay,Brooklyn,Downtown Brooklyn,40.69731,-73.98228,Entire home/apt,120,30,9,2016-11-27,0.22,1,0 +11121739,1 brd apartment for Easter week in NOHO,55425653,Alessandro,Manhattan,NoHo,40.72683,-73.99328,Entire home/apt,180,3,4,2019-03-16,0.59,1,0 +11123031,11' Windows · Rooftop · Queen Bed,10556524,Ryan,Brooklyn,Williamsburg,40.70606,-73.92884,Private room,149,1,0,,,2,0 +11123966,Charming Apartment With View,20794193,Carlo,Manhattan,Harlem,40.82546,-73.95292,Entire home/apt,90,10,6,2019-01-15,0.18,1,6 +11123996,Spacious Gramercy Loft,3135272,Han Sheng,Manhattan,Gramercy,40.73427,-73.98456,Entire home/apt,250,2,4,2017-06-03,0.14,1,0 +11128811,Cozy Walk up apartment in a great neighborhood!,42779345,Jodi,Queens,Long Island City,40.74523,-73.94906,Private room,50,2,3,2019-02-17,0.41,1,0 +11130697,Luxury New York Apartment,57843472,David,Manhattan,Hell's Kitchen,40.76198,-73.99739,Private room,550,1,0,,,1,0 +11132775,Manhattan - Washington Heights Apt,43082746,Hillary,Manhattan,Washington Heights,40.83219,-73.94334,Private room,50,1,0,,,1,0 +11136854,Modern Studio in Brooklyn,21986616,Valentina,Brooklyn,Gravesend,40.58571,-73.96711,Entire home/apt,90,7,32,2019-06-14,0.83,1,71 +11137382,"Modern Garden 2BD w/ Backyard, Dishwasher, Laundry",24839836,Kai,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94975,Entire home/apt,165,4,123,2019-06-23,3.08,1,43 +11138618,"Bright, Spacious, Brooklyn Bungalow",57885166,Emily,Brooklyn,Gowanus,40.67153,-73.988,Private room,70,1,3,2016-03-28,0.07,1,0 +11138823,A beautiful Cozy 1 BR Apartment.,57885474,Shully'S,Bronx,Wakefield,40.89694,-73.86055,Entire home/apt,90,2,199,2019-06-21,5.00,2,319 +11138910,HUGE apartment in GREAT location!!!,827235,Adam,Brooklyn,Bedford-Stuyvesant,40.68437,-73.95849,Entire home/apt,109,3,3,2018-08-17,0.08,1,0 +11139469,Privacy meets luxury and comfort,45677054,Lex And Raun,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91838,Entire home/apt,96,2,64,2019-06-16,1.58,1,256 +11140165,Tranquility in Park Slope House & Garden,923791,Daniel,Brooklyn,South Slope,40.66473,-73.98704,Entire home/apt,390,4,14,2019-06-29,0.36,2,13 +11141064,"Beautiful, True 1BR in Park Slope",49033458,Stephen,Brooklyn,Windsor Terrace,40.65895,-73.97768,Entire home/apt,78,5,1,2016-03-24,0.02,1,0 +11143891,Clean Private Bedroom in Bushwick,27087652,Louise,Brooklyn,Bushwick,40.69995,-73.92612,Private room,50,1,1,2016-04-14,0.03,1,0 +11144496,"New Spacious Master, Williamsburg",48819868,Nick,Brooklyn,Williamsburg,40.71119,-73.95097,Private room,200,1,0,,,1,0 +11144544,Habitación privada en Midtown NY,7401344,Fla,Manhattan,Midtown,40.74545,-73.98128,Private room,112,3,1,2016-02-15,0.02,1,0 +11145050,Doorman Studio Gym Rooftop 5170,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79191,-73.97322,Entire home/apt,117,30,4,2018-12-16,0.13,96,327 +11146432,Cozy top floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67963,-73.97054,Private room,50,1,257,2019-07-01,6.23,13,286 +11146878,North Williamsburg 2 BR Apt,57944278,Ashley,Brooklyn,Williamsburg,40.71874,-73.96077,Entire home/apt,200,1,0,,,1,0 +11147376,Luxury Apt in the Heart of Brooklyn,22218564,Jeremy,Brooklyn,Fort Greene,40.68675,-73.97923,Entire home/apt,185,30,13,2019-01-24,0.33,1,212 +11147993,A SUPERB One Bedroom Apartment,57954654,Olu,Bronx,Williamsbridge,40.87556,-73.8584,Entire home/apt,85,2,147,2019-07-01,3.88,1,304 +11148990,Sunny apartment downtown Manhattan,6980995,Dominik,Manhattan,Chinatown,40.71323,-73.99752,Entire home/apt,235,2,66,2019-06-23,1.63,5,184 +11153954,COZY STUDIO APARTMENT FOR 2 ♡,57995737,Remi O.,Manhattan,East Harlem,40.80586,-73.93861,Entire home/apt,75,5,2,2016-03-18,0.05,1,0 +11156579,TOWNHOUSE CHARME IN CITY~EAST 59th STUDIO,2856748,Ruchi,Manhattan,Midtown,40.7591,-73.96334,Entire home/apt,180,30,1,2016-06-02,0.03,49,364 +11157167,Cozy Chinatown studio apartment,17259339,Maia,Manhattan,Two Bridges,40.7113,-73.99442,Entire home/apt,100,4,26,2018-08-25,0.85,1,0 +11158160,Cozy Room Available in Brooklyn,4968801,Mary,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94516,Private room,75,1,0,,,1,0 +11162285,"Charming Brownstone Two-Bedroom, Fort Greene",4302160,Erica + Jonathan,Brooklyn,Fort Greene,40.68642,-73.97701,Entire home/apt,200,1,0,,,1,12 +11162475,"Big, Bright UWS Bedroom and Study",14713587,Annie,Manhattan,Upper West Side,40.80288,-73.96484,Private room,125,3,6,2017-05-18,0.15,1,0 +11162564,union square~Newly Reno~Sleeps 3,2119276,Host,Manhattan,Gramercy,40.73201,-73.98328,Entire home/apt,130,30,6,2018-10-31,0.17,39,246 +11162977,Beautiful Apartment by Astoria park,58061728,Clinton,Queens,Ditmars Steinway,40.78,-73.91672,Entire home/apt,99,4,17,2019-06-23,0.44,1,0 +11164047,Comfy Brownstone Room in Brooklyn,58070616,Brandon,Brooklyn,Bedford-Stuyvesant,40.69032,-73.93699,Private room,40,1,5,2018-06-17,0.12,1,0 +11164599,Top Floor Apartment with Roof Access.,5162894,Catherine,Manhattan,Midtown,40.74389,-73.98515,Private room,120,1,28,2019-05-19,0.89,1,17 +11164714,Brooklyn Factory Loft,58076069,Rochel,Brooklyn,Williamsburg,40.71617,-73.95379,Entire home/apt,350,5,54,2019-06-18,1.38,1,274 +11165881,Private Room With Manhattan Skyline Views,36574113,Johnny,Queens,Long Island City,40.75332,-73.93343,Private room,84,1,25,2019-06-29,2.56,1,69 +11166140,Beautiful Studio/Doorman Building/43 St & 2 Ave,1475015,Mike,Manhattan,Murray Hill,40.74544,-73.9748,Entire home/apt,83,30,1,2018-08-11,0.09,52,311 +11167618,1 Bedroom Getaway in Park Slope,58098561,Megan,Brooklyn,Park Slope,40.67923,-73.97659,Entire home/apt,125,2,8,2018-03-08,0.20,1,0 +11168007,Beautiful Studio in luxury building,6032945,Tabata,Brooklyn,Greenpoint,40.71987,-73.95427,Entire home/apt,110,3,0,,,1,0 +11168411,Big sunny room 20 min to Manhattan,23435560,Iris & Renato,Brooklyn,Bedford-Stuyvesant,40.69823,-73.9431,Private room,38,7,0,,,1,0 +11173173,PERFECT STUDIO FOR 2 EAST 60th ST,2856748,Ruchi,Manhattan,Upper East Side,40.76162,-73.96588,Entire home/apt,138,30,2,2016-08-30,0.05,49,341 +11175261,"Nice, Comfortable Cozy 1 Bedroom.",32124237,Damian,Brooklyn,Prospect-Lefferts Gardens,40.65505,-73.96086,Entire home/apt,100,4,4,2016-10-23,0.11,1,0 +11176819,Stairway to Heaven,58164974,Jeff,Manhattan,Hell's Kitchen,40.75925,-73.99427,Private room,150,4,37,2018-01-02,0.92,1,0 +11178582,Charming bedroom downtown,6980995,Dominik,Manhattan,Chinatown,40.71312,-73.99669,Private room,90,1,5,2017-05-19,0.12,5,0 +11183567,Charming 1BR in UES Townhouse,45595980,Tny,Manhattan,Upper East Side,40.76792,-73.96724,Entire home/apt,154,30,8,2019-05-20,0.22,12,18 +11183878,Unique Duplex Loft in Gated Compound,20609201,Maurice,Brooklyn,Crown Heights,40.6774,-73.94888,Private room,75,3,29,2019-06-16,0.85,1,67 +11185885,CHARMING 1 BEDROOM IN PERFECT LOC!,1613244,Ariel,Manhattan,East Village,40.72438,-73.98782,Entire home/apt,110,30,10,2018-08-12,0.28,9,337 +11186765,"Lovely room with private bathroom, near Manhattan",58234433,Martin,Queens,Sunnyside,40.7359,-73.91912,Private room,129,1,52,2019-06-16,1.27,8,250 +11187353,Cute Cozy 1 bdrm in Carroll Garden!,3285470,Joannie,Brooklyn,Cobble Hill,40.68498,-73.9996,Entire home/apt,190,31,23,2019-06-22,0.62,1,288 +11187722,Midtown Manhattan Hideaway,2772230,Jase,Manhattan,Hell's Kitchen,40.75577,-73.99466,Entire home/apt,185,2,205,2019-06-20,5.83,1,233 +11190303,Nouveau Bohemian in East Village,35672187,Sharda,Manhattan,East Village,40.72196,-73.98345,Private room,108,2,36,2019-06-21,1.18,1,51 +11190497,Sunny bedroom downtown,6980995,Dominik,Manhattan,Civic Center,40.71327,-73.99853,Private room,98,1,10,2017-08-20,0.24,5,0 +11190701,Large room in spacious apartment,1549512,Ilene,Brooklyn,Bushwick,40.69931,-73.91603,Private room,39,4,0,,,2,0 +11190831,Suite1442,18833883,Norga,Brooklyn,Bedford-Stuyvesant,40.67981,-73.94372,Entire home/apt,145,2,125,2019-06-30,3.23,1,271 +11191242,2 Bedroom in The East Village!,35320932,Samantha,Manhattan,Gramercy,40.73598,-73.98161,Entire home/apt,125,1,19,2016-06-23,0.47,1,0 +11192547,bedroom,58274544,Austin,Brooklyn,Crown Heights,40.67305,-73.94533,Private room,85,1,1,2016-02-13,0.02,1,0 +11194693,NYC Private Apt by Subway and Yankee Stadium,29510402,Douglas,Bronx,Longwood,40.82345,-73.9033,Entire home/apt,89,1,185,2019-07-07,4.52,3,104 +11198278,2BR WITH PRIVATE PATIO EAST VILLAGE,2856748,Ruchi,Manhattan,Greenwich Village,40.73455,-73.99171,Entire home/apt,245,30,0,,,49,364 +11199622,EAST VILLAGE~ MASSIVE 1BR &1.5BATH,2856748,Ruchi,Manhattan,East Village,40.7318,-73.98998,Entire home/apt,230,30,0,,,49,363 +11199645,Cozy Minimalist Room in Brooklyn,22123619,Antoine,Brooklyn,Crown Heights,40.67502,-73.9178,Private room,43,3,10,2018-10-21,0.25,2,305 +11204018,"Comfy, quiet room next to subway!",7678663,Ella,Brooklyn,Crown Heights,40.66727,-73.95274,Private room,40,4,1,2016-03-27,0.03,1,0 +11206278,Awesome bdrm+office+lvnroom in design Apart in LES,15231059,Apollo,Manhattan,Lower East Side,40.72003,-73.98646,Private room,200,3,8,2019-06-13,0.21,4,333 +11210604,The Study - UWS Bedroom In Luxury Building,58388047,Jay,Manhattan,Upper West Side,40.79481,-73.97185,Private room,40,21,11,2018-08-12,0.27,1,177 +11210829,"Huge, Sunny & Quiet",58389790,Claudia & Turi,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93257,Entire home/apt,85,180,0,,,1,1 +11211612,Private Room in Williamsburg BK,57069428,Stuart,Brooklyn,Williamsburg,40.715,-73.95,Private room,50,1,0,,,1,0 +11212414,"Spacious, Family-Friendly NYC Apt",58405281,Cristina,Manhattan,Harlem,40.82485,-73.93774,Entire home/apt,75,1,1,2016-02-21,0.02,1,0 +11213418,Lease Chinatown Little Italy 5 bedrm 2 bath,34813079,Jennifer (And My Brother Gordon),Manhattan,Little Italy,40.71862,-73.997,Entire home/apt,255,31,0,,,1,317 +11216918,Cozy 1 Bdr In the West Village,58437137,David,Manhattan,West Village,40.73386,-74.0046,Entire home/apt,199,1,10,2016-04-27,0.25,1,0 +11218995,Nice Room in Comfortable BK apt,24880134,Cam,Brooklyn,Prospect Heights,40.67801,-73.96739,Private room,70,5,2,2016-09-17,0.05,3,0 +11219289,A big Sunny Room.,58453451,Michael,Brooklyn,East New York,40.67327,-73.8872,Private room,33,1,147,2019-07-02,4.08,2,231 +11221362,Private room in the hearth of NYC,58467654,Thomas,Manhattan,Midtown,40.75771,-73.96872,Private room,90,3,3,2017-01-02,0.07,1,0 +11222221,Stunning West Village Loft,18284376,Carol,Manhattan,West Village,40.73618,-74.009,Entire home/apt,150,1,0,,,1,0 +11223328,Mins to SOHO-Good sized 2 Bdrms w/ real comfy beds,36656552,Kandee,Manhattan,Lower East Side,40.71894,-73.99293,Entire home/apt,229,2,147,2019-06-14,3.90,3,283 +11224100,"Charming, Quiet Room with Full Bed",683203,Suguna,Brooklyn,Prospect Heights,40.675,-73.9656,Private room,34,2,2,2016-03-10,0.05,1,0 +11226811,Sunny refuge surrounded by parks,16103591,April,Manhattan,Inwood,40.86609,-73.92638,Entire home/apt,115,3,6,2018-04-17,0.18,1,0 +11227558,Amazing Two-Floor Artist Loft!,58514808,David,Brooklyn,Williamsburg,40.71319,-73.95807,Entire home/apt,171,1,201,2019-07-01,4.87,1,293 +11228502,SMALL ROOM in private House,22420999,Herman,Queens,Richmond Hill,40.69585,-73.83098,Private room,50,2,5,2018-12-31,0.25,5,344 +11228512,Great 1 BR available in UES!,58523861,Doris,Manhattan,Upper East Side,40.77837,-73.94802,Private room,70,1,0,,,1,0 +11228611,COZY CLEAN ROOM 7 MIN FROM JFK,20134231,Paulette,Queens,Springfield Gardens,40.66275,-73.76391,Private room,40,2,375,2019-06-16,9.26,3,336 +11229663,"Joyce and Donovan's, Room for One",56878925,Joyce,Queens,Forest Hills,40.72282,-73.85571,Private room,37,25,15,2018-08-18,0.45,2,330 +11234747,Mins away to Manhattan Suite Residence,24146326,Julien,Queens,Astoria,40.76626,-73.93054,Shared room,1800,3,5,2017-04-09,0.13,2,90 +11236273,Private furnished room in BK apartment,219970,Fely,Brooklyn,Crown Heights,40.67648,-73.9634,Private room,36,1,19,2019-05-31,0.53,2,0 +11238715,Penthouse King Bedroom w/Amazing Views,26434803,Zach,Brooklyn,Bushwick,40.69967,-73.91403,Private room,65,7,1,2016-05-10,0.03,2,0 +11239207,The Blair House Rental,33535733,Andrew,Manhattan,Midtown,40.76096,-73.9672,Private room,120,5,0,,,1,0 +11239248,Charming 1BD in hip east village,12317978,Megan,Manhattan,East Village,40.72814,-73.98018,Entire home/apt,135,2,25,2018-09-09,0.62,1,0 +11240650,Beautiful upper west side townhouse,25713263,Jess,Manhattan,Upper West Side,40.79101,-73.97961,Entire home/apt,2000,4,2,2016-08-23,0.06,1,75 +11242469,"Very Sunny, Couple/Family-friendly",17861935,Yoon,Queens,Flushing,40.76015,-73.79105,Entire home/apt,70,4,0,,,1,0 +11244921,SPACIOUS Designer Loft - 1BR,24058309,Abigail,Manhattan,Midtown,40.75266,-73.97378,Entire home/apt,160,3,1,2016-02-26,0.02,1,0 +11253351,One room available in apartment,55688014,Juliann,Manhattan,Hell's Kitchen,40.76112,-73.99075,Private room,70,1,0,,,1,0 +11254989,"Sunny, Quiet East Vil/LES APT",58730304,Adrienne,Manhattan,East Village,40.72434,-73.98904,Entire home/apt,140,1,6,2016-12-29,0.18,1,0 +11255694,Private room w/ bathroom & kitchen!,181201,Caroll,Brooklyn,Bedford-Stuyvesant,40.68472,-73.93145,Private room,69,3,23,2019-01-01,0.57,1,317 +11257497,"Sunny, Kid Friendly 2 Bedroom",56066134,Jocelyn,Manhattan,Washington Heights,40.85585,-73.93741,Entire home/apt,125,5,2,2017-01-01,0.05,1,0 +11257690,Luxury 2200ft² 4Bed in East Village,29182025,Jonty,Manhattan,Gramercy,40.73268,-73.98551,Entire home/apt,700,5,87,2019-06-22,2.12,1,266 +11259934,Light-Filled Loft (Morgan L),5440411,Dom,Brooklyn,Williamsburg,40.70647,-73.93265,Private room,64,3,10,2017-08-02,0.27,1,0 +11261146,Williamsburg Pied-à-terre,58779931,Nicholas,Brooklyn,Williamsburg,40.71554,-73.94115,Entire home/apt,250,3,7,2019-01-02,0.38,1,0 +11271036,Room in East Harlem,8145820,Felix,Manhattan,East Harlem,40.79606,-73.94881,Private room,30,1,1,2016-02-24,0.02,1,0 +11272222,LA MAISON JOYEUSE - 12 min walk to Yankee Stadium,58857198,Melanie,Bronx,Concourse Village,40.82731,-73.91632,Private room,100,2,54,2017-01-02,1.32,1,0 +11272815,Private Room Off Morgan L Train Stop In Huge Loft,1373616,Gregory,Brooklyn,Williamsburg,40.70346,-73.93523,Private room,40,5,0,,,1,0 +11276229,Triplex w/ 2 full bed/bath and high ceilings,47481444,Trace,Manhattan,Gramercy,40.7357,-73.98396,Private room,200,1,0,,,1,0 +11276513,Large Room in Park Slope,10262436,Jenn,Brooklyn,Park Slope,40.67788,-73.98086,Private room,90,5,0,,,1,0 +11279590,"Cozy and Simple Studio, UES NYC",22492254,Diana Mia,Manhattan,Upper East Side,40.77416,-73.95259,Entire home/apt,145,5,54,2019-07-05,1.43,1,236 +11279820,Newly Renovated 2 Bedroom in Soho!,22292023,Jordon,Manhattan,Lower East Side,40.72224,-73.99192,Entire home/apt,170,1,0,,,1,0 +11279847,Cozy/bright Clinton Hill studio,525856,Rick,Brooklyn,Clinton Hill,40.68354,-73.96748,Entire home/apt,70,6,18,2019-07-04,0.47,1,203 +11281365,Private Room in Uptown Manhattan,24258262,Hannah,Manhattan,Washington Heights,40.83336,-73.94333,Private room,70,2,118,2019-06-30,2.93,1,283 +11281913,Apt in the heart of West Village,3040512,Andrea,Manhattan,West Village,40.73292,-74.00222,Entire home/apt,168,1,1,2016-03-01,0.02,1,0 +11282208,"Sunny ""green"" brownstone duplex with deck & garden",1779599,Bettina,Brooklyn,Bedford-Stuyvesant,40.68556,-73.92767,Entire home/apt,195,4,5,2018-08-16,0.14,1,15 +11282348,Unique Lincoln Square 1 BR Apt,58931360,Juliana,Manhattan,Upper West Side,40.77616,-73.98485,Entire home/apt,250,3,6,2016-07-06,0.15,1,0 +11282499,Hells Kitchen private room 3BR/2BA,5408649,Steven,Manhattan,Hell's Kitchen,40.76508,-73.99087,Private room,55,10,0,,,1,0 +11282788,Gorgeous Brooklyn Master Bedroom,3925093,Nina,Brooklyn,Prospect Heights,40.68018,-73.96582,Entire home/apt,75,16,9,2016-12-26,0.24,1,0 +11284520,Charming Pad in Prime Bushwick,4592263,Natalie,Brooklyn,Bushwick,40.70192,-73.92464,Private room,55,30,0,,,1,0 +11284626,Large BR in Spacious Artist Loft,7519175,Ira,Brooklyn,Bushwick,40.7066,-73.92115,Private room,75,3,0,,,1,0 +11291712,One Bedrm BK Brownstone Beauty,25052740,Nina,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9434,Private room,50,7,10,2019-01-17,0.25,3,243 +11293006,Queen Bedroom in East Village,59007500,Matt,Manhattan,East Village,40.72814,-73.97995,Private room,85,1,4,2016-07-24,0.11,1,0 +11294566,Bright & comfy room in Bed Stuy 3BR,59018284,Dorien,Brooklyn,Bedford-Stuyvesant,40.69062,-73.93497,Private room,28,1,5,2016-04-25,0.12,1,0 +11295457,Manhattan -Harlem- private room / single bed,7055854,Diane,Manhattan,East Harlem,40.80296,-73.94399,Private room,60,5,39,2019-06-06,1.20,5,271 +11295918,"CLEAN, QUIET, COMFORTABLE APARTMENT",4671389,Samuel,Brooklyn,Prospect-Lefferts Gardens,40.66143,-73.95999,Private room,70,1,0,,,1,0 +11296590,One Bedroom apartment in the heart of Chelsea,59032240,Matt,Manhattan,Chelsea,40.74322,-73.99744,Entire home/apt,165,6,4,2019-04-18,0.19,1,13 +11298300,Stylish 2 BR on the Upper West Side,4726696,Maria,Manhattan,Upper West Side,40.79589,-73.96811,Entire home/apt,145,1,1,2016-03-24,0.02,1,0 +11301136,Cute & Cozy Studio_C2S @ UES 81,59066199,DaKyung,Manhattan,Upper East Side,40.77511,-73.95276,Entire home/apt,125,10,5,2019-04-27,0.12,1,88 +11304325,West Village 2 Br,59095370,Gabriella,Manhattan,West Village,40.73313,-74.00336,Entire home/apt,250,1,1,2016-02-25,0.02,1,0 +11304836,Sunny 1-Bdrm Near Shopping,6761373,Iquo,Brooklyn,Flatbush,40.64495,-73.95896,Entire home/apt,69,5,1,2019-04-13,0.34,1,0 +11305815,Fourth of July getaway,59105771,Rachel,Manhattan,Inwood,40.86083,-73.92626,Entire home/apt,140,3,5,2016-12-27,0.13,1,8 +11305912,_Special Offers: Guest Assistance,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67771,-73.96979,Private room,250,1,25,2019-05-01,0.63,13,0 +11309973,ULTRA CHIC 3BR APT IN EAST VILLAGE!,2856748,Ruchi,Manhattan,East Village,40.73157,-73.98792,Entire home/apt,278,30,0,,,49,339 +11311470,EAST VILLAGE 3BR ~WITH GARDEN VIEW!,2856748,Ruchi,Manhattan,East Village,40.73235,-73.98823,Entire home/apt,285,30,0,,,49,364 +11315999,Summer in the City,5577926,Lou,Queens,Astoria,40.76821,-73.9125,Private room,60,1,72,2019-06-15,1.82,4,0 +11316570,Sun-Filled Bedroom in Artist Apartment,3530018,Scott,Brooklyn,Bedford-Stuyvesant,40.69873,-73.93937,Private room,30,50,2,2018-01-02,0.05,1,0 +11317209,Modern Apartment in Williamsburg,20527254,Eddy,Brooklyn,Williamsburg,40.70821,-73.94719,Private room,65,2,9,2016-12-05,0.25,1,0 +11319227,A HOME AWAY FROM HOME IN NYC! UPTOWN,51025844,Kdn,Manhattan,Inwood,40.86761,-73.92718,Shared room,29,1,93,2019-06-15,2.28,3,90 +11320246,Room for rent in East Village,47625541,Jeff,Manhattan,East Village,40.72152,-73.97999,Private room,65,2,4,2016-07-21,0.10,2,1 +11320482,living affordably in prim RIVERDALE,24789838,Aljosha,Bronx,Kingsbridge,40.88599,-73.89868,Private room,45,6,0,,,2,0 +11321187,Entire 1Br Apt on UES,59215698,Daniela,Manhattan,Upper East Side,40.76796,-73.95205,Entire home/apt,130,1,21,2019-07-07,0.56,2,53 +11321484,Williamsburg Abode,59215650,Jil,Brooklyn,Williamsburg,40.71259,-73.95974,Private room,75,3,0,,,1,0 +11322391,Sunny room w/Laundry + own entrance,17824959,Allison,Brooklyn,Bushwick,40.69585,-73.92585,Private room,50,2,1,2016-04-21,0.03,1,0 +11322591,Large 1 bd in East Williamsburg,1525033,Monique,Brooklyn,Williamsburg,40.71055,-73.95017,Entire home/apt,160,7,4,2017-10-06,0.10,1,0 +11324531,PRIVATE ROOM - GREENPOINT,31860430,Grayson,Brooklyn,Greenpoint,40.73733,-73.95336,Private room,65,1,0,,,1,0 +11324565,Private Room. Twin Bed. Great Stay!,59070885,Eric Charles,Manhattan,Upper East Side,40.76658,-73.95224,Private room,39,1,5,2016-04-16,0.12,1,0 +11325107,Cozy 1 Bedroom in the Village,3417090,Trevor,Manhattan,Gramercy,40.7328,-73.9841,Entire home/apt,145,1,125,2019-02-24,3.63,1,0 +11325635,Lovely Brownstone close to subway,404629,Jazzy,Brooklyn,Bedford-Stuyvesant,40.68079,-73.95556,Entire home/apt,195,4,122,2019-06-30,3.01,1,236 +11326009,Cozy SunLit Room Next To TimeSquare,13125944,Calvin,Manhattan,Hell's Kitchen,40.7651,-73.98854,Private room,79,1,2,2016-05-21,0.05,2,0 +11334160,Sunny New Apartment in Artsy Area!,41616878,Melissa,Brooklyn,Bushwick,40.69033,-73.9083,Private room,50,30,12,2019-05-31,0.31,4,326 +11334476,Comfortable Bedroom,47515751,Jennyfer,Manhattan,Inwood,40.86679,-73.92552,Private room,35,3,10,2019-03-24,0.24,2,31 +11334624,Sunny Friendly 3BR Lower East Side,35095754,Lorraine,Manhattan,Lower East Side,40.72048,-73.9906,Private room,325,2,130,2019-06-21,3.30,2,139 +11335874,Huge bedroom in luxurious apartment,5650826,Colin,Manhattan,East Harlem,40.78626,-73.94429,Private room,40,4,2,2016-04-02,0.05,1,0 +11337187,"Cute, cozy, hip Williamsburg nest",22570120,Charles,Brooklyn,Williamsburg,40.70969,-73.9592,Entire home/apt,95,30,10,2019-02-09,0.30,2,27 +11337913,Private Bedroom Midtown,3660628,Michelle,Manhattan,Upper West Side,40.76898,-73.98453,Private room,105,4,0,,,1,0 +11338529,Private room in Uptown Manhattan,59345189,Jenniffer,Manhattan,Inwood,40.86313,-73.92162,Private room,43,2,55,2018-04-22,1.98,1,0 +11339109,Sunny Artist PH - Williamsburg w/PrivateTerrace,58179165,Meg,Brooklyn,Williamsburg,40.71175,-73.96728,Entire home/apt,225,1,6,2018-10-07,0.28,1,89 +11339154,Renovated Large Studio Apartment,10990986,Daniel,Manhattan,Upper West Side,40.79153,-73.97174,Entire home/apt,175,3,3,2016-04-07,0.08,1,0 +11341650,"Room off Jefferson L, Bushwick",978580,Marta,Brooklyn,Bushwick,40.70515,-73.925,Private room,75,1,0,,,1,0 +11343196,Charming Studio in Great Location,5368671,Kevin,Brooklyn,Cobble Hill,40.68963,-73.99259,Entire home/apt,94,1,39,2019-06-02,0.98,1,4 +11344203,"Cozy lofted room, with patio",26082446,Natali,Brooklyn,Bushwick,40.69607,-73.92295,Private room,100,1,0,,,1,0 +11351798,West Village penthouse loft w roof,29658310,Nathaniel,Manhattan,Greenwich Village,40.73469,-73.99838,Entire home/apt,200,3,1,2016-05-18,0.03,1,0 +11352664,Gated Manhattan Enclave,26024758,Sabia,Manhattan,East Harlem,40.81357,-73.93575,Entire home/apt,95,2,74,2019-06-02,1.85,1,92 +11355476,Cozy studio living-room sharing in Little Italy,49621731,Angel,Manhattan,Little Italy,40.71987,-73.99729,Shared room,65,5,19,2019-06-15,0.67,1,89 +11356941,Sleek Modern Loft w/ Balcony,7194539,Chris,Brooklyn,Williamsburg,40.717,-73.9565,Entire home/apt,349,2,42,2019-06-30,1.07,1,337 +11357182,Cozy room in Williamsburg apartment,6369681,Juliann,Brooklyn,Williamsburg,40.7106,-73.95884,Private room,41,1,4,2016-06-20,0.10,1,0 +11359026,One bedroom apt near Times Square,59499901,Nate,Manhattan,Hell's Kitchen,40.76189,-73.98961,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +11359148,Cozy Garden Apartment,42389158,Han And Denyce,Brooklyn,Flatbush,40.64181,-73.9522,Entire home/apt,85,2,168,2019-07-06,4.22,1,246 +11359913,Gramercy Townhouse,53356372,Brenda,Manhattan,Gramercy,40.73546,-73.98057,Entire home/apt,1200,2,0,,,1,0 +11360407,"Rm in 3BR Dplx/1Bth, ClintonHill off WashingtonAve",59509831,Jaleelah A.,Brooklyn,Clinton Hill,40.68073,-73.96217,Private room,150,2,3,2019-06-17,0.08,1,35 +11360854,1 BEDROOM IN COZY APARTMENT,1565924,Johanna,Manhattan,East Harlem,40.79191,-73.94613,Private room,65,1,1,2016-12-30,0.03,1,0 +11362569,Private Hell's Kitchen Two person room,59529529,Han,Manhattan,Hell's Kitchen,40.76179,-73.99403,Private room,110,1,161,2019-06-30,4.42,6,165 +11363349,Cute bedroom in the East Village,29392554,Yana,Manhattan,East Village,40.72916,-73.97816,Private room,75,120,0,,,1,173 +11370047,Sunny and Spacious Room in Central Harlem,6669178,Jay,Manhattan,Harlem,40.81696,-73.94164,Private room,80,3,69,2019-05-25,1.70,1,3 +11370207,"Bright, modern room in clean appt",12797993,Richard,Brooklyn,Bushwick,40.69783,-73.90998,Private room,45,3,6,2016-11-06,0.15,1,0 +11371099,Charming 1 Bedroom Brooklyn Apt,59595517,Lisa,Brooklyn,Bedford-Stuyvesant,40.68164,-73.93497,Entire home/apt,83,4,106,2019-06-16,2.64,1,201 +11371535,Cozy and bright bedroom with a queen size bed.,55618434,Donald,Bronx,Bronxdale,40.85324,-73.86506,Private room,40,2,83,2019-06-16,2.08,1,276 +11371773,Sunny room with private insuite bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69627,-73.9345,Private room,79,3,37,2019-06-30,0.94,7,358 +11371974,1 bedroom Apt in Prospect Heights,32974295,Jacqueline,Brooklyn,Prospect Heights,40.67893,-73.97068,Entire home/apt,70,1,0,,,1,0 +11372330,Manhattan Apartment + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81312,-73.94273,Entire home/apt,177,3,90,2019-06-22,2.59,3,175 +11373565,Private room in Williamsburg,59609062,Evan,Brooklyn,Williamsburg,40.70718,-73.94672,Private room,60,1,0,,,1,0 +11374387,Beautiful home close to CentralPark,4275336,Andy,Manhattan,Upper West Side,40.77271,-73.98811,Entire home/apt,190,1,2,2016-09-20,0.05,1,0 +11374453,Large 3 Br on Central Park North,7605261,Ian,Manhattan,East Harlem,40.79766,-73.94756,Entire home/apt,240,2,5,2017-07-23,0.13,1,0 +11375631,Spacious 1 BR Apartment - UES,58110428,Mac,Manhattan,Upper East Side,40.7695,-73.9532,Entire home/apt,150,2,10,2017-01-04,0.25,1,0 +11377233,"Spacious, modern room in Bedstuy",42626435,Will,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9441,Private room,31,29,10,2017-05-28,0.25,1,0 +11377777,Great Apartment in Manhatan,16969920,Talita,Manhattan,Morningside Heights,40.81633,-73.96147,Entire home/apt,110,1,3,2017-01-10,0.09,1,0 +11378048,Charming One Bedroom in Boerum Hill,4161553,Michael,Brooklyn,Gowanus,40.6848,-73.98894,Entire home/apt,120,2,5,2016-05-09,0.13,1,0 +11378564,Love Where You Live! 3BR Garden Apartment Duplex,5120972,Rachel And Bart,Brooklyn,Greenpoint,40.72555,-73.95323,Entire home/apt,176,3,122,2019-06-26,3.63,1,54 +11381288,Lower East Side Living,49021868,Conor,Manhattan,Lower East Side,40.7213,-73.989,Entire home/apt,199,4,9,2019-01-03,0.22,1,0 +11387473,Hipster Central,17598715,Ryan,Brooklyn,Red Hook,40.67941,-74.0124,Entire home/apt,200,1,0,,,1,0 +11389037,Private room in Greenpoint Apt.,51425591,Matthew,Brooklyn,Greenpoint,40.72347,-73.94199,Private room,70,1,0,,,1,0 +11389773,Chambre au coeur de Manhattan,59746634,Joël,Manhattan,Chelsea,40.74721,-73.98968,Private room,65,1,0,,,1,0 +11391101,Hip Bushwick right on the L train!,59756933,Magdalena,Brooklyn,Bushwick,40.70223,-73.9148,Private room,60,2,1,2016-03-19,0.02,1,0 +11396225,Beautiful Brownstone apt in Central Harlem,9585945,Tom & Emma,Manhattan,Harlem,40.80761,-73.94249,Entire home/apt,140,4,7,2018-11-08,0.20,1,128 +11396922,Designer 1Bd with Treelined Terrace,2821175,Theresa,Brooklyn,Prospect Heights,40.67948,-73.96567,Entire home/apt,150,21,1,2016-04-30,0.03,1,0 +11397141,Luxury apartment in Williamsburg,31284498,Abe,Brooklyn,Williamsburg,40.71905,-73.95426,Entire home/apt,200,1,0,,,1,0 +11398939,Stay in Private Room in PARK SLOPE,4218873,Elizabeth,Brooklyn,Sunset Park,40.66216,-73.98985,Private room,55,1,1,2019-03-31,0.30,1,0 +11399898,"Huge, spacious 2 bdrm, 2 bath apartment on the LES",23590752,Neriza,Manhattan,East Village,40.72201,-73.98277,Entire home/apt,200,2,7,2019-07-07,3.68,1,36 +11401884,Charming Pied-à-terre à New York!,59849677,Tom & Mel,Manhattan,East Harlem,40.79736,-73.94442,Private room,100,2,77,2019-07-06,1.90,1,235 +11407817,Wonderful apartment with view & Rooftop!!!!,9290968,Marco,Queens,Astoria,40.77349,-73.92648,Entire home/apt,112,1,2,2017-05-28,0.07,1,0 +11411361,Sunny private bedroom,57287881,Ivy,Brooklyn,Williamsburg,40.71097,-73.94549,Private room,45,5,0,,,1,0 +11411839,"sunny, cozy room near subway",18873268,Sandy,Brooklyn,Bedford-Stuyvesant,40.69586,-73.95026,Private room,75,5,3,2016-09-11,0.08,1,0 +11412104,Furnished Room in Williamsburg,59916586,Eugenia,Brooklyn,Williamsburg,40.70723,-73.94939,Private room,45,1,1,2016-04-02,0.03,1,0 +11412169,Condo at Wyndham Midtown 45,40744172,Laurie,Manhattan,Midtown,40.75225,-73.97177,Private room,499,3,0,,,1,0 +11412980,Private Garden Apartment,59922151,Pierce,Brooklyn,Cobble Hill,40.6885,-73.99526,Entire home/apt,160,2,205,2019-06-30,5.08,1,6 +11414971,"SUNNY, SAFE and FRIENDLY minutes to Manhattan!",6705983,Laurie,Queens,Jackson Heights,40.75179,-73.89015,Entire home/apt,100,2,6,2017-09-24,0.17,1,0 +11415455,Cute East Village Studio Apartment,20868549,Kerri,Manhattan,East Village,40.72793,-73.98771,Entire home/apt,175,1,2,2016-05-21,0.05,1,0 +11419133,Private sunny room in Chelsea,6034691,Eleena,Manhattan,Chelsea,40.74448,-73.99221,Private room,80,40,2,2016-12-20,0.05,1,0 +11419512,Brand New Building/Apt - Great Area,59913399,Michael,Brooklyn,Williamsburg,40.71016,-73.96076,Private room,60,3,8,2018-11-20,0.36,1,3 +11419898,Doorman 1 bedroom Amazing Location 5151,16098958,Jeremy & Laura,Manhattan,Financial District,40.70425,-74.00845,Entire home/apt,175,30,2,2016-05-07,0.05,96,312 +11420840,Lovely room in Jackson Heights,45404393,Say,Queens,Jackson Heights,40.75106,-73.88349,Private room,65,2,17,2019-06-16,0.44,1,314 +11421477,West Village Modern Studio,1746436,Dami,Manhattan,West Village,40.73682,-74.00238,Entire home/apt,159,2,47,2019-05-27,1.16,1,361 +11421994,Spacious Flat in HeArt of Bushwick!,51276298,Kayan,Queens,Ridgewood,40.70679,-73.91692,Entire home/apt,118,2,153,2019-06-16,3.77,1,337 +11422056,Lovely & Cozy Apartment in Queens!,59996301,Joseph,Queens,Maspeth,40.7416,-73.90684,Entire home/apt,120,3,88,2019-06-19,2.25,1,303 +11422779,High Rise Elevator Building in NYC,7505413,Tim,Manhattan,Lower East Side,40.71523,-73.98489,Private room,91,2,42,2019-05-16,1.10,1,80 +11431526,"Huge, Sunny Carroll Gardens 1BR Apt",1449155,Hadley,Brooklyn,Carroll Gardens,40.68285,-73.99495,Entire home/apt,125,5,1,2016-07-05,0.03,1,0 +11431871,"Crown Heights, Franklin Ave- Sunny Room",60059749,Amanda,Brooklyn,Crown Heights,40.67283,-73.95551,Private room,55,1,21,2017-07-26,0.53,2,0 +11433561,Fresh East Village 4K Pre-War Remix w Full Bar!,3395433,Nick,Manhattan,East Village,40.73117,-73.98386,Entire home/apt,175,3,6,2019-06-02,1.91,1,0 +11434339,"Nice, Sunny and by Yankee Stadium",60077790,Veronica,Manhattan,Harlem,40.82044,-73.93605,Private room,100,1,0,,,1,0 +11434570,Spacious park block garden studio,5162192,Amy,Manhattan,Upper West Side,40.79804,-73.96135,Entire home/apt,140,30,19,2019-03-03,0.47,12,256 +11434848,Private room in Manhattan,12925391,Claire,Manhattan,Harlem,40.8006,-73.95314,Private room,55,1,0,,,1,0 +11435529,Light filled room in hip Gowanus,30545042,Waciuma,Brooklyn,Gowanus,40.67937,-73.98404,Private room,40,3,1,2016-03-22,0.02,1,0 +11435936,Huge 1bd Doorman GYM Roof 5224,16098958,Jeremy & Laura,Manhattan,Theater District,40.76241,-73.98587,Entire home/apt,180,30,5,2018-06-09,0.15,96,303 +11436132,Long Island City Penthouse 1 stop 2 Manhattan,217922,Eileen,Queens,Long Island City,40.74859,-73.93904,Entire home/apt,110,30,32,2019-05-17,0.84,1,66 +11437634,Modern 1-bdrm apt near Manhattan and Central Park,25194025,Tessa & Negra,Queens,Astoria,40.75579,-73.9148,Entire home/apt,90,2,101,2019-06-28,2.91,1,266 +11437792,Hipster Room in South Williamsburg,354385,Chris,Brooklyn,Williamsburg,40.71004,-73.95644,Private room,50,1,2,2017-02-12,0.07,1,0 +11438189,Everything you need in NYC! 3BR,4422962,Remo,Brooklyn,Bedford-Stuyvesant,40.67834,-73.92442,Entire home/apt,135,30,155,2019-05-21,3.97,1,281 +11439208,1 bedroom in 2 bed-apt in the best of Brooklyn,9896078,Geraldine,Brooklyn,Williamsburg,40.71745,-73.9569,Private room,60,3,1,2017-01-03,0.03,1,0 +11439224,Huge bedroom in the heart of NYC,60112093,Miranda,Manhattan,Kips Bay,40.74308,-73.98172,Private room,200,2,12,2017-12-08,0.52,1,0 +11440252,Cozy room in Adorable 2BR apt inUES special price,1721738,Amir,Manhattan,Upper East Side,40.77327,-73.94982,Private room,90,10,23,2019-05-21,0.60,1,8 +11441498,Lincoln Center Apartment,26104727,Ambika,Manhattan,Upper West Side,40.77137,-73.98321,Entire home/apt,180,1,0,,,1,0 +11441692,Modern West Village Studio,6501137,Dee,Manhattan,West Village,40.73982,-74.00807,Entire home/apt,228,1,10,2017-01-01,0.25,1,0 +11442506,Apt in Upper West near Central Park,24405972,Paula,Manhattan,Upper West Side,40.77661,-73.98228,Entire home/apt,250,4,3,2019-01-02,0.08,1,0 +11442670,Females Only Private Room JFK 1Omin,60145132,Annett And Chuck,Queens,Jamaica,40.69462,-73.80178,Private room,40,1,1,2016-10-08,0.03,1,88 +11444671,"Great Home & Host, Next to 1 train.",60163700,Dee,Manhattan,Harlem,40.82283,-73.95247,Private room,65,14,42,2019-05-24,1.04,4,185 +11450373,STUDIO IN VILLAGE CHARM~PERRY STREET!,2856748,Ruchi,Manhattan,West Village,40.73642,-74.00263,Entire home/apt,188,30,2,2016-11-01,0.06,49,342 +11451070,Spacious studio near Central Park,31500454,Maria,Manhattan,Morningside Heights,40.8042,-73.96507,Entire home/apt,130,5,1,2016-03-04,0.02,1,0 +11451660,Great apartment -North Williamsburg,2266717,Thais & Antoine,Brooklyn,Greenpoint,40.72306,-73.94786,Entire home/apt,140,2,43,2019-01-06,1.06,1,0 +11452070,Great Private Room in West Village,17038671,Anthony,Manhattan,West Village,40.73133,-74.00459,Private room,130,1,74,2018-07-27,1.86,2,243 +11452547,"Family friendly, amazing garden in Cobble hill",1621363,Elizabeth,Brooklyn,Boerum Hill,40.68623,-73.98956,Entire home/apt,300,29,7,2019-01-13,0.19,2,312 +11452989,Simple but spaced - Near to subway,12531773,Renata,Manhattan,Harlem,40.82195,-73.95508,Private room,50,4,64,2019-06-16,3.31,2,162 +11453029,Cozy Groundfloor Apartment w/Garden,22169347,Laura,Brooklyn,Crown Heights,40.6758,-73.95578,Entire home/apt,75,4,6,2018-08-27,0.16,1,0 +11453784,Prime Chelsea~roof deck~laundry...,2119276,Host,Manhattan,Chelsea,40.7437,-73.99476,Entire home/apt,200,30,7,2019-06-14,0.49,39,311 +11455372,Space for Small Events /Gatherings/Dinner Parties,16245414,Shae,Brooklyn,Bushwick,40.69322,-73.92378,Entire home/apt,250,1,6,2018-03-11,0.15,4,0 +11456047,【完全個室】1BR、専用バストイレ、キッチン付き(Queens),60239797,Hazuki,Queens,Elmhurst,40.73958,-73.87288,Private room,100,1,0,,,1,0 +11456592,"Brooklyn Love, Close to the City!!",60244293,Savannah,Brooklyn,Bedford-Stuyvesant,40.68647,-73.92849,Entire home/apt,112,2,168,2019-06-21,4.11,2,291 +11456821,"Luxury Midtown West Studio w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.75994,-73.99781,Entire home/apt,230,30,0,,,3,176 +11457413,Designed By Stark!Basket Ball Gym 5150,16098958,Jeremy & Laura,Manhattan,Financial District,40.70563,-74.00658,Entire home/apt,170,30,3,2017-04-22,0.10,96,312 +11457547,"NEW! Furnished, East Village Gem",16589150,Daniel,Manhattan,East Village,40.72526,-73.99031,Private room,79,2,14,2016-06-17,0.34,1,0 +11457577,Private Room Near Times Square!,45033175,Eugene,Manhattan,Hell's Kitchen,40.76071,-73.99188,Private room,125,3,0,,,3,0 +11458818,Dooman GYM prime location!5178,16098958,Jeremy & Laura,Manhattan,Theater District,40.76279,-73.9854,Entire home/apt,285,30,7,2018-12-16,0.19,96,311 +11458973,"Luxury Midtown West 2BR w/pool, wifi",9419684,Mike,Manhattan,Hell's Kitchen,40.76144,-73.99827,Entire home/apt,421,30,0,,,3,0 +11459084,LES sunny bedroom with roof access,20175896,Zack,Manhattan,Lower East Side,40.72132,-73.98369,Private room,110,3,26,2019-04-22,0.64,1,0 +11459958,Amazing spacious Loft in Williamsbu,60266817,Alberto,Brooklyn,Williamsburg,40.71213,-73.95654,Entire home/apt,690,1,91,2019-06-23,2.28,1,169 +11460993,Harlem Gem,60278793,Lisa,Manhattan,Harlem,40.81575,-73.94913,Entire home/apt,169,3,96,2019-06-17,2.51,1,39 +11461331,Spacious & Sunny Urban Treehouse,12981247,Allison,Brooklyn,Crown Heights,40.67677,-73.93783,Private room,60,3,1,2016-04-01,0.03,1,0 +11461524,Spacious Loft Greenpoint/Williamsbr,16919101,Eric,Brooklyn,Greenpoint,40.72474,-73.95508,Private room,70,2,28,2018-10-12,1.12,1,0 +11461798,Central Park - 2 Cozy Rooms (Max. 7 People),60281397,Lugao,Manhattan,Upper West Side,40.79576,-73.96856,Private room,150,2,21,2019-05-08,0.53,3,333 +11462440,Sweet and Cosy apartment,14076492,Shira,Manhattan,Upper West Side,40.7989,-73.96775,Private room,120,12,0,,,1,0 +11462944,Big Cozy Apartment in West Uptown,46453731,Gabriela,Manhattan,Harlem,40.80136,-73.95476,Entire home/apt,140,4,0,,,1,0 +11465084,1 Bedroom Apartment -Tompkins sq Park/East Village,48870027,Selim,Manhattan,East Village,40.72697,-73.98072,Entire home/apt,160,4,19,2019-06-11,0.48,1,343 +11470210,"Delightful, Cozy and Convenient Room in Brooklyn!!",60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69165,-73.943,Private room,50,1,210,2019-05-28,5.17,4,189 +11474664,Family-friendly 2 bed apt.near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68165,-73.84558,Entire home/apt,120,4,70,2019-06-05,1.76,4,51 +11474808,Huge Apt for Family Close to Trains,1524765,Christopher,Brooklyn,Clinton Hill,40.68701,-73.96174,Entire home/apt,140,3,4,2016-08-07,0.11,1,0 +11477869,Lovely Home in Prime Brooklyn,60401178,Dan,Brooklyn,Gowanus,40.67884,-73.99238,Entire home/apt,619,5,9,2019-04-21,0.23,1,54 +11478813,"Lovely 3 Bedroom, 2 Bath Flatiron Area Loft",60409176,C.E.,Manhattan,Flatiron District,40.73994,-73.99005,Entire home/apt,600,5,28,2019-05-26,0.71,1,338 +11479334,Fantastic 1 Bdrm | Entire Apartment,24031106,James,Manhattan,Harlem,40.81086,-73.94037,Entire home/apt,76,14,2,2017-09-03,0.05,1,0 +11480835,Brooklyn Bushwhick Private Room,7990995,Juno,Brooklyn,Bushwick,40.70017,-73.92081,Private room,35,1,0,,,1,0 +11481037,A slice of heaven on earth in NYC,60294559,Vidya,Manhattan,Midtown,40.75321,-73.97215,Shared room,75,1,2,2018-01-01,0.10,1,0 +11481639,Master Room in Downtown Queens NYC,51278789,Grace,Queens,Corona,40.73884,-73.8665,Private room,40,16,34,2019-05-11,0.87,2,146 +11483117,Brooklyn Style Apartment,60446325,Taniesha,Brooklyn,Clinton Hill,40.69483,-73.96403,Private room,54,2,30,2019-06-05,1.17,1,333 +11484489,Soho sanctuary in perfect location,10174622,Ash,Manhattan,Nolita,40.72225,-73.99473,Entire home/apt,140,2,44,2019-07-07,1.10,1,110 +11484596,WEST 56TH COLUMBUS CIRCLE-LUXURY DOORMAN/GYM/DECK,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76584,-73.98422,Entire home/apt,225,30,0,,,49,348 +11486357,"Sunny Room, Hamilton Heights Section of Manhattan",27378293,Lendy,Manhattan,Harlem,40.8285,-73.94889,Private room,87,1,2,2018-11-30,0.23,3,332 +11486601,Beautiful Spacious Loft near subway and train,4964682,Luis And Oriana,Manhattan,Marble Hill,40.87665,-73.90855,Entire home/apt,131,3,43,2019-06-15,1.18,1,317 +11488593,LUXURY DOORMAN STUDIO ON EAST 44th STREET,2856748,Ruchi,Manhattan,Midtown,40.75066,-73.97037,Entire home/apt,198,30,0,,,49,364 +11490215,Gorgeous family friendly 3BR by Columbia campus,8536366,Shai,Manhattan,Morningside Heights,40.80792,-73.96728,Entire home/apt,450,5,9,2019-06-24,0.33,1,329 +11490744,Beautiful Apartment in Historic Brooklyn Townhouse,24743701,Renata And Howard,Brooklyn,Prospect-Lefferts Gardens,40.65976,-73.95604,Entire home/apt,175,2,123,2019-06-23,3.32,2,67 +11491051,NYC Studio Apartment,60500336,Adam,Manhattan,Murray Hill,40.74573,-73.97802,Entire home/apt,100,1,1,2016-04-01,0.03,1,0 +11491696,Studio apartment close to subway,60502606,Brooke,Manhattan,Upper West Side,40.78838,-73.97892,Entire home/apt,250,1,0,,,1,0 +11493255,Central Park / UWS,60516459,Ana,Manhattan,Upper West Side,40.77156,-73.98284,Private room,280,2,60,2019-06-18,1.47,1,317 +11495721,Full apartment available,51646459,Attika,Brooklyn,Bedford-Stuyvesant,40.68674,-73.93375,Entire home/apt,135,30,26,2017-01-01,0.64,1,365 +11495792,Huge 1 bdrm apt; sublet March-Aug,60535622,Adela,Brooklyn,Crown Heights,40.66391,-73.95179,Entire home/apt,2100,120,0,,,1,363 +11495797,1br Suite - St Regis Residence Club,60535711,Bruce,Manhattan,Midtown,40.7604,-73.9741,Entire home/apt,1100,2,20,2019-05-16,0.53,2,268 +11496210,Sunny family-friendly 1 bed. apt near Manhattan,15145474,Denisse,Queens,Ozone Park,40.68084,-73.84765,Entire home/apt,87,4,86,2019-06-10,2.13,4,58 +11496607,Trendy 1 Bedroom Harlem Brownstone,60542135,Amal & Emad,Manhattan,Harlem,40.80187,-73.94705,Entire home/apt,165,3,60,2019-06-17,1.49,1,278 +11496968,1BD apartment with balcony on park,831572,Rupert,Brooklyn,Fort Greene,40.69277,-73.97449,Entire home/apt,170,1,12,2016-10-16,0.30,1,0 +11497795,"Cheap, clean, 15 min. to Manhattan",6067526,Matt,Queens,Jackson Heights,40.74852,-73.8889,Private room,50,1,0,,,1,188 +11497938,One Bedroom with kids room / office,60501531,John,Bronx,Spuyten Duyvil,40.88058,-73.91812,Entire home/apt,79,186,7,2016-07-30,0.18,1,365 +11503335,Small Room Double Bed and 25 x 15 ft livingroom,6502531,Andrea,Manhattan,Chelsea,40.74549,-73.99473,Private room,84,1,13,2018-08-27,0.36,2,23 +11503509,Riverside park and Columbia Univ,60596749,Neil,Manhattan,Morningside Heights,40.80752,-73.96713,Entire home/apt,375,7,5,2016-09-06,0.14,1,0 +11505981,Sunny Manhattan Studio - perfect for couples,60615372,Katy,Manhattan,Upper East Side,40.78222,-73.94725,Entire home/apt,135,2,31,2018-01-03,0.83,1,0 +11506248,Private Room & Bathroom with Sauna,923791,Daniel,Brooklyn,South Slope,40.66397,-73.98538,Private room,125,1,7,2017-10-19,0.17,2,0 +11509497,HUGE LIGHTENED ROOM / APARTMENT BROOKLYN,60639864,Joseph,Brooklyn,Bedford-Stuyvesant,40.68962,-73.95169,Private room,79,1,16,2019-06-19,0.41,1,0 +11511431,Historic Upper West Side Townhouse 1 or 2 Bdrms,23901404,Ray,Manhattan,Harlem,40.82334,-73.94811,Entire home/apt,165,2,90,2019-07-07,2.58,1,35 +11511466,Manhattan: 80's upper east side - entire apartment,1827164,Diana,Manhattan,Upper East Side,40.77287,-73.95292,Entire home/apt,300,31,1,2016-10-18,0.03,1,201 +11511592,Super-cute apartment in Harlem!,17752872,Cleo,Manhattan,Harlem,40.83038,-73.94531,Private room,45,1,2,2016-04-26,0.05,1,0 +11512962,Central Park 2BR Luxury building~24H DM Newly Reno,2119276,Host,Manhattan,Midtown,40.76687,-73.98273,Entire home/apt,400,30,2,2016-12-11,0.06,39,188 +11513480,Spacious & sunny room in Brooklyn!,47105925,Afnan,Brooklyn,Crown Heights,40.6718,-73.94266,Private room,40,2,2,2016-03-23,0.05,1,0 +11514023,Chill place near subway/park/river.,50462669,Mo,Manhattan,Upper West Side,40.7939,-73.97404,Private room,60,3,2,2016-04-15,0.05,1,0 +11514756,RENOVATED/BEST LOCATION in MIDTOWN,60688035,Marta,Manhattan,Midtown,40.75921,-73.97361,Private room,250,3,167,2019-06-15,4.42,2,198 +11514862,Large (clean) private bedroom in Crown Heights,54772069,Dominic,Brooklyn,Crown Heights,40.67634,-73.94133,Private room,55,30,0,,,1,365 +11521447,Sunny & Spacious 1br Lower East Side Apartment,19249692,Peter,Manhattan,Chinatown,40.71659,-73.98949,Entire home/apt,199,3,92,2019-07-06,2.28,1,48 +11522815,Cute 1bd w/balcony E Williamsburg,60753668,Therese,Brooklyn,Williamsburg,40.71946,-73.94193,Entire home/apt,130,30,42,2018-06-29,1.06,1,0 +11524437,Private Room - One of a kind chance in East Harlem,21937063,Ari,Manhattan,East Harlem,40.79712,-73.93469,Private room,44,6,14,2019-06-03,0.35,1,335 +11526590,Large 1br in central Nolita / SoHo,576387,Noah,Manhattan,Nolita,40.7219,-73.99669,Entire home/apt,200,5,5,2016-10-17,0.12,1,0 +11526684,Cozy Loft in Flushing,21960625,Erjon,Queens,Flushing,40.75485,-73.82138,Entire home/apt,90,3,1,2016-03-25,0.02,1,0 +11526771,Superb Steps away from Union Square,15152746,Joseph,Manhattan,Gramercy,40.7339,-73.98523,Private room,139,1,0,,,1,0 +11528951,Spacious duplex in townhouse.,1141610,Maria,Brooklyn,Crown Heights,40.67578,-73.92731,Entire home/apt,250,7,0,,,1,0 +11529142,Colorfull apart in NY.,149430,Tida,Manhattan,East Harlem,40.78687,-73.94542,Entire home/apt,120,5,35,2019-07-01,1.27,2,303 +11529406,"Cozy 1 Bedroom in Bay Ridge, NYC",14406362,Melissa,Brooklyn,Bay Ridge,40.62637,-74.02989,Entire home/apt,100,4,2,2017-10-23,0.09,1,0 +11529467,"Comfy, Convenient and a Balcony!",60802539,Hannah,Brooklyn,Crown Heights,40.67509,-73.9572,Entire home/apt,133,2,0,,,1,0 +11530901,Modern Condo in Heart of Harlem,42535703,Fma,Manhattan,East Harlem,40.79922,-73.94677,Private room,120,3,0,,,2,0 +11531130,Prime Williamsburg 2 Balcony & Roof,740029,Emily,Brooklyn,Williamsburg,40.70997,-73.9647,Entire home/apt,100,1,1,2016-03-13,0.02,1,0 +11531154,Beautiful Apartment in Chelsea,27906470,Robin,Manhattan,Chelsea,40.74161,-74.00162,Private room,70,1,0,,,1,0 +11531322,"Cheerful, large 3BR w/ yard! Perfect for families!",60817772,Robina,Brooklyn,Sunset Park,40.66052,-73.9939,Entire home/apt,200,4,1,2016-08-12,0.03,1,0 +11531744,Charming Upper East Side priv. room + private bath,420399,Gautam,Manhattan,Upper East Side,40.76973,-73.9566,Private room,89,5,16,2019-06-29,0.40,2,80 +11532023,In the Heart of Williamsburg,60821050,Ashley,Brooklyn,Williamsburg,40.72005,-73.95677,Private room,75,1,1,2016-03-30,0.03,1,0 +11532518,1 Bedroom Apt East Village/USQ,24319977,Charles,Manhattan,East Village,40.72895,-73.98558,Entire home/apt,200,1,0,,,1,0 +11534035,Room - Manhattan! Walking distance to Central Park,11670284,Val,Manhattan,Upper East Side,40.76991,-73.95145,Private room,90,1,38,2019-06-08,0.95,2,361 +11535506,Bright bedroom in Soho / roof access,7539044,Vinciane,Manhattan,SoHo,40.72705,-74.00314,Private room,190,2,53,2019-04-08,1.42,2,38 +11542467,Manhattan Gem-Space & Convenience,52203920,Jennifer,Manhattan,Washington Heights,40.8348,-73.94067,Entire home/apt,150,2,119,2019-06-30,2.95,1,300 +11543453,Hudson COLUMBIA PRESBYTERIAN MED CTR * Studio Apt*,25237492,Juliana,Manhattan,Washington Heights,40.84077,-73.93924,Entire home/apt,85,30,6,2018-11-10,0.17,34,311 +11544438,Clean Room in Prime Hip LES,35664937,Zachary,Manhattan,Lower East Side,40.71713,-73.98906,Private room,65,1,14,2016-10-01,0.35,1,0 +11544577,COLUMBIA PRESBYTERIAN MED CTR *1 Bedroom* Apt,25237492,Juliana,Manhattan,Washington Heights,40.84098,-73.94085,Entire home/apt,110,30,7,2018-12-01,0.18,34,252 +11544648,Sofa bed for FEMALE only on the Lower East Side,60915621,Lynn,Manhattan,Chinatown,40.71556,-73.99209,Shared room,70,1,88,2019-06-29,5.44,1,55 +11545797,Cozy room with queen bed in 4b,8167445,Pedro,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94242,Private room,55,3,10,2017-11-10,0.25,1,0 +11546462,Midtown East Master Bedroom,44357881,Lauren,Manhattan,Midtown,40.74512,-73.98176,Private room,75,1,0,,,1,0 +11546806,Bright Midtown Apartment,13125944,Calvin,Manhattan,Hell's Kitchen,40.7653,-73.98825,Private room,59,1,1,2016-03-19,0.02,2,0 +11547077,Beautiful with private terrace,8200984,Emilie,Brooklyn,Park Slope,40.67764,-73.97835,Entire home/apt,200,3,4,2018-01-02,0.10,1,0 +11547246,"Large, sunny room - Lower East Side",22551065,Tamir,Manhattan,Lower East Side,40.71931,-73.98393,Private room,85,5,1,2016-05-16,0.03,1,0 +11547352,Modern Bushwick rm perf for 1 or 2!,36625256,Allison,Brooklyn,Bushwick,40.70273,-73.91565,Private room,85,1,0,,,1,0 +11548744,Sunny 2BR Railroad Apt. in LIC,55601638,Sarah,Queens,Long Island City,40.74493,-73.9537,Entire home/apt,158,1,1,2016-07-10,0.03,1,0 +11549676,Spacious Room w private bathroom,27751504,Liz,Brooklyn,Kensington,40.63974,-73.97439,Private room,35,14,2,2018-04-30,0.06,1,0 +11549838,Rustic charm in BKLYN // QUEEN Bed!,697442,Chris And Zach,Brooklyn,East Flatbush,40.64885,-73.94681,Private room,57,1,206,2019-07-07,5.20,3,89 +11552389,Great Studio nearby Times Square!,18002193,Jay,Manhattan,Hell's Kitchen,40.76035,-73.99052,Entire home/apt,138,1,20,2019-07-04,0.50,1,265 +11552402,Comfy NYC Studio 15 Min. To Midtown,60990988,Terrence,Manhattan,Harlem,40.81032,-73.95415,Entire home/apt,90,2,198,2019-06-19,4.87,1,39 +11553357,Brick House: Unique Garden Apartment! King Bed!,3483450,Aswad,Brooklyn,Bedford-Stuyvesant,40.68174,-73.91365,Entire home/apt,125,2,40,2019-07-01,0.99,3,354 +11553360,King 7,42619297,John,Brooklyn,Fort Greene,40.69413,-73.9723,Entire home/apt,999,2,94,2019-06-02,2.85,2,361 +11553426,Luxury Apt Steps from Central Park!,39226206,Rae,Manhattan,East Harlem,40.79504,-73.94584,Entire home/apt,225,2,4,2016-06-05,0.10,1,0 +11553543,Cozy Room Astoria,26138712,,Queens,Ditmars Steinway,40.77587,-73.91775,Private room,45,1,5,2017-01-01,0.13,1,0 +11553765,"Room in Chic, Cozy Chinatown Loft",10558652,Teddy,Manhattan,Chinatown,40.71351,-73.99692,Private room,150,5,37,2019-04-06,0.91,2,0 +11553908,Comfy 1 bedroom Upper East Side Apartment (82/2nd),61003876,Darren,Manhattan,Upper East Side,40.77505,-73.95357,Entire home/apt,150,1,3,2018-03-19,0.10,1,0 +11554224,Upper West Side 1BD with terrace,56043282,Emily,Manhattan,Upper West Side,40.77872,-73.98025,Entire home/apt,140,1,8,2017-07-01,0.20,1,0 +11554255,❤️PRIVATE ROOM❤️ Female guest only,60126047,Renuca,Queens,Jamaica,40.67667,-73.79829,Private room,40,3,11,2017-10-15,0.33,1,318 +11557387,EAST RIVER VIEW~HIRISE STUDIO,2856748,Ruchi,Manhattan,Midtown,40.75453,-73.96473,Entire home/apt,205,30,0,,,49,364 +11558167,LUXURY MURRAY HILL STUDIOS/GYM/DECK,2856748,Ruchi,Manhattan,Murray Hill,40.7471,-73.97263,Entire home/apt,190,30,0,,,49,364 +11563821,Private bedroom located in the heart of Chelsea,10307134,Anna,Manhattan,Chelsea,40.74118,-74.00012,Private room,110,1,48,2019-06-16,1.80,2,67 +11564373,2 Bedroom 10 Minutes from JFK Airport 2nd Floor,52997121,Iwona,Queens,Jamaica,40.6756,-73.78244,Entire home/apt,150,1,257,2019-06-30,7.38,4,80 +11564448,Cozy upper east side studio,33856311,Brooke,Manhattan,Upper East Side,40.76769,-73.95616,Entire home/apt,100,1,0,,,1,0 +11564960,1BR Walkup on Upper East Side,61088024,John,Manhattan,Upper East Side,40.77697,-73.95372,Entire home/apt,75,1,0,,,1,0 +11565841,Artsy Bsmnt Apt in Bklyn Brownstone,60687546,Dan,Brooklyn,Prospect-Lefferts Gardens,40.66258,-73.95205,Entire home/apt,115,2,44,2019-06-21,1.11,2,126 +11566601,Book filled nook,61099962,Rhianna,Brooklyn,Prospect Heights,40.67525,-73.96418,Private room,50,1,0,,,1,0 +11567121,Spacious West Village Studio Apt,11523568,Kate,Manhattan,West Village,40.72983,-74.00557,Entire home/apt,190,1,25,2018-11-25,0.67,1,158 +11567179,"Bright, sunny quite room Bushwick",10929225,Louise,Queens,Ridgewood,40.71112,-73.91932,Private room,60,2,2,2016-08-24,0.05,1,0 +11567796,Great Apartment in Midtown New York,48024019,Andrea,Manhattan,Midtown,40.74644,-73.98389,Entire home/apt,200,1,0,,,1,0 +11567815,"Bright, Modern, Spacious Duplex Apt",1253313,Gabriel,Queens,Astoria,40.76964,-73.92117,Entire home/apt,90,2,28,2018-12-31,0.70,1,0 +11568026,Beautiful Tribeca Loft,5333348,Francesco & Olivia,Manhattan,Tribeca,40.71526,-74.01044,Entire home/apt,500,3,0,,,1,0 +11569227,Beautiful Modern Studio in Bushwick,1432593,Val,Brooklyn,Bushwick,40.70024,-73.92055,Entire home/apt,115,3,33,2019-07-03,0.89,1,20 +11569560,Midtown East Alcove Studio,55504410,Vanita,Manhattan,Murray Hill,40.74969,-73.97298,Entire home/apt,140,5,0,,,1,0 +11571180,Beautiful East Harlem Apartment,48202082,Ian,Manhattan,East Harlem,40.80147,-73.93706,Private room,50,30,0,,,1,345 +11573269,"SUNNY STUDIO - 23rd FLOOR, DOORMAN",11764237,David,Manhattan,Kips Bay,40.74342,-73.97505,Entire home/apt,135,1,1,2016-04-04,0.03,1,0 +11573292,Cool East Village apt,59493714,Mirinda,Manhattan,East Village,40.72367,-73.98401,Private room,109,3,0,,,1,0 +11573695,Sunny Huge Bedroom in Brownstone,7041668,Karen,Brooklyn,Crown Heights,40.67075,-73.9447,Private room,60,1,0,,,1,0 +11574674,"Bright 2 bedroom aparment, Bushwick",61175876,Raquel,Brooklyn,Bushwick,40.69531,-73.92248,Entire home/apt,148,5,77,2019-06-30,1.96,2,275 +11574785,"Queen bed & Air Conditioning, views of Chatham Sq",3867,Luke,Manhattan,Chinatown,40.7138,-73.99758,Private room,95,1,80,2019-07-02,2.00,2,49 +11575073,Warm and Cozy Room in Hip Iconic Brooklyn!!!,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94266,Private room,50,1,192,2019-05-30,4.72,4,189 +11575101,Private studio apartment,61175876,Raquel,Brooklyn,Bushwick,40.69549,-73.92249,Entire home/apt,79,4,97,2019-07-01,2.42,2,250 +11580884,Cozy Artists Bushwick Loft!,59075666,Das,Brooklyn,Williamsburg,40.70395,-73.93367,Private room,50,6,11,2018-09-07,0.27,1,0 +11581420,Nice apartment 4 Springbreak in NY,61229318,Hector,Manhattan,Morningside Heights,40.81045,-73.95961,Private room,40,3,1,2016-03-23,0.02,1,0 +11581737,1 Bedroom apt - near Central Park,196298,Hiershenee B.,Manhattan,Upper West Side,40.78638,-73.97004,Entire home/apt,101,30,10,2019-01-08,0.40,1,0 +11582123,Oasis in old WorldBrooklyn,130023,Lloyd,Brooklyn,Bedford-Stuyvesant,40.68165,-73.93267,Entire home/apt,135,5,63,2019-06-11,1.60,2,281 +11583439,Private room in Midtown East Manhat,5466759,Johann,Manhattan,Midtown,40.75438,-73.96576,Private room,99,4,0,,,1,0 +11584288,1 Bedroom in Modern Williamsburg Duplex,61252195,Matthew,Brooklyn,Williamsburg,40.71308,-73.94077,Private room,95,1,0,,,1,0 +11584340,Super Cute and Sunny Studio,10563705,Hailey,Manhattan,Washington Heights,40.85043,-73.936,Entire home/apt,110,4,0,,,1,0 +11587722,Central Park Dreams,5099080,Bridget,Manhattan,Upper West Side,40.79795,-73.96156,Entire home/apt,299,4,7,2017-09-15,0.19,1,0 +11587779,Upper West Side- 1 room in 3bed apt,27125291,Arthur,Manhattan,Upper West Side,40.79908,-73.96141,Private room,79,1,4,2017-05-21,0.10,1,0 +11587997,"Quiet, Clean, Lit @ Lower East Side",40470433,Hana,Manhattan,Lower East Side,40.71303,-73.98645,Private room,52,1,0,,,1,0 +11588003,Charming Prewar Upper West Side Apt,4732500,Daniel,Manhattan,Upper West Side,40.79828,-73.97166,Entire home/apt,95,1,0,,,1,0 +11589391,"Beautiful, light filled, spacious",17862696,Shahla,Brooklyn,Gowanus,40.6717,-73.99247,Entire home/apt,295,4,2,2017-04-30,0.07,1,326 +11589713,Williamsburg Loft,15524268,Joseph,Brooklyn,Williamsburg,40.71117,-73.95197,Private room,65,1,0,,,1,0 +11589895,Park Avenue Studio Suite,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74596,-73.98195,Entire home/apt,110,30,4,2018-04-02,0.14,31,126 +11590055,Park Avenue 3 Bedroom Apartment,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.7455,-73.98112,Entire home/apt,215,30,2,2017-02-19,0.06,31,125 +11591118,"Bay RIdge, Brooklyn NY",49413208,Sotira,Brooklyn,Fort Hamilton,40.61731,-74.0344,Entire home/apt,100,15,3,2018-08-27,0.14,2,365 +11591276,Condo w/ Balcony UES nr Lex subway,23387829,Auroni,Manhattan,Upper East Side,40.76105,-73.96222,Entire home/apt,450,1,0,,,1,0 +11591364,"Heart of Williamsburg, Floor thru!",2487433,Octavio,Brooklyn,Williamsburg,40.71826,-73.95795,Entire home/apt,95,30,11,2019-06-11,0.28,1,32 +11591798,3rd Floor 3br Timeless Brooklyn Apt,51528392,Kevin,Brooklyn,Crown Heights,40.67169,-73.94612,Entire home/apt,140,4,130,2019-07-01,3.23,1,30 +11593365,Historic Central Chinatown Apt,10703999,Evan,Manhattan,Chinatown,40.71469,-73.9995,Entire home/apt,220,4,0,,,1,0 +11595172,LUXURY 2 BR 2 BATH -WASHER/DRYER/DOORMAN-E 52nd ST,2856748,Ruchi,Manhattan,Midtown,40.75615,-73.9649,Entire home/apt,355,30,0,,,49,364 +11595739,CHIC STUDIOS ON E 54TH~PRIME LOCATION~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75505,-73.96484,Entire home/apt,185,30,0,,,49,364 +11596767,CITY VIEWS & BALCONY~GORGEOUS 2BR IN MURRAY HILL,2856748,Ruchi,Manhattan,Murray Hill,40.74754,-73.97199,Entire home/apt,297,30,1,2016-06-30,0.03,49,311 +11602050,Museum Mile 1 BR - Madison Ave,61391963,Corporate Housing,Manhattan,Upper East Side,40.78465,-73.95735,Entire home/apt,133,30,7,2019-01-19,0.22,91,311 +11602485,Private Room in mid town west,39123185,Eva,Manhattan,Hell's Kitchen,40.76714,-73.99229,Private room,100,1,0,,,1,0 +11602574,Elegant 2 Bedroom with light & amenities!,16899697,Martín,Manhattan,Lower East Side,40.71854,-73.98362,Private room,250,2,2,2017-01-02,0.07,1,0 +11603201,"1 bedroom in Astoria, Queens",7982432,Joe,Queens,Long Island City,40.76485,-73.93959,Private room,65,1,1,2016-04-18,0.03,1,0 +11603743,Chic Room with Exposed Brick,13031745,Madeline,Brooklyn,Williamsburg,40.70878,-73.94071,Private room,50,3,3,2018-07-01,0.07,3,0 +11603913,Doorman Gym Roofdeck Design 5129,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7906,-73.97267,Entire home/apt,135,30,2,2019-03-18,0.06,96,313 +11604307,Great Room in Sunny Apt in Brooklyn,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.68023,-73.93586,Private room,80,2,77,2019-06-08,1.91,3,12 +11604885,LARGE Loft,28369674,Ramond,Brooklyn,Williamsburg,40.70357,-73.93444,Private room,69,3,66,2019-07-02,1.90,2,91 +11605693,Noir Apartment in Chinatown - Private Room,61420312,Jay,Manhattan,Two Bridges,40.71222,-73.99566,Private room,75,2,25,2019-06-10,1.04,1,271 +11605983,Brownstone living - 1BR in BK,12352188,Jasmin,Brooklyn,Boerum Hill,40.68792,-73.98999,Entire home/apt,125,5,8,2017-07-10,0.20,1,0 +11609108,Luxurious SOHO 1 Bedroom,61391963,Corporate Housing,Manhattan,Little Italy,40.71885,-73.99572,Entire home/apt,142,30,6,2019-03-13,0.15,91,342 +11609114,Studio APT Murray Hill (Gramercy),50556696,Jeremy,Manhattan,Kips Bay,40.74296,-73.97771,Entire home/apt,200,1,0,,,1,0 +11610515,Opening my space while I travel,19479273,Ryan,Brooklyn,Bushwick,40.69019,-73.91574,Private room,45,1,0,,,1,0 +11611298,Gramercy Garden Terrace,56372211,Gordon,Manhattan,Gramercy,40.73737,-73.97995,Private room,97,3,120,2019-07-01,3.04,1,18 +11611809,2BR MODERN APT CONVENIENT LOCATION,1143620,Kris,Manhattan,Murray Hill,40.74742,-73.97724,Entire home/apt,229,3,1,2016-03-23,0.02,1,0 +11617815,True NY Living- Times SQ 1 BR Apt,1265437,Niket,Manhattan,Hell's Kitchen,40.75573,-73.99228,Entire home/apt,175,1,57,2019-06-23,1.41,1,273 +11618338,Beautiful new apt in Williamsburg,4829797,Chris,Brooklyn,Williamsburg,40.70589,-73.94749,Private room,63,7,1,2016-03-18,0.02,1,0 +11618854,Walking distance to LaGuardia airport,37312959,Maya,Queens,East Elmhurst,40.77107,-73.87559,Private room,45,1,412,2019-07-01,10.19,5,159 +11619745,Hells Kitchen 3 Bedroom,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76406,-73.991,Entire home/apt,185,30,3,2018-11-30,0.08,91,0 +11619832,Luxury One Bedroom in Manhattan,51446803,Jibari,Manhattan,Harlem,40.83122,-73.94475,Shared room,50,1,67,2019-07-06,1.65,1,216 +11619987,Luxurious SOHO 2 Bedroom,61391963,Corporate Housing,Manhattan,Little Italy,40.71957,-73.99573,Entire home/apt,175,30,3,2018-07-31,0.16,91,161 +11620062,Brand New Luxurious 1 BR - Outdoor Space,61391963,Corporate Housing,Manhattan,Kips Bay,40.74053,-73.97906,Entire home/apt,133,30,7,2019-04-15,0.20,91,312 +11620118,Amazing view from a private roof!,55468128,Reina,Brooklyn,Windsor Terrace,40.65959,-73.98222,Private room,62,1,208,2019-07-04,5.28,7,260 +11620821,Great! Private Room in Sunnyside,58234433,Martin,Queens,Sunnyside,40.7364,-73.91923,Private room,90,1,36,2019-06-13,0.99,8,346 +11624287,Best Neighborhood in Brooklyn!,23607758,Stefan,Brooklyn,Cobble Hill,40.68874,-73.99525,Private room,99,2,46,2019-06-22,1.15,1,66 +11624421,Prvt Bedroom in Brooklyn Brownstone,20114391,Lisa,Brooklyn,Fort Greene,40.68465,-73.97069,Private room,61,60,2,2018-08-21,0.09,2,43 +11624694,Newly Furnished 1BD Near Train!,2666654,Frankie,Queens,Ditmars Steinway,40.77536,-73.90781,Entire home/apt,120,1,268,2019-06-29,6.78,1,139 +11625684,Astoria Suite - 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.77123,-73.90932,Private room,100,1,107,2019-06-09,2.67,5,32 +11627123,Warm and cozy,43128266,常春,Manhattan,Washington Heights,40.83463,-73.94,Shared room,32,1,32,2018-11-15,0.83,3,332 +11627443,Upper East Side cozy private room,61601216,Sara,Manhattan,Upper East Side,40.7687,-73.95705,Private room,80,2,11,2017-04-17,0.31,1,0 +11632924,Spacious One Bedroom Apartment,4383413,Alanna,Brooklyn,East Flatbush,40.64583,-73.94693,Entire home/apt,90,3,5,2017-01-02,0.14,1,0 +11633801,Prospect Heights Three Bedroom,28808966,Christopher,Brooklyn,Crown Heights,40.67815,-73.96232,Entire home/apt,180,1,0,,,1,0 +11634575,"Sunny, enchanting, spacious bedroom",61382075,Elena,Manhattan,Washington Heights,40.84398,-73.94064,Private room,65,4,2,2017-05-22,0.05,2,0 +11634797,Fully furniture huge room in great apt,4187747,Carmel,Bronx,Riverdale,40.9008,-73.90639,Private room,49,6,2,2017-01-01,0.05,1,340 +11635717,"Luxurious, sunny 2-bedroom apt.",61382075,Elena,Manhattan,Washington Heights,40.84326,-73.93901,Entire home/apt,100,14,1,2016-05-23,0.03,2,0 +11636784,Spacious Art Duplex: 4 Full Beds + 3 BR + 3 Bath,22686950,Emily & Joseph,Brooklyn,Bushwick,40.69868,-73.93518,Entire home/apt,380,3,75,2019-06-17,1.94,1,290 +11637578,Spacious and sunny room for rent,61684714,Grace,Manhattan,Washington Heights,40.84248,-73.93849,Private room,26,7,0,,,1,0 +11638302,Washington Heights 1 bedroom,524597,Anjela,Manhattan,Washington Heights,40.8481,-73.93585,Entire home/apt,100,3,2,2017-01-01,0.06,1,0 +11638339,Sunny bedroom with amazing view in East Village,1547578,Luc,Manhattan,East Village,40.72868,-73.98635,Private room,90,15,1,2017-04-20,0.04,1,0 +11639083,The Heart of Lower East Side,25141383,Azeez,Manhattan,Lower East Side,40.71936,-73.98878,Private room,89,2,0,,,1,0 +11639297,Modern New Condo 20 minutes to upper west side,61699814,Shanthi,Bronx,Kingsbridge,40.8787,-73.90098,Private room,35,30,7,2019-06-08,0.49,2,155 +11639940,Peaceful + Sunny Greenpoint Room,2375701,Paul,Brooklyn,Greenpoint,40.7307,-73.95568,Private room,66,1,1,2016-03-12,0.02,1,0 +11640318,"Executive Room Central Park-Comfort,Classy-Midtown",1709718,Victoria,Manhattan,Midtown,40.76453,-73.97769,Private room,285,1,32,2019-01-02,1.39,2,365 +11640637,Riverside Single Room near Columbia,34220831,Yilin,Manhattan,Morningside Heights,40.81377,-73.96166,Private room,46,1,2,2016-07-29,0.05,1,0 +11641258,Classic Loft in Gramercy/Flatiron - Amazing Value,61719199,Sameer,Manhattan,Flatiron District,40.73955,-73.98568,Entire home/apt,275,2,4,2018-01-01,0.10,1,0 +11646497,Spacious Room in Stuyvesant Heights,21480710,Theodore,Brooklyn,Bedford-Stuyvesant,40.68486,-73.932,Private room,89,1,0,,,2,0 +11649223,"3 Bedroom, family ready, in Harlem",254650,Brandi,Manhattan,Harlem,40.80306,-73.95308,Entire home/apt,250,1,1,2016-04-08,0.03,2,0 +11649232,Modern Garden View Apartment,2483628,Nicoletta,Brooklyn,Williamsburg,40.713,-73.9653,Entire home/apt,200,4,50,2019-06-19,1.24,1,50 +11650429,Spacious 2bd Condo w/ Private Patio,2422648,Sheena,Brooklyn,Prospect Heights,40.68112,-73.96492,Entire home/apt,175,2,15,2018-12-16,0.39,1,4 +11650863,Cozy East Village Home,61800014,Shasta,Manhattan,Lower East Side,40.72093,-73.98493,Entire home/apt,140,1,144,2019-06-23,3.63,1,98 +11651283,Luxurious 2 Bedroom,61391963,Corporate Housing,Manhattan,Upper East Side,40.78126,-73.94655,Entire home/apt,133,30,9,2018-12-21,0.26,91,311 +11651455,Midtown East 2 Bedroom 3 Beds,61391963,Corporate Housing,Manhattan,Midtown,40.75688,-73.96815,Entire home/apt,150,30,9,2019-01-31,0.26,91,206 +11651505,"与众不同,方便停车。值得一试!",61804662,Niki,Queens,Flushing,40.76049,-73.81633,Private room,55,1,126,2019-06-18,3.13,2,180 +11651554,Luxurious SOHO Apartment,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72818,-73.99886,Entire home/apt,142,30,10,2019-05-27,0.25,91,157 +11651929,"Large Sunny 1BR, 1 Block to Subway",3927655,Alexander,Manhattan,Washington Heights,40.83441,-73.93706,Entire home/apt,95,7,1,2016-03-18,0.02,1,0 +11651980,Updated Midtown East 2 Bedroom 3 Beds,61391963,Corporate Housing,Manhattan,Midtown,40.75605,-73.96503,Entire home/apt,165,30,0,,,91,180 +11652262,Sunny Williamsburg 1 Bedroom apt,1479763,Anthony,Brooklyn,Williamsburg,40.71228,-73.94211,Entire home/apt,150,3,7,2018-09-14,0.18,1,0 +11652590,Chic Rooms in Large NYC Apt,26405086,Bill & May,Manhattan,Harlem,40.80069,-73.95341,Private room,99,28,2,2017-05-23,0.07,4,365 +11652872,Executive 1 BR - Elevator & Laundry,61391963,Corporate Housing,Manhattan,Midtown,40.75589,-73.96753,Entire home/apt,133,30,7,2018-07-31,0.21,91,310 +11653081,Mod Home Steps from Prospect Park,282655,Jenna,Brooklyn,Flatbush,40.64841,-73.96969,Entire home/apt,150,3,125,2019-07-01,3.32,3,264 +11653913,spacious 1 BR heart of astoria,10575779,Andrea,Queens,Astoria,40.7588,-73.91762,Entire home/apt,190,2,1,2016-03-26,0.03,1,0 +11654372,Amazing Combo Bedroom/Living Space,6001746,Kevin,Brooklyn,Bushwick,40.70478,-73.92767,Private room,60,21,0,,,1,0 +11655500,Cozy Studio Apt in Prospect Heights,61842904,Catherine,Brooklyn,Crown Heights,40.67727,-73.96251,Entire home/apt,106,7,7,2019-06-20,0.18,3,26 +11656367,Charming Brooklyn Apartment,61851697,Vivienne,Brooklyn,Bedford-Stuyvesant,40.69207,-73.94321,Entire home/apt,165,3,0,,,1,273 +11656396,Designer Williamsburg Apt with Terrace,6392776,Stuart,Brooklyn,Williamsburg,40.71762,-73.94354,Entire home/apt,190,2,181,2019-06-25,4.51,1,229 +11656721,3 bedroom near Park,46502890,Jackie,Queens,Jamaica Estates,40.72191,-73.78207,Private room,750,1,0,,,2,0 +11656750,"Sunny, enormous apt, historic bldg",17548437,Michael,Bronx,Melrose,40.8183,-73.91938,Entire home/apt,150,5,58,2019-07-02,1.45,1,37 +11657285,"Lofty 1 BDR w/huge, private backyard",15835554,Jessica,Brooklyn,Gowanus,40.67553,-73.98533,Entire home/apt,150,2,0,,,1,0 +11657725,Spacious one-bedroom Apartment,61863502,Wei,Manhattan,Upper East Side,40.77933,-73.94862,Entire home/apt,119,5,1,2016-06-19,0.03,1,0 +11657888,Super Comfy Convenient Room in Hip Brooklyn!!!!!,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.69165,-73.94345,Private room,62,1,244,2019-05-29,6.02,4,189 +11658950,Huge King Size Room in East Village,21382844,Imran,Manhattan,Gramercy,40.73458,-73.98128,Private room,99,1,5,2017-04-23,0.16,1,0 +11659008,"Safe, comfy convenient",52347885,Nicole,Brooklyn,Flatlands,40.63052,-73.92181,Private room,34,2,91,2019-06-23,3.10,2,78 +11659242,Studio in Vibrant Lower East Side,24856724,George,Manhattan,Lower East Side,40.72005,-73.98911,Entire home/apt,129,4,78,2019-06-15,2.07,1,26 +11659296,Apartment in Williamsburg - Long term lease,49572092,Laura,Brooklyn,Williamsburg,40.71976,-73.94234,Entire home/apt,105,180,10,2017-11-28,0.25,1,1 +11660015,Charming Soho artist studio,8856151,Scott,Manhattan,SoHo,40.72616,-74.00102,Entire home/apt,229,4,0,,,1,0 +11667455,Large pre-war apartment UWS,61938683,Lone,Manhattan,Upper West Side,40.78629,-73.98062,Entire home/apt,350,7,0,,,1,0 +11667910,Great location-Newly updated-great new features,60500199,Valery,Manhattan,Harlem,40.80797,-73.94243,Entire home/apt,205,3,71,2019-06-03,1.76,1,331 +11668469,Rockaway Beach Sunshine Paradise,61945871,Peter,Queens,Rockaway Beach,40.58587,-73.81652,Private room,85,2,15,2019-05-26,0.38,1,330 +11670639,Sunny Apartment with a balcony,61962183,Christopher,Queens,Ditmars Steinway,40.77687,-73.90386,Private room,30,15,0,,,1,0 +11671588,Townhouse 2 BR Central Park West,61391963,Corporate Housing,Manhattan,Upper West Side,40.78833,-73.97026,Entire home/apt,150,30,5,2019-05-31,0.27,91,311 +11672400,BRIGHT Modern Spacious East Village Studio Apt,61972032,Giovanni,Manhattan,Gramercy,40.7318,-73.98322,Entire home/apt,186,2,169,2019-06-24,4.17,1,0 +11672539,Downtown Brooklyn Luxury Building,52794726,Wendi,Brooklyn,Downtown Brooklyn,40.69789,-73.98259,Private room,50,1,0,,,1,0 +11672600,Sunny Brownstone in Park Slope!!!!!,4992559,Drew,Brooklyn,Park Slope,40.67821,-73.97484,Entire home/apt,200,2,12,2016-10-01,0.31,1,0 +11672849,Sunny room along riverside on 66th,57694481,Jillian,Manhattan,Upper West Side,40.7783,-73.98807,Entire home/apt,172,12,13,2019-06-22,0.37,1,34 +11673282,LUX Doorman Gym ! 2 Bedroom5179,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77688,-73.95505,Entire home/apt,250,30,1,2017-04-05,0.04,96,333 +11674309,Executive 1 BR - Washer Dryer,61391963,Corporate Housing,Manhattan,Kips Bay,40.74021,-73.97992,Entire home/apt,133,30,5,2018-03-05,0.15,91,311 +11675095,Beauty Lrg furnished Stu 77 & B'way Bay Windows,26584499,Ofir,Manhattan,Upper West Side,40.7824,-73.98215,Entire home/apt,150,30,4,2018-10-06,0.10,8,220 +11675256,Luxury Apartment with Epic Views,34564001,Mike,Manhattan,Chelsea,40.74866,-73.98986,Entire home/apt,290,2,62,2019-03-06,1.53,1,19 +11675341,1 bdrm Spacious Beautiful Apartment,62001039,Liz,Queens,Forest Hills,40.72227,-73.84173,Entire home/apt,120,2,4,2016-06-05,0.10,1,0 +11675715,Cozy 1 BR Basement Apartment,56714504,Josue,Bronx,City Island,40.85139,-73.78414,Entire home/apt,95,1,227,2019-06-18,5.65,1,16 +11675817,Your Own Studio in Lower East Side,1534857,Sandro,Manhattan,Chinatown,40.71674,-73.98995,Entire home/apt,120,7,1,2016-04-08,0.03,2,0 +11676984,Luxury STUDIO * PVT Entrance * WOW,62014546,Nissim,Manhattan,Upper East Side,40.77654,-73.94904,Entire home/apt,165,1,141,2019-06-23,3.54,1,262 +11677431,Serene and Minimal Room + Studio,3850478,Lili,Brooklyn,Greenpoint,40.72435,-73.94004,Private room,50,1,0,,,1,0 +11677489,1 BR APT LOWER EAST SIDE,8756821,Franco,Manhattan,Chinatown,40.71555,-73.99091,Entire home/apt,180,2,10,2017-10-02,0.25,1,0 +11678327,Sunny loft in Brooklyn,9073820,Lisa,Brooklyn,Bedford-Stuyvesant,40.69144,-73.95891,Private room,38,1,0,,,1,0 +11679675,Huge Brooklyn Studio,61553719,Katrina,Brooklyn,Bedford-Stuyvesant,40.68205,-73.94469,Entire home/apt,85,2,39,2018-11-17,0.98,1,190 +11680027,Charming 1BR Apt in LES Side,13305499,J. Ryan,Manhattan,Lower East Side,40.72025,-73.98372,Entire home/apt,145,2,3,2016-05-08,0.07,1,0 +11684682,Bright sunny room in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.67031,-73.94088,Private room,29,2,142,2019-05-19,3.54,5,0 +11685868,"Modern, Sunlit Apartment w/ Balcony",3792156,Sophia,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95203,Entire home/apt,120,1,6,2016-07-31,0.16,1,0 +11687738,1 Bedroom with Outdoor Space,61391963,Corporate Housing,Manhattan,Upper East Side,40.76087,-73.96217,Entire home/apt,117,30,9,2019-05-31,0.27,91,173 +11689818,Spacious Brooklyn Apartment,22808020,Genevieve,Brooklyn,Bushwick,40.69473,-73.91882,Entire home/apt,70,7,1,2016-08-09,0.03,1,0 +11690836,Extended stay in a great studio,46036778,Elle,Manhattan,Upper East Side,40.75977,-73.95917,Entire home/apt,180,14,0,,,1,0 +11691699,big & bright 2-bedroom by subway,12010675,Beverly,Brooklyn,Sunset Park,40.64997,-74.00347,Entire home/apt,115,2,4,2016-08-10,0.11,1,0 +11693193,*CoZy Private Williamsburg Home*,62130666,Sal,Brooklyn,Williamsburg,40.70998,-73.94854,Entire home/apt,225,2,110,2019-07-07,2.74,1,124 +11695094,Spacious UES 1BR with outdoor deck,45595980,Tny,Manhattan,Upper East Side,40.76798,-73.96755,Entire home/apt,140,30,4,2019-05-06,0.30,12,57 +11695338,Quiet and Modern Haven in NYC,16234492,Denise,Bronx,Soundview,40.82442,-73.86193,Private room,45,2,6,2016-08-07,0.15,1,0 +11696801,Large Private Room in 3 bdr apt-East Village,33214549,Alexandre,Manhattan,East Village,40.72573,-73.98406,Private room,119,1,1,2019-04-29,0.42,5,0 +11697308,Spacious 1 BR Upper East Side,61391963,Corporate Housing,Manhattan,Upper East Side,40.78002,-73.95284,Entire home/apt,125,30,8,2019-05-31,0.23,91,343 +11698352,Room avl from 03/30 to 04/03 in NYC,22769314,Sandra,Brooklyn,Williamsburg,40.71588,-73.95515,Private room,46,1,0,,,1,0 +11699080,Single room in Bushwick w/backyard,1838844,Andrew,Brooklyn,Bushwick,40.70153,-73.9169,Private room,50,1,0,,,1,0 +11700121,Historic Bed Stuy Floorthrough,1640615,Sarah,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93478,Entire home/apt,150,5,1,2016-07-19,0.03,1,0 +11701404,Luxury building studio in UWS,62192916,Anna,Manhattan,Upper West Side,40.77609,-73.98991,Entire home/apt,120,5,20,2019-06-07,0.50,1,34 +11707920,"Brooklyn private bath by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64188,-73.98042,Private room,45,1,108,2019-06-19,2.68,11,23 +11710327,Beautiful Ft. Greene Guest Suite w/ Full Kitchen,62249912,Myra,Brooklyn,Fort Greene,40.6876,-73.97083,Private room,115,28,39,2018-01-01,1.05,1,3 +11712888,Private room available with river view!,412228,Natalie,Manhattan,Upper West Side,40.77889,-73.9878,Private room,95,14,0,,,1,0 +11713899,Modern Exposed Brick Studio,39149459,Daisy,Manhattan,East Village,40.72428,-73.98748,Entire home/apt,110,1,1,2016-05-23,0.03,1,0 +11714137,Charming home in Brooklyn,1486872,Kelly,Brooklyn,Gowanus,40.67061,-73.9904,Entire home/apt,250,7,5,2019-05-17,0.15,2,1 +11714323,100% 5★ Reviews - Big 2-Bed 2-Bath – Central Wburg,10078038,Robert,Brooklyn,Williamsburg,40.71765,-73.95189,Entire home/apt,300,5,46,2019-06-22,1.18,1,29 +11714752,Safe+Artsy+Clean Haven Near Manhattan/LGA!,17156658,Native,Queens,Astoria,40.76207,-73.90852,Private room,45,5,50,2019-06-28,1.27,1,145 +11715256,Luxurious 2 BR - Gramercy,61391963,Corporate Housing,Manhattan,Kips Bay,40.74168,-73.9804,Entire home/apt,159,30,8,2019-03-25,0.37,91,190 +11715392,"Two bedroom, Amazing location #10",3256433,Ira,Manhattan,Lower East Side,40.72223,-73.99189,Entire home/apt,220,30,3,2017-10-13,0.12,7,2 +11715651,Brand New Luxurious 2 BR,61391963,Corporate Housing,Manhattan,Kips Bay,40.74044,-73.98029,Entire home/apt,159,30,3,2018-04-15,0.14,91,312 +11716677,Private East village Studio NO roommates Full bath,23902914,John,Manhattan,East Village,40.73082,-73.98445,Entire home/apt,70,1,144,2019-06-25,3.55,1,49 +11716947,"Plant-filled, sunlit home w/ yard",62298504,Jordan,Brooklyn,Greenpoint,40.7258,-73.9515,Private room,45,7,2,2016-09-08,0.05,1,0 +11718329,Luxury Bright NYC Apartment,41411171,Asem,Manhattan,Upper West Side,40.79469,-73.96575,Private room,40,1,0,,,1,0 +11718547,"Spacious Private Room, lots of character & light",18562674,Belkis,Manhattan,Harlem,40.8284,-73.94461,Private room,81,1,102,2019-06-01,2.70,2,90 +11720001,Private Clean Bright Apt. in Harlem,62320186,Doris,Manhattan,Harlem,40.81327,-73.94628,Entire home/apt,190,2,46,2019-07-01,1.17,1,323 +11720130,Luxurious 1BR Apt (Times Square),59625377,Bryan,Manhattan,Hell's Kitchen,40.75705,-73.99265,Entire home/apt,225,5,24,2019-06-25,0.96,1,42 +11721727,Spacious Room near CUMC Campus,62335395,Franchesca,Manhattan,Washington Heights,40.85029,-73.93645,Shared room,360,1,0,,,1,0 +11724873,Hell's Kitchen Hideaway,62359474,Brandon,Manhattan,Hell's Kitchen,40.75926,-73.99304,Entire home/apt,125,2,104,2019-07-03,2.63,1,5 +11728836,roomy sunny apt in <3 of Astoria,10620222,Rebecca,Queens,Astoria,40.76711,-73.92046,Entire home/apt,95,3,1,2016-03-26,0.03,1,0 +11730376,Creative Sanctuary Studio/1BR,1700752,Iliana,Queens,Elmhurst,40.74297,-73.87508,Entire home/apt,62,2,1,2019-03-29,0.29,1,0 +11730504,Charming Brownstone Garden 1BR Historic Apartment,11292325,Diva,Manhattan,Harlem,40.81613,-73.94622,Entire home/apt,150,30,17,2018-12-15,0.42,1,157 +11732848,Fort Greene Brooklyn mint rowhouse,292522,Jonathan,Brooklyn,Fort Greene,40.69014,-73.97347,Entire home/apt,495,5,10,2019-07-05,0.27,2,21 +11732961,"Small, Cozy 1BD Apartment",5362257,Ron,Manhattan,Harlem,40.8249,-73.94288,Entire home/apt,130,3,74,2019-06-26,1.87,1,16 +11735378,Inspired Space on Troutman,18466740,Ali,Brooklyn,Bushwick,40.69862,-73.93066,Private room,80,5,7,2019-01-04,0.18,1,300 +11737524,Sunny studio in Greenpoint,11544181,Aram,Brooklyn,Greenpoint,40.72522,-73.94124,Private room,89,1,199,2019-06-23,5.07,1,114 +11737916,Sunny Room 1/2 block from MTA,2350014,Laine,Brooklyn,Crown Heights,40.67073,-73.95021,Private room,55,1,0,,,1,0 +11738831,Spacious 1 BDRM near Central Park,25116430,Michael,Manhattan,Upper East Side,40.77559,-73.95263,Entire home/apt,140,1,183,2019-06-05,4.56,1,63 +11738951,Financial District Luxury building,61303786,孙浩,Manhattan,Financial District,40.70666,-74.00597,Private room,60,15,1,2016-05-02,0.03,1,0 +11739071,XL Corporate 1 BR - Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75639,-73.96593,Entire home/apt,142,30,3,2019-05-31,0.19,91,357 +11739168,Updated 1 BR - Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77034,-73.96257,Entire home/apt,125,30,11,2019-04-11,0.32,91,105 +11739698,Elevator 1 BR - Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.75892,-73.98949,Entire home/apt,133,30,7,2019-06-22,0.21,91,281 +11740163,Modern 1 Bdrm Apt off Bedford Ave,1709729,Jill,Brooklyn,Williamsburg,40.72138,-73.95757,Entire home/apt,200,30,45,2018-03-20,1.27,1,310 +11740386,Williamsburg Loft,24458604,Austin,Brooklyn,Williamsburg,40.71813,-73.96464,Entire home/apt,85,5,2,2017-05-02,0.07,1,0 +11741555,Fabulous Entire Townhouse in West Village!,62466366,Stephen,Manhattan,West Village,40.73405,-74.00789,Entire home/apt,625,5,12,2019-06-16,0.47,1,130 +11742647,Your own cozy room in Gramercy,19962052,Thikshan,Manhattan,Gramercy,40.73586,-73.98028,Private room,100,2,33,2019-06-06,0.82,3,44 +11743513,Sweet Brooklyn digs next to Pratt U (Classon Ave),19285185,Joel,Brooklyn,Clinton Hill,40.69388,-73.96201,Entire home/apt,176,5,12,2019-02-07,0.31,1,236 +11745621,5 min walk to Times Square! Sleeps 4!,8208493,Teresa,Manhattan,Hell's Kitchen,40.76235,-73.98872,Entire home/apt,175,1,179,2019-07-07,5.71,1,116 +11750272,"""Off the Beaten Path"" NYC OASIS",25059970,Jeffrey And Anna Rita,Staten Island,Clifton,40.62375,-74.07373,Entire home/apt,75,5,81,2019-06-19,2.04,1,155 +11750766,SWEEPING VIEWS 23d FLR~SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75754,-73.96129,Entire home/apt,245,30,0,,,49,334 +11751327,Midtown East Elevator 1 Bedroom,61391963,Corporate Housing,Manhattan,Midtown,40.75387,-73.96744,Entire home/apt,125,30,11,2019-06-01,0.29,91,157 +11751718,Modern 2 BR with high end Finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74128,-73.98039,Entire home/apt,159,30,3,2019-03-01,0.11,91,310 +11751916,Large 2BR apt. steps from Subway,62530335,Adam,Bronx,Concourse,40.8199,-73.9281,Entire home/apt,110,1,0,,,1,0 +11752905,"Midtown East 2 BR, 3 Beds",61391963,Corporate Housing,Manhattan,Midtown,40.75573,-73.96835,Entire home/apt,150,30,7,2018-10-01,0.18,91,188 +11753010,brooklyn rent apartment,62535444,Alex,Brooklyn,Brighton Beach,40.57891,-73.95388,Entire home/apt,99,1,88,2019-06-26,2.22,2,364 +11753116,Luxury Style Space: ideal for short or longterm!,50199714,Dellasie,Brooklyn,Crown Heights,40.672,-73.94247,Private room,49,1,86,2019-06-10,2.16,1,4 +11753760,Gorgeous apartment in Brownstone,62542300,Gary,Brooklyn,South Slope,40.66736,-73.98773,Private room,140,2,141,2019-07-05,3.63,1,268 +11753792,MyrtleWash Townhouse,15423103,Jessica,Brooklyn,Clinton Hill,40.6954,-73.96705,Entire home/apt,200,30,1,2018-08-06,0.09,1,9 +11754084,"Sunny, East Vil 1BR w Rooftop view!",8488826,Julia,Manhattan,East Village,40.72941,-73.98336,Entire home/apt,148,4,5,2017-01-01,0.13,1,0 +11754456,Amazing 2 BR in SOHO,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72815,-74.00111,Entire home/apt,165,30,7,2019-05-14,0.28,91,142 +11755816,Super Comfortable Room for Rent!,41616878,Melissa,Brooklyn,Bushwick,40.69172,-73.9087,Private room,59,20,33,2019-05-04,0.82,4,361 +11755946,Bright Room for Rent Close 2 Train!,41616878,Melissa,Brooklyn,Bushwick,40.6913,-73.90998,Private room,45,30,17,2019-06-08,0.43,4,335 +11756047,Beautiful Room for Rent! L Train!,41616878,Melissa,Brooklyn,Bushwick,40.69164,-73.90968,Private room,45,30,16,2019-03-31,0.43,4,334 +11758988,Your Harlem home away from home,3150538,Sarah,Manhattan,Harlem,40.82066,-73.95259,Entire home/apt,225,3,25,2019-01-01,0.63,1,0 +11760308,Cozy Bedroom for 2 in E Harlem,62588398,Daniel,Manhattan,East Harlem,40.79945,-73.9346,Private room,70,3,54,2019-04-23,1.36,1,40 +11767644,2 BEDROOM Apartment - Walk to Train!,62634797,Demetra,Queens,Sunnyside,40.73949,-73.9282,Entire home/apt,95,21,102,2019-01-08,2.90,1,138 +11769558,"Large 2 bedroom apartment, 100% private, Bushwick",62649248,Benjamin,Brooklyn,Bushwick,40.70663,-73.9175,Entire home/apt,100,30,28,2019-04-26,0.81,2,87 +11769741,Bright and spacious room with mini-kitchen,17638424,Sophie,Queens,Elmhurst,40.74517,-73.87496,Private room,59,1,75,2019-04-07,1.87,8,106 +11771598,Quiet and Sunny room in Harlem!,36830075,Camila,Manhattan,Harlem,40.82884,-73.94868,Private room,50,1,0,,,2,0 +11774815,Upper East Side Prewar,62685348,Karen,Manhattan,Upper East Side,40.77815,-73.96158,Entire home/apt,400,1,0,,,1,0 +11775127,Charming & Sunny 1BR @ East Village,15265556,Or,Manhattan,East Village,40.72547,-73.98717,Entire home/apt,100,1,3,2016-03-15,0.07,1,0 +11775347,"Beautiful ""pop-art"" studio near Times Square !",60081723,Antoine,Manhattan,Hell's Kitchen,40.76226,-73.99285,Entire home/apt,199,3,157,2019-07-07,3.95,2,215 +11775483,Sunny little Nook in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.66898,-73.94209,Private room,35,3,165,2019-04-10,4.09,5,272 +11775601,"Spacious bedroom, in Crown heights",15495404,Melanie,Brooklyn,Crown Heights,40.67091,-73.93247,Private room,65,5,0,,,1,0 +11776880,Minimalist 1-BD close to subway,6598000,Adetutu,Brooklyn,Prospect-Lefferts Gardens,40.66156,-73.94882,Entire home/apt,95,3,9,2017-04-15,0.23,1,0 +11778761,Rose: Warm STG Welcome Yankees!,13750728,Gayle,Bronx,Longwood,40.81778,-73.90858,Private room,60,2,63,2019-06-24,1.68,4,336 +11782120,Times Square Two Bedroom,40219037,Ziv,Manhattan,Hell's Kitchen,40.76452,-73.99439,Entire home/apt,200,4,107,2019-06-26,2.73,1,203 +11782585,Beautiful Studio in heart of UWS,46778061,Amy,Manhattan,Upper West Side,40.77826,-73.97703,Entire home/apt,200,3,43,2019-06-08,1.08,1,14 +11784410,Beautiful Blue Room in West Harlem,62557719,Leomaris,Manhattan,Harlem,40.83155,-73.94489,Private room,50,7,21,2019-06-26,0.55,3,363 +11786053,Upscale in The Heights,37055110,Teri,Manhattan,Washington Heights,40.84443,-73.94118,Private room,102,2,29,2017-08-11,0.76,1,178 +11786452,Amazing 1 bed in Greenwich Village,46583440,Sophie,Manhattan,Greenwich Village,40.73573,-73.99496,Entire home/apt,152,1,1,2016-04-01,0.03,1,0 +11786930,"Luxury 4-storey, 3br with Media Den",672573,Meg,Brooklyn,Cobble Hill,40.68706,-73.99893,Entire home/apt,490,7,1,2016-07-15,0.03,1,0 +11787290,2BR Penthouse Aprtmt on Park Avenue,29244447,Sohit,Manhattan,Murray Hill,40.74773,-73.98079,Entire home/apt,250,1,1,2016-03-20,0.02,1,0 +11788559,Huge townhouse near Central Park!,4284154,Jennifer,Manhattan,Harlem,40.8014,-73.95469,Entire home/apt,450,7,6,2018-08-18,0.17,2,229 +11790047,Prospect Park - Quiet 2 Room Studio,62787599,Ro,Brooklyn,Prospect-Lefferts Gardens,40.65799,-73.94924,Entire home/apt,98,4,15,2019-05-05,0.49,2,341 +11790749,"Big, bright apartment by the beach.",46798824,Matt,Brooklyn,Brighton Beach,40.57844,-73.95822,Entire home/apt,199,1,0,,,1,0 +11791225,"Spacious bedroom in Astoria, NY",23269511,Michael,Queens,Astoria,40.76792,-73.91175,Private room,50,5,1,2016-05-27,0.03,1,0 +11791673,Quiet 2 Bedrm w 3 Beds-ProspectPark,62787599,Ro,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.94791,Entire home/apt,109,4,25,2019-04-29,0.65,2,324 +11792006,"Spacious, Sunny Brooklyn 2BR Duplex Apartment",1850179,Tyson,Brooklyn,Bedford-Stuyvesant,40.68265,-73.94466,Entire home/apt,145,4,18,2019-01-01,0.49,1,0 +11793542,Room in Apt. near Columbia w/ Views,26271616,Ian,Manhattan,Upper West Side,40.80109,-73.96128,Private room,96,1,0,,,2,0 +11796761,LRG Sunny One Bedroom Garden APT w/ Big Backyard.,1039519,Brian,Brooklyn,Bedford-Stuyvesant,40.68407,-73.9531,Entire home/apt,165,4,5,2018-07-07,0.13,1,0 +11798782,Private Bedroom & Bath- Brooklyn,26865924,Donminique,Brooklyn,Crown Heights,40.67228,-73.93569,Private room,65,1,1,2016-06-13,0.03,1,0 +11799451,Cozy and ideal studio in the middle of Manhattan..,33547829,Hetor,Manhattan,Midtown,40.75561,-73.96424,Entire home/apt,130,2,118,2019-06-02,2.93,1,226 +11800108,"Clean, comfortable and convenient UES Studio",28551360,Kate,Manhattan,Upper East Side,40.78226,-73.95332,Entire home/apt,120,1,11,2016-11-13,0.30,1,0 +11801800,Brooklyn 2 Bedroom Duplex Apartment,62850827,Monzura,Brooklyn,Crown Heights,40.67386,-73.95271,Entire home/apt,165,30,3,2016-10-09,0.09,1,365 +11801942,"Cozy, Clean and Minimal Design in Park Slope",62852022,Stine And Andrew,Brooklyn,South Slope,40.66485,-73.98822,Entire home/apt,200,2,9,2019-05-31,0.24,1,0 +11801984,"Bright, contemporary and best location.",24232061,Tracy,Manhattan,Upper East Side,40.77189,-73.9554,Private room,122,9,12,2018-10-27,0.32,3,160 +11802086,5 rooms in clean apartment /West Harlem,62852828,Latrisha,Manhattan,Harlem,40.82443,-73.95265,Entire home/apt,400,3,2,2018-05-11,0.06,2,88 +11803487,Home 4 Medical Professionals-Brooklyn Hospital,26377263,Stat,Brooklyn,Fort Greene,40.68906,-73.97763,Private room,54,30,0,,,43,361 +11803893,Home 4 Medical Professionals-LIU,26377263,Stat,Brooklyn,Fort Greene,40.69006,-73.98056,Private room,54,30,0,,,43,361 +11804245,Home 4 Medical Professionals-Methodist Hospital,26377263,Stat,Brooklyn,Park Slope,40.66873,-73.97916,Private room,54,30,0,,,43,361 +11812986,Charming Soho Loft,1162642,Emily,Manhattan,Nolita,40.72295,-73.99481,Private room,250,1,2,2016-03-26,0.05,2,0 +11814079,Top floor on historic block,411437,Xela,Manhattan,Harlem,40.81118,-73.94313,Entire home/apt,120,14,9,2017-01-02,0.23,1,0 +11814184,Spacious room - Prime Williamsburg,8697041,Gaspard,Brooklyn,Williamsburg,40.71118,-73.947,Private room,75,1,0,,,2,0 +11816864,Bright Room in Spacious Astoria Apt,62939516,Garth,Queens,Long Island City,40.76079,-73.93215,Private room,65,1,5,2018-01-02,0.13,1,0 +11817212,Spacious sun filled private room.,264366,Neil,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94118,Private room,60,2,0,,,1,0 +11817955,Artist's Loft - South Park Slope,4629474,Jonathan,Brooklyn,Sunset Park,40.66162,-73.99122,Entire home/apt,179,3,0,,,1,0 +11818137,Cozy and spacious studying bedroom,17638424,Sophie,Queens,Elmhurst,40.74624,-73.87376,Private room,43,1,105,2019-06-17,2.61,8,140 +11821598,Quaint West Village Studio,62968595,Bethann,Manhattan,West Village,40.73892,-74.00385,Entire home/apt,130,5,0,,,1,0 +11822193,Small studio/Central Park/Upper West Side,62971703,Mary,Manhattan,Upper West Side,40.78484,-73.97707,Entire home/apt,154,3,78,2019-06-21,1.95,1,17 +11822434,Cozy & Colorful 1 Bedroom Apt in BK,62974212,Elvin,Brooklyn,Bushwick,40.69931,-73.92067,Entire home/apt,135,2,10,2018-10-21,0.26,1,88 +11823125,"Peaceful, cozy and safe condo/apt",62978797,Hasi,Queens,Woodside,40.75631,-73.90199,Private room,86,2,4,2019-01-01,0.15,1,365 +11825152,Modern Comfort in Upscale BK- Steps from Ferry!,19633984,Katlyn,Brooklyn,Columbia St,40.68912,-74.00121,Private room,85,2,61,2018-06-24,1.57,1,0 +11826442,Comfy Sanctuary walk to Laguardia!!,4348515,Olga,Queens,East Elmhurst,40.76969,-73.87912,Entire home/apt,80,3,68,2019-06-20,1.79,1,334 +11826892,Private Room in Gorgeous Loft,50556869,Kristen,Brooklyn,Bedford-Stuyvesant,40.68738,-73.91906,Private room,70,2,2,2017-10-09,0.05,1,0 +11827037,Spacious apt in Prospect Lefferts,63002307,Natalie,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95443,Private room,65,1,0,,,1,0 +11827175,Cozy one bedroom City College,3716130,Nina,Manhattan,Harlem,40.82325,-73.9478,Entire home/apt,100,1,7,2017-01-01,0.18,1,0 +11827224,"2 BR, 24-hour doorman, Gramercy",16058022,Jackie,Manhattan,Gramercy,40.73755,-73.98041,Entire home/apt,130,5,1,2016-04-22,0.03,1,0 +11827451,Cozy 1 Bedroom Apt.. Just like home,63006814,Jamilya,Brooklyn,Crown Heights,40.66429,-73.94994,Entire home/apt,139,2,67,2019-06-28,1.70,1,75 +11829419,1-bedroom in Brooklyn,62915940,Baochen,Brooklyn,Borough Park,40.6311,-74.00445,Private room,35,1,9,2016-08-09,0.24,1,0 +11833497,"August '19 in cozy, bright South Slope 1.5 br",9946550,Andrew,Brooklyn,South Slope,40.66432,-73.98847,Entire home/apt,100,7,1,2016-07-31,0.03,1,0 +11837681,"Private bedroom rental, spacious",44071830,Sharon,Manhattan,East Harlem,40.78583,-73.94316,Private room,60,1,0,,,1,0 +11837962,1 BR heart of Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.7566,-73.96956,Entire home/apt,133,30,7,2018-09-29,0.22,91,127 +11839668,Madison Square Park - Midtown East LUX Sleeps 6,62829649,Galina,Manhattan,Flatiron District,40.74341,-73.9895,Entire home/apt,275,2,136,2019-06-15,3.40,1,170 +11840057,BedRoom in lower East Side,51447330,Nicolas,Manhattan,Lower East Side,40.72049,-73.98821,Private room,112,1,0,,,1,0 +11840404,1 BR High End Renovations & Design,61391963,Corporate Housing,Manhattan,Kips Bay,40.74025,-73.97896,Entire home/apt,142,30,9,2019-06-05,0.36,91,157 +11840545,"2BR in Brooklyn, NY",45526701,Elizabeth,Brooklyn,Crown Heights,40.67237,-73.95172,Entire home/apt,135,2,22,2019-06-28,1.68,1,92 +11841709,"4 Bedroom Apt. Prospect Lefferts Gardens, Bklyn",63097249,Devon,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95081,Entire home/apt,165,1,19,2018-10-21,0.80,1,0 +11841988,Upper West Side Dream Apartment,37809789,Zabrina,Manhattan,Upper West Side,40.77727,-73.98355,Entire home/apt,200,1,0,,,1,0 +11842127,Passover NYC Rental,17980647,Alaethia,Manhattan,Upper West Side,40.79622,-73.96988,Entire home/apt,425,5,0,,,1,0 +11842300,Luxury Entire APT in Manhattan,29936265,Swan,Manhattan,Financial District,40.70544,-74.01616,Entire home/apt,110,1,2,2016-12-22,0.05,1,0 +11842735,"Cozy room available in Bed-Stuy, BK",2384086,Sal,Brooklyn,Bedford-Stuyvesant,40.689,-73.95241,Private room,40,5,0,,,1,0 +11843397,Room 1/2 block from Central Park!,23994508,Erika,Manhattan,East Harlem,40.79533,-73.94764,Private room,70,2,169,2019-06-16,4.27,1,38 +11844556,Beautiful room in West Harlem,62557719,Leomaris,Manhattan,Harlem,40.83039,-73.94532,Private room,65,30,6,2016-11-04,0.16,3,365 +11844776,Vintage NYC apt - Monthly Rates!,3864301,Sen,Queens,Sunnyside,40.74356,-73.91685,Entire home/apt,95,30,3,2018-06-08,0.09,2,357 +11845193,Available 23rd-28th March,13318184,Rebecca,Brooklyn,Williamsburg,40.70523,-73.94072,Private room,100,1,0,,,4,0 +11847204,GREAT APT w BALCONY in BEST AREA,9532490,Alexandra,Manhattan,East Village,40.73065,-73.9886,Entire home/apt,140,2,4,2019-06-09,0.10,3,0 +11850334,New 1BR: Midtown Modern in Manhattan,2682322,Ramy,Manhattan,Kips Bay,40.74381,-73.98016,Entire home/apt,150,2,0,,,1,0 +11850380,Sunny Spacious Sublet near Prospect Park,5245797,Sarah,Brooklyn,Kensington,40.64225,-73.97197,Entire home/apt,115,2,5,2017-04-30,0.13,1,0 +11850782,"Spacious, Artsy Room!",39476438,Rachel,Manhattan,Harlem,40.81616,-73.93885,Private room,74,2,3,2016-07-31,0.08,2,363 +11850900,"STYLISH SPACIOUS WILLIAMSBURG LOFT APT, SLEEPS 4.",63157598,Luca,Brooklyn,Williamsburg,40.70807,-73.94007,Entire home/apt,175,4,6,2019-04-26,0.16,1,157 +11850918,Convenient 2BR/2BA - East Village,14363695,Heda,Manhattan,East Village,40.72852,-73.98064,Entire home/apt,275,5,1,2016-04-19,0.03,1,0 +11851288,"spacious 1BR, 15 min to Manhattan",42308954,Tugce,Queens,Sunnyside,40.74156,-73.91866,Entire home/apt,110,3,6,2017-03-20,0.16,1,0 +11858737,Great Room in the Lower East Side,40068602,Jeremy,Manhattan,East Village,40.72099,-73.97993,Private room,69,1,1,2016-03-23,0.02,1,0 +11859901,Room plus private bath near dumbo,26867230,Kayla,Brooklyn,Downtown Brooklyn,40.69796,-73.98268,Private room,50,1,3,2016-04-01,0.07,2,0 +11861349,Nice BR in Luxury Williamsburg Apt,12440590,Thu Anh,Brooklyn,Williamsburg,40.71079,-73.95428,Private room,85,6,12,2017-11-17,0.30,1,0 +11862941,1 Bedroom Heart of Financial Dist,23914324,Hamza,Manhattan,Financial District,40.71111,-74.00936,Private room,110,2,0,,,1,0 +11863468,Stunning Elevator 1 BR Chelsea,61391963,Corporate Housing,Manhattan,Chelsea,40.74392,-74.00113,Entire home/apt,142,30,7,2019-02-18,0.25,91,316 +11864530,Clean Room in a Renovated Apartment in Manhattan,45859087,Maya,Manhattan,Harlem,40.82403,-73.95379,Private room,75,20,18,2019-03-10,0.67,2,232 +11865398,"Spacious 1 bdrm apt, East Village",43174657,Patricia,Manhattan,East Village,40.73062,-73.98524,Entire home/apt,133,3,3,2017-01-01,0.08,1,0 +11866156,Apt in Heart of Hell's Kichen,988788,Marissa,Manhattan,Hell's Kitchen,40.76362,-73.99033,Private room,79,1,1,2016-04-03,0.03,1,0 +11866301,Beautifully spacious 1 bedroom,63256824,Xavier,Bronx,Norwood,40.87925,-73.88254,Entire home/apt,80,1,2,2016-05-26,0.05,1,0 +11866751,Views of the Hudson NYC Apt.!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76072,-73.99818,Entire home/apt,239,30,2,2017-04-03,0.07,121,365 +11867573,Manhattan beautiful studio.,6544323,Rachel,Manhattan,East Harlem,40.78967,-73.94741,Entire home/apt,100,4,0,,,1,0 +11868050,Amazing spacious 1 BR Park Slope BK,10002513,Ethan,Brooklyn,Park Slope,40.68125,-73.97974,Entire home/apt,159,3,3,2017-04-30,0.08,1,0 +11868110,111 St. Marks Place,63269523,John,Manhattan,East Village,40.72804,-73.98281,Entire home/apt,140,1,1,2016-03-21,0.02,1,0 +11868495,Heart of the West Village!,1633721,Meg,Manhattan,West Village,40.73354,-74.00549,Entire home/apt,250,2,23,2017-01-01,0.58,1,0 +11869400,NYCHaven3: Entire House for less than a hotel room,47351539,Jason,Brooklyn,East Flatbush,40.65146,-73.93966,Entire home/apt,135,1,193,2019-06-23,4.87,4,270 +11871690,Big Brooklyn bedroom near subway/Prospect Park,9361557,Joe,Brooklyn,Prospect-Lefferts Gardens,40.66275,-73.96122,Private room,65,10,94,2017-08-22,2.40,2,0 +11871903,Cozy Bedroom on UWS steps to CPW !!,50032395,Wayne And Yesim,Manhattan,Upper West Side,40.80029,-73.96626,Private room,75,1,1,2016-03-28,0.03,2,188 +11871932,Apt. across from Lincoln Center,63294576,Emily,Manhattan,Upper West Side,40.77248,-73.98108,Entire home/apt,195,1,3,2016-10-23,0.08,1,0 +11872337,"Spacious loft apt, with plenty of light",3803638,Shai,Brooklyn,Bedford-Stuyvesant,40.69178,-73.95917,Entire home/apt,99,3,35,2019-07-01,0.90,1,39 +11873498,Clean Cozy Room in Manhattan,45859087,Maya,Manhattan,Harlem,40.82247,-73.95341,Private room,70,30,25,2019-01-19,0.65,2,187 +11881208,Lavish Studio Apt in Midtown West NYC!,30283594,Kara,Manhattan,Hell's Kitchen,40.76078,-73.99864,Entire home/apt,199,30,0,,,121,365 +11884931,Sunny Room near subway!!,18221107,Darya,Manhattan,Inwood,40.86087,-73.92724,Private room,65,3,36,2018-06-10,0.90,1,249 +11885997,Beautiful loft in DUMBO Brooklyn,17782625,David,Brooklyn,Vinegar Hill,40.70211,-73.98418,Entire home/apt,245,2,3,2017-12-13,0.08,2,0 +11888497,Spacious Bright + Clean Studio Near Central Park,1414412,Jiyoung,Manhattan,Upper East Side,40.77384,-73.95619,Entire home/apt,150,4,17,2019-01-01,0.43,1,26 +11888603,"Lovely, spacious room",35211977,Maria,Brooklyn,Bushwick,40.70578,-73.92375,Private room,55,1,1,2016-03-28,0.03,1,0 +11890279,"Beautiful Flatiron 3 Bedroom, 2 Bath Loft",63407204,C,Manhattan,Flatiron District,40.73987,-73.98982,Entire home/apt,650,5,42,2019-05-24,1.07,1,335 +11890882,Private Room in NYC Apartment,60617592,Ricky,Queens,Astoria,40.76487,-73.91377,Private room,50,1,1,2016-03-24,0.02,1,0 +11891948,Lovely home located by pier,63291733,Carlyne,Brooklyn,Canarsie,40.63672,-73.88814,Entire home/apt,81,2,43,2019-06-29,1.18,1,309 +11892476,Beautiful Artsy 1BD Home,39476438,Rachel,Manhattan,Harlem,40.81487,-73.93937,Entire home/apt,92,5,4,2018-08-28,0.11,2,0 +11893359,"Private Room w/Wifi, Prime Location",20348541,Jessica,Manhattan,West Village,40.73146,-74.00392,Private room,105,1,14,2016-06-28,0.36,1,0 +11894427,Beautiful 2 Bedroom Apt w/ One Bedroom for Rent,10750483,Mark,Manhattan,East Harlem,40.79556,-73.9325,Private room,89,4,1,2019-01-02,0.16,1,365 +11901356,Spacious 5 Bedroom Apt Williamsburg,30733725,Jessie,Brooklyn,Williamsburg,40.71283,-73.95785,Entire home/apt,348,2,1,2016-04-17,0.03,1,0 +11901938,1st Floor Apt in Heart of Brooklyn,3752523,Ari,Brooklyn,Crown Heights,40.66952,-73.94287,Entire home/apt,168,2,63,2019-06-07,1.66,2,344 +11902812,Spacious Bushwick BR; Yard! ~175ft to Subway,40883799,Amos,Brooklyn,Bushwick,40.70518,-73.92165,Private room,65,1,52,2019-06-29,1.70,3,179 +11903561,Rock & Roll Living in the Heart of NYC,3937437,Lisa,Manhattan,East Village,40.72093,-73.97964,Entire home/apt,100,2,0,,,1,0 +11904191,Spacious Harlem Brownstone apartment,63499716,Vanessa,Manhattan,Harlem,40.80678,-73.94976,Entire home/apt,175,4,130,2019-07-03,3.33,1,53 +11904345,PRIVATE GARDEN-LEVEL CITY OASIS!,3577509,Eric,Brooklyn,Bedford-Stuyvesant,40.69175,-73.93504,Entire home/apt,100,4,113,2019-06-25,2.87,2,287 +11905096,Cozy Modern Luxury with Full Balcony,63506844,Andre,Brooklyn,Flatbush,40.63397,-73.9654,Entire home/apt,119,3,121,2019-07-08,3.38,1,280 +11905189,Sunny and Charming BedStuy 1-BR/Studio Apt,4323335,Jamie,Brooklyn,Bedford-Stuyvesant,40.686,-73.94629,Entire home/apt,105,4,22,2019-06-29,0.67,1,11 +11906169,Sunny Apartment in Crown Heights,2103550,Anna,Brooklyn,Crown Heights,40.67765,-73.95432,Entire home/apt,200,1,0,,,1,0 +11909308,SoHo Studio on Spring Street,4392739,René,Manhattan,SoHo,40.72671,-74.01035,Entire home/apt,290,2,69,2019-06-08,1.73,1,99 +11909622,cozy bedroom in BedStuy Brooklyn,35362734,Gregoire,Brooklyn,Bedford-Stuyvesant,40.67958,-73.92509,Private room,62,1,0,,,1,0 +11910257,Cozy Nest 15 Minutes From Midtown,50661711,Cory,Manhattan,Washington Heights,40.83288,-73.94306,Private room,70,1,0,,,1,0 +11910278,Sunny Spacious Crown Heights Studio,174570,Holly,Brooklyn,Crown Heights,40.67807,-73.95913,Entire home/apt,65,4,1,2016-05-22,0.03,1,0 +11910848,Beautiful TriBeCa Apartment,63544192,Annie,Manhattan,Tribeca,40.71893,-74.00485,Private room,60,25,2,2018-07-31,0.05,1,0 +11911783,Modern Upper West Side Luxury!!,9143200,Steven,Manhattan,Upper West Side,40.79466,-73.97173,Entire home/apt,160,3,2,2016-06-13,0.05,1,0 +11912865,CrashPadsUSA for Airline Crew. Nightly HOTBEDS,63560790,A.B.,Queens,Kew Gardens,40.70375,-73.8304,Shared room,45,1,17,2019-05-19,0.72,2,365 +11920660,Brightly Skylit 3 Bedroom Soho Loft,62316222,C E,Manhattan,SoHo,40.72064,-73.99957,Entire home/apt,595,5,51,2019-06-06,1.29,1,347 +11922306,Sunlit bright home.,63623329,Marina,Brooklyn,Crown Heights,40.67832,-73.95128,Private room,60,3,5,2016-10-10,0.13,1,0 +11923007,Trendy & spacious Williamsburg Apt,7640852,Markus,Brooklyn,Williamsburg,40.71178,-73.95779,Private room,95,2,0,,,1,0 +11923881,"Magical Artist Brownstone, Beautiful Colors Room",41099363,Maria,Brooklyn,Fort Greene,40.68762,-73.97516,Private room,150,4,2,2019-04-09,0.18,3,193 +11923955,Big Sunny 1 Bdrm Apt - Midtown NYC,35587586,Platon,Manhattan,Hell's Kitchen,40.76594,-73.9851,Entire home/apt,200,1,0,,,1,0 +11924652,Upper west side luxury building,39111035,Veronica,Manhattan,Upper West Side,40.78079,-73.98826,Private room,160,2,2,2016-08-31,0.06,1,0 +11924694,Artist Apartment in Heart of West Village ❤️,3167887,Sarah,Manhattan,West Village,40.73178,-74.00173,Entire home/apt,300,5,88,2019-06-24,2.32,1,121 +11926941,Cozy 1 bdrm near Prospect Park/BK,4501003,Brooke,Brooklyn,Flatbush,40.64117,-73.96038,Entire home/apt,99,1,3,2016-05-20,0.08,1,0 +11927032,Charming Modern Bed-Stuy Brooklyn Townhouse W/Yard,12986134,Nicole,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91516,Entire home/apt,150,3,0,,,1,334 +11927300,Cosy Room in Ridgewood/Bushwick,4386682,Francesco,Queens,Ridgewood,40.7024,-73.9106,Private room,35,5,7,2019-03-02,0.19,3,0 +11927624,Light filled modern APT in DUMBO,5251483,Sasha,Brooklyn,Vinegar Hill,40.70328,-73.98314,Entire home/apt,170,4,2,2016-07-23,0.05,1,0 +11928097,Sunny room in a 2 bedroom apartment,17737517,Martin,Manhattan,East Harlem,40.80012,-73.94272,Private room,65,1,0,,,1,0 +11928713,Sunny living room and great location in Brooklyn,3274929,Agustin,Brooklyn,Flatbush,40.63549,-73.95817,Shared room,38,3,27,2019-04-24,0.95,1,84 +11929230,Spacious Room in Williamsburg,31919152,Ryan,Brooklyn,Williamsburg,40.70878,-73.94441,Private room,60,7,0,,,1,0 +11933676,Soho PH 2 Bedroom Private Terrace,63702305,Caroline,Manhattan,SoHo,40.72289,-73.9974,Entire home/apt,500,4,72,2019-07-01,1.80,1,330 +11935301,"Spacious, Sunny Room in Park Slope",24253453,Lisah,Brooklyn,Park Slope,40.67549,-73.98057,Private room,85,2,1,2016-06-24,0.03,2,0 +11937647,Entire Williamsburg apt.,12446288,Micki & Kristian,Brooklyn,Williamsburg,40.71541,-73.93748,Entire home/apt,110,3,4,2018-05-30,0.10,1,0 +11939910,Cozy room in Upper East Side,9427555,Leila,Manhattan,East Harlem,40.78825,-73.9487,Private room,60,8,6,2017-06-29,0.16,1,0 +11940117,1BR Bright & Spacious in West Harlem,27488921,Jorge,Manhattan,Harlem,40.80403,-73.95427,Entire home/apt,148,6,44,2019-06-23,1.12,1,280 +11941755,"Stylish, Spacious 1 BR Apt in Heart of Village",63755360,Matt,Manhattan,East Village,40.72548,-73.9857,Entire home/apt,133,2,72,2019-06-24,1.82,1,0 +11943700,Alcove Studio,19586959,Philip,Manhattan,Hell's Kitchen,40.75519,-73.99331,Entire home/apt,160,1,0,,,1,0 +11943846,Spacious Modern Manhattan 2BR,50976547,Young,Manhattan,East Village,40.72175,-73.98088,Entire home/apt,250,3,1,2016-05-02,0.03,1,0 +11944668,10minutes to Manhattan from Astoria,37188098,Ashraful,Queens,Astoria,40.76088,-73.92233,Private room,95,1,13,2016-08-07,0.33,2,183 +11944718,Central Park North- 1 bed Apt to share (female),13509844,Ara,Manhattan,East Harlem,40.79665,-73.94928,Private room,69,7,7,2016-08-14,0.18,1,0 +11946206,Luxurious 1 Bedroom Apt!,2705455,Rei,Queens,Long Island City,40.74284,-73.95755,Entire home/apt,180,6,1,2016-05-20,0.03,1,0 +11947067,Artist's Budget Apartment,63790712,Layla,Manhattan,Harlem,40.80477,-73.95454,Private room,40,2,16,2019-01-04,0.40,2,0 +11948586,Large Bedroom,63800453,Harry,Brooklyn,Flatbush,40.63836,-73.95698,Private room,85,1,6,2017-01-01,0.16,1,0 +11949531,Private room available in 2 bedroom apartment,3630684,Habby,Brooklyn,Bushwick,40.70487,-73.92127,Private room,65,3,11,2019-06-02,0.37,1,0 +11950107,Private Bedroom Near Prospect Park,32306916,Vin,Brooklyn,Crown Heights,40.67324,-73.95157,Private room,55,1,4,2016-05-15,0.10,1,0 +11950302,East Village Couch Crash 9PM-9AM,1212041,Michelle,Manhattan,East Village,40.72982,-73.98823,Shared room,75,1,4,2016-09-15,0.10,2,0 +11959165,Charming 1 BR apartment east of Central Park,13209857,Tania,Manhattan,East Harlem,40.7887,-73.94736,Entire home/apt,125,3,11,2018-08-21,0.28,1,0 +11959854,Affordable Private Cozy Room!,45990565,Alba & Genesis,Bronx,Morris Heights,40.8522,-73.91014,Private room,26,3,21,2019-06-08,0.64,2,127 +11960466,Spacious 1BR Williamsburg Apartment,18994094,Kailei,Brooklyn,Williamsburg,40.71214,-73.95837,Entire home/apt,175,2,28,2019-04-22,0.70,1,0 +11961053,Sunlit Red Hook Pied-à-terre,3752933,Steve,Brooklyn,Red Hook,40.67849,-74.01178,Private room,85,2,66,2019-06-24,4.58,1,59 +11963123,Bright Apartment in Clinton Hill,7306184,Jasper,Brooklyn,Clinton Hill,40.68517,-73.9666,Entire home/apt,179,5,0,,,1,0 +11965263,Huge sunny bedroom in Crown Heights,9028473,Molly,Brooklyn,Crown Heights,40.67265,-73.94674,Private room,75,1,0,,,1,0 +11965862,SUNNY and SPACIOUS room in Brooklyn,63914230,Kay,Brooklyn,Williamsburg,40.7128,-73.9605,Private room,76,5,1,2016-07-12,0.03,1,0 +11966139,Quiet Chelsea One Bedroom,29084038,Stephan And Liz,Manhattan,Chelsea,40.73911,-74.00047,Entire home/apt,225,30,87,2019-06-08,2.17,1,280 +11967737,Beautiful Bedroom on Hudson River/Riverside Park,63928471,David,Manhattan,Harlem,40.83342,-73.94949,Private room,40,1,6,2019-03-22,0.16,1,0 +11968539,Fully Furnished & Sunny UES Studio,22089496,Sara,Manhattan,Upper East Side,40.76053,-73.96181,Entire home/apt,110,2,22,2019-06-02,0.55,1,0 +11968680,Posh Madison Ave Apt,61391963,Corporate Housing,Manhattan,Upper East Side,40.78328,-73.95695,Entire home/apt,117,30,8,2019-04-21,0.25,91,311 +11968958,Beautiful studio,63935825,Marianna,Queens,Ditmars Steinway,40.77872,-73.91396,Entire home/apt,78,1,4,2016-05-28,0.10,1,0 +11969727,Artistic NEW LOFT 4 br/2 bath in Times Sq,63940105,One,Manhattan,Hell's Kitchen,40.76268,-73.99235,Entire home/apt,800,3,59,2019-06-23,1.51,1,263 +11970778,One Bedroom Apartment in Greenpoint!,15817123,Stephanie,Brooklyn,Greenpoint,40.73164,-73.95323,Entire home/apt,65,1,152,2019-06-18,3.80,3,1 +11970867,Modern Clean Studio 2 blocks from Central Park,1410306,Eugene,Manhattan,Upper West Side,40.78592,-73.97447,Entire home/apt,105,1,181,2019-07-06,4.61,1,175 +11971174,Huge room in central Bushwick flat,4411040,Maya,Brooklyn,Bushwick,40.69669,-73.92785,Private room,45,1,3,2016-06-25,0.08,1,0 +11971334,Your cozy and cute space 7 train,17638424,Sophie,Queens,Elmhurst,40.74561,-73.87344,Private room,34,1,89,2019-07-03,2.35,8,164 +11971580,The Heart of west HARLEM-With a European flair,5388411,Timothy,Manhattan,Harlem,40.82776,-73.94701,Entire home/apt,90,3,0,,,1,0 +11972141,Lovely Room in Beautiful Brooklyn,54043278,Marina,Brooklyn,Bedford-Stuyvesant,40.68583,-73.95677,Private room,65,3,0,,,1,0 +11973701,2BR Comfy Apt - 15min from MIDTOWN,15789646,Steven,Queens,Sunnyside,40.74518,-73.91704,Entire home/apt,150,30,7,2019-01-04,0.18,2,338 +11980791,Clean/Elegant HK Apt. w/ Cute Bear,10461612,Devon,Manhattan,Hell's Kitchen,40.76257,-73.98603,Entire home/apt,160,3,20,2017-05-29,0.50,1,0 +11981021,Prime Brand New 1 bed!5206,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74962,-73.97431,Entire home/apt,250,30,2,2019-01-09,0.17,96,337 +11981145,Mysig tvåa på Upper East Side,64027912,Carolin,Manhattan,Upper East Side,40.76955,-73.95002,Entire home/apt,106,1,0,,,1,0 +11981509,COLUMBIA PRESBYTERIAN MED CTR *ARIA* 1 Bedroom Apt,25237492,Juliana,Manhattan,Washington Heights,40.84216,-73.94101,Entire home/apt,95,30,7,2018-02-04,0.19,34,322 +11982174,Large Private Room in Midtown East,46889591,Hatsumi,Manhattan,Upper East Side,40.76272,-73.96269,Private room,69,1,4,2016-05-15,0.10,1,0 +11982791,Bed-Sty Fly,27709477,Jasmine,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94384,Entire home/apt,145,2,100,2019-06-23,2.52,1,296 +11984115,Sunny 1 BR Apt in Bed Stuy,25810,Sasha,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95089,Entire home/apt,75,5,7,2018-08-10,0.18,1,0 +11984762,A cozy place to set your mind free.,59473349,Judy,Brooklyn,East New York,40.67729,-73.87996,Entire home/apt,70,5,37,2019-06-28,1.48,1,263 +11985793,Huge apartment in beautiful Brooklyn Brownstone,9217610,Virginie,Brooklyn,Greenpoint,40.7279,-73.94494,Entire home/apt,225,6,0,,,2,0 +11988251,Cozy & Comfortable Private Bedroom,28121352,Franklin,Queens,Elmhurst,40.74503,-73.87671,Private room,43,2,27,2017-10-31,0.68,1,0 +11989954,Sunny and comfortable Apartment,35253342,Tee,Brooklyn,Fort Hamilton,40.62168,-74.03023,Entire home/apt,121,20,23,2019-04-13,0.60,3,294 +11990841,Private room in Bushwick!,13318184,Rebecca,Brooklyn,Williamsburg,40.70553,-73.94203,Private room,50,1,0,,,4,0 +11991426,"Cozy, quiet, studio apartment",1598283,Anna,Manhattan,East Village,40.73072,-73.99174,Entire home/apt,198,3,31,2019-06-11,0.80,1,57 +11993790,Gorgeous large sunny room in NYC!,116382,Anthony,Brooklyn,Crown Heights,40.6703,-73.94209,Private room,109,2,115,2019-06-30,2.87,5,352 +12000030,"Sunny, Quiet Downtown 1BR Apt - Great location!",42047615,Jonathan & Nancy,Manhattan,Chelsea,40.74069,-74.00069,Entire home/apt,199,30,1,2016-10-31,0.03,2,292 +12000603,Well located apartment near NY City,64170911,Anne,Bronx,Riverdale,40.8883,-73.91665,Entire home/apt,150,2,79,2019-06-30,1.99,1,267 +12000617,Comfortable Bedroom right by express subway!,64170751,Dani,Brooklyn,Crown Heights,40.66759,-73.95187,Private room,49,3,5,2017-04-09,0.13,1,0 +12000676,~Luxury 1 bedroom apt. near Columbus Circle,30283594,Kara,Manhattan,Midtown,40.76528,-73.98175,Entire home/apt,239,30,0,,,121,351 +12000916,Entire Large Park Slope 2BR Apt,6132748,Chip,Brooklyn,Park Slope,40.68224,-73.97785,Entire home/apt,100,1,0,,,1,0 +12001322,NYC Midtown-West Luxury 1BR Apt.,30283594,Kara,Manhattan,Midtown,40.76554,-73.98289,Entire home/apt,239,30,0,,,121,352 +12001638,NYC modern 1 bedroom apt. near Carnegie Hall!,30283594,Kara,Manhattan,Midtown,40.76537,-73.98332,Entire home/apt,239,30,0,,,121,352 +12001650,"Stunning, Waterfront Views! Williamsburg Brooklyn",2295610,Rebecca,Brooklyn,Williamsburg,40.71214,-73.96866,Entire home/apt,170,3,21,2019-06-02,0.53,1,0 +12001854,Luxury 1-Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76573,-73.98295,Entire home/apt,239,30,1,2017-11-22,0.05,121,352 +12001984,Brooklyn / Williamsburg / Cozy Large Private Room,43170685,Koji,Brooklyn,Williamsburg,40.71135,-73.94435,Private room,80,1,1,2016-04-17,0.03,1,0 +12002288,Luxury 1-Bedroom NYC apt. near Rockefeller Center!,30283594,Kara,Manhattan,Midtown,40.76497,-73.98201,Entire home/apt,239,30,0,,,121,351 +12002548,Luxury 1 Bedroom Midtown West Apartment!,30283594,Kara,Manhattan,Midtown,40.76526,-73.9817,Entire home/apt,239,30,0,,,121,352 +12003048,Sleek 1 bedroom apt. near Times Square!,30283594,Kara,Manhattan,Hell's Kitchen,40.76685,-73.98363,Entire home/apt,239,30,0,,,121,352 +12003146,Sunshine Studio near Columbia U,22099204,Cinthia,Manhattan,Upper West Side,40.80229,-73.96719,Entire home/apt,80,1,2,2016-11-23,0.05,1,0 +12003341,Charming Brownstone w/Backyard,4106320,Sachea,Brooklyn,Bedford-Stuyvesant,40.67909,-73.93222,Entire home/apt,140,2,33,2019-06-09,0.87,1,145 +12004174,Studio in the Heart of Gramercy!,21661360,Julie,Manhattan,Gramercy,40.73638,-73.98453,Entire home/apt,240,2,0,,,1,0 +12004175,Private Master Bedroom in Luxury Bu,13340829,Lin,Brooklyn,Crown Heights,40.67543,-73.96312,Private room,60,5,1,2016-08-18,0.03,1,0 +12004547,Prime Central Park West Pied à Terre,44596503,Josh & Jessica,Manhattan,Upper West Side,40.78466,-73.97276,Entire home/apt,200,2,128,2019-06-17,3.31,1,231 +12004744,Spacious Lower Manhattan Apt!,18978289,Julian,Manhattan,Two Bridges,40.71127,-73.99838,Entire home/apt,159,2,3,2017-09-24,0.11,1,0 +12005195,Adorable One Bedroom Apartment w/ Balcony!,15817123,Stephanie,Brooklyn,Greenpoint,40.73203,-73.95263,Entire home/apt,65,1,56,2018-10-27,1.58,3,0 +12005318,Large Private Room in Kips Bay/Murray Hill,5707158,Yuan,Manhattan,Kips Bay,40.74418,-73.97565,Private room,70,3,2,2016-09-29,0.05,2,0 +12005922,Plush 2 Bedroom Midtown West NYC Apartment,30283594,Kara,Manhattan,Midtown,40.76647,-73.9829,Entire home/apt,369,30,0,,,121,345 +12005923,Penthouse with PRIVATE ROOFTOP on Upper West Side,36076005,Stephen,Manhattan,Upper West Side,40.77961,-73.98441,Private room,120,3,9,2017-09-25,0.23,1,365 +12006201,High-end bright 1 bedroom apt. in Midtown West,30283594,Kara,Manhattan,Midtown,40.76484,-73.98326,Entire home/apt,239,30,0,,,121,348 +12006770,East Village- The location,14731964,Pete,Manhattan,East Village,40.73273,-73.98667,Private room,125,1,36,2019-07-07,1.40,1,81 +12007258,Spacious One Bedroom with Private Roof,59489089,Molly,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95773,Entire home/apt,200,3,6,2018-07-31,0.15,1,0 +12007456,Nice And Clean Room In East Harlem,63403077,Sebastian,Manhattan,East Harlem,40.79741,-73.93884,Private room,50,29,40,2019-04-30,1.14,2,0 +12009651,GREAT Bright Manhtattan Apartment!,87266,David,Manhattan,Harlem,40.8245,-73.94264,Entire home/apt,120,150,10,2019-05-07,0.46,1,331 +12009685,East Village Apt with Balcony,26806527,Avir,Manhattan,Gramercy,40.73477,-73.98069,Shared room,100,1,0,,,1,0 +12009779,Loft w/ Manhattan skyline view,1534297,Bárbara,Brooklyn,Williamsburg,40.70843,-73.96924,Private room,80,1,2,2016-06-17,0.05,1,0 +12009807,Cozy centrally located LES apt,39856008,Tanya,Manhattan,Lower East Side,40.71869,-73.99141,Entire home/apt,140,1,1,2016-04-17,0.03,1,0 +12015378,Sunset Retreat - Top Floor Oasis,50292584,Haydee,Brooklyn,Sunset Park,40.6423,-74.01275,Entire home/apt,105,2,66,2019-06-09,1.68,2,360 +12017066,Vibrant Crown Heights,51159504,Mariana,Brooklyn,Crown Heights,40.66676,-73.92957,Private room,49,3,3,2018-10-07,0.08,1,365 +12019589,House On Henry Parlor Apartment,11481,Annette,Brooklyn,Carroll Gardens,40.6789,-74.00117,Entire home/apt,180,4,5,2019-05-08,0.13,3,333 +12019843,Full-size loft bed in East Village,14476679,Michael,Manhattan,East Village,40.72659,-73.97848,Private room,70,1,3,2016-06-26,0.08,1,0 +12020835,East Village Oasis,42435983,Mark,Manhattan,East Village,40.72296,-73.98322,Entire home/apt,450,1,45,2019-07-01,1.17,1,287 +12021544,Comfy Bedroom in Crown Heights close to Subway,62345719,Adam,Brooklyn,Crown Heights,40.66734,-73.94232,Private room,44,2,5,2018-06-26,0.38,1,0 +12022098,Charming Park Slope Apartment,8303104,Christen,Brooklyn,South Slope,40.66801,-73.98773,Private room,89,1,102,2019-07-03,2.56,1,269 +12022728,Prime Carroll Gardens Apartment,35027358,Thomas,Brooklyn,Carroll Gardens,40.68268,-73.99687,Entire home/apt,172,2,90,2019-06-30,2.31,1,87 +12022833,Luxury building- 2BR/2BA in Chelsea,438593,SaeHo,Manhattan,Chelsea,40.74391,-73.99582,Entire home/apt,350,1,2,2016-04-17,0.05,2,0 +12025076,I just need to lay my head down,64341665,Nka,Manhattan,Harlem,40.81942,-73.94264,Private room,68,1,49,2019-05-26,1.23,2,365 +12025968,Cozy And Clean Harlem Room,63403077,Sebastian,Manhattan,East Harlem,40.79796,-73.93921,Private room,52,32,57,2019-02-02,1.46,2,39 +12026418,Cozy room in a brand new building !,64355945,Catharina,Queens,Rego Park,40.72526,-73.85973,Private room,70,2,32,2019-07-01,0.81,1,89 +12028322,Charming house in Coney Island,52474491,Arthur,Brooklyn,Sea Gate,40.57804,-74.01024,Entire home/apt,223,1,1,2016-03-28,0.03,3,0 +12028495,Comfortable and Spacious Bedroom,52474491,Arthur,Brooklyn,Sea Gate,40.57857,-74.01012,Private room,71,1,0,,,3,0 +12028733,Comfortable and Spacious Bedroom B,52474491,Arthur,Brooklyn,Sea Gate,40.57774,-74.01022,Private room,97,1,2,2016-03-28,0.05,3,0 +12032987,Room right on Central Park!,20353296,Mia,Manhattan,East Harlem,40.79663,-73.94893,Private room,75,1,5,2016-08-20,0.13,1,0 +12034085,Private Theatre District Bedroom,7695223,David,Manhattan,Hell's Kitchen,40.75857,-73.98942,Private room,65,2,6,2016-12-17,0.16,1,0 +12034640,Comfortable 420 Friendly Room,64411228,Virginia,Brooklyn,Williamsburg,40.70922,-73.95232,Private room,64,1,25,2019-05-13,0.63,1,0 +12037967,Nice Big Room With Backyard.,7913863,Joey,Brooklyn,Williamsburg,40.70766,-73.95216,Private room,59,2,138,2019-06-20,3.63,1,268 +12038181,Modern Artsy Room in BK Near Subway,11028022,Tyrone,Brooklyn,Crown Heights,40.66633,-73.93507,Private room,100,3,0,,,1,0 +12038773,Beautiful Sunny Fire Escape Room,64444742,Sushanti,Brooklyn,Bushwick,40.69305,-73.90825,Private room,60,2,21,2019-06-11,0.53,1,364 +12039579,NY Queens Penthouse = 1MASTER aka Manhattan Room,34861728,Iris,Queens,Kew Gardens,40.70911,-73.8296,Private room,73,9,2,2018-09-10,0.17,4,276 +12039894,NY Queens Penthouse HOME with Patio,34861728,Iris,Queens,Kew Gardens,40.70764,-73.83116,Entire home/apt,219,9,2,2019-01-03,0.22,4,273 +12040331,Lrg 2 BR Duplex Top 2 Flrs Terrace West Village,64454893,Atul,Manhattan,Greenwich Village,40.73426,-73.99476,Entire home/apt,999,3,11,2019-05-04,0.28,1,164 +12050280,On 5th Ave! Easy to shopping,64528384,Eva,Manhattan,Chelsea,40.73844,-73.99262,Private room,150,60,0,,,1,0 +12050885,Your lovely and cozy space 7 train,17638424,Sophie,Queens,Elmhurst,40.74485,-73.87552,Private room,52,1,108,2019-07-07,2.71,8,174 +12050932,Luxury IBR apmt in Crown Heights,64534798,Olivia Loksing,Brooklyn,Crown Heights,40.66505,-73.95213,Entire home/apt,90,2,2,2016-05-14,0.05,1,0 +12051116,1BD Park views UWS,6255163,Tracy,Manhattan,Upper West Side,40.79982,-73.96192,Entire home/apt,150,2,16,2019-06-01,0.42,1,220 +12052143,Stunning Central Park West Location,36306552,Jarett,Manhattan,Upper West Side,40.77713,-73.97758,Entire home/apt,325,1,43,2019-06-21,1.12,1,223 +12052609,Cozy private 1.5BR Garden Apartment w/ backyard,44332076,Amber,Manhattan,Washington Heights,40.84915,-73.93317,Entire home/apt,170,5,24,2019-04-24,1.39,1,121 +12053427,Modern Studio in Middle Village,8896489,Florin,Queens,Maspeth,40.72153,-73.88753,Entire home/apt,79,3,64,2019-06-23,1.60,1,311 +12053637,Forte Green Townhouse Room Rental,8456000,Brian,Brooklyn,Clinton Hill,40.69619,-73.96944,Private room,175,1,17,2019-06-01,1.51,2,179 +12054286,Private Room in Upper West Side,45103252,Ruokun,Manhattan,Upper West Side,40.78807,-73.97406,Private room,75,1,0,,,1,0 +12054516,The Healing Place,39863896,Valerie,Brooklyn,Crown Heights,40.67292,-73.94033,Entire home/apt,120,3,70,2019-06-03,1.79,1,208 +12054723,"Big apartment, comfy - calm bedroom",64561100,Nicolas,Manhattan,Harlem,40.81574,-73.94871,Private room,72,1,98,2019-06-20,2.50,1,204 +12055540,Beautiful Studio Near Prospect Park,64568425,Christine,Brooklyn,Prospect-Lefferts Gardens,40.66099,-73.96083,Entire home/apt,80,1,0,,,1,0 +12056517,Adorable Upper East Side Studio,64576222,Kristin,Manhattan,Upper East Side,40.78115,-73.9466,Entire home/apt,175,4,0,,,1,0 +12056684,Luxury Harlem Apartment,64578817,Bryant,Manhattan,Harlem,40.8097,-73.94256,Entire home/apt,125,5,15,2017-09-04,0.38,1,0 +12063562,Cozy Room,5017724,R,Manhattan,Theater District,40.75827,-73.98825,Private room,200,5,4,2016-10-17,0.10,1,365 +12064283,Luxury Penthouse w/ Roofdecks,64632152,Albert,Manhattan,East Village,40.72399,-73.99109,Entire home/apt,1000,4,19,2019-05-17,0.51,1,349 +12064423,Beautiful private room in Bedstuy,13406868,Andrew,Brooklyn,Bedford-Stuyvesant,40.68464,-73.95002,Private room,45,4,1,2016-05-15,0.03,1,0 +12067652,Charming 1 Bedroom in Chelsea!,3555480,Melissa,Manhattan,Chelsea,40.74507,-73.99452,Entire home/apt,175,7,6,2017-09-09,0.16,1,0 +12069335,Luxury room in 2 bedroom apartment,20161989,Zhenni,Brooklyn,Midwood,40.62462,-73.95508,Private room,89,2,5,2017-10-23,0.13,1,365 +12070965,Downtown style in the Bronx,64678583,Mark,Bronx,Mott Haven,40.8098,-73.92149,Private room,500,10,0,,,1,358 +12070985,"Spacious, Sunny, Happy Studio",41280277,Anna,Manhattan,Washington Heights,40.85496,-73.93406,Entire home/apt,84,2,0,,,1,0 +12071038,"UES area ,Luxury modern quiet private Apt",64676041,Mey,Manhattan,East Harlem,40.78784,-73.94998,Entire home/apt,149,5,88,2019-06-24,2.23,1,326 +12071153,Comfy Bed Stuy 1br with Balcony,2596681,Christine,Brooklyn,Bedford-Stuyvesant,40.69764,-73.94929,Entire home/apt,110,3,10,2018-07-05,0.26,1,0 +12071454,TRENDY Brooklyn room,48764969,Alina,Brooklyn,Bushwick,40.6826,-73.90411,Private room,40,6,28,2019-04-14,0.70,2,298 +12072069,Cute & Cozy Cobble Hill Apt,37820765,Carla,Brooklyn,Columbia St,40.68685,-74.00112,Entire home/apt,98,2,14,2017-05-02,0.36,1,0 +12078997,Spacious Studio Apartment,5749328,Beth,Manhattan,Upper West Side,40.7771,-73.97729,Entire home/apt,160,3,36,2019-06-23,0.93,1,318 +12079099,Cozy shared male room in center of Manhattan III\),39528519,Max,Manhattan,Lower East Side,40.71171,-73.98871,Shared room,32,14,0,,,28,341 +12079993,Luxury Full Central Park View Apart,35329442,Tanya,Manhattan,Upper West Side,40.80031,-73.95847,Entire home/apt,380,2,6,2016-12-11,0.16,1,0 +12081254,Sunny Private Brooklyn Bedroom w/ Backyard Access,31230100,Elissa,Brooklyn,Crown Heights,40.67298,-73.95561,Private room,35,7,1,2016-07-15,0.03,3,157 +12081327,Private bedroom for 2-4 night stay in Clinton Hill,2134560,Patrick,Brooklyn,Clinton Hill,40.69011,-73.96656,Private room,100,2,0,,,1,0 +12082624,NYC Midtown West 1 bedroom luxury apartment!,30283594,Kara,Manhattan,Midtown,40.76571,-73.98312,Entire home/apt,239,30,0,,,121,352 +12082737,Location Chambre,47954479,Erwan,Brooklyn,Bedford-Stuyvesant,40.69363,-73.95084,Private room,51,1,0,,,1,0 +12083016,Entire huge 2BR Apt in East Village - Aug. 14-27!!,7226962,John,Manhattan,East Village,40.72716,-73.98264,Entire home/apt,200,4,3,2016-08-26,0.08,1,0 +12083625,Plush Studio Apartment in Midtown West NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76626,-73.98342,Entire home/apt,129,30,0,,,121,133 +12083868,Sleek 1 BR apt. near major attractions in NYC!,30283594,Kara,Manhattan,Midtown,40.76536,-73.98199,Entire home/apt,239,30,0,,,121,351 +12084009,Cozy Upper East Side 1 Bedroom,64765550,Stefano,Manhattan,Upper East Side,40.77924,-73.94924,Entire home/apt,140,1,4,2016-07-01,0.10,1,0 +12084100,Lux 1 BR NYC Midtown West Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76642,-73.98326,Entire home/apt,239,30,0,,,121,364 +12084205,East Village 1B in 3B apt,51924404,Angela,Manhattan,East Village,40.72966,-73.98476,Private room,56,1,2,2016-06-01,0.05,1,0 +12085008,Sophisticated 1 bedroom apt. in Midtown West!,30283594,Kara,Manhattan,Midtown,40.76567,-73.98308,Entire home/apt,239,30,0,,,121,352 +12085680,Delightful 1BR close to upscale shopping in NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76666,-73.98306,Entire home/apt,239,30,1,2018-03-31,0.06,121,352 +12086180,Lux 1BR NYC apt. steps from Carnegie Hall!,30283594,Kara,Manhattan,Midtown,40.76511,-73.98345,Entire home/apt,239,30,0,,,121,352 +12086351,Peaceful Private Room In Warm Brooklyn Apt,4462547,Ryan,Brooklyn,Prospect Heights,40.67834,-73.96685,Private room,37,180,0,,,1,0 +12086985,"Private room in sunny, modern Bushwick apartment!",5095576,Isra,Brooklyn,Bushwick,40.70045,-73.91673,Private room,91,2,30,2018-06-25,0.86,1,0 +12087608,Luxury finished MIDTOWN 1 Bed Apt.,43483337,Alex,Manhattan,Hell's Kitchen,40.75547,-73.99501,Entire home/apt,170,5,0,,,1,0 +12087785,Clinton Hill Oversized One Bedroom,54378184,Eej,Brooklyn,Clinton Hill,40.69106,-73.96529,Entire home/apt,169,12,13,2019-06-24,0.34,3,365 +12088134,"Spacious, bright on Upper East Side",64791940,Charles,Manhattan,Upper East Side,40.77433,-73.94854,Private room,35,11,9,2018-03-31,0.24,1,0 +12088314,Huge and Sunny Mid Century 1BR,2875590,Gilad,Brooklyn,Crown Heights,40.67833,-73.9629,Entire home/apt,180,3,2,2017-04-15,0.05,1,0 +12088765,"Bright, Sunny Room in Clinton Hill",1712843,Anne,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95795,Private room,55,4,4,2016-10-28,0.11,1,0 +12089013,NYC MIDTOWN WEST LUXURY 1BR APT! CITY VIEWS!,30283594,Kara,Manhattan,Midtown,40.76545,-73.98156,Entire home/apt,239,30,1,2019-02-28,0.23,121,351 +12089237,1 Bedroom Apt in the heart of NYC by Central Park,30283594,Kara,Manhattan,Hell's Kitchen,40.76678,-73.98336,Entire home/apt,239,30,0,,,121,352 +12089661,Luxury bldg Near Flatiron- Chelsea,438593,SaeHo,Manhattan,Chelsea,40.74491,-73.99536,Private room,175,1,1,2016-04-08,0.03,2,0 +12089692,Ground Floor Apartment in Brooklyn!,268961,Erica & Tayo,Brooklyn,Bedford-Stuyvesant,40.6805,-73.94612,Entire home/apt,67,3,88,2019-01-31,2.22,1,0 +12089889,-Modern Living in the Heart of NYC - 1 BR apt.,30283594,Kara,Manhattan,Hell's Kitchen,40.7663,-73.98359,Entire home/apt,239,30,0,,,121,165 +12090887,Private bedroom 5 mins to ColumbiaU,18370504,Emily,Manhattan,Morningside Heights,40.8131,-73.96074,Private room,65,2,5,2016-08-29,0.13,1,0 +12091679,Upper West Side Split Layout 1 BR,61391963,Corporate Housing,Manhattan,Upper West Side,40.78342,-73.97312,Entire home/apt,125,30,9,2019-01-05,0.25,91,127 +12092403,Holiday in 2br2ba Williamsburg Apt!,1909320,Peter,Brooklyn,Williamsburg,40.71697,-73.96204,Entire home/apt,200,1,16,2019-06-27,0.41,3,239 +12092786,Large 1 Bdrm Apartment in Midwood,34758340,Jonathan,Brooklyn,Sheepshead Bay,40.60655,-73.952,Entire home/apt,81,5,9,2019-01-04,0.24,1,1 +12093078,Charming Times Square garden floor apt (sleeps 5),64825610,Michel And Antoine,Manhattan,Hell's Kitchen,40.76156,-73.99127,Entire home/apt,325,3,99,2019-06-19,2.56,2,246 +12093494,Midtown Sleep 6 Central Convenience,62031986,Adam,Manhattan,Midtown,40.75237,-73.98769,Entire home/apt,333,1,246,2019-06-21,6.38,1,323 +12095161,"Sunny, clean, classic NYC apartment",19965375,Remy,Manhattan,Chinatown,40.7137,-73.99638,Private room,90,1,0,,,1,0 +12095501,Sunny Sanctuary,7403959,L.R.,Manhattan,Hell's Kitchen,40.75915,-73.99932,Entire home/apt,245,2,24,2019-06-02,0.61,1,48 +12095636,Sunny Artesian apartment,64846981,Maria,Brooklyn,Bushwick,40.69993,-73.92504,Private room,90,2,6,2017-05-08,0.15,1,358 +12096332,Amazing Views 3BR 2BA Bright and Spacious,64052858,Elizabeth Anne,Manhattan,Midtown,40.7442,-73.98748,Entire home/apt,999,2,54,2019-06-19,1.49,1,58 +12099852,Spacious 1 Bedroom with City Views,42905408,Carolyn,Queens,Astoria,40.76856,-73.92591,Entire home/apt,165,1,0,,,1,0 +12102526,HIGH END 2 bed 2ba W&D in Unit!5113,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79565,-73.96584,Entire home/apt,400,30,1,2016-12-05,0.03,96,311 +12105132,DSGN by Starck!GYM BasketBall Court!5182,16098958,Jeremy & Laura,Manhattan,Financial District,40.705,-74.00682,Entire home/apt,160,30,2,2018-10-08,0.07,96,336 +12106132,Bed-Stuy Brownstone Studio,38967549,John,Brooklyn,Bedford-Stuyvesant,40.68592,-73.9398,Entire home/apt,75,3,3,2016-11-27,0.08,1,0 +12106348,Best Place in the Center of NYC!,64916208,Tim,Manhattan,Chelsea,40.73974,-74.00069,Entire home/apt,206,1,55,2019-01-01,1.41,1,0 +12106946,Room in sunny art-filled Harlem apt,5075103,Shawn,Manhattan,Harlem,40.82119,-73.95556,Private room,70,1,16,2016-10-16,0.40,2,0 +12107055,Sunny 1 bedroom in Williamsburg,64921358,Kendra,Brooklyn,Williamsburg,40.7139,-73.95615,Private room,65,1,1,2016-03-30,0.03,1,0 +12108264,"Cool Brooklyn, Close to Manhattan",64930464,Maya,Brooklyn,Bedford-Stuyvesant,40.68823,-73.93367,Entire home/apt,126,2,181,2019-06-23,4.73,1,182 +12108512,"nice backyard, cool roommates",64932133,Kenny,Brooklyn,Crown Heights,40.67458,-73.94214,Private room,40,10,0,,,1,0 +12109347,Modern 1BR apt- prime Times Square location!!,30283594,Kara,Manhattan,Midtown,40.76506,-73.98236,Entire home/apt,239,30,0,,,121,352 +12109533,Sunny Charming Clinton Hill Apartment,3160780,Ben,Brooklyn,Bedford-Stuyvesant,40.68158,-73.95798,Entire home/apt,129,31,6,2019-05-31,0.15,1,0 +12110383,Tudor Studio (Wifi/Premium Cable) w Private Entry,54921733,Louise,Brooklyn,Flatbush,40.64319,-73.96729,Entire home/apt,92,1,5,2017-08-07,0.14,3,0 +12110663,Large Quiet Bedroom in South Harlem,64948443,Kim,Manhattan,Harlem,40.80726,-73.95178,Private room,82,5,106,2019-06-19,2.70,1,39 +12110990,Amazing 2 BR NYC apt. with up-to-date amenities!,30283594,Kara,Manhattan,Midtown,40.76657,-73.98201,Entire home/apt,369,30,1,2018-10-30,0.12,121,345 +12111387,Luxury 2BR-Apt. next to Central Park,30283594,Kara,Manhattan,Midtown,40.76537,-73.98298,Entire home/apt,369,30,0,,,121,345 +12113015,5th ave & Broadway nr Times Square,26802681,Feli,Manhattan,Midtown,40.74749,-73.98873,Entire home/apt,99,1,172,2019-06-14,4.33,1,213 +12113045,"Prime Williamsburg, Brooklyn",64967307,Dave,Brooklyn,Williamsburg,40.71334,-73.96056,Private room,78,1,0,,,1,0 +12113280,Brooklyn Summer Haven- Private Room!,64963967,Ruby,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92687,Private room,44,1,0,,,1,0 +12113494,Cute and Cozy 1br one block from Central Park,3554055,Jemme,Manhattan,Upper East Side,40.7672,-73.9695,Entire home/apt,160,3,0,,,1,0 +12113879,"Sunny, Large West Village 1 BR Near Everything",5300585,,Manhattan,Chelsea,40.73949,-73.99801,Entire home/apt,220,4,81,2019-07-02,2.11,1,217 +12114017,SoBro Guest House,64976141,Fran & Jason,Bronx,Mott Haven,40.80903,-73.92143,Entire home/apt,125,3,142,2019-06-25,3.59,1,185 +12114040,Studio Apt. near Empire State Bldg 4B,17770287,Nina,Manhattan,Midtown,40.74939,-73.98292,Entire home/apt,99,30,9,2019-04-21,0.24,14,227 +12114228,Charming UES Studio,47864677,Alicia,Manhattan,Upper East Side,40.77117,-73.95851,Entire home/apt,75,7,13,2017-08-20,0.34,1,0 +12114628,"Spacious, Family-Friendly, UWS Duplex w/ Huge Yard",17845933,Amos Rothschild,Manhattan,Upper West Side,40.7889,-73.9729,Entire home/apt,300,5,3,2018-12-31,0.08,1,9 +12114756,Studio + private outdoor Patio UWS,64674589,Pooran,Manhattan,Upper West Side,40.78216,-73.9835,Entire home/apt,140,1,8,2019-03-10,0.20,1,7 +12115597,Convenient Apt w/ private bathroom!,53282710,Weiyi,Manhattan,Upper West Side,40.79546,-73.96452,Private room,98,3,2,2016-08-06,0.05,1,0 +12122102,Huge Bedroom in Upper Manhattan - Near A&1 Subway!,12859795,Jeff,Manhattan,Inwood,40.86399,-73.92321,Private room,99,3,150,2019-06-30,3.85,1,320 +12125287,DSGN By Starck/ Washer & Dryer Basket Ball!5149,16098958,Jeremy & Laura,Manhattan,Financial District,40.7035,-74.00713,Entire home/apt,178,30,2,2016-12-31,0.06,96,332 +12129245,"Cozy, Private Room in Astoria!",43740859,Katie,Queens,Astoria,40.76703,-73.9166,Private room,59,1,0,,,1,0 +12129960,LuXe*Chef'sKitchen*forestGarden*patio.Marble.ART,4128829,Sara,Brooklyn,Bushwick,40.69055,-73.92071,Entire home/apt,75,1,48,2019-01-03,1.22,2,36 +12130236,Cozy studio steps to the beach,65096495,Eric,Queens,Belle Harbor,40.57941,-73.84844,Private room,225,1,35,2019-06-30,0.92,1,364 +12130620,RENOVATED APT NEXT TO EXPRESS TRAIN,11338827,Caty,Manhattan,Harlem,40.826,-73.94314,Private room,60,2,5,2016-08-31,0.13,1,0 +12131147,Modern loft,3206521,Dee,Manhattan,West Village,40.73552,-74.00615,Entire home/apt,268,1,3,2016-07-23,0.08,2,0 +12132022,Family Friendly 2.5 Bedroom,34736562,Helena,Brooklyn,Carroll Gardens,40.68124,-73.99601,Entire home/apt,300,7,0,,,1,0 +12132427,Spacious 1 BR in East Village!,10584659,Mike,Manhattan,Gramercy,40.73375,-73.98704,Entire home/apt,177,3,12,2016-07-21,0.30,1,0 +12132772,Iris: STG GoYankees!,13750728,Gayle,Bronx,Longwood,40.81928,-73.90933,Private room,60,2,47,2019-05-10,1.22,4,249 +12133132,Perfect Location in New York City,49045679,Vanessa,Manhattan,Lower East Side,40.71251,-73.9889,Private room,60,3,8,2016-08-08,0.21,1,0 +12133746,Warm & Cozy Sunflower Room:STG,13750728,Gayle,Bronx,Longwood,40.81725,-73.90929,Private room,55,2,31,2019-03-18,0.81,4,280 +12134113,Jasmine: Lovely Secret Tea Garden!,13750728,Gayle,Bronx,Longwood,40.81911,-73.90939,Private room,60,2,77,2019-06-12,1.96,4,171 +12135851,Cozy 1 bd apt In the heart of Crown Heights,2613671,Lonnie,Brooklyn,Crown Heights,40.67593,-73.94291,Entire home/apt,135,1,38,2019-07-01,2.49,1,359 +12135856,Master Bedroom w/ King Bed,15025923,Stephen,Brooklyn,Fort Hamilton,40.61645,-74.03108,Private room,43,23,0,,,1,0 +12136198,5th ave/Broadway near Empire State,65143341,Noel,Manhattan,Midtown,40.74771,-73.98727,Entire home/apt,139,1,186,2019-06-24,4.68,1,230 +12145189,Central Park studio at great price!,2961779,Carmen,Manhattan,Hell's Kitchen,40.76735,-73.98578,Entire home/apt,100,2,6,2017-01-01,0.16,1,0 +12145578,Spacious Parkside Abode,2589215,Caroline,Brooklyn,Flatbush,40.65206,-73.96149,Private room,100,4,5,2018-11-09,0.14,1,7 +12145875,"Private, cozy room, 20 min to Manhattan",22117154,Dorota,Queens,Ridgewood,40.70009,-73.90505,Private room,40,1,48,2019-07-07,1.24,1,1 +12145887,Room in sunny art-filled apartment,5075103,Shawn,Manhattan,Harlem,40.82127,-73.95669,Private room,55,1,1,2016-08-22,0.03,2,0 +12147723,Luxury Wall St. Apartment Building,5120853,Mackenzie,Manhattan,Financial District,40.70433,-74.00782,Entire home/apt,175,2,2,2016-07-08,0.05,1,0 +12148081,"Sexy, Cozy, Work, Play Loft for 4",23913300,Kelly,Brooklyn,Williamsburg,40.71265,-73.96574,Entire home/apt,300,2,33,2019-06-25,0.86,2,76 +12148215,Luxury April Sublet in Manhattan NY,53930780,Thomas,Manhattan,Harlem,40.80422,-73.95495,Private room,45,1,1,2016-04-06,0.03,1,0 +12151638,Spacious 2 bedroom Garden apartment,9558116,Ruma,Brooklyn,Clinton Hill,40.68099,-73.96343,Entire home/apt,144,2,49,2019-07-03,1.28,1,69 +12153428,Comfy KING bed in modern NYC apt,65258815,Mrs. Alabi,Brooklyn,Crown Heights,40.67409,-73.92607,Private room,60,2,129,2019-06-26,3.32,2,39 +12153709,Private room in a high floor apt,167796,Kamini,Manhattan,East Harlem,40.80237,-73.9437,Private room,250,1,0,,,1,365 +12154621,Beautiful Room in Crown Heights,3604124,William,Brooklyn,Crown Heights,40.67564,-73.95449,Private room,45,4,4,2017-12-17,0.18,1,0 +12155351,"Cute Apt, heart of east Village!",34507633,Paul,Manhattan,East Village,40.72772,-73.97978,Private room,80,1,1,2016-05-26,0.03,1,0 +12155460,Modern 2BR in the UES (94th and 2nd) 30 DAYS MIN,23772724,Elem,Manhattan,Upper West Side,40.79226,-73.97299,Entire home/apt,136,30,0,,,15,317 +12156078,Stylish East Village Studio + Outdoor Space!,18261318,Daniel,Manhattan,East Village,40.72592,-73.99026,Entire home/apt,149,2,16,2018-05-06,0.43,1,0 +12166897,Life Is Beautiful near Central Park,4350664,Denia,Manhattan,East Harlem,40.79636,-73.94342,Private room,89,5,62,2019-07-02,1.82,1,271 +12166912,Sunny Prime Heart of East Village Room,50200840,Katherine,Manhattan,East Village,40.72827,-73.9863,Private room,110,3,36,2019-07-01,0.91,1,292 +12167152,"Chelsea ,Duplex ,Calm ,Fantastic",51434373,Yael,Manhattan,Chelsea,40.73971,-73.99829,Private room,179,3,69,2019-06-19,1.80,1,104 +12167819,Adr Grand Charming Luxurious Premier!,65359432,Ren,Queens,Astoria,40.76452,-73.92804,Shared room,500,2,15,2017-02-16,0.39,2,365 +12167857,Sunny & quiet family apartment in BK,6520757,Jeen,Brooklyn,Bedford-Stuyvesant,40.69574,-73.9515,Entire home/apt,150,4,11,2019-06-11,0.29,1,0 +12168087,Gorgeous 2 Bedroom APT!,65361160,Peter,Queens,Ridgewood,40.70719,-73.91414,Entire home/apt,175,6,29,2019-07-05,0.83,1,55 +12168212,`A BEAUTY IN BK,7039396,Sol And Coach,Brooklyn,Cypress Hills,40.68202,-73.88943,Entire home/apt,79,1,130,2019-06-26,3.48,2,258 +12169531,3 bedrooms with amazing view of the Big Apple,11218119,James,Brooklyn,Clinton Hill,40.69315,-73.96412,Entire home/apt,117,3,1,2016-04-04,0.03,1,0 +12170307,Williamsburg Vintage Chic w/Garden,64652921,Irit,Brooklyn,Williamsburg,40.71707,-73.95859,Entire home/apt,91,5,0,,,1,0 +12170991,cheap and safe place in Manhattan,57070933,Yiin,Manhattan,Upper West Side,40.79902,-73.96043,Private room,65,2,3,2016-06-16,0.08,2,0 +12171619,The Manhattan Club - NYC Marathon Weekend,56098700,Jim,Manhattan,Midtown,40.76593,-73.9812,Entire home/apt,500,3,0,,,1,0 +12171671,Interfaith Retreat Guest Rooms (Govinda),16677326,Alex And Zeena,Manhattan,Chelsea,40.74971,-73.99533,Private room,85,1,210,2019-06-23,5.34,12,321 +12172457,Park Avenue 2 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74545,-73.98113,Entire home/apt,150,29,1,2018-11-30,0.14,31,143 +12173205,Private Room in Gorgeous Loft! (no cleaning fee),59928816,Elizabeth,Queens,Ridgewood,40.70724,-73.91228,Private room,80,2,177,2019-07-05,4.48,2,245 +12173904,Cozy apartment on upper west side,65402364,Aleksandra,Manhattan,Upper West Side,40.78942,-73.96768,Entire home/apt,200,5,0,,,1,0 +12174580,Spacious Duplex in Brooklyn,22887864,Simone,Brooklyn,Bedford-Stuyvesant,40.67989,-73.91817,Entire home/apt,325,2,76,2019-06-24,1.93,1,160 +12174966,Big Room@ UES clean comfy Apt,28895303,Harry,Manhattan,Upper East Side,40.7674,-73.95559,Private room,95,1,10,2016-06-09,0.25,1,0 +12175508,Quaint room in East Village walk-up,65415391,Katherine,Manhattan,East Village,40.73185,-73.98431,Private room,100,1,0,,,1,0 +12177276,Work In Progress,12446229,Peter,Manhattan,Upper West Side,40.78864,-73.97452,Shared room,85,2,47,2019-07-01,1.20,1,76 +12181485,"Sunny, beautiful Brooklyn studio",794042,Rhea,Brooklyn,Clinton Hill,40.68459,-73.96499,Entire home/apt,115,5,8,2016-08-16,0.21,1,0 +12181549,Charming Two Bridges Hideout,808189,Ashley,Manhattan,Two Bridges,40.71279,-73.99445,Entire home/apt,111,1,41,2019-06-23,1.17,1,4 +12184165,Private Bedroom on Upper West Side,65476654,Geri,Manhattan,Upper West Side,40.7823,-73.98081,Private room,84,1,27,2018-12-09,0.69,1,0 +12184956,Private Room in Greenpoint Brooklyn,36959636,Panagiotis,Brooklyn,Greenpoint,40.72099,-73.94566,Private room,75,3,0,,,1,0 +12185578,Beautiful bright clean room | long term,19552418,Neil,Manhattan,Harlem,40.80807,-73.94868,Private room,95,12,4,2017-12-07,0.10,1,0 +12186043,Clean and Cozy Crown Heights Studio,264111,Albert,Brooklyn,Crown Heights,40.66714,-73.95819,Entire home/apt,110,2,6,2018-06-24,0.15,1,0 +12186697,"Spacious, sunny room in Greenpoint",14208923,Sasha,Brooklyn,Greenpoint,40.72599,-73.94434,Private room,50,4,1,2016-04-30,0.03,1,0 +12187800,"Spacious, sunlit room",6555513,Preeti,Brooklyn,Brooklyn Heights,40.69619,-73.99296,Private room,115,1,0,,,2,0 +12188651,Spacious home in heart of NYC,6997786,Mara,Manhattan,Chelsea,40.74369,-73.99571,Entire home/apt,225,2,5,2016-10-09,0.14,1,0 +12188721,"Cozy room in bushwick, Brooklyn",517866,Jose,Brooklyn,Bushwick,40.69021,-73.91019,Private room,80,3,0,,,1,83 +12189652,"Cozy, boho room in heart of Bedstuy",14131713,Liz,Brooklyn,Bedford-Stuyvesant,40.6848,-73.93471,Private room,110,1,2,2016-05-12,0.05,2,342 +12190495,"1 BD in stylish renovated 2BDs, Clinton Hill",66127,Aurélien,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95604,Private room,49,7,13,2019-05-21,0.36,1,0 +12190880,Upper West Side One Bedroom on Central Park,65527002,(Email hidden by Airbnb),Manhattan,Upper West Side,40.7961,-73.963,Private room,90,1,60,2019-07-06,2.91,1,188 +12191010,Chic Spacious Beachfront House,65482154,Antoinette,Queens,Arverne,40.58734,-73.79971,Entire home/apt,299,3,4,2019-05-27,0.31,1,318 +12191116,cheap & safe next to Central PK,57070933,Yiin,Manhattan,Upper West Side,40.79981,-73.96097,Private room,60,1,5,2016-07-12,0.14,2,0 +12191735,DSGN by Starck! GYM W&D Basket Ball Court !5183,16098958,Jeremy & Laura,Manhattan,Financial District,40.70538,-74.00664,Entire home/apt,175,30,3,2017-01-13,0.08,96,311 +12192216,Artsy Spot in Spanish Harlem,3104581,Andrea,Manhattan,East Harlem,40.79073,-73.94669,Entire home/apt,115,2,18,2019-07-06,0.48,1,3 +12196647,"Amazing, large private room",5744488,Lindsay,Brooklyn,Bedford-Stuyvesant,40.69438,-73.94726,Private room,45,4,0,,,1,0 +12202225,"Bed Stuy beauty. Books, sunlight :)",59979344,Greg,Brooklyn,Bedford-Stuyvesant,40.69188,-73.94742,Private room,57,1,0,,,1,0 +12202511,Cozy & Charming Chinatown/LES Spot!,9314442,Adam + Yulu,Manhattan,Chinatown,40.71532,-73.99343,Entire home/apt,120,3,2,2016-10-04,0.05,1,0 +12204161,"Spacious, sunny apt in BK Heights",6555513,Preeti,Brooklyn,Brooklyn Heights,40.69453,-73.99423,Entire home/apt,409,1,1,2016-06-30,0.03,2,0 +12205049,2Story4Bedroom 2Full Bath New York Palace,65625445,Tony,Queens,Rosedale,40.67112,-73.73529,Entire home/apt,350,40,15,2017-07-05,0.39,1,365 +12205604,Caribbean Room - Inn Your Element,19866189,Natasha,Queens,Arverne,40.58859,-73.7938,Private room,95,1,31,2018-05-13,0.79,5,361 +12206029,"Private BR, Bed-Stuy w/backyard",5897784,Nicholas,Brooklyn,Bedford-Stuyvesant,40.68022,-73.92673,Private room,49,1,1,2016-05-13,0.03,1,0 +12206323,Cozy Apartment in Upper East Side,65639106,Brigid,Manhattan,East Harlem,40.78821,-73.94927,Entire home/apt,155,1,2,2016-07-05,0.05,1,0 +12209944,"Comfy Brooklyn apt, near train and Manhattan",65667120,Brandee,Brooklyn,Bedford-Stuyvesant,40.68264,-73.94238,Entire home/apt,265,4,123,2019-06-30,3.25,1,285 +12210323,HUGE DUPLEX apartment with BACKYARD,65670239,Kelly,Brooklyn,East Flatbush,40.64062,-73.94733,Entire home/apt,215,2,44,2019-07-04,1.28,1,279 +12210448,2 Bed Private Room + Private Bath in Lovely Loft!,59928816,Elizabeth,Queens,Ridgewood,40.70707,-73.91384,Private room,120,2,162,2019-06-27,4.12,2,268 +12210730,Zen room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.68979,-73.94299,Private room,54,2,1,2016-04-17,0.03,3,319 +12211018,Buck room at Casa de la Luna,12798614,Jessica,Brooklyn,Bedford-Stuyvesant,40.6886,-73.94153,Private room,79,2,0,,,3,319 +12212943,Upper East Side Brand New Apt,65690091,Mohine,Manhattan,Upper East Side,40.78173,-73.94621,Private room,185,1,0,,,1,0 +12220661,Cute and comfy 1bedroom apartment,65217454,Carla,Manhattan,Washington Heights,40.85264,-73.92976,Entire home/apt,60,5,16,2019-05-25,0.41,1,4 +12221970,Ziggy Stardust Surf House - A Beautiful Houseboat,9040879,Ben,Queens,Arverne,40.59491,-73.78851,Entire home/apt,750,1,14,2019-06-08,0.36,2,352 +12222304,Upper East Side Rooftop Escape,23821373,Kaitlyn,Manhattan,Upper East Side,40.76676,-73.95753,Entire home/apt,160,1,0,,,1,0 +12223159,Bright Modern Greenwich Village 1BR,9545279,Mitchell,Manhattan,Greenwich Village,40.72837,-73.99952,Entire home/apt,210,1,58,2019-07-06,1.49,1,2 +12223531,Spacious and sun-drenched bedroom,2018172,Mimi,Brooklyn,Williamsburg,40.70751,-73.95441,Private room,80,1,2,2016-08-17,0.05,1,0 +12223866,Melissa And Ray's Oasis,11157618,Ray,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95969,Entire home/apt,85,5,93,2019-06-10,2.38,1,0 +12224443,La Maison She She (Brownstone Private Apt.),65760387,Shelia,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92142,Entire home/apt,99,2,43,2017-11-01,1.16,1,0 +12225502,700 Squ.Ft Studio / Loft,65757870,M.,Manhattan,East Village,40.72637,-73.97682,Entire home/apt,200,2,0,,,1,0 +12225838,Sunny bohemian room heart of williamsburg,62316080,Janelle,Brooklyn,Williamsburg,40.71394,-73.94995,Private room,84,1,181,2019-06-23,4.59,1,282 +12226927,"Quiet, cozy and family friendly",38969372,Miki,Brooklyn,Kensington,40.64528,-73.97621,Entire home/apt,105,4,7,2018-08-26,0.18,1,20 +12227008,South Williamsburg Private Room,65776450,Emily,Brooklyn,Williamsburg,40.70952,-73.95567,Private room,150,2,0,,,1,0 +12227645,The beach - it's just across the street,54129736,Donna,Queens,Rockaway Beach,40.58341,-73.8165,Private room,88,2,32,2017-09-04,0.84,1,0 +12228023,Big Bedroom in UES Apartment,65786525,Eric,Manhattan,Upper East Side,40.77631,-73.9556,Private room,65,1,0,,,1,0 +12228640,Bed Stuy Home Away From Home,27953420,Qaim,Brooklyn,Bedford-Stuyvesant,40.68696,-73.95094,Entire home/apt,110,1,0,,,1,0 +12228859,NYC Full Studio Walkable to Central Park,5138621,Clare,Manhattan,Upper East Side,40.77619,-73.95106,Entire home/apt,140,2,1,2016-11-07,0.03,1,0 +12230361,Cozy private room in Brooklyn,65802264,Rick,Brooklyn,Crown Heights,40.66877,-73.93318,Private room,50,3,14,2016-09-30,0.35,1,0 +12230921,Bright and Beautiful Abode,5679552,Genevieve,Brooklyn,Williamsburg,40.7193,-73.95731,Entire home/apt,175,2,2,2016-04-23,0.05,1,0 +12230928,Villa DiGioia visit NYC via SI,65806798,Michael J,Staten Island,Tottenville,40.50708,-74.24285,Private room,100,2,0,,,1,365 +12230978,cozy private rm in sunny Bklyn apt,30529247,Amy,Brooklyn,Fort Greene,40.69706,-73.97422,Private room,50,4,15,2019-06-24,0.38,1,0 +12231254,Flushing Master Room w/ Private bathroom,65809485,Shirley,Queens,Flushing,40.74979,-73.82911,Private room,60,5,66,2019-05-19,1.69,12,141 +12231304,Private Room in Luxury Bushwick Apt,18287406,Claudio,Brooklyn,Bushwick,40.70307,-73.91765,Private room,51,3,0,,,1,0 +12231331,Bright Brooklyn Room,27379452,Kevin,Brooklyn,Williamsburg,40.70611,-73.93966,Private room,55,5,0,,,1,0 +12231443,Private bedroom in Brooklyn,44376809,Chelsea,Brooklyn,Bushwick,40.70265,-73.91701,Private room,85,1,0,,,1,0 +12233692,Modern Room in a Duplex Loft,65598016,Ivana And Tami,Brooklyn,Crown Heights,40.66946,-73.95306,Private room,60,2,136,2019-06-23,3.45,1,346 +12234139,1 Bedroom Outside Columbus Circle,13089400,Mckenzie,Manhattan,Upper West Side,40.77116,-73.98796,Entire home/apt,143,2,32,2019-04-22,0.81,1,0 +12234835,UNBEATABLE LOCATION - SUPREME APARTMENT,65832104,Sam,Manhattan,Lower East Side,40.71877,-73.98913,Entire home/apt,85,5,4,2019-06-15,0.11,1,282 +12236124,Large apartment mins away from Manhattan.,24637162,Angelica,Queens,Sunnyside,40.74594,-73.91727,Entire home/apt,110,2,24,2019-06-27,1.52,1,128 +12242301,First rate 2 bed/2 bath apt. in Midtown West!,30283594,Kara,Manhattan,Midtown,40.76686,-73.98198,Entire home/apt,449,30,0,,,121,345 +12242672,Comfortable Hamilton Heights Apt,18362341,Michael,Manhattan,Harlem,40.83086,-73.94478,Private room,35,1,0,,,1,0 +12243378,Lux 2BR-Apt.- NYC near Madison Square Garden!,30283594,Kara,Manhattan,Midtown,40.76539,-73.98348,Entire home/apt,369,30,1,2017-06-02,0.04,121,345 +12243556,Clean and Modern Space in Upper West Side,2863689,Nabilah,Manhattan,Morningside Heights,40.80514,-73.96349,Private room,70,8,0,,,1,0 +12243947,"Nice & clean 3 bedroom, great area! Free yoga !!",63289810,Loretta,Brooklyn,Gowanus,40.68081,-73.98945,Entire home/apt,295,2,70,2019-06-10,1.80,1,292 +12245906,One Bedroom On Upper West Side,65364483,Irina,Manhattan,Upper West Side,40.7992,-73.96792,Entire home/apt,110,120,2,2016-08-27,0.05,2,34 +12247741,BEDROOM AVAILABLE IN UES,14906645,Michael,Manhattan,Upper East Side,40.77685,-73.95727,Private room,65,1,2,2016-05-01,0.05,1,0 +12249359,Cozy Apt in BEST LOCATION,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76322,-73.99005,Entire home/apt,109,30,8,2018-12-30,0.28,91,159 +12249461,Cosy room in Brooklyn! 2min to Sbwy,24291213,Joerg,Brooklyn,Sunset Park,40.63877,-74.01993,Private room,35,1,2,2016-04-08,0.05,2,0 +12250653,Small Cozy Room in Artsy Apartment,20043119,Anita,Brooklyn,Clinton Hill,40.6881,-73.96281,Private room,50,1,3,2017-05-17,0.10,1,0 +12251481,"Large Room in Apt w/ Library, Priv Entrance",17624300,Stephen,Brooklyn,Williamsburg,40.70244,-73.94421,Private room,44,1,8,2019-06-02,0.23,1,357 +12252035,SPACIOUS 2BR PRIME EAST VILLAGE APT,4534893,Alex,Manhattan,East Village,40.72705,-73.98787,Entire home/apt,275,2,70,2019-07-01,1.84,4,307 +12252205,PRIME EAST VILLAGE BEDROOM,4534893,Alex,Manhattan,East Village,40.72553,-73.98831,Private room,110,2,46,2019-06-08,1.17,4,307 +12252513,Cool Williamsburg Loft,9280078,Frederikke,Brooklyn,Williamsburg,40.70845,-73.96742,Entire home/apt,120,1,1,2016-05-08,0.03,1,0 +12252583,Cozy Bedroom In Prime Location,49121324,Zhaoyan,Brooklyn,Clinton Hill,40.68645,-73.96691,Private room,50,7,4,2016-07-20,0.11,1,0 +12252993,Cozy & Chic Studio Apartment,65968828,Tracey,Brooklyn,Crown Heights,40.6733,-73.91235,Entire home/apt,87,3,87,2019-06-23,2.25,1,260 +12253338,Hudson River view Washington Height,51547958,Melissa,Manhattan,Washington Heights,40.83498,-73.94801,Private room,78,1,0,,,1,0 +12253809,Beautiful View of Hudson and City,12608878,Doug,Manhattan,Washington Heights,40.8528,-73.94114,Private room,49,2,0,,,1,0 +12254118,Master Bedroom with Balcony in Soho,65979198,Marc,Manhattan,Nolita,40.72232,-73.99433,Private room,109,7,3,2017-01-03,0.09,1,0 +12254147,Spacious Room in 3 bedroom Duplex Apartment,43380926,Zineb,Manhattan,East Harlem,40.78771,-73.94197,Private room,65,1,1,2016-07-22,0.03,1,0 +12265378,"Unique, spacious & bright room in Manhattan!",22087408,Dominik,Manhattan,Lower East Side,40.71909,-73.98473,Private room,150,1,41,2019-06-23,1.07,3,274 +12266323,"The Heart Of NYC, 3min Walk To Grand Central",5004109,Michelle,Manhattan,Murray Hill,40.75001,-73.97739,Entire home/apt,225,1,45,2019-06-30,1.16,1,255 +12267015,UWS BEAUTIFUL 1 Bedroom Available,12759735,Natalie,Manhattan,Upper West Side,40.784,-73.97148,Entire home/apt,100,1,1,2016-04-24,0.03,1,0 +12267599,Bright Harlem Apt. in New Building!,12879538,Gregory,Manhattan,Harlem,40.82033,-73.94358,Entire home/apt,125,1,103,2019-07-02,2.67,2,339 +12267734,Studio/Heart of the East Village,4899404,Jessica,Manhattan,East Village,40.72838,-73.98539,Entire home/apt,115,4,46,2019-06-15,1.19,1,0 +12268056,"BRIGHT, MODERN, PRIVATE BEDROOM BK",7119612,Becky,Brooklyn,Bushwick,40.69897,-73.92705,Private room,62,1,1,2016-04-20,0.03,1,0 +12269953,Queen bed w/ attached bathroom,66089191,Jordan,Brooklyn,Bushwick,40.69177,-73.92509,Private room,50,7,2,2017-05-31,0.06,1,0 +12271309,Bright E. Village Home on Serene Street! #DGM,2079709,Doni,Manhattan,East Village,40.72795,-73.98567,Entire home/apt,200,2,39,2019-03-31,1.15,1,0 +12272376,The James Franco! Beautiful Floating Surf Safari!,9040879,Ben,Queens,Arverne,40.59413,-73.78991,Entire home/apt,225,1,6,2019-06-23,0.56,2,352 +12272850,Stunning 2 BEDROOM Luxury Finishes & Washer Dryer,61391963,Corporate Housing,Manhattan,Kips Bay,40.74205,-73.97828,Entire home/apt,159,30,5,2019-06-01,0.18,91,281 +12273048,"Central Location, Time Square, 24 hour doorman",49580011,Amy,Manhattan,Theater District,40.76237,-73.98285,Entire home/apt,150,28,4,2019-03-09,0.11,1,331 +12273688,Sunny Private Rm in Bushwick,44468180,Kristen,Brooklyn,Bushwick,40.69414,-73.92877,Private room,29,2,4,2017-07-02,0.11,1,0 +12274576,"3 BR, Bklyn, Long/Short Term",2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.68091,-73.94392,Entire home/apt,150,1,0,,,3,359 +12274662,Cozy Bushwick-1br w private bath,5606004,Feather,Brooklyn,Bushwick,40.70062,-73.92785,Private room,80,2,9,2018-05-30,0.23,1,0 +12274909,Beautiful spacious bedroom BayRidge FEMALES only,60756664,Carol,Brooklyn,Bay Ridge,40.63456,-74.02483,Private room,35,1,33,2019-06-12,0.84,1,337 +12274916,Gorgeous 1 BR on Upper East Side,4285208,Brian,Manhattan,Upper East Side,40.77346,-73.9559,Entire home/apt,250,7,8,2018-09-20,0.22,1,294 +12281070,A simple place to make your space,66173032,Andrew,Manhattan,Upper East Side,40.77441,-73.95815,Entire home/apt,160,1,0,,,1,0 +12282434,Calm and Cosy Apt Nolita LES,2672883,Natalie,Manhattan,Lower East Side,40.72231,-73.99069,Entire home/apt,175,30,12,2016-12-11,0.32,1,0 +12282543,"Top floor skyline view, Bright in Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70528,-73.92938,Entire home/apt,150,2,11,2019-05-06,0.28,7,330 +12282916,Architects cozy home in Astoria,66182162,Alexandra,Queens,Long Island City,40.75888,-73.9312,Entire home/apt,165,2,3,2016-10-23,0.08,1,0 +12283602,"Greenpoint Haven, 12min walk from 7",12603183,Paulina,Brooklyn,Greenpoint,40.73675,-73.95382,Entire home/apt,150,3,0,,,1,0 +12283732,"Spacious, Trendy, Convenient! Stay in Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70454,-73.9299,Entire home/apt,159,2,13,2019-04-28,0.34,7,317 +12284280,"Legal full floor by Sunset Park, 20mins to Soho",4964784,Jon,Brooklyn,Sunset Park,40.65031,-74.00176,Entire home/apt,140,2,108,2019-07-07,2.89,1,278 +12285861,Amazing 2 Bd Loft -PRIME Williamsbu,8182126,Maggie,Brooklyn,Williamsburg,40.71791,-73.94646,Entire home/apt,159,3,2,2016-05-01,0.05,2,0 +12286191,Charming Exposed Brick Apartment in Manhattan,40288829,Savion,Manhattan,Washington Heights,40.83294,-73.94167,Private room,77,7,17,2019-05-26,0.46,1,311 +12286939,Cute little room in S Williamsburg!,24918898,Javier,Brooklyn,Williamsburg,40.70755,-73.95117,Private room,49,3,3,2016-05-30,0.08,2,0 +12287479,Private bedroom facing street.,66215731,Eric,Brooklyn,Gowanus,40.67692,-73.98339,Private room,55,1,56,2019-06-18,1.46,2,281 +12287516,Flat on President - Private Room,66215731,Eric,Brooklyn,Park Slope,40.67719,-73.98142,Private room,50,1,113,2019-06-16,2.87,2,352 +12287838,3.5 - 4.5* Bedrms Apt in NYC + Private Backyard,26405086,Bill & May,Manhattan,Washington Heights,40.83471,-73.94288,Entire home/apt,359,1,96,2019-06-28,2.48,4,309 +12287938,Cozy Lofted Room in Homey 3BR,66191982,Barrie,Brooklyn,Bedford-Stuyvesant,40.69445,-73.94459,Private room,50,3,3,2016-05-08,0.08,1,0 +12290567,Clean studio apartment for sleeping,66240027,Bianca,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95999,Entire home/apt,40,1,2,2016-04-28,0.05,1,0 +12292226,Luxury 1BR Midtown East-Near the UN,26521212,Laura,Manhattan,Midtown,40.75314,-73.97367,Entire home/apt,219,2,5,2019-01-01,0.13,3,0 +12292255,New & Bright Garden Apartment,5468528,Christine,Brooklyn,South Slope,40.6679,-73.98703,Entire home/apt,189,4,68,2019-06-15,1.73,1,83 +12292409,Charming Quiet & Bright Studio -LES,23638897,Adrien,Manhattan,Lower East Side,40.71849,-73.98334,Entire home/apt,140,5,2,2018-01-01,0.05,1,0 +12293900,Comfortable modern 2 bed apartment. Backyard!,11206175,Kris,Queens,Maspeth,40.72163,-73.90612,Entire home/apt,96,30,17,2019-04-26,0.47,2,325 +12294008,Furnished Duplex with Garden,27742760,Josh,Brooklyn,Boerum Hill,40.68469,-73.98603,Entire home/apt,300,180,0,,,1,365 +12294124,Friendly and Inviting Unit,66269338,Peggy,Queens,Jackson Heights,40.74838,-73.88767,Private room,125,1,11,2019-05-26,0.28,4,301 +12296996,Bright apartment in Brooklyn,30826804,Salima & Carlos,Brooklyn,East Flatbush,40.6403,-73.94959,Private room,150,3,11,2019-05-20,0.28,1,364 +12299794,Hawai memories,66309874,Rich,Brooklyn,Cypress Hills,40.68615,-73.87646,Private room,60,3,32,2019-06-04,0.81,3,90 +12300734,W70's apt steps to central park and express lines,7195103,Swathi,Manhattan,Upper West Side,40.77992,-73.98046,Private room,99,4,51,2018-07-06,1.31,1,0 +12301028,NY historic brownstone,66309874,Rich,Brooklyn,Cypress Hills,40.68577,-73.8777,Private room,60,3,15,2019-06-29,0.41,3,90 +12301489,Modern Loft Studio with Views,18276764,Stephanie,Manhattan,Gramercy,40.7363,-73.98691,Entire home/apt,198,2,37,2017-06-27,0.98,1,0 +12302170,Midtown Manhattan Two Full Bedrooms - Private,66326553,Pierre,Manhattan,Hell's Kitchen,40.76149,-73.99159,Entire home/apt,350,6,124,2019-06-18,3.16,2,247 +12302429,*Lovely Apt In Heart Of Park Slope*,5973406,Andrew,Brooklyn,Park Slope,40.66977,-73.98042,Entire home/apt,85,14,4,2019-05-31,0.15,2,275 +12303877,ROOM in Great Location,51522009,Diego,Manhattan,Hell's Kitchen,40.76446,-73.99175,Private room,80,3,0,,,1,0 +12304523,Cozy Boho Williamsburg Studio,5741089,Shaye,Brooklyn,Williamsburg,40.71278,-73.949,Entire home/apt,80,2,6,2017-10-15,0.15,1,0 +12304938,Cozy Doorman! On Broadway!Gym 5111,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.7918,-73.97413,Entire home/apt,135,30,6,2019-05-15,0.16,96,311 +12307809,Discover Windsor Terrace! -- a treasure. 2 BR apt,26535250,Sheila,Brooklyn,Windsor Terrace,40.65722,-73.9793,Entire home/apt,61,1,91,2019-05-18,2.38,3,246 +12308695,Room in musicians loft/music venue,33049782,Dustin,Brooklyn,Bushwick,40.69084,-73.90314,Private room,45,3,3,2017-08-22,0.08,1,0 +12309399,Big Bright room in Bushwick,4206804,Jam,Brooklyn,Bushwick,40.70376,-73.92718,Private room,70,3,2,2018-03-22,0.06,1,249 +12309858,Convenient Room Near Subway and Central Park!,66383919,Fernando,Manhattan,Harlem,40.80513,-73.95445,Private room,60,1,40,2017-05-07,1.02,2,0 +12310495,Small New-York-Style Room by Central Park!,66383919,Fernando,Manhattan,Harlem,40.80713,-73.9542,Private room,75,2,46,2017-03-11,1.17,2,0 +12310556,Beautiful Greenpoint Apartment,13716703,David & Suzanne,Brooklyn,Greenpoint,40.73334,-73.95607,Entire home/apt,165,2,3,2018-11-05,0.08,1,0 +12311270,Sunny Greenpoint Designer's Pad!,473701,Cla,Brooklyn,Greenpoint,40.73708,-73.95454,Entire home/apt,112,10,11,2019-04-25,0.28,1,21 +12315833,A lovely home to lay your head down,64341665,Nka,Manhattan,Harlem,40.82039,-73.94147,Private room,69,1,38,2019-06-30,0.97,2,365 +12317276,Nice room near everything in NYC,66440767,Aric,Brooklyn,Sheepshead Bay,40.60016,-73.95393,Private room,39,3,22,2019-06-18,0.56,1,360 +12317903,Newly Renovated Studio Midtown East,1512462,Evan & Maria,Manhattan,Midtown,40.75489,-73.9666,Entire home/apt,239,4,132,2019-06-21,3.39,2,242 +12318497,Classic East Village 1 BR,40726506,Quintin,Manhattan,East Village,40.72591,-73.98,Entire home/apt,150,2,0,,,1,0 +12318604,Private room on the Upper East Side,10199873,Andjela,Manhattan,Upper East Side,40.77398,-73.94607,Private room,42,31,0,,,1,0 +12321473,Chic Greenwich Village One Bedroom,32924486,Alysha,Manhattan,Greenwich Village,40.73064,-73.99937,Entire home/apt,195,7,0,,,1,0 +12321626,East Village Loft Two Bedroom,38353649,Sean,Manhattan,East Village,40.72228,-73.98409,Entire home/apt,194,4,5,2016-12-29,0.13,1,0 +12322066,Room with Private Bathroom,8952737,Graham,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9535,Private room,75,2,1,2016-05-13,0.03,1,0 +12322150,Cute Carroll Gardens Apartment.,87988,Samantha,Brooklyn,Carroll Gardens,40.68233,-73.99373,Entire home/apt,130,2,0,,,2,16 +12322923,Bright and Charming in Chelsea,66484647,Serkan,Manhattan,Chelsea,40.74419,-73.99861,Entire home/apt,165,3,110,2019-06-09,2.87,1,222 +12322999,Furnished room close to subway/CU,21901103,Alankrit,Manhattan,Morningside Heights,40.80464,-73.96418,Private room,70,3,0,,,1,0 +12324203,Top location amazing cozy 1BR,6360636,Anna B,Manhattan,East Village,40.72387,-73.98939,Entire home/apt,200,2,3,2016-10-06,0.08,1,0 +12324428,Comfy Room in Large E Williamsburg Apartment,1702298,Sofia,Brooklyn,Williamsburg,40.71378,-73.93762,Private room,40,15,0,,,1,0 +12324757,⚜ Two-Floor Vibrant 2BR Sanctuary with Patio! ⚜,2861820,Natalie And Dan,Brooklyn,Williamsburg,40.71172,-73.9417,Entire home/apt,205,2,7,2019-06-01,0.18,1,4 +12325036,Large Backyard Facing Bedroom & Private Backyard,30848788,Jamie,Brooklyn,Bedford-Stuyvesant,40.69324,-73.94656,Private room,45,4,35,2019-06-14,0.91,2,89 +12325045,IDEAL One bedroom apt by Central Park!,66501870,K Alexandra,Manhattan,Midtown,40.76016,-73.9691,Entire home/apt,139,2,132,2019-06-30,3.66,1,154 +12325291,2F Live Like a Real NYer in Real 3Bd!,26405086,Bill & May,Manhattan,Washington Heights,40.83326,-73.94215,Entire home/apt,339,1,87,2019-06-30,2.28,4,318 +12326402,Comfy spacious apartment with wi-fi,66513544,Michele,Brooklyn,Brownsville,40.65775,-73.90486,Entire home/apt,49,14,3,2018-11-17,0.08,1,291 +12326470,Charming 1BR by Central Park,1304893,Tanya,Manhattan,Upper West Side,40.78495,-73.9731,Entire home/apt,190,4,1,2018-06-29,0.08,1,118 +12328112,GREENPOINT OASIS,1180190,Justin,Brooklyn,Greenpoint,40.731,-73.9548,Entire home/apt,450,365,17,2019-01-03,0.50,1,365 +12332789,"Brooklyn Private Bath&Bed Steps to F,G trains",14898658,Chadanut,Brooklyn,Kensington,40.64345,-73.98015,Private room,45,1,103,2019-03-11,2.68,11,0 +12333456,"Bright, Airy Wburg 1BR w/ Roof View of NYC Skyline",66566329,Jacqueline,Brooklyn,Williamsburg,40.71926,-73.94206,Entire home/apt,199,2,29,2019-05-26,0.74,1,174 +12333601,"Cozy room in Carroll Gardens, Brooklyn",9632055,Daniel,Brooklyn,Carroll Gardens,40.68378,-74.00046,Entire home/apt,55,2,0,,,1,0 +12335391,Sexy red room with the softest bed!,49746853,Ilya,Brooklyn,Bedford-Stuyvesant,40.68042,-73.91811,Private room,33,13,7,2018-07-24,0.20,1,297 +12336343,Waterfront Apt with Stunning View!!,15753023,Peter,Brooklyn,Williamsburg,40.71102,-73.9689,Entire home/apt,149,4,5,2016-11-27,0.14,1,0 +12336668,Convenient location + Rooftop Acces,4207560,Amanda,Brooklyn,Williamsburg,40.70928,-73.95286,Private room,80,1,54,2017-07-21,1.37,1,0 +12337005,Beautiful Fort Greene Loft,2774967,Gabriel,Brooklyn,Fort Greene,40.6921,-73.97279,Entire home/apt,120,3,25,2019-06-19,0.72,1,0 +12338559,In the heart of Williamsburg!,26414016,Guillermo,Brooklyn,Williamsburg,40.71806,-73.95775,Private room,73,1,4,2016-10-02,0.11,2,0 +12339863,Loft,10035055,Claudine,Manhattan,Tribeca,40.72138,-74.00767,Entire home/apt,2500,4,0,,,1,89 +12341856,SUNNY BEDROOM IN LARGE BK APT!,9123131,Sean,Brooklyn,Crown Heights,40.67068,-73.94084,Private room,44,3,32,2019-06-03,0.83,2,0 +12342004,Lovely West Harlem Apartment,6416695,Patrice,Manhattan,Washington Heights,40.83549,-73.94729,Entire home/apt,105,3,8,2017-07-05,0.21,1,0 +12342269,Newly Renovated Upper East Side Apartment,1892706,Madeleine,Manhattan,East Harlem,40.78993,-73.94718,Private room,70,1,0,,,1,0 +12342297,Private bedroom in high-ceiling 4BR apartment!,19953913,Alejandro,Manhattan,Hell's Kitchen,40.76116,-73.99016,Private room,120,2,17,2017-04-28,0.43,1,0 +12342441,"Sunny, Spacious, Parkside Room!",21340955,Shean,Brooklyn,Flatbush,40.65402,-73.96073,Private room,57,3,33,2019-05-31,0.85,3,345 +12342876,Cozy&Spacious in Beautiful Astoria,8389062,Eliza,Queens,Astoria,40.76202,-73.91467,Entire home/apt,120,1,1,2016-06-12,0.03,1,0 +12342979,Beautiful Room - Ideal for Business Travelers!,1462483,Danny,Manhattan,Midtown,40.74566,-73.9834,Private room,100,4,40,2019-06-19,3.36,2,164 +12343098,Fabulously Located Comfortable 3 Bedroom Loft,66640174,E.C.,Manhattan,Flatiron District,40.7411,-73.99024,Entire home/apt,525,5,49,2019-06-13,1.26,1,314 +12343127,Centre of Williamsburg,8854804,Nicolin,Brooklyn,Williamsburg,40.71635,-73.95746,Private room,100,3,0,,,1,0 +12343793,Cozy room in Prime Williamsburg,7476145,Alexis,Brooklyn,Williamsburg,40.71811,-73.95793,Private room,75,3,3,2017-01-16,0.09,1,0 +12344255,JULY/AUG SUBLET,66649328,Carlos,Brooklyn,Sheepshead Bay,40.60754,-73.95297,Entire home/apt,45,1,0,,,1,0 +12344391,Big sunny room in Bushwick,8308648,Kristina,Brooklyn,Bushwick,40.6879,-73.91767,Private room,65,1,2,2016-12-31,0.06,2,0 +12344456,"NEWLY RENOVATED, studio in Park Slope",40040638,Karen,Brooklyn,Park Slope,40.67522,-73.98063,Entire home/apt,132,1,67,2019-06-27,1.77,1,264 +12344949,Brand new luxury 2 br Harlem condo,33993577,Nick,Manhattan,Harlem,40.80882,-73.94654,Entire home/apt,350,5,0,,,1,0 +12345178,Flushing Deluxe Room w/1Full and 1Twin Size Bed,65809485,Shirley,Queens,Flushing,40.74849,-73.82914,Private room,50,7,83,2019-05-12,2.15,12,171 +12345354,Tidy relaxing and sunny bedroom,921269,Fer,Manhattan,East Harlem,40.79711,-73.93647,Private room,60,3,27,2016-12-09,0.69,1,0 +12345615,Natural light comfortable room!,52196858,Danny,Bronx,Parkchester,40.83648,-73.85812,Private room,59,1,120,2019-07-02,3.11,2,336 +12345786,Wonderful East Village Bedroom,44223203,Mike,Manhattan,East Village,40.72803,-73.98853,Private room,80,1,32,2019-05-05,0.85,1,0 +12346131,★ HEBREWS 13:2 ★,23732730,Buddy,Bronx,Pelham Gardens,40.86323,-73.84638,Entire home/apt,450,2,81,2019-07-06,2.07,4,342 +12346483,Nice Room in a Sweet Bushwick Apt,42032781,Matt,Brooklyn,Williamsburg,40.70496,-73.93024,Private room,45,3,7,2019-06-18,0.41,1,133 +12353119,3F 4bd/2bath Luxury Apt in Manhattan/NYC,26405086,Bill & May,Manhattan,Washington Heights,40.83543,-73.94456,Entire home/apt,359,1,126,2019-07-01,3.21,4,318 +12355067,Highline view,31502455,Jonathan,Manhattan,Chelsea,40.74553,-73.99784,Private room,200,1,1,2016-05-21,0.03,1,0 +12356709,Spacious 1 BR by Central Park!,52656626,Cassandra,Manhattan,Upper West Side,40.79772,-73.9626,Entire home/apt,120,3,11,2017-08-17,0.32,1,0 +12356873,"Sunny, spacious Upper East Side studio, sleeps 3",43806964,Evan,Manhattan,Upper East Side,40.77667,-73.95463,Entire home/apt,140,2,6,2016-10-10,0.17,1,0 +12358117,Big House near express trains,37978030,Doug,Brooklyn,Flatbush,40.63129,-73.96611,Entire home/apt,436,3,9,2019-07-02,0.37,1,27 +12358120,Sunny 1BR apartment in Chelsea,2640854,Bryan,Manhattan,Chelsea,40.74045,-73.99824,Entire home/apt,249,3,9,2016-10-31,0.23,1,0 +12358495,Beautiful 1 bed Apt in Midtown!,16596850,Robby,Manhattan,Midtown,40.75761,-73.96217,Entire home/apt,300,1,0,,,1,0 +12359146,Spacious Place in Brooklyn New York,39549563,Young,Brooklyn,Bedford-Stuyvesant,40.68075,-73.91099,Entire home/apt,140,30,38,2018-09-21,1.10,1,312 +12360207,One station from Manhattan Bedford,3922831,Serra,Brooklyn,Williamsburg,40.71592,-73.96265,Entire home/apt,170,5,35,2019-06-26,0.90,1,290 +12360254,Prime Williamsburg balcony cityview,32193665,Nicolas,Brooklyn,Williamsburg,40.71671,-73.94989,Entire home/apt,200,2,0,,,1,0 +12360322,Cozy Bdr 15 min from Manhattan!,11626567,Francisco,Brooklyn,Williamsburg,40.70661,-73.93642,Private room,60,1,2,2016-04-17,0.05,1,0 +12360660,Large Furnished room in New two bedroom apt.,5074556,Bob,Manhattan,Chinatown,40.71703,-73.99338,Private room,94,3,4,2017-10-15,0.10,1,364 +12362194,Upper West Side Quiet Gem,11039974,Poppi,Manhattan,Upper West Side,40.78039,-73.98426,Entire home/apt,399,1,0,,,2,0 +12363920,Rent a room in modern Bushwick apt,66787512,Henrik,Brooklyn,Bushwick,40.69969,-73.91896,Private room,45,1,7,2016-06-19,0.18,1,0 +12365206,"Large Brooklyn Room, close to train",24038764,Nataly,Brooklyn,Cypress Hills,40.67708,-73.89236,Private room,60,3,2,2016-07-13,0.05,1,0 +12365836,Beautiful 2 bedroom Duplex Apartment,35660592,Luis,Queens,Maspeth,40.73976,-73.8954,Private room,169,3,27,2019-05-18,0.78,6,256 +12366132,Cozy East Village Loft!,66614646,Britta,Manhattan,East Village,40.72444,-73.98136,Private room,80,3,1,2016-06-28,0.03,1,0 +12366226,Spacious 1BD/BA in heart of Bushwick,22288459,Alexi,Brooklyn,Bedford-Stuyvesant,40.69537,-73.93494,Private room,55,1,12,2019-05-19,0.75,2,22 +12366408,Near to Central Park and 1 ride to Times Sq!,66807700,Gabi,Manhattan,East Harlem,40.79505,-73.94361,Entire home/apt,220,2,140,2019-05-27,3.60,3,341 +12366762,Bergen Beach 3 or 4 Bedrooms 2 bath,66810906,Carmen,Brooklyn,Bergen Beach,40.6235,-73.91056,Entire home/apt,235,4,32,2019-06-11,0.88,1,322 +12367315,Large 1 Bdrm in Clinton Hill,5960171,Jackie,Brooklyn,Clinton Hill,40.68809,-73.96027,Entire home/apt,125,3,2,2016-06-29,0.05,1,0 +12367449,I HEART LIC...you will too!,3121134,Allison,Queens,Astoria,40.7619,-73.91985,Private room,66,1,1,2016-08-06,0.03,1,0 +12367673,Large cosy room-Financial District,12326402,Daniela,Manhattan,Financial District,40.70873,-74.00601,Private room,80,1,5,2016-11-09,0.13,1,0 +12368099,Home 4 Medical Professionals-St Johns Hospital,26377263,Stat,Queens,Far Rockaway,40.5978,-73.75296,Private room,40,30,0,,,43,354 +12368109,Private room in a nice neighborhood,5741728,Ben,Queens,Astoria,40.76625,-73.91448,Private room,57,2,14,2017-01-03,0.37,1,0 +12370347,Super Sunny Room with Fireplace!,116382,Anthony,Brooklyn,Crown Heights,40.66882,-73.9404,Private room,48,2,107,2019-06-29,2.74,5,268 +12375976,Tompkins Square Apartment,16617640,Martin,Manhattan,East Village,40.72376,-73.97975,Entire home/apt,99,20,2,2017-01-10,0.06,1,0 +12376365,SERENITY ROOM,45601111,Dlb,Queens,Laurelton,40.66952,-73.74624,Private room,40,2,47,2019-02-15,1.19,5,173 +12377267,4 Bedroom Apartment on the UWS (1A),65364483,Irina,Manhattan,Upper West Side,40.79839,-73.96804,Entire home/apt,250,90,0,,,2,90 +12379298,New Colorful East Village Modern Apt off Bowery,66904643,Elizabeth,Manhattan,East Village,40.72421,-73.99041,Private room,180,1,14,2018-09-06,0.40,1,90 +12380717,"1 BR/BA right next to trains, Central Park + more",41265342,Michael,Manhattan,Upper East Side,40.76769,-73.9585,Entire home/apt,115,2,7,2017-06-18,0.20,1,0 +12381255,Cozy Bedroom with Balcony in Williamsburg Apt,4249297,Martina,Brooklyn,Williamsburg,40.71065,-73.95115,Private room,104,2,19,2019-06-30,0.49,2,249 +12381336,Glorious Williamsburg Penthouse,66919869,Jonathan,Brooklyn,Williamsburg,40.71742,-73.95777,Entire home/apt,325,4,12,2019-06-21,0.49,1,6 +12382140,Luxury 2BR Midtown East-Near the UN,26521212,Laura,Manhattan,Midtown,40.75322,-73.97321,Entire home/apt,299,2,14,2019-05-03,0.36,3,0 +12383041,Room in Renovated BK Brownstone,17001409,Caitlin,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94316,Private room,40,1,5,2016-06-07,0.13,1,0 +12383067,Cherry Blossom Room on East 95th Street,24532289,Alice,Manhattan,Upper East Side,40.78755,-73.95493,Private room,89,1,9,2019-06-23,0.23,1,198 +12384862,Bright Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76302,-73.99416,Entire home/apt,100,30,7,2019-04-10,0.19,31,244 +12385002,Private 1 Bedroom Apartment SLEEPS 4 -Close to All,66949758,Shanie,Queens,Jamaica,40.70085,-73.81284,Entire home/apt,59,1,27,2019-05-22,0.70,2,62 +12385794,"CLEAN,SPACIOUS,CONVENIENT,FiDi/NYC Apartment",7511223,Shan,Manhattan,Financial District,40.70799,-74.00977,Entire home/apt,300,3,100,2019-06-22,2.66,1,335 +12386361,One Bedroom Heart of New York City,2017504,Fataah,Manhattan,Gramercy,40.73365,-73.98481,Private room,65,1,0,,,2,0 +12386579,Charming Private Library-Room,66961444,JoJo,Manhattan,Inwood,40.87133,-73.91562,Private room,50,2,74,2019-04-27,1.98,1,310 +12387018,Modern 1BR in Downtown Manhattan,31280252,Josef,Manhattan,Lower East Side,40.71894,-73.98738,Entire home/apt,120,1,0,,,1,0 +12387215,Private Room with 1/2 Bath in LES!,14278457,Jessica,Manhattan,Lower East Side,40.71257,-73.98671,Private room,125,1,0,,,1,0 +12387961,BEAUTIFUL 1bd/1bath available in Williamsburg,59742433,Franco,Brooklyn,Williamsburg,40.70851,-73.95443,Private room,80,4,2,2019-05-06,0.77,1,66 +12388091,Diamond in Upper West Side,1704335,Rem,Manhattan,Upper West Side,40.79749,-73.96307,Private room,56,7,1,2016-06-05,0.03,1,0 +12388347,Designer 1BR in Hell's Kitchen NYC,6884235,Kyle,Manhattan,Hell's Kitchen,40.76038,-73.98781,Entire home/apt,219,7,100,2019-06-22,2.66,1,235 +12388494,Hells Kitchen Studio,66977773,Catherine,Manhattan,Hell's Kitchen,40.768,-73.98557,Entire home/apt,197,1,0,,,1,0 +12389574,"More Space, 3 BR, 2 Bath, 2 floors",42329946,Collin,Brooklyn,Bushwick,40.69294,-73.92287,Entire home/apt,260,4,105,2019-06-15,2.85,1,48 +12389931,1 bedroom PRIVATE backyard in heart of Flatiron,5017615,Marie,Manhattan,Flatiron District,40.73922,-73.98886,Entire home/apt,115,14,3,2018-10-27,0.13,1,0 +12390529,Clean freshly renovated room,52196858,Danny,Bronx,Parkchester,40.83703,-73.85648,Private room,75,2,63,2019-05-18,1.80,2,150 +12396603,Dean Street Oasis,20942935,Miriam,Brooklyn,Crown Heights,40.67529,-73.93671,Private room,66,1,1,2016-05-02,0.03,1,0 +12397447,Cozy big bedroom with private balcony,35031188,Aldo,Queens,Astoria,40.77479,-73.93546,Private room,75,1,21,2019-06-21,0.55,1,364 +12398308,Huge family friendly loft in Soho,14136274,Stacey,Manhattan,SoHo,40.7244,-74.00681,Entire home/apt,500,2,0,,,1,0 +12400242,Spacious Brownstone with 5 beds on Second floor!,67045498,Jocelyne,Queens,Ridgewood,40.70918,-73.90089,Entire home/apt,215,1,38,2019-06-28,1.75,1,77 +12403252,Suite One at Bryant Manor,67069129,Kevin,Manhattan,Harlem,40.80967,-73.95295,Entire home/apt,175,2,136,2019-06-23,3.51,2,280 +12403816,Cozy and privat studio near Times Sq,67073298,K.Arina,Manhattan,Hell's Kitchen,40.76058,-73.99603,Entire home/apt,140,7,131,2019-06-28,3.37,1,111 +12404677,Loft room by the Brooklyn Bridge!,59958998,Alex,Brooklyn,Downtown Brooklyn,40.69449,-73.98367,Private room,80,1,0,,,1,0 +12404679,Studio- Wyndham Midtown 45,61532697,Tania,Manhattan,Midtown,40.75228,-73.97337,Private room,359,5,0,,,1,0 +12404734,Clean and Cozy Room in Williamsburg!,13406954,Jackie,Brooklyn,Williamsburg,40.7121,-73.96156,Private room,80,1,1,2016-05-23,0.03,3,0 +12404820,Perfect Neighborhood sublet,40015388,Daniel,Brooklyn,Park Slope,40.67086,-73.97847,Private room,935,1,0,,,1,0 +12404998,Cosy 1 bedroom apartment in Astoria,47380199,Kim,Queens,Astoria,40.76869,-73.91966,Entire home/apt,120,7,1,2016-06-05,0.03,1,0 +12405814,Sunny + Family Friendly Artist's Apartment,1468472,Eugenia,Bronx,Longwood,40.81384,-73.90514,Entire home/apt,85,5,4,2018-08-03,0.31,1,0 +12406683,Sunny Spacious South Slope Studio,25095488,Jason,Brooklyn,Sunset Park,40.66248,-73.99667,Entire home/apt,100,2,3,2017-01-13,0.10,1,0 +12406906,Bright Sunny Apartment Near Subway,11554193,Rishe,Brooklyn,Crown Heights,40.66753,-73.95099,Private room,64,5,7,2016-09-09,0.18,2,0 +12407244,"Charming, Sunny Room in Amazing LES",5790819,Gracie,Manhattan,Lower East Side,40.7192,-73.98431,Private room,75,2,3,2017-01-06,0.08,1,0 +12408850,1 BR in 2 BR Apt (Upper East Side),67105547,Jeffrey Paul,Manhattan,East Harlem,40.78898,-73.95478,Private room,62,1,32,2018-10-01,0.83,1,0 +12409217,Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76347,-73.99296,Entire home/apt,96,30,5,2018-06-10,0.13,31,246 +12409364,Modern Luxury 1BR with Patio,36663219,Amber,Manhattan,Kips Bay,40.74462,-73.97746,Entire home/apt,350,3,0,,,1,0 +12409508,"Cozy, Central Park, UES, Train 6",13755526,Christos,Manhattan,Upper East Side,40.7673,-73.9594,Entire home/apt,100,1,0,,,1,0 +12410412,Victorian Flatbush Family Friendly,6662358,Elizabeth,Brooklyn,Flatbush,40.64933,-73.96478,Entire home/apt,290,5,4,2018-08-19,0.11,1,0 +12411380,Small Bedroom Steps From the 1 Train,67123961,Carole,Manhattan,Harlem,40.82088,-73.95628,Private room,50,2,12,2017-08-28,0.31,2,0 +12411737,Great Location 1 BR Apt - Manhattan,52559052,Abe,Manhattan,Midtown,40.76657,-73.98207,Entire home/apt,150,2,0,,,1,0 +12412900,Cozy 5Min2CentralPark/BroadwayShows/TimesSquareNY,2874126,Joseph,Manhattan,Hell's Kitchen,40.76535,-73.98874,Private room,81,4,27,2018-06-25,0.70,1,188 +12417189,Largest room in Astoria! Close to all mass transit,13168457,Rob,Queens,Astoria,40.76555,-73.91458,Private room,70,2,18,2016-11-15,0.46,1,89 +12419487,Cozy bedroom w/private bathroom & backyard,44781865,Manon,Brooklyn,Clinton Hill,40.68761,-73.95979,Private room,70,2,31,2019-05-26,0.83,1,0 +12420694,Spacious room with private rooftop!,20471565,Harry,Manhattan,East Village,40.72522,-73.98114,Private room,150,3,0,,,1,0 +12420947,Williamsburg entire apartment,3642404,Maya,Brooklyn,Williamsburg,40.70965,-73.95675,Entire home/apt,95,4,10,2019-06-23,0.37,1,0 +12421102,"Sunny Floor-thru, Prospect Heights",3518697,Donnell,Brooklyn,Crown Heights,40.67634,-73.96177,Entire home/apt,150,1,1,2016-07-06,0.03,1,188 +12422277,Spacious Studio w/ Patio- Ft Greene,43924728,Shawn,Brooklyn,Fort Greene,40.68702,-73.97506,Entire home/apt,169,2,136,2019-06-16,3.46,1,251 +12422777,Large room in 3 bedroom apartment,26819014,Zuri,Brooklyn,Cypress Hills,40.67893,-73.89423,Private room,25,1,0,,,1,0 +12422969,Huge Flatiron Designer Studio,22627365,Chin-Feng,Manhattan,Flatiron District,40.74047,-73.98932,Entire home/apt,154,1,0,,,1,0 +12423497,Luxury building studio apartment,2455544,Viola,Manhattan,Midtown,40.76507,-73.98393,Entire home/apt,140,5,1,2016-05-04,0.03,1,0 +12423868,Small Sunny 1BR Apt Bradhurst Park,9754272,Tim,Manhattan,Harlem,40.82616,-73.94023,Entire home/apt,130,2,5,2016-10-30,0.13,1,0 +12425266,Violet Terrace,67208195,Clarissa,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91761,Private room,60,2,53,2019-07-07,1.37,2,365 +12425296,Location/Charm/Comfort-Live the West Village dream,43585775,Rachel,Manhattan,West Village,40.73475,-74.0044,Entire home/apt,250,3,0,,,1,0 +12426775,"Great Room & Location, Williamsburg",9249156,Kevin,Brooklyn,Williamsburg,40.71019,-73.95439,Private room,55,3,2,2016-06-29,0.05,1,0 +12426778,TH BRKLYN,7963317,Rob,Brooklyn,Boerum Hill,40.68834,-73.98601,Private room,150,1,0,,,1,0 +12426957,Room for 2,20069770,Bryant,Brooklyn,Bushwick,40.69336,-73.9213,Private room,45,2,2,2017-06-16,0.08,1,0 +12427898,NEW Modern Apartment w/ OutdoorDeck,67223979,Arkadiy,Brooklyn,Sunset Park,40.66482,-73.99609,Entire home/apt,199,1,164,2019-06-20,4.25,1,340 +12430126,Beautiful 2 BR by Columbia,31796914,Jenna,Manhattan,Morningside Heights,40.80507,-73.96465,Entire home/apt,290,4,3,2018-01-05,0.08,1,0 +12430153,Brownstone charm-1st Fl with yard,26010563,Scott,Manhattan,Upper West Side,40.78054,-73.97779,Entire home/apt,85,2,7,2016-06-26,0.18,1,0 +12431649,1 bed Apt Near to Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76306,-73.99257,Entire home/apt,150,30,3,2018-11-05,0.12,31,332 +12433088,Simple Suite with Private Bathroom,65258815,Mrs. Alabi,Brooklyn,Crown Heights,40.6736,-73.92612,Entire home/apt,60,2,23,2019-06-27,6.22,2,33 +12433302,Lovely Brownstone Garden Apartment,425363,Marni,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95231,Entire home/apt,170,5,55,2019-07-03,1.44,1,82 +12433898,Cuarto muy confortable. 2 personas. Cerca de todo.,67261284,Dante,Queens,Jackson Heights,40.75302,-73.8797,Private room,47,1,15,2018-12-20,0.39,2,0 +12434717,Comfortable Small Room with wifi,40828217,Anita,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.94542,Private room,55,2,60,2019-06-23,1.62,4,88 +12443469,Private patio on the LES.,970831,Phillip,Manhattan,Chinatown,40.71472,-73.99081,Entire home/apt,195,2,80,2019-06-16,2.04,1,14 +12445316,"One train ride to Times SQ, Central Park, LOCATION",66807700,Gabi,Manhattan,East Harlem,40.79456,-73.94345,Entire home/apt,186,2,139,2019-06-19,3.60,3,73 +12445714,Sun kissed 1br Harlem (WHOLE apt),67332509,Nkem,Manhattan,Harlem,40.82579,-73.94324,Entire home/apt,99,1,3,2016-05-29,0.08,1,0 +12446494,Cozy 2Bed in Hell's Kitchen,21742264,Maggie,Manhattan,Hell's Kitchen,40.76304,-73.99166,Entire home/apt,155,1,0,,,1,0 +12446548,Sunny Quiet Bedroom in Brooklyn,102525,David,Brooklyn,South Slope,40.66768,-73.98425,Private room,60,3,27,2019-05-20,0.71,2,308 +12447273,Sunny room in 3 bedroom apt.,67341852,Grace,Brooklyn,Gowanus,40.68474,-73.98862,Private room,100,1,1,2016-05-15,0.03,1,0 +12450591,"2 bed, 2 bath near parks, subway",35079352,Heidi,Manhattan,Upper West Side,40.7992,-73.97158,Entire home/apt,500,5,3,2018-06-29,0.09,1,44 +12450817,Ft Green Sunlit 1 Bedroom Apartment,67063688,Kali,Brooklyn,Fort Greene,40.68521,-73.97131,Entire home/apt,150,2,68,2019-06-23,1.74,1,319 +12451425,amazing studio in heart of Manhatta,60996330,Nassim,Manhattan,Murray Hill,40.74893,-73.97037,Entire home/apt,175,1,3,2017-04-19,0.09,1,0 +12452110,Traveller's Flat – Hell's Kitchen,12327430,Marco,Manhattan,Hell's Kitchen,40.76386,-73.99707,Entire home/apt,148,4,104,2019-06-23,2.70,2,145 +12453775,Stunning Central Park - 1BR,7695686,Martin,Manhattan,Harlem,40.80057,-73.9556,Private room,130,3,44,2019-05-26,1.15,1,80 +12454556,Fun room in East Village,8671253,Atlanta,Manhattan,East Village,40.72414,-73.9801,Private room,80,2,3,2016-05-31,0.08,1,0 +12462634,Sunny and Beautiful UWS 1BDRM,48091946,Alexis,Manhattan,Upper West Side,40.77775,-73.98169,Entire home/apt,150,2,5,2016-11-18,0.13,1,0 +12464635,Sunny & Stylish 2BR in Williamsburg,639785,Aunim,Brooklyn,Williamsburg,40.71774,-73.95466,Entire home/apt,285,2,17,2017-09-03,0.44,1,0 +12465732,Sunny Room in NYC,47638752,Adrien,Manhattan,Chinatown,40.7133,-73.9956,Private room,70,3,1,2016-05-20,0.03,1,0 +12467421,Luxury studio heart of Manhattan,67471774,Grace.EJ,Manhattan,Upper West Side,40.77504,-73.9896,Entire home/apt,150,1,0,,,1,0 +12468908,"High-end, garden view, near Prospect Park",16437254,Benjamin,Brooklyn,Prospect Heights,40.67631,-73.96635,Entire home/apt,155,30,1,2018-08-14,0.09,21,61 +12470877,Cozy East Village Apartment,67493763,Katherine,Manhattan,East Village,40.72952,-73.98214,Private room,82,1,4,2017-07-31,0.16,1,0 +12471447,Great UWS 1 bedroom duplex,36966894,Sarah,Manhattan,Upper West Side,40.77835,-73.97655,Entire home/apt,200,3,5,2016-05-29,0.13,1,0 +12472230,Cozy Cat Cave in Bushwick,51520084,Samantha,Brooklyn,Bedford-Stuyvesant,40.69687,-73.93542,Private room,60,1,0,,,1,0 +12472883,Private room in apt,12114372,Kaylin,Manhattan,Gramercy,40.73631,-73.98525,Private room,150,7,0,,,1,0 +12477280,QUEEN-SIZED ROOM IN LUXURIOUS PARK AVENUE FLAT,283395,H,Manhattan,Murray Hill,40.7493,-73.9794,Private room,159,1,17,2017-12-10,0.44,2,155 +12482870,Cozy private room with city charm,4620141,Ellen,Manhattan,Washington Heights,40.84659,-73.93252,Private room,38,5,11,2017-08-22,0.31,2,0 +12485134,Charming 1 bedroom East Village Apt,5206786,Eli,Manhattan,East Village,40.72804,-73.98867,Entire home/apt,155,5,12,2019-04-26,0.31,1,2 +12485862,Sunny apt w/HUGE terrace & rooftop,33936693,Sara,Brooklyn,Williamsburg,40.71173,-73.96646,Entire home/apt,184,4,79,2019-06-18,2.21,1,222 +12487909,旅途中的家,66574216,Mabel,Queens,Flushing,40.76564,-73.82043,Private room,65,1,122,2019-06-24,3.16,1,86 +12492242,The Sunset Boudoir,38864859,Candi,Manhattan,Upper East Side,40.7842,-73.95105,Entire home/apt,150,1,0,,,1,0 +12492594,Brooklyn bedroom near Prospect Park & subway,9361557,Joe,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96193,Private room,50,1,70,2018-07-22,1.79,2,0 +12492941,Spacious Room with Private a Patio!,67640934,Paulette,Brooklyn,Bedford-Stuyvesant,40.68361,-73.93845,Private room,60,2,34,2017-09-27,0.88,1,0 +12493228,Bright Airy Cozy Spacious Bedroom,816008,Elika,Manhattan,Hell's Kitchen,40.76093,-73.99014,Private room,100,5,8,2017-07-31,0.21,1,0 +12493291,Sunny room with great transit,6119244,Rachel,Queens,Jackson Heights,40.75069,-73.89476,Private room,60,2,26,2019-03-31,0.78,1,307 +12494415,H. Potter theme place,67651553,Yunqiu,Manhattan,Upper West Side,40.80302,-73.96511,Entire home/apt,110,10,0,,,2,0 +12494870,Private Room in Beautiful Apartment,12140588,Kiri,Brooklyn,Greenpoint,40.72619,-73.95563,Private room,50,3,2,2017-01-02,0.06,1,0 +12495520,Manhattan Club Penthouse Suite,57769941,Mario,Manhattan,Midtown,40.7659,-73.98211,Entire home/apt,325,1,0,,,1,0 +12495562,Zen Artist Village Studio,2821521,Zach,Manhattan,Greenwich Village,40.73372,-73.99834,Entire home/apt,225,3,60,2019-06-23,1.54,1,18 +12495831,Sunny studio loft in midtown with elevator!,22527211,Nathan,Manhattan,Midtown,40.75914,-73.96591,Entire home/apt,190,29,53,2019-04-30,1.40,1,165 +12495887,Bright & Sunny Greenpoint Studio,2104160,Brendon,Brooklyn,Greenpoint,40.7369,-73.95288,Entire home/apt,119,4,4,2017-05-09,0.10,1,0 +12496037,1/2 block to Central Park - W 84th Street,23870466,Susan,Manhattan,Upper West Side,40.78475,-73.9717,Entire home/apt,650,30,3,2018-10-15,0.09,1,137 +12496118,Entire Home in NYC- 1 bedroom/ Private Entrance,11305944,Yahaira,Bronx,Allerton,40.86947,-73.85993,Entire home/apt,104,2,33,2019-06-12,0.85,5,86 +12497438,"Large, beautiful 1 bedroom downtown Manhattan",67674810,Cristina,Manhattan,Chinatown,40.7164,-73.99743,Entire home/apt,175,30,4,2018-06-24,0.11,1,0 +12497757,Fully Furnished Williamsburg Apt,50137233,Courtney,Brooklyn,Williamsburg,40.712,-73.94609,Private room,190,1,0,,,1,0 +12497783,Clean and safe department in NYC.,67677095,Baochan,Manhattan,Upper West Side,40.8015,-73.96605,Private room,40,3,1,2016-07-16,0.03,1,0 +12502633,New Apt. in Park Slope / Gowanus,379619,J. E,Brooklyn,Gowanus,40.667,-73.99233,Entire home/apt,100,1,378,2019-07-07,9.67,1,48 +12504542,Charming Brooklyn Brownstone!,3982538,Joel,Brooklyn,Prospect Heights,40.67908,-73.97333,Private room,75,1,0,,,1,0 +12505852,Upper West Side 1 bedroom,5775272,Lindsey,Manhattan,Upper West Side,40.78406,-73.98431,Entire home/apt,125,1,0,,,1,0 +12508552,"Convenient Room, at the Center of Manhattan Living",7475578,MaTT,Manhattan,Little Italy,40.71941,-73.99706,Private room,85,5,26,2019-05-06,0.67,2,160 +12509350,Williamsburg/GreenPoint Room,31376006,Carlos Esteban,Brooklyn,Greenpoint,40.72191,-73.94405,Private room,60,1,2,2016-05-08,0.05,1,0 +12511986,Historic Harlem 4,3905432,Rose,Manhattan,Harlem,40.81614,-73.94429,Private room,90,6,8,2018-12-25,0.22,2,296 +12513217,Upper West Side Manhattan Comfort 1,67768251,Felipe,Manhattan,Upper West Side,40.78461,-73.97787,Private room,53,30,4,2019-03-17,0.17,3,185 +12519042,Private-cozy Brooklyn Apt. Room,67803853,Juan,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94793,Private room,50,3,26,2018-10-14,0.68,1,0 +12519645,Upper East Side Room,56623911,Christa,Manhattan,East Harlem,40.78809,-73.95333,Private room,45,1,3,2016-05-20,0.08,1,0 +12519757,On Central Park West,3207402,John 'Lance',Manhattan,Upper West Side,40.79904,-73.96045,Private room,110,4,7,2017-12-30,0.23,1,125 +12519774,Sunny Two Bedroom in South Slope,2593193,Fiona,Brooklyn,Sunset Park,40.66127,-73.99154,Entire home/apt,200,7,0,,,1,11 +12520066,Luxury townhouse Greenwich Village,66240032,Linda,Manhattan,Greenwich Village,40.73046,-73.99562,Entire home/apt,6000,1,0,,,1,0 +12521735,Cozy Apartment in Queens — 20 Min to Manhattan,34790915,Katie,Queens,Ridgewood,40.7003,-73.89983,Private room,70,2,0,,,1,0 +12522024,GREAT STUDIO IN HEART OF EAST VILLAGE!,10665495,Tom,Manhattan,East Village,40.72626,-73.9894,Entire home/apt,199,4,3,2017-05-29,0.08,1,0 +12523287,"Clean Cozy Room, close to Subway Shops Restaurants",5069809,Hua,Queens,Forest Hills,40.71915,-73.84397,Private room,65,2,29,2019-06-10,0.77,1,333 +12532453,Spacious Williamsburg Apartment,18004909,Josh,Brooklyn,Williamsburg,40.71513,-73.94848,Private room,95,2,1,2016-05-01,0.03,1,9 +12534110,Spacious Room in Downtown Brooklyn,6604691,Dhruti,Brooklyn,Downtown Brooklyn,40.69531,-73.98306,Private room,80,5,0,,,1,0 +12535946,LUX One Bedroom Doorman W&D 5133,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79433,-73.96518,Entire home/apt,200,30,1,2018-11-27,0.13,96,337 +12536976,Sunny & Luxurious West Village Apartment!,55457305,Mila & Jon,Manhattan,West Village,40.72981,-74.00348,Entire home/apt,274,6,37,2019-06-23,0.94,1,339 +12537157,CoZy RooM & Private Bathroom BK:) SUPERHOST :),3441272,Jasmin,Brooklyn,Bushwick,40.69758,-73.93493,Private room,50,2,93,2019-06-18,2.39,5,202 +12537221,Great Location,67884746,Linda,Brooklyn,Prospect Heights,40.67947,-73.96466,Private room,105,2,172,2019-06-24,4.50,1,83 +12538440,20 Day Room Rental in Manhattan!!,67931669,Indigo,Manhattan,Harlem,40.81498,-73.95078,Private room,45,20,0,,,1,0 +12539250,1BR in Midtown West Apartment,10158478,Peter,Manhattan,Hell's Kitchen,40.76148,-73.99489,Private room,350,1,0,,,1,0 +12539359,Cute and cosy one bedroom,60946174,Zineb,Manhattan,Upper East Side,40.78093,-73.95175,Private room,350,1,9,2016-10-08,0.23,1,90 +12542485,2 BDRM Apt. in the Middle of NYC apt. 3B,17770287,Nina,Manhattan,Murray Hill,40.7493,-73.98132,Entire home/apt,180,30,5,2019-03-09,0.14,14,210 +12542544,Near Times Square,64837317,Michael,Manhattan,Hell's Kitchen,40.76231,-73.9952,Entire home/apt,225,4,128,2019-07-07,3.39,1,218 +12542909,Huge 800 sq ft 1 bedroom apt,67758079,Janelle,Queens,Sunnyside,40.74706,-73.92076,Entire home/apt,100,1,1,2016-05-10,0.03,1,0 +12543988,Sunny Williamsburg Sublet,17763535,Greta,Brooklyn,Williamsburg,40.71183,-73.94918,Private room,1300,1,0,,,1,0 +12545436,A cozy home,43128266,常春,Manhattan,Washington Heights,40.83271,-73.94007,Private room,55,1,5,2018-04-01,0.13,3,332 +12546799,Beautiful Sunlight Studio Apt,3089851,Christie,Brooklyn,Bedford-Stuyvesant,40.69175,-73.95554,Entire home/apt,70,7,4,2018-04-07,0.12,1,0 +12547169,"Prime, Modern & Spacious Williamsburg Apartment",4354856,Jay,Brooklyn,Williamsburg,40.71486,-73.94826,Private room,50,60,0,,,2,0 +12547357,Spacious Bedroom on Eastern Parkway,12335685,Rebecca,Brooklyn,Crown Heights,40.67045,-73.95895,Private room,67,1,1,2016-05-17,0.03,1,0 +12547481,Big 1BR apt near Central Park & Times Square!,43436738,Abe & Gail,Manhattan,Midtown,40.76589,-73.98068,Entire home/apt,150,2,1,2016-06-25,0.03,1,0 +12549290,One Bedroom Wall St Luxury Apt,68013836,Mency,Manhattan,Financial District,40.70592,-74.00928,Private room,35,3,3,2016-08-26,0.09,1,0 +12553612,Sunny Bedroom w/ Private Bathroom in Williamsburg,24225572,Monica,Brooklyn,Williamsburg,40.71353,-73.95261,Private room,90,2,15,2019-06-16,1.05,1,6 +12554945,Manhattan Sunny Private Room,20586090,Grant,Manhattan,Harlem,40.82356,-73.95457,Private room,53,5,8,2017-01-05,0.23,1,0 +12556300,Lovely flat heart of New-York,15074852,Chloé Et Jean-Philippe,Manhattan,Hell's Kitchen,40.76253,-73.98939,Entire home/apt,300,2,0,,,1,0 +12558102,Studio Apt with Private Backyard,68070597,Joe,Brooklyn,Bedford-Stuyvesant,40.69756,-73.93893,Entire home/apt,80,21,0,,,1,0 +12558307,Luxury 2BR Midtown East-Near UN!,26521212,Laura,Manhattan,Midtown,40.75207,-73.97351,Entire home/apt,299,2,5,2019-05-05,0.15,3,0 +12558745,BK'S FINEST CLOSE 2 TRANSPORTATION-,50600973,Joyell,Brooklyn,Bushwick,40.69452,-73.92807,Private room,41,1,72,2018-06-09,1.88,7,0 +12559933,"Private Bedroom, Bath & Living room",68082818,Neil,Brooklyn,Bedford-Stuyvesant,40.68288,-73.93526,Private room,50,2,1,2016-06-01,0.03,1,0 +12560110,Sunny Studio Apartment in Ridgewood,20907226,Michael,Queens,Ridgewood,40.70005,-73.8952,Entire home/apt,70,1,5,2017-08-07,0.21,1,0 +12560137,1BR. SugarHill. 15 Min Midtown.,51093380,Joe,Manhattan,Harlem,40.82302,-73.94477,Entire home/apt,500,1,0,,,1,365 +12560942,QUIET CLEAN APT IN THE HEART OF IT ALL 4,47577639,Jc,Manhattan,Chelsea,40.74137,-74.00399,Entire home/apt,185,4,49,2019-06-26,1.31,2,279 +12561615,Stunning Bedroom in Midtown East,68094755,Athena,Manhattan,Midtown,40.75709,-73.96327,Private room,98,3,98,2019-07-03,2.66,1,278 +12561681,"Penthouse 2BR w skylight,terrace, and a roof deck.",68094795,Diane And Ward,Manhattan,Upper East Side,40.76532,-73.9615,Entire home/apt,399,4,55,2019-06-17,1.47,2,237 +12561755,"Lrg sunny aprtmt, UWS/Central Park",2898343,Jamie (& Jacob),Manhattan,Upper West Side,40.79865,-73.96419,Entire home/apt,170,4,12,2017-12-26,0.31,1,0 +12562075,High Rise Financial District Apt,8756366,Amy,Manhattan,Financial District,40.70666,-74.00529,Private room,80,1,0,,,1,0 +12563738,Beautiful spacious brownstone in Central Harlem,10312167,Razia,Manhattan,Harlem,40.80276,-73.94976,Entire home/apt,376,28,53,2019-03-03,1.40,2,310 +12564287,Modern & cosy Bronx apt w/ parking,11761831,Lydie,Bronx,Wakefield,40.89118,-73.84987,Entire home/apt,99,3,68,2019-04-30,1.78,1,2 +12566262,2 bed apt: heart of Times Square,32503657,Gillian,Manhattan,Hell's Kitchen,40.75756,-73.99318,Entire home/apt,200,1,0,,,1,0 +12566957,Lovely Bed-Stuy Brownstone Parlor Apartment 1BR,26813492,Caleb,Brooklyn,Bedford-Stuyvesant,40.69065,-73.93708,Entire home/apt,91,5,3,2017-09-15,0.12,1,0 +12567631,Bedstuy Flat Sublet 3 WEEK MIN,3910530,Mathew,Brooklyn,Bedford-Stuyvesant,40.68459,-73.94993,Entire home/apt,60,1,0,,,1,0 +12567868,Nice bedroom in east village apartment,68138404,Phil,Manhattan,East Village,40.72997,-73.98009,Private room,60,3,50,2019-06-23,1.31,1,240 +12567993,Private bedroom near L & M trains,68139079,Gary,Brooklyn,Bushwick,40.70076,-73.92371,Private room,50,1,0,,,1,0 +12568401,"West village, great location!",57786447,Anne,Manhattan,West Village,40.73764,-74.00146,Entire home/apt,250,2,1,2016-05-18,0.03,1,0 +12568741,Large 1bdr perfect Village location,68145886,Emory,Manhattan,Greenwich Village,40.73432,-73.9972,Entire home/apt,209,2,75,2019-06-02,1.93,1,8 +12581875,Sunny Private Bedroom in Park Slope,342510,Maya,Brooklyn,South Slope,40.66383,-73.98252,Private room,65,1,0,,,1,0 +12582348,Large room in Astoria home,34546087,Rina,Queens,Astoria,40.7704,-73.91701,Private room,48,2,11,2017-11-25,0.29,1,0 +12583907,"1 Bedroom, Close to 4, 5, 6 trains",68250800,Anna,Manhattan,East Harlem,40.80015,-73.93764,Private room,60,1,137,2019-06-30,3.55,2,98 +12584072,Historic Gem Close to SI Ferry,68252461,Natalia,Staten Island,Clifton,40.62349,-74.07596,Entire home/apt,165,1,108,2019-06-20,2.78,1,298 +12585015,FANTASTIC FLOOR THROUGH ONE BEDROOM,18901504,Ronald,Manhattan,Midtown,40.755,-73.96671,Entire home/apt,218,5,69,2019-06-30,1.81,2,152 +12585126,Greenwich village West 4th Street,24018769,Takagi,Manhattan,West Village,40.73326,-74.00186,Entire home/apt,160,1,0,,,1,0 +12587017,Airy Apt w/ Balcony by Central Park,62850707,Madeleine,Manhattan,Upper West Side,40.78434,-73.97867,Entire home/apt,200,2,154,2019-05-31,4.02,1,51 +12587102,Spacious Loft in Williamsburg,1623346,Christopher,Brooklyn,Williamsburg,40.71468,-73.95841,Private room,53,2,2,2018-05-21,0.14,1,0 +12587698,Brooklyn Beauty - Private Room,26225727,Xiomara,Brooklyn,Bushwick,40.68601,-73.91167,Private room,65,3,76,2019-06-25,1.98,1,23 +12590077,Sunny Duplex in Brooklyn's Best Area,43438475,Viviana,Brooklyn,South Slope,40.66872,-73.98906,Entire home/apt,280,3,30,2019-06-10,0.79,3,125 +12590964,"Private room in Charming, Cozy and Sunny Apt",1520629,Pillo,Brooklyn,Clinton Hill,40.68374,-73.96719,Private room,60,1,67,2019-06-22,1.85,1,310 +12591059,2 Bedroom next to Prospect Park!,68240110,Elizabeth,Brooklyn,Prospect-Lefferts Gardens,40.65785,-73.96068,Entire home/apt,800,1,4,2016-05-22,0.10,1,357 +12592427,Lovely apartment as home,68309691,Cindy,Queens,Flushing,40.72635,-73.80237,Entire home/apt,99,1,229,2019-06-24,5.97,1,7 +12593389,"Modern, Central Park relaxation",10737943,David,Manhattan,Upper West Side,40.7998,-73.96098,Entire home/apt,120,30,18,2018-09-30,0.47,10,189 +12594614,1BR Avaliable in 3Br Condo,17603414,Kaan,Manhattan,Harlem,40.82471,-73.94332,Private room,70,4,27,2019-07-01,0.75,2,156 +12598128,UWS Duplex 3bdrm next to Central Pk,5162192,Amy,Manhattan,Upper West Side,40.79895,-73.95949,Entire home/apt,235,30,4,2018-12-22,0.10,12,209 +12598446,Spacious 4bdrm next to CentralPk,5162192,Amy,Manhattan,Upper West Side,40.7986,-73.96229,Entire home/apt,275,30,4,2019-01-09,0.15,12,199 +12600198,Luminous room,10577784,Julian,Queens,Astoria,40.76494,-73.92752,Private room,86,4,28,2019-01-03,0.74,2,242 +12600583,Shared Bedroom in Upper East Side!,13406954,Jackie,Manhattan,Upper East Side,40.78305,-73.95381,Shared room,49,1,3,2016-05-19,0.08,3,0 +12600938,Sunny light filled comfy bedroom,9848712,Randy,Manhattan,East Harlem,40.80118,-73.94513,Private room,85,3,86,2019-06-16,2.28,2,240 +12601401,"Astoria living, like a true NY'er",5059784,Seth,Queens,Astoria,40.76465,-73.92625,Entire home/apt,125,1,10,2016-07-11,0.26,1,0 +12601807,Sunny light filled bedroom,9848712,Randy,Manhattan,East Harlem,40.80073,-73.94465,Private room,85,3,89,2019-06-05,2.37,2,228 +12601900,Magical 1 BR in Crown Heights,16702803,Jacob,Brooklyn,Crown Heights,40.67426,-73.93968,Entire home/apt,70,2,2,2016-06-04,0.05,1,0 +12602212,Violet Sunset Room,67208195,Clarissa,Brooklyn,Bedford-Stuyvesant,40.68601,-73.91772,Private room,60,2,71,2019-06-30,1.84,2,363 +12602408,Cozy little room in beautiful brownstone house !,57059509,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69221,-73.93823,Private room,50,20,19,2018-08-31,0.56,1,2 +12604187,A top floor in Midtown,18901504,Ronald,Manhattan,Midtown,40.75369,-73.96632,Entire home/apt,218,5,81,2019-06-29,2.10,2,185 +12606349,SPACIOUS 2 BR APT WITH PRIVATE BACKYARD,9293730,Inna,Manhattan,East Harlem,40.7888,-73.94247,Entire home/apt,135,30,13,2019-01-24,0.37,16,330 +12606676,"Large, next to park, subway gardens",13822373,Brian,Brooklyn,Prospect-Lefferts Gardens,40.66223,-73.95955,Private room,120,2,2,2017-01-01,0.06,1,0 +12609695,Comfy in Queens!,66734502,Laura,Queens,Astoria,40.76188,-73.91766,Private room,55,3,3,2016-08-24,0.08,2,0 +12611122,"Styled, Spacious Ft Greene Studio",6444711,Emily,Brooklyn,Fort Greene,40.68672,-73.97555,Entire home/apt,150,2,7,2017-05-15,0.19,1,0 +12619450,Quiet-Private Large Brooklyn Studio,1539941,Ron,Brooklyn,Kensington,40.63568,-73.97383,Entire home/apt,75,2,10,2019-05-27,0.26,1,362 +12621050,"Clean, Mod & Quick to Times Square",15218314,Ronald,Manhattan,Harlem,40.81251,-73.95412,Private room,43,7,0,,,1,0 +12622115,1 Block from Times Sq. and Broadway,49262827,Joei,Manhattan,Hell's Kitchen,40.76192,-73.98817,Entire home/apt,115,2,150,2019-06-24,4.06,1,1 +12622845,Your SUNNYROOM 15mnts to Manhattan!,14498263,Penélope,Queens,Sunnyside,40.74431,-73.92024,Private room,60,2,105,2019-06-30,2.72,1,101 +12623332,Sun-drenched Park Slope Studio,11732822,Megan,Brooklyn,Park Slope,40.67776,-73.9743,Entire home/apt,160,4,33,2019-06-15,0.87,1,1 +12624890,Pull-out Sofa in Central Harlem,657869,J,Manhattan,Harlem,40.81027,-73.9408,Shared room,39,4,47,2019-06-09,1.22,2,131 +12625113,Rest and Relax,4057761,Natalie,Manhattan,Harlem,40.82458,-73.95175,Private room,45,3,49,2019-06-21,1.26,1,0 +12625717,"XL room in artists' home, Flatbush/Ditmas Park",1166833,Liz,Brooklyn,Flatbush,40.64966,-73.96459,Private room,45,3,5,2017-07-29,0.19,1,0 +12625934,Private oasis in Hamilton Heights.,68551886,Sandra,Manhattan,Harlem,40.82859,-73.9497,Private room,25,1,0,,,1,0 +12626567,Private room for sublet,68556398,Alice,Brooklyn,Bushwick,40.69285,-73.92703,Private room,65,12,0,,,1,0 +12626663,Gorgeous Harlem 1br best location,2480467,Noreen,Manhattan,Harlem,40.80854,-73.94305,Entire home/apt,125,7,1,2017-01-07,0.03,1,0 +12628500,Private room for 2 NY Close to LGA No hidden fees,67261284,Dante,Queens,Jackson Heights,40.75123,-73.87993,Private room,67,1,204,2018-12-16,5.27,2,0 +12629865,NEW! American Private Cozy Room,16740102,Anton,Brooklyn,Bedford-Stuyvesant,40.68634,-73.94414,Private room,52,3,0,,,1,0 +12630337,APT in LES with view,516563,Michael,Manhattan,Lower East Side,40.71412,-73.98984,Entire home/apt,110,6,5,2019-01-03,0.13,1,12 +12630697,"Huge, Sunny, Good Vibes Authentic Artist's LOFT",227369,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95952,Entire home/apt,177,4,82,2019-01-26,2.22,1,73 +12630799,Cozy Sunny room,65820457,Marilyn,Queens,Ridgewood,40.70595,-73.90871,Private room,25,5,0,,,1,0 +12641611,Park Slope Gem,35383368,Cristina,Brooklyn,Park Slope,40.67466,-73.97711,Entire home/apt,175,3,0,,,1,0 +12642845,Newly renovated! Spacious Park Slope Apt. Quiet St,228858,Jada,Brooklyn,South Slope,40.66271,-73.98818,Entire home/apt,150,3,73,2019-07-04,1.89,2,259 +12643171,Sunny Cozy Loft Bedroom,26054687,Danielle,Brooklyn,Williamsburg,40.71586,-73.94859,Private room,75,7,0,,,1,0 +12643924,Peaceful and beautiful room by park,1216362,Camila,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.96122,Private room,41,1,43,2019-05-07,1.19,4,188 +12644989,Modern high-end studio!,9997184,Kelly,Manhattan,Upper West Side,40.79376,-73.96734,Entire home/apt,185,2,10,2016-09-01,0.26,1,0 +12645495,Newly Renovated Private 3 bedroom Apt.Near,60077920,Nicole,Queens,East Elmhurst,40.76107,-73.86664,Entire home/apt,175,2,74,2019-06-24,2.42,1,141 +12645769,Spacious Harlem room in tidy 4th-floor walkup,68684053,Rose,Manhattan,Harlem,40.82095,-73.94007,Private room,40,1,1,2016-05-14,0.03,1,0 +12648471,Spacious 3 Bedroom in Park Slope,52577563,Rosa,Brooklyn,Sunset Park,40.66455,-73.99205,Entire home/apt,135,4,9,2017-10-07,0.23,3,365 +12649685,Peaceful Greenpoint Sanctuary,6389984,Pepper,Brooklyn,Greenpoint,40.73081,-73.95551,Entire home/apt,195,2,34,2017-06-09,0.97,1,0 +12650830,Quiet room in Bed-Stuy,68585649,Joseph,Brooklyn,Bedford-Stuyvesant,40.69186,-73.94038,Private room,30,80,0,,,1,0 +12650991,"Homey, Peaceful, and Spacious Space",709939,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69527,-73.94784,Private room,50,30,4,2017-04-19,0.11,1,0 +12651245,Relaxing room in vibrant Brooklyn,68719139,Nick,Brooklyn,Bedford-Stuyvesant,40.6872,-73.95773,Private room,40,4,4,2016-10-24,0.11,1,0 +12652765,Private Studio in Herald Square,68729762,Tulika,Manhattan,Midtown,40.7504,-73.98775,Entire home/apt,150,1,2,2016-05-14,0.05,1,0 +12652786,Beautiful Room in Artist's Home,3629866,Shirah,Brooklyn,Bedford-Stuyvesant,40.69409,-73.94815,Private room,75,3,5,2016-07-15,0.13,1,301 +12652833,Spacious Penthouse Bedroom,68729548,Sebastian,Manhattan,Greenwich Village,40.72994,-73.99455,Private room,100,1,0,,,1,0 +12652939,"Sunny, Friendly, Brooklyn Apartment",24944767,Andrea,Brooklyn,Bushwick,40.70068,-73.91985,Private room,65,1,3,2016-05-19,0.08,1,0 +12652964,Cozy 1 bedroom in 2BD apt. in Bed-Stuy. Long term!,13996246,JaNae,Brooklyn,Bedford-Stuyvesant,40.68198,-73.95347,Private room,250,60,2,2016-06-08,0.05,1,0 +12653674,Charming Sun-lit Two-Story Apartment,68735532,Mike,Manhattan,Harlem,40.8181,-73.94632,Entire home/apt,136,1,30,2016-12-28,0.82,1,0 +12655465,Quiet Soho/Nolita Garden Alcove Studio,3635907,Deeva,Manhattan,Nolita,40.72176,-73.99424,Entire home/apt,180,2,166,2019-06-26,4.44,1,213 +12655523,Quiet & Cozy Bushwick Bedroom,46228833,Nina,Brooklyn,Bushwick,40.69617,-73.91119,Private room,55,2,4,2016-09-26,0.11,1,0 +12655931,Birds singing and sunsets in NYC!,18597974,Derric,Queens,Astoria,40.77419,-73.93017,Private room,65,2,0,,,1,0 +12656371,Luxury 2BR Condo in Williamsburg,2686052,Aamir,Brooklyn,Williamsburg,40.71185,-73.94738,Entire home/apt,225,2,39,2019-05-12,1.25,1,0 +12656785,Loft @ Williamsburg Bedford,19912320,Charles,Brooklyn,Williamsburg,40.71572,-73.95376,Private room,99,5,6,2017-09-09,0.17,2,0 +12657039,Heart of Williamsburg - Best Location,62058232,Kuma,Brooklyn,Williamsburg,40.71194,-73.95742,Private room,90,5,3,2016-08-25,0.08,1,0 +12657527,sunny room in NYC!,46047223,Sarah,Brooklyn,Crown Heights,40.66612,-73.93696,Shared room,20,1,0,,,1,0 +12657888,"convenient, furnished APT",68769040,Eva,Manhattan,Upper West Side,40.80183,-73.96373,Private room,980,20,1,2016-07-02,0.03,1,90 +12658099,Cozy Chelsea Apt Great Location,68771036,Mica,Manhattan,Chelsea,40.74516,-73.9959,Private room,100,2,63,2019-07-01,1.88,1,33 +12664893,Sunny Private room Central Harlem,657869,J,Manhattan,Harlem,40.80991,-73.94273,Private room,73,4,69,2019-06-08,1.77,2,122 +12665113,Sunny Townhouse - Brooklyn,18753186,Florence,Brooklyn,Gowanus,40.681,-73.98882,Entire home/apt,380,6,9,2018-08-19,0.26,2,0 +12666669,Private bedroom in the Upper East!,13406954,Jackie,Manhattan,Upper East Side,40.78265,-73.95364,Private room,99,1,2,2016-05-23,0.05,3,0 +12669490,The Oasis of Utica,16623502,Racquel,Brooklyn,East Flatbush,40.64741,-73.92588,Entire home/apt,105,1,43,2018-11-24,1.17,1,13 +12669603,Sunny Suite with Bath near Prospect Park,39185689,Cupid,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95155,Private room,35,3,12,2019-07-02,0.31,1,176 +12670809,Beautiful apartment in Williamsburg,55121,Alexandre,Brooklyn,Williamsburg,40.71351,-73.9647,Entire home/apt,200,5,10,2019-01-03,0.28,1,117 +12670883,Entire private # in a privately own brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93495,Private room,105,10,2,2018-08-17,0.11,3,31 +12671359,Charming 1BR Near Park & Metro!,24012333,Alyss,Manhattan,Upper West Side,40.7842,-73.97467,Entire home/apt,180,1,0,,,1,0 +12672036,CENTRAL PARK / COLUMBUS CIRCLE /1BR,1475015,Mike,Manhattan,Hell's Kitchen,40.76747,-73.98613,Entire home/apt,87,30,2,2018-05-30,0.06,52,365 +12674423,Summer in Brooklyn!,37234211,Chloe,Brooklyn,Prospect-Lefferts Gardens,40.65701,-73.95887,Private room,50,1,0,,,1,0 +12674934,[Midtown NYC] Private room w/ private bathroom,17016231,June,Manhattan,Hell's Kitchen,40.76358,-73.993,Private room,69,1,5,2016-05-30,0.13,1,0 +12675052,Large sunny apartment nr Gramercy,54130816,Stephanie,Manhattan,Kips Bay,40.7398,-73.98208,Entire home/apt,150,4,2,2016-05-18,0.05,1,0 +12675481,Perfect for couples visiting NYC,68250800,Anna,Manhattan,East Harlem,40.79991,-73.9363,Private room,75,1,20,2019-02-20,0.53,2,128 +12676400,"Quiet, pre-war apt on 30th Ave",68878222,Hernan,Queens,Astoria,40.76508,-73.9204,Entire home/apt,215,1,0,,,1,0 +12676434,Charming Upper East Side Apartment,2750607,Roxanne,Manhattan,Upper East Side,40.77963,-73.94897,Entire home/apt,150,4,0,,,1,0 +12679172,Massive 2 Bed near Columbia Univ.,43733051,Hannah,Manhattan,Harlem,40.81171,-73.95491,Entire home/apt,100,2,27,2018-01-20,0.76,1,0 +12679291,Nice and quiet apt Bdway/Times Sq.,44530717,Vincent,Manhattan,Hell's Kitchen,40.75965,-73.99035,Entire home/apt,224,6,1,2016-05-30,0.03,1,0 +12680171,Near all shopping & transportation,68848703,Rupi,Queens,Forest Hills,40.71933,-73.84984,Private room,119,2,21,2019-05-16,0.57,2,363 +12681206,Very big room in Designed apt.15 mins to Manhattan,68909853,Belgin,Queens,Sunnyside,40.73944,-73.92687,Private room,80,2,53,2019-06-09,1.37,1,364 +12681210,Cozy and Comfy in Crown Heights!!!,47187182,Keri,Brooklyn,Crown Heights,40.67428,-73.94373,Private room,75,3,0,,,1,89 +12681730,"Sunny, Chelsea Manhattan apartment",12534916,Jonathan,Manhattan,Chelsea,40.74187,-74.00175,Private room,125,2,0,,,1,0 +12681868,NYC deluxe room 15 min to Manhattan,68907781,Dafni,Queens,Astoria,40.77008,-73.92878,Private room,58,2,67,2019-06-24,1.76,3,20 +12683452,Two Nice Private Rooms in Brooklyn!,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67798,-73.93734,Private room,128,2,3,2016-10-11,0.08,3,12 +12684235,3 day Washington heights/inwood sub,68930733,Nora,Manhattan,Inwood,40.86158,-73.92393,Private room,60,1,0,,,1,0 +12684394,LUXURIOUS APT in MANHATTAN w TERRACE and GYM,49902290,Nikkita,Manhattan,Harlem,40.82469,-73.94029,Private room,115,1,2,2016-12-06,0.05,1,0 +12684755,Simple Apartment in SoHo,39637568,Terence,Manhattan,SoHo,40.72042,-73.99844,Private room,105,1,0,,,1,0 +12685482,Manhattan - Near Subway!,68929870,Ben,Manhattan,Harlem,40.82617,-73.95173,Private room,69,2,0,,,1,0 +12685533,Cute Room in Big Apt in Brooklyn,14933972,Javier,Brooklyn,Bedford-Stuyvesant,40.67858,-73.93713,Private room,76,2,69,2019-06-06,1.81,3,11 +12686241,Large Middle Bedroom & Private Backyard,30848788,Jamie,Brooklyn,Bedford-Stuyvesant,40.69415,-73.9481,Private room,45,4,41,2019-05-17,1.06,2,89 +12687169,Sunny bedroom in gorgeous ParkSlope,49024977,Shelby,Brooklyn,Park Slope,40.67687,-73.97848,Private room,80,1,2,2016-06-05,0.05,1,0 +12693458,Great room with INCREDIBLE view,65884381,Annie,Brooklyn,Williamsburg,40.71249,-73.94674,Private room,75,1,7,2016-09-10,0.19,1,0 +12696421,2BR-E 60TH RESIDENCIES WITH DOORMAN,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96252,Entire home/apt,200,30,0,,,49,324 +12698900,Room in the HEART of Williamsburg,8314626,Janine,Brooklyn,Williamsburg,40.71694,-73.95628,Private room,89,1,148,2019-06-22,3.81,1,303 +12699413,Williamsburg Large Bedroom,66556483,Graham,Brooklyn,Williamsburg,40.71332,-73.94071,Private room,80,1,0,,,1,0 +12700609,Doorman Gym W&D RoofDeck!5112,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79613,-73.96638,Entire home/apt,197,30,2,2017-07-31,0.06,96,104 +12702755,Amazing cozy shared male room on Manhattan IV\),39528519,Max,Manhattan,Lower East Side,40.71187,-73.98878,Shared room,35,14,0,,,28,318 +12703851,Large stylish Mid Century Duplex in Clinton Hill,11109705,Valeska,Brooklyn,Clinton Hill,40.68678,-73.96178,Entire home/apt,180,7,10,2019-05-07,0.78,1,0 +12704159,"Luxury, doorman Building- FIDI",2676750,Shayna,Manhattan,Financial District,40.70789,-74.01521,Private room,90,3,0,,,1,0 +12705155,Spacious Gowanus Apt,69063239,Michael,Brooklyn,Gowanus,40.67246,-73.99164,Entire home/apt,125,1,3,2016-05-23,0.08,1,0 +12705303,SUNNY 1BR / 1B UES APT,3836868,Nina,Manhattan,Upper East Side,40.77458,-73.95116,Entire home/apt,170,3,2,2016-09-19,0.05,1,0 +12705519,Heights Haven,1372942,Drew,Manhattan,Washington Heights,40.8317,-73.9429,Entire home/apt,180,30,6,2017-06-24,0.15,1,0 +12708671,2 bedroom near Time Sq,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76344,-73.9929,Entire home/apt,142,30,4,2018-09-15,0.13,31,307 +12710376,Private Bedroom #5,66269338,Peggy,Queens,Jackson Heights,40.74839,-73.88818,Private room,60,1,14,2019-05-20,0.40,4,300 +12710904,Separate Bedroom on UES - 1 person,59215698,Daniela,Manhattan,Upper East Side,40.76625,-73.9539,Private room,98,2,8,2018-09-22,0.21,2,241 +12711153,Comfortable Private Room w/ 1 Full Bed,65809485,Shirley,Queens,Flushing,40.74903,-73.82938,Private room,40,14,107,2019-06-03,2.75,12,323 +12711232,Private Room In Hamilton Heights,45941973,Sigal,Manhattan,Harlem,40.8273,-73.94904,Private room,59,1,3,2017-11-06,0.08,1,0 +12711351,Cozy Private Room w/ 1 Queen Bed,65809485,Shirley,Queens,Flushing,40.74807,-73.82775,Private room,40,7,102,2019-04-29,2.73,12,105 +12713090,Beautiful West Village Apartment,23919461,Cesar,Manhattan,West Village,40.73399,-74.00549,Entire home/apt,250,3,30,2019-05-27,0.77,2,18 +12713289,Private Bed and Bath for Two!,25076118,Janet,Brooklyn,Sunset Park,40.6367,-74.01516,Private room,80,3,4,2016-09-18,0.11,1,0 +12713863,Private Bedroom #2,66269338,Peggy,Queens,Jackson Heights,40.74776,-73.88827,Private room,50,1,70,2018-07-26,1.82,4,345 +12713950,Comfortable Room Near Columbia U,69124785,Yutian,Manhattan,Morningside Heights,40.81567,-73.95951,Private room,50,7,2,2016-08-13,0.05,1,0 +12713995,Private Full Size Bed #4,66269338,Peggy,Queens,Jackson Heights,40.74859,-73.88628,Private room,65,1,49,2019-06-12,1.31,4,329 +12714891,"Cozy 1BD w Private Terrace, Walk to Museums & Park",69131589,Zhenya And Lenka,Manhattan,Upper East Side,40.78293,-73.94691,Entire home/apt,140,30,6,2016-11-10,0.16,1,0 +12720048,NE..Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68807,-73.92348,Private room,47,3,32,2019-05-12,0.91,4,258 +12723066,NYC 2 BDRM Apt. Apt. 3A,17770287,Nina,Manhattan,Midtown,40.7503,-73.98144,Entire home/apt,184,30,9,2019-05-17,0.25,14,332 +12725523,Top Floor Newly Renovated 1-Bedroom,6472334,Matthew,Brooklyn,Williamsburg,40.70832,-73.95336,Entire home/apt,139,4,12,2016-11-28,0.31,2,0 +12726907,Sunny Williamsburg apartment,4658415,Michael,Brooklyn,Williamsburg,40.71502,-73.94749,Entire home/apt,57,1,5,2018-07-29,0.13,1,0 +12727438,Entire 1 BR Williamsburg apt,69203926,Marios,Brooklyn,Williamsburg,40.70614,-73.94983,Entire home/apt,150,7,0,,,1,0 +12727779,Bright single bedroom in duplex with backyard.,69205600,Daniel,Brooklyn,Bushwick,40.70324,-73.92943,Private room,43,1,0,,,1,0 +12728514,1 Bedroom in a 4 Bedroom Apartment,69210611,Corey,Manhattan,Harlem,40.8244,-73.944,Private room,50,1,1,2016-05-31,0.03,1,0 +12730083,Elegant 2 Bdrm Apt W/ Add. 2 Rms on Lower Level,15089968,Anna,Queens,Richmond Hill,40.69961,-73.84158,Entire home/apt,250,3,40,2019-01-01,1.04,2,189 +12730434,"Bright, airy apartment in Brooklyn",19710054,Leah,Brooklyn,Bedford-Stuyvesant,40.68831,-73.95602,Entire home/apt,125,2,5,2017-08-08,0.14,1,0 +12730600,Garden View Room Available,3673451,Nikki,Brooklyn,Williamsburg,40.70577,-73.95193,Private room,50,3,3,2018-12-31,0.21,2,0 +12731689,Flatiron NYC 1 Bed/1 Bath Apt!,1911171,Justin,Manhattan,Midtown,40.7421,-73.98319,Entire home/apt,240,4,59,2019-06-17,1.56,1,37 +12732671,"Sunny Room in Flatlands, Brooklyn!",69236458,Monique Ngozi,Brooklyn,Flatlands,40.62551,-73.93545,Private room,60,5,4,2018-09-11,0.12,1,346 +12733430,Bright & Spacious Studio,10777637,Andrea,Brooklyn,Williamsburg,40.71696,-73.95382,Entire home/apt,160,1,9,2016-09-26,0.24,1,0 +12733742,Cozy room in Manhattan Morningside,69243005,Jen,Manhattan,Harlem,40.82555,-73.95159,Private room,45,3,1,2016-06-14,0.03,2,0 +12734487,1 Single Room in 4-Bedroom APT,69243005,Jen,Manhattan,Harlem,40.82433,-73.95049,Private room,38,5,0,,,2,0 +12734936,Huge Room with Private Bathroom,20354912,James,Brooklyn,Bedford-Stuyvesant,40.69355,-73.93361,Private room,100,3,0,,,1,0 +12735625,Private Bedroom in 2 BR apartment,69254072,Morgan,Manhattan,Inwood,40.86468,-73.92209,Private room,85,1,0,,,1,0 +12735969,Furnished FUNky room in artist loft,2711820,Adam,Brooklyn,Bedford-Stuyvesant,40.69301,-73.93098,Private room,50,7,2,2016-05-17,0.05,1,0 +12735986,Spacious Studio 15 min to Manhattan,69258420,Arturo,Queens,Astoria,40.75953,-73.91182,Entire home/apt,135,5,18,2019-05-26,0.47,1,363 +12736761,Comfortable and cozy Apartment in Manhattan,50601037,Monika,Manhattan,Harlem,40.82863,-73.94757,Entire home/apt,259,3,57,2019-06-10,1.51,1,175 +12737192,Great Harlem room,20557896,Michele,Manhattan,Harlem,40.82322,-73.94002,Private room,50,20,0,,,1,42 +12737335,Room for two in NYC!,69267322,Jacob,Manhattan,Washington Heights,40.8342,-73.94303,Private room,60,1,1,2016-06-04,0.03,1,0 +12737660,Large and sunny BR Bushwick,69269694,Mickael,Brooklyn,Williamsburg,40.70474,-73.93812,Private room,70,3,3,2016-08-23,0.08,1,0 +12737915,Artist Loft East Williamsburg,15019621,Kennedy,Brooklyn,Williamsburg,40.71401,-73.93672,Private room,99,1,2,2016-05-11,0.05,1,0 +12738047,clean and tidy separated livingroom,21492250,Zhenyu,Manhattan,Upper West Side,40.79997,-73.96529,Shared room,80,5,0,,,1,0 +12738346,Lightfull and Quiet apartment 15 min to Manhattan.,69274944,Dimitris,Queens,Astoria,40.76421,-73.92138,Entire home/apt,190,3,32,2019-06-09,0.85,1,53 +12738473,Large Modern Studio Apartment UES,69276225,Amanda,Manhattan,Upper East Side,40.77873,-73.94917,Entire home/apt,115,14,1,2016-08-17,0.03,1,0 +12738790,Bright & Spacious E. Village 1 Bdrm,18351258,Michael,Manhattan,East Village,40.72872,-73.98098,Entire home/apt,250,2,29,2018-05-13,0.76,1,0 +12740226,Cozy room in heart of Williamsburg,3038856,Samir,Brooklyn,Williamsburg,40.71403,-73.96171,Private room,70,1,9,2018-05-28,0.24,3,0 +12740726,Gorgeous new apartment with amazing views,11526146,Nick,Brooklyn,Williamsburg,40.7119,-73.94638,Entire home/apt,225,3,19,2018-12-02,0.85,1,0 +12744759,Private bedroom in Crown Heights!,38557313,Charlötte,Brooklyn,Crown Heights,40.67295,-73.95395,Private room,31,5,1,2016-05-31,0.03,1,0 +12747434,NW..Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68899,-73.92339,Private room,40,2,39,2019-04-15,1.02,4,236 +12747935,S...Comfortable Room All Inclusive,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68962,-73.92346,Private room,37,3,40,2019-05-10,1.06,4,212 +12749145,Bright & Spacious Studio Apartment,2838615,Matt,Brooklyn,Williamsburg,40.71121,-73.96698,Entire home/apt,239,3,5,2018-01-02,0.13,1,0 +12749156,Your Hudson Heights Hideaway ◔‿◔,69189948,Ella,Manhattan,Washington Heights,40.84848,-73.9343,Private room,75,2,167,2019-07-07,4.60,3,310 +12751037,"Large, Private Bedroom near Union Square.",69355658,K,Manhattan,Gramercy,40.73328,-73.9859,Private room,90,3,23,2019-06-23,0.60,1,0 +12751471,Cozy 'n Quiet Upper Manhattan Room,4497670,Michael,Manhattan,Inwood,40.86927,-73.91719,Private room,46,7,1,2016-08-07,0.03,1,0 +12752736,"Columbia University,COSO房源2017暑假招租,5月31日-7月31日",69366248,岑,Manhattan,Upper West Side,40.8001,-73.9658,Private room,35,45,0,,,1,0 +12753144,"Charming, Spacious 1 Bd-Great area!",5895565,Sarah,Brooklyn,Flatbush,40.64123,-73.96289,Entire home/apt,85,21,0,,,1,0 +12753434,Entire Times Square 1BD Apartment,4549084,Judy,Manhattan,Hell's Kitchen,40.75657,-73.9942,Entire home/apt,175,3,59,2019-06-28,1.63,1,14 +12754199,Quiet Queens Basecamp,10135994,Laurence,Queens,Bayside,40.73975,-73.76157,Private room,60,1,0,,,1,0 +12755138,DSGN Doorman One Bedroom 5186,16098958,Jeremy & Laura,Manhattan,Financial District,40.70555,-74.00812,Entire home/apt,155,30,1,2016-08-13,0.03,96,335 +12755571,Studio in the heart of Manhattan,69384130,Nina,Manhattan,Midtown,40.75227,-73.97351,Entire home/apt,143,1,1,2016-05-13,0.03,1,0 +12757980,"East Village, sunny, five room, three beds.",69391155,Myles,Manhattan,East Village,40.73167,-73.98581,Entire home/apt,140,7,0,,,1,0 +12758216,Sunlit Studio on UWS!,68388626,Amanda,Manhattan,Upper West Side,40.78491,-73.97447,Entire home/apt,120,2,4,2016-08-22,0.11,1,0 +12759453,The Clean Comfortable Modern Lounge,48671504,Albert,Queens,Cambria Heights,40.68891,-73.73531,Entire home/apt,79,2,90,2019-06-24,2.35,1,331 +12760088,Modern Apartment. Central Park. B/C,52630170,Flora,Manhattan,Harlem,40.8033,-73.95771,Private room,50,3,2,2016-05-23,0.05,1,0 +12761910,3BR Queens (3rd fl)- 20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73854,-73.87407,Private room,289,2,115,2019-06-27,2.99,6,280 +12762497,Spacious Town House near Park,11811612,Heather,Brooklyn,Flatbush,40.65392,-73.95364,Entire home/apt,62,15,7,2018-09-06,0.19,1,0 +12763008,Spacious Master Bedroom 20 mins away from NYC,69433039,Jason,Queens,Sunnyside,40.73852,-73.92777,Private room,85,10,27,2019-05-27,0.71,1,125 +12763385,Bedroom in Classic Clinton Hill,9784153,Santiago,Brooklyn,Clinton Hill,40.68752,-73.9618,Private room,99,3,0,,,1,0 +12763721,"Comfortable, clean and inviting.",69435907,Ranny,Brooklyn,East Flatbush,40.65886,-73.91919,Private room,50,2,149,2019-07-07,3.86,1,92 +12764005,Brand New Clean and Sunny one bed!,7465850,Flower,Brooklyn,Bushwick,40.69761,-73.92495,Entire home/apt,120,4,43,2019-06-24,1.15,1,243 +12764378,Brooklyn Suite,69255438,Mark,Brooklyn,Crown Heights,40.67828,-73.95051,Entire home/apt,180,1,1,2016-05-23,0.03,1,0 +12764482,Times Square | Furnished | Apartment & Bedroom,69446151,Jinsoon,Manhattan,Hell's Kitchen,40.75726,-73.9953,Entire home/apt,90,5,1,2018-03-28,0.06,1,0 +12765391,Unlisted,3311487,Scott,Brooklyn,Williamsburg,40.71165,-73.96322,Private room,80,1,0,,,3,0 +12765858,Cozy room near central park,69457013,Dingyu,Manhattan,Upper West Side,40.79768,-73.9633,Private room,49,30,0,,,1,0 +12772942,Huge and cozy bedroom in the heart of Williamsburg,4979093,Nicole,Brooklyn,Williamsburg,40.70898,-73.95086,Private room,90,3,1,2018-01-02,0.05,1,0 +12772993,Penn Station / Chelsea North room,37521233,Jay,Manhattan,Chelsea,40.75053,-73.99685,Private room,55,2,5,2016-11-26,0.13,1,0 +12774144,Private big room/Queen bed/Nice Apt,65621401,Robert,Queens,Ditmars Steinway,40.77822,-73.90895,Private room,49,1,7,2019-06-07,0.18,1,341 +12774249,Uptown Bohemian 1BR with Park View,20892338,Elisse,Manhattan,Harlem,40.82064,-73.94646,Entire home/apt,105,2,3,2016-05-30,0.08,1,0 +12774885,"Spacious, cozy bedroom in a private home",69507287,Sarah,Bronx,Wakefield,40.88871,-73.86175,Private room,40,1,151,2019-07-01,4.01,1,338 +12774975,Hamiliton Heights Home,33363604,Lauren,Manhattan,Harlem,40.81934,-73.95668,Private room,50,2,0,,,1,0 +12775106,Apartment NYC - 10 to 20 June,1722054,Cristian,Queens,Long Island City,40.74657,-73.94555,Entire home/apt,120,5,1,2016-06-19,0.03,1,0 +12776694,Private Bedroom in the East Village,50533072,Kate,Manhattan,East Village,40.72591,-73.97947,Private room,90,1,3,2016-07-27,0.08,1,0 +12778383,Full 1 BR apartment in East Williamsburg/Bushwick,6513527,Blase,Brooklyn,Williamsburg,40.70585,-73.94178,Entire home/apt,110,6,4,2018-05-08,0.15,1,0 +12778678,East Midtown Modern Alcove Studio 3,45595980,Tny,Manhattan,Midtown,40.76049,-73.96621,Entire home/apt,140,30,5,2018-12-23,0.15,12,290 +12780475,Sunny Spacious Apt in Astoria w/ back yard access,48154615,Kasey,Queens,Astoria,40.75735,-73.92134,Entire home/apt,125,3,21,2019-06-25,0.58,1,345 +12780595,Luxury White Glove Apartment 57th St and Broadway,69545387,Marion,Manhattan,Midtown,40.76628,-73.98308,Entire home/apt,95,14,3,2018-08-26,0.13,1,159 +12780993,Washington Heights Studio,18111963,Patricia,Manhattan,Washington Heights,40.84205,-73.93716,Entire home/apt,75,5,0,,,1,0 +12781270,Nice and cozy little apt available,69548489,Alba,Bronx,Pelham Gardens,40.86412,-73.84664,Entire home/apt,75,2,92,2019-07-06,2.45,1,265 +12782370,2 bed Apartment close to Times Sq,280830,George,Manhattan,Hell's Kitchen,40.76153,-73.98915,Entire home/apt,244,2,176,2019-07-01,4.57,1,282 +12783632,NYC Mini Hotel,57230304,Imanuelly,Queens,Elmhurst,40.74037,-73.8861,Private room,75,1,2,2019-05-26,0.92,3,351 +12786165,Cozy Private room in Chelsea !,69598657,Vh,Manhattan,Chelsea,40.75094,-73.99748,Private room,75,2,115,2019-06-23,2.99,1,37 +12788962,WE'RE HOME TOTO! WE ARE HOME!,390251,Lilly,Manhattan,Harlem,40.79986,-73.95387,Private room,105,2,5,2019-04-08,0.36,4,15 +12791778,Newly renovated williamsburg bedroom near subway,17239096,David,Brooklyn,Williamsburg,40.71262,-73.94466,Private room,100,2,6,2018-02-19,0.28,1,0 +12792132,Gramercy Studio,29859280,Denise,Manhattan,Gramercy,40.7367,-73.98099,Entire home/apt,150,2,13,2019-06-02,0.34,1,26 +12793649,Charming 2br Near Yankee Stadium,69668616,Nathaniel,Bronx,Concourse,40.82575,-73.92421,Entire home/apt,175,1,0,,,1,0 +12794520,"Single bedroom, Manhattan",69677082,James,Manhattan,Washington Heights,40.84278,-73.93916,Private room,35,3,3,2016-05-16,0.08,1,0 +12794791,PRIVATE ROON IN NEW YORK MANHATTAN,11725608,Juan,Manhattan,Washington Heights,40.84021,-73.94191,Private room,51,3,68,2019-07-01,1.78,2,313 +12795006,"large studio ,private bathroom and own entrance",64350843,Diane,Manhattan,Upper East Side,40.77166,-73.95797,Private room,105,14,7,2019-06-29,0.19,1,29 +12795109,Charming Pr Room in E. Williamsburg,59375053,Jacqueline,Brooklyn,Williamsburg,40.70766,-73.94767,Private room,80,2,2,2016-05-29,0.05,1,0 +12795290,Room in East Village,4929873,Larissa,Manhattan,East Village,40.72073,-73.97839,Private room,84,3,163,2019-06-23,4.22,1,294 +12795851,Clean & Spacious Bushwick Loft (front),21467726,Tyler,Brooklyn,Williamsburg,40.70294,-73.93711,Private room,70,1,10,2019-04-14,0.29,2,281 +12796602,COZY STUDIO in BROOKLYN,66978896,Viviana,Brooklyn,Bushwick,40.69159,-73.91171,Entire home/apt,70,3,26,2019-07-05,0.67,2,206 +12796750,Large one bedroom apt in Greenpoint,69702850,Michael,Brooklyn,Greenpoint,40.72453,-73.95529,Entire home/apt,195,7,0,,,1,0 +12797047,Cute little Studio in East Village/Alphabet City,67311188,Viola,Manhattan,East Village,40.72125,-73.98058,Entire home/apt,150,5,1,2017-08-12,0.04,1,0 +12797684,"",69715276,Yan,Manhattan,Upper West Side,40.79843,-73.96404,Private room,100,1,0,,,2,0 +12797920,Large Bedroom near Subway,69715276,Yan,Manhattan,Upper West Side,40.79806,-73.96167,Private room,100,1,1,2016-07-31,0.03,2,0 +12798141,Cute private room in great location!,3231109,Trish,Manhattan,Morningside Heights,40.81127,-73.95922,Private room,85,3,9,2019-07-03,0.83,2,142 +12804309,Danish Modern in Brownstone,21221697,Devon,Brooklyn,Clinton Hill,40.68444,-73.96285,Entire home/apt,225,3,95,2019-06-22,2.48,1,122 +12804693,Quiet bedroom on St Marks,69782291,Karen,Manhattan,East Village,40.7291,-73.98628,Private room,120,5,13,2017-09-23,0.34,1,0 +12805625,"Sunny, modern apartment in Lower East Side",5826163,Ayesha,Manhattan,Lower East Side,40.71989,-73.98557,Private room,90,4,1,2019-04-28,0.42,1,90 +12806016,Ditmas Park Beauty,69794747,Anna,Brooklyn,Flatbush,40.64159,-73.95985,Entire home/apt,175,3,96,2019-06-22,2.50,1,209 +12806177,Acogedora habitación en el corazón de Manhattan,66469868,Zoraida,Manhattan,Washington Heights,40.83344,-73.94442,Private room,65,2,46,2019-06-23,1.20,1,72 +12806356,"Elegant/Classy Artist Loft, 2 Priv bdms/CLEAN",8416362,Margaret,Queens,Long Island City,40.74321,-73.95533,Entire home/apt,260,21,17,2018-12-16,0.46,1,42 +12806940,Huge New 1700sf Brownstone Duplex,1672734,Larry,Brooklyn,Bedford-Stuyvesant,40.68285,-73.93862,Entire home/apt,225,2,33,2019-07-01,0.85,1,1 +12807447,BrownBrick in Park Slope Brownstone,42413378,Hilal & Maryam,Brooklyn,South Slope,40.66548,-73.98196,Entire home/apt,135,3,148,2019-06-21,3.84,2,91 +12810131,1 Bedroom June Through July,25971488,Kevin,Brooklyn,Brooklyn Heights,40.69299,-73.99283,Private room,135,1,0,,,1,0 +12810210,Sun Drenched Studio,140226,An,Brooklyn,Williamsburg,40.71764,-73.95291,Entire home/apt,195,3,23,2019-06-23,0.67,1,225 +12810452,Charming 1BR in heart of Chinatown,15867885,Marielle,Manhattan,Two Bridges,40.71114,-73.99874,Private room,99,2,3,2016-06-26,0.08,1,0 +12811459,Superhost-Designer Legal 4 Bed Townhouse Midtown 2,69852641,Lisa,Manhattan,Hell's Kitchen,40.76303,-73.98767,Entire home/apt,1000,2,24,2019-05-30,0.71,3,274 +12812370,Newly updated studio with luxury charm,9631746,Charese,Manhattan,Hell's Kitchen,40.7592,-73.99313,Entire home/apt,177,25,21,2019-04-03,0.65,1,10 +12812504,Cozy room close to Columbia,9472822,Catarina,Manhattan,Harlem,40.81995,-73.95266,Private room,59,1,0,,,1,0 +12812544,High SkyView W&D GYM Doorman 5180,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77725,-73.95137,Entire home/apt,190,30,3,2017-10-04,0.08,96,330 +12812577,Superhost-Pristine 4 Bed Legal Townhouse Midtown 1,69852641,Lisa,Manhattan,Hell's Kitchen,40.763,-73.98642,Entire home/apt,1000,2,23,2019-06-09,0.70,3,240 +12812618,Private room in Williamsburg,25233652,Mari,Brooklyn,Williamsburg,40.71279,-73.96291,Private room,80,2,6,2018-01-01,0.16,1,0 +12812630,Private Room rent temporary stay,69866168,Munnesa,Queens,Jamaica,40.69172,-73.79495,Private room,60,1,109,2017-07-30,2.84,1,98 +12813050,Family Friendly Gramercy Park Gem,30789837,Shane,Manhattan,Gramercy,40.73682,-73.98336,Entire home/apt,195,5,1,2016-05-13,0.03,1,0 +12813068,NEW NICE CLEAN & COZY PRIVATE ROOM,21091779,Caroline,Brooklyn,Bedford-Stuyvesant,40.68552,-73.9227,Private room,60,1,104,2019-06-30,2.68,3,293 +12813206,Sunny Apartment Across from Sunset Park,7609268,Zoey,Brooklyn,Sunset Park,40.65038,-74.00551,Entire home/apt,99,3,25,2019-06-30,0.73,1,12 +12814195,Great room in Williamsburg,545273,Gabriel,Brooklyn,Williamsburg,40.71728,-73.94345,Private room,79,5,0,,,1,0 +12814578,Colorful Brooklyn Garden Casita,40332331,Joyce,Brooklyn,Windsor Terrace,40.65827,-73.97962,Entire home/apt,125,2,117,2019-07-08,3.08,2,262 +12814685,"Great location in NYC, clean, quiet and cozy",69890625,Grace,Brooklyn,Clinton Hill,40.68389,-73.96026,Private room,89,1,15,2019-05-14,0.43,1,179 +12814717,Big and cozy room,69891208,Anna,Manhattan,Washington Heights,40.85147,-73.93618,Private room,55,3,5,2017-08-25,0.14,1,0 +12814991,"NYC Sanctuary, Skyline Views & Rooftop",34034047,Cory,Queens,Ditmars Steinway,40.77423,-73.90715,Entire home/apt,130,3,17,2019-07-07,0.45,1,11 +12814997,Sunny room with a/c in new building,13007287,Brandon,Brooklyn,Bedford-Stuyvesant,40.68147,-73.95814,Private room,70,3,36,2017-06-23,0.95,1,0 +12815139,Beautiful Tranquil Bright Prime Location 1 bedroom,33816358,Rachel,Brooklyn,Prospect Heights,40.67764,-73.9647,Entire home/apt,110,3,8,2017-05-22,0.23,1,0 +12821417,"Private, Sunny Room in East Village",69944410,Michelle,Manhattan,East Village,40.73054,-73.98339,Private room,100,7,1,2016-05-04,0.03,1,0 +12823429,"Artistic, Cozy Room in Williamsburg",6707228,Emily,Brooklyn,Williamsburg,40.70748,-73.9461,Private room,145,1,0,,,1,0 +12825700,Comfortable Chelsea Oasis,5346314,Saskia,Manhattan,Chelsea,40.74267,-73.99915,Entire home/apt,195,3,1,2016-07-04,0.03,1,0 +12826965,Cozy Bright Private Room in NY (Only for female),69989416,Sammie,Queens,Flushing,40.7555,-73.82712,Private room,30,4,54,2019-04-21,1.39,1,64 +12827123,Beautiful Park Slope Room with Rooftop & Backyard,15398860,Harlan,Brooklyn,South Slope,40.66631,-73.98268,Private room,50,20,0,,,1,0 +12827146,"Cozy One Bedroom Apartment in Astoria, NYC",18922352,Israel,Queens,Astoria,40.76368,-73.91518,Entire home/apt,68,4,11,2017-10-11,0.31,1,0 +12827921,Spacious LES Room& Private Backyard,13023370,Andrew,Manhattan,Lower East Side,40.71902,-73.98506,Private room,90,1,6,2016-09-06,0.16,1,0 +12828338,Cozy Chic Harlem Apartment,7159107,Carly,Manhattan,Harlem,40.82563,-73.94091,Entire home/apt,85,3,1,2018-03-14,0.06,1,0 +12829063,Large & Unique multi Rooms Loft close to all,28303435,Ohad,Brooklyn,Prospect Heights,40.67983,-73.96931,Entire home/apt,200,1,43,2019-05-27,1.13,1,232 +12830516,Entire apartment next to McGolrick Park!,3510993,Aaron,Brooklyn,Greenpoint,40.72311,-73.94184,Entire home/apt,100,7,0,,,1,0 +12830905,Spacious East Village Bedroom,70026602,Kathryn,Manhattan,East Village,40.72817,-73.98041,Private room,150,2,18,2017-03-16,0.47,1,0 +12831088,Gorgeous 1BR near Columbus Circle,28340943,Jessica,Manhattan,Upper West Side,40.77861,-73.98336,Entire home/apt,199,1,0,,,1,0 +12831310,"Cozy bedroom, awesome East Village apartment!",70030943,Carolyn,Manhattan,East Village,40.72358,-73.97593,Private room,60,1,2,2016-07-06,0.05,1,0 +12832062,The Yellow Bungalow of Rockaway Beach,1106731,Alexander,Queens,Rockaway Beach,40.58943,-73.81192,Entire home/apt,135,2,27,2019-06-21,0.72,2,0 +12832227,Sunny Bedroom + Private Living Room,70039705,Nathan,Manhattan,Upper West Side,40.8032,-73.96495,Private room,100,1,5,2016-08-14,0.13,1,0 +12832371,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77102,-73.95873,Entire home/apt,163,30,1,2017-10-14,0.05,87,350 +12832899,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.76368,-73.96153,Entire home/apt,187,30,2,2017-10-31,0.09,87,287 +12833187,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76297,-73.96252,Entire home/apt,225,30,1,2017-12-27,0.05,87,365 +12834317,Private 1 Bedroom Garden Level Apt,3404004,Diana,Brooklyn,Brooklyn Heights,40.69816,-73.99361,Entire home/apt,120,1,1,2016-05-09,0.03,1,0 +12834386,Awesome spacious room by the park,1216362,Camila,Brooklyn,Flatbush,40.65424,-73.96008,Private room,73,1,43,2018-11-01,1.37,4,188 +12834748,A bay window on Brooklyn,10273704,Matt,Brooklyn,Fort Greene,40.68812,-73.97666,Private room,100,3,148,2019-06-22,3.83,2,42 +12835123,1 Bedroom Located in Trendy Williamsburg,70065232,Ramon,Brooklyn,Williamsburg,40.71154,-73.95795,Entire home/apt,99,5,1,2018-04-23,0.07,1,0 +12835664,"New 3BR, 2 Full Bath with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66618,-73.93156,Entire home/apt,300,3,39,2018-07-24,1.03,4,259 +12836932,Spacious Private room near Columbia,70082670,Gina,Manhattan,Morningside Heights,40.80539,-73.96409,Entire home/apt,92,1,2,2016-05-09,0.05,1,0 +12844709,comfy bedroom in williamsburg,2238348,Abigail,Brooklyn,Williamsburg,40.71311,-73.94016,Private room,42,8,0,,,1,0 +12845862,Upper East Side Private Room and Bath: A+ location,7443904,Mohammad,Manhattan,Upper East Side,40.77912,-73.95594,Private room,100,3,8,2017-06-29,0.21,1,0 +12845943,Fully Furnished Room in Quiet Apt,51663418,Melissa,Queens,Ditmars Steinway,40.77329,-73.9163,Private room,40,14,1,2016-08-10,0.03,1,0 +12846033,Spacious West Village Loft Studio,62225580,Elin,Manhattan,West Village,40.73326,-74.00844,Entire home/apt,225,14,0,,,1,0 +12846048,"PRIME LOCATION, PARK SLOPE -BKLYN: 4BR FAMILY TYPE",23144316,Anna,Brooklyn,Park Slope,40.66896,-73.97641,Entire home/apt,170,13,4,2018-08-20,0.11,1,46 +12846229,Beautiful family apt in Astoria,8752988,Julia,Queens,Astoria,40.7613,-73.9153,Entire home/apt,125,1,0,,,1,0 +12846584,1 bed room rail road apartment,70164336,Michael,Brooklyn,Greenpoint,40.73282,-73.9564,Entire home/apt,109,30,9,2017-03-31,0.26,1,0 +12847429,Spacious 2 BR in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76014,-73.99039,Entire home/apt,150,30,6,2019-05-31,0.32,91,126 +12847720,"Prime location, close to everything. Females only",10737943,David,Manhattan,Upper West Side,40.78528,-73.97623,Private room,50,30,3,2016-12-02,0.09,10,365 +12847902,Beautiful modern home!,46938101,Mario,Bronx,Concourse,40.83211,-73.92052,Private room,49,1,33,2019-06-21,0.87,1,348 +12848383,Lovely Brooklyn Duplex near Prospect Park 3BR,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65341,-73.97877,Entire home/apt,265,2,8,2017-01-02,0.21,4,0 +12850186,Cozy bedroom in Downtown Manhattan,70198067,Hector,Manhattan,Financial District,40.71028,-74.00929,Private room,80,1,0,,,1,0 +12850887,Zen-like Room with Exposed Brick in East Bushwick,64062688,Leanna,Brooklyn,East New York,40.67153,-73.89112,Private room,44,3,4,2016-09-11,0.11,1,0 +12850911,Huge Room in Stunning Pre-war NY Loft,44351733,Tana,Manhattan,Tribeca,40.71948,-74.00517,Private room,260,4,22,2018-12-21,0.58,1,3 +12851015,Midtown East XL 1 BR,61391963,Corporate Housing,Manhattan,Midtown,40.75755,-73.9666,Entire home/apt,133,30,3,2019-06-01,0.10,91,342 +12851100,New studio apartment 4mins from subway in Astoria,3248699,Snezhana,Queens,Ditmars Steinway,40.77141,-73.91415,Entire home/apt,80,7,15,2019-05-20,0.41,1,0 +12851307,Private Room in Williamsburg Duplex,70208173,Mark,Brooklyn,Williamsburg,40.71267,-73.95367,Private room,1000,35,6,2016-06-02,0.16,1,365 +12851607,Studio Apartment near Columbia U,68322243,Christopher,Manhattan,Upper West Side,40.80129,-73.96611,Entire home/apt,154,4,3,2016-08-26,0.08,1,0 +12852083,Boerum Hill Beautiful Spacious Two Bedrooms Apt.,700224,Shane & Nicole,Brooklyn,Gowanus,40.68349,-73.98518,Entire home/apt,150,29,9,2019-05-04,0.27,4,326 +12852935,Private room in the heart of NY,2344389,Yaniv,Manhattan,Hell's Kitchen,40.76205,-73.9888,Private room,150,5,0,,,1,0 +12853281,Brand New Luxurious Studio Midtown,61391963,Corporate Housing,Manhattan,Midtown,40.75572,-73.96936,Entire home/apt,125,30,7,2019-05-12,0.23,91,149 +12853330,COZY HARLEM ROOM BY THE WATER - CREATIVE SPACE,31237380,Keith,Manhattan,Harlem,40.82183,-73.9378,Private room,60,2,1,2016-06-26,0.03,1,0 +12854022,Cozy room in new duplex apartment!!,70235809,Sandra,Brooklyn,Bushwick,40.69301,-73.92683,Private room,95,1,0,,,1,0 +12854724,Great Modern Studio in Chelsea!,49622928,Oxana,Manhattan,Chelsea,40.74066,-73.99895,Entire home/apt,75,1,132,2019-06-23,4.58,1,317 +12854734,LIVE HERE!! COZY STUDIO IN CHELSEA!,70244331,Andrey,Manhattan,Chelsea,40.74078,-73.99923,Entire home/apt,100,1,198,2019-06-23,5.16,1,269 +12855469,Gorgeous Studio in Doorman Luxury!,70251988,Brendan,Manhattan,Upper East Side,40.78147,-73.95284,Entire home/apt,100,365,27,2018-01-03,0.78,1,17 +12855923,New York Space,33906660,Trevor,Manhattan,Harlem,40.8242,-73.94777,Private room,65,1,154,2019-07-02,4.03,1,361 +12856181,Charming 1 BR in West Village,18975770,Martina,Manhattan,West Village,40.73064,-74.00351,Entire home/apt,200,6,5,2018-11-24,0.24,2,17 +12856529,COZY APARTMENT NEXT TO CENTRAL PARK,1491770,Rene,Manhattan,Midtown,40.76386,-73.97702,Entire home/apt,180,3,1,2016-05-21,0.03,1,0 +12856720,5mn location from Manhattan midtown,33950089,Abdoulaye,Queens,Long Island City,40.75166,-73.94028,Private room,60,1,36,2019-06-04,1.05,1,316 +12856992,Awesome deal,15445748,Uğur,Queens,Sunnyside,40.73748,-73.92894,Private room,33,7,6,2016-10-28,0.18,1,337 +12862929,Bright and Airy Bedroom,1572315,Deanna,Manhattan,Murray Hill,40.74775,-73.97702,Private room,112,3,23,2019-07-04,0.61,1,18 +12863594,Bright Loft-Like Apartment,70321716,Y&O,Brooklyn,Crown Heights,40.67212,-73.9439,Entire home/apt,150,15,0,,,1,0 +12863815,"Amazing 1BR, heart of West Village",9679850,Mike,Manhattan,West Village,40.73361,-74.00218,Entire home/apt,230,2,39,2019-03-12,1.03,1,0 +12864095,Cute Room in Downtown BK,7953376,Mary,Brooklyn,Boerum Hill,40.68558,-73.98065,Private room,65,1,0,,,1,0 +12864193,Entire UWS Apartment for up to 6!,29417940,Tolley,Manhattan,Upper West Side,40.77814,-73.97627,Entire home/apt,375,2,2,2016-11-26,0.06,2,0 +12864784,Private Room - West Village/Soho,7977178,Abby,Manhattan,SoHo,40.72806,-74.00381,Private room,130,3,18,2018-07-21,0.49,3,304 +12864971,Large Studio Seconds From NYC,70333355,Makram,Queens,Ditmars Steinway,40.77852,-73.90836,Entire home/apt,400,1,0,,,1,0 +12865332,Room 108th and central park west,51684417,Eduardo,Manhattan,Upper West Side,40.80032,-73.95884,Private room,120,1,1,2016-07-31,0.03,2,0 +12865981,1 bed room Presidential Suite,70342170,K,Manhattan,Midtown,40.75337,-73.97289,Entire home/apt,900,3,0,,,1,358 +12867918,DESIGNER STUDIO NEAR CENTRAL PARK UPPER EAST SIDE,9293730,Inna,Manhattan,Upper East Side,40.76875,-73.95723,Entire home/apt,150,30,12,2019-06-01,0.35,16,325 +12867950,Beautiful summer sublet in Astoria,70358943,Jeff,Queens,Ditmars Steinway,40.78192,-73.91439,Private room,40,1,0,,,1,0 +12868264,Brownstone apartment in Bed Stuy,26295451,Jessica,Brooklyn,Bedford-Stuyvesant,40.68743,-73.93045,Private room,150,1,14,2017-05-21,0.40,1,0 +12869174,Homey space in great neighborhood,817948,Ariela,Brooklyn,Flatbush,40.63874,-73.95645,Private room,30,1,1,2016-05-12,0.03,1,0 +12869561,West 15th Street Cozy Chelsea 1bd Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73887,-73.99983,Entire home/apt,191,30,1,2018-07-31,0.09,87,323 +12869567,"West 33rd street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75225,-73.99508,Entire home/apt,219,30,5,2019-02-23,0.24,87,344 +12869662,Bright Williamsburg Loft w Balcony,8636489,Evan,Brooklyn,Williamsburg,40.71701,-73.95685,Entire home/apt,250,5,14,2018-07-01,0.41,1,0 +12869679,Loft Apartment in Williamsburg,1233402,Evan,Brooklyn,Williamsburg,40.7125,-73.9529,Entire home/apt,180,3,3,2016-06-06,0.08,1,0 +12869930,2 bedroom Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76313,-73.99482,Entire home/apt,115,30,4,2019-04-17,0.12,31,65 +12870344,MIDTOWN EAST PRIVATE ROOM,70382366,Alexandra,Manhattan,Midtown,40.75347,-73.97293,Private room,145,1,0,,,1,0 +12871039,Stylish Loft in Times Square with Roof Deck,30368670,Juan,Manhattan,Hell's Kitchen,40.76474,-73.99154,Entire home/apt,399,180,29,2018-08-03,0.84,2,0 +12871310,Charming and spacious Brooklyn apt,29959914,Peter,Brooklyn,Bushwick,40.68616,-73.91543,Private room,52,1,3,2016-09-26,0.08,1,0 +12871708,ENTIRE PLACE,70396243,Yvelisse,Manhattan,Washington Heights,40.85558,-73.93777,Entire home/apt,95,1,104,2019-06-23,3.30,1,81 +12872882,HUGE Willamsburg Duplex Loft,4391441,Mark,Brooklyn,Williamsburg,40.70678,-73.94918,Entire home/apt,190,2,84,2019-05-29,2.19,1,8 +12873159,5TH AVE~~RoofTop Deck ~~City Views @EMPIRE ST BLDG,70409953,Michael,Manhattan,Chelsea,40.74849,-73.98957,Entire home/apt,480,5,106,2019-06-29,2.99,1,263 +12873930,Upper West Side 1BR next to subway/Central Park,70419222,Doreen,Manhattan,Upper West Side,40.78458,-73.97836,Entire home/apt,180,3,2,2016-08-16,0.06,1,0 +12874443,Modern and Bright Studio Apt in Williamsburg,8534626,Shannon,Brooklyn,Greenpoint,40.72083,-73.95401,Entire home/apt,150,2,3,2019-01-20,0.08,1,0 +12874666,Holiday in Trendy Williamsburg Apt!,1909320,Peter,Brooklyn,Williamsburg,40.7155,-73.96188,Private room,150,1,6,2019-07-04,0.16,3,364 +12874869,Greenwich Village| Private Queen room,70429659,Kelly,Manhattan,Greenwich Village,40.73694,-73.99587,Private room,140,1,78,2019-06-16,2.23,1,321 +12876883,Comfortable bedroom in spacious apt,11452065,Arthur,Brooklyn,Borough Park,40.64052,-73.99668,Private room,70,2,1,2016-06-13,0.03,1,0 +12881611,Large bedroom in spacious & sunny Greenpoint Apt!,17204066,Maham,Brooklyn,Greenpoint,40.72846,-73.95033,Private room,70,2,21,2019-03-10,0.54,1,4 +12881712,High FL - Gym Doorman Alcove Studio 5205,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74859,-73.97243,Entire home/apt,197,30,1,2019-03-31,0.30,96,325 +12882914,Luxury Hi-Rise in the Gramercy,807404,Eddie,Manhattan,Gramercy,40.73831,-73.98319,Entire home/apt,310,4,0,,,1,0 +12883073,East Village 1 BDRM - Trendy Area - Subway 1.5 Blk,21315876,Helen,Manhattan,East Village,40.72472,-73.98665,Entire home/apt,128,1,28,2019-07-06,0.79,2,178 +12884594,Amazing entire apt on tree-lined st,3948462,Elizabeth,Manhattan,Chelsea,40.73924,-73.99825,Entire home/apt,150,2,4,2017-01-02,0.11,1,0 +12885249,Room in Bushwick Bk available June,65459567,Destiny,Brooklyn,Bushwick,40.68651,-73.91185,Private room,26,14,0,,,1,0 +12885472,Lovely large 2BR Apartment Close to Subway,2629017,Michelle,Queens,Ridgewood,40.70581,-73.90112,Entire home/apt,75,2,54,2019-07-05,1.99,1,64 +12885921,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74472,-73.99266,Entire home/apt,280,30,3,2019-03-03,0.10,87,364 +12886345,Cozy West Village apartment,31757138,Chris,Manhattan,West Village,40.73009,-74.00222,Private room,93,1,0,,,1,0 +12886380,SkyView Massive 2 bed 2 bath 5174,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77692,-73.95126,Entire home/apt,390,30,1,2018-04-05,0.07,96,239 +12887457,HUGE AMAZING STUDIO/ FEEL LIKE HOME,1475015,Mike,Manhattan,Midtown,40.75754,-73.96943,Entire home/apt,115,30,0,,,52,343 +12888052,"West 50th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Hell's Kitchen,40.76152,-73.98678,Entire home/apt,256,30,3,2018-09-11,0.09,87,358 +12888849,"Bright Luxury Studio, Central Loc.",16476167,Sarah,Manhattan,Midtown,40.74513,-73.98475,Entire home/apt,250,366,0,,,1,365 +12891996,Giant Sun-filled Chelsea Studio,70583598,Michael And Fernanda,Manhattan,Chelsea,40.74303,-73.99797,Entire home/apt,200,2,1,2016-06-02,0.03,1,0 +12892861,Great Apartment for 2~ right next to subway~!,70594777,Deqing,Brooklyn,Clinton Hill,40.68873,-73.96523,Entire home/apt,150,7,4,2016-07-31,0.11,1,0 +12895146,Cozy Budget Apt,63790712,Layla,Manhattan,Harlem,40.80476,-73.95416,Private room,41,21,2,2018-08-17,0.16,2,0 +12897133,Private Room in Hell's Kitchen,7560581,Vishnu,Manhattan,Hell's Kitchen,40.76274,-73.98733,Private room,100,4,0,,,1,0 +12897616,Upper West Side Room,70637655,Andrea,Manhattan,Upper West Side,40.80288,-73.96629,Private room,75,1,1,2016-06-13,0.03,1,0 +12897713,Chelsea Flat steps from Herald Sq,70638431,Michael,Manhattan,Chelsea,40.75041,-73.99489,Entire home/apt,300,1,2,2016-05-26,0.05,1,0 +12897946,Awesome 1 Bedroom for rent in BK,70640302,Querlim,Brooklyn,Flatbush,40.65468,-73.95703,Private room,50,3,3,2016-12-06,0.08,1,0 +12898943,Beautiful Pre-War on Prospect Park,10259868,Meredith,Brooklyn,Crown Heights,40.66676,-73.95991,Private room,85,7,0,,,1,0 +12898987,PARK SLOPE TOWNHOUSE,17984997,Josh Victor,Brooklyn,South Slope,40.66757,-73.98498,Entire home/apt,475,3,0,,,1,101 +12899112,BR in large 2BR.,70651602,Aj,Manhattan,East Harlem,40.78576,-73.94211,Private room,50,1,4,2016-05-16,0.10,1,0 +12900284,Elmhurst单房短租5/23-8/10交通便利,27885164,Yiping,Queens,Elmhurst,40.74182,-73.88875,Private room,50,1,0,,,1,0 +12901480,Artistic pad in East Williamsburg!,70674019,Jack,Brooklyn,Bushwick,40.69968,-73.92645,Entire home/apt,179,7,117,2019-06-26,3.04,2,137 +12902256,Cozy private bedroom with window,37782666,Kevin,Manhattan,Lower East Side,40.71366,-73.98799,Private room,72,4,59,2019-06-09,1.56,1,83 +12902467,Cozy and relaxing East Village home,1411232,Thomas,Manhattan,East Village,40.7266,-73.97872,Entire home/apt,150,1,3,2016-05-19,0.08,1,0 +12902686,BayRidge Brooklyn Apartment,70686576,Fotini,Brooklyn,Fort Hamilton,40.61707,-74.03473,Entire home/apt,110,1,1,2016-06-23,0.03,1,0 +12903772,"Luxury Studio + Gym, Rooftop, Elevator!",70646170,Andrew,Manhattan,Upper West Side,40.79167,-73.97273,Entire home/apt,200,2,6,2016-07-30,0.16,1,0 +12904061,Superior double Bedroom - Cozy & Comfy B6,20559017,Yohan,Manhattan,East Harlem,40.7862,-73.94413,Private room,50,30,1,2017-09-08,0.04,9,333 +12904840,Spacious and sunny room in Brooklyn,27634654,Elena,Brooklyn,Bay Ridge,40.6311,-74.03022,Private room,35,30,5,2018-01-03,0.13,2,0 +12905314,Medium sunny furnished room,16414492,Julia Marie,Manhattan,Washington Heights,40.83873,-73.94118,Private room,45,1,6,2017-07-18,0.16,1,0 +12905446,Park Slope Townhouse,2286611,Maddy,Brooklyn,South Slope,40.66455,-73.98479,Entire home/apt,195,3,6,2018-08-21,0.16,1,0 +12911110,"Sunny studio on UWS, steps to park",5317451,Kelly,Manhattan,Upper West Side,40.78397,-73.97063,Entire home/apt,90,8,1,2016-06-19,0.03,1,0 +12912510,Stunning Brooklyn loft in a church!,37241656,Zack,Brooklyn,Williamsburg,40.71638,-73.95684,Entire home/apt,325,2,27,2017-10-22,0.72,1,0 +12913007,Nice Large Well-Lit Studio in Clinton Hill,4090856,Brit,Brooklyn,Clinton Hill,40.68425,-73.96455,Entire home/apt,100,3,2,2018-05-28,0.09,1,8 +12914082,Clean and bright bedroom in Soho,8255336,Darren,Manhattan,SoHo,40.72258,-74.00358,Private room,85,30,5,2016-08-21,0.14,2,69 +12914239,Cherry Hill House - Plum Room,2464187,Jessica,Staten Island,St. George,40.63834,-74.08291,Private room,40,1,5,2017-03-30,0.14,2,0 +12914669,Double bedroom in West Harlem,44665470,Quentin,Manhattan,Harlem,40.80794,-73.9415,Private room,80,1,3,2016-06-03,0.08,1,0 +12914726,Charming West Village Apartment (Manhattan),21375734,Jay,Manhattan,West Village,40.73116,-74.00212,Private room,149,1,6,2018-07-15,0.18,1,0 +12914749,"Bright, Clean & Family-friendly Apartment!",8635103,Charis,Manhattan,Harlem,40.82125,-73.95,Private room,67,4,1,2016-07-03,0.03,1,0 +12915038,Renovated: 15min 4 Train ride to NYC-Crown Heights,25611454,Regina,Brooklyn,East Flatbush,40.65983,-73.93472,Private room,80,3,57,2019-07-03,1.58,1,14 +12915074,Nice Room in Classic Williamsburg Loft,16300594,Ari,Brooklyn,Williamsburg,40.71784,-73.95265,Private room,80,4,16,2018-11-21,0.43,3,0 +12915928,"Renovated 3BR, 2 Full Bath with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66623,-73.93113,Entire home/apt,275,3,27,2019-04-07,0.71,4,271 +12916073,10 min from JFK and 30min to NYC,70827984,Digna,Brooklyn,East New York,40.66921,-73.87797,Entire home/apt,123,4,63,2019-06-03,1.67,1,67 +12916138,2 Bedrooms by Central Park & Trains,70828773,Nick,Manhattan,East Harlem,40.79617,-73.94735,Entire home/apt,179,1,1,2016-05-23,0.03,1,0 +12916189,Family Friendly BK Townhome With Garden Oasis!,951917,Julia And Juan,Brooklyn,Sunset Park,40.66224,-73.99805,Entire home/apt,196,365,4,2018-05-20,0.12,1,365 +12916646,Nice Room in Hell's Kitchen 2 Blocks to Times Sq.,67359538,Vincent,Manhattan,Hell's Kitchen,40.75873,-73.99197,Private room,180,1,28,2018-05-22,0.73,1,0 +12916955,Brownstone in Trendy Bed-Stuy,70839024,Jace,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94843,Entire home/apt,500,2,0,,,1,0 +12917057,Lower East Side Apartment,26476746,Zachary,Manhattan,Lower East Side,40.72118,-73.98697,Entire home/apt,140,4,6,2018-01-03,0.16,1,0 +12917422,Cozy Room in West Harlem NYC,20220930,Oge,Manhattan,Harlem,40.82143,-73.95651,Private room,59,7,1,2016-08-14,0.03,1,0 +12917834,1BR Hell's Kitchen w balcony & view,3988031,Lee,Manhattan,Hell's Kitchen,40.76172,-73.99706,Entire home/apt,200,1,6,2016-09-27,0.16,1,0 +12924969,HANCOCK MASTER BEDROOM,758441,Fred,Brooklyn,Bedford-Stuyvesant,40.68709,-73.91989,Private room,165,1,2,2018-10-07,0.09,4,342 +12926448,Sunny Williamsburg 2BR apartment,19393925,Silvan,Brooklyn,Williamsburg,40.70973,-73.9626,Entire home/apt,230,5,0,,,1,0 +12926849,Comfy Room for May,28680349,Bryan,Brooklyn,Greenpoint,40.72577,-73.94981,Private room,90,1,7,2016-08-02,0.19,1,0 +12927770,"Amazing light, spacious & Modern",1289635,Alan,Queens,Long Island City,40.74069,-73.95604,Entire home/apt,200,5,4,2019-04-24,0.11,1,16 +12929852,"New York City Brownstone, Hip and Historic Harlem",58782992,Mark And Josephine,Manhattan,Harlem,40.82272,-73.94502,Entire home/apt,450,31,56,2019-05-28,1.50,2,341 +12932186,The Golden Hand in Harlem ☞ Bright + Modern 1BR,3718821,Matt,Manhattan,Harlem,40.81301,-73.94955,Private room,120,2,44,2019-06-12,1.18,1,96 +12932670,Flushing Spacious Room w/ 2 Queen Beds,65809485,Shirley,Queens,Flushing,40.74954,-73.82829,Private room,60,5,62,2019-06-18,1.64,12,174 +12933540,Comfortable Sofa bed 15 minutes to Manhattan,69711528,Lucia,Bronx,Parkchester,40.83049,-73.87354,Shared room,51,3,9,2017-05-20,0.26,2,89 +12936207,Newly Renovated Duplex Apartment,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93536,Entire home/apt,200,2,80,2019-06-15,2.09,3,286 +12941015,2BR Apt in East Village,406843,Trevor,Manhattan,East Village,40.72889,-73.98006,Entire home/apt,250,3,33,2019-06-23,0.90,2,80 +12941306,Penthouse studio 25min to Manhattan,14035480,Joseph,Brooklyn,Crown Heights,40.67493,-73.96195,Entire home/apt,160,3,0,,,1,0 +12941586,Amazing Studio. Enjoy the best of the UWS!,71093679,Philipe,Manhattan,Upper West Side,40.79458,-73.97077,Entire home/apt,180,2,7,2017-01-01,0.18,1,0 +12945400,Private Bedroom in Williamsburg,49836177,Ian,Brooklyn,Williamsburg,40.71264,-73.94751,Private room,66,1,1,2017-01-02,0.03,1,0 +12947454,"Awesome, Clean & Cozy UWS Apartment",33419138,George,Manhattan,Upper West Side,40.78175,-73.97576,Entire home/apt,180,1,1,2016-05-19,0.03,1,0 +12947660,Cute studio/room in the East Village,36948675,Hoan,Manhattan,East Village,40.72886,-73.9863,Private room,65,18,6,2017-10-10,0.17,1,0 +12947670,COZY BEAUTIFUL STUDIO /GREAT CENTRAL LOCATION,1475015,Mike,Manhattan,Kips Bay,40.74141,-73.97868,Entire home/apt,87,30,2,2018-10-30,0.16,52,365 +12949605,"Large, sun-light room in Brownstone",14131713,Liz,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93557,Private room,60,7,1,2016-06-01,0.03,2,0 +12949840,Remodeled Brand New Brooklyn Apartment,1386468,Jane Anne,Brooklyn,Bushwick,40.6898,-73.91774,Entire home/apt,124,2,104,2019-06-26,2.75,1,237 +12949937,True 2 bedroom apartment in the heart of the LES,71140140,Danielle,Manhattan,Lower East Side,40.71981,-73.99154,Entire home/apt,225,2,1,2016-05-15,0.03,1,0 +12950979,1BR Apt. in Inwood (Manhattan),71152156,Max,Manhattan,Inwood,40.86612,-73.9189,Entire home/apt,77,6,1,2016-05-18,0.03,1,0 +12950997,"Joellen's Place Roomy 1-Queen Bed, Bushwick Apt.",71150679,Joellen,Brooklyn,Bushwick,40.69021,-73.92207,Private room,79,2,57,2019-07-07,1.52,2,127 +12951215,Sleek 1 bedroom apartment near Rockefeller Center!,30283594,Kara,Manhattan,Hell's Kitchen,40.76222,-73.99889,Entire home/apt,239,30,2,2018-01-05,0.10,121,365 +12951417,"Joellen's Place Spacious 2-twin bed, Bushwick Apt.",71150679,Joellen,Brooklyn,Bushwick,40.69024,-73.92197,Private room,65,2,77,2019-06-22,2.04,2,116 +12953106,DUMBO/Vinegar Hill Luxury Apartment,41134220,Mohamed,Brooklyn,Vinegar Hill,40.70196,-73.98297,Entire home/apt,170,30,0,,,1,270 +12953234,Sofa Bed Available in Midtown Manhattan,3664485,Arnie,Manhattan,Hell's Kitchen,40.76455,-73.99128,Shared room,30,3,0,,,1,0 +12953717,Peaceful room in a lovely Brooklyn duplex,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65254,-73.98017,Private room,72,1,4,2016-09-05,0.10,4,0 +12953757,Huge + Cozy East Williamsburg Room,24747678,Caroline,Brooklyn,Bushwick,40.7029,-73.9296,Private room,75,3,5,2018-08-04,0.14,1,0 +12953862,Artist Den Across from Park,15515731,Mira,Brooklyn,Bedford-Stuyvesant,40.68645,-73.93994,Private room,35,5,1,2016-05-23,0.03,1,0 +12953867,Quiet artist apartment w/ backyard,69232570,Jamie,Brooklyn,Bushwick,40.70219,-73.9227,Private room,45,1,98,2019-07-01,2.58,1,16 +12954148,Cozy Room in Upper West Side Near Central Park,24517762,Laura,Manhattan,Upper West Side,40.80045,-73.96119,Private room,67,3,5,2016-06-02,0.13,1,0 +12954498,LOFT in Chelsea,1413546,Asher,Manhattan,Chelsea,40.7453,-73.99333,Entire home/apt,700,30,1,2016-08-07,0.03,2,236 +12955262,2 bedroom loft-like ground floor with patio,3710740,Daniel,Manhattan,Harlem,40.81806,-73.95374,Entire home/apt,150,1,49,2019-06-21,1.30,2,0 +12955281,Comfortable 1-2 bed space close to trains,25733361,Jon,Brooklyn,Bedford-Stuyvesant,40.70017,-73.94357,Entire home/apt,115,3,2,2016-07-05,0.05,1,0 +12955346,Suite with Private Gated Entrance,12160792,Sarah,Brooklyn,Brooklyn Heights,40.69183,-73.99592,Entire home/apt,150,1,107,2019-07-05,2.84,1,75 +12955402,Private room w/ lush garden quiet area,2714164,Jasmine,Brooklyn,Greenpoint,40.72311,-73.94489,Private room,50,2,15,2019-06-14,0.55,2,27 +12955453,Private room in Upper East Side,62172448,Jon,Manhattan,Upper East Side,40.76635,-73.95683,Private room,60,5,1,2016-08-04,0.03,2,0 +12955454,Cozy Room in the Big Apple,33622924,Besinfe,Manhattan,Harlem,40.83018,-73.9483,Private room,50,1,116,2019-07-01,3.06,4,352 +12955940,"large, affordable, clean,convenient",71211231,Ehsan,Bronx,Fordham,40.85396,-73.89872,Private room,34,1,2,2016-06-14,0.05,1,0 +12955943,Charming 1 bed apt in Williansburg,23050317,Ana Paula,Brooklyn,Williamsburg,40.70944,-73.9492,Entire home/apt,100,7,6,2017-12-31,0.16,1,0 +12956122,Studio in prime UWS location,11363395,Ingrid,Manhattan,Upper West Side,40.77998,-73.98018,Entire home/apt,125,1,0,,,1,0 +12956315,Room in 2BR Astoria apt (20min to Central Park),5226800,Katie,Queens,Ditmars Steinway,40.77374,-73.91903,Private room,100,5,0,,,1,0 +12958663,"Breathtaking, panoramic views of Downtown NYC/FiDi",71241926,Mike,Manhattan,Financial District,40.70951,-74.01476,Entire home/apt,125,32,99,2019-05-29,2.73,1,203 +12962482,Park front room in the heart of Bushwick L train,21262993,Nicole,Brooklyn,Bushwick,40.70267,-73.92383,Private room,45,1,2,2016-05-22,0.05,1,0 +12962798,Bright clean apartment in East Village!,321386,Grace,Manhattan,East Village,40.72859,-73.98348,Entire home/apt,198,2,32,2017-06-18,0.84,1,0 +12963341,PRIME EAST VILLAGE LARGE BEDROOM,4534893,Alex,Manhattan,East Village,40.72501,-73.98776,Private room,150,1,5,2018-11-03,0.13,4,121 +12964477,"Clean, Simple, & Private Bedroom (near N/R train)",28370925,En & Lora,Brooklyn,Sunset Park,40.63833,-74.01794,Private room,39,5,89,2018-07-25,2.34,4,0 +12964763,Apartment near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76504,-73.99491,Entire home/apt,150,30,4,2019-05-07,0.12,31,339 +12965288,"COZY HOME, BEST LOCAL ACCESS!",11071244,Nick,Queens,Long Island City,40.76591,-73.93434,Private room,80,2,49,2018-09-27,1.29,1,0 +12965883,"Spacious Haven in Wash Heights, A-train on block!",71188543,Courtney,Manhattan,Washington Heights,40.84909,-73.93829,Private room,46,2,2,2018-08-14,0.08,1,0 +12966225,"1 bedroom apt, comforts of home, close to all..",71312760,Don,Staten Island,Richmondtown,40.57093,-74.12429,Entire home/apt,78,3,79,2019-06-23,2.56,1,300 +12966504,Lovely Two Bedroom Apt in Prime North Williamsburg,28709982,Sidiq,Brooklyn,Williamsburg,40.71827,-73.95494,Entire home/apt,219,3,51,2019-06-09,1.36,3,71 +12966707,HUGE UWS bedroom w/ private bath and great light!,30101336,Jessica,Manhattan,Upper West Side,40.79832,-73.96291,Private room,145,2,1,2018-10-19,0.11,1,180 +12966771,Spacious Midtown Studio,37219626,Kate,Manhattan,Hell's Kitchen,40.76319,-73.98693,Entire home/apt,220,3,0,,,1,0 +12966974,Flatiron Oasis,71321195,Sonia,Manhattan,Chelsea,40.73737,-73.99475,Entire home/apt,225,1,0,,,1,0 +12967227,Bright studio on great location,71315006,Ege,Manhattan,Upper West Side,40.78528,-73.97111,Entire home/apt,2000,20,0,,,1,0 +12969014,Unique Artist's Apartment,9991075,Erika,Manhattan,Upper West Side,40.78116,-73.98104,Entire home/apt,175,1,11,2018-07-07,0.33,2,0 +12969574,Unique artist’s loft-heart of Wburg,160139,Amy,Brooklyn,Williamsburg,40.71559,-73.96385,Entire home/apt,220,4,42,2019-05-20,1.11,1,318 +12970866,Airy and bright room. Prospect Park,25749667,Kseniya,Brooklyn,Flatbush,40.65255,-73.96227,Shared room,85,1,1,2016-05-16,0.03,1,0 +12971882,Huge Bedroom in Beautiful Brownstone w/ Private BR,5265824,Greg,Brooklyn,Clinton Hill,40.69093,-73.96507,Private room,77,5,0,,,1,0 +12972040,BED FOR 1 IN LUXURIOUS PARK AVENUE FLAT,283395,H,Manhattan,Murray Hill,40.74933,-73.97937,Private room,110,1,31,2017-12-10,0.81,2,189 +12972292,Private Room for two guests in Cozy apartment,68139551,Kamil,Queens,Maspeth,40.72075,-73.89496,Private room,58,1,60,2019-05-06,1.57,3,346 +12972320,"Elegant 3 bed, 2 bath apt. on UWS",203039,Maria,Manhattan,Upper West Side,40.80077,-73.9681,Entire home/apt,350,6,5,2018-07-27,0.14,1,92 +12972533,Gorgeous Grand 2 BR LES Gem!,71382423,Jules,Manhattan,Lower East Side,40.71772,-73.98882,Entire home/apt,329,3,104,2019-06-23,2.79,1,205 +12972783,Private Room for Pair in the Cozy Apartament,68139551,Kamil,Queens,Maspeth,40.72143,-73.8932,Private room,58,1,37,2019-06-02,0.97,3,364 +12973288,Private room for pair,68139551,Kamil,Queens,Maspeth,40.72103,-73.89458,Private room,60,1,30,2019-01-05,0.78,3,364 +12973353,CrashPadsUSA Hotbeds for Airline Crew ONLY,63560790,A.B.,Queens,Kew Gardens,40.70542,-73.82979,Shared room,43,1,8,2019-06-30,0.73,2,362 +12973363,Prospect Park Brownstone,22846970,Paige,Brooklyn,Prospect Heights,40.675,-73.96406,Private room,88,2,46,2017-07-31,1.19,1,0 +12973819,"Huge 1BR 5 min to Park, Train",71402091,Jeff,Brooklyn,Flatbush,40.65421,-73.95945,Entire home/apt,90,4,7,2019-04-23,0.18,1,0 +12973878,"Nice,Safe&Quiet Great Value Room",45469626,Aleksey,Brooklyn,Sunset Park,40.64748,-73.99802,Private room,41,3,2,2016-07-05,0.05,1,0 +12973927,Private bedroom in Brooklyn.,15246785,Tiago And Renata,Brooklyn,Bedford-Stuyvesant,40.7001,-73.94326,Private room,65,4,36,2019-07-01,0.96,1,80 +12974423,Spacious & Sunny Apartment in Bushwick,3454707,Shaul,Brooklyn,Bushwick,40.70101,-73.92505,Entire home/apt,95,5,0,,,1,0 +12979100,South Street Seaport Loft Studio,14885449,Brian,Manhattan,Financial District,40.70725,-74.00206,Entire home/apt,160,6,2,2016-06-12,0.05,1,0 +12981106,Stylish unique Loft in prime area of Brooklyn,727410,Sophia,Brooklyn,Bedford-Stuyvesant,40.69116,-73.96039,Entire home/apt,140,6,18,2019-05-04,0.53,1,11 +12983699,"East 82nd Street, Upper East Side/Yorkville 1bd",22541573,Ken,Manhattan,Upper East Side,40.77301,-73.95045,Entire home/apt,169,30,1,2018-11-11,0.13,87,347 +12983995,"Cosy, neat 1bed apt 5mins to Central Pk & Columbia",71499258,Robbie,Manhattan,Upper West Side,40.80121,-73.96277,Entire home/apt,115,10,2,2018-05-21,0.09,1,4 +12984506,Artsy Home in the Heart of Bushwick,52498520,Mariella,Brooklyn,Bushwick,40.68622,-73.91026,Private room,67,1,20,2017-09-17,0.53,1,365 +12984535,Beautiful room in a spacious Brooklyn duplex,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65256,-73.9798,Private room,60,1,1,2016-08-14,0.03,4,0 +12984848,"Private Room in Greenpoint, Brooklyn",183504,Chris,Brooklyn,Greenpoint,40.73547,-73.9545,Private room,45,28,9,2019-06-01,0.37,1,332 +12984851,Private room in heart of LES,56752163,Sabina,Manhattan,Lower East Side,40.71884,-73.99294,Private room,60,2,3,2018-04-22,0.08,2,0 +12985547,Gorgeous- 2 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77219,-73.95588,Entire home/apt,142,30,2,2018-09-30,0.15,29,319 +12986700,2 bed 2 bath in North Williamsburg,1477622,Nahid,Brooklyn,Williamsburg,40.72113,-73.95574,Entire home/apt,350,2,3,2017-01-02,0.08,1,0 +12986728,HUGE room for rent in AUGUST in HAMILTON HEIGHTS,6069897,Justine,Manhattan,Harlem,40.82272,-73.95144,Private room,40,29,2,2018-08-31,0.08,1,0 +12987298,Artist Apartment in Park Slope,21541169,Erica,Brooklyn,South Slope,40.6617,-73.98221,Private room,65,14,8,2016-09-07,0.21,1,0 +12987983,Big Room in Brownstone Apartment!,4386682,Francesco,Queens,Ridgewood,40.70204,-73.91068,Private room,50,3,4,2018-07-21,0.15,3,0 +12988054,HUGE lofty room & tall ceilings Bushwick/Ridgewood,4386682,Francesco,Queens,Ridgewood,40.70435,-73.91207,Private room,42,7,3,2017-03-07,0.09,3,0 +12988898,"",71552588,Andrea,Bronx,Fordham,40.86032,-73.88493,Shared room,130,1,0,,,1,365 +12989612,Priv Rm w. Big Loft Living Room across from FIT,6502531,Andrea,Manhattan,Chelsea,40.74711,-73.99281,Private room,100,1,2,2018-07-13,0.05,2,65 +12989767,Beautiful Studio on Tree-Lined St.,16436459,Liz,Manhattan,Chelsea,40.74583,-74.00451,Entire home/apt,175,4,30,2019-07-01,0.82,1,48 +12990051,"Private, Quiet 2 BR in Heart of Times Square!",30045665,Boyd,Manhattan,Hell's Kitchen,40.76039,-73.99028,Entire home/apt,399,2,80,2019-06-24,2.11,1,212 +12990172,Furnished 1 Br Near Columbia,37194964,Shutong,Manhattan,Morningside Heights,40.81488,-73.95886,Entire home/apt,110,7,0,,,1,0 +12990232,Spacious Bushwick bedroom,29268760,Lena,Queens,Ridgewood,40.69284,-73.90348,Private room,45,7,0,,,1,0 +12990502,Cute small room in Astoria,2736755,Marian,Queens,Astoria,40.77091,-73.91875,Private room,40,2,36,2019-06-24,0.96,2,0 +12990578,Cozy Room with Window View near Times Square,49447536,Wing Yan,Manhattan,Hell's Kitchen,40.75484,-73.9922,Private room,100,1,1,2016-06-08,0.03,1,0 +12990587,"6BR, 4 Full Bath Duplex with Washer & Dryer",70058270,Lucy,Brooklyn,Crown Heights,40.66629,-73.93073,Entire home/apt,575,3,33,2019-06-25,1.12,4,259 +12990926,Cozy private bedroom close to Manhattan,2736755,Marian,Queens,Astoria,40.7691,-73.91994,Private room,63,7,1,2017-01-02,0.03,2,0 +12995569,Simple Luxury in Columbus Circle,7199306,Katie,Manhattan,Hell's Kitchen,40.76814,-73.98476,Entire home/apt,177,2,2,2016-08-21,0.06,1,0 +12999167,Charming & Sunny Studio in the Heart of NYC,19726948,Willow,Manhattan,Lower East Side,40.72151,-73.98814,Entire home/apt,158,2,145,2019-06-24,4.81,1,193 +12999396,"Red Hook Beach House, Garden, Pool , Roof top",29210997,Stephanie,Brooklyn,Red Hook,40.67498,-74.01169,Entire home/apt,400,3,11,2019-07-01,0.29,1,6 +13000007,Bright Sunny Spacious Apt in Historic Neighborhood,124866,Addie,Brooklyn,Cobble Hill,40.68985,-73.99311,Entire home/apt,90,5,18,2019-05-08,0.87,1,2 +13000020,Sunny 1-bedroom apartment in the LES,1422833,Jaime,Manhattan,Lower East Side,40.7205,-73.98315,Entire home/apt,135,2,16,2017-11-12,0.44,1,0 +13000257,"Charming, bright Williamsburg apt",71665510,Aurora,Brooklyn,Williamsburg,40.71685,-73.9615,Entire home/apt,200,2,4,2019-05-07,0.15,1,318 +13000483,All New Garden Apartment,1261588,Julian,Brooklyn,Crown Heights,40.67968,-73.9595,Entire home/apt,155,30,132,2019-04-16,3.53,1,83 +13000527,Studio47 - bedroom in artists' loft,19866179,Jackson,Manhattan,Two Bridges,40.71098,-73.99296,Private room,100,30,1,2019-02-25,0.22,1,0 +13000571,Mid Century Modern Greenwich Village 1 Bedroom,3807299,Jerry,Manhattan,Greenwich Village,40.73418,-73.99338,Entire home/apt,315,3,5,2018-12-31,0.16,1,38 +13001082,Share space in E Harlem,4112409,Rick,Manhattan,East Harlem,40.79193,-73.9439,Shared room,45,1,52,2019-06-19,1.41,1,347 +13003338,Midtown Convenient Living Area Close to All,1475855,Tanya,Manhattan,Kips Bay,40.74358,-73.98096,Private room,125,3,0,,,1,0 +13004741,"Bedroom in Clean, Uptown Apartment",1921498,Pedro Pablo,Manhattan,Washington Heights,40.84524,-73.93508,Private room,49,90,17,2019-06-01,0.49,3,142 +13004961,GROUP/ FAMILY LOFT SUITE,4852748,Michelle,Manhattan,Harlem,40.80577,-73.94616,Entire home/apt,220,4,1,2018-06-23,0.08,6,364 +13004967,King suite with jacuzzi,4852748,Michelle,Manhattan,Harlem,40.80527,-73.94579,Private room,220,2,3,2018-10-03,0.09,6,365 +13004996,Beach Bungalow 2,71717596,Beth,Queens,Rockaway Beach,40.58977,-73.81324,Entire home/apt,100,2,50,2019-07-07,1.31,1,40 +13006002,Cozy room in a beautiful and quite apartment,31996442,Annalisa,Brooklyn,Clinton Hill,40.69475,-73.96848,Private room,70,1,3,2016-07-18,0.08,1,0 +13006794,Fully Furnished 1 Bedroom UWS APT,10838145,Yaakov (Jacob),Manhattan,Upper West Side,40.798,-73.96317,Entire home/apt,74,2,8,2016-08-24,0.21,1,0 +13007629,The spot in chinatown,3059285,Pierce,Manhattan,Chinatown,40.71536,-73.99794,Entire home/apt,290,2,3,2016-10-30,0.08,1,0 +13007839,Second floor apartment,71754921,Berta,Brooklyn,Crown Heights,40.66789,-73.94351,Entire home/apt,100,1,0,,,1,0 +13007925,Private Bedroom and Bath in Spacious Duplex,42835213,Zandelle,Brooklyn,East Flatbush,40.64645,-73.95047,Private room,85,4,42,2019-06-21,1.46,2,35 +13009244,"Real 1-BR Home in West Village, Central yet Quiet!",10458139,Jorge,Manhattan,West Village,40.73799,-74.00074,Entire home/apt,199,31,81,2019-06-24,2.36,1,85 +13013882,Williamsburg Private Bedrooom,71746226,Noah,Brooklyn,Williamsburg,40.70739,-73.94318,Private room,65,2,1,2016-06-04,0.03,1,0 +13014556,"Private, cozy room in the heart of Crown Heights",23269902,Mia,Brooklyn,Crown Heights,40.67251,-73.95334,Private room,45,2,26,2019-06-18,1.23,1,45 +13015322,Awesome bedroom in the heart of NYC,53308963,Aj,Manhattan,Chinatown,40.71415,-73.99806,Private room,95,2,6,2019-06-22,0.17,2,7 +13016082,Steps from Central Park: Bedroom in spacious apt,12127963,Ben,Manhattan,East Harlem,40.78804,-73.95382,Private room,95,5,4,2017-08-19,0.11,1,0 +13016230,Peaceful and Pleasant Studio,30074012,Laura,Brooklyn,Flatbush,40.63887,-73.96667,Entire home/apt,80,3,32,2018-09-21,0.85,1,0 +13016389,DAZZLING APT SKYLINE VIEW IN PRIME LOCATION,71838636,Michael,Manhattan,Chelsea,40.73596,-73.99228,Entire home/apt,300,5,22,2019-06-18,0.58,1,87 +13016411,Hanover Square Lux Downtown 1 Bd Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70519,-74.0082,Entire home/apt,259,30,0,,,87,302 +13016417,Studio Apt in Murray Hill w/ Qn Bed,33273074,Elizabeth,Manhattan,Kips Bay,40.74139,-73.9783,Entire home/apt,120,2,7,2016-12-06,0.18,1,0 +13017016,Greenwich village 1 bedroom - spacious!,69841552,Jacob,Manhattan,SoHo,40.72625,-74.00199,Entire home/apt,150,3,40,2019-04-22,1.05,1,4 +13017140,Bright & Cozy 1BR + Home Gym!,65727695,Shutong,Manhattan,Morningside Heights,40.81632,-73.96007,Entire home/apt,120,2,2,2017-01-02,0.06,1,0 +13018125,AMAZING CENTRAL MANHATTAN 1 BED W/BALCONY FITS 4!,10797290,Caroline,Manhattan,Chelsea,40.74469,-73.99858,Entire home/apt,225,1,32,2019-01-01,0.87,1,0 +13018127,Big Beautiful Master Bedroom in Williamsburg,22124777,Isabella,Brooklyn,Williamsburg,40.70961,-73.96352,Private room,100,1,37,2019-06-14,1.07,1,0 +13018248,Williamsburg True 1 Bedroom Apartment,1207773,Trista,Brooklyn,Williamsburg,40.70772,-73.95978,Entire home/apt,160,3,13,2018-05-28,0.35,2,0 +13018811,Private clean room in Manhattan,71865037,Elinor,Manhattan,Harlem,40.82032,-73.94457,Private room,49,3,0,,,1,0 +13019053,East Village Business and Leisure,24278208,Reah,Manhattan,East Village,40.72669,-73.98792,Entire home/apt,150,3,35,2019-01-02,0.92,1,0 +13019333,Sunny 1BR next to Central Park,3671013,Neha,Manhattan,Midtown,40.76232,-73.97614,Private room,100,2,0,,,2,0 +13019720,2 Bedroom Wyndham Midtown 45 Sleeps 6,57574248,Christine,Manhattan,Midtown,40.7533,-73.97346,Entire home/apt,275,3,16,2017-11-30,0.43,3,0 +13019851,Beautiful Brooklyn Bedroom!,59093909,Katherine E,Brooklyn,Clinton Hill,40.69525,-73.96604,Private room,45,1,3,2016-07-14,0.08,1,0 +13020422,Luxury 1BR Apartment with Washer & Dryer,4909923,Joel,Brooklyn,Williamsburg,40.71293,-73.9603,Entire home/apt,195,3,54,2019-06-26,1.42,1,97 +13023771,Prospect gardens,71853402,Lorraine,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95245,Private room,100,1,14,2019-04-30,0.37,2,304 +13025960,Bright & Cozy Furnitured 4 Sublet,71948176,Cristian,Brooklyn,Bedford-Stuyvesant,40.68917,-73.95528,Private room,1000,1,0,,,1,0 +13026702,"Modern, Spacious 1-bedroom Apt in Lower East Side",9455699,Shylie,Manhattan,Lower East Side,40.72033,-73.98767,Entire home/apt,195,1,9,2017-09-26,0.24,1,0 +13027365,Quiet Two Bedroom with Sunroom,48804458,Andrew,Queens,Ridgewood,40.70432,-73.90015,Entire home/apt,87,5,133,2019-06-24,3.50,2,49 +13027960,"Beautiful, Sunny Apt by the Park",14012039,Nicole & Tyson,Brooklyn,Flatbush,40.65359,-73.95631,Entire home/apt,120,3,3,2018-06-04,0.08,1,0 +13028533,1 BD Suite W/ Kitchen 550 SQFT Wyn Midtown 45 NYC,57574248,Christine,Manhattan,Midtown,40.75303,-73.97327,Entire home/apt,170,2,9,2017-12-15,0.26,3,0 +13030999,Manhattan downtown luxury apartment,59552219,Chunxiao,Manhattan,Financial District,40.70645,-74.01144,Entire home/apt,160,7,2,2017-01-23,0.05,1,0 +13031184,Large & sunny bedroom in Park Slope,923412,Eleanor,Brooklyn,South Slope,40.66573,-73.98947,Private room,50,7,0,,,1,0 +13031383,Spacious room + private bathroom in Williamsburg,5163395,Caitie,Brooklyn,Williamsburg,40.70775,-73.94725,Private room,75,2,0,,,1,0 +13031826,Modern Brooklyn Lifestyle,18933388,Efrem,Brooklyn,Crown Heights,40.67661,-73.95611,Entire home/apt,225,1,5,2016-07-17,0.13,1,0 +13031854,Samaria's Brownstone (Crown Heights),72019599,Maria,Brooklyn,Crown Heights,40.67218,-73.95368,Entire home/apt,125,2,70,2019-06-23,1.85,1,132 +13032261,2bd Presidential NYC,57571805,Gharet,Manhattan,Midtown,40.75315,-73.97339,Entire home/apt,350,2,3,2017-06-20,0.10,3,0 +13033170,Designer’s Penthouse with Terrace and Skyline View,2637408,Chris,Brooklyn,Williamsburg,40.71214,-73.94992,Entire home/apt,175,3,122,2019-06-15,3.37,2,128 +13033376,Private Parkside Room,21340955,Shean,Brooklyn,Flatbush,40.65272,-73.96127,Private room,65,3,28,2019-05-31,1.09,3,298 +13037692,Midtown 2 full bedrooms,66326553,Pierre,Manhattan,Hell's Kitchen,40.76111,-73.99248,Entire home/apt,350,6,97,2019-06-14,2.55,2,236 +13039122,Bk's Finest City life close to Transportation,50600973,Joyell,Brooklyn,Bushwick,40.69499,-73.9283,Private room,45,1,251,2019-06-20,6.68,7,69 +13039351,Whole Apartment in Fort Greene,751120,Nat,Brooklyn,Fort Greene,40.68715,-73.97388,Entire home/apt,120,2,21,2017-04-06,0.56,1,0 +13039849,"Peaceful, cozy, artistic studio.",283116,Lorie,Queens,Sunnyside,40.74625,-73.91643,Entire home/apt,75,5,0,,,1,0 +13040171,Cozy room in East Village,9460317,Diane,Manhattan,East Village,40.72906,-73.98006,Private room,100,3,2,2016-08-12,0.05,1,0 +13040221,"3,500 sqf Spectacular Luxury Downtown Loft",5302382,Torun,Manhattan,Chelsea,40.74574,-73.99633,Entire home/apt,850,2,10,2018-12-29,0.26,1,10 +13040618,Sunny and spacious private room,23457783,Stephanie,Brooklyn,Bushwick,40.6905,-73.90834,Private room,40,1,1,2016-05-15,0.03,1,0 +13040683,Airy livingroom in quiet restaurant neighborhood !,28868609,John,Queens,Ditmars Steinway,40.77266,-73.90268,Shared room,100,1,1,2016-05-23,0.03,1,0 +13042051,Modern Williamsburg Condo near restaurants + metro,43339525,Jeff,Brooklyn,Williamsburg,40.7163,-73.94394,Entire home/apt,178,2,22,2018-10-21,0.59,1,3 +13042637,Stunning 2BR Apartment in Sunnyside,9427289,Steve,Queens,Sunnyside,40.74691,-73.91763,Entire home/apt,170,2,149,2019-07-01,4.21,2,229 +13042752,Cozy Spacious Double Bed #1 Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69617,-73.85204,Private room,45,1,235,2019-06-30,6.15,4,278 +13043208,Modern Studio in Financial District,14060030,Emily,Manhattan,Financial District,40.70527,-74.00629,Entire home/apt,180,1,2,2016-05-28,0.05,1,0 +13043314,SUNNY ROOM ~ WILLIAMSBURG ~,6818577,Tom,Brooklyn,Williamsburg,40.70879,-73.95235,Private room,89,30,1,2016-09-24,0.03,1,0 +13043724,"Spacious, private room in Apt in Bushwick!",72157489,Yvonne,Brooklyn,Bushwick,40.6928,-73.91614,Private room,50,1,5,2019-05-10,0.13,2,0 +13044519,"Quiet, relaxing room in Greenpoint",2349563,Johann,Brooklyn,Greenpoint,40.73356,-73.95808,Private room,80,1,2,2016-07-26,0.05,1,0 +13044589,3 Bedroom House In Park Slope Brooklyn,6462802,Denise,Brooklyn,South Slope,40.6647,-73.98474,Entire home/apt,250,4,4,2016-12-30,0.11,1,0 +13044668,Master bedroom to rent in Flatiron District,72168153,Carlos,Manhattan,Midtown,40.74464,-73.98436,Private room,70,20,4,2018-10-29,0.11,1,8 +13044689,Chelsea 1 Bedroom Apartment in a doorman/elev bldg,3166393,Robert,Manhattan,Chelsea,40.74632,-74.00431,Entire home/apt,170,29,0,,,1,64 +13044815,Private room available!,72112652,Lauren,Manhattan,Financial District,40.70825,-74.01403,Private room,90,4,0,,,2,0 +13044964,Stylish and cute girly shared room in Manhattan,5288991,Tanya,Manhattan,Upper East Side,40.7775,-73.95262,Shared room,45,30,20,2019-05-26,0.53,6,258 +13044996,Large Sun-Lit 1 Br Apartment,60278094,Keith,Brooklyn,Flatbush,40.64053,-73.95785,Entire home/apt,100,2,21,2017-07-21,0.55,1,0 +13045196,Private room & bathroom available,24165646,Sacha,Brooklyn,Bushwick,40.68754,-73.91265,Private room,65,3,33,2018-09-30,0.86,1,189 +13045257,Glamorous shared room in Manhattan,5288991,Tanya,Manhattan,Upper East Side,40.77854,-73.95073,Shared room,45,30,22,2019-05-05,0.58,6,323 +13045435,Stylish shared room for a guy near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77927,-73.95071,Shared room,45,30,22,2018-12-22,0.58,6,289 +13045531,Super chic shared room for a guy near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77903,-73.95238,Shared room,45,30,22,2018-07-01,0.58,6,294 +13045629,Chic stylish amazing Manhattan room,5288991,Tanya,Manhattan,Upper East Side,40.77736,-73.95144,Private room,90,30,79,2019-06-18,2.08,6,246 +13046279,Cozy 2 bedroom apt in Manhattan,364558,Khatia,Manhattan,Washington Heights,40.83805,-73.94307,Entire home/apt,150,2,17,2019-07-02,0.45,1,15 +13047594,Sunny Room in East Williamsburg!,11107448,Jessica,Brooklyn,Williamsburg,40.71862,-73.94216,Private room,62,7,0,,,2,0 +13052968,Charming 1-BR Fort Greene Apartment,26959668,Flo And Erin,Brooklyn,Fort Greene,40.68748,-73.97397,Entire home/apt,125,3,19,2019-05-28,0.51,1,0 +13055236,Steps 2 Empire State Building amazing studio NYC,72280483,Marco,Manhattan,Murray Hill,40.74688,-73.97813,Entire home/apt,125,2,100,2019-06-17,2.63,1,34 +13055856,A Brooklyn Experience,72287701,Robert,Brooklyn,Crown Heights,40.67533,-73.95545,Entire home/apt,175,1,121,2019-04-29,3.17,1,7 +13056210,Very large room for 1 adult,72291606,Jon,Brooklyn,Bushwick,40.69029,-73.91899,Shared room,75,1,25,2017-03-07,0.66,1,155 +13057103,Spacious room in great neighborhood,27634654,Elena,Brooklyn,Bay Ridge,40.63095,-74.03026,Private room,30,90,1,2016-06-07,0.03,2,0 +13058232,1 Bedroom townhouse apt in Chelsea w/ back garden,72313021,Michael,Manhattan,Chelsea,40.74472,-74.00095,Entire home/apt,295,1,50,2019-07-07,1.33,1,77 +13058423,Charming 1 br - most perfect block!,26535250,Sheila,Brooklyn,Windsor Terrace,40.65841,-73.97753,Entire home/apt,50,1,74,2019-06-01,2.03,3,236 +13058496,Sunny Private Room in Brooklyn,72315258,Anna,Brooklyn,Crown Heights,40.67619,-73.93866,Private room,28,1,0,,,1,0 +13058729,Sunlit Bedroom in Crown Heights.,72318418,Francisca,Brooklyn,Brownsville,40.66783,-73.92192,Private room,69,2,104,2019-06-21,2.72,3,362 +13058888,Great Deal!!! Big Room in the Heart of Harlem,7701998,Pedro,Manhattan,Harlem,40.81569,-73.94622,Private room,75,1,0,,,1,0 +13059537,One Bedroom Luxury Furnished 5188,16098958,Jeremy & Laura,Manhattan,Financial District,40.7034,-74.00787,Entire home/apt,175,30,2,2018-03-01,0.10,96,365 +13059631,Nice room in up and coming Bushwick,15720806,Ralph,Brooklyn,Bedford-Stuyvesant,40.69349,-73.93031,Private room,50,3,0,,,1,0 +13059872,Cozy apartment in Noho/ Soho,3149121,Nika,Manhattan,Greenwich Village,40.72617,-73.99658,Private room,90,1,2,2016-06-13,0.05,1,0 +13061064,Sunny Guest Room in UES Apartment,16345024,Amy,Manhattan,Upper East Side,40.77687,-73.9546,Private room,100,2,1,2016-06-16,0.03,1,0 +13061422,"Stunning, spacious apt near nightlife + parks!",6324947,Sarah,Brooklyn,Greenpoint,40.72341,-73.94061,Private room,49,3,4,2019-06-23,0.30,1,7 +13062471,The Silver Room,33346283,Jonathan,Manhattan,Harlem,40.83141,-73.94722,Private room,55,5,31,2019-06-26,0.88,3,326 +13062975,UPSCALE JR. 1 Bedroom in HEART OF HISTORIC CHELSEA,59905183,Bc,Manhattan,Chelsea,40.74664,-74.00165,Entire home/apt,249,90,2,2016-09-18,0.06,1,177 +13063023,Cozy room in Astoria,1924750,Jasmina,Queens,Astoria,40.76437,-73.91304,Private room,36,2,37,2019-06-24,1.03,2,228 +13063360,Cozy Room in Sunny Home,13270888,Adriana,Queens,Astoria,40.76764,-73.91633,Private room,65,4,28,2018-12-14,0.74,1,0 +13064336,Cozy Private Bedroom - Williamsburg,1412548,Naomi,Brooklyn,Williamsburg,40.70806,-73.94224,Private room,60,3,1,2017-10-12,0.05,1,0 +13064382,Sunny East Village apartment,26378652,Guy,Manhattan,East Village,40.72791,-73.98916,Entire home/apt,180,4,3,2019-06-07,0.10,1,0 +13064386,Beautiful Red Brick Room,23909946,Robin Laverne,Brooklyn,Bedford-Stuyvesant,40.68604,-73.91924,Private room,50,5,39,2019-06-21,1.04,3,40 +13064443,Amazing Studio in Brooklyn Heights,15239567,Feliz,Brooklyn,Brooklyn Heights,40.69218,-73.99124,Entire home/apt,110,2,1,2016-05-23,0.03,1,0 +13064717,76 St & 2 Ave /Renovated studio/ Elevator/ Laundry,1475015,Mike,Manhattan,Midtown,40.76102,-73.96555,Entire home/apt,87,30,2,2017-02-19,0.05,52,365 +13064913,Sunny Studio in the Heart of Downtown Brooklyn.,3872251,Santron,Brooklyn,Fort Greene,40.68589,-73.97659,Entire home/apt,100,2,13,2016-08-30,0.35,1,0 +13065032,"Spacious, kid-friendly apt. 15 mins from Manhattan",10643230,Jacob,Queens,Sunnyside,40.7464,-73.91675,Entire home/apt,120,5,3,2018-08-20,0.08,1,0 +13065347,COOL Brooklyn Room,48764969,Alina,Brooklyn,Cypress Hills,40.68122,-73.90399,Private room,42,6,12,2019-05-19,0.96,2,207 +13065356,"""Quaint-Essential"" Living in the West Village",42399786,Braydon,Manhattan,West Village,40.73564,-73.99823,Entire home/apt,145,3,100,2018-09-15,2.62,1,0 +13065655,Charming 1BR in Astoria with HUGE Outdoor Space!,72398084,David,Queens,Astoria,40.76803,-73.93033,Entire home/apt,110,21,0,,,1,0 +13065949,Spacious East Village Bedroom,11362470,Kyle,Manhattan,East Village,40.73007,-73.98637,Private room,99,1,2,2016-05-20,0.05,1,0 +13066577,Beautiful 3 bedroom loft Greenpoint/Williamsburg!,10677584,Angelina,Brooklyn,Greenpoint,40.73333,-73.95699,Entire home/apt,129,2,87,2019-06-23,2.33,4,124 +13067176,Prime Location Sun Filled West Village Townhome,72420514,Cate,Manhattan,West Village,40.73745,-74.00725,Entire home/apt,186,1,197,2019-07-07,5.24,3,209 +13070577,"It's ""THAT DREAM HOUSE"" in Williamsburg",32525834,Lara,Brooklyn,Williamsburg,40.71968,-73.94368,Entire home/apt,350,3,2,2018-06-10,0.14,1,78 +13072490,Large apartment in charming neighborhood,19414202,Marie Clare,Brooklyn,Greenpoint,40.73046,-73.95706,Entire home/apt,165,3,8,2017-05-13,0.22,1,0 +13073569,"Duane Street, Upscale Tribeca Studio",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00679,Entire home/apt,210,30,1,2019-04-30,0.43,87,329 +13073701,Lovely Charming and quiet 2 bed apartment,35660592,Luis,Queens,Corona,40.75058,-73.8535,Entire home/apt,119,2,37,2019-07-02,1.01,6,336 +13075158,Private Room in Artsy Lower Manhattan Apartment,1516947,Mil,Manhattan,Civic Center,40.71287,-73.99811,Private room,75,17,17,2019-03-31,0.48,1,38 +13075169,NYC Upper East 3B Home with Private Garden,72496078,Steven,Manhattan,Upper East Side,40.77331,-73.95459,Entire home/apt,400,7,4,2018-12-08,0.33,1,31 +13076592,Cozy bedroom with brightly lit living space,3389514,Nathalie,Brooklyn,Bedford-Stuyvesant,40.69313,-73.93543,Private room,60,2,59,2019-07-02,1.56,1,6 +13076852,Stylish Art-Filled Clinton Hill Apartment,72513175,Deshawn,Brooklyn,Bedford-Stuyvesant,40.68934,-73.9579,Private room,140,4,8,2017-05-29,0.21,1,89 +13076887,Spacious Studio in Midtown Manhattan,41263120,Mia,Manhattan,Midtown,40.75325,-73.97016,Entire home/apt,190,4,0,,,1,0 +13077215,"Third Avenue, 1bd Serviced Apartment",22541573,Ken,Manhattan,Gramercy,40.7382,-73.98301,Entire home/apt,245,30,1,2018-11-01,0.12,87,236 +13077301,"Duane Street, Upscale Tribeca 1bd",22541573,Ken,Manhattan,Tribeca,40.71642,-74.00667,Entire home/apt,245,30,1,2018-05-26,0.07,87,262 +13077317,"East 29th Street, Luxury Studio in NOMAD",22541573,Ken,Manhattan,Midtown,40.74426,-73.98535,Entire home/apt,192,30,0,,,87,334 +13077370,Modern Private Studio -20 min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73874,-73.87595,Entire home/apt,89,1,146,2019-06-25,3.85,6,252 +13077988,"East 29th Street, Luxury 1bd in NOMAD",22541573,Ken,Manhattan,Midtown,40.74556,-73.98542,Entire home/apt,219,30,0,,,87,343 +13078166,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73929,-73.9999,Entire home/apt,179,30,0,,,87,273 +13078201,Hanover Square Lux Downtown Studio Serviced Apt,22541573,Ken,Manhattan,Financial District,40.7052,-74.00974,Entire home/apt,199,30,0,,,87,344 +13079614,"West Street, Upscale Svcd 1bd Dwtn Financial Area",22541573,Ken,Manhattan,Financial District,40.70748,-74.01476,Entire home/apt,238,30,0,,,87,365 +13079618,Cozy Apartment in Fort Greene,7221835,Darian,Brooklyn,Fort Greene,40.6904,-73.97285,Entire home/apt,140,3,2,2016-10-24,0.05,1,0 +13080002,Clinton Hill room in two-bedroom apartment,2340370,Vivek,Brooklyn,Bedford-Stuyvesant,40.69027,-73.95801,Private room,37,1,1,2016-11-01,0.03,1,0 +13080685,Shared room in Kips Bay/Murray Hill,5707158,Yuan,Manhattan,Kips Bay,40.7447,-73.97593,Shared room,49,2,23,2017-06-20,0.61,2,0 +13081306,Studio near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76517,-73.99331,Entire home/apt,115,30,6,2019-06-05,0.17,31,331 +13082571,Garden Overlook,72318418,Francisca,Brooklyn,Crown Heights,40.67002,-73.92054,Private room,69,2,132,2019-06-24,3.46,3,365 +13082588,Modern and Clean Upper East Side Studio,17671924,Emily,Manhattan,Upper East Side,40.77079,-73.95949,Entire home/apt,100,2,2,2016-07-17,0.05,1,0 +13082600,Cozy 1 bedroom apartment in the heart of Manhattan,4980733,Simona,Manhattan,Midtown,40.75584,-73.96979,Entire home/apt,300,1,38,2019-06-27,1.01,1,361 +13082957,"COMFY & SECURE NEAR AIRPORT, SHOPPING MALLS & PARK",5261297,Jackie,Queens,Corona,40.74332,-73.85469,Private room,52,1,45,2018-08-07,1.27,1,57 +13083020,Spacious Bedroom in the heart of Bedstuy,1892402,Emily,Brooklyn,Bedford-Stuyvesant,40.68347,-73.95462,Private room,50,3,4,2016-08-29,0.11,1,0 +13083030,Your own 2 Bedroom apartment available for 3 weeks,37093995,Marta,Manhattan,Inwood,40.86794,-73.92792,Entire home/apt,100,15,0,,,1,0 +13083221,1 bedroom in a 3 bedroom apartment,46407854,Deniz,Brooklyn,Prospect-Lefferts Gardens,40.66117,-73.94317,Private room,55,1,0,,,1,0 +13083638,Spacious & Sunny - Greenpoint,17176974,Michael,Brooklyn,Greenpoint,40.72764,-73.95579,Entire home/apt,199,3,8,2017-05-29,0.25,1,0 +13083988,Private Bedroom/Bath in Luxury Greenpoint Condo,154956,Katie,Brooklyn,Greenpoint,40.73443,-73.95678,Private room,90,7,2,2016-08-14,0.05,1,47 +13084004,Spacious Stylish Studio in Prospect Park South,2497082,Sadecia,Brooklyn,Flatbush,40.64523,-73.96213,Entire home/apt,65,5,13,2019-04-30,0.35,1,0 +13084019,Park Avenue Penthouse With Terrace,72596571,Trish,Manhattan,Midtown,40.75082,-73.98526,Entire home/apt,400,7,103,2019-06-17,2.70,1,344 +13084346,Sunny 1 Bedroom in Park Slope near Prospect Park,22423754,Priyanka,Brooklyn,Park Slope,40.66936,-73.97724,Entire home/apt,65,8,1,2016-05-30,0.03,1,0 +13090558,"Studio Apt in Queens, 15Mins to Midtown & Brooklyn",21930159,Eduardo,Queens,Sunnyside,40.74534,-73.91809,Entire home/apt,71,2,7,2019-06-02,1.96,1,0 +13091309,"Broadway, Luxury Studio in Times Square",22541573,Ken,Manhattan,Theater District,40.76069,-73.98319,Entire home/apt,199,30,1,2017-01-08,0.03,87,328 +13091684,"Sunny 2bdrm Apt. near Bryant Park, Apt 2B",17770287,Nina,Manhattan,Midtown,40.74927,-73.98303,Entire home/apt,163,30,4,2019-05-13,0.17,14,332 +13091737,Charming one BR apartment in heart of Nolita/SoHo,72677655,Christina,Manhattan,Nolita,40.72153,-73.99493,Entire home/apt,126,2,11,2016-11-15,0.29,1,0 +13092405,Midtown Apartment,72684665,David,Manhattan,Midtown,40.75733,-73.96577,Entire home/apt,150,1,136,2019-06-21,3.71,1,248 +13092482,Lux Studio Apt in Midtown NYC near Central park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76227,-73.99807,Entire home/apt,199,30,1,2016-10-04,0.03,121,365 +13092522,"Sunny, charming 1 bedroom in Crown Heights",27714436,Rebecca,Brooklyn,Crown Heights,40.67372,-73.95334,Private room,51,1,1,2016-05-21,0.03,1,0 +13092604,"Broadway, Luxury 1bd in Times Square",22541573,Ken,Manhattan,Theater District,40.76106,-73.9848,Entire home/apt,256,30,0,,,87,340 +13093161,"West 23rd Street, Lux Chelsea 1bd serviced Apt",22541573,Ken,Manhattan,Chelsea,40.74641,-74.00401,Entire home/apt,289,30,2,2018-11-05,0.08,87,339 +13093381,"West 23rd Street, Lux Chelsea Studio svcd apt",22541573,Ken,Manhattan,Chelsea,40.74651,-74.00563,Entire home/apt,219,30,1,2017-08-11,0.04,87,340 +13093642,Ivy Tower,72296750,Carla,Manhattan,Hell's Kitchen,40.75798,-73.99156,Entire home/apt,239,30,0,,,1,365 +13094020,Sunny 1 BR in Brooklyn,33656032,Warren,Brooklyn,Boerum Hill,40.686,-73.98579,Entire home/apt,125,3,1,2016-06-21,0.03,1,0 +13094250,Garden Bedroom in Carroll Gardens Brownstone,72701423,Isaac,Brooklyn,Carroll Gardens,40.6783,-73.99419,Private room,90,1,5,2016-06-27,0.13,1,0 +13094329,Designers Lovely UWS Full Floor Townhouse Apt!,372206,Liz,Manhattan,Upper West Side,40.7869,-73.97254,Entire home/apt,150,3,4,2016-10-02,0.11,1,0 +13094690,"Sunny, Bushwick Apartment",8106327,Dallas,Brooklyn,Bushwick,40.69819,-73.9334,Private room,40,2,1,2017-08-19,0.04,1,0 +13096146,"Garden Apartment in Crown Heights, Brooklyn",2762303,Jt,Brooklyn,Crown Heights,40.67336,-73.95451,Entire home/apt,120,4,7,2016-07-28,0.18,1,0 +13097050,Steps from Central Park: Bedroom in spacious apt,38671350,Alejandro,Manhattan,East Harlem,40.78843,-73.95504,Private room,200,5,0,,,1,0 +13098452,"3-6month SUBLET Sparkling, spacious, Manhattan 3BR",4942450,Sacha,Manhattan,Washington Heights,40.85073,-73.93851,Entire home/apt,126,68,17,2018-11-10,0.47,1,0 +13098627,Spacious 2 bedroom apartment,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7645,-73.99447,Entire home/apt,200,30,3,2017-11-26,0.12,31,341 +13098701,NYCHaven4:Entire house minutes from JFK and Casino,47351539,Jason,Queens,South Ozone Park,40.67321,-73.79247,Entire home/apt,195,1,239,2019-06-21,6.31,4,256 +13098705,Big & Beautiful 1-BR w/Private Backyard,14865754,Jerrell,Manhattan,Harlem,40.81829,-73.94686,Entire home/apt,175,2,34,2019-06-19,0.98,1,75 +13098805,"Clean, quiet, cozi Upper East Side studio apt",24494897,Isabella,Manhattan,Upper East Side,40.76704,-73.95722,Entire home/apt,159,6,0,,,1,0 +13099377,1 Bedroom in Quiet Hamilton Heights Neighborhood.,43518492,Angela,Manhattan,Harlem,40.82828,-73.94264,Private room,130,3,3,2019-05-20,0.10,1,0 +13099447,Great ZEN & Peaceful one bedroom in Time Square!,72765906,Carla,Manhattan,Hell's Kitchen,40.76212,-73.9882,Entire home/apt,170,4,112,2019-07-01,2.97,1,262 +13099742,Perfect Summer Apartment (1 Bedroom available),72770139,Francisco,Brooklyn,South Slope,40.66665,-73.98875,Private room,60,1,1,2016-07-09,0.03,1,0 +13100152,"BEAUTIFUL TOP-FLOOR SUBLET IN ASTORIA, NYC",620810,Jay,Queens,Astoria,40.76555,-73.9169,Entire home/apt,110,13,1,2016-09-01,0.03,1,0 +13100277,"Bright, inviting room-quick to NYC, females only.",35494734,Jennifer,Queens,Woodside,40.75266,-73.90336,Private room,70,5,9,2019-06-22,0.29,2,138 +13100305,Spacious 1 bedroom 1 bath,72779585,Vanessa,Brooklyn,Crown Heights,40.67702,-73.95864,Entire home/apt,105,2,7,2019-04-28,0.18,1,32 +13100373,Incredible 3 BR Union Square Loft,38331104,Anna,Manhattan,Gramercy,40.73627,-73.98986,Private room,100,7,0,,,1,0 +13100726,NYC living to it's fullest... in a good way!,16884931,Whitney,Manhattan,East Harlem,40.80637,-73.93722,Entire home/apt,140,1,28,2019-04-24,0.74,1,170 +13101260,Spacious Sun Drenched Brick Encrusted Loft,676499,Abe,Manhattan,East Village,40.72487,-73.98125,Entire home/apt,175,4,3,2017-06-30,0.08,1,0 +13101616,EAST 60TH ST&1ST AVE/ 2BR DOORMAN BLDG,2856748,Ruchi,Manhattan,Upper East Side,40.75993,-73.96056,Entire home/apt,198,30,0,,,49,331 +13101855,Garden level studio w/backyard,45197707,Claudine,Brooklyn,Flatlands,40.61529,-73.92567,Entire home/apt,90,2,125,2019-07-07,3.30,1,302 +13102116,DOWNTOWN BROOKLYN beautiful apt,17181881,Peter,Brooklyn,Fort Greene,40.69286,-73.98037,Entire home/apt,128,10,1,2016-06-30,0.03,1,0 +13102409,Large & comfortable studio in Financial District,2233249,Eve,Manhattan,Financial District,40.70931,-74.00959,Entire home/apt,110,6,5,2017-07-01,0.13,1,0 +13105778,Entire Astoria Hardwood Floor 1 BR Apartment,72839296,Megahn,Queens,Long Island City,40.76235,-73.92973,Entire home/apt,99,2,16,2016-12-10,0.44,1,0 +13107627,Private Bedroom w/ Private Bath/Mini Fridge,72542338,Mychelle,Brooklyn,Manhattan Beach,40.58078,-73.95356,Private room,125,2,21,2019-06-12,0.56,1,311 +13108073,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,2856748,Ruchi,Manhattan,Upper East Side,40.76174,-73.96366,Entire home/apt,160,30,0,,,49,364 +13108191,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74451,-73.99236,Entire home/apt,270,30,0,,,87,350 +13108192,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.7448,-73.99204,Entire home/apt,205,30,2,2016-12-21,0.06,87,0 +13108345,"Sixth Ave Chelsea, Studio Serviced Apartment*",22541573,Ken,Manhattan,Chelsea,40.74491,-73.99267,Entire home/apt,205,30,0,,,87,357 +13108573,"West 33rd street, Lux Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75148,-73.99397,Entire home/apt,230,30,1,2016-11-03,0.03,87,350 +13109268,One bedroom with great views of Manhattan,72874338,Augie,Brooklyn,Bushwick,40.69025,-73.90871,Private room,40,1,3,2017-01-03,0.08,1,0 +13109326,New York City Apt. w/ Incredible View of Manhattan,72874879,James,Brooklyn,Park Slope,40.67202,-73.97131,Entire home/apt,700,7,0,,,1,0 +13109817,Private room available for summer,23147852,Briana,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94515,Private room,69,90,0,,,1,365 +13109933,Luxury condo with views in Brooklyn,1642326,Steve,Brooklyn,Downtown Brooklyn,40.69202,-73.98469,Entire home/apt,225,3,36,2019-07-03,1.01,1,53 +13109949,"Sunny, couple-friendly BedStuy Apartment",72881006,Lane,Brooklyn,Bedford-Stuyvesant,40.69375,-73.95208,Private room,50,1,2,2016-06-20,0.05,1,0 +13111578,"Spacious Room w/ Bed & TV, etc.",72897900,Joseph,Brooklyn,Bedford-Stuyvesant,40.68696,-73.92905,Private room,45,1,7,2016-06-14,0.19,1,0 +13112297,Luxurious SOHO 2 BR Washington Sq Park,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72807,-74.00041,Entire home/apt,159,30,4,2019-06-16,0.14,91,281 +13112311,"***Lux Doorman/Furnished,Battery Park ***",52950465,Gal,Manhattan,Battery Park City,40.7109,-74.01768,Entire home/apt,250,30,0,,,12,280 +13112601,Beautiful light and lots of space,13769025,Alberto,Brooklyn,Bedford-Stuyvesant,40.69563,-73.95149,Private room,43,1,0,,,1,220 +13112855,Prime location Irving Place Doorman 1 bedroom 5191,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73505,-73.98565,Entire home/apt,180,30,1,2017-07-31,0.04,96,281 +13112895,Penthouse Exclusive Garden Top Apartment,7573341,Robert,Brooklyn,Sunset Park,40.63885,-74.01959,Entire home/apt,225,2,130,2019-06-28,3.48,2,306 +13113038,Large apartment with a balcony in a doorman bldg,72507521,Sam,Manhattan,Harlem,40.81245,-73.94085,Entire home/apt,190,1,0,,,1,0 +13113202,Private room with detached private bathroom,69427329,Michelle & Eddie,Queens,Elmhurst,40.73849,-73.87606,Private room,49,1,65,2019-07-01,1.70,6,355 +13113422,"Clean, Open 1 bdrm Upper West- Steps from train",72918560,Lauren,Manhattan,Upper West Side,40.77995,-73.9822,Entire home/apt,294,14,0,,,1,0 +13113626,Fantastic Midtown Apartment!-2b,46648109,Bridgestreet Corporate,Manhattan,Midtown,40.75722,-73.97842,Entire home/apt,559,30,2,2018-10-20,0.17,1,0 +13113906,Park Slope room steps from Subway&Prospect Park,72923241,Jean-Guy,Brooklyn,Park Slope,40.67073,-73.98719,Private room,109,3,68,2019-06-10,1.97,1,213 +13114019,Chic Unique Large Chelsea One Bedroom,34761471,Lincoln,Manhattan,Chelsea,40.74589,-74.0048,Entire home/apt,250,4,18,2018-09-29,0.49,1,0 +13114072,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Midtown,40.76367,-73.98345,Entire home/apt,269,30,1,2018-11-18,0.13,87,364 +13114237,Charming Sunny Designer Loft 1 stop to Manhattan,4043259,Tiffany,Brooklyn,Greenpoint,40.72536,-73.95712,Private room,81,2,131,2019-06-19,3.50,2,120 +13114437,Room and private bath in sunny Brooklyn apartment,42605385,Cameron,Brooklyn,Flatbush,40.63612,-73.96297,Private room,53,14,2,2016-08-01,0.05,3,0 +13114443,East Village Spacious 3 Bedroom Across from Park,72931015,Spencer,Manhattan,East Village,40.72527,-73.98347,Entire home/apt,206,1,1,2016-06-05,0.03,1,0 +13114542,NYC,58735878,Jiandong,Manhattan,Harlem,40.82889,-73.94599,Private room,40,1,1,2016-05-27,0.03,1,0 +13115616,"Spacious Charming NYC Apt, 10 min to Midtown",9197619,Samantha,Queens,Ditmars Steinway,40.77592,-73.91308,Entire home/apt,130,10,0,,,1,0 +13115864,Charming Studio in West Chelsea,16055560,Catalina,Manhattan,Chelsea,40.7453,-74.00242,Entire home/apt,105,2,6,2016-06-20,0.16,1,0 +13116397,Spacious Room in East Village Apartment,35959584,Kartik,Manhattan,East Village,40.72778,-73.97825,Private room,75,1,8,2016-09-29,0.21,1,0 +13116481,Gorgeous stylish townhouse in Brooklyn,350055,Claire,Brooklyn,Prospect Heights,40.67641,-73.96775,Entire home/apt,499,4,7,2019-04-15,0.20,1,25 +13117094,"On Fifth, Across From Central Park",72967204,Gerald,Manhattan,East Harlem,40.79485,-73.94868,Entire home/apt,165,7,49,2019-06-29,1.37,1,64 +13117160,Bedroom in Clean Uptown Apartment,1921498,Pedro Pablo,Manhattan,Washington Heights,40.84467,-73.93374,Private room,55,6,2,2019-05-10,0.08,3,3 +13117282,Cheerful & Practical Garden Apartment Near Subway,2988712,Sasha,Bronx,Claremont Village,40.83458,-73.91021,Entire home/apt,57,90,11,2019-05-10,0.31,7,68 +13117480,"Cozy Park Slope Apt, Next to BBG",70674019,Jack,Brooklyn,Prospect Heights,40.67329,-73.96291,Entire home/apt,201,30,66,2019-06-16,1.78,2,159 +13121809,Spacious Sunny One Bed in Williamsburg,24370211,Yety,Brooklyn,Williamsburg,40.71307,-73.95502,Entire home/apt,80,10,2,2017-01-07,0.05,2,0 +13122135,Room in BIG art-filled space in prime Brooklyn,9793190,Rebecca,Brooklyn,Greenpoint,40.72721,-73.94951,Private room,80,1,4,2018-02-25,0.24,1,0 +13122318,2bdrm apt w/private backyard in Artsy Bushwick,2689908,Emily,Brooklyn,Bushwick,40.69832,-73.92622,Entire home/apt,59,2,177,2019-06-24,4.74,1,3 +13122932,"East Village duplex: peaceful, bright & cheerful",73029190,Dina,Manhattan,East Village,40.72554,-73.98245,Entire home/apt,250,14,0,,,1,174 +13123232,Beautiful Private Room Near Hudson River,12341146,Michelle,Manhattan,Hell's Kitchen,40.76089,-73.99879,Private room,200,1,1,2016-06-06,0.03,1,0 +13123883,Bright Open Bedroom at the Heart of Wall Street,18438941,Junyi,Manhattan,Financial District,40.70883,-74.00764,Shared room,100,10,0,,,1,0 +13124637,Private BR in a 2 BR Central Park West,32132982,Vanessa,Manhattan,Upper West Side,40.79613,-73.96658,Private room,60,2,23,2017-02-21,0.62,1,0 +13124724,391 Hancock Street,27019686,Gool-Jitzu,Brooklyn,Bedford-Stuyvesant,40.68329,-73.9399,Entire home/apt,150,5,1,2018-06-16,0.08,1,0 +13125150,"Washington Street, Lux Svcd Studio in West Village",22541573,Ken,Manhattan,West Village,40.7304,-74.00887,Entire home/apt,215,30,0,,,87,365 +13125243,Home away from home,46087238,Michion,Queens,Jamaica,40.68723,-73.78791,Private room,40,1,14,2018-10-11,0.42,2,335 +13125552,Beautiful Bushwick Bungalow,20109188,Neanna,Brooklyn,Williamsburg,40.70413,-73.93205,Entire home/apt,175,2,102,2019-06-25,2.68,1,284 +13126457,Unique 2BR Apartment,31483931,Nick,Queens,Long Island City,40.74226,-73.94999,Entire home/apt,151,2,87,2019-07-05,2.30,1,17 +13126582,STUNNING ONE BEDROOM IN THE HEART OF NEW YORK CITY,73069526,Tony,Manhattan,Hell's Kitchen,40.7655,-73.98682,Entire home/apt,250,7,52,2018-09-04,1.40,1,0 +13127582,One bedroom in Beautiful Astoria with balcony!,42048980,Stephanie,Queens,Ditmars Steinway,40.77265,-73.91401,Private room,100,1,1,2016-05-30,0.03,1,0 +13127711,Elegantly designed 1bd room apt,71619228,Makeeba,Manhattan,Harlem,40.80501,-73.94249,Entire home/apt,200,7,0,,,1,178 +13128747,2 Bedroom/2 Bath Luxury Apartment With Terrace,10676792,Kristen,Brooklyn,Bedford-Stuyvesant,40.68457,-73.9262,Entire home/apt,120,2,5,2016-08-31,0.13,2,0 +13128861,"Cozy Studio in Clinton Hill, Brooklyn",16065842,Michael,Brooklyn,Clinton Hill,40.68511,-73.96638,Entire home/apt,100,2,64,2019-06-27,1.69,1,15 +13128992,UpperEastSide Sun Drenched 2 Bedrooms Close to All,8687162,Pinar,Manhattan,Upper East Side,40.77847,-73.95371,Entire home/apt,135,15,0,,,1,0 +13129120,"Central Park Bedroom - Spacious, Sunny, Subway",21077880,Camille,Manhattan,East Harlem,40.79525,-73.94912,Private room,80,2,29,2019-07-05,1.96,1,3 +13129533,Room in loft-like ground Floor apt,3710740,Daniel,Manhattan,Harlem,40.81777,-73.9535,Private room,60,1,63,2019-06-07,1.74,2,0 +13129607,Spacious Studio in the heart of NYC's East Village,11935406,Brandon,Manhattan,East Village,40.72684,-73.98938,Entire home/apt,123,2,7,2017-02-05,0.20,1,0 +13129664,Large/Modern 1 Bed Apt Williamsburg,65674570,Gabby,Brooklyn,Williamsburg,40.71529,-73.96398,Entire home/apt,189,3,6,2016-12-27,0.16,1,0 +13130036,Upper-East Side 1 Bedroom Gem Duplex with Garden,12810744,Vivian,Manhattan,Upper East Side,40.77586,-73.95164,Entire home/apt,235,120,8,2016-10-27,0.23,1,12 +13130313,Studio in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76502,-73.99277,Entire home/apt,90,30,11,2019-05-01,0.33,31,223 +13130332,Welcome to Williamsburg,16708043,Justin,Brooklyn,Williamsburg,40.71066,-73.95726,Private room,85,1,42,2017-11-24,1.14,1,0 +13130565,Private bedroom in two bedroom apartment one,73124477,Alexander,Brooklyn,Crown Heights,40.67433,-73.94243,Private room,40,5,119,2019-05-31,3.16,2,3 +13130744,Uptown Bronx Apartment,73126926,Real Estate To Go,Bronx,Williamsbridge,40.88493,-73.8618,Entire home/apt,67,3,205,2019-06-12,5.39,1,140 +13134161,"Peaceful home, industrial neighborhood",460765,Jack,Brooklyn,Gowanus,40.68164,-73.98631,Private room,63,2,2,2016-06-19,0.05,1,0 +13135097,"Beautiful, New, 1 BR, Heart of Williamsburg!",70178459,Chris,Brooklyn,Williamsburg,40.71401,-73.95664,Entire home/apt,150,1,6,2016-12-25,0.16,1,0 +13135589,"Clean and Spacious Apt. in Bay Ridge, Brooklyn, NY",73179534,Iman,Brooklyn,Fort Hamilton,40.61778,-74.02736,Private room,70,2,8,2018-11-04,0.59,1,0 +13135822,Gorgeous Bedroom in Manhattan Midtown West,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76454,-73.99114,Private room,75,4,146,2019-07-06,3.89,3,73 +13135904,"Cozy Studio in Times Square, NYC",10234636,Kunal,Manhattan,Hell's Kitchen,40.75855,-73.98931,Entire home/apt,99,30,19,2018-07-19,0.54,1,2 +13136376,Spacious 2 Bedroom with Balcony,16110448,Gingie,Manhattan,East Harlem,40.79658,-73.93287,Entire home/apt,199,2,30,2019-06-03,0.80,1,30 +13136536,SuiteBeach house near JFK & A Train to Manhattan,73190364,Reed,Queens,Edgemere,40.59534,-73.77209,Private room,195,4,0,,,1,0 +13136912,Brighton Beach Studio Half Block From the Ocean,6909591,Eli,Brooklyn,Brighton Beach,40.57509,-73.96603,Entire home/apt,67,1,1,2016-06-05,0.03,1,0 +13137538,Private Room minutes to/from Manhattan,206337,Anna,Queens,Sunnyside,40.7459,-73.92441,Private room,71,3,40,2019-05-21,1.06,1,286 +13137970,Charming room in light filled apt,9614283,Sara Cecilia,Brooklyn,Bushwick,40.70158,-73.92023,Private room,35,3,7,2017-07-08,0.22,1,0 +13139462,Lefferts garden gem,71853402,Lorraine,Brooklyn,East Flatbush,40.64302,-73.95022,Private room,100,1,30,2019-07-01,0.80,2,342 +13139565,Private room in Williamsburg,73227676,Lindsay,Brooklyn,Greenpoint,40.72098,-73.94639,Private room,158,1,0,,,1,0 +13139850,Big Room In Beautiful Bushwick 2br w/ Washer-Dryer,34731099,Matthew,Brooklyn,Bushwick,40.69096,-73.92352,Private room,30,1,0,,,1,0 +13140220,RARE UES APT W/PRIV STREET ENTRANCE,35384978,Hans,Manhattan,Upper East Side,40.77504,-73.94945,Entire home/apt,138,1,95,2019-06-07,2.54,2,215 +13140940,Large Sunlit Room-Quick Commute to Manhattan/NYC!,73247569,Sinida,Brooklyn,Bushwick,40.69989,-73.93617,Private room,52,1,97,2019-07-02,2.55,2,115 +13141460,"Great space, great location!",46309248,Heather,Queens,Astoria,40.76776,-73.92707,Private room,120,1,1,2016-06-14,0.03,1,0 +13142258,"Great 1 BR, 17 minutes to Times Square!",65652567,Wayne,Queens,Woodside,40.74377,-73.9024,Entire home/apt,125,2,156,2019-06-25,4.13,1,263 +13145377,West Village Studio,22363037,Jessica,Manhattan,West Village,40.73733,-74.00392,Entire home/apt,119,3,1,2016-08-03,0.03,1,0 +13148370,Beautiful Garden Level Apartment in Brooklyn,18893401,Angela,Brooklyn,Fort Greene,40.68457,-73.96969,Entire home/apt,225,2,11,2017-06-15,0.30,1,0 +13149690,Private Cozy Bedroom - Central Park North,72008788,Chris,Manhattan,Harlem,40.79952,-73.95248,Private room,75,3,107,2019-06-13,2.86,1,279 +13150529,Private Loft Bedroom in Bushwick,5561136,Yazmiyn,Brooklyn,Bushwick,40.6861,-73.90977,Private room,60,5,0,,,1,0 +13151072,Apartment in a heart of NY,52049429,Natalia,Manhattan,Hell's Kitchen,40.75989,-73.98832,Entire home/apt,70,2,112,2019-06-24,2.97,1,11 +13151075,ASTORIA APARTMENT OUTDOOR SPACE,18051286,Danielle,Queens,Astoria,40.77221,-73.92901,Private room,50,1,0,,,1,0 +13152876,Spacious & Sunny Private Room in Williamsburg!,65252597,Zac,Brooklyn,Williamsburg,40.71038,-73.95397,Private room,45,3,1,2016-10-27,0.03,1,0 +13152955,Peaceful West Village 1 Bedroom Apt,962936,Daniel,Manhattan,Greenwich Village,40.72953,-74.00148,Entire home/apt,600,5,24,2019-06-01,0.63,1,336 +13153265,"Private Garden Apt in Park Slope, Brooklyn, NYC",41084247,Dena,Brooklyn,Park Slope,40.67001,-73.98347,Entire home/apt,175,4,31,2019-05-31,0.86,1,254 +13153395,"Best Value 1,000SF 2BR Classic Brownstone",73400193,Spencer,Brooklyn,Crown Heights,40.67293,-73.95519,Entire home/apt,150,2,141,2019-07-06,3.79,1,299 +13153768,Bright Room w/ a Brilliant Manhattan View,4218058,Jessica,Brooklyn,Fort Greene,40.68641,-73.97085,Private room,76,3,23,2017-11-14,0.62,2,177 +13153856,Large 1BR Apt. in Williamsburg,47292710,Peter,Brooklyn,Williamsburg,40.71233,-73.94806,Entire home/apt,200,1,6,2016-07-25,0.16,1,0 +13153886,Feel at Home,73406935,Nicky,Brooklyn,Bedford-Stuyvesant,40.68145,-73.94208,Entire home/apt,170,3,72,2019-06-23,2.00,1,255 +13154343,Spacious Modern Alcove Studio in a Luxury Building,13739649,Alexander,Manhattan,Hell's Kitchen,40.76144,-73.99243,Entire home/apt,225,2,32,2019-06-25,0.85,1,44 +13155196,Artist's Room in Large Apartment,7532592,Nicole,Brooklyn,Fort Greene,40.69497,-73.97209,Private room,50,7,2,2016-06-25,0.05,1,0 +13155269,Modern Oasis in Central Park Slope,62660832,Deborah,Brooklyn,Park Slope,40.66954,-73.98226,Entire home/apt,150,30,42,2019-05-12,1.11,1,117 +13155478,"One BR upper east, walk out to garden",68234238,Kyle,Manhattan,Upper East Side,40.77626,-73.94693,Private room,100,1,2,2016-06-13,0.05,1,0 +13156126,"Brownstone garden 2 bedroom duplex, Central Park",5162192,Amy,Manhattan,Upper West Side,40.79831,-73.96052,Entire home/apt,202,30,8,2019-05-20,0.30,12,147 +13156351,Bright Cozy Private Room near Columbia Univ,11309985,Jean,Manhattan,Upper West Side,40.80279,-73.96535,Private room,60,2,2,2016-05-31,0.05,2,0 +13156625,1 bdrm/large studio in a great location,49125175,George,Brooklyn,Prospect Heights,40.67539,-73.96865,Entire home/apt,99,3,6,2016-12-10,0.16,1,0 +13156842,Cozy Private Room #2 Two Beds Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69546,-73.85062,Private room,38,1,170,2019-06-06,4.49,4,192 +13156881,"Cozy Bedroom- Beautiful, Historical Location",34160620,Charlotte And Mary,Manhattan,Harlem,40.82267,-73.94677,Private room,70,1,58,2019-06-13,1.55,2,0 +13156982,Sunny New Artist's 1BR In Greenpoint,62285182,Brian,Brooklyn,Greenpoint,40.73432,-73.95145,Entire home/apt,117,2,17,2016-11-19,0.47,1,0 +13156998,1 BR / studio right by Central Park,3671013,Neha,Manhattan,Midtown,40.76365,-73.97754,Entire home/apt,200,1,0,,,2,0 +13157014,"2 BEDROOMS, 1 BATH, FULL FRONTAL OCEANVIEW",65825355,Paul,Brooklyn,Brighton Beach,40.57762,-73.95662,Entire home/apt,99,3,0,,,1,0 +13157147,Spacious 1 BR Apartment w/ private backyard,2708284,Agustina,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94553,Private room,75,6,37,2019-06-17,1.53,1,329 +13157343,Spacious one bedroom by beautiful Fort Tryon park,73459264,Leslie,Manhattan,Inwood,40.86383,-73.92905,Entire home/apt,105,4,7,2019-01-02,0.19,1,0 +13162066,Convenient & comfortable studio near Penn Station,73505108,Ryan,Manhattan,Chelsea,40.75037,-73.99858,Entire home/apt,130,6,63,2019-06-23,1.68,1,34 +13162150,"Sunfilled, clean, MONTHly discount",4326776,Sabina,Queens,Woodside,40.74457,-73.90474,Private room,80,14,0,,,1,0 +13163474,"Cozy, Sunny, UWS Junior One Bedroom",16205472,Sami,Manhattan,Upper West Side,40.79296,-73.97456,Entire home/apt,100,4,2,2018-07-23,0.09,1,83 +13163670,Sunny 1BR in Crown Heights,23080138,Andrew,Brooklyn,Crown Heights,40.67194,-73.95182,Entire home/apt,195,2,0,,,1,0 +13164204,Beautiful Big Bedroom In Shared Apt-Roof/Balcony,55292741,Samantha,Brooklyn,Bushwick,40.70153,-73.92244,Private room,115,2,0,,,1,0 +13164373,Spacious art deco 2 BR in Hudson Heights,473497,Jennifer,Manhattan,Washington Heights,40.85487,-73.93509,Entire home/apt,175,1,0,,,1,0 +13164444,Luxury Loft in Renovated Warehouse with 2 terraces,15221605,Elizabeth,Brooklyn,Williamsburg,40.71102,-73.95123,Entire home/apt,269,7,1,2016-07-20,0.03,1,0 +13164658,Classic NYC Loft in the heart of Tribeca,10578546,Kara,Manhattan,Tribeca,40.71549,-74.00804,Entire home/apt,325,3,6,2018-07-04,0.18,1,333 +13164770,Sunny Bedroom in Beautiful Apartment in Bushwick,22851099,Elena,Brooklyn,Bushwick,40.69074,-73.91705,Private room,40,1,0,,,1,0 +13165250,Cozy Apartment In Inwood!,43272945,Corey,Manhattan,Inwood,40.8679,-73.91842,Entire home/apt,80,1,2,2016-07-18,0.06,1,0 +13165301,Three bedroom house in Forest Hills NY,68848703,Rupi,Queens,Forest Hills,40.71939,-73.85127,Entire home/apt,509,3,7,2018-09-13,0.20,2,264 +13165500,"Cozy, chic Williamsburg apartment",4104874,Lauren,Brooklyn,Williamsburg,40.71021,-73.94944,Entire home/apt,200,2,1,2016-06-12,0.03,1,0 +13166383,"Washington Street, Lux Svcd 1bd in West Village",22541573,Ken,Manhattan,West Village,40.72993,-74.01,Entire home/apt,278,30,0,,,87,350 +13166495,Large 1-bedroom apartment with amazing rooftop,73550526,Claudia,Manhattan,East Village,40.72884,-73.98548,Entire home/apt,195,2,7,2017-05-29,0.19,1,0 +13167017,"East 19th Street, Charming 1Bd Serviced Apt",22541573,Ken,Manhattan,Gramercy,40.73754,-73.98741,Entire home/apt,225,30,1,2017-07-31,0.04,87,249 +13167453,Crash Pad Close to LGA/JFK/Manhattan,21216008,Jose,Queens,Jackson Heights,40.74989,-73.87829,Shared room,35,1,120,2019-06-21,3.18,4,340 +13167611,Massive apartment minutes from Manhattan!,15430149,Ivette,Queens,Ditmars Steinway,40.77367,-73.91597,Entire home/apt,92,2,1,2018-10-07,0.11,1,0 +13167621,Your Home near the Central Park,73561955,Baichuan,Manhattan,Upper West Side,40.79559,-73.96434,Private room,65,7,0,,,1,0 +13168302,Gorgeous brownstone duplex in prime Boerum Hill,64098159,Lucinda,Brooklyn,Boerum Hill,40.68662,-73.98305,Entire home/apt,300,30,0,,,1,36 +13168677,"Tidy, Private Room in Brooklyn, a Commuter's Dream",45451107,Jamie,Brooklyn,Fort Greene,40.68445,-73.97168,Private room,95,2,54,2019-05-27,1.44,1,0 +13169181,LARGE BEDROOM AND PRIVATE BATHROOM ..ASTORIA!,5430458,Christian,Queens,Astoria,40.76672,-73.92769,Private room,95,4,45,2019-07-04,1.19,1,93 +13169559,Hell's Kitchen Enclave: a Diamond in the Rough.,73583445,Michael,Manhattan,Hell's Kitchen,40.76511,-73.99432,Entire home/apt,119,4,136,2019-06-15,3.59,1,17 +13169806,Unique Studio in Chelsea,988088,Tale,Manhattan,Chelsea,40.74729,-74.00244,Entire home/apt,154,2,23,2019-06-02,0.62,1,4 +13170049,Private Bedroom in a 3 BR Apt on Riverside Drive,7141050,Mayra,Manhattan,Inwood,40.86709,-73.92962,Private room,80,2,12,2017-12-27,0.34,2,49 +13170106,Bright & spacious east village apartment,21425186,Doug,Manhattan,East Village,40.72333,-73.98795,Entire home/apt,250,3,0,,,1,0 +13170159,Brooklyn Brand New Studio,62535444,Alex,Brooklyn,Manhattan Beach,40.57867,-73.95227,Entire home/apt,99,1,41,2019-07-04,1.10,2,363 +13170687,Beautiful En suit,73445541,Joseph,Queens,Bayside,40.77439,-73.77723,Private room,75,10,0,,,1,365 +13170825,Sunny and spacious 1 bedroom Brooklyn apartment,27556149,Ja'Tovia,Brooklyn,Bedford-Stuyvesant,40.68444,-73.94822,Entire home/apt,75,5,2,2016-07-18,0.05,1,0 +13170860,"***Luxury Doorman, Grand Central, United Nations**",52950465,Gal,Manhattan,Midtown,40.75266,-73.97252,Entire home/apt,142,30,0,,,12,323 +13171614,Private Home Close To Coney Island Beach,72101538,Shelly,Brooklyn,Gravesend,40.59162,-73.9702,Entire home/apt,300,2,0,,,1,0 +13171703,"Park Avenue, Lux Studio Murray Hill apartment",22541573,Ken,Manhattan,Murray Hill,40.74855,-73.98019,Entire home/apt,199,30,2,2019-06-07,0.06,87,364 +13171746,Large Sunny Bedroom with Empire State Views,31154454,Elliot,Manhattan,Midtown,40.74244,-73.98316,Private room,99,1,180,2019-06-21,4.86,2,2 +13173176,"Large, New, Modern Uptown Room",9864136,Anthony,Manhattan,Harlem,40.82015,-73.94593,Private room,62,30,1,2016-07-17,0.03,26,188 +13173263,Massive Bedroom Prime Flatiron Location,6652697,Austen,Manhattan,Chelsea,40.73769,-73.99026,Private room,350,30,0,,,1,365 +13173415,"Times Square Luxury Apt, Private 1BD",73630116,Marla,Manhattan,Theater District,40.7615,-73.98527,Private room,180,14,15,2019-06-20,0.48,1,122 +13174320,Cute Studio in great UES location,30812813,Amanda,Manhattan,Upper East Side,40.77097,-73.95843,Entire home/apt,115,5,4,2016-08-16,0.11,1,0 +13174433,Modern West Village 1 Bedroom - PRIME LOCATION!,2926947,Amit,Manhattan,West Village,40.73908,-74.00186,Entire home/apt,150,2,11,2017-01-08,0.30,1,0 +13174455,Brooklyn room in a New Bldg - 20mns from Manhattan,73643860,Aicha,Brooklyn,Bedford-Stuyvesant,40.68846,-73.92155,Private room,65,2,5,2019-06-23,2.24,1,48 +13175725,Big Studio apt- Legal NY rental,65304194,Janelle,Brooklyn,East Flatbush,40.65742,-73.92385,Entire home/apt,85,1,117,2019-06-04,3.09,1,18 +13175743,cozy apartment with a room to rent family oriented,73663228,Rosa,Manhattan,Washington Heights,40.85735,-73.9298,Private room,70,1,37,2019-06-08,1.10,1,291 +13176134,Cozy Private Room 2MIN to subway 6MIN to Columbia,11309985,Jean,Manhattan,Upper West Side,40.8028,-73.96678,Private room,50,2,8,2016-07-01,0.21,2,0 +13182093,"Artsy, cozy room in Bed-Stuy",5401988,Maggie,Brooklyn,Bedford-Stuyvesant,40.68675,-73.95341,Private room,65,2,5,2017-10-02,0.13,1,0 +13182297,Sculptor's Light-filled Loft (Bushwick),18742,Serra Victoria,Brooklyn,Bushwick,40.7043,-73.92491,Entire home/apt,117,7,0,,,1,0 +13182531,"Sunny, spacious 2 bedroom in upper Manhattan",73732590,George,Manhattan,Washington Heights,40.85261,-73.94203,Entire home/apt,150,10,12,2019-04-23,0.33,1,6 +13183047,2 bedroom Kid Friendly Cobble Hill,40306612,Christina,Brooklyn,Carroll Gardens,40.685,-73.99369,Entire home/apt,250,3,12,2019-03-14,0.32,1,0 +13183672,East Village Living,1363435,Erica,Manhattan,East Village,40.72665,-73.98717,Entire home/apt,140,31,37,2019-05-30,1.01,1,0 +13183816,Charming Bushwick Brownstone.,73737053,Elicia,Brooklyn,Bushwick,40.69068,-73.91418,Private room,70,1,111,2019-06-10,3.06,3,364 +13183826,BROOKLYN ROOM,31628863,Sasha,Brooklyn,Bensonhurst,40.60391,-73.99339,Private room,80,2,7,2018-09-03,0.23,1,0 +13184355,Spacious bushwick brownstone,73737053,Elicia,Brooklyn,Bushwick,40.69239,-73.91416,Private room,85,1,44,2019-06-23,1.26,3,365 +13184939,East Village Studio,11296515,Robert,Manhattan,East Village,40.72926,-73.98915,Entire home/apt,99,1,0,,,1,0 +13186007,Renovated garden studio in New York,2084322,Quinlan & Barbara,Queens,Astoria,40.76832,-73.9346,Entire home/apt,99,3,94,2019-05-27,2.52,1,1 +13186374,Sean,35143476,Sean,Brooklyn,Windsor Terrace,40.65182,-73.98043,Entire home/apt,400,7,0,,,1,0 +13186395,Relaxing bushwick brownstone,73737053,Elicia,Brooklyn,Bushwick,40.69239,-73.91443,Private room,75,1,117,2019-06-16,3.24,3,363 +13186447,The Hudson,73764539,Ed,Manhattan,Washington Heights,40.85241,-73.9368,Entire home/apt,99,2,3,2017-05-10,0.08,1,0 +13186655,2 bedroom apartment on Central Park,6721441,Kelsey,Manhattan,Harlem,40.8013,-73.95677,Entire home/apt,165,4,2,2016-12-29,0.06,1,0 +13186721,"Park Avenue, Luxury Studio Apt in Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74747,-73.98061,Entire home/apt,189,30,0,,,87,365 +13186741,"Cozy Alcove, Chelsea Doorman Bldg, Near Everything",11345677,Michelle,Manhattan,Chelsea,40.73887,-74.00011,Private room,85,2,22,2018-11-05,0.65,1,58 +13186804,"Park Avenue, Lux Svcd 1bd apartment in Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74881,-73.98059,Entire home/apt,268,30,0,,,87,365 +13187991,Cheap West Village Apartment,73792588,Peter,Manhattan,West Village,40.73011,-74.00267,Private room,55,1,7,2016-06-28,0.19,1,0 +13188543,"Quiet, clean, pre-war, spacious one bedroom apt.",8185477,Meggan,Brooklyn,Flatbush,40.6421,-73.96166,Entire home/apt,80,29,5,2018-09-04,0.14,1,68 +13188552,Large One Bedroom Apartment with Studio,18142892,Stacy,Queens,Ridgewood,40.70871,-73.89415,Entire home/apt,95,1,1,2016-08-01,0.03,1,0 +13188622,"Park Avenue, Luxury Studio apartment Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74789,-73.98057,Entire home/apt,179,30,0,,,87,115 +13188839,"Park Avenue, Luxury 1bd apartment Murray Hill",22541573,Ken,Manhattan,Murray Hill,40.74743,-73.97945,Entire home/apt,245,30,0,,,87,365 +13189500,Quaint & Charming 2BR + Futon,42429642,Judy,Manhattan,West Village,40.73179,-74.00149,Private room,300,1,0,,,1,0 +13190121,Lux Furnished 2BR steps from Central Park!,30283594,Kara,Manhattan,Hell's Kitchen,40.76564,-73.98367,Entire home/apt,369,30,1,2016-07-16,0.03,121,345 +13191433,Big Private Bedroom perfect for Professionals,49117269,Varos,Queens,Long Island City,40.75768,-73.92897,Private room,75,15,14,2019-04-13,0.88,2,16 +13192097,Fab Studio Apt Nr Barclays Centre Off Road Parking,6281031,Lucy,Brooklyn,Prospect Heights,40.68066,-73.96696,Entire home/apt,136,2,169,2019-06-24,4.48,1,279 +13192217,Private Sunny Cool Bushwick Bedroom,94946,Taylor,Brooklyn,Bushwick,40.69746,-73.92065,Private room,101,1,28,2019-06-08,1.15,1,13 +13192379,Elegant room in Northern Manhattan,40439772,Ezra,Manhattan,Washington Heights,40.85244,-73.93126,Private room,40,2,11,2019-04-18,0.29,2,16 +13192876,Cozy Room Washington Heights,73857756,Anna,Manhattan,Washington Heights,40.83193,-73.9364,Private room,65,2,0,,,1,0 +13192944,"Private, cozy, Bedroom",73857837,Ling,Brooklyn,Dyker Heights,40.63009,-74.01342,Private room,43,1,30,2019-07-07,1.15,1,6 +13192965,"Best neighborhood in NYC, East Village apartment",32707981,Ben,Manhattan,East Village,40.72312,-73.98795,Private room,100,2,11,2017-06-04,0.29,4,0 +13193534,Private bedroom in Manhattan NYC,73864266,Roxane,Manhattan,Inwood,40.85981,-73.92835,Private room,40,3,78,2019-06-26,2.87,1,260 +13199140,luxury Upper East Side 1 BR,73924316,Rachael,Manhattan,Upper East Side,40.77575,-73.95304,Entire home/apt,165,16,1,2016-07-24,0.03,1,0 +13201181,"2BR heart of Williamsburg, luxury hipster heaven",19873203,Caitlin,Brooklyn,Williamsburg,40.71351,-73.95848,Entire home/apt,319,2,49,2019-06-03,1.32,1,82 +13201687,"Fantastic views, outdoor terrace, modern apartment",73953648,Mark,Manhattan,Hell's Kitchen,40.7661,-73.99053,Entire home/apt,295,3,0,,,1,0 +13202374,Spacious bedroom in light filled w'burg apartment,22913446,Rachael,Brooklyn,Williamsburg,40.71382,-73.94285,Private room,56,21,0,,,1,0 +13202401,"West 48th Street, Lux Studio near Rockefeller Ctr",22541573,Ken,Manhattan,Midtown,40.75641,-73.97812,Entire home/apt,219,30,0,,,87,342 +13202799,Astoria Room Fit for a Queen!,5402234,Maya,Queens,Ditmars Steinway,40.77481,-73.91562,Private room,50,2,9,2019-06-30,0.68,1,28 +13203601,"Sunny, cosmopolitan and modern apartment.",69286284,Kofi,Manhattan,East Harlem,40.79566,-73.94137,Entire home/apt,160,4,57,2019-05-29,1.51,1,31 +13204229,Luxury Room/ Wall St-Incredible Views,56656728,Bret,Manhattan,Financial District,40.70735,-74.01226,Private room,109,1,86,2019-06-24,2.33,5,161 +13205376,Very comfortable Apt in Manhattan,16300425,Isaac,Manhattan,Washington Heights,40.84989,-73.93044,Private room,95,2,0,,,1,90 +13205892,"Gigantic Apartment, Fun Roommates, Best Location!",1837583,Ben,Manhattan,Two Bridges,40.71141,-73.99408,Private room,100,3,0,,,1,0 +13206869,Brownstone Family Friendly with Yard,19169325,Casey,Brooklyn,Bedford-Stuyvesant,40.68393,-73.92303,Entire home/apt,200,4,0,,,1,310 +13207158,Furnished Room in Large Lefferts Gardens Apt.,10580223,Andy,Brooklyn,Flatbush,40.65335,-73.95663,Private room,50,3,2,2016-07-05,0.05,2,27 +13207484,Luxury High Rise in Forte Green Brooklyn,9149064,Kange,Brooklyn,Fort Greene,40.69388,-73.98085,Entire home/apt,150,1,15,2019-04-06,0.42,1,55 +13207548,"Spacious, sunny bedroom in Hudson Heights",24843404,Laura,Manhattan,Washington Heights,40.84996,-73.93937,Private room,50,5,1,2016-05-28,0.03,1,0 +13207586,Beautiful 1BR UES,74020712,Nicole,Manhattan,Upper East Side,40.7722,-73.95272,Entire home/apt,115,3,8,2017-02-20,0.22,1,0 +13208233,Spacious 1st floor apartment in fantastic location,6357668,Ragi,Queens,Astoria,40.76279,-73.91767,Entire home/apt,69,4,0,,,1,0 +13208365,"Lovely, quiet and smoke free environment",65659872,Claudia,Brooklyn,Bushwick,40.70918,-73.92182,Private room,60,15,0,,,1,0 +13208373,New construction in Gramercy with rooftop and gym!,74031395,Matt,Manhattan,Gramercy,40.73637,-73.98051,Entire home/apt,350,5,0,,,1,0 +13208685,Darling Midtown Getaway byTimes Sq.,1362083,Jennifer,Manhattan,Hell's Kitchen,40.76376,-73.98789,Private room,131,4,33,2019-01-03,0.88,1,180 +13208952,The Real Manhattan Upper East Side--Now Yours,290317,Katie,Manhattan,Upper East Side,40.77305,-73.96283,Shared room,99,3,48,2019-06-19,1.53,1,0 +13209317,Cozy Room in Suburban Home,74044417,Bridget,Queens,Rosedale,40.65973,-73.74098,Private room,160,1,1,2018-10-07,0.11,1,365 +13209380,"Luxe 1-br Large Loft in Tribeca, Entire Apt",6569229,Anna,Manhattan,Tribeca,40.71523,-74.0079,Entire home/apt,250,3,3,2017-10-29,0.09,1,0 +13209482,Peaceful 1 Bedroom in Prime E. Village,34386241,Jesse,Manhattan,East Village,40.72697,-73.98488,Entire home/apt,250,1,18,2017-02-08,0.47,2,0 +13209493,Family Friendly 2 BR in Park Slope Brooklyn,60928872,Andrea,Brooklyn,Park Slope,40.67002,-73.98496,Entire home/apt,150,3,3,2016-08-08,0.08,1,0 +13209514,super modern WeLive/WeWork shared Apt @WallStreet,6189263,Anni,Manhattan,Financial District,40.70433,-74.00706,Entire home/apt,150,2,6,2016-06-23,0.16,1,0 +13209699,Comfortable room 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77705,-73.91356,Private room,65,1,20,2019-06-16,2.23,3,20 +13210016,Private 2bdr apt. awesome LES/Chinatown location,6917811,Gia,Manhattan,Civic Center,40.71537,-74.00181,Private room,100,2,0,,,1,0 +13213869,Beautiful one bedroom home in Washington Heights,38284609,Emily,Manhattan,Washington Heights,40.8449,-73.94034,Private room,85,3,10,2019-01-01,0.30,1,362 +13215481,Charming Bedroom in E. Williamsburg by Graham L,74112289,Jean,Brooklyn,Williamsburg,40.71738,-73.94089,Private room,44,28,11,2019-05-01,0.31,2,0 +13215733,EAST 25TH ST~KIPS BAY/EAST VILLAGE/UNION SQUARE,2856748,Ruchi,Manhattan,Kips Bay,40.7394,-73.97996,Entire home/apt,225,30,0,,,49,364 +13215920,Beautiful Private room!,69977115,Jacob,Brooklyn,Bensonhurst,40.61608,-73.99056,Private room,79,2,0,,,4,179 +13216067,SUNNY APT Best location In Williamsburg!!!!!,49484132,Juan,Brooklyn,Williamsburg,40.71024,-73.96081,Entire home/apt,150,2,120,2019-06-15,3.29,1,149 +13216246,Comfy Greenpoint room w/ easy access to Manhattan!,6531491,Stephen,Brooklyn,Greenpoint,40.72217,-73.948,Private room,75,1,55,2019-07-08,1.46,1,0 +13216357,"Cozy, clean, Harlem studio",14052889,Mary,Manhattan,Harlem,40.82779,-73.94065,Entire home/apt,105,7,32,2019-05-08,0.91,1,290 +13217170,Cozy Apartment in Bed-Stuy,64172780,Eleni,Brooklyn,Bedford-Stuyvesant,40.68604,-73.95375,Private room,50,5,7,2017-01-01,0.21,1,40 +13217241,Amazing and Perfect 1BR in Beautiful SOHO/Nolita!,74130179,Gary,Manhattan,Nolita,40.72426,-73.99535,Entire home/apt,275,3,24,2019-05-30,0.66,1,82 +13217609,"Bright Guest Room with Balcony, Harlem",1514100,Wasim,Manhattan,Harlem,40.80991,-73.94597,Private room,149,3,16,2019-06-28,0.59,1,333 +13217755,Large Bedroom on upper west/columbia,47896181,Zichen,Manhattan,Upper West Side,40.80125,-73.96529,Private room,90,1,3,2016-07-04,0.08,1,0 +13217991,Bright Clinton Hill/Bed Stuy Room in Artist's Apt.,67641348,Perri,Brooklyn,Bedford-Stuyvesant,40.68484,-73.95759,Private room,56,3,17,2018-05-27,0.45,1,0 +13218512,Cute 2bdrm Apt in Crown Heights w backyard,33386679,Sarah,Brooklyn,Crown Heights,40.67538,-73.95308,Entire home/apt,220,1,1,2016-05-30,0.03,2,0 +13219269,"Lovely, clean, and quiet - close to Prospect Park",7592287,Emily,Brooklyn,East Flatbush,40.6531,-73.94965,Private room,42,3,6,2016-09-18,0.16,1,0 +13220375,Huge Authentic NYC Home In Fun Soho District,11975339,Allyson,Manhattan,Nolita,40.72315,-73.99507,Entire home/apt,129,2,6,2018-05-14,0.28,1,0 +13220720,Charming Bedroom in E. Williamsburg by Graham Av L,74112289,Jean,Brooklyn,Williamsburg,40.71756,-73.94063,Private room,50,24,10,2018-12-22,0.28,2,31 +13221331,Studio on Best Street in Historic Brooklyn Heights,67439911,Jennifer,Brooklyn,Brooklyn Heights,40.69707,-73.99632,Entire home/apt,110,30,3,2018-09-02,0.08,1,6 +13221528,Doorman Lux Huge Studio Prime 5176,16098958,Jeremy & Laura,Manhattan,Theater District,40.76264,-73.98569,Entire home/apt,160,30,3,2018-03-20,0.09,96,344 +13221788,Minimalist room next to the subway (2),74179880,Silvia,Brooklyn,East New York,40.67378,-73.88846,Private room,35,30,86,2019-06-23,2.29,8,326 +13222140,"Private appartment,minutes from NY citi. Fantastic loc ation, walking distance to manhattan ferry.",15523,Vadim,Staten Island,Tompkinsville,40.63342,-74.08249,Private room,72,2,25,2018-09-03,0.66,2,237 +13222669,"Charming Garden Studio in Sunnyside, NY",5955262,Leticia,Queens,Long Island City,40.73487,-73.92145,Entire home/apt,95,5,46,2019-06-24,1.23,1,244 +13222964,Charming studio West Harlem / sleep three,74196752,Lawrence,Manhattan,Harlem,40.81162,-73.95046,Entire home/apt,100,1,5,2016-06-28,0.13,1,0 +13223445,UWS Room May 30 - June 8,51756175,Khalil,Manhattan,Upper West Side,40.77282,-73.9808,Private room,115,10,1,2016-06-09,0.03,1,0 +13223949,Designer Apartment - Sunny and spacious 1 bedroom,7195006,Sarah,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95035,Entire home/apt,115,5,1,2016-07-05,0.03,1,0 +13225764,Large Clean and Modern Room Near Subway Lines,74227432,Tony,Manhattan,Harlem,40.82579,-73.9528,Private room,79,1,56,2019-06-09,1.49,1,74 +13225970,哥大附近卧室 Room on Upper West/Columbia,74231989,Siyu,Manhattan,Upper West Side,40.80205,-73.9658,Private room,36,15,1,2016-08-01,0.03,1,0 +13230556,BRIGHT & COZY STUDIO FOR 2~EAST 60TH STREET,2856748,Ruchi,Manhattan,Upper East Side,40.76139,-73.96208,Entire home/apt,138,30,0,,,49,365 +13230807,"Charming 1-Bed Apt, Brooklyn - 20 min to Manhattan",20907184,Valerie Lynn-McDonough,Brooklyn,Bay Ridge,40.63359,-74.02302,Entire home/apt,75,30,1,2016-06-12,0.03,1,191 +13231183,East 60th Street~Perfect Studio for 2,2856748,Ruchi,Manhattan,Upper East Side,40.76161,-73.96192,Entire home/apt,138,30,0,,,49,365 +13231399,Beautiful garden 1 bed 7/8-7/18,4316938,Skye,Manhattan,East Harlem,40.80735,-73.94064,Entire home/apt,175,9,0,,,1,365 +13231566,Large DT Bedroom! - TriBeCa/Financial Manhattan!,69545272,Ben,Manhattan,Financial District,40.71085,-74.0083,Private room,59,13,24,2019-05-14,0.68,2,166 +13231678,Bedroom in the East Village ❤️,54778990,Eve,Manhattan,East Village,40.72572,-73.98269,Private room,50,1,0,,,1,0 +13231961,Cozy Brooklyn Nest,62805890,Millie,Brooklyn,Prospect-Lefferts Gardens,40.6557,-73.95471,Entire home/apt,99,3,15,2019-05-22,0.43,1,167 +13232690,Room & Breakfast - Room 3,35322092,Rhemy,Brooklyn,Bedford-Stuyvesant,40.68582,-73.92926,Private room,49,1,77,2019-07-07,2.44,3,239 +13232917,Hip Crown Heights 2 Bedroom!,52592877,Alexis,Brooklyn,Crown Heights,40.67294,-73.9581,Entire home/apt,113,1,3,2016-07-06,0.08,1,0 +13232952,Happy and spacious corner near 7 train,17638424,Sophie,Queens,Elmhurst,40.74576,-73.87407,Private room,47,1,87,2019-06-04,2.35,8,156 +13233113,Luxury Highrise 1bd -great views -central location,15774226,Mirza,Manhattan,Theater District,40.76318,-73.98473,Private room,104,5,0,,,1,0 +13233830,Beautiful Historic Brooklyn Townhouse! 4Br/3.5Bath,24743701,Renata And Howard,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.95567,Entire home/apt,650,5,3,2019-07-02,0.08,2,23 +13233856,"Cozy room, great location",22682349,Marwa,Manhattan,Upper West Side,40.79643,-73.97188,Private room,110,7,2,2017-01-01,0.06,1,0 +13234352,Amazing private Upper East loft!,72218656,Yuanyuan,Manhattan,Upper East Side,40.7626,-73.96031,Entire home/apt,199,3,57,2019-06-20,1.51,1,93 +13234446,Charming Room in Greenpoint,6244152,Julia,Brooklyn,Greenpoint,40.72779,-73.94323,Private room,67,4,0,,,1,0 +13234457,Cozy Clinton Hill Crib On Classon,2868,Letha M.,Brooklyn,Bedford-Stuyvesant,40.68258,-73.95871,Entire home/apt,60,29,2,2017-07-31,0.06,1,221 +13235417,Quiet and sunny SoHo studio,3343599,Devin,Manhattan,SoHo,40.72515,-74.00182,Entire home/apt,150,5,0,,,1,0 +13235840,"Studio for 1, Upper West Side (70s)",6098059,Paige,Manhattan,Upper West Side,40.77616,-73.97994,Entire home/apt,99,8,0,,,1,0 +13235951,Bright & spacious Room in Harlem,74330820,Rachel,Manhattan,East Harlem,40.81286,-73.93618,Private room,52,1,33,2018-11-19,0.91,2,4 +13236148,Garden level apartment in Bed-Stuy,33402262,Jordan,Brooklyn,Bedford-Stuyvesant,40.68378,-73.94118,Entire home/apt,155,2,94,2019-06-08,2.50,1,218 +13236366,Beautiful 2 Bed/2 Bath Duplex on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78396,-73.97691,Entire home/apt,171,30,3,2016-11-16,0.08,6,188 +13237057,City room 2 min walk from train (4),74179880,Silvia,Brooklyn,East New York,40.67323,-73.8892,Private room,39,3,71,2019-06-10,1.90,8,329 +13237190,Queen sofa in UES w BEST roommates,31460662,Morgan,Manhattan,Upper East Side,40.76995,-73.95604,Shared room,120,1,12,2017-04-30,0.32,1,0 +13237828,Amazing Open Floor Studio Extension,74351458,Harvey,Brooklyn,Bushwick,40.69893,-73.92624,Entire home/apt,115,5,54,2019-06-07,1.47,1,105 +13238211,West Village 1 Bedroom well lit CLEAN apartment,2584324,Justin,Manhattan,West Village,40.73334,-74.00104,Entire home/apt,165,1,13,2017-01-01,0.35,1,0 +13238321,Home away from home,40976536,Jeff,Manhattan,Harlem,40.82963,-73.9495,Private room,69,1,34,2019-07-05,0.91,1,180 +13238778,Spacious and Quiet Bedroom in Artsy Bushwick!,7550464,Wil,Brooklyn,Bushwick,40.70238,-73.92812,Private room,55,1,1,2016-06-07,0.03,1,0 +13239181,1 Bedroom in 2 Bedroom Apartment,15478812,Tai,Queens,Ridgewood,40.70422,-73.90978,Private room,60,1,0,,,1,0 +13239693,2-Floor Sunlit Apt In Greenpoint With Outdoor Deck,27652670,Noah,Brooklyn,Greenpoint,40.73239,-73.95449,Entire home/apt,133,2,12,2016-11-25,0.33,1,0 +13240737,Times Square / Broadway Area - Midtown Manhattan,74397192,Glenn,Manhattan,Hell's Kitchen,40.76345,-73.99298,Private room,79,3,136,2019-06-26,3.65,1,47 +13243615,Big Studio Apartment near Ocean Beach,17770598,Maya,Brooklyn,Manhattan Beach,40.5775,-73.94003,Entire home/apt,79,1,0,,,1,0 +13243946,Sunny one-bedroom two blocks from Central Park,5704909,Taeko,Manhattan,Harlem,40.80041,-73.95237,Entire home/apt,160,3,1,2016-06-12,0.03,1,0 +13244254,Luxury Studio in Harlem,10110888,Vlad,Manhattan,Harlem,40.80822,-73.95273,Entire home/apt,170,3,34,2019-06-30,1.00,1,198 +13245033,"Private room Queen close to Mall +5 mins to subway",50855262,Fone,Queens,Elmhurst,40.73727,-73.87853,Private room,45,5,2,2017-10-09,0.09,3,0 +13245721,Gorgeous 1 BD in the West Village,10039614,Parth,Manhattan,West Village,40.73506,-74.00518,Entire home/apt,249,1,0,,,1,0 +13245726,"Bright, spacious room in a fantastic neighborhood!",36434327,Caroline,Manhattan,Harlem,40.80698,-73.95272,Private room,66,14,4,2019-07-07,0.17,1,0 +13246042,"Sunny, Private Room with Separate Entrance",278393,Dylana,Brooklyn,Bushwick,40.69798,-73.92462,Private room,52,1,132,2019-06-19,3.59,3,74 +13246278,3 br 80s light loft in Lower East Side / Chinatown,6787564,Luke,Manhattan,Lower East Side,40.71258,-73.9901,Entire home/apt,200,4,6,2019-01-04,0.31,1,0 +13246804,One cozy private BR close to the mecca of shopping,4832845,Gg,Manhattan,Midtown,40.76026,-73.9659,Private room,80,1,275,2019-07-03,7.45,1,45 +13246949,Cozy Room in 4bdrm Apt in Hip Williamsburg,74468846,Diana,Brooklyn,Williamsburg,40.71225,-73.94413,Private room,75,2,30,2019-07-05,2.65,2,2 +13248480,Large room avail in a shared apartment,72359036,Brian,Manhattan,Upper East Side,40.77983,-73.94798,Private room,125,1,5,2016-06-26,0.13,1,0 +13248565,COZY 1 BEDROOM APARTMENT,74489237,Carmen,Bronx,Tremont,40.84268,-73.89294,Entire home/apt,68,1,0,,,1,0 +13248583,Spacious & cozy room in trendy SoHa !,3097033,Aida,Manhattan,Harlem,40.80304,-73.95148,Private room,65,2,50,2019-06-24,1.39,2,15 +13248742,Spacious BR in large 2 BR apt in Roosevelt Island,69706365,Bernardo,Manhattan,Roosevelt Island,40.76205,-73.94975,Private room,79,4,2,2016-06-11,0.05,2,0 +13248968,Luxurious 1 bdr apt with balcony!,15985137,Ferenc,Brooklyn,Bushwick,40.69476,-73.92943,Entire home/apt,125,5,42,2019-06-21,1.12,1,1 +13249407,LARGE SUNNY 2 BEDROOM APARTMENT IN BROOKLYN!,9123131,Sean,Brooklyn,Crown Heights,40.67206,-73.9429,Entire home/apt,105,4,13,2017-08-14,0.36,2,0 +13249656,renovated one bedroom in our beautiful townhouse,1996771,Arturo,Brooklyn,Bedford-Stuyvesant,40.68063,-73.95015,Entire home/apt,140,3,122,2019-06-25,3.26,1,275 +13250303,Single room in Bed-Stuy,38322121,Pierre-Alexis,Brooklyn,Bedford-Stuyvesant,40.69484,-73.95852,Private room,70,3,2,2016-06-23,0.05,1,0 +13250484,Beautiful 2000 sq. ft. loft in Hells Kitchen NYC,10196579,James,Manhattan,Hell's Kitchen,40.75647,-73.99848,Entire home/apt,2000,1,4,2017-01-06,0.11,1,362 +13251558,Beautiful NYC Apartment,74534871,Brennen,Manhattan,Harlem,40.82158,-73.93824,Private room,100,1,0,,,1,0 +13252064,1st Time/Solo Guests: Charming NYC Apt. Share!!!,41044972,Sue,Manhattan,Chelsea,40.74487,-74.00277,Shared room,75,2,9,2019-06-24,0.26,1,231 +13254260,"One room in beautiful 2BR apartment, Crown Heights",50485365,Paloma,Brooklyn,Crown Heights,40.66741,-73.9522,Private room,36,12,2,2017-12-11,0.09,1,0 +13254504,"Tree lined, light-filled in Chelsea",21350216,Karin,Manhattan,Chelsea,40.74858,-73.99887,Entire home/apt,240,1,1,2016-07-01,0.03,1,0 +13254864,2 Bed 1 Bedroom Flex Apartment - Greenwich Village,74573695,Ozge,Manhattan,Greenwich Village,40.72838,-73.99899,Entire home/apt,200,7,38,2019-06-30,1.03,1,205 +13256322,Comfortable 1BR on quiet street in Upper East Side,6945858,Lydia,Manhattan,Upper East Side,40.76969,-73.95509,Entire home/apt,250,30,0,,,1,0 +13256651,Large Comfy Couch in South Prospect Park,56142507,Marie,Brooklyn,Flatbush,40.64542,-73.96484,Shared room,46,1,22,2019-05-17,0.58,1,365 +13258556,Bright Manhattan Studio,5189524,Wallace,Manhattan,Kips Bay,40.74036,-73.98053,Entire home/apt,120,26,22,2018-01-02,0.60,1,0 +13259442,Amazing room UWS steps away from Columbia Univ.,6458590,Gillian,Manhattan,Upper West Side,40.80348,-73.96579,Private room,80,2,149,2018-05-17,3.98,1,0 +13260699,1BR charming and supercozy apt,74643411,Viviana,Manhattan,Upper West Side,40.77969,-73.97738,Entire home/apt,120,14,12,2018-08-23,0.34,1,261 +13261498,Garden Duplex in trendy South Park Slope,74653179,Kevin,Brooklyn,South Slope,40.66537,-73.98559,Entire home/apt,150,3,6,2018-08-19,0.17,1,1 +13261616,"Sunny, Accessible, UES Apt - Summer in the City",24693048,Tola,Manhattan,Upper East Side,40.77693,-73.94524,Entire home/apt,120,7,0,,,1,0 +13261922,Spacious artsy apartment near Gramercy/Flatiron,3490622,Calliea,Manhattan,Flatiron District,40.74154,-73.98515,Entire home/apt,200,5,1,2016-08-01,0.03,1,0 +13262082,Private BR in sunny East Village 2BR,18056150,Mark,Manhattan,East Village,40.72954,-73.98842,Private room,100,1,1,2016-06-25,0.03,1,0 +13262386,Charming 3 bedroom in Brooklyn!!,7195638,Dawn,Brooklyn,Bedford-Stuyvesant,40.685,-73.92022,Private room,73,3,5,2016-10-08,0.14,1,359 +13262935,Lovely large bedroom in Brownstone (garden),9148721,Aurelie,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94636,Private room,60,2,9,2018-01-17,0.24,2,0 +13264012,Cozy Studio in the Heart of Brooklyn Heights,55471059,Britt,Brooklyn,Brooklyn Heights,40.69511,-73.9934,Entire home/apt,110,1,3,2016-07-28,0.08,1,0 +13264690,Beautiful and Comfy Private Room,38815234,Viviana,Manhattan,Harlem,40.82605,-73.94219,Private room,55,3,60,2019-06-21,1.68,2,246 +13265459,Sunny 1 bedroom right next to express A!,40863393,Nina,Manhattan,Washington Heights,40.85177,-73.93652,Entire home/apt,110,1,7,2017-04-23,0.19,1,0 +13265710,Sunny Bedroom in Harlem,74712074,Noel,Manhattan,Harlem,40.81834,-73.93929,Private room,70,1,4,2016-11-21,0.11,1,0 +13266202,Spacious living space in Williamsburg/Bushwick,14291958,Yiming (Steven),Brooklyn,Williamsburg,40.70644,-73.93968,Private room,60,3,2,2016-10-10,0.06,1,0 +13270298,Pure Luxury in Top Location,16437254,Benjamin,Brooklyn,Prospect Heights,40.67634,-73.96651,Entire home/apt,270,30,3,2018-08-14,0.11,21,255 +13272022,Spacious Private Room in Brooklyn,24765466,Alexandria,Brooklyn,Prospect-Lefferts Gardens,40.65588,-73.95062,Private room,35,20,0,,,1,0 +13272041,A queen size bed with a cat near Grand Central,4920111,Emily,Manhattan,Midtown,40.75242,-73.97261,Private room,100,1,4,2016-10-09,0.11,1,0 +13273660,Large BR available near Fort Tryon Park,74795588,Aden,Manhattan,Inwood,40.86059,-73.92986,Private room,50,7,0,,,1,0 +13273903,Studio apartment in Luxury building near Wall St.,6297445,Omar,Manhattan,Financial District,40.70662,-74.0051,Entire home/apt,150,3,6,2017-06-11,0.17,1,0 +13274918,Murray Hill Modern 1 bedroom (B),50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74569,-73.98192,Entire home/apt,150,30,2,2018-07-03,0.07,31,64 +13274952,Helles und modernes Zimmer/Wohnung in Bushwick,11091997,Mario & Marijke,Brooklyn,Bushwick,40.70243,-73.92978,Private room,77,3,47,2019-07-01,1.25,2,46 +13275792,Luxury Double Room in Williamsburg,35433522,David,Brooklyn,Williamsburg,40.71281,-73.95127,Private room,59,2,87,2018-08-28,2.31,3,0 +13275896,"Gorgeous exclusive Room with all amenities, gym",71176668,David,Manhattan,Harlem,40.81646,-73.93795,Private room,110,2,4,2018-09-23,0.12,4,0 +13276227,KINGLY MANHATTAN RED ROOM WITH GYM AND AMENITIES,71176668,David,Manhattan,Harlem,40.81627,-73.93512,Private room,110,2,9,2019-05-04,0.26,4,280 +13276288,"BR in huge old Bushwick loft, brick, private roof",2723661,Caitlin,Brooklyn,Bushwick,40.69415,-73.92987,Private room,45,1,0,,,1,0 +13276320,Beautiful place sunny and quite,74823629,Roberto,Queens,Ditmars Steinway,40.77388,-73.91598,Private room,125,1,6,2016-12-29,0.17,1,0 +13276525,EXECUTIVE MANHATTAN GREEN ROOM WITH ALL AMENITIES,71176668,David,Manhattan,Harlem,40.81604,-73.94017,Private room,110,2,20,2019-06-03,0.58,4,5 +13276680,Amazing Double Room in Williamsburg,35433522,David,Brooklyn,Williamsburg,40.71234,-73.95,Private room,89,2,69,2018-08-27,1.83,3,0 +13277919,Bushwhick Room for Rent,14336676,Fadi And Michael,Brooklyn,Bushwick,40.69808,-73.93,Private room,75,2,7,2018-04-24,0.19,1,0 +13278166,Privat Bath and Bedroom overlooking the Park,18957252,Christopher Und Nora,Brooklyn,Greenpoint,40.72361,-73.95039,Private room,100,1,11,2017-11-10,0.30,1,0 +13278181,Comfortable 2 Bedroom in Brooklyn Heights,6671270,Cory,Brooklyn,Brooklyn Heights,40.69304,-73.99328,Entire home/apt,250,7,5,2017-08-24,0.14,1,0 +13278654,Large 1 Bed - Ideal UWS Location,8089285,Maura,Manhattan,Upper West Side,40.77865,-73.98104,Entire home/apt,149,2,1,2016-08-20,0.03,1,0 +13279036,Sunny cozy room with rooftop area in BK,72483475,Andrea,Brooklyn,Bushwick,40.69092,-73.91073,Private room,50,2,2,2016-06-14,0.05,1,0 +13280099,South Bronx Studio Near Yankee Stadium,73831041,Jake,Bronx,Concourse,40.82909,-73.92249,Entire home/apt,95,5,0,,,1,0 +13280112,2 Floor Private Apartment in Williamsburg,56589011,Ryan,Brooklyn,Williamsburg,40.71293,-73.95946,Entire home/apt,160,1,7,2017-01-02,0.19,1,0 +13280923,A room for mom or woman on adventure,74879324,Sophia,Manhattan,Harlem,40.80515,-73.95595,Private room,79,3,50,2018-10-14,1.33,1,36 +13281460,Charming 1 bedroom in the BEST neighborhood,1362963,Chelsea,Brooklyn,Fort Greene,40.69016,-73.97307,Entire home/apt,97,3,0,,,1,0 +13281809,Calm 1BR in 2BR,3562912,Landon,Brooklyn,Williamsburg,40.71505,-73.94403,Private room,75,3,0,,,1,0 +13282284,Beautiful Bedroom in Great Apt!,42682752,Katharine,Brooklyn,Cobble Hill,40.68868,-73.99206,Private room,65,2,17,2018-08-05,0.45,3,0 +13282385,Beautiful 2BR Apt. in Brand New Building,18840786,Michael,Brooklyn,Bushwick,40.69949,-73.92621,Entire home/apt,95,3,1,2016-06-07,0.03,1,0 +13282553,Comfortable Midtown Appartment 2BR,22656176,Gabrielle,Manhattan,Midtown,40.75604,-73.9681,Entire home/apt,185,1,2,2016-08-28,0.05,1,0 +13282638,Hip & Clean Bushwick Treasure,31753024,Marie-Luisa,Brooklyn,Bushwick,40.69818,-73.91941,Entire home/apt,68,2,4,2016-09-13,0.11,1,0 +13282840,Cozy Private room near Central Park,49328849,Dorothy,Manhattan,East Harlem,40.79532,-73.94454,Private room,85,4,46,2019-07-01,1.23,1,72 +13287347,"Carroll Gardens Beautiful, Private, Sunny Suite",424078,Jocelyn,Brooklyn,Gowanus,40.6772,-73.99354,Private room,150,2,215,2019-07-05,5.90,1,72 +13288854,Large Sunny Room in Big Loft,15798864,Tobias,Brooklyn,Bedford-Stuyvesant,40.69646,-73.96059,Private room,65,4,6,2018-01-04,0.16,1,0 +13289643,Charming 1BR Murray Hill Apt + Rooftop,74981965,Amara,Manhattan,Murray Hill,40.74436,-73.97292,Entire home/apt,200,270,2,2016-06-12,0.05,1,0 +13291508,Cozy comfortable private room in Brooklyn NY,67661003,Maki,Brooklyn,Windsor Terrace,40.65549,-73.98111,Private room,55,2,26,2019-06-23,1.36,1,75 +13291548,Large one bedroom with closet and bathroom!,75001749,Christina,Brooklyn,Greenpoint,40.73767,-73.95527,Private room,100,2,0,,,1,0 +13291853,Bright and Comfortable 1br in West Village,993817,Alex,Manhattan,West Village,40.7321,-74.00461,Entire home/apt,250,2,1,2016-06-18,0.03,1,0 +13292687,Cozy room in Williamsburg Apartment,75014265,Simon,Brooklyn,Williamsburg,40.70949,-73.96087,Private room,89,1,3,2017-04-25,0.08,1,0 +13292979,Park Slope luxury penthouse w/ private roof deck,75017049,Dylan,Brooklyn,South Slope,40.66662,-73.98168,Private room,100,31,1,2019-06-06,0.88,2,283 +13292993,Comfortable 2-bedroom centrally located in NYC!,29183572,Marissa,Manhattan,Kips Bay,40.74429,-73.97663,Entire home/apt,300,2,2,2016-09-19,0.05,1,0 +13293325,Cozy Beautiful Room Only 20min from Manhattan NYC!,75020731,Stefan,Queens,Ridgewood,40.70219,-73.89859,Private room,45,7,35,2019-07-01,1.29,1,18 +13294007,Large and Beautiful ELEVATOR 1 BR - Very Quiet,75029289,Rlg,Manhattan,Upper East Side,40.77375,-73.94963,Entire home/apt,133,30,10,2019-05-30,0.44,5,126 +13294137,"Quiet, Secure, Clean and very Private Apartment",75030399,Hardy,Bronx,Williamsbridge,40.87938,-73.86349,Entire home/apt,500,2,19,2018-11-05,0.56,1,345 +13294291,Heart of Williamsburg ❤,19529332,Lannon,Brooklyn,Williamsburg,40.71736,-73.95263,Private room,68,3,9,2017-08-17,0.25,1,0 +13294325,"Private Bedroom in Brownstone House, Bedstuy",75034279,Irina,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9512,Private room,56,2,43,2019-06-30,1.61,2,110 +13294856,"NYCT02-3: Private Sunny Rm, NYU, Baruch, SOHO",39890192,Laura,Manhattan,Little Italy,40.71728,-73.99859,Private room,75,15,15,2019-02-15,0.40,12,80 +13294859,Huge Bushwick loft Bedroom,20353229,Megan,Brooklyn,Williamsburg,40.70552,-73.93344,Private room,80,3,0,,,1,0 +13295331,Pretty&Brand-New room Close to Everything You Want,33064599,Yukee,Manhattan,Upper West Side,40.8002,-73.96727,Private room,299,1,3,2016-12-31,0.08,6,345 +13295693,Cozy private room in Homecrest Brooklyn,10633027,Sam,Brooklyn,Sheepshead Bay,40.59621,-73.95767,Private room,51,2,80,2019-06-22,2.42,3,35 +13296897,Beautiful Bedroom Mid Town Manhattan,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76283,-73.99331,Private room,115,2,30,2019-07-02,0.80,3,3 +13297200,Cozy Convenient Brooklyn Heights 1BR Apartment,7959692,Lucas,Brooklyn,Brooklyn Heights,40.69446,-73.99689,Entire home/apt,180,3,5,2018-06-17,0.14,1,0 +13298512,"Large Bedroom in Clinton Hill/Bed-Stuy, Brooklyn!",6444963,Tiffany,Brooklyn,Bedford-Stuyvesant,40.69041,-73.96026,Private room,50,6,3,2019-02-11,0.08,1,3 +13298526,AC room in a Huge Lux Greenpoint Loft,49742862,Angela,Brooklyn,Greenpoint,40.73052,-73.95876,Private room,80,2,2,2019-01-01,0.05,2,0 +13299243,Single family BBQ - 15 min to midtown,75092148,Sarah,Queens,Astoria,40.76026,-73.92235,Entire home/apt,300,4,4,2018-08-05,0.11,1,0 +13299532,Cozy 2 bedroom APT in the heart of Bushwick,34300852,Katelyn,Brooklyn,Bushwick,40.69472,-73.91405,Entire home/apt,79,2,156,2019-07-07,4.21,1,70 +13299818,Spacious & bright 1 BDR in Gramercy,17265086,Katie,Manhattan,Kips Bay,40.73898,-73.98233,Entire home/apt,150,2,18,2019-06-02,0.81,1,0 +13300059,Quiet Home Base for Exploring an Exciting City!,36478779,Isa,Brooklyn,Prospect-Lefferts Gardens,40.66071,-73.9558,Entire home/apt,94,3,98,2019-07-03,2.71,1,94 +13300113,Private bedroom + living room simple and cozy,74304509,Michel,Brooklyn,Prospect Heights,40.67951,-73.96926,Private room,65,1,16,2017-05-28,0.46,1,0 +13300645,"NYCT02-2 LES Newly renovated Rm, NYU, Soho, AC",39890192,Laura,Manhattan,Little Italy,40.71783,-73.99817,Private room,83,15,26,2019-06-02,0.74,12,125 +13303942,Spacious Bushwick Room with 3 Large Windows,48036408,Raul,Brooklyn,Bushwick,40.68584,-73.90587,Private room,50,20,0,,,1,0 +13305621,Cozy 1BR apartment in Clinton Hill,1331063,Maria,Brooklyn,Bedford-Stuyvesant,40.68235,-73.9535,Entire home/apt,120,14,1,2016-06-25,0.03,1,0 +13306081,Elgant double bed room in Brooklyn.,36579485,Jean& Toney,Brooklyn,Canarsie,40.6413,-73.90303,Private room,500,2,1,2016-06-23,0.03,3,179 +13306156,Large deluxe queen size bedroom,36579485,Jean& Toney,Brooklyn,Canarsie,40.6418,-73.90245,Private room,600,2,0,,,3,362 +13306254,A beautiful Park slope apartment,9603086,Leza,Brooklyn,Gowanus,40.6664,-73.99305,Entire home/apt,300,1,0,,,1,311 +13307480,Peaches Bungalow,74180901,Etta,Manhattan,Washington Heights,40.83791,-73.94075,Entire home/apt,150,1,89,2019-06-18,2.41,1,139 +13308110,Sunny & Spacious 1bdrm apt,1713791,Roshan,Brooklyn,Bushwick,40.70699,-73.92188,Entire home/apt,149,1,41,2019-06-02,1.10,1,69 +13308276,The Manhattan - Apartment Near Central Park,75085688,Mark,Manhattan,Upper West Side,40.801,-73.9613,Entire home/apt,150,2,11,2017-11-25,0.31,1,2 +13308629,Quiet Cozy Chinatown Room,41408521,David,Manhattan,Chinatown,40.71385,-73.99711,Private room,75,1,3,2017-08-12,0.08,1,0 +13309188,"Modern 1br apt, Manhattan skyline views!",21367825,Anna,Manhattan,Roosevelt Island,40.7672,-73.94552,Entire home/apt,195,14,1,2016-08-27,0.03,1,0 +13309259,Cute 1 bdrm in shared crown heights apt w backyard,33386679,Sarah,Brooklyn,Crown Heights,40.67512,-73.95248,Private room,80,1,1,2016-06-26,0.03,2,0 +13309409,Nolita/Soho - Quiet 1 Bedroom in Great Location!,75205085,Owen,Manhattan,Nolita,40.72271,-73.99518,Entire home/apt,250,4,11,2018-05-19,0.29,1,0 +13309667,Bright Modern West Village Studio with Skylight,2507664,Julie,Manhattan,West Village,40.73704,-74.00371,Entire home/apt,225,1,21,2016-12-04,0.56,1,0 +13309763,Large SOHO Artist Loft,75098888,Nate,Manhattan,SoHo,40.72535,-73.9966,Entire home/apt,450,2,41,2019-04-19,1.16,1,0 +13310836,Between Northern Blvd. and Main Street.,75216989,Wenqin,Queens,Flushing,40.7662,-73.82854,Private room,35,1,67,2019-06-01,1.78,4,339 +13311392,420 friendly COZY BRICK EXPOSED PVT RM,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68155,-73.91435,Private room,70,12,27,2019-06-16,0.73,4,342 +13311896,Cultural and Cozy in Crown Heights,35313655,Skye,Brooklyn,Crown Heights,40.67389,-73.93974,Private room,80,3,1,2016-06-15,0.03,1,0 +13312914,Unique art loft in Bushwick! 1 block from train!,25614735,Brad,Brooklyn,Bushwick,40.69809,-73.93435,Private room,75,2,0,,,1,0 +13312968,"Perfect, Charming Greenpoint Bedroom in 3BR Apt",52699613,Julia,Brooklyn,Greenpoint,40.73356,-73.96001,Private room,79,1,0,,,1,0 +13313377,"NYCT02-1 Canal St, Tribeca, Soho, LES, NYU",39890192,Laura,Manhattan,Chinatown,40.71552,-73.99731,Private room,84,14,25,2019-06-19,0.71,12,89 +13313576,Bright and orderly 1 BR apartment in LES,75246219,Gabriel,Manhattan,Lower East Side,40.72075,-73.98733,Entire home/apt,172,3,3,2016-07-10,0.08,1,0 +13314206,Beautiful Spacious Apt. in Washington Heights!,2383846,Lisa,Manhattan,Washington Heights,40.83945,-73.94353,Entire home/apt,110,14,5,2018-08-24,0.14,1,0 +13314442,Private bedroom in a 4 bed apartment in Bushwick!,35494785,Jonathan,Brooklyn,Bushwick,40.70044,-73.93909,Private room,55,1,1,2016-06-19,0.03,1,0 +13314752,Astoria-LIC Private Room,75061595,Cesar,Queens,Long Island City,40.76053,-73.92977,Private room,78,2,27,2017-08-21,0.72,1,0 +13315551,Charming Private Flat,8387315,Nicky,Brooklyn,Midwood,40.61567,-73.95488,Entire home/apt,115,1,75,2019-07-07,2.00,1,81 +13315940,Columbia University Spacious Clean 1 BR Apartment,14105586,Justin,Manhattan,Morningside Heights,40.80904,-73.95807,Entire home/apt,180,3,1,2016-07-01,0.03,1,0 +13315967,Authentic Industrial Loft with 35ft ceilings.,75275467,Yaron,Bronx,Port Morris,40.80884,-73.9302,Entire home/apt,139,2,28,2019-05-28,0.80,4,131 +13316028,Duplex Condo in Williamsburg- Pvt Ensuite Bath!,6459374,Juan,Brooklyn,Greenpoint,40.72446,-73.95235,Private room,120,2,10,2017-12-05,0.27,1,0 +13316545,"Great Place in Brooklyn, Close to Everything",75281770,Janea,Brooklyn,East Flatbush,40.65112,-73.95165,Entire home/apt,77,2,1,2016-06-15,0.03,1,0 +13316577,Spacious Upper Eastside Apt available July-August,7333982,Paulo,Manhattan,Upper East Side,40.77614,-73.94626,Entire home/apt,150,7,1,2016-08-20,0.03,1,0 +13316988,Great room close to Columbia University and Subway,11684392,Thomas,Manhattan,Upper West Side,40.79951,-73.96767,Private room,67,5,1,2016-07-24,0.03,1,0 +13318239,"Pleasant, peaceful & charming apt",75302217,C-Van,Manhattan,East Harlem,40.7885,-73.9494,Entire home/apt,159,30,12,2018-11-06,0.35,2,0 +13318272,Big Bedroom in Spacious Apt in East Williamsburg,185394,Gregory,Brooklyn,Williamsburg,40.70485,-73.94472,Private room,100,1,3,2016-06-27,0.08,2,0 +13324758,Sunny & Comfy room in Crown Heights,34547856,Angelica,Brooklyn,Crown Heights,40.67437,-73.95711,Private room,65,2,0,,,1,0 +13325664,"2 bed, 2 bath, roof deck artsy gem in East Village",38403770,Stacey,Manhattan,East Village,40.72792,-73.98106,Entire home/apt,199,2,4,2019-07-01,0.11,1,0 +13325767,Cozy Room In Brooklyn,10864311,Habib,Brooklyn,Clinton Hill,40.69248,-73.96899,Private room,75,3,7,2019-01-02,0.25,1,0 +13326584,"Cosy room in NYC, two blocks from Central Park!",37218085,Marie,Manhattan,Upper West Side,40.79964,-73.96437,Private room,70,3,2,2016-08-13,0.06,1,0 +13326731,Cozy room with Queen bed in spacious loft.,75275467,Yaron,Bronx,Port Morris,40.80872,-73.93051,Private room,49,2,59,2019-06-11,1.59,4,148 +13327345,Full size bed in Petite room with exposed brick.,75275467,Yaron,Bronx,Port Morris,40.80952,-73.93025,Private room,41,2,57,2019-06-17,1.54,4,146 +13328254,"Simple, Spacious Room in LES/Two Bridges Apt",20932025,David,Manhattan,Lower East Side,40.71336,-73.98977,Private room,150,3,6,2016-10-30,0.18,1,0 +13328405,NEW RENOVATION 16min from TIMES SQUARE,40221604,John,Manhattan,Harlem,40.82299,-73.94486,Private room,60,1,72,2019-06-03,1.94,3,73 +13329706,Charming apartment with parking in the heart of Qs,55829442,Shahar,Queens,Kew Gardens Hills,40.73078,-73.82232,Entire home/apt,40,10,4,2016-07-18,0.11,1,0 +13329860,Sunny & spacious in NYC,8273903,Rohit,Queens,Astoria,40.76417,-73.92816,Entire home/apt,99,31,4,2018-10-31,0.11,1,5 +13330602,Modern One Bedroom in Heart of Financial District,27977872,Dana,Manhattan,Financial District,40.70716,-74.01155,Entire home/apt,250,5,0,,,1,0 +13330638,Sun-drenched apartment w/ backyard,11724504,Carli,Brooklyn,Bushwick,40.69903,-73.91722,Private room,40,4,1,2016-08-09,0.03,1,0 +13330683,NYC From Astoria Queens,75443454,Ana,Queens,Ditmars Steinway,40.77293,-73.91846,Private room,100,3,34,2019-04-15,0.92,2,161 +13331393,1BR Luxurious Furnished NY Apt - Times Square!,30283594,Kara,Manhattan,Theater District,40.75956,-73.98512,Entire home/apt,239,30,0,,,121,363 +13332001,Beautiful Room in Brooklyn Apartment,75458749,Beck,Brooklyn,Flatbush,40.64107,-73.95325,Private room,50,4,3,2016-08-05,0.08,2,0 +13332334,Strivers Row Studio,11727297,Ivonne,Manhattan,Harlem,40.81816,-73.94305,Entire home/apt,110,2,9,2017-10-01,0.26,1,0 +13332859,Spacious & Quiet Brooklyn Carriage House,70713032,Daria,Brooklyn,Brooklyn Heights,40.69775,-73.99517,Entire home/apt,375,10,2,2019-06-29,0.18,1,22 +13333542,Beautifully Designed Island Style Garden Suite,75478154,Malene,Brooklyn,Bedford-Stuyvesant,40.68252,-73.93863,Entire home/apt,229,4,92,2019-06-15,2.54,1,236 +13333699,Artist Charming Modern Ft Greene Park 2 floor apt,3115626,Darcy And Ross,Brooklyn,Fort Greene,40.69056,-73.97752,Entire home/apt,175,2,132,2019-07-06,3.54,1,298 +13333916,Clean & Private Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63849,-74.02028,Private room,40,1,84,2018-07-24,2.23,4,0 +13335424,"i call it home, you'll call it home.",75506967,Mimie,Bronx,Tremont,40.84559,-73.89815,Private room,41,7,22,2019-06-24,0.61,2,68 +13337150,"Luxury Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81193,-73.95946,Private room,110,3,58,2019-06-22,1.62,6,129 +13340543,"Bright, Spacious Studio in Upper East Side",75561563,Mindy,Manhattan,Upper East Side,40.76284,-73.96038,Entire home/apt,150,1,25,2018-06-26,0.67,1,0 +13341570,Upper East Side Studio - Close to Met Museum,75572617,Kathryn,Manhattan,Upper East Side,40.77722,-73.94991,Entire home/apt,165,4,5,2017-10-09,0.13,1,0 +13341820,Upscale 1 Bedroom Hell's Kitchen Apartment,30283594,Kara,Manhattan,Hell's Kitchen,40.76045,-73.9981,Entire home/apt,239,30,1,2017-04-20,0.04,121,365 +13341955,MODERN & CONTEMPORARY STUDIO,75577166,Diana,Queens,Jackson Heights,40.75274,-73.87777,Entire home/apt,125,3,86,2019-07-02,2.39,1,271 +13342037,Charming 1BR Apartment in Soho / Nolita,75575414,Michael,Manhattan,Nolita,40.72198,-73.99451,Entire home/apt,245,5,0,,,1,0 +13343144,Warm and Cozy Paradise,54807420,Emmanuel,Queens,Astoria,40.75619,-73.92546,Private room,80,60,3,2017-01-19,0.10,1,83 +13343199,Midwood Street Limestone,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.6602,-73.96017,Entire home/apt,329,2,15,2019-01-22,0.98,2,0 +13344039,Downtown Brooklyn Apartment with Great Views!,5777244,Lyshaan,Brooklyn,Downtown Brooklyn,40.69209,-73.98499,Entire home/apt,175,1,10,2016-09-05,0.27,1,0 +13346091,"Bright, Quiet Apartment near City College",2571641,Erika,Manhattan,Harlem,40.81771,-73.952,Entire home/apt,150,3,3,2017-01-01,0.08,3,0 +13346113,"Entire 2 BR apartment, 15 steps from the subway!",16278677,Grant,Brooklyn,Williamsburg,40.71459,-73.93885,Entire home/apt,200,7,0,,,1,146 +13346741,Great location big one bedroom on the UWS,3256433,Ira,Manhattan,Upper West Side,40.79426,-73.96914,Entire home/apt,200,10,4,2019-06-08,0.12,7,154 +13347857,Private room in Williamsburg,4260505,Ania,Brooklyn,Williamsburg,40.71061,-73.94289,Private room,75,2,7,2018-02-10,0.22,1,0 +13348000,"Home*Sweet*Home +Quiet neighborhood",69546772,Dave And Shaceline,Bronx,Throgs Neck,40.83166,-73.81747,Entire home/apt,89,1,192,2019-06-26,5.15,1,303 +13355002,Newly renovated apt w/parking space,75730551,Jeffrey,Brooklyn,Canarsie,40.63672,-73.91154,Entire home/apt,120,2,193,2019-07-08,5.14,1,254 +13355711,Private room in Washington Heights,39644709,Adriana,Manhattan,Washington Heights,40.851,-73.93141,Private room,35,3,1,2016-07-31,0.03,1,0 +13355757,Private Room in Dumbo Loft,75739500,David,Brooklyn,DUMBO,40.704,-73.98464,Private room,100,3,23,2017-04-15,0.63,1,0 +13355833,Private Room in Williamsburg,5628991,Christian,Brooklyn,Williamsburg,40.7194,-73.96262,Private room,85,3,0,,,1,0 +13356748,"Charming, light-filled room in Williamsburg",31429931,Penny,Brooklyn,Williamsburg,40.71444,-73.94058,Private room,70,1,1,2016-09-05,0.03,1,0 +13358067,bright 1 bedroom by the park,7097844,Anne,Brooklyn,Greenpoint,40.72552,-73.94489,Entire home/apt,114,2,3,2018-09-11,0.08,1,0 +13358265,Full 1 Bedroom Apartment in heart of UWS,60380241,Vanessa,Manhattan,Upper West Side,40.778,-73.97912,Entire home/apt,200,2,117,2019-06-22,3.24,1,34 +13358405,Delightful Brownstone,75484381,Shon,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94866,Entire home/apt,225,30,0,,,1,249 +13358660,Large private room in a very spacious 2 Bed/2 Bath,75773748,Halston,Manhattan,Upper West Side,40.79918,-73.9635,Private room,120,2,0,,,1,0 +13359102,Lovely one bedroom - Heart of Greenwich Village,8714636,Vianney,Manhattan,Greenwich Village,40.73057,-73.99422,Entire home/apt,199,3,1,2016-12-14,0.03,1,0 +13359416,"Private 1 bedroom UWS, 2 blocks from Central Park!",28557516,Thomas,Manhattan,Upper West Side,40.80286,-73.96561,Private room,55,5,0,,,1,0 +13359578,Sun-filled spacious one bedroom in West Village,3148025,Nicole,Manhattan,West Village,40.73831,-74.00324,Entire home/apt,199,4,4,2019-06-15,0.11,1,127 +13359647,Budget Room in large apartment (Solo Travelers+),11070120,Vernon,Bronx,Fordham,40.85927,-73.90142,Private room,40,21,23,2019-02-28,0.61,2,266 +13359798,large 1 bedroom apt with private balcony Astoria,4413028,Michael,Queens,Astoria,40.76836,-73.91445,Entire home/apt,200,2,18,2019-03-17,0.49,1,6 +13359877,Private Bedroom in the Heart of Williamsburg,264025,Sarah-Joan,Brooklyn,Williamsburg,40.71896,-73.95673,Private room,80,3,0,,,1,0 +13360068,"Awesome one-bedroom in the UES, Manhattan",26928086,Alice,Manhattan,Upper East Side,40.77928,-73.94862,Entire home/apt,140,2,6,2017-06-30,0.17,1,0 +13360600,Cosy Studio in Forest Hills,6741942,Ioannis,Queens,Rego Park,40.7234,-73.85787,Entire home/apt,50,20,2,2018-08-25,0.08,1,0 +13361613,Bright Architectural Oasis w/Chef’s Kitchen #10305,8961407,Jamie,Manhattan,Harlem,40.8053,-73.94704,Entire home/apt,375,3,50,2019-05-27,1.50,3,351 +13361785,"Bridge View, Designer Brick & Timber Loft",9949656,Scott,Brooklyn,Williamsburg,40.71329,-73.96586,Entire home/apt,250,3,6,2019-05-21,0.18,1,114 +13362486,Bedroom in Park Slope Apartment,75828613,Colin,Brooklyn,Park Slope,40.67148,-73.97786,Private room,40,3,2,2016-08-02,0.06,1,0 +13369841,Charming LES Backyard w/ brick exposed large Bdrm,15318852,Patrick,Manhattan,Lower East Side,40.71775,-73.98612,Private room,99,2,22,2017-06-18,0.59,1,365 +13370053,Spacious creative waterfront loft,75915628,Farrah,Brooklyn,Greenpoint,40.73431,-73.95928,Entire home/apt,140,2,3,2016-12-21,0.08,1,0 +13370393,Charming.,13373889,Aaron,Staten Island,Concord,40.60556,-74.08274,Entire home/apt,150,7,1,2018-11-04,0.12,2,83 +13371473,Cozy Bedroom in Spacious Apt in East Williamsburg,185394,Gregory,Brooklyn,Williamsburg,40.70478,-73.9435,Private room,75,1,2,2016-06-27,0.05,2,0 +13371633,Charming & Spacious 1 BR; Steps to Brooklyn Museum,61265293,Robert,Brooklyn,Crown Heights,40.67383,-73.961,Private room,55,3,27,2019-06-19,0.80,1,48 +13371699,Beautiful Spacious Apartment near Prospect Park,2455767,Althea,Brooklyn,Windsor Terrace,40.65867,-73.97971,Entire home/apt,145,2,78,2019-06-29,2.18,1,314 +13372847,Studio apartment in Cobble Hill,75947654,Elise,Brooklyn,Carroll Gardens,40.68468,-73.99372,Entire home/apt,95,4,92,2019-06-30,2.56,1,39 +13372860,Cozy and simple Bedstuy studio right by the train,16755566,Ashton,Brooklyn,Bedford-Stuyvesant,40.69076,-73.92886,Entire home/apt,69,4,5,2016-11-23,0.13,1,0 +13373300,Sunny Apt in Historic Cobble Hill Brownstone,8190806,Lauren Wesley,Brooklyn,Cobble Hill,40.6885,-73.99443,Entire home/apt,175,5,53,2019-06-24,1.44,1,99 +13373898,Sunny Designer Gem for Families & Couples! #10304,8961407,Jamie,Manhattan,Harlem,40.8057,-73.94689,Entire home/apt,350,3,46,2019-06-30,1.30,3,297 +13374115,Charming 1 Bedroom in Harlem,17078225,Sarah-Jane,Manhattan,Harlem,40.81551,-73.94916,Private room,119,2,16,2017-12-30,0.44,2,0 +13374738,Beautifully Sunlight Harlem 2 Bedroom Apt,75968218,Carole,Manhattan,Harlem,40.80151,-73.95346,Private room,160,4,3,2016-08-04,0.08,1,0 +13375642,Huge sunny bedroom with private bathroom,1949282,Kyla,Brooklyn,Bushwick,40.69407,-73.91124,Private room,55,2,38,2019-04-16,1.51,5,0 +13375898,"PERFECT LOCATION, 15 MINUTES TO MANHATTAN",75981937,Cem,Queens,Astoria,40.76002,-73.92252,Private room,48,1,47,2019-06-22,1.27,2,71 +13375936,Private room in the heart of West Harlem,33248485,Wyatt,Manhattan,Harlem,40.80321,-73.9521,Private room,85,1,9,2016-07-19,0.24,1,0 +13376196,Great Location - Whole apt - 1 bedroom,73734452,Evan,Manhattan,Upper East Side,40.762,-73.96045,Entire home/apt,97,5,3,2017-06-16,0.08,1,0 +13376767,Sun-drenched corner apartment in East-Williamsburg,279989,Moenen,Brooklyn,Williamsburg,40.70489,-73.94112,Entire home/apt,110,6,18,2019-06-15,0.52,1,0 +13376886,LARGE RENOVATED STUDIO - Upper Manhattan,71496163,Landon,Manhattan,East Harlem,40.79747,-73.94106,Entire home/apt,91,1,1,2016-06-17,0.03,1,0 +13376891,Super Vibey Hang,16836964,Brendan,Brooklyn,Fort Greene,40.68877,-73.97795,Entire home/apt,150,2,1,2016-06-18,0.03,1,0 +13376968,Spacious Luxury In the Heart of the East Village,8278179,Will,Manhattan,East Village,40.72886,-73.98834,Private room,80,1,4,2016-07-29,0.11,1,0 +13377443,"Big, airy room in beautiful apartment",76004481,Sylvia,Brooklyn,Flatbush,40.65251,-73.96325,Private room,60,4,1,2017-07-03,0.04,1,0 +13377893,Spacious Room in Bushwick,74339725,Giselle,Brooklyn,Bushwick,40.69539,-73.9285,Private room,55,7,7,2019-06-18,0.19,1,0 +13378096,Bushwick 1 Bedroom,16626798,Chelsea,Brooklyn,Bushwick,40.70222,-73.92947,Private room,65,21,0,,,1,0 +13378177,Art-filled Mid-Century Modern Apartment,3686511,Kris,Brooklyn,Prospect-Lefferts Gardens,40.66128,-73.94797,Entire home/apt,163,3,16,2019-05-28,0.52,1,154 +13378207,Sunny - Private Room in Park Slope South,63227509,Alan,Brooklyn,Sunset Park,40.65886,-73.99054,Private room,60,2,0,,,1,41 +13378410,Hamilton Heights Abode,68600221,Victoria,Manhattan,Harlem,40.82429,-73.95225,Private room,54,7,2,2017-06-18,0.05,1,0 +13378438,Private BR + Bathroom in brand new BK brownstone!,28283747,Allison,Brooklyn,Bedford-Stuyvesant,40.68235,-73.94686,Private room,46,7,1,2016-07-31,0.03,1,0 +13378609,Experience New York from our place. (Free parking),45937956,Fahim,Queens,Jackson Heights,40.75087,-73.89365,Entire home/apt,125,2,32,2019-06-09,0.85,2,50 +13378820,Sunlit 3BR Urban Retreat & Parking near City &JFK,10859834,Brian,Brooklyn,East New York,40.66405,-73.85676,Entire home/apt,150,2,179,2019-07-02,5.13,1,300 +13378919,Bright & Cozy Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63909,-74.01815,Private room,47,2,87,2018-07-23,2.32,4,0 +13379269,A sunny bedroom in a spacious loft,731601,Idil,Queens,Astoria,40.77159,-73.93089,Private room,40,90,0,,,2,0 +13379511,Charming Brownstone in Clinton Hill,76037379,Josh+Emily,Brooklyn,Clinton Hill,40.68594,-73.96293,Entire home/apt,120,3,2,2016-11-28,0.05,1,0 +13379688,Harlem Charmer,76040827,Gregory,Manhattan,Harlem,40.80184,-73.95591,Private room,67,1,8,2019-01-01,0.23,1,0 +13380662,Entire Floor/1 Min from N Train/Private Entrance,61393656,Jamie,Brooklyn,Borough Park,40.62023,-73.99103,Entire home/apt,73,1,65,2019-06-22,3.49,1,3 +13384425,Beautiful townhouse near Prospect Park,43242084,Petra,Brooklyn,Prospect-Lefferts Gardens,40.656,-73.95851,Entire home/apt,128,2,2,2019-07-07,2,1,133 +13386091,Modern 3bd close to everything,75793151,Ella,Brooklyn,Bensonhurst,40.61448,-74.00486,Entire home/apt,121,2,24,2019-04-21,0.64,1,14 +13386152,Penthouse apartment. Lots of sun and great views.,9782292,Joshua,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95316,Entire home/apt,250,2,3,2017-08-15,0.08,1,0 +13386360,Cozy - Perfect Location Studio LES,76103506,Catalina,Manhattan,Lower East Side,40.71962,-73.98241,Entire home/apt,80,1,4,2016-07-03,0.11,1,0 +13387453,"Cute, clean studio in Central Harlem",23273780,Rahel,Manhattan,Harlem,40.81619,-73.93798,Entire home/apt,77,1,2,2016-07-06,0.05,1,0 +13387572,RENOVATED STUDIO FOR 2~EAST 60TH STREET,76104209,Rated,Manhattan,Upper East Side,40.76113,-73.96092,Entire home/apt,139,30,0,,,33,362 +13388210,Midtown West Private Sublet - Best Value,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76334,-73.98909,Entire home/apt,117,30,9,2019-04-30,0.40,91,105 +13388285,"Newly renovated, sunny room with a private bath",39808438,Easton,Brooklyn,Bushwick,40.68936,-73.916,Private room,75,3,23,2018-08-19,0.62,5,0 +13388649,Spacious Private Home - 20m to Manhattan,1544804,Michelle,Queens,Astoria,40.76406,-73.90769,Entire home/apt,99,1,185,2019-06-19,5.28,1,211 +13388929,Sunny and Spacious 3 Bedroom Apt in West Village!,43433174,Stephen,Manhattan,West Village,40.73426,-74.00236,Entire home/apt,279,3,2,2016-09-05,0.05,1,0 +13389082,Ex-Artist Studio w/ Huge Skylight Guest Suite,9679974,Eddie,Manhattan,East Village,40.72966,-73.98187,Entire home/apt,140,2,55,2018-07-02,1.47,1,0 +13389177,Spacious East 39th Street Furnished Studio,2856748,Ruchi,Manhattan,Murray Hill,40.74637,-73.97207,Entire home/apt,200,30,0,,,49,364 +13389280,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Theater District,40.76375,-73.98387,Entire home/apt,257,30,0,,,87,364 +13389756,Spacious Light Palace in Heart of Williamsburg,6574489,Jilly,Brooklyn,Williamsburg,40.71769,-73.95275,Private room,95,2,9,2017-03-16,0.24,1,0 +13391063,Minimalist bedroom with garden access,51765884,Caitlin,Brooklyn,Greenpoint,40.72523,-73.95218,Private room,65,5,0,,,1,0 +13391165,"Gorgeous Room in EV, Private Patio, Open Kitchen!",34706197,Imri,Manhattan,East Village,40.72768,-73.98739,Private room,149,4,25,2019-06-13,0.68,2,156 +13392143,Astoria: 2 Weeks July 1st - 14th,39175915,Wesley,Queens,Ditmars Steinway,40.77643,-73.91364,Private room,29,14,0,,,1,0 +13392392,Sunny Apartment with Private Roof (East Village),10032007,Zachary,Manhattan,East Village,40.72591,-73.98917,Entire home/apt,250,1,2,2016-10-12,0.05,1,0 +13392646,Prime Beautiful Brooklyn Brownstone,76173252,Victoria,Brooklyn,Carroll Gardens,40.68132,-73.99757,Entire home/apt,150,2,14,2017-11-25,0.38,1,0 +13392858,A Small Kingdom in the Clouds,16437254,Benjamin,Brooklyn,Boerum Hill,40.68724,-73.98497,Entire home/apt,120,30,7,2019-06-19,0.38,21,342 +13392941,Private Bedroom w/ Queen Bed in Financial District,23335662,Kyle,Manhattan,Financial District,40.70514,-74.00921,Private room,85,1,3,2016-06-30,0.08,1,0 +13393092,Deluxe 1-Bedroom near Empire State Building!,30283594,Kara,Manhattan,Midtown,40.75186,-73.97062,Entire home/apt,259,30,0,,,121,184 +13394065,Beautiful and convenient room in Long Island city!,35029020,Danai,Queens,Long Island City,40.75174,-73.92967,Entire home/apt,90,7,0,,,1,0 +13394404,Charming Cozy 1 bedroom wood fl plenty of closets,29899972,Antonio,Queens,Astoria,40.75855,-73.91616,Entire home/apt,74,2,0,,,1,0 +13394558,MY ADORABLE BOWERY PLACE,76192815,Sam,Manhattan,Little Italy,40.71938,-73.9952,Entire home/apt,90,31,9,2019-02-20,0.24,5,221 +13394748,Cozy Spacious Double Bed #2A Near JFK & J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69628,-73.85255,Private room,45,1,141,2019-07-03,3.77,4,287 +13395084,Family getaway.,74789787,Sabina,Brooklyn,Clinton Hill,40.69558,-73.96872,Private room,100,7,2,2016-08-13,0.06,1,0 +13395329,Garden Flat Next to Central Park w/ Large Terrace,71679540,Brook,Manhattan,Morningside Heights,40.80273,-73.95924,Private room,89,1,131,2019-07-04,3.62,1,165 +13395362,Updated 1 Bedroom Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76409,-73.99122,Entire home/apt,199,30,4,2018-03-31,0.14,91,0 +13395513,Entire apartment in the heart of SOHO,74994238,Godfrey,Manhattan,SoHo,40.7207,-73.99815,Entire home/apt,76,30,10,2019-06-11,0.31,1,30 +13395955,Adorable Prospect Heights 1 Bedroom,34468399,Nancy,Brooklyn,Prospect Heights,40.67649,-73.96697,Entire home/apt,143,31,3,2018-07-21,0.08,1,0 +13396285,Kawaii Gamer's Paradise in Brooklyn!,37555641,Jessy,Brooklyn,Bedford-Stuyvesant,40.69443,-73.94636,Shared room,40,1,31,2017-01-01,0.91,1,0 +13396969,"1 Bedroom apartment, heart of LES",96755,Hope,Manhattan,Chinatown,40.71579,-73.99158,Entire home/apt,125,4,31,2019-07-07,0.84,1,7 +13397316,Lovely Gem in Hell's Kitchen Midtown Manhattan,54454582,Breath Beyond,Manhattan,Hell's Kitchen,40.76413,-73.99301,Entire home/apt,180,2,0,,,3,3 +13397762,"private oasis in sunnyside, queens",20167238,Erika,Queens,Sunnyside,40.74272,-73.92347,Entire home/apt,110,2,4,2017-07-27,0.11,1,0 +13397781,Sunny South Williamsburg Apartment,3386627,Sarah,Brooklyn,Williamsburg,40.71035,-73.95332,Entire home/apt,185,3,0,,,1,0 +13397786,"Huge bright room with own bathroom, Williamsburg",4445885,Alexandra,Brooklyn,Williamsburg,40.71685,-73.94668,Private room,85,5,0,,,1,0 +13398011,Modern East Village Apt Great Location 1-3 Bdrms,69050011,Kareem,Manhattan,East Village,40.72563,-73.99118,Entire home/apt,300,2,16,2018-05-06,0.43,1,0 +13398340,Historic Townhouse Apartment with Garden Oasis,5917464,Greg & Adriane,Brooklyn,Bedford-Stuyvesant,40.68697,-73.94506,Entire home/apt,99,2,148,2019-07-05,3.98,1,29 +13398348,Your Own Apartment corner of Bedford and Grand!,1570170,Kristina,Brooklyn,Williamsburg,40.7157,-73.95983,Entire home/apt,125,3,97,2019-06-24,2.65,2,216 +13398406,"Big Room, Big Living Room, Rooftop Hot Tub",76244490,Kunal,Brooklyn,Williamsburg,40.71605,-73.9518,Shared room,35,15,0,,,1,0 +13398837,Master Bedroom next to cute park on the LES,22166692,Kevin,Manhattan,Lower East Side,40.72057,-73.99185,Private room,80,5,27,2018-08-26,0.73,1,0 +13399051,"Modern Apartment LES, 2mn to train",4027689,Miguel,Manhattan,Lower East Side,40.71518,-73.98953,Private room,150,3,12,2017-10-30,0.32,2,0 +13400181,Perfect Apt In The Heart of Bushwick,75461641,John,Brooklyn,Bushwick,40.6979,-73.92852,Entire home/apt,90,3,0,,,1,0 +13404021,"One bedroom is Bushwick, near everything",76303329,Ana,Brooklyn,Bushwick,40.69405,-73.91403,Private room,40,1,1,2016-07-01,0.03,1,0 +13405322,Charming Free Standing Wooded Carriage House,76316036,Tobias,Brooklyn,Crown Heights,40.67587,-73.95467,Entire home/apt,250,7,3,2017-10-02,0.13,1,0 +13406622,CHELSEA 3 BEDROOM APARTMENT WITH PRIVATE GARDEN!!!,1501090,Betsy,Manhattan,Chelsea,40.74339,-73.99642,Entire home/apt,450,2,139,2019-06-20,3.73,1,221 +13407067,Carib breeze vybz,66309874,Rich,Brooklyn,Cypress Hills,40.68684,-73.87834,Private room,50,3,12,2018-12-08,0.33,3,90 +13407328,Spacious 1 Bedroom Apartment in Prospect Heights,23244570,Nell,Brooklyn,Prospect Heights,40.67318,-73.9655,Entire home/apt,75,1,5,2016-06-28,0.13,1,0 +13407354,COZY 1BR IN MIDTOWN EAST!,6455254,Alex,Manhattan,Midtown,40.75352,-73.96807,Entire home/apt,139,2,102,2019-06-23,2.74,1,235 +13407476,Spacious Midtown East 2 Bedroom,61391963,Corporate Housing,Manhattan,Midtown,40.75608,-73.96895,Entire home/apt,200,30,2,2018-03-31,0.12,91,101 +13407615,Lovely Apt. in Heart of Brooklyn,20754497,Robert,Brooklyn,Crown Heights,40.66703,-73.94054,Private room,65,1,101,2019-05-28,2.70,1,309 +13408222,Remsen Village Rental II,27277459,Dawn,Brooklyn,East Flatbush,40.65466,-73.9218,Entire home/apt,115,4,89,2019-06-22,2.44,2,282 +13408765,Upper East Side Getaway,51001469,Taylor,Manhattan,East Harlem,40.78749,-73.9504,Private room,70,1,4,2016-07-06,0.11,1,0 +13409920,"Simple, Spacious Studio With Rooftop Access",21573063,Deena,Brooklyn,Bedford-Stuyvesant,40.68547,-73.93209,Entire home/apt,50,1,2,2016-06-27,0.05,1,0 +13410276,Quiet Room + Living Room in the Upper West Side,544621,Eduardo,Manhattan,Upper West Side,40.78378,-73.97845,Private room,85,2,4,2017-01-01,0.11,1,0 +13410478,Artsy Studio / 1 Bedroom in the Heart of Chelsea,43311385,John,Manhattan,Chelsea,40.74921,-74.00416,Entire home/apt,275,3,1,2016-06-30,0.03,1,0 +13410813,1 br apartment(3’ to train)+access to coworking,43375242,Gabriela,Queens,Long Island City,40.7537,-73.93186,Entire home/apt,120,3,40,2019-06-30,1.45,2,365 +13411035,Charming 3 BR in Midtown West,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76327,-73.98937,Entire home/apt,185,30,4,2018-08-31,0.13,91,0 +13411560,Cozy and charming studio in UWS,26676357,Connie,Manhattan,Upper West Side,40.77856,-73.98278,Entire home/apt,150,7,2,2017-01-08,0.05,1,0 +13411711,Beautiful 3 BR apartment steps from Central Park,76383917,Oded,Manhattan,Harlem,40.80521,-73.95213,Entire home/apt,145,31,3,2017-08-17,0.08,1,0 +13411759,Large 1 Bedroom close to Prospect Park,76353208,Jill,Brooklyn,South Slope,40.66018,-73.98074,Entire home/apt,130,2,1,2016-06-25,0.03,1,0 +13412231,1 - Bedroom APT in Bushwick BK,76193714,Heath,Brooklyn,Bushwick,40.68134,-73.9072,Entire home/apt,150,3,0,,,1,0 +13412918,"Affordable, Nice, Clean 1 BR Apt, Upper Manhattan.",76397212,Utku,Manhattan,Marble Hill,40.8754,-73.91263,Entire home/apt,88,1,2,2016-08-10,0.06,1,0 +13413386,Bed-Stuy Gem,62409721,Robert,Brooklyn,Bedford-Stuyvesant,40.69002,-73.9518,Private room,75,1,0,,,1,0 +13413420,simple room,15380275,Sierra64,Brooklyn,Bedford-Stuyvesant,40.68825,-73.93433,Private room,38,7,0,,,1,0 +13414523,Beautiful Bldg near Columbia Uni,76415404,Omar,Manhattan,Upper West Side,40.8021,-73.96629,Private room,64,4,1,2016-06-16,0.03,1,0 +13415100,Park Avenue 3 Bedroom 1.5 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74439,-73.98125,Entire home/apt,185,29,1,2017-05-31,0.04,31,139 +13415535,Large 1BR in Chelsea. Subw on block,3248595,Kai,Manhattan,Chelsea,40.74653,-73.99632,Entire home/apt,165,1,31,2017-10-28,0.90,1,358 +13415850,A Bay Window on Brooklyn,10273704,Matt,Brooklyn,Fort Greene,40.68831,-73.97549,Entire home/apt,200,7,3,2018-01-03,0.09,2,0 +13415925,Stay blocks from Yankee Stadium,11017415,Emmett,Bronx,Concourse Village,40.83041,-73.91838,Entire home/apt,75,1,0,,,1,0 +13415952,Large Bedroom in amazing Apt - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70821,-73.95001,Private room,90,2,24,2018-01-03,0.65,3,0 +13416582,Super cozy studio- the heart of Upper West Side,76443791,Amine,Manhattan,Upper West Side,40.77643,-73.98262,Entire home/apt,140,3,12,2017-08-13,0.33,1,0 +13416840,Modern Luxury apt in Design Centric Building,65590212,Andrew,Brooklyn,Downtown Brooklyn,40.69805,-73.9846,Entire home/apt,150,2,16,2016-11-16,0.43,1,0 +13417071,Sunny 1 bd apartment - Historic Brownstone Apt #2,76451668,Juan,Brooklyn,Bedford-Stuyvesant,40.68444,-73.9287,Entire home/apt,92,30,17,2019-04-30,0.50,2,113 +13417080,"Private Room, 2 beds, bath, Union Square location",44350279,Jp,Manhattan,Gramercy,40.73578,-73.98706,Private room,100,2,79,2019-06-05,2.12,4,243 +13417267,Park Slope Garden Lovers Duplex,65672074,Miriam,Brooklyn,South Slope,40.66781,-73.99024,Entire home/apt,135,7,1,2016-08-05,0.03,1,21 +13417410,Zions Destiny Home away from Home !,76453466,Devon,Brooklyn,East Flatbush,40.66167,-73.92854,Entire home/apt,45,1,112,2019-06-10,2.99,1,244 +13417723,"Big 4 Bedroom Apartment near Subway, All Renovated",2988712,Sasha,Bronx,Claremont Village,40.8357,-73.91023,Entire home/apt,110,90,11,2018-08-23,0.30,7,77 +13418942,A Touch of Modern in Cultural NYC,76477851,Andre,Manhattan,Harlem,40.83048,-73.95009,Private room,250,1,2,2019-06-23,0.05,1,358 +13419864,Massive Room available in Luxury UES Building,76487242,Naga,Manhattan,Upper East Side,40.78521,-73.95006,Private room,154,1,0,,,1,0 +13422992,Gorgeous Lower East Side Walk Up & Roof,11274802,Jeremy,Manhattan,Lower East Side,40.72079,-73.98965,Private room,175,1,35,2019-06-22,3.19,1,19 +13424027,LOFT-LIKE FLOOR THRU BROWNSTONE LIGHT SPACIOUS,4991034,Jyllian,Brooklyn,Prospect Heights,40.67735,-73.96581,Entire home/apt,175,7,5,2018-08-28,0.14,1,16 +13424903,Share a room Lower East Side,65942440,Tk,Manhattan,Lower East Side,40.71754,-73.9868,Shared room,50,1,0,,,1,0 +13424996,Breezy Bushwick Apartment with Backyard,4392549,Eleanor,Brooklyn,Bushwick,40.69507,-73.92081,Entire home/apt,99,2,4,2016-07-25,0.11,1,0 +13425518,Beautiful studio apt. near Hudson River Park!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76066,-73.99922,Entire home/apt,199,30,0,,,121,365 +13426171,Stunning New High-Rise Apartment - 1 Bedroom NYC,30283594,Kara,Manhattan,Hell's Kitchen,40.76207,-73.99937,Entire home/apt,239,30,0,,,121,365 +13426681,-Luxury NYC 1 Bedroom nearby Theater District!,30283594,Kara,Manhattan,Hell's Kitchen,40.76216,-73.99775,Entire home/apt,235,30,1,2017-08-02,0.04,121,365 +13427044,Ideal Bushwick Rental,25549474,Ruby,Brooklyn,Bushwick,40.70298,-73.92203,Private room,45,5,1,2016-07-08,0.03,1,0 +13427412,Stunning 1 Bedroom Apartment. 8 minutes to Ferry,3156684,Michael And Sandra,Staten Island,Tompkinsville,40.63163,-74.09297,Entire home/apt,85,2,110,2019-06-27,2.97,1,248 +13427591,Stunning 1 Bedroom Apt with Indoor Pool,30283594,Kara,Manhattan,Hell's Kitchen,40.76112,-73.99893,Entire home/apt,239,30,0,,,121,365 +13427658,Comfortable room 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77679,-73.91366,Private room,38,1,14,2019-06-30,1.46,3,24 +13427702,Cozy Room for 2 in Astoria!,11791633,Neel,Queens,Ditmars Steinway,40.77437,-73.91854,Private room,65,1,1,2016-07-13,0.03,1,0 +13427968,Hamilton Heights Haven with Private Garden,78258,Maija,Manhattan,Harlem,40.82291,-73.94958,Entire home/apt,79,7,42,2018-08-05,1.14,1,0 +13428478,Casa De Grattan,76566529,Brian,Brooklyn,Williamsburg,40.70624,-73.92861,Shared room,60,2,0,,,1,0 +13429535,Sunny Williamsburg Haven,3078690,Zack,Brooklyn,Williamsburg,40.71256,-73.94785,Private room,80,5,0,,,1,0 +13429562,**Stunning 1 bedroom Apt. + Amazing amenities,30283594,Kara,Manhattan,Hell's Kitchen,40.76258,-73.99771,Entire home/apt,239,30,1,2018-07-14,0.08,121,179 +13429591,"West 48th Street, Lux 1bd Apt near Rockefeller Ctr",22541573,Ken,Manhattan,Midtown,40.75695,-73.97988,Entire home/apt,279,30,0,,,87,332 +13429684,Private room in Bushwick,76578903,Mason,Brooklyn,Bushwick,40.69941,-73.92833,Private room,35,10,13,2018-04-13,0.37,1,0 +13430012,Gorgeous 1 Bedroom NYC + W/D in the Unit,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-73.99822,Entire home/apt,239,30,1,2017-08-08,0.04,121,365 +13430210,Prime Gramercy Apartment w Balcony,4027856,Omar,Manhattan,Flatiron District,40.74148,-73.98493,Entire home/apt,200,1,0,,,1,0 +13430458,Fun & Funky 2nd floor of loft.,75275467,Yaron,Bronx,Port Morris,40.80842,-73.93136,Private room,33,2,63,2019-06-10,1.75,4,145 +13430483,Lux 1-BR Apt near Port Authority/Times Square,30283594,Kara,Manhattan,Hell's Kitchen,40.76196,-73.99803,Entire home/apt,239,30,1,2017-06-20,0.04,121,365 +13430794,Lux 1-BR Apt In Midtown West-prime location!,30283594,Kara,Manhattan,Hell's Kitchen,40.76112,-73.99887,Entire home/apt,239,30,2,2017-07-04,0.07,121,365 +13431257,Luxurious 1BR Apt in Midtown West,30283594,Kara,Manhattan,Hell's Kitchen,40.76103,-73.99745,Entire home/apt,239,30,0,,,121,365 +13431552,Lincoln Center Area 1 Bed,3191545,Kyle,Manhattan,Hell's Kitchen,40.75833,-73.99019,Entire home/apt,229,30,2,2017-06-18,0.08,23,0 +13431664,Private Condo Room w/ Patio,74727409,Agustina,Bronx,Longwood,40.81937,-73.90978,Private room,45,2,68,2019-05-30,1.83,1,156 +13431793,"Luxurious 1BR Apt near Times Square, river views!",30283594,Kara,Manhattan,Hell's Kitchen,40.76213,-73.99972,Entire home/apt,239,30,1,2016-11-01,0.03,121,365 +13431961,Amazing Brownstone Studio @ Central Park West,76601346,Alexandrinho,Manhattan,Upper West Side,40.7847,-73.97155,Entire home/apt,179,2,98,2019-06-21,2.71,1,151 +13432015,"Stunning 1 Bedroom Apt. in NYC, w/d in the unit!",30283594,Kara,Manhattan,Hell's Kitchen,40.76201,-73.99755,Entire home/apt,239,30,0,,,121,365 +13432348,River Views! - Lux 1BR Apt near Midtown,30283594,Kara,Manhattan,Hell's Kitchen,40.76108,-73.99812,Entire home/apt,239,30,1,2018-01-13,0.06,121,357 +13432434,Entire floor in a brownstone.,9617573,Antonia,Manhattan,East Harlem,40.79751,-73.93271,Entire home/apt,107,3,0,,,1,0 +13432549,Private Bedroom&Bathroom in large Chinatown duplex,10870019,Courtney-Brooke,Manhattan,Chinatown,40.71377,-73.99464,Private room,125,1,0,,,1,0 +13432828,Elegant Large One Bed / 1.5 Bathroom- UWS,3469064,Amy,Manhattan,Upper West Side,40.7801,-73.97917,Entire home/apt,230,7,0,,,1,0 +13433027,Holistic Health Stay New York,69632344,Sister Shai,Queens,South Ozone Park,40.67866,-73.8068,Entire home/apt,100,5,44,2019-05-19,1.22,1,350 +13433684,"Cozy room w/AC, 2 blocks from L train",64440476,Matt,Brooklyn,Williamsburg,40.70353,-73.9344,Private room,55,2,7,2016-09-05,0.19,1,0 +13433870,Bright Bedroom with views of city,31162653,Laszlo,Brooklyn,Bushwick,40.7025,-73.92935,Private room,95,2,3,2018-01-03,0.09,1,0 +13434493,Private Trendy Bushwick Loft,74903132,Cassidy,Brooklyn,Bushwick,40.69375,-73.92123,Private room,41,3,2,2016-07-27,0.05,1,0 +13434959,1 Bd 10 mins to Manhattan Steps to Prospect Park,2559697,Steven,Brooklyn,Prospect-Lefferts Gardens,40.66058,-73.96132,Entire home/apt,40,2,25,2019-06-16,0.70,1,223 +13435285,Times Square Manhattan One Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75892,-73.99146,Entire home/apt,150,30,2,2017-05-21,0.06,23,213 +13435688,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76369,-73.98476,Entire home/apt,150,30,1,2019-05-31,0.77,23,335 +13436088,• Eye Catching Views | Luxurious 1 Bedroom •,3191545,Kyle,Manhattan,Midtown,40.76569,-73.98281,Entire home/apt,219,30,8,2017-06-30,0.30,23,362 +13436132,Bright studio in the heart of the east village,4996789,Christine,Manhattan,East Village,40.72741,-73.97529,Entire home/apt,142,1,146,2019-06-25,3.92,1,78 +13436258,One Bedroom Apartment in TownHouse,5944946,Nicole,Bronx,Concourse,40.81949,-73.92913,Entire home/apt,99,1,103,2019-06-18,2.87,1,264 +13436489,Small and Cozy Bedroom (near N/R train),28370925,En & Lora,Brooklyn,Sunset Park,40.63974,-74.01944,Private room,41,5,81,2018-07-22,2.18,4,0 +13437219,"Cozy, Private West Harlem Hamilton Heights Bedroom",3143680,Andrew,Manhattan,Harlem,40.8259,-73.94962,Private room,48,7,2,2017-03-24,0.06,1,0 +13440481,Magnificent Apartment Near the Central Park 4BDR!,17385374,Dennis J.,Manhattan,Upper East Side,40.76642,-73.97107,Private room,301,3,0,,,1,83 +13441680,Private Bedroom in a 3BR Apartment,7141050,Mayra,Manhattan,Inwood,40.86541,-73.92935,Private room,52,2,10,2018-06-15,0.28,2,0 +13442932,Modern and Clean 1 bed w/small balcony,29834506,Paul,Brooklyn,Greenpoint,40.7323,-73.95261,Entire home/apt,150,2,3,2017-10-08,0.12,1,0 +13443640,Deluxe 3-BR + 3.5Bath with sweeping city views!!,30283594,Kara,Manhattan,Midtown,40.75143,-73.96973,Entire home/apt,1100,120,0,,,121,184 +13443722,Cosy 1 bdr in Midtown West,76739836,Alisa,Manhattan,Hell's Kitchen,40.76425,-73.98654,Private room,160,1,10,2017-04-16,0.27,1,0 +13443794,"Convenient, cozy, and cheap room in Bushwick",60962117,Sayre,Brooklyn,Bushwick,40.68846,-73.90847,Private room,45,5,2,2016-06-24,0.05,1,0 +13444490,"Bright, spacious one bedroom in the East Village",1671824,Zoe,Manhattan,East Village,40.72471,-73.98891,Entire home/apt,106,3,0,,,1,0 +13444818,2 beds PH balcony & rooftop close to Manhattan,38915391,Clair&Charles,Queens,Elmhurst,40.73888,-73.87299,Entire home/apt,178,30,83,2019-06-30,2.22,1,342 +13444884,Manhattan Bedroom | Skyline Views,3191545,Kyle,Manhattan,Kips Bay,40.74448,-73.97776,Entire home/apt,176,30,4,2018-04-30,0.15,23,0 +13444902,Private cosy room Harlem,47073683,Cam,Manhattan,Harlem,40.81591,-73.93995,Private room,70,3,7,2016-10-10,0.19,1,0 +13445020,Quintessential Williamsburg Loft,36123030,Lucy,Brooklyn,Williamsburg,40.71303,-73.96574,Entire home/apt,190,2,9,2017-08-12,0.25,1,2 +13445027,Large sunny Bedroom in Brooklyn Loft,66786569,Raphaëlle,Brooklyn,Williamsburg,40.70475,-73.93663,Private room,62,2,5,2017-12-30,0.13,1,0 +13445935,Greenpoint Oasis,30678610,Joel,Brooklyn,Greenpoint,40.72673,-73.95406,Entire home/apt,175,2,1,2016-07-25,0.03,1,0 +13446050,"Upper West Side, Manhattan, NY",13752584,Raoul,Manhattan,Upper West Side,40.80289,-73.96741,Entire home/apt,125,6,2,2016-08-26,0.05,1,0 +13446124,Cozy front room in a 2 bedroom family apt near CU,18419593,Anna & Keith,Manhattan,Morningside Heights,40.81353,-73.95878,Private room,76,2,126,2019-06-14,3.40,1,12 +13446580,Casually chic 2+bedroom townhouse,50477855,Nancy And David,Brooklyn,South Slope,40.66378,-73.98621,Entire home/apt,225,5,2,2016-10-10,0.05,1,0 +13446921,Sunny Room with Back Yard in Brooklyn,70181422,Chris And Zaneta,Brooklyn,Windsor Terrace,40.65211,-73.97872,Private room,65,1,13,2016-12-11,0.35,4,0 +13449748,Rent my Artist Studio,13567212,Justin,Brooklyn,Bushwick,40.69161,-73.90563,Private room,70,3,5,2018-01-02,0.14,1,0 +13449844,Upper West Side Apt. w/ Roof Deck,76809352,Kent,Manhattan,Upper West Side,40.78305,-73.97757,Entire home/apt,240,30,4,2017-01-02,0.11,1,0 +13451379,Large & sunny private bedroom in a townhouse.,24459217,Lee,Queens,Long Island City,40.74275,-73.95513,Private room,70,3,12,2018-09-29,0.42,1,77 +13451599,"Bright, Spacious 1 Bedroom in the East Village",14055452,Jessica,Manhattan,East Village,40.72118,-73.98066,Entire home/apt,130,2,1,2016-08-11,0.03,1,0 +13451720,One bedroom near Columbia University,44269461,Xier,Manhattan,Upper West Side,40.79936,-73.96105,Private room,50,1,1,2016-06-10,0.03,1,0 +13451786,Large comfy bright bedroom near sub,64748382,Marta,Brooklyn,Bedford-Stuyvesant,40.69091,-73.95435,Private room,70,3,61,2019-06-29,1.63,1,190 +13451943,Private Room in Bushwick Parlor Apartment,12524253,Kelly,Brooklyn,Williamsburg,40.70667,-73.92668,Private room,51,14,0,,,1,0 +13452384,Newly renovated private master & bathroom,2489602,Julian,Manhattan,East Village,40.72828,-73.97972,Private room,149,2,0,,,1,0 +13452474,Charming Studio-Columbus Circle/Hell’s Kitchen,16809858,Arman,Manhattan,Hell's Kitchen,40.76733,-73.98607,Entire home/apt,169,10,6,2018-10-14,0.17,1,280 +13452799,Small and cozy room in Williamsburg 2-Bedroom apt.,76849055,Mikalena,Brooklyn,Williamsburg,40.70885,-73.95349,Private room,50,1,3,2016-07-20,0.08,1,0 +13453023,"King Bed, Super Host, Near Central/Riverside Parks",17848380,Yi Qun,Manhattan,Upper West Side,40.79875,-73.97128,Private room,120,1,19,2019-05-10,0.57,3,360 +13453271,"NEAR CENTRAL PARK, TIMES SQUARE, COLUMBIA UNIV.",17848380,Yi Qun,Manhattan,Upper West Side,40.79669,-73.97126,Private room,120,1,12,2019-05-19,0.35,3,338 +13459473,Spacious room in Midtown East Manhattan,956383,Andrew,Manhattan,Midtown,40.75896,-73.96439,Private room,105,7,0,,,1,0 +13459691,Private Bedroom in Williamsburg!,8569221,Andi,Brooklyn,Williamsburg,40.71696,-73.95727,Private room,90,5,87,2019-03-24,2.43,2,305 +13459841,Sunny Williamsburg w Balcony - Long Term Rental,4841046,Jesse,Brooklyn,Williamsburg,40.71216,-73.95853,Entire home/apt,105,15,30,2019-05-26,0.84,1,85 +13460498,Beautiful Brownstone Parlor Floor Apartment,76931387,Kris,Brooklyn,Bedford-Stuyvesant,40.68813,-73.95479,Entire home/apt,130,2,16,2019-01-01,0.59,1,0 +13460534,Amazing Luxury 1 Bedroom Apartment,3191545,Kyle,Manhattan,Kips Bay,40.74375,-73.97774,Entire home/apt,191,30,0,,,23,362 +13461123,Cozy Brooklyn apartment in Brownstone,406987,Lau,Brooklyn,Bedford-Stuyvesant,40.69261,-73.95069,Entire home/apt,100,4,3,2016-09-23,0.08,1,0 +13461289,Luxurious Studio at MidTown Manhattan,22462003,Tony,Manhattan,Midtown,40.74754,-73.98741,Entire home/apt,288,5,2,2017-07-21,0.06,1,0 +13461412,❤ of Midtown | Rooftop Terraces +,3191545,Kyle,Manhattan,Hell's Kitchen,40.76245,-73.98767,Entire home/apt,150,30,1,2017-06-02,0.04,23,332 +13461718,"Big, Nicely Decorated Loft: Great location & light",76940389,Matthew,Brooklyn,Williamsburg,40.71855,-73.96359,Private room,85,3,1,2016-06-26,0.03,1,0 +13463768,"Spacious, Affordable 1BR Apartment in Brooklyn",23121273,Samantha,Brooklyn,East Flatbush,40.64286,-73.94839,Entire home/apt,75,5,8,2019-04-10,0.22,1,0 +13464667,Private Room in Midtown Manhattan,18655157,Phuong,Manhattan,Midtown,40.74562,-73.98538,Private room,79,99,0,,,3,364 +13465546,Comfortable 2 BR in East Village/Cooper Square,9904775,Cooper,Manhattan,East Village,40.72627,-73.99145,Entire home/apt,200,3,27,2019-04-23,0.76,1,0 +13466084,welcome to my house,76998256,Laye,Manhattan,Harlem,40.82289,-73.9511,Entire home/apt,78,3,13,2016-08-15,0.35,1,0 +13466168,Like living in an art gallery.,12176919,Panya,Manhattan,Financial District,40.70711,-74.01437,Entire home/apt,234,2,4,2016-12-29,0.11,1,0 +13466302,Very central loft-like apartment on UWS,26297742,Valeria,Manhattan,Upper West Side,40.77981,-73.98499,Entire home/apt,325,5,7,2019-06-23,0.20,1,118 +13466561,Sunny and light bedroom in Downtown Manhattan,6980995,Dominik,Manhattan,Two Bridges,40.71159,-73.99884,Private room,119,1,3,2016-11-06,0.09,5,0 +13466663,Cozy bedroom in downtown Manhattan,6980995,Dominik,Manhattan,Civic Center,40.71259,-73.99897,Private room,95,1,10,2017-06-07,0.27,5,0 +13466842,"3bd apt w/yard in Astoria, 10 mins from Manhattan.",77011788,Dayne,Queens,Long Island City,40.75903,-73.92943,Entire home/apt,255,2,111,2019-07-06,3.18,1,268 +13467270,Sunnyside Modern Apartment that sleeps 4 people.,76840954,Angelo,Queens,Sunnyside,40.73691,-73.92826,Entire home/apt,125,2,17,2019-04-28,0.47,1,56 +13467433,This is NYC-Amazing Bedroom at Financial District,31373840,Emma,Manhattan,Financial District,40.70706,-74.00442,Private room,99,2,3,2016-07-11,0.08,1,0 +13467511,Modern 1-Bedroom Duplex Apartment in New York City,1711182,Allon,Manhattan,East Village,40.72229,-73.98175,Entire home/apt,175,3,27,2019-05-20,0.75,1,0 +13468421,PERFECT PRIVATE ROOM NYC,31376201,William,Queens,Kew Gardens,40.70789,-73.83333,Private room,150,1,0,,,3,364 +13468830,Brooklyn palace,1661309,Richard,Brooklyn,Bushwick,40.69887,-73.93564,Entire home/apt,75,6,9,2019-06-14,1.14,1,53 +13473267,Sunny Room in Bushwick Apartment,26517955,Breiana,Brooklyn,Bushwick,40.70273,-73.92724,Private room,50,5,1,2016-06-28,0.03,1,0 +13474455,Blueberries & Cream - Cozy 1 Bedroom Apt. #2,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9457,Entire home/apt,99,2,100,2019-06-16,3.27,3,308 +13475688,private entrance mini apt! part of my home,84557,Nat,Brooklyn,Bedford-Stuyvesant,40.68988,-73.93136,Entire home/apt,85,5,42,2019-06-20,1.27,1,52 +13476185,"1-bedroom in Midtown West, close to everything",6041148,Stephen,Manhattan,Hell's Kitchen,40.76571,-73.99101,Entire home/apt,137,3,2,2016-06-17,0.05,1,0 +13476685,"HOTTEST LOCATION! Cozy, convenient and chic.",2091070,Anna,Manhattan,Chelsea,40.7403,-74.0029,Entire home/apt,165,3,14,2018-08-19,0.38,1,10 +13477118,Artistic Escape in Brooklyn,77135414,Brett,Brooklyn,Williamsburg,40.70742,-73.94316,Entire home/apt,92,2,11,2019-06-23,0.31,1,7 +13477234,Midtown Luxurious 1 bedroom apt.,49939937,Julie,Manhattan,Midtown,40.7531,-73.97158,Entire home/apt,101,4,1,2016-07-06,0.03,1,0 +13477342,"Historical Sugar Hill, West Harlem",25461543,David,Manhattan,Harlem,40.83079,-73.9432,Private room,95,2,14,2019-05-14,0.38,2,89 +13477359,Clean bright room in spacious apt!,35824534,Mary,Manhattan,Morningside Heights,40.80728,-73.96634,Private room,119,1,4,2016-09-25,0.11,1,0 +13478244,Art-filled bright spacious 1 bedrm W'burg + deck,14942276,Susan,Brooklyn,Williamsburg,40.71983,-73.95675,Entire home/apt,195,2,145,2019-06-25,4.03,2,230 +13479302,Sunny 1BR in East Village,35309931,Eugene,Manhattan,Gramercy,40.73277,-73.98448,Entire home/apt,170,4,9,2018-06-25,0.24,1,0 +13479511,Midtown Studio near Central Park,25168709,Lili,Manhattan,Upper East Side,40.76184,-73.9569,Entire home/apt,150,4,45,2018-11-08,1.27,1,6 +13479649,Spacious 1br apartment with amazing views!,58639009,Jerrel,Manhattan,Harlem,40.81134,-73.94044,Entire home/apt,157,1,11,2016-08-01,0.29,1,0 +13480090,Private Queen Bedroom in Brooklyn,77179176,David,Brooklyn,Gravesend,40.60054,-73.99416,Private room,69,1,0,,,1,0 +13480134,cosy room with all confort,51329030,Zakaria,Bronx,Longwood,40.82716,-73.89911,Private room,30,1,11,2016-11-18,0.30,1,0 +13480162,"Williamsburg 2 Bed/2 Bath, close Subway/Waterfront",77162743,Bryan,Brooklyn,Williamsburg,40.71147,-73.95896,Entire home/apt,250,2,6,2016-09-11,0.16,1,0 +13481935,"Crown Heights, Franklin Ave- Private/Cozy Room!",60059749,Amanda,Brooklyn,Crown Heights,40.6737,-73.95669,Private room,40,3,3,2017-05-31,0.11,2,0 +13485043,"Beautiful hip location, with a light of sunshine.",16631094,Noemi,Queens,Ridgewood,40.70971,-73.89741,Entire home/apt,80,28,1,2018-09-15,0.10,1,365 +13485786,Private room in Stylish Williamsburg APT,5929127,Ange,Brooklyn,Williamsburg,40.71273,-73.96478,Private room,150,3,0,,,1,0 +13486680,Large room in Sugar Hill,16685925,Douglas,Manhattan,Harlem,40.82882,-73.94148,Private room,49,7,1,2016-08-30,0.03,2,0 +13486730,Large private bedroom in West Soho/West Village,3714721,James,Manhattan,SoHo,40.72689,-74.0089,Private room,101,2,102,2019-07-01,2.97,2,116 +13487852,Charming Oldschool NYC Apartment,53316033,Raymond,Manhattan,East Harlem,40.79659,-73.93501,Private room,69,3,0,,,1,0 +13488308,Spacious & Cosy 1BR apt in Gramercy with balcony!,1252131,Gianni,Manhattan,Kips Bay,40.73955,-73.98243,Entire home/apt,199,30,36,2019-05-31,0.98,1,242 +13488659,Basement Sublet Space open from June 28th-July17th,77280363,Michael,Queens,Ridgewood,40.69807,-73.90614,Private room,40,21,0,,,1,0 +13489132,"Amazing flat, stunning views!!, perfect location",48201284,Antoine,Brooklyn,Williamsburg,40.71026,-73.96841,Entire home/apt,175,1,1,2016-07-08,0.03,1,0 +13489234,Cozy 1BR in Midtown Manhattan,1455109,Nina,Manhattan,Midtown,40.75823,-73.96453,Entire home/apt,175,1,2,2016-06-23,0.05,1,0 +13489789,Roses Room - 10 mins to Williamsburg/LES/City,1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69285,-73.92849,Private room,50,1,42,2019-06-15,2.10,3,102 +13490097,Excellent Space for NYC Visit.,9235481,Reynaldo,Manhattan,Washington Heights,40.85413,-73.93172,Private room,45,3,1,2016-07-04,0.03,2,0 +13490175,AMAZING VIEW ENTIRE apt 10mins to midtown,77300379,Maria,Queens,Sunnyside,40.74472,-73.91788,Entire home/apt,110,1,37,2019-06-15,1.00,1,74 +13490372,Sunny one-bedroom with terrace in Park Slope,39177865,Alicia,Brooklyn,South Slope,40.6612,-73.98568,Entire home/apt,70,70,3,2018-04-08,0.08,1,0 +13490397,Beautiful Brooklyn Brownstone in Park Slope.,76008109,Ivan And Emily,Brooklyn,South Slope,40.66186,-73.98109,Entire home/apt,129,5,1,2016-07-13,0.03,1,0 +13490410,Perfect 1BDRM -Lincoln Center,25410835,Kylie,Manhattan,Upper West Side,40.7728,-73.98737,Entire home/apt,139,4,8,2018-10-23,0.23,1,0 +13491040,Gorgeous Duplex Apartment with a Garden,5165518,Ksenia,Brooklyn,Bedford-Stuyvesant,40.691,-73.93032,Entire home/apt,135,3,2,2016-08-01,0.06,1,0 +13491064,Modern and cozy apartment in the Upper East Side,37384607,Pepa,Manhattan,Upper East Side,40.77363,-73.95154,Entire home/apt,90,1,3,2016-08-29,0.09,1,0 +13491503,"Airy, Private, Spacious + Accessible",77317167,Stacey Rae,Brooklyn,Flatbush,40.65253,-73.96404,Entire home/apt,125,2,52,2019-03-06,1.41,2,20 +13491951,QUIET OASIS in Prime Chelsea LRGE APT PRIVATE back,51137325,Ellen,Manhattan,Chelsea,40.74494,-74.00116,Entire home/apt,225,30,0,,,1,280 +13492036,"Beautiful 1 bedroom in Astoria,Queens",77325010,Petros,Queens,Ditmars Steinway,40.77231,-73.90793,Entire home/apt,75,4,1,2016-07-31,0.03,1,0 +13492353,Bright Private BR in a 2BR apt in Upper West Side,69706365,Bernardo,Manhattan,Upper West Side,40.79201,-73.97423,Private room,65,3,5,2017-11-26,0.14,2,0 +13492449,[TRUE 1br] Heart of the West Village,31489150,Kelly,Manhattan,West Village,40.7332,-74.0039,Entire home/apt,190,2,2,2016-09-17,0.05,1,0 +13493430,"Fully Furnished, sunny 2BR 1BA Summer sublet!",3341869,Erez,Brooklyn,Kensington,40.64328,-73.97506,Entire home/apt,85,7,1,2016-08-14,0.03,1,0 +13493546,"Grand private apt with deck, one block to subway",10395888,Anne,Brooklyn,East Flatbush,40.65005,-73.94776,Entire home/apt,119,1,24,2019-05-28,1.04,1,313 +13494051,Gorgeous Master Bedroom near City College,2571641,Erika,Manhattan,Harlem,40.81733,-73.95384,Private room,48,2,0,,,3,0 +13494095,STUDIO LowerManhattan this week!,379827,Natalia,Manhattan,Financial District,40.70713,-74.00793,Entire home/apt,196,3,14,2019-05-06,0.52,1,29 +13494147,Beautiful Quiet Bedroom near City College,2571641,Erika,Manhattan,Harlem,40.81863,-73.95295,Private room,80,2,0,,,3,0 +13494532,"*Cozy apt Manhattan,Near Central Park !*",77355562,Anna,Manhattan,Upper East Side,40.77081,-73.95216,Private room,90,1,65,2019-06-30,1.76,1,338 +13494825,Large and Lovely with Lots of Light,1777483,Blake,Brooklyn,Bedford-Stuyvesant,40.68881,-73.94991,Private room,125,3,1,2016-10-09,0.03,1,0 +13494895,Big room in East Harlem apartment,50945119,Shannon,Manhattan,East Harlem,40.7977,-73.93736,Private room,65,28,1,2016-06-27,0.03,1,0 +13494898,Modern 1BR apartment amazing location in Chelsea,77365697,Adam,Manhattan,Chelsea,40.74032,-74.00265,Entire home/apt,110,4,6,2017-09-15,0.16,1,0 +13495012,World Trade Center Delight,9007512,Illy,Manhattan,Financial District,40.70566,-74.00865,Entire home/apt,100,20,3,2019-05-04,0.09,1,340 +13495082,private one bedroom apartment in williamsburg,77369325,Morgan,Brooklyn,Williamsburg,40.70844,-73.96176,Entire home/apt,200,2,0,,,1,0 +13495361,Charming 1BR in the heart of Greenwich Village,11414858,Alex,Manhattan,Greenwich Village,40.73006,-73.99981,Entire home/apt,200,4,0,,,1,0 +13495558,Bright apartment in Soho with roof access,7539044,Vinciane,Manhattan,SoHo,40.72795,-74.00454,Entire home/apt,360,2,22,2019-05-25,0.66,2,333 +13495691,Fort Greene bedroom w/private bathroom,26209213,Kaitlyn,Brooklyn,Fort Greene,40.69289,-73.98077,Private room,65,10,0,,,1,0 +13495754,"Peaceful, Light-filled Room - Greenpoint, BK",1439261,Michele,Brooklyn,Greenpoint,40.73265,-73.95393,Private room,65,7,38,2019-01-23,1.08,1,10 +13496129,LARGE bedroom in sun-lit Pre-War in Crown Heights,18066933,Emily,Brooklyn,Crown Heights,40.67555,-73.94493,Private room,65,2,21,2016-11-27,0.58,2,0 +13496176,Spacious duplex w/ backyard in Stuyvesant Heights.,7697189,Daniel,Brooklyn,Bedford-Stuyvesant,40.68015,-73.9355,Entire home/apt,160,2,3,2016-10-24,0.08,1,0 +13496318,Amazing Park Slope Duplex plus Finished Basement.,16288928,Julie,Brooklyn,Park Slope,40.67885,-73.97929,Entire home/apt,450,7,14,2019-06-08,0.64,2,360 +13496448,Sunny apartment in Lower East Side (LES),21604714,Roxy,Manhattan,Lower East Side,40.71934,-73.98172,Private room,75,2,3,2018-05-20,0.08,1,0 +13497305,"Stunning, Prime, Beautiful NYC",2861768,Justin,Manhattan,Harlem,40.81266,-73.95152,Private room,69,10,20,2018-05-29,0.54,3,0 +13497362,Modern High Rise Studio w/ Amazing Views (Sublet),75310656,C.S.,Brooklyn,Fort Greene,40.68921,-73.98038,Entire home/apt,203,7,4,2017-04-27,0.13,1,0 +13497388,Luxury 1 Bedroom in Midtown/Time Square with View,6736799,Sue,Manhattan,Theater District,40.75948,-73.98631,Private room,169,5,19,2018-12-07,0.51,1,88 +13498392,"Spacious, Bright, Private NYC",2861768,Justin,Manhattan,Harlem,40.81325,-73.95323,Private room,79,6,31,2019-05-23,0.84,3,18 +13502841,Huge lovely studio (size: one bedroom) in Midtown,3978669,DrAnita,Manhattan,Hell's Kitchen,40.75704,-73.99564,Entire home/apt,230,4,12,2018-01-02,0.33,1,41 +13503251,Cozy room near la Guardia airport.,9055702,Sarah,Queens,Woodside,40.74428,-73.90898,Private room,65,1,18,2018-05-12,1.11,1,278 +13503536,"Large, Private Room in Bushwick",77076962,Meghan,Brooklyn,Bushwick,40.70286,-73.92271,Private room,50,2,6,2016-08-09,0.16,1,0 +13503970,"Large, sunny, airy, spacious bdrm.",6776157,Giovanna,Brooklyn,Prospect Heights,40.67847,-73.96662,Private room,100,1,11,2019-05-27,0.30,2,365 +13505542,Cozy Room 1 Block from the Train,2417692,Verena,Queens,Astoria,40.75946,-73.91173,Private room,70,10,3,2019-06-14,0.40,2,250 +13506168,Spacious Beautiful 1 bdrm in Gramercy,25912717,Will,Manhattan,Gramercy,40.73813,-73.98213,Entire home/apt,175,2,1,2016-06-26,0.03,1,0 +13506967,Sunny 1-Bedroom in Cobble Hill with Outside Space,4337162,Neil,Brooklyn,Cobble Hill,40.68688,-73.999,Private room,142,3,8,2017-12-31,0.22,1,10 +13507377,"Sunny Apartment in Park Slope, Brooklyn",32706119,Shanee,Brooklyn,South Slope,40.66769,-73.98886,Entire home/apt,190,3,39,2019-06-25,1.07,2,226 +13507677,NYC 2500 sq ft home near yankee stadium/subway,29510402,Douglas,Bronx,Longwood,40.82412,-73.90266,Entire home/apt,350,7,0,,,3,14 +13508285,"Sunny, Quiet & Newly Renovated Upper East Side Apt",5390302,John,Manhattan,Upper East Side,40.76988,-73.95125,Entire home/apt,140,5,0,,,1,0 +13508567,"spacious, clean place in quiet building",75398380,Maris,Bronx,University Heights,40.86048,-73.91181,Entire home/apt,120,1,0,,,1,0 +13508766,VERY Spacious 3BR West Village Apartment,77523610,Charles,Manhattan,West Village,40.73458,-74.0028,Private room,372,2,0,,,1,0 +13509110,Large private ensuite room beside Brooklyn Bridge,27275952,Andrew,Brooklyn,Downtown Brooklyn,40.69739,-73.98512,Private room,61,2,8,2018-01-02,0.21,2,0 +13509320,Cosy private bedroom and bathroom in a 3 bedroom,13482882,Kanak,Queens,Ridgewood,40.70756,-73.914,Private room,65,5,0,,,1,0 +13510154,Cozy Private Room 2 Blocks from Central Park,77514775,Kyle,Manhattan,Harlem,40.8003,-73.95223,Private room,80,2,15,2016-11-08,0.41,1,0 +13510347,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76371,-73.96153,Entire home/apt,225,30,1,2016-11-12,0.03,87,341 +13511155,Gorgeous Spacious Room in Clinton Hill,718492,Asha,Brooklyn,Clinton Hill,40.69288,-73.96592,Private room,105,2,0,,,1,0 +13511266,"""FALL IN LOVE WITH NYC & MY HOME""",76192815,Sam,Manhattan,Lower East Side,40.71932,-73.99396,Entire home/apt,100,32,3,2018-05-10,0.11,5,243 +13511347,Sunny One bd apt in Brooklyn!,13616834,Carlos,Brooklyn,Borough Park,40.64459,-73.99825,Entire home/apt,50,15,1,2016-07-24,0.03,1,0 +13511359,visit nyc and live like a local,25750650,Bernadette,Manhattan,East Village,40.72152,-73.9838,Private room,109,4,25,2019-05-31,0.91,1,140 +13511798,Spacious Bedroom in The Heights,7385139,Nicole,Manhattan,Washington Heights,40.83702,-73.94199,Private room,75,1,11,2017-01-02,0.30,1,0 +13512636,"Sunny, Spacious Lower Harlem Condo",1402455,Damian,Manhattan,East Harlem,40.80153,-73.94435,Private room,100,2,0,,,1,0 +13513353,Bright Bedroom in Crown Heights,1490202,Jessica,Brooklyn,Crown Heights,40.67664,-73.95814,Private room,60,1,15,2016-09-17,0.41,1,0 +13513592,Cozy Private Room w/ Queen-sized Bed near Columbia,19540198,Wanyi,Manhattan,Morningside Heights,40.80346,-73.96488,Private room,50,7,0,,,1,0 +13513738,"Large, bright, 2bdr Manhattan apt",74330820,Rachel,Manhattan,East Harlem,40.81454,-73.93616,Entire home/apt,130,4,6,2018-07-30,0.16,2,0 +13514115,Bushwick Artist Loft - Zen Tree House Room,3886532,Tom & Lily,Brooklyn,Bushwick,40.70859,-73.9221,Private room,65,2,101,2019-06-22,2.83,3,300 +13514387,Spacious Private BR in Chelsea,35590013,Ryan,Manhattan,Chelsea,40.74675,-73.99555,Private room,90,2,6,2016-10-16,0.16,1,0 +13514680,Quiet 6th floor private room with rooftop views,3401026,Daniel,Brooklyn,Kensington,40.64455,-73.97826,Private room,50,14,1,2016-08-06,0.03,1,0 +13514745,Cozy BR in large quiet EV apt,24222,Lori,Manhattan,East Village,40.72628,-73.97952,Private room,67,4,11,2019-07-02,0.30,2,4 +13514940,Private sunny South Park Slope 1-bedroom loft,77603717,Howard,Brooklyn,Sunset Park,40.66197,-73.98907,Entire home/apt,100,1,14,2016-07-29,0.38,1,0 +13515087,"Cute&Cozy Apartment, 20 min to Grand Central",10743221,Masha,Queens,Astoria,40.77164,-73.92028,Entire home/apt,98,4,0,,,1,0 +13515865,"Cozy room in Greenpoint, Brooklyn",1797635,Daniel,Brooklyn,Greenpoint,40.727,-73.94249,Private room,50,1,0,,,1,0 +13519630,Luminous 2 bedroom apartment in Bushwick,1658443,Nicholas,Queens,Ridgewood,40.7011,-73.90964,Entire home/apt,100,5,1,2016-06-21,0.03,1,0 +13520598,"Beautiful 2 BR, 2 bath duplex w/ private patio",12267269,Ashley,Brooklyn,Prospect Heights,40.67671,-73.96466,Entire home/apt,300,3,17,2018-01-02,0.47,1,11 +13522613,Verita Room w/PrivateBathroom Bklyn,58631330,Veraalba,Brooklyn,Prospect-Lefferts Gardens,40.65862,-73.95808,Private room,75,2,0,,,1,0 +13522873,Lux 1BR On Manhattan's West Side,30283594,Kara,Manhattan,Hell's Kitchen,40.76111,-73.99818,Entire home/apt,219,30,0,,,121,365 +13522948,"West 74th Street, Svcd Studio Apartment",22541573,Ken,Manhattan,Upper West Side,40.77936,-73.97874,Entire home/apt,167,30,1,2017-07-19,0.04,87,342 +13523692,RARE NYC LOFT in Perfect Location,16836897,Hudson,Manhattan,Lower East Side,40.71827,-73.98983,Entire home/apt,180,4,13,2017-10-23,0.35,1,0 +13525308,Spacious Brooklyn Apt near F/G train,50995154,Bev,Brooklyn,Kensington,40.64277,-73.9744,Entire home/apt,95,2,11,2019-04-15,0.30,1,0 +13525592,Columbus Circle Penthouse,3329894,Evan,Manhattan,Upper West Side,40.77326,-73.98888,Entire home/apt,250,1,0,,,1,0 +13525760,420 friendly Beautiful rm with plenty of sunlight,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68285,-73.91484,Private room,85,14,32,2019-01-02,0.92,4,115 +13526348,Private Red Apple Brownstone Suite - Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81635,-73.94467,Entire home/apt,115,4,119,2019-06-20,3.21,4,45 +13526398,Modern 1 Bedroom 4FL w/Marble Bthr,45595980,Tny,Manhattan,Midtown,40.76071,-73.96469,Entire home/apt,150,30,8,2019-03-12,0.36,12,267 +13526483,Simple and Beautiful Apartment in Flatbush,331223,Stephen,Brooklyn,Flatbush,40.64684,-73.96068,Entire home/apt,80,5,3,2018-07-27,0.08,1,0 +13526638,West Chelsea 1 bedroom 2 bathroom outdoor space.,76182346,Alison,Manhattan,Chelsea,40.74584,-74.00279,Entire home/apt,225,14,0,,,1,0 +13526990,Historic Brooklyn Brownstone,45691473,Cheryl,Brooklyn,South Slope,40.66446,-73.97987,Entire home/apt,400,4,0,,,1,0 +13527740,Stylish Williamsburg 2 bed with private roofdeck,2548974,Pippa,Brooklyn,Williamsburg,40.7186,-73.95427,Entire home/apt,325,5,2,2018-01-01,0.07,1,0 +13528101,Perfect NYC neighborhood! 15 min. to Central Park!,66981456,Iris,Manhattan,Upper East Side,40.77512,-73.95254,Private room,99,6,35,2019-06-22,1.06,1,59 +13528649,Terrific Master Bedroom/Bath in Great UWS Location,6445320,Judah,Manhattan,Upper West Side,40.79415,-73.97323,Private room,90,5,3,2019-06-13,0.08,1,66 +13529037,Private Green Apple Brownstone Studio Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81589,-73.94648,Entire home/apt,110,4,125,2019-06-20,3.37,4,44 +13529498,Awesome Room in the Heart of Bushwick!,23826651,Lorenzo,Brooklyn,Bushwick,40.70364,-73.92769,Private room,50,7,0,,,1,0 +13529607,"East 40th Street, Lux Serviced Studio Apt",22541573,Ken,Manhattan,Midtown,40.74992,-73.97223,Entire home/apt,189,30,0,,,87,188 +13529652,"Enjoy whole apartment, safe, 25 min ferry to NYC",70537782,Sen & Ti,Staten Island,Tompkinsville,40.63598,-74.07943,Entire home/apt,105,2,132,2019-06-30,3.55,1,318 +13529753,Comfortable Room in large 3 BED Apt,58104904,Michael,Brooklyn,Bushwick,40.70146,-73.91763,Private room,55,7,0,,,1,0 +13530036,Family home with private garden,2507277,Mark,Brooklyn,Fort Greene,40.68712,-73.97114,Entire home/apt,180,10,0,,,1,0 +13530166,Convenient place rest head,547029,Sheena,Bronx,Concourse,40.82162,-73.92698,Private room,50,2,0,,,1,0 +13530588,Sunny Cozy Room Located In Prime East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63292,-73.94569,Private room,80,2,7,2018-01-10,0.21,8,189 +13530958,Basically Your Own Apartment: Cobble Hill Gem,3302537,Marielle,Brooklyn,Cobble Hill,40.68796,-73.99229,Entire home/apt,120,1,2,2016-07-29,0.05,1,0 +13531132,Event Space | Backyard | Pool,77778146,Andre,Brooklyn,East Flatbush,40.63337,-73.94578,Private room,525,1,36,2018-09-29,0.99,8,189 +13531199,Classic New York Railroad Apartment,14524071,Brian,Manhattan,Upper West Side,40.78853,-73.9751,Entire home/apt,150,4,5,2019-05-12,0.23,1,157 +13531244,East Village 1BR w/ private deck,9327286,Alexander,Manhattan,East Village,40.73004,-73.98225,Entire home/apt,150,2,0,,,1,0 +13531852,Spacious Comfortable Room Located In East Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63345,-73.94536,Private room,90,1,4,2018-05-09,0.11,8,189 +13532128,Colorful 1 bedroom Brooklyn Apartment,3239574,Miraya,Brooklyn,Bedford-Stuyvesant,40.68501,-73.95904,Entire home/apt,130,2,6,2016-12-11,0.18,1,0 +13532253,Crown Heights oasis with private patio,2972691,Llerone,Brooklyn,Crown Heights,40.67275,-73.95169,Entire home/apt,155,3,19,2018-05-18,0.53,1,0 +13532333,1 Bedroom in 3BR East Village NYC Apt,32707981,Ben,Manhattan,East Village,40.72424,-73.9906,Private room,90,2,8,2017-05-21,0.22,4,0 +13532366,Chill Private Room in Extremely Convenient Place,9540269,Josh,Manhattan,Upper West Side,40.76986,-73.98673,Private room,90,1,1,2016-08-09,0.03,1,0 +13532633,Cozy Couch in Wburg,8255157,Chris,Brooklyn,Williamsburg,40.71182,-73.95692,Shared room,130,1,0,,,1,0 +13532647,2 Bedroom Apartment in Prime Midtown West,26923140,Allan,Manhattan,Hell's Kitchen,40.7605,-73.99455,Entire home/apt,199,3,110,2019-06-20,3.02,1,246 +13532669,뉴욕의 꿈꾸는 집 (for women),77809736,Seohee,Manhattan,Morningside Heights,40.81005,-73.9599,Shared room,70,3,1,2017-03-19,0.04,2,0 +13532718,Small Private Room in quiet Manhattan Apt,7917224,Elizabeth,Manhattan,Harlem,40.82588,-73.9388,Private room,36,4,2,2016-08-29,0.06,1,0 +13532767,Sunny LES Apt W/ Luxury Bed A/C Views WIFI & More,77811516,Joel,Manhattan,Lower East Side,40.71429,-73.98755,Private room,59,2,14,2017-07-28,0.38,1,0 +13532789,Large 1BR Wood Floors/Exposed Brick,77812281,Bridget,Manhattan,East Village,40.72746,-73.97611,Entire home/apt,185,2,32,2019-07-03,0.92,1,26 +13532901,1 Bedroom Apartment Close To Subway,4518002,Arthur,Brooklyn,Flatbush,40.63736,-73.95669,Entire home/apt,75,30,46,2018-11-06,1.25,1,89 +13533165,Gem in the heart of South Harlem,285637,Joy,Manhattan,Harlem,40.80474,-73.95527,Entire home/apt,150,2,0,,,1,0 +13533366,Large Room with Private Entrance Easy commute,1535912,Sijia,Brooklyn,Bushwick,40.69849,-73.923,Private room,75,2,170,2019-07-01,4.58,1,37 +13536155,"1 bedroom w/ Queen bed, 5 minutes from Manhattan.",36815239,Henry,Queens,Long Island City,40.75293,-73.93757,Private room,74,1,210,2019-06-27,5.66,1,33 +13539571,Charming bedroom in E. Williamsburg,12377856,Bridget,Brooklyn,Williamsburg,40.70705,-73.94326,Private room,80,2,0,,,1,0 +13540233,Cozy and Warm Apartment in Greenwich Village!!,13425452,Eric,Manhattan,Greenwich Village,40.72871,-74.00149,Entire home/apt,161,1,27,2017-02-13,0.74,1,0 +13540817,"East 55th Street, Luxury 1bd Serviced Apt",22541573,Ken,Manhattan,Midtown,40.7588,-73.96611,Entire home/apt,260,30,1,2018-05-25,0.07,87,341 +13540829,Comfortable Affordable 2 bed Apt ASTORIA NEW YORK,26475189,Ellen,Queens,Astoria,40.7696,-73.92694,Entire home/apt,79,21,0,,,1,0 +13541505,East Williamsburg Bedroom,30801050,Alik,Brooklyn,Williamsburg,40.71438,-73.94742,Private room,43,14,0,,,1,0 +13542287,"Large, sunny private bedroom in E. Williamsburg",17860156,Cheryn,Brooklyn,Williamsburg,40.7042,-73.94193,Private room,60,1,3,2017-03-26,0.08,1,0 +13542521,Comfortable room in gay friendly apt in HK,77915011,Joshua,Manhattan,Hell's Kitchen,40.76806,-73.98672,Private room,100,2,1,2016-06-26,0.03,1,0 +13542768,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75897,-73.9617,Entire home/apt,210,30,0,,,87,188 +13542938,"East 58th Street, Lux Svcd 1bd Apt",22541573,Ken,Manhattan,Midtown,40.75724,-73.96384,Entire home/apt,245,30,0,,,87,280 +13543160,"Modern, Elegant, Private, Two-bedroom",49966,Sarah,Brooklyn,Bedford-Stuyvesant,40.69068,-73.95465,Entire home/apt,175,3,6,2018-04-08,0.17,1,0 +13543171,ENTIRE APARTMENT FOR FAMILIES OR GROUPS,32991339,Eric,Brooklyn,Williamsburg,40.70707,-73.9528,Entire home/apt,250,1,9,2018-11-11,0.27,2,254 +13544023,"East 57th Street, Lux Svcd Studio Apt",22541573,Ken,Manhattan,Midtown,40.75726,-73.96177,Entire home/apt,220,30,0,,,87,188 +13544120,MY HOME / YOUR HOME /BEAUTIFUL HUGE 1BR,1475015,Mike,Manhattan,Midtown,40.75683,-73.9659,Entire home/apt,95,30,5,2019-05-30,0.23,52,342 +13544302,Park Avenue 4 Bedroom 1 Bath,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74564,-73.98174,Entire home/apt,250,30,1,2017-05-14,0.04,31,215 +13544601,"West 87th Street, Svcd Studio Brownstone Apt",22541573,Ken,Manhattan,Upper West Side,40.79093,-73.97969,Entire home/apt,167,30,0,,,87,335 +13544874,Private room in the heart of Williamsburg!,21130844,Fernando,Brooklyn,Williamsburg,40.7154,-73.95469,Private room,76,2,7,2017-10-23,0.21,1,0 +13544987,Large Open 1 Bedroom Apartment in Murray Hill,26064594,Dori,Manhattan,Murray Hill,40.74686,-73.97981,Entire home/apt,200,3,1,2016-11-26,0.03,1,0 +13545453,"West 50th Street, Luxury Svcd Studio Apt",22541573,Ken,Manhattan,Hell's Kitchen,40.76294,-73.98574,Entire home/apt,199,30,1,2018-07-29,0.09,87,329 +13545656,Perfect 1 Br Apt. to explore the city,6493333,Zahra,Manhattan,Harlem,40.8114,-73.94014,Entire home/apt,140,2,34,2018-09-16,0.93,1,0 +13545733,Ideal location for those new to New York!,5677896,Keryn,Manhattan,Inwood,40.86182,-73.93088,Private room,57,14,4,2018-08-17,0.11,1,0 +13546425,Room in ground level brownstone with private yard,9501536,Morgan,Brooklyn,Bedford-Stuyvesant,40.6829,-73.93935,Private room,60,2,2,2016-07-11,0.05,1,0 +13547426,Bay Ridge Beauty,68733807,Tracey,Brooklyn,Fort Hamilton,40.616,-74.02973,Entire home/apt,80,3,6,2016-09-23,0.17,1,0 +13548278,Lovely & Spacious Entire Apt- 18 mins to Manhattan,12777561,Philippia,Queens,Sunnyside,40.746,-73.91503,Entire home/apt,125,1,2,2017-01-01,0.06,1,0 +13548332,"Madison Ave 2 BR Penthouse, 3 Beds",61391963,Corporate Housing,Manhattan,Upper East Side,40.78531,-73.95683,Entire home/apt,150,30,2,2018-01-06,0.07,91,319 +13548357,"Convenient & Spacious Place in Brooklyn, NYC",19163998,Richard,Brooklyn,Flatbush,40.62978,-73.96207,Entire home/apt,70,6,70,2019-07-03,2.12,1,3 +13548515,Cozy Apartment Best Location,75029289,Rlg,Manhattan,Upper East Side,40.7746,-73.95546,Entire home/apt,125,30,7,2018-10-06,0.32,5,325 +13548885,Beautiful private room with balcony,25668027,Austin,Brooklyn,Bedford-Stuyvesant,40.69467,-73.93594,Private room,56,7,1,2016-08-01,0.03,1,0 +13549391,Cozy Brooklyn Guesthouse Retreat by Localhaus,63494345,Lauren And Ben,Brooklyn,Sunset Park,40.66525,-73.99524,Entire home/apt,170,2,88,2019-07-06,2.67,1,65 +13549494,"Cozy Studio, close to everything!",4454121,Gayle,Manhattan,Upper East Side,40.76172,-73.96538,Entire home/apt,179,3,24,2019-06-16,0.65,1,3 +13549611,Bright and cozy apt next to park,59575555,Para,Brooklyn,Cypress Hills,40.68144,-73.89416,Entire home/apt,75,5,2,2016-08-15,0.06,1,0 +13549677,Bedroom in Bushwick,16240783,Tamara,Brooklyn,Bushwick,40.70024,-73.92655,Private room,65,2,0,,,1,0 +13549713,Luxury 2 Bed/2 Bath Duplex on the Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78435,-73.97579,Entire home/apt,295,30,2,2018-01-06,0.06,6,0 +13549750,Luxury One Bedroom Apt near Brooklyn Bridge,32128412,Ondina,Brooklyn,Vinegar Hill,40.69904,-73.98496,Entire home/apt,150,1,6,2017-06-02,0.16,1,0 +13550120,NYC Welcomes You! Beautiful 2 BR-5 min from JFK.,51688993,Taran & Najla,Queens,Jamaica,40.68993,-73.80334,Entire home/apt,174,1,67,2019-06-23,1.81,2,340 +13550201,"Manhattan-very close to everywhere +muy cercadetodo",71886811,W. Alvaro,Manhattan,Morningside Heights,40.81441,-73.9589,Private room,67,6,22,2019-04-27,0.59,3,90 +13550629,Large 1BR in the Heart of Hell's Kitchen!!,11736641,Will,Manhattan,Hell's Kitchen,40.76054,-73.98971,Entire home/apt,199,4,0,,,1,0 +13554710,"Modern Oasis l -Prospect Park, Close to B/Q Subway",47050813,Jewel,Brooklyn,Flatbush,40.65034,-73.96342,Private room,62,1,167,2019-06-27,4.52,2,48 +13556488,sunny room one block from the beach,22591516,Laura,Queens,Arverne,40.58928,-73.79531,Private room,150,1,2,2016-08-22,0.05,1,0 +13556607,Affordable Luxury 1,77134747,Marcus,Brooklyn,Cypress Hills,40.68017,-73.89031,Private room,115,3,3,2016-10-09,0.09,1,82 +13558030,"Comfy Room 10min/ LGA, 30min/ JFK, 30min/ City",51531044,Angela,Queens,Jackson Heights,40.75061,-73.87576,Private room,40,2,66,2019-06-09,1.82,4,293 +13558387,"East 74th street, UES 1bd Serviced Apartment*",22541573,Ken,Manhattan,Upper East Side,40.76911,-73.95738,Entire home/apt,200,30,0,,,87,365 +13558555,"East 74th street, Cozy UES Studio Svcd Apartment",22541573,Ken,Manhattan,Upper East Side,40.7706,-73.95725,Entire home/apt,149,30,2,2018-08-18,0.08,87,339 +13559208,Central Park Loft,81335,Evan,Manhattan,Upper West Side,40.78243,-73.97657,Entire home/apt,125,1,180,2019-06-26,4.88,3,125 +13559570,Manhattan-very close to everywhere muycerca detodo,71886811,W. Alvaro,Manhattan,Morningside Heights,40.81558,-73.95847,Private room,73,6,11,2018-10-21,0.31,3,90 +13560118,"AMAZINGLY LOCATED ONE BEDROOM, NEAR CENTRAL PARK",3752944,Jay Cee,Manhattan,Hell's Kitchen,40.76712,-73.98789,Entire home/apt,200,4,7,2019-04-09,0.22,1,3 +13561961,"Cozy, Artistic Room with Lots of Natural Light",75658258,Anne-Marie,Brooklyn,Bedford-Stuyvesant,40.68838,-73.9519,Private room,34,2,1,2016-08-27,0.03,1,0 +13562013,Lincoln Center 1 Bedroom Apartment,26546007,Francis,Manhattan,Upper West Side,40.7719,-73.99046,Entire home/apt,300,1,0,,,1,0 +13562635,West 55th street~Large 1BR~Columbus circle,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76646,-73.98649,Entire home/apt,220,30,0,,,49,365 +13563330,"Comfy, Lush Private Harlem Room",78165909,Gabriel,Manhattan,Harlem,40.82841,-73.94922,Private room,36,14,0,,,1,0 +13563766,Private Room near Brooklyn's best park,27567524,David,Brooklyn,Prospect Heights,40.67937,-73.96838,Private room,70,1,0,,,1,0 +13563835,Heart of Williamsburg! 10 min from Manhattan,1571120,Timothy + Gina,Brooklyn,Williamsburg,40.71072,-73.96131,Private room,89,2,150,2019-06-23,4.10,2,64 +13563973,"Visiting Brooklyn, stay here!",41913683,Aris,Brooklyn,Flatbush,40.65074,-73.96072,Entire home/apt,115,3,4,2017-09-15,0.11,1,0 +13564134,Beautiful Spacious 3 BR Cosy Apt.,78176513,Frank,Manhattan,Harlem,40.81497,-73.94781,Entire home/apt,200,3,50,2019-06-22,1.42,1,268 +13564490,Classic pre-war NYC apartment.,34911780,Daniel,Manhattan,Inwood,40.86076,-73.92781,Entire home/apt,100,4,41,2019-07-02,1.11,2,100 +13564911,Gorgeous exposed-brick 2 BR Apt in LES!,16904031,Kiley,Manhattan,Lower East Side,40.71692,-73.98874,Entire home/apt,175,2,0,,,1,0 +13565060,AWESOME MODERN WILLIAMSBURG APT AVAILABLE,14017165,Daniel,Brooklyn,Williamsburg,40.70744,-73.94485,Private room,58,2,1,2016-06-27,0.03,1,0 +13565111,Spacious room in trendy & picturesque neighborhood,44867769,Jessie,Manhattan,Harlem,40.82172,-73.94791,Private room,81,1,19,2016-09-30,0.52,1,0 +13567393,Private room near Lincoln Center,50165193,Stephanie,Manhattan,Upper West Side,40.77567,-73.9786,Private room,95,21,2,2016-08-20,0.05,1,281 +13569664,"Affordable, Clean / Cozy place near Subway",78150907,Gregory,Brooklyn,Midwood,40.62189,-73.96171,Private room,38,2,157,2019-06-25,4.27,1,67 +13569725,Little slice of paradise on the Lower East Side,19417913,Cate,Manhattan,Chinatown,40.71661,-73.99144,Entire home/apt,150,3,7,2018-03-12,0.19,1,11 +13571116,Private Room in Large Airy Apartment,54797779,Sofia,Manhattan,Harlem,40.82004,-73.95063,Private room,40,2,3,2017-01-23,0.10,1,0 +13571350,Perfect studio in Manhattan midtown,78258683,Srulik,Manhattan,Midtown,40.74311,-73.98286,Entire home/apt,150,5,0,,,1,0 +13572291,CLEAN Downtown Studio Crash Pad!,48681901,Krystina,Manhattan,East Village,40.72605,-73.98705,Entire home/apt,99,17,11,2019-06-01,0.30,1,0 +13572767,Heart of Williamsburg 2 bedroom sleeps 5,69541888,Edward,Brooklyn,Williamsburg,40.71758,-73.95015,Entire home/apt,250,1,1,2016-07-21,0.03,1,0 +13573101,Sunny room in heart of Chinatown,41217631,Paul,Manhattan,Chinatown,40.7153,-73.99938,Private room,69,1,1,2016-10-09,0.03,2,0 +13573103,"Private room in Bushwick, Brooklyn. backyard+roof!",78279322,Cortland,Brooklyn,Bushwick,40.69092,-73.91546,Private room,35,1,1,2016-07-05,0.03,1,0 +13573310,Private room in williamsburg/bushwick,78286572,Brian,Brooklyn,Williamsburg,40.70559,-73.93552,Private room,65,1,3,2017-05-29,0.08,1,0 +13573625,"Huge 1bdrm w pt Doorman, WiFi/Cable, Bottled Water",78285810,Shira,Manhattan,Midtown,40.75494,-73.96738,Entire home/apt,259,4,0,,,1,0 +13573790,"Sunny, Spacious Apartment in Prime Williamsburg",78292517,Chris,Brooklyn,Williamsburg,40.71578,-73.95879,Entire home/apt,150,2,5,2019-03-20,0.14,1,0 +13573828,"Historic, Modern Brownstone Bklyn Duplex, Backyard",9440328,Laura,Brooklyn,Crown Heights,40.67469,-73.94062,Entire home/apt,270,5,9,2018-12-29,0.25,1,0 +13574105,Private Bed-Stuy Flat,21016849,Silvia,Brooklyn,Bedford-Stuyvesant,40.69127,-73.95085,Entire home/apt,150,3,40,2019-06-02,1.08,1,327 +13574810,"Live/Work Artist Loft in Ridgewood , Queens NYC",2960765,Brian,Queens,Ridgewood,40.70087,-73.90571,Private room,100,1,0,,,1,0 +13575747,"One bedroom in Astoria, Queens - No Hidden Fees",19477508,Vincent And Jessica,Queens,Astoria,40.76626,-73.91835,Entire home/apt,119,2,19,2019-05-31,0.52,1,0 +13576581,Modern Central Park Apartment close to everything,78325795,Bozhena,Manhattan,Harlem,40.80573,-73.94994,Entire home/apt,129,1,160,2019-06-23,4.31,3,246 +13577207,Bright & Dramatic 3 bed/2bath Duplex,73234851,Shoshana,Brooklyn,Bedford-Stuyvesant,40.68343,-73.94394,Entire home/apt,175,2,103,2019-07-04,2.90,2,144 +13577416,Comfy Loft Bed in Sunny Room with plants,23505542,Sarah,Brooklyn,Sunset Park,40.65562,-74.00295,Private room,40,2,3,2016-10-19,0.08,1,0 +13578125,Whimsical Greenpoint Get Away,71308956,Anthony,Brooklyn,Greenpoint,40.72429,-73.94534,Entire home/apt,125,3,1,2016-07-18,0.03,1,0 +13578431,Private Apt in Queens NYC/less 5min walk to train,26382036,William,Queens,Elmhurst,40.73928,-73.87755,Entire home/apt,101,5,93,2019-06-30,2.52,2,7 +13578642,Medium size room in great location (88th & York),10737943,David,Manhattan,Upper East Side,40.77989,-73.94763,Private room,49,19,6,2018-08-31,0.17,10,285 +13578708,Modern Skyscraper in the Upper Westside Manhattan,1651250,Shervin,Manhattan,Upper West Side,40.7751,-73.98148,Entire home/apt,300,2,15,2016-11-25,0.41,2,3 +13580148,"Sunny Rms w Utilities Incl, 15 mins to Manhattan",2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.68232,-73.94401,Private room,75,2,1,2019-06-10,1,3,125 +13582811,Bright Bushwick Diamond In The Rough,78408136,Michael,Brooklyn,Cypress Hills,40.68015,-73.90504,Entire home/apt,85,1,182,2019-06-23,5.85,1,62 +13583633,Spacious 1 Bedroom Apt in heart of Williamsburg,23657588,Matthew,Brooklyn,Williamsburg,40.71307,-73.95084,Entire home/apt,185,1,49,2019-06-30,1.34,1,50 +13584582,Stylish Midtown Retreat,78430614,Jay,Manhattan,Hell's Kitchen,40.75666,-73.99444,Entire home/apt,185,2,174,2019-06-22,4.88,1,65 +13584889,COMFORTABLE & FRIENDLY,78218328,Ivonne,Brooklyn,Bedford-Stuyvesant,40.69191,-73.94636,Private room,50,6,0,,,1,0 +13585495,Great room in amazing Little Italy location!,15960548,Nathan,Manhattan,Little Italy,40.71955,-73.99707,Private room,110,2,1,2016-09-14,0.03,1,0 +13585835,Private Room in the ❤️ of Bushwick.,5352610,Mira,Brooklyn,Williamsburg,40.70648,-73.92997,Private room,65,4,47,2018-10-12,1.28,2,249 +13585905,"LOCATION,LOCATION! 51st/7 AV,2 bedroom luxury bldg",26386038,Alex,Manhattan,Theater District,40.76122,-73.98292,Entire home/apt,185,30,4,2018-11-30,0.21,1,292 +13586284,Brooklyn 3BR Oasis + Yard Featured in Apt Therapy,1725907,Jungwon,Brooklyn,Bedford-Stuyvesant,40.68541,-73.92392,Entire home/apt,195,3,4,2017-08-16,0.11,1,0 +13586426,Great room in Upper West Manhattan,997947,Miriam,Manhattan,Upper West Side,40.80056,-73.96035,Private room,85,2,26,2019-06-24,0.71,1,16 +13586614,East Village 2 BR Duplex Apt on Quiet Block,4047676,Patricia,Manhattan,East Village,40.72539,-73.97963,Entire home/apt,295,2,48,2018-08-09,1.33,1,0 +13587161,A Quiet Studio Apartment in Bedford-Stuyvesant :),78461025,Doreen,Brooklyn,Bedford-Stuyvesant,40.69123,-73.93599,Private room,120,2,21,2019-01-01,0.59,1,0 +13587436,Perfect 2 bedroom in Brooklyn,78464432,Dragica,Brooklyn,Crown Heights,40.6789,-73.96242,Entire home/apt,189,4,15,2019-01-02,0.41,1,15 +13588393,Private Room and Bathroom in Historic Bed-Stuy,50338266,Sammy,Brooklyn,Bedford-Stuyvesant,40.68731,-73.9478,Private room,60,1,0,,,1,0 +13589110,✺ SOHO Adorable Studio ✺ Downtown NYC!,8336084,Ryad,Manhattan,Nolita,40.72154,-73.99577,Entire home/apt,123,2,33,2019-06-15,0.90,1,1 +13589297,Brightly Lit Charming 1 Bed,77990284,Mariam,Manhattan,Upper West Side,40.79394,-73.97665,Private room,89,3,1,2016-07-02,0.03,1,0 +13589415,Cozy studio with HUGE PRIVATE terrace and grill,21283171,Valeryia,Manhattan,East Harlem,40.78706,-73.94798,Entire home/apt,140,1,6,2018-01-17,0.18,1,0 +13589669,East Brooklyn Garden Apartment,78485066,Corie,Brooklyn,East New York,40.6638,-73.89307,Entire home/apt,85,1,106,2019-06-13,2.87,2,337 +13590002,R&R on mount Morris,73850433,Ronald,Manhattan,East Harlem,40.80038,-73.94602,Entire home/apt,169,3,7,2019-06-21,3.28,1,242 +13590391,Cute 1 BD (can sleep up to 4) in the gorg UWS!,78507411,Mel And Laurie,Manhattan,Upper West Side,40.79671,-73.9712,Entire home/apt,145,3,4,2017-01-01,0.11,1,0 +13591017,Charming Designer’s Studio in Prime Williamsburg,10641733,Valentina,Brooklyn,Williamsburg,40.717,-73.96183,Entire home/apt,145,1,61,2019-06-08,1.74,1,11 +13591611,Eclectic Charm in the East Village,4523651,Rick,Manhattan,East Village,40.72552,-73.97879,Entire home/apt,165,2,13,2018-11-27,0.35,1,0 +13595786,Light and spacious 2 bedroom loft in Bushwick,6802844,Kaia,Brooklyn,Bushwick,40.70458,-73.92031,Entire home/apt,152,7,0,,,1,0 +13596286,Bright Top-Floor Suite in Park Slope,2768182,Devi,Brooklyn,South Slope,40.66282,-73.98714,Private room,99,7,10,2018-10-09,0.28,4,36 +13596544,Blues Musician Escape Lodge!,2638806,Ellis,Manhattan,East Village,40.72296,-73.9776,Entire home/apt,110,2,0,,,1,0 +13597896,"Private bedroom in 2 bedroom, 2 bath- apartment",37425564,Joshua,Brooklyn,Midwood,40.6271,-73.97182,Private room,40,3,3,2017-07-30,0.09,1,0 +13599973,Private Room in Cozy 2-Bdrm Greenwich Village Apt.,4025420,Karine,Manhattan,Greenwich Village,40.72948,-73.99986,Private room,115,3,20,2019-07-04,0.59,2,15 +13600398,Helle und moderne Wohnung in Bushwick,11091997,Mario & Marijke,Brooklyn,Bushwick,40.70124,-73.93125,Entire home/apt,157,2,4,2019-03-18,0.12,2,0 +13601777,Planta Baja Studio,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68786,-73.95688,Entire home/apt,1000,1,10,2018-06-14,0.28,3,365 +13603093,Luxury One Bedroom Suite,78672740,Shamaine,Brooklyn,Flatbush,40.64809,-73.9677,Private room,72,1,25,2019-03-16,0.68,1,333 +13603364,Spacious room in Astoria,1924750,Jasmina,Queens,Astoria,40.76376,-73.91438,Private room,40,2,50,2019-05-31,1.63,2,179 +13603951,Cozy NYC 1bedroom - close to all,78499938,Dan,Manhattan,Midtown,40.75561,-73.96472,Entire home/apt,175,4,0,,,1,0 +13604485,Charming Loft-like Garden Apt in Bed-Stuy,56352735,Tunde,Brooklyn,Bedford-Stuyvesant,40.6878,-73.95493,Entire home/apt,90,3,82,2019-06-21,2.22,1,4 +13604794,Quiet room in Central Harlem,27123110,Angel,Manhattan,Harlem,40.80372,-73.95036,Private room,65,3,2,2018-08-23,0.18,1,0 +13605171,"Bright, quiet room in 2br close to park/trains.",14751888,Mary,Manhattan,Upper West Side,40.78697,-73.97351,Private room,79,2,6,2017-08-15,0.16,1,0 +13605192,4 Bedroom House Perfect for Cooperate Rental,62317991,Phillipa,Brooklyn,East Flatbush,40.64145,-73.9433,Entire home/apt,350,2,34,2019-06-24,1.00,1,344 +13606307,Modern stay w. 30 Min. to City Downtown on #4 line,2368191,Lexia,Brooklyn,East Flatbush,40.66375,-73.92974,Entire home/apt,71,6,46,2019-07-01,1.25,1,69 +13606337,"Spacious and clean room, near Columbia University",78727422,Xiaoxu,Manhattan,Morningside Heights,40.80325,-73.96433,Private room,50,10,1,2016-07-19,0.03,1,0 +13606847,1 bedroom furnished with WIFI and cable. Murr Hill,53179388,Raymond,Manhattan,Midtown,40.75004,-73.97089,Entire home/apt,115,30,5,2017-10-07,0.14,10,289 +13607904,Cozy Loft Right Off the Morgan L,42994195,Sean,Brooklyn,Williamsburg,40.70524,-73.93305,Private room,49,5,0,,,1,0 +13613052,Cute Apt in the Heart of Chelsea,25596158,Ashlee,Manhattan,Chelsea,40.74366,-74.0005,Private room,70,1,2,2016-07-28,0.06,1,0 +13613450,"East Village Studio, New York like in the Movies",78807434,Jennifer,Manhattan,East Village,40.72737,-73.97789,Entire home/apt,110,3,6,2019-07-01,0.17,1,34 +13613919,"Sunny, kid friendly apt in Carroll Gardens",40869788,Dominique,Brooklyn,Carroll Gardens,40.68354,-74.00139,Entire home/apt,140,1,4,2018-09-30,0.17,1,0 +13614714,Spacious and Bright in Hamilton Heights,78722739,Ashley,Manhattan,Harlem,40.83077,-73.94847,Entire home/apt,89,2,8,2019-01-02,0.34,1,5 +13614923,Gorgeous Zen Home at Crossroads of Nolita and Soho,305207,Lauren,Manhattan,SoHo,40.7205,-73.9986,Entire home/apt,259,2,3,2016-08-01,0.08,1,0 +13615270,"NYC & Luxury, quiet, safe well located",78826514,Niki,Manhattan,Upper East Side,40.76885,-73.96472,Entire home/apt,160,2,48,2019-06-30,1.30,1,40 +13615840,UES studio walking distance to central park,78832817,Heather,Manhattan,Upper East Side,40.76873,-73.95464,Entire home/apt,113,7,1,2016-08-29,0.03,1,0 +13616684,Bright and cozy walkup,2977429,Phoebe,Manhattan,East Village,40.72402,-73.97778,Entire home/apt,300,2,0,,,1,0 +13616940,MODERN & SPACIOUS NEAR CENTRAL PARK / HARLEM,3683612,Cynthia,Manhattan,Harlem,40.8018,-73.95166,Entire home/apt,125,3,26,2018-09-03,0.70,1,67 +13617449,Morningside Heights: Comfy and Cozy 1 BR,32219748,JacQueline,Manhattan,Morningside Heights,40.81005,-73.9572,Entire home/apt,105,5,2,2016-08-29,0.06,1,0 +13618148,"Room close to Prospect Park, minutes to NYC!",5110884,Giusy,Brooklyn,Flatbush,40.65226,-73.95732,Private room,70,2,0,,,1,0 +13618453,"Luxurious, Spacious, Private Bath, Nice Hosts too",41947929,Connie,Brooklyn,Crown Heights,40.67667,-73.94826,Private room,125,1,47,2019-07-01,1.36,2,151 +13619296,Full Apt 2 Bedrooms in Brooklyn - 10min Manhattan,31651673,Mathieu,Brooklyn,Williamsburg,40.70876,-73.95125,Entire home/apt,150,2,0,,,3,0 +13619385,Location Location Location! Chic Studio Available!,47502969,Nekeshia,Manhattan,West Village,40.73273,-74.00704,Entire home/apt,275,3,12,2018-09-26,0.33,1,12 +13619661,Williamsburg Private Room,78870889,Carlos,Brooklyn,Williamsburg,40.71791,-73.94242,Private room,65,3,0,,,1,0 +13620412,"Cozy, private bed & private bath",77765017,Isabelle,Brooklyn,Bedford-Stuyvesant,40.68499,-73.94433,Private room,65,3,124,2019-06-20,3.45,1,199 +13620503,SOHO LOFT WITH PRIVATE ROOF DECK,27175000,Amy,Manhattan,SoHo,40.72263,-74.00424,Entire home/apt,400,3,2,2016-08-08,0.06,1,0 +13621211,Luxurious 2 Bedroom with amazing finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74136,-73.98006,Entire home/apt,159,30,5,2019-05-01,0.14,91,312 +13622049,An urban nest; 7 minutes from Central Park,44700210,Christina,Manhattan,Upper East Side,40.7758,-73.95472,Entire home/apt,200,5,11,2016-11-27,0.30,2,0 +13622056,Luxury For Less In Downtown Manhattan,40425220,Lauren,Manhattan,Battery Park City,40.71617,-74.01468,Private room,225,1,1,2016-11-05,0.03,1,0 +13622454,"Large 1 Bed/1 Bath by Central Park, Hunter College",78912246,Priya,Manhattan,Upper East Side,40.76711,-73.96177,Entire home/apt,199,1,3,2016-10-01,0.09,1,0 +13622647,An urban nest; 7-min from Central Park/The Met,44700210,Christina,Manhattan,Upper East Side,40.77775,-73.95361,Shared room,75,1,6,2016-08-07,0.16,2,0 +13622777,Sunny bedroom in Bedstuy,68760676,Gina,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91507,Private room,44,1,1,2016-08-01,0.03,1,0 +13623182,"Spacious, Airy room in Williamsburg",7571391,Aidan,Brooklyn,Williamsburg,40.71673,-73.94832,Private room,100,5,1,2016-08-01,0.03,1,0 +13623187,Heart of Williamsburg 1 bedroom Bedford L train,13752339,Meg,Brooklyn,Williamsburg,40.72012,-73.95675,Entire home/apt,130,28,20,2018-08-27,0.59,1,80 +13623256,Stunning Large Family Home,21894419,Alba,Manhattan,Financial District,40.70994,-74.00706,Entire home/apt,408,2,3,2019-06-23,0.85,2,106 +13623275,"Sunny, Spacious, Greenpoint 1 Bed Apt",43125231,Freddy,Brooklyn,Greenpoint,40.7354,-73.95706,Entire home/apt,120,3,4,2017-09-21,0.12,1,0 +13623361,New York City with a VIEW,22533562,Lou,Manhattan,Theater District,40.75967,-73.98732,Entire home/apt,273,1,0,,,1,0 +13623452,Spacious 1BR apt by Prospect Park!,69591507,Mont,Brooklyn,East Flatbush,40.65275,-73.95119,Entire home/apt,85,1,0,,,1,0 +13623618,Lovely room close to subway in beautiful Astoria!,39375487,Suzanne,Queens,Long Island City,40.75353,-73.9289,Private room,80,2,16,2018-12-09,0.49,1,0 +13623671,Sunny Room in Hip Bushwick,26500909,Sarah,Brooklyn,Bushwick,40.70347,-73.92764,Private room,60,2,1,2016-06-27,0.03,1,0 +13623700,Spacious and Quiet Gramercy 1 Bedroom,21656569,Alana,Manhattan,Gramercy,40.73577,-73.98057,Entire home/apt,275,5,0,,,1,0 +13623747,Spacious studio in NEW apt building in Astoria,78931932,Melanie,Queens,Astoria,40.76764,-73.9279,Entire home/apt,125,25,5,2016-11-14,0.14,1,0 +13623880,Conveniently located 2 BR Time Square Apartment,78934668,Marissa,Manhattan,Hell's Kitchen,40.76395,-73.9884,Entire home/apt,200,2,25,2018-04-22,0.68,1,0 +13623891,Stunning Studio in Midtown BEST LOCATION,78929276,Blaine,Manhattan,Midtown,40.7441,-73.98834,Entire home/apt,199,2,106,2019-06-20,2.96,1,250 +13623987,Huge Charming One Bedroom Apartment,78936234,Damian,Manhattan,Upper East Side,40.77374,-73.95684,Entire home/apt,265,2,6,2019-03-22,0.18,1,364 +13624795,Large 4 BR West Village townhouse/roof garden,36435055,Barbara,Manhattan,West Village,40.73484,-74.00364,Entire home/apt,700,2,18,2018-07-22,0.50,2,0 +13624873,East Village Cottage,2010460,Thaya,Manhattan,East Village,40.72544,-73.9899,Private room,80,2,31,2019-06-30,0.94,1,28 +13625381,The perfect spot in Bushwhick,9320995,Jessie,Brooklyn,Bushwick,40.7035,-73.92912,Private room,35,3,1,2018-01-01,0.05,1,0 +13625610,Cute & Eclectic Studio in Lower East Side,78964994,Satsko,Manhattan,Lower East Side,40.71844,-73.9858,Entire home/apt,135,2,104,2019-06-23,2.81,1,76 +13627991,Private Room in a Huge Apartment (East Village),2080047,Lawrence,Manhattan,East Village,40.72392,-73.98719,Private room,70,3,2,2017-09-30,0.09,1,0 +13630755,Apartment Available in Bay Ridge Brooklyn,79020870,Sharn,Brooklyn,Fort Hamilton,40.62106,-74.03384,Shared room,179,1,0,,,1,0 +13631232,Spacious One-Bedroom in an ideal location,64182621,David,Manhattan,East Harlem,40.78584,-73.94899,Entire home/apt,99,5,0,,,1,0 +13632649,Charming Vinegar Hill 1-bedroom apt w/ backyard,50210611,Ali,Brooklyn,Vinegar Hill,40.7041,-73.98089,Entire home/apt,135,6,1,2016-07-24,0.03,1,0 +13632675,Amazing apartment in Brooklyn's best neighborhood,7408231,Bryan,Brooklyn,Gowanus,40.68331,-73.98609,Entire home/apt,104,2,0,,,1,0 +13632841,"Heart of Astor place, 1 bedroom Apt, doorman bldg",11686214,Jessica,Manhattan,East Village,40.73055,-73.99146,Entire home/apt,128,3,3,2016-08-28,0.08,1,0 +13633299,"Brooklyn Room, Calm Spacious Oasis, Prospect Park",6136799,Christina,Brooklyn,Flatbush,40.65257,-73.96259,Private room,60,2,44,2019-06-30,1.33,1,1 +13633400,2 Bedroom Modern Condo,4372467,Lana,Brooklyn,Boerum Hill,40.68882,-73.98911,Entire home/apt,170,5,2,2016-12-25,0.06,1,0 +13633468,Chill in Alphabet City,27379154,Elizabeth,Manhattan,East Village,40.72248,-73.98316,Private room,85,3,4,2016-11-28,0.11,1,0 +13634292,"Positive and Spacious Bedroom in Sunnyside, Queens",12722812,Dominic,Queens,Sunnyside,40.73846,-73.92273,Private room,60,4,6,2017-09-04,0.17,1,0 +13634496,It must be your BDAY because this deal is great,28841406,Jd,Manhattan,Two Bridges,40.71298,-73.99406,Private room,75,3,0,,,1,0 +13634685,"LUXURY apt, INCREDIBLE location, PERFECT stay!",1511614,Chris,Manhattan,Upper West Side,40.79229,-73.97308,Entire home/apt,349,3,29,2018-04-08,0.79,1,0 +13635848,Central Williamsburg Apt.,79078275,Jacqueline,Brooklyn,Williamsburg,40.72003,-73.95756,Private room,90,1,0,,,1,0 +13636044,"Sunny, Spacious Corner Room",13074730,Leah,Brooklyn,Flatbush,40.64503,-73.96027,Private room,55,1,0,,,1,0 +13637050,I HEART HARLEM,2727797,Emily,Manhattan,Harlem,40.82629,-73.94785,Private room,50,5,0,,,1,0 +13638026,Large 1 bed apt in heart of Williamsburg,3695865,Jessica,Brooklyn,Williamsburg,40.71911,-73.95828,Entire home/apt,200,2,3,2016-10-30,0.08,1,0 +13638122,Private Room in Bright 2 Bd Greenwich Village Apt,4025420,Karine,Manhattan,Greenwich Village,40.72875,-74.00169,Private room,110,4,1,2016-10-23,0.03,2,0 +13639075,"Bright, spacious and quiet two-bedroom Chelsea apt",79114007,Gary,Manhattan,Chelsea,40.74122,-73.99963,Entire home/apt,325,2,47,2019-06-30,1.30,1,0 +13639276,Sunny & Colorful Private BR in Crown Heights,30656620,Aliza,Brooklyn,Crown Heights,40.66887,-73.95292,Private room,70,2,0,,,1,0 +13640120,Perfect Prospect Park Pad,16696505,Charles,Brooklyn,South Slope,40.6638,-73.97935,Entire home/apt,180,5,2,2017-07-01,0.07,1,0 +13640690,Studio Apartment Near Central Park/Hell's Kitchen,34915405,Joshua,Manhattan,Hell's Kitchen,40.76751,-73.98483,Entire home/apt,134,1,24,2017-07-01,0.65,1,0 +13640966,"One Bedroom Apartment in Brownstone in Harlem, NYC",79141968,Conrad,Manhattan,Harlem,40.81044,-73.94916,Entire home/apt,150,3,13,2019-06-09,0.37,1,207 +13641625,Private rooms in beautiful apartment on UWS,26621764,Marit,Manhattan,Morningside Heights,40.80534,-73.96654,Private room,150,1,0,,,1,0 +13642019,"Historic, Lovely, Modern, Peaceful Apt in Brooklyn",14607718,Ella,Brooklyn,Greenpoint,40.73005,-73.95807,Entire home/apt,200,2,58,2019-05-19,1.71,1,257 +13642073,Bright spacious Brooklyn Apartment near Pratt,1316648,Savannah,Brooklyn,Bedford-Stuyvesant,40.69119,-73.9601,Entire home/apt,110,4,7,2019-04-23,0.20,1,0 +13642568,Luxe & Spacious Williamsburg Studio,79167228,Nate,Brooklyn,Williamsburg,40.71666,-73.95447,Entire home/apt,105,5,11,2018-08-06,0.30,1,0 +13642631,Doorman Chelsea One Bedroom- Convenient and Fun!,28115515,Andrew,Manhattan,Chelsea,40.74179,-73.99855,Entire home/apt,150,1,0,,,1,0 +13643063,Beautiful Brownstone Triplex,79176358,Jackie,Brooklyn,Boerum Hill,40.68601,-73.98335,Entire home/apt,200,5,0,,,1,0 +13649713,"Lovely, Sunny Studio near Central Park in UWS",45381744,Tatenda,Manhattan,Upper West Side,40.79759,-73.96544,Entire home/apt,165,1,3,2016-07-19,0.08,1,0 +13649833,Sunny Manhattan Apt (week / month discounts),4110677,Justin,Manhattan,Harlem,40.8085,-73.94113,Private room,75,14,4,2019-07-01,0.11,2,184 +13650177,"private yard & apt-near metro,direct to Manhattan",79258584,Rebekah,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94115,Entire home/apt,104,5,115,2019-06-24,3.13,1,182 +13650422,Convenient Financial District Studio,2486611,Jem,Manhattan,Financial District,40.70884,-74.00754,Entire home/apt,130,2,15,2018-05-31,0.42,1,0 +13651173,Spacious and cozy Lower East Side bedroom,79268929,Paulina,Manhattan,East Village,40.72383,-73.9839,Private room,130,1,4,2016-07-05,0.11,1,0 +13651250,Classic Gramercy Studio,35857384,Susan,Manhattan,Gramercy,40.73536,-73.98433,Entire home/apt,145,7,7,2017-11-05,0.23,1,0 +13651334,Beautiful and huge room.,810050,Gladys,Manhattan,Harlem,40.82633,-73.94459,Private room,60,1,1,2016-07-09,0.03,1,157 +13652851,"Cozy, Quiet Neat Room for You!",14798138,Marilyn,Queens,Cambria Heights,40.69061,-73.73917,Private room,40,5,1,2016-10-24,0.03,1,179 +13653116,Cute private room perfect as a travel base,19096739,Mimi,Manhattan,Harlem,40.82443,-73.95175,Private room,60,1,0,,,1,0 +13653343,Cozy Harlem Haven,299090,T,Manhattan,East Harlem,40.80767,-73.93913,Entire home/apt,99,2,7,2019-01-06,0.20,1,0 +13653647,"Newly Renovated, Cozy Brooklyn Room w/terrace",79293619,Peyton,Brooklyn,Bushwick,40.70381,-73.91922,Private room,75,2,0,,,1,0 +13653677,Spacious sunny room in Queens,79298323,Crispy,Queens,Maspeth,40.73359,-73.89227,Private room,70,14,35,2019-03-07,1.58,3,215 +13654166,"Cozy private Studio, easy 60 min. commute to NYC!",79305630,Elvira,Brooklyn,Gravesend,40.59535,-73.98946,Entire home/apt,109,4,80,2019-07-01,2.53,2,107 +13654347,Upper West Side Classic WHOLE 2 Bedroom apt,23684,Zhenya,Manhattan,Upper West Side,40.79774,-73.97274,Entire home/apt,250,3,5,2019-01-05,0.15,1,23 +13654429,Big West Harlem/Hamilton Heights Apt!,4622157,Katie,Manhattan,Harlem,40.82438,-73.9502,Entire home/apt,129,4,4,2017-12-08,0.11,1,0 +13654534,"Brooklyn Loft, Rooftop views, Street Parking....",4703687,Daphne,Brooklyn,Greenpoint,40.72341,-73.93616,Entire home/apt,90,4,0,,,2,0 +13654760,Spacious LES Studio with Private Outdoor Space,88260,Eric,Manhattan,Lower East Side,40.71967,-73.98506,Entire home/apt,150,3,47,2019-06-28,1.33,1,39 +13655779,Studio 1BR in the heart of East Village,5369934,Kacie,Manhattan,East Village,40.72857,-73.9854,Entire home/apt,198,3,5,2019-03-20,0.22,1,0 +13656529,Bushwick Music Mansion,57340330,Janeth,Brooklyn,Bushwick,40.68936,-73.90814,Private room,55,1,5,2018-09-15,0.14,1,89 +13656752,"Spacious 1 Bedroom in Vibrant Harlem, Manhattan",4278354,Demarius,Manhattan,Harlem,40.80927,-73.9427,Private room,61,1,4,2017-10-09,0.11,1,0 +13656902,Cozy 1 Bedroom Apartment with Back Patio,79340962,Ron,Queens,Astoria,40.76923,-73.91835,Entire home/apt,90,1,2,2016-08-06,0.05,1,0 +13657030,Convenient room in Manhattan close to Central Park,31252117,Weipeng,Manhattan,Harlem,40.80131,-73.9579,Private room,45,7,2,2016-07-30,0.06,1,0 +13657292,"Bright, Airy, Rockaway Beach House w/ Backyard",79341807,Tory,Queens,Arverne,40.59421,-73.80043,Entire home/apt,200,2,35,2019-07-06,0.95,1,4 +13657515,Private Room in Beautiful Crown Heights,29342746,Tanisha,Brooklyn,Crown Heights,40.67477,-73.95313,Private room,60,2,1,2018-05-27,0.07,1,0 +13657938,Calm & Clean 1 Bedroom in East Village/ Gramercy,75501075,Cara,Manhattan,Gramercy,40.73192,-73.98291,Entire home/apt,150,5,0,,,1,0 +13658407,Spacious Sunlit 1 Bedroom Williamsburg Apt,26929394,Sushil,Brooklyn,Williamsburg,40.71503,-73.94733,Entire home/apt,125,3,2,2017-07-17,0.08,1,0 +13658605,Master bedroom in penthouse apt of luxury building,30719074,Tanisha,Manhattan,Theater District,40.75927,-73.98592,Private room,80,7,0,,,1,0 +13658967,Private Room on the East River!,51432814,Miguel,Manhattan,East Harlem,40.7865,-73.94288,Private room,80,3,0,,,1,0 +13659004,"Sunlit, cozy bedroom in Bushwick:: needs owner!",79373292,Yenmin,Brooklyn,Bushwick,40.68392,-73.90654,Private room,35,6,2,2016-08-23,0.06,1,0 +13659055,Private sunny bedroom very close to Manhattan!,79373189,Laureta,Queens,Long Island City,40.75726,-73.93555,Private room,40,1,113,2019-05-27,3.17,2,57 +13659198,Huge Relaxing Room in Brooklyn Duplex Loft,8059211,Natalie,Brooklyn,Bushwick,40.69828,-73.93206,Private room,120,1,0,,,1,0 +13659914,Large & sunny 2-bedroom in Windsor Terrace,15588105,Anna,Brooklyn,Windsor Terrace,40.64999,-73.97307,Entire home/apt,100,30,2,2018-08-06,0.06,1,222 +13659949,2bdr BIG Oasis. Price cut for cat caretakers.,4606955,Jens,Brooklyn,Clinton Hill,40.68552,-73.9609,Entire home/apt,259,6,4,2018-05-14,0.11,1,7 +13659997,"Beautiful, sunny studio steps from Gramercy Park!",4411751,Danielle,Manhattan,Gramercy,40.73786,-73.98678,Entire home/apt,129,90,6,2018-02-28,0.25,1,0 +13660249,WHOLE 1st floor-Family Friendly-2 BdRm w/Backyard,46370904,Cynthia,Brooklyn,Sunset Park,40.64569,-74.00784,Entire home/apt,89,10,3,2018-08-23,0.09,1,1 +13661280,Room in Carroll Gardens,3977023,Vaida,Brooklyn,Carroll Gardens,40.6839,-73.99266,Private room,75,5,0,,,2,0 +13662078,Bright Spacious in S Williamsburg,182226,Alina,Brooklyn,Williamsburg,40.70845,-73.95397,Entire home/apt,135,7,9,2019-06-06,0.25,1,7 +13662692,Lovely 1bed apt (UWS) next to 72nd St. Subway & CP,79231531,Nimmi,Manhattan,Upper West Side,40.77778,-73.97795,Entire home/apt,200,4,1,2016-09-13,0.03,1,0 +13666116,Private Room in Morningside Heights,79459633,Andrew,Manhattan,Morningside Heights,40.80442,-73.96362,Private room,90,2,8,2017-09-11,0.22,1,0 +13666641,Park Slope living - bright 2BR,3988830,Pol,Brooklyn,South Slope,40.66658,-73.98117,Entire home/apt,200,3,1,2016-07-25,0.03,1,3 +13667440,Private room in the best location of NYC,22019073,Peter,Manhattan,Hell's Kitchen,40.75571,-73.99594,Private room,90,15,0,,,1,0 +13667633,"Gorgeous, cozy, serene flat in Brooklyn",461413,Kat,Brooklyn,Greenpoint,40.73516,-73.95532,Entire home/apt,150,2,68,2019-06-29,1.93,1,100 +13667739,"Charming 2 Bedroom Apartment, Incredible Location",8457214,Sarah,Manhattan,Nolita,40.7224,-73.99604,Entire home/apt,110,1,2,2016-07-01,0.05,2,0 +13667835,Beautiful cozy apartment Upper East Side,79479983,Paula,Manhattan,Upper East Side,40.78137,-73.95176,Entire home/apt,150,2,1,2016-08-13,0.03,1,0 +13668127,Private Room in Sunny Greenwich Village Apt.,6214982,Amy,Manhattan,Greenwich Village,40.72948,-74.00153,Private room,115,2,4,2017-01-03,0.11,1,0 +13668468,"Private room - Manhattan 25min, Prospect Park 5min",29013448,Mari,Brooklyn,Prospect-Lefferts Gardens,40.65668,-73.95969,Private room,42,1,8,2017-08-19,0.22,2,0 +13668573,Private Modern Room in Williamsburg,56044722,Simon,Brooklyn,Williamsburg,40.70922,-73.94722,Private room,75,2,1,2016-07-19,0.03,1,0 +13668833,Charming 1BR Perfect for Couples or Solo Traveller,79488969,Sadie,Manhattan,Upper West Side,40.77597,-73.98038,Entire home/apt,189,2,72,2019-07-01,1.95,1,27 +13668941,Hamilton Heights Apartment,79492070,Reylyn,Manhattan,Harlem,40.82022,-73.95358,Entire home/apt,125,1,7,2016-08-28,0.19,1,0 +13669049,Large Studio w/ Garden on the Park!,6057941,Marc,Brooklyn,Windsor Terrace,40.65879,-73.97733,Entire home/apt,150,5,0,,,1,0 +13669064,perfect Location! studio!best value!Sleeps3,2119276,Host,Manhattan,Kips Bay,40.73969,-73.98445,Entire home/apt,175,30,5,2017-12-19,0.14,39,283 +13669161,Comfortable-Private one room in LES,17605950,Denis,Manhattan,Lower East Side,40.71881,-73.98882,Private room,99,2,48,2018-02-03,1.30,1,0 +13669391,Spacious 1 bedroom in Woodlawn NYC,79340220,Kathryn,Bronx,Woodlawn,40.89984,-73.86902,Entire home/apt,85,2,43,2019-07-06,1.19,1,299 +13669423,XL Studio Prime location~newly designed~best value,2119276,Host,Manhattan,Flatiron District,40.74023,-73.98443,Entire home/apt,185,30,9,2019-06-05,0.29,39,346 +13669613,Spacious East Village 2 bedroom with living room.,79501489,Christopher,Manhattan,East Village,40.73172,-73.9846,Entire home/apt,177,1,2,2016-06-29,0.05,1,0 +13669942,Private Room and bathroom in the best of Brooklyn,3136445,Julie,Brooklyn,Carroll Gardens,40.6748,-74.00024,Private room,100,2,25,2017-01-15,0.68,1,0 +13670094,Spacious 1 Bedroom Near Central Park.,2637013,Mickey,Manhattan,East Harlem,40.79878,-73.94495,Entire home/apt,102,4,15,2017-08-15,0.42,1,0 +13670109,Cute Studio in the heart of East Village !,59938558,Thomas,Manhattan,East Village,40.72735,-73.98739,Entire home/apt,120,3,4,2016-10-09,0.11,1,0 +13670376,Bright and spacious 1 BR,79510521,Nina,Manhattan,Murray Hill,40.74327,-73.97202,Entire home/apt,155,5,2,2016-07-28,0.05,1,0 +13671558,Spacious private room in Harlem,7127392,Nzingha,Manhattan,Harlem,40.80549,-73.95595,Private room,67,2,36,2018-08-09,0.98,1,0 +13671936,Playful Room in Techie Loft,9371652,Albert,Brooklyn,Williamsburg,40.70704,-73.93763,Private room,50,2,1,2017-05-27,0.04,1,0 +13672890,"1 Bedroom in 2 Bedroom Flex - Doormen, Free Gym",66114992,Kyle,Manhattan,Upper East Side,40.76247,-73.96238,Private room,55,5,0,,,1,0 +13673242,Luxurious 1 or two bed rm private apartment,79505257,Darryle,Staten Island,Howland Hook,40.63245,-74.17065,Entire home/apt,100,3,21,2019-05-12,0.57,1,88 +13673459,"Cozy, Chic and Convenient One Bedroom Apt",79547468,Vanessa,Manhattan,East Harlem,40.79758,-73.94518,Entire home/apt,125,6,2,2016-12-31,0.06,1,0 +13673873,Beautiful bedroom in ideal Brooklyn location!,78285648,Sharina,Brooklyn,Kensington,40.63622,-73.97406,Entire home/apt,70,1,0,,,1,0 +13673951,Large private room & bath in sunny 2Bed 2Bath apt.,42605385,Cameron,Brooklyn,Flatbush,40.63624,-73.96365,Private room,39,4,2,2016-08-01,0.05,3,0 +13674053,Beautiful & Sunny Room in Vibrant Bushwick!,45369628,Maya,Brooklyn,Bushwick,40.7017,-73.92344,Private room,60,2,0,,,1,0 +13674169,Updated 1 BR with Great Layout and Design,75029289,Rlg,Manhattan,Upper East Side,40.77377,-73.9468,Entire home/apt,125,30,8,2019-06-24,0.25,5,0 +13674338,Sunny 2 Bedroom Best Location,75029289,Rlg,Manhattan,Upper East Side,40.77467,-73.95533,Entire home/apt,133,30,11,2019-05-12,0.34,5,126 +13674349,The Lefferts Manor $149per night,62028227,George,Brooklyn,Bedford-Stuyvesant,40.68114,-73.95795,Entire home/apt,149,3,3,2017-06-22,0.08,1,189 +13674799,Private suite in Carroll Gardens,30066784,Mark,Brooklyn,Gowanus,40.67674,-73.99642,Private room,110,2,204,2019-07-05,6.19,1,41 +13675000,Williamsburg Chill Haus,11279326,Ivan,Brooklyn,Williamsburg,40.70735,-73.95012,Private room,150,3,2,2016-09-10,0.06,1,0 +13675413,Inspired by you - Astoria Enclave w/ Large Rooms,79579355,Jay And Katt,Queens,Astoria,40.76985,-73.92481,Entire home/apt,205,3,50,2019-07-03,1.41,1,324 +13675798,Beautiful & Spacious Studio Near Central Park,77983246,Jenson,Manhattan,Upper East Side,40.77798,-73.95251,Entire home/apt,100,2,21,2018-11-18,0.57,1,16 +13676601,Here's a great offer on a spacious furnished room!,79598330,Nesha,Brooklyn,East Flatbush,40.66337,-73.92576,Private room,30,3,20,2018-03-31,0.54,1,27 +13679698,Private Bedroom close to Subway and Central Park,23088190,Florence,Manhattan,Morningside Heights,40.80364,-73.96541,Private room,69,3,1,2016-07-08,0.03,1,0 +13681859,B's SoHo Apartment,3522798,B,Manhattan,SoHo,40.72626,-74.00154,Entire home/apt,158,1,0,,,1,0 +13682508,"Sun Filled, Luxury 1BR with Pool, Gym, Roof Deck!",13030891,Robert,Brooklyn,Fort Greene,40.69595,-73.98173,Entire home/apt,190,1,3,2016-09-19,0.09,1,0 +13685550,Spacious BedSty bedroom with lovely summer garden,79704239,Alice,Brooklyn,Bedford-Stuyvesant,40.68888,-73.95492,Private room,36,7,0,,,2,0 +13685787,Cozy room with Private porch,69977115,Jacob,Brooklyn,Bensonhurst,40.61649,-73.99043,Private room,79,2,1,2016-07-18,0.03,4,179 +13685807,"Steps to Times Square, Radio City, West 50's",20446747,Josh,Manhattan,Hell's Kitchen,40.76638,-73.99013,Entire home/apt,176,4,105,2019-07-01,2.99,1,143 +13685871,Modern & Spacious Luxury 1-Bedroom in Williamsburg,2438907,Amjad,Brooklyn,Williamsburg,40.71894,-73.96403,Entire home/apt,199,3,23,2018-06-26,0.63,1,0 +13685932,Hudsonview Terrace in Hell's Kitchen,6608774,Dustin,Manhattan,Hell's Kitchen,40.76609,-73.99305,Private room,150,3,0,,,1,0 +13686022,Quiet bedroom in a shared apt at the center of BK.,57628579,Alexander,Brooklyn,Gowanus,40.68078,-73.984,Private room,64,2,2,2016-07-25,0.06,1,0 +13686122,Spacious 1 Bedroom steps away from Union Square,79713170,Jesse,Manhattan,East Village,40.73202,-73.98766,Entire home/apt,250,5,0,,,1,0 +13686425,"Cozy Room, Gorgeous Penthouse Apartment, Manhattan",46253146,Raquel,Manhattan,Harlem,40.82924,-73.94783,Private room,50,1,0,,,1,0 +13686914,Murray Hill/Midtown East Flex Bedroom,28250527,Elisa,Manhattan,Midtown,40.75257,-73.97148,Private room,65,1,0,,,1,0 +13686978,Sun-filled loft,79724562,Theodora,Manhattan,East Village,40.72577,-73.99169,Entire home/apt,118,10,1,2016-07-30,0.03,1,0 +13687060,Luxury drmn Bldg + Empire State Views & Roof Top!,21419119,Sebastien,Manhattan,Kips Bay,40.74033,-73.98268,Entire home/apt,189,365,7,2018-03-11,0.19,1,362 +13687101,Private room in a hip neighborhood,79725282,Izzi,Manhattan,Upper East Side,40.76601,-73.95814,Private room,79,1,3,2016-07-28,0.08,1,0 +13687180,Clean Comfy Room in Clinton Hill,27473592,Sam,Brooklyn,Clinton Hill,40.68297,-73.96115,Entire home/apt,75,1,2,2016-08-09,0.05,1,0 +13688249,Modern loft in great neighborhood,79743216,Stepha,Brooklyn,Bushwick,40.70416,-73.9211,Entire home/apt,100,5,2,2016-07-31,0.06,1,0 +13688316,Cozy 1BR on the UES near 6 Train,79744263,Eddy,Manhattan,Upper East Side,40.77386,-73.95348,Entire home/apt,200,6,0,,,1,0 +13688372,Quiet room 25 min from Manhattan,32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92196,Private room,65,1,126,2019-06-22,3.50,3,0 +13688670,Lovely 2-bed apt 20' to Manhattan. Walk to train,79751520,Julia,Queens,Forest Hills,40.71307,-73.84833,Entire home/apt,90,1,35,2019-06-14,3.31,2,310 +13688739,Comfy Cave Inn,79752355,Eduardo,Bronx,Fordham,40.85859,-73.89571,Entire home/apt,65,1,9,2017-09-02,0.25,1,0 +13688888,"Great Studio Apartment, 15-20mins from Downtown",79753770,Katrina,Manhattan,Washington Heights,40.83669,-73.94274,Entire home/apt,125,3,27,2019-05-23,0.79,2,308 +13689663,Great Room in Charming Nolita Apartment,8338942,Victor,Manhattan,Nolita,40.72241,-73.99377,Private room,124,1,168,2019-06-22,4.58,4,147 +13689706,If Tinkerbell Lived in Bedstuy Brooklyn <3,46083939,Keona,Brooklyn,Bedford-Stuyvesant,40.69008,-73.92661,Entire home/apt,120,1,34,2018-01-01,0.94,1,0 +13693976,Spacious Apartment in Crown Heights,79820757,Blondine,Brooklyn,Crown Heights,40.67611,-73.94106,Entire home/apt,300,3,83,2019-07-06,2.43,2,218 +13694021,"BasementSolo Private bedRoom No +Window in NYC, 2E",31307789,Luffy,Queens,Corona,40.74736,-73.85587,Shared room,27,2,13,2019-06-21,0.35,2,361 +13694127,Williamsburg 5 minutes from Manhattan,79824377,Inger-Lise,Brooklyn,Williamsburg,40.70902,-73.9511,Private room,75,4,0,,,1,0 +13694129,"Manhattan-very close to everywhere +muy cercadetodo",71886811,W. Alvaro,Manhattan,Morningside Heights,40.81596,-73.95999,Private room,86,6,34,2019-03-27,0.93,3,90 +13694279,Sunny Private 2 Bedroom Apt. in a Victorian House,42605385,Cameron,Brooklyn,Flatbush,40.63627,-73.96514,Entire home/apt,113,7,0,,,3,0 +13694429,Convenient Manhattan room above express trains,79738917,Kaushik,Manhattan,Harlem,40.80968,-73.95355,Private room,69,4,0,,,1,0 +13694692,Queens size bed in a safe & spacious bedroom,21325944,Xi,Manhattan,Harlem,40.81932,-73.95761,Private room,50,2,16,2019-06-28,0.46,1,0 +13695031,Beautiful Chelsea Apartment with many amenties,52237758,Lara,Manhattan,Chelsea,40.74075,-73.99567,Entire home/apt,155,2,1,2016-06-27,0.03,1,0 +13696003,"Beautiful, well-lit pre-war apt",3792661,Ben,Manhattan,Morningside Heights,40.80974,-73.96034,Private room,90,7,4,2017-12-17,0.12,1,0 +13696267,Pretty private room in Brooklyn by Prospect park,29013448,Mari,Brooklyn,Prospect-Lefferts Gardens,40.65836,-73.96161,Private room,44,2,15,2017-09-07,0.43,2,0 +13697001,A shared spacious bedroom with attached bathroom,52267190,Jas,Queens,Ozone Park,40.68226,-73.84396,Shared room,25,1,0,,,1,0 +13697770,Kid Friendly 2BDR in Greenwich Village w/ Balcony,3074354,Sachi,Manhattan,Greenwich Village,40.7293,-73.99479,Entire home/apt,499,4,0,,,1,0 +13698019,"Roof Deck, Grill & Private Room! Live like a local",24341064,Dori,Brooklyn,Sunset Park,40.66131,-73.99563,Private room,90,2,16,2016-11-07,0.44,1,0 +13698284,True 1 Bedroom Apt in Manhattan's Lower East Side,7147901,Sabrina,Manhattan,Lower East Side,40.71526,-73.98484,Entire home/apt,118,1,6,2016-09-24,0.16,1,0 +13698623,Melrose Place...,33862021,Victor,Bronx,Melrose,40.82296,-73.91429,Private room,42,2,2,2016-10-24,0.06,1,0 +13698789,Room Overlooking Hudson River in a Big Apartment,57123462,Sava,Manhattan,Harlem,40.82717,-73.95249,Private room,57,5,4,2017-05-24,0.11,1,0 +13699008,Warm sun bathed loft apartment in Greenpoint.,74310552,Jordan,Brooklyn,Greenpoint,40.73461,-73.95724,Entire home/apt,150,4,3,2019-02-10,0.24,1,0 +13699396,Room in Williamsburg close to L/G/M/J/Z trains,4283766,Francisco,Brooklyn,Williamsburg,40.71005,-73.95509,Private room,66,7,0,,,1,0 +13699944,Sunny beautiful bedroom in 1 bedroom apartment.,79834985,Sydnei,Manhattan,Tribeca,40.71798,-74.01253,Entire home/apt,95,7,0,,,1,0 +13700144,Great Room in NY close Upper East Side,33411808,Maxime,Manhattan,East Harlem,40.78559,-73.94345,Private room,40,3,0,,,1,0 +13700298,Private room w/ ac- in Manhattan,61585786,Brian,Manhattan,Washington Heights,40.83619,-73.94099,Private room,65,7,103,2019-06-07,2.79,1,11 +13700820,Private Room with Queen-size Bed,3856352,Bryan,Manhattan,East Harlem,40.7974,-73.9354,Private room,40,4,14,2018-11-27,0.41,1,0 +13700836,Your home in Flatiron NYC,4960457,Al,Manhattan,Flatiron District,40.7414,-73.99075,Entire home/apt,215,45,0,,,1,25 +13702697,2 Bdr gem by Time sq,79951689,Andrea,Manhattan,Hell's Kitchen,40.76496,-73.99415,Entire home/apt,199,5,0,,,1,0 +13705844,Master Bedroom in Quaint French Neighborhood,37707224,Mørgan Keon,Brooklyn,Gowanus,40.67961,-73.98886,Private room,65,1,0,,,1,0 +13707310,Beautiful spacious room available in Brooklyn,7747816,Brooks,Brooklyn,Crown Heights,40.67089,-73.96035,Shared room,70,1,0,,,1,0 +13707813,"Harlem Apt, along 1 train",79546891,Brigitte,Manhattan,Harlem,40.82,-73.95331,Private room,59,4,8,2018-07-16,0.26,1,0 +13708336,Stylish 1BD in the heart of East Village,840987,Pasha,Manhattan,East Village,40.72603,-73.98915,Entire home/apt,150,3,0,,,1,0 +13708345,"furnished basement level apartment , 1000 sq ft",80023687,Lb,Brooklyn,Greenpoint,40.73233,-73.95443,Entire home/apt,300,1,1,2016-07-02,0.03,1,83 +13708820,"Safe upper-class area,20 min to Manhattan/Airports",15838559,Weimin,Queens,Forest Hills,40.71429,-73.85088,Private room,59,3,15,2018-08-04,0.41,4,0 +13709910,CUTE & QUIET ROOM IN A BROWNSTONE IN CLINTON HILL,10366292,Lea,Brooklyn,Clinton Hill,40.6854,-73.96395,Private room,45,7,1,2017-10-11,0.05,3,0 +13710241,A Cozy Bedroom in 2 Bedroom Apt,6110471,Yarynka,Manhattan,Harlem,40.801,-73.95833,Private room,110,1,23,2019-06-09,1.00,1,146 +13711038,Beautiful room in Williamsburg (Roebling and N7),62149112,Sam,Brooklyn,Williamsburg,40.71576,-73.95576,Private room,65,1,3,2017-08-19,0.11,1,0 +13711439,Air-Conditioned 2BR w Stunning View,80068221,Scott,Brooklyn,Sunset Park,40.66448,-73.99407,Entire home/apt,130,2,3,2016-08-06,0.08,1,0 +13712165,A Clean Well-lighted Place (luxury 1BR w/balcony),22447216,Rodrigo,Manhattan,Kips Bay,40.73887,-73.98177,Entire home/apt,300,1,0,,,1,0 +13712179,Brooklyn Heights retreat,45924792,Liz,Brooklyn,Brooklyn Heights,40.69027,-73.99418,Entire home/apt,111,4,2,2016-07-21,0.05,1,0 +13712266,Large Private Sun Drenched Bedroom in Ridgewood,69001602,Eugene,Queens,Ridgewood,40.70605,-73.89928,Private room,48,2,6,2018-05-13,0.17,1,0 +13712336,NEAT AND TIDY EDEN,68404305,David,Brooklyn,Brownsville,40.66462,-73.91873,Private room,65,3,47,2019-01-17,1.28,1,300 +13713304,Private room in 2BR in Morningside Heights,80091971,Brian,Manhattan,Upper West Side,40.80421,-73.96738,Private room,75,2,17,2016-09-25,0.46,2,0 +13714218,Sunny apartment in Brooklyn brownstone,4230541,Aaron,Brooklyn,Clinton Hill,40.68446,-73.96528,Private room,200,2,0,,,1,0 +13714244,Cozy Little Italy Apartment,80107649,Haley,Manhattan,Lower East Side,40.7188,-73.99458,Private room,99,3,10,2017-01-01,0.28,1,0 +13714531,Huge 2 bed/2 bath in the heart of Clinton Hill!,19094327,Amy,Brooklyn,Clinton Hill,40.68141,-73.96268,Entire home/apt,225,1,3,2016-08-25,0.08,1,0 +13714537,Very cozy room in heart of Astoria,80114315,Ljubenka,Queens,Astoria,40.75965,-73.91095,Private room,65,5,10,2016-11-28,0.28,1,68 +13715386,"Large, basic room in great location",10737943,David,Manhattan,Upper East Side,40.77672,-73.94697,Private room,51,30,9,2019-06-22,0.25,10,220 +13715661,"2 BR, 2 BA Penthouse w 2 private decks",32928497,Jennifer,Brooklyn,Fort Greene,40.69503,-73.97286,Entire home/apt,175,3,5,2017-09-05,0.14,1,0 +13715798,1 Clean room in 2BR Apt Manhattan,19572312,Alejandra,Manhattan,East Village,40.72695,-73.98546,Private room,120,1,2,2016-07-25,0.06,1,0 +13715977,Cozy room in Central Harlem. Lively neighborhood.,60812510,Lisa,Manhattan,Harlem,40.81818,-73.93905,Private room,49,1,12,2017-08-24,0.33,1,0 +13716080,"Cute, Vintage UWS Private Room/Bath",41067998,Andrea,Manhattan,Upper West Side,40.78817,-73.98068,Private room,175,2,0,,,1,0 +13720750,Spacious Studio Apartment,80061565,Brian,Bronx,Schuylerville,40.8355,-73.83729,Entire home/apt,71,2,118,2019-07-01,3.24,1,34 +13721612,Large 1 Br in Upper East blocks from Central Park,79929686,Kyle,Manhattan,Upper East Side,40.77857,-73.9539,Entire home/apt,350,3,0,,,1,0 +13722149,1 bed room apt in NYC near Empire State Building,8327308,Faisal,Manhattan,Midtown,40.74754,-73.98309,Entire home/apt,119,7,1,2016-08-01,0.03,1,0 +13723312,Loft-like 1 br Apt in Brownstone in Central Harlem,5267723,Piero,Manhattan,Harlem,40.81139,-73.94094,Entire home/apt,110,7,0,,,1,0 +13723345,"Right in the center of Chelsea, quiet and private.",2305978,Emmanuel,Manhattan,Chelsea,40.7427,-73.99837,Entire home/apt,185,2,147,2019-06-20,4.07,2,114 +13724284,"LARGE APT-lovely, comfortable in vibrant Brooklyn!",9243105,Sam & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65727,-73.9601,Entire home/apt,115,1,227,2019-07-07,6.23,1,294 +13724932,1-bedroom on Franklin Ave,6263778,Shaeera,Brooklyn,Crown Heights,40.6698,-73.95835,Private room,90,2,0,,,1,0 +13725194,"Bright and spacious room in Bushwick, Brooklyn",49367785,Jordan,Brooklyn,Bushwick,40.69757,-73.92906,Private room,45,5,0,,,1,0 +13725208,Private room in Manhattan's Lower East Side,64571012,Sarah,Manhattan,Lower East Side,40.72009,-73.98631,Private room,50,2,1,2016-07-16,0.03,1,0 +13725947,"Large bedroom, with sunny deck backyard.",2352388,Mas,Brooklyn,Crown Heights,40.67992,-73.95902,Private room,80,1,22,2018-12-16,0.60,1,0 +13725995,Full 1-Bedroom in a Picturesque Brownstone,3571172,Hugh,Manhattan,Harlem,40.81251,-73.94524,Entire home/apt,95,1,2,2016-07-25,0.06,1,0 +13726217,"Private Rm in Williamsburg, thermarest",7377615,L.,Brooklyn,Williamsburg,40.70877,-73.96054,Private room,50,1,0,,,2,0 +13726629,CLEAN COMFORTABLE ROOM 7 MIN FR JFK,20134231,Paulette,Queens,Springfield Gardens,40.66298,-73.7621,Private room,40,2,187,2019-03-08,5.12,3,352 +13726934,East Village Manhattan NYC Sofas!,2208993,Chris,Manhattan,East Village,40.72376,-73.98303,Shared room,30,3,10,2019-05-19,0.27,3,0 +13727297,Beautiful 2 bedroom apartment in the West Village,7689009,Amanda,Manhattan,West Village,40.73208,-74.00784,Entire home/apt,225,2,1,2016-09-10,0.03,1,0 +13727995,Large Bedroom in Bushwick,579391,Yuan,Brooklyn,Bushwick,40.70091,-73.93809,Private room,65,2,12,2018-10-02,0.34,1,0 +13728033,Large Studio in quite Midtown East,58625222,Mike,Manhattan,Midtown,40.75449,-73.96545,Entire home/apt,199,3,0,,,1,0 +13728204,Apartment NYC,76314424,Alejandra,Queens,Long Island City,40.74543,-73.94595,Entire home/apt,125,5,12,2018-12-16,0.33,1,3 +13728712,Charming brick brownstone (2nd floor),2026554,Maggie,Brooklyn,Bushwick,40.70173,-73.91504,Entire home/apt,89,3,14,2018-11-17,0.39,1,0 +13729180,"Prime Village NOHO, renovated designed2BR~W/D unit",2119276,Host,Manhattan,East Village,40.72927,-73.99039,Entire home/apt,300,30,2,2017-05-02,0.06,39,310 +13729876,Bright Williamsburg Oversized Loft-like Space!,23424348,N-And-A,Brooklyn,Williamsburg,40.71301,-73.9495,Entire home/apt,200,30,47,2019-05-25,1.41,1,298 +13729934,Sunny One Bedroom Brownstone Apt by Central Park,3564306,Josh,Manhattan,Upper West Side,40.78829,-73.9701,Entire home/apt,200,1,17,2016-12-31,0.47,1,0 +13730254,East Village Sunny Studio,30708411,Ramses,Manhattan,East Village,40.73183,-73.98513,Entire home/apt,129,4,7,2018-08-27,0.31,1,0 +13730284,Modern E. Village 2BR/2BA - Private Back yard!,65227208,Barbara,Manhattan,East Village,40.72454,-73.97931,Entire home/apt,495,3,52,2019-05-06,1.51,1,285 +13730290,"Private suite, near Central Park & Columbia U.",75857,Beatrice,Manhattan,Harlem,40.80477,-73.94797,Private room,125,3,14,2019-07-01,0.42,1,121 +13730495,"Carroll Gardens, Private Garden Apartment (1BD)",37310365,Tiz,Brooklyn,Gowanus,40.67921,-73.99226,Entire home/apt,185,3,93,2019-06-23,2.58,1,77 +13731019,Huge Room in Penthouse Apartment (Upper West Side),80320245,Samantha,Manhattan,Upper West Side,40.77841,-73.98028,Private room,92,1,4,2017-03-25,0.11,1,0 +13731797,Beautiful Sugar Hill Brownstone apartment,62777136,Eszter,Manhattan,Harlem,40.82485,-73.94537,Entire home/apt,119,7,0,,,1,0 +13731898,Artist's House 3 blocks from L Train,149833,Joy And Mike,Brooklyn,Bushwick,40.70335,-73.91583,Entire home/apt,120,3,2,2016-08-22,0.06,1,0 +13732047,5 Star East-African Safari Experience + Concierge,37927366,Mufaro,Manhattan,Harlem,40.82971,-73.94521,Entire home/apt,500,5,0,,,1,0 +13732215,Beautiful place,80333311,Anmarie,Brooklyn,Canarsie,40.63723,-73.90854,Entire home/apt,80,1,104,2019-06-08,2.86,1,97 +13733036,2 bedroom apartment in heart of Chinatown!,36234842,Elise,Manhattan,Chinatown,40.71709,-73.99628,Entire home/apt,124,4,0,,,1,0 +13733309,Upper West Side apartment with balcony,60002757,Alex,Manhattan,Upper West Side,40.7921,-73.97031,Entire home/apt,85,2,3,2016-07-26,0.08,1,0 +13733733,Private Room in RENOVATED Brooklyn Apartment,9111709,Eric,Brooklyn,Flatbush,40.63964,-73.95629,Private room,55,1,11,2017-06-08,0.31,1,0 +13733766,Nice room w private bathroom in Bedstuy/Bushwick,32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68742,-73.92212,Private room,82,1,4,2018-05-13,0.15,3,0 +13733926,Complete apartment/room at 100th,37736307,Rafael,Manhattan,East Harlem,40.78918,-73.94995,Entire home/apt,150,3,18,2017-06-05,0.49,2,0 +13734035,One Br East Village Apt Close to All Things Good!,50204678,Euni,Manhattan,East Village,40.72753,-73.97825,Entire home/apt,250,2,3,2017-09-03,0.08,1,0 +13734814,Clean Lines Rule: Modern and Spacious and Orange,16725289,Sue,Brooklyn,Windsor Terrace,40.64785,-73.97595,Entire home/apt,150,2,1,2018-06-30,0.08,1,0 +13739108,Luxury 1 bedroom apt. Downtown Brooklyn/Dumbo,44941423,Bryan,Brooklyn,Downtown Brooklyn,40.69751,-73.98454,Entire home/apt,121,5,4,2017-08-09,0.12,1,0 +13740409,Perfect Home for US Open Stay,33064589,Elena,Queens,Flushing,40.74953,-73.79677,Entire home/apt,350,3,1,2016-08-27,0.03,1,0 +13740419,Silvertowers - Sky Collection Studio Loft 59th Fl,80437226,Alexander,Manhattan,Hell's Kitchen,40.7598,-73.99978,Entire home/apt,115,1,0,,,1,0 +13740704,"Cozy,budget friendly, cable inc, private entrance!",20583125,Michel,Brooklyn,Flatlands,40.63222,-73.93398,Private room,45,8,10,2018-12-12,0.70,1,85 +13740793,Beautiful Elevator Bldg near Columbia University,76590834,Omar,Manhattan,Upper West Side,40.80165,-73.96497,Private room,65,1,0,,,1,0 +13741194,Williamsburg Oasis,8237570,Akash,Brooklyn,Williamsburg,40.71782,-73.95013,Private room,200,1,5,2019-05-05,0.15,2,364 +13742783,Spacious Top Floor 2 BR Unit with Balcony,80463005,Anita,Brooklyn,Flatbush,40.63316,-73.96606,Entire home/apt,120,2,48,2018-04-08,1.36,1,53 +13743350,cozy two bedroom apt by central park,5490071,Alex,Manhattan,East Harlem,40.78672,-73.94519,Entire home/apt,175,3,119,2019-06-28,3.31,3,238 +13743786,City Views Close to SI Ferry,80470317,Sergey,Staten Island,Clifton,40.62356,-74.07571,Entire home/apt,120,1,82,2019-06-30,2.26,1,310 +13744371,An Architect's Room in Brooklyn,33381088,Dana,Brooklyn,Bedford-Stuyvesant,40.69218,-73.94678,Private room,49,3,2,2016-08-02,0.06,1,0 +13744765,Large family loft in the best Chelsea location,42782892,Masha,Manhattan,Chelsea,40.74107,-73.99595,Entire home/apt,250,5,4,2019-01-02,0.11,1,0 +13744807,Cooper Square Top-Floor Duplex with Terrace,438572,Adrian,Manhattan,East Village,40.7281,-73.99067,Entire home/apt,250,2,3,2016-08-15,0.08,1,0 +13745149,1 Bedroom Williamsburg Apartment,7377615,L.,Brooklyn,Williamsburg,40.70784,-73.95884,Entire home/apt,110,3,1,2016-08-03,0.03,2,0 +13745575,2 Bedroom Apartment / Prime Williamsburg Location,1571120,Timothy + Gina,Brooklyn,Williamsburg,40.71104,-73.96098,Entire home/apt,199,2,31,2019-05-22,0.88,2,23 +13745644,Luxury Apartment with a Spectacular Skyline View,10471651,Anna,Manhattan,Upper East Side,40.76309,-73.95697,Entire home/apt,350,3,12,2019-06-25,0.34,1,301 +13745898,Your own sunny apartment,2495361,Jillian,Manhattan,Two Bridges,40.71274,-73.99662,Entire home/apt,124,3,1,2016-07-26,0.03,1,0 +13746257,Prime North Williamsburg Luxury Studio,80501262,Raquel,Brooklyn,Williamsburg,40.718,-73.9525,Entire home/apt,175,2,9,2018-12-30,0.29,1,0 +13746962,Private room in a 2 Bedroom apartment - Chelsea,23863809,Arthur,Manhattan,Chelsea,40.73938,-73.99855,Private room,150,3,0,,,2,0 +13747861,Sunny Bed Stuy Haven,7009626,Halle,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94309,Entire home/apt,295,2,16,2017-07-30,0.44,1,0 +13748546,Bright & Light Chelsea One Bedroom,80315972,Meghan,Manhattan,Chelsea,40.74361,-73.99885,Entire home/apt,210,2,1,2016-07-14,0.03,1,0 +13748851,Perfect Studio Facing Quiet Garden - East VIllage,80534927,Claire,Manhattan,East Village,40.72778,-73.98335,Entire home/apt,125,2,3,2016-10-15,0.08,1,0 +13749286,Cozy apartment 1 block from Washington Square Park,3137526,Phil,Manhattan,Greenwich Village,40.72994,-73.99953,Entire home/apt,112,7,0,,,2,0 +13749474,The Brooklyn RedStone,40507839,Terrie,Brooklyn,Bedford-Stuyvesant,40.68574,-73.92975,Entire home/apt,118,3,20,2019-07-01,3.21,1,33 +13750084,Spacious room in heart of Williamsburg,8035063,Mathew,Brooklyn,Williamsburg,40.70861,-73.95414,Private room,85,1,0,,,1,0 +13750448,Gloriously Sunny Brooklyn Pad!,6816955,Callie And Sean,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95457,Private room,53,2,121,2019-06-16,3.30,1,348 +13750770,Two Bed Apt w/ Private Patio in Prime EastVillage,58208399,Brett,Manhattan,East Village,40.72576,-73.98691,Entire home/apt,200,2,11,2018-08-12,0.30,1,0 +13750812,Private room w/ 2 Beds,65809485,Shirley,Queens,Flushing,40.74821,-73.82948,Private room,40,7,19,2019-06-23,0.52,12,251 +13751603,Private room close to the center of Williamburg,80571474,August,Brooklyn,Williamsburg,40.71428,-73.95172,Private room,60,1,0,,,1,0 +13751992,Spacious and charming living room in Brooklyn ;),16951458,Inna,Brooklyn,Midwood,40.61978,-73.95605,Shared room,50,1,16,2017-08-15,0.46,1,0 +13752222,"Chelsea -Cozy, quiet, and charming bedroom",4328118,Ned,Manhattan,Chelsea,40.74601,-74.00028,Private room,135,2,2,2019-06-23,1.20,1,336 +13752439,Your Home away from Home!,71564201,Fabian,Queens,Jamaica,40.6711,-73.76508,Private room,61,1,58,2017-04-29,1.77,1,0 +13752672,Cheap! Couch to crash - Upper East Side (Safe&Fun),28930916,Kay,Manhattan,Upper East Side,40.78112,-73.95214,Shared room,42,1,50,2019-07-02,1.41,1,343 +13752815,"Bright, Spacious Home Near Beach & Subway",36234811,Anna,Queens,Arverne,40.59051,-73.79152,Private room,69,1,51,2019-06-11,1.40,4,152 +13752982,Two Bedroom on the Upper East Side,80593607,Theodore,Manhattan,Upper East Side,40.77788,-73.95615,Entire home/apt,105,1,3,2016-08-23,0.08,1,0 +13753375,2 Bedroom apartment in Prime Williamsburg!,1434340,Yana,Brooklyn,Williamsburg,40.70938,-73.95435,Entire home/apt,150,1,174,2019-06-27,4.84,1,236 +13754002,Charming Upper East Side 1BR,34075048,George,Manhattan,Upper East Side,40.76991,-73.95189,Entire home/apt,240,4,26,2019-05-25,0.75,1,188 +13754150,Elegant Stu Suite in Midtown East -21,80479138,Gordon,Manhattan,Midtown,40.75965,-73.96543,Entire home/apt,140,30,14,2019-05-31,0.39,5,75 +13757434,"PRIVATE LARGE STUDIO FOR YOU, PLUS!",46644337,Sha,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94101,Entire home/apt,90,2,113,2019-06-22,3.08,3,262 +13757845,Centrally Located One Bedroom Apt,5514044,Garron,Manhattan,Chelsea,40.73942,-74.00065,Entire home/apt,199,2,1,2016-09-16,0.03,1,0 +13760233,"Charming Bedroom, Incredible Location",8457214,Sarah,Manhattan,Nolita,40.72232,-73.99579,Private room,65,3,2,2016-08-13,0.05,2,0 +13760302,Private Micro Room 3,59529529,Han,Manhattan,Hell's Kitchen,40.76277,-73.99424,Private room,70,1,220,2019-06-30,6.00,6,180 +13761271,Flushing Private Room W/ bathroom W/2 Quee Bed/1FL,65809485,Shirley,Queens,Flushing,40.74988,-73.82884,Private room,60,7,82,2019-06-11,2.34,12,152 +13761654,Great room in a spacious apartment DT Manhattan,327900,T,Manhattan,Lower East Side,40.72144,-73.98655,Private room,69,1,10,2016-12-18,0.27,2,187 +13761856,Modern bright spacious duplex apartment,20183212,Jonathan,Manhattan,Harlem,40.8235,-73.94332,Entire home/apt,250,5,74,2019-07-03,2.03,1,216 +13762046,Private Micro Room 1,59529529,Han,Manhattan,Hell's Kitchen,40.76296,-73.99565,Private room,70,1,247,2019-07-01,6.74,6,161 +13762234,Lovely 1BR on the Upper East Side,9251010,Marina,Manhattan,Upper East Side,40.7732,-73.95173,Entire home/apt,175,2,8,2016-12-12,0.23,1,0 +13762667,"EAST VILLAGE, Tompkins Park, Private Rm + Bathroom",1003394,Deep,Manhattan,East Village,40.7294,-73.98021,Private room,110,4,12,2017-05-21,0.33,1,0 +13763369,Bedroom available with closet space,43688213,Ryan,Queens,Astoria,40.76736,-73.91462,Private room,50,5,3,2017-07-25,0.08,1,0 +13763512,Classic Exposed Brick Apartment in East Village,40008334,Jennifer,Manhattan,East Village,40.7282,-73.98001,Private room,75,1,159,2019-06-23,4.34,1,84 +13763917,Marabou,17370376,Christian,Brooklyn,Crown Heights,40.67431,-73.95399,Private room,55,30,19,2018-08-11,0.52,1,281 +13764238,SPACE & LIGHT 3 Blocks from Union Square,80721470,Alexandre,Manhattan,Gramercy,40.73491,-73.984,Private room,75,2,1,2016-07-26,0.03,1,0 +13764772,1br in Beautiful 2br-Prime location (LIC/Astoria),24295412,Shaheen,Queens,Astoria,40.75818,-73.92513,Private room,30,6,0,,,1,0 +13764984,Suburban Living in Brooklyn,80731010,Patricia,Brooklyn,Canarsie,40.6415,-73.88739,Entire home/apt,90,2,54,2018-07-22,1.47,1,64 +13765146,Private Room One Block North of Central Park,45543753,Jonathan,Manhattan,Harlem,40.80046,-73.95509,Private room,70,1,8,2016-08-01,0.22,1,0 +13765644,1 bedroom steps from Barclay center and 11 trains,5611600,Kyler,Brooklyn,Boerum Hill,40.68473,-73.97868,Entire home/apt,140,2,5,2016-08-27,0.14,2,0 +13765918,Eclectic Artist's Apartment in PRIME East Village,22069376,Alyssa,Manhattan,East Village,40.7257,-73.98635,Entire home/apt,200,1,38,2019-06-27,3.41,1,123 +13765949,Cute sunny Upper East Side Studio,64839278,Opeyemi,Manhattan,Upper East Side,40.77316,-73.94998,Entire home/apt,120,2,29,2017-12-30,0.80,1,0 +13766130,Sunny room in Williamsburg with view of Manhattan,29600525,Andrew,Brooklyn,Williamsburg,40.70854,-73.96242,Private room,85,2,122,2019-06-14,3.35,1,258 +13766690,Shady Listing - Authentic NY'r,13408910,Tmc,Bronx,Concourse,40.82948,-73.92364,Private room,82,4,0,,,2,0 +13767238,"2 bedroom w/ private back yard, laundry in unit!",24908787,William,Manhattan,SoHo,40.72541,-74.001,Entire home/apt,200,30,1,2016-07-06,0.03,1,0 +13767337,Huge sunlit 1 bedroom next tosubway,1777689,Lyoka,Brooklyn,Sheepshead Bay,40.60733,-73.95322,Entire home/apt,225,2,1,2018-07-08,0.08,1,364 +13767853,Sunny 1 bdrm w private outdoor deck in Greenpoint!,61170181,Gabriella,Brooklyn,Greenpoint,40.72748,-73.95272,Private room,75,3,0,,,1,0 +13768719,Cosy flat West Village,5950785,Xavier,Manhattan,West Village,40.73316,-74.00183,Entire home/apt,230,2,9,2018-05-12,0.25,1,0 +13769006,Spacious Bright Private Room in Bedstuy!,80778982,Ilham,Brooklyn,Bedford-Stuyvesant,40.6847,-73.91762,Private room,50,1,0,,,1,0 +13769222,Cozy room in artsy Bushwick home,80780369,Lauren,Queens,Ridgewood,40.71118,-73.9151,Private room,35,1,2,2016-08-16,0.06,1,0 +13769300,Spacious Serene Room Located in Prime E. Flatbush,77778146,Andre,Brooklyn,East Flatbush,40.63348,-73.94737,Private room,95,1,20,2018-09-04,0.58,8,189 +13769545,Comfy bed in Cozy Home - GRAND ARMY PLAZA,80777352,Mary,Brooklyn,Prospect Heights,40.67403,-73.96798,Private room,48,2,131,2019-06-01,3.88,1,333 +13769969,Private bedroom with great views,24054404,Sahul,Brooklyn,Greenpoint,40.72249,-73.94776,Private room,50,5,3,2017-03-08,0.08,1,0 +13770179,Cozy Private masterRoom 2 Blocks from Central Park,80794677,Yi,Manhattan,Upper West Side,40.79938,-73.96235,Private room,48,1,4,2016-08-25,0.11,1,0 +13770490,Flushing Spacious Room w/ 2 Queen Beds (1FL),65809485,Shirley,Queens,Flushing,40.74879,-73.82958,Private room,55,3,47,2019-04-21,1.33,12,65 +13770587,Carroll Gardens 1 Bedroom Studio Apartment,64116761,Philip,Brooklyn,Carroll Gardens,40.67747,-73.99917,Entire home/apt,100,5,0,,,1,0 +13770680,Flushing Deluxe Room w/ 2 Bed (1FL),65809485,Shirley,Queens,Flushing,40.74875,-73.82775,Private room,50,7,55,2019-01-24,1.57,12,160 +13770759,Cozy Room w/ Queen Bed (1FL),65809485,Shirley,Queens,Flushing,40.75026,-73.82873,Private room,40,7,59,2019-06-12,1.67,12,120 +13770780,Super sunny and spacious! Privacy!,38404959,Maria,Queens,Ditmars Steinway,40.77697,-73.9082,Private room,60,2,10,2018-09-27,0.38,2,364 +13770856,Comfortable Room w/ 1 Full Bed (1FL),65809485,Shirley,Queens,Flushing,40.74944,-73.82772,Private room,40,3,51,2019-05-09,1.45,12,96 +13770959,Beautiful 2 BR Garden Dplx in BK (w/ opt nursery),978029,Meriwether,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95811,Entire home/apt,245,5,0,,,1,0 +13770996,Sunny spacious apartment in Heart of NYC,4923567,Jan,Manhattan,Upper East Side,40.7777,-73.9535,Entire home/apt,135,3,32,2019-04-07,0.88,1,84 +13771435,Friendly Upper West Side Apartment,2025836,Anna,Manhattan,Upper West Side,40.78176,-73.97822,Entire home/apt,150,1,2,2016-07-29,0.06,1,0 +13771529,"Beautiful, Clean, Private & Chic furnished Apt.",73717067,Nichole,Manhattan,Harlem,40.82661,-73.94165,Entire home/apt,100,4,6,2019-07-01,0.17,1,27 +13771885,Sweet room in Brooklyn,47577415,Marie And Alec,Brooklyn,Flatlands,40.62971,-73.93336,Private room,45,1,9,2017-11-22,0.26,1,189 +13771957,Cozy and clean room in 2 bedrooms apartment,22028840,Miki,Manhattan,Washington Heights,40.85308,-73.92878,Private room,55,3,71,2018-03-24,1.93,2,0 +13772304,Room in 2BR in Morningside Heights,80091971,Brian,Manhattan,Upper West Side,40.80268,-73.96684,Private room,80,1,2,2016-07-23,0.06,2,0 +13772589,Beachside Antique Themed Room,36380968,Alex,Brooklyn,Brighton Beach,40.57577,-73.96115,Private room,60,1,18,2019-07-05,2.78,2,343 +13777303,Chelsea Modern 1 BR. Apartment,70181692,Sayed,Manhattan,Midtown,40.74595,-73.98996,Entire home/apt,399,1,1,2016-08-08,0.03,1,0 +13778127,Studio with own back yard and new kitchen,80886117,Joanna,Manhattan,Upper East Side,40.7731,-73.95169,Entire home/apt,150,4,20,2019-04-28,0.55,1,82 +13778951,Iconic BK spot steps from mass transit.,5611600,Kyler,Brooklyn,Boerum Hill,40.68473,-73.97863,Shared room,47,1,0,,,2,0 +13779358,Home away from home. Contemporary!,80894027,Patrick,Queens,Jackson Heights,40.7532,-73.87731,Entire home/apt,125,3,12,2019-06-17,0.35,1,274 +13780126,Studio apartment 10minute to JFK 20m to Manhattan,80904983,Eddie,Queens,Briarwood,40.71116,-73.81514,Entire home/apt,75,2,57,2019-05-17,1.55,1,314 +13780748,"Downtown Brooklyn, Luxury-One bed Apartment",22541573,Ken,Brooklyn,Downtown Brooklyn,40.69037,-73.98206,Entire home/apt,202,30,1,2017-09-04,0.04,87,365 +13780778,Upper West Side,59788392,Abie,Manhattan,Upper West Side,40.78573,-73.97686,Private room,80,1,0,,,1,0 +13781978,Beautiful Room in Modern Duplex,71857900,Jacqueline,Queens,Astoria,40.77153,-73.93191,Private room,150,2,0,,,1,0 +13782517,Cozy Room in the lovely neighborhood of Bed Stuy,75442218,Loreto,Brooklyn,Bedford-Stuyvesant,40.68155,-73.93639,Private room,45,3,6,2017-12-10,0.18,1,0 +13782533,Very private/cute/spacious room,15700083,Sarah,Queens,Maspeth,40.71609,-73.9025,Private room,30,20,0,,,1,0 +13782654,Large master bedroom one block from Prospect Park,819636,Matt,Brooklyn,Prospect Heights,40.67575,-73.96546,Private room,102,1,5,2016-09-06,0.14,1,0 +13783769,"Private Studio Apt+Bath, Luxury King, Kitchenette",5684580,Ryan,Brooklyn,Williamsburg,40.71474,-73.94461,Entire home/apt,55,4,34,2019-06-18,1.07,1,0 +13784458,Amazing 1BD in Harlem,10411030,Frances,Manhattan,East Harlem,40.79921,-73.94749,Entire home/apt,155,6,7,2018-07-01,0.21,1,0 +13785383,Cute and Cozy 1 BDR In West Harlem,80275136,Lisa,Manhattan,Harlem,40.82408,-73.95434,Entire home/apt,120,3,0,,,1,0 +13785938,Cozy One Bedroom Near Fort Tryon Park,15197019,Kate,Manhattan,Inwood,40.86082,-73.92585,Entire home/apt,95,2,2,2016-08-15,0.06,1,0 +13787558,"Dramatic Duplex, Hosted, Huge>Slp.14, Subway 50 Yd",80968378,Itzchack,Brooklyn,Carroll Gardens,40.6788,-73.99559,Entire home/apt,525,4,5,2017-05-30,0.14,1,327 +13788013,Beautiful & Bright One bedroom in Manhattan UES,10371038,Valerio,Manhattan,Upper East Side,40.77094,-73.95126,Entire home/apt,199,1,0,,,1,0 +13788132,"Sunny, cozy room in Brooklyn.",19483885,Edgar,Brooklyn,Bedford-Stuyvesant,40.69651,-73.96147,Private room,45,1,60,2019-07-02,2.27,2,224 +13794590,Comfy Queen Bed in Harlem,81080113,Christopher,Manhattan,Harlem,40.81893,-73.94118,Private room,90,1,0,,,1,0 +13794689,Spacious NYC apt by CENTRAL PARK!,4508140,Shira,Manhattan,Upper West Side,40.79426,-73.96414,Entire home/apt,150,2,11,2017-12-19,0.30,1,212 +13794822,Cozy room in 2BR apartment - Greenpoint,5574626,Jana,Brooklyn,Greenpoint,40.72325,-73.9432,Private room,59,4,1,2016-08-02,0.03,1,0 +13795455,Beautiful Apartment in Quiet Neighborhood L Train,22161599,Sarah,Queens,Ridgewood,40.6997,-73.90243,Private room,75,3,8,2018-09-14,0.22,1,81 +13795744,"Bright Private Room on L/M in Bushwick, Queen-size",49294106,Alicia,Brooklyn,Bushwick,40.69956,-73.91888,Private room,69,2,62,2019-07-01,1.80,1,16 +13795756,"Lovely S.Slope 3BR in 4BR 1300 sf dplx,deck&birds!",514261,Vanessa,Brooklyn,South Slope,40.66537,-73.98784,Private room,300,2,2,2016-09-06,0.06,3,0 +13796187,Cozy room in UWS,3290750,Sara,Manhattan,Upper West Side,40.80078,-73.9641,Private room,60,4,11,2017-05-22,0.30,1,0 +13798188,Private bedroom for the weekend,17153180,Ade,Brooklyn,East New York,40.66337,-73.89806,Private room,50,1,1,2016-07-06,0.03,1,0 +13798719,Cool apartment in Williamsburg,23291979,Adam,Brooklyn,Williamsburg,40.71515,-73.93706,Entire home/apt,150,3,2,2016-07-31,0.06,1,0 +13799109,Blake's residents,76596461,Maxine,Queens,Queens Village,40.70975,-73.73347,Private room,85,1,5,2017-09-03,0.14,1,89 +13799217,"Beautiful 1br, in heart of city",81134987,Armen,Manhattan,Kips Bay,40.74099,-73.98139,Entire home/apt,210,3,14,2019-06-21,0.39,1,327 +13800652,Room on a quiet tree-lined block of Manhattan,45992029,Sarah,Manhattan,Harlem,40.82225,-73.94549,Private room,55,1,3,2016-07-13,0.08,1,0 +13801296,FORT GREENE- Private room in spacious apartment.,81161047,Fernando & Jess,Brooklyn,Fort Greene,40.69195,-73.97151,Private room,57,7,0,,,1,0 +13801326,Beautiful book-filled room + garden in Bed Stuy,1916501,Josephine,Brooklyn,Bedford-Stuyvesant,40.68847,-73.95443,Private room,50,1,0,,,1,0 +13802195,"Comfy, Peaceful and Private studio basement!",43008736,Pamela,Brooklyn,Williamsburg,40.7171,-73.9573,Entire home/apt,100,10,0,,,1,0 +13802334,Bright chic room in Clinton hill,35775878,Lisa,Brooklyn,Clinton Hill,40.68366,-73.96563,Private room,65,7,10,2017-12-10,0.28,1,0 +13802521,"Very Clean, Comfortable Room Available",26022066,Yakup,Brooklyn,Midwood,40.61295,-73.95366,Private room,50,1,10,2019-04-28,0.30,1,0 +13802699,"Dottie's Place, Room #2...Just for You!",80819921,Traci,Queens,Rosedale,40.65218,-73.73498,Private room,70,1,0,,,1,0 +13803517,"Large, cozy 'n sweet",80770467,Tavish,Brooklyn,Bushwick,40.69306,-73.92106,Private room,40,4,1,2016-10-05,0.03,1,0 +13805038,MODERN WILLIAMSBURG DUPLEX NEAR ALL THE ACTION,8539684,Robert,Brooklyn,Williamsburg,40.70875,-73.9467,Entire home/apt,250,4,10,2017-03-05,0.27,1,0 +13808262,Nicely furnished room in a spacious apartment,177922,Dilini,Brooklyn,Prospect-Lefferts Gardens,40.65702,-73.96066,Private room,33,14,6,2017-11-25,0.17,1,0 +13810048,Brooklyn - Bushwick - NYC,81274648,Ming,Brooklyn,Bushwick,40.69677,-73.93027,Private room,46,2,126,2019-06-24,3.51,4,80 +13811008,Gorgeous Astoria 1 Br,78732090,Jonathan,Queens,Long Island City,40.74616,-73.94653,Private room,101,1,0,,,1,0 +13811490,Spacious 1BR apartment in elevator building,80040018,Azoil,Brooklyn,East Flatbush,40.65192,-73.95243,Entire home/apt,76,7,1,2016-09-01,0.03,1,0 +13811866,Cozy 1BR in Murray Hill,79086338,Enrique,Manhattan,Kips Bay,40.74077,-73.98245,Private room,70,1,1,2016-07-25,0.03,1,0 +13811933,Private furnished 1BR in a 4BR on Upper West Side,23672310,Samuel,Manhattan,Upper West Side,40.80057,-73.96679,Private room,95,4,0,,,1,0 +13812310,"Beautiful, Bright and Modern Space w/ a Fresh Feel",74885349,Kimberly,Brooklyn,Bushwick,40.68365,-73.91069,Entire home/apt,129,2,43,2019-06-23,1.20,1,80 +13812808,The trendiest block in Bedford Stuyvesant Brooklyn,81311292,Byron,Brooklyn,Bedford-Stuyvesant,40.68283,-73.94375,Private room,100,1,0,,,1,0 +13813731,Private Room in Charming Bedstuy,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67803,-73.92663,Private room,58,2,78,2019-06-30,2.20,3,82 +13814049,Subway accessible apartment in Brooklyn!,81329032,Ashlee,Brooklyn,Kensington,40.64231,-73.97974,Private room,50,5,0,,,1,0 +13814227,"Quiet light-filled apt, subway near",28345063,Jason,Manhattan,Harlem,40.82822,-73.94864,Entire home/apt,76,16,26,2019-06-19,0.76,1,31 +13814281,Twin size bed 2 blocks away L&M train to Manhattan,48985309,Serdar,Queens,Ridgewood,40.70183,-73.91146,Private room,35,7,16,2019-06-25,0.47,1,247 +13815162,Private room w/1Queen Bed (Lower level),65809485,Shirley,Queens,Flushing,40.74981,-73.82742,Private room,40,7,19,2019-06-21,0.84,12,134 +13815548,"West 86th Street, Charming UWS One Bd Serviced Apt",22541573,Ken,Manhattan,Upper West Side,40.78664,-73.97275,Entire home/apt,195,30,2,2018-09-26,0.06,87,45 +13816362,Cozy Modern Private Bedroom Hell's Kitchen,19247677,Abby,Manhattan,Hell's Kitchen,40.76518,-73.98406,Private room,80,3,1,2017-01-13,0.03,1,0 +13816385,Bk'S Finest feels Cozy Room Near Trains&bus,50600973,Joyell,Brooklyn,Bushwick,40.69425,-73.92781,Private room,44,1,157,2019-06-16,4.52,7,61 +13820083,Beautiful Cozy Garden Apt- Historic Clinton Hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68421,-73.96631,Entire home/apt,95,30,11,2019-06-21,0.31,2,43 +13820755,Modern NYC Studio Apartment Near Central Park!,30283594,Kara,Manhattan,Midtown,40.76647,-73.98146,Entire home/apt,199,30,0,,,121,189 +13821190,"Private room in Astoria, NY",81430151,Liliana,Queens,Astoria,40.75528,-73.91628,Private room,55,2,41,2019-06-02,1.19,1,278 +13821806,Charming 1BR in Williamsburg - perfectly located,7695239,Rachad,Brooklyn,Williamsburg,40.72128,-73.95782,Entire home/apt,249,3,0,,,1,0 +13822434,Private Room in Hamilton Heights,14078461,Emma,Manhattan,Harlem,40.82421,-73.95426,Private room,40,7,1,2016-08-02,0.03,1,0 +13822852,Beautiful two bedroom apartment in Astoria queens!,23436785,Cristy,Queens,Ditmars Steinway,40.77407,-73.90037,Entire home/apt,200,2,11,2019-05-19,0.52,1,363 +13823636,room,81453500,Amira,Manhattan,Upper West Side,40.80079,-73.96619,Private room,39,4,2,2016-07-28,0.05,1,53 +13824020,Park Slope Cluehouse,81290973,Caroline,Brooklyn,Park Slope,40.66958,-73.98623,Entire home/apt,700,1,2,2017-09-05,0.06,1,88 +13824091,"Empty 3 bedroom apartment in Bushwick, Brooklyn",5341236,Christina,Brooklyn,Bushwick,40.69477,-73.92376,Entire home/apt,45,5,8,2019-02-28,0.22,2,0 +13824675,Cozy 1 BR Apt in Brownstone Brooklyn,7248303,Ben,Brooklyn,Cobble Hill,40.68789,-73.99426,Entire home/apt,140,5,8,2018-06-29,0.22,1,0 +13827959,Private Studio Apartment in Heart of Brooklyn!!,27615247,Judy,Brooklyn,Midwood,40.62465,-73.964,Entire home/apt,99,5,57,2019-06-25,1.57,3,93 +13828701,California King of Elevated Castle,10231747,Jason,Manhattan,Hell's Kitchen,40.76404,-73.9926,Private room,175,2,120,2019-06-08,3.30,2,308 +13828922,Cozy room in Upper West Side luxury apartment,33588075,Evan,Manhattan,Upper West Side,40.79942,-73.96378,Private room,80,1,0,,,1,0 +13829549,Oct in Brooklyn One Bedroom Apartment,5700708,Offer,Brooklyn,Bedford-Stuyvesant,40.69509,-73.9367,Entire home/apt,75,10,2,2016-11-03,0.06,1,0 +13829927,"Cozy bedroom, convenient, Woodside, 7 train",79648088,Martha,Queens,Sunnyside,40.74582,-73.91233,Private room,50,1,78,2019-06-26,2.21,1,218 +13830415,Beautiful 2 bedroom apartment in West Harlem NYC,80491022,Mel,Manhattan,Harlem,40.82295,-73.95066,Entire home/apt,100,5,0,,,1,0 +13830463,Maria and Yiannis East Village studio,20549983,Ioannis,Manhattan,East Village,40.72712,-73.98705,Entire home/apt,100,3,18,2019-06-10,0.50,1,20 +13837891,"Spotless, Classy, Quiet Morningside Hts. Apartment",662794,MG & Larry,Manhattan,Morningside Heights,40.81171,-73.96352,Entire home/apt,200,5,22,2019-06-28,0.61,1,5 +13838042,Modern Uptown NYC Getaway,57573249,Kesina,Manhattan,Harlem,40.82636,-73.93867,Entire home/apt,80,2,3,2016-11-27,0.09,2,0 +13839238,Sunny room in modern building located in Bedstuy,252059,David,Brooklyn,Bedford-Stuyvesant,40.69181,-73.94312,Private room,60,5,3,2016-10-17,0.08,1,0 +13840253,Private elevator contemporary minimalist Brooklyn,19813391,Summer,Brooklyn,Prospect-Lefferts Gardens,40.65761,-73.94646,Entire home/apt,119,1,4,2017-01-01,0.11,2,0 +13840935,Spacious room in historic part of Manhattan,42520485,Helen,Manhattan,Harlem,40.82984,-73.94226,Private room,69,2,57,2019-07-04,1.57,1,287 +13841200,Stunning Brooklyn Townhouse,79575143,Andrew,Brooklyn,Park Slope,40.67198,-73.98278,Entire home/apt,400,5,1,2016-07-13,0.03,1,0 +13841569,The Parachute Loft Bedrm 2,62605071,Anna,Brooklyn,Coney Island,40.57476,-74.00101,Private room,95,1,41,2019-06-16,1.33,2,158 +13841625,Large Bedroom Brooklyn,23813425,Chaima,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94513,Private room,45,1,1,2016-08-30,0.03,1,0 +13842069,LEGO Garden 1BR Apt +Patio near JFK & LGA Airports,87601,Kazumi,Queens,Briarwood,40.71409,-73.82382,Private room,73,4,72,2019-06-30,2.11,1,282 +13842204,"Private Bedroom in Upper Manhattan/ Harlem, NYC!",2265770,Jeanine,Manhattan,Harlem,40.80742,-73.95214,Private room,123,4,1,2018-09-18,0.10,3,0 +13843270,New Upper East Side Studio,28497808,Emilie,Manhattan,Upper East Side,40.77758,-73.94642,Entire home/apt,130,4,5,2016-12-22,0.15,1,0 +13843286,Charming WV 1BR on Historic Street,11791986,Fawn,Manhattan,West Village,40.73511,-74.0037,Entire home/apt,325,3,29,2019-06-17,0.84,1,349 +13843681,Convienent Entire Upper Manhattan Apartment,81706032,Terry,Manhattan,Washington Heights,40.83484,-73.94009,Entire home/apt,95,4,3,2018-10-03,0.09,1,0 +13844921,Top location 1BR 5mins to Manhattan,8785272,Dimitar,Queens,Long Island City,40.74466,-73.95274,Entire home/apt,90,7,0,,,1,0 +13845597,1 Bedroom in williamsburg,81730337,Geoffray,Brooklyn,Williamsburg,40.70912,-73.94107,Entire home/apt,150,7,0,,,1,0 +13846934,Apartment near Central Park,81747071,Oleg,Manhattan,Harlem,40.80227,-73.95571,Entire home/apt,165,3,34,2019-04-08,0.96,1,0 +13847244,44 floor apt in luxury building near Central Park,52851248,Ella,Manhattan,Theater District,40.76324,-73.98459,Entire home/apt,250,10,1,2016-08-04,0.03,1,0 +13847278,Spacious and Comfy one large bedroom in Upper East,81752328,Deepti,Manhattan,Upper East Side,40.76927,-73.949,Entire home/apt,130,7,25,2019-06-29,0.92,1,0 +13848005,Harlem Vibrant Garden Apartment,81763260,Frédérique,Manhattan,Harlem,40.81106,-73.94467,Entire home/apt,200,3,48,2019-06-19,1.40,1,53 +13848199,Bright Room In Spacious Bright Apartment,4942658,Michael,Manhattan,Harlem,40.82508,-73.93884,Private room,70,1,14,2016-10-14,0.38,1,0 +13854483,"Cute 1 br, steps to train, BUSHWICK",14470110,Jennie,Brooklyn,Bushwick,40.69997,-73.92083,Entire home/apt,105,2,30,2018-10-03,0.84,1,291 +13855164,Spacious 2br Fort Greene apartment with yard!,11884239,Nellie,Brooklyn,Fort Greene,40.69153,-73.97078,Entire home/apt,150,7,2,2016-08-22,0.06,1,0 +13855981,"Gorgeous, spacious and naturally lit 3BR!",912993,Hadar,Manhattan,Morningside Heights,40.80595,-73.95812,Entire home/apt,172,4,0,,,1,0 +13856320,Spacious One Bedroom Steps From Prospect Park,2737854,Amy,Brooklyn,Windsor Terrace,40.65024,-73.9737,Entire home/apt,105,2,1,2016-09-22,0.03,1,0 +13856793,Private room in the WV 3rd floor,25330827,Art,Manhattan,West Village,40.73557,-74.00448,Private room,100,2,58,2019-07-02,1.62,1,190 +13856810,Cute Studio in the heart of East Village,81859848,Shivani,Manhattan,East Village,40.72783,-73.98904,Entire home/apt,150,3,5,2017-04-16,0.14,1,0 +13857003,Newly Furnished West Village Studio,12485770,Raanan,Manhattan,West Village,40.73201,-74.0032,Entire home/apt,133,30,0,,,9,15 +13857291,Beautiful Room/20 min downtown NYC,81865543,Rob,Manhattan,Inwood,40.86836,-73.92827,Private room,65,4,38,2019-06-09,1.04,1,149 +13857312,Renovated East Village 1BR,12485770,Raanan,Manhattan,East Village,40.729,-73.98098,Entire home/apt,125,30,6,2019-02-08,0.24,9,150 +13857521,Quaint Garden Apartment/ Historic Hamilton Heights,2701094,Jimmy,Manhattan,Harlem,40.82852,-73.94583,Entire home/apt,140,7,9,2019-04-28,0.25,1,27 +13858187,Large Two Story Loft in the Heart of West Village,79338533,Yasir,Manhattan,West Village,40.73103,-74.00906,Entire home/apt,300,3,1,2016-07-18,0.03,1,0 +13859134,Near Manhattan & ForestHStadium studio w/ pvt bath,79751520,Julia,Queens,Forest Hills,40.71249,-73.84942,Private room,90,1,31,2018-09-24,0.90,2,1 +13859196,Cozy Room In the Heart of Astoria,28003040,Adrian,Queens,Astoria,40.76249,-73.91176,Private room,30,2,56,2017-10-01,1.57,1,0 +13859473,Spacious Bushwick Room w/ Private Entrance & Bath,81888716,Angelika,Brooklyn,Bushwick,40.69715,-73.93166,Entire home/apt,109,2,117,2019-06-23,3.22,1,51 +13859707,Large Bedroom for $750 Monthly,81891866,Nataly,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94508,Private room,750,1,0,,,1,365 +13859896,Private Entrance Basement Studio,46643729,Samantha,Brooklyn,Williamsburg,40.71992,-73.96069,Entire home/apt,146,1,0,,,1,0 +13862377,Sunny and cozy Stuy Heights 1BR,2436411,Christina,Brooklyn,Bedford-Stuyvesant,40.68278,-73.93427,Entire home/apt,120,2,2,2016-09-25,0.06,1,0 +13862929,Spacious 1 BD in Williamsburg next to L train,23396858,Jesse,Brooklyn,Williamsburg,40.71256,-73.94505,Entire home/apt,125,1,3,2016-09-18,0.09,1,0 +13862932,1 bedroom for rent in quiet apartment (2bedrooms),9371687,Clementine,Manhattan,East Village,40.72976,-73.98802,Private room,80,6,0,,,1,0 +13863230,Completely Renovated Prewar Apartment in HOT Area,10346084,Lindsay,Queens,Astoria,40.75816,-73.91945,Entire home/apt,110,5,0,,,1,0 +13864221,"Live, Love, Stay in the Bronx!",3213737,Vernise,Bronx,Allerton,40.86066,-73.85414,Private room,50,1,8,2018-11-12,0.23,1,280 +13864224,Spacious Artist's Loft/Apartment,74011703,Stephanie,Manhattan,Financial District,40.71069,-74.00751,Entire home/apt,200,3,6,2016-10-14,0.16,1,0 +13864551,Comfy Room in Amazing East Village Apt,4396,Casey,Manhattan,East Village,40.72309,-73.98428,Private room,74,1,2,2016-11-06,0.05,2,188 +13864653,Spacious & Quiet Bedroom w/ Private Bathroom,1905137,Ryan,Brooklyn,Greenpoint,40.7317,-73.95473,Private room,100,2,8,2016-11-16,0.23,1,0 +13864705,Your home away from home...,81953225,Donald,Bronx,Wakefield,40.8947,-73.85601,Private room,52,3,63,2018-09-21,1.78,1,0 +13864889,Vintage Artist Loft-Studio on Upper West Side,28250,Waybridge,Manhattan,Upper West Side,40.78023,-73.97884,Entire home/apt,135,5,28,2019-07-01,0.80,1,24 +13865089,Convenient Gem in Midtown East,32833394,Arthur,Manhattan,Midtown,40.7542,-73.96862,Private room,90,12,0,,,1,70 +13865843,Summer Weekend in the City,81969914,Julie,Manhattan,Midtown,40.75248,-73.97332,Private room,200,2,0,,,1,0 +13866112,Sanctuary steps from the heart of downtown,4317379,B,Manhattan,East Village,40.72394,-73.98872,Entire home/apt,165,2,3,2017-12-09,0.08,1,0 +13866269,Light filled private bedroom in Bed Stuy's best.,7027982,Scott,Brooklyn,Bedford-Stuyvesant,40.68637,-73.94477,Private room,75,2,6,2016-12-14,0.17,1,0 +13867104,Light-Filled Williamsburg Loft,171250,Benjamin,Brooklyn,Williamsburg,40.71725,-73.95541,Private room,155,4,3,2016-12-11,0.09,1,0 +13867110,"Comfort First, in Williamsburg",50410819,Irma,Brooklyn,Williamsburg,40.7099,-73.95779,Entire home/apt,144,2,14,2016-12-15,0.39,1,0 +13868137,FEMALE ONLY,65846751,Luqian,Brooklyn,Sunset Park,40.64025,-74.01735,Private room,25,4,2,2016-08-10,0.06,1,0 +13873028,Penthouse in Midtown Manhattan,82054811,Carol,Manhattan,Midtown,40.76518,-73.98211,Private room,500,3,0,,,1,0 +13876073,Huge Room in Doorman Building,276207,Joshua,Manhattan,Upper West Side,40.79564,-73.97173,Private room,97,50,3,2019-01-01,0.09,1,201 +13876681,Cozy Room Times Square + ALL Museums Free Pass,82096395,Sergio,Manhattan,Hell's Kitchen,40.75981,-73.99118,Private room,150,5,20,2019-01-04,0.55,1,178 +13876809,Sunrise Loft Room in Luxurious Brooklyn Condo,82083094,Fay,Brooklyn,Canarsie,40.63927,-73.88145,Private room,65,2,13,2019-05-05,0.42,2,270 +13877683,"Perfect Private Garden Apartment, 2 blox to subway",57994,Martin & Hande,Brooklyn,Bedford-Stuyvesant,40.68082,-73.91128,Entire home/apt,99,2,142,2019-07-07,3.94,1,57 +13878195,Beautiful Harlem Doorman Bldg. One Bedroom Apt.,54060270,Maisha,Manhattan,Harlem,40.81691,-73.94835,Entire home/apt,100,3,2,2016-08-14,0.06,1,0 +13879280,Secret Alley Carriage House,68890,Paula,Brooklyn,Bedford-Stuyvesant,40.68774,-73.95477,Entire home/apt,250,1,29,2019-06-07,0.92,3,347 +13879391,Spaceous Bushwick Two Floor Apartment,6013624,Charlie,Brooklyn,Bushwick,40.6988,-73.91239,Private room,55,2,0,,,1,0 +13879611,"West 86th Street, Charming UWS One Bd Svcd Apt-A",22541573,Ken,Manhattan,Upper West Side,40.78593,-73.97284,Entire home/apt,169,30,1,2017-12-22,0.05,87,0 +13879965,Private Micro Room 2,59529529,Han,Manhattan,Hell's Kitchen,40.76289,-73.99419,Private room,70,1,218,2019-07-02,5.98,6,184 +13880183,Tribeca Light filled/ Views Apt,39919088,Jennifer,Manhattan,Tribeca,40.71928,-74.00799,Entire home/apt,1000,2,0,,,1,88 +13880280,Cozy living room sofa bed near Columbia University,19504744,Xu,Manhattan,Upper West Side,40.79405,-73.9658,Shared room,60,1,0,,,1,0 +13880509,THE crashpad for your Brooklyn adventure!,21468261,Rahul,Brooklyn,Bedford-Stuyvesant,40.68001,-73.94883,Private room,36,2,0,,,1,0 +13880697,"★ Master Bdrm | HBO, Netflix + Stocked Mini Fridge",82143608,Eric,Manhattan,East Harlem,40.7868,-73.94269,Private room,105,1,209,2019-07-07,5.79,2,76 +13880742,Center of the Action,30498797,Kate,Manhattan,Financial District,40.71052,-74.01135,Entire home/apt,315,3,0,,,1,0 +13880972,Wonderful private room fun apt in Hells Kitchen!,82147411,Vincent,Manhattan,Hell's Kitchen,40.76601,-73.99167,Private room,65,1,43,2019-01-03,1.27,1,0 +13881020,Courtyard facing private room in Sugar Hill,82148918,Kristen,Manhattan,Harlem,40.82903,-73.94502,Private room,50,2,55,2019-05-18,1.52,1,0 +13881135,****THE SUITE LIFE DUPLEX****,923465,Kila,Brooklyn,Bedford-Stuyvesant,40.68821,-73.93758,Private room,69,5,54,2019-07-02,1.55,1,320 +13881317,Deluxe Furnished Spacious Studio Apartment,44034761,Matt,Manhattan,Upper West Side,40.77906,-73.98507,Entire home/apt,110,1,65,2019-06-30,1.80,2,266 +13881521,Modern Furnished Studio in Luxury Doorman Building,82154865,Tate,Manhattan,Upper West Side,40.78935,-73.97462,Entire home/apt,95,30,0,,,1,67 +13881622,Comfy Williamsburg townhouse 950sf w gorgeous yard,80837608,Susan,Brooklyn,Williamsburg,40.71558,-73.93577,Entire home/apt,249,3,26,2018-10-22,0.76,1,0 +13881787,Williamsburg large and sunny private room,1002452,Florencia,Brooklyn,Williamsburg,40.71124,-73.94861,Private room,57,7,14,2019-05-04,0.39,2,0 +13881920,Prime west village! design 1BR~Best Value,2119276,Host,Manhattan,Greenwich Village,40.73478,-73.99791,Entire home/apt,150,30,8,2019-06-14,0.32,39,275 +13882394,VIP Duplex Townhouse with Private Garden!!!,49186997,Joseph,Manhattan,Greenwich Village,40.73305,-73.99373,Entire home/apt,3800,30,2,2017-01-27,0.06,1,180 +13882858,Serene and Spacious Sunnyside Retreat,80686298,Dean,Queens,Sunnyside,40.74498,-73.91385,Entire home/apt,99,2,2,2016-07-27,0.06,1,0 +13882864,Pre-War 1 BR with Scenic Manhattan Views,82168970,Michael,Staten Island,St. George,40.64475,-74.07811,Private room,50,1,0,,,1,0 +13883020,Amazing view in an artist's living 2bed/2bath apt,20471727,Krisztián,Brooklyn,Williamsburg,40.71118,-73.96342,Entire home/apt,370,6,5,2018-12-31,0.14,1,0 +13883029,Sunny Room in Williamsburg! $1200/Month,16899478,Nicole,Brooklyn,Williamsburg,40.71241,-73.95354,Private room,55,21,0,,,1,0 +13883249,West Village - Location Location Location!,48852712,Eric,Manhattan,West Village,40.73756,-73.99858,Entire home/apt,147,3,6,2016-12-26,0.17,1,0 +13883303,Sunny Bushwick room on Jefferson st,1932969,Chris,Brooklyn,Bushwick,40.70296,-73.92919,Private room,40,30,0,,,1,0 +13883393,One Bedroom Apartment- Only 15 min to Time Square!,82179512,Mingmar,Queens,Woodside,40.74399,-73.89817,Entire home/apt,87,1,162,2019-06-23,4.45,1,332 +13883481,1 Bdrm in Spacious Apartment with Amenities,8201520,Dhruv,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95084,Private room,65,2,0,,,1,0 +13884253,Private Sunny Bedroom in a Modern 2 Bedroom Co-op,48421955,Lori,Brooklyn,Kensington,40.64498,-73.98191,Private room,46,1,19,2018-01-02,0.56,1,0 +13884628,"Luxury Room (rm3), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81097,-73.96001,Private room,110,3,68,2019-06-24,1.88,6,128 +13884778,"Luxury Room (rm2), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81093,-73.95928,Private room,100,3,81,2019-06-22,2.24,6,133 +13885247,"Cozy, Convenient 1 Bed Apartment!!! UWS Manhattan",82208124,Yang,Manhattan,Upper West Side,40.77472,-73.98641,Entire home/apt,110,3,33,2019-06-23,0.91,2,0 +13885829,LUXE STUDIO SUITE - Midtown East - 22,80479138,Gordon,Manhattan,Midtown,40.75965,-73.96631,Entire home/apt,140,30,12,2019-03-31,0.39,5,68 +13885982,The Bushwick Museum,11841497,Amanda,Brooklyn,Bushwick,40.70112,-73.93086,Private room,55,1,3,2016-07-29,0.08,1,0 +13886618,"Cozy, quiet 1 bdrm centrally located",21003389,Alicia,Brooklyn,Crown Heights,40.66914,-73.9557,Private room,130,2,20,2019-05-19,0.55,1,89 +13889399,Great 3 Bedroom Apt Near Manhatthen,75919970,Scott,Queens,Ditmars Steinway,40.77415,-73.91695,Entire home/apt,125,1,1,2016-07-25,0.03,1,0 +13891181,Spacious Sunny Bedroom near JMZ Subways,3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69454,-73.93319,Private room,73,5,89,2019-06-10,2.68,6,94 +13891302,Gorgeous 2 Bedroom New York City Apartment!,30283594,Kara,Manhattan,Hell's Kitchen,40.76062,-73.99741,Entire home/apt,479,30,1,2019-03-06,0.24,121,185 +13891485,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70358,-74.00854,Entire home/apt,270,30,0,,,87,190 +13891670,"Cozy room, easy trip to Manhattan & North Brooklyn",22861607,Emmie,Brooklyn,Bedford-Stuyvesant,40.68374,-73.95012,Private room,41,1,1,2016-08-09,0.03,1,0 +13892036,Private bedroom B in Heart of LES,9208421,Cody,Manhattan,Lower East Side,40.7209,-73.98822,Private room,85,1,120,2019-06-23,3.37,2,29 +13893264,Prospect Lefferts Terrific Townhouse,37413,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.66047,-73.95445,Entire home/apt,175,6,3,2018-08-28,0.13,1,12 +13893494,Idyllic Two Bedroom Apt in the heart of Chelsea,2700098,Kendall,Manhattan,Chelsea,40.73938,-74.00002,Entire home/apt,350,3,6,2017-05-29,0.17,1,0 +13893853,"Spacious Apt in Brand New Bldg, Private Yard!",11730237,Rita,Brooklyn,Bushwick,40.69095,-73.91909,Entire home/apt,140,3,0,,,1,0 +13893861,Light-filled full Apt near Cloisters and Parks,82302838,Jacob,Manhattan,Inwood,40.86118,-73.92758,Entire home/apt,89,3,6,2017-03-07,0.18,1,0 +13894254,87th ST ** ALL NEW ** Central PARK,82307155,Mor,Manhattan,Upper East Side,40.77773,-73.94938,Entire home/apt,450,2,110,2019-06-19,3.02,1,287 +13894339,Luxury 1 bedroom apt. -stunning Manhattan views,5143901,Erin,Brooklyn,Greenpoint,40.7326,-73.95739,Entire home/apt,10000,5,5,2017-07-27,0.16,1,0 +13894813,"Lg Times Square, cathedral windows",31626212,Troy,Manhattan,Theater District,40.75888,-73.98467,Private room,113,2,12,2019-06-23,0.39,5,197 +13895156,in the heart of williamsburg,2609335,Roei,Brooklyn,Williamsburg,40.71319,-73.95822,Entire home/apt,300,14,3,2018-09-22,0.08,1,345 +13895437,Bushwick Basement Large Room with Half Bath,2776152,Jessica,Brooklyn,Bushwick,40.69904,-73.91792,Private room,38,1,3,2016-09-19,0.08,1,0 +13896200,HUGE New Industrial Williamsburg Apartment,6000480,Douglas,Brooklyn,Williamsburg,40.71741,-73.93487,Entire home/apt,220,4,4,2017-10-31,0.11,1,0 +13898236,2 Floor Condo in Williamsburg with Pvt Terrace,2962330,Thobey,Brooklyn,Williamsburg,40.71684,-73.94578,Entire home/apt,250,1,0,,,1,0 +13899190,East Village One Bedroom,15099636,Natalie,Manhattan,East Village,40.72611,-73.97905,Entire home/apt,120,1,3,2016-07-25,0.08,1,0 +13899934,Light-filled apt offering private bedroom & bath,7262145,Colin,Manhattan,Upper East Side,40.78245,-73.94686,Private room,99,1,1,2016-07-31,0.03,1,0 +13900417,LUXURY HUGE 2BR DUPLEX NEAR TRAIN - PATIO OASIS!!,7958923,Vikas,Brooklyn,Bedford-Stuyvesant,40.68861,-73.94109,Entire home/apt,115,1,350,2019-06-26,9.61,2,137 +13900695,Private Room in Fun Neighborhood,23526253,David,Queens,Ridgewood,40.71164,-73.91879,Private room,30,15,0,,,1,0 +13900712,Homey 1BR close to US Open,63097027,J.A.,Queens,Jackson Heights,40.75145,-73.88946,Entire home/apt,150,3,4,2017-09-15,0.12,1,0 +13900901,Cozy comfortable room near JFK&LGA#3,82367658,John,Queens,Richmond Hill,40.69196,-73.82029,Private room,38,3,32,2019-06-04,0.89,5,212 +13901170,Comfy 1 Bedroom in commercial East Flatbush,82398569,Daniel And Christianne,Brooklyn,East Flatbush,40.65214,-73.93126,Entire home/apt,62,2,85,2019-06-15,2.36,1,33 +13902088,Peaceful and Spacious Master Bedroom,82412007,Janet,Manhattan,Gramercy,40.73517,-73.98176,Private room,120,2,3,2017-11-25,0.14,1,0 +13902591,Cozy and Cool East Williamsburg 1 BR in 2 BR,13499885,Arash,Brooklyn,Williamsburg,40.71281,-73.94603,Private room,60,6,2,2017-01-05,0.06,2,0 +13902725,There's a reason this room has a 5-star rating.,6034354,Leigh,Manhattan,Hell's Kitchen,40.75913,-73.98991,Private room,195,1,41,2019-05-23,1.19,1,170 +13903497,"Stunning, Unique, w/ Private Workspace",2861768,Justin,Manhattan,Harlem,40.81142,-73.95134,Private room,69,15,19,2019-06-15,0.54,3,106 +13905833,1 BDR PRIME HELLS KITCHEN LOCATION,82444858,Gilbert,Manhattan,Hell's Kitchen,40.7672,-73.98457,Entire home/apt,150,3,0,,,1,0 +13906636,Bedstuy Brownstone Gem,62785237,Fanny,Brooklyn,Bedford-Stuyvesant,40.68535,-73.94959,Entire home/apt,138,3,95,2019-07-05,2.74,1,71 +13907229,Beautiful Beach Home,82469513,Sonya,Queens,Rockaway Beach,40.58633,-73.80603,Private room,85,1,0,,,1,0 +13907872,Amazing One Bedroom apartment with private patio,60922011,Julien,Brooklyn,Williamsburg,40.70842,-73.95437,Entire home/apt,120,1,21,2017-10-10,0.58,1,0 +13910111,Beautiful room on Brownstone in Bushwick,16156297,Jose,Brooklyn,Bushwick,40.69283,-73.90961,Private room,41,2,42,2019-01-02,1.16,1,0 +13910919,Room,39476034,James,Queens,Jamaica,40.67088,-73.76672,Private room,159,1,0,,,2,363 +13911123,1 bedroom in 3 bedroom/2bath Bushwick Apt.,82512085,Hattie,Brooklyn,Bushwick,40.68987,-73.91548,Private room,35,1,1,2016-08-10,0.03,1,0 +13911206,Bright apartment across from Riverside Park,359424,Tal,Manhattan,Morningside Heights,40.80734,-73.9673,Entire home/apt,250,3,1,2016-08-15,0.03,1,0 +13911729,Peaceful Retreat with Garden in Brooklyn Heights,70834,Andy,Brooklyn,Brooklyn Heights,40.69389,-73.99586,Entire home/apt,215,3,4,2019-05-19,0.31,1,0 +13911835,Peaceful Private Space in Astoria,17927023,Rob,Queens,Astoria,40.76963,-73.93041,Entire home/apt,115,2,64,2019-07-01,1.77,1,89 +13912267,⚜ Sun-Filled 1BR in Upper East Side ⚜,79675471,Joanna,Manhattan,Upper East Side,40.76858,-73.95346,Entire home/apt,99,2,0,,,1,0 +13912712,SUNNY & QUIET STUDIO NEAR CENTRAL PARK UPPER EAST,9293730,Inna,Manhattan,Upper East Side,40.76911,-73.95694,Entire home/apt,129,30,10,2019-04-15,0.35,16,299 +13912725,Master bedroom with a California king size bed,8163438,PeiYoung,Queens,Astoria,40.75684,-73.92518,Private room,75,1,0,,,1,0 +13912926,Whole apartment in Forest Hills,1287719,Constanza,Queens,Forest Hills,40.71642,-73.8357,Entire home/apt,200,5,1,2016-08-29,0.03,1,0 +13913803,Bedroom in Clinton Hill,4310378,Autumn,Brooklyn,Clinton Hill,40.69561,-73.96269,Private room,79,3,26,2019-05-30,0.75,3,362 +13914201,❤️Gorgeous Townhouse Apt - 2 blocks from subway,324628,Lisa,Manhattan,Harlem,40.80403,-73.95125,Entire home/apt,160,30,122,2019-05-26,3.52,1,179 +13914226,Classic brownstone drenched with light,8812035,Claudia,Brooklyn,Clinton Hill,40.69244,-73.96501,Entire home/apt,130,7,1,2016-08-04,0.03,1,0 +13914237,Apt in Heart of NYC with AC !,6338590,Dashiell,Manhattan,Upper West Side,40.78173,-73.98601,Entire home/apt,70,2,7,2017-01-03,0.19,1,0 +13914512,Small Cozy comfortable room nearJFK#5,82367658,John,Queens,Richmond Hill,40.69018,-73.82141,Private room,32,2,10,2018-08-19,0.32,5,342 +13914735,Beautiful bedroom / in Beach home,82562435,Josephine,Queens,Arverne,40.59005,-73.79449,Private room,37,1,114,2019-06-04,3.18,2,305 +13914961,Cozy Bushwick Brooklyn Room -20 mins to Manhattan!,73247569,Sinida,Brooklyn,Bushwick,40.7017,-73.93716,Private room,55,1,88,2019-07-07,2.43,2,102 +13915004,"Sunlit, spacious NY apartment",7177483,Dani,Manhattan,Harlem,40.8038,-73.95569,Entire home/apt,250,3,10,2019-01-01,0.28,1,0 +13915699,Good Deal! Large Clean and Stylish 1Bedroom!,1279152,Alison,Brooklyn,Midwood,40.62803,-73.9675,Entire home/apt,75,3,6,2018-12-31,0.17,1,0 +13916105,Cozy room in the best neighborhood in town,54261444,Natalia,Manhattan,Greenwich Village,40.72869,-74.00157,Private room,150,6,0,,,1,0 +13917029,Private Room in a Great Brooklyn Loft,616808,Emine Gozde,Brooklyn,Williamsburg,40.70778,-73.9464,Private room,42,15,1,2016-07-27,0.03,1,0 +13919213,Spacious Harlem Garden Apartment,82623035,Alex And Maya,Manhattan,Harlem,40.82611,-73.94407,Entire home/apt,155,2,138,2019-06-23,3.79,1,232 +13920551,Vida Local,80974010,Lou,Bronx,Highbridge,40.83736,-73.92318,Private room,22,3,14,2017-10-10,0.39,1,42 +13920697,Brownstone apt in Bklyn w/ gorgeous natural light,29513490,Whitney,Brooklyn,Bedford-Stuyvesant,40.6837,-73.93325,Entire home/apt,125,2,4,2017-01-02,0.12,1,0 +13920801,Beautiful 2 bedroom private suite,10312167,Razia,Manhattan,Harlem,40.80297,-73.9505,Entire home/apt,99,28,76,2019-03-04,2.16,2,296 +13921462,Sunny and spacious apartment in Brooklyn,1481058,Aris,Brooklyn,Greenpoint,40.73273,-73.95764,Private room,60,4,30,2018-06-25,0.83,2,0 +13921768,"Convenient,Clean,Roomy Apt in WaHi",18177436,Joanna,Manhattan,Washington Heights,40.84156,-73.93884,Private room,45,2,3,2016-07-31,0.08,1,0 +13922353,Spacious BR next to Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76806,-73.9847,Private room,130,3,6,2017-11-06,0.17,3,0 +13923165,Cozy Private Bedroom in Uptown Manhattan,69376422,Abbey,Manhattan,Washington Heights,40.84198,-73.93816,Private room,40,2,1,2016-07-26,0.03,1,0 +13923255,Private Bedroom A in Heart of LES,9208421,Cody,Manhattan,Lower East Side,40.72102,-73.98891,Private room,95,2,16,2019-06-10,0.45,2,0 +13924403,Private Room in Kelly&Joes Loft Apt,78529013,Johannes,Queens,Astoria,40.75951,-73.91963,Private room,55,1,0,,,1,0 +13926029,SOUTH SLOPE Brooklyn - Bright and Spacious Bedroom,7007654,Dhwani,Brooklyn,Sunset Park,40.65976,-73.99191,Private room,35,2,0,,,1,0 +13926341,Gorgeous 1bdr in Lower East Side,1961818,Anais,Manhattan,Lower East Side,40.7194,-73.992,Entire home/apt,140,7,1,2016-09-14,0.03,1,0 +13926463,Stylish Private Room 3 subway stops to Manhattan,74906838,Priscila,Queens,Long Island City,40.75382,-73.91968,Private room,70,3,90,2019-07-04,2.60,1,24 +13926549,Beautiful 1 Bedroom 2 blocks from Central Park,82719112,Adam,Manhattan,Upper West Side,40.78296,-73.97743,Entire home/apt,250,1,1,2016-08-14,0.03,1,0 +13926604,Interfaith Retreat Guest Rooms (Śakti),16677326,Alex And Zeena,Manhattan,Chelsea,40.74779,-73.9966,Private room,85,1,51,2019-06-23,1.60,12,355 +13926664,Interfaith Retreat Guest Rooms (Seva),16677326,Alex And Zeena,Manhattan,Chelsea,40.74798,-73.99532,Private room,85,1,78,2019-05-27,2.26,12,360 +13926702,Peaceful 1 Bedroom/1 Bathroom on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78341,-73.97713,Entire home/apt,106,30,14,2019-06-10,0.41,6,242 +13927922,Gorgeous and Cosy Studio in Astoria!,82740389,Vanessa,Queens,Ditmars Steinway,40.78028,-73.91477,Entire home/apt,90,3,5,2016-09-18,0.14,1,0 +13927957,Charming Manhattan-Midtown Studio,82740724,Roman,Manhattan,Midtown,40.75259,-73.97061,Entire home/apt,129,1,159,2019-06-12,4.39,1,193 +13928461,Charismatic Flat in Astoria,24678224,Stephanie,Queens,Astoria,40.76482,-73.91996,Private room,100,3,11,2019-01-01,0.32,1,0 +13934790,Romantic Art-Filled Apartment with Large Backyard,21493738,Natalie,Brooklyn,Crown Heights,40.66957,-73.94804,Entire home/apt,150,3,0,,,2,0 +13934894,Spacious room in huge loft in Tribeca,6934546,Robert,Manhattan,Tribeca,40.71474,-74.00596,Private room,100,30,0,,,1,0 +13935360,Bright & Sunny 2-Bedroom in Hamilton Heights,80560845,Shelley,Manhattan,Harlem,40.83136,-73.94843,Entire home/apt,100,4,4,2017-08-05,0.11,1,0 +13935511,Great Appartment with cool roomates in Bushwick,6169992,Geraldine,Brooklyn,Williamsburg,40.70282,-73.94287,Private room,60,1,0,,,1,0 +13936824,Beautiful one bedroom apartment in Williamsburg,73843068,Naief,Brooklyn,Williamsburg,40.71822,-73.94454,Entire home/apt,120,4,53,2019-06-30,1.46,1,15 +13936825,Spacious master bedroom in Forest Hills,82857184,Shlomit,Queens,Forest Hills,40.73096,-73.84924,Private room,75,2,16,2019-01-01,0.61,1,157 +13937701,Entire Spacious Artist Apartment,36438456,Marco,Manhattan,Washington Heights,40.83625,-73.93915,Entire home/apt,140,2,10,2017-08-03,0.28,1,0 +13937820,Huge Private Room in Williamsburg/Buschwick!!,33902900,Cristina,Brooklyn,Williamsburg,40.70875,-73.94271,Private room,55,2,2,2016-08-01,0.06,1,0 +13937854,"Cozy 1 Bedroom in Crown Heights, right by subway!",7398239,Chana,Brooklyn,Crown Heights,40.66873,-73.9329,Entire home/apt,75,1,0,,,1,0 +13938420,Brooklyn at its Best!,25718914,Ainslie And John,Brooklyn,Prospect-Lefferts Gardens,40.65966,-73.95601,Private room,85,2,160,2019-07-02,4.44,2,136 +13939924,Spectacular Views! Gorgeous 25th flr Columbus Cl,17551179,Marissa,Manhattan,Midtown,40.76618,-73.98279,Entire home/apt,225,1,0,,,1,0 +13940091,Your own Midtown Manhattan Apt & private Garden,61649970,Chantelle,Manhattan,Murray Hill,40.74744,-73.97299,Entire home/apt,219,1,56,2019-06-09,1.58,2,217 +13941017,Charming Brooklyn apartment in historic brownstone,79840032,Heather,Brooklyn,Clinton Hill,40.69048,-73.96577,Entire home/apt,185,2,9,2019-03-09,0.25,1,0 +13941210,Bright Astoria Apt Near Manhattan,17452232,Lili,Queens,Ditmars Steinway,40.77121,-73.9171,Entire home/apt,70,2,9,2017-10-07,0.26,1,0 +13941236,1 Bedroom Apartment in Brooklyn fully renovated,21466891,Martin,Brooklyn,Bushwick,40.68374,-73.90988,Entire home/apt,100,4,85,2019-06-19,2.41,2,107 +13941308,"# CENTRAL PARK - 3 stops away (32""TV room)",82921914,G. Matthew,Manhattan,Harlem,40.81922,-73.95276,Private room,69,2,121,2019-06-30,3.44,3,65 +13941332,Sunny Suite in Bed Stuy with AC!,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94548,Private room,40,2,104,2019-06-24,2.88,3,97 +13941973,Affordable room near of LGA airport in Queens.,46712160,Lucilu,Queens,Woodside,40.74071,-73.89186,Private room,55,1,251,2019-06-23,9.30,2,31 +13941998,Private studio in the heart of Park Slope,34543957,Jasna,Brooklyn,Park Slope,40.67819,-73.98084,Entire home/apt,150,3,10,2017-11-15,0.28,1,0 +13942612,Modern Apt in Prime Brooklyn That Has it All,20536793,Igor,Brooklyn,Park Slope,40.67132,-73.98709,Entire home/apt,113,1,0,,,1,0 +13942921,Spacious Room with Character in BK,82951378,Talor,Brooklyn,Crown Heights,40.67285,-73.95734,Private room,45,1,3,2017-10-15,0.09,1,0 +13943523,Spacious Manhattan apartment with amazing view,24461849,Fredrik,Manhattan,Midtown,40.74569,-73.98592,Entire home/apt,280,3,2,2017-01-02,0.07,1,0 +13944942,GORGEOUS REMODELED 1-BEDROOM PRIME LOCATION,5732761,Alessandro,Manhattan,Upper West Side,40.79657,-73.9624,Private room,120,3,68,2019-04-22,1.87,1,0 +13945103,"Great quiet room,great location",82717014,Mary,Queens,Sunnyside,40.74379,-73.91277,Private room,90,1,1,2016-09-11,0.03,1,173 +13949732,Big 4 bedroom house with garden by the Park in PLG,1857899,Audrey,Brooklyn,Prospect-Lefferts Gardens,40.65627,-73.95468,Entire home/apt,225,2,10,2017-05-30,0.29,1,0 +13950233,Updated East Side 2 Bedroom,61391963,Corporate Housing,Manhattan,Kips Bay,40.74096,-73.98055,Entire home/apt,159,30,4,2018-09-14,0.12,91,364 +13951405,Tribeca Luxury 2000sf Loft,65609488,Alex,Manhattan,Tribeca,40.71559,-74.00737,Entire home/apt,650,1,1,2016-07-17,0.03,1,0 +13951783,Time SQ Midtown West Central Park 3Beds Sleep6,82491369,Joel,Manhattan,Hell's Kitchen,40.76463,-73.98855,Entire home/apt,275,2,125,2019-06-11,3.44,1,146 +13951959,Newly Renovated Clinton Hill Duplex,66051630,Maya,Brooklyn,Clinton Hill,40.68265,-73.96631,Entire home/apt,325,5,80,2019-06-22,2.21,1,92 +13952269,Extremely spacious duplex with garden,12151986,Elaine,Brooklyn,Sunset Park,40.66053,-73.98929,Entire home/apt,359,5,8,2017-11-26,0.23,1,0 +13952319,Cosy Studio with a backyard in Forest Hills,7212175,Swati,Queens,Forest Hills,40.72143,-73.85522,Entire home/apt,99,1,143,2019-06-28,3.96,1,282 +13952384,Large Upper East Side Alcove Studio,14945903,Nicole,Manhattan,Upper East Side,40.76749,-73.96392,Entire home/apt,108,3,1,2016-07-23,0.03,1,0 +13952428,Cozy room w/private entrance in East Williamsburg,67961258,Kaitlin,Brooklyn,Williamsburg,40.70883,-73.93873,Private room,67,1,14,2017-04-12,0.40,1,0 +13952801,Greenpoint Artist Loft,25938509,Ashley,Brooklyn,Greenpoint,40.72675,-73.94219,Private room,25,7,2,2016-12-06,0.06,1,0 +13953224,Luxury Apt With Sunset View,83072717,Donna,Manhattan,Chelsea,40.7464,-73.9909,Entire home/apt,190,7,0,,,1,0 +13953640,Private apartment 45 min away from the city,83082749,Peter,Queens,Ozone Park,40.68345,-73.83378,Entire home/apt,125,1,11,2016-08-23,0.31,1,0 +13954028,Cozy Upper West Side Studio,6571805,Agata,Manhattan,Upper West Side,40.79301,-73.97544,Entire home/apt,124,2,28,2019-05-20,0.79,2,336 +13955012,1 large bedroom with private bathroom,82505349,Marwan,Brooklyn,Bushwick,40.69387,-73.91341,Private room,100,5,0,,,1,0 +13955139,Heart of Willimsburg- 1 block from bedford L stop,83101296,Ariana,Brooklyn,Williamsburg,40.71675,-73.95725,Private room,60,4,0,,,1,0 +13955160,Eclectic & Cozy Private Room in Prospect Hts!!!,78343124,Sherice,Brooklyn,Crown Heights,40.68035,-73.96239,Private room,55,2,1,2016-07-24,0.03,1,0 +13955165,2 BDRM/1.5 Bath Prospect Heights Brooklyn/Sleeps 6,4979473,Gary,Brooklyn,Prospect Heights,40.67959,-73.96486,Entire home/apt,175,3,0,,,1,0 +13956326,2 Bedroom Duplex with large backyard,18113574,William,Brooklyn,Williamsburg,40.7121,-73.93705,Entire home/apt,200,4,1,2016-08-07,0.03,1,0 +13956613,The Griffin B & B- 2 bedroom suite in Ditmas Park,24424456,Jeannine,Brooklyn,Flatbush,40.63273,-73.96385,Entire home/apt,200,2,10,2019-07-01,0.91,1,167 +13957261,Apartment in Ridgewood/Bushwick Neighborhood,8143711,Jon,Queens,Ridgewood,40.69968,-73.90697,Private room,60,2,0,,,1,0 +13957427,Luxury 1bdr in East Village,83131313,Johnny,Manhattan,East Village,40.72268,-73.98215,Entire home/apt,175,4,2,2018-06-27,0.08,1,16 +13957499,"Huge, Quiet Room, Near Columbia & Express Subways!",8253604,James & Shaun,Manhattan,Harlem,40.81557,-73.95295,Private room,88,1,147,2019-07-07,4.24,2,165 +13959100,East Flatbush- Sunny 1 bedroom apt,79696862,Jay,Brooklyn,Flatlands,40.62297,-73.93849,Private room,57,1,7,2018-05-12,0.20,1,311 +13959346,Room Available in Heart of Fort Greene,83156877,Nick,Brooklyn,Fort Greene,40.6875,-73.97605,Private room,145,1,0,,,1,0 +13959538,Luxurious 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74201,-73.97957,Entire home/apt,133,30,7,2019-04-09,0.29,91,342 +13959556,Comfy Accommodations in Queens NY (JFK - 8 Mins),74331597,Nickesha,Queens,St. Albans,40.68482,-73.76929,Private room,55,5,28,2019-06-15,0.81,5,365 +13959891,"Best Location - Modern 1 BR, very quiet",61391963,Corporate Housing,Manhattan,Upper East Side,40.77148,-73.96111,Entire home/apt,125,30,7,2019-06-30,0.21,91,157 +13960277,Stylish 1 bed just a block from Prospect Park,20518366,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.66204,-73.96052,Entire home/apt,80,5,4,2016-08-14,0.11,2,0 +13960907,Quiet and Sunny bedroom @Williamsburg bedford,11040921,Nicolas,Brooklyn,Williamsburg,40.71576,-73.95586,Private room,70,2,3,2016-08-31,0.08,1,0 +13961015,A Lovely One Bedroom Apartment!,29224381,Aurora,Bronx,Norwood,40.86853,-73.88301,Entire home/apt,120,10,7,2019-01-07,0.20,1,327 +13961073,Queen of Elevated Castle,10231747,Jason,Manhattan,Hell's Kitchen,40.76492,-73.99128,Private room,150,1,119,2019-05-22,3.29,2,316 +13961209,Fort Greene Studio with gardened backyard,83183600,Anthony,Brooklyn,Fort Greene,40.69626,-73.97276,Entire home/apt,90,3,5,2016-09-05,0.14,1,0 +13962117,Cozy One Bedroom Apartment in Lovely Clinton Hill,9856492,Johnny,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95952,Entire home/apt,115,7,9,2018-08-26,0.40,1,14 +13963005,Gorgeous 2 Bedroom apartment,41870118,Iveta,Queens,Forest Hills,40.72064,-73.83746,Entire home/apt,2350,365,0,,,1,364 +13963326,Cozy Bedroom,21408053,Tory,Manhattan,Harlem,40.82323,-73.9467,Private room,51,2,9,2016-09-09,0.25,1,0 +13968271,Two story Park Slope home with deck and garden,647256,Deena,Brooklyn,Park Slope,40.67922,-73.98157,Entire home/apt,200,1,0,,,1,0 +13968722,Charming 1BR at Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76686,-73.98393,Private room,105,2,3,2016-10-23,0.09,3,0 +13970217,Modern 2 BR Duplex apartment in Sutton Place - 42,80479138,Gordon,Manhattan,Midtown,40.76036,-73.96462,Entire home/apt,225,30,7,2019-03-14,0.22,5,321 +13971160,Cosy and Bright Bedroom *CENTRAL HARLEM*,50145118,Sonia,Manhattan,Harlem,40.80914,-73.94363,Private room,89,1,79,2019-06-19,2.24,3,0 +13971185,"Huge, private bedroom with bathroom",76975771,Claudia,Queens,Maspeth,40.73425,-73.89553,Private room,61,2,24,2018-08-21,0.69,1,281 +13971471,Nice Room in Charming Apartment,8338942,Victor,Manhattan,Nolita,40.72363,-73.99546,Shared room,70,1,228,2019-06-21,6.36,4,103 +13972708,#MANHATTAN - Upper West BIG ROOM w/tv,82921914,G. Matthew,Manhattan,Harlem,40.8197,-73.95326,Private room,69,2,72,2019-06-08,2.09,3,72 +13972766,Location!! Welcome to my Lovely Home.,14911571,Diane,Manhattan,Greenwich Village,40.72738,-74.00018,Private room,79,1,161,2019-06-22,4.43,1,125 +13973268,Simple room in the heart of Bed Stuy,48581287,Lydia,Brooklyn,Bedford-Stuyvesant,40.68583,-73.94112,Entire home/apt,83,1,7,2019-05-20,0.43,1,37 +13973514,Bright and Comfy near Prospect Park,14766250,Adam,Brooklyn,Crown Heights,40.66427,-73.95771,Private room,160,2,1,2016-08-30,0.03,1,0 +13974200,"Sunny, Pre-War Brooklyn Share",77317167,Stacey Rae,Brooklyn,Flatbush,40.65126,-73.96388,Shared room,40,1,5,2017-10-01,0.15,2,0 +13974584,Private Bedroom in 2-floor Bushwick Apartment,3152934,Cheno,Brooklyn,Bushwick,40.68758,-73.91321,Private room,50,1,2,2016-08-06,0.06,1,0 +13974993,# TIMES SQUARE - 19 MinutesBIG ROOM,82921914,G. Matthew,Manhattan,Harlem,40.82097,-73.95473,Private room,45,2,97,2019-06-22,2.79,3,101 +13975292,"Sunny, peaceful home in fantastic location",165566,Irene,Brooklyn,Gowanus,40.68203,-73.98427,Private room,85,1,1,2016-08-09,0.03,1,0 +13978036,2 BDR in Bushwick Brooklyn!,22484243,Andrew,Brooklyn,Bushwick,40.69647,-73.92474,Entire home/apt,100,3,102,2019-06-29,2.82,1,31 +13978084,Massive Beautiful Room!,116382,Anthony,Brooklyn,Crown Heights,40.67023,-73.94078,Private room,57,1,82,2019-07-05,2.28,5,356 +13978228,Airy Bright 1 Bedroom in Heart of Greenpoint BK,32704515,Lauren,Brooklyn,Greenpoint,40.72914,-73.9567,Entire home/apt,104,1,0,,,1,0 +13979519,"Heart of Williamsburg, Very Large Bedroom!",50327977,Jeffrey,Brooklyn,Williamsburg,40.7086,-73.94555,Private room,53,2,6,2016-11-06,0.17,1,0 +13979694,Cozy comfortable room near LGA&JFK#2,82367658,John,Queens,Richmond Hill,40.69054,-73.82185,Private room,38,3,19,2019-06-17,0.55,5,278 +13980280,Well Connected & Beautiful Sanctuary!,83403037,Severino,Brooklyn,Clinton Hill,40.68477,-73.96757,Entire home/apt,115,10,0,,,1,0 +13980828,Cozy sunlit 2bed w PRIVATE ROOFTOP in Brooklyn,11708912,Christine,Brooklyn,Bedford-Stuyvesant,40.68679,-73.957,Entire home/apt,139,1,2,2016-08-27,0.06,1,0 +13980860,LoraLisa's Flats,32772480,Lorna,Brooklyn,Prospect-Lefferts Gardens,40.66011,-73.95965,Entire home/apt,150,3,15,2019-06-26,1.46,2,154 +13980920,"Modern 3 BR home, 4 blocks from Public Transport!",36486481,Ann,Brooklyn,East Flatbush,40.65565,-73.93573,Entire home/apt,280,3,3,2018-12-09,0.33,1,0 +13980926,Newly renovated studio in heart of downtown NYC,858359,Joe,Manhattan,East Village,40.72441,-73.98683,Entire home/apt,90,5,5,2019-03-21,0.14,1,0 +13981865,纽约之家(Sunny Home4),27673980,Amy,Queens,Flushing,40.74447,-73.83186,Private room,50,1,60,2019-06-23,1.68,8,53 +13983092,"Quaint, Private Sunset Park Brownstone Experience",21889213,Debra,Brooklyn,Sunset Park,40.64637,-74.00558,Private room,45,21,0,,,1,0 +13986672,Bedroom in industrial huge loft in Greenpoint,1558222,Nikki,Brooklyn,Greenpoint,40.72828,-73.94225,Private room,70,5,0,,,3,0 +13987276,"Cozy, two bedrooms in a shared apartment.",83476674,Carmen,Manhattan,Harlem,40.83065,-73.94708,Private room,150,1,1,2016-08-21,0.03,1,87 +13987302,Large Studio Apartment Located Near Times Square,40060170,S,Manhattan,Hell's Kitchen,40.76488,-73.98597,Entire home/apt,155,14,75,2019-06-24,2.18,1,34 +13987339,Spacious Room in Central Location,14833533,Matthew,Manhattan,East Village,40.73395,-73.98899,Private room,109,5,25,2019-06-21,0.72,1,2 +13990819,"Cozy, Bright 1 Bedroom Fully Furnished Apartment",83526094,Mileaka,Brooklyn,Greenpoint,40.73773,-73.95489,Entire home/apt,150,1,12,2017-04-22,0.39,1,0 +13990841,"Best Location, 2bdr Park Slope, Bk",83523066,Jim,Brooklyn,Park Slope,40.67928,-73.97791,Entire home/apt,130,3,103,2019-06-21,2.94,2,101 +13991186,Well appointment apartment in doorman building,1419430,M,Manhattan,Midtown,40.76543,-73.97929,Entire home/apt,275,2,2,2017-04-09,0.06,1,0 +13991526,Brooklyn Apartment,14512391,Thomas,Brooklyn,Greenpoint,40.7205,-73.94125,Entire home/apt,100,1,1,2018-01-01,0.05,1,0 +13992183,Large Sunny Bedroom in Prospect Heights,20283580,Lucien,Brooklyn,Prospect Heights,40.67921,-73.97241,Private room,55,4,0,,,1,0 +13992442,Comfortable 1-bedroom in South Slope,57509618,Kelly,Brooklyn,Sunset Park,40.66206,-73.99767,Private room,50,1,0,,,1,0 +13992742,Cozy Studio in the Heart of Soho,83549989,Ezgi,Manhattan,NoHo,40.72618,-73.99523,Entire home/apt,215,3,2,2016-09-17,0.06,1,0 +13993046,Roomy and Comftable Room,75916476,Juan,Manhattan,Washington Heights,40.84844,-73.93611,Private room,40,10,2,2016-10-01,0.06,1,0 +13993376,SUNNY Spacious Oasis near Prospect Park!,6296368,Nancy,Brooklyn,Flatbush,40.63873,-73.95305,Private room,103,2,1,2016-09-01,0.03,1,0 +13994052,Private Room and Bathroom in Bright Apartment,10676792,Kristen,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92727,Private room,50,2,4,2016-10-01,0.11,2,0 +13995008,Awesome Chinatown Apartment,12455431,Tommy,Manhattan,Little Italy,40.71855,-73.99718,Shared room,500,1,0,,,1,0 +13995107,Spacious & quiet room w/ Balcony,39368803,Jorge,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95708,Private room,54,4,4,2017-09-21,0.12,1,0 +13995350,East Village Cozy Single Bed - Female Only,5822377,Shunan,Manhattan,East Village,40.72608,-73.98798,Shared room,79,1,1,2016-09-18,0.03,2,0 +13995561,Peaceful bedroom in Crown Heights Duplex,83585937,J.,Brooklyn,Crown Heights,40.67151,-73.91733,Private room,50,2,167,2019-06-28,4.73,2,162 +13995614,"Quiet bedroom in a bright loft, Heart of Manhattan",82539853,Pl,Manhattan,Midtown,40.74205,-73.98382,Private room,140,2,0,,,1,0 +13995891,Pre War Park Slope on Prospect Park Bedroom 2,1366270,Louisa,Brooklyn,South Slope,40.66432,-73.97954,Private room,59,4,28,2018-12-13,0.80,2,99 +13996108,Townhouse for rent,83593559,Inji,Brooklyn,Greenpoint,40.72704,-73.94587,Entire home/apt,150,14,0,,,1,0 +13996617,Cool Urban Brooklyn,40312918,Jordy,Brooklyn,Flatbush,40.65263,-73.95734,Private room,80,5,0,,,1,0 +13997385,"Best South Williamsburg Room, Sunny & Serene",41281138,Sarah,Brooklyn,Williamsburg,40.71026,-73.95165,Private room,85,3,1,2016-08-16,0.03,1,0 +13997415,"Steps to the Metro, Minutes to Manhattan!",83610543,Virgilio,Brooklyn,Bushwick,40.69974,-73.9338,Entire home/apt,185,2,169,2019-06-30,4.77,1,26 +13997539,Cozy Garden Apartment Heart of BK!,83611052,Sarah,Brooklyn,Fort Greene,40.69191,-73.97151,Entire home/apt,85,7,2,2017-04-17,0.06,1,0 +13997552,Modern 2-bedroom apartment near subway and parks,44502437,Negra,Queens,Astoria,40.75687,-73.91597,Entire home/apt,135,2,135,2019-07-06,3.80,1,168 +13997894,1 bedroom full apartment completely private!,83616984,Horacio,Queens,Corona,40.74598,-73.85683,Entire home/apt,85,7,60,2019-06-30,1.65,1,284 +13998049,Cozy Studio blocks from Time Square & the Hudson.,7245466,Steven,Manhattan,Hell's Kitchen,40.7621,-73.99424,Entire home/apt,150,1,2,2017-01-05,0.06,1,0 +13998064,Beautiful Studio with Back Patio,47988409,Eric,Brooklyn,Brooklyn Heights,40.69455,-73.99339,Entire home/apt,75,2,3,2016-10-10,0.08,1,0 +13998223,The People's Brownstone,61292168,Carol Ann,Manhattan,Harlem,40.81217,-73.94692,Entire home/apt,150,3,86,2019-07-01,2.43,1,226 +13998293,Sunny Designers Home w/Terrace - Heart of Downtown,2714018,Alexandria,Manhattan,East Village,40.72191,-73.9813,Entire home/apt,150,5,2,2016-10-03,0.06,1,0 +13998679,An Apartment to Call Home w/ Free Airport Pickup!,83627325,Jared,Queens,Sunnyside,40.74671,-73.91636,Entire home/apt,199,1,7,2018-12-30,0.20,4,365 +13999070,Sunny Cute Studio (15 Mins to Manhattan),83632643,Sheng,Queens,Woodside,40.74389,-73.89325,Entire home/apt,120,1,0,,,1,0 +13999916,Amazing Private room in LIC minutes to Manhattan,25537819,Joelle,Queens,Long Island City,40.74612,-73.94247,Private room,88,1,11,2016-08-25,0.30,2,0 +14000455,Spacious Studio/Pvt Bath 2 blks to Central Park N,83651013,Chapman,Manhattan,Harlem,40.80264,-73.9554,Private room,99,3,62,2017-07-14,1.74,1,0 +14006729,Cozy private bedroom in West Harlem,254650,Brandi,Manhattan,Harlem,40.80431,-73.95245,Private room,75,2,3,2016-08-25,0.08,2,0 +14006823,Great Studio near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76469,-73.99394,Entire home/apt,107,30,8,2019-05-04,0.24,31,332 +14007809,Colossal 1200 SF Nolita loft 15ft ceiling 1 bdrm,19462782,Michael,Manhattan,Nolita,40.72289,-73.99431,Entire home/apt,400,4,0,,,1,0 +14010200,"Scandinavean design in Crown Heights, BK",1683437,Boram,Brooklyn,Crown Heights,40.66477,-73.9506,Entire home/apt,89,5,9,2018-05-28,0.25,1,0 +14010252,"1br Apartment EastVillage,Manhattan",83757347,Leslie,Manhattan,East Village,40.72379,-73.98224,Entire home/apt,210,1,76,2019-06-15,2.10,1,311 +14010651,Perfect 3br in Lower East Side,55208833,Kevin,Manhattan,Lower East Side,40.71944,-73.98441,Entire home/apt,275,5,0,,,1,0 +14010699,Private & Spacious Master Suite w/ Full Bath,13730809,Kevin,Brooklyn,East New York,40.66172,-73.8975,Private room,57,5,22,2019-07-02,0.64,3,60 +14010951,"Huge Williamsburg private br + ba, in spacious 2br",32785916,Tim,Brooklyn,Williamsburg,40.71686,-73.95648,Private room,150,3,0,,,1,0 +14011318,Artsy basement with bathroom and private entrance,7658111,JesAnn,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93116,Private room,50,2,22,2018-10-14,0.63,1,8 +14011411,True 1BR in Prime West Village,15426862,Miles,Manhattan,West Village,40.73444,-74.00365,Entire home/apt,150,2,10,2019-06-09,0.29,1,13 +14011511,Private Room Beautiful Apartment,15929157,Christina,Brooklyn,East New York,40.67424,-73.88136,Private room,29,30,12,2018-11-01,0.38,3,193 +14011728,Large two-bedroom in Prime Location,54148881,Andrew,Brooklyn,Bedford-Stuyvesant,40.68129,-73.9487,Entire home/apt,100,2,1,2016-09-05,0.03,1,0 +14012274,Lovely and Cosy furnished 2 bedroom apartment,83786650,Bridge,Manhattan,Upper East Side,40.76026,-73.96204,Entire home/apt,152,30,1,2017-10-09,0.05,8,332 +14012606,Modern 4 Bedroom Lower Manhattan Apt in Soho,30283594,Kara,Manhattan,SoHo,40.72607,-74.00916,Entire home/apt,822,30,0,,,121,342 +14012748,NOHO 1BR 1BA,4308622,Christopher,Manhattan,East Village,40.72688,-73.98974,Entire home/apt,350,4,0,,,1,0 +14014128,Amazing Private Room - Custom Style,83809962,Tamara,Brooklyn,East Flatbush,40.66248,-73.92855,Private room,45,1,39,2019-06-12,1.27,2,365 +14014170,PRIVATE BEDROOM FOR 1 OR 2,83811169,Johno,Brooklyn,Flatbush,40.64943,-73.96202,Private room,49,2,41,2019-06-30,1.15,1,355 +14015822,Private room in 1Br Apartment,82805482,Konstantin,Brooklyn,East Flatbush,40.65367,-73.94872,Private room,45,27,6,2019-01-27,0.19,1,94 +14016202,Spacious Private Room/Full bath EAST VILLAGE,81939249,Tara,Manhattan,East Village,40.72383,-73.98289,Private room,120,2,0,,,1,0 +14016206,Williamsburg! 1 stop from Manhattan with backyard!,18881301,Brittany,Brooklyn,Williamsburg,40.71091,-73.96029,Private room,66,5,0,,,1,0 +14020396,"Westside Haven, Comfortable & Convenient !",77498973,Shaquana,Manhattan,Harlem,40.80266,-73.95792,Entire home/apt,122,1,41,2019-06-25,1.13,1,8 +14021649,Spacious Washington Heights 1 Bedroom,4300035,Charlotte,Manhattan,Washington Heights,40.85267,-73.93664,Entire home/apt,64,15,1,2016-08-06,0.03,1,0 +14022086,"Fun, Comfy, and Convenient Studio in Midtown West",13951935,Wayne,Manhattan,Hell's Kitchen,40.7598,-73.99681,Entire home/apt,135,2,8,2019-05-27,0.34,1,0 +14022980,HUGE Apt w/1 bedroom sublet in Brooklyn,7656555,Carly,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94817,Private room,33,2,11,2018-09-01,0.31,1,0 +14023316,chambre dans appartement arty de Brooklyn,31747645,Marie Salomé,Brooklyn,Clinton Hill,40.68583,-73.96434,Private room,70,2,0,,,2,0 +14024257,1 Room in 2 Bed Apt in the heart of Nolita/Soho,14399467,Caroline,Manhattan,Nolita,40.72203,-73.99498,Private room,320,4,6,2017-10-30,0.18,2,0 +14024708,Your beach-side bungalow awaits!,83930029,Fianna,Staten Island,New Dorp Beach,40.56464,-74.1,Entire home/apt,62,1,0,,,1,0 +14025561,MTW- Steffanie,83933642,Mona,Manhattan,Theater District,40.7607,-73.98347,Entire home/apt,130,30,1,2019-05-05,0.45,1,188 +14026544,Spacious Quiet Room in the East Village,18595434,Amanda,Manhattan,East Village,40.72588,-73.98198,Private room,95,1,7,2016-10-23,0.19,1,0 +14026862,Very Large 1 Bedroom with Large Patio,55703198,Henry,Queens,Ridgewood,40.70382,-73.90059,Entire home/apt,100,4,0,,,1,362 +14027065,Clean and comfortable stay,23502477,Yvonne Yuan,Manhattan,Midtown,40.75273,-73.96904,Private room,90,5,0,,,1,0 +14027110,"Awesome 1 BR in multi-cultural Queens, sleeps 4!",18873232,Laura,Queens,Elmhurst,40.73319,-73.87782,Entire home/apt,150,3,7,2017-01-07,0.20,1,261 +14027756,Large Soho Loft - Prime Location,57162807,Will,Manhattan,SoHo,40.72178,-73.99742,Entire home/apt,350,5,1,2016-09-23,0.03,1,0 +14028018,Gorgeous studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.763,-73.99452,Entire home/apt,120,30,6,2019-03-29,0.19,31,322 +14028280,NEW! BEST LOCATION !!! 3min to Rockefeller Plaza,60688035,Marta,Manhattan,Midtown,40.75938,-73.97235,Private room,250,3,152,2019-06-22,4.25,2,229 +14028380,Spacious 2 Floor 1 Bed Apartment!,7932698,Matthew,Brooklyn,Crown Heights,40.67244,-73.94426,Entire home/apt,106,1,30,2017-04-11,0.85,1,0 +14028513,"Two-Bedroom Apartment, 10 Minutes to Manhattan",864735,Jason,Queens,Astoria,40.7626,-73.91341,Entire home/apt,65,30,6,2019-06-19,0.17,8,201 +14028586,Perfect Luxury Studio in DUMBO,83977725,Mi,Brooklyn,Vinegar Hill,40.70125,-73.98582,Entire home/apt,175,2,114,2019-06-22,3.36,1,154 +14028597,Ground floor 2 Bedrooms with Backyard & BBQ,42106344,Mike,Brooklyn,Williamsburg,40.71723,-73.96703,Entire home/apt,360,5,8,2019-06-21,0.26,1,175 +14029633,Marine park studio,42204606,Allegra,Brooklyn,Sheepshead Bay,40.60778,-73.94194,Entire home/apt,119,1,12,2019-06-23,5.37,1,140 +14029776,peaceful space with a view,83996144,Amelia,Manhattan,Nolita,40.72202,-73.99451,Entire home/apt,85,2,0,,,1,0 +14030285,"Very large 3 bdrm, 1.5 bath, Flatbush/Ditmas Park",84003200,Elissa,Brooklyn,Flatbush,40.64314,-73.95817,Entire home/apt,189,2,88,2019-06-27,3.18,1,255 +14030375,Vanilla Tea - Cozy Studio Hideaway in Bed Stuy #5,57186170,Deirdre,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9447,Private room,68,2,134,2019-06-20,3.80,3,245 +14032445,Large One Bedroom Apartment,75853911,Sabrina,Manhattan,Harlem,40.80299,-73.95713,Entire home/apt,100,1,3,2016-09-16,0.09,1,0 +14036117,Comfortable 1BR with Laundry NYC,84071996,Clayton,Manhattan,Washington Heights,40.85519,-73.92705,Private room,40,3,3,2018-09-01,0.09,1,171 +14036591,Lovely room and location! - Williamsburg duplex,5367097,Benjamin,Brooklyn,Williamsburg,40.70658,-73.95001,Private room,45,30,0,,,1,0 +14036911,Stunning Clinton Hill Apartment,64109887,Emily,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9575,Private room,38,31,0,,,1,0 +14037145,B crownheights queen size bed$100,83147028,Shirley,Brooklyn,Crown Heights,40.67011,-73.92544,Private room,100,1,27,2018-10-30,0.75,2,365 +14037459,The BEST View in New York!,265832,Kathryn & Tobias,Manhattan,Harlem,40.81103,-73.9398,Private room,165,30,9,2016-11-05,0.25,1,88 +14039239,Spacious Room in Park Slope Apartment,78870551,Christina,Brooklyn,South Slope,40.66562,-73.98936,Private room,80,1,0,,,1,0 +14039287,Park Slope Railroad Room in July!,76114171,Priya,Brooklyn,Park Slope,40.67026,-73.97668,Private room,40,1,2,2016-07-28,0.06,1,0 +14041141,"Epic West Village, NYC rental",20971070,Melani,Manhattan,Chelsea,40.73819,-73.99835,Entire home/apt,175,27,2,2018-10-26,0.06,1,310 +14041196,Holiday @ Times Square One bedroom!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76161,-73.98995,Entire home/apt,99,4,82,2019-06-22,2.29,5,228 +14041447,Cosy Crown Heights Home Away From Home,84141923,Marisha,Brooklyn,Crown Heights,40.66856,-73.93929,Private room,50,3,45,2019-02-18,1.31,2,0 +14041548,Beautiful room for rent,84141567,Alida,Queens,Maspeth,40.73597,-73.90072,Private room,70,1,2,2017-08-31,0.07,3,188 +14041728,Spacious studio close to Manhatten,84146048,Michael,Queens,Sunnyside,40.73894,-73.92343,Entire home/apt,85,1,4,2016-09-13,0.11,1,0 +14042426,Riverdale - Room with Breakfast for Ladies Only,17365319,Fahmida,Bronx,Kingsbridge,40.88393,-73.90639,Private room,50,2,14,2019-07-05,0.40,2,26 +14043646,"Upscale safe area,20 minutes to Manhattan/Airports",15838559,Weimin,Queens,Forest Hills,40.71865,-73.8538,Private room,69,60,6,2016-08-21,0.17,4,0 +14043849,Comfy private room in Williamsburg's top location!,48100358,Ivan,Brooklyn,Williamsburg,40.70843,-73.9588,Private room,54,1,148,2019-06-22,4.11,3,19 +14044731,One bedroom apartment for rent in West Harlem,47260217,Tess,Manhattan,Harlem,40.82287,-73.9518,Private room,38,7,2,2016-07-27,0.06,1,0 +14048187,Beautiful Room in the Heart of Williamsburg,28700317,Dominick,Brooklyn,Williamsburg,40.71216,-73.94986,Shared room,300,2,0,,,1,0 +14050933,"Large, sunny room in Brooklyn",14235450,Elizabeth,Brooklyn,Sunset Park,40.64775,-74.00858,Private room,41,3,2,2016-09-11,0.06,1,0 +14053775,Prime apartment in private house + outdoor space,8071107,Tov,Brooklyn,Williamsburg,40.70582,-73.93696,Entire home/apt,199,2,68,2019-07-01,1.96,2,20 +14054091,Central Cozy 3 Bedrooms Apartment,83978541,Goerge,Manhattan,Midtown,40.75966,-73.96828,Entire home/apt,235,30,23,2019-04-12,0.68,1,134 +14055238,Spacious Prospect Park Garden Apt,84303682,Brian And Rachel,Brooklyn,Park Slope,40.67003,-73.974,Entire home/apt,240,2,144,2019-06-30,4.04,1,217 +14055341,Cozy Private Room in LIC close to Everywhere in NY,25537819,Joelle,Queens,Long Island City,40.74604,-73.94194,Private room,70,1,13,2018-08-24,0.36,2,0 +14056307,BIG GORGEOUS 1 bd 2 br in PRIME of Chelsea,32919123,Ryan,Manhattan,Chelsea,40.74616,-73.99773,Entire home/apt,250,7,1,2018-01-02,0.05,1,0 +14056447,Private space in GORGEOUS building,84339401,Mara,Brooklyn,Bedford-Stuyvesant,40.68543,-73.94571,Entire home/apt,91,1,4,2017-05-21,0.13,2,0 +14057678,Cozy Room in Chelsea,12750945,Luis,Manhattan,Chelsea,40.74465,-73.99883,Private room,125,1,10,2019-06-09,0.38,4,181 +14057802,Private room in the heart of Williamsburg!,48100358,Ivan,Brooklyn,Williamsburg,40.70973,-73.95939,Private room,55,1,147,2019-06-15,4.10,3,24 +14058251,Spacious room in Prospect Park,15579169,Nacho,Brooklyn,Flatbush,40.65258,-73.96013,Private room,75,1,12,2019-06-09,0.56,1,50 +14058357,"Clean, Cozy place to stay- Great Location in NYC!",84366617,Kathy,Brooklyn,Sheepshead Bay,40.58672,-73.96502,Private room,44,3,32,2019-06-10,1.24,2,42 +14058375,Sunny Private Room with Roof Terrace & River View,22058409,Abigail,Manhattan,Financial District,40.70476,-74.01557,Private room,90,1,2,2016-08-31,0.06,2,0 +14058880,"$2,800/m for 6/8-7/7! Long-term Deal in Park Slope",9273392,Makiko,Brooklyn,Park Slope,40.67356,-73.97742,Entire home/apt,100,28,75,2019-03-27,2.10,1,0 +14064701,"Courtyard duplex with piano, E Village / Union Sq",84441066,Elizabeth,Manhattan,East Village,40.73038,-73.98458,Private room,170,5,22,2019-06-19,0.61,1,143 +14065007,Spacious Apt. @ Brooklyn Botanic Garden/Museum,4095135,Julia,Brooklyn,Crown Heights,40.67033,-73.95949,Entire home/apt,140,2,10,2018-08-12,0.28,1,93 +14065198,Sleek 1BR in the heart of Williamsburg!,27178707,Brian,Brooklyn,Williamsburg,40.71597,-73.95223,Entire home/apt,199,3,2,2016-09-19,0.06,1,0 +14065448,Doorman GYM Studio Best Location 5193,16098958,Jeremy & Laura,Manhattan,Midtown,40.75337,-73.99058,Entire home/apt,156,30,2,2018-01-08,0.09,96,189 +14065821,Doorman Views Location One bedroom 5194,16098958,Jeremy & Laura,Manhattan,Midtown,40.75298,-73.98874,Entire home/apt,170,30,3,2018-12-08,0.10,96,0 +14066228,Spacious in 1BR East Harlem NYC,46460278,Amanda,Manhattan,East Harlem,40.79474,-73.9383,Entire home/apt,110,3,26,2019-06-23,0.73,1,5 +14066397,"Sunny, Clean, 1BR in Washington Heights",33990883,Summer,Manhattan,Washington Heights,40.85182,-73.92941,Entire home/apt,115,5,13,2019-05-22,0.37,1,0 +14066702,Room in Uptown Manhattan,84463909,Sandra,Manhattan,Washington Heights,40.8385,-73.94313,Private room,70,3,15,2017-05-02,0.43,1,95 +14068074,Soho Split-level Penthouse,13410839,Todd,Manhattan,Nolita,40.72339,-73.99461,Private room,250,91,55,2019-05-08,1.59,1,34 +14068646,Prime Location! 3 Rooms! newly furnished Apt!,2119276,Host,Manhattan,East Village,40.72752,-73.98969,Entire home/apt,200,30,6,2018-10-11,0.28,39,96 +14068668,OVERSIZED STUDIO IN EAST 37 TH~MURRAY HILL,2856748,Ruchi,Manhattan,Murray Hill,40.74733,-73.97865,Entire home/apt,197,30,0,,,49,329 +14069371,Big bedroom 3 stops/10 mins from Manhattan!,5581683,Brett,Brooklyn,Cobble Hill,40.68759,-73.99376,Private room,82,1,25,2017-08-31,0.70,1,0 +14069379,1br Apartment to relax in NYC,12614433,Kelly,Brooklyn,Bedford-Stuyvesant,40.69517,-73.93808,Entire home/apt,85,1,1,2016-08-12,0.03,1,0 +14070671,"Independent Basement Apt.(2 bed rooms, 1 Bath)",83377687,Fernando,Queens,Jackson Heights,40.75479,-73.85776,Entire home/apt,69,2,177,2019-06-28,5.13,2,105 +14070967,Chic pied-a-terre w/ terrace -15mins to Manhattan,84515464,Stephen,Queens,Astoria,40.7671,-73.91261,Entire home/apt,150,3,64,2019-07-07,1.84,1,264 +14071193,Large Sunny Studio in East Village,9111954,Miles,Manhattan,East Village,40.72191,-73.98141,Entire home/apt,150,2,69,2019-07-01,5.27,1,39 +14071357,Lofted Bedroom in Awesome Greenpoint Loft!,2432924,Charlie,Brooklyn,Greenpoint,40.73413,-73.95835,Private room,49,14,0,,,1,0 +14071436,Luxurious Full Floor 2 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Midtown,40.75683,-73.96901,Entire home/apt,165,30,0,,,91,147 +14071802,Serene private room in chic Astoria apartment.,72572525,Samantha,Queens,Astoria,40.76218,-73.92436,Private room,90,3,8,2018-08-04,0.23,2,0 +14071817,huge studio - harlem brownstone- 15 min to 14th st,970540,Jon,Manhattan,Harlem,40.80546,-73.94601,Entire home/apt,92,2,0,,,1,0 +14073163,NYC Wyndham 1 bedroom Presidential Condo sleeps 4,60617669,Rich,Manhattan,Midtown,40.7535,-73.97134,Entire home/apt,159,2,12,2019-01-30,0.35,4,0 +14076357,Modern 3br 2bath in trendy Williamsburg!,84584067,Kelsye,Brooklyn,Williamsburg,40.71928,-73.94539,Entire home/apt,280,3,43,2019-05-06,1.24,1,335 +14080022,Beautiful 2B/2B at Central Park and the AMNH,84632856,Brooke,Manhattan,Upper West Side,40.77743,-73.97616,Entire home/apt,325,3,4,2016-10-09,0.11,1,0 +14084988,Beautiful and super clean 1-bedroom in Morningside,64960421,Valeria,Manhattan,Morningside Heights,40.80408,-73.96347,Entire home/apt,120,3,6,2019-05-23,0.17,1,8 +14085389,Clean & Cozy room in Great Location,30656279,Jill,Manhattan,Hell's Kitchen,40.76738,-73.98743,Private room,61,30,3,2018-08-05,0.10,4,180 +14085512,Restful Superior Court,51826974,Rose,Brooklyn,Canarsie,40.63981,-73.90211,Entire home/apt,80,3,15,2019-07-01,0.42,2,365 +14086188,Nice room near Times Square BEST LOCATION ❤️,12086609,Laetitia,Manhattan,Hell's Kitchen,40.76126,-73.99117,Private room,90,1,11,2017-07-30,0.42,1,0 +14086584,Cozy Cool Room in my Charming Loft,51826974,Rose,Brooklyn,Canarsie,40.63794,-73.8988,Private room,51,3,0,,,2,365 +14086770,Cozy and Classy Private Duplex in UES,26111584,Joseph,Manhattan,Upper East Side,40.77601,-73.95441,Entire home/apt,178,2,72,2018-06-18,2.07,1,0 +14088558,Elegant apt in the heart of the Flatiron District,37073646,Aandrea,Manhattan,Chelsea,40.73902,-73.99143,Entire home/apt,1100,3,0,,,1,0 +14088971,Beautiful Sunny South Slope 1 BR,84737060,Remy,Brooklyn,Sunset Park,40.66142,-73.99078,Entire home/apt,119,3,63,2019-06-28,1.82,1,18 +14089094,Cozy 1 Bedroom in Brooklyn,84738777,Rohan,Brooklyn,Sunset Park,40.64187,-74.01252,Private room,30,2,1,2016-09-06,0.03,1,0 +14089282,"Comfy room in brownstone, Ridgewood",57517386,Ruthy,Queens,Ridgewood,40.70365,-73.89572,Private room,100,1,0,,,1,0 +14089808,Perfect UES location! Museum quality private room!,29170051,Jackie,Manhattan,East Harlem,40.78986,-73.94848,Private room,100,3,80,2019-07-02,2.26,1,112 +14090133,Coney Island cabana apt - 1/2 BLOCK FROM BEACH!,84754283,Markus,Brooklyn,Coney Island,40.5738,-73.99044,Entire home/apt,100,2,2,2016-08-28,0.06,1,0 +14091281,Studio | Heart of Greenwich Village,77174503,Ryley,Manhattan,West Village,40.73598,-74.00736,Entire home/apt,250,3,3,2018-10-08,0.09,1,328 +14091525,Large room with AC a in house with a porch,5725732,Scott,Brooklyn,Kensington,40.64023,-73.9717,Private room,30,2,1,2016-08-05,0.03,1,0 +14091664,Spacious 1BD w Amazing City views,24176743,Emma,Manhattan,Midtown,40.74572,-73.98285,Entire home/apt,240,2,5,2016-12-04,0.14,1,0 +14092217,Skylight Room in 3 bedroom duplex,84779589,Maba,Brooklyn,Crown Heights,40.67059,-73.9337,Private room,60,2,147,2019-07-02,4.10,3,0 +14092236,Big bright room in 3 bedroom duplex,84779589,Maba,Brooklyn,Crown Heights,40.67112,-73.93368,Private room,65,1,149,2019-06-25,4.17,3,185 +14092239,Two bedroom apt in house with private entrance,84779589,Maba,Brooklyn,Crown Heights,40.67114,-73.93238,Entire home/apt,140,2,137,2019-07-02,3.82,3,234 +14092722,Large 1BR in Heart of the West Village,25075066,Scott,Manhattan,West Village,40.7349,-74.0005,Entire home/apt,265,2,19,2019-04-25,0.55,1,5 +14092808,Great apt right by Grand Central!!,70671555,Summar,Manhattan,Midtown,40.75043,-73.97243,Private room,86,14,0,,,1,346 +14093073,SuperLuxuryRoom IconicBuilding Walk to WorldTrade,79188102,Sam,Manhattan,Financial District,40.70525,-74.01045,Private room,145,1,9,2018-12-10,0.25,1,90 +14093225,Luxury studio apartment with fantastic view,31250542,Kenneth,Manhattan,Financial District,40.70657,-74.00549,Entire home/apt,100,2,1,2016-07-23,0.03,1,0 +14094264,Upper East side Cozy apartment.,32764610,Ilkay,Manhattan,East Harlem,40.7992,-73.93879,Private room,75,1,0,,,1,0 +14094358,private 1 bedroom/Flat,84810879,Linda,Queens,Rosedale,40.6599,-73.73221,Entire home/apt,105,2,29,2019-06-04,0.81,3,38 +14094370,Huge Bedroom in Hip Williamsburg Loft-- Bedford L,5242569,Jj,Brooklyn,Williamsburg,40.71608,-73.95888,Private room,85,3,1,2016-08-16,0.03,1,0 +14094480,Studio close to Central Park and Museum Mile,4325334,Nikita,Manhattan,East Harlem,40.78992,-73.94888,Entire home/apt,150,2,5,2016-08-28,0.14,1,0 +14095224,Large Artsy Bedroom in hip & cool E. Village Apt!,4765305,Haffro,Manhattan,East Village,40.72166,-73.98327,Private room,100,3,3,2018-08-10,0.14,4,157 +14100416,Williamsburg w attached balcony - Manhattan view!,12658747,Sarah,Brooklyn,Williamsburg,40.70936,-73.94708,Private room,90,6,0,,,1,0 +14100582,Warm Central Park Upper West Side One Bedroom,55836825,Natalie,Manhattan,Upper West Side,40.78903,-73.96956,Entire home/apt,150,1,0,,,1,0 +14100743,beautiful one bedroom apartment,27126954,Este,Brooklyn,Midwood,40.62755,-73.96097,Entire home/apt,75,1,1,2016-07-21,0.03,1,0 +14101329,"Loft style apt, renovated",13225047,Lila,Brooklyn,Williamsburg,40.71912,-73.9572,Private room,60,1,53,2018-03-15,1.52,3,0 +14102790,"Clean and modern in prime Carroll Gardens, BK",84902242,Scott,Brooklyn,Carroll Gardens,40.67615,-74.00004,Private room,80,3,47,2019-05-13,1.40,1,308 +14103889,Luxury New Private Duplex in Trendy Bed-Stuy,41158436,Alina,Brooklyn,Bedford-Stuyvesant,40.69034,-73.9444,Entire home/apt,137,2,99,2019-06-01,2.76,1,221 +14104044,Privet outdoor space!!!,84914817,Alon,Manhattan,Murray Hill,40.74733,-73.97289,Entire home/apt,79,30,5,2019-01-06,0.36,2,308 +14104812,Pibbles and friends,2590902,Miho And Justin,Brooklyn,Fort Greene,40.6892,-73.97474,Private room,120,3,92,2019-06-24,2.57,1,130 +14105094,"Airy, light-flooded 2-bath West Village apartment",50663338,Olivia,Manhattan,West Village,40.73282,-74.00684,Entire home/apt,220,5,1,2016-08-06,0.03,1,0 +14105220,Sunlight Suite,48910353,Olivia & Fadia,Manhattan,West Village,40.73564,-74.00303,Entire home/apt,300,1,158,2019-07-02,4.39,1,172 +14107667,"West 89th Street, Luxury Svcd 1bd UWS Apartment",22541573,Ken,Manhattan,Upper West Side,40.78989,-73.97264,Entire home/apt,267,30,0,,,87,354 +14108460,AMAZING Entire-Floor Apt in Manhattan Brownstone,21792701,Sean,Manhattan,Washington Heights,40.83604,-73.94067,Entire home/apt,149,3,0,,,1,0 +14108509,"West 16th street, Charming Svced 1bd Apt",22541573,Ken,Manhattan,Chelsea,40.73929,-73.99914,Entire home/apt,195,30,0,,,87,57 +14108671,Clean & Cozy Close to Macy's,27165264,Elena,Manhattan,Chelsea,40.74767,-73.99003,Private room,90,1,9,2017-09-29,0.28,1,0 +14108870,Warm and cozy in Brooklyn,1805238,Aleksandra,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.958,Private room,48,1,68,2019-06-25,2.02,2,14 +14109485,Contemporary Park Slope Brooklyn Duplex,67252331,Ericka,Brooklyn,South Slope,40.66414,-73.98507,Entire home/apt,179,2,16,2019-05-27,0.45,1,1 +14109494,Clinton Hill Apartment Single Bedroom ! Pratt ~~,30610258,Santiago,Brooklyn,Clinton Hill,40.69591,-73.96284,Private room,58,2,1,2018-09-23,0.10,1,0 +14109521,Sunny Bedroom in trendy Bushwick Apt. w/Rooftop,83176398,Cynthia,Brooklyn,Bushwick,40.7038,-73.92712,Private room,50,14,0,,,1,0 +14109544,Cozy+Sunny 2 bedroom apt. close to Central Park,5302735,Thiago,Manhattan,Harlem,40.80719,-73.95303,Entire home/apt,49,4,137,2019-06-29,3.88,2,279 +14109893,Charming Artist Studio,3404898,Erica,Brooklyn,Prospect-Lefferts Gardens,40.65915,-73.96004,Entire home/apt,110,2,6,2016-10-23,0.17,1,0 +14110144,Cozy 1+ br apt. on Riverside Dr,8349334,Benjamin,Manhattan,Morningside Heights,40.80822,-73.96567,Entire home/apt,190,5,9,2019-01-02,0.26,1,0 +14110407,Relaxing Ocean Front Beach Home in Arverne!,84765662,Sita,Queens,Arverne,40.58843,-73.79905,Entire home/apt,450,3,15,2019-06-22,0.42,1,290 +14111092,SweetSpot in Upper Manhattan,85006429,Pedro,Manhattan,Harlem,40.82446,-73.94318,Private room,69,1,64,2019-07-01,1.81,1,322 +14111254,"NYC Chelsea Neighborhood, Studio Apartment",3730998,Chelsea,Manhattan,Chelsea,40.74011,-73.99829,Entire home/apt,250,2,45,2019-06-19,1.90,1,90 +14111390,Beautiful Chelsea loft perfect for families.,22897581,Levi,Manhattan,Chelsea,40.74438,-73.99329,Entire home/apt,400,5,0,,,1,0 +14111626,AMAZING DESIGNER TIMES SQUARE APARTMENT- BEAUTIFUL,85013173,Charly,Manhattan,Hell's Kitchen,40.76325,-73.98981,Entire home/apt,249,7,100,2019-06-10,2.82,1,237 +14111975,Cozy spot in the lovely East Village neighborhood,85021301,Seamus,Manhattan,East Village,40.72677,-73.98194,Entire home/apt,125,1,2,2016-08-08,0.06,1,0 +14115455,"Comfortable, Convenient in Central Park North Area",43268148,Emme,Manhattan,Harlem,40.79862,-73.953,Private room,96,2,0,,,1,0 +14115645,Cozy Bed/Bath w/Appliances Close to JFK/LGA,85062355,Carolyn,Queens,Cambria Heights,40.70219,-73.73296,Private room,60,1,78,2019-07-06,2.18,1,78 +14117696,Charming and Quiet West Village Studio,11796442,Thomas,Manhattan,West Village,40.73897,-74.0018,Entire home/apt,179,5,32,2019-06-30,0.90,1,41 +14120153,Large and Luminous room available for female only,44702712,Jasmine,Queens,Briarwood,40.70648,-73.81491,Private room,48,1,0,,,1,0 +14120431,Chelsea 1 bed/studio,11476179,Christina,Manhattan,Chelsea,40.74062,-73.99824,Entire home/apt,155,2,29,2018-11-25,0.83,1,8 +14120515,Comfy Sunnyside bedroom,35405142,Alvina,Queens,Sunnyside,40.7372,-73.919,Private room,65,5,12,2018-05-11,0.34,1,76 +14120620,Modern Downtown Space for Families: 3 bed | 2 bath,16962957,Nick,Manhattan,Chinatown,40.71655,-73.99203,Entire home/apt,499,1,116,2019-06-30,3.24,4,30 +14121045,Luxury TriBeCa Apartment with Amazing Water View,4348719,Myles,Manhattan,SoHo,40.72461,-74.01136,Entire home/apt,250,2,2,2016-09-11,0.06,1,130 +14121640,South Slope Modern 1+ Bedroom with Outdoor Space,16283468,Philip,Brooklyn,Sunset Park,40.66285,-73.9908,Entire home/apt,120,2,12,2018-07-08,0.33,2,27 +14122786,Nice Spot in Bushwick,1164515,Chris,Brooklyn,Bushwick,40.70318,-73.92609,Private room,50,1,64,2019-06-28,1.78,2,302 +14124792,Charming Poet's Room in Sunny Apartment,85172611,Cornelia,Brooklyn,Crown Heights,40.67147,-73.95181,Private room,48,2,2,2016-08-08,0.06,1,0 +14124987,Bushwick plays,2974873,Jourdain,Brooklyn,Bushwick,40.69271,-73.91361,Private room,45,30,5,2018-07-31,0.15,2,339 +14125183,Full bed in private Bushwick room,5914717,Kait,Brooklyn,Bushwick,40.69822,-73.92918,Private room,50,2,59,2018-04-22,1.67,1,0 +14125891,"1 br in Williamsburg, near L train",32545798,Sasha,Brooklyn,Williamsburg,40.71378,-73.96257,Private room,75,2,17,2017-07-30,0.47,5,0 +14125913,Charming Brooklyn Heights floor-through apartment,21592879,Perry,Brooklyn,Brooklyn Heights,40.69976,-73.99313,Private room,65,7,1,2016-08-14,0.03,1,0 +14126303,Huge Sunny Apartment in Heart of Harlem NYC,85191443,Evelyn,Manhattan,Harlem,40.82228,-73.93894,Private room,90,1,30,2018-01-04,0.84,1,0 +14126610,"Comfy bedroom, central in Manhattan",85196753,Grégoire,Manhattan,Kips Bay,40.74488,-73.98079,Private room,56,14,0,,,1,0 +14126853,Nini's Art Shack,21544501,Natalie,Brooklyn,Bushwick,40.68798,-73.90677,Private room,80,1,2,2016-11-01,0.06,2,281 +14129429,3 Bedroom Apartment for Rent,85235313,Richard,Manhattan,Greenwich Village,40.73085,-74.00079,Entire home/apt,174,360,0,,,1,365 +14131597,1920s Room 1 block from Prospect Park and Q Access,3620205,Nick,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.95989,Private room,43,1,6,2017-03-01,0.19,1,0 +14133414,Space to rest near LaGuardia Airport,37312959,Maya,Queens,East Elmhurst,40.77009,-73.87708,Private room,32,1,411,2019-07-04,11.40,5,161 +14134105,Sun Filled Pre-War Apartment near Fort Greene Park,68397685,Philip And Kerstin,Brooklyn,Fort Greene,40.69394,-73.97115,Shared room,39,1,12,2016-09-07,0.34,1,0 +14135050,"",85288337,Jeff,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93234,Private room,70,3,0,,,1,0 +14135904,Zen Bed/Bath in Historic Harlem,63361875,Elisa,Manhattan,Harlem,40.81667,-73.94342,Private room,75,3,6,2017-05-21,0.17,1,0 +14137017,Modern 1 BR Williamsburg Apartment with backyard,85313871,Andrew,Brooklyn,Williamsburg,40.70965,-73.95782,Entire home/apt,130,3,4,2016-12-26,0.12,1,0 +14137639,Brooklyn Oasis,18418244,Jocelyn,Brooklyn,Bushwick,40.69572,-73.9293,Private room,85,2,3,2017-09-28,0.10,1,83 +14138066,Mediterranean Style Charmer 20 mins to Manhattan,35910781,Zafir,Queens,Jackson Heights,40.74935,-73.88332,Shared room,23,1,0,,,1,0 +14138706,"Quirky, art filled Greenpoint Apartment!",3703456,Brooke,Brooklyn,Greenpoint,40.72488,-73.94085,Entire home/apt,95,1,39,2019-06-23,1.10,2,29 +14138800,Cozy Brooklyn Home with an Artistic Twist,85337174,Shilpa,Brooklyn,Bushwick,40.68128,-73.90546,Private room,90,2,26,2018-10-17,0.73,1,84 +14139170,Comfortable room in a Bushwick duplex with patio,1252743,Dory,Brooklyn,Bushwick,40.70175,-73.91525,Private room,45,1,9,2018-03-20,0.45,1,0 +14139187,Nice cheap place to stay in NYC,74707352,Amadeus,Bronx,Longwood,40.82148,-73.89122,Private room,60,1,8,2016-12-29,0.22,1,364 +14139553,CUTE STUDIO ON UPPER EAST SIDE @ CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.77007,-73.9569,Entire home/apt,119,30,12,2019-06-11,0.38,16,339 +14139651,Centrally Located Private Midtown Studio,19134246,Brendan,Manhattan,Kips Bay,40.74506,-73.97934,Entire home/apt,150,3,10,2019-06-15,0.37,1,8 +14140552,Awesome 2bdr in the heart of the East Village,2928701,Catalina,Manhattan,East Village,40.72872,-73.98267,Entire home/apt,295,7,12,2019-05-25,0.78,2,128 +14140905,Beautiful Bushwick loft for August,8133558,Gryphon,Brooklyn,Bushwick,40.69493,-73.9294,Private room,38,15,0,,,1,0 +14141050,Two bedrooms available in a cozy apartment.,1715674,Shriya,Brooklyn,Windsor Terrace,40.65544,-73.97491,Private room,130,2,4,2018-01-01,0.11,1,0 +14141215,private room in LES,85368273,Nir,Manhattan,Lower East Side,40.71795,-73.98553,Private room,70,1,1,2016-10-03,0.03,1,0 +14141622,Private cozy suite,85375269,Gladys,Queens,Woodhaven,40.68904,-73.85052,Entire home/apt,71,1,155,2019-07-01,4.34,1,173 +14141874,Bed in Semi-Private Room Close to Park and Train,71473335,Carolyn,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.958,Shared room,75,2,1,2017-09-05,0.04,1,0 +14142298,Charming and bright place with a good vibe!,46667080,Ellen,Queens,Woodhaven,40.6905,-73.85612,Entire home/apt,85,2,74,2019-07-02,2.08,1,52 +14143250,"Clean, cozy, comfortable private room. Perfect Loc",85400172,Joy,Brooklyn,Crown Heights,40.67564,-73.94798,Private room,67,3,29,2019-03-19,0.84,2,365 +14147107,"Spacious, Quiet 1 Bedroom in Hamilton Heights",76838000,Catherine,Manhattan,Harlem,40.83117,-73.94846,Entire home/apt,75,1,5,2018-08-26,0.14,1,0 +14148550,La Guardia Airport Cozy Attic studio with Spiral,35660592,Luis,Queens,Corona,40.75134,-73.85219,Entire home/apt,79,2,83,2019-07-02,2.32,6,320 +14148905,Brand new beautiful one bedroom apartment,85470054,Yi,Queens,Flushing,40.73851,-73.80106,Entire home/apt,72,1,256,2019-06-24,7.10,1,124 +14148988,"Heart of Manhattan, affordable place!",4478946,Elka,Manhattan,Midtown,40.75247,-73.97305,Entire home/apt,153,1,1,2016-07-31,0.03,1,0 +14149046,Faith,38294216,Rachel,Queens,Jamaica,40.68689,-73.80117,Private room,60,7,5,2019-06-01,0.27,4,160 +14149127,UES Oasis,16784527,Angie,Manhattan,Upper East Side,40.77711,-73.95367,Entire home/apt,150,5,47,2018-12-11,1.69,1,0 +14150846,Beautiful Cozy Apartment near Soho!,1013329,April,Manhattan,East Village,40.72564,-73.98772,Entire home/apt,142,3,15,2019-05-28,0.71,1,118 +14151551,Great location 15minutes to South central park NYC,57890723,John,Queens,Sunnyside,40.74305,-73.9168,Private room,55,2,67,2019-04-09,1.90,1,0 +14152806,"Large & unique, über-modern studio",31301220,Helen,Brooklyn,Williamsburg,40.71192,-73.9628,Entire home/apt,249,9,19,2017-10-04,0.66,1,0 +14153081,Vibrant Apartment with Backyard Oasis in Bushwick,1699871,Chloe,Brooklyn,Bushwick,40.68463,-73.90729,Entire home/apt,111,2,73,2019-06-02,2.06,3,170 +14153242,Large Sunny 1 BR - Heart of Manhattan!,7440944,Diana,Manhattan,East Village,40.72808,-73.98377,Entire home/apt,179,4,13,2018-10-27,0.38,1,0 +14153255,The Mahogany Suite- The Solo Adventurer l,52862385,The Mahogany Suite(Studio Apartment,Brooklyn,East Flatbush,40.6628,-73.93397,Private room,65,2,24,2019-06-17,0.71,3,290 +14154356,Private Bedroom in the Heart of Hell's Kitchen,85546351,Rachel,Manhattan,Hell's Kitchen,40.76094,-73.994,Private room,63,2,36,2018-12-16,3.06,1,59 +14154373,Quiet Full Bed - East Village / LES Comfy Colorful,4685913,Paul,Manhattan,East Village,40.72097,-73.97769,Private room,90,12,1,2016-08-14,0.03,2,0 +14155064,One Bedroom in Heart of Chelsea,2688383,Rachel,Manhattan,Chelsea,40.74121,-73.99995,Entire home/apt,143,4,1,2016-10-09,0.03,1,0 +14155795,"Room for rent. Quiet, safe.",65057965,Wanda,Manhattan,East Village,40.73058,-73.99002,Private room,85,2,10,2017-06-30,0.28,1,306 +14159853,Private Queen bedroom in Soho/Nolita Apartment,618586,Jennifer,Manhattan,Nolita,40.7232,-73.9946,Private room,67,1,86,2019-06-16,2.50,1,45 +14161086,nice room in bedstuy G,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68403,-73.94979,Private room,45,1,87,2019-07-02,2.50,15,305 +14161103,Gorgeous Sunset-facing Carroll Gardens 1 Bedroom,71211336,Patrick,Brooklyn,Gowanus,40.67963,-73.98951,Entire home/apt,299,2,0,,,1,0 +14161351,Trendy 2BR Apt Next to Prospect Park -Kid Friendly,1876539,Stephanie,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95773,Entire home/apt,150,6,9,2019-01-02,0.26,1,0 +14161597,Cool respite in the city,30739353,Laura,Manhattan,Upper East Side,40.7638,-73.95547,Entire home/apt,175,2,3,2017-09-02,0.08,1,310 +14163104,Cozy Studio in Astoria NYC,85667130,Anna,Queens,Ditmars Steinway,40.77943,-73.9117,Private room,90,2,80,2019-07-02,2.35,1,350 +14163220,"Large one bedroom in Forest Hills Gardens, Queens!",84279142,Katina,Queens,Forest Hills,40.71688,-73.84238,Entire home/apt,150,1,0,,,1,0 +14163324,Williamsburg Studio w/ Roof Deck and Gym,15061780,Nikki,Brooklyn,Williamsburg,40.71973,-73.94272,Entire home/apt,100,2,3,2016-11-14,0.09,1,0 +14163352,contemp. 1 BDRM in Trendy 2 BDRM Cyp. Hill,85669769,Dion,Brooklyn,East New York,40.67321,-73.86865,Private room,53,1,85,2019-05-25,2.39,1,54 +14164263,"Large, sunny and beautiful bedroom in Brooklyn",85684530,Ana,Brooklyn,Flatbush,40.64706,-73.9593,Private room,40,5,0,,,1,0 +14164319,Spacious and Sunny Greenpoint Townhouse,31277975,Alan,Brooklyn,Greenpoint,40.73101,-73.95248,Entire home/apt,250,3,80,2019-06-23,2.23,1,98 +14165982,Comfortable apartment in FH,19538448,Giuseppe,Queens,Forest Hills,40.72116,-73.83948,Entire home/apt,115,2,0,,,1,0 +14166695,Room in the heart of Williamsburg,12461120,Emine,Brooklyn,Williamsburg,40.71531,-73.94693,Private room,85,2,3,2016-09-06,0.09,1,0 +14167282,"Serene, light-filled pre-war apartment in Brooklyn",1211994,Shuchi,Brooklyn,Flatbush,40.64088,-73.96125,Private room,45,2,1,2016-07-31,0.03,1,0 +14167287,Peaceful Upper East Side Studio,3602785,James,Manhattan,Upper East Side,40.76666,-73.95507,Entire home/apt,65,7,1,2016-08-22,0.03,1,0 +14167380,Greenpoint/Williamsburg Comfortable New Apartment,44454496,Gino,Brooklyn,Greenpoint,40.73101,-73.9405,Entire home/apt,160,3,57,2019-06-11,1.63,1,314 +14167624,"1brm apartment ,Charming, with beautiful light",8671553,Sophia,Manhattan,East Harlem,40.79356,-73.94164,Entire home/apt,95,7,0,,,1,0 +14167763,Beautiful + Private 1 Bedroom in North Park Slope,85734571,Wayne,Brooklyn,Park Slope,40.68083,-73.97823,Entire home/apt,120,7,0,,,1,0 +14168034,Park Slope Artsy Gem,23688348,Renee,Brooklyn,South Slope,40.66548,-73.98025,Entire home/apt,151,2,0,,,1,0 +14168274,1 Bedroom in shared 2 bedroom NYC walkup apartment,20448276,A.R.,Manhattan,Hell's Kitchen,40.76367,-73.98912,Private room,98,5,0,,,1,0 +14168413,Large Bedroom - Great Location - Grand Central,18981759,Doug,Manhattan,Murray Hill,40.74702,-73.97563,Private room,100,1,11,2016-09-05,0.31,1,0 +14169102,COZY PRIVATE ROOM IN GRAMERCY,13616538,Tianna,Manhattan,Gramercy,40.737,-73.98231,Private room,74,2,8,2016-11-27,0.22,1,0 +14169266,Spacious bedroom in Inwood,2584371,Carina,Manhattan,Inwood,40.86531,-73.92725,Private room,50,1,39,2019-05-29,1.11,1,1 +14169399,New York City - World of Antiques,84985477,Krys,Queens,Ridgewood,40.70153,-73.89706,Entire home/apt,75,3,209,2019-06-16,5.87,1,14 +14171171,Super Comfortable Nest,58949132,Ike,Manhattan,East Harlem,40.81473,-73.93583,Entire home/apt,150,4,1,2018-07-18,0.08,1,0 +14174460,bargain in Flatbush,21700305,David,Brooklyn,Prospect-Lefferts Gardens,40.65776,-73.95218,Private room,30,6,1,2016-08-07,0.03,1,0 +14175040,"Great 1 bedroom Upper West: AC, TV & Dishwasher",30175811,Jane,Manhattan,Harlem,40.81745,-73.95164,Entire home/apt,200,1,10,2018-09-25,0.28,1,0 +14176286,Unique Cozy Designer Loft 1 stop to Manhattan,4043259,Tiffany,Brooklyn,Greenpoint,40.72521,-73.95575,Private room,67,2,103,2019-07-07,2.94,2,126 +14176519,Brand New Studio with Balcony @ Williamsburg!,702652,Ivana,Brooklyn,Williamsburg,40.70925,-73.95255,Entire home/apt,153,3,17,2019-06-28,0.48,1,31 +14176878,Sunny bedroom in Williamsburg,13933878,Christine,Brooklyn,Williamsburg,40.70937,-73.96128,Private room,75,3,0,,,1,0 +14177028,"Private Floor, Room and bathroom In Townhouse, BK",29219991,Doug,Brooklyn,Williamsburg,40.71555,-73.96325,Private room,98,10,62,2019-07-02,1.78,2,211 +14177069,AS CENTRAL AS YOU CAN GET ~SUTTON PLACE 3BR-LUXURY,2856748,Ruchi,Manhattan,Midtown,40.75546,-73.96454,Entire home/apt,375,30,0,,,49,245 +14178226,New Building Spacious 2 bed 2 bath E. Harlem!,55229297,Amanda,Manhattan,East Harlem,40.80326,-73.935,Entire home/apt,215,1,49,2019-06-19,1.42,1,316 +14179120,1 BDRM IN ASTORIA (PUBLIC TRANS) CLOSE TO US OPEN,42150813,Anthony,Queens,Astoria,40.7684,-73.91762,Private room,60,1,1,2016-10-09,0.03,1,0 +14180414,Private room in 2bedroom apartment @ East Village,85898729,Maxime,Manhattan,East Village,40.73178,-73.98613,Private room,100,3,12,2018-03-18,0.34,1,0 +14180715,"Cozy, Brooklyn Beauty. Great for a nice holiday!",84339401,Mara,Brooklyn,Bedford-Stuyvesant,40.6866,-73.94583,Entire home/apt,131,2,27,2019-06-24,0.76,2,96 +14181211,"Comfy 1-Bedroom, Just a block from the Subway!",1540903,Medina,Queens,Ditmars Steinway,40.77487,-73.91196,Entire home/apt,120,1,237,2019-06-26,6.62,1,71 +14181565,Perfect blend of urban and village atmosphere,85914840,Gina,Queens,Forest Hills,40.71298,-73.83601,Private room,75,1,16,2017-07-30,0.46,1,0 +14182564,lovely home on 38th street,84914817,Alon,Manhattan,Murray Hill,40.74737,-73.97407,Entire home/apt,79,29,4,2019-04-07,0.42,2,201 +14183466,COMFORTABLE BEDROOM GREAT LOCATION,85938655,Carlos,Manhattan,Hell's Kitchen,40.76439,-73.98943,Private room,120,3,53,2019-06-30,1.53,2,197 +14183900,Spacious Apartment in the Heart of LES,20132140,Helen,Manhattan,Lower East Side,40.72094,-73.98649,Entire home/apt,228,1,1,2016-08-08,0.03,1,0 +14184335,Private Room in Upper East Side - Queen bed,62172448,Jon,Manhattan,Upper East Side,40.76471,-73.95819,Private room,85,1,2,2016-08-20,0.06,2,0 +14185610,GORGEOUS STUDIO ON MIDTOWN,22860550,Oliver,Manhattan,Midtown,40.75601,-73.96625,Entire home/apt,115,8,24,2019-06-20,0.69,1,196 +14186028,2 Bed Private Entrance Williamsburg,85974062,Joshua,Brooklyn,Williamsburg,40.71339,-73.96369,Entire home/apt,130,1,78,2018-02-02,2.17,1,0 +14187014,Beautiful cozzy apartment in the Upper East Side,85986280,Marushka,Manhattan,Upper East Side,40.76848,-73.96014,Entire home/apt,109,1,25,2019-06-23,0.75,1,0 +14187084,Beautiful sunny room in Manhattan,85992351,Alessia,Manhattan,East Harlem,40.78752,-73.94314,Private room,65,4,0,,,1,0 +14187475,Very Sunny 1br in Bedstuy - Dog and Kids Friendly,280693,Auralís,Brooklyn,Bedford-Stuyvesant,40.68806,-73.95491,Entire home/apt,200,2,13,2017-12-27,0.37,1,0 +14191921,LUXURY 3 BR WITH DOORMAN~1600 BROADWAY,2856748,Ruchi,Manhattan,Theater District,40.75924,-73.98541,Entire home/apt,560,30,0,,,49,356 +14194024,One bedroom cutie in South Willamsburg,4908941,Alis,Brooklyn,Williamsburg,40.70698,-73.96193,Entire home/apt,180,4,43,2019-07-08,1.22,1,82 +14195437,Location Enya,3250450,Petya,Queens,Jackson Heights,40.74684,-73.89252,Shared room,35,30,1,2017-10-28,0.05,18,280 +14195493,"Spacious, Stylish, & Cozy in Bed-Stuy",2499618,Aurore And Jamila,Brooklyn,Bedford-Stuyvesant,40.68569,-73.92549,Entire home/apt,140,5,17,2019-04-27,0.49,1,330 +14195524,Lincoln Square - Upper West Side Haven,86090561,Alicia,Manhattan,Upper West Side,40.79919,-73.96249,Private room,110,1,84,2019-06-23,2.35,1,301 +14195677,Cute/Private 1 Bedroom Apt in Queens,61925777,Charis,Queens,Maspeth,40.71628,-73.90093,Entire home/apt,75,2,5,2018-06-03,0.14,1,0 +14195878,Artsy master suite with attached private bathroom,17218599,Shanthony,Brooklyn,Bedford-Stuyvesant,40.69249,-73.94298,Private room,50,15,2,2017-01-01,0.06,1,0 +14196798,Brooklyn (G)reenery,80942071,Warren,Brooklyn,Bedford-Stuyvesant,40.69484,-73.94616,Private room,89,2,1,2017-09-05,0.04,1,365 +14196990,Charming Midtown West 3 BR Exposed Brick,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.75999,-73.99274,Entire home/apt,175,30,5,2019-05-27,0.16,91,363 +14198486,"Large, quiet room with backyard garden",1816548,Ben,Brooklyn,Bedford-Stuyvesant,40.68774,-73.94867,Private room,65,3,0,,,1,0 +14199146,Cozy & Spacious Studio in Brooklyn,13332949,Kathy,Brooklyn,Kensington,40.63442,-73.97318,Entire home/apt,55,7,0,,,1,0 +14200676,"Ideal Bushwick, 2 bdrm, basement, private garden",309088,Alexandre,Brooklyn,Bushwick,40.69633,-73.92143,Entire home/apt,150,3,18,2018-05-28,0.53,1,0 +14200678,Charming 1 bdr apt. just 17 mins from MANHATTAN!,557669,Ryan,Queens,Woodside,40.74663,-73.89653,Entire home/apt,96,2,1,2016-08-08,0.03,1,0 +14201811,Adorable Abode in Harlem,23033819,Brandy-Courtney,Manhattan,Harlem,40.82085,-73.95398,Private room,75,2,0,,,1,0 +14202979,"Charming, Spacious 2-Bedroom on UWS",86182721,Jennifer,Manhattan,Upper West Side,40.78004,-73.98314,Entire home/apt,210,2,11,2018-10-07,0.32,1,242 +14203322,NYC apartment in the East Village,35605738,Rhonycs,Manhattan,East Village,40.72796,-73.98178,Entire home/apt,221,2,78,2019-06-16,2.24,1,270 +14203693,"Spacious Apartment, historic Brooklyn brownstone.",1756362,Jeremy & Angela,Brooklyn,Clinton Hill,40.69488,-73.96618,Entire home/apt,150,4,69,2019-06-12,1.93,1,114 +14204631,Charming pre-war in West Village,2063794,Laura,Manhattan,West Village,40.73778,-74.00287,Entire home/apt,350,2,16,2018-11-20,0.47,1,16 +14205217,"Private Rm/King Size Bed, just you +host in apt",68598597,Jazmin,Manhattan,Harlem,40.82418,-73.94893,Private room,65,1,45,2019-07-01,1.30,2,34 +14205364,Bright 3BR w/ large patio in vibrant Williamsburg,2343858,Claire,Brooklyn,Williamsburg,40.71635,-73.94982,Entire home/apt,325,2,87,2019-06-16,2.45,1,126 +14205634,Huge 2 Bed Loft Apt in Chic Downtown,1534634,Derek,Manhattan,NoHo,40.7259,-73.99336,Entire home/apt,407,30,12,2018-11-02,0.34,1,120 +14207287,"Cute room near Columbia University, Manhatta",86241021,Kate,Manhattan,Upper West Side,40.80189,-73.9655,Private room,60,20,4,2017-01-15,0.11,1,0 +14210928,Large Furnished Rm. Near the Park,10580223,Andy,Brooklyn,Flatbush,40.65345,-73.9566,Private room,91,1,1,2016-10-04,0.03,2,250 +14212273,Beautiful Brooklyn loft!,20612628,Jessica,Brooklyn,Williamsburg,40.7049,-73.92966,Private room,41,1,2,2017-04-18,0.06,1,0 +14213699,"West 50th street, Lux 1bd Serviced Apartment*",22541573,Ken,Manhattan,Hell's Kitchen,40.76297,-73.98588,Entire home/apt,215,30,1,2017-12-02,0.05,87,357 +14213784,"Large, Sunny Room in Spacious, Modern Apartment",1199690,Pete,Brooklyn,Williamsburg,40.70847,-73.94568,Private room,57,2,1,2016-10-09,0.03,1,0 +14214315,Prospect Heights Getaway,10055751,Julie,Brooklyn,Crown Heights,40.67417,-73.96111,Private room,65,30,11,2016-11-30,0.31,2,0 +14214403,Spacious & Clean Apartment + Patio. Close to metro,128480,Sam And Britt,Brooklyn,Bushwick,40.69295,-73.90792,Entire home/apt,149,2,102,2019-06-29,4.27,1,256 +14215061,Cozy Room in Astoria,75480489,Ramazan,Queens,Ditmars Steinway,40.7708,-73.90036,Private room,70,3,23,2019-01-02,0.66,1,365 +14215652,"LUXURY , FULL OF LIGHT, RENOVATED BIG 1BEDROOM",57283593,Olga,Manhattan,West Village,40.73624,-74.00311,Entire home/apt,290,3,59,2019-07-01,1.67,1,256 +14215681,AMAZING Room in a 2 Bd Apt on the UES!,37318666,Dijana,Manhattan,East Harlem,40.79014,-73.94035,Private room,70,1,60,2019-06-11,1.74,1,66 +14217692,Perfect Area in Williamsburg - Room,6702100,Dasha,Brooklyn,Williamsburg,40.71014,-73.95871,Private room,90,1,10,2017-07-30,0.28,1,0 +14218173,Bright UWS Studio with great location,3664605,Cha,Manhattan,Upper West Side,40.78558,-73.97704,Entire home/apt,150,4,2,2017-06-11,0.06,1,0 +14218548,Large Prime East Village Bedroom,86368554,Ryan,Manhattan,East Village,40.72646,-73.98498,Private room,100,2,1,2016-08-08,0.03,1,0 +14218722,Convenient Brooklyn One Bedroom Apartment,80788474,Ambre,Brooklyn,Bedford-Stuyvesant,40.68232,-73.95308,Entire home/apt,165,3,0,,,2,0 +14218742,Luxury/3bedroom/3bthrm/Privateprkng/beach/rstrnts,78824908,Ilona,Brooklyn,Sheepshead Bay,40.58531,-73.93811,Entire home/apt,224,30,2,2018-06-22,0.08,1,353 +14218795,Spacious 1BR with amazing rooftop,1815738,Emily,Manhattan,Financial District,40.70741,-74.0054,Entire home/apt,238,1,0,,,1,0 +14219018,Huge Lux Designer 1 BR. Renovated,10388850,David,Manhattan,Midtown,40.75637,-73.96338,Entire home/apt,379,20,0,,,1,364 +14219515,Private Room in Apartment with Balcony,59932595,Nnenna,Manhattan,East Harlem,40.80253,-73.94016,Private room,45,21,0,,,1,0 +14220422,Rockaway Beach Surf and Garden Apartment,51162561,Paul,Queens,Rockaway Beach,40.58626,-73.81465,Entire home/apt,125,4,1,2016-09-04,0.03,1,0 +14220943,Comfortable oasis in the heart of Brooklyn,86397793,Thorill,Brooklyn,East Flatbush,40.64474,-73.92297,Entire home/apt,49,2,77,2019-06-23,2.17,1,264 +14221071,Two bedroom near Grand Central with a view!!,7408622,Jerome,Manhattan,Midtown,40.75083,-73.97151,Entire home/apt,700,5,23,2019-05-08,0.68,1,179 +14221607,Beautiful Three Bedroom,52999390,Avery,Brooklyn,East Flatbush,40.66525,-73.92554,Entire home/apt,650,1,3,2016-09-30,0.08,1,0 +14222252,Cozy located studio in Manhattan,86415678,Alexandra,Manhattan,Washington Heights,40.85867,-73.92844,Entire home/apt,150,2,42,2019-06-18,1.61,1,83 +14228589,Cute bedroom with private entrance from hallway,22926868,Xenia,Brooklyn,Sunset Park,40.64697,-73.99885,Private room,50,20,46,2019-04-30,1.34,3,20 +14230982,Great private room with all amnetities!,86510175,Oonamaria,Brooklyn,Cypress Hills,40.68139,-73.89034,Private room,55,2,7,2016-08-29,0.20,1,0 +14231418,Spacious 1 bedroom off Prospect Pk,746006,Paul,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95841,Entire home/apt,90,2,3,2018-06-04,0.10,1,0 +14231606,La Dolce Vita Apartment in Garfield,86513733,Joann,Bronx,Van Nest,40.84166,-73.86818,Entire home/apt,425,5,0,,,1,363 +14231719,XTRA LARGE~PRIME UPPER EAST SIDE-1ST AVE&EAST 86TH,2856748,Ruchi,Manhattan,Upper East Side,40.7771,-73.9495,Entire home/apt,200,30,0,,,49,365 +14233670,Luxury 1 Bedroom Condo in Central Park South,86538929,Stella,Manhattan,Midtown,40.76566,-73.97748,Entire home/apt,349,2,6,2017-01-01,0.17,1,0 +14234046,Premier Suites Downtown,18762580,Joseph,Manhattan,Financial District,40.70885,-74.01074,Entire home/apt,200,30,0,,,1,87 +14234561,Newly renovated studio in hip Bushwick near subway,3605061,Carlota And Jessica,Brooklyn,Bushwick,40.69559,-73.90796,Entire home/apt,100,2,152,2019-07-01,4.29,1,251 +14235245,Nicest studio near Central Park and the 6 train,86560459,Cesar,Manhattan,East Harlem,40.79068,-73.94944,Entire home/apt,115,2,8,2017-01-01,0.23,1,0 +14236416,"the shoebox, west chelsea",20132009,Karen,Manhattan,Chelsea,40.74577,-74.00606,Entire home/apt,150,3,119,2019-06-29,3.45,2,58 +14236734,1 room West Village,86576234,Anne,Manhattan,Greenwich Village,40.72854,-74.00275,Private room,100,1,0,,,1,0 +14237346,Cozy room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67824,-73.96966,Private room,55,1,102,2019-06-27,2.98,13,281 +14237397,Conveniently located room near train.,25843005,Daljit,Queens,Long Island City,40.7591,-73.9278,Private room,49,2,105,2019-06-22,2.94,3,21 +14237735,"Private BR in comfy, international-vibe Harlem apt",12087651,Rachel,Manhattan,Harlem,40.82265,-73.94501,Private room,95,2,44,2019-06-24,1.27,1,90 +14238574,"Private, Sunny Room in Queens, NY",54986261,David,Queens,Flushing,40.75539,-73.83172,Private room,75,2,57,2019-05-14,1.64,1,335 +14238785,Ladies Dorm Shared Room (Single Twin Bed),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.6853,-73.95758,Shared room,45,2,10,2017-10-27,0.29,3,311 +14239259,West Village Apt in the Heart of the Action,5064742,Alex,Manhattan,West Village,40.73342,-74.00362,Entire home/apt,200,2,0,,,1,0 +14239534,Beautiful and sunny apartment in East Village!,55976102,John,Manhattan,East Village,40.72835,-73.98503,Entire home/apt,199,5,22,2019-05-29,0.62,1,68 +14240343,Artists townhouse next to Central Park! WOW!,38315339,Viktoria,Manhattan,Upper East Side,40.76282,-73.96734,Entire home/apt,195,1,109,2019-07-02,3.21,1,190 +14244430,Amazing Duplex with Best Amenities in NYC,28514966,Lan,Manhattan,Financial District,40.70615,-74.00914,Entire home/apt,349,3,38,2019-06-26,1.08,1,72 +14245157,Very Large Loft with a view of Statue of Liberty,86681077,Gaspard,Manhattan,Financial District,40.70423,-74.01235,Entire home/apt,270,2,113,2019-06-02,3.21,1,11 +14245274,Large+Amazing 2BR ( Flex) 800 SQFT-Upper East Side,2856748,Ruchi,Manhattan,Upper East Side,40.77744,-73.94501,Entire home/apt,230,30,0,,,49,284 +14245639,Wall St!Design One bedroom in Doorman Bldg 5187,16098958,Jeremy & Laura,Manhattan,Financial District,40.70379,-74.00946,Entire home/apt,165,30,0,,,96,365 +14245886,"Spacious one bedroom, next to the L and G trains",2021231,Sami,Brooklyn,Williamsburg,40.71417,-73.94765,Entire home/apt,159,2,1,2016-08-15,0.03,1,0 +14246251,Doorman Gym 2 bed With balcony River View 5138,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74463,-73.9722,Entire home/apt,196,30,1,2016-10-31,0.03,96,280 +14247423,"Cozy, cool, spacious Midtown!",19793290,Daniel,Manhattan,Murray Hill,40.74796,-73.97949,Shared room,103,1,3,2016-08-25,0.08,1,0 +14252537,Spacious Room in the Heart of Williamsburg,69093720,Mina,Brooklyn,Williamsburg,40.7133,-73.94838,Private room,92,4,18,2019-06-03,0.52,1,341 +14253050,Comfort and charm: 1BDR on Upper East Side,20852937,Ceri,Manhattan,Upper East Side,40.77371,-73.95167,Entire home/apt,150,3,37,2019-05-27,1.04,1,0 +14254221,"*Serenity & Heart* spacious, bright, sleeps 4 SOHO",86786513,J. Cobb,Manhattan,Nolita,40.72148,-73.99543,Entire home/apt,294,5,150,2019-06-29,4.19,1,105 +14254624,Full Cosy apart in the middle of Manhattan!,60366482,Aksa,Manhattan,Midtown,40.75095,-73.97115,Entire home/apt,110,4,36,2019-06-01,1.05,1,40 +14255485,Entire One Bedroom Apartment In Historic District,5682956,Maria,Bronx,Highbridge,40.84277,-73.92588,Entire home/apt,76,7,40,2019-05-27,1.15,1,34 +14261749,Apt 2or3 bedr for 4 or more guests in Williamsburg,86077156,Franco,Brooklyn,Williamsburg,40.71036,-73.95477,Entire home/apt,180,2,115,2019-06-22,3.34,2,82 +14262383,The Center Suites,86887132,Nepreil,Queens,St. Albans,40.69364,-73.78025,Entire home/apt,100,2,46,2019-06-30,1.34,2,361 +14262420,Quiet 1 BR in the Heart Crown Heights,49635984,Huw,Brooklyn,Crown Heights,40.67652,-73.94859,Entire home/apt,80,7,0,,,1,0 +14264490,Sunny Windsor Terrace 3 BR + deck,2487882,Craig,Brooklyn,Windsor Terrace,40.65092,-73.98054,Entire home/apt,120,5,1,2018-08-15,0.09,2,0 +14265052,HUGE master bedroom in TIME SQUARE,33518883,Melina,Manhattan,Hell's Kitchen,40.76086,-73.99147,Private room,90,1,15,2017-08-31,0.42,2,0 +14266097,The Brooklyn Vibe,12582591,Richard,Brooklyn,Prospect-Lefferts Gardens,40.65825,-73.96073,Entire home/apt,130,1,83,2019-06-17,2.34,1,0 +14267222,YOUR PRIVATE SPACE: Prospect Lefferts Gardens NYC!,86950026,Candy,Brooklyn,Prospect-Lefferts Gardens,40.66081,-73.94963,Entire home/apt,84,2,84,2019-07-05,2.39,1,211 +14272980,Clean 1 Bed/with En Suite Shower,84684940,Clyde,Brooklyn,Flatbush,40.64831,-73.96181,Private room,50,3,98,2019-06-20,2.77,2,140 +14274403,New York City Getaway; very close to LGA,87041889,Laverne & David,Queens,East Elmhurst,40.76777,-73.87733,Entire home/apt,76,2,75,2019-06-24,4.39,1,35 +14274809,Amazing Location 2 BR 2 Full Bath East Village,7118541,Jared,Manhattan,East Village,40.72714,-73.98668,Entire home/apt,316,3,74,2019-06-08,2.19,1,348 +14275887,"Private Lux Condo, w/ A Great 7th Story View",87065585,Kimberly,Queens,Jamaica,40.70796,-73.80117,Entire home/apt,115,2,32,2018-09-22,0.91,1,265 +14276224,Williamsburg Hideaway,35658806,Patty,Brooklyn,Williamsburg,40.71505,-73.95716,Entire home/apt,325,1,2,2018-01-05,0.06,1,0 +14276565,Cozy Clean Small Apartment 2 Bedrooms Nyc,87073749,Benedetta,Brooklyn,Williamsburg,40.71051,-73.95587,Entire home/apt,160,2,130,2019-06-23,3.72,2,69 +14276659,Greyhound Manor - twin bed with a share bath,87073939,Carol,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92284,Private room,47,2,39,2019-06-27,1.12,2,51 +14277478,Amazing View of NYC,576575,Rami,Manhattan,Hell's Kitchen,40.76044,-73.99051,Entire home/apt,200,3,9,2018-10-06,0.26,1,0 +14278303,Gorgeous Apartment with Balcony & Terrace,792365,Eytan,Brooklyn,Williamsburg,40.71677,-73.94124,Entire home/apt,200,4,9,2019-06-29,0.26,1,9 +14278418,Large Sunny Williamsburg Apt Near L train #2`,45204053,Curtis,Brooklyn,Williamsburg,40.71498,-73.94207,Private room,75,7,12,2019-04-29,0.35,2,359 +14280057,Cozy Room Right Next to Prospect Park!,27186608,Clara,Brooklyn,Flatbush,40.64562,-73.96446,Private room,39,3,13,2019-07-05,0.38,1,186 +14280163,Large modern chic 1-BR apt near World Trade Center,60557711,Sameer,Manhattan,Financial District,40.70851,-74.00563,Entire home/apt,300,6,3,2018-12-30,0.10,1,358 +14280778,Penthouse in the sky,46164403,Elizabeth,Manhattan,Upper West Side,40.79321,-73.97685,Entire home/apt,489,7,8,2018-07-29,0.22,1,328 +14281111,Private floor/Flat,84810879,Linda,Queens,Rosedale,40.65045,-73.74596,Entire home/apt,150,2,3,2018-07-27,0.08,3,364 +14281526,Queens Village Vacation Getaway,86209218,Sophia,Queens,Queens Village,40.71168,-73.74037,Entire home/apt,65,1,152,2019-07-05,4.67,1,335 +14281865,Serenity & Charm in Brooklyn's Best Area (Legal),43438475,Viviana,Brooklyn,South Slope,40.66847,-73.98893,Entire home/apt,120,4,139,2019-06-20,3.98,3,136 +14282356,Amazing Apt in Hells Kitchen!!,87152012,Steven,Manhattan,Hell's Kitchen,40.76249,-73.99103,Private room,80,1,117,2018-02-23,3.34,1,0 +14282491,Bedroom in East Williamsburg/ Bushwick Brooklyn,483600,Anne,Brooklyn,Williamsburg,40.70383,-73.94295,Private room,53,2,40,2019-05-11,1.15,1,1 +14283423,LUXURY BLDG - PRIVATE TERRACE/DOORMAN,40405299,Andra,Manhattan,Upper West Side,40.77174,-73.98934,Entire home/apt,200,3,16,2019-05-07,0.48,1,0 +14283546,Adorable Crown Heights Home Away From Home,84141923,Marisha,Brooklyn,Crown Heights,40.66902,-73.93771,Private room,50,3,100,2019-02-19,2.81,2,0 +14284714,Mid-town Manhattan (East Side near UN),38179715,Megan,Manhattan,Midtown,40.75259,-73.96797,Entire home/apt,150,2,13,2019-05-11,0.36,1,69 +14290760,Awesome room in heart of midtown!,87242862,Randi,Manhattan,Hell's Kitchen,40.76338,-73.98911,Private room,120,2,154,2019-06-17,4.47,1,266 +14292249,Charming Manhattan Pied a Terre,39241960,Jackie,Manhattan,Kips Bay,40.74164,-73.98275,Private room,175,2,41,2019-06-02,1.18,1,242 +14294585,"Top 7th floor sunny 1 bedroom - Sugar Hill, Harlem",24103270,Andres,Manhattan,Harlem,40.82485,-73.94366,Entire home/apt,49,30,11,2019-03-02,0.32,1,36 +14295885,WONDERFUL BED ROOM 10 MINS FROM JFK,74331597,Nickesha,Queens,St. Albans,40.686,-73.7691,Private room,59,2,4,2019-06-28,0.29,5,180 +14296299,Lovely private suite in charming historic house,4269804,Mollie,Queens,Ridgewood,40.70717,-73.89395,Private room,79,3,13,2018-05-18,0.39,1,64 +14296562,"Entire Home in Gramercy, Duplex Loft",6543299,Sun-Young,Manhattan,Kips Bay,40.73958,-73.98258,Entire home/apt,195,2,12,2018-07-08,0.41,1,0 +14296598,Art-filled bright spacious loft prime Wburg Brklyn,14942276,Susan,Brooklyn,Williamsburg,40.71932,-73.95649,Entire home/apt,249,3,99,2019-06-13,2.87,2,239 +14297036,Middle Size Room Super Convenient Area: ♥of Bklyn,32865595,Sho-Boo Of Sho-Boo Suite,Brooklyn,Prospect-Lefferts Gardens,40.66291,-73.96257,Private room,53,1,42,2019-05-26,1.19,3,337 +14297224,Luxury Apt on Wall St - Amazing Views,87312106,Marc,Manhattan,Financial District,40.707,-74.00782,Private room,189,1,22,2017-07-15,0.67,1,0 +14300750,"Private room great for single travelers, near JFK",6762657,Yvette,Brooklyn,East New York,40.67324,-73.88292,Private room,60,2,38,2019-07-05,1.07,2,357 +14301857,Large Modern Studio with Free Parking in Driveway,47901176,Will & Clara,Queens,Ridgewood,40.70882,-73.9179,Entire home/apt,135,2,73,2019-07-06,2.11,1,345 +14301951,A beautiful cozy room with balcony,87370616,Francisca,Bronx,Longwood,40.81998,-73.90325,Private room,75,2,110,2019-06-17,3.18,2,350 +14302945,"Cozy, Beautiful Bedroom in Shared Apartment",4803103,Sharina,Brooklyn,Prospect Heights,40.68224,-73.97302,Private room,60,5,0,,,1,18 +14303789,BEAUTIFUL AND SPACIOUS APARTMENT 1st FLOOR,5613109,Lilly,Queens,Astoria,40.7581,-73.91975,Entire home/apt,120,2,13,2018-06-25,0.37,1,115 +14309960,Charming Bedroom in East Village,8108526,Emily Rose,Manhattan,East Village,40.73226,-73.98688,Private room,100,5,4,2018-02-25,0.17,1,0 +14311699,Sunny Williamsburg Loft,14559352,Jamis,Brooklyn,Williamsburg,40.71123,-73.96148,Private room,95,3,61,2019-05-31,1.73,2,56 +14312186,Classic NYC: ENTIRE 1-BR in Spacious Chelsea Apt,87487508,Adam,Manhattan,Chelsea,40.74029,-74.00233,Entire home/apt,185,1,2,2016-08-22,0.06,1,0 +14312497,Upper East Side Studio Apartment,38681372,Nicole,Manhattan,Upper East Side,40.76644,-73.95635,Entire home/apt,99,5,15,2017-05-01,0.45,1,0 +14314240,"Entire 2 bedroom apt ,Prime Williamsburg",11052217,Fabio,Brooklyn,Williamsburg,40.71358,-73.95429,Entire home/apt,180,4,94,2019-06-26,2.72,1,326 +14314562,Affordable 3 BR In City Center,78331155,Nick,Manhattan,Midtown,40.74426,-73.9825,Entire home/apt,350,5,24,2018-11-07,0.70,1,137 +14315012,"Cozy private room in downtown Manhattan, NYC",60995455,Melody,Manhattan,Greenwich Village,40.7305,-73.99647,Private room,69,1,4,2018-06-13,0.12,1,0 +14315241,COZY SPOT,87521021,Melissa & Rondie,Brooklyn,East Flatbush,40.65825,-73.92191,Private room,50,2,41,2018-03-18,1.15,1,250 +14316033,ONLY 4.5 MILES TO MANHATTAN,54438083,Charles,Queens,Maspeth,40.72211,-73.90905,Entire home/apt,144,2,113,2019-06-11,3.18,3,293 +14316198,Beautiful 1 bedroom in Brooklyn!!!!,72607058,Madi,Brooklyn,Prospect-Lefferts Gardens,40.65656,-73.95572,Entire home/apt,85,4,9,2017-08-27,0.25,1,0 +14316228,IMMACULATE 1-BDRM UPPER MANHATTAN,87537411,Dionne,Manhattan,Washington Heights,40.83406,-73.94731,Entire home/apt,100,5,13,2019-06-15,1.04,1,1 +14316284,Lovely One Bedroom West Village,1483451,Pipi,Manhattan,West Village,40.72921,-74.00345,Entire home/apt,240,5,52,2019-06-23,1.54,1,271 +14317785,Prospect Heights for the Holidays! 2 bedroom apt,10055751,Julie,Brooklyn,Crown Heights,40.67407,-73.96303,Entire home/apt,125,1,3,2017-01-02,0.09,2,0 +14317995,Central Park & Met Museum 1 Bedroom Gem!,8049219,Richard,Manhattan,Upper East Side,40.77666,-73.95625,Entire home/apt,165,2,22,2018-01-02,0.65,1,0 +14318774,New York Masterpiece,37718300,Martha,Queens,Rego Park,40.73541,-73.85632,Entire home/apt,145,3,88,2019-06-17,2.56,1,321 +14320998,1 Bedroom,84810879,Linda,Queens,Rosedale,40.66155,-73.73064,Private room,88,1,0,,,3,364 +14322170,Sweet & Artsy Williamsburg Room,21697957,Saba,Brooklyn,Williamsburg,40.70652,-73.94054,Private room,65,1,1,2016-08-08,0.03,1,0 +14322182,Greenpoint amazing private room,15235299,Hai-Hsin,Brooklyn,Greenpoint,40.73293,-73.95919,Private room,60,3,52,2019-05-05,1.49,2,0 +14322869,Charming Private Astoria Apt. 15 Min To Manhattan!,2370635,Aimee,Queens,Astoria,40.75868,-73.92615,Entire home/apt,122,2,128,2019-06-15,3.65,1,255 +14323475,"Spacious, sunlit, homey bedroom in Wash. Heights",22888115,Amy,Manhattan,Washington Heights,40.83613,-73.94472,Private room,65,7,0,,,1,0 +14323803,Cozy Bright Brooklyn by train,14898658,Chadanut,Brooklyn,Kensington,40.64386,-73.98195,Private room,42,1,95,2019-06-23,2.69,11,148 +14324811,Excellent Location! Sunny & Cozy!,4131257,Abeni,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95203,Private room,55,6,7,2019-01-07,0.54,1,179 +14330688,Beautiful Crown Heights Pre-War 1 Bedroom,5158569,Genevieve,Brooklyn,Crown Heights,40.6686,-73.93517,Entire home/apt,115,2,7,2019-01-01,0.21,1,0 +14330713,Opera House Lofts - Bushwick Studio,10022166,David,Brooklyn,Bushwick,40.69938,-73.93547,Entire home/apt,95,1,9,2018-02-25,0.25,1,0 +14330789,"Steps to the Metro, Minutes to Manhattan",22194698,Joe & Jay,Brooklyn,Bedford-Stuyvesant,40.69121,-73.92529,Entire home/apt,113,2,167,2019-07-03,4.71,2,167 +14331775,"Beautiful, Spacious Studio In VERY Convenient Area",11830475,Kristy,Manhattan,Upper East Side,40.76347,-73.96514,Entire home/apt,185,4,10,2019-05-15,0.28,1,329 +14332083,Large furnished room with 2 beds,87723508,Edyta,Queens,Glendale,40.69848,-73.89569,Private room,34,30,14,2019-07-02,0.41,2,365 +14332210,Duplex in Manhattan 15min to Times Square,3767367,Regina,Manhattan,Upper East Side,40.78255,-73.95123,Private room,80,3,90,2019-06-27,2.53,3,323 +14332446,Fold out couch in prime Brooklyn,31378,Kristine,Brooklyn,Crown Heights,40.67385,-73.96126,Shared room,50,1,55,2019-06-30,1.54,3,60 +14334031,Nice Private room on Broadway,7721149,Ricardo,Manhattan,Washington Heights,40.83735,-73.94351,Private room,55,3,89,2019-06-23,2.53,1,66 +14334508,Primary Midtown Location Highrise Apartment,57272703,Jenya,Manhattan,Murray Hill,40.74706,-73.97355,Entire home/apt,110,5,2,2018-01-05,0.06,1,0 +14335179,❤ of Greenwich Village ~ Walk/Transit Score 100,1528977,Stephanie,Manhattan,Greenwich Village,40.72915,-74.00106,Private room,115,5,65,2019-06-10,1.84,1,157 +14336338,Dwell Inspired Design~ Great Manhattan Location!,13547493,Chuck,Manhattan,Upper East Side,40.78025,-73.95183,Entire home/apt,239,3,17,2019-05-30,0.49,2,212 +14337001,Charming Room in Astoria Close to N and W Trains,45225936,Bekah,Queens,Astoria,40.75593,-73.92584,Private room,63,2,8,2017-08-21,0.31,1,0 +14339989,Lg Modern 1 Bedroom / Rooftop Bldg,9226441,Michael,Manhattan,Kips Bay,40.74042,-73.98139,Entire home/apt,295,2,42,2019-05-19,1.29,1,81 +14340033,1400 sq ft modern full floor loft,6804141,Alexander,Manhattan,Flatiron District,40.74076,-73.99307,Entire home/apt,425,7,0,,,1,363 +14340142,Private Room & Private Bathroom in NYC Brownstone,43817869,Veronica,Brooklyn,Bedford-Stuyvesant,40.69087,-73.92952,Private room,125,4,55,2018-12-12,1.59,1,0 +14340165,Luxury Modern Studio in The Bronx,9605945,Chondra,Bronx,Throgs Neck,40.81587,-73.81532,Entire home/apt,175,2,28,2019-05-28,0.92,1,36 +14340328,Great Room in Charming Nolita Apt,8338942,Victor,Manhattan,Nolita,40.72245,-73.99416,Shared room,90,1,10,2019-05-21,0.28,4,14 +14341006,"Bedroom in hip, artsy, unique loft apartment",1767228,Josh,Brooklyn,Williamsburg,40.70962,-73.9501,Private room,75,3,3,2018-01-03,0.09,1,0 +14341397,One bedroom apartment,87835557,Kostas,Queens,Astoria,40.76623,-73.90911,Entire home/apt,99,2,154,2019-06-30,4.38,1,283 +14342997,Calm&Cozy Bedroom - NoLIta/SoHo (private bathroom),1120651,Orianna,Manhattan,Nolita,40.72413,-73.99355,Private room,118,3,10,2017-09-09,0.29,1,0 +14347194,"Cozy Bedroom (East Harlem, Manhattan)",23816403,Talia,Manhattan,East Harlem,40.78807,-73.944,Private room,75,2,50,2018-03-24,1.46,1,0 +14347502,Sunny Studio in the Hearth of the Lower East Side,4023646,Luca,Manhattan,Lower East Side,40.72144,-73.98915,Entire home/apt,105,3,24,2019-02-25,0.68,1,0 +14348580,Just Right in Lovely Greenpoint,60852834,Manny & Gemma,Brooklyn,Greenpoint,40.7294,-73.94977,Private room,56,7,69,2018-05-06,1.96,2,163 +14349588,DUMBO Brooklyn Authentic Loft,32207621,Cynthia,Brooklyn,DUMBO,40.70267,-73.98828,Private room,125,12,24,2018-10-28,0.69,1,0 +14350781,West Village/SoHo - Small but Mighty Room!,7977178,Abby,Manhattan,SoHo,40.7277,-74.00375,Private room,80,2,8,2019-06-01,0.23,3,275 +14351180,Sunny Artist Loft with Pool and Spa,10282255,Liza,Bronx,Port Morris,40.80779,-73.93095,Entire home/apt,110,3,7,2019-06-09,0.20,1,42 +14351693,"Private room Bushwick, BK!",21544501,Natalie,Brooklyn,Bushwick,40.68876,-73.90578,Private room,75,1,24,2018-10-29,0.69,2,250 +14351733,Private Room beside the 7 Train!,46015557,Megan,Queens,Sunnyside,40.74611,-73.91295,Private room,60,2,15,2018-08-27,0.42,1,27 +14351787,1 room in Chic Apt in Astoria NYC,49620552,Raul,Queens,Astoria,40.76933,-73.91165,Private room,55,1,20,2019-06-27,0.63,4,252 +14353077,Beautiful room in newly renovated aptartment,39726129,Jacob,Manhattan,Stuyvesant Town,40.7294,-73.97751,Private room,60,2,2,2016-08-25,0.06,1,0 +14353103,Large room in new Williamsburg apartment,87967262,Oran,Brooklyn,Williamsburg,40.70805,-73.95442,Private room,200,4,9,2018-12-08,0.25,1,89 +14354698,Huge 1 Bedroom Central Harlem Express Subway Stop,4597403,Naseef,Manhattan,Harlem,40.81315,-73.95389,Private room,49,1,13,2019-07-07,0.37,1,0 +14354732,"Mary's Respite -Convenient, garden apt in Flushing",86786744,Gloria,Queens,Flushing,40.75842,-73.81996,Entire home/apt,200,2,93,2019-07-07,2.68,1,346 +14355431,Nice comfy room,58453451,Michael,Brooklyn,East New York,40.67333,-73.8872,Private room,40,2,84,2019-07-04,2.45,2,273 +14355768,"Park Avenue, Lux Studio Murray Hill apartment",22541573,Ken,Manhattan,Murray Hill,40.74829,-73.98041,Entire home/apt,179,30,0,,,87,365 +14357461,Cozy & Private 1 bedroom in Bedstuy,22177259,Cass,Brooklyn,Bedford-Stuyvesant,40.69329,-73.94055,Entire home/apt,75,2,12,2018-12-02,0.35,1,41 +14357487,Brooklyn Brownstone Oasis,48489969,Madelyn,Brooklyn,Bedford-Stuyvesant,40.68796,-73.91991,Private room,45,2,24,2019-06-09,0.68,1,5 +14357698,Penthouse Duplex 2 Bed/2 Bath on Upper West Side,3491890,George Steven,Manhattan,Upper West Side,40.78411,-73.97721,Entire home/apt,245,30,12,2019-06-30,0.37,6,245 +14357767,Cozy Brownstone Garden Apartment (King&Twin Bed ),40542519,Josefina,Brooklyn,Prospect Heights,40.67679,-73.96661,Entire home/apt,120,3,36,2019-01-14,1.06,1,89 +14358402,Clean and Spacious Brooklyn Loft (Rear),21467726,Tyler,Brooklyn,Williamsburg,40.70468,-73.93681,Private room,51,6,5,2018-10-02,0.22,2,358 +14359772,(1)Comfy Home Away From Home/Multiple rooms!!,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68787,-73.95332,Private room,83,1,110,2019-07-06,3.46,4,307 +14361378,"Sun Drenched, Huge Room-Park Slope",19877163,Heather,Brooklyn,Boerum Hill,40.68316,-73.97952,Private room,55,2,1,2016-08-11,0.03,1,0 +14362124,Simple PRIVATE ROOM in UNION SQUARE,88073013,Rui,Manhattan,Gramercy,40.73421,-73.98834,Private room,85,2,47,2019-06-04,1.32,1,18 +14365130,Park Avenue Studio Suite (3),50760546,CRNY Monthly Rentals,Manhattan,Kips Bay,40.74439,-73.98112,Entire home/apt,109,30,5,2018-10-01,0.15,31,134 +14366054,"Beautiful, large bedroom",5120169,Jason,Brooklyn,Bedford-Stuyvesant,40.68172,-73.95118,Private room,85,2,8,2017-11-12,0.23,2,0 +14366544,Doorman Penthouse One Bedroom Laundry 5196,16098958,Jeremy & Laura,Manhattan,Gramercy,40.73486,-73.98611,Entire home/apt,179,30,2,2018-07-31,0.06,96,345 +14366918,Private BR in Beautiful Renovated East Village Apt,21882649,Joshua,Manhattan,East Village,40.73036,-73.98633,Private room,95,30,7,2016-12-29,0.20,1,238 +14367248,Cozy Brooklyn Studio Apt in Clinton Hill,25599142,Anthony,Brooklyn,Clinton Hill,40.68634,-73.9661,Entire home/apt,95,2,47,2019-06-23,1.34,1,0 +14367644,"Williamsburg Loft, Brooklyn, New York",70739054,Ariel,Brooklyn,Williamsburg,40.71144,-73.96795,Entire home/apt,170,3,87,2019-06-25,2.48,1,32 +14367695,Beach Bungalow with loft,81065498,Jules,Queens,Rockaway Beach,40.58656,-73.81565,Entire home/apt,110,1,75,2019-06-23,2.14,1,56 +14369923,"Bright, Welcoming 2 Bedroom Apt in Clinton Hill",24897395,Laura,Brooklyn,Bedford-Stuyvesant,40.68844,-73.95442,Entire home/apt,111,2,2,2017-07-05,0.08,1,0 +14370793,Modern Brooklyn oasis (PRIVATE ROOM),20309640,Rameera,Brooklyn,Prospect-Lefferts Gardens,40.66216,-73.94299,Private room,125,1,1,2016-09-17,0.03,1,87 +14370839,Private room in a shared 3 bed 1 bath in Bushwick,65344210,Carly,Brooklyn,Bushwick,40.6866,-73.91221,Private room,34,3,0,,,1,0 +14371241,Private Room - 15 min to Times Square.,9209911,Oscar,Manhattan,Harlem,40.81853,-73.9472,Private room,54,3,71,2019-07-01,2.01,1,15 +14371877,Spacious 1 bedroom in loft-style building,9725785,J.D. & Stephanie,Brooklyn,Williamsburg,40.7103,-73.96833,Private room,79,1,39,2019-06-13,1.11,2,152 +14372031,Williamsburg Loft w Large Private Bedroom & Bath,5662183,Brian,Brooklyn,Williamsburg,40.70786,-73.9503,Private room,80,2,166,2019-06-22,4.68,1,8 +14372624,"A Quiet, Private Room - Heart of Greenpoint/Wbg!",72512761,Erik,Brooklyn,Greenpoint,40.72226,-73.95044,Private room,89,4,31,2019-06-23,4.72,3,0 +14373121,Luxury Midtown High Rise,35573939,Brandon,Manhattan,Hell's Kitchen,40.76377,-73.98734,Entire home/apt,175,3,1,2016-08-18,0.03,1,0 +14373756,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :DD,3441272,Jasmin,Brooklyn,Bushwick,40.69903,-73.93021,Private room,85,1,188,2019-06-20,5.30,5,270 +14375153,Call it Home.,75506967,Mimie,Bronx,Claremont Village,40.83796,-73.9016,Private room,38,15,8,2018-08-02,0.23,2,24 +14378713,Big Bed in Brooklyn Room; close to train,2373229,Antonio,Brooklyn,Bushwick,40.70019,-73.94098,Private room,38,1,97,2019-06-21,2.73,2,0 +14378948,"Small Room, big bed, close to train brooklyn",2373229,Antonio,Brooklyn,Bedford-Stuyvesant,40.69981,-73.94111,Private room,29,1,63,2019-06-05,1.78,2,18 +14381060,Large Private Room in Hip Bushwick,65354277,Eleanor,Brooklyn,Bushwick,40.69918,-73.91316,Private room,45,2,5,2016-10-18,0.14,1,0 +14381523,Beautiful Tree Lined West Village Block!,797100,Rory,Manhattan,West Village,40.7334,-74.00546,Entire home/apt,229,2,3,2016-12-13,0.09,1,67 +14382631,Comfortable and Cozy Apartment In Williamsburg,59614258,Alejandra,Brooklyn,Williamsburg,40.71208,-73.96256,Entire home/apt,147,2,47,2018-10-29,1.34,1,0 +14383283,"(Room201)7分钟拉瓜迪机场,19分钟肯尼迪机场。皇后区法拉盛中心,地段超好。#201",75216989,Wenqin,Queens,Flushing,40.76333,-73.82879,Private room,35,1,61,2019-05-18,1.72,4,342 +14383299,Beverly Hills Studio,88314380,Stephen,Manhattan,Upper East Side,40.76242,-73.96058,Entire home/apt,300,3,0,,,1,179 +14383928,"Private, Sunny & Serene Penthouse Apartment",63365572,Marjorie,Brooklyn,Park Slope,40.67713,-73.97829,Entire home/apt,154,2,143,2019-06-29,4.11,1,269 +14384874,Upscale and charming West Village Pied a terre,88334116,Mark And Annunziata,Manhattan,West Village,40.73579,-74.00764,Entire home/apt,250,120,2,2017-10-25,0.09,1,273 +14385616,PRIME Williamsburg MODERN studio in doorman bldg!!,176332,Lauren,Brooklyn,Williamsburg,40.72207,-73.95697,Entire home/apt,150,4,10,2018-09-26,0.29,1,6 +14386245,Sunny & Spacious Room in Crown Heights,88352863,Daniel,Brooklyn,Crown Heights,40.67159,-73.95242,Private room,65,1,6,2018-06-25,0.17,1,0 +14386712,★1000 ft² designer loft in SOHO - Little Italy★,88329273,Zev,Manhattan,Little Italy,40.71725,-73.99811,Entire home/apt,250,1,180,2019-06-18,5.07,1,229 +14386892,"Private Comfy 2 Room Apt, 23min to Manhattan",88361314,Cindy,Brooklyn,Windsor Terrace,40.65823,-73.98059,Entire home/apt,99,4,75,2019-06-10,2.16,1,216 +14387471,Homey & Vivacious Brooklyn Bedroom,40070700,Kristin,Brooklyn,Bedford-Stuyvesant,40.69742,-73.94775,Private room,45,8,4,2017-05-01,0.11,1,0 +14387555,Cozy room in warm & sunny prime LES/Chinatown Apt,5997660,Victoria,Manhattan,Chinatown,40.71602,-73.99233,Private room,105,2,11,2018-05-24,0.53,1,0 +14388889,Sunny Private bedroom in Bushwick!,20302754,Ruben,Brooklyn,Bushwick,40.69494,-73.91298,Private room,45,3,101,2019-07-02,2.89,2,60 +14389886,Beautiful 1 bedroom in the heart of Manhattan!,88399191,Biljana,Manhattan,Flatiron District,40.74041,-73.98933,Entire home/apt,180,3,16,2018-05-09,0.47,1,0 +14394217,Beautiful studio apartment in Sunnyside,88450280,June,Queens,Sunnyside,40.74962,-73.91664,Entire home/apt,130,2,111,2019-06-27,3.19,1,252 +14397396,Lots of light Upper East Side Apartment.,8116703,Valentina,Manhattan,Upper East Side,40.77315,-73.95848,Entire home/apt,210,3,0,,,1,0 +14398950,Cozy private studio,9667684,Mihaela,Queens,Maspeth,40.72145,-73.90802,Entire home/apt,77,4,93,2019-06-21,2.69,1,198 +14401928,Private Room in Elevator building in Brooklyn,84260530,Sharon,Brooklyn,Flatbush,40.63953,-73.96308,Private room,450,1,1,2016-08-15,0.03,2,364 +14403485,Cozy private bdrm in Manhattan near Subway Station,88550022,Sheila & Tony,Manhattan,East Harlem,40.79105,-73.94376,Private room,85,2,123,2019-06-29,4.09,1,64 +14403574,COZY ROOM in a beautiful Bushwick apartment,12442710,Ben,Brooklyn,Bushwick,40.69467,-73.93113,Private room,67,3,97,2019-06-24,2.75,1,141 +14404240,"Private room near E,F trains近地铁单房",88400958,Yuliang,Queens,Forest Hills,40.71741,-73.8333,Private room,58,2,78,2019-06-16,2.22,1,0 +14406256,"Sunny bedroom, private backyard",88585692,Laura,Brooklyn,Bushwick,40.69641,-73.9252,Private room,149,3,19,2019-01-01,0.56,1,363 +14406807,My 2 br. Humble Abode,425806,Loren,Manhattan,Harlem,40.81257,-73.94606,Entire home/apt,150,2,29,2019-05-20,0.84,1,0 +14406826,"Cozy , Comfortable Accommodations!",88593699,Stacey-Ann,Brooklyn,Bedford-Stuyvesant,40.67984,-73.91151,Private room,80,1,15,2017-01-24,0.42,1,189 +14406923,"Location near Kissena Blvd. & Holly Ave., Flushing",71663192,Maverick,Queens,Flushing,40.74891,-73.82039,Private room,80,1,15,2019-05-01,0.43,1,288 +14408114,Unparalleled Luxury in Midtown Manhattan,836168,Henry,Manhattan,Midtown,40.76455,-73.97959,Entire home/apt,2500,30,4,2017-04-17,0.13,11,364 +14409723,Charming & Spacious Studio in NYC,88626648,Kerry,Manhattan,Upper East Side,40.76099,-73.96158,Entire home/apt,130,2,11,2018-01-01,0.32,1,0 +14415799,East Williamsburg Cozy Apartment with Rooftop!,48113730,Anastasia & Jeremy,Brooklyn,Williamsburg,40.70749,-73.93916,Entire home/apt,150,2,2,2016-10-16,0.06,1,0 +14417576,"Best View, Great Location, Concierge, Gym, Lounge",57910970,Adora,Manhattan,Financial District,40.71097,-74.01397,Entire home/apt,180,1,36,2017-05-09,1.05,1,0 +14417798,LES Minimalistic Studio,65356318,Tiffani,Manhattan,Lower East Side,40.71891,-73.99095,Entire home/apt,125,4,37,2019-06-15,1.05,1,0 +14419516,Spacious sunny bedroom (B) - East Village,3417321,David,Manhattan,East Village,40.72935,-73.9871,Private room,150,2,9,2019-06-23,0.26,2,0 +14420353,Private room in Prime Soho/Nolita location,6136511,Sky,Manhattan,Nolita,40.72057,-73.99462,Private room,89,12,3,2019-05-25,0.10,2,332 +14421258,1 BR in Williamsburg with private balcony!,31344441,Alexa,Brooklyn,Williamsburg,40.71346,-73.95689,Shared room,42,1,4,2017-01-01,0.12,1,0 +14421313,"Cozy Room, Clean & Quiet, Free laundry",42627213,Johnny,Brooklyn,Bedford-Stuyvesant,40.68607,-73.91941,Private room,40,3,5,2016-09-19,0.14,1,0 +14421383,Beautiful Private Sunny Room with Backyard,27001949,Zach,Brooklyn,Bushwick,40.69514,-73.91903,Private room,70,3,72,2019-06-24,2.04,1,155 +14422308,Williamsburg Duplex,23266322,Jamil,Brooklyn,Williamsburg,40.71494,-73.94652,Entire home/apt,200,90,4,2018-10-07,0.40,1,364 +14423010,Convenient and Modern Midtown West Apartment,15978364,Kayleen,Manhattan,Hell's Kitchen,40.76395,-73.99007,Private room,64,2,1,2016-08-08,0.03,1,0 +14423024,Sunny bedroom in historic Bed Stuy BK brownstone,3380348,Lee-Ann,Brooklyn,Bedford-Stuyvesant,40.68545,-73.93074,Private room,75,14,10,2019-01-03,0.45,1,341 +14426680,Luxurious and Sunny 2 bed/2 bath home (1100 sqft),2678122,Tasha,Brooklyn,Williamsburg,40.71729,-73.94927,Entire home/apt,180,4,64,2019-06-06,2.00,3,57 +14427313,PRIVATE ROOOM IN GREENPOINT,26714887,Anthony,Brooklyn,Greenpoint,40.72988,-73.95494,Private room,75,3,0,,,2,0 +14429513,Sunlit Private Room in Centrally Located Chelsea,69021484,Jocelyn & Jake,Manhattan,Chelsea,40.75066,-73.99944,Private room,139,5,120,2019-07-02,3.91,1,52 +14429957,Amazing Private Room close Time Sq & Central Park.,713764,Michelle & Heddy,Manhattan,Hell's Kitchen,40.7632,-73.98875,Private room,149,2,121,2019-06-13,3.50,1,70 +14429976,Comfy private room in Williamsburg,78164397,Mike,Brooklyn,Williamsburg,40.71347,-73.96452,Private room,85,3,99,2019-06-13,3.09,1,19 +14430662,Spacious Brooklyn Apartment,42223963,Faiza,Brooklyn,Flatlands,40.62646,-73.94554,Private room,92,1,2,2017-04-07,0.06,1,364 +14437093,Sunny Alcove 1-bdrm- Rooftop with view & backyard!,4400586,Carrie,Manhattan,East Village,40.72397,-73.98329,Entire home/apt,129,7,10,2019-02-10,0.29,1,0 +14438244,"Lovely, Comfortable 1 Bedroom in East Village",2024430,Lauren,Manhattan,East Village,40.72919,-73.97894,Entire home/apt,150,2,1,2016-09-12,0.03,1,0 +14439638,Great 1 BDR in Upper East Side,1825030,Adrien,Manhattan,Upper East Side,40.7708,-73.95416,Private room,125,1,24,2018-03-23,0.70,1,188 +14440066,Bedroom in SoHo/Nolita,5073448,Alessandra,Manhattan,Nolita,40.72127,-73.99526,Private room,100,4,2,2019-05-07,0.32,1,0 +14441627,Zen Temple Vibe apt in heart of Hells Kitchen NYC,88884610,Lena,Manhattan,Hell's Kitchen,40.75987,-73.99008,Entire home/apt,198,3,15,2019-05-27,0.43,1,4 +14442338,Beautiful 1 Bedroom NYC Apartment - River Views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76082,-73.99937,Entire home/apt,239,30,1,2017-11-01,0.05,121,365 +14443766,Giant private room near east village and gramercy,484993,Andrew,Manhattan,Stuyvesant Town,40.73304,-73.97421,Private room,82,60,0,,,1,365 +14444988,"Charming, fun, private East Village apartment",16419280,John,Manhattan,East Village,40.72541,-73.97638,Entire home/apt,215,1,76,2019-06-23,2.16,1,245 +14445183,Family Friendly Stay in Brooklyn,88945872,Andria,Brooklyn,East Flatbush,40.6468,-73.9508,Entire home/apt,100,5,83,2019-06-30,2.50,1,31 +14445481,Times Square Studio Suite,88904682,Joshua,Manhattan,Hell's Kitchen,40.76549,-73.98582,Entire home/apt,180,2,2,2016-09-19,0.06,1,2 +14446717,"1 Bedroom Apt, West 69th St, bwtn BWay & Columbus",30045574,Barry,Manhattan,Upper West Side,40.77445,-73.98002,Entire home/apt,150,30,8,2019-06-28,0.24,1,328 +14446960,"Cozy 3 Bedroom, 20 Minutes to Times Square!",88960729,Chin,Queens,Woodside,40.74321,-73.89988,Entire home/apt,199,3,169,2019-06-24,4.80,1,302 +14448231,Cozy Sun Filled Fresh Guest Room in Artsy Bushwick,22246463,Lisa,Brooklyn,Bushwick,40.7023,-73.92935,Private room,99,2,26,2019-06-23,0.76,1,155 +14450837,Yoga Apartment next to La Guardia and Manhattan,89000911,Ursula,Queens,Jackson Heights,40.75533,-73.87804,Private room,40,1,81,2019-05-27,2.32,2,127 +14451686,Super relaxing West Village 1BR w/private terrace,60102990,Nicolas,Manhattan,West Village,40.73435,-74.0066,Entire home/apt,199,30,32,2018-10-06,0.91,1,343 +14452731,Cozy room just 15 mins from Central Park,8616291,Chikie,Manhattan,Harlem,40.82112,-73.95112,Private room,69,5,80,2019-06-20,2.26,2,0 +14453189,1BR Apartment,81673810,Max,Manhattan,Chinatown,40.71539,-73.99092,Entire home/apt,170,4,0,,,1,0 +14453434,Greenpoint Williamsburg Gold in the Heart of BK,89031106,Edyta,Brooklyn,Greenpoint,40.72173,-73.94768,Entire home/apt,110,30,4,2017-08-07,0.12,4,301 +14462592,A cozy luxurious bed and breakfast,79641851,Mia,Staten Island,Howland Hook,40.63014,-74.17459,Entire home/apt,100,4,20,2018-09-24,0.57,1,363 +14463527,Sunny Room in Greenpoint.,52040778,Sally,Brooklyn,Greenpoint,40.72408,-73.93952,Private room,50,25,0,,,1,5 +14464084,Swimming Pool/Gym/ Doorman 2 bed 2 bath W&D 5192,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.794,-73.96734,Entire home/apt,310,30,1,2017-03-26,0.04,96,294 +14464699,ENTIRE FLOR :) PRIVATE entrance&full bathroom! :D,3441272,Jasmin,Brooklyn,Bushwick,40.69972,-73.93192,Private room,110,1,208,2019-06-24,5.89,5,293 +14465415,Forest Hills,88681982,"Nykaz, Llc",Queens,Forest Hills,40.73269,-73.85284,Entire home/apt,165,2,37,2019-06-21,1.08,1,86 +14466137,Crown Heights Cozy 2 Bedroom apt.,88001494,Mendy,Brooklyn,Crown Heights,40.66737,-73.93661,Private room,85,3,55,2019-07-06,1.56,3,49 +14466193,Spacious Bright Private Bedroom for 2,17466612,Tanya,Brooklyn,Bensonhurst,40.60909,-73.9769,Private room,65,2,14,2018-10-08,0.44,2,82 +14466418,"**Amazing, Luxury Doorman, VIEW ,Battery Park**",52950465,Gal,Manhattan,Battery Park City,40.71109,-74.01537,Entire home/apt,149,30,2,2017-12-08,0.06,12,281 +14467580,★STAY IN OUR MIDTOWN LUXURIOUS STUDIO SUITE★,64065593,ResortShare5,Manhattan,Midtown,40.7538,-73.97139,Entire home/apt,252,2,16,2019-03-21,0.49,13,327 +14467602,2500 Square Foot Artist Flat,89158733,Alex,Manhattan,Two Bridges,40.71073,-73.99311,Private room,130,120,2,2016-08-15,0.06,2,229 +14467915,MyPlaceYourSpace,89165708,Charles,Brooklyn,Crown Heights,40.67238,-73.92781,Private room,80,6,0,,,1,358 +14469621,★ Comfy Room ★ w/ Parking | Quiet Area | Near Park,87601091,Matthew,Queens,Flushing,40.77063,-73.8098,Private room,75,2,85,2019-06-30,2.42,1,159 +14469737,Spacious Room in the Heart of Williamsburg,6955481,Chloe,Brooklyn,Williamsburg,40.71916,-73.95749,Private room,75,5,4,2019-04-10,0.14,2,0 +14470437,Private Brooklyn Apartment and Garden,29997245,Jenny,Brooklyn,Crown Heights,40.67508,-73.9271,Entire home/apt,125,2,70,2019-06-15,2.01,1,71 +14471418,Studio - St Regis Residence Club,60535711,Bruce,Manhattan,Midtown,40.76079,-73.97528,Entire home/apt,650,2,6,2019-06-16,0.42,2,363 +14472272,Cozy One bedroom apartment,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.69486,-73.94525,Entire home/apt,115,1,129,2019-06-16,3.78,10,255 +14472317,MODERN PENTHOUSE ROOM/BALCONY AMAZING LOCATION :),34226735,Bella,Brooklyn,Williamsburg,40.71354,-73.95095,Private room,90,2,28,2017-11-05,0.82,1,0 +14472385,Large Private 1BR Apartment- Best Location Chelsea,16756301,Alexis,Manhattan,Chelsea,40.7437,-73.99896,Entire home/apt,249,7,70,2019-07-02,2.03,1,266 +14473545,Heart of BK - 1 bedroom w/extra room,37419591,Phil,Brooklyn,Clinton Hill,40.6919,-73.96511,Entire home/apt,140,6,9,2018-01-01,0.26,1,0 +14473548,Luxury 2BR/2BATH TownhousUpper East Side Manhattan,89196907,Maud,Manhattan,Upper East Side,40.7613,-73.96414,Entire home/apt,795,4,26,2019-06-14,0.80,1,340 +14475417,Best “H.P TWIN Bed” 5 mins to LGA airport &US OPEN,32446721,Veronica,Queens,Corona,40.74889,-73.86489,Shared room,27,1,16,2019-06-28,0.71,6,364 +14479761,Charming Studio in Astoria,5760525,Michael,Queens,Long Island City,40.76266,-73.92773,Entire home/apt,105,2,51,2019-06-23,1.48,1,208 +14480047,Private Bedroom in Prime Bay Ridge Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61819,-74.03047,Private room,30,3,23,2019-05-27,0.66,4,211 +14480430,Large room in the heart of Bushwick,13143585,Robert,Brooklyn,Bushwick,40.69526,-73.92674,Private room,55,4,0,,,2,0 +14481668,Bright & Clean Bedroom Nice Area Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61838,-74.03227,Private room,65,3,19,2019-06-30,0.55,4,337 +14482103,Master Bedroom w/ Private Bathroom Close to Subway,22565253,Yinny,Brooklyn,Fort Hamilton,40.61825,-74.03188,Private room,65,3,42,2019-07-02,1.22,4,290 +14482700,A bedroom far from Home,1017772,Lane,Queens,Briarwood,40.71515,-73.8158,Private room,55,2,1,2016-09-18,0.03,1,56 +14483469,Sun Soaked 3-Bedroom w/ private roof deck,19928013,Blake,Manhattan,Greenwich Village,40.73389,-73.99335,Entire home/apt,800,1,0,,,1,0 +14483613,Modern Apt - 10 min from Manhattan,89211125,Caroline,Queens,East Elmhurst,40.7572,-73.89569,Entire home/apt,100,3,87,2019-06-13,2.52,1,322 +14484998,Perfect for Students/Interns seeking summer rental,2261995,Sarah,Brooklyn,Bedford-Stuyvesant,40.6824,-73.94245,Private room,55,1,0,,,3,364 +14485082,Bright Cozy Home in Brooklyn,23727216,Sezer,Brooklyn,Sheepshead Bay,40.60776,-73.95545,Entire home/apt,73,15,2,2017-01-10,0.06,1,0 +14485372,Family Friendly 2 Bedrooms 1 Bath w. washer/dryer,89361094,Karen,Manhattan,East Harlem,40.78672,-73.94869,Entire home/apt,289,2,74,2019-06-10,2.09,1,243 +14485877,I call my place Susan's Villa,39158104,Susan,Brooklyn,Canarsie,40.64562,-73.90961,Private room,75,1,10,2019-06-23,0.29,1,162 +14486539,Welcome to your private room in my home,26267606,Hypha,Brooklyn,Prospect Heights,40.67325,-73.96348,Private room,100,3,1,2017-10-08,0.05,1,179 +14486682,Chic 1 br with huge private garden,1206310,Szilvia & Akos,Brooklyn,Bushwick,40.69369,-73.92421,Entire home/apt,120,10,3,2017-06-19,0.09,1,0 +14487072,Private room with own T.V.,52577963,Mark,Queens,Woodhaven,40.69461,-73.8486,Private room,45,5,23,2019-05-05,0.66,6,216 +14488817,Two bedrooms accommodate 4 guests,2766755,Mara,Manhattan,Harlem,40.80901,-73.95267,Private room,399,3,0,,,2,362 +14489610,Cosy Designer Apt - vacation or business,4149263,Red,Brooklyn,Greenpoint,40.73433,-73.95401,Entire home/apt,155,4,31,2019-01-04,0.91,1,24 +14489615,Cozy 1br mins from CASINO JFK & NYC (2nd Apt),8552126,Claudius,Queens,Jamaica,40.66933,-73.77818,Entire home/apt,60,3,60,2019-05-12,1.71,2,0 +14490720,Amazing apartment in NYC,34264721,Chris,Brooklyn,Sheepshead Bay,40.58721,-73.96018,Entire home/apt,100,20,0,,,1,364 +14491976,Long term sublet in Clinton Hill,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69242,-73.95967,Shared room,30,25,15,2019-04-10,0.43,4,78 +14497153,Private bedroom in Crown Heights BK w/ central AC!,19922104,Divya,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.95189,Private room,50,2,0,,,1,0 +14497942,Swimming Pool/ Amazing Layout W&D Doorman 5131,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79377,-73.96586,Entire home/apt,330,30,1,2017-10-30,0.05,96,250 +14499123,Spacious Home 15 Minutes Away From Manhattan,89523770,Ricky & Diana,Queens,Woodside,40.75328,-73.90855,Entire home/apt,300,2,73,2019-06-23,2.14,1,228 +14499377,Adrian's Place: Cozy 1br mins from JFK w/ 55' TV,89526812,Adrian,Queens,St. Albans,40.69654,-73.74893,Private room,65,2,52,2019-07-02,1.93,1,78 +14499400,"Cozy, Creative Loft - Same Block as Graham Ave L",2024671,Ashley,Brooklyn,Williamsburg,40.71459,-73.9468,Entire home/apt,200,10,4,2017-04-27,0.12,1,0 +14500533,Charming brick brownstone w/ backyard (ground flr),70397297,Amy,Brooklyn,Bushwick,40.70269,-73.91426,Entire home/apt,85,3,7,2018-08-20,0.20,1,0 +14500735,"3 Big Bedrooms, Park Best Location!",89541786,Joe,Brooklyn,Prospect-Lefferts Gardens,40.65831,-73.96075,Entire home/apt,139,30,4,2019-05-24,0.11,1,330 +14503754,Cozy Brownstone Apartment in Brooklyn,89579683,Tonya,Brooklyn,Crown Heights,40.6707,-73.94793,Entire home/apt,135,3,39,2018-08-16,1.12,1,311 +14505483,Beautiful King Bedroom in the heart of Ditmas Park,14942902,Bibi,Brooklyn,Flatbush,40.63135,-73.9651,Private room,150,5,0,,,1,358 +14506036,Heart of Harlem Living - NYC to it's fullest!,1215853,Pascal,Manhattan,East Harlem,40.80758,-73.93702,Entire home/apt,140,1,34,2019-07-01,0.98,1,170 +14506086,Cute Lofted Apt.,22847606,Patricia,Staten Island,Prince's Bay,40.52211,-74.18028,Entire home/apt,185,2,15,2018-08-07,0.44,1,0 +14506113,1 BED APT GREAT FOR FAMILIES/COUPLES NYC,89609176,Raul,Queens,Long Island City,40.75542,-73.93294,Entire home/apt,74,5,7,2017-05-21,0.20,1,90 +14507274,Large Bright East Village Flat,849356,Margo,Manhattan,East Village,40.72652,-73.97938,Entire home/apt,162,5,22,2019-07-02,0.64,1,156 +14516582,Bright One BR w/ Balcony | Bohemian Brooklyn Apt,89680675,Mateo,Brooklyn,Bedford-Stuyvesant,40.6909,-73.95333,Entire home/apt,185,5,53,2019-06-30,1.53,1,269 +14518257,Trundle bed in unprivate space,84260530,Sharon,Brooklyn,Flatbush,40.6462,-73.96114,Shared room,400,1,2,2016-09-01,0.06,2,364 +14518363,R & R on Broadway Uptown,69862540,Rina,Manhattan,Washington Heights,40.83885,-73.94161,Entire home/apt,160,3,12,2018-12-31,0.36,3,5 +14519882,Midtown in NYC for International Business Interns,70060476,Nathalia,Manhattan,Hell's Kitchen,40.76328,-73.9928,Entire home/apt,98,60,28,2019-04-26,0.82,1,343 +14520743,SPACIOUS room TIME SQUARE,33518883,Melina,Manhattan,Hell's Kitchen,40.76106,-73.99148,Private room,95,1,23,2017-08-31,0.66,2,0 +14521738,Prospect Park Brooklyn Private Studio Apt,22593050,Ronit,Brooklyn,Prospect-Lefferts Gardens,40.65988,-73.9612,Entire home/apt,59,1,9,2017-10-14,0.27,1,288 +14522175,Bohemian Home in Trendy LES! #10250,25760832,Alexandra,Manhattan,Lower East Side,40.71947,-73.98581,Entire home/apt,200,2,22,2019-01-05,0.64,1,4 +14522432,"New! Huge Terrace, Close to Manhattan, Great View!",1397078,Sam,Brooklyn,Boerum Hill,40.68882,-73.98629,Entire home/apt,200,2,2,2016-09-27,0.06,1,0 +14522716,"Beautiful, spacious one-bedroom in E. Williamsburg",1834630,Max,Brooklyn,Williamsburg,40.70728,-73.94413,Entire home/apt,100,7,26,2019-05-19,0.75,1,1 +14522966,Huge 3BR 2BA lux in LES! 2min walk to Train!,83543734,Kiev,Manhattan,Chinatown,40.71595,-73.98993,Entire home/apt,499,30,70,2019-06-24,2.04,1,0 +14524079,Times Square Best Location Studio (Entire apt),51446345,J.Y.,Manhattan,Midtown,40.75316,-73.9851,Entire home/apt,189,2,164,2019-06-19,4.72,1,206 +14524686,U.S. Open Special: Hospitality Beyond Expectations,89766221,Alan,Queens,Flushing,40.7568,-73.83055,Private room,185,2,25,2017-08-16,0.71,2,0 +14527923,Mini suite minutes from Central Park,20521058,Owen,Manhattan,East Harlem,40.79631,-73.94772,Private room,79,3,28,2017-10-17,0.80,1,0 +14529806,Designer Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80637,-73.94544,Private room,149,30,84,2019-05-18,2.43,4,337 +14530298,Upper West Side. Charming 2 Bedroom,595368,Joel,Manhattan,Upper West Side,40.79224,-73.97408,Entire home/apt,250,30,0,,,1,358 +14532445,Private Room,89855730,Rory,Manhattan,East Village,40.72661,-73.97894,Private room,105,5,4,2017-10-29,0.12,1,0 +14532520,Sunny room in Bedstuy w/fire escape,86629070,Giuseppe,Brooklyn,Bedford-Stuyvesant,40.69168,-73.9406,Private room,45,3,5,2019-02-08,0.15,1,220 +14533013,"Cozy, Clean ""Like Home"" Full 1 Bdrm",89873550,TiffanyJoy,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95188,Entire home/apt,125,3,38,2018-12-18,1.10,2,197 +14534676,"Private room in SUNNY gorgeous apt in Brooklyn,NYC",7156036,Ahmed,Brooklyn,Flatbush,40.64528,-73.9612,Private room,95,6,2,2019-01-02,0.06,1,249 +14535001,"Astoria, NY. 1 bedroom in a 2bed/1bath",89897015,Lesley,Queens,Ditmars Steinway,40.77443,-73.90758,Entire home/apt,75,1,0,,,1,0 +14535633,Spread out in Manhattan! :),89905737,Eric,Manhattan,Washington Heights,40.84723,-73.94045,Private room,30,14,1,2016-10-29,0.03,1,0 +14536003,Comfort in Manhattan,40238258,Francesca,Manhattan,Upper East Side,40.77715,-73.94802,Private room,175,4,7,2019-05-23,0.21,1,365 +14536056,3BR - Sunny and Vibrant Brooklyn loft,4120523,Aurelien,Brooklyn,Williamsburg,40.70512,-73.9348,Entire home/apt,149,2,28,2019-06-03,0.83,2,2 +14536245,Downtown NYC Studio Apt. near World Trade Center,30283594,Kara,Manhattan,Financial District,40.70782,-74.01525,Entire home/apt,189,30,1,2019-06-22,1,121,364 +14538181,Spacious 1 BR in a 2 BR apartment,9622750,Taran Pal,Manhattan,Kips Bay,40.74202,-73.98032,Private room,95,5,1,2016-09-04,0.03,3,0 +14539106,Queen Airbed studio female/couple,77001085,Avantika,Manhattan,Upper West Side,40.80449,-73.9678,Shared room,61,1,5,2016-12-20,0.15,2,0 +14541203,Independent 2 BR apt. close to all attractions,9622750,Taran Pal,Manhattan,Kips Bay,40.74191,-73.98112,Entire home/apt,190,5,0,,,3,0 +14547628,Comfy stay in the heart of NYC!,8946866,Megan,Manhattan,West Village,40.73546,-74.00263,Shared room,80,1,37,2017-11-05,1.05,1,0 +14547982,Modern Room with private bathroom in spacious apt,27427335,Tyler,Brooklyn,Greenpoint,40.71937,-73.95332,Private room,99,3,3,2017-10-28,0.13,1,0 +14548280,Comfy 1 bedroom in spacious lower east side apt,10013093,Shauna,Manhattan,East Village,40.72412,-73.98667,Private room,84,2,1,2016-08-28,0.03,1,0 +14548579,Brand New One Bedroom In Prime Bushwick,52441724,Asaf,Brooklyn,Bushwick,40.69834,-73.92755,Entire home/apt,125,1,19,2019-06-29,0.55,1,281 +14549011,room available for 2 weeks in shared accomadation,90034926,Natalie,Manhattan,Lower East Side,40.71311,-73.98482,Private room,43,1,0,,,1,0 +14549226,"Charming & Cozy Private Apt near Prospect Park, BK",89954209,A.J.,Brooklyn,Prospect-Lefferts Gardens,40.65826,-73.95036,Entire home/apt,107,3,82,2019-06-20,2.34,1,284 +14549287,Convenient 1-BR in the Heart of LES,11302433,Joan,Manhattan,Lower East Side,40.71906,-73.98836,Entire home/apt,190,3,9,2019-01-02,0.28,1,188 +14551432,1 BR across from Prospect Park! / Windsor Terrace,3155648,Melanie,Brooklyn,Windsor Terrace,40.65271,-73.97361,Entire home/apt,125,2,24,2019-04-22,0.68,1,0 +14551508,Quiet private room for 1 or 2 people,89852528,Florentino,Queens,Ridgewood,40.70645,-73.90578,Private room,45,1,38,2018-12-01,1.11,1,0 +14551515,Large Bedroom in Bushwick,80771146,Tetyana,Brooklyn,Bushwick,40.696,-73.92964,Private room,65,3,0,,,1,0 +14551896,"Awesome, Sunny, and Spacious 1BR Apartment",22265887,Danielle,Manhattan,Harlem,40.80933,-73.945,Entire home/apt,174,5,6,2018-09-21,0.28,1,8 +14552533,Studio in the Best location in Manhattan,42415696,Michael,Manhattan,West Village,40.73175,-74.00419,Entire home/apt,170,1,127,2019-06-24,3.61,1,1 +14553862,"Spacious, Clean Upper West Side Apartment",2005927,Josh,Manhattan,Upper West Side,40.79873,-73.96782,Entire home/apt,200,1,2,2016-09-25,0.06,1,0 +14554093,Cozy West Village Studio with Beautiful Rooftop,1258319,Katherine,Manhattan,West Village,40.73933,-74.00241,Entire home/apt,250,60,4,2018-04-20,0.12,1,0 +14555269,Spacious bedroom in LES,4825815,Peter,Manhattan,Lower East Side,40.71879,-73.98362,Private room,95,4,9,2017-05-15,0.26,1,0 +14555440,Very Near Times Square! Perfect Location in NYC,57944900,Jorge,Manhattan,Hell's Kitchen,40.76104,-73.98831,Private room,250,2,66,2018-12-10,1.94,1,89 +14556236,Riverdale - 2 Pvt rooms for Ladies Only,17365319,Fahmida,Bronx,Kingsbridge,40.88444,-73.90583,Private room,80,2,2,2017-01-01,0.06,2,220 +14556587,Studio Apartment near Columbia Uni,77001085,Avantika,Manhattan,Upper West Side,40.80191,-73.9688,Entire home/apt,160,2,2,2016-08-30,0.06,2,0 +14556634,Brooklyn Nook,9974520,Michael,Brooklyn,Greenpoint,40.72804,-73.94599,Private room,45,2,1,2016-08-23,0.03,1,0 +14556661,"Sunny 1BR near Central Park, Columbia University",90125781,Sebastian,Manhattan,Harlem,40.80534,-73.95647,Entire home/apt,70,21,1,2016-11-04,0.03,1,0 +14557504,Cozy & Clean #5,23533897,Fatou,Brooklyn,Crown Heights,40.67479,-73.9519,Private room,75,1,22,2019-06-22,0.63,7,319 +14557713,Simple Williamsburg room in prime location!,14684457,Christine,Brooklyn,Williamsburg,40.71521,-73.96164,Private room,35,3,2,2016-08-31,0.06,1,0 +14566213,Geodesic Dome,39143718,Sean,Brooklyn,Bedford-Stuyvesant,40.68355,-73.95702,Entire home/apt,200,5,21,2019-05-23,0.60,2,364 +14568352,Charming 1 BD near train 3 stops from Manhattan,22886163,Lucy And Devin,Brooklyn,Sunset Park,40.65044,-74.00986,Entire home/apt,95,3,13,2019-05-06,0.38,1,11 +14568858,"Bright, charming luxury 1 BR with amazing rooftop",10441070,Rebecca,Brooklyn,Greenpoint,40.72038,-73.94233,Entire home/apt,250,4,4,2017-10-31,0.12,1,0 +14569577,Come Explore the Big Apple!,90104417,Sueann,Staten Island,Tottenville,40.51133,-74.23803,Entire home/apt,275,4,29,2019-06-03,0.83,2,313 +14569881,Artist Loft Bushwick,65800377,Benny,Brooklyn,Bushwick,40.70087,-73.92351,Private room,70,2,90,2019-06-23,2.57,3,33 +14570408,Private room in 2 BR on Woodside,70769144,Byungdo,Queens,Woodside,40.75105,-73.90152,Private room,30,7,1,2016-12-01,0.03,1,0 +14570492,6 Guests LUXURY MANHATTAN Condo With ROOFTOP!!!,90258665,Jason,Manhattan,Harlem,40.80742,-73.95205,Entire home/apt,289,3,5,2019-03-28,0.53,1,365 +14570963,Gorgeous Modern Penthouse Terrace by Central Park,47984525,Jennie,Manhattan,Upper West Side,40.78783,-73.97422,Entire home/apt,375,1,34,2019-05-27,0.98,1,7 +14571451,GREAT studio in heart of Manhattan PRIME LOCATION,32454701,Maria,Manhattan,East Village,40.72824,-73.97824,Entire home/apt,129,1,198,2019-07-06,5.63,1,21 +14571686,Beautifull Studio Apt. by Central Park,30283594,Kara,Manhattan,Midtown,40.76641,-73.98163,Entire home/apt,219,30,0,,,121,189 +14575253,Sunny Bushwick space with yoga loft,74471200,Austin,Brooklyn,Bushwick,40.69485,-73.92948,Private room,81,1,10,2017-09-18,0.29,1,35 +14576763,Big Private Room 2 Blocks Away from Time Square,51256572,Chris,Manhattan,Hell's Kitchen,40.75797,-73.991,Private room,75,1,2,2018-02-23,0.12,1,0 +14577253,Summer home for families with baby + toddler,387756,Miguel,Manhattan,Chelsea,40.74725,-73.99515,Entire home/apt,250,2,3,2018-12-30,0.13,1,358 +14577490,HUGE Studio-sized bedroom with own bath,10549144,Anne,Manhattan,Upper West Side,40.7991,-73.96963,Private room,99,5,42,2019-05-17,1.21,2,29 +14577930,2 Bedroom 2 Bathroom Upper West,10549144,Anne,Manhattan,Upper West Side,40.80065,-73.96944,Entire home/apt,225,5,18,2019-04-24,0.58,2,96 +14578109,Location Location - Spacious Room in Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.75912,-73.98985,Private room,106,1,63,2019-05-12,1.84,2,19 +14579123,Sunny & inviting BK Room 30mins from Manhattan.,76765350,Perin,Brooklyn,Bedford-Stuyvesant,40.68465,-73.95644,Private room,55,5,37,2019-06-30,1.16,2,72 +14582793,Nice and comfortable 2/B Apartment,1094833,Meng,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92672,Entire home/apt,110,2,0,,,1,0 +14586448,★ Luxury FiDi Studio - Elevator and Gym ★,90270616,Shaun,Manhattan,Financial District,40.70617,-74.01529,Entire home/apt,279,3,5,2016-12-31,0.15,1,0 +14587044,Entire APT in Heart of Harlem | Hamilton Heights,2887402,Dominic,Manhattan,Harlem,40.82896,-73.94799,Entire home/apt,94,1,11,2018-02-18,0.31,1,0 +14587950,Assemblage Place,200675,Li-Ann,Brooklyn,Clinton Hill,40.68605,-73.96116,Entire home/apt,220,3,12,2019-06-23,0.39,1,19 +14588156,Historic Brooklyn Brownstone,154866,Robert,Brooklyn,Crown Heights,40.67275,-73.94555,Entire home/apt,110,4,75,2019-06-29,2.26,1,48 +14588464,Spacious and Clean Get Away,90453529,Maria,Staten Island,South Beach,40.59116,-74.08174,Entire home/apt,275,4,24,2019-07-06,0.70,1,127 +14590476,Luxury Full-Floor 2 Bed Loft w/Huge Private Roof,90256030,Andrew,Manhattan,Chelsea,40.74775,-73.99167,Entire home/apt,999,2,1,2016-10-12,0.03,1,0 +14590480,AMAZING bedroom in the Heart of NYC,90477848,Theodore,Manhattan,Hell's Kitchen,40.76943,-73.9872,Private room,125,1,37,2019-06-06,1.06,1,310 +14591298,Master bedroom/private bathroom with Balcony,12188270,Adam,Brooklyn,Bedford-Stuyvesant,40.68511,-73.95452,Private room,90,3,5,2018-08-27,0.15,1,83 +14592009,1-bed Apartment in the East Village/Union Square,46723457,Elisabeth,Manhattan,East Village,40.73048,-73.98689,Entire home/apt,122,5,13,2017-12-29,0.42,1,0 +14594286,On Broadway & 3 stops to Times Square,55567227,Neida,Manhattan,Harlem,40.82957,-73.94535,Private room,60,3,89,2019-07-07,2.59,2,37 +14594441,Excellent Studio Space,49562545,Ella,Brooklyn,Williamsburg,40.70623,-73.94951,Entire home/apt,99,1,187,2019-06-23,5.43,2,39 +14596236,Brooklyn - Bushwick - NYC #2,81274648,Ming,Brooklyn,Bushwick,40.69664,-73.92921,Private room,48,2,91,2019-06-23,2.60,4,21 +14601503,Amazing 2 BR Washington Square Park/Soho,61391963,Corporate Housing,Manhattan,Greenwich Village,40.72884,-74.00056,Entire home/apt,159,30,7,2019-04-30,0.25,91,280 +14602894,1 Bedroom steps from Bloomingdale's and Park,61391963,Corporate Housing,Manhattan,Upper East Side,40.76141,-73.96376,Entire home/apt,117,30,7,2019-05-31,0.22,91,312 +14607289,Airy Bedroom in Bushwick,25642456,Chasity,Brooklyn,Bushwick,40.68987,-73.92241,Private room,45,1,4,2018-08-02,0.34,1,0 +14608127,"Vibey Apartment, Empire State Bldg & Times Square!",90646927,Nicole,Manhattan,Kips Bay,40.74496,-73.97867,Private room,100,2,11,2019-06-23,2.02,1,20 +14608350,Bedroom in the <3 of Astoria close to the city,45986534,Tina,Queens,Astoria,40.76792,-73.91191,Private room,40,4,23,2019-04-23,0.73,1,30 +14609804,"Large, Sunny and Clean Studio Apt.in Chelsea",5111513,Jamie J.,Manhattan,Chelsea,40.74945,-73.99742,Entire home/apt,175,7,26,2019-06-18,0.80,1,188 +14610596,Private Room Couch close to Central Park,83586204,Doe2930,Manhattan,East Harlem,40.79281,-73.93955,Private room,40,1,19,2019-05-17,0.90,1,18 +14611399,Lovely studio,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.68446,-73.92998,Entire home/apt,85,1,113,2019-06-18,3.25,3,59 +14613942,Private room in a luxury building in DUMBO!,34161028,Agnese,Brooklyn,Downtown Brooklyn,40.69858,-73.98595,Private room,100,75,6,2018-06-03,0.17,3,0 +14614708,LOVELY Studio in Heart of Soho,30443527,Angelica,Manhattan,Greenwich Village,40.72936,-73.99911,Entire home/apt,195,4,17,2018-10-21,0.49,1,188 +14615541,Brooklyn @ Best ✨ cozy 1br garden,65595344,Shanise,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93344,Shared room,65,1,3,2017-05-28,0.09,1,0 +14616367,"Gem of Brooklyn, 3 bedroom private condo",14433834,Gary,Brooklyn,Crown Heights,40.67228,-73.92707,Entire home/apt,250,4,61,2019-07-02,1.89,1,324 +14616377,Perfect Location 2bd w Bklyn Charm,83523066,Jim,Brooklyn,Park Slope,40.68082,-73.97713,Entire home/apt,170,3,120,2019-06-11,3.51,2,96 +14619860,1 bedroom in Tribeca,6321996,Ana,Manhattan,Tribeca,40.71581,-74.00616,Entire home/apt,440,30,1,2017-11-30,0.05,1,87 +14622053,Cozy private room and bathroom in Brooklyn,90765758,Eric,Brooklyn,Sunset Park,40.64293,-74.01786,Private room,58,3,106,2019-06-30,3.06,1,3 +14624028,Bright Bedroom in Brooklyn!,16205633,Gea,Brooklyn,Kensington,40.64007,-73.97067,Private room,45,7,5,2018-08-19,0.14,1,343 +14624128,Room on the East River w/ balcony!,10098825,Casey,Manhattan,East Harlem,40.78525,-73.94178,Private room,65,1,25,2018-06-30,0.72,1,0 +14625676,Sunny & Spacious 3BR Bklyn Duplex w Private Garden,1239272,Michelle,Brooklyn,Gowanus,40.6702,-73.9896,Entire home/apt,299,2,35,2019-06-09,1.02,1,261 +14627598,Large bedroom in Harlem available,11911230,Eric,Manhattan,Harlem,40.82736,-73.95113,Private room,100,1,1,2018-10-07,0.11,1,363 +14627817,"Fullszbd, prvt room & bth, kitchen & living room",90807417,Gilbert,Manhattan,East Harlem,40.79505,-73.94204,Private room,99,1,14,2017-06-17,0.41,1,50 +14627819,Room on 5th Ave between Washington Sq and Union Sq,8525424,Rafael,Manhattan,Greenwich Village,40.73383,-73.99509,Private room,120,4,2,2017-01-01,0.06,1,0 +14628080,Elegant Studio in the Heart of Harlem,4548229,Brinton,Manhattan,Harlem,40.80622,-73.94622,Entire home/apt,149,30,86,2019-06-03,2.51,4,220 +14628409,WINTER PROMO! BKLN - LG 2bd/ modern/comfy/CLEAN!,7978333,Chana & Chike,Brooklyn,Greenpoint,40.72976,-73.95189,Entire home/apt,150,2,154,2019-06-30,4.50,1,271 +14629018,1 Bedroom Apt All Yours In Astoria!,59503891,B,Queens,Long Island City,40.74829,-73.93253,Entire home/apt,100,2,1,2016-10-10,0.03,1,0 +14629878,Shared Penthouse,46502890,Jackie,Queens,Richmond Hill,40.69858,-73.82893,Private room,60,30,1,2016-08-31,0.03,2,363 +14632080,California Vibes in NYC,90839719,Amy,Manhattan,Chinatown,40.7149,-73.99063,Entire home/apt,153,3,82,2018-12-29,2.42,1,0 +14633272,South Williamsburg,43810721,Mikey,Brooklyn,Williamsburg,40.71082,-73.95736,Private room,50,1,15,2019-04-18,0.44,1,0 +14633324,Modern Luxury Apartment in Heart of Williamsburg,90848714,Amir,Brooklyn,Williamsburg,40.71336,-73.96172,Entire home/apt,172,2,20,2019-06-27,0.58,1,7 +14633924,Designer Basement Apt by the Park 新精緻近公園舒適含窗半地下公寓,39648442,A,Queens,Flushing,40.75005,-73.81145,Entire home/apt,109,1,176,2019-06-22,5.07,2,316 +14646562,Velvet Retreat in the West Village,22218694,Lea,Manhattan,West Village,40.73455,-74.006,Entire home/apt,180,2,100,2019-07-01,2.90,2,344 +14648556,"14 min to Columbus Circle, 20 min to Times Square",597901,Johannes,Manhattan,Harlem,40.82663,-73.94624,Private room,60,1,55,2019-06-22,1.59,1,57 +14648838,Large 2 Story 2 Bedroom Corner Unit On Top Floor,33403059,Joshua,Brooklyn,Bushwick,40.69901,-73.93649,Entire home/apt,175,20,11,2018-10-09,0.32,3,0 +14650584,Private room in Sunnyside Gardens,2964414,Josefina,Queens,Sunnyside,40.74615,-73.91704,Private room,98,2,1,2016-08-28,0.03,1,88 +14651111,"Laid Back, Spacious 2BR All Yours!",45247861,Chris,Brooklyn,Crown Heights,40.67447,-73.94665,Entire home/apt,150,1,0,,,1,0 +14653800,Central Park South 2 Bedroom 1 Bathroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.76552,-73.97661,Entire home/apt,199,29,2,2018-10-05,0.07,31,148 +14653831,Private room. Full size bed. 3rd floor. Cooper Sq,29824461,Labib,Manhattan,NoHo,40.72629,-73.99237,Private room,75,2,1,2016-11-27,0.03,1,0 +14654573,Independent apt in 2 family pvt. home,37328457,Passang,Queens,Sunnyside,40.74202,-73.92479,Entire home/apt,125,2,122,2019-06-20,3.53,1,214 +14654676,Double Twin Spacious Room In Small,17938076,Tyreq,Staten Island,Mariners Harbor,40.6363,-74.15911,Private room,200,1,0,,,1,365 +14655004,Inwood heights,91020843,Orquid,Manhattan,Inwood,40.86316,-73.92627,Shared room,300,1,0,,,2,363 +14655908,"Historic Brownstone (3Flrs). Pvt Deck, Garden,Park",89724008,Richard,Manhattan,Harlem,40.81919,-73.9443,Entire home/apt,750,3,0,,,1,87 +14661553,Bright and clean room in a quaint neighborhood,515095,Mei,Brooklyn,Carroll Gardens,40.67954,-73.99935,Private room,100,2,93,2019-06-23,2.78,2,74 +14661771,Museum Mile,5420713,Alice,Manhattan,Upper East Side,40.78517,-73.95678,Entire home/apt,225,5,16,2019-06-14,0.47,1,364 +14663344,Large room at luxury apartment bldg Times Square,91092037,Ozgur,Manhattan,Hell's Kitchen,40.76072,-73.98792,Private room,120,1,3,2018-01-01,0.09,1,0 +14665418,Spacious light drenched 3 bedroom,22935573,Matias,Brooklyn,Williamsburg,40.71433,-73.95857,Entire home/apt,295,2,78,2019-06-27,2.27,1,309 +14666364,Stylish 1 BD in Garment District,24898836,Trevor,Manhattan,Hell's Kitchen,40.75483,-73.99468,Entire home/apt,160,3,21,2019-06-24,0.60,1,3 +14666899,Modern Room in Great Location (Bushwick),91131716,Colin,Brooklyn,Bushwick,40.70061,-73.92721,Private room,40,3,2,2016-08-27,0.06,1,0 +14668622,Peaceful and Quiet in the heart of TriBeca,4613888,Daniel,Manhattan,Tribeca,40.71705,-74.00935,Entire home/apt,350,1,0,,,1,327 +14670074,Sunny Room in heart of Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76388,-73.98874,Private room,110,1,40,2019-05-17,1.16,3,345 +14670215,The Mahogany Suite-The Solo Adventurer-ll,52862385,The Mahogany Suite(Studio Apartment,Brooklyn,East Flatbush,40.66271,-73.93498,Private room,43,32,32,2019-05-13,0.93,3,345 +14670685,1 br available in a Lovely 2br Apt,751743,Lalla,Brooklyn,Bedford-Stuyvesant,40.68568,-73.95166,Private room,50,3,59,2018-09-21,1.71,1,0 +14672067,Cozy spacious Brooklyn apartment!,89532341,Safiyah,Brooklyn,East Flatbush,40.6453,-73.94669,Entire home/apt,85,93,19,2017-05-21,0.54,1,89 +14672524,Awesome Private Room in Historic Village of Harlem,91194780,Rocky,Manhattan,Harlem,40.80048,-73.94864,Private room,56,2,79,2019-06-13,2.38,1,56 +14672920,Lovely stay next to Prospect Park,9030221,Alex,Brooklyn,Prospect-Lefferts Gardens,40.65563,-73.96052,Private room,73,2,137,2019-05-23,3.94,1,0 +14682338,Harlem Oasis,20872245,Ryan,Manhattan,Harlem,40.82626,-73.93831,Private room,175,3,37,2019-06-19,1.06,1,19 +14683118,Queen Bed/Awesome Space/Sauna & Spa Amenities,89985620,Annette C,Brooklyn,Flatlands,40.62379,-73.92995,Private room,49,2,71,2019-07-05,3.10,3,308 +14683956,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,2856748,Ruchi,Manhattan,Upper East Side,40.7608,-73.96136,Entire home/apt,175,30,0,,,49,365 +14683983,RATED ★★★★★ IN THIS 2 BEDROOM PRESIDENTIAL SUITE,64065593,ResortShare5,Manhattan,Midtown,40.75294,-73.9733,Entire home/apt,672,2,23,2019-05-15,0.87,13,268 +14684834,LG. RED AND WHITE COOL OASIS ROOM.,20134231,Paulette,Queens,Springfield Gardens,40.66383,-73.764,Private room,44,2,36,2019-06-19,1.03,3,357 +14685187,Quaint garden apartment in Clinton Hill,4961381,Ashley,Brooklyn,Clinton Hill,40.684,-73.96368,Private room,130,1,3,2019-06-08,0.45,1,299 +14685276,Gorgeous Loft,1459260,Jorge,Brooklyn,Bedford-Stuyvesant,40.6907,-73.96019,Entire home/apt,132,4,92,2019-06-16,2.69,1,260 +14686954,"Cozy master room,17mins to midtown by EFMR7 trains",40711894,Jessica,Queens,Elmhurst,40.73958,-73.88784,Private room,55,1,54,2019-05-22,2.14,4,0 +14689860,Sunny 1Bedroom in the ❤ of the city,74919443,Josh,Manhattan,Kips Bay,40.74207,-73.9824,Entire home/apt,250,1,13,2017-05-03,0.37,1,0 +14690331,Unique Designer 1BR in Best NYC Neighborhood,27984357,Patrick,Manhattan,West Village,40.73316,-74.00782,Entire home/apt,300,4,24,2019-06-20,0.70,1,61 +14691805,Madison home-,91359302,Kent,Brooklyn,Bedford-Stuyvesant,40.68895,-73.92146,Private room,35,1,35,2019-05-01,1.00,1,0 +14692426,Big & Bright Hamilton Heights Manhattan Bedroom,91364768,Richard,Manhattan,Harlem,40.82722,-73.9431,Private room,100,4,42,2019-06-29,1.37,1,62 +14692459,2BR fully furnished in the UES - minimum 30 days,23772724,Elem,Manhattan,Upper East Side,40.78316,-73.94662,Entire home/apt,175,30,4,2018-08-04,0.14,15,343 +14693952,Private Small Room 4,59529529,Han,Manhattan,Hell's Kitchen,40.7619,-73.995,Private room,75,1,205,2019-07-07,5.89,6,179 +14694447,near metro,91292951,Pengfei,Queens,Elmhurst,40.73259,-73.88083,Private room,30,1,0,,,1,15 +14694588,"Spacious Studio Room in Flushing, Queens",91381742,Pearl,Queens,Flushing,40.75577,-73.83263,Private room,60,2,42,2019-05-19,1.23,1,355 +14695540,Private Suite · Sparkling Clean · Memory Foam,12061634,Sarah,Brooklyn,Sunset Park,40.64737,-74.01357,Private room,47,2,60,2019-06-24,1.71,1,4 +14696215,Entire 1 Bedroom in Gramercy,91393670,William,Manhattan,Kips Bay,40.73903,-73.98267,Entire home/apt,200,2,3,2018-09-24,0.29,1,0 +14696542,"Bright, Modern, Cozy Room in Brooklyn Artist's Apt",91147323,Kaitlyn,Brooklyn,Bedford-Stuyvesant,40.69918,-73.94513,Private room,60,2,159,2019-07-06,4.56,1,153 +14698446,纽约之家(SunnyHome5),45600001,Amy,Queens,Flushing,40.7445,-73.83172,Private room,50,1,31,2019-06-16,0.91,3,79 +14699186,Spacious 1 bedroom with Private Deck with Grill,31483654,Marcus,Brooklyn,Kensington,40.64535,-73.9738,Entire home/apt,100,3,2,2016-11-15,0.06,1,0 +14703733,Gorgeous Brooklyn Studio Apartment,56279680,Abe,Brooklyn,Prospect-Lefferts Gardens,40.66349,-73.94222,Entire home/apt,80,28,9,2019-04-28,0.26,1,219 +14705110,Amazing Luxury located in the Middle of Manhattan!,3898624,Gene,Manhattan,Theater District,40.76112,-73.98473,Private room,125,5,91,2019-07-02,2.63,1,143 +14705209,Cozy Studio in Midtown,7104133,Shruti,Manhattan,Murray Hill,40.74993,-73.977,Entire home/apt,125,2,32,2019-06-19,0.91,1,0 +14706784,Friendly and well-located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6681,-73.97726,Shared room,78,1,46,2018-02-03,1.38,2,0 +14707466,Lovely Bijou!! 5MIN.to MANHATTAN,1705071,Nika,Queens,Long Island City,40.74493,-73.94679,Private room,75,1,86,2019-06-19,2.63,2,337 +14707648,Surfside Studio,10910171,Melissa,Queens,Rockaway Beach,40.58634,-73.81867,Entire home/apt,150,1,144,2019-07-07,4.13,2,134 +14707675,1 Person Only 1 Bdrm LES/East Village HugeDeck,2859516,Raymond,Manhattan,Lower East Side,40.72163,-73.98715,Private room,100,2,165,2019-06-17,4.77,2,2 +14708459,"Bright, Modern, Safe, Clean Apartment in Astoria",35375,Savannah,Queens,Astoria,40.76137,-73.91109,Entire home/apt,200,2,0,,,2,363 +14709693,A Warm Friendly Host for Everlast,91510178,Rahim,Manhattan,Inwood,40.86238,-73.92806,Entire home/apt,65,3,0,,,1,0 +14710763,"Home Base, Minutes to Manhattan!!!",91522394,Angelika,Brooklyn,Bedford-Stuyvesant,40.69532,-73.94407,Entire home/apt,145,2,133,2019-06-24,3.83,1,178 +14711796,Sunny huge FiDi loft w water views,424878,Julia,Manhattan,Financial District,40.70483,-74.01545,Entire home/apt,180,4,17,2019-06-08,0.67,1,203 +14712466,Comfortable place for short term stay.,42764722,Samuel,Brooklyn,East Flatbush,40.65446,-73.92613,Shared room,99,100,1,2016-10-10,0.03,1,0 +14713599,Williamsburg Dream Loft,5213766,Itay,Brooklyn,Williamsburg,40.70774,-73.94819,Private room,120,2,157,2019-07-01,4.54,1,68 +14713835,Upper Manhattan,91020843,Orquid,Manhattan,Inwood,40.86438,-73.92787,Private room,227,1,0,,,2,365 +14714093,Beautiful Apartment in the Heart of Harlem,29893675,Wendell,Manhattan,Harlem,40.82315,-73.93726,Private room,90,3,86,2018-06-18,2.47,2,38 +14714894,Perfect master bedroom in Brooklyn garden duplex,3103656,Laurel,Brooklyn,Bushwick,40.69174,-73.91141,Private room,99,3,3,2018-07-25,0.16,2,332 +14716077,"Spacious bedroom in Greenpoint, Brooklyn",34924990,Ashli,Brooklyn,Greenpoint,40.73374,-73.95617,Private room,55,20,3,2016-08-29,0.09,1,0 +14716155,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93696,Private room,55,30,85,2019-05-05,2.45,4,232 +14716403,Large room in Bushwick Loft!,70724038,Anna,Brooklyn,Williamsburg,40.70525,-73.93281,Private room,80,1,16,2018-03-25,0.51,1,0 +14716586,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69784,-73.93694,Private room,40,30,84,2019-04-20,2.53,4,284 +14721931,Stellar Midtown Apt Extended Stay,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76142,-73.99248,Entire home/apt,133,30,2,2018-10-31,0.15,91,4 +14722273,Midtown 3 BR Elevator - Best Location,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76071,-73.99032,Entire home/apt,175,30,4,2019-03-31,0.21,91,138 +14723039,Brooklyn Duplex in a beautiful brownstone,91645690,Shay & Anat,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95885,Entire home/apt,163,2,33,2019-06-09,1.08,1,255 +14723166,Spacious studio in amazing location,59954257,Sara,Manhattan,Gramercy,40.73711,-73.98573,Entire home/apt,250,5,7,2018-07-05,0.20,1,0 +14723697,"3-Bedroom Apartment, 10 Minutes from Manhattan",864735,Jason,Queens,Astoria,40.75539,-73.91709,Entire home/apt,117,30,7,2019-04-04,0.23,8,241 +14724015,Swimming Pool! 2 Bed 2 bath Amazing Layout!5143,16098958,Jeremy & Laura,Manhattan,Upper West Side,40.79371,-73.96708,Entire home/apt,295,30,2,2018-04-01,0.06,96,250 +14724181,Massive Brownstone Close to Express Trains,91657065,Milton,Manhattan,Harlem,40.8305,-73.9437,Private room,105,2,38,2019-01-01,1.09,1,0 +14724479,Clean & Amazing Semi Private NYC Room by #1 Train,30499687,Jovanni & Natasha,Bronx,Fieldston,40.89581,-73.89778,Private room,59,2,7,2017-04-17,0.21,2,0 +14726498,Inwood Manhattan everything close!!,91678787,Waldy,Manhattan,Inwood,40.86763,-73.91792,Private room,60,3,83,2019-05-31,2.39,1,300 +14726699,Private Ground Floor Studio Apartment Near JFK/LGA,66949758,Shanie,Queens,Jamaica,40.69961,-73.81264,Entire home/apt,49,1,79,2019-07-01,3.01,2,63 +14728630,Central Park Slope Garden Apartment,8066318,Declan,Brooklyn,Park Slope,40.66894,-73.98516,Entire home/apt,141,4,33,2018-11-19,0.96,1,159 +14728788,Cozy & Affordable Room for 2,81762491,Via,Brooklyn,Sheepshead Bay,40.58615,-73.94784,Private room,59,1,13,2018-07-30,0.38,1,332 +14730708,Breathtaking City Views 3 Bed Apt. in Lincoln Sq!,836168,Henry,Manhattan,Upper West Side,40.7791,-73.98182,Entire home/apt,3000,30,8,2016-12-10,0.24,11,365 +14733932,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69568,-73.93384,Private room,50,30,97,2019-05-04,2.79,4,312 +14737992,Large bedroom in Luxury bldg West Harlem,91804427,Laura,Manhattan,Harlem,40.82483,-73.95394,Private room,41,14,25,2019-06-05,0.75,1,6 +14738709,Modern furnished 2-Bedroom NYC Apartment!,30283594,Kara,Manhattan,Hell's Kitchen,40.76025,-73.99811,Entire home/apt,399,30,3,2018-11-15,0.10,121,185 +14741343,Modern Studio Apartment in perfect location!,6658730,Haley,Brooklyn,Prospect-Lefferts Gardens,40.65549,-73.96183,Entire home/apt,189,3,1,2016-10-07,0.03,1,83 +14741623,Cozy Private Bedroom and Bathroom in Brooklyn,39181402,Sarah,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95252,Private room,48,3,67,2019-06-22,1.95,1,70 +14743469,Bensonhurst Gem,19101984,Tuan-Phi,Brooklyn,Bensonhurst,40.60749,-73.99225,Entire home/apt,49,1,1,2016-08-28,0.03,1,0 +14744425,An Apartment for Families near by Tom's Restaurant,11158576,Mustafa,Manhattan,Morningside Heights,40.80429,-73.96499,Entire home/apt,175,2,2,2016-09-10,0.06,1,0 +14744735,Artist Loft w/ AMAZING views of Manhattan,943367,Tracie,Brooklyn,Greenpoint,40.7272,-73.94374,Private room,55,14,4,2018-08-15,0.12,1,17 +14744794,Hamilton Heights Sunny Bedroom,91874222,Laura,Manhattan,Harlem,40.82475,-73.9507,Private room,53,1,4,2017-08-20,0.16,1,0 +14744912,"sunny airy bohemian rm, private bath! hip 'shwick",948164,Theodora,Brooklyn,Bushwick,40.7014,-73.91798,Private room,80,2,4,2018-04-30,0.12,1,0 +14745847,Beautifu large studio in the heart of Manhattan,39939354,Roberto,Manhattan,Midtown,40.75797,-73.97004,Entire home/apt,150,7,29,2019-06-22,0.86,1,31 +14746873,"COZY KING SIZE BED, NEAR AIRPORTS",51550484,Zhur,Queens,Richmond Hill,40.69621,-73.84532,Private room,67,2,8,2018-12-23,0.23,2,337 +14747893,"HUGE ROOM,PRIVATE BATH FORT GREENE/CLINTON HILL",91909024,Jason,Brooklyn,Clinton Hill,40.68548,-73.96625,Private room,80,4,2,2016-11-07,0.06,1,0 +14749932,PRIME WILLIAMSBURG ROOM. ONE STOP FROM MANHATTAN,13066224,Valentina,Brooklyn,Williamsburg,40.71906,-73.95726,Private room,78,1,35,2019-06-23,1.01,1,247 +14756273,"Large private room in Astoria, 20 mins to mid-town",68276808,Summer,Queens,Ditmars Steinway,40.77392,-73.91678,Private room,50,2,10,2018-08-08,0.46,1,0 +14756913,Beautiful loft apt. on quiet Bed-Stuy block,128431,Valentina,Brooklyn,Bedford-Stuyvesant,40.68112,-73.9302,Entire home/apt,120,3,59,2019-06-22,1.73,1,57 +14756990,Bushwick Suite,92002479,Dee,Brooklyn,Bushwick,40.68891,-73.92084,Private room,75,1,6,2018-11-28,0.17,2,0 +14757774,Sunny room in PRIME Brooklyn!,6803612,Jessica,Brooklyn,Bushwick,40.70497,-73.9233,Private room,60,4,3,2018-09-23,0.09,1,0 +14759511,Big bedroom in the heart of Greenpoint,54892756,Nathaniel,Brooklyn,Greenpoint,40.73271,-73.95536,Private room,75,4,1,2016-09-14,0.03,1,0 +14759843,Cozy studio In Bed Stuy Brooklyn,14438618,Rodney,Brooklyn,Bedford-Stuyvesant,40.68253,-73.9501,Entire home/apt,99,1,31,2018-09-20,0.89,1,345 +14759851,Cozy room in convenient Midtown West location,8048669,Lin,Manhattan,Hell's Kitchen,40.76144,-73.98849,Private room,100,2,16,2019-05-16,0.47,1,6 +14759888,Sunny and Spacious Bedroom in the East Village,6049738,Fayth,Manhattan,East Village,40.73029,-73.98725,Private room,95,4,9,2018-03-16,0.26,2,0 +14760211,"Madison Ave Palace - Washer Dryer, Outdoor Deck",61391963,Corporate Housing,Manhattan,Upper East Side,40.78321,-73.95646,Entire home/apt,200,30,4,2019-04-30,0.21,91,311 +14760402,2br Apartment w/ Balcony & Free Airport Pickup!,83627325,Jared,Queens,Sunnyside,40.74634,-73.9179,Entire home/apt,249,1,6,2019-05-26,0.18,4,365 +14760567,Spacious Room in HUGE Manhattan flat!,42691960,Marie,Manhattan,Harlem,40.80676,-73.94658,Private room,33,4,9,2017-09-01,0.26,2,0 +14761949,Upper Westside Room w/ Private Bath & View,25543706,Christina,Manhattan,Harlem,40.82489,-73.95337,Private room,80,2,93,2019-06-27,2.69,1,215 +14763045,Location! Location! Location! ... in a cute studio,54743212,Brigid,Brooklyn,Williamsburg,40.71588,-73.94297,Entire home/apt,160,14,4,2017-09-10,0.12,1,0 +14763255,Private Large Studio-size Room,43585545,Angelo,Brooklyn,Bedford-Stuyvesant,40.68683,-73.95004,Private room,50,1,25,2019-06-29,2.08,1,28 +14767195,"Quaint, sunny, and quiet room overlooking garden.",92110601,Amey,Queens,Sunnyside,40.73967,-73.92367,Private room,50,2,7,2016-11-13,0.21,1,0 +14768563,Large 1 Bedroom near Prospect Park,19918057,Sogol,Brooklyn,Prospect-Lefferts Gardens,40.66028,-73.961,Entire home/apt,100,2,1,2016-09-05,0.03,1,0 +14769619,Cozy minimalist room close to train (1),74179880,Silvia,Brooklyn,East New York,40.67539,-73.89039,Private room,33,3,101,2019-06-16,2.92,8,323 +14769785,Pr1vate Room(Queensizebed)$100,83147028,Shirley,Brooklyn,Crown Heights,40.67181,-73.925,Private room,100,1,16,2019-01-01,0.46,2,365 +14770256,Lovely bedroom in the heart of Brooklyn,42854068,Pau,Brooklyn,Midwood,40.61679,-73.96016,Private room,35,5,0,,,1,0 +14771917,1 bedroom w/PRIVATE full bathroom (BUSHWICK),20092334,Adhat,Brooklyn,Bushwick,40.70542,-73.92025,Private room,55,15,0,,,1,0 +14772328,Amazing Space in the Heart of Williamsburg,62126843,James,Brooklyn,Williamsburg,40.71417,-73.94463,Entire home/apt,60,10,1,2017-09-26,0.05,1,0 +14772701,2A Lovely one bedroom apartment in Williamsburg,49704571,Krzysztof,Brooklyn,Williamsburg,40.71943,-73.94255,Entire home/apt,89,30,11,2019-05-31,0.34,8,144 +14774206,South-By-Southwest Room,92193254,Max,Manhattan,Upper West Side,40.80093,-73.9601,Private room,97,3,96,2019-07-06,2.80,1,134 +14774459,Big Apartment with Balcony by Central Park,4064681,Aziz,Manhattan,East Harlem,40.79834,-73.94761,Entire home/apt,164,1,8,2017-02-22,0.23,1,0 +14776203,Home 4 Medical Professionals- Stuyvesant Heights 1,26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95246,Private room,57,30,1,2017-02-18,0.03,43,365 +14777684,Immaculate Private Apt Under $10 Uber to JFK*,72838963,Deborah,Queens,Jamaica,40.68358,-73.7967,Entire home/apt,66,1,94,2019-07-04,2.71,2,180 +14778622,"Modern and Safe Place,Free Wifi",92238446,Elliot,Queens,St. Albans,40.70052,-73.75184,Private room,400,4,0,,,1,365 +14779359,"3 BD,2 BTH, Doorman,15 mins to Midtown",47219202,Roy & Rita,Manhattan,Harlem,40.8222,-73.94323,Entire home/apt,199,2,15,2019-07-07,0.58,1,54 +14779590,Quiet room with loft bed,16300594,Ari,Brooklyn,Williamsburg,40.716,-73.955,Private room,52,5,57,2019-06-25,1.65,3,104 +14781268,Huge Sunny Private Bedroom in heart of Brooklyn,566200,Daniel,Brooklyn,Bushwick,40.69951,-73.92848,Private room,70,30,6,2019-03-22,0.18,1,0 +14783267,Lovely & bright apartment in center of Park Slope,950826,Talia,Brooklyn,Park Slope,40.66961,-73.97991,Entire home/apt,170,30,17,2019-06-09,0.50,1,0 +14783394,Bright Room in Bushwick,71379648,Jacob,Brooklyn,Bushwick,40.68815,-73.91344,Private room,62,3,7,2018-03-31,0.22,1,0 +14783847,Midtown East Pied-à-Terre,32507569,Cranston,Manhattan,Midtown,40.75586,-73.96185,Entire home/apt,200,6,23,2019-07-01,2.23,1,89 +14784377,Sunny Master Bedroom / Harlem,40223194,Kenny,Manhattan,Harlem,40.81285,-73.95439,Private room,75,2,3,2016-11-12,0.09,1,0 +14784557,Beautiful Designer 1 bedroom Apt Midtown Manhattan,767764,Jerald,Manhattan,Hell's Kitchen,40.76688,-73.99402,Entire home/apt,200,3,31,2019-07-03,0.94,1,51 +14784793,Ditmas Park Beautiful Spacious Apartment,11427836,Tiffany,Brooklyn,Flatbush,40.63825,-73.95654,Entire home/apt,160,2,18,2019-04-22,0.52,1,0 +14787061,Harlem River,92324633,Ermanno,Manhattan,East Harlem,40.81344,-73.93454,Private room,100,2,7,2017-09-04,0.21,1,32 +14787179,Large private bedroom&bath 2 min. away from subway,92325527,Barbara,Brooklyn,Williamsburg,40.71153,-73.94215,Private room,100,2,124,2019-07-03,3.65,1,58 +14787406,"Homey, accessible private bedroom",19544315,Cal,Manhattan,Washington Heights,40.83315,-73.94108,Private room,58,1,1,2016-09-21,0.03,2,0 +14787727,"1 Bedroom Apartment, Carroll Gardens",2724990,Valeska,Brooklyn,Carroll Gardens,40.68182,-73.99208,Entire home/apt,110,10,0,,,1,0 +14787776,1 Beautiful Private Bedroom In Prime Williamsburg,46220101,Nicolette,Brooklyn,Williamsburg,40.7121,-73.9623,Private room,120,3,2,2019-05-12,0.23,1,149 +14788009,Chris' Cozy Cave!,69029231,Chris,Queens,Ditmars Steinway,40.78031,-73.91003,Entire home/apt,95,3,89,2019-06-18,2.60,1,259 +14789008,"Spacious 1BR amazing view, Beach 5 min, airport 20",26759986,Aziz,Brooklyn,Manhattan Beach,40.58249,-73.95347,Entire home/apt,150,30,2,2016-09-20,0.06,1,0 +14790550,Large and inviting 3BR apartment,21426910,Allen,Brooklyn,Gravesend,40.59544,-73.97087,Entire home/apt,150,2,145,2019-07-01,4.24,2,35 +14795784,Studio Apartment Prospect Heights,2140246,Tanya,Brooklyn,Crown Heights,40.6758,-73.96251,Entire home/apt,95,3,10,2019-05-19,0.30,1,188 +14796894,21St&6Th Ave Prime Doorman 1bed !GYM 5204,16098958,Jeremy & Laura,Manhattan,Chelsea,40.74246,-73.9954,Entire home/apt,250,30,1,2017-01-07,0.03,96,319 +14798850,Cool Brooklyn spot,92441472,Scott,Brooklyn,Bedford-Stuyvesant,40.69576,-73.96137,Private room,37,2,1,2016-08-30,0.03,1,0 +14798941,Sunny Room with Queen Bed in Artsy Bushwick,1385016,Bradley,Brooklyn,Bushwick,40.70468,-73.92568,Private room,75,5,4,2017-09-26,0.12,1,88 +14800184,Spacious Bedroom in Gorgeous Renovated Apartment,82715129,Carlos,Brooklyn,Bedford-Stuyvesant,40.69063,-73.93947,Private room,67,2,87,2019-06-30,2.51,1,60 +14802377,Beautiful Home Away From Home,11272233,Kat,Brooklyn,Crown Heights,40.67532,-73.93986,Private room,59,1,7,2019-06-21,0.20,2,189 +14802396,"Park Slope Bklyn, Large 2 BD/2 BTH",42569610,Chris & Jayma,Brooklyn,Park Slope,40.67861,-73.98066,Entire home/apt,227,30,2,2017-02-12,0.06,1,250 +14803168,Cozy living in midtown close to EVERYTHING,92481239,Russell,Manhattan,Upper West Side,40.76938,-73.98689,Entire home/apt,160,3,4,2018-07-29,0.28,1,2 +14804661,"Cozy 4 beds, Free Ferry to Manhattan.",92493393,Eddie & Lois,Staten Island,West Brighton,40.63333,-74.11311,Entire home/apt,125,2,96,2019-07-01,2.82,5,362 +14804934,Spacious room on the East River!,14614459,Dario,Manhattan,East Harlem,40.78608,-73.94305,Private room,50,3,14,2018-06-03,0.41,4,0 +14805984,"Cozy NY Apt, Central to transport-LIVE as a LOCAL-",92509632,Nelly,Brooklyn,Canarsie,40.63949,-73.90585,Entire home/apt,80,2,83,2018-03-11,2.42,1,0 +14807279,Renovated brownstone apt w/ private outdoor patio,43853650,Eric,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95927,Entire home/apt,225,4,112,2019-06-30,3.23,1,136 +14807332,Duplex with Private Bathroom by Times Square,92520154,Michael,Manhattan,Hell's Kitchen,40.7658,-73.98795,Private room,180,1,319,2019-07-01,9.24,1,57 +14807716,Spacious 2 bedroom penthouse in Williamsburg,49704571,Krzysztof,Brooklyn,Greenpoint,40.72107,-73.943,Entire home/apt,109,30,6,2018-08-10,0.20,8,176 +14807890,Sunny Bloomingdale,9060571,Maurice,Manhattan,Upper West Side,40.79986,-73.96415,Private room,100,1,86,2019-07-05,2.50,1,34 +14808499,"Large studio in Williamsburg, 3B",49704571,Krzysztof,Brooklyn,Williamsburg,40.71984,-73.94303,Entire home/apt,79,30,11,2019-05-31,0.35,8,136 +14808561,"private cosy , clean 2 bedroom apt",15724675,Juan,Queens,Woodside,40.74185,-73.90684,Private room,105,2,9,2017-08-14,0.26,2,0 +14808832,"Bedroom & living area Upper East Side, 86th Subway",7917247,Daniel,Manhattan,Upper East Side,40.77544,-73.95577,Entire home/apt,125,2,102,2019-06-15,3.21,1,35 +14808890,Comfortable Twin Size Bed Near Airport,51550484,Zhur,Queens,Richmond Hill,40.69416,-73.84698,Private room,47,2,25,2019-06-10,1.13,2,152 +14809302,A Small Room With Futon Bed In A House In Brooklyn,40236384,Oates,Brooklyn,Prospect-Lefferts Gardens,40.65934,-73.95937,Private room,60,1,19,2017-04-04,0.55,2,0 +14809342,Soho/Nolita Apartment w/Rooftop Terrace,3599088,Chris,Manhattan,Nolita,40.72191,-73.99472,Entire home/apt,120,19,5,2018-03-25,0.17,2,0 +14815997,"Bright, quiet, super comfy chic in Upper East Side",3979831,Mj,Manhattan,Upper East Side,40.77273,-73.96344,Entire home/apt,195,2,90,2019-06-26,2.59,1,134 +14817571,Private room in astoria for a month!,90043913,Yudum,Queens,Astoria,40.77013,-73.92092,Private room,60,2,2,2019-06-10,1.22,2,34 +14817574,Spacious Room in the heart of Greenwich Village!,88398053,Colleen,Manhattan,Greenwich Village,40.72807,-73.99925,Private room,99,2,5,2017-08-20,0.15,1,0 +14818234,Spacious 3BR Duplex Apt + Loft in Gramercy NYC,80782387,Justin,Manhattan,Gramercy,40.73815,-73.98443,Entire home/apt,300,3,11,2019-05-27,0.32,1,0 +14819796,"Charming 2BR Prime Carroll Gardens/ F,G Train",40611169,Sol,Brooklyn,Carroll Gardens,40.67718,-73.99493,Entire home/apt,250,1,62,2019-06-28,1.79,5,178 +14821133,Bright 1 Bedroom in the heart of the East Village,1772952,Elizabeth,Manhattan,East Village,40.72931,-73.97925,Entire home/apt,105,4,18,2018-04-22,0.52,1,0 +14821494,Beautiful Furnished 1 BR Apt near Times Square,30283594,Kara,Manhattan,Chelsea,40.74461,-73.992,Entire home/apt,129,30,0,,,121,349 +14821756,"LowerLevel House NYC,Traveler ShortStay BedRoom",31307789,Luffy,Queens,Corona,40.74864,-73.85436,Shared room,27,2,16,2019-06-07,0.48,2,365 +14822309,"Relaxing, spacious, private room Riverside Drive",16978120,Chip,Manhattan,Harlem,40.82966,-73.95021,Private room,65,30,7,2019-04-30,0.21,2,225 +14823020,peaceful tree view room in sweet neighborhood,22388424,Leslie,Queens,Ridgewood,40.7058,-73.91041,Private room,42,3,6,2019-06-13,0.18,2,52 +14823077,Amazing Private Bedroom on UES of New York City,20707006,Tianna,Manhattan,East Harlem,40.78962,-73.94837,Private room,100,4,1,2017-01-03,0.03,1,0 +14823526,"Located in heart of SOHO, super convenient!",9390190,Amy,Manhattan,SoHo,40.72281,-73.9987,Private room,120,1,9,2018-10-28,0.35,4,89 +14824160,NYC Photographers Loft,1319462,Zi Ying,Manhattan,Chinatown,40.71775,-73.99509,Entire home/apt,199,3,19,2019-06-22,0.56,2,11 +14824230,Cozy quiet room in Morningside brownstone,92690603,Ruth,Manhattan,Morningside Heights,40.80576,-73.95832,Private room,85,3,49,2019-06-14,1.46,1,2 +14824875,Beautiful two bedroom apartment with backyard,68082479,Sunshine,Brooklyn,East New York,40.6735,-73.89635,Entire home/apt,135,30,108,2019-06-20,3.12,2,206 +14825405,Oceanview pull out bed in a SAFE area. No BS fees!,24676472,Gino,Brooklyn,Brighton Beach,40.57701,-73.96616,Shared room,50,1,1,2016-10-09,0.03,1,0 +14826817,Sid's Victorian Oasis,92720308,Sidney,Brooklyn,Flatbush,40.64088,-73.96306,Private room,120,1,87,2019-06-12,2.53,3,313 +14826900,Modern Williamsburg Loft,25161779,Maria,Brooklyn,Williamsburg,40.71122,-73.95922,Entire home/apt,160,3,2,2017-07-31,0.06,1,0 +14827265,private room in SOHO,9390190,Amy,Manhattan,SoHo,40.72194,-73.9983,Private room,120,1,25,2019-07-01,0.75,4,89 +14827418,private room in central SOHO,9390190,Amy,Manhattan,SoHo,40.72293,-73.99952,Private room,120,1,24,2019-05-19,0.71,4,89 +14827512,comfy bed in SOHO,9390190,Amy,Manhattan,SoHo,40.72364,-73.99923,Shared room,100,1,51,2019-07-01,1.48,4,82 +14827752,NEW Bright Modern Apt in the heart of DOWNTOWN NYC,17536826,Hanyuan (Yssi),Manhattan,East Village,40.72989,-73.9888,Entire home/apt,270,2,0,,,1,0 +14832329,Cosy Brooklyn Bedroom in Duplex Apt,12368999,Mathieu,Brooklyn,Clinton Hill,40.68439,-73.96336,Private room,72,1,2,2016-09-11,0.06,1,0 +14834097,"East 63rd street, Studio Serviced Apartment*",22541573,Ken,Manhattan,Upper East Side,40.76356,-73.96082,Entire home/apt,179,30,0,,,87,365 +14834733,"Stoner Abode in Bushwick +ADULTS ONLY!",92002479,Dee,Brooklyn,Bushwick,40.69018,-73.92166,Private room,72,1,96,2019-06-23,3.13,2,365 +14835065,West Village Apartment near Washington Square Park,77722758,Robert,Manhattan,Greenwich Village,40.73293,-73.99846,Entire home/apt,200,1,4,2017-12-30,0.12,1,0 +14835632,"Bright, conveniently located room in Bushwick",29480857,Elena,Brooklyn,Bushwick,40.70352,-73.92971,Private room,48,2,11,2017-12-30,0.32,1,0 +14835670,Classic Bed-Stuy Brownstone Garden Apartment,92602590,Richard,Brooklyn,Bedford-Stuyvesant,40.69042,-73.942,Entire home/apt,95,2,27,2018-05-05,0.79,1,0 +14837052,Fantastical Artist's loft in Tribeca,46564548,Meghan,Manhattan,Tribeca,40.7155,-74.00754,Entire home/apt,800,13,2,2018-07-16,0.14,1,173 +14837884,Small Bedroom in Heart of SoHo,91280958,Sandra,Manhattan,SoHo,40.72179,-73.99795,Private room,49,3,1,2016-09-15,0.03,1,0 +14838160,Bedroom in Beautiful Fort Greene Home,20480059,Mallary,Brooklyn,Fort Greene,40.69218,-73.97138,Private room,65,4,48,2019-05-22,1.38,3,0 +14838808,Private Bed/Bath in SOHO Townhouse +Office/Deck!!!,43599290,Scott,Manhattan,SoHo,40.72198,-74.00296,Private room,129,2,26,2019-05-22,0.76,2,89 +14839106,Modern Private Room-L Train in front of building!,60968776,Kaitlyn,Brooklyn,Williamsburg,40.70812,-73.94003,Private room,113,3,27,2019-06-19,0.78,1,37 +14839830,Modern Spacious Private One bedroom Free Parking.,48630747,Harvey,Queens,Flushing,40.72363,-73.80285,Entire home/apt,100,1,197,2019-06-24,5.81,1,342 +14839995,3 BR & Bath Sunny Quiet Entire Floor Brown,39543399,Michael,Brooklyn,Park Slope,40.67171,-73.97607,Entire home/apt,175,3,29,2019-05-06,0.85,1,282 +14840286,Artist's Townhouse,9977688,Lenissima,Brooklyn,Bedford-Stuyvesant,40.68785,-73.92412,Entire home/apt,575,4,6,2018-12-31,0.19,1,179 +14840323,Loft in the heart of Bushwick (jefferson L),18198110,Jefferson,Brooklyn,Bushwick,40.70461,-73.92297,Entire home/apt,135,2,6,2016-10-31,0.17,1,0 +14840822,"East midtown, Steps from the UN +GC",74974718,Leah,Manhattan,Midtown,40.75015,-73.97082,Private room,200,5,41,2019-07-01,1.20,1,333 +14841128,"Cozy Quiet/NYC, Brooklyn apt next to subway!!",92333417,Valerie,Brooklyn,Bedford-Stuyvesant,40.68234,-73.94943,Entire home/apt,152,3,132,2019-06-24,4.13,2,321 +14841838,Jackson Heights 2 bedrooms housing,92872782,Nicholas,Queens,Jackson Heights,40.75495,-73.87774,Entire home/apt,140,2,115,2019-06-24,3.34,1,298 +14842856,Unique Creative Artist Space in Brooklyn,90864500,Wilson,Brooklyn,Sunset Park,40.65348,-74.00255,Entire home/apt,800,1,1,2017-08-13,0.04,1,364 +14842991,Sunny Upper East Side Escape,4611487,Caroline,Manhattan,Upper East Side,40.76749,-73.95471,Private room,95,4,101,2019-06-26,2.94,1,49 +14843464,"Large studio in Williamsburg, 4B",49704571,Krzysztof,Brooklyn,Greenpoint,40.72043,-73.94253,Entire home/apt,80,30,8,2019-06-08,0.26,8,152 +14843553,Beautiful Alcove Studio in West Midtown,493093,Eyal,Manhattan,Chelsea,40.75122,-73.99658,Entire home/apt,215,3,88,2019-07-01,2.59,1,200 +14850904,"Sunny, Beautiful 2BR in Park Slope South",92963740,Remy,Brooklyn,Sunset Park,40.66148,-73.98942,Entire home/apt,140,2,83,2019-06-30,2.40,2,7 +14851247,Clean bright comfy 1BR east Harlem,51843917,John,Manhattan,East Harlem,40.79853,-73.93772,Entire home/apt,110,29,9,2018-04-02,0.26,1,35 +14851292,Gorgeous Sunlit One Bedroom - Uptown Manhattan,64161144,Nichole,Manhattan,East Harlem,40.81506,-73.93567,Entire home/apt,100,2,9,2017-01-15,0.26,1,0 +14851530,Eclectic Prime Williamsburg Space,50374022,Elana,Brooklyn,Williamsburg,40.71254,-73.96411,Private room,100,3,2,2017-05-22,0.06,2,0 +14853361,Charming 1BR with sun-nook in Brooklyn,92986768,Macushla,Brooklyn,Navy Yard,40.69803,-73.97205,Entire home/apt,94,3,5,2018-01-06,0.14,1,0 +14854002,Master bedroom with king size bed and private bath,3274903,Vicky,Queens,Sunnyside,40.73825,-73.92919,Private room,76,3,9,2019-06-16,0.97,1,112 +14854013,"1 Bedroom apartment in Woodside, NY",20616761,Eliana,Queens,Sunnyside,40.74473,-73.91334,Entire home/apt,150,2,51,2019-06-09,1.48,1,329 +14854430,Apartment in Center of East Village,39942789,Jackie,Manhattan,East Village,40.73001,-73.98464,Entire home/apt,195,2,48,2019-06-05,1.41,1,344 +14854453,Small room in great neighborhood,10737943,David,Manhattan,Upper East Side,40.77819,-73.94597,Private room,49,25,5,2019-06-01,0.15,10,284 +14855614,Luxury New York City Westside Suite,92067070,Rhondella,Manhattan,Midtown,40.76419,-73.98053,Entire home/apt,500,1,5,2018-09-26,0.15,1,361 +14856742,Penthouse Private Room w/Amazing Views,26434803,Zach,Brooklyn,Bushwick,40.69924,-73.91261,Private room,45,10,1,2016-09-05,0.03,2,0 +14856799,纽约之家(SunnyHome3),27673980,Amy,Queens,Flushing,40.7459,-73.83298,Private room,50,1,54,2019-04-15,1.56,8,78 +14858190,Brand New Luxury Apartment with Breathtaking Views,17540607,Floor,Manhattan,East Village,40.72088,-73.97825,Entire home/apt,295,4,2,2018-03-09,0.09,1,0 +14858485,Cozy nook in the Brook(lyn),93044732,Christopher,Brooklyn,Bedford-Stuyvesant,40.69328,-73.95447,Private room,65,1,3,2016-09-19,0.09,1,0 +14858544,BEST AREA IN CHELSEA. MODERN. COMPACT. HIGH LINE!!,93044932,Gina,Manhattan,Chelsea,40.75005,-73.99898,Entire home/apt,90,1,80,2019-06-22,2.32,1,73 +14858777,West Harlem Cosy and Spacious Room,9030453,Irie,Manhattan,Harlem,40.81172,-73.94456,Private room,71,5,6,2017-09-20,0.18,2,305 +14864014,"Ultramodern Luxury 1 BR w/ Terrace, Crown Heights",322716,Alex,Brooklyn,Crown Heights,40.67162,-73.95009,Entire home/apt,155,7,19,2019-06-18,0.56,5,333 +14865705,Shared 1br in Flushing for cheap,16795575,Zack,Queens,Flushing,40.75338,-73.82342,Private room,40,1,6,2016-09-13,0.17,2,0 +14867152,Cozy Bed Stuy Two Room Studio,32597915,Jason,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93094,Entire home/apt,50,2,4,2016-12-06,0.12,1,0 +14868158,Private Bedroom with Amazing Skyline View,93148942,Trey,Brooklyn,Bushwick,40.69945,-73.92771,Private room,50,1,9,2017-08-05,0.26,2,0 +14868347,NYC Studio Apt right by Central Park!!,30283594,Kara,Manhattan,Midtown,40.76556,-73.98197,Entire home/apt,199,30,1,2017-10-25,0.05,121,189 +14868631,Cozy Bed Stuy Getaway,40222216,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92598,Entire home/apt,136,2,7,2019-06-26,2.84,1,255 +14868857,Entire studio in Williamsburg,49704571,Krzysztof,Brooklyn,Williamsburg,40.71906,-73.94394,Entire home/apt,80,30,10,2019-04-21,0.32,8,97 +14869260,Modern Apartment on the UES,84403365,Hillary,Manhattan,Upper East Side,40.78194,-73.94791,Private room,65,1,1,2017-06-11,0.04,1,0 +14869271,"1 bdrm in Park Slope , Bklyn.",83611652,Phyllis,Brooklyn,Park Slope,40.67915,-73.98157,Entire home/apt,200,1,4,2018-08-20,0.15,1,20 +14869440,Crown Heights 1 BR w/ Style,7128634,Landon,Brooklyn,Crown Heights,40.67541,-73.95221,Entire home/apt,148,2,16,2018-09-30,0.49,1,0 +14870802,Private Room in the Heart of SoHo,34252002,Harriet,Manhattan,Nolita,40.72204,-73.99705,Private room,100,2,10,2017-03-19,0.29,1,0 +14871074,Spacious Artist's Apartment,7675569,Annika,Brooklyn,Bushwick,40.69983,-73.92981,Private room,90,2,5,2017-08-13,0.15,1,0 +14871736,An Urban Oasis in the Heart of Downtown Brooklyn,21327336,Alicia,Brooklyn,Boerum Hill,40.68475,-73.97986,Entire home/apt,239,2,10,2019-04-28,0.29,1,11 +14878046,Light Filled Chinatown Apartment,2909294,Erin,Manhattan,Chinatown,40.71534,-73.99918,Entire home/apt,150,1,23,2019-07-01,1.42,1,14 +14880613,"Cute, central East Village apt",4289248,Tamar,Manhattan,East Village,40.72891,-73.98868,Entire home/apt,300,2,22,2019-05-26,0.64,1,8 +14881637,Lovely 1 BR in Prime Location on E 26 & 3 - NYC,15310997,Mor,Manhattan,Midtown,40.76505,-73.97857,Entire home/apt,125,30,3,2019-05-04,0.09,9,0 +14881794,Nice bedroom by Riverside & Columbia University,45748188,Ali,Manhattan,Morningside Heights,40.81231,-73.95858,Private room,60,2,20,2017-08-13,0.59,1,0 +14882046,Harlem Comfort and Style,91466201,Heidi,Manhattan,Harlem,40.80697,-73.945,Entire home/apt,200,3,25,2019-06-21,0.73,1,89 +14882137,"Large, beautiful room near Bushwick",93316008,Chris,Queens,Ridgewood,40.70925,-73.91124,Private room,50,5,2,2016-09-21,0.06,1,280 +14882283,Country Manhattan Private Bedroom Suite,20912275,Gladys,Manhattan,Inwood,40.86541,-73.92106,Private room,75,5,0,,,1,0 +14882309,Sid's Victorian Peaceful Haven,92720308,Sidney,Brooklyn,Flatbush,40.64028,-73.96095,Private room,100,1,134,2019-06-19,3.95,3,307 +14883818,Cozy and close to Manhattan,93335548,Vytaute,Queens,Ridgewood,40.69901,-73.90168,Entire home/apt,50,3,111,2019-06-26,3.21,1,65 +14884030,FAIRY COTTAGE,93339266,Natasha,Queens,Long Island City,40.75253,-73.9315,Entire home/apt,150,2,0,,,1,0 +14885186,Huge Brownstone! Private Room! Clean! City in 15!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69385,-73.94413,Private room,50,3,86,2019-06-26,2.57,4,0 +14886600,"Midtown East Studio Apt ~ Private, Cozy & Bright",93373413,Meg,Manhattan,Midtown,40.75735,-73.96438,Entire home/apt,198,2,22,2019-06-30,0.64,1,8 +14887025,Upscale Furnished Studio near Union Square!!,30283594,Kara,Manhattan,Chelsea,40.74615,-73.99182,Entire home/apt,109,30,0,,,121,184 +14887088,"BEACH BLOCK IN ♡ OF ROCKAWAY, NYC",1352304,Nancy,Queens,Rockaway Beach,40.58664,-73.81295,Entire home/apt,200,3,24,2019-06-08,0.71,1,131 +14888012,Brooklyn Vibe,93392260,Kathleen,Brooklyn,East New York,40.67257,-73.89082,Private room,55,5,27,2019-06-08,0.81,2,42 +14892623,Cozy Space w/ Separate Entrance,93441980,Tanya,Staten Island,South Beach,40.59385,-74.08825,Private room,80,1,38,2019-05-05,1.10,1,308 +14894267,"Doorman, modern apart. on Broadway (Central Park)",10459594,S.,Manhattan,Upper West Side,40.79501,-73.97132,Entire home/apt,165,3,2,2017-10-17,0.06,1,0 +14899111,2 bed/2 bath floor - unique West Village townhouse,36435055,Barbara,Manhattan,West Village,40.73537,-74.00209,Entire home/apt,415,2,57,2019-07-01,1.68,2,22 +14899810,1 Bedroom in Upper East Side,57437690,Sanket,Manhattan,Upper East Side,40.77972,-73.94543,Private room,80,100,0,,,1,0 +14902084,Modern luxury apartment in downtown Manhattan,1445618,Th,Manhattan,Financial District,40.70402,-74.00776,Entire home/apt,235,3,3,2016-10-23,0.09,1,0 +14909867,"Beautiful basement apt in Forest Hills, Queens",75463219,Julia,Queens,Forest Hills,40.72,-73.85411,Private room,99,1,26,2019-06-10,0.93,1,284 +14911628,Modern 1BR Apt in the Heart Of NYC,87848042,Val,Manhattan,Hell's Kitchen,40.75611,-73.99387,Entire home/apt,180,7,17,2019-06-30,0.53,1,5 +14911767,Beautiful Park Slope apartment in great location!,3609819,Stephen,Brooklyn,Park Slope,40.66821,-73.98253,Entire home/apt,180,31,8,2019-03-04,0.23,1,179 +14912574,Spacious Living in Ditmas Park,107675,Lio & Kim And Yotam,Brooklyn,Flatbush,40.64189,-73.96066,Entire home/apt,100,3,4,2019-03-22,0.12,1,69 +14913167,"1BR on own floor, by park & subway",71093067,Matthew,Brooklyn,Crown Heights,40.67154,-73.96221,Private room,88,1,8,2016-10-23,0.23,1,0 +14913197,Serene & Clean Cuartito with Garden View,60852834,Manny & Gemma,Brooklyn,Greenpoint,40.72948,-73.94918,Private room,56,1,154,2019-06-15,4.49,2,44 +14913358,Brooklyn Gem: Stylish & Family Friendly,15670189,Evan,Brooklyn,Bedford-Stuyvesant,40.67854,-73.92321,Entire home/apt,98,2,6,2019-06-30,0.66,1,9 +14913941,Crown Heights and Cozy Self-Catering,51752700,Loretta,Brooklyn,Crown Heights,40.67564,-73.95497,Entire home/apt,93,3,48,2019-05-25,1.42,1,3 +14914048,"Spacious Private Bedroom, 10 min to Central Park",93691661,Rachel,Manhattan,Washington Heights,40.83503,-73.94166,Private room,60,2,73,2019-06-18,2.13,2,136 +14914739,Duplex apartment in the heart of Brooklyn,93699493,Andres&Ine,Brooklyn,Bedford-Stuyvesant,40.68381,-73.94346,Entire home/apt,250,3,41,2019-06-29,1.20,1,30 +14915099,Studio In Williamsburg w/ Amazing View Waterfront,7216016,Jason,Brooklyn,Williamsburg,40.7122,-73.96619,Entire home/apt,225,2,51,2019-04-21,1.51,1,0 +14915616,Spacious 3 Bedroom Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Prospect-Lefferts Gardens,40.65651,-73.95322,Entire home/apt,400,14,2,2016-10-30,0.06,4,90 +14916773,Bright Cozy Apartment next to Prospect Park,7848317,Gracelyn,Brooklyn,Windsor Terrace,40.65828,-73.98451,Entire home/apt,130,2,5,2017-07-21,0.15,2,0 +14916806,Voted “Best of Williamsburg” / 1000 sqft Loft,11227830,Logan,Brooklyn,Williamsburg,40.71865,-73.96392,Entire home/apt,249,2,43,2019-06-23,1.27,1,38 +14917475,"RENOVATED 2-Bedroom, Near subway, comfy & cosy!",93734865,Caroline,Brooklyn,Bushwick,40.68312,-73.9086,Entire home/apt,85,30,42,2019-02-28,1.24,1,355 +14917765,"Kingsbridge Heights, The Bronx, NY.",24421177,Eduardo,Bronx,Kingsbridge,40.86932,-73.90057,Private room,30,2,56,2019-06-12,1.68,1,38 +14918238,Beautiful Sunny Small Room,93743081,Sharon,Brooklyn,Bedford-Stuyvesant,40.68624,-73.95528,Private room,60,1,204,2019-07-04,5.92,1,163 +14918404,Sid's Victorian Quiet Hideaway,92720308,Sidney,Brooklyn,Flatbush,40.64018,-73.96152,Private room,80,1,97,2019-06-17,2.90,3,286 +14926631,Cozy Room Right Next to Central Park,93839620,Lisa,Manhattan,Hell's Kitchen,40.76793,-73.98561,Private room,129,1,133,2019-07-05,3.95,1,61 +14926698,DUMBO couch with A/C near the Brooklyn Bridge,2809938,Phillip,Brooklyn,Vinegar Hill,40.70156,-73.98199,Shared room,250,2,37,2019-06-06,1.09,1,83 +14928089,Beautiful room with all Amenities and gym,71176668,David,Manhattan,Harlem,40.8153,-73.93741,Private room,110,2,26,2018-10-24,0.76,4,280 +14928864,Big Room in Manhattan Apt,80957172,Richard,Manhattan,Washington Heights,40.84606,-73.93325,Private room,129,5,0,,,1,365 +14928996,1 BR in Williamsburg by Bedford Ave Station,32545798,Sasha,Brooklyn,Williamsburg,40.71449,-73.96311,Private room,75,2,8,2017-06-29,0.23,5,0 +14932887,Luxury Studio Apt Overlooking the Hudson River,30283594,Kara,Manhattan,Hell's Kitchen,40.76021,-73.99969,Entire home/apt,199,30,2,2019-05-10,0.08,121,365 +14933521,Sunny 1 Bedroom in Harlem,93020402,Esi,Manhattan,Harlem,40.81949,-73.94621,Entire home/apt,129,3,67,2019-07-01,1.96,1,0 +14933893,Cozy walk-up in The Upper East Side,60904698,Toby,Manhattan,Upper East Side,40.77334,-73.94848,Private room,75,1,3,2016-09-19,0.09,1,0 +14935001,Quaint Studio. 20 mins to City,59839625,Odi,Queens,Sunnyside,40.74211,-73.91646,Entire home/apt,105,2,48,2019-06-16,1.42,1,13 +14935151,Comfortable Bedroom near train.,69711528,Lucia,Bronx,Parkchester,40.83112,-73.87319,Private room,49,3,25,2018-06-15,0.73,2,0 +14936181,Apt with Modern Lights Available,11293255,Abdul Fattah,Brooklyn,Bedford-Stuyvesant,40.68789,-73.9575,Private room,215,3,3,2017-09-24,0.10,1,0 +14936709,Entire 1bdr Manhattan NY,55547933,KaLisa & Christian,Manhattan,Inwood,40.8604,-73.92716,Entire home/apt,85,3,4,2018-07-13,0.18,1,0 +14945219,"Sunny Art Loft in Bushwick, Brooklyn + 1 Cute Cat",5792120,Julia,Brooklyn,Bushwick,40.70708,-73.92343,Entire home/apt,102,1,44,2019-06-26,1.30,1,38 +14945274,Bronx Retreat in Contemporary Apt,32357900,Tara,Bronx,Fieldston,40.88985,-73.90747,Private room,85,2,16,2017-09-01,0.47,1,0 +14945585,"Furnished Room, with spacious backyard",94039418,Shawn,Brooklyn,Bushwick,40.69251,-73.92478,Private room,25,2,1,2016-09-12,0.03,1,0 +14946346,**East Side NYC 1 Bedroom Apt**,30283594,Kara,Manhattan,Murray Hill,40.7481,-73.97417,Entire home/apt,279,30,0,,,121,365 +14946381,A Real NYC Experience,94044308,Sydney,Manhattan,Washington Heights,40.83849,-73.93809,Private room,41,2,57,2018-01-07,1.67,1,0 +14947252,5 Star Apt / Location Full of Character,14564237,Lauren,Brooklyn,Williamsburg,40.72022,-73.95727,Entire home/apt,280,10,5,2018-09-21,0.14,1,0 +14948249,"Bright, clean and peaceful apt in Hell's Kitchen",75310263,Thomas,Manhattan,Hell's Kitchen,40.76495,-73.98964,Entire home/apt,165,5,1,2016-09-21,0.03,1,0 +14949281,"The best deal, really close to Times Square",91445933,Adam,Manhattan,Theater District,40.75863,-73.98812,Private room,40,1,163,2019-06-19,4.75,1,102 +14949923,Luxury Apartment one block from Central Park,94087334,Aimee,Manhattan,Upper West Side,40.77718,-73.98023,Private room,120,1,20,2019-06-24,0.59,1,81 +14951904,Bedroom in beautiful apt near Central Park,21679450,Vicky,Manhattan,Harlem,40.80171,-73.95871,Private room,60,7,4,2018-11-02,0.12,2,0 +14952053,Private natural light oasis with Super Host!!,93368072,Ann,Brooklyn,Cypress Hills,40.67825,-73.89416,Private room,70,1,174,2019-06-30,5.06,1,109 +14952649,"Eclectic, relaxing yet steps away from the action",94118056,Steve,Manhattan,Washington Heights,40.8419,-73.93866,Entire home/apt,130,3,10,2018-09-03,0.29,1,188 +14959161,Upper East Side 1 Bedroom Near MSK,30283594,Kara,Manhattan,Upper East Side,40.7608,-73.96032,Entire home/apt,249,30,0,,,121,364 +14959195,Huge Bedroom with Private Shower and Bathroom,67126282,Brian,Brooklyn,Bedford-Stuyvesant,40.69287,-73.94334,Private room,80,1,4,2016-11-24,0.12,1,0 +14959206,Cozy Modern Townhouse Studio Williamsburg BK,41177070,Dennis,Brooklyn,Williamsburg,40.71279,-73.94443,Entire home/apt,145,3,96,2019-06-26,2.87,2,0 +14959966,2 Bedroom in Convenient Upper East Apartment,7903711,Abby,Manhattan,Upper East Side,40.77979,-73.95379,Entire home/apt,260,2,8,2018-05-23,0.23,1,0 +14961122,Spacious studio with private garden in Brooklyn,16586817,Giorgia,Brooklyn,Bedford-Stuyvesant,40.68381,-73.91776,Entire home/apt,86,4,55,2019-05-31,1.62,1,17 +14961253,86th st express train/Private Patio/Clean One Bed,94196548,Kim,Manhattan,Upper East Side,40.77883,-73.95205,Entire home/apt,219,1,5,2017-05-21,0.16,1,0 +14963404,Bright cozy room with balcony near Prospect Park.,7848317,Gracelyn,Brooklyn,Windsor Terrace,40.65949,-73.98422,Private room,90,2,3,2017-10-21,0.11,2,0 +14963583,Room in South Harlem near Central Park,94219511,Gilles,Manhattan,Harlem,40.80167,-73.95781,Private room,70,3,3,2019-01-01,0.09,2,0 +14964655,brooklyn comfy safe near all,94232838,Joe,Brooklyn,Borough Park,40.6371,-73.99834,Private room,70,2,0,,,1,365 +14965582,Room in two bedroom apartment,94243268,Ayanna,Brooklyn,Bushwick,40.69296,-73.92092,Private room,64,1,0,,,1,83 +14966184,Stay in a beautiful apartment&experience Harlem!,9171744,Jack,Manhattan,East Harlem,40.79757,-73.94006,Private room,85,2,87,2019-06-28,2.54,1,1 +14966692,Large 1 bedroom to yourself. 1 block from subway,11685844,Joseph,Queens,Astoria,40.7609,-73.92516,Entire home/apt,125,5,2,2017-04-10,0.06,1,0 +14967790,"Master Bedroom,lots of natural and light furnished",94263025,Derek,Brooklyn,Bushwick,40.68918,-73.91217,Private room,60,1,11,2018-02-18,0.57,2,0 +14967881,Luxurious Studio by Central Park - Newly Renovated,8547368,David,Manhattan,Upper East Side,40.76404,-73.96628,Entire home/apt,225,2,84,2019-06-07,2.47,1,27 +14967994,Seaview Studio in Brooklyn New york.,94265445,Natasha,Brooklyn,Canarsie,40.63241,-73.89367,Entire home/apt,100,2,161,2019-06-26,4.78,1,327 +14968000,Spacious Comtemporary 3BR Apartment,24805685,Saif,Brooklyn,Park Slope,40.67124,-73.98625,Entire home/apt,218,2,117,2019-07-08,3.41,1,226 +14968403,"Warwick & Bethel stays at ""The Brooklyn Mansion""",49508002,Ivia,Brooklyn,Bushwick,40.69141,-73.92092,Entire home/apt,200,3,6,2018-08-27,0.22,1,194 +14968436,Gorgeous room in Historic Harlem street,16686968,Ricardo,Manhattan,Harlem,40.81041,-73.94337,Private room,55,2,114,2019-05-27,3.34,1,270 +14968939,Peaceful cove in Williamsburg!,33799659,Daniela,Brooklyn,Williamsburg,40.7119,-73.94431,Private room,90,3,17,2019-06-16,0.50,1,4 +14969217,Gorgeous brand new apartment in Bushwick,2260600,Lidia,Brooklyn,Bushwick,40.69096,-73.91055,Entire home/apt,105,5,26,2019-05-20,0.77,1,269 +14972714,Charming Harlem Townhouse Minutes from Midtown,26502234,George,Manhattan,Harlem,40.82316,-73.94478,Entire home/apt,195,7,28,2019-06-23,0.92,1,285 +14975651,"West Harlem, great location, new building!",4430266,Ashante,Manhattan,Civic Center,40.71391,-74.00624,Entire home/apt,170,2,0,,,1,19 +14976368,Cozy apt. Heart of Williamsburg NYC,4025366,Dana,Brooklyn,Williamsburg,40.71156,-73.95454,Entire home/apt,150,2,14,2019-06-15,0.41,1,363 +14976950,Brite/spacious 4bedroom/2bath next to Central Park,5162192,Amy,Manhattan,Upper West Side,40.79799,-73.96161,Entire home/apt,300,30,0,,,12,233 +14979450,Simple Spacious Apartment,21261796,John,Brooklyn,Greenpoint,40.73515,-73.95645,Entire home/apt,154,5,0,,,1,0 +14980174,"Cozy 1 bedroom in the Upper East Side, NYC",28220309,Ciro,Manhattan,Upper East Side,40.76744,-73.95901,Entire home/apt,185,4,2,2016-10-28,0.06,1,0 +14981124,Nice Private room in quiet 2 level Brownstone!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94529,Private room,50,3,63,2019-06-07,1.91,4,291 +14981522,Peaceful room in Artsy W'burg 3br,94404356,Jonathan,Brooklyn,Greenpoint,40.72151,-73.94141,Private room,70,1,39,2019-07-05,1.66,2,15 +14982260,Newly renovated 1-bm apt with a wooden deck.,10162189,Adrian,Queens,Astoria,40.76802,-73.91815,Entire home/apt,180,4,45,2019-06-30,1.32,1,351 +14982907,Comfy Private Bedroom-JFK (8 mins),74331597,Nickesha,Queens,St. Albans,40.68692,-73.76832,Private room,65,2,74,2019-05-11,2.16,5,174 +14983453,127 St & Convent Av NYC ABCD RM 3,57049951,Eliahu,Manhattan,Harlem,40.81205,-73.95273,Private room,69,2,100,2019-07-02,3.09,9,345 +14984002,"Manhattan, Times square 5* mins to Central park",65359432,Ren,Queens,Astoria,40.76326,-73.92569,Entire home/apt,500,3,3,2017-06-29,0.09,2,0 +14987023,Cozy 3rd floor room at Brooklyn&Breakfast,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67758,-73.97123,Private room,40,1,168,2019-07-06,4.91,13,309 +14987516,Musa Property,94467583,Clif,Queens,Rosedale,40.65378,-73.72582,Entire home/apt,85,2,31,2019-01-07,0.92,1,142 +14988134,"Beautiful, high-ceiling Gramercy one-bedroom",141914,Mary Catherine,Manhattan,Gramercy,40.7363,-73.98338,Entire home/apt,250,1,3,2018-12-20,0.15,1,312 +14988596,Convenient Modern 1 Bedroom Apt. Upper East Side,91545870,Michelle,Manhattan,Upper East Side,40.77357,-73.95149,Entire home/apt,69,1,99,2019-07-03,5.22,2,42 +14989532,East Harlem: Spacious 3BR,23208658,Iryna,Manhattan,East Harlem,40.79853,-73.94143,Entire home/apt,270,3,70,2019-06-16,2.06,3,255 +14989615,Cheap $45/night@15 minuets to Mahattaton,92596736,Jazzy,Queens,Elmhurst,40.74647,-73.88258,Private room,53,3,2,2019-07-07,0.06,1,358 +14991887,Brownstone Apartment on Tree Lined Street,94513501,Peter & Nora,Brooklyn,Bedford-Stuyvesant,40.68664,-73.93849,Entire home/apt,100,3,33,2019-06-23,2.12,1,166 +14992784,Prívate Cozy Room,24489871,Adriana,Queens,Forest Hills,40.73602,-73.85619,Private room,52,1,14,2017-04-16,0.43,2,249 +14994076,Dominiques NYC 4Bedrm crashpad**Stay here**metro,310670,Vie,Bronx,Eastchester,40.88207,-73.83538,Entire home/apt,299,2,2,2019-05-21,0.18,13,358 +14994367,Doorman Huge Studio Laundry 5167,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76748,-73.98609,Entire home/apt,175,30,1,2017-07-31,0.04,96,311 +14995212,Cozy private room near the Bronx Zoo,94553067,Maria,Bronx,Bronxdale,40.85499,-73.86728,Private room,43,4,10,2017-01-03,0.30,1,88 +14995382,Large Victorian in Brooklyn - Downstairs 2 Beds,94555248,Beryl,Brooklyn,East Flatbush,40.63948,-73.95008,Private room,50,1,35,2019-06-16,1.03,2,365 +14996256,Lovely Guestroom in Elevator Building,92322271,Mark,Brooklyn,Crown Heights,40.67059,-73.94798,Private room,88,2,0,,,2,0 +15001872,Cozy Convenience in Bushwick,91997718,Donna,Brooklyn,Bushwick,40.69078,-73.92167,Private room,70,1,109,2019-06-30,3.19,1,364 +15003711,@BrooklynWhisky's: Birdsnest-Guest Room,62345,Jaye (And Spike),Brooklyn,South Slope,40.66211,-73.98594,Private room,78,1,80,2019-06-26,2.44,1,30 +15003721,Large Victorian in Brooklyn - Downstairs 1 Bed,94555248,Beryl,Brooklyn,East Flatbush,40.64004,-73.94933,Private room,50,1,43,2019-06-20,1.26,2,266 +15003930,Best Upper East Side Studio,15310997,Mor,Manhattan,Upper East Side,40.77395,-73.95248,Entire home/apt,200,30,4,2019-02-02,0.17,9,364 +15004091,Cozy convenient Williamsburg bedrm!,50688724,S.A.,Brooklyn,Williamsburg,40.7065,-73.95568,Private room,60,3,76,2019-06-21,2.24,2,89 +15005115,Sunny and quiet Chinatown gem,440145,Saralena,Manhattan,Civic Center,40.71342,-73.99929,Entire home/apt,150,2,8,2018-12-29,0.23,1,58 +15008979,Cozy Room near Casino and Metro,94707512,Elvin,Queens,Ozone Park,40.67238,-73.83909,Private room,75,1,212,2019-06-30,6.19,1,164 +15009556,Modern & sunny 2BR Apt - 25 min to Manhattan,4522961,Roselle,Brooklyn,Sunset Park,40.66005,-73.99204,Entire home/apt,150,4,123,2019-06-22,3.61,1,101 +15009618,Huge private bedroom in the heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76408,-73.98996,Private room,129,1,98,2019-05-12,2.87,3,27 +15009751,1 Bedroom 1 Bathroom with Ralph Lauren City Vibe,20317929,Lisa,Manhattan,Upper West Side,40.77794,-73.9763,Entire home/apt,220,2,24,2019-06-10,0.70,1,207 +15016495,"Renting a bedroom, 1 week minimum",94777797,Maya,Brooklyn,Sunset Park,40.64925,-74.01147,Private room,60,7,0,,,1,88 +15016999,Crown Heights 1-Bedroom Near Parks and Museum,94782931,Joe,Brooklyn,Crown Heights,40.66692,-73.95205,Entire home/apt,105,1,7,2019-06-19,0.21,1,6 +15018397,Peaceful Room in Dumbo Art Loft Too,37723496,Anna,Brooklyn,DUMBO,40.70426,-73.98633,Private room,125,2,98,2019-06-29,2.88,2,164 +15018646,★1 BR DELUXE★ Near Grand Central Station -Midtown,64065593,ResortShare5,Manhattan,Midtown,40.75233,-73.97137,Private room,378,2,1,2017-09-22,0.05,13,285 +15019436,"Private Room in 3bdm, Astoria",61675294,Blake,Queens,Astoria,40.75692,-73.9293,Private room,61,2,15,2017-01-28,0.44,1,0 +15019959,Amazing huge furnished room!,445894,Alexa,Queens,Elmhurst,40.74596,-73.87762,Private room,60,2,0,,,2,66 +15021635,Cute private bedroom in Bushwick. Close to subway.,61140228,Nadia,Brooklyn,Bushwick,40.7005,-73.9144,Private room,75,2,2,2018-12-22,0.29,1,0 +15021783,Private Room in Chelsea 3 BR,94820583,Zoë,Manhattan,Chelsea,40.74063,-73.99843,Private room,80,5,2,2016-10-29,0.06,1,0 +15022347,Yankee Haven,94034963,Leah,Manhattan,Harlem,40.82986,-73.93965,Entire home/apt,151,2,0,,,1,0 +15024645,Huge Historic Brooklyn Loft Minutes From Manhattan,93350397,Jody,Brooklyn,Williamsburg,40.71933,-73.95993,Entire home/apt,259,1,157,2019-06-23,4.58,1,155 +15024889,WARM AND CHARMING 2 BED APARTMENT,26924376,Lucy,Queens,Ozone Park,40.68285,-73.85248,Entire home/apt,70,5,17,2019-06-29,0.49,1,331 +15025988,Cozy Lofted Bedroom in East Williamsburg,94864882,Hanley,Brooklyn,Williamsburg,40.70661,-73.93584,Private room,60,1,1,2016-10-01,0.03,1,0 +15026994,A large private room with indoor garden,46073068,Anu-Raga,Queens,Long Island City,40.76117,-73.92847,Private room,65,3,37,2019-05-11,1.09,1,18 +15027024,Newly renovated 1bd on lively & historic St Marks,8344620,Ethan,Manhattan,East Village,40.72693,-73.98385,Entire home/apt,180,3,10,2018-12-31,0.30,1,0 +15028194,"Stylish, Comfortable, and Affordable in Brooklyn",5957027,Zachary,Brooklyn,Crown Heights,40.67667,-73.9175,Entire home/apt,180,2,126,2019-06-14,3.74,1,74 +15031599,Lovely Cozy private room with own Television,52577963,Mark,Queens,Woodhaven,40.69626,-73.8488,Private room,45,5,15,2018-12-31,0.44,6,238 +15032254,Mid-town West/Private room/shared bath,78022684,Pamela,Manhattan,Midtown,40.76485,-73.98121,Private room,112,2,1,2017-05-08,0.04,2,0 +15033685,Authentic Living in Manhattan,6250141,Shelley,Manhattan,Upper West Side,40.78074,-73.97849,Entire home/apt,168,1,138,2019-06-22,4.08,1,32 +15034150,34th street &6th ave.! Doorman Gym Studio 5220,16098958,Jeremy & Laura,Manhattan,Midtown,40.75034,-73.9878,Entire home/apt,250,30,0,,,96,311 +15034827,Greenpoint One Bedroom,46483041,Erin,Brooklyn,Greenpoint,40.73379,-73.95461,Entire home/apt,130,1,13,2017-03-18,0.38,1,0 +15034950,"Large Scandinavian inspired room, Great light",16539899,Kevin,Brooklyn,Bedford-Stuyvesant,40.6892,-73.9506,Private room,50,1,0,,,1,0 +15035050,HEART OF SOHO UPDATED 1 BR,61391963,Corporate Housing,Manhattan,Nolita,40.72332,-73.99466,Entire home/apt,142,30,7,2019-03-26,0.24,91,66 +15035565,"Huge 2 Bedroom, Great Location, Express Metro",9671470,Jacob,Manhattan,Harlem,40.81438,-73.95183,Entire home/apt,199,4,6,2018-05-08,0.19,2,0 +15036330,Cozy Bedroom close to major subway lines!,3416935,Joy,Manhattan,Harlem,40.83043,-73.94672,Private room,60,1,5,2018-09-16,0.15,1,5 +15036516,Cozy Bedroom in an Awesome location,62604251,Jasmine,Brooklyn,Bedford-Stuyvesant,40.69467,-73.94833,Private room,45,3,0,,,1,0 +15036809,Private bedroom and bath heart of Upper West Side,94975490,Jessica,Manhattan,Upper West Side,40.78766,-73.97414,Private room,85,2,19,2018-06-19,0.60,1,0 +15037251,PRIVATE ENTIRE FLOOR -NEXT TO Central PARK !,94974597,Desi,Manhattan,Upper West Side,40.77201,-73.97994,Private room,99,3,123,2019-07-01,3.72,1,246 +15037461,Williamsburg Couch on a Budget,1207773,Trista,Brooklyn,Williamsburg,40.70719,-73.95927,Shared room,37,1,12,2018-09-18,0.35,2,362 +15037640,South Brooklyn Home for Wayward Grrls,144705,Deanna,Brooklyn,Kensington,40.64552,-73.97824,Private room,40,1,1,2016-09-21,0.03,1,0 +15038469,Prime Park Slope Room (10 min. train to Lower NYC),62587696,Andrew,Brooklyn,Gowanus,40.67127,-73.99006,Private room,45,2,97,2019-06-21,2.92,2,80 +15039238,Comfortable 1 and 1/2 Bedroom With Private Patio,9472223,Arthur,Manhattan,Harlem,40.80555,-73.95706,Entire home/apt,77,5,19,2019-01-01,0.56,3,1 +15040421,"Private Cozy, Comfy & Bright Room!",8048355,Vivian,Manhattan,East Harlem,40.79639,-73.9347,Private room,55,7,3,2019-05-15,0.09,1,215 +15041647,Private Bedroom in NYC w/ SUPERHOST.,69117812,Nixie & Hai,Queens,Corona,40.73702,-73.857,Private room,60,1,105,2019-07-03,3.07,1,347 +15041998,Spacious Bedroom in TriBeCa,95033682,Anna,Manhattan,Civic Center,40.71727,-74.00335,Private room,95,3,0,,,1,189 +15042314,"Huge, Sunny Apartment on Bushwick/Bed Stuy Border!",37435755,Ryan,Brooklyn,Bedford-Stuyvesant,40.69377,-73.9307,Entire home/apt,40,2,8,2019-07-06,0.24,1,10 +15042361,Airports Sleep Inn,57023844,Karlene,Queens,Jamaica,40.6871,-73.77887,Private room,68,3,16,2019-01-03,0.47,2,359 +15043180,Cozy 1 BD in lovely Bedstuy Apartment,95045653,Vanessa,Brooklyn,Bedford-Stuyvesant,40.68474,-73.93833,Private room,85,7,1,2016-09-19,0.03,1,0 +15043534,Private room in Sunnyside 2 46th St,84607966,Nurcan,Queens,Sunnyside,40.73912,-73.92075,Private room,55,1,168,2019-07-01,4.93,3,322 +15043788,Private Room in Sunnyside 3,84607966,Nurcan,Queens,Sunnyside,40.73908,-73.9203,Private room,45,1,134,2019-07-01,3.93,3,308 +15043817,Private room in Sunnyside 1,84607966,Nurcan,Queens,Sunnyside,40.7385,-73.91993,Private room,50,1,143,2019-05-29,4.25,3,323 +15048516,Full 1-bedroom near subway into midtown Manhattan,16323240,Oliver,Queens,Sunnyside,40.74651,-73.92283,Entire home/apt,54,3,29,2019-06-15,0.93,2,0 +15049253,Queens Comfy Private Room (JFK-8mins) with porch,74331597,Nickesha,Queens,St. Albans,40.68511,-73.76884,Private room,70,2,125,2019-05-21,3.65,5,365 +15050044,"1 private bdrm in Times Sq NYC, luxury building",4430657,Claudia,Manhattan,Hell's Kitchen,40.75842,-73.99276,Private room,60,2,0,,,1,0 +15050192,Private w/Backyard in Heart of Brooklyn,95117581,Michael,Brooklyn,Bedford-Stuyvesant,40.68201,-73.95553,Entire home/apt,150,30,6,2016-12-31,0.18,1,0 +15051958,XLarge 1BR apartment in EastVillage,79369918,Bill,Manhattan,East Village,40.73213,-73.98517,Entire home/apt,249,5,24,2018-12-30,0.71,1,17 +15052056,Entire APT in Center of Park Slope Brooklyn,83171661,Yuichi,Brooklyn,South Slope,40.66752,-73.9849,Entire home/apt,90,6,2,2017-08-28,0.06,3,0 +15052112,"FLATIRON""""GRAND PANORAMA""""LUXURY~3 BR W/Roof Deck",57552512,Emanuel,Manhattan,Midtown,40.74296,-73.98691,Entire home/apt,584,5,89,2019-04-12,2.62,1,179 +15052156,Doorman Gym 2 Beds Luxury Building!5211,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74404,-73.97217,Private room,135,30,2,2017-03-31,0.07,96,303 +15052455,"XL Sunny, NYC Flat Close to Train, Cafes & Shops",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95578,Private room,55,2,41,2019-05-28,1.25,4,83 +15052971,"East 12th street, Lux 1bd in Greenwich Village**",22541573,Ken,Manhattan,East Village,40.73193,-73.99126,Entire home/apt,267,30,1,2017-07-30,0.04,87,356 +15053143,Gigantic 2-Story Skylight Loft—2 Blocks To Subway,8726843,Adam,Manhattan,East Harlem,40.79577,-73.9362,Entire home/apt,350,3,85,2019-07-01,2.50,1,175 +15053369,Art Gallery 1BD - Heart of East Village,95143048,Jeffree,Manhattan,East Village,40.72522,-73.9873,Entire home/apt,99,2,41,2017-10-14,1.24,2,23 +15053461,"Home 4 Medical Professionals- The ""Fasciculation""",26377263,Stat,Queens,Edgemere,40.59324,-73.77288,Private room,40,30,1,2017-08-05,0.04,43,354 +15054327,"Home 4 Medical Professionals - The ""Crepitus""",26377263,Stat,Queens,Edgemere,40.59304,-73.77339,Private room,40,30,0,,,43,313 +15054617,"Home 4 Medical Professionals - The ""Syncope""",26377263,Stat,Queens,Edgemere,40.59517,-73.77236,Private room,43,30,2,2019-02-09,0.07,43,306 +15054630,"Clean, large, private R room with queen sized bed",42561290,Carla,Brooklyn,East New York,40.66136,-73.8678,Private room,45,2,38,2019-02-11,1.24,4,159 +15056050,ENTIRE Cozy 1BR apt. 5 min from Q/B train,15198834,Leandro,Brooklyn,Flatbush,40.64837,-73.9618,Entire home/apt,88,4,8,2018-08-20,0.24,1,0 +15056492,GIGANTIC Beautiful Bedroom in LES Apartment,5330919,Rick,Manhattan,Chinatown,40.71676,-73.99369,Private room,90,20,0,,,1,188 +15056538,"Sixth Ave Chelsea, Studio Serviced Apt*",22541573,Ken,Manhattan,Chelsea,40.74481,-73.99264,Entire home/apt,225,30,0,,,87,236 +15056748,"Sunny private bedroom in Bushwick, Brooklyn",20598700,Natalia,Brooklyn,Bushwick,40.70015,-73.92507,Private room,40,1,5,2017-06-30,0.15,1,0 +15057686,"Home 4 Medical Professionals - The ""Parasthesia""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68785,-73.95046,Private room,54,30,0,,,43,285 +15057717,Master Bedroom— Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74653,-73.9739,Private room,115,1,15,2018-10-14,0.44,3,7 +15057784,Furnished Battery Park Apartment,80603103,Gary,Manhattan,Battery Park City,40.70707,-74.01702,Entire home/apt,105,30,0,,,1,0 +15058410,Spacious 1BD Luxurious room in Queens NYC,95101238,David,Queens,Ozone Park,40.68287,-73.85981,Private room,65,2,41,2019-06-03,1.20,1,353 +15059292,HUGE ROOM IN CENTER CITY! AMAZING LOCATION!,95205288,Anush,Manhattan,Midtown,40.76276,-73.97652,Private room,110,4,32,2019-06-17,0.94,1,167 +15060262,Amazing Brooklyn Townhouse Studio,34126778,Kwame,Brooklyn,Bedford-Stuyvesant,40.6898,-73.93746,Private room,99,7,0,,,1,72 +15062944,"Private full bed, prime location",10737943,David,Manhattan,Upper West Side,40.78017,-73.97574,Private room,47,30,10,2019-05-28,0.31,10,342 +15064512,The Center of NYC,24561882,Todd,Manhattan,Greenwich Village,40.73499,-73.99254,Private room,150,2,36,2019-06-09,1.06,1,13 +15065696,Spacious Williamsburg 2 Bedroom w/ Balcony & W/D,2805553,Diana,Brooklyn,Williamsburg,40.71096,-73.95685,Entire home/apt,249,6,49,2018-11-30,1.46,1,0 +15066466,★ Unreal Loft w/ Huge Private Roofdeck ★,83909332,David,Manhattan,Nolita,40.72222,-73.99545,Entire home/apt,225,2,15,2017-05-07,0.44,1,0 +15066701,"Huge, modern 3-bed 2-bath, 20mins from Manhattan",29637078,Chris,Brooklyn,Bedford-Stuyvesant,40.68881,-73.9497,Entire home/apt,195,2,128,2019-06-25,3.77,1,93 +15066761,Serene private room in chic Astoria apartment,72572525,Samantha,Queens,Astoria,40.76145,-73.92273,Private room,90,3,6,2017-10-23,0.18,2,10 +15067291,Manhattan Private Room with a Garden view (Room 2),45913415,Grisula,Manhattan,Harlem,40.8117,-73.94563,Private room,64,3,97,2019-07-05,2.90,2,272 +15068067,Historic Serene Chelsea Brownstone 2.5 Bed,9035097,Alex,Manhattan,Chelsea,40.74787,-74.00088,Entire home/apt,750,30,42,2019-01-04,1.24,1,281 +15069131,Walk to Yankee Stadium; revel in the atmosphere.,8815256,Thomas,Bronx,Concourse Village,40.82974,-73.92092,Entire home/apt,159,1,0,,,1,89 +15069259,Cozy Room in Historic BedStuy,57793192,Daniel,Brooklyn,Bedford-Stuyvesant,40.69264,-73.94267,Private room,59,3,0,,,1,0 +15071519,Sunlight + Space on Eastern Parkway,73046105,Yosef And Chava,Brooklyn,Crown Heights,40.67046,-73.94156,Entire home/apt,105,2,4,2016-12-05,0.12,1,0 +15073369,Lovely West Village Apt. Avail: May 25 - June 26,1678050,Liam,Manhattan,West Village,40.72989,-74.00541,Entire home/apt,215,30,16,2017-05-16,0.48,2,0 +15074005,"Home 4 Medical Professionals - The ""Trigeminal""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68943,-73.95186,Private room,54,30,0,,,43,328 +15079046,Quiet Clean and Charming! Entire Apt Fri-Sun!,43825948,Jeanie,Manhattan,Inwood,40.86582,-73.92582,Private room,79,4,26,2019-05-24,0.78,1,238 +15079215,Stay in Solar Powered Apartment in NYC!!!,2402292,Tamara,Queens,Long Island City,40.75957,-73.92863,Entire home/apt,155,2,95,2019-06-19,2.86,1,309 +15080267,"Huge Brownstone,Private Garden- Pet chicks & eggs.",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69059,-73.95602,Private room,99,3,20,2019-02-12,0.61,4,90 +15080936,"Home 4 Medical Professionals- The ""Tamponade""",26377263,Stat,Brooklyn,Bedford-Stuyvesant,40.68979,-73.95048,Private room,57,30,1,2017-10-07,0.05,43,216 +15080994,Cozy room in Times Square .,95419310,Felipe,Manhattan,Hell's Kitchen,40.76276,-73.98942,Private room,140,2,105,2018-12-15,3.09,1,0 +15081440,Eco private room for 4 best location to Mahanttan,92493393,Eddie & Lois,Staten Island,West Brighton,40.63215,-74.11403,Private room,69,2,56,2019-01-04,1.80,5,355 +15081663,"Large beautiful studio loft, high floor, views!",1998560,Jesse,Manhattan,Hell's Kitchen,40.76714,-73.98777,Entire home/apt,150,14,0,,,1,0 +15082723,"Williamsburg Private Room, Outdoor Space w/grill",33677512,Joseph,Brooklyn,Williamsburg,40.71204,-73.9656,Private room,95,3,29,2019-07-08,0.85,1,0 +15082930,"Beautiful, quiet, light-filled 1-bdrm apt",4169040,Elias,Brooklyn,Williamsburg,40.71111,-73.96299,Entire home/apt,150,4,12,2018-11-30,0.37,1,5 +15083267,Bedroom in the heart of NYC,3660702,Greg,Manhattan,Chelsea,40.74587,-73.99149,Private room,110,1,200,2019-06-19,5.87,4,60 +15083571,"Spacious 2 bdrm Apt. in the center of NYC, Apt 4C",17770287,Nina,Manhattan,Midtown,40.74949,-73.98277,Entire home/apt,175,30,5,2018-08-10,0.16,14,326 +15083823,Artists rustic 2 Room studio in Red Hook,7018895,Risha,Brooklyn,Red Hook,40.67748,-74.00989,Entire home/apt,85,2,132,2019-07-03,3.91,1,244 +15085230,Bright 1 Bedroom Apt Near Attractions and Transit,5437444,Panthea,Bronx,Bronxdale,40.85401,-73.86594,Entire home/apt,76,7,24,2018-08-24,0.71,1,0 +15085833,Brand New 1 Bedroom NYC Apartment & Outside Space,5525273,Bryan,Manhattan,Harlem,40.80466,-73.95582,Entire home/apt,399,3,1,2017-01-22,0.03,1,364 +15086143,$89.00 Queen Size Bed,95471771,Lynne,Queens,Jamaica,40.67537,-73.77355,Private room,79,1,5,2018-09-07,0.16,2,179 +15086862,Beautiful sunlight room in the heart of Bushwick!,2801522,Alina,Brooklyn,Bushwick,40.69935,-73.91332,Private room,41,4,4,2018-01-02,0.16,1,189 +15087285,Comfy Room in East Flatbush,77778146,Andre,Brooklyn,Flatlands,40.62979,-73.94431,Private room,85,1,2,2017-09-17,0.09,8,189 +15087746,Big Suite in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66684,-73.94753,Private room,120,30,8,2019-01-01,0.23,8,340 +15087800,Private Bedroom in Queen -JFK 8mins,74331597,Nickesha,Queens,St. Albans,40.68461,-73.76899,Private room,65,1,98,2019-06-23,2.87,5,180 +15088024,Cozy Private Room for Eager Travelers! :D,49807429,Russell,Brooklyn,Prospect-Lefferts Gardens,40.65916,-73.95074,Private room,54,3,169,2019-07-02,4.98,1,136 +15088367,"CLASSIC BRICK BROOKLYN. Rooftop, plants, books...",7834564,Rebecca,Brooklyn,Crown Heights,40.67415,-73.95627,Private room,60,4,2,2018-08-28,0.06,1,14 +15090815,The comfy spot away from home,89873907,Christine,Brooklyn,Cypress Hills,40.68004,-73.88709,Private room,51,3,0,,,1,317 +15094172,Spacious Sun Light Studio in Heart of Williamburg.,95552798,Susan,Brooklyn,Williamsburg,40.7176,-73.96148,Entire home/apt,250,3,19,2018-10-01,0.57,1,7 +15095005,"Charming, Cozy & Convenient 1 Bd Apartment",24696055,Pavle,Brooklyn,Park Slope,40.67634,-73.98311,Entire home/apt,125,14,10,2018-06-30,0.30,1,20 +15095408,One bedroom in luxury FiDi building,17423162,Rishab,Manhattan,Financial District,40.7083,-74.01406,Private room,80,5,1,2017-01-01,0.03,1,0 +15095439,Comfortable Harlem NYC 1 Bedroom Near Trains,43299076,Toyce,Manhattan,Harlem,40.82367,-73.93762,Entire home/apt,105,2,3,2017-08-13,0.09,1,0 +15095589,"Comfortable Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.65651,-74.0029,Private room,60,2,34,2019-06-13,1.00,2,181 +15095808,Cozy Getaway Rental Home,85202728,Lourdes,Queens,Holliswood,40.72468,-73.76681,Private room,239,3,11,2019-06-30,0.52,1,135 +15098153,Huge apartment in a beautiful house in Greenpoint,7694993,Charles,Brooklyn,Greenpoint,40.72596,-73.94643,Entire home/apt,200,3,8,2018-12-07,0.24,1,0 +15098355,Fantastic view of the Hudson river -1 Bedroom,23303311,Sandrine,Manhattan,Hell's Kitchen,40.76133,-73.99744,Entire home/apt,250,3,1,2016-10-15,0.03,1,158 +15098786,Cozy One Small Bedroom Soho House,95599073,Sarah,Manhattan,SoHo,40.72688,-74.0022,Entire home/apt,200,3,79,2019-06-23,2.33,1,28 +15099149,Brooklyn Space with Balcony!,16641600,Theresa,Brooklyn,Sunset Park,40.66303,-73.99431,Private room,75,10,13,2019-06-23,0.40,2,302 +15099669,Lower East Side large 1 bedroom,95608415,Cory,Manhattan,Lower East Side,40.71975,-73.98608,Entire home/apt,225,1,2,2016-10-20,0.06,1,0 +15100256,Central Park Vacation,22772389,Shane,Manhattan,Upper West Side,40.78492,-73.97992,Private room,110,2,41,2019-05-20,1.21,1,89 +15100760,Rockaway Beach House,22611054,Glenn,Queens,Arverne,40.58792,-73.80062,Private room,75,2,8,2019-05-18,0.68,1,67 +15100883,New york Multi-unit building,95623284,Pablo,Bronx,Fordham,40.86533,-73.89713,Private room,40,3,1,2018-09-24,0.10,1,179 +15101577,"Beautiful New Studio, perfect for couples!",278624,Joshua,Brooklyn,Fort Greene,40.69415,-73.97131,Entire home/apt,100,3,26,2018-05-04,0.76,1,0 +15102026,Large private bed/bath in 3BR close to transit,19983675,Ian,Brooklyn,Bedford-Stuyvesant,40.68678,-73.94467,Private room,55,2,3,2016-10-29,0.09,1,0 +15106603,Beautiful and Quiet Upper West Side Escape,9280524,Greg,Manhattan,Upper West Side,40.79778,-73.97232,Entire home/apt,185,2,1,2016-10-23,0.03,1,0 +15107136,GAMBA Z's Artist Residency for Traveling Artists,19187413,Melissa,Brooklyn,Williamsburg,40.70547,-73.93747,Private room,60,20,0,,,2,363 +15107952,"Cute, Sun filled Sudio Apartment in Manhattan",95467310,Karen,Manhattan,Midtown,40.74371,-73.98454,Entire home/apt,165,3,57,2019-04-28,1.70,1,157 +15110120,Great Location! Brooklyn Heights One Bedroom,3186019,Philippe,Brooklyn,Brooklyn Heights,40.69293,-73.99113,Entire home/apt,188,2,25,2019-06-27,0.74,1,30 +15111011,"Bright, Modern, Clean, Spacious, Brooklyn Home",25262268,Elaine,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95411,Entire home/apt,140,3,62,2019-06-26,1.88,1,275 +15111300,"Immaculate & Spacious Home - Astoria, Queens",95727501,Lydia,Queens,Long Island City,40.7579,-73.93052,Entire home/apt,115,2,5,2017-10-09,0.15,1,66 +15113377,"PH Cozy, Clean, Close to Everything",64821734,Whit,Brooklyn,Crown Heights,40.67933,-73.96219,Entire home/apt,150,2,16,2017-08-06,0.48,1,35 +15113479,3BR/2 bath/Duplex+YARD/Near Columbia/City College,79321760,Migdalia,Manhattan,Harlem,40.82158,-73.95592,Entire home/apt,300,4,69,2019-06-16,2.05,1,110 +15114181,Spacious Room In Luxury NYC Apartment,39300337,Maya,Manhattan,Murray Hill,40.74968,-73.97665,Private room,132,4,10,2019-07-05,0.57,2,364 +15114265,"★ UES | Cozy bedroom near LGA, free coffee & tea!",82143608,Eric,Manhattan,East Harlem,40.78762,-73.94303,Private room,95,1,78,2019-07-02,2.33,2,74 +15114433,Room In Gorgeous Gut Renovated NY Apartment,39300337,Maya,Manhattan,Murray Hill,40.74825,-73.97673,Private room,85,5,3,2019-01-14,0.17,2,364 +15114512,For all classical lover's 3@,95765103,Glory,Brooklyn,Sheepshead Bay,40.60892,-73.96221,Private room,65,3,14,2018-11-11,0.41,2,156 +15114550,"Spacious, Clean and Comfy 2 Bedroom",95766078,Alex,Brooklyn,Bedford-Stuyvesant,40.68385,-73.9523,Entire home/apt,150,2,66,2019-06-30,2.01,2,55 +15114715,Room in Bushwick Loft,36893255,Juliet,Brooklyn,Williamsburg,40.70623,-73.92808,Private room,100,4,12,2018-03-15,0.42,1,0 +15114935,Beautiful apt up in the heights,31070690,Shachar,Manhattan,Washington Heights,40.83839,-73.93819,Private room,119,2,12,2018-09-02,0.36,1,124 +15115143,46st Cozy Flat Midtown/Tms Squr/Javits Ctr/Pier 97,87565263,Clark,Manhattan,Hell's Kitchen,40.76338,-73.99552,Entire home/apt,200,3,170,2019-07-02,4.99,1,82 +15115382,Private Guestroom in Landmark Bklyn Brownstone,24155326,Mark Winston,Brooklyn,Crown Heights,40.67619,-73.94936,Entire home/apt,90,1,222,2019-06-25,6.61,1,32 +15115532,Cozy Duplex Studio in Manhattan,8832035,Dalibel,Manhattan,Kips Bay,40.7401,-73.98123,Entire home/apt,163,2,9,2019-01-01,0.27,1,0 +15116599,Greyhound Manor - 2 fullbd beds and private bathrm,87073939,Carol,Brooklyn,Bedford-Stuyvesant,40.68237,-73.92258,Private room,68,2,92,2019-07-02,3.17,2,139 +15122925,Sweet 2 Bedroom In South BK,15239415,Steven,Brooklyn,Bensonhurst,40.61238,-73.99805,Entire home/apt,100,3,54,2019-06-13,1.72,1,61 +15125599,Beautiful One Bedroom Apartment Near Central Park,3191545,Kyle,Manhattan,Theater District,40.761,-73.98522,Entire home/apt,169,30,5,2017-06-25,0.15,23,365 +15126304,Cozy studio,10209118,Emre,Manhattan,Upper East Side,40.77336,-73.95054,Entire home/apt,105,3,0,,,1,0 +15126360,"Live Like a NYer - small space, dope neighborhood",5424751,Joi,Manhattan,Midtown,40.75645,-73.97828,Entire home/apt,475,1,0,,,1,364 +15126483,Kitschy Corner Bedroom on a Friendly Astoria Block,4811900,Bridget,Queens,Ditmars Steinway,40.77021,-73.90947,Private room,70,2,59,2019-05-27,1.77,2,232 +15126686,Guest bedroom off of 30th ave,95886123,Melissa,Queens,Astoria,40.7656,-73.92293,Private room,90,1,43,2019-05-26,1.28,2,331 +15126948,"Large & Nice, Bright 1 Bdrm in East Village, NYC",23089531,Caitlin,Manhattan,East Village,40.72609,-73.98795,Private room,100,2,74,2019-06-24,2.20,3,62 +15128456,Clean room with private bathroom in Bushwick!,658618,Leticia,Brooklyn,Bushwick,40.69025,-73.91251,Private room,65,1,23,2019-06-21,0.69,1,290 +15129261,STUDIO NEAR UPPER EAST SIDE HOSPITALS- MODERN,25237492,Juliana,Manhattan,Upper East Side,40.76095,-73.96143,Entire home/apt,110,30,10,2018-10-22,0.34,34,277 +15130158,Spacious 1 Bdrm in Queens w Manhattan views,95913669,Ali,Queens,Maspeth,40.73834,-73.90774,Private room,46,1,1,2016-09-26,0.03,1,0 +15131279,Gorgeous Bedroom in Brooklyn,92237522,Amaru,Brooklyn,Flatbush,40.63714,-73.95316,Private room,40,3,28,2019-06-15,2.64,2,54 +15131952,1 Bedroom in a shared space with AC & garden.,50546859,Maria,Brooklyn,Bushwick,40.68342,-73.90993,Private room,80,1,19,2019-06-30,0.58,1,88 +15132151,1 bedroom apartment in great neighborhood,95939781,Sharan,Manhattan,Murray Hill,40.74438,-73.97365,Entire home/apt,249,1,1,2016-09-22,0.03,1,0 +15132221,A great room on the Upper East Side,14409957,Alex,Manhattan,Upper East Side,40.77511,-73.9553,Private room,110,3,7,2018-04-18,0.26,1,0 +15133055,Sunny Bushwick room & bed with exposed brick wall,95949907,Nathaniel,Queens,Ridgewood,40.70512,-73.91386,Private room,48,1,6,2019-05-31,2.90,1,158 +15133087,Bright room in Brooklyn historic district,17840677,Jazzy,Brooklyn,Crown Heights,40.67019,-73.9318,Private room,50,2,77,2019-06-23,2.30,1,3 +15133612,"Beautiful 2BR Apt, 1 Min Walk to Major Subway!",68082479,Sunshine,Brooklyn,East New York,40.67293,-73.89548,Entire home/apt,135,30,68,2019-05-14,2.01,2,247 +15133721,"A Clean, Quite, Great room for NY visit.",95936966,Yenpo,Queens,Forest Hills,40.71871,-73.8532,Private room,59,3,9,2017-02-19,0.27,1,95 +15133923,Private bedroom & bath/Times Square & Central Park,78022684,Pamela,Manhattan,Midtown,40.7641,-73.97989,Private room,149,2,24,2017-06-19,0.71,2,0 +15133972,Friendly and kind!Clean and safe!Best hostel ever!,95958773,Maryna,Brooklyn,Brighton Beach,40.57608,-73.9614,Shared room,35,1,34,2019-06-01,1.01,3,343 +15134876,Lovely studio 2 min walk to train/ subway C),74179880,Silvia,Brooklyn,East New York,40.67502,-73.89004,Entire home/apt,85,3,33,2019-04-14,0.97,8,356 +15140447,NYC 1 bed - Uptown - Steps away from train,48814097,Erica,Manhattan,Washington Heights,40.85797,-73.93286,Entire home/apt,120,4,13,2019-04-21,0.39,1,42 +15140627,Stunning 4 Bed Tribeca Penthouse w/ Huge Terrace!,30283594,Kara,Manhattan,Tribeca,40.72125,-74.00691,Entire home/apt,894,30,0,,,121,280 +15141661,New Development Prime Soho 2 Bedroom Apartment,30283594,Kara,Manhattan,SoHo,40.7249,-74.00105,Entire home/apt,643,30,0,,,121,249 +15141938,In a Chelsea loft: A PERFECT private room & bath,79289737,Yochi,Manhattan,Chelsea,40.74348,-73.99365,Private room,180,1,205,2019-07-05,6.07,1,90 +15142409,Union Square - Interior designer - Private 1 bdr,96024343,Julie,Manhattan,Gramercy,40.73405,-73.98862,Entire home/apt,299,1,103,2019-06-30,3.11,1,335 +15142578,Sunny bedroom in AMAZING LOCATION Williamsburg,6103075,Aviva,Brooklyn,Williamsburg,40.71435,-73.96336,Private room,60,14,1,2017-09-30,0.05,1,341 +15144105,Cosy room in Brooklyn Apartment,75458749,Beck,Brooklyn,Flatbush,40.64026,-73.95347,Private room,45,3,2,2016-10-19,0.06,2,0 +15144127,Sunny and Spacious Room in Sunset Park Apartment,23495738,Jesse,Brooklyn,Sunset Park,40.64487,-74.00893,Private room,50,1,49,2019-06-30,1.44,1,90 +15145285,UES charm,21255768,Breanne,Manhattan,Upper East Side,40.77962,-73.95069,Entire home/apt,300,1,0,,,1,0 +15147021,Big 2 Bedroom house w/ private yard. Graham L Stop,1903495,Pete,Brooklyn,Williamsburg,40.71411,-73.94402,Entire home/apt,151,2,13,2018-08-28,0.41,1,188 +15147943,303 1,96080998,Hector,Brooklyn,Downtown Brooklyn,40.69569,-73.98249,Private room,139,1,0,,,1,0 +15149137,Private Blu Penthouse Brownstone 1 BR Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.8155,-73.94578,Entire home/apt,160,5,102,2019-07-03,3.04,4,118 +15149187,Master bedroom in the heart of Greenpoint!,6314010,Kevin,Brooklyn,Greenpoint,40.72679,-73.94838,Private room,55,2,51,2017-09-26,1.52,1,0 +15149560,"Private, cozy room in the Center of Manhattan",13442714,Nuan,Manhattan,SoHo,40.72058,-73.99807,Private room,120,3,21,2019-06-15,0.63,2,82 +15149591,1 BDRM in Wyndham Midtown 45 *Great Location!,96098402,Wynpoints,Manhattan,Midtown,40.75376,-73.97132,Private room,699,3,4,2016-12-18,0.12,12,365 +15150240,Lovely Apartment Near Prospect Park,37821056,Nichole,Brooklyn,Prospect-Lefferts Gardens,40.6552,-73.96063,Private room,65,7,2,2019-05-31,0.06,4,364 +15154905,"Huge bedroom suite in Greenpoint, Brooklyn",1103252,Arin,Brooklyn,Greenpoint,40.73287,-73.95211,Private room,130,1,104,2019-06-21,3.20,1,146 +15156627,Best part of Brooklyn! Large room in Bushwick.,39575635,Julian,Brooklyn,Bushwick,40.70342,-73.92829,Private room,70,1,15,2017-01-02,0.45,1,0 +15158194,Sunny Manhattan 1 bedroom in Landmark Brownstone,7245581,Michael,Manhattan,Washington Heights,40.83355,-73.93839,Entire home/apt,67,180,4,2019-05-31,0.15,19,331 +15158791,"SPECIAL: Luxury Apt, Close to Transp, Beach & Food",84558839,Mitch,Brooklyn,Manhattan Beach,40.58085,-73.93934,Entire home/apt,130,2,73,2019-06-30,2.15,1,330 +15159731,Executive Studio Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74018,-73.97962,Entire home/apt,117,30,9,2018-09-30,0.30,91,317 +15159758,Prospect Park family friendly apt,893136,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.66198,-73.95798,Entire home/apt,98,2,4,2017-10-29,0.17,1,0 +15160268,Elegant Ground Floor Garden Apartment,345252,Thomas,Brooklyn,Crown Heights,40.67843,-73.96385,Entire home/apt,120,5,3,2016-10-21,0.09,3,0 +15160791,Private Room Williamsburg 3 Blocks from L Bedford,96186778,Masahiro,Brooklyn,Williamsburg,40.71865,-73.95875,Private room,75,3,72,2019-06-22,2.14,1,56 +15162388,West 57th Hilton Club in NYC - mid-November,96202421,Dan,Manhattan,Midtown,40.76529,-73.97713,Private room,350,3,0,,,1,0 +15164526,2MinToTrainsNiceRMaimonidesLutheranIndustryCity,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65607,-74.00306,Private room,60,1,25,2019-06-07,0.74,4,52 +15165888,The Brass Shack,33346283,Jonathan,Manhattan,Harlem,40.83185,-73.94806,Private room,40,5,19,2019-06-08,0.57,3,316 +15166481,Beautiful and Sunny Apt in heart of Williamsburg,96241686,Gee,Brooklyn,Williamsburg,40.70976,-73.96686,Private room,125,3,0,,,1,0 +15166520,2MinTrainLovelyRMaimonidesLutheranIndustryCity,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65306,-74.0039,Private room,60,1,34,2019-05-31,1.05,4,294 +15173557,Confort 1 bdrm convenient commute to Manhattan,11585415,Ding,Brooklyn,Williamsburg,40.7047,-73.94579,Private room,100,1,0,,,1,0 +15174230,"Clean, Safe, Convenient, Comfy in Harlem NYC",21142670,Michael,Manhattan,East Harlem,40.80771,-73.94112,Shared room,95,1,7,2018-12-17,0.21,1,179 +15175161,Camping in Nolita,91425821,Kristin,Manhattan,Nolita,40.72275,-73.99558,Entire home/apt,124,2,1,2016-09-30,0.03,1,0 +15176641,Near transportation private room,19923341,Ahmad,Queens,Whitestone,40.78573,-73.81062,Private room,85,1,0,,,1,365 +15177242,Cozy room in 2br Cobble Hill apartment,156959,Ekaterina,Brooklyn,Carroll Gardens,40.68342,-73.9912,Private room,90,4,1,2016-10-02,0.03,2,0 +15177635,2MinTrainBigBeautyRMaimoLutherandIndustryCitty,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65657,-74.00358,Private room,70,1,23,2019-05-31,0.73,4,325 +15178725,2 BR Tropical Getaway near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.6437,-74.07944,Entire home/apt,150,1,23,2019-06-18,0.78,3,336 +15178929,Cozy NYC Studio (in Upper Manhattan / East Harlem),53309031,Madison,Manhattan,East Harlem,40.79528,-73.94418,Entire home/apt,93,2,38,2019-06-23,1.28,1,0 +15178955,Large 1 bedroom-Private Bath in 2 bed apartment,50860659,James,Queens,Ridgewood,40.70703,-73.90907,Private room,80,7,5,2019-01-04,0.15,1,188 +15179994,"BEAUTIFUL ROOM & PRIVATE BATHROOM...QUEENS, NY",10973901,Michelle,Queens,Kew Gardens Hills,40.71785,-73.82066,Private room,76,2,23,2019-06-18,0.68,1,178 +15180279,2 br in prime bushwick brooklyn,40611169,Sol,Brooklyn,Bushwick,40.69951,-73.91641,Entire home/apt,113,30,6,2018-09-30,0.18,5,365 +15181451,Lifestlye Stay In Downtown Brooklyn,2390711,Chen,Brooklyn,Fort Greene,40.69404,-73.98067,Entire home/apt,130,10,1,2016-11-13,0.03,1,0 +15181459,Time Square One Bedroom Apt,96361528,Wanhsuan,Manhattan,Theater District,40.76035,-73.98189,Entire home/apt,160,30,6,2018-08-21,0.19,1,168 +15182188,Amazing Location! NYC Midtown Nice Private Bedroom,96368935,Frank,Manhattan,Kips Bay,40.74385,-73.97827,Private room,89,3,3,2016-10-19,0.09,1,0 +15182306,Private room in 4 bdr apt!,96301426,Dillon,Brooklyn,Prospect-Lefferts Gardens,40.65714,-73.95,Private room,50,2,2,2018-08-23,0.17,1,0 +15187369,Clean and Cozy East Village Studio,96413175,Erik,Manhattan,East Village,40.72173,-73.98282,Entire home/apt,150,9,4,2017-11-15,0.13,1,0 +15188621,Comfortable One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67948,-73.96526,Entire home/apt,125,30,11,2019-05-21,0.34,3,87 +15188738,FABULOUS BED ROOM WITH 4 BEDS (JFK - 12 MINS),96424121,Pamela,Queens,St. Albans,40.70327,-73.76785,Private room,85,1,48,2019-06-08,1.41,3,180 +15189516,Cute House Near Train In Brooklyn,19694796,Stephen,Brooklyn,Kensington,40.63727,-73.97718,Private room,45,2,4,2017-01-01,0.13,1,0 +15189639,Prospect Heights,96347002,Noreen,Brooklyn,Crown Heights,40.67752,-73.96029,Entire home/apt,150,60,0,,,1,364 +15190865,Spacious private 2BR with Backyard Williamsburg,20309915,Lawrence,Brooklyn,Williamsburg,40.70778,-73.94884,Entire home/apt,170,2,94,2019-07-04,2.99,1,78 +15191179,Brand New small 1 Bedroom apt in Brooklyn,38790056,G,Brooklyn,Bath Beach,40.60979,-74.01121,Entire home/apt,85,1,38,2017-07-30,1.12,1,36 +15191225,Getaway❤️Romantic Retreat in a PRESIDENTIAL SUITE,64065593,ResortShare5,Manhattan,Midtown,40.75326,-73.97303,Entire home/apt,462,2,3,2018-12-17,0.10,13,299 +15191740,★★LUXURY at a MIDTOWN RESORT★★,64065593,ResortShare5,Manhattan,Midtown,40.75368,-73.97358,Private room,198,2,30,2019-04-11,0.89,13,333 +15191882,★★SLEEP ON CLOUD 9 IN OUR DOUBLE BED SUITE★★,64065593,ResortShare5,Manhattan,Midtown,40.75324,-73.97217,Entire home/apt,198,2,16,2018-11-08,0.51,13,263 +15192362,"Cozy private room, close to transportation",96335626,Josefina,Queens,Woodhaven,40.6922,-73.864,Private room,43,3,69,2019-05-21,2.08,1,283 +15194011,Gerrie,95471771,Lynne,Queens,Jamaica,40.67627,-73.77059,Private room,65,1,3,2018-12-30,0.12,2,179 +15194855,"Clean, Cozy, and Spacious Brooklyn Row House",68538563,Chitra,Brooklyn,Cypress Hills,40.68978,-73.87017,Private room,41,2,8,2016-10-29,0.24,1,0 +15195093,Private Bedroom & Large Living Room - Times Square,33936240,Jeff,Manhattan,Hell's Kitchen,40.76084,-73.98936,Private room,89,5,1,2016-09-27,0.03,1,0 +15195491,Private Room w/ Private Bath in Heart of Bed-Stuy,33612454,Lucey,Brooklyn,Bedford-Stuyvesant,40.68655,-73.94299,Private room,80,2,106,2019-06-24,3.14,1,47 +15196650,Cozy East Village home away from home...,22073094,Page,Manhattan,East Village,40.72782,-73.9862,Private room,110,1,0,,,1,0 +15203342,"Cosy, Awesome, Private Room in UES",2222500,Valerie,Manhattan,Upper East Side,40.77799,-73.94935,Private room,80,5,9,2019-05-11,0.29,2,118 +15204218,CLEAN Room w/PRVT BATH_NearSubway_3 StopsToManhatn,24201188,Monika,Queens,Astoria,40.7591,-73.91525,Private room,75,4,87,2019-06-27,2.61,2,57 +15204878,PRESIDENTIAL Condo 1 BDRM Wyndham Midtown 45 NYC,96098402,Wynpoints,Manhattan,Midtown,40.75362,-73.97158,Private room,749,2,5,2016-12-31,0.15,12,365 +15205915,2BdrmPRESIDENTIAL Luxury CONDO In the Heart of NYC,96098402,Wynpoints,Manhattan,Midtown,40.7521,-73.972,Private room,799,4,3,2017-01-13,0.09,12,365 +15206157,1Bdrm DELUXE Fully Renovated CONDO Wyndham Midtown,96098402,Wynpoints,Manhattan,Midtown,40.75331,-73.9733,Private room,599,3,8,2017-01-01,0.24,12,365 +15206272,Rooming has never been better.,95572265,Laura,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92676,Private room,75,3,18,2019-03-14,0.54,2,311 +15206331,"Big Quiet, Clean and Respectful APARTMENT.",46576732,Rosa,Manhattan,Washington Heights,40.85842,-73.92928,Private room,79,1,7,2017-03-19,0.21,1,0 +15206607,STUDIO Condo in luxurious Wyndham Midtown 45 NYC,96098402,Wynpoints,Manhattan,Midtown,40.75294,-73.9719,Private room,699,3,3,2016-12-11,0.09,12,365 +15206836,Studio King Wyndham Midtown 45 Hotel,96098402,Wynpoints,Manhattan,Midtown,40.75351,-73.97196,Private room,499,3,12,2016-12-18,0.36,12,365 +15206909,Le Petit Palace De Brooklyn - Clean Comfy 4 BR Apt,96591454,Chantal,Brooklyn,East Flatbush,40.64383,-73.94902,Entire home/apt,175,3,71,2019-07-01,2.23,1,162 +15207725,HugeTropical Bedrm near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.64057,-74.0786,Private room,110,1,20,2019-07-01,0.63,3,337 +15215887,Spacious Studio Apartment with Full Size Kitchen,96677104,Charles,Manhattan,Hell's Kitchen,40.76615,-73.98408,Private room,189,15,0,,,1,0 +15216398,Whimsical & Cute Private Room in 2 Bdrm Apt,3360346,Christen,Brooklyn,Williamsburg,40.71622,-73.94273,Private room,50,14,54,2019-05-06,1.61,2,86 +15216399,For all classical lover's,95765103,Glory,Brooklyn,Sheepshead Bay,40.60803,-73.96211,Private room,50,3,15,2019-03-31,0.45,2,211 +15216703,Downtown Dream on the Park,6107166,Julia,Manhattan,Chinatown,40.71348,-73.99135,Entire home/apt,150,20,38,2019-07-05,1.13,1,29 +15216895,Artist apt w/ Private room in Bed Stuy,50207365,Ben,Brooklyn,Bedford-Stuyvesant,40.69653,-73.94994,Private room,50,2,5,2017-10-22,0.15,1,0 +15218066,1Bdrm Deluxe WYNDHAM MIDTOWN 45*Great Location NYC,96098402,Wynpoints,Manhattan,Midtown,40.75388,-73.97308,Private room,799,3,2,2016-11-05,0.06,12,365 +15218299,Hotel Style KG/QN Room WYNDHAM MIDTOWN 45,96098402,Wynpoints,Manhattan,Midtown,40.75344,-73.97207,Private room,499,3,7,2016-12-09,0.21,12,365 +15218342,Cozy bright studio flat - Soho/Village,49645950,Karen,Manhattan,SoHo,40.7263,-74.00344,Entire home/apt,189,2,136,2019-07-06,4.09,2,30 +15218579,2 Double Bed WYNDHAM MIDTOWN 45 *NYC*,96098402,Wynpoints,Manhattan,Midtown,40.75359,-73.97295,Private room,649,2,13,2017-10-08,0.39,12,365 +15218699,2Bdrm PRESIDENTIAL CONDO Wyndham Midtown 45 Hotel,96098402,Wynpoints,Manhattan,Midtown,40.75375,-73.97295,Private room,799,4,3,2016-12-28,0.09,12,365 +15219855,Spacious one bedroom in Union Sq/Greenwich Village,10920393,Andrew,Manhattan,Greenwich Village,40.73506,-73.99203,Entire home/apt,275,2,5,2017-01-01,0.15,1,0 +15220143,Cozy Clean Room in Manhattan's Upper West Side,1317884,Angela,Manhattan,Upper West Side,40.79512,-73.9733,Private room,100,2,45,2019-05-24,1.36,1,83 +15221767,Charming pre-war near Central Park,22862376,Maimouna,Manhattan,Harlem,40.79992,-73.95502,Entire home/apt,70,30,14,2019-05-31,0.76,1,50 +15221833,Full size bed with drawer space!,75770804,Alyssa Faye,Manhattan,Harlem,40.82088,-73.93879,Private room,35,1,0,,,1,0 +15222861,"Private! entire studio, private bath, own entrance",33614329,Walter,Brooklyn,Bushwick,40.69555,-73.93069,Entire home/apt,95,1,81,2019-07-03,2.42,4,193 +15222972,Minimalistic 1 bedroom in the heart of Manhattan,4071035,D&N,Manhattan,Two Bridges,40.71231,-73.99257,Entire home/apt,140,3,137,2019-06-20,4.07,1,154 +15223434,new sunshine room in chinatown train F is around,89386217,Na,Manhattan,Chinatown,40.7135,-73.99121,Private room,75,1,318,2019-06-19,9.39,1,51 +15226075,Cozy 4 Bedroom's Times Square Apartment!,68315940,Patrick,Manhattan,Theater District,40.76093,-73.98327,Private room,302,3,0,,,1,179 +15226875,Versatile private room in Harlem/Hamilton Heights!,31616043,Edward,Manhattan,Harlem,40.82377,-73.94981,Private room,65,4,42,2019-06-18,1.34,1,10 +15229456,Spacious 2 Bedroom NYC Apt with River Views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76027,-73.99826,Entire home/apt,399,30,0,,,121,365 +15229619,Bluebird Hell's Kitchen Studio Apartment + Spa!!!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76221,-73.99795,Entire home/apt,321,30,0,,,18,365 +15230053,Bluebird Hell's Kitchen 1-BR + Full Service Spa!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76115,-73.99823,Entire home/apt,499,30,0,,,18,146 +15230339,Bluebird Lavish 1-BR Apt 1 Mile from Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7619,-73.99819,Entire home/apt,534,30,0,,,18,365 +15230576,Bluebird Hells Kitchen 2-BR Apt + Full Service Spa,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76075,-73.99893,Entire home/apt,748,30,0,,,18,365 +15230938,Bluebird Lavish 2-BR Apt Within Mile of Times Sq.,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7602,-73.998,Entire home/apt,748,30,0,,,18,185 +15232708,Bedroom w/ Gorgeous Tree Lined and River View,2118206,Andrea,Manhattan,Washington Heights,40.8337,-73.9458,Private room,33,10,5,2019-05-12,0.16,1,44 +15232776,2 Bedroom in the heart of Williamsburg,12334451,Nina,Brooklyn,Williamsburg,40.71958,-73.96123,Entire home/apt,350,2,19,2019-06-30,0.58,1,179 +15233134,Bluebird Deluxe 1-BR Apartment Near Central Park!,95459395,Bluebird,Manhattan,Midtown,40.76574,-73.98188,Entire home/apt,534,30,0,,,18,316 +15233387,#Bluebird Elegant 1-BR Apartment Near Times Square,95459395,Bluebird,Manhattan,Midtown,40.7671,-73.98148,Entire home/apt,300,30,0,,,18,364 +15233592,Bluebird Deluxe 2-BR Apartment Near Central Park!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76714,-73.9834,Entire home/apt,748,30,0,,,18,333 +15234201,#BBS 2-BR Apartment Near Times Square *Specials*,95459395,Bluebird,Manhattan,Midtown,40.76487,-73.98238,Entire home/apt,748,30,0,,,18,364 +15234755,Luxury One Bedroom,10528,Olivier,Manhattan,Upper West Side,40.77727,-73.98453,Entire home/apt,200,30,9,2019-02-09,0.28,2,139 +15234771,"LES ‘GEM’ - 1BR APARTMENT, GREAT LOCATION, STOCKED",85923274,Stewart,Manhattan,Lower East Side,40.72195,-73.98698,Entire home/apt,214,2,15,2019-05-20,0.48,1,17 +15235535,Nice private room in hip and trendy Brooklyn,59488330,Carla,Brooklyn,Bushwick,40.68687,-73.91564,Private room,40,2,21,2018-07-15,0.63,1,185 +15238184,Peaceful Private Room in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6883,-73.90596,Private room,39,2,104,2019-06-09,3.09,4,174 +15238740,Room for rent,17125263,Mario,Manhattan,East Harlem,40.79655,-73.93848,Private room,75,3,54,2019-07-07,1.61,2,271 +15241968,Wonderful Room in South Harlem near Central Park,79738498,Heroni,Manhattan,Harlem,40.8014,-73.95793,Private room,100,2,12,2017-05-28,0.36,1,0 +15246070,Lovely&Morden bedroom near everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80039,-73.96724,Private room,49,1,56,2019-04-19,1.83,6,326 +15247262,Charming 1 Bedroom Garden Apt,10777266,Aitan,Brooklyn,Prospect Heights,40.67688,-73.96735,Entire home/apt,185,3,109,2019-06-23,3.25,1,269 +15248135,Sun-lit room w/in steps of best of Williamsburg,48107620,Nathan,Brooklyn,Williamsburg,40.71145,-73.95887,Private room,100,3,9,2017-10-27,0.27,1,0 +15248948,Spacious quiet second floor brownstone apartment,22129681,Nicola,Brooklyn,Carroll Gardens,40.68048,-73.99322,Entire home/apt,130,4,8,2018-09-08,0.24,1,0 +15249063,Gorgeous 2 Bedroom apartment /Upper East side,12008116,Cristina,Manhattan,Upper East Side,40.77341,-73.95025,Entire home/apt,375,1,16,2019-06-23,0.51,1,110 +15249671,"East Brodway in Lower East Side, quiete and cute!",96975337,Paolo,Manhattan,Chinatown,40.71333,-73.9916,Private room,69,30,1,2016-12-16,0.03,1,359 +15250033,Luxurious Guestroom w/Private Bathroom & Entrance,96978953,Christine,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.95725,Private room,125,2,27,2019-05-09,0.88,1,136 +15250168,Bright Loft Room in a Charming Brooklyn Apartment,24273714,Aracelis,Brooklyn,Williamsburg,40.71381,-73.93903,Private room,85,1,31,2019-06-30,0.93,3,279 +15250435,"Huge Private Bedroom, Patio, + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.83014,-73.94656,Private room,59,3,49,2019-06-03,1.51,2,203 +15252848,Luxury bedroom - Nomad Chelsea area,52183380,Andy,Manhattan,Chelsea,40.74381,-73.9923,Entire home/apt,110,30,2,2016-10-22,0.06,1,0 +15253135,Huge 1BR Luxury Apartment in Williamsburg,1022070,Peter,Brooklyn,Williamsburg,40.71113,-73.95296,Entire home/apt,250,2,6,2017-01-01,0.18,1,0 +15253883,Spacious & Bright Midtown 1 Bedroom -Elevator Bldg,96867847,Matthew,Manhattan,Midtown,40.75723,-73.96313,Entire home/apt,175,2,10,2018-08-29,0.31,1,0 +15255254,Private room with private bathroom,8402190,Amanda,Brooklyn,Greenpoint,40.72342,-73.94838,Private room,99,2,38,2019-06-23,1.13,1,89 +15256150,"Newly Renovated, Bright 1 BR in Central Manhattan",27803037,Rebecca,Manhattan,Kips Bay,40.74089,-73.98094,Entire home/apt,175,3,20,2018-09-17,0.61,1,0 +15257524,Cozy Brooklyn Room,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68137,-73.91359,Private room,38,30,5,2018-10-14,0.15,4,0 +15259634,Amazing & Clean NYC Private Room by #1 Train,30499687,Jovanni & Natasha,Bronx,North Riverdale,40.90175,-73.89761,Private room,77,2,9,2017-04-30,0.29,2,0 +15260962,Luxury 2BR Penthouse in the hearth of Soho (Nyc),26830685,Gaia&Pietro,Manhattan,SoHo,40.72575,-74.00128,Entire home/apt,850,3,32,2019-06-24,1.04,1,262 +15261309,Private Room with a patio in Park Slope Brooklyn,17243984,Phines,Brooklyn,Sunset Park,40.66198,-73.98964,Private room,90,2,0,,,1,0 +15261353,Sunny Studio in Midtown Manhattan,2742827,Christiane,Manhattan,Kips Bay,40.74533,-73.9772,Entire home/apt,128,2,5,2018-05-28,0.19,1,0 +15262831,THE PRIVACY DEN ~ 5 MINUTES TO JFK,97086824,Miss Dy,Queens,Springfield Gardens,40.66735,-73.76647,Entire home/apt,49,1,434,2019-06-19,12.84,1,102 +15266254,The Manhattan Club in the heart of midtown!!!!,62563056,Endless Resort Options,Manhattan,Midtown,40.76382,-73.98007,Entire home/apt,305,4,0,,,1,124 +15266302,Borough Park/Kensington 3 room Apartment,38965064,Chaim,Brooklyn,Borough Park,40.63561,-73.97961,Entire home/apt,83,7,1,2017-04-18,0.04,1,0 +15268575,Private room in charming Brooklyn Apartment,219970,Fely,Brooklyn,Crown Heights,40.67642,-73.961,Private room,80,2,3,2016-11-28,0.09,2,0 +15268654,NEW & PRIVATE 2 bedroom apt in stately townhouse,67213712,Ken,Brooklyn,Gowanus,40.68255,-73.9899,Entire home/apt,400,30,118,2019-06-06,3.53,1,265 +15268792,"Fab Studio with Gym, Doorman & Elevator Sleeps 4",95436015,Abc,Manhattan,West Village,40.73322,-74.00853,Entire home/apt,450,30,12,2019-01-06,0.38,1,165 +15271865,Clean Private Bedroom - Bushwick Brooklyn New York,68746033,Leslie,Brooklyn,Bedford-Stuyvesant,40.68303,-73.91238,Private room,80,1,2,2016-10-09,0.06,1,0 +15271897,UNION SQUARE / Perfect Cozy Private Room!,97166562,Haru,Manhattan,Gramercy,40.73402,-73.9862,Private room,82,1,88,2019-06-20,2.76,1,14 +15273936,*ENJOY NYC*New Renovated Apartment(Private room),95796044,Sasha,Bronx,Woodlawn,40.88253,-73.86951,Private room,68,1,6,2018-10-09,0.19,1,87 +15280873,Cozy Apt in NYC Brownstone,97243693,Joyce,Manhattan,Murray Hill,40.74699,-73.97659,Entire home/apt,200,3,62,2019-07-01,3.19,2,49 +15282119,Private Retreat in Brooklyn,97122846,Tim & Rachel,Brooklyn,East Flatbush,40.65141,-73.92512,Entire home/apt,75,3,109,2019-06-20,3.29,1,232 +15282411,Private room for 1 or 2 in Chelsea. Prime location,2764786,Lindsay,Manhattan,Chelsea,40.74853,-73.99593,Private room,120,1,18,2017-01-11,0.55,1,0 +15284819,Wyndham Midtown 45 New York City Studio,60085031,Vacation Generation,Manhattan,Midtown,40.7536,-73.97306,Entire home/apt,125,2,9,2017-09-15,0.34,1,0 +15285181,Comfy room in quaint apartment above the Park,40411263,Katharine,Manhattan,East Harlem,40.79523,-73.94278,Private room,39,120,0,,,1,173 +15286036,Spacious Tribeca loft! Roofdeck & close to trains,51373228,Jamie,Manhattan,Civic Center,40.71625,-74.00401,Entire home/apt,350,2,0,,,1,0 +15286645,Newly Renovated Studio Near Manhattan,97300191,Zia,Queens,Woodside,40.74767,-73.90721,Entire home/apt,110,2,9,2017-06-03,0.27,1,8 +15286858,Luxury Apartment in Williamsburg!,35433522,David,Brooklyn,Williamsburg,40.71258,-73.95191,Entire home/apt,349,5,5,2018-06-14,0.16,3,0 +15287016,1 bedroom in sunny Nolita apartment,24385779,Lauren,Manhattan,Nolita,40.7215,-73.99395,Private room,85,2,5,2017-03-11,0.16,1,0 +15288601,Amazing Space...Awesome Location...Private Room,97323051,Mike,Brooklyn,Prospect Heights,40.67431,-73.9651,Private room,66,3,3,2018-10-16,0.09,1,0 +15288813,1 Bedroom (Queen) Mins From JFK and Casino,52997121,Iwona,Queens,Jamaica,40.67518,-73.78046,Private room,75,1,45,2019-06-28,1.33,4,8 +15289231,Colorful Artist Apartment in Park Slope Brooklyn,27227850,Caroline,Brooklyn,South Slope,40.66634,-73.98185,Entire home/apt,144,1,32,2019-05-27,0.96,1,0 +15289766,Historic Townhome for Shoots/Videos,7850260,Raymond,Manhattan,Harlem,40.80594,-73.9454,Entire home/apt,550,1,2,2018-10-22,0.17,3,88 +15294943,Beautiful Private Room near Columbia University,21594748,Gabriel,Manhattan,Morningside Heights,40.80751,-73.96619,Private room,110,2,5,2017-09-15,0.15,2,0 +15296557,Bushwick Bedroom (Available Daily Again),11757212,Jasmine,Brooklyn,Bushwick,40.69804,-73.92816,Private room,51,1,45,2019-05-31,1.35,4,351 +15296957,Gatsby Room,89388277,Maria,Manhattan,Lower East Side,40.72203,-73.98986,Private room,118,1,2,2017-08-06,0.08,3,0 +15297194,Cozy Island Bedroom near Ferry,96341353,Tony & Grace,Staten Island,St. George,40.64055,-74.0784,Private room,70,1,60,2019-06-16,1.84,3,336 +15297704,Gatsby Room 2,89388277,Maria,Manhattan,Lower East Side,40.72205,-73.9913,Private room,118,1,3,2018-02-24,0.17,3,0 +15297862,LUXURY SUTTON PLACE RESIDENCY~DOORMAN/GYM/ELEVATOR,2856748,Ruchi,Manhattan,Midtown,40.75936,-73.96293,Entire home/apt,250,30,0,,,49,364 +15298236,Gatsby Room 1,89388277,Maria,Manhattan,Lower East Side,40.72342,-73.99108,Private room,118,1,0,,,3,0 +15299630,Bright & spacious apartment in East Williamsburg,4360212,Anu,Brooklyn,Williamsburg,40.70912,-73.94513,Entire home/apt,135,2,22,2019-07-07,0.66,1,5 +15299748,EPIC VIEWS ❤️ Wyndham Midtown 45 at NYC Studio ❤️,64065593,ResortShare5,Manhattan,Midtown,40.7531,-73.97321,Private room,252,2,3,2018-10-18,0.09,13,324 +15301499,~**GORGEOUS DOWNTOWN LOFTS**~ MULTIPLE SPACES,76192815,Sam,Manhattan,Chinatown,40.71745,-73.99409,Entire home/apt,300,1,23,2019-03-27,0.69,5,364 +15301517,Clean and Sunny room near Midtown Manhattan,25843005,Daljit,Queens,Astoria,40.75786,-73.92808,Private room,49,2,108,2019-06-30,3.20,3,20 +15301748,Comfy Private Room w/ Big TV,94536810,Belkis,Bronx,Bronxdale,40.85585,-73.86486,Private room,40,5,65,2019-06-04,1.94,2,328 +15301964,Beautiful Bedroom by Prospect Park,97441717,Tracy,Brooklyn,Flatbush,40.65228,-73.96402,Private room,65,3,1,2016-10-13,0.03,1,0 +15301966,Bright and modern 1 BR in Williamsburg w/balcony,39054866,Kevin,Brooklyn,Williamsburg,40.71238,-73.96279,Entire home/apt,160,3,1,2016-10-09,0.03,1,0 +15302149,Naturally lit room in Artsy Bushwick,22225635,Auzi,Brooklyn,Bushwick,40.69108,-73.91531,Private room,65,5,0,,,1,0 +15303092,Enjoy NYC and feel like your home!,97454026,Diana,Manhattan,Washington Heights,40.85679,-73.932,Private room,60,2,60,2019-06-23,1.79,1,60 +15307603,Beautiful Large Room,92195100,Airamis,Bronx,Bronxdale,40.85236,-73.86632,Private room,35,1,114,2018-10-09,3.48,1,0 +15307735,An artistic experience,11018460,Patricia,Brooklyn,Williamsburg,40.7155,-73.95632,Private room,125,5,15,2019-06-04,0.46,2,288 +15308451,Large one bed room pied a terre in Park Slope,1706073,Jean Victor,Brooklyn,Park Slope,40.67293,-73.98609,Entire home/apt,105,30,7,2018-10-28,0.24,1,189 +15308517,Fort Greene - Whole Apartment with washer & dryer,2910527,Lauren,Brooklyn,Fort Greene,40.68725,-73.97458,Entire home/apt,150,2,4,2017-05-13,0.12,1,0 +15309572,Spacious Room in IDEAL LES LOCATION,97513787,Daniel,Manhattan,Chinatown,40.7164,-73.99188,Private room,73,25,13,2019-05-08,0.48,5,38 +15310116,Sunny Space in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66631,-73.94764,Private room,95,30,3,2018-09-03,0.15,8,189 +15310417,Cozy Space in Crown Heights,77778146,Andre,Brooklyn,Crown Heights,40.66596,-73.94936,Private room,75,1,13,2018-12-06,0.39,8,311 +15310580,Nice apartment in Gramercy.,27336207,Juan Eduardo,Manhattan,Gramercy,40.73736,-73.98025,Entire home/apt,120,5,8,2018-02-25,0.25,2,0 +15311253,"2 Bedrooms, Luxury Doorman, Grand Central, Perfect",52950465,Gal,Manhattan,Midtown,40.75241,-73.97081,Entire home/apt,199,30,0,,,12,226 +15311733,Best of Wall Street (Full Studio ALL yours),28717495,Yasir,Manhattan,Financial District,40.70651,-74.00656,Entire home/apt,199,2,1,2016-10-10,0.03,1,0 +15311833,"Ideal vacationing spot for beach lovers, near JFK",97536353,Chadine,Queens,Arverne,40.58929,-73.79441,Private room,60,3,3,2017-06-21,0.10,2,0 +15312128,"Netflix and Rest, One quaint bedroom in Ft. Greene",97538710,Malik,Brooklyn,Fort Greene,40.68906,-73.97897,Private room,88,1,82,2019-06-09,2.45,1,67 +15314054,Cityscape Views at Lux 1 Bed/1 Bath in Lincoln Sq.,836168,Henry,Manhattan,Upper West Side,40.78065,-73.98253,Entire home/apt,1000,30,17,2017-04-16,0.51,11,365 +15314886,Artsy Duplex in Chelsea w/ Huge Terrace,7139819,Nauman,Manhattan,Chelsea,40.74738,-74.00134,Entire home/apt,179,3,3,2017-05-20,0.09,2,0 +15321266,Spacious 1BR Apt / Hamilton Heights,219320,Matt,Manhattan,Harlem,40.82218,-73.94593,Entire home/apt,120,1,4,2016-10-30,0.12,1,0 +15321861,Basement private room w/AC near LaGuardia Airport,97631810,Giovanni,Queens,East Elmhurst,40.75849,-73.87068,Private room,50,1,218,2019-07-07,6.91,1,153 +15323284,Comfortable Chelsea Room,2657430,Rahul,Manhattan,Chelsea,40.74681,-74.00006,Private room,110,7,3,2018-08-03,0.21,2,0 +15324045,TOWNHOUSE (Backyard/Rooftop + Photoshoots/Events),9049657,Benjamin,Brooklyn,Bushwick,40.69003,-73.90891,Entire home/apt,390,1,131,2019-07-07,4.11,1,321 +15325255,Wyndham Studio Condo with Kitchen SPECIAL TODAY!,96098402,Wynpoints,Manhattan,Midtown,40.75175,-73.97218,Private room,269,3,8,2016-12-06,0.24,12,365 +15326614,Private Room in Williamsburg,52428829,Manuel,Brooklyn,Williamsburg,40.70683,-73.94582,Private room,60,1,0,,,1,0 +15327553,Huge Room in Ideal LES location,97513787,Daniel,Manhattan,Chinatown,40.71592,-73.99332,Private room,65,25,20,2018-12-12,0.90,5,365 +15327611,Cosy Appartment in Upper East Side,15636131,Rémi,Manhattan,Upper East Side,40.76952,-73.94892,Entire home/apt,150,7,12,2019-04-18,0.39,1,32 +15328018,"Comfy & Vibrant Bedroomm of Bushwick, Jefferson L",93202618,Ritchie,Brooklyn,Bushwick,40.70588,-73.92302,Private room,45,1,7,2017-01-22,0.21,1,0 +15328237,"One Room in Luxury Apartment, 5min to Midtown",47617616,Joanna,Queens,Long Island City,40.74569,-73.94684,Private room,105,4,10,2019-05-29,0.33,1,70 +15328242,PRIVATE BED ROOM 12 MINS FROM JFK,96424121,Pamela,Queens,St. Albans,40.70348,-73.76621,Private room,55,1,71,2019-05-27,2.12,3,365 +15328271,"Huge Apt 5 miles to Manhattan, Parking available",77665938,Mag,Queens,Maspeth,40.72693,-73.90319,Entire home/apt,105,1,92,2019-06-25,2.75,1,316 +15329520,"JFK 20 and LGA 30, Heat Private 2 Bedrooms",92467975,Farida,Queens,Kew Gardens Hills,40.73216,-73.81841,Private room,399,1,0,,,1,241 +15333336,YOUR HOME AWAY FROM HOME -- NYC WELCOMES YOU!,84684940,Clyde,Brooklyn,Flatbush,40.64747,-73.96171,Private room,75,3,65,2019-05-17,1.95,2,335 +15334973,Chic room by the park in Bushwick,12573650,Patrick,Brooklyn,Bushwick,40.70191,-73.92298,Private room,38,1,11,2017-04-19,0.35,1,0 +15336596,Private bedroom in artsy NYC apartment.,77010815,Eean,Bronx,Norwood,40.8722,-73.87607,Private room,50,3,22,2019-06-02,0.76,1,342 +15337711,Fun time in Williamsburg stylish apartment!,97779735,Satomi,Brooklyn,Williamsburg,40.70879,-73.94937,Private room,70,7,15,2019-04-28,0.45,1,292 +15338155,BEAUTIFUL BEDROOM IN COZY APARTMENT,22534244,Jose,Queens,Woodside,40.74845,-73.89665,Private room,85,1,42,2019-06-28,1.26,1,364 +15339227,"Spacious room in a clean, quiet and cozy home.",97794621,Luis,Queens,Sunnyside,40.73922,-73.9265,Private room,70,1,76,2019-07-07,2.28,1,76 +15340613,Private Room on the Upper West Side,31932014,Andrea,Manhattan,Upper West Side,40.78319,-73.97762,Private room,85,2,8,2017-08-03,0.24,1,89 +15340649,Huge Beautiful Loft in the Heart of Williamsburg,114590,J.P.,Brooklyn,Williamsburg,40.72049,-73.96027,Entire home/apt,180,3,7,2019-06-24,0.21,1,54 +15340854,Amazing Townhouse in Harlem,97808036,Chelsea,Manhattan,Harlem,40.80869,-73.94205,Entire home/apt,600,4,16,2019-04-27,0.50,1,96 +15341726,Lovely Large Bedroom in West Harlem,42325192,Lauren,Manhattan,Harlem,40.81463,-73.95106,Private room,75,3,11,2018-12-31,0.35,1,14 +15342056,"Cozy Private Bedroom, Access to Terrace",918668,Eric,Brooklyn,Crown Heights,40.677,-73.95923,Private room,200,30,0,,,1,88 +15342164,JFK 15 AND LGA 18 MINUTES,97822063,Chima,Queens,St. Albans,40.70577,-73.75932,Private room,47,3,2,2018-12-16,0.06,1,56 +15342457,Beautiful 3 BR-2 BA duplex with deck in Park Slope,3998751,Gisele,Brooklyn,Windsor Terrace,40.65927,-73.97832,Entire home/apt,300,2,6,2018-12-26,0.18,1,16 +15342701,"New, elegant private apartment for 2 near JFK",97825348,Frank,Queens,Arverne,40.59065,-73.79563,Entire home/apt,150,2,20,2019-07-07,0.61,1,76 +15344255,"Trendy, Fully-Renovated Studio in West Chelsea",97842006,Michael,Manhattan,Chelsea,40.74624,-74.00371,Entire home/apt,225,1,51,2019-06-29,1.63,1,9 +15344495,MODERN COZY NYC APT,97763801,Huong,Queens,Astoria,40.7687,-73.91975,Entire home/apt,149,4,5,2018-04-07,0.15,1,66 +15344749,Comfy Apt in Chinatown/Lower East Side,30702769,Raymond,Manhattan,Chinatown,40.71305,-73.99443,Private room,100,1,154,2019-07-05,4.60,1,233 +15345019,NYC Firehouse-Greenpoint BRKLYN,88972153,Elizabeth,Brooklyn,Greenpoint,40.73218,-73.95647,Entire home/apt,425,3,0,,,1,344 +15345313,Bronx Beauty: Renovated historic rowhouse.,97853468,Steven,Bronx,Hunts Point,40.81658,-73.88889,Private room,59,14,13,2018-12-30,0.40,4,340 +15347268,Modern Luxury 2 Bed/ 2 Bath apartment in Midtown!,836168,Henry,Manhattan,Midtown,40.75425,-73.98312,Entire home/apt,2000,30,4,2017-03-11,0.12,11,365 +15349655,1 room in a 3 room LOFT,9271620,Arthur,Brooklyn,Williamsburg,40.71671,-73.94592,Private room,77,28,10,2018-12-30,0.30,1,315 +15354260,Beautiful 1-BDR apt 15 min from Manhattan,97961443,Nadia,Queens,Astoria,40.75954,-73.90548,Entire home/apt,129,20,0,,,1,0 +15355243,*PRIME* The ❤️ of Greenwich Village/SOHO SLEEPS 4,1862880,Joy,Manhattan,SoHo,40.72652,-74.00032,Entire home/apt,245,2,44,2019-06-18,1.34,1,0 +15355575,"Homey private room in Inwood, Manhattan",57954964,Sarah & JC,Manhattan,Inwood,40.86906,-73.9173,Private room,50,2,7,2018-10-08,0.23,1,155 +15355844,"Big East Village bedroom, heart of Manhattan",32707981,Ben,Manhattan,East Village,40.72396,-73.98941,Private room,120,2,5,2017-04-09,0.16,4,0 +15356132,1 RM in 3BR Brownstone: Quiet Upper East Side St.,16390627,Danny,Manhattan,Upper East Side,40.7723,-73.94746,Private room,55,8,1,2018-01-01,0.05,1,0 +15356673,WILLIAMSBURG AUTHENTIC ARTIST LOFT,1407676,Jessica,Brooklyn,Williamsburg,40.71727,-73.95753,Private room,110,1,102,2019-06-17,3.13,4,267 +15357493,Two Bedrooms with Dedicated Bath,5654072,Mark,Brooklyn,Flatbush,40.63503,-73.95127,Private room,150,3,10,2017-10-28,0.38,3,0 +15357503,Master Suite with Private Bath,5654072,Mark,Brooklyn,Flatbush,40.63409,-73.95245,Private room,71,3,20,2017-12-13,0.73,3,0 +15358881,Meatpacking Triplex - A small home within NYC,67097911,J.J.,Manhattan,Chelsea,40.74101,-74.00496,Entire home/apt,300,2,7,2017-08-05,0.21,1,0 +15359119,"Spacious, Sunny, 1 Bdrm Apt w/ King Bed",17796102,Gabriella,Manhattan,Inwood,40.86107,-73.92959,Entire home/apt,90,26,4,2019-06-27,0.35,1,58 +15360220,Bohemian Brooklyn Pad with Rooftop Garden Oasis,10109204,Alexandra,Brooklyn,Bushwick,40.70378,-73.91311,Private room,65,2,3,2018-02-10,0.09,1,0 +15360248,Modern Luxury Loft 3bd Williamsburg,76184970,Alex,Brooklyn,Williamsburg,40.71322,-73.9648,Entire home/apt,408,3,88,2019-06-26,2.68,1,267 +15360364,Cozy private room on the UES,51007432,Kristina,Manhattan,Upper East Side,40.7739,-73.94782,Private room,78,1,73,2019-05-17,2.18,1,1 +15360687,Modern & Hip in Bedstuy!,1454772,Brett,Brooklyn,Bedford-Stuyvesant,40.68014,-73.94048,Entire home/apt,95,3,48,2019-06-29,1.57,1,338 +15360787,Large Bdrm/Full Bath for Guests/Gym/Elevator bldg.,98053423,Michelle,Manhattan,Harlem,40.80968,-73.94425,Private room,99,1,31,2019-07-06,2.63,1,123 +15361785,Central Park Sanctuary,97833986,Caro & Allen,Manhattan,Upper West Side,40.77851,-73.97645,Private room,77,4,93,2019-06-18,2.87,1,115 +15363266,Beautiful 1 bedroom apartment,3485640,Sophie,Manhattan,Washington Heights,40.83892,-73.94265,Entire home/apt,120,3,4,2019-05-28,0.13,1,7 +15367894,Bedford Stuyvesant / Clinton Hill 2 bedroom,2431238,Ted,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95444,Entire home/apt,125,3,93,2019-07-01,2.78,1,13 +15370219,Modern Apartment in Manhattan,30494687,Eduardo,Manhattan,Harlem,40.80887,-73.94889,Private room,90,3,3,2017-07-01,0.09,1,0 +15374564,Caribnb- Charming stay in a private 2 family home,33991916,Caribnb Hazel,Brooklyn,Flatbush,40.64361,-73.95367,Private room,86,2,53,2019-07-07,1.64,1,324 +15374777,Large room 5mins to NYC/Fridge/900Mb Internet,30384194,Patricio,Queens,Astoria,40.75771,-73.91385,Private room,99,3,47,2018-09-14,1.41,2,176 +15374796,Large UWS Apt close to Central Park,7610841,Jenny,Manhattan,Upper West Side,40.80088,-73.96194,Private room,115,2,72,2019-05-19,2.55,2,275 +15377187,Nature Lovers Dream,20862571,Marva,Brooklyn,Crown Heights,40.66892,-73.96079,Private room,32,2,1,2017-01-05,0.03,1,0 +15377407,MAGNIFICIENT LUX. STUDIO UNOBSTRUCTED RIVER VIEW,98267290,Heather,Manhattan,Upper West Side,40.77509,-73.98255,Entire home/apt,130,30,0,,,1,185 +15377806,Modern Room Uptown,8903368,Judith,Manhattan,Harlem,40.81668,-73.94407,Private room,100,1,3,2017-05-21,0.09,1,0 +15378469,"Private room with yard, in the heart of Bushwick",98279802,Philip,Brooklyn,Bushwick,40.70035,-73.92366,Private room,45,90,0,,,1,0 +15378960,BayRidge Cozy house near subway & shopping,98297464,Max,Brooklyn,Fort Hamilton,40.61937,-74.03132,Entire home/apt,95,6,20,2019-06-10,0.60,2,141 +15379480,In ❤️ of West Village- Entire Apt,16810685,Jennifer,Manhattan,Greenwich Village,40.72868,-73.99901,Entire home/apt,183,1,173,2019-07-07,5.21,1,271 +15379574,Private 2 BR Apartment Close to Subway,98308046,Pardis,Brooklyn,Bushwick,40.68946,-73.91537,Entire home/apt,150,2,110,2019-06-23,3.38,1,152 +15379923,Entire floor private 1 bedroom in Bushwick,1774499,Stephanie,Brooklyn,Bushwick,40.69909,-73.92279,Private room,75,3,2,2016-11-02,0.06,1,0 +15381675,"DESIGN, COLOR, MODERN, LIGHT!!! COOK'S KITCHEN!!!",98341498,Gabriel,Brooklyn,Bushwick,40.6886,-73.91209,Entire home/apt,150,4,77,2019-05-28,2.45,1,258 +15391726,Upper West Side & CENTRAL PARK at your doorstep,6357228,Brandon,Manhattan,Upper West Side,40.79915,-73.96086,Private room,90,14,0,,,1,0 +15392689,"Private, Spacious Bedroom in Harlem, single bed",7055854,Diane,Manhattan,East Harlem,40.80242,-73.94215,Private room,1500,4,1,2019-01-27,0.18,5,188 +15393322,Large Loft in Williamsburg,3002077,Jessica,Brooklyn,Williamsburg,40.71675,-73.96226,Entire home/apt,500,7,5,2018-12-30,0.16,1,106 +15393637,Uptown NEVER Felt so in the Middle of Everything,37435847,Jay,Manhattan,East Harlem,40.79534,-73.94526,Entire home/apt,100,1,73,2018-12-28,2.37,1,0 +15394295,1 Bedroom (Full) Mins From JFK and Casino,52997121,Iwona,Queens,Jamaica,40.67603,-73.78217,Private room,70,1,29,2019-01-09,0.90,4,8 +15394503,Cozy East Village Studio,7025954,Nathan,Manhattan,East Village,40.72188,-73.9826,Private room,99,3,11,2017-10-30,0.33,1,0 +15394525,"cozy, studio apartment in bed-stuy",56065753,Chary,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95593,Entire home/apt,80,1,5,2018-09-03,0.17,1,0 +15395942,"Relaxed, artist-inspired duplex in Bed Stuy",98485181,Christopher,Brooklyn,Bedford-Stuyvesant,40.6876,-73.92691,Private room,79,2,16,2019-06-16,1.12,1,173 +15396328,Private Room in Heart of East Village!,14295824,Josephine,Manhattan,East Village,40.72718,-73.98238,Private room,80,4,7,2019-01-03,0.33,1,0 +15396351,Bright studio in the heart of historic Harlem,20368225,Jessica,Manhattan,Harlem,40.80854,-73.94519,Entire home/apt,200,2,102,2019-06-21,3.50,3,101 +15397048,Huge 2 Bedroom in Brooklyn Brownstone,63746890,Alana,Brooklyn,Bedford-Stuyvesant,40.69002,-73.93733,Entire home/apt,100,3,92,2019-06-15,3.26,1,4 +15397893,Bright & chic 1BR in the West Village,22525595,Jasmine,Manhattan,West Village,40.73616,-74.00889,Entire home/apt,200,2,28,2019-05-23,1.32,1,66 +15399008,Spacious room in relaxing 2 BDR UWS apartment,46221302,Lana,Manhattan,Upper West Side,40.79858,-73.97301,Private room,95,6,4,2019-05-02,0.15,1,0 +15399031,Beautiful & Cozy Brownstone Apt In Gowanus,86592511,Chezi,Brooklyn,Gowanus,40.66734,-73.99383,Entire home/apt,135,2,19,2019-06-19,0.60,1,35 +15405532,NYU/UNION SQRE/EAST VILLAGE-QUIET STUDIO EAST 25TH,2856748,Ruchi,Manhattan,Kips Bay,40.73824,-73.97874,Entire home/apt,198,30,0,,,49,364 +15406357,Gorgeous Sunlit Modern Room on the Lower East Side,897121,Lori,Manhattan,Lower East Side,40.71838,-73.99149,Private room,85,1,135,2019-07-02,4.30,1,8 +15409309,"Cozy private bedrooms, near JFK & LGA.",42151184,Lisa,Queens,Kew Gardens,40.70899,-73.82814,Private room,90,90,0,,,1,365 +15411277,Discounted! Cute Unique 2BR Apartment in SoHo,1475812,Ignani,Manhattan,Nolita,40.72216,-73.99571,Entire home/apt,275,2,32,2019-07-01,1.14,3,41 +15411327,Very comfortable and cozy room in Williamsburg!!!,8113117,Kateryna,Brooklyn,Williamsburg,40.71228,-73.95323,Private room,80,2,181,2018-12-24,5.42,1,52 +15411945,"Clean, cozy bedroom in luxury building",28007844,Nan,Manhattan,Midtown,40.74459,-73.99061,Private room,108,1,1,2017-01-03,0.03,1,0 +15411988,Honey and milk - A creative studio apartment.,98714463,Georges,Manhattan,Hell's Kitchen,40.76043,-73.995,Private room,110,3,94,2019-06-24,2.83,1,26 +15419574,Historic Cottage-Style Garden Home in LIC,98810918,Robin,Queens,Long Island City,40.74629,-73.95199,Private room,95,3,56,2019-05-08,1.71,1,50 +15420038,Wonderful private room in Williamsburg,98816024,Elisa,Brooklyn,Williamsburg,40.7111,-73.94352,Private room,95,3,24,2018-06-25,0.73,1,5 +15421244,La Casa in Brooklyn: Stylish Apt. with Patio,98828133,Noelky,Brooklyn,Crown Heights,40.67183,-73.94934,Entire home/apt,160,2,129,2019-07-07,3.91,1,220 +15421279,comfortable private room in Hamilton Heights,21600813,Sajad,Manhattan,Harlem,40.82991,-73.94848,Private room,50,2,28,2018-08-26,0.85,1,0 +15422083,Comfy Room n Activist & Artist Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.68989,-73.95878,Private room,45,7,14,2018-09-30,0.42,3,364 +15422352,Private Room w/ .5 bath in Charming - West Harlem,62852828,Latrisha,Manhattan,Harlem,40.82415,-73.95283,Private room,200,2,0,,,2,89 +15423388,Designer's Loft in Williamsburg,25549229,Pauline,Brooklyn,Williamsburg,40.70677,-73.96745,Private room,101,1,91,2019-06-19,2.74,2,12 +15423552,Manhattan Upper West Side 1 BR by Central Park,98853519,Joe,Manhattan,Upper West Side,40.80209,-73.96196,Entire home/apt,174,4,12,2019-01-03,0.44,1,0 +15423623,Wonderful private room in Williamsburg,7157161,Patrick,Brooklyn,Williamsburg,40.71274,-73.94521,Private room,90,1,2,2016-10-23,0.06,1,341 +15423725,Cozy and spacious room with private bathroom,2807776,Axel,Brooklyn,Flatbush,40.65087,-73.96467,Private room,65,2,69,2019-06-24,2.08,2,60 +15423731,Historic and Quiet 2 Bedroom w Backyard,48804458,Andrew,Queens,Ridgewood,40.70349,-73.8994,Entire home/apt,94,6,96,2019-06-28,2.96,2,48 +15423923,Private room in Brooklyn,98726662,Lei,Brooklyn,Sheepshead Bay,40.60948,-73.95803,Private room,39,2,66,2019-07-05,2.01,3,62 +15423962,Cozy studio in Brooklyn,98726662,Lei,Brooklyn,Sheepshead Bay,40.60985,-73.95927,Private room,39,3,18,2019-03-16,0.54,3,1 +15425744,"Charming ,cozy private bedroom",96892684,Yahaira,Manhattan,Washington Heights,40.83923,-73.94557,Private room,65,1,113,2019-06-30,3.63,1,266 +15430782,Most walkable location for fun,14016646,Justin,Manhattan,Greenwich Village,40.72962,-73.99932,Private room,100,5,18,2017-10-29,0.56,1,0 +15431463,Brooklyn Heights brownstone garden-level studio,2000143,Steven,Brooklyn,Brooklyn Heights,40.69468,-73.99327,Entire home/apt,100,3,24,2019-03-07,0.72,1,2 +15433822,Large and bright cozy room in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77777,-73.94914,Private room,100,7,13,2018-01-02,0.41,3,0 +15435714,A calm & peaceful spot to relax in the buzzing NYC,57696968,Shapel,Queens,South Ozone Park,40.67711,-73.8054,Private room,29,1,73,2018-08-12,2.20,1,0 +15435899,"Artsy, Sun-Soaked Pre-War Williamsburg Apt",26328087,Genevieve,Brooklyn,Williamsburg,40.71373,-73.94794,Entire home/apt,150,10,4,2016-11-20,0.12,1,93 +15436384,Beautiful BR in quiet Greenpoint,5664607,Sean,Brooklyn,Greenpoint,40.73363,-73.95333,Private room,110,2,3,2019-05-11,0.12,1,2 +15436402,Modern style apartment with balcony in Astoria,11082833,Mash,Queens,Astoria,40.76231,-73.92354,Entire home/apt,80,2,1,2017-01-23,0.03,1,0 +15436666,Light filled Bowery 1BD apartment,28809087,Clara,Manhattan,Chinatown,40.71809,-73.99655,Private room,200,3,0,,,1,0 +15436800,Independent entrance,67619393,Arthur,Queens,Corona,40.73759,-73.86351,Private room,37,3,30,2019-06-18,0.98,1,48 +15436836,Carroll Gardens Apartment,8977158,Viki,Brooklyn,Carroll Gardens,40.68384,-73.99813,Entire home/apt,175,2,129,2019-06-22,3.92,2,206 +15436871,Entire Spacious 2 Bed Apt on UWS,7610841,Jenny,Manhattan,Upper West Side,40.80173,-73.96175,Entire home/apt,375,2,40,2019-06-15,1.54,2,285 +15437413,Spacious 1 Bedroom at Central Park,4970150,Sawyer,Manhattan,Upper West Side,40.78152,-73.97249,Entire home/apt,249,2,18,2018-11-04,0.55,1,0 +15437906,Southern comfort in Harlem,65147357,Tony,Manhattan,East Harlem,40.79543,-73.93539,Private room,80,1,15,2019-06-02,0.45,1,0 +15437922,"Bright Room, Luxury Building, 3 Stops To Manhattan",17849213,Alexey,Brooklyn,Williamsburg,40.71506,-73.93816,Private room,90,1,52,2019-07-06,2.88,2,52 +15438016,Awesome room and rooftop deck in East Williamsburg,27506975,Nick,Brooklyn,Williamsburg,40.70553,-73.94267,Private room,90,2,1,2016-10-17,0.03,1,0 +15444619,Brklyn Hts Luxury - Garden Calm & Downtown Verve,35648363,Luke,Brooklyn,Brooklyn Heights,40.69183,-73.99202,Entire home/apt,250,2,119,2019-07-01,3.62,1,230 +15445427,Doorman Time SQ View 2 bed 2 bath 5200,16098958,Jeremy & Laura,Manhattan,Theater District,40.76273,-73.98397,Entire home/apt,290,30,0,,,96,0 +15446631,"Light & Airy Chelsea Bungalow (ok, apartment)",73373504,Javier,Manhattan,Chelsea,40.74068,-74.00295,Entire home/apt,180,2,134,2019-06-27,4.17,1,70 +15447048,"Brooklyn, Where my story begins...",10238963,Cathy,Brooklyn,Bay Ridge,40.62652,-74.0196,Entire home/apt,95,3,7,2018-09-09,0.22,1,0 +15447090,"Luxury Condo, High Fl, River Views, Balcony, Food",96996010,Laurence,Manhattan,Murray Hill,40.74698,-73.97218,Private room,205,1,23,2019-05-02,0.91,1,363 +15447148,Modern luxury w/views of WTC,37694131,Sara,Brooklyn,Prospect-Lefferts Gardens,40.65737,-73.94607,Private room,87,1,11,2019-01-05,0.36,1,361 +15449415,Lux 2 Bedroom NYC Apt on the Hudson River!,30283594,Kara,Manhattan,Hell's Kitchen,40.76253,-73.99803,Entire home/apt,379,30,0,,,121,185 +15449434,LARGE CENTRAL & COZY BEDROOM,64205687,Letty,Manhattan,Hell's Kitchen,40.76297,-73.98888,Private room,69,4,126,2019-06-15,3.81,1,163 +15450257,A home away from home in the heart of the UES:),30116728,Emily,Manhattan,Upper East Side,40.78324,-73.95149,Entire home/apt,125,5,1,2018-01-01,0.05,1,0 +15450724,"15 min Manhattan. Quiet, Safe, Clean, Good price",99108929,Melih,Queens,Sunnyside,40.73707,-73.92082,Shared room,30,7,4,2019-05-26,0.43,2,206 +15450848,A Life in Brooklyn,25010766,Joseph,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93058,Entire home/apt,150,2,61,2017-09-02,1.83,1,0 +15452258,COZY COOL ROOM IN MANHATTAN APT / Manhattan,37579015,Ana,Manhattan,Hell's Kitchen,40.75689,-73.99315,Private room,98,1,42,2019-06-30,1.27,5,126 +15452878,Discounted! Comfy and quiet room in SoHo.,1475812,Ignani,Manhattan,Nolita,40.72104,-73.99498,Private room,130,2,123,2019-06-07,3.79,3,59 +15452971,Cozy 1 Bedroom Apartment in Downtown Flushing,60437472,Ting,Queens,Flushing,40.76491,-73.82561,Entire home/apt,122,3,32,2019-06-12,1.06,1,84 +15453102,Large Sofa in Artist's Apartment,41393276,Alexandra,Brooklyn,Flatbush,40.64083,-73.96436,Shared room,40,1,48,2019-06-30,1.45,1,17 +15453848,Cozy Room in Crown Heights! (Female Guests Only),11304670,Katya,Brooklyn,Crown Heights,40.66469,-73.95125,Private room,29,5,3,2019-01-01,0.10,1,206 +15453985,Sunny Apartment Close to NYC's Major Attractions,99139601,Rosalia,Bronx,Mott Haven,40.81201,-73.90823,Entire home/apt,100,2,170,2019-06-25,5.16,1,83 +15454216,Convenient 2 BRs in 4BR Apartment in Williamsburg,32545798,Sasha,Brooklyn,Williamsburg,40.7146,-73.96321,Private room,90,1,1,2016-12-25,0.03,5,0 +15454775,Commuters paradise - Cozy Townhouse!,22789212,Xenios,Queens,Long Island City,40.74965,-73.94019,Private room,99,2,4,2018-07-16,0.16,1,0 +15455305,Film / photography location in unique apartment,640117,Simon,Brooklyn,Williamsburg,40.70997,-73.9624,Entire home/apt,350,1,0,,,5,364 +15455678,Comfortable and convenient space for you!,48909179,Darris,Manhattan,Harlem,40.82834,-73.9496,Private room,49,2,55,2018-12-11,1.68,1,26 +15460904,Cozy bedroom in Upper West Side,58254001,Enrique,Manhattan,Upper West Side,40.80185,-73.96807,Private room,80,3,17,2019-07-04,0.51,1,129 +15461512,Spacious Private Bedroom in the North Bronx,99205045,Liliana,Bronx,Kingsbridge,40.88283,-73.89326,Private room,60,3,2,2017-05-25,0.07,1,363 +15462051,"Private Loft-style Bedroom & En-suite in S.I., NY",99202586,Thelma,Staten Island,Randall Manor,40.63135,-74.13023,Private room,79,2,21,2019-07-01,0.64,5,355 +15462208,Spacious 2 Bedroom Apartment by Central Park,26073602,Anna,Manhattan,East Harlem,40.79575,-73.94817,Entire home/apt,145,2,101,2019-01-12,3.07,1,0 +15462245,Authentic Bklyn location with Caribbean vibes,26495690,Maureen,Brooklyn,Crown Heights,40.67141,-73.92643,Entire home/apt,90,30,0,,,1,0 +15464934,Sunny SUMMER Special! LARGE 2BR Eco-Loft,99235017,Katrin,Brooklyn,Sunset Park,40.6471,-74.0075,Entire home/apt,138,3,74,2019-06-19,2.27,1,83 +15465050,"Full Size Bed, Private Bathroom & Shower",44350279,Jp,Manhattan,Gramercy,40.73352,-73.9873,Private room,90,2,87,2019-06-18,2.62,4,242 +15467130,"Beautiful Apartment +Great location- Holidays in NY",4047395,Blanca,Brooklyn,Clinton Hill,40.68572,-73.96627,Entire home/apt,95,14,5,2018-06-04,0.17,2,186 +15468038,Urban Rustic Retreat - Shared Space,21105084,Sugeiry,Manhattan,Harlem,40.81674,-73.95292,Shared room,65,1,23,2018-06-29,0.81,2,0 +15468765,Quiet & Spacious Brooklyn Apt for Cat-Lovers,12063606,Nicole,Brooklyn,Crown Heights,40.67747,-73.9466,Entire home/apt,90,9,7,2019-05-12,0.54,1,0 +15469541,Cozy two bedroom apartment.,92708653,Renette,Brooklyn,Bedford-Stuyvesant,40.68906,-73.93675,Entire home/apt,130,3,34,2019-06-24,1.28,1,147 +15469963,Modern Sunny Room with Private Bathroom & Balcony,1419062,Igor,Brooklyn,Prospect-Lefferts Gardens,40.66149,-73.94278,Private room,70,2,48,2018-08-19,1.45,1,72 +15470122,Beautiful home in Red Hook,35095754,Lorraine,Brooklyn,Red Hook,40.67668,-74.01252,Entire home/apt,115,6,0,,,2,0 +15470678,Private Bedroom & Living Room in Williamsburg,46322461,Gabe,Brooklyn,Williamsburg,40.71996,-73.95767,Private room,100,1,7,2016-11-27,0.21,1,0 +15470951,Save$! Sleep Well! ❤NYC! Female Only!!!,99274925,Nelya,Brooklyn,Fort Hamilton,40.6179,-74.03282,Shared room,40,1,24,2019-06-28,0.78,1,89 +15473730,".ROOM, NearTrain, JFK5minLGA15min. Breakfast,2Peop",71176935,George,Queens,Richmond Hill,40.69015,-73.8297,Private room,33,1,20,2019-02-15,0.77,1,86 +15474504,Cozy Private Room 1 people by JFK,82854298,Tamicka,Queens,Cambria Heights,40.69837,-73.74255,Private room,39,1,64,2017-12-13,1.94,2,0 +15475362,1 Bedroom in Quiet Upper West Side,34687918,Nathan,Manhattan,Upper West Side,40.79284,-73.96858,Entire home/apt,120,1,0,,,1,0 +15476467,Large Space and Comfy Couch in New Apartment,13069275,Aleisha,Manhattan,Harlem,40.82245,-73.95675,Private room,75,1,19,2019-06-30,0.57,1,358 +15476794,Charming Private House,99346083,Stella,Queens,Queens Village,40.70811,-73.74103,Entire home/apt,125,30,0,,,1,365 +15477385,Charming Apartment in Brooklyn,15858985,Laura,Brooklyn,Bedford-Stuyvesant,40.68852,-73.9499,Entire home/apt,140,5,0,,,1,168 +15478604,Guest suite in owner-occupied private residence,36861300,Martin,Brooklyn,Bushwick,40.6998,-73.92167,Entire home/apt,70,2,72,2019-06-20,2.20,1,146 +15480133,BEST location & big cool apartment in Williamsburg,20534715,Ben,Brooklyn,Williamsburg,40.71434,-73.96085,Entire home/apt,250,3,16,2019-05-05,0.49,1,3 +15481609,Huge Loft Size Room with Private Bath in Hip Area!,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69115,-73.94526,Private room,65,1,194,2019-05-27,5.88,4,0 +15481730,Gorgeous Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70435,-73.92552,Private room,40,5,19,2019-06-15,0.62,3,0 +15482081,Spacious Room in Stylish Brooklyn - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69143,-73.94302,Private room,50,1,186,2019-05-29,5.65,4,0 +15482082,Spacious Studio Near the Subway,25673940,Ben,Queens,Long Island City,40.74422,-73.95432,Entire home/apt,78,3,5,2018-01-06,0.16,1,0 +15482512,Well Lit Spacious Room with Lots of Amenities,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69349,-73.94439,Private room,50,1,171,2019-05-14,5.17,4,0 +15482966,Cozy room in Sunnyside Gardens (near Manhattan),75458625,Lidia,Queens,Sunnyside,40.74693,-73.91896,Private room,72,3,9,2019-06-09,0.49,4,365 +15483201,Cute Bedroom for Two in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74777,-73.91685,Private room,108,3,36,2019-05-25,1.18,4,356 +15483662,"Spacious Room for 2 in Sunnyside, near Manhattan",75458625,Lidia,Queens,Sunnyside,40.74795,-73.91744,Private room,108,3,6,2019-05-28,0.36,4,29 +15484888,Sunny and Spacious Modern BK Heights Studio,10711869,Ayesha,Brooklyn,Downtown Brooklyn,40.69211,-73.99092,Entire home/apt,170,2,21,2019-05-26,0.64,1,8 +15484901,The Artist Retreat Duplex and Garden 1,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68271,-73.92991,Entire home/apt,125,2,118,2019-06-24,3.69,4,68 +15485880,Private entire floor/in duplex apartment...,99434002,Leo,Manhattan,East Village,40.7246,-73.97877,Entire home/apt,149,2,88,2019-06-26,2.69,1,76 +15486072,Cozy Apartment off J&M Subway Lines,19977987,Alisha,Brooklyn,Bushwick,40.70051,-73.93909,Entire home/apt,125,1,12,2017-09-26,0.38,1,0 +15492502,Nice Studio in Williamsburg,31627488,Anela,Brooklyn,Williamsburg,40.71923,-73.94258,Entire home/apt,70,1,86,2019-07-01,2.59,1,192 +15492561,Great 1 bedroom full Apartment!,7765138,Ally,Manhattan,Upper East Side,40.78057,-73.95734,Entire home/apt,120,2,13,2017-04-12,0.40,1,0 +15493096,Beautiful Private Bedroom in 2BR Apartment,14010411,Alex,Brooklyn,Prospect Heights,40.67419,-73.96423,Private room,149,3,4,2017-01-02,0.13,1,0 +15493595,Large room in an arty Brooklyn apartment,31747645,Marie Salomé,Brooklyn,Clinton Hill,40.68548,-73.96288,Private room,90,4,0,,,2,0 +15494542,Amazing Bedroom in Manhattan Midtown East Condo,31661494,Elise,Manhattan,Murray Hill,40.74817,-73.97595,Private room,150,2,74,2019-07-01,2.34,1,112 +15494796,Private Guest Room in Charming West Village Duplex,390117,Coco,Manhattan,West Village,40.73142,-74.01,Private room,250,3,8,2019-04-28,0.24,2,0 +15494968,Inviting Photographer's Loft in Tribeca,728477,Peter,Manhattan,Tribeca,40.72274,-74.00807,Entire home/apt,375,5,3,2019-06-13,0.33,1,296 +15495132,LARGE 2 BEDROOM APT NEAR CENTRAL PARK,9293730,Inna,Manhattan,East Harlem,40.78815,-73.9436,Entire home/apt,95,30,12,2019-05-14,0.38,16,338 +15495202,"*Lux Doorman,New & Modern ,Grand Central",52950465,Gal,Manhattan,Midtown,40.75315,-73.97253,Entire home/apt,129,30,2,2017-08-15,0.06,12,326 +15495356,Super quiet Apartment in East Williamsburg!!! =),26943880,Luca,Brooklyn,Williamsburg,40.71529,-73.94532,Private room,80,3,6,2017-11-05,0.20,1,0 +15495441,Quiet Room in Brownstone - Prime Location,4579626,Karen,Brooklyn,Park Slope,40.67633,-73.9793,Private room,45,1,45,2019-07-03,1.36,2,77 +15495653,Location Central Park ( only female guest ),3250450,Petya,Manhattan,Upper West Side,40.78895,-73.96754,Private room,53,31,2,2017-10-27,0.06,18,249 +15495897,Midtown East Stunner,61391963,Corporate Housing,Manhattan,Midtown,40.75592,-73.96891,Entire home/apt,125,30,8,2019-01-17,0.36,91,342 +15496314,Bluebird Hells Kitchen 1-BR + Indoor B.Ball Ct!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7624,-73.99915,Entire home/apt,534,30,0,,,18,365 +15496496,Private Oasis Room #1- Close to L and M Train.,28786801,Connie,Brooklyn,Bushwick,40.70268,-73.9265,Private room,65,1,3,2017-08-20,0.09,2,0 +15496616,Bluebird Hells Kitchen 1-BR Apt Near Central Park,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76038,-73.99951,Entire home/apt,534,30,0,,,18,365 +15497088,Bluebird Hell's Kitchen 1-BR Apt + Zero Edge Pools,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76212,-73.99756,Entire home/apt,534,30,0,,,18,365 +15497229,Bluebird Hell's Kitchen 1-BR + Killer City Views,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76188,-73.99806,Entire home/apt,534,30,0,,,18,365 +15497406,Bluebird Luxury 1 BR Apartment Near Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76173,-73.99937,Entire home/apt,534,30,0,,,18,365 +15497568,Quite & Cozy High Raise Atmosphere,23895443,Eva,Manhattan,Harlem,40.81545,-73.95806,Private room,99,1,2,2019-01-01,0.09,1,35 +15497673,Bluebird Hell's Kitchen Deluxe 2BR+ Zero Edge Pool,95459395,Bluebird,Manhattan,Hell's Kitchen,40.7619,-73.99896,Entire home/apt,748,30,0,,,18,365 +15497821,Bluebird Hell's Kitchen 2-BR + Killer City Views,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76045,-73.99929,Entire home/apt,748,30,1,2018-06-17,0.08,18,365 +15498370,Room in Modern Apartment.,7529823,Sean,Brooklyn,Crown Heights,40.67453,-73.94537,Private room,45,2,109,2019-06-18,3.30,1,131 +15500135,NYC Elegance steps 2 Central Park see all pictures,99552750,Wendy,Manhattan,Upper East Side,40.76346,-73.96684,Entire home/apt,190,4,83,2019-06-22,2.58,1,104 +15500460,My tiny Chateau,72596124,Vincent,Queens,Jackson Heights,40.74912,-73.88667,Entire home/apt,80,1,202,2019-06-24,6.13,1,143 +15501506,Feng Shui in Astoria with Balcony 150mb WiFi,19338842,John,Queens,Ditmars Steinway,40.77508,-73.91231,Entire home/apt,125,18,0,,,1,0 +15505535,Bluebird Luxury 2 BR Apartment Near Times Square!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76053,-73.99809,Entire home/apt,748,30,0,,,18,365 +15506009,LARGE 1BR Apt 25 Mins to Manhattan,6218023,Fabe,Brooklyn,Crown Heights,40.67749,-73.94386,Entire home/apt,99,180,4,2017-01-29,0.12,1,365 +15506908,Be a New Yorker for a few days,39461895,Shai,Manhattan,Nolita,40.72021,-73.99592,Entire home/apt,229,10,9,2019-05-26,0.27,1,137 +15507375,"Private Studio, Oceanside beautiful and safe area",32052000,Gennady + Laura,Brooklyn,Manhattan Beach,40.57821,-73.94122,Entire home/apt,55,4,91,2019-06-28,2.82,2,215 +15507436,BEAUTIFUL RENOVATED APT. 208,99539943,Grand,Manhattan,Midtown,40.74828,-73.98401,Private room,189,1,4,2018-02-15,0.12,1,365 +15508132,Can’t Beat this Location!!,99629743,Leatha,Brooklyn,Clinton Hill,40.68769,-73.96604,Entire home/apt,449,2,78,2019-06-30,2.47,2,347 +15508399,Doorman Huge 2 bed with 3 Beds 5145,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76702,-73.98741,Entire home/apt,202,30,3,2017-09-06,0.11,96,327 +15509545,2Bedroom apt.+WF(1-5 guests) Private Bath/Kitchen,99643776,Claire,Manhattan,Lower East Side,40.71806,-73.99351,Entire home/apt,250,3,41,2019-06-22,1.42,2,147 +15509546,NYC SoHo Prime Location,49519202,Will,Manhattan,SoHo,40.72576,-74.00381,Private room,85,5,0,,,1,0 +15510233,PRIVATE ROOM IN COMFORTABLE APT.,43718548,Manuel,Manhattan,Inwood,40.8622,-73.93349,Private room,52,3,16,2018-10-15,0.49,1,0 +15510279,Studio in Mott Haven-1 subway stop from Manhattan,99651727,Lucia,Bronx,Mott Haven,40.81072,-73.92349,Entire home/apt,120,2,26,2019-06-19,0.85,1,260 +15511681,"Quiet, Cozy, ELEVATOR, Queen Bedroom near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77344,-73.94911,Private room,90,2,61,2019-05-25,1.84,3,0 +15511695,Hip&quiet,39837217,Leo,Brooklyn,Bushwick,40.70012,-73.93775,Private room,74,3,16,2019-05-18,0.48,2,131 +15511749,"New Listing---Clean, Spacious 1-Bedroom in SoHo",99665419,Nicole,Manhattan,SoHo,40.72391,-74.00658,Entire home/apt,75,4,9,2018-10-17,0.53,1,0 +15513127,Brooklyn Apartment,62644193,Elle,Brooklyn,East Flatbush,40.64335,-73.92981,Private room,70,1,0,,,1,157 +15517104,Top floor of a charming Brooklyn townhouse,1486872,Kelly,Brooklyn,Gowanus,40.66881,-73.99178,Entire home/apt,147,5,85,2019-02-24,2.58,2,0 +15517755,Huge Bedroom w/direct access to backyard,30047867,Camila,Brooklyn,Bedford-Stuyvesant,40.68707,-73.94437,Private room,50,2,3,2017-01-05,0.09,1,0 +15518025,"Cozy East-Village Walk, Blocks from Union Square",24634123,Amanda Brooke,Manhattan,East Village,40.72978,-73.98584,Entire home/apt,250,5,1,2016-10-18,0.03,1,0 +15519679,Private Room in Beautiful Apartment,2276763,Kristy,Manhattan,Harlem,40.81678,-73.93836,Private room,40,5,3,2019-01-01,0.16,1,0 +15520060,Charming Home in Chelsea,1098809,Michael,Manhattan,Chelsea,40.74244,-73.99781,Entire home/apt,200,3,41,2019-06-13,1.24,1,1 +15520503,Artsy room in warehouse style apartment,10966079,Ward,Brooklyn,Williamsburg,40.70915,-73.96102,Private room,80,4,116,2019-06-26,3.50,2,133 +15520792,Huge & Sunny Room in Williamsburg w Roof,42328181,Guillaume,Brooklyn,Williamsburg,40.71969,-73.94135,Private room,100,2,0,,,1,0 +15521674,Nice Room in Charming Apt.,8338942,Victor,Manhattan,Nolita,40.72228,-73.99582,Shared room,65,1,8,2019-05-18,0.24,4,0 +15522627,Cozy Quiet Upgraded Prvt Rm in House in the Slope!,90771408,Albert,Brooklyn,South Slope,40.66565,-73.99172,Private room,70,1,30,2019-06-05,0.91,1,297 +15523119,"3 bedroom, second floor and cozy",96148809,Raymond,Brooklyn,Bedford-Stuyvesant,40.68227,-73.93479,Entire home/apt,150,2,100,2019-07-05,3.26,1,0 +15523281,1 bedroom to yourself in Midtown Manhattan!,96595601,Tristan,Manhattan,Midtown,40.75966,-73.96313,Entire home/apt,135,3,21,2019-05-12,0.67,1,0 +15527416,A sunny healthy big bedroom,99804239,Kartika,Queens,Elmhurst,40.74262,-73.87907,Private room,51,2,100,2019-06-18,3.05,1,296 +15528972,2 Bedroom in Upper West right next to Central Park,99865195,Sam,Manhattan,Upper West Side,40.79772,-73.96213,Entire home/apt,335,4,59,2019-05-12,1.89,1,263 +15529123,"Park slope, floor through garden apartment",8940513,Martha,Brooklyn,Park Slope,40.67148,-73.97479,Entire home/apt,198,7,43,2019-06-12,1.36,1,241 +15529336,Lower East Side Private Room - Elevator Building,94945743,Ryan,Manhattan,Lower East Side,40.71546,-73.98907,Private room,120,6,3,2018-05-26,0.09,1,0 +15529937,Private room in busy location Br,98726662,Lei,Brooklyn,Sheepshead Bay,40.60983,-73.95887,Private room,39,2,26,2019-01-02,0.98,3,101 +15531089,Spacious room in cozy 4-brm Union Square apt!,7453255,Nora,Manhattan,East Village,40.73199,-73.98956,Private room,51,7,0,,,1,0 +15531352,"Peaceful Getaway, minutes from NYC attractions!",94100727,Mirtha,Queens,Glendale,40.69426,-73.8964,Entire home/apt,87,2,36,2017-09-03,1.11,1,0 +15531889,Charming & Cool Bushwick 2 Bedroom,30380688,Ashley,Brooklyn,Bushwick,40.68502,-73.90883,Entire home/apt,145,2,142,2019-07-05,4.41,1,218 +15532430,Quiet room near beach in residential area.,6051934,Susan,Staten Island,Midland Beach,40.56933,-74.09493,Private room,80,1,7,2018-11-04,0.22,1,358 +15535079,"Cozy room in Williamsburg,only 1 stop to Manhattan",6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70908,-73.96146,Private room,90,2,2,2018-05-11,0.09,2,0 +15535391,BedStuy Beautiful Spacious Garden Apartment,5503249,Crystal,Brooklyn,Bedford-Stuyvesant,40.68127,-73.92686,Entire home/apt,125,7,29,2019-05-22,0.95,1,347 +15535864,Sleek 1BR + private bath in beautiful brownstone,59909443,Kobby,Brooklyn,Bedford-Stuyvesant,40.67764,-73.92241,Private room,75,3,5,2018-09-09,0.15,1,145 +15536769,Charming and Cozy one bedroom,27443229,Brit,Manhattan,Chinatown,40.7161,-73.99828,Entire home/apt,140,2,43,2019-01-03,1.32,1,0 +15537258,889 Bushwick Ave,74442807,Sean,Brooklyn,Bushwick,40.69477,-73.92611,Private room,2000,5,1,2019-01-05,0.16,1,0 +15538057,Cute room for rent,84141567,Alida,Queens,Maspeth,40.73577,-73.89981,Private room,75,1,1,2018-10-25,0.12,3,173 +15539709,"NYMT05-1 LUXURY! Studio, Time square/Doorman stu-5",39890192,Laura,Manhattan,Hell's Kitchen,40.76406,-73.98868,Entire home/apt,150,45,6,2019-03-31,0.21,12,267 +15542745,"Cozy , Cute and Spacious one bedroom Brooklyn Apt",37082109,Camille,Brooklyn,Bay Ridge,40.62413,-74.03085,Entire home/apt,90,1,0,,,1,0 +15543090,Brooklyn Room in Hip Neighborhood - Close to Train,99392252,Michael,Brooklyn,Bedford-Stuyvesant,40.69172,-73.94446,Private room,61,1,181,2019-05-27,5.47,4,0 +15543169,Charming and Private Clinton Hill Hide-Away,11845677,Kim,Brooklyn,Clinton Hill,40.68229,-73.96154,Entire home/apt,160,2,97,2019-07-05,3.00,1,68 +15544672,Comfortable large room in a great neighborhood!,24880134,Cam,Brooklyn,Prospect Heights,40.67915,-73.96923,Private room,69,14,7,2018-10-31,0.33,3,0 +15545469,Modern Bedroom with Best View in Brooklyn,14482375,Lara & David,Brooklyn,Greenpoint,40.72214,-73.94345,Private room,199,3,20,2019-06-27,0.66,3,0 +15546982,Chill in Downtown Brooklyn Clinton Hill Pratt Univ,100718,Brian,Brooklyn,Clinton Hill,40.69278,-73.965,Entire home/apt,95,1,13,2019-06-23,0.41,1,0 +15548301,Small room w/backyard,97521826,Armelle,Brooklyn,Bedford-Stuyvesant,40.68816,-73.95791,Private room,120,3,1,2018-08-31,0.10,1,179 +15549056,Stay on Madison,53301314,Pascal,Manhattan,East Harlem,40.80832,-73.93889,Entire home/apt,200,3,58,2019-06-26,2.12,1,152 +15550900,Bright large Williamsburg 1 bed apartment,6521189,Paul,Brooklyn,Williamsburg,40.70953,-73.96445,Entire home/apt,190,5,18,2019-05-29,0.57,1,5 +15551245,可愛いレンガの壁のお部屋/ Manhattan,20915650,Ayami,Manhattan,East Harlem,40.79324,-73.94037,Private room,65,7,1,2016-12-31,0.03,1,0 +15552357,TOP FLOOR TRANQUIL & BEAUTIFUL BROWNSTONE LIVING,100107219,Antoine,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94614,Entire home/apt,160,2,68,2019-07-02,2.05,1,48 +15552862,Elegant NYC . Walk to Central Park. New clean safe,100113704,Max,Manhattan,Upper East Side,40.76443,-73.96603,Entire home/apt,235,4,75,2019-07-05,2.33,1,151 +15552901,Near at the JFK 15 minutes,84562269,Finely,Queens,Queens Village,40.71935,-73.75383,Private room,35,2,5,2019-04-23,0.18,2,0 +15553495,Sunny Room on Historic Clinton Ave. in Fort Greene,2500106,Ariel,Brooklyn,Clinton Hill,40.68908,-73.9678,Private room,65,2,18,2018-12-16,0.55,1,0 +15553994,Convenient & Cute in Gramercy,14676072,Michelle,Manhattan,Gramercy,40.73626,-73.98104,Entire home/apt,180,3,0,,,1,0 +15554154,Pvt room W/AC/Heater 9pm-9am 12mintoNY&10mintoLGA,100128949,Lisa,Queens,Long Island City,40.74364,-73.94676,Private room,55,14,20,2019-01-02,0.61,4,2 +15559457,"Furnished room close to most, 15min to Grand Cent.",100182541,Jill,Brooklyn,Greenpoint,40.73577,-73.95118,Private room,50,20,2,2017-05-26,0.07,1,0 +15560258,Tribeca/Chinatown Converted Loft,24297098,Christine,Manhattan,Chinatown,40.71807,-74.00215,Entire home/apt,100,6,1,2016-11-01,0.03,1,0 +15560799,BEAUTIFUL NEW Renovated Apt!!,100197679,Grand,Manhattan,Midtown,40.74768,-73.98723,Entire home/apt,195,1,2,2018-01-15,0.06,1,351 +15561163,"Large Cozy Bedroom Apartment, brownstone",100202479,Michelle,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92864,Entire home/apt,100,3,86,2019-06-28,3.02,1,25 +15562465,"Spacious Apt on the Park, 1 blk from L Train",7149725,Katie,Brooklyn,Bushwick,40.70236,-73.92232,Entire home/apt,185,5,2,2016-11-26,0.06,1,0 +15563361,Cozy One-Bedroom in Park Slope,23955743,Susan,Brooklyn,Park Slope,40.67879,-73.97438,Entire home/apt,135,1,12,2017-03-22,0.37,1,0 +15563416,Cozy apartment in East Village,8598491,Antonia,Manhattan,East Village,40.72275,-73.97598,Entire home/apt,175,2,27,2018-09-16,0.82,1,63 +15563563,NEW- Bright 2 Bed Williamsburg Loft w/Private Roof,40991179,Justin,Brooklyn,Williamsburg,40.72022,-73.95814,Entire home/apt,345,3,13,2019-05-27,0.41,2,9 +15564125,High End 4 bedroom in best location in Ditmas Park,12214869,Ches,Brooklyn,Flatbush,40.63766,-73.96611,Entire home/apt,275,2,102,2019-06-23,3.14,1,276 +15564955,Sleep Cosy in an Elegant Midtown East Apartment,437960,Denise,Manhattan,Midtown,40.76135,-73.96645,Private room,230,8,4,2018-04-12,0.17,1,87 +15565299,Cozy Bedroom & Beautiful Apt in Williamsburg,12126100,Darren,Brooklyn,Williamsburg,40.71538,-73.94712,Private room,85,2,26,2018-10-08,0.80,1,221 +15566106,Charming fun bohemian meets anthropology apt,10608644,Sarah,Brooklyn,Bedford-Stuyvesant,40.68526,-73.94099,Entire home/apt,130,3,10,2019-06-23,0.39,1,89 +15568616,Immaculate Apt 15 minutes to midtown NYC by train.,6588016,Joanne,Queens,Long Island City,40.76112,-73.92631,Entire home/apt,79,3,43,2019-06-23,1.35,1,105 +15568740,"Spacious, comfortable, UES private room",37907767,Lauren,Manhattan,Upper East Side,40.7673,-73.96043,Private room,110,1,1,2016-12-03,0.03,1,0 +15569399,LOVELY PRIVATE BED ROOM 12 MINS FROM JFK,96424121,Pamela,Queens,St. Albans,40.7036,-73.76637,Private room,63,1,63,2019-07-05,1.91,3,363 +15576821,New York City best 5 stars professional rooms.,55948559,Barry,Bronx,Pelham Gardens,40.86663,-73.84139,Private room,35,1,117,2019-06-23,4.66,4,34 +15581948,Comfortable Private Room in Historic Park Slope,66602200,Marie-Line,Brooklyn,Park Slope,40.67688,-73.97602,Private room,100,2,131,2019-06-25,3.97,1,126 +15582096,Cozy Private BR in PERFECT West Village Apt,80379,Ryan,Manhattan,West Village,40.7359,-74.00191,Private room,120,1,107,2019-07-01,3.25,1,83 +15582426,A Place For You tonight...,39476034,James,Queens,Jamaica,40.67203,-73.76711,Private room,159,1,0,,,2,179 +15582683,One of a kind Sun Filled Elegant Studio.,100401692,Tiffany,Brooklyn,East Flatbush,40.6393,-73.9472,Entire home/apt,90,3,53,2019-06-07,1.61,1,201 +15585484,Awesome apartment in the heart of Soho,100421535,Fernanda,Manhattan,SoHo,40.72524,-74.00218,Entire home/apt,350,5,2,2016-12-31,0.06,1,0 +15589099,PRIVATE SPACE L TRAIN BEDFORD STOP!,51779729,Andrew,Brooklyn,Williamsburg,40.71721,-73.95965,Entire home/apt,140,28,14,2019-04-30,0.42,1,234 +15591309,172 Henry St - Sunny & Big Room (5th Floor),8962305,Cici,Manhattan,Lower East Side,40.71214,-73.98955,Private room,90,5,10,2018-10-22,0.30,3,20 +15595648,MODERN & LUXURY HIRISE 2BR IN CHELSEA~SKYLINE VIEW,76104209,Rated,Manhattan,Chelsea,40.74476,-73.99266,Entire home/apt,487,30,0,,,33,364 +15595714,Sumptuous & Lovely Williamsburg 1 Bedroom,17301301,Catherine,Brooklyn,Williamsburg,40.70981,-73.94239,Entire home/apt,110,2,11,2018-02-19,0.35,1,0 +15596521,LUXURY HIRISE 1 BR IN CHELSEA~ENJOY THE CITY,76104209,Rated,Manhattan,Chelsea,40.74633,-73.99201,Entire home/apt,300,30,0,,,33,364 +15596539,Large Private Bedroom in a 3 Story Brown Stone,1427352,Tara,Brooklyn,Bedford-Stuyvesant,40.69098,-73.92622,Private room,40,2,2,2017-10-23,0.06,1,0 +15597119,Luxury Williamsburg apt w/rooftop,2456412,Amy,Brooklyn,Williamsburg,40.71524,-73.96229,Entire home/apt,200,2,3,2017-01-05,0.09,1,0 +15597266,Beautiful home near beach & JFK!,97536353,Chadine,Queens,Arverne,40.59055,-73.79281,Private room,60,1,5,2017-10-17,0.16,2,158 +15597600,Design Hideaway in a Classic Brooklyn Townhouse,1781401,Emily,Brooklyn,Bedford-Stuyvesant,40.68714,-73.93443,Entire home/apt,155,4,44,2019-06-15,1.71,1,98 +15598303,Cozy Bedroom in cute Clinton Hill brownstone apt!,15055897,Heather,Brooklyn,Clinton Hill,40.69043,-73.96736,Private room,75,2,1,2016-10-24,0.03,2,0 +15598367,Cozy Private Room 1-2people,82854298,Tamicka,Queens,Cambria Heights,40.69857,-73.74225,Private room,47,1,63,2017-10-22,1.95,2,0 +15598548,Charming Brooklyn Garden Apartment,263882,Eva Maria,Brooklyn,Bedford-Stuyvesant,40.68084,-73.91116,Entire home/apt,139,2,151,2019-06-30,4.64,2,284 +15602953,Central..Comfort. All inclusive room,68787921,Hurriyet Aydın /,Brooklyn,Bedford-Stuyvesant,40.68817,-73.92319,Private room,39,3,33,2019-01-11,1.03,4,146 +15603347,Comfortable room in a chic and modern house,515095,Mei,Brooklyn,Carroll Gardens,40.67855,-74.00075,Private room,79,2,74,2019-07-01,2.24,2,45 +15604499,The Parachute Loft Bedrm 1,62605071,Anna,Brooklyn,Coney Island,40.57505,-74.00161,Private room,95,1,76,2019-07-05,2.44,2,163 +15604507,A Serene ambiance that will sooth your soul,100586983,Kessy-Ann,Brooklyn,East New York,40.66733,-73.88348,Entire home/apt,93,1,209,2019-06-15,6.35,1,86 +15605295,Incredible room in Brooklyn,24346282,Bharat,Brooklyn,Park Slope,40.67729,-73.98122,Private room,71,7,12,2018-09-11,0.36,1,0 +15606875,Private Studio Apartment in Bushwick,96101938,Mary,Brooklyn,Bushwick,40.69636,-73.92482,Entire home/apt,88,2,19,2018-12-29,0.62,1,0 +15614302,2. Private 1BR Suite in Shared Marine Park Apt.,78276061,David,Brooklyn,Flatlands,40.61863,-73.93183,Private room,55,2,39,2019-06-29,1.27,1,247 +15615535,Spacious Upper West Side Studio near Central Park,74815132,Kristen,Manhattan,Upper West Side,40.78825,-73.97231,Entire home/apt,115,5,5,2017-04-09,0.16,1,0 +15618325,Sunny Prospect Park One Bedroom Apartment,19313463,Jp,Brooklyn,Windsor Terrace,40.65136,-73.9746,Entire home/apt,75,5,25,2019-04-23,0.78,1,6 +15618546,Sunny Immaculate Spacious 1-bdrm-1 block to C Park,5598880,Debbie,Manhattan,Upper West Side,40.79985,-73.96138,Entire home/apt,135,7,7,2018-03-19,0.22,1,99 +15620823,LOCATION! | Fabulous Studio | Greenwich Village,23744032,Seth,Manhattan,West Village,40.7365,-73.99751,Entire home/apt,209,2,157,2019-06-26,4.80,1,16 +15620833,Only Steps Away from Central Park,95623010,Chad & Noel,Manhattan,Upper West Side,40.7762,-73.97944,Entire home/apt,185,2,145,2019-06-26,4.59,1,215 +15621557,Bedroom w/ own bathroom & backyard in Bushwick!,6433320,Daniel,Brooklyn,Bushwick,40.69907,-73.92115,Private room,40,5,0,,,1,0 +15624363,Furnished Bedroom w/Private Bath in BROOKLYN,52894477,Jennifer & Inam,Brooklyn,Crown Heights,40.67033,-73.96161,Private room,48,30,3,2019-05-15,0.24,1,136 +15625492,PRIME LOCATION-EAST 62nd/BEAUTIFULLY APPOINTED 1BR,76104209,Rated,Manhattan,Upper East Side,40.761,-73.9615,Entire home/apt,154,30,0,,,33,342 +15625556,Private Room for 2 in Midtown West ☆,100721907,H,Manhattan,Chelsea,40.74929,-73.99658,Private room,78,3,87,2019-06-23,2.68,1,44 +15625579,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET!,76104209,Rated,Manhattan,Upper East Side,40.75954,-73.96099,Entire home/apt,163,30,0,,,33,364 +15627978,CENTRAL GORGEOUS STUDIO - HUGE PRIVATE TERRACE,100746171,Ana,Manhattan,East Village,40.72515,-73.9839,Entire home/apt,129,3,76,2019-06-30,2.32,1,74 +15628789,Newly Renovate 2 Bedroom Apartment in Central Area,100757200,(Mary) Haiy,Brooklyn,Bay Ridge,40.63461,-74.02451,Entire home/apt,126,1,188,2019-06-24,5.81,1,295 +15629854,"Big Backyard! Entire 2 Story House, Near Train",42986446,Nikki,Brooklyn,Bedford-Stuyvesant,40.69136,-73.92803,Entire home/apt,229,2,8,2018-09-03,0.25,1,0 +15631921,"East Village Flat-Clean,Comfy,Close",43227390,Rose,Manhattan,East Village,40.72216,-73.97806,Private room,110,3,7,2017-07-31,0.22,1,0 +15632312,Bright and Sunny 2 Bedroom Apt.,9329143,Janna,Manhattan,East Harlem,40.79931,-73.94196,Entire home/apt,170,6,3,2018-12-30,0.16,1,0 +15632470,"Cozy Bedroom in Astoria, 17 min from Times Square",84841205,Yorgos,Queens,Astoria,40.76227,-73.92316,Private room,55,4,104,2019-07-02,3.29,1,53 +15632516,Beautiful room in Spacious Duplex,1327518,Dawn,Brooklyn,Bushwick,40.69061,-73.91348,Private room,40,30,0,,,1,5 +15633510,Light-Filled Corner Glass Apartment,17328624,Marcus,Brooklyn,Prospect-Lefferts Gardens,40.65731,-73.94693,Entire home/apt,200,5,9,2018-07-16,0.29,1,166 +15633514,Great Bedroom in Homey Apartment,4808861,Christian,Manhattan,Midtown,40.75622,-73.96768,Private room,125,1,0,,,1,0 +15633727,Cute 1-bedroom in the East Village,16641743,Shy,Manhattan,East Village,40.72952,-73.98388,Entire home/apt,140,7,1,2016-11-07,0.03,1,0 +15634892,"Adorable, NYC studio for the holiday!",15353668,Bria,Manhattan,Midtown,40.75228,-73.97186,Entire home/apt,144,28,0,,,1,90 +15635167,Co-op Apartment in The Lombardy Hotel- 250 sq. ft.,100829279,Ian,Manhattan,Midtown,40.76195,-73.97148,Entire home/apt,210,1,202,2019-06-15,6.40,3,211 +15635287,Room near NYC airports + trains,87393824,Sylvette,Queens,Jamaica Hills,40.71245,-73.79806,Private room,65,1,16,2018-01-14,0.50,1,0 +15640345,TOP LOCATION/EXPOSED BRICK. CNTRL PRK AND MUSEUMS!,76667674,Robin,Manhattan,Upper East Side,40.76397,-73.96245,Entire home/apt,186,2,109,2019-06-27,3.42,1,77 +15641562,SPACIOUS STUDIO APT 3 IN PROSPECT LEFFERTS GARDENS,3270460,William M.,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.95865,Entire home/apt,100,5,54,2019-07-07,1.69,2,0 +15643425,Spacious Victorian home,11742138,Susan,Brooklyn,Flatbush,40.63667,-73.96705,Entire home/apt,250,4,3,2019-06-25,1.07,1,35 +15644644,Queen bedroom with private bathroom in Brooklyn,72029809,Flavia,Brooklyn,Bedford-Stuyvesant,40.69364,-73.93303,Private room,89,5,1,2016-10-23,0.03,1,0 +15646546,"Great apt, Next to 1 train.",98235552,Ali,Manhattan,Harlem,40.82364,-73.9533,Private room,60,3,0,,,1,0 +15646864,Williamsburg / Greenpoint 1500 square foot apt,8712217,Tim,Brooklyn,Greenpoint,40.72667,-73.95221,Entire home/apt,200,4,0,,,1,0 +15647143,Lovely 2 Bedroom with Balcony on UWS,531006,Kaya,Manhattan,Upper West Side,40.79039,-73.96789,Entire home/apt,180,4,9,2018-07-22,0.37,1,0 +15647980,"CLEAN, PRIVATE ROOM CLOSE TO THE CITY AND JFK.",100970583,Maria,Queens,Woodhaven,40.68774,-73.8593,Private room,50,4,82,2019-06-11,2.52,2,215 +15648008,Sunny studio loft in Brooklyn,18727732,Michelle,Brooklyn,Williamsburg,40.71783,-73.94104,Entire home/apt,160,3,12,2019-05-27,0.93,1,0 +15648096,Spacious 2 bedroom close to Manhattan,100971588,,Bronx,Highbridge,40.83844,-73.92489,Entire home/apt,75,4,37,2019-07-07,1.21,1,26 +15648413,"MUSEUM MILE, CENTRAL PARK & SUBWAY in #1 LOCATION!",80262218,Laila,Manhattan,Upper East Side,40.77117,-73.95599,Entire home/apt,145,30,5,2019-05-27,0.23,3,177 +15648993,Brooklyn Historic Brownstone with Garden,57125089,Lauren & Anthony,Brooklyn,Bedford-Stuyvesant,40.68118,-73.91107,Entire home/apt,119,2,152,2019-06-24,4.68,1,14 +15649021,"Cool private room in Astoria, New York!",14422390,Bill,Queens,Astoria,40.76625,-73.93295,Private room,49,1,12,2017-07-19,0.37,1,0 +15655332,Spacious Brooklyn Loft Apartment & Rooftop Deck,36743809,Hilary,Brooklyn,Williamsburg,40.71443,-73.94153,Entire home/apt,300,2,2,2016-11-26,0.06,1,310 +15657915,Beautiful modern room in SoHo,1475812,Ignani,Manhattan,Nolita,40.71995,-73.99461,Private room,140,2,66,2019-05-31,2.05,3,44 +15658350,Large Brooklyn loft close to everything,432149,Cressida,Brooklyn,Bedford-Stuyvesant,40.69905,-73.94451,Entire home/apt,98,2,0,,,1,0 +15659634,Carroll Gardens guest suite,8977158,Viki,Brooklyn,Carroll Gardens,40.68321,-73.99681,Entire home/apt,199,2,116,2019-06-23,3.78,2,230 +15659743,Super Cute Garden Apartment in Bed-Stuy!,62256292,Inez,Brooklyn,Bedford-Stuyvesant,40.6804,-73.93648,Entire home/apt,125,3,91,2019-07-01,2.80,1,78 +15659791,Lovely studio near Grand Central /You will love it,1475015,Mike,Manhattan,Midtown,40.75105,-73.97045,Entire home/apt,95,30,0,,,52,297 +15660209,HUGE CHEERFUL PRIVATE STUDIO SUITE WITH BACKYARD,21640001,Anna,Queens,Rego Park,40.7184,-73.86015,Entire home/apt,95,2,7,2017-09-03,0.23,1,345 +15663344,Cozy Private Room in Williamsburg/Greenpoint Loft,20691787,Jeanne & Sara,Brooklyn,Greenpoint,40.72482,-73.95408,Private room,60,1,92,2018-12-23,2.85,1,0 +15663513,Townhouse South-facing ensuite,68094795,Diane And Ward,Manhattan,Upper East Side,40.76754,-73.96166,Entire home/apt,249,3,55,2019-06-30,1.75,2,1 +15663543,2 Bedrooms with room for 4,48498971,Adam,Brooklyn,Crown Heights,40.67741,-73.95386,Entire home/apt,160,30,2,2018-11-23,0.09,1,0 +15663586,Hudson Yards-Chelsea ️,101131690,Alberto,Manhattan,Hell's Kitchen,40.75751,-73.99401,Entire home/apt,175,1,22,2019-07-02,1.04,1,12 +15663603,Comfy Private Room in Hamilton Heights,101131904,Tarirai,Manhattan,Harlem,40.83124,-73.94501,Private room,40,2,59,2019-06-23,1.90,1,39 +15663646,Big furnished bedroom Williamsburg,844442,Sarah,Brooklyn,Williamsburg,40.70758,-73.94197,Private room,115,2,0,,,1,0 +15663653,"In-law unit - bedroom, living room, mini kitchen.",2305944,Misha,Brooklyn,Prospect-Lefferts Gardens,40.66082,-73.94532,Entire home/apt,79,5,48,2019-02-23,1.64,1,0 +15664037,Flatiron / Gramercy 2 Bed Studio,22067387,Blake,Manhattan,Flatiron District,40.7385,-73.98782,Entire home/apt,236,1,23,2017-07-24,0.71,1,0 +15664673,Big room in the heart of Chelsea.,86408170,Malin,Manhattan,Chelsea,40.74368,-73.99825,Private room,120,1,1,2016-10-27,0.03,1,0 +15665152,Charming 2-Bedroom Brownstone Garden Level Apt.,19282734,Eric,Brooklyn,Bedford-Stuyvesant,40.68134,-73.92226,Entire home/apt,120,3,117,2019-06-18,3.60,1,232 +15665469,Sunny and cozy bedroom in Ditmas Park,8832456,Ubi,Brooklyn,Kensington,40.64381,-73.97018,Private room,54,1,132,2019-06-23,4.03,1,70 +15665485,Sunlit Jungle Apartment,8164085,Lyles,Queens,Ridgewood,40.69692,-73.90008,Private room,56,2,9,2019-05-27,0.40,1,80 +15671751,"Cozy, Colorful Private Room on the Upper East Side",30653537,Rachel,Manhattan,East Harlem,40.78941,-73.94881,Private room,60,1,8,2017-05-14,0.25,1,0 +15672618,Beautiful Brooklyn bdrm in Prime Williamsburg,22963797,Lisa,Brooklyn,Williamsburg,40.71089,-73.96627,Private room,90,2,73,2019-06-23,2.31,1,338 +15672772,Williamsburg/Bedstuy Creative Loft,2394687,Nkoli,Brooklyn,Williamsburg,40.70005,-73.95101,Entire home/apt,260,1,1,2018-10-06,0.11,1,88 +15675274,Beautiful Upper East Side Studio,62641421,Tammy,Manhattan,Upper East Side,40.7754,-73.95236,Entire home/apt,125,2,8,2018-07-29,0.26,1,0 +15677846,Long Island City Apartment,101262037,Israel,Queens,Long Island City,40.75378,-73.93449,Private room,65,1,5,2019-04-27,0.15,1,66 +15678054,1br wburg w/ views of NYC + doorman,99145869,Sophie,Brooklyn,Williamsburg,40.71822,-73.95134,Entire home/apt,120,30,6,2018-09-24,0.29,1,164 +15678122,"Lovely Room in Greenpoint, Brooklyn",11262790,Kajsa,Brooklyn,Greenpoint,40.72474,-73.94859,Private room,55,5,3,2016-12-30,0.09,1,0 +15678623,"Spacious and Homey 2 bedroom, Express Subway Stop",3137269,Rosy,Brooklyn,Crown Heights,40.67587,-73.93175,Entire home/apt,130,3,7,2017-05-08,0.21,1,0 +15679326,豪华套间,101276529,Tracy,Queens,Flushing,40.75558,-73.83343,Private room,96,1,73,2019-06-19,2.30,1,343 +15681476,Luxury meets comfort in the heart of Williamsburg!,1314045,Tim,Brooklyn,Williamsburg,40.71361,-73.94804,Private room,109,1,228,2019-06-28,6.97,3,326 +15685669,Private room in Williamsburg. Very close to train!,1314045,Tim,Brooklyn,Williamsburg,40.71326,-73.94947,Private room,99,1,220,2019-06-30,6.71,3,352 +15686751,One bedroom in Williamsburg,48282875,Gonzalo,Brooklyn,Williamsburg,40.70604,-73.94307,Private room,55,3,4,2018-06-03,0.13,1,0 +15693063,Cloud Suite,97186572,Olive,Manhattan,West Village,40.73088,-74.00378,Entire home/apt,300,1,59,2019-06-28,1.83,1,73 +15693558,Large modern one bedroom apartment,19153021,Aliya,Manhattan,East Harlem,40.78982,-73.94263,Entire home/apt,220,7,0,,,1,0 +15699791,Cozy Winged Bedroom in the East Village,59962617,Jennifer,Manhattan,East Village,40.72635,-73.98578,Private room,155,1,1,2017-03-21,0.04,1,0 +15699803,Cozy Home in Harlem ✨,20414163,Sasha,Manhattan,Harlem,40.81102,-73.94712,Entire home/apt,133,4,23,2019-03-29,0.72,1,5 +15699850,Space & Comfort in Victorian Brooklyn home,57812046,Dave + Suzanne,Brooklyn,Flatbush,40.64008,-73.96579,Entire home/apt,180,3,5,2018-01-07,0.15,2,0 +15700484,SPACIOUS LUXURY 2 bedroom apartment in Brooklyn!,62413233,Eleanor & Kameon,Brooklyn,Bedford-Stuyvesant,40.67718,-73.91405,Entire home/apt,135,4,9,2018-05-20,0.29,1,0 +15701072,DREAM MIDTOWN RENOVATED STUDIO,101378990,Grand,Manhattan,Midtown,40.74634,-73.98704,Private room,179,1,4,2017-06-20,0.13,1,337 +15701663,Home sweet home in Harlem,26504092,Wangari,Manhattan,Harlem,40.81407,-73.95092,Entire home/apt,100,3,2,2017-01-05,0.06,1,0 +15701672,Hidden gem walking distance to Central Park.,34061867,Aydin,Manhattan,Upper East Side,40.77079,-73.95922,Private room,100,2,17,2019-07-02,0.52,1,4 +15702021,Large Room in Trendy Bushwick - 2,9864136,Anthony,Brooklyn,Bushwick,40.68602,-73.91522,Private room,45,1,2,2017-10-01,0.06,26,250 +15703294,Ultra-modern East Village apartment in luxury bldg,1446988,James,Manhattan,East Village,40.73281,-73.98686,Entire home/apt,250,4,12,2019-05-05,0.37,1,3 +15703497,Elevator Doorman GYM Deck! 5120,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74461,-73.97216,Entire home/apt,180,30,0,,,96,320 +15704180,ARTIST LOFT in WILLIAMSBURG,1407676,Jessica,Brooklyn,Williamsburg,40.71623,-73.95777,Private room,350,1,19,2019-07-03,0.64,4,244 +15704213,Room w/ Private Balcony River View,2134232,Crystal,Manhattan,Tribeca,40.71916,-74.01177,Private room,95,1,22,2017-08-18,0.68,2,0 +15706724,"Ground floor,Private garden Patio - sleeps 6 - UES",78832142,Rory,Manhattan,Upper East Side,40.77851,-73.94985,Entire home/apt,218,2,60,2019-06-19,1.85,1,305 +15706863,Jefferson Estates,101435219,Gretchen,Brooklyn,Bedford-Stuyvesant,40.69226,-73.93458,Entire home/apt,176,2,80,2019-07-01,2.52,2,197 +15707188,Beautiful Bedroom In the Heart of Harlem,50145118,Sonia,Manhattan,Harlem,40.8091,-73.94241,Private room,89,1,3,2017-08-19,0.10,3,0 +15709537,Cozy 1-bedroom apartment in LES,10773304,Lili,Manhattan,Lower East Side,40.71983,-73.98196,Entire home/apt,160,3,90,2019-06-22,3.17,1,147 +15713028,Artsy Bedroom for Solo Traveler,101113595,Chloe,Brooklyn,Bedford-Stuyvesant,40.68012,-73.93862,Private room,89,2,2,2017-01-01,0.07,1,0 +15713669,Cosy North Bronx studio apartment with Parking,101493347,Beverly,Bronx,Wakefield,40.89121,-73.85131,Entire home/apt,79,3,18,2018-09-25,0.57,1,5 +15715221,"Safe, Cozy Artist Apt Steps From Central Park",37447483,Riley,Manhattan,Harlem,40.80102,-73.95401,Private room,70,3,62,2019-06-30,1.94,1,73 +15715485,Beautiful Downtown Brooklyn Studio,8615868,Elle,Brooklyn,Park Slope,40.67829,-73.97891,Entire home/apt,100,1,0,,,1,0 +15715486,Authentic artist loft space in Prime Williamsburg,4075380,Tanya,Brooklyn,Williamsburg,40.71551,-73.96356,Entire home/apt,150,30,3,2019-05-31,0.09,1,179 +15715599,"Sprawling, Sunlit Gorgeous LOFT",7728010,Jane,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95876,Private room,63,5,9,2019-05-26,0.28,1,342 +15715946,Sunny room with private bathroom - 5m to L train,34875504,Juan P,Brooklyn,Bushwick,40.68992,-73.90951,Private room,63,2,20,2018-07-22,0.62,1,0 +15716189,Comfy private room in great Astoria neighborhood,18192996,Jessica And Danny,Queens,Ditmars Steinway,40.7785,-73.91693,Private room,55,1,5,2017-03-12,0.15,2,0 +15716633,Bright Spacious BK Room with Bath,22118802,Sara,Brooklyn,Bushwick,40.7007,-73.92359,Private room,90,3,3,2016-12-01,0.09,1,0 +15717652,Williamsburg Gem: Sleep up to 5,101529107,Natalie,Brooklyn,Williamsburg,40.71124,-73.96451,Entire home/apt,164,2,1,2017-01-04,0.03,1,0 +15717865,Beautiful private room in Queens NY,74782658,Gerardo,Queens,Glendale,40.70075,-73.88743,Private room,40,1,117,2019-07-01,3.63,1,300 +15718412,Sunny 2 bd + Private rooftop on best GP street,14521207,Megan & Matt,Brooklyn,Greenpoint,40.72831,-73.95634,Entire home/apt,250,3,2,2018-03-23,0.11,1,0 +15720448,Private Room in Luxury Building,101550977,Myko,Manhattan,Financial District,40.70488,-74.00744,Private room,95,5,45,2019-05-24,1.40,2,272 +15720449,Luxury Building - Private Room,101550977,Myko,Manhattan,Financial District,40.70602,-74.00891,Private room,90,4,61,2019-05-29,1.90,2,246 +15720498,Beautiful Bedroom: Spacious & Sunny!,25685076,Yoseph & Malky,Brooklyn,Kensington,40.63725,-73.97345,Private room,111,1,74,2019-06-30,2.28,1,156 +15720621,2 family home. Top floor with private entrance way,101557399,Lydia,Brooklyn,East Flatbush,40.6418,-73.93947,Entire home/apt,120,2,56,2019-07-07,1.82,1,85 +15721022,One-Bedroom Brooklyn Brownstone,34331702,Mariam,Brooklyn,Bedford-Stuyvesant,40.68887,-73.92903,Entire home/apt,95,4,20,2019-06-27,1.81,1,14 +15721376,Views ! - Unique penthouse in UWS,69652097,Michele,Manhattan,Upper West Side,40.80131,-73.97114,Entire home/apt,175,21,5,2019-06-24,0.19,1,0 +15721683,Your home while you explore NYC! Near Central Park,101569412,Agnes,Manhattan,East Harlem,40.78918,-73.94652,Entire home/apt,100,7,17,2018-09-17,0.54,1,11 +15721685,Perfect location: Central to everything!,39668851,Hyggens,Brooklyn,Bedford-Stuyvesant,40.68338,-73.95075,Entire home/apt,100,5,11,2019-06-14,0.44,1,298 +15721847,Colorful Artist Loft w. your own Ocean Oasis,909710,Claire,Brooklyn,Williamsburg,40.70634,-73.95338,Private room,49,5,17,2018-04-30,0.53,1,0 +15725732,"2 Bedrooms apt,Modern New Renovated",101604346,Frank W,Brooklyn,Bay Ridge,40.63447,-74.02455,Entire home/apt,116,1,213,2019-07-01,6.55,1,314 +15726990,Two-bedroom in the heart of Chelsea,15600805,Nissim,Manhattan,Chelsea,40.73975,-73.99848,Entire home/apt,265,3,2,2016-11-27,0.06,1,0 +15728780,"SOMMwhere in NYC/ a unique, conscious artists loft",148108,Fatima,Manhattan,Lower East Side,40.72297,-73.98946,Private room,333,1,40,2019-06-10,1.27,2,62 +15729325,Cozy Bedroom in a great location.,101632253,Linnette,Manhattan,East Harlem,40.78857,-73.94952,Private room,100,3,20,2018-06-10,0.66,1,188 +15732405,Enjoy the city life without the noise,101643312,Tony,Queens,Queens Village,40.72816,-73.73874,Entire home/apt,320,30,0,,,2,180 +15732669,Doorman 2 Windows City View Studio GYM W&D 5199,16098958,Jeremy & Laura,Manhattan,Theater District,40.76258,-73.98575,Entire home/apt,155,30,1,2017-01-02,0.03,96,309 +15732778,"Huge space across from park, easy to Manhattan",3398280,Megan,Brooklyn,Prospect-Lefferts Gardens,40.65776,-73.96174,Private room,65,20,3,2019-04-30,0.39,1,35 +15732919,Cozy. Clean. And affordable,101643312,Tony,Queens,Queens Village,40.72828,-73.73542,Private room,149,30,0,,,2,90 +15733438,MASTER BR/ SUITE ( PRIVATE BATHROOM ),2908180,Simone,Manhattan,East Harlem,40.7898,-73.94213,Private room,125,5,59,2019-07-02,2.03,1,110 +15733597,Bright and Charming Private Room in Williamburg!,57109253,Naveen,Brooklyn,Williamsburg,40.71365,-73.96232,Private room,70,3,12,2018-10-10,0.38,1,188 +15733832,Ponerse las Pilas - VIVO NYC!!!,101653570,The Wrights,Brooklyn,Bedford-Stuyvesant,40.68955,-73.95117,Private room,59,2,195,2019-06-21,6.01,3,40 +15734642,"Sunny huge room, 15m away from Manhattan",8076786,Suri,Brooklyn,Sunset Park,40.65888,-74.00044,Private room,89,1,2,2019-06-25,0.10,3,281 +15734793,The Perfect Pied-à-Terre for You!!!,101653570,The Wrights,Brooklyn,Bedford-Stuyvesant,40.68908,-73.95545,Private room,59,2,171,2019-06-20,5.26,3,57 +15735169,Spacious studio in Upper East Side,85726670,Priscilla,Manhattan,Upper East Side,40.77043,-73.95557,Entire home/apt,150,3,2,2019-06-09,0.08,1,0 +15735305,Wyndham Midtown Condo with Full Kitchen SPECIAL!,96098402,Wynpoints,Manhattan,Midtown,40.75365,-73.97151,Private room,369,3,8,2017-02-13,0.25,12,365 +15736079,King Sized Serenity,17043144,Kat,Brooklyn,Bushwick,40.70018,-73.93858,Private room,55,3,1,2016-11-15,0.03,1,0 +15736953,Serenity Near Time Square,83246395,Roshelle,Manhattan,Hell's Kitchen,40.75764,-73.98963,Private room,150,2,0,,,1,0 +15739930,Cozy Room Amazingly Located in Williamsburg !,44706272,Sophia And Shannon,Brooklyn,Williamsburg,40.70835,-73.955,Private room,45,3,4,2017-07-30,0.13,1,0 +15740172,"Beautiful Room close to JFK, La Guardia, LIR",101712494,Alphanso,Queens,Rosedale,40.67126,-73.72982,Private room,55,2,4,2017-10-22,0.13,2,349 +15741448,"Convenient to JFK, La Guardia Airport and Dining",101712494,Alphanso,Queens,Rosedale,40.67104,-73.73006,Private room,55,2,12,2018-09-01,0.37,2,355 +15742916,Bright and Beautiful 1br Apartment in Little Italy,8881924,Seyhan,Manhattan,Little Italy,40.71819,-73.99786,Entire home/apt,196,6,6,2019-05-27,0.20,1,268 +15743151,❤️ Beautiful/Spacious/Convenient BK Apartment!,11075539,Brett,Brooklyn,Bushwick,40.69688,-73.93396,Private room,69,2,96,2019-06-30,2.93,1,36 +15745269,Cozy and spacious 1 BR near Columbia University,25851147,Victoria,Manhattan,Harlem,40.81736,-73.95294,Private room,65,3,49,2019-05-24,1.50,1,46 +15745411,Quiet Private Bedroom with Full Size Bed in LES,6109872,Severine,Manhattan,Lower East Side,40.7209,-73.98428,Private room,100,2,16,2017-12-10,0.50,1,66 +15745528,2 TwinXL Beds Walk-To TIME SQUARE #ForReal,51830483,Nathan,Manhattan,Hell's Kitchen,40.76028,-73.98846,Private room,92,1,140,2019-06-17,4.29,2,152 +15745537,★Hip ★Subway 1 min ★Backyard ★3Beds ★Huge ★Duplex,5321130,Anna,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95245,Entire home/apt,365,5,77,2019-06-20,2.44,1,112 +15746736,Stylish Williamsburg One Bedroom Apartment,101772343,Liz,Brooklyn,Williamsburg,40.71585,-73.95325,Entire home/apt,136,30,8,2019-04-16,0.30,1,0 +15751495,"Entire home in East Village, 2BD, Family friendly",1515114,Roman,Manhattan,East Village,40.72503,-73.97851,Entire home/apt,300,10,4,2019-05-14,0.53,1,16 +15753014,"Classic Brklyn brick house w 2 bedrooms, sleeps 6.",18314550,Tim,Brooklyn,Sunset Park,40.66451,-73.99342,Entire home/apt,175,2,6,2019-04-19,0.20,1,18 +15754561,A beautiful comfy & spacious room.,87370616,Francisca,Bronx,Longwood,40.82006,-73.90332,Private room,80,2,77,2019-07-07,2.37,2,365 +15755439,2 bedroom apartment in front of prospect park,3033622,Jose,Brooklyn,Windsor Terrace,40.65237,-73.97365,Entire home/apt,90,7,1,2017-12-31,0.05,2,210 +15756117,Chic Bedford Studio,3484474,Sophia,Brooklyn,Bedford-Stuyvesant,40.68561,-73.95431,Entire home/apt,150,30,13,2019-05-31,0.41,1,220 +15756248,Glamorous upper west side Private room,12210788,Moustafa,Manhattan,Upper West Side,40.79516,-73.96813,Private room,119,1,117,2019-06-09,3.61,1,365 +15757847,Cozy Top Floor Apartment in Lovely Astoria,24867105,Jane + Abe,Queens,Ditmars Steinway,40.77176,-73.90885,Private room,75,3,0,,,1,0 +15758511,"Super spacious LES apt, close to subway/good eats!",903086,Kasey,Manhattan,Lower East Side,40.71206,-73.98824,Private room,99,5,0,,,1,0 +15758526,3 bed duplex HUGE private deck/ PRIME Williamsburg,9718720,Teddie,Brooklyn,Williamsburg,40.71889,-73.95786,Entire home/apt,450,5,15,2019-05-19,0.49,1,60 +15758553,Luxurious Williamsburg Loft with Private Patio,14258860,Alvaro,Brooklyn,Williamsburg,40.71809,-73.95283,Entire home/apt,200,5,1,2016-11-13,0.03,1,0 +15758640,Large unit in Prospect Park area townhouse,5435740,Kim & Rupert,Brooklyn,Prospect-Lefferts Gardens,40.65989,-73.95386,Entire home/apt,99,2,96,2019-05-29,2.98,1,0 +15761285,Beautiful & spacious apartment on Upper East Side,24425145,Alexandra,Manhattan,Upper East Side,40.76395,-73.96196,Entire home/apt,270,1,3,2018-03-25,0.10,1,0 +15765350,Doorman 2 Bed GYM DECK 5212,16098958,Jeremy & Laura,Manhattan,Murray Hill,40.74437,-73.97295,Entire home/apt,190,30,4,2019-01-14,0.13,96,331 +15767882,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74565,-73.99183,Entire home/apt,205,30,1,2017-12-08,0.05,87,365 +15768540,"Cozy Bushwick room w/ balcony, Longterm avail.!",868197,Coco,Brooklyn,Bushwick,40.69945,-73.92255,Private room,39,16,38,2019-06-01,1.21,1,192 +15769652,Luxury Four-Bedroom/Six Bed Apt - Prime Chelsea,101976032,Jay,Manhattan,Chelsea,40.74407,-73.99366,Entire home/apt,499,4,69,2019-06-18,2.13,1,280 +15769964,Stunning 1-Bedroom NYC Apartment on the River!,30283594,Kara,Manhattan,Hell's Kitchen,40.7617,-73.99762,Entire home/apt,275,30,2,2017-09-17,0.08,121,365 +15770469,Large sunny room Williamsburg ten mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71512,-73.95655,Private room,80,2,29,2018-10-30,0.90,2,34 +15772067,"SOHO,TRIBECA,LOFT,4500sqft.",46990279,Phenix,Manhattan,Tribeca,40.71634,-74.00505,Entire home/apt,1500,2,4,2017-09-15,0.12,1,365 +15772447,Big Sunny Room in Huge DUMBO Loft,90025899,Craig,Brooklyn,DUMBO,40.70416,-73.98539,Private room,105,2,146,2019-06-30,4.52,1,62 +15772473,Duplex Penthouse between Union Sq and East Village,12733096,Nuno,Manhattan,East Village,40.73296,-73.98884,Entire home/apt,275,2,0,,,1,0 +15772750,"Bright, Cozy & Quiet ""TreeFort""-type ONE bedroom",88895712,Matthew,Brooklyn,Williamsburg,40.71738,-73.94527,Entire home/apt,150,4,11,2019-01-04,0.36,1,0 +15773388,Cozy room in South Williamsburg BK,795031,D M,Brooklyn,Williamsburg,40.70809,-73.9519,Private room,70,2,117,2019-06-18,3.71,2,35 +15773659,Cozy studio in Chelsea for one or two travellers,6834967,Harry,Manhattan,Chelsea,40.74124,-74.00025,Entire home/apt,150,6,1,2016-11-21,0.03,1,0 +15774003,Summer 2019 Modern 2 Bedroom Flat New York City,97657342,Will & Kim,Brooklyn,Sheepshead Bay,40.60396,-73.95761,Entire home/apt,146,3,98,2019-07-01,3.11,1,79 +15774166,Lovely Bright Upper East Side,28966357,Dorothy,Manhattan,East Harlem,40.78697,-73.94469,Private room,99,2,90,2019-05-12,2.79,3,92 +15774210,"beautiful artistic 1 bdrm in Park Slope, Brooklyn",14370,Misha,Brooklyn,Park Slope,40.67358,-73.97171,Entire home/apt,125,7,1,2017-01-04,0.03,1,0 +15774266,Private modern suite in tree lined Windsor Terrace,102016115,Elizabeth,Brooklyn,Windsor Terrace,40.65131,-73.97866,Private room,125,2,89,2019-06-23,2.78,1,310 +15774629,"Spacious, Great Location, Garden, 1 stop to City.",101883929,Timothy,Brooklyn,Boerum Hill,40.68326,-73.98004,Entire home/apt,182,4,83,2019-06-23,2.82,1,254 +15775049,Room in charming new apartment,16878736,Gabriela,Brooklyn,Bedford-Stuyvesant,40.67989,-73.94298,Private room,55,2,16,2019-01-01,0.52,1,311 +15775237,Beautiful Brownstone in Boerum Hill,5450219,Thomas,Brooklyn,Boerum Hill,40.68501,-73.98581,Entire home/apt,255,3,16,2019-06-09,0.52,1,33 +15777411,"NYMT21-6 LUXURY! 1 bedroom,Cozy,Gym,doorman Ap-2",39890192,Laura,Manhattan,Hell's Kitchen,40.76383,-73.98947,Entire home/apt,160,45,17,2019-05-09,0.54,12,281 +15778177,"NYMT03-1 Luxury! 1 bedroom apt,Cozy,Gym,Rooftop 3",39890192,Laura,Manhattan,Hell's Kitchen,40.76399,-73.98971,Entire home/apt,160,45,16,2019-05-10,0.52,12,345 +15781214,Large Cozy Bedroom in Manhattan,102072740,Lindsay,Manhattan,Washington Heights,40.83837,-73.94224,Private room,75,1,2,2018-05-23,0.06,1,0 +15781324,Inviting One Bedroom Apt in Prospect Heights,61842904,Catherine,Brooklyn,Prospect Heights,40.67821,-73.96588,Entire home/apt,125,30,6,2019-01-31,0.23,3,55 +15781521,Private Room in a 3 Bedroom Apartment!,24215329,Rohan,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92271,Private room,60,2,0,,,1,0 +15781578,Bedstuy Brooklyn Huge Bed Room with Two Windows,102075715,Juan Carlos,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95224,Private room,80,1,1,2019-06-30,1,1,350 +15782266,Two BDRM Perfect CHTWN Manhattan!,101978485,Karline,Manhattan,Two Bridges,40.71165,-73.9993,Entire home/apt,125,1,59,2019-04-20,1.82,1,88 +15782300,Dream Room in Modern Apartment,102080453,Gabriela,Brooklyn,Bedford-Stuyvesant,40.694,-73.94675,Private room,54,1,166,2019-06-22,5.09,2,0 +15783216,1889 Brooklyn Firehouse Apt. Clinton Hill-BedStuy,45009,Luke,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95934,Entire home/apt,170,2,149,2019-06-28,4.60,1,1 +15783413,Classic NYC House - Large 3-Bed 2-Bath Apartment,44498923,Alexandra,Queens,Sunnyside,40.74075,-73.92619,Entire home/apt,115,3,143,2019-06-23,4.43,1,3 +15783719,Private Room in Bright Roomy 3br Brooklyn Apart.,59059294,Eric,Brooklyn,Kensington,40.6378,-73.9696,Private room,65,4,7,2019-05-27,0.22,1,0 +15783766,Cozy easy village apartment in central location,1546439,Isabel,Manhattan,East Village,40.72868,-73.99036,Private room,50,4,1,2016-11-28,0.03,1,0 +15783953,"Sun-drenched apartment, 20 mins to Manhattan",12475280,George,Brooklyn,Bedford-Stuyvesant,40.68899,-73.95555,Private room,44,28,0,,,1,0 +15784377,"Sixth Ave Chelsea, 1bd Serviced Apartment*",22541573,Ken,Manhattan,Chelsea,40.74584,-73.99103,Entire home/apt,229,30,3,2019-03-08,0.12,87,364 +15784598,Sleeps 6! 2 beds/2 ba Manhattan 1300 sq feet huge,90095700,Lee,Manhattan,Financial District,40.70966,-74.00762,Entire home/apt,375,29,0,,,1,283 +15785088,"Spacious 2 BR Clinton Hill Apartment-Brooklyn, NY",102103075,Edna + Isaiah,Brooklyn,Crown Heights,40.67923,-73.96286,Entire home/apt,139,1,216,2019-06-30,6.64,1,257 +15785785,Harrigan Luxury Townhouse Suite,102108786,Marie,Brooklyn,East New York,40.6724,-73.88839,Private room,300,3,8,2019-05-06,0.26,2,80 +15786428,Entire Floor in Great Location & beautiful Garden,24360599,Iwona,Brooklyn,South Slope,40.66132,-73.98678,Entire home/apt,85,5,5,2019-01-03,0.16,1,0 +15787037,Huge room near Manhattan w/ balcony & free pickup!,83627325,Jared,Queens,Sunnyside,40.74481,-73.91671,Private room,139,1,3,2018-07-20,0.12,4,365 +15787042,"Cozy 1 Bedroom in Brooklyn, near park and shops",33626735,Maureen,Brooklyn,Crown Heights,40.67143,-73.92971,Entire home/apt,83,30,7,2019-01-06,0.22,1,311 +15787405,1 bedroom and office room or 2 beds,52835849,Heather,Brooklyn,Bushwick,40.70165,-73.92938,Private room,50,7,0,,,2,89 +15788050,Beautiful Room in Modern Apartment,102080453,Gabriela,Brooklyn,Bedford-Stuyvesant,40.69413,-73.94481,Private room,49,1,153,2019-06-23,4.72,2,0 +15788270,Bright 1 bedroom apartment in the Village,7755859,Pierre,Manhattan,East Village,40.72891,-73.98797,Entire home/apt,120,6,46,2019-07-06,1.75,1,40 +15788312,"Subway, Subway, Subway - AAA+ Location!!!",101653570,The Wrights,Brooklyn,Williamsburg,40.70006,-73.95388,Private room,79,2,167,2019-06-14,5.14,3,21 +15789023,Stay in a Private Room Close to Manhattan :),8076496,Agnes,Queens,Astoria,40.76982,-73.93501,Private room,60,4,6,2019-06-06,0.28,1,96 +15789384,Private NYC spot,35667639,Chris,Manhattan,Stuyvesant Town,40.73167,-73.98146,Private room,175,1,6,2017-05-22,0.19,1,180 +15789405,Bedroom available in Chic & Modern loft-like apt.,7607175,Rodney,Manhattan,Lower East Side,40.7208,-73.9819,Private room,75,5,1,2017-12-19,0.05,1,157 +15790071,Elegant spacious private room,20237633,Mike,Queens,Ridgewood,40.70639,-73.90058,Private room,50,2,13,2017-06-13,0.40,1,0 +15790640,Large 1 Bedroom Three Blocks from Central Park,66823224,Nathan,Manhattan,Upper West Side,40.79386,-73.97223,Private room,80,1,111,2019-07-01,3.51,1,42 +15790816,Lovely room,70963475,Ji,Manhattan,Upper West Side,40.80237,-73.96601,Private room,110,7,1,2017-01-05,0.03,1,87 +15790820,Beautiful Room in Clinton Hill,33924547,Laura,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95339,Private room,130,3,0,,,1,0 +15797693,Clean + Private Bedroom in NYC's Lower East Side,22195599,Christopher,Manhattan,East Village,40.72025,-73.97901,Private room,67,10,14,2018-07-04,0.49,1,7 +15797728,"Modern, Ambient 1-Bedroom Apartment",28189446,Michella,Staten Island,Eltingville,40.54106,-74.14666,Entire home/apt,70,5,83,2019-07-01,2.56,1,291 +15798809,"Private, Comfortable and Big Room89",102218558,Luz Dary,Queens,Jackson Heights,40.75523,-73.88418,Private room,70,1,52,2018-07-22,1.61,1,0 +15798969,"Own Floor in Brooklyn Home, 20 min to Manhattan",58390804,Jen And Lev,Brooklyn,Flatbush,40.6459,-73.9642,Entire home/apt,153,3,64,2019-06-24,2.07,1,277 +15799563,Beautiful Duplex in Historic Park Slope Brownstone,102112347,Joanna,Brooklyn,Park Slope,40.67427,-73.97652,Entire home/apt,350,2,22,2018-10-21,0.69,1,21 +15799603,Noisy room next to Prospect Park,391488,Thalith,Brooklyn,Prospect-Lefferts Gardens,40.65762,-73.96129,Private room,500,1,0,,,1,89 +15800258,Quiet Homestead,102228163,Cesar,Brooklyn,Carroll Gardens,40.67844,-74.00028,Entire home/apt,90,7,1,2018-05-12,0.07,3,50 +15800923,Spacious and peaceful apt in East Village,25495114,Guisela,Manhattan,East Village,40.73016,-73.98171,Entire home/apt,178,9,22,2018-03-22,0.71,1,0 +15801194,"Cute,comfortable room near Columbia University",12495861,Lu,Manhattan,Upper West Side,40.80096,-73.96758,Private room,60,1,0,,,1,0 +15801420,Living excellence- deluxe 2 bedroom apt. in NYC!,30283594,Kara,Manhattan,Hell's Kitchen,40.76626,-73.98338,Entire home/apt,369,30,1,2018-01-21,0.06,121,345 +15801639,Master bedroom/20min Manhattan/individual bathroom,61601937,Yuxi,Queens,Woodside,40.74246,-73.90125,Private room,40,1,7,2017-05-27,0.23,1,0 +15802947,Boerum Hill Charming Studio,102251846,Masoud,Brooklyn,Boerum Hill,40.68898,-73.98751,Entire home/apt,160,2,127,2019-06-30,3.90,1,270 +15805025,Private Master BR/Bath - 15 Minutes to Manhattan,64336536,Ian,Brooklyn,Williamsburg,40.71805,-73.94088,Private room,95,4,0,,,1,0 +15805327,One Bedroom in Heart of LES,73561233,Stefany,Manhattan,Lower East Side,40.71853,-73.98911,Private room,86,5,0,,,1,0 +15805694,Spacious 1 Bedroom in Bushwick,78421449,Meg,Brooklyn,Bedford-Stuyvesant,40.68631,-73.92629,Private room,200,2,0,,,1,0 +15806629,Fantastic Master Bedroom,26020769,Ryan,Brooklyn,Prospect-Lefferts Gardens,40.65678,-73.95154,Private room,99,2,5,2019-03-24,0.16,1,364 +15807946,Cute and comfortable niece room with a balcony.,84141567,Alida,Queens,Maspeth,40.73529,-73.90219,Private room,65,4,0,,,3,0 +15813342,PRIVATE ROOM CLOSE TO THE CITY AND JFK AIRPORT.,100970583,Maria,Queens,Woodhaven,40.68819,-73.86079,Private room,45,4,22,2019-07-01,0.68,2,266 +15813866,LADIES ONLY! Privacy in a shared space :),27260699,J,Brooklyn,Bushwick,40.69382,-73.90925,Shared room,28,1,117,2019-05-23,4.56,4,118 +15813993,Minimalistic 1 BR in little Italy/ China town,10146370,Sara,Manhattan,Chinatown,40.7152,-73.99947,Entire home/apt,159,6,39,2019-05-25,1.31,1,351 +15814037,Luxury immaculate 2 BR apartment Prime Brooklyn,102357305,Kylie,Brooklyn,Gowanus,40.67876,-73.9904,Entire home/apt,250,5,40,2019-06-12,1.32,1,70 +15814363,Cute Two Bed - East Village,11921184,Rachel,Manhattan,East Village,40.72461,-73.98172,Private room,85,2,37,2019-05-26,1.20,1,6 +15815905,Ground Floor apt with Backyard @Lower East Side,55149412,Ha,Manhattan,Lower East Side,40.71248,-73.98662,Entire home/apt,160,1,73,2019-06-16,2.38,4,229 +15816784,big cozy room in Bed-Stuy with separate entrance,20241220,William,Brooklyn,Bedford-Stuyvesant,40.68186,-73.92173,Private room,50,2,0,,,1,0 +15816930,Spacious & Cozy Bushwick Walk-up 3mins from Train,9439324,Chérie,Brooklyn,Bushwick,40.68844,-73.90531,Private room,49,1,74,2019-06-24,2.42,3,53 +15817291,Cozy Quiet Room in the Big Apple on Broadway!!!,102383709,Mark & Will,Manhattan,Harlem,40.82914,-73.94736,Private room,69,4,153,2019-07-01,4.74,2,125 +15818145,Massive Brooklyn Brick 2 Floor Oasis,5568352,Austin,Brooklyn,Fort Greene,40.68718,-73.97289,Entire home/apt,200,2,2,2019-07-03,2,1,15 +15818253,Private room in Red Hook Artist House,9549442,Lynn,Brooklyn,Red Hook,40.67749,-74.00761,Private room,62,5,6,2018-11-01,0.19,1,0 +15818608,Modern brand new apartment in NYC!,34506361,Haley,Manhattan,Murray Hill,40.74686,-73.97514,Entire home/apt,400,1,17,2019-06-08,0.54,2,364 +15818624,Sunny and spacious 1-bedroom in Brooklyn,18192430,Jamie,Brooklyn,Fort Greene,40.6967,-73.97477,Private room,80,1,53,2018-06-01,2.15,1,0 +15819031,"Beautiful Garden Townhouse Apt, Close to Parks.",37433861,Matthew,Queens,Kew Gardens Hills,40.72712,-73.8308,Entire home/apt,105,3,4,2018-03-18,0.12,1,1 +15819242,Sweet two bedroom in Crown Heights Bk,41191579,Maura,Brooklyn,Crown Heights,40.67034,-73.93902,Entire home/apt,87,1,9,2019-01-21,0.30,3,0 +15819665,Charming 2BR--20 min to Manhattan,30593595,Dorion,Brooklyn,Bushwick,40.68442,-73.9083,Entire home/apt,99,3,126,2019-07-03,3.93,1,46 +15819933,Gorgeous Spacious Bedroom In Ridgewood Queens,16494382,Mark,Queens,Ridgewood,40.70735,-73.89343,Private room,20,7,0,,,1,89 +15820512,Apartment with backyard in East Williamsburg,102415020,Guillermo,Brooklyn,Williamsburg,40.70653,-73.93864,Entire home/apt,109,4,91,2019-06-22,3.31,1,212 +15821383,Manhattan low price UWS Columbia big cozy bedroom,70403406,Tiffany,Manhattan,Upper West Side,40.80258,-73.9676,Private room,75,2,8,2017-08-04,0.26,1,0 +15825854,"Beautiful & centrally located, big 1 bedroom apt.",13454974,Michelle,Manhattan,Midtown,40.74665,-73.98042,Entire home/apt,175,2,11,2018-12-07,0.60,1,88 +15827516,Luxury NYC 1 Bed w/Gorgeous Views + Pool,102478101,Robert,Manhattan,Hell's Kitchen,40.75968,-73.99797,Entire home/apt,289,2,4,2017-01-02,0.13,1,0 +15827538,Williamsburg 2 BR Apartment! 1 stop to Manhattan,6119933,Caroline & Georg,Brooklyn,Williamsburg,40.70944,-73.96161,Entire home/apt,209,2,23,2019-06-08,0.72,2,11 +15828883,*OH SO ZEN*~ Chill Bushwick Yoga Spot!!,102488175,Tim,Brooklyn,Bushwick,40.69748,-73.92588,Entire home/apt,75,2,84,2019-06-23,2.61,1,322 +15829202,"Single Bed room in townhouse, near subway",102482048,Susy,Brooklyn,Bushwick,40.68224,-73.90739,Private room,35,2,106,2019-06-24,3.26,4,349 +15830677,Upper East Side Gem Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77789,-73.95473,Entire home/apt,117,30,1,2019-05-30,0.75,91,311 +15831005,SleepEasyNY: PRIVATE SUITE | 5 STOPS TO MANHATTAN,102500495,Giedre & Andre,Brooklyn,East Flatbush,40.66048,-73.93335,Entire home/apt,80,1,127,2019-07-06,6.54,1,7 +15831628,1BR apartment with a spectacular view!,18143446,Courtney,Manhattan,Hell's Kitchen,40.7659,-73.98371,Entire home/apt,250,15,1,2019-04-14,0.35,1,52 +15832098,1.5 BATHRM SUNNY SPACIOUS ROOM BY SUBWAY,4110869,Golden&Mavy,Manhattan,Harlem,40.82284,-73.95546,Private room,50,30,4,2019-06-15,0.14,2,365 +15832372,Big bright room in fantastic location,10398617,Nathan,Brooklyn,Williamsburg,40.7121,-73.95892,Private room,70,2,19,2019-04-24,0.60,1,19 +15832702,Modern Light Filled 1 Bedroom in East Williamsburg,11727149,Silvana,Brooklyn,Williamsburg,40.70687,-73.9425,Entire home/apt,150,3,19,2018-03-26,0.59,1,0 +15832811,Financial District(FIDI) Studio,102518726,Nina,Manhattan,Financial District,40.70959,-74.00646,Entire home/apt,145,3,2,2017-01-03,0.06,1,0 +15833015,Fashion Designer Studio - Entire Apartment,18351549,Calixto,Manhattan,West Village,40.73428,-73.99969,Entire home/apt,221,30,3,2019-01-02,0.13,1,0 +15833471,Huge Brooklyn Backyard Studio w/ King size bed,102526456,Sira,Brooklyn,Bedford-Stuyvesant,40.68858,-73.92212,Entire home/apt,142,1,122,2019-06-30,3.80,1,80 +15833574,Delightful studio apartment.,102526590,Edward,Staten Island,Castleton Corners,40.62063,-74.13001,Entire home/apt,65,2,52,2019-06-30,1.95,1,40 +15834067,Charming 1BD Astoria Penthouse,100781220,Allison,Queens,Astoria,40.75732,-73.92019,Entire home/apt,110,2,67,2019-06-24,2.13,1,191 +15835247,Sunny bedroom in Alphabet City,7455706,Amanda,Manhattan,East Village,40.72117,-73.97839,Private room,80,6,10,2019-06-09,0.31,2,7 +15839085,"Double bed, Modern Skylight Room Near Train",102482048,Susy,Brooklyn,Bushwick,40.68315,-73.90908,Private room,35,2,44,2019-03-10,1.41,4,325 +15840089,Kid- (and Adult-) Friendly Uptown 2-Bedroom,99602138,Yolanda,Manhattan,Washington Heights,40.8349,-73.94829,Entire home/apt,150,3,36,2019-01-01,1.13,1,5 +15840527,Bedroom in shared apt next to Grand Central,2719866,Dora,Manhattan,Murray Hill,40.7487,-73.97842,Private room,40,5,0,,,1,0 +15841513,Gorgeous luxury place Williamsburg,8439929,Ducrot,Brooklyn,Williamsburg,40.7158,-73.94259,Entire home/apt,150,1,17,2019-07-07,0.60,1,102 +15842191,Cozy room in the heart of Park Slope.,18240752,Vadzim,Brooklyn,Park Slope,40.67538,-73.98117,Private room,47,2,7,2017-05-01,0.26,1,0 +15843671,FLUSHING APT!! BEST DEAL IN NYC!!!,102624893,Kevin,Queens,Flushing,40.75957,-73.82206,Entire home/apt,85,1,68,2017-12-24,2.13,1,0 +15844782,"Cozy Apt steps to Park, Subway, Restaurants, Bars",4702833,Tanya,Brooklyn,Windsor Terrace,40.65815,-73.98172,Entire home/apt,100,2,87,2019-06-06,2.78,1,77 +15844840,Room in Queens Close to Train Station!,98697139,Oscar,Queens,Corona,40.7507,-73.85774,Private room,40,1,43,2019-06-08,1.37,2,59 +15845077,"Sunny, 1 Bedroom in Bedstuy, Brooklyn",14566486,Daisy,Brooklyn,Bedford-Stuyvesant,40.68434,-73.95399,Entire home/apt,85,7,1,2016-11-07,0.03,1,0 +15845215,Cozy bedroom apt near to LGA airport. Free Parking,76536839,Tashi,Queens,Jackson Heights,40.75082,-73.89447,Entire home/apt,99,2,171,2019-06-23,5.30,2,1 +15845669,Beautiful Renovated Apartment NYC.,21444167,Rony,Bronx,Kingsbridge,40.88297,-73.90727,Entire home/apt,105,3,54,2019-06-24,1.68,2,278 +15846039,Affordable Private Spacious Room in Brooklyn,46382885,Peter,Brooklyn,East Flatbush,40.66011,-73.93202,Private room,33,2,119,2019-06-18,3.69,1,277 +15851507,Artsy charming room in Bushwick !,11297371,Maria,Brooklyn,Bushwick,40.69889,-73.92937,Private room,50,2,72,2019-06-03,2.35,2,293 +15851599,"Stunning 1 Br, West Village Luxury w/ great views",48815188,Kevin,Manhattan,Greenwich Village,40.73317,-73.99813,Entire home/apt,295,365,15,2018-04-24,0.49,1,0 +15853165,Private and Cozy Bedroom in Williamsburg,89759874,Pauline,Brooklyn,Williamsburg,40.70688,-73.96745,Private room,72,1,154,2019-07-06,4.79,1,215 +15854348,Stylish & Peaceful Retreat in LES Dream Location!,102731382,Davis & Coco,Manhattan,Chinatown,40.71454,-73.99271,Entire home/apt,300,7,58,2019-06-16,1.79,1,36 +15854548,Great Brooklyn location next to subway and cafes,1939376,Audrey,Brooklyn,Clinton Hill,40.68866,-73.96147,Private room,48,20,24,2019-05-01,0.78,1,304 +15855156,Cozy room in the heart of Astoria,40503875,Hebert,Queens,Astoria,40.75927,-73.9092,Private room,55,1,94,2019-04-16,2.91,2,0 +15855646,Private & comfortable room near Prospect Park,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65783,-73.9563,Private room,100,2,90,2019-06-23,2.95,2,0 +15856339,Charming Fort Greene Apartment,3948843,Aubrey,Brooklyn,Fort Greene,40.69012,-73.97252,Entire home/apt,180,2,5,2019-04-14,0.16,1,18 +15857118,Cozy 3BR apartment on Quiet Block,102754726,Paula,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94042,Entire home/apt,300,2,34,2019-06-03,1.11,1,180 +15857259,5 Star Luxury 2 BR Suite Heart of Manhattan,26556695,Alyssa,Manhattan,Midtown,40.7611,-73.97412,Entire home/apt,2000,2,3,2019-05-31,0.38,6,364 +15857334,5 Star Luxury Suite Heart of Manhattan,26556695,Alyssa,Manhattan,Midtown,40.76042,-73.97345,Entire home/apt,1020,1,12,2019-05-22,0.39,6,365 +15857916,A Nice Place to Stay in Bed Stuy,58118452,Baron,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94756,Private room,53,1,59,2018-03-02,1.90,1,188 +15857972,"Entire Flat in Crown Heights, Near Subway",1583461,Ben,Brooklyn,Crown Heights,40.66958,-73.95081,Entire home/apt,160,5,1,2017-09-03,0.04,1,290 +15858680,Cozy Private Room close to Central Park/Met Museum,100842144,Francis,Manhattan,Upper East Side,40.77502,-73.95536,Private room,143,2,8,2018-12-05,0.26,1,365 +15858847,"Classic Brownstone, a Private Studio Apartment",8715723,Jacob,Manhattan,Harlem,40.80783,-73.95419,Private room,164,1,141,2019-06-10,4.74,5,209 +15858922,"Brownstone Sanctuary, a Private Studio Apartment",8715723,Jacob,Manhattan,Harlem,40.80986,-73.95349,Private room,164,1,143,2019-06-21,4.82,5,221 +15859741,Large private room in heart of BK,5237407,Jenima,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.94668,Private room,48,2,74,2019-07-04,2.38,2,20 +15859962,1 Bd Kips Bay Luxury/Doorman. - Pool & Gym.,102792338,Henry,Manhattan,Kips Bay,40.74411,-73.98011,Shared room,65,4,0,,,1,0 +15860051,Cozy private room with King sizebed,99937669,Kary,Manhattan,East Village,40.72524,-73.97777,Private room,70,1,209,2019-07-06,6.45,1,203 +15860528,Big Apple Experience,102799406,Gail,Queens,Maspeth,40.71402,-73.90853,Entire home/apt,159,5,25,2019-06-21,0.97,2,299 +15861331,"Cozy, spacious room in Williamsburg",1260413,Helena,Brooklyn,Williamsburg,40.71368,-73.94236,Private room,89,5,26,2019-05-22,0.80,3,0 +15862199,Clean Apartment in A Warm Home,102811343,AGood,Queens,Astoria,40.77204,-73.93344,Entire home/apt,100,1,131,2019-07-02,4.12,1,8 +15865251,Manhattan - Upper East Side Lovely Private Bedroom,69406365,Yoko,Manhattan,Upper East Side,40.77097,-73.94862,Private room,60,1,27,2017-06-30,0.88,2,0 +15866121,A lovely unique space in the heart of Brooklyn,6181203,Segun,Brooklyn,Crown Heights,40.67638,-73.91578,Private room,42,4,13,2018-05-21,0.41,1,364 +15866130,PRIVATE ROOM - BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.696,-73.91303,Private room,57,4,17,2019-05-19,0.66,2,307 +15866496,"Large Room w Private Backyard, 20 mins to City",9193762,Hannah,Brooklyn,Bushwick,40.69702,-73.93269,Private room,43,1,1,2016-11-29,0.03,1,0 +15867248,Gorgeous Sanctuary Upper East Side,28966357,Dorothy,Manhattan,East Harlem,40.786,-73.94571,Private room,99,2,81,2019-05-26,2.51,3,88 +15867800,Private bedroom & bathroom in 2 bedroom 2 bath Apt,36669277,Eugenie,Brooklyn,Williamsburg,40.71805,-73.96416,Private room,105,1,38,2017-10-30,1.21,1,0 +15868431,Gorgeous 1BR brownstone in Harlem close to trains,8794266,Patricia,Manhattan,Harlem,40.8065,-73.94941,Entire home/apt,140,15,0,,,1,0 +15868654,Huge Room next to subway - 15min from Times Square,21503447,Anthony,Manhattan,Washington Heights,40.8451,-73.94101,Private room,65,5,3,2017-05-06,0.10,1,179 +15870454,Great Studio In Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76313,-73.9943,Entire home/apt,125,30,6,2019-05-09,0.19,31,323 +15870976,"1 Bedroom, Brand New, Ideal UWS Location",8616101,Chris,Manhattan,Upper West Side,40.78146,-73.97917,Entire home/apt,265,2,16,2019-07-02,0.52,1,16 +15872277,Room in Stuytown Apartment,37712463,Caroline,Manhattan,Gramercy,40.73267,-73.98259,Private room,100,3,1,2016-11-29,0.03,1,0 +15873841,"Cozy Private Room in Sunset Park,BK",53635805,William,Brooklyn,Sunset Park,40.64759,-73.99812,Private room,38,2,1,2016-11-10,0.03,1,0 +15874245,"Spacious, Cozy Home Away From Home",48961085,Anabelle,Queens,Astoria,40.76422,-73.92491,Private room,88,5,7,2017-06-22,0.22,1,0 +15874648,A cozy and private place,102924482,Luis,Manhattan,Harlem,40.82514,-73.95489,Private room,60,4,41,2019-06-09,1.31,1,98 +15875061,Stylish Parkside Midcentury Apt,73175609,Alex,Brooklyn,Windsor Terrace,40.65739,-73.9806,Entire home/apt,159,2,32,2017-08-28,0.99,1,0 +15876032,Great Bedroom in a great location. Fun hosts.,59358,V.Stephan,Manhattan,Upper East Side,40.7844,-73.94856,Private room,65,2,42,2019-06-13,1.31,2,0 +15881766,Cosy Holidays in NYC,42271764,Elena,Brooklyn,Crown Heights,40.67432,-73.95329,Private room,700,30,1,2017-01-02,0.03,1,87 +15882274,Quiet&convenient/1B/ UpperWestLuxury/ 2Sub nearby,56551795,Rylee,Manhattan,Upper West Side,40.79369,-73.96539,Entire home/apt,150,4,1,2017-01-01,0.03,1,0 +15884157,PRIVATE BEDROOM Bushwick close to L and J trains,16973022,Patrick,Brooklyn,Bushwick,40.69092,-73.91195,Private room,50,1,4,2016-11-26,0.12,1,0 +15884886,Brooklyn Stay,58368740,Bianca,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95043,Private room,70,1,1,2017-01-02,0.03,1,0 +15885355,Charming 2 Bedroom Space in Downtown Brooklyn,16221357,Theo,Brooklyn,Park Slope,40.68241,-73.97957,Private room,225,15,4,2018-05-24,0.13,1,0 +15886369,Large bright and quiet room with private bathroom,10191995,Nora,Manhattan,Chinatown,40.71622,-73.9912,Private room,61,5,25,2019-07-04,0.79,2,20 +15887617,Modern Contemporary Home near JFK,102742122,Shannon,Queens,South Ozone Park,40.66996,-73.8223,Private room,120,1,31,2019-06-16,1.03,1,352 +15888227,"Spacious, bright room, prime Williamsburg location",11917115,Claudia,Brooklyn,Williamsburg,40.71497,-73.96145,Private room,110,3,0,,,1,0 +15888448,"BKlyn:Artsy, old fashioned at affordable price !",5151544,Ale,Brooklyn,Cypress Hills,40.68148,-73.8904,Entire home/apt,63,4,54,2019-07-07,1.71,1,344 +15888785,Bushwick Chill Spot (Luxury Rental),65092392,Jed,Brooklyn,Bushwick,40.69912,-73.93508,Private room,65,3,72,2019-06-30,2.26,1,179 +15888899,Evergreen Cozy Bed for Female Travelers 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.6825,-73.87165,Shared room,25,1,64,2019-06-03,2.02,6,0 +15889590,A Stunning Private 1 Bedroom in Downtown Flushing,5962328,Alan,Queens,Flushing,40.76092,-73.82194,Entire home/apt,143,30,4,2019-06-09,0.22,15,7 +15890023,Spacious & Sunny 1 Bedroom Gramercy/Flatiron Apt,8330977,Forrest,Manhattan,Midtown,40.74226,-73.98344,Entire home/apt,197,2,47,2019-06-14,1.46,1,13 +15890547,Nice bedroom in lovely Greenpoint,19818873,Aline,Brooklyn,Greenpoint,40.72311,-73.9411,Private room,89,1,86,2019-05-10,2.70,1,173 +15894199,Crown Heights Duplex Apt.,103087934,Martha,Brooklyn,Crown Heights,40.67567,-73.93744,Entire home/apt,158,4,61,2019-05-31,1.92,1,264 +15895829,Entire JR. One bedroom PRIME West Village,4012934,Risa,Manhattan,West Village,40.73278,-74.00053,Entire home/apt,125,7,12,2019-04-28,0.38,1,0 +15896468,Charming Loft,2089329,Emanuele,Manhattan,East Harlem,40.79084,-73.93962,Entire home/apt,250,3,6,2019-01-06,0.22,1,0 +15896529,Bright and quiet room with private bathroom,10191995,Nora,Manhattan,Chinatown,40.71542,-73.99045,Private room,119,6,117,2019-06-17,3.65,2,207 +15899421,Perfect Location_Upper West Side_*Central Park*,103128664,Lina,Manhattan,Upper West Side,40.77409,-73.98031,Private room,128,7,71,2019-07-07,2.21,1,171 +15899432,"Chill, No Luxury Apt w/ Yard - 1 block to train!",103129069,Ed,Brooklyn,Bedford-Stuyvesant,40.69527,-73.9365,Entire home/apt,169,3,44,2019-06-24,1.40,1,64 +15902775,"Modern, Spacious & Pristine Room in Gramercy",103158392,Arthur,Manhattan,Kips Bay,40.73726,-73.97932,Private room,115,3,61,2019-06-25,1.94,1,137 +15903188,Private room in Astoria 10min ride to Central Park,57307079,Julian,Queens,Astoria,40.76785,-73.91596,Private room,70,1,19,2019-06-09,1.50,1,172 +15910575,Delightful place to stay,103131157,Grand,Manhattan,Midtown,40.74771,-73.98873,Private room,115,1,2,2017-07-29,0.08,1,88 +15910664,Comfy room near trendy Columbia University,2388537,Andrea,Manhattan,Morningside Heights,40.81676,-73.96069,Private room,100,3,6,2018-10-02,0.19,2,0 +15911064,2 Level Brownstone! Private room! Manhattan in 15!,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69411,-73.94086,Private room,50,3,91,2019-07-05,2.83,4,262 +15911137,Amazing 2 bed 2 bath in Central Harlem.,1301576,Siobhan,Manhattan,Harlem,40.80811,-73.94486,Entire home/apt,200,7,3,2018-09-08,0.09,2,0 +15911434,Charming West Village Brownstone Apartment,10437339,Ro,Manhattan,West Village,40.73845,-74.00551,Entire home/apt,220,10,8,2019-02-28,0.27,2,0 +15912452,"Big Room, Refinished Place - 35 min to Times Sq.",31482341,Daniel,Manhattan,Inwood,40.86859,-73.91948,Private room,45,5,30,2019-01-02,0.94,2,0 +15913986,2 Room/1 Bath Entire Apt! Next to Colleges/Train!,2270624,Ny,Manhattan,Harlem,40.81462,-73.95248,Entire home/apt,203,3,13,2018-11-25,0.42,2,0 +15915152,Manhattan apt near Empire State & UN wfree US cell,21463097,Vanessa,Manhattan,Murray Hill,40.74494,-73.97554,Entire home/apt,180,7,95,2019-06-30,3.01,1,87 +15916709,Studio apartment near Monte Fiore hospital,18934273,Max,Bronx,Norwood,40.87529,-73.8762,Private room,40,1,1,2016-12-24,0.03,1,0 +15917098,650 Ocean Avenue,92947863,Matthew,Brooklyn,Flatbush,40.64569,-73.95938,Private room,42,2,0,,,1,0 +15917278,"Comfortable, cozy apartment in Bed Stuy",103270784,Aryanna,Brooklyn,Bedford-Stuyvesant,40.68084,-73.92038,Entire home/apt,130,2,107,2019-06-23,3.47,1,81 +15917981,Apartment in Luxury Building ***GREAT PRICE***,103277215,Akshay,Manhattan,Theater District,40.76126,-73.98636,Entire home/apt,190,10,5,2019-01-02,0.16,1,0 +15918889,Private room in beautiful Williamsburg apartment,14315424,Alexa,Brooklyn,Williamsburg,40.70781,-73.95324,Private room,58,2,6,2017-12-31,0.20,1,0 +15926847,Super spacious & sunny 1-bedroom Fort Greene Apt.,19966776,Lidia,Brooklyn,Fort Greene,40.68386,-73.96813,Entire home/apt,150,2,1,2017-10-08,0.05,1,0 +15926876,Renovated rooms. Newly furnished 5 min from nyc.,103345244,Jeff,Bronx,Kingsbridge,40.88546,-73.90526,Private room,55,1,0,,,2,64 +15927071,Bright Modern Quiet Chelsea true 1bed,529412,Michael,Manhattan,Chelsea,40.74318,-74.00137,Entire home/apt,180,4,46,2019-06-22,1.48,1,0 +15927523,Newly renovated ground floor apt in Williamsburg,103349564,Jennifer,Brooklyn,Williamsburg,40.71463,-73.96474,Entire home/apt,250,2,53,2019-07-06,1.68,1,2 +15927695,900 sq. ft. Artist Loft in the Heart of Brooklyn,23832321,Aurora And John,Brooklyn,Bedford-Stuyvesant,40.69533,-73.95439,Entire home/apt,150,2,14,2017-11-27,0.46,1,0 +15928001,Brand New Apt off Lexington Ave Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77754,-73.95641,Entire home/apt,125,30,11,2019-04-15,0.38,91,342 +15928351,Williamsburg Room with PRIVATE Balcony,22902354,Jessy,Brooklyn,Williamsburg,40.70852,-73.94849,Private room,49,3,7,2019-05-26,0.32,1,37 +15928635,"Sunny, Cozy, Private Room In The Heart of Bushwick",278393,Dylana,Brooklyn,Bushwick,40.69906,-73.92431,Private room,40,2,96,2019-06-24,2.99,3,78 +15928774,Your joyful and comfy space near 7 train,17638424,Sophie,Queens,Elmhurst,40.74612,-73.87364,Private room,40,1,91,2019-06-30,2.82,8,162 +15928835,Live like a NY'er! Lovely apartment in Manhattan,7265110,Charles,Manhattan,Harlem,40.80703,-73.95354,Entire home/apt,130,4,32,2019-06-26,1.02,1,39 +15928889,Cozy private room in a new building in Bushwick,103273584,Kevin,Brooklyn,Bushwick,40.69283,-73.92702,Private room,900,15,3,2018-09-26,0.09,1,83 +15929281,new Private room Near Tompkins square park,1810885,Alex,Manhattan,East Village,40.72468,-73.9783,Private room,85,3,48,2019-06-24,1.51,3,44 +15929625,"East Village/Gramercy Park, 1 Bedroom",103367641,Nidhi,Manhattan,Gramercy,40.73338,-73.98535,Private room,110,1,8,2018-04-28,0.25,1,0 +15930495,Great apt in amazing East Village!,1778121,Jay,Manhattan,East Village,40.72692,-73.98781,Private room,119,3,8,2018-11-02,0.25,1,76 +15930602,Large Sunny Room in a Harlem Brownstone,8455776,Wendy,Manhattan,Harlem,40.82305,-73.95033,Private room,60,1,23,2019-06-16,0.73,2,97 +15930864,Beautiful 1- bdrm apt in tranquil Inwood building,8925370,Sarah,Manhattan,Inwood,40.87136,-73.91723,Entire home/apt,110,2,26,2018-06-17,0.82,1,0 +15931762,Vacation Music Studio + 1Bedroom in Bedstuy!,51035062,Matt,Brooklyn,Bedford-Stuyvesant,40.69543,-73.94448,Private room,200,2,0,,,1,89 +15936167,"Private room to rent - Hip Williamsburg, Brooklyn",46707487,Kerry,Brooklyn,Williamsburg,40.70884,-73.94354,Private room,50,2,77,2019-06-22,2.44,1,107 +15936959,1BR Apartment in Historic Park Slope Brownstone,5407657,Regina,Brooklyn,Park Slope,40.67574,-73.97773,Entire home/apt,110,5,48,2019-05-21,1.52,1,0 +15937164,Big and Relaxing studio ; great location.,19834899,Hector,Manhattan,Chelsea,40.74022,-74.00094,Entire home/apt,180,2,146,2019-07-01,4.55,1,259 +15937310,Grace,38294216,Rachel,Queens,South Ozone Park,40.66675,-73.81071,Private room,75,10,7,2019-04-13,0.27,4,197 +15938836,"Bright, All New Semi Basement Apartment",103450258,Asaf,Queens,Kew Gardens Hills,40.72136,-73.81717,Entire home/apt,105,4,12,2019-06-22,0.39,1,335 +15939056,"Sunny, Contemporary 1 Bedroom Apt W/ Large Patio",103452342,David,Queens,Kew Gardens Hills,40.72077,-73.81485,Entire home/apt,105,4,21,2019-05-31,0.69,1,352 +15939098,"Sunny, Quiet Urban Oasis w/ Elevator! Near Subway!",10703290,Mike,Manhattan,Upper East Side,40.77221,-73.94819,Entire home/apt,300,2,19,2019-05-21,0.60,3,179 +15940176,Cute room in Williamsburg BK,1252820,Marc,Brooklyn,Williamsburg,40.71329,-73.96322,Private room,60,5,72,2019-07-06,2.35,1,7 +15940328,"Free parking, quiet, 5 stops on N/W to Manhattan",78619120,Dominique,Queens,Astoria,40.77145,-73.93008,Entire home/apt,100,4,78,2019-07-07,2.74,1,201 +15941474,"JFK 10 & LGA 15 minutes, One Bed Room",101657794,Dr. Shirin,Queens,Briarwood,40.70857,-73.8075,Private room,120,1,77,2019-07-06,2.39,6,361 +15942403,Cozy studio basement in heart of Brooklyn,57646925,Gaddi,Brooklyn,Flatlands,40.62846,-73.93355,Private room,35,2,0,,,1,0 +15943090,(2)Comfy Home Away From Home/Multiple Rooms!!!,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95402,Private room,45,1,45,2019-06-23,1.47,4,361 +15943475,Perfect Location! Spacious Upper West Side Flat,103434234,Ali Nicole,Manhattan,Upper West Side,40.7768,-73.98217,Entire home/apt,255,2,65,2019-06-10,2.04,1,5 +15943497,(3)Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.68875,-73.95401,Private room,40,1,41,2019-05-24,1.34,4,352 +15944313,Holiday Sublet in Eco-Friendly Artist House,4263511,Miriam,Brooklyn,Flatbush,40.63992,-73.96074,Private room,42,7,0,,,1,0 +15948069,"4 bdrm/2 bath apt. Central Pk, Columbia U.",5162192,Amy,Manhattan,Upper West Side,40.79835,-73.9616,Entire home/apt,240,30,1,2019-05-08,0.48,12,211 +15949915,"Quiet, Private 3.5 rooms, Manhattan convenient",103545877,Jon,Staten Island,Oakwood,40.56233,-74.12673,Entire home/apt,100,2,2,2017-01-30,0.06,1,36 +15951107,Elegant Entire apartment prospect lefferts garden,103554758,Cg,Brooklyn,Prospect-Lefferts Gardens,40.66146,-73.95478,Entire home/apt,110,3,88,2019-07-02,2.76,1,248 +15952447,"Privacy, comfort, style in the heart of Park Slope",97148702,Helen And Alfred,Brooklyn,Park Slope,40.67192,-73.97733,Entire home/apt,185,3,104,2019-06-25,3.28,1,262 +15952702,Cozy Studio in West Village,1499220,Melanie,Manhattan,West Village,40.73316,-74.00476,Entire home/apt,147,1,42,2019-06-23,1.32,1,4 +15952950,Spacious Bushwick Loft,58503744,Rachel,Brooklyn,Bushwick,40.69505,-73.90729,Private room,65,4,4,2018-06-14,0.12,1,0 +15954073,Clean and Comfortable Studio,3142220,Tiffanie,Manhattan,Kips Bay,40.74114,-73.97657,Entire home/apt,200,2,22,2019-05-26,0.81,1,11 +15954250,Beautiful 3000 SF Triplex house in Clinton Hill,38764806,Ami,Brooklyn,Clinton Hill,40.68764,-73.96782,Entire home/apt,950,4,19,2019-05-20,0.62,1,323 +15955297,Brooklyn Heights for Christmas,103597496,Catherine,Brooklyn,Brooklyn Heights,40.69798,-73.99344,Entire home/apt,275,7,0,,,1,0 +15955577,Comfy room in Williamsburg - Luxury Building,25039414,William,Brooklyn,Williamsburg,40.71612,-73.95085,Private room,200,5,11,2017-09-13,0.36,1,83 +15955940,"Space, comfort, views!",38866485,Eugene,Manhattan,Upper West Side,40.79402,-73.96398,Entire home/apt,100,4,3,2018-01-01,0.10,1,0 +15955961,2 Bedroom East Village NYC Apartment,883283,Alison,Manhattan,East Village,40.72739,-73.98274,Entire home/apt,350,2,0,,,1,0 +15956155,Only 15 minutes from Manhattan,103605111,Yukiko,Queens,Woodside,40.74381,-73.89726,Private room,45,2,36,2019-06-26,1.13,1,52 +15956162,Cozy room with balcony in 15mins Manhattan,103488282,Kaka,Queens,Sunnyside,40.74674,-73.92194,Private room,75,1,122,2019-06-24,3.78,5,0 +15956772,"Clean, Cozy Private Room in Classy Bushwick Apt",103611173,Jiyae,Brooklyn,Bushwick,40.69838,-73.91965,Shared room,60,1,0,,,1,0 +15956780,Cozy private room in nice neighborhood Brooklyn,103611863,Lucy,Brooklyn,Gravesend,40.59744,-73.96964,Private room,40,2,7,2019-01-04,0.22,1,318 +15958090,"Gorgeous, cozy, clean - 25mins to Times Square.",9112269,Tn,Queens,Astoria,40.75669,-73.91974,Entire home/apt,74,2,21,2018-09-13,0.89,1,0 +15958726,"Affordable 1 bedroom apt, in great neighborhood",103631576,Nayamkah,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94494,Entire home/apt,100,2,5,2017-05-24,0.16,1,0 +15958841,Spacious Brooklyn Apt (2 Stops to NYC),778293,Jamin,Brooklyn,Sunset Park,40.65766,-73.99919,Entire home/apt,95,3,73,2019-07-01,2.39,1,131 +15961623,Cozy home away from home,83542652,Roger,Queens,Elmhurst,40.72381,-73.88688,Private room,59,3,8,2019-06-26,0.83,1,73 +15963447,"Sunny 3 Bdrms / 2 Bth in Brooklyn, Sleeps up to 8!",38503504,Ayo,Brooklyn,Bedford-Stuyvesant,40.68536,-73.94358,Entire home/apt,180,2,75,2019-06-13,2.35,1,237 +15963664,Bedroom (#2) in beautiful apt near Central Park,21679450,Vicky,Manhattan,Harlem,40.80251,-73.95765,Private room,50,2,0,,,2,0 +15964171,Charming studio located in Kips Bay!,103678761,Chaehyun,Manhattan,Kips Bay,40.74182,-73.97898,Entire home/apt,160,3,9,2017-05-01,0.28,1,0 +15964536,Nice one Bedroom in Williamsburg,16460821,Jehanne,Brooklyn,Williamsburg,40.70856,-73.95469,Entire home/apt,139,4,2,2017-01-04,0.07,1,0 +15966074,Evergreen Upper Bed for Female Traveler 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68313,-73.87077,Shared room,19,2,76,2019-06-20,2.40,6,120 +15966974,Bright apartment in West SoHo with Roof Access,19536090,Adriana,Manhattan,SoHo,40.72705,-74.00419,Entire home/apt,375,2,14,2019-05-19,0.73,2,335 +15967392,Spacious 1+ bedroom apt in NYC,102294498,Gee,Manhattan,East Harlem,40.79335,-73.94527,Entire home/apt,135,1,45,2017-07-02,1.40,1,0 +15968041,Wyndham Midtown 45 King Suite Times Square NYC,57574248,Christine,Manhattan,Midtown,40.75361,-73.97215,Entire home/apt,175,3,0,,,3,0 +15968094,Lovely & welcoming apartment in Bed-Stuy,84495247,Kyle,Brooklyn,Bedford-Stuyvesant,40.68318,-73.93497,Entire home/apt,169,4,78,2019-06-24,2.54,1,84 +15968426,Comfy spacious Astoria aptmt 15m from Manhattan,2753243,Jwanah,Queens,Astoria,40.76248,-73.92422,Private room,56,3,0,,,1,0 +15969097,Big Bright Alcove Studio in Upper East Side,64442357,Jaimie,Manhattan,Upper East Side,40.76323,-73.95916,Entire home/apt,200,4,2,2018-10-18,0.07,1,0 +15969964,Spacious and clean 1 bedroom - Brooklyn,41471799,Tessa,Brooklyn,Bushwick,40.70604,-73.92232,Entire home/apt,115,3,3,2017-04-26,0.10,1,0 +15969978,One Bedroom in Prospect Heights with a Cat!,21660871,Rebecca,Brooklyn,Crown Heights,40.67559,-73.96066,Entire home/apt,45,3,1,2016-11-16,0.03,1,0 +15970276,"Luxury 1BR in Times Square ""Urban Oasis""",12201187,Rex,Manhattan,Theater District,40.7612,-73.98631,Entire home/apt,400,4,12,2019-05-02,0.38,1,26 +15970318,"2 beds in single nice room, JFK&LGA 15 minutes.",101657794,Dr. Shirin,Queens,Briarwood,40.70839,-73.80623,Private room,65,1,47,2019-05-12,1.48,6,365 +15970947,Private room for 2 Guests • Female Only • 紐約民宿,101491116,Tong,Brooklyn,Cypress Hills,40.68398,-73.87039,Private room,39,4,2,2017-06-19,0.07,6,0 +15971062,Cozy room 5 mn walk to central park,2448006,El Haj,Manhattan,Harlem,40.8036,-73.94603,Private room,80,2,3,2019-06-24,0.28,3,339 +15971308,Private Room with Private Bathroom in Harlem,1301576,Siobhan,Manhattan,East Harlem,40.80604,-73.94233,Private room,85,3,97,2019-06-24,3.07,2,14 +15971342,Bedroom with Private Living Room near Central Park,43936824,Kylia,Manhattan,Upper East Side,40.77968,-73.95307,Private room,150,1,11,2019-06-07,0.97,1,0 +15972733,Cozy Private Bedroom in the Lower East Side,40639815,Carolina,Manhattan,Lower East Side,40.71953,-73.98364,Private room,75,8,0,,,1,0 +15974141,100$,45404805,Bianca,Queens,Astoria,40.76938,-73.93227,Private room,120,5,1,2018-01-07,0.05,2,351 +15974157,Gorgeous sun drenched 2BR in Jackson Heights,1753251,Abeer,Queens,Jackson Heights,40.75109,-73.88049,Entire home/apt,100,4,4,2018-11-11,0.13,1,157 +15974364,"Colorful, Sun-filled ""Gypsy Cave"" Bedroom in 3BR",92272,Kristin,Manhattan,Gramercy,40.73266,-73.98412,Private room,75,2,18,2019-05-17,0.88,3,62 +15975039,NYC/ ✰ Prime Williamsburg ✰ w/ Private Patio,5179523,Max,Brooklyn,Williamsburg,40.71169,-73.95827,Private room,91,1,13,2019-06-12,0.55,3,85 +15979856,Large private bedroom+bathroom Central Park North,3587764,Jochen,Manhattan,Harlem,40.80031,-73.95514,Private room,150,1,2,2018-12-30,0.07,1,0 +15980715,High-ceilinged room in artist loft space -Bushwick,3619937,Freddi,Brooklyn,Bushwick,40.699,-73.92849,Private room,46,7,26,2019-06-19,0.91,2,0 +15981196,Bedroom w/ living room in heart of Crown Heights,100806,Madeline,Brooklyn,Crown Heights,40.67302,-73.94815,Private room,65,3,10,2019-05-26,0.93,1,12 +15981246,Charming midtown 2 br apartment,35980789,Shani,Manhattan,Upper East Side,40.76301,-73.95994,Entire home/apt,500,1,5,2018-12-29,0.16,1,362 +15982208,"Huge Yellow Room- AC, 20 Min to Manhattan",103841276,Cristina And Sasha,Brooklyn,Bushwick,40.69891,-73.93072,Private room,45,1,158,2019-06-25,4.93,2,201 +15982472,Cosy apartment in Bushwick,103843016,Wendy,Brooklyn,Bedford-Stuyvesant,40.69326,-73.93265,Private room,50,3,0,,,1,0 +15983139,Brownstone garden floor apt w/ patio mins to NYC,23423684,Nicole & Omari,Brooklyn,Bedford-Stuyvesant,40.68638,-73.92856,Entire home/apt,155,2,122,2019-06-30,3.96,1,59 +15983174,Spacious Apartment in Park Slope Brownstone,103848813,David,Brooklyn,Park Slope,40.67595,-73.97635,Entire home/apt,149,11,8,2019-04-27,0.26,1,0 +15983444,Wonderful Private Room with Spacious Outdoor Patio,103850896,Ashley,Brooklyn,Williamsburg,40.71644,-73.9433,Private room,60,2,5,2017-10-22,0.16,2,0 +15984242,"Clean, private room in Hamilton Heights",74895323,Kara,Manhattan,Harlem,40.82434,-73.94979,Private room,42,7,3,2019-01-02,0.10,1,53 +15984446,★City That Never Sleeps★ Hotel Room @ Midtown 45 ★,64065593,ResortShare5,Manhattan,Midtown,40.7523,-73.97288,Private room,198,2,23,2019-04-23,0.75,13,329 +15984590,Single room #2 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80778,-73.94345,Private room,45,30,6,2019-06-23,0.25,6,164 +15984809,Sun filled 1 bedroom in the heart of Crown Heights,95597107,Linda,Brooklyn,Crown Heights,40.67896,-73.95748,Entire home/apt,130,4,3,2018-05-03,0.10,1,13 +15984863,Peaceful Room in Sunny Bohemian Apartment,27844914,Kim,Brooklyn,Bedford-Stuyvesant,40.69637,-73.93995,Private room,44,14,38,2019-06-24,1.24,2,45 +15984877,Complitely Renovated in the heart of LES #14,3256433,Ira,Manhattan,Lower East Side,40.72068,-73.99291,Entire home/apt,250,30,3,2019-05-31,0.19,7,4 +15984905,Single room 2 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80762,-73.94446,Private room,50,30,5,2018-11-18,0.16,6,151 +15984984,Great Location by Subway!,9737900,Nilu,Brooklyn,Clinton Hill,40.68252,-73.96436,Entire home/apt,195,1,39,2019-06-30,1.25,1,62 +15985221,Single room #1 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80572,-73.94349,Private room,45,30,7,2019-05-04,0.23,6,175 +15985264,Quiet Furnished Room in Greenpoint/Williamsburg,103862923,Jane,Brooklyn,Greenpoint,40.72482,-73.9525,Private room,37,3,4,2018-01-01,0.13,1,0 +15985873,A Discounted room in heart of New York !,519554,Umut&Deniz,Manhattan,Lower East Side,40.71867,-73.98959,Private room,78,2,46,2019-06-16,1.45,5,341 +15986033,"Cozy Studio by public garden, Washington Heights!",46173411,Brittany & Matt,Manhattan,Washington Heights,40.8359,-73.93842,Entire home/apt,80,8,4,2018-07-09,0.13,1,0 +15986371,Harlem Humble Abode - 1 bedroom - Cute and Quaint,103839925,S,Manhattan,Washington Heights,40.83071,-73.94093,Entire home/apt,200,5,0,,,1,0 +15986677,"A Private Room in Manhattan, NYC !!!",519554,Umut&Deniz,Manhattan,Lower East Side,40.71858,-73.98968,Private room,78,2,7,2018-06-30,0.23,5,365 +15986775,Chambre disponible Harlem 1 semaine,103875907,Massimo,Manhattan,Harlem,40.81668,-73.94511,Private room,35,1,4,2016-11-26,0.12,1,0 +15986856,"Cozy for female, 10 min away from Manhattan",86569571,Sara,Queens,Long Island City,40.75748,-73.93119,Private room,52,1,0,,,1,0 +15987034,near Williamsburg/Manhattan/ Greenpoint - 1 b/1b,19803201,Gino,Brooklyn,Greenpoint,40.72388,-73.9404,Entire home/apt,150,3,0,,,2,364 +15987217,"Sunny Room- just south of Park, Brooklyn",103883083,Ariana,Brooklyn,Flatbush,40.64693,-73.95944,Private room,33,14,1,2017-02-21,0.03,1,0 +15987959,Cozy apartment in Upper East!,4122796,Sebastien,Manhattan,Upper East Side,40.78122,-73.94989,Entire home/apt,129,2,1,2016-11-18,0.03,1,0 +15988392,"Bright guest room Staten Island, New York",103281721,Marina,Staten Island,Stapleton,40.62903,-74.08206,Private room,49,1,17,2017-09-05,0.53,1,0 +15988494,QUEEN BEDROOM in sunny CENTRAL PARK apartment,103892907,Dali,Manhattan,Harlem,40.79935,-73.95399,Private room,103,1,2,2016-12-10,0.06,1,0 +15988664,Perfect Weekender in the East Village...,10003145,Samuel,Manhattan,East Village,40.72372,-73.97984,Entire home/apt,150,2,85,2019-06-30,3.33,1,194 +15989547,1 Bd in Sunny Bedstuy Apt,7380558,Angelica,Brooklyn,Bedford-Stuyvesant,40.68724,-73.95068,Private room,41,7,9,2018-01-04,0.28,1,0 +15989608,Spacious room w/ own bathroom in the East Village,6049738,Fayth,Manhattan,East Village,40.7308,-73.98619,Private room,76,30,4,2018-08-31,0.13,2,0 +15990051,The Hub 2 for 4,31175000,Kathryn,Brooklyn,Bedford-Stuyvesant,40.68327,-73.93858,Entire home/apt,120,3,9,2019-01-27,0.31,3,298 +15990199,Bright & Spacious 1br in the Heart of UWS,44949168,Tingting,Manhattan,Upper West Side,40.78602,-73.97537,Entire home/apt,167,3,3,2017-10-02,0.09,1,0 +15990316,1-Bedroom Apt Near Manhattan,14292409,Matt,Queens,Astoria,40.76332,-73.91351,Entire home/apt,95,4,20,2018-02-19,0.63,1,0 +15990572,Giant Green Room - AC and 20 Min to Manhattan,103841276,Cristina And Sasha,Brooklyn,Bushwick,40.69994,-73.93224,Private room,35,1,148,2019-06-24,4.63,2,169 +15992078,Best Location! Near Times Sq Javits Ctr Penn Sta,15679125,C.D.,Manhattan,Hell's Kitchen,40.75372,-73.99332,Shared room,99,1,8,2019-05-19,0.26,1,365 +15994498,Cozy garden floor apartment-Brownstone,75710434,George,Manhattan,Harlem,40.80878,-73.95206,Entire home/apt,150,2,81,2019-06-02,2.57,1,63 +15995824,Cozy room in Roosevelt Island.,21452718,Juan,Manhattan,Roosevelt Island,40.76375,-73.94856,Private room,65,20,2,2019-02-24,0.34,1,0 +15997148,Huge kid-friendly Brooklyn home with parking/patio,200060,Erin & Marla,Brooklyn,Bedford-Stuyvesant,40.69092,-73.92866,Entire home/apt,150,10,3,2017-06-07,0.09,1,0 +15997880,"Bright, cozy studio in Astoria",103981529,Eva,Queens,Long Island City,40.76184,-73.92839,Entire home/apt,76,3,9,2017-06-11,0.29,1,0 +15998138,❤️ POSH NYC RESORT - Midtown 45 - 2 Guests ❤️,64065593,ResortShare5,Manhattan,Midtown,40.7522,-73.97285,Entire home/apt,198,2,31,2019-05-17,1.19,13,322 +15998231,Cozy Room in Brownstone,20327528,Miller,Brooklyn,Bedford-Stuyvesant,40.68631,-73.95597,Private room,35,3,0,,,1,0 +15999129,Railroad Style 1 B.R. Astoria Bachelor Pad,102278506,Alex,Queens,Astoria,40.75989,-73.91343,Entire home/apt,110,21,6,2018-01-19,0.19,1,0 +16000062,Charming Carriage House near Prospect Park,4366974,Ariana,Brooklyn,Crown Heights,40.6732,-73.96195,Entire home/apt,300,7,0,,,1,0 +16002841,Cozy studio in Chelsea,104025635,Majeed,Manhattan,Chelsea,40.74786,-73.99527,Entire home/apt,125,1,0,,,1,0 +16002946,Luxury and Contemporary,11017633,Matt,Brooklyn,Downtown Brooklyn,40.69744,-73.98445,Entire home/apt,225,5,0,,,1,0 +16004740,Luxury One Bedroom w/ City Views,17108681,Claudia,Manhattan,Upper East Side,40.77878,-73.95056,Entire home/apt,265,2,10,2018-08-20,0.45,1,3 +16004758,Cozy studio in the Heart of NYC,15980694,Quentin,Manhattan,Upper East Side,40.76435,-73.95782,Entire home/apt,110,3,2,2017-04-09,0.06,1,0 +16004776,Bright Garden Room with Kitchenette,7051379,Susan,Brooklyn,Downtown Brooklyn,40.69671,-73.98417,Private room,70,2,106,2019-07-06,3.59,2,53 +16004955,Beautiful Williamsburg Home on the Park,1151840,Antonio,Brooklyn,Williamsburg,40.71824,-73.95289,Entire home/apt,220,5,1,2016-12-27,0.03,1,0 +16004977,Cosy renovated studio apartment in Bed Stuy,26243457,Lina,Brooklyn,Bedford-Stuyvesant,40.68919,-73.94073,Entire home/apt,80,3,6,2017-09-29,0.24,1,0 +16005448,East Village Jewel,104055319,Esther,Manhattan,East Village,40.72757,-73.98439,Private room,55,3,12,2018-03-25,0.37,1,4 +16005960,Cozy Artsy Little Italy Apt!,104060705,Scott,Manhattan,Little Italy,40.71828,-73.99761,Entire home/apt,115,30,4,2019-05-05,0.12,1,35 +16009487,Stylish & Spacious Apartment in Harlem Brownstone,69613456,Elisia,Manhattan,Harlem,40.80891,-73.94247,Entire home/apt,265,2,113,2019-06-23,3.55,1,297 +16010302,"Chic Chelsea charming apartment, GREAT DECOR",18939173,Pablo,Manhattan,Chelsea,40.75133,-73.99965,Entire home/apt,228,4,16,2019-07-06,0.51,1,103 +16010428,Rustic room in renovated Bushwick apartment,5187497,Ignacio,Brooklyn,Bushwick,40.69175,-73.91516,Private room,50,1,2,2016-11-26,0.06,2,0 +16010783,Spacious Harlem Apartment perfect for groups,15757322,Devin T.,Manhattan,East Harlem,40.7958,-73.93186,Entire home/apt,280,2,53,2019-07-03,2.29,2,12 +16011441,15 minute train ride to Times Square,101602599,M,Queens,Woodside,40.74327,-73.90627,Private room,75,3,9,2018-08-26,0.28,2,7 +16011595,Top Floor Views Great Apartment in Williamsburg,24404906,Tony,Brooklyn,Williamsburg,40.70969,-73.95252,Entire home/apt,120,5,1,2019-01-03,0.16,1,0 +16012941,Cozy NYC apt!,8531067,Marina,Manhattan,Upper West Side,40.7953,-73.97248,Entire home/apt,250,2,2,2017-04-16,0.07,1,0 +16014578,Christmas Shopping in Manhattan,19080025,Elsa,Manhattan,Midtown,40.76365,-73.98149,Private room,350,4,0,,,1,0 +16014657,Private Bedroom for 1 Female - LIC great location!,104125363,Monica,Queens,Long Island City,40.74644,-73.94479,Private room,70,4,1,2019-01-04,0.16,1,0 +16014708,One bedroom escape,104134325,Chuck,Manhattan,Harlem,40.80313,-73.95027,Entire home/apt,135,2,113,2019-06-15,3.58,1,86 +16014791,Clean style apt. Central midtwn near Javits,801883,CZ Casa,Manhattan,Hell's Kitchen,40.75536,-73.9995,Private room,110,1,188,2019-06-26,5.87,1,158 +16015053,Nice Space in Williamsburg - Near Bedford L,8872284,Nick,Brooklyn,Williamsburg,40.71304,-73.96381,Entire home/apt,149,1,120,2019-06-16,3.75,1,329 +16015571,Bright and Spacious Living Room.,39261381,Nathaniel,Brooklyn,Flatlands,40.62531,-73.93414,Shared room,22,1,20,2019-07-03,1.28,2,160 +16017948,"5B-Netflix, TV, WI-FI, Heat",104166155,Suzie And Ryan,Brooklyn,East Flatbush,40.64277,-73.94715,Private room,49,2,18,2019-06-23,0.59,2,90 +16018094,STUDIO in Wyndham Midtown 45 New York City!,69545883,Chayla,Manhattan,Midtown,40.75381,-73.97125,Private room,899,2,2,2016-12-09,0.06,12,365 +16018596,Cozy room in Hamilton Heights,24444281,Paloma,Manhattan,Harlem,40.82204,-73.94517,Private room,40,5,4,2018-09-22,0.22,1,0 +16019792,Cozy brand new studio with private entrance,104188124,Sonia,Brooklyn,East Flatbush,40.63291,-73.94302,Entire home/apt,70,2,62,2019-07-02,1.94,1,40 +16023497,Huge Duplex in the Heart of Brownstone Brooklyn,1447642,Chana,Brooklyn,Gowanus,40.68309,-73.98529,Entire home/apt,340,3,12,2019-07-03,0.40,1,63 +16024539,"Beautiful Greenpoint, Brooklyn apt by the park",1622733,Cristina,Brooklyn,Greenpoint,40.72413,-73.9509,Entire home/apt,75,2,14,2019-06-08,0.70,1,93 +16025835,Spacious King Bedroom with Free parking Near Train,24296233,Victoria,Queens,Bayside,40.75555,-73.76515,Entire home/apt,53,6,0,,,1,66 +16026000,Nice Manhattan bedroom,34320426,Manny Lucas,Manhattan,Midtown,40.75976,-73.97178,Private room,90,1,6,2017-04-07,0.19,1,0 +16026135,Discover Ridgewood/Queens,23006467,Alexandra,Queens,Glendale,40.70564,-73.89246,Private room,105,12,0,,,1,0 +16026567,Cozy Room In Williamsburg Near Trains❤️,13394035,Samuel,Brooklyn,Williamsburg,40.70875,-73.94478,Private room,49,20,85,2019-05-27,2.74,1,35 +16026815,NEW RENO HUGE PRIVATE BED&BATH PLUS TERRACE,104254967,Anna,Queens,Long Island City,40.75559,-73.9208,Private room,95,2,62,2019-07-01,1.96,1,118 +16027312,"Upper Eastside Studio, Walk to Central Park",46627258,Travis,Manhattan,Upper East Side,40.7806,-73.95178,Entire home/apt,155,21,9,2018-07-26,0.28,1,0 +16027606,Parlour Apartment in PreWar Home,104262874,James,Brooklyn,Bedford-Stuyvesant,40.67776,-73.92754,Shared room,40,4,17,2018-10-08,0.53,1,0 +16027709,WILLIAMSBURG BEDROOM,50087191,Montana,Brooklyn,Williamsburg,40.7082,-73.94476,Private room,47,1,5,2019-02-01,0.74,1,4 +16027733,420 E 80th St. 2 BR fully furnished,53179388,Raymond,Manhattan,Upper East Side,40.77261,-73.94995,Entire home/apt,190,30,0,,,10,180 +16028015,1 Block to Central Park Manhattan Luxury Condo,63393629,Azure,Manhattan,Midtown,40.7635,-73.97677,Entire home/apt,700,10,15,2019-06-20,1.27,1,302 +16028674,Redford Room 1,104273977,Jasmine,Manhattan,Lower East Side,40.72008,-73.98865,Private room,109,1,3,2018-09-01,0.18,3,0 +16029127,Sleeps 4 Guest's | CENTRALLY LOCATED | Midtown 45,64065593,ResortShare5,Manhattan,Midtown,40.75246,-73.97356,Entire home/apt,198,2,27,2019-05-03,0.88,13,246 +16032177,Chelsea Apartment/Flat- sleeps up to 4,26784331,Kevin,Manhattan,Chelsea,40.74344,-73.99506,Entire home/apt,149,2,8,2017-01-28,0.25,1,0 +16036569,"1BR spacious, sunny (25 min to Manhattan)",64476314,Jd,Queens,Astoria,40.76435,-73.92001,Entire home/apt,101,17,9,2017-11-15,0.28,1,0 +16036654,In the heart of the West Village,104348941,Amanda,Manhattan,West Village,40.7341,-74.00104,Entire home/apt,150,3,1,2016-11-20,0.03,1,0 +16037130,Greenwich Village Apartment,11402865,Michael,Manhattan,Greenwich Village,40.72796,-74.00154,Entire home/apt,135,3,3,2017-07-31,0.10,1,0 +16037497,Luxury doorman 1br in West Village,2622616,Shaun,Manhattan,West Village,40.73596,-74.00927,Entire home/apt,220,4,0,,,1,0 +16037576,Large Private Room in Upper East Side,85294325,Phillip,Manhattan,Upper East Side,40.77128,-73.95787,Private room,80,4,19,2018-11-24,0.60,1,0 +16037703,Private roof deck - 18 min subway to Manhattan,8788534,Maayan,Brooklyn,Bushwick,40.68903,-73.91828,Entire home/apt,84,4,88,2019-07-01,2.88,1,155 +16039453,The Blue Floaty Studio,86887132,Nepreil,Queens,Jamaica,40.69469,-73.78196,Entire home/apt,99,2,13,2019-06-30,1.71,2,365 +16040229,Cute BR at Columbus Circle,10812002,Oliver,Manhattan,Hell's Kitchen,40.76807,-73.98418,Private room,100,2,2,2017-11-06,0.09,3,0 +16040987,Modern Sleeper Sectional Sofa - Custom Design Apt,83809962,Tamara,Brooklyn,East Flatbush,40.66209,-73.92913,Shared room,50,1,23,2018-12-29,0.74,2,364 +16041091,124 W 60th 1 bedroom,53179388,Raymond,Manhattan,Upper West Side,40.77105,-73.9863,Entire home/apt,175,30,4,2018-01-09,0.14,10,160 +16048422,Cute Greenpoint room,25599837,Louise,Brooklyn,Greenpoint,40.73419,-73.95675,Private room,60,3,1,2017-01-02,0.03,1,0 +16050081,Spacious and sunny Carroll Gardens apartment,4087986,Sara,Brooklyn,Carroll Gardens,40.68257,-73.99626,Entire home/apt,170,2,2,2017-12-29,0.06,1,64 +16050276,Bed-Stuy Style & Comfort 2bed Private Living Space,104497453,Mark,Brooklyn,Bedford-Stuyvesant,40.68792,-73.92411,Entire home/apt,170,2,213,2019-06-29,6.90,3,37 +16050505,1 Bedroom Apartment with Balcony in Brooklyn,104500369,Eric,Brooklyn,Bedford-Stuyvesant,40.69519,-73.95107,Entire home/apt,75,1,3,2016-11-29,0.09,1,0 +16050862,Private Bedroom & bath - Huge Apt in Williamsburg,17995733,Idit,Brooklyn,Williamsburg,40.71683,-73.94448,Private room,75,10,0,,,1,0 +16051971,Family Style Home in Upper East/East Harlem,104516875,Matthew,Manhattan,East Harlem,40.78892,-73.94185,Entire home/apt,130,2,3,2017-01-16,0.10,1,0 +16053606,Huge Bedroom in the Upper West near Central Park,4372057,Rafael,Manhattan,Upper West Side,40.77815,-73.97574,Private room,88,7,3,2017-05-31,0.10,1,0 +16054200,Apartment 5A,104350692,Ridhima,Manhattan,Gramercy,40.73204,-73.98364,Private room,110,1,16,2019-05-27,0.50,1,0 +16054225,Luxury doorman building great view NYC,104542199,Ray,Manhattan,Upper East Side,40.782,-73.95143,Private room,200,2,3,2017-09-19,0.09,1,90 +16054732,Charming apt in Bed-Study! Central location,4233535,Mariam,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95851,Private room,60,1,0,,,1,0 +16054883,Onebedroom apartment with park view,46812877,Bradley And Ana,Manhattan,Inwood,40.86271,-73.92872,Entire home/apt,100,5,39,2019-05-05,1.28,1,12 +16055176,Stylish 1 Bedroom in heart of East Village,2407821,Susan,Manhattan,East Village,40.72754,-73.98329,Entire home/apt,190,2,23,2019-06-09,0.73,1,27 +16055506,Cozy private studio 10m fr LGA 30m to Manhattan,104558512,Olenka,Queens,Maspeth,40.7322,-73.89944,Entire home/apt,86,2,78,2019-06-29,2.55,1,149 +16056111,A Touch of Modern,36420662,Marc,Brooklyn,Williamsburg,40.70775,-73.94611,Private room,75,3,3,2017-04-29,0.11,1,0 +16056317,Cozy home away from home,104568045,Luisa,Bronx,Morris Heights,40.85018,-73.9167,Private room,55,2,0,,,1,364 +16056573,Spacious apartment in Brooklyn,617427,Ashfia & Amir,Brooklyn,Clinton Hill,40.68482,-73.96075,Entire home/apt,145,2,4,2018-05-23,0.13,1,0 +16058082,"Private Room in Bronx NY, Manhattan",104584267,Evguenia,Bronx,Morris Heights,40.84862,-73.92412,Private room,75,1,3,2019-05-19,0.32,1,365 +16062739,3 Cozy Zen Rooms In Beautiful Apt.,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95352,Private room,200,2,3,2016-12-11,0.09,4,189 +16063467,"Spacious Modern 1-bedroom in Greenpoint w/TV, heat",2332386,Ariel,Brooklyn,Greenpoint,40.73469,-73.95527,Entire home/apt,86,4,2,2017-03-17,0.06,1,0 +16063885,Spacious 1 Bedroom Apt in the heart of Harlem,83278784,Kennedy,Manhattan,Harlem,40.80761,-73.95416,Entire home/apt,160,1,41,2019-06-16,1.56,1,273 +16064539,"MARTIAL LOFT 3: REDEMPTION (upstairs, 1st room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69467,-73.923,Private room,59,3,11,2019-06-22,0.46,5,0 +16065618,Times Sqaure Gem,87518679,Michelle,Manhattan,Hell's Kitchen,40.76009,-73.98937,Entire home/apt,280,5,1,2017-01-02,0.03,1,0 +16066223,"Spacious, quiet 1 br apt in beautiful Inwood!",1713011,Natasha,Manhattan,Inwood,40.86757,-73.92699,Entire home/apt,89,14,14,2019-05-13,0.57,1,4 +16066417,Brooklyn Getaway,27294350,Jocelyn,Brooklyn,Bushwick,40.69369,-73.9291,Private room,55,3,0,,,1,0 +16067542,King sized bed in pre war apt,31378,Kristine,Brooklyn,Crown Heights,40.67001,-73.96197,Entire home/apt,100,4,8,2019-01-03,0.29,3,6 +16067816,Sunny Sunset Park Apt,17285612,Jessica,Brooklyn,Sunset Park,40.64908,-74.01418,Entire home/apt,75,4,5,2018-08-18,0.16,1,0 +16068067,colorful and huge 1BD near Prospect Park,15792248,Marina,Brooklyn,Kensington,40.63647,-73.97463,Entire home/apt,100,2,1,2017-01-02,0.03,1,0 +16068281,Spacious & Light room in hip Lower East Side,13324284,Rob,Manhattan,Chinatown,40.71608,-73.99233,Private room,95,4,1,2017-01-06,0.03,1,0 +16068953,Awesome room in Brooklyn!!,39872618,Felipe,Brooklyn,Crown Heights,40.6758,-73.93932,Private room,50,3,7,2018-05-15,0.31,1,249 +16069120,An Artist's Inspiration: Sun-Soaked Chelsea Loft,8455543,Jason,Manhattan,Chelsea,40.74292,-73.99969,Entire home/apt,599,2,3,2018-12-28,0.33,1,54 +16069784,Private room in a cozy apartment Flushing!,96303866,Juan Pablo & Andrea,Queens,College Point,40.78955,-73.83921,Private room,44,4,8,2017-04-23,0.27,1,3 +16069925,Great location in NYC!,13599766,David,Manhattan,Morningside Heights,40.80325,-73.96174,Private room,80,8,3,2018-06-03,0.10,1,79 +16071397,Small Private Room in Gramercy/East Village,7555939,Chelsea,Manhattan,Gramercy,40.73257,-73.98234,Private room,65,5,7,2018-09-15,0.26,1,0 +16072214,"One of a kind, entire Brooklyn apartment",49336986,Tor,Brooklyn,Flatbush,40.64111,-73.95667,Entire home/apt,98,2,27,2019-06-09,0.96,1,168 +16078800,Good Vibes and best location in East Village,8739010,Marni,Manhattan,East Village,40.72666,-73.97969,Entire home/apt,131,2,15,2018-09-23,0.49,1,11 +16081021,Artist Welcome! Huge room w/ private office,9563496,Jenny,Queens,Ridgewood,40.71032,-73.91461,Private room,69,7,0,,,1,0 +16081134,Well connected private room,24630962,Ercio,Brooklyn,Williamsburg,40.70627,-73.94947,Private room,70,10,17,2018-03-13,0.61,1,0 +16081163,Bright Brooklyn Bedroom in Crown Heights,17848497,Steve,Brooklyn,Crown Heights,40.67532,-73.94138,Private room,35,3,2,2017-04-23,0.07,1,0 +16081508,Park Slope Sanctuary,10457196,Richard,Brooklyn,Park Slope,40.66754,-73.98268,Entire home/apt,200,31,2,2019-01-06,0.17,11,310 +16082711,Private Room Perfect for Students / SIUH / 002 LL safe area,104812805,Amarjit S,Staten Island,Concord,40.59784,-74.08391,Private room,34,4,51,2018-10-27,1.69,8,316 +16082923,Modern Bungalow Escape,29474145,Brent,Queens,Arverne,40.59098,-73.80081,Entire home/apt,100,2,48,2019-06-16,1.57,1,167 +16083168,Private Room close to JFK & Manhattan,104816559,Cecily,Brooklyn,Bergen Beach,40.6266,-73.90375,Private room,85,3,30,2019-07-01,1.15,1,90 +16083752,Charming Upper East Side 1 Br on Historic Block,104821930,Elijah,Manhattan,Upper East Side,40.77129,-73.9501,Entire home/apt,120,1,9,2018-02-25,0.28,1,0 +16085004,"Bright, modern room with panoramic window",11206175,Kris,Queens,Maspeth,40.72254,-73.90561,Private room,37,30,10,2019-05-17,0.33,2,363 +16085088,"Safe, cozy comfy!",52347885,Nicole,Brooklyn,Flatlands,40.62876,-73.92203,Private room,34,2,94,2019-06-15,3.14,2,70 +16085206,Modern 2 BR Updated to Perfection,61391963,Corporate Housing,Manhattan,Kips Bay,40.74128,-73.97863,Entire home/apt,175,30,1,2017-09-01,0.04,91,126 +16085227,1 Bedroom Apt. in Prime Williamsburg,9195264,Pilar,Brooklyn,Williamsburg,40.72043,-73.95508,Entire home/apt,150,2,13,2017-04-17,0.41,1,0 +16085436,FLUSHING 停车方便。是你入住的最好选择。,61804662,Niki,Queens,Flushing,40.76904,-73.81687,Private room,48,1,54,2019-05-21,1.72,2,113 +16085817,"Brand New Modern Luxury Apt, Room A",104835356,Jerry,Brooklyn,Sunset Park,40.65563,-74.00197,Private room,73,1,10,2019-05-16,0.36,3,121 +16086039,The Coziest Bedroom of The Upper West Side,104838182,Larissa,Manhattan,Upper West Side,40.8013,-73.96669,Private room,85,7,14,2019-05-18,0.51,1,0 +16086320,"Brand New Modern Luxury Apt, Room B",104835356,Jerry,Brooklyn,Sunset Park,40.65477,-74.001,Private room,69,1,32,2019-06-16,1.14,3,292 +16086382,Modern loft in the heart of the East Village.,4630888,Ariana,Manhattan,East Village,40.73073,-73.98652,Entire home/apt,170,1,36,2019-06-22,1.14,1,36 +16086891,"Brand New Modern Luxury Apt, Room C",104835356,Jerry,Brooklyn,Sunset Park,40.65508,-74.00188,Private room,66,1,24,2019-06-15,0.80,3,324 +16086949,Spacious apartment in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77833,-73.94775,Entire home/apt,200,2,1,2016-12-29,0.03,3,0 +16087249,1 Bdrm Deluxe located in Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75356,-73.97155,Private room,799,3,1,2016-12-06,0.03,12,365 +16087406,2 BDRM Presidential Reserve at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75368,-73.97358,Private room,1599,3,2,2017-06-09,0.08,12,365 +16087737,Private Room for Students/Residents/ 001LL safe area,104812805,Amarjit S,Staten Island,Arrochar,40.59679,-74.083,Private room,34,4,39,2019-04-27,1.39,8,347 +16095062,THANKSGIVING up to 6 GUESTS + HOT TUB + FIREPLACE,104911818,Samantha,Brooklyn,Clinton Hill,40.69487,-73.96572,Private room,225,365,0,,,1,90 +16095115,Walk through room close to everything,62828813,Kate,Manhattan,Lower East Side,40.71339,-73.98926,Private room,69,3,47,2019-05-22,1.50,1,217 +16095512,"Large & Comfortable, Close to Train",15793354,Ebone,Brooklyn,Crown Heights,40.66675,-73.92958,Entire home/apt,73,2,4,2017-06-13,0.16,1,0 +16095875,"Perfect, Private Bedroom on Prospect Park",9488965,Stanley,Brooklyn,Prospect Heights,40.67414,-73.96723,Private room,125,1,0,,,1,15 +16096372,spacious 1 bdrm apt on the Hudson River,633395,Naama,Manhattan,Morningside Heights,40.809,-73.9661,Entire home/apt,150,5,3,2018-06-29,0.10,1,25 +16097336,Doctor's on Rotation (1),104927746,Amardeep,Staten Island,Concord,40.59703,-74.08676,Private room,33,4,18,2019-06-04,0.83,7,322 +16097690,Doctors lounge for 1 (Room 002),104927746,Amardeep,Staten Island,Concord,40.59704,-74.08716,Private room,32,4,30,2019-06-22,1.20,7,342 +16097822,Newly renovated Room for 1,104927746,Amardeep,Staten Island,South Beach,40.59587,-74.08614,Private room,35,4,10,2019-05-22,0.34,7,323 +16098020,1 Bdrm PRESIDENTIAL RESERVE at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75162,-73.9732,Private room,649,3,1,2016-12-09,0.03,12,365 +16098175,Writers Paradise 3 NYC,104927746,Amardeep,Staten Island,Concord,40.59719,-74.08754,Private room,32,4,23,2019-05-05,0.87,7,312 +16099007,Comfortable room and very clean!,104885443,Maiko,Queens,Astoria,40.76819,-73.92755,Private room,85,2,57,2019-06-22,1.86,2,306 +16099666,King/Queen Hotel Room at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.7524,-73.97153,Private room,699,3,1,2016-12-11,0.03,12,365 +16100032,KG Room Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75362,-73.97332,Private room,799,3,1,2016-12-11,0.03,12,365 +16100652,CHARMING HOME with TONES OF LIGHT & GREAT DESIGN,88191,Bea,Brooklyn,Carroll Gardens,40.6799,-73.99722,Entire home/apt,290,6,3,2017-08-28,0.10,1,0 +16100819,Renovated 2 Bedroom Williamsburg Dream Home,4198285,Greg And Amy,Brooklyn,Williamsburg,40.71026,-73.94744,Entire home/apt,145,3,43,2019-07-04,1.36,1,5 +16101054,Modern Studio overlooking Empire State building,13224803,Roxana,Manhattan,Kips Bay,40.74446,-73.98044,Entire home/apt,199,5,53,2019-05-10,1.67,1,0 +16103920,The Executive Loft Manhattan,79060345,Francisco,Manhattan,Chelsea,40.73992,-74.00221,Entire home/apt,200,4,31,2019-07-01,1.31,1,291 +16107664,Cozy loft in Chelsea,40744019,Alex,Manhattan,Chelsea,40.74694,-73.99728,Entire home/apt,181,1,158,2019-06-23,5.08,1,173 +16108194,"Quiet, Clean Room in Amazing Location!",2642093,Paloma,Brooklyn,Greenpoint,40.73124,-73.95527,Private room,75,5,1,2017-10-04,0.05,1,0 +16110204,"Cozy, convenient Park Slope 2br",394223,Anna,Brooklyn,South Slope,40.66459,-73.9905,Entire home/apt,130,4,1,2017-01-01,0.03,1,0 +16111812,One Bedroom Apt. Private House close to Citi Field,105049322,Celeste,Queens,Corona,40.75094,-73.85244,Entire home/apt,125,1,16,2017-11-12,0.52,1,157 +16112503,"Luxury Townhouse , Private Garden",105056232,Ramez,Manhattan,Greenwich Village,40.7324,-73.99708,Entire home/apt,300,5,0,,,1,0 +16112663,Sunny Spacious Family Friendly 2Bed/2Bath UES Apt,93742479,Alex,Manhattan,Upper East Side,40.77316,-73.94495,Entire home/apt,250,2,10,2019-01-12,0.33,1,0 +16113712,2 Bedroom Apartment in Harlem,105069538,Sohel,Manhattan,East Harlem,40.80764,-73.93963,Entire home/apt,175,1,8,2018-10-03,0.29,1,66 +16113842,Private room on Lovely block in Greenpoint,3842134,Dawn,Brooklyn,Greenpoint,40.72641,-73.94657,Private room,59,20,7,2019-04-28,0.27,3,342 +16119492,Monthly Trendy Studio w/Patio amazing location,44802851,Andrea,Brooklyn,Williamsburg,40.71603,-73.96426,Entire home/apt,180,4,63,2019-06-23,2.02,1,1 +16119541,Huge guest suite with private bath and kitchen.,700224,Shane & Nicole,Brooklyn,Boerum Hill,40.68424,-73.98545,Private room,250,5,0,,,4,50 +16120533,Room for Either One of Two (Has Two Beds),56878925,Joyce,Brooklyn,Canarsie,40.63485,-73.92055,Shared room,40,2,4,2017-12-27,0.13,2,3 +16120794,Private Apartment In the Heart of Chelsea,9584918,Ash,Manhattan,Chelsea,40.74208,-74.00121,Entire home/apt,156,5,4,2018-01-04,0.13,1,0 +16120840,Luxurious studio - West 57th Street Club by Hilton,8572778,Betsy,Manhattan,Midtown,40.76409,-73.9791,Entire home/apt,500,2,4,2018-04-21,0.13,1,91 +16122024,B & B in NYC!!,66915031,Sharon,Manhattan,Washington Heights,40.84657,-73.9357,Private room,65,2,55,2019-06-11,5.54,1,5 +16122082,Manhattan Landmark Sunny South facing Quiet Studio,7245581,Michael,Manhattan,Washington Heights,40.83493,-73.93859,Entire home/apt,68,150,4,2019-03-04,0.25,19,338 +16122223,Superb master bedroom on the Upper West Side,3740293,Paolo,Manhattan,Upper West Side,40.78859,-73.97568,Private room,60,14,1,2017-05-23,0.04,1,0 +16122441,Big and Bright Apartment with Balcony,6171011,Sebastian,Manhattan,East Harlem,40.81067,-73.93896,Entire home/apt,150,7,4,2019-04-02,0.30,1,127 +16123133,Sun dappled 2 bedroom brownstone apt on FG park!,1628075,Zoe,Brooklyn,Fort Greene,40.69015,-73.97264,Entire home/apt,265,31,33,2018-11-17,1.20,1,281 +16123657,Modern Large Apartment in Midtown East,6984985,Andres,Manhattan,Midtown,40.75574,-73.9705,Entire home/apt,279,5,3,2017-07-17,0.10,1,0 +16123943,"1BR 2nd floor, house",104661811,Elias,Staten Island,Arrochar,40.59412,-74.06955,Private room,105,1,12,2019-05-19,0.39,1,89 +16124987,Sunny Apartment in Harlem with over 800 sq ft,105163782,Nicole,Manhattan,Harlem,40.81783,-73.94051,Entire home/apt,110,2,60,2019-07-01,1.92,1,47 +16130658,Brooklyn Apartment on the Park,17138432,Georgia & Robin,Brooklyn,Greenpoint,40.72725,-73.944,Entire home/apt,130,4,10,2019-03-18,0.33,1,0 +16131672,Luxury 3 bedroom apartment on the Upper East Side,105225099,Christina,Manhattan,Upper East Side,40.7687,-73.95596,Entire home/apt,500,2,1,2016-12-29,0.03,1,0 +16132114,Sunny Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.63267,-74.08369,Private room,34,3,24,2019-06-10,0.78,3,159 +16133101,Sunny Room in Bed Stuy Brooklyn,1626704,Meghan,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94978,Private room,75,2,55,2018-12-30,1.95,1,0 +16133127,Cozy Alphabet City bedroom with private patio,105025187,Anima,Manhattan,East Village,40.72624,-73.978,Private room,49,3,1,2017-08-04,0.04,2,0 +16133543,Beautiful room in a Private House in Brooklyn,105239473,Joseph,Brooklyn,Cypress Hills,40.68239,-73.89319,Private room,65,3,22,2019-01-01,0.70,1,89 +16134738,Brooklyn Bedroom Near Subway with Washer/Dryer,9372363,Tj,Brooklyn,Borough Park,40.61426,-73.97746,Private room,65,3,8,2019-06-18,0.26,2,40 +16134745,Williamsburg floor through loft,471153,Ramsay,Brooklyn,Williamsburg,40.71014,-73.96384,Entire home/apt,300,7,2,2018-06-29,0.09,1,352 +16135399,Nice Room in the Upper West Side. Great Location.,105258361,Elena,Manhattan,Upper West Side,40.79528,-73.97325,Private room,100,3,38,2019-04-03,1.21,1,14 +16135897,LARGE ROOM lots of privacy in a 4 bedroom apt,104700532,Sehai,Brooklyn,Bedford-Stuyvesant,40.69383,-73.94326,Private room,55,1,1,2017-01-01,0.03,1,6 +16136213,Sunlit Brooklyn Bedroom w/ Private Entrance,1886695,Ronald,Brooklyn,Bushwick,40.68338,-73.9078,Private room,70,2,16,2019-06-30,0.87,1,29 +16136287,Bedroom in Large Artist Loft in Brooklyn,15863391,Cyril,Brooklyn,Clinton Hill,40.68987,-73.96095,Private room,49,5,16,2019-01-10,0.53,1,0 +16140364,30-day or more sublet in Clinton Hill Loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69278,-73.95987,Private room,50,30,11,2019-01-02,0.36,4,79 +16140940,"Beautiful, modern, near Prospect Park",105315535,Ben,Brooklyn,Prospect Heights,40.67549,-73.96598,Entire home/apt,158,30,7,2019-03-30,0.26,3,37 +16141267,Cozy room + unlimited metrocard,5187497,Ignacio,Brooklyn,Bushwick,40.6901,-73.91447,Private room,50,4,0,,,2,0 +16141887,Chateau Retreat in Artsy Bushwick Brooklyn,33651056,Danielle,Brooklyn,Bushwick,40.68778,-73.91381,Private room,120,3,1,2017-01-04,0.03,1,0 +16143844,Cozy room in Harlem,35281088,Tk,Manhattan,Harlem,40.82191,-73.9419,Private room,44,2,45,2019-06-29,1.43,1,18 +16143905,Williamsburg 1 bedroom amazing apt.,2125221,Roy,Brooklyn,Williamsburg,40.72171,-73.95487,Entire home/apt,150,4,19,2019-06-10,0.62,1,80 +16143977,Clinton Hill Cocoon,12018166,Laurent,Brooklyn,Bedford-Stuyvesant,40.68423,-73.95715,Entire home/apt,209,2,7,2019-05-01,0.23,1,201 +16144479,Cute Bright Studio,105348414,Chi,Manhattan,Greenwich Village,40.73385,-73.99928,Entire home/apt,200,5,1,2018-03-03,0.06,1,36 +16144586,"comfortable room, couples welcome, crown heights.",79751933,Amara,Brooklyn,Crown Heights,40.67034,-73.95169,Private room,30,3,1,2016-12-16,0.03,1,0 +16144596,Spacious Room in 2BR Sugar Hill apartment,105349749,Mattie,Manhattan,Harlem,40.82349,-73.94053,Private room,80,2,10,2019-06-28,0.32,1,8 +16145655,"Spacious 1-bd, sleeps 2, 20 min to Times Square",105359406,Lynne,Queens,Sunnyside,40.74535,-73.91985,Private room,135,7,1,2017-01-01,0.03,1,0 +16145871,#1 Rated 3br Park Slope Apt (1700sqf+Renovated!),30826993,Travis & Melissa,Brooklyn,Park Slope,40.6734,-73.98235,Entire home/apt,250,3,54,2019-06-14,1.72,1,0 +16145967,Cozy Room In A Friendly Apartment,15956611,Jay R.,Manhattan,East Harlem,40.80397,-73.93499,Private room,100,29,4,2018-12-31,0.18,2,66 +16146442,Affordable Bedroom in Brooklyn,20319948,Cesar & Nadia,Brooklyn,Crown Heights,40.66838,-73.93134,Private room,50,4,28,2018-04-30,0.95,1,0 +16146708,Cozy Well-Furnished Home in the Heart of Harlem,10332773,Phoebe,Manhattan,Harlem,40.81749,-73.94315,Private room,110,2,137,2019-07-03,4.37,1,102 +16146834,Your cozy and comfy space near 7 train,17638424,Sophie,Queens,Elmhurst,40.74658,-73.87358,Private room,30,1,106,2019-06-30,3.36,8,142 +16147001,"New reno - vibey, sun-filled studio",35093829,Chris,Brooklyn,Williamsburg,40.71319,-73.93606,Entire home/apt,160,2,11,2018-02-06,0.35,1,0 +16147164,Nolita Artist Loft Apartment Best Location NYC,620436,Adrianne,Manhattan,Nolita,40.72174,-73.99482,Entire home/apt,295,5,36,2019-06-27,1.40,1,16 +16147304,Studio/Full Kitchen at Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75302,-73.97221,Private room,699,3,2,2016-12-15,0.06,12,365 +16147405,Private room in Williamsburg,32545798,Sasha,Brooklyn,Williamsburg,40.71329,-73.96223,Private room,60,2,7,2017-06-12,0.23,5,0 +16148036,Cozy bed in private living room,94536810,Belkis,Bronx,Bronxdale,40.85711,-73.86474,Private room,45,5,30,2019-05-23,0.98,2,318 +16148051,Economy Brooklyn Space for your NYC Adventure!,40146897,Eric,Brooklyn,Crown Heights,40.67368,-73.92165,Private room,29,2,97,2019-06-24,3.07,5,145 +16148141,A charming Art-deco upper Manhattan,105384236,Aleksandra,Manhattan,Washington Heights,40.85425,-73.93585,Private room,80,1,11,2019-06-02,0.60,1,31 +16148374,Stunning 2BR Apt by Central Park and Subway,60628529,Saygin,Manhattan,East Harlem,40.796,-73.94863,Entire home/apt,265,3,111,2019-06-22,3.53,1,155 +16148563,Gorgeous Brand New Condo,19584296,Jeffrey,Manhattan,East Harlem,40.79147,-73.94791,Entire home/apt,225,5,6,2018-08-06,0.38,1,0 +16148691,Lovely 2 bed/2 bath 15 min. from TIMES SQUARE,3912009,Brendan,Manhattan,Harlem,40.82408,-73.94643,Entire home/apt,210,2,4,2018-06-03,0.13,2,0 +16148973,"Sun-drenched, Lux, village studio",28804489,Bobbi,Manhattan,East Village,40.73121,-73.98693,Entire home/apt,220,5,46,2019-07-01,1.81,1,92 +16149186,Cozy private room in the Bronx!,105375380,Yesenia,Bronx,Woodlawn,40.89743,-73.86983,Private room,68,2,1,2018-05-19,0.07,2,39 +16153863,Modern 1 bedroom in Prime Bushwick,34508225,Camilla,Brooklyn,Bushwick,40.70389,-73.92771,Entire home/apt,135,3,5,2018-07-01,0.20,1,0 +16154699,1 Bedroom Apartment on tree-lined street,102012893,Jeffrey,Manhattan,Harlem,40.80695,-73.94982,Entire home/apt,130,2,133,2019-07-07,4.21,2,21 +16154904,SoHo Apartment Room to Rent Ready,32610275,Mario,Manhattan,Nolita,40.72075,-73.99393,Private room,110,3,0,,,1,0 +16155648,Unique Retreat in the Heart of Bushwick!,21877498,Andy,Brooklyn,Bushwick,40.70272,-73.93005,Entire home/apt,140,3,0,,,2,0 +16156753,Quiet Bedroom with Own bathroom Near City,105455587,Lisa,Queens,Forest Hills,40.71746,-73.85667,Private room,60,1,0,,,1,0 +16157387,HUGE BEAUTIFUL 3 BEDROOMS APARTMENT WITH ALL,7858210,Maxime,Manhattan,Harlem,40.81588,-73.93984,Entire home/apt,400,2,3,2018-09-25,0.10,4,180 +16157731,Brooklyn Heights Garden Level,105461266,Stephen,Brooklyn,Brooklyn Heights,40.69107,-73.99378,Entire home/apt,200,4,71,2019-06-29,2.30,1,230 +16158270,"Studio w/EIK & Backyard, 23 Minutes to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.68301,-73.95305,Entire home/apt,76,30,7,2019-06-29,0.27,3,310 +16158314,Cozy Apartment in Williamsburg,20195183,Yossi,Brooklyn,Williamsburg,40.71749,-73.95246,Entire home/apt,200,2,9,2019-04-23,0.29,1,0 +16159444,YOUR IDEAL HOME / 20steps to Subway,27977412,Daria,Brooklyn,East Flatbush,40.64583,-73.9483,Shared room,25,30,10,2018-07-12,0.32,4,332 +16159778,Cozy room in Williamsburg,13483196,Noelle,Brooklyn,Williamsburg,40.71212,-73.96086,Private room,90,1,0,,,1,0 +16159901,1 Bedroom Presidential at Wyndham Midtown 45,69545883,Chayla,Manhattan,Midtown,40.75228,-73.97185,Private room,799,2,1,2016-12-30,0.03,12,365 +16160189,Private Double Room in Bushwick Loft,6007970,Irem,Brooklyn,Williamsburg,40.70666,-73.93666,Private room,45,3,31,2019-03-03,1.01,1,0 +16160621,"Elegant, Prime West Village 1 Bedroom",105481269,Michael,Manhattan,West Village,40.73678,-74.00566,Entire home/apt,800,5,0,,,1,88 +16160783,Gorgeous Room with Private Bathroom in Manhattan,104926837,Julia,Manhattan,Financial District,40.70654,-74.00712,Private room,176,3,123,2019-06-30,3.90,3,17 +16161688,Big Room in Cool Williamsburg Loft - Long Stays,415660,Carmen,Brooklyn,Williamsburg,40.71332,-73.96585,Private room,85,6,7,2019-05-27,0.23,2,19 +16161819,Cozy Room in a 2BR Apartment,83732495,Debbie,Brooklyn,East Flatbush,40.65221,-73.93634,Private room,21,5,4,2017-04-30,0.15,1,0 +16161888,Chill 2BD in Brooklyn,105489342,Josephine,Brooklyn,Brownsville,40.66041,-73.91562,Entire home/apt,129,2,73,2019-06-24,2.34,1,82 +16161905,Large 2-bedroom Brownstone with Artistic Charm,30110593,Arash,Brooklyn,Bedford-Stuyvesant,40.68226,-73.9485,Entire home/apt,135,3,0,,,1,0 +16162247,Gorgeous 1 Bedroom in Prime Location in Brooklyn!,88384901,Nehia,Brooklyn,South Slope,40.66707,-73.98611,Private room,145,4,0,,,1,0 +16162363,Quiet Private Room in Manhattan,104926837,Julia,Manhattan,Financial District,40.70551,-74.00735,Private room,113,3,131,2019-07-04,4.21,3,12 +16162621,NEW! Exceptional 2BR/1BA Williamsburg Oasis,104781467,Russell,Brooklyn,Williamsburg,40.71306,-73.94856,Entire home/apt,199,3,1,2016-12-11,0.03,1,0 +16162933,Bronx Bed and Breakfast,101289150,David & Elaine,Bronx,Castle Hill,40.82286,-73.84765,Entire home/apt,86,2,86,2019-06-10,2.76,1,171 +16163275,Super Large & Cozy One Bedroom Apartment,78433586,Fayth,Queens,Astoria,40.76001,-73.91865,Entire home/apt,95,2,9,2017-08-26,0.29,1,212 +16163672,"1 Bedroom in the Heart of The Upper East Side, NY",60495305,Joe,Manhattan,Upper East Side,40.7732,-73.95857,Private room,100,2,14,2018-01-01,0.46,1,0 +16163725,ENTIRE 1BR in the heart of NYC !,68544687,Maria,Manhattan,Nolita,40.72321,-73.99514,Entire home/apt,199,3,3,2017-05-28,0.10,1,0 +16163768,Beautiful Queen Private Room in Financial District,104926837,Julia,Manhattan,Financial District,40.7054,-74.00763,Private room,146,3,104,2019-06-17,3.31,3,7 +16163874,Amazing Designer Brownstone Garden Apartment,105507665,Paul,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93234,Entire home/apt,150,4,73,2019-06-24,2.33,1,228 +16164264,**Cozy Room In Hip Ultra Location LES/NOLITA**,105511610,Laura,Manhattan,Lower East Side,40.71916,-73.99229,Private room,98,2,76,2019-06-24,2.42,1,46 +16164399,Lovely 3 Bedrm Apt Perfect for Groups & Families,1538057,Catherine,Brooklyn,Bedford-Stuyvesant,40.69501,-73.93363,Entire home/apt,25,2,50,2019-06-15,1.65,1,6 +16164497,"Quincy Lighthouse | Modern, Luxury 2-bedroom Oasis",105513623,Kristin,Brooklyn,Bedford-Stuyvesant,40.6885,-73.93283,Entire home/apt,130,2,51,2019-06-30,1.76,1,83 +16164613,Cozy studio with stunning views of Dwntwn,48832831,Ryan,Manhattan,Upper West Side,40.77146,-73.98906,Entire home/apt,200,2,3,2016-12-18,0.10,1,0 +16164699,"home away from home :-) English, русский, עברית",42814202,Irisha,Queens,Fresh Meadows,40.74271,-73.78749,Entire home/apt,94,1,18,2019-05-02,0.60,3,173 +16164856,Sun filled gem in the heart of the East Village,12610226,Kumara,Manhattan,East Village,40.72315,-73.97878,Entire home/apt,150,5,8,2018-09-23,0.26,1,0 +16165498,"Private, Clean, Spacious Room with Full Bathroom",28875304,Sebastian,Brooklyn,Bushwick,40.68856,-73.91503,Private room,85,4,4,2019-01-02,0.13,2,8 +16166989,"Cozy Bedroom in Loft Apartment, W'burg Brooklyn",4936720,Mac,Brooklyn,Williamsburg,40.71545,-73.95406,Private room,110,1,77,2019-06-12,2.51,2,39 +16170544,Amazing studio in the heart of chelsea!,86115767,Liad,Manhattan,Chelsea,40.74485,-74.00186,Entire home/apt,60,1,124,2019-07-04,3.94,1,86 +16171293,Sunny cozy room next to park,10737943,David,Manhattan,Upper East Side,40.77257,-73.94616,Private room,48,30,7,2019-05-12,0.26,10,342 +16171595,Cozy Apartment,105162882,Jian,Manhattan,Upper West Side,40.7987,-73.9621,Private room,110,1,1,2016-12-07,0.03,1,0 +16171868,"Private room in Bushwick, 20 minutes to Manhattan!",73447493,Alana,Brooklyn,Bedford-Stuyvesant,40.69587,-73.93407,Private room,60,2,37,2019-06-24,1.18,1,90 +16172073,Sunny renovated 1 BR in Brooklyn by Prospect Park,105572605,Peter,Brooklyn,Flatbush,40.64745,-73.96207,Entire home/apt,72,1,15,2019-06-23,3.13,1,1 +16172162,"Gorgeous, sun-drenched private apt in Harlem",72808547,Jeremy,Manhattan,Harlem,40.80804,-73.943,Entire home/apt,120,4,22,2019-06-24,0.71,1,0 +16172498,Cozy and quiet room on Broadway 2!,102383709,Mark & Will,Manhattan,Harlem,40.83069,-73.94779,Private room,58,4,131,2019-06-26,4.17,2,115 +16172895,Studio in beautiful Chelsea - close to everything!,9007993,Mary,Manhattan,Chelsea,40.74111,-73.99594,Entire home/apt,150,3,2,2017-08-13,0.08,1,0 +16173500,"Cozy room w/ window in Ridgewood, Queens.",105582490,Joseph,Queens,Ridgewood,40.71041,-73.90977,Private room,40,2,20,2018-04-13,0.64,1,0 +16173564,The Gnome House “ Oasis in the city “,92828204,Claire,Manhattan,Midtown,40.75979,-73.96444,Entire home/apt,1200,1,36,2019-06-09,1.64,1,354 +16174233,QUIET OASIS IN THE MIDDLE OF MANHATTAN NYC,9293730,Inna,Manhattan,Upper East Side,40.76982,-73.95697,Entire home/apt,89,30,11,2019-06-22,0.40,16,261 +16174929,Cosy Room in Williamsburg House,22432953,Charles-Hugo,Brooklyn,Williamsburg,40.70816,-73.94822,Private room,55,4,3,2017-05-05,0.10,1,0 +16175367,New York Christmas in Astoria,1354727,Courtney,Queens,Astoria,40.77572,-73.9339,Entire home/apt,150,5,2,2019-01-01,0.07,2,0 +16175456,Large luxury private room in Williamsburg!,1314045,Tim,Brooklyn,Williamsburg,40.71341,-73.94824,Private room,99,1,230,2019-07-05,7.28,3,353 +16175740,"和缘阳光民宿 停车方便,环境优美 宽敞明亮,中英文服务。",105074140,Emmy,Queens,Flushing,40.76153,-73.80304,Private room,38,1,69,2019-02-27,2.19,4,0 +16177263,The Wild Wild West (village),45520477,Nina,Manhattan,West Village,40.73365,-74.0041,Entire home/apt,500,3,21,2019-05-28,0.73,1,365 +16177837,Stunning 1 BR with high end finishes,61391963,Corporate Housing,Manhattan,Kips Bay,40.74,-73.97936,Entire home/apt,142,30,9,2019-06-03,0.30,91,342 +16177970,"Charming private room quiet, Doorman in Manhattan",65974774,Geo,Manhattan,Upper East Side,40.77372,-73.95418,Private room,114,1,40,2019-04-26,1.28,3,324 +16178531,2 Floor Epic Loft in Prime Bushwick,3473672,Andrew,Brooklyn,Williamsburg,40.70484,-73.9377,Entire home/apt,175,2,21,2019-06-28,0.81,1,313 +16178928,Unbeatable Location and Charm in the West Village,83929409,William,Manhattan,West Village,40.73621,-74.00612,Entire home/apt,350,2,5,2019-07-01,0.16,1,0 +16179502,Charming room well located !!!!,13325936,Madi,Manhattan,East Harlem,40.79275,-73.94191,Private room,60,5,1,2017-01-02,0.03,1,0 +16179862,Clean and Comfy Private Bedroom,95766078,Alex,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95101,Private room,75,1,0,,,2,0 +16180783,Spacious 2 Bedroom Apartment with Balcony,6338496,Jason,Queens,Middle Village,40.71157,-73.87619,Entire home/apt,85,30,0,,,1,280 +16182780,Newly Furnished Bedroom in NYC apt,105668518,Benny,Manhattan,Washington Heights,40.8407,-73.93886,Private room,100,2,4,2017-05-08,0.13,1,0 +16185437,Cozy Bedroom in Centrally Located Apartment,22243853,Annie,Brooklyn,Williamsburg,40.7142,-73.96408,Private room,60,3,21,2018-09-11,0.72,1,0 +16186828,Cleaning,563530,Misael,Bronx,Kingsbridge,40.86352,-73.90503,Private room,80,30,0,,,1,365 +16189705,Spacious and Cozy Room in the East Village,5998815,Brecht,Manhattan,Stuyvesant Town,40.73052,-73.9778,Private room,85,3,16,2019-06-21,0.51,1,9 +16190110,Private room in Flatbush Brooklyn!,19238497,Azu,Brooklyn,Prospect-Lefferts Gardens,40.65538,-73.96056,Private room,36,7,8,2017-08-19,0.26,1,0 +16190577,Private room with private bathroom,43729733,Rod,Manhattan,East Harlem,40.78565,-73.94268,Private room,150,1,56,2019-06-24,1.79,1,272 +16190902,Your point in Chelsea,32084117,Fernando,Manhattan,Chelsea,40.74183,-73.99997,Entire home/apt,330,2,124,2019-05-27,3.94,1,317 +16191596,Sunny Room B in China town of BK/ 8 min to Subway,105640471,Jason,Brooklyn,Sunset Park,40.64024,-74.01573,Private room,54,1,18,2018-11-11,0.61,8,241 +16191889,Williamsburg - Terrace apartment,12943509,Grace,Brooklyn,Williamsburg,40.713,-73.94109,Private room,35,3,0,,,1,0 +16191967,Sunny new room D/ 30mins to Manhattan3,105640471,Jason,Brooklyn,Sunset Park,40.64074,-74.01512,Private room,53,1,18,2019-06-17,0.63,8,360 +16192835,Modern Artist's Loft in East Williamsburg/Bushwick,47453782,Avi,Brooklyn,Williamsburg,40.70729,-73.93129,Entire home/apt,175,2,44,2019-05-12,1.43,1,3 +16193259,Sunny new room C/ 30mins to Manhattan,105640471,Jason,Brooklyn,Sunset Park,40.64052,-74.01539,Private room,48,1,10,2019-06-10,0.71,8,240 +16193729,Mini room with Full size bed A /8 min to Subway R,105640471,Jason,Brooklyn,Sunset Park,40.64167,-74.01532,Private room,39,3,23,2019-01-02,0.82,8,137 +16193749,Large 2 bed cozy room in queens,105753805,Kevin,Queens,Elmhurst,40.74396,-73.87476,Private room,70,1,8,2019-06-08,0.26,1,302 +16194283,Private Room in Beautiful Brooklyn Private House.,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68128,-73.91196,Private room,29,60,13,2019-05-01,0.42,4,51 +16194421,Historic Lower East Side,42734669,Rebecca,Manhattan,Chinatown,40.7155,-73.99198,Entire home/apt,120,20,4,2017-10-09,0.13,1,0 +16194651,Gorgeous one bedroom apartment.,105762561,Kim,Queens,Jamaica,40.68038,-73.77244,Entire home/apt,125,3,42,2019-06-10,1.85,3,348 +16194815,Renovated Harlem Brownstone Apartment,31820164,Tysun,Manhattan,Harlem,40.81816,-73.94544,Entire home/apt,100,4,62,2019-06-17,2.10,1,80 +16195143,Spacious RM in Home with Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.86914,-73.8951,Private room,79,3,73,2019-06-20,2.79,4,69 +16199608,Williamsburg. Non profit . Artist,312722,Kristian & Di,Brooklyn,Williamsburg,40.7087,-73.95427,Private room,70,20,3,2018-10-27,0.15,4,275 +16201857,Bahia Brazil Vibe,7824337,Miralva,Brooklyn,Flatbush,40.65202,-73.96325,Private room,95,3,14,2018-08-27,0.46,2,0 +16201959,Beautifull Bed Stuy 1bdrm apt with outdoor space!,67523,Kv,Brooklyn,Bedford-Stuyvesant,40.69097,-73.93612,Entire home/apt,77,2,51,2019-07-07,3.10,1,5 +16202083,"Modern Room in a Cozy, Colorful Apartment",11073179,Sandra,Brooklyn,Prospect-Lefferts Gardens,40.66122,-73.94867,Private room,75,1,3,2019-02-23,0.10,1,0 +16202095,Williamsburg Studio w/ Balcony & Stunning View,6277934,Alex,Brooklyn,Williamsburg,40.71868,-73.94918,Entire home/apt,210,4,0,,,1,0 +16202302,NYC Living!,104814891,Kirra,Manhattan,Chinatown,40.71521,-73.99169,Private room,80,2,152,2019-07-05,5.01,1,105 +16202962,"Stunning modern 1BR APT, 15min from grand central",105828180,Guy,Queens,Sunnyside,40.74604,-73.9217,Entire home/apt,120,2,78,2019-06-14,2.55,3,135 +16204030,Penthouse + private patio in Williamsburg,34307713,Sam,Brooklyn,Williamsburg,40.71422,-73.95732,Entire home/apt,175,2,71,2019-06-20,2.35,1,68 +16204655,Awesome spot in Bushwick,78119367,Joel,Brooklyn,Bushwick,40.7015,-73.9266,Private room,82,2,0,,,1,0 +16205027,"Private room, Sunny topfloor apartment Cobble Hill",22511613,James,Brooklyn,Cobble Hill,40.68714,-73.99283,Private room,114,1,2,2017-11-05,0.09,2,0 +16205154,"Cozy Ground Floor in Park Slope, BK",17167740,Andrea,Brooklyn,South Slope,40.66593,-73.9879,Private room,93,2,34,2018-01-04,1.11,1,34 +16205219,Double room in spacious Morningside apartment,28365672,Lucy,Manhattan,Morningside Heights,40.80793,-73.95799,Private room,55,6,0,,,1,0 +16205272,Sunny 2 Bed w/Terrace in Brownstone,104238268,Kory,Manhattan,Harlem,40.81309,-73.94614,Entire home/apt,199,30,16,2017-12-31,0.57,1,150 +16205431,Longer-term 2-bedroom in Nolita with terrace.,7618966,Steve,Manhattan,Nolita,40.72243,-73.996,Entire home/apt,387,1,0,,,1,0 +16205491,BEAUTIFUL 1-BEDROOM @ דירה שווה בוויליאמסבורג,8682765,Nimrod,Brooklyn,Williamsburg,40.71497,-73.93905,Entire home/apt,150,7,0,,,1,0 +16205941,Cozy 1 bedroom in brooklyn 30max to manhattan,63834432,Camille,Brooklyn,Williamsburg,40.70781,-73.93926,Private room,58,1,1,2016-12-08,0.03,1,0 +16206077,Two bedroom apartment in Williamsburg,1865198,Evelyne,Brooklyn,Williamsburg,40.71157,-73.95846,Entire home/apt,185,8,2,2017-05-22,0.07,1,59 +16206313,Convenient place in Manhattan,49699620,Louise,Manhattan,Upper East Side,40.77968,-73.94815,Private room,90,3,7,2018-01-15,0.22,3,0 +16206383,Bright Room in the Heart of Astoria,2568028,Maria,Queens,Astoria,40.76963,-73.92993,Private room,50,1,5,2016-12-17,0.16,1,0 +16206794,1BR apartment one block from Columbia U and subway,9601972,Samer,Manhattan,Morningside Heights,40.80724,-73.96348,Entire home/apt,189,2,1,2017-01-04,0.03,1,0 +16206887,Private room in Brooklyn house with backyard,43754478,Thomas,Brooklyn,Bedford-Stuyvesant,40.69878,-73.94607,Private room,50,5,5,2017-04-28,0.17,1,0 +16207381,Airy 2-Bedroom Apt with Terrace in Spanish Harlem,7913732,Sarah,Manhattan,East Harlem,40.79952,-73.93764,Entire home/apt,240,3,4,2018-09-03,0.17,1,7 +16208920,Home away from home in heart of BK,5237407,Jenima,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.94674,Entire home/apt,131,2,20,2019-06-23,0.73,2,0 +16212477,Bright big bedroom in Brooklyn,9119410,Marie,Brooklyn,Kensington,40.63501,-73.97298,Private room,80,1,1,2016-12-10,0.03,1,0 +16212767,Studio with private entrance near Central Park.,6082745,Tracey,Manhattan,Upper West Side,40.78361,-73.9732,Entire home/apt,225,10,14,2019-04-24,0.52,1,11 +16213157,Huge Madison Avenue Loft,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.75089,-73.98059,Entire home/apt,139,30,2,2018-11-01,0.07,31,134 +16213608,Modern room very near Manhattan with free pickup!,83627325,Jared,Queens,Sunnyside,40.74554,-73.91778,Private room,109,1,5,2018-10-21,0.17,4,356 +16214199,Nice and spacious 3BR home in Queens,10762834,David,Queens,East Elmhurst,40.7617,-73.89134,Entire home/apt,165,2,32,2019-01-01,1.03,1,55 +16214404,"Small but cozy room in Roosevelt Island, Location!",31207419,Yandong,Manhattan,Roosevelt Island,40.76213,-73.94889,Private room,45,2,1,2016-12-25,0.03,1,0 +16214854,Spacious Brooklyn Apartment for Two,6134680,Amy,Brooklyn,Crown Heights,40.67476,-73.94209,Private room,50,1,35,2019-05-27,1.14,1,5 +16215826,supper sunny apt!,105328014,Allan,Manhattan,Gramercy,40.73565,-73.98056,Entire home/apt,90,30,5,2019-06-16,0.16,1,154 +16216301,Double Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.6339,-74.08513,Private room,55,3,6,2019-06-07,0.22,3,88 +16217520,Designer's Rail-Road Apartment-Prime Williamsburg,8300022,Siria,Brooklyn,Williamsburg,40.7092,-73.9506,Entire home/apt,130,5,1,2017-01-01,0.03,1,0 +16218094,Charming and Quiet West Village 1 BR,1873123,Belinda,Manhattan,West Village,40.73095,-74.00321,Entire home/apt,190,15,0,,,1,0 +16219145,Loft Studio in Heart of Fort Greene,40721357,Randi,Brooklyn,Fort Greene,40.68814,-73.97452,Entire home/apt,150,2,34,2019-05-27,1.11,1,3 +16220849,☝ Your Sweet Suite Spot ☝,69189948,Ella,Manhattan,Washington Heights,40.84862,-73.93299,Private room,75,2,45,2019-07-01,1.44,3,183 +16221732,"A Comfortable, Cozy Room",4013000,Mei,Queens,Bayside,40.75465,-73.77361,Private room,30,15,31,2019-05-06,0.99,2,142 +16224040,Romantic Rooftop Studio with 360 Brooklyn views!,3479852,Benjamin,Brooklyn,Gowanus,40.68275,-73.98562,Entire home/apt,150,1,179,2019-06-27,5.69,1,0 +16224408,Private one bedroom in Astoria (Halletts Point),1354727,Courtney,Queens,Astoria,40.77499,-73.93565,Private room,75,1,50,2019-06-18,1.59,2,61 +16224523,1 Bedroom w/ common space in 4br Loft in Bushwick,386795,Reuben,Brooklyn,Bedford-Stuyvesant,40.68712,-73.91847,Private room,30,7,0,,,1,0 +16226031,Spacious One Bedroom Apartment,106030531,Pablo,Manhattan,Morningside Heights,40.81456,-73.95953,Entire home/apt,110,7,1,2018-01-06,0.05,1,0 +16226066,Room near park · 2 stops to Manhattan on N/D train,29314677,Ignat,Brooklyn,Sunset Park,40.64832,-73.99913,Private room,64,1,87,2019-07-01,2.82,1,42 +16226219,"Williamsburg, Ground Flr Apt with Private Backyard",59101644,Anthony,Brooklyn,Williamsburg,40.71615,-73.94797,Entire home/apt,135,2,29,2019-06-07,0.93,1,82 +16226427,(Williamsburg) Large bedroom with private balcony,11313668,Adam,Brooklyn,Williamsburg,40.70089,-73.94997,Private room,55,1,8,2019-03-24,0.26,2,0 +16227237,"Spacious Studio in Prime Williamsburg, Brooklyn",1914516,Daniel,Brooklyn,Williamsburg,40.71134,-73.95953,Entire home/apt,165,1,3,2017-09-17,0.12,1,0 +16227469,"HUGE Private Room, Doorman Building, quiet !",65974774,Geo,Manhattan,Upper East Side,40.77585,-73.95754,Private room,132,1,14,2019-05-26,0.51,3,326 +16227620,Lovely 1 Bedroom Greenpoint Apartment Near Park,3548768,Elizabeth,Brooklyn,Greenpoint,40.72314,-73.94027,Entire home/apt,120,4,0,,,1,0 +16227708,"Large sunny private bedroom, private garden",106043391,Samuel,Brooklyn,Greenpoint,40.72743,-73.94491,Private room,60,3,0,,,1,0 +16227719,Queen Bed Room in Gowanus Boutique Hotel,33213436,Alec,Brooklyn,Gowanus,40.67831,-73.98358,Private room,169,1,34,2018-10-29,1.09,8,364 +16228346,ENTIRE UNIT: MID TOWN NYC - GRAND CENTRAL STATION,43828940,James,Manhattan,Midtown,40.75343,-73.97313,Entire home/apt,119,3,0,,,1,0 +16228505,Clean and Cozy Room in Meatpacking District,21422835,Kate,Manhattan,Chelsea,40.74383,-74.0034,Private room,120,3,0,,,1,0 +16228697,Beautiful brownstone in Harlem- $2.75 bus from LGA,86509759,Roanne,Manhattan,East Harlem,40.80802,-73.94013,Private room,77,3,30,2019-06-28,0.98,1,90 +16229170,big loft apartement in the Lower East Side,185745,Alessandra,Manhattan,Lower East Side,40.71278,-73.9919,Entire home/apt,200,1,26,2019-06-06,0.95,2,317 +16229583,1 Bedroom in a large apartment w/ a private patio!,29263011,Justin,Brooklyn,Red Hook,40.67705,-74.01436,Private room,85,2,68,2019-07-01,2.22,1,69 +16229585,Large Duplex on the west village with Backyard,2279300,Jay,Manhattan,West Village,40.73015,-74.00304,Entire home/apt,400,3,17,2019-07-02,1.16,1,334 +16229699,Cozy Studio in the heart of Washington Square Park,105799162,Taha,Manhattan,Greenwich Village,40.72925,-73.99927,Entire home/apt,200,1,12,2019-07-06,8.18,1,206 +16230057,Comfortable Room in 3 Bedroom Apartment,38288406,Justin,Queens,Ridgewood,40.70063,-73.90474,Private room,30,15,0,,,1,0 +16230255,Cozy room in the lively East Village,50053528,Julia,Manhattan,East Village,40.7246,-73.98258,Private room,80,3,110,2019-06-17,3.48,1,11 +16230313,Comfy Sofa Bed in Cozy Apartment,89873550,TiffanyJoy,Brooklyn,Bedford-Stuyvesant,40.68441,-73.95099,Shared room,68,3,0,,,2,0 +16230581,Cozy apartment in the heart of Williamsburg!,326185,Martina,Brooklyn,Williamsburg,40.71532,-73.95563,Entire home/apt,108,3,3,2017-07-28,0.10,1,0 +16230640,"Comfy, Convenient Upper West Side Condo Room",61585315,Rachel & Preston,Manhattan,Upper West Side,40.78513,-73.97737,Private room,75,2,3,2017-03-26,0.10,1,0 +16230905,Bright & Sunny Studio in the Upper East Side,49900664,Kelcey,Manhattan,Upper East Side,40.76954,-73.94904,Entire home/apt,91,2,2,2016-12-19,0.06,1,0 +16232783,Private 1Br aparmtent on Floor 1 of my house,6677922,Ilya,Staten Island,Great Kills,40.55616,-74.16027,Entire home/apt,51,4,29,2019-06-22,0.97,1,15 +16233577,Peaches Paradise.,101499766,Claudette,Queens,Springfield Gardens,40.68203,-73.75437,Private room,60,1,305,2019-07-07,9.83,2,341 +16236157,Beautiful townhouse apt on historic street,2748223,Ming,Manhattan,Harlem,40.80447,-73.94623,Entire home/apt,120,14,1,2017-01-01,0.03,1,188 +16236939,Charming light-filled apartment in Crown Heights,32031114,Joseph,Brooklyn,Crown Heights,40.67247,-73.95752,Entire home/apt,110,30,1,2017-01-02,0.03,1,0 +16237242,Williamsburg Waterfront 2br + 2bath Apartment,3088873,Dave,Brooklyn,Williamsburg,40.72052,-73.96239,Entire home/apt,149,2,9,2017-06-05,0.29,1,0 +16237773,Quiet and beautiful apartment near central park,18104054,Nicole,Manhattan,Upper East Side,40.76761,-73.95986,Entire home/apt,160,7,1,2017-01-01,0.03,1,0 +16238449,Lovely apartment near Prospect Park.,19585203,Franny & Zooey,Brooklyn,Kensington,40.64571,-73.97449,Entire home/apt,90,7,2,2017-01-16,0.07,1,0 +16238569,Beautiful Factory Loft in Greenpoint,9442323,Chelsea,Brooklyn,Greenpoint,40.73242,-73.9585,Entire home/apt,250,3,64,2019-06-29,2.15,1,72 +16238620,Studio Near Columbia University,31391525,Olive,Manhattan,Upper West Side,40.80103,-73.96546,Entire home/apt,74,27,1,2016-12-07,0.03,1,0 +16238779,Spacious Studio Duplex in Heart of Williamsburg!,36382944,Joshua,Brooklyn,Williamsburg,40.7152,-73.9623,Entire home/apt,230,31,2,2018-01-01,0.06,1,0 +16239225,1 bedroom next to Prospect Park & SubwayStation,59442523,Josh,Brooklyn,Flatbush,40.65158,-73.96428,Private room,90,1,2,2017-08-20,0.09,2,0 +16241319,Spacious Brooklyn 2BR house (with cat & parking!),24418469,Kirsten,Brooklyn,East Flatbush,40.64625,-73.95048,Entire home/apt,200,3,6,2019-01-01,0.20,1,0 +16241833,One bedroom available with great access to trains!,71147912,Rachel,Brooklyn,Bushwick,40.7046,-73.92538,Private room,49,4,3,2018-01-01,0.10,1,0 +16241951,Relax and Tune In,354891,Liz,Brooklyn,Crown Heights,40.67715,-73.94543,Shared room,100,2,0,,,1,364 +16242067,Private bedroom in Morningside Heights,11081130,Sai Swaroop,Manhattan,Morningside Heights,40.81447,-73.9593,Private room,37,5,0,,,1,0 +16242292,1 Bedroom Apartment in Willimasburg,45299546,Aude,Brooklyn,Williamsburg,40.71297,-73.93602,Private room,47,7,2,2017-07-16,0.07,1,12 +16242753,Beautiful Upper East Side 1 bedroom,33200665,Christie,Manhattan,Upper East Side,40.77026,-73.95208,Entire home/apt,127,3,0,,,1,0 +16242765,1 Bedroom w. private bath 15min to Central Park.,104177785,Carolina,Queens,Jackson Heights,40.75418,-73.88586,Private room,250,2,14,2017-09-10,0.51,1,1 +16243676,APT FOR UP TO 4! Dream location & private terrace!,3991905,Romina,Manhattan,Gramercy,40.73873,-73.98714,Entire home/apt,250,3,1,2017-06-04,0.04,1,0 +16243823,Warm Williamsburg Duplex Perfect for Christmas,32199225,Dania,Brooklyn,Williamsburg,40.7141,-73.94685,Entire home/apt,360,1,2,2016-12-26,0.06,1,0 +16243941,Modern Authentic New York Living 1 BR Apartment,69131939,Olivia,Manhattan,Lower East Side,40.71343,-73.98677,Entire home/apt,200,4,25,2019-05-27,1.12,1,352 +16244096,Room for rent in Brooklyn. 1 block from R train,106197850,Jamie,Brooklyn,Sunset Park,40.64318,-74.01329,Private room,50,7,1,2017-05-21,0.04,1,0 +16244553,"Modern Private Studio for 2 in Arverne, Rockaway",106197923,Huilin,Queens,Arverne,40.58873,-73.79573,Entire home/apt,85,2,99,2019-06-22,3.15,1,56 +16244634,Private Room/ 2BR Apt. Bedstuy/ Brooklyn,44458662,Melanie,Brooklyn,Bedford-Stuyvesant,40.68725,-73.93068,Private room,40,5,2,2017-07-20,0.08,1,0 +16244843,Cozy room in the East Village - Manhattan,53836757,Felipe,Manhattan,East Village,40.72947,-73.9785,Private room,85,4,20,2018-12-27,0.65,1,12 +16245005,Bedroom in the heart of Bushwick/Bed-stuy!!,3568330,Ken,Brooklyn,Bedford-Stuyvesant,40.69332,-73.93502,Private room,85,9,6,2018-07-22,0.22,1,10 +16248277,Cozy and classic home,106233552,Coco,Queens,East Elmhurst,40.76652,-73.86651,Entire home/apt,239,3,12,2019-05-27,0.55,2,266 +16251345,Sunny Cobble Hill 2 BR+ Cozy & Ecletic Brownstone,1468716,Peggy,Brooklyn,Cobble Hill,40.68631,-73.99624,Entire home/apt,700,4,3,2019-04-17,0.24,1,89 +16251572,Lovely apartment in Williamsburg,35261699,Harry,Brooklyn,Greenpoint,40.72253,-73.9435,Private room,60,7,6,2018-12-30,0.20,1,62 +16251715,NYC from Astoria Queens,75443454,Ana,Queens,Ditmars Steinway,40.77307,-73.91822,Private room,87,3,3,2019-04-19,0.10,2,343 +16251963,"Gorgeous, sunny and cozy bedroom",40230231,Mor,Brooklyn,Greenpoint,40.72547,-73.94595,Private room,50,8,1,2019-01-02,0.16,1,2 +16252722,Sunny large loft&rooftop in Williamsburg,18625208,Delphine,Brooklyn,Williamsburg,40.71606,-73.95135,Private room,85,2,4,2017-10-15,0.13,1,0 +16252761,Kosher 1 bedroom with balcony & private bathroom,106272021,Esther,Brooklyn,Prospect-Lefferts Gardens,40.66313,-73.94028,Private room,80,1,12,2018-06-10,0.39,3,5 +16253053,Cozy Magical Room in the Heart of West Village,12810839,Kytzia,Manhattan,West Village,40.73193,-74.00529,Private room,90,1,32,2018-08-01,1.04,2,0 +16253413,"Private Bath, Cozy Sunset Terrace Room",36234811,Anna,Queens,Arverne,40.58989,-73.79117,Private room,69,1,25,2019-06-21,0.81,4,156 +16253465,Sunny Chelsea Studio,86575720,Ali And Amy,Manhattan,Chelsea,40.74138,-73.99875,Entire home/apt,128,1,6,2017-02-25,0.19,1,0 +16254609,"Sunny, Spacious House by the Beach",36234811,Anna,Queens,Arverne,40.59153,-73.79166,Entire home/apt,200,1,46,2019-06-16,1.65,4,152 +16255284,Luxurious Penthouse Loft with balcony in West Vil,65811347,Katya,Manhattan,West Village,40.73613,-74.00711,Entire home/apt,220,28,2,2017-08-26,0.08,1,365 +16256074,Sweet cozy room in Brooklyn - East Williamsburg,44707475,Rachel,Brooklyn,Williamsburg,40.71396,-73.93952,Private room,35,7,5,2019-02-10,0.16,1,0 +16257739,Perfectly Located Luxury 1bdrm with Parking Space,62287125,Matthew,Queens,Astoria,40.76755,-73.9232,Entire home/apt,110,30,0,,,1,0 +16257916,Studio Apartment in Wyndham Midtown 45.,42734903,Barry & Verone,Manhattan,Midtown,40.75374,-73.97138,Entire home/apt,300,3,0,,,1,0 +16258672,Cozy 1 bedroom in Clinton Hill,3086976,Aissatou,Brooklyn,Clinton Hill,40.68902,-73.96784,Entire home/apt,135,7,2,2017-04-24,0.07,1,0 +16258754,Cozy Modern Bedroom In A Newly Updated Apt,8091133,Daniel,Brooklyn,Bushwick,40.7004,-73.91934,Private room,40,2,0,,,1,0 +16258784,One Room in Large Sunny 2 Bedroom In Brooklyn,19000672,Cindy,Brooklyn,Crown Heights,40.67503,-73.95771,Private room,150,2,2,2017-01-03,0.07,1,0 +16259169,Private semi-furnished room in 6 bedroom duplex.,106321136,Devshri,Brooklyn,Bedford-Stuyvesant,40.69118,-73.9554,Private room,35,15,0,,,1,0 +16259438,Private Sunny Lofted Bedroom in East Williamsburg,60146124,Diana,Brooklyn,Williamsburg,40.71416,-73.93852,Private room,38,21,13,2019-05-07,0.42,1,26 +16259441,#1 Ideal Williamsburg Stay -1 block from Lorimer L,46660053,Ploy,Brooklyn,Williamsburg,40.71311,-73.95332,Private room,70,2,52,2019-06-20,1.70,3,62 +16259629,New Year's Eve Time Square,82319393,Denise,Manhattan,Midtown,40.75073,-73.98439,Private room,350,3,1,2017-01-02,0.03,1,0 +16259714,Cozy apartment in Upper Manhattan!,106327066,Janelle,Manhattan,Washington Heights,40.84448,-73.93576,Private room,50,2,1,2016-12-07,0.03,1,0 +16259787,Private and comfortable room in Upper West Side,40277743,Francisca,Manhattan,Morningside Heights,40.80722,-73.95924,Private room,68,5,0,,,1,0 +16260117,"Queen Room in Great 2BR Apt, 20min to Times Sq",336228,Victoria,Queens,Sunnyside,40.74673,-73.91564,Private room,95,1,2,2018-02-10,0.09,1,0 +16260353,Cozy artsy bedroom near Cloisters,24967970,Ekaterina,Manhattan,Inwood,40.86269,-73.9222,Private room,80,3,6,2019-06-25,0.28,1,58 +16260362,Entire private studio in New York,18569725,Veer,Manhattan,Hell's Kitchen,40.76246,-73.99913,Entire home/apt,150,1,21,2017-06-08,0.67,1,0 +16260496,"Spacy, sunny Brooklyn studio next to prospect park",20844522,Vivienne,Brooklyn,Prospect-Lefferts Gardens,40.65963,-73.96174,Entire home/apt,53,12,17,2019-03-28,0.74,1,32 +16261522,Big Sunny Room in NYC (B5),5164854,Lilia,Manhattan,Harlem,40.81943,-73.9387,Private room,54,5,8,2018-09-03,0.31,8,332 +16261570,Cozy 1BD Apt 20min from Manhattan!,20718860,Dalilah,Queens,Astoria,40.76205,-73.90556,Entire home/apt,99,3,0,,,1,0 +16267197,"Cozy Room - 17mins to Manhattan. Close to LGA, JFK",40711894,Jessica,Queens,Elmhurst,40.74012,-73.88917,Private room,53,1,9,2018-09-09,0.29,4,0 +16267803,Lovely and Sunny Crown Heights 1BR,1192630,Christina,Brooklyn,Crown Heights,40.67775,-73.9445,Entire home/apt,135,2,77,2019-06-25,2.66,2,61 +16268350,Cozy Bedstuy Brownstone,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68893,-73.95354,Entire home/apt,525,2,1,2016-12-07,0.03,4,189 +16268781,Large Private One Bedroom,1395843,Jackie,Manhattan,Washington Heights,40.84313,-73.93947,Private room,50,2,3,2017-01-08,0.10,1,0 +16268951,3 Cozy Zen Rooms in Brownstone apt.,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68802,-73.9534,Private room,200,2,0,,,4,189 +16269161,Cozy Zen Room Beautiful Brownstone,104626152,Nikki,Brooklyn,Bedford-Stuyvesant,40.68817,-73.95479,Private room,200,2,1,2017-01-02,0.03,4,189 +16269256,Wash Hts 2BR apt extra sofa bed. Avail 12/20-1/4,101053359,John,Manhattan,Washington Heights,40.85447,-73.92804,Entire home/apt,99,4,2,2018-01-02,0.09,1,0 +16269344,"Fort Greene 2 bed, 2 bath in modern building",92321381,Terry,Brooklyn,Fort Greene,40.69117,-73.96968,Entire home/apt,145,30,0,,,1,29 +16269464,"Luxury Private Room, Financial District (Flexible)",31486652,Devin,Manhattan,Financial District,40.70858,-74.00599,Private room,129,13,0,,,1,0 +16269989,Charming Room in Brooklyn Townhome,20645317,Cortney,Brooklyn,Clinton Hill,40.6886,-73.96197,Private room,80,2,4,2018-08-30,0.13,1,10 +16270389,2BR- Private Kitchen + Bathroom-20min to Manhattan,69427329,Michelle & Eddie,Queens,Elmhurst,40.73812,-73.87547,Entire home/apt,150,1,150,2019-06-23,4.82,6,255 +16271051,"Entire Unit 2BR+bathroom, 20min to Manhattan",69427329,Michelle & Eddie,Queens,Elmhurst,40.7369,-73.87613,Entire home/apt,120,1,134,2019-06-23,4.36,6,249 +16271281,"Peaceful, cozy studio in Chinatown",46382018,Steven,Manhattan,Chinatown,40.7162,-73.99379,Entire home/apt,90,20,0,,,1,0 +16271447,"Large Windows, Plenty of Light",16437254,Benjamin,Brooklyn,Boerum Hill,40.68778,-73.98534,Entire home/apt,123,30,5,2019-04-30,0.16,21,343 +16271818,Amazing & Unique Soho/Nolita One Bedroom,10263854,Andrew,Manhattan,Chinatown,40.71833,-73.99443,Entire home/apt,250,1,29,2019-06-21,0.95,1,358 +16272419,Harlem Parkside - 1 cozy bedroom,106405713,Charley,Manhattan,Harlem,40.82098,-73.94214,Private room,100,2,5,2019-04-24,0.55,1,135 +16273058,"Luxury Studio Apartment with W/D, Gym, Rooftop",272826,Ian,Brooklyn,Williamsburg,40.71821,-73.95385,Entire home/apt,100,28,0,,,1,0 +16273143,Whole 2 bedrooms apartment in HK,85938655,Carlos,Manhattan,Hell's Kitchen,40.7625,-73.98802,Entire home/apt,250,3,31,2019-06-23,1.14,2,295 +16273510,Cozy Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76518,-73.9929,Entire home/apt,98,30,8,2019-04-05,0.32,31,145 +16273526,Home away for the holidays!,407407,Calixto,Bronx,Norwood,40.87372,-73.88625,Private room,60,2,3,2017-12-25,0.10,1,364 +16274292,Large studio apt in brownstone w/ private garden,106437594,Lance,Manhattan,Chelsea,40.74586,-74.00361,Entire home/apt,165,6,5,2018-01-24,0.16,1,0 +16274520,Large bedroom with balcony in the heart of Nolita,106438891,Vincent,Manhattan,Nolita,40.72382,-73.99335,Private room,100,3,1,2017-01-01,0.03,1,0 +16274717,Cozy bedroom on Roosevelt Island,33069397,Jesse,Manhattan,Roosevelt Island,40.76178,-73.94988,Private room,40,10,1,2017-01-07,0.03,1,0 +16274836,Beautiful Room in Bed-Stuy w/ Bridge Theme,106442885,Ava,Brooklyn,Bedford-Stuyvesant,40.69379,-73.93645,Private room,37,1,93,2019-05-31,3.00,2,2 +16274854,"Comfy Home, Convenient Location near Central Park",106407359,Sean,Manhattan,Harlem,40.80255,-73.95434,Private room,75,2,121,2019-06-12,3.89,1,3 +16274966,Artist Loft Bushwick - The Bird's Nest,65800377,Benny,Brooklyn,Bushwick,40.70068,-73.92225,Private room,39,2,9,2019-07-07,0.29,3,79 +16275030,Beautiful Bed-Stuy Room,106442885,Ava,Brooklyn,Bedford-Stuyvesant,40.68865,-73.93684,Private room,29,1,139,2019-06-24,4.43,2,2 +16275257,Cosy room in Brooklyn,23055253,Marie,Brooklyn,Bushwick,40.69864,-73.92933,Private room,80,3,2,2017-09-12,0.07,2,0 +16275733,Private Room in Quiet UES Apartment,20362478,Gabrielle,Manhattan,Upper East Side,40.76835,-73.95837,Private room,100,1,19,2017-05-17,0.62,1,0 +16275767,Spacious sun lit Bushwick room,106451051,Claire,Queens,Ridgewood,40.70338,-73.91006,Private room,40,5,8,2017-08-03,0.26,1,6 +16275887,MANHATTAN ROOM FOR 2 NO FEE,77304447,Genesis,Manhattan,Harlem,40.82207,-73.95332,Private room,45,5,40,2019-07-03,1.31,3,45 +16276172,Newly Renovated with Lovely Backyard!,106454216,Steven,Brooklyn,Bushwick,40.68763,-73.91773,Entire home/apt,55,3,53,2019-06-12,1.73,2,243 +16276294,Rental in a Uptown Cozy Apartment,32625342,Bianca,Bronx,Kingsbridge,40.88467,-73.90575,Private room,30,4,11,2019-05-15,0.35,2,0 +16276632,Cozy Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76335,-73.87007,Private room,48,1,510,2019-07-06,16.22,5,341 +16276834,"9B--NETFLIX, HEAT, TV, WI-FI",104166155,Suzie And Ryan,Brooklyn,East Flatbush,40.64171,-73.94721,Private room,49,1,1,2019-03-31,0.30,2,90 +16279328,Sunny and spacious Greenpoint Artists Haven (2 br),1154016,Amy,Brooklyn,Greenpoint,40.72287,-73.94135,Entire home/apt,135,5,13,2019-01-02,0.48,1,159 +16280020,East Harlem hideaway,14683530,Ivy,Manhattan,East Harlem,40.79507,-73.94248,Entire home/apt,200,5,8,2018-12-31,0.26,1,19 +16281547,Extremely Rare Townhouse in East Village,13715851,Marissa,Manhattan,East Village,40.7284,-73.98673,Entire home/apt,850,3,0,,,1,180 +16282085,Beautiful townhouse in Brooklyn NY,54342301,Katka,Brooklyn,Crown Heights,40.67748,-73.95101,Entire home/apt,300,2,11,2019-01-02,0.38,1,9 +16282091,"Sunny, cozy room in newly renovated apartment!",105606522,Leah,Brooklyn,Bushwick,40.68987,-73.91858,Private room,70,3,1,2016-12-16,0.03,1,0 +16283830,1BR Lower East Side GEM In New Elevator Building!,49883421,Scott,Manhattan,Lower East Side,40.71973,-73.99022,Entire home/apt,225,4,8,2017-04-25,0.26,1,0 +16284453,Cozy Oceanhill Room,43797176,Malcolm,Brooklyn,Cypress Hills,40.67816,-73.90583,Private room,80,2,17,2019-05-27,0.70,1,353 +16284730,Comfy Room in Williamsburg Duplex *big backyard*,13490820,Douglas,Brooklyn,Williamsburg,40.70719,-73.94749,Private room,50,3,3,2018-11-23,0.35,1,0 +16285996,Designers Dream Bed Stuy Studio,26765580,Brittney,Brooklyn,Bedford-Stuyvesant,40.68393,-73.94967,Entire home/apt,110,2,91,2019-06-24,3.02,1,48 +16287282,"Cozy, chic: Plants, good vibes and LOTS OF LIGHT!",34549333,Jordan,Manhattan,Washington Heights,40.83321,-73.93838,Private room,54,3,1,2017-01-04,0.03,1,0 +16287863,Bright one bedroom blocks from Barclays Center,28695751,Ian & Wendy,Brooklyn,Park Slope,40.68164,-73.9779,Entire home/apt,125,3,22,2019-03-11,0.72,2,0 +16287895,Cozy apartment in the Norwood section of the bronx,106544984,Maritza,Bronx,Norwood,40.87583,-73.87737,Private room,125,1,0,,,1,0 +16288234,Spacious room in Historical District Brownstone,106546614,Raymond,Brooklyn,Bedford-Stuyvesant,40.68369,-73.94193,Private room,40,7,0,,,1,0 +16288338,"CLEAN, SAFE, PLACE; Bed-Stuy Brooklyn.",99494083,Eunice,Brooklyn,Bedford-Stuyvesant,40.68322,-73.93073,Entire home/apt,115,5,47,2019-06-01,1.53,2,91 +16288598,Cozy Bohemian Home!,7965887,Stephanie,Queens,Ridgewood,40.70292,-73.91119,Private room,60,3,5,2018-11-25,0.16,1,0 +16288650,Bushwick Cozy Stay-- One Block From the Train!,11768876,Laura,Brooklyn,Bushwick,40.6995,-73.93334,Private room,30,2,61,2019-06-23,1.95,1,26 +16289001,Fort Greene Room,106555930,Emi,Brooklyn,Fort Greene,40.69612,-73.97361,Private room,150,2,0,,,1,0 +16289102,"Comfy private room, great location to Manhattan",92493393,Eddie & Lois,Staten Island,West Brighton,40.63209,-74.11494,Private room,55,2,30,2019-06-30,0.96,5,61 +16289203,Huge Bedroom - East Village - NYC,42422050,Paula,Manhattan,East Village,40.72709,-73.97459,Private room,79,2,19,2019-03-16,0.67,2,244 +16289292,Beautiful one-bedroom triplex with garden,3018866,Tony,Manhattan,East Village,40.73067,-73.98853,Entire home/apt,425,30,0,,,1,179 +16289476,Cozy Brooklyn Home in Crown Heights!,16214285,Melinda,Brooklyn,Crown Heights,40.66837,-73.95836,Entire home/apt,85,3,7,2019-06-18,0.38,1,20 +16289576,Best Location on the Upper West Side! - Part II,10795846,Sasha,Manhattan,Upper West Side,40.7892,-73.9734,Private room,80,1,47,2019-06-23,1.50,2,0 +16289973,Economy private room great location to Manhattan,92493393,Eddie & Lois,Staten Island,West Brighton,40.63302,-74.11396,Private room,55,2,64,2019-06-07,2.04,5,348 +16290974,Private Room in Uptown Manhattan,67469354,Britt,Manhattan,Harlem,40.82814,-73.9378,Private room,66,3,78,2019-07-04,2.49,1,55 +16296071,"Charming, Sunny Studio in Williamsburg",1470458,Ariella,Brooklyn,Greenpoint,40.71973,-73.95407,Entire home/apt,135,3,14,2019-06-15,0.46,1,0 +16296678,Bergen street in Crown Heights - French speaking,75918061,Pascale,Brooklyn,Crown Heights,40.6749,-73.95233,Entire home/apt,140,4,47,2019-06-24,1.66,1,5 +16296973,Big Sunny Room in Manhattan (M6),5164854,Lilia,Manhattan,Harlem,40.82104,-73.93915,Private room,52,7,3,2017-11-13,0.13,8,326 +16297226,"Sunny, spacious Brooklyn getaway, with skylights!",4661503,Whitney,Brooklyn,Greenpoint,40.72686,-73.94926,Entire home/apt,130,3,0,,,1,0 +16297227,True 1 BR Midtown West / Hell's Kitchen gem,82646321,Shady,Manhattan,Hell's Kitchen,40.76428,-73.99381,Entire home/apt,130,2,77,2019-06-17,3.63,1,9 +16297779,Dream home: Beautiful 2B2B Condo in Chelsea,106627653,Jacob,Manhattan,Chelsea,40.74735,-73.99974,Entire home/apt,585,3,7,2018-08-04,0.23,1,0 +16298489,Sunny Room,47675184,Antonio,Brooklyn,Bedford-Stuyvesant,40.69201,-73.9475,Private room,35,1,7,2017-01-12,0.22,1,0 +16298719,"Huge Sunny Room in New Apartment by G, J, M trains",106634224,Andrei,Brooklyn,Bedford-Stuyvesant,40.69554,-73.94246,Private room,55,14,4,2017-02-28,0.13,2,0 +16298763,"Spacious, Clean, Can be used as 2BR-Ridgewood,NY",106634512,Katarina,Queens,Ridgewood,40.69821,-73.89812,Entire home/apt,60,3,101,2019-06-24,3.65,2,47 +16299269,Single Minimal Bedroom in Hip area of Brooklyn NYC,4453703,Kraig,Brooklyn,Bushwick,40.69731,-73.93272,Private room,43,1,1,2016-12-08,0.03,1,0 +16300101,Warm design for a classic Brooklyn townhouse,27977412,Daria,Brooklyn,East Flatbush,40.64538,-73.94863,Shared room,36,30,2,2017-12-18,0.07,4,365 +16300514,Cozy 1 Bedroom Escape,68714722,Jessica,Manhattan,Upper East Side,40.77704,-73.94442,Entire home/apt,166,2,4,2018-12-28,0.49,1,0 +16300644,Sunny Private Bedroom in Prime Williamsburg,22919533,Kristina,Brooklyn,Williamsburg,40.71258,-73.95976,Private room,150,3,43,2019-06-24,1.41,2,67 +16300888,Cozy and spacious apartment in heart of Bushwick,10330612,Aicha,Brooklyn,Bushwick,40.70145,-73.92708,Entire home/apt,97,12,0,,,1,120 +16300982,Luxurious LES/Nolita Loft,56089590,Nise,Manhattan,Lower East Side,40.72018,-73.98521,Entire home/apt,250,3,53,2019-06-06,1.98,1,220 +16301173,LADIES ONLY!! Privacy in a shared space :),27260699,J,Brooklyn,Bushwick,40.69533,-73.90889,Shared room,28,1,103,2019-05-01,4.02,4,133 +16301294,2 Beds Brooklyn Tree Lined Blk 15 min to Manhattan,106654118,Gerard,Brooklyn,Bedford-Stuyvesant,40.68493,-73.94403,Entire home/apt,179,31,59,2018-04-17,1.92,1,198 +16301464,"Studio apt in Midtown Manhattan, great value",66271966,Don,Manhattan,Hell's Kitchen,40.76926,-73.98796,Entire home/apt,97,1,4,2017-03-16,0.14,1,0 +16301899,Private room in well furnished quintessential 2BR!,5865860,Jeremy,Manhattan,Midtown,40.75524,-73.96755,Private room,120,2,2,2017-06-30,0.08,1,0 +16302595,Luxury 2BD in heart of Williamsburg,76212913,Brian,Brooklyn,Williamsburg,40.71049,-73.9624,Entire home/apt,350,3,17,2019-01-05,0.55,1,129 +16302869,Modern & Cozy Room in Elegant Apt in Astoria,27951037,Kirsten,Queens,Ditmars Steinway,40.77664,-73.90896,Private room,65,30,79,2019-04-07,2.55,2,0 +16308331,Sunny beautiful airy bedroom in Modern Apartment,9367785,Camilo,Brooklyn,Greenpoint,40.725,-73.94633,Private room,63,1,10,2018-04-08,0.32,1,0 +16308886,SUNNY 2BD W. ELEVATOR / PERFECT 4 SMALL FAMILY,106714852,Ben,Manhattan,Chinatown,40.71401,-73.99187,Entire home/apt,151,7,2,2019-01-06,0.14,1,0 +16309329,"Cozy, private room in a 3 br in Gramercy",934811,Monica,Manhattan,Kips Bay,40.74047,-73.98381,Private room,70,2,8,2019-06-30,0.26,1,0 +16309452,Beautiful Hell's Kitchen room - near Times Square,106720090,Sarah,Manhattan,Hell's Kitchen,40.76202,-73.99201,Private room,95,4,0,,,1,0 +16309538,"Sunny, Quiet 1 Bedroom in Union Sq/East Village",101113812,Michael,Manhattan,East Village,40.73256,-73.98622,Entire home/apt,198,5,10,2017-05-29,0.32,1,0 +16309579,Private room in prime Cobble Hill neighborhood,9018292,Rémi,Brooklyn,Boerum Hill,40.68894,-73.99037,Private room,60,7,0,,,1,0 +16309856,Duplex bottom floor / All you need UES,106723044,Armando,Manhattan,Upper East Side,40.77484,-73.95103,Private room,100,1,1,2017-01-01,0.03,1,0 +16310046,Unique Bushwick one bedroom with private garden,1451269,Angelo,Brooklyn,Bushwick,40.70234,-73.92439,Entire home/apt,140,5,3,2018-11-24,0.10,1,7 +16310570,CRAZY SPACE & CRAZY SUN IN BUSHWICK,105828057,Kim,Brooklyn,Bushwick,40.6957,-73.91875,Private room,49,25,61,2018-03-06,1.96,1,0 +16310798,Hotel Room King/Queen at Wyndham Midtown 45 Resort,69545883,Chayla,Manhattan,Midtown,40.75198,-73.97266,Private room,799,3,3,2017-09-30,0.10,12,365 +16310817,Bedroom on Quiet Block on the Lower East Side,29111684,Samuel,Manhattan,Lower East Side,40.72167,-73.99075,Private room,85,30,2,2017-03-20,0.06,1,0 +16311386,Cozy True 1BR Apartment in Noho/East Village,8567200,Steven,Manhattan,East Village,40.72733,-73.99037,Entire home/apt,250,3,36,2019-06-18,1.18,1,36 +16311513,sunshine bedroom in old school artist loft,53394322,Azumi,Brooklyn,Williamsburg,40.71445,-73.93416,Private room,58,7,0,,,1,0 +16311527,Small furnished room in shared West Village apt,13846249,Sarah,Manhattan,West Village,40.73368,-74.00049,Private room,100,2,2,2017-01-03,0.06,1,0 +16311579,1 Bedroom Apartment with Balcony in Williamsburg,106732476,David,Brooklyn,Williamsburg,40.71179,-73.95565,Entire home/apt,110,2,0,,,1,0 +16312490,Spacious room steps from Central Park and Subway,3240340,Yulia,Manhattan,Harlem,40.80392,-73.95642,Private room,55,2,7,2018-03-20,0.23,1,0 +16312536,Large 1BR Apt In Upper Manhattan w/AC in Bedroom,106742582,Daniel,Manhattan,Washington Heights,40.84517,-73.93748,Entire home/apt,65,4,2,2017-07-25,0.08,1,0 +16312966,PRIVATE STUDIO WITH LOTS OF LIGHT,44102978,Tania & Juan,Manhattan,Washington Heights,40.8471,-73.93501,Entire home/apt,75,1,17,2019-05-26,0.55,1,253 +16312970,1 Bedroom for Rent in the heart of Williamsburg,106746084,Peter,Brooklyn,Williamsburg,40.714,-73.95665,Private room,55,3,0,,,1,0 +16313098,"2 bedroom apartment in Two Bridges(Chinatown, LES)",8381084,Pierre,Manhattan,Two Bridges,40.7115,-73.99903,Entire home/apt,190,2,45,2019-06-09,1.47,2,112 +16313932,Micro Room A,59529529,Han,Manhattan,Hell's Kitchen,40.76275,-73.99525,Private room,70,1,178,2019-07-03,5.75,6,146 +16314114,Comfortable Space + Great Block + Perfect Location,29533851,Ben,Manhattan,East Village,40.72954,-73.98303,Private room,85,2,57,2019-06-19,2.36,1,56 +16314267,Luxury Apt - Private room & entry!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68194,-73.90956,Private room,57,2,151,2019-05-28,4.93,3,0 +16314419,"Shared Living Space in Bushwick, Brooklyn",106756395,Monica,Brooklyn,Bedford-Stuyvesant,40.68937,-73.9226,Shared room,25,1,3,2016-12-31,0.10,2,0 +16314763,CHARMING ROOM W/ ROOF DECK ACCESS 3 :),4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69461,-73.96186,Private room,97,30,9,2019-03-07,0.29,11,263 +16314871,CHARMING COZY ROOM FOR 1 :),4291007,Graham And Ben,Brooklyn,Bedford-Stuyvesant,40.6945,-73.96005,Private room,80,30,15,2019-02-28,0.48,11,342 +16314979,Spacious Luxury 2bd-2ba apartment near DUMBO,304148,Dmitry,Brooklyn,Downtown Brooklyn,40.69899,-73.98653,Entire home/apt,180,5,0,,,1,0 +16315292,Spacious 1 bedroom in the heart of downtown NYC,8368667,Maura,Manhattan,East Village,40.72543,-73.99129,Entire home/apt,215,2,18,2019-06-03,0.70,1,68 +16315325,"Sunny Basement Studio Apartment, 1 block to Park",13741210,Deborah,Brooklyn,Flatbush,40.64849,-73.96585,Entire home/apt,89,2,9,2018-10-01,0.29,1,0 +16315491,AWESOME CHARMING ROOM C WITH ROOF DECK ACCESS :),29650513,Katie Graham,Brooklyn,Clinton Hill,40.69307,-73.96183,Private room,97,30,13,2019-05-20,0.41,6,332 +16315496,AWESOME CHARMING ROOM B WITH ROOF DECK ACCESS :),29650513,Katie Graham,Brooklyn,Bedford-Stuyvesant,40.69459,-73.96103,Private room,97,30,7,2018-05-16,0.24,6,97 +16318720,"Beautiful, Spacious Harlem Home",2245740,Perry,Manhattan,Harlem,40.81153,-73.94528,Private room,120,7,0,,,1,0 +16319001,Stanhope,106798652,Timbrooke,Brooklyn,Bushwick,40.69477,-73.92489,Private room,50,7,0,,,2,362 +16320520,Penthouse,102913031,David,Manhattan,East Harlem,40.79142,-73.9398,Entire home/apt,350,4,33,2019-06-26,1.20,1,346 +16320612,Modern Apt in Harlem steps from Central Park!,88152200,Sade,Manhattan,Harlem,40.79942,-73.95128,Entire home/apt,159,3,11,2017-10-25,0.36,1,0 +16321223,Beautiful spacious Greenpoint Apartment,106816918,Zdzislawa,Brooklyn,Greenpoint,40.72623,-73.94972,Private room,150,2,37,2017-11-02,1.23,1,0 +16321376,Sunny 1 Bedroom Apt. in Brooklyn,43610994,Christopher,Brooklyn,Bedford-Stuyvesant,40.67902,-73.95085,Entire home/apt,70,2,5,2018-12-29,0.19,1,0 +16321573,Fabulous Chelsea Triplex (2 bdrm/1.5 bath),106819890,Sara,Manhattan,Chelsea,40.74289,-73.9953,Entire home/apt,300,6,0,,,1,0 +16321597,Great room in charming Fort Greene Brooklyn,26004891,Ariane,Brooklyn,Fort Greene,40.69357,-73.97235,Private room,44,6,0,,,1,0 +16321789,Sunny Room in East Williamsburg close to L Train,4992081,Sascha,Brooklyn,Williamsburg,40.70669,-73.94334,Private room,84,3,10,2019-07-01,0.38,1,4 +16322134,Wonderful room located in charming East Village,8030654,Calvin,Manhattan,East Village,40.72087,-73.98079,Private room,300,1,2,2018-06-07,0.15,1,0 +16322481,1 (twin) private room in bushwick +roof +living rm,106827427,Zarrin,Brooklyn,Bushwick,40.6984,-73.92273,Private room,30,3,2,2017-01-11,0.07,1,0 +16322824,Spacious and bright 1 bedroom apartment,50690723,Shara,Manhattan,Harlem,40.8087,-73.95142,Entire home/apt,245,7,0,,,1,0 +16323227,Lovely Spacious Bedroom in Brooklyn,23700673,Yoni,Brooklyn,Clinton Hill,40.69546,-73.96188,Private room,76,3,163,2019-06-12,5.22,2,53 +16323239,Spacious 2 BDR - Hell's Kitchen/Times Square,2559886,Sy,Manhattan,Hell's Kitchen,40.76284,-73.98849,Entire home/apt,130,4,2,2017-11-30,0.07,1,0 +16323461,"Williamsburg Experience, Quick Manhattan Access",20532489,Inese & Michæl,Brooklyn,Williamsburg,40.71002,-73.96237,Private room,124,2,71,2019-06-07,2.32,1,70 +16323724,"UWS Landmarked Townhouse 1BR, APT 3B",106837455,Lisa,Manhattan,Upper West Side,40.78297,-73.98141,Entire home/apt,160,90,2,2017-11-15,0.07,8,125 +16323731,RG - Budget Friendly room in the Greenpoint area!,83717038,Max,Brooklyn,Greenpoint,40.73731,-73.95493,Private room,45,2,85,2019-06-16,2.73,3,171 +16324410,Private cozy room near LGA airport,58391491,Juel,Queens,East Elmhurst,40.76432,-73.87227,Private room,33,1,333,2019-06-24,10.64,5,139 +16324411,Private large room near LGA airport with queen bed,58391491,Juel,Queens,East Elmhurst,40.76509,-73.8717,Private room,45,1,255,2019-06-23,8.17,5,175 +16325276,The Fenihouse Brooklyn,106445501,Renee,Brooklyn,Prospect-Lefferts Gardens,40.65868,-73.94992,Entire home/apt,200,2,46,2019-06-16,1.50,1,234 +16325588,Chic & Cosy Lower East Side Apartment,27809907,Sophie,Manhattan,Chinatown,40.71704,-73.99081,Private room,130,2,2,2017-07-02,0.06,1,0 +16325781,Room at Home in Lower East Side,3173147,Andrea,Manhattan,Lower East Side,40.71833,-73.98556,Private room,95,4,15,2019-06-25,0.63,2,244 +16325899,Private room near LGA Airport with queen bed,58391491,Juel,Queens,East Elmhurst,40.76582,-73.87153,Private room,45,1,306,2019-06-20,9.82,5,155 +16328372,Room In Bed-Stuy Apartment,68547639,Darren,Brooklyn,Bedford-Stuyvesant,40.68901,-73.95371,Private room,100,1,0,,,1,0 +16330110,Stylish & Spacious Apartment,105075484,Bertus,Brooklyn,Canarsie,40.6315,-73.90761,Entire home/apt,117,2,88,2019-06-21,2.85,1,349 +16330737,Ft Greene: 2-3 Bedroom Duplex w/Garden,106899231,Heather,Brooklyn,Fort Greene,40.69601,-73.97114,Entire home/apt,220,6,7,2018-08-29,0.23,2,5 +16331234,Bright & cozy 1BR/Balcony next to 3 subways!,3952200,Gala,Brooklyn,Williamsburg,40.70581,-73.95004,Entire home/apt,100,3,72,2019-06-22,2.31,2,302 +16331645,big room in Hell's Kitchen close to Times Square,9236677,Jose Diego,Manhattan,Hell's Kitchen,40.75997,-73.98781,Private room,155,1,0,,,1,0 +16331969,Cozy in Cobble Hill,15130664,Karen,Brooklyn,Carroll Gardens,40.68577,-73.9928,Entire home/apt,450,2,0,,,1,0 +16332208,Cute Bedroom in Hip Bushwick,32923003,Vanessa,Brooklyn,Bushwick,40.70279,-73.9289,Private room,31,7,2,2017-01-15,0.06,1,89 +16332242,"Spacious, cozy, quiet 1.5 bedroom",85692123,Audrey,Queens,Ridgewood,40.70501,-73.91065,Entire home/apt,99,4,1,2017-01-02,0.03,1,0 +16333020,Amazing 3BR Triplex Family Apartment w/ Garden,106837455,Lisa,Manhattan,Upper West Side,40.78467,-73.98192,Entire home/apt,900,30,0,,,8,362 +16333075,Light filled private room in Red Hook!,1228668,Mattia,Brooklyn,Red Hook,40.67414,-74.00707,Private room,38,4,4,2019-06-20,0.13,1,0 +16333147,Charming Bedroom on the Lower East Side,33127406,Emily,Manhattan,Lower East Side,40.72007,-73.98559,Private room,90,5,0,,,1,0 +16333353,Clean Comfortable Room in Amazing NYC Neighborhood,106921180,Jake,Queens,Ridgewood,40.70412,-73.90171,Private room,33,3,2,2016-12-31,0.06,1,0 +16333541,Luxury Apartment Located in Riverdale.,66375835,Don,Bronx,North Riverdale,40.90154,-73.89791,Entire home/apt,125,7,0,,,1,89 +16333607,--Into The Heart Of Greenpoint--,32946808,Chris,Brooklyn,Greenpoint,40.72879,-73.95689,Entire home/apt,170,3,37,2019-05-27,1.18,1,258 +16333699,"Very spacious and sunny room in Harlem, Manhattan!",81109720,Tatiana,Manhattan,Harlem,40.83036,-73.94346,Private room,35,15,0,,,1,0 +16333776,Sun-drenched room in quiet Ridgewood neighborhood,23848987,Norberto,Queens,Ridgewood,40.70723,-73.91107,Private room,40,5,0,,,1,0 +16334327,"Bright, airy, calm Brooklyn space",1636770,Clare,Brooklyn,Bedford-Stuyvesant,40.68314,-73.9566,Private room,68,2,4,2017-01-24,0.13,1,0 +16334336,Modern Ridgewood Apartment!,105079063,Manuel,Queens,Ridgewood,40.69857,-73.90618,Private room,65,4,20,2017-12-27,0.64,1,0 +16334686,Cozy with Great location !!!!,43719073,Nora,Brooklyn,Sheepshead Bay,40.59813,-73.95432,Shared room,37,1,47,2019-06-23,1.58,5,354 +16335101,Brooklyn Style Apartment!,8904815,Sandra&Orlando,Brooklyn,Flatbush,40.64438,-73.95484,Entire home/apt,92,7,15,2019-01-02,0.49,2,281 +16335390,A dose of Williamsburg cool,3914854,Matt,Brooklyn,Williamsburg,40.70885,-73.94586,Private room,125,2,3,2017-04-08,0.10,1,0 +16335618,Large room with private bath & kitchen near train,106940881,Adil,Brooklyn,Flatbush,40.639,-73.96662,Entire home/apt,71,1,124,2019-06-24,3.97,1,64 +16336428,Cozy room in Brooklyn,13933851,Yagil,Brooklyn,Bedford-Stuyvesant,40.68997,-73.92742,Private room,40,8,11,2018-02-28,0.35,2,0 +16336497,Charming Chelsea Studio,106948369,Charles,Manhattan,Chelsea,40.74753,-74.00396,Entire home/apt,110,3,7,2019-02-13,0.31,1,9 +16336636,River View Apartment in the Bronx,91320722,Germaine,Bronx,Kingsbridge,40.86605,-73.90694,Entire home/apt,47,26,3,2018-08-23,0.16,1,37 +16336686,Comfortable room in quite home with queen size bed,42561290,Carla,Brooklyn,East New York,40.66192,-73.86764,Private room,45,2,37,2019-01-29,1.21,4,158 +16336709,Private Room on Roosevelt Island,106948134,Erik,Manhattan,Roosevelt Island,40.76182,-73.94879,Private room,50,1,8,2019-04-28,0.32,2,0 +16336860,Cozy room in 3 BR Williamsburg apartment,60736303,Charlotte,Brooklyn,Williamsburg,40.71457,-73.96332,Private room,60,2,1,2017-01-01,0.03,1,0 +16336867,Super Great Williamsburg Apartment- Private Room,36828710,Bridgid,Brooklyn,Williamsburg,40.7133,-73.95037,Private room,60,1,1,2017-03-27,0.04,1,0 +16337047,Comfy Bedroom in Spacious Manhattan apartment,35215309,Victor,Manhattan,East Harlem,40.79639,-73.93319,Private room,55,3,24,2019-06-29,0.86,2,81 +16337106,Charming attic Room in Home + Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.87093,-73.8934,Private room,58,3,84,2019-06-23,2.74,4,75 +16337271,"Charming Central 1- Bedroom Apartment, Gramercy",28450419,Jenna,Manhattan,Gramercy,40.73794,-73.98423,Entire home/apt,200,10,4,2019-01-02,0.15,1,48 +16337590,Artsy Apt in Bushwick!,9210000,Tracy,Brooklyn,Bushwick,40.68376,-73.91121,Private room,50,2,5,2017-05-16,0.16,1,206 +16337890,"Cozy Sunny Room in New Apartment by G, J, M trains",106634224,Andrei,Brooklyn,Bedford-Stuyvesant,40.69442,-73.94362,Private room,55,7,0,,,2,0 +16338086,Great Duplex in Crown Heights,106401814,Tania,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.94549,Entire home/apt,180,3,0,,,1,0 +16338143,Cozy place in a diverse city,106963874,Mabel,Queens,Elmhurst,40.74572,-73.87556,Private room,50,1,2,2017-01-20,0.07,1,0 +16338348,Entire 1 Bedroom Apt with Great Light & Vibes :),106951556,Meli And Daniel,Manhattan,Chinatown,40.71489,-73.99438,Entire home/apt,129,7,11,2018-10-30,0.35,1,188 +16338454,Cozy & Sunlit Three Bedroom Apartment,5828836,Dana,Manhattan,Harlem,40.82548,-73.94983,Entire home/apt,255,2,1,2017-01-01,0.03,1,0 +16339175,"Cozy, Quiet, 1 bedroom apartment - Lower East Side",93393807,Al,Manhattan,Lower East Side,40.7178,-73.98448,Entire home/apt,177,1,46,2019-06-23,1.50,1,31 +16339429,Quiet Room in Unique Carroll Gardens,106977720,Kristan,Brooklyn,Carroll Gardens,40.67711,-73.99692,Private room,50,2,2,2017-03-02,0.07,1,0 +16341416,Sunny room in BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67306,-73.92334,Private room,49,2,34,2019-06-04,1.11,5,29 +16345072,Elegant 3BR with Backyard (15 Mins to Manhattan!),107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68314,-73.93124,Entire home/apt,325,2,67,2019-06-21,2.27,3,250 +16346527,a budget comfy room,4013000,Mei,Queens,Bayside,40.75377,-73.7726,Private room,30,15,22,2019-06-02,0.70,2,145 +16346945,Full Apartment in Upper West Side.,15702477,Per Byholt Leibøl,Manhattan,Upper West Side,40.79519,-73.96945,Entire home/apt,109,2,2,2017-01-14,0.07,1,0 +16347171,Brooklyn Brownstone Serenity,19655631,Tali,Brooklyn,Bedford-Stuyvesant,40.68588,-73.92784,Entire home/apt,100,6,55,2019-06-30,1.81,1,59 +16347965,UES Beautiful Apartment off Park Av,33229585,Natalia,Manhattan,Upper East Side,40.76786,-73.96973,Entire home/apt,280,4,23,2019-07-07,0.76,1,17 +16348240,Wyndham 2 doubles hotel room,60617669,Rich,Manhattan,Midtown,40.75169,-73.97174,Entire home/apt,149,2,2,2017-01-01,0.06,4,0 +16348791,Spectacular Townhouse 4Floor 5BD West Village NYC,101132948,Maud,Manhattan,West Village,40.73726,-74.00085,Entire home/apt,2590,1,8,2018-12-27,0.41,1,361 +16349311,"Amazing location, East Village full 3BR apartment",32707981,Ben,Manhattan,East Village,40.72357,-73.98797,Entire home/apt,400,2,0,,,4,0 +16349645,Studio in West Village,6335037,Eric,Manhattan,West Village,40.73243,-74.00932,Entire home/apt,220,4,1,2017-01-02,0.03,1,0 +16349888,Hamilton Heights Townhouse Apartment,107055014,Michael,Manhattan,Harlem,40.82255,-73.94807,Private room,147,4,30,2019-06-17,1.18,1,28 +16350271,Cozy Bedroom in the heart of Williamsburg,107058927,Laura,Brooklyn,Williamsburg,40.71957,-73.95828,Private room,50,4,0,,,1,0 +16350431,Cozy room Williamsburg,1260413,Helena,Brooklyn,Williamsburg,40.71292,-73.94137,Private room,105,3,4,2018-05-28,0.13,3,0 +16350500,Charming Modern 1 Bedroom in Bedstuy.,35331192,Shaun-Curtis,Brooklyn,Bedford-Stuyvesant,40.68369,-73.94897,Entire home/apt,175,4,2,2018-01-02,0.07,1,0 +16350688,"Private Studio along the park in Greenpoint, BK",69280122,Colin,Brooklyn,Greenpoint,40.7234,-73.94136,Entire home/apt,60,3,5,2019-07-07,0.17,1,0 +16351193,Cozy Attic RM in Private Home Backyard/Near Metro,105394139,Ciprian,Bronx,Fordham,40.86909,-73.89396,Private room,55,3,74,2019-06-19,2.42,4,84 +16352250,Lavish Upscale Room. Unforgettable.,31736547,Iza,Manhattan,East Harlem,40.78983,-73.94419,Private room,65,1,73,2019-07-01,3.32,2,34 +16352484,Serene atmosphere in Manhattan,78466689,Natalia,Manhattan,Inwood,40.87247,-73.91927,Private room,59,2,11,2019-06-28,0.36,1,29 +16352708,Charming East Village Apartment with Patio,25438770,Mary Grace,Manhattan,East Village,40.72528,-73.98854,Private room,165,3,0,,,1,0 +16352907,New Years Eve in a bright and airy UWS one bedroom,71698853,Sarah,Manhattan,Upper West Side,40.78592,-73.97331,Entire home/apt,100,2,1,2017-01-02,0.03,1,0 +16352982,"Great Room &Host, steps from #1 train",60163700,Dee,Manhattan,Harlem,40.82378,-73.95354,Private room,50,60,13,2018-08-15,0.67,4,0 +16353229,Luxurious Studio In heart of NYC!,106949780,Amit,Manhattan,Theater District,40.75527,-73.98507,Entire home/apt,145,2,5,2017-11-08,0.16,1,0 +16353257,Quiet and cozy apartment in Greenwich Village,27932675,Sandra,Manhattan,NoHo,40.72571,-73.99506,Entire home/apt,100,3,3,2017-03-17,0.10,1,0 +16353458,Cozy and sunny 2 BR apartment in trendy Greenpoint,4229387,Suzanne,Brooklyn,Greenpoint,40.73475,-73.95543,Entire home/apt,150,4,4,2019-01-01,0.13,1,0 +16353473,Great Bedroom in East Williamsburg (+ ROOFTOP!!),107082851,Brian,Brooklyn,Williamsburg,40.70806,-73.9427,Private room,59,5,1,2017-01-01,0.03,2,0 +16353485,"Private 1 BR in 4 BR apartment, by L Train",32545798,Sasha,Brooklyn,Williamsburg,40.71443,-73.96154,Private room,45,1,4,2017-06-24,0.13,5,0 +16353851,Luxury apartment in the heart of Williamsburg,14808512,Florian,Brooklyn,Williamsburg,40.71809,-73.95383,Entire home/apt,170,3,2,2018-01-01,0.07,1,0 +16354659,East Village Studio Apt w/private Courtyard Oasis,93211521,Steven,Manhattan,East Village,40.7292,-73.98156,Entire home/apt,120,6,1,2017-01-05,0.03,1,0 +16356884,Cozy shared male room at center of Manhattan III\),39528519,Max,Manhattan,Lower East Side,40.71239,-73.98626,Shared room,32,14,0,,,28,342 +16357148,Private Room in Sun-drenched Apartment,46416490,Anne,Manhattan,Harlem,40.80883,-73.94577,Private room,68,30,20,2018-09-14,0.65,1,15 +16360002,Cozy Stylish Central Park Private Suite,4487093,Jack - Philippe,Manhattan,East Harlem,40.79677,-73.94823,Private room,105,2,85,2019-07-01,2.79,1,117 +16360010,"Charming bedroom, great location !",26574838,Maude,Brooklyn,Williamsburg,40.70769,-73.94548,Private room,65,2,2,2017-01-08,0.07,1,0 +16360727,"Cozy Apartment in Brooklyn, NY",106193743,Clifton,Brooklyn,Crown Heights,40.67816,-73.95112,Entire home/apt,100,7,0,,,1,0 +16360894,Sunny Studio Apartment,7359870,Felix,Manhattan,Harlem,40.82179,-73.94777,Entire home/apt,95,4,0,,,1,0 +16361014,Room in The Heights!,17171419,Mordechai,Manhattan,Washington Heights,40.85204,-73.92886,Private room,39,4,0,,,2,0 +16361439,Private Studio & Kitchen in Renovated Brownstone,48952468,Mónica,Brooklyn,Bedford-Stuyvesant,40.68974,-73.94283,Entire home/apt,75,2,68,2019-06-30,2.28,1,232 +16361717,Apartment in the heart of Williamsburg Brooklyn!,90829719,Mat,Brooklyn,Williamsburg,40.71381,-73.95041,Entire home/apt,125,1,112,2019-06-23,3.65,1,221 +16362150,Bright and Cozy 1BR in Crown Heights,5659683,Morgan,Brooklyn,Crown Heights,40.67769,-73.95309,Entire home/apt,100,3,5,2019-06-25,0.17,1,8 +16362226,"浪漫民宿,环境优美,停车方便,独立洗手间和马桶,浴室共用。 (Website hidden by Airbnb)",105074140,Emmy,Queens,Flushing,40.75482,-73.80368,Private room,48,1,52,2019-02-14,2.03,4,0 +16363175,PENTHOUSE OASIS IN THE HEART OF CHELSEA /FLATIRON,4366982,Rami,Manhattan,Gramercy,40.73741,-73.99003,Entire home/apt,149,10,9,2019-02-17,0.29,1,19 +16363328,COZY ROOM,18329648,Genya,Brooklyn,Sheepshead Bay,40.60664,-73.95402,Private room,40,1,0,,,1,0 +16363434,Midtown Loft,40965944,Lou,Manhattan,Midtown,40.75092,-73.98636,Entire home/apt,290,2,5,2017-04-16,0.16,1,0 +16363498,Sunny and large bedroom in Williamsburg Apartment,6842719,Shachi,Brooklyn,Williamsburg,40.71451,-73.93959,Private room,120,1,7,2019-05-22,0.23,2,89 +16363747,Comfy Room in Cobble Hill,107158968,Jessica,Brooklyn,Carroll Gardens,40.68384,-73.99065,Private room,45,1,8,2018-03-16,0.26,1,0 +16363923,Studio in West Village,107162130,Dennis,Manhattan,West Village,40.73021,-74.00663,Entire home/apt,119,2,0,,,1,0 +16364067,Beautiful Newly Renovated BK Apt with W&D in Unit,1528114,K.,Brooklyn,Bedford-Stuyvesant,40.6836,-73.93495,Entire home/apt,95,4,68,2019-05-26,2.30,1,0 +16364666,Brand New &Cozy Room Close to Subway Station,61042,Marlon,Manhattan,Harlem,40.82112,-73.95482,Private room,45,4,22,2018-12-31,0.71,6,0 +16365302,Bond Street 2 bedroom 2 bath great Noho location,24074171,Donna,Manhattan,NoHo,40.72501,-73.99323,Entire home/apt,400,2,26,2019-04-12,0.90,1,10 +16365878,"Near the City, Classic Brooklyn!",107177716,Yuki,Brooklyn,Bedford-Stuyvesant,40.68712,-73.94708,Entire home/apt,130,2,168,2019-06-29,5.45,1,203 +16366744,Large Basement Bedroom With Kitchen,107040079,Jonathon,Brooklyn,Crown Heights,40.66713,-73.9411,Private room,80,4,46,2019-06-30,1.94,2,272 +16366928,Bronx Beauty: Renovated historic rowhouse,97853468,Steven,Bronx,Hunts Point,40.81841,-73.89067,Private room,45,14,18,2019-05-31,0.68,4,332 +16367064,Cute and cozy space in Chinatown,11511386,Erika,Manhattan,Chinatown,40.71513,-73.9981,Private room,100,2,1,2016-12-30,0.03,1,0 +16367184,South Slope Brooklyn Apartment!,7676346,Saquib,Brooklyn,Sunset Park,40.66033,-73.99623,Entire home/apt,80,2,0,,,1,0 +16367772,Cute room near Columbia University,38679669,Mary,Manhattan,Morningside Heights,40.80324,-73.96432,Private room,65,4,0,,,1,0 +16367983,Charming and Convenient East Village Apartment,17098527,Mei Ni,Manhattan,East Village,40.72638,-73.97752,Private room,200,4,2,2018-01-01,0.07,1,39 +16368233,Private room in beautiful apartment,6153409,Isaac,Brooklyn,Bedford-Stuyvesant,40.68635,-73.95535,Private room,45,15,3,2016-12-26,0.10,1,0 +16368328,Cozy Harlem Jewel,107158006,Liliana,Manhattan,Harlem,40.8228,-73.93956,Private room,60,2,119,2019-06-24,3.82,1,198 +16368376,"Chic, Sunny East Village Entire Apartment",48071153,Caitlin,Manhattan,East Village,40.72477,-73.9859,Entire home/apt,132,4,10,2017-12-22,0.33,1,26 +16368541,1st Floor room available in 3 br 2bath Apt,6202020,Nikolas,Queens,Astoria,40.76875,-73.92769,Private room,119,1,0,,,1,0 +16368793,"Super Cute, Cozy, Sun-filled And Private",106634512,Katarina,Queens,Ridgewood,40.69821,-73.8974,Entire home/apt,60,3,63,2019-06-28,4.42,2,50 +16370096,Beautiful room in Brooklyn,16627758,Thai,Brooklyn,Bedford-Stuyvesant,40.68643,-73.95548,Private room,38,1,3,2017-01-14,0.10,1,0 +16373331,Holidays in NYC,107240480,Julia,Brooklyn,South Slope,40.66383,-73.983,Entire home/apt,50,4,0,,,1,0 +16373546,Huge full floor loft on Broadway and Bleecker,10683360,David,Manhattan,Greenwich Village,40.72747,-73.9969,Entire home/apt,240,3,15,2019-07-02,0.56,1,45 +16374376,Large 2 bed 2 bath modern apt. - Brooklyn Bridge,27275952,Andrew,Brooklyn,Downtown Brooklyn,40.69584,-73.98466,Entire home/apt,285,4,0,,,2,102 +16374392,2 Bedrooms Entire Beautiful Apt in Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.71372,-73.96232,Entire home/apt,120,4,9,2019-01-06,0.42,2,291 +16374702,Entire Duplex In The East Village,16068447,Douglas,Manhattan,East Village,40.72363,-73.97972,Entire home/apt,499,1,0,,,1,0 +16374783,Loft in Brooklyn,697678,Shauna,Brooklyn,Bedford-Stuyvesant,40.68009,-73.94676,Entire home/apt,119,3,6,2017-11-25,0.20,1,0 +16374819,Cozy and Modern apartment in Astoria,106436231,Liliana,Queens,Astoria,40.77121,-73.92847,Entire home/apt,225,7,1,2016-12-30,0.03,1,0 +16376497,Private Room blocks from Union Square,81190209,Claudio,Manhattan,Stuyvesant Town,40.73125,-73.97891,Private room,110,1,0,,,1,0 +16377144,Cozy 2Bedroom Apt. in Astoria,7310057,Carl,Queens,Astoria,40.76793,-73.91918,Entire home/apt,79,3,2,2019-01-01,0.11,1,0 +16377436,"Big, sunny bedroom in apartment with modern decor",100595030,Michael,Brooklyn,Williamsburg,40.7131,-73.94981,Private room,85,28,14,2018-09-29,0.50,2,0 +16377899,90 Washington St Luxury apartment,53179388,Raymond,Manhattan,Financial District,40.70742,-74.01544,Entire home/apt,200,30,1,2017-02-04,0.03,10,342 +16378007,307 E 44th st 1BR great loc,53179388,Raymond,Manhattan,Midtown,40.75006,-73.97007,Entire home/apt,150,30,3,2018-05-10,0.12,10,350 +16378313,7 mins from Times Sq! Modern elevator building!,58877492,Eki,Manhattan,Hell's Kitchen,40.76418,-73.98885,Entire home/apt,190,4,0,,,1,0 +16378562,Charming studio in midtown east,20692024,Ali,Manhattan,Midtown,40.75827,-73.96196,Entire home/apt,215,5,7,2018-05-20,0.38,1,0 +16378706,Master Bedroom in Stylish Apartment,1276297,Amitis,Brooklyn,Greenpoint,40.72838,-73.94739,Private room,67,1,2,2017-02-01,0.07,1,0 +16380258,MANHATTAN MODERN NEAR CENTRAL PARK!,99237414,Peter,Manhattan,East Harlem,40.78676,-73.94376,Private room,79,3,21,2019-06-21,0.69,1,46 +16380794,Brooklyn’s lovely Luxurious Suite sleeps 5,107294313,Sam,Brooklyn,Bay Ridge,40.63835,-74.02614,Entire home/apt,139,2,93,2019-06-30,3.02,1,217 +16381008,Sunny Private Studio-Apartment,107296819,Alexandra,Manhattan,East Harlem,40.79583,-73.93595,Entire home/apt,105,1,142,2019-06-16,4.62,3,11 +16381049,Large 3bd 2 bath duplex in prime Greenpoint!,34471130,LeAndra,Brooklyn,Greenpoint,40.73292,-73.95987,Entire home/apt,250,2,0,,,1,0 +16381226,"Не дорогая комната в Нью-Йорке, в Бруклине",107291364,Ella,Brooklyn,Coney Island,40.57751,-73.98521,Shared room,50,2,1,2016-12-18,0.03,1,0 +16381393,Skyline #2 view ny skyline,93121568,Charles,Bronx,Concourse,40.82388,-73.9279,Private room,60,2,53,2019-07-01,1.80,2,169 +16381746,Budget stay in LUXURIOUS FIDI building,17691352,Emily,Manhattan,Financial District,40.70618,-74.00385,Private room,75,15,3,2017-10-07,0.10,1,0 +16381905,Skyline #1 view ny skyline,93121568,Charles,Bronx,Concourse,40.82415,-73.92778,Private room,50,2,63,2019-07-01,2.06,2,110 +16382035,"✨Bright, spacious apartment in the West Village❤️",1000278,Michael,Manhattan,West Village,40.73415,-74.00721,Entire home/apt,190,1,86,2019-06-22,2.76,1,236 +16382645,Amazing ONE bedroom. Lots of light and style,13043232,Wendy,Manhattan,Greenwich Village,40.72934,-74.00025,Entire home/apt,230,5,14,2019-04-17,0.45,1,9 +16385859,Cozy Junior 1BR in inwood.,8571056,Richard,Manhattan,Inwood,40.86663,-73.92391,Entire home/apt,80,2,4,2018-09-04,0.13,1,0 +16388417,Spacious Midtown Apt with window view & balcony,61187947,Amy,Manhattan,Hell's Kitchen,40.76217,-73.99105,Private room,100,3,0,,,1,0 +16389354,Spectacular 2BR with NYC SKYLINE VIEW + ROOF DECK,107136259,Prithvi,Brooklyn,Williamsburg,40.70614,-73.9487,Entire home/apt,199,2,1,2017-01-02,0.03,1,0 +16389531,Great Movie-like East Village aptmt,9270927,Rafael,Manhattan,East Village,40.72461,-73.9892,Entire home/apt,190,1,0,,,1,0 +16389820,Lovely room in the lovely area of Williamsburg BK,6141851,Freya,Brooklyn,Williamsburg,40.71385,-73.95559,Private room,64,2,3,2017-01-02,0.10,1,0 +16390105,Cozy 1 bedroom in the heart of Fort Greene,2455580,Ithai,Brooklyn,Fort Greene,40.68529,-73.97365,Entire home/apt,225,3,0,,,1,0 +16390662,room with view and bath,106291193,Mathilde,Queens,Flushing,40.7408,-73.82708,Private room,35,1,0,,,1,0 +16391487,Affordable bedroom in the East Village!,16085180,Nicolas,Manhattan,East Village,40.72351,-73.98389,Private room,70,2,9,2017-05-28,0.29,1,0 +16391952,Large Private Room in Quiet BK Heights Apartment,17764574,Paige,Brooklyn,Brooklyn Heights,40.69797,-73.992,Private room,60,3,0,,,1,0 +16392085,Bright Spacious Home in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71385,-73.96046,Entire home/apt,264,2,2,2017-03-27,0.07,3,0 +16392514,"Great deal, full equiped room in Times Square",107382521,Adam,Manhattan,Theater District,40.75725,-73.98796,Private room,100,1,36,2017-11-26,1.18,1,0 +16392756,Cozy studio next to Wash Sq Park,5895282,Scott,Manhattan,Greenwich Village,40.73421,-73.9968,Entire home/apt,135,5,9,2017-06-16,0.29,1,0 +16393191,Interfaith Retreat Guest Rooms (Bhakti),16677326,Alex And Zeena,Manhattan,Chelsea,40.74786,-73.99652,Private room,85,1,84,2019-06-23,2.71,12,359 +16393395,Interfaith Retreats (Devotion),16677326,Alex And Zeena,Manhattan,Chelsea,40.74929,-73.99545,Private room,85,1,113,2019-06-23,3.63,12,360 +16393500,Bedroom in beautiful Brooklyn apartment,23099342,Jon,Brooklyn,Fort Greene,40.68713,-73.97222,Private room,55,7,2,2017-01-02,0.06,1,0 +16393554,Classic Downtown Loft,1482059,Erin,Manhattan,Chinatown,40.71698,-73.99629,Entire home/apt,295,2,43,2019-05-09,1.39,1,66 +16394179,Private Bedroom + Shared House,101809002,Tak,Brooklyn,Brownsville,40.65958,-73.91113,Private room,28,1,7,2017-03-01,0.23,1,0 +16394193,Cozy & Affordable,59338077,Nash,Queens,Ridgewood,40.70443,-73.90656,Private room,45,1,2,2017-01-02,0.07,1,0 +16394440,"Beautiful Double Room - Heart of Clinton Hill, BK",47817193,Loreley,Brooklyn,Clinton Hill,40.68604,-73.9676,Private room,120,1,2,2017-05-16,0.07,1,0 +16394488,Hip Luxury Stay w Private Bath 5 min to Manhattan,94027304,Roberson,Brooklyn,Williamsburg,40.71499,-73.95561,Private room,90,3,5,2017-07-13,0.16,1,0 +16394576,"Master bedroom , your own bathroom in 2bed apart",52176200,Viktoria,Manhattan,East Harlem,40.79227,-73.94536,Private room,89,1,138,2019-06-30,5.31,1,34 +16394608,Cozy room in Beautiful Brooklyn!,37236633,Elís,Brooklyn,Bedford-Stuyvesant,40.68273,-73.93397,Private room,50,30,2,2016-12-31,0.07,1,0 +16394700,"Williamsburg, Private Bedroom, 2 blocks from L",71499658,Omar,Brooklyn,Williamsburg,40.71518,-73.94151,Private room,50,3,0,,,1,0 +16394824,Apartment in Soho on Edge of West Village,107398940,Carl,Manhattan,Greenwich Village,40.72829,-74.00233,Entire home/apt,150,3,2,2017-01-04,0.07,1,0 +16395341,Cozy bedroom near George Washington Bridge,80901099,Yifei,Manhattan,Washington Heights,40.85019,-73.94093,Shared room,40,1,0,,,1,0 +16395800,Small Room,78497102,Ira,Manhattan,Lower East Side,40.71777,-73.98526,Private room,99,1,6,2018-01-01,0.20,1,0 +16395966,Hidden Gem in Crown Heights,52014015,Yobiel,Brooklyn,Crown Heights,40.6754,-73.94977,Entire home/apt,225,1,0,,,1,0 +16396119,Enjoy my apartment for the summer!,52780335,Aaron,Manhattan,Washington Heights,40.83985,-73.93715,Entire home/apt,65,3,14,2019-06-29,0.45,1,0 +16396241,Williamsburg 2BR. Close to L train,107412747,Jazz,Brooklyn,Williamsburg,40.71058,-73.95294,Entire home/apt,280,1,133,2019-06-29,4.34,1,359 +16396301,Columbus Circle Single Bedroom,19855956,Laurie,Manhattan,Hell's Kitchen,40.76514,-73.98551,Private room,100,7,0,,,1,0 +16396507,Full 1 bedroom apt in an awesome area!,1175504,Verun,Manhattan,Kips Bay,40.74301,-73.98037,Entire home/apt,120,4,2,2017-05-27,0.07,1,0 +16396640,Wonderful UES Studio...,107416436,Eddie,Manhattan,Upper East Side,40.77848,-73.9486,Private room,70,7,1,2017-01-02,0.03,1,0 +16396753,Private room in the heart of East village,5212097,Chris,Manhattan,East Village,40.72258,-73.98148,Private room,100,3,5,2019-03-19,0.19,2,0 +16400753,Room in 3 bed apt/w parking- Wburg.,8134440,Austin,Brooklyn,Williamsburg,40.71614,-73.94134,Private room,55,2,0,,,1,0 +16400971,Washington Heights Oasis,5213327,Andrew,Manhattan,Washington Heights,40.84369,-73.93891,Entire home/apt,150,7,0,,,1,0 +16401944,Cheap large room with desk 10 min to JFK+ Mall,107455767,Guelma,Queens,Rosedale,40.65322,-73.73366,Private room,50,15,92,2018-10-21,2.96,5,356 +16402623,"Cozy apartment in the Lower East Side, NYC!",3125516,Eva,Manhattan,Lower East Side,40.718,-73.98497,Entire home/apt,95,8,3,2017-11-30,0.10,1,0 +16403092,Beautiful 1 Bedroom in Bedstuy with Private Yard,98976,Nathan,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95023,Entire home/apt,140,7,4,2017-11-19,0.13,1,0 +16403353,Bright & Sunny Oasis in East Village,3413390,Katia,Manhattan,East Village,40.72249,-73.98145,Entire home/apt,180,2,24,2019-06-21,0.77,1,0 +16404289,Brownstone on a tree-lined street in NYC,102012893,Jeffrey,Manhattan,Harlem,40.80669,-73.9497,Entire home/apt,200,5,2,2017-07-29,0.07,2,0 +16404329,Small Room in Big Williamsburg Apartment,4448551,Marco,Brooklyn,Williamsburg,40.71048,-73.96292,Private room,74,29,17,2018-11-30,0.55,1,0 +16405036,AMAZING LOCATION - Heart of CHELSEA / Manhattan,3894843,Ania,Manhattan,Chelsea,40.74182,-73.99904,Private room,95,1,75,2019-06-23,3.95,1,19 +16405126,Artists Bright Eclectic Home & Studio,50097540,Ana Cristina,Brooklyn,Williamsburg,40.70735,-73.94032,Entire home/apt,114,4,41,2019-02-22,1.44,1,0 +16405632,"Sixth Ave Chelsea, Studio Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74569,-73.9922,Entire home/apt,205,30,0,,,87,357 +16405668,"Sixth Ave Chelsea, 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.74613,-73.99178,Entire home/apt,279,30,1,2019-03-15,0.26,87,358 +16406203,Fort Greene apartment,43272616,Emi,Brooklyn,Fort Greene,40.69613,-73.97364,Private room,80,3,0,,,2,0 +16406403,Bright Brooklyn Room close to Manhattan,28455413,Lia,Brooklyn,Bedford-Stuyvesant,40.67988,-73.93945,Private room,31,21,5,2017-09-18,0.19,2,0 +16406680,Wyndham 2 double beds hotel room,60617669,Rich,Manhattan,Midtown,40.75222,-73.97276,Entire home/apt,299,2,0,,,4,0 +16407022,Bedroom in Spacious Williamsburg Loft,22803324,Andrea,Brooklyn,Williamsburg,40.70675,-73.96768,Private room,80,2,3,2017-06-02,0.11,1,0 +16407427,Bronx Cozy Spacious Room close to NYC Subway,9947836,Jenny,Bronx,Longwood,40.82441,-73.89454,Private room,50,3,61,2019-06-24,2.17,2,22 +16407461,Prospect Park Brownstone full floor w/garden,28779108,Darryl Diego,Brooklyn,Prospect-Lefferts Gardens,40.66024,-73.95518,Entire home/apt,190,4,26,2019-06-23,1.18,1,145 +16408202,Spacious room with amazing view,8309054,Kenza,Manhattan,East Village,40.72726,-73.98037,Private room,90,2,3,2017-12-20,0.10,1,0 +16409634,*BRAND NEW*4 BED DUPLX W PVT BCKYARD 15 MIN 2 CITY,254846,Brendan,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92258,Entire home/apt,399,3,31,2019-05-04,1.03,4,290 +16409970,Private room on restaurant row,70724645,Carly,Manhattan,Hell's Kitchen,40.76007,-73.99031,Private room,79,1,0,,,1,0 +16411398,Harlem Brownstone Retreat Suite,54246858,Lana,Manhattan,Harlem,40.80997,-73.9412,Entire home/apt,110,3,79,2019-06-29,3.69,1,257 +16412250,Cozy and quiet 1 bedroom in great neighborhood,19294443,Melissa,Brooklyn,Park Slope,40.67514,-73.97598,Entire home/apt,85,2,1,2017-01-01,0.03,1,0 +16412823,Beautiful Area. Central Park views. Classic Apt,20578378,Brooklyn,Manhattan,Upper East Side,40.77547,-73.9623,Private room,105,2,35,2019-06-28,1.35,1,327 +16413425,Where Dreams are made of NYC,107556087,Crystal,Manhattan,East Harlem,40.80476,-73.94074,Shared room,89,1,2,2018-10-02,0.19,1,88 +16413638,Cute Nolita 1 Bedroom,12349009,Kaj,Manhattan,Nolita,40.72253,-73.99459,Entire home/apt,200,3,1,2017-01-02,0.03,1,0 +16413742,Large Bushwick private bedroom,561033,Neil,Brooklyn,Bushwick,40.6998,-73.93781,Private room,63,3,19,2019-06-20,0.68,1,160 +16413797,"Private room in Bushwick, Brooklyn",106756395,Monica,Brooklyn,Bedford-Stuyvesant,40.68881,-73.92139,Private room,50,1,0,,,2,0 +16414045,"Private 2 Room Guest Suite in Queens, NY",59886126,Maria,Queens,Glendale,40.70505,-73.89042,Entire home/apt,95,4,63,2019-05-20,2.21,1,101 +16414081,15 min to NYC-CITY VIEWS FROM ROOM! Safe/warm home,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69055,-73.95394,Private room,58,1,16,2019-01-18,0.52,2,8 +16414538,Beautiful Studio with a top location in Manhattan,21058022,Pablo,Manhattan,Greenwich Village,40.73698,-73.99675,Private room,120,4,5,2017-07-30,0.16,3,0 +16414567,Studio near Central Park East!,18483938,Oscar,Manhattan,Upper East Side,40.77149,-73.95121,Entire home/apt,180,8,1,2017-01-03,0.03,1,0 +16414744,Beautiful room in the heart of Time Square,4923854,Carly,Manhattan,Hell's Kitchen,40.75966,-73.991,Private room,150,3,2,2018-01-01,0.10,1,8 +16415297,"Spacious&Sunny bedroom near Central Park,UpperEast",12895206,Salvatore,Manhattan,Upper East Side,40.77651,-73.94791,Private room,65,7,4,2017-12-29,0.13,1,0 +16415365,Private cozy room close to Columbia University,8594019,Jose Vicente,Manhattan,Morningside Heights,40.81626,-73.96035,Private room,50,3,5,2017-09-02,0.18,2,0 +16415427,Private Bedroom in Midtown -Heart of NYC,23341466,Mo,Manhattan,Theater District,40.76384,-73.98492,Private room,105,8,1,2017-12-08,0.05,1,0 +16415673,Cozy bedroom in a home-y Bushwick place,74868631,Melkorka,Brooklyn,Bushwick,40.69969,-73.92867,Entire home/apt,70,3,3,2018-10-27,0.13,1,66 +16415769,very clean and spacious,107578852,Carlos,Manhattan,Washington Heights,40.8439,-73.93744,Private room,53,1,165,2019-06-16,5.35,2,120 +16415910,Clean and spacious private room for your NYC trip!,53850552,Virginia,Manhattan,Harlem,40.82682,-73.95142,Private room,50,6,4,2017-07-29,0.13,1,0 +16416474,Sun Drenched Spacious Loft in NYCs Trendiest Hood,6755652,Jenny,Manhattan,Lower East Side,40.72077,-73.99023,Entire home/apt,205,3,102,2019-06-23,3.36,1,117 +16416588,One Bedroom off of Franklin Avenue in Brooklyn,43870735,Tj,Brooklyn,Crown Heights,40.6706,-73.96026,Entire home/apt,72,6,0,,,1,0 +16416857,Warm and quiet studio in heart of chinatown,107589614,Jim,Manhattan,Chinatown,40.71538,-73.99669,Entire home/apt,142,4,12,2018-08-26,0.43,2,151 +16417951,Cozy modern sunny room for 2,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67525,-73.93333,Private room,52,2,123,2019-06-17,4.01,4,332 +16418497,Bright Creative Environment,53611405,Tye,Brooklyn,Williamsburg,40.70542,-73.94957,Private room,117,2,3,2018-08-11,0.10,1,285 +16420915,"CLASSIC NEW YORK! Heart of UWS! +CLEAN. BRIGHT. NEW",27847787,Samuel,Manhattan,Upper West Side,40.78446,-73.97189,Entire home/apt,230,6,9,2019-01-02,0.37,1,0 +16422375,Nice place,71540842,Willy,Queens,Ridgewood,40.70777,-73.91053,Entire home/apt,75,3,90,2019-06-08,2.93,2,72 +16423080,Private Studio Apartment close to ferry and subway,15231187,Conor,Brooklyn,Greenpoint,40.73203,-73.95572,Entire home/apt,89,3,69,2019-06-13,2.25,1,0 +16423090,Shared Flatbush House in Brooklyn.,27977412,Daria,Brooklyn,East Flatbush,40.63899,-73.94886,Shared room,30,30,4,2018-04-03,0.15,4,365 +16423772,"Cozy Room In Heart Of Queens- Hillside, Hollis",42076125,Atif,Queens,Hollis,40.71368,-73.76337,Private room,80,3,0,,,2,89 +16423876,newly renovated apt in Brooklyn!,107417836,Rito,Brooklyn,Bedford-Stuyvesant,40.68205,-73.92833,Entire home/apt,200,3,73,2019-06-24,2.50,1,329 +16424070,Cozy modern Coliving in Flatbush/twin shared room,27977412,Daria,Brooklyn,East Flatbush,40.64233,-73.94773,Shared room,38,30,0,,,4,365 +16424565,Modern Apartment 7 min from JFK Airport and Casino,43197578,James,Queens,South Ozone Park,40.6727,-73.81598,Entire home/apt,89,1,2,2019-07-08,2,1,42 +16424642,Skylight loft bed room in large artist house!,3619937,Freddi,Brooklyn,Bushwick,40.69935,-73.92642,Private room,41,7,7,2019-01-16,0.24,2,0 +16424684,Sunny private room in fabulous North Park Slope!,7009468,Sarah,Brooklyn,Park Slope,40.68089,-73.97965,Private room,75,1,3,2018-09-29,0.10,1,108 +16424743,Garden studio w/ private entry&bath. No smokers.,107671914,Etwin,Brooklyn,East Flatbush,40.65737,-73.92563,Private room,90,3,36,2019-01-01,1.28,1,50 +16424934,Stylish and cozy East Village 2 bedroom apartment,20823812,Stephanie,Manhattan,East Village,40.72798,-73.97787,Entire home/apt,135,1,1,2016-12-28,0.03,1,0 +16425205,Room for rent (females ONLY),73550323,Chioma,Bronx,Parkchester,40.84012,-73.86521,Private room,40,1,1,2017-01-01,0.03,1,0 +16425234,Williamsburg Sun-Filled Home Away From Home!,6439477,Lindsay,Brooklyn,Williamsburg,40.71304,-73.94862,Private room,93,2,7,2018-09-04,0.23,1,146 +16426099,All season studio in Astoria,107682732,Elva,Queens,Ditmars Steinway,40.77677,-73.9106,Entire home/apt,100,3,93,2019-06-28,3.03,1,12 +16426123,Large apt in prime carol gardens,40611169,Sol,Brooklyn,Carroll Gardens,40.67933,-73.99562,Entire home/apt,350,1,82,2018-09-30,2.67,5,152 +16426559,Beautiful room in the heart of the Lower East Side,107670361,Alexander,Manhattan,Lower East Side,40.71845,-73.98572,Private room,125,1,0,,,1,0 +16427245,Beautiful private room by N/W subway in Astoria,18978686,Kristin,Queens,Ditmars Steinway,40.77492,-73.90866,Private room,70,2,0,,,1,0 +16427395,"Unique, Lofted 1BR in the heart of West Village",43151590,Kharay,Manhattan,West Village,40.73581,-74.00684,Entire home/apt,150,3,4,2018-12-30,0.13,1,0 +16427668,Chelsea 1bedroom,22526477,Mathew,Manhattan,Chelsea,40.74543,-74.00055,Entire home/apt,300,4,1,2017-01-03,0.03,1,0 +16427742,Cozy room (1 br in a 2 br apt) Upper west side,107699884,Cynthia,Manhattan,Upper West Side,40.79096,-73.97582,Private room,86,1,42,2019-06-15,1.55,1,24 +16427854,Trendy 1 bedroom apartment in cool LES hood.,83185960,Dr. Amy,Manhattan,Lower East Side,40.7151,-73.98661,Entire home/apt,180,3,49,2019-05-28,1.58,1,1 +16428383,2 blocks to 2 ⭐️⭐️⭐️⭐️⭐️,45247495,Carlos,Bronx,Fieldston,40.89279,-73.89946,Entire home/apt,135,6,8,2019-07-01,0.32,1,250 +16428888,Bright and quiet room in East Village,7546451,Clément,Manhattan,East Village,40.7288,-73.98147,Private room,100,10,8,2018-12-20,0.34,1,0 +16428954,Luxury apartment near Williamsburg & Manhattan,19803201,Gino,Brooklyn,Greenpoint,40.72282,-73.94174,Entire home/apt,179,30,32,2019-06-09,1.18,2,326 +16429097,East Williamsburg 1BR Apt. w/ yard!,11429272,Greicy,Brooklyn,Williamsburg,40.70603,-73.94147,Entire home/apt,116,1,55,2018-10-13,1.89,1,0 +16429863,Sunny Private Bedroom in an apartment Sunnyside,44269300,Franklyn,Queens,Sunnyside,40.7396,-73.92324,Private room,115,2,24,2019-04-20,0.78,1,19 +16429866,Sunny room in Brooklyn by N train,36758315,Isadora,Brooklyn,Sunset Park,40.64342,-74.01224,Private room,60,2,1,2017-01-02,0.03,1,0 +16430924,Pacific Street Gem!!!,39834676,Nette,Brooklyn,Crown Heights,40.67756,-73.94775,Entire home/apt,137,3,5,2019-02-23,0.19,1,266 +16431249,Cozy apartment in heart of Manhattan!,16792201,Ileana,Manhattan,Kips Bay,40.74092,-73.97993,Entire home/apt,190,9,5,2019-04-21,0.20,1,0 +16435953,Bedroom in East Williamsburg!,107082851,Brian,Brooklyn,Williamsburg,40.70899,-73.94063,Private room,45,5,0,,,2,0 +16436865,One bedroom by Lincoln Center,91299100,Christopher,Manhattan,Upper West Side,40.77406,-73.98252,Entire home/apt,150,3,2,2017-04-24,0.07,2,0 +16437145,Dreamy 2BR in Architect's Brownstone,4965750,Jess & Hagan,Brooklyn,Bedford-Stuyvesant,40.68505,-73.93427,Entire home/apt,165,2,92,2019-06-28,2.97,1,127 +16437326,1 Bedroom Condo/Kitchen Wyndham Midtown 45 Resort*,69545883,Chayla,Manhattan,Midtown,40.75183,-73.97337,Private room,599,3,0,,,12,365 +16437333,quaint village apartment for up to 6,2488129,Jacqueline,Manhattan,Greenwich Village,40.7286,-73.99971,Entire home/apt,275,1,81,2019-06-25,2.64,1,258 +16438038,Cosy room in Williamsburg,40630037,Clara,Brooklyn,Williamsburg,40.70786,-73.94821,Private room,60,2,8,2017-10-03,0.26,1,0 +16438893,"Great Room In Brooklyn, The Park, 30 min to MH.",64042146,David,Brooklyn,Flatbush,40.65096,-73.96395,Private room,33,5,2,2017-06-12,0.06,1,0 +16439234,"Big, Bright 1 Bedroom b/w Columbia, City College",1877402,Anna,Manhattan,Harlem,40.81199,-73.95341,Entire home/apt,125,2,10,2018-05-06,0.36,2,0 +16439426,Spacious Room in Large 2 Bedroom Prewar Apartment,21136805,Kalim,Brooklyn,Crown Heights,40.66973,-73.95634,Private room,41,1,7,2019-02-15,0.23,1,45 +16439716,Lovely Bright Room in Heart of Williamsburg NY,16462666,Ali,Brooklyn,Williamsburg,40.71353,-73.96144,Private room,89,3,0,,,3,0 +16440192,Interfaith Retreats (Mother Theresa),16677326,Alex And Zeena,Manhattan,Chelsea,40.74837,-73.99639,Private room,85,1,70,2019-06-24,2.27,12,344 +16440383,"Cozy & Comfy Room in quiet Briarwood, Queens, NY",570442,Maria,Queens,Briarwood,40.71357,-73.81986,Private room,85,2,0,,,1,0 +16440392,NYC Style Comfort 1 bd w/Private Living Space,104497453,Mark,Brooklyn,Bedford-Stuyvesant,40.68606,-73.92356,Entire home/apt,150,2,7,2017-09-24,0.24,3,37 +16441625,"Sunny FULL FLOOR 2 bedroom in Greenpoint, Brooklyn",1239078,Michael,Brooklyn,Greenpoint,40.72607,-73.95777,Entire home/apt,150,2,30,2017-10-06,1.01,2,0 +16441995,Sunny & Sweet 1BR BK Apt - 25 mins to Manhattan,24092157,Julie,Brooklyn,Bedford-Stuyvesant,40.68004,-73.9215,Entire home/apt,143,2,8,2018-09-03,0.26,1,38 +16442395,Wyndham Midtown 45 - Great 1 BR Presidential Suite,107662519,Paul,Manhattan,Midtown,40.75182,-73.97354,Entire home/apt,400,3,0,,,1,0 +16442568,Big room near the park,107830761,Jonathan,Brooklyn,Flatbush,40.65203,-73.9628,Private room,36,6,1,2017-01-05,0.03,1,0 +16442660,Private Room in East Harlem,107830392,Nuries,Manhattan,East Harlem,40.79528,-73.9478,Private room,75,1,91,2018-05-28,2.95,1,188 +16442834,Modern 1-bedroom apartment in Fordham,2422554,Brais,Bronx,University Heights,40.86084,-73.90288,Entire home/apt,110,7,0,,,2,40 +16442999,Cozy Studio in the Heart of Manhattan,107833451,Helena & Greg,Manhattan,Kips Bay,40.74081,-73.98018,Entire home/apt,200,5,1,2017-01-02,0.03,1,0 +16443103,Sunny and new luxury studio,107836121,Svetlana,Manhattan,Midtown,40.76555,-73.98029,Entire home/apt,150,5,1,2017-10-16,0.05,1,0 +16443158,"Modern one bed room Apt in Times Square area, NYC",107836752,Kyunghee,Manhattan,Hell's Kitchen,40.76115,-73.99597,Entire home/apt,350,4,0,,,1,0 +16444320,Upper West Side - Two Private Rooms!,6897064,Paula,Manhattan,Upper West Side,40.78142,-73.98418,Private room,87,3,1,2017-01-02,0.03,2,0 +16444558,Upper West Side - Private Room!,6897064,Paula,Manhattan,Upper West Side,40.78138,-73.98318,Private room,50,3,0,,,2,0 +16448634,Centrally located East Village studio,49987,Meg,Manhattan,East Village,40.73245,-73.98873,Entire home/apt,130,2,1,2016-12-31,0.03,1,0 +16449169,Sunny spacious top floor of brownstone,344583,Daniel And Helene,Brooklyn,Bedford-Stuyvesant,40.68559,-73.95398,Entire home/apt,120,2,105,2019-06-20,3.42,1,22 +16449480,Entire 1BR Apt in Manhattanville,43490434,Corey,Manhattan,Harlem,40.82003,-73.95194,Entire home/apt,100,2,68,2019-06-11,2.33,1,9 +16449771,"Simple, Cozy Private Room Near Beach & Subway",36234811,Anna,Queens,Arverne,40.5921,-73.79285,Private room,55,1,28,2019-05-05,0.91,4,159 +16450351,Stunning views room for two!,14416504,StandOut,Manhattan,Financial District,40.70639,-74.00794,Private room,120,5,0,,,1,0 +16451278,Williamsburg Loft - Short or Long term Roommate,7988793,Andres,Brooklyn,Williamsburg,40.71996,-73.95567,Private room,59,30,1,2017-02-23,0.03,1,0 +16451907,Lg Park Slope apt with Washer/Dryer & Backyard,1223281,Annette,Brooklyn,Gowanus,40.66621,-73.99311,Entire home/apt,100,5,10,2018-12-28,0.41,1,0 +16453520,"Beautiful, cozy 1bedroom in Williamsburg",1647202,Katya,Brooklyn,Williamsburg,40.7083,-73.94933,Entire home/apt,100,1,37,2019-05-28,1.28,1,44 +16453837,Big Brooklyn Townhouse Sanctuary,1192630,Christina,Brooklyn,Crown Heights,40.67763,-73.94581,Entire home/apt,375,5,3,2018-08-11,0.12,2,22 +16454164,Beautiful and Quiet Morningside Heights 1BR,19659393,Cathy,Manhattan,Morningside Heights,40.80826,-73.96499,Entire home/apt,105,2,1,2017-01-02,0.03,1,0 +16454273,Entire 3rd floor of Brownstone at Prospect Park!,107933494,Josie,Brooklyn,Park Slope,40.66643,-73.97598,Entire home/apt,165,3,33,2019-06-13,1.15,2,305 +16454703,"Spacious Brooklyn, New York Retreat",107939984,J,Brooklyn,Fort Hamilton,40.61444,-74.02974,Entire home/apt,150,4,78,2019-07-04,2.60,1,29 +16455521,Cozy Studio on Roosevelt Island,96438921,Yanru,Manhattan,Roosevelt Island,40.7623,-73.95044,Entire home/apt,96,4,0,,,1,0 +16456120,Peaceful Room in Bedstuy Brooklyn,881222,Andreas,Brooklyn,Bedford-Stuyvesant,40.68576,-73.93223,Private room,70,3,0,,,1,0 +16458046,Big Bright Room ☼ Lower East Side,97513787,Daniel,Manhattan,Chinatown,40.71523,-73.99242,Private room,72,25,11,2019-02-17,0.37,5,323 +16462626,Hip 2 Bed in Williamsburg w/Private Backyard,108009985,Helma,Brooklyn,Williamsburg,40.70971,-73.95229,Entire home/apt,225,7,8,2017-06-24,0.26,1,0 +16463445,Beautiful Apt in UES,50549111,Laura,Manhattan,Upper East Side,40.77198,-73.95003,Entire home/apt,200,3,3,2019-01-01,0.10,1,0 +16463598,Penthouse HUGE balcony on Lex(1BR),50482164,Nina,Manhattan,Midtown,40.75993,-73.97054,Entire home/apt,145,1,51,2017-09-18,1.69,1,0 +16465524,Shared Room in Brooklyn,40871485,Ajay,Brooklyn,Bay Ridge,40.63821,-74.0273,Shared room,22,5,1,2017-01-14,0.03,1,0 +16465638,Modern Apartment in Bed-Stuy,794727,Martin,Brooklyn,Bedford-Stuyvesant,40.69022,-73.94298,Entire home/apt,60,4,11,2019-06-01,0.36,1,0 +16465690,Room in the heart of East Village,52243881,Andrea,Manhattan,East Village,40.7232,-73.98223,Private room,90,1,8,2018-01-02,0.26,2,0 +16466095,Comfy room at the heart of Williamsburg,19804292,Volkan,Brooklyn,Williamsburg,40.71199,-73.95581,Private room,80,3,0,,,1,0 +16466733,Spacious light tribeca loft!,25528796,Julia,Manhattan,Tribeca,40.71812,-74.0044,Entire home/apt,190,3,0,,,1,0 +16466804,Gorgeous Garden Apt on Stunning Park,1708922,Molly & Mike,Brooklyn,Greenpoint,40.72463,-73.94128,Entire home/apt,128,4,17,2019-05-27,0.67,1,9 +16466819,Grand Central / United Nations Beautiful Studio!!,1475015,Mike,Manhattan,Midtown,40.75072,-73.97023,Entire home/apt,83,30,0,,,52,325 +16467165,Studio Apartment in Prospect Lefferts Gardens,7579679,Martha,Brooklyn,Prospect-Lefferts Gardens,40.66153,-73.96185,Entire home/apt,50,4,1,2017-05-03,0.04,1,0 +16467731,Beautiful 2 BR Apt. In Most Convenient Spot,108055585,Sue,Manhattan,Upper West Side,40.78864,-73.97683,Entire home/apt,300,2,9,2018-12-16,0.53,1,105 +16468001,Charming Upper West Private Floor,49208451,Alix,Manhattan,Upper West Side,40.7819,-73.98367,Private room,200,1,2,2016-12-29,0.06,1,0 +16468083,MODERN BEDROOM IN BROOKLYN! BUSHWICK! FUN AREA!,107948590,Mailee,Brooklyn,Bushwick,40.69452,-73.92322,Private room,59,1,1,2016-12-28,0.03,1,0 +16468214,Great pad in Brooklyn next to train,108061424,Kevin,Brooklyn,Crown Heights,40.66961,-73.94032,Private room,85,2,3,2018-01-02,0.12,1,0 +16469132,Sunny Private Room close to Central Park - Harlem,16273228,Sherian,Manhattan,East Harlem,40.79602,-73.94884,Private room,77,1,6,2017-07-20,0.23,1,0 +16469710,Nantucket Lounge of Upper East Side,108078909,Andrew,Manhattan,Upper East Side,40.77174,-73.95703,Private room,113,1,7,2017-12-31,0.23,1,0 +16471707,Bright and cozy room is Clinton Hill-Brooklyn,538300,Hubert,Brooklyn,Bedford-Stuyvesant,40.6965,-73.9601,Private room,54,5,12,2018-12-09,0.40,1,21 +16472789,Cozy bedroom in Long Island city.,26789852,Aendel,Queens,Long Island City,40.75502,-73.93163,Private room,50,4,125,2019-06-24,4.29,2,11 +16475309,Wonderful Apartment in the charming East Village,22024939,Abhishek,Manhattan,East Village,40.72163,-73.98291,Entire home/apt,450,1,0,,,1,0 +16475570,Spacious private room near LGA airport,58391491,Juel,Queens,East Elmhurst,40.76383,-73.87337,Private room,40,1,255,2019-06-22,8.33,5,154 +16475935,Master Bedroom in Clinton Hill,23700673,Yoni,Brooklyn,Clinton Hill,40.69377,-73.96229,Private room,100,3,0,,,2,2 +16476403,livingroom for rent queen size sofa bed or air bed,23095202,Victoria,Brooklyn,East Flatbush,40.63425,-73.94862,Shared room,45,2,0,,,2,88 +16476956,Newly renovated & Fully Furnished Super clean,51065605,Charles,Bronx,Port Morris,40.80743,-73.92971,Entire home/apt,115,5,7,2019-07-01,0.23,1,7 +16477061,Classic Upper East Side Manhattan,3428943,Travel Bug,Manhattan,Upper East Side,40.76906,-73.95369,Entire home/apt,119,7,0,,,1,0 +16478472,Designer 2-BR with Stunning Views in Williamsburg,108160091,Dasha,Brooklyn,Williamsburg,40.71002,-73.96114,Entire home/apt,218,30,25,2019-05-19,0.82,3,342 +16479076,Big private room in Manhattan,60344033,Chung Hao,Manhattan,Washington Heights,40.84916,-73.93759,Private room,35,5,0,,,1,0 +16479344,Large Studio Apt in Central Harlem (Entire Apt),2970729,Vera,Manhattan,Harlem,40.8116,-73.943,Entire home/apt,120,3,15,2019-07-02,2.06,1,15 +16479459,Huge Modern Ensuite. Convenient. Incredible view!,19442899,David,Manhattan,Hell's Kitchen,40.75545,-73.99547,Private room,119,7,11,2017-10-20,0.37,1,0 +16480273,Sunny Spring Sanctuary ~ 2 Bedroom Apt.,108188109,Thomas,Brooklyn,Bedford-Stuyvesant,40.69158,-73.93776,Entire home/apt,100,3,75,2019-06-15,2.59,1,36 +16480421,Huge bedroom/private entrance/heart of Bushwick,62925063,Andrea,Brooklyn,Bushwick,40.70275,-73.93288,Private room,69,1,6,2019-04-13,0.33,2,83 +16480673,Charming 1 Bdr Apt in the Heart of West Village,19578509,Elodie,Manhattan,West Village,40.73409,-74.00621,Entire home/apt,190,2,24,2019-06-18,0.78,1,0 +16481602,Nice one bedroom apartment,85002860,Manuel,Manhattan,Morningside Heights,40.81387,-73.96205,Entire home/apt,110,10,0,,,1,0 +16485273,"Quiet, clean, comfortable place in upper Manhattan",1624568,Kristina,Manhattan,Inwood,40.8698,-73.92255,Entire home/apt,120,1,30,2019-07-01,1.10,1,35 +16485990,Beautiful 2 BR apartment next to restaurants/train,13713605,Bea Ebony,Brooklyn,Kensington,40.64272,-73.97187,Entire home/apt,140,3,13,2019-06-23,1.09,2,141 +16486996,Apartment in Park Slope / Rooftop Access,36431705,Upinder,Brooklyn,Gowanus,40.6714,-73.99257,Private room,75,4,7,2019-05-26,0.23,1,253 +16487043,GREAT sunny 1 bedroom,42783841,Andy,Manhattan,East Village,40.72807,-73.97718,Entire home/apt,85,5,0,,,1,0 +16487077,"East 29th Street, Luxury 1bd",22541573,Ken,Manhattan,Midtown,40.74593,-73.98687,Entire home/apt,200,30,0,,,87,365 +16487157,Great room 3 min to train 25 min to Manhattan.,85499618,Ibi,Queens,Rego Park,40.72507,-73.86959,Shared room,110,1,5,2019-05-18,0.39,1,56 +16487823,2 Double Bed Hotel Style WYNDHAM MIDTOWN 45 *NYC*,69545883,Chayla,Manhattan,Midtown,40.75327,-73.97175,Private room,599,3,2,2017-05-27,0.07,12,365 +16487967,Private Room in 4BR Modern Manhattan Apartment,24752198,Brando,Manhattan,Upper West Side,40.80347,-73.96607,Private room,38,3,1,2017-01-30,0.03,1,0 +16488277,Your Fab Home Away from Home awaits You in NYC!!!!,59559158,Hello,Manhattan,Tribeca,40.72355,-74.01045,Entire home/apt,375,2,30,2019-06-09,1.03,1,38 +16488787,Newly Renovated Two Bedroom one bathroom,108272855,Lily,Brooklyn,Sunset Park,40.64212,-74.00259,Entire home/apt,90,2,108,2019-06-20,3.52,1,144 +16489149,2 BDRM PRESIDENTIAL LUXURY CONDO MIDTOWN 45 NYC *,69545883,Chayla,Manhattan,Midtown,40.75373,-73.97272,Private room,999,3,1,2017-09-11,0.05,12,365 +16489175,"Spacious LIC apartment, 10 min to Grand Central",108275969,John,Queens,Long Island City,40.74902,-73.9472,Private room,57,5,0,,,1,0 +16490625,Luxury and Design in a Cultivated Escape,15651084,Saya,Manhattan,Murray Hill,40.74917,-73.97549,Entire home/apt,200,2,0,,,1,0 +16490732,Entire 3rd Fl in Brownstone steps to Prospect Park,107933494,Josie,Brooklyn,Park Slope,40.66763,-73.97486,Entire home/apt,260,3,17,2019-05-29,0.60,2,309 +16490903,Spacious room within minutes to A express train!,10896884,Gaurav,Manhattan,Washington Heights,40.84798,-73.94092,Private room,99,2,0,,,1,0 +16491507,Extra Cozy Room in Center of Williamsburg,4033160,Brian,Brooklyn,Williamsburg,40.71404,-73.95783,Private room,98,1,3,2017-01-01,0.10,1,0 +16491731,1 TwinXL Bed Walk-To TIME SQUARE #ForReal,51830483,Nathan,Manhattan,Hell's Kitchen,40.76106,-73.98891,Private room,79,1,20,2019-02-19,0.70,2,151 +16493057,Artistic Union sq duplex + private roof top NYC,69398683,Ben,Manhattan,West Village,40.73795,-74.00139,Entire home/apt,175,2,7,2019-07-01,0.38,1,0 +16493084,Bedroom (KING) & private bath - Brand New & Modern,7427325,Jenia,Manhattan,Hell's Kitchen,40.76548,-73.99374,Private room,200,1,20,2017-06-29,0.69,2,0 +16496715,Sunny and Cozy Bedroom near Columbia University,11084524,Ruby,Manhattan,Morningside Heights,40.80439,-73.96263,Private room,50,3,0,,,1,0 +16497297,Glass factory loft,5379884,Jacob,Brooklyn,Greenpoint,40.73792,-73.95541,Private room,60,7,5,2019-05-31,0.16,1,0 +16498294,COZY BEAUTIFUL APT IN EAST VILLAGE,13312279,Marta,Manhattan,East Village,40.72638,-73.98464,Entire home/apt,125,4,17,2018-09-01,0.56,1,0 +16498335,Spacious private room Uptown NYC,17713747,Polly,Manhattan,Washington Heights,40.85365,-73.93298,Private room,60,15,1,2017-03-03,0.03,3,159 +16499274,Two bedroom apt in Williamsburg,13924244,Steven,Brooklyn,Williamsburg,40.71281,-73.94246,Entire home/apt,100,4,48,2019-05-14,2.16,1,6 +16499824,"Upper West 2BR, Met, Lincoln Center, Central Park",108367656,Lesya,Manhattan,Upper West Side,40.77547,-73.98154,Entire home/apt,225,4,10,2018-11-25,0.42,1,0 +16503382,Cozy Brownstone Apartment Near City,26495426,Aj,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95334,Entire home/apt,110,3,147,2019-07-06,4.79,1,88 +16504513,Gorgeous Industrial Loft in Prime Williamsburg,5179443,Vinay,Brooklyn,Williamsburg,40.72162,-73.96029,Entire home/apt,195,4,7,2018-11-11,0.23,1,0 +16504986,Sunny Bedroom In The Heart of Bushwick,108448918,Jermaine,Brooklyn,Bushwick,40.70076,-73.92878,Private room,55,3,13,2017-05-28,0.43,1,0 +16505722,"Spacious, bright studio near Prospect Park",15279171,Ashley,Brooklyn,Flatbush,40.6456,-73.95982,Entire home/apt,55,2,5,2017-08-28,0.16,1,0 +16506016,Harlem Monthly Rental True Two Bedroom 1 Bath,12145783,Enid,Manhattan,East Harlem,40.8006,-73.94115,Entire home/apt,99,30,3,2018-12-23,0.22,2,220 +16506121,Beautifully private furnished room,108464471,Jeremiah,Bronx,Longwood,40.8179,-73.91456,Private room,100,6,0,,,1,365 +16506579,Interfaith Retreats (Kirtan),16677326,Alex And Zeena,Manhattan,Chelsea,40.74788,-73.99615,Private room,85,1,108,2019-06-15,3.53,12,356 +16507002,LIC Room w/ Clean & Comfy Amenities + 6 Trains,100112994,Felix,Queens,Long Island City,40.7495,-73.93676,Private room,100,3,56,2019-07-01,4.48,2,42 +16507116,"THE REAL NYC EXPERIENCE! 20 MINS TO NY, QUEEN BED",51025844,Kdn,Manhattan,Inwood,40.86768,-73.92685,Private room,69,2,41,2019-06-23,1.34,3,180 +16507804,Spacious bedroom,1635983,Sheila,Bronx,Schuylerville,40.83248,-73.83203,Private room,46,4,43,2019-07-06,1.65,3,135 +16507990,Cozy Upper West Private Floor,108489381,Shane,Manhattan,Upper West Side,40.78296,-73.98284,Private room,165,1,1,2017-01-02,0.03,1,0 +16508394,Manhattan Two Bedroom Renovated Apt.,108494755,Denise,Manhattan,Inwood,40.86253,-73.9277,Entire home/apt,75,5,0,,,1,0 +16508710,Small Cozy Room,20414850,Han,Queens,Glendale,40.70419,-73.88558,Private room,40,2,2,2016-12-29,0.06,1,0 +16511493,You Deserve The Royal Treatment.,108433379,Percy,Bronx,Norwood,40.87692,-73.87427,Entire home/apt,130,5,0,,,1,89 +16513101,Cool Brooklyn Flat,23293950,Anthony,Brooklyn,Red Hook,40.67706,-74.01133,Entire home/apt,115,2,124,2019-07-05,5.04,1,275 +16513698,Very Big Manhattan Apartment very big Living Room,37994197,Sophia,Manhattan,Lower East Side,40.72068,-73.98574,Entire home/apt,349,3,76,2019-06-23,2.54,1,71 +16514343,"Modern, Beautiful Tribeca 2-Bedroom Loft",12554468,Eric,Manhattan,Tribeca,40.71845,-74.00932,Entire home/apt,259,2,116,2019-07-06,4.03,1,1 +16514760,Large 1BR Brooklyn Apt,45293248,Nicholas,Brooklyn,Williamsburg,40.70589,-73.95123,Entire home/apt,137,3,3,2017-09-04,0.10,1,0 +16514808,"Private Bedroom in Bushwick, BK",108561042,Cameron,Brooklyn,Bushwick,40.69487,-73.9263,Private room,40,10,0,,,1,0 +16514949,1 Bedr.Apt.(1-3 guests)+Wifi-Private Bath+Kitchen,99643776,Claire,Manhattan,Chinatown,40.71682,-73.99574,Entire home/apt,160,3,40,2019-07-03,1.35,2,124 +16515501,"Bright, Open, and Beautiful 2-Bedroom!",411560,Joel,Brooklyn,Williamsburg,40.70893,-73.94662,Entire home/apt,200,2,1,2017-08-28,0.04,1,0 +16517394,Private room in super location in lower Manhattan,23970798,Maria,Manhattan,Lower East Side,40.71265,-73.98711,Private room,52,14,4,2019-03-15,0.61,1,0 +16517710,UNIQUE & COZY STUDIO NEAR CENTRAL PARK,20354091,Ana,Manhattan,Upper East Side,40.76513,-73.96583,Entire home/apt,160,5,14,2019-06-30,1.22,1,92 +16518377,East Village 1BR Apt with all the amenities,3012457,Cody,Manhattan,East Village,40.7235,-73.97963,Entire home/apt,200,2,3,2018-07-10,0.16,1,0 +16518787,Spirited 2-Bed Sanctuary -- Entire Building!,1809640,Matt,Manhattan,Chinatown,40.71333,-73.99225,Entire home/apt,550,2,4,2017-09-04,0.14,1,0 +16519069,Cozy Private Room in Share Apartment near Midtown,108608482,Ivan,Manhattan,Kips Bay,40.74227,-73.97432,Private room,100,5,2,2017-07-16,0.07,1,0 +16519154,Sunny Modern Studio in Williamsburg,19480727,Helen,Brooklyn,Williamsburg,40.71013,-73.96517,Entire home/apt,175,5,6,2019-05-24,0.21,1,0 +16519911,Fabulous Art-Filled West Village Home (1BR),13584145,Monika,Manhattan,West Village,40.73308,-74.00203,Entire home/apt,275,2,4,2018-07-17,0.15,1,0 +16520111,Sunny and Modern Beach Bungalow,9091115,Cori,Queens,Far Rockaway,40.59495,-73.75771,Entire home/apt,100,4,14,2019-05-28,0.53,1,17 +16523132,Sunny Space in BK for your NYC stay,40146897,Eric,Brooklyn,Crown Heights,40.67356,-73.92131,Private room,60,2,29,2019-06-07,1.02,5,0 +16525573,Park Avenue 1 Bedroom,50760546,CRNY Monthly Rentals,Manhattan,Midtown,40.74506,-73.98202,Entire home/apt,99,30,2,2019-05-13,0.11,31,132 +16526927,Charming cozy Studio - Discounted !!,71490429,Corrado,Brooklyn,Flatbush,40.64972,-73.96363,Entire home/apt,56,20,3,2018-07-15,0.10,1,0 +16527938,Beautiful room in a Sunny Apartment West Harlem!,76767234,Ac,Manhattan,Harlem,40.82128,-73.95835,Private room,100,2,0,,,1,40 +16528098,Cozy apartment in the heart of West Village,7244288,Eric,Manhattan,West Village,40.7326,-74.00824,Entire home/apt,180,3,46,2018-09-22,1.51,1,0 +16528572,East Williamsburg private room w/ backyard access,67925153,DeAnna,Brooklyn,Williamsburg,40.70509,-73.93322,Private room,45,1,8,2017-04-08,0.26,1,0 +16529413,Private Bedroom in Beautiful Central Williamsburg!,14624072,Louis,Brooklyn,Williamsburg,40.71753,-73.94946,Private room,48,2,1,2017-01-15,0.03,1,0 +16529755,Super cozy room !CONVENIENT,1863597,Nicole,Manhattan,Chelsea,40.74324,-73.99586,Private room,115,1,9,2019-04-10,0.34,1,172 +16529936,Sunny room in 2bed apt in East Harlem Fullsize bed,8366233,Helga,Manhattan,East Harlem,40.79372,-73.93445,Private room,50,14,33,2019-05-25,1.10,2,22 +16530373,"Master Suite in Lovely, Sunny DUMBO Apartment",1649108,Allie,Brooklyn,Navy Yard,40.70095,-73.98006,Private room,135,1,50,2019-05-30,1.87,3,29 +16530447,Bushwick Modern Apartment // 1 Block from Subway,22760867,Rachel,Brooklyn,Bushwick,40.69833,-73.9266,Entire home/apt,200,2,0,,,1,0 +16530772,Lovely room 20 min to Times Square & Central Park,39072326,Stephanie,Manhattan,Harlem,40.80999,-73.9415,Private room,80,2,94,2019-06-23,3.25,1,167 +16530947,Cozy Artsy Private Room in Williamsburg,71370032,Hannah,Brooklyn,Williamsburg,40.70827,-73.94749,Private room,80,1,0,,,1,0 +16530962,Studio Apartment UES - 12/31 - 1/14 Availablity,73643863,Lauren,Manhattan,Upper East Side,40.77675,-73.95206,Entire home/apt,95,3,0,,,1,0 +16533105,Queen bed-Close to Columbia U & Central Park,64471880,Jaleh,Manhattan,Harlem,40.80227,-73.95523,Private room,87,1,269,2019-06-29,8.79,2,65 +16533876,Charming spacious room in Williamsburg,11521252,Florence,Brooklyn,Williamsburg,40.7129,-73.94896,Private room,83,4,0,,,1,0 +16533954,Brownstone Jewel in Crown Heights,386263,Vineet,Brooklyn,Crown Heights,40.67673,-73.95311,Entire home/apt,171,3,77,2019-06-21,2.72,2,244 +16534037,1 BR at Wyndham Midtown 45 NYC,61463458,Gary,Manhattan,Midtown,40.75377,-73.97203,Private room,225,2,2,2018-07-22,0.16,2,0 +16534156,#1 Large sunny Studio 5 blocks from CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77251,-73.95431,Entire home/apt,100,30,26,2019-05-28,1.18,3,250 +16534157,Room for one or two in beautiful Midwood,48899796,Beth,Brooklyn,Midwood,40.62066,-73.95378,Private room,60,2,56,2019-05-26,1.83,2,42 +16534337,Spacious Private room in Charming Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71348,-73.93748,Private room,85,2,22,2019-06-07,0.72,3,36 +16534588,Studio unit at Wyndham Midtown 45 NYC,61463458,Gary,Manhattan,Midtown,40.75172,-73.97193,Private room,185,2,0,,,2,0 +16535746,"new penthouse w/ balcony, city+waterfront views",1363848,Matthew,Brooklyn,Park Slope,40.67129,-73.98537,Entire home/apt,249,5,18,2019-06-30,0.67,1,54 +16540563,Sun-filled Jewel in the Heart of Bushwick,108781530,Isaac,Brooklyn,Bushwick,40.69544,-73.92994,Private room,35,2,1,2018-09-17,0.10,1,0 +16541635,Spacious uws studio overlooking Central Park,77375497,Hannah,Manhattan,Upper West Side,40.79163,-73.96727,Entire home/apt,100,4,2,2017-09-03,0.09,1,0 +16542661,Parisian Apt in PRIME Carroll Gardens Brooklyn,72568223,Jane Jo,Brooklyn,Gowanus,40.68066,-73.99097,Entire home/apt,159,5,12,2017-09-10,0.41,1,0 +16542864,MANHATTAN STUDIO SUITE SLEEPS 2 GUEST,2677753,Regina,Manhattan,Midtown,40.76501,-73.98076,Private room,895,2,0,,,1,365 +16543032,❤ART of Chelsea | 1bd rm | Walk/bike everywhere!,60105727,Lee,Manhattan,Chelsea,40.74067,-74.00013,Entire home/apt,196,3,90,2019-06-29,3.09,2,186 +16543538,sunny private bedroom in Harlem,5959857,Lukasz,Manhattan,Harlem,40.82097,-73.95282,Private room,40,3,2,2017-02-18,0.07,1,0 +16543563,"Beautiful private room in East Village, NYC",5076469,Aaron,Manhattan,East Village,40.72558,-73.99025,Private room,95,7,2,2017-04-16,0.07,1,0 +16543637,"Huge Sunny Bedroom, 20 min to Times Square!",10460189,Michael,Queens,Sunnyside,40.74171,-73.9254,Private room,55,6,23,2019-01-06,0.76,1,0 +16544473,Stylish 1BR w/lounge or 2BR Vintage Artists Apt.,7824750,Donari,Brooklyn,Williamsburg,40.70725,-73.95271,Entire home/apt,122,7,43,2019-06-10,1.41,1,146 +16545297,Room close to Manhatan,36232131,Pablo,Queens,Woodside,40.74354,-73.90093,Private room,100,3,0,,,1,90 +16545876,Astoria Ditmars Bedroom,10028635,Valentina,Queens,Ditmars Steinway,40.77549,-73.90786,Private room,55,3,13,2019-04-25,1.13,1,36 +16546557,1 Person Only 1 Bdrm LES HugeDeck,2859516,Raymond,Manhattan,Lower East Side,40.72198,-73.98785,Private room,90,2,77,2019-01-28,2.50,2,68 +16546903,Astor Row Apartment in the Heart of Harlem <3,11699708,Jacqueline,Manhattan,Harlem,40.80931,-73.9412,Private room,75,1,81,2019-06-30,2.64,1,158 +16547073,East Williamsburg private 2 bedroom apt by L train,8515724,J,Brooklyn,Williamsburg,40.70894,-73.94142,Entire home/apt,200,1,4,2019-04-22,0.17,3,0 +16547704,Huge Gorgeous room in a Park View Apartment!,3290436,Hadar,Brooklyn,Flatbush,40.65352,-73.96191,Private room,70,2,0,,,2,177 +16552108,Cozy S. Williamsburg Landing Pad,795031,D M,Brooklyn,Williamsburg,40.70896,-73.95383,Entire home/apt,136,4,4,2018-08-15,0.15,2,0 +16553353,❤️❤️❤️ COZY Place by the Park for ONE ❤️❤️❤️,48983104,Lily,Queens,Middle Village,40.71991,-73.87439,Private room,50,2,47,2019-07-01,1.99,3,90 +16553544,Gr8 views in heart of Williamsburg,28642501,Jen,Brooklyn,Williamsburg,40.71734,-73.95952,Private room,210,2,0,,,1,0 +16554288,Cozy studio in historic Clinton Hill near trains,3543739,Ashley,Brooklyn,Clinton Hill,40.68513,-73.96789,Entire home/apt,95,3,0,,,1,0 +16554488,Lovely Brooklyn Room near train stop,39055365,Anaïs,Brooklyn,Bedford-Stuyvesant,40.68156,-73.91424,Private room,45,2,5,2017-02-20,0.17,1,0 +16554739,"Enormous, Beautiful Apartment near Prospect Park",26387193,Eman,Brooklyn,Flatbush,40.6528,-73.95805,Entire home/apt,69,1,0,,,1,0 +16555274,It is a two bedroom apartment,7229636,Ismael,Bronx,Concourse,40.8262,-73.92557,Entire home/apt,150,4,84,2019-07-03,2.87,1,93 +16555921,"Quiet Private room Queens Nyc,Midtown 30 mins",109012504,Rory,Queens,Maspeth,40.727,-73.88974,Private room,40,3,1,2017-01-18,0.03,1,0 +16556049,Private Bathroom and Cozy Bedroom in Brooklyn,78441349,Melissa,Brooklyn,East Flatbush,40.64638,-73.95065,Private room,90,1,30,2019-06-04,1.16,3,244 +16556211,"Cozy Bedroom in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.64863,-73.94948,Private room,80,1,27,2019-04-13,1.09,3,342 +16557384,Private Room in Cozy Harlem 2 Bedroom,38853591,Kyle,Manhattan,Harlem,40.82261,-73.95163,Private room,25,2,102,2019-06-18,3.33,1,99 +16557829,Upper Manhattan - Female only,109033183,Lucy,Manhattan,Inwood,40.86688,-73.92402,Private room,40,6,6,2018-08-12,0.20,1,0 +16558246,Cozy studio Upper East/Manhattan,109036773,Mila,Manhattan,Upper East Side,40.76794,-73.95712,Entire home/apt,220,8,15,2019-06-14,0.52,1,14 +16559041,Spacious Bedroom @ Convinience,80375387,Ash,Queens,Astoria,40.75888,-73.91747,Private room,81,1,3,2018-09-04,0.20,1,179 +16559061,Large Room in Manhattan,91744449,Ricardo,Manhattan,Harlem,40.81488,-73.94221,Private room,85,1,3,2017-03-25,0.10,1,0 +16560593,NYC NEW YEARS EVE - LUXURY CRASH PAD!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68186,-73.91188,Shared room,31,4,114,2018-10-11,3.72,3,0 +16560739,Spacious Master Bedroom 20 mins. from NYC,108786369,Kwana,Brooklyn,Bedford-Stuyvesant,40.6933,-73.9541,Entire home/apt,130,3,8,2017-05-29,0.27,1,0 +16561990,Cozy one bedroom in Upper East Side Manhattan UES,16860700,Lu,Manhattan,Upper East Side,40.77628,-73.95322,Entire home/apt,91,1,0,,,1,0 +16565202,The Rainbow Room on Prospect Park.,24690329,Victoria,Brooklyn,South Slope,40.66045,-73.98057,Private room,75,2,25,2018-08-26,1.06,1,0 +16565435,Light-filled South Slope Nest!,3291579,Rebecca,Brooklyn,Sunset Park,40.66156,-73.99318,Entire home/apt,73,2,48,2019-06-21,1.86,1,2 +16567425,Tidy artists' apartment,17227959,Dustin,Brooklyn,Crown Heights,40.66404,-73.95141,Entire home/apt,56,4,3,2017-08-23,0.10,1,0 +16568106,"Quiet South Slope house w/ piano, porch & garden.",7574029,Tracey,Brooklyn,Sunset Park,40.65917,-73.99137,Entire home/apt,175,1,17,2018-08-26,0.56,1,0 +16568164,Wonderful Cozy Private Room By Central Park,43642470,Simona & Jon,Manhattan,East Harlem,40.79732,-73.94873,Private room,47,2,0,,,1,0 +16568191,Large 1 room with bed in the heart of manhathan,109141116,Adil,Manhattan,Murray Hill,40.74604,-73.97495,Private room,80,7,0,,,1,0 +16568252,"Huge Fort Greene Loft, Prime!",327489,Anthony,Brooklyn,Fort Greene,40.69269,-73.9737,Entire home/apt,125,2,8,2019-06-30,0.31,1,185 +16568275,"BEST DEAL, PERFECT LOCATION in Downtown, Manhattan",109142193,Liang,Manhattan,Greenwich Village,40.73083,-73.9943,Private room,69,4,0,,,1,0 +16569426,Cosy 1 bed basement Apartment,109155011,Pearline,Brooklyn,East Flatbush,40.64342,-73.94037,Entire home/apt,75,1,82,2019-06-09,3.16,1,179 +16569554,Bright room Williamsburg off Bedford,1535167,Danielle,Brooklyn,Williamsburg,40.71681,-73.96296,Private room,69,2,10,2019-01-01,0.34,1,0 +16570490,Sunny Room in Clinton Hill Brooklyn,11935009,Brandon,Brooklyn,Clinton Hill,40.68118,-73.96126,Private room,60,2,15,2018-06-29,0.50,1,0 +16570631,Cozy room in MASSIVE bushwick house,11586393,Jared,Brooklyn,Bushwick,40.68863,-73.90874,Private room,80,1,1,2017-01-01,0.03,1,66 +16570975,Quiet room in apt Williamsburg 10 mins to City,101982307,Belinda,Brooklyn,Williamsburg,40.71661,-73.9551,Private room,60,2,27,2019-03-16,1.02,2,0 +16570978,JFK AIRPORT 3-BEDROOM LUXURY APT WITH FREE PARKING,107053757,Neena,Queens,Richmond Hill,40.6887,-73.82572,Entire home/apt,225,1,69,2019-07-07,2.34,1,329 +16575174,1 Bedroom Escape in Brooklyn Heights,60591318,Michelle,Brooklyn,Brooklyn Heights,40.693,-73.99374,Entire home/apt,185,4,0,,,1,0 +16575852,Futon to crash on New Year in NY,42076125,Atif,Queens,Hollis,40.71764,-73.76402,Shared room,120,1,0,,,2,365 +16577736,LARGE BEAUTIFUL QUIET ROOM IN 2 STORY TOWNHOUSE,5281237,Jonathan,Queens,Astoria,40.77267,-73.92871,Private room,80,3,23,2019-06-14,0.76,2,244 +16578092,#2 Ideal Williamsburg - L trian Lorimer Stop!,46660053,Ploy,Brooklyn,Williamsburg,40.71368,-73.9536,Private room,55,4,43,2019-05-17,1.41,3,58 +16578112,City Life Minus The City Price - Flatbush Brooklyn,22694337,Emani,Brooklyn,Flatbush,40.6485,-73.95439,Private room,36,1,18,2019-06-13,0.79,1,154 +16578780,Historical Addisleigh Park NYC,31685194,Gerceida,Queens,St. Albans,40.69472,-73.77109,Private room,55,2,34,2019-06-02,1.16,1,59 +16578826,"Harlem ""Hostel"" for Single Travelers",17078225,Sarah-Jane,Manhattan,Harlem,40.81516,-73.94829,Shared room,55,2,36,2019-06-30,1.28,2,88 +16579236,Chambre idéale couple ou amis - Proche Manhattan,24118830,Constanza,Brooklyn,Williamsburg,40.70825,-73.94932,Private room,80,2,5,2017-06-06,0.18,1,0 +16581779,"2BR ""Café Brooklyn"" w/private Courtyard in BedStuy",109306113,Chad,Brooklyn,Bedford-Stuyvesant,40.68488,-73.92706,Entire home/apt,149,1,39,2019-06-23,2.87,1,75 +16582351,BEAUTIFUL Master Bedroom - 20 mins to Manhattan!,1649524,Peter,Brooklyn,Prospect Heights,40.67328,-73.96415,Private room,41,1,0,,,1,0 +16584033,Beautiful 2 bedroom apt in Brownstone Brooklyn,4965665,Vanessa,Brooklyn,Clinton Hill,40.68855,-73.96476,Entire home/apt,95,4,0,,,1,156 +16584878,Modern and bright duplex in central Cobble Hill,11704017,Daniel,Brooklyn,Cobble Hill,40.6858,-73.99977,Entire home/apt,350,30,2,2017-11-04,0.09,1,156 +16585566,Quiet Clean Private Bedroom Brooklyn,6600911,Cristina,Brooklyn,Bensonhurst,40.61336,-73.9857,Private room,35,3,11,2019-06-08,0.38,2,79 +16585605,Room 202,1236663,T,Manhattan,Harlem,40.81847,-73.93957,Private room,50,1,105,2019-07-05,3.68,1,25 +16586422,White space with 0min to bus stop,17997408,Nancy,Brooklyn,Clinton Hill,40.69482,-73.96419,Shared room,50,1,197,2019-06-22,6.54,2,19 +16586785,Williamsburg Penthouse w/ Private Roof,3781090,Jamil,Brooklyn,Williamsburg,40.70724,-73.94379,Entire home/apt,100,2,36,2019-05-27,1.19,1,0 +16586966,Huge quiet modern oasis,9398673,Tal,Brooklyn,Prospect Heights,40.67915,-73.96913,Entire home/apt,150,2,2,2018-02-15,0.11,1,0 +16587776,Taaffe Loft,33674633,Michael,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95877,Private room,55,1,0,,,1,0 +16590264,Pretty modern 3-B APT near Everything you want!,33064599,Yukee,Manhattan,Upper West Side,40.80007,-73.96524,Entire home/apt,190,1,4,2018-10-24,0.26,6,337 +16591428,"Sunny Modern Apartment with Terrace, Near Subway",2988712,Sasha,Bronx,Mount Hope,40.85188,-73.90321,Entire home/apt,60,90,5,2018-11-03,0.20,7,94 +16595351,Manhattan - Upper East Side - Entire Home,69406365,Yoko,Manhattan,Upper East Side,40.77102,-73.94671,Entire home/apt,80,1,1,2017-01-16,0.03,2,0 +16598387,"Sleeps6+PRIV.TERRACE+laundry,Trains+BAM&Barclays",8696190,Tee,Brooklyn,Fort Greene,40.6869,-73.97454,Entire home/apt,380,3,11,2019-06-30,0.37,1,22 +16599323,"Studio loft, Cosy and charming with rooftop view",109498113,Sammy & Chris,Brooklyn,Bushwick,40.69964,-73.93729,Entire home/apt,125,2,103,2019-07-07,3.57,1,185 +16599472,Lavish studio in Downtown Manhattan,9599840,Danny,Manhattan,Financial District,40.70493,-74.01036,Entire home/apt,235,2,123,2019-07-02,4.05,1,235 +16601748,"Queen Room w/ Memory Foam, In-room TV and Rooftop",94522062,Christine,Manhattan,East Village,40.7229,-73.98476,Private room,67,1,6,2019-05-27,0.20,1,9 +16601801,Spacious One Bedroom in Heart of West Village,10075380,Mike,Manhattan,West Village,40.73233,-74.00329,Entire home/apt,232,5,5,2019-06-14,0.17,1,13 +16601841,Great for La Guardia airport guests.,109526714,Aleida,Queens,East Elmhurst,40.76224,-73.8766,Private room,40,1,128,2019-07-03,4.36,2,145 +16603017,Sophisticated Retreat in Spacious Manhattan Apt,23957491,Elka,Manhattan,Washington Heights,40.8568,-73.93162,Private room,96,1,87,2019-06-12,2.97,1,83 +16603730,Luxury High-Floor Oversized Studio w/ Park View,4494498,Micah,Manhattan,Harlem,40.80371,-73.94377,Entire home/apt,225,3,0,,,1,0 +16603823,"Luxury bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80288,-73.96396,Private room,120,5,11,2019-05-23,0.76,2,134 +16604023,Rustic Modern Brooklyn Apartment,14577537,Tom,Brooklyn,Bedford-Stuyvesant,40.6915,-73.92881,Entire home/apt,120,30,77,2019-04-27,2.53,2,0 +16604112,Cozy Private room in the heart of Jamaica New york,109527682,Stella,Queens,Jamaica,40.71107,-73.78429,Private room,72,1,10,2019-06-30,0.54,1,175 +16604568,Park Slope. The best community in Brookyn NY.,41878998,Ruth,Brooklyn,South Slope,40.66812,-73.98595,Private room,90,3,3,2019-04-08,0.40,1,5 +16604913,Affordable cozy room rental in Flushing,23120620,Jackie,Queens,Flushing,40.7383,-73.80867,Private room,65,1,9,2019-05-18,0.72,5,365 +16607054,Huge Bedroom in Historic Harlem!,89715765,Michael,Manhattan,Harlem,40.81378,-73.95152,Private room,66,3,0,,,1,0 +16608718,"Largest room, warehouse loft, prime Williamsburg",17371775,Octavio,Brooklyn,Williamsburg,40.71947,-73.96255,Private room,41,10,3,2018-08-17,0.10,1,0 +16612424,Artstuy,4878363,Jessie,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94478,Private room,30,1,13,2019-04-21,0.45,2,268 +16613219,Landmarked 1899 Brownstone with private garden,603592,Brad,Brooklyn,Bedford-Stuyvesant,40.68392,-73.93123,Entire home/apt,175,4,14,2017-09-05,0.50,1,0 +16613394,"Cozy 1Br Apartment, Entire Place.",109653516,Joseph,Queens,Sunnyside,40.74201,-73.92096,Entire home/apt,100,2,91,2019-06-16,3.08,1,65 +16613506,Upscale King Bedroom Great Neighborhood in NYC,80601038,Shelley,Queens,Forest Hills,40.72645,-73.84079,Private room,100,1,34,2019-06-23,1.38,2,87 +16613747,"Sunny, Clean, Nice bedroom available in Bushwick",29096,Jonathan,Brooklyn,Bushwick,40.70677,-73.92043,Private room,65,3,91,2019-06-23,3.50,1,294 +16613993,COZY Bedroom in the heart of the Lower East Side!,109660521,Isaac,Manhattan,Civic Center,40.71391,-74.00489,Private room,70,1,11,2017-11-05,0.45,1,0 +16614389,Newly Renovated Bedroom in Bushwick/Ridgewood,18151522,Venice,Queens,Ridgewood,40.70538,-73.91322,Private room,73,1,0,,,1,0 +16614713,Brooklyn Refuge-Private Bedroom w/ Sitting Room,109667882,Hildegaard,Brooklyn,South Slope,40.66489,-73.9805,Private room,80,2,35,2019-06-23,1.16,1,88 +16616320,Trendy Artist Loft in Bushwick/East W'Burg,3932715,Jason,Brooklyn,Williamsburg,40.70267,-73.9364,Entire home/apt,160,4,68,2019-06-03,2.26,1,16 +16616410,Vacation in Astoria,62716661,Nelli,Queens,Astoria,40.7566,-73.91974,Private room,69,1,0,,,1,0 +16616522,Large Apartment near Central Park up to 4 people!,61090067,Justyna,Manhattan,East Harlem,40.79465,-73.94021,Entire home/apt,180,5,33,2019-07-01,1.18,1,35 +16616853,Brooklyn Brownstone - Chic Garden Apartment,16392320,Oscar,Brooklyn,Bedford-Stuyvesant,40.67864,-73.9444,Entire home/apt,199,2,122,2019-06-16,4.06,1,70 +16617217,LUXURY Flatiron Highrise 1 BR/1 BA,107883536,Tommy,Manhattan,Midtown,40.74473,-73.99005,Entire home/apt,159,2,0,,,1,0 +16617542,Peaceful Bedroom with private balcony in LES,19053159,Nikki,Manhattan,Lower East Side,40.71875,-73.98349,Private room,60,2,2,2018-03-21,0.12,1,0 +16617640,The Paris Room. Énorme! Private ROOF access!,47027510,Tucker,Brooklyn,Bushwick,40.69102,-73.90526,Private room,49,2,38,2019-06-22,2.00,1,9 +16617893,Modern Loft Style Apt in trendy Brooklyn,6562818,Salvatore,Brooklyn,Greenpoint,40.73693,-73.95507,Entire home/apt,94,3,28,2019-05-05,0.93,1,11 +16617969,"Geek-Chic Full Apt in Sugar Hill, Manhattan!",7005192,James,Manhattan,Harlem,40.83088,-73.945,Entire home/apt,77,47,5,2018-10-12,0.18,1,188 +16618049,"Sunny Fun Bushwick BR w/Yard, ~175ft to Subway!",40883799,Amos,Brooklyn,Bushwick,40.70476,-73.92195,Private room,56,1,69,2019-06-23,2.35,3,87 +16618113,Private Room in 2BR in Hip East Williamsburg,2887101,Kerry,Brooklyn,Williamsburg,40.70762,-73.94221,Private room,47,3,2,2017-01-17,0.07,1,0 +16619241,"Cozy Studio Apartment in Queens, NY",25355233,Roseann,Queens,Springfield Gardens,40.68132,-73.75403,Private room,89,1,220,2019-06-28,7.23,1,319 +16619861,"Cozy Space-Sunny Studio- Flatbush, Brooklyn",109729836,Cindy,Brooklyn,Flatlands,40.62562,-73.94255,Entire home/apt,95,3,4,2018-04-16,0.18,1,0 +16620082,"Huge room, sunlight, plants, books",109733032,Ian,Brooklyn,Williamsburg,40.70436,-73.94123,Private room,60,2,14,2019-06-29,0.58,1,3 +16620235,"Full floor, Newly renovated, Brooklyn brownstone",109734523,Todd & Ashta,Brooklyn,Bedford-Stuyvesant,40.68519,-73.94176,Entire home/apt,125,2,111,2019-06-24,3.67,1,255 +16620607,Spacious and Modern 2 Bedroom Apartment,109725962,Erika,Brooklyn,Bushwick,40.68994,-73.91556,Entire home/apt,11,2,113,2019-06-22,3.86,1,261 +16625310,Lovely BedStuy apartment w/ young professionals.,6025804,Vero,Brooklyn,Bedford-Stuyvesant,40.6849,-73.9289,Private room,29,1,0,,,1,0 +16627548,"""Desirable Deal on The Park""",2300134,J,Manhattan,Harlem,40.79798,-73.95052,Private room,80,1,139,2019-06-24,4.59,2,0 +16627834,"☼ Sunny, Charming Brooklyn Apt - Next to Train ☼",2970413,Milan,Brooklyn,Crown Heights,40.6714,-73.95547,Private room,75,2,75,2019-06-25,2.56,1,275 +16628617,Entire 1-bed home in midtown west,46068130,Laura,Manhattan,Hell's Kitchen,40.76585,-73.98507,Entire home/apt,175,3,15,2017-07-27,0.57,2,0 +16629299,"""Oasis on The Park""",2300134,J,Manhattan,East Harlem,40.79656,-73.94818,Private room,85,1,148,2019-06-23,4.96,2,46 +16629401,"Cozy Studio Apt, 1 train stop from Manhattan",107471514,Carla,Brooklyn,Downtown Brooklyn,40.69467,-73.98339,Entire home/apt,123,7,0,,,1,0 +16630483,"SPACIOUS, trendy Flatiron Apt-Traveler's Delight!",107459717,Matt,Manhattan,Kips Bay,40.73945,-73.98273,Entire home/apt,144,2,2,2018-12-16,0.08,1,0 +16630594,Private room with private entrance in Greenpoint!,51024366,Marie,Brooklyn,Greenpoint,40.73824,-73.9537,Private room,99,2,6,2019-05-18,0.27,1,364 +16634357,Huge 2 Bed Apt with Private Bathrooms in UES!,109886922,Michael,Manhattan,Upper East Side,40.77486,-73.95296,Entire home/apt,899,30,6,2018-05-18,0.23,1,89 +16634459,Cozy Shared Apartment!,109162710,Brandon,Manhattan,Harlem,40.81367,-73.93809,Private room,141,1,41,2019-05-27,1.61,1,334 +16634534,3A. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80715,-73.93834,Private room,50,1,98,2019-04-15,3.25,10,350 +16634642,Room in Greenpoint,15225114,Maren,Brooklyn,Greenpoint,40.73362,-73.95983,Private room,75,2,0,,,1,0 +16636214,Private basement bedroom with queen bed,109908957,Natalia & Gustavo,Brooklyn,East Flatbush,40.64798,-73.94492,Private room,50,7,7,2019-05-18,0.23,2,348 +16637954,Friendly place for most suitable for Bangladeshis,109931171,Manzoor,Queens,Richmond Hill,40.70162,-73.82349,Private room,70,1,0,,,1,0 +16640455,Beautiful Apt in Brooklyn w/ Private roof,27102828,Monica,Brooklyn,Bedford-Stuyvesant,40.68693,-73.94579,Entire home/apt,50,3,0,,,1,0 +16644223,Private Bedroom w/ En Suite in Shared Apartment,7921167,Justin,Brooklyn,Park Slope,40.67937,-73.98126,Private room,40,7,0,,,1,0 +16644599,Beige Room in Rego Park,48866061,Iso,Queens,Rego Park,40.72755,-73.86199,Private room,35,1,131,2019-06-06,4.33,1,294 +16646872,Charming 2BR with Backyard (15 Mins to Manhattan!),107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68403,-73.93088,Entire home/apt,169,2,54,2019-06-21,1.92,3,259 +16647489,"Bohemian BK Pad with prvt bkyd, great for toddlers",6865666,Ana,Brooklyn,Williamsburg,40.71151,-73.95142,Entire home/apt,78,10,0,,,1,0 +16648338,"Airy, Open South Williamsburg Apartment",110026778,Sanja,Brooklyn,Williamsburg,40.70981,-73.96781,Private room,119,4,18,2018-10-29,0.59,1,0 +16649739,Renovated 2 Bedroom Apartment,110049608,Virginia & Steve,Brooklyn,Midwood,40.61535,-73.95351,Entire home/apt,115,2,80,2019-06-22,2.90,1,68 +16649773,2 ROOMS: Bedroom & Study + Priv. Bath - CP North,110050850,Cecil,Manhattan,Harlem,40.8012,-73.95589,Private room,115,2,27,2019-06-05,0.94,1,363 +16650612,"CHIC, UPSCALE STUDIO-MIDTOWN, PERFECT LOCATION!",24805629,Joi,Manhattan,Hell's Kitchen,40.76486,-73.98682,Entire home/apt,200,2,6,2017-08-27,0.20,1,0 +16651348,1 bedroom apt with garden in Red Hook Brooklyn,6074181,Terumi,Brooklyn,Red Hook,40.67575,-74.01183,Entire home/apt,93,2,37,2019-06-21,1.32,1,222 +16651519,"Newly renovated 1BR apartment, 25 min to Manhattan",3019912,Michael And Meredith,Brooklyn,Sunset Park,40.65944,-73.98898,Entire home/apt,160,30,36,2019-06-10,1.21,1,53 +16651879,Minimalist Vegan Room in Columbus Circle,31892037,Harrison,Manhattan,Hell's Kitchen,40.76636,-73.98574,Private room,100,1,1,2019-05-05,0.46,1,156 +16652059,Cosy private room in modern sunny Williamsburg apt,27267477,Basile,Brooklyn,Williamsburg,40.70987,-73.9472,Private room,65,4,10,2018-10-13,0.41,1,0 +16657247,1A. Private Rm in guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80545,-73.93838,Private room,64,1,103,2019-07-02,3.40,10,364 +16659292,Spacious 1 bedroom apt in Bkln w/ outdoor space,17085442,Albert,Brooklyn,Fort Greene,40.68891,-73.97284,Entire home/apt,95,1,85,2019-06-25,2.93,1,0 +16659337,Spacious apartment in delightful Cobble Hill,9870527,Josh,Brooklyn,Boerum Hill,40.6862,-73.98906,Entire home/apt,220,2,17,2019-06-19,0.66,1,167 +16662770,Lovely Bedroom in Beautiful Brooklyn Apartment!,42682752,Katharine,Brooklyn,Cobble Hill,40.68844,-73.99142,Private room,70,2,38,2019-05-26,1.33,3,0 +16662964,"Cute 1 Bdrm Apt, 10 minutes from Manhattan",23820907,Hifza,Queens,Long Island City,40.75699,-73.93499,Entire home/apt,125,5,0,,,1,0 +16663520,Brooklyn's Bed & Breakfast (3 BR),110198200,Athelstan,Brooklyn,Prospect-Lefferts Gardens,40.66034,-73.95981,Entire home/apt,225,2,64,2019-07-03,2.24,2,337 +16663731,Private bedroom in Williamsburg industrial loft,2378621,Julie,Brooklyn,Williamsburg,40.70431,-73.93273,Private room,54,12,0,,,1,0 +16664045,ONLY 4.4 MILES TO MIDTOWN MANHATTAN,54438083,Charles,Queens,Maspeth,40.72344,-73.91052,Entire home/apt,184,2,51,2019-06-22,1.72,3,300 +16664669,Brooklyn's Bed & Breakfast (2 BR),110198200,Athelstan,Brooklyn,Prospect-Lefferts Gardens,40.66077,-73.96004,Entire home/apt,175,4,6,2018-10-09,0.23,2,337 +16665181,Romantic hide out in brooklyn,110218367,Amy,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92981,Private room,69,2,90,2019-06-30,3.10,1,106 +16670882,Brooklyn 1 bedroom near it all,12096316,Kris,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94938,Entire home/apt,175,7,4,2018-06-14,0.13,1,89 +16673329,Cozy brownstone studio in the heart of Harlem!,16400950,Farrah,Manhattan,East Harlem,40.80674,-73.94146,Private room,91,1,4,2017-05-31,0.14,1,0 +16673377,Stunning bedroom in the best neighborhood of NYC,13001035,Montserrat,Manhattan,Midtown,40.756,-73.97078,Private room,122,3,19,2018-11-24,0.67,1,0 +16673626,Modern 1 bed/duplex southslope Brooklyn,17753630,Erin,Brooklyn,Sunset Park,40.65948,-73.99243,Entire home/apt,150,7,0,,,1,0 +16673954,Charming West Village Brownstone w/Private Terrace,10437339,Ro,Manhattan,West Village,40.73898,-74.00415,Entire home/apt,250,5,10,2019-06-13,0.37,2,198 +16674233,Huge Comfy Room,8254680,Juliette,Brooklyn,Bushwick,40.70163,-73.9227,Private room,49,2,0,,,1,0 +16674839,Cozy East Village Apartment Room.,110326109,Jenna,Manhattan,East Village,40.72423,-73.97885,Private room,75,1,0,,,1,0 +16675507,Penthouse w/ private Manhattan skyline view deck!,56735326,Christi,Brooklyn,Greenpoint,40.72347,-73.94039,Entire home/apt,125,3,4,2017-07-05,0.13,1,0 +16675965,Large and cosy apartment - Upper east!,13257873,Maria,Manhattan,Upper East Side,40.77672,-73.95559,Private room,120,3,14,2019-06-16,0.53,1,36 +16677170,Sunny Chelsea Oasis,59163247,Eric,Manhattan,Chelsea,40.74503,-73.99922,Entire home/apt,233,2,92,2019-06-27,3.08,1,219 +16677256,Renovated 1BR Penthouse Oasis In Brownstone,110358650,Rocco,Manhattan,Harlem,40.80767,-73.95127,Entire home/apt,220,3,56,2019-06-07,2.01,1,256 +16677358,"Sunny room in Sunset Park, Brooklyn",25311040,Keisuke,Brooklyn,Sunset Park,40.64364,-74.01206,Private room,32,7,0,,,1,0 +16677866,Nice Private Studio Apartment,107296819,Alexandra,Manhattan,East Harlem,40.79747,-73.93559,Entire home/apt,105,1,124,2019-06-24,4.18,3,0 +16678104,"Wyndham Midtown: E 45th St., NYC",3843799,BNB-Resorts By RC,Manhattan,Midtown,40.75382,-73.97192,Entire home/apt,165,3,4,2017-11-07,0.18,1,0 +16678888,Peaceful Spacious 1 Bdrm Apt in Carroll Gardens,1380312,Shari,Brooklyn,Carroll Gardens,40.67735,-73.99706,Entire home/apt,175,7,17,2019-03-24,0.58,1,0 +16685971,Great 1 bedroom Apartment,5855892,Vasili,Manhattan,Washington Heights,40.8531,-73.93872,Entire home/apt,75,2,0,,,1,0 +16686651,Two Charming Bedrooms in the Lower East Side,53099839,Avery,Manhattan,Lower East Side,40.71919,-73.99208,Private room,200,1,0,,,1,0 +16687158,Large Private Apartment in Clinton Hill,68302204,Samuel,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95751,Private room,100,5,4,2018-04-22,0.14,1,0 +16687716,Gorgeous Large Room near LGA,14730722,Omar £ Jacqueline,Queens,East Elmhurst,40.76441,-73.88943,Private room,90,2,9,2018-09-02,0.34,1,0 +16688119,Stunning Brooklyn Condo,31429300,Cindy,Brooklyn,Greenpoint,40.73677,-73.95418,Entire home/apt,109,90,1,2017-04-10,0.04,1,35 +16688892,East Williamsburg Cozy Studio,110478816,Robert,Brooklyn,Williamsburg,40.71237,-73.93899,Entire home/apt,95,2,13,2018-05-16,0.43,1,0 +16689593,Private room in Williamsburg 15 mins from city,2600209,Ed,Brooklyn,Williamsburg,40.71708,-73.94278,Private room,60,7,0,,,1,0 +16690484,Fort Greene bungalow,43272616,Emi,Brooklyn,Fort Greene,40.69701,-73.97524,Private room,75,2,0,,,2,0 +16690627,"Beautiful urban sanctuary in Park Slope, Brooklyn",6057126,Jac,Brooklyn,Park Slope,40.68057,-73.97722,Entire home/apt,175,30,3,2019-05-18,0.87,1,321 +16690832,1 private room in a spacious+quiet Park Slope apt,110522157,Noam,Brooklyn,Park Slope,40.66825,-73.98432,Private room,46,3,4,2018-12-31,0.27,1,72 +16691242,1 bedroom available in heart of east village,69776478,Emily,Manhattan,East Village,40.72787,-73.9792,Private room,50,7,0,,,1,0 +16691826,Cozy and Cute 1 bdrm in perfect Midtown location,60539147,Kate,Manhattan,Hell's Kitchen,40.76468,-73.9868,Entire home/apt,98,30,4,2018-02-02,0.14,1,0 +16692402,2BEDS or DOUBLE BED (KINGSIZE) / PRIVATE BATHROOM,32107612,Eugon And David,Brooklyn,Bushwick,40.68886,-73.91906,Private room,95,5,65,2019-06-29,2.18,1,60 +16693621,Woodside private room for visitors!,49224450,Dongho,Queens,Woodside,40.74271,-73.9046,Private room,34,3,1,2017-01-18,0.03,1,0 +16693953,EXQUISITE TRANQUIL QUIET ROOM IN NYC,5281237,Jonathan,Queens,Astoria,40.77255,-73.93023,Private room,79,3,26,2019-06-22,0.93,2,144 +16697657,"NYMT60-1 LUXURY! Studio,Cozy,Gym,doorman st-6",3507099,MyCity,Manhattan,Hell's Kitchen,40.76242,-73.98813,Entire home/apt,130,30,6,2019-06-17,0.38,2,335 +16701051,Tribeca one bedroom apt - jan 13-30th,110629411,T,Manhattan,Chinatown,40.71471,-73.9993,Entire home/apt,100,7,0,,,1,0 +16701087,Your stay at NYC Artist Home,54548232,Anna,Manhattan,Harlem,40.82621,-73.95104,Private room,75,2,80,2018-12-03,2.69,2,305 +16703749,Clean and Cozy room in Central Manhattan,30656279,Jill,Manhattan,Hell's Kitchen,40.76738,-73.98565,Private room,61,30,2,2018-09-10,0.07,4,121 +16704118,Prime location 15-20mins to manhattan.nearall.C.,59974573,Taka,Queens,Elmhurst,40.73734,-73.87215,Entire home/apt,99,4,50,2019-06-25,1.85,2,60 +16706521,Entire studio Apartment in New York City.,110686573,Roger,Manhattan,West Village,40.72999,-74.00475,Entire home/apt,110,5,9,2018-05-20,0.39,1,0 +16706758,Private midtown Apt w/ shared bath,10585694,Roy,Manhattan,Midtown,40.75369,-73.96679,Private room,99,2,21,2019-03-18,0.70,1,3 +16706875,Spacious and cozy room 25minutes from Manhattan,1938828,Shay,Brooklyn,East Flatbush,40.64836,-73.94547,Private room,42,13,22,2019-05-25,0.75,3,267 +16708143,Bright room with full size bed.,52059111,Daniel,Brooklyn,Prospect-Lefferts Gardens,40.65961,-73.9592,Private room,50,1,1,2017-03-06,0.04,1,0 +16708692,2 Bedroom Apt.-30 secs from C train,110708643,Stephen,Brooklyn,Bedford-Stuyvesant,40.67983,-73.92121,Entire home/apt,82,2,80,2019-05-26,2.76,1,28 +16709467,2 Bedroom Loft in Clinton Hill,4359511,Chris,Brooklyn,Bedford-Stuyvesant,40.69089,-73.95854,Entire home/apt,206,2,13,2019-07-02,1.25,1,116 +16709795,"Beautiful Upper East Side 1 BR Apt, Charming!",19466874,Sheri,Manhattan,Upper East Side,40.77327,-73.9547,Entire home/apt,120,3,0,,,1,0 +16710016,Newly renovated 1 bdrm right by trains. Entire apt,2431149,Delphina,Brooklyn,Crown Heights,40.67024,-73.93406,Entire home/apt,69,1,7,2017-04-30,0.23,2,0 +16710300,"Charming, Authentic Village Walkup",53277135,Cody,Manhattan,West Village,40.73194,-74.00254,Entire home/apt,164,3,20,2019-06-09,0.68,1,0 +16711476,Spacious 1 Bedroom in Washington Heights,110737214,Lai-Lin,Manhattan,Washington Heights,40.83537,-73.93974,Entire home/apt,95,3,4,2017-04-02,0.14,1,0 +16712302,"NYMT06-1 LUXURY! one bedroom,Gym,doorman Ap-A",3507099,MyCity,Manhattan,Hell's Kitchen,40.76591,-73.99016,Entire home/apt,160,45,5,2018-12-06,0.18,2,311 +16716676,1.5 Bedroom in Fantastic Fort Greene!,110786804,Sara,Brooklyn,Fort Greene,40.68586,-73.97269,Entire home/apt,150,5,12,2019-04-11,0.40,1,26 +16718498,"Huge Cosy Room in E.Williamsburg,Rooftop &Backyard",3989837,Nadav,Brooklyn,Williamsburg,40.70867,-73.94061,Private room,75,3,59,2019-06-28,1.95,2,77 +16719568,Sunny 1 bedroom in the heart of Greenpoint,7857773,Caroline,Brooklyn,Greenpoint,40.72411,-73.94182,Entire home/apt,130,2,21,2018-05-25,0.94,1,0 +16720039,Very Chic and SUPER Convenient South Harlem Apt,3676370,Patrice,Manhattan,Harlem,40.80283,-73.95569,Entire home/apt,95,2,4,2017-12-30,0.20,1,0 +16720574,"Gramercy Heaven, right off Park Ave",110825940,Casey,Manhattan,Midtown,40.74489,-73.98382,Entire home/apt,199,2,0,,,1,0 +16720662,Beautiful Brooklyn 3-Bedroom Duplex,107947878,Michael,Brooklyn,Bedford-Stuyvesant,40.67948,-73.90822,Entire home/apt,150,2,112,2019-07-07,3.88,2,195 +16721040,Beautiful Fort Greene triplex with Yard,3915722,Bettina,Brooklyn,Fort Greene,40.6864,-73.96882,Entire home/apt,550,3,1,2019-04-29,0.42,1,15 +16721137,Spacious Duplex Apartment in South Williamsburg,10966450,Alex,Brooklyn,Williamsburg,40.71285,-73.96477,Entire home/apt,250,4,42,2019-06-17,1.41,1,126 +16721299,Williamsburg Escape - Lorimier L,1302317,Vanessa,Brooklyn,Williamsburg,40.71246,-73.95308,Private room,150,2,0,,,1,0 +16722564,12 East 86th St full furnished,53179388,Raymond,Manhattan,Upper East Side,40.78046,-73.96047,Entire home/apt,200,30,0,,,10,164 +16722762,Cozy one bedroom apartment,99097436,Miles,Manhattan,Harlem,40.82777,-73.9407,Entire home/apt,100,1,145,2019-06-30,4.81,1,9 +16723682,"Cozy, sun-splashed room in two-floor apartment",100595030,Michael,Brooklyn,Williamsburg,40.71483,-73.94935,Private room,68,30,13,2019-06-30,0.47,2,64 +16725326,"UWS Historic Townhouse: Renovated Kit. & Bath, 5A",106837455,Lisa,Manhattan,Upper West Side,40.78339,-73.98168,Entire home/apt,140,30,2,2017-12-15,0.07,8,125 +16725576,"Room with the balcony, fits 3!",68762417,Simon,Manhattan,East Harlem,40.79501,-73.94448,Private room,99,1,109,2019-07-05,3.61,4,168 +16725615,Quiet comfortable near Times Sq.,38599544,Maya,Manhattan,Hell's Kitchen,40.7586,-73.98974,Private room,97,2,144,2019-07-01,5.11,1,73 +16725879,Casa Soho 2 Bedroom 2 bath,6437545,Michael,Manhattan,SoHo,40.72182,-74.00033,Entire home/apt,500,3,0,,,1,6 +16725924,Light up room close to Central Park,68762417,Simon,Manhattan,East Harlem,40.79453,-73.94543,Private room,75,1,110,2019-06-16,3.65,4,34 +16726217,1 Bedroom - Beautiful and Cozy Brownstone in Bklyn,110884492,Julia,Brooklyn,Crown Heights,40.67676,-73.94513,Entire home/apt,150,3,25,2019-02-12,0.91,1,64 +16730833,Underground Palace,44018877,Yves,Brooklyn,East Flatbush,40.63876,-73.95073,Entire home/apt,80,2,72,2019-06-13,4.07,2,337 +16731782,"Private, Windsor Terrace Studio",1384388,Georgia And Kevin,Brooklyn,Windsor Terrace,40.65552,-73.97493,Entire home/apt,98,1,122,2019-06-24,4.13,1,127 +16732266,High Ceilings steps to Barclay Cntr,1588656,Rebekah,Brooklyn,Park Slope,40.67697,-73.97406,Entire home/apt,165,1,108,2019-07-01,3.62,2,130 +16734212,"Bright, Spacious, Clean Loft Space with Balcony!",19001553,Gina,Brooklyn,Bedford-Stuyvesant,40.68949,-73.9557,Entire home/apt,125,3,9,2018-01-01,0.30,1,0 +16734233,FAB 1BD Sunnyside Gardens Apt with Patio,5665728,Ryan,Queens,Sunnyside,40.74801,-73.91777,Entire home/apt,300,2,0,,,1,0 +16735133,Charming and Artsy LES 1-Bedroom,182670,Paul,Manhattan,Lower East Side,40.71789,-73.98308,Entire home/apt,124,28,12,2019-04-22,0.43,1,38 +16735801,Twin bed-Close to Columbia U & Central Park,64471880,Jaleh,Manhattan,Harlem,40.80172,-73.95538,Private room,100,1,226,2019-07-03,7.75,2,32 +16735848,"TRAIN NEAR, 10JFK, 30LGA CuteBedr in3Bed,Manhattan",110900012,Triny,Queens,Richmond Hill,40.68979,-73.82974,Private room,33,1,16,2019-05-20,0.53,1,361 +16736830,Modern & classic 3-BR apt in private brownstone,4547658,Christine,Brooklyn,Park Slope,40.67451,-73.97501,Entire home/apt,275,2,119,2019-07-05,4.08,1,65 +16737042,Modern Apartment...Great Location,8591819,Raja,Queens,Astoria,40.76746,-73.92781,Private room,60,7,0,,,1,0 +16738648,맨하튼 소호 거리 주변 2인실,24626134,Eunjin,Manhattan,Midtown,40.75329,-73.9888,Private room,30,2,1,2017-01-23,0.03,1,0 +16739146,Practical Modern 2 Bedroom Apartment on Subway,2988712,Sasha,Bronx,Fordham,40.85318,-73.90204,Entire home/apt,71,90,10,2019-03-28,0.41,7,310 +16739891,Private Studio Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80842,-73.95568,Private room,158,1,132,2019-06-14,4.37,5,238 +16740081,Spacious & Stylish Top Floor 1BR (Whole Apt),47716416,Kimberly,Manhattan,Chinatown,40.71423,-73.99442,Entire home/apt,100,1,65,2019-06-23,2.16,1,1 +16740218,Cozy Double Bedroom in Williamsburg,31867503,Ioanna,Brooklyn,Williamsburg,40.71064,-73.95919,Private room,70,1,2,2017-01-29,0.07,1,0 +16740779,Room in East Williamsburg,65061161,Dustin,Brooklyn,Williamsburg,40.70921,-73.94144,Private room,77,1,2,2017-03-15,0.07,1,0 +16741278,Private Room in Central Manhattan,64156488,Abbi,Manhattan,Flatiron District,40.74147,-73.98577,Private room,90,2,3,2017-02-08,0.10,1,0 +16741935,Financial District Luxury Experience,75064270,Audrey,Manhattan,Financial District,40.70932,-74.00536,Private room,210,5,2,2018-06-09,0.11,2,365 +16749005,Oasis Retreat Bed-Stuy Brooklyn,110062117,Steve,Brooklyn,Bedford-Stuyvesant,40.68039,-73.94302,Entire home/apt,250,3,57,2019-06-30,2.09,1,258 +16749235,Adorable Lower East Side room with Patio,5133087,Charlotte,Manhattan,Chinatown,40.71723,-73.99162,Private room,175,1,0,,,1,0 +16751768,Brooklyn Pied-à-Terre 2 Bed 31 day minimum,32124747,Julian,Brooklyn,Bushwick,40.68637,-73.91133,Entire home/apt,116,31,99,2019-04-30,3.33,1,295 +16751838,"Park Avenue South, Svcd Studio Apt",22541573,Ken,Manhattan,Murray Hill,40.74811,-73.97868,Entire home/apt,190,30,1,2019-05-30,0.73,87,365 +16751874,COZY PRIVATE APARTMENT-HOUSE W/ EXTRA MEDIA ROOM,111134635,Vilena,Queens,Jamaica,40.66893,-73.77144,Private room,65,3,1,2017-05-13,0.04,1,362 +16753723,"Centrally Located, Large, Clean, Private Bedroom",5944004,Donna,Manhattan,West Village,40.73702,-73.99739,Private room,68,1,0,,,1,0 +16755891,"Hip, Vibrant, COLORFUL Downtown Manhattan 1 Bed",21126633,Evan,Manhattan,Chinatown,40.71489,-73.99459,Entire home/apt,200,2,45,2019-07-03,1.64,1,159 +16755920,HUGE Master Bedroom in Remodeled Brownstone.,24140532,Josh,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94525,Private room,55,3,2,2018-09-06,0.17,4,0 +16756027,NYC Sunny Private Flat In Heart of it All.,8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95669,Private room,89,2,35,2019-06-03,1.35,4,139 +16756480,Modern 2 Bed 2 Bath with private roof deck,1691656,Adrian,Brooklyn,Prospect Heights,40.68237,-73.97286,Entire home/apt,125,3,6,2019-01-01,0.47,1,0 +16756678,"Fully Furnished 4bedroom/2bathroom In Brooklyn, NY",50282911,Jeanne,Brooklyn,Bushwick,40.69455,-73.91118,Entire home/apt,197,30,1,2018-02-20,0.06,1,342 +16757281,"Female, Shared, Cozy, Huge Harlem Studio Apt",25137968,Alanah,Manhattan,Harlem,40.81335,-73.95616,Shared room,50,1,36,2019-06-30,1.32,1,23 +16757480,Cozy Brooklyn Apartment,111208718,Morgan,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9326,Private room,37,1,1,2017-01-20,0.03,1,0 +16758426,"Charming & Modern, Comfortable & Efficient 1-BR",7265267,Louis,Manhattan,East Harlem,40.79345,-73.93977,Entire home/apt,189,3,29,2019-06-28,0.98,1,63 +16764130,Spacious Studio apt—1 Subway stop from Manhattan,41578662,Lucia,Bronx,Mott Haven,40.8115,-73.9258,Entire home/apt,80,7,0,,,2,0 +16766700,Quiet place to stay in Harlem,18451417,Jose,Manhattan,Harlem,40.82818,-73.9389,Private room,39,4,75,2019-06-19,2.52,1,52 +16766743,Large apartment by the park. Close to trains.,109859103,Tomek,Brooklyn,Flatbush,40.65229,-73.9603,Entire home/apt,123,1,0,,,1,0 +16766855,Manhattan - 15 mins to Midtown!,111298791,Nidia,Manhattan,Washington Heights,40.84941,-73.93432,Private room,60,3,51,2019-06-03,1.78,1,0 +16767194,Room in beautiful duplex brownstone with garden,18654847,Katherine,Brooklyn,Crown Heights,40.67089,-73.95473,Private room,74,3,0,,,1,0 +16768336,Private Room in Brooklyn (E.Williamsburg),74896042,Agona,Brooklyn,Williamsburg,40.70811,-73.9326,Private room,45,4,3,2017-06-04,0.12,1,0 +16768665,Huge Apartment for Experiencing New York,111319972,Clayton,Manhattan,Harlem,40.82851,-73.94054,Private room,175,1,0,,,1,0 +16769229,"20 min to Manhattan, Spacious 2BD in Brooklyn, NYC",111327104,Ziggy & Rome,Brooklyn,Bushwick,40.69692,-73.90832,Entire home/apt,135,4,76,2019-06-26,2.61,1,76 +16770311,Spacious Artist Bedroom — 30 Min to Manhattan!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67692,-73.91541,Private room,30,3,16,2019-06-08,0.53,6,57 +16771876,Delight in Your Home Away from Home in NYC!,87795401,Paul,Bronx,Soundview,40.82987,-73.86608,Entire home/apt,60,2,105,2019-06-11,3.61,1,131 +16772578,Cozy sunny NYC/BK view,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67356,-73.9321,Private room,52,2,101,2019-06-24,3.40,4,329 +16775958,The Happy Hideaway,4232532,Jenn,Brooklyn,South Slope,40.6618,-73.98234,Entire home/apt,144,2,12,2019-01-01,0.90,2,0 +16776959,1 Bedroom in Great Brooklyn Neighborhood,39978070,Robert,Brooklyn,Bay Ridge,40.63295,-74.03028,Entire home/apt,75,60,1,2018-08-20,0.09,1,358 +16777456,Large Studio New York-Bronx comfortable,24546033,Pietro,Bronx,Morris Park,40.84906,-73.85418,Private room,73,3,14,2019-06-17,0.61,1,138 +16777938,Clean & Large room hearth of NYC Midtown!!,57657144,Tomas,Manhattan,Midtown,40.75481,-73.96982,Private room,119,9,53,2019-05-12,1.79,1,15 +16778711,"Luxurious & Modern, Private Deck + Great location",2938381,Lee,Brooklyn,Prospect Heights,40.68018,-73.96422,Entire home/apt,170,2,154,2019-06-21,5.20,1,235 +16778903,Private bedroom,43601551,Anamaria & Ricardo,Manhattan,East Harlem,40.78805,-73.94924,Private room,135,6,2,2018-01-01,0.11,2,0 +16778904,"Quiet cozy apartment, air-conditioned room",111433024,Danielle,Manhattan,Washington Heights,40.84353,-73.94201,Private room,25,3,34,2019-05-31,1.46,1,139 +16779548,Empire Room in Spacious Apartment,24283455,Igam,Brooklyn,Gravesend,40.58906,-73.98245,Private room,35,3,52,2019-06-09,1.78,2,0 +16779705,Cozy West Village Studio,11699846,Natasha,Manhattan,Greenwich Village,40.73239,-73.9996,Entire home/apt,103,2,15,2018-10-28,0.57,1,0 +16780398,Sunny private room in Homecrest Ave Brooklyn,10633027,Sam,Brooklyn,Sheepshead Bay,40.59338,-73.9579,Private room,50,2,82,2019-06-23,2.79,3,35 +16780469,Beautiful Manhattan apt. blocks from Central Park,6263861,Monica,Manhattan,Harlem,40.80249,-73.95622,Private room,55,5,2,2019-04-25,0.16,1,24 +16781516,Large NYC room billionaires row 5 min CentralPark!,22101365,Natalie,Manhattan,Upper East Side,40.76404,-73.96547,Private room,99,3,79,2019-06-23,2.75,1,107 +16781601,Room 14,74633496,Justine,Bronx,University Heights,40.8562,-73.90899,Private room,43,3,36,2019-06-10,1.26,5,365 +16783144,Wonderful island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76335,-73.94937,Private room,75,1,99,2019-06-06,3.47,2,156 +16783828,GORGEOUS Very Large Room next to Central Park!,44688209,Mike,Manhattan,Upper East Side,40.76281,-73.96718,Private room,117,3,67,2019-06-29,2.26,1,99 +16784199,Sunny And Renovated Greenwich Village Apartment!,5042847,Davide,Manhattan,Greenwich Village,40.72851,-73.99985,Entire home/apt,195,3,9,2019-06-06,0.38,1,0 +16791336,Spacious Room in East Village Oasis,25505776,Michal,Manhattan,East Village,40.72931,-73.98258,Private room,100,6,5,2019-06-18,0.21,1,0 +16791809,Small Brooklyn Gem 25 Minutes Away from the City,1938828,Shay,Brooklyn,East Flatbush,40.65071,-73.94508,Private room,34,30,6,2017-08-15,0.20,3,280 +16792022,Sunny peaceful eclectic Williamsburg apartment,30724451,Arden,Brooklyn,Williamsburg,40.71609,-73.94791,Private room,44,3,7,2019-06-03,0.24,1,0 +16792642,Sunny 2 bdrm Park Slope Apt w/ Yard 3min to Subway,106168581,Jason,Brooklyn,South Slope,40.666,-73.9902,Entire home/apt,210,4,88,2019-07-04,4.41,1,20 +16793429,COZY at MOTT,3654281,Wen,Manhattan,Little Italy,40.71909,-73.99562,Entire home/apt,150,7,10,2019-01-07,0.44,1,43 +16793649,"Bright Modern Apt near Major Trains! A, C, J, Z, L",108249932,Yngrid And Jiovanni,Brooklyn,East New York,40.67449,-73.89053,Entire home/apt,84,3,65,2019-07-02,2.43,2,132 +16794070,1 Bedroom in a gorgeous brownstone in South Harlem,37482532,Adam,Manhattan,East Harlem,40.80964,-73.93964,Entire home/apt,69,2,2,2017-02-05,0.07,1,0 +16794287,Furnished 1BR on Prospect Park,13274612,Caleb,Brooklyn,Flatbush,40.65009,-73.96336,Private room,39,180,0,,,1,179 +16795470,Nice bedroom. Sleeps 2.,7181263,Kate,Manhattan,East Harlem,40.80055,-73.94101,Private room,88,1,99,2019-06-29,3.31,2,112 +16795503,Spacious Private Access Near Trains M - L and J,49100137,Juan,Brooklyn,Bushwick,40.69228,-73.91399,Private room,33,2,90,2019-07-07,3.10,1,308 +16795643,Private bedroom with queen bed and single bed.,7181263,Kate,Manhattan,East Harlem,40.79933,-73.94272,Private room,98,1,102,2019-07-06,3.43,2,81 +16796255,"Clean, Cozy Private Room with TV Uptown Manhattan",69862540,Rina,Manhattan,Washington Heights,40.83935,-73.94019,Private room,60,2,90,2019-07-02,3.11,3,14 +16797910,Brooklyn less than 30 min from manhattan (subway),111666924,Carl,Brooklyn,Crown Heights,40.67219,-73.92168,Entire home/apt,75,3,72,2019-06-09,2.48,1,19 +16798165,Newly renovated and cozy 1-bedroom in Brooklyn,1653951,Mario,Brooklyn,Bay Ridge,40.63473,-74.02833,Entire home/apt,100,2,109,2019-06-23,3.67,1,216 +16798351,Beautiful East Village Studio,94669886,Nadine,Manhattan,East Village,40.72885,-73.98103,Entire home/apt,115,7,11,2018-08-21,0.39,1,0 +16802965,Modern Apt in Townhouse in Williamsburg prime!,25233493,Jaime,Brooklyn,Williamsburg,40.71286,-73.96084,Entire home/apt,200,5,31,2018-11-04,1.39,2,291 +16804336,"Michael's Cozy Studio Central Park, Subway 1,A B C",47062032,Michael,Manhattan,Morningside Heights,40.80432,-73.96694,Entire home/apt,130,2,56,2018-01-15,1.90,1,0 +16805050,!!!Living&Working. Beautiful Coliving on Flatbush,2092314,Valentin,Brooklyn,East Flatbush,40.64513,-73.9488,Shared room,28,30,3,2018-06-20,0.13,7,365 +16805065,Hey!!! Check out this apt. On our new link!!!,30434875,Richard,Manhattan,Chelsea,40.74814,-74.00372,Entire home/apt,230,1,27,2018-12-13,1.83,1,189 +16805103,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.76347,-73.9631,Entire home/apt,179,30,0,,,87,287 +16805446,Perfect Cobble Hill Apartment for Two,7786166,Kate,Brooklyn,Cobble Hill,40.68687,-73.99471,Entire home/apt,190,2,15,2019-06-22,0.53,1,162 +16805869,Windowside Orchard Street Room in Lower East Side!,16664377,D,Manhattan,Lower East Side,40.71863,-73.98958,Private room,100,1,66,2019-06-22,2.19,3,334 +16805921,Loft -- Master Bedroom w/ Ensuite in Heart of LES,6696691,Andrew,Manhattan,Lower East Side,40.71892,-73.98958,Private room,100,20,0,,,1,0 +16807028,Sunny Ditmas Park Carriage House (Events Listing),8111912,Jed,Brooklyn,Flatbush,40.64335,-73.96745,Entire home/apt,1000,1,1,2019-04-02,0.31,2,365 +16807550,Spacious room in North Williamsburg/Greenpoint,26420701,Helen,Brooklyn,Greenpoint,40.72601,-73.95502,Private room,55,2,1,2018-05-06,0.07,1,0 +16807749,Beautiful little bedroom + private living room,30529,Marianne,Brooklyn,Prospect Heights,40.67308,-73.96294,Private room,85,1,171,2019-06-23,5.85,2,215 +16808375,Private room in Brooklyn,4368043,Nika Nurkyz,Brooklyn,Sheepshead Bay,40.60738,-73.955,Private room,55,3,0,,,1,0 +16808464,"Large, Sunny Room in 2 Story 2 Bedroom Corner Unit",33403059,Joshua,Brooklyn,Bushwick,40.69749,-73.9336,Private room,50,9,0,,,3,0 +16810023,"5m walk to L, Great Location ❤️ Priv. Bath/Balcony",1699648,Benjamin,Brooklyn,Williamsburg,40.71842,-73.94467,Private room,95,5,66,2019-06-11,2.24,1,25 +16810808,Family friendly 2 bedroom apartment on Homecrest,10633027,Sam,Brooklyn,Sheepshead Bay,40.59425,-73.95922,Entire home/apt,139,2,41,2019-07-04,1.52,3,29 +16811150,Clinton hill paradise,47412121,Laura,Brooklyn,Clinton Hill,40.69559,-73.96998,Private room,100,7,1,2017-12-16,0.05,1,0 +16811199,Spacious 1 bdrm apt in amazing location,77812140,Peter,Queens,Ridgewood,40.70475,-73.91081,Entire home/apt,120,2,2,2017-05-21,0.08,1,0 +16811364,"Queen Sized Bed Townhouse Apartment, Near Subway",102482048,Susy,Brooklyn,Bushwick,40.6821,-73.90856,Private room,30,2,54,2019-06-14,1.87,4,179 +16813292,Stylish Private Room + Bath in the Heart of LES,1229568,Matt & Kathleen,Manhattan,Lower East Side,40.7219,-73.98717,Private room,174,2,100,2019-06-24,3.34,1,145 +16814205,Cozy Room Close to JFK!!,111841534,Malini,Queens,Jamaica,40.67949,-73.79841,Private room,53,1,392,2019-07-06,13.15,1,71 +16814382,Large Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.87035,-73.89335,Private room,79,3,86,2019-06-24,2.88,10,78 +16814385,"Modern, Cozy Room in Stunning Harlem Brownstone",72366612,Shaun,Manhattan,Harlem,40.81884,-73.94579,Private room,173,3,4,2017-05-22,0.15,1,87 +16814536,Prime location homestay in Brooklyn sunset park,30576651,Lun,Brooklyn,Sunset Park,40.63964,-74.01975,Private room,55,4,1,2017-01-30,0.03,1,0 +16814803,Cozy Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.86925,-73.89534,Private room,60,3,101,2019-06-23,3.43,10,83 +16814818,Cozy Bedroom in the Heart of Downtown Manhattan,111849930,Kaitlin,Manhattan,Lower East Side,40.72275,-73.98918,Private room,120,4,0,,,1,0 +16815519,"Sunny, Quiet Oasis w/ Elevator - Close to Subway!",10703290,Mike,Manhattan,Upper East Side,40.77328,-73.94982,Private room,130,3,7,2019-05-27,0.24,3,0 +16821077,Park Slope - Bright Spacious Sunny Room - Flexible,38607397,Isroel,Brooklyn,Windsor Terrace,40.65815,-73.9817,Private room,80,7,0,,,1,0 +16821898,Big bright cozy room to call home,111918887,Bianca,Brooklyn,Windsor Terrace,40.65559,-73.97797,Private room,50,30,5,2019-06-30,0.18,1,126 +16822398,!!!Co-Housing taken to the Next Level /Flatbush/2,2092314,Valentin,Brooklyn,East Flatbush,40.64471,-73.9495,Shared room,20,30,1,2018-08-10,0.09,7,365 +16823231,1BR Spacious Luxury Apartment in Williamsburg BK,2369654,Michael & Hanako,Brooklyn,Williamsburg,40.71778,-73.95503,Entire home/apt,120,4,7,2018-04-16,0.24,1,0 +16823712,Room w/ terrace in house w/ backyard Williamsburg!,10810355,Valentine,Brooklyn,Williamsburg,40.70833,-73.93916,Private room,66,12,9,2019-05-27,0.37,1,11 +16823923,Wonderful Apartment Upper West Side Midtown,71739526,Jonathan,Manhattan,Upper West Side,40.77016,-73.98126,Entire home/apt,250,7,0,,,1,0 +16824884,Amazing One Bedroom Apt,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.6808,-73.93753,Entire home/apt,110,30,9,2019-04-27,0.34,3,319 +16826741,The Gramercy East,111798802,Ritchy,Manhattan,Gramercy,40.73575,-73.98,Entire home/apt,155,2,3,2018-09-29,0.12,1,3 +16827163,quintessential modern Brooklyn loft** ONLY TONIGHT,44201583,Jeremy,Brooklyn,DUMBO,40.70287,-73.98518,Private room,200,7,0,,,1,0 +16827715,Private One Bedroom/5 min. walk to train,82339249,Monica,Queens,Ditmars Steinway,40.77235,-73.91789,Private room,85,5,3,2017-09-04,0.11,1,88 +16828843,"Large, Sunny Studio in the heart of Chelsea.",31175385,Eunice,Manhattan,Chelsea,40.74089,-74.00002,Entire home/apt,130,2,4,2019-01-01,0.13,1,0 +16828918,Cute Room Perfect Downtown Location,29040298,Paulien,Manhattan,Little Italy,40.72043,-73.99706,Private room,64,3,0,,,1,0 +16829324,✪ Stay Together in Style ✪ 2BR / 3 Bed ✪ Best Area,4094013,Cami,Manhattan,Lower East Side,40.72293,-73.98918,Entire home/apt,200,4,72,2019-06-23,2.94,1,109 +16829867,New studio in Murray Hill,37832982,Cynthia,Manhattan,Murray Hill,40.74976,-73.97444,Entire home/apt,130,2,0,,,1,0 +16830241,"Sunny, Modern East Village 1BR w/ 24-hr doorman",7837004,Hilary,Manhattan,East Village,40.72979,-73.98917,Entire home/apt,170,5,29,2019-06-04,0.98,1,0 +16834485,"! ! ! Coliving: live, work, create",2092314,Valentin,Brooklyn,East Flatbush,40.65151,-73.94957,Shared room,22,30,0,,,7,365 +16835493,!!!Outpost Coliving . Flatbush. Cozy shared room,2092314,Valentin,Brooklyn,Flatbush,40.64476,-73.96473,Shared room,28,30,0,,,7,365 +16837628,Outpost Coliving. Great shared apartment Flatbush,2092314,Valentin,Brooklyn,East Flatbush,40.64136,-73.94705,Shared room,27,30,0,,,7,365 +16840727,Great Bed Stuy Room Near Williamsburg & Bushwick,111970954,Ryan,Brooklyn,Bedford-Stuyvesant,40.68785,-73.94262,Private room,30,7,2,2017-03-07,0.07,1,0 +16841844,South Williamsburg bedroom with big bay windows,28758646,Alex,Brooklyn,Williamsburg,40.70942,-73.96331,Private room,300,3,4,2017-05-20,0.15,1,0 +16841998,Double Bedroom in a Sunny Bushwick Loft,112127289,Jordan,Brooklyn,Bushwick,40.69284,-73.90695,Private room,40,3,6,2017-06-19,0.20,1,0 +16843605,"Comfortable, eclectic and private apartment",109865937,Philip,Brooklyn,Clinton Hill,40.68976,-73.96533,Entire home/apt,280,2,41,2019-06-27,1.51,1,343 +16844707,Hudson River Aerie,47737463,Regina,Manhattan,Harlem,40.82545,-73.95295,Private room,60,3,10,2019-06-30,0.71,1,8 +16845648,"Bright, Beautiful 2 BD, great location UES",59358,V.Stephan,Manhattan,Upper East Side,40.78429,-73.94878,Entire home/apt,200,5,48,2019-07-01,1.73,2,71 +16845840,Small Private Room for Rent,2712353,Masud,Brooklyn,Cypress Hills,40.68668,-73.87565,Private room,35,28,5,2018-11-20,0.19,4,326 +16846074,Modern Studio in the Heart of Midtown NYC!,3902092,Anthony,Manhattan,Hell's Kitchen,40.75673,-73.99362,Entire home/apt,170,2,0,,,1,0 +16846366,5* Brand New Luxury Apartment with Backyard Oasis,436642,Joel,Manhattan,Upper West Side,40.7843,-73.98262,Entire home/apt,995,4,20,2019-07-01,0.73,1,290 +16846462,Brooklyn Gem,28297517,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68841,-73.95082,Entire home/apt,140,2,54,2019-06-02,1.91,1,267 +16847069,Prime SOHO Luxury penthouse Loft,62103724,Joe,Manhattan,NoHo,40.72569,-73.99519,Entire home/apt,399,3,51,2019-06-17,1.76,1,336 +16851711,"Light-filled Apartment in great area, close 2 all!",24758130,Dounia,Brooklyn,Flatbush,40.63192,-73.94734,Entire home/apt,75,1,12,2017-06-19,0.43,1,0 +16851792,NYで人気の街ブルックリンパークスロープで、暮らしてみませんか。,8899812,Fumiko,Brooklyn,South Slope,40.66411,-73.98267,Private room,65,7,2,2017-10-23,0.09,1,173 +16851973,!!! Beautiful private room with backyard.,2092314,Valentin,Brooklyn,East Flatbush,40.6392,-73.94732,Private room,32,30,1,2017-07-30,0.04,7,124 +16852728,!!! Outpost Coliving . Shared twin room,2092314,Valentin,Brooklyn,East Flatbush,40.65024,-73.95051,Shared room,26,30,2,2018-04-30,0.09,7,365 +16854141,"Snug, Cozy 1 bedroom Apartment",18595156,Dwane,Brooklyn,East New York,40.65877,-73.89631,Entire home/apt,100,1,68,2019-06-08,2.27,1,364 +16854181,Awesome apartment close to Express Train,17911536,Federica,Manhattan,Washington Heights,40.85046,-73.94271,Private room,98,2,0,,,1,0 +16854754,"LRG DESIGNER STUDIO/1-BED, MIDTOWN, DOORMAN, ELEV.",23502183,Daniel,Manhattan,Midtown,40.75562,-73.96539,Entire home/apt,149,3,8,2019-05-14,0.34,2,0 +16855055,"Spacious, bright room in luxury building",283944,Tim,Brooklyn,Williamsburg,40.70669,-73.94648,Private room,85,1,16,2019-05-03,0.55,1,7 +16855679,Modern 1 Bedroom Condo at Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75305,-73.97358,Private room,640,2,0,,,3,0 +16856193,Hotel Room at Wyndham Midtown 45,24126726,Nadine,Manhattan,Midtown,40.75373,-73.97287,Private room,325,2,0,,,3,268 +16858146,Entire Apartment in Hells Kitchen!,3747161,Eric,Manhattan,Hell's Kitchen,40.76318,-73.99009,Entire home/apt,125,30,7,2019-05-25,0.26,1,204 +16859099,Manhattan &Time Square Less than 30min 1st floor.,3158364,Devika,Queens,Sunnyside,40.73661,-73.92514,Private room,32,5,47,2019-07-01,1.61,4,266 +16860045,2 bed spacious/Quiet Upper Ditmars Astoria Wifi.,97127885,Concetta,Queens,Ditmars Steinway,40.76814,-73.89573,Entire home/apt,47,11,27,2019-04-27,0.90,2,212 +16860541,Large Bedroom Apartment with a Private Bathroom,42993745,Paul,Manhattan,Upper East Side,40.77659,-73.95407,Private room,130,3,18,2018-12-15,0.65,2,0 +16865916,"Modern Living, Views, Summer in the City!",4462722,Jay,Manhattan,Upper East Side,40.76516,-73.95868,Entire home/apt,249,2,7,2019-05-07,0.27,1,363 +16867024,Stunning Terrace/garden Design 2 BR Apartment,112393778,Christophe,Manhattan,Harlem,40.80346,-73.94583,Entire home/apt,360,5,23,2019-05-24,0.84,1,3 +16867729,Apartment in Great Part of Brooklyn,105154603,Samantha,Brooklyn,Gowanus,40.66948,-73.98976,Private room,40,4,1,2017-02-28,0.03,1,0 +16869999,"Philosopher's Private Room, Clean, 1.5 Baths",10015933,Dwayne,Manhattan,Harlem,40.81609,-73.93663,Private room,55,1,48,2019-06-30,1.68,1,365 +16870827,Private Lrg bedroom in a convrtable 2 Bed Apt.,79089979,Clell,Brooklyn,Bay Ridge,40.63845,-74.02649,Private room,800,1,43,2019-06-27,1.64,1,55 +16871240,"Cute Apartment for 2-4 people, IDEAL location NYC",112439486,Ryan,Queens,Sunnyside,40.74561,-73.91927,Entire home/apt,88,3,2,2017-02-20,0.07,1,0 +16873148,3BR Home 25 Mins to Times Square + Manhattan,60665255,Nicholas,Queens,Maspeth,40.73147,-73.89486,Entire home/apt,175,1,60,2019-06-17,3.05,1,317 +16874685,MASSIVE ROOM IN HEART OF NYC!!! (CHELSEA/FLATIRON),13492085,Teri,Manhattan,Chelsea,40.74512,-73.99179,Private room,200,1,8,2017-05-18,0.28,2,0 +16879258,Gorgeous and sunny 1 br in Little Italy/Nolita,11050811,Dianna,Manhattan,Little Italy,40.71867,-73.99709,Entire home/apt,200,5,0,,,1,45 +16880235,Light-filled Bowery 1BD Apartment,87296223,Julien,Manhattan,Chinatown,40.71681,-73.99539,Entire home/apt,190,5,8,2019-06-14,0.30,1,81 +16883129,Charming Studio In Historic Home,26178075,Tricia,Staten Island,Stapleton,40.6322,-74.07789,Entire home/apt,75,2,103,2019-07-05,3.52,1,73 +16883282,Gorgeous Luxury 1 Brd Apt in Trendy West Village!,3827805,Casey,Manhattan,West Village,40.73249,-74.00854,Entire home/apt,210,3,0,,,1,0 +16883813,Cozy and Sunny 2 bedroom apartment,5302735,Thiago,Manhattan,Harlem,40.80495,-73.9556,Entire home/apt,224,4,29,2019-06-09,0.99,2,0 +16884012,Airy Inwood Apartment,42330189,Gabriel,Manhattan,Washington Heights,40.85622,-73.93147,Entire home/apt,200,1,0,,,1,0 +16884027,Historic Brownstone in Harlem,78930817,Santi,Manhattan,Harlem,40.80443,-73.94546,Entire home/apt,120,1,9,2017-04-17,0.31,1,0 +16884405,"Guest Room in High Ceiling Duplex, Williamsburg! 2",40511252,Auset,Brooklyn,Williamsburg,40.70711,-73.95344,Private room,55,30,11,2019-03-31,0.38,3,249 +16884587,"Beautiful 2 Bedroom Apartment Woodside, Queens, NY",112601190,Erfan,Queens,Woodside,40.74616,-73.90392,Entire home/apt,106,2,93,2019-06-20,3.13,1,34 +16885058,Charming Apartment,47792689,Tiffany,Brooklyn,Bushwick,40.70097,-73.9381,Entire home/apt,68,3,0,,,1,0 +16892151,1 Bedroom in Beautiful/Spacious Bushwick Apt,9806708,Ryan,Brooklyn,Williamsburg,40.70513,-73.93063,Private room,60,1,0,,,1,0 +16892955,"Huge Comfy Studio with Private Bath, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.87924,-73.89791,Entire home/apt,84,3,114,2019-06-16,4.00,4,63 +16893030,Large Studio one block from Times Square,7593341,Vaki,Manhattan,Theater District,40.75951,-73.98796,Private room,195,1,9,2018-12-16,0.31,1,9 +16893907,Newly renovated modern Apt in heart of Astoria NY,11787695,Charlie,Queens,Astoria,40.76773,-73.91701,Entire home/apt,175,4,12,2019-06-24,0.47,1,42 +16893993,Sunny room in a shared appartement in Bushwick,3855091,Do,Brooklyn,Bushwick,40.70657,-73.92181,Private room,53,5,1,2017-08-27,0.04,1,0 +16895217,"Sunny, Beautiful, Comforting Greenpoint Apartment",13739286,Danielle,Brooklyn,Greenpoint,40.7244,-73.93913,Private room,55,5,6,2018-10-24,0.28,1,87 +16896105,Peaceful room in hip BK area 15 min to Manhattan,1359292,Cleo,Brooklyn,Bedford-Stuyvesant,40.68869,-73.9231,Private room,47,1,10,2019-06-27,0.35,1,173 +16897115,Perfectly Central Upper West Side location,110851135,Eitan,Manhattan,Upper West Side,40.79241,-73.97262,Private room,53,1,39,2018-07-26,1.39,1,0 +16897571,Cosy LES/Chinatown private room,9670774,Amy,Manhattan,Lower East Side,40.71974,-73.99263,Private room,110,7,0,,,1,0 +16897611,"1 Bedroom in nice, clean LES apartment",112763616,Gaurav,Manhattan,Lower East Side,40.71873,-73.99073,Private room,95,1,3,2017-09-27,0.13,1,0 +16898313,Large 2 bdrm loft with outdoor space + trains,4185119,Claire,Brooklyn,Boerum Hill,40.68583,-73.98267,Entire home/apt,148,2,23,2019-06-23,0.78,1,3 +16899058,The ❤️ of SoHo: Adorable 2 br // event space,112780904,Milly,Manhattan,SoHo,40.7255,-74.00258,Entire home/apt,459,1,61,2019-07-01,2.04,1,173 +16905585,Bright and Spacious East Village Loft,112851539,J,Manhattan,East Village,40.72977,-73.98841,Entire home/apt,350,3,85,2019-06-24,2.87,1,208 +16912472,Private East Village Bedroom &Roof Deck(manhattan),51850937,Joe,Manhattan,East Village,40.72951,-73.98239,Private room,90,1,200,2019-06-22,6.79,3,272 +16914299,Friendly and well located place to get away,26538766,Tristan,Brooklyn,Park Slope,40.6675,-73.97694,Entire home/apt,120,1,5,2018-04-10,0.18,2,0 +16914748,Beautiful Garden Apartment in Bed Stuy Brownstone,190239,Cat,Brooklyn,Bedford-Stuyvesant,40.68498,-73.92613,Entire home/apt,91,10,26,2019-06-14,0.97,1,12 +16916191,Bedstuy Brownstone,61127125,Eric,Brooklyn,Bedford-Stuyvesant,40.681,-73.94707,Entire home/apt,170,3,5,2019-06-23,0.50,1,66 +16916234,one-bedroom available in Murray Hill NYC,112957166,Dmitriy,Manhattan,Kips Bay,40.73948,-73.97643,Private room,73,1,0,,,1,0 +16916510,Cozy Room near Columbia University,11523011,Tiara,Manhattan,Morningside Heights,40.80766,-73.96594,Private room,60,30,7,2018-07-10,0.27,2,246 +16916708,"Cozy 1br apartment, 25 min away from Manhattan",13896771,Raquel,Queens,Ditmars Steinway,40.77707,-73.91887,Entire home/apt,90,5,14,2019-01-05,0.49,1,1 +16916926,Clean! Quiet! Near train and park!,420620,Kathryn,Brooklyn,Windsor Terrace,40.65998,-73.97811,Private room,70,3,0,,,1,0 +16917171,West Village - 1 Bedroom,31906445,Laura,Manhattan,West Village,40.73459,-74.00143,Entire home/apt,135,2,1,2017-02-20,0.03,1,0 +16917225,Glamorous Queen room in the centre of EVERYTHING!,24405003,Bianca,Manhattan,Chinatown,40.71427,-73.99261,Private room,91,1,49,2019-06-30,1.86,3,111 +16918104,Cozy Private Room,32304780,Nicauris,Manhattan,Washington Heights,40.84194,-73.94203,Private room,52,30,16,2019-01-06,0.59,3,237 +16923912,Charming 5 Bedroom House in Forest Hills NY,23262657,Maayan,Queens,Forest Hills,40.71848,-73.85025,Entire home/apt,400,2,9,2018-12-29,0.37,2,4 +16925647,Charming Park Slope Apt (fits up to 6 ppl)!,8131326,Julia,Brooklyn,Windsor Terrace,40.66063,-73.98348,Entire home/apt,239,3,0,,,1,0 +16927533,Studio with amazing view,3737986,Carolann,Manhattan,Financial District,40.70588,-74.0159,Entire home/apt,12,300,0,,,1,0 +16928488,Private apartment in new Brooklyn building!,5611490,Steven & Melissa,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95299,Entire home/apt,150,2,33,2019-05-22,1.21,1,80 +16929145,UES(mini loft)Clean flex room (Female Only),7093576,Eun M,Manhattan,Upper East Side,40.77759,-73.95321,Private room,65,1,133,2019-06-19,4.52,1,43 +16929407,Luxury Loft in Williamsburg,14060369,Aaron,Brooklyn,Williamsburg,40.71218,-73.96048,Entire home/apt,220,3,8,2018-08-26,0.30,1,0 +16930274,"Great 1 BR- Q train, Museum Mile and Central Park!",113110121,Christina,Manhattan,Upper East Side,40.76868,-73.95744,Entire home/apt,110,5,22,2019-07-02,1.27,1,7 +16930662,Cozy yellow room,37185194,Hali,Queens,Astoria,40.76964,-73.91559,Private room,44,1,14,2018-03-13,0.50,1,0 +16930707,Private room in a 3BR in Park Slope,17019706,David,Brooklyn,Park Slope,40.68203,-73.97834,Private room,75,4,0,,,1,0 +16931894,QUIET SUNNY PRIVATE ROOM M&L TRAIN,113128172,Simon,Brooklyn,Bushwick,40.70079,-73.91847,Private room,65,1,9,2017-10-04,0.35,1,0 +16932674,Cozy bedroom in Bushwick Brooklyn!,29464755,Rebecca,Brooklyn,Bushwick,40.6978,-73.91677,Private room,40,3,34,2017-10-20,1.16,1,0 +16933257,Bay Ridge Apt,88981564,Luis,Brooklyn,Bay Ridge,40.62158,-74.02394,Entire home/apt,175,2,35,2019-06-19,1.17,1,325 +16933481,Entire 3rd Floor of Brooklyn brownstone,359480,Autumn,Brooklyn,South Slope,40.66398,-73.99041,Entire home/apt,77,3,4,2018-11-25,0.14,1,0 +16936036,Budget Friendly Place WIFi AC Parking Comfy Bed,2788934,Andrew,Brooklyn,Greenpoint,40.72155,-73.94414,Private room,59,2,155,2019-06-30,5.20,2,60 +16937801,High End Hand Crafted Manhattan Two Bedroom Beauty,113198009,Tyreik,Manhattan,Harlem,40.82793,-73.94349,Private room,85,5,8,2018-11-03,0.29,1,0 +16943101,*New 4 bedrooms 2 Bath Home 15 mins to manhattan!,113251630,Joling,Brooklyn,Bushwick,40.69735,-73.9327,Entire home/apt,240,3,84,2019-06-23,2.95,1,237 +16943178,Ladies Only: Spacious Shared Apt,113251277,Angela,Manhattan,Kips Bay,40.74261,-73.98102,Shared room,49,1,11,2019-03-17,0.39,2,304 +16944182,"Newly renovated, large room. Right by trains!",2431149,Delphina,Brooklyn,Crown Heights,40.66926,-73.93211,Private room,49,1,13,2017-05-01,0.44,2,0 +16944820,Large *COZY* Private Bedroom near Yankee Stadium,67130668,Melissa,Bronx,Concourse Village,40.82692,-73.92183,Private room,45,5,46,2019-06-02,1.55,1,174 +16945093,Cute studio close to Penn Station and Times Square,14374073,Estrellita,Manhattan,Chelsea,40.75166,-73.99506,Entire home/apt,150,19,0,,,1,0 +16945495,"Queen size bed, private bathroom, great location",2807776,Axel,Brooklyn,Flatbush,40.64918,-73.96657,Private room,80,2,25,2019-06-24,0.95,2,68 +16947113,Room in the Heart of Williamsburg,102367813,Steven,Brooklyn,Williamsburg,40.7176,-73.95359,Private room,99,2,7,2017-10-23,0.24,1,0 +16954154,Cozy with a private bathroom bklyn,14898658,Chadanut,Brooklyn,Kensington,40.64237,-73.98048,Private room,45,1,41,2019-05-27,1.41,11,22 +16954330,The Cozy Cole room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80934,-73.95072,Private room,59,2,66,2019-01-27,2.24,4,6 +16959759,Cute little room in a 3BR apt with shared bath.,113399802,Mireille,Brooklyn,Crown Heights,40.67138,-73.93679,Private room,82,1,21,2019-06-25,0.78,1,89 +16960374,Beautiful 1br in Manhattan!,30097523,Kevin,Manhattan,Harlem,40.82167,-73.94988,Entire home/apt,110,6,5,2018-07-23,0.17,1,0 +16960725,Private Room Near Columbus Circle.,36980831,Matthew,Manhattan,Hell's Kitchen,40.76617,-73.98398,Private room,95,3,2,2017-10-07,0.07,1,83 +16960760,Large private room w huge loft in Williamsburg,113409633,Lauren,Brooklyn,Williamsburg,40.71976,-73.96052,Private room,58,2,3,2017-05-19,0.11,1,0 +16960859,Private Room In Clean Quiet Apt,17791467,Anthony,Manhattan,Harlem,40.8236,-73.93755,Private room,69,2,70,2018-08-01,2.38,2,0 +16961126,Classic Room in Vintage Loft,16300594,Ari,Brooklyn,Williamsburg,40.71586,-73.95395,Private room,50,2,9,2019-04-04,0.31,3,0 +16962435,Artist Loft Bedroom,24419810,Gera & Werc,Brooklyn,Bushwick,40.70322,-73.92025,Private room,60,5,18,2019-05-15,0.77,1,66 +16963544,"East Village, Cozy Room w/ Private Entrance & Bath",2626535,RoseAnne,Manhattan,Stuyvesant Town,40.73126,-73.98149,Private room,73,2,1,2017-02-23,0.03,1,0 +16964141,Staten island home not far from ferry to manhattan,113449748,Gloria,Staten Island,Randall Manor,40.63552,-74.12125,Private room,100,3,0,,,1,362 +16965072,Large Bright Home on 2 floors perfect for families,11105949,May,Brooklyn,Bedford-Stuyvesant,40.69309,-73.94987,Entire home/apt,139,5,13,2019-05-01,0.48,1,0 +16965094,*THE ROOM IS PRIVATE. HUNGRY FOR A KITCHEN ?*,48183551,Carlos,Queens,Elmhurst,40.74552,-73.88285,Private room,55,6,69,2019-07-04,2.44,5,253 +16965291,"basic room, prime location, 30 day minimum",10737943,David,Manhattan,Upper West Side,40.78068,-73.9767,Private room,48,30,5,2019-05-01,0.18,10,341 +16965705,Bright sunny manhattan getaway,3483600,Joshua,Manhattan,Washington Heights,40.83498,-73.94214,Private room,63,2,0,,,1,0 +16965968,Cute Room in Lower East Side!,100672521,Angie,Manhattan,Lower East Side,40.7128,-73.98909,Private room,97,1,121,2019-06-23,4.11,3,127 +16965972,Charming Bedroom in hip Lower East Side!,100672521,Angie,Manhattan,Lower East Side,40.71203,-73.99008,Private room,99,1,125,2019-06-26,4.31,3,119 +16969156,Cozy Manhattan Studio,113460991,Shain,Manhattan,Midtown,40.75784,-73.96088,Entire home/apt,175,14,8,2019-01-05,0.28,1,310 +16970733,Gramercy / East Village Studio,113521983,Julia,Manhattan,Gramercy,40.73328,-73.98241,Entire home/apt,159,8,33,2019-07-01,1.21,1,8 +16971247,"Charming, Light drenched Upper East Side studio",5744776,Jensine,Manhattan,Upper East Side,40.77565,-73.94919,Entire home/apt,153,2,4,2019-06-02,0.14,1,3 +16972627,Strawberry Fields Forever!,21353088,Katy,Manhattan,Upper West Side,40.77786,-73.98066,Entire home/apt,243,1,41,2019-06-30,1.39,1,8 +16973662,1st Floor in New (2flr) Williamsburg Apartment,17459413,Jenn,Brooklyn,Williamsburg,40.7138,-73.96043,Private room,98,13,14,2019-05-05,0.56,1,145 +16974219,Big Room with Queen Bed&Comfy Couch,68123997,Liam,Queens,Elmhurst,40.741,-73.88019,Private room,60,2,43,2019-07-01,1.50,1,90 +16975094,Entire beautiful apartment-Astoria,73541674,Dioni,Queens,Ditmars Steinway,40.77319,-73.91687,Entire home/apt,100,3,2,2018-07-16,0.07,2,200 +16975918,"Large 1-bedroom, great neighborhood 20min/Midtown",4942156,Paul,Queens,Sunnyside,40.74511,-73.91816,Entire home/apt,80,50,2,2018-08-19,0.09,1,8 +16976026,Cheap Family home with desk 10 mn to JFK+Mall,107455767,Guelma,Queens,Rosedale,40.65292,-73.73652,Private room,45,14,70,2019-06-24,2.38,5,281 +16976215,Awesome Chelsea Manhattan Pad,15851669,Lisa,Manhattan,Chelsea,40.7429,-73.99344,Private room,125,1,1,2017-01-30,0.03,1,0 +16976267,Large Room in Queens,113558700,Berat,Queens,Rego Park,40.72804,-73.86147,Private room,30,1,74,2019-06-09,2.53,3,358 +16981845,Smart Studio,16420977,Alli,Manhattan,East Village,40.7251,-73.98914,Entire home/apt,140,2,0,,,1,0 +16983203,Cozy Private Studio Close to JFK w kitchen & bath,113682832,Harry,Queens,Jamaica,40.69637,-73.81034,Private room,47,3,29,2019-05-20,1.02,2,126 +16984336,One bedroom apt in a luxury Building,23297219,Aurora,Brooklyn,Williamsburg,40.71819,-73.96532,Entire home/apt,99,4,16,2018-03-23,0.54,2,86 +16987293,"New, Luxury and Sunny Apartment",57455831,Maggie,Brooklyn,Clinton Hill,40.6944,-73.96606,Entire home/apt,150,1,1,2017-05-06,0.04,2,0 +16987408,"private, large, sunny, calm big room",113740169,Isa,Manhattan,Washington Heights,40.85411,-73.93167,Private room,45,30,4,2018-11-30,0.15,1,275 +16987479,Sunny LEGO’s Home,57455831,Maggie,Brooklyn,Clinton Hill,40.69259,-73.9665,Entire home/apt,150,1,5,2019-03-31,0.19,2,0 +16991994,Spectacular one bedroom Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77743,-73.94977,Entire home/apt,140,31,4,2019-04-12,0.23,33,338 +16992922,90 Washington St. 1 BR furnished,53179388,Raymond,Manhattan,Financial District,40.70829,-74.01405,Entire home/apt,200,30,1,2017-08-13,0.04,10,340 +16994272,Luxury 2-bedroom apartment in Harlem,570464,Nicole,Manhattan,Harlem,40.80926,-73.95419,Entire home/apt,400,4,8,2019-04-12,0.74,1,42 +16995743,Cozy private on Bedford Avenue,53127489,Will,Brooklyn,Williamsburg,40.71404,-73.96119,Private room,35,1,2,2017-02-13,0.07,2,0 +16996170,2 Bed 2 Bath Close to Park pool In Building,113805886,Yaacov,Manhattan,Upper East Side,40.7771,-73.94996,Entire home/apt,240,31,5,2019-06-16,0.34,33,289 +16996664,2 Bed 1 Bath Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77898,-73.94983,Entire home/apt,189,31,7,2019-04-13,0.26,33,331 +16996954,2 Bed 2 Bath Close To Park Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77832,-73.94991,Entire home/apt,225,31,10,2019-06-12,0.48,33,351 +16999426,Beautiful Large Private Apt in Amazing Neighbrhood,113905045,Sofia,Queens,Ditmars Steinway,40.77103,-73.91409,Entire home/apt,175,2,6,2019-05-27,0.21,1,176 +16999617,"Spacious, Sunny Room right by the Subway",19698740,Natalie,Brooklyn,Prospect Heights,40.67762,-73.97097,Private room,50,2,0,,,1,0 +17000278,The Most Amazing Duplex Apt w/ Outdoor Space in BK,63474828,Ryan,Brooklyn,Sunset Park,40.66135,-73.98841,Entire home/apt,185,30,2,2017-05-02,0.07,1,337 +17000577,Charming Brooklyn Heights Abode,113924874,Michi,Brooklyn,Brooklyn Heights,40.70081,-73.99503,Entire home/apt,107,25,12,2019-05-01,0.42,1,1 +17005665,Nice Room in Manhattan,113986628,Lyuda,Manhattan,East Harlem,40.78568,-73.94868,Private room,85,1,18,2019-06-15,0.68,1,357 +17006745,Wonderful 1BR in ideal Williamsburg location,6194871,Christie,Brooklyn,Williamsburg,40.7097,-73.95411,Private room,57,2,31,2019-01-03,1.05,1,40 +17006956,Beautiful Bright Apartment. 30 Mins to Manhattan.,18165343,Nikita,Brooklyn,Sunset Park,40.65729,-73.99917,Entire home/apt,195,2,59,2018-07-31,2.03,1,0 +17007971,Charming Ground Floor,113558977,Joe,Queens,Rego Park,40.72651,-73.86173,Entire home/apt,40,1,101,2019-06-20,3.47,2,74 +17008022,1 Bedroom near Columbia University,24270606,Devin,Manhattan,Morningside Heights,40.81037,-73.95833,Private room,100,5,32,2018-10-24,1.20,1,0 +17009057,Beauty Brooklyn 2BR close to trains 30+ days only,1410860,Sara Kate,Brooklyn,Bedford-Stuyvesant,40.68324,-73.95174,Entire home/apt,300,30,67,2019-06-20,2.43,1,360 +17009742,Charming Light-Filled Apartment in Boerum Hill,15194358,Carly,Brooklyn,Boerum Hill,40.68482,-73.98302,Entire home/apt,150,3,19,2019-07-01,0.65,1,7 +17010314,Williamsburg stylish home!,2092961,Ja,Brooklyn,Williamsburg,40.70881,-73.9468,Entire home/apt,155,3,53,2019-07-06,1.97,1,110 +17013137,Cozy private bedroom in Bedford Stuyvesant,40872011,Clotilde & Nicolas,Brooklyn,Bedford-Stuyvesant,40.68533,-73.91941,Private room,45,2,22,2019-05-20,0.83,1,51 +17013623,"Cute one bedroom apt. in Greenpoint, Brooklyn.",114071959,Greg,Brooklyn,Greenpoint,40.72556,-73.94368,Private room,59,3,64,2019-06-10,2.24,1,162 +17013882,"Big bedroom in Astoria, 20 min from Central Park",7039858,Costas,Queens,Astoria,40.76882,-73.92793,Private room,65,3,23,2018-12-31,0.81,1,23 +17014341,Spacious Studio in E Flatbush,104122404,Vanessa,Brooklyn,East Flatbush,40.63844,-73.92868,Entire home/apt,91,1,117,2019-06-19,3.99,1,60 +17014809,Victorian Sanctuary in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80769,-73.95505,Private room,118,1,95,2019-06-17,3.93,5,224 +17020317,Brooklyn Brownstone parlor living with full A/C,679157,Jeremy,Brooklyn,Prospect Heights,40.68125,-73.97236,Entire home/apt,199,2,4,2019-05-20,0.15,1,179 +17023406,Comfortable Space in Heart of Astoria,114178347,Cliff,Queens,Astoria,40.76625,-73.92447,Shared room,34,30,3,2017-03-20,0.10,1,0 +17023591,Warm and Cozy.,40972641,Christopher,Queens,Fresh Meadows,40.74202,-73.78821,Private room,40,1,18,2017-09-01,0.61,2,0 +17025412,Nolita Bohemian Charmer,580624,Anna,Manhattan,Nolita,40.72078,-73.99473,Private room,100,10,2,2018-04-25,0.09,1,35 +17025831,Large 2Br on W71st & Columbus Feb 19-28,26754726,Julie,Manhattan,Upper West Side,40.77673,-73.98011,Entire home/apt,200,5,0,,,1,0 +17026213,Cozy Bed-Stuy Getaway!,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94447,Private room,51,2,24,2019-06-23,0.83,3,99 +17026435,"Artist room in the heart of Bushwick, Brooklyn NY",114209467,Prashant,Brooklyn,Bushwick,40.69482,-73.91165,Private room,30,1,1,2017-02-09,0.03,1,0 +17027226,"Modern,Elegant,Private,with parking spot,safe area",114219274,Safa,Brooklyn,Fort Hamilton,40.62203,-74.0303,Entire home/apt,87,1,116,2019-06-27,3.99,1,242 +17029482,Very Spacious One Bedroom Apt in Private Townhouse,9772108,Demettre,Manhattan,West Village,40.73452,-74.00825,Entire home/apt,215,2,28,2018-05-04,1.00,1,0 +17029902,Midsize room in Queens.,113558700,Berat,Queens,Rego Park,40.72727,-73.86223,Private room,30,1,59,2019-05-19,2.01,3,89 +17030043,Cozy private room in Bedstuy,21929511,Stephen,Brooklyn,Bedford-Stuyvesant,40.6932,-73.95519,Private room,900,1,1,2017-02-11,0.03,1,89 +17031720,Large private BR in East Harlem near Central Park,18810552,Ceilidh,Manhattan,East Harlem,40.79149,-73.94658,Private room,80,5,0,,,1,0 +17037199,Cozy East Village Room w/Bonus Cats,473063,Lyra,Manhattan,East Village,40.7265,-73.98278,Private room,71,3,76,2019-06-21,2.59,1,25 +17040990,Luxury building in Fort Greene.,1434069,Nathan,Brooklyn,Clinton Hill,40.69088,-73.96653,Entire home/apt,126,1,0,,,1,26 +17041225,"Funky 3 Bedroom Duplex in hip Greenpoint, Brooklyn",1239078,Michael,Brooklyn,Greenpoint,40.72881,-73.95817,Entire home/apt,200,2,35,2017-09-15,1.19,2,0 +17042235,"Classic Brownstone in Williamsburg, BK W/ Backyard",25967444,Joseph,Brooklyn,Williamsburg,40.71247,-73.96155,Entire home/apt,225,3,15,2018-07-29,0.55,1,0 +17043121,Perfect 1 Bedroom in Heart of Lower East Side,21959207,Christopher,Manhattan,Lower East Side,40.72085,-73.98895,Entire home/apt,250,3,67,2019-06-19,3.35,1,149 +17043468,UES oasis,110335252,Karlyn,Manhattan,Upper East Side,40.77428,-73.95363,Private room,100,4,0,,,1,0 +17044038,Big exposed brick room in The East Village,20481502,Emily,Manhattan,East Village,40.72429,-73.98784,Private room,80,90,0,,,1,173 +17044854,Beautiful Private Bedroom in Bronx Apartment,1568820,Figgins,Bronx,Fordham,40.85615,-73.90077,Private room,34,3,7,2019-05-09,0.79,1,126 +17045488,Huge Room in Home with Backyard Near Metro,23878336,Armando,Bronx,Fordham,40.87031,-73.89322,Private room,79,3,98,2019-06-24,3.45,10,68 +17045788,Cute RM in Private Home with Backyard/Near Metro,23878336,Armando,Bronx,Fordham,40.86917,-73.89465,Private room,60,3,77,2019-05-30,2.70,10,65 +17045905,Private Clean Spacious Sunny E Village Studio Apt,26822855,Seth,Manhattan,East Village,40.72425,-73.98976,Entire home/apt,115,10,4,2018-09-03,0.27,1,0 +17045913,Live Like a Local In GREENPOINT,40134417,Ben And Jane,Brooklyn,Greenpoint,40.73076,-73.95575,Entire home/apt,20,4,17,2018-03-20,0.58,1,0 +17046103,Down town east village.,114410100,Lamark,Manhattan,East Village,40.7284,-73.98295,Private room,70,59,0,,,1,333 +17046562,Spacious vintage 3 Bed Room home in Brooklyn,114416273,Jason,Brooklyn,East Flatbush,40.63956,-73.93235,Entire home/apt,165,3,55,2019-06-09,1.95,1,171 +17070038,CHILLIN ON 5TH,105061915,Darlene,Manhattan,Harlem,40.80379,-73.94434,Private room,46,1,25,2019-07-01,0.97,2,91 +17070798,"Artsy One Bedroom Apartment in Sunnyside, LIC",3143126,Paulo,Queens,Sunnyside,40.74615,-73.91558,Entire home/apt,85,5,2,2019-05-13,1.05,1,0 +17071462,Large comfortable room near Penn Station,3660702,Greg,Manhattan,Chelsea,40.7455,-73.9916,Private room,99,1,136,2019-06-21,4.62,4,61 +17072328,Apartment Near Trendy Restaurants & Prospect Park,8635827,Alison,Brooklyn,Crown Heights,40.675,-73.95885,Entire home/apt,206,3,42,2017-08-25,1.46,1,0 +17072544,Light and Airy LES Studio-like Private Bedroom,7106711,James,Manhattan,Chinatown,40.71485,-73.99157,Private room,65,1,2,2017-05-04,0.07,1,0 +17073231,RE - Budget Friendly room in the Greenpoint Area!,83717038,Max,Brooklyn,Greenpoint,40.73714,-73.95333,Private room,55,2,62,2019-06-24,2.11,3,0 +17073870,South Beach Apartment Express to Manhattan,41398005,Mirco,Staten Island,Arrochar,40.59372,-74.06766,Entire home/apt,60,1,25,2019-07-07,0.91,3,12 +17073983,Mags,114541713,Margaret And Orville,Queens,Jamaica,40.68619,-73.79229,Entire home/apt,127,5,52,2019-06-15,1.99,1,44 +17074757,Ready!,22042865,Martha,Queens,Astoria,40.75678,-73.91644,Private room,50,3,1,2019-06-27,1,1,341 +17075535,"Lovely, private studio apartment near Manhattan.",114552571,John,Staten Island,St. George,40.64332,-74.08283,Entire home/apt,120,2,116,2019-07-05,4.00,1,191 +17076329,"Discount at Manhattan Club NYC, June 16-19, 2019",2190447,Stacey,Manhattan,Midtown,40.7658,-73.98218,Entire home/apt,275,7,0,,,1,0 +17076571,Middle of center of New York City!,15625009,Anders,Manhattan,Upper West Side,40.78461,-73.97627,Entire home/apt,165,1,152,2019-07-06,5.32,1,228 +17076735,Summer Special-Near Bronx Zoo/Botanic Garden/Metro,114568204,Angela,Bronx,Pelham Gardens,40.86673,-73.845,Entire home/apt,119,3,75,2019-07-01,2.74,1,146 +17078010,Bushwick apartment (bedroom) right off L train!,1286399,Lauren,Brooklyn,Bushwick,40.70072,-73.91594,Private room,150,1,3,2018-10-09,0.10,1,359 +17078612,COZI AND GLAM IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.79154,-73.94233,Private room,65,1,186,2019-06-28,6.38,4,199 +17079313,YOUR DREAM SUITE IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.78966,-73.94232,Private room,103,1,149,2019-06-22,5.06,4,215 +17080093,Williamsburg Sunny Spacious Bedroom Great Location,53743935,Kathy,Brooklyn,Williamsburg,40.71096,-73.95171,Private room,65,3,7,2019-05-27,0.24,1,2 +17084539,Amazing apartment in Manhattan,296231,Chester,Manhattan,Theater District,40.75662,-73.98749,Private room,300,3,0,,,1,0 +17085792,Bedroom for 1 or 2 ideal location,24034601,Alizee,Brooklyn,Park Slope,40.68249,-73.97787,Private room,60,5,0,,,1,0 +17088382,"A Prime location private room furnished 3br,2b ap",420399,Gautam,Manhattan,Upper East Side,40.77158,-73.95786,Private room,80,5,3,2019-06-20,0.15,2,50 +17093180,Studio in Manhattan (UES),99634835,Aspano,Manhattan,Upper East Side,40.77058,-73.95358,Entire home/apt,160,1,68,2019-06-04,2.33,1,19 +17094226,1 Bedroom 3 People - The Heart of Jackson Heights,114700646,Daniel,Queens,East Elmhurst,40.76123,-73.88597,Private room,75,5,69,2019-06-24,2.45,1,67 +17095035,Large NYC FLAWLESS Room Close to public transport,55948559,Barry,Bronx,Pelham Gardens,40.86686,-73.84207,Private room,35,1,16,2019-01-21,0.61,4,3 +17095296,RF - Budget Friendly room in the Greenpoint Area!,11612872,Robert,Brooklyn,Greenpoint,40.73571,-73.95372,Private room,55,1,111,2019-06-22,3.77,3,9 +17095350,Adorable West Village One Bedroom,27234116,Lily,Manhattan,Greenwich Village,40.732,-73.99959,Entire home/apt,175,2,0,,,1,0 +17095846,Amazing brownstone with private room!,96829433,Matthew,Brooklyn,Bedford-Stuyvesant,40.6924,-73.93485,Private room,55,5,14,2018-01-05,0.54,1,0 +17095925,Comfy Bedroom in Bushwick (3mins from Train),9439324,Chérie,Brooklyn,Bushwick,40.68699,-73.9056,Private room,46,1,63,2019-05-25,2.32,3,0 +17095971,Charming Cozy Designer Home- Private House,69366752,Maggie,Queens,Forest Hills,40.73576,-73.85434,Entire home/apt,95,2,153,2019-07-01,5.31,2,106 +17097239,Coney Island Pvt 1 Br Apt. * Wi-Fi,114736959,Ed,Brooklyn,Coney Island,40.57575,-73.98465,Entire home/apt,115,2,63,2019-06-19,2.23,6,140 +17097495,The Chester Himes Room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80926,-73.94979,Private room,75,3,48,2019-06-19,1.64,4,9 +17097898,Private room 5 mins to Manhattan 2 blocks to train,51459559,Rossana,Queens,Astoria,40.75902,-73.9154,Private room,47,4,39,2019-05-10,1.50,2,292 +17104272,Private delightful & calming Brownstone Room,23714657,Melani,Brooklyn,Bedford-Stuyvesant,40.69471,-73.93736,Private room,70,2,5,2018-12-31,0.27,1,272 +17105446,"15 Minutes to Manhattan, Heart of Astoria",2350326,Ero,Queens,Ditmars Steinway,40.77811,-73.91065,Private room,70,1,5,2019-06-27,4.69,2,31 +17106473,Contemporary 3BR w Nursery in Brownstone Brooklyn,14927662,Michael,Brooklyn,Carroll Gardens,40.68255,-73.99281,Entire home/apt,100,4,4,2018-11-25,0.14,1,15 +17106644,Urban Elegance in Crown Heights,1527966,Tiffany,Brooklyn,Crown Heights,40.67395,-73.95682,Entire home/apt,135,3,17,2018-12-31,0.68,1,0 +17106705,Above Season Beach Loft,114853757,Abra & Domenic,Queens,Rockaway Beach,40.58718,-73.81541,Entire home/apt,145,2,42,2019-05-27,1.63,1,310 +17107385,...Su Casa,16995499,Sam,Queens,Sunnyside,40.74993,-73.91346,Entire home/apt,75,2,0,,,1,0 +17107656,Colorful 1 Bedroom in the Heart of the E. Village,65971028,Tamarinda,Manhattan,East Village,40.72709,-73.98612,Entire home/apt,125,30,2,2017-09-01,0.08,1,0 +17108224,Stunning Brand New 2bed/2bath House Best Loacation,49701132,Bonnie,Manhattan,Chelsea,40.74187,-74.00622,Entire home/apt,600,1,86,2019-06-07,3.04,1,261 +17108306,Large apartment in Upper East with doorman!,108795105,Danni,Manhattan,Upper East Side,40.78471,-73.95054,Private room,89,4,7,2018-01-01,0.26,1,188 +17108395,10mins to Manhattan Times Square,114877351,Dennis,Queens,Astoria,40.76646,-73.92847,Entire home/apt,125,2,14,2018-10-07,0.48,1,0 +17108995,@ AMAZING ROOM @ TIMES SQUARE @ BEST LOCATION @,15941961,Ralph,Manhattan,Hell's Kitchen,40.76109,-73.99305,Private room,135,3,126,2019-06-17,4.42,1,3 +17109623,Sunny Renovated Private Room in the East Village,6387274,Concetta,Manhattan,East Village,40.72415,-73.97451,Private room,125,1,95,2019-06-21,3.28,1,86 +17111449,Spacious Private Room - Harlem/Manhattan Townhouse,4538012,Karen,Manhattan,East Harlem,40.80921,-73.94002,Private room,70,2,89,2019-06-29,3.28,4,249 +17112036,Beautiful Private Room - Harlem/Manhattan Townhome,4538012,Karen,Manhattan,Harlem,40.81055,-73.94016,Private room,65,2,71,2019-06-26,2.63,4,309 +17116411,3-BDRM/2 BATH Apartment AMAZING LOCATION on UWS!,114977427,Nancy And John,Manhattan,Upper West Side,40.77836,-73.97994,Entire home/apt,489,3,81,2019-07-01,3.01,1,152 +17117129,LastM & EarlyBirdDiscount! ModernCozy Apt Parkview,114988251,A. Kaylee,Brooklyn,Prospect-Lefferts Gardens,40.65608,-73.96176,Entire home/apt,99,2,26,2019-06-27,2.05,1,272 +17117602,Sunny Brick wall bedroom in Lower East Side,12233435,Steph,Manhattan,Chinatown,40.71449,-73.99094,Private room,70,5,0,,,1,0 +17117631,The Corky Hale Room at Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80937,-73.94989,Private room,120,2,29,2019-05-10,1.03,4,0 +17118782,Modern East Village Tenement (1 bedroom),36383228,Amanda,Manhattan,East Village,40.72576,-73.97908,Entire home/apt,160,5,25,2019-05-27,0.90,1,0 +17120052,"Great 1BR available in E Vlg, close to everything!",3939029,John,Manhattan,East Village,40.7252,-73.98339,Private room,125,1,21,2019-06-03,0.75,1,363 +17120582,The McCarren - A Two Bedroom Over the Park! #10262,9673465,Chris,Brooklyn,Greenpoint,40.72282,-73.94856,Entire home/apt,300,3,48,2019-06-23,1.69,1,3 +17121563,Uptown Gem,64960623,Tipicah,Manhattan,Harlem,40.82376,-73.94198,Private room,85,1,0,,,1,0 +17122054,Charming Duplex in Manhattan,115057851,Chito And Xavier,Manhattan,East Harlem,40.80999,-73.93946,Entire home/apt,115,3,86,2019-07-02,2.99,2,85 +17122333,Luxury 2Bed/2Bth Private Loft Best NYC Location,48891349,Riley,Manhattan,West Village,40.74049,-74.00527,Entire home/apt,600,1,106,2019-06-21,3.75,1,286 +17122439,Charming Studio with your Own Private Patio,115057851,Chito And Xavier,Manhattan,East Harlem,40.80827,-73.93813,Entire home/apt,100,3,103,2019-07-01,3.61,2,32 +17122814,Sunny room,33675739,Giselle,Manhattan,East Harlem,40.79315,-73.93984,Private room,47,2,60,2019-06-23,2.52,2,233 +17123353,*WINTER DISCOUNT WILLIAMSBURG CHIC W/PRIVATE PATIO,33161690,Alison,Brooklyn,Williamsburg,40.71722,-73.95477,Entire home/apt,130,3,66,2019-07-03,2.36,1,257 +17123646,Oversized bedroom with living space,22926868,Xenia,Brooklyn,Sunset Park,40.64672,-74.00087,Private room,55,20,23,2019-06-23,0.84,3,41 +17123684,NEW YORK CENTRAL APARTMENT/TIME SQUARE,26089606,Carlotta,Manhattan,Hell's Kitchen,40.75659,-73.99313,Entire home/apt,230,3,13,2018-10-20,0.46,1,260 +17125159,Clean and Stylish Newly Renovated Apartment,115092398,J,Manhattan,Harlem,40.81843,-73.94401,Entire home/apt,125,1,78,2019-06-22,2.70,1,40 +17129825,Fully furnished room on 110th St Broadway for rent,39091267,Ankit,Manhattan,Morningside Heights,40.80437,-73.96387,Shared room,35,1,0,,,1,0 +17130293,furnished private room/bathroom,97543375,Jennifer,Brooklyn,Williamsburg,40.71506,-73.94158,Private room,85,2,3,2018-09-02,0.22,2,40 +17133439,Beautiful modern & large 2 bedroom,11606007,Vikas,Manhattan,Midtown,40.74433,-73.98318,Entire home/apt,450,2,0,,,1,0 +17133664,"Modern, Spacious Hideaway in Historic Brooklyn",45409030,Trouve,Brooklyn,Kensington,40.64309,-73.97707,Entire home/apt,110,6,12,2018-07-17,0.41,1,0 +17134357,Cozy large BR steps to AMNH,780958,Liliana,Manhattan,Upper West Side,40.78587,-73.97468,Private room,100,5,11,2017-07-23,0.39,1,0 +17136721,Charming Room on Prime SoHo Block,41965551,Philip,Manhattan,SoHo,40.72576,-74.00266,Private room,80,1,131,2019-06-24,4.56,1,20 +17137388,Bohemian room in the heart of Greenwich Village,9132087,Brandon,Manhattan,Greenwich Village,40.72766,-73.99976,Private room,98,1,0,,,2,0 +17137626,"~UptownOasis~ Historic charm, HUGE room & privacy•",11167829,Dana (& Justin),Manhattan,Harlem,40.82935,-73.94255,Private room,54,2,72,2019-06-30,2.54,3,63 +17138076,"Pop up room, 5 minutes to jfK",114975592,John And Colleen,Queens,Springfield Gardens,40.66663,-73.76417,Private room,60,1,37,2018-10-03,1.53,4,84 +17138302,Sunny and Bright Studio in Upper West Side!,2771711,Gina,Manhattan,Upper West Side,40.80212,-73.9692,Entire home/apt,120,1,2,2017-03-04,0.07,1,0 +17140695,Sun-Filled Apartment in Bushwick,2770769,Karen,Brooklyn,Bushwick,40.69864,-73.92827,Entire home/apt,115,90,2,2017-07-24,0.08,1,34 +17140748,"Clean sm room, with shared space. Great location.",92202937,Natalie,Brooklyn,South Slope,40.66632,-73.9862,Private room,100,1,2,2017-10-22,0.09,1,87 +17140782,Williamsburg Loft,16868847,Sophie,Brooklyn,Williamsburg,40.71779,-73.96337,Private room,129,2,0,,,1,0 +17141182,"Private, Clean, 1.5 Bedroom Apt",114157738,Alyssa,Manhattan,Morningside Heights,40.80338,-73.9636,Entire home/apt,100,1,19,2018-02-15,0.66,1,0 +17141413,Cozy studio close to train and shopping avenue!!!,55468876,Matt,Queens,Ridgewood,40.70575,-73.90171,Entire home/apt,90,1,109,2019-06-30,3.97,1,75 +17141577,Cosy and Spacious Master Bedroom in Williamsburgh,26870769,Emilia,Brooklyn,Williamsburg,40.71648,-73.94066,Private room,60,87,4,2017-09-19,0.14,1,173 +17141884,Private room in a Luxury building: Midtown NYC,32383664,Karthik,Manhattan,Midtown,40.75151,-73.97114,Private room,60,30,1,2017-06-05,0.04,1,0 +17142987,Charming Apartment with Private Backyard,78154356,Mirela And Daniel,Bronx,Pelham Bay,40.84752,-73.82797,Entire home/apt,89,2,94,2019-06-20,3.20,1,252 +17147561,Best Location + Private Roof Deck,51850937,Joe,Manhattan,East Village,40.73109,-73.98234,Private room,85,1,209,2019-06-17,7.18,3,252 +17149950,Entire One bedroom Apartment in Midtown Manhattan,7616444,Ramin,Manhattan,Midtown,40.75029,-73.98402,Entire home/apt,350,5,4,2017-10-31,0.15,1,0 +17150899,Modern new large duplex apartment.,27072611,Vinny,Manhattan,Kips Bay,40.73829,-73.97896,Entire home/apt,285,1,79,2019-06-21,2.70,1,310 +17151145,Quiet West Village Gem,4628742,Manesh,Manhattan,West Village,40.73394,-74.00302,Entire home/apt,125,1,6,2019-01-29,0.21,1,0 +17151230,Right in the middle of it all!,36579189,Daniel,Manhattan,SoHo,40.7204,-74.00047,Private room,109,1,63,2018-06-25,2.23,1,0 +17152737,Chelsea Artist's Apartment,12578148,Felicity,Manhattan,Chelsea,40.74353,-73.99709,Entire home/apt,545,5,42,2019-06-26,1.57,1,322 +17153913,Charming Sunny Williamsburg/Greenpoint Apartment,2800064,Joseph,Brooklyn,Greenpoint,40.72399,-73.95166,Entire home/apt,208,4,61,2019-06-23,2.26,1,255 +17154204,Tranquil space,16995590,Steph,Queens,Rosedale,40.65439,-73.73185,Entire home/apt,100,2,45,2019-06-09,1.70,1,360 +17155039,East Harlem QtPoC Living Space,46108407,Walesca,Manhattan,East Harlem,40.80224,-73.93732,Private room,48,1,1,2018-04-28,0.07,1,0 +17156147,Sunny Railroad Apt,10762635,Shea,Brooklyn,Crown Heights,40.67685,-73.94033,Entire home/apt,93,6,0,,,1,0 +17157438,"Charming, Artsy Bedroom in the Heart of Brooklyn",1784335,Sara,Brooklyn,Crown Heights,40.67627,-73.95024,Private room,60,2,6,2017-07-31,0.21,1,0 +17157615,"East Village, Private room with access to garden",115395049,Adi And Evangel,Manhattan,East Village,40.72584,-73.9894,Private room,78,1,38,2019-06-21,1.30,2,138 +17158871,"19th Cent. Brooklyn Hts, Moments from Manhattan",17727305,Stephen,Brooklyn,Brooklyn Heights,40.69754,-73.99298,Entire home/apt,270,4,48,2019-07-01,1.73,1,172 +17168007,"NYMT07-1 LUXURY! Studio,Cozy,Gym,doorman Stu-7",39890192,Laura,Manhattan,Hell's Kitchen,40.76536,-73.98864,Entire home/apt,160,45,6,2019-05-22,0.63,12,365 +17171691,Modern 1 Bedroom Luxury Apartment in Dumbo,115517627,Kevin,Brooklyn,Vinegar Hill,40.69891,-73.98423,Entire home/apt,175,4,1,2017-10-22,0.05,1,0 +17172375,Skyscraper Living in Midtown,29240443,Luis,Manhattan,Theater District,40.76106,-73.98627,Entire home/apt,180,3,3,2017-05-21,0.11,1,0 +17173473,Ocean Blue Room,113558977,Joe,Queens,Rego Park,40.7265,-73.86017,Private room,30,1,120,2019-06-11,4.10,2,112 +17174519,Chelsea Brownstone 3 Bedroom House,10590692,Wade,Manhattan,Chelsea,40.74443,-74.00012,Entire home/apt,650,3,35,2019-07-03,1.61,2,179 +17176173,Artistic room steps from A train,1506191,Caitlin,Manhattan,Washington Heights,40.85188,-73.93588,Private room,70,1,26,2019-05-19,1.08,1,0 +17177726,Spacious and Bright Brooklyn Two Bedroom Apartment,700224,Shane & Nicole,Brooklyn,Gowanus,40.68361,-73.98671,Entire home/apt,185,30,10,2019-05-11,0.53,4,323 +17178617,2 Blocks from Subway | Artsy BK Space,106940781,Corey,Brooklyn,Bushwick,40.69838,-73.93527,Private room,50,21,0,,,1,0 +17186648,Awesome Bedroom in Beautiful Brooklyn Apartment,92322271,Mark,Brooklyn,Crown Heights,40.67055,-73.94616,Private room,65,2,0,,,2,0 +17186834,Private charming room for gate away.,59505164,Ali,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9449,Private room,59,4,74,2019-06-15,2.52,1,85 +17187219,Beautiful and Ridiculously Spacious Master Bedroom,115543091,Yana,Brooklyn,Flatbush,40.65221,-73.95848,Private room,53,2,0,,,1,0 +17187785,Private room in bustling East Village,105631352,Taylor,Manhattan,East Village,40.72537,-73.97878,Private room,65,2,147,2019-06-20,5.07,3,18 +17187942,"Cozy, neat, spacious 2 BR apartment in East Harlem",2247818,Gonda,Manhattan,East Harlem,40.80268,-73.94051,Entire home/apt,100,10,28,2019-05-31,0.97,1,0 +17188328,Cozy studio in the heart of the West Village,6375225,Jennifer,Manhattan,West Village,40.73376,-73.99982,Entire home/apt,150,3,0,,,1,0 +17188790,Large Bedroom next to Prospect Park and BK Museum,45775461,Azza,Brooklyn,Prospect Heights,40.67365,-73.96384,Private room,80,3,4,2019-06-14,0.15,1,88 +17189484,The Traveler's Suite,21376087,LeeAna,Brooklyn,Greenpoint,40.73301,-73.95835,Entire home/apt,100,2,176,2019-06-30,6.02,1,14 +17189799,Spacious Studio - Midtown East,4316106,George,Manhattan,Midtown,40.7544,-73.96721,Entire home/apt,200,2,43,2019-04-10,1.48,1,0 +17189812,"Beautiful, Modern, Airy, Comfy, Art Music Studio",4576564,Chris,Queens,East Elmhurst,40.75625,-73.88957,Private room,64,1,44,2019-04-20,2.21,1,0 +17189819,"Bright, beautiful room, just block to A, C train",10210950,Olya,Brooklyn,Bedford-Stuyvesant,40.67704,-73.91484,Private room,60,1,13,2017-12-13,0.46,1,0 +17192158,Comfortable and Cozy House near Columbia,21638962,Su Lim,Manhattan,Washington Heights,40.84543,-73.9401,Entire home/apt,50,1,1,2017-02-19,0.03,1,0 +17192309,3 Bedroom Cozy Apartmnet,66978896,Viviana,Brooklyn,Bushwick,40.69149,-73.91291,Entire home/apt,160,4,21,2018-09-20,0.75,2,189 +17192800,法拉盛summer家(C)closed to JFK&LGA&Citi Field#Parking,62023756,Chang,Queens,Fresh Meadows,40.74637,-73.7842,Private room,55,1,50,2019-07-07,3.51,3,67 +17193761,Ideal Cute Sunny Room,97513787,Daniel,Manhattan,Chinatown,40.71573,-73.99176,Private room,63,20,31,2018-09-23,1.09,5,218 +17197830,Sunny room in quiet area of Brooklyn,2204797,Vita,Brooklyn,Bushwick,40.68185,-73.90455,Private room,30,7,0,,,1,0 +17208528,Room w/ Private Bathroom in Heart of Bushwick,84523696,Esaies,Brooklyn,Bushwick,40.69423,-73.91993,Private room,90,2,3,2017-07-30,0.12,1,0 +17209321,Tranquil Room in Manhattan,45731391,Laurence,Manhattan,Lower East Side,40.72045,-73.99004,Private room,98,2,20,2019-06-23,0.77,3,0 +17209680,"Sunny, quiet and oh-so-central East Village nest.",1226375,Tina,Manhattan,East Village,40.72334,-73.9839,Entire home/apt,110,2,29,2019-05-27,1.53,1,15 +17210810,Perfect West Village Apartment,6950431,Mike And Lori,Manhattan,West Village,40.73532,-74.0031,Entire home/apt,170,3,1,2017-02-20,0.03,1,0 +17210984,Artists' Room in Beautiful Brownstone Brooklyn,115845698,Chelsea,Brooklyn,Carroll Gardens,40.68148,-73.99315,Private room,95,3,72,2019-06-30,2.56,1,67 +17211246,Cute clean 1 rm,31546047,Miyu,Manhattan,Hell's Kitchen,40.76553,-73.98879,Private room,118,2,16,2019-07-01,0.63,1,24 +17211583,Minimalist Hideaway In The Heart of Bushwick,278393,Dylana,Brooklyn,Bushwick,40.69796,-73.92409,Private room,43,2,88,2019-06-12,3.02,3,84 +17211881,A Cozy 2-Bedroom Apartment in Astoria.,115854849,Cem,Queens,Astoria,40.77355,-73.92552,Entire home/apt,100,7,4,2019-05-29,0.17,1,0 +17211908,Sunny and Serene,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68412,-73.92734,Private room,45,2,61,2019-06-23,2.40,3,110 +17212052,1BR - Prime Williamsburg Location - Outdoor Space,12570191,Katie,Brooklyn,Williamsburg,40.71262,-73.96251,Entire home/apt,199,2,38,2019-06-16,1.32,1,94 +17214699,Charming Apt Mins Away from City,114621718,Hope,Brooklyn,Gowanus,40.67706,-73.98406,Entire home/apt,146,1,106,2019-06-29,3.78,2,341 +17218433,ACTOR PHILIP SEYMOUR HOFFMAN LIVED HERE,4554793,Aryn,Manhattan,Chelsea,40.73899,-73.99912,Entire home/apt,239,3,15,2019-02-17,0.65,1,42 +17219303,Stylish Apt in the Heart of Greenwich Village,1700359,Sharon,Manhattan,NoHo,40.72723,-73.99186,Entire home/apt,195,30,5,2019-05-31,0.19,1,34 +17219608,Beautiful 2 Bedroom Apartment in Ridgewood,115939440,Mika,Queens,Ridgewood,40.69645,-73.90223,Entire home/apt,100,2,1,2017-07-14,0.04,1,0 +17220307,"Designer's picturesque, large flat",115946844,Kelsey,Brooklyn,Brooklyn Heights,40.69819,-73.99324,Entire home/apt,103,2,13,2017-12-30,0.45,1,0 +17222011,Spacious Apartment in the Heart of Manhattan,3558557,Natalie,Manhattan,Gramercy,40.73556,-73.98913,Entire home/apt,159,2,15,2019-05-12,0.57,1,33 +17222454,Sun Room Family Home LGA Airport NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.76367,-73.87088,Private room,48,1,417,2019-07-07,14.36,5,338 +17223109,Cute Chelsea Apartment - 1 BR - Amazing Location!,10160214,Mario,Manhattan,Chelsea,40.73977,-73.99938,Entire home/apt,190,12,5,2019-06-06,0.50,1,32 +17223725,"Artistic Room with AC,3 Mins walk to the subway",37163867,Mada,Queens,Long Island City,40.75455,-73.92006,Private room,80,30,18,2019-07-01,0.62,1,92 +17224136,Spacious Apt. 20 Mins from Manhattan!,81876750,Dan,Queens,Astoria,40.76043,-73.91465,Private room,96,2,18,2019-04-28,0.62,1,364 +17224372,Friendly Room 20-202,115993835,Shimin,Brooklyn,Sunset Park,40.63992,-74.0076,Private room,28,1,31,2019-03-10,1.08,5,1 +17224797,Quiet Apt in the Upper West Side near Central Park,115567902,Élodie,Manhattan,Upper West Side,40.78141,-73.97681,Entire home/apt,160,4,22,2019-03-22,0.75,1,0 +17225037,Private Room20-102,115993835,Shimin,Brooklyn,Sunset Park,40.63929,-74.00669,Private room,30,1,27,2019-04-01,1.64,5,168 +17231011,Clean 1br w/Parking Incl. also 10min near JFK/LGA,116056294,Kabak,Queens,Rego Park,40.73048,-73.85331,Private room,50,1,34,2019-07-06,1.17,1,347 +17233611,Beachy sun drenched studio in NYC,6705828,Patricia,Manhattan,Gramercy,40.7363,-73.98969,Entire home/apt,300,3,0,,,1,93 +17233932,Private Bedroom in Williamsburg,17928071,Mabel,Brooklyn,Williamsburg,40.71162,-73.95631,Private room,85,3,12,2019-05-14,0.58,2,289 +17234796,Astoria 1BR in Quiet Corner Close to Manhattan,261608,Aron,Queens,Ditmars Steinway,40.772,-73.91848,Entire home/apt,60,4,3,2018-10-14,0.10,1,0 +17234955,Getaway 2 Bed 1 Bath close to park,113805886,Yaacov,Manhattan,Upper East Side,40.77747,-73.95193,Entire home/apt,190,31,4,2019-01-03,0.21,33,299 +17236095,Spectacular 2 bed 1 bath Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77878,-73.9501,Entire home/apt,180,31,10,2019-05-31,0.55,33,331 +17236462,Large 2 bed 2 bath close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77823,-73.95127,Entire home/apt,235,31,9,2019-02-19,0.39,33,333 +17237486,Bright & Spacious Chelsea Studio,13238971,Adel,Manhattan,Chelsea,40.74281,-73.99969,Entire home/apt,175,4,5,2018-06-21,0.23,1,8 +17237922,Big 1 bdroom w balcony Williamsburg,116126452,Brian,Brooklyn,Williamsburg,40.70721,-73.95341,Entire home/apt,160,2,17,2018-07-09,0.59,1,3 +17239021,"East Village, private room with free breakfast",115395049,Adi And Evangel,Manhattan,East Village,40.72598,-73.98856,Private room,145,1,25,2019-05-26,0.88,2,329 +17239212,Cozy Brooklyn Apartment,51706510,Daniella,Brooklyn,Gowanus,40.6707,-73.99118,Shared room,37,1,9,2017-05-08,0.31,1,0 +17239321,Awesome Apartment in the E Village!,6489574,Wilson,Manhattan,East Village,40.72759,-73.98619,Entire home/apt,140,1,31,2019-06-30,1.14,1,1 +17239807,Private entrance large room BK for your NYC stay!,40146897,Eric,Brooklyn,Crown Heights,40.67203,-73.922,Private room,45,2,18,2018-06-04,0.63,5,0 +17240729,"Guest Room in High Ceiling Duplex, Williamsburg! 1",40511252,Auset,Brooklyn,Williamsburg,40.70585,-73.9531,Private room,52,30,4,2019-03-24,0.17,3,294 +17242854,Yankee Stadium apartment in Bronx,8159536,Genae,Bronx,Concourse,40.83243,-73.92035,Private room,40,1,11,2019-02-20,0.42,3,239 +17249755,Bedstuy/Bushwick - Fully Renovated One Bedroom,11638358,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69,-73.93783,Entire home/apt,100,4,77,2019-06-16,2.66,2,100 +17251611,"Cozy bdrm. Astoria, Queens. 10 min to Manhattan.",26561588,Tyler,Queens,Astoria,40.7578,-73.92368,Private room,40,2,1,2017-02-20,0.03,1,0 +17252037,Sunny atelier in bustling East Village,105631352,Taylor,Manhattan,East Village,40.72412,-73.97815,Private room,74,2,29,2018-04-22,1.01,3,0 +17252229,Balcony on 2nd floor Entire Apt close to Subway,116268542,Sunshine,Brooklyn,East New York,40.67404,-73.88276,Entire home/apt,62,1,98,2019-06-25,3.40,1,23 +17252480,Private Studio in a superb location,3726590,Carolyn Li Ming,Manhattan,Upper East Side,40.76851,-73.95506,Entire home/apt,150,1,6,2019-05-02,0.21,1,7 +17253932,One bedroom apt right on Franklin Ave,12334470,Rebecca,Brooklyn,Crown Heights,40.66881,-73.95743,Entire home/apt,100,50,8,2018-01-02,0.33,1,0 +17254708,Private BR in Manhattan right near express trains!,2158706,James,Manhattan,Harlem,40.81288,-73.94155,Private room,49,1,11,2017-08-11,0.40,1,0 +17254855,Cozy Greenpoint bedroom #2,26899015,Daniel,Brooklyn,Greenpoint,40.72317,-73.94856,Private room,70,2,0,,,1,0 +17255171,An Oasis in the Big Apple,40032009,Arianna,Manhattan,Morningside Heights,40.80387,-73.96367,Entire home/apt,200,5,2,2017-03-14,0.07,2,0 +17255526,Brooklyn Bushwick,112261228,Yuval,Brooklyn,Bushwick,40.69718,-73.92157,Private room,45,2,72,2019-06-29,2.54,1,51 +17255880,Modern Rooftop Loft W/ Private Ensuite & Cityviews,48076117,Shelley,Brooklyn,Crown Heights,40.6752,-73.93215,Private room,75,1,213,2019-06-30,7.71,2,52 +17255913,Newly Renovated / No cleaning Fee / Hell's Kitchen,4454849,Chase,Manhattan,Hell's Kitchen,40.76407,-73.99203,Entire home/apt,131,2,0,,,1,0 +17256799,URBAN LUXURY 2BR DUPLEX~24/7 DOORMAN/GYM~SUTTON PL,2856748,Ruchi,Manhattan,Midtown,40.75802,-73.96125,Entire home/apt,500,90,0,,,49,364 +17257339,Contemporary. Spacious Apartment. Close to Ferry.,115259709,Paul,Staten Island,St. George,40.64508,-74.08126,Entire home/apt,180,2,59,2019-06-25,2.21,1,135 +17257473,LIVING THE NYC EXPERIENCE,7889472,Jose Luis,Manhattan,Harlem,40.81922,-73.95672,Entire home/apt,355,5,14,2018-04-30,0.49,1,89 +17258228,Little Red and the big GWB,116333529,Gina,Manhattan,Washington Heights,40.85076,-73.94047,Private room,50,1,0,,,1,0 +17261922,Townhouse apt. Close to city. 3 bedrooms & 2 bath,116365995,Dan,Queens,Woodside,40.74705,-73.90792,Entire home/apt,275,4,31,2019-07-04,1.21,2,283 +17263207,Brooklyn home. Comfort and clean. Liguria room.,2787,John,Brooklyn,Bensonhurst,40.60877,-73.97382,Private room,49,1,19,2019-06-08,0.70,6,360 +17263550,Thelonious Monk room at The Harlem Townhouse,3236595,René,Manhattan,Harlem,40.80754,-73.95151,Private room,58,2,68,2019-06-26,2.35,4,1 +17265284,"Luxury/3 bdrms/2 baths/private parking/1,000 sqft",116396065,Amy,Brooklyn,Sheepshead Bay,40.6027,-73.9486,Entire home/apt,179,2,101,2019-07-06,3.53,1,211 +17266124,"Shay's Place #1 +( 1 Bdrm. Apt ) +5 mins From JFK",116404073,Sheila,Queens,Springfield Gardens,40.66812,-73.76303,Entire home/apt,95,1,240,2019-07-07,9.66,2,253 +17266255,Custom Designed West Village 2 Bedroom,29893723,Sam,Manhattan,West Village,40.73115,-74.00429,Entire home/apt,158,1,5,2017-05-11,0.18,1,0 +17267017,Spacious Private 1BR with more sleeping space,95341719,Estie,Brooklyn,Crown Heights,40.67013,-73.94397,Entire home/apt,165,2,23,2019-07-04,0.83,3,182 +17267665,"Spacious, Private 1BR with more sleeping space",95341719,Estie,Brooklyn,Crown Heights,40.66977,-73.94341,Entire home/apt,169,2,31,2019-06-26,1.15,3,175 +17268091,Entire Studio Apt in Trendy Brooklyn - Sunny&clean,6396827,Gyaltsen Benita,Brooklyn,Crown Heights,40.67083,-73.94808,Entire home/apt,135,2,18,2017-11-20,0.64,1,0 +17268111,Lighted Luxury Studio!,40821640,Alina,Queens,Forest Hills,40.72737,-73.85156,Entire home/apt,50,27,0,,,1,0 +17268340,"Spacious, Private Apartment in Bed Stuy, Brooklyn",116427778,Mel,Brooklyn,Bedford-Stuyvesant,40.68318,-73.91682,Entire home/apt,85,3,35,2018-07-30,1.22,1,0 +17269114,RH - Budget Friendly room in the Greenpoint Area!,11612872,Robert,Brooklyn,Greenpoint,40.73643,-73.95495,Private room,53,2,78,2019-06-07,2.68,3,14 +17269342,Large one-bedroom in of Manhattan mid-town west,114890218,Marc,Manhattan,Hell's Kitchen,40.76269,-73.99139,Entire home/apt,185,7,20,2019-03-27,0.71,1,23 +17269656,"Magical, Welcoming & Beautiful Huge 1 Bedroom Apt",57655724,Kay,Manhattan,Midtown,40.75598,-73.97034,Entire home/apt,260,2,64,2019-06-16,2.36,1,131 +17270768,Newly Renovated Greenpoint Abode,8833885,Leslie,Brooklyn,Greenpoint,40.72385,-73.9458,Entire home/apt,160,2,91,2019-06-27,3.35,2,101 +17277132,"BROOKLYN HEIGHTS Private Studio, 1 stop Manhattan!",5130754,Patrick,Brooklyn,Brooklyn Heights,40.69343,-73.99611,Entire home/apt,100,4,3,2019-06-15,0.20,1,4 +17278544,SUNNY AND SPACIOUS FULL FLOOR APT!!,11661027,Jennifer,Brooklyn,Greenpoint,40.72699,-73.9581,Entire home/apt,240,2,16,2019-05-05,0.57,1,302 +17280743,Essex House Historic Condo/hotel,29339405,Haydee,Manhattan,Midtown,40.76579,-73.97701,Entire home/apt,300,5,3,2017-07-18,0.12,1,115 +17280847,Beautiful 2BR with Private Rooftop Deck LES,7384312,Jackie,Manhattan,Lower East Side,40.71306,-73.98715,Entire home/apt,250,1,67,2019-06-23,2.46,1,185 +17281121,"Beautiful 1 bedroom apart, Washington Heights",17713747,Polly,Manhattan,Washington Heights,40.85369,-73.93237,Private room,60,7,1,2018-01-06,0.05,3,0 +17281347,Private Garden Apt in Boerum Hill,15999314,Stephanie,Brooklyn,Boerum Hill,40.68749,-73.98701,Entire home/apt,149,2,0,,,1,0 +17283064,法拉盛summer家(B)closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74624,-73.78327,Private room,69,1,62,2019-07-05,4.26,3,65 +17284471,Modern Apt on Best Location in Brooklyn !,1409823,Fernando,Brooklyn,Bedford-Stuyvesant,40.68859,-73.94998,Entire home/apt,75,5,16,2019-05-28,0.58,1,15 +17285384,Manhattan cozy bedroom with private bathroom,59794802,Lilian,Manhattan,Hell's Kitchen,40.76642,-73.99423,Private room,150,6,0,,,1,51 +17286647,Charming 1 Bedroom in center of East Village,3407346,Anna,Manhattan,East Village,40.72645,-73.98591,Entire home/apt,150,90,28,2019-04-30,1.03,1,0 +17287645,Wonderful Charming Apt- Columbia University Area,40741349,Mitsue,Manhattan,Washington Heights,40.83705,-73.94083,Private room,60,1,3,2018-07-01,0.21,1,341 +17294950,A Room with a View at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.69554,-73.92458,Private room,80,3,179,2019-07-03,6.17,3,191 +17295495,Private Room in Hell's Kitchen,6807898,Sam,Manhattan,Hell's Kitchen,40.76076,-73.99266,Private room,110,1,7,2019-06-23,0.24,1,45 +17297014,Chelsea/Union Square cozy studio,126718,Alejandro,Manhattan,Chelsea,40.73958,-73.9975,Entire home/apt,160,2,1,2017-06-25,0.04,1,0 +17297467,Big Beautiful Room in Quiet Area with Private Bath,55198931,Monica & Robin,Brooklyn,Flatbush,40.64774,-73.96517,Private room,65,2,12,2017-10-03,0.44,1,294 +17297799,HUGE bright bedroom in prime Williamsburg!,17518837,Anna Marie,Brooklyn,Williamsburg,40.7179,-73.95702,Private room,72,21,1,2017-02-21,0.03,1,0 +17298366,BK diggs,50153931,Jaclyn,Brooklyn,DUMBO,40.70206,-73.98804,Entire home/apt,250,1,0,,,1,0 +17298590,Your Home Away from Home,2168789,Kimberly,Brooklyn,Greenpoint,40.72938,-73.95675,Entire home/apt,175,2,15,2019-06-21,0.54,1,4 +17299278,E. W'burg Private Room near subway,116709076,Jay,Brooklyn,Williamsburg,40.70245,-73.9427,Private room,80,15,47,2019-04-09,1.86,1,8 +17299611,Private bedroom in the heart of West Village,23919461,Cesar,Manhattan,West Village,40.73381,-74.00365,Private room,150,3,87,2019-06-20,3.09,2,39 +17300167,"Spacious, modern, cozy & bright Williamsburg oasis",32694917,Teresa,Brooklyn,Williamsburg,40.71186,-73.95402,Entire home/apt,144,2,24,2019-07-06,1.43,1,14 +17302040,Private Room in Bed-Stuy Apartment,89241337,Amy,Brooklyn,Bedford-Stuyvesant,40.68957,-73.9457,Private room,45,1,0,,,1,0 +17302836,Private room w/private bathroom near Central Park!,4428742,Banu,Manhattan,Upper East Side,40.76875,-73.95965,Private room,95,2,2,2017-06-11,0.07,1,0 +17304795,Charming bedroom in Manhattan,78866824,Ria,Manhattan,Upper West Side,40.80238,-73.96503,Private room,100,2,16,2018-07-26,0.56,1,0 +17304849,Spacious Brownstone 1Bd,46493114,Cely,Brooklyn,Crown Heights,40.67756,-73.95427,Private room,56,4,34,2019-06-20,1.23,1,18 +17305490,Gorgeous Studio & Balcony Garden @ THE MOTHERSHIP,4680813,Gaia,Queens,Astoria,40.76752,-73.9314,Entire home/apt,150,7,12,2019-05-31,0.42,1,3 +17306128,MODERN ROOM IN CHARMING CLINTON HILL+ SWEET VIEW 3,4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69616,-73.96198,Private room,95,30,4,2018-05-28,0.14,11,311 +17306146,MODERN ROOM IN CHARMING CLINTON HILL+ SWEET VIEW 1,4291007,Graham And Ben,Brooklyn,Clinton Hill,40.69521,-73.96199,Private room,95,30,6,2019-02-28,0.22,11,231 +17311213,Backpackers Dream for 1 at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.69652,-73.92351,Private room,70,3,174,2019-06-25,6.03,3,202 +17311284,Plant-filled 1 BD by Prospect Park,9152821,Jazmine,Brooklyn,Flatbush,40.65258,-73.9624,Entire home/apt,100,1,0,,,1,0 +17312157,Beautiful room in Brooklyn (Bushwick),1267985,Thea,Brooklyn,Bushwick,40.70108,-73.9289,Private room,60,14,1,2017-02-25,0.03,1,0 +17314298,Spacious and charming apartment in Brooklyn,31857792,Marija,Brooklyn,Cobble Hill,40.68766,-73.99125,Entire home/apt,170,4,8,2019-06-03,0.29,1,1 +17314998,Furnished room-5A-1 110th st-3rd Ave.,18212433,Veronique Camille,Manhattan,East Harlem,40.79536,-73.94197,Private room,55,30,0,,,8,341 +17315299,Furnished Room/ 550/3,18212433,Veronique Camille,Manhattan,Washington Heights,40.85131,-73.93235,Private room,50,30,0,,,8,358 +17316565,Beautiful apartment with sweeping NYC views,116854478,Travis,Brooklyn,Carroll Gardens,40.68328,-73.99846,Entire home/apt,250,4,0,,,1,0 +17317366,Manhattan Midtown Vacation Home away from Home,116870039,Jj,Manhattan,Kips Bay,40.74511,-73.9778,Entire home/apt,200,3,72,2019-06-21,2.55,1,249 +17317934,Modern 1 bd in the heart of East Village,34386241,Jesse,Manhattan,East Village,40.7261,-73.98421,Entire home/apt,175,2,4,2017-04-10,0.14,2,0 +17318207,"Attractive Room, Quiet Area . Easy commute Man.",116881616,June,Brooklyn,Bath Beach,40.60382,-74.01083,Private room,45,4,17,2019-06-07,0.65,2,17 +17318814,Beautiful Sunlit Retreat in Manhattan,116889152,BeautifulHarlem,Manhattan,Harlem,40.81961,-73.94583,Entire home/apt,175,2,145,2019-06-23,5.00,2,127 +17319360,Private suite,42814202,Irisha,Queens,Fresh Meadows,40.74227,-73.78707,Entire home/apt,90,1,26,2019-07-08,0.90,3,358 +17321243,Sweet deco room in amazing location,116871769,Paige,Brooklyn,Williamsburg,40.71018,-73.94858,Private room,78,1,55,2019-06-30,2.01,1,345 +17325829,My little LOFT in Brooklyn :),104235754,Blessing,Brooklyn,Bedford-Stuyvesant,40.68336,-73.95421,Entire home/apt,100,1,27,2019-07-06,0.98,1,39 +17326116,Charming place on the hippest street in NYC,63771415,Annie,Manhattan,East Village,40.72713,-73.98159,Entire home/apt,175,2,35,2019-06-16,1.22,1,0 +17326533,曼哈顿景色豪华公寓,54001762,Faye,Manhattan,Hell's Kitchen,40.76189,-73.99751,Private room,99,10,2,2017-06-16,0.08,1,0 +17329054,Comfortable bedroom in shared apartment,3782666,Lev,Queens,Astoria,40.76326,-73.91673,Private room,70,4,0,,,1,0 +17329090,Live Like a Local in West Village!,116992515,Palma,Manhattan,West Village,40.73023,-74.00294,Entire home/apt,250,3,28,2019-06-17,1.03,1,51 +17330186,Private Room East Village near Union Square,114075917,Dane,Manhattan,East Village,40.73241,-73.98878,Private room,91,6,1,2017-11-12,0.05,1,0 +17331192,Williamsburg Bedfd Stop 1000 sqft 1 Bed + 1.5 Bath,10291534,Cat,Brooklyn,Williamsburg,40.71372,-73.96326,Entire home/apt,200,1,63,2019-06-27,2.29,1,270 +17332200,Renovated Cozy room for 2 or solo traveler,10475653,Izabel,Brooklyn,Kensington,40.64769,-73.97435,Private room,40,1,122,2019-06-27,4.21,3,222 +17333015,Private room in stylish uptown apartment,2653648,Kareem,Manhattan,Harlem,40.82316,-73.95343,Private room,75,30,1,2018-04-26,0.07,2,133 +17339688,Beautiful large private room in Sunnyside Gardens,117108525,Sen,Queens,Sunnyside,40.74603,-73.91412,Private room,50,1,72,2019-06-24,2.98,2,129 +17339881,Brownstone Studio,115854410,Michelle,Brooklyn,Bedford-Stuyvesant,40.68469,-73.947,Entire home/apt,110,3,116,2019-06-21,4.03,1,216 +17342599,"Stylish, Spacious room Express train to Midtown",5334697,Shane,Manhattan,Washington Heights,40.84114,-73.93639,Private room,69,5,33,2019-07-02,1.17,3,1 +17344027,Relaxing Stylish Room near Train and Attractions,42024722,Daniel,Manhattan,Chelsea,40.74462,-74.00139,Private room,103,5,77,2019-07-07,2.73,2,79 +17345621,Huge beautiful apartment - entire floor!,12501130,Phuong,Brooklyn,Crown Heights,40.67656,-73.93705,Entire home/apt,100,2,106,2019-06-16,3.72,1,28 +17346379,"Bright, comfy, elegant room near Express Train",5334697,Shane,Manhattan,Washington Heights,40.84099,-73.93694,Private room,73,5,41,2019-06-21,1.45,3,228 +17347938,Large Modern 3-bdrm Duplex Apt near Manhattan,108982711,Diana,Queens,Astoria,40.75651,-73.91485,Entire home/apt,180,2,70,2019-07-01,2.64,1,175 +17349377,One Bedroom Apt in NYC on 1st Floor!,2450673,Christopher,Manhattan,Washington Heights,40.84417,-73.94063,Entire home/apt,79,1,4,2018-01-07,0.14,1,0 +17356639,Spacious Brooklyn One Bedroom/Loft***Morgan L Stop,40313256,Joey,Brooklyn,Williamsburg,40.70552,-73.93,Entire home/apt,195,4,0,,,1,0 +17358323,Private Apt Near NYC Airport & Northshore Hospital,65232368,Adisson,Queens,Douglaston,40.76978,-73.73915,Entire home/apt,99,1,49,2019-06-30,1.70,1,247 +17360353,Great spacious room in Stylish apt near Highline,42024722,Daniel,Manhattan,Chelsea,40.7456,-74.00107,Private room,100,5,66,2019-07-01,2.37,2,99 +17364659,Large Cozy 1 bedroom Apt in South Williamsburg,1789596,Cris,Brooklyn,Williamsburg,40.70744,-73.95417,Entire home/apt,125,6,10,2019-01-03,0.36,1,239 +17364675,Lovely Bedroom in Quiet Prospect Heights Apartment,24878388,Johanna,Brooklyn,Prospect Heights,40.67305,-73.96824,Entire home/apt,149,5,1,2017-08-22,0.04,2,0 +17365005,Awesome Manhattan Midtown Apartment,16328732,Wenli,Manhattan,Roosevelt Island,40.76253,-73.95001,Entire home/apt,58,2,9,2017-08-27,0.32,1,0 +17365636,"Greenpoint, Brooklyn - Spacious Private Room",3537298,Rachel,Brooklyn,Greenpoint,40.7355,-73.95677,Private room,75,28,3,2017-05-27,0.11,1,0 +17366042,An Oasis in the Big Apple,40032009,Arianna,Manhattan,Morningside Heights,40.80391,-73.96576,Entire home/apt,140,5,0,,,2,0 +17366174,"Modern & Luxurious 1 Bedroom, close to A/J Trains!",40426686,Amin,Queens,Ozone Park,40.68572,-73.8493,Entire home/apt,69,4,0,,,1,0 +17366414,3 Bed/ 1.5 Bath Midtown Apt near Empire State,117347203,Peggy,Manhattan,Kips Bay,40.7443,-73.97925,Entire home/apt,250,5,69,2019-06-26,2.44,1,163 +17366807,"Cozy 1 bedroom, Lower East Side",40438814,Francesco,Manhattan,East Village,40.72117,-73.98215,Entire home/apt,160,3,31,2019-01-13,1.08,1,136 +17366942,Bedroom + Private Bath Near Central Park & Subways,103960,Nicolle,Manhattan,Harlem,40.80113,-73.95287,Private room,70,4,35,2017-12-09,1.24,1,0 +17367004,Chic Space in Chelsea,572879,Ivan,Manhattan,Chelsea,40.7435,-74.00119,Private room,289,2,128,2019-06-17,4.52,1,252 +17367175,PRIVATE ROOM - Sunny and Spacious - Brooklyn Loft,4120523,Aurelien,Brooklyn,Williamsburg,40.70616,-73.92918,Private room,29,2,58,2019-02-11,2.02,2,0 +17367187,Superhost HUGE Room+Private Bath -Yankee Stadium,11196496,Amílcar,Bronx,Highbridge,40.83173,-73.92824,Private room,75,1,127,2019-06-30,4.45,1,134 +17367289,"Cozy 1BD near JFK, Beach, Subway, Buses, & Kitchen",112910861,Francisca,Queens,Far Rockaway,40.59745,-73.76032,Private room,35,1,61,2019-06-06,2.12,2,124 +17368006,Cabins at Chelsea (NYC),117365574,Maria,Manhattan,Chelsea,40.74819,-73.9954,Private room,82,1,147,2019-06-23,5.08,5,292 +17368958,"Amazin 1BD in Queens, JFK, St John's Hosp, Kitchen",112910861,Francisca,Queens,Far Rockaway,40.59692,-73.7602,Private room,35,1,42,2019-05-30,1.52,2,124 +17369078,Cozy room in Prospect Heights,16066047,Allegra,Brooklyn,Crown Heights,40.67919,-73.95918,Private room,70,2,12,2019-06-28,0.47,1,120 +17369530,Spacious Private Room in Beautiful Audubon Park,8140134,Brad,Manhattan,Washington Heights,40.83712,-73.94664,Private room,75,2,2,2017-12-27,0.10,1,0 +17370778,Gem In Park Slope,1339545,Nina & Keith,Brooklyn,Park Slope,40.67005,-73.97981,Entire home/apt,120,3,125,2019-06-25,4.51,2,61 +17371795,"Room at Artist Apt in Wburg, BK",117399779,Cacho,Brooklyn,Williamsburg,40.71304,-73.96497,Private room,200,3,5,2017-10-08,0.18,1,0 +17376200,Nice clean room in Brooklyn,42864513,Bradford,Brooklyn,Bedford-Stuyvesant,40.68469,-73.9375,Private room,65,5,69,2019-06-13,2.40,1,104 +17376723,*Rare Find* Fantastic 2 Bed Apt inTimes Square,15034908,Trendi,Manhattan,Hell's Kitchen,40.7621,-73.99354,Entire home/apt,178,3,84,2019-06-16,2.92,2,74 +17380055,Immaculate 1BR in quiet Bedstuy brownstone.,25270209,Robinette,Brooklyn,Bedford-Stuyvesant,40.68146,-73.94757,Entire home/apt,45,2,3,2017-03-01,0.10,1,0 +17380431,Large sunny park slope apartment,1012628,Elizabeth,Brooklyn,Park Slope,40.67135,-73.97759,Entire home/apt,150,1,0,,,1,0 +17380887,Prime Williamsburg Location! 10 min from Manhattan,32405588,Marco,Brooklyn,Williamsburg,40.71059,-73.96002,Private room,99,3,46,2019-06-24,1.62,2,141 +17381819,Cozy modern studio in heart of LES,43682230,Eric,Manhattan,Lower East Side,40.72056,-73.98539,Entire home/apt,325,2,2,2017-09-22,0.09,1,180 +17382067,Georgeous 1BR - Modern Cozy Clean - Great location,108621536,Annabelle,Manhattan,Upper East Side,40.77279,-73.94696,Entire home/apt,209,4,2,2017-09-18,0.08,1,0 +17382091,"Quiet, Bright, 2 Story Home Close to It All",115827173,David,Queens,Briarwood,40.71512,-73.81928,Entire home/apt,249,4,6,2019-06-01,0.29,2,353 +17382679,INCREDIBLE TOWNHOUSE 4 STORIES 5 BEDROOMS 3 BATH,34474212,Vinit,Manhattan,West Village,40.73444,-74.00129,Entire home/apt,600,2,93,2019-06-23,3.38,1,251 +17382781,Spacious beautiful bedroom:),73541674,Dioni,Queens,Ditmars Steinway,40.77367,-73.91517,Private room,40,3,0,,,2,82 +17383253,★ NEW 2 BEDROOM APT NEXT TO CENTRAL PARK WEST★,9293730,Inna,Manhattan,Upper West Side,40.79584,-73.96242,Entire home/apt,135,30,5,2019-05-11,0.21,16,200 +17383677,"@Ferry,HUGE 2Br/3beds. Private,Renovated/Stylish..",117492425,Dine,Staten Island,St. George,40.64596,-74.08059,Entire home/apt,65,4,96,2019-07-01,3.42,6,147 +17383929,Spacious Brooklyn Bedroom For the Month of Nov.,117498033,Luciana,Brooklyn,Crown Heights,40.67561,-73.93138,Private room,35,20,0,,,1,0 +17384675,Brooklyn's Cozy Jewel,117507630,Faith,Brooklyn,Crown Heights,40.67018,-73.93224,Entire home/apt,99,4,55,2019-06-26,2.06,2,17 +17385564,MONTHLY PRICE- Perfect for one person in Astoria,40549648,Luiza,Queens,Astoria,40.75832,-73.91448,Private room,47,15,23,2019-05-31,0.83,2,31 +17385865,Cozy PRIVATE bathroom CLEAN New Construction,19303369,Hiroki,Queens,Elmhurst,40.73889,-73.87713,Private room,35,30,0,,,37,33 +17385892,Light-Filled Flatiron: Double Bed 'n Private Bath,117521391,Cassia,Manhattan,Gramercy,40.73828,-73.98954,Private room,250,3,33,2019-05-06,1.18,1,167 +17387135,Intimate Williamsburg Apartment,1450005,Michael,Brooklyn,Williamsburg,40.71493,-73.95084,Entire home/apt,90,5,2,2017-05-07,0.07,1,0 +17387259,Cozy charming room close to Prospect Park,20659301,Helen,Brooklyn,Prospect-Lefferts Gardens,40.65642,-73.96085,Private room,53,14,7,2019-06-30,0.27,1,173 +17388041,"Private Entrance,Room and Bathroom!",99556266,Mariano,Manhattan,East Harlem,40.7993,-73.93305,Private room,120,2,37,2018-08-03,1.33,2,304 +17396669,Sunny & Spacious - Private Master Bedroom near JFK,52132241,Pearl,Brooklyn,Crown Heights,40.67293,-73.93273,Private room,54,2,53,2019-06-02,2.30,1,8 +17400624,First Floor Studio on the Upper East Side!,20410925,Leyla,Manhattan,Upper East Side,40.78007,-73.94803,Entire home/apt,125,3,30,2019-06-28,1.08,1,4 +17404164,Sunny Studio near Central Park,71482332,Jacob,Manhattan,Upper East Side,40.76684,-73.96203,Entire home/apt,126,1,31,2019-01-03,1.12,1,0 +17405175,Joy,38294216,Rachel,Queens,South Ozone Park,40.66561,-73.81103,Private room,50,15,2,2019-04-19,0.39,4,190 +17405812,NYC - Upper west side Studio,117685023,Camilo,Manhattan,Upper West Side,40.80355,-73.96831,Entire home/apt,110,7,3,2017-07-31,0.11,1,0 +17405965,2 cozy rooms in a quiet building,39731713,Polina,Queens,Ridgewood,40.69934,-73.90348,Private room,45,3,0,,,1,0 +17407264,"Small Basic Room in Great Area: Long Term, 2 beds!",117699517,Leo & Family,Queens,East Elmhurst,40.75602,-73.88111,Private room,49,4,2,2018-12-13,0.09,1,355 +17411672,Space for Creating and Staying in Bed-Stuy,117742969,Doretha,Brooklyn,Bedford-Stuyvesant,40.69392,-73.9472,Entire home/apt,98,2,6,2019-06-09,0.93,1,359 +17415890,Ultimate Studio Sublet in heart of Williamsburg,9558820,Diana,Brooklyn,Williamsburg,40.71813,-73.95822,Entire home/apt,289,3,7,2018-07-19,0.26,1,0 +17417489,Huge Bedroom in Astoria for One (1) Professional,49117269,Varos,Queens,Astoria,40.75851,-73.92555,Private room,110,4,40,2019-07-05,1.41,2,47 +17417619,"Huge room, Social Home!",21697069,Kelly,Brooklyn,Kensington,40.64465,-73.97871,Private room,45,3,5,2017-04-12,0.18,1,0 +17418006,Luxury Apt Close to JFK Airport,110858930,Cordelia,Queens,Cambria Heights,40.69206,-73.74546,Entire home/apt,169,2,65,2019-06-26,2.33,1,263 +17418177,"Spacious, Private 2 BR , 4 Bathrooms in Brooklyn",95341719,Estie,Brooklyn,Crown Heights,40.66971,-73.94351,Entire home/apt,275,1,26,2019-06-21,0.96,3,271 +17420345,Beautiful Light Filled 1 Bedroom in Kosher Apt,106272021,Esther,Brooklyn,East Flatbush,40.66067,-73.93796,Private room,50,2,16,2019-06-15,0.57,3,43 +17420370,"Huge, Clean & Classy Studio Room in Shared Apt",76186812,Ula,Brooklyn,Bedford-Stuyvesant,40.68083,-73.94445,Private room,36,5,8,2019-05-29,1.31,2,0 +17420832,Cozy modern stay,25426687,Cathy,Brooklyn,Borough Park,40.64551,-73.9981,Entire home/apt,110,2,45,2019-07-06,1.65,1,342 +17423245,Sunny Quiet Room in Clean Modern Apartment,16145840,Nick,Manhattan,East Harlem,40.79877,-73.93964,Private room,105,3,21,2019-05-21,1.14,2,9 +17423343,LANDMARK TOWNHOUSE IN HISTORIC DISTRICT,13392996,Susan,Manhattan,Washington Heights,40.8339,-73.9383,Entire home/apt,75,4,75,2019-06-17,2.64,1,166 +17423413,Cozy apartment near JFK,59900881,Yessenia,Queens,Howard Beach,40.66406,-73.84599,Entire home/apt,100,7,37,2019-01-02,1.42,1,0 +17430505,Cozy Bedroom and Private Bath in Spacious Duplex,42835213,Zandelle,Brooklyn,East Flatbush,40.64841,-73.95178,Private room,75,4,27,2019-06-08,0.95,2,54 +17430853,Small room in Queens,113558700,Berat,Queens,Rego Park,40.72749,-73.86035,Private room,30,1,61,2019-06-08,2.17,3,361 +17430920,Standard New York girls room,117922187,Lei,Manhattan,Roosevelt Island,40.76437,-73.94844,Private room,150,1,0,,,1,88 +17431995,2 bedroom apt. in Manhattan-Gramercy apt building,117932348,Deborah,Manhattan,Gramercy,40.73521,-73.98147,Entire home/apt,155,20,25,2019-07-05,1.06,2,62 +17432325,Swanky Bushwick Penthouse,29655230,Josh,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93426,Private room,68,30,11,2017-09-30,0.39,1,87 +17432700,Safe and Convinient rooms close to NYC.,117930151,Feather Factory Hotel,Queens,Long Island City,40.74454,-73.94016,Private room,109,1,35,2019-05-27,1.23,2,364 +17433291,Amazing Loft in the heart of Williamsburg,117941939,Daniel,Brooklyn,Williamsburg,40.71269,-73.96409,Private room,20,14,3,2018-04-30,0.11,1,277 +17433538,Khimani's Pad,117945802,Shabari,Brooklyn,East Flatbush,40.6425,-73.94293,Entire home/apt,88,2,11,2017-07-30,0.39,1,0 +17433572,Royal Suite at Northern Lights Mansion,1261480,Diane,Manhattan,Harlem,40.80825,-73.95004,Private room,500,1,13,2018-10-03,0.62,2,361 +17434977,1B Large studio in Williamsburg with terrace,49704571,Krzysztof,Brooklyn,Williamsburg,40.71942,-73.94272,Entire home/apt,80,30,6,2019-01-19,0.22,8,156 +17435074,Spacious Bed and Bathroom in Brooklyn,117962524,Corley,Brooklyn,Sheepshead Bay,40.60913,-73.95254,Private room,100,1,1,2017-02-25,0.03,1,0 +17437106,Couch in Harlem Harvey Refugees only,33511962,Morgan,Manhattan,Harlem,40.81302,-73.95349,Shared room,10,1,0,,,1,0 +17437772,Private room in Harlem,200243,Laetitia,Manhattan,Harlem,40.8255,-73.9435,Private room,55,1,8,2019-05-14,0.28,2,293 +17441150,Cozy colorful kitchenette...,74104595,Marlene,Brooklyn,Bedford-Stuyvesant,40.68904,-73.92982,Entire home/apt,40,15,0,,,1,42 +17442248,Cute Private Room in UWS Apartment!,17687105,Shelby,Manhattan,Upper West Side,40.79215,-73.97108,Private room,80,1,0,,,1,0 +17446640,Clean and Comfortable,118084951,Liza,Brooklyn,Greenpoint,40.72214,-73.93725,Entire home/apt,75,1,162,2019-06-24,5.70,1,1 +17447150,1 BR Contemporary Luxury Apartment w W/D in UWS,15145088,Izi,Manhattan,Upper West Side,40.78688,-73.97403,Entire home/apt,184,30,3,2018-10-22,0.12,8,346 +17447168,"Private Sunny Room in Williamsburg, Brooklyn - NY",30054890,Gary,Brooklyn,Williamsburg,40.70818,-73.94952,Private room,56,2,4,2019-01-02,0.14,2,0 +17448930,Huge apt in heart of Williamsburg,118110284,David,Brooklyn,Williamsburg,40.71447,-73.96234,Entire home/apt,160,7,3,2019-06-12,0.12,1,43 +17450190,Small Cozy Room in Herald Square,28584159,Chelsea,Manhattan,Midtown,40.75001,-73.98629,Private room,65,300,1,2017-03-25,0.04,1,89 +17450196,Charming House!!,4378763,Antonio,Queens,Long Island City,40.75276,-73.93102,Private room,77,3,48,2019-06-22,1.72,3,332 +17455952,Cozy room w balcony in penthouse w private terrace,12767750,Juan Pablo,Manhattan,Harlem,40.81161,-73.94394,Private room,65,5,2,2017-10-15,0.07,1,0 +17456123,Private room in Bushwick close to Subway,48534640,Sucharita,Brooklyn,Bushwick,40.69601,-73.9069,Private room,35,15,2,2017-05-07,0.07,1,0 +17456705,Perfectly NYC,20851517,Maggie,Manhattan,Hell's Kitchen,40.76654,-73.98812,Private room,98,6,1,2018-12-17,0.15,3,8 +17456932,Ideal family spot in the upper west,5635997,Eldad,Manhattan,Upper West Side,40.79456,-73.96853,Entire home/apt,400,6,5,2019-04-24,0.19,1,108 +17457160,Sunny room in European-style apartment,432867,Bart,Brooklyn,Prospect Heights,40.67613,-73.97095,Private room,64,2,16,2018-06-27,0.57,1,6 +17457491,Great Loft space in the Heart of Bushwick,118199454,Michael,Brooklyn,Bushwick,40.6975,-73.92998,Private room,70,4,15,2019-06-16,1.05,1,35 +17458077,Studio Apartment in a Doorman Building,2610519,Michael,Manhattan,Flatiron District,40.74252,-73.991,Entire home/apt,250,1,2,2017-03-27,0.07,1,0 +17458291,RM,38294216,Rachel,Queens,South Ozone Park,40.66654,-73.81219,Private room,55,10,1,2018-08-11,0.09,4,300 +17458415,Spacious West Village 1 bed!,118208750,Stephen,Manhattan,West Village,40.73773,-74.00181,Entire home/apt,249,3,2,2017-06-25,0.08,1,0 +17459791,Bedroom Upper West Side 10min walk to Central Park,12588825,Kyle,Manhattan,Upper West Side,40.79358,-73.97452,Private room,175,4,3,2017-11-05,0.11,1,0 +17459930,Cozy room in prime williamsburg!,118226205,Sahar,Brooklyn,Williamsburg,40.71738,-73.94158,Private room,69,2,61,2019-06-22,2.14,3,42 +17460510,Harlem Charm,1397707,Jing,Manhattan,Harlem,40.81446,-73.9379,Entire home/apt,198,3,9,2019-06-22,0.35,1,127 +17461281,Sunny & Cozy 1BR/1BA Apartment In Upper NYC,4173425,Lin,Manhattan,Harlem,40.81767,-73.94051,Entire home/apt,69,2,65,2019-06-09,2.38,1,11 +17461341,Private Bedroom in Bedstuy,109773614,Fiz,Brooklyn,Bedford-Stuyvesant,40.67809,-73.9128,Private room,60,2,32,2018-06-10,1.15,1,0 +17461591,"Cozy, Quiet Abode near Times Square",2522596,Nina,Manhattan,Hell's Kitchen,40.76051,-73.99183,Entire home/apt,103,2,12,2017-08-14,0.42,1,0 +17463059,Spacious Three Bedroom Dream in Manhattan,116889152,BeautifulHarlem,Manhattan,Harlem,40.81968,-73.9458,Entire home/apt,135,2,138,2019-06-25,4.83,2,45 +17463419,Private sunny room with private bathroom&entrance,33116792,Sophie,Queens,Ridgewood,40.69406,-73.90068,Private room,31,5,75,2019-07-01,2.70,1,13 +17463985,Luxury Brooklyn Brownstone with Private Backyard,1377444,Kelly,Brooklyn,Bedford-Stuyvesant,40.68409,-73.94154,Entire home/apt,245,3,33,2019-06-24,1.19,1,60 +17464043,Lovely Brooklyn Apt,49166783,Dalal,Brooklyn,Williamsburg,40.71704,-73.95371,Shared room,175,3,0,,,1,0 +17464151,Riverside Park Nest,118276455,Eric,Manhattan,Upper West Side,40.79517,-73.97555,Entire home/apt,200,30,5,2019-06-06,0.21,1,271 +17465159,Private Room 1 in East Village (Small Window),12302104,Anna,Manhattan,East Village,40.72386,-73.98105,Private room,72,1,134,2019-06-07,4.69,2,251 +17465199,Studio Apt in Washington Square <3,3637890,Michael,Manhattan,Greenwich Village,40.73565,-73.99613,Entire home/apt,123,7,3,2017-05-28,0.11,1,0 +17473754,Large Room in Garden Apartment,5684780,Mauro,Brooklyn,Bedford-Stuyvesant,40.68348,-73.95123,Private room,90,3,3,2017-03-27,0.11,1,0 +17475107,Partitioned (shared) Cozy Studio in Pelham Bay,86108833,Jonathan,Bronx,Schuylerville,40.84034,-73.83007,Shared room,20,1,116,2019-01-28,4.09,1,5 +17475711,Cherry Hill House - Blue Room,2464187,Jessica,Staten Island,St. George,40.63703,-74.08423,Private room,50,1,12,2017-08-18,0.42,2,0 +17476768,AWESOME LOCATION STEPS TO L TRAIN !,118378908,Jose,Brooklyn,Williamsburg,40.71354,-73.95011,Private room,45,28,19,2019-05-31,0.72,6,297 +17476990,"Quiet room, view on garden 5m walk from J train",32357613,Fred,Brooklyn,Bedford-Stuyvesant,40.68759,-73.92356,Private room,41,1,12,2018-08-26,0.42,3,0 +17477606,PRIME LOCATION LORIMER L TRAIN,118378908,Jose,Brooklyn,Williamsburg,40.71531,-73.94986,Private room,75,1,15,2019-05-25,0.56,6,325 +17477768,Large studio in hip area near major subway stop,4035291,Lawrence,Brooklyn,Crown Heights,40.67308,-73.95523,Entire home/apt,105,3,93,2019-07-05,4.16,1,89 +17477830,Sunny Room on Hippest Block in Bushwick,118341133,Mackenzie,Brooklyn,Bushwick,40.70537,-73.92269,Private room,55,2,2,2017-03-14,0.07,1,0 +17477888,Cozy Private Room in Vibrant Williamsburg Apt,2861103,Sarah,Brooklyn,Williamsburg,40.71992,-73.9413,Private room,100,1,82,2019-05-05,2.95,1,0 +17478246,Spacious & Serene Williamsburg Room,118394855,Sarah,Brooklyn,Williamsburg,40.71499,-73.94634,Private room,65,1,14,2018-07-14,0.49,1,0 +17478780,The Perfect Queens Getaway!,118400082,Jairo,Queens,Corona,40.74122,-73.85334,Entire home/apt,149,2,51,2019-06-30,1.90,1,242 +17479736,Cozy Room in Manhattan,52129673,Christina,Manhattan,Harlem,40.82827,-73.94785,Private room,50,1,17,2018-10-08,1.11,1,0 +17479792,Comfy Room in Chic Apartment,1730026,Haifa,Manhattan,Lower East Side,40.7127,-73.98857,Private room,78,3,3,2019-05-01,0.21,2,166 +17480159,"Cozy studio, private entrance & 3 min. JFK",105315839,Erroyl,Queens,Jamaica,40.66989,-73.77454,Entire home/apt,75,1,75,2019-06-23,2.66,1,294 +17480275,Private Room near Columbia University,115227524,Pablo,Manhattan,Morningside Heights,40.81638,-73.95937,Private room,70,28,0,,,1,0 +17480547,Room in Brooklyn With Central Air and Heat,83351115,Samuel,Brooklyn,Bushwick,40.69484,-73.92499,Private room,50,12,0,,,1,0 +17481087,Gorgeous and Renovated Chelsea Apartment,24037775,Karen,Manhattan,Chelsea,40.74392,-73.9946,Entire home/apt,250,4,0,,,1,0 +17481484,Brooklyn Apartment,118430352,Austin,Brooklyn,Crown Heights,40.67519,-73.9402,Private room,75,1,0,,,1,0 +17482187,Minimalist Room with a Spectacular view,7275333,Maria,Manhattan,Kips Bay,40.73695,-73.97336,Private room,133,2,37,2019-06-02,1.39,1,33 +17489509,Brooklyn Nook perfectly located!,8435480,Matt,Brooklyn,Greenpoint,40.72398,-73.94978,Entire home/apt,150,2,115,2019-07-07,4.26,2,32 +17493275,Large one bedroom in historic Clinton Hill,775409,John,Brooklyn,Clinton Hill,40.69478,-73.96126,Entire home/apt,140,3,34,2019-07-05,2.95,1,54 +17493355,Luxury One Bedroom UWS,17477908,Mat,Manhattan,Upper West Side,40.79424,-73.96588,Entire home/apt,200,30,2,2018-10-31,0.11,10,338 +17494289,Beautiful duplex in Gramercy,118539035,Pilar,Manhattan,Gramercy,40.73746,-73.98338,Entire home/apt,99,120,2,2017-08-13,0.08,1,167 +17494449,Bright and Sunny Room in Amazing Bushwick Apt,27522582,Gabriele,Brooklyn,Bushwick,40.70105,-73.91547,Private room,50,1,0,,,3,0 +17495518,Upper East Side Apartment,118554120,Ken,Manhattan,Upper East Side,40.78073,-73.95013,Entire home/apt,122,7,7,2017-12-29,0.27,1,0 +17495819,Charming apartment in Manhattan!,11968765,Betina,Manhattan,Washington Heights,40.85338,-73.93232,Private room,85,3,71,2019-06-15,2.54,1,60 +17495862,Homey funky eclectic rich of arts,90215210,Lou,Brooklyn,Crown Heights,40.67167,-73.93088,Private room,45,4,37,2019-06-24,1.29,1,84 +17496194,Cozy 1 bedroom apt in Astoria NY,15864671,Franc,Queens,Astoria,40.76984,-73.91815,Entire home/apt,130,4,0,,,1,83 +17496320,Cozy sunny room 35 min to Time Square,47735494,Iris,Queens,Rego Park,40.72701,-73.87022,Private room,31,1,37,2018-04-22,1.30,4,0 +17496511,Spacious & Charming Nolita 1 Bed,118547015,Jill,Manhattan,SoHo,40.72103,-73.99866,Entire home/apt,125,2,16,2018-08-25,0.57,1,0 +17497776,Private apartment in Hamilton Heights,114093125,Eileen,Manhattan,Harlem,40.8269,-73.93634,Entire home/apt,100,4,65,2019-06-20,2.30,1,48 +17497867,Private Bedroom in East Williamsburg,1923413,Steven,Brooklyn,Williamsburg,40.70772,-73.94126,Private room,60,2,18,2017-07-31,0.63,1,0 +17497948,1 bedroom apt in 2 bridges/Chinatown,8381084,Pierre,Manhattan,Civic Center,40.71264,-73.99893,Entire home/apt,80,2,12,2019-03-15,0.43,2,8 +17499587,Cozy 2 Bedroom in Prime Location!,46599828,Dena,Manhattan,Midtown,40.74481,-73.98523,Entire home/apt,150,3,6,2017-07-24,0.23,1,0 +17500539,"HUGE 1BR Apt, Varrazano promenade,night life& More",37519641,Ahmed,Brooklyn,Fort Hamilton,40.61364,-74.0354,Entire home/apt,160,2,4,2019-04-11,0.42,1,313 +17500994,Brooklyn Cave in the Neighb,87889145,Avon,Brooklyn,Canarsie,40.64458,-73.90285,Entire home/apt,59,2,68,2019-07-01,3.50,1,240 +17501131,Artist Home 5 minute walk to Metro 30min from JFK,16356565,Shirley,Brooklyn,Flatbush,40.63356,-73.95073,Shared room,30,3,27,2019-06-24,1.25,2,1 +17505594,"Hip, cozy apartment (with cat) in terrific Harlem!",11620529,Grace,Manhattan,Harlem,40.81108,-73.94682,Entire home/apt,85,2,2,2017-06-04,0.08,1,0 +17506469,Spacious Bedroom in Williamsburg Duplex,53759518,Jackson,Brooklyn,Williamsburg,40.71397,-73.94572,Private room,110,2,0,,,1,0 +17508300,Sun-drenched Charles Street studio!,1647256,Rebecca,Manhattan,West Village,40.73418,-74.00621,Entire home/apt,180,9,0,,,1,0 +17508709,Luxurious Manhattan 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.76589,-73.98434,Entire home/apt,199,30,6,2018-07-31,0.23,23,365 +17508940,Haven in the Heights,32788186,Alexandra,Manhattan,Washington Heights,40.85321,-73.93596,Shared room,35,1,27,2019-06-30,0.95,1,33 +17509152,PRIVATE BATHROOM ! PRIME LOCATION,118378908,Jose,Brooklyn,Williamsburg,40.7141,-73.95064,Private room,70,28,28,2019-06-01,1.01,6,303 +17510128,Manhattan | Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75766,-73.99089,Entire home/apt,195,30,0,,,23,364 +17510130,High Tower Luxurious 1 Bedroom in Times Square,3191545,Kyle,Manhattan,Hell's Kitchen,40.75919,-73.99229,Entire home/apt,169,30,1,2017-08-03,0.04,23,115 +17510136,Luxurious 1 Bedroom in Times Square,3191545,Kyle,Manhattan,Hell's Kitchen,40.7593,-73.99229,Entire home/apt,195,30,0,,,23,364 +17510139,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Midtown,40.76501,-73.98312,Entire home/apt,195,30,0,,,23,364 +17510140,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.76485,-73.98436,Entire home/apt,195,30,0,,,23,364 +17510141,❤ of Manhattan | Fantastic 1 Bedroom,3191545,Kyle,Manhattan,Theater District,40.76321,-73.98356,Entire home/apt,243,30,0,,,23,364 +17510666,❤ of Manhattan | Central Park | Fantastic 1 Bed,3191545,Kyle,Manhattan,Hell's Kitchen,40.76536,-73.98469,Entire home/apt,195,30,0,,,23,364 +17511694,4A-,17770287,Nina,Manhattan,Midtown,40.74896,-73.98277,Entire home/apt,115,30,8,2019-05-01,0.31,14,203 +17512277,Large two bedroom in the middle of NYC apt. 3C,17770287,Nina,Manhattan,Murray Hill,40.74916,-73.98115,Entire home/apt,150,30,5,2019-05-12,0.22,14,339 +17512282,Amazing Apartment | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74526,-73.97679,Entire home/apt,150,30,1,2017-05-26,0.04,23,365 +17512466,2C,17770287,Nina,Manhattan,Midtown,40.7502,-73.98289,Entire home/apt,155,30,3,2018-12-17,0.11,14,332 +17512553,MAGNIFICENT apartment in Williamsburg with Balcony,57050977,Gaël-Etienne,Brooklyn,Williamsburg,40.71397,-73.94873,Entire home/apt,68,2,22,2018-09-09,0.78,1,0 +17512883,Amazing 1 Bedroom | 1 Bedroom | Skyline View,3191545,Kyle,Manhattan,Murray Hill,40.74919,-73.97244,Entire home/apt,135,30,0,,,23,365 +17512898,Private room in shared apartment for 1,11427289,Ian,Manhattan,Greenwich Village,40.73484,-73.99614,Private room,300,1,1,2017-08-31,0.04,1,0 +17512944,Extra Large 1BR by Park Ave in Upper East Side,45595980,Tny,Manhattan,Upper East Side,40.76876,-73.96686,Entire home/apt,197,30,0,,,12,58 +17513491,11 Minutes to Manhattan,971418,Jamiel,Queens,Astoria,40.76101,-73.92464,Entire home/apt,75,1,73,2019-06-23,2.75,1,273 +17513537,"2 bedroom apt in Brooklyn, downtown",118727691,Diane,Brooklyn,Fort Greene,40.69353,-73.97431,Entire home/apt,350,3,27,2019-06-30,1.00,1,303 +17515391,1 BR Garden Apartment in Brooklyn Brownstone,10896859,Sharon And Dave,Brooklyn,South Slope,40.66587,-73.98206,Entire home/apt,150,3,70,2019-07-01,2.58,1,89 +17515547,BEST LOCATION IN SOHO AND SPACIOUS APARTMENT,118745519,Alonso,Manhattan,Little Italy,40.71942,-73.99694,Entire home/apt,155,1,67,2019-01-20,2.45,1,189 +17515734,Cozy Room in TWO BEDROOM Apartment.,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69499,-73.94822,Private room,81,5,42,2019-06-02,1.58,3,63 +17515870,Divided Room in Financial District,118753490,Yaodong,Manhattan,Financial District,40.70817,-74.00511,Private room,100,1,5,2017-04-30,0.17,1,0 +17516489,Beautiful 3 BR- 2 Full Baths in Upper Manhattan,1273890,Sergio,Manhattan,Washington Heights,40.8513,-73.93681,Entire home/apt,185,30,7,2019-03-19,0.26,2,331 +17517940,"简单的四房一厅两卫生间,位于北上远离开辆,走路四分钟到地铁站,交通便利 +Simple bigroom",114104868,Hao,Queens,Woodhaven,40.69883,-73.85257,Private room,65,3,7,2018-11-03,0.40,1,365 +17520324,Renovated 4 BED 3.5 BATH BK Townhouse Triplex APT,114463720,Mike,Brooklyn,Williamsburg,40.71092,-73.96755,Entire home/apt,385,2,76,2019-06-15,2.69,1,209 +17520883,Exciting New York Get Away,101672721,Telisha,Manhattan,Harlem,40.8178,-73.93774,Private room,125,1,0,,,1,0 +17522686,Prospect Heights Studio Apartment,25227079,Daniel,Brooklyn,Prospect Heights,40.67435,-73.96691,Entire home/apt,130,3,2,2017-04-11,0.07,1,0 +17524047,Luxe Large Suite w/Views bathroom en suite,118695056,Cameron & Dione,Brooklyn,Downtown Brooklyn,40.6925,-73.98613,Private room,153,3,28,2019-06-09,1.00,2,11 +17524075,Quiet & spacious east village/LES private bedroom,15730200,Ruishu,Manhattan,Lower East Side,40.72131,-73.98508,Private room,150,2,1,2019-04-20,0.37,1,0 +17524441,Modern Sunlit Room w/ Balcony on Famous Street!,13137787,Zack,Manhattan,East Village,40.72778,-73.98936,Private room,95,4,2,2017-05-29,0.08,1,0 +17524862,Cozy West Harlem Abode,2054816,Sharron And Lenny,Manhattan,Harlem,40.82805,-73.94676,Entire home/apt,150,2,10,2018-07-05,0.36,1,0 +17525806,4BR Brooklyn Apartment Minutes from City Life!,48618586,Evolve,Brooklyn,East Flatbush,40.64261,-73.94334,Entire home/apt,350,2,1,2017-08-20,0.04,1,0 +17526131,Bklyn Brownstone 2BD APT Private Spotless wAC+HBO,118839909,Evan & Erika,Brooklyn,Bedford-Stuyvesant,40.6875,-73.92542,Entire home/apt,120,2,131,2019-07-05,5.23,1,159 +17527515,Lovely Home Near Fort Tryon Park & the Cloisters,8753629,Brenton,Manhattan,Inwood,40.86488,-73.92922,Entire home/apt,120,14,7,2018-09-18,0.27,1,13 +17527586,PERFECT East Village Location****,117385673,Danielle,Manhattan,Gramercy,40.7317,-73.9833,Private room,100,3,9,2017-10-15,0.32,2,0 +17529164,Large Room with Private Bathroom (Long Term+++),11070120,Vernon,Bronx,Fordham,40.85929,-73.90048,Private room,45,22,10,2019-04-13,0.36,2,186 +17529216,Quiet room with exposed brick,7920086,Susan,Manhattan,East Harlem,40.7865,-73.94406,Private room,74,16,7,2017-10-31,0.28,3,0 +17529637,Large bedroom in the heart of the East Village,855079,Nicholas,Manhattan,East Village,40.7281,-73.9839,Private room,110,1,26,2018-12-28,0.91,3,0 +17531292,Your Home Away From Home!,105225699,Serena,Queens,Flushing,40.76199,-73.79465,Entire home/apt,110,3,75,2019-07-06,3.07,2,174 +17531493,Cute Room in Upper West Side (FEMALES ONLY),78254013,Ana,Manhattan,Upper West Side,40.79917,-73.96765,Private room,75,1,19,2018-01-04,0.73,1,0 +17531524,"Comfy bachelor's apartment, Clinton Hill, Brooklyn",22607793,Dmitri,Brooklyn,Clinton Hill,40.68152,-73.96276,Entire home/apt,94,2,10,2018-12-09,0.39,1,0 +17532756,Lovely Room in Loisaida Hideaway,105025187,Anima,Manhattan,East Village,40.7234,-73.97628,Private room,55,5,2,2017-06-25,0.07,2,0 +17532802,"Apartment in Sunset Park, Brooklyn",118913632,Ye,Brooklyn,Sunset Park,40.64028,-74.01262,Entire home/apt,100,7,0,,,1,0 +17533091,Private room near new 2nd Ave. Q train!,27624941,Imad,Manhattan,Upper East Side,40.78025,-73.94802,Private room,99,2,154,2019-07-01,5.42,1,145 +17533911,MY ROOM/COFFEE &BAGEL,1097545,Carol,Manhattan,East Village,40.72521,-73.97879,Private room,69,6,30,2019-04-01,1.08,3,43 +17534186,Beautiful sunny apartment in Williamsburg,10348014,Sanna,Brooklyn,Williamsburg,40.71545,-73.95299,Entire home/apt,139,1,0,,,1,0 +17534189,Sunny Room at The Gazebo in Brooklyn,27844914,Kim,Brooklyn,Bedford-Stuyvesant,40.69428,-73.94148,Private room,42,14,32,2019-05-22,1.14,2,72 +17537893,The Otheroom Bar/Event/Filming Space -read details,18037301,James,Manhattan,West Village,40.73571,-74.0078,Entire home/apt,4000,1,0,,,1,173 +17538067,Architect's Bedroom in Large Brooklyn Apartment,21369808,Niko,Brooklyn,Bedford-Stuyvesant,40.69612,-73.94918,Private room,55,7,3,2017-07-01,0.11,1,0 +17539341,"Urban Zen: Cozy, creative NYC retreat",7188712,Melissa,Manhattan,Washington Heights,40.83137,-73.94117,Private room,119,2,4,2018-06-12,0.16,1,0 +17539385,2 Level Apartment With Private Terrace,7070648,Olga,Manhattan,Upper East Side,40.78206,-73.94949,Entire home/apt,105,5,24,2019-06-23,0.85,1,20 +17539808,Bright room in Brownstone,1704042,Cameron,Brooklyn,Bedford-Stuyvesant,40.67987,-73.93235,Private room,55,2,21,2019-06-14,0.76,1,19 +17540291,One bedroom Apartment in Carroll Gardens,2063421,Megan,Brooklyn,Carroll Gardens,40.67522,-73.99853,Entire home/apt,125,1,0,,,1,0 +17541599,Furnished room in Upper East Side apartment,6811053,Blair,Manhattan,East Harlem,40.78943,-73.9478,Private room,46,6,1,2017-03-22,0.04,1,0 +17541761,Quiet Private Room in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6896,-73.90624,Private room,36,2,83,2019-06-22,2.95,4,155 +17542694,Room in sweet 2BR in Brooklyn,41191579,Maura,Brooklyn,Crown Heights,40.66945,-73.93899,Private room,45,1,4,2018-12-17,0.44,3,0 +17542798,Amazing 1 Bedroom Apt in the Heart of LES,40935862,Andrew,Manhattan,Lower East Side,40.72105,-73.98371,Entire home/apt,150,3,6,2017-07-20,0.22,1,90 +17543074,Cozy & Quiet 2 Bedroom / Heart of Lower Manhattan,13848780,Steven,Manhattan,Chinatown,40.71363,-73.9977,Entire home/apt,275,2,15,2019-06-09,3.17,1,207 +17543568,Wonderful & Large Modernist Bushwick Brooklyn Apt.,71126864,Renee,Brooklyn,Bushwick,40.6957,-73.93196,Entire home/apt,100,29,0,,,1,310 +17543905,P,7976263,Amelia,Manhattan,Chelsea,40.74431,-73.9922,Private room,100,5,3,2017-04-12,0.11,1,0 +17544058,Quite and comfortable shared room in UES,94100043,Mohamed,Manhattan,Upper East Side,40.76675,-73.95428,Shared room,35,1,118,2019-01-03,4.21,2,0 +17544220,Quite relaxing convenient shared room in UES.,94100043,Mohamed,Manhattan,Upper East Side,40.76731,-73.95419,Shared room,35,1,115,2019-01-01,4.06,2,0 +17545123,Clean and renovated apartment,119027851,Nance,Bronx,Longwood,40.81632,-73.90991,Entire home/apt,130,2,62,2019-06-19,2.19,1,36 +17545363,Modern Apartment Bayridge/Brooklyn- Sleeps 6,119029523,Ebada,Brooklyn,Fort Hamilton,40.62067,-74.02942,Entire home/apt,150,5,4,2019-06-18,1.90,3,312 +17545558,Private Room 2 in East Village (Large Window),12302104,Anna,Manhattan,East Village,40.72208,-73.98109,Private room,73,1,116,2019-06-02,4.07,2,238 +17545775,Gorgeous Private Studio in Williamsburg/Greenpoint,15266675,Reggie,Brooklyn,Williamsburg,40.71786,-73.94556,Entire home/apt,160,2,9,2018-06-17,0.33,1,0 +17547029,Bushwick Oasis Room #2: Close to the L or M train,28786801,Connie,Brooklyn,Bushwick,40.70288,-73.92796,Private room,54,1,1,2017-08-14,0.04,2,0 +17548575,Great room in the heart of NYC,118870308,Laura,Manhattan,Murray Hill,40.7464,-73.97669,Private room,75,1,2,2017-04-08,0.07,1,0 +17549299,2 Bedroom / 2 Bath - Brand New Modern Apt,7427325,Jenia,Manhattan,Hell's Kitchen,40.76407,-73.99322,Entire home/apt,380,3,1,2017-05-03,0.04,2,0 +17552185,Cozy Garden Apartment in Charming Park Slope,117035626,Anelcia Carolle,Brooklyn,Park Slope,40.67573,-73.97993,Entire home/apt,115,2,97,2019-07-03,3.68,1,0 +17552513,Private Mezzanine Room in E. Williamsburg,1197823,Elliott,Brooklyn,Williamsburg,40.70887,-73.94609,Private room,100,3,12,2017-12-24,0.43,2,0 +17552955,Spacious Private Room in bright Manhattan 2 BR,118270996,Sneha,Manhattan,Washington Heights,40.84806,-73.93931,Private room,80,1,3,2017-03-18,0.11,1,0 +17554081,"Large, Sunny, Williamsburg 1 bedroom Apt",119125703,Chris,Brooklyn,Williamsburg,40.70983,-73.96495,Entire home/apt,109,3,73,2019-07-02,2.64,1,37 +17554298,The Sweet Pea Cottage,76840423,Kathleen,Staten Island,Huguenot,40.53871,-74.16966,Entire home/apt,180,1,136,2019-07-07,4.81,1,136 +17554541,Delightful Brooklyn townhouse,5817532,Christy,Brooklyn,Park Slope,40.68326,-73.97796,Entire home/apt,600,6,7,2019-01-03,0.36,1,42 +17554889,"2nd Fl, Tall Ceilings + Spacious, Convenient + Fun",33955029,Orin,Manhattan,East Village,40.72492,-73.98982,Private room,160,3,15,2018-12-31,0.54,1,0 +17554981,Adorable one bedroom next to Central Park,5162192,Amy,Manhattan,Upper West Side,40.7979,-73.96024,Entire home/apt,130,30,2,2017-08-17,0.08,12,216 +17555918,Private bedroom right on the High Line/Chelsea,3650456,Louizos Alexandros,Manhattan,Chelsea,40.74899,-74.00403,Private room,90,7,12,2017-11-01,0.42,1,0 +17556208,Private Room Available in Hamilton Heights,5524401,Nicole,Manhattan,Harlem,40.82288,-73.95254,Private room,63,7,21,2019-04-28,0.75,1,0 +17556509,Cozy apt. w/private patio in Williamsburg!,1659170,Kilian,Brooklyn,Williamsburg,40.71315,-73.943,Entire home/apt,126,1,6,2017-12-31,0.22,1,0 +17557517,Kids friendly 2 bedroom close to Subway and C.Park,43685722,Gregor,Manhattan,Upper West Side,40.78873,-73.97402,Entire home/apt,195,2,16,2019-06-07,0.59,1,0 +17557873,Renovated Comfortable Room for 2 or solo traveler,10475653,Izabel,Brooklyn,Windsor Terrace,40.64958,-73.97482,Private room,45,1,108,2019-07-02,3.80,3,243 +17558336,"""Borough Border Liner"" Diverse/Convenient/Private",119173203,Maya,Brooklyn,Bushwick,40.70537,-73.91587,Private room,47,1,17,2018-05-13,0.97,1,0 +17558802,Large and Sunny Private Bedroom in Astoria,15219324,Diana,Queens,Astoria,40.76964,-73.92303,Private room,55,10,0,,,1,188 +17559679,Trendy Carroll Gardens Boutique apartment,119190733,Sharon,Brooklyn,Carroll Gardens,40.68196,-73.99944,Entire home/apt,200,7,1,2017-04-01,0.04,1,0 +17560078,Studio Apartment in Upper East Side,66519807,Jing,Manhattan,Upper East Side,40.77734,-73.94592,Entire home/apt,60,7,0,,,1,0 +17560543,"Private room. 1 bed, 2 guests, 3333 Broadway",117851567,Yuedi,Manhattan,Harlem,40.81955,-73.95587,Private room,51,1,0,,,1,0 +17561119,One BR duplex loft in midtown east townhouse - 43,80479138,Gordon,Manhattan,Midtown,40.76032,-73.96618,Entire home/apt,160,30,7,2018-11-15,0.40,5,71 +17568601,Huge Sunny Room in Prime Brooklyn Flushing Ave JM,14759473,Edith,Brooklyn,Bedford-Stuyvesant,40.7002,-73.94327,Private room,55,1,25,2019-05-19,0.88,1,0 +17568638,Lower East Side Studio,3095778,Henrik,Manhattan,East Village,40.72208,-73.98473,Entire home/apt,110,12,11,2019-01-17,0.39,1,0 +17569080,"2BR/2BATH,CENTRALPARK,COLUMBIA,JACUZZI,FIREPLACE",42555896,Yolanda,Manhattan,Harlem,40.80063,-73.95223,Entire home/apt,200,30,3,2019-06-05,0.27,1,327 +17569246,City Zen Apartment in Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.68956,-73.90599,Entire home/apt,109,3,72,2019-06-17,2.55,4,140 +17569280,Sweet and Secluded Suite minutes from Manhattan,1420715,Omar And Kareema,Brooklyn,Bushwick,40.6898,-73.91835,Entire home/apt,149,3,70,2019-06-16,2.51,3,170 +17571026,CLEAN STYLISH SUNNY & COMFORTABLE ONE-BED in L.E.S,6335895,Analisa,Manhattan,Lower East Side,40.71862,-73.98405,Entire home/apt,220,4,16,2019-06-02,0.65,1,14 +17572926,Great 1 Bedroom on Upper East,36578169,James,Manhattan,Upper East Side,40.77984,-73.94725,Entire home/apt,130,2,0,,,1,0 +17573027,Charming Room in Financial District,1794149,Alex,Manhattan,Financial District,40.70682,-74.00445,Private room,75,2,3,2017-03-26,0.11,1,0 +17573354,"Luxury 1BR Apt w/ Rooftop, Gym and Skyline View",24580054,Michael,Brooklyn,Greenpoint,40.73204,-73.95874,Entire home/apt,250,2,0,,,1,0 +17573621,The Queens Bungalow,331658,Brittney,Queens,Glendale,40.69643,-73.89362,Entire home/apt,65,3,19,2019-07-02,0.70,1,104 +17574134,Luxurious Apartment in Crown Heights,79820757,Blondine,Brooklyn,Crown Heights,40.67595,-73.94132,Entire home/apt,300,30,9,2019-05-12,0.33,2,136 +17576849,"Essential studio, 2 minutes from train (D)",74179880,Silvia,Brooklyn,East New York,40.67549,-73.88932,Entire home/apt,90,3,68,2019-06-18,2.51,8,343 +17583732,Bright and Cosy Room in Williamsburg,1750299,Julie,Brooklyn,Williamsburg,40.7115,-73.9429,Private room,69,23,12,2019-06-19,0.44,2,189 +17583983,Comfy & Spacious RM with Backyard/Near Metro,105394139,Ciprian,Bronx,Kingsbridge,40.87094,-73.89386,Private room,79,3,115,2019-06-23,4.10,4,71 +17584136,"2fireplcs,Garden,BBQ,wshr/dryer,JacuzTub,BIG Kitch",117263759,Jill & Kerry,Manhattan,Chelsea,40.75046,-73.99854,Entire home/apt,190,1,132,2019-07-04,5.17,1,252 +17585139,"Cute apartment, Washington Sq Park!",51752603,Max,Manhattan,Greenwich Village,40.73104,-73.99831,Private room,80,3,1,2017-03-21,0.04,1,0 +17586014,Spacious and Sunny in Prime Park Slope,119466544,Jim,Brooklyn,South Slope,40.66317,-73.98465,Entire home/apt,175,1,2,2017-03-24,0.07,2,0 +17587000,Private bedroom 8 mins-JFK&The Mall,55125246,Yvonne,Queens,Jamaica,40.68638,-73.79007,Private room,65,1,347,2019-07-06,13.48,3,159 +17587833,Penthouse Luxury Apt with Amazing Views near GCT,119483929,Ryan,Manhattan,Murray Hill,40.7481,-73.97771,Entire home/apt,148,14,0,,,1,0 +17589815,"A small bedroom, Lower East Side",64610450,Emma,Manhattan,Chinatown,40.71569,-73.99076,Private room,63,3,10,2017-05-05,0.36,1,0 +17590729,Private BR in South Harlem close to 2/3,35529867,Laura And Robert,Manhattan,Harlem,40.80339,-73.95034,Private room,99,3,9,2018-02-24,0.42,1,0 +17591010,Entire Hipster Flat in the Heart of Bushwick!,4844209,Leyla,Brooklyn,Bushwick,40.70146,-73.92887,Entire home/apt,90,5,0,,,1,0 +17591278,Penthouse Apartment in Chelsea,86602555,Anna,Manhattan,Chelsea,40.74314,-73.99552,Entire home/apt,250,2,24,2019-07-01,0.90,1,42 +17591356,Cozy private room in Upper East Side apartment,99245631,Jillian,Manhattan,Upper East Side,40.77186,-73.95402,Private room,90,2,3,2017-03-16,0.11,1,0 +17591452,"2 Bed Apt Brighton Beach, Brooklyn by Beach",119523037,Anna,Brooklyn,Brighton Beach,40.582,-73.96185,Entire home/apt,120,1,119,2019-07-01,4.20,4,85 +17593461,(2R) Cozy and clean bedroom with private bathroom,119548006,Steven,Queens,Fresh Meadows,40.73318,-73.79322,Entire home/apt,39,2,113,2019-07-03,4.04,2,3 +17599762,Birds nest Oasis in historic cobble hill,5800161,Pioneer,Brooklyn,Cobble Hill,40.68886,-73.99825,Entire home/apt,117,30,11,2019-06-17,0.47,1,324 +17600777,Spacious room in front of prospect park,100106209,Emmie,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96234,Private room,160,1,45,2019-05-19,1.62,2,303 +17601315,Modern 2br Apartment in the heart of Soho/Nolita,975819,Chendi,Manhattan,Nolita,40.72118,-73.99602,Entire home/apt,500,2,0,,,1,0 +17601960,Studio Apt - One Block from Central Park,16064049,Harry,Manhattan,Hell's Kitchen,40.76616,-73.98435,Entire home/apt,100,13,6,2017-05-20,0.21,1,0 +17602108,NYU/E.Village Cafes & Bars*6 month $3500/mo,119623927,Lisa,Manhattan,East Village,40.72804,-73.98665,Entire home/apt,117,180,15,2019-05-28,0.56,1,332 +17603059,Luxury Condo in the Heart of Manhattan!(High Rise),5925984,Vlad,Manhattan,Midtown,40.74685,-73.9841,Private room,175,2,60,2019-06-25,2.30,1,357 +17604613,Living Room Space In NYC,29893675,Wendell,Manhattan,Harlem,40.82432,-73.9385,Shared room,25,1,9,2017-10-22,0.32,2,0 +17604756,Studio in Brooklyn Heights with Private Entrance,54861276,Madeline,Brooklyn,Brooklyn Heights,40.69257,-73.99707,Entire home/apt,152,2,12,2019-01-01,0.50,1,0 +17605255,Cozy Zen Brooklyn Bedroom,119634559,Noor,Brooklyn,Crown Heights,40.66507,-73.95699,Private room,45,7,11,2018-06-24,0.40,1,0 +17605478,NANCY clean/quiet very close city,119155499,Julio,Brooklyn,Bushwick,40.69369,-73.92292,Private room,59,5,26,2019-06-24,0.93,4,325 +17605729,Clean Green Artsy Apartment with Great Kitchen,90731801,Domenica,Manhattan,East Village,40.72833,-73.98118,Private room,70,3,3,2017-06-09,0.11,1,0 +17606753,Mom Room,119155499,Julio,Brooklyn,Bushwick,40.69391,-73.92469,Private room,57,5,23,2019-06-19,0.84,4,337 +17606850,Spacious 2 BR Bedford Stuyvesant Bklyn NY,119669258,Alvin,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94098,Entire home/apt,200,2,77,2019-06-24,2.97,1,88 +17607488,"Cute, artsy place in Bed/Stuy",119667654,Marcus,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94755,Entire home/apt,71,5,0,,,1,0 +17609502,"5 minutes from JFK,one single cozy bedroom for one",119592255,Kevin,Queens,Jamaica,40.68073,-73.78354,Private room,45,1,336,2019-07-05,11.91,2,345 +17609541,ROSA 'S Private Entrance,119155499,Julio,Brooklyn,Bushwick,40.69516,-73.92258,Private room,61,5,32,2019-05-21,1.14,4,350 +17610016,Cozy & Private Bedroom only 30-35 min to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67989,-73.90857,Private room,55,1,102,2019-06-24,3.66,3,121 +17610023,Creative Loft Space (Huge) in Great Location,1522383,Catherine,Brooklyn,Prospect Heights,40.68006,-73.97248,Private room,74,1,4,2018-04-07,0.15,1,0 +17610059,LARGE ROOM IN HEART OF NYC (CHELSEA / FLATIRON),13492085,Teri,Manhattan,Chelsea,40.74525,-73.99229,Private room,100,1,1,2017-03-31,0.04,2,0 +17610107,Lovely 2-bedroom 1bath in Chinatown & Little Italy,119706589,Carmen,Manhattan,Chinatown,40.71463,-73.99658,Entire home/apt,178,1,146,2019-06-24,5.28,1,212 +17611001,Gorgeous bedroom 8mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68787,-73.78843,Private room,80,1,129,2019-06-23,5.19,3,180 +17617905,Beautiful home minutes to Manhattan,13561853,Olivera,Queens,Sunnyside,40.74176,-73.924,Entire home/apt,75,30,6,2018-09-08,0.22,1,45 +17618446,SOHA 2 bedroom Beauty! Sleeps 5,119779683,Julian,Manhattan,Harlem,40.80859,-73.94216,Entire home/apt,158,3,61,2018-08-03,2.21,1,62 +17618772,"Entire Huge 1 bd Apartment, Brooklyn Living",10015020,Jonathan,Brooklyn,Crown Heights,40.66391,-73.93551,Entire home/apt,88,4,66,2019-06-03,2.35,1,0 +17618903,One Bedroom In New Luxury Building,95921812,Sam,Brooklyn,Gowanus,40.67873,-73.98976,Entire home/apt,95,1,3,2017-09-17,0.11,1,0 +17619003,Cozy 2 Bedroom,88326259,Marta,Manhattan,Upper East Side,40.78172,-73.94827,Entire home/apt,225,3,62,2019-06-20,2.27,1,234 +17620638,Fantastic Studio in Brooklyn's core,19289048,Jae,Brooklyn,Fort Greene,40.68773,-73.97902,Entire home/apt,240,2,15,2018-06-10,0.62,1,66 +17624190,"*SPECIAL* +COZY WATERFRONT APARTMENT +•SUPERHOST•",100656374,Steve Kings,Queens,Ditmars Steinway,40.78304,-73.91783,Entire home/apt,110,3,68,2019-07-05,2.47,1,299 +17624400,Bright West Village Retreat,92294213,Cat,Manhattan,West Village,40.73414,-74.00001,Entire home/apt,225,3,12,2017-09-25,0.43,1,0 +17624418,LOFTY 3 BEDROOMS DUPLEX 30MN FROM DOWNTOWN,6978404,Samira,Brooklyn,Bay Ridge,40.62645,-74.02888,Entire home/apt,165,20,0,,,1,46 +17625485,Bahia Brazil Vibe - Entire apt,7824337,Miralva,Brooklyn,Flatbush,40.65218,-73.96193,Entire home/apt,140,3,26,2019-07-01,1.09,2,161 +17625707,Prospect Park Apt 20 min to Soho 5 min from Trains,8314232,Mo,Brooklyn,Prospect-Lefferts Gardens,40.65802,-73.95595,Entire home/apt,100,1,38,2018-06-17,1.34,1,0 +17625824,Private Room in Brooklyn Brownstone,79882333,Hallie,Brooklyn,Bedford-Stuyvesant,40.68119,-73.93722,Private room,39,2,2,2017-03-29,0.07,1,0 +17626236,Cozy 2 Bedroom (Train L or M),54637605,Albertina,Queens,Ridgewood,40.702,-73.89768,Entire home/apt,110,3,10,2019-05-28,0.37,1,16 +17629651,Brooklyn Style!,33510,Tina,Brooklyn,Flatbush,40.64847,-73.96132,Entire home/apt,105,31,2,2018-03-25,0.07,1,41 +17631431,Convenience and Privacy in this shared apartment,10737943,David,Manhattan,Upper East Side,40.77414,-73.94643,Private room,49,30,4,2019-05-27,0.30,10,99 +17632458,Private Sunny Room with Private Bathroom,44582082,Miranda,Queens,Ridgewood,40.70013,-73.90077,Private room,45,2,9,2017-07-30,0.32,1,0 +17632790,Coney Island Private Assembly Special Events,114736959,Ed,Brooklyn,Coney Island,40.57577,-73.98553,Entire home/apt,450,1,5,2019-06-23,0.42,6,364 +17632840,Coney Island Amphitheat MCU 1 br Wifi Cable **,114736959,Ed,Brooklyn,Coney Island,40.57582,-73.98576,Entire home/apt,99,2,68,2019-01-27,2.51,6,125 +17633820,Bohemian apt in the heart of Greenwich Village,9132087,Brandon,Manhattan,Greenwich Village,40.72956,-73.99979,Entire home/apt,169,3,22,2018-12-26,0.81,2,0 +17634206,One Room Apartment Next to Columbus Circle,119930068,Arturo,Manhattan,Hell's Kitchen,40.76699,-73.9848,Entire home/apt,130,1,4,2017-03-19,0.14,1,0 +17634485,Unique Prime Location NYC Sleeps 6,99242527,Dina,Manhattan,Flatiron District,40.74074,-73.98573,Entire home/apt,255,3,90,2019-06-18,3.21,1,194 +17635051,BEST VALUE! SUPER COSY APARTMENT,16261195,Martine,Manhattan,Upper East Side,40.77699,-73.95193,Private room,80,9,3,2017-09-20,0.11,1,0 +17635569,Cozy private room in Brooklyn Heights,119941037,Colette,Brooklyn,Cobble Hill,40.68934,-73.99438,Private room,70,1,3,2017-03-27,0.11,1,0 +17637439,Lovely room in the heart of Williamsburg,7501534,Francesca,Brooklyn,Williamsburg,40.71064,-73.96497,Private room,60,2,0,,,1,0 +17637673,Mels Manhattan Home,119959551,Melissa,Manhattan,Chelsea,40.73756,-73.99111,Entire home/apt,219,4,5,2017-12-30,0.18,1,0 +17638709,SPACIOUS BEDROOM PARK SLOPE BROOKLYN,119967955,Erik,Brooklyn,Park Slope,40.66713,-73.98155,Private room,60,1,86,2019-07-01,3.14,1,117 +17640413,"Private room & living room, one block from subway.",44709817,Jackie,Brooklyn,Bedford-Stuyvesant,40.68187,-73.94589,Private room,60,1,3,2017-12-16,0.16,1,0 +17641480,Comfy Room,2412748,Jeremiah,Brooklyn,Crown Heights,40.6727,-73.95505,Private room,82,4,0,,,1,0 +17641625,COZY Large Private APARTMENT in EAST VILLAGE,836353,Luna,Manhattan,East Village,40.72588,-73.98598,Entire home/apt,122,6,22,2019-05-24,0.87,1,15 +17642625,Lovely APT in the Heart of Bushwick!,21877498,Andy,Brooklyn,Bushwick,40.7012,-73.92876,Entire home/apt,125,3,0,,,2,0 +17645939,Vintage Rainbow Room,103361884,Ebony,Brooklyn,Flatbush,40.6514,-73.9616,Private room,44,3,25,2019-06-30,1.78,1,3 +17649690,"Gorgeous condo 20min from NYC,close to the airport",120082555,Arthur,Queens,Rego Park,40.72999,-73.86043,Entire home/apt,125,2,67,2019-07-01,2.58,1,278 +17651607,Cozy room in a 2B with backyard access,9683962,Cristina,Queens,Astoria,40.76987,-73.92679,Private room,55,1,9,2019-04-25,0.91,1,0 +17651741,An East Williamsburg Delight,23192585,Petra,Brooklyn,Bedford-Stuyvesant,40.68335,-73.91222,Private room,47,4,36,2018-06-27,1.28,1,0 +17652158,Cozy bedroom in williamsburg,38593087,Russell,Brooklyn,Williamsburg,40.7087,-73.9671,Private room,80,1,58,2019-06-10,2.08,2,120 +17654277,Spacious Room w/ 2 Bed,116746802,Christine,Queens,Bayside,40.75047,-73.75349,Private room,65,7,40,2019-06-23,1.51,5,148 +17654611,Artsy Private Room in LIC. 2 min walk to Subway.,105372357,Lunara,Queens,Long Island City,40.74117,-73.94904,Private room,75,5,17,2019-06-09,0.61,1,112 +17655017,Astoria's private room,120137482,Dalva,Queens,Long Island City,40.75566,-73.9205,Private room,100,1,0,,,1,0 +17662532,rooms in sunny Loft right off the Bedford L stop,34745360,Anna,Brooklyn,Williamsburg,40.71612,-73.95983,Private room,90,22,0,,,2,0 +17664316,Private Room in Brooklyn Communal House,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67964,-73.95629,Private room,45,2,16,2017-10-21,0.57,3,0 +17664413,Bx Apartment,45671454,Vii,Bronx,Olinville,40.88438,-73.86397,Private room,125,1,0,,,1,0 +17665016,HUGE BEDROOM LORIMER L TRAIN!!!,118378908,Jose,Brooklyn,Williamsburg,40.71355,-73.95003,Private room,69,28,17,2019-04-30,0.61,6,229 +17665855,Spacious two bedrooms condo in upper Manhattan,13860679,Max,Manhattan,Inwood,40.86461,-73.92363,Entire home/apt,199,2,49,2019-05-23,1.81,3,147 +17665943,"Room in Queens, NY, near LGA.",119987770,Sonia,Queens,East Elmhurst,40.76245,-73.87938,Private room,55,1,239,2019-06-29,8.58,2,361 +17665996,Cozy home away from home,18660750,Linelle,Queens,Edgemere,40.5938,-73.77373,Private room,50,1,76,2019-06-27,2.84,1,324 +17666011,Central Park Views - Private Room & Bathroom,120245256,Paul,Manhattan,Upper West Side,40.79712,-73.96117,Private room,125,1,4,2017-08-15,0.14,1,0 +17666300,Ultimate 50th Floor Downtown Penthouse - 4000SqFt,120250860,Diana,Manhattan,SoHo,40.72318,-74.00223,Entire home/apt,2250,2,21,2019-07-01,0.74,2,343 +17666780,Lovely Two Bedroom & Event Space From Nonprofit,120256797,Nyls,Brooklyn,Bedford-Stuyvesant,40.69095,-73.93444,Entire home/apt,125,31,4,2019-05-29,0.16,1,178 +17667188,Private Bedroom in Rego Park / Forest Hills,120261070,Luci,Queens,Rego Park,40.7246,-73.85688,Private room,75,1,0,,,1,0 +17667194,Sunny budget friendly room in Bushwick,8784337,Austin,Brooklyn,Bushwick,40.6937,-73.91006,Private room,32,5,3,2018-04-09,0.11,1,0 +17667585,"Cozy Apartment on Bedford Ave, Brooklyn",42727726,Natasha,Brooklyn,Williamsburg,40.71284,-73.96284,Private room,88,7,15,2018-01-01,0.55,1,0 +17667639,Your 1 bedroom home away from home!,43907907,Elle,Manhattan,Upper West Side,40.79563,-73.97634,Entire home/apt,215,3,38,2019-06-10,1.40,1,31 +17669272,MASTER Cozy Bedroom Queen size 2 blocks Timesquare,110081618,Harry,Manhattan,Hell's Kitchen,40.76125,-73.98945,Entire home/apt,134,1,81,2019-03-05,2.96,2,0 +17669480,Sunny Brownstone Studio in BedStuy Brooklyn,112814443,Jamal,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94618,Entire home/apt,125,2,104,2019-06-12,3.69,1,268 +17669561,"A cozy getaway, home away from home",57862648,Isaiah,Brooklyn,East New York,40.6613,-73.89088,Private room,60,1,0,,,1,88 +17669867,"☀️Private, cozy & quiet room in Inwood Manhattan☀️",18217011,Zhoe,Manhattan,Inwood,40.86857,-73.91577,Private room,60,4,95,2019-07-01,3.65,1,323 +17670245,Cozy bright room near Prospect Park,2263722,Mariam,Brooklyn,Flatbush,40.64945,-73.96108,Private room,56,7,12,2019-03-27,0.44,1,0 +17677710,Private Bedroom with Amazing Rooftop View,93148942,Trey,Brooklyn,Bushwick,40.69872,-73.92718,Private room,85,1,19,2017-08-31,0.72,2,0 +17678601,Pretty Brooklyn One-Bedroom for 2 to 4 people,107947878,Michael,Brooklyn,Bedford-Stuyvesant,40.6781,-73.90822,Entire home/apt,100,2,50,2019-06-26,3.12,2,235 +17679645,Room & private bathroom in historic Harlem,51594665,Shireen,Manhattan,Harlem,40.81248,-73.94317,Private room,55,2,0,,,1,0 +17679822,Rosalee Stewart,120393659,Stanley,Manhattan,Harlem,40.81315,-73.94747,Entire home/apt,150,4,22,2019-06-15,0.85,1,238 +17680363,Large Private Bedroom in Luxury Doorman Building,56840569,Suzanne,Manhattan,Upper East Side,40.78193,-73.95099,Private room,60,183,1,2018-07-30,0.09,1,340 +17680566,*PRIVATE APARTMENT L TRAIN LORIMER STOP,118378908,Jose,Brooklyn,Williamsburg,40.71415,-73.94867,Entire home/apt,108,28,17,2019-04-26,0.66,6,332 +17680571,Brooklyn Garden Apartment in 2 Family House,3811546,Vinz,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95404,Entire home/apt,122,4,59,2018-09-01,2.11,1,217 +17680909,(B) Great value & clean apartment in New York,119548006,Steven,Queens,Fresh Meadows,40.73275,-73.79366,Entire home/apt,45,2,142,2019-07-03,5.03,2,2 +17681190,Cozy Studio at the Heart of Williamsburg,22019825,Ceylan,Brooklyn,Williamsburg,40.71889,-73.95707,Entire home/apt,150,7,2,2018-01-04,0.08,1,0 +17681470,"Family Vacation in NYC, Close to the City!",60244293,Savannah,Brooklyn,Bedford-Stuyvesant,40.68445,-73.92662,Entire home/apt,160,2,45,2018-01-30,1.61,2,0 +17682081,Artist Brooklyn Heights Home,9028424,Michael,Brooklyn,Brooklyn Heights,40.69551,-73.99371,Entire home/apt,140,7,1,2018-01-02,0.05,1,8 +17682208,Bushwick Hideaway (Studio),11392003,Mark,Brooklyn,Bushwick,40.69709,-73.93103,Entire home/apt,210,3,76,2019-06-24,2.80,1,9 +17682543,Studio Apartment in Flatiron District,97266110,Ashley,Manhattan,Greenwich Village,40.73523,-73.99465,Entire home/apt,180,3,2,2017-04-18,0.07,1,365 +17682843,"Astoria close to JFK,Laguardia airport, Manhattan",117195769,Simone,Queens,Astoria,40.76505,-73.90918,Private room,80,1,161,2019-07-02,5.74,3,365 +17682955,Quiet private room near Columbia University,54677014,Andrea,Manhattan,Harlem,40.82279,-73.9517,Private room,79,2,72,2019-06-25,2.59,1,160 +17683202,Amazing Loft. Great light and view!,1721381,Malik,Brooklyn,Park Slope,40.68233,-73.97778,Entire home/apt,180,3,2,2017-04-18,0.07,1,0 +17683903,Full Brownstone Near Prospect Park,21725994,Tim,Brooklyn,Prospect-Lefferts Gardens,40.65598,-73.95831,Entire home/apt,190,7,9,2019-02-21,0.36,2,82 +17684067,Travelers Private Room,119737270,Fattie,Brooklyn,Flatbush,40.64041,-73.95674,Private room,60,2,0,,,2,175 +17684098,Spacious Uptown Apartment near Columbia University,19884477,Marine,Manhattan,Morningside Heights,40.80935,-73.95786,Entire home/apt,139,1,77,2018-12-17,2.79,1,0 +17684151,Cosy apartment in Park Slope,25054395,Ginevra,Brooklyn,South Slope,40.66929,-73.98707,Entire home/apt,163,5,12,2019-05-30,0.43,1,192 +17684277,Cute Private Room,119737270,Fattie,Brooklyn,Flatbush,40.63865,-73.95786,Private room,65,2,0,,,2,0 +17684359,BEST One Bedroom in the Heart of Manhattan,119829743,Scott,Manhattan,Chelsea,40.74054,-74.0004,Entire home/apt,365,6,7,2018-01-26,0.26,1,0 +17684828,Amazing Astoria New York 2 bedroom 10 min to NYC,120456470,Nicholas,Queens,Ditmars Steinway,40.77411,-73.90926,Entire home/apt,200,5,42,2018-12-07,1.55,1,77 +17684912,Modern 1 bedroom condo near Pratt in Bed-Stuy,6274742,Michael,Brooklyn,Bedford-Stuyvesant,40.69197,-73.95849,Entire home/apt,84,4,8,2019-06-12,1.10,1,0 +17686461,A1Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75386,-73.93324,Private room,58,1,104,2019-06-11,3.74,9,300 +17690331,"Quiet Bedroom in Central Bushwick, 16 mins to NYC",58953152,Dmitry,Brooklyn,Bushwick,40.69927,-73.91316,Private room,42,2,12,2018-12-30,1.26,2,0 +17690699,"Modern, sunny, garden 2 bedroom",64401976,Erin,Brooklyn,South Slope,40.66175,-73.98731,Entire home/apt,90,3,76,2019-06-20,2.75,1,248 +17691601,Charming Blue Bdrm in Victorian Home,3249903,Kamilya,Brooklyn,Flatbush,40.63501,-73.95522,Private room,98,4,0,,,3,0 +17692275,SUNNY BDRM IN VICTORIAN HOME,3249903,Kamilya,Brooklyn,Flatbush,40.63637,-73.95698,Private room,75,4,2,2019-06-10,0.32,3,188 +17692837,"Manhattan Large, room by CUNY& Columbia University",27378293,Lendy,Manhattan,Harlem,40.82837,-73.94854,Private room,86,2,3,2018-09-13,0.11,3,342 +17692964,Downtown NYC Luxury Apartment - TriBeCa,6198824,Tyler,Manhattan,Tribeca,40.7192,-74.01022,Entire home/apt,251,1,12,2017-05-28,0.43,1,0 +17694203,Sun drenched Park Slope getaway..,50755667,Kyla,Brooklyn,South Slope,40.66865,-73.9865,Entire home/apt,85,3,6,2019-02-20,0.23,3,98 +17695571,Luxury 2 BR in Urban Brooklyn,14768609,Grace,Brooklyn,Fort Greene,40.69677,-73.97112,Entire home/apt,285,4,19,2019-07-05,0.68,1,15 +17697164,NEW Park Avenue-Madison Avenue 3BED Condo Sleeps 6,120570941,Genee,Manhattan,Murray Hill,40.74817,-73.98211,Entire home/apt,325,2,5,2017-11-15,0.18,1,0 +17697781,Luxury High-Rise Studio with VIEWS,120577730,Kate,Manhattan,Financial District,40.70833,-74.0131,Entire home/apt,220,2,9,2019-04-09,0.33,1,47 +17697886,Park Slope Gem,120577640,David,Brooklyn,Park Slope,40.66926,-73.97862,Private room,250,1,0,,,1,89 +17698189,A2Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75551,-73.934,Private room,58,1,74,2019-06-21,2.66,9,281 +17698990,A4Long Island City Big Room Great Location,79105834,Leo,Queens,Long Island City,40.75603,-73.93405,Private room,58,1,86,2019-06-23,3.09,9,301 +17699556,Huge room in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67268,-73.95249,Private room,50,3,16,2018-08-29,0.62,4,37 +17699647,"Minimal Oasis | Best Location:S Williamsburg, BK",11524572,Angelica And Prescott,Brooklyn,Williamsburg,40.71233,-73.96181,Entire home/apt,145,3,56,2019-06-24,2.01,1,18 +17699790,"HGV Club NY, NY",120599606,James,Manhattan,Midtown,40.76383,-73.97704,Private room,199,2,0,,,1,0 +17701658,Luxury Private room in Upper East Side,10661558,Gio,Manhattan,Upper East Side,40.77546,-73.94897,Private room,126,1,120,2019-06-30,4.28,4,148 +17702057,Upper East Side Cozy Apartment,26177358,Vladimir,Manhattan,Upper East Side,40.7683,-73.95919,Entire home/apt,230,4,34,2019-06-25,1.33,1,4 +17702242,Stylish Private BR in the Upper East Side,10661558,Gio,Manhattan,Upper East Side,40.77349,-73.94994,Private room,129,1,117,2019-07-04,4.20,4,155 +17702320,Chic Private BR in Upper East!,10661558,Gio,Manhattan,Upper East Side,40.77571,-73.94803,Private room,119,1,120,2019-06-09,4.34,4,147 +17707963,"5mins from JFK, one cozy bedroom for one",119592255,Kevin,Queens,Jamaica,40.6809,-73.78196,Private room,50,1,173,2019-07-07,6.15,2,365 +17710717,"Light-filled, cozy 2 bedroom apartment",18481424,Tomas,Brooklyn,Bedford-Stuyvesant,40.68968,-73.94483,Entire home/apt,100,7,3,2018-10-21,0.11,1,0 +17710842,"Home Away From Home. Sunny, Spacious 1BR Apartment",387844,Mike,Brooklyn,Brooklyn Heights,40.69452,-73.99552,Entire home/apt,199,90,35,2019-04-09,1.25,1,0 +17711806,Private Room & Private bathroom 2mins to subway!,28573,Sara,Brooklyn,Bedford-Stuyvesant,40.6778,-73.9135,Private room,65,1,140,2019-06-30,5.00,1,144 +17712166,Great room in Washington heights!,43098504,Mike,Manhattan,Washington Heights,40.85022,-73.92903,Private room,50,4,9,2018-09-29,0.33,1,83 +17712552,"Cozy, Private Guest Bedroom In A Great Location",73756811,Cara,Brooklyn,Crown Heights,40.67247,-73.94421,Private room,65,1,51,2018-06-28,1.83,1,0 +17712998,Hip One Bedroom Apartment in NYC's East Village,40031815,Kelly,Manhattan,East Village,40.72864,-73.98102,Entire home/apt,200,5,2,2018-09-25,0.07,1,0 +17713865,Private Room!,7475363,Lola,Manhattan,Upper East Side,40.76578,-73.95443,Private room,150,2,61,2019-06-16,2.85,2,287 +17714306,Private Room in Brooklyn,53972872,Autumn,Brooklyn,Crown Heights,40.67186,-73.94094,Private room,50,1,6,2018-08-28,0.21,1,0 +17716140,Beautiful sunny studio.,120761466,Atherly,Brooklyn,Flatbush,40.64765,-73.95804,Private room,90,2,45,2019-06-30,1.64,1,363 +17716205,Brand new studio in high rise,26980460,Joe,Brooklyn,Downtown Brooklyn,40.69383,-73.98539,Entire home/apt,180,14,1,2018-09-17,0.10,1,0 +17716225,Dreamy Parkside Loft-Studio w/ Private Patio,84548731,Shelley,Brooklyn,Prospect-Lefferts Gardens,40.65531,-73.96161,Private room,50,4,6,2019-03-31,0.22,1,6 +17716237,Sunny one bedroom on the Upper East Side,4812440,Mara,Manhattan,Upper East Side,40.7701,-73.9589,Entire home/apt,250,2,0,,,1,0 +17716523,30 Minutes from Manhattan Apartment by South Beach,41398005,Mirco,Staten Island,Arrochar,40.59347,-74.06914,Entire home/apt,122,1,52,2019-06-23,2.00,3,219 +17717593,Plymouth Loft,7854459,Christina,Brooklyn,DUMBO,40.70208,-73.98568,Entire home/apt,225,2,1,2018-04-14,0.07,1,88 +17717799,Neat En-suite room attached PRIVATE full bath,120767920,Jimmy &Cindy,Queens,Flushing,40.75708,-73.81268,Private room,51,2,129,2019-06-23,4.63,10,355 +17718694,Artist's Bitchin 1BR,4933848,Mathew,Brooklyn,Bushwick,40.69554,-73.92588,Entire home/apt,90,1,4,2017-05-12,0.14,1,0 +17719353,Private Queen room&bathroom in NEW Luxury Building,89197711,Albert,Brooklyn,Gravesend,40.60044,-73.99341,Private room,79,1,2,2017-05-28,0.08,1,0 +17719502,Duplex 5 BR apartment in a historic brownstone,29055402,Petra,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93509,Entire home/apt,275,2,66,2019-06-28,2.42,1,23 +17725136,Large room in Bushwick,45387487,Andrew,Brooklyn,Bushwick,40.69705,-73.92585,Private room,45,1,0,,,1,1 +17728208,Bright and Clean One Bedroom - Females Only!,95306427,Alexi,Manhattan,East Village,40.72766,-73.98249,Private room,100,3,26,2018-10-21,0.94,1,0 +17728927,"Eclectic, Comfortable, Quiet & Convenient on UWS",62641345,Bob,Manhattan,Upper West Side,40.7975,-73.97161,Entire home/apt,199,2,83,2019-06-30,3.01,1,37 +17729060,Cute and Sunny Soho Room,4135793,Zoe,Manhattan,Nolita,40.72263,-73.99622,Private room,75,1,8,2017-04-30,0.28,1,0 +17729625,Lovely Brown Stone Casa Curran,120890372,Michelle Curran,Brooklyn,Bushwick,40.695,-73.90755,Entire home/apt,145,7,25,2019-06-16,0.95,1,271 +17730019,HALSEY HAVEN,101435219,Gretchen,Brooklyn,Bedford-Stuyvesant,40.68607,-73.92392,Entire home/apt,161,2,45,2019-06-24,1.65,2,270 +17730390,Bedroom in Brooklyn Communal House,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.68116,-73.95726,Private room,45,2,14,2017-09-30,0.51,3,0 +17730939,Large bright bedroom,369015,Thai,Bronx,Pelham Gardens,40.86437,-73.83863,Private room,43,20,6,2019-06-23,0.69,2,104 +17730964,Charming room in a spacious 3/1,41847916,Farah,Brooklyn,Bedford-Stuyvesant,40.68683,-73.94411,Private room,50,2,0,,,1,0 +17731252,Sunny Brooklyn Home,9263625,Em,Brooklyn,Prospect Heights,40.67774,-73.96487,Entire home/apt,95,7,22,2019-06-23,0.78,1,13 +17731335,Private room in cozy Astoria apartment,120906593,Yoko,Queens,Astoria,40.76121,-73.92341,Private room,60,2,40,2019-06-23,1.46,1,67 +17731370,Spacious Apartment Near Yankee Stadium.,120906241,Crystal,Bronx,Morris Heights,40.84565,-73.91684,Entire home/apt,80,4,0,,,1,0 +17731891,New 2 BDR apt/great location/20 mins to Manhattan,120725189,Svetlana,Brooklyn,Bath Beach,40.60353,-74.01599,Entire home/apt,180,3,46,2019-07-02,1.68,1,334 +17735101,Quiet Studio in the ❤️of Hells Kitchen for 1 person,25651976,Lola,Manhattan,Hell's Kitchen,40.7606,-73.99345,Entire home/apt,150,8,8,2019-01-02,0.30,1,11 +17735156,Private Cozy Large Comfortable Bedroom.,4204783,Kevin,Staten Island,West Brighton,40.63116,-74.12278,Private room,49,2,45,2019-06-09,1.62,3,276 +17735639,Adorable Bright Private Bedroom.,4204783,Kevin,Staten Island,West Brighton,40.63149,-74.12393,Private room,49,2,32,2019-06-29,1.14,3,315 +17735760,5-STAR REVIEW 1 BEDROOM LINCOLN CENTER- BEST PRICE,9215977,Kevin,Manhattan,Upper West Side,40.77617,-73.98188,Entire home/apt,249,3,20,2019-06-29,0.84,1,63 +17737245,Chic & zen room in a very clean Brooklyn apt,43045034,Thuy,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93839,Private room,70,3,27,2019-06-01,1.81,1,0 +17737925,Extra Cosy Room in Williamsburg,120989542,Arthur,Brooklyn,Williamsburg,40.70626,-73.95212,Private room,60,4,3,2017-08-07,0.12,1,0 +17738174,Bayside Room w/ 1 Bed,116746802,Christine,Queens,Bayside,40.74924,-73.75654,Private room,49,3,29,2019-06-16,1.07,5,96 +17738717,Clean Cosy Bedroom w/Desk 10min to JFK & Big Mall,6166708,Christine & Einstein,Queens,Rosedale,40.65252,-73.73425,Private room,22,1,59,2019-05-17,2.10,1,0 +17739111,Living Room in 2 Bedroom Apartment Brighton Beach,119523037,Anna,Brooklyn,Brighton Beach,40.58017,-73.9616,Shared room,50,1,1,2017-09-13,0.05,4,1 +17741347,Cozy studio w/kitchen & bathroom. Great location,3435092,Elena,Manhattan,Upper East Side,40.7823,-73.94838,Entire home/apt,105,5,117,2019-06-23,4.29,3,187 +17743697,Glam Private Bedroom 6 stops to Time Square,14746465,Brooklyn,Manhattan,Harlem,40.81184,-73.94488,Private room,89,3,49,2018-07-15,1.76,1,157 +17744351,1 Bd furnished Bayridge Brooklyn NY,119029523,Ebada,Brooklyn,Fort Hamilton,40.62241,-74.02863,Entire home/apt,115,4,3,2019-05-19,0.48,3,295 +17746222,Perfect bedroom. Near Subways Columbia CityCollege,16721721,Federico,Manhattan,Harlem,40.8153,-73.9508,Private room,65,2,18,2018-11-04,0.64,1,0 +17748284,Guest BedRm in quaint NYC neighborhood. NEAR TRAIN,25196982,Nikolas,Queens,Astoria,40.76924,-73.91702,Private room,65,1,11,2019-06-17,3.24,1,9 +17749273,1 br Woodside - close to LGA!,121096858,Caressa,Queens,Woodside,40.74176,-73.90631,Private room,35,1,0,,,1,0 +17750238,Great room in a spacious Inwood Apartment,13860679,Max,Manhattan,Inwood,40.86348,-73.92232,Private room,99,3,4,2018-10-03,0.15,3,179 +17750380,Bright Sanctuary in Williamsburg,611109,Alexandra,Brooklyn,Williamsburg,40.70849,-73.96603,Private room,83,1,46,2019-06-25,1.69,2,192 +17750513,"Private Room with Full Private Bath, cozy&quiet",121109701,Sean,Brooklyn,Williamsburg,40.70961,-73.94635,Private room,45,1,98,2019-06-27,3.53,1,44 +17750661,elegant room in a spacious Inwood apartment,13860679,Max,Manhattan,Inwood,40.86448,-73.92351,Private room,99,3,0,,,3,180 +17751140,Room in Queens NY near LGA,119987770,Sonia,Queens,East Elmhurst,40.76075,-73.87943,Private room,55,1,296,2019-07-01,10.60,2,322 +17751338,Brooklyn Beauty,19222653,Kara,Brooklyn,Bay Ridge,40.63431,-74.02552,Entire home/apt,100,3,25,2019-06-11,0.96,1,353 +17751792,Prospect Heights Jewel,105315535,Ben,Brooklyn,Prospect Heights,40.67453,-73.96785,Entire home/apt,158,30,0,,,3,281 +17752493,Private Room in Large Two-floor Apt w/ Backyard,20926711,Ashek,Manhattan,Chelsea,40.74864,-73.99398,Private room,89,2,2,2017-04-02,0.07,1,113 +17752907,large light-filled bedroom in Bushwick!,65068375,Mabel,Brooklyn,Bushwick,40.70216,-73.92928,Private room,37,2,1,2017-05-08,0.04,1,0 +17753121,Spacious Serene Large Room near L Train,121141615,Beth,Queens,Ridgewood,40.70886,-73.91742,Private room,60,1,1,2017-09-24,0.05,1,0 +17754072,Bed in Family Home Near LGA Airport,26432133,Danielle,Queens,East Elmhurst,40.76389,-73.87155,Shared room,38,1,224,2019-07-06,7.96,5,80 +17756109,Manhattan Hotel Room,7050126,Sasha,Manhattan,Midtown,40.76305,-73.97841,Entire home/apt,800,1,19,2017-06-24,0.69,2,0 +17757976,Spacious Luxury Loft - 1BR,121185129,Kathleen,Manhattan,Gramercy,40.7345,-73.98482,Entire home/apt,325,6,11,2018-07-29,0.41,1,177 +17759478,(4) Comfy Home Away From Home/Multiple Rooms,88043058,Pamela,Brooklyn,Bedford-Stuyvesant,40.6899,-73.95498,Private room,89,1,76,2019-06-30,2.77,4,358 +17759482,"Clean, beautifully modernized, vintage apartment",32012247,Isaiah,Manhattan,Lower East Side,40.72194,-73.98941,Shared room,68,1,5,2017-06-18,0.18,1,0 +17759520,Harlem Triplex,3726131,John,Manhattan,Harlem,40.80766,-73.94342,Entire home/apt,700,6,2,2018-04-08,0.09,2,72 +17759694,Private Williamsburg SunDrenched Large Studio,17041154,Lindsay,Brooklyn,Williamsburg,40.70987,-73.94756,Entire home/apt,210,2,35,2019-06-23,1.56,1,170 +17762218,Greatly located Williamsburg 1BR ap,22570120,Charles,Brooklyn,Williamsburg,40.71164,-73.9572,Entire home/apt,150,30,5,2018-06-02,0.20,2,48 +17762525,"Quiet, Comfortable Studio in Chelsea/Village",19824881,Julia,Manhattan,Chelsea,40.74128,-73.99986,Entire home/apt,139,1,0,,,1,0 +17762733,MASTER SUITE IN THE CENTRAL PARK,114477998,Marilyn,Manhattan,East Harlem,40.79274,-73.94562,Private room,103,2,137,2019-07-06,5.12,4,208 +17762827,"Perfect, cozy room in Crown Heights, Brooklyn",1898704,Luca,Brooklyn,Crown Heights,40.67181,-73.95865,Private room,45,25,2,2017-08-20,0.08,1,0 +17763622,JUNIOR SUITE IN MANHATTAN,114477998,Marilyn,Manhattan,East Harlem,40.79142,-73.94664,Private room,90,2,110,2019-06-29,4.04,4,237 +17763785,"Oversized one bedroom +Midtown, West 57 the St.",120381434,JoAnn,Manhattan,Hell's Kitchen,40.76722,-73.98568,Entire home/apt,227,5,6,2019-04-23,0.95,1,0 +17764129,One Bedroom Apartment in Williamsburg Brooklyn,121244117,Todd,Brooklyn,Williamsburg,40.71869,-73.95158,Entire home/apt,100,2,1,2017-03-24,0.04,1,0 +17764355,"@Ferry,Loft,2Bdrm/4bed.Private,Renovated/Stylish",1715301,Mark,Staten Island,Tompkinsville,40.63568,-74.07826,Entire home/apt,75,4,117,2019-07-01,4.31,3,173 +17764691,UWS Studio Apt (Between Columbus & Amsterdam Ave),120951063,Roxanne,Manhattan,Upper West Side,40.78549,-73.97664,Entire home/apt,97,3,4,2017-04-16,0.14,1,0 +17765198,Neat Room w/ 1 Bed,116746802,Christine,Queens,Bayside,40.75092,-73.75316,Private room,50,7,35,2019-06-24,1.29,5,145 +17765395,Bayside Room w/ 2 Bed,116746802,Christine,Queens,Bayside,40.75136,-73.75269,Private room,60,7,30,2019-05-26,1.10,5,169 +17765398,"Cozy, quiet apartment in trendy Greenpoint spot!",46504226,Chelsea,Brooklyn,Greenpoint,40.73018,-73.95464,Private room,50,7,1,2019-03-16,0.26,1,157 +17765841,2-bedroom Apt on Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.74923,-73.80568,Entire home/apt,229,1,22,2018-12-27,0.80,6,265 +17766580,Sunny 1 bedroom in Nolita,4223227,Masha,Manhattan,Lower East Side,40.7203,-73.99172,Entire home/apt,150,2,18,2018-04-28,0.87,1,0 +17771762,"Quiet, Large, & Cozy Bedroom in Cool Bushwick Apt",9864136,Anthony,Brooklyn,Bushwick,40.68643,-73.91465,Private room,50,1,3,2017-09-30,0.13,26,342 +17771811,NYC pad without the NYC price tag,48331309,Ketty,Staten Island,Tompkinsville,40.63101,-74.08443,Entire home/apt,95,4,54,2018-09-24,2.06,1,0 +17774316,Large bedroom in 3 bedroom apt UES,121352443,Michael,Manhattan,East Harlem,40.78866,-73.95435,Private room,62,3,3,2017-04-28,0.11,1,0 +17774731,Beautiful private studio near central park,45006492,Lucia,Manhattan,East Harlem,40.80617,-73.9415,Entire home/apt,115,1,161,2019-06-23,5.78,2,156 +17774810,Bedroom in fully renovated apartment,29546670,Norberto & Lana,Queens,Ridgewood,40.70336,-73.90991,Private room,55,1,41,2019-07-03,2.18,1,5 +17774890,Brownstone with farmhouse charm,20378750,Corinne,Brooklyn,Crown Heights,40.67438,-73.94071,Entire home/apt,90,6,8,2018-07-24,0.35,1,8 +17774989,Cozy room in West Harlem,121359320,Kathy,Manhattan,Harlem,40.83046,-73.94142,Private room,30,1,7,2017-08-21,0.25,1,0 +17776104,Private room in East Harlem close to heart of NYC,38772311,Sophie,Manhattan,East Harlem,40.80113,-73.94283,Private room,100,2,0,,,1,0 +17776390,CHIC LOFT IN CONVERTED FACTORY - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70422,-73.92757,Private room,71,1,73,2019-06-21,2.61,3,364 +17776554,ARTIST LOFT IN CONVERTED FACTORY - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70276,-73.9271,Private room,70,1,59,2018-04-15,2.11,3,362 +17777286,Brownstone studio near central park,45006492,Lucia,Manhattan,East Harlem,40.80623,-73.94047,Entire home/apt,115,1,134,2019-06-24,4.81,2,1 +17777654,Bright Comfy Quiet Room Just 6 Mins from JFK!,121391142,Deloris,Queens,Springfield Gardens,40.666,-73.76333,Private room,65,1,325,2019-06-12,11.72,2,0 +17778366,Shang Ri La Studio,10910171,Melissa,Queens,Rockaway Beach,40.58493,-73.81736,Entire home/apt,120,1,113,2019-06-25,4.07,2,133 +17778781,Room in cute apartment in South Williamsburg,120567010,Molly,Brooklyn,Williamsburg,40.71168,-73.9657,Private room,100,5,2,2017-05-25,0.07,1,0 +17778941,L Bright & Cozy & Modern room 30 mins to Manhattan,43052484,Olzhas,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93502,Private room,59,1,181,2019-07-06,6.65,1,34 +17779504,Relaxing Quiet Room Just 6 Mins from JFK Airport!,121391142,Deloris,Queens,Springfield Gardens,40.66535,-73.76367,Private room,65,1,368,2019-06-21,13.24,2,0 +17779879,UWS Private Room & Bath,18140569,Carrie,Manhattan,Upper West Side,40.80171,-73.96623,Private room,89,5,55,2018-09-07,2.02,1,0 +17780857,"SUPER HIGH END condo, roof deck, Ditmas Park Bklyn",121429669,Elizanda,Brooklyn,Kensington,40.63052,-73.97161,Private room,250,2,0,,,1,365 +17781440,Elegant bedroom 8 mins-JFK&the mall,55125246,Yvonne,Queens,Jamaica,40.68615,-73.78747,Private room,80,1,177,2019-06-23,7.00,3,180 +17786762,"Lovely 1 Bdrm, Glittering City Lights & Waterview",945880,Juhea,Manhattan,Hell's Kitchen,40.76428,-73.9941,Entire home/apt,127,3,1,2017-05-12,0.04,1,0 +17788697,PRIVATE BROOKLYN APT. with quiet garden,3682941,Marco,Brooklyn,Bedford-Stuyvesant,40.68769,-73.95254,Private room,150,5,0,,,1,66 +17790276,Spacious 2 bedroom w/ balcony. BrooklynNY NEAR ALL,116754031,Rosemary,Brooklyn,Flatlands,40.63159,-73.92724,Entire home/apt,170,2,3,2019-06-27,1.14,3,180 +17790958,Room in SOHO! On Broome Street,49651890,Rosemarie,Manhattan,Nolita,40.72196,-73.99664,Private room,120,6,47,2019-07-03,2.54,1,40 +17791461,Bunk Bed Fun Room - really cozy and affordable!,5121858,Erica,Brooklyn,Bushwick,40.69708,-73.91237,Private room,44,3,31,2019-07-01,1.11,1,365 +17791464,Convenient LIC Brownstone,57643057,Daniel,Queens,Long Island City,40.7483,-73.94531,Private room,71,7,102,2019-04-15,3.66,2,173 +17791938,Seperate Appartement in Appartement Bklyn Hights,16302498,Andreas,Brooklyn,Brooklyn Heights,40.69253,-73.99249,Private room,150,2,61,2019-06-16,2.36,1,117 +17792429,The Maujer Patio,28876335,Michael,Brooklyn,Williamsburg,40.70973,-73.94552,Private room,75,2,0,,,1,0 +17792856,Cute bedroom available near subway in Astoria!,73610315,Kerstin,Queens,Astoria,40.76529,-73.92304,Private room,53,2,14,2018-05-17,0.55,1,0 +17793180,Nice room in quiet 3BR apartment,106046570,Diamond,Brooklyn,Bushwick,40.69491,-73.91266,Private room,100,1,2,2018-01-01,0.09,1,269 +17793185,Sunny Apartment In Brownstone 2BD with deck,3803423,Jenna,Brooklyn,Prospect Heights,40.67841,-73.9698,Entire home/apt,175,7,5,2018-10-25,0.18,1,0 +17793963,Luxury/360 View/Gym/Downtown/Doorman,121574038,Christianne,Manhattan,East Village,40.72107,-73.98039,Entire home/apt,170,3,8,2019-05-27,0.36,1,111 +17794915,Modest West Harlem Room Nearby Columbia University,121585653,Ari,Manhattan,Harlem,40.81733,-73.95413,Private room,25,1,0,,,1,0 +17796480,PRIVATE ROOM near JFK & La Guardia,100812175,Luz,Queens,Jackson Heights,40.75125,-73.87644,Private room,51,1,108,2019-06-30,3.91,1,306 +17797691,Manhattan Art Haven,70543663,Kelli,Manhattan,Upper East Side,40.76999,-73.94928,Entire home/apt,95,1,89,2019-06-21,3.72,1,0 +17806646,Beautiful Loft Railroad apartment in Bushwick,29952340,Nico,Brooklyn,Bushwick,40.70432,-73.9267,Entire home/apt,94,2,51,2019-06-28,1.87,1,74 +17808825,AG's Palace 1,121612198,Maura,Brooklyn,Canarsie,40.6427,-73.91266,Private room,69,1,20,2018-10-15,0.78,4,305 +17808917,Gorgeous & Spacious UES apartment,85218001,Natasha,Manhattan,Upper East Side,40.77666,-73.95618,Private room,105,2,8,2018-06-16,0.30,1,0 +17809161,East Village 1 Bdrm Price Negotiable Exposed Brick,1872051,Alejo,Manhattan,East Village,40.72856,-73.98125,Entire home/apt,79,2,1,2017-04-07,0.04,1,0 +17809303,Room With A View,1495021,Lida,Queens,Sunnyside,40.7381,-73.91893,Private room,64,31,0,,,2,95 +17809310,Cozy guest room in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67164,-73.95326,Private room,40,15,26,2019-06-03,0.93,4,67 +17809649,Gorgeous East Harlem private room,76534284,TaSh,Manhattan,East Harlem,40.79295,-73.93808,Private room,62,3,21,2018-09-23,0.77,1,0 +17811033,LARGE LUXURY DESIGNER WALL ST APARTMENT,96735804,E,Manhattan,Financial District,40.70552,-74.00941,Entire home/apt,110,7,32,2019-06-13,1.17,1,272 +17812444,3 bedroom in the heart of the west village,54850437,Lauren,Manhattan,West Village,40.73581,-74.00666,Entire home/apt,185,4,22,2019-07-02,0.81,1,22 +17812919,Vibrant Brownstone Penthouse Near Central Park,6430476,John,Manhattan,East Harlem,40.80726,-73.93815,Entire home/apt,177,2,130,2019-07-05,4.80,1,267 +17813679,Bright 1 Bedroom Apartment in Brooklyn,15400695,Danielle,Brooklyn,Crown Heights,40.67541,-73.94917,Entire home/apt,110,2,4,2019-05-19,0.30,1,0 +17813907,"Perfect 1 Bdrm Touring Apt, Midtown, Close to ALL!",9127398,Carissa,Manhattan,Murray Hill,40.74891,-73.97846,Entire home/apt,235,3,0,,,1,0 +17814209,"Private room in UES:Ideal Location, Private &Quiet",95785961,Cinthya,Manhattan,Upper East Side,40.78311,-73.95299,Private room,80,3,85,2019-05-26,3.06,1,28 +17817203,Room rent for close to Manhattan,121802962,Sandra,Queens,Astoria,40.77411,-73.92731,Private room,53,5,47,2019-06-23,1.76,1,5 +17819994,"Bedroom in Park Slope, 20 min to city",20846509,Ludvig,Brooklyn,Park Slope,40.67148,-73.97766,Private room,95,9,4,2017-11-11,0.18,1,0 +17820343,Cozy Studio on the Upper East Side!,30283594,Kara,Manhattan,Upper East Side,40.76138,-73.9598,Entire home/apt,115,30,1,2017-09-30,0.05,121,336 +17822626,"Airy, Private Room in an Artistic Apartment",29510483,Amandine,Brooklyn,Prospect-Lefferts Gardens,40.65749,-73.95511,Private room,65,2,0,,,1,0 +17824129,NEWLY FURNISHED Studio at Park Avenue South,102763353,Krysia,Manhattan,Midtown,40.74397,-73.98405,Entire home/apt,130,4,5,2018-09-02,0.19,2,0 +17824351,"Heart of East Village, Middle of Everything",30381715,Sean,Manhattan,East Village,40.72552,-73.98657,Private room,79,4,1,2017-05-13,0.04,1,0 +17825100,2 bedroom with patio in clinton hill,48243500,Carri,Brooklyn,Clinton Hill,40.69422,-73.96565,Entire home/apt,107,2,5,2017-05-30,0.18,1,0 +17826827,Shabby chic Studio 1 Block from McGolrick Park,5626253,Matthew,Brooklyn,Greenpoint,40.7233,-73.94187,Entire home/apt,116,1,9,2017-04-30,0.32,1,0 +17828289,Dreamy & Flowery Bedstuy Bedroom,105018962,Karly,Brooklyn,Bedford-Stuyvesant,40.69461,-73.94825,Private room,47,3,5,2017-08-14,0.20,2,0 +17828438,Lovely Bedroom in heart of East Village,23089531,Caitlin,Manhattan,East Village,40.72771,-73.98983,Private room,100,2,66,2019-06-12,2.39,3,27 +17829241,All in one place (A),74179880,Silvia,Brooklyn,East New York,40.6754,-73.88989,Private room,75,3,71,2019-06-10,2.61,8,360 +17829947,Big & Sunny Apartment in Williamsburg,81141009,Jason,Brooklyn,Williamsburg,40.71666,-73.94562,Entire home/apt,160,5,10,2017-09-27,0.37,1,0 +17830470,Spacious 3BR Brownstone with HUGE backyard,22659263,Kate,Brooklyn,Crown Heights,40.67091,-73.94888,Entire home/apt,275,4,6,2019-07-06,0.26,1,96 +17831929,Apartment of Musicians in Ditmas Park,11136995,Gabriel,Brooklyn,Flatbush,40.64807,-73.96625,Private room,22,3,2,2018-03-05,0.08,1,0 +17832970,Private Room in 2 Bedroom Apartment by the Sea,119523037,Anna,Brooklyn,Brighton Beach,40.58186,-73.9602,Private room,60,1,2,2019-02-11,0.07,4,1 +17835503,Manhattan/ Center of Manhattan,46506241,Marcy,Manhattan,Harlem,40.81213,-73.9395,Entire home/apt,70,4,9,2018-07-02,0.44,1,0 +17839052,TWO PRIVATE ROOMS in apt share,119466544,Jim,Brooklyn,South Slope,40.66424,-73.98395,Private room,100,3,6,2019-05-07,0.23,2,179 +17839487,Sunny Top Floor Room with Manhattan skyline view,122012905,Lene,Brooklyn,Bedford-Stuyvesant,40.68144,-73.9426,Private room,55,5,0,,,1,0 +17839944,CUTE ROOM - Times Square-19minutes,122026078,Shah Memo,Manhattan,Harlem,40.81703,-73.9525,Private room,64,2,8,2019-06-23,0.29,3,98 +17840284,Great Washington Heights Private Bedroom in a 4 BR,122028274,Markus,Manhattan,Washington Heights,40.84545,-73.93809,Private room,47,3,4,2018-08-13,0.16,1,0 +17840682,Home away from home in the heart of Chelsea,122032246,Jaime,Manhattan,Chelsea,40.74107,-73.99936,Entire home/apt,250,2,2,2017-04-21,0.07,1,0 +17841354,Williamsburg Dream Home,122038353,Florent,Brooklyn,Williamsburg,40.71724,-73.94492,Entire home/apt,190,15,8,2019-06-09,0.31,1,198 +17842111,1st flr full studio apartment- entire place/SAFE,122044895,Yerddy,Bronx,Kingsbridge,40.8781,-73.89998,Entire home/apt,99,3,116,2019-06-22,4.35,2,86 +17842115,"Art, Design & Comfort.",68228552,Assane,Brooklyn,Bedford-Stuyvesant,40.68309,-73.95249,Private room,88,7,6,2018-10-28,0.33,2,82 +17842170,Brooklyn Chic,122044489,Tonie,Brooklyn,Bedford-Stuyvesant,40.6905,-73.94375,Private room,100,1,0,,,2,130 +17843168,Columbus Circle Lincoln center Central park,112335936,Ronnie,Manhattan,Upper West Side,40.77048,-73.98252,Private room,250,3,11,2019-04-21,0.42,1,17 +17843998,"Large & Sunny, a Lovely 2-Bed Apt in East Village",23089531,Caitlin,Manhattan,East Village,40.72571,-73.98789,Entire home/apt,250,2,8,2019-06-02,0.32,3,264 +17844130,Trendy Apt in Historic Brooklyn Heights,101127101,John,Brooklyn,Brooklyn Heights,40.69564,-73.99691,Entire home/apt,150,3,26,2019-05-27,0.95,1,0 +17844682,MIDTOWN * UNICORN * TOWNHOUSE!!,22456949,Matthew,Manhattan,Hell's Kitchen,40.76616,-73.98916,Entire home/apt,484,2,107,2019-06-23,3.95,1,46 +17845507,Small room in South Slope House,122079426,Martha,Brooklyn,South Slope,40.6632,-73.98529,Private room,50,1,19,2017-06-12,0.71,1,0 +17845650,Cosy Midtown Studio,121620125,Phil,Manhattan,Midtown,40.75794,-73.96959,Entire home/apt,141,8,12,2018-02-02,0.44,1,0 +17847040,Spacious 1bd in the heart of Midtown High Rise !,31451454,Terry,Manhattan,Midtown,40.76352,-73.9831,Entire home/apt,199,2,70,2019-06-15,2.65,1,263 +17848298,Quiet Home in Manhattan,9871522,Adam,Manhattan,Morningside Heights,40.81473,-73.96217,Entire home/apt,140,2,2,2018-05-07,0.14,1,0 +17848627,Cozy Room in Harlem,122118705,Anselmo,Manhattan,Harlem,40.8217,-73.93751,Private room,79,2,36,2019-06-30,3.17,1,218 +17848657,Sunny Brooklyn Apartment with Full Kitchen,12117418,Jeanette,Brooklyn,Navy Yard,40.69851,-73.96961,Entire home/apt,142,2,3,2017-08-28,0.11,1,0 +17848838,Spacious Bedroom with Private Bathroom,57651976,Viona,Brooklyn,Bedford-Stuyvesant,40.68656,-73.9522,Private room,80,1,3,2017-10-01,0.11,1,0 +17849234,perfect apartment in New york with 3 bedrooms,6945333,Duryea,Manhattan,Chelsea,40.75538,-74.00441,Shared room,337,27,0,,,1,365 +17853353,Private Room Near Bronx Zoo and NYBG!,48106825,Julia,Bronx,Pelham Gardens,40.86437,-73.8485,Private room,47,2,40,2019-04-16,1.58,2,339 +17855771,Sunny room in spacious Williamsburg Loft!,34745360,Anna,Brooklyn,Williamsburg,40.71647,-73.95971,Private room,65,20,1,2017-06-01,0.04,2,0 +17856672,"New 1 Bedroom, Clean, Modern Apartment",53978622,Narina,Manhattan,Harlem,40.81217,-73.94056,Entire home/apt,149,3,80,2019-06-24,2.92,2,268 +17857431,Architect-Designed Brooklyn Townhouse,2065971,Elana,Brooklyn,Crown Heights,40.67933,-73.96305,Entire home/apt,300,5,3,2018-08-12,0.12,1,0 +17857890,Quiet 1 Br Apartent in Historical Brooklyn Heights,25502436,Anastasia,Brooklyn,Brooklyn Heights,40.6961,-73.99329,Private room,159,2,5,2018-11-16,0.19,1,363 +17858824,The Blue Room,611137,Shahar,Brooklyn,Clinton Hill,40.68352,-73.96771,Private room,60,3,9,2019-04-22,0.34,2,6 +17860067,Beautiful Sunlit Room in Brooklyn,7573472,Divina,Brooklyn,Bushwick,40.70219,-73.93115,Private room,50,3,2,2018-01-07,0.07,1,0 +17860607,Super Cozy Luxury Apt,10914834,Heidi,Manhattan,Financial District,40.70464,-74.00715,Entire home/apt,220,2,108,2019-07-01,3.92,1,225 +17860684,Manhattan Club (1 bedroom/Sleeps 4),41069190,Ana,Manhattan,Midtown,40.76587,-73.98211,Entire home/apt,380,4,0,,,1,0 +17861841,THE CREATIVE COZY ROOM,47591528,Janessa,Brooklyn,Sheepshead Bay,40.59211,-73.94127,Private room,99,1,13,2019-05-23,0.52,1,82 +17863000,"Greenpoint, BK 1 Bedroom, Couple/Solo Traveler",451032,Daniela,Brooklyn,Greenpoint,40.72428,-73.94686,Entire home/apt,120,3,8,2019-06-21,1.28,1,3 +17864665,Fully Furnish Fancy Alcove Studio in Manhattan,4059918,Sonia,Manhattan,Upper East Side,40.76987,-73.95111,Entire home/apt,110,14,4,2019-07-06,0.36,1,221 +17865806,Convenient location Private room,5828830,Low,Queens,Jamaica,40.67414,-73.76454,Private room,50,7,14,2018-07-28,0.50,2,0 +17865967,"12min to NY & 10minLGA/30minJFK, Fit Mem for 1mth+",100128949,Lisa,Queens,Astoria,40.75615,-73.91281,Private room,30,90,2,2017-07-01,0.08,4,341 +17866018,Beautiful Room in Styvesant Heights Brooklyn,122283834,Eve,Brooklyn,Bushwick,40.69723,-73.92511,Private room,60,5,22,2019-06-17,0.96,2,175 +17866206,"Coney Island Private Apt*** Wi Fi, LCD TV MCU Park",114736959,Ed,Brooklyn,Coney Island,40.57706,-73.98439,Entire home/apt,110,2,57,2019-05-27,2.13,6,144 +17866302,Harlem apt,22089863,Ali,Manhattan,Harlem,40.80533,-73.95049,Private room,75,1,2,2019-02-17,0.40,1,280 +17872922,Cozy 2-Bedroom in Williamsburg by the bridge,30494797,Terry,Brooklyn,Williamsburg,40.71185,-73.95806,Entire home/apt,100,20,10,2018-12-22,0.42,1,45 +17874595,Private room in a peaceful home ❤,122372251,Christopher,Manhattan,East Harlem,40.79274,-73.94286,Private room,65,1,81,2018-04-21,2.93,1,0 +17875002,Nice private room in quiet E Village apt,10387304,Michael,Manhattan,East Village,40.73057,-73.986,Private room,125,2,21,2019-07-01,0.77,2,329 +17875156,little place in Bushwick,56076854,Miranda,Brooklyn,Bushwick,40.69377,-73.91269,Private room,40,5,84,2019-07-05,3.04,2,316 +17876530,Spacious Garden Apartment Private Entrance,11305944,Yahaira,Bronx,Allerton,40.86868,-73.85483,Entire home/apt,105,2,73,2019-06-13,2.67,5,87 +17876921,Bright Williamsburg Apt Steps from Train,47054725,Katharine,Brooklyn,Williamsburg,40.70937,-73.95903,Entire home/apt,115,4,6,2017-09-20,0.22,1,0 +17877959,Huge Studio Apt+Sleeps 4 ppl Bklyn Near ALL,116754031,Rosemary,Brooklyn,Flatlands,40.62723,-73.92635,Entire home/apt,75,2,38,2019-06-30,1.38,3,363 +17879131,Amazing Space For Your Chelsea Stay,122419373,Pablo,Manhattan,Chelsea,40.74119,-74.0006,Private room,429,2,119,2019-06-17,4.33,1,288 +17880254,Spacious New York City Travelers Getaway,9808458,Zain,Bronx,Kingsbridge,40.8709,-73.89946,Shared room,60,2,11,2019-01-01,0.52,4,365 +17880865,Nurturing room in a 3 bedroom apt.,59654765,Calia,Brooklyn,Crown Heights,40.67689,-73.95079,Private room,30,3,3,2017-04-19,0.11,1,0 +17881079,Charming studio with Manhattan view.,17232044,Maria,Brooklyn,Greenpoint,40.72449,-73.94486,Private room,84,7,7,2019-01-02,0.26,1,24 +17881120,Cozy Room in the Heart of Chinatown,122442440,Randy,Manhattan,Chinatown,40.71326,-73.99698,Private room,75,2,59,2019-06-25,2.21,1,68 +17881234,Garden level private room + your own bathroom,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91701,Private room,50,4,10,2019-05-18,1.06,2,7 +17881553,"Deluxe Private Bedroom, Near Manhattan NYC",22384027,Shahana,Brooklyn,Crown Heights,40.67089,-73.9182,Private room,39,1,81,2019-05-27,2.99,10,220 +17887213,Beautiful 2 Bedroom suite in Bedford Stuyvesant.,17859338,Jacqueline,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95471,Entire home/apt,160,5,59,2019-07-04,2.40,2,243 +17887871,Charming Greenpoint Gem,122513490,Dorothy,Brooklyn,Greenpoint,40.72158,-73.94578,Entire home/apt,175,3,71,2019-06-21,2.67,1,20 +17888337,Nice neat Bedroom attached by PRIVATE BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75901,-73.81461,Private room,47,3,92,2019-06-16,3.40,10,172 +17889021,Charming 1 Br apartment minutes from the train,17739345,Boris,Queens,Ditmars Steinway,40.77872,-73.90943,Entire home/apt,89,1,0,,,1,0 +17891040,Brooklyn Bay Ridge area★★明るいお部屋★,55981584,Saori,Brooklyn,Bay Ridge,40.63613,-74.02262,Private room,29,1,3,2017-04-10,0.11,2,0 +17892114,Walk to CENTRAL PARK and TIME SQUARE!!!!,6716330,Chris,Manhattan,Midtown,40.76811,-73.98181,Private room,95,3,62,2019-06-13,2.39,3,86 +17892835,"Comfy room seconds from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.67053,-73.94923,Private room,40,5,0,,,2,0 +17892920,"Spacious & Bright, Full Apt in Astoria/LIC",14991730,Trevor,Queens,Long Island City,40.7542,-73.92849,Entire home/apt,145,5,23,2019-06-24,2.15,1,173 +17893008,Exclusive 2 bedrooms in lovely apartment in Nolita,39832770,Laura,Manhattan,Chinatown,40.71816,-73.99538,Private room,90,6,0,,,1,0 +17893069,Spacious 1-Bedroom Apartment in Greenwich Village,10838291,Brian,Manhattan,Greenwich Village,40.73307,-73.99277,Entire home/apt,250,7,1,2017-05-13,0.04,1,0 +17893797,Private Room in Spacious Central Harlem Apartment,26821811,Lynda,Manhattan,Harlem,40.8155,-73.93986,Private room,38,3,1,2018-08-02,0.09,1,0 +17897913,"Warm home in Woodside, Queens.",92561578,Giani,Queens,Maspeth,40.73443,-73.89635,Private room,65,1,7,2019-06-30,0.99,1,309 +17899730,Cozy Bronx Apt,94382194,Sean,Bronx,Tremont,40.84546,-73.89013,Entire home/apt,150,1,43,2019-06-09,1.57,1,179 +17899990,Spacious quiet garden 1 Br + Sunny Back Yard,92963740,Remy,Brooklyn,Sunset Park,40.66194,-73.99138,Entire home/apt,139,3,32,2019-07-01,1.25,2,20 +17900193,"Spacious, newly renovated LES 1-bedroom apt!",122650568,Anabella,Manhattan,Lower East Side,40.72147,-73.98774,Entire home/apt,127,2,3,2017-04-21,0.11,1,0 +17900243,Sunny and spacious apartment in Greenpoint,1481058,Aris,Brooklyn,Greenpoint,40.73223,-73.95786,Entire home/apt,290,10,2,2018-01-01,0.07,2,0 +17900681,Sunny & Spacious Room Facing Central Park,8748472,Christina,Manhattan,Upper West Side,40.79806,-73.96085,Private room,100,2,5,2017-05-01,0.18,1,0 +17902970,Great location in the heart of Manhattan,122679380,Sam,Manhattan,Hell's Kitchen,40.76313,-73.98978,Private room,100,1,216,2019-07-01,8.07,1,43 +17904788,Sunny apartment close to manhattan,12194903,Martha,Brooklyn,Williamsburg,40.70896,-73.95119,Entire home/apt,150,7,0,,,1,0 +17905460,Cozy Centrally Located Private Room in Bushwhick,8288491,Sofia,Brooklyn,Bushwick,40.69107,-73.91134,Private room,65,2,4,2018-05-21,0.15,2,0 +17905479,Gorgeous One Bedroom in the Heart of Chelsea,4253817,Cari,Manhattan,Chelsea,40.74123,-73.99522,Entire home/apt,200,4,45,2019-06-13,1.66,1,49 +17905970,"Entire Lower Level,Close to All & 15 mins to NYC",122714664,Karl,Queens,Middle Village,40.71031,-73.87613,Entire home/apt,100,4,28,2019-06-04,1.06,1,89 +17906420,Relaxing Brownstone One Bedroom,6899124,Paul,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95228,Entire home/apt,148,1,37,2019-06-23,1.44,1,0 +17906601,Group Friendly * Prospect Park * Close to Trains,122722874,Peter,Brooklyn,Prospect Heights,40.67395,-73.96333,Entire home/apt,160,4,115,2019-06-17,4.18,1,80 +17906990,"Sunny, Beautiful, Upper East Side TRUE One Bedroom",23377863,Kristen,Manhattan,Upper East Side,40.78056,-73.95182,Entire home/apt,147,4,9,2019-07-05,0.47,1,7 +17907935,New York's Cozy House,77809736,Seohee,Manhattan,Morningside Heights,40.80972,-73.95774,Entire home/apt,95,2,0,,,2,0 +17908179,Boho 1 bed apt in BK brownstone with back yard,5502239,Maxyne,Brooklyn,Clinton Hill,40.69345,-73.96632,Entire home/apt,130,5,3,2018-05-08,0.12,1,0 +17908331,"Big, Bright, Tribeca Studio w/ Doorman & Elevator",4601948,Lily,Manhattan,Tribeca,40.7181,-74.00984,Entire home/apt,157,2,13,2018-09-23,0.49,1,18 +17915565,1BR in the heart of UWS,80508435,Irving,Manhattan,Upper West Side,40.79416,-73.97044,Private room,95,1,26,2018-07-22,1.04,2,0 +17919742,Heart of Bushwick Apartment For Coffee Lovers!,8894559,Duncan,Brooklyn,Bushwick,40.70127,-73.91764,Entire home/apt,120,2,8,2018-11-25,0.31,1,1 +17922181,Cute UWS studio off CPW,5162192,Amy,Manhattan,Upper West Side,40.79857,-73.96162,Entire home/apt,110,30,9,2019-05-19,0.38,12,161 +17922242,Spacious and quiet East Village Private Studio,14135981,Elsa,Manhattan,East Village,40.72439,-73.97607,Entire home/apt,130,5,2,2019-06-11,1.58,1,363 +17923165,☆THE village experience!!,47056437,Ann,Manhattan,West Village,40.72999,-74.0034,Private room,99,1,0,,,1,0 +17923261,Quality cozy studio in a quiet neighborhood,122884945,Hind,Queens,Middle Village,40.71774,-73.89181,Entire home/apt,90,6,26,2019-07-04,2.70,1,237 +17925337,New bedroom in a 2 bedroom apartment. Super nice.,122498535,Gf,Brooklyn,East Flatbush,40.65694,-73.92728,Private room,138,30,13,2018-04-07,0.48,3,37 +17926910,East Harlem Studio Apartment,122924398,Lynn,Manhattan,East Harlem,40.79424,-73.93495,Entire home/apt,125,1,123,2019-06-22,4.54,1,84 +17929219,HEART of West Village! Big + Beautiful TRUE 1 BDRM,28588488,Cannon,Manhattan,West Village,40.73612,-73.99978,Entire home/apt,395,1,39,2019-06-29,1.43,1,177 +17934924,Modern spacious apt in Park Slope,2587680,Susan,Brooklyn,Park Slope,40.67156,-73.98366,Entire home/apt,100,4,7,2019-06-16,0.46,1,37 +17937309,Sunny Apartment in Williamsburg,24258807,Moran& Ori,Brooklyn,Greenpoint,40.72052,-73.94098,Entire home/apt,150,8,12,2019-01-04,0.44,1,0 +17937356,Good deal in bohemian East Village,855079,Nicholas,Manhattan,East Village,40.72734,-73.98319,Private room,150,1,16,2019-04-01,1.75,3,0 +17938337,10 Minutes away from JFK Airport,96841679,Kathleen,Brooklyn,Canarsie,40.63716,-73.88654,Entire home/apt,85,2,96,2019-06-22,3.70,1,340 +17938814,"Beautiful spacious one bedroom, upper east side",55199493,Julia,Manhattan,Upper East Side,40.7729,-73.95738,Entire home/apt,115,2,100,2019-06-16,3.67,1,91 +17938886,"Large, private room in Bushwick close to subways",92277042,Tom,Brooklyn,Bushwick,40.69449,-73.91874,Private room,50,2,6,2018-06-12,0.22,1,56 +17940029,"$0 FEES/Parking/Bkft - ""Little Piece of Heaven""",61875246,Carolyn,Queens,Whitestone,40.7824,-73.82144,Private room,45,1,84,2019-07-06,5.35,2,157 +17940041,Spacious and Bright Two Bedroom,44951851,Yaakov,Brooklyn,Crown Heights,40.66491,-73.9544,Entire home/apt,160,3,11,2019-04-24,0.42,2,0 +17940198,"Cozy, queen sized bedroom in Bed-Stuy",24383863,Sophia,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94406,Private room,40,2,24,2019-06-25,0.98,1,1 +17941316,Nice private room in New York,121841485,Jessica,Queens,Jackson Heights,40.75236,-73.89172,Private room,70,3,23,2018-11-05,0.85,1,177 +17941851,Tropical Getaway in Brooklyn at The Funky Loft,1432946,Marcella & Saidat,Brooklyn,Bushwick,40.6974,-73.92487,Private room,80,3,172,2019-06-30,6.37,3,169 +17941948,Private Room Available in 3BR Apt -Stuyvesant Town,122922752,Tom,Manhattan,Stuyvesant Town,40.73117,-73.97616,Private room,55,31,0,,,1,0 +17943407,"Classic East Village studio, best NYC neighborhood",3463177,Emch,Manhattan,East Village,40.73114,-73.98439,Entire home/apt,110,7,6,2019-06-30,0.23,1,52 +17943774,Sundrenched Cozy Studio With a Huge Private Patio,84979306,Lhea,Queens,Long Island City,40.74443,-73.94298,Entire home/apt,225,1,6,2018-09-21,0.22,1,358 +17943817,"Private home in the heart of Ridgewood, Queens.",123102489,Mariann,Queens,Glendale,40.69775,-73.89474,Private room,69,2,2,2017-05-08,0.07,1,0 +17944140,Cheap Cosy room w/desk quiet area 10mn from JFK,107455767,Guelma,Queens,Rosedale,40.65377,-73.73087,Private room,35,15,38,2018-06-24,1.40,5,311 +17944219,"Cozy bedroom, one block from Subway",10744966,Moza,Manhattan,Upper East Side,40.77243,-73.95744,Private room,300,2,10,2017-09-02,0.40,1,0 +17944802,Luxury High Rise with Huge Private Terrace,1883931,Taher,Manhattan,Murray Hill,40.74391,-73.97151,Entire home/apt,350,3,15,2019-06-19,0.55,1,0 +17946985,Rock star house!,110872398,Dee,Brooklyn,Bedford-Stuyvesant,40.69049,-73.95877,Private room,45,2,16,2018-03-31,0.58,1,0 +17951580,Townhouse on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.69054,-73.9328,Entire home/apt,150,2,69,2019-07-05,2.86,4,278 +17952277,"Newly renovated, fully furnished room in Brooklyn",62685070,Katie,Brooklyn,Bushwick,40.69974,-73.91935,Private room,10,5,0,,,1,0 +17952472,和缘特色浪漫房,105074140,Emmy,Queens,Flushing,40.75656,-73.80385,Private room,108,1,3,2019-02-20,0.44,4,0 +17955761,HOME AWAY FROM HOME 4 Guest private,4204783,Kevin,Staten Island,West Brighton,40.63168,-74.12316,Private room,89,2,12,2019-06-26,0.43,3,279 +17956381,Quaint little relaxing room in Astoria,4112547,Felecia,Queens,Astoria,40.7711,-73.92579,Private room,70,7,11,2018-12-01,0.42,1,65 +17956441,"West 86th St, Charming UWS One Bd Serviced Apt-B",22541573,Ken,Manhattan,Upper West Side,40.78593,-73.97485,Entire home/apt,210,30,0,,,87,328 +17957197,UWS studio,2372486,David,Manhattan,Upper West Side,40.7902,-73.97568,Entire home/apt,150,7,0,,,1,0 +17957521,Cozy room in East Williamsburg,123233613,Joana,Brooklyn,Williamsburg,40.70824,-73.94379,Private room,55,7,34,2019-06-03,1.26,1,259 +17957663,"Bedroom in huge apartment, Empire State View",1036161,Blake,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95005,Private room,200,1,13,2019-06-23,0.50,2,23 +17958414,Beautiful & Comfortable Apartment in Brooklyn!,123048179,Joseph,Brooklyn,Bensonhurst,40.61901,-74.00045,Entire home/apt,120,3,45,2019-06-16,1.65,1,295 +17959888,South Bronx-Piano District artist Loft/,123271654,Beatrice,Bronx,Port Morris,40.81034,-73.93166,Shared room,165,2,20,2018-10-14,0.85,1,15 +17960375,"Lower East Side, Bohemian Home, hipster location",36232508,Brodii,Manhattan,Lower East Side,40.72036,-73.98458,Private room,155,3,27,2018-10-29,1.11,1,0 +17961885,Downtown: Two Bridges -Private room&bathroom!,123307264,Ei,Manhattan,Chinatown,40.71456,-73.99077,Private room,95,14,3,2018-10-30,0.11,1,28 +17962656,Awesome Cozy Studio West Village,23981711,Saba,Manhattan,West Village,40.73589,-74.00304,Entire home/apt,139,3,29,2019-05-11,1.05,1,0 +17963856,Upstate Manhattan,24010376,Elaina,Manhattan,Inwood,40.86517,-73.92318,Private room,65,1,1,2017-12-28,0.05,1,0 +17968140,Large Bedroom in 2 Bed Apartment Brighton Beach,119523037,Anna,Brooklyn,Brighton Beach,40.58092,-73.96139,Private room,57,1,1,2019-01-16,0.17,4,4 +17971100,#4 Triple Private room 20 minutes from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81234,-73.91688,Private room,42,5,54,2019-05-19,2.05,4,314 +17972013,#1 Private comfy Room 20 minutes from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81387,-73.91553,Private room,42,5,17,2018-01-18,0.65,4,23 +17972466,Perfect for 2 - Heart of the Upper West Side!,33200173,Paige,Manhattan,Upper West Side,40.78549,-73.97673,Private room,90,3,4,2017-09-26,0.16,2,0 +17973686,"Your Very Own Private, Clean Apt. w/ washer &dryer",11478291,Ethan,Queens,Rego Park,40.72962,-73.8591,Entire home/apt,69,3,90,2019-07-03,3.25,1,111 +17974244,"3 BR CLASSIC ON RIVER. Doorman. UWS, dogs ok",231704,Judith,Manhattan,Upper West Side,40.78937,-73.9789,Entire home/apt,376,30,1,2018-05-12,0.07,3,357 +17975664,"Large, spacious, and comfortable house",123458466,Shiva,Bronx,Edenwald,40.88534,-73.83434,Private room,75,1,15,2019-05-28,0.55,1,348 +17975818,Beautiful large private room in the heart of Soho,11259589,Eloise,Manhattan,Chinatown,40.71889,-73.99604,Private room,99,3,3,2017-06-28,0.11,1,0 +17977439,Heart of Queens 1 ❤️/ Jackson Heights/Elmhurst,123483050,Andrea,Queens,Elmhurst,40.74756,-73.88193,Private room,85,1,67,2019-06-19,2.47,3,173 +17978997,Luxury Room in MANHATTAN with TV,122026078,Shah Memo,Manhattan,Harlem,40.82021,-73.95441,Private room,69,2,7,2017-08-07,0.26,3,71 +17979046,Room Rental in Washington Heights,63772058,Nikita,Manhattan,Washington Heights,40.84345,-73.9422,Private room,100,2,0,,,1,0 +17979132,Great room near Columbia university 71w 107th 哥大附近,70619358,Ni,Manhattan,Upper West Side,40.80104,-73.96041,Private room,45,1,0,,,1,0 +17979764,Jen Apt,84497333,Jennifer,Manhattan,SoHo,40.72237,-73.99817,Private room,10,5,2,2017-04-15,0.07,1,0 +17980140,Penthouse in the Clouds,12390595,Marian,Brooklyn,Bushwick,40.69365,-73.9109,Private room,60,7,1,2017-06-16,0.04,1,0 +17980714,Cozy East Village Room in huge apartment,23354644,Nancy,Manhattan,East Village,40.73242,-73.9868,Private room,48,2,33,2019-06-26,1.21,3,42 +17981267,⭐️Walk + Transit Score 97⭐️8min to Yankee Std⭐️,123518076,Seana,Bronx,Concourse,40.82097,-73.92739,Entire home/apt,145,2,76,2019-07-01,3.04,1,139 +17981447,Nicest Room in Manhattan - Chelsea Beauty,95286194,Xavier,Manhattan,Chelsea,40.7503,-74.00473,Private room,57,1,53,2019-06-23,1.92,1,33 +17986678,NYC Penthouse Open Loft Bedroom & Patio w/ Skyline,123567556,Sean,Brooklyn,Crown Heights,40.67686,-73.93032,Private room,85,1,106,2019-06-22,5.58,2,102 +17988221,Private Room in Cozy East Village Apt,4296251,Marina,Manhattan,East Village,40.72286,-73.98025,Private room,100,2,0,,,2,0 +17988416,《1》法拉盛市中心明亮干净的私人房间,123580100,Evelyn,Queens,Flushing,40.76503,-73.83039,Private room,45,1,82,2019-06-17,3.01,2,52 +17989537,Cozy Private Room in East Village,4296251,Marina,Manhattan,East Village,40.72308,-73.97988,Private room,100,2,0,,,2,0 +17989780,Williamsburg Manhattan Skyline Apartment,12388182,Ahmad,Brooklyn,Williamsburg,40.71891,-73.9657,Entire home/apt,250,2,2,2017-04-24,0.07,1,0 +17990894,Comfy Room in Queens Close to Train Station!,98697139,Oscar,Queens,Jackson Heights,40.75214,-73.8584,Private room,40,4,22,2019-05-11,0.86,2,95 +17991699,"CLASSIC UWS 3BR FAM RIVER, doorman",231704,Judith,Manhattan,Upper West Side,40.78913,-73.98043,Entire home/apt,317,31,0,,,3,82 +17992512,Charming Suite in Historic Home,74282739,David,Staten Island,Stapleton,40.62919,-74.08107,Entire home/apt,70,1,177,2019-06-24,7.12,1,230 +17993317,Beginning and ending your New York Vacation!,116408324,Ezel,Queens,Bayside,40.76169,-73.76813,Private room,70,2,17,2019-06-09,0.63,1,351 +17993419,Clean and Cozy room in Central Manhattan,30656279,Jill,Manhattan,Hell's Kitchen,40.76634,-73.98721,Private room,61,30,3,2018-05-27,0.11,4,160 +17996373,Spacious Brooklyn Duplex w/ Yard. Minutes from NYC,123407715,Guillermo,Brooklyn,Sunset Park,40.66338,-73.99879,Entire home/apt,300,3,86,2019-06-23,3.41,1,269 +17997486,Charming Clinton Hill One-Bedroom Apartment,123690850,Ani,Brooklyn,Clinton Hill,40.6873,-73.966,Entire home/apt,92,10,4,2019-06-13,0.17,1,0 +18003918,Upper West Side Oasis,10549792,Connor,Manhattan,Upper West Side,40.7807,-73.97869,Entire home/apt,200,4,2,2018-01-02,0.08,1,0 +18004335,Peaceful apt by the central park,5490071,Alex,Manhattan,East Harlem,40.78822,-73.94871,Entire home/apt,150,3,102,2019-07-04,3.78,3,222 +18004987,Warm cozy green house,109854433,Careen,Brooklyn,Bushwick,40.68815,-73.91032,Entire home/apt,120,2,76,2019-06-24,2.78,2,270 +18005542,Single Room in Family Apt,6122006,Allison,Manhattan,Morningside Heights,40.81131,-73.9582,Private room,45,1,76,2019-06-09,2.83,2,0 +18005789,Giant Studio Loft Apt in NYC,766182,Mike,Manhattan,West Village,40.73953,-74.00841,Entire home/apt,170,30,1,2019-04-17,0.36,1,365 +18005835,Cozy 1 bedroom in Heart of East Village,32806463,Eugene,Manhattan,East Village,40.72886,-73.9883,Private room,150,1,0,,,1,0 +18006003,Room in Bronx Little Italy,91261577,Matthew,Bronx,Belmont,40.85311,-73.88763,Private room,29,4,4,2017-08-27,0.15,1,0 +18006977,Sunny 1 Bedroom Apartment the Heart of SoHo,886646,Tarik,Manhattan,Nolita,40.72261,-73.99348,Entire home/apt,250,2,5,2018-12-30,0.20,1,0 +18007393,Large 2 bedrooms in Little Italy/Chinatown,106232698,Nicolas,Manhattan,Little Italy,40.71794,-73.99955,Entire home/apt,195,4,30,2019-05-22,1.10,1,0 +18007671,Cute 1 bedroom basement apartment,73228035,Maimi,Brooklyn,East Flatbush,40.662,-73.93775,Private room,15,1,2,2017-04-17,0.07,2,0 +18008937,Adorable Apt - Heart of West Village!,82933489,Karly,Manhattan,West Village,40.73272,-74.00356,Entire home/apt,230,2,9,2018-10-07,0.33,1,0 +18010406,Specious and cozy NYC apartment,123818434,Natalia,Manhattan,Harlem,40.81053,-73.94332,Entire home/apt,130,2,23,2019-06-02,0.85,1,14 +18010510,"温馨舒适双人房,双床,明亮大窗,电梯公寓(两个房间用一个卫生间)",123646786,Zheng,Queens,Flushing,40.75607,-73.83202,Private room,78,2,41,2019-07-01,1.53,2,82 +18012028,Beautiful Blue Paradise! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68823,-73.90825,Private room,53,1,49,2019-06-17,1.86,3,105 +18013489,Cozy room with stunning view,23390186,June,Manhattan,Financial District,40.70743,-74.005,Private room,100,1,11,2019-06-08,0.41,1,0 +18015606,Hudson River View Near Lincoln Center,96669597,Sara,Manhattan,Upper West Side,40.77858,-73.98707,Entire home/apt,150,28,8,2019-02-22,0.31,1,238 +18016642,Spacious apartment in the heart of Brooklyn,103995602,Flo,Brooklyn,Brownsville,40.65935,-73.90279,Entire home/apt,89,2,102,2019-06-20,3.75,1,70 +18018424,Spacious Financial District Loft - Whole Apartment,123894644,Spencer,Manhattan,Financial District,40.70648,-74.01234,Entire home/apt,105,12,4,2017-11-19,0.16,1,0 +18018752,Brand New Quaint Studio,63749946,Rachel,Brooklyn,Crown Heights,40.67523,-73.92326,Entire home/apt,80,7,77,2019-06-05,2.92,3,74 +18020906,"Clean, private room with private bathroom.",123920566,Hiroshi & Yukari,Queens,Flushing,40.75299,-73.8307,Private room,57,1,50,2019-06-30,1.85,1,38 +18022545,MONTHLY PRICE AND GREAT LOCATION - ASTORIA,40549648,Luiza,Queens,Astoria,40.75729,-73.91591,Private room,75,22,37,2019-06-01,1.35,2,69 +18022636,Beautiful 1 Bedroom apartment in Prime GREENPOINT,208565,Maria,Brooklyn,Greenpoint,40.73354,-73.95728,Entire home/apt,151,1,94,2019-06-09,3.49,2,36 +18023284,Spacious 2 BR Flat,36457711,Hannah,Brooklyn,Clinton Hill,40.69103,-73.96106,Entire home/apt,197,4,7,2017-12-29,0.26,2,0 +18023825,Cozy 1 bedroom apartment in Queens,24594555,Eva,Queens,Maspeth,40.72736,-73.89659,Entire home/apt,100,2,87,2019-07-06,3.19,1,245 +18023847,Lovely Quiet Room w private kitchen in Brownstone,123953691,Petra,Brooklyn,Crown Heights,40.67694,-73.95462,Private room,88,2,55,2019-06-25,2.07,1,282 +18024380,Cozy Private Bedroom in a Bed-Stuy Loft,22284124,Ella,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95891,Private room,60,4,2,2017-08-26,0.08,1,0 +18024561,Amazing Columbus Circle 3 Bedroom,47536613,Emily,Manhattan,Upper West Side,40.76876,-73.98359,Entire home/apt,375,3,76,2019-06-23,2.89,1,301 +18024760,Private Room in a beautiful apartment!,96718265,Javier & Alejandra,Brooklyn,Bedford-Stuyvesant,40.69288,-73.93285,Private room,45,1,0,,,1,7 +18024772,Very quiet apt. on tree-lined West Chelsea street,4857042,Matthew,Manhattan,Chelsea,40.74423,-74.00111,Entire home/apt,95,1,105,2019-07-01,3.87,1,98 +18024956,Lovely Bedroom Suite with Private Entrance,15185649,Beebe,Brooklyn,Bedford-Stuyvesant,40.68295,-73.92536,Entire home/apt,82,2,134,2019-06-21,4.93,2,238 +18025200,Private Room in quite Elmhurst,123968750,Kathy,Queens,Elmhurst,40.73481,-73.88051,Private room,50,3,0,,,1,0 +18025228,"Huge room 25 min to manhattan. L,M,J,Z train.",101736132,Alex,Brooklyn,Bushwick,40.69045,-73.91507,Private room,40,2,12,2017-10-07,0.44,2,281 +18025342,"1BR near Mt Sinai, Columbia, Cent Pk. Must See!",6752799,Zach,Manhattan,East Harlem,40.7972,-73.94749,Private room,45,28,1,2017-07-02,0.04,2,147 +18033251,Simple Brooklyn Apartment,4435816,Steven-Jon,Brooklyn,Flatbush,40.63684,-73.95693,Private room,60,2,17,2018-10-21,0.72,1,9 +18034890,"Quiet, tranquil room in the middle of everything!",3660702,Greg,Manhattan,Chelsea,40.74701,-73.9914,Private room,105,1,132,2019-06-22,4.81,4,103 +18037392,Beautiful sunny bedroom in historic Park Slope,124082275,Raquel,Brooklyn,Park Slope,40.67158,-73.97472,Private room,159,1,73,2019-06-16,2.69,1,166 +18039329,Sunny LES 1 bedroom w Roof Deck,124106675,Mary,Manhattan,Lower East Side,40.72054,-73.98471,Entire home/apt,208,3,4,2017-05-07,0.15,1,0 +18040417,Downtown HighRise Luxury Building!,42287744,Camilo,Manhattan,Financial District,40.70732,-74.01451,Private room,105,2,18,2018-08-16,0.65,1,95 +18040970,HOTEL ROOM LIKE WITH AFFORDABLE RATE!!! “C”,59156312,Viviana,Queens,Woodhaven,40.68655,-73.86491,Private room,69,3,48,2019-06-08,1.80,9,332 +18041519,"Beautiful + Large Astoria Space, Amazing Location",96560825,Brittany,Queens,Astoria,40.76266,-73.91992,Entire home/apt,250,2,0,,,1,0 +18041862,Bushwick's Private Modern Space,124142417,Marlene,Brooklyn,Bushwick,40.68824,-73.91567,Entire home/apt,100,2,111,2019-06-18,4.12,2,10 +18042238,Airy one bedroom in Crown Heights,100345999,Leigh,Brooklyn,Crown Heights,40.67544,-73.95655,Entire home/apt,80,5,1,2017-04-28,0.04,1,0 +18042742,Sun Filled room in New Building,35292326,Brendan,Brooklyn,Bushwick,40.69892,-73.9302,Private room,72,1,4,2019-05-28,1.82,1,180 +18043457,Spacious Private Room in Nolita,15651644,Alan,Manhattan,Chinatown,40.71866,-73.99633,Private room,120,3,1,2017-05-21,0.04,1,0 +18048473,#3 Private Quadruple Room 20mnts from Manhattan,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81217,-73.91777,Private room,41,5,21,2019-06-20,0.78,4,334 +18049856,Luxury Studio Williamsburg,51926018,Minchul,Brooklyn,Williamsburg,40.71815,-73.95519,Entire home/apt,250,14,0,,,1,83 +18050070,Cozy and Quiet Crown Heights - Washer/Dryer,124218492,Benjamin,Brooklyn,Crown Heights,40.66914,-73.95333,Private room,50,6,20,2019-06-07,0.74,1,78 +18050153,Chelsea Haven--Summer Sublet,10621137,Anne Marie,Manhattan,Chelsea,40.74686,-74.0043,Entire home/apt,134,3,1,2017-08-12,0.04,1,0 +18051607,2 Bedroom & garden-South Park Slope,52577563,Rosa,Brooklyn,Sunset Park,40.66443,-73.99348,Entire home/apt,150,5,2,2017-09-16,0.08,3,179 +18051877,Victorian Film location,2675644,Alissa,Staten Island,Randall Manor,40.63952,-74.0973,Entire home/apt,5000,1,0,,,1,344 +18054268,Gorgeous 4 bedroom Duplex 15 min from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69424,-73.9385,Entire home/apt,300,2,95,2019-06-17,3.51,2,229 +18055685,Oasis in Harlem,3167806,Heather,Manhattan,Harlem,40.81321,-73.94556,Entire home/apt,150,4,16,2019-06-25,0.65,1,12 +18057747,Comfortable Room near Columbia University,28642031,Laura,Manhattan,Harlem,40.80674,-73.95616,Private room,60,5,1,2017-08-12,0.04,1,0 +18059112,Private room in beatiful sunny apt in Crown Height,138243,Alexander,Brooklyn,Crown Heights,40.66994,-73.9315,Private room,45,2,12,2019-06-30,0.46,1,32 +18059231,Cozy bedroom near Lincoln Center / UWS,5235811,David,Manhattan,Upper West Side,40.77317,-73.98895,Private room,67,1,0,,,1,0 +18059239,Airy studio in south Park Slope,27159049,Ivan,Brooklyn,Gowanus,40.66926,-73.991,Entire home/apt,142,1,8,2017-06-04,0.29,1,0 +18059656,Charming Cozy Room in Harlem,9030453,Irie,Manhattan,Harlem,40.81064,-73.94405,Private room,67,2,28,2019-07-03,1.04,2,132 +18061481,Sunny room with private terrace in Sunnyside,20691482,M&A New York,Queens,Sunnyside,40.74238,-73.91783,Private room,69,3,21,2019-05-20,0.78,1,177 +18062797,Huge Room with a Private Bathroom,85316652,Umut Can,Queens,Sunnyside,40.74385,-73.91403,Private room,95,2,36,2018-09-11,1.37,1,0 +18063815,Unique Multi-level 1 bedroom Apt,50366453,Terence,Manhattan,Upper East Side,40.76246,-73.95985,Entire home/apt,195,1,3,2017-06-11,0.11,1,0 +18066269,"@Ferry,2Bedroom/3beds.Private,Renovated/Stylish...",117492425,Dine,Staten Island,St. George,40.64425,-74.08056,Entire home/apt,72,4,97,2019-06-26,3.71,6,152 +18066733,5br Duplex. @ Ferry! Water&City Views!,117492425,Dine,Staten Island,St. George,40.64605,-74.07897,Entire home/apt,289,4,2,2018-07-25,0.16,6,230 +18068692,"Beautiful, Sunny, Artsy apartment in Brooklyn",4191725,Efrain,Brooklyn,Bedford-Stuyvesant,40.69502,-73.9478,Entire home/apt,80,21,1,2017-12-05,0.05,1,66 +18068913,"Sunny & cozy Studio at the park, 25m to Manhattan",23944472,Stelios,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.96194,Entire home/apt,69,3,16,2019-02-18,0.59,1,6 +18069745,Private bathroom bedroom near JFK 30min to NYC,91184602,Sonia,Queens,Richmond Hill,40.68821,-73.83411,Private room,95,3,26,2019-01-01,1.38,1,160 +18070109,1 Min from Bedford Ave L in RR Apt,7860852,Matthew,Brooklyn,Williamsburg,40.71882,-73.95562,Private room,110,3,0,,,2,0 +18070342,Beautiful Murray Hill STUDIO - perfect location!,17707106,Deep,Manhattan,Kips Bay,40.74289,-73.98134,Entire home/apt,175,2,22,2017-09-22,0.81,1,0 +18071246,A3Small Cozy Room in Long Island City,79105834,Leo,Queens,Long Island City,40.75541,-73.9335,Private room,35,1,90,2019-06-22,3.31,9,273 +18071374,Brooklyn (NYC) Modern Comfort.,48712266,Eka,Brooklyn,Greenpoint,40.72528,-73.94428,Entire home/apt,175,5,72,2019-06-20,2.73,2,198 +18071399,West Chelsea Studios - Penthouse 12,113534805,Jackie,Manhattan,Chelsea,40.74932,-74.00333,Private room,2800,1,0,,,1,89 +18071406,Room in Hells Kitchen for short term stay!,69572951,Ilija,Manhattan,Hell's Kitchen,40.76316,-73.9904,Private room,100,4,0,,,1,0 +18073738,Huge Room in Bushwick with private bathroom,512101,Martha Cristina,Brooklyn,Bushwick,40.69801,-73.93357,Private room,88,3,11,2019-06-02,0.81,1,0 +18074899,Stunning 2 bedroom Apt - Breathtaking views!!,30283594,Kara,Manhattan,Hell's Kitchen,40.76191,-73.99766,Entire home/apt,499,30,0,,,121,185 +18075511,Inspiring & Motivational ⭐️,43352661,Charles,Manhattan,Washington Heights,40.84497,-73.93934,Private room,80,1,129,2019-06-21,4.70,3,365 +18076273,Lovely & bright Brooklyn room close to train,1753130,Britt,Brooklyn,Greenpoint,40.7331,-73.95837,Private room,49,5,52,2019-07-07,1.94,1,66 +18076385,"2 Bedroom Apartament, UES, doormen in Manhattan",65974774,Geo,Manhattan,Upper East Side,40.77581,-73.956,Entire home/apt,510,7,0,,,3,207 +18076623,Cosy Colorful Great Bedstuy location & apt,24467449,Laura,Brooklyn,Bedford-Stuyvesant,40.68761,-73.94953,Private room,45,1,20,2019-04-15,0.74,2,10 +18076816,Beautiful Island life in NYC,20600569,Tiffany,Manhattan,Roosevelt Island,40.76213,-73.94971,Private room,100,2,97,2019-06-21,3.57,2,142 +18076911,Access to NYC,44924379,Roland,Queens,Jamaica,40.6987,-73.78455,Private room,50,1,38,2019-05-30,1.41,3,359 +18077001,Fully equipped entire West Village apartment &wifi,35163646,Lyndsay,Manhattan,Greenwich Village,40.72964,-73.99946,Entire home/apt,199,3,1,2018-01-02,0.05,1,0 +18077042,CLEAN! Executive Studio Suite. Entire apt w/pvt BR,121093001,Geoffrey,Queens,Ozone Park,40.67574,-73.85601,Entire home/apt,81,3,96,2019-06-22,3.59,1,233 +18077050,"Comfortable, spacious Upper West Side Studio",52711374,Cindy,Manhattan,Upper West Side,40.7822,-73.98207,Entire home/apt,90,2,12,2017-11-26,0.44,1,0 +18077560,Beautiful Large Private Room-Great location,4047395,Blanca,Brooklyn,Clinton Hill,40.68535,-73.96492,Private room,80,2,37,2019-06-03,1.40,2,159 +18077717,Cozy 1-br UWS in front of Central Park,62680545,Juan Felipe,Manhattan,Upper West Side,40.79795,-73.96199,Entire home/apt,175,5,2,2017-08-04,0.08,1,4 +18077742,Cozy Washington Heights Studio,4004425,Jamie,Manhattan,Washington Heights,40.84354,-73.93874,Entire home/apt,50,6,0,,,1,0 +18077746,Comfy and Cozy Room in Brooklyn!,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92399,Private room,60,30,9,2019-05-23,0.36,4,189 +18078720,Cozy one bedroom Street view,124486054,Carlton,Bronx,Edenwald,40.88364,-73.83561,Private room,70,3,0,,,1,365 +18079072,"Huge, Sunny Loft in Williamsburg, Near Waterfront",124491152,Philip,Brooklyn,Williamsburg,40.72171,-73.95872,Entire home/apt,175,2,134,2019-06-22,5.12,1,208 +18080436,★cozy apartment ★,55981584,Saori,Brooklyn,Bay Ridge,40.63592,-74.0219,Private room,30,30,6,2019-06-15,0.22,2,0 +18086316,Manhattan Club,124550001,Frank,Manhattan,Midtown,40.76576,-73.98016,Private room,350,1,1,2017-12-19,0.05,1,0 +18086664,A place to feel like home; cozy room,124554019,Eric,Brooklyn,Crown Heights,40.67358,-73.93502,Private room,57,1,32,2019-06-27,1.38,2,95 +18087564,Quiet spacious sunny studio in Greenpoint Brooklyn,5735174,Yoav,Brooklyn,Greenpoint,40.73542,-73.9562,Entire home/apt,120,20,17,2019-06-30,0.65,1,59 +18089676,Cozy Escape in Brooklyn,124580765,Ruth,Brooklyn,Prospect-Lefferts Gardens,40.65932,-73.94179,Entire home/apt,129,2,86,2019-06-30,3.17,1,247 +18090200,Studio-Size Bedroom with Separate Entrance,10472095,Jaime,Brooklyn,Crown Heights,40.66935,-73.94708,Private room,60,3,0,,,1,16 +18090441,Modern High-End Studio w/amenities,60786164,Kassandra,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96053,Entire home/apt,76,1,2,2017-04-24,0.07,1,0 +18090927,An Amazing 1-Bedroom Apt. with Spectacular Views,686339,Ben,Manhattan,Kips Bay,40.73819,-73.97389,Entire home/apt,150,62,0,,,1,88 +18091187,The Heights,124593127,Miguel,Manhattan,Washington Heights,40.85564,-73.93066,Private room,40,1,93,2019-06-21,3.50,2,297 +18091600,Amazingly Charming 2 BR in Historic Harlem,709334,Julie,Manhattan,Harlem,40.80353,-73.94707,Entire home/apt,250,2,14,2019-04-17,0.55,2,296 +18091991,Cozy Room,124593127,Miguel,Manhattan,Washington Heights,40.85516,-73.92863,Private room,55,1,96,2019-06-11,3.61,2,128 +18092438,LOCATION! Coffee and Central Park!,17428203,Christine,Manhattan,Upper East Side,40.77241,-73.948,Entire home/apt,124,31,0,,,2,0 +18094196,Upper East Side Full 1-Bedroom Apartment,16307239,Julia,Manhattan,Upper East Side,40.7709,-73.95508,Entire home/apt,130,7,5,2019-07-06,0.21,1,14 +18094212,Beautiful 3000-Square-Ft Brownstone in Cobble Hill,121274,Joanna,Brooklyn,Cobble Hill,40.68673,-73.99653,Entire home/apt,700,4,4,2019-01-23,0.21,1,15 +18094311,Manhattan Bedroom | Skyline Views,3191545,Kyle,Manhattan,Murray Hill,40.74563,-73.9759,Entire home/apt,219,30,1,2018-05-31,0.07,23,362 +18094418,4000 SqFt Luxury Penthouse - Downtown NYC,120250860,Diana,Manhattan,SoHo,40.72207,-74.00232,Entire home/apt,2250,2,20,2019-06-15,0.82,2,341 +18095883,Charming 2 Bedroom home close to Airport and City,70774951,Farhan,Queens,East Elmhurst,40.76745,-73.87915,Entire home/apt,125,1,138,2019-06-23,6.92,3,111 +18102867,1 bedroom apt in the heart of williamsburg,3632170,Thulinh,Brooklyn,Williamsburg,40.7124,-73.96263,Entire home/apt,200,5,0,,,1,0 +18103710,"East 63rd street, Studio Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.7631,-73.96281,Entire home/apt,179,30,0,,,87,365 +18104150,Large Newly Renovated Guest Suite,124702572,Ted & Tony,Brooklyn,Bedford-Stuyvesant,40.6817,-73.92068,Entire home/apt,200,2,12,2019-06-14,0.46,1,9 +18104553,Sunny Williamsburg Apartment - Prime Location,5479861,Brandon,Brooklyn,Williamsburg,40.71747,-73.95459,Entire home/apt,160,1,18,2019-06-12,0.70,1,2 +18105293,Hanover Square Lux Downtown 1 Bd(C) Serviced Apt,22541573,Ken,Manhattan,Financial District,40.70481,-74.00805,Entire home/apt,270,30,0,,,87,365 +18108134,Affordable Spacious Refurbished Room in Bushwick!,7370191,Niji,Brooklyn,Bushwick,40.69037,-73.9184,Private room,51,2,4,2018-06-04,0.15,1,0 +18108590,Private Garden Room in Commune,13416818,Emma,Brooklyn,Bedford-Stuyvesant,40.67992,-73.95695,Private room,65,2,3,2017-04-27,0.11,3,0 +18108648,Large 2bd 15 min to Midtown Manhattan,124740003,Dani,Queens,Ditmars Steinway,40.77764,-73.91128,Entire home/apt,100,3,93,2019-06-21,3.49,1,197 +18108849,Best location to live in Astoria,124741583,Marina,Queens,Astoria,40.76601,-73.91841,Private room,49,5,2,2017-06-27,0.08,1,179 +18108981,HUGE PRISTINE VERSACE DUPLEX APT. IN BROOKLYN,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69171,-73.9575,Entire home/apt,195,4,80,2019-07-02,3.00,3,218 +18109817,Great Studio Near Time Square,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76476,-73.99453,Entire home/apt,115,30,3,2018-04-22,0.12,31,326 +18109852,"Sunny high-ceiling, large-windows, Bushwick apt",5168429,Chris,Brooklyn,Bushwick,40.69511,-73.90715,Private room,65,4,17,2019-01-12,0.66,1,11 +18110008,Bright room by the Brooklyn Navy Yard,9193506,Lucy,Brooklyn,Fort Greene,40.69664,-73.97375,Private room,65,2,3,2017-08-14,0.11,1,0 +18110654,Bright and Sunny Brooklyn Sanctuary,9630989,Ernesto,Brooklyn,Bushwick,40.70091,-73.92215,Private room,60,2,113,2019-06-17,4.15,2,3 +18112181,Sunny Williamsburg Studio Overlooking the Park,16970101,Tia,Brooklyn,Williamsburg,40.72128,-73.95547,Entire home/apt,175,2,8,2019-05-25,0.43,1,0 +18112517,MANHATTAN - Upper West BIG ROOM w/tv,122026078,Shah Memo,Manhattan,Harlem,40.81928,-73.95398,Private room,80,2,9,2017-09-27,0.36,3,72 +18117334,"Bright Zen Bedroom with TV, nr JMZ Subways",3388950,Amaya,Brooklyn,Bedford-Stuyvesant,40.69624,-73.93414,Private room,72,4,59,2019-06-27,2.22,6,120 +18120094,Clean Private Room in East Village,24594940,Manisha,Manhattan,East Village,40.72177,-73.98286,Private room,100,5,8,2019-01-03,0.30,1,128 +18120248,Great Studio,6473469,Yoni,Manhattan,Upper West Side,40.79487,-73.96555,Entire home/apt,100,3,3,2017-04-25,0.11,1,0 +18120592,Clean room PRIVATE full bath & private entrance,124860677,Jim&Lisa,Queens,Flushing,40.75811,-73.81458,Private room,47,2,130,2019-07-07,4.79,6,342 +18120946,Tranquility in a Sunny Duplex w/Private Bathroom,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.6919,-73.94487,Private room,125,1,60,2019-07-03,2.21,3,90 +18121314,Lovely Private Clean New Building A/C,1460313,Soraya,Queens,Ridgewood,40.69661,-73.90022,Private room,56,5,71,2019-06-23,2.81,2,100 +18123155,Fully Fancy Furnish Apartment in Manhattan.,124886133,Tom,Manhattan,Upper East Side,40.76982,-73.95258,Entire home/apt,105,30,2,2018-08-22,0.08,1,120 +18123185,Cozy room in UWS in modern apt,71540662,Jay,Manhattan,Upper West Side,40.79974,-73.96432,Private room,80,6,3,2017-10-15,0.11,1,0 +18123540,Cozy room in Brooklyn steps from train,54058956,Kristin,Brooklyn,Flatbush,40.65026,-73.96308,Private room,40,2,0,,,1,0 +18124043,ChelseaStudio w/t SunnyPrivateTerrace&EmpireView:),124898889,Fania,Manhattan,Chelsea,40.74432,-73.99985,Entire home/apt,180,5,7,2018-01-02,0.26,1,0 +18124558,MANHATTAN by Central Park/Subway Private Bedroom!,3084731,Cristine,Manhattan,East Harlem,40.78949,-73.94461,Private room,79,5,47,2019-06-28,1.77,1,131 +18133502,Sunny Modern Duplex w/Balcony & Rooftop Deck,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.69261,-73.94393,Entire home/apt,150,2,33,2019-06-29,1.23,3,177 +18134537,"NYC available Now - March 15 , UWS, 1 bedroom apt.",124999506,Kevin,Manhattan,Upper West Side,40.77777,-73.97939,Entire home/apt,250,1,3,2017-04-22,0.11,1,0 +18134948,"Room w/private bathroom, Breakfast & 7min to Manh",1746238,Kat,Brooklyn,Williamsburg,40.71398,-73.94702,Private room,169,5,60,2019-01-01,2.22,1,50 +18136478,"Sunny, Quiet top-floor 2 bedroom in Cobble Hill",22511613,James,Brooklyn,Carroll Gardens,40.68572,-73.99286,Entire home/apt,199,1,6,2018-05-28,0.23,2,0 +18136685,"Clean, Cosy Private 1 Bd Apartment Fort Greene",8740662,Nichole,Brooklyn,Clinton Hill,40.69369,-73.96826,Entire home/apt,125,6,0,,,1,0 +18138307,"Private Room, shared bathroom in Hamilton Heights",17643263,Frank,Manhattan,Harlem,40.83126,-73.94832,Private room,120,2,14,2017-08-07,0.52,1,0 +18139095,Brand New Historic Harlem Duplex Apartment,3988482,Julien,Manhattan,Harlem,40.82168,-73.95161,Entire home/apt,199,3,45,2018-08-06,1.82,1,0 +18139171,Spacious Oasis Duplex with Private Garden,5736671,Sarah,Brooklyn,Boerum Hill,40.68786,-73.98811,Entire home/apt,160,5,10,2019-01-31,0.39,1,8 +18142309,Cozy and sunny Studio,32166735,Denise,Brooklyn,Prospect Heights,40.67387,-73.96707,Entire home/apt,100,5,14,2019-05-28,0.53,1,0 +18142333,"Elegant 5BR, 2.5 Bath w/Yard, 15 Mins to Manhattan",107022433,Nikita,Brooklyn,Bedford-Stuyvesant,40.68402,-73.93081,Entire home/apt,550,2,32,2019-06-16,1.50,3,248 +18142927,Bright Minimalist Creative Retreat Bedroom BedStuy,69860334,DyAnna,Brooklyn,Bedford-Stuyvesant,40.69307,-73.95254,Private room,40,3,1,2017-05-02,0.04,1,0 +18148158,Spacious Bright and Modern Studio,124142417,Marlene,Brooklyn,Bushwick,40.6877,-73.9159,Entire home/apt,95,2,113,2019-06-24,4.15,2,6 +18149668,New Renovated Private 1 bed/bath in Prime Location,54098346,Eric,Manhattan,Upper East Side,40.78071,-73.95149,Private room,150,1,3,2017-04-17,0.11,1,0 +18151035,Stylish centrally Located 2 bedroom,3639678,Rose,Brooklyn,Boerum Hill,40.68727,-73.98574,Entire home/apt,189,5,58,2019-06-23,2.17,1,24 +18151976,Lovely room(s) in Brooklyn brownstone w/ backyard,2960920,Stefan,Brooklyn,Bedford-Stuyvesant,40.68293,-73.95458,Private room,71,1,2,2017-04-30,0.07,1,0 +18152140,One bedroom in quaint brownstone!!,109855383,Aaron,Brooklyn,Bedford-Stuyvesant,40.6942,-73.94963,Private room,40,3,6,2018-07-03,0.22,1,0 +18152217,A charming room in a Victorian Home,22661810,Marie,Brooklyn,Flatbush,40.63256,-73.94757,Private room,55,4,8,2018-11-02,0.35,2,364 +18152855,Beautiful 1-bedroom close to Grand Central,17520527,Carolin,Queens,Sunnyside,40.74473,-73.91876,Private room,150,3,1,2017-06-02,0.04,1,0 +18154888,Manhatten Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,229,30,0,,,23,149 +18155063,Spacious Studio ( W 48 street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7647,-73.99414,Entire home/apt,120,30,0,,,31,353 +18155865,Private Bedroom/Officespace,125204273,Alexander,Brooklyn,Williamsburg,40.70869,-73.94684,Private room,100,3,0,,,1,0 +18156252,LOFT SPACE IN BUSHWICH,10695335,Alessia,Brooklyn,Williamsburg,40.70327,-73.93425,Entire home/apt,160,2,18,2019-03-27,0.67,1,358 +18156961,Sunny Private Room with patio access in the EV!,10121204,Meredith,Manhattan,East Village,40.72269,-73.98428,Private room,50,5,0,,,1,0 +18158353,Beautiful BedStuy Bedroom,6950091,Shireen,Brooklyn,Bedford-Stuyvesant,40.68544,-73.92457,Private room,60,1,1,2017-04-23,0.04,1,0 +18159239,Manhattan | Luxurious 1 Bedroom,3191545,Kyle,Manhattan,Hell's Kitchen,40.75735,-73.99189,Entire home/apt,229,30,2,2018-05-09,0.08,23,362 +18159825,"NYC4YOU +Great location!!!",23187808,Theodore,Queens,Ditmars Steinway,40.77412,-73.9061,Entire home/apt,99,1,81,2019-06-20,2.98,1,202 +18160364,"UWS 1BR Apartment, Charming, Exposed Brick (5B)",106837455,Lisa,Manhattan,Upper West Side,40.7847,-73.98196,Entire home/apt,136,29,1,2018-01-01,0.05,8,0 +18161036,Large private room on the Upper East Side,4240419,Haldun,Manhattan,Upper East Side,40.77681,-73.95123,Private room,120,2,4,2018-01-01,0.15,1,0 +18162965,"Large, funky Park Slope triplex w outdoor space.",98040412,Amy,Brooklyn,Park Slope,40.67259,-73.98452,Entire home/apt,300,1,0,,,1,0 +18169166,"UWS 1BR, Landmarked Townhouse, Sunny (4B)",106837455,Lisa,Manhattan,Upper West Side,40.78463,-73.98303,Entire home/apt,119,30,1,2017-05-31,0.04,8,310 +18170615,Private room/Columbia/Central park,75810157,Antong,Manhattan,Morningside Heights,40.80416,-73.96538,Private room,99,4,3,2017-06-29,0.11,1,0 +18171814,"Artsy and Sunny Room in Bushwick, near L and JMZ",38041322,Ana,Brooklyn,Bushwick,40.70025,-73.92175,Private room,60,3,2,2017-08-30,0.07,1,0 +18173198,Charming & Affordable Shared Studio in WestHarlem,274333,Janu,Manhattan,Harlem,40.80026,-73.9546,Shared room,31,1,65,2019-06-03,2.44,3,89 +18173787,Cute Tiny Room Family Home by LGA NO CLEANING FEE,26432133,Danielle,Queens,East Elmhurst,40.7638,-73.87238,Private room,48,1,436,2019-07-08,16.03,5,337 +18173989,Private and Quiet Room in the Perfect Location,3660702,Greg,Manhattan,Chelsea,40.74754,-73.99036,Private room,69,1,63,2019-06-24,2.34,4,29 +18175051,Private Bedroom in charming 2 Bdrm Duplex,9147284,David,Brooklyn,Bushwick,40.69808,-73.92054,Private room,60,1,4,2018-11-27,0.30,1,341 +18175061,New Years EVE in NY! Magnificent Private Penthouse,125320407,Sata,Queens,Briarwood,40.70678,-73.80613,Entire home/apt,1000,2,5,2018-10-07,0.27,5,365 +18175675,2400 Sq Ft Tribeca Loft w/Private Elevator,2834168,Jessica,Manhattan,Tribeca,40.71893,-74.0033,Entire home/apt,350,6,20,2019-06-30,0.74,1,25 +18175743,private apartment in new york,40929418,Nicole,Queens,Glendale,40.70459,-73.89574,Entire home/apt,100,1,0,,,1,0 +18176762,":Luxury 1BR by the water, one stop from Manhattan",117840007,Joanna,Queens,Long Island City,40.7455,-73.95607,Entire home/apt,150,3,5,2017-10-23,0.19,1,0 +18176796,3BED apartment 20 MINS TO MANHATTAN,116723158,Jamaul,Brooklyn,East Flatbush,40.65321,-73.95199,Entire home/apt,140,1,111,2019-07-07,4.53,1,259 +18176798,Sunny Balcony Apartment,125398274,Christian,Manhattan,Lower East Side,40.71869,-73.9931,Entire home/apt,200,3,7,2018-07-23,0.26,2,0 +18177024,Two Bedroom on Williamsburg Waterfront,187912,Erin,Brooklyn,Williamsburg,40.71638,-73.96612,Entire home/apt,235,1,35,2019-06-14,1.29,2,9 +18179365,2 bedroom apartment with private Patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76318,-73.99462,Entire home/apt,200,30,1,2017-07-29,0.04,31,350 +18179735,Nice room in spacious apartment in BK,26996515,Will,Brooklyn,Bedford-Stuyvesant,40.69016,-73.9274,Private room,40,2,4,2017-08-07,0.16,2,0 +18180304,"Cozy, Private Studio in Bedstuy, Brooklyn",7598580,Julia,Brooklyn,Bedford-Stuyvesant,40.67943,-73.94435,Entire home/apt,90,6,1,2018-10-03,0.11,1,35 +18181620,Centrally Located Manhttn High-Rise,501891,Dave,Manhattan,Gramercy,40.7368,-73.98045,Entire home/apt,379,1,0,,,1,0 +18182282,Modern large one bedroom apt in HK,3749703,Dan,Manhattan,Hell's Kitchen,40.76126,-73.99685,Entire home/apt,300,2,0,,,1,0 +18182318,Luxury Musician's Loft with Incredible City Views,9563971,Doa,Brooklyn,Williamsburg,40.70858,-73.95857,Entire home/apt,250,2,5,2019-04-02,0.18,1,0 +18188738,Cute Family Friendly Vintage Brownstone Living!!,27403581,Shay & Cam,Manhattan,Harlem,40.82665,-73.94669,Shared room,49,2,52,2019-04-16,1.95,1,194 +18188904,extra large room available,62639334,Melissa,Brooklyn,Crown Heights,40.67763,-73.94755,Private room,60,2,7,2019-06-10,0.34,1,0 +18188958,Beautiful 2-bedroom in Williamsburg,611109,Alexandra,Brooklyn,Williamsburg,40.70743,-73.96625,Entire home/apt,224,1,26,2019-07-06,1.01,2,192 +18190480,Park Slope Gem full of natural light,28929752,Sarah,Brooklyn,Park Slope,40.67632,-73.97328,Entire home/apt,115,3,4,2018-05-20,0.23,1,0 +18190894,Large sleeping loft with two beds,17527788,Taylor,Brooklyn,Bushwick,40.69745,-73.93038,Private room,49,1,20,2019-06-29,0.74,2,89 +18191456,Amazing Studio in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75933,-73.82313,Entire home/apt,115,30,3,2019-05-24,0.12,15,7 +18191892,Huge 2BR Apartment. Walk to beach/buses,28483768,Skender,Staten Island,Dongan Hills,40.57825,-74.08879,Entire home/apt,95,4,45,2019-06-19,1.66,1,134 +18191934,"25 Mins to Midtown, 15 Mins to LES",71138930,Ann,Brooklyn,Williamsburg,40.70345,-73.94336,Private room,98,2,22,2017-10-08,0.82,1,0 +18191965,Upper east side - Cozy Room,125542850,Gabriele,Manhattan,Upper East Side,40.76976,-73.95208,Private room,110,3,11,2019-07-03,0.41,1,203 +18193397,Washington Heights Cozy,125558761,Stefan,Manhattan,Washington Heights,40.85354,-73.93095,Private room,50,2,26,2019-07-02,0.96,1,24 +18194415,"Room in just-refurbished, classic brownstone flat.",125567809,Gene,Brooklyn,Park Slope,40.67213,-73.98141,Private room,75,1,0,,,1,0 +18194429,Adorable Upper West Side Apt steps to Central Park,125565839,Kim,Manhattan,Upper West Side,40.79345,-73.97191,Entire home/apt,50,5,12,2017-10-01,0.44,1,0 +18194450,Gorgeous Brooklyn Bedroom with Luxury Decor,54289696,Monica,Brooklyn,Crown Heights,40.67038,-73.93214,Private room,27,2,81,2019-06-09,2.99,1,84 +18194482,Bed-Stuy Beauty,9945748,Shakira,Brooklyn,Bedford-Stuyvesant,40.68371,-73.94156,Entire home/apt,130,4,13,2017-10-02,0.48,1,0 +18195445,Modern and sunny in the heart of Prospect Heights!,7433941,Diana,Brooklyn,Crown Heights,40.6778,-73.96321,Entire home/apt,85,3,5,2019-05-17,0.64,1,0 +18196880,Sunny Apartment Near Prospect Park,5378851,Kate,Brooklyn,Crown Heights,40.66429,-73.9581,Private room,115,7,2,2018-10-21,0.09,1,95 +18196956,Beautiful 1 BR 1 Bath in Boerum Hill Brooklyn,3859890,Aditi,Brooklyn,Boerum Hill,40.6891,-73.9874,Private room,53,1,10,2019-03-21,0.38,1,0 +18197137,"ENTIRE, PRIVATE NYC home 3mins from JFK Airport",125557444,Ada,Queens,Jamaica,40.67057,-73.77956,Entire home/apt,80,1,7,2019-01-17,0.27,2,304 +18197946,Beautiful apt with view of GW Bridge and river,10127519,Horatio,Manhattan,Washington Heights,40.84955,-73.94167,Private room,35,1,6,2018-05-31,0.22,1,0 +18198439,BRIGHT SHABBY CHIC FLOOR THRU,7380428,Mel,Manhattan,Harlem,40.81447,-73.94721,Entire home/apt,165,7,35,2019-07-01,1.39,3,269 +18198575,"Sunny, Spacious Bedroom 2 mins from the train!",16091224,Jesse,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.96086,Private room,60,5,15,2019-06-29,0.64,2,41 +18201148,"5* Views, Terrace, 2BR2B, Modern Luxury, Gym, Roof",48205496,B,Queens,Long Island City,40.74834,-73.94181,Entire home/apt,379,4,91,2019-06-26,3.44,2,152 +18201247,EAST VILLAGE 12TH ST- CONVERTED 2 BR APT,2856748,Ruchi,Manhattan,East Village,40.73218,-73.98815,Entire home/apt,285,30,0,,,49,364 +18203651,Comfortable Rest Stop,649374,Jeremy,Brooklyn,East Flatbush,40.6536,-73.92643,Private room,60,2,16,2017-11-15,0.71,1,0 +18205794,"Bright, Quiet and Modern--1,200 Sq Ft in W Village",1448674,Sean,Manhattan,West Village,40.7355,-73.99964,Entire home/apt,329,4,33,2019-06-09,1.25,1,16 +18206686,"East 12th street, Lux Studio in Greenwich Village",22541573,Ken,Manhattan,East Village,40.73373,-73.98962,Entire home/apt,225,30,0,,,87,347 +18207319,Brownstone w/ Luxurious private room & bay windows,125687221,Tee,Bronx,Longwood,40.8134,-73.89893,Private room,75,3,6,2017-08-04,0.25,1,87 +18208285,Cozy bedroom near Central Park,43200701,Nina,Manhattan,Upper East Side,40.76889,-73.9548,Private room,100,1,68,2018-10-29,2.62,1,5 +18208738,Bright uptown apartment in the heart of Harlem,20368225,Jessica,Manhattan,Harlem,40.80803,-73.94647,Entire home/apt,200,2,68,2019-06-22,2.90,3,43 +18208811,"Warm, clean room in a historic Harlem brownstone",20368225,Jessica,Manhattan,Harlem,40.80965,-73.94696,Private room,115,1,120,2019-06-22,4.77,3,34 +18209427,Sunny big designer room in Art-loving Bushwick,2208374,Elena,Brooklyn,Bushwick,40.7016,-73.92103,Private room,85,3,8,2019-04-19,0.30,2,3 +18209795,Cozy furnished private room in Manhattan,35525179,Ma,Manhattan,Upper West Side,40.79794,-73.97188,Private room,40,1,14,2017-05-27,0.52,1,0 +18210358,True NYC Living! Flatiron:1 bdrm w/ outdoor space!,76114242,Mark,Manhattan,Kips Bay,40.73916,-73.9822,Entire home/apt,235,1,0,,,1,0 +18210425,Cozy room in Downtown Brooklyn.,125717450,Lawson,Brooklyn,Boerum Hill,40.68416,-73.97912,Private room,64,1,3,2018-12-18,0.19,1,3 +18210950,2 bedroom at Wyndham Midtown 45 New York City,57571805,Gharet,Manhattan,Midtown,40.7523,-73.97299,Entire home/apt,134,4,2,2017-09-27,0.08,3,0 +18211259,Flatbush Townhouse Apt (UNFURNISHED),10285950,Christina,Brooklyn,Flatbush,40.64538,-73.954,Entire home/apt,86,14,1,2017-07-04,0.04,3,349 +18213280,2 bedroom 2 bathroom UWS,6726364,Alejandra,Manhattan,Upper West Side,40.79967,-73.96251,Entire home/apt,330,3,3,2017-07-13,0.11,2,0 +18213425,Contemporary Home with Brooklyn Charm,125746559,Akil,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.94475,Entire home/apt,170,3,19,2018-08-20,0.81,1,0 +18214015,Quiet Private Bedroom in the heart of Little Italy,41874064,Sheba,Manhattan,Little Italy,40.71836,-73.99777,Private room,90,1,106,2019-07-02,4.29,2,9 +18215065,NEW 2 twin beds and private bathroom in Flushing!!,10366837,Jia,Queens,Flushing,40.75767,-73.83094,Entire home/apt,65,2,84,2019-06-15,3.19,3,119 +18216372,Private room in Sunnyside 15 min to Manhattan,27966322,Mustafa,Queens,Sunnyside,40.73677,-73.9168,Private room,60,2,2,2017-05-18,0.08,1,40 +18221090,Bright and spacious room,125821659,Liliana,Queens,Jackson Heights,40.75147,-73.89071,Private room,75,1,6,2019-06-19,0.32,1,341 +18221723,"Spacious Apt w Deck, Williamsburg",3591955,Charles,Brooklyn,Williamsburg,40.71004,-73.95994,Entire home/apt,265,3,26,2019-06-25,1.01,1,70 +18221864,Lovely 1 BD on the Upper West Side,70601471,Andreas,Manhattan,Upper West Side,40.78906,-73.97732,Entire home/apt,148,1,131,2019-06-24,4.90,1,277 +18221952,The ASTORIAN'S ArtPad,17247848,Kevin,Queens,Ditmars Steinway,40.77751,-73.90902,Private room,95,1,31,2019-05-22,1.20,1,90 +18222186,Cozy Quite Room in NYC Manhattan Upwest,125833008,Wendy,Manhattan,Harlem,40.83053,-73.95048,Private room,94,3,2,2017-05-31,0.08,1,0 +18222359,LIVE BROOKLYN! Private 1 BR APT - 5 min to Subway,120804342,David,Brooklyn,Bedford-Stuyvesant,40.6946,-73.94429,Entire home/apt,109,2,112,2019-07-05,4.22,2,258 +18223667,Amazing location! Luxury Apartment by Central Park,15069930,Christian,Manhattan,Upper East Side,40.78164,-73.95873,Entire home/apt,490,14,1,2017-04-27,0.04,1,180 +18225729,Hip Soho Loft,121400000,Kristen,Manhattan,SoHo,40.72528,-74.00317,Entire home/apt,200,3,16,2018-09-24,0.60,1,15 +18225813,Pendulum Palace,44785461,William,Brooklyn,Williamsburg,40.70655,-73.95405,Private room,69,15,0,,,1,0 +18225912,"Fresh, bright modern studio w/ Garage Parking",3656008,Ivanna,Queens,Flushing,40.7447,-73.82497,Entire home/apt,99,3,95,2019-05-31,3.52,1,63 +18226037,Luxury Brooklyn + Roof Deck and Gym!,29950960,Erik,Brooklyn,Clinton Hill,40.68697,-73.9615,Private room,75,4,14,2019-07-06,0.54,1,10 +18226108,"1-bedroom apartment in Williamsburg, Brooklyn",57641560,Christopher,Brooklyn,Williamsburg,40.7164,-73.95437,Entire home/apt,146,4,58,2019-06-22,2.50,2,17 +18226843,Private bedroom in Murray Hill / Kips Bay,3600065,Ariel,Manhattan,Murray Hill,40.74612,-73.97684,Private room,77,2,3,2017-08-17,0.12,1,0 +18227315,Fully furnished room with a single bed,87723508,Edyta,Queens,Glendale,40.69845,-73.8958,Private room,35,30,7,2019-01-02,0.27,2,294 +18227529,Live in New York Near Central Park and Columbia U.,21940966,Mekkie,Manhattan,Harlem,40.80567,-73.95677,Entire home/apt,140,2,82,2019-07-05,3.17,2,5 +18227645,Cozy Room In Upper East Side Apt,20899650,Kyra,Manhattan,East Harlem,40.7883,-73.95017,Private room,100,1,22,2018-08-05,0.81,1,0 +18228187,《2》法拉盛市中心明亮干净的私人房间,123580100,Evelyn,Queens,Flushing,40.76417,-73.83008,Private room,45,1,94,2019-06-17,3.48,2,62 +18229274,# 1 A Brooklyn New York Apt: close to metro subway,125914985,Myles,Brooklyn,East Flatbush,40.63381,-73.94395,Entire home/apt,185,6,60,2019-06-30,3.22,2,112 +18229365,Beautiful apartment ~25min from Times Square,6358504,Yaroslav,Bronx,Mount Hope,40.84499,-73.91157,Entire home/apt,60,5,3,2018-08-21,0.13,1,0 +18235200,Cozy Private Bedroom Near LGA,62466309,Paula,Queens,East Elmhurst,40.76518,-73.89182,Private room,50,2,1,2018-12-02,0.14,1,34 +18236999,Penthouse with private terrace and bath,23269913,Patrick,Brooklyn,Bedford-Stuyvesant,40.68699,-73.92345,Private room,50,2,5,2017-12-16,0.19,1,0 +18239613,"Charming Private Room in Bed-Stuy, Brooklyn",28260191,Matthew,Brooklyn,Bedford-Stuyvesant,40.68583,-73.95296,Private room,47,35,1,2018-08-01,0.09,1,75 +18239623,One Bedroom with King in the Manhattan Club!!,22307295,Anthony,Manhattan,Midtown,40.76392,-73.98187,Entire home/apt,186,1,0,,,1,0 +18239876,Studio aprtmnt for ONE located in upper Manhattan,125589679,Shanta,Manhattan,Washington Heights,40.83694,-73.94212,Entire home/apt,100,3,71,2019-06-21,2.66,1,363 +18239917,Luxury 2 BR in Prime NOHO,126015118,Nir,Manhattan,East Village,40.72448,-73.99247,Entire home/apt,400,3,3,2019-01-02,0.36,1,14 +18240632,Bronx Apartment,64425305,Posh,Bronx,Baychester,40.87372,-73.84065,Private room,75,1,3,2017-06-05,0.11,1,129 +18240637,COZY-CHIC CROWN HEIGHTS 1-BED,27442469,Deri,Brooklyn,Crown Heights,40.67694,-73.94631,Private room,145,3,1,2017-05-01,0.04,1,0 +18240743,Private Room in Staten Island + Walk-In Closet. #1,72603148,Faye,Staten Island,Stapleton,40.63457,-74.07817,Private room,65,1,56,2019-07-07,2.09,3,351 +18240963,Coney Island MCU Park Wi fi Cable Apt****,114736959,Ed,Brooklyn,Coney Island,40.57609,-73.98605,Entire home/apt,110,3,52,2019-07-05,1.95,6,150 +18241920,Hosting Harlem Brownstone Apartment,122495279,Patrick,Manhattan,Harlem,40.80405,-73.94513,Entire home/apt,85,7,2,2017-09-04,0.08,1,0 +18242004,Columbia university medical center 1AC line studio,106932244,Tianchen,Manhattan,Washington Heights,40.84062,-73.94125,Entire home/apt,51,1,4,2017-05-29,0.15,1,0 +18248683,Sunny East Village Apartment,126101478,Bobby,Manhattan,East Village,40.72412,-73.97911,Entire home/apt,140,5,1,2017-05-03,0.04,1,0 +18249844,Central Park One Bedroom Apartment in Harlem,126110994,Andrew,Manhattan,Harlem,40.8043,-73.95106,Entire home/apt,85,1,25,2017-07-20,0.93,1,0 +18251681,"Private second floor, 2 BR, wood-frame farmhouse.",22769654,Jeff,Brooklyn,Clinton Hill,40.69368,-73.9671,Private room,165,2,109,2019-06-21,4.04,1,246 +18252313,Modern Central Harlem Room,2331158,"Destiny ""Bunmi""",Manhattan,Harlem,40.80947,-73.94066,Private room,30,5,3,2017-11-18,0.12,1,0 +18252876,Charming Spacious Studio in UWS with balcony,60022283,Audrey,Manhattan,Morningside Heights,40.80507,-73.96414,Entire home/apt,116,3,16,2019-05-25,0.61,1,0 +18253290,Pleasant one bed room apartment in Greenpoint!,17049693,Anastasia,Brooklyn,Greenpoint,40.7288,-73.95408,Entire home/apt,70,13,8,2017-08-28,0.33,1,0 +18253324,"Safe Location, next to Subway; Manhattan 20 mins",19377326,Alisa,Brooklyn,Crown Heights,40.67158,-73.96007,Entire home/apt,46,30,25,2018-07-17,1.02,1,0 +18253938,Large Uptown Manhattan Studio,23168773,Brett,Manhattan,Inwood,40.86512,-73.92172,Entire home/apt,70,20,17,2018-01-03,0.72,1,0 +18254225,Midtown West: Private Residence,125654433,Maurizio,Manhattan,Hell's Kitchen,40.76658,-73.99335,Entire home/apt,250,4,0,,,1,0 +18254259,Beautiful and spacious private room!,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68318,-73.92529,Private room,70,28,14,2018-03-17,0.52,4,265 +18254314,"St. Marks, East Village penthouse loft w/ patio!",100288,Tiff & David,Manhattan,East Village,40.72842,-73.98679,Private room,140,4,11,2017-12-12,0.42,1,0 +18254317,Great place in Manhattan - Upper west side,101262003,John,Manhattan,Upper West Side,40.78571,-73.97649,Private room,150,1,0,,,2,0 +18255124,Beautiful modern apartment located in Gramercy,64351850,Mckenzie,Manhattan,Kips Bay,40.73957,-73.98233,Entire home/apt,168,7,10,2018-12-11,0.37,1,0 +18255225,Lovely Studio,43089949,Victoria,Brooklyn,Midwood,40.62,-73.95489,Entire home/apt,85,5,15,2019-06-23,1.01,1,105 +18255869,Brooklyn Hidden Gem,126176275,Audrey,Brooklyn,East Flatbush,40.63602,-73.93105,Private room,50,30,32,2019-06-26,1.29,4,64 +18256895,☆☆☆Perfect Couple's Getaway☆☆☆,122265852,Alexander,Manhattan,Hell's Kitchen,40.76459,-73.99035,Private room,99,1,159,2019-06-30,5.88,2,178 +18257701,Cozy 1 BR w/ Natual Sunlight & Exposed Brick,125585107,Krishaine,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91707,Private room,65,2,2,2017-05-16,0.08,1,0 +18263839,An amazing Studio Apt in FIDI,57192926,Yara,Manhattan,Financial District,40.70689,-74.00671,Entire home/apt,145,3,87,2019-06-29,3.28,1,140 +18264166,10 mins/Airports JFK/LGA/Hosp/malls bus/train# 1,126247863,Seeranie,Queens,Richmond Hill,40.69104,-73.82204,Private room,50,1,102,2019-06-23,4.02,2,354 +18264659,A Cozy Harlem Stay,63417081,Devon,Manhattan,Harlem,40.82341,-73.94444,Private room,39,30,3,2018-08-18,0.14,8,282 +18264726,Brooklyn Vibes Apartment,18184562,Gil,Brooklyn,Williamsburg,40.71684,-73.94256,Private room,200,4,2,2017-04-21,0.07,1,0 +18265387,Beautiful Room with Private Bathroom by Bushwick!!,99608108,Osa,Brooklyn,Bushwick,40.70464,-73.91556,Private room,69,2,23,2019-06-03,0.89,3,145 +18266105,Clean + Simple Chelsea 2 Bedroom (sleeps 7),4393578,Jack,Manhattan,Chelsea,40.7402,-73.999,Entire home/apt,300,30,51,2019-04-09,2.55,2,126 +18266775,Beautiful Room with Private Entrance by Bushwick!!,99608108,Osa,Brooklyn,Bushwick,40.70549,-73.91527,Private room,69,2,34,2019-06-23,1.33,3,319 +18268053,Location Angel Boy,3250450,Petya,Queens,Woodside,40.75527,-73.90835,Private room,40,31,2,2019-05-12,0.16,18,362 +18268257,Spacious NY loft equipped for a baby!,3955533,Aiya,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95861,Entire home/apt,160,5,11,2018-07-10,0.46,1,0 +18269285,Prime Midtown East Queen Bedroom-Females only,126292511,Charlotte,Manhattan,Midtown,40.76013,-73.96566,Shared room,99,3,6,2017-10-08,0.24,1,0 +18270109,Beautiful Room by Bushwick Brooklyn!!,99608108,Osa,Brooklyn,Bushwick,40.70457,-73.91603,Private room,29,2,40,2019-06-22,1.49,3,319 +18270199,loft in live work studio,13058935,Shawn,Brooklyn,Greenpoint,40.73434,-73.94186,Private room,55,5,0,,,1,0 +18271282,Gimme Shelter,126311719,Kricket,Manhattan,SoHo,40.7239,-73.99678,Entire home/apt,850,30,7,2018-12-01,0.26,1,365 +18271460,Beautiful Sunlit Private Room in BKH apartment,106130636,Lane,Brooklyn,Brooklyn Heights,40.69602,-73.99253,Private room,75,3,1,2017-05-29,0.04,1,0 +18271718,Private Comfy Best Value BR w/Yard!~175ft to Subwy,40883799,Amos,Brooklyn,Bushwick,40.70596,-73.92182,Private room,60,1,83,2019-06-28,3.15,3,175 +18272185,"Huge, Light-filled Williamsburg Loft — Long Term",1495058,Joseph,Brooklyn,Williamsburg,40.72112,-73.96034,Entire home/apt,249,60,2,2017-05-09,0.08,1,0 +18272753,The Reptarium: hip hideaway in sunny Bushwick loft,20175399,Grace,Brooklyn,Bushwick,40.70765,-73.92159,Private room,69,2,16,2017-10-22,0.61,1,0 +18273151,Private room in luxury building,125438374,Christian,Manhattan,Financial District,40.70438,-74.00894,Private room,100,1,0,,,1,0 +18273542,Luxury Room w/private bathroom in DUPLEX,9909635,Vadim,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9449,Private room,75,1,14,2018-08-12,0.52,3,89 +18274232,PRIVATE BATH next to Central Park!,21380187,Mark,Manhattan,Hell's Kitchen,40.76692,-73.98548,Private room,179,2,34,2019-06-23,1.31,1,84 +18274492,Studio apartment in NYC,5949541,Helen,Staten Island,Grant City,40.58023,-74.10725,Entire home/apt,80,3,68,2019-06-30,2.55,1,50 +18275502,Sophisticated Brooklyn Brownstone,87766324,Michelle,Brooklyn,Bedford-Stuyvesant,40.68707,-73.9349,Entire home/apt,196,2,88,2019-06-15,3.32,2,9 +18276042,Private Bedroom in Gorgeous Uptown Apartment,39442448,Jayson,Manhattan,Washington Heights,40.84946,-73.93126,Private room,43,5,1,2017-05-21,0.04,1,0 +18283136,Modern midtown studio,44453334,Oleg,Manhattan,Hell's Kitchen,40.75383,-73.99733,Shared room,145,4,0,,,1,0 +18283367,Huge Private Furnished Bedroom - Inwood,126420866,Nic,Manhattan,Inwood,40.86396,-73.9267,Private room,50,5,2,2017-05-20,0.08,1,0 +18283511,☆☆☆Authentic NYC Experience☆☆☆,122265852,Alexander,Manhattan,Hell's Kitchen,40.766,-73.98945,Private room,99,1,134,2019-06-30,4.96,2,176 +18283646,Clean and Cozy Room - 20 Mins to Midtown Manhattan,28462809,Shesh,Manhattan,Harlem,40.82205,-73.95335,Private room,80,2,18,2019-05-04,0.69,1,55 +18285079,"Cozy 1BD in East Village, Manhattan",13816539,Theodore,Manhattan,East Village,40.72982,-73.98076,Entire home/apt,118,2,4,2019-05-31,0.92,1,0 +18286031,Sunny & Cozy w/outdoor space in Bushwick/Ridgewood,77501050,Sarah,Queens,Ridgewood,40.70787,-73.90961,Private room,55,1,21,2017-11-26,0.79,1,0 +18286212,Clinton Hill's hidden gem,126444590,Anndean,Brooklyn,Clinton Hill,40.68312,-73.9592,Entire home/apt,200,7,9,2019-06-15,0.36,1,269 +18286232,NEW PENTHOUSE W/ HUGE PRIVATE ROOFTOP EAST VILLAGE,18167404,Andy,Manhattan,East Village,40.7242,-73.97777,Private room,150,1,0,,,1,0 +18286926,Joy's Luxury Apartment with Free Parking Space,126451493,Joy,Brooklyn,Canarsie,40.63136,-73.90921,Entire home/apt,125,1,26,2019-06-15,1.07,1,360 +18287688,UES one bedroom,57531995,Ashley,Manhattan,Upper East Side,40.77138,-73.94973,Entire home/apt,145,1,15,2018-04-29,0.62,1,0 +18287772,☆☆☆Extravagant Couple's Escape☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76606,-73.99077,Private room,99,1,155,2019-07-01,5.74,3,179 +18288169,Private Williamsburg Room 1 Block from Bedford L,1918417,Vidula,Brooklyn,Williamsburg,40.71919,-73.95789,Private room,80,2,1,2017-06-05,0.04,1,0 +18288371,Beautiful Apartment in the Heart of Chelsea,8008110,Erika,Manhattan,Chelsea,40.74672,-74.00187,Entire home/apt,195,6,33,2019-05-20,1.36,1,1 +18288391,"Cozy Room in BedStuy, Brooklyn",68579384,Julie,Brooklyn,Bedford-Stuyvesant,40.68435,-73.9274,Private room,42,14,4,2017-09-04,0.16,2,0 +18288660,Comfortable Private Room,32304780,Nicauris,Manhattan,Washington Heights,40.84098,-73.937,Private room,53,30,11,2019-04-28,0.42,3,354 +18288774,"Top-Floor Studio In Quaint, Quiet Brownstone",17393160,Tynan,Brooklyn,Cobble Hill,40.68818,-73.99483,Entire home/apt,125,4,3,2017-05-25,0.11,1,0 +18288828,☆☆☆Luxurious Couple's Retreat☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76431,-73.9891,Private room,99,1,147,2019-06-30,5.45,3,174 +18290402,Large 1 bd Apt in Heart of Chelsea Manhattan,3140916,Donald,Manhattan,Chelsea,40.74911,-74.00125,Entire home/apt,210,28,4,2017-05-24,0.15,1,95 +18290561,Harlem Jewel + Extra Travel Bonus,9777215,Theresa,Manhattan,Harlem,40.81358,-73.94296,Entire home/apt,177,3,71,2019-06-19,2.67,3,199 +18290841,"Clean, Chic, Modern Studio in UWS",33608519,Grace,Manhattan,Morningside Heights,40.8058,-73.9652,Entire home/apt,145,1,0,,,1,0 +18291430,Cozy Bedroom In Marble Hill ( Students Welcome ),18692297,Maneto,Manhattan,Marble Hill,40.87492,-73.91164,Private room,44,5,18,2019-06-30,0.69,1,349 +18291740,In the Heart of the East Village,2308459,Judith,Manhattan,East Village,40.72734,-73.98338,Private room,85,3,5,2019-07-01,0.24,1,9 +18291916,Cozy Brooklyn Apartment,33943711,Grace,Brooklyn,Clinton Hill,40.68775,-73.95997,Entire home/apt,150,4,8,2017-10-15,0.30,1,0 +18294238,New tidy room attached by PRIVATE FULL BATH,120767920,Jimmy &Cindy,Queens,Flushing,40.75884,-73.81477,Private room,70,3,88,2019-06-30,3.28,10,358 +18297633,"Charming, small and cozy",13540183,Ashley,Brooklyn,East Flatbush,40.63676,-73.95033,Private room,150,2,0,,,1,0 +18303895,BEAUTIFUL BROWNSTONE STUDIO IN SOUTH HARLEM,126592760,Felicia,Manhattan,Harlem,40.80514,-73.95115,Entire home/apt,125,2,98,2019-07-02,3.67,1,247 +18305649,Beautiful 1 bedroom Apartment in Midtown East,95994558,Sheena,Manhattan,Midtown,40.75242,-73.97112,Private room,200,3,0,,,1,0 +18305741,Cozy Room Minutes To Manhattan. #2,72603148,Faye,Staten Island,Stapleton,40.63464,-74.07842,Private room,55,1,13,2019-03-20,0.48,3,362 +18306436,Biggest and Brightest in Brooklyn,33646389,Sally,Brooklyn,Greenpoint,40.73034,-73.9527,Private room,69,10,6,2018-09-02,0.23,2,156 +18306444,Lively SoHo/Quiet St/2 blocks Subway/Fast WiFi,114548258,Only One,Manhattan,SoHo,40.72615,-74.00097,Entire home/apt,215,1,83,2019-06-25,3.19,2,214 +18306713,Sunny Spacious King Size Bed,67986867,Tiago,Brooklyn,Bushwick,40.69449,-73.92629,Entire home/apt,235,3,4,2017-10-23,0.18,1,0 +18307376,Sunset Park Gem SLR,26634538,Joe,Brooklyn,Borough Park,40.64275,-74.00183,Private room,42,2,7,2018-04-02,0.26,1,0 +18308486,Gorgeous 2BR Private Entire Floor Buschwick,126632094,Faith,Brooklyn,Bedford-Stuyvesant,40.69531,-73.93276,Private room,180,2,31,2019-06-08,1.16,2,131 +18309354,"Spacious Private Room In New York, Manhattan",55778523,Lydia,Manhattan,Morningside Heights,40.80456,-73.96521,Private room,125,1,4,2017-05-22,0.15,1,0 +18309683,"Bright, Beautiful Brooklyn Brownstone",126643339,Sarah,Brooklyn,Clinton Hill,40.68854,-73.96848,Entire home/apt,160,4,7,2017-05-22,0.26,1,0 +18309885,Luxurious Quiet Apartment in the Heart of Harlem,3341119,T,Manhattan,Harlem,40.82443,-73.94154,Private room,100,2,43,2019-06-01,1.65,1,120 +18310427,A huge bedroom in Harlem,63417081,Devon,Manhattan,Harlem,40.82348,-73.94581,Private room,39,30,5,2019-01-07,0.24,8,202 +18311851,Avenue K,126663154,Henrietta,Brooklyn,Canarsie,40.64519,-73.89054,Private room,71,2,2,2019-06-20,0.11,1,364 +18312034,Prestige Townhouse 5B 3.5bath East Central Park,37901086,Virginie,Manhattan,Upper East Side,40.76482,-73.96061,Entire home/apt,1475,1,1,2019-07-03,1,1,362 +18312568,Private room near Central Park,4111729,Mich,Manhattan,Upper East Side,40.78093,-73.95499,Private room,100,5,71,2019-06-27,2.67,1,66 +18312612,I LOVE NEW YORK in Theater District,63238467,Sam,Manhattan,Hell's Kitchen,40.76476,-73.98457,Entire home/apt,180,4,79,2019-06-26,3.03,1,211 +18313862,Gorgeous private bedroom in Park Slope,1507779,Lara,Brooklyn,South Slope,40.66405,-73.98512,Private room,79,14,9,2019-06-08,0.34,2,101 +18313864,"Large, Sunny, Cozy Room in the Heart of Bed-Stuy!",22591747,Femi & Toya,Brooklyn,Bedford-Stuyvesant,40.67922,-73.94937,Private room,60,4,39,2019-06-15,1.46,1,338 +18314102,ONE STOP TO TIME SQUARE BEAUTIFUL QUIET STUDIO,64964534,Natalya,Manhattan,Murray Hill,40.74769,-73.9784,Entire home/apt,160,1,141,2019-06-24,5.63,1,90 +18314397,Charming Room 4 blocks from Empire State Building,94648262,Martin & Christine,Manhattan,Kips Bay,40.74404,-73.97985,Private room,110,3,59,2019-06-23,2.92,1,51 +18314459,"Spacious, airy & sunny room in UWS, Manhattan!",72377141,Ben,Manhattan,Upper West Side,40.79871,-73.96801,Private room,193,6,3,2019-01-06,0.13,3,0 +18314930,Spacious room 3 blocks from M train,5641114,Oleg,Queens,Ridgewood,40.70442,-73.89602,Private room,50,2,29,2019-06-27,1.11,1,0 +18324607,Spacious Brooklyn 3BR perfect for families,17449165,Amanda,Brooklyn,Carroll Gardens,40.6838,-73.998,Entire home/apt,250,2,7,2017-12-31,0.27,1,0 +18325063,Prvt entrance room! 1 stop to Mdtwn Manhattan.,20017962,John,Queens,Long Island City,40.74399,-73.95472,Private room,72,3,11,2019-05-30,0.42,1,341 +18326156,"Beautiful modern Brooklyn room, 20mins to city",42928837,Reuben,Brooklyn,Williamsburg,40.70733,-73.92996,Private room,50,4,6,2018-10-08,0.23,1,0 +18326238,Brooklyn State of Mind - The Artist Loft,2141311,Thomas,Brooklyn,Williamsburg,40.71937,-73.94556,Private room,35,2,0,,,2,0 +18327453,Quiet bedroom in sunny Park Slope Brooklyn apt,5140287,Leah,Brooklyn,Park Slope,40.67574,-73.98028,Private room,90,2,8,2018-05-06,0.32,1,0 +18327630,Gigantic 2 Bed/2 Bath Step to Columbus Circle&Park,125545452,Tasny,Manhattan,Hell's Kitchen,40.76597,-73.98379,Entire home/apt,325,5,84,2019-06-24,3.15,1,69 +18329309,"Private, sunny studio apartment in Queens",27670418,Alexisz Tamás,Queens,Ridgewood,40.70036,-73.90238,Entire home/apt,79,9,11,2018-10-17,0.48,1,3 +18329545,Private room in the middle of NYC! LES/Chinatown,106068562,Alice,Manhattan,Chinatown,40.71602,-73.99293,Private room,180,1,1,2017-09-04,0.04,1,0 +18329982,Gorgeous Studio in Greenpoint with City Views,7503643,Vida,Brooklyn,Greenpoint,40.72749,-73.9406,Entire home/apt,129,30,0,,,52,5 +18330221,Williamsburg Apartment,22089161,Monika,Brooklyn,Williamsburg,40.71871,-73.94499,Entire home/apt,125,1,0,,,1,0 +18330346,Entire private top floor 3 bedroom apartment,327033,Marc,Brooklyn,Bushwick,40.69408,-73.92307,Entire home/apt,160,3,7,2017-08-29,0.26,2,23 +18331097,Tidy room separate entrance plus paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.75637,-73.81576,Private room,100,2,63,2019-07-08,2.37,10,335 +18331925,"Huge, Sunny 2 Bedroom Apt. near Prospect Park",1390999,Sarah,Brooklyn,Kensington,40.64632,-73.98343,Entire home/apt,110,40,0,,,1,118 +18332922,Spacious Apt in the LES,3859814,Alexandria,Manhattan,Lower East Side,40.72166,-73.98893,Entire home/apt,278,5,53,2019-06-15,2.01,1,30 +18338709,Room in Upper East Side!,15303279,Jinny,Manhattan,East Harlem,40.78858,-73.94947,Private room,100,1,1,2017-05-07,0.04,1,0 +18338719,Greenwich Village 2 bedrooms apartement,25221153,Mélodie,Manhattan,West Village,40.73376,-74.00095,Entire home/apt,350,3,0,,,1,0 +18340320,Spacious Studio in Hamilton Heights,81671685,Lesley,Manhattan,Harlem,40.81906,-73.95654,Entire home/apt,200,1,4,2019-06-24,0.15,1,365 +18340498,Private bedroom and bathroom near Prospect Park,33723491,Suzzanne,Brooklyn,Flatbush,40.65274,-73.95848,Private room,39,2,7,2017-09-29,0.27,1,0 +18340599,Your cozy home away from home.,66064924,Griffith,Brooklyn,East New York,40.65372,-73.8828,Private room,99,2,50,2019-05-27,1.92,1,180 +18341576,Spacious Sunlit 1 BR Apartment in Heart of Harlem,4213096,Jeff,Manhattan,Harlem,40.80355,-73.94647,Entire home/apt,110,30,3,2019-05-09,0.12,1,249 +18342361,"Romantic Artist's Townhouse, 1 suite: 2 Bd, 1 Bath",126922318,Emily,Manhattan,Upper West Side,40.78975,-73.97154,Private room,250,3,78,2019-06-27,2.93,1,246 +18342727,Comfy and Quiet Private Room in Brooklyn,33870377,Muath,Brooklyn,Bushwick,40.69432,-73.92035,Private room,199,4,2,2017-05-07,0.07,1,179 +18347330,Sunny One-Bedroom Apartment in Brooklyn,36678842,Danny,Brooklyn,Crown Heights,40.66939,-73.95832,Entire home/apt,150,3,2,2018-01-02,0.08,1,0 +18347469,Home Away from Home in Central Harlem,126973731,Andy,Manhattan,Harlem,40.82439,-73.94014,Private room,55,1,4,2017-05-21,0.15,1,0 +18348443,Songwriter Santuary - room with private entrance,26091462,Tanya,Brooklyn,Bedford-Stuyvesant,40.69374,-73.94764,Private room,60,1,3,2017-05-24,0.11,2,0 +18348512,NYC Hells Kitchen 51St ミッドタウンウエストサイド,126984603,Val &Yuko,Manhattan,Hell's Kitchen,40.76534,-73.9894,Private room,65,5,31,2019-07-06,1.20,1,54 +18353019,Spacious Comfy Queen Sized Bed.,40972641,Christopher,Queens,Fresh Meadows,40.74295,-73.78962,Private room,45,1,8,2017-09-01,0.30,2,0 +18354443,Spacious colorful East Village 2BR,12144814,Kosuke,Manhattan,East Village,40.729,-73.98195,Entire home/apt,150,30,3,2019-01-02,0.13,1,0 +18354821,Quiet and cozy,832695,Gloria And Dmitrii,Queens,Astoria,40.7648,-73.92081,Private room,50,1,6,2018-10-30,0.23,1,0 +18355480,Williamsburg Plant Filled Sunny Apartment :D,16718650,Joseph,Brooklyn,Williamsburg,40.71099,-73.95825,Private room,250,1,0,,,1,0 +18356695,Spacious 2-Bedroom Apartment Near Central Park,5143286,Ewa,Manhattan,Morningside Heights,40.80897,-73.95651,Entire home/apt,120,14,5,2018-08-23,0.21,1,79 +18357504,Spacious Brownstone Apartment,5454042,Ian,Brooklyn,Bedford-Stuyvesant,40.68874,-73.95684,Private room,54,2,14,2017-11-06,0.52,1,0 +18357865,Great 1 BR in the heart of the upper west side,3404698,Tal,Manhattan,Upper West Side,40.78693,-73.97558,Entire home/apt,150,30,1,2017-04-30,0.04,1,188 +18357947,"Cozy, private room in Williamsburg, Brooklyn!",8541180,Katie,Brooklyn,Williamsburg,40.70771,-73.95324,Private room,100,1,60,2019-06-19,2.25,1,78 +18358279,Luxury 2 Bedroom Apartment!!,44852596,Luna,Manhattan,Financial District,40.70468,-74.00722,Entire home/apt,130,3,19,2019-07-01,0.72,1,244 +18358343,Private room in the perfect location,127080012,Thor,Manhattan,Nolita,40.72477,-73.99534,Private room,95,4,25,2018-04-30,0.95,1,38 +18358363,Cozy Large Private Master bedroom,40532977,Johari,Brooklyn,Bedford-Stuyvesant,40.68017,-73.91379,Private room,36,30,15,2018-10-31,0.61,4,0 +18358437,"Clean, Modern Duplex Upper East Side with Patio",41869754,Yosef,Manhattan,Upper East Side,40.7839,-73.94823,Private room,115,2,36,2019-06-24,1.38,1,3 +18358470,Spacious 2 bedrooms Loft in Brooklyn,7503643,Vida,Brooklyn,Greenpoint,40.72564,-73.93989,Entire home/apt,199,30,3,2018-10-31,0.28,52,310 +18358606,Gorgeous Renovated 1BR - close to Central Park,122877644,Kate,Manhattan,East Harlem,40.79126,-73.94663,Entire home/apt,195,2,87,2019-06-20,3.29,1,213 +18358621,"LUXURY Times Sq 2bed, with King,Queen & Full",3169815,Joe,Manhattan,Hell's Kitchen,40.76438,-73.9886,Entire home/apt,350,1,96,2019-07-06,3.63,1,253 +18358644,Cozy room in the heart of Bushwick,127082964,Christopher,Brooklyn,Bushwick,40.70426,-73.92489,Private room,72,3,12,2018-04-22,0.47,2,0 +18359115,LOVELY APARTMENT IN BEST LOCATION !,43887030,Anastasia,Manhattan,Upper East Side,40.76765,-73.95507,Entire home/apt,145,10,4,2019-04-19,0.16,1,0 +18359426,Lovely room with a view.,82562435,Josephine,Queens,Arverne,40.58938,-73.79447,Private room,48,1,62,2019-04-12,2.35,2,3 +18359593,Private and Comfy Room | Super Close to NYC!,127092689,Heath,Brooklyn,Bedford-Stuyvesant,40.6924,-73.94825,Private room,35,20,0,,,1,0 +18360149,Welcome to brooklyn,34918098,ChiChi,Brooklyn,Prospect-Lefferts Gardens,40.66009,-73.94009,Private room,42,2,0,,,1,0 +18361045,Artist Open Concept Loft,11553221,Alex,Brooklyn,Downtown Brooklyn,40.69481,-73.98422,Entire home/apt,225,1,15,2019-05-27,0.59,1,87 +18361390,Huge 1-bedroom with lofts near Central Park,127113351,Maria,Manhattan,Upper West Side,40.77827,-73.97673,Entire home/apt,149,7,5,2018-09-01,0.21,1,10 +18362628,Sunny Lower East Side bedroom,22866591,Caroline,Manhattan,Lower East Side,40.7183,-73.98639,Private room,75,2,4,2017-07-19,0.16,1,0 +18366609,"COZY, QUIET BEDROOM IN INWOOD, ""UPSTATE MANHATTAN""",127164761,Christopher,Manhattan,Inwood,40.86689,-73.92353,Private room,46,1,14,2018-07-02,0.55,1,0 +18366942,Free transfer from JFK airport,127080164,Tauqir,Queens,Howard Beach,40.65411,-73.83191,Private room,100,2,0,,,1,0 +18369169,"☆☆Hell's Kitchen, Central Park, Times Square☆☆",32044305,Mark,Manhattan,Hell's Kitchen,40.76217,-73.98765,Private room,130,4,91,2019-07-01,3.42,1,254 +18369887,Sunny & Spacious 1 Bedroom in Central Harlem!,2946771,Kara,Manhattan,East Harlem,40.8136,-73.93606,Entire home/apt,150,2,39,2019-05-27,1.48,1,0 +18370699,Spacious Greenpoint Apt near McGolrick Park!,36883838,Monika,Brooklyn,Greenpoint,40.72211,-73.94215,Entire home/apt,145,2,20,2019-06-26,0.76,1,98 +18370979,"Comfy, Awesome, Large Apt. in Brownstone",127196839,Nicky,Brooklyn,Clinton Hill,40.68805,-73.96114,Private room,95,2,45,2019-06-15,2.11,1,43 +18371333,Beautiful and Sunny Private Room in Brooklyn,7496038,Sebastian,Brooklyn,Bushwick,40.69306,-73.91918,Private room,49,2,24,2019-06-09,0.91,1,0 +18372104,"Luxury 2 BR Apartment, Columbus Circle",127218433,Caroline,Manhattan,Upper West Side,40.76989,-73.98229,Entire home/apt,220,30,4,2018-12-15,0.16,1,124 +18373279,Airy and Bright Sanctuary in Brooklyn!,8221838,Jooin,Brooklyn,Fort Greene,40.68812,-73.97545,Entire home/apt,200,30,1,2018-09-02,0.10,1,188 +18373404,Little Haven in Brooklyn Redeux,14588919,Allison,Brooklyn,Bedford-Stuyvesant,40.68017,-73.95182,Entire home/apt,150,1,131,2019-06-22,4.96,1,185 +18374250,"Cozy, private bdrm",66961768,Duanne,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93747,Private room,30,1,9,2017-09-19,0.34,1,0 +18374647,Maison Macon,88734376,Lena,Brooklyn,Bedford-Stuyvesant,40.68064,-73.9463,Private room,187,2,31,2019-06-23,2.69,1,35 +18375021,Huge private room in historic brownstone,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68408,-73.92498,Private room,85,28,9,2019-04-30,0.35,4,189 +18375246,Private Room in Clinton Hill,127250455,Laura,Brooklyn,Bedford-Stuyvesant,40.69234,-73.95993,Private room,54,2,8,2018-07-29,0.30,1,0 +18375685,"Beautiful, Two bedroom apartment Brooklyn P.L.G",76225580,Gary,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95144,Entire home/apt,175,2,104,2019-07-07,4.00,2,168 +18375815,Spacious private room close St. Barnabas Hospital,127249880,Emma,Bronx,Tremont,40.84647,-73.89299,Private room,38,2,33,2019-05-28,1.27,2,327 +18377036,"Bright, Beautiful Double Room",13649613,"Rossy, Carmen And Juan",Bronx,University Heights,40.85487,-73.91391,Private room,53,3,55,2019-05-27,2.15,4,80 +18381623,Luminous Zen Garden Retreat,23036053,Terrence,Manhattan,East Village,40.72908,-73.9797,Private room,145,4,64,2019-06-29,2.46,1,136 +18385188,"Brooklyn Modern: Sunny 2BR, Boutique Style",127341412,Melissa,Brooklyn,Gowanus,40.6701,-73.98917,Entire home/apt,173,2,100,2019-07-07,3.88,1,18 +18386105,"A Special Place for You! Bed-Stuy, Brooklyn",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68435,-73.94135,Entire home/apt,150,3,40,2019-07-02,1.60,3,170 +18386307,"Sunny, Chelsea Studio has queen bed and sleep loft",7245581,Michael,Manhattan,Chelsea,40.74988,-73.99553,Entire home/apt,89,110,6,2019-05-25,0.26,19,332 +18386494,Sunny 2+ bd. Great for groups. Very kid friendly.,17930,Seryn,Brooklyn,Windsor Terrace,40.65319,-73.97621,Entire home/apt,200,2,100,2019-06-24,3.78,2,244 +18386915,"Sunny Studio in Park Slope, Brooklyn",32706119,Shanee,Brooklyn,Park Slope,40.66989,-73.98757,Entire home/apt,120,2,86,2019-06-10,3.24,2,185 +18387366,Bright & Airy Private Room near L/JMZ trains,88314328,Leah,Brooklyn,Bushwick,40.70341,-73.9292,Private room,54,2,3,2017-10-29,0.14,1,0 +18387744,Bright-Friendly-Homey apartment,47550622,Maryam,Brooklyn,Crown Heights,40.66862,-73.94664,Private room,50,1,6,2017-08-26,0.23,1,0 +18387798,COZY + STYLISH ROOM FOR YOU IN NYC! (A),126929216,Mel,Brooklyn,Crown Heights,40.67102,-73.93999,Private room,45,14,10,2019-06-07,0.42,3,322 +18388152,EXTRA LARGE PRIVATE BEDROOM! TRIPLE SIZE CLOSET(B),126929216,Mel,Brooklyn,Crown Heights,40.67051,-73.94014,Private room,59,15,3,2019-05-31,0.16,3,311 +18388706,Nice 2 bedroom in Upper West / Central Park.,18767676,Mike,Manhattan,Upper West Side,40.79864,-73.96364,Entire home/apt,149,3,0,,,1,0 +18389694,2 bedroom LES,43107610,Kate,Manhattan,Lower East Side,40.71933,-73.99,Entire home/apt,142,4,2,2017-04-30,0.07,1,187 +18390143,"Huge Room, Top Floor Of Brownestone",91167002,Alyson,Manhattan,Hell's Kitchen,40.76537,-73.98855,Private room,120,2,32,2019-06-13,1.25,3,90 +18390316,Private bedroom in Luxury home Bushwick,126632094,Faith,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9341,Private room,70,2,13,2019-04-23,0.49,2,0 +18390907,"Sun-soaked, charming Brooklyn home",3695964,Elie,Brooklyn,Bedford-Stuyvesant,40.68741,-73.95582,Entire home/apt,200,1,37,2019-06-14,1.53,1,5 +18391905,"Huge, One of A Kind, Artsy Loft in Greenpoint",501456,Aaron,Brooklyn,Greenpoint,40.73312,-73.95754,Entire home/apt,299,2,76,2019-06-23,3.11,4,0 +18392140,Sun-lit bedroom in Crown Heights,2828476,Masha,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.94885,Entire home/apt,80,14,1,2017-07-01,0.04,1,0 +18392309,Gem off of Prospect Park,7426741,Johanna,Brooklyn,Windsor Terrace,40.65044,-73.97296,Private room,60,2,3,2017-07-02,0.12,1,0 +18393354,Midtown Sanctuary,2845,Jennifer,Manhattan,Midtown,40.75358,-73.9919,Shared room,99,1,1,2018-07-18,0.08,2,365 +18393650,Spacious 1 Br - Perfect for Share - Columbia Uni,18784994,Raymond Yueran,Manhattan,Upper West Side,40.80333,-73.96693,Private room,60,14,0,,,1,0 +18393805,Private Room 15 Min to Manhattan (Lower East Side),127412674,Charles,Brooklyn,Bedford-Stuyvesant,40.69944,-73.94527,Private room,46,2,71,2019-06-18,2.69,2,309 +18394653,Brooklyn Paradise,44140036,Ricardo,Brooklyn,East Flatbush,40.65062,-73.93487,Private room,60,2,20,2019-04-01,0.81,2,190 +18396197,Two Bed Brownstone in the Heart of Brooklyn!,23722638,Laura,Brooklyn,Carroll Gardens,40.6845,-73.99024,Entire home/apt,175,4,4,2017-12-26,0.16,2,0 +18396281,Charming Sunny Oasis - 1 Block From Express Train!,228252,Kathleen,Manhattan,Harlem,40.82452,-73.94512,Private room,75,14,7,2018-09-30,0.29,2,310 +18397006,Single room,127449170,Lehui,Queens,Flushing,40.75562,-73.80813,Private room,180,1,0,,,1,0 +18397124,WaHi Overlook,127450854,Cesar,Manhattan,Washington Heights,40.84662,-73.93436,Private room,70,1,23,2019-04-28,0.87,1,138 +18399865,Best East Village location St Marks 2 bedroom apt.,2552603,Derek,Manhattan,East Village,40.72681,-73.98401,Entire home/apt,190,1,105,2019-06-13,3.97,1,306 +18402330,Airy and Bright Room with Balcony,33434914,Juan,Bronx,Parkchester,40.82942,-73.87564,Private room,60,2,89,2019-07-07,3.36,4,30 +18402568,A Modern and bright room,33434914,Juan,Bronx,Parkchester,40.83081,-73.87587,Private room,45,2,74,2019-07-02,2.89,4,34 +18404373,"Bright kitchen studio--events, classes, photos",10593759,Ronna,Brooklyn,Sunset Park,40.65107,-74.01096,Entire home/apt,450,1,5,2018-12-24,0.27,1,179 +18404432,2 bedroom apartment & private backyard,104170260,Lauren,Queens,Astoria,40.76736,-73.91685,Entire home/apt,99,4,1,2017-07-09,0.04,1,0 +18404936,Location! Location!,63417081,Devon,Manhattan,Harlem,40.82359,-73.94433,Private room,37,30,4,2018-07-15,0.18,8,291 +18406606,The Albany Residence,35387196,Kizzie,Brooklyn,Crown Heights,40.67139,-73.93931,Entire home/apt,100,7,1,2018-08-16,0.09,4,78 +18407251,Entire MASSIVE apt. for 4 ppl 1 Block from Subway,10335937,Eva,Queens,Forest Hills,40.72571,-73.84944,Entire home/apt,197,3,24,2018-04-06,0.90,1,0 +18407764,Sunlit cozy room in the heart of Williamsburg!,31681589,Shanise,Brooklyn,Williamsburg,40.70882,-73.95445,Private room,90,2,4,2017-05-08,0.15,1,0 +18408236,All New! Vanderbilt Suite,124287074,Chaya,Brooklyn,Prospect Heights,40.6809,-73.96726,Entire home/apt,188,2,59,2019-06-14,2.25,1,28 +18409148,Greenwich Village Apartment,20242206,Andrei,Manhattan,Greenwich Village,40.72827,-74.00083,Entire home/apt,110,10,2,2017-05-07,0.08,1,0 +18410069,Sunny Brooklyn Limestone,7934771,Antoinette,Brooklyn,Flatbush,40.64246,-73.9538,Entire home/apt,175,7,3,2019-02-18,0.47,1,0 +18410445,Large Room and Apartment in Upper Manhattan,63408461,Diane,Manhattan,Washington Heights,40.84745,-73.94116,Private room,100,2,102,2019-06-17,3.84,1,213 +18411056,Wonderful living in 3B/3B Harlem Brownstone Duplex,127567480,Paulina,Manhattan,Harlem,40.83099,-73.9444,Entire home/apt,295,1,52,2019-07-07,5.05,1,256 +18411446,NEW! Luxury studio WITH SPA shower in Flushing!!!,10366837,Jia,Queens,Flushing,40.75763,-73.83157,Entire home/apt,99,2,88,2019-06-23,3.38,3,120 +18411925,Comfy Private Room Near Central Park in UWS,38886949,Nishant,Manhattan,Upper West Side,40.79872,-73.96173,Private room,70,1,1,2017-05-04,0.04,2,0 +18412771,Great room for students and tourists,127583166,Maite,Manhattan,Washington Heights,40.8398,-73.94384,Private room,55,21,8,2018-11-18,0.52,2,38 +18414310,Cozy Room Easy Access To Manhattan - Room #3,72603148,Faye,Staten Island,Stapleton,40.6348,-74.07734,Private room,65,1,37,2019-04-15,1.41,3,356 +18415505,Stylish Apartment with beautiful skyline views.,11191325,Daniel,Manhattan,Harlem,40.81253,-73.93952,Entire home/apt,99,5,35,2019-04-30,1.32,1,1 +18415952,Convenient Downtown Apartment in LES/Chinatown,39619320,Grisha,Manhattan,Chinatown,40.71495,-73.99056,Private room,60,1,6,2017-06-29,0.23,1,0 +18423707,One bedroom in Kips Bay / Murray Hill area,15786933,Eddie,Manhattan,Midtown,40.74559,-73.98216,Entire home/apt,259,7,0,,,1,0 +18423938,"West 74th Street, Svcd Studio Apartment",22541573,Ken,Manhattan,Upper West Side,40.78081,-73.98081,Entire home/apt,159,30,0,,,87,342 +18424903,Luxury Townhouse,2948325,Ray,Manhattan,East Harlem,40.79737,-73.93185,Entire home/apt,300,3,53,2019-06-30,2.03,1,104 +18424928,Beautiful 2 bedroom apartment in Park Slope!,1507779,Lara,Brooklyn,South Slope,40.66399,-73.98301,Entire home/apt,210,3,5,2019-03-08,0.21,2,3 +18425106,"Washington Street, Lux Svcd Studio in West Village",22541573,Ken,Manhattan,SoHo,40.72948,-74.00961,Entire home/apt,195,30,1,2019-03-10,0.25,87,365 +18425988,Cozy Studio in Gramercy,92634775,Joe,Manhattan,Gramercy,40.73433,-73.98216,Entire home/apt,96,1,3,2017-05-16,0.11,1,0 +18427825,Cozy Brooklyn Affordable In-Law,127539184,Yuna,Brooklyn,East Flatbush,40.64896,-73.94317,Entire home/apt,80,3,38,2019-06-23,1.45,2,78 +18429093,Cozy one bed with balcony and pool,113805886,Yaacov,Manhattan,Upper East Side,40.77822,-73.95136,Entire home/apt,160,31,7,2019-04-10,0.29,33,330 +18429435,Modern & Industrial LIC Accommodations,127560222,Christina,Queens,Long Island City,40.75538,-73.93455,Private room,199,1,6,2019-05-24,0.26,2,53 +18430588,A Quiet stay in Harlem,63417081,Devon,Manhattan,Harlem,40.8236,-73.94412,Private room,35,30,7,2019-05-12,0.28,8,78 +18430686,Private bedroom in an amazingly located apartment.,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.7627,-73.98837,Private room,80,3,42,2019-05-30,1.58,3,172 +18431566,Summer Sublet,38721832,Marissa,Manhattan,East Harlem,40.78908,-73.94216,Private room,35,1,0,,,1,0 +18432636,Great Apartment in the Heart of East Williamsburg,107778395,Alexander,Brooklyn,Williamsburg,40.71188,-73.94387,Private room,55,5,9,2018-12-04,0.34,1,20 +18432894,Casa Estrella,6455775,Monica,Brooklyn,Bushwick,40.70679,-73.92295,Entire home/apt,207,2,78,2019-06-02,3.06,1,231 +18433038,Private Cozy Room In Astoria,127762325,Zee,Queens,Ditmars Steinway,40.7742,-73.90808,Private room,59,1,77,2019-06-06,2.97,1,198 +18433781,"Large, Sunny Private Room in New Renovated House",54548000,Danny,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92524,Private room,75,1,70,2019-06-21,2.79,2,220 +18434309,private room LONG Term Welcome Safe neighborhood,25473311,Michael,Queens,Sunnyside,40.73702,-73.92657,Private room,49,7,4,2018-04-29,0.19,2,90 +18439203,Brooklyn Beauty!!,127814176,Erica,Brooklyn,East New York,40.66556,-73.88323,Entire home/apt,115,2,118,2019-07-01,4.47,1,121 +18440017,Uptown Private Bedroom w/ Pvt Entrance & Full Bath,75973505,Jeanette,Manhattan,Washington Heights,40.86027,-73.9264,Private room,40,2,3,2019-01-02,0.42,1,276 +18442048,Clean-N-Comfy Bronx Pad,25385574,Che,Bronx,Allerton,40.86718,-73.86235,Private room,33,1,0,,,1,179 +18442196,Room private house. Parking and beach 15 min.,121419684,Gregory,Brooklyn,Gravesend,40.58654,-73.98858,Private room,199,3,0,,,1,363 +18442569,"Artsy, bright and cozy 1 BR. 20 min to city.",6198836,Dima,Brooklyn,Bushwick,40.70159,-73.92115,Entire home/apt,93,30,1,2017-06-24,0.04,1,45 +18443902,Delightfully appointed studio in the West Village,11586111,Christina,Manhattan,West Village,40.73075,-74.00222,Entire home/apt,159,4,6,2017-08-12,0.23,1,0 +18444575,"Bright, open 1BD in the heart of Nolita",5945526,Mimi,Manhattan,Little Italy,40.72002,-73.99629,Entire home/apt,150,3,12,2019-01-01,0.47,1,0 +18445522,MANHATTAN STYLISH WALL ST STUDIO APT. DISCOUNTED,14664356,Dan,Manhattan,Financial District,40.7049,-74.00617,Entire home/apt,86,70,5,2019-06-01,0.22,1,203 +18447712,Artist Loft Space,127886968,Steve,Brooklyn,Bushwick,40.70351,-73.93092,Private room,75,1,0,,,1,0 +18448376,Clean and cozy private room for your stay in NYC,11308807,Mathew,Manhattan,Harlem,40.82389,-73.95266,Private room,57,2,0,,,2,0 +18448446,Super Spacious 2 bedroom apt in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76442,-73.99458,Entire home/apt,200,30,1,2018-04-30,0.07,31,330 +18448516,Spacious house close to yankee stadium.,127895318,Emmanuel,Bronx,Mount Hope,40.84992,-73.90346,Private room,50,1,6,2018-05-05,0.23,1,0 +18448556,Pretty UES Private Room in Railroad Style Apt,115529602,Patrick,Manhattan,Upper East Side,40.77409,-73.94995,Private room,120,2,9,2018-05-07,0.35,1,0 +18449942,The Space,127911754,Christopher,Manhattan,Inwood,40.8637,-73.92826,Entire home/apt,100,2,0,,,1,0 +18449954,Delightful Brooklyn Studio,127910599,Joy,Brooklyn,Crown Heights,40.67757,-73.94913,Entire home/apt,90,31,62,2019-06-20,2.38,1,269 +18450009,"Welcoming, Plant-Filled Master BR in Clinton Hill",36457711,Hannah,Brooklyn,Clinton Hill,40.6913,-73.96099,Private room,50,2,3,2018-05-13,0.12,2,0 +18450143,Entire Pre-War Apartment 1 Minute From Train,127721863,Machel,Brooklyn,Flatbush,40.62934,-73.96343,Entire home/apt,100,3,62,2019-05-19,2.37,1,108 +18450490,"Clean, homey, and bright room in Wash. Heights",127917641,Kasey,Manhattan,Washington Heights,40.84257,-73.93805,Private room,35,30,1,2017-07-31,0.04,1,0 +18455236,Modern 1 Bedroom In the Middle of Everything!,3470710,Michael,Brooklyn,Williamsburg,40.70294,-73.94152,Entire home/apt,94,2,29,2019-06-23,1.10,1,1 +18455830,Charming 2 bedroom apartment in Brooklyn,60160069,Tatiana,Brooklyn,Bushwick,40.69063,-73.91224,Entire home/apt,190,3,42,2019-05-20,1.62,1,303 +18456751,Spacious Sun-Drenched bedroom in the East Village!,70334862,Nadja,Manhattan,East Village,40.72598,-73.98934,Private room,86,3,1,2017-10-08,0.05,1,0 +18456975,Fully furnished Studio Apt near Columbus Circle,30283594,Kara,Manhattan,Midtown,40.76547,-73.98216,Entire home/apt,199,30,0,,,121,189 +18457273,"Clean and Cozy Private Room in Inwood, Manhattan",17420574,Kayleigh,Manhattan,Inwood,40.8677,-73.9225,Private room,55,2,4,2017-05-29,0.15,1,0 +18458323,Sun Drenched Gramercy/East Village!,68274298,Chelsea,Manhattan,Gramercy,40.73401,-73.9814,Entire home/apt,226,2,15,2017-12-18,0.58,1,0 +18459547,Dumbo Penthouse Loft with Outdoor Spaces & Views,1349266,Adam,Brooklyn,Vinegar Hill,40.70369,-73.98306,Entire home/apt,186,30,1,2019-06-11,1,1,1 +18459948,Cozy East Village Studio,127998381,Mia,Manhattan,East Village,40.72724,-73.98291,Entire home/apt,170,7,9,2018-08-21,0.35,1,0 +18460119,Private Room in Homey Roosevelt Island Apartment,127999994,Kate,Manhattan,Roosevelt Island,40.76208,-73.94954,Private room,100,2,85,2019-06-30,3.28,1,211 +18460679,"Bright, modern room with a view of NYC skyline",14666091,Joonas,Brooklyn,Bushwick,40.70028,-73.92439,Private room,90,5,16,2019-06-24,0.61,1,37 +18460756,"Bright, private room in Bushwick w/ AC",128004958,Virginia,Brooklyn,Bushwick,40.68717,-73.91708,Private room,50,1,100,2019-06-23,4.03,1,2 +18461296,Great Location TimeSquare studio APT,116848523,Brian,Manhattan,Hell's Kitchen,40.76341,-73.99051,Entire home/apt,119,1,12,2017-07-01,0.45,1,0 +18461891,"Bright, comfortable 1B studio near everything!",916092,Connie Mae,Queens,Ditmars Steinway,40.77414,-73.91625,Entire home/apt,110,6,0,,,1,0 +18462291,Comfortable One bedroom Harlem Aprt,57900598,Lyvan Esteban,Manhattan,Harlem,40.81752,-73.94162,Entire home/apt,80,2,40,2019-06-30,1.51,1,0 +18462681,Private room walking distance from Prospect park,30555297,Jolanta,Brooklyn,Flatbush,40.65306,-73.95507,Private room,64,7,17,2018-11-05,0.72,1,0 +18462718,Neat Cozy room attached by PRIVATE FULL BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75556,-73.81205,Private room,47,2,79,2019-06-18,3.15,10,346 +18463609,Spring in Bed Stuy,31315421,Angela,Brooklyn,Bedford-Stuyvesant,40.68257,-73.9279,Entire home/apt,100,2,77,2019-06-21,2.96,1,277 +18470545,Comfy & Cozy In Brooklyn,38120363,Brian,Brooklyn,Crown Heights,40.67238,-73.91488,Private room,49,2,39,2019-05-03,1.53,2,84 +18471232,Brooklyn Home away from Home,4894044,Azzie,Brooklyn,Crown Heights,40.66515,-73.95186,Private room,100,1,28,2019-06-24,1.92,1,88 +18471276,Cozy bedroom off J Train,122294799,Jenny,Brooklyn,Bedford-Stuyvesant,40.69178,-73.92838,Private room,47,1,4,2017-06-09,0.15,1,0 +18471556,Beautiful Artist Loft in South Williamsburg,82665319,Paul,Brooklyn,Williamsburg,40.7126,-73.96347,Entire home/apt,150,3,4,2017-09-25,0.15,1,0 +18471815,Cozy Corner,42951693,Kevin,Manhattan,Morningside Heights,40.8151,-73.96091,Private room,43,2,0,,,1,0 +18472494,The Grand Macon,60077252,Sumaiya,Brooklyn,Bedford-Stuyvesant,40.68248,-73.93317,Entire home/apt,165,4,67,2019-06-22,2.66,1,74 +18472524,SUNNY PLACE in Sunnyside,78272395,Vadim,Queens,Sunnyside,40.73674,-73.9136,Private room,70,3,8,2017-06-18,0.30,1,0 +18473439,Remodeled 20min train to enter city 5min to subway,20438455,Jason,Brooklyn,Borough Park,40.63952,-73.98205,Private room,49,2,126,2019-07-05,4.82,2,45 +18475187,BEST ROOF in East Village + Gorgeous Modern Apt,639926,Loren,Manhattan,East Village,40.72603,-73.97717,Entire home/apt,199,3,10,2019-01-02,0.43,1,0 +18476474,Bright XL room in Hamilton Heights/Sugar Hill,98861076,Peter & Gabe,Manhattan,Harlem,40.82444,-73.94525,Private room,90,2,136,2019-07-02,5.13,1,204 +18476851,Beautiful Private Room Near Manhattan & JFK,106430338,Alana,Brooklyn,Bensonhurst,40.61277,-73.99695,Private room,60,3,43,2019-06-13,1.65,2,173 +18477009,The Justice Tower 1,38068387,Xolie,Brooklyn,Clinton Hill,40.6929,-73.96657,Private room,125,2,5,2017-08-28,0.19,4,350 +18477226,The Justice Tower 2,38068387,Xolie,Brooklyn,Clinton Hill,40.69455,-73.96763,Private room,100,2,11,2017-10-15,0.43,4,347 +18477519,Cozy one bedroom apartment in the Lower East Side,9667737,Hadas,Manhattan,Lower East Side,40.71862,-73.9836,Entire home/apt,80,14,1,2018-03-01,0.06,1,0 +18481196,Studio in Chelsea,1750685,Shayan,Manhattan,Chelsea,40.74569,-73.99687,Entire home/apt,200,1,12,2019-03-06,0.60,1,8 +18484597,Private and quiet room near Columbia University,8594019,Jose Vicente,Manhattan,Morningside Heights,40.81651,-73.95924,Private room,50,5,1,2017-05-23,0.04,2,0 +18485393,Enormous studio in East Harlem,128244964,Camille,Manhattan,East Harlem,40.79921,-73.9387,Entire home/apt,185,1,0,,,1,0 +18485487,"Sunny, Spacious, Private Room Close to Train!",3083244,Melody,Manhattan,Washington Heights,40.83716,-73.94048,Private room,37,7,1,2017-05-25,0.04,1,0 +18485922,Large & Cozy One-Bedroom Apartment in Queens,12700569,Mikanny,Queens,Jackson Heights,40.75292,-73.88129,Entire home/apt,135,6,2,2019-01-02,0.11,1,195 +18486698,Conveniently located private room in Brooklyn,81712146,Emanuele,Brooklyn,Bushwick,40.70113,-73.91385,Private room,50,1,9,2017-07-03,0.34,1,0 +18486868,Sunny 1 bedroom in spacious 2 bedroom apt.,13929469,Jessica,Brooklyn,Crown Heights,40.66364,-73.95725,Private room,60,30,21,2019-05-08,0.81,1,1 +18487817,Spacious private room in a 3br in Bushwick,17381128,Arielle,Brooklyn,Bushwick,40.68644,-73.91064,Private room,40,7,0,,,1,0 +18488077,Simple bright room for 1-2 people.,1540270,Ava,Brooklyn,Bushwick,40.69983,-73.91625,Private room,40,3,7,2017-06-01,0.26,1,12 +18488335,Sunny Duplex 2 bdr apt in the heart of Harlem,12293403,Joffrey,Manhattan,Harlem,40.8125,-73.94151,Entire home/apt,85,3,35,2019-06-23,1.36,2,40 +18488833,Sunny Parlor Apt in Flatbush Townhouse (furnished),10285950,Christina,Brooklyn,Flatbush,40.64493,-73.95488,Entire home/apt,85,6,14,2019-03-24,0.53,3,339 +18489366,Glamorous one bedroom apartment in Brooklyn,4775716,Foster,Brooklyn,Prospect Heights,40.67696,-73.96669,Entire home/apt,165,2,21,2019-06-29,3.73,1,146 +18489843,Heart of Greenpoint,4193618,Gustavo,Brooklyn,Greenpoint,40.72995,-73.95498,Entire home/apt,200,15,3,2017-09-03,0.12,1,342 +18490141,IT'S SIMPLY CONVENIENT!,97001292,Maria,Queens,Jamaica,40.69085,-73.79916,Entire home/apt,10,1,43,2019-06-12,1.68,1,252 +18491689,Piece of home in the East Village,128307950,Nigel,Manhattan,East Village,40.72588,-73.98827,Entire home/apt,134,2,0,,,1,0 +18493375,Shared flat in Bushwick. Bright & close to train.,36012265,Ada,Brooklyn,Williamsburg,40.70506,-73.93122,Private room,60,1,8,2019-01-01,0.36,7,31 +18496255,Beautiful Park-view Home in Flushing NYC,23234988,Ann,Queens,Flushing,40.74888,-73.8066,Entire home/apt,400,1,8,2019-03-29,0.34,6,255 +18496331,Lofty Living: Private Room,21680683,Jenny,Brooklyn,Williamsburg,40.7199,-73.95828,Private room,124,1,5,2019-05-11,0.20,2,111 +18496902,Lovely Clinton Hill Home Away From Home,4350083,Valéry Blake,Brooklyn,Clinton Hill,40.68367,-73.95982,Private room,75,2,1,2017-05-08,0.04,1,0 +18498466,Sunny Duplex Oasis: 2 Bath+Roof—Williamsburg Loft,510745,Justin,Brooklyn,Williamsburg,40.71555,-73.94842,Entire home/apt,106,2,20,2019-06-09,0.76,2,0 +18499050,Sunny Garden Apt in Historic Park Slope Brownstone,351465,Dasha,Brooklyn,Park Slope,40.67855,-73.97583,Entire home/apt,190,4,60,2019-06-26,2.29,1,155 +18499074,Cozy spacious rooms with natural sunlight,127714840,Guy,Brooklyn,Bedford-Stuyvesant,40.68144,-73.93429,Private room,80,5,11,2019-06-30,0.90,1,340 +18500556,Fully renovated beautifully furnished two bedroom,128385204,Ronen,Brooklyn,Sheepshead Bay,40.59339,-73.94296,Private room,199,1,0,,,1,0 +18500972,Spacious 1 BR/1 Bath in Ridgewood,30157754,Jeanette,Queens,Ridgewood,40.6991,-73.89796,Entire home/apt,60,7,0,,,1,0 +18502246,Private Room in Sunny Beautiful Kosher Apartment,106272021,Esther,Brooklyn,East Flatbush,40.66182,-73.93748,Private room,50,2,21,2019-05-19,0.83,3,31 +18503701,Oriental Room in Upper Manhattan near Central Park,128413939,Alfred And Lau,Manhattan,Harlem,40.80584,-73.95272,Private room,78,3,88,2019-06-22,3.36,1,189 +18503779,Spacious Bohemian Duplex 1BR E Wburg Yard Roof,128414475,Nitya,Brooklyn,Williamsburg,40.70728,-73.92989,Private room,79,1,11,2017-08-18,0.42,3,0 +18503789,Private room in a privately own 3 story brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.6911,-73.93691,Private room,75,4,8,2019-03-01,0.32,3,0 +18504151,Seaport Water Front Private Studio,128417181,Rachel,Manhattan,Financial District,40.70766,-74.00153,Private room,205,2,41,2019-06-22,1.56,1,308 +18504631,convenient location 1 min walk to bus station,5828830,Low,Queens,Jamaica,40.67365,-73.76502,Private room,50,7,11,2018-10-03,0.44,2,0 +18505453,Studio Apartment in UWS,90846964,Allison,Manhattan,Upper West Side,40.79264,-73.97481,Entire home/apt,99,1,7,2017-05-28,0.26,1,0 +18505594,"Cozy, Light-Filled Room in Brooklyn",31658624,Megan E,Brooklyn,Crown Heights,40.66998,-73.9396,Private room,44,3,104,2019-03-29,4.00,2,0 +18506292,Ultra Lux Central Park/ Columbus Circle 2 bedroom,10605984,Gab,Manhattan,Upper West Side,40.76798,-73.98356,Entire home/apt,615,5,46,2019-06-18,1.78,1,282 +18506359,"Luxurious, Spacious Loft in Williamsburg",123953239,Philippe,Brooklyn,Williamsburg,40.71058,-73.96402,Entire home/apt,260,2,34,2019-06-14,1.31,2,330 +18506841,SPACIOUS MANHATTAN TOWNHOUSE 2BR Apt Sleeps 6,75279920,Anitra And Steven,Manhattan,Harlem,40.80833,-73.95101,Entire home/apt,275,3,89,2019-07-02,3.41,1,96 +18507671,Shared room at Lincoln Center,5440952,Ryan,Manhattan,Upper West Side,40.77244,-73.98204,Shared room,75,30,0,,,1,0 +18507990,Cozy One Bedroom in a Private House.Safe & Quite.,38604449,Pasang,Queens,Woodside,40.75558,-73.90534,Private room,45,2,30,2019-01-01,1.23,2,242 +18508209,Charming Bedroom,1635983,Sheila,Bronx,Schuylerville,40.83018,-73.83413,Private room,42,4,22,2019-06-25,1.18,3,147 +18508470,Adorable Cozy room with lots of light,33434914,Juan,Bronx,Parkchester,40.83117,-73.87566,Private room,43,2,71,2019-07-02,2.71,4,59 +18508959,Lovely 2 bdr apartment Williamsburg w private yard,18280205,Anthony,Brooklyn,Williamsburg,40.71463,-73.95501,Entire home/apt,200,2,32,2019-06-16,1.25,1,8 +18510340,Sunny Upper East Side Studio,112081278,Donny,Manhattan,Upper East Side,40.7802,-73.94652,Entire home/apt,79,4,5,2019-04-07,0.19,1,128 +18515889,Amazing room w/ private bathroom in hip Bushwick!,128517263,Alina,Brooklyn,Bushwick,40.69945,-73.93667,Private room,70,10,4,2019-01-02,0.17,3,44 +18516072,CENTRAL PARK WEST BRIGHT AND SPACIOUS,671187,Mike,Manhattan,Upper West Side,40.80034,-73.95941,Private room,139,31,0,,,1,83 +18516103,Cosy place in the West Village,128210772,Max,Manhattan,West Village,40.73096,-74.00406,Private room,100,4,1,2017-05-19,0.04,1,0 +18517584,Amazing 2-bdrm apartment in Greenpoint with garden,550009,Jenya,Brooklyn,Greenpoint,40.72215,-73.94203,Entire home/apt,137,4,0,,,1,0 +18518678,"Dreamy, sun-filled South Harlem 1 bed!",371654,Emily,Manhattan,Morningside Heights,40.80264,-73.95921,Private room,175,5,2,2017-06-10,0.08,1,0 +18519818,Sunny Bedroom in Prospect Park South,8821726,Marissa,Brooklyn,Flatbush,40.64909,-73.9648,Private room,40,2,12,2019-06-23,0.47,1,0 +18520516,Rare Designer-Decorated Loft in Prime Williamsburg,19355895,Nicolas,Brooklyn,Williamsburg,40.71625,-73.96407,Entire home/apt,300,4,11,2019-06-09,0.44,1,94 +18521860,Skylight Suite on Park Block,7797101,Athena,Brooklyn,Park Slope,40.66832,-73.97662,Entire home/apt,180,2,67,2019-07-02,2.88,1,289 +18522181,Beautiful in Brooklyn - Perfect for Groups!,106454216,Steven,Brooklyn,Bushwick,40.68827,-73.91815,Entire home/apt,180,2,54,2019-06-24,2.15,2,308 +18522547,Stunning And Stylishly Furnished Apt In Bushwick,128424841,Oscar,Brooklyn,Bushwick,40.69364,-73.91499,Entire home/apt,149,1,30,2019-06-17,1.13,1,284 +18523182,Cozy private room in a two-bedroom apartment,57060982,Carolina,Brooklyn,Bedford-Stuyvesant,40.68473,-73.94799,Private room,58,1,17,2019-05-26,0.65,1,0 +18523629,"Spacious, sunny, stylish FAMILY 3-bed, 2-bath apt!",3413858,Mia,Brooklyn,Flatbush,40.64217,-73.9593,Entire home/apt,125,20,0,,,1,4 +18523918,Peaceful sunny flat with backyard,49562545,Ella,Brooklyn,Williamsburg,40.70999,-73.94807,Entire home/apt,235,1,57,2019-06-27,7.04,2,228 +18525915,Cozy 2 Bed 1 Bath Amazing Location With Balcony,113805886,Yaacov,Manhattan,Upper East Side,40.77878,-73.94993,Entire home/apt,206,31,2,2019-03-03,0.35,33,327 +18526162,Gone with the Wind,75360607,Fernando,Queens,Sunnyside,40.74215,-73.92633,Entire home/apt,199,5,91,2019-06-21,3.48,2,57 +18527060,Cozy bedroom in Bed stuy!,39652113,Kaitlin,Brooklyn,Bedford-Stuyvesant,40.69227,-73.94159,Private room,40,28,6,2019-04-30,0.32,1,197 +18527437,Spacious One bedroom in Hip Bushwick Brooklyn,2266961,Florian,Queens,Ridgewood,40.69942,-73.90968,Entire home/apt,120,3,3,2018-01-03,0.12,1,0 +18535402,Cozy room in Bayside Queens,21250331,Clara,Queens,Bayside,40.75444,-73.76938,Private room,38,1,86,2019-06-20,4.19,3,346 +18540170,Great room across the street from the High bridge,128692351,Nahuel,Bronx,Highbridge,40.84289,-73.92688,Private room,100,2,107,2019-06-14,4.12,5,344 +18540856,Beautiful Brooklyn Brownstone,3063938,Chuck And Ellen,Brooklyn,Bedford-Stuyvesant,40.68952,-73.94519,Entire home/apt,100,6,18,2018-07-07,0.69,1,0 +18541736,Charming Greenwich Village Oasis,4914270,Andrew,Manhattan,West Village,40.73107,-74.00163,Entire home/apt,175,4,1,2017-06-11,0.04,1,0 +18542490,Brownstone Parlor in Crown Heights,386263,Vineet,Brooklyn,Crown Heights,40.6764,-73.95497,Entire home/apt,171,3,61,2019-07-01,2.59,2,267 +18543045,Room in Bright and Spacious East Village Apartment,7130003,Ranita,Manhattan,East Village,40.72205,-73.98389,Private room,169,4,29,2019-06-07,1.14,2,220 +18543400,"Cozy, Quaint and Quiet Private Room",95341869,Carleen,Brooklyn,Bedford-Stuyvesant,40.69502,-73.93984,Private room,60,2,47,2019-05-19,1.81,1,77 +18544441,URBAN DWELLING,27266433,Anthony,Manhattan,Hell's Kitchen,40.75607,-73.99707,Private room,94,2,4,2017-05-24,0.15,1,0 +18546552,Large 1 Bedroom in South Brooklyn,12627412,Allen,Brooklyn,Sheepshead Bay,40.60402,-73.95257,Entire home/apt,88,4,1,2017-05-22,0.04,1,0 +18546787,Charming safe beautifully furnished,127501584,Aminata Mody,Bronx,Hunts Point,40.81406,-73.88997,Private room,65,4,36,2019-06-07,1.36,1,365 +18547076,Greenwich Village 1 Bedroom,3137526,Phil,Manhattan,Greenwich Village,40.72843,-73.99825,Entire home/apt,134,7,0,,,2,0 +18547663,NYC East village luxury apt featured in Timeout!,13008402,Afrodite,Manhattan,East Village,40.73158,-73.987,Entire home/apt,419,3,0,,,1,0 +18548112,Cozy and GREAT Stay in the West Village heart ❤️,12831071,A.J.,Manhattan,Greenwich Village,40.7331,-73.99923,Private room,90,5,69,2019-06-04,2.62,1,137 +18548561,"Sunny & Spacious 1BR w/Porch, W/D, Huge Kitchen",7445657,Parry,Brooklyn,Williamsburg,40.70565,-73.94791,Entire home/apt,140,3,7,2018-04-08,0.27,1,0 +18549136,Upper West Side - Huge 1 Bdrm in a Luxury Bldg,7810471,Britney,Manhattan,Upper West Side,40.77404,-73.99076,Entire home/apt,198,2,2,2017-06-11,0.08,1,0 +18549222,Private room in Astoria close to Manhattan,128768798,Ruth,Queens,Ditmars Steinway,40.77949,-73.91015,Private room,78,2,69,2019-07-01,2.65,1,166 +18550111,LORIMER L TRAIN 5 minutes to the city,118378908,Jose,Brooklyn,Williamsburg,40.71493,-73.94861,Private room,65,1,2,2019-01-01,0.09,6,272 +18550366,Midtown East Apt,4075128,Chang,Manhattan,Murray Hill,40.74822,-73.97966,Private room,65,2,2,2017-05-20,0.08,1,0 +18550867,The Bridge Complex,128785279,Dusean,Bronx,Pelham Gardens,40.85878,-73.83402,Entire home/apt,199,2,81,2019-06-26,3.17,1,286 +18550947,Private large room in prime Manhattan location,128787072,Piper,Manhattan,Lower East Side,40.71873,-73.9891,Private room,99,2,10,2018-12-29,0.38,1,0 +18551084,Large room in sunny Prime Williamsburg pad.,128785861,Carlos,Brooklyn,Williamsburg,40.71435,-73.95508,Private room,70,1,13,2019-01-01,0.49,2,0 +18551196,Private Room and Backyard in Modern Apartment!,115932140,Justin,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95278,Private room,75,2,1,2017-05-21,0.04,1,0 +18559902,Central Park View 5th Avenue,125021178,Avi,Manhattan,Midtown,40.76646,-73.97912,Entire home/apt,350,3,16,2019-05-16,0.64,1,352 +18560104,Airy One Bedroom Apartment in Prime Crown Heights,7740184,Janet,Brooklyn,Crown Heights,40.67653,-73.95793,Private room,75,1,13,2019-06-23,0.51,1,0 +18560569,Central Park north spacious residence,9727058,Pat,Manhattan,Harlem,40.80389,-73.95178,Entire home/apt,199,3,17,2019-04-07,0.65,1,280 +18560625,Beautiful Private Bedroom by Prospect Park,128852127,Laura,Brooklyn,Prospect-Lefferts Gardens,40.65634,-73.95704,Private room,30,30,1,2017-12-31,0.05,1,0 +18561200,Clean and Comfortable Room at Central Park North,1260642,Maria,Manhattan,Harlem,40.80094,-73.95219,Private room,70,3,65,2018-09-28,2.47,1,0 +18561365,Artist Apartment Fort Greene / Clinton Hill,8146232,Marty,Brooklyn,Clinton Hill,40.69229,-73.96504,Entire home/apt,120,1,3,2017-08-06,0.12,1,0 +18561618,Comfy & Cozy Space in the Upper West Side,128860627,Chris,Manhattan,Upper West Side,40.77557,-73.98099,Shared room,65,3,68,2019-06-22,2.60,1,138 +18561753,Spacious and stylish Soho 1-Bedroom,39829442,Dilara,Manhattan,SoHo,40.72565,-74.00161,Entire home/apt,295,2,4,2017-12-10,0.16,1,0 +18562269,Excellent one bedroom apt for Bklyn Half runners!,24791132,Alex,Brooklyn,Prospect Heights,40.67693,-73.96517,Entire home/apt,135,3,3,2019-05-28,0.48,1,0 +18563383,Room in Hell's Kitchen Duplex Apartment,50916440,Lauren,Manhattan,Hell's Kitchen,40.7652,-73.99197,Private room,67,7,0,,,1,0 +18564694,Affordable and Cozy Room,33434914,Juan,Bronx,Parkchester,40.8298,-73.87715,Private room,40,2,62,2019-06-24,2.38,4,44 +18565097,Bohemian Duplex 1BR Pvt BA Lounge E Williamsburg,128414475,Nitya,Brooklyn,Williamsburg,40.70556,-73.92892,Private room,70,2,10,2017-08-28,0.38,3,0 +18565588,Sunny bedroom off Prospect Park,7157099,Sigi,Brooklyn,Prospect-Lefferts Gardens,40.65663,-73.96142,Private room,60,3,3,2018-09-03,0.13,3,21 +18565752,"""WELCOME TO BROOKLYN"" PARK SIDE VIEW STUDIO APT",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.6882,-73.94678,Entire home/apt,109,1,148,2019-06-23,5.59,3,20 +18566324,"Large, cute and cozy one-bed apartment",88207924,James,Manhattan,Inwood,40.86835,-73.91958,Entire home/apt,50,4,4,2018-07-04,0.15,1,0 +18566623,Spacious 1 bedroom. Best water pressure in NYC!,128899126,Anthony,Queens,Astoria,40.76132,-73.92477,Entire home/apt,99,2,68,2019-07-01,2.69,1,0 +18566802,"Beautiful Luxury Studio, Heart of Theater District",11334992,Jessica,Manhattan,Hell's Kitchen,40.76059,-73.98865,Shared room,105,1,1,2017-06-05,0.04,1,0 +18568023,"Refreshing Room in the Heart of Bed Stuy, Brooklyn",17486785,Renata,Brooklyn,Bedford-Stuyvesant,40.68212,-73.9486,Private room,45,2,0,,,1,0 +18568171,"Affordable, Cozy, Skylit Room in Renovated House",54548000,Danny,Brooklyn,Bedford-Stuyvesant,40.67779,-73.9229,Private room,70,1,54,2019-04-30,2.15,2,197 +18568551,Modern Williamsburg Studio,9285643,Michael,Brooklyn,Williamsburg,40.71988,-73.96294,Entire home/apt,150,5,0,,,1,0 +18569142,Amazing Apt. in the heart of Williamsburg!,128914189,Edgar,Brooklyn,Williamsburg,40.72034,-73.96031,Entire home/apt,190,30,0,,,2,1 +18569279,"ENTIRE HOME- UPPER EAST SIDE, NYC",4677247,Elizabeth,Manhattan,Upper East Side,40.77973,-73.95039,Entire home/apt,150,2,17,2019-05-15,0.71,1,338 +18569422,Private room in beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.67101,-73.94543,Private room,70,2,52,2018-11-05,1.99,2,0 +18570075,SUPER CLEAN.,99629743,Leatha,Brooklyn,Clinton Hill,40.68908,-73.96429,Entire home/apt,349,2,52,2019-06-09,1.99,2,361 +18570121,Sunny & Quiet - Entire 1 bedroom Apartment,89331516,Louiza,Brooklyn,Williamsburg,40.71779,-73.95978,Entire home/apt,79,2,0,,,3,0 +18571803,Luxury Apartment - Tranquil Sunny Bedroom!,35998113,Jo & Savannah,Brooklyn,Bedford-Stuyvesant,40.68188,-73.91071,Private room,70,3,26,2019-05-29,1.32,3,0 +18572271,Private bedroom in 2 bed 2 bath UWS,6726364,Alejandra,Manhattan,Upper West Side,40.80062,-73.96169,Private room,150,6,5,2018-05-28,0.21,2,0 +18573121,LUXURY 1BR ON EAST 44TH~DOORMAN/LAUNDRY,2856748,Ruchi,Manhattan,Midtown,40.75194,-73.97068,Entire home/apt,232,30,2,2018-11-17,0.10,49,364 +18577672,Brooklyn home,23667219,Zoe,Brooklyn,Bushwick,40.69563,-73.93206,Private room,47,4,1,2017-05-25,0.04,2,0 +18577989,Air Mattress in a Private Room in Bed-Stuy,38236150,Julio,Brooklyn,Bedford-Stuyvesant,40.69608,-73.9432,Private room,45,1,4,2017-05-29,0.15,1,0 +18579416,"Entire, Immaculate 1-Bedroom CHELSEA APARTMENT",11389260,Haley,Manhattan,Chelsea,40.7381,-73.9976,Entire home/apt,200,2,3,2017-11-25,0.12,1,0 +18579690,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73412,-73.8509,Entire home/apt,278,2,16,2018-07-12,0.62,6,0 +18582592,Spacious and sunny 2-bedroom apt in Park Slope,118366948,Ariel,Brooklyn,Park Slope,40.67079,-73.97384,Entire home/apt,195,12,2,2017-08-13,0.08,1,0 +18582792,"""HELLO BROOKLYN"" PARK SIDE VIEW NEWLY RENO APT.",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.68914,-73.94556,Entire home/apt,109,1,146,2019-06-24,5.57,3,21 +18583072,"Large Room in Brooklyn Townhouse, Great Location",149929,Obed,Brooklyn,Fort Greene,40.69063,-73.97195,Private room,65,8,6,2018-05-10,0.24,5,0 +18583467,Great place for one or two.,22059655,Mercedes,Manhattan,Washington Heights,40.83847,-73.94211,Private room,80,1,93,2019-07-07,3.59,1,311 +18583921,Spacious Private Bedroom in Hip Bushwick,5721788,Maria,Brooklyn,Bushwick,40.69604,-73.92278,Private room,65,25,6,2017-09-14,0.24,1,0 +18584089,"Clean, quite, and near a lot of transportation",129032819,Willie,Manhattan,Harlem,40.82761,-73.9375,Private room,100,1,4,2017-05-19,0.15,1,365 +18584180,CHARMING CHELSEA BROWNSTONE STUDIO NEAR HIGHLINE,21866971,Ben,Manhattan,Chelsea,40.7453,-74.00002,Entire home/apt,180,3,24,2019-06-08,1.12,1,14 +18584411,2BR luxury apt in Midtown East,18212433,Veronique Camille,Manhattan,Midtown,40.75233,-73.97297,Entire home/apt,299,4,0,,,8,0 +18584742,Cozy room across the street from the high bridge,128692351,Nahuel,Bronx,Highbridge,40.84111,-73.92513,Private room,80,2,100,2019-06-23,3.86,5,338 +18585458,Cozy Two Bedrooms Home Away From Home Getaway.,61673952,Artnell,Brooklyn,East Flatbush,40.63693,-73.92242,Entire home/apt,105,2,108,2019-06-29,4.18,1,320 +18585546,"Spacious Private 1BR apt,common area in UES/Harlem",21372426,Kyle,Manhattan,East Harlem,40.78974,-73.9425,Shared room,350,3,0,,,1,83 +18585784,Lovely bedroom in Bushwick,11380126,Kwankaew,Brooklyn,Bushwick,40.69083,-73.9241,Private room,45,1,2,2017-05-31,0.08,1,0 +18586018,3 BDR APT AND ROOFTOP ONE TRAIN STOP TO MANHATAN,69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71047,-73.96311,Entire home/apt,315,2,117,2019-07-02,4.44,4,262 +18586787,Sunny Prime Williamsburg Location with Backyard,89331516,Louiza,Brooklyn,Williamsburg,40.71644,-73.95888,Private room,79,4,0,,,3,0 +18586873,Large Luxury Condominium In the Heart of Manhattan,129062212,Sara,Manhattan,Hell's Kitchen,40.75898,-73.99035,Entire home/apt,90,7,18,2019-06-02,0.70,1,242 +18587083,2 bedrooms in luxury duplex,97543375,Jennifer,Brooklyn,Williamsburg,40.71529,-73.93972,Private room,215,2,4,2018-12-31,0.15,2,341 +18591642,EASY RIDE TO MANHATTAN FROM THIS COMFY ROOM!(C),126929216,Mel,Brooklyn,Crown Heights,40.6699,-73.94169,Private room,59,15,1,2017-06-23,0.04,3,333 +18592160,"Quiet one bedroom in LES, Great location!",23356363,Pablo,Manhattan,Lower East Side,40.71947,-73.98638,Entire home/apt,200,2,24,2019-07-06,0.91,1,6 +18593138,"Luxury Master Suite - Sunlit, Private floor + bath",278576,Marc,Brooklyn,Prospect-Lefferts Gardens,40.65746,-73.95221,Private room,90,3,46,2019-06-23,1.91,2,197 +18595831,"The Locals House // Best Location, Nicest Home",129133511,Michael,Queens,Rockaway Beach,40.5889,-73.81585,Entire home/apt,545,1,31,2019-07-07,1.20,1,224 +18596194,Cozy Studio with private entrance,12827876,Jasen,Brooklyn,Canarsie,40.64493,-73.90897,Private room,33,2,1,2017-05-29,0.04,1,0 +18596197,Great apartment ( W48 street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76382,-73.99435,Entire home/apt,125,30,3,2019-06-08,0.45,31,339 +18596546,Cozy 1BR Home in Upper Manhattan w/ Amenities,24338366,Daniel,Manhattan,Inwood,40.86057,-73.92907,Entire home/apt,100,1,9,2018-08-01,0.37,1,0 +18596772,Apartment w/ 2 bedrooms in the heart of E. Village,5212097,Chris,Manhattan,East Village,40.72237,-73.98148,Private room,275,2,8,2018-11-18,0.31,2,0 +18597408,Huge sunny bedroom in Bushwick brooklyn!,159936,Ludine,Brooklyn,Bushwick,40.69337,-73.91142,Private room,45,1,2,2017-05-12,0.08,1,0 +18597754,Sunny 1BR Near Train (Greenpoint/Williamsburg),29134684,Max,Brooklyn,Greenpoint,40.72686,-73.95246,Entire home/apt,199,6,2,2017-07-14,0.08,1,0 +18597908,Two Whole Floors On the Brooklyn Waterfront,118880596,Caroll,Brooklyn,Columbia St,40.68455,-74.00188,Entire home/apt,150,4,13,2019-04-29,0.56,1,6 +18599156,Great Studio ( Midtown West 48th street),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76435,-73.99337,Entire home/apt,125,30,3,2018-06-02,0.14,31,342 +18599224,Hudge room Bushwick,14376724,Laure,Brooklyn,Williamsburg,40.70793,-73.93902,Private room,55,5,0,,,1,0 +18599296,Comfy Entire Studio Apartment Near Central Park,1692538,Nuttamon,Manhattan,Upper East Side,40.77294,-73.95351,Entire home/apt,168,1,126,2019-04-02,4.78,5,287 +18599352,Studio in Midtown West ( W48th Street ),51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76446,-73.99343,Entire home/apt,125,30,4,2019-05-13,0.17,31,344 +18600659,One big sunny cozy room with a king and a twin bed,6423838,Sara,Brooklyn,East Flatbush,40.65229,-73.94539,Private room,150,2,1,2018-09-03,0.10,1,83 +18601353,Spacious bedroom in Brooklyn - Great for couples!,101258676,Uri,Brooklyn,Kensington,40.63255,-73.97324,Private room,48,1,116,2019-06-21,4.47,1,343 +18602201,Gorgeous Cozy Getaway In Harlem 1 Block From Train,228252,Kathleen,Manhattan,Harlem,40.82607,-73.94481,Private room,85,14,3,2017-09-19,0.12,2,125 +18605919,"Brooklyn, Williamsburg - Room w/ Private Bathroom",3258630,Oscar,Brooklyn,Williamsburg,40.71681,-73.94556,Private room,80,1,6,2018-07-22,0.24,1,0 +18606237,Cozy bedroom in historical home.,128338539,Reuben,Staten Island,Stapleton,40.63167,-74.07971,Private room,43,1,37,2019-07-05,1.56,4,89 +18609316,"Manhattan- sofa bed, private room, no deposit",7055854,Diane,Manhattan,Harlem,40.80298,-73.94333,Private room,60,5,28,2019-05-08,1.07,5,267 +18609555,Beautiful Brooklyn Bedroom,112118235,Darryl,Brooklyn,Flatbush,40.65255,-73.9568,Private room,60,3,0,,,1,0 +18610314,2BR/2BATH Luxury-Sweeping Skylines,118124127,Lana,Brooklyn,Downtown Brooklyn,40.69156,-73.98686,Entire home/apt,179,2,5,2019-07-03,0.19,1,14 +18610539,Garden-level apartment in historic Cobble Hill,34361146,Penelope,Brooklyn,Cobble Hill,40.68582,-73.99801,Entire home/apt,156,31,10,2018-12-09,0.39,1,0 +18610543,"Huge, Sunny Apartment for Backpackers - Park Slope",75567007,Candice,Brooklyn,Park Slope,40.67697,-73.98239,Entire home/apt,153,2,2,2017-05-29,0.08,1,0 +18610544,Cozy Room in Gramercy,32052979,Meghana,Manhattan,Kips Bay,40.73863,-73.98186,Private room,76,1,0,,,1,0 +18610554,"Private bedroom, Queenbed on suite bath and closet",7055854,Diane,Manhattan,East Harlem,40.80141,-73.94341,Private room,2000,6,0,,,5,219 +18611347,Huge private bedroom,129270031,Magd,Manhattan,Harlem,40.82527,-73.95359,Private room,55,90,0,,,1,365 +18611605,Lovely Room in Brooklyn,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.6697,-73.99357,Private room,145,1,80,2019-06-02,3.10,3,282 +18611872,"Sunny bedroom, cozy townhouse in Buschwick",1637060,Caio,Brooklyn,Bushwick,40.6948,-73.92253,Private room,75,2,80,2019-07-02,3.11,1,3 +18612291,Private One Bedroom,16140828,Pedro,Manhattan,Morningside Heights,40.80864,-73.95913,Private room,65,4,0,,,1,0 +18612722,2b2b apt in a luxury building,23297219,Aurora,Brooklyn,Williamsburg,40.71964,-73.96421,Entire home/apt,199,4,7,2018-04-29,0.28,2,65 +18612788,Awesome loft with Amazing views,14444,John,Brooklyn,Bedford-Stuyvesant,40.69321,-73.95599,Entire home/apt,150,4,0,,,2,0 +18612976,Audrey's Escape,13730809,Kevin,Brooklyn,Brownsville,40.66088,-73.90012,Private room,60,6,26,2019-06-18,1.00,3,90 +18613550,Spacious Private Room by the East River,14614459,Dario,Manhattan,East Harlem,40.78546,-73.94117,Private room,70,3,8,2017-11-01,0.31,4,0 +18613981,Beautiful bedroom in Quiet House,90289877,Abi,Queens,Flushing,40.74218,-73.82833,Private room,36,2,98,2019-06-23,3.80,1,31 +18614596,Downtown Triplex- Spacey East Village Entire Apt,7318926,Jonathan,Manhattan,East Village,40.72208,-73.98071,Entire home/apt,210,3,5,2018-06-14,0.19,1,0 +18615054,Cozy room in charming home,1635983,Sheila,Bronx,Schuylerville,40.83159,-73.83375,Private room,40,4,35,2019-06-08,1.36,3,171 +18615497,Comfortable space in Brooklyn,41467596,Donald,Brooklyn,Crown Heights,40.66482,-73.93619,Private room,140,1,1,2017-06-03,0.04,1,0 +18615898,Welcoming home in the ❤️ of NYC!,23867523,K,Manhattan,Theater District,40.76207,-73.9858,Private room,120,1,8,2019-05-31,2.09,1,5 +18615903,Private Bathroom & Communal Cat in Large Sunny Apt,1038989,Kung,Brooklyn,Williamsburg,40.70904,-73.9398,Private room,95,3,69,2019-07-05,2.63,2,56 +18615964,1 BEDROOM apartment in Brooklyn,52816291,Laetitia,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95121,Entire home/apt,90,3,5,2019-02-19,0.27,1,1 +18616208,"Modern Townhouse for Photo, Film & Daytime Events",55017405,Lanie,Manhattan,Upper West Side,40.77978,-73.97598,Entire home/apt,2900,1,0,,,1,180 +18616217,"Local West Village, Manhattan Apartment",22204359,Abel,Manhattan,West Village,40.73369,-74.00534,Entire home/apt,199,4,24,2019-06-28,0.95,1,35 +18616234,UPPER EAST SIDE PRIVATE ROOM!,129317761,Lauren,Manhattan,East Harlem,40.78886,-73.94324,Private room,70,1,11,2017-07-15,0.42,1,0 +18616809,Sunny 2BR Prime Williamsburg with backyard,89331516,Louiza,Brooklyn,Williamsburg,40.71591,-73.96039,Entire home/apt,169,5,1,2017-06-07,0.04,3,0 +18617060,Private Sunny Room in Bushwick,129159456,Michelle,Brooklyn,Bushwick,40.69055,-73.91599,Private room,30,1,0,,,1,0 +18617195,Spacious one bedroom appartement - Williamsburg,1599261,Daphnee,Brooklyn,Williamsburg,40.70844,-73.96693,Entire home/apt,140,3,19,2019-06-21,0.73,1,218 +18617676,Spacious apartment in the Lower east side,129333453,Larry,Manhattan,Lower East Side,40.72037,-73.98701,Entire home/apt,110,3,19,2019-06-29,0.73,1,34 +18619857,Ms. Dee Comfort Zone,97794385,Debra,Queens,Jamaica,40.68555,-73.79416,Private room,30,1,15,2019-06-28,0.67,2,90 +18624243,Sunny & cozy 1BR in the heart of Fort Greene,50605761,Adam,Brooklyn,Fort Greene,40.68647,-73.97531,Entire home/apt,130,5,1,2017-10-16,0.05,1,2 +18625919,Cozy Studio Apartment with Spacious Backyard!,129396046,Tony,Brooklyn,East New York,40.66547,-73.88944,Entire home/apt,99,2,145,2019-06-21,5.84,1,356 +18626606,NYC. Central Park West. Prime Spot!,129179250,Mark,Manhattan,Upper West Side,40.77229,-73.97944,Entire home/apt,200,4,10,2018-05-14,0.43,1,68 +18628912,Unique Upper East Side apartment with backyard,27789935,Tim And Allison,Manhattan,Upper East Side,40.77568,-73.95405,Entire home/apt,170,1,20,2019-01-01,0.77,1,0 +18629326,Spacious bedroom in colorful apartment,4401058,John,Brooklyn,Kensington,40.64354,-73.97967,Private room,110,1,0,,,1,0 +18629621,Bushwick Studio with Private Porch,83141510,Alex,Brooklyn,Bushwick,40.70382,-73.91746,Entire home/apt,100,1,0,,,1,0 +18630660,Charming Bohemian East Village Apartment,49197104,Chelsea,Manhattan,East Village,40.73159,-73.98447,Entire home/apt,133,3,5,2017-08-23,0.19,1,0 +18632197,Quiet Private Room in Scenic NYC Neighborhood,32772382,Caitlin,Manhattan,Washington Heights,40.85865,-73.93559,Private room,75,2,13,2018-09-16,0.55,1,0 +18632502,"Charming Carroll Gardens, Brooklyn Apartment",14505375,Triada,Brooklyn,Carroll Gardens,40.68057,-73.99395,Entire home/apt,125,2,69,2019-07-01,2.66,1,275 +18632582,Brooklyn Dream Home + Private Patio,2420586,Sabrina,Brooklyn,Brooklyn Heights,40.69284,-73.99633,Entire home/apt,325,2,12,2018-10-07,0.46,1,39 +18634847,Huge room in a clean brownstone in Brooklyn.,21402517,Max Prana,Brooklyn,Bedford-Stuyvesant,40.69418,-73.94447,Private room,50,2,19,2019-06-05,0.76,1,4 +18635370,Fantastic Sunny peaceful room in Riverdale,91385196,Vicdania,Bronx,North Riverdale,40.91169,-73.90564,Private room,50,365,0,,,1,363 +18635942,Beautiful Studio Apartment on the E70th St,55814053,Maria,Manhattan,Upper East Side,40.7672,-73.95495,Entire home/apt,120,1,89,2019-06-22,3.43,1,9 +18636030,"Cozy, private room in Morningside Heights",87680800,Mahnoor,Manhattan,Morningside Heights,40.81368,-73.95919,Private room,50,1,0,,,1,0 +18636622,Quaint 1 Bedroom in Historic Home,3617473,Jeff,Queens,Sunnyside,40.74789,-73.91428,Entire home/apt,100,30,3,2017-12-02,0.13,1,213 +18637270,"Cute, spacious room in Crown Heights",31658624,Megan E,Brooklyn,Crown Heights,40.66954,-73.93975,Private room,45,3,8,2019-03-30,0.31,2,0 +18637912,Family-friendly Bright Studio in Our Brooklyn Home,129497806,Jody,Brooklyn,East Flatbush,40.65064,-73.95045,Entire home/apt,94,2,73,2019-06-29,3.09,1,66 +18638015,Clean Comfy Private Room in Heart of Williamsburg,45934567,Caitlin,Brooklyn,Williamsburg,40.71227,-73.96233,Private room,60,5,2,2018-06-11,0.08,1,0 +18638573,Adorable room in Astoria - 20 mins to Manhattan!,28290772,Anushua,Queens,Astoria,40.76682,-73.90807,Private room,63,2,27,2019-06-15,1.03,2,338 +18638985,PRIME WILLIAMSBURG- Spacious 4BR Bohemian Oasis,25318403,Bethany,Brooklyn,Williamsburg,40.71353,-73.9578,Entire home/apt,175,3,9,2019-05-12,0.40,3,11 +18645286,Sunny & cozzy room in beautiful apartment,48157058,Michèle,Brooklyn,Crown Heights,40.67541,-73.93253,Private room,26,7,0,,,1,59 +18646075,A Chic Harlem stay,63417081,Devon,Manhattan,Harlem,40.82336,-73.94512,Private room,45,30,4,2018-09-10,0.17,8,67 +18646653,Upper East Side 1 bedroom near Central park,33786241,Sean,Manhattan,Upper East Side,40.77481,-73.95641,Entire home/apt,123,3,32,2019-05-27,1.22,1,4 +18647180,Beautiful Dupl Brooklyn Apartment w/ a Big Terrace,7041731,Dee,Brooklyn,Bedford-Stuyvesant,40.69205,-73.95803,Entire home/apt,185,3,1,2017-05-22,0.04,1,0 +18647217,Cozy Contemporary Couch by Central Park,128531725,Shia,Manhattan,Morningside Heights,40.80387,-73.95853,Private room,55,3,103,2019-06-17,3.93,2,18 +18647731,East Village Studio Apartment,46501846,Patrick,Manhattan,East Village,40.7241,-73.98959,Entire home/apt,133,7,9,2018-11-05,0.35,1,0 +18648243,Contemporary Room Close to Columbia & Central Park,128531725,Shia,Manhattan,Harlem,40.8042,-73.95669,Private room,75,2,41,2019-04-01,1.57,2,1 +18648360,Modern Brooklyn brownstone in prime location,3990540,Margot,Brooklyn,Prospect Heights,40.67787,-73.97225,Entire home/apt,450,3,3,2017-07-16,0.12,1,0 +18648591,Crown Heights Air Bnb/Sublet,97032243,Noah,Brooklyn,Crown Heights,40.67571,-73.94916,Private room,40,1,0,,,1,0 +18649105,Large 1 Bedroom in Astoria/Long Island City!,44838931,Andrea,Queens,Astoria,40.76843,-73.93257,Private room,90,3,17,2019-04-23,0.65,2,334 +18649351,"BEST LOCATION, ONLY 5 MIN TO MANHATAN.",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71039,-73.96139,Private room,400,1,44,2019-05-08,2.19,4,77 +18649806,Cozy 1 Bedroom with Queen bed,44838931,Andrea,Queens,Astoria,40.76848,-73.93213,Private room,62,3,27,2019-07-02,1.03,2,154 +18649822,Union Square Private Sunny Dream Home,126470577,Kseniya,Manhattan,Gramercy,40.7358,-73.9889,Entire home/apt,287,1,68,2019-07-02,2.67,1,324 +18650087,Red Flower,21854022,Paul,Manhattan,Harlem,40.8225,-73.94493,Entire home/apt,200,1,78,2019-07-07,3.00,1,84 +18650569,A Home Base in Brooklyn,35881969,John,Brooklyn,Williamsburg,40.70545,-73.94714,Private room,58,1,96,2019-06-15,3.82,2,79 +18652220,Williamsburg Sanctuary,7147164,Tiffany,Brooklyn,Williamsburg,40.7137,-73.95711,Entire home/apt,325,3,32,2019-06-23,1.25,1,33 +18652544,Beautiful One bedroom in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75017,-73.97687,Entire home/apt,222,30,0,,,50,180 +18655599,Luxury Studio Apartment in Downtown Brooklyn,36522433,Zexi,Brooklyn,Downtown Brooklyn,40.69459,-73.98261,Entire home/apt,130,5,2,2017-08-29,0.08,1,0 +18655815,"Spacious, sunny room in Upper West Side, Manhattan",72377141,Ben,Manhattan,Upper West Side,40.79939,-73.96752,Private room,70,7,1,2017-08-24,0.04,3,0 +18655886,Spacious Bedroom in Duplex,68017798,Charlotte,Brooklyn,Bushwick,40.69804,-73.9182,Private room,44,2,0,,,1,0 +18655992,Private Room in the Heart of Brooklyn!,23722638,Laura,Brooklyn,Gowanus,40.68432,-73.98867,Private room,85,1,0,,,2,0 +18656413,Comfy Wall Street Apartment,110031106,Allie,Manhattan,Financial District,40.70586,-74.00875,Private room,85,1,3,2017-06-04,0.12,1,0 +18656661,Private Bedroom in Artist's Apartment,19512029,Tami,Brooklyn,Midwood,40.61143,-73.9543,Private room,52,2,12,2017-07-30,0.46,1,0 +18657209,Private Room and Bath in the Lower East Side!,90824676,Lauren,Manhattan,East Village,40.72288,-73.98342,Private room,60,1,3,2017-08-27,0.12,1,0 +18662619,Renovated Modern Home Ideal for a FAMILY!,13524368,Richard,Brooklyn,Windsor Terrace,40.65766,-73.97614,Entire home/apt,275,3,8,2018-11-30,0.32,1,0 +18662664,Spacious Private Room - Newly Renovated Harlem Apt,15578480,Trisha,Manhattan,Harlem,40.81271,-73.94055,Private room,75,2,21,2018-03-18,0.81,1,0 +18662841,Loft Studio in Clinton Hill/Bed-Stuy Brooklyn,30348931,Adriana,Brooklyn,Bedford-Stuyvesant,40.68626,-73.95918,Entire home/apt,125,1,0,,,1,0 +18664875,"Carroll Gardens Brooklyn, Sunny and Modern Triplex",129714819,Caroline,Brooklyn,Gowanus,40.68112,-73.98921,Entire home/apt,475,7,4,2019-04-26,0.17,1,72 +18666583,Cozy sleeping nook in the heart of Brooklyn!,129723592,Ashkon,Brooklyn,Crown Heights,40.67404,-73.95616,Private room,50,7,0,,,1,0 +18666975,"PRIVATE, QUIET, Clean NY APT. 3mins to JFK Airport",125557444,Ada,Queens,Jamaica,40.6705,-73.77787,Entire home/apt,80,1,22,2019-06-02,0.85,2,305 +18667184,Easy trip to Manhattan! Large Private Garden!,129733507,Mo,Brooklyn,Bedford-Stuyvesant,40.68391,-73.95783,Entire home/apt,200,3,4,2018-05-06,0.17,1,250 +18667956,Bushwick Chef's house,71224013,Heejun,Brooklyn,Bushwick,40.69445,-73.91161,Private room,70,1,22,2019-07-01,0.85,1,331 +18668037,Private room in Harlem-Sublet or short term stay,127731553,Roberto,Manhattan,Harlem,40.83168,-73.94743,Private room,52,7,0,,,1,0 +18668571,Beautiful apt w/terrace Bushwick. 1block frm train,119170289,Bam,Brooklyn,Bushwick,40.69517,-73.92541,Entire home/apt,150,2,15,2019-06-23,0.59,2,0 +18668594,Bed-Stuy Artists Retreat,14046877,Kelley,Brooklyn,Bedford-Stuyvesant,40.69087,-73.946,Private room,63,3,0,,,1,0 +18669019,"Entire Apt – 2 BR/1 BA – beautiful, block from L/M",23149564,Dan,Brooklyn,Bushwick,40.69694,-73.91269,Entire home/apt,100,7,0,,,1,0 +18669496,Med. sized bdrm in Historical house on Staten Isl.,128338539,Reuben,Staten Island,Stapleton,40.62981,-74.07998,Private room,50,1,25,2019-07-06,1.03,4,73 +18669801,Huge Private Room in New York 10minute to Midtown,119952908,Meja Hilde,Queens,Long Island City,40.75172,-73.9379,Private room,69,1,3,2017-05-30,0.12,1,0 +18670480,Sunny Art + Plant Brownstone Apartment,6356476,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68988,-73.94137,Entire home/apt,116,2,0,,,1,0 +18671835,Private Room with Skyline View. Near LGA airport,129743937,Win,Queens,East Elmhurst,40.75885,-73.86959,Private room,44,1,141,2019-07-05,10.19,2,47 +18672921,Spacious yet Cozy Room in Manhattan,64780571,Lexi,Manhattan,Washington Heights,40.84773,-73.93251,Private room,60,3,2,2017-06-12,0.08,1,0 +18673613,Midtown West,7193271,Robert,Manhattan,Hell's Kitchen,40.75405,-73.99377,Private room,180,1,7,2018-03-11,0.27,1,0 +18674105,Charming East Village One Bedroom,129794391,Yinhang,Manhattan,East Village,40.72349,-73.9841,Entire home/apt,95,3,2,2017-06-21,0.08,1,0 +18675061,Private Room in beautiful UWS - Great Location!,12033348,Shirley,Manhattan,Upper West Side,40.79978,-73.96797,Private room,70,7,5,2017-07-04,0.19,1,0 +18675083,Lux apt,18408365,Michele,Manhattan,Kips Bay,40.74518,-73.97929,Entire home/apt,275,3,0,,,1,0 +18675215,Modern Sunny Midtown Gem,18838868,Leah,Manhattan,Midtown,40.74452,-73.98163,Entire home/apt,195,3,14,2018-09-22,0.58,1,0 +18675599,Large Place bushwick with furniture,129812563,Roodmy,Brooklyn,Bushwick,40.69416,-73.90816,Private room,45,7,11,2017-09-20,0.42,1,0 +18676837,"Private Room & Entrance, Two Blocks from Times Sq!",64177548,David,Manhattan,Hell's Kitchen,40.76,-73.98915,Private room,135,3,65,2019-06-30,2.92,1,25 +18680331,1 bedroom apartment in Morningside Heights!,71515912,Mili,Manhattan,Morningside Heights,40.80546,-73.96547,Entire home/apt,145,7,2,2018-01-21,0.08,1,0 +18682735,Penthouse studio @ Manhathan,10477693,Crystal,Manhattan,Financial District,40.70738,-74.01281,Entire home/apt,160,2,0,,,1,0 +18682763,Spacious & Charming Apartment in Bedstuy,13608839,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.69471,-73.94225,Entire home/apt,98,2,0,,,1,0 +18683699,"Private, artsy room steps from Prospect Park!!",11881734,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65475,-73.96186,Private room,80,1,24,2017-12-11,0.92,1,0 +18683879,Spacious studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74954,-73.97687,Entire home/apt,150,30,3,2019-02-02,0.20,50,180 +18685854,PEACE AND TRANQUILITY,129890157,Pauline,Bronx,Baychester,40.87192,-73.84676,Private room,60,1,0,,,2,0 +18686269,Amazing duplex with garden,119940669,Fabrice,Brooklyn,Williamsburg,40.71255,-73.95745,Private room,430,6,0,,,1,0 +18686390,Cozy Studio in the Heart of the East Village,12540615,Adam,Manhattan,East Village,40.72415,-73.98411,Entire home/apt,128,1,13,2018-01-01,0.50,1,0 +18686501,A quite full-size bed living room at upper west,63026371,John (Tianqi),Manhattan,Upper West Side,40.8012,-73.96693,Shared room,55,2,0,,,1,0 +18686508,Modest Room in a Quiet Brooklyn Home,129161153,Hermann,Brooklyn,East Flatbush,40.6327,-73.93922,Private room,60,1,5,2018-05-13,0.19,1,342 +18686817,Large bright friendly bedroom apartment,59407939,Avrora,Brooklyn,Bensonhurst,40.60795,-73.98955,Private room,89,1,5,2017-09-29,0.19,1,364 +18688150,"""Chill"" Private 1BR Close to A,C,B,D,2,3",24906403,Howard,Manhattan,Harlem,40.818,-73.94134,Private room,60,2,51,2019-07-05,2.26,1,170 +18689454,Private sun-filled 1-bedroom apt with own backyard,327033,Marc,Brooklyn,Bushwick,40.69207,-73.92331,Entire home/apt,145,3,17,2019-05-25,0.66,2,0 +18689588,Sunny Brooklyn Studio: 25 min to central Manhattan,127767,Cara,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95374,Entire home/apt,97,4,6,2018-08-18,0.24,1,0 +18690466,Spacious 2bed private rm close St.BarnabasHospital,127249880,Emma,Bronx,Tremont,40.84594,-73.89358,Private room,45,2,49,2019-05-26,1.95,2,324 +18690651,Private Spacious Bedroom in Upper Manhattan,68852295,Aj,Manhattan,Harlem,40.8213,-73.95131,Private room,50,7,0,,,1,0 +18690921,PRIME LOCATION/SUNLIT ROOM,129927411,Andrea,Manhattan,Little Italy,40.71886,-73.99746,Private room,110,1,166,2019-06-21,6.37,2,71 +18691084,Spacious and sunny room in Williamsburg,30384022,Cecilia,Brooklyn,Williamsburg,40.7107,-73.94295,Private room,65,7,1,2017-12-24,0.05,1,0 +18691204,Luxury Apt in Williamsburg + Huge private terrace,68472942,Alex,Brooklyn,Williamsburg,40.70943,-73.95064,Entire home/apt,175,3,3,2018-08-26,0.28,1,364 +18691948,Beautiful NYC bedroom and neighborhood!,41580455,Marianel,Manhattan,Washington Heights,40.85115,-73.93703,Private room,80,4,4,2019-04-22,0.15,1,0 +18692028,MODERN 3 BEDROOM APT IN THE HEART OF BROOKLYN,128707088,Nazila,Brooklyn,Downtown Brooklyn,40.70001,-73.98969,Entire home/apt,325,2,94,2019-06-23,3.67,1,166 +18692321,Amazing loft with a great view,14444,John,Brooklyn,Bedford-Stuyvesant,40.69347,-73.955,Entire home/apt,126,20,0,,,2,0 +18695104,Quiet private room in Manhattan Lower east side,40225443,Zhi And Gloria,Manhattan,Lower East Side,40.72008,-73.98268,Private room,104,3,28,2017-11-11,1.07,1,0 +18699576,1BR in the Heart of Williamsburg,14885787,Monica,Brooklyn,Williamsburg,40.71869,-73.95358,Entire home/apt,150,2,2,2017-07-23,0.08,1,0 +18700004,Unfurnished 2 bedrooms for rent at the end of May!,130005087,Adé,Brooklyn,Crown Heights,40.67371,-73.94537,Private room,85,5,0,,,1,0 +18701095,Crown Heights Haven,130013537,Ā.,Brooklyn,Crown Heights,40.6746,-73.94549,Private room,45,2,19,2018-07-06,0.73,1,0 +18702075,Clean and large bedroom in a private house,130021104,Christoni,Bronx,Williamsbridge,40.87309,-73.86326,Private room,60,1,5,2017-06-03,0.19,1,0 +18704012,"Great, light filled room with ensuite private bath",1038989,Kung,Brooklyn,Williamsburg,40.7097,-73.94001,Private room,120,2,3,2017-10-15,0.14,2,0 +18704413,Large Private Suite in Classic Brooklyn Brownstone,130035533,Linda,Brooklyn,Brooklyn Heights,40.69364,-73.99467,Entire home/apt,200,2,80,2019-06-28,3.14,1,271 +18704805,"East 12th st, Lux Studio in Greenwich Village**",22541573,Ken,Manhattan,East Village,40.73334,-73.9897,Entire home/apt,235,30,1,2018-05-06,0.07,87,307 +18705087,Times Square studio,104691618,Azi,Manhattan,Hell's Kitchen,40.75725,-73.9959,Entire home/apt,180,2,36,2019-06-20,1.40,1,2 +18706173,Great 2 bedroom suite in Bed Stuy,17859338,Jacqueline,Brooklyn,Bedford-Stuyvesant,40.68416,-73.9551,Entire home/apt,160,3,59,2019-07-06,2.42,2,88 +18706845,Private Budget Room For Awesome Guests. #1,97018938,Ude,Brooklyn,Canarsie,40.64005,-73.90916,Private room,42,1,29,2018-02-02,1.13,2,35 +18706893,BEAUTIFUL 1 BEDROOM IN W 48 STREET,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76515,-73.99423,Entire home/apt,135,30,0,,,31,337 +18707214,Sunny 2-bedroom in classic Brooklyn brownstone,4370956,Rachel,Brooklyn,Fort Greene,40.6862,-73.96973,Entire home/apt,175,3,3,2017-08-11,0.12,1,0 +18707698,"West Soho Apartment, One Bedroom",130062635,John,Manhattan,SoHo,40.72667,-74.00179,Entire home/apt,164,2,2,2017-06-04,0.08,1,0 +18715285,Beautiful Brooklyn Vacation Rental,63749946,Rachel,Brooklyn,Crown Heights,40.67324,-73.92502,Entire home/apt,147,20,49,2019-05-29,1.94,3,204 +18716289,"Beautiful, Spacious, Luxury Fort Greene Apartment",16575725,New,Brooklyn,Fort Greene,40.69369,-73.98074,Entire home/apt,120,2,7,2018-08-20,0.29,1,0 +18716439,"Beautiful, rustic 1BD in HEART of Willlamsburg!",6646682,Daryen,Brooklyn,Williamsburg,40.71232,-73.96067,Entire home/apt,88,4,6,2018-04-14,0.24,1,1 +18716602,Charming 2brs w/ private garden in Carroll Gardens,62734,Kremer,Brooklyn,Gowanus,40.67862,-73.9923,Entire home/apt,120,30,2,2018-11-01,0.19,2,342 +18716795,Lower Manhattan room - best part of town,9913035,George,Manhattan,Lower East Side,40.7218,-73.98723,Private room,63,30,8,2018-08-01,0.31,3,237 +18718070,Modern high ceiling loft,2434499,Paul,Brooklyn,Bedford-Stuyvesant,40.69121,-73.95265,Entire home/apt,114,7,0,,,1,0 +18718195,Private Bedroom in Manhattan,59117179,Mariama,Manhattan,Roosevelt Island,40.76364,-73.94881,Private room,110,1,48,2019-06-20,1.86,1,342 +18719129,"Big room in Queens, close to all...皇后区大房, 近超市、地铁",129942781,Jiqiong,Queens,Rego Park,40.72446,-73.85636,Private room,60,3,46,2019-06-10,1.77,1,48 +18719477,One bedroom in two bedroom,9472223,Arthur,Manhattan,Harlem,40.80393,-73.95674,Private room,55,7,0,,,3,0 +18719526,Townhouse Garden Apartment - Park Block,20662116,"Jeanne - Aka, 'Rindy'",Brooklyn,Park Slope,40.66634,-73.97806,Entire home/apt,165,4,41,2019-01-02,1.63,1,170 +18719602,Midtown Convenience and Modern Comfort,66051549,Jenny,Manhattan,Midtown,40.7523,-73.97287,Private room,105,4,1,2017-07-30,0.04,1,0 +18719762,AMAZING HOUSE 3 Bedrooms 3 Bathrooms.,52084781,Ms. George,Queens,Glendale,40.69252,-73.89533,Entire home/apt,150,3,22,2019-06-23,0.93,1,292 +18721027,Spacious NYC Apartment with a View,47485343,Claire,Brooklyn,Sunset Park,40.65003,-74.00657,Entire home/apt,75,3,2,2017-07-05,0.08,1,0 +18721061,Grdn 2BD Sleeps 7 Pvt. Bath Near train⭐Mins to NYC,9285314,Monica,Brooklyn,Bushwick,40.69453,-73.93053,Private room,150,3,0,,,1,93 +18721209,Bronx Wakefield Large Furnished Room,130185165,Ms. H,Bronx,Wakefield,40.88702,-73.86575,Private room,60,1,39,2019-07-01,1.57,1,360 +18721341,Unique Brooklyn Studio,130186732,Trilla,Brooklyn,Crown Heights,40.67574,-73.94722,Entire home/apt,90,31,70,2019-06-22,2.79,1,263 +18721845,Home home sweet home,49360262,Leah,Queens,Woodside,40.74204,-73.90639,Private room,55,2,3,2017-05-28,0.12,1,0 +18722146,"Prime Astoria Apartment, Beautiful and Convenient",4621817,Burcu,Queens,Astoria,40.75865,-73.91737,Private room,150,2,2,2017-09-12,0.08,1,87 +18722657,Charming Room in Sunlit 3BD Apt,28648021,Nneka,Brooklyn,Crown Heights,40.67615,-73.94752,Private room,41,3,1,2017-05-21,0.04,1,0 +18723095,FINANCIAL NEAR WORLD TRADE CENTER,130204296,Anny,Manhattan,Financial District,40.70817,-74.00675,Private room,115,1,5,2017-10-06,0.19,1,0 +18728915,Spacious Bushwick Studio,67895564,Noah,Brooklyn,Bushwick,40.70373,-73.92848,Entire home/apt,100,3,3,2018-11-25,0.12,1,0 +18728971,Huge Williamsburg Loft (true loft!),10113673,Danni,Brooklyn,Williamsburg,40.71432,-73.95629,Entire home/apt,155,2,2,2017-06-12,0.08,1,0 +18729143,Private Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71725,-73.9544,Private room,52,5,111,2019-06-22,4.26,4,10 +18729447,Cosy bedroom in prime Williamsburg,229109,Jonathan,Brooklyn,Williamsburg,40.71365,-73.94822,Private room,80,4,9,2018-12-21,0.36,2,36 +18729461,Studio in Upper East Side,108546781,Marlène,Manhattan,Upper East Side,40.77958,-73.95025,Entire home/apt,75,15,5,2018-08-25,0.20,1,1 +18729985,Bright and cozy room 20 min away from Manhattan,8076786,Suri,Brooklyn,Sunset Park,40.6589,-74.00018,Private room,150,2,6,2019-03-23,0.27,3,365 +18731029,Upper WestSide Manhattan Comfort 3,67768251,Felipe,Manhattan,Upper West Side,40.78293,-73.97636,Private room,40,30,8,2019-04-26,0.42,3,204 +18731641,The Omaric,53560822,Desmond,Manhattan,Harlem,40.82425,-73.9552,Entire home/apt,95,2,49,2019-07-02,1.92,1,14 +18732648,Large Private Bedroom in Cool Williamsburg Apt.,30487854,Ben,Brooklyn,Williamsburg,40.71219,-73.96085,Private room,50,5,16,2019-06-22,0.62,2,10 +18734125,Large Industrial Loft In Bushwick,81066021,Javerick,Brooklyn,Williamsburg,40.70608,-73.9313,Entire home/apt,158,3,2,2017-07-22,0.08,2,324 +18734225,1BR in lovely Williamsburg apartment,40238772,Daniël,Brooklyn,Williamsburg,40.70884,-73.95425,Private room,60,20,2,2017-06-19,0.08,1,0 +18734320,"Easy, Comfortable and Convenient!",100784323,Kathleen,Manhattan,Washington Heights,40.83543,-73.94372,Private room,50,2,14,2018-09-01,0.54,1,0 +18734427,"Nice space in Norwood, NYC",112239929,Cherly,Bronx,Norwood,40.87315,-73.87925,Private room,65,1,0,,,1,0 +18734568,"Room in sunny, relaxing apartment in Ft. George",130307692,Mara,Manhattan,Washington Heights,40.85618,-73.93085,Private room,44,2,7,2017-07-23,0.27,1,0 +18735563,Furnished room available until June 4th,130319645,Anton,Brooklyn,Sheepshead Bay,40.60924,-73.95556,Private room,30,1,0,,,1,0 +18735631,"Charming 1 Bedroom Apartment in Bushwick, Brooklyn",123355776,Carol,Brooklyn,Bushwick,40.70336,-73.92657,Entire home/apt,184,1,29,2019-05-07,1.12,1,0 +18735653,Jupiter House,2733815,Ashley,Brooklyn,Red Hook,40.67785,-74.00735,Entire home/apt,175,30,14,2018-12-17,0.55,1,0 +18736267,Bright and Tranquil Apartment,10805053,Devan,Brooklyn,Boerum Hill,40.68602,-73.98311,Entire home/apt,300,2,4,2018-11-12,0.37,1,311 +18736436,Garden Apartment of Eden,130331205,Robert,Brooklyn,Bedford-Stuyvesant,40.68692,-73.94699,Entire home/apt,99,2,7,2019-06-14,2.08,1,68 +18736455,Lexington Av. Zen Garden Apartment,2000711,Ori & Juanjo,Brooklyn,Bedford-Stuyvesant,40.68924,-73.92818,Entire home/apt,137,5,86,2019-07-07,3.34,1,191 +18736484,Minutes from JFK airport and famous mall,128086219,Hannah,Queens,Rosedale,40.65219,-73.73729,Private room,49,2,61,2019-03-25,2.36,2,65 +18736642,Super Spacious and Sunny Top-Floor 1BR in Brooklyn,16481892,Ben,Brooklyn,Prospect-Lefferts Gardens,40.66325,-73.94978,Entire home/apt,75,7,0,,,1,0 +18737053,"Private, cute, and cozy studio close to the subway",182461,Jose,Queens,Ozone Park,40.67555,-73.85653,Private room,39,2,21,2019-06-01,0.81,2,0 +18737220,Artists studio,7425132,Irina,Brooklyn,Kensington,40.63491,-73.96796,Entire home/apt,59,5,7,2019-06-14,0.80,1,140 +18737235,Brooklyn Garden Apartment,45763784,Julio,Brooklyn,Clinton Hill,40.68307,-73.96595,Entire home/apt,229,5,11,2019-05-28,1.22,2,0 +18737594,Brownstone in Clinton Hill Brooklyn,45763784,Julio,Brooklyn,Clinton Hill,40.68499,-73.96524,Entire home/apt,825,3,2,2018-09-28,0.19,2,44 +18738138,Huge room with private bathroom in East Harlem!,68762417,Simon,Manhattan,East Harlem,40.79376,-73.94679,Private room,125,1,19,2019-06-21,0.73,4,115 +18745141,Comfy Private Bedroom,22384027,Shahana,Brooklyn,Crown Heights,40.67064,-73.9178,Private room,39,1,41,2019-06-14,1.57,10,218 +18745314,Cozy Studio Apartment in Harlem/ Manhattan area,37078449,Kim,Manhattan,Harlem,40.80722,-73.95614,Entire home/apt,130,1,2,2017-05-23,0.08,1,0 +18745487,Private Studio-like room on the Upper West Side.,110520215,Leisa,Manhattan,Upper West Side,40.80066,-73.96813,Private room,500,1,0,,,1,173 +18745767,Large bright artistic apartment,2469662,Ruthie,Brooklyn,Bushwick,40.70249,-73.93025,Entire home/apt,80,2,5,2018-07-16,0.19,1,0 +18746696,"One Bedroom-One Bathroom in Greenpoint, Brooklyn.",1485117,Matt,Brooklyn,Greenpoint,40.72186,-73.94588,Entire home/apt,125,2,8,2017-12-30,0.31,1,0 +18747972,Moore St. Bushwick Loft,130400901,Halliday,Brooklyn,Williamsburg,40.70398,-73.93298,Entire home/apt,185,2,39,2018-12-27,1.50,1,0 +18748038,RIVER VIEWS- EAST 52ND LUXURY 1 BR APARTMENT,2856748,Ruchi,Manhattan,Midtown,40.75403,-73.96343,Entire home/apt,225,30,0,,,49,364 +18748170,Private bedroom in large sunny 3 BR/2BA,493545,Jennifer,Brooklyn,Crown Heights,40.67305,-73.94788,Private room,90,1,3,2018-11-11,0.34,2,179 +18750465,Beautiful studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74863,-73.9767,Entire home/apt,150,30,0,,,50,365 +18750505,Nicely Appointed Studio with Alcove for Bed,8010331,Ashley,Manhattan,East Harlem,40.80324,-73.9352,Entire home/apt,120,2,8,2019-05-29,0.34,1,11 +18750597,"Huge Brooklyn Brownstone Living, Close to it all.",8993084,Kimberly,Brooklyn,Bedford-Stuyvesant,40.69023,-73.95428,Private room,0,4,1,2018-01-06,0.05,4,28 +18751192,Room with Unbeatable Manhattan Skyline View,6676046,Kaila,Brooklyn,Greenpoint,40.72463,-73.95227,Private room,65,5,3,2018-06-12,0.13,1,0 +18751261,"Park, Subway & All Conveniences",130452689,Meredith,Brooklyn,Greenpoint,40.72357,-73.95057,Entire home/apt,225,2,2,2018-08-22,0.09,1,34 +18751687,Private room with private bathroom,73214623,Salah,Brooklyn,Williamsburg,40.71627,-73.93957,Private room,100,7,1,2019-03-24,0.28,1,365 +18752307,The Regal Crash Suite,130461656,King,Manhattan,Harlem,40.81372,-73.95612,Entire home/apt,195,1,51,2019-05-22,1.96,1,67 +18753406,Large King size bed private entrance 5 mins to NYC,51459559,Rossana,Queens,Astoria,40.75777,-73.91577,Private room,69,5,17,2018-06-03,0.65,2,208 +18753411,Private Room 2 Blocks From Central Park / UWS,109106746,Omer,Manhattan,Upper West Side,40.79948,-73.96314,Private room,75,1,5,2017-06-23,0.20,1,0 +18753645,Beautiful Brooklyn Apartment! Newly Renovated!,130473272,Carla,Brooklyn,Prospect Heights,40.6806,-73.97164,Entire home/apt,150,2,140,2019-06-27,5.61,1,94 +18755777,Nice and fully furnished room in Staten Island,130493959,Ely,Staten Island,Port Richmond,40.63748,-74.13496,Private room,40,1,63,2019-05-27,2.42,1,343 +18755951,Cute studio in perfect location near Union Square,130496399,Amy,Manhattan,East Village,40.73193,-73.98861,Entire home/apt,200,3,0,,,1,0 +18756112,Luxury 1 Bed Apt- Central Park View,119838600,Lu,Manhattan,Upper West Side,40.7932,-73.96385,Entire home/apt,260,3,1,2017-09-22,0.05,1,0 +18758108,Sunlit Room w/ private bath @ Upper West Manhattan,101304664,Shuting,Manhattan,Upper West Side,40.80225,-73.96633,Private room,60,3,4,2017-09-04,0.15,1,16 +18758370,Genie's Lamp Garden Apartment,130524170,Tracy,Brooklyn,South Slope,40.66615,-73.98554,Entire home/apt,150,2,88,2019-02-23,3.53,1,0 +18758525,Large studio-Luxury Building Times Square,65744549,Ava,Manhattan,Hell's Kitchen,40.75997,-73.99923,Entire home/apt,254,1,18,2018-09-07,0.72,1,0 +18762619,Cozy East Village Room,103265024,Maureen,Manhattan,East Village,40.72681,-73.98963,Shared room,58,1,0,,,1,0 +18763188,Luxe Penthouse with Terrace/Upper West Side,169653,Terry,Manhattan,Upper West Side,40.80005,-73.9701,Entire home/apt,295,3,3,2019-06-22,0.27,1,0 +18764827,Cozy Room in Newly Redone Place 35 min to Times Sq,31482341,Daniel,Manhattan,Inwood,40.86854,-73.9182,Private room,45,1,2,2018-01-25,0.11,2,0 +18766576,Nicer than average - on best block in Wash.Heights,130582015,Allison,Manhattan,Washington Heights,40.85391,-73.93649,Private room,50,3,18,2019-06-23,1.78,1,298 +18767695,Two bedroom apartment for rent in Brooklyn,3409436,Cheryl,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.9603,Entire home/apt,80,4,2,2019-06-21,0.08,1,0 +18767961,Spacious and Sunny Private Bedroom in Dumbo,1649108,Allie,Brooklyn,Vinegar Hill,40.70257,-73.98053,Private room,80,1,53,2019-06-01,2.33,3,21 +18768127,HUGE Studio up to 4 people 15 min to Manhattan.,30237517,David,Queens,Forest Hills,40.73526,-73.85065,Entire home/apt,88,3,6,2018-05-18,0.27,6,0 +18768741,Furnished Studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74819,-73.976,Entire home/apt,150,30,3,2018-10-30,0.14,50,180 +18768978,"Clean, Spacious Room on Upper West Side",27582777,Sean,Manhattan,Morningside Heights,40.80371,-73.96324,Private room,70,3,16,2018-11-27,0.70,1,0 +18769363,"Spacious, sunny bedroom in Williamsburg/Greenpoint",24387853,Anada,Brooklyn,Greenpoint,40.72247,-73.95108,Private room,98,1,1,2017-06-02,0.04,1,0 +18769652,Beautiful Williamsburg Loft,1890427,Rose & Brian,Brooklyn,Williamsburg,40.71813,-73.94502,Entire home/apt,250,2,9,2018-05-20,0.36,1,0 +18770418,LARGE 3 BEDROOMS UP 9 People 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73437,-73.85227,Entire home/apt,238,3,2,2019-03-31,0.09,6,188 +18771633,"4 twin bunkbeds, 5 minutes to JFK",114975592,John And Colleen,Queens,Springfield Gardens,40.66413,-73.76651,Private room,100,1,15,2019-02-05,0.62,4,84 +18772198,Clean Cozy & Comfy Apartment In NYC!,41658748,Ben,Manhattan,Gramercy,40.73742,-73.98219,Entire home/apt,265,2,58,2019-06-09,2.65,3,323 +18774244,FURNISHED * ONE BED * DOORMAN * LUXURY * GYM *,60511673,Natie,Manhattan,Theater District,40.76044,-73.98321,Entire home/apt,399,10,0,,,1,64 +18776660,East Williamsburg/Bushwick Loft,130667097,Paul,Brooklyn,Williamsburg,40.70492,-73.93341,Private room,55,1,25,2018-12-30,0.96,2,364 +18776908,Luminous studio in Union Square,2544425,Margot,Manhattan,East Village,40.73334,-73.98904,Entire home/apt,160,7,35,2019-06-23,1.40,1,7 +18776925,Williamsburg Family townhouse,40428152,John,Brooklyn,Williamsburg,40.71335,-73.94115,Entire home/apt,350,5,0,,,1,0 +18778024,Modern Bright Bedroom 30 seconds to Subway!,779551,Lana,Queens,Long Island City,40.75607,-73.93022,Private room,100,2,91,2019-06-23,3.54,2,21 +18782064,STUDIO ON WEST 56TH COLUMBUS CIRCLE~DOORMAN,2856748,Ruchi,Manhattan,Hell's Kitchen,40.76617,-73.98445,Entire home/apt,184,30,0,,,49,364 +18782857,SUTTON PLACE 1BR WITH VIEWS~EAST 57TH,2856748,Ruchi,Manhattan,Midtown,40.75794,-73.96143,Entire home/apt,315,30,0,,,49,364 +18783614,Oversized sun drenched loft in trendy Williamsburg,1156763,Marie-Astrid,Brooklyn,Williamsburg,40.71364,-73.96447,Entire home/apt,250,3,37,2019-06-08,2.35,1,174 +18785035,"Giant bedroom in Carroll Gardens, Brooklyn",130735852,Elsa,Brooklyn,Carroll Gardens,40.6737,-73.99891,Private room,77,2,18,2019-04-23,0.77,1,1 +18785349,12 Min to Manhattan! Spacious APT in Brooklyn,126897352,Jason & Mary,Brooklyn,Bushwick,40.70286,-73.91884,Entire home/apt,180,29,31,2019-01-03,1.19,2,147 +18787858,Fabulous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74814,-73.97693,Entire home/apt,150,30,1,2019-05-16,0.56,50,180 +18787950,Sun-drenched Apt in 1820's Style Home,2007724,Vanessa,Brooklyn,Crown Heights,40.67731,-73.94616,Entire home/apt,150,5,9,2019-01-02,0.35,1,78 +18789373,Whole apartment in Williamsburg 1 block to train,130774060,Fanny,Brooklyn,Williamsburg,40.70959,-73.95747,Entire home/apt,165,6,10,2019-05-15,0.39,1,18 +18789421,Peace in Brooklyn,130774685,Edmund,Brooklyn,Bedford-Stuyvesant,40.68843,-73.92536,Entire home/apt,125,3,96,2019-07-02,3.87,1,1 +18790004,Large 1 bed w/big kitchen & exposed brick,95786,Vincent,Manhattan,East Village,40.72791,-73.98929,Entire home/apt,150,10,5,2019-01-06,0.24,1,0 +18790512,Private Room in Beating Heart of NYC Art Scene,110349355,Justin,Brooklyn,Bushwick,40.70439,-73.92619,Private room,51,3,5,2017-09-19,0.19,1,0 +18791570,Small but cozy room near Park and Subway,33583621,Zachary,Brooklyn,South Slope,40.66458,-73.98722,Private room,53,3,70,2019-06-20,2.82,1,256 +18792188,Quiet and Clean Room in Downtown Manhattan,13907788,Kevin,Manhattan,Greenwich Village,40.73016,-74.00137,Private room,95,1,9,2018-09-17,0.36,1,0 +18792285,Clean and Comfortable Room near Columbia,55377720,Dan,Manhattan,Morningside Heights,40.81233,-73.95717,Private room,69,3,0,,,1,0 +18792703,Gorgeous studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75023,-73.97664,Entire home/apt,195,30,1,2017-12-10,0.05,50,365 +18793151,"Cozy Home, Great Location",4099467,Vincent,Manhattan,Lower East Side,40.72146,-73.98838,Entire home/apt,125,1,2,2018-01-01,0.08,1,0 +18793633,Beautiful 1 Bed near Washington Square Park!!,38609043,Lauren,Manhattan,Greenwich Village,40.73193,-73.99931,Entire home/apt,299,2,28,2019-07-07,1.15,1,64 +18793901,Quiet & sunny bedroom in central Williamsburg,12345174,Oday,Brooklyn,Williamsburg,40.71816,-73.95799,Private room,146,2,14,2018-10-28,0.62,1,0 +18794243,Brooklyn Room Close to Manhattan,26738513,Malachi,Brooklyn,Bushwick,40.69319,-73.91642,Private room,55,3,49,2019-04-20,1.90,3,13 +18794627,1st Floor Williamsburg Brownstone With Yard !,66941336,Stephanie,Brooklyn,Williamsburg,40.71258,-73.96341,Private room,50,2,6,2017-09-14,0.24,1,2 +18794680,HUGE ROOM -- BEST PRICE,32209352,Diana,Brooklyn,Bushwick,40.69573,-73.91376,Private room,65,2,17,2019-05-24,1.21,2,349 +18794754,Chic 1 Bedroom Apartment in Coveted West Village,51001918,Cameron,Manhattan,West Village,40.73776,-73.99794,Entire home/apt,165,4,1,2017-06-11,0.04,1,0 +18794969,Gorgeous Renovated Bedroom in Bushwick!,4297106,Franck And Joshua,Brooklyn,Bushwick,40.69079,-73.9163,Private room,41,30,56,2018-12-17,2.21,2,280 +18795229,Ground Floor Studio,130822245,Joe Berat,Queens,Rego Park,40.72661,-73.86046,Entire home/apt,70,1,89,2019-06-23,3.42,1,157 +18795447,Large Private Room in Heart of Diversity.,89071431,Ikello,Bronx,Mount Eden,40.84473,-73.91175,Private room,55,2,112,2019-06-30,4.65,1,271 +18795448,Brooklyn room with a view,2482085,Michelle,Brooklyn,Bedford-Stuyvesant,40.68415,-73.95641,Private room,55,2,0,,,1,0 +18795534,"Luxury Studio, Large Private Terrace near Times Sq",130835383,Melissa,Manhattan,Chelsea,40.75229,-73.9955,Entire home/apt,250,2,1,2017-08-06,0.04,1,0 +18802366,"Clean, Spacious Bedroom In the Heart of Harlem.",2435941,Tykia,Manhattan,Harlem,40.82402,-73.94537,Private room,73,2,24,2018-06-25,0.93,1,0 +18803064,Once Upon Avant-garde Bushwick,126159726,Steven,Brooklyn,Bushwick,40.69962,-73.91646,Private room,63,3,96,2019-06-24,3.70,1,282 +18803219,One COSO private room in 108th,28649974,Ding,Manhattan,Upper West Side,40.80152,-73.96696,Private room,50,1,0,,,1,0 +18805588,Downtown Flushing Penthouse with a Stunning View,5962328,Alan,Queens,Flushing,40.75872,-73.82174,Entire home/apt,183,30,2,2018-10-13,0.19,15,365 +18806061,One Bedroom with Workspace in a great location,2902737,Sonya,Brooklyn,Williamsburg,40.71015,-73.94747,Entire home/apt,91,31,0,,,1,68 +18806323,"Seaside Nest +#SeasideNestNYC",130897041,Robert,Queens,Arverne,40.58934,-73.80055,Entire home/apt,250,2,48,2019-06-30,1.93,1,280 +18808260,"Chill Private Room in Crown Heights, Brooklyn",125871624,Ruben,Brooklyn,Crown Heights,40.66931,-73.95215,Private room,55,2,3,2017-07-30,0.12,1,0 +18809063,Lovely apartment in Brooklyn,58528354,Karen,Brooklyn,Crown Heights,40.67537,-73.91822,Entire home/apt,85,2,42,2019-06-21,1.71,1,147 +18811187,"1BR: Int'l apt near Mt Sinai, Columbia, Cent Pk.",6752799,Zach,Manhattan,East Harlem,40.79712,-73.94689,Private room,50,25,0,,,2,71 +18811240,Sunny duplex w/outdoor space & easy train access,2978784,Karen,Brooklyn,Sunset Park,40.65379,-74.00272,Entire home/apt,150,7,6,2018-08-16,0.25,1,1 +18811557,The Treehouse Loft | Featured in Apartment Therapy,3754948,Jean,Manhattan,Lower East Side,40.72007,-73.98385,Entire home/apt,305,2,6,2018-12-31,0.43,1,66 +18812046,nice /clean env.10 mins from JFK with free parking,130974654,Joseph,Queens,Cambria Heights,40.68722,-73.73254,Private room,80,5,23,2018-11-25,1.00,1,83 +18812153,Luxurious studio near NYU Hospital,120762452,Stanley,Manhattan,Murray Hill,40.75044,-73.9753,Entire home/apt,150,30,4,2019-02-06,0.18,50,180 +18812330,A Guest Room in a Bushwick Artist/Musician's Loft,71849302,Dave,Brooklyn,Williamsburg,40.70798,-73.93652,Shared room,64,1,69,2019-06-22,3.04,1,81 +18812670,Midtown Luxury Living room close to Highline,130982506,Chen,Manhattan,Chelsea,40.75378,-74.00274,Private room,68,14,0,,,1,0 +18813227,"★Comfy Bedroom in Convenient, awesome location!★",51380878,Jean Paul,Brooklyn,Flatbush,40.65068,-73.96073,Private room,31,1,83,2019-06-16,3.28,2,37 +18817404,1 BR Greenpoint Abode,8833885,Leslie,Brooklyn,Greenpoint,40.72528,-73.94467,Private room,125,1,1,2018-04-26,0.07,2,0 +18820068,Extra-Large 1 bedroom in Sutton Place,23572402,Andrew,Manhattan,Midtown,40.75754,-73.96177,Entire home/apt,275,3,0,,,1,21 +18820446,Splendid studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74891,-73.97589,Entire home/apt,150,30,2,2017-12-30,0.09,50,365 +18822687,Amazing apt at Financial District Manhattan,98038838,Raviv,Manhattan,Financial District,40.70833,-74.01068,Private room,70,3,18,2018-12-16,0.69,1,0 +18822775,2 Rooms+Private Bath in Large Colonial House,107169456,James,Brooklyn,Flatbush,40.64561,-73.96962,Private room,90,1,46,2019-07-02,1.80,1,260 +18823516,PRIME LOCATION/SUNLIT ROOM 2,129927411,Andrea,Manhattan,Chinatown,40.71682,-73.99843,Private room,130,1,141,2019-06-24,5.44,2,76 +18823750,Stylish Park Slope loft,31804021,Thomas,Brooklyn,South Slope,40.66412,-73.98162,Entire home/apt,390,10,4,2018-09-03,0.17,1,115 +18823774,One bed Doorman Building Close to Park,113805886,Yaacov,Manhattan,Upper East Side,40.77896,-73.95146,Entire home/apt,160,31,6,2019-01-01,0.29,33,338 +18823930,Manhattan Luxury High-Rise Apt w/ Unbeatable Views,41382247,Dan,Manhattan,Hell's Kitchen,40.76011,-73.98828,Entire home/apt,275,1,0,,,1,0 +18823940,Bright room in hip bushwick location!,27522582,Gabriele,Brooklyn,Bushwick,40.70263,-73.91568,Private room,43,1,4,2017-05-28,0.15,3,0 +18823971,Gorgeous 1 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77299,-73.95745,Entire home/apt,119,30,3,2018-11-19,0.14,29,327 +18824754,"Sunny, private room !Sheepshead Bay Area.",74697676,Oksana,Brooklyn,Sheepshead Bay,40.59841,-73.96122,Private room,50,5,40,2019-06-19,1.57,1,321 +18824820,Newly renovated apartment for the travelers,76353083,Marlene,Brooklyn,Bergen Beach,40.62929,-73.90821,Entire home/apt,115,4,9,2018-03-07,0.36,1,50 +18826104,Beautiful sunny bushwick loft,22875538,Max,Brooklyn,Bushwick,40.70819,-73.92005,Private room,73,1,63,2019-01-03,2.45,2,0 +18826197,Room in 5 bedroom house with a backyard!,65407018,Harmony,Brooklyn,Greenpoint,40.72284,-73.93671,Private room,85,5,45,2019-05-28,1.79,5,355 +18826370,Heights III,9130040,Candace,Brooklyn,East Flatbush,40.66314,-73.93299,Private room,89,1,8,2019-06-30,0.61,6,365 +18828134,Manhattan Central Location Clean Big ENTIRE Studio,131109595,Xinchen,Manhattan,East Village,40.72772,-73.98091,Entire home/apt,75,4,0,,,1,0 +18828803,Amazing Apt step away from the Time Square/72C,48146336,Irina,Manhattan,Hell's Kitchen,40.76136,-73.99309,Entire home/apt,160,30,4,2018-06-16,0.17,20,313 +18828846,"Private Studio Apartment, Staten Island, NYC",131115416,Kat,Staten Island,Emerson Hill,40.60642,-74.11756,Entire home/apt,49,1,43,2019-07-01,1.67,1,64 +18835820,"Quiet, Cozy UES Studio Near the Subway",52777892,Amy,Manhattan,Upper East Side,40.76844,-73.95341,Entire home/apt,10,3,10,2018-10-22,0.39,1,0 +18836337,Modern Comfort,95564806,Olvin,Brooklyn,Brownsville,40.66032,-73.91341,Private room,55,2,58,2019-02-25,2.25,3,0 +18836532,"Spacious Ocean-Side Studio in +Brooklyn w/Parking",131180798,Maria,Brooklyn,Bath Beach,40.59855,-74.0067,Entire home/apt,119,2,51,2019-07-07,2.01,1,160 +18837073,"Bright, Modern Apt with Hi Speed Wifi! #10222",14480781,Dave,Brooklyn,Crown Heights,40.67578,-73.95491,Entire home/apt,85,30,20,2019-04-16,0.82,1,182 +18837416,*Luxury 1 Bedrm Private Designer Home & Roofdeck*,3203397,Brian,Manhattan,West Village,40.73321,-74.00242,Entire home/apt,350,1,105,2019-05-26,4.63,1,0 +18838643,Private bedroom in West Soho/West Village,3714721,James,Manhattan,SoHo,40.72681,-74.00771,Private room,76,2,60,2019-06-21,2.37,2,116 +18838909,Beautiful Seaview apt. Gated community. Near JFK.,131204454,Ronn,Brooklyn,Canarsie,40.63959,-73.88158,Entire home/apt,46,1,58,2019-07-05,2.29,1,80 +18840106,Master Bedroom-private bath&terrace -Williamsburg,78299086,Charlotte,Brooklyn,Williamsburg,40.70858,-73.9509,Private room,95,5,0,,,1,0 +18840683,"Quiet, 2-Bedroom Haven in hip Crown Heights",3323956,Saxon,Brooklyn,Crown Heights,40.67522,-73.94677,Entire home/apt,79,4,2,2019-02-11,0.08,1,0 +18840688,"Prime Williamsburg Modern Charm, steps to park",34676783,Natasha,Brooklyn,Greenpoint,40.71966,-73.95428,Entire home/apt,350,2,5,2018-09-17,0.20,1,0 +18840735,Light & Cozy SoHo Hacienda,130815919,Frank,Manhattan,SoHo,40.72633,-74.00207,Entire home/apt,205,2,109,2019-07-01,4.29,1,32 +18840866,Private Room with Private Bath Upper East Side,19424541,Barbara,Manhattan,Upper East Side,40.76749,-73.96246,Private room,190,1,15,2019-05-24,0.68,2,63 +18841864,Sunny apartment in Clinton Hill,2294171,Ro,Brooklyn,Clinton Hill,40.68318,-73.96067,Entire home/apt,120,2,1,2017-05-29,0.04,1,0 +18842507,Luxury Apt Financial Dist. steps from Wall Street,10355011,Luidmila,Manhattan,Financial District,40.71017,-74.00924,Private room,135,3,76,2019-06-30,2.93,1,338 +18842510,HuGe 8 Bed's / 2 Full Bath's + PRiVaTe BALCONY!!,31979360,Jacob,Brooklyn,Midwood,40.61421,-73.95347,Entire home/apt,111,90,0,,,1,365 +18842882,Kosher Midwood/Flatbush Apartment,57821225,Alyssa,Brooklyn,Midwood,40.62017,-73.96514,Entire home/apt,85,7,1,2017-07-29,0.04,1,0 +18844533,"1st Floor Suite with AC, private entry, and bath",131255262,Michael,Manhattan,Upper West Side,40.80292,-73.96692,Private room,80,1,42,2018-08-09,1.70,1,0 +18847331,Zen Private Rm with roof access in Upper Manhattan,7635592,Adrienne,Manhattan,Washington Heights,40.85031,-73.93901,Private room,49,7,10,2019-06-01,0.46,1,76 +18848869,Bedroom in a Cozy Apartment,131293304,Tobi,Manhattan,Harlem,40.81711,-73.93563,Private room,51,2,21,2019-06-02,0.87,1,0 +18849349,Chelsea Studio (King bed + convertible full sofa),50778925,Shary,Manhattan,Chelsea,40.74154,-74.00161,Entire home/apt,149,5,6,2019-05-05,0.24,1,0 +18849787,Large & sunny bedroom in heart of Williamsburg!,46113651,Andres,Brooklyn,Williamsburg,40.71275,-73.95665,Private room,55,1,0,,,1,0 +18851906,2 bed home in Upper West-4 people fit!,59884496,Liliana,Manhattan,Upper West Side,40.77127,-73.98191,Entire home/apt,270,2,8,2018-12-31,0.43,1,0 +18852048,"Clean, spacious and comfortable room at Bronx",108922928,Zeeshan,Bronx,Allerton,40.85961,-73.86361,Private room,49,3,1,2017-06-01,0.04,1,0 +18852200,Comfy Single Bedroom-Large East Village Apartment,42422050,Paula,Manhattan,East Village,40.72696,-73.97433,Private room,75,2,19,2019-04-29,0.99,2,303 +18852245,Beautiful Room in Historic Hamilton Heights,835019,Yasmin,Manhattan,Harlem,40.82265,-73.94686,Private room,55,21,7,2019-04-30,0.29,1,286 +18852919,THE PERFECT QUIET ATMOSPHERE WHEN HOME,129890157,Pauline,Bronx,Allerton,40.87063,-73.84896,Private room,70,1,3,2017-06-12,0.12,2,0 +18853435,B1Cozy Room in Long Island City Great Location.,79105834,Leo,Queens,Long Island City,40.75575,-73.93236,Private room,54,1,73,2019-06-10,2.89,9,279 +18855394,Cozy private bedroom,516015,David,Brooklyn,Williamsburg,40.70648,-73.95686,Private room,55,5,2,2017-06-21,0.08,1,0 +18855694,SOHO/NOLITA GEM (NYC's BEST LOCATION),764549,Joe,Manhattan,Nolita,40.72184,-73.99471,Private room,142,2,44,2019-06-12,1.82,1,246 +18855750,Flushing Haven (B),131354448,Tammie,Queens,Flushing,40.75402,-73.81317,Private room,50,2,54,2019-06-24,2.09,4,174 +18855980,Close by La Guardia airport,109526714,Aleida,Queens,East Elmhurst,40.76078,-73.87661,Private room,50,1,97,2019-06-27,3.86,2,149 +18856302,Immaculate and beautiful 2 BDR private apartment,130618404,Rachel,Brooklyn,Crown Heights,40.67155,-73.94189,Entire home/apt,109,1,93,2019-06-30,3.66,1,79 +18857134,Private Small Bedroom in Hell's Kitchen,131374030,Steven,Manhattan,Hell's Kitchen,40.76387,-73.99117,Private room,100,1,9,2017-12-28,0.35,1,0 +18857790,Private bedroom in a quiet and safe neighborhood,55813598,Karen,Brooklyn,Gravesend,40.60788,-73.97454,Private room,40,1,95,2019-07-06,3.69,2,354 +18857875,Cozy 1BR with private bathroom. Near everything!,131383679,Antonella,Manhattan,Upper West Side,40.78663,-73.97844,Private room,100,1,14,2018-07-27,0.55,1,24 +18858192,Sweet Home Away from Home - 1 Bedroom Apt,71146310,Patrick,Queens,Glendale,40.70515,-73.8945,Entire home/apt,99,4,62,2019-06-23,2.41,1,81 +18858761,Private Entrance Astoria Five min walk to subway,131392140,Vik,Queens,Astoria,40.77407,-73.92262,Entire home/apt,125,2,49,2019-03-17,1.99,5,86 +18865511,Bed Stuy Private Room - Hip Brooklyn Neighborhood,1652471,Sarah,Brooklyn,Bedford-Stuyvesant,40.68607,-73.95784,Private room,75,2,5,2018-01-07,0.20,1,16 +18866187,Carroll Gardens Modern Sunny Loft,4463379,Katy,Brooklyn,Gowanus,40.67718,-73.99656,Entire home/apt,350,3,0,,,1,0 +18867401,Studio apartment close to Central Park,128579948,Giampiero,Manhattan,Upper East Side,40.76439,-73.96569,Entire home/apt,250,2,85,2019-06-27,3.28,2,306 +18869228,CHARMING STUDIO HALF BLOCK TO CENTRAL PARK UWS,9293730,Inna,Manhattan,Upper West Side,40.78569,-73.97048,Entire home/apt,79,30,1,2017-10-16,0.05,16,329 +18869692,Beautiful Bright bedroom with private bathroom,1750299,Julie,Brooklyn,Williamsburg,40.71173,-73.94417,Private room,90,5,13,2019-06-16,0.60,2,255 +18870016,Cozy room in the heart of LES!,920237,Sara,Manhattan,Lower East Side,40.71826,-73.98455,Private room,80,2,42,2019-06-24,1.64,1,71 +18870281,Room in Ditmas Park Brooklyn,131476188,Kylie,Brooklyn,Flatbush,40.64917,-73.96236,Private room,29,3,0,,,1,0 +18870342,"Spacious and Beautiful 1 Bedroom Astoria, New York",131476092,Frederick,Queens,Long Island City,40.76151,-73.92643,Entire home/apt,85,4,13,2018-09-26,0.51,1,0 +18871455,Exquisite Single Bedroom in Shared Apartment C9,20559017,Yohan,Manhattan,Upper East Side,40.76312,-73.96045,Private room,55,30,1,2017-10-02,0.05,9,321 +18871571,"Sunny 1 Bedroom Apt, Lower East Side, Manhattan",26898157,Lilly,Manhattan,Lower East Side,40.71921,-73.99238,Private room,150,3,77,2019-06-17,3.10,1,59 +18871734,Best of Brooklyn - Williamsburg 2 Bed/2 Bath Apt,13096043,David,Brooklyn,Williamsburg,40.71666,-73.96644,Entire home/apt,250,4,40,2019-07-06,1.58,1,41 +18872076,The Peace Pad- 1 bedroom Full Bed,15017590,Kathleen,Manhattan,Harlem,40.82896,-73.94223,Private room,50,1,2,2017-06-09,0.08,1,0 +18872091,Traveler's Cabin,45605434,Adam,Queens,Long Island City,40.76365,-73.93192,Private room,60,30,4,2018-09-16,0.16,1,0 +18872495,Spacious room near the Midtown-close to everything,19339271,Marcia,Queens,Long Island City,40.74752,-73.92264,Private room,60,1,7,2017-11-12,0.32,1,0 +18872858,Elegant Studio in a great cottage,57165692,Charles,Bronx,Baychester,40.87188,-73.842,Entire home/apt,75,4,69,2019-07-06,2.68,2,119 +18873598,Lovely one bedroom suite in midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74966,-73.97601,Entire home/apt,175,30,0,,,50,180 +18873722,"Sunny cozy Bedstuy Room, 25 min from Manhattan",78711394,Julian,Brooklyn,Bedford-Stuyvesant,40.69244,-73.94575,Private room,33,6,0,,,1,0 +18873930,Furnished one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.7496,-73.97609,Entire home/apt,175,30,5,2018-12-03,0.21,50,147 +18874394,Lovely Caroll Garden 3BRs with large private deck,62734,Kremer,Brooklyn,Gowanus,40.67882,-73.99166,Entire home/apt,119,60,4,2018-06-09,0.19,2,156 +18874640,Stunning 2 Bedroom Apartment,13347167,AFI Apartments,Manhattan,Upper East Side,40.77296,-73.95711,Entire home/apt,148,30,2,2019-05-09,0.52,29,264 +18875426,Uber Zen Clean Modern Apartment in E-Williamsburg,33003994,Lima,Brooklyn,Williamsburg,40.70741,-73.94285,Private room,77,6,30,2019-04-02,1.19,1,71 +18875512,Great spot!Super convinient location and cozy Home,91361325,Kat Kat,Manhattan,Gramercy,40.73318,-73.98436,Entire home/apt,118,3,103,2019-07-03,4.02,1,17 +18875740,Cozy Bedroom in the heart of Manhattan,11163128,A,Manhattan,Hell's Kitchen,40.76221,-73.98891,Private room,350,3,28,2018-12-20,1.11,1,76 +18875994,Luxurious and Convenient 1 bedroom on the UWS,25822424,Kevin,Manhattan,Upper West Side,40.79166,-73.97319,Entire home/apt,170,3,0,,,1,0 +18876580,Private Bedroom in Lovely Astoria Home,131530387,Kerith,Queens,Astoria,40.75704,-73.92135,Private room,60,1,129,2019-07-03,5.11,1,95 +18876659,Private House Near Bay and Coney Island Park,131530792,Anton,Brooklyn,Sheepshead Bay,40.59019,-73.96123,Entire home/apt,105,2,22,2018-09-30,0.87,1,0 +18877341,One bedroom with private roof deck,4175606,Wilder,Brooklyn,Bushwick,40.69671,-73.92628,Entire home/apt,100,4,25,2019-06-12,1.05,1,56 +18877694,Cozy Guestroom ,131354448,Tammie,Queens,Flushing,40.75364,-73.8108,Private room,50,2,51,2019-06-24,1.98,4,156 +18878093,"Hip yet chic *private room* +10 minutes to city",73866735,Ashley,Brooklyn,Williamsburg,40.71066,-73.94127,Private room,65,1,1,2019-07-04,1,1,110 +18878260,Dreamy Leafy Tranquility for families + new SUV!,5374369,Chelsea And Alistair,Brooklyn,Carroll Gardens,40.68329,-73.99764,Entire home/apt,245,3,24,2019-07-01,0.97,1,13 +18878633,"Great location, spacious room, close to train!",71149842,Yaasha,Manhattan,East Village,40.7291,-73.97941,Private room,80,1,8,2018-05-28,0.31,2,0 +18879379,Time Square private studio,3291930,Mark,Manhattan,Hell's Kitchen,40.75888,-73.99077,Entire home/apt,155,1,0,,,1,0 +18888212,"One bedroom, spacious in 3 bedrooms 2 baths",56265076,Andrea,Queens,Kew Gardens Hills,40.7224,-73.81039,Private room,40,6,3,2019-06-03,0.30,2,89 +18888585,1 bedroom in 4 BR 1 bath Apt females only,131621761,Annette,Brooklyn,East Flatbush,40.65292,-73.94269,Private room,50,1,0,,,1,0 +18889038,Quiet Bedroom in prime Park Slope!,80333891,Mai,Brooklyn,Park Slope,40.67386,-73.98439,Private room,40,7,2,2017-07-21,0.08,2,0 +18889564,Bright West Village Private Studio,65933105,Tori,Manhattan,West Village,40.73267,-74.00404,Entire home/apt,254,2,4,2017-11-26,0.17,1,0 +18889932,Beautiful cozy spacious Room near Park,11361046,Narina,Brooklyn,Crown Heights,40.66847,-73.94981,Private room,80,5,18,2018-04-30,0.72,1,312 +18890521,Updated: renovated 3 bedroom apt in Brooklyn.,131635044,Zoom Imports,Brooklyn,Bedford-Stuyvesant,40.6792,-73.93071,Entire home/apt,299,2,59,2019-06-16,2.31,1,180 +18891508,Private room#3 starting at $67 a night per person.,9898029,Anthony,Brooklyn,East Flatbush,40.6506,-73.92553,Private room,67,3,6,2019-05-19,0.27,5,307 +18891659,Private Upper East Side Room Great Location!,27552154,Sylvia,Manhattan,Upper East Side,40.76275,-73.96093,Private room,110,2,9,2018-02-19,0.36,2,0 +18892465,Chelsea Studio,15474495,Stacy,Manhattan,Chelsea,40.73884,-73.99767,Private room,150,1,1,2017-06-19,0.04,1,0 +18893669,"Master Bedroom w/ TV, AC, King Sized Bed",31314659,Muneer,Manhattan,East Harlem,40.79439,-73.94129,Private room,75,7,0,,,1,0 +18894145,"Bright, Beautiful & Welcoming in Williamsburg",24589216,Heidi,Brooklyn,Williamsburg,40.70849,-73.9619,Private room,80,1,19,2019-02-02,1.11,2,0 +18894322,"Spacious, Family-Friendly Cobble Hill townhouse",19001247,Lindsay,Brooklyn,Carroll Gardens,40.68333,-73.99802,Entire home/apt,800,3,1,2017-12-30,0.05,1,0 +18894445,Practical & Affordable Flat on Subway to Manhattan,2988712,Sasha,Bronx,Mount Hope,40.85152,-73.90374,Entire home/apt,48,90,2,2018-11-30,0.16,7,93 +18894931,Private Room in 2Br Apt,37032324,Jen,Brooklyn,Bedford-Stuyvesant,40.69334,-73.95079,Private room,52,6,5,2018-12-10,0.20,1,0 +18895063,Lovely Upper East Side Studio! Close to stuff,34649502,Pat,Manhattan,Upper East Side,40.77948,-73.95152,Entire home/apt,200,2,1,2017-06-20,0.04,1,0 +18895187,Cheap cozy room lovely area airport and mall 10min,45601111,Dlb,Queens,Laurelton,40.66971,-73.7473,Private room,37,2,8,2018-11-10,0.37,5,0 +18895509,Luxurious 1/1.5 (sleeps 4!) in Battery Park!,9484439,Nicole,Manhattan,Battery Park City,40.71842,-74.01523,Entire home/apt,200,1,4,2017-06-25,0.16,1,0 +18896540,PRIVATE BATHROOM AND KITCHEN AREA,131684478,Mervin (Michael),Staten Island,West Brighton,40.63452,-74.11707,Private room,45,2,47,2019-02-01,1.89,3,207 +18896824,Luxury Coliving Space in Modern Loft,4440278,Emmanuel,Brooklyn,Williamsburg,40.71143,-73.94009,Private room,119,3,10,2019-04-21,0.39,3,180 +18897119,法拉盛中心公寓楼高层,123646786,Zheng,Queens,Flushing,40.75575,-73.83261,Private room,60,2,45,2019-05-06,1.77,2,45 +18897423,Modern & Industrial LIC Accomodations,127560222,Christina,Queens,Long Island City,40.75578,-73.93666,Private room,259,2,3,2018-12-05,0.22,2,0 +18897901,Doll private room,17766289,Kaila,Bronx,Kingsbridge,40.86707,-73.90712,Private room,55,5,3,2018-01-06,0.12,2,364 +18898808,BK's Finest Jack&Jill ShareRoom Close to Train/Bus,50600973,Joyell,Brooklyn,Bushwick,40.69674,-73.92972,Shared room,25,1,105,2019-06-12,4.22,7,82 +18899768,Amazing private room in a 2 Bed/1Bath apartment!,14614795,Antonio,Manhattan,Upper East Side,40.76615,-73.95427,Private room,90,2,1,2017-06-09,0.04,1,0 +18902729,3Beds/Kitchen/wifi/US Open唐人街电梯公寓/厨卫/网快/美网赛事,80769114,Yoga,Queens,Flushing,40.75851,-73.8203,Entire home/apt,98,1,34,2019-06-20,1.38,1,55 +18906081,1-BR en-suite in prestige Brownstone home,9492212,Emily And Joel,Brooklyn,Park Slope,40.67075,-73.9769,Private room,149,1,0,,,4,0 +18907166,Midtown Manhattan at 45th Street,81128193,Norman,Manhattan,Midtown,40.75301,-73.97198,Private room,515,3,0,,,1,0 +18908083,2 Bedroom Garden Level Apartment,33075648,Kenny,Brooklyn,Bushwick,40.69292,-73.9094,Entire home/apt,137,4,61,2019-06-30,2.36,1,126 +18908212,Beautiful/Cozy 2BR Apartment,131772382,Eileen,Brooklyn,Bushwick,40.69297,-73.91788,Entire home/apt,70,2,93,2019-07-02,3.68,1,142 +18908252,Master bedroom in a two bedroom apartment.,11555258,Patrick,Brooklyn,Kensington,40.64249,-73.97105,Shared room,60,4,1,2018-08-05,0.09,2,0 +18908490,Spacious Studio steps from Central Park,7093861,Jeffrey,Manhattan,Upper West Side,40.77356,-73.98007,Entire home/apt,200,3,22,2019-07-07,0.90,1,28 +18908638,Renovated 20min train to enter city 5min to subway,20438455,Jason,Brooklyn,Borough Park,40.63993,-73.98209,Private room,50,2,118,2019-07-03,4.66,2,45 +18908676,"Big, bright room in bushwick in 3BR",119170289,Bam,Brooklyn,Bushwick,40.69501,-73.92538,Private room,45,3,4,2019-06-24,0.16,2,8 +18908677,Large private studio: Midtown West/Hell’s Kitchen,87315657,Hsiao,Manhattan,Hell's Kitchen,40.7625,-73.99568,Entire home/apt,125,2,6,2018-09-24,0.32,1,0 +18909484,"Cute, Cozy & Clean!",131783806,Cat,Manhattan,Washington Heights,40.85152,-73.93804,Private room,45,2,8,2017-06-29,0.31,1,0 +18909989,Bushwick loft,32880142,Kirstin,Brooklyn,Bushwick,40.70919,-73.92158,Private room,45,2,0,,,1,0 +18910029,Spacious 2 Bd Apartment in Central Park North,438083,Kanyi,Manhattan,Harlem,40.80115,-73.95262,Entire home/apt,112,3,1,2017-06-12,0.04,1,0 +18910492,Beautiful Room in the Heart of Astoria with view,131792379,George,Queens,Astoria,40.76834,-73.92093,Private room,55,1,0,,,1,0 +18911463,"Affordable, UES, Studio near Central Park",6759067,Bryon,Manhattan,Upper East Side,40.77127,-73.95493,Entire home/apt,105,2,21,2018-02-21,0.82,1,0 +18911633,Quiet 1-Bedroom in Greenwich Village,22781364,Dan,Manhattan,Greenwich Village,40.73002,-73.99804,Entire home/apt,175,3,3,2017-09-04,0.12,1,0 +18911893,BROWNSTONE BUILDING IN CLINTON HILLS,33977124,Donovan,Brooklyn,Bedford-Stuyvesant,40.68704,-73.95565,Private room,65,2,0,,,2,189 +18912084,"A spacious, private room flooded with light!",17419817,Michelle,Brooklyn,Fort Greene,40.68707,-73.97345,Private room,96,2,11,2018-10-22,0.43,1,0 +18913001,Renovated 1BR - A Different Side of Manhattan,45777549,Zach,Manhattan,Inwood,40.86739,-73.92,Entire home/apt,78,4,7,2018-07-08,0.29,1,0 +18913089,MASTER SUITE in 3 Story Loft in an old BK Church,23568850,Olivia,Brooklyn,Williamsburg,40.71592,-73.95666,Private room,120,3,4,2017-09-24,0.16,1,0 +18913450,Light Filled Private Room,27982346,Christopher,Manhattan,East Harlem,40.79729,-73.93537,Private room,49,7,5,2017-12-29,0.21,1,0 +18914656,Private Oasis (A),131354448,Tammie,Queens,Flushing,40.7547,-73.81238,Private room,66,2,56,2019-06-23,2.27,4,63 +18914730,IDEALLY LOCATED COZY COTTAGE,1776707,Luis,Bronx,Throgs Neck,40.83051,-73.82511,Entire home/apt,95,1,266,2019-06-28,10.34,1,345 +18915587,Bright and Sunny Brooklyn Sanctuary,60626720,Timothy,Brooklyn,Bushwick,40.69811,-73.9311,Private room,43,3,2,2017-06-01,0.08,1,0 +18915658,"Sunny, clean & friendly Williamsburg room",45935367,Ellena,Brooklyn,Williamsburg,40.70736,-73.95571,Private room,70,1,39,2019-06-25,2.03,1,2 +18916381,Large Park Slope Home with Private Garden,6252064,Amy,Brooklyn,Sunset Park,40.65969,-73.99248,Entire home/apt,265,2,20,2019-06-02,0.79,1,41 +18916610,Brooklyn Precious Gem,126176275,Audrey,Brooklyn,East Flatbush,40.63683,-73.93123,Private room,44,4,24,2019-06-23,1.07,4,87 +18916850,Sunny Bedroom in the Heart of Bushwick!!!,44679058,Daniel,Brooklyn,Bushwick,40.69976,-73.9319,Private room,35,2,2,2017-06-28,0.08,1,0 +18916917,Dynamic Solitude,32613511,Geetika,Manhattan,Midtown,40.74384,-73.98243,Shared room,55,1,1,2017-05-29,0.04,1,0 +18917540,Sunny Modern Bedroom 30 seconds from Subway!,779551,Lana,Queens,Long Island City,40.75844,-73.93154,Private room,100,2,13,2019-01-04,0.51,2,0 +18917771,Roomy! Clean! 2 Bedroom in Bensonhurst- Sleeps 9,131858158,Dan,Brooklyn,Bensonhurst,40.60683,-73.99743,Entire home/apt,123,2,62,2019-06-30,2.48,2,131 +18922939,Harlem Home Away from Home!,15553988,Arielle,Manhattan,Harlem,40.82843,-73.94672,Entire home/apt,100,3,4,2019-06-25,0.16,1,0 +18923188,Spectacular pool 2 Bed 1 Bath Huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77895,-73.94974,Entire home/apt,200,31,3,2018-12-03,0.19,33,281 +18924273,Private Budget Room for Awesome Guests #2,97018938,Ude,Brooklyn,Canarsie,40.63895,-73.90868,Private room,50,1,74,2019-06-15,2.88,2,179 +18924446,Peaceful cozy place in the middle of the crowds.,57230304,Imanuelly,Queens,Elmhurst,40.73218,-73.88461,Private room,75,1,1,2019-05-05,0.46,3,364 +18924938,"Oasis in Stuyvesant Heights, Brooklyn",131910116,Marc,Brooklyn,Bedford-Stuyvesant,40.68512,-73.93607,Entire home/apt,225,3,34,2019-07-01,1.52,1,258 +18926057,Cozy Bohemian chic apt in Bed-stuy,87371335,Massy,Brooklyn,Bedford-Stuyvesant,40.68539,-73.94973,Private room,51,2,39,2019-06-17,1.55,1,276 +18927333,Sunset & Chill: Master BR Sunset Park brownstone,3955342,Samuel,Brooklyn,Sunset Park,40.64478,-74.01318,Private room,45,7,3,2017-07-11,0.12,1,0 +18929564,Charming Brooklyn Townhouse Close to Subways,6271674,Alexandra,Brooklyn,Crown Heights,40.66482,-73.95345,Entire home/apt,125,3,2,2018-01-02,0.11,1,0 +18929965,Private bedroom - Next to Subway & Central Park,92650708,Kristen,Manhattan,Upper East Side,40.76422,-73.96612,Private room,88,1,59,2019-06-29,2.34,1,34 +18931423,**Cozy Space - Private Access**,10655479,Tom,Brooklyn,East Flatbush,40.6497,-73.94754,Private room,70,2,85,2019-06-23,3.33,1,16 +18931595,Room in Apt near Central Park & Columbia,20812159,Gio,Manhattan,Harlem,40.80214,-73.95658,Private room,55,2,8,2017-07-29,0.31,1,0 +18932586,Completed New studio @ Luxury apartment,35405054,Luo,Queens,Long Island City,40.75027,-73.94236,Entire home/apt,104,1,7,2017-11-26,0.28,1,0 +18933994,"△PENN STATION ,Private room with Full kitchen△",131985573,James,Manhattan,Chelsea,40.75118,-73.99902,Private room,90,2,39,2019-06-06,1.56,1,17 +18934106,JFK 10 & LGA 15 MINUTES AC BEDROOM ATTCH BATHROOM,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69482,-73.82551,Private room,59,1,123,2018-08-14,4.85,5,0 +18934728,A Place of Comfort,131848646,Modesta,Manhattan,Washington Heights,40.83827,-73.94393,Private room,55,7,26,2019-06-29,1.06,1,57 +18935148,Cozy Paradise,131993336,David,Queens,Forest Hills,40.71923,-73.85189,Private room,175,1,47,2019-06-23,2.14,2,176 +18935359,Magnificent Lakeview Home on Kissena Park in NYC,23234988,Ann,Queens,Flushing,40.74982,-73.8061,Entire home/apt,1500,3,0,,,6,256 +18935508,Entire space !!! Yours alone! New building,43252773,Karim,Manhattan,Harlem,40.81119,-73.94751,Entire home/apt,199,2,5,2019-06-02,0.24,2,61 +18942038,Lovely and quiet studio in Bushwick,12155032,Clemence,Brooklyn,Bushwick,40.69412,-73.91039,Entire home/apt,150,3,6,2018-07-05,0.27,1,0 +18942119,Studio apartment near Columbus Circle/Central Park,4264890,Amedeo,Manhattan,Midtown,40.76461,-73.98263,Entire home/apt,145,3,66,2019-06-10,2.61,1,9 +18942156,Extreme Luxury Apt @ Times Sq w amazing river view,2340947,Lym,Manhattan,Hell's Kitchen,40.76224,-73.99909,Entire home/apt,220,3,8,2017-09-27,0.31,1,0 +18942358,Park Slope 2 bedroom garden apartment,131622175,Raymond,Brooklyn,Park Slope,40.66723,-73.97607,Entire home/apt,105,10,4,2019-05-31,0.20,1,258 +18942735,Spacious 2 Room Duplex with Epic Yard - Sleeps 6,5153110,Andrew,Brooklyn,Crown Heights,40.67125,-73.95782,Entire home/apt,185,3,9,2018-10-09,0.41,1,0 +18943821,"1 bedroom in Bushwick , Brooklyn",107579819,Tal,Brooklyn,Bushwick,40.69491,-73.92581,Private room,45,3,8,2019-03-15,0.31,2,0 +18944834,Huge private bedroom in the heart of Manhattan,5295202,Uly,Manhattan,Upper East Side,40.76387,-73.9618,Private room,115,2,42,2019-06-29,1.69,1,38 +18946091,Beautiful Bay Ridge room,62475681,Nina,Brooklyn,Fort Hamilton,40.62327,-74.03543,Private room,90,6,0,,,1,365 +18946105,Peaceful Garden Oasis in Heart of Park Slope,127681510,Maya,Brooklyn,Park Slope,40.66682,-73.9768,Entire home/apt,200,2,80,2019-07-06,3.43,1,70 +18946117,Sunny 2 bedroom apartment on Upper East Side,590825,Alex,Manhattan,Upper East Side,40.77559,-73.95033,Entire home/apt,160,2,2,2017-08-12,0.08,1,0 +18946376,"Small cute bedroom in Astoria, Queens/LIC",22899212,Carmen,Queens,Ditmars Steinway,40.77204,-73.90868,Private room,35,26,1,2017-09-02,0.04,1,0 +18946416,Beautiful Brooklyn Brownstone,19867664,Cheryl,Brooklyn,Crown Heights,40.671,-73.94703,Entire home/apt,200,1,105,2019-07-06,4.57,2,274 +18948184,Upper East Side Oversized Studio,132103681,Kelly,Manhattan,Upper East Side,40.78285,-73.94875,Entire home/apt,129,30,2,2017-06-24,0.08,1,0 +18948914,MODERN GARDEN 1BR IN NEWLY RENOVATED TOWNHOUSE,70804640,Akiko,Brooklyn,Bedford-Stuyvesant,40.68378,-73.95592,Entire home/apt,1067,2,64,2019-06-29,2.51,1,32 +18949137,"Clean and Simple 1-Bedroom, Steps from University",33683538,Frank,Manhattan,Morningside Heights,40.81002,-73.95958,Entire home/apt,120,12,11,2019-04-22,0.43,1,0 +18949153,Sunny One Bedroom off the Park,25391872,Pavel,Brooklyn,Prospect-Lefferts Gardens,40.65585,-73.95582,Entire home/apt,105,1,7,2017-06-30,0.27,1,0 +18949917,Workspace Room 2,9864136,Anthony,Brooklyn,Bushwick,40.68603,-73.91438,Private room,36,2,8,2018-08-22,0.37,26,311 +18950091,"Big and Comfy in Crown Heights, Brooklyn",106351521,Andrew,Brooklyn,Prospect-Lefferts Gardens,40.66268,-73.94963,Private room,100,2,0,,,1,0 +18956236,Luxe Loft Apartment-10 minutes from Manhattan!,132178349,Francis,Queens,Long Island City,40.7476,-73.94433,Private room,74,4,34,2019-05-15,1.38,1,8 +18957055,Spacious Studio - Near Park & MTASubway,35201199,Ali,Brooklyn,Windsor Terrace,40.64882,-73.97629,Entire home/apt,68,2,5,2017-09-24,0.20,1,0 +18957522,Entire One Bedroom Apt-Great Location In Manhattan,37100193,Michelle,Manhattan,Midtown,40.75452,-73.96634,Entire home/apt,122,1,120,2019-06-21,5.03,1,220 +18957774,1 bedroom UWS,132194726,Carlos,Manhattan,Upper West Side,40.78841,-73.97461,Entire home/apt,200,5,0,,,1,0 +18958323,Tranquility,21190402,David,Staten Island,Emerson Hill,40.60577,-74.12819,Private room,85,1,0,,,1,0 +18958355,Delightful LIC Brownstone,57643057,Daniel,Queens,Long Island City,40.74617,-73.94645,Private room,71,7,94,2019-06-16,3.66,2,194 +18958724,GIANT BUSHWICK ROOM - PRIVATE ACCESS - SHARED APT,40510005,Hugo,Brooklyn,Bushwick,40.68923,-73.9154,Private room,50,1,11,2017-07-28,0.44,1,0 +18959626,"Grand Central. Clean, Quiet & Elevator. +Park Ave.",21706118,Yogita,Manhattan,Murray Hill,40.75071,-73.97995,Private room,138,2,41,2019-06-21,1.90,1,66 +18960386,"Private Room, Modern Finishes - AC and Backyard!",132219056,Jason,Brooklyn,Bedford-Stuyvesant,40.69091,-73.93667,Private room,39,2,65,2019-06-06,2.57,2,223 +18960496,In the Heart of Manhattan New York,132219692,Garen,Manhattan,Midtown,40.74683,-73.98761,Entire home/apt,158,1,138,2019-06-24,5.45,1,142 +18961150,Room with a view,5139965,Jamie,Queens,Long Island City,40.75125,-73.93807,Entire home/apt,195,1,3,2017-06-26,0.12,1,0 +18962847,Spacious Room in the heart of Bushwick,58773420,Chrissy,Brooklyn,Williamsburg,40.70602,-73.93821,Private room,80,3,4,2017-06-18,0.16,1,0 +18962916,Very comfy and only minutes to JFK and famous mall,128086219,Hannah,Queens,Rosedale,40.65283,-73.73887,Private room,38,2,61,2019-06-29,2.39,2,171 +18962999,Artist studio in the heart of Bushwick,22100955,Gabriella,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93359,Entire home/apt,134,4,65,2019-06-09,2.56,1,130 +18963479,Studio apt in Midtown East steps to UN,132245692,Stay With US!,Manhattan,Midtown,40.75169,-73.97323,Entire home/apt,70,2,79,2019-06-22,3.21,1,98 +18970683,Bushwick Cozy Room,131476075,Lakisha,Brooklyn,Bushwick,40.68756,-73.91326,Private room,50,1,31,2019-07-01,1.24,8,179 +18971860,Modern Oasis bedroom in East Williamsburg,4189991,Mandi,Brooklyn,Williamsburg,40.70821,-73.94274,Private room,60,2,0,,,1,0 +18971993,Sunny Bedroom Steps to Subway & Central Park,128237188,Mante,Manhattan,East Harlem,40.79631,-73.94348,Private room,79,3,66,2019-06-25,2.67,1,263 +18972792,3 Bedroom Prewar Park Slope Apt - great 4 families,59799262,Max,Brooklyn,Gowanus,40.66724,-73.99328,Entire home/apt,150,6,2,2017-07-30,0.08,1,0 +18975097,Quiet and hip Astoria house (15 min. to Manhattan),17079377,Joseph,Queens,Ditmars Steinway,40.77655,-73.91304,Private room,50,1,12,2019-05-21,0.63,1,0 +18976585,"sunny room, 2 mins to subway & 15mins to Manhattan",27131793,James,Queens,Jackson Heights,40.74712,-73.89329,Private room,46,1,19,2017-09-09,0.75,1,0 +18976933,A very cozy apartment in Williamsburg.,111308649,Aiana,Brooklyn,Williamsburg,40.71445,-73.94593,Private room,65,3,2,2018-04-26,0.13,1,0 +18979087,Simple and clean bedroom with good view and light,70074907,Emily,Manhattan,Roosevelt Island,40.76873,-73.94397,Private room,51,1,2,2017-06-16,0.08,2,0 +18979981,"Spacious studio in the West Village, NYC",4365106,Neelu,Manhattan,West Village,40.73179,-74.00106,Entire home/apt,176,3,13,2019-05-26,0.60,1,64 +18984088,Large Clean Safe Private Bedroom by Lehman College,2511668,David,Bronx,Kingsbridge,40.87271,-73.89972,Private room,60,3,19,2019-07-02,0.75,1,81 +18985595,"BROOKLYN NOOK +Your home away from home",132435618,Ayinde,Brooklyn,East New York,40.67061,-73.88004,Entire home/apt,95,2,91,2019-06-23,3.63,1,60 +18988028,Peaceful home to come on Budget.,131211034,Monica A,Bronx,University Heights,40.85484,-73.90646,Private room,60,1,1,2017-11-25,0.05,1,0 +18988814,Brooklyn house - steps to Prospect Park,88322109,Daniel,Brooklyn,Windsor Terrace,40.65417,-73.97405,Entire home/apt,350,6,0,,,1,47 +18989137,Boerum Hill Beauty,132464510,Christine,Brooklyn,Boerum Hill,40.68508,-73.98413,Private room,125,1,8,2018-10-07,0.32,1,156 +18992110,Charming Nolita Apartment,12420115,Constanze,Manhattan,Lower East Side,40.7197,-73.99331,Entire home/apt,170,1,16,2019-02-18,0.63,1,0 +18992672,Private room in amazing location! (rooftop access),47464383,Gida,Manhattan,Hell's Kitchen,40.7591,-73.98971,Private room,350,2,1,2017-07-05,0.04,1,0 +18992796,ROOM 10,74633496,Justine,Bronx,University Heights,40.85624,-73.90946,Private room,40,3,26,2019-06-16,1.03,5,365 +18993091,Brooklyn Spacious Hip + Cosy Room in 2 bedroom,132485225,Kate + Max,Brooklyn,Bensonhurst,40.61767,-73.99176,Private room,42,8,26,2019-06-06,1.04,1,43 +18993379,Home &Garden: lots local+fast 2 Manhattan/Brooklyn,132266502,Sharlene,Staten Island,Westerleigh,40.61357,-74.13566,Entire home/apt,103,3,1,2018-07-29,0.09,1,189 +18993398,Gorgeous Comfy Apartment,132484183,Philip,Queens,Jamaica,40.69256,-73.79988,Entire home/apt,165,3,53,2019-07-06,2.14,1,153 +18994394,Quiet Room With a View in South Slope,6825747,Phaedra,Brooklyn,Sunset Park,40.66134,-73.99619,Entire home/apt,128,5,6,2019-07-01,0.25,1,0 +18994641,"Rockaway Chic Houseboat Escape, Serene & Airy!",3339820,Natasha,Queens,Arverne,40.59486,-73.78856,Entire home/apt,250,2,10,2019-06-23,0.40,1,166 +18994965,Thee Bohemian BNB Astoria,132486597,Matt,Queens,Astoria,40.77126,-73.92088,Private room,60,1,54,2019-06-16,2.21,1,73 +18996087,Ideal Williamsburg Apartment,58108232,Caitlin,Brooklyn,Williamsburg,40.71358,-73.96519,Entire home/apt,109,2,0,,,1,0 +18996206,Modern 1BD Condo in Upper Eastside,132513543,Stephanie,Manhattan,Upper East Side,40.76269,-73.96053,Entire home/apt,465,4,1,2017-10-09,0.05,1,0 +18996283,Midtown NY,48590699,Isabelle,Manhattan,Midtown,40.75169,-73.97116,Private room,100,1,8,2017-07-24,0.32,1,0 +18996738,Sunny big bedroom in lively Brooklyn neighborhood,5391472,Ella,Brooklyn,Crown Heights,40.6721,-73.95363,Private room,40,14,1,2017-07-01,0.04,2,0 +18997233,Comfy Bedroom in Park Slope,80333891,Mai,Brooklyn,Gowanus,40.67379,-73.9873,Private room,45,30,2,2017-11-26,0.10,2,0 +18997283,Modern room in Prospect Heights,13237695,George,Brooklyn,Prospect Heights,40.67396,-73.96427,Private room,85,3,3,2018-01-15,0.13,1,189 +18997371,Cozy Getaway,90104417,Sueann,Staten Island,Tottenville,40.50873,-74.23914,Entire home/apt,85,2,49,2019-07-01,2.08,2,159 +18997373,"Brooklyn 3 BDR Townhouse: style, comfort, location",92987625,Jake,Brooklyn,Clinton Hill,40.68277,-73.95886,Entire home/apt,225,3,0,,,1,0 +18997559,Heart of Brooklyn,56076854,Miranda,Brooklyn,Bushwick,40.6949,-73.9116,Private room,65,5,20,2019-04-21,0.78,2,365 +18997907,Sunny and spacious room in East Williamsburg!,49270426,Elena,Brooklyn,Williamsburg,40.70445,-73.94359,Private room,55,6,1,2018-04-25,0.07,1,0 +18998283,Greenpoint Room,19603674,Sneh,Brooklyn,Greenpoint,40.72506,-73.93802,Entire home/apt,59,3,0,,,1,0 +18998595,Park Slope garden oasis,64453478,Karli,Brooklyn,South Slope,40.66615,-73.98712,Entire home/apt,225,2,78,2019-06-09,3.18,1,80 +18999045,Modern 1 bedroom in Boerum Hill,21772730,Suhail,Brooklyn,Gowanus,40.68318,-73.98578,Entire home/apt,200,5,0,,,1,0 +18999626,World Pride dream stay,35323444,Frankie And J,Manhattan,Hell's Kitchen,40.76199,-73.98758,Private room,200,3,1,2019-06-10,1,1,8 +18999839,Spacious private room with private bathroom,76359133,FuKang,Queens,Fresh Meadows,40.73862,-73.79184,Private room,55,1,113,2019-06-30,4.44,3,137 +19000161,Super Chill Studio,132559939,Xavier,Brooklyn,Williamsburg,40.71893,-73.96232,Entire home/apt,180,2,20,2019-01-01,1.17,1,0 +19001879,SPRING FORWARD GREENPOINT STUDIO W/YARD,132576479,Evelyn,Brooklyn,Greenpoint,40.72257,-73.94544,Entire home/apt,115,30,8,2019-05-17,0.37,1,183 +19007359,Massive Sun-Filled Loft in Prime Williamsburg,21657100,Jourdan,Brooklyn,Williamsburg,40.71706,-73.96423,Entire home/apt,185,2,36,2018-12-31,1.44,1,85 +19009220,Bushwick Beaut Available,60494212,Breanna,Brooklyn,Bushwick,40.69481,-73.92244,Private room,50,3,1,2017-07-31,0.04,1,0 +19010266,Jul 16 - Aug 4 16 1-bed close to Madison Sq. Park,132629359,Brian,Manhattan,Flatiron District,40.74165,-73.98486,Entire home/apt,218,4,3,2017-12-31,0.13,1,9 +19010699,Waterfront studio apartment 1 stop to Manhattan!,25346530,Garrett,Queens,Long Island City,40.74285,-73.95597,Entire home/apt,99,1,3,2017-06-16,0.12,1,0 +19010965,Amazing Bright Room With Separate Bathroom,27522582,Gabriele,Brooklyn,Bushwick,40.70075,-73.91644,Private room,70,1,0,,,3,0 +19011068,COZY GEM,132635232,Monique,Manhattan,Harlem,40.81451,-73.94478,Private room,99,2,59,2019-06-23,2.38,1,362 +19011267,East Village Bedroom for Rent,6720525,Robert,Manhattan,East Village,40.72204,-73.97924,Private room,100,3,64,2019-06-30,2.58,1,224 +19011527,cool three bedroom on 111th street,5490071,Alex,Manhattan,East Harlem,40.79475,-73.94247,Entire home/apt,150,4,67,2019-06-30,2.70,3,242 +19011610,Geometric Getaway,19544315,Cal,Manhattan,Washington Heights,40.83318,-73.94081,Private room,35,1,0,,,2,0 +19012156,Private Room in Sunny Williamsburg location,2261706,Dana,Brooklyn,Williamsburg,40.7084,-73.9551,Private room,75,2,3,2017-07-24,0.12,1,0 +19012181,Hamptons-esque Brooklyn Condo,132644162,Lindsay,Brooklyn,Prospect-Lefferts Gardens,40.65704,-73.95757,Entire home/apt,250,1,1,2017-06-22,0.04,1,0 +19012262,Sunny Spacious 2 bedroom condo,132644665,Michelle,Brooklyn,Canarsie,40.62986,-73.90638,Private room,78,2,45,2019-06-30,1.78,1,41 +19012370,"Parks, Marina and New York skyline in one place.",10447807,Ari,Manhattan,Battery Park City,40.71588,-74.01691,Entire home/apt,250,4,0,,,1,0 +19013171,Central Manhattan Apt,56909,Peter,Manhattan,Kips Bay,40.74214,-73.98048,Private room,117,7,1,2018-12-22,0.15,1,332 +19013218,Large Private 1 Bedroom Apt in Hell's Kitchen Area,10903067,Justin,Manhattan,Hell's Kitchen,40.76619,-73.98987,Entire home/apt,179,3,17,2019-05-11,0.67,1,5 +19013613,4 Bed 3.5 Bath in Manhattan,129474716,Abcstay,Manhattan,West Village,40.73983,-74.00586,Entire home/apt,1599,30,6,2018-01-19,0.24,1,0 +19013673,Comfy Queen Size Bed Near Prospect Park!,5944076,Lisanne,Brooklyn,Prospect-Lefferts Gardens,40.65871,-73.95263,Private room,49,2,15,2019-06-12,0.59,1,251 +19015029,Private Cabin in New-York City (Chelsea Dictrict),117365574,Maria,Manhattan,Chelsea,40.74806,-73.99665,Private room,85,1,77,2019-06-20,3.84,5,310 +19015421,Private Room in Lower East Side Apartment,17099762,Maddy,Manhattan,Lower East Side,40.7231,-73.9927,Private room,80,2,0,,,1,0 +19015592,"Spacious, Quiet, Cozy Art-Filled Chelsea Apartment",22221213,George,Manhattan,Chelsea,40.74183,-73.99878,Entire home/apt,350,2,10,2019-06-23,0.72,1,104 +19015637,Furnished Studio on Upper East Side,20287719,Jarid,Manhattan,Upper East Side,40.77138,-73.95353,Entire home/apt,100,5,0,,,1,0 +19015721,Entire apartment 2 beds/2baths with Rooftop !,3309783,Sandra,Manhattan,Harlem,40.80545,-73.95489,Private room,125,6,3,2017-12-31,0.12,1,0 +19017366,King size room in foodie heaven!,41387722,Michael,Queens,Astoria,40.77084,-73.92601,Private room,65,21,0,,,1,0 +19017429,Large private room in a nice apartment,41171451,Miriam,Manhattan,Harlem,40.82634,-73.95061,Private room,80,1,18,2019-01-06,0.75,1,179 +19017889,2bed Williamsburg Loft w Roof Access + City Views,92342,Ashley,Brooklyn,Williamsburg,40.72059,-73.95847,Entire home/apt,220,3,42,2018-11-04,1.71,1,0 +19018157,"Great and Cozy 2 BR in Glendale ,Queens NY",132698746,Joanna,Queens,Glendale,40.70388,-73.88012,Entire home/apt,100,2,117,2019-06-30,5.33,1,3 +19018768,spacious 2 beds in the LES w garden,185745,Alessandra,Manhattan,Lower East Side,40.71284,-73.99066,Entire home/apt,300,2,0,,,2,0 +19018914,Private bedroom with balcony in Williamsburg,11540240,Nolwenn,Brooklyn,Williamsburg,40.70866,-73.95003,Private room,40,7,1,2017-06-24,0.04,1,0 +19018987,2 bedroom family luxury modern,170553,Hilary,Manhattan,Upper West Side,40.77565,-73.98684,Entire home/apt,389,6,0,,,1,105 +19019159,Perfect Williamsburg room!,5049863,Martijn,Brooklyn,Williamsburg,40.71099,-73.95267,Private room,45,14,1,2018-09-20,0.10,1,0 +19019275,Nice apartment near Lincoln Center,71360671,Yuhua,Manhattan,Upper West Side,40.77317,-73.98729,Entire home/apt,90,30,0,,,1,117 +19019325,HUGE ROOM WITH PRIVATE KITCHEN- Manhattan -,132711675,Yifat,Manhattan,Murray Hill,40.74736,-73.97838,Private room,60,10,0,,,1,19 +19019762,One bedroom,7813520,Cynthia,Brooklyn,Bushwick,40.6948,-73.92093,Private room,49,2,55,2019-06-21,2.15,1,332 +19021031,Simple and clean bedroom with good view & light 2,70074907,Emily,Manhattan,Roosevelt Island,40.7687,-73.94308,Private room,51,1,0,,,2,0 +19027786,The Diamond Room,33552302,Ese,Manhattan,East Harlem,40.80244,-73.94409,Private room,125,1,11,2019-05-05,0.44,1,341 +19028078,Elegant Guest Room A,44547688,Carol,Brooklyn,East New York,40.67249,-73.8782,Private room,52,1,13,2019-05-26,0.53,2,365 +19030149,"Beautiful, Comfortable Apt. in Convenient Location",182461,Jose,Queens,Ozone Park,40.67488,-73.85568,Entire home/apt,110,3,81,2019-06-30,3.33,2,9 +19031108,"Cozy Private Room in Astoria, near LGA and Midtown",132801944,Shampa,Queens,Astoria,40.76877,-73.91237,Private room,38,4,19,2017-12-22,0.75,2,188 +19032635,Bright & Spacious Upper Manhattan Apartment!,49193707,Devyn,Manhattan,Washington Heights,40.84977,-73.93536,Private room,60,5,16,2019-05-18,0.65,1,0 +19032888,Spacious Room in Huge Sunny Apartment,36651854,Devony,Manhattan,Washington Heights,40.8336,-73.94088,Private room,55,6,12,2019-06-05,0.47,1,3 +19034388,"Gorgeous, Family-Friendly, NYC Garden Apt!",706623,Emilia,Brooklyn,Bushwick,40.69441,-73.90881,Entire home/apt,119,3,12,2019-04-27,0.51,4,50 +19035295,Cozy Apartment in Bushwick,93356179,Morgan,Brooklyn,Bushwick,40.70674,-73.9201,Entire home/apt,121,5,3,2017-07-19,0.12,1,0 +19035560,Vibrant Brick-Exposed 1Bedroom in the East Village,16026934,Abir,Manhattan,East Village,40.72136,-73.97882,Private room,89,2,14,2018-02-19,0.55,1,0 +19036088,Private Heart-of-Williamsburg Bedroom!,6164507,Adam,Brooklyn,Williamsburg,40.71199,-73.96317,Private room,60,7,0,,,1,0 +19036290,"Private Room and Bath, 1 block to train, Wash/Dry",912657,Shawn,Brooklyn,Bedford-Stuyvesant,40.68054,-73.94129,Private room,80,4,3,2019-01-02,0.12,1,104 +19036361,Ms. Dee Cozy Bedroom you feel like home!! Room 2,97794385,Debra,Queens,Jamaica,40.68347,-73.79461,Private room,60,2,42,2018-11-04,1.65,2,0 +19036742,Private Room near Columbia University,16070950,Lorenzo,Manhattan,Morningside Heights,40.81192,-73.96164,Private room,90,20,1,2017-12-31,0.05,1,0 +19037873,Basic place :) Forest Hills Rego Park,26440775,Anthony,Queens,Forest Hills,40.72902,-73.8474,Entire home/apt,115,30,12,2018-06-17,0.47,1,66 +19038705,Chic Clason Point Condo,17122534,Eliu,Bronx,Clason Point,40.80652,-73.85312,Entire home/apt,350,3,1,2018-08-27,0.09,1,0 +19038815,"1 Block from Subway, Central Location, Great Price",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.69144,-73.956,Private room,85,1,177,2019-06-24,7.05,3,49 +19044895,Private room in 2br apartment near subway (train),85526404,Zakir And Shagraf,Queens,Flushing,40.75448,-73.82295,Private room,55,1,37,2018-07-25,1.46,1,0 +19046687,The Absolute Best Location in NYC – Priv. Bedroom,14396342,Ben,Queens,Long Island City,40.74286,-73.95417,Private room,61,2,111,2019-07-02,4.46,1,109 +19047711,Live like a New Yorker in bright LES bedroom!,26410240,Maxime,Manhattan,Lower East Side,40.72083,-73.99205,Private room,95,6,2,2017-08-04,0.08,1,0 +19048034,The Calm Stay- Comfy and Clean Getaway Room,22343983,Mo,Manhattan,Washington Heights,40.85674,-73.93003,Private room,35,2,5,2017-06-30,0.20,1,0 +19049100,Midtown Pre-War Gem,23431638,Chad,Manhattan,Murray Hill,40.74689,-73.97763,Entire home/apt,150,3,42,2019-06-14,1.67,1,40 +19049402,Downtown Luxury 1 Bedroom 800 sq ft,105642760,Gigi,Manhattan,Battery Park City,40.71222,-74.01566,Entire home/apt,350,7,4,2019-04-27,0.33,1,51 +19049449,Bleecker street beauty,19419141,Carole,Brooklyn,Bushwick,40.69293,-73.9221,Private room,48,3,0,,,1,0 +19049579,Spacious and Sunny 1+ Bedroom,7980049,Colin,Manhattan,Upper West Side,40.7951,-73.96675,Entire home/apt,165,2,8,2018-08-24,0.33,1,0 +19049956,Brooklyn Large Private Bedroom Near Park,132967604,Chris,Brooklyn,Crown Heights,40.66593,-73.95535,Private room,45,8,3,2017-07-31,0.12,1,0 +19050995,2 bedroom home in BedStuy 15 minutes to Manhattan,56081679,José,Brooklyn,Bedford-Stuyvesant,40.6896,-73.9266,Private room,200,2,2,2017-06-20,0.08,1,0 +19051760,Bonito dormitorio 20-25 minutos Times Square.,132983866,Carmelo,Manhattan,Washington Heights,40.84733,-73.93445,Private room,75,1,100,2019-07-06,4.52,1,280 +19051802,Sunny quiet full floor E Village,71825402,Chris,Manhattan,East Village,40.72669,-73.98864,Entire home/apt,279,2,4,2018-07-27,0.19,1,0 +19052801,Light-filled 2 bed 2 bath 2 balcony S Williamsburg,89316119,Jennifer,Brooklyn,Williamsburg,40.7102,-73.96024,Entire home/apt,300,2,0,,,1,0 +19053614,"ONLY 5 MIN TO MANHATAN, BRAND NEW APARTMENT",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.71118,-73.9608,Private room,400,1,49,2019-06-18,2.48,4,77 +19054163,Cozy Brooklyn Oasis,133004690,Linda,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93972,Entire home/apt,80,1,107,2019-06-18,4.28,2,240 +19054284,Sunny Apt in New York,33195149,Abigail,Brooklyn,Crown Heights,40.6721,-73.96159,Private room,125,10,0,,,1,0 +19054683,Fully-furnished modern apartment,97907084,Kim,Bronx,Wakefield,40.90281,-73.85201,Entire home/apt,28,1,0,,,1,0 +19054757,Spaceful studio in the heart of Financial district,133010064,Alena,Manhattan,Financial District,40.70857,-74.01005,Entire home/apt,140,2,76,2019-07-01,3.02,1,0 +19055226,Musician's Getaway + Full Analog Recording Studio,58225,Joshua,Brooklyn,Bedford-Stuyvesant,40.69097,-73.94721,Private room,101,2,9,2019-05-13,0.36,1,364 +19055440,Brooklyn - Bushwick - NYC #2,81274648,Ming,Brooklyn,Bushwick,40.69628,-73.93068,Private room,43,2,71,2019-06-22,2.80,4,90 +19056212,Duplex home in Historic Cobble Hill,35078736,Pj,Brooklyn,Cobble Hill,40.68569,-73.99573,Entire home/apt,424,21,1,2018-08-22,0.09,1,31 +19056511,"Bright and comfy, in the heart of Harlem",67609111,Gizzelle,Manhattan,Harlem,40.81515,-73.9421,Private room,80,1,0,,,1,0 +19056694,Cozy and Sunny Williamsburg Apartment,34466355,Mai,Brooklyn,Williamsburg,40.71122,-73.93946,Entire home/apt,170,3,7,2018-01-02,0.28,1,0 +19057006,Comfortable room in spacious Brooklyn apartment,85082002,Steven,Brooklyn,Crown Heights,40.66413,-73.95126,Private room,60,3,2,2017-09-09,0.09,1,0 +19057018,1BR/1BA in 2BR/2BA Flushing,356490,Peter,Queens,Flushing,40.76796,-73.81732,Shared room,1000,1,0,,,1,0 +19057073,Bright central designer's apt - steps to train!,538008,Deren,Brooklyn,Bedford-Stuyvesant,40.68932,-73.94947,Entire home/apt,125,5,23,2019-06-17,0.95,1,1 +19057479,COZY 2BR IN MANHATTAN,10448572,Malen,Manhattan,East Harlem,40.79632,-73.93387,Entire home/apt,115,3,12,2018-08-06,0.47,1,7 +19057619,living room in a 1br apt for rent MANHATTAN,133037177,Ben,Manhattan,Inwood,40.86556,-73.92656,Private room,36,28,28,2019-05-31,1.12,1,106 +19057791,Location Location - Cozy Room In Time Square,14935858,Goran,Manhattan,Hell's Kitchen,40.75964,-73.99071,Private room,49,1,41,2019-01-12,1.62,2,8 +19058675,Experience Upper New York Living,133045826,Mira,Manhattan,Washington Heights,40.84202,-73.94171,Entire home/apt,108,7,4,2017-08-15,0.17,1,50 +19058691,HUGE**Washington Square Park**3BEDROOM SKY~LOFT,133045713,Joe,Manhattan,Greenwich Village,40.73647,-73.99699,Entire home/apt,578,5,70,2019-07-01,2.84,1,240 +19062809,Sunny Bedroom in Crown Heights,22860779,LadyShepsa,Brooklyn,Crown Heights,40.66496,-73.93241,Private room,40,5,5,2017-08-29,0.21,1,0 +19063118,JFK 10 & LGA 15 MINUTES AWAY A/C PRIVATE BEDROOM B,22959695,Gurpreet Singh,Queens,Richmond Hill,40.69502,-73.8252,Private room,50,1,106,2018-10-07,4.15,5,0 +19064354,Cozy master room (female only),127784473,Zeyu,Manhattan,Roosevelt Island,40.76548,-73.94675,Private room,55,10,1,2017-07-08,0.04,1,0 +19066190,Small bedroom in Brooklyn,52052321,Zedal,Brooklyn,Bedford-Stuyvesant,40.69297,-73.95158,Private room,46,3,6,2017-09-05,0.24,1,0 +19066476,Private Room in Greenwich/West Village near Soho!,29614678,Sonya,Manhattan,Greenwich Village,40.72951,-73.99997,Private room,150,2,60,2019-06-30,2.37,1,125 +19067757,12min to NY & 10min LGA/30min JFK w/Closet&heater,100128949,Lisa,Queens,Astoria,40.75539,-73.91311,Private room,39,1,4,2019-01-02,0.17,4,136 +19068247,Quiet garden studio in Bushwick,23991242,Lizzie,Brooklyn,Bushwick,40.68748,-73.90751,Entire home/apt,100,2,1,2019-07-07,1,1,99 +19068469,Hamilton Heights room,69211977,Taylor,Manhattan,Harlem,40.82088,-73.9523,Private room,36,25,0,,,1,0 +19068933,Quiet and Safe 7,133123832,Parmenides,Manhattan,Upper West Side,40.78773,-73.97022,Entire home/apt,113,30,0,,,3,69 +19069048,Entire Apartment in the East Village - 2 Bedroom,778994,Giona,Manhattan,East Village,40.72529,-73.98655,Entire home/apt,300,14,5,2018-07-01,0.20,1,2 +19069305,"Quiet, cozy room just across the Brooklyn Museum",10402380,Yuval,Brooklyn,Prospect Heights,40.67245,-73.96358,Private room,50,1,144,2019-07-02,5.65,2,0 +19069372,Studio on Central park,133127495,Nehama And Chen (Agent ),Manhattan,Upper West Side,40.79312,-73.96595,Entire home/apt,115,88,5,2018-09-18,0.22,1,220 +19069381,Amazing room in Upper Manhattan,22455812,Alessandro,Manhattan,Harlem,40.80729,-73.94763,Private room,100,2,1,2017-07-04,0.04,1,0 +19069649,Big Bedroom in the heart of Manhattan 6r,133130315,Artem,Manhattan,Hell's Kitchen,40.76398,-73.986,Private room,99,3,12,2019-04-28,0.57,6,179 +19069726,Greenpoint Gem: top floor like private home,38217925,Lily,Brooklyn,Greenpoint,40.73453,-73.95795,Private room,120,5,0,,,2,88 +19069900,"Zen, Sunny 1 BR Apt in East Village",1424716,Helene,Manhattan,East Village,40.7242,-73.98209,Entire home/apt,175,3,7,2017-12-05,0.30,1,0 +19069915,Extraordinary Apt Best Midtown Location,61391963,Corporate Housing,Manhattan,Midtown,40.75609,-73.96941,Entire home/apt,125,30,2,2019-06-01,0.15,91,140 +19069994,Apt in W 48th with private patio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76441,-73.99437,Entire home/apt,100,30,2,2017-12-03,0.09,31,345 +19070571,1 BR in Manhattan - Spacious and Convenient,39601665,Jordan,Manhattan,East Harlem,40.80746,-73.94001,Private room,53,180,0,,,1,357 +19071002,BK's Finest Jack&Jill2 Share NearTransportation,50600973,Joyell,Brooklyn,Bushwick,40.6951,-73.92983,Shared room,29,1,124,2019-06-18,4.99,7,73 +19071374,Artist Room,133147190,Ocean,Brooklyn,Bushwick,40.70114,-73.91763,Private room,70,2,1,2017-06-17,0.04,1,179 +19072587,Clean Midtown Rooms in heart of NYC,60993452,Charles,Manhattan,Murray Hill,40.74763,-73.97602,Private room,52,3,4,2017-06-23,0.16,2,0 +19072989,Private Room in Modern Loft in Williamsburg,4440278,Emmanuel,Brooklyn,Williamsburg,40.71172,-73.94143,Private room,105,3,8,2019-05-28,0.32,3,179 +19073347,"Comfy, convenient futon for solo traveler",83756656,Richard,Manhattan,Lower East Side,40.71884,-73.99076,Shared room,29,2,21,2019-06-04,0.86,1,0 +19073356,Luxury Coliving Space in Williamsburg,4440278,Emmanuel,Brooklyn,Williamsburg,40.71189,-73.93881,Private room,110,3,3,2017-07-30,0.12,3,179 +19073637,"Green Renovated Victorian, Central AC/Radiant Heat",16006197,Lydia,Brooklyn,South Slope,40.66744,-73.98798,Private room,80,2,50,2019-07-06,1.98,1,86 +19073760,Private Bedroom in Ditmas,91718195,Kourosh,Brooklyn,Kensington,40.63417,-73.97541,Private room,31,25,3,2018-08-25,0.12,1,0 +19074024,Spacious 5th Ave - Semi Pvt Bed & Bath,113570467,Rachel,Manhattan,Midtown,40.74842,-73.98542,Shared room,320,1,1,2018-09-26,0.10,1,179 +19079187,Clean Midtown Rooms in heart of NYC,60993452,Charles,Manhattan,Murray Hill,40.74846,-73.9758,Private room,40,4,3,2017-06-18,0.12,2,0 +19080665,big vintage room with backyard in hip BUSHWICK,7086450,Natalie,Brooklyn,Bushwick,40.69983,-73.91613,Private room,70,5,0,,,1,0 +19080983,Convenient Home near train Subway & Airports,59089796,Sara,Queens,Richmond Hill,40.70288,-73.81955,Entire home/apt,104,2,78,2019-06-26,3.26,2,65 +19081224,RJ's,133239401,Argelis,Bronx,Bronxdale,40.85168,-73.86659,Entire home/apt,100,7,0,,,1,180 +19081969,Beautiful Private Townhouse- Heart of Manhattan,21810947,Ellen,Manhattan,Midtown,40.75488,-73.97134,Entire home/apt,1200,7,0,,,1,0 +19083269,"Cheap, Private Room in Bushwick! Close to Trains!",4464205,Braden,Brooklyn,Bushwick,40.69446,-73.92486,Private room,37,2,6,2017-12-16,0.25,2,0 +19083282,纽约干净大房近地铁站,51698646,Ivy,Queens,Sunnyside,40.74242,-73.92597,Private room,40,10,1,2018-02-15,0.06,1,2 +19083490,I ❤️NY,35031975,Ej,Manhattan,Hell's Kitchen,40.75625,-73.99336,Entire home/apt,207,1,0,,,1,0 +19084168,Beautiful apartment overlooking Fort Greene Park,6219701,Timothée,Brooklyn,Fort Greene,40.68966,-73.97382,Entire home/apt,150,10,1,2017-07-28,0.04,1,0 +19085402,Spacious 1bdrm in new luxury Williamsburg building,133281513,Eda,Brooklyn,Williamsburg,40.71885,-73.95444,Entire home/apt,180,1,16,2019-03-15,0.65,1,0 +19085687,"Cozy, Friendly, and 2 mins from the subway station",69442306,Oz,Brooklyn,Prospect-Lefferts Gardens,40.65512,-73.96186,Private room,90,3,1,2017-06-29,0.04,1,0 +19085711,Workspace Room 1,9864136,Anthony,Brooklyn,Bushwick,40.68615,-73.9141,Private room,36,2,7,2019-03-01,0.29,26,318 +19086281,Private Room in a Renovated Duplex in Bed-Stuy,30168229,Dana,Brooklyn,Bedford-Stuyvesant,40.69369,-73.93454,Private room,80,2,0,,,1,0 +19087480,Wake up to Central Park (privet room),133308687,Tony,Manhattan,East Harlem,40.79771,-73.94833,Private room,145,2,75,2019-06-23,3.07,1,59 +19087695,"★2 mins to Subway B/Q, Great for budget travel★",51380878,Jean Paul,Brooklyn,Flatbush,40.65067,-73.96062,Private room,33,2,71,2019-06-18,3.17,2,15 +19087867,Luminescent Room In LES,97513787,Daniel,Manhattan,Chinatown,40.71595,-73.99329,Private room,68,20,6,2018-09-13,0.31,5,332 +19093551,Studio in Brooklyn,1295284,Sue,Brooklyn,Midwood,40.61402,-73.94467,Entire home/apt,70,7,0,,,1,0 +19093789,Majestic private bedroom in Williamsburg.,49781652,Cory,Brooklyn,Williamsburg,40.71033,-73.95026,Private room,67,3,21,2018-12-01,0.86,1,0 +19094358,Great place for a family or a group of friends,123974198,Anny,Manhattan,Inwood,40.86665,-73.92695,Entire home/apt,175,2,7,2018-08-26,0.29,1,0 +19094427,Spacious one bedroom in the heart of Inwood,16020315,Douglas,Manhattan,Inwood,40.86822,-73.92048,Entire home/apt,100,2,9,2019-04-07,0.59,1,0 +19094459,"Large one bedroom apt., very bright, huge balcony.",624441,Joseph,Manhattan,Upper West Side,40.79155,-73.97315,Entire home/apt,180,30,9,2019-05-31,0.43,1,57 +19094558,Comfort & Convenience in Greenwich Village,23821111,Peter,Manhattan,Greenwich Village,40.73095,-73.99413,Private room,200,2,0,,,1,0 +19094695,Charming and cozy 1BR apartment / Heart of NYC,11687702,Rudy,Manhattan,Hell's Kitchen,40.76168,-73.99144,Entire home/apt,160,4,1,2017-08-18,0.04,1,0 +19094835,Comfortable & Elegant 3BR House near Prospect Park,6701270,Kenny,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95929,Entire home/apt,130,8,4,2018-08-19,0.18,1,0 +19094871,"Bright, spacious, green BedStuy apartment",3457404,Madalina,Brooklyn,Bedford-Stuyvesant,40.68197,-73.94564,Entire home/apt,70,3,29,2019-03-16,1.16,1,0 +19095902,Spacious and Sunny Townhouse Duplex,132530494,Marie,Brooklyn,Canarsie,40.63077,-73.90395,Entire home/apt,300,3,59,2019-06-30,2.36,1,333 +19096160,Room in Spacious Prospect Park South Apartment,10697117,Joey,Brooklyn,Flatbush,40.64844,-73.96214,Private room,45,5,2,2018-06-30,0.08,1,0 +19097111,*Private Room in Beautiful Brooklyn Apartment*,43595404,Diana,Brooklyn,Bedford-Stuyvesant,40.68154,-73.9534,Private room,69,2,6,2017-11-20,0.25,1,0 +19098169,Amazing space & location 1 bedroom Apt in Gramercy,14322725,Ana Corina,Manhattan,Gramercy,40.73627,-73.98952,Entire home/apt,290,3,13,2018-10-21,0.54,1,66 +19098568,Huge Private Room Near Prospect Park,133410608,Stephanie,Brooklyn,Kensington,40.64549,-73.97883,Private room,99,7,0,,,1,87 +19098733,Cozy Efficiency Studio on Best West Chelsea Block!,82920107,Zach,Manhattan,Chelsea,40.74619,-74.00559,Entire home/apt,149,30,1,2018-07-16,0.08,1,364 +19099408,2 BR apartment in the heart of Brooklyn!,4956248,Esther,Brooklyn,Greenpoint,40.73145,-73.95135,Entire home/apt,100,3,14,2019-04-29,0.60,1,0 +19099537,"Modern, private, newly renovated 2 bd, open living",68233913,Troy & Aki,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91803,Entire home/apt,100,3,107,2019-06-23,4.31,1,77 +19099600,"Large, Private 1 Bedroom in Historic Brownstone",1342918,Keri,Brooklyn,Crown Heights,40.67192,-73.93414,Entire home/apt,95,5,8,2018-03-19,0.32,1,0 +19100892,Charming Williamsburg 1br Apt minutes to Manhattan,25173511,Adrian,Brooklyn,Williamsburg,40.71045,-73.95784,Entire home/apt,200,2,6,2018-02-18,0.24,1,0 +19100971,Spacious Bedroom with lots of Natural Light,81745867,Jacqueline,Manhattan,Washington Heights,40.84917,-73.94048,Private room,70,2,2,2018-06-25,0.16,1,0 +19102027,Charming room in the heart ❤️ of Williamsburg!,42729298,Aigerim Aika,Brooklyn,Williamsburg,40.71913,-73.95774,Private room,75,1,135,2019-06-23,5.31,2,19 +19102698,Amazing Private Bedroom-15min from the Manhattan!,133460613,Ed,Queens,Astoria,40.76169,-73.90819,Private room,49,1,6,2019-05-06,0.24,2,359 +19102715,New private bedroom/15mins BrooklynBridge Manhttan,77334582,Yuxi,Brooklyn,Greenpoint,40.73167,-73.95254,Private room,89,2,0,,,1,0 +19103027,Modern Private Bedroom-15min from the Manhattan!,133460613,Ed,Queens,Astoria,40.76193,-73.9074,Private room,74,1,0,,,2,359 +19103622,Comfy private room in the heart ❤️ of Williamsburg!,42729298,Aigerim Aika,Brooklyn,Williamsburg,40.71911,-73.95805,Private room,65,1,122,2019-06-20,4.82,2,11 +19111261,Home Oasis Home,133534397,David,Bronx,Longwood,40.8229,-73.90295,Entire home/apt,100,3,30,2018-02-26,1.18,1,0 +19111734,Habitación ideal para viajeros,133536020,Zoila,Manhattan,East Harlem,40.79185,-73.94139,Private room,50,1,64,2019-06-18,2.55,1,4 +19113032,Luxury Master Bedroom in Prime Brooklyn,46317725,Jamie,Brooklyn,Bushwick,40.70179,-73.92379,Entire home/apt,79,1,2,2017-06-08,0.08,2,0 +19114014,"Large, Private Carriage House in West Village",683230,Thomas,Manhattan,West Village,40.73444,-73.99967,Private room,950,3,36,2019-07-01,1.45,3,237 +19114277,LUXURY!30TH FLR SWEEPING RIVER VIEWS -SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75775,-73.96132,Entire home/apt,350,30,0,,,49,364 +19114447,Beautiful douplex with garden in crown heights!!,5434236,Andrea,Brooklyn,Crown Heights,40.67615,-73.92935,Entire home/apt,188,3,11,2018-08-24,0.45,1,144 +19114715,"Cozy and comfortable bedroom in Astoria, Queens",32219638,Jorge,Queens,Astoria,40.7683,-73.9331,Private room,50,1,28,2019-07-06,1.50,1,175 +19115443,26th FLOOR-RIVER VIEWS& MASSIVE SPACE-SUTTON PLACE,2856748,Ruchi,Manhattan,Midtown,40.75905,-73.96142,Entire home/apt,475,30,0,,,49,343 +19116128,Cozy apartment in Greenpoint,6111018,Katri,Brooklyn,Greenpoint,40.73079,-73.95353,Private room,105,3,8,2019-07-01,0.33,1,12 +19116449,"Private, Luxury Studio by World Trade Center",133580441,Janene,Manhattan,Financial District,40.70864,-74.01276,Entire home/apt,225,4,51,2019-07-02,2.06,1,40 +19116844,Cheap Unfurnished East Village Room,30232035,Ben,Manhattan,Lower East Side,40.71909,-73.9865,Private room,40,10,0,,,1,0 +19117051,Luxurious comfort in BK,12775618,Jared,Brooklyn,Greenpoint,40.73736,-73.95668,Entire home/apt,185,1,4,2017-11-13,0.19,1,0 +19117207,Private bedroom on Upper East Side !!!,133586767,Milorad,Manhattan,Upper East Side,40.77489,-73.95242,Private room,90,2,12,2017-08-01,0.47,1,0 +19117322,Luxurious studio,131218877,Svetlana,Manhattan,Midtown,40.758,-73.97906,Entire home/apt,250,30,0,,,1,0 +19117903,Private BR w Balcony in Greenwich Village,731582,Josh,Manhattan,Greenwich Village,40.73123,-73.99374,Private room,119,60,2,2018-01-03,0.08,1,0 +19118405,Amazing One Bedroom in Historic Hamilton Heights,10469805,Chris,Manhattan,Harlem,40.82499,-73.94488,Entire home/apt,150,14,1,2017-10-14,0.05,1,0 +19118803,Luxury Studio in Battery Park NYC,7628817,Karl,Manhattan,Financial District,40.70546,-74.01465,Entire home/apt,275,1,0,,,1,0 +19118963,BRIGHT CHARMING STUDIO ON UPPER EAST SIDE,9293730,Inna,Manhattan,Upper East Side,40.76956,-73.95835,Entire home/apt,125,30,8,2019-06-10,0.39,16,332 +19119686,Deluxe Room at Yankee Stadium- 20 mins to Midtown!,133602911,Sanyika,Bronx,Highbridge,40.82964,-73.92882,Private room,60,3,17,2019-05-20,0.67,2,66 +19120316,Private Room in Brooklyn - Close to Subway!,132219056,Jason,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93716,Private room,42,1,38,2019-06-02,1.58,2,218 +19120410,Large Bright Studio Apartment,4492286,Anna,Manhattan,Morningside Heights,40.80563,-73.96362,Entire home/apt,130,7,23,2019-06-13,0.95,1,48 +19120657,Lovely 1Br Apartment in Prospect Lefferts!,15495000,Sarabeth,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94517,Entire home/apt,66,2,3,2018-11-13,0.12,1,0 +19121086,Private Room in Cozy Loft in Williamsburg,31920354,Liz,Brooklyn,Williamsburg,40.7127,-73.94487,Private room,109,3,5,2019-05-07,0.20,2,179 +19121957,Big private room in huge artsy Williamsburg loft,42405567,Chris,Brooklyn,Williamsburg,40.7116,-73.94432,Private room,90,2,13,2019-06-10,0.58,2,7 +19121995,Pat's crib,133426665,Patrick,Brooklyn,Flatlands,40.61462,-73.92108,Private room,89,1,68,2019-06-01,2.68,1,333 +19122217,Classic Brooklyn Brownstone,96363026,Chris,Brooklyn,Carroll Gardens,40.68293,-73.99747,Entire home/apt,600,5,11,2019-01-03,0.47,1,64 +19122371,Huge WV / Meatpacking 1 Bdrm,13377549,Opal,Manhattan,West Village,40.73848,-74.00252,Entire home/apt,250,28,13,2019-01-01,0.52,1,0 +19122452,Simple 2bd located in heart of West Village,50915075,Brian,Manhattan,West Village,40.7316,-74.00262,Entire home/apt,278,2,18,2019-01-01,0.73,1,35 +19122483,NYC Home Away from Home (Triplex),68271069,Mark,Manhattan,Upper West Side,40.79343,-73.97274,Entire home/apt,800,7,5,2018-12-29,0.22,1,68 +19122672,VERY CLOSE MANHATTAN ( S ),47015275,Kathy,Queens,Elmhurst,40.74546,-73.88898,Private room,70,1,31,2019-06-01,1.23,2,89 +19122738,New York City living,10733404,Rob,Manhattan,Chelsea,40.74216,-73.99887,Entire home/apt,275,1,2,2017-08-13,0.08,1,0 +19123146,Big 1-bedroom in Tribeca with landscaped roof deck,201735,Walter,Manhattan,Tribeca,40.71773,-74.00601,Entire home/apt,195,2,4,2017-07-04,0.16,1,0 +19123481,Spacious Bohemian Bedroom,133259451,Samantha,Brooklyn,Bedford-Stuyvesant,40.68015,-73.94949,Private room,50,3,2,2017-07-23,0.08,1,0 +19123591,Cozy South Williamsburg,86134456,Frankie,Brooklyn,Williamsburg,40.7069,-73.95498,Private room,45,5,2,2017-07-18,0.08,1,0 +19126369,Cozy and full Daylight private room in greenpoint,41730784,Xiaoxia,Brooklyn,Greenpoint,40.72929,-73.95067,Private room,62,3,3,2017-10-07,0.12,1,0 +19132312,Charming and Quiet Apartment /Prime East Village,66734347,Silvana,Manhattan,East Village,40.72582,-73.9886,Entire home/apt,150,2,2,2017-09-05,0.09,1,0 +19133220,Charming Pre-War Studio Apartment Upper East Side,16413765,Sofia,Manhattan,Upper East Side,40.78084,-73.94735,Entire home/apt,98,3,57,2019-06-18,2.26,1,30 +19134112,Clean and Cozy 1br Home in heart of Soho/Nolita,16308791,Sara,Manhattan,Little Italy,40.71769,-73.99854,Entire home/apt,236,2,55,2019-06-24,2.24,1,314 +19134150,Huge Brooklyn Loft in the Heart of Williamsburg!,133732087,Marie-Louise,Brooklyn,Williamsburg,40.71876,-73.96253,Entire home/apt,250,6,1,2017-08-21,0.04,1,0 +19134330,Take it now you won't find better,133736899,Hanna,Manhattan,Upper West Side,40.76984,-73.98225,Entire home/apt,200,1,1,2017-06-16,0.04,1,0 +19134814,Bright modern 2 bed 2 bath flat in Williamsburg,48240655,Steve,Brooklyn,Williamsburg,40.71947,-73.96112,Entire home/apt,195,2,11,2018-01-03,0.45,1,0 +19134850,Private 1 BR apt Astoria 3 stops from MidManhattan,2539165,Andy,Queens,Long Island City,40.75464,-73.91755,Entire home/apt,90,7,16,2018-11-05,0.69,1,62 +19135548,Hottest building in Williamsburg -private bathroom,7604436,M,Brooklyn,Williamsburg,40.7203,-73.95729,Private room,128,3,22,2019-06-14,1.43,1,305 +19135811,Stunning Brooklyn Sanctuary,2494945,Naima,Brooklyn,Flatbush,40.65413,-73.96024,Private room,44,5,32,2019-06-23,1.39,1,286 +19136267,Loft in Lower East side!,5348587,Amarsana,Manhattan,Lower East Side,40.71734,-73.99071,Private room,75,3,1,2017-06-19,0.04,1,0 +19136705,Gigantic and Beautiful room w/Private living area,27102064,Aaron,Manhattan,Harlem,40.82469,-73.95032,Private room,100,2,10,2019-03-24,0.40,1,0 +19136921,ENTIRE APARTMENT IN THE HEART OF HARLEM,133762246,Ezio,Manhattan,Harlem,40.81644,-73.94127,Entire home/apt,90,15,8,2018-09-25,0.32,1,44 +19138138,Gorgeous Sunny Room Avaliable in 3Br Condo,17603414,Kaan,Manhattan,Harlem,40.82566,-73.94438,Private room,60,5,18,2019-06-15,0.73,2,154 +19138212,Super Sunny & Stylish Soho Loft,9374970,Barrett,Manhattan,SoHo,40.72486,-74.00318,Entire home/apt,250,28,11,2018-09-28,0.48,1,151 +19138221,Stunning Studio Loft in West Chelsea Brownstone,25720293,Lena,Manhattan,Chelsea,40.7462,-74.00222,Entire home/apt,349,4,24,2019-06-29,1.00,3,264 +19139234,All your essentials in a beautiful studio apt,23231840,Francisca,Manhattan,Harlem,40.82216,-73.9446,Entire home/apt,101,7,6,2017-12-03,0.28,1,0 +19139564,Steps from the Barclays Center!,133787072,Neek,Brooklyn,Park Slope,40.67761,-73.97767,Private room,120,1,96,2019-06-17,3.90,1,53 +19140331,Arverne by The Sea ~ Surf Ave Apt,32866694,Samantha,Queens,Arverne,40.58845,-73.79514,Entire home/apt,86,2,23,2019-06-04,2.06,1,20 +19141112,Modern CoLiving at Ridgewood / shared room,133802988,Sergii,Queens,Ridgewood,40.70375,-73.90342,Shared room,30,30,1,2017-12-15,0.05,6,365 +19141351,Room in Beautiful Beach Bungalow!,133802130,Jo,Queens,Far Rockaway,40.59326,-73.76037,Private room,40,1,33,2019-05-23,1.33,1,36 +19141391,Unique Cozy Sunny converted Studio/One Bedroom,75065047,Simi,Manhattan,Lower East Side,40.71925,-73.98955,Entire home/apt,106,1,9,2018-11-04,0.39,1,364 +19141428,"Large room, very conveniently to train, bus, jfk#1",82367658,John,Queens,Richmond Hill,40.69142,-73.82039,Private room,40,2,13,2019-05-31,0.55,5,311 +19141662,Brand New shared room in CoLiving (M and L trains),133802988,Sergii,Queens,Ridgewood,40.7033,-73.90812,Shared room,30,30,2,2017-12-17,0.08,6,365 +19141812,Mint Green in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.67914,-73.88982,Private room,52,3,28,2019-03-31,1.25,3,302 +19141833,2BD in the Heart of Fort Greene,4331581,Alyssa,Brooklyn,Fort Greene,40.68876,-73.97746,Entire home/apt,147,1,1,2017-06-11,0.04,1,0 +19142223,Spacious room in Union Square near subway,81553530,Mariana,Manhattan,East Village,40.73355,-73.989,Private room,200,3,2,2017-06-19,0.08,1,0 +19142325,Futon available in an amazing location,40277071,Sunny,Manhattan,Upper West Side,40.79351,-73.9698,Shared room,70,2,0,,,1,0 +19143826,"Private Room- Greenpoint, Willamsburg local",133843931,Bryan,Brooklyn,Greenpoint,40.72675,-73.9554,Private room,37,1,58,2019-06-15,2.34,2,152 +19153081,West 57th Street by Hilton Club- Studio,31214940,Scott,Manhattan,Midtown,40.76486,-73.97822,Entire home/apt,249,3,0,,,1,0 +19153259,BedStuy Fly Flat,36009953,Sharon,Brooklyn,Bedford-Stuyvesant,40.68099,-73.92145,Private room,70,3,13,2018-09-16,0.53,1,48 +19153982,"East 19th Street, Charming 1Bd Serviced Apt",22541573,Ken,Manhattan,Gramercy,40.73643,-73.98724,Entire home/apt,225,30,0,,,87,310 +19154108,Cozy 1 Bedroom Close to Everything,8633973,Joseph,Manhattan,Hell's Kitchen,40.76952,-73.98957,Entire home/apt,135,3,41,2019-06-16,1.64,1,0 +19154266,"Modern, Airy 2BR in the heart of Brooklyn",5260367,Jake,Brooklyn,Boerum Hill,40.68942,-73.98739,Entire home/apt,150,30,1,2017-11-30,0.05,1,91 +19154276,Large/Bright room in vibrant East village,49192439,Beatrice,Manhattan,East Village,40.72507,-73.97667,Private room,108,10,17,2018-07-26,0.68,1,23 +19154733,2 bedrooms Williamsburg loft - huge and sunny,42405567,Chris,Brooklyn,Williamsburg,40.71356,-73.94372,Entire home/apt,225,4,7,2018-09-02,0.29,2,8 +19155616,Affordable master room near of LGA in Queens,46712160,Lucilu,Queens,Jackson Heights,40.75243,-73.89553,Private room,59,1,184,2019-06-20,7.84,2,30 +19155632,Scenic & quiet Apt - Windsor Terrace/Prospect Park,114146085,Sophia,Brooklyn,Windsor Terrace,40.65013,-73.97863,Entire home/apt,115,3,30,2019-04-04,1.23,1,3 +19156426,"Private room with 2 Windows, 1st FL",2712353,Masud,Brooklyn,Cypress Hills,40.68696,-73.87564,Private room,35,28,7,2019-06-24,0.29,4,312 +19157123,NYC Hotel (Enjoy top tier membership benefits),7050126,Sasha,Manhattan,Midtown,40.76347,-73.978,Entire home/apt,1000,1,3,2017-07-29,0.12,2,90 +19157481,Renovated Private Room in Ridgewood Coliving Space,133802988,Sergii,Queens,Ridgewood,40.70507,-73.90195,Shared room,55,30,2,2018-10-28,0.10,6,365 +19158672,Newly Renovated 1 Bedroom in Hell's Kitchen. 58/10,56342503,Matthew,Manhattan,Hell's Kitchen,40.7694,-73.98736,Entire home/apt,280,4,3,2018-01-05,0.13,1,0 +19160371,Amazing Family House,22766051,Shlomi,Brooklyn,Bay Ridge,40.63056,-74.02037,Entire home/apt,100,4,5,2017-09-26,0.21,1,0 +19160504,Studio Bushwick (shared bathroom apt next door),133975955,Ivanna And Emmanuel,Brooklyn,Williamsburg,40.70533,-73.92778,Entire home/apt,55,3,78,2019-06-23,3.10,1,25 +19160912,Spacious Guest room in beautiful Wash. Heights,1728792,Brittany,Manhattan,Washington Heights,40.84437,-73.94328,Private room,70,3,2,2019-06-08,0.53,1,173 +19161316,Perfect bright apartment with amazing view,83590674,Regitze,Brooklyn,Williamsburg,40.71418,-73.96404,Entire home/apt,219,4,9,2018-10-01,0.37,1,0 +19161510,Affordable and functional room,3788839,Lorenzo & Alex,Brooklyn,Bedford-Stuyvesant,40.68468,-73.92408,Private room,45,28,10,2019-05-27,0.46,4,310 +19161785,Sunny West Harlem Sublet,57959988,Akeem,Manhattan,Harlem,40.81937,-73.95763,Private room,40,10,0,,,1,0 +19161964,A Private and Cozy room near Columbia University,107704855,Mohammad,Manhattan,Morningside Heights,40.8107,-73.95842,Private room,60,1,1,2017-11-15,0.05,1,0 +19162127,Big king bed + roof + Manhattan view Bushwick,22723650,Aaron,Brooklyn,Bushwick,40.70476,-73.92309,Entire home/apt,150,3,20,2019-06-03,0.80,1,5 +19162180,"Private, Quiet 2-Bed Place near Brooklyn College",133995881,Joy,Brooklyn,Flatbush,40.63262,-73.95768,Entire home/apt,150,2,77,2019-06-16,3.29,1,106 +19162211,BK's Finest SHARED ROOM 1 BED AVAILABLE,50600973,Joyell,Brooklyn,Bushwick,40.69518,-73.92856,Shared room,50,1,24,2018-10-28,0.98,7,0 +19162441,Greenpoint Garden of Eden,43085567,Sara,Brooklyn,Greenpoint,40.72661,-73.95178,Entire home/apt,200,1,0,,,1,0 +19162648,Private Suite & Bathroom w/ Yard in Park Slope,10015055,Robert,Brooklyn,South Slope,40.6646,-73.98184,Private room,119,2,94,2019-06-21,4.09,1,279 +19162994,AMAZING VIEW COZY APARTMENT IN THE HEART OF NYC,95471685,Lys,Manhattan,Chelsea,40.74814,-73.98956,Entire home/apt,280,7,0,,,1,0 +19163061,Spacious private room in luxury building,23552267,Vicky,Manhattan,Tribeca,40.71299,-74.00972,Private room,160,7,1,2017-06-19,0.04,1,0 +19163361,Tourist Private Room of New York City,132559039,Elvira,Manhattan,Harlem,40.82664,-73.94814,Private room,60,2,38,2019-06-21,1.71,1,13 +19163623,Cozy Lodge Chic in the heart of New York.,115256,Nicholas,Manhattan,Upper East Side,40.7699,-73.95692,Entire home/apt,125,3,44,2019-02-11,1.80,1,0 +19163801,Bright and Spacious Summer Stay,117460213,Kendall,Manhattan,Harlem,40.82321,-73.95662,Private room,37,2,0,,,1,0 +19163888,Convenient & cozy classic NYC apartment,105707375,Corey,Manhattan,Upper East Side,40.77541,-73.95083,Entire home/apt,98,12,12,2017-11-12,0.48,1,0 +19164049,Cozy private room Near Central Park,18655355,Jolly,Manhattan,East Harlem,40.78827,-73.94629,Private room,128,1,22,2019-06-03,0.94,1,329 +19164752,Great 1 bedroom apartment in Manhattan,71864947,Jure,Manhattan,Washington Heights,40.84393,-73.93979,Entire home/apt,100,5,11,2019-03-21,0.47,1,22 +19167933,"SUNSHINE 2BR/2 bath 15min to Times Square, LIRR",61316506,Mamun,Queens,Woodside,40.74341,-73.90041,Entire home/apt,120,1,85,2019-06-21,3.37,2,340 +19170051,"Cozy walk up, in the heart of Sugar Hill",90227099,Trace,Manhattan,Harlem,40.82794,-73.94194,Entire home/apt,90,1,3,2017-09-27,0.12,1,0 +19170980,Luxury 1 Bedroom Apartment in Prime Brooklyn,46317725,Jamie,Brooklyn,Bushwick,40.70019,-73.92303,Entire home/apt,147,2,12,2018-10-23,0.49,2,0 +19171294,"Private bedroom w/desk and fridge, close to JFK",134070513,Conrad,Queens,Cambria Heights,40.70133,-73.74212,Private room,60,1,2,2018-07-27,0.17,1,37 +19171670,Cozy private bedroom with Queen size bed & closet.,132485563,Ali,Manhattan,Upper East Side,40.77226,-73.95983,Private room,115,6,11,2018-10-23,0.50,2,67 +19172071,Cosy One bedroom apartment close to Central Park,14271995,Pierre,Manhattan,Upper East Side,40.76767,-73.9558,Entire home/apt,110,3,8,2018-08-28,0.32,1,0 +19172876,"Private room with 2 queen sized beds, in Times SQ",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75594,-73.98259,Private room,155,4,35,2019-06-23,1.45,3,157 +19173391,"One bedroom, calm, clean, bright.",13848128,John,Manhattan,Chelsea,40.74263,-73.99769,Entire home/apt,275,6,13,2019-06-07,0.58,1,0 +19174466,2 bedrooms: 1 queen bed and 1 full bed,80508435,Irving,Manhattan,Upper West Side,40.79367,-73.97073,Private room,150,1,1,2017-08-01,0.04,2,0 +19174546,"Spacious, Sunny 1 Bedroom",6060075,Ninja,Queens,Kew Gardens Hills,40.7249,-73.82249,Entire home/apt,159,3,2,2017-11-29,0.08,1,0 +19174707,THE Space,87553853,Titus,Brooklyn,East Flatbush,40.65203,-73.93317,Private room,200,1,2,2019-03-31,0.08,1,178 +19175288,"Private room for 2ppl, 1 min from Times Square!!",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75528,-73.98312,Private room,135,4,37,2019-06-16,1.53,3,155 +19175513,Your Private Room and Bath in South Slope Duplex,10685968,Xintong (Nancy),Brooklyn,Windsor Terrace,40.65991,-73.983,Private room,89,3,9,2018-07-28,0.40,1,0 +19175650,Private room and shared living room,134104016,Amy,Queens,Woodside,40.74505,-73.89995,Private room,80,2,11,2018-11-04,0.45,1,10 +19175819,Main floor room in five bedroom house,65407018,Harmony,Brooklyn,Greenpoint,40.72306,-73.93676,Private room,60,1,36,2019-06-24,1.55,5,180 +19176053,Renovated sunny 1br w/ private bath steps to train,39808438,Easton,Brooklyn,Bushwick,40.68947,-73.91544,Private room,45,2,30,2019-03-27,1.31,5,0 +19176070,Cozy Room in Large Corner Apt Next to Lovely Park,20576411,Morgan,Brooklyn,Flatbush,40.65329,-73.96156,Private room,60,2,0,,,1,0 +19176163,Chic Apartment for rent in East Village,133694068,Julissa,Manhattan,East Village,40.72767,-73.98856,Entire home/apt,99,2,38,2019-05-20,1.51,1,29 +19176222,Beautiful East Village apartment!,90279905,Mariana,Manhattan,East Village,40.72706,-73.98451,Private room,120,1,9,2017-12-10,0.37,1,0 +19176390,"TIMES SQUARE NYC, COZY Jr 1 BR w Private Patio",134114121,Jay,Manhattan,Hell's Kitchen,40.7598,-73.99033,Entire home/apt,219,3,12,2019-06-28,1.33,1,59 +19176790,Cozy Private Room in Upper Manhattan,88034180,Rob,Manhattan,Harlem,40.82473,-73.94778,Private room,65,3,1,2017-06-28,0.04,1,0 +19177019,Bright Designers' Apartment in Historic Brownstone,1382888,Sam & Stefanie,Brooklyn,Greenpoint,40.72781,-73.95526,Entire home/apt,215,3,2,2017-11-30,0.09,1,0 +19177262,Large Manhattan Apartment: Ideal Location - Inwood,16404967,Andom,Manhattan,Inwood,40.86699,-73.92689,Entire home/apt,90,1,17,2019-07-06,1.68,1,64 +19177573,Private room in a beautiful apartment,61649734,Giulliana,Brooklyn,Bushwick,40.69019,-73.91384,Private room,51,1,194,2019-06-27,7.66,2,7 +19179372,"Spacious APT in Brooklyn, 12 Min to Manhattan",126897352,Jason & Mary,Brooklyn,Bushwick,40.70376,-73.92104,Entire home/apt,170,18,22,2019-05-08,0.90,2,249 +19179558,Sunny Two Bed in Prime Lower East Side/Chinatown:),3801752,Tara,Manhattan,Chinatown,40.71522,-73.99355,Private room,90,1,124,2019-06-23,4.95,2,125 +19179608,Home away from home in Brooklyn!,73632360,Matthew,Brooklyn,Bedford-Stuyvesant,40.68776,-73.94936,Private room,50,1,0,,,1,0 +19179615,"HEART OF BROOKLYN, QUEEN BED, 1 BLOCK FROM SUBWAY!",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.6908,-73.95507,Private room,79,1,195,2019-06-20,7.79,3,46 +19179863,Periwinkle in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.67977,-73.89022,Private room,39,3,30,2019-05-20,1.20,3,344 +19179961,Orange in Cypress Hills,133812877,Heather,Brooklyn,Cypress Hills,40.68106,-73.88916,Private room,65,3,23,2019-05-01,0.95,3,321 +19180465,Brooklyn Royalty,44140036,Ricardo,Brooklyn,East Flatbush,40.65185,-73.93388,Private room,80,2,1,2017-06-25,0.04,2,158 +19180787,Two Bedroom Apartment in Williamsburg,413447,Noelle,Brooklyn,Williamsburg,40.71866,-73.943,Private room,120,4,3,2017-09-23,0.13,2,0 +19180868,Central Park at your Door!,128744452,Cassidy,Manhattan,Harlem,40.80063,-73.95389,Private room,52,4,39,2019-06-22,1.65,1,242 +19181398,our place short stay,134160379,Sandy,Bronx,Mott Haven,40.81023,-73.91926,Private room,70,1,0,,,1,87 +19181504,Large furnished studio utilities&wifi including.,61685550,Jianyan,Manhattan,Upper East Side,40.77099,-73.95118,Entire home/apt,120,1,3,2017-06-24,0.12,1,0 +19181881,A real New York experience,19975102,Missy,Manhattan,Upper West Side,40.78184,-73.98382,Entire home/apt,315,2,1,2017-10-31,0.05,1,0 +19182026,Spacious 1-bedroom by Prospect Park + BK Museum,33439741,Mahlet,Brooklyn,Prospect Heights,40.67488,-73.96692,Entire home/apt,125,1,9,2018-11-04,0.36,1,65 +19182044,Perfect Penthouse Duplex,84126420,Sk,Manhattan,Chelsea,40.75112,-73.99605,Entire home/apt,399,3,44,2019-07-05,2.40,1,112 +19183619,Large loft studio,3255732,Peter,Brooklyn,Williamsburg,40.70527,-73.93057,Shared room,72,30,3,2018-07-07,0.13,1,0 +19188025,"Heart of Bayside, modern 3 Bed 2 bath",95102570,Nancy,Queens,Bayside,40.76304,-73.76948,Entire home/apt,239,5,10,2019-05-20,0.46,1,188 +19188166,Luxury 2bedroom with loft/ 2 bath,134218386,Nancy,Queens,Bayside,40.76143,-73.76937,Entire home/apt,200,4,27,2019-06-30,1.11,1,215 +19189347,Family friendly spacious charming flat!,45223012,Maria,Manhattan,Inwood,40.86702,-73.92519,Entire home/apt,110,2,15,2019-04-25,0.62,1,161 +19190179,Private Room in Williamsburg Loft,36460338,Janine,Brooklyn,Williamsburg,40.71233,-73.9586,Private room,80,5,6,2019-04-24,0.46,1,64 +19190579,"Charming, Sleek UES Studio",9649691,Deaton,Manhattan,Upper East Side,40.76715,-73.95857,Entire home/apt,118,3,29,2019-07-06,1.15,1,0 +19190801,Private room in prime Bushwick- 20mins to the city,24913451,Cristal,Brooklyn,Bushwick,40.6969,-73.92627,Private room,37,3,3,2018-01-14,0.12,1,0 +19191340,Spacious bedroom with living room in Greenpoint,23664115,Becca,Brooklyn,Greenpoint,40.72591,-73.94826,Private room,77,2,15,2018-10-01,0.64,1,12 +19192149,"Walk to Central Park + Columbia, Morningside",27694509,Jen,Manhattan,Harlem,40.80302,-73.95605,Private room,100,6,98,2019-06-22,4.07,1,28 +19193139,Loft Bright Studio,133923404,Madelline,Manhattan,Harlem,40.82669,-73.94827,Entire home/apt,95,5,9,2019-05-25,0.38,1,0 +19193664,"Modern Apartment in Williamsburg, Brooklyn",19734419,Maggie,Brooklyn,Williamsburg,40.71226,-73.95344,Entire home/apt,180,4,0,,,1,0 +19193758,Large bedroom 20 minutes away from Manhattan,89861903,Colin,Queens,Astoria,40.76731,-73.92634,Private room,55,2,5,2017-07-30,0.21,1,0 +19194997,Murray Hill Bedroom. Comfortable and Convenient,71203979,Peter,Manhattan,Kips Bay,40.74507,-73.9792,Private room,76,2,0,,,1,0 +19195173,Bright & sophisticated Brooklyn home,83967416,Freddie,Brooklyn,Crown Heights,40.67072,-73.957,Private room,60,2,1,2017-06-12,0.04,1,0 +19195474,Design-Infused Two Bed Beauty in Fort Greene,389321,Marlene,Brooklyn,Fort Greene,40.69135,-73.97044,Entire home/apt,240,3,15,2018-12-26,0.78,1,0 +19195537,Charming 2 bed 2 bath wash/dryer Gym in building,113805886,Yaacov,Manhattan,Upper East Side,40.77861,-73.95015,Entire home/apt,287,31,6,2019-03-20,0.27,33,326 +19196146,Lower east side artistic oasis,133269895,E,Manhattan,Lower East Side,40.7195,-73.98519,Private room,100,5,0,,,1,0 +19196911,Beautiful shared room in Modern CoLiving space,134293540,Valentin,Queens,Ridgewood,40.7061,-73.9115,Shared room,27,30,4,2018-09-30,0.18,4,6 +19197129,Best CoLiving next to Bushwick!,134293540,Valentin,Queens,Ridgewood,40.70508,-73.90217,Shared room,26,31,5,2018-05-04,0.22,4,365 +19197277,Entire Luxury Divided Studio in Time Square,19623390,Rick,Manhattan,Theater District,40.75936,-73.98752,Entire home/apt,290,5,1,2017-06-20,0.04,1,0 +19197632,Heart Of Queens 2❤️❤️/ Jackson Heights/ Elmhurst,123483050,Andrea,Queens,Elmhurst,40.74741,-73.88149,Private room,85,1,92,2019-06-20,3.70,3,166 +19197983,Beautiful Apartment with Manhattan view.,14249332,Joseph,Queens,Astoria,40.77705,-73.93443,Private room,69,1,68,2019-06-22,2.72,1,51 +19199353,Spacious 1 Bed in the heart of Manhattan,80242044,Vk,Manhattan,Greenwich Village,40.73,-74.00122,Entire home/apt,196,2,15,2019-04-14,0.61,1,0 +19200160,"Art, Design & Comfort.",68228552,Assane,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95297,Entire home/apt,154,14,2,2019-06-10,1.22,2,172 +19200270,New! Clean! 1 Bedroom apt in Bensonhurst -Sleeps 4,131858158,Dan,Brooklyn,Bensonhurst,40.60658,-73.99738,Entire home/apt,113,3,69,2019-05-23,2.80,2,99 +19203963,Luxury apartment in heart of Nolita,6163686,Ben,Manhattan,Nolita,40.72249,-73.99507,Entire home/apt,250,3,0,,,1,0 +19204555,Bedroom in renovated apartment -Astoria,75563831,Rayan,Queens,Astoria,40.76012,-73.9092,Private room,45,10,17,2019-05-07,0.69,2,283 +19206035,UWS Room & Private Bathroom for one,1252275,Kaitlin,Manhattan,Upper West Side,40.80176,-73.96638,Private room,70,3,13,2019-03-25,0.52,1,0 +19206550,Huge sunny room PRIVATE BATHROOM 15 min 2 Times Sq,128156060,Doa,Queens,Sunnyside,40.74194,-73.91289,Private room,70,21,22,2019-03-10,1.02,1,0 +19207312,Huge bedroom w/ private living room in big house!,6287848,Will,Brooklyn,Prospect Heights,40.68117,-73.97461,Private room,100,2,22,2018-03-11,0.91,1,0 +19209436,Large 1-bedroom Apt with lots of charm and art.,87259106,Vaughn,Manhattan,Harlem,40.80995,-73.94485,Entire home/apt,102,3,24,2018-01-15,0.96,1,0 +19209474,Cambridge Place 4 bed Home,134415241,Katherine,Brooklyn,Clinton Hill,40.68384,-73.96201,Entire home/apt,350,2,4,2017-08-06,0.16,1,0 +19209477,Nice comfy private room with backyard included!,20804098,Tenzin,Queens,Maspeth,40.72815,-73.89945,Private room,70,1,0,,,1,0 +19209710,"Sunny, 2BR apartment in the heart of Bushwick",19785181,Robert & Bianca,Brooklyn,Bushwick,40.70166,-73.92673,Entire home/apt,136,3,10,2018-08-25,0.40,1,0 +19209764,"Clean , Charming and convenient location.",16478255,Loredana,Manhattan,Harlem,40.80819,-73.94729,Private room,100,3,0,,,1,362 +19209888,Private room in Brooklyn,2096374,Cyndi,Brooklyn,Bedford-Stuyvesant,40.69601,-73.96036,Private room,80,90,0,,,1,365 +19211023,Charming apartment in Nolita/Soho,6850350,Sam,Manhattan,Nolita,40.72254,-73.99543,Private room,115,1,28,2018-06-22,1.16,1,0 +19212024,Home,764688,Itamar,Brooklyn,Prospect Heights,40.67649,-73.97113,Entire home/apt,160,7,1,2017-07-13,0.04,1,0 +19212268,"Spacious 1-bedroom in Fort Greene, Brooklyn",51914156,Christopher,Brooklyn,Fort Greene,40.69353,-73.9711,Entire home/apt,130,2,31,2019-03-03,1.24,1,0 +19212370,‘ SMALL STUDIO ONLY FOR 2’,11601610,Gh,Manhattan,Upper West Side,40.7732,-73.98768,Entire home/apt,148,4,60,2019-06-22,2.42,1,320 +19212378,Gorgeous private room with private bathroom.,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93746,Private room,110,1,150,2019-07-03,5.99,4,85 +19212489,Authentic private room. Just 25 min to Manhattan!,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93794,Private room,87,1,141,2019-07-01,5.58,4,73 +19212985,"Lovely Zen Entire Apt West Harlem, Fengshui Plants",38655309,Jade,Manhattan,Harlem,40.82953,-73.94283,Entire home/apt,72,3,28,2019-01-12,1.15,1,0 +19218475,Cozy Private Large Bed in Prime Chelsea,134510659,Josif,Manhattan,Chelsea,40.74319,-73.99636,Private room,90,14,0,,,1,0 +19219624,"Creative Retreat Double, With Garden",134521683,Kathy,Manhattan,East Village,40.7239,-73.98111,Private room,120,30,3,2017-09-27,0.12,2,0 +19219988,Stunning refurbished church apt in heart of Wburg,1832930,Christina,Brooklyn,Williamsburg,40.71749,-73.95747,Entire home/apt,450,2,31,2019-06-29,1.24,1,22 +19220496,Parkside luxury - studio with balcony,23257199,Rachel,Brooklyn,Crown Heights,40.67375,-73.96255,Entire home/apt,84,4,8,2017-11-24,0.33,1,0 +19221008,Great room in Upper East Side 85th/3av,99349134,Tupac,Manhattan,Upper East Side,40.77713,-73.95277,Private room,75,1,9,2019-06-23,0.40,2,119 +19221072,Room in Upper West Artsy Loft,63236560,Catherine,Manhattan,Upper West Side,40.79835,-73.97242,Private room,110,7,3,2019-06-03,0.13,1,321 +19221595,Brooklyn Designer 3 Bedrms free parking,131659,Ruth,Brooklyn,Bushwick,40.68267,-73.90576,Entire home/apt,148,3,79,2019-06-22,3.22,1,258 +19222455,One Bedroom Walk Up in Hell's Kitchen,134549676,Todd,Manhattan,Hell's Kitchen,40.76373,-73.9881,Entire home/apt,225,2,1,2017-06-13,0.04,1,0 +19222766,Quiet 1 bedroom in MANHATTAN ( Hamilton Heights),9963151,Milan,Manhattan,Harlem,40.82319,-73.95103,Entire home/apt,122,4,16,2019-06-16,0.67,1,5 +19224202,Spacious Comfort in the Upper West Side,6001984,Pierre,Manhattan,Upper West Side,40.80253,-73.96812,Entire home/apt,190,4,4,2018-11-27,0.17,1,0 +19224930,"Cozy Studio in Upper East Side, Manhattan",21812461,Betul,Manhattan,Upper East Side,40.7787,-73.94775,Entire home/apt,120,20,7,2019-06-27,0.29,1,0 +19225682,Sunny and Breezy Brooklyn Apartment near Trains,26656760,Lynsey,Brooklyn,Bedford-Stuyvesant,40.69477,-73.94423,Entire home/apt,200,4,10,2019-05-28,0.40,1,0 +19225880,Bright & lovely 1BD Apartment,24709724,Maria,Queens,Ridgewood,40.70684,-73.89474,Entire home/apt,80,7,2,2019-01-03,0.11,1,190 +19226317,Sunny Apartment in Brooklyn Heights,26814623,Kate,Brooklyn,Brooklyn Heights,40.69016,-73.99311,Entire home/apt,149,2,13,2019-06-30,0.52,1,0 +19226897,Big & Bright Room In Washington Heights,93561011,Jennifer,Manhattan,Washington Heights,40.84492,-73.93673,Private room,60,2,3,2019-07-01,0.19,1,223 +19226980,Brownstone Living,33365473,Paul,Brooklyn,Bedford-Stuyvesant,40.6809,-73.94271,Entire home/apt,650,31,0,,,2,358 +19227077,Spacious 1 bedroom apt fantastic view Midtown NYC,80990325,Terry,Manhattan,Hell's Kitchen,40.76383,-73.99251,Entire home/apt,175,2,85,2019-06-26,3.43,1,0 +19227138,Modern quiet and clean room minutes from Manhattan,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68178,-73.91287,Private room,55,1,115,2019-06-16,4.64,6,164 +19227222,BRIGHT MASSIVE ROOM. 20 MINUTES TO MIDTOWN,133657043,Diana,Manhattan,Harlem,40.83009,-73.94723,Private room,77,1,1,2019-06-02,0.81,1,0 +19227365,Master bedroom in large apt minutes from Manhattan,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.6829,-73.91295,Private room,55,1,119,2019-06-24,4.78,6,205 +19227424,"Private, cozy room near major trains",86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.6812,-73.91148,Private room,50,1,102,2019-06-22,4.14,6,237 +19227532,"Amazing Harlem Apartment on 5th Avenue +3 bedrooms",134601877,Steven,Manhattan,East Harlem,40.79929,-73.94605,Entire home/apt,350,3,81,2019-06-29,3.46,2,27 +19227538,Private room in sunny Manhattan apartment.,15741095,Cameron,Manhattan,Washington Heights,40.84491,-73.94044,Private room,50,1,20,2017-12-25,0.81,1,0 +19227560,Super Cozy!,333897,Lane,Queens,Ridgewood,40.69578,-73.90261,Private room,100,2,48,2019-07-01,1.96,2,174 +19227562,West Village Apartment,32988374,Christie,Manhattan,West Village,40.73526,-74.00476,Entire home/apt,319,2,20,2019-06-13,1.51,1,79 +19228313,Spacious getaway in the heart of Harlem,63010844,Morgan,Manhattan,Harlem,40.82399,-73.94382,Private room,46,1,0,,,1,0 +19228956,Spacious and bright apartment in Manhattan,19783595,Romy,Manhattan,East Harlem,40.79234,-73.94145,Entire home/apt,120,5,9,2017-09-01,0.36,1,0 +19236099,Spacious 2 Bedroom Apt in Great Neighborhood,6597437,Beth,Brooklyn,Prospect Heights,40.67585,-73.96755,Entire home/apt,150,3,12,2018-12-24,0.52,1,0 +19236409,Sunny 2BR in townhouse on cutest E Vill block,1722812,James,Manhattan,East Village,40.73111,-73.98675,Entire home/apt,250,4,2,2018-01-09,0.08,1,0 +19236716,a beautiful home,134672751,Louis,Staten Island,West Brighton,40.62398,-74.10801,Private room,200,3,0,,,1,365 +19237286,Historic Harlem Brownstone -Perfect for Families!,20128515,Ami,Manhattan,Harlem,40.82707,-73.94763,Entire home/apt,400,4,26,2019-06-12,1.21,1,128 +19239064,Cozy BedStuy/Bushwick Brownstone Apartment,3452241,Sadé,Brooklyn,Bedford-Stuyvesant,40.68524,-73.92183,Private room,125,2,0,,,1,0 +19239282,Beautiful brownstone apartment on quiet street,612818,Emilie,Brooklyn,Carroll Gardens,40.67847,-73.99924,Entire home/apt,125,2,11,2019-07-01,0.45,1,26 +19239928,"Bright UES Studio, avail short or long term",5530093,Natallia,Manhattan,Upper East Side,40.76327,-73.9612,Entire home/apt,180,6,5,2017-11-07,0.21,1,0 +19240100,"Light/Bright Artist's Studio in Red Hook, Brooklyn",29735603,Lisa,Brooklyn,Red Hook,40.6799,-74.01147,Entire home/apt,90,7,3,2018-11-02,0.13,1,215 +19240332,Gorgeous Centrally Located Manhattan Apartment,133547094,Jena,Manhattan,Murray Hill,40.74808,-73.98172,Entire home/apt,200,5,10,2019-07-03,1.41,1,52 +19241136,"Sunny, spacious 1 bedroom apartment in Ridgewood!",5374258,Julia,Queens,Ridgewood,40.70545,-73.90393,Entire home/apt,100,4,7,2019-01-14,0.29,1,0 +19241855,1 Bed&Bath in heart of Bushwick (20mintoManhattan),18515933,Maddie,Brooklyn,Bushwick,40.70565,-73.92492,Private room,70,2,10,2018-11-12,0.40,1,18 +19242128,2 Large Bedroom Apt in quiet Forest Hills,39641996,Mike,Queens,Forest Hills,40.72428,-73.85156,Entire home/apt,100,2,0,,,1,0 +19242821,1 bedroom apt,134438985,Andrea,Queens,Astoria,40.76473,-73.91183,Entire home/apt,199,1,5,2017-12-17,0.23,1,0 +19243465,Room in Full Floor East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72715,-73.98623,Private room,120,1,39,2019-06-02,1.65,7,350 +19244237,Your Brooklyn pad,17184568,Luke,Brooklyn,Bushwick,40.70232,-73.92935,Private room,60,1,1,2017-07-02,0.04,1,0 +19244550,Sun drenched 2br with private backyard!,2110569,Sivan,Brooklyn,Bushwick,40.69954,-73.93761,Entire home/apt,199,2,60,2019-06-30,2.47,1,37 +19244710,Spacious & Cozy 1BR Apartment in Brownstone Bldg,20283471,Ramy,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93315,Entire home/apt,130,1,3,2017-06-26,0.12,1,0 +19245830,Sunny Spacious Room + Private Bathroom in Bushwick,20507114,Tian,Brooklyn,Bushwick,40.70068,-73.92293,Private room,60,3,8,2017-09-24,0.33,1,0 +19245930,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""S”",59156312,Viviana,Queens,Woodhaven,40.68641,-73.86635,Private room,69,3,21,2019-06-21,0.85,9,357 +19246021,"City Room, City View",4620141,Ellen,Manhattan,Washington Heights,40.84717,-73.93267,Private room,30,5,3,2017-08-08,0.12,2,0 +19246114,Stunning modern artsy 2 bed -steam & rooftop,16262749,Abby,Brooklyn,Greenpoint,40.72092,-73.94281,Entire home/apt,350,1,70,2019-07-01,3.26,1,142 +19246490,Large bedroom with PRIVATE bathroom and KING Bed,13463652,Rueben,Brooklyn,Clinton Hill,40.68399,-73.96465,Private room,125,5,0,,,1,0 +19246634,Spacious and Bright 1.5 Bedroom by Prospect Park,23350812,Jonathan,Brooklyn,Kensington,40.64676,-73.97403,Entire home/apt,93,13,6,2019-02-22,0.25,1,37 +19246662,"MANHATTAN +near Central Park& +Columbia University",42068815,Steven,Manhattan,Morningside Heights,40.80908,-73.95858,Entire home/apt,150,3,81,2019-06-02,3.24,1,282 +19246709,Cute and Comfy Bedroom,2514859,Meghan,Brooklyn,Bedford-Stuyvesant,40.68719,-73.95298,Private room,60,3,2,2018-09-10,0.11,2,0 +19247214,Spacious Bedroom in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72717,-73.98643,Private room,180,1,28,2019-06-24,1.17,7,328 +19247235,New Tidy room separate entrance plus paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.75715,-73.81272,Private room,116,2,55,2019-06-26,2.19,10,361 +19247305,Midcentury Minimalist 1BR in Prime Williamsburg,22176151,Lianne,Brooklyn,Williamsburg,40.71576,-73.96084,Entire home/apt,225,2,5,2017-12-18,0.21,1,0 +19248044,Two-story Zen Oasis One Block from Central Park,952909,Peter,Manhattan,Upper West Side,40.77949,-73.98,Entire home/apt,183,30,0,,,1,0 +19248045,Beautiful bedroom in Historic Forest Hills Gardens,121732047,Aaron,Queens,Forest Hills,40.71064,-73.84614,Private room,40,14,0,,,1,19 +19248688,Sunny Brooklyn Two Bedroom,1241818,William,Brooklyn,Cobble Hill,40.68795,-73.99158,Entire home/apt,124,30,1,2017-08-25,0.04,1,12 +19249099,Cozy Chelsea Apartment/ Highline/ Whitney Museum,41902579,Maria,Manhattan,Chelsea,40.74195,-74.00052,Entire home/apt,140,7,41,2019-06-15,1.66,1,13 +19249136,Small Homey Studio in a Big Noisy City,45536295,Alyssa,Manhattan,Harlem,40.81703,-73.93691,Entire home/apt,84,2,3,2017-06-28,0.12,1,0 +19249193,Charming One Bedroom in Brooklyn Heights,11760898,Evan,Brooklyn,Brooklyn Heights,40.69357,-73.99489,Entire home/apt,149,20,0,,,1,0 +19250619,Blue Moon,115546121,Sonche,Queens,Sunnyside,40.74694,-73.9194,Entire home/apt,130,5,0,,,1,0 +19250742,Harlem Garden Oasis in New York City Brownstone,58782992,Mark And Josephine,Manhattan,Harlem,40.82287,-73.94509,Entire home/apt,125,31,96,2019-05-25,3.93,2,186 +19251255,You'll never find studio with this price(Allyours),134809070,Lilian,Brooklyn,Bedford-Stuyvesant,40.67759,-73.90888,Entire home/apt,63,2,26,2018-03-31,1.08,1,0 +19260473,Nicki and Tim's place,5325177,Nicki,Brooklyn,Flatbush,40.64707,-73.96278,Entire home/apt,85,5,2,2018-01-01,0.09,1,0 +19261252,Luxurious Designer brownstone with backyard,5453550,Christine & James,Brooklyn,Clinton Hill,40.69556,-73.96611,Entire home/apt,425,4,38,2019-07-02,1.74,3,262 +19261697,Hidden Treasure in Bed-Sty,67992400,Ben,Brooklyn,Bedford-Stuyvesant,40.6953,-73.93567,Private room,50,2,1,2017-07-25,0.04,1,0 +19261720,Oceanfront vacation home on Rockaway Beach,6988611,Jill,Queens,Arverne,40.58781,-73.79317,Entire home/apt,1500,3,0,,,1,342 +19263405,Spacious Village 1 bedroom - 5 star rated host,4279544,Abigail,Manhattan,Greenwich Village,40.72954,-74.00206,Entire home/apt,215,4,6,2017-12-17,0.24,1,0 +19264368,Relaxing Room in a Spacious Artist Apartment,314115,Gigi,Bronx,Morrisania,40.8329,-73.89608,Private room,60,5,4,2018-07-29,0.16,1,175 +19265766,Cozy luxurious & private 1 1/2 bedroom in Brooklyn,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68153,-73.9538,Entire home/apt,200,7,8,2019-05-26,0.33,2,355 +19265792,Oasis Carriage House Apartment in Williamsburg,14416238,New,Brooklyn,Williamsburg,40.70851,-73.94197,Entire home/apt,125,4,0,,,1,0 +19265835,Private Apt Renovated 2BR by Central Park & Cafés,1366844,Ali,Manhattan,Harlem,40.80079,-73.95798,Entire home/apt,135,3,71,2019-06-09,3.52,1,9 +19266676,Spacious and Modern 1BR in Heart of West Village,31931291,Matthew,Manhattan,West Village,40.73143,-74.00817,Entire home/apt,250,5,0,,,1,0 +19267834,Rainbow Guesthouse,124399442,Igor,Brooklyn,Midwood,40.61359,-73.95983,Shared room,32,1,8,2019-06-30,0.32,4,21 +19268922,LARGE PRIVATE ROOM IN ASTORIA,134741341,Sofia,Queens,Astoria,40.77415,-73.93125,Private room,85,1,14,2018-12-29,0.76,2,6 +19269531,"Steps away from Grand Central, cute & cozy!",4297109,Christian,Manhattan,Midtown,40.75334,-73.97278,Entire home/apt,195,2,5,2017-10-01,0.20,1,0 +19269676,Quintessential loft location on Bond Street.,128780335,Alison,Manhattan,NoHo,40.72681,-73.99346,Entire home/apt,352,4,15,2019-01-01,0.63,1,13 +19270160,One Bedroom Walk Up in Hell's Kitchen,20292772,Noel,Manhattan,Hell's Kitchen,40.76227,-73.99035,Entire home/apt,225,2,6,2017-11-25,0.24,1,0 +19271040,Modern Beautiful Bedford Stuyvesant Brownstone,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.6861,-73.93997,Entire home/apt,60,2,146,2019-07-07,5.82,5,88 +19271084,"Sunny quiet room + living room, 22m to Man. J,M,L",24745688,Talha Can,Brooklyn,Bushwick,40.69439,-73.92008,Private room,35,25,3,2019-02-28,0.13,1,36 +19272653,Hells kitchen crash pad with half bath!,1579845,James,Manhattan,Hell's Kitchen,40.76283,-73.9897,Private room,87,4,0,,,1,0 +19272890,1 bedroom apt with private terrace on UWS.,134961952,Ilona,Manhattan,Upper West Side,40.7765,-73.97914,Entire home/apt,230,5,0,,,1,0 +19273138,"Room in a Beautiful, Spacious Home",53480097,Jillian,Brooklyn,Bushwick,40.68471,-73.90906,Private room,60,2,27,2019-06-28,1.08,2,104 +19273509,Astoria home 2 living rooms/ 1 bedroom/1 bath,4969033,Bella,Queens,Astoria,40.76634,-73.90872,Entire home/apt,90,3,30,2018-08-29,1.24,1,0 +19274199,Luxurious Country Beach Surf Loft,62608664,David,Queens,Neponsit,40.56931,-73.86122,Entire home/apt,274,2,34,2019-06-09,1.37,1,315 +19274206,Bright and spacious private room in Hells Kitchen,7033916,Braden,Manhattan,Hell's Kitchen,40.76463,-73.9877,Private room,69,6,2,2018-01-03,0.08,1,0 +19274249,Bed-study Best!,36474715,Hanan,Brooklyn,Bedford-Stuyvesant,40.68358,-73.95458,Private room,65,3,27,2019-05-11,1.09,1,78 +19274358,"Luxury Condo-gym,pool,sundeck,sauna in bldg",15897027,Christina,Manhattan,Murray Hill,40.75075,-73.9752,Entire home/apt,278,2,8,2018-04-22,0.32,1,0 +19274584,"Private Bedroom, 10 Minutes to Lower Manhattan",24842789,David,Brooklyn,Williamsburg,40.70717,-73.94949,Private room,60,1,5,2017-07-04,0.20,1,0 +19275018,Spacious & bright room in Upper West near Columbia,24771293,Allen,Manhattan,Morningside Heights,40.80477,-73.96486,Private room,79,2,11,2018-02-04,0.45,1,0 +19278895,A Brooklyn retreat. 25M subway to the city.,423117,Jen,Brooklyn,Bedford-Stuyvesant,40.68203,-73.92472,Private room,100,2,13,2019-05-19,0.52,1,179 +19279519,studio in UES,22215460,Abc,Manhattan,Upper East Side,40.7685,-73.95698,Entire home/apt,500,1,0,,,1,363 +19280513,Charming -One bedroom -Williamsburg,18747504,Schimpff,Brooklyn,Williamsburg,40.71886,-73.95695,Private room,100,2,1,2017-06-22,0.04,1,0 +19280591,♛ Private & Beautiful West Village Townhouse 2BR,2474293,Colleen,Manhattan,West Village,40.7316,-74.00212,Entire home/apt,210,5,53,2019-07-02,2.27,1,148 +19281846,Top of the Heights Harlem Duplex!,94877519,Joseph,Manhattan,Harlem,40.82798,-73.95202,Entire home/apt,180,3,40,2019-05-19,1.69,1,65 +19282178,Astoria Two Bed and Kitchen Minutes from subway,131392140,Vik,Queens,Ditmars Steinway,40.77458,-73.92195,Entire home/apt,165,3,61,2019-06-08,2.46,5,62 +19282527,Beautiful Greenpoint Apartment W/ Outdoor space,3820994,Nick,Brooklyn,Greenpoint,40.72812,-73.95619,Entire home/apt,225,5,7,2019-01-01,0.29,1,4 +19282891,Extra Large 1br in the heart of Astoria!,139573,Kristin,Queens,Astoria,40.76272,-73.92656,Entire home/apt,150,7,1,2017-09-12,0.05,1,0 +19283246,LARGE 1 BR IN DOORMAN BUILDING w ROOFTOP + GYM,107179840,Keely,Brooklyn,Bushwick,40.69477,-73.92931,Entire home/apt,90,3,8,2019-05-25,0.32,1,0 +19284144,Great Empty Apartment for you.,19893801,Jimmy,Brooklyn,Windsor Terrace,40.6526,-73.97366,Entire home/apt,77,1,5,2017-07-01,0.20,1,0 +19284253,2A,17770287,Nina,Manhattan,Midtown,40.75077,-73.9814,Entire home/apt,145,30,4,2018-11-30,0.18,14,207 +19287758,Stellar Washington Heights Room Near Major Subways,68915153,Chris,Manhattan,Washington Heights,40.84191,-73.9356,Private room,60,3,6,2018-12-24,0.31,1,0 +19288937,Airy and bright floor in East Village townhouse,135073646,Joy,Manhattan,East Village,40.72784,-73.98883,Entire home/apt,250,2,99,2019-06-21,4.03,1,176 +19289198,Sunny Room with Private Bath; Prime LES/Chinatown,3801752,Tara,Manhattan,Chinatown,40.71418,-73.99238,Private room,90,1,105,2019-06-15,4.19,2,87 +19290380,Cozy gem in the heart of TriBeca!!,134887663,Luis,Manhattan,Tribeca,40.71863,-74.0117,Entire home/apt,220,2,76,2019-06-26,3.04,1,127 +19290840,Sun-filled Williamsburg room for an artist/travelr,135083290,Tiasha,Brooklyn,Williamsburg,40.70928,-73.94882,Private room,46,4,6,2018-11-22,0.41,1,7 +19291110,Homely Private Room with Queen Sized Bed,34198671,Narmeen,Brooklyn,Crown Heights,40.67594,-73.9261,Private room,55,1,1,2017-06-24,0.04,1,0 +19294702,Williamsburg Modern Two-Floor 1 bedroom 1.5 baths,14157243,Leidy,Brooklyn,Williamsburg,40.71617,-73.95283,Entire home/apt,250,2,3,2017-11-05,0.14,1,0 +19294842,"ACintheroom!35minutestodowntown Manhattan,QUEENbed",47782497,Robianddebbie,Brooklyn,East New York,40.66906,-73.87805,Private room,55,7,15,2019-05-01,1.33,3,318 +19295472,East Village / Gramercy Apartment with Yard,42941590,Michael,Manhattan,Gramercy,40.73408,-73.98163,Entire home/apt,225,3,39,2019-07-02,1.79,1,345 +19295652,Backpacker’s Studio( Spring Deal!!),13547493,Chuck,Manhattan,Upper East Side,40.78179,-73.95209,Entire home/apt,120,3,38,2019-06-01,3.37,2,5 +19295911,"Modern, Clean 1 bedroom Apartment in Bushwick",135124200,Y,Brooklyn,Bushwick,40.68911,-73.91581,Entire home/apt,89,2,166,2019-06-22,6.79,1,52 +19295941,Room 12,74633496,Justine,Bronx,University Heights,40.85771,-73.90899,Private room,40,3,31,2019-06-28,1.26,5,362 +19296358,"Private room in midtown Manhattan曼哈顿中心 位于地狱厨房,位置棒棒",135131537,Laura,Manhattan,Hell's Kitchen,40.75743,-73.99638,Private room,69,3,80,2019-06-12,3.70,2,16 +19296503,Fold-out futon on East Village/LES border!,9913035,George,Manhattan,Lower East Side,40.72195,-73.98861,Shared room,55,15,11,2019-05-25,0.44,3,347 +19296720,West Village Getaway,135136607,Adam,Manhattan,West Village,40.73697,-74.00223,Entire home/apt,152,2,29,2019-03-10,1.17,1,0 +19297780,"Beautiful, Sunny, & Spacious 3 Bedrooms at Subway",23401472,Heather,Manhattan,Harlem,40.82452,-73.94499,Entire home/apt,57,30,0,,,2,95 +19297819,Clean&Simple (45 minutes to Manhattan),132341923,Cynthia,Queens,Jamaica,40.68875,-73.78786,Entire home/apt,57,1,120,2019-07-03,5.37,2,56 +19298754,"Artist Hostel in Bedstuy, Brooklyn",132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94868,Shared room,37,2,3,2019-01-01,0.13,3,343 +19298911,Artist Hostel II in Bedstuy Brooklyn,132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69502,-73.94711,Shared room,37,2,0,,,3,348 +19302761,"Cozy and Artsy Bedrooms in Prime BedStuy, BK",68579384,Julie,Brooklyn,Bedford-Stuyvesant,40.68274,-73.9261,Private room,42,3,3,2017-07-09,0.12,2,0 +19304453,Convenient Midtown Private 1 Bedroom,11035230,Mel,Manhattan,Hell's Kitchen,40.75544,-73.99406,Entire home/apt,100,1,13,2019-02-17,0.52,1,0 +19305374,Beautiful Large 1 BD Park Slope Historic District,6179439,Cassandra,Brooklyn,Park Slope,40.67027,-73.97874,Entire home/apt,226,2,57,2019-06-26,2.32,1,127 +19306176,Beautiful Room in Manhattan- Great location,20266646,Gabriella,Manhattan,Morningside Heights,40.81454,-73.96102,Private room,60,2,4,2019-04-23,0.24,1,0 +19306475,Charming Brooklyn House on a Quiet Block,11688742,Holly,Brooklyn,Windsor Terrace,40.65193,-73.97743,Entire home/apt,300,3,1,2017-11-25,0.05,1,194 +19306614,Big sunny room in Williamsburg,10369934,Tom,Brooklyn,Williamsburg,40.71112,-73.95797,Private room,85,14,0,,,1,0 +19307798,Stay in the heart of Little Italy/Chinatown!,23131509,Mohammad,Manhattan,Little Italy,40.71913,-73.9968,Shared room,165,2,0,,,1,0 +19307997,Super Lux 2BR in Downtown Manhattan,105703386,Derek,Manhattan,Battery Park City,40.70725,-74.01741,Entire home/apt,390,2,0,,,1,0 +19308199,Sunny beautiful large bedroom in Williamsburg,31907981,Luis,Brooklyn,Williamsburg,40.71635,-73.94238,Private room,80,3,9,2018-05-11,0.38,1,0 +19308387,Private entry apartment on stunning Park Block,40755122,Ann,Brooklyn,Park Slope,40.6704,-73.97432,Entire home/apt,150,3,105,2019-06-30,4.23,1,72 +19308804,2br/1bth Garden Townhouse Apartment,135061108,Carmelo,Brooklyn,East Flatbush,40.65042,-73.94842,Entire home/apt,225,1,6,2019-07-01,0.25,2,152 +19309279,Cute Room in Renovated Spacious LES/Chinatown Apt,1103131,Andrew,Manhattan,Lower East Side,40.71453,-73.98679,Private room,69,5,72,2019-06-24,2.93,2,316 +19309355,Small and Cozy Private Room in Downtown,8962305,Cici,Manhattan,Lower East Side,40.71391,-73.98938,Private room,61,5,8,2019-04-23,0.65,3,50 +19310278,BestofBrooklyn,54739,Georgi And Alisa,Brooklyn,Crown Heights,40.67578,-73.95606,Entire home/apt,100,5,9,2018-11-11,0.47,1,0 +19310554,3 Floors for over 16 guests minutes from NYC!,1420715,Omar And Kareema,Brooklyn,Bushwick,40.68845,-73.91985,Entire home/apt,399,4,4,2019-05-08,0.28,3,221 +19311031,Sunny Chic Crown Heights One Bedroom,9453989,Nneya,Brooklyn,Crown Heights,40.6735,-73.95322,Entire home/apt,90,13,12,2019-06-01,0.58,1,74 +19311153,Studio in Sunny Sanctuary,48891291,Chelsea,Brooklyn,Bushwick,40.70385,-73.92513,Private room,40,2,3,2017-09-24,0.12,1,0 +19311346,The Heart of Williamsburg,18335748,Jack And Rachel,Brooklyn,Williamsburg,40.71592,-73.9562,Private room,60,3,22,2019-06-07,0.88,1,46 +19312014,Luxury building studio,38483192,Ryan,Manhattan,Financial District,40.70476,-74.01579,Entire home/apt,165,2,0,,,1,0 +19312705,Serene brownstone in the heart of Brooklyn,42947876,Susan,Brooklyn,Clinton Hill,40.68664,-73.96286,Entire home/apt,212,5,11,2018-08-08,0.46,1,10 +19313064,Bright and Comfortable Chic Chelsea 1-bedroom!,34006180,Zack,Manhattan,Chelsea,40.73996,-73.99987,Entire home/apt,200,3,3,2019-04-21,0.16,1,11 +19313134,"Cozy 1 bedroom apt, Quiet, Near metro, East side",3792860,Elena,Manhattan,Upper East Side,40.76873,-73.95328,Entire home/apt,180,3,0,,,2,0 +19313483,"Madison Ave BR Steps from Central Park, east 60s",26691429,Camilla,Manhattan,Upper East Side,40.76892,-73.96906,Private room,115,1,56,2019-06-22,3.03,1,325 +19314011,"Most Amazing Location, Midtown 3 Bedroom",61391963,Corporate Housing,Manhattan,Midtown,40.75542,-73.96781,Entire home/apt,185,30,3,2019-06-02,0.16,91,147 +19314050,Split 1BR immaculate luxury apt Ft Green,135269204,Emma,Brooklyn,Clinton Hill,40.68284,-73.96677,Entire home/apt,130,7,3,2018-09-02,0.13,1,189 +19314589,THE SMALL CHATEAU IN THE TREES,135272642,Stefanie Elizabeth,Manhattan,East Village,40.72408,-73.98297,Entire home/apt,165,1,202,2019-06-22,8.16,1,217 +19314671,"Sunlit, Mid-Century 1 BR 10 minutes to city #10226",5148966,G,Brooklyn,Greenpoint,40.72925,-73.95645,Entire home/apt,160,2,23,2019-07-05,0.94,1,30 +19314909,1.5 Bedrooms in Greenpoint Williamsburg Apt for 5,89031106,Edyta,Brooklyn,Greenpoint,40.72406,-73.95044,Entire home/apt,185,30,3,2019-06-01,0.16,4,261 +19315138,Nest in Nolita,5060814,Lee,Manhattan,Nolita,40.72178,-73.99509,Entire home/apt,170,3,0,,,1,0 +19315218,Spacious Modern Brooklyn Apt!,108578737,Ellis,Brooklyn,Crown Heights,40.66943,-73.96024,Private room,50,5,0,,,1,0 +19315254,All Yours! Entire Spacious Bright Modern Loft!,23827731,Douglas,Brooklyn,Williamsburg,40.71289,-73.96354,Entire home/apt,250,14,13,2019-04-26,0.52,1,31 +19315654,Beautiful Spacious 1 Bedroom Apt. in New York City,135275978,John,Manhattan,Harlem,40.82361,-73.93886,Entire home/apt,150,5,78,2019-06-14,3.14,1,281 +19316517,Large 1 BR / Creative Space - Marble Hill,135294307,Chad,Manhattan,Marble Hill,40.8753,-73.9116,Entire home/apt,90,5,0,,,1,0 +19317002,Quiet Sunny Studio in Roosevelt Island,21383358,Zheliang,Manhattan,Roosevelt Island,40.76119,-73.94914,Entire home/apt,70,5,3,2018-07-01,0.12,1,0 +19317196,Luxury 1 Bed Apartment with GYM,12624062,Fabiana,Manhattan,Financial District,40.70716,-74.01036,Entire home/apt,210,1,8,2018-08-31,0.34,1,54 +19317831,Room for the mighties !! Air conditioner /CPark,100835599,Dalina,Manhattan,East Harlem,40.79031,-73.94688,Private room,113,1,12,2017-09-13,0.48,2,90 +19317834,"Artsy, Cozy 1 bedroom in Flatbush",5416971,Nia,Brooklyn,East Flatbush,40.64041,-73.95133,Entire home/apt,97,2,21,2019-05-13,0.85,1,0 +19319184,"Cozy Room, on a Park-themed-Iike Island",135320687,Ladi,Manhattan,Roosevelt Island,40.76178,-73.94889,Private room,85,3,24,2019-05-26,1.13,2,190 +19322515,20m to Manhattan - 2 Floors + Express Subway,98705818,Mari,Brooklyn,Crown Heights,40.67476,-73.93016,Entire home/apt,550,1,6,2019-05-22,0.25,1,249 +19322801,Romantic art-filled apartment with private yard,21493738,Natalie,Brooklyn,Crown Heights,40.67139,-73.94842,Private room,85,3,0,,,2,0 +19323563,"Luxurious, delightful 2-bedroom in Prime LES!",36851145,Isak,Manhattan,Lower East Side,40.72141,-73.98855,Entire home/apt,260,2,5,2018-01-01,0.20,1,0 +19325562,Private Room in East Village Apartment,119968055,Michelle,Manhattan,East Village,40.72706,-73.98583,Private room,100,1,0,,,1,0 +19326306,Prolonged Traveler's Dream(a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81227,-73.88871,Private room,37,30,5,2018-09-30,0.37,6,329 +19326520,Awesome Williamsburg Apartment,16342788,Carlos,Brooklyn,Williamsburg,40.70857,-73.94501,Private room,85,1,2,2017-09-18,0.09,2,64 +19326745,Home Sweet Home,131354448,Tammie,Queens,Flushing,40.75532,-73.81074,Entire home/apt,85,3,37,2018-08-28,1.51,4,0 +19327636,Cozy studio apartment close to trains 111 st/2 av,67280917,Adam,Manhattan,East Harlem,40.79313,-73.94154,Entire home/apt,100,2,14,2019-06-30,1.22,1,36 +19327822,"Bedroom, Queen bed, 4 train stops to Manhattan",78183456,Ralph,Brooklyn,Bushwick,40.69905,-73.93831,Private room,65,2,39,2019-06-23,1.66,1,76 +19328148,Peaceful room:an AlmostEmpty Apartment of your own,7014073,Alex,Brooklyn,Williamsburg,40.71142,-73.96567,Private room,90,1,7,2018-10-13,0.71,1,0 +19328935,Lovely 2 Bedroom in Flushing Chinatown,5962328,Alan,Queens,Flushing,40.7593,-73.82329,Entire home/apt,115,30,4,2018-11-12,0.22,15,319 +19329404,Immaculate and Sweet Carroll Gardens 1 Bedroom,1580521,Sylvia,Brooklyn,Carroll Gardens,40.67777,-73.99893,Entire home/apt,160,2,72,2019-06-23,3.20,1,236 +19329734,Large Top Floor Apartment,135401519,Luka,Manhattan,Kips Bay,40.74063,-73.98205,Entire home/apt,325,30,155,2019-06-19,6.22,1,240 +19329911,Private room on quiet street in Fort Greene,45602137,Brette,Brooklyn,Fort Greene,40.69546,-73.97303,Private room,65,4,0,,,1,0 +19330704,Private room near Columbia University,134370506,Joseph,Manhattan,Morningside Heights,40.81237,-73.95985,Private room,80,1,39,2019-07-06,1.56,1,13 +19330742,Sunlit Private Room & Balcony in Trendy Bushwick,4922765,Le Roux,Brooklyn,Bushwick,40.70541,-73.91878,Private room,80,299,0,,,1,0 +19330743,Jazz guesthouse,125231390,Keith,Brooklyn,Canarsie,40.64076,-73.88298,Entire home/apt,90,3,44,2019-06-26,1.82,1,126 +19331686,Sunny + Magic Full Apartment in Bushwick,1965001,Bibi,Brooklyn,Bushwick,40.70111,-73.92677,Entire home/apt,150,2,0,,,1,66 +19332077,The hipster apartment in the hipster borough,4298040,Jon,Brooklyn,Fort Greene,40.69211,-73.97224,Private room,125,4,0,,,1,0 +19332658,Big & Sunny Brooklyn Room | TV/AC/Private Bath,3734323,Colin,Brooklyn,Bushwick,40.6883,-73.91383,Private room,65,5,5,2017-09-25,0.20,3,0 +19333921,"Exposed Brick, Cozy West Village Apartment",796111,Jason,Manhattan,West Village,40.73808,-74.00254,Entire home/apt,150,30,3,2018-05-29,0.16,1,83 +19334916,Harlem's House of the Rising Sun,7727013,Toby Steven,Manhattan,Harlem,40.80979,-73.94289,Private room,200,3,2,2018-09-17,0.16,2,24 +19339594,Charming Newly Renovated Brownstone,134808051,Jaime And Stephen,Brooklyn,Crown Heights,40.6746,-73.94652,Private room,80,1,5,2018-09-19,0.22,1,365 +19341760,Lovely Williamsburg Refuge ~ fresh & refined,135508099,Courtney,Brooklyn,Williamsburg,40.71835,-73.94498,Entire home/apt,125,2,16,2019-06-23,0.65,1,0 +19342192,Spacious Garden Apartment with Patio,28283044,Michele,Brooklyn,Bedford-Stuyvesant,40.68523,-73.92738,Entire home/apt,139,4,61,2019-07-01,2.53,1,82 +19342315,"Sunny, Spacious Apartment in Manhattan",135511518,Chloe,Manhattan,Washington Heights,40.85678,-73.92696,Private room,43,7,0,,,1,0 +19342731,Private Room Avail. Now- Aug 20 Clinton/BedStuy,132958806,Shannon,Brooklyn,Bedford-Stuyvesant,40.6914,-73.95993,Private room,45,10,0,,,1,0 +19343700,Modern Upper East Side Apartment near Central Park,135522817,Shaun,Manhattan,Upper East Side,40.77412,-73.95695,Entire home/apt,198,1,143,2019-06-15,5.91,1,300 +19343737,Spacious private BR-PRIME BUSHWICK. Roof access!,80603182,Daria,Brooklyn,Bushwick,40.7016,-73.91974,Private room,40,2,2,2018-05-17,0.09,1,0 +19344708,"City Retrieve3. Twin bed, lovely, simple",3542562,Jana,Manhattan,Harlem,40.82419,-73.94639,Private room,50,31,0,,,4,78 +19344750,Brooklyn Brownstone (gray bedroom - single bed),80292073,Julie,Brooklyn,South Slope,40.66242,-73.98103,Private room,60,5,10,2019-06-30,0.43,2,23 +19345240,Private bed/bath / great views / Upper East Side,35786659,Hao,Manhattan,Upper East Side,40.76801,-73.96085,Private room,75,1,15,2017-12-17,0.61,1,0 +19345676,"Room in spacious, light-filled Brownstone",637733,William,Brooklyn,Bedford-Stuyvesant,40.69092,-73.93094,Private room,35,3,5,2018-04-20,0.32,1,0 +19345943,Stylish Large Bright Brooklyn Loft!!,3919533,Piya,Brooklyn,Bushwick,40.69971,-73.93729,Entire home/apt,162,2,46,2019-06-25,1.92,1,19 +19346150,Gorgeous room on the Upper West Side,18225837,Erika,Manhattan,Morningside Heights,40.80723,-73.96222,Private room,50,5,18,2019-06-16,0.72,1,157 +19346710,"1 bedroom w/ Queen bed, in Manhattan",135559842,Mauricio,Manhattan,Harlem,40.81375,-73.95268,Private room,49,2,0,,,1,0 +19346860,"Comfortable, private room in heart of Brooklyn!",21187349,Janet,Brooklyn,East Flatbush,40.6493,-73.94547,Private room,75,2,30,2019-07-07,1.21,1,104 +19347079,Sunny private apt 25 min from NYC,1334621,Shauna And Sarah,Queens,Woodside,40.7432,-73.91238,Entire home/apt,50,1,28,2019-06-28,1.14,1,13 +19348139,"Cozy, private room in the heart of Fort Greene",24806534,Lisa,Brooklyn,Fort Greene,40.68287,-73.97117,Private room,130,3,1,2017-07-24,0.04,1,0 +19348168,Cyn,74033595,Cyn,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91478,Private room,75,2,1,2018-09-10,0.10,1,0 +19348588,Bright Renewed Apartment 1 minute from 1 train,135582685,Baden,Manhattan,Washington Heights,40.83366,-73.94302,Private room,60,2,97,2019-06-30,4.14,1,35 +19348689,"1 bedroom, East Village Apt.",7969715,Bojana,Manhattan,East Village,40.72884,-73.98517,Entire home/apt,125,25,19,2019-06-24,0.88,1,92 +19349497,Designer Exposed Brick East Village Walk Up,2601002,Daniel,Manhattan,East Village,40.72746,-73.98781,Entire home/apt,80,4,11,2018-07-06,0.44,1,0 +19351427,Sunny modern apt w great view- 1 stop to Manhattan,9155010,Tia,Queens,Long Island City,40.74509,-73.94904,Entire home/apt,120,5,4,2019-01-02,0.32,1,7 +19354239,Crown Heights Brooklyn residential rental!,135630698,Esty,Brooklyn,Crown Heights,40.66891,-73.94605,Entire home/apt,150,3,23,2019-06-08,0.93,1,120 +19355497,"Spacious room, great college area, 1 blck to train",1221228,Yimka,Brooklyn,Clinton Hill,40.69112,-73.96059,Private room,37,7,3,2017-07-30,0.12,1,0 +19356281,Brooklyn Hot Spot with Best Manhattan Views,11495231,Kelly,Brooklyn,Greenpoint,40.72627,-73.95943,Entire home/apt,250,3,0,,,1,0 +19356518,Cosy quiet nest on a Mulberry tree,77125873,Liliya,Brooklyn,Bedford-Stuyvesant,40.68627,-73.94106,Entire home/apt,130,2,24,2019-06-19,1.14,1,10 +19357186,Bright & Airy Private Room in the Heart of Harlem,12518898,Moraa,Manhattan,Harlem,40.80112,-73.95232,Private room,69,14,3,2017-12-27,0.12,1,0 +19359218,Sunny Bedroom with Roof access in The East Village,66215286,Sydnei,Manhattan,East Village,40.72686,-73.97864,Private room,75,20,0,,,1,0 +19359301,Hideaway Relaxed spot,80672906,Courtney,Brooklyn,Kensington,40.63142,-73.97154,Private room,100,1,0,,,1,0 +19359445,Honeycomb hideout,135680128,Shoshannah,Bronx,Wakefield,40.90391,-73.85312,Entire home/apt,120,2,34,2019-06-22,1.42,1,77 +19360560,One bedroom; private house; great location,43604044,Judy,Queens,Whitestone,40.78081,-73.82005,Private room,40,2,0,,,1,0 +19360685,NEWLY RENOVATED flat in doorman building,6670822,Yana,Manhattan,Lower East Side,40.71992,-73.99251,Entire home/apt,300,5,6,2019-07-01,0.24,1,45 +19361884,"JFK 10mins, LGA 15mins drive, Two Beds in a Room",101657794,Dr. Shirin,Queens,Briarwood,40.70962,-73.80616,Private room,70,1,32,2019-07-01,1.29,6,364 +19361969,new apt for sublet a year,135703190,Sophie,Brooklyn,Vinegar Hill,40.69891,-73.98473,Entire home/apt,300,360,0,,,1,365 +19362079,Garden Apartment in Carroll Gardens Townhouse,76854135,Sarah,Brooklyn,Carroll Gardens,40.67811,-74.00102,Entire home/apt,160,2,52,2019-06-20,2.16,1,9 +19362485,"2 beds in nice rooms, JFK&LGA 15 minutes",101657794,Dr. Shirin,Queens,Briarwood,40.70988,-73.80691,Private room,60,2,38,2019-06-16,1.53,6,365 +19362649,upstairs single with queens bed and all decorative,101657794,Dr. Shirin,Queens,Briarwood,40.70848,-73.80607,Private room,70,1,22,2017-09-30,0.89,6,0 +19363356,Cute Harlem Bedroom,125684191,Jules,Manhattan,Harlem,40.81783,-73.95346,Private room,55,1,2,2017-06-28,0.08,1,0 +19363396,Soho Downtown - Large Sunny Private Room!,27721159,Louise,Manhattan,SoHo,40.72635,-74.00298,Private room,94,1,1,2017-07-05,0.04,1,0 +19363671,The Sterling Flat,46454894,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.9543,Entire home/apt,105,1,2,2017-07-03,0.08,1,0 +19363728,Private Room in Great East Village Apartment!,27443386,Lauren,Manhattan,East Village,40.72036,-73.97889,Private room,50,1,2,2017-07-17,0.08,1,0 +19363931,Crown Heights Guest House 3R,74541079,Abraham,Brooklyn,Crown Heights,40.6692,-73.9359,Entire home/apt,87,3,32,2019-07-01,1.36,9,72 +19363944,"Bright, Spacious West Village Getaway!",21450607,Ana,Manhattan,West Village,40.7328,-74.00845,Entire home/apt,299,2,1,2017-07-21,0.04,1,0 +19364229,Heart of Chelsea Private room in a serviced 2BD,4048704,Tala,Manhattan,Chelsea,40.7417,-74.00229,Private room,100,3,1,2017-07-15,0.04,1,0 +19364266,"Private room in charming, eclectic Flushing home",135732224,Laura,Queens,Flushing,40.75474,-73.82166,Private room,44,1,0,,,1,0 +19364351,"Private, Cozy Bedroom in the Upper East",39561430,Tim,Manhattan,Upper East Side,40.78119,-73.9462,Private room,52,22,1,2018-12-12,0.14,1,0 +19364590,"Spacious, sunny and private BR in Woodside, Queens",51537620,Victoria,Queens,Woodside,40.74509,-73.89649,Private room,80,2,2,2017-07-23,0.08,1,0 +19365218,Peaceful Private Bedroom in Brownstone with Garden,9530419,Mathilde,Brooklyn,Bedford-Stuyvesant,40.69201,-73.95795,Private room,55,2,3,2017-08-24,0.12,1,0 +19367928,"Getaway to the city, 2 blocks from train (C)",74179880,Silvia,Brooklyn,East New York,40.67392,-73.88892,Entire home/apt,81,3,45,2019-06-15,1.82,8,356 +19368455,Chelsea Gem,70154608,Donna,Manhattan,Chelsea,40.74625,-73.99911,Entire home/apt,185,5,17,2019-07-01,0.88,1,15 +19375739,PRIVATE BACK PATIO - light-filled luxury apartment,119108169,Molly,Brooklyn,Bedford-Stuyvesant,40.69224,-73.95819,Private room,60,4,1,2017-07-01,0.04,1,0 +19376114,"Contemporary, Comfy & Affordable Brooklyn (Rm#2)",127345864,Charlene,Brooklyn,East Flatbush,40.64156,-73.93177,Private room,37,7,62,2018-11-08,2.53,4,30 +19376182,Peaceful Room in the heart of Clinton Hill,29243209,Sarah,Brooklyn,Clinton Hill,40.68618,-73.96179,Private room,70,1,6,2017-08-13,0.24,2,0 +19376753,"Lovely Room for A Real, Cozy Brooklyn Experience",7756888,Joe,Brooklyn,Flatbush,40.63609,-73.96687,Private room,69,2,1,2017-08-13,0.04,1,0 +19376872,Sun Filled 18ft Ceiling Duplex Noho/East Village,7107479,Genevieve,Manhattan,NoHo,40.7291,-73.99246,Entire home/apt,191,2,37,2019-05-19,1.50,1,5 +19378517,"Bright, Spacious Room in Historical Neighborhood",34160620,Charlotte And Mary,Manhattan,Harlem,40.82186,-73.94624,Private room,80,2,2,2017-07-19,0.08,2,0 +19380186,Beautiful BRIGHT and SUNNY - BEST location in NYC!,13669059,Nancy,Manhattan,East Village,40.72489,-73.98956,Entire home/apt,250,4,14,2019-05-24,0.58,1,16 +19380620,Washington Heights room,132826462,Erin,Manhattan,Washington Heights,40.84118,-73.93697,Private room,70,2,1,2018-01-04,0.05,1,0 +19381437,Big furnitured room in UWS for August!,22655081,Alan,Manhattan,Upper West Side,40.79205,-73.97262,Private room,45,5,0,,,1,0 +19382104,Stylish Share With Exposed Brick In Brooklyn,25064774,Eden,Brooklyn,Bedford-Stuyvesant,40.68936,-73.94189,Private room,33,14,1,2017-07-16,0.04,1,0 +19382201,Your Quiet Refuge in the Heart of Manhattan,9405109,Carolina,Manhattan,Civic Center,40.71195,-74.00757,Entire home/apt,200,3,3,2019-04-15,0.13,1,19 +19382819,LUXURY STUDIO ON UPPER EAST SIDE BY CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.76833,-73.95581,Entire home/apt,135,30,9,2019-07-01,0.38,16,340 +19383510,Prime Williamsburg Location- Few Steps to Subway,14398102,Elisa-Beth,Brooklyn,Williamsburg,40.71487,-73.94524,Private room,49,5,1,2019-02-26,0.23,1,33 +19383561,Sunny & Quaint NYC Loft in Chelsea/Meatpacking,9597266,Audrey,Manhattan,West Village,40.74012,-74.00364,Entire home/apt,190,2,1,2017-07-31,0.04,1,0 +19384034,Great space for 1 or 2 guests!,135877454,Zoilo,Queens,Astoria,40.76065,-73.90905,Entire home/apt,80,4,6,2018-09-01,0.48,1,0 +19384126,Two Private Floors in brownstone by Prospect Park,11370189,Brandon,Brooklyn,Prospect Heights,40.67602,-73.96593,Private room,225,5,0,,,2,1 +19385072,Full floor in Artists Triplex Brownstone,22193918,Kateryna & Michael,Brooklyn,Bedford-Stuyvesant,40.68767,-73.95495,Private room,120,2,6,2019-06-05,0.91,1,52 +19385683,"Private, Cozy, & Conveniently located Chelsea Room",4581860,Serena,Manhattan,Chelsea,40.7476,-73.99348,Private room,130,2,21,2018-04-05,0.96,1,0 +19385783,"Bright, clean room in great location",5399668,Annesofie,Queens,Long Island City,40.74538,-73.94747,Private room,75,2,17,2018-06-03,0.68,1,0 +19385872,Sun-filled Oasis in Crown Heights,13283016,Sarah,Brooklyn,Crown Heights,40.66658,-73.95167,Entire home/apt,157,1,0,,,1,0 +19385941,Spotless Clean room private entrance paid parking,124860677,Jim&Lisa,Queens,Flushing,40.75712,-73.8122,Private room,120,2,45,2019-07-01,1.87,6,365 +19386162,Big Private Bedroom on Roosevelt Island,106948134,Erik,Manhattan,Roosevelt Island,40.76074,-73.94943,Private room,72,1,12,2019-05-22,0.48,2,0 +19386444,"Joy's Place! Cozy, Comfortable and Quaint home",22462,Joy,Brooklyn,Bedford-Stuyvesant,40.68326,-73.92448,Entire home/apt,150,3,80,2019-06-22,3.38,1,42 +19386545,Private Room in Modern Loft in Williamsburg,31920354,Liz,Brooklyn,Williamsburg,40.71152,-73.93902,Private room,110,3,3,2018-01-03,0.14,2,269 +19386564,Quiet and Sunny Astoria NYC apt,5749658,Jason,Queens,Astoria,40.75636,-73.927,Entire home/apt,70,30,10,2018-08-21,0.41,1,3 +19387402,Luxury Central Park Apartment close to everything,78325795,Bozhena,Manhattan,Harlem,40.80369,-73.94857,Entire home/apt,179,2,143,2019-07-05,5.77,3,197 +19387438,"Lovely room, close to all!",135910220,Maria,Queens,Maspeth,40.73832,-73.90669,Private room,45,2,41,2019-07-01,1.68,1,154 +19387536,Loft in The Heart of Bushwick,17026738,Camila,Brooklyn,Williamsburg,40.70642,-73.92739,Entire home/apt,95,8,6,2018-07-23,0.25,1,0 +19387555,Ballet Suite,32691167,Misha,Manhattan,Washington Heights,40.83803,-73.94421,Private room,120,30,0,,,1,0 +19387694,Cool town house,14140453,Mark,Brooklyn,Carroll Gardens,40.68254,-73.99207,Entire home/apt,450,4,11,2018-12-29,0.44,1,2 +19387782,Bright and Sunny Lower East Side Studio!,5180117,Elise,Manhattan,Lower East Side,40.72034,-73.98617,Entire home/apt,140,2,20,2019-06-16,0.97,1,37 +19388198,"Charming Hotel Alternative 2 +Mount Sinai",661399,Vivianne,Manhattan,East Harlem,40.79179,-73.94506,Private room,89,3,21,2019-06-16,0.91,2,125 +19388293,Private studio at a housework with backyard,14805863,Sherry,Queens,Maspeth,40.73519,-73.90271,Entire home/apt,88,3,7,2018-04-13,0.28,1,0 +19388464,Private room with A/C & great bed by Prospect Park,50591874,John,Brooklyn,Prospect-Lefferts Gardens,40.65653,-73.95786,Private room,55,1,124,2019-06-24,5.02,1,24 +19389677,Sunny livingroom in 1 bedroom. Couch only though.,135932425,Samantha,Manhattan,Washington Heights,40.85471,-73.93016,Private room,50,1,1,2017-07-24,0.04,1,0 +19389911,Spacious and Clean Private Bedroom in NYC,5612625,Andy,Manhattan,Upper West Side,40.79503,-73.96715,Private room,95,1,55,2018-05-24,2.23,1,0 +19390119,Duplex Roof top in the heart of crown hight,135932422,Delton,Brooklyn,Crown Heights,40.67398,-73.92787,Entire home/apt,124,2,65,2019-07-07,2.67,1,308 +19390314,TRUE WEST VILLAGE GROUND FL. WITH GARDEN!!,79572183,Gillian,Manhattan,West Village,40.73852,-74.00269,Entire home/apt,180,30,0,,,1,264 +19401219,"Great Catch, Don't miss out!",134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.69257,-73.94657,Entire home/apt,165,3,82,2019-06-19,3.30,7,247 +19403353,"New studio in Gowanus, Brooklyn",14404488,Iván,Brooklyn,Gowanus,40.67835,-73.9908,Entire home/apt,102,10,0,,,1,0 +19403704,Private bathroom and bedroom for 1 -2 people,10262363,Hangi,Manhattan,Hell's Kitchen,40.75548,-73.9951,Private room,100,4,1,2017-07-03,0.04,1,0 +19404654,Harlem Get Away,88861099,Roger,Manhattan,Harlem,40.8101,-73.94021,Private room,88,2,55,2019-06-23,2.24,1,208 +19404818,Bright Quiet Airy Tribeca Loft,374115,Victoria,Manhattan,Tribeca,40.72403,-74.00858,Entire home/apt,200,2,7,2019-05-26,0.29,1,0 +19405371,Modern and Artful Home in Manhattan/NYC,35064923,Marlyn,Manhattan,East Harlem,40.80138,-73.94413,Entire home/apt,127,4,86,2019-06-29,3.68,1,1 +19407214,Brooklyn's 3 bdrm Honeycomb,35108251,Belinda,Brooklyn,East New York,40.66929,-73.89079,Entire home/apt,133,2,73,2019-06-23,2.98,2,171 +19407360,Greenpoint top floor w/ sun & views,1341922,Blake,Brooklyn,Greenpoint,40.72412,-73.95261,Private room,49,1,0,,,1,0 +19407599,Nice room near Columbia University,136058103,Jessie,Manhattan,Upper West Side,40.80221,-73.96514,Private room,35,1,4,2017-08-02,0.17,1,0 +19407781,Bed-Stuy Brownstone huge sunny room 25mins to LES,127357582,Shannon,Brooklyn,Bedford-Stuyvesant,40.6834,-73.92035,Private room,69,2,63,2019-06-29,2.53,2,102 +19407992,"BEAUTIFUL LOFTY APT in the HEART of WBURG, BK",8304751,Simon & Jessie,Brooklyn,Williamsburg,40.71527,-73.95946,Entire home/apt,250,7,10,2019-05-30,0.43,1,83 +19408027,Beautiful Room in Brooklyn with 2 Roommates,34585857,Saya,Brooklyn,Crown Heights,40.6719,-73.93475,Private room,35,7,5,2019-03-29,0.25,1,36 +19408620,Luxury Secured Building / Chic NYC Studio,16932515,Daniela,Manhattan,Midtown,40.76064,-73.97066,Entire home/apt,375,4,2,2017-09-23,0.08,1,178 +19408844,Cozy studio in the heart of Chelsea!,2102686,Eric,Manhattan,Chelsea,40.7483,-74.00031,Entire home/apt,135,2,10,2018-09-03,0.41,1,5 +19408914,Spacious one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74818,-73.97537,Entire home/apt,175,30,1,2018-01-17,0.06,50,342 +19409299,NIce one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74843,-73.97715,Entire home/apt,175,30,1,2018-01-31,0.06,50,365 +19409421,Nice room with terrific skyline view in cosy apt,4844197,Coline,Brooklyn,Williamsburg,40.7098,-73.94834,Private room,60,3,12,2018-09-01,0.51,1,0 +19409691,Adorable apartment for your stay,133573369,Cat,Manhattan,Upper East Side,40.77366,-73.95755,Entire home/apt,125,7,0,,,1,0 +19409883,Spacious 2BR APT in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79749,-73.93336,Private room,140,1,1,2017-12-10,0.05,2,177 +19410180,"Quiet, Comfy Room in Unbeatable Wburg Location!",7252535,Wes,Brooklyn,Williamsburg,40.71228,-73.9599,Private room,80,2,31,2019-06-15,1.26,2,5 +19410331,"Spacious, Prime Carroll Gardens, BK Apartment",23985682,Tim,Brooklyn,Carroll Gardens,40.67507,-73.99805,Entire home/apt,160,2,6,2017-08-15,0.24,1,0 +19412140,Sunny Bed-Stuy apartment with rooftop access,61483702,Sasha,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93446,Private room,70,2,3,2017-07-16,0.12,2,0 +19412207,Two bridges high end studio manhattan,49123284,Kyriaki,Manhattan,Two Bridges,40.71109,-73.99616,Entire home/apt,145,6,42,2019-06-15,2.13,2,221 +19413230,2 bedroom flat in Greenwich Village New York,136098610,Lydia,Manhattan,West Village,40.73247,-74.00335,Entire home/apt,225,2,54,2019-06-20,2.22,1,79 +19413670,Spacious and airy room in prime South Williamsburg,23048696,Andrea,Brooklyn,Williamsburg,40.70928,-73.9659,Private room,68,3,4,2017-08-01,0.16,1,0 +19413675,See for yourself :),28249503,Zachary,Brooklyn,Bushwick,40.68663,-73.90721,Private room,90,3,8,2017-09-29,0.32,1,0 +19413691,"Apartment in Manhattan, Near Express Trains & Park",4516201,Chloe,Manhattan,Harlem,40.80964,-73.94321,Entire home/apt,102,2,12,2019-04-07,0.50,1,0 +19414154,Cozy room in heart of Williamsburg,136106661,Sally,Brooklyn,Williamsburg,40.71078,-73.95071,Shared room,60,15,4,2018-04-30,0.18,1,83 +19414281,Charming Prewar Full Floor Apartment,4040993,Kelly,Manhattan,Chelsea,40.74371,-74.00244,Entire home/apt,400,3,0,,,1,0 +19414323,Gorgeous bedroom in the Heart of Bushwick!,10457196,Richard,Queens,Ridgewood,40.70234,-73.90815,Private room,49,6,12,2019-05-20,0.49,11,65 +19414732,Williamsburg Bedroom,134677764,Leo,Brooklyn,Williamsburg,40.71112,-73.95382,Private room,70,5,3,2017-07-14,0.12,1,0 +19414813,1BR - Heart of West Village - 30 Day Min - Unit 2,4422523,Marie,Manhattan,West Village,40.73392,-74.00354,Entire home/apt,150,30,3,2019-01-24,0.17,6,286 +19415114,Entire Apt (1 Bdr) in the Upper East Side 85 St,59906749,Heidi,Manhattan,Upper East Side,40.7794,-73.95427,Entire home/apt,119,3,6,2018-08-28,0.25,1,0 +19415314,"Girls only, cozy room one block from Times Square",47336995,Mario,Manhattan,Hell's Kitchen,40.75812,-73.98935,Shared room,10,1,2,2017-06-24,0.08,1,0 +19415887,Terrace Luxury Apartment,52295482,Nelle,Brooklyn,Fort Greene,40.69321,-73.98143,Entire home/apt,375,2,14,2019-01-05,0.60,1,75 +19415979,Newly renovated studio in Prime Manhattan location,35285033,Melissa,Manhattan,Chelsea,40.74444,-74.00068,Entire home/apt,175,3,2,2017-10-01,0.08,1,0 +19416433,Stylish Studio in the heart of NYC,136130770,Aristides,Manhattan,Theater District,40.76037,-73.98747,Entire home/apt,132,24,1,2018-05-29,0.07,1,198 +19416458,Furnished studio in Union Square,26920932,Benjamin,Manhattan,Gramercy,40.73557,-73.98589,Entire home/apt,200,14,1,2017-09-04,0.04,1,0 +19424191,Lovely studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74857,-73.97722,Entire home/apt,150,30,5,2019-02-23,0.26,50,344 +19424753,"Bright, spacious, private room",35380551,Denise,Brooklyn,Bushwick,40.70119,-73.91154,Private room,45,2,2,2017-07-22,0.08,1,0 +19425570,One Bedroom Apartment in NYC,84803093,Javier,Queens,Kew Gardens Hills,40.73307,-73.81868,Entire home/apt,150,1,16,2019-06-28,0.81,1,178 +19427899,"""The Park View"" in Sunset Park",13484820,Alejandra,Brooklyn,Sunset Park,40.64667,-74.00187,Private room,55,2,0,,,1,0 +19428065,"Master Bedroom in a Beautiful, Spacious Home",53480097,Jillian,Brooklyn,Bushwick,40.68683,-73.90733,Private room,60,3,3,2018-10-07,0.23,2,0 +19428575,Alcove studio - Resort style,134871099,Anthony,Manhattan,Roosevelt Island,40.77009,-73.9427,Entire home/apt,250,2,52,2019-06-23,2.10,1,0 +19429043,"Single bed room facing south w/A/C, washer/dryer",127357582,Shannon,Brooklyn,Bedford-Stuyvesant,40.68194,-73.91832,Private room,36,2,86,2019-07-06,3.48,2,81 +19429202,Clean Room,136211138,Meerim,Queens,Woodside,40.74374,-73.90387,Private room,59,1,0,,,1,0 +19429274,Huge room in Brooklyn,40086875,Amir,Brooklyn,Crown Heights,40.67484,-73.94084,Private room,39,1,0,,,1,0 +19430063,Amazing Studio at the Time Square/52C,48146336,Irina,Manhattan,Hell's Kitchen,40.76174,-73.99228,Entire home/apt,130,30,5,2019-02-05,0.22,20,333 +19430074,Quiet Manhattan: top floor 1 BR across from park,3600282,Joel,Manhattan,Inwood,40.8674,-73.92411,Entire home/apt,99,3,4,2018-04-22,0.18,1,0 +19430239,"luxury, neat, minute fom trains",118816229,Ali,Bronx,Williamsbridge,40.88249,-73.86274,Private room,50,1,85,2019-07-04,3.43,1,328 +19430305,"Beautiful, Stylish 1BR in Heart of Crown Heights",8575784,Lin,Brooklyn,Crown Heights,40.67316,-73.95812,Entire home/apt,155,2,4,2017-11-01,0.16,1,0 +19431326,Cozy Room in Astoria,136229596,James,Queens,Astoria,40.76488,-73.91813,Private room,166,1,8,2018-10-05,0.36,1,89 +19431893,Nice small room NYC (5 min from LaGuardia Airport),136230287,Jhon,Queens,East Elmhurst,40.76523,-73.86966,Private room,40,1,16,2017-11-20,0.65,1,0 +19433400,*DISCOUNTED RATES* PERFECT FOR THE WORLD TRAVELER,2129777,Aj,Queens,Long Island City,40.75132,-73.94236,Private room,135,3,17,2018-12-20,0.70,2,90 +19433585,Comfy and private garden bedroom,3130452,Jamba-Djang,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94409,Private room,40,3,0,,,1,0 +19433834,Charming one-bedroom with original tin ceilings,6094395,Alysse,Brooklyn,Gowanus,40.67002,-73.99158,Entire home/apt,140,4,14,2018-11-14,0.58,1,8 +19436446,Private sanctuary close to Central park,88972126,Deeksha,Manhattan,Harlem,40.80194,-73.95551,Entire home/apt,120,1,3,2017-07-31,0.12,1,0 +19436634,Artist Hostel III in Bedstuy Brooklyn,132104049,Brian,Brooklyn,Bedford-Stuyvesant,40.69625,-73.94857,Shared room,37,2,1,2017-08-19,0.04,3,138 +19438593,Winterbreak in Brooklyn!,136285608,Giada,Brooklyn,Bushwick,40.68919,-73.91719,Private room,50,10,1,2018-12-21,0.15,1,0 +19438695,Loft in big apartment,136285709,Jenna,Manhattan,SoHo,40.72439,-74.00481,Private room,103,1,1,2017-07-07,0.04,2,0 +19438978,Private bedroom and bathroom in spacious apartment,136285709,Jenna,Manhattan,SoHo,40.7238,-74.00665,Private room,125,1,1,2017-06-25,0.04,2,0 +19439068,Newly Renovated 2BR private basement unit.,69427329,Michelle & Eddie,Queens,Elmhurst,40.739,-73.87609,Entire home/apt,120,2,82,2019-07-05,3.31,6,230 +19439624,Light-filled guest room in heart of Crown Heights,107802009,Luis,Brooklyn,Crown Heights,40.67496,-73.95345,Private room,65,3,18,2017-12-11,0.75,2,0 +19439682,Entire Apartement in Queens!8min from Jfk,136288915,Balwinder,Queens,Richmond Hill,40.6839,-73.82444,Entire home/apt,79,1,272,2019-07-07,11.56,1,56 +19439790,Chelsea/Flatiron 1-Bedroom Apt in Luxury Building,24464178,Ted,Manhattan,Chelsea,40.74379,-73.99433,Entire home/apt,189,2,7,2019-04-30,0.30,1,0 +19439956,LUXURY APARTMENT 5 MIN TO LGA 20 TO JFK,136300414,Gonzalo,Queens,East Elmhurst,40.75765,-73.89725,Entire home/apt,250,1,62,2019-07-01,3.01,1,336 +19440004,Private Bedroom on Upper East Side,4830234,Chef Menezes,Manhattan,Upper East Side,40.77594,-73.94461,Private room,100,1,51,2019-06-02,2.11,1,172 +19440924,1 Bedroom Apartment on the Upper West Side,50386076,Charlie,Manhattan,Upper West Side,40.80006,-73.9648,Entire home/apt,105,1,24,2018-01-07,0.97,1,0 +19441240,Clean Cozy Close Comfortable,16566001,Ebin,Manhattan,Harlem,40.81611,-73.94419,Private room,36,2,11,2017-10-22,0.45,1,0 +19446302,2-Bedroom Furnished Apartment In Brooklyn,136352388,Franco,Brooklyn,Flatbush,40.63691,-73.95327,Private room,45,3,0,,,1,0 +19448302,Large Artsy Brooklyn Basement with windows,10980633,Javier,Brooklyn,Bedford-Stuyvesant,40.69294,-73.94275,Private room,70,4,0,,,1,0 +19448363,Cozy walk up 3 blocks from Times Square,40823628,Romé,Manhattan,Hell's Kitchen,40.76298,-73.99438,Private room,99,3,49,2019-06-25,1.98,1,216 +19449463,Beautiful Williamsburg 1.5 BR-9 min to NYC!,8292927,Christian,Brooklyn,Williamsburg,40.7135,-73.94147,Entire home/apt,95,2,70,2019-06-21,2.90,2,22 +19450121,**Vacation in Comfort as you Visit the Big Apple**,73186534,Nelson,Manhattan,Washington Heights,40.85063,-73.94315,Private room,48,2,53,2019-07-06,2.48,1,242 +19450906,Comfortable and cozy sunlit home,19705005,Sarah,Brooklyn,Clinton Hill,40.69215,-73.96692,Entire home/apt,126,10,6,2017-09-05,0.25,1,11 +19451978,A PIECE OF GREENWICH VILLAGE HISTORY!,42592487,Mariel,Manhattan,Greenwich Village,40.73299,-73.99812,Private room,135,2,79,2019-06-16,3.32,1,43 +19452119,Huge Modern Room in a Large Apartment - Manhattan,90531014,Nabeela,Manhattan,East Harlem,40.78565,-73.9436,Private room,100,2,10,2019-01-01,0.42,1,66 +19452755,Comfortable Entire 2 Bedroom Apt in Williamsburg,733034,Jack,Brooklyn,Williamsburg,40.70753,-73.9534,Entire home/apt,126,2,4,2018-07-29,0.16,1,0 +19454344,Perfect ap in Manhattan! Walking to Central Park!,11670284,Val,Manhattan,Upper East Side,40.76811,-73.95194,Entire home/apt,150,3,10,2019-05-02,0.54,2,89 +19455149,Manhattan Phenomenal Deal! BEST Chelsea Room,136431007,Louie,Manhattan,Chelsea,40.74944,-73.99774,Private room,49,1,40,2019-06-09,1.63,1,43 +19455284,Crown Heights Guest House 2R,74541079,Abraham,Brooklyn,Crown Heights,40.6696,-73.93655,Entire home/apt,88,3,29,2019-07-01,1.26,9,46 +19455395,Families & Couples-2 BR+playroom (4beds),954113,Andrew,Brooklyn,South Slope,40.66043,-73.98609,Entire home/apt,139,2,19,2019-05-05,0.78,1,93 +19455656,NYC adventurous getaway!,28626337,Jess,Manhattan,Chelsea,40.73958,-74.00171,Private room,65,3,2,2018-01-01,0.08,1,0 +19455757,Private Room in the center of Park Slope,83171661,Yuichi,Brooklyn,Park Slope,40.66854,-73.98419,Private room,40,4,4,2017-08-12,0.17,3,0 +19456350,"Bright, Spacious Penthouse Near Park",126144914,Miles,Manhattan,Upper West Side,40.7789,-73.98527,Entire home/apt,250,10,5,2018-08-07,0.21,1,0 +19456810,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70454,-73.81549,Private room,93,1,2,2017-07-23,0.08,18,90 +19457062,"Cobble Hill apartment, +spacious, cozy and charming",76215404,Jenny,Brooklyn,Cobble Hill,40.68849,-73.9956,Entire home/apt,125,2,137,2019-07-04,5.78,1,2 +19458290,Private & Cozy Apartment - 5 Minutes from JFK !!,121978270,Victoria & Lovely,Queens,South Ozone Park,40.67,-73.79232,Entire home/apt,85,4,55,2019-06-09,2.48,1,69 +19458462,Roof Deck Apartment in Trendy Part of Brooklyn,10440010,Louisa,Brooklyn,Clinton Hill,40.68689,-73.95982,Entire home/apt,210,7,7,2019-05-25,0.30,1,50 +19459082,Room on 5th St & 2nd Ave! Prime Location!,90429772,Hanna,Manhattan,East Village,40.72728,-73.98954,Private room,60,7,25,2019-05-26,1.10,2,42 +19459142,Comfy stay!,135696084,Dustin,Manhattan,Kips Bay,40.74072,-73.98133,Private room,100,1,0,,,1,0 +19459965,HOUSE 2 ENTRANCES 2 KITCHEN 2 BATH 15min TO MANHTN,30237517,David,Queens,Forest Hills,40.73437,-73.8502,Entire home/apt,278,3,9,2018-11-18,0.39,6,0 +19460197,HUGE ROOM SEPARATE ENTRANCE 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73321,-73.85058,Private room,75,2,1,2017-09-04,0.04,6,0 +19460218,NYC Bronx cozy studio for relaxation and quiet,132010409,Daisy,Bronx,Schuylerville,40.83855,-73.83167,Entire home/apt,85,3,1,2018-07-08,0.08,1,0 +19460590,Wonderful apartment in the center of Astoria!,22218540,Demetrios John,Queens,Astoria,40.76564,-73.9173,Private room,99,5,0,,,1,0 +19466060,your space around Myrtle Ave,17274880,Jangho,Brooklyn,Bedford-Stuyvesant,40.69343,-73.9371,Private room,35,5,5,2017-12-27,0.22,1,0 +19466277,Cozy Bed - Stuy hideaway (The Fulton Room),8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9436,Private room,60,5,11,2019-06-19,0.47,3,56 +19466900,3 Bed/2 Bath Williamsburg Apt. with HUGE Terrace,8451716,John,Brooklyn,Williamsburg,40.70853,-73.95249,Entire home/apt,225,3,9,2019-06-30,0.37,1,2 +19468444,Bright and Airy - Entire 2 Bedroom in Williamsburg,9831730,Maggie,Brooklyn,Williamsburg,40.71863,-73.94405,Entire home/apt,112,14,0,,,1,0 +19470210,Upper Westside Charmer,10856865,Annie,Manhattan,Upper West Side,40.77727,-73.98127,Entire home/apt,250,3,23,2019-05-25,1.10,1,237 +19470886,Lovely 2BR in Clinton Hill/Bed-Stuy,8232441,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68776,-73.95379,Entire home/apt,60,3,16,2019-06-24,0.65,2,5 +19471352,"Dreamy Bushwick Art Apt, 15min from City, Roof &TV",136607675,Samantha,Brooklyn,Bedford-Stuyvesant,40.69844,-73.93921,Private room,62,1,47,2019-06-29,1.92,1,21 +19471948,2 ROOMS SEPARATE ENTRANCE 15 MIN TO MANHATTAN,30237517,David,Queens,Forest Hills,40.73376,-73.85155,Private room,99,2,0,,,6,187 +19472085,HUGE Apt w/ EPIC Rooftop in heart of East Village,59282130,Andrew,Manhattan,East Village,40.72901,-73.98621,Entire home/apt,250,2,22,2019-06-23,0.91,1,165 +19472799,Beautiful Clinton Hill with huge private backyard,5992129,Landon,Brooklyn,Clinton Hill,40.68746,-73.96115,Entire home/apt,150,5,7,2019-01-02,0.38,1,14 +19472906,Modern one bedroom condo in Central Fort Greene BK,135831798,Keisha,Brooklyn,Fort Greene,40.69269,-73.97093,Entire home/apt,180,3,42,2019-07-01,1.91,1,73 +19472944,Charming 2 bed 2 bath with washing dryer,113805886,Yaacov,Manhattan,Upper East Side,40.77854,-73.94984,Entire home/apt,265,31,7,2019-06-19,0.30,33,345 +19473132,Cozy East Village Apartment,30016379,Jenny,Manhattan,East Village,40.72292,-73.98732,Entire home/apt,173,2,3,2017-08-30,0.13,1,0 +19474100,Comfy in Queens,66734502,Laura,Queens,Astoria,40.76248,-73.91686,Private room,60,2,1,2017-07-05,0.04,2,0 +19474652,Views on the hudson,136638556,Felicia,Manhattan,Harlem,40.82716,-73.93953,Private room,85,1,29,2018-12-31,1.22,1,359 +19475005,Fun Eclectic Home for Summer in the City,5180222,Maya,Manhattan,Inwood,40.8688,-73.92256,Entire home/apt,150,3,4,2017-08-21,0.16,1,0 +19475058,Spacious Chinatown Loft,12038925,Keir,Manhattan,Chinatown,40.71585,-73.99171,Entire home/apt,250,2,15,2018-08-26,0.63,1,0 +19475130,Private Bedroom in a Prewar Brownstone,136646834,Val,Manhattan,Washington Heights,40.83587,-73.93734,Private room,28,2,19,2018-01-17,0.78,1,0 +19475198,Private Bedroom in Beautiful Astoria Apt,3228795,Jonathan,Queens,Astoria,40.76386,-73.91475,Private room,60,2,3,2017-08-18,0.13,1,0 +19476630,Cozy self contained room with twin size bed,42561290,Carla,Brooklyn,East New York,40.66168,-73.86665,Private room,25,1,29,2019-06-11,1.17,4,319 +19476873,Luxurious Modern Apt In the Heart of Brooklyn,76785138,Ibrahim,Brooklyn,Bay Ridge,40.62298,-74.02601,Entire home/apt,256,2,61,2019-07-01,2.52,1,166 +19477677,Huge sunny room next to subway!,25038748,Justin,Manhattan,Harlem,40.82119,-73.95583,Private room,70,4,11,2019-05-11,0.45,1,0 +19478537,Comfortable Studio in the heart of Brooklyn,1751498,Charly,Brooklyn,Crown Heights,40.67538,-73.96257,Entire home/apt,70,5,1,2017-07-06,0.04,1,0 +19482416,緑が多く安全なブルックリンパークスロープの庭付き貸切アパート,83171661,Yuichi,Brooklyn,Park Slope,40.6688,-73.98527,Entire home/apt,105,6,0,,,3,0 +19485371,Spacious Harlem Hideaway,74238783,Cardelle,Manhattan,Harlem,40.82582,-73.94876,Private room,65,1,6,2017-12-15,0.24,1,0 +19485634,Sublet room (Dec 24th-Dec 28th),136760080,Irem,Brooklyn,Bushwick,40.69181,-73.92462,Private room,40,90,0,,,1,341 +19486860,Quiet Sunnyside Gardens Studio,136774720,Maria,Queens,Sunnyside,40.7496,-73.91523,Entire home/apt,85,5,0,,,1,0 +19487781,A place to lay your weary head,486948,Milo,Manhattan,East Village,40.72216,-73.98043,Private room,72,10,6,2018-06-29,0.26,1,0 +19488137,Semi-Private Studio in Manhattan,63956486,Keianna,Manhattan,Inwood,40.86438,-73.92086,Shared room,40,2,2,2018-03-27,0.12,1,0 +19488192,Designer Light Filled Aptartment in Williamsburg,17048787,Juliana,Brooklyn,Williamsburg,40.71619,-73.96126,Private room,80,3,5,2019-01-06,0.36,1,13 +19489138,Spacious 1 bedroom Pre War on Central Park,3595138,Filip,Manhattan,Upper West Side,40.79884,-73.95962,Entire home/apt,230,2,7,2017-11-27,0.31,1,0 +19489293,Awesome Spacious apartment North of the Park,114574,Beau,Manhattan,Harlem,40.81703,-73.94512,Entire home/apt,119,1,4,2018-09-30,0.17,2,0 +19490059,"Newly Renovated; 2BR, 1BA, Kitchen + Living Rm",136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69487,-73.93665,Entire home/apt,389,1,107,2019-06-23,4.40,3,80 +19490255,"Beautiful One Bedroom, prime location",63954950,Sydney,Manhattan,Greenwich Village,40.7302,-74.0008,Entire home/apt,180,2,4,2017-09-13,0.16,1,0 +19490499,Small Artsy Room in HEART OF BROOKLYN,136818122,Leah,Brooklyn,Greenpoint,40.72351,-73.94241,Private room,40,3,3,2017-07-02,0.12,1,0 +19495120,UWS gorgeous one bedroom,8286555,Elyse,Manhattan,Upper West Side,40.78116,-73.98672,Entire home/apt,300,5,0,,,1,83 +19495570,Special Room or Apt in Manhattan Upper West Side!,56920,Linda,Manhattan,Upper West Side,40.80232,-73.96977,Private room,135,3,23,2019-06-19,1.02,2,4 +19495598,Tasteful NOHO 1 bedroom,49924298,Krystin,Manhattan,NoHo,40.72805,-73.99146,Entire home/apt,139,3,1,2017-08-01,0.04,1,0 +19499668,Cozy Sofa Bed in Upper Manhattan,3372118,Natasha,Manhattan,Washington Heights,40.84133,-73.93739,Shared room,50,1,21,2019-06-15,0.86,1,188 +19501242,Private room/bathroom on the Upper West Side,36572516,David,Manhattan,Upper West Side,40.78196,-73.97764,Private room,54,1,17,2017-08-12,0.69,1,0 +19501640,Sunny shared apartment in Harlem,45103075,Ian,Manhattan,Harlem,40.8188,-73.94505,Private room,38,3,0,,,1,0 +19502013,ღღღUltimate Broadway Experienceღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76708,-73.98912,Private room,99,1,83,2019-06-25,3.36,3,157 +19502079,ღღღSteps to Major Tourist Attractionsღღღ,112799848,Arthur,Manhattan,Hell's Kitchen,40.76615,-73.98829,Private room,99,1,73,2019-06-30,2.96,3,342 +19503971,"Breakfast and a Cozy Room, 30 Seconds From Train",5751765,CK & Tia,Manhattan,East Harlem,40.79956,-73.94113,Private room,82,2,93,2019-06-21,3.90,2,323 +19504042,My Sweet Room,42283996,Vicky,Queens,Rego Park,40.73031,-73.86896,Entire home/apt,65,10,0,,,1,0 +19504570,Cozy room close to Manhattan,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69389,-73.9354,Private room,65,1,130,2019-07-01,5.25,4,69 +19504985,"Dreamy, Boho 2 bedroom apt in the heart of Soho",125514343,Marie,Manhattan,SoHo,40.72588,-74.00286,Entire home/apt,225,2,5,2019-06-30,0.55,1,30 +19505573,Charming Room Gowanus,23755490,Ronnie,Brooklyn,Gowanus,40.68115,-73.98876,Private room,75,30,0,,,1,0 +19505620,Brooklyn townhouse living,3538684,Laura,Brooklyn,Bedford-Stuyvesant,40.6881,-73.94682,Entire home/apt,120,28,37,2019-06-21,1.56,1,70 +19505956,Classy Upper East Side Private Bedroom,136982841,Daniele,Manhattan,East Harlem,40.78603,-73.95015,Private room,165,1,4,2018-09-16,0.18,1,179 +19506194,East Village Penthouse - Master Bedroom (Loft),16866,Nicholas,Manhattan,East Village,40.72979,-73.983,Private room,149,2,9,2019-06-09,0.37,2,0 +19506829,Private Bedroom in Trendy Bushwick,61851470,Sherry,Brooklyn,Cypress Hills,40.6796,-73.90514,Private room,52,4,0,,,1,0 +19507013,"LARGE 3 BEDROOMS UP TO 11 PEOPLE, 20 min TO MANHAT",136995504,Lucky Day,Queens,Rego Park,40.7306,-73.85903,Entire home/apt,248,3,17,2019-06-04,0.73,1,262 +19508209,"Clean, Simple, Budget Bedroom in Bushwick!",127925141,Gabe,Brooklyn,Bushwick,40.6951,-73.93017,Private room,44,2,2,2019-03-20,0.08,1,0 +19509586,"Apartment in Bay Ridge, Brooklyn",804812,Adrienne Miriam,Brooklyn,Bay Ridge,40.62913,-74.01946,Entire home/apt,150,1,48,2019-06-23,1.96,1,330 +19517513,Cozy private room in sunny Brooklyn loft,14120985,Will,Brooklyn,Bedford-Stuyvesant,40.69129,-73.94659,Private room,89,2,27,2019-06-23,1.12,2,40 +19518453,Midtown South Lux Large Studio,79912031,Tedy,Manhattan,Murray Hill,40.74731,-73.98167,Entire home/apt,350,5,0,,,1,0 +19520573,"Luxury House in Safe Area, 30 Min to Time Square",117673528,Igor,Queens,Forest Hills,40.71249,-73.85021,Private room,900,1,127,2019-07-05,5.37,1,296 +19520991,Clean 1 bedroom in heart of NYC with Private deck,47988208,Colin,Manhattan,Murray Hill,40.74838,-73.98108,Entire home/apt,275,2,15,2019-03-17,0.65,1,5 +19521346,Chic apartment with large deck - best of Brooklyn,12647740,Shmuel,Brooklyn,Boerum Hill,40.68546,-73.97933,Entire home/apt,200,20,11,2019-05-20,0.46,1,32 +19521605,One bedroom APT in Prospect Park,18327839,Sylvia,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.96185,Entire home/apt,115,2,5,2017-09-24,0.22,1,0 +19523180,Beautiful private room in historic brownstone.,17285102,Amber+Shawn,Brooklyn,Bushwick,40.69063,-73.91784,Private room,100,3,2,2019-05-26,0.08,1,84 +19523894,1-Bdrm Newly Renovated Spacious Apartment,137114793,Nick,Staten Island,Great Kills,40.56251,-74.14781,Entire home/apt,91,30,61,2019-06-10,2.60,1,205 +19524083,The Riverside - One Bedroom Apartment,137068370,William,Manhattan,Upper West Side,40.77969,-73.98747,Entire home/apt,200,2,33,2019-06-09,1.36,1,250 +19525377,Queen size bed Private room in house on Vanderveer,4279384,Tanya,Brooklyn,Flatbush,40.64329,-73.9562,Private room,39,3,1,2017-06-27,0.04,2,0 +19525455,"LUXURIOUS, TOWNHOME WITH PRIVATE ROOF - 2500 SQ FT",7958923,Vikas,Brooklyn,Bedford-Stuyvesant,40.69158,-73.94329,Entire home/apt,275,1,6,2019-06-30,0.58,2,213 +19525675,Cozy private room in Victorian Brooklyn,11501945,Victoria,Brooklyn,Flatbush,40.63639,-73.95814,Private room,70,2,0,,,2,0 +19526601,A light spacious adorable room in Brooklyn,68432448,Nelli,Brooklyn,Sheepshead Bay,40.60614,-73.95374,Private room,50,1,24,2019-06-22,0.99,1,20 +19526750,Cozy Room in Brooklyn Loft Space,24263304,David,Brooklyn,Williamsburg,40.70533,-73.9295,Private room,79,3,4,2018-09-17,0.19,1,69 +19527028,Cozy duplex in trendy Brooklyn neighbourhood.,6835700,William,Brooklyn,Prospect Heights,40.67649,-73.96499,Private room,80,2,28,2019-06-25,4.35,1,82 +19527492,"Huge Apartment Near Subway, Quiet and Sunny!",2988712,Sasha,Bronx,Claremont Village,40.83625,-73.91079,Entire home/apt,127,90,4,2018-12-12,0.19,7,250 +19528326,Quiet Midtown Gem,89022528,Lou,Manhattan,Kips Bay,40.74008,-73.97936,Entire home/apt,110,3,58,2019-06-30,2.49,1,26 +19528396,Spacious and romantic apartment near Prospect Park,1762828,Adrian,Brooklyn,Prospect-Lefferts Gardens,40.65612,-73.9605,Entire home/apt,167,3,4,2019-01-02,0.19,1,326 +19529637,Great East Village 1BR In Prime Location,3412684,Andrew,Manhattan,East Village,40.72723,-73.98466,Entire home/apt,145,2,9,2019-06-08,0.37,1,0 +19530067,Modern Apartment in Historic Brownstone,18940748,Rebeccah & Daniel,Brooklyn,Bedford-Stuyvesant,40.68591,-73.93424,Entire home/apt,174,2,81,2019-06-23,3.39,1,123 +19530271,Appartement spacieux au cœur d'Astoria,37980834,Oceane,Queens,Ditmars Steinway,40.76944,-73.90751,Entire home/apt,119,1,1,2017-07-09,0.04,1,0 +19530518,YANKEE STADIUM DOWNTOWN BRONX,16884548,Taina,Bronx,Concourse Village,40.83083,-73.91928,Private room,62,1,8,2019-06-05,0.67,1,175 +19530652,Gorgeous cozy bdrm + private bath + backyard!,4351028,Jake,Brooklyn,Bushwick,40.70118,-73.91764,Private room,65,1,0,,,1,0 +19530778,Large window Private Room in Flushing Queens,137129564,Bing,Queens,Flushing,40.75221,-73.81533,Private room,60,1,32,2019-06-30,2.03,4,356 +19531174,Cozy Room With 15 Minute Subway Ride to Manhattan!,31553738,Ian,Brooklyn,Bedford-Stuyvesant,40.6995,-73.93987,Private room,50,21,1,2018-10-23,0.12,1,0 +19531390,Greenpoint/Williamsburg private studio room,2716583,Andrew,Brooklyn,Greenpoint,40.72458,-73.95191,Entire home/apt,139,3,70,2019-06-21,2.90,1,178 +19531541,Spacious and Modern is this 2 Bedroom Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.63801,-73.89845,Entire home/apt,200,3,7,2018-10-14,0.31,3,363 +19531580,SUNNY N.Y.C. APARTMENT,8816087,Danilo,Manhattan,East Harlem,40.80183,-73.94358,Entire home/apt,130,2,0,,,2,0 +19531601,Spacious bedroom in a good vibe apartment,3239771,Olivia,Brooklyn,Crown Heights,40.67324,-73.95028,Private room,43,6,5,2019-01-30,0.23,2,301 +19531805,Brand new One bedroom APT in brooklyn,57435629,Lin,Brooklyn,Kensington,40.63955,-73.9807,Entire home/apt,80,2,1,2017-07-03,0.04,1,0 +19531901,"2BR near Central Park, Lincoln Center",7936109,Ryan,Manhattan,Upper West Side,40.77468,-73.98184,Entire home/apt,180,2,5,2017-08-12,0.20,1,0 +19532027,Bright Clean Economy Room in Crown Heights 4SL,17555570,Yan,Brooklyn,Crown Heights,40.67108,-73.92308,Private room,54,1,90,2019-07-05,3.72,12,63 +19532157,Cozy and bright room in the center of Manhattan,124976906,Hichem,Manhattan,Upper East Side,40.76959,-73.95338,Private room,75,3,17,2018-09-02,0.74,1,0 +19532164,N.Y.C. APPARTAMENTO LUMINOSO,8816087,Danilo,Manhattan,East Harlem,40.80168,-73.94399,Entire home/apt,176,2,0,,,2,0 +19532225,"Affordable Bedtsuy July Rental, ideal for student!",137156356,Esteban,Brooklyn,Bedford-Stuyvesant,40.68428,-73.94916,Private room,49,7,0,,,1,0 +19532448,Ideal Manhattan Studio at the Upper East Side.,57501710,Francisco,Manhattan,Upper East Side,40.77059,-73.95522,Entire home/apt,200,4,7,2018-10-08,0.29,1,0 +19532789,NEWLY Renovated Private 2 Bed Apt on 1 st Floor..,15192,Oscar,Brooklyn,Bedford-Stuyvesant,40.68268,-73.94548,Entire home/apt,95,4,33,2019-06-22,1.40,1,199 +19532805,"Private Room, Bright, Waterfront! Fantastic view!!",123736951,Anne A,Manhattan,Roosevelt Island,40.75829,-73.95295,Private room,80,3,35,2019-03-17,1.44,1,0 +19532907,"Bright, Sunny, Clean Bedroom w/Private Bath 3MB",17555570,Yan,Brooklyn,Crown Heights,40.6695,-73.92226,Private room,63,1,66,2019-06-22,2.68,12,39 +19533025,Rainbow Guesthouse 1-3,124399442,Igor,Brooklyn,Midwood,40.61391,-73.95798,Shared room,32,7,2,2018-07-31,0.09,4,343 +19533701,Rainbow Guesthouse 1-6,124399442,Igor,Brooklyn,Midwood,40.61249,-73.96018,Shared room,32,7,1,2018-08-27,0.09,4,320 +19533966,Modern 3 Bedroom 2 BATH! 18 min to Times Sq+More!,137208202,Sean,Queens,Woodside,40.74695,-73.90177,Entire home/apt,275,3,104,2019-06-27,4.29,1,293 +19538717,East Williamsburg Studio,48542743,Yoon,Brooklyn,Williamsburg,40.71204,-73.93535,Entire home/apt,70,5,2,2018-09-05,0.19,1,0 +19542512,Bohemian Room in NYC at Great Location,137264725,Gulcin,Manhattan,Lower East Side,40.71206,-73.99055,Private room,70,1,117,2019-06-25,4.74,4,249 +19544104,Charming Luxury Apartment in Central Manhattan,34682494,Bilal,Manhattan,Midtown,40.74724,-73.98924,Entire home/apt,400,3,1,2019-05-18,0.58,1,180 +19544381,Comfortable studio in heart of LES/Chinatown,2642103,Yuriy,Manhattan,Chinatown,40.71633,-73.9897,Entire home/apt,100,2,2,2017-10-17,0.08,1,0 +19544404,Beautiful 2 Bedroom Lower East Side,72539408,Michelle,Manhattan,Lower East Side,40.72119,-73.98738,Entire home/apt,125,2,0,,,1,0 +19544478,Private Prospect Heights room,58052561,Alina,Brooklyn,Crown Heights,40.67313,-73.96254,Private room,100,1,8,2018-12-01,0.33,1,8 +19544766,Large+Amazing 2BR ( Flex)-Upper East Side-E89th,2856748,Ruchi,Manhattan,Upper East Side,40.77608,-73.94364,Entire home/apt,220,30,0,,,49,325 +19545851,Brooklyn Living,137293453,Remi,Brooklyn,Crown Heights,40.67308,-73.94114,Private room,36,7,1,2017-08-10,0.04,1,0 +19546150,Studio Apartment.,137270801,Jose,Queens,Ozone Park,40.67557,-73.85145,Private room,100,1,0,,,1,0 +19546202,Upper West Side One Bedroom Oasis,45488164,Logan,Manhattan,Upper West Side,40.80179,-73.96872,Entire home/apt,175,2,4,2019-07-01,0.16,1,142 +19547068,"SIMPLEHOME +Nothing fancy just quiet Place",137302318,Alona,Queens,Long Island City,40.75381,-73.92559,Entire home/apt,93,1,185,2019-06-23,7.64,2,73 +19547213,Waterfront Private Bedroom & Private Bathroom.,137305439,Harry,Queens,Rockaway Beach,40.59046,-73.81481,Private room,150,2,29,2019-07-07,1.19,2,178 +19547384,Sunny Prospect Park Apartment,4629066,Kathryn,Brooklyn,Flatbush,40.65264,-73.96202,Entire home/apt,85,1,0,,,1,0 +19548503,Chic & Modern Townhouse Apartment,5339759,Georgia,Manhattan,Greenwich Village,40.73384,-73.99616,Entire home/apt,499,30,10,2019-07-01,0.44,1,365 +19548992,Spare Room in newly finished apartment,136645733,Matt,Manhattan,East Harlem,40.81355,-73.93648,Private room,60,1,0,,,1,0 +19549547,Quintessential West Village Apt,102926533,Shaunda,Manhattan,West Village,40.73185,-74.00589,Entire home/apt,175,3,11,2019-06-14,0.45,1,0 +19550419,LARGE Luxury Private Room 5 mins from Times Sq,21496186,Richard,Manhattan,Midtown,40.75171,-73.98642,Private room,129,3,18,2019-04-07,0.73,2,0 +19550594,Williamsburg Oasis with Palm Tree Patio,19631496,The,Brooklyn,Williamsburg,40.70706,-73.94428,Entire home/apt,225,5,75,2019-06-17,3.49,2,278 +19550838,Quiet Spot in Vibrant NYC Neighborhood,308068,Yiska,Manhattan,Harlem,40.80291,-73.95832,Entire home/apt,68,3,2,2017-09-05,0.09,1,0 +19551198,Rustic & Wabi-sabi Minimal Apt. w/ Terrace,7348150,Stephanie,Manhattan,Nolita,40.72294,-73.99526,Entire home/apt,250,1,23,2018-11-27,0.95,1,0 +19553123,Rainbow 2,4176842,Novi,Queens,Rego Park,40.72885,-73.86759,Entire home/apt,49,7,23,2019-07-04,0.96,1,22 +19553193,Bedroom in Beautiful Park Slope Brownstone,3894475,Kyle,Brooklyn,South Slope,40.66595,-73.98202,Private room,77,2,0,,,3,0 +19553306,Modern 2 Bedroom in Heart of Williamsburg,6405437,Joe,Brooklyn,Williamsburg,40.71201,-73.96144,Entire home/apt,400,2,6,2018-10-21,0.25,1,0 +19554164,Beautiful East Village Gem,137384468,Emily,Manhattan,East Village,40.73075,-73.98636,Private room,80,1,4,2017-08-01,0.16,1,0 +19554491,A Room in Park Slope,137382776,Gladis,Brooklyn,Prospect Heights,40.68066,-73.97299,Private room,340,3,0,,,1,83 +19554564,"25% off; spacious, modern 2br; 25 min to Manhattan",612563,Scott,Brooklyn,Bushwick,40.68335,-73.90756,Entire home/apt,135,2,134,2019-06-28,5.55,1,302 +19554598,Modern & Trendy 2-Bedroom 1 Bath Lower Manhattan,17131554,Alex,Manhattan,Little Italy,40.71809,-73.99811,Entire home/apt,220,1,128,2019-06-22,5.28,1,239 +19554980,A Cozy Manhattan Sanctuary,97796457,Logan,Manhattan,Upper West Side,40.8016,-73.96409,Entire home/apt,2500,40,17,2018-03-26,0.91,1,0 +19555750,Travel Themed Room at Great Location,137264725,Gulcin,Manhattan,Chinatown,40.71391,-73.99162,Private room,60,1,101,2019-06-21,4.13,4,257 +19556174,Open Room in Hell's Kitchen,51356852,Peter,Manhattan,Hell's Kitchen,40.763,-73.98624,Private room,300,1,0,,,1,0 +19558926,Nice and safe every thing near me,37078185,Gurdeep,Queens,Jackson Heights,40.75141,-73.8967,Private room,100,1,0,,,1,0 +19559780,Quiet Room Close to Central Park,61042,Marlon,Manhattan,East Harlem,40.79995,-73.94121,Private room,50,5,16,2019-05-28,0.68,6,15 +19563107,Attractive one bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74956,-73.97714,Entire home/apt,175,30,1,2017-09-30,0.05,50,365 +19563669,Chelsea luxury apartment,41680155,Ze,Manhattan,Chelsea,40.74794,-73.98927,Private room,140,2,2,2019-07-05,0.21,1,22 +19564437,Sunny BK Bedroom with Private Bathroom and Balcony,6313371,Ashley,Brooklyn,Clinton Hill,40.689,-73.9613,Private room,90,3,0,,,1,0 +19566229,法拉盛(Flushing)独立出入Basement套房出租。2房1卫 2Rooms/1Bath,137129564,Bing,Queens,Flushing,40.75388,-73.81561,Private room,54,1,70,2019-07-01,2.86,4,85 +19566557,Brand New 1 Bedroom Across from Prospect Park,8306638,Halima,Brooklyn,Prospect-Lefferts Gardens,40.65619,-73.96151,Entire home/apt,91,9,11,2019-05-31,0.53,1,234 +19567154,"Cozy, Private Apartment with Balcony",2128192,Jacqueline,Brooklyn,Greenpoint,40.72485,-73.94582,Private room,99,5,0,,,1,0 +19567443,10th btw 5/6 Ave - A special place in Park Slope,50755667,Kyla,Brooklyn,South Slope,40.66837,-73.98649,Entire home/apt,200,2,83,2019-06-16,3.51,3,201 +19567629,East Village. Best Space/Location 1 Bdrm 1 Person,137337835,Steven,Manhattan,East Village,40.72714,-73.98279,Private room,70,1,129,2019-06-23,5.39,1,28 +19568889,Comfy Guest room+private bathroom+ 300ft to Trains,137512725,Kiki,Manhattan,Harlem,40.82555,-73.94297,Private room,77,2,36,2019-06-16,1.49,1,116 +19569016,Upper East Side Studio,73848909,Yassir,Manhattan,Upper East Side,40.7662,-73.9574,Entire home/apt,100,3,2,2018-09-14,0.15,1,0 +19569054,Sunny room in the heart of Williamsburg,14094953,Anne-Sophie,Brooklyn,Williamsburg,40.71606,-73.95744,Private room,67,4,0,,,1,0 +19569411,Sunny Bed-Stuy apartment with rooftop access!,61483702,Sasha,Brooklyn,Bedford-Stuyvesant,40.69251,-73.93484,Private room,70,5,2,2017-07-20,0.08,2,0 +19569481,Lux Renovated Williamsburg Duplex w/ Private Yard,960013,Zhana And Adam,Brooklyn,Williamsburg,40.71312,-73.94867,Entire home/apt,250,3,31,2019-06-01,1.27,1,13 +19571034,Modern luxury apartment on 42nd Street,19703184,John,Manhattan,Hell's Kitchen,40.76236,-73.99827,Entire home/apt,175,3,4,2018-09-07,0.29,1,0 +19571350,"Large, Queen Bedroom in heart of Greenwich Village",11787834,Carlo,Manhattan,Greenwich Village,40.72985,-73.99938,Private room,106,8,25,2019-05-27,1.05,1,10 +19571955,Great room in spacious apt. right by the C,932021,Alec,Brooklyn,Clinton Hill,40.68511,-73.96775,Private room,49,1,2,2017-07-22,0.08,1,0 +19572489,"Comfortable, modern apartment in a fun area",44739726,Megan,Brooklyn,Williamsburg,40.71722,-73.95406,Entire home/apt,200,2,9,2017-12-31,0.38,1,0 +19572516,Modern turn of century Brooklyn apartment.,6466505,Romana,Brooklyn,Crown Heights,40.6726,-73.9514,Entire home/apt,100,3,5,2017-08-30,0.21,1,0 +19573709,Studio - West Village - Unit 5,4422523,Marie,Manhattan,West Village,40.73545,-74.00529,Entire home/apt,150,30,6,2019-06-14,0.58,6,141 +19573919,Bright Clean Comfortable 1bdrm in west Chelsea,75253309,Wayne,Manhattan,Chelsea,40.75283,-73.99951,Entire home/apt,140,4,0,,,1,0 +19574919,Convenient Brooklyn Apartment for July 4th weekend,16946950,Katherine,Brooklyn,Brooklyn Heights,40.69269,-73.99432,Entire home/apt,125,3,0,,,1,0 +19574956,Cozy Bedstuy Room,14163206,Alexander,Brooklyn,Bedford-Stuyvesant,40.68301,-73.94757,Private room,45,2,6,2017-12-29,0.25,1,0 +19575376,Hendrix Street Gem Rm #1,105878573,Tonisha,Brooklyn,East New York,40.66672,-73.88852,Private room,58,1,14,2018-05-19,0.59,5,0 +19577620,"2 Story Penthouse | Private Floor, Bed, & Bath",16652171,Erik,Manhattan,Upper West Side,40.78413,-73.97779,Private room,94,2,65,2019-07-04,2.69,1,54 +19579695,Spacious Sunny Room in Astoria :),45522333,Corinne,Queens,Astoria,40.76746,-73.9223,Private room,75,2,4,2017-09-13,0.17,1,0 +19582132,Ground floor Apartment,5447617,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68199,-73.93665,Entire home/apt,95,30,2,2017-09-28,0.09,3,248 +19582754,Cozy room in the best area! Affordable stay in NY!,20761853,Elena,Manhattan,Upper East Side,40.76812,-73.95403,Private room,79,1,62,2019-05-26,2.58,2,258 +19583464,NYC Empire Apartment,137647792,Blair,Manhattan,Kips Bay,40.74511,-73.97833,Entire home/apt,145,2,0,,,1,0 +19583985,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 2",9864136,Anthony,Brooklyn,Bushwick,40.68652,-73.91365,Private room,50,1,0,,,26,365 +19585955,"Quiet Full Bed, loft and couch",4471200,Adam,Queens,Ridgewood,40.69654,-73.90034,Private room,40,2,1,2017-07-04,0.04,1,0 +19586399,Cozy room in Dekalb Ave,137672539,Juan,Brooklyn,Bushwick,40.70163,-73.92225,Shared room,34,2,83,2019-06-14,3.42,1,192 +19586663,Brooklyn's Big Room Next to Prospect Park,137673701,Brama,Brooklyn,Windsor Terrace,40.65963,-73.98068,Private room,45,7,1,2017-08-09,0.04,1,0 +19587940,Sweet Space in Bed Stuy: July,137685990,Helen,Brooklyn,Bedford-Stuyvesant,40.68387,-73.9262,Private room,32,2,3,2017-07-17,0.12,1,0 +19588190,1BR - Heart of West Village - 30 Day Min - Unit 4,4422523,Marie,Manhattan,West Village,40.73541,-74.00331,Entire home/apt,190,30,1,2019-05-17,0.57,6,277 +19588669,30+ Day Stay -Cute Small House by a Beautiful Deck,137522531,Ali,Queens,Flushing,40.75745,-73.80823,Entire home/apt,138,6,20,2019-05-13,0.89,7,322 +19588726,Habitación ubicada céntricamente en la ciudad.,137690897,Yaneli,Bronx,Fordham,40.86729,-73.89046,Private room,75,2,13,2019-05-19,0.57,1,364 +19589726,"Sun filled 1 bedroom, 20 minutes from Manhattan",137700828,Linda,Queens,Astoria,40.77017,-73.92536,Private room,110,3,23,2019-05-11,1.03,1,0 +19590061,Artist's X-Large 2 Bedroom Loft w/King Bed.,137308380,Jane,Brooklyn,Williamsburg,40.71401,-73.9661,Entire home/apt,264,2,130,2019-06-17,5.30,1,167 +19590073,Cozy room in Nolita,137702768,Dorothea,Manhattan,Little Italy,40.71885,-73.99514,Private room,120,7,14,2018-12-13,0.62,1,64 +19590209,30+Day: Fun 3 Bedroom (kids Favorite) Home by Deck,137522531,Ali,Queens,Flushing,40.75558,-73.81019,Entire home/apt,298,6,30,2019-04-23,1.34,7,174 +19591107,30+Day Stay:Designer Sky Beautiful Loft (1000 sf),137522531,Ali,Queens,Flushing,40.7558,-73.80953,Entire home/apt,150,6,50,2019-05-09,2.27,7,343 +19591602,30+Day Stay: New 3-4 Bedroom 4 Bath Apt by a Deck,137522531,Ali,Queens,Flushing,40.75572,-73.80791,Entire home/apt,398,5,48,2019-06-19,2.11,7,139 +19591709,"Entire Apartment!! Free parking,30 min to Times Sq",137720684,Meera,Queens,East Elmhurst,40.75794,-73.8767,Entire home/apt,155,1,101,2019-07-03,4.12,1,308 +19592057,"Expensive, Small place, but it is 100% clean",127181576,Alon,Manhattan,Lower East Side,40.71043,-73.98174,Private room,157,1,0,,,1,0 +19592223,Studio West Village - 30 Day Min - Unit 3,4422523,Marie,Manhattan,West Village,40.73561,-74.0051,Entire home/apt,120,30,5,2019-06-01,0.34,6,66 +19593009,"Simple Cost-friendly Private Room, FEMALES ONLY",125653581,Amanda,Bronx,Norwood,40.8774,-73.87537,Private room,29,2,1,2017-07-16,0.04,1,0 +19593631,Entire Apartment near Central Park,2926954,Ricky,Manhattan,Upper East Side,40.78242,-73.9547,Entire home/apt,160,2,7,2019-02-20,0.30,1,0 +19596021,Cozy Apartment in a Private House,137772585,George,Queens,Jackson Heights,40.75382,-73.88231,Entire home/apt,150,2,21,2019-07-02,1.07,1,288 +19602390,Stylish Brooklyn Studio,137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93052,Entire home/apt,100,3,68,2019-07-02,2.81,4,128 +19602515,LES East Village Spacious Getaway,11758216,Ariana,Manhattan,East Village,40.72349,-73.98491,Entire home/apt,150,4,5,2019-07-02,0.27,1,8 +19602663,1 Room in high rise facing Central Park w/ balcony,137821526,Cathy,Manhattan,East Harlem,40.79622,-73.94825,Private room,160,1,0,,,2,0 +19602883,Cozy East Williamsburg apt (walk up),85507826,Gary,Brooklyn,Williamsburg,40.71049,-73.9441,Private room,45,21,0,,,1,0 +19602922,Amazing Room in Brooklyn,813647,Claudio,Brooklyn,Downtown Brooklyn,40.69293,-73.98495,Private room,85,4,13,2018-10-29,0.54,1,5 +19603055,1- Bedroom in East Harlem,25959120,Dan,Manhattan,East Harlem,40.78668,-73.94247,Private room,85,2,2,2017-08-16,0.08,1,0 +19603348,"Clean, Bright Studio Apartment",136224596,Ketter,Brooklyn,Bedford-Stuyvesant,40.68655,-73.93673,Entire home/apt,100,3,0,,,1,0 +19603487,"Bright Private Space, Central Harlem, NYC",137829485,Barron,Manhattan,Harlem,40.81232,-73.94112,Private room,45,7,1,2018-03-17,0.06,1,17 +19603624,Beautiful Greenwich Village Home in NYC,71811779,Rebecca,Manhattan,West Village,40.73129,-74.00298,Entire home/apt,250,1,0,,,1,0 +19603759,1 Room highrise over Central Park-private balcony,137821526,Cathy,Manhattan,East Harlem,40.79572,-73.9481,Private room,165,1,3,2018-06-17,0.13,2,0 +19604123,Warm Sunny Bedroom w/ private bathroom 4MB,17555570,Yan,Brooklyn,Crown Heights,40.6696,-73.92414,Private room,64,1,64,2019-06-30,3.13,12,63 +19604361,Bedroom #2 in Queens,137838298,Norma,Queens,Jamaica,40.68121,-73.76869,Private room,60,1,22,2018-12-16,0.99,2,177 +19605856,Upper west side - One Bedroom + Bike,18632318,Jeffrey,Manhattan,Upper West Side,40.8023,-73.96688,Private room,101,5,2,2017-07-22,0.08,1,0 +19606247,Cozy Private Room in Chinatown/ Lower East Side,48035228,Chen,Manhattan,Two Bridges,40.71253,-73.99586,Private room,50,7,3,2017-08-27,0.12,1,0 +19606485,Spacious Private Room in Crown Heights,2520288,Chris,Brooklyn,Crown Heights,40.67815,-73.95992,Private room,55,5,0,,,1,0 +19606813,"BEDFORD AVENUE - cosy, bright, private bedroom",973036,Ben,Brooklyn,Williamsburg,40.71122,-73.96361,Private room,100,2,45,2019-07-01,3.61,1,251 +19608042,Zen Light Filled Experience in Heart of Greenpoint,3687198,Crista,Brooklyn,Greenpoint,40.73386,-73.95873,Entire home/apt,200,2,0,,,1,0 +19608383,Bright Clean Private Room in Crown Heights 4SR,17555570,Yan,Brooklyn,Crown Heights,40.66895,-73.9235,Private room,53,1,88,2019-06-26,3.59,12,61 +19609107,Sanctuary from the City,137884235,Megan,Brooklyn,Bedford-Stuyvesant,40.69384,-73.9422,Private room,44,3,4,2017-07-20,0.16,1,0 +19609161,Luxury Private Room on the Upper East Side!,11830463,Farheen,Manhattan,Upper East Side,40.78324,-73.94871,Private room,90,2,4,2017-08-12,0.17,1,0 +19609919,Large Private Room in Duplex- Chelsea,137893214,Chad,Manhattan,Chelsea,40.74498,-73.99845,Private room,105,2,0,,,1,0 +19610687,Serene Goldfish Pond Garden Apt in Williamsburg,2597159,Alana,Brooklyn,Williamsburg,40.71304,-73.9482,Entire home/apt,215,2,74,2019-06-15,3.08,2,31 +19611015,Beautiful 2 Bedroom on Subway,14487073,Jeremy,Brooklyn,Bushwick,40.70421,-73.91561,Entire home/apt,150,2,68,2019-06-16,2.85,2,263 +19617695,Bright & Cozy Upper East Side Studio,41381874,Shana,Manhattan,Upper East Side,40.78185,-73.9474,Entire home/apt,150,2,3,2017-10-01,0.12,1,0 +19618443,Cute apartment in Sunnyside,26921025,Ellie,Queens,Sunnyside,40.73811,-73.92099,Entire home/apt,99,1,0,,,1,0 +19618958,Beautiful Lower East Side 1 Bedroom Loft,7737249,Casandra,Manhattan,Chinatown,40.71558,-73.99136,Entire home/apt,325,30,76,2019-05-05,3.27,2,294 +19619159,"Bright, Modern and Cozy Chelsea Studio!",18776880,Caroline,Manhattan,Chelsea,40.74118,-73.999,Entire home/apt,155,2,4,2017-10-23,0.16,1,0 +19619177,Cozy Brooklyn Getaway,137649778,Shelly & Wayne,Brooklyn,East New York,40.67327,-73.89141,Entire home/apt,100,2,74,2019-07-04,3.13,1,78 +19619393,"ENTIRE APT | BRIGHT 2 BED | Q, B & PROSPECT PARK",63480384,Jennifer,Brooklyn,Prospect-Lefferts Gardens,40.65473,-73.96112,Entire home/apt,115,2,4,2019-05-19,0.36,2,86 +19620202,CRASH COOL TRAVELBLOGGERS COUCH LEARN TRAVEL TIPS!,44735076,StayWithaTravelWriter,Brooklyn,Crown Heights,40.67767,-73.9602,Shared room,59,1,44,2019-06-30,1.80,1,90 +19621012,Large 1 Bedroom Apt w/ Backyard!,39550178,Hassan,Brooklyn,Fort Greene,40.68898,-73.97707,Entire home/apt,275,1,0,,,1,0 +19621042,Brian's place in Brooklyn,46859784,Brian,Brooklyn,Williamsburg,40.71548,-73.96236,Entire home/apt,110,3,3,2019-06-24,0.14,1,12 +19621610,For the Wanderlust: Astoria Art-filled Apt,105620723,Giselle,Queens,Long Island City,40.76222,-73.92662,Entire home/apt,150,10,4,2017-09-01,0.17,1,0 +19621939,"Calm, quirky Harlem apartment Room 2",41940272,Nicole,Manhattan,Harlem,40.82077,-73.94568,Private room,75,2,44,2019-06-30,1.91,3,77 +19622470,Chelsea Private Bedroom and Bathroom,3715206,Yaz,Manhattan,Chelsea,40.74837,-74.00228,Private room,100,2,12,2017-10-09,0.50,1,0 +19622700,Upper west side - perfect feel at home place.,101262003,John,Manhattan,Upper West Side,40.78526,-73.97633,Private room,175,1,8,2018-11-08,0.35,2,90 +19622976,Scenic Brooklyn townhouse.,39277795,Javier,Brooklyn,Sunset Park,40.645,-74.00378,Private room,90,1,50,2019-06-26,2.07,1,43 +19623349,2 bed / 2.5 bath with outdoor space,16260034,Michael,Brooklyn,Crown Heights,40.67742,-73.93737,Entire home/apt,250,7,0,,,1,0 +19623614,"Comfortable,3 bedroom, 2bath home away from home",138033394,Michael & Sharon,Queens,Jamaica,40.69934,-73.78325,Entire home/apt,150,2,85,2019-06-30,3.52,1,132 +19625050,Charming apartment (sleeps 2-4) in UES Manhattan,52573016,Leah,Manhattan,Upper East Side,40.78271,-73.9454,Entire home/apt,148,3,2,2018-01-04,0.09,1,0 +19625202,Modern Spacious and Sunny Place,138052895,Belgica,Brooklyn,Bushwick,40.68628,-73.91523,Entire home/apt,100,2,107,2019-06-19,4.37,1,46 +19625234,"纽约三室一厅两全浴带独立厨房和停车位 +Three-Room Two Bath and Parking",115979599,Mike,Queens,Flushing,40.76818,-73.8276,Entire home/apt,188,1,85,2019-07-07,3.52,1,151 +19625292,Artist's loft / Room / Greenpoint,138052282,Alican,Brooklyn,Greenpoint,40.72842,-73.9421,Private room,43,4,4,2019-06-26,0.34,1,3 +19626464,Beautiful and tidy room at Time Square location,34689714,Maria,Manhattan,Hell's Kitchen,40.76591,-73.98717,Private room,110,1,82,2019-05-19,3.38,5,0 +19626535,Cozy and modern apartment in Hell's Kitchen,22347382,Sergio,Manhattan,Hell's Kitchen,40.75554,-73.99329,Entire home/apt,200,20,0,,,1,0 +19630271,Spacious and Bright Studio Apt in the Heart of UES,15602635,Alexander,Manhattan,Upper East Side,40.77561,-73.95213,Entire home/apt,200,4,10,2018-10-08,0.43,1,0 +19633139,Private and cozy bedroom in the middle of NYC,59432400,Anna,Manhattan,Harlem,40.81974,-73.94457,Private room,120,4,31,2018-12-13,1.31,2,188 +19633511,Cozy bedroom in beautiful Bed-Stuy brownstone,19079151,Yael,Brooklyn,Bedford-Stuyvesant,40.68515,-73.95566,Private room,51,7,0,,,1,0 +19634067,"Gigantic, convenient loft in S Williamsburg!",13785996,David,Brooklyn,Williamsburg,40.70857,-73.96618,Private room,42,3,1,2018-02-14,0.06,1,0 +19634230,Taste of the Suburbs in Greenpoint,41945908,Caleb,Brooklyn,Greenpoint,40.72785,-73.95452,Private room,60,3,4,2018-01-03,0.16,1,0 +19635738,Maison 130,6920054,Joseph,Manhattan,Chelsea,40.73978,-73.9963,Shared room,250,1,0,,,1,0 +19636727,Private Room for 1 with Balcony! (004),137999892,Simranjeet,Staten Island,Concord,40.60732,-74.08709,Private room,40,2,36,2019-05-09,1.60,7,286 +19637270,Cozy 1 Bedroom at a Very Convenient Location!,52432205,Magdalena,Queens,Sunnyside,40.74266,-73.91884,Entire home/apt,140,2,4,2018-01-01,0.17,1,0 +19637278,Cozy Upper West Side Apartment in New York City,138186485,Nicholas,Manhattan,Upper West Side,40.78823,-73.97499,Entire home/apt,116,1,28,2018-10-17,1.22,1,0 +19638414,"Beautiful, Clean, Renovated, Sun-Drenched Studio",138197456,Jordan,Manhattan,Washington Heights,40.85065,-73.93356,Entire home/apt,215,3,0,,,1,0 +19639687,"Garden Apt, 1,800 sq ft",138210979,Michael,Brooklyn,Park Slope,40.67405,-73.97883,Entire home/apt,181,1,3,2017-07-15,0.12,1,0 +19640913,Cozy Room In Perfect Location!,129627362,Florangie,Manhattan,Washington Heights,40.85039,-73.93855,Private room,70,2,9,2018-04-06,0.37,1,8 +19641775,Bushwick 30 min to Times Square #4 bedrooms !,20120009,Jannices,Brooklyn,Bushwick,40.68927,-73.90817,Entire home/apt,169,2,80,2019-06-25,3.58,6,241 +19642050,"Sparkling 2nd Flr Apt, Near JFK, LGA & NY City",138235784,Kay,Queens,Forest Hills,40.70838,-73.85156,Entire home/apt,105,2,60,2019-06-28,2.49,2,319 +19642392,"Private room in the heart of Gramercy, NY.",102072773,Linett,Manhattan,Kips Bay,40.74136,-73.98146,Private room,55,1,8,2017-08-10,0.33,1,0 +19643201,Time Square - Hell’s Kitchen,12244687,Cesare Friend,Manhattan,Hell's Kitchen,40.76223,-73.99458,Entire home/apt,163,6,25,2019-06-08,1.16,1,266 +19643642,One stop to midtown Manhattan one stop to Brooklyn,20440843,Safiah,Queens,Long Island City,40.7451,-73.94951,Private room,75,1,5,2018-09-28,0.23,1,0 +19644363,Spacious 2 bedroom railroad apartment,114621718,Hope,Brooklyn,Gowanus,40.67718,-73.98513,Entire home/apt,225,1,67,2019-06-29,2.98,2,350 +19645931,Time Square NYC Location,2074014,Carmine,Manhattan,Hell's Kitchen,40.76232,-73.99285,Private room,110,7,1,2018-01-24,0.06,1,99 +19650084,Simple private bedroom in house apartment,61308650,Elan,Brooklyn,Cypress Hills,40.68244,-73.89489,Private room,29,1,51,2019-06-01,2.10,1,16 +19650166,Kingsize Prvt Room in Crown Heights,15049077,Karanja,Brooklyn,Crown Heights,40.66562,-73.93201,Private room,55,30,15,2019-05-19,0.67,2,163 +19651861,Antique Romantic apartment chinatown/downtown,138331581,J,Manhattan,Civic Center,40.71219,-73.99785,Entire home/apt,102,1,45,2018-06-24,1.85,1,0 +19652739,1 Bedroom/1 Livingroom on 21st and 8th in Chelsea,81531783,Katie Knapp,Manhattan,Chelsea,40.74429,-73.99984,Entire home/apt,130,26,39,2019-06-28,1.71,1,29 +19653554,Brooklyn Boho 3 Floor Townhouse,1394711,Michelle,Brooklyn,Sunset Park,40.66362,-73.99773,Entire home/apt,350,2,55,2019-06-21,2.37,1,281 +19653866,Warm Comfy Queen Bedroom in Crown Heights 3GR,17555570,Yan,Brooklyn,Crown Heights,40.66964,-73.9216,Private room,53,1,65,2019-06-20,2.75,12,30 +19654252,BEAUTIFUL renovated Hamilton Heights room!,7449972,Jordon,Manhattan,Harlem,40.82512,-73.95054,Private room,69,14,6,2017-09-09,0.25,1,0 +19654970,Sunny 1-br UES apartment!,138359867,Dim,Manhattan,Upper East Side,40.7836,-73.9522,Entire home/apt,130,5,109,2019-06-18,4.50,1,202 +19655186,Spacious Prewar South Bronx Apartment,138359603,Anamaria,Bronx,Concourse,40.82153,-73.92683,Entire home/apt,140,2,2,2017-08-09,0.08,1,0 +19655651,Color and Comfort in Prime Brooklyn Location,16872537,Adir,Brooklyn,Crown Heights,40.67025,-73.95009,Entire home/apt,84,6,0,,,1,0 +19659617,Huge Central Wiliamsburg 2 bedroom clean w/rooftop,125090618,Avi,Brooklyn,Williamsburg,40.7132,-73.96042,Entire home/apt,145,10,0,,,1,0 +19659874,Big Private Studio one Subway stop from Manhattan,41578662,Lucia,Bronx,Mott Haven,40.81133,-73.92356,Entire home/apt,100,5,13,2019-04-06,0.58,2,14 +19660325,Cozy bedroom in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.71127,-73.84278,Private room,125,2,3,2018-10-10,0.13,3,364 +19660327,Gorgeous room with private full bathroom!,68762417,Simon,Manhattan,East Harlem,40.79222,-73.94607,Private room,125,1,1,2019-06-21,1,4,87 +19660760,Sunny and Cozy Apartment by the Beach,30884023,Maggie,Queens,Arverne,40.59044,-73.79179,Entire home/apt,60,1,53,2019-06-30,2.20,1,0 +19661183,Manhattan Skyline & Freedom Tower View,6484652,Una,Brooklyn,South Slope,40.66388,-73.98786,Private room,88,2,25,2018-10-14,1.04,2,0 +19661733,Private room at Stella's place,15617507,Stella,Bronx,Morris Park,40.85152,-73.86121,Private room,39,1,57,2019-05-07,2.38,3,39 +19662367,Brooklyn Garden Retreat,3168812,Laura,Brooklyn,Crown Heights,40.67055,-73.93233,Entire home/apt,48,3,83,2019-06-30,3.62,1,17 +19662812,Comfortable room in heart of Fresh Meadows,76359133,FuKang,Queens,Fresh Meadows,40.73754,-73.7913,Private room,60,1,34,2019-07-03,1.42,3,335 +19663834,Modern Cozy Private NYC-Manhattan Apartment,134105301,Daniel,Manhattan,East Harlem,40.78723,-73.94863,Entire home/apt,75,1,1,2017-07-06,0.04,1,0 +19670093,183 Pulaski st,136049464,Asif,Brooklyn,Bedford-Stuyvesant,40.69277,-73.94315,Private room,55,2,11,2018-09-29,0.47,1,5 +19670458,Economy Queen Bed in Caribbean Crown Heights 2SL,17555570,Yan,Brooklyn,Crown Heights,40.66933,-73.92162,Private room,51,1,83,2019-07-02,3.40,12,55 +19670481,Comfy Queen Bedroom in Crown Heights 2SR,17555570,Yan,Brooklyn,Crown Heights,40.66919,-73.92207,Private room,54,1,65,2019-06-16,2.75,12,57 +19670499,Warm Comfy Queen Bedroom 2GR,17555570,Yan,Brooklyn,Crown Heights,40.66958,-73.92361,Private room,52,1,74,2019-06-11,3.04,12,68 +19670506,Modern Studio on the Upper East Side,134107066,Hayley,Manhattan,Upper East Side,40.77744,-73.95476,Entire home/apt,117,3,8,2018-04-10,0.33,1,0 +19670522,Garden Bedroom w/Private Bath in Crown Heights 2MB,17555570,Yan,Brooklyn,Crown Heights,40.66886,-73.92333,Private room,62,1,69,2019-07-02,2.83,12,65 +19670534,Garden Master Bedroom in Crown Heights,17555570,Yan,Brooklyn,Crown Heights,40.67021,-73.92368,Private room,63,1,49,2019-06-03,2.02,12,51 +19671061,Beautiful Williamsburg Loft 1/2 Block from Subway!,45673606,Susan,Brooklyn,Williamsburg,40.71493,-73.94502,Private room,120,1,9,2017-10-07,0.38,1,0 +19671104,JFK 10 & LGA 15 minutes Single bed in the room,101657794,Dr. Shirin,Queens,Briarwood,40.70915,-73.80662,Private room,45,1,14,2017-10-19,0.58,6,0 +19672894,Secret Bushwick Bungalow,70506872,Kyle,Brooklyn,Bushwick,40.69935,-73.93872,Private room,52,1,3,2017-07-27,0.13,2,0 +19672975,"Cute, sunny room in NYC!",59111337,Meredith,Manhattan,Washington Heights,40.85029,-73.93602,Private room,42,2,3,2018-08-22,0.13,1,0 +19673076,Modern and Private Duplex Apartment,2983089,Robert,Brooklyn,Carroll Gardens,40.68308,-73.9912,Entire home/apt,175,30,57,2019-07-06,2.74,1,84 +19673318,Hunters Hideaway,138526119,Richard,Queens,Rockaway Beach,40.58573,-73.8137,Entire home/apt,142,2,11,2019-05-20,0.46,1,117 +19673610,Sunny Walk-up on the Upper East Side,15721549,Lauren,Manhattan,Upper East Side,40.77229,-73.94941,Private room,80,4,3,2018-11-06,0.34,1,0 +19673728,Women-only listing: Spacious bedroom in Brooklyn,130343656,Suzy,Brooklyn,Williamsburg,40.70492,-73.94258,Private room,42,3,8,2018-08-28,0.33,1,35 +19674485,Ditmas Park Victorian Dream Space!,105828086,Nikki,Brooklyn,Flatbush,40.64135,-73.96325,Private room,90,2,24,2019-04-23,1.07,4,0 +19674542,"One-bedroom, two-bathroom apartment in Brooklyn.",138546022,Nicholas,Brooklyn,Crown Heights,40.67466,-73.95163,Private room,50,1,1,2017-07-08,0.04,2,0 +19675121,Sunny Bushwick Bungalow,70506872,Kyle,Brooklyn,Bushwick,40.69915,-73.93743,Private room,52,4,4,2017-09-30,0.18,2,0 +19675166,Massive 1200ft² Luxury Loft in Heart of Flatiron,4252459,Sara,Manhattan,Flatiron District,40.74175,-73.99104,Entire home/apt,350,2,0,,,1,205 +19675738,Queens Village Home with Parking.,96856335,Wiler,Queens,Queens Village,40.71833,-73.7507,Entire home/apt,125,2,49,2019-06-10,2.08,1,347 +19675743,Steps to Times Square! Fabulous HK apt in NYC,116482644,Yaniv,Manhattan,Hell's Kitchen,40.76479,-73.98842,Private room,105,1,88,2019-05-01,3.76,2,0 +19676100,Suite 627 - Affordable Luxury - Brooklyn Charm,137666089,Livienne,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92205,Entire home/apt,100,2,90,2019-06-20,3.73,1,202 +19676301,White Bright Halsey Room,20759527,Farida,Brooklyn,Bedford-Stuyvesant,40.68506,-73.92316,Private room,31,55,4,2017-08-22,0.17,1,0 +19677221,"Private, Spacious Brooklyn Room in Prime Location",88351271,Jordan,Brooklyn,Bushwick,40.69817,-73.92819,Private room,45,3,14,2018-08-02,0.58,1,0 +19677284,Room in Williamsburg,63336737,Juan,Brooklyn,Williamsburg,40.70994,-73.95243,Private room,50,4,3,2018-08-13,0.12,1,0 +19677579,"Sunny room in historic Bedstuy, Brooklyn",124171,Miguel,Brooklyn,Bedford-Stuyvesant,40.68533,-73.94231,Private room,60,1,1,2018-07-08,0.08,1,0 +19677749,Midtown Room,117295184,Dorian,Manhattan,Midtown,40.76554,-73.98245,Private room,80,1,46,2019-06-25,1.93,1,6 +19678436,Sunny 1BR - Trendiest location in NYC,1999224,Ro-E,Manhattan,Chinatown,40.71346,-73.99158,Entire home/apt,180,2,1,2017-09-03,0.04,1,0 +19680275,Nice & new room in 2 bedroom apt. Washer/dryer 2R,122498535,Gf,Brooklyn,East Flatbush,40.65695,-73.92558,Private room,40,30,0,,,3,326 +19681256,"Contemporary, Stylish 2,000 sq. ft. Tribeca Loft",25064843,Stefania,Manhattan,SoHo,40.71938,-74.00163,Entire home/apt,550,2,0,,,1,0 +19682018,Room in basement apartment in Woodlawn,105375380,Yesenia,Bronx,Woodlawn,40.89785,-73.86977,Shared room,70,2,2,2018-12-02,0.11,2,0 +19686426,PRIVATE ROOM IN SPACIOUS APARTMENT IN WILLIAMSBURG,15820210,Scott,Brooklyn,Williamsburg,40.70932,-73.93489,Private room,60,2,36,2019-07-06,1.96,2,52 +19689686,Private comfy bedrm & bath Brookly NY,3148366,Maria,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95377,Private room,55,3,0,,,1,0 +19690331,"Private room in bustling Bushwick, Brooklyn",55209173,Camille,Brooklyn,Bedford-Stuyvesant,40.69555,-73.93444,Private room,40,1,3,2017-08-08,0.12,1,0 +19691108,Charming Studio in Historic Brooklyn Brownstone,31582668,Marci,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93202,Entire home/apt,99,3,55,2019-06-02,2.48,1,74 +19691179,Sun-filled Lower East Side Guest Room,138708257,Jeffrey,Manhattan,Lower East Side,40.72113,-73.9849,Private room,125,2,52,2019-06-30,2.19,1,28 +19691525,Small room in Historical home on Staten Island,128338539,Reuben,Staten Island,Stapleton,40.63144,-74.07913,Private room,34,1,11,2019-04-19,0.65,4,78 +19691853,Perfect 1 bedroom for short or extended stay.,106955062,Arelis,Manhattan,Harlem,40.81143,-73.94935,Entire home/apt,100,3,16,2019-05-13,0.66,1,0 +19691986,Beautiful Comfortable Historic Brownstone,138713312,M,Manhattan,Harlem,40.80832,-73.95275,Private room,115,2,93,2019-06-23,3.92,1,129 +19692421,Sunny studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74846,-73.97557,Entire home/apt,170,30,5,2019-03-30,0.22,50,323 +19692746,East Village Studio Recently Renovated,138721769,Marcelo,Manhattan,East Village,40.72807,-73.98801,Entire home/apt,200,2,110,2019-06-12,4.90,1,0 +19693245,Fully furnished one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74956,-73.97668,Entire home/apt,175,30,2,2018-08-05,0.09,50,353 +19693849,Beautiful Brooklyn Studio,21408874,Tal,Brooklyn,Bedford-Stuyvesant,40.68243,-73.93161,Entire home/apt,100,30,9,2018-08-18,0.37,1,0 +19694308,Bed-Stuy Beauty,12662045,Kamilah,Brooklyn,Bedford-Stuyvesant,40.68347,-73.93322,Private room,50,3,2,2017-08-31,0.09,1,0 +19694938,A gem in the East Village Manhattan!!,138741275,Karina,Manhattan,East Village,40.72497,-73.98208,Entire home/apt,220,3,78,2019-06-17,3.26,1,232 +19694951,Cozy Bedstuy Apartment,138741690,Frances,Brooklyn,Bedford-Stuyvesant,40.686,-73.94133,Private room,50,1,12,2019-06-27,0.52,1,39 +19695276,Beautiful Boerum Hill Apartment,373060,Tamera,Brooklyn,Boerum Hill,40.68591,-73.9863,Entire home/apt,275,2,2,2017-11-12,0.09,1,0 +19695709,Huge sunlit 1BD in heart of Williamsburg King Bed!,2224802,Daniel,Brooklyn,Williamsburg,40.71379,-73.94635,Entire home/apt,200,3,22,2019-07-01,0.90,1,0 +19696119,"Home away from home, come live like a Brooklynite!",4334590,Ashley,Brooklyn,Bushwick,40.69807,-73.9335,Private room,115,1,72,2018-09-25,2.98,1,0 +19696674,"Sunny, quiet room next to Prospect Park",10402380,Yuval,Brooklyn,Prospect Heights,40.67408,-73.96364,Private room,60,1,131,2019-06-30,5.36,2,128 +19696746,A Garden Grows in Greenpoint / Craft Chateau,5107938,Misha,Brooklyn,Greenpoint,40.72351,-73.94059,Private room,54,2,2,2017-08-31,0.08,1,0 +19696952,Lovely Bedroom available in the heart of Bushwick,70822653,Brandon,Brooklyn,Bushwick,40.70126,-73.91396,Private room,55,3,2,2017-11-29,0.10,1,241 +19696972,Stockton Studios,98093770,Dane,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94839,Private room,44,3,13,2018-03-27,0.54,1,0 +19697371,Cute Studio near Prospect Park,12058024,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.96166,Entire home/apt,70,1,3,2018-12-17,0.12,1,4 +19698169,"""The luxury of Comfort""",131826530,Kathy,Bronx,Riverdale,40.88671,-73.9151,Private room,2500,2,0,,,3,179 +19698772,"Brooklyn, Carroll Garden Apartment",48970186,Margarita,Brooklyn,Carroll Gardens,40.68188,-73.99438,Entire home/apt,135,4,49,2019-05-09,2.31,2,3 +19699039,Super Nice and Cool One Bedroom in LES,24835386,Atif,Manhattan,Lower East Side,40.71799,-73.98657,Entire home/apt,138,7,4,2018-08-27,0.17,1,0 +19699218,"Clean, Big, Sunny Room in Little Italy/Chinatown!",138784297,Andre,Manhattan,Chinatown,40.71353,-73.99632,Private room,115,2,18,2018-10-08,0.74,1,0 +19699241,MJ house,138782186,Hannah M,Queens,Rosedale,40.65531,-73.7274,Private room,70,1,0,,,2,365 +19699596,Intimate and Welcoming,138785704,Andrea,Manhattan,East Harlem,40.81661,-73.93471,Entire home/apt,150,2,60,2019-06-16,2.61,1,94 +19700585,Entire Apt with City Skyline Views,1384111,Joanne,Queens,Sunnyside,40.7461,-73.92146,Entire home/apt,150,30,8,2018-01-01,0.35,2,0 +19700871,~ Chic and open 2 bedroom Brooklyn Apartment ~,41963149,Carolyn,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95119,Entire home/apt,170,1,1,2017-07-16,0.04,1,0 +19701037,1BR - Heart of West Village - 30 Day Min - Unit 6,4422523,Marie,Manhattan,West Village,40.73394,-74.0049,Entire home/apt,140,30,4,2019-03-03,0.27,6,153 +19701427,Beautiful One Bedroom on the Upper East Side,16685637,Jessica,Manhattan,Upper East Side,40.76692,-73.964,Entire home/apt,400,15,0,,,1,87 +19701453,"GardenViewApt 10min to Bushwick ArtScene,Food,Bars",5413500,Rebecca,Queens,Ridgewood,40.70499,-73.91304,Entire home/apt,95,3,0,,,1,0 +19701644,"Affordable, spacious room in Bed-Stuy",3309159,David,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95383,Private room,50,1,0,,,1,0 +19701809,Spacious private room in the heart of Williamsburg,52173396,Greg,Brooklyn,Williamsburg,40.71733,-73.95887,Private room,65,1,7,2018-08-07,0.29,1,0 +19701913,Charming One Bedroom in South Harlem,6933440,Madalyn,Manhattan,Harlem,40.80416,-73.95704,Entire home/apt,102,2,18,2019-01-01,0.77,1,0 +19702498,Sunny 2BR Brooklyn Loft,5421054,Samuel,Brooklyn,Bushwick,40.70766,-73.92169,Entire home/apt,175,5,8,2018-09-09,0.34,1,0 +19702506,Heart of NYC - Best Location In The City,138823659,Andrea,Manhattan,Hell's Kitchen,40.75851,-73.99138,Entire home/apt,275,2,16,2019-04-21,0.67,1,0 +19703922,NYC 1-bedroom apartment on the UES,2262180,Andrew,Manhattan,Upper East Side,40.76651,-73.95155,Entire home/apt,145,2,33,2019-06-29,2.55,1,267 +19708955,Good Vibes Tribeca Loft,136729912,Karen,Manhattan,Tribeca,40.72227,-74.00804,Entire home/apt,700,4,12,2019-01-01,0.62,1,124 +19709550,Artist 1.5 bedroom WHOLE apartment in central NY!,38204730,Kathy,Manhattan,Gramercy,40.73564,-73.98229,Entire home/apt,239,5,2,2018-01-02,0.08,3,266 +19709666,Beautiful Studio in Historic Inwood-NYC!,21056771,Lauren & Ron,Manhattan,Inwood,40.86801,-73.92372,Entire home/apt,65,2,112,2019-06-27,4.67,1,103 +19710391,BedStuy Dream-house,28680760,Edwin,Brooklyn,Bedford-Stuyvesant,40.68474,-73.91825,Entire home/apt,250,4,3,2017-09-17,0.13,1,333 +19710742,Sunny Room w/ Private Bath in Williamsburg!,2361069,Philip,Brooklyn,Williamsburg,40.71553,-73.96332,Private room,90,3,74,2019-06-23,3.29,1,79 +19710855,Cozy Ground Floor Apartment-SUBWAY ONE BLOCK AWAY,49764808,Danielle,Brooklyn,Bedford-Stuyvesant,40.67848,-73.91543,Entire home/apt,85,2,67,2019-06-23,2.85,2,171 +19711512,"Cozy, Cool, Mid Century Modern Apt in Boerum Hill",1024251,Michael,Brooklyn,Boerum Hill,40.68807,-73.98161,Entire home/apt,170,2,21,2018-08-21,0.86,1,9 +19712270,Treasure of Harlem: Balcony View and Fun Hosts,138914016,Jacqueline,Manhattan,East Harlem,40.80109,-73.93975,Private room,60,1,26,2018-07-01,1.09,1,0 +19712405,Private basement room in a duplex apartment,109908957,Natalia & Gustavo,Brooklyn,East Flatbush,40.6458,-73.94586,Private room,50,1,8,2018-06-02,0.35,2,89 +19712687,"Sunny, spacious, homey Brooklyn loft",11989253,Hiji,Brooklyn,Bushwick,40.70113,-73.92299,Private room,60,3,0,,,1,0 +19713074,Sweet one bedroom apartment in Cobble Hill,9669516,Renee,Brooklyn,Cobble Hill,40.68698,-73.99864,Entire home/apt,152,3,3,2017-07-31,0.13,1,0 +19713885,The Historic Jackson Heights,137575707,Lilia,Queens,Jackson Heights,40.75091,-73.89304,Private room,62,2,55,2019-06-11,2.31,1,318 +19714056,"Bright, spacious bedroom in comfy Brooklyn home",3013202,Chelsea,Brooklyn,Bushwick,40.69997,-73.91666,Private room,70,4,1,2017-08-21,0.04,1,55 +19714504,"Sunny, Clean 2 beds 1 bath C.Heights Brooklyn",21418070,Daniela,Brooklyn,Crown Heights,40.66609,-73.93976,Entire home/apt,99,2,0,,,1,20 +19714903,Charming One Bedroom Apt in West Chelsea,8706651,Theresa,Manhattan,Chelsea,40.74862,-74.00237,Entire home/apt,150,2,1,2019-04-27,0.41,1,0 +19715121,Brooklyn Spacious Studio,34899836,Frances,Brooklyn,East Flatbush,40.65777,-73.91671,Entire home/apt,100,2,36,2019-06-16,1.57,1,56 +19716375,Rockaway Hideaway,137305439,Harry,Queens,Rockaway Beach,40.58891,-73.81578,Private room,110,1,34,2019-07-01,1.40,2,358 +19716501,Peaceful Private Studio Floor in Williamsburg Apt,3889739,Tutti,Brooklyn,Williamsburg,40.71322,-73.94022,Private room,60,2,6,2017-10-29,0.25,1,0 +19717109,Great 2BD in TriBeCa,8586684,Julian,Manhattan,SoHo,40.72569,-74.00849,Entire home/apt,700,2,1,2017-07-08,0.04,1,0 +19717572,Large NYC Apartment!,45726938,Daulton,Manhattan,East Harlem,40.79368,-73.94132,Private room,100,3,0,,,1,0 +19717632,East Village Charming & Cozy Apt!,6965700,Alina,Manhattan,East Village,40.72435,-73.98394,Private room,73,3,6,2018-07-08,0.30,1,0 +19717723,Tiny STUDIO in EastVillage,49656804,Marija,Manhattan,East Village,40.72716,-73.98524,Entire home/apt,100,3,75,2019-07-01,3.12,1,60 +19718634,Enormous apartment with everything you need,3495471,Russell,Bronx,Claremont Village,40.83561,-73.91108,Entire home/apt,58,3,59,2019-06-03,2.89,1,42 +19718993,Cozy Crown Heights w/ Botanical Garden Membership,26017313,Jamie,Brooklyn,Crown Heights,40.67293,-73.96128,Entire home/apt,200,1,2,2017-09-26,0.09,1,0 +19719080,"Kosher, furnished room in Crown Heights!!!",58753715,Avremi And Shmuly,Brooklyn,Crown Heights,40.66739,-73.94708,Private room,70,2,5,2017-10-23,0.21,1,0 +19719874,Studio - West Village - Unit 1,4422523,Marie,Manhattan,West Village,40.73598,-74.00505,Entire home/apt,140,30,1,2018-08-06,0.09,6,267 +19720055,Big Private Room in quite place with green view.,138983570,Ali,Queens,Sunnyside,40.74777,-73.91546,Private room,45,6,1,2019-05-10,0.50,1,14 +19720126,Spacious West Harlem Studio!,96742320,Anne,Manhattan,Harlem,40.82411,-73.9509,Entire home/apt,98,2,2,2017-08-22,0.09,1,0 +19720270,Bright corner Studio in the heart of Harlem,12293403,Joffrey,Manhattan,Harlem,40.81113,-73.94113,Entire home/apt,150,2,21,2019-02-24,0.89,2,157 +19720565,2 bedroom luxury building 10 day stay,138996674,Suhail,Manhattan,Murray Hill,40.74466,-73.9748,Entire home/apt,80,10,0,,,1,0 +19720877,"Bright 2BR, terrace, best Bklyn Heights location!",7627586,Sarah,Brooklyn,Brooklyn Heights,40.69387,-73.99412,Entire home/apt,299,4,6,2018-12-31,0.27,1,27 +19720907,"Cozy bedroom in Harlem, NY",54283436,Maurice,Manhattan,East Harlem,40.7993,-73.94164,Private room,60,3,6,2018-07-26,0.25,1,0 +19721338,2 Bedrooms Available in Upper West Manhattan,133274871,Deborah,Manhattan,Harlem,40.81513,-73.95685,Private room,51,5,0,,,1,0 +19721535,Rockaway Beach Oasis,12162815,Annelise,Queens,Rockaway Beach,40.59093,-73.81238,Entire home/apt,140,2,9,2019-06-14,0.38,1,36 +19721906,"1 month min, Cozy Midtown East/UES studio!",10440694,Gia,Manhattan,Upper East Side,40.76212,-73.96358,Entire home/apt,150,30,88,2019-06-22,3.67,1,3 +19728214,Large beautiful room in luxury building with view,139076348,Candelyn,Queens,Long Island City,40.74515,-73.95583,Private room,150,3,0,,,1,0 +19729892,One room in a beautiful two bedroom appartment,4452444,Jūrate,Brooklyn,Williamsburg,40.71916,-73.94215,Private room,70,1,14,2019-06-30,0.60,1,0 +19730080,Private bedroom in Sunny Bushwick Apartment,139093829,Valentina,Brooklyn,Bushwick,40.6874,-73.91455,Private room,40,3,17,2018-08-27,0.71,1,0 +19730428,Comfortable Room in Bushwick,139096564,Jessica,Brooklyn,Bushwick,40.69273,-73.9055,Private room,45,1,1,2017-07-17,0.04,1,0 +19730968,Furnished private large room at a great location,138717905,Luca,Manhattan,East Harlem,40.79626,-73.94429,Private room,67,2,28,2019-07-03,1.22,1,179 +19731225,Entire 2 bedroom floor in owner occup Brownstone,71097702,Paula,Brooklyn,Park Slope,40.6815,-73.98028,Entire home/apt,290,30,48,2019-04-09,2.07,2,299 +19731249,Stunning Spacious Artist Loft,138938451,Andrea,Brooklyn,Williamsburg,40.70635,-73.93588,Entire home/apt,150,3,6,2017-09-23,0.25,1,0 +19731551,CHARMING QUIET STUDIO RIGHT OFF CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.78469,-73.97197,Entire home/apt,159,30,2,2019-01-29,0.18,16,358 +19732045,Big apartment in Bushwick... art--nightlife--food!,21772781,Edward,Brooklyn,Bushwick,40.70268,-73.91582,Entire home/apt,77,3,4,2019-04-24,0.18,1,0 +19734117,"UES: Bdrm Sunny Corner Apt, 3 flights of stairs up",139135366,Eileen,Manhattan,Upper East Side,40.76864,-73.95427,Entire home/apt,175,2,20,2019-06-15,0.88,1,0 +19734492,Beautiful Modern Brooklyn Gem,137184002,Kevin,Brooklyn,East Flatbush,40.6543,-73.91488,Entire home/apt,85,1,183,2019-07-08,7.65,1,120 +19735722,Loft-like turn of the century apartment for shoots,31515758,Townsend,Manhattan,Washington Heights,40.83405,-73.94565,Entire home/apt,1000,1,1,2018-03-18,0.06,1,79 +19736798,"Large Private Room +Sleeps 4 Guests +Full Amenities",139165159,Deonisis,Manhattan,Inwood,40.8662,-73.92646,Private room,60,1,128,2019-07-05,6.03,1,67 +19737173,"NYC Room Sublet, Private Space, Air conditioner",139170973,Wonkyung,Manhattan,Harlem,40.81949,-73.95521,Private room,45,7,0,,,1,0 +19737908,Cozy Zen-like Jungle in Bushwick,67271745,Anna,Brooklyn,Bushwick,40.69393,-73.90898,Private room,55,1,1,2017-07-30,0.04,1,0 +19737981,SPOTLESS bedroom separate entrance paid parking.,120767920,Jimmy &Cindy,Queens,Flushing,40.75786,-73.8123,Private room,48,2,54,2019-07-01,2.28,10,360 +19738203,"1 Bedroom Apartment +Crown Heights, Brooklyn",34039463,Sini,Brooklyn,Crown Heights,40.67081,-73.92765,Private room,100,1,0,,,1,0 +19738695,Two Bedroom Apt in Midtown East,24559181,Aldi,Manhattan,Upper East Side,40.76302,-73.96725,Entire home/apt,200,1,15,2019-06-21,0.69,3,351 +19743260,Private room in Harlem with A/C,44220091,Thomas,Manhattan,Harlem,40.8076,-73.94252,Private room,56,1,10,2017-08-23,0.42,1,0 +19743272,Cozy Inn,138628430,Tyeesha,Bronx,Morris Heights,40.85167,-73.92144,Private room,50,1,0,,,1,363 +19743334,Gem in South Williamsburg,3363377,Eryka,Brooklyn,Williamsburg,40.70997,-73.94902,Private room,114,2,43,2019-06-11,1.82,2,114 +19743941,Spacious Prospect Park Loft Apartment,6042053,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.96084,Entire home/apt,200,3,32,2019-06-28,1.37,1,317 +19744093,Beautiful modern Brooklyn apartment with balcony!,2239235,Jess,Brooklyn,Crown Heights,40.67637,-73.95755,Entire home/apt,125,3,1,2017-07-16,0.04,1,0 +19744503,Private and Comfortable bedroom,138003310,Marta,Queens,Richmond Hill,40.70008,-73.83344,Private room,60,7,53,2019-06-28,2.24,1,335 +19744691,Townhouse with private bathroom and lush backyard,8162588,Kristen,Brooklyn,Crown Heights,40.67226,-73.92477,Private room,40,2,10,2018-10-19,0.41,1,22 +19745541,One Bedroom LOFT 2 blocks from Bedford ave L,15476792,Gosia,Brooklyn,Williamsburg,40.7179,-73.96047,Entire home/apt,105,1,24,2017-12-31,1.01,1,0 +19745952,"Cozy, charming uptown apartment!",31727657,Kristen,Manhattan,Washington Heights,40.84482,-73.93739,Private room,70,4,1,2017-07-31,0.04,1,0 +19747278,Large bayfront Apt in Rockaway Beach,106125,Alexa,Queens,Rockaway Beach,40.59106,-73.8113,Entire home/apt,108,4,20,2019-07-01,0.85,1,329 +19747940,1 Bedroom in Beautiful Prospect Heights Apt.,5018185,Caroline,Brooklyn,Prospect Heights,40.67797,-73.96783,Private room,60,2,1,2017-07-30,0.04,1,0 +19748676,Shu's home,138579344,Lester And Shirell,Brooklyn,Clinton Hill,40.68895,-73.96259,Entire home/apt,130,2,49,2019-06-21,2.30,1,211 +19749132,Small cozy furnished bedroom in Sunnyside Queens,68321431,Victor-Andres,Queens,Sunnyside,40.7362,-73.91783,Private room,30,2,6,2018-06-23,0.42,1,0 +19749379,Great Luxury Condo Studio Apt,39469408,Ron And Khine,Queens,Rego Park,40.73268,-73.85952,Entire home/apt,135,3,5,2017-09-04,0.21,1,0 +19749398,Pent house for rent in Astoria 5 min to LGA,95570854,Fatema,Manhattan,Civic Center,40.71359,-74.00538,Private room,300,1,0,,,2,179 +19750905,Live like a local in the heart of Manhattan,37688229,Roxana,Manhattan,Midtown,40.75568,-73.96798,Entire home/apt,79,6,8,2019-06-21,0.35,1,15 +19751205,"Gorgeous Sun-fulled Studio, Perfect Location!!!",55148803,Bianca And Jordan,Brooklyn,Williamsburg,40.71581,-73.95423,Entire home/apt,146,2,40,2019-06-23,1.66,1,200 +19751573,New + modern E Williamsburg apt *right* off subway,33243428,Parsa,Brooklyn,Williamsburg,40.71365,-73.93889,Private room,57,3,1,2017-08-01,0.04,1,0 +19757502,Historic Modernism in Harlem's Sugar Hill,97682736,Michael,Manhattan,Harlem,40.82559,-73.94501,Entire home/apt,250,7,1,2018-12-28,0.16,1,0 +19757672,Quiet Studio in Midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74965,-73.97566,Entire home/apt,150,30,1,2018-04-10,0.07,50,320 +19758402,CITY ISLAND VACATION HOME NEAR THE BEACH,139415761,Deb,Bronx,City Island,40.85306,-73.78948,Entire home/apt,85,2,42,2019-07-06,1.76,1,168 +19759718,Cozy 1bedroom in Greenwich Village/Soho,7338347,Janelle,Manhattan,Greenwich Village,40.7289,-74.00059,Private room,70,7,0,,,1,0 +19760008,Your Home by the Park,44358777,Peter A.,Manhattan,Upper West Side,40.79874,-73.9599,Private room,67,2,5,2017-09-07,0.21,1,0 +19760163,Bronx Room for Rent,6843497,J.F.,Bronx,Morris Park,40.84932,-73.85883,Private room,35,3,4,2019-04-06,0.17,1,76 +19760412,Cozy Home in Brooklyn Heights,12326863,Catherine,Brooklyn,Brooklyn Heights,40.69144,-73.99637,Entire home/apt,160,30,0,,,1,31 +19762625,Private Room with Garden In Lovely Apt in Soho,2269285,Michka,Manhattan,Nolita,40.72208,-73.99365,Private room,100,2,6,2017-10-30,0.25,1,0 +19763012,Cozy Catch,139467641,Bartek,Brooklyn,Bedford-Stuyvesant,40.68309,-73.92298,Private room,47,3,8,2017-12-30,0.33,1,0 +19763298,Large-sunny-private room & bathroom in UES hi rise,12825778,Laura,Manhattan,Upper East Side,40.78273,-73.95048,Private room,46,3,23,2019-07-06,0.96,1,12 +19763459,Great location-Close to metro in cool neighborhood,81160897,Roberto,Brooklyn,Bushwick,40.70152,-73.91148,Private room,50,1,16,2019-04-21,0.66,1,343 +19763657,East Williamsburg Sanctuary at Morgan L train,19612095,Ellie,Brooklyn,Williamsburg,40.70496,-73.93122,Private room,65,2,20,2019-05-07,0.83,2,179 +19764243,Modern Studio in Classic Upper East Side,56728868,Nathan,Manhattan,Upper East Side,40.77286,-73.94789,Entire home/apt,115,14,0,,,1,0 +19764868,"UWS Townhouse 1BR Modern, Bright 3A",106837455,Lisa,Manhattan,Upper West Side,40.78443,-73.98256,Entire home/apt,135,90,0,,,8,125 +19765340,Beautiful Bedroom NEAR SUBWAYS 25 min to Manhattan,139490165,Melvin & Maya,Brooklyn,Bushwick,40.68469,-73.90794,Private room,110,2,9,2018-06-03,0.41,3,0 +19766312,Room in conveniently located charming apartment,3118776,Akiko,Queens,Long Island City,40.76363,-73.93033,Private room,48,5,52,2019-06-24,2.17,1,8 +19766387,a room in Clinton Hill,139503928,Noel,Brooklyn,Clinton Hill,40.68231,-73.96658,Private room,45,7,1,2017-08-15,0.04,1,0 +19766555,1.5 Bed Condo in heart of Williamsburg,20163996,Russ,Brooklyn,Williamsburg,40.71441,-73.94527,Entire home/apt,140,3,4,2018-10-09,0.20,1,0 +19766791,Beautiful Private Room,38815234,Viviana,Manhattan,Harlem,40.82747,-73.94224,Private room,45,3,42,2019-06-03,1.78,2,252 +19767346,Cozy Gem in Huge Prewar Midtown Apartment,37092956,Edward,Manhattan,Midtown,40.76358,-73.98015,Private room,72,6,0,,,1,0 +19767372,One Bedroom in the middle of Astoria,139511753,Brittani,Queens,Astoria,40.76531,-73.91155,Entire home/apt,137,2,3,2017-10-27,0.12,1,0 +19767452,Beautiful Apartment with Garden In Brooklyn,28307663,Matan,Brooklyn,Greenpoint,40.73599,-73.95604,Entire home/apt,170,2,12,2019-06-24,0.53,1,3 +19767688,Bedroom with Patio in Prime Williamsburg Location!,3900279,Adriel,Brooklyn,Williamsburg,40.72054,-73.95919,Private room,100,3,0,,,2,0 +19767924,"Charming 1 bedroom, Great Location LES/Chinatown",139127299,Switch,Manhattan,Chinatown,40.71609,-73.99204,Entire home/apt,198,10,4,2018-11-05,0.19,1,0 +19768107,Lower East Dream Room!,16414560,Kat,Manhattan,East Village,40.72467,-73.98922,Private room,100,2,1,2019-05-21,0.61,1,0 +19768219,Couch in Studio Apartment in Astoria,9039995,Jamie,Queens,Long Island City,40.76199,-73.92684,Shared room,33,1,11,2017-10-22,0.46,1,0 +19768417,Private Room-Upper East Side,40139382,Josh,Manhattan,Upper East Side,40.77275,-73.94917,Private room,70,4,1,2018-01-20,0.06,1,0 +19768754,"#1 Spacious Cozy Room, 30 minutes from Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68749,-73.87261,Private room,42,30,42,2019-07-01,1.81,6,114 +19768762,Two bedrooms with free parking,115355054,Alice,Queens,Flushing,40.75183,-73.80665,Entire home/apt,139,2,36,2019-06-24,1.74,1,101 +19768829,"Cozy 1 bedroom apt, Quiet, Near metro, East side",3792860,Elena,Manhattan,Upper East Side,40.77052,-73.95485,Entire home/apt,150,1,0,,,2,0 +19769057,Bright 1 Bed Apartment in Fort Greene,3019399,Andreas,Brooklyn,Fort Greene,40.68633,-73.97164,Entire home/apt,180,2,15,2019-07-01,0.64,1,4 +19769328,Private spacious bedroom near JFK Airport,35751147,Agraj,Queens,Richmond Hill,40.69452,-73.82742,Private room,60,1,26,2019-05-05,1.09,1,0 +19769403,AMAZING 2 bedroom in the heart of Chelsea!,10307134,Anna,Manhattan,Chelsea,40.74204,-73.99899,Entire home/apt,275,3,20,2019-07-01,0.86,2,106 +19769680,Huge 1 bedroom apartment on Broadway!,15468652,Igor,Manhattan,Washington Heights,40.83499,-73.94528,Private room,59,6,1,2017-08-04,0.04,1,0 +19769912,"Modern, Stylish & Spacious Brooklyn Oasis",54508926,Roshumba,Brooklyn,Canarsie,40.63837,-73.91149,Entire home/apt,167,2,102,2019-07-08,4.27,1,294 +19779217,Cozy and private room in the East Village,27895393,Daniel,Manhattan,East Village,40.72295,-73.98487,Private room,95,3,23,2019-05-27,1.05,1,229 +19779749,Private Room in Sunny South Harlem Apt,1877402,Anna,Manhattan,Harlem,40.8114,-73.95237,Private room,50,1,15,2018-06-07,0.62,2,0 +19780093,Convenient / Spacious 1BR in Union Square,6376364,Jing,Manhattan,East Village,40.73213,-73.98944,Entire home/apt,200,2,11,2017-10-10,0.47,1,0 +19780958,"Sweet Cobble Hill ""tree house""",3757515,Emily,Brooklyn,Cobble Hill,40.68744,-73.99229,Entire home/apt,125,7,0,,,1,0 +19784119,Harlem Haven,9427915,Ntifafa Akoko,Manhattan,Harlem,40.82105,-73.94588,Entire home/apt,100,2,27,2019-06-09,1.15,1,1 +19785259,Lower East Side - Bare Bones,53821069,Daniel,Manhattan,Lower East Side,40.72276,-73.9886,Entire home/apt,94,1,8,2017-07-28,0.33,1,0 +19785676,Cozy private room in Brooklyn,23055253,Marie,Brooklyn,Bushwick,40.69924,-73.93052,Private room,70,4,0,,,2,0 +19785737,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70445,-73.81399,Private room,135,1,1,2017-10-08,0.05,18,180 +19786240,Venice Beach Meets Brooklyn Stunning Townhouse,20063690,Naheima,Brooklyn,Bedford-Stuyvesant,40.68827,-73.94943,Entire home/apt,550,3,4,2018-09-03,0.22,2,97 +19786465,private room in the Bronx,84941679,Junior,Bronx,Clason Point,40.81699,-73.86741,Private room,80,1,2,2018-10-02,0.09,1,88 +19786549,Dungeon heaven. SOHO loft-feel in Bklyn.❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68141,-73.93301,Entire home/apt,68,14,10,2019-04-30,0.43,5,286 +19786572,"Spacious, private master bed/bath in Bushwick!",20459165,Amie,Queens,Ridgewood,40.70689,-73.91527,Private room,63,4,6,2017-09-20,0.26,1,0 +19786757,2 Bedrooms PRIVATE BATHROOM AND KITCHEN,131684478,Mervin (Michael),Staten Island,West Brighton,40.63291,-74.11777,Private room,83,2,5,2018-08-29,0.24,3,188 +19786915,Spacious Clean Studio Apartment,86892032,Marian,Queens,Rosedale,40.65766,-73.72838,Entire home/apt,60,1,57,2019-07-08,2.41,1,336 +19787245,CHIC & BRIGHT APT ON UES CLOSE TO CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.76937,-73.95745,Entire home/apt,155,30,8,2019-04-24,0.37,16,333 +19787716,Specious charming 2 bed room in Williamsburg,1804766,Omer,Brooklyn,Williamsburg,40.71271,-73.95894,Entire home/apt,108,7,0,,,1,0 +19787770,"Pleasant Room in Lovely Home, quick ride to NYC",63913582,Karen,Brooklyn,Sunset Park,40.6542,-74.00159,Private room,75,3,7,2018-04-20,0.29,2,0 +19788051,A Brooklyn Muse,34296062,Heather,Brooklyn,Prospect-Lefferts Gardens,40.66134,-73.9476,Entire home/apt,250,2,0,,,1,0 +19788577,Bushwick Landing Pad,36952002,Debra,Brooklyn,Bushwick,40.68787,-73.91305,Private room,35,2,14,2019-06-27,0.66,1,16 +19788957,Private room in Bedford / Williamsburg,104892816,Stanislas,Brooklyn,Williamsburg,40.71248,-73.95815,Private room,70,3,1,2017-08-07,0.04,1,0 +19789302,Loft Like 1 Bedroom in Dumbo Brooklyn,12518089,Dan,Brooklyn,DUMBO,40.70286,-73.98911,Entire home/apt,195,2,3,2017-12-29,0.13,1,0 +19789620,Kozy Kingsbridge,139013186,Iris,Bronx,Kingsbridge,40.87896,-73.90674,Private room,75,2,40,2019-05-19,1.74,1,246 +19789878,One Bedroom Apartment + Private Terrace,97856969,Evgenia,Brooklyn,Boerum Hill,40.68909,-73.99083,Entire home/apt,98,13,1,2017-08-29,0.04,1,0 +19790011,1 bedroom presidential wyndham NYC,57571805,Gharet,Manhattan,Midtown,40.75315,-73.97175,Entire home/apt,100,2,1,2017-11-25,0.05,3,0 +19790151,Only 30 Minutes Away From Manhattan,106430338,Alana,Brooklyn,Bensonhurst,40.612,-73.99573,Private room,57,3,3,2018-10-30,0.27,2,83 +19790344,Spacious 1BR on the border of West Village/Chelsea,24861274,Madison,Manhattan,Chelsea,40.73881,-73.99741,Entire home/apt,200,2,24,2019-07-01,1.14,1,20 +19791460,2nd Street Sanctuary,21016975,Stephen,Manhattan,East Village,40.72345,-73.98407,Shared room,350,1,5,2019-01-11,0.26,1,0 +19791924,Spacious studio with private garden near The Met,112954746,Miranda,Manhattan,Upper East Side,40.77428,-73.95523,Entire home/apt,145,2,3,2017-07-30,0.12,1,0 +19798405,The Astoria House: private 1B apt in NYC,446095,Chris And Nina,Queens,Ditmars Steinway,40.77148,-73.9138,Entire home/apt,170,2,56,2019-06-30,2.91,1,305 +19799021,Convenient 3 Bedroom w/ Large Terrace in Flushing,5962328,Alan,Queens,Flushing,40.7602,-73.82324,Entire home/apt,180,30,2,2019-06-09,0.12,15,320 +19799489,Cozy Retreat on Atlantic Ave,139838320,Bismillah,Brooklyn,Bedford-Stuyvesant,40.67964,-73.94987,Entire home/apt,200,2,36,2019-05-27,1.54,2,124 +19800250,Brooklyn State of Mind - The Artist Loft,2141311,Thomas,Brooklyn,Williamsburg,40.71961,-73.94266,Entire home/apt,400,3,0,,,2,0 +19801076,The North House:Large NYC home 15 Min to Manhattan,5483699,Jeff,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94224,Entire home/apt,789,2,51,2019-06-24,2.12,1,175 +19801154,Cozy private room in Williamsburg,83671631,Esperanza,Brooklyn,Williamsburg,40.71262,-73.94156,Private room,60,2,1,2019-05-27,0.70,1,248 +19801310,Bedroom with Manhattan view (females only),139638096,Xinyan,Manhattan,Roosevelt Island,40.76412,-73.948,Private room,60,1,0,,,1,0 +19801466,Luxury Home away from home in NYC!,87612379,Marta,Queens,Middle Village,40.72267,-73.86997,Entire home/apt,140,3,35,2019-06-29,1.56,1,190 +19802994,Entire Loft with Private Bath in Queens,28270349,Jie,Queens,Flushing,40.76589,-73.79449,Entire home/apt,89,1,105,2019-07-07,4.38,2,0 +19803017,Incredible East Village Apartment on St Marks!,28881583,Laila,Manhattan,East Village,40.72759,-73.98466,Entire home/apt,150,2,28,2019-05-30,1.17,1,9 +19803042,"Landmark 2bdrm Apt, Near Subway 20min to Manhattan",23212298,Seda,Brooklyn,Crown Heights,40.6758,-73.9401,Entire home/apt,127,4,56,2019-06-22,2.48,1,286 +19803208,Spacious & Spectacular,9020323,Andrea,Brooklyn,Bedford-Stuyvesant,40.67921,-73.94283,Private room,110,3,20,2019-07-05,0.89,1,173 +19803462,Beauty of New York!,139871790,Reisha,Manhattan,Upper East Side,40.76301,-73.95719,Entire home/apt,123,3,26,2019-05-29,1.08,1,0 +19803515,Little Italian Manor,139871943,Patrick,Manhattan,Nolita,40.72044,-73.99646,Private room,81,30,59,2019-06-15,2.47,3,111 +19805513,"Private, Sunny, lofted bedroom in Bushwick, BK",15615036,Ronnie,Brooklyn,Bushwick,40.69017,-73.916,Private room,44,1,7,2017-07-25,0.29,2,0 +19805716,Large bedroom in spacious prime Williamsburg apt,3900279,Adriel,Brooklyn,Williamsburg,40.7198,-73.96108,Private room,105,3,0,,,2,0 +19806088,Beautiful home in Crown Heights,35741929,Assol,Brooklyn,Crown Heights,40.6715,-73.94427,Entire home/apt,100,2,16,2018-08-20,0.68,2,0 +19806105,"Beautiful, Private 3BR Apt EAST VILLAGE",69891628,Daniel,Manhattan,East Village,40.72838,-73.97943,Entire home/apt,305,2,29,2019-07-01,1.29,1,58 +19806972,"Sunny room, artistic modern building near subway",114523254,Larissa,Manhattan,East Harlem,40.7875,-73.94675,Private room,85,1,8,2017-10-16,0.34,1,0 +19808259,Newly renovated heart of Williamsburg great views,117530860,Adam,Brooklyn,Williamsburg,40.72019,-73.95581,Private room,65,7,1,2017-08-14,0.04,1,0 +19808493,Lovely and cozy apartment in Williamsburg,105139019,Giulia,Brooklyn,Williamsburg,40.70948,-73.94814,Private room,90,3,3,2017-08-17,0.12,1,0 +19808508,Pretty bedroom for rent in Queens NYC - August,103217662,Mathilde,Queens,Ridgewood,40.70772,-73.90959,Private room,50,7,1,2017-11-19,0.05,1,0 +19808524,Cozy one bedroom apt in artsy Brooklyn Brownstone,781674,Stephen,Brooklyn,Fort Greene,40.68816,-73.97579,Entire home/apt,100,14,5,2018-07-09,0.21,1,0 +19809175,Spacious one bedroom in heart of east village,134185971,Simone,Manhattan,East Village,40.72759,-73.98496,Entire home/apt,176,2,3,2018-01-01,0.13,1,0 +19809264,Big Sunny 1BR near the subway - 20 mins to NYC!,18197578,Caitlin,Brooklyn,Crown Heights,40.66756,-73.95812,Entire home/apt,100,3,12,2018-11-25,0.50,1,4 +19811020,Upper East Side Space and Access!!,30245313,Jewel,Manhattan,Upper East Side,40.76775,-73.95371,Private room,187,1,6,2017-12-12,0.26,1,0 +19811114,Beautiful newly renovated home-Long stays welcome!,16705993,Richard,Queens,Woodhaven,40.68958,-73.85294,Private room,70,2,7,2017-10-16,0.30,1,65 +19811196,Private Room Spacious Apartment UES/Spanish Harlem,122038325,Watson,Manhattan,East Harlem,40.78809,-73.94194,Private room,76,2,79,2019-05-08,3.33,1,11 +19811442,"Spacious, sunny studio apt in East Village, NYC",877697,Lisa,Manhattan,Gramercy,40.73232,-73.98418,Entire home/apt,175,2,0,,,1,0 +19811581,2A. Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80668,-73.93828,Private room,43,1,86,2019-05-11,3.55,10,161 +19811816,"Modern townhouse in Clinton Hill, Brooklyn",28363708,Gregory,Brooklyn,Fort Greene,40.69604,-73.9708,Entire home/apt,350,7,0,,,1,145 +19812026,"Lovely, Cozy Room in Inwood",38098992,Julia,Manhattan,Inwood,40.86437,-73.92347,Private room,65,2,2,2018-07-01,0.10,2,76 +19812097,"Two B/Rm (2-3 guests) Near Beach, A/air train, JFK",139957134,Trudy,Queens,Arverne,40.5991,-73.79944,Private room,50,1,28,2019-06-22,1.23,3,251 +19814107,"COMFY “Twin bed"" NEXT-LGA AIRPORT/Pre Book-US OPEN",32446721,Veronica,Queens,Corona,40.74825,-73.86396,Shared room,37,1,18,2019-07-03,0.75,6,365 +19814560,"Beautiful Double Room in the heart of Astoria, NY",139985282,David,Queens,Astoria,40.76469,-73.91094,Private room,48,1,3,2017-08-13,0.13,1,0 +19815527,Nolita Home,11654079,Deniz,Manhattan,Nolita,40.72361,-73.99467,Entire home/apt,300,7,14,2019-04-19,0.67,1,9 +19818393,Large one separate bedroom,90315649,Mike,Manhattan,East Harlem,40.79241,-73.94058,Entire home/apt,135,4,3,2018-06-19,0.12,1,0 +19818960,Harlem Haven Cozy Private Bed & Bath,1693845,Roni,Manhattan,Harlem,40.81553,-73.94672,Private room,135,2,33,2019-06-02,1.40,1,75 +19819750,Smart Manhattan Flat (upper east side),5353151,Justin,Manhattan,Upper East Side,40.78207,-73.94717,Private room,72,3,21,2019-07-04,0.90,1,61 +19820146,Light filled apartment in Sunset Park,3171141,Stav,Brooklyn,Sunset Park,40.64203,-74.01383,Entire home/apt,90,30,0,,,1,53 +19820148,Amazing rooftop for unforgettable stay in New York,31284229,Eddie,Manhattan,East Harlem,40.79652,-73.93323,Private room,120,1,1,2017-07-19,0.04,1,0 +19821160,Chelsea Condo near High line,36043601,Bicheng,Manhattan,Chelsea,40.74927,-74.00691,Entire home/apt,200,2,0,,,1,0 +19821206,COZY STUDIO APT IN HEART OF CHELSEA,139949166,Jiwon,Manhattan,Chelsea,40.75044,-73.99665,Entire home/apt,128,1,4,2018-03-20,0.17,1,0 +19821768,Renovated and Spacious Upper West Side Apt,5869629,Zack,Manhattan,Upper West Side,40.79973,-73.96152,Entire home/apt,300,2,0,,,1,0 +19822902,"Sunny, modern Clinton Hill Apartment",1451743,David,Brooklyn,Bedford-Stuyvesant,40.68562,-73.95624,Entire home/apt,100,5,2,2017-08-24,0.09,1,0 +19822964,UPPER WEST SIDE | 1 BEDROOM | Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77395,-73.98786,Entire home/apt,190,30,8,2019-06-03,0.36,25,330 +19823445,Beautiful and Modern Brooklyn Apartment,20063690,Naheima,Brooklyn,Bedford-Stuyvesant,40.68695,-73.94858,Entire home/apt,150,2,69,2019-06-30,2.90,2,328 +19823771,Spacious and clean bedroom in Washington Heights,55608979,Marie,Manhattan,Washington Heights,40.8352,-73.94045,Private room,50,1,3,2017-08-23,0.13,1,0 +19823964,Fm,26800649,Christopher,Bronx,Belmont,40.85961,-73.89031,Shared room,110,1,0,,,1,0 +19824236,Lovely Apartment 1bd Clean & Quiet. You'll love it,8154922,Ivan,Brooklyn,Bay Ridge,40.63347,-74.02739,Entire home/apt,60,30,0,,,1,0 +19825152,"Luxurious, Beautiful, Spacious 2BR in Williamsburg",140083988,Chris,Brooklyn,Williamsburg,40.7111,-73.9487,Entire home/apt,175,2,102,2019-06-21,4.23,1,152 +19825552,Great 1 Bedroom duplex apt in Kips-Bay/MurrayHill,2761278,Yuval,Manhattan,Kips Bay,40.74073,-73.9791,Entire home/apt,229,5,1,2018-01-03,0.05,1,0 +19825578,"Beautiful Cozy,clean NYC nest at amazing location.",21938310,Jane,Manhattan,East Village,40.72818,-73.98925,Private room,95,2,1,2017-07-24,0.04,1,54 +19827594,Great private room in the heart of Williamsburg,55389878,Justin,Brooklyn,Williamsburg,40.7188,-73.95846,Private room,84,1,1,2017-07-31,0.04,1,0 +19827778,Mi Casa su Casa!,71749435,Paul,Manhattan,Washington Heights,40.84102,-73.93822,Entire home/apt,80,3,37,2019-06-30,1.55,1,28 +19828183,❤️Private Suite w Balcony ❤️25 Mins to NYC,8266069,Linda And Liz,Queens,Elmhurst,40.73704,-73.87877,Private room,120,2,110,2019-06-30,4.75,1,222 +19828845,Chic & Sleek Mid-Century Styled Apt,48881330,Nina,Brooklyn,Crown Heights,40.66589,-73.95103,Entire home/apt,100,3,6,2019-01-20,0.25,1,250 +19829390,Charming apartment + private patio in Times Square,140128474,Chris,Manhattan,Theater District,40.7583,-73.98295,Entire home/apt,210,3,138,2019-07-01,5.73,1,234 +19829879,Spacious Loft with Designer Layout,2887664,Brock,Brooklyn,Williamsburg,40.7124,-73.96342,Entire home/apt,260,2,15,2019-05-23,0.68,1,88 +19829900,Modern Front Apartment in Brooklyn!,123634626,Livia,Brooklyn,Bensonhurst,40.61889,-73.99895,Entire home/apt,99,3,28,2019-07-04,1.92,1,325 +19830008,Charming Private Room in the heart of East Village,139942077,Sahar,Manhattan,East Village,40.72304,-73.98089,Private room,125,1,80,2019-06-28,3.35,1,340 +19830169,Brooklyn Bedroom with Rooftop and Garden,922462,Stacia,Brooklyn,Crown Heights,40.6732,-73.9553,Private room,65,2,0,,,1,98 +19830557,Modern room in renovated Williamsburg apartment,28819052,Taylor,Brooklyn,Williamsburg,40.71379,-73.94207,Private room,80,2,95,2019-06-22,4.09,1,51 +19830726,"Cozy Room in Beautiful Harlem Apartment, NYC!",140146581,Natalie And Vince,Manhattan,Harlem,40.82169,-73.94077,Private room,69,1,14,2018-09-13,0.72,1,0 +19830759,Beautiful Large Bedroom in Brooklyn!,2891898,Jennifer,Brooklyn,Borough Park,40.64712,-73.99646,Private room,48,5,2,2019-05-03,0.19,1,214 +19831736,Spacious Sunny Living Room in Prime Brooklyn,23027289,Eileen,Brooklyn,Clinton Hill,40.68386,-73.9627,Private room,40,1,2,2017-08-29,0.09,1,0 +19836734,Sunlit giant apt in the privileged Upper East,4380358,C Lum,Manhattan,Upper East Side,40.78072,-73.94726,Private room,135,4,5,2019-05-31,0.22,1,95 +19837851,Bright 3-bedroom apartment in beautiful Brooklyn,140220933,Yolanda,Brooklyn,East Flatbush,40.65614,-73.91754,Entire home/apt,103,3,35,2019-04-21,1.52,1,291 +19838917,ABSOLUTE PRIVACY - 10 Mins to JFK 20 Mins to LGA!,135337934,Steve,Queens,Queens Village,40.70969,-73.73133,Entire home/apt,110,2,20,2019-06-19,0.84,2,27 +19840329,Spacious Private Space In Upper Manhattan,2351055,Leeron,Manhattan,Harlem,40.82931,-73.94801,Private room,50,4,3,2018-10-20,0.31,1,0 +19841463,East Williamsburg Hideaway House,19612095,Ellie,Brooklyn,Williamsburg,40.70699,-73.93221,Private room,45,2,0,,,2,274 +19841625,Cozy Studio Upper East Side,30868859,Moheb,Manhattan,Upper East Side,40.77625,-73.95208,Entire home/apt,125,5,36,2019-05-02,1.56,1,0 +19841837,Elegant Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.75832,-73.99179,Private room,129,1,108,2019-06-29,4.49,3,116 +19842557,Exclusive Modern Private Room in Hells Kitchen,105049617,Gio,Manhattan,Hell's Kitchen,40.76015,-73.99017,Private room,129,1,111,2019-07-07,4.61,3,111 +19843040,Trendy Private Room in Midtown West,105049617,Gio,Manhattan,Hell's Kitchen,40.76002,-73.98958,Private room,129,1,97,2019-06-22,4.03,3,132 +19843398,UPPER WEST SIDE - WEST END AVENUE AND 65TH ST,131647128,Emily,Manhattan,Upper West Side,40.77418,-73.98799,Entire home/apt,190,30,9,2019-02-19,0.43,25,334 +19843731,Modern Comfort Room w/ Patio 7 mins to Manhattan,137832487,Mariame,Bronx,Longwood,40.82164,-73.90163,Private room,65,3,2,2018-02-28,0.11,1,0 +19844263,"Central location in Midtown, doorman building",94206273,Brendan,Manhattan,Midtown,40.75527,-73.9657,Private room,99,1,112,2018-06-24,4.66,1,0 +19845074,Cozy private room in Hamilton Heights in Manhattan,2409072,Erykah,Manhattan,Harlem,40.82649,-73.94623,Private room,60,2,15,2019-05-31,0.66,1,95 +19845373,Lovely 1 bedroom apartment with large balcony.,140293912,Awilda,Brooklyn,Kensington,40.64584,-73.97711,Entire home/apt,89,3,57,2019-01-14,2.38,3,0 +19845637,Cosy bedroom complete with fort,10966079,Ward,Brooklyn,Williamsburg,40.70898,-73.96121,Private room,75,3,54,2019-06-30,2.24,2,96 +19847065,"Gorgeous UWS apt, close to culture and nature!",3263559,Rachel,Manhattan,Upper West Side,40.77509,-73.98159,Entire home/apt,187,3,7,2019-02-08,0.33,1,5 +19847087,Cool Astoria Apartment minutes from Manhattan,114596544,Martin,Queens,Astoria,40.76791,-73.92247,Entire home/apt,95,3,19,2018-01-08,0.79,1,0 +19847655,Peaceful space,140323391,Adi,Brooklyn,Bushwick,40.70255,-73.92103,Private room,45,3,0,,,1,0 +19847790,Spacious 3 BDR APT Brooklyn Sleeps 12!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64377,-73.95085,Entire home/apt,160,3,53,2019-07-01,2.24,2,294 +19847831,Huge 1 BR Manhattan Apt-5 mins to express Q train,140323631,Neha,Manhattan,Upper East Side,40.77927,-73.94918,Entire home/apt,140,7,3,2018-07-07,0.13,1,0 +19848191,Crown Heights 2 Bedroom Apt.,88001494,Mendy,Brooklyn,Crown Heights,40.66611,-73.93708,Private room,90,2,38,2019-06-27,1.59,3,45 +19848373,The City Farmhouse APT A **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75829,-73.91298,Entire home/apt,200,7,10,2017-12-17,0.45,3,247 +19848536,Cozy room with a bathroom,71540842,Willy,Queens,Ridgewood,40.70801,-73.90928,Private room,48,3,50,2019-06-23,2.09,2,111 +19848951,Lower East Side Getaway,25072764,Thomas,Manhattan,Lower East Side,40.71833,-73.9908,Private room,69,4,2,2017-08-15,0.09,1,0 +19850113,Cozy Bright in Kensington by trains,14898658,Chadanut,Brooklyn,Kensington,40.64242,-73.98138,Private room,45,1,22,2019-05-21,0.96,11,7 +19853102,Fanta Sea Home,131777975,Jewell,Brooklyn,Brownsville,40.66293,-73.91729,Private room,90,4,4,2019-01-01,0.20,3,89 +19853343,1 bedroom in 3 bedroom apartment,18990231,Kwam,Queens,Ridgewood,40.70373,-73.90873,Private room,45,1,3,2017-10-04,0.13,1,0 +19855804,Spacious 1 Bedroom in East Village,79527116,Pamela,Manhattan,East Village,40.72826,-73.98156,Entire home/apt,110,30,41,2018-12-26,1.72,1,244 +19856802,Beautiful sunny room in Central Brooklyn/Bed-Stuy,25789741,Jeanne,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94909,Private room,40,5,0,,,1,0 +19856899,Home away from home,67739226,Vipul,Manhattan,Upper West Side,40.77141,-73.98862,Shared room,50,1,0,,,1,0 +19857263,One bedroom luxury apartment!,26178020,Monica,Queens,Long Island City,40.75265,-73.9405,Entire home/apt,180,30,0,,,1,83 +19857281,Lightfilled room in Clinton Hill Loft,2781214,Jeanie,Brooklyn,Bedford-Stuyvesant,40.69488,-73.9589,Private room,45,12,9,2018-10-31,0.38,1,0 +19857613,"Cozy, Bright, Bohemian Space in the East Village",1132004,Michael,Manhattan,East Village,40.73022,-73.98623,Entire home/apt,125,5,2,2017-08-27,0.08,1,0 +19858046,Perfect Grand Central apartment,140433041,Ariel,Manhattan,Midtown,40.75083,-73.97271,Entire home/apt,325,3,21,2018-12-29,0.89,1,2 +19859156,Spacious room in Williamsburg.,48100358,Ivan,Brooklyn,Williamsburg,40.70803,-73.9591,Private room,55,1,87,2019-06-23,3.72,3,24 +19859179,"Cozy, Quite, Private, Near LGA",39134890,Di,Queens,Elmhurst,40.74083,-73.88523,Private room,39,3,25,2018-07-17,1.22,1,0 +19859697,"spacious and sunny room, with a rooftop",9121644,Dominic,Queens,Ridgewood,40.70334,-73.90647,Private room,85,2,5,2017-09-02,0.21,1,0 +19860469,Ideal Private Room in the Heart of Williamsburg,80701659,Marie,Brooklyn,Williamsburg,40.7139,-73.9486,Private room,80,5,1,2017-08-29,0.04,1,0 +19860903,"Charming Two Bedroom in Brownstone, BedStuy :)",12577986,Bennett,Brooklyn,Bedford-Stuyvesant,40.68614,-73.93594,Entire home/apt,124,1,113,2019-06-23,4.71,1,63 +19861088,Cozy & Quiet Harlem Studio,2462300,Jasmine,Manhattan,Harlem,40.81707,-73.9349,Entire home/apt,120,3,20,2019-01-01,0.94,1,0 +19861483,"Charming, Sunlit 1-Bedroom on Upper East Side",137751858,Kelly,Manhattan,Upper East Side,40.78069,-73.95149,Entire home/apt,120,3,8,2017-09-21,0.34,1,0 +19861834,"Clean, Cute Williamsburg Apt, Steps from train!",17820666,Erin,Brooklyn,Williamsburg,40.70618,-73.9534,Entire home/apt,198,20,4,2018-03-31,0.18,1,0 +19862719,1BR in Luxury Financial District Highrise,61689461,Michael,Manhattan,Financial District,40.70498,-74.01063,Private room,55,3,2,2017-07-27,0.08,1,0 +19862892,Château Sharif - Cozy Washington Heights Studio,140476993,Sharif J.,Manhattan,Washington Heights,40.83286,-73.94135,Entire home/apt,100,7,10,2018-12-26,0.42,1,0 +19862980,Garden duplex in classic brownstone,16752839,Karen,Brooklyn,Carroll Gardens,40.68385,-73.99278,Entire home/apt,225,2,14,2018-11-24,0.65,1,0 +19863170,Large Williamsburg Bedroom,140488110,Grace,Brooklyn,Williamsburg,40.70823,-73.96081,Private room,60,2,0,,,1,0 +19863486,Private room 1 block from train,140492812,Andrew,Brooklyn,Bushwick,40.707,-73.92204,Private room,57,1,2,2017-10-18,0.09,2,0 +19864245,Cozy bedroom in East Williamsburg loft.,140503168,Ariel,Brooklyn,Williamsburg,40.71729,-73.9453,Private room,95,3,1,2017-07-27,0.04,1,67 +19866106,Master Bedroom in Penthouse Duplex Private Terrace,91358346,Eric,Brooklyn,Williamsburg,40.71479,-73.94835,Private room,600,1,0,,,1,0 +19867655,Williamsburg Brooklyn,5244814,Gina,Brooklyn,Williamsburg,40.71949,-73.95827,Entire home/apt,200,3,1,2019-01-02,0.16,1,0 +19867930,"Peaceful Private Attic Bedroom, Living Room & Bath",20433973,Julia,Bronx,City Island,40.83914,-73.78158,Private room,80,1,6,2019-06-30,1.33,2,358 +19871726,"Prime Wburg, spacious and sunny",22549130,Zaid,Brooklyn,Williamsburg,40.7134,-73.944,Entire home/apt,116,3,6,2018-08-26,0.26,1,0 +19872361,Great & convenient location in East Village!,13349759,Isai,Manhattan,East Village,40.72589,-73.97726,Private room,75,3,0,,,1,0 +19872862,Cozy and Charming,140599227,Fanny,Queens,Forest Hills,40.73076,-73.85033,Private room,45,1,43,2018-11-11,1.85,2,0 +19873185,"Large room in a beautiful, easy-commute apartment",24383253,Arash,Brooklyn,Crown Heights,40.67139,-73.95677,Private room,50,8,0,,,1,0 +19874046,"Kew Gardens, New York",55952349,Umberto,Queens,Kew Gardens,40.70847,-73.82961,Entire home/apt,150,6,3,2019-06-15,0.12,1,36 +19874726,Cute 1-bedroom uptown apt,34359486,Katherine,Manhattan,Harlem,40.81379,-73.94671,Entire home/apt,120,2,11,2018-09-09,0.46,1,128 +19875496,Newly renovated studio in heart of Brooklyn,20608771,Michael,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94986,Entire home/apt,99,7,7,2018-01-03,0.30,1,0 +19875728,"LARGE 3 bed on UWS, Steps to Central Park, Subway",4328217,Jill,Manhattan,Upper West Side,40.78762,-73.96827,Entire home/apt,325,7,0,,,1,0 +19876292,Cute & Cosy in West Village,24607072,Luke,Manhattan,West Village,40.73673,-74.00836,Entire home/apt,150,3,3,2017-09-04,0.13,1,0 +19876515,Wingate Manhattan Midtown (#1),139259102,Celeste,Manhattan,Midtown,40.75316,-73.99086,Private room,500,1,0,,,2,0 +19876641,Boho Brooklyn nest,93859477,Mac,Brooklyn,Williamsburg,40.71983,-73.9592,Entire home/apt,210,2,23,2019-03-26,0.96,1,0 +19876727,Bright and spacious room in prime Bushwick!,59045042,Sidney,Brooklyn,Bushwick,40.70204,-73.92592,Private room,55,2,7,2017-10-04,0.29,1,0 +19877223,"Cozy & Cheap BK Nook, Easy Access to Manhattan",47198967,Sean And Kat,Brooklyn,Fort Greene,40.69692,-73.97352,Entire home/apt,108,1,6,2017-10-19,0.26,1,0 +19877695,1 Room in Spacious Harlem Manhattan 3BR Home,25653961,Tatianna,Manhattan,Harlem,40.81566,-73.93914,Private room,50,3,5,2018-12-30,0.22,1,0 +19877706,Big 3 Bedroom Garden Level Apartment Near Subway,2988712,Sasha,Bronx,Claremont Village,40.83507,-73.9104,Entire home/apt,72,90,2,2018-04-23,0.12,7,223 +19878366,"@Ferry,Large Private Rm,Renovated/Stylish,Views...",117492425,Dine,Staten Island,St. George,40.64478,-74.07897,Private room,33,4,63,2019-07-03,2.78,6,197 +19880329,Charming Townhouse duplex in Chelsea,6861839,Eli,Manhattan,Chelsea,40.74637,-74.00263,Entire home/apt,500,3,1,2017-12-29,0.05,1,0 +19884639,"#3 Bright And Cozy Room, 30 minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.6884,-73.87253,Private room,42,30,46,2019-06-29,1.97,6,202 +19885344,"Spacious, Airy, Private Bedroom",19608476,Celia,Manhattan,Washington Heights,40.83495,-73.94406,Private room,87,4,34,2019-06-28,1.41,1,31 +19886609,The Magnificent,137411167,Becky,Bronx,Parkchester,40.84024,-73.85836,Private room,45,1,23,2019-06-01,0.96,1,54 +19887405,Elegant Arty Studio In Brooklyn,83061189,Stephen,Brooklyn,Boerum Hill,40.6859,-73.98959,Entire home/apt,150,1,8,2019-07-04,0.34,1,158 +19887942,Unique 3 bedroom apartment in Bed-Stuy come all,140770094,Edwin,Brooklyn,Bedford-Stuyvesant,40.68286,-73.93379,Entire home/apt,170,3,75,2019-07-02,3.24,1,323 +19888160,Cool Room + Private Bathroom | Hip Location!,128517263,Alina,Brooklyn,Bushwick,40.69876,-73.93687,Private room,75,6,8,2019-01-28,0.34,3,53 +19888622,Beautiful two bedroom apt in Crown Heights/Bedsty,140470401,Peter,Brooklyn,Crown Heights,40.67719,-73.93205,Entire home/apt,200,2,51,2019-06-30,2.15,1,127 +19889348,Upper East Dream Apartment Stunning 1 Bed Room.,69108319,Varun,Manhattan,Upper East Side,40.77108,-73.9485,Entire home/apt,115,2,0,,,1,0 +19889906,Beautiful queens apartment! 10 minutes to NYC,140798168,Olivia,Queens,Astoria,40.76988,-73.9211,Entire home/apt,165,6,0,,,1,0 +19890448,Mundo's World,15096876,Raymundo,Brooklyn,Bushwick,40.6995,-73.92089,Private room,60,3,2,2017-07-31,0.08,1,0 +19890678,Sunny room with a Balcony in Prospect Heights,513517,Tak,Brooklyn,Crown Heights,40.67567,-73.95779,Private room,59,2,1,2018-05-25,0.07,1,0 +19891174,Bright Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6582,-73.98235,Private room,49,1,109,2019-06-29,4.99,7,258 +19891482,Cozy The East Village 1BD,2574881,Emma,Manhattan,East Village,40.72225,-73.98206,Entire home/apt,150,3,6,2018-10-08,0.28,1,0 +19891485,Cozy and Charming Private Room in Lower East Side,10677720,Deniz,Manhattan,Lower East Side,40.7177,-73.98245,Private room,77,5,20,2018-05-13,0.84,1,0 +19891590,"Serene & Cozy 1bed w/backyard, Great Location",325862,Oscar,Brooklyn,Windsor Terrace,40.66023,-73.98259,Entire home/apt,99,2,7,2019-06-23,0.38,1,0 +19891602,Bright mid-century brownstone apt,8199671,Coline,Brooklyn,Bedford-Stuyvesant,40.69262,-73.95014,Entire home/apt,120,2,6,2019-04-19,0.25,1,2 +19891896,Huge space right next to Central Park,125458231,Mohammad,Manhattan,Upper West Side,40.79403,-73.96314,Private room,85,1,0,,,1,363 +19892112,Lovely Park Slope 1BR / 2BA with outdoor space,52535342,Darren,Brooklyn,Park Slope,40.66711,-73.97691,Entire home/apt,175,3,0,,,1,0 +19892264,Brooklyn 1-Bedroom with Skyline Views,87474067,Amanda,Brooklyn,Bedford-Stuyvesant,40.68218,-73.95355,Private room,60,1,16,2018-05-20,0.68,1,0 +19892549,Central Harlem- 15 Min to Times Square,26645843,Camaron,Manhattan,Harlem,40.80781,-73.95134,Entire home/apt,250,5,2,2019-06-25,0.11,1,6 +19892918,Clean and Bright Room with AC! BUSHWICK/RIDGEWOOD,60230747,Joel,Queens,Ridgewood,40.70306,-73.90363,Private room,30,14,2,2017-09-03,0.08,1,0 +19893872,Art Lovers Paradise in Upper Manhattan,140847083,Richard,Manhattan,Washington Heights,40.8445,-73.9404,Private room,99,2,20,2019-05-05,0.89,1,24 +19894567,"#2 Newly Renovated Room , 30 minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68705,-73.87036,Private room,42,30,33,2019-06-03,1.42,6,74 +19894733,"Cozy, Clean, tidy budget room",104470941,Careff,Brooklyn,Crown Heights,40.67305,-73.92958,Private room,90,2,34,2019-07-02,1.43,1,170 +19894740,Cozy and bright room in Morningside Heights,25991504,Claudia,Manhattan,Morningside Heights,40.81254,-73.96025,Private room,48,7,1,2017-08-16,0.04,1,0 +19896613,Cozy & Quiet Private UES Room,73056979,Kesaun,Manhattan,Upper East Side,40.7822,-73.95101,Private room,55,1,7,2018-01-16,0.30,1,0 +19898570,Cosy Studio in Rego Park,140889033,Vasiliki,Queens,Rego Park,40.72318,-73.85621,Entire home/apt,40,14,1,2019-02-24,0.22,1,7 +19902776,Beautiful 2br apt. in heart of historic Harlem,140931908,Daniela,Manhattan,East Harlem,40.81033,-73.93874,Entire home/apt,200,2,9,2019-06-25,0.38,1,27 +19903510,Stay at my Studio! Clean Cozy Studio - FT GREENE,17617027,Steven,Brooklyn,Fort Greene,40.69751,-73.97544,Entire home/apt,100,1,2,2017-07-23,0.08,1,0 +19904670,Cozy private room near cafes and subway,17507326,Kat,Brooklyn,Bedford-Stuyvesant,40.68649,-73.92255,Private room,107,2,1,2019-06-30,1,1,90 +19905170,Sunny Apartment in Brooklyn,34388017,Gabrielle,Brooklyn,Crown Heights,40.67713,-73.94375,Entire home/apt,175,3,0,,,1,0 +19906070,Lovely 1 bedroom Manhattan flat in Spanish Harlem,140964310,Shiv,Manhattan,East Harlem,40.79405,-73.94242,Private room,150,7,0,,,1,0 +19906460,Luxury 2 Beds 1 Bath by lincoln center,131647128,Emily,Manhattan,Upper West Side,40.77396,-73.98782,Entire home/apt,225,30,20,2019-05-16,0.90,25,286 +19906528,Calm and cozy bedstuy room,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.6844,-73.93138,Private room,27,1,68,2019-06-16,2.88,3,112 +19906578,Charming studio in the heart of Williamsburg,132839074,Jill,Brooklyn,Williamsburg,40.71673,-73.94442,Entire home/apt,101,2,7,2019-02-09,0.64,1,0 +19907176,"Upper West side,Lincoln center,Luxury 2Bed 2Bath",131647128,Emily,Manhattan,Upper West Side,40.77578,-73.98923,Entire home/apt,255,30,5,2019-02-27,0.26,25,254 +19907609,"Upper West side, 2 bed 2 Bath",131647128,Emily,Manhattan,Upper West Side,40.77476,-73.98947,Entire home/apt,320,30,8,2019-06-28,0.38,25,261 +19907678,Spacious & Light 2 Bedroom Apartment,57670550,Josie,Brooklyn,Crown Heights,40.66714,-73.93365,Entire home/apt,87,2,2,2018-06-26,0.09,2,0 +19907826,"Fun studio apartment in Washington Heights, NYC",29003640,Cedric,Manhattan,Washington Heights,40.84851,-73.93207,Entire home/apt,60,3,6,2017-09-26,0.25,1,0 +19908088,Luxury Apartment in NYC Financial District,140983856,Nini,Manhattan,Financial District,40.70492,-74.00797,Entire home/apt,199,10,36,2019-06-13,1.52,2,297 +19908261,Coolest Apartment at Great Location!!,137264725,Gulcin,Manhattan,Chinatown,40.71366,-73.99153,Entire home/apt,320,1,2,2018-07-22,0.10,4,249 +19909197,Private Room in Park Slope Loft/Townhouse,52583380,Sebastian,Brooklyn,Park Slope,40.67872,-73.9792,Private room,88,3,8,2017-12-08,0.33,1,0 +19909586,Charming Alcove Studio in heart of West Village,1426080,Jacquelyn,Manhattan,West Village,40.73555,-74.00737,Private room,115,1,3,2017-08-21,0.12,2,0 +19910074,Huge Space in Brooklyn's Most Beautiful Area,11878464,Christine,Brooklyn,Prospect Heights,40.67654,-73.97144,Private room,85,2,11,2018-01-01,0.48,1,0 +19910558,"Plant-filled, sunny Clinton Hill studio",2505262,Jerome,Brooklyn,Clinton Hill,40.68432,-73.96376,Entire home/apt,83,14,0,,,1,0 +19910666,Large Studio in the HEART OF MANHATTAN,141011662,Tim,Manhattan,Hell's Kitchen,40.75856,-73.99057,Entire home/apt,176,3,0,,,1,0 +19910689,"perfect place for tourist, near subway, restaurant",141012246,Ayodeji,Manhattan,Harlem,40.81745,-73.94203,Private room,100,1,6,2017-10-08,0.25,2,0 +19910725,"Cozy Room in Heart of SoHo near NYU, WSP, Subway",23909694,Anh,Manhattan,Greenwich Village,40.72918,-73.99889,Private room,100,2,1,2017-08-12,0.04,2,0 +19910952,RELAX & UNWIND - Classy Unique HOUSE for 9 People,99202586,Thelma,Staten Island,Randall Manor,40.62967,-74.1285,Entire home/apt,135,2,21,2019-05-26,0.88,5,354 +19911620,Long Stay at Central Park West,36565683,Mariano,Manhattan,Upper West Side,40.80013,-73.95998,Entire home/apt,150,6,4,2019-03-23,0.17,1,64 +19911716,Amazing Soho Loft,8258751,Merve,Manhattan,SoHo,40.7252,-73.99805,Entire home/apt,250,5,3,2017-08-16,0.13,1,0 +19911778,Brooklyn Backyard Oasis,140304567,Magnus,Brooklyn,Bay Ridge,40.62992,-74.01753,Entire home/apt,125,7,1,2018-08-07,0.09,1,3 +19911921,Cozy 1 bedroom in the heart of E. Village,15932734,Komail,Manhattan,East Village,40.72688,-73.98546,Entire home/apt,160,3,20,2019-05-18,0.89,1,0 +19912065,"Nice walk-in studio in Sheepshead Bay, Brooklyn",141025502,Aleksandr,Brooklyn,Sheepshead Bay,40.59408,-73.94372,Entire home/apt,95,4,13,2019-06-07,0.68,1,111 +19912256,"Luxury Williamsburg duplex, private roof terrace",1927824,Helen,Brooklyn,Williamsburg,40.71466,-73.94448,Entire home/apt,250,4,7,2019-05-30,0.33,1,118 +19912332,Chic East Village 1 bed apt,19113311,Michael,Manhattan,East Village,40.72592,-73.98862,Entire home/apt,175,2,3,2017-10-17,0.13,1,0 +19912495,Clean Studio in Soho and Little Italy,10457196,Richard,Manhattan,Little Italy,40.71954,-73.99667,Entire home/apt,150,30,6,2019-06-17,0.27,11,65 +19912535,Charming 1br on historic East Village block,19863077,Michael,Manhattan,East Village,40.72574,-73.98498,Entire home/apt,192,1,0,,,1,0 +19912628,Nice and safe,141031544,Susana,Queens,Ditmars Steinway,40.77787,-73.90848,Private room,69,7,0,,,1,0 +19912814,Bed-Stuy Brownstone 1 bedroom,81937,Tamar,Brooklyn,Bedford-Stuyvesant,40.68999,-73.92833,Entire home/apt,110,14,1,2017-08-15,0.04,1,18 +19912854,Tiny House,112774776,Anne,Brooklyn,Bedford-Stuyvesant,40.68128,-73.93884,Entire home/apt,92,4,3,2018-08-12,0.13,1,0 +19913070,Spacious loft with Balcony sleeps TWO,3300910,William,Brooklyn,Bedford-Stuyvesant,40.69723,-73.93769,Entire home/apt,95,3,29,2019-06-29,1.22,1,13 +19913191,NEW YORK CENTRAL APARTMENT/TIME SQUARE,43105586,Gian Marco,Manhattan,Hell's Kitchen,40.75774,-73.99225,Entire home/apt,280,3,9,2019-03-21,0.39,1,84 +19913497,Sunny and Peaceful Haven in Heart of Williamsburg,6955481,Chloe,Brooklyn,Williamsburg,40.71913,-73.95769,Entire home/apt,275,3,2,2017-08-06,0.08,2,0 +19913714,Room in a Huge Loft Apartment,48081884,Laura,Brooklyn,Williamsburg,40.70564,-73.92774,Private room,60,3,2,2017-08-14,0.08,2,0 +19913761,Brand NEW & SIMPLE apt in quiet Chinatown,6862083,Mischa,Manhattan,Two Bridges,40.71136,-73.99391,Private room,110,3,1,2018-09-28,0.11,1,350 +19913783,Micheal's Apartment in Harlem,31856573,Micheal,Manhattan,Harlem,40.81671,-73.94013,Private room,80,6,0,,,1,364 +19914209,Luxury Private Bedroom (near JFK),141052003,Nicole,Queens,Jamaica,40.68558,-73.78018,Private room,65,1,8,2018-09-26,0.42,4,155 +19914250,Close to all NYC! Perfect place and cozy room,48972208,Yuri,Manhattan,Hell's Kitchen,40.75996,-73.99798,Private room,89,1,0,,,1,0 +19914762,SoHo studio,6219013,Kate,Manhattan,Nolita,40.72177,-73.99675,Entire home/apt,200,3,5,2018-09-23,0.38,1,0 +19915204,BRIGHT LUXURIOUS MASTER BEDROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77295,-73.90512,Private room,59,1,100,2019-06-23,4.19,8,342 +19915657,SUNNY PRIVATE ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77324,-73.90385,Private room,55,1,70,2019-06-23,2.93,8,332 +19915939,GORGEOUS LARGE BDR CLOSE TO MANHATTAN,139357580,Shuly,Queens,Ditmars Steinway,40.77321,-73.90447,Private room,60,1,80,2019-06-23,3.35,8,320 +19919747,Awesome Times Square 1 BR Loft in City Centre,142053,Jowelle,Manhattan,Hell's Kitchen,40.76054,-73.99066,Entire home/apt,199,2,59,2019-06-24,2.52,5,266 +19922292,Cool Studio in Brooklyn,51870709,Max,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94789,Entire home/apt,120,1,4,2017-08-28,0.17,1,0 +19922819,great area in East Williamsburg,10642725,Nate,Brooklyn,Bedford-Stuyvesant,40.69425,-73.93325,Private room,35,2,1,2017-09-28,0.05,1,0 +19923041,ॐ Private Room in Yoga Retreat Center - Brooklyn ॐ,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.67014,-73.99276,Private room,79,1,81,2019-06-23,3.53,3,353 +19923377,Cozy Brightly Lit Room in Huge Loft Space,48081884,Laura,Brooklyn,Williamsburg,40.70476,-73.92942,Private room,65,3,15,2019-05-27,0.65,2,2 +19923426,Bright & Sunny Bedroom in Brooklyn,135840287,Callie,Brooklyn,Crown Heights,40.67783,-73.94209,Private room,65,1,8,2018-04-04,0.34,1,0 +19924521,Artist Loft in Prime trendy East Williamsburg!,53710434,Luisa,Brooklyn,Bushwick,40.70208,-73.93258,Entire home/apt,85,5,2,2019-05-21,0.32,1,49 +19925397,"Modern, big and comfy space in the heart of NYC",46708895,Victor,Bronx,Mount Hope,40.84899,-73.90375,Entire home/apt,250,2,45,2019-06-25,2.18,1,289 +19928987,Convenient & Cozy Upper East Side Apartment,24041479,Ethan,Manhattan,Upper East Side,40.7593,-73.95967,Private room,246,1,10,2018-10-24,0.42,1,365 +19929209,Cozy Studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74838,-73.97695,Entire home/apt,150,30,1,2017-09-17,0.05,50,365 +19929279,Awesome 2 Bedroom Brooklyn Apartment / Sleeps 6,10391137,Ryan,Brooklyn,Clinton Hill,40.69539,-73.9666,Entire home/apt,250,3,67,2019-06-11,2.99,1,87 +19929723,Cozy And Quiet Getaway (Queen Size Bed),137999892,Simranjeet,Staten Island,Concord,40.60609,-74.0888,Private room,34,4,24,2019-05-18,1.03,7,293 +19929904,Sun Drenched Apartment,71730214,Tatum,Queens,Ridgewood,40.69956,-73.89801,Entire home/apt,80,4,5,2018-08-29,0.21,1,0 +19930489,Traveler/Student Prvt Rm w/ 1/2 Bath (001),137999892,Simranjeet,Staten Island,Concord,40.60613,-74.08907,Private room,35,4,19,2019-06-22,0.84,7,346 +19930641,105 Wilson,26018020,Jimmy,Brooklyn,Bushwick,40.70053,-73.92589,Private room,75,2,0,,,1,0 +19930835,Cozy And Quiet Single Room (003) A/c in sunmmer,137999892,Simranjeet,Staten Island,Concord,40.60618,-74.08712,Private room,33,3,29,2019-06-09,1.30,7,356 +19931069,Amazing Studio step away from the Time Sq/74B,48146336,Irina,Manhattan,Hell's Kitchen,40.76284,-73.99226,Entire home/apt,130,30,7,2019-06-24,0.37,20,337 +19931860,West 57th Street by Hilton Midtown Manhattan,4335080,Tiffany,Manhattan,Midtown,40.76394,-73.97825,Entire home/apt,350,1,1,2017-12-06,0.05,2,365 +19932387,Welcome 2 rooms 10 min to airports 30 mins to NYC,141229116,Daniel,Queens,Bellerose,40.73179,-73.72179,Private room,60,2,27,2019-07-05,1.14,1,353 +19932802,Private Bedroom West Village Greenwich Apartment,45399737,Esther,Manhattan,Greenwich Village,40.7292,-73.99964,Private room,150,2,0,,,1,48 +19933872,Lovely Private Room in the Heart of Williamsburg,92307204,Jesse,Brooklyn,Williamsburg,40.71947,-73.95958,Private room,65,21,2,2018-04-22,0.09,1,81 +19933967,Charming studio in midtown east Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74948,-73.97685,Entire home/apt,150,30,0,,,50,365 +19936586,Huge Sunny room in BedStuy (musician friendly),26091462,Tanya,Brooklyn,Bedford-Stuyvesant,40.69499,-73.94921,Private room,100,1,1,2017-11-05,0.05,2,0 +19940173,Amazing Cozy Upper East Side Private Artistic Flat,137306448,Katie,Manhattan,Upper East Side,40.7823,-73.94736,Entire home/apt,219,1,29,2019-06-26,2.82,1,338 +19940410,Classic Williamsburg Apartment.,39250457,Lauren,Brooklyn,Williamsburg,40.71199,-73.94004,Entire home/apt,90,2,4,2017-08-23,0.17,1,0 +19942242,Home away from home.,141322867,Peggy,Brooklyn,Flatlands,40.62468,-73.94532,Private room,46,2,4,2017-08-12,0.17,1,4 +19942348,Sunny and Airy FiDi Studio,141324173,Victoria,Manhattan,Financial District,40.71103,-74.00845,Entire home/apt,200,2,74,2019-06-24,3.13,1,35 +19943029,Entire Historic Brownstone Apartment-Outdoor Space,141194871,Christopher,Brooklyn,Bedford-Stuyvesant,40.68198,-73.94086,Entire home/apt,160,2,130,2019-06-29,5.60,1,123 +19943440,Charming 2B/2BR in the heart of the West Village,141335210,Eric,Manhattan,West Village,40.73447,-74.00266,Entire home/apt,599,1,0,,,1,0 +19943741,¡AMAZING PENTHOUSE IN SOHO (Nolita-1BR)!,2292332,Charlie Manuel,Manhattan,Nolita,40.7216,-73.99721,Entire home/apt,350,5,5,2019-05-25,0.21,1,54 +19943797,"Family-Friendly, 2br, Tons of Light! Amazing find.",34738874,Elliott,Brooklyn,Crown Heights,40.67806,-73.94459,Entire home/apt,88,1,2,2017-08-18,0.08,1,0 +19944735,Private Bedroom in Large Astoria apartment,81996236,Zoe,Queens,Ditmars Steinway,40.76994,-73.90659,Private room,105,1,0,,,1,89 +19944880,The Bedford,5350896,Zaher,Brooklyn,Williamsburg,40.71312,-73.9617,Entire home/apt,175,3,30,2019-06-25,1.28,1,24 +19945196,"Sunny, quiet room next to Seaview Park w/AC",16567193,Jacqueline,Brooklyn,Canarsie,40.63652,-73.90015,Private room,80,5,0,,,1,90 +19945327,"Apartment for One Person Midtown, Doorman Building",37234244,Aishling,Manhattan,Midtown,40.76602,-73.98323,Entire home/apt,105,10,4,2019-01-05,0.22,1,19 +19945408,Amazing Condo with the Terrace step at Time Sq/55B,48146336,Irina,Manhattan,Hell's Kitchen,40.76245,-73.99235,Entire home/apt,160,30,4,2019-04-30,0.32,20,339 +19945772,Kensington/Ditmas Park Single family home,16532782,Derek,Brooklyn,Kensington,40.64206,-73.97172,Entire home/apt,160,6,0,,,1,0 +19945811,Spacious & Serene in the Heart of Brooklyn Heights,8026588,Anne,Brooklyn,Brooklyn Heights,40.69425,-73.99503,Entire home/apt,200,3,7,2018-09-03,0.31,1,0 +19946195,BK Master bedroom with King sized bed,141359133,Philip,Brooklyn,Park Slope,40.67677,-73.97954,Private room,97,2,54,2019-06-17,2.38,1,85 +19946965,Comfortable PRIVATE ROOM in a great location,62710779,Husain,Manhattan,Upper West Side,40.79982,-73.96411,Private room,89,4,1,2017-08-03,0.04,1,0 +19948170,Quiet Rare Superb West Village Apartment.,136300221,J,Manhattan,West Village,40.73319,-74.00435,Entire home/apt,225,10,8,2018-12-03,0.52,1,90 +19948618,Amazing studio step away from Time Square/54B,48146336,Irina,Manhattan,Hell's Kitchen,40.76309,-73.99214,Entire home/apt,130,30,7,2019-06-29,0.34,20,311 +19948995,Bright Bedroom in Brooklyn Home,59875550,Liana,Brooklyn,Williamsburg,40.71493,-73.95995,Private room,50,14,1,2018-01-23,0.06,1,0 +19949135,"Luxury condo, full floor - Master w/lvg rm+ 2 ba!",75967547,Kristin,Manhattan,Harlem,40.80419,-73.95473,Private room,125,1,19,2018-11-11,0.80,2,0 +19949138,Classic Artist Loft,16596728,Josh,Brooklyn,Columbia St,40.68626,-74.00141,Entire home/apt,149,4,9,2019-06-26,0.38,1,74 +19949310,Brooklyn Basement,112186372,Kinser,Brooklyn,Bedford-Stuyvesant,40.68322,-73.91702,Shared room,200,1,1,2017-09-02,0.04,1,179 +19949403,"Sunny, Spacious Brooklyn Room & Private Backyard",4685815,Marino,Brooklyn,Williamsburg,40.71015,-73.955,Private room,60,7,1,2017-08-20,0.04,1,0 +19949634,Dupont Duplex,4109954,Jason,Brooklyn,Greenpoint,40.73636,-73.95797,Entire home/apt,200,2,11,2019-07-03,0.77,1,0 +19950255,Sunny Private Room in Harlem,91002349,Analisa,Manhattan,Harlem,40.82788,-73.94835,Shared room,65,5,0,,,1,0 +19950630,The Heart of Harlem,32153139,Michelle,Manhattan,East Harlem,40.80472,-73.94077,Private room,55,3,2,2017-08-09,0.09,2,0 +19951170,Charming Modern Apartment,35387196,Kizzie,Brooklyn,Crown Heights,40.67233,-73.93998,Entire home/apt,78,7,3,2019-05-27,0.17,4,237 +19951242,Luxury Williamsburg with Panoramic City Views,202362,Liad,Brooklyn,Williamsburg,40.7191,-73.9617,Entire home/apt,275,5,3,2017-12-05,0.15,1,0 +19951265,Room in lovely loft with waterfront view,2971336,Alain,Brooklyn,Williamsburg,40.71797,-73.96628,Private room,140,10,5,2018-01-04,0.21,2,0 +19951620,Furnished Historical Townhouse,6208391,Robin,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96035,Entire home/apt,214,5,37,2019-05-29,1.57,1,211 +19951681,"Great apartment , Astoria , NYC .",40008714,Vladimir,Queens,Astoria,40.76254,-73.91533,Private room,65,1,5,2019-02-26,0.56,1,328 +19952226,Bright Airy Spacious Brooklyn Artist's Home,15835115,Shelley,Brooklyn,Flatbush,40.65447,-73.95631,Entire home/apt,75,2,3,2017-09-11,0.13,1,0 +19952747,BEAUTIFUL PRIVATE ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77148,-73.90545,Private room,45,1,72,2019-06-15,3.13,8,296 +19952847,Spacious 2 BDR APT BROOKLYN Sleeps 8!,129646758,Sherry W X,Brooklyn,East Flatbush,40.64323,-73.95086,Entire home/apt,95,2,43,2019-07-01,1.97,2,338 +19954367,"Large, New, Modern Uptown Room - 2",9864136,Anthony,Manhattan,Harlem,40.82086,-73.94486,Private room,65,30,0,,,26,188 +19954751,Fascinating Modern Apartment - 5 mins Time Square,131712054,Edison,Manhattan,Hell's Kitchen,40.76122,-73.99129,Private room,111,1,136,2019-07-06,5.86,1,51 +19958302,luxury for a discount,34447878,Elaine,Manhattan,Civic Center,40.71365,-74.0053,Entire home/apt,210,5,6,2018-09-22,0.26,1,0 +19960443,LARGE BEDROOM WITH ROOFTOP/WASHER/DRYER,140821239,Masaki,Manhattan,Upper East Side,40.7817,-73.94731,Private room,100,2,25,2018-05-02,1.09,1,0 +19960507,Huge Loft Space in Red Hook,1772509,Jane,Brooklyn,Red Hook,40.67798,-74.00787,Entire home/apt,145,1,11,2019-05-25,0.49,2,333 +19960519,Heart of Bushwick,18604887,Bree,Brooklyn,Bushwick,40.70338,-73.91879,Entire home/apt,50,15,3,2017-11-24,0.13,1,7 +19961187,"Sunny, Bright, & VERY Spacious! 2BR-Gramercy Park",30849492,Margaret,Manhattan,Gramercy,40.73502,-73.98612,Entire home/apt,280,3,0,,,1,0 +19963641,Bright kid-friendly apartment near the Navy Yard.,2073124,Chris,Brooklyn,Fort Greene,40.69653,-73.97439,Entire home/apt,136,2,2,2017-08-28,0.09,1,0 +19963733,"Prewar duplex, 3 bedrooms, minutes from everything",93355703,Katherine,Brooklyn,Brooklyn Heights,40.69677,-73.99599,Entire home/apt,585,3,10,2019-02-18,0.42,1,225 +19964062,Brand New Luxury 1BR 12 Mins from midtown,141540856,Dan,Queens,Astoria,40.7698,-73.92009,Entire home/apt,200,2,1,2017-11-24,0.05,1,0 +19964070,Artsy 1BR/1BA high wood ceilings steps from water,2036797,Catinca,Brooklyn,Williamsburg,40.71236,-73.96668,Entire home/apt,180,3,20,2019-05-08,0.91,1,0 +19964109,Hendrix Street Gem Rm #2,105878573,Tonisha,Brooklyn,East New York,40.66725,-73.88876,Private room,40,1,56,2019-06-23,2.37,5,37 +19964262,Hendrix Street Gem Rm #3,105878573,Tonisha,Brooklyn,East New York,40.66535,-73.8891,Private room,40,1,104,2019-06-22,4.53,5,36 +19964343,Brooklyn Apartment,141544900,Cathy,Brooklyn,East Flatbush,40.6455,-73.9444,Entire home/apt,56,1,82,2019-05-12,3.64,1,22 +19964849,Modern large 2 bedroom steps from Central Park!,45752004,Rebecca,Manhattan,Upper East Side,40.77285,-73.95566,Entire home/apt,795,2,9,2019-07-02,0.42,1,268 +19965684,Lovely 1st floor studio,141557712,Isa,Queens,Astoria,40.76531,-73.92413,Entire home/apt,135,2,19,2019-07-01,0.81,1,310 +19966023,Spacious 2 Bedroom at the heart of East Village,8977208,Rachel,Manhattan,East Village,40.72897,-73.9811,Entire home/apt,130,30,0,,,1,186 +19967115,Large 1st floor apartment at fantastic location!,12652679,Madhu,Queens,Astoria,40.76297,-73.91696,Entire home/apt,80,2,13,2019-05-23,0.56,1,0 +19967297,The Oasis 1,33106693,Elena,Manhattan,Harlem,40.82329,-73.95184,Private room,110,3,0,,,3,64 +19967657,Sanjay's Art Lab - Prime LES - Quintessential NYC,16549535,Sanjay,Manhattan,Lower East Side,40.71624,-73.98935,Entire home/apt,50,1,6,2018-09-28,0.28,1,0 +19968221,"Artist's Townhouse w/ garden, grill -near subway",184913,John,Brooklyn,Gowanus,40.68192,-73.9908,Entire home/apt,298,3,3,2019-05-27,0.36,1,192 +19968388,Beautiful Bedroom in Washington Heights,38592785,Caitlyn,Manhattan,Washington Heights,40.84218,-73.93676,Private room,55,2,15,2019-07-06,0.76,1,0 +19968961,Bedroom and own bathroom in Chelsea apartment,6393112,Katie,Manhattan,Chelsea,40.74286,-74.001,Private room,110,2,0,,,1,0 +19969013,Downtown Brooklyn Condo,71841088,Pristine Posh,Brooklyn,Bedford-Stuyvesant,40.69235,-73.94888,Entire home/apt,145,2,0,,,1,0 +19969420,Bright Private Bedroom by Wall Street,27186594,Glenna,Manhattan,Financial District,40.70743,-74.00785,Private room,87,2,10,2019-05-05,0.43,1,0 +19969461,"Brooklyn Amazing Deal! Bright, Cozy Apartment",14833285,Anna,Brooklyn,Sheepshead Bay,40.5967,-73.96041,Entire home/apt,100,3,23,2018-11-11,0.99,1,2 +19970186,Quiet and Cozy | BEST LOCATION in NYC,10787007,Catherine,Manhattan,Gramercy,40.7347,-73.98665,Entire home/apt,125,1,54,2018-11-28,2.30,1,0 +19970216,Cozy 1 bdrm apt in the heart of hippest LES hood,1902239,Bojana,Manhattan,Lower East Side,40.713,-73.98986,Entire home/apt,115,3,69,2019-06-23,2.92,1,18 +19970249,Private room in the heart of Williamsburg,54769760,Irene,Brooklyn,Williamsburg,40.71649,-73.96176,Private room,50,5,1,2019-06-22,1,1,11 +19970350,Newly renovated clean and Cozy Private room,15344412,Abe,Staten Island,New Springville,40.58085,-74.15443,Private room,43,10,0,,,3,89 +19970764,"BRAND NEW MODERN 2BR 1BA,HEART OF LOWER EAST SIDE!",22129776,Ali,Manhattan,Lower East Side,40.72337,-73.99057,Entire home/apt,449,1,3,2019-05-05,0.63,3,352 +19974905,Esteem's Place,141615596,Esteem,Bronx,Parkchester,40.83805,-73.85867,Shared room,26,1,18,2019-04-23,0.78,2,342 +19975703,Large bedroom near trains & park,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66084,-73.96001,Private room,38,20,0,,,2,7 +19977131,Room in artist loft with waterfront view,2971336,Alain,Brooklyn,Williamsburg,40.71634,-73.96469,Private room,110,2,5,2017-09-01,0.21,2,0 +19979480,1 Room in Bushwick *Females only*,26172284,Brooke,Brooklyn,Bushwick,40.68875,-73.90943,Private room,32,5,0,,,1,0 +19979771,Sun-Filled Apartment with Excellent Location,141700715,Danielle,Brooklyn,Fort Greene,40.68552,-73.97167,Entire home/apt,149,5,1,2017-08-05,0.04,1,0 +19979892,"Sheepshead Bay, 1-bdr apartment. Close to all!",138913479,Svetlana,Brooklyn,Sheepshead Bay,40.58745,-73.95709,Entire home/apt,130,2,41,2019-07-06,1.77,1,142 +19979903,Jolly Bedroom! 3 minute walk to Astoria Ditmars!,135845936,Claire,Queens,Ditmars Steinway,40.77233,-73.911,Private room,75,3,2,2017-12-04,0.09,1,0 +19980048,Sun soaked apartment in the Friends Building,15200154,Casey,Manhattan,West Village,40.73275,-74.006,Entire home/apt,350,2,2,2017-08-13,0.09,1,0 +19980277,"Sunny Fort Greene room with A/C, high ceilings",10995969,Adam,Brooklyn,Fort Greene,40.69401,-73.973,Private room,62,2,3,2017-08-24,0.13,1,0 +19980512,Bohemian cozy,19134080,Raschell,Manhattan,East Village,40.72795,-73.9831,Entire home/apt,110,3,3,2017-09-04,0.13,1,0 +19981092,Private Bedroom in Luxury Uptown Condo,29568720,Susanne,Manhattan,Washington Heights,40.85263,-73.9352,Private room,80,1,7,2017-10-31,0.31,1,0 +19981294,Great Room on Kips Bay,132080218,George,Manhattan,Kips Bay,40.74023,-73.97847,Private room,120,1,14,2018-01-01,0.59,1,0 +19981584,Sunny loft in heart of Crown Heights,75819473,Cathy,Brooklyn,Crown Heights,40.67295,-73.95646,Private room,57,1,4,2017-09-01,0.17,1,0 +19981649,"Big, Bright, Beautiful Private Apartment",10286572,Erik,Manhattan,East Village,40.72697,-73.98509,Entire home/apt,239,2,13,2019-04-24,0.68,1,3 +19981671,DaDukes Dreams,139879568,Alberto,Queens,Long Island City,40.76626,-73.94058,Private room,84,1,70,2019-05-29,3.12,6,321 +19981877,Private room (bright and clean) Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80266,-73.93904,Private room,44,30,3,2019-05-26,0.19,4,153 +19981889,Huge Private Bedroom in Harlem,44194869,Kyle,Manhattan,Harlem,40.81793,-73.94149,Private room,100,1,62,2019-06-14,2.79,1,58 +19982386,"Rare Find: SUNNY, LARGE DUPLEX Chelsea 2BR 2BA",19413375,Victoria,Manhattan,Chelsea,40.74279,-74.00193,Entire home/apt,500,6,40,2019-06-19,1.70,1,276 +19983575,Private long room in Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80257,-73.93987,Private room,46,30,5,2019-06-30,0.26,4,220 +19984134,Beautifully Decorated 1 Bedroom w/ Large Terrace,5962328,Alan,Queens,Flushing,40.76112,-73.82327,Entire home/apt,140,30,3,2018-08-11,0.14,15,244 +19984925,Private room (cozy and clean) Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80356,-73.94034,Private room,41,30,5,2019-05-04,0.24,4,211 +19985199,Workspace Room 2 - 2,9864136,Anthony,Brooklyn,Bushwick,40.68507,-73.91329,Private room,35,2,5,2018-09-18,0.21,26,311 +19985425,Newly Renovated/Private Apt/1-br by Park and Metro,75218527,Jonah_Soleil,Brooklyn,Crown Heights,40.66912,-73.94337,Entire home/apt,114,1,72,2019-06-19,3.02,1,140 +19986637,Lovely City Retreat,33527075,Brooke,Queens,Elmhurst,40.74547,-73.87746,Private room,57,2,103,2019-07-02,4.34,2,3 +19991488,Private comfortable room in BK close to Manhattan,46066063,Mungyu,Brooklyn,Bedford-Stuyvesant,40.69287,-73.92939,Private room,40,4,13,2019-06-08,0.63,2,188 +19993084,Large Room With 2 Queen Beds Close to Metro,141844749,Garland,Brooklyn,Bedford-Stuyvesant,40.68925,-73.95452,Private room,60,2,65,2019-06-18,2.78,1,58 +19993470,Classic Manhattan Loft Apartment,114867228,Peter And Helen,Manhattan,NoHo,40.73,-73.99253,Entire home/apt,137,14,17,2019-06-18,0.83,1,233 +19994533,Bright & Beautiful 1BR Apartment in East Village,2491844,Maurizio,Manhattan,East Village,40.7248,-73.98774,Entire home/apt,150,5,1,2018-07-16,0.08,1,5 +19996712,"Light, Large Private Bedroom in 1865 townhouse",4077993,Raquel,Brooklyn,Crown Heights,40.6758,-73.9415,Private room,80,5,7,2018-09-28,0.51,2,2 +19996830,Large sunny room near park & trains,1287787,Crystal,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.95894,Private room,33,10,3,2019-06-11,0.13,2,63 +19997141,5 min subway 20 to city Cozy Value Room near SUNY,134762059,Renee,Brooklyn,East Flatbush,40.6534,-73.9439,Private room,50,1,24,2018-10-28,1.12,2,0 +19997686,Brand New Williamsburg Room!,14757938,Georgie,Brooklyn,Greenpoint,40.72612,-73.95419,Private room,65,1,0,,,1,0 +19998416,Brooklyn Base Camp,1780076,Ashleigh,Brooklyn,Crown Heights,40.67513,-73.95714,Private room,55,2,13,2017-10-21,0.56,2,0 +19998620,Basic Overnight Stay by Subway w/ free parking,116100517,David,Queens,Flushing,40.75553,-73.83307,Entire home/apt,39,1,2,2017-07-29,0.08,1,0 +19998689,Sunny & Cozy Room in Top Floor Apt with Terrace,2596096,Aleksandar,Queens,Astoria,40.75705,-73.91459,Private room,150,2,4,2019-03-09,0.17,1,0 +19998918,Prime Upper East Side Studio,141910666,Jennifer,Manhattan,Upper East Side,40.77058,-73.95666,Entire home/apt,197,4,11,2019-05-31,0.47,1,16 +19999527,★ Comfy Couple's Getaway ★ Walk/Transit Score 85+,131697576,Anisha,Bronx,East Morrisania,40.83384,-73.8863,Private room,65,2,91,2019-06-22,3.82,4,325 +19999906,"MARTIAL LOFT 3: REDEMPTION (downstairs, 3rd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69627,-73.92265,Private room,50,3,0,,,5,0 +20000184,"Master Bedroom with Own Bathroom, near subway",102482048,Susy,Brooklyn,Bushwick,40.68174,-73.90733,Private room,50,2,28,2019-04-22,1.22,4,341 +20000260,"Bright, Plant-Filled 2 Bedroom in Prospect Park",16091224,Jesse,Brooklyn,Prospect-Lefferts Gardens,40.65507,-73.96094,Entire home/apt,130,3,1,2017-08-20,0.04,2,0 +20000290,Unique Place in New York City,361155,Alexandra,Brooklyn,Flatbush,40.64063,-73.96348,Entire home/apt,200,4,17,2019-06-17,0.78,1,95 +20000421,Huge room at an affordable price,64018594,Daphne,Manhattan,Harlem,40.80895,-73.95266,Private room,45,3,3,2017-08-16,0.13,2,0 +20000820,Sunny and Spacious private bedroom,27527984,S,Brooklyn,Bushwick,40.69613,-73.90768,Private room,66,1,2,2017-10-08,0.09,1,0 +20001006,Spacious Room in Modern Duplex Loft,141937671,TamiandIvana,Brooklyn,Crown Heights,40.67051,-73.95166,Private room,60,2,48,2019-06-14,2.04,1,328 +20001157,CROWN HEIGHTS GUEST HOUSE 2R2L3R3L,74541079,Abraham,Brooklyn,Crown Heights,40.67077,-73.93618,Entire home/apt,399,4,5,2019-03-24,0.39,9,65 +20002262,Tays LES sanctuary,34382987,Taylor,Manhattan,East Village,40.72384,-73.98407,Private room,90,5,0,,,1,0 +20004647,JnK BnB,138635224,Josh,Manhattan,Washington Heights,40.85801,-73.93113,Private room,33,1,0,,,2,0 +20005568,Private Room with 2 Beds in Hamilton Heights,63986235,Drew,Manhattan,Harlem,40.82952,-73.95064,Private room,75,4,3,2017-09-17,0.13,1,0 +20006934,2 bedroom next to Times Square & Central Park,6137321,Joseph,Manhattan,Hell's Kitchen,40.76621,-73.98516,Entire home/apt,279,1,130,2019-07-04,5.73,1,174 +20007899,"Brooklyn 1 Bedroom w/ AC, laundry and roof!",3554481,Jessica,Brooklyn,Bedford-Stuyvesant,40.69639,-73.9343,Entire home/apt,120,4,0,,,1,0 +20008527,Large private room in Manhattan NYC,138515591,Anna Chiara,Manhattan,East Harlem,40.80305,-73.9403,Private room,51,30,2,2019-05-20,0.38,4,262 +20009122,HEART of MANHATTAN,117287,Lara,Manhattan,Hell's Kitchen,40.76764,-73.98468,Private room,130,2,3,2018-05-20,0.19,3,239 +20010930,Spacious & Quiet 1 Bedroom,18987217,Griffin,Queens,Ridgewood,40.70792,-73.89808,Entire home/apt,90,4,0,,,1,0 +20011434,Hank's,28825500,Matt,Brooklyn,Williamsburg,40.71088,-73.95099,Private room,100,1,0,,,1,0 +20011863,$47/day Private ROOM! BETTER THAN HOSTEL! In Bklyn,14157435,Sherry,Brooklyn,Flatlands,40.62567,-73.93784,Private room,47,1,36,2019-07-05,1.52,1,59 +20012263,Bright Large Bedroom in Heart of Bed Stuy w/Garden,17591452,Xavier,Brooklyn,Bedford-Stuyvesant,40.6839,-73.94452,Private room,85,3,14,2018-10-30,0.61,1,0 +20013255,Lavish Private bedroom by central park,115228513,Aly,Manhattan,Upper West Side,40.80263,-73.96458,Private room,99,1,90,2019-05-30,3.80,2,331 +20013291,Cozy studio in the heart of Manhattan,88022215,Daria,Manhattan,Murray Hill,40.74564,-73.97593,Entire home/apt,120,5,0,,,1,0 +20013531,"MARTIAL LOFT 3: REDEMPTION (downstairs, 1st room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69682,-73.92318,Private room,60,3,6,2019-05-19,0.48,5,0 +20014072,Room for one at Stella's place,15617507,Stella,Bronx,Morris Park,40.85145,-73.86129,Private room,29,1,53,2019-01-19,2.65,3,137 +20014141,UWS. Beautiful 1brm apartment w/ king size bed,54498900,Svetlana,Manhattan,Upper West Side,40.79271,-73.97272,Entire home/apt,170,7,4,2018-01-01,0.17,1,0 +20014534,Minimalist Private Bedroomm - Clean/Spacious/Airy,43010827,Joshua,Brooklyn,Williamsburg,40.71385,-73.93739,Private room,45,3,5,2018-07-24,0.21,1,0 +20014879,Spacious Furnished Room steps away from Cloisters!,99380211,Rachel,Manhattan,Inwood,40.86372,-73.92789,Private room,70,1,1,2019-07-02,1,1,132 +20014895,"Trendy, Bright and spacious 1BR apt East Village",81140056,Anne-Charlotte,Manhattan,East Village,40.72338,-73.98293,Entire home/apt,198,7,9,2019-01-02,0.38,1,0 +20015002,Bright and Beautiful Pre-War Home in Bushwick,17529252,Johnny,Brooklyn,Bushwick,40.70447,-73.91559,Private room,87,2,1,2017-09-04,0.04,1,0 +20015668,Pleasant 1 bedroom apartment in Harlem Brownstone,118902541,Evelyn,Manhattan,Harlem,40.82755,-73.945,Entire home/apt,80,1,0,,,1,0 +20015736,"Large, Quiet Apartment With Easy Subway Access!",133926727,Victor,Manhattan,Harlem,40.82278,-73.94199,Entire home/apt,250,1,21,2018-01-14,0.89,2,0 +20016090,Comfort of home in the center of it all!,94543144,Sara,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9449,Entire home/apt,152,2,72,2019-06-29,3.11,1,146 +20016469,Quaint Nolita Apartment,45374780,Zal,Manhattan,Little Italy,40.72008,-73.99612,Private room,95,3,0,,,1,0 +20016493,"ART LOFT/HOME: DINNERS, GATHERINGS, PHOTO",142118455,Allan,Manhattan,NoHo,40.7256,-73.99487,Entire home/apt,1795,1,38,2019-06-21,1.65,1,116 +20016975,Rustic 1 Bedroom with Exposed Brick,55939980,Katy,Manhattan,Midtown,40.75685,-73.96388,Entire home/apt,210,2,4,2018-12-30,0.22,1,0 +20017121,Spacious 2 bedroom apartment,82119233,Jenny,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95257,Entire home/apt,135,4,68,2019-06-30,2.97,2,247 +20017161,Amazing location across from Park and Subway,602131,Molly,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.96169,Entire home/apt,69,3,11,2019-06-27,0.46,1,7 +20017584,Large Room with Private Entrance Close to Metro,142133001,Garland,Brooklyn,Bedford-Stuyvesant,40.68967,-73.95514,Private room,55,2,53,2019-06-23,2.31,1,88 +20017636,"LES 1 Bedroom. Cozy, Sunny, Modular",15520689,Laura,Manhattan,Lower East Side,40.71692,-73.98321,Entire home/apt,90,26,1,2017-08-31,0.04,1,0 +20017753,Super Clean Room For 2 - Close To Metro,142135334,Garland,Brooklyn,Bedford-Stuyvesant,40.68985,-73.95317,Private room,45,5,38,2019-06-13,2.08,1,79 +20018667,Midwest Oasis in Kings County,23587319,Wes,Brooklyn,Bedford-Stuyvesant,40.68336,-73.93578,Entire home/apt,80,2,3,2017-11-10,0.14,1,0 +20022549,"Comfy “sofa bed"" next to LGA AIRPORT and #7 train",32446721,Veronica,Queens,Corona,40.74905,-73.86499,Shared room,37,1,26,2019-06-30,1.10,6,365 +20025456,"700sqft Modern, Brand New Studio in Central Harlem",5639390,Sai Mun,Manhattan,Harlem,40.8077,-73.94345,Entire home/apt,130,4,0,,,1,0 +20026248,Beach House,37318968,V Joe,Queens,Arverne,40.59082,-73.80328,Entire home/apt,275,2,24,2019-06-23,1.02,1,335 +20026598,Bushwick gem with private garden patio.,32446918,Michele,Brooklyn,Bushwick,40.70451,-73.92062,Entire home/apt,150,4,32,2019-06-25,1.46,1,92 +20026998,1 Bed garden apt in Classic Brownstone - sleeps4,1748382,Kenna,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93299,Entire home/apt,200,2,39,2019-06-30,1.69,1,253 +20028846,"Extremely Large, Beautiful 2 Bedroom -Union Square",142240474,Isabella,Manhattan,Chelsea,40.73726,-73.9928,Entire home/apt,230,5,5,2019-06-20,0.21,1,5 +20028865,Beautiful Bright Bushwick Cove,39939372,Parish,Brooklyn,Bushwick,40.69851,-73.9266,Private room,65,20,0,,,1,0 +20029021,Beautiful Apartment in Brooklyn!,12431341,Klaudia,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94383,Entire home/apt,149,3,3,2018-10-21,0.14,1,0 +20029169,"Labor Day in NYC! Renovated Luxury Apt, Midtown",21060836,Laura,Manhattan,Midtown,40.75207,-73.97201,Entire home/apt,690,3,1,2017-09-04,0.04,2,0 +20029501,Furnished Upper East Side Room!,142246533,Kat,Manhattan,Upper East Side,40.76989,-73.94961,Private room,53,12,1,2017-08-16,0.04,1,0 +20030489,Private room+bath in Dumbo apartment,31336910,Naa Adjeley,Brooklyn,Vinegar Hill,40.69951,-73.98511,Private room,245,3,0,,,1,0 +20030871,Williamsburg Bedroom w/Private Terrace!,1822729,Derek,Brooklyn,Williamsburg,40.71078,-73.96161,Private room,70,4,33,2019-03-05,1.49,2,0 +20031027,Beautiful + Unique + Large 1BD in East Village,6916278,Valentina,Manhattan,East Village,40.72324,-73.98255,Entire home/apt,275,2,23,2019-06-09,0.99,1,0 +20031317,Cozy 1 bedroom Apt Morningside/Harlem,142263776,Emilie,Manhattan,Harlem,40.80389,-73.95443,Entire home/apt,113,5,0,,,1,0 +20031768,Cozy Bedroom in Charming Astoria,4777135,Emily,Queens,Long Island City,40.75955,-73.9336,Private room,56,2,19,2018-01-27,0.81,1,0 +20031965,HOUSE WITH 2 ENTRANCES 15min TO MANHATTAN,142268790,David,Queens,Forest Hills,40.73386,-73.85202,Entire home/apt,268,3,4,2019-06-16,0.19,2,154 +20032886,Private Room & Living Room in shared Bushwick Apt,16329486,Krysta,Brooklyn,Bushwick,40.70266,-73.92153,Private room,75,12,1,2017-12-14,0.05,1,0 +20033157,"Large, bright bdr in a luxury bdg in Mid East",57328653,Esther,Manhattan,Midtown,40.75734,-73.96429,Private room,82,15,3,2019-04-29,1.02,2,0 +20033434,Cozy Room in Beautiful Brooklyn,31480299,Rachel,Brooklyn,Fort Greene,40.68895,-73.96902,Private room,65,1,10,2017-11-05,0.45,1,0 +20033770,"Beautiful 1 bedroom apartment in Greenpoint, BK",15899162,Nichole,Brooklyn,Greenpoint,40.73129,-73.95845,Entire home/apt,71,7,10,2018-09-23,0.51,1,0 +20034180,AG's palace 2,121612198,Maura,Brooklyn,Canarsie,40.64351,-73.91406,Private room,89,1,9,2019-05-19,0.38,4,334 +20034244,Two rooms in one. A family friendly neighborhood.,113295877,Jonathan,Staten Island,Tompkinsville,40.63529,-74.09068,Private room,59,3,26,2019-06-22,1.11,3,351 +20034806,"Beautiful, airy bedroom in Williamsburg",75777937,Funmilade,Brooklyn,Williamsburg,40.71558,-73.96171,Private room,50,1,3,2017-08-06,0.13,1,0 +20035466,"Entire 1BD Apartment in Crown Heights, BK",53630880,Cindy,Brooklyn,Crown Heights,40.67619,-73.9532,Entire home/apt,100,5,6,2018-12-31,0.25,1,0 +20035612,Private Room in Central Harlem,59764159,Shakeria,Manhattan,Harlem,40.81254,-73.94204,Private room,55,3,1,2017-08-24,0.04,1,0 +20035645,Basement Studio Apt in a quiet area close to all,142312133,Ella,Queens,Forest Hills,40.73362,-73.84747,Entire home/apt,69,2,51,2019-01-05,2.15,1,0 +20035842,"GIRLS ONLY Romantic, antique, & cozy room",131767309,K,Manhattan,Two Bridges,40.71138,-73.99635,Private room,35,1,2,2018-01-01,0.11,1,0 +20040994,Private room in 3br apt in West Village,29750315,Myles,Manhattan,West Village,40.7331,-74.01022,Private room,108,3,3,2017-08-31,0.13,1,0 +20044214,Home Away from Home,19474504,Zam,Brooklyn,Bedford-Stuyvesant,40.68266,-73.94321,Entire home/apt,100,1,3,2017-09-08,0.13,1,0 +20044802,AG's Palace 3,121612198,Maura,Brooklyn,Canarsie,40.64138,-73.91488,Private room,75,1,11,2019-06-13,0.48,4,347 +20045444,A Lovely getaway apt in upper Manhattan!!,24559370,Gabrielle,Manhattan,Washington Heights,40.85497,-73.93469,Entire home/apt,99,3,11,2018-08-26,0.47,2,0 +20045641,Modern Private Room in Prime Williamsburg!,48851196,Ilya,Brooklyn,Williamsburg,40.71042,-73.94744,Private room,80,25,0,,,1,0 +20047896,Clinton Hill Apartment With Large Private Balcony,27559992,Sarah,Brooklyn,Clinton Hill,40.69394,-73.96918,Entire home/apt,158,2,97,2019-06-19,4.19,1,28 +20048459,Private Room in Bedstuy,41827222,Michael,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95117,Private room,50,1,5,2017-08-25,0.21,2,0 +20048909,Cozy West Village Apartment,14680684,Catherine,Manhattan,West Village,40.73848,-74.00503,Entire home/apt,250,5,5,2018-11-05,0.27,1,0 +20049161,Williamsburg Loft - Private room,2612106,Emil,Brooklyn,Williamsburg,40.71862,-73.94579,Private room,100,5,0,,,1,0 +20049857,Pre-War Brownstone 2 Blocks from Central Park,142442839,Elizabeth,Manhattan,Upper West Side,40.78561,-73.97637,Entire home/apt,299,3,57,2019-06-30,2.57,1,116 +20051059,East Village Gem,16547637,Sarah,Manhattan,East Village,40.72775,-73.98253,Private room,65,2,1,2017-08-15,0.04,1,0 +20051114,Steps to Central Park: spacious and cozy UWS 1BR,9851499,Diana,Manhattan,Upper West Side,40.78284,-73.97203,Entire home/apt,175,1,0,,,1,0 +20052107,Cozy 1BD Apartment in Brooklyn Prospect Lefferts,9215302,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65558,-73.956,Entire home/apt,90,2,6,2017-08-31,0.26,1,0 +20053253,Luxurious apartment-private bed & private bathroom,74314960,Cristina,Brooklyn,Bedford-Stuyvesant,40.69182,-73.9436,Private room,120,2,82,2019-06-23,3.52,2,0 +20053839,Greenpoint Guesthouse with 2 Private Patios,142483517,Andy,Brooklyn,Greenpoint,40.72854,-73.95627,Entire home/apt,150,3,27,2019-06-13,1.22,1,25 +20054293,Cozy spacious room in LIC with backyard and bath,63235915,Shen,Queens,Long Island City,40.76024,-73.94091,Private room,61,3,1,2017-08-01,0.04,1,0 +20054294,Sunny room in lovely modern building,11307033,Devon,Manhattan,East Village,40.72408,-73.97753,Private room,175,1,68,2019-05-12,2.89,2,22 +20054400,"Clean, Spacious Place on a Tree-Lined Street",142078178,Melody,Brooklyn,Crown Heights,40.66953,-73.9493,Entire home/apt,150,2,1,2017-07-30,0.04,1,0 +20054438,Bright Bedroom,142486709,Antonia,Queens,Astoria,40.75815,-73.91143,Private room,80,3,35,2019-06-08,1.50,1,154 +20055242,Loring Estate,142465460,Yvette,Brooklyn,East New York,40.66645,-73.85923,Entire home/apt,100,14,27,2019-06-16,1.67,1,81 +20055311,Cozy Basement Apartment near RUMC Hospital,318899,Krystal,Staten Island,West Brighton,40.63471,-74.10942,Entire home/apt,75,1,9,2019-06-07,0.45,1,175 +20055581,Wingate Manhattan Midtown (#2),139259102,Celeste,Manhattan,Midtown,40.75211,-73.99228,Private room,500,1,1,2018-01-01,0.05,2,0 +20055786,Fully equipped apartment on perfect location,142502018,Steve,Queens,Elmhurst,40.7355,-73.88131,Entire home/apt,115,7,4,2018-09-19,0.18,1,0 +20055944,Cozy centrally located room in the East village,3666809,Mercy,Manhattan,East Village,40.72962,-73.98449,Private room,150,1,6,2018-04-09,0.36,1,0 +20056034,Charming studio in the heart of Astoria,27468780,Maja,Queens,Astoria,40.76189,-73.92332,Entire home/apt,110,4,6,2019-06-11,0.30,1,0 +20056328,Beautiful 1 bedroom near Central Park/Times Square,3006848,Joannie,Manhattan,Hell's Kitchen,40.76494,-73.98467,Private room,160,2,2,2017-08-20,0.09,1,0 +20056579,"Beautiful, Spacious 1-Bedroom in the East Village",142516320,Saimon,Manhattan,East Village,40.73001,-73.98411,Entire home/apt,230,5,1,2018-09-28,0.11,1,0 +20056846,Sunny and Spacious Apartment in Astoria,3841371,Catherine,Queens,Astoria,40.7701,-73.9297,Entire home/apt,120,2,2,2017-08-26,0.09,1,0 +20057317,Cozy well decorated/located studio in Astoria,60370951,Emanuella,Queens,Astoria,40.77297,-73.92253,Entire home/apt,110,2,33,2019-06-20,1.49,2,305 +20057450,"Single Apt,Near DNR train,Fast travel to Manhatan",135731332,Sky,Brooklyn,Sunset Park,40.65004,-74.00108,Entire home/apt,80,3,46,2019-06-16,2.19,1,195 +20057851,**Irresistible Jewel**,14408045,Alex,Manhattan,Murray Hill,40.74742,-73.9775,Entire home/apt,199,3,27,2018-10-26,1.21,1,0 +20058138,"Large, quiet luxury home in Manhattan",134284480,Tiiu,Manhattan,Hell's Kitchen,40.75955,-73.99738,Entire home/apt,280,3,92,2019-06-27,4.13,1,69 +20066576,1 Bedroom in the heart of the Lower East Side,56256469,Steven,Manhattan,Lower East Side,40.7191,-73.98431,Entire home/apt,140,3,4,2017-09-04,0.17,1,0 +20067361,"Private bedroom available in Bed Stuy, Brooklyn",31883068,Will,Brooklyn,Bedford-Stuyvesant,40.69545,-73.94829,Private room,50,7,8,2019-04-16,0.34,1,188 +20070087,Private Bedstuy Bedroom,105075265,Richard,Brooklyn,Bedford-Stuyvesant,40.69512,-73.95111,Private room,40,1,0,,,1,0 +20070187,Artist's Abode Across from Prospect Park,10595388,Victoria,Brooklyn,Crown Heights,40.67201,-73.9593,Entire home/apt,200,1,25,2019-07-01,1.07,1,2 +20070296,"Stunning Brooklyn Heights House, Manhattan 5 mins",5173627,Tara,Brooklyn,Brooklyn Heights,40.70136,-73.99372,Entire home/apt,1095,2,24,2019-03-24,1.01,1,240 +20070549,"Bklyn private room and private bathrm by F,G train",14898658,Chadanut,Brooklyn,Kensington,40.64293,-73.98043,Private room,56,1,58,2019-01-01,2.48,11,16 +20071095,Residential Area in the heart of Queens,62258958,Kusang,Queens,East Elmhurst,40.75704,-73.89006,Private room,80,1,27,2018-12-18,1.19,1,95 +20071750,Huge duplex with yard - 15 mins to Manhattan!,3309814,Monica,Brooklyn,Bushwick,40.69983,-73.92814,Entire home/apt,154,3,0,,,1,0 +20071791,The real Brooklyn experience in Greenpoint!,6026276,Janelle,Brooklyn,Greenpoint,40.73768,-73.95741,Private room,63,7,0,,,1,0 +20073605,1 bedroom in a charming and cozy apartment in bk.,23299635,Illyse,Brooklyn,Williamsburg,40.71181,-73.95235,Private room,125,2,0,,,1,0 +20073959,Crown Heights Guest House 2L,74541079,Abraham,Brooklyn,Crown Heights,40.66966,-73.93719,Entire home/apt,99,3,39,2019-07-07,1.72,9,91 +20073965,Neat Upper East apartment just for you,33683624,Jorge,Manhattan,Upper East Side,40.77699,-73.9524,Entire home/apt,265,1,0,,,1,0 +20074223,Green Oasis in East Williamsburg,38250741,Erin,Brooklyn,Williamsburg,40.70694,-73.94511,Private room,65,2,2,2017-10-16,0.09,1,0 +20075554,CROWN HEIGHTS GUEST HOUSE 2L2R,74541079,Abraham,Brooklyn,Crown Heights,40.66888,-73.93638,Entire home/apt,199,3,5,2019-06-09,0.42,9,72 +20075580,Kew gardens,5016524,Darshan,Queens,Forest Hills,40.71395,-73.83186,Private room,45,1,2,2017-08-12,0.09,1,0 +20076056,Cozy Room in Upper-East Side Tower,67127998,Mark,Manhattan,Upper East Side,40.7811,-73.95003,Private room,69,20,3,2018-06-23,0.13,1,0 +20082404,Charming room in mid-century comfort and quiet.,4391397,Eva,Brooklyn,Windsor Terrace,40.65814,-73.98495,Private room,65,1,35,2019-07-01,1.57,2,130 +20084595,Upper West Side Town House Apartment,15547192,Bryan,Manhattan,Upper West Side,40.7886,-73.97088,Entire home/apt,82,7,0,,,1,0 +20085006,Bright & Beautiful Brooklyn Boudoir and more! ☺,142590597,Joica,Brooklyn,East New York,40.67296,-73.87435,Entire home/apt,249,1,7,2019-05-21,0.38,6,177 +20085460,Beautiful large 2 bed apartment near Columbia U,21594748,Gabriel,Manhattan,Morningside Heights,40.807,-73.96452,Entire home/apt,220,2,6,2018-03-19,0.27,2,0 +20085462,Sunny 1 Bedroom in heart of Brooklyn!,89691323,Felipe,Brooklyn,Crown Heights,40.67229,-73.94282,Entire home/apt,95,5,3,2018-05-03,0.14,1,20 +20085472,Prime Bushwick location w/ washer/dryer + rooftop!,26558906,Emily,Brooklyn,Bushwick,40.70252,-73.91447,Private room,34,3,7,2019-07-03,0.35,1,71 +20086190,Fabulous and peaceful retreat in Brooklyn,28695008,Danielle,Brooklyn,Bedford-Stuyvesant,40.68838,-73.95649,Entire home/apt,190,5,24,2018-12-08,1.11,1,215 +20086201,Great East Village One Bedroom,32057251,Alexander,Manhattan,East Village,40.72982,-73.98178,Entire home/apt,160,2,0,,,1,0 +20087455,The Dream Room (Private Room),142812843,Eugene,Manhattan,East Harlem,40.78958,-73.93792,Private room,85,1,10,2017-12-03,0.43,2,0 +20089288,"#4 Cozy And Bright Room, 30 Minutes to Manhattan",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68863,-73.8706,Private room,38,30,43,2019-06-01,1.87,6,193 +20089471,Bargain! Amazing location Orchard St in the LES,2174446,Tessa,Manhattan,Chinatown,40.71674,-73.99079,Private room,58,3,1,2017-08-20,0.04,1,0 +20089597,Time Square Private Studio,51445545,Jake,Manhattan,Midtown,40.75347,-73.98567,Entire home/apt,179,2,117,2019-06-20,4.94,1,235 +20089645,近JFK 机场和地铁,107272884,Lynn L,Queens,Richmond Hill,40.69612,-73.84699,Private room,40,1,56,2019-05-26,2.37,4,164 +20089962,"Cozy room weekly , 35 minutes far to Manhattan",142851497,Selçuk,Brooklyn,Sheepshead Bay,40.58632,-73.95335,Private room,45,7,34,2019-05-23,1.47,1,36 +20090389,Studio at Central Park North with fast/easy travel everywhere in NYC!,142855897,Lydia,Manhattan,East Harlem,40.79496,-73.94882,Entire home/apt,150,4,7,2018-09-30,0.56,1,0 +20091705,2 bedroom 1 bath in Midtown West,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.7647,-73.99391,Entire home/apt,200,30,2,2017-10-27,0.09,31,359 +20091873,Chic Union Square One Bedroom,52530136,James,Manhattan,Gramercy,40.73409,-73.98703,Entire home/apt,125,3,5,2018-02-19,0.23,1,0 +20092176,Large suite with private bathroom (15 min to city),85330,Jean,Queens,Forest Hills,40.7118,-73.85285,Private room,50,3,30,2019-07-01,1.28,3,220 +20092369,Private Bedroom on Ridgewood/Bushwick Border,4905474,Francheska,Queens,Ridgewood,40.7002,-73.90596,Private room,60,2,0,,,1,0 +20092506,Master room W OWN bathroom,142878742,Sam,Manhattan,East Harlem,40.79074,-73.94232,Private room,70,1,172,2019-06-24,7.27,3,0 +20092821,Dream bedroom in the heart of downtown Manhattan,23610188,Bess,Manhattan,Chinatown,40.71479,-73.99971,Private room,88,1,1,2017-08-14,0.04,1,0 +20094423,Spacious West Village mid-century modern loft,9216074,Reid,Manhattan,West Village,40.73825,-74.00269,Entire home/apt,370,4,0,,,1,0 +20096504,Beautiful & Sunny Private Bedroom Upper Manhattan,142925986,Ariana,Manhattan,Harlem,40.82624,-73.93925,Private room,100,3,0,,,1,125 +20103452,Upper East Side Apartment,95734400,Jack,Manhattan,Upper East Side,40.77042,-73.94918,Entire home/apt,122,1,4,2017-08-28,0.17,1,0 +20111316,Home away from home,15758568,Mike,Brooklyn,Bedford-Stuyvesant,40.68121,-73.94471,Private room,50,2,17,2019-06-24,0.76,1,89 +20111383,Cozy comfortable Apartment Share with Sleeper Sofa,18547000,Rusty,Queens,Astoria,40.77037,-73.92417,Shared room,60,3,28,2019-07-07,2.26,1,248 +20112687,Awesome Privat Room+Privat bathroom in Bushwick,41861163,Vivian,Brooklyn,Bushwick,40.69521,-73.90959,Private room,50,7,0,,,1,0 +20115612,Spacious private room near central park,142878742,Sam,Manhattan,East Harlem,40.79012,-73.94333,Private room,60,1,163,2019-06-21,6.90,3,61 +20118160,"Big guest room,queen bed,Cozy decoration apartment",142997033,Ozge,Brooklyn,Sheepshead Bay,40.59449,-73.95166,Private room,53,2,9,2019-07-05,2.87,1,357 +20118387,Zippy 2 bdrm apt. in artsy Bushwick,15572977,Alayna,Brooklyn,Bushwick,40.7005,-73.92554,Entire home/apt,150,3,1,2017-08-23,0.04,1,0 +20119459,Comfortable medium size room in downtown New York,8962305,Cici,Manhattan,Lower East Side,40.71375,-73.98988,Private room,75,5,3,2018-08-11,0.13,3,11 +20119649,CROWN HEIGHTS GUESTS HOUSE 3L,74541079,Abraham,Brooklyn,Crown Heights,40.67081,-73.93646,Entire home/apt,129,3,24,2019-07-01,1.04,9,74 +20120690,Modern Williamsburg Penthouse,9691202,Julien,Brooklyn,Williamsburg,40.7188,-73.94283,Entire home/apt,250,7,10,2019-05-25,0.45,1,5 +20120739,Large bedroom plus in 2 bdr apartment uptown.,24559370,Gabrielle,Manhattan,Washington Heights,40.8555,-73.93517,Private room,98,3,4,2018-09-04,0.17,2,0 +20120848,Gramercy Park Prewar Studio w/ Outdoor Space,11822196,Melanie,Manhattan,Gramercy,40.73734,-73.98565,Entire home/apt,99,3,10,2019-06-26,0.51,2,0 +20120907,Hip flat in the heart of Astoria,46801421,Emily,Queens,Astoria,40.77133,-73.92119,Entire home/apt,120,3,11,2019-01-01,0.48,1,6 +20121308,Spacious room w/Private Roof Deck in Shared Apt,118883025,Apeksha,Manhattan,Upper West Side,40.78182,-73.97915,Private room,120,1,141,2019-06-30,5.94,1,231 +20121617,LARGE ROOM/PRIVATE BATHROOM BY PROSPECT PARK,2802251,Cansu,Brooklyn,Flatbush,40.6495,-73.9643,Private room,60,2,2,2017-09-27,0.08,1,0 +20121957,Cozy bedroom in heart of Whitestone/Flushing,26298732,Mojgan,Queens,Flushing,40.77401,-73.80169,Private room,89,1,0,,,1,0 +20124372,"LOVE MANHATTAN 1 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.81005,-73.91977,Private room,40,1,73,2019-05-29,3.16,4,51 +20125262,Chateau de Lambert,66604973,Chris,Brooklyn,Greenpoint,40.72646,-73.95598,Entire home/apt,150,1,0,,,1,0 +20125722,AG's Palace 4,121612198,Maura,Brooklyn,Canarsie,40.6433,-73.91333,Private room,89,1,2,2018-10-07,0.16,4,359 +20127311,Peaceful apartment,10112706,Luz,Queens,Ridgewood,40.70709,-73.89422,Entire home/apt,49,2,59,2019-06-18,3.09,1,24 +20130471,Peaceful home in Bedstuy,10010083,Amanda,Brooklyn,Bedford-Stuyvesant,40.68317,-73.93553,Private room,60,3,26,2019-06-07,1.28,1,47 +20131833,"Designer Chelsea Loft: 2 bedrooms, 2 bathrooms",24050287,Daniel,Manhattan,Chelsea,40.74707,-74.00332,Entire home/apt,500,7,26,2019-05-23,1.25,1,214 +20133468,★ Business Getaway ★ Cozy & Warm | Laptop Friendly,131697576,Anisha,Bronx,East Morrisania,40.83336,-73.88636,Private room,75,2,71,2019-06-22,3.00,4,358 +20133862,"Cozy West 15th Street Studio, Chelsea",22541573,Ken,Manhattan,Chelsea,40.74119,-73.99941,Entire home/apt,169,30,0,,,87,362 +20134321,1-BR Apartment in the Heart of Williamsburg,10128779,Joseph,Brooklyn,Williamsburg,40.71759,-73.96641,Entire home/apt,150,4,8,2019-04-29,0.35,1,0 +20134453,Modern 1 Bedroom Near Union Square & East Village,8760900,Rory,Manhattan,East Village,40.73241,-73.98783,Entire home/apt,120,3,41,2019-06-29,2.23,1,4 +20134851,"Bright, airy loft in Bushwick's street art scene",4305955,Brittany,Brooklyn,Bushwick,40.70543,-73.92306,Entire home/apt,165,4,12,2019-06-17,0.55,1,0 +20135026,Personal Room/Bathroom with Large Shared Living,6971106,Michael,Manhattan,Upper West Side,40.79957,-73.96989,Private room,72,3,4,2017-10-24,0.17,2,0 +20135169,New Amazing Apartment In Washington Heights,143181766,David,Manhattan,Washington Heights,40.85213,-73.9336,Entire home/apt,120,3,32,2019-04-22,1.39,1,3 +20135361,Incredible Views! Zen-Style Residence In The Sky,118695056,Cameron & Dione,Brooklyn,Downtown Brooklyn,40.69201,-73.98713,Entire home/apt,275,3,20,2019-05-15,0.96,2,35 +20135558,"Awesome Newly Renovated 2-bdrm. - E,F,J trains.",143186772,Femi,Queens,Jamaica,40.69499,-73.7991,Entire home/apt,130,2,95,2019-06-27,4.19,1,117 +20136121,1 BD cozy house near beach,90751766,Valeriy,Staten Island,Midland Beach,40.57294,-74.09615,Entire home/apt,90,4,8,2019-05-29,0.40,1,179 +20136828,2 BD cozy house,143199593,Val,Staten Island,Midland Beach,40.57509,-74.09606,Entire home/apt,105,4,20,2019-06-10,1.05,1,358 +20136870,1 BEDROOM CENTRAL PARK / BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77548,-73.98965,Entire home/apt,190,30,5,2019-02-21,0.38,25,181 +20137347,Cozy One Bedroom in Spanish/East Harlem,51532290,Janelle,Manhattan,East Harlem,40.79815,-73.93475,Entire home/apt,82,2,3,2017-08-24,0.13,1,0 +20137576,Room in a charming and spacious apartment in DUMBO,19990362,Sara,Brooklyn,Vinegar Hill,40.70149,-73.98091,Private room,69,5,5,2019-04-19,0.22,1,166 +20137618,Best Sun-Filled Room in NYC with Private Terrace!,2068274,Vinko,Manhattan,East Village,40.72717,-73.98064,Private room,99,3,2,2018-08-30,0.09,1,0 +20137770,Private room in doorman building in Downtown BK,34365131,Sarah,Brooklyn,Downtown Brooklyn,40.69591,-73.98335,Private room,58,5,1,2017-08-13,0.04,1,0 +20138516,"Private, elegant, apartment with beautiful garden",94676949,Althea,Brooklyn,East Flatbush,40.6413,-73.9236,Entire home/apt,100,2,97,2019-07-07,4.38,1,30 +20139305,Spacious 1BR near park & subways,6985109,Geoffrey,Brooklyn,Prospect Heights,40.67335,-73.96763,Entire home/apt,121,9,21,2019-06-18,1.14,1,179 +20139611,"R#1Very nice, comfortable, quiet and peaceful room",95958773,Maryna,Brooklyn,Brighton Beach,40.57717,-73.9608,Private room,95,1,7,2019-06-27,0.32,3,342 +20141920,"12 Mins to Manhattan, 25 Mins to Times Square.",136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69537,-73.93598,Entire home/apt,389,1,107,2019-07-06,4.77,3,64 +20145152,Corner top floor apt - Williamsburg,1318986,May,Brooklyn,Williamsburg,40.70829,-73.95682,Entire home/apt,90,1,0,,,1,0 +20147537,Paradise Room (Private Room),142812843,Eugene,Manhattan,East Harlem,40.79104,-73.93805,Private room,75,1,12,2017-11-05,0.51,2,0 +20147628,Beautiful modern apartment with private deck!,4391397,Eva,Brooklyn,Windsor Terrace,40.65783,-73.98236,Entire home/apt,150,2,4,2019-04-28,0.34,2,4 +20147886,Nice clean and quiet bedroom in two bedroom app,119680716,Petar,Brooklyn,Kensington,40.6368,-73.96857,Private room,35,1,6,2017-08-26,0.26,1,0 +20148004,Sublet in Brooklyn,143330206,Adi,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92606,Private room,45,5,2,2017-09-14,0.09,1,0 +20148331,"BIG-3 BDRM house, 1hr to Manhattan, near beach",7927832,Yulia,Staten Island,"Bay Terrace, Staten Island",40.55182,-74.14439,Entire home/apt,150,3,1,2018-08-16,0.09,1,0 +20148616,1 BEDROOM / HIGH FLOOR / BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77104,-73.98522,Entire home/apt,190,30,6,2019-05-16,0.31,25,190 +20149300,Crown Heights Guest House 3R3L,74541079,Abraham,Brooklyn,Crown Heights,40.66955,-73.93576,Entire home/apt,199,4,7,2019-04-29,0.34,9,89 +20149318,Wonderful room for rent in the Bronx,19297877,Albena,Bronx,Bronxdale,40.85527,-73.86719,Private room,35,1,21,2018-12-11,0.96,1,284 +20149903,2 Amazing Bedrooms Near Airport Free Parking,143351162,Marcia,Queens,Queens Village,40.70723,-73.72948,Private room,75,1,16,2018-09-20,0.71,1,342 +20150588,"Spacious Room in Woodside, Queens",30998389,Antonio José,Queens,Woodside,40.75398,-73.90083,Private room,40,10,1,2018-12-02,0.14,1,0 +20150770,Luxury condo- private room + bath w cable TV/W/D,75967547,Kristin,Manhattan,Harlem,40.80524,-73.95254,Private room,99,2,17,2018-12-03,0.73,2,0 +20150874,Modern and artsy bedroom on top floor of Duplex,30933708,Emmanuel,Brooklyn,Bushwick,40.69711,-73.91519,Private room,75,2,8,2018-07-16,0.35,1,0 +20151455,CHARMING ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77232,-73.90369,Private room,40,2,101,2019-06-23,4.29,8,279 +20152264,"Spacious, cozy, fully equipped apartment with AC",10461088,Noam,Brooklyn,Carroll Gardens,40.6831,-73.99945,Entire home/apt,180,4,0,,,1,0 +20152950,Sunny Spacious 1BR Yard Roof at GrattanHouse,128414475,Nitya,Brooklyn,Williamsburg,40.70609,-73.92828,Private room,91,1,3,2017-08-27,0.13,3,0 +20153102,"Guest room in High Ceiling Duplex, Williamsburg! 3",40511252,Auset,Brooklyn,Williamsburg,40.70754,-73.95291,Private room,55,30,3,2018-11-01,0.28,3,0 +20153395,Room in the best location in the Lower East Side,52127857,Beto,Manhattan,Lower East Side,40.7181,-73.98167,Private room,120,2,1,2018-02-23,0.06,2,0 +20153406,1 bedroom by Empire State Building/Penn Station,56784103,Lisa,Manhattan,Kips Bay,40.74482,-73.97827,Private room,69,15,25,2019-05-18,1.10,1,29 +20153703,Sunny Large Bedroom in Shared Apartment (W Harlem),48878986,Kaylie,Manhattan,Harlem,40.82086,-73.95119,Private room,60,3,1,2017-08-06,0.04,1,0 +20154569,"Flatiron Loft 3BR/1.5 Bath Best Location +30 days",35635299,Mel,Manhattan,Midtown,40.74353,-73.98364,Entire home/apt,333,30,66,2019-06-23,2.81,1,210 +20155633,The Emerald of Queens/30 mins from NYC!,126504342,Otto,Queens,Flushing,40.76271,-73.79595,Private room,50,2,74,2019-06-26,3.19,1,246 +20155838,Clean homey renovated convenient 15m to Manhattan,131035061,Lucky,Queens,Sunnyside,40.7463,-73.91388,Private room,60,3,105,2019-06-14,4.49,2,90 +20155864,"New house in Rockaway Beach, NYC!",519720,Anna,Queens,Arverne,40.59425,-73.79506,Entire home/apt,150,2,2,2019-03-11,0.09,1,309 +20156079,Chic Williamsburg Apartment 2 Bedroom,126531152,Francesca,Brooklyn,Williamsburg,40.713,-73.94381,Entire home/apt,150,1,4,2017-08-14,0.17,1,0 +20156382,"The BABY ""O""",143431362,Okela,Brooklyn,East Flatbush,40.63831,-73.94572,Private room,89,1,14,2019-05-05,0.62,1,364 +20162513,Cozy Studio Close to Broadway and Times Square,683142,Jose,Manhattan,Hell's Kitchen,40.76242,-73.99482,Entire home/apt,135,2,3,2017-12-26,0.13,1,0 +20163695,"*Spacious* Artist’s Home, mins to NYC, near train",43623968,Lauren,Queens,Rego Park,40.72835,-73.86108,Entire home/apt,115,1,78,2019-06-12,3.51,1,343 +20163793,Spacious Studio in Residential Neighborhood,90463984,Isabelle,Queens,Richmond Hill,40.6997,-73.84236,Entire home/apt,100,7,3,2019-06-24,0.17,3,324 +20164612,"Plant Haven: Cozy, spacious room in Manhattan",72377141,Ben,Manhattan,Upper West Side,40.80012,-73.96896,Private room,76,7,2,2017-11-25,0.09,3,0 +20164634,Quiet 1BR in Ft Greene! Close to Ft Greene park,12586279,Sophia,Brooklyn,Fort Greene,40.68841,-73.97283,Entire home/apt,110,2,5,2017-11-23,0.22,1,0 +20164923,1BR w/ Private Bath - Brooklyn Loft with Roof-deck,119260265,Melissa,Brooklyn,Clinton Hill,40.68878,-73.96156,Private room,60,5,4,2019-01-04,0.17,1,0 +20165918,Private Room near LGA,52361698,Johanna,Queens,East Elmhurst,40.76279,-73.87429,Private room,40,1,1,2019-07-02,1,1,226 +20165947,Bright & Spacious Artist loft in BK!,17290200,Martina,Brooklyn,Williamsburg,40.70503,-73.93699,Private room,50,7,1,2017-08-28,0.04,1,0 +20166475,"Large, quiet, sunny room: close to Manhattan & LGA",30442701,Nick & Nadia,Queens,Astoria,40.7651,-73.91304,Private room,49,3,36,2018-06-21,1.55,1,0 +20166644,"Cozy, Quiet Convenient in Prime Soho",84143174,Lindsey,Manhattan,Nolita,40.72427,-73.99387,Entire home/apt,200,1,13,2019-05-26,0.56,1,0 +20167264,"Gorgeous ""Smart"" Room in Manhattan 30 min to WTC",10109608,Aj,Manhattan,Harlem,40.81145,-73.95067,Entire home/apt,65,3,9,2017-11-09,0.40,2,0 +20167609,Large Sunlit Private Room in WIlliamsburg,21619571,Andrew,Brooklyn,Williamsburg,40.71272,-73.96378,Private room,68,1,1,2017-08-20,0.04,1,0 +20167736,"Renovated Luxury Apt $199/Sleeps 4, Labor Day Wknd",21060836,Laura,Manhattan,Midtown,40.7534,-73.97186,Entire home/apt,199,3,0,,,2,0 +20167771,【アクセス抜群】空港10分・マンハッタン10分!駅徒歩5分の好立地なお部屋です,143534216,Hiroko,Queens,Elmhurst,40.7466,-73.88812,Private room,80,2,8,2017-10-14,0.35,1,0 +20169817,Eclectic NY Apartment 15 minutes to LGA & JFK,143555322,Shuvo,Queens,Jamaica Hills,40.71062,-73.80145,Private room,50,1,4,2017-08-18,0.17,1,0 +20170372,Spacious room an beautiful view to pedestrian zone,143554049,Leslie,Queens,Ridgewood,40.70061,-73.911,Private room,78,3,60,2019-06-30,2.66,1,291 +20170965,Luxe Restored Catholic Church turned Apts 1BR/.5Ba,22375303,Elle,Brooklyn,Bedford-Stuyvesant,40.68185,-73.9306,Private room,65,1,87,2019-06-23,3.75,2,254 +20171018,Comfortable convenient Williamsburg bedroom!,50688724,S.A.,Brooklyn,Williamsburg,40.70639,-73.95552,Private room,55,3,58,2019-06-10,2.50,2,298 +20171179,"House of Rain +(Because I’m a pluviophile)",141141822,Tiffany,Manhattan,Harlem,40.81078,-73.94482,Private room,63,3,50,2019-06-30,3.01,1,315 +20171270,Neat Cozy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75686,-73.81327,Private room,43,2,65,2019-06-07,2.87,6,364 +20171578,Experience the heart of Hell's Kitchen.,126641287,Larry Raul,Manhattan,Hell's Kitchen,40.76505,-73.98757,Private room,140,2,54,2018-05-22,2.36,1,0 +20171599,Luxury mini Suite.,740812,Monica,Bronx,Westchester Square,40.83758,-73.84382,Entire home/apt,72,2,35,2019-06-23,1.52,2,129 +20171625,Apt. & the City.,75360607,Fernando,Queens,Sunnyside,40.74026,-73.92517,Entire home/apt,199,4,63,2019-06-01,2.81,2,61 +20173075,Spacious bedroom with private entrance + roofdeck,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68305,-73.95753,Private room,90,2,55,2019-06-19,2.42,3,110 +20173308,Cozy Private Rm #2C Two Beds Near JFK and J Train,62843071,Kevin And Kitty,Queens,Woodhaven,40.69606,-73.85226,Private room,55,1,86,2019-07-07,3.68,4,248 +20173894,Lovely apartment in Brooklyn.,87988,Samantha,Brooklyn,Carroll Gardens,40.68201,-73.99535,Entire home/apt,120,3,2,2018-08-24,0.09,2,0 +20173955,Cozy studio apartment Lower East Side / Lil Italy,67754093,Jayd,Manhattan,Lower East Side,40.72013,-73.9922,Entire home/apt,135,14,0,,,1,0 +20173972,Spacious bedroom w/ private entrance + roofdeck,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68438,-73.95688,Private room,80,2,64,2019-07-06,2.73,3,116 +20174127,"Nice, Clean and Comfortable Flat, Upper East Side",2778578,Isin,Manhattan,Upper East Side,40.77553,-73.9539,Private room,154,4,5,2018-09-06,0.22,1,27 +20174221,Huge Pre-War 1BD By Central Park,22373916,Steven,Manhattan,Upper West Side,40.77841,-73.97968,Entire home/apt,175,7,2,2017-11-18,0.09,1,0 +20174551,"Clean and bright apartment in Harlem, 2 BR",143603020,Justine,Manhattan,Harlem,40.812,-73.94189,Entire home/apt,80,5,5,2018-06-25,0.22,1,0 +20174811,Spacious Room and Backyard in Modern Space,22645955,Micah,Brooklyn,Bushwick,40.69786,-73.91362,Private room,50,20,3,2017-08-27,0.13,1,2 +20175117,Charming One Bedroom Apt on the Upper East Side.,143610690,Monika,Manhattan,Upper East Side,40.77255,-73.95457,Entire home/apt,125,1,131,2019-06-17,5.70,1,220 +20175518,Extra Large 1 Bedroom in Kensington/Ditmas Park,6658169,Michelle,Brooklyn,Kensington,40.63907,-73.97399,Entire home/apt,150,2,0,,,1,0 +20175580,Times Square Cozy Bedroom in Luxury Building,3370543,Thomas,Manhattan,Hell's Kitchen,40.75747,-73.99039,Private room,174,3,17,2019-06-23,0.73,1,65 +20175751,Ideal place in trendy part of Brooklyn.,93751838,Hans,Brooklyn,Bushwick,40.70575,-73.92193,Private room,40,1,4,2017-09-28,0.18,1,0 +20176000,Heavenly Pad!!!,142447586,Winnie & Andy,Bronx,Williamsbridge,40.88032,-73.85877,Private room,45,3,33,2019-06-19,1.47,4,325 +20176191,Enormous Private Room in Shared Apartment,6971106,Michael,Manhattan,Upper West Side,40.79938,-73.97057,Private room,100,5,0,,,2,0 +20176653,"Light, airy, and spacious bedroom in Bushwick.",143631031,William,Brooklyn,Bushwick,40.70135,-73.92402,Private room,50,2,31,2018-06-25,1.34,1,0 +20177584,"Bright, Clean, Modern 1 BR Rooftop & Gym",712992,Daniel,Brooklyn,Greenpoint,40.72025,-73.9436,Entire home/apt,115,1,92,2019-06-28,3.93,1,33 +20182193,Not active,50740281,Jake,Manhattan,Chelsea,40.73686,-73.99349,Entire home/apt,175,5,0,,,1,0 +20183458,Times SQ 15 min away. Big sunny apartment!!! Rare!,11297009,Lex,Manhattan,Harlem,40.81574,-73.95261,Entire home/apt,130,1,35,2019-06-21,1.63,4,361 +20183579,Regina's Dainty One bedroom Apartment close to All,113682832,Harry,Queens,Jamaica,40.69765,-73.8114,Entire home/apt,63,3,14,2019-04-28,0.90,2,257 +20183695,Sunny and Spacious Apartment With Private Terrace!,124046841,Corey & Anna,Brooklyn,Prospect Heights,40.67714,-73.96437,Entire home/apt,130,2,0,,,1,0 +20183883,Time Square & Central Park Condo Sleeps6,76626328,Zachary,Manhattan,Hell's Kitchen,40.76336,-73.98646,Entire home/apt,275,2,86,2019-06-23,3.68,1,137 +20184035,La Sienna - Studio Apartment,143700620,Christina,Manhattan,Harlem,40.80942,-73.95246,Entire home/apt,130,3,40,2019-06-18,1.76,1,275 +20184562,Cozy One Bedroom Apartment + Loft in East Village,61862775,Melissa,Manhattan,East Village,40.72698,-73.98649,Entire home/apt,154,3,2,2017-08-28,0.09,1,0 +20185035,Cozy Bright Room in Greenpoint,133773191,Nikita,Brooklyn,Greenpoint,40.72677,-73.94578,Private room,43,2,153,2019-06-22,6.59,1,14 +20185442,Renovated 1 Bedroom in Prime Bayridge,48685877,Ivana,Brooklyn,Bay Ridge,40.62707,-74.02817,Shared room,225,3,1,2017-08-31,0.04,1,87 +20186021,"Bright, clean, cosy room in the heart of Brooklyn!",94113622,Darlene,Brooklyn,Bushwick,40.68252,-73.90651,Private room,60,3,2,2017-08-29,0.09,2,165 +20186030,Private Room in Spacious Sunnyside Apartment,137625836,Evrim,Queens,Sunnyside,40.74082,-73.91874,Private room,60,4,3,2018-06-29,0.13,1,0 +20186673,The Brick House,143725871,Nathanael,Manhattan,Upper East Side,40.77987,-73.94804,Entire home/apt,180,1,3,2017-09-07,0.13,1,0 +20186834,Spacious 2 Bedrooms w/ Private Entrance + Bathroom,4609956,Sarah,Brooklyn,Bedford-Stuyvesant,40.68249,-73.95683,Private room,150,2,5,2018-08-31,0.21,3,102 +20186887,"Spacious, Sun-Filled 1BR - Columbia Waterfront",26823131,Allie,Brooklyn,Columbia St,40.68674,-74.00073,Entire home/apt,169,1,11,2017-11-25,0.47,1,0 +20187293,GiGi's Stunning Place,60839109,Gloria,Brooklyn,East New York,40.67118,-73.86821,Entire home/apt,83,1,42,2019-06-30,1.79,1,348 +20187779,Beautiful bright room Near JFK & J Train#2,107272884,Lynn L,Queens,Richmond Hill,40.69584,-73.84727,Private room,40,1,59,2019-06-08,2.52,4,354 +20188527,Quiet light-filled bedroom in the heart of Astoria,2994103,Sara,Queens,Ditmars Steinway,40.77614,-73.91324,Private room,75,2,2,2017-10-28,0.10,1,0 +20188787,Charming and Light-filled 1 BR in Crown Heights,83550011,Rubyn,Brooklyn,Crown Heights,40.67015,-73.95662,Entire home/apt,89,2,8,2018-04-23,0.34,1,0 +20188905,"Spacious 1BR in Park Slope, Brooklyn NEAR PARK",8345393,Alexandra,Brooklyn,South Slope,40.66563,-73.98669,Entire home/apt,150,2,3,2017-08-24,0.13,1,0 +20189290,"Large and in charge: pvt ""dungeon"" apt. ❤️❤️❤️❤️❤️",16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.679,-73.91078,Entire home/apt,68,30,11,2019-05-31,0.48,5,332 +20189718,2 BR Apt - Great Midtown location off 5th Avenue,26490904,Deo,Manhattan,Midtown,40.76149,-73.97536,Entire home/apt,200,30,5,2018-10-19,0.26,4,280 +20190053,"Beautiful, family friendly place with great views",25415637,Jonathan,Brooklyn,Columbia St,40.68356,-74.00301,Entire home/apt,144,1,11,2018-09-03,0.48,1,0 +20190343,Kid-Friendly Cobble Hill Brooklyn Home,52425281,Reedu,Brooklyn,Boerum Hill,40.68614,-73.99082,Entire home/apt,150,4,0,,,1,0 +20190580,"Large bedroom in 2BR, 1BA apt in East Village- $75",11713422,Saket,Manhattan,East Village,40.72967,-73.98595,Private room,75,2,2,2017-09-12,0.09,2,0 +20190740,Cozy Family Condo Bed Stuy (with amenities!),5083652,Asher,Brooklyn,Bedford-Stuyvesant,40.68956,-73.93853,Entire home/apt,150,2,6,2019-01-20,0.26,1,4 +20191216,Historic Landmark Neighborhood - Upper East Side,143768763,Chi,Manhattan,Upper East Side,40.78612,-73.95359,Private room,105,3,29,2019-06-30,1.31,1,75 +20191868,3 BR - Great Midtown location off 5th Avenue,26490904,Deo,Manhattan,Midtown,40.76255,-73.97453,Entire home/apt,350,30,2,2018-11-01,0.21,4,332 +20191974,BEAUTIFUL BRAND NEW MODERN WILLIAMSBURG APT,7116018,Brittini,Brooklyn,Williamsburg,40.71041,-73.95773,Entire home/apt,200,3,0,,,1,0 +20191991,"Entire PVT 3BR townhouse apt, Brooklyn.❤️❤️❤️❤️❤️",16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.68133,-73.90947,Entire home/apt,150,28,3,2019-05-26,0.16,5,312 +20192860,15 Minutes Manhattan+Private Bathroom+Huge Balcony,103488282,Kaka,Queens,Sunnyside,40.74555,-73.92139,Private room,98,1,106,2019-06-12,4.54,5,123 +20193058,Light-Filled Top Floor of 4BR Townhouse.❤️❤️❤️❤️❤️,16534981,Suzy,Brooklyn,Bedford-Stuyvesant,40.67925,-73.91017,Entire home/apt,122,28,7,2018-09-23,0.30,5,226 +20193790,✮ Gateway to the Boroughs ✮ Spacious Home Base ✮,143796248,Robert,Brooklyn,Williamsburg,40.71029,-73.95148,Private room,90,1,1,2017-08-06,0.04,1,0 +20193830,Family brownstone with backyard.,1294005,Peter,Brooklyn,Clinton Hill,40.68828,-73.96215,Entire home/apt,450,2,5,2018-06-30,0.22,1,0 +20194264,"Nice room in Astoria, NYC",59359620,Amel,Queens,Ditmars Steinway,40.78083,-73.91145,Entire home/apt,125,2,0,,,1,0 +20194342,Two private bedrooms; feet from subway (6),70418696,Brady,Manhattan,East Harlem,40.78757,-73.95089,Private room,185,2,98,2019-06-26,5.19,1,103 +20194454,"MidTown 45 - New York, NY, Hotel Room, Sleeps 2ppl",136676366,Karl,Manhattan,Midtown,40.75155,-73.97356,Private room,359,3,0,,,1,0 +20194665,"20min To Times Square, 10min LGA",139867352,Oscar,Queens,Ditmars Steinway,40.78088,-73.90819,Private room,39,1,178,2019-06-22,7.57,2,327 +20194791,15 Minutes to Manhattan and Safe Neighborhood!,58403098,Nilufer,Queens,Sunnyside,40.73676,-73.92756,Private room,65,2,72,2019-06-30,3.14,3,98 +20194913,Sweet room with private bathroom.,76359133,FuKang,Queens,Fresh Meadows,40.7385,-73.79241,Private room,60,1,100,2019-06-22,4.27,3,311 +20194954,Relaxing & cozy apt in Brooklyn mins to Manhattan,13462855,Travis,Brooklyn,Bedford-Stuyvesant,40.68004,-73.93928,Entire home/apt,170,3,62,2019-06-30,2.70,2,280 +20195496,Serenity and Ease in Brooklyn!,5775499,Samar,Brooklyn,Bedford-Stuyvesant,40.68115,-73.90999,Private room,60,5,11,2019-06-01,0.49,1,0 +20195539,Leah's Place,143817547,Leah,Manhattan,East Harlem,40.78809,-73.94319,Entire home/apt,200,7,3,2017-10-09,0.14,1,0 +20196339,Private Guest Suite Less than 10 min to JFK :),7097558,Louise,Queens,South Ozone Park,40.66941,-73.79148,Entire home/apt,50,1,310,2019-07-06,13.27,2,23 +20196464,Upper Westside apt with huge private terrace.,135940325,Ilona,Manhattan,Upper West Side,40.77692,-73.98111,Entire home/apt,206,5,0,,,1,0 +20196860,Comfy and Convenient Private Astoria Room,73028890,Esther,Queens,Astoria,40.75645,-73.91458,Private room,50,4,1,2017-08-17,0.04,1,0 +20202650,Furnished one bedroom beauty in midtown NYC,120762452,Stanley,Manhattan,Murray Hill,40.74847,-73.97562,Entire home/apt,222,30,1,2018-08-03,0.09,50,365 +20202971,Immaculate one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74947,-73.9761,Entire home/apt,175,30,3,2019-06-14,0.21,50,342 +20203086,Crown Heights! Newly remodeled suite pvt entrance,89893236,Lakiea,Brooklyn,Prospect-Lefferts Gardens,40.66156,-73.94706,Entire home/apt,90,1,81,2019-06-23,3.50,1,35 +20203433,Modern & Bright 2BR Entire Apt w/ Private Terrace,9592775,Melissa,Brooklyn,South Slope,40.66729,-73.98359,Entire home/apt,196,2,93,2019-06-21,4.10,1,154 +20204055,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.73895,-73.9997,Entire home/apt,170,30,1,2017-11-13,0.05,87,278 +20204527,Spacious homey clean convenient 15m to Manhattan,131035061,Lucky,Queens,Sunnyside,40.74654,-73.91842,Private room,70,3,91,2019-06-26,3.92,2,75 +20204751,Bright 3 bedroom loft in the heart of soho.,10768801,Tom,Manhattan,SoHo,40.72553,-74.00002,Entire home/apt,899,3,5,2019-05-01,0.22,1,161 +20205846,Cozy room+15mins Manhattan/15mins Laguradia,103488282,Kaka,Queens,Sunnyside,40.74572,-73.92198,Private room,78,1,74,2019-06-22,3.19,5,88 +20205958,Full-Service Junior Suite in Midtown Manhattan,143908925,Sarah,Manhattan,Midtown,40.76549,-73.98166,Entire home/apt,399,3,1,2018-12-03,0.14,1,0 +20206499,Spacious and cozy apartment in Upper West Side!,4281324,Camila,Manhattan,Morningside Heights,40.80445,-73.96649,Entire home/apt,120,6,1,2017-11-19,0.05,1,0 +20206733,Cute Bedroom Available in Heart of Williamsburg,58353872,Lacey,Brooklyn,Williamsburg,40.71987,-73.96141,Private room,55,5,4,2019-07-01,0.17,1,0 +20206749,Ideal Greenpoint 1 Bedroom,3402375,Colin,Brooklyn,Greenpoint,40.73038,-73.95548,Entire home/apt,189,1,0,,,1,0 +20207132,Clean spacious 1 bedroom apt,445894,Alexa,Brooklyn,Bath Beach,40.60106,-74.00933,Entire home/apt,95,2,2,2017-08-22,0.09,2,0 +20207945,Cozy locked Bedroom - 10 minutes from Times Square,52166457,Jacketta,Queens,Long Island City,40.74715,-73.94605,Private room,70,2,6,2018-10-02,0.26,1,0 +20208354,Bed Stuy Hideaway,8773518,Robb,Brooklyn,Bedford-Stuyvesant,40.68564,-73.94508,Private room,60,2,9,2019-06-03,0.40,3,72 +20208787,Renovated 1br w/ private bath steps from the train,39808438,Easton,Brooklyn,Bushwick,40.68817,-73.91523,Private room,45,2,31,2019-05-24,1.35,5,0 +20209878,Haven in the Heights: stylish home away from home,56985517,Alexandra,Brooklyn,Crown Heights,40.67334,-73.94099,Entire home/apt,120,2,48,2019-06-22,2.44,1,227 +20210285,ROOM AC WI-FI PARKING CABLE FOR 2,131684478,Mervin (Michael),Staten Island,West Brighton,40.63291,-74.11749,Private room,37,2,25,2018-09-01,1.11,3,306 +20211113,Brooklyn High Rise w/ Amazing View,15675912,Shawn,Brooklyn,Prospect-Lefferts Gardens,40.65673,-73.96058,Entire home/apt,125,4,4,2018-01-01,0.18,1,0 +20211737,Spacious room in beautiful apartment,61649734,Giulliana,Brooklyn,Bushwick,40.6902,-73.91515,Private room,50,1,61,2019-06-23,2.60,2,9 +20212025,Cozy Studio in Beautiful Bed-Stuy,7248357,Ashley,Brooklyn,Bedford-Stuyvesant,40.68537,-73.9329,Entire home/apt,75,2,1,2017-08-11,0.04,1,0 +20212322,"Furnished, Comfortable Studio with great service",83786650,Bridge,Manhattan,Upper East Side,40.76143,-73.96103,Entire home/apt,80,30,2,2018-09-16,0.14,8,311 +20212531,Sunny Guest Room with Private Balcony,10254539,Laura,Brooklyn,Crown Heights,40.66426,-73.95773,Private room,60,1,9,2018-04-14,0.46,1,0 +20212707,"Quite, clean & relaxing double bed room",143979484,Blan,Manhattan,Washington Heights,40.84532,-73.93814,Private room,68,3,34,2019-06-09,1.69,2,253 +20213045,Spacious and Modern 2 Bed/2.5 Bath Dream Townhouse,2678122,Tasha,Brooklyn,Williamsburg,40.71687,-73.95012,Entire home/apt,300,5,5,2019-06-12,0.35,3,31 +20213442,Master Bedroom in Jazz Era Townhome,7285042,Max,Brooklyn,Crown Heights,40.67586,-73.9504,Private room,75,3,5,2017-10-28,0.22,1,0 +20213659,"MASTER, NEW, PRIVATE BEDROOM, 10 MINS from JFK",107915864,Mina,Queens,Howard Beach,40.66778,-73.85345,Private room,89,1,5,2019-06-19,5,4,317 +20213732,Lovely Brooklyn room near the park & subway,6927464,Grace,Brooklyn,Crown Heights,40.67377,-73.95398,Private room,53,1,0,,,1,0 +20213973,EXTRA LARGE PRIVATE BEDROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77368,-73.90499,Private room,62,2,95,2019-05-26,4.09,8,327 +20214413,Bed Stuy Beautiful !!!!,143807664,Chaka,Brooklyn,Bedford-Stuyvesant,40.68606,-73.93861,Entire home/apt,100,3,50,2019-06-09,2.16,1,96 +20215712,The Bad Pad,144013169,Kara,Manhattan,West Village,40.73552,-74.00554,Entire home/apt,300,3,19,2019-06-27,0.81,1,12 +20216170,"Cozy, Sunny, Spacious 1 Bedroom Gem in Greenpoint!",144017474,Kristin,Brooklyn,Greenpoint,40.73639,-73.95342,Entire home/apt,83,1,85,2019-07-01,3.74,2,0 +20216401,Convenient & Cozy Bushwick Bedroom,12999475,Seth,Brooklyn,Bushwick,40.70032,-73.91684,Private room,60,1,2,2017-08-27,0.09,1,0 +20216511,Beautiful NYC Apartment in Popular Brooklyn spot!!,132735454,John,Brooklyn,Bushwick,40.69549,-73.91838,Private room,30,1,4,2017-08-19,0.17,1,0 +20218990,"Cozy Two-Bedroom near Manhattan, airports & more!",23267477,Fanny & Hong,Queens,East Elmhurst,40.75482,-73.89369,Entire home/apt,118,2,119,2019-07-02,5.20,1,87 +20223912,Great apt with outdoor space!,13032983,Mattias,Brooklyn,Williamsburg,40.71703,-73.94298,Entire home/apt,150,5,1,2017-08-19,0.04,1,0 +20223927,"True Skyline View, minutes to Manhattan",12302023,Joe,Brooklyn,Greenpoint,40.72509,-73.95418,Private room,92,6,48,2019-06-30,2.31,1,43 +20224936,Super Cute Studio in Heart of Greenpoint,35894876,Kristin,Brooklyn,Greenpoint,40.72505,-73.94449,Entire home/apt,99,1,114,2019-06-20,4.97,1,255 +20227210,"Sunny one-bedroom apt., close to Prospect Park",1553230,Kate,Brooklyn,Prospect Heights,40.67635,-73.97113,Entire home/apt,124,2,9,2019-02-19,0.39,1,0 +20227428,Douglaston Apartment Room A,18996093,Leonard,Queens,Little Neck,40.75794,-73.72956,Private room,45,1,12,2019-06-22,0.55,5,133 +20227482,Brooklyn Mezzanine Apartment,122120711,Kristin,Brooklyn,Williamsburg,40.70745,-73.94484,Entire home/apt,175,4,2,2017-08-27,0.09,1,0 +20228284,"Harlem 1 BR apartment w/ washer&dryer, near subway",132342343,Yve,Manhattan,Harlem,40.81246,-73.94906,Entire home/apt,147,2,64,2019-06-20,2.85,1,72 +20228476,Prospect Heights gorgeous apartment,93220722,Jenelle,Brooklyn,Crown Heights,40.6762,-73.9617,Entire home/apt,75,2,1,2018-03-24,0.06,1,72 +20230482,Mishay's Hut,144138036,Mishay,Queens,St. Albans,40.69167,-73.75495,Entire home/apt,99,2,54,2019-06-24,2.34,1,267 +20230778,Cute and Spacious Studio in the Heart of Flushing,30852228,Sarah,Queens,Flushing,40.755,-73.82333,Entire home/apt,120,1,2,2017-08-29,0.09,1,0 +20230917,Private room with a private backyard,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69562,-73.95107,Private room,47,5,5,2017-11-04,0.21,2,0 +20231046,Newly renovated 2 bed/2 bath in heart of Bushwick,313079,Mia,Brooklyn,Bushwick,40.69426,-73.90785,Entire home/apt,157,3,70,2019-06-21,3.06,1,223 +20231480,"Cosy 25minutes manhatan,15 min Barclays Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65593,-73.91798,Private room,80,7,5,2018-05-07,0.26,9,206 +20231737,"Bright, Clean Room with Private Bathroom",2065453,Ora & Scout,Brooklyn,Crown Heights,40.6775,-73.95404,Private room,69,1,7,2018-09-03,0.33,3,0 +20231900,Argyle Road Brooklyn,4581681,Sarah,Brooklyn,Flatbush,40.63646,-73.96484,Entire home/apt,250,2,58,2019-06-30,2.70,1,312 +20231901,Spacious/ elegant one bed apt. - perfect location,654586,Osh,Manhattan,Greenwich Village,40.72982,-74.00034,Entire home/apt,175,2,25,2019-07-01,1.78,1,64 +20232745,SweetSpot in Pelham Pkwy S.E. Bronx NY 5 Star stay,120231560,Hiasselen,Bronx,Bronxdale,40.85634,-73.86633,Private room,45,2,21,2019-03-18,0.91,1,280 +20233308,Quiet/clean 1br WashHeights/Inwood Entire apt,142235171,Jessica,Manhattan,Washington Heights,40.85598,-73.93427,Entire home/apt,80,2,18,2019-06-18,0.77,1,0 +20234416,Amazing 1100 Sqft 2 Bd Penthouse in Williamsburg,43424825,Seth,Brooklyn,Williamsburg,40.70955,-73.9491,Entire home/apt,217,3,24,2019-06-16,1.05,1,14 +20234674,"Pretty, 775 sq ft, 1.75 BR, Manhattan Apt.",143977790,Nic,Manhattan,Upper East Side,40.77751,-73.95198,Entire home/apt,129,2,25,2019-06-30,1.09,1,0 +20235361,2 Bedrooms 5 beds apt perfect for groups,144197377,Riley,Manhattan,East Harlem,40.79873,-73.93263,Entire home/apt,199,1,34,2018-04-26,1.50,1,0 +20235591,Spacious Studio with computer desk,144200262,Anna,Bronx,North Riverdale,40.90734,-73.90137,Private room,119,3,0,,,1,0 +20235608,"Spacious 2 Bedroom in Bushwick, Brooklyn",109884885,Michael Ray,Brooklyn,Bushwick,40.69716,-73.91447,Entire home/apt,195,2,4,2017-10-22,0.18,1,0 +20235701,Very large sunny one bedroom that can be for 2-3,87814281,Sharon,Manhattan,Harlem,40.83103,-73.94653,Private room,80,1,0,,,2,0 +20235849,Oasis in NYC - large UES studio near Central Park!,25860768,Mei-I,Manhattan,Upper East Side,40.78078,-73.95301,Entire home/apt,126,2,45,2019-06-17,2.00,1,0 +20235984,Bright Room in a 4-bed Apartment in Bushwick,34821813,James,Brooklyn,Bushwick,40.70115,-73.9212,Private room,55,6,0,,,1,0 +20237047,Prospect Park Zen Den (by Lakeside/Flatbush),14853570,Anne Ashley,Brooklyn,Prospect-Lefferts Gardens,40.65967,-73.96242,Entire home/apt,100,2,0,,,1,0 +20242938,Belo Quarto/w/UPGRADE to entire apartment,166634,Lou,Brooklyn,Brownsville,40.66192,-73.91371,Private room,59,2,34,2019-06-11,1.47,5,0 +20243718,Quaint & Quiet Room - UWS Apt (105/Broadway),144275900,Andrew,Manhattan,Upper West Side,40.80024,-73.96826,Private room,51,7,2,2018-06-30,0.09,1,0 +20243875,Bright 3 floors home in Bushwick with precious art,6760095,Maria Veronica,Brooklyn,Bushwick,40.70089,-73.9273,Private room,250,2,0,,,1,260 +20245126,Star Labs,9450203,Xris,Brooklyn,Crown Heights,40.67215,-73.94831,Private room,150,1,2,2017-08-21,0.09,1,177 +20245130,Modern Mid-Century Townhouse in Williamsburg!,25233493,Jaime,Brooklyn,Williamsburg,40.71352,-73.96148,Entire home/apt,800,30,29,2018-11-09,1.41,2,0 +20245577,Big guest room on Upper west side,20850336,Yubo,Manhattan,Upper West Side,40.77621,-73.98054,Private room,140,1,13,2019-05-26,0.77,1,54 +20248246,Beautiful Private Bedroom & Bathroom,74314960,Cristina,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94359,Private room,95,5,1,2018-02-04,0.06,2,0 +20249492,2BR PH Loft and Executive Office Central Manhattan,144310942,Jacqueline,Manhattan,Flatiron District,40.74416,-73.99017,Entire home/apt,600,2,41,2019-06-06,1.93,1,174 +20250864,"Chelsea, Minutes to Time Square, Next to Subway",144317997,Luis,Manhattan,Chelsea,40.74648,-73.99286,Private room,40,3,23,2018-05-03,1.03,1,0 +20253164,"Cozy room with balcony, 15min Manhattan",103488282,Kaka,Queens,Sunnyside,40.74739,-73.92058,Private room,85,1,115,2019-06-23,4.94,5,76 +20253237,Spacious 1 bedroom on Hamilton Grange - Entire Apt,140299690,A.J.,Manhattan,Harlem,40.8204,-73.94652,Entire home/apt,150,3,18,2019-07-05,0.79,1,4 +20254247,Comfy room close to everything!,67444730,Jaafar,Brooklyn,Bedford-Stuyvesant,40.69444,-73.95116,Private room,60,30,2,2017-08-27,0.09,2,0 +20255084,Beautiful One Bedroom In the Heart of Manhattan,144347177,Alexandra,Manhattan,Upper East Side,40.76326,-73.95967,Entire home/apt,149,5,0,,,1,0 +20255158,Newly Renovated Brooklyn Apt.,45451027,David,Brooklyn,Crown Heights,40.67651,-73.95877,Private room,40,6,4,2018-09-09,0.18,1,0 +20256027,Penthouse Apt with Incredible Views & Location,20729779,Desislava,Manhattan,Kips Bay,40.74195,-73.97826,Private room,69,1,16,2018-01-17,0.68,1,0 +20257297,Williamsburg Sky,4220261,Bashan,Manhattan,Civic Center,40.71332,-74.00643,Entire home/apt,300,2,0,,,1,89 +20257357,Cute Cobble Hill Apartment with NYC Skyline Views,144376495,Micah,Brooklyn,Columbia St,40.68796,-73.99997,Entire home/apt,149,3,2,2019-06-28,0.09,1,0 +20257840,Elegant Oasis in the Upper East Side,60293337,Melissa,Manhattan,Upper East Side,40.77667,-73.95335,Private room,120,1,89,2019-06-30,3.92,1,149 +20260218,"Spacious, Private bedroom in Bushwick apartment",144406701,Bryan,Brooklyn,Bushwick,40.69201,-73.92364,Private room,40,9,2,2017-11-21,0.09,1,0 +20261316,Sunny two bedroom-two bath in doorman building UWS,42435903,Anuja,Manhattan,Upper West Side,40.79093,-73.97528,Entire home/apt,270,7,0,,,1,0 +20263109,Modern Studio Loft in the heart of Sea Port,44298161,Nicolas,Manhattan,Financial District,40.70676,-74.00612,Entire home/apt,200,3,14,2019-02-24,0.61,1,10 +20263650,Light Filled Quiet UWS studio,170094,Lee,Manhattan,Upper West Side,40.79272,-73.97519,Entire home/apt,120,3,6,2018-12-16,0.27,1,0 +20264224,"Bright, cozy room 30mins from downtown Manhattan",107420184,Naz,Brooklyn,Crown Heights,40.67169,-73.9326,Private room,50,3,28,2019-07-04,1.76,1,93 +20265104,West Village Haven,9121940,Joseph,Manhattan,West Village,40.73574,-74.00121,Entire home/apt,290,14,0,,,1,341 +20265425,Welcome to New York City,101369464,Edward,Brooklyn,Bensonhurst,40.60848,-73.97703,Entire home/apt,100,2,115,2019-06-29,4.95,1,323 +20265742,modern duplex in classic brooklyn brownstone,8280982,Amy,Brooklyn,Bedford-Stuyvesant,40.68151,-73.94827,Entire home/apt,250,3,1,2019-04-08,0.32,1,133 +20267865,Your home away from home in New York City.,58403098,Nilufer,Queens,Sunnyside,40.73726,-73.92775,Private room,45,3,58,2019-06-20,2.53,3,97 +20268134,Spacious One Bedroom in Bed-Stuy,10414799,Katharina,Brooklyn,Bedford-Stuyvesant,40.69074,-73.93696,Entire home/apt,85,5,6,2018-12-30,0.33,2,5 +20269650,Cozy Hell's Kitchen/ Time Square Apartment- 2 BRM,144509624,Nivea And Jill,Manhattan,Hell's Kitchen,40.76551,-73.9873,Entire home/apt,300,1,139,2019-07-03,5.95,1,265 +20269743,"Charming Bright Astoria Room, close to Ditmar",68724048,Sol,Queens,Ditmars Steinway,40.77773,-73.90719,Private room,35,1,3,2017-08-15,0.13,1,0 +20271220,Sunny private room on Central Park,634346,Chava,Manhattan,East Harlem,40.79629,-73.94913,Private room,55,7,0,,,1,0 +20271739,Charming Luxury Loft near Barclay & Green Building,147513,Ashley,Brooklyn,Gowanus,40.67949,-73.98666,Entire home/apt,225,2,113,2019-06-21,5.88,2,67 +20274278,Brooklyn in the house Private Apt Midwood Q subway,72375507,Kenneth,Brooklyn,Sheepshead Bay,40.60954,-73.95966,Entire home/apt,78,4,5,2019-06-22,0.67,1,82 +20275223,FULL BED/Spa Amenities for Sophisticated Travelers,89985620,Annette C,Brooklyn,Flatlands,40.62187,-73.93079,Private room,49,2,58,2019-06-29,2.53,3,311 +20275670,Amazing Studio step away from Time Square/53C,48146336,Irina,Manhattan,Hell's Kitchen,40.76152,-73.99388,Entire home/apt,130,30,4,2019-05-31,0.19,20,332 +20277166,Spacious Brooklyn home 2bdrm near Prospect Park.,10217532,David,Brooklyn,Flatbush,40.64844,-73.96726,Entire home/apt,115,5,4,2019-04-24,0.18,1,3 +20277675,Enjoy NYC from beautiful and fun Clinton Hill,1699505,Daniel And Elsa,Brooklyn,Clinton Hill,40.68358,-73.9627,Private room,59,3,2,2018-05-28,0.15,1,0 +20278184,Mezzanine room in Bushwick,28455413,Lia,Brooklyn,Bushwick,40.68609,-73.91525,Private room,32,1,5,2017-09-05,0.22,2,0 +20278421,Bright Bohemian living space & bedroom,22899202,Sadie,Brooklyn,Bedford-Stuyvesant,40.68838,-73.92208,Private room,45,2,10,2019-07-01,0.51,2,34 +20279672,Serene queen sized bedroom,2514859,Meghan,Brooklyn,Bedford-Stuyvesant,40.68855,-73.95137,Private room,70,2,2,2019-01-01,0.20,2,0 +20279691,Bright and Spacious Parkside Apartment,21340955,Shean,Brooklyn,Flatbush,40.65198,-73.96078,Entire home/apt,99,3,2,2018-01-01,0.11,3,311 +20279823,Charming & artsy cozy one bedroom Apt.,43121487,Natalia,Queens,Maspeth,40.7355,-73.90064,Entire home/apt,105,3,71,2019-05-21,3.08,1,285 +20280692,"2 bedroom New York, Queens",46407533,Alba,Queens,Ditmars Steinway,40.78182,-73.91248,Entire home/apt,160,5,2,2018-09-02,0.09,1,0 +20281546,Sunny 1br across from the park,52251632,Daniel,Manhattan,Morningside Heights,40.80711,-73.95826,Entire home/apt,114,1,1,2017-08-20,0.04,1,0 +20282225,Private Room in Artsy space in Bedstuy W/Mini Bar!,144647925,James,Brooklyn,Bedford-Stuyvesant,40.6867,-73.94212,Private room,55,3,8,2017-11-05,0.34,1,0 +20282957,Newly renovated 2 bedroom with FREE WIFI,31687922,Jonathan,Queens,Flushing,40.7612,-73.8214,Entire home/apt,120,1,104,2019-06-28,4.44,1,90 +20283433,Williamsburg Apt: Near Train & Close to Waterfront,7714461,Charles,Brooklyn,Williamsburg,40.71389,-73.95103,Private room,55,7,19,2019-05-31,0.85,2,151 +20283488,Large bedroom in shared apartment - Short term,9430316,Eugenio,Queens,Astoria,40.7641,-73.91879,Private room,160,2,1,2018-01-02,0.05,1,0 +20284068,Crown Heights Apartment,32905351,Meredith,Brooklyn,Crown Heights,40.67423,-73.95737,Entire home/apt,110,2,31,2019-04-25,1.36,1,4 +20284463,"Relaxing, White Room in Upper Manhattan w/ rooftop",42154911,Hannah,Manhattan,Harlem,40.83082,-73.94677,Private room,60,4,2,2019-04-24,0.11,2,13 +20284711,Studio step away from Time square/73B,48146336,Irina,Manhattan,Hell's Kitchen,40.76163,-73.99335,Entire home/apt,130,30,4,2019-04-30,0.41,20,310 +20285167,Room-Sofa Bed-Hell's Kitchen-Close to Everything,118267672,Nicholas,Manhattan,Hell's Kitchen,40.76609,-73.99396,Shared room,115,1,94,2019-06-27,4.09,1,7 +20285257,Sunny One Bedroom,20279155,Alec,Manhattan,Chinatown,40.7134,-73.99069,Entire home/apt,150,1,0,,,1,0 +20285258,Cozy comfortable studio perfect for exploring!,1457505,Tamara,Brooklyn,Park Slope,40.6765,-73.98205,Entire home/apt,100,4,0,,,1,0 +20286116,1 Room in Renovated Apt with Private Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70515,-73.92349,Private room,85,2,5,2018-03-26,0.22,2,0 +20286743,New convenience room w/ major subway lines near,140057330,Joey,Queens,Elmhurst,40.74247,-73.88949,Private room,55,1,61,2019-05-31,2.66,7,57 +20286744,Modern Extra Large Super Sunny Private Bedroom,48076117,Shelley,Brooklyn,Crown Heights,40.6739,-73.93372,Private room,55,1,63,2019-07-03,2.77,2,30 +20287051,Clean Room in Artist Loft in the South St. Seaport,13872573,Allison,Manhattan,Financial District,40.70781,-74.00051,Private room,90,2,3,2018-01-02,0.14,1,0 +20287322,Private room in two-bedroom apartment in Chinatown,90130659,Spencer,Manhattan,Two Bridges,40.71261,-73.99609,Private room,80,7,0,,,1,0 +20291879,Photography Bedroom in Modern Brooklyn Flat,33028687,Robert,Brooklyn,Bedford-Stuyvesant,40.69132,-73.94494,Private room,150,2,6,2019-05-19,0.26,1,0 +20292523,Terrace Penthouse in Nolita,40321516,Luc,Manhattan,Nolita,40.72206,-73.99497,Entire home/apt,350,5,1,2017-11-26,0.05,1,0 +20294316,New York Voilet Dynasty,138006255,Carol,Brooklyn,Canarsie,40.63601,-73.91503,Private room,110,1,1,2018-05-06,0.07,2,365 +20296968,Quiet Hells Kitchen Studio steps from Times Square,28340376,Anna,Manhattan,Hell's Kitchen,40.76125,-73.99299,Entire home/apt,164,2,85,2019-07-01,3.67,1,0 +20297560,1 bright room in a 4 bdr in Ridgewood / Bushwick,13989494,Antoine,Queens,Ridgewood,40.69557,-73.9043,Private room,42,2,1,2017-08-10,0.04,1,0 +20299266,West Village Gem - Renovated 3 Bedroom Apt!,117677214,Rodney,Manhattan,West Village,40.73103,-74.00319,Entire home/apt,325,5,47,2019-06-09,2.01,1,310 +20300137,Modern and Stylish 1 Bedroom in East Village,19635760,Zoe,Manhattan,East Village,40.72526,-73.98128,Entire home/apt,140,3,6,2019-06-23,0.35,1,0 +20302205,"Quiet, Spacious, Artsy 1-Bedroom in Ridgewood",38266438,Alex,Queens,Ridgewood,40.70216,-73.89944,Entire home/apt,75,10,1,2017-08-25,0.04,1,0 +20303322,"Quiet,Comfy&Spacious Room near F/G train",104836016,Qingming,Brooklyn,Kensington,40.6421,-73.98171,Private room,66,2,14,2019-06-01,0.60,4,180 +20304193,"Quiet,Comfy&Spacious Room near F/G train",104836016,Qingming,Brooklyn,Kensington,40.64007,-73.98011,Private room,66,2,29,2019-06-16,1.25,4,170 +20304291,Cozy&Comfortable room in Manhattan/ East Harlem,12213641,Joshua,Manhattan,East Harlem,40.80196,-73.93627,Private room,95,1,35,2019-06-30,1.56,2,15 +20304654,"Cozy room in the middle of LES, SoHo",7225691,Jérôme,Manhattan,Lower East Side,40.72268,-73.9893,Private room,115,1,179,2019-06-30,7.76,2,326 +20304656,Big room in West Harlem/Morningside,23741614,Kristin,Manhattan,Harlem,40.80416,-73.95557,Private room,60,7,0,,,1,0 +20305160,Beach House Retreat. 15 minutes from Manhattan.,1715301,Mark,Staten Island,Fort Wadsworth,40.59546,-74.06092,Entire home/apt,800,7,0,,,3,365 +20305451,Best of Brooklyn & Beside Manhattan!,48704899,Dara,Brooklyn,Park Slope,40.67481,-73.97258,Entire home/apt,200,3,41,2019-06-02,1.84,1,1 +20305686,"Clean and cozy room , quite neighborhood.",144841101,Anjeza,Queens,Astoria,40.76406,-73.90959,Private room,112,7,0,,,1,0 +20305785,Private spacious studio in Richmond Hill,144833193,Lucyna,Queens,Kew Gardens,40.70491,-73.83614,Entire home/apt,100,2,0,,,1,0 +20306155,The Rosedale Palace Master room,133810925,Andrew,Queens,Rosedale,40.66524,-73.73283,Private room,84,1,89,2019-06-23,4.01,3,356 +20306217,The inner palace,133810925,Andrew,Queens,Rosedale,40.66458,-73.73464,Private room,62,1,144,2019-06-24,6.21,3,0 +20306472,Big sunny bedroom Clinton Hill $50/day,442106,Bobby,Brooklyn,Bedford-Stuyvesant,40.69256,-73.96058,Private room,35,1,5,2017-09-13,0.22,1,0 +20306746,The Grace palace,133810925,Andrew,Queens,Rosedale,40.664,-73.733,Private room,62,1,129,2019-06-28,5.74,3,354 +20308253,Studio in LIC with views of Manhattan skyline,27098685,Min Hee,Queens,Long Island City,40.745,-73.94951,Entire home/apt,115,5,1,2017-08-31,0.04,1,0 +20308615,Your Oasis in The Bronx!,67223829,Richard & Xio,Bronx,Longwood,40.82406,-73.8934,Entire home/apt,155,3,13,2019-05-01,0.61,1,285 +20308703,Great chance to live in a great new 2br apartment!,144868702,Polina,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92674,Entire home/apt,165,3,1,2017-09-15,0.05,1,0 +20308833,Spacious & Light Room - Very Close to Subway,57670550,Josie,Brooklyn,Crown Heights,40.66872,-73.93451,Private room,60,3,6,2018-04-03,0.26,2,0 +20308927,"Huge Brownstone duplex w/garden, Park Slope, BK,NY",24945340,Oliver,Brooklyn,Park Slope,40.67447,-73.97605,Entire home/apt,400,2,7,2019-01-01,0.37,1,14 +20309089,Home Sweet Home,101776118,Jim,Brooklyn,Bay Ridge,40.62493,-74.02837,Entire home/apt,90,1,92,2019-07-02,4.09,1,312 +20309202,Private Bedroom w River View in Downtown Manhattan,10196765,Xiaomin,Manhattan,Battery Park City,40.71035,-74.01722,Private room,90,1,9,2019-05-19,0.39,1,0 +20309353,Bright private bedroom in prime Williamsburg apt,7344404,Justin,Brooklyn,Williamsburg,40.71237,-73.9598,Private room,75,4,6,2019-05-03,0.27,1,0 +20309605,"Luxe, Central Loft in Downtown Manhattan",4412976,Puja,Manhattan,Tribeca,40.72015,-74.00435,Entire home/apt,1500,3,2,2018-06-19,0.11,1,186 +20311253,Sunny Private Room in Bed-Stuy,10373779,Carla,Brooklyn,Bedford-Stuyvesant,40.68883,-73.94821,Private room,55,3,3,2018-09-29,0.30,2,0 +20314852,COMFY BEDROOM IN THE HEART OF HARLEM,144863286,Georgy,Manhattan,Harlem,40.8173,-73.95571,Private room,120,1,0,,,1,180 +20316497,Luxury and comfort,131826530,Kathy,Bronx,Riverdale,40.88667,-73.91494,Private room,600,2,0,,,3,269 +20319662,Warm Sunny Penthouse w/Private Bathroom + Patio,17555570,Yan,Brooklyn,Crown Heights,40.66882,-73.92245,Private room,72,1,92,2019-07-07,3.99,12,102 +20320826,Tranquil bedroom in classic Bed-Stuy brownstone,4227812,Diego & Mike,Brooklyn,Bedford-Stuyvesant,40.68161,-73.95237,Private room,120,30,4,2018-09-28,0.37,1,0 +20321714,Great spacious prime studio in Midtown,115844816,Tony,Manhattan,Murray Hill,40.74819,-73.97201,Entire home/apt,200,6,2,2017-10-24,0.09,1,341 +20321803,Vanderbilt · Quaint Art-Filled Brooklyn Apartment,1468617,Jen,Brooklyn,Clinton Hill,40.69575,-73.96966,Entire home/apt,99,3,5,2018-07-29,0.22,1,0 +20322611,Huge private bedroom. Heart of Bed-Stuy.,65875353,Severino,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95017,Private room,40,2,0,,,1,0 +20322645,Beautiful Bright Times Square Apartment,144992525,Edith,Manhattan,Theater District,40.75879,-73.98155,Entire home/apt,185,3,5,2018-04-08,0.22,1,0 +20323803,Loft room - Lower East Side (Downtown Manhattan),55260292,Andre,Manhattan,Lower East Side,40.72017,-73.98412,Private room,90,2,14,2019-05-20,0.67,1,60 +20325356,"Sunny, Spacious and Perfect Village Location",13300403,Christine,Manhattan,Greenwich Village,40.73372,-73.99704,Entire home/apt,615,4,42,2019-06-14,1.83,1,117 +20325804,Downtown Manhattan large studio with terrace,145011016,Mark,Manhattan,Financial District,40.70912,-74.00721,Entire home/apt,180,7,3,2019-04-24,0.14,1,20 +20325986,Brooklyn Condominium - Bushwick,145013050,Dylan,Brooklyn,Bushwick,40.70423,-73.91595,Private room,75,1,3,2017-09-01,0.13,1,0 +20326252,"1 Br Garden Apt own Pvt space in St.Albans,Queens",135373362,Lavonne,Queens,St. Albans,40.70644,-73.76072,Entire home/apt,80,1,100,2019-06-27,4.45,1,71 +20326395,"Spacious 1 bed/1 bath home, 3A",49704571,Krzysztof,Brooklyn,Greenpoint,40.72074,-73.9432,Entire home/apt,90,30,4,2019-04-27,0.19,8,125 +20327659,Renovated 1-bedroom apartment in Gramercy,127759523,Michael,Manhattan,Gramercy,40.73775,-73.98319,Entire home/apt,179,1,0,,,1,0 +20328568,"Insane Manhattan Views, Top Williamsburg Location",1533756,Yusuf,Brooklyn,Williamsburg,40.72106,-73.95974,Entire home/apt,269,5,1,2017-08-28,0.04,1,0 +20328884,Sunny Studio in Park Slope,10149880,Haley,Brooklyn,Park Slope,40.67653,-73.9737,Entire home/apt,106,5,0,,,1,0 +20329223,Most Sunny adorable Bedroom in Gramercy,48984291,M.J.,Manhattan,Kips Bay,40.74075,-73.98162,Private room,110,14,0,,,1,283 +20330081,New York's Hidden Secret for luxury living,131826530,Kathy,Bronx,Riverdale,40.88515,-73.91411,Shared room,800,2,1,2017-09-03,0.04,3,269 +20330243,"Huge sunny, beautiful bedroom in Manhattan",145048035,Aura,Manhattan,Harlem,40.81545,-73.94613,Private room,60,1,2,2017-10-29,0.09,1,0 +20330822,Charming Quiet Entire 1 bdrm Duplex UWS + Terrace,20217572,David,Manhattan,Upper West Side,40.79312,-73.96886,Entire home/apt,219,4,30,2019-06-15,1.29,1,45 +20331226,Private Blu Suite 1BR Brownstone 1st Fl Harlem NYC,7202412,Ephraim,Manhattan,Harlem,40.81748,-73.94484,Entire home/apt,150,5,52,2019-06-29,2.35,4,113 +20331468,Large Upper West Side Apartment with Rooftop,18121246,Alana,Manhattan,Upper West Side,40.7856,-73.97539,Entire home/apt,289,3,3,2017-09-23,0.13,1,0 +20331502,Room in Upper West Side Apartment - close to park,51752582,Nitzan,Manhattan,Upper West Side,40.7973,-73.9618,Private room,55,3,4,2017-12-19,0.17,1,0 +20331717,Huge place in a center of the dream City!,106445337,Ben,Manhattan,Kips Bay,40.73891,-73.98295,Private room,139,2,1,2017-08-18,0.04,1,0 +20331995,Two Bedroom Apartment Queens Near Subway to NYC,48032663,Naomi,Queens,Richmond Hill,40.70171,-73.82991,Entire home/apt,65,2,95,2019-07-06,4.13,1,105 +20332555,Beautiful Apartment near Times Square Central Park,143944704,Ash,Manhattan,Theater District,40.76302,-73.98211,Entire home/apt,239,3,104,2019-06-22,4.53,1,0 +20332842,Times Square Summer Retreat,145072632,Andrea,Manhattan,Hell's Kitchen,40.76181,-73.98865,Private room,110,3,111,2019-07-01,4.95,2,128 +20333200,"FEMALE only- Clean, Quiet, Lincoln Center Apt",683180,Jina,Manhattan,Upper West Side,40.77345,-73.98774,Private room,89,10,10,2018-12-12,0.44,1,248 +20333471,★Hostel Style Room | Ideal Traveling Buddies★,131697576,Anisha,Bronx,East Morrisania,40.83296,-73.88668,Private room,0,2,55,2019-06-24,2.56,4,127 +20333831,Basement Suite w/Private Entrance,145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.67907,-73.94916,Entire home/apt,150,2,18,2019-07-06,0.86,2,86 +20337158,Comfy HP“TWIN BED” 5 mins to LGA-US OPEN & 7 train,32446721,Veronica,Queens,Corona,40.74748,-73.8647,Shared room,45,1,18,2019-06-30,0.80,6,365 +20345108,xxx,137779917,Neng,Manhattan,Morningside Heights,40.81012,-73.95825,Private room,55,1,0,,,1,0 +20346887,The Heights,68598597,Jazmin,Manhattan,Washington Heights,40.84684,-73.93252,Private room,55,1,22,2019-06-24,0.95,2,91 +20350538,WEST VILLAGE/CHELSEA-PRIME LOCATION,76104209,Rated,Manhattan,Chelsea,40.73993,-74.00147,Entire home/apt,164,30,0,,,33,307 +20350704,Cozy bedroom in the heart of Harlem,140641026,Portia,Manhattan,Harlem,40.80419,-73.94792,Shared room,65,1,1,2018-12-30,0.16,1,365 +20353880,Spacious Home In South Brooklyn,17414475,Cassia,Brooklyn,Columbia St,40.68181,-74.00462,Private room,63,1,51,2019-06-29,2.89,1,6 +20355009,The Enchanted Pearl Bed & Breakfast ️,142289760,Janae,Manhattan,Harlem,40.81698,-73.93968,Private room,70,1,9,2017-11-12,0.39,1,89 +20355471,Large and quiet 1 BR in heart of Greenpoint,13206384,Daniel,Brooklyn,Greenpoint,40.73384,-73.95407,Entire home/apt,120,4,19,2019-07-02,0.85,1,0 +20356040,Sunny Spacious room near central park,142878742,Sam,Manhattan,East Harlem,40.78828,-73.94385,Private room,82,1,163,2019-06-12,7.27,3,75 +20356256,"Heart of the East Village,Bright Room Excursion",145194995,Stacy,Manhattan,East Village,40.72982,-73.98371,Private room,56,2,4,2017-09-04,0.17,1,0 +20356479,Sunny chic room with private bath in new apartment,80028220,Remonia,Brooklyn,Bedford-Stuyvesant,40.69072,-73.92531,Private room,80,1,4,2018-07-05,0.19,1,0 +20356506,Beautiful Studio Right Next To Times Square!,127385071,Jake,Manhattan,Hell's Kitchen,40.7658,-73.99087,Entire home/apt,139,2,121,2019-06-20,5.35,1,82 +20356797,New York Apartment in Queens,127077398,Ming,Queens,Ozone Park,40.67801,-73.8459,Entire home/apt,110,2,51,2019-07-06,2.22,1,295 +20356865,"Cute, spacious, windowlit room in Williamsburg",75199843,Isi,Brooklyn,Williamsburg,40.71327,-73.94763,Private room,60,2,3,2019-05-08,0.13,1,90 +20356917,SoHa Jewel,145199414,Ronald,Manhattan,Harlem,40.80041,-73.95401,Private room,70,1,68,2019-06-23,2.97,1,330 +20357796,True Upscale Room Experience. Amazing,31736547,Iza,Manhattan,East Harlem,40.79148,-73.9446,Private room,69,1,58,2019-06-23,4.10,2,26 +20358824,"$45NYCCozy Room with curtain NearJ,G, and M train",145214508,Yonette,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94226,Shared room,45,3,7,2018-10-02,0.31,2,364 +20359408,Beautiful Manhattan private bedroom,144851882,Jane,Manhattan,Kips Bay,40.73972,-73.97839,Private room,58,5,0,,,1,0 +20361914,Charming smoker friendly apt inBushwick,145234836,Mark,Brooklyn,Bushwick,40.70258,-73.92466,Private room,110,5,0,,,1,358 +20362110,Humble Abode in Harlem,145239999,Jason,Manhattan,Harlem,40.81876,-73.93974,Private room,80,1,4,2017-10-08,0.17,1,179 +20362385,"Convenient bedroom, Great location, Close to all",145241163,Witt,Queens,Elmhurst,40.73744,-73.88136,Private room,51,2,38,2019-01-01,1.66,1,28 +20363178,Small room for travelers in fresh and clean apt,49539959,Alex,Brooklyn,Brownsville,40.67287,-73.9105,Private room,50,4,67,2019-03-31,2.89,2,0 +20363207,Sophisticated & Modern NYC Urban Jewel Box,46677826,Nakia,Manhattan,Hell's Kitchen,40.76044,-73.99882,Entire home/apt,273,3,13,2019-07-05,0.60,1,116 +20364111,Never Stop Exploring,145257512,Leo,Manhattan,Midtown,40.75599,-73.96769,Entire home/apt,212,3,95,2019-07-01,4.26,1,239 +20364240,Sunny lifestyle room,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67389,-73.93363,Private room,54,2,47,2019-06-23,2.05,4,345 +20365504,Cozy apartment in Cobble Hill,41844294,Sandy,Brooklyn,Carroll Gardens,40.68518,-73.99247,Entire home/apt,170,1,90,2019-07-01,4.11,1,164 +20373836,Downtown Manhattan Weekender,6933112,Josie,Manhattan,Financial District,40.70874,-74.01342,Private room,102,1,0,,,2,0 +20376152,Clinton Hill Private Room,145187951,Nikki,Brooklyn,Bedford-Stuyvesant,40.68385,-73.95627,Private room,50,3,15,2018-06-23,0.69,2,0 +20379446,Bedroom in bright cozy duplex w/ private rooftop,1843969,Carolina,Brooklyn,Bedford-Stuyvesant,40.69445,-73.93828,Private room,85,2,11,2019-07-01,0.49,1,164 +20379828,Cozy room in trendy Brooklyn neighborhood.,11116177,Alba,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94145,Private room,80,1,2,2017-08-29,0.09,1,0 +20381341,Contemporary Bushwick garden heaven,6263296,Greg,Brooklyn,Bushwick,40.70182,-73.9188,Private room,50,1,3,2018-06-29,0.13,1,0 +20382522,"Apartment in Harlem on 145th St, next to 3 train.",13246721,Jay,Manhattan,Harlem,40.8216,-73.93679,Private room,86,1,1,2017-12-02,0.05,1,0 +20384987,Cozy Apartment in Time Square with Amazing view,19045109,J,Manhattan,Theater District,40.76122,-73.98583,Private room,136,3,0,,,1,0 +20385039,Air mattress boudoir [BEST RATES],142590597,Joica,Brooklyn,East New York,40.67425,-73.87279,Shared room,79,1,9,2019-06-04,0.40,6,180 +20385260,2 BDRM apt in elevator building,13225047,Lila,Brooklyn,Williamsburg,40.72099,-73.96007,Entire home/apt,211,1,12,2018-04-03,0.53,3,0 +20385467,Cozy and luxurious suite away from home,740812,Monica,Bronx,Westchester Square,40.8372,-73.84345,Entire home/apt,70,2,67,2019-07-01,2.99,2,129 +20386575,Makes You Wanna STAY! [BEST RATE],142590597,Joica,Brooklyn,East New York,40.6746,-73.87293,Shared room,159,1,7,2018-10-06,0.31,6,180 +20387176,Professor Trelawney's Celestial Tower in Brooklyn,20540369,Aviva,Brooklyn,Bushwick,40.70031,-73.91718,Private room,55,1,0,,,1,0 +20387244,Comfy and Cozy [BEST RATE],142590597,Joica,Brooklyn,East New York,40.67467,-73.87379,Private room,119,1,29,2019-06-30,1.28,6,180 +20387644,Beautiful urban 2BR with private deck and yard!!!,19924289,Stephanie,Brooklyn,Fort Hamilton,40.62267,-74.02989,Entire home/apt,120,4,45,2019-06-17,1.98,1,44 +20387815,Quiet Harlem Studio w/ Backyard & Close to Train,41047066,Trinity,Manhattan,Harlem,40.81629,-73.94131,Entire home/apt,71,2,24,2019-07-01,1.45,1,55 +20388056,studio in gramercy park,46736568,Mitch,Manhattan,Gramercy,40.73594,-73.97947,Entire home/apt,170,3,12,2019-01-01,0.53,1,1 +20389491,Comfortable Stay in Crown Heights :),68011294,Shay & Adam,Brooklyn,Crown Heights,40.66583,-73.93563,Entire home/apt,70,30,4,2018-11-17,0.18,1,61 +20389872,Sunny Bedroom on Bedford Ave in Williamsburg,50369101,Samantha,Brooklyn,Williamsburg,40.71351,-73.96038,Private room,80,1,1,2017-09-04,0.04,1,0 +20390763,Private Guest Room in Manhattan,145391611,Lauren,Manhattan,Harlem,40.82744,-73.94707,Private room,50,2,86,2019-07-03,4.01,1,97 +20390786,Perfect east village | lower east side anchorage,145392038,Emma,Manhattan,Lower East Side,40.72178,-73.98645,Private room,80,1,1,2017-08-11,0.04,1,0 +20392393,Cozy midtown apt next to metro & Empire State bldg,145398177,Spencer,Manhattan,Kips Bay,40.7433,-73.97919,Entire home/apt,129,2,75,2019-06-13,3.32,1,29 +20393120,Amazing Art Deco studio with backyard in Manhattan,29967049,Dario,Manhattan,East Harlem,40.78899,-73.94727,Entire home/apt,99,14,6,2019-06-21,0.27,1,3 +20394608,Hamilton Heights sun filled spacious master BR,75749777,Mykola,Manhattan,Harlem,40.82094,-73.95366,Private room,49,16,1,2017-08-21,0.04,1,0 +20394813,Spacious and sunny Prospect Heights One Bedroom,4102722,Charles,Brooklyn,Prospect Heights,40.67988,-73.97375,Entire home/apt,125,1,2,2017-08-27,0.09,1,0 +20394850,Upper East Side with outdoor space,145328112,Sheldon,Manhattan,Upper East Side,40.77002,-73.96183,Entire home/apt,150,7,1,2017-08-12,0.04,1,0 +20395266,Convenient New Apt.- Bargain Price,62167677,Joshua,Queens,Long Island City,40.75461,-73.91903,Private room,30,4,4,2018-04-30,0.18,2,0 +20395432,Bright Beautiful Creative Luxury 1BR Williamsburg,17126502,Mitch,Brooklyn,Williamsburg,40.71279,-73.94154,Entire home/apt,144,4,10,2019-07-06,0.93,1,43 +20395608,★ Warm NYC Getaway ★ | Walk/Transit Score 85+ |,131697576,Anisha,Bronx,East Morrisania,40.83243,-73.88608,Private room,55,2,60,2019-06-18,2.59,4,171 +20395737,"Penthouse apartment, 3 bedrooms, great location.",66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.6837,-73.9511,Entire home/apt,170,5,53,2019-03-31,2.43,3,267 +20396246,Sunny Harlem Oasis feels like Luxury,57573249,Kesina,Manhattan,Harlem,40.81677,-73.93927,Entire home/apt,185,1,6,2017-11-26,0.26,2,0 +20400190,Entire Studio Apartment,93411405,Eden,Queens,Elmhurst,40.74282,-73.87655,Entire home/apt,120,6,8,2018-09-11,0.35,2,0 +20401541,Modern Apartment in east village,3697130,Vikas,Manhattan,East Village,40.72311,-73.98161,Entire home/apt,174,2,22,2018-09-03,0.98,1,0 +20403568,Guest Suite in beautiful Brooklyn Brownstone,9217610,Virginie,Brooklyn,Greenpoint,40.72642,-73.94574,Entire home/apt,125,3,50,2019-06-22,2.15,2,91 +20404055,Spacious room with private bathroom in Manhattan,7433664,Muneeza,Manhattan,Washington Heights,40.8459,-73.94219,Private room,60,1,1,2017-08-15,0.04,1,0 +20404264,Charming cozy apt in the Heart of Manhattan!,44964062,Edwina,Manhattan,East Harlem,40.7889,-73.9482,Private room,73,3,0,,,1,0 +20405148,"Clean, Near Central Park and Subway",39469667,Anton,Manhattan,Midtown,40.7577,-73.9662,Private room,105,1,142,2019-06-23,6.60,1,38 +20405868,"Large 1BR in Bay Ridge, Brooklyn",43544395,James,Brooklyn,Fort Hamilton,40.61897,-74.03675,Entire home/apt,85,1,3,2019-01-22,0.44,1,6 +20405958,2BED 2 BATH CENTRAL PARK /BALCONY /COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.776,-73.98815,Entire home/apt,300,30,7,2019-03-29,0.85,25,312 +20406102,Union SQ / Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73496,-73.98723,Private room,150,2,57,2019-06-20,2.51,3,149 +20406188,Room for a week,20954844,Robert,Brooklyn,Flatbush,40.64419,-73.95947,Private room,130,1,0,,,1,0 +20406627,Clean and cozy room!!!! Close to Everything!!!!,108448613,Isadora,Queens,Jackson Heights,40.75001,-73.87358,Private room,80,2,9,2019-01-02,0.39,1,0 +20406782,Beautiful Loft Apartment in Boerum Hill,60350045,Katie,Brooklyn,Boerum Hill,40.68557,-73.98537,Entire home/apt,140,7,31,2018-09-22,1.38,2,0 +20406982,"Spacious and Cozy apartment, minutes to Manhattan!",57339374,Valentina,Brooklyn,Borough Park,40.64394,-73.99524,Private room,75,2,25,2019-06-10,1.08,1,129 +20407916,Renovated 3 BED 2 BATH Williamsburg Townhouse APT,144602805,Sung Ae,Brooklyn,Williamsburg,40.71041,-73.9663,Entire home/apt,300,2,34,2019-06-23,1.55,1,239 +20409753,COZY NEST/Coffee and Bagel,1097545,Carol,Manhattan,East Village,40.72609,-73.97865,Shared room,69,6,31,2019-04-24,1.37,3,196 +20411065,Beautiful seaside dwelling,145560608,William,Queens,College Point,40.79511,-73.8473,Private room,53,7,2,2018-07-17,0.12,1,279 +20412160,Spectacular NYC Views in ideal Manhattan Location,6279607,Ela,Manhattan,Kips Bay,40.74042,-73.97822,Private room,79,1,26,2018-03-27,1.13,1,0 +20412884,2 Bedroom + 2 Bathrooms | Excellent Location,143477365,Val,Manhattan,Midtown,40.75878,-73.97069,Entire home/apt,409,1,87,2019-06-19,3.86,1,40 +20417560,The City Farmhouse A&B **MONTHLY RENTALS**,119441,Angele,Queens,Astoria,40.75818,-73.91398,Entire home/apt,600,30,1,2017-12-26,0.05,3,220 +20417878,Simple Room in Heart of Crown Heights (Women Only),102347748,Mana,Brooklyn,Crown Heights,40.67061,-73.93151,Private room,38,2,112,2019-06-02,4.91,1,5 +20418684,East Village / Alphabet City 1BR,33827790,Kevin,Manhattan,East Village,40.72208,-73.97779,Entire home/apt,185,1,17,2019-05-05,0.77,1,11 +20419339,Unique and spacious 1BR in Greenpoint Brooklyn,31624246,James,Brooklyn,Greenpoint,40.72037,-73.94624,Entire home/apt,175,2,3,2017-11-05,0.13,1,178 +20420152,Charming Studio in Upper East Side,121141431,Juan Ignacio,Manhattan,Upper East Side,40.77265,-73.94833,Entire home/apt,115,2,6,2018-04-15,0.27,1,0 +20420311,Efficiency-like rental,64097020,Lesley / Eric,Brooklyn,Bushwick,40.68513,-73.90987,Private room,50,2,38,2019-01-02,1.66,1,0 +20420499,Urban Oasis,209300,Gina,Brooklyn,Fort Greene,40.68531,-73.97451,Private room,75,1,152,2019-06-22,6.58,2,41 +20420507,Beautiful Big Brownstone Bedroom w/ Natural Light,65830935,Jade,Brooklyn,Bedford-Stuyvesant,40.6801,-73.94072,Private room,1000,2,0,,,1,0 +20421016,Comfortable studio by the park!,4296770,Leif,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.9568,Entire home/apt,70,3,13,2018-04-03,0.57,1,0 +20423928,Artistic Bedstuy Apartment,12570239,Rachel,Brooklyn,Bedford-Stuyvesant,40.68653,-73.9438,Private room,85,4,2,2017-10-09,0.09,1,0 +20424288,Quintessential Soho Loft,625403,Tobias,Manhattan,SoHo,40.72171,-74.00396,Entire home/apt,250,90,1,2019-02-28,0.23,1,0 +20424312,Lovely Bushwick/Bed Stuy Room with Roof Access,15134346,Jenny,Brooklyn,Bushwick,40.69145,-73.92152,Private room,40,2,4,2018-06-19,0.18,1,0 +20425060,Warm and Inviting Getaway,71850281,Nikki,Brooklyn,Bedford-Stuyvesant,40.68861,-73.95214,Private room,50,5,22,2019-06-05,1.00,1,1 +20425394,Studio Apartment in Chelsea,26329486,Nick,Manhattan,Chelsea,40.74418,-73.9999,Entire home/apt,162,3,4,2017-12-30,0.18,1,0 +20425579,Beautiful 2 Bedroom apt. close to Times Sq.,72715655,Javier,Manhattan,Hell's Kitchen,40.76347,-73.98785,Entire home/apt,250,2,97,2019-06-21,4.21,1,145 +20425734,Cozy room in a happy apartment,18947979,Junghwee Bella,Queens,Woodside,40.74273,-73.90458,Private room,35,7,2,2017-09-03,0.09,1,0 +20425764,Cozy Bright 3bedroom apt. 10 min from times sq.,145717056,Jamal,Queens,Long Island City,40.75905,-73.93203,Entire home/apt,295,2,106,2019-07-07,4.73,1,188 +20426726,Brooklyn's finest,141931484,Xie,Brooklyn,Canarsie,40.63488,-73.89015,Private room,75,2,45,2019-06-03,1.95,3,259 +20427684,"TWIN BED. Walk to US OPEN, LGA AIRPORT & CITIFIELD",32446721,Veronica,Queens,Corona,40.74967,-73.86311,Shared room,45,1,16,2019-06-29,0.70,6,365 +20431492,"Cozy & clean Bedstuy, Brooklyn bedroom",73954921,Anthony,Brooklyn,Bedford-Stuyvesant,40.69173,-73.95104,Private room,38,1,1,2017-08-24,0.04,1,0 +20432615,Private room next to Central Park!,19887805,Joshua,Manhattan,Upper West Side,40.79574,-73.96312,Private room,61,1,1,2017-08-26,0.04,1,35 +20432888,Spacious area close to Gramercy park,9475138,Jastine,Manhattan,Gramercy,40.73894,-73.98651,Entire home/apt,340,2,0,,,1,0 +20433620,Time square/ Bryant park,145803893,Jonathan,Manhattan,Midtown,40.75205,-73.98564,Entire home/apt,170,2,102,2019-06-23,4.48,1,213 +20433673,Tiny Apt,102863031,Jakelina,Manhattan,SoHo,40.72443,-74.00141,Private room,80,5,32,2019-06-26,1.39,1,336 +20435261,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67133,-73.97859,Private room,94,2,0,,,2,0 +20435343,Cozy room in the the heart of artful Bushwick BK,127082964,Christopher,Brooklyn,Bushwick,40.70439,-73.92546,Private room,54,2,10,2018-04-29,0.43,2,0 +20435636,Stay like a local in Willamsburg/Greenpoint - NYC,63043,Tolga,Brooklyn,Greenpoint,40.72767,-73.95084,Private room,80,5,19,2019-01-21,1.26,1,0 +20435714,Pretty studio with lots of light,48677247,Elle,Bronx,Norwood,40.88304,-73.88278,Entire home/apt,58,5,1,2017-09-05,0.04,1,0 +20435773,East Village 1 bedroom private apartment,61524907,Matthew,Manhattan,East Village,40.725,-73.97711,Entire home/apt,120,8,6,2018-09-12,0.27,1,0 +20436075,"Douglaston apartment Room B +(2nd room )",18996093,Leonard,Queens,Douglaston,40.75754,-73.73068,Private room,45,1,12,2019-02-02,0.55,5,226 +20436117,"Bright, Clean, Private - 10 Minutes to Manhattan",145830321,Morgan,Brooklyn,Williamsburg,40.70728,-73.95461,Entire home/apt,120,1,122,2019-06-17,5.42,1,193 +20437233,Comfy room with great bed and private bathroom,1939209,Farrel,Bronx,Claremont Village,40.83556,-73.91098,Private room,70,4,42,2019-05-28,1.85,2,77 +20437854,"Lovely Top-Floor, Studio Apartment with Balcony.",5047712,Jamie,Brooklyn,Williamsburg,40.71418,-73.94298,Entire home/apt,215,3,3,2018-09-02,0.14,1,0 +20438015,Prime Upper West Side Duplex,15004693,S,Manhattan,Upper West Side,40.78304,-73.97309,Entire home/apt,250,2,2,2017-12-24,0.09,1,0 +20440249,Sunset Park Brownstone Apartment with Backyard,31031279,Chelsea,Brooklyn,Sunset Park,40.6494,-74.00967,Entire home/apt,72,3,1,2017-09-01,0.04,1,21 +20440400,East Village Getaway,42701042,Nick,Manhattan,East Village,40.72698,-73.98948,Entire home/apt,181,1,0,,,1,0 +20440432,Awesome Room 15 Minutes from Time Square,145872703,Cesar,Manhattan,Harlem,40.82198,-73.95771,Private room,85,2,26,2019-06-09,1.17,2,355 +20440757,GREEN OASIS,145878384,Denise,Brooklyn,East Flatbush,40.65556,-73.92926,Private room,80,3,10,2019-05-31,0.45,7,341 +20441507,FiDi Cozy room overlooking East River,24105930,Sarah,Manhattan,Financial District,40.70511,-74.00828,Private room,115,1,0,,,1,0 +20441901,Comfy Room in Clinton Hill Artist & Activists Loft,5053976,Una,Brooklyn,Bedford-Stuyvesant,40.6898,-73.96012,Private room,50,14,1,2018-11-17,0.13,3,364 +20445845,Urban Fun House in Heart of Williamsburg Brooklyn!,32761103,James,Brooklyn,Williamsburg,40.71394,-73.95669,Entire home/apt,255,14,9,2019-05-18,0.41,1,326 +20448558,Beautiful Sunny Apartment in Bay Ridge,145953481,A & H,Brooklyn,Bay Ridge,40.62985,-74.01738,Entire home/apt,120,2,7,2017-10-30,0.31,1,0 +20450185,Sunny Greenpoint Room,3656083,Juan,Brooklyn,Greenpoint,40.73237,-73.95952,Private room,61,10,2,2018-07-13,0.09,2,0 +20451100,Quiet haven 15 mimutes to Time square,145975067,Ousmane,Manhattan,Harlem,40.81332,-73.94869,Private room,65,1,3,2019-03-24,0.14,3,3 +20451532,"Greenpoint private room w/back yard, dishwasher",37050812,Stephanie,Brooklyn,Greenpoint,40.73547,-73.95495,Private room,55,2,4,2017-10-23,0.18,1,0 +20452330,Frank 'n Dean,24377694,Kori,Brooklyn,Crown Heights,40.67837,-73.95422,Entire home/apt,298,2,0,,,3,189 +20452409,2 BR Presidential for FAMILY Vacation ★ EPIC VIEWS,64065593,ResortShare5,Manhattan,Midtown,40.75174,-73.97213,Entire home/apt,672,2,3,2018-07-27,0.23,13,266 +20454481,Cute Studio In Riverdale NYC,6010437,Taylor,Bronx,Kingsbridge,40.88165,-73.90633,Entire home/apt,100,2,46,2019-06-03,2.00,1,10 +20455415,2 Bed Hotel Room Near Manhattan Meals Pool and Gym,37380820,Saleem,Brooklyn,Downtown Brooklyn,40.69404,-73.9875,Entire home/apt,199,1,0,,,1,0 +20457624,The Suite Spot! Queen Tempurpedic in Luxury Apt,146036754,Rose,Queens,Astoria,40.76838,-73.92564,Private room,60,2,4,2019-02-25,0.18,2,177 +20458372,1 bedroom apartment near Central Park,55133987,Vadim,Manhattan,Upper West Side,40.79532,-73.96344,Entire home/apt,130,9,0,,,1,0 +20458607,1 BR w/ Private Entrance and Exclusive Roof,115415316,Kelsey,Brooklyn,Bushwick,40.70561,-73.92378,Private room,80,2,0,,,2,0 +20459381,"Cozy, bright, Greenwich Village studio for 2!",17575348,Marissa,Manhattan,Greenwich Village,40.73334,-73.99416,Entire home/apt,200,2,3,2018-01-02,0.14,1,0 +20459741,Brooklyn Gem,135606570,Lorene,Brooklyn,East Flatbush,40.63458,-73.94554,Private room,66,2,6,2019-05-06,0.47,1,88 +20459818,Size and Comfort Matter!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.6938,-73.94836,Entire home/apt,165,3,72,2019-07-05,3.16,7,226 +20460009,Luxury one bedroom apt with huge private TERRACE,9589826,Ira,Manhattan,Murray Hill,40.74409,-73.97167,Entire home/apt,350,3,0,,,1,0 +20464496,LaRoom,49519069,Kosta,Queens,Briarwood,40.7105,-73.81589,Private room,85,5,0,,,1,177 +20465477,Beautiful 2-bed apartment in leafy Boerum Hill,60350045,Katie,Brooklyn,Boerum Hill,40.68597,-73.98507,Entire home/apt,150,7,2,2018-09-09,0.14,2,0 +20466016,Feel at Home in this Lovely 1 Bedroom in Flushing,5962328,Alan,Queens,Flushing,40.75947,-73.82263,Entire home/apt,100,30,7,2019-05-05,0.34,15,294 +20467141,Private Bed and Bath by Morningside/Central Park!,22822259,Kellie,Manhattan,Harlem,40.80666,-73.95703,Private room,90,2,67,2019-07-06,2.99,1,63 +20469195,"Secluded Room in EV, Private Patio, Open Kitchen!",34706197,Imri,Manhattan,East Village,40.72564,-73.98682,Private room,144,4,20,2019-01-01,1.08,2,94 +20469589,Bedroom in Brownstone Apartment,18884528,Ann,Brooklyn,Park Slope,40.67257,-73.97775,Private room,90,1,0,,,2,0 +20474033,The Apollo,94408885,Anthony,Brooklyn,Greenpoint,40.72572,-73.93909,Entire home/apt,210,2,31,2019-05-19,1.37,1,0 +20476397,Bright & Comfy 2-BR in heart of Greenwich Village,8305981,Gavin,Manhattan,Greenwich Village,40.73325,-73.99971,Entire home/apt,350,2,34,2019-05-26,1.52,1,10 +20476779,Enjoy Manhattan without paying Manhattan prices,146178383,Diana,Staten Island,St. George,40.64262,-74.08066,Private room,68,2,29,2019-05-20,1.30,1,57 +20478863,"Mid-Century Style Room Close to All, Astoria NYC!",3682854,Fabiyan,Queens,Astoria,40.77028,-73.91665,Private room,60,3,7,2018-02-07,0.31,1,0 +20479197,The Cozy Corner - Private Room w/ Laundry,146036754,Rose,Queens,Astoria,40.76972,-73.92662,Private room,60,1,19,2019-06-05,0.85,2,250 +20479561,Upper east side cozy apt available in September.,112176192,Catherine,Manhattan,Upper East Side,40.78269,-73.95288,Entire home/apt,127,1,0,,,1,0 +20479960,Garden mini apt minutes from Manhattan (studio),85330,Jean,Queens,Forest Hills,40.71089,-73.85384,Entire home/apt,60,4,97,2019-07-06,4.42,3,273 +20480133,Cosy bedroom in Upper West Side,88787567,Vincent,Manhattan,Upper West Side,40.79787,-73.96802,Private room,60,4,4,2018-06-02,0.22,1,0 +20480431,Charming home away from home,146205943,Jacqueline,Brooklyn,East Flatbush,40.66393,-73.9279,Entire home/apt,110,1,80,2019-05-26,3.57,1,81 +20480983,Unique Exposed Brick Loft Studio in Townhouse,785524,Eric,Bronx,Concourse,40.81941,-73.92762,Entire home/apt,69,2,98,2019-07-01,4.57,2,193 +20481106,Williamsburg Bridge Views on the Water,146210515,Finley,Brooklyn,Williamsburg,40.71341,-73.96554,Private room,70,4,0,,,1,0 +20481653,Spacious 1bd in the heart of Harlem,80597953,Lauren,Manhattan,Harlem,40.80194,-73.95602,Entire home/apt,125,2,1,2017-08-27,0.04,1,0 +20482130,Beautiful space in Clinton Hill,15443448,Christian,Brooklyn,Clinton Hill,40.68448,-73.96385,Private room,59,3,2,2019-01-02,0.09,1,0 +20482151,Times Square Luxe Studio with Amazing Amenities,10547661,Francis,Manhattan,Hell's Kitchen,40.76557,-73.98949,Entire home/apt,200,3,97,2019-06-23,4.40,1,60 +20482231,Park Slope Sanctuary on F/G/R,10653881,Max And Heather,Brooklyn,Park Slope,40.67242,-73.98614,Private room,70,1,11,2017-11-17,0.49,2,0 +20482284,"Bedroom in the heart of Queens, New York",83185467,Renata,Queens,Astoria,40.76022,-73.92617,Private room,60,1,0,,,1,0 +20482768,Cozy stay in Brooklyn (Sheepshead Bay Area),35040795,Sergii,Brooklyn,Sheepshead Bay,40.58779,-73.94703,Private room,70,1,0,,,1,0 +20483387,Bed-Stuy top floor room w/ extreme natural light,6824234,Stephan,Brooklyn,Bedford-Stuyvesant,40.6897,-73.93078,Private room,50,4,1,2018-01-03,0.05,1,0 +20483469,Large Room at a Three min Walk !,146219213,Keyur,Queens,Forest Hills,40.71677,-73.83398,Private room,65,1,17,2018-04-01,0.78,1,188 +20483744,Be a local in Midtown Manhattan!,126626529,Alfredo,Manhattan,Hell's Kitchen,40.76093,-73.99103,Private room,120,1,112,2019-06-14,5.63,2,76 +20485253,Spacious Bedroom in Luxury Downtown,56656728,Bret,Manhattan,Financial District,40.7105,-74.00641,Private room,95,1,20,2019-06-19,0.88,5,0 +20486011,"Queen w/Private Bath, steps from Central Park !",76729714,Maddy,Manhattan,Harlem,40.79971,-73.95175,Private room,70,4,3,2017-11-05,0.13,1,0 +20491800,Huge 2BR/2BA on border of Carroll Gardens/Gowanus,4376320,Brooks,Brooklyn,Gowanus,40.68003,-73.99039,Entire home/apt,192,2,1,2017-11-26,0.05,1,0 +20493318,Oasis in Brooklyn,13730809,Kevin,Brooklyn,East New York,40.66402,-73.8979,Private room,60,7,22,2019-06-20,0.98,3,68 +20494330,Modern Bushwick Oasis Filled with Light & Art,6503786,Zachary,Brooklyn,Bushwick,40.69467,-73.91444,Entire home/apt,175,4,1,2017-09-04,0.04,1,188 +20494672,Private top-floor in owner occupied Brownstone,71097702,Paula,Brooklyn,Park Slope,40.68107,-73.97876,Entire home/apt,295,30,50,2019-06-11,2.48,2,208 +20495252,Beautiful Room in a Classic Harlem Neighborhood!,126844198,Rahwa,Manhattan,Harlem,40.8255,-73.94119,Private room,50,3,2,2017-10-10,0.09,1,0 +20495736,Brooklyn style & Spacious room - East Williamsburg,8115522,Emilie,Brooklyn,Williamsburg,40.70829,-73.94369,Private room,66,3,4,2018-12-14,0.18,1,0 +20497487,Cozy Entire Apartment near Time Square.,74937144,Pong,Manhattan,Hell's Kitchen,40.76163,-73.99008,Entire home/apt,226,2,73,2019-06-01,3.35,1,56 +20497853,Apartment in heart of NYC with HUGE PRIVATE DECK!,45596004,Eric,Manhattan,Murray Hill,40.746,-73.9777,Private room,250,2,0,,,1,0 +20498261,2300sqft (215m) lofty penthouse heart East Village,3288449,Luca,Manhattan,East Village,40.72868,-73.98244,Private room,530,4,7,2018-01-02,0.31,1,0 +20498407,Your Cozy Home in Astoria,19901294,Paco,Queens,Astoria,40.76255,-73.92347,Entire home/apt,106,4,1,2017-09-10,0.04,1,0 +20498653,Bushwick Renovated Apartment,146342086,Banty,Brooklyn,Bushwick,40.70014,-73.9215,Private room,40,5,48,2019-01-04,2.08,1,341 +20499040,Beautiful room at the heart of Bushwick,146345538,Sergii,Brooklyn,Bushwick,40.69349,-73.91173,Shared room,34,30,2,2018-05-23,0.11,5,365 +20499229,"Big, sunny one bedroom in Crown Heights",9203654,Ryan,Brooklyn,Crown Heights,40.67754,-73.94305,Entire home/apt,140,3,0,,,1,0 +20499306,"Room with a view steps from 2,3,5 trains",25753120,Aaron,Brooklyn,Crown Heights,40.6685,-73.94842,Private room,50,5,0,,,2,0 +20499320,Electric NYC + Luxury Room = Best vacation ever!,1097753,Javier,Manhattan,Harlem,40.81065,-73.9457,Private room,125,3,34,2019-07-01,1.52,1,178 +20499692,Spacious Chelsea Condo MUST SEE,146348944,Pieter,Manhattan,Chelsea,40.74283,-73.99843,Entire home/apt,245,5,48,2019-06-18,2.22,1,46 +20500896,Charming little apartment with back garden C.Park,100835599,Dalina,Manhattan,East Harlem,40.79099,-73.945,Entire home/apt,400,1,0,,,2,364 +20501156,H.O.M.E (House of M.D. Experience),146358413,Sandra,Brooklyn,East New York,40.67585,-73.87307,Entire home/apt,65,2,53,2019-06-08,2.37,1,2 +20501444,Harlem Comfort Blend,101720883,Jean,Manhattan,Harlem,40.81932,-73.94675,Private room,65,2,24,2018-05-26,1.07,1,0 +20503496,Cozy room + bright apartment + rooftop lounge,90237608,Cindy,Queens,Ridgewood,40.69883,-73.90077,Private room,50,1,2,2017-10-14,0.09,1,0 +20503786,Studio for rent,145693309,Max,Brooklyn,Prospect-Lefferts Gardens,40.66202,-73.96195,Entire home/apt,80,16,0,,,1,0 +20503824,Urban Oasis in Brooklyn- 2 blocks from A/C train.,28234612,B,Brooklyn,Bedford-Stuyvesant,40.68017,-73.93674,Private room,150,1,0,,,1,0 +20503833,Private Room By Central Park,16441670,Maya,Manhattan,Upper West Side,40.79738,-73.96332,Private room,77,1,52,2019-06-30,2.41,1,198 +20504269,Private large room in midtown4F,133130315,Artem,Manhattan,Hell's Kitchen,40.76538,-73.98711,Private room,99,4,6,2018-10-21,0.27,6,140 +20504573,Prime Midtown Location - Near Tourist Locations,121869120,Tabitha,Manhattan,Midtown,40.75257,-73.96853,Entire home/apt,127,1,0,,,1,0 +20505271,RESIDENCE NEAR JFK (TB1),145727343,Janelle,Queens,Jamaica,40.68379,-73.79186,Private room,39,1,15,2018-11-04,0.66,3,164 +20505979,L.E.S ROOM Simple Beautiful Clean Apt. 3 Bdr,6725061,Zyanya,Manhattan,Lower East Side,40.71856,-73.98753,Private room,69,4,0,,,1,0 +20506481,Cozy Chelsea Apartment,12552750,Kimberly,Manhattan,Chelsea,40.73982,-74.0011,Entire home/apt,195,1,71,2019-06-24,3.20,1,12 +20506551,Cozy bedroom in a spacious apartment.,111451636,Caleb,Manhattan,Washington Heights,40.84545,-73.94172,Private room,50,2,1,2017-09-11,0.05,1,0 +20511790,JFK Walk-Up Get-Away!,135337934,Steve,Queens,Queens Village,40.70807,-73.73059,Entire home/apt,99,2,15,2019-05-01,0.67,2,90 +20515035,MASSIVE ROOM IN BEAUTIFUL HARLEM BROWNSTONE,23972036,Nicholas,Manhattan,Harlem,40.82325,-73.95122,Private room,75,4,10,2019-03-17,0.44,1,0 +20516112,"Sunny, spacious room in Williamsburg Brooklyn Apt",11418466,Mike,Brooklyn,Williamsburg,40.70994,-73.94867,Private room,89,2,50,2019-06-25,2.35,1,246 +20517554,"*Light & Love* vibrant, historic, sleeps 4",146472361,Jc,Manhattan,Nolita,40.7212,-73.99463,Entire home/apt,265,5,87,2019-06-23,3.79,1,118 +20518193,Luxurious 4 Bedroom 2.5 Bath Duplex in Brooklyn,138770550,Charmine,Brooklyn,Crown Heights,40.67052,-73.93444,Entire home/apt,400,3,19,2019-06-28,1.03,3,97 +20518456,Bright & Luxurious Studio in Financial District,80099199,Sharon,Manhattan,Financial District,40.70744,-74.01521,Entire home/apt,160,4,32,2019-06-30,3.10,1,39 +20520410,MANHATTAN Budget Shared Room East harlem,39657176,Andrew,Manhattan,East Harlem,40.8027,-73.9398,Shared room,75,7,1,2017-08-20,0.04,1,0 +20520689,The Belvedere - A Luxury One Bedroom with Loft,146504288,Rick,Brooklyn,Williamsburg,40.71121,-73.95079,Entire home/apt,175,2,3,2018-12-23,0.27,1,0 +20521092,Bushwick Reading Room,5190439,Armando,Brooklyn,Bushwick,40.70141,-73.92368,Private room,55,1,9,2017-10-01,0.40,1,0 +20521505,1 BR Suite Minutes to Botanic Gardens!,2610288,Laura,Brooklyn,Crown Heights,40.66543,-73.95439,Entire home/apt,105,2,55,2019-06-29,2.47,1,18 +20522061,Fabulous flat iron 2 bedroom 2 bathroom,25043341,Lisa,Manhattan,Flatiron District,40.73969,-73.98962,Entire home/apt,495,1,43,2019-06-09,1.91,1,343 +20523741,Cozy Mini Studio Prvt Bath & Kitchen 15 Mins JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.69006,-73.86917,Entire home/apt,34,2,93,2019-06-30,4.07,2,247 +20523843,"MARTIAL LOFT 3: REDEMPTION (upstairs, 2nd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69467,-73.92433,Private room,0,2,16,2019-05-18,0.71,5,0 +20523979,"1 Bed, 2 Bath Fully Furnished Upper East Side Apt",1188096,Michael,Manhattan,Midtown,40.75751,-73.96464,Entire home/apt,233,90,0,,,1,365 +20524177,"Big Apt/big bedroom, 71st & 1st Ave",10471351,Michael,Manhattan,Upper East Side,40.76834,-73.95647,Private room,85,30,11,2019-03-20,0.55,1,305 +20527413,"Spacious, 2 Story Suburban Retreat in the LES",54401544,Cassidy,Manhattan,Lower East Side,40.71898,-73.98472,Private room,133,2,1,2017-12-03,0.05,1,0 +20529328,Double Bed Private Retreat,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68576,-73.9456,Private room,70,2,57,2019-06-03,2.54,3,324 +20529760,Excellent Double Room,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68609,-73.9448,Private room,70,2,45,2019-06-21,1.96,3,350 +20530264,Great Single Room,1526757,Lay,Brooklyn,Bedford-Stuyvesant,40.68554,-73.94566,Private room,60,2,60,2019-06-23,2.62,3,355 +20532190,Brooklyn Garden Apartment,166634,Lou,Brooklyn,Brownsville,40.66114,-73.91258,Entire home/apt,300,2,11,2019-06-02,0.57,5,51 +20532490,Beautiful Designer Loft in Williamsburg,2789221,Alex,Brooklyn,Williamsburg,40.70743,-73.96786,Entire home/apt,150,2,8,2018-12-02,0.35,1,0 +20533007,Taaffe Playground 2,3013248,Shane,Brooklyn,Bedford-Stuyvesant,40.69199,-73.95908,Private room,72,1,1,2017-09-08,0.04,1,0 +20534562,Cozy Upper East Side Apartment - 1 bedroom,146620661,Mary,Manhattan,Upper East Side,40.77985,-73.94624,Entire home/apt,200,5,4,2018-09-16,0.18,1,0 +20535577,1 bedroom Aptm+ Guest room close to Prospect Park,59442523,Josh,Brooklyn,Flatbush,40.6531,-73.96331,Entire home/apt,80,1,2,2017-08-25,0.09,2,0 +20535581,Private Room in a Modern Fort Greene Apartment,3283373,John,Brooklyn,Fort Greene,40.68867,-73.97192,Private room,74,7,3,2019-03-27,0.25,1,49 +20537153,West Village-charming studio/amazing location!,30805991,Daniel,Manhattan,West Village,40.73514,-74.00647,Entire home/apt,190,3,2,2017-09-26,0.09,1,0 +20538305,"East Village, Spacious Private Room w Backyard",89501678,Kyle,Manhattan,East Village,40.72104,-73.97991,Private room,78,1,8,2017-08-28,0.35,2,0 +20539089,Sunny Greenwich Village 1 br in best location!,24530399,Delia,Manhattan,West Village,40.73453,-74.00238,Entire home/apt,250,2,2,2017-10-01,0.09,1,0 +20539354,★Luxurious Manhattan's Midtown Resort★ 2 Double's,64065593,ResortShare5,Manhattan,Midtown,40.75172,-73.97212,Private room,198,2,9,2018-10-25,0.40,13,263 +20540868,Cozy apt in Astoria near train and bus,58391491,Juel,Queens,East Elmhurst,40.76546,-73.87201,Entire home/apt,220,1,5,2017-11-09,0.22,5,0 +20541408,Female Only Upper West Side Room,87951927,Jeanie,Manhattan,Upper West Side,40.80046,-73.96598,Private room,75,1,5,2017-09-25,0.22,1,0 +20541640,Boho Chic Brooklyn Heights,11478902,Ben,Brooklyn,Brooklyn Heights,40.69439,-73.99396,Entire home/apt,110,2,1,2017-08-30,0.04,1,0 +20541715,Comfort Zone/spacious condo/3 minutes from subway,146675319,Will,Bronx,Mount Hope,40.85031,-73.90102,Entire home/apt,105,1,23,2019-07-05,1.02,3,6 +20541892,"Lovely Apartment in trendy Astoria, Queens",146677115,Alex,Queens,Astoria,40.76437,-73.91937,Entire home/apt,250,3,3,2018-01-02,0.16,1,1 +20542273,Bright & Sunny Prime Williamsburg Private Room,81287,Jeff,Brooklyn,Williamsburg,40.71012,-73.96462,Private room,150,1,39,2019-06-21,1.72,1,266 +20542510,Room 1 Private Lower Level Getaway w/ Window (Lower Level 1),104927746,Amardeep,Staten Island,Concord,40.59669,-74.08645,Private room,32,4,45,2019-04-21,2.09,7,333 +20547687,Newly listed stylish 2BR duplex in East Village,54501105,Sophie,Manhattan,East Village,40.73055,-73.98928,Entire home/apt,260,3,24,2019-07-01,3.35,2,26 +20548717,A private bedroom in the heart of Manhattan,100836839,Elizabeth,Manhattan,Midtown,40.74983,-73.98646,Private room,70,5,1,2017-09-27,0.05,1,0 +20549878,Bright Apartment Nestled in Hamilton Heights,19537518,Brooks,Manhattan,Harlem,40.82239,-73.95437,Entire home/apt,115,3,5,2018-04-03,0.24,1,0 +20552326,Bedroom #1 in Queens,137838298,Norma,Queens,Jamaica,40.68156,-73.76844,Private room,80,1,19,2019-06-23,0.85,2,177 +20552425,Sun-filled room in the heart of Bushwick,79896285,Amelia,Brooklyn,Bushwick,40.69961,-73.92132,Private room,50,4,0,,,1,0 +20552544,Clean and Cozy Brooklyn Room in Artsy Apartment,57630325,Christopher,Brooklyn,Flatbush,40.65265,-73.96559,Private room,47,1,18,2018-05-22,0.80,1,0 +20553129,Bohemian Sanctuary,11723764,Whitney,Brooklyn,Williamsburg,40.70791,-73.93877,Entire home/apt,97,1,2,2017-08-30,0.09,1,0 +20553159,VERY SPACIOUS COZY ROOM IN HIP EAST VILLAGE AREA,90429772,Hanna,Manhattan,East Village,40.72727,-73.98801,Private room,95,2,26,2019-04-28,1.14,2,1 +20553283,Medical Student Room A : Brooklyn Hospitals,146776990,Rosemarie,Brooklyn,East Flatbush,40.65286,-73.93209,Private room,35,30,3,2018-05-26,0.16,4,342 +20555087,Uptown comfy private large room,90153911,Ronny,Manhattan,Harlem,40.82279,-73.95216,Private room,65,2,2,2017-09-15,0.09,1,0 +20555569,Rooming has never been better. Room #2,95572265,Laura,Brooklyn,Bedford-Stuyvesant,40.67966,-73.9283,Private room,45,3,4,2018-07-28,0.21,2,342 +20556243,"Gorgeous, light-filled two-story apartment",131490584,Bree,Brooklyn,Clinton Hill,40.68557,-73.96056,Private room,60,4,0,,,1,0 +20556539,"Privet guest unit, great location Next to subway!",23262657,Maayan,Queens,Forest Hills,40.71645,-73.85035,Private room,99,1,3,2018-04-29,0.14,2,0 +20556622,Private Cozy Space,48573053,Verona,Queens,Queens Village,40.70414,-73.74418,Private room,35,4,0,,,1,363 +20557017,Cozy Apartment/Near LGA airport and subway,146812160,Bei Lei,Queens,Flushing,40.76069,-73.83338,Entire home/apt,150,1,19,2018-01-10,0.83,1,0 +20557463,Cozy modern room with good company and great view,58231083,Seo Hee,Manhattan,Morningside Heights,40.80389,-73.96541,Private room,50,2,2,2017-09-04,0.09,1,0 +20557646,Small cozy room close to most NYC attractions.,59432400,Anna,Manhattan,Harlem,40.81916,-73.94562,Private room,50,4,20,2019-01-07,0.90,2,3 +20557804,Upper East Duplex with private garden,39927670,Frank,Manhattan,Upper East Side,40.77531,-73.95165,Entire home/apt,151,6,2,2017-09-03,0.09,1,0 +20558461,"Big Private Room in shared apt in Rego Park, NY",146823994,Abdul,Queens,Rego Park,40.73086,-73.85663,Private room,44,2,12,2019-01-01,0.53,1,0 +20561751,阳光民宿 单房干净舒适。“和缘国旅”了解更多旅游、民宿 (Website hidden by Airbnb),105074140,Emmy,Queens,Flushing,40.75472,-73.80417,Private room,38,1,66,2019-02-12,3.50,4,0 +20565375,Luxury New 2 bed Apartment By Central Park North,138765458,Lilian,Manhattan,East Harlem,40.79674,-73.94674,Entire home/apt,325,6,15,2019-05-14,0.68,1,156 +20565481,Historic UES Penthouse/Rooftop Terrace by the MET,146871946,Lauren,Manhattan,Upper East Side,40.7774,-73.96066,Entire home/apt,300,1,0,,,1,0 +20566445,Amazing Backyard Studio (Williamsburg),53821850,Jermaine,Brooklyn,Williamsburg,40.70834,-73.94717,Entire home/apt,139,1,115,2019-06-15,5.06,2,67 +20567374,Top floor apartment above the park,28190733,Richard,Bronx,Kingsbridge,40.88883,-73.90046,Entire home/apt,175,1,10,2018-11-02,0.54,1,0 +20568215,NYC tourism and food just steps away!,93376283,Gabriella,Manhattan,Hell's Kitchen,40.76638,-73.99079,Entire home/apt,168,2,4,2017-11-25,0.20,1,0 +20568978,Cozy 1 Bedroom Apartment,49989254,Zach,Manhattan,Midtown,40.74635,-73.98103,Entire home/apt,250,1,0,,,1,0 +20569589,Beautiful apartment located in Chelsea!,11827970,Elizabeth,Manhattan,Chelsea,40.7382,-73.99844,Entire home/apt,250,3,17,2018-11-24,0.76,1,0 +20570202,Cozy Apartment With Private Backyard,37512618,Chukwudike,Brooklyn,East New York,40.6705,-73.87851,Entire home/apt,100,2,6,2019-02-17,0.26,1,0 +20570291,Lovely and Modern Greenpoint Apartment,44336290,Roya,Brooklyn,Greenpoint,40.72917,-73.95589,Entire home/apt,160,2,3,2017-12-30,0.13,1,0 +20570327,1 Bedroom Presidential - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75287,-73.97352,Private room,449,3,0,,,4,357 +20570865,Modern and Beautiful room in Williamsburg Brooklyn,21058022,Pablo,Brooklyn,Williamsburg,40.70682,-73.94594,Private room,90,4,3,2018-05-04,0.16,3,0 +20571263,Roomy West Village 1 Br near Washington Sq. Park,19336311,Lizzy,Manhattan,West Village,40.72958,-74.00379,Entire home/apt,250,14,0,,,1,0 +20572019,Brooklyn home available,145219249,Dovber,Brooklyn,Crown Heights,40.66592,-73.94266,Entire home/apt,350,2,0,,,1,0 +20572271,5 Mins Walk to Columbia University,11523011,Tiara,Manhattan,Morningside Heights,40.80731,-73.96579,Private room,55,14,3,2019-01-25,0.19,2,164 +20572398,Big room in a great Williamsburg apartment,131950694,Sara,Brooklyn,Williamsburg,40.71475,-73.94197,Private room,70,1,1,2017-08-26,0.04,1,0 +20572472,Unique Fort Greene Getaway with Private Deck,6918423,Emilia And Michael,Brooklyn,Fort Greene,40.68481,-73.9694,Entire home/apt,275,3,62,2019-07-07,2.78,1,310 +20572801,"Beautiful, sunlit private room in Spanish Harlem",133924344,Michele,Manhattan,East Harlem,40.792,-73.94522,Private room,79,1,68,2019-04-27,3.02,1,0 +20572837,Private Room right near SI Ferry,66798529,Courtney,Staten Island,St. George,40.63975,-74.07774,Private room,70,31,0,,,1,365 +20572848,"Large Clean Room, close to the A-Train",146959142,Dorian,Manhattan,Washington Heights,40.84617,-73.93781,Private room,40,3,10,2019-06-22,0.46,1,0 +20573255,1 Bedroom Apt. Minutes from Manhattan - No Parties,146963216,Dora,Brooklyn,Prospect Heights,40.68048,-73.9654,Entire home/apt,105,2,61,2019-06-23,2.72,1,239 +20573565,Spacious room in central Brooklyn location,125692898,Andrea,Brooklyn,Bushwick,40.70463,-73.92428,Private room,70,2,2,2017-09-04,0.09,1,0 +20573818,2BR Apartment in Maspeth,41121514,Esteban,Queens,Ridgewood,40.71239,-73.90517,Entire home/apt,60,6,0,,,1,0 +20574057,"Spacious BK Heights room, walk to Brooklyn Bridge",3376018,William,Brooklyn,Brooklyn Heights,40.69093,-73.9929,Private room,64,7,6,2019-06-11,0.70,1,0 +20575645,Nysa's castle,146988248,Naveed,Queens,Whitestone,40.78881,-73.82882,Entire home/apt,250,2,6,2018-03-08,0.27,1,311 +20580419,Sunset room,145878384,Denise,Brooklyn,East Flatbush,40.65441,-73.93009,Private room,75,3,11,2019-05-22,0.52,7,330 +20581137,Luxury Apartment w/ Amazing Views,39041380,Ashley,Manhattan,Financial District,40.71015,-74.01281,Entire home/apt,275,2,0,,,1,0 +20581430,Large Condo by Fordham University,146675319,Will,Bronx,Fordham,40.85217,-73.90239,Entire home/apt,100,2,2,2019-07-01,1.05,3,26 +20581823,"NO XTRA FEES: Big single room, work station, TV",82889379,Shera,Bronx,Wakefield,40.89756,-73.85639,Private room,50,1,130,2019-06-28,5.76,4,148 +20581903,Astounding room/Upgrade to full apartment,166634,Lou,Brooklyn,Brownsville,40.66255,-73.91342,Private room,49,2,33,2019-06-25,1.55,5,0 +20582759,Charming Brooklyn Heights Apartment,3053304,Christina,Brooklyn,Brooklyn Heights,40.69969,-73.99393,Entire home/apt,125,2,0,,,1,0 +20582991,Private studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74844,-73.97713,Entire home/apt,130,30,1,2017-11-01,0.05,50,364 +20583124,Gorgeous space in brownstone on cobblestone st,123805373,Elizabeth,Brooklyn,Brooklyn Heights,40.693,-73.99774,Entire home/apt,118,1,2,2018-02-25,0.09,1,0 +20583325,Cool studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.7482,-73.97525,Entire home/apt,150,30,4,2019-01-25,0.28,50,333 +20583443,Chic & Sunlit w/ a lovely Private Terrace in LES,1488713,Kelsi,Manhattan,Lower East Side,40.71902,-73.99027,Entire home/apt,300,3,33,2019-06-10,1.44,1,58 +20583769,Comfy Room w/UPGRADE to entire apartment,166634,Lou,Brooklyn,Brownsville,40.66034,-73.91416,Private room,49,2,6,2019-06-11,2.20,5,191 +20584207,Sunny and Large Brooklyn Apartment!,5462007,Hod & Chaya,Brooklyn,Crown Heights,40.66941,-73.93849,Entire home/apt,245,4,8,2019-04-28,0.43,1,5 +20584333,Outstanding Private Room + Bath + Outdoor Space,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95877,Private room,60,1,23,2019-04-14,1.01,3,0 +20584605,Super suite to stay in New York,45623372,Maria Ines,Brooklyn,Williamsburg,40.71358,-73.96421,Entire home/apt,160,7,4,2018-09-28,0.18,1,0 +20586070,UPPER WEST 2BED 2BATH HIGH FLOOR/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.7744,-73.9874,Entire home/apt,275,30,21,2019-06-20,1.26,25,318 +20586647,Large Studio near Central Park,16401899,Christford,Manhattan,East Harlem,40.78998,-73.946,Entire home/apt,120,1,61,2019-06-18,2.67,1,1 +20587057,"Quiet 1BR in Williamsburg BK, 11 min to Manhattan",15723130,Carly,Brooklyn,Williamsburg,40.7138,-73.94001,Entire home/apt,150,3,8,2019-06-02,0.35,1,9 +20587133,"Spacious, bright room in art-filled apartment!",116758734,Amos,Manhattan,Inwood,40.87085,-73.9183,Private room,59,4,19,2018-10-06,0.84,1,0 +20587159,Cozy East Village Studio Apartment,8130515,Jessica,Manhattan,East Village,40.72547,-73.98315,Entire home/apt,150,2,2,2017-09-26,0.09,1,0 +20587567,Cozy Studio Apartment in West Chelsea,4114004,Scott,Manhattan,Chelsea,40.74847,-74.00033,Entire home/apt,154,2,3,2017-12-11,0.13,1,0 +20587755,"Hello, Brooklyn.",4983469,Jonathan,Brooklyn,Boerum Hill,40.68796,-73.98783,Entire home/apt,174,3,5,2017-11-05,0.23,1,0 +20587853,Luxury 1 BR Steps to World Trade Center! #10248,21307389,Emma,Manhattan,Financial District,40.70949,-74.01438,Entire home/apt,250,30,22,2019-06-30,1.00,1,81 +20588062,Perfectly Located Lincoln Center One-Bedroom,147092207,Fernando,Manhattan,Upper West Side,40.7723,-73.98222,Entire home/apt,200,2,3,2018-04-15,0.13,1,2 +20588184,PEPE's PLACE !!!!! Shared Apartment!!!!,147094537,Morgan,Bronx,Concourse Village,40.83206,-73.91969,Shared room,60,1,2,2017-09-21,0.09,1,0 +20589142,Cozy designer room in Art-loving Prime Bushwick,2208374,Elena,Brooklyn,Bushwick,40.70068,-73.92211,Private room,85,3,3,2018-01-04,0.13,2,281 +20589695,Beautiful Home in the Heart of Greenpoint,4033648,Victoria,Brooklyn,Greenpoint,40.72942,-73.95122,Entire home/apt,120,4,9,2019-05-26,0.40,1,10 +20589880,Cute Columbus Circle Apt - Close to Park & Subway,5305576,Leigh,Manhattan,Hell's Kitchen,40.76704,-73.98484,Entire home/apt,115,60,5,2019-02-15,0.42,1,76 +20590180,Secret Garden,127756959,Lawrence & Patrice,Brooklyn,East Flatbush,40.63826,-73.93186,Private room,47,4,21,2019-05-13,0.93,2,320 +20590523,Sunny Hideout in the Heart of Manhattan's LES,4530544,Daniel,Manhattan,Lower East Side,40.72153,-73.98765,Entire home/apt,150,3,28,2019-06-17,1.25,1,1 +20590743,Large one bedroom Greenpoint,3519805,Fabien,Brooklyn,Greenpoint,40.72816,-73.95528,Entire home/apt,140,2,4,2018-12-24,0.19,1,0 +20590800,"5Star Super Convenient & Spacious BR, 1st Flr Apt",6745095,Walker,Brooklyn,Crown Heights,40.66925,-73.92663,Private room,65,2,81,2019-06-27,3.61,1,64 +20591404,Charming Room with Private Bathroom,126626529,Alfredo,Manhattan,Hell's Kitchen,40.76121,-73.99053,Private room,140,3,116,2019-06-22,5.70,2,82 +20591509,Garden Light,127756959,Lawrence & Patrice,Brooklyn,East Flatbush,40.63972,-73.93234,Private room,47,4,27,2019-06-22,1.19,2,317 +20591534,Cozy Modern Apartment w/ Courtyard,1261893,Yannick,Brooklyn,Greenpoint,40.72085,-73.94132,Entire home/apt,100,2,5,2018-05-28,0.23,1,0 +20593268,"Convenient and Modern BR in Hell's Kitchen, NYC!",147148796,Madison,Manhattan,Hell's Kitchen,40.75613,-73.99785,Shared room,70,1,0,,,1,15 +20597491,Very Nice Apartment close to JFK Airport!!,147184528,Yvette,Queens,South Ozone Park,40.66789,-73.79197,Entire home/apt,62,1,53,2019-06-25,2.36,1,178 +20599017,Lower East Side Private room.,6699943,Rik,Manhattan,Lower East Side,40.72103,-73.98434,Private room,188,2,2,2019-01-29,0.09,1,0 +20599362,1.5 bedroom in Williamsburg,11573901,Christine,Brooklyn,Williamsburg,40.711,-73.95827,Entire home/apt,185,2,1,2017-09-08,0.04,1,0 +20600247,EXTRAVAGANT RESORT In the ❤️ of Midtown 45 Resort,64065593,ResortShare5,Manhattan,Midtown,40.753,-73.97364,Private room,252,2,3,2018-10-20,0.16,13,327 +20600357,"Experiencing Tranquility in Private Home, Room # 1",147210078,Bruce & Cyrina,Brooklyn,Flatbush,40.65108,-73.95417,Private room,44,2,38,2019-06-22,1.67,4,0 +20602769,Huge 2 BR & 2 Bth Duplex w/ Private Patio & Roof,24323380,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69315,-73.9565,Entire home/apt,180,3,1,2017-12-16,0.05,1,0 +20603008,Cozy Room in Brooklyn (5 min from J train),142398188,Holly,Brooklyn,Bedford-Stuyvesant,40.69268,-73.93054,Private room,50,5,1,2017-09-04,0.04,1,6 +20604857,Empire St View Luxury 3BR 2BA Penthouse BalconyGym,40042311,Antonya,Manhattan,Murray Hill,40.74699,-73.9777,Entire home/apt,799,5,1,2018-07-28,0.09,1,359 +20604989,Very Clean Condo In the Heart Of Trendy Greenpoint,10768717,Sal,Brooklyn,Greenpoint,40.7324,-73.95091,Entire home/apt,180,2,49,2019-06-09,2.18,1,60 +20605308,Charming and Bright 1 bdr apartment in Noho,147256218,Siria,Manhattan,NoHo,40.72788,-73.9939,Entire home/apt,180,2,18,2018-10-16,0.79,1,0 +20605399,Brooklyn travel house #6,145802745,Jerry,Brooklyn,Borough Park,40.6357,-74.00508,Private room,170,5,16,2019-03-17,0.70,1,354 +20607037,Midtown East 2 Bed/2 Bath Elevator Building Apt,47267079,Tripp,Manhattan,Murray Hill,40.74838,-73.97544,Entire home/apt,186,7,9,2018-03-31,0.41,1,0 +20607505,Grand Central/ United Nations! MASTER Bedroom,25157246,Cindy,Manhattan,Midtown,40.75212,-73.96975,Private room,82,30,0,,,2,326 +20607771,Clean room 4 blocks to the N/W Train,76829914,Erik,Queens,Astoria,40.76398,-73.91974,Private room,90,5,2,2017-09-20,0.09,1,83 +20607819,"1,600sq ft modern duplex in new harlem brownstone",147118920,Harlem,Manhattan,East Harlem,40.80924,-73.93873,Entire home/apt,172,2,63,2019-06-19,2.78,1,0 +20608040,Private Room in Cozy shared apt in Williamsburg,6757221,Athina,Brooklyn,Williamsburg,40.70739,-73.94726,Private room,60,6,3,2018-07-30,0.14,2,254 +20608117,"Sunny, Quiet Room in Greenpoint",1641537,Lauren,Brooklyn,Greenpoint,40.72462,-73.94072,Private room,0,2,12,2017-10-27,0.53,2,0 +20609505,Your favorite room,82189528,Lara,Manhattan,Washington Heights,40.84131,-73.93574,Private room,52,2,1,2017-09-21,0.05,1,0 +20614043,Charming home away from home.,147339774,Keverel,Brooklyn,Crown Heights,40.66978,-73.94454,Entire home/apt,184,2,40,2018-09-24,1.78,1,0 +20614820,Bright & Spacious Chinatown Loft,75109,Jaymie,Manhattan,Chinatown,40.71618,-73.99225,Entire home/apt,145,4,13,2019-07-02,0.60,1,68 +20614953,large serene room available in brooklyn duplex,129242503,Rachel,Brooklyn,Bedford-Stuyvesant,40.69189,-73.95936,Private room,65,2,1,2017-09-04,0.04,1,0 +20615793,Quaint Loft near Broadway minutes to Central Park,3449385,JimiBeth,Manhattan,Upper West Side,40.79273,-73.97592,Entire home/apt,100,4,32,2018-07-28,1.51,1,0 +20615932,1 Bedroom Garden Level Apt In Bushwick,73498715,Jonathan,Brooklyn,Bushwick,40.69677,-73.91404,Entire home/apt,74,7,9,2019-06-17,0.42,1,61 +20616239,Beautiful Nolita Apartment,7941058,Levi,Manhattan,Lower East Side,40.721,-73.99147,Entire home/apt,200,2,3,2017-12-22,0.15,1,38 +20616492,Private West Village apt by Washington Square Park,5637573,Russell,Manhattan,Greenwich Village,40.7328,-73.99899,Entire home/apt,175,1,39,2019-06-13,1.75,1,55 +20616864,Private 1 Bedroom Apartment Manhattan,105462484,Leo,Manhattan,East Harlem,40.78784,-73.94931,Entire home/apt,130,1,4,2017-10-25,0.18,1,0 +20616888,"Experiencing Tranquality in Private Home, Room #2.",147210078,Bruce & Cyrina,Brooklyn,East Flatbush,40.65226,-73.95166,Private room,48,2,60,2019-06-28,2.63,4,9 +20616929,Spacious 1 Bd. Apt. Inwood near Fort Tryon Park,1524708,Galen,Manhattan,Inwood,40.85927,-73.92966,Private room,200,3,1,2017-10-24,0.05,1,0 +20616948,AMAZING AND QUITE 2 BEDROOM APARTMENT ON SOUTH ST.,76104209,Rated,Manhattan,Financial District,40.7074,-74.00151,Entire home/apt,205,30,1,2018-10-11,0.11,33,332 +20617748,Deanna place,31884399,Daniel,Queens,Laurelton,40.68507,-73.73342,Entire home/apt,90,15,0,,,1,180 +20619757,Bed Stuy Renovated Gem,123849755,Gabe,Brooklyn,Bedford-Stuyvesant,40.68303,-73.95431,Entire home/apt,130,3,58,2019-06-18,2.63,1,295 +20620313,Modern Luxury Brooklyn Private Bedroom w/ Deck!,5291405,Ralph,Brooklyn,Clinton Hill,40.68153,-73.9605,Private room,149,2,5,2018-06-04,0.22,1,0 +20620647,Studio Deluxe 1 - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.7538,-73.97355,Private room,389,3,3,2017-09-14,0.13,4,357 +20620681,Private Duplex in East Village,42951815,Paul,Manhattan,East Village,40.72321,-73.98327,Private room,250,2,0,,,1,0 +20621413,2-Bedroom Presidential 1 - Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75371,-73.97226,Entire home/apt,699,3,3,2019-04-11,0.20,4,324 +20621540,Spacious Room in Fort Greene,3490097,Victoria,Brooklyn,Fort Greene,40.68703,-73.97575,Private room,67,3,1,2017-09-12,0.05,1,0 +20622747,Midtown East Studio,2409706,Christopher,Manhattan,Murray Hill,40.74969,-73.97937,Entire home/apt,135,2,5,2018-12-07,0.23,1,0 +20622825,Sunny loft,9704072,Staccey,Brooklyn,Bushwick,40.70763,-73.92223,Private room,90,1,0,,,1,0 +20623171,"East Village, Private Room",89501678,Kyle,Manhattan,East Village,40.72132,-73.98068,Private room,83,2,1,2017-08-27,0.04,2,0 +20624287,Spacious & comfy BK bedroom 30mins from Manhattan.,76765350,Perin,Brooklyn,Bedford-Stuyvesant,40.68163,-73.95558,Private room,37,7,15,2019-02-14,0.70,2,71 +20624427,Private room in quiet West Harlem Upper Manhattan,128227275,John,Manhattan,Harlem,40.82736,-73.95292,Private room,65,1,41,2019-07-06,1.84,1,81 +20624541,Modern apartment in the heart of Williamsburg,10132166,Aymeric,Brooklyn,Williamsburg,40.70838,-73.94645,Entire home/apt,0,5,3,2018-01-02,0.15,1,73 +20624666,Sunny 1 BR with Amazing Views,17090405,Mazdak,Brooklyn,Crown Heights,40.67502,-73.95732,Entire home/apt,100,1,2,2017-09-15,0.09,1,0 +20624817,Co-op Apartment in The Lombardy Hotel- 300 sq. ft.,100829279,Ian,Manhattan,Midtown,40.76033,-73.96946,Entire home/apt,270,1,154,2019-06-19,6.78,3,234 +20628186,Medical Student Room B : Brooklyn Hospitals,146776990,Rosemarie,Brooklyn,East Flatbush,40.65312,-73.93413,Private room,35,30,5,2018-12-29,0.22,4,263 +20630578,Large Studio September 24th-October 15th Midtown,147495455,Laurent,Manhattan,Kips Bay,40.7433,-73.9807,Entire home/apt,120,20,0,,,1,0 +20631204,BED-STUY BRILLIANCE - Cozy/Spacious Private Room,147500609,Duane,Brooklyn,Bedford-Stuyvesant,40.68539,-73.93638,Private room,67,2,23,2019-01-02,1.03,1,0 +20632255,Private bedroom in Upper East Side apt w/ balcony!,90748448,Christina,Manhattan,Upper East Side,40.77439,-73.95489,Private room,85,2,2,2017-10-01,0.09,1,0 +20634473,Large and Sunny 2 bedroom close to Central Park,147528441,Michael,Manhattan,Upper East Side,40.77205,-73.95128,Entire home/apt,225,2,3,2018-12-02,0.13,1,0 +20634950,Waterfront Condo with private bedroom and bathroom,25518844,Alison,Brooklyn,Greenpoint,40.72992,-73.96,Private room,200,2,11,2018-10-07,0.51,1,179 +20635939,Studio Deluxe 2- Wyndham Midtown 45,145801588,Aaron,Manhattan,Midtown,40.75328,-73.97193,Private room,389,3,2,2017-10-20,0.09,4,357 +20636416,"Sunny Williamsburg Loft, minutes to Manhattan",57641560,Christopher,Brooklyn,Williamsburg,40.71453,-73.9551,Entire home/apt,182,5,62,2019-06-24,2.83,2,28 +20636888,tidy room with PRIVATE BATH & PRIVATE ENTRANCE,124860677,Jim&Lisa,Queens,Flushing,40.75777,-73.81172,Private room,54,2,65,2019-07-03,2.88,6,361 +20636966,Beautiful Lower East Side Loft,1521723,Nick,Manhattan,Lower East Side,40.7147,-73.98994,Entire home/apt,400,3,5,2019-07-04,0.24,1,26 +20638833,Private room,147567811,Renaldy,Queens,Astoria,40.77326,-73.92677,Private room,50,4,1,2017-09-22,0.05,1,0 +20639280,Prime Location close to Central Park!,5137740,Stefanie,Manhattan,Upper West Side,40.78696,-73.97293,Shared room,125,3,0,,,1,0 +20639311,"Modern, Quiet & Ultra Clean 1 BDRM Steps Subway",34379227,Jamie,Queens,Sunnyside,40.74317,-73.92532,Entire home/apt,140,3,40,2019-07-02,1.76,1,42 +20639628,Spacious comfortable master bedroom with nice view,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68173,-73.91342,Private room,0,1,93,2019-06-15,4.28,6,176 +20639792,Contemporary bedroom in brownstone with nice view,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68279,-73.9117,Private room,0,1,95,2019-06-21,4.37,6,232 +20639914,Cozy yet spacious private brownstone bedroom,86327101,Adeyemi,Brooklyn,Bedford-Stuyvesant,40.68258,-73.91284,Private room,0,1,95,2019-06-23,4.35,6,222 +20639971,~The Perfect Funished Studio in Greenwich Village~,147579400,Steven,Manhattan,Greenwich Village,40.73056,-73.99357,Entire home/apt,99,1,0,,,1,0 +20640353,Beautiful Bright Stay in Williamsburg,3363377,Eryka,Brooklyn,Williamsburg,40.70942,-73.94897,Private room,105,2,48,2019-06-22,2.14,2,46 +20641332,COZY L.E.S APARTMENT,108894035,Danny,Manhattan,Lower East Side,40.72008,-73.98786,Entire home/apt,139,5,12,2019-04-28,0.56,1,25 +20641534,❤️Quiet room w/PRIVATE BATHROOM near Manhattan!⭐️,60908748,Maria,Brooklyn,Bushwick,40.70011,-73.92241,Private room,100,1,132,2019-06-20,5.88,2,74 +20641793,Modern Studio 1 block away from the beach,725286,Michael,Brooklyn,Brighton Beach,40.57688,-73.95308,Entire home/apt,130,3,22,2019-06-20,0.99,1,134 +20645320,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,76104209,Rated,Manhattan,Upper West Side,40.77068,-73.98674,Entire home/apt,229,30,0,,,33,364 +20649144,Private & Cozy Room. 20 minutes from Times Square,139119594,Oscar,Manhattan,Harlem,40.82232,-73.93647,Private room,77,3,92,2019-07-01,4.10,1,200 +20649522,"Bushwick, Spacious Private Room with Balcony",21227711,Merrill,Brooklyn,Bushwick,40.69543,-73.92324,Private room,75,4,4,2017-09-25,0.18,1,0 +20649687,"Simple, bright and quiet studio",5731144,Gwen,Manhattan,Washington Heights,40.84877,-73.93821,Entire home/apt,65,4,0,,,1,0 +20649922,Sunny room in the heart of WILLIAMSBURG Brooklyn.,21921891,Manuel,Brooklyn,Williamsburg,40.71215,-73.95177,Private room,80,5,1,2017-08-25,0.04,1,0 +20649927,Spacious Modern King size living space & Bedroom,147668954,Nancy,Brooklyn,Fort Hamilton,40.61765,-74.03406,Private room,125,9,0,,,1,365 +20650006,"Beautiful spacious room, easy city access",10414799,Katharina,Brooklyn,Bedford-Stuyvesant,40.69232,-73.93864,Private room,65,3,15,2019-06-03,0.67,2,109 +20650014,EMPIRE STATE BUILDING APARTMENT,21328739,Rammi,Manhattan,Kips Bay,40.74266,-73.9792,Entire home/apt,220,7,36,2019-06-22,1.65,1,91 +20650417,"Sunny, Relaxing Oasis in Williamsburg",2203563,Sarah,Brooklyn,Williamsburg,40.71194,-73.94892,Private room,150,2,0,,,1,0 +20650685,Cozy and Sunny Room Queen Size Bed in Bedstuy,8671974,Laure,Brooklyn,Bedford-Stuyvesant,40.68919,-73.9335,Private room,60,2,1,2017-09-02,0.04,1,365 +20651049,Spacious Designer Loft in South Williamsburg,454274,Linda,Brooklyn,Williamsburg,40.70789,-73.96755,Entire home/apt,180,5,12,2018-06-10,0.57,1,0 +20651136,"Private 1 bed 1 bath- Chelsea, Manhattan",44170535,Caitlin,Manhattan,Chelsea,40.7459,-73.99867,Private room,165,3,4,2017-10-10,0.18,2,0 +20651206,Private bedroom in East Village,99791908,Lera,Manhattan,East Village,40.72945,-73.98203,Private room,75,1,3,2018-05-26,0.21,2,0 +20651451,"Perfect place for tourist, near subway, restaurant",141012246,Ayodeji,Manhattan,Harlem,40.81793,-73.94017,Private room,100,1,9,2018-10-28,0.40,2,90 +20651581,Sunset Park Studio,101533618,Jim & Barbara,Brooklyn,Sunset Park,40.65198,-74.00763,Entire home/apt,120,2,7,2018-06-30,0.50,1,0 +20652600,"Sun Drenched, Extra Large 1 Bdrm Clinton Hill Apt",147688555,Kenya & Paul,Brooklyn,Bedford-Stuyvesant,40.68459,-73.95732,Entire home/apt,179,3,52,2019-06-26,2.39,1,185 +20652607,SKYBLUE,147695010,Anita-Kay,Queens,St. Albans,40.69606,-73.77311,Private room,125,1,0,,,1,179 +20652620,Single Bed A in Sharing Room near Grand Central,147402286,Mizue,Manhattan,Murray Hill,40.75035,-73.97907,Shared room,49,3,93,2019-06-27,4.13,2,26 +20652753,Single Bed B in Sharing room near Grand Central,147402286,Mizue,Manhattan,Murray Hill,40.74946,-73.9785,Shared room,49,3,103,2019-06-25,4.56,2,22 +20653090,"Spacious, private bedroom in Brooklyn",30549225,Spenser,Brooklyn,Bushwick,40.70188,-73.92062,Private room,90,4,17,2019-06-09,0.76,1,0 +20653520,"Experiencing tranquility in Private Home, Room #4",147210078,Bruce & Cyrina,Brooklyn,Flatbush,40.64923,-73.95273,Private room,50,2,26,2019-06-29,1.16,4,0 +20653657,️CENTRALLY LOCATED️- Great for Families + Groups,147683950,Devin,Manhattan,Hell's Kitchen,40.76154,-73.99306,Entire home/apt,499,2,16,2019-01-25,0.75,1,240 +20654072,Quiet&Comfy Private Room near F/G train,104836016,Qingming,Brooklyn,Kensington,40.64179,-73.97941,Private room,36,2,13,2019-04-27,0.59,4,231 +20654227,Fulton 2,100069033,Sarah-2,Brooklyn,Cypress Hills,40.68185,-73.88128,Entire home/apt,5000,2,4,2018-01-03,0.18,1,0 +20655740,Penthouse Studio with Queen Bed & Private Rooftop,6655660,Kate,Manhattan,Lower East Side,40.71798,-73.98418,Entire home/apt,275,2,17,2019-05-22,0.76,1,171 +20655777,"Studio apartment by prospect park, catslovers only",147694745,Svetlana,Brooklyn,Flatbush,40.65099,-73.96283,Entire home/apt,80,60,46,2019-01-01,2.05,1,54 +20659193,Great Value! Private room in the northeast bronx,147762665,Jose,Bronx,Wakefield,40.88698,-73.86049,Private room,35,2,16,2019-06-10,1.55,3,156 +20659540,Bright Studio-Bedroom in a loft in ProspectHeights,2807926,Javier,Brooklyn,Prospect Heights,40.67984,-73.9703,Private room,90,2,0,,,1,0 +20659824,☺Kinda feels JUST LIKE HOME! ☺ [BEST RATE],142590597,Joica,Brooklyn,East New York,40.67262,-73.87391,Private room,50,1,3,2018-09-03,0.13,6,179 +20660511,The plaza suite in brooklyn. Bedstuy style,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93975,Private room,250,2,0,,,2,173 +20661572,The printing studio bedroom with garden in Bedstuy !!Brooklyn. Historic neighborhood close to everything ! Full kitchen bathroom BBQ and porch at your disposal. Learn to print !!,29093058,Joann,Brooklyn,Bedford-Stuyvesant,40.69366,-73.93794,Private room,140,1,0,,,2,173 +20661577,Columbia Neighborhood 1 bedroom apartment,72938614,Ned,Manhattan,Morningside Heights,40.80627,-73.96354,Shared room,125,4,0,,,1,0 +20662043,Brklyn · 2 Cozy Bedrooms one with private bathroom,109016966,Jorge,Brooklyn,East Flatbush,40.64641,-73.94956,Private room,50,1,20,2019-07-05,0.88,1,244 +20662567,Home with Private Terrace Off the Park,147796643,Cole,Manhattan,Upper West Side,40.78875,-73.9679,Private room,150,2,5,2018-09-22,0.22,1,0 +20663286,Bright bedroom in convenient Bushwick w/ Rooftop!,133410060,Guille,Brooklyn,Bushwick,40.69455,-73.92715,Private room,59,1,3,2017-09-12,0.13,1,0 +20663644,Elegant Brooklyn Studio in Luxury Amenity Building,77944774,Jacqueline,Brooklyn,Windsor Terrace,40.64931,-73.9733,Entire home/apt,85,3,12,2019-05-20,0.53,1,5 +20663721,ChuckJohnson's Large Room.,147803075,Damon & Yvonne,Brooklyn,Bedford-Stuyvesant,40.68568,-73.91923,Private room,60,30,5,2018-01-02,0.23,1,178 +20663839,Welcome to YURT -- private room in East Village,147810437,Sarah,Manhattan,East Village,40.72601,-73.97674,Private room,110,7,30,2019-05-09,1.34,2,82 +20663936,"Cozy, private bedroom in Greenpoint/Williamsburg",133843931,Bryan,Brooklyn,Greenpoint,40.72546,-73.95558,Private room,37,1,62,2019-06-30,2.80,2,359 +20663997,"Quiet, spacious room in hip Greenpoint apartment",48608026,Sarah,Brooklyn,Greenpoint,40.7228,-73.94538,Private room,90,1,3,2017-09-30,0.14,1,0 +20664275,Charming 1 bedroom in the heart of NYC,18281493,Alexandra,Manhattan,Kips Bay,40.73963,-73.98166,Entire home/apt,180,5,8,2018-05-07,0.41,1,0 +20664395,Entire Apartment Park Slope,3894387,René,Brooklyn,South Slope,40.6628,-73.98349,Entire home/apt,111,2,1,2017-09-08,0.04,1,0 +20665199,Two bedroom basement apartment!,73228035,Maimi,Brooklyn,East Flatbush,40.66047,-73.93743,Private room,150,3,0,,,2,0 +20665380,Modern 2 bedrooms Apt in brand new building.,8502406,Yassir,Brooklyn,Crown Heights,40.67183,-73.95277,Entire home/apt,135,7,12,2019-06-02,0.79,1,0 +20665530,"LES/Chinatown, Bright & cozy private bedroom",90665647,Alpana,Manhattan,Chinatown,40.71405,-73.99291,Private room,120,3,35,2019-07-05,1.65,1,337 +20667471,Williamsburg Penthouse,136267788,Igor,Brooklyn,Williamsburg,40.72028,-73.94152,Entire home/apt,241,5,4,2018-09-28,0.18,1,0 +20667572,Artist's Room in Prime Bushwick,83948710,Lux,Brooklyn,Bushwick,40.701,-73.91986,Private room,69,1,77,2019-07-07,3.45,2,178 +20668002,Masterbed w/private bath nr G train in BedStuy,147858863,Vandra,Brooklyn,Bedford-Stuyvesant,40.68797,-73.9592,Private room,150,1,0,,,1,0 +20671003,Charming 1 br apartment,140492812,Andrew,Brooklyn,Bushwick,40.70587,-73.92358,Entire home/apt,94,2,13,2018-04-15,0.57,2,0 +20673104,Affordable 2 Bedroom on the UES!!!,10774442,Zoe,Manhattan,Upper East Side,40.76644,-73.95486,Entire home/apt,130,3,3,2017-09-28,0.13,1,0 +20673848,Big One Bedroom Directly Across from Central Park!,73597988,Shaye,Manhattan,Upper West Side,40.79982,-73.96058,Entire home/apt,135,2,1,2017-09-10,0.04,1,0 +20674176,Nice room midtown Manhattan 6rs,133130315,Artem,Manhattan,Hell's Kitchen,40.76506,-73.98567,Private room,70,3,6,2019-01-03,0.41,6,225 +20674600,Modern luxury king apartment with large windows,20369715,Sam,Manhattan,Hell's Kitchen,40.7646,-73.98981,Entire home/apt,290,2,1,2017-09-09,0.04,1,0 +20674622,Entire Floor in 1870 Downtown Brooklyn Brownstone,33204787,Yaimara,Brooklyn,Gowanus,40.68289,-73.98532,Private room,95,2,21,2018-01-06,0.94,1,0 +20675077,Sunny Room in Williamsburg- One Block from L Train,118251350,Jake,Brooklyn,Williamsburg,40.71122,-73.94347,Private room,53,3,4,2017-09-01,0.18,1,0 +20675149,"Beautiful, Bright Room Right On Block of G Train",2766813,Chase,Brooklyn,Bedford-Stuyvesant,40.68939,-73.95418,Private room,58,3,5,2018-05-22,0.22,1,0 +20675173,"Luxury duplex, Brooklyn Museum",24333820,Nick,Brooklyn,Crown Heights,40.6753,-73.96282,Private room,80,3,2,2017-09-26,0.09,1,0 +20675762,Medical Student Room C,146776990,Rosemarie,Brooklyn,East Flatbush,40.65286,-73.93371,Private room,33,30,1,2019-06-12,1,4,245 +20676192,30+Day Stay:1000 sq Bsmt Great Living with Deck,137522531,Ali,Queens,Flushing,40.75607,-73.80964,Entire home/apt,198,7,4,2019-06-12,0.18,7,365 +20676841,Private room 15 MINS AWAY FROM FERRY by bus,147952036,Mimi,Staten Island,Rosebank,40.61353,-74.06724,Private room,55,2,88,2019-06-24,4.73,1,114 +20678169,2 beautiful rooms in sunlit Bushwick loft,2793254,Johnny,Brooklyn,Bushwick,40.70408,-73.92045,Private room,150,3,2,2019-05-27,0.80,3,169 +20678183,Great room in the heart of Manhattan !,13287929,Aurélie,Manhattan,East Harlem,40.78602,-73.94977,Private room,100,3,67,2019-07-01,3.06,1,34 +20678724,2 Bedroom Garden Suite (3 Minutes From Train),48980919,Chyanne & Jermaine,Brooklyn,Bedford-Stuyvesant,40.67753,-73.91688,Entire home/apt,129,4,97,2019-07-02,5.02,1,211 +20678802,Beautiful One Bedroom in Little Italy Soho,10457196,Richard,Manhattan,Little Italy,40.71923,-73.99573,Entire home/apt,138,31,4,2019-06-15,0.28,11,93 +20678811,Flatbush Comfy Room (Rm# 2),147972663,Hyacinth,Brooklyn,East Flatbush,40.6485,-73.93855,Private room,40,3,58,2019-06-12,2.57,3,306 +20678858,"One B/R (1 Guest) Near Beach, A & air trains, JFK",139957134,Trudy,Queens,Arverne,40.59736,-73.80029,Private room,35,1,60,2019-06-25,2.73,3,348 +20679072,"One B/R (1-2Gsts) near beach, JFK, A & Air trains",139957134,Trudy,Queens,Arverne,40.59754,-73.79949,Private room,50,1,53,2019-06-27,2.35,3,249 +20679134,Warm Secluded Room in Flatbush (Rm# 1),147972663,Hyacinth,Brooklyn,East Flatbush,40.64991,-73.93716,Private room,40,3,52,2019-06-23,2.34,3,298 +20679146,Private room in Williamsburg with patio,10077970,Alyssa,Brooklyn,Williamsburg,40.71462,-73.96263,Private room,57,1,3,2017-09-16,0.13,1,0 +20679388,SPECTACULAR Midtown East location!,21464170,Js,Manhattan,Midtown,40.7531,-73.97085,Private room,115,1,33,2019-06-23,1.49,1,0 +20679396,旅客之家,64887490,Queen,Queens,Flushing,40.75895,-73.79196,Entire home/apt,80,2,86,2019-06-30,3.83,1,115 +20679565,"BEAUTIFUL 2 BED APARTMENT IN WILLIAMSBURG, BROOLYN",1181366,Tristan,Brooklyn,Greenpoint,40.72246,-73.94768,Entire home/apt,210,7,0,,,1,0 +20679666,"RENOVATED 2BR BY CENTRAL PARK, 51 AND 9",22129776,Ali,Manhattan,Hell's Kitchen,40.76363,-73.98746,Entire home/apt,379,1,3,2018-12-08,0.14,3,365 +20680045,Private Room for 1 guest with air conditioner,35242969,Prime,Brooklyn,Bedford-Stuyvesant,40.6824,-73.91315,Private room,48,4,7,2019-06-22,0.31,1,2 +20682422,Private room with all you need,106241822,Lior,Manhattan,Washington Heights,40.85186,-73.9305,Private room,37,3,5,2018-04-06,0.22,1,0 +20682663,Contemporary style 1 bedroom Apt in Manhattan.,10933267,Jade,Manhattan,Inwood,40.86306,-73.92896,Entire home/apt,175,2,38,2019-06-23,1.69,1,244 +20685563,Bright & Airy in Highland Park,143315723,Graziella,Brooklyn,Cypress Hills,40.68201,-73.89425,Entire home/apt,50,30,34,2019-03-16,1.51,1,234 +20685890,"Spacious, and lit 2 bedroom penthouse in the UWS",63510347,Inna,Manhattan,Upper West Side,40.79412,-73.96806,Entire home/apt,173,10,0,,,1,0 +20685952,Summer vibes,129602851,W.,Bronx,Unionport,40.83121,-73.8483,Entire home/apt,450,2,1,2018-02-01,0.06,2,342 +20686099,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78019,-73.95857,Entire home/apt,225,30,0,,,33,365 +20686134,Hideaway Studio,14469743,Brian,Bronx,Pelham Bay,40.84711,-73.83039,Entire home/apt,80,2,66,2019-06-19,3.04,1,56 +20686701,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.7506,-73.97104,Entire home/apt,176,30,0,,,33,365 +20686965,"Beautiful Home in Historic, Ditmas Park, Brooklyn",13804630,Kelsey,Brooklyn,Flatbush,40.64068,-73.9641,Entire home/apt,165,6,0,,,1,0 +20688175,"Luxurious, Spacious, Ensuite Bath, Nice Hosts too",41947929,Connie,Brooklyn,Crown Heights,40.67749,-73.94854,Private room,125,1,32,2019-06-29,1.50,2,351 +20688359,GRAMERCY EAST 22ND-REFURBISHED WITH LIVE IN SUPER,76104209,Rated,Manhattan,Gramercy,40.73638,-73.98089,Entire home/apt,239,30,0,,,33,242 +20688422,Giant 1br pre-war apartment in Flatbush / Lefferts,1393089,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.66334,-73.94651,Entire home/apt,130,4,17,2019-05-20,0.78,1,110 +20688524,1630 Madison Avenue 4C,130239329,Maria Teresa,Manhattan,East Harlem,40.79633,-73.94819,Entire home/apt,104,30,3,2019-04-27,0.16,1,212 +20688624,Luxury Alcove Studio in Chelsea,979144,Ryan,Manhattan,Chelsea,40.74419,-73.99913,Entire home/apt,225,1,102,2019-07-01,4.55,1,33 +20688793,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70866,-74.01385,Entire home/apt,178,30,1,2018-10-31,0.12,33,327 +20689395,Calm Brownstone Charm in Clinton Hill,5402500,Johanna,Brooklyn,Clinton Hill,40.68541,-73.96188,Entire home/apt,114,12,27,2019-05-07,1.19,1,13 +20689426,Sunny and spacious Brooklyn loft,14120985,Will,Brooklyn,Bedford-Stuyvesant,40.6916,-73.94538,Entire home/apt,130,5,7,2019-06-05,0.52,2,4 +20689498,Historic Brownstone-newly completed renovation,46943042,Andy,Brooklyn,Park Slope,40.67192,-73.97444,Entire home/apt,230,3,12,2019-05-20,0.59,1,354 +20689638,LARGE PRIVATE ROOM CLOSE TO MANHATTAN,139357580,Shuly,Queens,Ditmars Steinway,40.77281,-73.90295,Private room,60,1,3,2017-09-15,0.13,8,129 +20690341,Jeanie's Casita,148074786,Jeanette,Bronx,Morrisania,40.82627,-73.90803,Private room,65,2,0,,,1,0 +20690781,Cozy Soho apartment.,8366847,Jay,Manhattan,Greenwich Village,40.72733,-73.9958,Private room,150,2,1,2018-12-03,0.14,1,0 +20691057,Cozy 2 Bedroom Apt in NYC's hippest neighborhood,33899564,Kayla,Manhattan,East Village,40.72405,-73.97747,Entire home/apt,150,4,6,2017-10-01,0.26,1,0 +20691991,One bedroom with private bathroom in East Village,35875227,Rahul,Manhattan,East Village,40.7293,-73.98283,Private room,100,3,1,2017-09-04,0.04,1,0 +20692159,A Simple Room 35 Minutes From 42nd Street,113152267,Pedro,Bronx,University Heights,40.85657,-73.90915,Private room,55,1,2,2018-03-28,0.11,1,0 +20692462,Fort Greene Jamaican vibes !,35431795,Bels,Brooklyn,Fort Greene,40.69122,-73.96976,Private room,75,3,14,2019-05-14,0.64,1,35 +20692563,Greenwich Village Townhome with Private Garden!,147814925,Lloyd,Manhattan,Greenwich Village,40.733,-73.99413,Entire home/apt,3900,30,7,2018-03-13,0.32,1,180 +20692888,Large Bedroom in Williamsburg 10 mins to Manhattan,3879852,Zaki,Brooklyn,Williamsburg,40.71279,-73.94662,Private room,65,3,1,2017-09-20,0.05,1,0 +20695930,Artistic Historical Harlem! PrivateRm Quiet Haven!,148124467,Lidia,Manhattan,Harlem,40.8098,-73.9441,Private room,89,5,34,2019-06-30,1.58,1,86 +20696496,The Consuello,148130354,George,Brooklyn,Bedford-Stuyvesant,40.68591,-73.9249,Entire home/apt,159,3,36,2019-05-19,1.60,2,2 +20696525,"Cozy, quiet and location, location, location",48581,Sigal,Manhattan,Little Italy,40.71946,-73.99761,Entire home/apt,170,4,0,,,1,0 +20697209,Sunny Jungle Duplex with Private Roof,5717334,Antoine,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95203,Entire home/apt,115,3,5,2018-07-31,0.22,2,0 +20697463,"Quaint, Cozy apartment in Queens",30490972,Kirk,Queens,Ridgewood,40.69748,-73.90127,Entire home/apt,125,3,5,2017-09-25,0.22,1,0 +20697637,Sun-Filled Artist's Duplex In Heart of W. Village,23075166,Hannah,Manhattan,West Village,40.73465,-74.00139,Entire home/apt,325,2,0,,,1,0 +20697910,SUNNY COZY PLACE,87690038,Wesly/Jessica,Brooklyn,Crown Heights,40.67538,-73.93379,Entire home/apt,165,3,2,2019-04-15,0.16,4,263 +20698073,"Hip Modern Brooklyn Studio, Minutes to Manhattan!",148148402,Gary,Brooklyn,Clinton Hill,40.69167,-73.96927,Entire home/apt,129,2,93,2019-07-01,4.15,1,43 +20698375,Spacious Doorman True 2BR near Grand Central,121809482,Gina,Manhattan,Midtown,40.75052,-73.97259,Entire home/apt,350,3,3,2018-01-01,0.14,2,0 +20698477,Comfortable and pleasant fully furnished apartment,83786650,Bridge,Manhattan,Upper East Side,40.76128,-73.96236,Entire home/apt,90,30,5,2018-10-19,0.25,8,306 +20701904,GRAMERCY SUNNY& WELL APPOINTED-W/DRYER,76104209,Rated,Manhattan,Gramercy,40.73741,-73.98096,Entire home/apt,216,30,0,,,33,364 +20702398,Quiet house on City Island,1457680,James,Bronx,City Island,40.84964,-73.78717,Private room,50,2,45,2019-06-22,2.04,1,118 +20703198,East Village Apartment In The Heart Of It All,72581005,Henry,Manhattan,East Village,40.72792,-73.98288,Private room,110,15,6,2018-06-05,0.27,1,0 +20703786,Short Stay Nook,54081046,Janelle,Brooklyn,East Flatbush,40.63524,-73.94158,Private room,55,4,18,2019-06-11,1.44,1,82 +20704394,Luxury One Bedroom in Financial District,21405142,Charlotte,Manhattan,Financial District,40.70501,-74.00707,Entire home/apt,300,2,21,2018-11-19,1.14,1,0 +20705026,New Clean Private Room In Flushing,137129564,Bing,Queens,Flushing,40.75224,-73.81505,Private room,49,1,77,2019-05-29,3.43,4,362 +20705094,Whitewashed West Village Dream,32689791,Jana,Manhattan,West Village,40.73632,-74.00601,Entire home/apt,158,14,4,2018-03-31,0.18,1,0 +20707361,Cozy and romantic 1 bedroom apt near train,8717872,Natalie,Brooklyn,Bushwick,40.6997,-73.91305,Entire home/apt,97,3,6,2019-07-01,0.33,1,2 +20707376,Adorable and homey Central Park apartment,35959348,Taylor,Manhattan,Upper West Side,40.78965,-73.96993,Entire home/apt,95,1,9,2019-03-24,0.48,1,70 +20707451,"Modern Home, Amazing Location Master Suite",148237535,Jermaine,Brooklyn,Canarsie,40.64162,-73.90891,Private room,100,3,2,2018-01-02,0.10,4,364 +20707833,"Charming, Spacious Private Room in Harlem, NYC",148241246,Ella Jane,Manhattan,Harlem,40.82444,-73.95112,Private room,65,3,69,2019-07-01,3.16,1,57 +20708173,Crown Heights 1 Bedroom,834806,Daniel,Brooklyn,Crown Heights,40.66592,-73.95319,Entire home/apt,100,7,3,2017-11-10,0.13,1,0 +20708246,Comfortable bedroom in heart of Bushwick,11975404,Art,Brooklyn,Bushwick,40.70088,-73.91836,Private room,50,3,22,2019-04-06,0.98,2,0 +20708619,Superhost*Sunny/Private room in 2BR ❤️Williamsburg,15647614,Lin,Brooklyn,Williamsburg,40.71647,-73.95333,Private room,75,1,45,2019-06-21,2.01,2,84 +20709531,Little room for a place to rest,124554019,Eric,Brooklyn,Crown Heights,40.67225,-73.93326,Private room,55,2,4,2018-05-09,0.18,2,0 +20710022,Your Home Away from Home,148261815,Dike,Manhattan,Harlem,40.80171,-73.95122,Private room,55,10,6,2018-09-30,0.28,1,156 +20710208,Brooklyn Garden Guesthouse *1 block to subway*,2462590,Jenny And Mark,Brooklyn,Bushwick,40.69084,-73.92048,Entire home/apt,175,1,47,2019-06-18,2.20,2,336 +20710508,1 bedroom in East Village (private ensuite),25124335,Danny,Manhattan,East Village,40.72987,-73.98283,Private room,100,3,3,2017-11-19,0.14,1,0 +20711342,Great Location - Bedford Bedroom,6520264,Mark,Brooklyn,Williamsburg,40.71702,-73.95732,Private room,75,2,1,2017-09-21,0.05,1,0 +20711362,"Subway-adjacent, spacious bedroom w private deck",7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67865,-73.94231,Private room,75,1,4,2018-04-02,0.25,3,0 +20711534,Lovely bushwick room,8138665,Sophie,Brooklyn,Bushwick,40.70631,-73.91922,Private room,35,7,2,2019-02-18,0.09,1,364 +20711609,"Sunny Room Near Ferry, Train, bars, Restaurants !",148278552,Bertide,Brooklyn,Greenpoint,40.73365,-73.95354,Private room,53,2,0,,,1,0 +20712652,"Beautiful NYC Room - Upper East Side, NYC",38344324,Charles,Manhattan,Upper East Side,40.77237,-73.95275,Private room,95,2,42,2019-01-01,1.90,1,0 +20712708,Gramercy Park Location.. cozy and comfortable!,7077897,Philip,Manhattan,Gramercy,40.73804,-73.98178,Entire home/apt,175,5,3,2019-06-27,0.13,1,65 +20713633,Open Loft 1 BR Private Apt in Chinatown,9399634,Jessica,Manhattan,Chinatown,40.71365,-73.9973,Entire home/apt,180,5,11,2019-04-30,0.56,1,171 +20714088,SPACIOUS CLEAN ROOM 15 MINUTES FROM MAIN STREET,90893179,Sandra,Queens,College Point,40.77773,-73.83237,Private room,55,1,51,2019-06-22,2.29,1,65 +20714304,Awesome Cozy Room in The Heart of Astoria!,118751485,Simon,Queens,Ditmars Steinway,40.77786,-73.90819,Private room,79,7,36,2019-06-15,1.64,1,48 +20714517,Brooklyn Palace,139623237,Audra,Brooklyn,Flatlands,40.61802,-73.92866,Private room,30,2,13,2019-05-31,0.59,1,292 +20714824,Spacious 1 Bed Apartment 20 minutes from Midtown,1424332,Jose,Manhattan,Washington Heights,40.83902,-73.93766,Entire home/apt,50,3,2,2017-10-10,0.09,1,0 +20714992,Large sunny and beautiful room,75587530,Annie,Manhattan,Upper East Side,40.78079,-73.95499,Private room,150,10,0,,,2,0 +20720290,Sophisticated KING 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.77832,-73.95657,Entire home/apt,133,30,7,2019-05-31,0.47,91,281 +20722067,2 Bed BK Duplex w/ terrace & amazing NYC view,12147356,Nicolas,Brooklyn,Greenpoint,40.73227,-73.95149,Entire home/apt,496,3,20,2019-06-24,0.92,1,313 +20722247,Private Bedroom in the Heart of Chelsea (3FL/3FR ),40712207,Elsa,Manhattan,Chelsea,40.7416,-74.00082,Private room,75,30,2,2019-05-11,0.17,1,188 +20723015,Welcome to YURT -- beautiful room in East Village,147810437,Sarah,Manhattan,East Village,40.7244,-73.97732,Private room,100,1,33,2019-05-23,1.62,2,124 +20723274,CHIC EVENT SPACE,148391880,Michael,Brooklyn,Flatlands,40.62724,-73.93043,Entire home/apt,1700,1,0,,,1,365 +20724115,*FEMALES ONLY* BEAUTIFUL ROOM in downtown NYC!,103223295,Michela,Manhattan,Chinatown,40.71611,-73.99405,Private room,80,25,8,2018-10-21,0.36,1,0 +20724736,Comfy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80482,-73.95107,Private room,123,2,54,2018-12-27,2.44,2,0 +20725759,"Sunny & Modern Room in Brooklyn, NY",65258155,Marzian,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92706,Private room,30,2,9,2019-01-02,0.40,1,0 +20725853,Cozy Boerum Hill Apartment,148284545,Alex,Brooklyn,Carroll Gardens,40.68225,-73.99116,Private room,50,1,12,2018-07-13,0.54,1,0 +20726517,Penthouse - 2 Floors with Private Outdoor Patio,21531418,Christopher,Brooklyn,Williamsburg,40.70929,-73.95381,Entire home/apt,195,2,9,2019-02-17,0.44,1,0 +20726546,"Manhattan nyc private room A +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81394,-73.95334,Private room,69,2,13,2018-01-07,0.62,9,112 +20728525,Lovely Contemporary Home away from Home,141052003,Nicole,Queens,Jamaica,40.68503,-73.77983,Entire home/apt,150,2,45,2019-06-30,2.01,4,153 +20729133,Cool Brownstone for September,31306976,Hunter,Brooklyn,Bedford-Stuyvesant,40.69155,-73.93662,Private room,49,7,5,2019-04-28,0.23,1,56 +20729174,"Six in the City, Stay in Brooklyn Tour New York!",148444212,Sofia,Brooklyn,East Flatbush,40.65413,-73.94846,Entire home/apt,95,4,55,2019-07-02,2.64,1,22 +20729216,Whole Apt/Private Entry/Free Parking,148444929,Karl,Staten Island,St. George,40.64119,-74.08369,Entire home/apt,109,2,87,2019-07-06,5.08,1,100 +20729530,"Cozy and elegant apartment in New York, entire apt",148448869,Domingo,Manhattan,Washington Heights,40.84492,-73.93891,Entire home/apt,105,2,109,2019-07-05,4.86,1,261 +20729892,Nice and Cozy Room in Astoria Close to Manhattan.,100833625,Yunmi,Queens,Long Island City,40.75401,-73.92013,Private room,49,1,4,2017-11-26,0.19,1,0 +20729909,Two-storey Park Slope Apartment,12776165,Morgan,Brooklyn,Park Slope,40.67884,-73.97493,Entire home/apt,120,3,7,2019-04-28,0.35,1,0 +20729981,"Manhattan nyc private room B +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81225,-73.95197,Private room,69,2,10,2019-01-02,0.47,9,365 +20730848,Central Park and Museum mile Privarte room 105th.,42783238,Thomas,Manhattan,East Harlem,40.79383,-73.94968,Private room,85,1,98,2018-10-15,4.39,2,0 +20730891,Private Studio Sublet in Upper East Side,19141737,Zing,Manhattan,Upper East Side,40.77037,-73.95734,Entire home/apt,120,6,0,,,1,0 +20738759,Sun-Filled Cobble Hill Loft,2687071,Lily,Brooklyn,Brooklyn Heights,40.6904,-73.99376,Entire home/apt,135,3,21,2019-05-05,0.95,1,15 +20738991,Brownstone apartment in Bed-Stuy,37627534,Tim,Brooklyn,Bedford-Stuyvesant,40.68953,-73.93187,Private room,49,2,1,2017-09-11,0.05,1,0 +20739147,Beautiful room+PRIVATE BATHROOM | 20m to Manhattan,128517263,Alina,Brooklyn,Bushwick,40.69855,-73.93671,Private room,100,11,13,2019-03-31,0.60,3,0 +20740322,The Prince - A Nolita One Bedroom Apartment,147647020,Bruce,Manhattan,Nolita,40.72372,-73.99318,Entire home/apt,250,2,0,,,1,2 +20741384,"Experiencing Tranquility in Private home, Room # 3",147210078,Bruce & Cyrina,Brooklyn,East Flatbush,40.64861,-73.94983,Private room,48,2,9,2018-04-01,0.40,4,4 +20741446,"Colorful, Open and Spacious 1br in Inwood!",3731184,Lulu,Manhattan,Inwood,40.8608,-73.9281,Entire home/apt,87,2,5,2019-05-29,0.23,1,20 +20741509,"Hrlem Brownstone,By CentralPark.22 min Time Square",148544231,Khalif,Manhattan,Morningside Heights,40.80841,-73.95625,Private room,85,3,13,2018-08-27,0.59,2,61 +20741563,Back to the 90s Bedroom,38561955,Alex,Brooklyn,Bedford-Stuyvesant,40.68566,-73.92552,Private room,48,1,2,2017-09-30,0.09,1,0 +20743194,Comfy room in Manhattan 4 blocks from central park,104116468,Elias,Manhattan,Harlem,40.80227,-73.9579,Private room,90,3,55,2019-07-02,2.52,1,66 +20743305,"Luxury room w/ balcony, 5 mins to subway",11300359,Maya,Brooklyn,Bushwick,40.69954,-73.93579,Private room,60,5,6,2019-04-16,0.27,1,13 +20743703,Home away from home in Brooklyn,20866359,Sarah,Brooklyn,Crown Heights,40.67542,-73.95107,Private room,50,2,82,2019-06-21,3.70,1,30 +20744284,Sunny Room in Kensington,47343420,Jennifer,Brooklyn,Kensington,40.64493,-73.97327,Private room,85,2,61,2019-06-30,2.71,2,61 +20744490,Williamsburg home away from home,48153723,Dana,Brooklyn,Williamsburg,40.7079,-73.96609,Private room,70,7,8,2018-03-15,0.43,1,0 +20744654,Cozy studio in Park Slope,134264127,Fourth,Brooklyn,Park Slope,40.67454,-73.9841,Entire home/apt,125,2,77,2019-07-01,3.43,1,243 +20744948,Cheap Large Bedroom w/WorkDesk- 10min to JFK/Mall,107455767,Guelma,Queens,Rosedale,40.65429,-73.73432,Private room,45,30,34,2019-05-14,1.52,5,90 +20745030,Spacious Room in Sunny Brownstone (Ft. Greene),23254455,Chandra,Brooklyn,Clinton Hill,40.6866,-73.96761,Private room,88,2,0,,,1,0 +20745174,Room with PRIVATE entrance! Welcome to Upper east!,96064985,Milica,Manhattan,Upper East Side,40.77954,-73.94788,Private room,89,3,9,2019-06-30,1.03,1,18 +20745208,Cheap Small Bedroom w/Desk 10min to JFK & Mall,107455767,Guelma,Queens,Rosedale,40.65251,-73.7365,Private room,42,7,21,2018-06-30,0.94,5,297 +20745223,"Flatbush - Ditmas Park, Brooklyn, NY",19848344,Mauro,Brooklyn,Flatbush,40.6473,-73.96245,Private room,50,2,10,2019-06-28,0.97,1,178 +20745276,"DaDukes ""DC""",139879568,Alberto,Queens,Long Island City,40.76483,-73.94073,Private room,120,1,63,2019-06-19,2.81,6,356 +20746887,"Spacious bedroom, next to Subway, mins to park!",148590716,Ana,Manhattan,Inwood,40.86339,-73.92045,Private room,60,2,75,2019-06-24,3.37,1,332 +20748520,Cozy Spot on the UWS,51447852,Dana,Manhattan,Upper West Side,40.77998,-73.98218,Shared room,62,1,10,2018-08-06,0.45,1,0 +20753634,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.7507,-73.97086,Entire home/apt,175,30,0,,,33,365 +20753678,"LGBTQ+ Super Chill Brooklyn Private Room, JMZ,",46120364,Nate,Brooklyn,Williamsburg,40.70926,-73.95515,Private room,76,1,9,2017-10-15,0.40,1,310 +20754847,Super Comfy Double Bed in new 2 story house!,23861295,Beth,Brooklyn,East Flatbush,40.6435,-73.94011,Private room,47,1,4,2019-06-23,2.73,1,63 +20755049,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75161,-73.97017,Entire home/apt,175,30,0,,,33,365 +20755255,Private 1-bedroom Modern Apt in Upper Manhattan,28337487,Sebastian,Manhattan,Washington Heights,40.84962,-73.94011,Private room,60,1,11,2017-11-02,0.49,1,0 +20755500,SUNNY + MODERN NEW 1 BEDROOM APARTMENT IN BEDSTUY,1180050,Shawn,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95151,Entire home/apt,200,4,2,2017-11-15,0.09,1,0 +20755691,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75145,-73.97011,Entire home/apt,175,30,0,,,33,365 +20755975,Comfy Clean Room Near JFK,148663392,Juan David,Queens,Richmond Hill,40.70305,-73.82687,Private room,55,2,10,2019-01-01,0.46,1,6 +20756864,IN MINT CONDITION-1BR&TERRACE-E 44TH/UNITED NATION,76104209,Rated,Manhattan,Midtown,40.7518,-73.97074,Entire home/apt,220,30,0,,,33,365 +20757519,Sofa bed in bright & beautiful apt (with rooftop),42154911,Hannah,Manhattan,Harlem,40.82992,-73.94563,Shared room,60,2,1,2017-09-03,0.04,2,0 +20757599,Manhattan view in Bushwick,80897490,Steven,Brooklyn,Bedford-Stuyvesant,40.69099,-73.92657,Private room,50,1,1,2017-09-07,0.04,1,0 +20757749,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.74978,-73.96977,Entire home/apt,175,30,0,,,33,365 +20758111,2BR Private Summer Oasis in Manhattan,36170398,Jeff,Manhattan,Harlem,40.82673,-73.94633,Entire home/apt,75,30,0,,,1,32 +20758205,"Peaceful, Spacious and Comfy 3BR Oasis!",94404356,Jonathan,Brooklyn,Williamsburg,40.71972,-73.94337,Entire home/apt,250,3,3,2018-01-01,0.14,2,0 +20758217,Sunny Bushwick Room w/ Rooftop Manhattan View!,6394738,Lindsay,Brooklyn,Bushwick,40.70574,-73.92289,Private room,85,1,14,2018-05-04,0.62,2,0 +20758288,Charming 1 bed in ❤️ of Greenwich Village.,2739935,Brooke,Manhattan,Greenwich Village,40.72894,-74.00018,Entire home/apt,174,3,4,2018-01-03,0.19,1,0 +20758395,Bushwick Oasis,148686255,Jaime,Brooklyn,Bushwick,40.70484,-73.92646,Private room,100,4,6,2018-01-04,0.28,1,0 +20758861,Duplex w private garden - up to 6 guests,148689791,Katherine,Manhattan,East Village,40.72475,-73.97788,Entire home/apt,260,30,0,,,1,330 +20759183,Airy room 2 beds 40 min to Man. Midway LGA/JFK,148692231,Mel & Ruth,Queens,Rego Park,40.71534,-73.85828,Private room,75,3,20,2019-03-24,0.95,1,48 +20760187,Warm Duplex in a Brownstone,9663247,Roland,Brooklyn,Bedford-Stuyvesant,40.68371,-73.9405,Entire home/apt,160,3,20,2019-06-05,0.94,1,136 +20760274,"New Building w/ Rooftop & Laundry, Cozy Room",24417778,Auni (Masroor),Brooklyn,Bedford-Stuyvesant,40.67927,-73.94758,Private room,88,4,1,2017-09-15,0.05,1,0 +20760640,"20 Min to Manhattan, in the Heart of Ridgewood",148705627,Jonathan,Queens,Ridgewood,40.70141,-73.90291,Entire home/apt,170,18,14,2019-01-05,0.64,2,141 +20761244,Best location Large Room in the Heart of Wbrg!,312276,Brian,Brooklyn,Williamsburg,40.7112,-73.95886,Private room,95,2,24,2019-06-06,1.08,1,0 +20761266,Spacious Brooklyn Bedroom Close to Manhattan et al,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69387,-73.94688,Private room,62,3,51,2019-06-21,2.30,3,108 +20761296,Huge Room in Beautiful New Renovated Apartment,146030957,Bryan,Queens,Astoria,40.77028,-73.92112,Private room,45,5,20,2019-06-19,0.89,1,16 +20761404,Cozy Studio,51501835,Jeniffer,Manhattan,Hell's Kitchen,40.76354,-73.99283,Entire home/apt,100,30,3,2019-06-02,0.21,31,270 +20761753,Large private bedroom near Manhattan.,148681567,Dinara,Queens,Sunnyside,40.74823,-73.91456,Private room,60,4,1,2017-09-20,0.05,1,0 +20761768,"$6,500 p/m or short term, 5 Star, LUX, Clean, Big",22066372,Hutch,Manhattan,Upper East Side,40.76401,-73.95929,Entire home/apt,211,7,29,2019-06-29,1.34,1,237 +20761776,Newly Renovated Apartment in the Heart of Brooklyn,28999705,Maiya,Brooklyn,Park Slope,40.68064,-73.97657,Entire home/apt,100,3,4,2019-05-28,0.18,1,0 +20762089,Charming Boerum Hill Private 2 Bdrm Apt,12680161,Tirinda,Brooklyn,Boerum Hill,40.68418,-73.98373,Entire home/apt,250,1,97,2019-07-02,4.48,2,39 +20762692,Great studio on Restaurant Row in Harlem,32502340,Moya,Manhattan,Harlem,40.8055,-73.95478,Entire home/apt,125,6,8,2018-07-01,0.36,1,0 +20763209,Clean Chinatown Studio,10388662,Frances,Manhattan,Chinatown,40.71515,-73.99863,Entire home/apt,145,4,13,2019-06-10,0.63,1,86 +20763432,Boutique Hotel-Like Room in Brooklyn With A View,4594132,Samantha,Brooklyn,Greenpoint,40.72056,-73.94118,Private room,116,2,58,2019-05-26,2.82,1,0 +20763577,Perfect room for female/steps to Ctral Park+subway,6423626,Jennifer,Manhattan,Harlem,40.80044,-73.95139,Private room,50,28,12,2019-05-08,0.62,1,39 +20763877,Charming 1BR in Lively Bed-Stuy neighborhood,35645777,Yomi,Brooklyn,Bedford-Stuyvesant,40.68251,-73.94102,Entire home/apt,175,2,18,2019-01-01,0.81,1,0 +20766398,IN MINT CONDITION-STUDIOS EAST 44TH/UNITED NATIONS,76104209,Rated,Manhattan,Midtown,40.75014,-73.97001,Entire home/apt,175,30,0,,,33,365 +20770222,Clean Comfy 2 Bedrooms with 2. Bathrooms sleeps 6,94713722,Joy,Queens,St. Albans,40.69044,-73.75489,Entire home/apt,246,2,3,2019-03-24,0.15,4,359 +20770559,Big cozy private room next to the Park,4982459,Mariana,Brooklyn,Flatbush,40.65247,-73.96399,Private room,44,3,1,2017-09-20,0.05,3,0 +20770969,<3 Summer in East Village! BEST DEAL,148812441,Emily,Manhattan,East Village,40.72653,-73.98539,Entire home/apt,99,1,33,2019-06-23,1.50,1,269 +20772071,Clean room across the street from the high bridge,128692351,Nahuel,Bronx,Highbridge,40.84101,-73.92626,Private room,62,2,75,2019-06-16,3.34,5,351 +20772204,"NO XTRA FEES, 30 min To Grand Central:Pvt Entrance",82889379,Shera,Bronx,Wakefield,40.89811,-73.85543,Private room,55,1,156,2019-06-30,7.00,4,318 +20772462,"Manhattan nyc private room D + 15 MinTimes Square",57049951,Eliahu,Manhattan,Harlem,40.81316,-73.95176,Private room,69,2,2,2018-10-22,0.10,9,365 +20772583,Luxury Apt in the heart of Harlem,21066170,David,Manhattan,Harlem,40.80605,-73.94889,Entire home/apt,150,5,14,2019-05-24,0.67,1,16 +20772650,Homey and nice furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.76141,-73.96265,Entire home/apt,125,50,0,,,8,176 +20772782,Bushwick Palace,69034515,Alexandra,Brooklyn,Bushwick,40.70353,-73.9288,Private room,80,4,0,,,1,0 +20773084,Lovely room across the street from high bridge.,128692351,Nahuel,Bronx,Highbridge,40.84184,-73.92535,Private room,42,2,92,2019-05-19,4.11,5,311 +20773149,Nice room across the street from the high bridge.,128692351,Nahuel,Bronx,Highbridge,40.84103,-73.92701,Private room,42,2,62,2019-06-24,2.76,5,1 +20773211,"Quiet, Comfortable room near A Express Train",8833868,Susan,Manhattan,Washington Heights,40.85663,-73.93564,Private room,50,4,22,2019-07-02,1.46,1,42 +20773223,"Manhattan nyc private room C +15 min F Times Square",57049951,Eliahu,Manhattan,Harlem,40.81404,-73.95233,Private room,69,2,15,2019-06-13,0.70,9,116 +20775039,Great Location - 1BR/Times Square/Hell's Kitchen,148861123,Andrew T,Manhattan,Hell's Kitchen,40.7631,-73.99133,Entire home/apt,145,2,77,2019-06-16,3.62,1,194 +20775370,"Comfy, cozy, private NYC Studio for One!",2650097,Jennifer,Brooklyn,Sunset Park,40.66273,-73.99384,Entire home/apt,58,4,10,2018-07-31,0.45,1,0 +20778074,Queit get away,148897644,Patrick,Brooklyn,Crown Heights,40.6679,-73.93976,Private room,65,1,0,,,1,0 +20780311,Cozy Apartment in Washington Heigths,106863782,Mariarosa,Manhattan,Washington Heights,40.85148,-73.9301,Entire home/apt,175,2,2,2017-11-05,0.09,1,0 +20780654,Private Manhattan Room Close to Train!,11525399,Kellie,Manhattan,Harlem,40.81717,-73.93856,Private room,100,6,21,2018-07-08,0.96,1,87 +20780688,Small studio in the heart of hells kitchen,52287004,Micipsa,Manhattan,Hell's Kitchen,40.76366,-73.99096,Entire home/apt,135,2,65,2019-06-10,3.04,1,59 +20780871,Private Bedroom Living Room w/Exposed Brick,1020539,Dominique,Manhattan,East Village,40.7263,-73.98432,Private room,120,1,2,2018-12-16,0.28,2,0 +20783233,Quirky apt in great area,30536963,Sarah,Brooklyn,Bushwick,40.6958,-73.91362,Private room,49,2,71,2019-06-17,3.22,1,3 +20783553,Lovely Room in a Large Williamsburg Apartment,49154612,Lindsay,Brooklyn,Williamsburg,40.71823,-73.94093,Private room,48,2,3,2018-05-28,0.14,1,0 +20783768,420 Friendly with that Southern Charm,148958163,Charles,Bronx,Wakefield,40.89685,-73.85382,Shared room,55,1,0,,,1,0 +20783811,Eclectic studio steps from Highline Park Chelsea,1911615,Conley,Manhattan,Chelsea,40.74641,-74.0051,Entire home/apt,435,3,3,2018-05-19,0.14,2,0 +20783900,Marvelous Manhattan Marble Hill Private Suites,148960265,Randy,Manhattan,Marble Hill,40.87618,-73.91266,Private room,93,2,7,2018-10-06,0.32,3,0 +20785435,Rest Assured Private room/Ensuite bath nearJFK,94713722,Joy,Queens,St. Albans,40.68998,-73.75477,Private room,60,2,23,2018-11-11,1.23,4,0 +20785941,Spacious and cosy bedroom in the heart of bushwick,69546339,Michael,Brooklyn,Bushwick,40.70246,-73.92417,Private room,42,4,6,2018-07-15,0.27,2,0 +20786121,"Large Room,Private terrace, subway near",48404386,Eric,Queens,Rego Park,40.72684,-73.86409,Private room,40,4,0,,,1,0 +20786225,1 Bedroom for rent -Gorgeous East Harlem Apartment,106555852,Zaza,Manhattan,East Harlem,40.79711,-73.93255,Private room,88,2,34,2019-05-27,1.53,1,86 +20787735,"The Schoolhouse, Garden Floor",44459590,Ian,Brooklyn,Bushwick,40.70015,-73.93951,Shared room,85,1,0,,,1,0 +20788041,Brick City,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67262,-73.92534,Private room,60,2,41,2019-05-31,1.88,4,320 +20788446,Writer's Haven in Prime Bushwick,83948710,Lux,Brooklyn,Bushwick,40.70256,-73.92094,Private room,58,1,79,2019-07-07,3.56,2,178 +20788473,Basin Homes,46253884,Audlyn,Brooklyn,Canarsie,40.62944,-73.89678,Entire home/apt,90,2,73,2019-07-06,3.71,1,318 +20788666,Manhattan Marble Hill Private Sleep'n Suites,148960265,Randy,Manhattan,Marble Hill,40.87519,-73.91245,Private room,65,2,5,2019-06-14,0.23,3,112 +20789361,Private Room in Sunny Apartment - Laundry in unit,5990565,Fiona,Brooklyn,Bedford-Stuyvesant,40.68361,-73.93883,Private room,76,3,6,2018-10-07,0.27,1,0 +20792967,Your Own Flat in Historic Bed-Stuy District,2648270,Jaweer,Brooklyn,Bedford-Stuyvesant,40.68462,-73.93724,Entire home/apt,74,4,1,2017-09-30,0.05,1,0 +20793502,Beautiful Private Bedroom with Balcony,27534002,Mauro,Brooklyn,Bedford-Stuyvesant,40.69154,-73.93191,Private room,95,1,87,2019-06-30,3.91,1,31 +20794628,Williamsburg-Greenpoint Loft,19043884,Aaron,Brooklyn,Greenpoint,40.72591,-73.95645,Entire home/apt,210,2,103,2019-06-22,4.62,1,268 +20794837,One Bedroom,149071197,Sydnee,Manhattan,Harlem,40.8204,-73.93867,Private room,50,1,2,2017-09-10,0.09,1,0 +20794951,"Brand new true 1BD, close to everything!",106894257,Avihay,Queens,Astoria,40.77039,-73.92626,Entire home/apt,93,7,1,2017-09-17,0.05,1,0 +20795854,Full Top Floor of Brownstone in Historic District,69992824,Christian,Brooklyn,Bedford-Stuyvesant,40.68181,-73.94214,Entire home/apt,250,1,3,2017-10-30,0.14,1,51 +20796126,"Bright, Clean + Beautiful West Village 1 Bedroom",10538579,Cyrus,Manhattan,West Village,40.73476,-74.00477,Entire home/apt,269,4,10,2019-03-11,0.47,1,10 +20796595,Nice Room in the upper west Manhathan,145872703,Cesar,Manhattan,Harlem,40.81968,-73.95831,Private room,70,1,36,2019-06-23,1.65,2,169 +20798127,Queen sized bedroom with skyline view - Greenpoint,29516183,Ruben,Brooklyn,Greenpoint,40.73595,-73.95423,Private room,90,5,3,2018-08-22,0.14,1,0 +20799032,Luxury 2 Bedroom Empire Loft,149112195,Patricia,Manhattan,Midtown,40.75341,-73.98504,Entire home/apt,422,5,58,2019-06-16,2.60,1,339 +20799199,Designer's Chinatown Loft,302544,Tess,Manhattan,Chinatown,40.71569,-73.99421,Entire home/apt,250,2,9,2019-07-06,0.46,1,41 +20799506,BunkBeds 5 min to NYC 900Mb Full Closet,30384194,Patricio,Queens,Astoria,40.75713,-73.91334,Private room,99,3,1,2017-09-16,0.05,2,328 +20800449,Sweet Cozy Bedroom with No Cleaning Fee : ),6805463,Marvis,Manhattan,Harlem,40.81561,-73.95393,Private room,65,4,59,2019-06-15,2.71,1,44 +20800988,"Cozy one bedroom aka ""The Green room"" (near JFK)",141052003,Nicole,Queens,Jamaica,40.68496,-73.78194,Private room,55,1,5,2018-10-28,0.27,4,155 +20801388,Spacious gorgeous digs in East Village w elevator,3607821,Julia,Manhattan,East Village,40.72553,-73.98012,Entire home/apt,149,2,5,2018-04-14,0.23,1,0 +20801754,Our Astoria Apartment - (Long Term Rental),6383939,Michael,Queens,Astoria,40.76304,-73.90785,Private room,45,21,9,2019-06-30,0.56,1,58 +20801864,Welcome to a beautiful House in Quiet Bronx,77750223,Mercedes,Bronx,Clason Point,40.81645,-73.86355,Private room,40,3,10,2019-05-19,0.46,2,156 +20802860,Greenpoint Spacious New Room on McCarren Park,11589542,Michael,Brooklyn,Greenpoint,40.72228,-73.94817,Private room,135,2,2,2017-10-15,0.09,1,0 +20802874,Large Sunny apartment,149147829,Kaylin,Bronx,Concourse Village,40.83257,-73.91245,Shared room,45,1,0,,,1,0 +20803220,Romantic NYC Getaway,7913159,Cait,Manhattan,Washington Heights,40.84566,-73.93998,Entire home/apt,75,3,3,2017-12-27,0.14,1,0 +20803227,Central Park north,29766155,Miero,Manhattan,Harlem,40.80099,-73.95105,Entire home/apt,200,1,0,,,1,0 +20803231,Minimal Light-filled Home Near Prospect Park,1143503,Tina,Brooklyn,Windsor Terrace,40.65457,-73.97512,Entire home/apt,145,3,1,2017-10-09,0.05,1,0 +20803637,Spacious 1BR Apt in heart of Gramercy! Sleeps 4,45935256,Bradley,Manhattan,Kips Bay,40.74294,-73.98137,Entire home/apt,160,1,5,2018-06-24,0.23,1,0 +20803845,Newly Renovated Apartment in the Heart of Brooklyn,28341776,Josh,Brooklyn,Park Slope,40.68117,-73.97785,Private room,100,3,81,2019-07-07,3.67,2,42 +20804049,Clean apartment-styled space. 10min from JFK.,148737806,Daré,Queens,Rosedale,40.6622,-73.73135,Private room,58,1,45,2019-07-04,2.02,2,84 +20804083,Sun Drenched Master Bedroom in Brooklyn Apartment,28341776,Josh,Brooklyn,Park Slope,40.68265,-73.97754,Private room,120,3,5,2018-07-29,0.23,2,0 +20804915,Sunny Private Bedroom in a Luxurious Apartment,12972780,Ismail,Queens,Astoria,40.7623,-73.91645,Private room,80,2,26,2019-06-03,1.18,2,364 +20805520,Manhattan room with a fire escape!,149184623,Elina,Manhattan,Washington Heights,40.83636,-73.94487,Private room,65,2,81,2019-07-06,3.80,1,11 +20809263,Elegant Studio Apt in Prospect Heights,87024253,Miguel,Brooklyn,Prospect Heights,40.67935,-73.9723,Entire home/apt,115,2,7,2017-11-27,0.32,1,0 +20809807,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.77981,-73.96031,Entire home/apt,220,30,0,,,33,334 +20810529,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78098,-73.95854,Entire home/apt,225,30,0,,,33,315 +20811403,Large Studio in Forest Hills,95416322,Renee,Queens,Forest Hills,40.7281,-73.84886,Entire home/apt,100,2,18,2019-01-01,0.82,1,0 +20811696,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,76104209,Rated,Manhattan,Upper East Side,40.78015,-73.95852,Entire home/apt,225,30,0,,,33,346 +20812365,Cozy apartment,76227113,Omar,Manhattan,Morningside Heights,40.80246,-73.95972,Entire home/apt,245,2,57,2019-07-05,2.58,1,54 +20812387,Cozy Studio In Crown Heights,149249049,Kyle,Brooklyn,Crown Heights,40.67785,-73.95086,Entire home/apt,80,2,85,2019-06-23,3.94,1,272 +20812587,"Brooklyn At Its Best, Too!",25718914,Ainslie And John,Brooklyn,Prospect-Lefferts Gardens,40.66174,-73.95496,Private room,110,2,43,2019-05-13,1.94,2,182 +20812956,Chic 1 Bedroom with Empire State Views in NYC,27601846,Kristin,Manhattan,Harlem,40.80344,-73.95513,Entire home/apt,183,2,3,2017-09-15,0.13,1,37 +20814067,Queens 20 mins to subway- 15 mins JFK- walk to bus,149265574,Beverley,Queens,St. Albans,40.69514,-73.74902,Private room,55,1,97,2019-07-06,5.23,1,354 +20814478,New York Experience,37038571,Haniel,Manhattan,Upper West Side,40.79796,-73.97255,Entire home/apt,250,2,1,2017-10-09,0.05,1,0 +20815250,A serene apartment to rejuvenate yourself.,12099193,Alex,Brooklyn,Greenpoint,40.73658,-73.95418,Entire home/apt,275,2,0,,,1,0 +20815456,"Quiet/Modern Triplex loft, steps to prospect park!",1334160,Andrea,Brooklyn,Prospect Heights,40.67729,-73.96535,Private room,120,5,37,2019-07-03,1.71,1,135 +20815900,Huge One of A Kind Loft West Village/Meatpacking,6433797,Marlon,Manhattan,Chelsea,40.74039,-74.00029,Private room,89,2,1,2017-09-14,0.05,1,0 +20816828,Spacious Split Level Apartment,149294813,Maggy,Brooklyn,Flatlands,40.62365,-73.93171,Entire home/apt,100,3,17,2019-07-01,1.64,1,89 +20816972,House of Moon Dog,149296548,Eli,Brooklyn,Bushwick,40.69653,-73.91492,Private room,59,3,29,2019-06-24,1.30,1,63 +20817201,Private Room in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71591,-73.95513,Private room,50,4,56,2019-06-20,2.53,4,8 +20817614,Room o4,74633496,Justine,Bronx,University Heights,40.85751,-73.90805,Private room,45,3,12,2019-05-26,0.54,5,365 +20818523,"Cute, airy attic room",28589041,Frankie,Brooklyn,Bedford-Stuyvesant,40.69332,-73.95085,Private room,50,1,1,2017-09-21,0.05,2,0 +20818955,Cozy Room in a Friendly House CLOSE TO SUBWAY,463061,Lise,Queens,Woodhaven,40.69621,-73.8502,Private room,49,2,8,2019-05-19,0.51,2,96 +20819020,Cozy & Charming Uptown NYC Bedroom Near Subway,103380674,Carla,Manhattan,Harlem,40.81867,-73.95293,Private room,55,2,80,2019-04-21,3.60,1,0 +20819116,My Little Cottage,149292557,Kimberly,Queens,Corona,40.75015,-73.85961,Entire home/apt,69,2,166,2019-07-07,7.50,2,140 +20819221,"2 bed, 2 full bath quaint street in Brooklyn",4732049,Sabrina,Brooklyn,Boerum Hill,40.68592,-73.98181,Entire home/apt,275,1,7,2018-12-16,0.43,1,129 +20820399,"Sunny, Happy Space in Manhattan!",149333702,Melissa,Manhattan,Washington Heights,40.84381,-73.9385,Entire home/apt,125,2,4,2018-05-20,0.19,1,0 +20820417,The Penthouse,66096509,Eric,Manhattan,East Harlem,40.79398,-73.94159,Entire home/apt,300,2,14,2019-06-02,0.91,1,179 +20821762,Sunny apartment in the heart of trendy Greenpoint,127726348,Chris,Brooklyn,Greenpoint,40.72917,-73.95131,Entire home/apt,145,30,44,2019-05-25,2.07,1,205 +20823125,PRISTINE STUDIO IN THE HEART OF THE E. VILLAGE,33913938,Luz,Manhattan,East Village,40.72945,-73.97987,Entire home/apt,170,30,136,2019-05-24,6.18,1,291 +20825876,Lo Studio/15 min central park/wifi+ street parking,116839989,Ez,Queens,Astoria,40.76064,-73.92481,Entire home/apt,95,30,48,2019-06-23,2.97,5,217 +20826507,HI END LIVING IN UES LUXURY CONDOS-EAST 80TH ST,76104209,Rated,Manhattan,Upper East Side,40.77123,-73.95041,Entire home/apt,243,30,0,,,33,284 +20826700,Suite Di CLASSE East village-free Str.parking+wifi,116839989,Ez,Manhattan,East Village,40.73105,-73.98195,Entire home/apt,150,30,48,2019-06-24,3.03,5,199 +20826953,Sublet for Oct (Phone number hidden by Airbnb) utilities included,149394434,Jeanette,Queens,Ridgewood,40.7025,-73.90985,Private room,23,1,0,,,1,0 +20827546,Small Bedroom in Dreamy Brownstone,12568104,Brielle,Brooklyn,Williamsburg,40.71353,-73.96453,Private room,60,3,1,2018-03-16,0.06,1,0 +20827640,SUPER LUXURY FOR 2 IN FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70849,-74.01486,Entire home/apt,181,30,0,,,33,329 +20827801,The ocean view room size 12x14,145878384,Denise,Brooklyn,Crown Heights,40.67139,-73.93131,Private room,70,5,11,2019-01-01,0.60,7,278 +20827821,"Harlem intimate room,20 min to Time Square,by Park",148544231,Khalif,Manhattan,Harlem,40.80671,-73.95382,Private room,53,3,5,2018-05-08,0.23,2,89 +20828460,Midtown Apt. with a great view and everything near,149409298,Samantha,Manhattan,Hell's Kitchen,40.76697,-73.99134,Private room,130,1,74,2019-01-15,3.32,1,157 +20829055,3 Bedroom in Great Midtown Location,26490904,Deo,Manhattan,Midtown,40.76114,-73.97596,Entire home/apt,350,30,1,2018-12-18,0.15,4,151 +20830442,Cozy room in lovely apartment close to subway,1939209,Farrel,Bronx,Claremont Village,40.835,-73.91114,Private room,60,4,30,2019-07-07,1.38,2,179 +20832523,cozy & clean room in the Bronx,136104359,Bonissat,Bronx,Concourse,40.83497,-73.9189,Private room,35,7,32,2019-06-25,1.68,1,50 +20832768,Astoria apartment near Manhattan/LaGuardia,42419832,Zachary,Queens,Astoria,40.76271,-73.92213,Entire home/apt,179,3,5,2019-04-22,0.23,1,0 +20833958,The Peach Room,145878384,Denise,Brooklyn,Crown Heights,40.67302,-73.93143,Private room,65,4,17,2019-06-09,0.76,7,303 +20834832,Bright charming studio in quiet treelined Brooklyn,4123240,Rhianna,Brooklyn,Crown Heights,40.67064,-73.9476,Private room,75,4,2,2017-10-01,0.09,1,0 +20835314,My studio,149475464,Rubén,Brooklyn,Williamsburg,40.70732,-73.94385,Entire home/apt,90,2,13,2019-01-04,0.59,1,6 +20835690,CHARMING OLD WORLD FLAT - WEST VILLAGE NEAR SOHO,1651791,Juliana,Manhattan,West Village,40.73145,-74.00184,Private room,114,1,10,2017-11-28,0.47,1,0 +20835909,"2017 Renovated Central Flushing, NYC法拉盛中心的新装修房Wifi",149483822,M,Queens,Flushing,40.75918,-73.82922,Entire home/apt,111,3,22,2019-04-15,0.99,1,96 +20836753,Apartment-Styled space in Queens. 10Min from JFK.,148737806,Daré,Queens,Rosedale,40.66183,-73.72943,Private room,58,1,65,2019-06-30,2.92,2,84 +20836787,450sqft Studio Stunning Water Front Balcony View,123370360,Brandon,Queens,Ditmars Steinway,40.77691,-73.92662,Entire home/apt,95,3,6,2019-06-21,0.28,1,15 +20837712,Beautiful bright 1 bedroom in Greenwich Village,36998610,Cat,Manhattan,Greenwich Village,40.73127,-73.99939,Entire home/apt,220,1,1,2017-09-21,0.05,1,0 +20840987,Sunny & Stylish Room in lush apartment,111969257,Jae,Brooklyn,Williamsburg,40.71725,-73.9438,Private room,99,5,15,2018-08-23,0.71,3,0 +20843601,1 Bedroom in 2 bedroom Apartment,144687507,Mirko,Brooklyn,Flatbush,40.64706,-73.96057,Private room,93,30,1,2019-05-22,0.63,1,0 +20844580,"Pretty 1 bedroom apt, Williamsburg/ Females only",35474485,Michelle,Brooklyn,Williamsburg,40.7069,-73.95372,Private room,55,5,61,2019-07-03,2.84,1,53 +20844601,Ocean Room at Great Location,137264725,Gulcin,Manhattan,Chinatown,40.71364,-73.99153,Private room,50,1,42,2019-06-19,1.91,4,257 +20845031,"Homey Midtown East 1BR w/ Gym, Doorman, near the 6th street by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7451,-73.97915,Entire home/apt,308,30,0,,,232,156 +20845108,Entire Private Brownstone in Brooklyn,39371342,Sam,Brooklyn,Dyker Heights,40.62499,-74.01684,Entire home/apt,150,1,69,2019-06-29,3.15,1,127 +20845735,Cozy Room in Bushwick.,87562955,Kennedy,Brooklyn,Bushwick,40.69813,-73.91991,Private room,35,7,1,2017-10-04,0.05,1,0 +20846343,Bright UES 1-BR. Walk to Central Park and museums,32626265,Jorge,Manhattan,Upper East Side,40.78539,-73.95056,Entire home/apt,150,2,13,2018-12-16,0.69,1,0 +20846687,INVITING BRIGHT & STYLISH STUDIO,57160283,Stephon,Brooklyn,Bedford-Stuyvesant,40.68328,-73.93719,Entire home/apt,75,2,20,2019-02-15,0.90,1,0 +20847505,Charming Apartment on Central Park West!,84932767,Abigail,Manhattan,Upper West Side,40.78717,-73.96806,Entire home/apt,150,1,24,2019-05-02,1.08,1,27 +20848135,Brand New Apt In A Beautiful Elevator Building,149608542,Ramonex,Manhattan,Harlem,40.81643,-73.94042,Private room,65,3,84,2019-06-22,3.80,1,205 +20848925,Modern Loft overlooking McCarren Park,38290241,Dan,Brooklyn,Greenpoint,40.71986,-73.95344,Entire home/apt,350,6,0,,,1,0 +20849060,Sunny 1 bedroom apartment on quiet block,4655461,Fay,Brooklyn,Carroll Gardens,40.6802,-73.99739,Entire home/apt,125,1,117,2019-07-06,5.31,1,15 +20849101,NYC private room in Private house|Mt Vernon area,149618690,Tunzil,Bronx,Wakefield,40.90356,-73.84172,Private room,59,1,11,2019-06-10,0.50,1,35 +20849726,East Village Penthouse Terrace,34692684,Spiritt,Manhattan,East Village,40.72737,-73.98815,Private room,140,2,0,,,1,0 +20850006,Brooklyn’s finest pt. Deux,141931484,Xie,Brooklyn,Canarsie,40.63295,-73.89202,Private room,75,2,19,2019-06-19,1.23,3,331 +20850678,Restaurants- Nightlife- Greenpoint - Williamsburg,56391145,Eric,Brooklyn,Greenpoint,40.72393,-73.95347,Entire home/apt,184,2,0,,,2,0 +20855406,Bedford Bungalow 5 min cab from Williamsburg,45074716,Malcolm,Brooklyn,Bedford-Stuyvesant,40.69211,-73.95496,Entire home/apt,125,1,61,2019-06-19,2.83,1,113 +20857108,Perfect one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74814,-73.97554,Entire home/apt,175,30,1,2018-08-11,0.09,50,365 +20857788,Two bedroom Beauty in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74844,-73.97694,Entire home/apt,367,30,1,2018-08-19,0.09,50,358 +20857866,Nettie's Brooklyn Dream Space,105828086,Nikki,Brooklyn,Flatbush,40.64108,-73.96378,Private room,75,2,25,2019-05-20,1.16,4,0 +20858478,Artist's Studio in historic Manhattan neighborhood,149707913,Christian,Manhattan,Upper East Side,40.77426,-73.94893,Entire home/apt,80,5,0,,,1,0 +20858519,Cozi property near Ocean,7365834,Alex,Brooklyn,Brighton Beach,40.58102,-73.95782,Entire home/apt,137,2,2,2019-06-02,0.30,5,350 +20860184,Fabulous Sun-kissed Room in Heart of Chelsea!,29867167,Jamal,Manhattan,Chelsea,40.74821,-74.0018,Private room,95,1,17,2018-08-31,0.78,1,0 +20860448,"ROOM EN NEW YORK, MANHATTAN",23005126,Juan,Queens,Holliswood,40.71768,-73.77308,Private room,125,3,0,,,1,363 +20861411,East Village Rooftop Oasis w/ Private Entrance!,12374283,Ryan,Manhattan,East Village,40.72411,-73.97826,Private room,150,3,103,2019-07-01,4.71,4,94 +20861983,Spacious Garden Apartment,526338,Frederick,Brooklyn,Bushwick,40.69566,-73.91314,Entire home/apt,115,1,22,2018-05-06,1.01,1,0 +20862285,women only great place in Forest Hills NY,84562428,Liliana,Queens,Forest Hills,40.73715,-73.84792,Private room,45,5,18,2019-06-03,0.83,2,80 +20862947,Yankee Stadium Superhost! A 1BR/1BA City Escape!,125588995,Elliot,Bronx,Concourse Village,40.82638,-73.92225,Private room,55,1,46,2019-07-03,2.16,1,46 +20863180,Perrier Palace,127887992,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69102,-73.94898,Entire home/apt,180,4,2,2017-12-11,0.09,1,0 +20863293,"Bright Private room, perfect for fashion week!",24639450,Sean,Queens,Ridgewood,40.6988,-73.90725,Private room,55,2,0,,,1,0 +20864325,Private 1BR w/ Queen bed & TV next to Central Park,5582262,Anh,Manhattan,East Harlem,40.7954,-73.94926,Private room,99,2,56,2019-06-05,2.54,1,14 +20864878,High Line Sun Drenched Home,13462349,Elvis,Manhattan,Chelsea,40.7469,-73.99494,Entire home/apt,200,2,40,2019-06-19,1.81,1,288 +20870201,Gorgeous Studio + Fully-stocked Italian Kitchen,49700889,Sarah,Brooklyn,Bedford-Stuyvesant,40.68071,-73.91873,Entire home/apt,70,1,15,2017-12-18,0.69,1,0 +20870782,Worlds cutest apt in Boerum Hill / Carroll Gardens,2707299,Samera,Brooklyn,Carroll Gardens,40.68332,-73.99084,Entire home/apt,125,5,40,2019-06-15,1.84,1,88 +20871641,Great location!,15271873,Beth,Manhattan,Upper East Side,40.76117,-73.96104,Entire home/apt,150,7,5,2019-06-04,0.80,1,25 +20872030,"Prime Location in Manhattan, near Central Park",41499146,Arata,Manhattan,Harlem,40.8062,-73.95528,Entire home/apt,164,2,11,2019-06-30,0.51,1,18 +20873223,Sunny and Spacious Private Room,15246227,Lola,Queens,Astoria,40.76059,-73.92168,Private room,101,1,0,,,1,0 +20873362,Williamsburg Bedroom in a Beautiful Home,5278391,Ashley,Brooklyn,Williamsburg,40.71706,-73.94091,Private room,60,2,3,2018-11-02,0.34,2,1 +20873536,"Kings Plz Mall, Flatbush Ave, 30 mins to Manhattan",149867246,Medea,Brooklyn,Flatlands,40.62191,-73.93428,Entire home/apt,130,2,35,2019-07-05,1.59,2,357 +20874101,Airway,149864933,Mauricio,Queens,East Elmhurst,40.764,-73.88718,Private room,150,2,0,,,1,83 +20874344,Green Oasis 15 min from Downtown Manhattan!,36920690,Nik,Brooklyn,Williamsburg,40.71244,-73.94384,Entire home/apt,114,6,2,2018-12-29,0.11,1,0 +20874350,"Söderläge - 3 bedrooms in Williamsburg, Brooklyn",13262918,Glenn,Brooklyn,Williamsburg,40.71075,-73.9564,Entire home/apt,225,2,124,2019-07-07,5.71,3,106 +20874372,2 Bedroom/2 Bath Spacious Loft in Clinton Hill,3905466,Stefanie,Brooklyn,Clinton Hill,40.68657,-73.96003,Entire home/apt,250,3,3,2018-10-08,0.16,1,0 +20874820,Cozy&Quiet One Bedroom Full Unit Near F/G train,104836016,Qingming,Brooklyn,Kensington,40.64099,-73.98029,Entire home/apt,99,2,32,2019-06-10,1.45,4,153 +20874859,Luxury Midtown Manhattan Condo with 24hr Doorman,26390396,Sam,Manhattan,Midtown,40.75288,-73.97703,Entire home/apt,209,2,25,2019-03-03,1.14,1,0 +20876208,"Good Access to Everywhere:)Bushwick, Brooklyn NY",127618565,Takanori,Brooklyn,Bushwick,40.70544,-73.91828,Private room,59,1,90,2019-06-22,4.26,1,42 +20879883,Big Luxury Apartment by Times Square,18213484,Raul,Manhattan,Hell's Kitchen,40.76671,-73.98849,Entire home/apt,300,15,8,2019-05-30,0.37,1,30 +20881198,Cozy private room in Midtown with private bathroom,85016972,Trinh,Manhattan,Hell's Kitchen,40.76495,-73.9853,Private room,160,3,6,2018-05-10,0.27,1,0 +20881375,Cute little room,104300362,Cristina,Queens,East Elmhurst,40.75596,-73.89702,Private room,45,4,17,2019-06-10,0.79,1,314 +20881488,Urban Bungalow Loft in Heart of Williamsburg!,598896,Su,Brooklyn,Williamsburg,40.71992,-73.96029,Entire home/apt,250,2,3,2018-05-12,0.14,2,184 +20881784,"Only woman .. East elmhurts ,queens , ny 11369",149962269,Lore,Queens,East Elmhurst,40.76381,-73.87748,Private room,60,1,0,,,1,359 +20882090,Living room available! Modern apartment in midtown,34506361,Haley,Manhattan,Murray Hill,40.7487,-73.97479,Shared room,120,1,47,2019-05-20,2.20,2,365 +20883446,Private room near train into midtown Manhattan,16323240,Oliver,Queens,Sunnyside,40.7448,-73.92364,Private room,47,2,2,2017-10-16,0.09,2,0 +20884271,Clean and cozy private bedroom in Central Harlem.,68992648,Mariaelena,Manhattan,Harlem,40.81888,-73.94345,Private room,53,2,47,2018-11-21,2.16,1,0 +20886177,Master room w/terrace/private bath near Mall queen,50855262,Fone,Queens,Elmhurst,40.73612,-73.87822,Private room,55,3,10,2018-07-28,0.47,3,0 +20886228,COZY BEAUTIFUL 1 BEDROOM APT FOR 3PPL,142286413,Ramon,Manhattan,Hell's Kitchen,40.76536,-73.98878,Entire home/apt,225,3,104,2019-06-30,4.79,1,34 +20886432,Gorgeous single room in Sunnyside near Manhattan,75458625,Lidia,Queens,Sunnyside,40.74722,-73.9186,Private room,78,2,20,2019-07-01,0.91,4,365 +20886536,Comfortable stay,15344412,Abe,Staten Island,New Springville,40.58091,-74.15485,Private room,52,1,74,2019-06-25,3.34,3,78 +20886923,Private bed & bath by JFK & LGA; Easy NYC access!,150019486,David,Queens,Kew Gardens,40.70874,-73.82617,Private room,60,2,137,2019-06-23,6.27,1,32 +20887028,Cozy 2 bedroom apt in Lower East Side,260958,Aura,Manhattan,Chinatown,40.71418,-73.99208,Entire home/apt,161,3,92,2019-06-22,4.73,3,63 +20887352,"Modern, natural light + in the best location",4079889,Natalija,Brooklyn,Williamsburg,40.71253,-73.96123,Private room,150,2,0,,,1,36 +20887992,Homey & Cozy Near Pratt! (Cat Lovers Only),8207362,Karina,Brooklyn,Bedford-Stuyvesant,40.68989,-73.93747,Private room,60,1,21,2019-06-26,0.95,2,82 +20888020,Upper West Side Room,150032863,Ayelet,Manhattan,Upper West Side,40.79499,-73.97669,Private room,75,5,2,2017-09-16,0.09,1,0 +20888408,A Gem in the Heart of Brooklyn_(Rm#1),127345864,Charlene,Brooklyn,East Flatbush,40.64051,-73.93224,Private room,38,7,37,2018-11-15,1.92,4,29 +20888611,Tristan's House,150038776,Jeny,Queens,Long Island City,40.76462,-73.9319,Private room,35,1,16,2019-07-07,1.37,1,95 +20889280,Colorful entire studio with city views by subway!,44707578,Nick,Manhattan,Harlem,40.81953,-73.95665,Entire home/apt,115,5,0,,,1,0 +20895742,Franklin Guest Apt,150111187,Sonya,Brooklyn,Bedford-Stuyvesant,40.6835,-73.957,Entire home/apt,130,2,51,2019-06-10,2.53,1,10 +20895878,Extra Large 1 Bedroom Park Slope / Prospect Park,150044472,Amar,Brooklyn,South Slope,40.66163,-73.98265,Entire home/apt,159,2,5,2018-05-16,0.26,2,0 +20895982,Charming & Cozy Room in East Village Apt!,37904015,Louisa,Manhattan,East Village,40.72413,-73.98216,Private room,83,2,13,2018-07-27,0.61,1,0 +20896281,Sun-filled Park Slope Gem - Location!,10262386,Dylan,Brooklyn,Park Slope,40.67963,-73.97849,Entire home/apt,225,3,12,2019-07-08,0.55,1,47 +20896520,Quaint room in Park Slope with awesome deck,5299551,Gabriella,Brooklyn,Park Slope,40.67781,-73.98083,Private room,70,2,7,2018-05-28,0.32,1,0 +20896775,Cozy Park Slope 1br Bungalo,83798461,Liam,Brooklyn,Park Slope,40.67518,-73.98119,Private room,70,1,4,2017-09-29,0.18,1,0 +20896858,Harlem Cozy Studio,71375344,Roselin,Manhattan,Harlem,40.81301,-73.94502,Entire home/apt,125,4,9,2019-06-08,0.94,1,245 +20897776,AMAZING KING 1 BEDROOM MIDTOWN,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76136,-73.99361,Entire home/apt,125,30,6,2019-07-01,0.29,91,314 +20897863,1st floor room in the heart of Williamsburg,12584768,Blake,Brooklyn,Williamsburg,40.71139,-73.96353,Private room,75,1,0,,,1,0 +20898140,"Long Island city, 15 min to Bryant Park",149722669,Robert,Queens,Long Island City,40.76096,-73.93836,Private room,55,4,0,,,1,0 +20898258,Lower East Side Spot,6349846,Nick,Manhattan,Lower East Side,40.71881,-73.98378,Entire home/apt,198,2,5,2019-04-21,0.23,1,0 +20898536,Bright W.burg 2 bedroom with Giant Private Garden,3002665,Zoe,Brooklyn,Williamsburg,40.71459,-73.94485,Entire home/apt,200,1,17,2019-06-30,0.77,2,87 +20898641,Cabin in Bushwick,19058010,Thomas,Brooklyn,Bushwick,40.69533,-73.9132,Entire home/apt,102,2,10,2018-05-04,0.47,1,0 +20899010,"Historic (& happening!) Prospect Heights, BK",5761096,Leah,Brooklyn,Prospect Heights,40.67556,-73.96427,Private room,80,1,1,2017-09-13,0.05,1,0 +20899758,Hamilton Heights 2 (1/2) bedroom apartment,30491140,Ted,Manhattan,Harlem,40.8292,-73.94742,Private room,350,7,6,2018-08-23,0.34,1,0 +20900299,Artist space,130785115,Samuel,Manhattan,Lower East Side,40.71822,-73.99263,Entire home/apt,140,6,0,,,1,0 +20900400,Amazing loft 1200 sqft in the best of Williamsburg,3273275,Gilles,Brooklyn,Williamsburg,40.71967,-73.96001,Entire home/apt,155,2,6,2019-07-07,0.27,1,4 +20900545,Beautiful Brooklyn Brownstone w/private parking,150159094,Domonique,Brooklyn,Bedford-Stuyvesant,40.69064,-73.93559,Entire home/apt,310,1,77,2019-07-01,3.51,1,347 +20900984,Authentic New York Artist Loft on the Bowery,126466681,Fred,Manhattan,Lower East Side,40.71944,-73.99396,Entire home/apt,525,2,47,2019-07-01,2.19,1,34 +20901715,Harlem Heavenly Apartment,1961411,Vered,Manhattan,Harlem,40.80672,-73.94648,Entire home/apt,200,4,2,2018-08-06,0.09,1,0 +20901820,Hidden Gem in the Heart of Park Slope,41407057,Jason,Brooklyn,South Slope,40.66675,-73.988,Entire home/apt,95,2,4,2018-07-02,0.19,1,0 +20901848,Great budget private room,93025114,Estevan,Brooklyn,Bedford-Stuyvesant,40.67969,-73.93974,Private room,35,3,0,,,1,0 +20902001,"Clean, bright room Williamsburg near L and JMZ .",48276935,Alex,Brooklyn,Williamsburg,40.71229,-73.95782,Private room,150,1,0,,,1,0 +20902644,Cosy & quiet room in Brooklyn steps to the subway,110348515,Pauline,Brooklyn,Greenpoint,40.72965,-73.95707,Private room,98,2,7,2018-04-01,0.34,1,0 +20903359,Prime Location! Luxury Bldg-Lg Rm w/ City Views!,26019828,Sonia,Manhattan,Hell's Kitchen,40.76078,-73.99683,Private room,79,5,1,2017-09-25,0.05,2,0 +20904409,Luxury Tiny house • Ohka,128919111,Journee,Bronx,Allerton,40.86144,-73.86427,Entire home/apt,79,2,95,2019-06-27,4.46,1,225 +20904683,Cozy and Light Filled East Village Apartment,31989023,Carmel,Manhattan,Gramercy,40.73166,-73.98299,Private room,87,3,6,2018-01-01,0.27,1,0 +20912512,Spatious Park Ave Studio,40120855,Matthew,Manhattan,Murray Hill,40.74943,-73.97945,Entire home/apt,210,2,14,2019-06-25,0.64,1,13 +20912583,Classic Harlem Garden Apartment,3557641,Jed,Manhattan,East Harlem,40.80998,-73.93899,Entire home/apt,150,5,31,2019-05-11,1.47,1,24 +20912594,2 bdrm quiet guest area in Times Square Townhouse,12123995,Michal,Manhattan,Hell's Kitchen,40.76104,-73.99255,Entire home/apt,260,2,21,2019-07-03,1.04,2,222 +20912843,East Harlem 1 bed apt- central location!,20625215,Caryn,Manhattan,East Harlem,40.80002,-73.94137,Entire home/apt,121,3,10,2019-06-18,0.51,1,0 +20914119,**Amazing Studio Balcony Steps from Time Square**,52950465,Gal,Manhattan,Hell's Kitchen,40.7605,-73.99189,Entire home/apt,129,30,1,2017-12-05,0.05,12,310 +20914216,2 bedroom Modern Apt. in Prime Williamsburg,85722766,Deniz,Brooklyn,Williamsburg,40.71317,-73.94518,Entire home/apt,90,2,5,2019-06-30,0.23,1,157 +20914425,"Room in duplex w/sep. bathroom, close to J train",878546,Semih,Brooklyn,Bedford-Stuyvesant,40.68859,-73.92238,Private room,100,2,8,2019-02-11,0.38,1,0 +20914711,Two Bedroom Pied A Terre,9215509,Jj,Brooklyn,Clinton Hill,40.68939,-73.96474,Entire home/apt,250,5,6,2019-04-10,0.28,2,354 +20915427,Tiny homes on water,95999344,Marie L,Brooklyn,Mill Basin,40.60903,-73.91846,Entire home/apt,250,1,5,2019-07-07,1.70,1,360 +20915909,Spacious 2-bedroom townhouse apt in Clinton Hill,411697,Daniel,Brooklyn,Clinton Hill,40.68451,-73.96052,Entire home/apt,225,4,29,2019-06-23,2.20,1,43 +20916311,HUGE apartment in Crown Heights,22565156,Melissa,Brooklyn,Crown Heights,40.66689,-73.92806,Private room,45,21,1,2017-10-02,0.05,1,44 +20916679,Oversized Studio Flat,9215509,Jj,Brooklyn,Clinton Hill,40.69072,-73.96539,Entire home/apt,165,14,4,2018-07-27,0.19,2,179 +20917327,AWESOME APARTMENT mins from JFK and LGA,150304209,Melrose,Queens,St. Albans,40.6959,-73.75159,Entire home/apt,85,2,59,2019-06-17,2.69,1,36 +20917712,"@FERRY, Private Cozy Room, Renovated&Stylish.",117492425,Dine,Staten Island,St. George,40.64579,-74.08027,Private room,29,4,61,2019-06-24,2.81,6,178 +20917909,"Huge Room, Access to Garden,Prime Williamsburg",118226205,Sahar,Brooklyn,Williamsburg,40.71732,-73.94027,Private room,85,3,15,2019-06-22,0.70,3,19 +20918376,Big Bright Clean Room Near MANHATTAN and JFK,150345311,Haider & Galiya,Brooklyn,Bay Ridge,40.63498,-74.01966,Private room,75,1,39,2018-08-01,1.81,1,0 +20918850,Upper west side gem,8245913,John,Manhattan,Upper West Side,40.78747,-73.96928,Entire home/apt,330,3,0,,,1,0 +20919726,Cozy room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65027,-74.01101,Private room,79,1,35,2019-06-10,1.60,2,59 +20920048,Cozy Private Bedroom/Bathroom,135904657,David,Manhattan,Harlem,40.80508,-73.94942,Private room,125,2,70,2019-01-09,3.24,2,0 +20920138,Roomy Riverside Apartment,70932642,Alyssa,Manhattan,Washington Heights,40.83571,-73.94756,Private room,78,2,4,2019-05-18,0.28,1,0 +20923712,Private room in 2br apartment near subway (train),16795575,Zack,Queens,Flushing,40.75484,-73.82323,Private room,70,1,0,,,2,0 +20926018,Beautiful Home in Queens,150420341,LaToya,Queens,Springfield Gardens,40.66257,-73.76514,Entire home/apt,113,2,55,2019-07-01,2.50,1,297 +20926888,Bedstuy/Bushwick 3 FLOOR TOWNHOUSE,11638358,Jeremy,Brooklyn,Bedford-Stuyvesant,40.69031,-73.93903,Entire home/apt,370,5,23,2019-06-23,1.25,2,171 +20927532,Newly renovated garden apartment in brownstone!,1963215,Michael,Brooklyn,Carroll Gardens,40.68227,-73.99948,Entire home/apt,150,30,5,2019-03-06,0.44,1,79 +20927619,PRIVATE CLEAN ROOM,139357580,Shuly,Queens,Ditmars Steinway,40.77156,-73.90521,Private room,60,1,48,2019-01-03,2.27,8,128 +20928429,Private cozy room- W 145st & Saint Nicholas Ave,92474771,Gustavo,Manhattan,Harlem,40.8233,-73.94461,Private room,65,1,26,2018-05-12,1.18,1,0 +20928494,"STUNNING, HUGE 1 bed apartment, steps from train!",22721010,Gabrielle,Manhattan,Washington Heights,40.84434,-73.94229,Entire home/apt,103,4,18,2018-11-24,0.84,1,0 +20928856,Charming & Convenient Brooklyn Bedroom,7337775,Lauren,Brooklyn,Crown Heights,40.67394,-73.94991,Private room,60,5,0,,,1,0 +20932707,Great Location to Explore NYC,79534925,Eunice,Manhattan,Upper East Side,40.77751,-73.95575,Private room,65,4,10,2017-12-02,0.46,1,0 +20932773,Well-Located Private Bedroom in Williamsburg,150482893,Devon,Brooklyn,Williamsburg,40.71469,-73.93971,Private room,80,3,2,2017-12-07,0.09,1,0 +20933293,Cozy Moroccan 1BR APT in the heart of Astoria,150489232,Rhita,Queens,Astoria,40.76759,-73.92463,Private room,50,1,142,2019-06-21,6.44,1,115 +20933848,Prime Location of Flushing Queens 豪华卧室 旅途中的家 A,63312104,Max,Queens,Flushing,40.74893,-73.82046,Private room,60,1,39,2019-06-23,1.79,6,359 +20933849,the best you can find,13709292,Qiuchi,Manhattan,Murray Hill,40.75091,-73.97597,Entire home/apt,0,3,0,,,1,0 +20934056,"Beautiful, spacious apartment in Brooklyn",140293912,Awilda,Brooklyn,Kensington,40.64674,-73.97947,Private room,137,3,5,2019-01-02,0.23,3,0 +20934059,"Huge historical 1 bedroom in South Park Slope, BK",30347639,Derek,Brooklyn,Sunset Park,40.66232,-73.9939,Entire home/apt,150,3,5,2019-04-07,0.23,1,83 +20934581,Huge Homey Relaxing room 25 mins from Times Sq!,3630017,Cherie,Manhattan,Washington Heights,40.84594,-73.94039,Private room,65,2,0,,,1,0 +20935059,Spacious bedroom in Artist's Apartment-Atelier,1566510,Nastya,Manhattan,Lower East Side,40.71818,-73.99015,Private room,120,1,72,2019-06-29,3.38,2,50 +20935388,Modern Penthouse Apartment with Private Roof Deck,733286,Doug,Manhattan,East Village,40.72232,-73.98055,Entire home/apt,225,14,1,2017-12-17,0.05,1,0 +20936537,Private Sunny Room with Balcony in Bushwick,71292398,Frances,Brooklyn,Bushwick,40.69827,-73.92493,Private room,50,3,2,2018-12-25,0.10,1,0 +20941086,"Luxury High-Rise, Floor-Ceiling Windows, Balcony",53953736,Billy,Manhattan,Murray Hill,40.74578,-73.97595,Entire home/apt,435,5,7,2019-05-06,0.32,1,22 +20941420,Room in Chelsea,15487773,Sorcha,Manhattan,Chelsea,40.74063,-73.99998,Private room,100,2,4,2017-10-30,0.19,1,0 +20941726,Cozy and comfy apartment in Sunset-Newly renovated,67268840,Men Yee,Brooklyn,Sunset Park,40.65157,-74.01089,Entire home/apt,150,5,47,2019-07-02,2.26,1,76 +20941915,Large Bedroom near Manhattan,150572903,Dimitri,Staten Island,St. George,40.64123,-74.08169,Private room,85,2,0,,,2,356 +20942129,Huge Bedroom with Private bath - Close to Subway,147196210,Dylan,Brooklyn,Bath Beach,40.60303,-73.99596,Private room,69,2,45,2019-06-24,2.05,1,324 +20942199,LUXURY BROADWAY/FINANCIAL DISTRICT,76104209,Rated,Manhattan,Financial District,40.70903,-74.01401,Entire home/apt,235,30,0,,,33,351 +20942352,Private Room in Astoria minutes to NYC,150565606,Mayra,Queens,Ditmars Steinway,40.77864,-73.91445,Private room,47,1,90,2019-05-13,4.13,2,100 +20942873,MOST CENTRAL LOCATION,117287,Lara,Manhattan,Hell's Kitchen,40.76888,-73.98639,Private room,134,2,1,2018-09-30,0.11,3,316 +20943288,Williamsburg's BEST location Apartment,127726243,Daniela,Brooklyn,Greenpoint,40.71951,-73.95397,Entire home/apt,200,7,6,2017-12-10,0.27,1,0 +20943918,Best Space near Manhattan!,33782746,Lu,Manhattan,Roosevelt Island,40.76846,-73.94461,Entire home/apt,150,4,1,2017-12-31,0.05,1,0 +20946154,Prime location.near all 20 mins to manhattan.apt1B,59974573,Taka,Queens,Elmhurst,40.73742,-73.87027,Entire home/apt,99,4,5,2017-11-13,0.23,2,5 +20946693,The Little Nook 1,143041708,Verna,Brooklyn,East Flatbush,40.63568,-73.94746,Private room,70,4,0,,,1,88 +20947437,UES Renovated Safe Location,100685031,Marvin,Manhattan,Upper East Side,40.76798,-73.95274,Entire home/apt,148,1,68,2019-06-17,3.09,1,98 +20949050,Arts / Nightlife Central,150647463,Eréz,Brooklyn,Bushwick,40.69814,-73.93033,Private room,30,14,2,2018-12-22,0.11,2,180 +20953661,Some fresh air,42486495,Benco,Queens,Far Rockaway,40.5975,-73.7397,Entire home/apt,450,7,0,,,1,0 +20954729,Beautiful apt. in Upper West Side close to subway,132158770,Leva,Manhattan,Morningside Heights,40.814,-73.96228,Entire home/apt,150,2,3,2017-10-29,0.14,1,0 +20955226,"Room with View, close to Central Park & Rockfeller",47577509,Jennifer,Manhattan,Roosevelt Island,40.76322,-73.94899,Private room,50,28,0,,,1,0 +20955493,Welcoming New York,103477264,Orain,Queens,St. Albans,40.70791,-73.75625,Private room,45,1,30,2018-10-20,1.37,1,0 +20956802,Private cozy and large room(103),75216989,Wenqin,Queens,Flushing,40.76376,-73.83094,Private room,55,1,40,2019-05-26,1.83,4,342 +20957065,Best of Brooklyn,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69342,-73.95881,Private room,105,30,8,2017-12-03,0.38,3,89 +20957575,Private Room in East Village *FEMALE Guests only*,52768036,Laura,Manhattan,East Village,40.72793,-73.98876,Private room,85,1,44,2019-06-13,2.01,1,19 +20958075,Washington Park,2492369,Nina,Brooklyn,Fort Greene,40.69176,-73.97413,Entire home/apt,131,3,9,2019-07-01,1.46,1,5 +20958399,Elegant 1 BR with amazing view in Park Slope,3574249,Sasha,Brooklyn,Park Slope,40.66803,-73.97869,Entire home/apt,169,4,6,2019-03-17,0.56,1,16 +20958738,Tastetic,75248463,Jotham,Brooklyn,East Flatbush,40.64521,-73.94751,Private room,58,2,9,2019-04-12,0.42,4,49 +20960110,Arthur Ave 2BDR sleeps 6! (15 mins from Manhattan),98416305,Nihad,Bronx,Belmont,40.85362,-73.8896,Entire home/apt,140,2,71,2019-06-23,3.45,1,291 +20960203,The Blue House in Ft Greene,150761245,Tony,Brooklyn,Fort Greene,40.69563,-73.97051,Entire home/apt,200,3,53,2019-06-22,2.50,1,75 +20960223,Private room with private bathroom,25969105,Ghislain Serge,Brooklyn,Bedford-Stuyvesant,40.69081,-73.92679,Private room,120,2,30,2019-06-22,1.39,1,13 +20960246,"Charming, comfy, cozy, safe getaway.",149867246,Medea,Brooklyn,Flatlands,40.62072,-73.93265,Private room,75,1,1,2018-12-30,0.16,2,342 +20960324,Spacious 1 bedroom in Prime Williamsburg,17921511,Amit,Brooklyn,Williamsburg,40.71168,-73.96338,Entire home/apt,99,3,2,2017-09-25,0.09,1,0 +20961894,Californiacation Studio with Garden in Bushwick,42422823,Arina,Brooklyn,Bushwick,40.70163,-73.92366,Entire home/apt,120,4,3,2019-01-09,0.14,1,0 +20964409,Little Slice of Brooklyn!,105828086,Nikki,Brooklyn,Flatbush,40.64104,-73.96337,Private room,45,2,45,2019-06-30,2.06,4,17 +20966555,汤姆公寓,25774748,Dong Ming,Queens,Flushing,40.76407,-73.83052,Private room,89,1,4,2018-05-18,0.20,2,179 +20968000,Luxurious 1BR apt! Amazing Views & Full Amenities!,150846601,William,Manhattan,Murray Hill,40.74428,-73.97364,Entire home/apt,186,3,16,2018-01-27,0.74,1,0 +20968046,"Beautiful RoomwBackyard near Trains,Astoria NY",150116246,Chimme,Queens,Astoria,40.75633,-73.92777,Private room,70,3,5,2018-09-18,0.24,1,0 +20968166,Shay's Place #2 ( Studio Apt. ) 5 mins from JFK,116404073,Sheila,Queens,Springfield Gardens,40.66648,-73.76286,Entire home/apt,90,1,146,2019-06-23,6.87,2,281 +20968536,Cute room in Bushwick,65302026,Enrique,Brooklyn,Bushwick,40.69686,-73.91431,Private room,35,1,0,,,1,0 +20969370,Gorgeous One Bedroom in Clinton Hill,49664910,Lilja,Brooklyn,Clinton Hill,40.69027,-73.96796,Entire home/apt,134,2,17,2019-05-15,0.80,1,0 +20969532,Bright & Large Open Studio 15 Min To Manhattan,127292,Elan,Queens,Sunnyside,40.74205,-73.92394,Entire home/apt,99,30,7,2019-05-01,0.39,1,38 +20970017,The Real B&B Home,89715420,J. Beverly,Brooklyn,Canarsie,40.64399,-73.89315,Entire home/apt,85,7,11,2018-09-22,0.64,1,1 +20970380,★ Cosy room in Brooklyn ★ 20-min to Manhattan,119828457,Marlice,Brooklyn,Bushwick,40.68833,-73.90691,Private room,80,3,60,2019-06-22,2.79,4,336 +20970422,★Bushwick Charming Room★ Great for Solo Travellers,119828457,Marlice,Brooklyn,Bushwick,40.68868,-73.90598,Private room,45,3,79,2019-06-24,3.67,4,312 +20970437,★Luminous and vivid room in NYC★,119828457,Marlice,Brooklyn,Bushwick,40.6871,-73.90546,Private room,110,3,26,2019-06-23,1.21,4,347 +20970588,"Best Artist's fun loft in Williamsburg, mins 2 NYC",27070796,Leonor And Luca,Brooklyn,Williamsburg,40.71416,-73.95357,Entire home/apt,139,2,7,2019-05-31,0.33,1,37 +20970822,Pet & Tony's Residence,150876351,Petra,Brooklyn,East Flatbush,40.65454,-73.91569,Entire home/apt,120,1,187,2019-07-04,8.75,1,318 +20970844,Cozy Quiet Studio in the Heart of Upper East Side,12703148,Tiffany,Manhattan,Upper East Side,40.77406,-73.94788,Entire home/apt,110,2,8,2017-12-18,0.38,1,0 +20971442,Cosy & chic room in luxury hi-rise at Times Square,10980826,Nish,Manhattan,Theater District,40.75974,-73.98623,Private room,110,1,41,2019-01-14,1.87,1,3 +20973084,Private room in Upper Manhattan near City College.,148394958,Cleber,Manhattan,Harlem,40.82876,-73.94538,Private room,38,8,20,2019-05-26,0.97,1,26 +20975327,Spacious Bedroom near Prospect Park,6375186,Sonya,Brooklyn,Kensington,40.64773,-73.97499,Private room,100,1,28,2019-06-30,1.44,1,21 +20976316,Sunny One Bedroom in Historic Fort Greene,1378036,Chris,Brooklyn,Fort Greene,40.6931,-73.9723,Entire home/apt,250,3,6,2018-11-23,0.27,1,0 +20976974,Light and airy room in Soho/Nolita,50028284,Tobi,Manhattan,Nolita,40.72234,-73.99625,Private room,110,7,0,,,1,0 +20978416,Big 1 bedrm St Marks Apt,7182337,Petko,Manhattan,East Village,40.7301,-73.98841,Entire home/apt,199,2,30,2019-06-23,1.41,1,34 +20978898,Lovely Bushwick Townhouse - steps from subway!,150965627,Anna,Brooklyn,Bushwick,40.6838,-73.91015,Private room,40,1,8,2018-11-01,0.36,1,0 +20979453,Midtown East Sunny Studio Apartment,5335417,Glenn Thomas,Manhattan,Kips Bay,40.74395,-73.98049,Entire home/apt,195,3,9,2019-06-14,0.42,1,47 +20980756,Kosher Basement Apt. for men in Crown Heights,145858413,Yosef,Brooklyn,Crown Heights,40.66423,-73.94047,Private room,25,7,0,,,1,0 +20981267,*Private-Comfortable space 2 min from train,150993634,Linda,Brooklyn,Bushwick,40.68157,-73.90547,Private room,52,2,84,2019-06-30,3.93,1,310 +20981701,BROOKLYN'S BROWNSTONE SPECIAL BUDGET IN NYC :),2015914,Majar,Brooklyn,Bushwick,40.68949,-73.91763,Private room,75,3,3,2019-01-02,0.14,8,352 +20981916,LONG TERM 3 BEDROOMS APARTMENT BROOKLYN NYC,52604429,Martin,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94688,Entire home/apt,99,90,2,2019-03-24,0.18,2,170 +20981954,"Massive, airy room with balcony in Crown Heights",31658722,Max,Brooklyn,Crown Heights,40.67145,-73.93007,Private room,55,5,6,2019-03-29,0.28,1,0 +20981968,Comfortable and Clean Private Room,25039950,David,Brooklyn,Williamsburg,40.711,-73.9387,Private room,54,6,1,2018-04-20,0.07,2,0 +20982002,Bright Spacious Room in BedStuy - 20min from City,12528835,Paula,Brooklyn,Bedford-Stuyvesant,40.68909,-73.95282,Private room,90,2,29,2019-06-30,1.36,2,167 +20982168,Private room in Bushwick.,61169465,Daniella,Brooklyn,Bedford-Stuyvesant,40.68475,-73.93589,Private room,50,3,1,2017-11-11,0.05,1,0 +20982257,Fan&Chill,75248463,Jotham,Brooklyn,East Flatbush,40.64434,-73.94635,Private room,53,2,2,2018-01-06,0.10,4,54 +20982422,'Fan'tastic,75248463,Jotham,Brooklyn,East Flatbush,40.64516,-73.94751,Private room,59,2,10,2019-06-01,0.47,4,41 +20982564,Söderläge - Spacious full bedroom in Williamsburg,13262918,Glenn,Brooklyn,Williamsburg,40.70982,-73.95602,Private room,99,1,15,2019-04-27,0.69,3,12 +20982593,Charming Apartment near Empire State Building,10191047,Cezar,Manhattan,Murray Hill,40.74818,-73.98025,Entire home/apt,195,3,4,2018-10-21,0.22,1,0 +20982704,Home Away From Home -3,147721837,Karen,Brooklyn,East New York,40.6661,-73.87469,Entire home/apt,160,3,4,2019-06-06,0.18,2,36 +20982734,"Spacious, Modern Uptown Getaway with Balcony",5668108,Wakahiu,Manhattan,East Harlem,40.80012,-73.94549,Entire home/apt,250,4,7,2019-04-24,0.33,1,0 +20982862,Spacious NYC Duplex- 1 Bedroom & 2 Bathrooms,38250510,Ant,Queens,Elmhurst,40.72859,-73.87276,Entire home/apt,150,2,10,2019-01-01,0.46,1,89 +20983319,Large Comfortable Cozy Room,33589349,Henry,Queens,Richmond Hill,40.69002,-73.83688,Private room,85,3,0,,,1,88 +20983421,"Bright Warm Home. A little old, a little new!",3461768,Grace,Brooklyn,Prospect Heights,40.67525,-73.96408,Private room,45,2,1,2017-09-22,0.05,1,0 +20983663,Brooklyn's Cozy Jewel II,117507630,Faith,Brooklyn,Crown Heights,40.67171,-73.93273,Entire home/apt,149,5,35,2019-06-17,1.81,2,12 +20984142,HEART OF BUSHWICK,13500687,Patrick,Brooklyn,Bushwick,40.70784,-73.92054,Private room,60,1,9,2019-05-22,0.42,1,81 +20989220,Lovely Young Apt Close to JFK & LGA,151073194,Thomas,Queens,Flushing,40.72662,-73.80086,Entire home/apt,99,2,95,2019-07-08,4.34,1,305 +20989354,Nice room in cozy house,90878763,Andrew,Brooklyn,Midwood,40.62518,-73.96316,Private room,65,2,2,2018-09-26,0.09,2,0 +20989659,LUXURY MURRAY HILL EAST 34TH~1BR,2856748,Ruchi,Manhattan,Murray Hill,40.7488,-73.97844,Entire home/apt,225,30,1,2019-06-23,1,49,311 +20990053,Beautiful place in Brooklyn! #2,151084261,Angie,Brooklyn,Williamsburg,40.71772,-73.95059,Private room,79,999,24,2018-06-28,1.12,6,249 +20990431,天使的温暖,151087909,Keqin,Queens,Flushing,40.73565,-73.81591,Private room,36,1,0,,,1,89 +20990607,Brooklyn NYC! #3,151084261,Angie,Brooklyn,Williamsburg,40.71835,-73.94999,Private room,79,30,15,2018-07-08,0.69,6,333 +20990770,Amazing room #1,151084261,Angie,Brooklyn,Williamsburg,40.71732,-73.95048,Private room,54,30,22,2019-05-03,1.01,6,276 +20991704,Gorgeous Master Bedroom for Sukkot!,17742578,Sarah,Brooklyn,Midwood,40.6229,-73.96169,Entire home/apt,79,1,0,,,1,0 +20991910,Beautifully Designed Green Point in Greenpoint,4774053,Rinat,Brooklyn,Greenpoint,40.72588,-73.94531,Entire home/apt,145,3,23,2019-06-04,1.06,1,13 +20992027,Peaceful Park Slope Condo with Fast Wifi! #10253,603493,Dan,Brooklyn,Park Slope,40.67858,-73.9812,Entire home/apt,300,30,51,2019-05-31,2.33,1,75 +20993138,Spacious Room only minutes away from 125th area,151115004,Tyshawn,Manhattan,Harlem,40.81248,-73.9526,Private room,58,1,9,2019-06-30,3.00,1,248 +20994196,"East Village, Spacious Private Room w Backyard",109371945,Zach,Manhattan,East Village,40.7212,-73.98045,Private room,70,3,2,2017-09-24,0.09,1,0 +20994674,Nice bedroom in Brooklyn,97118521,Lara,Brooklyn,Bedford-Stuyvesant,40.69512,-73.94946,Private room,50,4,5,2019-04-27,0.23,1,0 +20996070,Prime Location of Flushing Queens 豪华卧室 旅途中的家 B,63312104,Max,Queens,Flushing,40.7469,-73.8179,Private room,55,1,77,2019-06-23,3.58,6,365 +20996372,"Luxury in Brooklyn Brownstone, Close to Metro!!!",151146788,Rohit,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92958,Entire home/apt,170,3,99,2019-06-22,4.79,2,288 +20996474,"Ping Pong Paradise in Brooklyn, Close to metro!!!",151146788,Rohit,Brooklyn,Bedford-Stuyvesant,40.69049,-73.93014,Entire home/apt,124,2,91,2019-06-21,4.40,2,272 +20996673,Homey Bedroom in a great neighborhood!,33923279,Hollis,Manhattan,Harlem,40.82881,-73.94566,Private room,40,3,6,2017-11-03,0.28,2,0 +20996830,"Perfect SOHO/NOLITA location, CLEAN and cozy home",144857346,Grace,Manhattan,Nolita,40.72408,-73.99381,Private room,111,1,51,2019-06-09,2.39,3,56 +20996996,Private Bedroom and Bath,785283,Melinda,Queens,Ditmars Steinway,40.77618,-73.91741,Private room,75,2,38,2018-12-06,1.81,2,0 +20997574,Spacious & Bright apt in Soho (Top 1% ♥ NYC pick),40507331,Arnaud,Manhattan,Nolita,40.72169,-73.9965,Entire home/apt,325,2,8,2018-10-22,0.37,1,86 +20998163,Walk to Times Square and Central Park-Cozy Room!!!,11392362,Maxim,Manhattan,Midtown,40.76357,-73.98308,Private room,107,3,133,2019-07-05,6.08,1,9 +20998265,Charming- cozy bedroom,90531953,Carolina,Bronx,Concourse,40.82453,-73.92563,Private room,60,1,16,2018-01-01,0.74,1,0 +20998921,COZY QUIET APT CLOSE TO TRAIN,42058671,Alana,Brooklyn,Bushwick,40.70073,-73.92913,Private room,60,3,4,2017-12-26,0.20,1,0 +20999025,Sunny/spacious/convenient private room - Bushwick!,1137079,Rahul,Brooklyn,Bushwick,40.69808,-73.93022,Private room,60,2,76,2019-07-06,4.03,1,234 +21000540,Creative Artist Apartment in SoBro,128490590,Jermaine,Bronx,Mott Haven,40.81553,-73.92453,Entire home/apt,120,2,0,,,1,0 +21004111,Prime East Village REAL 1 Bedroom,22225802,David,Manhattan,East Village,40.72236,-73.97756,Entire home/apt,200,5,0,,,1,0 +21005576,"Quiet, clean and spacious.",151238818,Peter,Manhattan,Upper West Side,40.77867,-73.97914,Private room,135,7,8,2019-06-16,0.82,1,363 +21005699,Vics cafe,45044964,Victor,Queens,Queens Village,40.72517,-73.76105,Shared room,41,1,11,2019-06-03,0.51,2,125 +21005738,The Perfect Fort Greene Studio,34579576,Brooke,Brooklyn,Fort Greene,40.68805,-73.97563,Entire home/apt,160,2,1,2017-10-01,0.05,1,0 +21005994,Sun-filled Bed-Stuy Apt with Master Bedroom!,676140,Claire,Brooklyn,Bedford-Stuyvesant,40.69321,-73.94207,Private room,80,3,5,2019-03-23,0.23,1,0 +21006212,Sunny and charming Room in Duplex Apt in BedStuy,15873714,Salome,Brooklyn,Bedford-Stuyvesant,40.68808,-73.9413,Private room,100,2,6,2018-10-08,0.28,1,39 +21006224,Cozy home in Bayside,151243003,Ting,Queens,Bayside,40.76124,-73.76178,Private room,59,1,62,2019-07-05,2.91,1,54 +21006709,Nice Cozy Little Studio in a Quite Neighborhood!!,151249486,Tiffany,Bronx,Parkchester,40.84038,-73.85662,Entire home/apt,65,3,12,2017-12-30,0.55,1,0 +21007181,Brooklyn Two Bed with Private Garden,19202566,Judith,Brooklyn,Greenpoint,40.7366,-73.95656,Entire home/apt,225,4,0,,,1,159 +21007370,Charming bright room in SoHo w/access to rooftop,19536090,Adriana,Manhattan,SoHo,40.72709,-74.00447,Private room,175,3,20,2019-07-01,1.08,2,239 +21007762,"Spacious, artistic 1-bedroom near The Cloisters!",16144086,Leyla,Manhattan,Inwood,40.86039,-73.92663,Entire home/apt,100,3,44,2019-06-23,2.30,1,168 +21008007,Cozy private room 15 mins to Soho,17428620,Roman,Brooklyn,Brooklyn Heights,40.69209,-73.99421,Private room,119,2,1,2017-09-28,0.05,1,0 +21009685,Great room in a two-bedroom apartment.,150122503,Abdul Kader,Brooklyn,Bay Ridge,40.62938,-74.02976,Private room,30,3,0,,,1,27 +21009737,Luxury 1BR Doorman—NYU—Washington Sq. Pk—Astor Pl.,2506798,Zach,Manhattan,Greenwich Village,40.7315,-73.99393,Entire home/apt,400,30,0,,,1,90 +21010072,The Nest,151189049,Marc,Queens,Ridgewood,40.70863,-73.90249,Private room,32,1,62,2019-01-02,2.91,1,0 +21010586,Cozy Junior One Bedroom apt in Greenwich Village,151284868,Nicola,Manhattan,West Village,40.73076,-74.00162,Entire home/apt,245,5,13,2019-03-31,0.61,1,50 +21010714,"Beautiful,2,000sf,sunny,airy,SoHo loft w/balconies",17579903,Anthony,Manhattan,Lower East Side,40.72066,-73.99229,Entire home/apt,700,3,14,2019-04-17,0.65,1,258 +21010735,Zen retreat in Bustling East Village,105631352,Taylor,Manhattan,East Village,40.72561,-73.97953,Private room,90,2,41,2019-07-01,1.91,3,0 +21011427,Cheap bedroom with private half bath attached!,151291713,Kathryn,Manhattan,Washington Heights,40.85014,-73.93743,Private room,30,1,67,2019-06-22,3.07,2,72 +21011433,"BEST LOCATION, ROOFTOP, ROOMY AND BRIGHT",3917497,Daniele,Manhattan,Financial District,40.70445,-74.01521,Entire home/apt,135,6,10,2019-06-17,0.48,1,160 +21011466,Spacious & Cozy Apt in Chinatown/Lower East Side,7557662,Alek,Manhattan,Lower East Side,40.71832,-73.99287,Entire home/apt,200,1,15,2019-06-29,0.72,1,29 +21011532,"Brooklyn Factory Conversion -Bright, Plant Filled",151293286,William,Brooklyn,Bedford-Stuyvesant,40.69282,-73.96034,Entire home/apt,120,4,6,2019-06-02,0.37,1,0 +21012137,"Comfortable bed, lighting, fresh linens, workspace",66329,Collin,Brooklyn,Fort Greene,40.68634,-73.97388,Private room,119,1,14,2019-06-04,0.64,2,78 +21012649,Spacious East Village 1 BR on 14th St!,7608106,Mike,Manhattan,Gramercy,40.73247,-73.98297,Entire home/apt,196,2,47,2019-06-18,2.26,1,6 +21013416,Family room #5,151084261,Angie,Brooklyn,Greenpoint,40.71913,-73.95041,Private room,80,30,3,2019-05-04,0.14,6,324 +21013499,Prime Location of Flushing Queens 豪华卧室 旅途中的家 C,63312104,Max,Queens,Flushing,40.74922,-73.81868,Private room,55,1,41,2019-03-25,1.90,6,340 +21014105,NICE 1 BEDROOM 25 MIN TO MANHATTAN,142268790,David,Queens,Forest Hills,40.73307,-73.85047,Entire home/apt,88,2,9,2019-01-01,0.42,2,54 +21014202,曼哈顿林肯中心一室一厅,97044757,柏润,Manhattan,Upper West Side,40.77312,-73.98819,Private room,78,1,11,2018-06-10,0.50,2,0 +21014919,Spacious Private Bedroom in Northern Manhattan!,29248621,Chelsea,Manhattan,Washington Heights,40.84444,-73.93554,Private room,50,5,5,2018-04-01,0.29,1,0 +21015032,Spacious 1 Bedroom Home in the Heart of Manhattan,8753700,Jewell,Manhattan,Hell's Kitchen,40.75994,-73.99073,Entire home/apt,215,2,28,2019-06-17,1.28,1,6 +21015347,Brooklyn 3Bed 1Bath 8minute Subway 30 to Manhattan,102618751,Shawn,Brooklyn,East New York,40.65894,-73.8921,Entire home/apt,300,2,24,2019-06-23,3.29,1,294 +21015751,Great studio in Chelsea at a fantastic location,79345554,Vela,Manhattan,Chelsea,40.75058,-73.99582,Entire home/apt,160,60,0,,,1,0 +21015993,Pristine Luxury Loft Near Barclay & Green Building,147513,Ashley,Brooklyn,Gowanus,40.6801,-73.9866,Entire home/apt,250,1,18,2017-12-03,0.85,2,0 +21016290,Large 1bdr family friendly apt close to midtown,14085769,Pj,Queens,Maspeth,40.72543,-73.89666,Entire home/apt,125,7,0,,,1,0 +21016498,Newly Renovated Apartment,51716739,Harvin,Brooklyn,Bedford-Stuyvesant,40.68171,-73.94471,Entire home/apt,180,2,13,2019-06-30,0.73,3,303 +21020048,Casa Blue In the Heart of Soho,151372422,Marcy,Manhattan,SoHo,40.72294,-73.99869,Entire home/apt,650,2,3,2017-12-08,0.14,1,0 +21020862,"Elegant Private Room, Bath & Patio Next to Subway",59795431,Nazeer,Bronx,Williamsbridge,40.88192,-73.86186,Private room,60,1,70,2019-06-21,3.55,1,283 +21020869,Casa Blue,2326517,Marcy,Manhattan,SoHo,40.72391,-73.9975,Entire home/apt,695,3,0,,,1,1 +21021957,2BED 2 BATH LINCOLN CENTER / RIVER VIEW,131647128,Emily,Manhattan,Upper West Side,40.77536,-73.98952,Entire home/apt,280,30,9,2019-06-02,1.40,25,341 +21022330,Cozy spot,137586595,Yves,Queens,Hollis,40.71455,-73.7613,Entire home/apt,100,1,3,2017-11-04,0.14,1,0 +21022616,1 bedroom completely renovated in Brooklyn,2195090,Thomas And Madalena,Brooklyn,Crown Heights,40.67292,-73.94137,Entire home/apt,75,1,2,2017-10-01,0.09,1,0 +21022856,"Your Home in NYC, 3 bdrm, 2 bath, 5 min to metro!!",22194698,Joe & Jay,Brooklyn,Bedford-Stuyvesant,40.69012,-73.9257,Entire home/apt,135,2,89,2019-07-05,4.14,2,139 +21023888,Almost a Hotel Room // Cozy Private Room,6378149,Laurel,Brooklyn,Bushwick,40.69835,-73.91644,Private room,50,2,57,2019-06-23,2.68,3,18 +21024098,307 E 44th st beautiful fully furnished,53179388,Raymond,Manhattan,Midtown,40.75029,-73.97142,Entire home/apt,175,30,2,2018-09-05,0.15,10,161 +21024792,Room in a loft in Soho/Nolita,24770383,Maeva,Manhattan,SoHo,40.7215,-73.99894,Private room,80,21,0,,,1,0 +21025083,"Douglaston (apt 2) Room one +(Largest room)",18996093,Leonard,Queens,Little Neck,40.75777,-73.72949,Private room,50,1,6,2018-12-16,0.31,5,94 +21025488,Beautiful Garden Apartment with Patio & BBQ Grill,151421618,Adesh & Viviana,Queens,Ozone Park,40.68464,-73.84245,Entire home/apt,130,4,4,2019-06-09,0.39,2,145 +21025840,3 blocks from Subway express! Clean & Cozy,33167995,Kyle,Brooklyn,Crown Heights,40.67071,-73.95381,Private room,70,4,8,2018-05-23,0.37,1,6 +21026272,Douglaston (apt2) Room 2,18996093,Leonard,Queens,Douglaston,40.75573,-73.72931,Private room,45,1,17,2019-06-06,0.82,5,325 +21026558,One private room in a brand new 2BR Penthouse!,15569216,Andrey,Manhattan,Upper West Side,40.78628,-73.97482,Private room,250,2,3,2019-05-05,0.20,1,94 +21027182,Private ROOM & BATH (City Central) Time Square NYC,31929860,Bryan,Manhattan,Hell's Kitchen,40.76181,-73.9905,Private room,155,1,62,2019-06-02,2.87,4,307 +21027809,Sunny 2 br apartment in Prospect Lefferts Gardens,9138141,Lory And Cindy,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.95262,Entire home/apt,100,1,85,2019-07-07,8.95,1,125 +21027995,Spacious Private room 10 minutes to Manhattan,82349344,Maxim,Brooklyn,Williamsburg,40.70911,-73.95288,Private room,76,2,79,2019-06-24,4.56,1,349 +21028192,Spacious 2-bed Apt. Quiet w/garden.Family friendly,35852743,Vegard,Brooklyn,Crown Heights,40.67245,-73.94608,Entire home/apt,240,5,57,2019-06-23,2.83,1,179 +21028467,Garden Apartment in South Slope,76450538,Pat,Brooklyn,Sunset Park,40.65331,-74.00814,Private room,80,4,0,,,1,0 +21029146,Small room nearby C-train station (female only),131638913,Sachie,Brooklyn,Clinton Hill,40.68428,-73.96526,Private room,35,1,1,2017-12-31,0.05,1,0 +21029490,Private room in Greenpoint!,6216526,Catalina,Brooklyn,Greenpoint,40.72386,-73.94085,Private room,50,4,1,2017-10-04,0.05,1,0 +21029655,Beautiful room in loft with private roof & SDB,65112370,Jacques,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94417,Private room,90,3,1,2017-12-27,0.05,1,0 +21029678,Guest room in Greenpoint,15475460,Andre,Brooklyn,Greenpoint,40.73465,-73.95314,Private room,65,2,32,2019-05-18,1.51,1,70 +21031177,"My Cozy Condo! +My apartment is very peaceful!",150665890,Edna,Manhattan,East Village,40.72484,-73.9746,Private room,100,2,0,,,1,99 +21035506,Cosy private room in the middle of Manhattan!,31244515,Carly,Manhattan,Hell's Kitchen,40.76735,-73.98842,Private room,92,3,56,2019-06-30,4.65,1,14 +21038103,Great West Village Pad,151530017,Ma,Manhattan,West Village,40.73427,-74.00798,Private room,425,1,0,,,1,125 +21038471,"Sunny, spacious room in Bedstuy",100841539,Tiffany,Brooklyn,Bedford-Stuyvesant,40.68873,-73.93881,Private room,58,1,118,2019-06-20,5.48,1,21 +21038703,"3 Beds, Uptown , one block train A ,15 min Wall St",40800717,Fer,Manhattan,Washington Heights,40.84859,-73.93855,Entire home/apt,85,30,4,2018-09-04,0.22,1,0 +21038881,Downtown warmth and charm,78107584,Jesper,Manhattan,Nolita,40.72091,-73.99531,Entire home/apt,250,2,34,2019-06-21,1.61,1,0 +21039236,Cozy Brownstone Apartment in Carroll Gardens,1026622,Premshree,Brooklyn,Carroll Gardens,40.68343,-73.99821,Entire home/apt,116,7,1,2017-10-23,0.05,1,0 +21039710,Luxury 1BR with Private Outdoor Patio,66060459,Laney,Brooklyn,Bushwick,40.69648,-73.92742,Entire home/apt,120,2,5,2017-12-10,0.23,1,0 +21041077,Huge Bedroom Next to Lines Q & 6 UPPER EAST SIDE,114011720,Alexandre,Manhattan,Upper East Side,40.7844,-73.9485,Private room,70,3,2,2017-11-04,0.09,1,0 +21041595,HOME AWAY FROM HOME,151560823,Fred,Brooklyn,Brownsville,40.66154,-73.91387,Private room,100,1,3,2019-07-01,1.58,1,2 +21042120,"Spacious bedroom, minutes to Manhattan!",31605872,Jacquelin And,Queens,Long Island City,40.76191,-73.93092,Private room,76,2,43,2019-06-23,2.02,1,8 +21042151,STAY HERE! Nice&Quite 1BD in Financial District!,151563968,Andrey,Manhattan,Financial District,40.70949,-74.00973,Entire home/apt,150,1,103,2019-06-22,4.79,1,7 +21042534,"Light, spacious apartment in trendy neighborhood",2575895,Kathy,Brooklyn,Crown Heights,40.67467,-73.9469,Entire home/apt,100,5,2,2019-04-21,0.66,1,0 +21043947,Apartment at the fabulous Tea Factory!,63965653,Lauren,Brooklyn,Bushwick,40.69878,-73.92194,Private room,75,4,2,2017-10-27,0.10,1,0 +21044271,"Chelsea, Manhattan Large Private Bedroom for 2",44170535,Caitlin,Manhattan,Chelsea,40.74594,-73.99829,Entire home/apt,125,3,0,,,2,0 +21044322,"Windsor Terrace spacious, lovely 1 Bedroom",18290840,Andrea,Brooklyn,Windsor Terrace,40.64816,-73.97279,Entire home/apt,120,15,3,2019-04-09,0.16,1,0 +21044649,One Bedroom Bronx Bohemian style living space,151547086,Tanya,Bronx,Norwood,40.87759,-73.88459,Private room,42,2,6,2019-05-13,0.27,1,62 +21044970,Best location in Williamsburg! Spacious and quite.,48988714,Luigi,Brooklyn,Williamsburg,40.71209,-73.9571,Entire home/apt,349,1,2,2019-02-24,0.14,3,105 +21045283,Say Morning to Statue of Liberty !,16359827,Hitesh,Manhattan,Financial District,40.70424,-74.01564,Shared room,299,1,0,,,1,83 +21045324,Bronx room,27187487,Summer,Bronx,Belmont,40.85444,-73.88462,Private room,30,3,5,2018-08-15,0.23,2,361 +21045451,Sunny and cozy spacious bedroom w/ queen sized bed,1892493,Whitney,Brooklyn,Brownsville,40.66819,-73.92394,Private room,70,2,5,2019-05-05,0.25,2,46 +21047121,Murray Hill House,55527442,Ekaterina,Manhattan,Murray Hill,40.74685,-73.97892,Entire home/apt,1177,3,42,2019-06-04,2.03,3,284 +21048346,Room in Hell's Kitchen luxury building,4421545,Adam,Manhattan,Hell's Kitchen,40.76892,-73.99016,Private room,110,3,2,2018-02-06,0.09,1,0 +21050522,"Great room in Williamsburg, perfect for 2",151639981,Julie,Brooklyn,Williamsburg,40.71101,-73.96217,Private room,65,6,1,2017-10-14,0.05,1,0 +21051477,"Cool, calm, and cozy.",151018315,Yvonne,Brooklyn,East New York,40.65604,-73.88426,Private room,30,1,0,,,1,174 +21052514,Sunny Bushwick Apartment,126141244,Alice,Brooklyn,Bushwick,40.70393,-73.91427,Entire home/apt,120,2,1,2017-10-09,0.05,1,0 +21053044,RESIDENCE NEAR JFK (TB3),145727343,Janelle,Queens,Jamaica,40.68501,-73.79162,Private room,33,1,7,2019-06-25,0.35,3,139 +21053432,Cozy room in spacious and sunny apartment,21891606,Angela,Queens,Ridgewood,40.69787,-73.90008,Private room,38,2,4,2019-05-31,0.19,1,175 +21054012,Ashes Cove,48638439,Aston,Queens,Springfield Gardens,40.66013,-73.77166,Entire home/apt,200,3,23,2019-06-02,1.18,2,357 +21054217,Lavish 3 bedroom near Penn Station / MSG,151671343,Michael,Manhattan,Chelsea,40.74881,-73.99375,Entire home/apt,790,2,42,2019-07-01,1.99,1,36 +21055153,Chez Jazzy Midtown East,151681101,Chez,Manhattan,Midtown,40.75614,-73.96706,Entire home/apt,225,5,30,2018-10-31,1.40,1,0 +21055192,"Clean, Comfortable, Sunny Room 5 Min from LGA",9232930,Lisa,Queens,Ditmars Steinway,40.77429,-73.92123,Private room,90,2,8,2019-06-03,0.38,1,87 +21055320,20-Minute Subway Ride to Times Square,151683441,Ricardo,Queens,Ditmars Steinway,40.77839,-73.90866,Private room,100,2,1,2017-12-20,0.05,1,0 +21056487,"** SoHo: Clean, Safe, Private, Quiet Bedroom (B)**",104450469,Janet,Manhattan,SoHo,40.7228,-73.99799,Private room,99,2,35,2019-02-07,1.62,2,129 +21056510,G1 Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.75599,-73.93415,Private room,55,1,76,2019-06-06,3.56,9,229 +21056653,G2Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.75571,-73.9338,Private room,55,1,54,2019-06-22,2.54,9,265 +21056691,G3Newly Renovated Long Island City Room,79105834,Leo,Queens,Long Island City,40.7558,-73.93399,Private room,58,1,62,2019-06-23,2.87,9,279 +21057693,Sunny and cozy apartment with a beautiful terrace,37212082,Alex,Brooklyn,Bedford-Stuyvesant,40.69155,-73.94736,Entire home/apt,97,15,8,2019-01-03,0.39,1,0 +21057716,Contemporary two-story oasis. Minutes from train.,45486831,Brittany,Brooklyn,Bedford-Stuyvesant,40.68884,-73.93355,Entire home/apt,165,3,10,2018-06-01,0.46,1,158 +21057757,Bright Charming 1 Bdrm off Central Park,2235545,Kevin,Manhattan,Upper West Side,40.77478,-73.97986,Entire home/apt,125,30,5,2018-11-12,0.26,1,0 +21058573,Beautiful Cypress Hills apt,14719992,Yoni,Brooklyn,Cypress Hills,40.67966,-73.89028,Entire home/apt,106,1,2,2018-11-04,0.11,3,0 +21058648,Prime Location of Flushing Queens 豪华卧室 旅途中的家 D,63312104,Max,Queens,Flushing,40.74729,-73.81865,Private room,60,1,92,2019-05-30,4.26,6,362 +21062611,Great location bay ridge off shore road,8898944,Ahmed,Brooklyn,Fort Hamilton,40.62053,-74.03942,Entire home/apt,99,2,28,2019-06-23,1.36,1,69 +21063162,Space and Light in the Heart of Midtown,33009,Seth,Manhattan,Hell's Kitchen,40.76192,-73.9909,Entire home/apt,180,3,3,2018-11-26,0.14,1,0 +21064170,"Sunny, Entire Top Floor of Harlem Brownstone!",151718551,Rob,Manhattan,Harlem,40.80844,-73.9502,Entire home/apt,129,28,7,2018-08-14,0.35,1,40 +21064623,Gorgeous Alcove Studio,9130390,Neda,Manhattan,Hell's Kitchen,40.76007,-73.99078,Entire home/apt,160,7,3,2019-01-05,0.15,1,0 +21065293,(=CUTE ROOM IN HELL'S KITCHEN=),137191484,Maria,Manhattan,Hell's Kitchen,40.76583,-73.98669,Private room,86,1,158,2019-06-27,7.33,5,170 +21066041,Private 2 bedroom w/ Rooftop Manhattan View!,6394738,Lindsay,Brooklyn,Bushwick,40.7049,-73.92448,Private room,155,1,4,2017-11-26,0.19,2,0 +21067165,Gorgeous Brownstone - 3 blocks from subway!,9356744,Hadas,Brooklyn,Bedford-Stuyvesant,40.68779,-73.95347,Entire home/apt,185,2,50,2019-06-30,2.34,1,14 +21067451,Hell's Kitchen/ Times Square,49108760,Mark,Manhattan,Hell's Kitchen,40.76195,-73.99077,Private room,210,1,4,2019-02-10,0.22,1,0 +21068619,Clean & nice room near Central Park/2min to subway,44229047,Felix,Manhattan,Harlem,40.80436,-73.95649,Private room,80,45,1,2017-10-06,0.05,1,0 +21068818,Amazing Studio at the Time Square Area/53B,48146336,Irina,Manhattan,Hell's Kitchen,40.76269,-73.99364,Entire home/apt,130,30,4,2019-01-30,0.23,20,272 +21068875,Clean Apt that Sleeps 4 Near Subway in East Harlem,151241345,Paul,Manhattan,East Harlem,40.79979,-73.94104,Entire home/apt,113,1,1,2017-09-30,0.05,1,0 +21069115,Spacious Park Slope apt with garden,42631621,Jacob,Brooklyn,Park Slope,40.67711,-73.98074,Entire home/apt,160,3,2,2017-10-30,0.10,1,0 +21072318,Designer 1BR with Patio & FiOS! #10257,26640554,Harrison,Brooklyn,Williamsburg,40.7173,-73.96199,Entire home/apt,350,7,3,2017-10-28,0.14,1,0 +21073975,Charming 1 bedroom in mid-town Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75008,-73.97655,Entire home/apt,222,30,2,2018-07-28,0.15,50,364 +21076625,Harlem Room With A View,33074274,Vigil,Manhattan,Harlem,40.80752,-73.94994,Private room,65,6,9,2019-06-20,0.42,2,333 +21078963,"Women friendly, spacious loft with private bedroom",59518759,Carissa,Manhattan,East Harlem,40.79483,-73.93478,Private room,90,3,2,2017-10-22,0.09,1,0 +21078966,Spacious room with tons of natural light,107075694,Ivan,Manhattan,Harlem,40.80531,-73.94187,Private room,65,3,3,2018-07-29,0.14,1,0 +21079505,***Come Stay in Comfort while you Experience NYC**,151940941,Nelson Antonio,Manhattan,Washington Heights,40.85117,-73.94344,Private room,55,3,66,2019-06-23,3.05,1,251 +21079975,South Park Slope 1BR Apt with Shared Yard,137327838,James,Brooklyn,Sunset Park,40.6606,-73.99455,Entire home/apt,94,2,24,2019-06-23,1.15,1,12 +21080763,"CHIC 2 BEDROOM W/ LUXURY FINISHES, WASHER DRYER",61391963,Corporate Housing,Manhattan,Kips Bay,40.74061,-73.97991,Entire home/apt,185,30,4,2019-03-31,0.25,91,201 +21081485,Spotless Private Room near Airport and Subway!,29597567,Lucy & Rodo,Queens,Corona,40.74533,-73.86076,Private room,49,2,127,2019-06-22,6.05,1,64 +21081721,"Chill, Cozy, Apt Next to Subway in LES/Chinatown",48861932,Sydney,Manhattan,Lower East Side,40.71389,-73.98889,Private room,80,1,9,2018-07-06,0.42,1,0 +21081736,Comfy Cozy,151812737,Dawn,Brooklyn,Canarsie,40.64008,-73.89302,Entire home/apt,139,2,64,2019-07-01,3.11,1,358 +21081875,Empire State view from my Central Harlem prv room.,11135666,Andre,Manhattan,East Harlem,40.80225,-73.94491,Private room,70,1,0,,,1,0 +21081975,Perfect Chanukah apartment for the whole crew!,15692021,Alexandra,Brooklyn,Crown Heights,40.6696,-73.94253,Entire home/apt,400,11,1,2017-10-15,0.05,1,0 +21082194,Howard Beach CrashPad,14046692,Pedro J,Queens,Howard Beach,40.65979,-73.8315,Private room,45,1,1,2017-09-29,0.05,2,0 +21082203,Sunny Private Bedroom in Washington Heights,75126216,Michael,Manhattan,Washington Heights,40.83784,-73.94081,Private room,75,3,2,2017-10-22,0.09,1,0 +21088326,Private Bedroom with Exposed Brick in Chinatown!,2749543,Philip,Manhattan,Chinatown,40.71587,-73.9989,Private room,100,2,1,2017-10-11,0.05,1,0 +21088999,"SOHO / GREENWICH VILLAGE +Prime location- 1 Bedroom",51538274,Zachary,Manhattan,Greenwich Village,40.72801,-74.00105,Entire home/apt,150,80,18,2019-04-15,0.87,1,182 +21089520,Closest to Home,151139950,Shelliann,Brooklyn,Bedford-Stuyvesant,40.67865,-73.9126,Entire home/apt,100,2,115,2019-07-04,5.38,1,225 +21089707,Bright Lower East Side Studio,108653826,Alexandra,Manhattan,Lower East Side,40.71808,-73.99147,Entire home/apt,139,2,2,2017-12-05,0.10,1,0 +21090094,"Private and Cozy Studio Pelham Gardens - Bx, NY.",152045247,Mariana,Bronx,Pelham Gardens,40.86506,-73.84295,Entire home/apt,40,2,37,2019-05-01,1.81,1,35 +21091355,Comfortable and lovely furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.76139,-73.96222,Entire home/apt,80,30,4,2019-02-07,0.26,8,272 +21091844,Sunny Room in Queens,28270349,Jie,Queens,Flushing,40.76604,-73.79442,Private room,100,1,34,2018-10-31,1.65,2,189 +21094022,"Bright, spacious room in Williamsburg",32110549,Tori,Brooklyn,Williamsburg,40.71111,-73.94792,Private room,100,2,2,2017-10-17,0.10,1,0 +21094476,"Large, Charming & Sunny 2 Bedroom in Brooklyn!",33946068,Chris,Brooklyn,Crown Heights,40.67701,-73.96249,Entire home/apt,150,2,53,2019-06-05,2.49,1,160 +21094894,Luxury Apartment Central Park - Hell’s Kitchen,11855071,Kadu,Manhattan,Hell's Kitchen,40.76842,-73.99109,Entire home/apt,273,1,46,2019-06-09,2.19,1,166 +21095257,Soho | Greenwich Village 1 Bedroom,21480920,Dawn,Manhattan,SoHo,40.72653,-74.00054,Entire home/apt,225,3,79,2019-07-06,3.88,1,151 +21095546,Urban Sanctuary in Sunset Park,16509617,Heather,Brooklyn,Sunset Park,40.64651,-74.01749,Entire home/apt,100,3,0,,,1,0 +21095775,Trendy & Bright Dumbo 1 Bed,152096705,Joe,Brooklyn,Downtown Brooklyn,40.69772,-73.98365,Entire home/apt,135,2,18,2019-05-10,0.84,1,0 +21096186,Charming two bedroom apartment in Downtown Soho,14945039,Amy,Manhattan,Greenwich Village,40.72838,-73.99897,Entire home/apt,400,4,1,2018-01-01,0.05,1,0 +21097166,Beautiful Brooklyn Brownstone in Boerum Hill,25321849,Anne,Brooklyn,Boerum Hill,40.68701,-73.98842,Entire home/apt,125,2,91,2019-07-06,4.61,2,62 +21098387,"Private room in Times Square, HEART of the city!",133790239,Erica,Manhattan,Hell's Kitchen,40.75906,-73.98898,Private room,150,2,0,,,1,0 +21098555,Fabulous 1 bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74848,-73.97564,Private room,222,30,0,,,50,364 +21098717,Splendid 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74896,-73.9762,Entire home/apt,175,30,1,2018-06-16,0.08,50,364 +21098719,Great Studio!,127743419,Keziah,Manhattan,Harlem,40.81631,-73.93933,Entire home/apt,70,3,39,2019-05-06,1.83,1,4 +21098848,Sunny 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74877,-73.97565,Entire home/apt,175,30,1,2019-02-01,0.19,50,364 +21098980,Comfortable studio suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74829,-73.97554,Entire home/apt,130,30,3,2018-05-27,0.16,50,364 +21103362,West Village 1 Bedroom with a view,28066471,Jordan,Manhattan,West Village,40.73223,-74.00489,Entire home/apt,150,4,1,2017-12-31,0.05,1,6 +21104475,Near LGA cozy room.,152177080,James &,Queens,East Elmhurst,40.77063,-73.87543,Private room,45,1,222,2019-06-20,10.39,1,164 +21104699,Cozy Blue Room,333897,Lane,Queens,Ridgewood,40.69385,-73.90296,Private room,50,1,50,2019-06-01,2.34,2,341 +21105248,"Williamsburg - Private Bathroom, Steps To Subway",111020045,Ben,Brooklyn,Williamsburg,40.71566,-73.94486,Private room,100,3,1,2017-09-26,0.05,1,0 +21106002,♕ Downtown Manhattan I Private Bedroom♕,151316042,Edhar,Manhattan,Chinatown,40.71363,-73.9909,Private room,90,1,58,2019-06-15,2.68,2,10 +21106251,Private Bedroom in Great Brooklyn Apartment,25354313,Tommy,Brooklyn,Crown Heights,40.67359,-73.95812,Private room,45,3,9,2019-06-22,0.43,2,0 +21106349,Sunny guest apt w eat-in kitchen near prospect prk,4324444,Zach,Brooklyn,Windsor Terrace,40.65853,-73.98301,Entire home/apt,175,2,54,2019-06-25,3.56,1,135 +21106395,"Cozy, tranquil bedroom steps from Central Park A",152195388,Rachel,Manhattan,Upper West Side,40.78489,-73.97345,Private room,99,20,7,2019-03-31,0.42,2,125 +21107481,Opulent Orange Oasis! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68949,-73.90987,Private room,60,1,66,2019-06-20,3.24,3,120 +21108399,Beautiful Bright Studio in Williamsburg,5867412,Elise,Brooklyn,Williamsburg,40.71328,-73.9633,Entire home/apt,158,30,8,2019-05-25,0.42,1,283 +21108401,Private Large Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71727,-73.95597,Private room,60,4,36,2019-05-03,1.67,4,0 +21108458,Cute bedroom in the heart of Williamsburg,127985639,Sarah,Brooklyn,Williamsburg,40.71171,-73.95158,Private room,45,7,0,,,1,0 +21109037,Prime Upper West Side Bedroom,51339741,Liz,Manhattan,Upper West Side,40.77895,-73.98332,Private room,145,1,43,2019-07-02,2.01,1,197 +21109039,Convenient 2 BR in Downtown Flushing Chinatown,5962328,Alan,Queens,Flushing,40.75951,-73.82189,Entire home/apt,110,30,5,2019-03-18,0.27,15,297 +21110331,Cherry Hill,141012332,Jeremiah,Bronx,Mott Haven,40.80762,-73.92454,Entire home/apt,115,2,100,2019-06-23,4.76,1,130 +21110408,Private Brownstone Bedroom!!!,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68563,-73.93863,Private room,50,2,23,2018-01-28,1.08,5,0 +21110494,Nice spotless room attached PRIVATE FULL BATHROOM,120767920,Jimmy &Cindy,Queens,Flushing,40.75898,-73.81448,Private room,45,3,67,2019-06-21,3.16,10,349 +21110709,Smart 3BR in Trendy Astoria - 8 min to N/W Subway,59959974,Russell,Queens,Astoria,40.7726,-73.92298,Entire home/apt,180,4,41,2019-07-05,2.22,1,120 +21111912,Easy Stay in Williamsburg Brooklyn,8519823,Mimi,Brooklyn,Williamsburg,40.70822,-73.95921,Entire home/apt,350,30,5,2018-08-01,0.24,1,166 +21112291,Entire Home / Apt in Williamsburg + Rooftop,21383928,Kevin,Brooklyn,Williamsburg,40.71195,-73.95872,Entire home/apt,125,3,40,2019-07-03,1.85,1,0 +21112746,"Studio on UWS, three blocks from the Central Park",49046009,Anthony,Manhattan,Upper West Side,40.78607,-73.97717,Entire home/apt,180,5,27,2019-04-20,1.25,1,0 +21112848,Cozy Master Bedroom 5 minutes from JFK,114975592,John And Colleen,Queens,Springfield Gardens,40.6651,-73.76614,Private room,70,1,19,2019-05-16,0.94,4,84 +21112924,Beautiful 1 bed right off express train in Harlem!,92463274,Cameron,Manhattan,Harlem,40.8258,-73.94405,Entire home/apt,126,3,15,2019-02-28,0.70,1,2 +21113189,East Village Apartment,67211684,Zsofia,Manhattan,East Village,40.72615,-73.99072,Entire home/apt,190,4,14,2019-05-23,0.71,1,0 +21116698,ANGUS.3.20min to Manhattan,36889012,Michael,Brooklyn,Bedford-Stuyvesant,40.68191,-73.92064,Private room,50,3,86,2019-06-16,3.97,4,346 +21118650,Clinton Hill room with a view,145187951,Nikki,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95754,Private room,50,3,18,2018-07-30,1.04,2,0 +21118725,♛ Fabulous Bedroom |★★★★★| ♛,151316042,Edhar,Manhattan,Chinatown,40.71396,-73.99151,Private room,95,1,55,2019-06-16,2.56,2,10 +21119908,"Cozzy Room on Bedford, 20 minutes to Manhattan",28953246,Maxim,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95396,Private room,100,1,0,,,1,0 +21120246,"Positive Vibes, Bushwick Living - Entire Apartment",6378149,Laurel,Brooklyn,Bushwick,40.69883,-73.91583,Entire home/apt,115,2,1,2018-08-10,0.09,3,0 +21120547,Full Apartment / 1 Bedroom ( Lower Level),152331348,Juan,Queens,Richmond Hill,40.69474,-73.82284,Entire home/apt,85,2,33,2019-06-16,1.62,1,179 +21121438,Royalty room,17766289,Kaila,Bronx,Kingsbridge,40.86924,-73.90651,Private room,40,30,4,2018-06-01,0.19,2,148 +21121441,Bright 1 bd apartment next to west villiage,152339773,Amanda Haowei,Manhattan,Chelsea,40.74083,-74.00349,Entire home/apt,195,5,0,,,1,0 +21121507,Huge two bedroom apt n Bayridge!!!,25311373,Qais,Brooklyn,Bay Ridge,40.62398,-74.02786,Private room,79,1,0,,,2,179 +21121688,king size Room available now in BayRidge,25311373,Qais,Brooklyn,Bay Ridge,40.62569,-74.02654,Private room,89,1,3,2019-05-22,0.14,2,269 +21122097,Fresh and cozy male room on Manhattan III,39528519,Max,Manhattan,Lower East Side,40.7111,-73.98865,Shared room,32,14,4,2019-02-09,0.25,28,341 +21122874,Private Room w/ Queen Bed & Twin Bed,152353924,Dominique,Bronx,Parkchester,40.83408,-73.87419,Private room,28,3,27,2019-07-01,1.32,2,214 +21123576,Bedstuy treasure,46019665,Jose,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95156,Private room,55,3,1,2017-10-17,0.05,1,0 +21124150,Hamilton Beach House,152366935,Victor,Queens,Howard Beach,40.65059,-73.82896,Entire home/apt,100,1,42,2019-07-01,1.97,1,220 +21125733,"Modern, Bright, Private Bklyn Room w/ 2 Beds",12632660,Christopher,Brooklyn,Fort Greene,40.69211,-73.98102,Private room,125,3,60,2019-06-21,2.79,1,0 +21127460,"HUGE, well-lit apartment, great Brooklyn location",12317482,Anna,Brooklyn,Crown Heights,40.66505,-73.95998,Entire home/apt,150,2,1,2017-09-30,0.05,1,0 +21133911,2BED 2 BATH / HIGH FLOOR/ BALCONY/ COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77538,-73.98814,Entire home/apt,300,30,7,2019-06-24,0.38,25,313 +21135737,Clean Comfortable Apartment near the Subway!,18283,Dominic,Brooklyn,Greenpoint,40.73222,-73.95395,Entire home/apt,150,3,0,,,1,0 +21136103,Modern Bedroom in the Heart of Williamsburg,28839010,Scott,Brooklyn,Williamsburg,40.71054,-73.94691,Private room,115,2,0,,,1,0 +21136144,"Cozy, charming and clean bedroom in Manhattan.",54198006,Bel And Camila,Manhattan,East Harlem,40.79803,-73.93648,Private room,100,1,35,2019-07-07,1.82,2,318 +21136837,Cozy bedroom in Bed-stuy town house,10823443,Margaux,Brooklyn,Bedford-Stuyvesant,40.68454,-73.94829,Private room,45,4,0,,,1,0 +21136851,Massive Luxury 1BR Condo in Astoria / LIC,5760970,Chris,Queens,Ditmars Steinway,40.76982,-73.90254,Entire home/apt,150,2,18,2019-05-19,0.86,2,364 +21138538,Lavish 2 BR minutes from Central Park!,149977050,Ivan,Manhattan,Upper West Side,40.78631,-73.97752,Entire home/apt,199,2,27,2019-06-18,1.34,1,335 +21138554,Huge room in beautiful Brooklyn apartment,7835116,Josh,Brooklyn,Clinton Hill,40.68729,-73.96785,Private room,50,14,0,,,1,0 +21138717,Beautiful Manhattan Apt with Private Garden!,70307900,Dominique,Manhattan,Upper East Side,40.7766,-73.94862,Entire home/apt,275,30,17,2019-05-12,0.79,1,196 +21138939,Urban Oasis in Heart of Brooklyn,56113781,Gerard,Brooklyn,Bushwick,40.68765,-73.90821,Private room,75,1,11,2019-01-03,0.52,1,0 +21139003,"Spacious, Beautiful, 1 or 2 BR in Cobble Hill",152505727,Jack,Brooklyn,Columbia St,40.68787,-74.00037,Entire home/apt,150,15,5,2019-06-30,0.25,1,105 +21139175,Yinka's Guest house,152493041,Clover,Brooklyn,East Flatbush,40.66197,-73.92587,Entire home/apt,180,3,14,2019-06-01,0.69,1,175 +21139541,Tidy Cozy Room separate entrance paid parking,120767920,Jimmy &Cindy,Queens,Flushing,40.7557,-73.81237,Private room,43,2,43,2019-05-27,1.99,10,365 +21139788,Sunny room in a spacious Williamsburg apt,17344471,Chris,Brooklyn,Williamsburg,40.71655,-73.94162,Private room,85,1,28,2018-08-28,1.35,2,0 +21139869,East Side Private Bedroom,28027678,Gane,Manhattan,Kips Bay,40.74274,-73.97918,Private room,115,1,160,2019-06-28,7.43,1,15 +21139995,Cozy and Unique Warehouse Apartment,12424361,Christopher,Brooklyn,Crown Heights,40.67834,-73.94899,Entire home/apt,105,3,8,2018-12-29,0.38,1,188 +21140860,Amazing room in spacious 2BR apt in Greenpoint!,24523422,Guanchen,Brooklyn,Greenpoint,40.72109,-73.94679,Private room,70,3,1,2017-10-16,0.05,1,0 +21140951,2BED 2BATH PRIVATE BALCONY / COLUMBUS CIRCLE,131647128,Emily,Manhattan,Upper West Side,40.77576,-73.98883,Entire home/apt,290,30,4,2019-05-24,0.22,25,281 +21141576,"Brand new, comfortable, refined, our first!全新,商务最佳",152530167,Luxi,Queens,Flushing,40.76407,-73.82518,Entire home/apt,148,1,24,2019-06-06,1.15,1,77 +21141704,Private bedroom hideaway in East Village gem,5443000,Erin,Manhattan,East Village,40.73091,-73.98223,Private room,110,2,29,2019-06-16,1.47,2,0 +21142363,Sunny Room in a Brownstone Penthouse,119464278,Gary,Manhattan,Upper West Side,40.78729,-73.97033,Private room,110,30,0,,,1,0 +21147249,Spacious Bedroom in Renovated Apartment- Astoria,75563831,Rayan,Queens,Astoria,40.75811,-73.90954,Private room,43,4,19,2019-07-05,1.64,2,1 +21147708,Full 2 Br a block from Central Park North,152584041,James,Manhattan,Harlem,40.79969,-73.95449,Entire home/apt,170,3,44,2019-03-31,2.23,1,0 +21147943,Jewel On Parkside 3,11546043,Liz And Cesar,Brooklyn,Prospect-Lefferts Gardens,40.65516,-73.96121,Private room,65,28,5,2018-12-16,0.26,3,297 +21148021,Cozy East Harlem Apartment,17767705,Shereen,Manhattan,East Harlem,40.79477,-73.93282,Private room,90,2,3,2018-01-04,0.15,1,0 +21148292,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77057,-73.95759,Entire home/apt,159,30,1,2017-11-12,0.05,87,344 +21148829,"Charming, newly renovated Victorian townhouse apt",57013,Ari And Irin,Queens,Ridgewood,40.7087,-73.90897,Entire home/apt,175,4,2,2018-04-01,0.11,1,0 +21149773,Huge Bedroom with 1/2 Bathroom + Private Entrance,18413613,Sam,Brooklyn,Bushwick,40.69848,-73.93749,Private room,60,1,72,2019-06-29,3.34,1,16 +21149901,Cozy room in the heart of Brooklyn,152605245,Kristina,Brooklyn,Kensington,40.64382,-73.97774,Private room,35,3,1,2017-10-16,0.05,1,0 +21151290,BRIGHT AND NEW! 3beds/2baths-Everything you need!,11571496,Carmela,Brooklyn,Bushwick,40.68824,-73.91628,Entire home/apt,148,2,92,2019-06-23,4.33,2,4 +21151399,Quiet apartment next to subway. 15 min to midtown,35413624,Alexis,Manhattan,Harlem,40.82154,-73.94554,Entire home/apt,110,15,1,2017-10-12,0.05,1,0 +21151898,Garden Apartment on 129th Street,109930093,Chris,Manhattan,East Harlem,40.80893,-73.93982,Private room,115,3,17,2018-06-10,0.83,2,0 +21153619,3 Mins to Subway 30 minuets to WTC Safe Area,35927005,Kathy,Manhattan,Lower East Side,40.71426,-73.98873,Private room,85,2,30,2019-06-08,1.43,10,344 +21154544,Huge beautiful bedroom with double exposure,66260832,Dragana,Manhattan,Harlem,40.8152,-73.95175,Private room,50,15,0,,,1,0 +21155115,SUPER COZY Apartment in Manhattan (1 Bedroom!),152628203,Margarette,Manhattan,Upper West Side,40.79221,-73.97331,Entire home/apt,120,4,7,2018-01-28,0.33,1,0 +21156632,Victorian styled long townhouse in NYC,150363476,Eliasz,Bronx,Parkchester,40.83439,-73.8585,Private room,300,2,9,2018-11-23,0.47,1,0 +21158552,1600 sq ft Luxury Duplex Townhouse-Carroll Gardens,80772013,Lauren,Brooklyn,Carroll Gardens,40.67584,-74.00057,Entire home/apt,200,2,6,2019-01-06,0.32,1,23 +21158775,The Notorious B.N.B. { The Shasha },1177497,Jessica,Brooklyn,Clinton Hill,40.69075,-73.9677,Private room,319,1,52,2019-06-10,2.48,11,365 +21159450,NYC Large clean UES room 1 Block from the Subway!,152702239,Nathan,Manhattan,Upper East Side,40.77669,-73.94822,Private room,100,3,5,2018-03-19,0.24,1,0 +21160332,"1 bedroom apartment Williamsburg, NYC",120935104,Knut,Brooklyn,Williamsburg,40.72017,-73.9575,Entire home/apt,200,120,0,,,1,263 +21160958,Huge private bedroom one block from the train!,2385790,G,Brooklyn,Bedford-Stuyvesant,40.69592,-73.93793,Private room,80,1,5,2017-11-17,0.24,2,0 +21161038,Red Hook Garden Apartment,11310249,Adam,Brooklyn,Red Hook,40.67844,-74.01058,Entire home/apt,120,2,98,2019-06-10,4.64,1,193 +21161561,Spacious charming upper east side apartment,24088306,Ayhan,Manhattan,Upper East Side,40.77112,-73.96226,Entire home/apt,239,7,70,2019-07-01,3.76,1,185 +21161707,Soulful minipenthouse perched over East Village,2171676,Thomas,Manhattan,East Village,40.7277,-73.97841,Private room,71,2,112,2019-07-07,5.22,1,129 +21161871,Entire apartment in Turtle Bay,3778274,AJ And Freddy,Manhattan,Midtown,40.75643,-73.96847,Entire home/apt,120,2,7,2019-01-01,0.36,2,0 +21163303,Cozy Central Park Apartment,50388251,Samuel,Manhattan,Upper West Side,40.80015,-73.96159,Private room,145,2,0,,,1,0 +21163689,"Private room in Clinton hill, Brooklyn NY",146481790,Sneha,Brooklyn,Clinton Hill,40.6926,-73.9639,Private room,95,1,4,2017-12-03,0.19,1,0 +21164579,Yi He hotel,152760575,Bifan,Queens,Flushing,40.76047,-73.83193,Private room,100,2,1,2017-11-18,0.05,1,0 +21165138,"温馨双人房,步行地铁两分钟,",148852095,Kelly,Queens,Douglaston,40.76962,-73.74795,Private room,65,2,21,2019-01-01,0.98,3,89 +21169968,"Quiet, private bedroom close to beaches.",24193553,Renee,Brooklyn,Greenpoint,40.72402,-73.95285,Private room,60,10,0,,,1,89 +21170090,"Clotilde's House. Studio apt in Manhattan, Harlem.",36450406,Franklin,Manhattan,Harlem,40.8235,-73.94619,Entire home/apt,100,2,1,2019-03-25,0.28,1,1 +21171230,Respectful guest for long term is required,82975282,Evyiatar,Queens,Bayswater,40.6004,-73.7667,Private room,47,30,8,2019-06-30,0.38,2,303 +21171726,SWEET Lower East Side Apartment :),6009690,Mike,Manhattan,Lower East Side,40.71509,-73.98992,Entire home/apt,126,3,4,2017-11-13,0.19,1,3 +21172187,Large Private Room In Spacious Guest House,152353924,Dominique,Bronx,Parkchester,40.83555,-73.8757,Private room,25,3,38,2019-07-02,1.82,2,119 +21172762,Spacious room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75684,-73.99465,Private room,114,1,133,2019-07-01,6.23,2,67 +21172924,Midtown East,152852607,Jerry,Manhattan,Midtown,40.7557,-73.96871,Entire home/apt,185,3,35,2019-06-10,1.66,1,0 +21173148,"Sunny apartment, great amenties and transporation.",27231066,Victoria,Manhattan,Harlem,40.81138,-73.95442,Entire home/apt,165,3,22,2019-05-27,1.03,1,0 +21173263,Private Entrance Room in Brooklyn w/ Queen Bed,48510097,Ellen,Brooklyn,Bushwick,40.6897,-73.91512,Private room,60,2,1,2017-10-09,0.05,1,0 +21174008,Beautiful 1 bedroom/ garden Manhattan West Village,15751193,Thomas,Manhattan,West Village,40.73309,-74.00482,Entire home/apt,225,1,74,2019-07-01,3.66,1,3 +21174364,Casa de Fierce,109074907,Dasha,Manhattan,Upper East Side,40.77421,-73.95544,Entire home/apt,150,1,1,2017-10-26,0.05,1,0 +21174445,Nice NYC Apartment 20 minutes' away from Manhattan,42916011,Yang,Queens,Sunnyside,40.74351,-73.92577,Private room,55,7,1,2017-12-14,0.05,2,353 +21174566,"Columbus Circle, Central Park, Time Warner O MY!",42628496,Kenny,Manhattan,Hell's Kitchen,40.76616,-73.98441,Private room,125,1,39,2019-04-14,1.83,1,0 +21174693,"Quiet and Cozy Private Room, 20 min from Downtown",152872412,Zakhar,Brooklyn,Borough Park,40.64103,-73.99228,Private room,59,8,7,2019-05-31,0.33,1,109 +21174772,Sun-filled Boho Bedroom in the Heart of Astoria!,56184689,Emily,Queens,Astoria,40.76705,-73.9169,Private room,95,2,13,2018-07-07,0.61,2,0 +21175036,Beautiful Brooklyn Private Room,152878377,Anthony,Brooklyn,Flatbush,40.64356,-73.96318,Private room,75,3,19,2019-06-30,0.90,1,78 +21175139,"Manhattan, double size sofa bed no deposit",7055854,Diane,Manhattan,Harlem,40.80323,-73.94253,Private room,1500,5,3,2017-10-23,0.14,5,219 +21175160,Sunny park view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81821,-73.94746,Private room,85,30,53,2019-06-23,2.49,4,309 +21175464,"Nostrand Ave & St Johns, Dble room in shared apt.",152882655,Edward,Brooklyn,Crown Heights,40.67249,-73.94933,Private room,75,3,1,2017-10-08,0.05,1,0 +21175493,Trendy Park Slope Apartment,152883368,Amber,Brooklyn,Park Slope,40.6749,-73.97979,Private room,130,1,14,2018-06-02,0.69,1,0 +21175597,Sunny church view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94584,Private room,70,30,29,2019-05-28,1.36,4,292 +21175822,Studio in Upper East Side Manhattan,152885643,Seamus,Manhattan,Upper East Side,40.77585,-73.95101,Entire home/apt,128,4,12,2018-12-26,0.60,1,0 +21175996,Beautiful two bedroom apartment in Manhattan NYC,96235534,Francisco,Manhattan,Washington Heights,40.84334,-73.9405,Entire home/apt,130,2,94,2019-06-23,4.41,1,116 +21176110,Modern One-Bedroom Apartment - Recently Renovated,48812051,Danielle,Manhattan,Harlem,40.81042,-73.94717,Entire home/apt,120,4,5,2018-12-26,0.26,1,0 +21176417,Location Location Location! Comfort & Convenience,122975,Adam,Brooklyn,Fort Greene,40.68569,-73.97346,Private room,69,5,0,,,1,0 +21177066,Small and Cozy room on Upper West Side,24929024,Kaushik,Manhattan,Upper West Side,40.80003,-73.96446,Private room,47,1,0,,,1,0 +21177156,New 1BR Apartment In Prime Lower East Side,1029090,Jonathan,Manhattan,East Village,40.72236,-73.98534,Entire home/apt,181,2,10,2018-08-16,0.47,1,0 +21177608,Feng Shui Private Room In Brooklyn,19177308,Stephany,Brooklyn,Bushwick,40.6897,-73.9064,Private room,48,2,39,2019-06-19,1.83,4,179 +21177976,Quaint Bedroom in the Heart of New York!,52876917,Josh,Manhattan,Harlem,40.81978,-73.95476,Private room,50,2,0,,,1,0 +21178032,"#2,单间双人房,(共用卫生间)",148852095,Kelly,Queens,Flushing,40.75547,-73.83547,Private room,60,2,24,2019-07-02,1.14,3,76 +21178117,"大双人房,共用卫生间,",148852095,Kelly,Queens,Flushing,40.75379,-73.83011,Private room,58,3,20,2019-05-27,0.97,3,88 +21181643,"Midtown Manhattan shared Apartment,Prime Location",152948553,Lexy,Manhattan,Chelsea,40.75133,-73.99671,Private room,99,1,77,2019-06-17,3.64,1,101 +21182937,Cozy Apartment. 15 mins away from LGA & Manhattan,91646104,Pao,Queens,Woodside,40.74371,-73.9109,Entire home/apt,150,3,87,2019-07-01,4.59,3,200 +21183312,Charming Greenpoint Apartment. Clean!!!!,50383289,Scott,Brooklyn,Greenpoint,40.724,-73.95202,Entire home/apt,225,1,18,2018-07-02,0.87,1,0 +21183975,"Nice & new room, washer/dryer, 5 min to train!",43148410,Lo,Brooklyn,East New York,40.66739,-73.88739,Private room,40,1,7,2018-08-28,0.33,3,364 +21184012,"Spacious, light and clean apartment in Brooklyn",16024560,Anna,Brooklyn,Fort Hamilton,40.61902,-74.03514,Entire home/apt,130,2,47,2019-06-19,2.23,1,165 +21184173,Private room in Queens,21250331,Clara,Queens,Bayside,40.75433,-73.7688,Private room,35,1,92,2019-07-07,4.30,3,318 +21184304,"East 74th street, Cozy UES 1bd Serviced Apartment",22541573,Ken,Manhattan,Upper East Side,40.77122,-73.95909,Entire home/apt,169,30,0,,,87,344 +21184343,"Lovely, charming and clean bedroom in Manhattan.",54198006,Bel And Camila,Manhattan,East Harlem,40.79567,-73.9366,Private room,150,1,44,2019-06-21,2.07,2,305 +21185183,Luxury 1BR in NYC + Great Amenities & Rooftop Ter.,30283594,Kara,Manhattan,Chelsea,40.75121,-73.99812,Entire home/apt,169,30,1,2017-11-20,0.05,121,282 +21185448,Comfy Crown Heights room,10714931,Nick,Brooklyn,Crown Heights,40.67335,-73.95391,Private room,37,15,21,2019-06-30,1.44,4,67 +21185633,Luxurious Brand New Apt with Washer Dryer,75029289,Rlg,Manhattan,Upper East Side,40.77606,-73.95422,Entire home/apt,125,30,5,2019-05-31,0.34,5,342 +21185909,Cozy apartment with a huge back yard.,38753504,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67941,-73.9193,Private room,62,2,28,2018-07-29,1.34,1,0 +21186749,"Relax in Brooklyn, morning sun and treelined patio",57576702,Ely,Brooklyn,Clinton Hill,40.6859,-73.96109,Entire home/apt,120,2,17,2019-04-29,0.92,1,8 +21187856,Private Cozy Bedroom In Bed Stuy,3183818,Elijah,Brooklyn,Bedford-Stuyvesant,40.68254,-73.94504,Private room,55,5,6,2018-08-13,0.29,1,0 +21188044,Centrally located private home in flatbush,67869496,Debbie,Brooklyn,Flatlands,40.62187,-73.94414,Entire home/apt,250,1,0,,,1,0 +21188555,Simple cozy room in Bed-Stuy!,153015791,Miki,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93721,Private room,45,3,2,2018-02-08,0.09,1,0 +21189177,"Cozy private room, king size bed, private bathroom",5400205,Lara,Brooklyn,Bedford-Stuyvesant,40.69261,-73.93325,Private room,120,3,22,2019-06-22,1.03,1,357 +21190325,Lg Room Historic Clinton Hill Near Pratt/Barclays,66041795,Stephanie,Brooklyn,Clinton Hill,40.68628,-73.96707,Private room,55,5,2,2018-12-29,0.11,1,0 +21190502,Cozy Small Studio in Manhattan! East Village!,8628273,Rafael,Manhattan,East Village,40.72982,-73.98593,Entire home/apt,140,2,2,2018-11-14,0.11,1,0 +21190746,Large Split Level Room in Greenpoint Loft,6429030,Joshua,Brooklyn,Greenpoint,40.7257,-73.95606,Private room,100,1,2,2018-01-01,0.11,1,0 +21191264,Private bedroom in East Village,81959199,Victoria,Manhattan,Lower East Side,40.72269,-73.98862,Private room,80,3,23,2019-07-02,1.10,1,28 +21191462,Charming and very Sunny Apartment,46208887,Lu&Ben,Brooklyn,Crown Heights,40.67541,-73.96061,Entire home/apt,70,7,2,2018-05-13,0.11,1,0 +21191546,"Monroe Manor - 3 bedroom, 2 full bath duplex",153044885,Joy,Brooklyn,Bedford-Stuyvesant,40.68747,-73.92879,Entire home/apt,189,3,77,2019-07-02,3.66,1,17 +21191862,(ABC) 3 bedrooms-2 bath up to 6 pp,110965771,Wilson,Queens,Flushing,40.77317,-73.82405,Private room,200,2,12,2019-06-09,0.64,7,35 +21192066,"Room with lots of light, washer/dryer, free yoga",43148410,Lo,Brooklyn,East New York,40.66756,-73.88704,Private room,45,1,6,2019-05-13,0.28,3,333 +21192123,Modern large Duplex in Greenwich Village,153052198,Helena,Manhattan,Greenwich Village,40.73366,-73.99805,Entire home/apt,275,120,0,,,1,235 +21192158,Homey studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75001,-73.97573,Entire home/apt,150,30,2,2019-05-30,0.28,50,364 +21192284,Large studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74872,-73.97701,Entire home/apt,150,30,1,2017-12-10,0.05,50,364 +21192354,Violet Dynasty,138006255,Carol,Brooklyn,Canarsie,40.63928,-73.91081,Private room,65,1,2,2018-10-07,0.19,2,365 +21192364,Immaculate studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74877,-73.977,Entire home/apt,150,30,2,2019-05-31,0.21,50,364 +21192430,Mint studio in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74839,-73.97683,Entire home/apt,195,30,0,,,50,364 +21195408,Nice and Cozy bedroom in Bedstuy,153083048,Thomas,Brooklyn,Bedford-Stuyvesant,40.68212,-73.95419,Private room,59,5,5,2018-04-07,0.24,1,0 +21197268,Nice and warm room with a Queen Size Bed!!,22784412,Stephanie,Queens,Glendale,40.70404,-73.85832,Private room,43,1,9,2019-06-26,0.42,2,301 +21198038,Fantastic loft space in Greenpoint,42905152,Charlotte,Brooklyn,Greenpoint,40.72268,-73.94163,Entire home/apt,160,10,0,,,1,42 +21199473,舒适温馨小屋两间,153018041,Feng,Queens,Flushing,40.75602,-73.80241,Private room,95,1,22,2018-11-12,1.12,2,0 +21199546,XLarge & Serene Clinton Hill 2 bdr Loft,55430096,Magali,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95709,Entire home/apt,190,20,2,2018-07-31,0.14,1,310 +21199630,Updated 1 Bedroom Best Location Modern Finishes,61391963,Corporate Housing,Manhattan,Upper East Side,40.7717,-73.96116,Entire home/apt,125,30,5,2018-12-14,0.26,91,347 +21200108,The Henry - A One Bedroom Cobble Hill Apartment,151645438,Parker,Brooklyn,Cobble Hill,40.68553,-73.99804,Entire home/apt,165,2,0,,,1,0 +21200993,Lower East Side Bedroom w. A/C and Cappuccinos!,147536196,Marina,Manhattan,Lower East Side,40.7198,-73.98209,Private room,135,1,50,2019-06-27,2.35,1,32 +21201088,Luxury designer duplex in Bed Stuy,761943,Chris,Brooklyn,Bedford-Stuyvesant,40.68019,-73.91102,Entire home/apt,225,3,12,2019-07-02,0.61,1,72 +21201777,Stunning factory loft in the heart of Williamsburg,153143032,Natali,Brooklyn,Williamsburg,40.71858,-73.96283,Entire home/apt,380,1,128,2019-07-01,5.99,1,173 +21202563,Beautiful luxury condo heart of Brooklyn,32834879,Neel,Brooklyn,Greenpoint,40.7284,-73.94983,Entire home/apt,200,3,0,,,1,0 +21203545,Small Apartment by Central Park/Columbus Circle,40100,Nicole,Manhattan,Upper West Side,40.76946,-73.986,Entire home/apt,129,3,2,2018-07-01,0.10,2,0 +21203987,Beautiful & Spacious Private Brooklyn Loft,9206072,Liron,Brooklyn,Bedford-Stuyvesant,40.69195,-73.96045,Entire home/apt,133,2,101,2019-06-30,4.93,1,87 +21204122,Private Room in Bushwick! Close to Trains/Buses!,4464205,Braden,Brooklyn,Bushwick,40.69472,-73.92376,Private room,44,2,3,2017-10-29,0.14,2,0 +21204708,Quiet East Village Studio next to snug coffee shop,23386210,John,Manhattan,East Village,40.7269,-73.9847,Entire home/apt,142,10,22,2018-12-30,1.04,1,0 +21204890,Perfect Room in West Harlem,61678511,Phillip,Manhattan,Harlem,40.81567,-73.94841,Private room,55,3,100,2019-07-02,4.69,1,11 +21205374,Waterfront Zen Oasis,12160369,Golan,Queens,Astoria,40.76761,-73.93567,Entire home/apt,185,9,6,2019-06-10,0.42,1,15 +21205622,Comfortable room/close to Manhattan,87397826,Monica,Queens,Long Island City,40.75608,-73.93048,Private room,110,4,5,2019-01-04,0.24,2,0 +21205650,Comfy 1 bedroom suite in midtown manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75017,-73.97684,Entire home/apt,175,30,0,,,50,364 +21205810,Elegant 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74817,-73.97665,Entire home/apt,222,30,1,2019-02-17,0.21,50,364 +21205891,Roomy 1 bedroom suite in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74876,-73.97553,Entire home/apt,175,30,5,2019-06-07,0.37,50,344 +21206002,Impressive 1 bedroom near Sloan Kettering,120762452,Stanley,Manhattan,Murray Hill,40.74865,-73.9753,Entire home/apt,175,30,0,,,50,364 +21206343,BK Bungalow - Cozy Williamsburg 1BD (right off L),153189324,Mason,Brooklyn,Williamsburg,40.71433,-73.94026,Entire home/apt,115,2,5,2017-12-26,0.23,2,0 +21206529,Waterfront Wonder,3427065,Ron,Brooklyn,Williamsburg,40.71866,-73.96417,Private room,180,1,1,2017-10-06,0.05,1,0 +21209950,"Clean room in Chinatown, close to all the fun!",11026055,Tessa,Manhattan,Chinatown,40.718,-73.99666,Private room,80,4,2,2017-12-18,0.09,1,0 +21210250,"Large Studio Apartment, 15-20mins from downtown",79753770,Katrina,Manhattan,Washington Heights,40.83638,-73.94294,Entire home/apt,125,30,3,2018-05-31,0.15,2,323 +21211033,Bright Apartment in BedStuy - 20 min from City,12528835,Paula,Brooklyn,Bedford-Stuyvesant,40.68964,-73.95259,Entire home/apt,125,2,11,2019-06-12,0.53,2,0 +21211369,HUGE 2 Floor Penthouse w Private Roof,4457116,Greg,Brooklyn,Crown Heights,40.66541,-73.95736,Entire home/apt,475,1,29,2019-06-27,1.72,1,123 +21212060,420 FRIENDLY BACKYARD PARTY EXPERIENCE ONLY,75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.682,-73.91572,Private room,750,1,4,2018-07-05,0.22,4,89 +21212488,Modern Astoria 1BR w/Private Patio,11951550,Nayef,Queens,Astoria,40.77061,-73.92109,Entire home/apt,86,4,3,2018-01-01,0.15,1,0 +21212612,Private Room in Crown Heights Close to Subway,17412395,Emily,Brooklyn,Crown Heights,40.66788,-73.95111,Private room,75,1,55,2019-06-23,2.70,1,35 +21212937,EAST 60TH STREET STUDIO WITH 2 DOUBLE BEDS,76104209,Rated,Manhattan,Upper East Side,40.76114,-73.961,Entire home/apt,153,30,1,2017-10-30,0.05,33,365 +21213047,The Solstice - A One Bedroom Apartment,153150422,Charles,Manhattan,Chelsea,40.74226,-74.00602,Entire home/apt,165,2,11,2018-06-24,0.53,1,2 +21213095,Raw Vegan B&B,153251827,Maria,Queens,Ridgewood,40.70278,-73.90229,Private room,55,1,37,2019-07-02,2.58,1,75 +21213775,Cozy Contemporary room near JFK (The Blue room),141052003,Nicole,Queens,Jamaica,40.6841,-73.78203,Private room,50,1,7,2019-05-10,0.38,4,155 +21213799,Nice room in Harlem,63417081,Devon,Manhattan,Harlem,40.82332,-73.94426,Private room,45,30,2,2018-12-31,0.10,8,261 +21214101,Perfectly Quiet 1 bedroom get away!,153262506,Lashaya,Queens,Far Rockaway,40.59382,-73.75503,Private room,35,1,1,2017-10-19,0.05,1,0 +21214554,Beautiful Suite W/ Private Bathroom,3603284,Carupano,Queens,Ridgewood,40.71063,-73.9152,Private room,90,7,28,2019-06-08,1.34,1,157 +21215073,Roomy bedroom in Spacious Chelsea Loft!,9522664,Kevin,Manhattan,Chelsea,40.74337,-73.99362,Private room,149,2,19,2019-05-11,0.89,1,274 +21215200,Quiet and private in the heart of Chelsea.,2305978,Emmanuel,Manhattan,Chelsea,40.74325,-73.99975,Entire home/apt,175,2,67,2019-06-24,3.31,2,101 +21216288,Spacious Apartment + Bushwick Backyard,5022142,Yoni,Queens,Ridgewood,40.706,-73.91418,Entire home/apt,90,4,4,2019-05-29,0.26,1,0 +21217074,Harlem Hideaway Garden Apartment,145825873,Dennis,Manhattan,Harlem,40.80475,-73.9491,Entire home/apt,108,30,3,2019-01-19,0.23,4,213 +21217451,Huge Private Room in the Heart of Williamsburg!,14278133,Sharif,Brooklyn,Williamsburg,40.71783,-73.95036,Private room,78,2,31,2019-01-05,1.46,3,0 +21217698,Private room/office in the heart of Manhattan,6958919,Ariella,Manhattan,Morningside Heights,40.81373,-73.96013,Private room,50,1,0,,,1,0 +21218250,Cozy and Modern Brooklyn Loft with amazing view!,953913,Kyle,Brooklyn,Bushwick,40.69952,-73.92616,Entire home/apt,250,6,1,2017-10-18,0.05,1,0 +21218639,Lower East Side room steps from all the action!,10787061,Vincent,Manhattan,Lower East Side,40.72105,-73.9931,Entire home/apt,95,2,5,2017-12-10,0.24,1,0 +21219137,Nice room in LES,22617181,Leonardo,Manhattan,Lower East Side,40.71686,-73.98458,Private room,85,1,1,2018-01-01,0.05,1,0 +21219651,Charming Brooklyn Artist's Room,15277706,Sarah,Brooklyn,Crown Heights,40.67212,-73.95253,Private room,100,1,58,2019-07-06,2.74,1,37 +21219737,Awesome place in sunnyside,48241662,Klever,Queens,Sunnyside,40.73554,-73.91858,Private room,60,60,0,,,1,179 +21220573,Beautiful Clean Studio in Midtown East,85318599,Murphy,Manhattan,Midtown,40.75649,-73.97126,Entire home/apt,160,4,12,2019-06-18,0.59,1,0 +21222809,Bed-stuY GeM !,140862658,Carmen,Brooklyn,Bedford-Stuyvesant,40.68904,-73.9428,Private room,68,1,37,2019-01-20,1.84,1,0 +21223569,My Sunny Island Room,135320687,Ladi,Manhattan,Roosevelt Island,40.76301,-73.94959,Private room,85,3,34,2019-05-29,1.60,2,195 +21224447,Designer Studio /1Br in Williamsburg with Views,108160091,Dasha,Brooklyn,Williamsburg,40.71191,-73.95988,Entire home/apt,198,30,9,2019-05-25,0.44,3,298 +21224844,Williamsburg 1 Bedroom Gem,1565284,Daniel,Brooklyn,Williamsburg,40.70958,-73.96525,Entire home/apt,290,3,6,2018-11-25,0.33,1,0 +21225854,"Bumble of Brooklyn, Large space",153378241,Victoria,Queens,Ridgewood,40.6999,-73.90059,Private room,48,3,2,2018-01-04,0.11,1,0 +21226494,Affordable Space in Washington Heights Manhattan,122642839,Dylan,Manhattan,Washington Heights,40.84301,-73.94175,Shared room,60,1,0,,,1,0 +21226783,THE SEXY SUITE SPOT,9849167,Candy,Brooklyn,Crown Heights,40.67234,-73.914,Private room,75,1,34,2019-06-02,1.62,1,35 +21227009,Beautiful Apartment in the heart of Chelsea,24047286,Sabrina,Manhattan,Chelsea,40.7456,-73.99771,Entire home/apt,250,4,1,2017-10-12,0.05,1,0 +21227069,Beautiful and big 1BR sublet close by Central Park,153388393,Irini,Manhattan,Harlem,40.80305,-73.95766,Private room,50,5,8,2019-05-22,0.39,1,188 +21227092,Light-filled Brooklyn Bedroom and Art Space,15170042,Meaghan,Brooklyn,Crown Heights,40.67261,-73.9578,Private room,90,1,0,,,1,0 +21227721,Super Host in Heart of Time Square/City Central,31929860,Bryan,Manhattan,Hell's Kitchen,40.7613,-73.99155,Private room,155,1,58,2019-06-21,2.72,4,304 +21228962,Enchanted Village Retreat,35902083,Luke A,Manhattan,Greenwich Village,40.73386,-73.99643,Entire home/apt,220,5,7,2018-04-06,0.33,1,0 +21229168,Artsy Bowery Loft,40818755,Hadas,Manhattan,NoHo,40.72535,-73.99341,Entire home/apt,250,2,22,2019-05-28,1.04,1,89 +21230082,ALL new modern apartment of 2 bedroom NYC style!❤️,153419495,Dina,Manhattan,Upper East Side,40.76203,-73.96607,Entire home/apt,378,1,72,2019-07-06,3.65,1,52 +21230106,Bushwick Oasis,525698,Ryan,Brooklyn,Bushwick,40.69237,-73.91907,Entire home/apt,325,3,0,,,1,0 +21230213,Beautiful Room in Bed-Stuy Apartment,125549620,Ashley,Brooklyn,Bedford-Stuyvesant,40.68527,-73.93924,Private room,35,2,1,2017-10-25,0.05,1,0 +21230280,(C) room for 2 - sharing bath,110965771,Wilson,Queens,Flushing,40.77241,-73.82388,Private room,45,2,24,2019-04-28,1.22,7,57 +21230688,Harlem Hideaway Parlor Apartment,145825873,Dennis,Manhattan,Harlem,40.80436,-73.94865,Entire home/apt,96,30,5,2019-04-06,0.53,4,32 +21230883,Private Room in Bushwick Apartment,17330515,Natalie,Brooklyn,Williamsburg,40.70796,-73.92412,Private room,78,2,3,2019-05-30,1.55,1,73 +21231068,Centrally located East Village Apt,18104303,Joseph,Manhattan,East Village,40.7248,-73.9854,Private room,110,4,23,2019-07-02,1.11,1,93 +21231249,Warm and cozy box style apt in Bed- Stuy!,45440805,Asia,Brooklyn,Bedford-Stuyvesant,40.69238,-73.93989,Private room,37,10,1,2017-10-20,0.05,1,0 +21231543,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70428,-73.81353,Private room,135,1,0,,,18,365 +21232999,Cozy room and a private bathroom bklyn :),14898658,Chadanut,Brooklyn,Kensington,40.64388,-73.9813,Private room,45,1,52,2019-06-17,2.47,11,42 +21233255,Private room right in heart of SOHO,9890399,Yi-Hsuan,Manhattan,Lower East Side,40.72229,-73.99308,Private room,60,3,10,2019-01-05,0.47,1,0 +21236661,Beautiful 1BR Home in Heart of South Harlem,1522036,Stephen,Manhattan,East Harlem,40.80101,-73.9439,Entire home/apt,125,4,1,2018-01-02,0.05,1,0 +21236786,MASTER Beautiful comfort room,145255423,Koothar,Queens,Astoria,40.76505,-73.93002,Private room,95,1,0,,,1,177 +21238053,Broadway 1,153497815,Sarah-B,Brooklyn,Bedford-Stuyvesant,40.68742,-73.91957,Entire home/apt,5000,2,8,2017-12-09,0.38,1,0 +21239054,Spacious apartment in historic Cobble Hill,11369083,Parker,Brooklyn,Cobble Hill,40.68611,-73.99877,Entire home/apt,115,2,2,2017-12-16,0.10,1,0 +21239226,Cozy 1 br in the heart of Gramercy,153509107,Vanessa,Manhattan,Gramercy,40.73818,-73.98671,Entire home/apt,250,1,0,,,1,0 +21239497,Luxury Brooklyn 1BR just minutes from Manhattan,4444524,Lina,Brooklyn,Fort Greene,40.69269,-73.97977,Private room,179,2,6,2019-01-03,0.30,1,0 +21239728,2 Bedroom Apt in landmarked Harlem Brownstone,57460773,Tina,Manhattan,Harlem,40.81986,-73.94414,Entire home/apt,99,2,63,2019-06-22,3.71,1,18 +21239864,Near Subway Two Single Beds or One Queen Bed,128895953,Joseph,Brooklyn,Midwood,40.61193,-73.96259,Private room,65,3,3,2019-05-08,0.16,1,364 +21239885,Spacious Oasis - Heart of Harlem - Great Location!,45688062,Chiarra,Manhattan,Harlem,40.81083,-73.95188,Private room,125,4,0,,,1,0 +21240760,"Bright, private room in the HEART of Williamburg",7714461,Charles,Brooklyn,Williamsburg,40.71321,-73.95073,Private room,75,25,3,2019-05-26,0.16,2,161 +21240926,Cozy studio in Upper East Side,11005274,Vanessa,Manhattan,Upper East Side,40.77179,-73.95585,Entire home/apt,125,5,48,2019-07-03,2.30,1,2 +21241079,West Village Apartment,57169534,Nals,Manhattan,West Village,40.73261,-74.00713,Entire home/apt,295,2,7,2018-09-28,0.33,1,365 +21241316,East Village large 2 bedroom apartment,19001556,Monica,Manhattan,East Village,40.72374,-73.97989,Entire home/apt,200,2,3,2018-05-15,0.16,2,0 +21241829,Spacious 1BD in Greenwich Village/Union Square,78414842,Alexander,Manhattan,Greenwich Village,40.73393,-73.99306,Private room,200,3,9,2019-01-01,0.43,1,0 +21243315,*New* Big Modern Sunny Space in Bushwick,4476859,Lana,Brooklyn,Bushwick,40.70033,-73.92635,Private room,60,2,1,2017-11-09,0.05,1,0 +21243952,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70288,-73.81531,Private room,135,1,1,2018-01-02,0.05,18,365 +21244035,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70319,-73.8141,Private room,135,1,2,2018-06-10,0.09,18,365 +21244390,Cozy room near Times Square,33975562,Stephanie,Manhattan,Hell's Kitchen,40.75703,-73.99371,Private room,100,1,130,2019-06-23,6.25,2,45 +21244514,Luxurious Apt3 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Gowanus,40.67543,-73.98455,Entire home/apt,250,4,70,2019-07-07,3.51,3,174 +21245112,CHIC and COZY- 1st stop out of Manhattan!,8896831,Jessica,Queens,Long Island City,40.74923,-73.95031,Private room,125,2,21,2019-06-07,1.49,1,128 +21247455,Entire 1st Floor with Private Rooftop in Brooklyn!,17627575,Marc,Brooklyn,Bedford-Stuyvesant,40.68639,-73.9202,Private room,38,2,15,2018-12-11,0.73,1,0 +21247657,Brooklyn-NEW 2-Bdrm Apt in Clinton Hill,51846382,Greg,Brooklyn,Clinton Hill,40.69427,-73.96848,Entire home/apt,220,2,57,2019-06-17,3.80,1,77 +21248835,Comfy Cozy NYC Home for the Winter,48660417,Rebekah,Manhattan,Upper East Side,40.77832,-73.95017,Private room,100,30,6,2018-02-24,0.33,1,0 +21249456,Sunny 2 Bedroom Park Slope Sanctuary,10653881,Max And Heather,Brooklyn,Park Slope,40.67059,-73.98621,Entire home/apt,150,2,2,2017-11-20,0.10,2,0 +21249676,Cozy sunny Brooklyn private room SUPERHOST,64609445,Ina,Brooklyn,Clinton Hill,40.69466,-73.96703,Private room,58,1,48,2018-07-31,2.27,2,0 +21249716,MidtownWest Home close to Times Square & Broadway,4144536,Guillermo,Manhattan,Hell's Kitchen,40.76234,-73.99036,Private room,160,2,30,2019-07-02,1.55,1,162 +21249869,BEAUTIFUL HIP 2BR NEAR SUBWAYS 25min to Manhattan,139490165,Melvin & Maya,Brooklyn,Bushwick,40.6832,-73.90639,Entire home/apt,130,2,7,2018-07-29,0.39,3,0 +21250629,Spacious 1 bed railroad apartment!!,153635280,Lucy,Manhattan,Upper East Side,40.77398,-73.9498,Entire home/apt,200,4,1,2017-11-11,0.05,1,0 +21250819,BEST BRONX ROOM!!!,27187487,Summer,Bronx,Belmont,40.85632,-73.88631,Private room,35,3,7,2019-05-19,0.38,2,357 +21251256,2B Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.8068,-73.93932,Private room,45,1,84,2019-06-11,3.97,10,347 +21251623,Spacious & Fun 4BR in Amazing Brownstone in Bklyn,60687546,Dan,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95128,Entire home/apt,235,2,76,2019-06-19,3.64,2,121 +21252149,Beautiful Room ♡ of the Upper West Side,153650351,Lizzy,Manhattan,Upper West Side,40.78138,-73.98139,Private room,150,1,138,2019-06-19,6.51,1,197 +21253000,Cozy 2-people room at Coliving in Bushwick!,10994664,Alexander,Brooklyn,Bushwick,40.69241,-73.90545,Shared room,35,30,0,,,8,312 +21253486,Bedroom in Bushwick loft near J train,153662409,Greg,Brooklyn,Bushwick,40.68863,-73.91887,Private room,40,2,23,2019-06-28,1.25,1,8 +21253502,2 REAL Bed & Bath in Times Square/ Hell’s Kitchen,31929860,Bryan,Manhattan,Hell's Kitchen,40.76183,-73.99181,Entire home/apt,525,1,21,2019-06-13,1.13,4,292 +21253506,Cozy studio with great connection to Manhattan!,153664491,Mirko,Queens,Elmhurst,40.73698,-73.88064,Entire home/apt,85,2,1,2017-10-15,0.05,1,0 +21253783,Home - away from home [Columbus Crcle/Central Prk],19541889,Eric,Manhattan,Upper West Side,40.76858,-73.9847,Entire home/apt,253,3,1,2017-12-28,0.05,1,0 +21253972,UES apartment in a great location,41306788,Tim,Manhattan,Upper East Side,40.763,-73.96044,Entire home/apt,275,3,1,2017-10-13,0.05,1,0 +21254023,Chelsea Newly Renovated Private Bedroom,22004774,Taylor,Manhattan,Chelsea,40.74772,-74.002,Private room,110,2,2,2017-12-05,0.10,1,0 +21254336,Cheerful Brooklyn Flat,8150446,Tina,Brooklyn,Prospect-Lefferts Gardens,40.65711,-73.95747,Entire home/apt,73,31,1,2018-04-01,0.06,1,32 +21254718,Bright Comfy Apartment Steps to Columbia & Barnard,56197328,Paul,Manhattan,Morningside Heights,40.80647,-73.96576,Entire home/apt,573,3,1,2018-10-18,0.11,2,0 +21254856,Lily Pad,143168243,Nicole,Queens,Ditmars Steinway,40.77823,-73.91247,Private room,80,1,0,,,1,0 +21256268,"Cozy, Elegant & Spacious Studio in Upper East Side",1819910,Andrew,Manhattan,Upper East Side,40.77398,-73.95109,Entire home/apt,170,2,51,2019-06-24,2.44,1,33 +21257726,"Your home away from home, with a glass of wine!",2082420,Damien,Queens,Ridgewood,40.70626,-73.90931,Entire home/apt,135,5,36,2019-07-02,1.78,1,325 +21259596,"3 Beds, 2 Baths serviced apartment Tesoro-Gramercy",153735730,Sudha,Manhattan,Gramercy,40.73765,-73.98454,Entire home/apt,1100,30,34,2019-06-30,1.94,2,333 +21259803,Nice apartment in Manhattan. 5,123320165,Murah,Manhattan,East Harlem,40.7895,-73.9441,Entire home/apt,120,5,20,2019-06-23,1.04,1,341 +21259931,Brooklyn Style Williamsburg 2 BR Apartment,1189195,David,Brooklyn,Williamsburg,40.71153,-73.96088,Entire home/apt,195,3,4,2018-09-24,0.22,1,0 +21260624,"NEW ROMANTIC SEPARATE APARTMENT , Free parking .",153180105,Lana,Staten Island,Lighthouse Hill,40.57641,-74.12931,Entire home/apt,115,2,29,2019-01-03,1.41,1,71 +21261549,"Private room in Bed-Stuy, Brooklyn",45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68642,-73.95608,Private room,70,2,10,2018-02-24,0.48,2,0 +21263008,4 Beds 4 Baths serviced apartment Palazzo Gramercy,153735730,Sudha,Manhattan,Gramercy,40.7368,-73.98307,Entire home/apt,766,30,13,2019-06-15,0.66,2,352 +21263120,Luxury studio,44295724,Darien,Manhattan,Harlem,40.81875,-73.94467,Entire home/apt,200,3,25,2019-06-18,1.80,1,0 +21263179,"Full apartment in heart of Red Hook, Brooklyn",20408271,Francois,Brooklyn,Red Hook,40.67503,-74.01505,Entire home/apt,150,1,2,2018-01-22,0.11,2,0 +21263728,Urban chic private guest suite in the heart of NY,16977462,Candice,Manhattan,Upper West Side,40.78642,-73.97652,Private room,125,5,38,2019-07-01,1.80,1,54 +21264068,Bright green 2nd fl 2BR on ridgewood/bushwick cusp,7784696,Elizabeth,Queens,Ridgewood,40.70555,-73.91333,Entire home/apt,75,3,9,2018-09-24,0.45,1,0 +21264131,Beautiful Super Cozy Studio,67226812,RaShaan,Brooklyn,Bedford-Stuyvesant,40.68744,-73.94905,Entire home/apt,95,1,89,2019-07-08,4.43,1,0 +21264686,"Stunning Room, Perfect Location, Premium Bed ❤",14552154,Leslie,Manhattan,Midtown,40.74624,-73.98648,Private room,140,2,76,2019-06-19,3.73,4,148 +21264903,Harlem Hideaway Studio Apartment,145825873,Dennis,Manhattan,Harlem,40.80604,-73.94971,Entire home/apt,83,30,6,2019-03-31,0.46,4,86 +21265189,Private Quiet Room in the BEST Location!! ❤,14552154,Leslie,Manhattan,Midtown,40.74465,-73.98535,Private room,135,2,84,2019-06-24,4.03,4,103 +21265363,"2 Bedrooms For Groups, GREAT LOCATION",14552154,Leslie,Manhattan,Midtown,40.74517,-73.98484,Private room,231,2,12,2019-06-15,0.65,4,165 +21265628,Fabulous Room in East Willamsburg!,20583151,Deona,Brooklyn,Bushwick,40.69779,-73.92282,Private room,95,1,1,2019-05-19,0.59,1,89 +21266334,"Quirky, cozy, and fun in Bushwick!",11571496,Carmela,Brooklyn,Bushwick,40.68701,-73.91437,Entire home/apt,84,2,115,2019-06-23,5.92,2,6 +21266533,Large Studio/7 Guests,8857758,Cleonides,Queens,Maspeth,40.73007,-73.89766,Entire home/apt,89,3,27,2019-06-29,1.28,2,143 +21266730,Snug & Private Bedroom only 30-35 min to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67954,-73.90788,Private room,55,1,40,2019-06-19,2.15,3,146 +21266810,Cozy One Bedroom in Upper East Side proper,19985344,Thelma,Manhattan,Upper East Side,40.76955,-73.95694,Entire home/apt,155,2,22,2019-06-02,1.04,1,7 +21266924,Welcome! A spacious room close to subway station,153826581,Anne-Laure And Enrique,Bronx,Morris Heights,40.8459,-73.91558,Private room,77,2,36,2019-06-21,1.81,1,5 +21267975,Big room @ independent Eco-friendly aprtmnt.,1272997,Ariadna,Brooklyn,Greenpoint,40.72868,-73.95248,Private room,52,2,68,2019-06-03,3.25,1,9 +21268535,Bright Uptown 1 Bed Apt next to 168th Subway A/1,31120110,Maritza,Manhattan,Washington Heights,40.84195,-73.9359,Entire home/apt,95,5,3,2017-12-22,0.15,1,0 +21269377,"Union Square - Lux Building, 1 Bed, Living, Study",5664549,Amar,Manhattan,Greenwich Village,40.73295,-73.992,Entire home/apt,250,4,4,2019-06-23,0.30,1,43 +21271180,Bed in loft apartment east Williamsburg/bushwick,133146682,Kate,Brooklyn,Williamsburg,40.70614,-73.92756,Shared room,45,1,2,2017-11-20,0.09,1,0 +21272115,Visit the Big Apple! Mini-MOMA. Enjoy all of NYC!,68557372,Shannon,Manhattan,Harlem,40.80674,-73.95337,Private room,75,1,60,2019-06-27,3.25,2,182 +21272452,Spacious Bushwick 1 bedroom w/ private backyard,51200621,John,Brooklyn,Bushwick,40.69523,-73.9191,Entire home/apt,100,3,3,2017-12-03,0.14,1,0 +21273425,Brand New Cozy Woodside Studio- Close to NYC,153886003,Andy,Queens,Maspeth,40.73698,-73.90256,Entire home/apt,100,1,94,2019-07-05,4.73,1,154 +21274308,Spacious/very clean/professional service/ PK SLOPE,148787736,Fred,Brooklyn,Gowanus,40.66977,-73.99021,Entire home/apt,130,1,10,2019-06-02,0.52,2,46 +21274330,Upper East Side 3 bed/3 bath Skyline view!,19424541,Barbara,Manhattan,Upper East Side,40.76709,-73.96422,Entire home/apt,840,4,2,2019-04-23,0.31,2,24 +21274914,Gorgeous private bedroom in the 2 bd apt,46343506,Lena,Manhattan,Financial District,40.70571,-74.01031,Private room,250,3,1,2018-08-04,0.09,1,365 +21275075,Nolita/Soho Duplex Apartment with Rooftop,25265179,Veronica,Manhattan,Nolita,40.72244,-73.99461,Entire home/apt,250,1,9,2019-05-27,0.75,1,0 +21275645,Chambers Street Luxury One Bedroom,33294012,Charles,Manhattan,Battery Park City,40.71646,-74.01379,Entire home/apt,300,2,1,2018-01-01,0.05,1,0 +21275837,GRAND CENTRAL MIDTOWN CLEAN ONE-BEDROOM APARTMENT,4976240,Kennedy,Manhattan,Murray Hill,40.75031,-73.97776,Entire home/apt,100,7,26,2019-06-26,1.57,1,2 +21276361,Clean&bright 1 bedroom apt in the middle of Soho!,752478,Celine,Manhattan,SoHo,40.72655,-74.00466,Entire home/apt,200,2,0,,,1,0 +21277145,Sunny full floor apartment in Sunset Park,153921305,Andrew & Mary,Brooklyn,Sunset Park,40.64699,-74.01404,Entire home/apt,120,2,54,2019-06-23,2.59,1,90 +21277719,Cozy Apt near JFK,153927396,Saiful,Queens,Bellerose,40.73138,-73.72435,Private room,55,1,28,2019-06-29,1.32,1,359 +21278102,Harlem Hideaway Guest Room,145825873,Dennis,Manhattan,Harlem,40.80421,-73.9502,Private room,160,3,10,2019-06-02,0.52,4,236 +21279140,Sunny Room by Prospect Park,127450357,Rhyan,Brooklyn,Crown Heights,40.67683,-73.95836,Private room,85,1,16,2018-12-17,0.77,1,0 +21279172,Lovely railroad apartment,108605013,Magali,Brooklyn,Greenpoint,40.72754,-73.94396,Entire home/apt,100,20,2,2018-01-03,0.10,1,24 +21280201,The Executive Spacious Cozy Home on the Block.,152622375,Esther,Brooklyn,East New York,40.66529,-73.88326,Entire home/apt,85,2,3,2018-10-16,0.15,2,151 +21280280,Prince single room,14103991,Ruth,Queens,Flushing,40.75602,-73.818,Private room,40,2,29,2019-06-20,1.40,4,314 +21281051,Super clean & new 1 bedroom apartment,38664335,Jacob,Brooklyn,East Flatbush,40.63682,-73.94947,Entire home/apt,150,1,6,2019-06-25,3.75,1,44 +21281237,Manhattan Luxury 1-BDRM w/ Terrace; 24hr Doorman,56537951,Roxanne,Manhattan,Harlem,40.81197,-73.93891,Entire home/apt,230,2,2,2017-12-11,0.10,1,0 +21281339,Spacious Private Room in two bedroom apartment,128372045,Syed,Brooklyn,Flatbush,40.63258,-73.95924,Private room,40,2,9,2018-10-26,0.43,1,71 +21281525,Cozy Studio in the Heart of Greenwich Village,970375,Joe,Manhattan,Greenwich Village,40.73213,-73.99957,Entire home/apt,130,3,43,2019-07-01,2.06,1,7 +21281604,Huge elegant room 35 min to Time Square,47735494,Iris,Queens,Rego Park,40.72807,-73.86872,Private room,50,1,15,2018-04-22,0.71,4,0 +21281641,Entire Apartment in Historic Brownstone + Garden,1662707,Hannah,Brooklyn,Prospect Heights,40.679,-73.97096,Entire home/apt,75,14,1,2017-10-29,0.05,1,0 +21282152,Pop House 4min walk to L train 12mins to Manhattan,25414207,Brooklyn P,Queens,Ridgewood,40.70031,-73.90828,Private room,43,1,76,2019-06-29,3.63,2,119 +21282732,Serenity Falls in lovely Astoria 15min to the city,16727881,Jeannie,Queens,Ditmars Steinway,40.7745,-73.90406,Private room,40,2,1,2018-11-01,0.12,1,363 +21283357,Brand New Fully Remodeled Modern House,153988027,Zain,Queens,Woodside,40.74267,-73.8996,Entire home/apt,255,4,42,2019-06-20,3.09,1,285 +21283507,Quiet solo traveler room with a backyard view,15310048,Darya,Brooklyn,East Flatbush,40.65261,-73.94486,Private room,38,60,9,2018-08-31,0.45,2,199 +21287982,PERFECT LOCATION! EAST VILLAGE Private Room,117385673,Danielle,Manhattan,East Village,40.7303,-73.98341,Private room,105,3,1,2017-10-23,0.05,2,0 +21288588,Spacious Brownstone Apt with Private Backyard,8345378,Kenzi,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93742,Private room,130,2,20,2019-01-04,1.08,1,64 +21288895,The Loft,23722110,Amri,Brooklyn,Williamsburg,40.71386,-73.9634,Entire home/apt,350,7,29,2019-06-15,1.45,1,284 +21289522,Cozy and Quiet.,154037433,Roland,Queens,Jamaica,40.67048,-73.77259,Private room,35,1,65,2019-06-21,3.20,3,52 +21289615,Amazing room in Prime East Village!,33036193,Clara,Manhattan,East Village,40.72615,-73.98303,Private room,120,10,31,2019-05-05,1.68,2,17 +21289640,Cozy nook(double room/shared bath),154037433,Roland,Queens,Jamaica,40.66934,-73.77269,Private room,68,1,14,2019-04-26,1.23,3,13 +21289758,"Large, Open, Airy Room, Close to Subway Harlem NYC",5791944,Paige,Manhattan,Harlem,40.82096,-73.9531,Private room,55,2,1,2017-10-17,0.05,1,0 +21289989,Comfortably Simple,29236921,Alain,Brooklyn,Bushwick,40.7005,-73.93827,Private room,49,2,16,2019-04-16,0.76,1,0 +21291569,Coliving in Brooklyn! Modern design / Shared room,101970559,Sergii,Brooklyn,Bushwick,40.69211,-73.9067,Shared room,0,30,2,2019-06-22,0.11,6,333 +21291783,Café DuChill — now supporting ASPCA,50455642,Jack,Brooklyn,Williamsburg,40.71528,-73.95365,Private room,55,2,135,2019-06-30,6.62,1,30 +21292130,☆Stylish Family + Group Friendly 3BR w/ Roof Patio,21210879,Imani,Brooklyn,Crown Heights,40.67433,-73.92824,Entire home/apt,298,3,24,2019-06-15,1.17,1,265 +21292185,"Great shared room / Best price, high quality!",17706542,Sergey,Brooklyn,Bushwick,40.69731,-73.90824,Shared room,29,30,2,2018-12-19,0.10,6,324 +21292529,Spacious Faerie Room in Bushwick,123354518,Elena,Brooklyn,Bushwick,40.70177,-73.92313,Private room,50,2,0,,,2,0 +21292741,Queens Artist' Corner,30706232,Sarita,Queens,Astoria,40.76898,-73.91607,Private room,40,1,2,2017-10-30,0.09,1,0 +21293326,Huge Designer Room | Lower East Side /East Village,10994839,Michael,Manhattan,Lower East Side,40.71994,-73.98184,Private room,150,2,32,2019-05-26,1.58,1,76 +21294449,Private 3 Bedroom New Modern Clean Apt-Mins to NYC,154088360,Kelly,Queens,Long Island City,40.75323,-73.94025,Entire home/apt,298,4,72,2019-07-02,3.44,2,187 +21295182,Spacious One Bed Apartment by Columbus Circle,91299100,Christopher,Manhattan,Upper West Side,40.76913,-73.986,Entire home/apt,175,4,0,,,2,0 +21295218,Cozy Modular Loft with Office and Shelving!,154095549,Wa,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94153,Private room,60,7,0,,,2,49 +21295334,Cozy Apartment for Cat Lovers! (Kids friendly),25178532,Ele,Manhattan,Upper West Side,40.77829,-73.97984,Entire home/apt,250,7,1,2018-03-22,0.06,1,0 +21295834,Pre-war apartment,122920689,Peter,Brooklyn,East Flatbush,40.653,-73.95079,Private room,43,4,1,2018-02-21,0.06,1,312 +21295942,"Modern, Bright, 2 BR/2 Bath, Clinton Hill, Bklyn",137389534,Abby,Brooklyn,Bedford-Stuyvesant,40.68583,-73.9587,Entire home/apt,265,4,16,2019-06-27,0.77,1,144 +21295951,Welcome to Brooklyn! (Private bedroom & bathroom),76021267,Jenn,Brooklyn,Crown Heights,40.66508,-73.95097,Private room,60,7,10,2019-05-31,0.48,1,126 +21296227,Ideal stay in Williamsburg w/ rooftop and fitness,38681422,Lucas,Brooklyn,Williamsburg,40.71422,-73.96046,Entire home/apt,400,1,2,2017-12-03,0.10,1,0 +21296249,Nice Clean Cousy Studio.,154106207,Paulo,Queens,Astoria,40.76031,-73.91583,Private room,180,6,0,,,1,83 +21296439,Spacious 2 Br Apt in prime Fort Greene Brownstone,48626585,Alicia,Brooklyn,Fort Greene,40.68779,-73.97174,Entire home/apt,235,5,5,2019-01-01,0.25,1,0 +21297416,Beautiful Private Room 15 min from JFK Airport,49614264,KaLema,Brooklyn,East New York,40.66071,-73.88858,Private room,52,2,3,2018-03-18,0.15,1,89 +21297711,Gorgeous Studio Steps to Central Park West! #10256,15357689,Rissala,Manhattan,Upper West Side,40.77816,-73.97735,Entire home/apt,250,3,4,2018-01-03,0.21,1,3 +21297804,Entire Long Island City Studio mins to Manhattan,3023513,Levi,Queens,Long Island City,40.75097,-73.94119,Entire home/apt,130,3,2,2017-11-29,0.10,1,0 +21298222,Cozy private studio TimesSquare Perfect Location,110081618,Harry,Manhattan,Hell's Kitchen,40.7617,-73.98931,Private room,150,1,146,2019-07-06,7.19,2,60 +21298453,A) Cozy Private Suite WiFi Laundry JFK Airport,154128335,Joseph,Queens,Jamaica,40.69933,-73.81436,Private room,50,2,49,2019-07-02,2.37,4,108 +21298471,Britney & Daphne's Tranquility Suite,60758194,Britney,Brooklyn,Canarsie,40.64185,-73.91509,Entire home/apt,160,2,1,2018-12-11,0.14,1,191 +21298561,4 Bdrm Loft in East Williamsburg with Projector!,130667097,Paul,Brooklyn,Williamsburg,40.70529,-73.9331,Entire home/apt,300,1,1,2019-03-17,0.26,2,347 +21299488,Home away from home NYC,44439712,Sarah,Manhattan,East Harlem,40.79242,-73.94178,Private room,70,4,23,2019-07-03,1.20,1,80 +21304320,Best Coliving space ever! Shared room.,101970559,Sergii,Brooklyn,Bushwick,40.69166,-73.90928,Shared room,0,30,5,2019-05-24,0.26,6,139 +21304935,Spacious basement apartment,154184894,Mike,Queens,Cambria Heights,40.6939,-73.73104,Private room,130,2,0,,,2,0 +21305125,Cozy Basement lounge Apt inCambria Heights,154184894,Mike,Queens,Cambria Heights,40.69358,-73.73,Private room,120,2,0,,,2,0 +21305248,Newly Renovated 1 Bedroom Apartment Hell's Kitchen,1710317,Elgin,Manhattan,Hell's Kitchen,40.76197,-73.98961,Entire home/apt,200,1,107,2019-07-05,5.17,1,200 +21305393,"Private, Sunny Room—Prime Williamsburg Condo/Loft",510745,Justin,Brooklyn,Williamsburg,40.7137,-73.94813,Private room,80,2,1,2017-10-20,0.05,2,0 +21306332,West 15th Street Cozy Chelsea Studio Serviced Apt,22541573,Ken,Manhattan,Chelsea,40.74071,-73.99977,Entire home/apt,170,30,0,,,87,307 +21306375,"Modern Home, Amazing Location Sunshine room",148237535,Jermaine,Brooklyn,Canarsie,40.64162,-73.90915,Private room,80,3,1,2018-01-02,0.05,4,364 +21306457,Great space,100354001,Alonzo,Queens,Rosedale,40.6598,-73.73316,Entire home/apt,65,1,76,2019-06-27,3.64,1,65 +21307055,Beautiful Room in Prospect Heights,145543998,Yosef,Brooklyn,Crown Heights,40.67587,-73.96194,Private room,60,10,2,2017-12-01,0.10,1,0 +21307403,The Apartment @ 1393,154206608,Adrien,Brooklyn,East Flatbush,40.63881,-73.93476,Entire home/apt,400,1,50,2019-06-19,2.77,1,329 +21307577,"Unique, Comfortable Apt in Heart of East Village",12404709,Clinton,Manhattan,East Village,40.72853,-73.98472,Private room,100,2,55,2019-07-06,3.06,2,25 +21308528,East Village/Lower East Side Artsy Flat,51547093,Kai Chieh,Manhattan,Lower East Side,40.72026,-73.98468,Shared room,68,1,5,2018-03-09,0.24,2,0 +21308590,Newly Renovated Studio Apt,146933726,Isaac,Brooklyn,Crown Heights,40.6654,-73.94864,Entire home/apt,120,1,49,2019-06-24,2.40,1,276 +21308702,NYミッドタウン高級コンドのリビングルームに宿泊,154217970,Mk,Manhattan,Theater District,40.76174,-73.98306,Private room,80,3,88,2019-07-07,5.42,1,137 +21308792,Large NYC APT on the East River for 1 or 2 people,33776141,Lara,Manhattan,Kips Bay,40.73905,-73.97353,Private room,100,2,1,2018-01-02,0.05,1,0 +21309053,"Modern Home, Amazing Location Rose room 1",148237535,Jermaine,Brooklyn,Canarsie,40.64126,-73.90953,Private room,80,3,1,2018-01-02,0.05,4,364 +21309659,Sunny Queen Size 1 Bedroom in Bedstuy.,154201505,Marcia,Brooklyn,Bedford-Stuyvesant,40.68368,-73.93796,Entire home/apt,92,30,21,2018-06-27,1.01,2,35 +21310073,Ruby Red Sanctuary,154201505,Marcia,Brooklyn,Bedford-Stuyvesant,40.68294,-73.93979,Entire home/apt,95,30,0,,,2,87 +21311003,Vickie's Home Away from Home,154232402,Vickie,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94021,Entire home/apt,185,3,19,2019-07-02,1.03,1,363 +21311240,Amazing Location! Apartment in South Williamsburg,154239561,Ismael,Brooklyn,Williamsburg,40.71198,-73.95787,Entire home/apt,200,2,45,2019-06-30,2.16,2,268 +21311288,Central Park Smart Home,5644804,Ben,Manhattan,Upper West Side,40.77869,-73.97658,Entire home/apt,300,2,31,2019-06-14,1.57,1,99 +21311520,"Amazing ,Steps From Time Square,Perfect Location.",52950465,Gal,Manhattan,Hell's Kitchen,40.76168,-73.99061,Entire home/apt,99,30,12,2018-02-27,0.57,12,251 +21311781,A private room close to the subway,154220885,Benny,Queens,Ridgewood,40.70706,-73.90006,Private room,50,1,90,2019-07-01,4.31,2,178 +21311903,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70258,-73.8151,Private room,135,1,0,,,18,365 +21311946,"Amazing, Steps From Time Square,clean, Comfrtable",52950465,Gal,Manhattan,Hell's Kitchen,40.76037,-73.99085,Entire home/apt,115,30,2,2017-12-05,0.10,12,341 +21312075,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70333,-73.8138,Private room,135,1,0,,,18,365 +21312191,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70259,-73.81415,Private room,135,1,0,,,18,365 +21312225,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70262,-73.81526,Private room,135,1,1,2017-12-10,0.05,18,365 +21312283,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.7045,-73.81447,Private room,135,1,0,,,18,355 +21312330,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70458,-73.81418,Private room,135,1,0,,,18,355 +21312403,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70423,-73.8144,Private room,165,1,0,,,18,362 +21312440,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70269,-73.81585,Private room,165,1,0,,,18,360 +21312495,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70426,-73.81509,Private room,165,1,0,,,18,362 +21312549,Hillside Hotel,134184451,Hillside Hotel,Queens,Jamaica,40.70262,-73.81579,Private room,165,1,0,,,18,355 +21312595,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70475,-73.81572,Private room,165,1,2,2018-01-01,0.09,18,355 +21312687,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70471,-73.81542,Private room,135,1,3,2018-01-01,0.15,18,319 +21312732,Hillside Hotel,134184451,Hillside Hotel,Queens,Briarwood,40.70455,-73.81528,Private room,135,1,0,,,18,309 +21312749,"Private, Sunny, Conveniently Located Room",130768576,Virginia,Queens,Ditmars Steinway,40.77803,-73.91084,Private room,50,1,77,2019-06-23,3.66,1,145 +21313022,Brooklyn Home On The Beach,15356710,Maxim,Brooklyn,Brighton Beach,40.57536,-73.96523,Private room,40,31,1,2019-03-02,0.23,1,342 +21313240,Originally Maxs Kansas City Historic UnionSqr Loft,115497723,Gregory,Manhattan,Gramercy,40.73591,-73.98744,Entire home/apt,540,2,53,2019-07-07,4.43,1,215 +21313582,Cozy bedroom in Artist's Apartment-Atelier,1566510,Nastya,Manhattan,Lower East Side,40.71818,-73.98922,Private room,85,1,77,2019-06-27,3.68,2,0 +21313640,Spacious Apartment in Historic Brooklyn Brownstone,10500831,Kendra,Brooklyn,Bedford-Stuyvesant,40.68527,-73.95014,Entire home/apt,130,4,42,2019-07-07,2.01,1,91 +21313668,A Beautiful Studio in Upper West Side,30426158,Bryan,Manhattan,Upper West Side,40.78456,-73.97933,Entire home/apt,150,4,2,2017-12-09,0.10,2,0 +21313950,Private room in East Village,18381155,Atanas,Manhattan,East Village,40.72308,-73.98112,Private room,90,4,3,2018-07-27,0.17,1,0 +21313960,EPIC HOME. PRIVATE EVERYTHING. (East Village),154266431,Steven,Manhattan,East Village,40.72535,-73.98244,Private room,121,3,51,2018-09-30,2.42,3,0 +21314250,5 STAR COZY ROOM,154238443,Mrs,Bronx,Belmont,40.85579,-73.88512,Private room,29,3,9,2019-06-12,0.43,2,322 +21314338,Shared Apartment One stop from Manhattan in LIC.,55724558,Taylor,Queens,Long Island City,40.76044,-73.94087,Shared room,40,4,22,2019-01-25,1.04,5,90 +21317156,1 BR close to Times Square - WOMEN ONLY,84766486,Willi,Manhattan,Hell's Kitchen,40.76068,-73.99143,Private room,79,5,0,,,1,0 +21318405,"Astoria apt, easy access to Manhattan, East River!",2108760,Lorenzo,Queens,Long Island City,40.76661,-73.93502,Entire home/apt,115,1,21,2018-07-08,1.00,1,0 +21321273,Huge renovated 1 BR Apt in heart of East Village,126346950,Katherine,Manhattan,East Village,40.72508,-73.98335,Entire home/apt,250,1,1,2017-10-15,0.05,1,0 +21321503,Beautiful 4BDR Historic Home Bronx NYC,154330006,Anthony,Bronx,Kingsbridge,40.87666,-73.90034,Entire home/apt,149,3,37,2019-06-16,1.90,1,146 +21322272,Comfy room steps away from Williamsburg nightlife,154339771,Chris,Brooklyn,Williamsburg,40.71258,-73.95742,Private room,50,2,10,2018-01-28,0.50,1,0 +21322522,Artsy 1bdrm with Piano in the heart of Brooklyn!,1892493,Whitney,Brooklyn,Crown Heights,40.66952,-73.92345,Entire home/apt,85,1,1,2018-06-04,0.08,2,99 +21322742,Best Private Room/BTH In The Heart of Manhattan,13839404,Lolo,Manhattan,Midtown,40.75582,-73.97175,Private room,180,2,0,,,1,0 +21323255,Sunny 1 bedroom in Brooklyn right next to park !,145967,Thomas,Brooklyn,Flatbush,40.65258,-73.96243,Entire home/apt,100,3,1,2018-01-04,0.05,1,0 +21324360,Cobble Hill Brooklyn....SUPER PRIME 1BR - full apt,154362702,Chris,Brooklyn,Cobble Hill,40.68661,-73.99097,Entire home/apt,200,3,32,2019-07-01,1.52,1,36 +21324522,Brownstone Duplex with Private Outdoor Patio!,12337318,Andrew,Manhattan,Harlem,40.82296,-73.94545,Entire home/apt,200,2,38,2019-06-10,1.89,2,101 +21325114,Luxury Home Near Brooklyn Bridge,49582324,James,Brooklyn,Downtown Brooklyn,40.69276,-73.98374,Private room,119,1,0,,,1,0 +21325259,Small Private Studio in Astoria close to Manhattan,150565606,Mayra,Queens,Ditmars Steinway,40.77824,-73.91493,Entire home/apt,70,1,64,2019-06-26,3.18,2,113 +21325362,Charming bedroom (few blocks from the subway),154220885,Benny,Queens,Ridgewood,40.70516,-73.90497,Private room,55,1,72,2019-07-01,3.52,2,171 +21325518,A&M Spacious Home Away For Vacationers—NYC,154363317,Allison,Queens,St. Albans,40.6969,-73.76114,Entire home/apt,250,2,25,2019-07-01,1.39,1,204 +21325658,Room for rent,154375347,Stan,Manhattan,Kips Bay,40.74524,-73.97995,Private room,75,4,1,2017-10-28,0.05,1,0 +21326923,Charming Private Bedroom & Bathroom in Flushing,75059797,Christina,Queens,Flushing,40.74652,-73.82873,Private room,40,3,3,2019-07-08,3,1,66 +21327327,Spacious Private Room in Manhattan Apartment,75812000,Carina,Manhattan,Washington Heights,40.85051,-73.93579,Private room,50,4,4,2017-12-29,0.20,1,0 +21327397,"Budget-WELCOME ALL ""Couch"" walk to CITIFIELD & LGA",32446721,Veronica,Queens,Corona,40.74807,-73.86511,Shared room,37,1,6,2019-05-27,0.33,6,361 +21331808,Surfers Paradise - 170 Frost,536745,Johnny,Brooklyn,Williamsburg,40.71684,-73.94366,Private room,90,2,5,2018-09-02,0.24,3,310 +21332241,"Bushwick Garden Flat (Brooklyn, NY)",1257048,Esther,Brooklyn,Bushwick,40.68624,-73.9122,Entire home/apt,150,3,54,2019-06-16,2.60,1,59 +21332370,Artists's loft in Williamsburg mins subway to NYC,150970705,Julia And Marie,Brooklyn,Williamsburg,40.71428,-73.95421,Entire home/apt,140,2,11,2019-06-12,0.55,1,214 +21340451,Shared Apartment One stop from Manhattan in LIC.,55724558,Taylor,Queens,Long Island City,40.76024,-73.94228,Shared room,48,2,21,2019-05-23,1.02,5,90 +21343278,New York private studio apt.,145687876,Sapir,Queens,Forest Hills,40.72453,-73.8498,Entire home/apt,80,3,1,2017-11-06,0.05,1,0 +21343957,Cozy private room in Greenwich Village,27960761,Christopher,Manhattan,Greenwich Village,40.72817,-73.9958,Private room,125,3,7,2018-12-02,0.38,3,63 +21344179,"bright airy 1BR in Prime downtown NY, view of city",4285729,Mark,Manhattan,Chinatown,40.71339,-73.99115,Entire home/apt,188,3,6,2019-04-22,0.44,1,364 +21344739,Comfortable place/ close to Manhattan,87397826,Monica,Queens,Long Island City,40.75595,-73.93075,Private room,130,7,1,2018-03-31,0.06,2,34 +21344762,Modern Manhattan 1 Bedroom 15 Mins from Midtown,34867672,Robert,Manhattan,East Harlem,40.80891,-73.93798,Entire home/apt,100,30,22,2019-01-31,1.05,1,0 +21346054,"Bright, big and nice room",73856870,Laura,Brooklyn,East New York,40.666,-73.88858,Private room,75,2,0,,,1,88 +21346376,Luxurious & Breathtaking 1BR in Midtown / Times Sq,37818693,Andrew,Manhattan,Hell's Kitchen,40.75827,-73.99368,Entire home/apt,249,31,9,2019-06-01,0.51,1,137 +21346494,LARGE DUPLEX-3BR/3BA Williamsburg Townhouse+GARDEN,154506785,Daniel,Brooklyn,Williamsburg,40.71789,-73.9579,Entire home/apt,345,1,75,2019-06-09,3.64,3,243 +21346661,Spacious Private Room in Greenwich Village,78007526,Nick,Manhattan,Greenwich Village,40.72883,-74.00145,Private room,130,1,43,2018-07-15,2.04,1,145 +21347381,Private Room Next to Central Park,93469679,Grace,Manhattan,East Harlem,40.79639,-73.94772,Private room,90,2,40,2019-05-13,1.92,1,9 +21351641,WALK FROM TIME SQUARE FROM THIS HELLS KITCHEN APT,21410583,Brianne,Manhattan,Hell's Kitchen,40.76602,-73.98795,Private room,160,3,77,2019-01-02,3.77,1,88 +21353639,"Private Master Bedroom- Updated, Clean and Lovely!",44379772,Serena,Manhattan,Inwood,40.87312,-73.9179,Private room,85,1,0,,,1,317 +21353912,Perfectly formed in Park Slope,6317895,Stephen,Brooklyn,Park Slope,40.6785,-73.97542,Entire home/apt,125,4,1,2018-01-03,0.05,1,0 +21354050,1BR Artistic Dwelling in Ridgewood/Bushwick,63720469,Samantha,Queens,Ridgewood,40.70818,-73.91206,Private room,30,5,0,,,1,0 +21354164,Bushwick 1Br on Jefferson St.,32941922,Trevor,Brooklyn,Bushwick,40.70442,-73.92553,Entire home/apt,200,2,2,2017-12-03,0.10,1,0 +21354322,"big apartment in Queens Flushing,nyc",154576996,Yi,Queens,Flushing,40.76484,-73.81569,Private room,200,1,8,2017-12-22,0.41,1,365 +21354525,Cozy Brooklyn Heights Getaway w/ Manhattan Access,11743513,Henry,Brooklyn,Brooklyn Heights,40.69252,-73.99121,Private room,90,1,87,2019-06-16,4.29,1,108 +21354840,BRIGHT & CLEAN UNION SQ GEM APT! 700 SQF ALL YOURS,18270371,Ena,Manhattan,Gramercy,40.73305,-73.98574,Entire home/apt,148,4,10,2018-09-27,0.52,1,0 +21354913,"Private suite near NYC Ferry, Front",71725161,Kalina,Brooklyn,Sunset Park,40.64191,-74.02196,Entire home/apt,99,4,79,2019-07-02,3.97,2,137 +21354957,NEW Large BEAUTIFUL STUDIO - Williamsburg!,154506785,Daniel,Brooklyn,Williamsburg,40.7176,-73.95927,Entire home/apt,148,1,72,2019-06-09,3.63,3,272 +21355005,Large room in the Upper West Side!,25880686,Davide,Manhattan,Upper West Side,40.80049,-73.97159,Private room,89,10,0,,,1,0 +21355217,Lovely 4BR/4BA + Private Garden Williamsburg,154506785,Daniel,Brooklyn,Williamsburg,40.7186,-73.95811,Entire home/apt,585,1,27,2019-06-23,2.01,3,229 +21356244,Cozy private Apartment in Convenient Neighborhood,146000975,Kuei Mei,Queens,Woodside,40.74377,-73.90482,Entire home/apt,120,1,161,2019-06-27,7.72,1,287 +21356378,Sunny Private Room 4 Min from Train,9439324,Chérie,Brooklyn,Bushwick,40.68809,-73.90641,Private room,36,1,8,2019-05-20,0.43,3,0 +21356602,Heart of Queens 3 ❤️❤️❤️Private Bath-Jackson Hgts,123483050,Andrea,Queens,Elmhurst,40.7478,-73.88005,Private room,100,1,73,2019-06-22,3.47,3,165 +21356649,"$60NYC Private Room Near J, M, And G Train",145214508,Yonette,Brooklyn,Bedford-Stuyvesant,40.69369,-73.94214,Private room,60,3,0,,,2,89 +21357119,Newly Built Uptown Manhattan Large Pied-à-Terre,177293,Herman,Manhattan,East Harlem,40.80832,-73.93756,Entire home/apt,200,30,0,,,1,0 +21357424,Lush 2BR in Stylish Brooklyn Williamsburg,111969257,Jae,Brooklyn,Williamsburg,40.71608,-73.94557,Private room,200,5,23,2019-07-02,1.18,3,42 +21357642,La Casa de Ishmael,154613793,Ishmael,Bronx,Concourse Village,40.82706,-73.91779,Private room,80,1,0,,,1,88 +21357792,Stylish room in lush Williamsburg apartment,111969257,Jae,Brooklyn,Williamsburg,40.71619,-73.9441,Private room,90,4,3,2018-07-12,0.15,3,0 +21358406,(A) Room for 2 w private bathroom,110965771,Wilson,Queens,Flushing,40.77221,-73.82401,Private room,80,2,36,2019-05-18,1.76,7,122 +21358930,"Spacious Room by Subway! JFK 10min,Manhattan 30min",131476068,Leslie,Queens,Richmond Hill,40.6868,-73.82896,Private room,83,2,16,2019-03-03,0.77,2,42 +21359078,"Spacious Ditmas Park 1BR Apt, 1 block from Subway!",24210901,Gabriella,Brooklyn,Flatbush,40.63605,-73.96096,Entire home/apt,71,2,14,2018-12-27,0.67,1,0 +21363363,Clean & Updated East Village 1 Bedroom w/Roof Deck,17261462,Brian,Manhattan,East Village,40.72935,-73.98056,Entire home/apt,140,4,3,2018-01-01,0.14,1,0 +21363896,"Sunny ""Jungalow"" Oasis Studio",45534132,Autumn,Brooklyn,Brooklyn Heights,40.69689,-73.99563,Entire home/apt,180,2,1,2017-10-22,0.05,1,0 +21363936,Spacious Apartment in the Heart of Williamsburg,4547593,Hunter,Brooklyn,Williamsburg,40.71982,-73.95569,Entire home/apt,120,5,0,,,1,0 +21364301,Wonderful Private Room with Spacious Outdoor Patio,103850896,Ashley,Brooklyn,Williamsburg,40.71817,-73.94289,Private room,65,2,24,2019-06-30,1.18,2,53 +21364473,Newly Renovated Brownstone 1BR with Private Deck,1282611,Chris,Brooklyn,Bedford-Stuyvesant,40.68409,-73.93827,Entire home/apt,69,4,7,2019-01-01,0.37,1,5 +21364703,Gorgeous 1 BR/1BA where Soho meets West Village!,8480056,David,Manhattan,SoHo,40.72706,-74.00476,Entire home/apt,170,2,17,2019-06-23,0.84,1,6 +21364872,"Williamsburg sunny bedroom, 15 mins to Manhattan",32527579,Alex,Brooklyn,Williamsburg,40.71239,-73.95857,Private room,70,4,8,2019-06-23,0.44,1,0 +21365379,Master Bedroom - Private Balcony onto Manhattan,14482375,Lara & David,Brooklyn,Greenpoint,40.72205,-73.94229,Private room,150,4,5,2018-09-24,0.24,3,0 +21365714,Queens Village relaxing place,154700793,Evens And Charlene,Queens,Queens Village,40.70601,-73.73737,Entire home/apt,67,3,93,2019-06-29,4.46,1,134 +21366188,Studio apartment near JFK airport /Free parking,154705359,Anabell,Queens,Jamaica,40.66875,-73.78506,Entire home/apt,96,1,259,2019-07-07,12.99,1,307 +21366268,Cozy Home Away from Home in the Heart of NYC!,66960766,Jose,Manhattan,Gramercy,40.73684,-73.98058,Private room,57,3,75,2019-06-29,3.73,1,242 +21366506,"Whole Floor, 2 BR Apt. in Iconic Greenwich Village",154709515,Steven,Manhattan,Greenwich Village,40.7345,-73.99747,Entire home/apt,395,2,0,,,1,0 +21366806,Comfortable air bed near bronx zoo and sbh,154238443,Mrs,Bronx,Belmont,40.85456,-73.88521,Private room,29,4,5,2019-06-01,0.25,2,360 +21366948,"Best of the west! Sunny,quiet&huge! Ideal location",154714898,Gil,Manhattan,Upper West Side,40.78584,-73.97342,Entire home/apt,350,5,31,2019-06-30,1.54,1,166 +21367482,Spacious Brooklyn Brownstone Apt.,46332983,Rosemarie,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95086,Entire home/apt,120,2,26,2019-06-13,1.82,1,22 +21367648,L.A.J Laughter & Joy Rest Spot. Room # 3,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94409,Private room,100,2,24,2019-05-28,1.14,3,358 +21367929,★ 4BRs Family Groups★ Duplex ★Backyard ★ NYC 35min,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67752,-73.91489,Entire home/apt,190,5,59,2019-07-07,2.86,5,24 +21368441,"Spacious Duplex Loft Apt, Dtwn Bklyn, Near TRAINS",120574445,Kay,Brooklyn,Boerum Hill,40.68497,-73.97986,Entire home/apt,200,3,45,2019-07-02,2.29,1,3 +21369060,L.A.J Laughter & Joy Rest Spot. Room # 2,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.65894,-73.94226,Private room,70,2,32,2019-05-12,1.53,3,358 +21369232,Awesome Private Room in Vibrant Bronx,12446529,Migdalia,Bronx,Soundview,40.82407,-73.8614,Private room,49,2,25,2019-05-07,1.32,2,184 +21369271,L.A.J Laughter & Joy Rest Spot. Room # 1,154042156,Arlene,Brooklyn,Prospect-Lefferts Gardens,40.65909,-73.94423,Private room,70,2,58,2019-06-26,2.80,3,60 +21369311,Nice room in renovated apartment in Brooklyn,1478269,Ben,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95452,Private room,70,2,7,2019-06-06,0.36,2,49 +21369656,Sunny and Spacious!Awesome Central Harlem 2br,138359650,Charles,Manhattan,East Harlem,40.80641,-73.94114,Entire home/apt,237,3,45,2019-06-23,2.18,1,89 +21370008,Private Comfy Town Home in Heart of Williamsburg,10545382,Chase,Brooklyn,Williamsburg,40.71561,-73.96307,Private room,129,1,66,2019-07-07,3.32,2,84 +21370014,Renovated apartment of a young business traveller,36824919,Dmitry,Manhattan,Upper West Side,40.80246,-73.96741,Private room,72,3,1,2017-10-28,0.05,1,0 +21370205,Sun Filled Private Room near Central Park,26702561,Amy,Manhattan,Hell's Kitchen,40.76587,-73.98527,Private room,90,1,0,,,1,0 +21375941,Spectacular Brooklyn brownstone!,15412884,Catherine,Brooklyn,Boerum Hill,40.68486,-73.98487,Entire home/apt,800,7,2,2018-07-25,0.11,1,246 +21377271,Sunny Spacious 2 Bedroom in Park Slope,15103996,Chris,Brooklyn,South Slope,40.66489,-73.99128,Entire home/apt,130,6,4,2019-01-02,0.22,1,5 +21377493,Macon Modern Brownstone Suite,154550758,Khadijah,Brooklyn,Bedford-Stuyvesant,40.68417,-73.92726,Entire home/apt,160,2,0,,,1,171 +21378053,Special one bedroom in midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74871,-73.9753,Entire home/apt,175,30,2,2019-01-19,0.11,50,365 +21378123,Studio apt direct access to Mantattan and Brooklyn,154828245,Ping,Staten Island,New Springville,40.58508,-74.16162,Entire home/apt,58,1,87,2019-06-24,4.18,1,0 +21378145,Beautiful Studio Apartment on Upper East Side!,64327344,Diane,Manhattan,Upper East Side,40.777,-73.94861,Entire home/apt,115,3,38,2018-08-31,1.81,1,0 +21378988,"Casa Blanca, one of a kind townhouse in New York",55527442,Ekaterina,Manhattan,Murray Hill,40.7487,-73.97862,Entire home/apt,300,3,0,,,3,294 +21379252,Villa Borghese,55527442,Ekaterina,Manhattan,Murray Hill,40.74827,-73.97868,Private room,577,2,1,2018-09-22,0.10,3,293 +21379577,living on Bleecker street,61696564,Natalia,Manhattan,Greenwich Village,40.73025,-73.99996,Private room,104,31,1,2017-10-25,0.05,2,0 +21379957,Union Square Shared Studio - Female Only,11822196,Melanie,Manhattan,Gramercy,40.73666,-73.98544,Shared room,49,1,76,2019-06-06,3.64,2,0 +21380140,Cozy room available in Queens Village.,154848269,Luequita,Queens,Queens Village,40.7167,-73.73473,Private room,35,3,8,2019-06-27,0.61,1,38 +21380282,"Spacious private bedroom in Park Slope, Brooklyn.",2245915,Jonathan,Brooklyn,Gowanus,40.6812,-73.98186,Private room,85,3,2,2018-09-29,0.15,1,0 +21381272,Cozy Bedroom in the Heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76152,-73.98959,Private room,91,1,32,2019-03-19,1.59,3,181 +21381555,NYC Dreamer,50760404,Jenifer,Brooklyn,Crown Heights,40.67178,-73.92362,Private room,80,1,108,2019-07-02,5.18,2,0 +21382292,Cozy 2 Bedroom in the heart of Times Square,37333386,Bianca,Manhattan,Hell's Kitchen,40.76119,-73.9873,Entire home/apt,200,3,41,2019-06-18,1.97,3,181 +21383712,NYC Forest,50760404,Jenifer,Brooklyn,Crown Heights,40.67318,-73.92321,Private room,80,1,98,2019-06-30,4.75,2,0 +21383821,Brooklyn,3730706,E,Brooklyn,Bedford-Stuyvesant,40.68469,-73.94885,Entire home/apt,175,5,10,2018-09-23,0.49,1,0 +21383903,Shared Room in Astoria 1 stop from Manhattan,55724558,Taylor,Queens,Long Island City,40.76048,-73.94068,Shared room,45,5,16,2019-06-04,0.77,5,88 +21384151,"Quiet, Private BR (Queen Bed): Views of BK Bridge",154886441,Daniel,Manhattan,Financial District,40.7094,-74.00145,Private room,96,4,4,2017-11-02,0.19,1,0 +21384233,Gorgeous renovated Boutique townhouse apartment,10546345,Kimberley,Brooklyn,Bedford-Stuyvesant,40.68466,-73.92523,Entire home/apt,180,4,31,2019-06-17,1.47,1,339 +21384296,"Spacious 2BR garden apt in BedStuy, 1 block to J",4563377,Rachel,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92933,Entire home/apt,100,5,5,2019-06-20,0.27,1,0 +21384410,Hip Brooklyn Duplex In Prospect Heights,32014256,Josh,Brooklyn,Crown Heights,40.67487,-73.95721,Entire home/apt,129,1,79,2019-06-23,3.88,1,144 +21384768,"Nice room, close to everything NY has to offer",154629695,Diana,Queens,Astoria,40.75807,-73.90977,Private room,60,1,66,2019-06-22,3.29,1,19 +21384941,Great UWS alcove studio,11774785,Greg,Manhattan,Upper West Side,40.79027,-73.97241,Entire home/apt,135,2,0,,,1,0 +21385255,Private Master Bedroom in the Lower East Side,118421882,Natalie,Manhattan,Chinatown,40.71541,-73.99083,Private room,95,1,132,2019-06-22,6.45,1,27 +21385556,Rosedale,95057247,Marie,Queens,Rosedale,40.65111,-73.73441,Private room,125,3,0,,,1,0 +21385915,D) Cozy Spacious Queen bed WiFi JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69943,-73.81444,Private room,48,1,49,2019-05-16,2.40,4,255 +21386105,Quiet & clean 1br haven with balcony near the park,154256662,Danielle,Queens,Astoria,40.77134,-73.92424,Entire home/apt,250,3,1,2018-01-02,0.05,1,180 +21386117,"Newly Renovated Apt, Quick & Easy Access to Subway",83093714,Brianna,Manhattan,Harlem,40.81631,-73.94203,Private room,300,1,1,2017-12-06,0.05,1,0 +21386179,Private Room & Full Bath in Brooklyn,123511218,Adrián,Brooklyn,Bedford-Stuyvesant,40.67947,-73.94649,Private room,44,2,3,2019-03-31,0.14,1,0 +21386677,The Cozy Bushwick Modern (Room A),142625186,J.R.,Brooklyn,Bushwick,40.69143,-73.91756,Private room,75,1,27,2019-06-10,1.32,2,0 +21390016,Spacious 1 Bed PENTHOUSE Apt w/ Incredible VIEWS,2762154,Bethany,Brooklyn,Sunset Park,40.63863,-74.01916,Entire home/apt,88,14,1,2017-11-19,0.05,1,0 +21390251,Clean 2BR Park Slope Apt w/ Private Outdoor Space,26765262,Derek,Brooklyn,Gowanus,40.66933,-73.99158,Entire home/apt,125,3,70,2019-07-01,3.38,1,99 +21391447,Large Modern Stylish 3Bed 2Bathr Nolita Apartment,4853070,Tom,Manhattan,Nolita,40.72022,-73.99604,Entire home/apt,300,3,0,,,1,0 +21392488,Middle village,118697704,Selina,Queens,Middle Village,40.71285,-73.87627,Entire home/apt,250,2,4,2018-10-07,0.19,1,364 +21392504,Cozy Room With HULU Live TV/Netflix and 2 Baths,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68562,-73.93836,Private room,44,2,96,2019-06-28,4.66,3,7 +21392524,Elegant Private Apartment in a Historic Brownstone,8715723,Jacob,Manhattan,Harlem,40.80989,-73.9549,Private room,174,1,111,2019-06-13,5.37,5,244 +21393427,Entire Luxury 1BR APT on the Upper East Side,22924270,Igor,Manhattan,Upper East Side,40.77331,-73.95328,Entire home/apt,199,3,1,2017-10-19,0.05,1,17 +21393826,Interior Designer's spacious Williamsburg retreat,46716542,Christine,Brooklyn,Williamsburg,40.70579,-73.94277,Private room,128,1,1,2018-01-01,0.05,1,144 +21394087,The Hideaway Upstairs,145242566,Corey,Manhattan,Harlem,40.81807,-73.95487,Private room,30,3,86,2019-06-24,4.32,2,0 +21394300,Entire 1BR Beautiful Williamsburg Apartment,205055,Clare,Brooklyn,Williamsburg,40.71923,-73.95515,Entire home/apt,150,2,3,2018-01-04,0.15,1,0 +21394554,Quiet and Spacious 1 Bed in Woodside,154984900,Bidya,Queens,Woodside,40.74599,-73.89507,Private room,65,1,133,2019-06-29,8.87,1,7 +21394596,Room avail: Newly-renovated Washington Heights APT,29883522,Alison,Manhattan,Washington Heights,40.84412,-73.93968,Private room,50,3,1,2017-11-06,0.05,1,0 +21394750,Bronx Charm 20 mins to NYC,154985306,Mary,Bronx,University Heights,40.8568,-73.9149,Entire home/apt,175,2,68,2019-07-01,3.34,1,89 +21395349,Spacious Long Term Rental in Elevator Building,24052348,Tara,Manhattan,East Village,40.72025,-73.97833,Private room,86,6,5,2018-01-14,0.25,4,0 +21395676,Huge master bedroom in pristine Nolita loft,907037,Morgan,Manhattan,Little Italy,40.71966,-73.99591,Private room,325,2,5,2018-12-09,0.26,1,0 +21395840,Cozy and Welcoming Upper East Side NYC Studio!,2714509,Geraldine,Manhattan,Upper East Side,40.78098,-73.9467,Entire home/apt,95,2,58,2019-06-23,2.96,1,0 +21397049,Tranquility & Privacy in the Concrete Jungle,11167829,Dana (& Justin),Manhattan,Harlem,40.82794,-73.94163,Private room,50,4,3,2017-10-30,0.14,3,0 +21397638,Large 1 Bedroom in LES,50086945,Pascal,Manhattan,Lower East Side,40.71954,-73.98914,Entire home/apt,250,7,7,2019-03-14,0.37,1,0 +21398486,"Enjoy Fireplace, Deck, King Bed in Park Slope!",4058709,Elise And Dave,Brooklyn,Park Slope,40.67587,-73.9793,Entire home/apt,165,6,5,2018-12-18,0.25,2,73 +21398613,Spacious 1 BR APT right next to Central Park,24393270,Marc,Manhattan,Upper West Side,40.76877,-73.98371,Entire home/apt,150,5,1,2017-10-30,0.05,1,0 +21399110,"Beautiful, Cozy apartment in Brooklyn",1016005,Livia,Brooklyn,Bedford-Stuyvesant,40.68899,-73.94673,Entire home/apt,90,1,17,2019-07-01,0.92,1,158 +21399123,Beautiful Room with Private Bathroom in Manhattan,96346005,Yamile,Manhattan,Upper West Side,40.77455,-73.98882,Private room,156,3,86,2019-06-29,4.11,3,68 +21399131,Cozy LIC Loft-Style Apt- Minutes to Manhattan,155031529,Shannon,Queens,Long Island City,40.74726,-73.94304,Entire home/apt,110,20,2,2017-11-02,0.10,1,0 +21399518,"Sunny room w/queen bed, prime Williamsburg.",6563906,Lukasz,Brooklyn,Williamsburg,40.71318,-73.96038,Private room,70,1,8,2018-05-06,0.41,1,0 +21399885,Comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68742,-73.91628,Entire home/apt,154,3,26,2019-06-18,1.41,3,341 +21399985,"Beautiful, Spacious & Comfortable NYC Brownstone",7658248,M,Manhattan,Harlem,40.80999,-73.95484,Private room,85,2,76,2019-06-13,3.68,2,0 +21404524,Beautiful sunny Bushwick Loft,22875538,Max,Brooklyn,Bushwick,40.70808,-73.9205,Entire home/apt,299,2,8,2019-01-01,0.63,2,0 +21405904,Single private Bedroom in a beautiful House,77750223,Mercedes,Bronx,Clason Point,40.81728,-73.86343,Private room,40,3,5,2019-05-19,0.46,2,365 +21406187,"Comfortable, Beautiful & Spacious NYC Brownstone",7658248,M,Manhattan,Harlem,40.80839,-73.95269,Private room,85,2,78,2019-06-27,3.77,2,0 +21406504,2 bedroom close to the subway and central park.,59346339,Doug,Manhattan,East Harlem,40.78996,-73.94873,Entire home/apt,127,2,3,2017-11-20,0.15,1,0 +21406998,Large room,154696585,Jorge,Bronx,Kingsbridge,40.87847,-73.90268,Private room,80,3,1,2017-12-19,0.05,1,0 +21407514,"Spacious, well-lit, with modern decor apartment!",154842298,Jessica,Manhattan,East Village,40.7266,-73.984,Entire home/apt,195,3,2,2018-05-20,0.11,1,0 +21408195,The Manhattanville,145242566,Corey,Manhattan,Harlem,40.81956,-73.95277,Shared room,25,3,61,2019-06-23,2.99,2,7 +21408811,Spacious PRIVATE Room,15520066,Richard,Queens,Ridgewood,40.70839,-73.89516,Private room,35,3,1,2017-11-20,0.05,1,0 +21410257,"ALL YOURS FULL APARTMENT +2 BDM 2 BTH East Village!",27636450,Lauren,Manhattan,NoHo,40.72617,-73.99218,Entire home/apt,250,2,2,2017-11-06,0.10,2,0 +21410971,"Beautiful,spacious and sunny one bedroom apartment",154306881,Marta,Brooklyn,Prospect-Lefferts Gardens,40.65851,-73.96151,Entire home/apt,120,3,2,2017-10-30,0.10,1,0 +21411274,Spacious Studio in the City close to all!,155148052,Amir,Manhattan,Upper East Side,40.77719,-73.9511,Entire home/apt,139,2,45,2019-06-15,2.18,1,14 +21411685,Chic room in a clean and cozy apartment,35662919,Grace,Brooklyn,Williamsburg,40.71023,-73.95827,Private room,100,2,1,2017-10-22,0.05,1,0 +21412438,Elmhurst整套豪华公寓,125492013,祥茵,Queens,Elmhurst,40.7434,-73.8839,Entire home/apt,90,5,0,,,2,0 +21413190,Morden Corner Lux Apartment w/ River & City view,22223682,Zoey,Manhattan,Upper West Side,40.77158,-73.98976,Private room,150,300,2,2018-01-02,0.10,1,365 +21413839,Chelsea Cabins (NYC),117365574,Maria,Manhattan,Chelsea,40.74785,-73.99664,Private room,82,1,97,2019-06-16,4.69,5,309 +21413889,A Garden Suite - Mott Haven Townhouse Studio,155171571,Tania,Bronx,Mott Haven,40.80889,-73.92028,Entire home/apt,125,3,32,2019-06-08,1.59,1,6 +21414167,Recently renovated 2 bedroom apartment in midtown,42784981,Santiago,Manhattan,Midtown,40.7447,-73.98255,Entire home/apt,350,2,1,2017-11-26,0.05,1,0 +21414821,New!! Cozy full equipped room in Times Square,155182192,Adam,Manhattan,Hell's Kitchen,40.75949,-73.9908,Private room,40,1,108,2019-05-24,5.21,1,65 +21416357,Gorgeous Green Premium Suite! (Brooklyn),25036260,Jaye,Brooklyn,Bushwick,40.68826,-73.90933,Private room,80,1,34,2019-06-03,2.07,3,207 +21416483,A cozy room for the holidays in Brooklyn,155200301,Andy,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9216,Private room,40,18,1,2017-12-31,0.05,2,0 +21420445,Private room in apartment in LIC,3711407,Andrea,Queens,Long Island City,40.74679,-73.94547,Entire home/apt,85,2,14,2019-01-06,0.68,1,0 +21421438,Iconic Apartment in Times Square Steps to Broadway,143555138,Valdo,Manhattan,Hell's Kitchen,40.76131,-73.99362,Entire home/apt,185,1,85,2019-07-02,4.08,1,172 +21421657,THE SMALL ENGLISH MANOR NESTLED AMONGST THE TREES,155255550,Emma,Manhattan,East Village,40.72436,-73.984,Entire home/apt,215,1,126,2019-07-01,6.12,1,234 +21422090,"Bedroom 5 min away from E, 7, F, M, R trains!",106766048,Chelsea,Queens,Jackson Heights,40.75239,-73.89021,Private room,45,3,12,2019-06-27,1.67,1,0 +21422357,Beautiful 2 Bedroom near Brooklyn Museum!,144195040,Deanna,Brooklyn,Crown Heights,40.67257,-73.95958,Entire home/apt,150,1,29,2019-06-22,1.41,1,135 +21422721,Large private room 7 min to LGA 15min to Manhattan,153524812,James,Queens,Astoria,40.76818,-73.92613,Private room,65,1,114,2019-06-30,5.46,1,319 +21423426,Peaceful 1 Bedroom in the East Village,10391716,Sasha,Manhattan,East Village,40.72171,-73.98307,Entire home/apt,190,4,68,2019-06-24,3.34,1,41 +21426105,Private room in convenient East Harlem location,6105242,Jill,Manhattan,East Harlem,40.78671,-73.94153,Private room,60,14,1,2019-01-07,0.16,1,55 +21426185,Spacious Studio in the Lower East Side,6388732,William,Manhattan,Lower East Side,40.72269,-73.99102,Entire home/apt,175,2,16,2019-03-10,0.77,1,2 +21426368,Beautiful Space in Duplex Loft Close Prospect Park,4414774,Kristopher,Brooklyn,Crown Heights,40.67366,-73.96032,Shared room,60,2,13,2018-09-09,0.64,1,0 +21426648,Bright Airy 1 Bedroom Studio in Prime Downtown NYC,683457,Kelly,Manhattan,East Village,40.72469,-73.99111,Entire home/apt,250,3,1,2018-01-01,0.05,1,0 +21427176,STUNNING NYC VIEWS! New Jersey 15 min Times Square,154949847,Emily,Manhattan,Hell's Kitchen,40.76893,-73.99654,Entire home/apt,288,3,66,2019-06-11,3.42,2,300 +21427369,Gorgeous Clinton Hill Brooklyn 1BR Garden Apt,109909474,Joanna & Brian,Brooklyn,Clinton Hill,40.68839,-73.96018,Entire home/apt,100,1,93,2019-06-19,4.67,1,65 +21428231,Adorable room in AMAZING Chelsea apartment!,155318905,Samantha,Manhattan,Chelsea,40.74314,-73.99898,Private room,95,1,2,2017-11-06,0.10,1,0 +21428625,Awesome Oasis! 3 stops Away from Manhattan!!!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94368,Private room,50,5,1,2018-01-17,0.06,7,0 +21428791,LES Duplex Penthouse with Private Rooftop Terrace,16794494,Ian,Manhattan,East Village,40.72251,-73.98129,Private room,200,2,9,2019-05-27,0.46,1,0 +21429062,Beautiful spacious duplex in Bed Stuy Brooklyn,122044489,Tonie,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94225,Entire home/apt,110,2,39,2019-06-30,1.91,2,130 +21431963,Magical Space w/Incredible Cozy Energy,122374980,Matt,Manhattan,Upper West Side,40.78428,-73.97665,Shared room,60,1,90,2019-06-13,4.35,4,77 +21432084,Times Square Room with access to a Terrace,382836,Chemme,Manhattan,Hell's Kitchen,40.75873,-73.99041,Private room,143,3,18,2019-05-20,0.89,4,365 +21433001,Colorful & cozy studio in Brooklyn,11908891,Alenka,Brooklyn,Flatbush,40.64016,-73.96784,Entire home/apt,97,3,2,2017-11-18,0.10,1,0 +21434285,Marriott Vacation Club Pulse - King Room,19809273,Susan,Manhattan,Midtown,40.75092,-73.98409,Entire home/apt,350,2,0,,,1,178 +21434692,Modern Harlem Hamilton Heights Garden Apartment,111663504,Sumitra,Manhattan,Harlem,40.82794,-73.95118,Entire home/apt,150,2,69,2019-07-03,3.36,1,69 +21434826,UES luxurious Penthouse with huge private terrace,9554878,Arturo,Manhattan,Upper East Side,40.76955,-73.95988,Entire home/apt,589,6,9,2019-06-29,0.49,1,4 +21435076,Charming Grand Central Two Bedroom (2F),37487997,Sean,Manhattan,Murray Hill,40.74866,-73.97755,Entire home/apt,138,30,1,2018-08-07,0.09,1,188 +21435622,"Small, quiet, and clean 1BR in Manhattan",100970377,Anabel,Manhattan,Harlem,40.81032,-73.94331,Entire home/apt,200,1,3,2017-11-24,0.15,1,0 +21435800,Private Brownstone Basement Studio Seasonal Space,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68623,-73.93807,Entire home/apt,50,2,46,2019-07-01,2.23,5,70 +21435960,Cozy in Bedstuy,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69284,-73.94418,Private room,65,3,40,2019-06-17,1.99,3,70 +21436653,The Stockholm Suite (2 min to subway),155400834,Matt,Manhattan,Harlem,40.81222,-73.94667,Entire home/apt,245,2,82,2019-06-30,4.44,1,135 +21436689,Large One-Bedroom Apartment on Quiet Street,45658261,Nat,Brooklyn,Crown Heights,40.67186,-73.92244,Entire home/apt,100,2,7,2018-02-04,0.35,1,0 +21437509,Peaceful Artist's Room in Williamsburg,13081524,Sarah,Brooklyn,Williamsburg,40.71226,-73.93949,Private room,60,2,48,2019-06-29,2.30,1,13 +21437933,Large one-bedroom in Bushwick with Cleo the Cat,2545414,Ali,Brooklyn,Bushwick,40.70327,-73.92024,Entire home/apt,89,7,10,2018-12-27,0.51,1,11 +21439155,Washington Heights Renovated Bedroom,66830803,Angie,Manhattan,Washington Heights,40.85083,-73.93623,Private room,51,1,4,2018-12-30,0.31,1,0 +21440192,Good Deal! Don't Miss Out!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94242,Entire home/apt,150,30,12,2018-07-08,0.63,7,0 +21440393,Peaceful and Spacious ENTIRE Sunlit Apartment,8621271,Shem,Brooklyn,Crown Heights,40.67506,-73.94828,Entire home/apt,110,3,20,2018-10-16,1.00,1,0 +21440587,Columbus Circle Studio,154346156,Emilio,Manhattan,Hell's Kitchen,40.76673,-73.98324,Entire home/apt,230,2,1,2017-10-27,0.05,1,0 +21440605,☆☆☆Cosy Bedroom in The Heart of the City☆☆☆,126168966,Alex,Manhattan,Hell's Kitchen,40.76457,-73.99082,Private room,119,1,52,2019-06-23,2.50,3,159 +21440734,Great Finding! 3 stops away from Manhattan,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68558,-73.94231,Private room,44,5,1,2017-11-28,0.05,7,0 +21440922,Loft off Jefferson L,3039349,Rebecca,Brooklyn,Bushwick,40.70766,-73.92039,Private room,80,1,34,2019-06-24,1.74,1,12 +21441613,Exquisitely clean and beautiful UES apt home.,59405516,Anthony,Manhattan,Upper East Side,40.77183,-73.95534,Entire home/apt,233,6,15,2019-06-23,0.72,2,154 +21444065,"Harlem Tree House, only 15 minutes to Midtown!",12762193,Jenny,Manhattan,Harlem,40.8107,-73.94731,Entire home/apt,150,2,10,2019-05-30,0.49,1,0 +21444621,Studio Apartment in Williamsburg,29110524,MaKaya,Brooklyn,Williamsburg,40.72031,-73.95615,Entire home/apt,115,4,0,,,1,0 +21444943,BIG Sunny Space by Prospect Park,50903933,Shea,Brooklyn,Flatbush,40.65114,-73.96246,Private room,60,2,2,2017-10-26,0.10,1,0 +21446560,Private Bedroom and Bathroom in doorman building.,69108572,Max,Manhattan,Upper East Side,40.77904,-73.95205,Private room,150,1,0,,,1,0 +21446922,Cozy private entrance bedroom with key and lock!,11452850,Jennifer,Brooklyn,Williamsburg,40.71171,-73.95896,Private room,70,2,3,2018-05-15,0.15,1,0 +21447197,Upper East Side Oasis,59405516,Anthony,Manhattan,Upper East Side,40.77296,-73.95594,Private room,75,3,11,2019-04-20,0.82,2,62 +21448949,Quiet Brooklyn 1 BR,10456843,Rachael,Brooklyn,Crown Heights,40.66719,-73.93913,Entire home/apt,109,2,22,2019-06-18,1.17,1,1 +21449107,Room for two in the heart of Brooklyn!,155647922,Sally,Brooklyn,Flatbush,40.64766,-73.95888,Private room,65,3,74,2019-06-30,3.59,1,66 +21449446,The Oasis 2,33106693,Elena,Manhattan,Harlem,40.82167,-73.95006,Entire home/apt,210,5,2,2018-08-11,0.11,3,88 +21450176,Private Room in Convenient Midtown East Location,121809482,Gina,Manhattan,Midtown,40.75089,-73.9706,Private room,145,1,25,2019-01-18,1.27,2,0 +21450408,Private Room / Netflix + HULU Live TV in a 2 Bath,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68444,-73.93804,Private room,40,2,101,2019-07-01,4.89,3,8 +21450636,Exposed brick 1BR apartment in upper Manhattan,21341524,Harold,Manhattan,East Harlem,40.79104,-73.94144,Entire home/apt,180,2,3,2018-06-16,0.16,1,41 +21450672,Comfy queen bed in a private room near LGA Airport,155691570,Mili,Queens,East Elmhurst,40.76555,-73.87232,Private room,40,1,76,2018-09-22,3.68,5,0 +21450693,Spacious WA Heights Apt Next to Subway,13010274,Sarah,Manhattan,Washington Heights,40.83433,-73.94304,Shared room,75,1,0,,,1,0 +21451138,B) Comfy Full Bed Wifi near JFK Airport Subway,154128335,Joseph,Queens,Jamaica,40.69938,-73.81304,Private room,40,1,119,2019-07-08,5.80,4,229 +21452348,"manhattan studio near chelsea,highline, whitney",7390361,Inyoung,Manhattan,Chelsea,40.74184,-73.99877,Entire home/apt,128,6,6,2018-01-13,0.30,1,0 +21452670,Homey Harlem Home,3917130,Cindy,Manhattan,Harlem,40.83089,-73.94541,Private room,36,1,0,,,1,0 +21455957,"Spacious, sun-soaked 1-br in Clinton Hill/Bedstuy",3000089,Kimberly,Brooklyn,Bedford-Stuyvesant,40.6918,-73.95884,Entire home/apt,85,8,16,2019-06-25,0.81,1,6 +21457703,MODERN STYLISH PENTHOUSE SUITE @ CENTRAL PARK,6945444,Gregory,Manhattan,Harlem,40.80111,-73.95221,Entire home/apt,173,2,62,2019-06-23,3.44,1,92 +21457933,ENTIRE HOME. BEAUTIFUL 1 BEDROOM APT IN GREENPOINT,1285768,Olga,Brooklyn,Greenpoint,40.72168,-73.94336,Entire home/apt,150,10,2,2018-12-08,0.11,1,41 +21457989,Brooklyn Townhouse w Large Garden!,2350011,Rushna,Brooklyn,Clinton Hill,40.68499,-73.9616,Entire home/apt,200,10,5,2019-01-02,0.24,1,0 +21458689,GloRia's Pod,155791040,Donovan,Queens,Queens Village,40.71195,-73.74172,Entire home/apt,98,1,64,2019-06-17,3.45,1,356 +21458865,Bright bedroom. Easy access to Manhattan,62888101,Yoshi,Brooklyn,Red Hook,40.67634,-74.00293,Private room,69,1,32,2019-06-20,1.73,1,86 +21458972,Large Bed-Stuy Apartment,45697749,Joseph,Brooklyn,Bedford-Stuyvesant,40.68589,-73.95516,Entire home/apt,142,6,4,2018-06-01,0.20,2,0 +21460249,"Stylish, cozy 1BR in Upper West Manhattan",8687478,Marie,Manhattan,Harlem,40.82523,-73.95357,Entire home/apt,180,5,1,2018-01-02,0.05,1,0 +21460319,A Peaceful Nest in Williamsburg,3249409,Laura,Brooklyn,Williamsburg,40.71072,-73.96498,Entire home/apt,150,4,45,2019-06-08,2.18,1,13 +21460444,Discounted for Summer - Close to Everything,155810605,Danielle,Manhattan,East Harlem,40.79109,-73.94915,Private room,100,2,83,2019-06-21,4.08,2,40 +21460970,Private garden studio in Brooklyn,10525934,Nubia,Brooklyn,Gowanus,40.67585,-73.99653,Entire home/apt,125,2,13,2018-09-12,0.64,1,0 +21461540,"Williamsburg apartment, beautiful rooftop & more",9427815,Liam,Brooklyn,Williamsburg,40.71975,-73.94279,Entire home/apt,175,2,1,2018-01-01,0.05,1,0 +21461615,ウィリアムズバーグのかわいいお部屋です2,145285876,Hiro,Brooklyn,Williamsburg,40.71523,-73.96245,Private room,66,2,3,2017-12-10,0.15,2,0 +21461874,"Privet bedroom. Super clean, 10 min from Times Sq",13878635,Muslum,Manhattan,Hell's Kitchen,40.76636,-73.99334,Private room,150,1,9,2019-05-26,0.44,2,88 +21461901,Comfy & Quiet Private Room w/ Netflix in NY!,916804,Val,Manhattan,Harlem,40.81953,-73.94717,Private room,79,2,83,2019-07-01,4.14,1,26 +21462212,Clean private room with double bed,145285876,Hiro,Brooklyn,Williamsburg,40.71536,-73.96358,Private room,66,2,1,2017-11-02,0.05,2,0 +21462551,Speakeasy Inn Bushwick One,24020292,Cristiano,Brooklyn,Bushwick,40.70121,-73.91986,Private room,85,1,89,2019-07-05,4.35,4,58 +21462783,1BR APT in Morningside Heights,5057804,Mike,Manhattan,Morningside Heights,40.80605,-73.96496,Entire home/apt,125,3,16,2019-07-01,0.79,1,25 +21463041,DLKLC Residence,112176279,Arda,Brooklyn,Bushwick,40.70154,-73.92297,Private room,89,2,0,,,1,0 +21467409,Beautiful Brooklyn Brownstone,155885449,Kelly,Brooklyn,Park Slope,40.67643,-73.97824,Entire home/apt,105,7,7,2019-01-07,0.36,1,0 +21467493,"Cozy, fun, and close to everything",739592,Walton,Brooklyn,Williamsburg,40.71563,-73.95815,Private room,120,4,0,,,1,0 +21468762,great location for low price,61696564,Natalia,Manhattan,Greenwich Village,40.72849,-73.99987,Shared room,56,35,1,2017-10-26,0.05,2,0 +21469568,Sunny & Gorgeous master bedroom by central park,115228513,Aly,Manhattan,Upper West Side,40.80272,-73.96629,Private room,129,1,83,2019-06-09,4.00,2,365 +21469886,Sky Light Studio Chelsea,1358567,Jolie And Max,Manhattan,Chelsea,40.74387,-73.99766,Entire home/apt,180,3,6,2019-05-19,0.42,1,20 +21470099,Sunny Living Room with Comfortable Futon,3038856,Samir,Brooklyn,Williamsburg,40.7141,-73.96163,Shared room,35,1,0,,,3,0 +21471116,Sweet Home in the Heart of Manhattan,16301391,Majer,Manhattan,Midtown,40.74557,-73.98216,Private room,130,1,9,2017-12-27,0.44,1,0 +21471517,Charming Cozy Bedroom in Bushwick art house,155923396,Kelly,Brooklyn,Bushwick,40.70067,-73.92752,Private room,35,2,22,2019-06-24,1.89,3,29 +21471540,Charming Bushwick Shared Space,155923396,Kelly,Brooklyn,Bushwick,40.70031,-73.92848,Private room,25,2,35,2019-04-30,1.80,3,3 +21472026,Studio Apartment Available over Thanksgiving,17592183,Laura,Manhattan,Upper East Side,40.76241,-73.96134,Entire home/apt,150,5,1,2017-11-18,0.05,1,0 +21472364,Water Front Building - Bright/Luxury 1 BR,92183983,Christina,Brooklyn,Greenpoint,40.72865,-73.95937,Entire home/apt,120,5,17,2019-05-23,0.83,1,0 +21472882,Cozy Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71766,-73.94937,Private room,60,2,7,2018-10-15,0.34,3,0 +21473096,FourTwin bunkbeds- 5 minutes from JFK,114975592,John And Colleen,Queens,Springfield Gardens,40.66668,-73.76417,Private room,90,1,2,2019-03-05,0.14,4,84 +21473222,"Luxury, Zen 1BR in N Williamsburg",2823757,Meg,Brooklyn,Williamsburg,40.71719,-73.95427,Entire home/apt,109,2,4,2018-12-09,0.36,1,0 +21473314,Cozy Room in the Heart of NYC,31154454,Elliot,Manhattan,Kips Bay,40.74155,-73.98235,Private room,70,1,119,2019-06-23,5.78,2,3 +21473601,Over-sized studio in UnionSquare/EastVillage!,15894157,Lizzie,Manhattan,East Village,40.73073,-73.98601,Entire home/apt,145,3,27,2019-05-26,1.33,1,7 +21473648,Must Love Dogs and Tribeca NYC,155944475,Robert,Manhattan,Tribeca,40.71844,-74.00901,Private room,200,1,0,,,1,0 +21473761,East Village Artsy ONE-BEDROOOM ENTIRE APT,51547093,Kai Chieh,Manhattan,Lower East Side,40.72035,-73.98542,Entire home/apt,225,4,1,2017-12-20,0.05,2,0 +21474497,Studio with Private Terrace on Central Park West,2628354,Andrew,Manhattan,Upper West Side,40.78025,-73.97585,Entire home/apt,200,30,5,2018-02-11,0.25,1,0 +21474832,Douglaston (apt 2) Room 3,18996093,Leonard,Queens,Douglaston,40.75612,-73.72954,Private room,40,1,9,2019-05-18,0.49,5,252 +21474885,LAVISHING COMFORT IN BROOKLYN BROWNSTONE NYC,2015914,Majar,Brooklyn,Bushwick,40.68818,-73.91519,Private room,75,3,2,2019-06-30,1.20,8,365 +21475999,"Single Cabins (Chelsea, Manhattan, NYC)",117365574,Maria,Manhattan,Chelsea,40.7497,-73.99515,Private room,85,1,113,2019-06-22,5.50,5,292 +21476123,Bright Classic DUMBO Loft,6243641,Emily,Brooklyn,DUMBO,40.70223,-73.98971,Entire home/apt,145,2,1,2017-10-31,0.05,1,0 +21476604,Entire 1 bed Apt by Central/Morningside Park,12216173,Fan,Manhattan,Harlem,40.80543,-73.95739,Entire home/apt,150,1,21,2019-06-21,1.14,1,2 +21477282,Entire Apartment in Brooklyn Brownstone,6357428,Sophia,Brooklyn,Crown Heights,40.67592,-73.94792,Entire home/apt,100,2,3,2017-12-31,0.15,1,0 +21477403,Luxury Apt - 10 mins to Midtown and Williamsburg,16445934,Gina,Queens,Long Island City,40.74622,-73.94055,Entire home/apt,100,4,2,2018-09-30,0.19,1,0 +21477816,Sleek and Modern Brooklyn Apartment,155990761,Kevin,Brooklyn,Bushwick,40.69059,-73.91805,Private room,42,2,35,2018-07-22,1.69,1,0 +21481778,Adorable Upper East Side 1br,1607289,Aspen,Manhattan,Upper East Side,40.77196,-73.95454,Entire home/apt,299,2,1,2017-12-31,0.05,1,0 +21483653,Cozy Private Room with Patio in Bed-Stuy!,66234873,Zach,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94235,Private room,50,5,62,2019-06-23,3.58,1,12 +21483857,East 63rd street 1bd Serviced Apartment,22541573,Ken,Manhattan,Upper East Side,40.76369,-73.96122,Entire home/apt,200,30,1,2018-04-22,0.07,87,364 +21484161,Cozy Brownstone Apartment in South Harlem,156047478,Doron,Manhattan,Harlem,40.80639,-73.94829,Entire home/apt,105,30,5,2019-06-02,0.28,2,195 +21485026,"Beautiful Room in Bushwick, Bk. (Hablo Español)",134419840,Damary,Brooklyn,Bushwick,40.69242,-73.90441,Private room,60,30,5,2019-06-06,0.24,1,141 +21485174,Large One Bedroom in NYC Brownstone,156060717,Pascale,Manhattan,Harlem,40.81535,-73.94713,Entire home/apt,175,3,33,2019-05-23,1.61,1,1 +21485695,Oasis: Cozy Comfy,156066689,Sharon,Bronx,Concourse,40.82276,-73.92682,Entire home/apt,114,2,79,2019-07-01,3.88,1,283 +21485867,"Popular Place, Brooklyn",156068349,Maureen,Brooklyn,Brownsville,40.65732,-73.90666,Entire home/apt,62,2,0,,,1,0 +21486004,Elegant Studio,67072838,Oscar,Manhattan,Midtown,40.74703,-73.98738,Entire home/apt,160,4,48,2019-06-08,2.44,1,327 +21486201,Private Bedroom in Heart of Williamsburg,16572580,Travis,Brooklyn,Williamsburg,40.70907,-73.9495,Private room,184,2,1,2017-10-25,0.05,2,0 +21486579,Times Square Holiday Rental Loft!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76565,-73.98554,Shared room,299,2,37,2019-02-18,1.80,5,188 +21487004,Gorgeous Apartment in Literally Perfect Location,87236554,Annie,Manhattan,East Village,40.73352,-73.98777,Private room,103,1,39,2018-08-07,2.00,1,0 +21487220,UES 1BR Oasis,156081840,Oren,Manhattan,Upper East Side,40.76767,-73.95609,Entire home/apt,225,2,7,2019-05-06,0.37,1,0 +21488093,Rod,128142697,Rod,Manhattan,Upper East Side,40.76719,-73.96973,Entire home/apt,750,4,0,,,2,0 +21489266,"Fun, Stylish, 3 Bedroom Pad 20 Mins to Midtown",154741428,Kyle,Manhattan,Harlem,40.82056,-73.95338,Entire home/apt,249,3,3,2018-08-11,0.21,1,0 +21489407,Cozy New Yorkers home away from home,152622375,Esther,Brooklyn,East New York,40.66372,-73.88285,Entire home/apt,75,2,27,2019-06-24,1.42,2,151 +21489753,Large One Bedroom Apartment near Grand Central,26138840,Graham,Manhattan,Murray Hill,40.74689,-73.9781,Entire home/apt,175,2,1,2017-10-25,0.05,1,0 +21490120,Trendy and Comfortable Brooklyn Abode,18218495,Sofia,Brooklyn,Williamsburg,40.71227,-73.93618,Private room,58,2,11,2019-05-19,0.73,1,88 +21490301,"Gorgeous, bright one-bed in amazing location",105340458,David,Manhattan,Lower East Side,40.72077,-73.98923,Entire home/apt,250,5,8,2019-03-15,0.43,1,0 +21490751,Clean & Cozy Downtown Manhattan Studio,26749889,Shang,Manhattan,Chinatown,40.71601,-73.99056,Entire home/apt,110,5,4,2018-03-27,0.19,1,0 +21490787,A walk away from the best in Williamsburg,56391145,Eric,Brooklyn,Greenpoint,40.72468,-73.9523,Entire home/apt,150,3,0,,,2,0 +21490894,BRIGHT SUNNY LOFT,56411266,Colin,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95908,Private room,60,3,0,,,1,0 +21491135,Diamond Peach,19708200,Larry,Brooklyn,Canarsie,40.63895,-73.91606,Entire home/apt,65,3,65,2019-06-20,3.19,3,305 +21491460,Bronx room near mall,66807235,Dexter,Bronx,Melrose,40.82251,-73.91125,Private room,60,3,0,,,1,90 +21496794,Private Crown Heights Brooklyn/Sterling 2/5 Trains,2230419,David,Brooklyn,Prospect-Lefferts Gardens,40.66308,-73.9482,Private room,80,1,27,2019-07-05,1.66,1,0 +21497189,Room in Brownstone (Now Available),156175292,Gaby,Brooklyn,Bedford-Stuyvesant,40.6847,-73.92904,Private room,25,1,4,2018-09-26,0.19,1,34 +21498344,Brooklyn's Finest 1BR APT in BedStuy/Clinton Hill,51729061,Mike,Brooklyn,Bedford-Stuyvesant,40.69147,-73.95572,Entire home/apt,150,3,17,2019-06-25,1.45,1,0 +21499536,Sunny and cozy Upper West Side Apartment,8132596,Aniko,Manhattan,Upper West Side,40.78858,-73.97462,Entire home/apt,170,3,34,2018-04-01,1.66,1,0 +21499719,"Cozy, Private Guest Suite Near JFK, LGA & NYC",138235784,Kay,Queens,Forest Hills,40.7081,-73.85206,Entire home/apt,70,1,29,2019-06-03,1.47,2,225 +21500449,Authentic Brklyn Experience - Room A,156042211,Tia,Brooklyn,Canarsie,40.64963,-73.89817,Private room,65,4,8,2018-02-17,0.39,4,37 +21501184,Classy Modern 2 Beds for 2 People-Staten Island NY,99202586,Thelma,Staten Island,Randall Manor,40.63118,-74.12866,Private room,55,2,4,2018-10-06,0.20,5,355 +21501295,Beautiful Prime Soho/Nolita 2-Bed Apartment,156214681,Joshua,Manhattan,Nolita,40.72036,-73.99633,Entire home/apt,550,4,87,2019-06-23,4.22,1,295 +21501507,.,156216145,Lisa,Manhattan,Financial District,40.71018,-74.01325,Entire home/apt,215,2,0,,,1,0 +21501622,Quaint Retreat live like a local 2,975030,Helena,Brooklyn,Bedford-Stuyvesant,40.67664,-73.91163,Entire home/apt,90,3,36,2019-07-01,1.83,1,253 +21502547,LOLA'S NEST-One Bedroom apt-8 mins from NY JFK,156225107,Caroline,Queens,Laurelton,40.68021,-73.74167,Entire home/apt,110,1,45,2019-06-30,2.24,1,170 +21502902,Warm & Cozy,156231243,Debra,Brooklyn,Bay Ridge,40.6338,-74.03162,Private room,30,3,0,,,1,0 +21503589,Newly Renovated/Historic-Landmarked Brownstone!,50332029,Mario,Manhattan,Harlem,40.82621,-73.94549,Entire home/apt,95,1,139,2019-06-29,6.90,1,41 +21503830,Provincial welcomes the new in revitalized Bklyn,310296,Jaqui And Mark,Brooklyn,Prospect-Lefferts Gardens,40.66376,-73.94643,Private room,35,1,45,2019-06-23,2.42,2,52 +21504381,"20 minutes from Manhattan,separated big bedroom.",155977656,Hongyan,Queens,Forest Hills,40.71711,-73.8347,Private room,70,1,34,2019-06-24,1.67,1,93 +21504532,Beautiful apartment direct in Midtown Manhattan,156246842,Sandra,Manhattan,Hell's Kitchen,40.76254,-73.98812,Private room,150,3,54,2019-06-22,2.67,3,24 +21504803,Modern Industrial Williamsburg 1br Apt on Bedford,156249849,Nicole,Brooklyn,Williamsburg,40.71873,-73.95535,Entire home/apt,80,2,18,2019-05-19,0.88,1,12 +21504818,Large Center Manhattan Studio,39142433,Ryan,Manhattan,Kips Bay,40.74484,-73.9789,Entire home/apt,160,1,12,2018-01-21,0.59,1,0 +21504961,Carroll Gardens getaway,102228163,Cesar,Brooklyn,Carroll Gardens,40.67831,-74.00186,Entire home/apt,90,6,0,,,3,0 +21505197,Heart of Brooklyn Heights,3900540,Erin,Brooklyn,Brooklyn Heights,40.7008,-73.99385,Entire home/apt,196,1,39,2019-07-07,2.00,1,96 +21505275,Private Room in Industrial Apartment w/ rooftop!,42999896,Sander,Brooklyn,Bedford-Stuyvesant,40.68903,-73.93192,Private room,62,1,8,2018-04-15,0.39,1,0 +21505666,*AMAZING AND COZY SPACE 2 MIN FROM THE SUBWAY,156259857,Joao,Brooklyn,Cypress Hills,40.68,-73.90447,Private room,36,2,70,2019-06-12,3.43,3,326 +21512039,"Perfect Studio, Great location!",16255906,Alejandra,Manhattan,Financial District,40.70507,-74.009,Private room,143,2,3,2018-02-08,0.15,1,0 +21512337,"Great Studio apt, great location in Hells Kitchen!",150687748,Rodrigue,Manhattan,Hell's Kitchen,40.7661,-73.98843,Entire home/apt,120,2,3,2019-06-30,1.14,1,0 +21512357,NYC Modern Luxury Apartment 15 Mins to Wall Str.,3424386,V,Brooklyn,Park Slope,40.68111,-73.97994,Entire home/apt,129,3,7,2019-04-10,0.38,1,12 +21512977,Private Bushwick Room in Great Location!,26804769,Andrea,Brooklyn,Bushwick,40.69881,-73.91278,Private room,32,1,3,2017-11-20,0.15,1,0 +21513143,Airy Ridgewood Brownstone,70035028,Rebecca And Jolie,Queens,Ridgewood,40.70341,-73.89624,Private room,48,2,39,2019-06-28,1.91,1,231 +21513332,Grand Central Gem,6459610,Brian,Manhattan,Murray Hill,40.74819,-73.97642,Entire home/apt,150,2,61,2019-06-23,2.95,1,26 +21514099,Cozy quirky 1 bed apartment in Tribeca/Soho,10972769,Claudia,Manhattan,SoHo,40.7251,-74.00775,Entire home/apt,250,2,5,2018-08-05,0.26,1,0 +21514294,LES / Lower East Side | large room with 2 windows,156332912,Leon,Manhattan,Lower East Side,40.72052,-73.98347,Private room,70,2,1,2017-11-05,0.05,1,0 +21514623,Bedroom with terrace in the heart of Clinton Hill,16501606,Camille,Brooklyn,Clinton Hill,40.69471,-73.96633,Private room,100,21,15,2019-06-06,0.97,1,89 +21515092,"Sunny, peaceful room in Ridgewood/Bushwick",102599996,Dean,Queens,Ridgewood,40.70707,-73.91455,Private room,40,30,6,2018-05-02,0.29,1,0 +21515431,Chinatown Abode,48053679,Mary,Manhattan,Chinatown,40.7141,-73.99157,Entire home/apt,110,2,34,2019-06-22,1.73,1,15 +21516275,UES Modern Style 1 Bedroom Near 2 Ave Subway Line,156352453,Lyjah,Manhattan,Upper East Side,40.76667,-73.9587,Entire home/apt,200,2,41,2019-06-23,2.06,1,158 +21516411,"Spacious, Cozy & Quiet Chelsea Designer Apartment",6374043,George,Manhattan,Chelsea,40.74379,-73.99918,Entire home/apt,250,2,8,2018-12-02,0.41,1,253 +21516443,Cozy bedroom in Williamsburg apartment home!,112966930,Kayla,Brooklyn,Williamsburg,40.71218,-73.96268,Private room,60,2,2,2017-11-08,0.10,1,0 +21516649,Small Private Room in Big & Cozy apartment,3404840,Jessamine,Brooklyn,Crown Heights,40.6739,-73.9535,Private room,60,2,2,2017-11-07,0.10,1,0 +21517530,GSG Inn - A totally private historic landmark inn,136214003,Gary,Staten Island,St. George,40.64591,-74.08399,Entire home/apt,125,1,108,2019-07-06,5.41,1,319 +21517564,"Cozy Gated Studio Apartment, 25 min to Manhattan",15088853,Nick,Queens,Ditmars Steinway,40.77511,-73.91992,Entire home/apt,85,1,82,2019-07-03,6.03,1,46 +21518777,Williamsburg high ceiling loft,2424168,Tom,Brooklyn,Williamsburg,40.71167,-73.95785,Entire home/apt,140,3,2,2017-11-18,0.10,1,0 +21519958,Walk to City College & Columbia. Cheery/Clean,85370670,Melissa,Manhattan,Harlem,40.8236,-73.9516,Private room,67,1,27,2019-05-29,1.66,1,160 +21520497,Peace of mind,156396144,Vic,Bronx,Morrisania,40.82995,-73.90342,Entire home/apt,50,1,0,,,1,0 +21524324,Manhattan Club - New Years Eve,33910461,Colleen,Manhattan,Midtown,40.76391,-73.98238,Private room,300,3,0,,,1,0 +21524489,Amazing Location! Apartment in South Williamsburg,154239561,Ismael,Brooklyn,Williamsburg,40.71152,-73.95787,Private room,75,2,6,2019-03-24,0.30,2,307 +21524671,Cozy townhouse with an amazing back yard,1196023,Cat,Queens,Ridgewood,40.7088,-73.91387,Entire home/apt,140,3,54,2019-06-25,2.82,1,230 +21524675,Entire floor in Brooklyn Townhouse w/large patio,134516,Eren,Brooklyn,Williamsburg,40.71341,-73.96556,Entire home/apt,165,3,32,2019-06-24,1.63,1,10 +21526187,West Village Bedroom in duplex apartment,118137788,Chris,Manhattan,West Village,40.72986,-74.00465,Private room,100,2,3,2017-11-16,0.15,1,0 +21527378,Williamsburg 1 Bedroom Apartment - 2L,156436372,Sonia,Brooklyn,Williamsburg,40.71549,-73.94973,Entire home/apt,100,30,2,2018-12-09,0.15,4,332 +21527485,G4Newly Renovat Long Island City Room Private Bath,79105834,Leo,Queens,Long Island City,40.7539,-73.93419,Private room,55,1,64,2019-06-15,3.21,9,285 +21527655,1 Bedroom apt in the heart of Williamsburg - 2R,156436372,Sonia,Brooklyn,Williamsburg,40.7163,-73.95087,Entire home/apt,100,30,4,2018-09-08,0.20,4,323 +21528329,"Organic pre-war 1BR Astoria, near MRNW trains",25553833,Chandley,Queens,Astoria,40.75766,-73.92738,Entire home/apt,108,4,11,2018-09-03,0.56,1,0 +21528682,Comfortable Couch in a Great Location! Bushwick.,13917921,Robert,Brooklyn,Bushwick,40.6985,-73.93384,Shared room,42,2,13,2019-04-14,0.65,2,365 +21528920,Room in Big Apartment Available in Flatbush,14700562,Juli,Brooklyn,Flatbush,40.65182,-73.95804,Private room,39,7,0,,,1,0 +21529148,Sunny Private Couples Studio,5887081,Michelle,Brooklyn,Bedford-Stuyvesant,40.69095,-73.95338,Entire home/apt,100,7,2,2019-06-21,1.50,2,189 +21529679,BEST of Bushwick Brooklyn / Subway 1 blk/NYC 15min,5540379,Emily,Brooklyn,Bushwick,40.70393,-73.92377,Entire home/apt,95,2,62,2019-06-30,3.08,1,34 +21530044,Beautiful Renovated Studio in the City!,7114486,Sara,Manhattan,Gramercy,40.73625,-73.98597,Entire home/apt,140,2,20,2019-05-07,0.99,1,29 +21530389,"Charming one-bedroom in Greenpoint, Brooklyn",1880807,Robert,Brooklyn,Greenpoint,40.73279,-73.95426,Entire home/apt,110,6,5,2018-07-15,0.24,1,0 +21530562,Modern Cozy & Clean Private 3 Bedroom Mins to NYC,154088360,Kelly,Queens,Long Island City,40.75331,-73.93907,Entire home/apt,300,4,65,2019-07-01,3.27,2,221 +21531023,Quaint Studio Space,156490310,Niecia,Brooklyn,East New York,40.6697,-73.88407,Entire home/apt,70,1,56,2019-07-01,4.41,1,64 +21531318,露西套房(Lucy Apt.),150835318,Lucy,Queens,Flushing,40.76573,-73.82822,Private room,85,1,12,2019-06-22,0.74,1,171 +21535750,2 bedroom third floor in the heart of Brooklyn.,156535560,Alex,Brooklyn,Flatbush,40.64116,-73.95991,Entire home/apt,55,2,70,2019-06-24,3.64,1,5 +21535963,Midtown Manhattan Oasis (2-Bedroom Vacation Suite),41123114,Jeff & Kelly,Manhattan,Theater District,40.76163,-73.98023,Private room,949,2,7,2019-01-01,0.36,1,8 +21536775,Sunny master suite with huge balcony for BBQ,108157026,Xiyan,Brooklyn,Williamsburg,40.71564,-73.95821,Private room,120,2,0,,,1,0 +21537886,"Spacious, quiet loft close to EVERYTHING! Views!",12678346,Cody,Brooklyn,Greenpoint,40.72552,-73.95108,Shared room,45,7,0,,,1,0 +21538855,Long Island City Living,1825159,Yanna,Queens,Long Island City,40.7574,-73.93011,Entire home/apt,125,3,54,2019-06-30,2.90,1,83 +21539105,"** SoHo: Clean, Bright, Tatami Room",104450469,Janet,Manhattan,SoHo,40.72394,-73.99656,Private room,80,3,2,2018-06-11,0.11,2,0 +21539835,"【South Facing 1b1b Luxury,5th ave&time square】",156571787,Daisy,Manhattan,Midtown,40.74607,-73.98547,Entire home/apt,300,2,1,2017-10-31,0.05,1,0 +21540035,"Cozy Quiet Clean 1BR APT in Hudson Heights, NYC!",110553561,Mitchell,Manhattan,Washington Heights,40.85561,-73.93306,Entire home/apt,99,2,12,2019-06-21,0.61,1,0 +21540062,DaDukes Marvel,139879568,Alberto,Queens,Long Island City,40.7647,-73.93914,Private room,71,1,63,2019-06-22,3.19,6,360 +21540314,Clean & quiet home on quiet block,156585195,Gerard,Brooklyn,Bergen Beach,40.62052,-73.91145,Entire home/apt,95,2,41,2018-08-27,2.04,2,4 +21540496,Stylish 1 BD - 10 min to Manhattan & Central Park,156587568,Anna,Queens,Astoria,40.76129,-73.92009,Entire home/apt,123,1,56,2019-06-14,2.73,1,126 +21540737,Cozy Brooklyn Oasis 2,133004690,Linda,Brooklyn,Bedford-Stuyvesant,40.68709,-73.94147,Entire home/apt,80,2,70,2019-07-04,3.52,2,248 +21541423,Refurbished Private & Pretty Apartment Near City,16514175,Karen,Queens,Jackson Heights,40.74763,-73.88468,Entire home/apt,95,2,46,2019-06-21,2.29,5,168 +21541783,Bright and cozy studio apartment,156600754,Mike,Bronx,Longwood,40.82245,-73.90875,Entire home/apt,110,2,19,2018-12-16,0.97,1,0 +21546050,"Luxury Apt, Balcony, Rooftop - 20min Central Park",3749848,Sem,Queens,Long Island City,40.76654,-73.93508,Entire home/apt,90,6,0,,,1,0 +21546425,"Cozy, quiet one bedroom in the heart of Bedstuy!",37149695,Angelo,Brooklyn,Bedford-Stuyvesant,40.69119,-73.94339,Entire home/apt,100,3,1,2018-01-02,0.05,1,0 +21547318,Great affordable room 2,42421006,Jose,Manhattan,Washington Heights,40.84859,-73.942,Private room,75,1,3,2019-07-01,0.45,2,56 +21547791,Crown Heights Newly Renovated 3 Bedroom Apartment,88001494,Mendy,Brooklyn,Crown Heights,40.66389,-73.93736,Private room,150,2,16,2019-06-11,0.87,3,66 +21548054,Gorgeous East Village Luxury Apt,15508421,Peter,Manhattan,East Village,40.72834,-73.97907,Entire home/apt,400,30,0,,,1,119 +21548325,"Private comfortable bedroom in Bay Ridge, Brooklyn",69054780,Tamara,Brooklyn,Fort Hamilton,40.62245,-74.02958,Private room,55,7,3,2018-04-02,0.15,1,0 +21548449,2 Big bedrooms apartment in Brooklyn,4446647,Alex,Brooklyn,Flatbush,40.6452,-73.95958,Entire home/apt,120,5,1,2017-11-10,0.05,1,0 +21549450,True New Yorker Experience in West Village,156676400,Leila,Manhattan,Greenwich Village,40.73054,-74.0013,Entire home/apt,165,3,14,2019-01-02,0.69,1,0 +21549541,"Spacious, sunny apartment near Prospect Park",1745206,Channing,Brooklyn,Crown Heights,40.66598,-73.95427,Entire home/apt,150,2,10,2019-03-17,0.53,1,0 +21549554,*NEWLY RENOVATED PRIVATE ROOM*,48183551,Carlos,Queens,Elmhurst,40.74403,-73.88167,Private room,58,6,50,2019-07-07,2.56,5,257 +21549636,AMAZING PRE-WAR 2 BR APT IN WILLIAMSBURG,605589,Patricio,Brooklyn,Williamsburg,40.71547,-73.94346,Entire home/apt,150,10,1,2019-05-29,0.73,1,160 +21549850,Cozy apt in Park Slope (room and private bathroom),49496312,Bea And Eloise,Brooklyn,Park Slope,40.66993,-73.98137,Private room,60,3,22,2019-04-21,1.09,1,6 +21549879,Luxury Williamsburg Loft. Two blocks from Subway!,4939914,Adam,Brooklyn,Williamsburg,40.71807,-73.9545,Entire home/apt,250,30,3,2018-06-02,0.15,1,0 +21549898,"UWS Jewel, oval living room in a charming hometown",6420489,Lorena,Manhattan,Upper West Side,40.77845,-73.98198,Entire home/apt,315,4,16,2019-05-31,0.84,1,7 +21550105,Cozy & Tidy Private Room at Upper West Manhattan,29021587,Oscar,Manhattan,Morningside Heights,40.80967,-73.95781,Private room,75,3,0,,,1,0 +21550242,ENTIRE Apt in Williamsburg < 1 block to L train,1913749,Kelly,Brooklyn,Williamsburg,40.71259,-73.94189,Entire home/apt,125,4,11,2019-06-24,0.55,1,11 +21550302,JFK Comfort.5 Mins from JFK Private Bedroom & Bath,156684502,Nalicia,Queens,Springfield Gardens,40.6611,-73.7683,Private room,80,1,403,2019-07-06,19.75,3,26 +21550437,Charming Prvt Rm Students/Travelers 8 min to SIUH,104812805,Amarjit S,Staten Island,Arrochar,40.59746,-74.08406,Private room,32,4,26,2019-05-19,1.33,8,315 +21550717,Cute studio in Ditmas Park,7229833,Melody,Brooklyn,Kensington,40.63178,-73.97128,Entire home/apt,32,1,0,,,1,0 +21550720,"Sunny, Peaceful Room in Southern Harlem",91747804,Gigi,Manhattan,Harlem,40.80169,-73.95154,Private room,80,3,33,2019-06-10,1.64,1,39 +21550808,Stylish and Spacious with Convenient location,45466335,Boris,Manhattan,Harlem,40.82148,-73.9366,Private room,69,1,67,2019-06-14,3.47,2,28 +21550933,Large 1 Bedroom Apt - Amazing Location SoHo/Nolita,70844761,Cynthia,Manhattan,Nolita,40.7237,-73.99454,Entire home/apt,200,5,7,2018-12-30,0.36,1,1 +21551617,Summer Savings! Central Park 1BR/1Bath/UWS,156699963,Jennifer,Manhattan,Upper West Side,40.77538,-73.97743,Entire home/apt,350,1,11,2019-05-22,0.54,1,80 +21551787,Alluring Private Bedroom in Spacious UWS Apt,48087870,Trevor,Manhattan,Upper West Side,40.79741,-73.9697,Private room,150,2,27,2019-06-09,1.33,1,63 +21551817,Cozy bedroom in Crown Heights Duplex,83585937,J.,Brooklyn,Crown Heights,40.6717,-73.91745,Private room,50,2,35,2019-06-28,1.80,2,174 +21558111,"Clean, cozy and bright room 4 mins from subway!",13400096,Ron,Brooklyn,Crown Heights,40.6777,-73.94251,Private room,48,45,3,2018-08-04,0.15,3,0 +21558144,Private room in a cozy apartment,23425862,Gagandeep,Brooklyn,Bedford-Stuyvesant,40.69169,-73.95893,Private room,49,1,0,,,2,0 +21558456,"Midtown-Luxury-Safe! +Nearby UN, NYU & Bellevue.",156758470,Sibel,Manhattan,Murray Hill,40.74567,-73.97578,Shared room,150,3,17,2019-05-22,1.17,1,14 +21559273,Large 1 Bedroom Apt in Times Square sleeps 4ppl,132619769,Karlos,Manhattan,Hell's Kitchen,40.75744,-73.99438,Entire home/apt,230,2,21,2019-06-22,1.09,1,120 +21559636,QUEEN ROOM IN 1500 SQ FT WBURG BALLROOM APT,2212344,Enrique,Brooklyn,Williamsburg,40.712,-73.95766,Private room,90,4,11,2019-01-01,0.55,3,117 +21560584,Haute Brand New East Village Manhattan Apartment,3949502,Páidi,Manhattan,East Village,40.72728,-73.98865,Private room,75,14,13,2018-08-07,0.65,1,27 +21561860,"Modern, clean, NEW apt 1 block from train!",143696286,Peter Alex,Brooklyn,Cypress Hills,40.67929,-73.8847,Private room,89,1,23,2019-05-16,1.14,1,74 +21561964,Bright and cozy 2bs 2bths near JFK and the city,15145474,Denisse,Queens,Ozone Park,40.68146,-73.84726,Entire home/apt,150,4,38,2019-06-19,2.66,4,51 +21562024,Excellent Find in Fort Greene,14163033,Lucas,Brooklyn,Fort Greene,40.68814,-73.97108,Entire home/apt,200,2,0,,,1,0 +21562307,Cozy private room in Astoria,155818580,Harymir,Queens,Ditmars Steinway,40.77219,-73.90269,Private room,65,2,71,2019-07-05,3.46,1,60 +21562330,Franklin Ave Stay,5754627,Keren,Brooklyn,Crown Heights,40.67254,-73.95541,Private room,94,1,9,2018-11-01,0.46,1,0 +21562548,Modern Bedstuy brownstone 2 bedroom apartment,6441887,Su,Brooklyn,Bedford-Stuyvesant,40.6906,-73.93398,Entire home/apt,95,7,1,2017-12-31,0.05,2,0 +21563750,Sunny Yellow BUSHWICK apt 25min to city SLEEPS 6 !,3532263,Alejandro,Brooklyn,Bushwick,40.69723,-73.92244,Entire home/apt,159,2,44,2019-06-24,2.15,4,352 +21563815,Architect's duplex Apt in Historic Brooklyn,2179149,Olivier,Brooklyn,Bedford-Stuyvesant,40.681,-73.92894,Entire home/apt,150,4,3,2018-10-23,0.16,1,0 +21564252,Cozy Red BUSHWICK Apt 25 min to city SLEEPS 6 !!,3532263,Alejandro,Brooklyn,Bushwick,40.69809,-73.92244,Entire home/apt,159,2,51,2019-06-19,2.49,4,357 +21564493,Cozy Washington Heights Home,143405573,Ryan,Manhattan,Washington Heights,40.83294,-73.94218,Private room,80,2,1,2017-11-19,0.05,1,0 +21564547,Gorgeous Apartment in Nolita for 4 Guests!!!,10457196,Richard,Manhattan,Little Italy,40.71932,-73.99522,Entire home/apt,190,31,1,2018-04-12,0.07,11,61 +21564596,"Large,Bright & fully Furnished room in a 3 bdm Apt",3053519,Ivo,Manhattan,East Harlem,40.79697,-73.93757,Private room,70,4,0,,,1,0 +21564599,"Best in Brooklyn, closest to Manhattan!!",39362787,Mia,Brooklyn,Cobble Hill,40.68631,-73.99763,Private room,59,7,33,2018-10-07,1.67,1,0 +21564694,Gorgeous Loft in Nolita with Elevator and Balcony!,10457196,Richard,Manhattan,Little Italy,40.7192,-73.9965,Entire home/apt,190,30,4,2018-11-21,0.22,11,328 +21564733,Private 2 Bdrm in Heart of BedStuy (HUGE BACKYARD),73856823,Sarah,Brooklyn,Bedford-Stuyvesant,40.69258,-73.94063,Entire home/apt,200,3,4,2019-05-01,0.34,1,0 +21565383,"Private bedroom 10 min to LGA, 15 min to Manhattan",153410151,Tom,Queens,Astoria,40.7674,-73.92656,Private room,69,1,129,2019-07-07,6.29,1,349 +21565540,1 Bedroom in Williamsburg,30284592,Lewis,Brooklyn,Williamsburg,40.71078,-73.94666,Private room,70,1,1,2017-11-08,0.05,1,0 +21565682,Charming 1 Bedroom in the heart of New York City,42133913,Thomas,Manhattan,Greenwich Village,40.72856,-74.00097,Entire home/apt,170,3,8,2018-03-25,0.41,1,0 +21566103,"Really Spectacular 1 Bedroom, Great Design",61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76132,-73.99298,Entire home/apt,133,30,2,2018-12-20,0.11,91,4 +21566311,Cozy & Spacious Room in E. Williamsburg.(with AC),85431106,Tian,Brooklyn,Williamsburg,40.70883,-73.94242,Private room,60,1,21,2018-07-20,1.46,1,0 +21566845,Seasonal Exposed Brick Private Bedroom !!!,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9387,Private room,50,2,15,2019-07-04,0.75,5,4 +21566887,"Great location,near nyc airports,subway &airtrain",6271042,Islandgetawayz,Queens,Richmond Hill,40.69659,-73.81435,Entire home/apt,90,2,54,2019-07-07,2.69,1,283 +21566909,2 bedroom floor-thru in heart of Park Slope -,4058709,Elise And Dave,Brooklyn,Park Slope,40.67497,-73.97913,Entire home/apt,235,5,41,2019-06-27,2.22,2,219 +21567303,Large apartment in a doorman building on the UES,1772076,Salman,Manhattan,Upper East Side,40.77316,-73.96237,Shared room,59,1,7,2018-09-23,0.34,1,0 +21568069,Spacious & Bright Brooklyn Apartment,46723798,Brooke,Brooklyn,Greenpoint,40.7255,-73.94428,Entire home/apt,100,2,13,2019-06-10,0.66,1,1 +21568187,Large Skylight Private Room,131476075,Lakisha,Brooklyn,Bushwick,40.68741,-73.91138,Private room,51,1,19,2019-06-02,0.94,8,175 +21568341,"Charming, cozy, clean, affordable & spacious room",156843123,IndraRisma,Queens,Flushing,40.73858,-73.80809,Private room,65,2,4,2018-10-07,0.28,1,364 +21568479,Williamsburg house - Master Bedroom,536745,Johnny,Brooklyn,Williamsburg,40.71846,-73.94489,Private room,95,3,6,2018-04-22,0.30,3,0 +21568652,Habitacion Privada,152089883,Patricia,Queens,Ozone Park,40.68918,-73.84262,Private room,50,7,1,2018-01-02,0.05,1,363 +21568943,Shareroom in Midtown Manhattan 1or2 beds Available,156246842,Sandra,Manhattan,Hell's Kitchen,40.7614,-73.98682,Shared room,68,3,9,2018-08-01,0.45,3,0 +21569763,Cheery Bedroom in Brooklyn Apartment,3075854,Alexa,Brooklyn,Sunset Park,40.64046,-74.01337,Private room,35,3,3,2018-09-07,0.16,1,0 +21570741,A peaceful place in the heart of Inwood,67974923,Starling,Manhattan,Inwood,40.86406,-73.91971,Entire home/apt,110,4,15,2019-03-11,0.77,1,19 +21577066,"Bright, Spacious Private Room in Williamsburg!",8628781,Tessa,Brooklyn,Williamsburg,40.71075,-73.95935,Private room,70,1,1,2018-04-20,0.07,1,0 +21577526,Beautiful and spacious room next to Subway station,84491220,Maka,Brooklyn,Flatbush,40.65021,-73.96293,Private room,65,2,13,2019-04-29,0.66,1,310 +21577679,"Fabulous, Spacious Studio by CP. An Artful Retreat",32230738,Allison,Manhattan,Upper West Side,40.78737,-73.97293,Entire home/apt,145,3,75,2019-06-25,3.73,1,110 +21577773,Private Room on Ground Floor close to Everything,154965091,Joe,Manhattan,Hell's Kitchen,40.76914,-73.98757,Private room,125,2,61,2019-05-17,3.02,4,95 +21577856,Charming Park Slope Brownstone,141933,Heather,Brooklyn,Park Slope,40.67023,-73.98311,Entire home/apt,250,1,48,2019-07-01,2.38,1,2 +21578157,Quaint and Large midtown 1Bed next to Empire state,156921633,Jamie,Manhattan,Kips Bay,40.74128,-73.98069,Entire home/apt,275,2,93,2019-06-18,4.61,1,66 +21578513,Cozy Bedroom,88780960,Tajah,Brooklyn,Bedford-Stuyvesant,40.6777,-73.92176,Private room,31,7,1,2017-12-12,0.05,1,0 +21578592,Quiet Private First Floor Room with Self Check in,154965091,Joe,Manhattan,Hell's Kitchen,40.76945,-73.98798,Private room,125,2,48,2019-06-22,2.36,4,74 +21579960,"Comfy, spacious room- Astoria.",9956828,Nick,Queens,Astoria,40.76168,-73.91976,Private room,55,3,2,2017-12-16,0.10,1,0 +21580765,Cozy room for travelers,156592177,Michael,Brooklyn,Bedford-Stuyvesant,40.68315,-73.91283,Private room,32,1,0,,,1,0 +21581375,"Peaceful space, 5 minutes from Barclays Center!",45874239,Emily,Brooklyn,Park Slope,40.68081,-73.97865,Private room,65,1,0,,,1,0 +21581457,"Bright, large room with own 1/2 bath in great area",1406432,Mary,Brooklyn,Prospect Heights,40.67502,-73.96447,Private room,75,3,38,2019-07-01,1.88,2,66 +21581545,"STEPS TO LGA, Near CITIFIELD, JFK MANHATTAN(RM 3)",156948703,Asad,Queens,East Elmhurst,40.76876,-73.87245,Private room,65,1,191,2019-06-21,9.41,6,336 +21581879,Cozy Apartment in Brooklyn,152532170,Gillian,Brooklyn,Canarsie,40.64105,-73.91369,Entire home/apt,84,2,91,2019-06-26,4.51,1,224 +21582010,Beautiful room in spacious apartment in Manhattan,17947250,Conor,Manhattan,East Harlem,40.78704,-73.94209,Private room,90,1,20,2019-04-27,1.00,2,0 +21582170,Spacious Apartment in Park Slope with Garden,36293942,Efren,Brooklyn,South Slope,40.66394,-73.98298,Entire home/apt,150,2,2,2018-01-02,0.10,1,0 +21583199,Charming Apartment by Central Park & Museum Mile.,37750296,Gene,Manhattan,East Harlem,40.79474,-73.94932,Entire home/apt,185,1,81,2019-06-22,3.98,1,65 +21583472,Quiet Room in Brooklyn Apt - Animal Friendly!,1414616,Carole,Brooklyn,Bedford-Stuyvesant,40.68594,-73.94967,Private room,47,5,10,2018-04-27,0.49,1,0 +21584047,Central Park and Museum mile Private room 105th 2.,42783238,Thomas,Manhattan,East Harlem,40.79281,-73.95192,Private room,85,1,92,2018-10-19,4.52,2,0 +21586883,Cute Astoria bedroom - close to midtown Manhattan,156994927,Billy,Queens,Astoria,40.76219,-73.9237,Private room,60,1,2,2018-04-06,0.12,1,0 +21587326,2 bed 1 Bath Washer Dryer huge terrace,113805886,Yaacov,Manhattan,Upper East Side,40.77736,-73.95156,Entire home/apt,200,31,2,2019-02-22,0.29,33,325 +21587838,Full Service Pool 1 bed Huge Terrace washer dryer,113805886,Yaacov,Manhattan,Upper East Side,40.77768,-73.94998,Entire home/apt,160,31,2,2018-12-28,0.19,33,324 +21588023,Seasonal Beautiful Exposed Brick Brownstone,134946389,Giovanni,Brooklyn,Bedford-Stuyvesant,40.68471,-73.93885,Private room,50,2,12,2019-06-21,0.61,5,10 +21588805,Sun Drenched Williamsburg 1 BR | Prime Location,37880566,Eliza,Brooklyn,Williamsburg,40.71209,-73.9634,Entire home/apt,107,4,17,2019-03-11,0.85,1,9 +21589646,Amazing Room in East Village Apartment!,104775467,Micaela,Manhattan,East Village,40.72549,-73.99198,Shared room,120,2,0,,,1,0 +21589780,Beautiful Brooklyn 1 bedroom apartment,114811999,Cemi,Brooklyn,Bedford-Stuyvesant,40.68969,-73.95195,Entire home/apt,150,2,21,2019-06-15,1.38,1,48 +21589992,Bushwick Oasis,3309100,Merrily,Brooklyn,Williamsburg,40.70443,-73.93039,Private room,65,2,71,2019-06-26,3.65,1,249 +21590125,"Large & cozy room for holidays/New year in BK,NYC",80227295,Emilia,Brooklyn,Gowanus,40.6723,-73.99214,Private room,40,7,1,2018-01-09,0.05,1,0 +21591672,HUGE bedroom available in artsy Bushwick,54966810,Garland,Brooklyn,Bushwick,40.70361,-73.9255,Private room,52,1,2,2017-11-15,0.10,1,0 +21591942,Spacious & Stylish 3BR Condo Steps to the Subway!,102758330,Leslie,Brooklyn,Williamsburg,40.71432,-73.9497,Entire home/apt,358,3,57,2019-06-23,2.89,1,182 +21592051,Sunny Penthouse by Waterfront Park and Subway!!,69205338,Maya,Brooklyn,Williamsburg,40.71829,-73.95926,Entire home/apt,219,2,64,2019-06-24,3.48,1,257 +21592157,"Your private home in Manhattan, Upper Eastside.",157038767,Jonathan,Manhattan,East Harlem,40.78988,-73.94956,Private room,130,4,31,2019-06-21,1.63,1,8 +21592198,Entire NYC Apt Open Bight Clean Spacious,24052348,Tara,Manhattan,East Village,40.72052,-73.97806,Entire home/apt,157,30,0,,,4,0 +21592497,Sunlit room in Financial District luxury apartment,52976247,Costanza,Manhattan,Financial District,40.70812,-74.00447,Private room,100,11,0,,,1,0 +21592694,"Private Peaceful room in Flushing/Auburndale, NY",157040162,Adriana,Queens,Flushing,40.75456,-73.80417,Private room,48,1,37,2019-06-30,2.19,1,39 +21593310,"STEPS TO LGA, near CITIFIELD, JFK MANHATTAN(RM #2)",156948703,Asad,Queens,East Elmhurst,40.77046,-73.87336,Private room,60,1,257,2019-07-06,12.54,6,351 +21593919,Renovated 1 Bedroom Apartment in Williamsburg - 3R,156436372,Sonia,Brooklyn,Williamsburg,40.7151,-73.95129,Entire home/apt,100,30,6,2018-12-28,0.31,4,233 +21594091,Cozy and Colorful Room next the Dekalb L Stop,157056254,Rae,Brooklyn,Bushwick,40.70312,-73.91933,Private room,45,7,0,,,1,0 +21594210,It's a Beautiful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67794,-73.90639,Private room,48,1,114,2019-07-02,5.65,5,235 +21595314,Chic Midtown Apt w/ Empire State Building Views,121943616,Amani,Manhattan,Murray Hill,40.74791,-73.97939,Entire home/apt,375,3,0,,,1,0 +21595950,Private Room Loft w/Outdoor Patio in Williamsburg,40991179,Justin,Brooklyn,Williamsburg,40.72174,-73.95807,Private room,125,3,1,2017-11-26,0.05,2,2 +21596013,Quaint & Quiet UWS,65824474,Eri,Manhattan,Upper West Side,40.79307,-73.97449,Entire home/apt,118,1,2,2017-11-08,0.10,1,0 +21596214,Broadway Studio,7138636,Page,Manhattan,Upper West Side,40.78544,-73.97869,Entire home/apt,116,3,15,2019-05-13,0.77,1,0 +21596520,In Historic Harlem near the Hudson River!,45835291,Shareef,Manhattan,Harlem,40.82397,-73.95453,Private room,55,11,124,2019-07-02,6.10,6,95 +21596559,佳源家庭旅馆,157067019,Ada,Queens,Flushing,40.76498,-73.82904,Private room,55,1,34,2019-07-07,1.73,3,78 +21596854,佳源家庭旅馆套房,157067019,Ada,Queens,Flushing,40.76519,-73.82979,Private room,85,1,5,2019-06-03,0.27,3,85 +21597223,ASTORIA Beautiful Room in Fully Renovated Apt,157087092,Leslie,Queens,Ditmars Steinway,40.7762,-73.90623,Private room,47,1,0,,,1,0 +21597684,Room on st marks place (women only),2326551,Laura,Manhattan,East Village,40.72625,-73.98404,Private room,80,1,10,2019-05-07,0.52,2,97 +21598186,2 Bedroom Private Space Near Subway,130797315,Aidana,Queens,Richmond Hill,40.70269,-73.82653,Entire home/apt,40,2,30,2019-06-24,1.47,1,44 +21601631,Gorgeous 1 bedroom with deck in Williamsburg,16674870,Farrel,Brooklyn,Williamsburg,40.70632,-73.94978,Entire home/apt,102,3,0,,,1,0 +21602731,Spacious 1 bedroom Apartment w/ 2 beds,138154835,Kay,Bronx,Edenwald,40.89215,-73.83351,Entire home/apt,75,3,50,2019-06-17,3.02,1,148 +21603901,Cozy Private Room with Terrace in Williamsburg,46363732,Bérénice,Brooklyn,Williamsburg,40.71372,-73.95149,Private room,69,2,5,2018-03-18,0.25,1,0 +21604003,AMAZING ROOM IN MANHATTAN,4854680,Alexsandro,Manhattan,Harlem,40.82841,-73.9473,Private room,59,1,0,,,1,0 +21604766,Marriott Vacation Club Pulse King hotel,109904033,Colleen,Manhattan,Midtown,40.75219,-73.9838,Private room,489,2,0,,,1,311 +21604823,Cute and Comfortable Bedroom in Gowanus,4726371,Samantha,Brooklyn,Gowanus,40.67889,-73.987,Private room,70,1,59,2019-07-01,3.01,2,29 +21605495,East Village - little hideaway in epic apartment!,20417436,Gil,Manhattan,East Village,40.72552,-73.98165,Private room,90,4,0,,,1,0 +21605900,Only 25 min to Times Square,6690551,Victor,Manhattan,Washington Heights,40.8556,-73.93245,Private room,35,4,67,2019-07-03,3.61,1,2 +21607402,Spacious Master Bedroom Exposed Brick in Harlem,22296461,Brandi,Manhattan,Harlem,40.81866,-73.93796,Private room,50,1,8,2017-12-31,0.40,1,0 +21607796,"Spacious, sun soaked 1-br in Prospect Heights!",15616046,Zoe,Brooklyn,Prospect Heights,40.67807,-73.96446,Entire home/apt,100,5,1,2018-01-03,0.05,1,0 +21607905,Lenox Suit Hotel Themed Studio,81908583,Kasey,Manhattan,Harlem,40.81865,-73.93684,Entire home/apt,80,1,89,2019-06-21,4.44,1,47 +21608234,Brooklyn apartment w/ exposed brick,2685965,Jim,Brooklyn,Crown Heights,40.67452,-73.9554,Private room,120,1,0,,,1,0 +21608855,The Cozy Bushwick Modern (Room B),142625186,J.R.,Brooklyn,Bushwick,40.69104,-73.91685,Private room,75,1,44,2019-06-19,2.16,2,0 +21609205,It's Always Sunny in Bed-Stuy!,19536596,Andrew,Brooklyn,Bedford-Stuyvesant,40.67653,-73.90814,Private room,48,1,106,2019-07-01,5.26,5,243 +21609424,"Cozy private room Astoria 10min to LGA, Manhattan",153836844,Tony,Queens,Astoria,40.76818,-73.9278,Private room,40,1,134,2019-07-07,6.64,1,343 +21609701,*Beautiful 2BR*Flatiron*Best Location*Near Subway*,26529889,Muni,Manhattan,Midtown,40.74172,-73.98343,Entire home/apt,379,4,63,2019-05-25,3.17,1,238 +21609824,Room in house with WIFI and Netflix,119848398,Devi,Bronx,Parkchester,40.83079,-73.8815,Private room,50,2,10,2019-01-15,0.79,2,283 +21610489,Spacious 1BD on west 48th street and 5th Ave,6840321,Shu-Fen,Manhattan,Midtown,40.7582,-73.97843,Entire home/apt,210,29,0,,,1,340 +21610552,Private bedroom W/ ENSUITE bathroom,48418910,Lydia,Brooklyn,Bushwick,40.70316,-73.91304,Private room,120,2,0,,,2,0 +21610946,Cozy Light-Filled Prospect Heights Apartment,39255079,Amy,Brooklyn,Prospect Heights,40.67411,-73.96532,Private room,62,1,55,2019-07-01,2.76,1,63 +21612043,Spacious Bedroom + Office in Bed-Stuy Brownstone,34773529,Tirzah,Brooklyn,Bedford-Stuyvesant,40.68207,-73.92208,Private room,45,5,0,,,1,0 +21612193,"Private Room in 19th Century Townhome, Mott Haven",67396790,Shannon,Bronx,Mott Haven,40.8118,-73.92263,Private room,54,1,9,2018-01-28,0.46,1,0 +21612477,HOME SWEET HOME,157218948,Patricia,Queens,Ozone Park,40.6776,-73.84717,Private room,75,3,1,2019-02-11,0.20,1,83 +21616841,Spacious 1.5 Bed Duplex With Private Backyard,118130596,Stephen,Brooklyn,Crown Heights,40.67593,-73.95366,Entire home/apt,66,2,18,2019-07-03,0.90,1,44 +21618022,Bedroom in charming apartment in Bushwick,129627879,Megan,Brooklyn,Bushwick,40.70253,-73.92362,Private room,44,2,1,2017-11-25,0.05,1,0 +21618858,Bushwick Private entrance Duplex apt skyline view,2023993,Kelly,Brooklyn,Bushwick,40.70239,-73.92931,Private room,65,1,35,2019-07-06,1.80,1,52 +21618966,Beautiful & large room in Clinton Hill /Ft Greene,28478382,Andres,Brooklyn,Bedford-Stuyvesant,40.69129,-73.95983,Private room,70,3,12,2018-09-29,0.61,1,189 +21619277,Large Alcove Studio in Prime Noho Building,869758,Rodrigo,Manhattan,NoHo,40.72632,-73.9928,Entire home/apt,249,10,0,,,1,0 +21619569,Modern 3BR/2Bath Home 10 mins From JFK,157275347,Sydney,Queens,Jamaica,40.68054,-73.76712,Entire home/apt,128,1,141,2019-06-30,7.24,1,164 +21619743,Cute one-bedroom apartment with exposed brick,9450412,Taelyr,Brooklyn,Crown Heights,40.67133,-73.94526,Entire home/apt,128,2,8,2018-10-21,0.40,1,0 +21620322,A large private pink room in Brooklyn,5120169,Jason,Brooklyn,Bedford-Stuyvesant,40.68344,-73.95329,Private room,50,2,2,2017-11-12,0.10,2,0 +21620762,1 Bedroom apartment,157284647,Edgar,Manhattan,East Harlem,40.78743,-73.95179,Entire home/apt,150,4,92,2019-07-02,4.62,1,0 +21620789,Bedroom (double bed) in a 5BR Apartment,129201757,Lea,Brooklyn,Williamsburg,40.71387,-73.94378,Private room,75,3,1,2017-12-11,0.05,1,0 +21621154,Private Room In Bushwick Late December - January,4669488,James,Brooklyn,Bushwick,40.70113,-73.92205,Private room,60,3,1,2018-01-06,0.05,2,0 +21621231,Private room in lively East Village rooftop duplex,35703699,Christian,Manhattan,East Village,40.72179,-73.97904,Private room,80,2,1,2017-11-11,0.05,1,0 +21621926,Cozy in NYC. 10 mins to LGA /15 to Manhattan,157295347,Ana,Queens,Woodside,40.74485,-73.9054,Private room,40,1,22,2019-03-15,1.12,3,332 +21622153,2 BR/1 Ba Apartment Hamilton Heights,157296660,Jake,Manhattan,Harlem,40.82604,-73.94998,Private room,60,15,18,2018-06-20,0.89,1,0 +21622558,"Spacious, 1 bedroom apartment, beautiful views",6022622,Chantal,Queens,Sunnyside,40.7479,-73.91742,Entire home/apt,125,2,2,2018-01-01,0.11,1,0 +21622909,Cozy Gramercy Park 1 bedroom,444603,Kah,Manhattan,Kips Bay,40.73801,-73.98099,Private room,75,3,2,2018-01-03,0.10,1,0 +21623610,Small Guestroom 30 mins to Downtown Manhattan,90658585,Faye,Staten Island,Tompkinsville,40.63333,-74.08389,Private room,30,3,13,2019-06-08,0.70,3,176 +21624428,Quiet Upper West Side Brownstone Oasis,89013063,Gabriella,Manhattan,Upper West Side,40.78901,-73.98057,Entire home/apt,199,5,12,2019-06-30,1.35,1,12 +21624567,Cosy warm room in Bay ridge apartment,70915198,Mariya,Brooklyn,Bay Ridge,40.63435,-74.02939,Private room,100,1,3,2019-06-30,0.21,1,179 +21624775,Downtown Loft with Private Roof Deck,2670192,Jordan,Manhattan,East Village,40.72736,-73.98907,Entire home/apt,385,4,1,2018-01-03,0.05,1,89 +21624828,"Hip, Cozy Room in Inwood",38098992,Julia,Manhattan,Inwood,40.86471,-73.92422,Private room,47,2,3,2018-07-18,0.23,2,0 +21625317,Your Private Sunny Studio Apt in Crown Heights,24035151,Daeun,Brooklyn,Crown Heights,40.67577,-73.95751,Entire home/apt,70,3,3,2017-11-13,0.15,1,0 +21625502,Bed-Stuy Apt for Groups,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69374,-73.95641,Entire home/apt,265,4,22,2019-06-12,1.49,34,309 +21627791,Bright & Inspiring Experience,122374980,Matt,Manhattan,Upper West Side,40.78481,-73.97648,Shared room,60,1,73,2019-05-24,3.65,4,88 +21627794,Amazing male room next to the river for longtermII,39528519,Max,Manhattan,Lower East Side,40.71136,-73.98808,Shared room,33,100,0,,,28,308 +21627938,Unbelievable male room Manhattan for lngterm! III,39528519,Max,Manhattan,Lower East Side,40.71021,-73.98863,Shared room,29,100,0,,,28,341 +21628066,Cozy & Inspiring Experience,122374980,Matt,Manhattan,Upper West Side,40.78617,-73.97663,Shared room,60,1,67,2019-06-23,3.31,4,81 +21628183,Cozy Manhattan male room for a long term IV,39528519,Max,Manhattan,Lower East Side,40.71165,-73.98708,Shared room,33,100,2,2019-01-03,0.11,28,201 +21628640,"Sunny, Spacious Pad In Unbeatable Wburg Location",259240,Andrea,Brooklyn,Williamsburg,40.71675,-73.95614,Entire home/apt,219,3,2,2018-01-01,0.11,1,0 +21629318,Studio Suite in Shared Space,5132258,Jessica,Manhattan,Harlem,40.82587,-73.95102,Private room,80,2,33,2019-05-30,1.74,2,65 +21629751,Sun-filled Boho Apartment in the Heart of Astoria,56184689,Emily,Queens,Astoria,40.76549,-73.91735,Entire home/apt,150,3,3,2018-10-23,0.16,2,0 +21630186,Charming Bedroom in Downtown Manhattan,12838834,Tania,Manhattan,Lower East Side,40.72112,-73.98493,Private room,80,5,5,2018-01-12,0.26,2,0 +21630372,Beautiful and confortable room,109146538,Marisol,Queens,Jackson Heights,40.75184,-73.88722,Private room,60,1,46,2019-07-01,2.29,1,30 +21631186,Brooklyn Vibe,93392260,Kathleen,Brooklyn,East New York,40.67271,-73.89071,Private room,55,30,0,,,2,364 +21631407,Heart of Bedstuy,35083858,Garren,Brooklyn,Bedford-Stuyvesant,40.69283,-73.94573,Entire home/apt,100,1,0,,,1,0 +21631581,Bright 1BR Apartment in the Heart of Williamsburg,6336630,Justin,Brooklyn,Williamsburg,40.71346,-73.95733,Entire home/apt,125,2,3,2019-06-03,0.16,1,0 +21631882,Home away from home in Bushwick!,11975404,Art,Brooklyn,Bushwick,40.70085,-73.91929,Private room,72,3,1,2017-12-31,0.05,2,0 +21632527,Brooklyn NYC,157401742,John,Brooklyn,Bedford-Stuyvesant,40.69059,-73.92837,Private room,64,2,30,2019-06-27,1.62,1,94 +21632690,3BR Townhouse w BBQ - near Subway & Prospect Park,2107234,Jon & Tina,Brooklyn,Windsor Terrace,40.65503,-73.97774,Entire home/apt,149,2,17,2019-05-27,0.86,1,1 +21632846,"Large, beautiful and elegant, clean studio舒适洁净的保证",104401765,Linda,Queens,Flushing,40.76014,-73.82263,Entire home/apt,99,2,42,2019-06-30,2.56,1,5 +21633212,NYC Garden Escape (2 min to subway),155938307,John,Manhattan,Harlem,40.81264,-73.94602,Entire home/apt,225,2,55,2019-06-16,3.50,1,133 +21633295,The Pop! Art Penthouse: safe/quiet/family-friendly,155403600,Matt Ryan,Manhattan,Harlem,40.81296,-73.94625,Entire home/apt,265,2,76,2019-06-28,4.07,1,147 +21633327,Times Square 2BD 1st Floor,70412965,Sam S.,Manhattan,Hell's Kitchen,40.76371,-73.99346,Entire home/apt,200,2,9,2019-06-13,2.70,1,140 +21633395,"Big & quiet studio home, UWS, 2 min. from subway",7247765,Al,Manhattan,Morningside Heights,40.80431,-73.96615,Entire home/apt,80,12,1,2017-11-12,0.05,1,0 +21633621,Charming Harlem studio,1679545,Ishai,Manhattan,Harlem,40.81272,-73.9517,Entire home/apt,111,7,5,2018-12-30,0.28,1,8 +21633631,Cozy studio at heart of Williamsburg,21099366,Lauren,Brooklyn,Williamsburg,40.71223,-73.96025,Entire home/apt,150,4,5,2019-01-02,0.25,1,0 +21634030,Private Cozy Room in Uptown Manhattan,12062317,Keisy,Manhattan,Washington Heights,40.84063,-73.93928,Private room,55,1,108,2019-05-25,5.34,1,13 +21634282,Charming private room 10 min from Manhattan,49735439,Merida,Brooklyn,Bushwick,40.6963,-73.90874,Private room,85,3,2,2017-12-24,0.10,2,0 +21634979,Lower East Side Entire Floor Big Bright & Spacious,32203986,Kym,Manhattan,Lower East Side,40.71389,-73.98239,Entire home/apt,400,3,8,2019-06-09,1.10,1,91 +21635015,Sunny Park View Bedroom in Bushwick,157406894,Patrick,Brooklyn,Bushwick,40.70426,-73.92551,Private room,60,8,7,2018-11-28,0.36,1,8 +21635125,Newly Renovated One Bedroom Apartment,93487618,David,Brooklyn,Dyker Heights,40.62547,-74.00647,Entire home/apt,90,1,50,2019-05-12,2.48,2,287 +21635240,Private Sunny Bedroom Close to Prospect Park,148018227,Mike,Brooklyn,Flatbush,40.65059,-73.9637,Private room,70,3,0,,,1,0 +21635399,Spacious 1BR w/ backyard in central Williamsburg,32528909,Jake,Brooklyn,Williamsburg,40.71935,-73.96049,Entire home/apt,220,2,14,2019-06-30,0.76,1,0 +21635457,"Entire 2 Bdrm Duplex Bushwick Brooklyn, Sleeps 6",157430725,Fiona,Brooklyn,Bushwick,40.6994,-73.93367,Entire home/apt,120,1,94,2019-07-03,5.03,3,240 +21635623,Private & Quiet One Bedroom On The Upper East Side,14538085,Ian,Manhattan,Upper East Side,40.78312,-73.95344,Private room,64,2,7,2017-12-28,0.35,1,0 +21636155,Large bright room off Dekalb L with big garden,13077909,James,Brooklyn,Bushwick,40.70358,-73.91515,Private room,40,3,1,2017-11-24,0.05,1,0 +21636897,Hazel’s Place,157446306,Efe,Brooklyn,Canarsie,40.62834,-73.90506,Private room,70,2,37,2019-07-08,2.19,1,67 +21638538,Spacious Private bedroom & private bathroom,130201799,Karma,Manhattan,SoHo,40.7244,-73.99884,Private room,169,3,31,2019-06-30,1.54,1,69 +21640455,Spacious bedroom away from home,157481445,Jeanette,Manhattan,Washington Heights,40.83878,-73.94731,Private room,75,2,78,2019-06-30,3.90,1,230 +21642393,Lovely two bedroom apartment in Manhattan NYC,151454628,Danilo,Manhattan,Washington Heights,40.84482,-73.94029,Entire home/apt,139,2,85,2019-06-21,4.21,1,125 +21642874,Luxe NYC apt w/ balcony + stunning skyline views,8716709,Stacey,Brooklyn,Williamsburg,40.711,-73.95701,Entire home/apt,300,2,0,,,1,0 +21642995,Lofted Bed in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72483,-73.9437,Shared room,38,1,32,2019-06-16,1.60,5,346 +21643210,Cozy Serenity Room in Gowanus (Park Slope),82874717,Paola,Brooklyn,Gowanus,40.66705,-73.9927,Private room,40,5,0,,,1,0 +21643550,*TRANQUILITY Private Room. let the birds sing !*,48183551,Carlos,Queens,Elmhurst,40.74425,-73.88311,Private room,58,6,38,2019-06-18,1.96,5,288 +21643702,Cozy Williamsburg/Bushwick Haven,4201991,Anna,Brooklyn,Williamsburg,40.7074,-73.941,Private room,43,1,36,2019-06-16,1.97,1,0 +21643957,Bright and cosy apartment with private room,3357991,Wesley,Brooklyn,Bedford-Stuyvesant,40.69309,-73.94662,Private room,60,1,7,2018-01-28,0.36,1,0 +21644783,Cozy Room in the heart of Bushwick,26738513,Malachi,Brooklyn,Bushwick,40.6929,-73.91681,Private room,32,3,25,2019-05-21,1.62,3,90 +21644811,Clean Modern Furnished Room,155789674,George,Queens,Ditmars Steinway,40.77109,-73.91117,Private room,55,15,3,2018-01-01,0.15,1,55 +21645706,Private room in a luxury building,34161028,Agnese,Brooklyn,Vinegar Hill,40.69925,-73.98266,Private room,100,3,2,2018-01-02,0.11,3,96 +21645769,Big studio apt in the heart of Williamsburg,6619124,Jeffrey,Brooklyn,Williamsburg,40.71681,-73.94912,Entire home/apt,99,4,5,2018-09-16,0.25,1,0 +21645894,Mother of the Believers,157525611,Chika,Manhattan,Harlem,40.80015,-73.95483,Private room,50,1,3,2017-11-07,0.15,1,0 +21646320,PRIVATE ROOM with OWN BATHROOM in Astoria Apt,68267774,Jeannie,Queens,Astoria,40.75819,-73.92687,Private room,47,30,1,2017-12-31,0.05,1,90 +21646375,TRANQUILITY,157540393,Valerie,Queens,Rosedale,40.66158,-73.74821,Private room,67,5,0,,,1,90 +21646774,"STEPS TO LGA, Near CITIFIELD, JFK MANHATTAN(RM #4)",156948703,Asad,Queens,East Elmhurst,40.76918,-73.8719,Private room,55,1,208,2019-07-06,10.28,6,352 +21646838,Modern 2 bedroom apartment in Brooklyn,31755712,Ludmila,Brooklyn,Clinton Hill,40.68597,-73.95983,Entire home/apt,125,25,0,,,1,172 +21647076,Cozy Apartment in Upper East Side,20067071,Gabriele,Manhattan,Upper East Side,40.76959,-73.95601,Entire home/apt,190,2,1,2018-03-26,0.06,1,9 +21647976,Cozy room in Williamsburg!,6995644,Wael,Brooklyn,Williamsburg,40.71763,-73.96008,Private room,50,4,3,2018-05-22,0.16,1,0 +21648143,Light room with view of Manhattan skyline,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69094,-73.95144,Private room,80,3,5,2019-01-04,0.27,3,65 +21648513,Spacious Cozy Apt with Private Back Yard and a Cat,2347173,Vika,Manhattan,Upper East Side,40.78217,-73.94844,Entire home/apt,150,6,17,2019-06-14,1.13,1,0 +21649044,Brownstone Diamond in Clinton Hill,157563838,Ion,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95906,Entire home/apt,99,2,0,,,1,0 +21649171,Spacious 3-Bedroom Bushwick Duplex,77904836,Yvette,Brooklyn,Bushwick,40.69168,-73.91453,Entire home/apt,500,5,1,2018-01-01,0.05,1,0 +21649172,Sanctuary on the Upper West Side of Manhattan,4431637,Rebecca,Manhattan,Upper West Side,40.79907,-73.96962,Entire home/apt,225,6,4,2019-04-21,0.22,1,177 +21649523,Crown Heights Apartment,138546022,Nicholas,Brooklyn,Crown Heights,40.67354,-73.95149,Private room,41,1,1,2017-11-06,0.05,2,0 +21649695,Spacious Manhattan Apt minutes from Time Square,115589496,Simona & Matther,Manhattan,Hell's Kitchen,40.75976,-73.9955,Entire home/apt,140,2,26,2018-12-31,1.41,1,0 +21650258,"Bright, modern apartment",48492315,Sawyeh,Brooklyn,Bedford-Stuyvesant,40.68364,-73.95821,Entire home/apt,85,3,3,2018-01-02,0.15,1,0 +21651023,Private room two blocks from Times Square.,38530455,Aleksey,Manhattan,Hell's Kitchen,40.76291,-73.98976,Private room,105,1,135,2019-07-01,6.78,1,68 +21651270,POLISHED BROOKLYN GETAWAY,119313407,Monica,Brooklyn,Brownsville,40.66087,-73.90935,Entire home/apt,115,1,2,2017-11-27,0.10,1,0 +21652744,Crown heights hangout,157599851,Mallory,Brooklyn,Crown Heights,40.67286,-73.94758,Private room,31,6,0,,,1,0 +21655971,Sunny Spacious Modern Designer Apartment,55021,Sascha,Brooklyn,Fort Greene,40.69647,-73.97681,Entire home/apt,120,20,3,2018-06-30,0.16,1,58 +21656310,"Room available on the Upper East Side, Manhattan",18844442,Rabia,Manhattan,Upper East Side,40.77976,-73.95409,Private room,100,2,16,2018-02-20,0.80,1,0 +21658519,Spacious studio in luxury Manhattan condo,862657,Alex,Manhattan,Midtown,40.7451,-73.98139,Entire home/apt,250,2,11,2018-11-24,0.57,1,22 +21659073,Great shared apartm in the heart of Bushwick,146345538,Sergii,Brooklyn,Bushwick,40.69168,-73.9132,Shared room,28,30,5,2018-10-27,0.25,5,281 +21659494,"Spacious queen bedroom, private bath in Brooklyn",26379887,Marine,Brooklyn,Greenpoint,40.72891,-73.95618,Private room,150,2,4,2018-10-31,0.20,1,0 +21659702,NEWLY RENOVATED HOME IN BUSHWICK / Best offer,146345538,Sergii,Brooklyn,Bushwick,40.6951,-73.91157,Shared room,30,30,5,2018-10-04,0.25,5,365 +21660113,Great shared house / Bushwick!,10994664,Alexander,Brooklyn,Bushwick,40.69641,-73.90895,Shared room,30,30,2,2018-03-31,0.11,8,325 +21660214,纽约森林小丘简约文艺客舍,22675680,Cecilia,Queens,Forest Hills,40.71825,-73.83502,Shared room,60,1,68,2019-04-05,3.62,1,125 +21660363,beautiful studio one step away from Central Park,157653177,Isaies,Manhattan,Harlem,40.80188,-73.95695,Entire home/apt,75,7,12,2019-06-23,0.63,1,3 +21660742,"1 Private Bedroom, private bathroom, Brooklyn",2079633,Fayna,Brooklyn,Fort Greene,40.68558,-73.96965,Entire home/apt,150,5,0,,,1,0 +21660787,Spacious Williamsburg Apartment,476260,Jingjing,Brooklyn,Williamsburg,40.71729,-73.95051,Private room,50,2,1,2017-11-06,0.05,1,0 +21661235,Gorgeous room in Bed-Stuy/Bushwick,5342802,Mikaela,Brooklyn,Bedford-Stuyvesant,40.6864,-73.91858,Private room,50,10,6,2019-06-01,0.33,2,5 +21661292,Brownstone 1BR Apt in the heart of Park Slope,9678658,Emily,Brooklyn,Park Slope,40.67441,-73.97614,Entire home/apt,160,4,7,2018-11-25,0.36,1,0 +21661580,Upper East Side Brownstone Beautiful Large 1B!,128009952,Alexa,Manhattan,Upper East Side,40.7827,-73.94537,Entire home/apt,125,5,1,2017-11-25,0.05,1,0 +21662801,"West 33rd street, Lux 1bd Serviced Apartment**",22541573,Ken,Manhattan,Chelsea,40.75286,-73.99551,Entire home/apt,239,30,0,,,87,364 +21662950,Charming 2bedroom Apartment in the Lower East Side,152639417,Laura,Manhattan,Chinatown,40.71537,-73.99119,Entire home/apt,250,4,32,2019-06-11,1.71,1,188 +21664152,"Bright, Clean & Cozy 1 BR close to all services..",124409689,Donalda,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9526,Entire home/apt,110,4,38,2019-06-26,1.91,1,309 +21664702,Room with charming private rooftop in Williamsburg,89337192,Matteo,Brooklyn,Williamsburg,40.71035,-73.94774,Private room,95,3,43,2019-06-16,2.54,1,59 +21665632,SOHO LOFT: 2000sq ft renovated & centrally located,11242618,Shelley,Manhattan,SoHo,40.72208,-74.00217,Entire home/apt,1000,5,0,,,1,364 +21665842,Charming Cobble Hill Brownstone with Backyard.,156668591,Tamosin,Brooklyn,Cobble Hill,40.68615,-73.9972,Entire home/apt,160,3,11,2019-07-07,0.59,1,14 +21665966,Queen room with balcony,75248463,Jotham,Brooklyn,East Flatbush,40.64358,-73.9462,Private room,118,2,2,2018-01-04,0.11,4,45 +21666229,Industrial Bedroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.69871,-73.92877,Private room,70,1,93,2019-05-26,4.67,3,17 +21666331,Little Gem in Brooklyn,157701601,Karen,Brooklyn,Williamsburg,40.70737,-73.93961,Entire home/apt,125,4,2,2018-08-09,0.11,1,0 +21666641,LARGE LIGHT FILLED ROOM IN THE HEART OF BAYRIDGE,157705263,Kendria,Brooklyn,Bay Ridge,40.62602,-74.023,Private room,55,3,0,,,1,0 +21666679,Comfy Cobble Hill home for your NYC/Brooklyn stay.,107417162,Karin,Brooklyn,Columbia St,40.68559,-74.0011,Entire home/apt,130,3,6,2019-03-20,0.30,1,106 +21666958,FURNISHED BEDROOM IN FIDI LOFT APARTMENT,9020694,Amaad,Manhattan,Financial District,40.71079,-74.00934,Private room,80,30,1,2019-04-05,0.32,1,339 +21667120,2 BED Manhattan Condo with Balcony & Laundry,157075387,Anthony,Manhattan,Hell's Kitchen,40.76495,-73.98844,Entire home/apt,248,2,19,2018-04-26,0.96,1,0 +21667189,Plant Filled Artist Duplex in Trendy Bushwick,11056171,Sasha,Brooklyn,Bushwick,40.69812,-73.93151,Private room,48,4,6,2019-04-24,0.32,1,6 +21667615,Beautiful 1BR in Brooklyn Heights,78251,Leslie,Brooklyn,Brooklyn Heights,40.7007,-73.99517,Entire home/apt,150,30,0,,,2,65 +21667658,Spacious Williamsburg 1BR with designer ammenities,8471197,Taya,Brooklyn,Williamsburg,40.70981,-73.95343,Entire home/apt,175,3,28,2018-06-24,1.43,1,0 +21667733,A room with a view,28369674,Ramond,Brooklyn,Williamsburg,40.70551,-73.93454,Private room,67,3,33,2019-05-23,1.66,2,127 +21668437,SPACIOUS PRIVATE ROOM IN TRENDY BAY RIDGE BROOKLYN,156672333,Eddie,Brooklyn,Bay Ridge,40.6247,-74.03094,Private room,80,3,1,2018-01-01,0.05,1,363 +21668647,Private room,22420999,Herman,Queens,Richmond Hill,40.69473,-73.83061,Private room,45,2,0,,,5,363 +21669322,Comfortable & Bright Studio in the East Village,3281798,Guillermo,Manhattan,East Village,40.73014,-73.98152,Entire home/apt,180,3,8,2019-06-09,0.42,1,10 +21669411,"1 Cozy, Sun-filled Private Room",5140888,Ciru,Brooklyn,Crown Heights,40.67315,-73.94534,Private room,31,7,0,,,1,0 +21672349,A Bright Brooklyn Apartment With A Private Balcony,4434595,Jamie,Brooklyn,Bedford-Stuyvesant,40.68717,-73.94557,Entire home/apt,98,3,12,2019-06-11,0.62,1,0 +21673998,"Dean Street, BROOKLYN!!",151777787,Kristina,Brooklyn,Brownsville,40.67375,-73.90813,Private room,40,1,6,2017-12-29,0.30,2,0 +21674032,Gigantic one bedroom in East Williamsburg Brooklyn,22507452,Joshua,Brooklyn,Williamsburg,40.70509,-73.94228,Entire home/apt,100,3,0,,,1,0 +21675209,Beautiful cozy studio in the heart of Manhattan,26135855,Aliza,Manhattan,Murray Hill,40.74601,-73.97823,Entire home/apt,200,1,46,2019-05-27,2.36,1,0 +21675338,Spacious Studio Apartment in Downtown Manhattan,152959594,Carleigh,Brooklyn,DUMBO,40.70231,-73.98938,Entire home/apt,125,2,1,2017-11-18,0.05,1,0 +21676358,Incredible modern studio with all the amenities,55308025,Paul,Brooklyn,Downtown Brooklyn,40.69339,-73.98581,Entire home/apt,90,3,7,2019-06-23,0.37,1,0 +21676677,Cozy modern large 1BR apartment in Sunnyside,758152,Pilar,Queens,Sunnyside,40.74457,-73.9194,Entire home/apt,82,21,0,,,1,0 +21676769,Garden apartment with private backyard!,876116,Victoria,Brooklyn,Bedford-Stuyvesant,40.67954,-73.948,Entire home/apt,100,4,5,2018-04-11,0.25,1,0 +21677053,Luxury Chelsea penthouse w private terrace & view!,5761098,Patty,Manhattan,Chelsea,40.74023,-73.99994,Entire home/apt,485,3,2,2019-05-28,0.32,1,1 +21677335,Comfy Crash Pad - 25 mins to Manhattan,28290772,Anushua,Queens,Astoria,40.76848,-73.90768,Private room,43,2,42,2019-06-14,2.09,2,340 +21677581,The Kipsey - A One Bedroom Apartment,157183215,Wendy,Manhattan,Kips Bay,40.7398,-73.98163,Entire home/apt,175,2,1,2018-01-03,0.05,1,3 +21677637,Spacious studio in Harlem New York,85945543,Victor,Manhattan,Harlem,40.81223,-73.93992,Entire home/apt,200,3,0,,,1,0 +21678001,East Harlem Haven,1743381,Natalie,Manhattan,East Harlem,40.79313,-73.93991,Entire home/apt,108,7,3,2018-12-09,0.16,1,20 +21678034,Cozy wine-in apartment,12327841,Yan Sze,Brooklyn,Bedford-Stuyvesant,40.6891,-73.92168,Entire home/apt,80,5,4,2018-04-01,0.21,1,0 +21678477,Trendy Williamsburg House with Private Studio,39472888,Sarah,Brooklyn,Williamsburg,40.71369,-73.93669,Private room,100,5,41,2018-10-13,2.11,1,125 +21678587,Harlem Gem,42141935,Valerie,Manhattan,East Harlem,40.80834,-73.94049,Entire home/apt,89,1,2,2018-01-01,0.11,1,0 +21679463,"Clean, Comfortable Home away from home",122942281,Natalie,Brooklyn,Brownsville,40.66621,-73.92073,Entire home/apt,95,7,28,2019-07-05,1.51,1,19 +21679639,Entire 1-Bedroom Greenpoint Apartment,4696622,James,Brooklyn,Greenpoint,40.72747,-73.95462,Entire home/apt,95,3,0,,,1,0 +21680413,XL Private Room In Brooklyn,4934112,Liane,Brooklyn,Crown Heights,40.66451,-73.93237,Private room,46,1,49,2019-05-25,2.51,1,81 +21680639,Cool & Cosy apt in best part of Williamsburg!,15105524,Robbie & Apples,Brooklyn,Williamsburg,40.71522,-73.96313,Entire home/apt,200,3,2,2019-01-01,0.11,1,15 +21680914,Ultra Luxury & Hip 2 Bed in Williamsburg,157825168,Sammi,Brooklyn,Williamsburg,40.7185,-73.94888,Private room,148,2,0,,,1,0 +21682272,Room in Amazingly well-LIT Luxury Loft,78942575,Bora,Brooklyn,Brooklyn Heights,40.70017,-73.99202,Private room,120,1,4,2019-06-07,0.20,2,0 +21682816,Large Furnished Bedroom in Prime Chelsea,102685703,Lauren,Manhattan,Chelsea,40.74394,-73.99923,Private room,120,4,0,,,1,0 +21682924,Spacious Escape in the Heart of Greenwich Village,647100,Kevin,Manhattan,Greenwich Village,40.73247,-73.99998,Private room,130,3,11,2018-07-16,0.55,1,0 +21683178,Beautiful Spacious 1BR near Central Park,157846554,JohnR,Manhattan,Hell's Kitchen,40.76573,-73.98682,Entire home/apt,225,5,8,2019-05-21,0.40,1,0 +21683372,Beautiful apartment in great Harlem neighborhood,81928702,K.C.,Manhattan,Harlem,40.82645,-73.94457,Entire home/apt,125,3,23,2019-05-31,1.18,1,166 +21683672,Prime UWS location bedroom available!,2179407,Edgar,Manhattan,Upper West Side,40.7872,-73.97639,Private room,80,2,0,,,1,0 +21683921,"Cozy Master Suite, Sunny & Charming Loft w/ a View",3043800,Sophie,Brooklyn,Williamsburg,40.71827,-73.94381,Private room,90,3,0,,,1,0 +21684019,Greenpoint Gem With Lovely Patio and Backyard!,144017474,Kristin,Brooklyn,Greenpoint,40.73392,-73.95528,Entire home/apt,55,1,5,2019-06-30,0.29,2,0 +21684804,Charming duplex in east village with a balcony,12080664,Josephine,Manhattan,East Village,40.732,-73.98706,Entire home/apt,500,6,0,,,1,0 +21685016,Huge Loft Apartment in Bed-Stuy Brooklyn!!!,9655028,Ken,Brooklyn,Bedford-Stuyvesant,40.68542,-73.91741,Entire home/apt,175,7,1,2017-12-30,0.05,1,0 +21685062,Huge Room Near Subway in Creative Williamsburg,74517682,Meline,Brooklyn,Williamsburg,40.70654,-73.93178,Private room,75,3,1,2017-11-26,0.05,1,0 +21688734,Room located in the heart of Williamsburg,3282906,Johana,Brooklyn,Williamsburg,40.71359,-73.96553,Private room,80,1,5,2019-01-08,0.25,1,17 +21689998,Super Cute Family Friendly Cozy Loft Suite For 2-4,857599,Stephen,Manhattan,Tribeca,40.71838,-74.00495,Entire home/apt,320,3,1,2018-07-31,0.09,1,93 +21691896,Spacious Brooklyn Townhouse with Garden,21248,Toto,Brooklyn,Sunset Park,40.65015,-74.01084,Entire home/apt,300,2,1,2017-12-08,0.05,1,0 +21692066,South Brooklyn Artist / Student Studio Retreat,66386802,Andrew,Brooklyn,Bensonhurst,40.61097,-73.9983,Private room,78,1,21,2019-04-14,1.52,1,30 +21692641,"Large, cozy Studio in Morningside Heights",14991456,Apostolos,Manhattan,Morningside Heights,40.81441,-73.95939,Entire home/apt,100,2,11,2019-03-21,0.57,1,0 +21693544,Fabulous 3-bedroom apartment in trendy Brooklyn.,18037444,Nigel,Brooklyn,Park Slope,40.67545,-73.97516,Entire home/apt,213,5,1,2017-12-21,0.05,1,0 +21693657,Unique East Village Duplex in NYC,81460578,Matt,Manhattan,East Village,40.72389,-73.98346,Private room,141,5,5,2017-12-08,0.25,1,0 +21694344,Cozy 1 bedroom walkup in the heart of Astoria,24916010,Alex,Queens,Astoria,40.76448,-73.92164,Entire home/apt,100,3,1,2018-10-23,0.12,1,0 +21694908,Charming 1875 Victorian,801975,Elizabeth And Timothee,Brooklyn,Crown Heights,40.67764,-73.94493,Entire home/apt,175,3,38,2019-05-28,1.93,2,357 +21695292,1 BR near Union Square,14603774,Matt,Manhattan,East Village,40.73281,-73.9899,Entire home/apt,225,1,1,2017-11-18,0.05,1,0 +21695338,"Spacious, Bright & Cozy 1-bedroom in Greenpoint",8652278,Brady,Brooklyn,Greenpoint,40.7347,-73.95479,Entire home/apt,87,4,1,2017-12-27,0.05,1,0 +21695365,"Affordable, safe & close to the City",129494490,Yuliya,Brooklyn,Crown Heights,40.6703,-73.93241,Private room,36,10,0,,,1,0 +21695415,"Beautiful, private 1 BR Apt in Hamilton Heights",42237462,Stephanie,Manhattan,Harlem,40.82722,-73.9457,Entire home/apt,78,6,4,2018-09-29,0.20,1,0 +21695845,Sunny West Village Studio Apartment,10974696,Shae,Manhattan,West Village,40.73057,-74.00458,Entire home/apt,199,3,16,2019-05-07,0.81,1,3 +21695929,Cozy private bedroom - 15 min. subway to Manhattan,99346174,David,Queens,Sunnyside,40.74549,-73.92465,Private room,50,5,0,,,1,0 +21696833,Charming 2 BR Walk-up in a Private Victorian House,144893680,Adele,Brooklyn,Flatbush,40.63231,-73.96314,Entire home/apt,125,3,40,2019-05-21,2.02,1,0 +21698168,Private bedroom with private bath bathroom,20810101,Amy,Brooklyn,Bedford-Stuyvesant,40.68245,-73.9471,Private room,100,1,8,2019-06-24,2.07,2,23 +21698180,Oasis,156505456,John,Brooklyn,East New York,40.66221,-73.88868,Private room,37,3,15,2019-06-04,0.81,13,90 +21698351,佳源家庭旅馆双床房间,157067019,Ada,Queens,Flushing,40.76498,-73.8301,Private room,78,1,17,2018-12-14,0.87,3,82 +21698446,Private Room In Manhattan!,32798079,Mike & Kevin,Manhattan,Harlem,40.81691,-73.93735,Private room,98,2,94,2019-07-03,4.65,1,117 +21698534,"Immaculate, bright, private lofted room in W-Burg",157438293,Gabriel,Brooklyn,Williamsburg,40.71892,-73.94932,Private room,120,1,0,,,1,0 +21698837,Dope ass apt,149576949,McKayla,Brooklyn,Bedford-Stuyvesant,40.68519,-73.92868,Private room,250,1,0,,,1,0 +21699294,"2017 BUILDING, NEW LOFT, 5 MIN SUB TO MANHATAN",157967816,Analia,Brooklyn,Greenpoint,40.72207,-73.94226,Private room,70,1,82,2019-06-22,4.12,3,43 +21700026,Getaway in Brooklyn,631374,Jen,Brooklyn,Clinton Hill,40.6903,-73.96883,Private room,188,7,1,2017-12-10,0.05,1,83 +21700305,Private bedroom with half bath + private entrance!,16956704,Shalom,Brooklyn,Bushwick,40.68461,-73.91101,Private room,75,1,2,2017-12-31,0.11,1,0 +21700378,Warm and cozy room in Williamsburg,18743582,Kai,Brooklyn,Williamsburg,40.71665,-73.94169,Private room,60,2,21,2018-11-11,1.06,1,0 +21700414,"Sunny Slice of uptown NYC, Private Room, Comfy!",1264407,Dawn,Manhattan,East Harlem,40.79503,-73.93953,Private room,63,3,2,2017-11-30,0.10,1,0 +21700582,Large Private Bedroom next to Central Park,8442344,Peter,Manhattan,Harlem,40.79962,-73.95359,Private room,125,3,0,,,1,0 +21700909,Charming Apt in the heart of Manhattan,209073,Cristina,Manhattan,Hell's Kitchen,40.76226,-73.99519,Entire home/apt,175,7,1,2018-09-10,0.10,1,147 +21701058,Luxury 8 Bedroom Townhouse in Midtown-Sleeps 16,69852641,Lisa,Manhattan,Hell's Kitchen,40.76481,-73.98845,Entire home/apt,2200,2,6,2019-03-02,0.35,3,217 +21701158,Bright Room with a Private Balcony in Williamsburg,28831479,Sedef,Brooklyn,Williamsburg,40.70622,-73.9495,Private room,95,2,4,2019-05-26,0.36,2,28 +21701695,Lovely Private Room with Balcony in New York,96346005,Yamile,Manhattan,Upper West Side,40.77268,-73.98933,Private room,135,3,69,2019-06-25,3.47,3,70 +21703548,Fantastic Room near Central Park and Lincoln Cente,96346005,Yamile,Manhattan,Upper West Side,40.77559,-73.98748,Private room,126,3,77,2019-06-20,3.98,3,45 +21703746,Urban Oasis in Sunnyside Gardens,839657,Mark,Queens,Sunnyside,40.74706,-73.91831,Private room,70,2,35,2019-06-10,1.80,1,306 +21706896,Amazing PRIVATE Bedroom+Bathroom in East Village!,27636450,Lauren,Manhattan,East Village,40.72639,-73.99052,Private room,150,2,0,,,2,0 +21707614,Spacious Williamsburg Artist's Duplex,145021,Guy,Brooklyn,Williamsburg,40.71509,-73.96342,Entire home/apt,150,2,6,2019-07-01,0.42,1,13 +21707762,Spacious Family Friendly Spot Near Central Park,754952,Brian,Manhattan,Upper West Side,40.79069,-73.96614,Entire home/apt,395,3,1,2017-11-25,0.05,1,0 +21709374,1st floor; 1 bedroom,145552870,Jeffrey,Manhattan,Upper East Side,40.77566,-73.95065,Entire home/apt,165,3,2,2017-12-30,0.10,1,0 +21709723,Williamsburg Home - Plant Jungle,536745,Johnny,Brooklyn,Williamsburg,40.71759,-73.94549,Private room,69,2,9,2019-01-02,0.46,3,0 +21709727,DESIGNER TOWNHOUSE IN HARLEM,271527,Richard,Manhattan,Harlem,40.81023,-73.94142,Entire home/apt,850,3,4,2018-11-24,0.22,2,178 +21709891,Cozy room in Hamilton Hights R2,158054102,Beverly,Manhattan,Harlem,40.83233,-73.94562,Private room,47,2,66,2019-07-06,3.28,3,49 +21710003,Garden 1-Bedroom Apartment in Greenpoint,848748,Sarah,Brooklyn,Greenpoint,40.72365,-73.95188,Entire home/apt,200,3,30,2019-06-17,1.52,2,101 +21710807,Master Bedroom on Central Park for Christmas!,49750805,Paige,Manhattan,East Harlem,40.79772,-73.94809,Private room,75,3,0,,,2,0 +21710913,Private sunny 1 Bedroom Apartment,37249745,Gaby,Brooklyn,Borough Park,40.63265,-74.00397,Entire home/apt,58,2,6,2018-05-26,0.32,1,0 +21711085,Chill modern garden apartment in Crown Heights,135204393,Robert,Brooklyn,Crown Heights,40.67034,-73.92777,Entire home/apt,90,2,31,2019-06-30,1.63,1,45 +21711690,Cozy room in Hamilton Hights R1,158054102,Beverly,Manhattan,Harlem,40.83139,-73.94672,Private room,47,2,68,2019-07-06,3.38,3,49 +21711746,Renovated private apartment close to subway train,26809413,Ekta,Brooklyn,Flatbush,40.64658,-73.96909,Entire home/apt,95,2,27,2019-06-24,1.46,1,167 +21712433,Gorgeous 1bd in Trendy Brooklyn!,10396247,Kaitlin,Brooklyn,Park Slope,40.67655,-73.97303,Entire home/apt,180,4,4,2018-12-30,0.22,1,0 +21713358,Modern Whimsical Room,63749946,Rachel,Brooklyn,Crown Heights,40.67433,-73.9248,Private room,54,4,11,2019-05-16,0.56,3,0 +21713419,Timeless West Village Townhouse with Garden,158087989,Ben,Manhattan,Chelsea,40.74025,-74.00066,Entire home/apt,400,3,21,2018-10-14,1.09,1,0 +21713495,"UWS - Cozy, Artsy 1 Bedroom",16240062,Chryssie,Manhattan,Upper West Side,40.79951,-73.96436,Entire home/apt,175,1,37,2019-07-05,1.93,1,176 +21713551,Wonderful Upper East Side Lux Close to Subway,17887542,Viktor,Manhattan,Upper East Side,40.76401,-73.95823,Entire home/apt,138,7,1,2017-12-11,0.05,1,0 +21714177,It's All Yours: Big Beautiful 1 Bedroom in Harlem,158097857,Jahmil,Manhattan,Harlem,40.81425,-73.94187,Entire home/apt,110,3,5,2018-05-28,0.31,1,0 +21714930,"Entire Home for 8 Guests, Fully Equipped",157826237,Jerry,Queens,Flushing,40.75314,-73.81964,Entire home/apt,245,3,50,2019-06-30,2.51,1,40 +21715410,Professionally Decorated 1 BR in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75963,-73.82218,Entire home/apt,95,30,0,,,15,214 +21715655,Studio Flat in Williamsburg Ny 2/4 Guest,86077156,Franco,Brooklyn,Williamsburg,40.70887,-73.95591,Entire home/apt,125,2,71,2019-06-23,3.92,2,83 +21715735,The BEST LOCATION in Brooklyn,100935364,Kira,Brooklyn,Prospect Heights,40.6818,-73.97552,Private room,45,1,13,2019-01-21,0.65,2,0 +21715749,Cozy Williamsburg Room on the Rooftop,25601048,Federico,Brooklyn,Williamsburg,40.71262,-73.94815,Private room,100,4,4,2019-06-01,0.39,1,107 +21716197,Large & Comfortable Financial District Studio,12672143,Kathryn,Manhattan,Financial District,40.70362,-74.00721,Entire home/apt,195,2,4,2018-06-10,0.21,1,0 +21716449,Urban Hang Suite - Entire 1BR w/ Terrace & Doorman,1249685,Evan,Manhattan,Harlem,40.81095,-73.93942,Entire home/apt,101,2,21,2019-06-23,1.09,1,0 +21716508,Cozy bedroom / 15 min from Manhattan,42330917,Gabriela,Queens,Astoria,40.75949,-73.91143,Private room,49,1,19,2019-06-24,0.96,1,0 +21716772,Large private room close to subway station,52889093,Kamyar,Bronx,Kingsbridge,40.88302,-73.90899,Private room,70,1,8,2018-05-24,0.43,1,0 +21718049,"Cosy 1 bedroom, in a pre war building in Chelsea !",158137594,Zafreen,Manhattan,Chelsea,40.74727,-74.00261,Entire home/apt,185,7,0,,,1,0 +21718529,Sunny room in Bushwick loft with skyline views,2793254,Johnny,Brooklyn,Bushwick,40.70466,-73.92043,Private room,100,3,26,2019-06-29,1.70,3,170 +21721040,"Huge, bright one bedroom flat near Prospect Park",10197359,Amber,Brooklyn,Flatbush,40.65168,-73.96411,Entire home/apt,100,3,13,2019-06-25,0.91,1,7 +21721836,"Huge Luxury 1BR, Massive Roof Deck Manhattan View",13546922,Rob,Brooklyn,Williamsburg,40.7123,-73.95228,Entire home/apt,249,3,14,2019-07-04,0.71,1,17 +21721946,Bright East Village Apartment!,8334983,Ashley,Manhattan,East Village,40.72411,-73.98872,Entire home/apt,99,5,4,2018-08-15,0.20,1,0 +21722921,Bright & Spacious Bedroom in Greenpoint Apartment,9306976,Aaron,Brooklyn,Greenpoint,40.73399,-73.95542,Private room,60,2,35,2019-06-20,2.41,2,85 +21723212,CROWN HEIGHTS GUEST HOUSE 2R2L3R3L+B,74541079,Abraham,Brooklyn,Crown Heights,40.66911,-73.93666,Entire home/apt,459,4,1,2019-06-24,1,9,87 +21723666,Private cozy room in E. Flatbush,158174749,Lorna,Brooklyn,East Flatbush,40.65553,-73.93642,Private room,70,2,13,2019-06-30,0.66,1,264 +21724762,Beautiful private room in Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.67668,-73.93997,Private room,60,1,19,2019-06-28,0.94,3,85 +21725929,3.7 MLN usd 2 bedroom LOFT in TriBeCa (5),68707439,Gipsy Properties,Manhattan,Tribeca,40.71989,-74.00465,Entire home/apt,497,14,5,2018-02-15,0.25,3,0 +21725963,Sexy Williamsburg Loft Getaway of a Lifetime,158198197,Nicolas,Brooklyn,Williamsburg,40.71273,-73.95026,Private room,130,1,8,2018-07-22,0.52,1,0 +21726358,Crown Heights Guest House B,74541079,Abraham,Brooklyn,Crown Heights,40.66894,-73.93649,Entire home/apt,59,4,34,2019-06-29,2.13,9,49 +21726826,Prime Williamsburg. Bright room steps from train,66835858,Alejandra,Brooklyn,Williamsburg,40.71504,-73.95394,Private room,60,3,30,2019-05-28,1.53,1,42 +21727407,3.5 MLN usd 2 bedroom LOFT in TriBeCa (4),68707439,Gipsy Properties,Manhattan,Tribeca,40.71994,-74.00332,Entire home/apt,350,14,21,2019-05-20,1.08,3,181 +21727418,"Charming, Airy apartment in Trendy Williamsburg",113121846,Caitlin,Brooklyn,Williamsburg,40.71091,-73.95747,Private room,75,2,19,2018-06-24,0.95,2,0 +21727923,Beautifully Restored Brownstone w. Chef's Kitchen,90333053,Aspen,Brooklyn,Clinton Hill,40.68514,-73.95981,Entire home/apt,160,4,6,2019-02-19,0.54,1,15 +21727957,Mod 3 Bd - Central Park/Columbus Circle 2 blocks,23190446,Bridget,Manhattan,Upper West Side,40.7723,-73.98764,Entire home/apt,550,5,5,2019-01-01,0.27,1,7 +21728093,Adorable Williamsburg apartment,158216643,Annie,Brooklyn,Williamsburg,40.72026,-73.961,Private room,60,10,5,2018-07-19,0.27,1,0 +21728589,Cozy private apartment in the heart of Bed-Stuy.,158219768,Lorraine,Brooklyn,Bedford-Stuyvesant,40.68476,-73.92961,Entire home/apt,100,2,73,2019-07-02,3.72,1,140 +21728670,Private 1BR w/ Full-sized Bed. Great Location!,158222655,Adam,Brooklyn,Williamsburg,40.71901,-73.9571,Private room,100,1,69,2019-06-20,3.55,1,85 +21728681,East Village True 1 Bedroom Apartment,30723568,Jeff,Manhattan,East Village,40.72672,-73.98811,Entire home/apt,250,1,0,,,1,0 +21729121,"Beautiful, bright 1BR in Park Slope, Brooklyn",13711192,Whitney,Brooklyn,Park Slope,40.67078,-73.97948,Entire home/apt,105,5,0,,,1,0 +21729245,Subarriendo apartamento enero febrero 2018,158229004,Cristhian,Queens,Astoria,40.76919,-73.9305,Entire home/apt,70,1,0,,,1,0 +21730099,Luxury studio in the heart of Greenpoint!,7118588,Karalyn,Brooklyn,Greenpoint,40.72683,-73.95905,Entire home/apt,105,4,4,2019-04-28,0.20,1,3 +21730105,Large & Private Bedroom in Fort Greene,14294841,Waahid,Brooklyn,Fort Greene,40.69399,-73.97153,Private room,75,2,0,,,1,0 +21730366,Coastal Bedroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.70034,-73.9284,Private room,75,7,100,2019-06-25,4.97,3,25 +21730735,"Steps to LGA, near CitiField, JFK,Manhattan (RM#1)",156948703,Asad,Queens,East Elmhurst,40.77056,-73.87191,Private room,52,1,207,2019-07-03,10.38,6,325 +21732716,Small Room in the great neighborhood ofPark Slope,55468128,Reina,Brooklyn,Windsor Terrace,40.6602,-73.98244,Private room,42,1,88,2019-06-24,4.44,7,248 +21733463,Great Loft Space in Bushwick With Private Bedroom,506299,Ana Sofia,Brooklyn,Bushwick,40.70668,-73.92099,Private room,55,8,0,,,1,0 +21733510,Beautiful 1 bedroom in bedstuy,60153355,Ameyo,Brooklyn,Bedford-Stuyvesant,40.67984,-73.95044,Entire home/apt,120,11,8,2019-01-04,0.42,1,189 +21733545,++A Global Beat hideaway Room in Manhattan,3464645,Sybilla Michelle,Manhattan,Hell's Kitchen,40.75575,-73.99374,Private room,175,2,44,2019-06-30,2.26,3,133 +21733997,Cozy Light Filled 1 Bedroom,16068417,Jamie,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93263,Entire home/apt,80,3,8,2019-04-29,0.41,1,229 +21734761,Spacious & Homey Williamsburg 1BR Apartment,3312235,Chris & Celia,Brooklyn,Williamsburg,40.71353,-73.96442,Entire home/apt,220,5,10,2019-06-23,0.50,1,349 +21735642,Modern/Cozy Brooklyn Apartment,37084362,Amelia,Brooklyn,Williamsburg,40.71469,-73.94097,Private room,101,3,14,2019-06-24,0.76,1,0 +21736059,Bunks in the heart of Harlem!,108836422,Tanner Myles,Manhattan,Harlem,40.81524,-73.95249,Private room,50,13,0,,,1,0 +21736164,"Light-filled 1BR Brownstone Apartment, Bed Stuy BK",4298654,Sam,Brooklyn,Bedford-Stuyvesant,40.68145,-73.93132,Entire home/apt,73,45,2,2019-01-20,0.11,1,43 +21736598,Three Bedroom in Trendy Williamsburg Loft,643120,Sam,Brooklyn,Williamsburg,40.71581,-73.95543,Entire home/apt,275,4,0,,,4,5 +21736682,NEW CHARMING 1BR in Prospect/Lefferts Garden,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.66112,-73.9539,Entire home/apt,110,12,2,2018-11-10,0.17,4,6 +21736808,Lower East Side Chic Apartment,40891373,Jessica,Manhattan,Lower East Side,40.7192,-73.99011,Entire home/apt,125,3,25,2019-07-03,1.27,1,28 +21737389,Private bedroom in Manhattan,49750805,Paige,Manhattan,East Harlem,40.7967,-73.94913,Private room,75,3,2,2018-01-04,0.11,2,0 +21737409,Plant and Book lovers paradise in Hip Williamsburg,113121846,Caitlin,Brooklyn,Williamsburg,40.71106,-73.95954,Entire home/apt,130,3,3,2018-06-07,0.16,2,0 +21737535,Newly Renovated LES Apartment with Private Balcony,11028650,Nathaniel,Manhattan,Lower East Side,40.71935,-73.98442,Private room,69,5,0,,,1,0 +21737594,Private Room in Bushwick!,90721937,Hayden,Brooklyn,Bushwick,40.68635,-73.91187,Private room,25,1,9,2018-01-18,0.45,2,0 +21738018,"2 Blocks from Times Square, Centrally Located!",158324654,Astor,Manhattan,Hell's Kitchen,40.76123,-73.99022,Entire home/apt,185,1,176,2019-06-24,8.92,1,252 +21738084,"Cozy and Relaxing, An East Williamsburg Getaway",125697192,Hollye,Brooklyn,Williamsburg,40.71417,-73.93767,Private room,60,2,75,2019-06-20,3.78,1,23 +21738176,Spend the holidays in your OWN APT in South Harlem,20287472,David,Manhattan,Harlem,40.80275,-73.95117,Entire home/apt,125,20,0,,,1,0 +21738540,Bay Ridge Brooklyn House,158048189,Silvia,Brooklyn,Fort Hamilton,40.61818,-74.03464,Entire home/apt,150,4,1,2018-01-03,0.05,1,0 +21738608,Amazing View Private Terrace! Wow!,158330638,Ilfir,Manhattan,Hell's Kitchen,40.76008,-73.98946,Private room,175,1,3,2018-10-07,0.21,1,0 +21738886,UES Manhattan full service doorman building 2 BR,158334115,Leslie,Manhattan,Upper East Side,40.76237,-73.96374,Entire home/apt,500,2,12,2019-05-06,0.78,1,85 +21739035,NEWLY RENOVATED STUDIO APARTMENT IN HARLEM,158335126,Jonathan,Manhattan,Harlem,40.81702,-73.93882,Entire home/apt,130,3,11,2018-05-03,0.56,1,89 +21739264,423 ocean parkway,158338077,Muhammad,Brooklyn,Kensington,40.63929,-73.9718,Private room,67,1,29,2019-06-16,1.79,2,143 +21739781,Vic's Cafe Deluxe,45044964,Victor,Queens,Queens Village,40.72417,-73.76053,Private room,65,1,15,2019-05-12,1.14,2,349 +21739805,*Boogie Down Private and comfortable stay*,158344372,Rashida,Bronx,Wakefield,40.88688,-73.84789,Private room,70,2,5,2019-05-19,1.16,1,365 +21740055,Newly Renovated Brownstone Brooklyn Apartment,5375870,Rebecca,Brooklyn,Crown Heights,40.6725,-73.94788,Entire home/apt,130,4,46,2019-06-27,2.39,1,28 +21740278,Cozy Williamsburg Apartment,25275076,Deliah,Brooklyn,Williamsburg,40.7153,-73.93906,Entire home/apt,92,3,0,,,1,0 +21740615,"Master room Close to NYU Langone H/Metro N,R line",105640471,Jason,Brooklyn,Sunset Park,40.63853,-74.01628,Private room,51,1,21,2019-05-31,1.08,8,130 +21740756,Brooklyn Large private room (near Manhattan),90058061,Siyi,Brooklyn,Sunset Park,40.66035,-73.99794,Private room,45,7,2,2018-04-15,0.10,1,0 +21740858,Couch in Common Room Bushwick!,90721937,Hayden,Brooklyn,Bushwick,40.68772,-73.91386,Shared room,20,1,0,,,2,0 +21741106,(moving out) ENTIRE place READ BEFORE YOU BOOK,64609445,Ina,Brooklyn,Clinton Hill,40.69479,-73.96812,Entire home/apt,43,3,7,2018-08-08,0.38,2,0 +21741118,"Nice View room Close to NYU Lutheran H/Subway N,R",105640471,Jason,Brooklyn,Sunset Park,40.64136,-74.01709,Private room,55,1,7,2019-05-12,0.40,8,140 +21745018,AMAZING 2 BEDROOM private apt in Williamsburg,158399244,Ted,Brooklyn,Williamsburg,40.70992,-73.95064,Entire home/apt,175,1,92,2019-06-19,4.85,4,138 +21745569,Convenient Private and Cozy Environment,158406020,Marvin,Brooklyn,East Flatbush,40.64902,-73.9286,Private room,45,1,15,2019-02-09,0.76,2,269 +21745600,Full & Cozy Apartment at Bed-Stuy,4032781,Dinorah,Brooklyn,Bedford-Stuyvesant,40.68327,-73.94986,Entire home/apt,70,3,4,2018-01-02,0.21,1,0 +21746100,2 bed 2 bath in cool east Williamsburg Loft!,19298428,Lucy,Brooklyn,Williamsburg,40.70509,-73.93471,Entire home/apt,150,2,6,2019-05-04,0.31,1,0 +21747136,Williamsburg Getaway (North 7th and Berry Street),125997954,Paul,Brooklyn,Williamsburg,40.72011,-73.95847,Private room,65,1,1,2017-11-20,0.05,1,0 +21747137,"Private Room & Bath - Modern Bldg, S. W'Burg, BK",4952512,Betsy And Dan,Brooklyn,Williamsburg,40.70719,-73.95412,Private room,140,1,12,2019-05-11,0.85,1,156 +21748242,Soho Luxury Apartment,33211768,James,Manhattan,Nolita,40.72364,-73.99577,Entire home/apt,200,1,1,2017-11-17,0.05,1,0 +21750219,Luxury 2 Bed / 2 Bath Apt 3 Blocks to Central Park,114008316,Artemisia,Manhattan,East Harlem,40.78951,-73.94605,Entire home/apt,195,30,5,2019-04-12,0.30,1,282 +21750553,SoHo NY Apt Up for Grabs Nov 17- Dec 17,102933312,Lana,Manhattan,Little Italy,40.71927,-73.99663,Private room,45,25,0,,,1,0 +21751275,Modern West Soho Apartment,27551651,Rachel,Manhattan,SoHo,40.72591,-74.00396,Entire home/apt,225,2,9,2019-04-30,0.49,1,6 +21751524,Bright and sunny 1 BR in the heart of UES,4636552,Florencia,Manhattan,Upper East Side,40.77842,-73.95903,Entire home/apt,150,3,1,2017-11-27,0.05,1,0 +21751907,"Room in Brooklyn, 5 min to N and R train",26498283,Aura Angelica,Brooklyn,Sunset Park,40.64736,-74.0106,Private room,40,5,3,2019-01-01,0.16,1,0 +21752471,Cozy Attic Studio with Century-Old Charm,31583052,Sarah,Brooklyn,Sunset Park,40.66427,-73.99243,Entire home/apt,105,3,3,2018-06-26,0.16,1,0 +21752545,Beautiful private bedroom in spacious UWS Apt,107786131,John,Manhattan,Upper West Side,40.79957,-73.96902,Private room,150,2,0,,,1,0 +21752839,Huge Park Slope Loft & Private Garden near Subway,82706379,Julia & Estuardo,Brooklyn,Park Slope,40.67471,-73.98274,Entire home/apt,195,3,47,2019-06-24,2.39,1,55 +21752880,Quiet Williamsburg Penthouse with Manhattan views.,22730721,Alex,Brooklyn,Greenpoint,40.71958,-73.94796,Entire home/apt,225,6,8,2018-12-27,0.47,1,0 +21753002,HUGE QUEEN ROOM IN 1500 SQFT WBURG BALLROOM APT,2212344,Enrique,Brooklyn,Williamsburg,40.71358,-73.95634,Private room,94,4,2,2018-08-18,0.10,3,0 +21753255,A Penthouse Steps from central park,128142697,Rod,Manhattan,Upper East Side,40.76615,-73.97118,Entire home/apt,220,4,1,2017-11-25,0.05,2,0 +21753773,oasis 2,156505456,John,Brooklyn,East New York,40.66114,-73.88889,Private room,30,3,28,2019-05-28,1.43,13,90 +21754221,STYLISH 1-BR APARTMENT IN PRIME SOHO!,6792247,Agnes,Manhattan,SoHo,40.72566,-74.00075,Entire home/apt,187,2,7,2019-06-30,0.64,1,4 +21754369,HUGE room in a BUSHWICK BROWNSTONE,49736414,David,Brooklyn,Bushwick,40.69044,-73.90837,Private room,60,1,0,,,1,0 +21754827,oasis 3,156505456,John,Brooklyn,East New York,40.66098,-73.88828,Private room,45,3,29,2019-06-23,1.57,13,90 +21754860,Sunny & Inviting 3br in the Heart of Clinton Hill,29243209,Sarah,Brooklyn,Clinton Hill,40.68712,-73.96297,Entire home/apt,200,2,0,,,2,0 +21754946,Sofa couch best location 2 min from Central Park!,46224196,Alejandro,Manhattan,Upper East Side,40.76309,-73.96439,Shared room,89,2,1,2017-12-16,0.05,1,0 +21755486,"Cute Manhattan bedroom, close to all amenities",5982945,Nadia,Manhattan,Harlem,40.80791,-73.947,Private room,97,2,5,2018-12-09,0.26,1,365 +21755710,Your comfy abode in Brooklyn,15811194,Gerry,Brooklyn,Brownsville,40.67322,-73.91018,Private room,49,3,30,2019-05-20,1.62,1,62 +21755954,Private Room in Prime Location,16273067,Kim,Manhattan,Hell's Kitchen,40.76145,-73.98912,Private room,147,4,1,2017-12-13,0.05,1,0 +21756084,Cozy Private Bedroom in Bushwick,17906387,Jess,Brooklyn,Bushwick,40.69668,-73.91395,Private room,26,4,1,2018-01-04,0.05,1,0 +21756425,Place of peace,158504512,Georgia,Queens,Cambria Heights,40.70225,-73.72945,Private room,31,1,2,2018-01-19,0.10,1,0 +21762095,Brand New 1 Bdrm Apt in Williamsburg Brooklyn - 3L,156436372,Sonia,Brooklyn,Williamsburg,40.71501,-73.95125,Entire home/apt,100,30,6,2019-05-05,0.44,4,333 +21762160,Big Clean well-lit 2br by the subway in WaHi NYC!,3329425,Brad,Manhattan,Washington Heights,40.83734,-73.94506,Entire home/apt,120,2,1,2018-05-13,0.07,1,210 +21762711,Large House in Brooklyn near Express Subway,158554204,Su,Brooklyn,Bedford-Stuyvesant,40.67917,-73.93103,Entire home/apt,700,1,7,2019-06-01,0.42,1,303 +21762776,Cozy 2 Bedroom in Multifamily,156833182,Maria,Brooklyn,East Flatbush,40.64676,-73.94819,Entire home/apt,100,3,41,2019-01-01,2.07,1,0 +21762969,COZY BEAUTIFUL STUDIO- UPPER WEST SIDE,158552987,Juan Luis,Manhattan,Harlem,40.83172,-73.9488,Private room,80,1,2,2017-12-22,0.11,1,0 +21763302,Astoria flat 5 minutes to subway 10 mins to NYC,158048302,Marilyn,Queens,Ditmars Steinway,40.77416,-73.90755,Entire home/apt,83,5,13,2019-06-22,0.68,1,365 +21764245,Top Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72317,-73.94635,Shared room,35,3,15,2019-06-30,0.78,5,301 +21764576,Tranquil Parkside Oasis,12586492,Sausan,Manhattan,East Village,40.72336,-73.98079,Entire home/apt,133,28,9,2019-06-06,0.54,2,211 +21764778,Bright New York Loft in Williamsburg/Bushwick,12776493,Sonia,Brooklyn,Williamsburg,40.70378,-73.94306,Entire home/apt,92,3,4,2018-01-13,0.21,1,0 +21765318,Middle Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72477,-73.94465,Shared room,35,2,16,2019-06-23,0.81,5,274 +21765794,"Nice private bedroom, prime East Village",154266431,Steven,Manhattan,East Village,40.72419,-73.98294,Private room,95,3,36,2019-07-01,1.83,3,9 +21765895,Fashion Blvd Flat 20 minutes from City Center!,152636597,Alexes,Bronx,Mott Haven,40.81039,-73.92478,Private room,73,1,1,2018-06-09,0.08,1,0 +21766169,Cozy 2BR in Rockefeller Center / Times Square,4227606,Cindy,Manhattan,Midtown,40.75697,-73.97909,Entire home/apt,255,4,5,2018-05-04,0.26,2,0 +21766524,Beautifully Decorated Entire Floor of Brownstone,965946,Sunil,Brooklyn,Park Slope,40.67271,-73.97663,Entire home/apt,200,5,1,2019-06-30,1,1,31 +21766776,Spacious Renovated Duplex in Central Harlem,4379024,Claire,Manhattan,Harlem,40.80486,-73.94889,Entire home/apt,225,3,2,2018-08-09,0.13,1,1 +21767656,AMAZINGLY LOCATED DECORATED ONE BEDROOM CONDO,14321520,Edward,Manhattan,Hell's Kitchen,40.76521,-73.98507,Entire home/apt,275,4,0,,,1,0 +21767672,"Sun kissed, loft studio in the heart of Chelsea",27293055,Sara,Manhattan,Chelsea,40.74143,-74.00027,Entire home/apt,159,3,3,2018-02-19,0.16,1,0 +21767943,Cozy Hideaway in Artist’s Industrial Loft,158599708,Richard,Brooklyn,Prospect Heights,40.68109,-73.96904,Entire home/apt,195,3,47,2019-03-09,2.44,1,0 +21769473,Designer's Own Soho Loft,4654206,Ethan,Manhattan,SoHo,40.72131,-73.99816,Entire home/apt,495,5,2,2019-02-07,0.17,1,2 +21769501,Amazing Studio at the Time Square Area/52D,48146336,Irina,Manhattan,Hell's Kitchen,40.76173,-73.99325,Entire home/apt,130,30,4,2019-05-18,0.43,20,268 +21769638,Bohemian chic Brooklyn floor thru,82119233,Jenny,Brooklyn,Bedford-Stuyvesant,40.69395,-73.95232,Entire home/apt,135,3,46,2019-06-30,2.36,2,255 +21769940,"Light-filled, cozy apartment -convenient location!",13015084,Payal,Queens,Sunnyside,40.74543,-73.92399,Entire home/apt,100,3,35,2019-06-30,1.78,1,2 +21769981,Private room w/ bathroom near Prospect Park,157262166,Sweden,Brooklyn,Prospect-Lefferts Gardens,40.65662,-73.95344,Private room,59,2,102,2019-07-07,5.20,2,347 +21770068,Brooklyn Gem! Close to transportation!,21153742,Ezra,Brooklyn,Bedford-Stuyvesant,40.68882,-73.95194,Private room,150,3,2,2017-11-28,0.10,1,364 +21770277,"Private Bedroom in Artsy Airbnb: Room ""L""",157262166,Sweden,Brooklyn,Prospect-Lefferts Gardens,40.65848,-73.952,Private room,65,2,99,2019-06-20,5.03,2,334 +21770746,The Long House - Williamsburg!,7760308,David & Mallory,Brooklyn,Williamsburg,40.71425,-73.96276,Entire home/apt,175,1,33,2019-06-23,1.96,1,0 +21771006,Beautiful Brownstone 10 mins away from Manhattan,104458,Julia,Brooklyn,Gowanus,40.67831,-73.99324,Entire home/apt,380,4,18,2019-06-17,0.98,1,8 +21771041,"Small apt in LIC, NY.",158628576,Carol & Darcy,Queens,Sunnyside,40.74048,-73.9273,Entire home/apt,170,1,1,2018-08-06,0.09,1,0 +21771395,Shared Apartment,124042625,Brown,Queens,Corona,40.74223,-73.86408,Private room,50,1,4,2018-07-10,0.20,1,95 +21771454,Newly renovated bedroom apartment - 2 beds,23596542,Javier,Brooklyn,Crown Heights,40.6768,-73.93529,Entire home/apt,78,5,2,2018-08-26,0.11,1,0 +21771486,Park Slope it! Close to Manhattan! Renovated!,31697949,Michelle,Brooklyn,Sunset Park,40.66475,-73.99629,Private room,30,2,7,2018-05-15,0.36,1,0 +21771502,Beautiful 5th avenue apartment with balcony,35169885,Boris,Manhattan,Chelsea,40.73649,-73.99237,Entire home/apt,200,10,3,2018-04-29,0.16,1,0 +21771881,Cozy Studio near all Attractions in NYC.,158634669,Juan Carlos,Brooklyn,Sheepshead Bay,40.58747,-73.9587,Entire home/apt,80,1,42,2019-06-28,2.11,1,28 +21772083,Comfortable 1 Bedroom Apartment,26744799,Chris,Brooklyn,Bath Beach,40.60674,-74.00428,Entire home/apt,99,3,39,2019-07-01,2.37,1,306 +21772258,Beautiful Home in Park Slope!,41118093,Brittany,Brooklyn,Park Slope,40.67329,-73.98311,Entire home/apt,125,3,2,2018-03-13,0.10,1,0 +21774455,Charming 1BD Apartment near Empire State building,1010743,Mike,Manhattan,Kips Bay,40.74295,-73.97392,Entire home/apt,165,3,2,2019-07-01,0.11,1,2 +21777252,Bohemian 2 Bedroom in the East Village,4333342,Megan,Manhattan,East Village,40.72833,-73.97926,Entire home/apt,159,6,6,2019-05-12,0.31,2,12 +21778446,Romantic Getaway,129602851,W.,Bronx,Pelham Bay,40.84607,-73.83842,Entire home/apt,99,7,1,2018-02-01,0.06,2,349 +21779257,Cozy bedroom in NYC great for your next vacation!,158692215,Leigha,Manhattan,Harlem,40.82738,-73.94559,Private room,50,3,1,2017-11-26,0.05,1,0 +21780343,Elegant one bedroom in Prospect Heights,38358245,Sarah,Brooklyn,Prospect Heights,40.67665,-73.96985,Entire home/apt,96,7,1,2018-01-11,0.06,1,0 +21780433,Bright room in East Williamsburg,9953808,Savanah,Brooklyn,Williamsburg,40.70782,-73.9403,Private room,65,2,1,2018-05-15,0.07,1,0 +21780501,"Beautiful, Bright Apartment in Heart of Chelsea",53507512,Bridget,Manhattan,Chelsea,40.74328,-73.9991,Entire home/apt,226,4,0,,,1,0 +21780915,Beautiful Sunny Private Room #1 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61497,-74.00531,Private room,65,2,30,2019-06-25,1.55,4,305 +21781196,Private room (2 beds) close to Time Square,66797339,Christian,Manhattan,Hell's Kitchen,40.76026,-73.98875,Private room,250,3,1,2017-12-11,0.05,1,0 +21781507,Spacious Apt near UN Plaza 2 Queen size bed for 5,158710682,Cedar,Manhattan,Midtown,40.7548,-73.96966,Entire home/apt,193,2,75,2019-06-28,3.84,3,105 +21781515,Garden Apartment in the Heart of Greenpoint,35020019,Michael,Brooklyn,Greenpoint,40.72513,-73.94829,Private room,110,2,21,2019-06-24,1.37,1,336 +21781648,3 Bedroom designer apartment with views,98014,Raza,Brooklyn,South Slope,40.66821,-73.98834,Entire home/apt,245,3,0,,,1,0 +21781859,Mid-town West 5-min walk to Central Park,2368634,Jen,Manhattan,Upper West Side,40.76814,-73.98404,Entire home/apt,220,5,2,2018-09-06,0.10,1,0 +21781983,Beautiful Sunny Private Room #2 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61465,-74.00312,Private room,70,2,15,2019-07-01,0.77,4,236 +21782140,Brand New 2 Bedroom Apt in Bed Stuy with Garden,205285,Andrea,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94164,Entire home/apt,80,30,7,2019-06-15,0.50,1,0 +21782158,Beautiful Sunny Private Room #3 in Brooklyn,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61466,-74.00504,Private room,70,2,24,2019-06-02,1.22,4,315 +21783251,Separate 2 Bedroom Apartment located inside Loft.,158725307,Greg,Manhattan,NoHo,40.72909,-73.99125,Entire home/apt,200,2,81,2019-06-21,4.24,2,194 +21783298,Upper West Side Quiet and Private Studio,11387702,Rob,Manhattan,Upper West Side,40.78037,-73.98021,Entire home/apt,145,7,0,,,1,0 +21783619,Cozy room at Columbia University,50048064,T,Manhattan,Morningside Heights,40.80369,-73.96238,Private room,50,1,0,,,1,0 +21783724,Park Slope Beauty For Your Winter Stay In NYC,2101238,Ty,Brooklyn,Park Slope,40.67681,-73.97911,Entire home/apt,170,2,9,2018-04-15,0.45,1,0 +21784156,East Village Penthouse - Private Bedroom,16866,Nicholas,Manhattan,East Village,40.7301,-73.98239,Private room,135,3,32,2019-06-19,1.70,2,76 +21784437,Classic Brooklyn room in brownstone neighborhood,33836993,Daniela,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92949,Private room,65,7,1,2017-12-29,0.05,1,0 +21785354,Cozy room in tranquil home in great neighborhood.,1406432,Mary,Brooklyn,Prospect Heights,40.67471,-73.96408,Private room,60,3,62,2019-06-09,3.11,2,49 +21785385,3.5 MLN usd 2 bedroom LOFT in TriBeCa (2),68707439,Gipsy Properties,Manhattan,Tribeca,40.71953,-74.00386,Entire home/apt,339,14,10,2019-02-25,0.53,3,335 +21785426,Brooklyn Home with a Backyard!,5269420,Abigail,Brooklyn,Bedford-Stuyvesant,40.68739,-73.95405,Entire home/apt,125,2,2,2018-10-27,0.11,1,0 +21785453,Hell’s Kitchen (52nd Street & 9th Avenue),158745515,Nick,Manhattan,Hell's Kitchen,40.76424,-73.98713,Private room,60,1,0,,,1,0 +21786337,Master Bedroom in Harlem - 20 min to Midtown!,64837680,Andrea,Manhattan,Harlem,40.82774,-73.94609,Private room,60,1,1,2018-01-01,0.05,1,0 +21786780,Artful loft ★ NYC ★ Chelsea,8905097,★The Local Apple★,Manhattan,Chelsea,40.74245,-73.99348,Entire home/apt,750,12,1,2019-05-21,0.61,1,332 +21786868,Spacious Lower East Side with private balcony,78999831,Michael,Manhattan,Lower East Side,40.72221,-73.99084,Private room,200,2,0,,,1,0 +21786958,Slice of Heaven @ 811,105130665,Sharon,Brooklyn,Crown Heights,40.6703,-73.94182,Entire home/apt,250,3,44,2019-07-04,2.33,1,52 +21787094,Spacious and Bright Midtown East Apartment,415290,,Manhattan,Upper East Side,40.76436,-73.96836,Entire home/apt,325,1,0,,,1,0 +21787703,Clean Cozy House less than 10 min from JFK :),7097558,Louise,Queens,South Ozone Park,40.67078,-73.79164,Entire home/apt,75,1,154,2019-06-22,8.24,2,0 +21788114,Shared 2 Bedroom Loft in Soho,16962957,Nick,Manhattan,Lower East Side,40.71925,-73.99418,Private room,129,5,3,2018-12-12,0.31,4,153 +21788688,Historic Turret Retreat (Smart TV/Cable/Wifi),54921733,Louise,Brooklyn,Flatbush,40.6437,-73.96769,Private room,85,7,3,2018-06-26,0.18,3,0 +21788734,Beautiful large room in Morningside Heights,26095943,Finola,Manhattan,Morningside Heights,40.80423,-73.96515,Private room,60,10,0,,,1,2 +21789289,Room in house with WiFi and Netflix,119848398,Devi,Bronx,Parkchester,40.83067,-73.88024,Private room,35,1,14,2019-07-02,0.70,2,1 +21794374,@the heart Of Queens. 20Mins 2 Downtown.nearall.B,60291768,Kim,Queens,Elmhurst,40.73914,-73.87116,Entire home/apt,99,4,42,2019-06-16,2.17,2,64 +21794522,Colorful Bed Stuy studio apartment,4575233,Ben,Brooklyn,Bedford-Stuyvesant,40.69259,-73.92881,Entire home/apt,140,3,2,2017-12-11,0.10,1,0 +21794873,Exclusive & Luxurious 4BR/4Bath Townhouse,72205446,Trish,Manhattan,Murray Hill,40.74866,-73.97846,Entire home/apt,1000,3,10,2019-06-03,2.07,1,310 +21796185,Beautiful one bedroom apartment centrally located,117711581,On,Brooklyn,Midwood,40.62914,-73.9575,Entire home/apt,116,2,2,2019-05-19,0.11,1,0 +21796834,Beautiful private room in Greenpoint,33082247,Jimena,Brooklyn,Greenpoint,40.72391,-73.94214,Private room,60,3,2,2018-04-01,0.10,1,0 +21797359,Bayridge 2 bedroom furnished apartment.,119029523,Ebada,Brooklyn,Fort Hamilton,40.62231,-74.02885,Entire home/apt,130,4,4,2018-08-05,0.22,3,324 +21797820,"Loft w/ brick&beam, deep soak tub, rainfall shower",465290,Sam,Brooklyn,Williamsburg,40.71989,-73.95837,Entire home/apt,350,175,5,2018-04-30,0.26,1,362 +21797928,Charming Ditmas Park Air B&B,6335178,Paula,Brooklyn,Flatbush,40.63146,-73.96227,Entire home/apt,95,3,24,2019-06-06,1.25,1,277 +21798411,Full mattress in the living room,47735494,Iris,Queens,Rego Park,40.72826,-73.87015,Shared room,21,1,11,2018-04-21,0.55,4,0 +21798471,Prime Tribeca Loft,50760546,CRNY Monthly Rentals,Manhattan,Tribeca,40.72005,-74.00455,Entire home/apt,499,30,0,,,31,179 +21798589,Thanksgivings - Upper East 1 bedroom,51538706,Moises,Manhattan,East Harlem,40.78639,-73.94869,Entire home/apt,108,3,1,2017-11-26,0.05,1,0 +21798722,Private Studio in Queens Blvd /Min 2guest perstay,153141476,Franz,Queens,Briarwood,40.70593,-73.81468,Entire home/apt,50,1,47,2019-06-01,2.38,3,40 +21799111,Charming and snug 1 bd in West Village near soho,17692768,Isabella,Manhattan,West Village,40.73226,-74.00184,Entire home/apt,175,6,11,2018-10-08,0.62,1,0 +21799291,East Village Alcove Studio with Great Light & View,78534291,Max,Manhattan,East Village,40.72202,-73.97909,Entire home/apt,230,5,3,2019-01-04,0.16,1,0 +21799470,"Beautiful, quiet room with ensuite bathroom",10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68507,-73.93565,Private room,60,1,1,2018-01-01,0.05,2,0 +21800401,Brooklyn Treehouse,85162903,Amelia,Brooklyn,Williamsburg,40.7115,-73.95746,Entire home/apt,130,3,1,2017-11-26,0.05,1,0 +21800445,Gorgeous 2-Level East Village Apt (2 Bed/1.5 Bath),5443000,Erin,Manhattan,East Village,40.73103,-73.98233,Entire home/apt,299,2,21,2019-06-11,1.08,2,2 +21800820,Queen Room in Prospect Lefferts Gardens Flatbush,1512819,Sydney,Brooklyn,Flatbush,40.65314,-73.95304,Private room,40,5,12,2019-04-30,0.70,5,67 +21801370,Authentic Brklyn Experience - Room C,156042211,Tia,Brooklyn,Canarsie,40.64942,-73.89783,Private room,40,4,4,2018-09-10,0.22,4,37 +21801514,Apartment in trendy Nolita,3644416,Kaaran,Manhattan,Nolita,40.72207,-73.99596,Entire home/apt,270,7,0,,,1,0 +21801520,"Private, Cozy Manhattan Bedroom",5742326,Dina,Manhattan,Harlem,40.8217,-73.95336,Private room,48,1,1,2017-12-01,0.05,1,0 +21802458,Charming loft-style apartment with private balcony,59281169,Nicole,Manhattan,Greenwich Village,40.73449,-73.99299,Entire home/apt,300,1,29,2019-06-22,1.46,1,39 +21802684,30+Day Stay: Designer Home with Skylight & Rooftop,137522531,Ali,Queens,Flushing,40.75759,-73.80815,Entire home/apt,228,5,50,2019-06-07,2.63,7,178 +21802923,Private Bedroom with Private Entrance in Brooklyn.,72466752,Nelima,Brooklyn,Bushwick,40.70247,-73.91793,Private room,60,4,16,2019-06-30,0.83,1,42 +21803004,Modern Room in the heart of Manhattan(just female),156246842,Sandra,Manhattan,Theater District,40.76069,-73.9863,Private room,99,3,46,2019-06-20,2.49,3,25 +21803103,"Great Home & Host, next to #1 train",60163700,Dee,Manhattan,Harlem,40.82347,-73.95228,Private room,65,14,13,2019-05-19,0.69,4,0 +21804158,First Class Suite in Central Manhattan,30322413,Sarah,Manhattan,Midtown,40.76398,-73.98034,Private room,325,1,0,,,1,0 +21804600,The garden apartment,158781381,Samuel,Brooklyn,East New York,40.66204,-73.88946,Entire home/apt,90,2,54,2019-06-25,2.84,2,255 +21804666,Luxury room at Hudson Yards,158731650,Jamal,Manhattan,Hell's Kitchen,40.75605,-73.99797,Private room,139,1,0,,,1,0 +21804933,Комната. Место в комнате,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58612,-73.95014,Private room,50,30,0,,,3,166 +21805468,ELEGANT BROOKLYN GARDEN STUDIO,158925455,Marlene,Brooklyn,East Flatbush,40.63794,-73.93125,Entire home/apt,60,2,46,2019-07-02,2.34,1,300 +21809773,1 Bedroom close to Prospect Park and Manhattan,158961969,Victor,Brooklyn,Flatbush,40.64124,-73.9688,Entire home/apt,110,1,45,2019-06-16,2.31,1,18 +21810203,Huge private bedroom one block from the train! :),2385790,G,Brooklyn,Bedford-Stuyvesant,40.69568,-73.93831,Private room,69,1,0,,,2,0 +21810316,"Spacious, luxury aparment in heart of NYC!",28226289,Maxwell,Manhattan,East Village,40.72428,-73.97957,Entire home/apt,500,4,1,2017-12-26,0.05,1,0 +21810960,"Loft For Events, Meetings & Content Creation",150522833,Jack,Manhattan,Midtown,40.7513,-73.98333,Entire home/apt,600,1,20,2019-06-14,1.09,1,169 +21811156,Cool and Cozy East Village Studio - Best Location,158974584,Emma,Manhattan,East Village,40.72456,-73.98764,Entire home/apt,125,5,3,2018-01-02,0.16,1,0 +21811663,Private Cozy Studio Suite,15544818,Janice,Bronx,Pelham Gardens,40.86264,-73.84854,Entire home/apt,62,2,61,2019-06-25,3.22,1,68 +21811946,East Village - Spacious & Colorful,2285348,Kevin,Manhattan,East Village,40.72929,-73.98625,Entire home/apt,196,2,7,2018-12-30,0.36,1,0 +21812347,Large 3BR/2BA Designers Apt in the Gallery Area,1155050,Umar,Manhattan,Chinatown,40.71572,-73.99114,Entire home/apt,299,2,80,2019-07-06,4.01,1,199 +21812980,New Brooklyn apartment with a view,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69001,-73.95136,Private room,80,3,2,2019-04-18,0.11,3,5 +21813179,Cozy room for 1-4 guests in the heart of NYC,119651060,Josephine,Manhattan,Hell's Kitchen,40.76151,-73.98816,Private room,111,4,1,2017-12-12,0.05,1,0 +21813407,Light bedroom with Manhatten skyline view,157558461,Rasmus,Brooklyn,Bedford-Stuyvesant,40.69102,-73.95132,Private room,80,3,3,2018-09-30,0.16,3,88 +21813491,East Village · Pied Á Terre · NYC,155014420,Tim And Reuben,Manhattan,East Village,40.72256,-73.97925,Entire home/apt,184,30,11,2018-06-28,0.61,1,313 +21813560,"Private Room in Sunny, Spacious 3 Bdrm Apartment",19138757,Helen,Brooklyn,Crown Heights,40.67517,-73.9564,Private room,60,3,4,2018-09-30,0.22,1,302 +21813814,Cute and convenient WB apartment,158997467,Thomas,Brooklyn,Williamsburg,40.70966,-73.95667,Private room,75,2,41,2018-10-29,2.11,2,0 +21814527,Large One Bedroom in Inwood.,51152932,Katelynn,Manhattan,Inwood,40.86794,-73.91629,Entire home/apt,70,1,4,2018-10-07,0.20,1,3 +21814812,Stunning East Village 1 b/r w.elevator & laundry,11984140,Emma,Manhattan,East Village,40.72941,-73.97916,Entire home/apt,210,28,2,2019-05-01,0.65,1,78 +21814906,Live/Work East Williamsburg Loft,6502688,Bryan,Brooklyn,Williamsburg,40.70592,-73.93513,Entire home/apt,165,2,7,2019-02-03,0.37,1,0 +21815771,Cozy Affordable room in Brooklyn,158920456,Diego,Brooklyn,Bedford-Stuyvesant,40.6786,-73.9255,Private room,40,1,13,2019-06-30,0.65,1,184 +21815831,Private Master BedRoom with Private bath in NYC,24528756,Hamza,Manhattan,Hell's Kitchen,40.76617,-73.9883,Private room,170,1,3,2017-11-26,0.15,1,0 +21815842,Spacious 2 bedroom in beautiful Clinton Hill,1931990,Yarden,Brooklyn,Clinton Hill,40.68859,-73.96035,Entire home/apt,93,3,2,2018-05-11,0.13,1,0 +21816278,Big Sunny Room in Bedstuy/Clinton Hill Brownstone,48960226,Julia,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95469,Private room,47,1,5,2018-03-08,0.25,1,0 +21816442,Cosy and Bright Apartment in Downtown Brooklyn,48159029,Evie,Brooklyn,Bedford-Stuyvesant,40.69179,-73.95915,Entire home/apt,200,1,0,,,1,0 +21816519,Large & bright apartment in the West Village,24123958,Elliot,Manhattan,West Village,40.73522,-73.99983,Entire home/apt,175,2,19,2018-09-06,1.03,1,0 +21816522,Cozy Private Room in Upper Manhattan,39739038,Stephanie,Manhattan,East Harlem,40.79741,-73.93493,Private room,120,1,3,2018-09-19,0.22,2,179 +21816757,Newly Renovated Brooklyn Apartment,159023062,Victoria,Brooklyn,Crown Heights,40.67372,-73.91648,Entire home/apt,70,2,12,2018-12-28,0.61,1,0 +21817150,Spacious & Airy Loft Apartment in Williamsburg,35567813,Hilary,Brooklyn,Williamsburg,40.71576,-73.94088,Entire home/apt,175,2,0,,,1,35 +21817570,Quiet top floor studio,7412033,Evan,Manhattan,Upper East Side,40.76951,-73.96192,Entire home/apt,105,2,14,2018-05-28,0.71,1,0 +21817889,LA COURONNE - Sophisticated Spacious 3 BDRM 2 BTHS,158764663,Daphne & Jonathan,Brooklyn,Crown Heights,40.66505,-73.93875,Entire home/apt,275,2,78,2019-06-11,4.06,1,325 +21817961,Enjoy Harlem,66472428,Adrianne,Manhattan,Harlem,40.81029,-73.94344,Entire home/apt,165,3,1,2017-12-14,0.05,1,0 +21818110,阳光之家,159027993,Michelle,Queens,Flushing,40.75997,-73.81287,Private room,48,4,14,2019-06-14,0.72,2,171 +21818641,Modern 1 BR Hell's Kitchen condo with courtyard,159042433,Alexander,Manhattan,Hell's Kitchen,40.76172,-73.99428,Entire home/apt,195,3,3,2018-12-01,0.16,1,0 +21822599,"Sunny, spacious 2 bdrm in Park Slope w/ parking",18146582,Bert,Brooklyn,Park Slope,40.6789,-73.97909,Entire home/apt,280,4,2,2019-07-05,0.11,1,0 +21822611,Bright + Cozy room in Chinatown FOODIE Paradise!,25766360,Darra,Manhattan,Lower East Side,40.71235,-73.99071,Private room,100,21,0,,,1,332 +21822619,THE HUGH SUITES 3mins to JFK,1280731,Hugh,Queens,Springfield Gardens,40.66578,-73.77301,Entire home/apt,80,1,214,2019-06-23,10.86,1,307 +21822750,*AWESOME PLACE*2 MIN SUBWAY!,159020652,JoaoLinda,Brooklyn,Bushwick,40.68235,-73.90381,Private room,48,2,58,2019-06-30,3.04,1,349 +21822768,Central Park apt 7/10-7/18 nyc summer July,3239797,Rachel,Manhattan,Upper West Side,40.79401,-73.9639,Entire home/apt,228,7,1,2018-07-17,0.08,1,0 +21823574,Quiet and cozy in Queens and close JFK Airport,159088461,Rudy,Queens,Howard Beach,40.66802,-73.84803,Private room,55,2,0,,,1,363 +21823815,SUNNY BROOKLYN VIBES,44232555,Dániel,Brooklyn,Williamsburg,40.70358,-73.93698,Entire home/apt,60,4,2,2018-02-13,0.11,1,0 +21823931,Quiet & Bright 1 Bedroom in Downtown Flushing,5962328,Alan,Queens,Flushing,40.75899,-73.82245,Entire home/apt,90,30,3,2019-06-30,0.30,15,281 +21824124,Boutique Gowanus Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.6786,-73.98381,Private room,139,1,82,2019-07-07,4.16,17,355 +21824323,Large Sunnyside Apartment 20 min to Times Square,23818224,Michael,Queens,Sunnyside,40.74523,-73.91676,Entire home/apt,95,14,5,2019-05-02,0.26,1,0 +21824416,Gowanus Inn Boutique Queen,159091490,Melissa,Brooklyn,Gowanus,40.67721,-73.98444,Private room,129,1,7,2019-06-30,0.36,17,364 +21824420,Christmas in the City w/ local vibe,22658012,Kathryn,Manhattan,Hell's Kitchen,40.76633,-73.9875,Entire home/apt,150,4,0,,,1,0 +21824734,Gowanus Boutique Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.67851,-73.98439,Private room,119,1,9,2019-06-30,0.46,17,364 +21824864,The Great Room on the Upper East Side,27552154,Sylvia,Manhattan,Upper East Side,40.7627,-73.96225,Private room,90,3,1,2018-01-01,0.05,2,0 +21825081,Beautiful apartment in Chinatown / Lower East Side,157967024,Jade,Manhattan,Chinatown,40.71508,-73.99275,Entire home/apt,125,4,5,2019-04-29,0.26,1,0 +21825464,Bright Room In 2 Bedroom Flat With Outdoor Patio,13898361,Charles,Brooklyn,Williamsburg,40.71173,-73.96164,Private room,55,1,1,2017-12-30,0.05,1,0 +21825573,Beautiful Brooklyn studio,72926334,Iquane,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93132,Entire home/apt,79,1,65,2019-06-17,3.78,3,92 +21825897,Studio in Greenwich Village,30185313,Ariel,Manhattan,Greenwich Village,40.73103,-74.00141,Entire home/apt,120,27,4,2019-05-06,0.24,1,153 +21825923,"Beautiful, Lovely W. Village Room for Females!",93705483,Andrea,Manhattan,West Village,40.73158,-74.00151,Private room,138,2,92,2019-06-24,4.65,2,60 +21826195,Spacious Manhattan Studio - Greenwich Village,27090361,Kaleisha,Manhattan,Greenwich Village,40.73213,-73.99323,Entire home/apt,126,3,2,2017-11-26,0.10,1,0 +21826266,Cozy Manhattan private room @Excellent location,159027871,Chuhan,Manhattan,Upper West Side,40.80204,-73.96612,Private room,35,10,2,2018-05-26,0.11,1,0 +21826282,Lovely room in West Harlem,80512824,Yoleni,Manhattan,Harlem,40.81855,-73.94447,Private room,46,1,5,2018-04-11,0.25,1,0 +21826403,Elmhurst Braodway Apartment,120047243,馨惠,Queens,Elmhurst,40.73688,-73.87644,Private room,55,15,0,,,1,0 +21827276,Cozy Minimalist Small Room in a Great Apartment,93011199,Marion,Brooklyn,Bedford-Stuyvesant,40.68588,-73.95551,Private room,50,1,24,2018-05-24,1.21,1,0 +21827355,Big bedroom in CHINATOWN. Reserve before June 26th,89158733,Alex,Manhattan,Chinatown,40.71447,-73.99433,Private room,60,15,0,,,2,0 +21827363,"BUSINESS OR SINGLE TRAVELLER BEDROOM, BEST IN NYC!",69124870,Ana Y Victor,Brooklyn,Williamsburg,40.70801,-73.95902,Private room,400,1,23,2019-06-18,1.36,4,77 +21827433,"Huge, Cozy Brooklyn Duplex with Backyard",142662928,Nell,Brooklyn,Bedford-Stuyvesant,40.69292,-73.93463,Entire home/apt,160,5,0,,,1,0 +21828071,Sunny Brownstone Apartment in Brooklyn,9127501,Elianna,Brooklyn,Crown Heights,40.67737,-73.94986,Private room,70,3,0,,,1,115 +21828822,Bushwick room filled with character and antiques!,34692600,Mateo,Brooklyn,Bushwick,40.69608,-73.91973,Private room,45,2,1,2017-12-12,0.05,1,0 +21828988,Beautiful Apartment @ Heart of the Upper West Side,6897051,Corey,Manhattan,Upper West Side,40.78558,-73.97703,Private room,340,2,0,,,2,362 +21829006,Room: Minimalist Artist Loft Williamsburg,43490965,Nicole,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94069,Private room,50,2,4,2018-01-01,0.21,1,0 +21829161,Brooklyn Studio,35404558,Brian,Brooklyn,Bedford-Stuyvesant,40.68476,-73.95801,Private room,300,1,4,2018-06-23,0.20,1,0 +21829714,GORGEOUS Apartment in Astoria - close to Manhattan,41813694,Caro,Queens,Ditmars Steinway,40.77853,-73.90934,Entire home/apt,95,3,8,2019-06-03,0.67,1,3 +21829821,Spacious room apt. Manhattan near Times Square.,159150155,Ronak,Manhattan,Hell's Kitchen,40.76793,-73.98583,Private room,150,1,1,2017-11-21,0.05,1,0 +21830694,A Piece of mind in the city,57882444,Antrice,Bronx,Allerton,40.85973,-73.86699,Entire home/apt,70,2,7,2018-01-02,0.36,1,0 +21833222,Williamsburg Brooklyn Apartment - Modern & Chill,51032135,Catherine,Brooklyn,Greenpoint,40.72754,-73.95527,Private room,45,1,1,2018-06-06,0.08,1,0 +21833559,Williamsburg Retreat - 2 Floors & private backyard,44761940,David,Brooklyn,Williamsburg,40.71544,-73.95075,Entire home/apt,280,2,19,2018-11-23,0.99,1,0 +21833654,Cozy room in Financial District!,159014806,Laura,Manhattan,Financial District,40.71025,-74.00756,Private room,45,7,3,2017-12-15,0.15,1,0 +21833755,Beautiful 1/1 in Murray Hill!,14760116,Adam,Manhattan,Murray Hill,40.7466,-73.97044,Entire home/apt,400,5,0,,,1,0 +21834156,Central Park South Classic Junior Suite,34693688,Darwin Dion,Manhattan,Midtown,40.76411,-73.98074,Entire home/apt,400,3,0,,,1,0 +21834484,Contemporary 3 Bedroom in Maspeth Queens,59749036,Lee,Queens,Maspeth,40.72609,-73.90112,Entire home/apt,245,2,93,2019-06-18,4.79,1,201 +21834937,Beautiful & spacious room 15 mins to Manhattan,14540215,Merisa,Brooklyn,Bushwick,40.69834,-73.93436,Private room,50,14,1,2018-01-08,0.05,1,0 +21835336,Dreamy Brooklyn Studio in Prospect Heights with AC,22630406,Andrea,Brooklyn,Prospect Heights,40.67376,-73.96433,Entire home/apt,125,2,14,2019-06-17,0.73,1,9 +21835893,"Artist Flat, 5 min walk to Metro 30 mins from JFK",16356565,Shirley,Brooklyn,Flatbush,40.63435,-73.95027,Entire home/apt,95,2,41,2019-05-27,2.13,2,0 +21836092,Kensington charmer,47343420,Jennifer,Brooklyn,Kensington,40.64407,-73.97428,Entire home/apt,150,2,10,2018-12-31,0.54,2,0 +21836176,Bright Studio Alcove in Prime East Williamsburg,2233850,Brittney,Brooklyn,Williamsburg,40.70894,-73.94847,Entire home/apt,100,2,20,2019-06-10,1.08,1,0 +21836315,Ultimate Pad in Prime Williamsburg with huge ktchn,128536016,Danny,Brooklyn,Williamsburg,40.7146,-73.96282,Entire home/apt,385,10,0,,,1,0 +21836461,East Village apartment - available for December,9214999,Elsa,Manhattan,East Village,40.728,-73.98603,Entire home/apt,125,25,3,2017-11-19,0.15,1,0 +21836784,Sun-Drenched 2 Bedroom Apt in Hamilton Heights,21046508,Linda May Han,Manhattan,Harlem,40.82502,-73.94919,Entire home/apt,100,12,0,,,1,0 +21837063,Sunny Escape in Victorian Beverley Square West,122045009,Jeff,Brooklyn,Flatbush,40.6416,-73.96905,Private room,105,1,73,2019-06-06,3.95,1,139 +21837620,"Huge Room, Modern Unit in Carroll Gardens",1703438,Josh,Brooklyn,Carroll Gardens,40.67574,-73.99783,Private room,59,5,1,2017-12-01,0.05,1,0 +21838658,Private Room in Spacious Chelsea Loft,5111838,John,Manhattan,Chelsea,40.74661,-73.99245,Private room,99,7,19,2019-05-10,1.02,1,11 +21838873,Brooklyn room,120437116,Melanie,Brooklyn,Red Hook,40.67896,-74.00518,Shared room,80,3,0,,,1,0 +21838962,Quiet Park Slope Sanctuary,6874341,Charlotte,Brooklyn,Park Slope,40.67145,-73.97143,Entire home/apt,115,3,2,2018-06-18,0.11,1,0 +21839021,Bushwick private 10 foot ceiling dwelling,131476075,Lakisha,Brooklyn,Bushwick,40.68637,-73.91159,Private room,53,2,19,2019-01-02,1.03,8,177 +21839960,"Safe, Comfortable and Convenient",39346203,Amy,Queens,Forest Hills,40.72573,-73.85292,Private room,45,2,8,2018-01-14,0.40,1,0 +21843831,"Cosy space, 30 min to Manhattan 15 Barclay Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65532,-73.91793,Private room,80,7,1,2019-04-18,0.36,9,364 +21844040,Comfy Couch in Cool Modern Brooklyn (BUSHWICK) Apt,140433148,Lauren,Brooklyn,Bushwick,40.69634,-73.91323,Shared room,43,3,32,2019-06-16,1.86,3,104 +21844210,"Large, sunny oasis in Manhattan",135554944,Stacey-Ann,Manhattan,Harlem,40.81088,-73.9441,Entire home/apt,275,2,2,2018-05-07,0.11,1,0 +21844221,Charming & Cozy 1BR in Park Slope w/Outdoor Space,130623170,Aj,Brooklyn,Park Slope,40.68001,-73.97603,Entire home/apt,200,3,27,2019-06-24,2.67,1,336 +21844377,In the heart of Chelsea and downtown,1317913,Lauren,Manhattan,Chelsea,40.74116,-74.00053,Private room,200,3,0,,,2,158 +21844499,Cozy Central Park West Brownstone,1684573,Emily,Manhattan,Upper West Side,40.78624,-73.96952,Entire home/apt,96,3,2,2017-12-01,0.10,1,0 +21844578,Sunny + Spacious Master Bedroom with Outdoor Deck,1349340,Noah,Brooklyn,Clinton Hill,40.68769,-73.96118,Private room,65,3,2,2018-09-30,0.19,2,0 +21845154,Warm and cosy apartment in the heart of New York,4495261,Julien,Manhattan,East Village,40.72631,-73.98507,Entire home/apt,180,7,2,2018-09-09,0.11,1,0 +21845187,Sunny Private Room in Stunning Williamsburg Loft,159312334,Simon,Brooklyn,Williamsburg,40.71078,-73.96359,Private room,95,8,0,,,1,13 +21845780,Sky Cabin in Hell’s Kitchen! Steps to Times Square,5067783,Patrick,Manhattan,Hell's Kitchen,40.76564,-73.99118,Private room,125,1,53,2019-06-21,3.00,1,42 +21846856,Sunny Private Room in a Cozy Shared Apartment,48735753,Amruta,Manhattan,Harlem,40.81589,-73.9446,Private room,36,2,0,,,1,0 +21848241,Artsy and charming retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65684,-73.96042,Private room,95,1,48,2019-06-23,2.63,2,77 +21849210,Charming alcove studio in PRIME location!!,25814915,Ashley,Manhattan,East Village,40.72755,-73.98755,Entire home/apt,150,4,1,2017-11-19,0.05,1,0 +21849509,Private Bedroom in Modern CondoTriplex,90541057,Taylor,Brooklyn,Crown Heights,40.67672,-73.92964,Private room,85,1,32,2018-09-09,1.62,1,0 +21849942,One bedroom in the Village,23443666,Shachar,Manhattan,West Village,40.73494,-74.00228,Entire home/apt,190,7,1,2018-01-05,0.05,1,0 +21850082,Amazing Quite & Cozy Room with Private Backyard!,159362106,Matan,Brooklyn,Williamsburg,40.71345,-73.95938,Private room,61,1,25,2019-06-26,1.27,1,7 +21850183,Perfect apartment for 2 (in Manhattan),49661012,Nompakamiso,Manhattan,Upper East Side,40.77408,-73.95504,Entire home/apt,130,5,6,2019-05-13,0.33,1,7 +21850364,Gorgeous loft by the Flatiron building,7018179,Hugo,Manhattan,Flatiron District,40.74044,-73.98777,Entire home/apt,180,5,4,2019-01-03,0.22,1,0 +21850427,Bright Private Room in Brooklyn,6186498,Heeran,Queens,Ridgewood,40.69946,-73.90833,Private room,60,2,81,2019-07-05,4.10,1,34 +21850834,Modern Touch.,159369488,Tara,Queens,Arverne,40.59686,-73.80262,Entire home/apt,200,2,18,2019-07-06,1.30,1,202 +21851016,"Designer's private BR/Studio ++common kitch/bath",8869512,Antonio,Brooklyn,Crown Heights,40.67391,-73.95581,Private room,65,3,1,2018-04-02,0.06,1,0 +21851100,Lincoln Center Studio,7724142,Christopher,Manhattan,Upper West Side,40.77562,-73.98756,Entire home/apt,1066,1,2,2019-01-01,0.20,1,365 +21851228,"Clean, Comfy and Central Midtown Haven!",7709305,Sasha,Manhattan,Midtown,40.75393,-73.97316,Entire home/apt,200,2,29,2019-06-15,1.58,1,18 +21851368,"Trendy, Chill & Comfy in Manhattan NYC",153025974,Kelsy,Manhattan,Washington Heights,40.84182,-73.93898,Entire home/apt,130,3,25,2019-06-22,1.36,1,155 +21851390,East village apartment,158191137,Thomas,Manhattan,East Village,40.72863,-73.99008,Private room,70,3,8,2019-06-07,0.40,1,0 +21851570,Studio In A New Building in Bedstuy,159379318,Heini,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94361,Entire home/apt,95,7,4,2019-01-01,0.21,1,1 +21851586,Experiencing NYC with Comforts of Home,158757567,Felix,Brooklyn,Park Slope,40.6749,-73.97593,Entire home/apt,400,3,42,2019-06-18,2.22,1,46 +21851700,Perfect Manhattan Studio Apartment - Quiet Street,15907782,Chelsea,Manhattan,Chelsea,40.74031,-73.9986,Entire home/apt,150,3,9,2019-04-30,0.48,1,13 +21851931,"Sunny modern loft studio, amazing Manhattan views",21816029,Melissa,Brooklyn,Greenpoint,40.72871,-73.95107,Entire home/apt,115,2,17,2019-02-24,0.86,1,0 +21852060,Bright Brooklyn Apartment,50175698,Thiru,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94492,Entire home/apt,80,5,1,2017-11-21,0.05,1,0 +21852211,BEAUTIFUL MODERN DESIGNER LOFT with BATHTUB!,33658455,Alex,Manhattan,West Village,40.73642,-73.9992,Entire home/apt,345,3,61,2019-07-01,3.17,1,150 +21852332,*Spacious NYC gem* Direct train to central sights!,18554823,Agnes,Manhattan,Marble Hill,40.87634,-73.90948,Entire home/apt,110,1,85,2019-06-26,4.40,1,52 +21852466,Spacious private apartment by Columbia University,44514403,Stephanie,Manhattan,Morningside Heights,40.80414,-73.96576,Entire home/apt,150,2,23,2018-05-28,1.18,1,0 +21853347,Suite Too at Bryant Manor,67069129,Kevin,Manhattan,Harlem,40.80934,-73.95457,Entire home/apt,265,2,65,2019-07-02,3.34,2,257 +21857734,Williamsburg Private Room in 4 BR Apt off L train,20346657,Leah,Brooklyn,Williamsburg,40.70941,-73.93862,Private room,42,7,4,2019-03-25,0.22,1,53 +21857913,136 Apt 3,159435936,Jonathan,Manhattan,Upper West Side,40.78834,-73.97215,Entire home/apt,95,15,5,2018-08-20,0.27,3,0 +21859065,1 bedroom apartment in super central location,36757798,Nicky,Manhattan,West Village,40.73176,-74.00348,Entire home/apt,130,6,8,2019-01-02,0.41,1,0 +21859249,"Cozy, bright and spacious 3BR apartment - Brooklyn",49213265,Mariana,Brooklyn,Crown Heights,40.67025,-73.93558,Entire home/apt,99,3,4,2019-05-12,0.22,1,0 +21859359,Large Private Bedroom in Brooklyn (Bed-Stuy),23039272,Chahine,Brooklyn,Bedford-Stuyvesant,40.68214,-73.95477,Private room,51,1,1,2018-01-04,0.05,1,0 +21859466,Luxurious sunny loft in the heart of Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71769,-73.96339,Entire home/apt,300,3,20,2019-06-09,1.04,4,318 +21859658,"Modern Chic, Pvt Gardn, 2 Stops to NYC, Brooklyn",3094754,Numi,Brooklyn,Sunset Park,40.65602,-74.00509,Entire home/apt,259,2,25,2019-06-17,1.30,2,355 +21860011,Bright charming 2 bedroom in the heart of the LES,9572607,Nicole,Manhattan,Lower East Side,40.7235,-73.99096,Entire home/apt,250,2,5,2019-01-03,0.25,3,4 +21860693,"Private room in bright, charming LES apartment",9572607,Nicole,Manhattan,Lower East Side,40.72291,-73.98915,Private room,71,1,5,2018-12-16,0.31,3,17 +21861551,Brand-new Luxury apt. Stunning views by Penn st.,2431679,Danish,Manhattan,Chelsea,40.75117,-73.99305,Private room,155,2,7,2018-04-08,0.36,1,0 +21861819,West Village Penthouse Studio,68550512,Steven,Manhattan,West Village,40.73738,-74.00012,Entire home/apt,135,4,39,2019-06-29,2.03,1,21 +21862155,Kingsize bedroom in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81919,-73.94554,Private room,89,1,105,2019-07-01,5.33,4,84 +21862803,Beautiful apt in great location,18405989,Guido,Brooklyn,Windsor Terrace,40.65281,-73.97298,Entire home/apt,150,7,0,,,1,0 +21863385,tranquil house,88852894,Nando,Brooklyn,Sheepshead Bay,40.59664,-73.95301,Private room,250,2,0,,,1,178 +21863411,Cozy Lower East Side 1-Bedroom,4950822,Matthew,Manhattan,Lower East Side,40.71952,-73.98495,Entire home/apt,150,2,0,,,1,0 +21863836,Bogro.,24092147,Jon,Brooklyn,Bushwick,40.69186,-73.9221,Private room,75,2,1,2018-04-01,0.06,1,88 +21864653,Cozy Room for Rent in South Slope,33435096,Francesca,Brooklyn,Sunset Park,40.6588,-73.99097,Private room,50,2,44,2019-06-28,2.29,1,298 +21864747,Affordable & Sunny Bungalow in Prime Williamsburg,57291936,Rebecca,Brooklyn,Williamsburg,40.71568,-73.94415,Private room,70,2,16,2019-05-19,0.85,1,3 +21865416,Midtown Manhattan Executive Suite,67349249,ResortShare,Manhattan,Midtown,40.76427,-73.98208,Entire home/apt,450,2,0,,,4,229 +21865637,Maple Place,159494837,Hongye,Queens,Far Rockaway,40.59722,-73.75937,Private room,68,1,66,2019-07-02,3.54,1,51 +21865904,Spacious room with private entrance.,133564044,Kaya,Brooklyn,Flatbush,40.6429,-73.95253,Private room,80,1,1,2018-01-01,0.05,1,0 +21866923,1 bedroom at 190 east 7th street. Doorman,95175637,Curtis,Manhattan,East Village,40.72563,-73.98169,Private room,200,1,2,2018-10-28,0.10,1,0 +21867029,Executive Suite near Central Park!,67349249,ResortShare,Manhattan,Midtown,40.76574,-73.98018,Entire home/apt,450,2,0,,,4,229 +21867216,Metro Suite in Manhattan by Central Park/Time Sq,67349249,ResortShare,Manhattan,Midtown,40.76387,-73.98056,Entire home/apt,398,2,0,,,4,243 +21867375,Metro Suite in Manhattan by Central Park/Time (2),67349249,ResortShare,Manhattan,Midtown,40.76443,-73.98152,Entire home/apt,398,2,0,,,4,243 +21867440,"Charming, Cozy Apartment in the Heart of Bushwick!",29599980,Leslie,Brooklyn,Bushwick,40.70636,-73.91935,Entire home/apt,41,3,1,2018-01-01,0.05,1,0 +21867598,Manhattan Luxury & Cozy Studio,130183779,Arianne,Manhattan,Financial District,40.70407,-74.00885,Entire home/apt,200,1,13,2019-07-07,0.67,1,1 +21867710,Amazing room in the centre on Manhatten! Welcome!,159156636,,Manhattan,Hell's Kitchen,40.75668,-73.99097,Private room,120,1,89,2019-01-01,5.16,3,0 +21867749,Quiet 1-2br Apartment in the heart of Little Italy,41874064,Sheba,Manhattan,Little Italy,40.71801,-73.9984,Entire home/apt,160,1,22,2019-06-19,1.12,2,23 +21867771,Cozy private room in Artists' House in Bushwick.,43756609,Karina,Brooklyn,Bushwick,40.68682,-73.91189,Private room,55,1,2,2017-12-30,0.10,2,0 +21868116,3333Broadway近哥大电梯公寓大楼,48056617,Huan,Manhattan,Harlem,40.82058,-73.95802,Private room,37,15,0,,,1,0 +21868424,Prospect Heights Room,6938506,Karina,Brooklyn,Prospect Heights,40.67871,-73.9678,Private room,60,1,14,2019-06-10,0.71,1,0 +21868427,Sleep on a Casper in the heart of Greenpoint,24559343,Taeho,Brooklyn,Greenpoint,40.72133,-73.94903,Entire home/apt,135,2,7,2019-05-26,0.36,1,2 +21868813,1 Bedroom modern apartment in the heart of Astoria,120638903,Ioanna,Queens,Astoria,40.76543,-73.92248,Entire home/apt,95,6,2,2017-12-09,0.10,1,0 +21868918,Beautifully Lit True Brooklyn Loft,159526448,Natasha,Brooklyn,Williamsburg,40.72192,-73.95597,Entire home/apt,350,2,16,2019-05-12,0.82,1,0 +21868933,Gorgeous Home with Private Terrace: Union Square!,9282079,Justine,Manhattan,Gramercy,40.73581,-73.98918,Entire home/apt,245,4,12,2019-05-25,0.62,1,0 +21869051,Comfy Apt in NYC Brownstone,97243693,Joyce,Manhattan,Murray Hill,40.74812,-73.97663,Entire home/apt,150,3,57,2019-07-01,3.07,2,49 +21869057,Spacious 2-bedroom Apt in Heart of Greenpoint,11967922,Vishanti & Jeremy,Brooklyn,Greenpoint,40.72421,-73.95364,Entire home/apt,10,1,93,2019-07-01,4.73,1,32 +21869167,Manhattan - Private Room - 1 mn Subway/Metro,57002433,Lucile,Manhattan,East Harlem,40.8001,-73.94081,Private room,69,1,77,2019-06-22,4.00,2,0 +21869409,A Suite Stay,157842225,Tara,Manhattan,East Harlem,40.79999,-73.94233,Entire home/apt,250,3,62,2019-06-29,3.23,1,82 +21869546,"Cozy jewel in Hamilton Heights! +Bedroom with bath",87814281,Sharon,Manhattan,Harlem,40.82978,-73.94823,Private room,88,1,3,2018-01-03,0.15,2,0 +21870396,"Central Park, Columbus Circle, Time Warner O MY!",159540426,Kenneth,Manhattan,Hell's Kitchen,40.7676,-73.9855,Private room,200,1,1,2018-01-01,0.05,1,0 +21871576,Prime location: abundant stores & transportation!,131993395,Shirley,Brooklyn,Flatlands,40.62857,-73.94071,Entire home/apt,160,2,53,2019-06-22,2.83,1,230 +21875621,超级便利的豪华公寓次卧,125492013,祥茵,Queens,Elmhurst,40.7418,-73.8861,Private room,40,5,0,,,2,0 +21876299,Lower East Side Studio Escape #4,158969505,Karen,Manhattan,Lower East Side,40.72083,-73.99308,Entire home/apt,150,30,1,2018-08-31,0.10,9,226 +21877219,MINIMALISTIC APARTMENT/DECK IN HISTORIC BROWNSTONE,159587137,Wene,Brooklyn,Clinton Hill,40.69087,-73.96639,Entire home/apt,280,3,1,2019-05-03,0.44,2,343 +21877231,Cruelty-free in Bushwick w/ backyard.,22095324,Chad Michael,Brooklyn,Bushwick,40.69566,-73.91611,Entire home/apt,65,5,42,2019-06-23,2.16,1,1 +21877426,Huge Bright Designer Loft in Red Hook Brooklyn,4010826,Ken,Brooklyn,Red Hook,40.67787,-74.00764,Entire home/apt,150,10,2,2019-01-01,0.10,1,0 +21877805,New & LEGAL 3BRs/2Bath/Parking near Subway & JFK,159592932,Alexandra,Brooklyn,East New York,40.66769,-73.88421,Entire home/apt,159,4,50,2019-06-20,2.57,1,89 +21878080,Beautiful midtown apartment,120762452,Stanley,Manhattan,Murray Hill,40.74998,-73.97543,Entire home/apt,150,30,3,2018-11-30,0.21,50,365 +21878449,Sun filled apartment in the heart of Brooklyn,2946041,Alex,Brooklyn,Bedford-Stuyvesant,40.6889,-73.95362,Entire home/apt,195,3,0,,,1,0 +21879516,2 Bedroom in the perfect location,5945683,Annie,Manhattan,Upper East Side,40.76384,-73.96355,Entire home/apt,200,4,3,2018-10-25,0.19,1,3 +21879760,Huge Dumbo Loft,1377201,Jon,Brooklyn,Vinegar Hill,40.70152,-73.98407,Entire home/apt,100,30,2,2018-06-30,0.12,1,31 +21880038,WeLive Wall Street -- 4 Bedroom,159610596,WeWork,Manhattan,Financial District,40.70458,-74.00755,Entire home/apt,425,1,127,2019-07-06,6.68,6,253 +21880580,Spacious Garden Apt in Clinton Hill/Ft Greene,29478455,Mary,Brooklyn,Clinton Hill,40.69049,-73.96842,Entire home/apt,115,3,4,2019-01-17,0.21,1,2 +21881602,One decent room in Upper West Side Manhattan!,83422323,Amon,Manhattan,Upper West Side,40.79454,-73.97541,Private room,50,1,14,2018-03-31,0.71,1,0 +21881605,"Best location 3 bedroom, Times Square/Penn Station",159623005,Catherine,Manhattan,Hell's Kitchen,40.75597,-73.99494,Entire home/apt,412,30,0,,,1,0 +21881709,Big room in Grand Central,7344277,Angelica,Manhattan,Midtown,40.75249,-73.97384,Private room,93,3,1,2017-11-21,0.05,1,0 +21881810,CASA EVOL,3212890,Lisa,Manhattan,Midtown,40.76733,-73.98074,Entire home/apt,160,3,52,2019-06-26,2.66,1,27 +21881963,Комната для пары,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58788,-73.94955,Private room,50,180,0,,,3,155 +21882745,"Large, sunny & modern Union Square 1-bedroom",22225590,Tina,Manhattan,East Village,40.73245,-73.98848,Entire home/apt,210,4,4,2019-04-26,0.39,1,0 +21883309,NEW 2-Bedroom MODERN & CENTRALLY LOCATED APARTMENT,158444643,Alejandro,Manhattan,Hell's Kitchen,40.75453,-73.99526,Entire home/apt,250,3,57,2019-05-11,2.97,1,0 +21883986,Cozy Room with queen size bed for 2,158710682,Cedar,Manhattan,Midtown,40.75298,-73.96912,Private room,90,1,0,,,3,221 +21883990,WeLive Wall Street -- 2 Bedroom,159610596,WeWork,Manhattan,Financial District,40.7059,-74.00604,Private room,225,1,42,2019-07-05,2.18,6,290 +21884025,Private 1 bedroom 15 minutes from Manhattan,61175161,Claudia,Queens,Astoria,40.76885,-73.90752,Private room,40,3,1,2017-12-13,0.05,1,0 +21884206,WeLive Wall Street -- Studio Apartment,159610596,WeWork,Manhattan,Financial District,40.70426,-74.00711,Entire home/apt,215,1,152,2019-07-03,7.90,6,339 +21884557,Brooklyn Home in the Heart of it All,23005139,Samantha,Brooklyn,Crown Heights,40.67512,-73.96185,Private room,55,3,0,,,1,0 +21884602,Large Room for 2 people queen size bed,158710682,Cedar,Manhattan,Midtown,40.75346,-73.96872,Private room,90,1,2,2017-12-03,0.10,3,217 +21884758,The Gray Room,10979123,Anjelica,Manhattan,Hell's Kitchen,40.7548,-73.9965,Entire home/apt,170,3,26,2019-06-21,1.40,1,1 +21885522,Family Friendly Vibrant duplex in Windsor Terrace,17525654,Susan & Aarti,Brooklyn,Windsor Terrace,40.65537,-73.9819,Entire home/apt,160,5,0,,,1,0 +21885544,"Quirky, bright 1bed apartment in historic Brooklyn",2749343,Kaity,Brooklyn,Bedford-Stuyvesant,40.68541,-73.94692,Entire home/apt,80,5,1,2018-01-04,0.05,1,0 +21885667,Private Bedroom in Spacious Queens Home,11911154,Flor De Liz,Queens,Ditmars Steinway,40.77129,-73.91712,Private room,35,14,0,,,1,0 +21885677,Cozy apt near Bloomingdales and Central Park.,70055156,Yngridd,Manhattan,Midtown,40.75893,-73.9636,Entire home/apt,200,1,77,2019-06-19,4.03,1,268 +21885860,HUGE Bedroom in Brooklyn Off Lorimer J/M/Z & L,3105557,Joshua,Brooklyn,Williamsburg,40.70383,-73.94431,Private room,43,2,6,2018-01-02,0.31,1,0 +21885914,Gorgeous 1 BR in heart of Prospect Heights!,7683267,Nicholas,Brooklyn,Prospect Heights,40.67933,-73.96912,Entire home/apt,100,1,61,2019-06-29,3.23,1,0 +21889698,Humongous Crown Heights Prvt Room in spacious 2brm,15049077,Karanja,Brooklyn,Crown Heights,40.66373,-73.93222,Private room,55,30,1,2018-09-27,0.10,2,137 +21890848,Beautiful Healthy Home in Ditmas Park,21003445,Vanessa,Brooklyn,Flatbush,40.63531,-73.96546,Private room,55,2,3,2018-04-30,0.16,1,65 +21891406,Bright studio size room in the East Village,42954481,Cindy,Manhattan,East Village,40.72801,-73.98736,Private room,95,1,3,2018-10-29,0.16,1,0 +21891982,LUXURY IN MURRAY HILL-25TH FLR/W/DRYER-FANTASTIC!,2856748,Ruchi,Manhattan,Murray Hill,40.74864,-73.97383,Entire home/apt,350,30,0,,,49,330 +21892073,"Large, sunny room in heart of South Williamsburg",916377,Ana,Brooklyn,Williamsburg,40.70807,-73.95099,Private room,42,7,1,2017-12-22,0.05,1,0 +21892596,Iconic NYC Brownstone Apartment on Upper East Side,157642917,Lauren,Manhattan,Upper East Side,40.77089,-73.95946,Entire home/apt,125,5,13,2019-03-15,0.68,1,0 +21892706,Great Apartment In Prospect Lefferts Garden,159735335,Andre,Brooklyn,Prospect-Lefferts Gardens,40.66046,-73.96014,Private room,80,1,29,2018-10-14,1.51,1,0 +21892834,Executive Museum 1 BR Elevator Best Location,61391963,Corporate Housing,Manhattan,Upper West Side,40.78383,-73.97529,Entire home/apt,133,30,8,2019-06-30,0.43,91,301 +21893129,Adorable midtown studio,120762452,Stanley,Manhattan,Murray Hill,40.75033,-73.97546,Entire home/apt,150,30,2,2018-09-30,0.14,50,365 +21893604,Private Bedroom in West Village/Chelsea,1144452,Dante,Manhattan,Chelsea,40.74045,-74.00047,Private room,12,3,8,2019-06-07,0.59,1,37 +21893658,Sunny cabin in the heart of North Brooklyn,39253607,Laura,Brooklyn,Williamsburg,40.71296,-73.93838,Entire home/apt,120,2,1,2018-01-01,0.05,1,0 +21894437,Cute and Convenient WB Apt,158997467,Thomas,Brooklyn,Williamsburg,40.70902,-73.95724,Private room,50,2,28,2018-07-02,1.46,2,0 +21894785,Duplex Garden Getaway in Park Slope Brooklyn,37616350,Christopher,Brooklyn,Park Slope,40.68057,-73.97617,Entire home/apt,250,2,15,2018-05-29,0.80,1,0 +21895071,Gorgeous big private room/Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.6768,-73.95346,Private room,70,5,12,2019-05-27,0.67,3,0 +21895262,Lovely Room in Prospect Heights.,325453,Malin,Brooklyn,Crown Heights,40.66715,-73.96084,Private room,80,5,0,,,1,0 +21896267,Cozy and affordable room,159757725,Rawad,Manhattan,East Harlem,40.80296,-73.9369,Private room,40,7,1,2018-01-05,0.05,1,0 +21896537,Private Williamsburg apartment,50072658,Besnik,Brooklyn,Williamsburg,40.71211,-73.94058,Entire home/apt,79,1,168,2019-07-05,8.57,1,153 +21896552,Private Garden | Upper West Side Manhattan 1BR,2092300,Amelia,Manhattan,Morningside Heights,40.80513,-73.9632,Entire home/apt,120,3,3,2018-01-08,0.16,1,0 +21897759,1BR in beautiful Park Slope,54907254,Nickelous,Brooklyn,Park Slope,40.67607,-73.97167,Entire home/apt,139,7,1,2018-01-03,0.05,1,0 +21897775,~House of Rest~Private Entrance in Bushwick BK,427019,Oh,Brooklyn,Williamsburg,40.70591,-73.92916,Private room,66,2,48,2019-06-18,2.60,2,5 +21897845,One room.,159769278,Musieka,Bronx,Pelham Gardens,40.86706,-73.84674,Private room,40,2,17,2019-06-04,1.23,1,17 +21898551,2-bedroom South Williamsburg apartment,131206517,Mark,Brooklyn,Williamsburg,40.69999,-73.95275,Entire home/apt,100,4,4,2019-06-24,0.21,1,0 +21898567,Spacious room in a cozy apartment .....,62635426,Lizzie,Brooklyn,Greenpoint,40.72566,-73.94823,Private room,50,3,2,2018-09-30,0.21,1,0 +21898686,2BR in the Heart of Downtown Brooklyn - Near ALL,46705025,Angelo,Brooklyn,Boerum Hill,40.68837,-73.98717,Entire home/apt,185,3,18,2018-06-06,0.91,1,0 +21898732,Big room in East Village!,8177511,Fredrik,Manhattan,East Village,40.72648,-73.97904,Private room,55,7,0,,,1,0 +21899241,Spacious and bright private bedroom in LES,41865841,Tom,Manhattan,Lower East Side,40.71325,-73.99009,Private room,160,2,2,2018-01-02,0.10,1,0 +21899473,Minimalist Union Square Studio Apartment,60632753,Jared,Manhattan,Greenwich Village,40.73616,-73.99614,Private room,80,5,4,2018-08-19,0.22,1,0 +21899575,Beautiful 1 bd apartment in the heart of Brooklyn.,155812868,Milana,Brooklyn,Brighton Beach,40.57962,-73.96535,Entire home/apt,119,1,19,2019-07-04,1.02,2,135 +21899794,Old-school Manhattan Brick Walled Apartment,72395034,Cole,Manhattan,Kips Bay,40.74416,-73.97702,Entire home/apt,125,3,0,,,1,0 +21899939,Alluring Two- Bedroom in Highland Park,4089207,Mondell,Brooklyn,Cypress Hills,40.67842,-73.88768,Entire home/apt,155,3,64,2019-06-29,3.41,2,287 +21900721,Cozy room in a shared apt,159794474,Alex,Manhattan,Upper East Side,40.777,-73.95771,Private room,76,1,0,,,1,0 +21901025,house on the hill with free parking in NYC!,1483578,Spiritchild,Staten Island,St. George,40.64537,-74.08381,Private room,100,2,77,2019-07-08,3.90,1,336 +21901156,Best Deal! Lovely place in Manhattan! Time Square!,159156636,,Manhattan,Hell's Kitchen,40.75656,-73.99063,Private room,120,1,109,2019-01-01,5.97,3,0 +21902630,Beautiful bedroom + private bathroom in Bed-Stuy,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69532,-73.93995,Private room,38,30,4,2019-03-08,0.21,10,365 +21906858,Spacious and homey 1 br w garden near subway,1033792,Dani,Brooklyn,Park Slope,40.67835,-73.98209,Entire home/apt,80,5,2,2018-11-26,0.11,1,0 +21907036,Private room in cozy Bushwick House,33195820,Ignacio,Brooklyn,Bushwick,40.70027,-73.91268,Private room,36,21,0,,,1,0 +21907240,Queen Bed Studio In Gowanus Boutique,159091490,Melissa,Brooklyn,Gowanus,40.67848,-73.98386,Private room,119,1,14,2019-06-30,0.71,17,363 +21907615,Design Furnished Queen Studio Room in Gowanus,159091490,Melissa,Brooklyn,Gowanus,40.67868,-73.98254,Private room,119,1,20,2019-06-23,1.02,17,354 +21907916,Áines place.,4076045,Aine,Queens,Astoria,40.76347,-73.90928,Private room,50,2,0,,,1,0 +21907941,Boutique Hotel Queen Room in Gowanus,159091490,Melissa,Brooklyn,Gowanus,40.67753,-73.9841,Private room,119,1,11,2019-06-23,0.57,17,364 +21908120,Brooklyn Factory Loft Building Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.67873,-73.98236,Private room,119,1,19,2019-07-08,0.97,17,355 +21908184,Furnished spacious NYC studio,120762452,Stanley,Manhattan,Murray Hill,40.75006,-73.97694,Entire home/apt,195,30,1,2018-08-05,0.09,50,365 +21908265,Gowanus Boutique Inn & Yard Queen Room,159091490,Melissa,Brooklyn,Gowanus,40.67733,-73.98407,Private room,119,1,26,2019-06-30,1.32,17,363 +21909291,"Modern, Spacious One Bedroom - Columbus Circle",18462292,Gary,Manhattan,Midtown,40.76699,-73.98174,Entire home/apt,200,7,2,2018-01-01,0.10,1,0 +21909717,Nice view apartment,65493699,Dan Hua,Queens,Jackson Heights,40.75731,-73.85785,Entire home/apt,143,2,3,2018-01-02,0.15,1,0 +21913309,One nice room on the Roosevelt Island; 罗岛一间卧室出租,159884558,Lily,Manhattan,Roosevelt Island,40.76191,-73.94934,Private room,45,25,37,2018-07-01,1.89,1,149 +21913782,"2 bedroom apt (5ppl), 1 minute from Times Square!",133972085,"Yumi, Chizu",Manhattan,Midtown,40.75732,-73.98142,Entire home/apt,350,3,14,2019-06-01,0.74,3,89 +21913811,"Cooled Queens Apartment, NY. LGA Airport 5 min.",147095935,Adeel,Queens,Woodside,40.74496,-73.89534,Entire home/apt,99,1,118,2019-06-23,6.00,1,320 +21913859,Private room in East Village(Female guest only),34281260,Reese,Manhattan,Stuyvesant Town,40.72734,-73.97203,Private room,65,2,6,2017-12-29,0.31,1,0 +21914314,PRIVATE 2 BR APT HEART OF MID-TOWN TIMES SQUARE!!,3440811,Marc,Manhattan,Hell's Kitchen,40.76062,-73.99297,Entire home/apt,85,3,28,2019-03-17,1.45,1,66 +21914499,Exceptional Comfort and Location!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94295,Entire home/apt,160,3,32,2019-06-29,1.64,7,3 +21915201,Soho 2 Bedroom Private Terrace,159903889,Patricia,Manhattan,SoHo,40.72067,-74.00024,Entire home/apt,400,4,42,2019-06-22,2.13,1,306 +21919913,27 FLR VIEWS!LINCOLN SQR-LUXURY 2BR MIDTOWN W 60TH,76104209,Rated,Manhattan,Upper West Side,40.77055,-73.98615,Entire home/apt,333,30,0,,,33,330 +21920061,Cozy room in Manhattan,45731391,Laurence,Manhattan,Lower East Side,40.72147,-73.99054,Private room,85,1,4,2019-06-20,0.21,3,0 +21921178,Bright & Colorful Studio 1 Block From Central Park,48419413,Tina,Manhattan,East Harlem,40.79943,-73.94386,Entire home/apt,89,2,52,2019-01-02,2.75,1,3 +21921608,32 FLR VIEWS!LINCOLN SQR-LUXURY 2BR MIDTOWN W 60TH,76104209,Rated,Manhattan,Upper West Side,40.76996,-73.98551,Entire home/apt,375,30,0,,,33,300 +21921707,Sunny Minimal Bushwick: longterms encouraged!,100424005,Dewey,Brooklyn,Bushwick,40.69386,-73.91897,Private room,39,5,9,2018-09-24,0.46,1,0 +21922035,"Spacious, bright and beautiful 2 Br apartment.",2598844,Fabiana,Brooklyn,Bedford-Stuyvesant,40.69067,-73.93917,Entire home/apt,50,1,49,2019-07-05,2.65,1,47 +21922071,Spacious Private Room in Ditmas Park,47326818,Emilyn,Brooklyn,Flatbush,40.65177,-73.96417,Private room,37,2,3,2018-01-25,0.16,1,0 +21922407,Beautiful 1 bedroom in Upper west side,4389871,Agostina,Manhattan,Morningside Heights,40.80853,-73.96352,Entire home/apt,90,4,0,,,1,0 +21922639,"Luxury Studio Apt in Williamsburg, 24 hr Doorman",9238069,Jamiel,Brooklyn,Greenpoint,40.71911,-73.95045,Entire home/apt,150,2,15,2019-06-02,0.76,1,1 +21923390,"Charming 1 bedroom apartment, Williamsburg BK",898412,Maria,Brooklyn,Williamsburg,40.70889,-73.94357,Entire home/apt,85,60,6,2019-04-29,0.32,1,125 +21923649,Private basement studio in Greenpoint,8494658,Rebecca,Brooklyn,Greenpoint,40.7264,-73.95613,Entire home/apt,99,2,12,2019-05-31,0.71,1,64 +21923722,Greenpoint getaway,6408088,Trent,Brooklyn,Greenpoint,40.72508,-73.94698,Entire home/apt,100,1,2,2018-01-04,0.11,1,0 +21923996,Bright & Large Brownstone Beauty mins away frm NYC,39166877,Nancy,Brooklyn,Windsor Terrace,40.65028,-73.97771,Entire home/apt,165,3,37,2019-07-06,1.90,1,82 +21924203,Private room in Brownstone house,22378099,Ricardo,Brooklyn,Fort Greene,40.6857,-73.96964,Private room,52,5,0,,,1,0 +21924586,Entire 2 bedroom top floor in Clinton Hill,2930303,Rocio,Brooklyn,Bedford-Stuyvesant,40.68537,-73.95894,Entire home/apt,100,28,2,2018-02-05,0.11,1,177 +21924630,Spacious 2 bedroom in heart of Williamsburg!,6411632,Jordan,Brooklyn,Williamsburg,40.71344,-73.95702,Entire home/apt,130,3,2,2018-04-02,0.12,1,0 +21924815,Like live in your own home while traveling,113356258,Judy,Manhattan,Upper East Side,40.77752,-73.94726,Private room,100,1,0,,,1,0 +21925948,Greenpoint Apt,83004119,Pawel,Brooklyn,Greenpoint,40.73307,-73.95275,Entire home/apt,120,1,0,,,1,0 +21925970,Manhattan cocoon @ spacious NEW renovated apt,17250625,Lucas,Manhattan,East Harlem,40.79757,-73.93851,Private room,50,13,51,2019-06-14,2.63,1,26 +21926117,Spacious 1-bedroom flat in LES,42135378,Stavros,Manhattan,Chinatown,40.71601,-73.99171,Entire home/apt,130,4,2,2018-04-09,0.10,1,0 +21926198,Experience NYC living on the Upper East Side,10020112,Naomi,Manhattan,Upper East Side,40.77625,-73.95495,Entire home/apt,250,3,2,2018-01-02,0.10,1,0 +21926279,The Tree House,6999831,Erik,Brooklyn,Flatbush,40.64813,-73.9589,Entire home/apt,90,2,8,2018-07-24,0.42,1,0 +21926432,"Sunny, Convenient, and Clean Apartment to Yourself",102243363,WeiWei,Brooklyn,Prospect-Lefferts Gardens,40.65543,-73.95674,Entire home/apt,110,1,4,2017-12-31,0.21,1,0 +21926844,Private Room on Roosevelt Island,35674813,Xizi,Manhattan,Roosevelt Island,40.7611,-73.95015,Private room,40,7,1,2018-01-21,0.06,1,0 +21926893,Studio with brand new furniture and appliances!,159998120,Joe,Queens,Astoria,40.76522,-73.92438,Entire home/apt,92,1,0,,,1,0 +21927300,LGA Newly Renovated One Bedroom Apt.1,156952896,Haijiao,Queens,East Elmhurst,40.76537,-73.87639,Entire home/apt,100,1,198,2019-07-05,10.15,2,156 +21929935,Full Studio Apartment (MODULO 715),4514578,Hector,Queens,Elmhurst,40.74586,-73.88409,Entire home/apt,45,4,0,,,1,0 +21930306,10 mins/Airports JFK/LGA/Hosp/malls bus/train#2,126247863,Seeranie,Queens,Richmond Hill,40.68932,-73.82047,Private room,35,1,56,2019-07-04,3.00,2,359 +21931508,BRIGHT & AIRY,19739033,Fifi,Manhattan,Harlem,40.81426,-73.95152,Private room,85,2,75,2019-06-13,3.93,2,121 +21931557,Bed-Stuy modern one bedroom plus private bathroom,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69687,-73.94111,Private room,50,30,4,2019-03-10,0.20,10,365 +21931779,Beautiful Art Deco Master Bedroom in Astoria NY,147252767,Melanie,Queens,Astoria,40.76354,-73.91341,Private room,50,1,6,2018-04-07,0.31,1,0 +21931979,Shineroom,159974287,Rasul,Queens,Flushing,40.76245,-73.8238,Private room,38,5,34,2019-06-08,1.82,1,353 +21932693,Big loft in Williamsburg,43600815,Rafael,Brooklyn,Williamsburg,40.70572,-73.93823,Private room,65,8,1,2018-01-01,0.05,2,0 +21932977,Beautiful Huge Room in Manhattan,45697173,Cristóbal,Manhattan,East Harlem,40.78744,-73.94319,Entire home/apt,50,10,0,,,1,0 +21933065,PRIVATE ROOM W/BATH IN BK - MUST SEE,160057164,Patrick,Brooklyn,Crown Heights,40.67685,-73.93141,Private room,75,1,0,,,1,0 +21933372,Lovely Astoria apartment will make you feel home!,120284390,Derya,Queens,Astoria,40.7723,-73.9281,Private room,100,3,0,,,1,0 +21933635,Sunny and Spacious 3 Bedroom near Central Park,160066386,Christopher,Manhattan,Harlem,40.79998,-73.95633,Entire home/apt,250,3,18,2019-03-20,0.97,1,20 +21933725,Manhattan Club! New Years Eve!,158445076,Jonathan,Manhattan,Midtown,40.76432,-73.98075,Entire home/apt,650,3,0,,,1,0 +21933777,Industrial Queen Studio Room In Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67773,-73.98312,Private room,129,1,13,2019-07-06,0.67,17,361 +21933969,Gowanus-Park Slope- Queen Studio Room,159091490,Melissa,Brooklyn,Gowanus,40.6784,-73.98447,Private room,129,1,32,2019-07-07,1.62,17,363 +21934181,Spacious private room in artsy Bushwick Brooklyn,9175058,John,Brooklyn,Bushwick,40.68782,-73.9189,Private room,41,3,17,2019-06-14,0.93,1,0 +21934202,Sunny and Spacious Bedroom w/ Private Bathroom,16855791,Agus,Brooklyn,Williamsburg,40.7023,-73.9419,Private room,65,3,47,2019-06-25,2.47,1,238 +21934318,Park Slope-Gowanus Boutique Queen Studio,159091490,Melissa,Brooklyn,Gowanus,40.67704,-73.9846,Private room,129,1,9,2019-07-06,0.46,17,338 +21934465,Queen Studio In Park Slope - Gowanus Inn & Yard,159091490,Melissa,Brooklyn,Gowanus,40.67726,-73.9837,Private room,129,1,28,2019-06-30,1.44,17,362 +21934601,Convenient x Cozy Carroll Street Stay,41617175,Emily,Brooklyn,Gowanus,40.67787,-73.98635,Private room,70,2,1,2017-12-30,0.05,1,0 +21934873,Cute studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.75008,-73.97752,Entire home/apt,150,30,2,2019-05-08,0.30,50,364 +21935245,SoHo: Light-filled and tasteful,6650559,Bridget,Manhattan,SoHo,40.72735,-74.00131,Private room,89,1,3,2017-12-28,0.15,1,0 +21935339,"Cozy Bedroom, Walking Distance from Central Park",97862729,Natalie,Manhattan,Harlem,40.80759,-73.95464,Private room,100,2,1,2018-01-01,0.05,1,0 +21935551,Super clean / centrally located extra large studio,88713943,Lee,Manhattan,Hell's Kitchen,40.76042,-73.99032,Entire home/apt,175,4,12,2019-04-17,0.79,1,107 +21935569,Tiny (but comfy!) Private room Manhattan,43352661,Charles,Manhattan,Washington Heights,40.84344,-73.93922,Private room,20,1,21,2019-06-20,1.10,3,291 +21935727,"Designers' Brooklyn Loft – 2 bed, 2 bath",1341264,Noemie,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95929,Entire home/apt,300,6,1,2019-04-23,0.39,1,0 +21935921,Skylight Living in NYC,3484920,BonnieAnn,Manhattan,West Village,40.73811,-74.00348,Entire home/apt,275,2,4,2019-06-13,0.65,1,51 +21936014,Elegant Apartment with Spectacular views.,33261598,Marc,Manhattan,Midtown,40.7436,-73.98573,Shared room,185,1,2,2018-01-01,0.11,1,0 +21936033,LGA Newly Renovated Apt.2,156952896,Haijiao,Queens,East Elmhurst,40.76419,-73.87498,Entire home/apt,120,1,118,2019-07-07,6.05,2,79 +21936073,"Charming 1BR - King Bed, Full Kitchen, Laundry",6041929,Degelis,Manhattan,West Village,40.73253,-74.00859,Entire home/apt,220,4,11,2019-05-07,0.65,1,189 +21936080,Cozy Room Near Express Train to Manhattan,14043678,Justin,Brooklyn,Bedford-Stuyvesant,40.69507,-73.93354,Private room,50,3,6,2018-10-08,0.32,1,363 +21936288,Infinite Bliss,118807152,Melissa,Queens,Elmhurst,40.74361,-73.87732,Private room,30,1,15,2019-06-30,0.77,1,249 +21936550,NYC master room with independent restroom for 2,42804325,诗月,Manhattan,Roosevelt Island,40.76858,-73.94436,Private room,70,7,1,2018-06-12,0.08,1,0 +21937197,"Warm & Cozy Haven, 6 min. to N/W, 20 to Manhattan!",4811900,Bridget,Queens,Ditmars Steinway,40.77051,-73.90944,Private room,600,2,5,2018-04-29,0.27,2,0 +21937306,Spacious Room in 3 bedroom Greenpoint Apartment,1349340,Noah,Brooklyn,Greenpoint,40.72728,-73.95313,Private room,75,7,0,,,2,0 +21937451,AMAZING STUDIO IN CHELSEA (up to 4) Special price!,21621745,Paulina,Manhattan,Chelsea,40.74927,-74.00122,Entire home/apt,200,1,7,2019-03-04,0.37,1,0 +21938049,Big Bedroom w/ Bathroom - Bushwick Luxury Building,157701235,Michael,Brooklyn,Bushwick,40.70039,-73.93009,Private room,60,7,74,2019-06-15,3.98,3,31 +21938508,Ideal Stay in NYC! ☆☆☆☆☆,70562577,Ryan,Queens,Astoria,40.77118,-73.92548,Entire home/apt,125,3,10,2019-04-26,0.54,1,64 +21939323,Older Victorian front 1st floor D train corner,12834599,Ms. Edith,Brooklyn,Borough Park,40.63294,-73.99475,Private room,50,3,2,2019-01-01,0.14,4,90 +21939817,COZY & CLEAN ROOM IN ASTORIA 15 MIN TO MANHATTAN.,153066091,Hasan,Queens,Ditmars Steinway,40.77323,-73.91796,Private room,75,2,1,2017-12-06,0.05,1,89 +21942269,Natural Light Filled Apartment with lots of space,49716547,Josh,Manhattan,East Village,40.73127,-73.98729,Entire home/apt,150,7,4,2019-05-11,0.22,1,18 +21942371,Private Bedroom in the LES,2546411,Gerard,Manhattan,Lower East Side,40.71991,-73.98832,Private room,78,10,0,,,1,0 +21942606,Historic Upper East Side Apartment,160109287,Elaine,Manhattan,Upper East Side,40.77154,-73.94968,Entire home/apt,200,4,1,2017-12-30,0.05,1,0 +21942984,3 Bedroom Prime Park Slope 6th Ave/Barclays Center,157788926,Josh,Brooklyn,Park Slope,40.67913,-73.97477,Entire home/apt,199,2,45,2019-06-09,2.34,1,302 +21943047,Huge private room in Williamsburg,29238030,Celine,Brooklyn,Williamsburg,40.71284,-73.94805,Private room,70,2,3,2018-05-02,0.20,1,0 +21943938,Brooklyn Studio Tower!,18061262,Gilana,Brooklyn,Clinton Hill,40.68173,-73.96703,Entire home/apt,115,15,7,2018-10-01,0.38,1,5 +21945438,"Bright, Spacious 3 BR Duplex-Great for Families",262862,Helena,Brooklyn,Williamsburg,40.71822,-73.93996,Entire home/apt,250,3,1,2017-12-29,0.05,1,0 +21945454,Pretty two-bed pre-war apartment in Brooklyn,11322502,Kimberly,Brooklyn,Bedford-Stuyvesant,40.68885,-73.95296,Entire home/apt,142,2,5,2018-04-29,0.25,1,0 +21945556,Cozy Room in Bushwick.,62307584,Mo,Brooklyn,Bushwick,40.68187,-73.90815,Private room,67,30,3,2018-08-13,0.16,1,179 +21945851,Spacious Room for Rent!,50522860,Nora,Manhattan,Inwood,40.86144,-73.92423,Private room,40,1,2,2018-01-01,0.10,1,0 +21945886,Wyndham Midtown 45 at New York City - Studio,160175378,Russ,Manhattan,Midtown,40.75184,-73.97198,Entire home/apt,350,3,1,2017-12-15,0.05,2,0 +21946495,Havemeyer mini Duplex in central Williamsburg,160194786,Patrick,Brooklyn,Williamsburg,40.71515,-73.95231,Entire home/apt,160,2,59,2019-06-17,3.28,1,81 +21946665,Great One Bedroom Apartment - 20 mins from NYC,55184486,Amado,Brooklyn,Bushwick,40.68885,-73.91353,Entire home/apt,149,1,74,2019-07-03,5.35,2,115 +21946776,Calming room in a thrilling city,43011952,Jennifer,Brooklyn,Crown Heights,40.6736,-73.95043,Private room,75,1,0,,,1,0 +21947011,Brand New 2 Bedroom 2 Bath Downtown Gem,35743804,Brad,Manhattan,Financial District,40.70758,-74.00409,Entire home/apt,850,1,16,2019-04-21,0.83,1,174 +21947012,"Private Rm; JFK(10mins), LGA(15mins), Manh(30mins)",158625100,Vic,Queens,Richmond Hill,40.68683,-73.82743,Private room,75,1,25,2019-05-29,1.30,2,48 +21947039,Wyndham Midtown 45 at NYC - 2 Bedroom Presidential,160175378,Russ,Manhattan,Midtown,40.75341,-73.97313,Entire home/apt,400,1,1,2017-12-06,0.05,2,0 +21947062,Big bedroom at the heart of Manhattan,33570672,Tomislav,Manhattan,Theater District,40.75493,-73.98618,Private room,95,2,100,2019-07-01,5.35,1,18 +21947114,Bushwick Loft On Trainline,40110507,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68691,-73.91798,Entire home/apt,85,4,5,2019-01-03,0.28,1,0 +21947260,Luxury Studio Apartment right by Central Park!!!,72936542,Taylor,Manhattan,Midtown,40.76119,-73.97005,Shared room,130,1,1,2017-11-28,0.05,1,0 +21947445,"Perfect, Private Garden Apartment (Prime Brooklyn)",34595916,Andrew,Brooklyn,South Slope,40.66794,-73.98638,Entire home/apt,149,5,55,2019-06-27,3.03,3,235 +21947959,Charming Clinton Hill Apartment,7709326,Tiff,Brooklyn,Clinton Hill,40.69513,-73.96245,Entire home/apt,90,3,0,,,1,0 +21948222,Serene 2 bed w/ private backyard - flatbush ditmas,2300590,Bess,Brooklyn,Flatbush,40.64495,-73.9576,Entire home/apt,95,3,2,2018-01-06,0.10,1,0 +21948560,Luxury Skyline Views! Best Panaromic Views Of NYC.,23001368,Sofia,Manhattan,Tribeca,40.71735,-74.00605,Entire home/apt,850,2,14,2019-06-19,0.76,1,36 +21948571,Private & Comfortable Room in a quiet neighborhood,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.6627,-73.95196,Private room,60,2,48,2019-06-25,2.55,3,276 +21948799,Bedroom in Beautiful House with Sunny Porch,16686426,Helen,Queens,Long Island City,40.75982,-73.93138,Private room,65,2,10,2019-05-18,0.52,1,0 +21949305,Artsy Little Bedstuy Nook,315606,Cynthia,Brooklyn,Bedford-Stuyvesant,40.68679,-73.9495,Private room,45,30,0,,,2,95 +21949815,Upper west studio next to Central Park,116430338,Dova,Manhattan,Upper West Side,40.79572,-73.96781,Entire home/apt,105,7,1,2018-01-02,0.05,1,0 +21950012,Large 3 Bedroom Apartment in Hell's Kitchen,53829616,Joaquin,Manhattan,Hell's Kitchen,40.75979,-73.98953,Entire home/apt,395,6,1,2018-01-01,0.05,1,0 +21950138,Beautiful 3 bedroom Brownstone in Boerum Hill,25321849,Anne,Brooklyn,Boerum Hill,40.6853,-73.98804,Entire home/apt,550,3,6,2019-05-27,0.42,2,14 +21950350,BROOKLYN Sunny queen size bedroom in amazing apartment.,11486122,Magdalena,Brooklyn,Bushwick,40.68949,-73.90575,Private room,50,3,2,2018-01-01,0.10,1,0 +21950927,Time Square- Great Luxury Apartment,105389630,Alex,Manhattan,Theater District,40.75817,-73.98886,Entire home/apt,190,4,0,,,1,0 +21950963,Large midtown 1 bed apartment with views,50414933,Charlie,Manhattan,Hell's Kitchen,40.76321,-73.98775,Entire home/apt,160,5,5,2019-04-22,0.27,1,1 +21951042,Comfy Renovated Basement Apartment Near JFK,18918881,Anna,Queens,Far Rockaway,40.60273,-73.75466,Entire home/apt,51,1,4,2017-12-20,0.21,1,0 +21951077,*LUSH SPACIOUS WEST VILLAGE LOFT*,1620498,Bec,Manhattan,Chelsea,40.73858,-73.99651,Entire home/apt,220,7,3,2018-08-19,0.16,1,0 +21951184,Upper East Side Private Entire Studio,59394680,Soojin,Manhattan,Upper East Side,40.77084,-73.94956,Entire home/apt,130,30,0,,,1,0 +21955216,"Bright, contemporary Kips Bay Studio apt",8801391,Alper Demis,Manhattan,Kips Bay,40.74381,-73.97944,Entire home/apt,300,3,0,,,1,180 +21956264,Beautiful bed bed room,110346058,Shirley,Queens,Jamaica,40.6741,-73.79775,Private room,45,4,12,2019-06-10,2.03,1,291 +21958076,Old World Charm in the Heart of Brooklyn R2,160300400,Tina,Brooklyn,Bay Ridge,40.62848,-74.03077,Private room,79,4,12,2019-06-30,0.62,2,175 +21958889,Upper West Side Brownstone Duplex by Central Park,160306249,Andy,Manhattan,Upper West Side,40.78165,-73.9749,Private room,55,2,14,2019-06-29,0.81,2,0 +21959523,Cozy and quiet private room,7045635,Nina,Brooklyn,Crown Heights,40.67177,-73.93947,Private room,45,5,1,2018-01-08,0.05,1,0 +21959695,Bronx hideaway,148100571,Jenny,Bronx,Soundview,40.82739,-73.88176,Entire home/apt,50,1,0,,,2,0 +21959796,Gorgeous Apt In Central Manhattan,90956690,Dean,Manhattan,Murray Hill,40.74661,-73.97698,Entire home/apt,200,4,2,2018-01-01,0.10,1,0 +21960412,Touchdown and Explore NYC! Sunlit 2 Bedroom,160318374,Giulia,Brooklyn,Bedford-Stuyvesant,40.67871,-73.92678,Entire home/apt,103,30,47,2019-05-10,3.20,2,105 +21960589,"Studio Queen Room In Gowanus Inn, Brooklyn",159091490,Melissa,Brooklyn,Gowanus,40.6771,-73.98449,Private room,139,1,6,2019-06-23,0.31,17,358 +21960659,Beautiful Huge Newly-Renovated Apt Great location.,21508828,Nguyen,Bronx,Kingsbridge,40.8739,-73.90364,Private room,69,1,31,2019-05-26,1.70,2,365 +21960720,"Cozy Lofted Room in Williamsburg, Brooklyn",2916281,Lacy,Brooklyn,Williamsburg,40.71353,-73.94337,Private room,60,7,2,2017-12-19,0.11,1,0 +21961462,Luxury 1B1B Apt with City View @ Columbia U,56067189,Yuanwen,Manhattan,Morningside Heights,40.80485,-73.96345,Entire home/apt,150,3,1,2017-12-14,0.05,1,0 +21962437,$850 up to 3 month female only,130149223,Laurene,Brooklyn,Crown Heights,40.67163,-73.93399,Private room,31,30,7,2019-06-23,0.36,1,302 +21962864,"Cozy private room w/private bath, Hell's Kitchen",25690203,Corin,Manhattan,Hell's Kitchen,40.76333,-73.98905,Private room,100,2,5,2018-04-06,0.26,1,0 +21963398,4BR 2 Bath Williamsburg Apt with Private Roof,11310081,Chandler,Brooklyn,Williamsburg,40.71204,-73.95245,Entire home/apt,650,2,1,2019-01-01,0.16,1,0 +21963418,Big Studio at Grand Central Station area.,3368678,Jose,Manhattan,Midtown,40.75232,-73.9689,Entire home/apt,210,3,21,2019-06-13,1.11,1,209 +21963428,Bright NYC Flat with Manhattan Views,8243469,Kathryn,Bronx,Port Morris,40.80024,-73.91422,Private room,49,3,59,2019-04-01,3.08,1,0 +21963575,ROOM IN THE HEART OF CROWN HEIGHTS,160343135,David,Brooklyn,Crown Heights,40.67307,-73.95236,Private room,30,3,2,2018-01-01,0.11,1,0 +21963723,Apartment in Sunnyside close to Manhattan.,58943675,Angelo,Queens,Sunnyside,40.74508,-73.92198,Entire home/apt,140,3,4,2018-11-05,0.21,1,0 +21964400,Spacious Private Room in the Heart of Williamsburg,14278133,Sharif,Brooklyn,Williamsburg,40.71733,-73.95028,Private room,71,2,30,2018-12-03,1.60,3,0 +21964596,Cozy fully furnished apartment in Bushwick,1020357,Peter,Brooklyn,Bushwick,40.69077,-73.9133,Entire home/apt,60,2,20,2019-03-10,1.13,1,6 +21964623,Bright artist loft 1BR (top floor) in Cobble Hill,160353062,Rebecca,Brooklyn,Boerum Hill,40.6882,-73.98999,Entire home/apt,90,30,2,2019-01-15,0.18,1,116 +21965110,Peaceful Bushwick Room with Great Views,77084335,Mahayla,Brooklyn,Bushwick,40.69871,-73.9361,Private room,80,3,2,2017-12-01,0.10,1,0 +21965119,Seaux Blu Urban Boho Studio,17271293,Myah,Brooklyn,Bedford-Stuyvesant,40.68104,-73.94031,Entire home/apt,60,2,38,2019-06-01,2.04,1,0 +21965717,Spacious South Slope Apt in Perfect Location!,8331436,Jesse,Brooklyn,South Slope,40.66724,-73.99023,Private room,109,2,4,2018-01-14,0.21,1,0 +21965948,Room in the heart of Bushwick,50577859,Zoe,Brooklyn,Bushwick,40.70424,-73.9199,Private room,75,2,3,2019-04-09,0.48,1,0 +21966051,Modern Studio Queen Room In Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67893,-73.98365,Private room,139,1,10,2019-06-19,0.51,17,364 +21966351,Stylish Queen Bed Room - Gowanus - Park Slope,159091490,Melissa,Brooklyn,Gowanus,40.6779,-73.98459,Private room,139,1,38,2019-07-07,2.85,17,337 +21966390,Designer Condo with Lofted Mezzanine,13284271,Troi,Brooklyn,Williamsburg,40.7134,-73.94833,Entire home/apt,350,2,14,2019-05-10,0.76,1,353 +21966418,Decorated cozy Brooklyn jewish apartment!,160233319,Josh,Brooklyn,Flatlands,40.6197,-73.94426,Entire home/apt,86,2,0,,,1,0 +21966432,Cozy Modern Studio,160369263,Luis,Brooklyn,Windsor Terrace,40.65325,-73.97868,Entire home/apt,100,2,61,2019-07-05,3.17,1,337 +21966498,An apartment in the heart of Williamsburg,9640114,Alexander,Brooklyn,Williamsburg,40.71171,-73.95491,Private room,120,2,2,2018-01-02,0.10,1,0 +21966592,True Brooklyn Experience Gowanus Inn Queen Bedroom,159091490,Melissa,Brooklyn,Gowanus,40.67727,-73.9838,Private room,139,1,46,2019-07-06,2.36,17,342 +21966757,Harlem World USA,135836462,Beny,Manhattan,Harlem,40.81532,-73.95359,Private room,150,3,0,,,1,89 +21966758,Casa Rosada in El Barrio,3179146,Adrián,Manhattan,East Harlem,40.79746,-73.93513,Entire home/apt,161,3,3,2018-03-18,0.16,1,0 +21966880,SunBathed WestVillage/Greenwich 1 bed apt,160374143,Jane,Manhattan,West Village,40.7349,-74.00618,Entire home/apt,245,2,42,2019-06-16,2.27,1,141 +21967259,Luxury Chelsea Condo on the High Line park,160376922,Alesia,Manhattan,Chelsea,40.74918,-74.00369,Entire home/apt,800,1,11,2018-08-22,0.56,1,0 +21967332,Lower East Side Luxury,55403309,Justin,Manhattan,Lower East Side,40.7209,-73.98909,Entire home/apt,350,5,0,,,2,0 +21967336,Affordable & Cozy Apartment near Prospect Park,1852207,Christie,Brooklyn,Prospect-Lefferts Gardens,40.65903,-73.96036,Entire home/apt,135,3,3,2019-01-03,0.16,1,0 +21967378,Large 2 Bedroom Apt in East Village,11713422,Saket,Manhattan,East Village,40.73025,-73.9861,Entire home/apt,349,5,0,,,2,0 +21967523,Comfy 1 bedroom in the heart of HARLEM,160379705,Jamesetta,Manhattan,Harlem,40.8041,-73.95261,Private room,35,2,7,2018-01-03,0.37,1,0 +21967562,Old World Charm in the Heart of Brooklyn R1,160300400,Tina,Brooklyn,Bay Ridge,40.63014,-74.03126,Private room,79,4,27,2019-06-27,1.44,2,176 +21967615,Ideal 3 Bedroom Apartment by Times Square,15146492,Kevin,Manhattan,Hell's Kitchen,40.76447,-73.99056,Entire home/apt,649,2,0,,,1,0 +21967654,Charming room downtown Manhattan,81379480,Anders,Manhattan,Lower East Side,40.72317,-73.99084,Private room,80,14,0,,,1,0 +21967751,Spacious 1 Bedroom with Backyard in Williamsburg,72760017,Frankie,Brooklyn,Williamsburg,40.70892,-73.96584,Entire home/apt,200,4,3,2019-05-22,0.16,1,0 +21967835,Greenpoint Hideaway,16840416,Jeffrey,Brooklyn,Greenpoint,40.72379,-73.9416,Entire home/apt,225,2,1,2018-02-15,0.06,1,0 +21968568,Cozy Room in Fairy Bushwick Apartment,123354518,Elena,Brooklyn,Bushwick,40.70075,-73.92422,Private room,50,4,0,,,2,0 +21969058,East Harlem Pied A Terre,16864813,Kim,Manhattan,East Harlem,40.80255,-73.94349,Entire home/apt,300,3,38,2019-06-21,2.42,1,272 +21970259,LARGE PRIVATE ROOM BY EVERYTHING MIDTOWN MANHATTAN,155125855,Vicente,Manhattan,Midtown,40.74739,-73.98344,Private room,130,1,40,2018-11-04,2.08,3,0 +21970350,Large Room in 2 bedroom Williamsburg/Bushwick,861330,Joseph,Brooklyn,Williamsburg,40.70255,-73.94408,Private room,40,30,0,,,3,0 +21970487,Newly Renovated Bed-Stuy Brownstone Apartment,158298807,Marcia,Brooklyn,Bedford-Stuyvesant,40.69355,-73.95197,Entire home/apt,90,2,42,2019-06-23,2.18,1,52 +21971593,Private newest room in Bushwick.,146345538,Sergii,Brooklyn,Bushwick,40.69475,-73.91507,Private room,50,30,1,2018-10-04,0.11,5,361 +21972082,Amazing cozy and warm male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71172,-73.98665,Shared room,35,14,3,2019-01-21,0.25,28,322 +21972403,Amazing private room in East Bushwick,101970559,Sergii,Brooklyn,Bushwick,40.69398,-73.90719,Private room,50,30,1,2018-12-22,0.15,6,365 +21972697,Newly private room in best Co-Living,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.6926,-73.94076,Private room,50,30,4,2018-03-08,0.21,10,364 +21973631,Need a Beautiful place to stay?,3832479,Hunderson,Brooklyn,Crown Heights,40.67504,-73.93956,Private room,50,30,0,,,1,113 +21973767,Spring in NYC! The perfect spot.,13242534,Elizabeth,Manhattan,Chelsea,40.73936,-73.99753,Entire home/apt,250,7,6,2018-06-05,0.33,1,0 +21975315,"Bright, 1.5 bedroom apartment in E. Williamsburg",2099205,Alexandra,Brooklyn,Williamsburg,40.71212,-73.94011,Entire home/apt,180,3,9,2019-03-25,0.53,1,0 +21975709,Designer 2 Bedroom Loft**Greenwich Village**4BEDS*,8837750,Mark,Manhattan,Greenwich Village,40.73539,-73.99547,Entire home/apt,485,5,45,2019-07-07,2.36,1,203 +21976874,Luxury Williamsburg 2-Story Apartment w/ Patio,3052833,Justin,Brooklyn,Williamsburg,40.71622,-73.94462,Entire home/apt,350,2,22,2019-06-12,1.15,1,132 +21977042,Brighton Beach Hideaway 5 min walk from the Beach,160457828,Adam,Brooklyn,Brighton Beach,40.57872,-73.96009,Entire home/apt,99,1,117,2019-07-07,6.07,1,68 +21977693,Sunny Private Bedroom in East Village,2863092,Emma,Manhattan,East Village,40.7253,-73.98861,Private room,85,7,0,,,1,0 +21977987,"Bright, airy, Soho 1 bedroom",16775193,Jen,Manhattan,SoHo,40.72224,-74.00356,Entire home/apt,150,14,1,2017-12-22,0.05,1,0 +21978019,Sunny and Spacious Nolita 1BR apartment!,7650212,Alana,Manhattan,Nolita,40.72224,-73.99438,Entire home/apt,300,5,7,2018-11-14,0.46,1,0 +21978281,Welcome to Brooklyn! Stay in Bed-Stuy!,151777787,Kristina,Brooklyn,Brownsville,40.67528,-73.906,Private room,40,2,3,2018-01-07,0.16,2,0 +21978366,Modern Bedstuy private bedroom,6441887,Su,Brooklyn,Bedford-Stuyvesant,40.69131,-73.93387,Private room,60,1,9,2018-06-01,0.46,2,0 +21978558,Luxury Modern Apartment by Central Park,21657795,Musa,Manhattan,Harlem,40.8029,-73.95576,Entire home/apt,100,3,1,2017-12-08,0.05,1,0 +21979050,SoHo/NoLiTa Perfect Location,144857346,Grace,Manhattan,Nolita,40.72389,-73.9954,Entire home/apt,275,2,1,2017-12-07,0.05,3,0 +21979387,Brownstone 1 Bedroom Apt in Bushwick,160474324,Noel,Brooklyn,Bushwick,40.69267,-73.9218,Entire home/apt,70,5,1,2017-12-14,0.05,1,0 +21979566,Mid-Century Modern 1 BR with Stunning Views,45406877,Rup,Manhattan,Civic Center,40.71237,-74.00747,Entire home/apt,100,2,3,2019-03-02,0.46,1,0 +21979587,ENTIRE 1.5 BR in Greenpoint / Williamsburg,20214811,Lauren,Brooklyn,Greenpoint,40.72672,-73.94715,Entire home/apt,66,3,3,2018-05-21,0.17,1,0 +21979890,Beautiful beach house in NYC!,27272337,Peter,Queens,Arverne,40.58793,-73.79268,Entire home/apt,250,4,40,2019-06-24,2.16,1,183 +21979898,BIG Artistic LOFT Studio right near waterfront!,17425841,Joshua,Brooklyn,Williamsburg,40.71642,-73.96459,Entire home/apt,99,30,0,,,1,0 +21980316,Modern Apartment with a lot of natural light,5191980,Jen,Brooklyn,Crown Heights,40.67728,-73.95676,Entire home/apt,200,2,0,,,1,0 +21980586,Quiet and Sunny Williamsburg One Bedroom!,51765609,Whitney,Brooklyn,Williamsburg,40.71015,-73.94672,Entire home/apt,100,90,1,2019-06-27,1,1,3 +21980711,Beautiful Private Apartment With Rooftop Access,75485224,Alysee,Brooklyn,Williamsburg,40.72085,-73.95723,Entire home/apt,55,2,15,2018-02-28,0.77,1,0 +21980723,Modern Renovation of original Manhattan Townhouse.,6675176,David,Manhattan,Harlem,40.82277,-73.9555,Entire home/apt,650,5,23,2019-06-29,1.35,1,301 +21981036,Comfortable studio duplex with a Queen size Casper mattress. A 15-minute walk to Union Square and a two-block walk to the subway. Beautiful light in the morning.,75664810,Leena,Manhattan,Gramercy,40.73878,-73.9839,Entire home/apt,100,2,4,2019-01-15,0.32,1,0 +21981313,Lovely spacious apartment in prime location,44102819,Anne,Brooklyn,Greenpoint,40.72539,-73.95473,Entire home/apt,120,7,1,2018-01-04,0.05,1,0 +21981703,Beautiful and Charming 2 Bedroom in Brooklyn!,2066240,Marcella,Brooklyn,Crown Heights,40.67405,-73.94419,Entire home/apt,12,3,0,,,1,0 +21981789,Spacious light room in a cool neighborhood,100672521,Angie,Manhattan,Lower East Side,40.7128,-73.99045,Private room,88,1,44,2019-06-28,2.25,3,73 +21981845,A happy home,158178970,Raquel,Staten Island,Randall Manor,40.63108,-74.12512,Private room,27,1,21,2019-06-19,1.14,3,287 +21982096,"Friendly, bustling & safe first floor BK gem!",33738190,Jen,Brooklyn,Sunset Park,40.66222,-73.99567,Private room,85,1,0,,,3,0 +21982177,Gramercy Park Pied à Terre,6587683,Angele,Manhattan,Gramercy,40.73716,-73.98835,Entire home/apt,150,2,21,2019-06-26,1.10,1,1 +21982223,Gorgeous 1BR 1.5 Bath Duplex with Terrace,44253752,Heather Garcia,Manhattan,Upper East Side,40.7745,-73.94844,Entire home/apt,150,8,0,,,1,0 +21982333,Casa de Compri Int'l,160322636,Leland,Brooklyn,East New York,40.66379,-73.89127,Private room,50,2,43,2019-07-01,2.19,1,172 +21982534,Charming 1.5 bdrm apt in W'burg - family friendly!,58847382,Emily,Brooklyn,Williamsburg,40.71271,-73.94284,Entire home/apt,125,1,1,2018-01-03,0.05,1,0 +21982618,A cozy apartment in Hamilton Heights!,34320483,Jonathan,Manhattan,Harlem,40.8262,-73.95035,Private room,43,3,1,2017-11-29,0.05,1,0 +21982630,One Bedroom w/ Backyard Oasis in Williamsburg,160503827,Christopher,Brooklyn,Williamsburg,40.71157,-73.94308,Entire home/apt,90,3,7,2019-03-31,0.36,1,0 +21982707,Spacious Apartment in West Village,17038671,Anthony,Manhattan,West Village,40.73144,-74.00388,Entire home/apt,150,2,3,2018-08-12,0.16,2,0 +21982758,Cozy 1 Bedroom in the Heart of Clinton Hill,10763283,Heather,Brooklyn,Clinton Hill,40.68165,-73.96006,Entire home/apt,110,3,15,2019-06-04,0.83,1,3 +21982995,Cozy home in Astoria Queens.,160507191,Nikos,Queens,Astoria,40.76017,-73.90945,Entire home/apt,150,4,29,2019-01-01,1.48,1,0 +21983066,Great comfortable conveniently located room,160507714,Maria,Brooklyn,Fort Greene,40.68286,-73.97134,Private room,80,1,1,2018-01-01,0.05,1,0 +21983105,Cute Loft in the Heart of Greenpoint Brooklyn!,156976885,Carrie,Brooklyn,Greenpoint,40.72549,-73.94453,Entire home/apt,120,3,0,,,1,0 +21983211,Large Master Bedroom in Midtown West,5625684,M,Manhattan,Hell's Kitchen,40.76535,-73.98765,Private room,130,12,2,2019-01-01,0.14,1,31 +21983275,Spacious cozy apartment w/ beautiful backyard!,33978706,Pierre Yves,Brooklyn,Bedford-Stuyvesant,40.69407,-73.94275,Entire home/apt,196,5,4,2019-05-05,0.22,1,3 +21983362,Cozy Urban Retreat,18495460,Frank,Brooklyn,Crown Heights,40.67288,-73.95444,Entire home/apt,115,30,4,2019-05-31,0.25,3,292 +21983547,"Spacious, Bright 1 BR in Prime Midtown West",12128527,Andy,Manhattan,Chelsea,40.75172,-73.99784,Entire home/apt,225,2,38,2019-07-01,2.00,2,257 +21983780,Bright Designer NoHo/Greenwich Village Loft,15220846,Marika,Manhattan,NoHo,40.72705,-73.9933,Entire home/apt,274,4,4,2019-04-06,0.22,1,7 +21984139,Columbus Circle Spacious Studio near everything,16025677,Meng-Mei,Manhattan,Hell's Kitchen,40.769,-73.98757,Entire home/apt,107,4,1,2018-03-13,0.06,2,0 +21984170,Columbus Circle Spacious Studio near everything,16025677,Meng-Mei,Manhattan,Hell's Kitchen,40.76978,-73.98936,Entire home/apt,115,5,0,,,2,0 +21984189,Bryant Park,160520133,Jay,Manhattan,Midtown,40.75288,-73.98526,Entire home/apt,250,7,11,2019-07-03,0.58,1,265 +21984232,Cosy bedroom in bushwick near Jefferson L train,69546339,Michael,Brooklyn,Bushwick,40.70401,-73.92629,Private room,41,6,2,2018-05-10,0.11,2,0 +21984342,Cozy In Clinton Hill,156831639,Ashley,Brooklyn,Clinton Hill,40.68318,-73.96624,Entire home/apt,125,21,0,,,1,0 +21984356,Brooklyn In Style Queen Room in Gowanus Inn,159091490,Melissa,Brooklyn,Gowanus,40.67943,-73.98387,Private room,169,1,12,2019-06-30,0.62,17,364 +21985066,Crown Heights Comfort: Cozy Room & Warm Livingroom,52610301,Jason,Brooklyn,Crown Heights,40.67068,-73.95764,Private room,43,1,5,2018-01-01,0.26,1,0 +21985070,Cozy Room 2 MINIUTES WALK to 1 TRAIN,5400884,Cassie,Manhattan,Upper West Side,40.80257,-73.96725,Private room,99,1,2,2017-12-19,0.10,1,0 +21985279,"3-Bedroom House with Hot Tub Near JFK, LGA & NYC",151880786,Colin,Queens,Richmond Hill,40.70231,-73.82722,Entire home/apt,66,30,9,2018-09-16,0.47,1,173 +21987828,Sunny Private Room in 3-Bedroom Apt.,14535843,Luna,Brooklyn,Flatbush,40.64215,-73.95685,Private room,38,4,1,2018-01-01,0.05,1,0 +21989166,New Brooklyn HotSpot,105758291,Junior,Brooklyn,East Flatbush,40.6467,-73.94841,Entire home/apt,150,4,35,2019-06-25,2.82,1,105 +21990254,"The BlossomBoudoir. Clean, Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68514,-73.87333,Shared room,49,2,32,2019-07-06,1.67,3,5 +21990808,***SLEEPING IN THE GOLDEN PLACE***,159156636,,Manhattan,Hell's Kitchen,40.75835,-73.99065,Private room,120,1,88,2018-12-14,4.93,3,0 +21991066,Central Park North 1BR,4130601,Rei,Manhattan,East Harlem,40.79748,-73.948,Private room,75,18,1,2018-01-09,0.05,1,0 +21991970,Bedroom in Luxury Building in Financial District,65046976,Frank,Manhattan,Financial District,40.70518,-74.00881,Private room,88,1,1,2018-08-26,0.09,1,0 +21992083,"Walk everywhere, See everything! +2BR Midtown West",95010593,Julien,Manhattan,Hell's Kitchen,40.75289,-73.99403,Private room,300,1,104,2019-07-05,5.59,1,19 +21993232,"LOCATION, LOCATION, LOCATION!",129577022,Amanda,Manhattan,Kips Bay,40.74421,-73.98007,Entire home/apt,205,3,2,2018-01-01,0.10,1,0 +21993629,Williamsburg Apartment with Private Backyard,1974292,Sara,Brooklyn,Williamsburg,40.71382,-73.94385,Entire home/apt,199,2,19,2019-07-01,1.03,1,297 +21993956,Studio-Sized Master Bedroom with Great Amenities!,7465002,Rena,Queens,Astoria,40.76552,-73.92576,Private room,50,3,3,2018-06-29,0.16,1,0 +21994561,Small bedroom in comfy apartment @Upper West Side,2928002,Jerome,Manhattan,Upper West Side,40.79917,-73.96795,Private room,69,4,2,2018-01-11,0.11,1,0 +21994769,EXPERIENCE NYC The Brooklyn Way Private 2 bedrooms,160601986,Alexander,Brooklyn,Mill Basin,40.61224,-73.91854,Entire home/apt,85,3,25,2019-07-02,1.30,1,139 +21995883,Chelsea urban style loft,79886089,Stephanie,Manhattan,Chelsea,40.74624,-73.99273,Private room,150,5,4,2019-01-01,0.22,1,0 +21995927,Spacious Chic UES 1Br by Central Park,4683188,Emily,Manhattan,Upper East Side,40.77885,-73.95756,Entire home/apt,250,5,0,,,1,0 +21996377,HUGE Cobble Hill 2BR/2BA,822034,Rly,Brooklyn,Cobble Hill,40.68719,-73.99384,Entire home/apt,210,30,0,,,1,54 +21996542,East Village 2 Bedroom Apt in Pre War/Doorman Bldg,11951403,Kacy,Manhattan,East Village,40.72732,-73.98056,Entire home/apt,475,30,0,,,1,0 +21996983,Modern Plush Studio Apt near Times Square in NYC!,95459395,Bluebird,Manhattan,Hell's Kitchen,40.76084,-73.99899,Entire home/apt,299,30,0,,,18,365 +21997208,Spacious 2 Bed Apartment on the UWS,154608871,Daniel,Manhattan,Upper West Side,40.78707,-73.9769,Entire home/apt,215,2,0,,,1,0 +21997763,Chic Carroll Gardens Home,621266,Barnaby,Brooklyn,Carroll Gardens,40.67912,-74.00227,Entire home/apt,180,7,0,,,1,0 +21997804,"Studio, Best Location near Columbus Circle",812331,Oliver,Manhattan,Hell's Kitchen,40.76691,-73.98545,Entire home/apt,150,7,1,2018-01-03,0.05,1,7 +21998044,"Cozy, private room near Prospect Park & BK Museum",4102079,Rodrigo,Brooklyn,Prospect Heights,40.67487,-73.96409,Private room,75,1,65,2019-07-05,4.03,1,313 +21999647,Huge Room in East Harlem on Madison Avenue,159655531,Kelvin,Manhattan,East Harlem,40.8009,-73.94333,Private room,60,3,86,2019-07-04,4.48,2,50 +22000019,Private renovated room with your own bathroom,160643378,Kate,Brooklyn,Bedford-Stuyvesant,40.68507,-73.92612,Private room,75,2,20,2018-11-30,1.08,1,0 +22000255,"Cozy private room, 10 mins away from Central Park!",157728550,Kem,Manhattan,East Harlem,40.80219,-73.94383,Private room,150,1,107,2019-06-25,5.55,2,365 +22000376,2000呎 法拉盛美丽豪华大套房,135530716,Angela,Queens,Flushing,40.76483,-73.79583,Entire home/apt,460,1,49,2019-06-24,2.55,4,160 +22000430,Central Studio with 12 foot ceilings - Not Shared,159154462,Ken,Manhattan,Midtown,40.75741,-73.98126,Entire home/apt,125,1,53,2019-06-30,3.71,2,14 +22000913,Harlem Jazz (private bath),152263768,John,Manhattan,Harlem,40.82204,-73.94293,Private room,65,1,60,2019-06-22,3.08,1,101 +22001233,NYC Gallery,12927770,Anton,Manhattan,Upper East Side,40.77995,-73.95621,Entire home/apt,150,3,0,,,1,0 +22001385,Comfortable room in FIDI,4455698,Pierre,Manhattan,Two Bridges,40.70992,-74.00102,Private room,85,7,2,2018-08-18,0.11,3,311 +22001568,"Spacious bedroom in Greenpoint, BK",5445919,Nargis,Brooklyn,Greenpoint,40.7249,-73.94105,Private room,75,7,3,2018-12-31,0.16,1,0 +22001596,Modern chic room in the heart of NY,113918131,Hem,Manhattan,Gramercy,40.73433,-73.98371,Private room,99,5,0,,,1,0 +22001621,Entire Loft Style 1BR Apartment in Greenpoint,103863147,Gabriele,Brooklyn,Greenpoint,40.73388,-73.95536,Entire home/apt,159,3,32,2019-06-18,1.67,1,56 +22002827,Cozy 3rd Floor Studio in the Heart of Bedstuy,11530808,Stephen,Brooklyn,Bedford-Stuyvesant,40.68416,-73.93176,Entire home/apt,60,2,1,2018-01-01,0.05,1,0 +22005115,Two floor apartment near Central Park,82746113,Cecilia,Manhattan,Upper West Side,40.78761,-73.96862,Entire home/apt,135,5,1,2019-06-30,1,2,145 +22007011,Private room. Bushwick. 18 min train to NYC,160702123,Roxanne,Brooklyn,Bushwick,40.69234,-73.90889,Private room,50,1,13,2019-01-02,0.70,1,0 +22007950,Bushwick/Brooklyn Charming Private Room,49735439,Merida,Queens,Ridgewood,40.69587,-73.9045,Private room,65,3,1,2018-05-31,0.07,2,125 +22008625,Sunny bedroom on Bed-Stuy/Bushwick boarder,3147227,Stephanie,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92793,Private room,100,10,0,,,1,0 +22008794,Beautiful Bright Room in Bushwick,1230739,Dylan,Brooklyn,Bushwick,40.69159,-73.91235,Private room,35,14,0,,,1,0 +22009072,"Home in the Heart of Harlem, Express Subway Stop",6493857,Samantha,Manhattan,Harlem,40.81083,-73.95248,Private room,69,2,0,,,1,0 +22009620,"Super Cute, Cozy, & Convenient...",160707142,Jamel,Brooklyn,East Flatbush,40.65046,-73.93633,Entire home/apt,85,2,23,2019-06-30,1.25,1,149 +22009898,"Calm, quirky Harlem apartment Room 1",41940272,Nicole,Manhattan,Harlem,40.82237,-73.94617,Private room,54,2,6,2018-04-16,0.31,3,5 +22010163,Modern 2 bedroom apartment close to subway,790872,Tri,Manhattan,East Harlem,40.80481,-73.93812,Entire home/apt,120,1,3,2018-03-18,0.16,2,0 +22010257,"King-size bedroom, great location, next to park!",3574922,Shay,Brooklyn,Flatbush,40.65318,-73.96253,Private room,75,2,8,2019-01-28,0.42,1,0 +22010343,Nice and cozy apartment! 15 mins from manhattan,22365640,Katherine,Queens,Woodside,40.74434,-73.91108,Entire home/apt,100,2,0,,,1,0 +22010459,"Calm, Cozy 2 Bedroom Apartment",41940272,Nicole,Manhattan,Harlem,40.82252,-73.94597,Entire home/apt,73,4,11,2019-04-22,0.61,3,6 +22010594,Spacious Apartment with Work Space,160726948,Mike,Manhattan,Kips Bay,40.74478,-73.97968,Entire home/apt,94,30,3,2019-01-20,0.16,2,155 +22011027,Fort Greene Loft,2084074,Sarah,Brooklyn,Fort Greene,40.69222,-73.97157,Entire home/apt,300,3,10,2019-06-19,0.70,1,82 +22011227,Bright Bedroom in Bushwick,3872416,Freddy,Brooklyn,Bushwick,40.70221,-73.91419,Private room,65,6,0,,,1,0 +22011311,"Modern, Cozy Apartment in the Heart of Bushwick!",97336460,Jillian,Brooklyn,Bushwick,40.69671,-73.92577,Private room,100,1,0,,,1,0 +22012650,East Village 1 bed in quiet neighbourhood,2502124,Saoirse,Manhattan,Gramercy,40.73297,-73.98435,Entire home/apt,186,9,25,2019-05-13,1.33,1,8 +22013423,Fully Stocked 1-Bedroom in Astoria!,48356178,Brandon,Queens,Long Island City,40.75797,-73.92908,Entire home/apt,113,5,9,2018-09-09,0.49,1,0 +22013965,Vintage,48655993,Ottilia,Queens,Elmhurst,40.74152,-73.87633,Private room,50,1,16,2019-05-06,0.84,1,49 +22014840,Sunny Bedroom Only 1 Metro Stop to Manhattan,32093643,Scarlett,Manhattan,Roosevelt Island,40.76211,-73.94887,Private room,70,2,2,2018-01-07,0.11,1,0 +22015654,The Nolita - A One Bedroom Apartment,159571314,Jacqueline,Manhattan,Nolita,40.72203,-73.99564,Entire home/apt,325,2,4,2018-07-21,0.21,1,0 +22016391,Your own Loft/gallery in Bushwick!,43872938,Shir,Brooklyn,Bushwick,40.69264,-73.90485,Private room,49,4,3,2018-04-09,0.17,1,0 +22016473,Big and bright STUDIO in E Williamsburg,29395562,Elena,Brooklyn,Williamsburg,40.71222,-73.93983,Private room,85,3,58,2019-06-17,3.14,1,5 +22017344,Full Floor Penthouse Loft- 3BR 2 Bath Times Square,160373219,Mo,Manhattan,Hell's Kitchen,40.76656,-73.98848,Entire home/apt,487,4,50,2019-06-19,2.61,1,198 +22017362,Sunny Studio in Carroll Gardens!,160660639,Annette,Brooklyn,Carroll Gardens,40.67617,-74.00107,Entire home/apt,49,1,81,2019-07-02,4.27,2,141 +22017432,"Beautiful, Spacious, and Zen Brooklyn dwelling",9605757,Doo,Brooklyn,Clinton Hill,40.68182,-73.9659,Entire home/apt,150,3,14,2019-04-21,0.74,1,84 +22017621,"Dream Renovated Manhattan Apt, 5 stops to Midtown!",62706408,Kirstyn,Manhattan,Washington Heights,40.84399,-73.94228,Entire home/apt,80,3,0,,,1,0 +22017804,Cozy Room in Crown Heights,27105320,Eliana,Brooklyn,Crown Heights,40.67238,-73.95222,Private room,35,7,0,,,1,0 +22018219,"Warmth in Woodside, New York",25376759,Theis,Queens,Woodside,40.75247,-73.90033,Entire home/apt,90,3,1,2018-01-02,0.05,1,0 +22018921,Clean and simple Private Ensuite in Manhanttan,70235067,Caeli,Manhattan,Washington Heights,40.84754,-73.93229,Private room,34,3,4,2018-08-26,0.22,1,0 +22019218,Relaxing large middle room,131476075,Lakisha,Brooklyn,Bushwick,40.68571,-73.91317,Private room,51,1,19,2019-05-11,1.02,8,177 +22019519,Manhattan New York luxurious hotel,160792280,Dez,Manhattan,Midtown,40.76583,-73.98087,Entire home/apt,200,1,1,2017-12-02,0.05,2,0 +22019711,Sunlit Private Room in Uptown Manhattan,70338191,Dana,Manhattan,Washington Heights,40.85677,-73.92986,Private room,45,2,50,2019-06-30,2.69,1,3 +22019912,Private Room in HOME w/Professionals,13208109,Jenny,Brooklyn,Flatbush,40.64066,-73.9664,Private room,45,5,3,2018-07-15,0.16,1,0 +22020038,"Captivating sunny studio, close to everything",47414802,Jason,Manhattan,Harlem,40.80427,-73.9506,Entire home/apt,115,20,4,2018-09-30,0.21,2,282 +22020298,Humongous 10 feet ceiling room,131476075,Lakisha,Brooklyn,Bushwick,40.68751,-73.91194,Private room,60,1,25,2019-05-04,1.35,8,177 +22020827,Cosy 2-Bedroom in Bubbly Part of Manhattan,32237865,Joëlle,Manhattan,Harlem,40.80756,-73.94886,Entire home/apt,150,4,4,2018-12-29,0.21,1,0 +22020843,Smart NYC Access (3),74179880,Silvia,Brooklyn,East New York,40.67471,-73.88905,Private room,33,3,56,2019-06-19,3.19,8,305 +22023444,Luxury Studio Apartment,7647511,Mike,Brooklyn,Bedford-Stuyvesant,40.68884,-73.92222,Entire home/apt,100,4,15,2019-06-17,0.81,1,0 +22026277,Wyndham Midtown 45 in Manhatten for Christmas,111188158,Cheryl,Manhattan,Midtown,40.75348,-73.97189,Entire home/apt,200,5,1,2018-12-29,0.16,1,0 +22026647,Duplex cozy Brooklyn,34216298,Koryn,Brooklyn,Williamsburg,40.7113,-73.9573,Entire home/apt,150,1,16,2019-06-29,1.17,1,334 +22026830,Prime Park Slope on 14th Street,160847231,Mike,Brooklyn,South Slope,40.66615,-73.98747,Entire home/apt,131,2,67,2019-06-27,3.94,1,61 +22027652,"Sunny Astoria Bedroom (near LGA, and Astoria Park)",47598303,Tina,Queens,Astoria,40.77205,-73.92997,Private room,58,1,5,2017-12-10,0.26,1,0 +22028251,Harlem Master bed and bath,135944525,Tiffany,Manhattan,Harlem,40.81876,-73.9536,Private room,45,1,0,,,1,0 +22028307,Gorgeous Bright Parlor Floor Thru,46719,Holly,Brooklyn,Park Slope,40.67149,-73.97957,Entire home/apt,300,4,3,2019-04-22,0.47,1,350 +22028706,"Bright, Beautiful and Quiet Condo w/Balcony",17879753,Rebecca,Brooklyn,Williamsburg,40.70843,-73.94479,Entire home/apt,102,3,2,2018-10-29,0.14,1,0 +22028894,20 mins to Manhattan. 7mins walk 2 subway.busesA,60291768,Kim,Queens,Elmhurst,40.73867,-73.87144,Entire home/apt,88,4,44,2019-06-04,2.33,2,39 +22029653,Quiet Artsy Astoria Bedroom Available,160862247,Peyton,Queens,Astoria,40.75694,-73.92558,Private room,57,5,0,,,1,0 +22029995,"Beautiful, bright apartment in prime Williamsburg",6967723,Emily & Mathias,Brooklyn,Williamsburg,40.71603,-73.95749,Entire home/apt,209,7,1,2018-01-02,0.05,1,0 +22030593,Comfortable warehouse conversion loft. STUDIO,338921,Benjamin,Brooklyn,Cobble Hill,40.68831,-73.99159,Entire home/apt,200,2,1,2019-06-30,1,1,1 +22030831,Luxury 1 Bedroom APT - 1 stop to Manhattan!,826567,Po,Queens,Long Island City,40.75135,-73.94281,Entire home/apt,120,3,1,2019-01-01,0.16,1,0 +22031003,Private and clean room near Columbia University,70919459,Teresa,Manhattan,Upper West Side,40.80259,-73.96446,Private room,60,5,0,,,1,0 +22031456,Brooklyn City Home,160495098,Miller,Brooklyn,Flatbush,40.63359,-73.94915,Entire home/apt,58,2,28,2019-02-24,1.46,5,0 +22031539,Manhattan Club,983223,Dorothy,Manhattan,Midtown,40.76581,-73.98235,Private room,200,2,1,2017-12-28,0.05,1,0 +22031683,"Modern master bedroom, LES, 2mn to train",4027689,Miguel,Manhattan,Lower East Side,40.71465,-73.98914,Private room,120,1,64,2019-07-06,4.10,2,32 +22031711,"Large, beautiful fully furnished studio for sublet",42051399,Ari,Manhattan,Harlem,40.82932,-73.94563,Entire home/apt,128,30,0,,,1,89 +22031905,"Sunny, Large Bushwick room - private ROOF TERRACE",9018136,Kyrié,Brooklyn,Bushwick,40.69699,-73.91531,Private room,60,2,8,2019-01-02,0.43,1,0 +22032210,Sunny Brooklyn Brownstone,67265708,Esteban,Brooklyn,Crown Heights,40.67712,-73.95132,Private room,110,7,0,,,1,89 +22032243,Historical Midtown East Retreat - Steps to the U.N,160892059,Cooper,Manhattan,Midtown,40.75292,-73.96386,Entire home/apt,145,5,16,2019-06-14,0.84,1,173 +22032605,Spacious Attic Room,160899890,Carly,Brooklyn,Midwood,40.61609,-73.95893,Private room,35,1,2,2018-01-02,0.11,1,0 +22032656,Huge Bedroom 3rd # in a privately own brownstone,60981198,Cyrille,Brooklyn,Bedford-Stuyvesant,40.69106,-73.93707,Private room,75,4,5,2019-04-11,0.50,3,132 +22033512,Quiet East Village Apartment for 3,12337690,Ran,Manhattan,East Village,40.72937,-73.98482,Entire home/apt,300,7,0,,,1,0 +22033927,"Brooklyn Loft, 3bed, 2bath, 15 mins to Manhattan",160891716,Amanda,Brooklyn,Bedford-Stuyvesant,40.6798,-73.93857,Entire home/apt,325,2,21,2019-06-16,1.10,1,14 +22034112,Cozy Harlem Studio,38959084,Alvaro Luis,Manhattan,East Harlem,40.80589,-73.9414,Entire home/apt,200,4,6,2019-01-01,0.33,1,0 +22034977,South Bronx Hideaway,148100571,Jenny,Bronx,Soundview,40.82668,-73.8822,Entire home/apt,50,1,2,2017-12-09,0.10,2,0 +22035070,"Basic, convenient, private in Crown Heights",77181668,Molly,Brooklyn,Crown Heights,40.6717,-73.93593,Entire home/apt,120,6,0,,,1,5 +22035333,*Memory foam mattress lovers//Netflix!!,146449899,Fabian,Queens,Flushing,40.7467,-73.83456,Private room,53,1,166,2019-06-30,8.74,2,151 +22035507,Tudor City,20513673,Vera,Manhattan,Midtown,40.75417,-73.96556,Entire home/apt,90,6,6,2019-06-02,0.31,1,31 +22037644,Restorative haven in a great neighborhood,46972551,Catherine,Manhattan,Upper West Side,40.78623,-73.98146,Entire home/apt,110,2,33,2019-06-19,1.74,1,6 +22037715,Cozy artistic 3 bedroom home 15-20mins from jfk,160940380,Adeola,Queens,St. Albans,40.69863,-73.74941,Entire home/apt,250,3,39,2019-06-17,2.12,3,347 +22041636,Williamsburg Apartment by L Train,33588156,George,Brooklyn,Williamsburg,40.71671,-73.94069,Private room,53,7,0,,,1,0 +22042837,Fully furnished COOL private room.,33201402,Luis,Bronx,Mount Hope,40.84572,-73.91023,Private room,39,1,33,2019-07-04,1.93,1,8 +22043565,Perfect UWS Prewar 1 bedroom apartment!,160991451,Maurine,Manhattan,Upper West Side,40.79119,-73.9782,Entire home/apt,150,5,6,2019-03-14,0.32,1,0 +22043701,Cozy loft in Bushwick,77145207,Nicole,Brooklyn,Bushwick,40.69911,-73.92843,Private room,65,1,0,,,1,0 +22043923,Large Private Bedroom and Bath Near Shops & Parks,13636138,Jay,Brooklyn,Cobble Hill,40.68828,-73.99821,Private room,105,3,14,2019-06-07,0.80,1,173 +22044014,Entire Studio Steps from Central Park,105341430,Kseniya,Manhattan,Upper West Side,40.78608,-73.97252,Entire home/apt,100,1,116,2019-07-02,5.99,1,65 +22044378,Trendy 1br apartment in the heart of East Village,25325946,Kate,Manhattan,East Village,40.73029,-73.98439,Entire home/apt,175,2,0,,,1,0 +22044485,1BR room in a great Bushwick apartment,40959256,Daniel,Brooklyn,Bushwick,40.70062,-73.93103,Private room,50,3,8,2018-06-19,0.42,1,0 +22045060,MASSIVE 3 Bedroom NOHO LOFT,9522475,Liam,Manhattan,East Village,40.72434,-73.99099,Entire home/apt,455,30,26,2019-05-15,1.77,2,332 +22045554,Bright Private room with Ensuite Bathroom,10477204,Karen,Brooklyn,Clinton Hill,40.68827,-73.96583,Private room,70,20,0,,,1,0 +22046354,Master Bedroom in Upper West Side Duplex,160306249,Andy,Manhattan,Upper West Side,40.78313,-73.97555,Private room,58,3,2,2018-01-30,0.10,2,0 +22047243,Luxury NYC Apartment on Central Park West,7991202,Daniel,Manhattan,Upper West Side,40.79971,-73.96037,Entire home/apt,125,5,5,2019-05-29,0.27,1,7 +22047750,Clean Room #1 in Brooklyn Home 15 min from JFK,126110540,Janine,Brooklyn,East New York,40.66269,-73.8825,Private room,75,1,54,2019-06-10,2.80,3,179 +22047988,Quick access to the city for cheap,49139686,David,Manhattan,Harlem,40.82442,-73.9485,Private room,55,3,4,2018-01-01,0.21,1,0 +22048265,Luxurious Brooklyn Getaway - Comfy Couch & Sofabed,15681707,Joycelyn,Brooklyn,Crown Heights,40.67473,-73.91424,Shared room,29,2,4,2018-05-18,0.22,3,1 +22048368,Private room in bright Greenpoint apartment,88739067,Joana,Brooklyn,Greenpoint,40.73284,-73.95919,Private room,37,3,4,2018-08-27,0.22,1,0 +22049875,"Bright large studio loft, 100% private, Bushwick",62649248,Benjamin,Brooklyn,Bushwick,40.70429,-73.91688,Entire home/apt,90,2,89,2019-07-01,4.67,2,38 +22050046,Cozy Corner In Heart of Manhattan,155125855,Vicente,Manhattan,Midtown,40.74669,-73.98311,Shared room,65,1,76,2018-09-12,3.97,3,0 +22050058,法拉盛唯美独立房间,135530716,Angela,Queens,Flushing,40.76561,-73.79576,Private room,80,2,0,,,4,3 +22050355,Home Sweet Home in Astoria,125011763,Peter,Queens,Astoria,40.76106,-73.9078,Entire home/apt,95,1,64,2019-06-22,3.43,2,96 +22050927,法拉盛温馨亲子房,135530716,Angela,Queens,Flushing,40.76572,-73.79629,Private room,98,2,1,2018-03-22,0.06,4,3 +22051488,"法拉盛高档,奢华大套房(带按摩浴缸和淋浴的独立卫生间)",135530716,Angela,Queens,Flushing,40.76355,-73.79461,Private room,120,2,1,2017-12-26,0.05,4,6 +22051523,Room 1 at Lower Manhattan 18mins from Timesquare,161057073,Stella,Manhattan,Lower East Side,40.71983,-73.9877,Private room,90,2,52,2019-06-23,2.70,4,67 +22051863,Sunny Apt. near Columbus circle,44869463,Nardys,Manhattan,Hell's Kitchen,40.7668,-73.98428,Entire home/apt,160,3,0,,,1,0 +22054258,Chambre pour couple où personne seule,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82496,-73.91389,Private room,45,2,54,2019-06-23,2.94,2,313 +22055300,"Cozy Living room sofa bed,close to LGA/JFK/subway",40711894,Jessica,Queens,Elmhurst,40.74113,-73.88769,Shared room,41,1,9,2019-06-15,1.01,4,27 +22057103,Central Park Studio,14290739,Stanton,Manhattan,Upper West Side,40.79176,-73.96717,Entire home/apt,175,30,1,2018-12-18,0.15,3,3 +22057431,A Well-Appointed Home in a Historic BK Brownstone,60523852,Tariq,Brooklyn,Bedford-Stuyvesant,40.68522,-73.94512,Entire home/apt,150,3,2,2018-01-01,0.11,1,0 +22058411,"Spacious, Modern Two Bedroom, Two Bath in Harlem",4012917,Laura,Manhattan,East Harlem,40.8014,-73.94386,Entire home/apt,200,5,7,2019-01-04,0.38,1,9 +22058586,Private & Comfortable Room close to Manhattan!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.95155,Private room,60,2,73,2019-06-30,3.82,3,180 +22058992,Cute & Cozy Two Room Studio in Brooklyn Heights,19628425,Ahyoung,Brooklyn,Boerum Hill,40.68632,-73.98903,Entire home/apt,80,30,3,2017-12-30,0.16,1,0 +22059169,Spacious 2 bedroom in heart of Brooklyn,32299529,Kimberle,Brooklyn,East New York,40.6729,-73.88902,Entire home/apt,81,7,1,2018-01-13,0.06,1,0 +22059272,"Comfy, spacious bedroom",25330183,Juan,Queens,Sunnyside,40.73688,-73.91945,Private room,31,3,2,2018-07-07,0.15,1,0 +22059276,Spacious room near Prospect Park & Brooklyn Museum,2343200,Ade,Brooklyn,Crown Heights,40.67019,-73.93996,Private room,47,3,0,,,1,125 +22059613,Cozy room in Brooklyn,75976584,Margot,Brooklyn,Bushwick,40.68727,-73.90702,Private room,50,1,0,,,1,0 +22060065,Wash Heights Corner Apt,3701760,Jake,Manhattan,Washington Heights,40.8411,-73.93751,Private room,50,4,5,2018-01-28,0.26,1,0 +22060142,Carroll Gardens Brooklyn Brownstone Guest Quarter,2717905,Nadia,Brooklyn,Carroll Gardens,40.67832,-73.99803,Private room,130,2,2,2018-10-01,0.19,1,179 +22060712,Great Location! One Bedroom Apt. in LES,40866184,Semhar,Manhattan,Chinatown,40.71467,-73.99239,Entire home/apt,105,14,12,2019-01-05,0.65,1,0 +22060924,"Private room, modern apartment w/ PRIVATE ROOF!",5234625,Caroline,Brooklyn,Williamsburg,40.70781,-73.94375,Private room,50,5,2,2018-11-27,0.22,1,0 +22062320,Large comfy Clean Bedroom in Brooklyn,6600911,Cristina,Brooklyn,Bensonhurst,40.61224,-73.98563,Private room,35,3,1,2017-12-31,0.05,2,61 +22062492,Studio Apt -Upper East Side,94543911,Gabrielle,Manhattan,Upper East Side,40.77176,-73.94943,Entire home/apt,115,2,2,2019-01-01,0.26,1,0 +22062860,"Light-filled, luxury condo with stunning views",737515,Joseph,Brooklyn,Greenpoint,40.72915,-73.95813,Entire home/apt,275,13,0,,,1,0 +22063652,Charming Central Park Studio Awaits!,161160095,Walter,Manhattan,Upper West Side,40.78726,-73.96867,Entire home/apt,170,3,42,2019-07-01,2.19,1,4 +22063918,25 minutes to Midtown NYC- Entire large apartment,2323561,Herminia,Queens,Elmhurst,40.74475,-73.88266,Entire home/apt,90,2,8,2019-01-02,0.43,1,0 +22064022,Cozy 1BR near the Brooklyn Navy Yard,16753102,Simon,Brooklyn,Fort Greene,40.6978,-73.97682,Entire home/apt,130,4,8,2019-01-06,0.43,1,0 +22064197,Upper West Side Central Park apartment,20153029,Tal,Manhattan,Upper West Side,40.77244,-73.98043,Entire home/apt,190,7,0,,,1,0 +22064262,Spacious beautiful studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74873,-73.97664,Entire home/apt,150,30,5,2019-04-06,0.40,50,364 +22064793,Classy Quiet Studio in LES!,611408,Geraldine,Manhattan,Lower East Side,40.71542,-73.98403,Entire home/apt,143,7,0,,,1,0 +22064879,"Bright, spacious, classic Manhattan apartment",13285212,Alex,Manhattan,Upper East Side,40.77775,-73.94957,Entire home/apt,200,5,0,,,1,0 +22064923,1 Room in a 5-room apartment in Harlem,95740953,Jeff,Manhattan,Harlem,40.82887,-73.9487,Private room,55,2,3,2018-01-02,0.16,1,0 +22064927,溫馨大套房,161172539,Rui Guang,Queens,College Point,40.7806,-73.84198,Private room,59,1,92,2019-07-04,5.01,1,79 +22065495,Huge bedroom in a renovated apt (females only!),43960739,Eliana,Manhattan,Washington Heights,40.84345,-73.94079,Private room,65,3,21,2019-05-27,1.12,2,1 +22066317,1br - Room Sublet (From Dec 13) (Upper West Side),35986301,Angie,Manhattan,Upper West Side,40.79722,-73.96205,Private room,50,5,1,2017-12-03,0.05,1,0 +22066430,Chic Williamsburg Mid-Century Apartment,20604809,Houman,Brooklyn,Williamsburg,40.71305,-73.95995,Entire home/apt,148,2,11,2019-06-23,0.58,1,64 +22066551,Big Sunny Harlem Bedroom Furnished (EASTER WEEK!),19900075,Taylor,Manhattan,Harlem,40.82393,-73.93947,Private room,55,7,0,,,1,35 +22066635,2 bedrooms apartment in Williamsburg- Brooklyn,9831905,Alice,Brooklyn,Williamsburg,40.71793,-73.95772,Entire home/apt,230,7,0,,,1,0 +22066865,Midtown escape,76728828,Jenna,Manhattan,Murray Hill,40.74696,-73.9746,Entire home/apt,250,2,2,2018-10-14,0.11,1,0 +22066893,Sweet 1 bedroom apt in 1881 Brooklyn Brownstone,5480385,Daniel,Brooklyn,Park Slope,40.67812,-73.9771,Entire home/apt,200,4,0,,,1,0 +22067396,Sunny Brooklyn Brownstone apartment,28019842,Morgan,Brooklyn,Clinton Hill,40.6938,-73.96963,Entire home/apt,100,2,0,,,1,0 +22067406,Incredible Newly Renovated Two-Bedroom Apartment,93487618,David,Brooklyn,Dyker Heights,40.62643,-74.0072,Entire home/apt,90,2,55,2019-06-22,2.85,2,285 +22067480,"Private Rm in trendy Jackson Hts, Qns, 10m to LGA",73826443,Elizabeth,Queens,Jackson Heights,40.75153,-73.88964,Private room,120,1,4,2019-04-07,0.21,1,0 +22067499,Live in Williamsburg - Only 2 stops from Manhattan,22758387,Roy,Brooklyn,Williamsburg,40.71816,-73.95031,Private room,47,1,32,2018-12-16,1.73,1,0 +22067764,Williamsburg - great view and elevator into apt,24051464,Martin,Brooklyn,Williamsburg,40.71811,-73.94414,Private room,75,1,1,2017-12-12,0.05,1,0 +22067826,Home Away From Home,161184313,Kristina,Brooklyn,Greenpoint,40.72977,-73.9525,Private room,80,5,19,2019-06-15,1.28,2,95 +22068519,Cozy guest room with private bath in trendy duplex,12795683,Anne-Laure,Brooklyn,Gowanus,40.6832,-73.98736,Private room,110,2,1,2018-01-02,0.05,1,0 +22069581,Luxury Private room located in Fresh Meadows,137858241,Holyfield,Queens,Flushing,40.73067,-73.80691,Private room,45,1,9,2019-07-05,0.48,1,328 +22072423,3BR ON FINANCIAL DISTT~MINUTES FROM EAST RIVER,2856748,Ruchi,Manhattan,Financial District,40.7043,-74.00923,Entire home/apt,300,30,0,,,49,346 +22073571,Calm 1 bedroom right at Tompkins Square Park,9320996,Virginia,Manhattan,East Village,40.72508,-73.97978,Entire home/apt,150,3,2,2018-01-02,0.11,1,0 +22073638,Large Studio in Manhattan Close to Everything!,135257383,Brian,Manhattan,Harlem,40.82771,-73.94699,Entire home/apt,80,5,1,2018-01-02,0.05,1,0 +22074303,1 BR w/Kit Wyndham 45 Midtown- Great Location!,21844834,Charlene,Manhattan,Midtown,40.75228,-73.97195,Entire home/apt,350,4,0,,,1,0 +22075497,"Family apartment in NYC, ideal for kids.",161262280,Anna,Brooklyn,Park Slope,40.67443,-73.98367,Entire home/apt,250,5,4,2018-11-25,0.22,1,0 +22075971,Bright and Sunny Room in Williamsburg,20827165,Melissa,Brooklyn,Williamsburg,40.71684,-73.9451,Private room,57,2,27,2019-06-17,2.89,2,80 +22076192,Bed-Stuy modern private room near Williamsburg,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69294,-73.9398,Private room,50,30,3,2018-06-02,0.17,10,364 +22076359,Bohemian 3 bedroom brownstone duplex in Brooklyn,161268152,Maytal And Ken,Brooklyn,Clinton Hill,40.6838,-73.96176,Entire home/apt,399,1,42,2019-06-09,2.25,2,308 +22076961,Cozy apartment near Central Park,23254491,Klara,Manhattan,East Harlem,40.7901,-73.95053,Entire home/apt,132,1,109,2019-06-23,5.67,2,12 +22077540,"Cozy home in charming, central Fort Greene",6123811,Sherry,Brooklyn,Fort Greene,40.68892,-73.97749,Entire home/apt,150,2,11,2019-06-13,1.46,1,0 +22077632,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70483,-73.91433,Private room,40,3,6,2018-08-29,0.32,2,0 +22077789,Queen Bed + Futon HUGE Sunny Master 1BR/Priv Bath,32451588,Paul,Manhattan,Upper West Side,40.80049,-73.96629,Private room,150,2,0,,,1,0 +22077920,Spacious appartment on Upper West Side,17322363,Luis,Manhattan,Morningside Heights,40.80608,-73.96397,Entire home/apt,189,10,2,2017-12-30,0.10,1,0 +22078370,Stunning Modern Eco West Village 3 Floor Townhome!,2415163,R,Manhattan,West Village,40.73247,-74.00378,Entire home/apt,400,3,17,2019-06-22,0.88,1,37 +22078453,Greenpoint Getaway!,15021288,Josh,Brooklyn,Greenpoint,40.7268,-73.94072,Entire home/apt,65,24,1,2018-01-08,0.05,1,0 +22078678,Room in NY apartment near LGA,126489138,Candria,Queens,East Elmhurst,40.76008,-73.85966,Private room,100,2,0,,,1,0 +22078755,Bohemian East Village Apartment,50292311,Brian,Manhattan,East Village,40.72837,-73.98546,Entire home/apt,250,4,17,2019-05-28,1.10,1,5 +22078785,AMAZING private room in 2bed lower east side apt,3562795,Rachel,Manhattan,Lower East Side,40.71441,-73.98655,Private room,100,4,0,,,1,0 +22078828,Bushwick Brooklyn En Suite in Artist Loft Bldg,61989330,Zanni,Brooklyn,Williamsburg,40.70683,-73.93312,Private room,51,2,2,2018-01-01,0.10,1,0 +22079387,Boutique Luxury in the Heart of Chelsea,148107543,Mario,Manhattan,Chelsea,40.74494,-73.99762,Entire home/apt,299,2,30,2019-05-25,1.57,1,274 +22080281,Cute and Cozy Apt in Soho,37687663,Amy,Manhattan,Lower East Side,40.72154,-73.99331,Private room,125,28,1,2018-07-29,0.09,1,0 +22080826,Spacious 1BR in trendy Brooklyn from 12/12-1/12,3770299,Michelle,Brooklyn,Clinton Hill,40.69284,-73.96824,Entire home/apt,150,15,0,,,1,0 +22081741,Large Sun-filled room in beautiful brownstone home,2738676,Sarah,Brooklyn,Bedford-Stuyvesant,40.68748,-73.93048,Private room,65,5,2,2018-09-01,0.10,1,0 +22081871,Artsy 2BR Home w/ High Ceilings + Brick Walls,19909719,Danny,Brooklyn,Greenpoint,40.72397,-73.94695,Entire home/apt,295,7,1,2018-01-04,0.05,2,0 +22081938,East Harlem Room(#2) on Madison Avenue,159655531,Kelvin,Manhattan,East Harlem,40.80147,-73.94451,Private room,60,3,40,2019-07-01,2.11,2,78 +22082124,Gorgeous 1 bdr 1.5bath on the Upper East Side,4865463,Woody,Manhattan,Upper East Side,40.77445,-73.94783,Entire home/apt,195,6,0,,,1,0 +22082423,Large open 1 bedroom near Prospect Park.,44021436,L,Brooklyn,Prospect-Lefferts Gardens,40.66158,-73.95987,Entire home/apt,80,2,14,2019-06-23,0.83,1,0 +22082514,Brooklyn private room&balcony,58633574,Luna Maria,Brooklyn,Bedford-Stuyvesant,40.69818,-73.94154,Private room,75,2,7,2019-05-04,0.39,1,11 +22082903,Studio Sanctuary in Landmark Brownstone,156047478,Doron,Manhattan,Harlem,40.8048,-73.94951,Entire home/apt,91,30,8,2019-06-13,0.47,2,216 +22083268,"tiny, tiny room in Bushwick",16856181,David,Brooklyn,Bushwick,40.68958,-73.91393,Private room,30,7,3,2019-01-04,0.15,1,0 +22083314,Great studio apt in Brooklyn! 15 min to Manhattan,24374791,Emelie,Brooklyn,Bedford-Stuyvesant,40.67944,-73.95238,Entire home/apt,57,8,0,,,2,0 +22083540,Cozy 2br in the heart of Clinton Hill in Brooklyn,11365202,Carrie,Brooklyn,Clinton Hill,40.68882,-73.96049,Entire home/apt,160,3,38,2019-06-20,1.99,1,2 +22084212,The West Village Triangle Suite,159586124,Malcolm,Manhattan,Chelsea,40.73851,-73.99746,Entire home/apt,400,4,1,2017-12-16,0.05,1,2 +22084321,"Gorgeous, Sunny LES/Chinatown Apartment",1472745,Melinda,Manhattan,Chinatown,40.71346,-73.99141,Private room,100,2,9,2018-02-09,0.47,1,0 +22084405,Sunny Charming Private 2BR Apartment in UES,149303542,Jasmine,Manhattan,Upper East Side,40.77752,-73.94647,Private room,149,4,0,,,1,0 +22085185,Beautiful large one bedroom in downtown Brooklyn,13775180,Rachel,Brooklyn,Downtown Brooklyn,40.69256,-73.99085,Entire home/apt,250,5,0,,,1,0 +22085754,Cozy Private One Bedroom,38609489,Kathleen,Brooklyn,Bushwick,40.70032,-73.92985,Private room,40,4,1,2017-12-29,0.05,1,0 +22085782,Large luxury apartment in Tribeca,107955341,Michelle,Manhattan,Tribeca,40.71503,-74.00702,Entire home/apt,400,2,5,2019-05-06,0.39,1,0 +22085892,THANKSGIVING IN NYC,7241732,Jason,Queens,Woodside,40.74602,-73.90604,Private room,55,1,0,,,1,0 +22086518,West Village + Water Views,3484157,Lauren,Manhattan,West Village,40.73983,-74.009,Private room,250,2,2,2018-03-15,0.11,1,0 +22086968,Rustic Meets Shabby Chic- Georgous 2 Bedroom,161344095,Sheena,Bronx,Van Nest,40.84279,-73.86527,Entire home/apt,100,2,98,2019-06-24,5.10,1,89 +22087093,Newly furnished & renovated rooms 5 min from nyc.,103345244,Jeff,Bronx,Kingsbridge,40.88447,-73.90157,Private room,55,1,14,2019-05-26,0.76,2,127 +22087812,Cozy Studio with Private Entrance,161352782,Linda,Staten Island,Clifton,40.61603,-74.08666,Entire home/apt,65,1,70,2019-06-28,8.43,1,300 +22088100,"Bright and Warm place - +only 17min to Central Park",161351021,V,Queens,Woodside,40.75593,-73.90268,Private room,425,1,11,2018-03-01,0.58,2,0 +22088180,"Comfy Private Bedroom, Patio + 20min to Midtown",28458209,Brian & Jonathan,Manhattan,Harlem,40.82908,-73.94671,Private room,49,3,19,2019-06-28,0.99,2,211 +22088276,Spacious and peaceful apartment in Nolita / SoHo,31880119,Zach,Manhattan,Nolita,40.72382,-73.99541,Entire home/apt,175,2,9,2018-08-26,0.47,1,0 +22088301,Williamsburg 3-Bed Townhouse w/ Garden by L Train,2496299,Dylan,Brooklyn,Williamsburg,40.71159,-73.94514,Entire home/apt,129,5,19,2019-06-29,1.03,1,295 +22088409,Bronx Native Son Apartment,37260534,Cory,Bronx,Norwood,40.87491,-73.87575,Private room,87,2,1,2017-12-20,0.05,1,0 +22088615,Quirky East Williamsburg/Bushwick Artist Duplex,109195230,Janique,Brooklyn,Williamsburg,40.70471,-73.94151,Private room,42,4,7,2018-10-03,0.37,1,0 +22088784,"Bright, creative, happy apartment in heart of BK!",161360183,Sarah,Brooklyn,Gowanus,40.68015,-73.98795,Entire home/apt,115,3,2,2018-03-02,0.11,1,0 +22089194,"Cozy 2BR in heart of SoHo near NYU, WSP, Subway",23909694,Anh,Manhattan,Greenwich Village,40.72855,-73.99767,Entire home/apt,150,3,3,2018-01-15,0.16,2,0 +22089422,Large and nice private room in Park Slope!,5690047,Silvio,Brooklyn,Park Slope,40.66883,-73.98099,Private room,50,3,2,2018-05-28,0.15,1,0 +22090790,26TH FLR VIEWS! LINCOLN SQR- MODERN 2BR 2 BATH,76104209,Rated,Manhattan,Upper West Side,40.77055,-73.98613,Entire home/apt,374,60,0,,,33,290 +22095324,Williamsburg Gem with Private Bathroom,46396810,Chloe,Brooklyn,Williamsburg,40.70934,-73.95243,Private room,70,7,1,2017-12-30,0.05,1,0 +22096182,MONTHLY RENTAL Victorian House in Brooklyn,51734800,Laura,Brooklyn,Flatbush,40.63074,-73.96418,Private room,50,20,1,2019-01-30,0.19,2,358 +22096640,Elegant Room in Jazzy Harlem Neighborhood,24625767,Isaac,Manhattan,Harlem,40.82394,-73.94432,Private room,75,30,2,2018-09-24,0.10,1,0 +22096731,Amazing room for NYC holiday season! Dec. 20-28,10775192,Joshua,Brooklyn,Crown Heights,40.66838,-73.96,Private room,45,1,0,,,2,88 +22097438,Cozy Flat - Walk to Central Park,19385850,Jonathan,Manhattan,Upper East Side,40.78281,-73.94516,Entire home/apt,143,2,88,2019-06-25,4.90,1,29 +22098233,Contemporary 1 Bedroom off of Union Square,161432983,Hannah,Manhattan,East Village,40.73215,-73.98804,Entire home/apt,170,1,1,2017-12-22,0.05,1,0 +22098435,Cozy Bright Private Room - Prime Brooklyn,23208262,Vanessa,Brooklyn,Williamsburg,40.71424,-73.94283,Private room,42,20,0,,,1,0 +22099135,Comfy & Cozy Private Room in Bushwick,109852649,Eva,Brooklyn,Bushwick,40.69984,-73.93899,Private room,65,5,0,,,1,0 +22099266,Aquamarine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69459,-73.95551,Private room,65,2,22,2019-06-20,1.64,34,289 +22099954,Cozy 2 Bedroom in Astoria,23385082,Theresa,Queens,Astoria,40.76516,-73.92281,Entire home/apt,112,6,2,2018-03-12,0.11,1,0 +22100149,2 Story Loft Style 2 Bedroom 2 Bathroom on Park,20689561,Sara,Brooklyn,Sunset Park,40.64688,-74.00209,Entire home/apt,150,3,5,2018-12-31,0.27,1,3 +22100318,Gorgeous Pre-War Two-Bedroom by the Hudson,13997669,Daniel,Manhattan,Washington Heights,40.85084,-73.93905,Entire home/apt,200,5,3,2018-08-23,0.26,1,30 +22100911,Upper West Side Manhattan,161446165,Simone,Manhattan,Upper West Side,40.80309,-73.96568,Private room,100,4,1,2018-12-29,0.16,1,341 +22100970,Luxurious 1 Bedroom Fully Renovated,61391963,Corporate Housing,Manhattan,Kips Bay,40.74241,-73.97954,Entire home/apt,142,30,8,2019-04-01,0.42,91,281 +22101002,Antique Suite,158034247,Christine,Brooklyn,Gravesend,40.58985,-73.98482,Private room,55,2,25,2019-03-21,1.34,1,0 +22101034,Cool Out/Private large ensuite nearJFK sleeps 4,94713722,Joy,Queens,Springfield Gardens,40.68857,-73.75488,Private room,50,2,23,2019-06-17,1.40,4,348 +22101044,Luxury 2 Bedroom - Nicest renovations and quality,61391963,Corporate Housing,Manhattan,Murray Hill,40.74975,-73.97699,Entire home/apt,185,30,0,,,91,0 +22101696,"CLEAN, BRIGHT, and MODERN 3 bedroom Brooklyn apt.",20951849,Elaine,Brooklyn,Bedford-Stuyvesant,40.69224,-73.93219,Entire home/apt,185,1,90,2019-07-01,4.68,2,181 +22101914,Huge room in Bushwick,81466660,Dustin,Brooklyn,Bushwick,40.69608,-73.93133,Private room,45,5,1,2018-12-28,0.16,1,0 +22101965,"2 bedrooms and queen sofa bed, Close to Manhattan",161458034,Nancy,Brooklyn,Windsor Terrace,40.65136,-73.97689,Entire home/apt,160,3,37,2019-07-02,1.95,1,71 +22102108,Great apartment in the heart of Manhattan!,20905481,Jamie And John,Manhattan,Hell's Kitchen,40.76028,-73.99014,Entire home/apt,179,1,125,2019-06-26,6.51,1,201 +22102113,Room in Astoria NewYork,88547794,Felicita,Queens,Astoria,40.76717,-73.90994,Private room,55,7,7,2019-06-11,0.49,1,365 +22102905,Make this luxury apartment your next stop!,59477827,Erik,Manhattan,Murray Hill,40.74785,-73.96967,Private room,195,11,0,,,1,0 +22103302,"Sun-filled, Modern Bedroom in Williamsburg.",4455011,Kéren-Or,Brooklyn,Williamsburg,40.70511,-73.94474,Private room,74,5,0,,,1,0 +22103438,Dee's Rest Easy,161468583,Dee,Brooklyn,Flatbush,40.64429,-73.95732,Entire home/apt,22,2,35,2019-04-29,1.83,1,312 +22105065,Sunny One bedroom w. Outdoor Space - Williamsburg,983477,Kaylan,Brooklyn,Greenpoint,40.71951,-73.95277,Entire home/apt,175,2,9,2018-09-23,0.56,1,0 +22105520,Designer Tudor Townhouse with Chef's Kitchen!,3663769,Joshua,Brooklyn,Crown Heights,40.67313,-73.9448,Entire home/apt,225,1,16,2019-07-07,0.86,1,1 +22106002,Fantastic Room - King Bed and a Private Rooftop,18605299,Isaac,Manhattan,Chelsea,40.74688,-73.99657,Private room,99,5,2,2018-01-31,0.10,1,0 +22107023,Chic Luxury Garden Apartment in BedStuy Brooklyn,36082598,Genevieve,Brooklyn,Bedford-Stuyvesant,40.68316,-73.95033,Entire home/apt,150,2,51,2019-06-22,2.65,2,231 +22107142,Your NYC HOME! LRG 1 BED APT 20min from Manhattan,161497828,Matias,Brooklyn,Prospect-Lefferts Gardens,40.65534,-73.95644,Entire home/apt,100,2,2,2018-01-02,0.11,1,95 +22107189,"Beautiful 2-bdrm top flr of brownstone, sunny",160647707,John,Brooklyn,Bedford-Stuyvesant,40.68518,-73.95328,Entire home/apt,88,3,4,2018-03-31,0.21,1,0 +22107368,Entire Apartment Available in Astoria,103170539,Lalit,Queens,Astoria,40.76824,-73.91135,Private room,29,5,11,2018-06-15,0.59,1,156 +22107371,3 br duplex Apt with rooftop in Williamsburg,28994468,Denis,Brooklyn,Williamsburg,40.71298,-73.9485,Entire home/apt,400,4,1,2018-01-01,0.05,1,0 +22107514,Spacious Prospect Park Studio,128466802,Rasha,Brooklyn,Prospect-Lefferts Gardens,40.661,-73.9598,Entire home/apt,85,30,10,2019-01-04,0.63,1,2 +22108130,UWS - Simple & Bright - 1BR,106837455,Lisa,Manhattan,Upper West Side,40.78456,-73.98117,Entire home/apt,140,30,0,,,8,0 +22108302,Beautiful Bedroom By the Children's Museum,123605746,Brian,Brooklyn,Crown Heights,40.6752,-73.94366,Private room,65,1,0,,,1,0 +22108306,MACON MEMORIES..** SUMMER SPECIAL***,95485067,Adelle,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94153,Entire home/apt,150,1,43,2019-07-07,2.32,1,267 +22108932,"Cosy private bedroom in Inwood 4 min to train 1,A",142724947,Yusra,Manhattan,Inwood,40.87328,-73.91458,Entire home/apt,70,21,7,2019-01-15,0.38,1,156 +22109528,Studio apartment with a view!,161519048,Ashleigh,Manhattan,Murray Hill,40.7487,-73.98123,Entire home/apt,250,4,0,,,1,0 +22114333,Sun & Central Park,102011406,Ler,Manhattan,East Harlem,40.78977,-73.9476,Private room,99,4,16,2019-05-12,0.87,1,130 +22115009,Shared room with Bed Tent (Privacy Pop).,44620317,Claudia,Queens,Corona,40.74061,-73.85651,Shared room,45,1,8,2018-09-28,0.53,4,347 +22116565,Holiday sublet: Columbus circle apartment,46094052,Soumya,Manhattan,Midtown,40.76739,-73.98225,Entire home/apt,189,7,3,2018-02-23,0.16,1,0 +22117590,Renovated Art Building Bushwick,161300062,Daniela,Brooklyn,Bushwick,40.69164,-73.90577,Private room,70,1,9,2018-06-24,0.49,1,0 +22117898,Brooklyn city room,160495098,Miller,Brooklyn,East Flatbush,40.63479,-73.94848,Private room,27,2,4,2018-09-29,0.23,5,0 +22117971,Private Room in Sunny South Williamsburg location,45869461,Christina,Brooklyn,Williamsburg,40.7098,-73.9545,Private room,80,4,2,2018-01-18,0.11,1,0 +22117983,Manhattan Club 1 Bedroom 2 Bath!,101430405,Moose,Manhattan,Midtown,40.76511,-73.98046,Entire home/apt,450,3,0,,,1,0 +22119092,HUGE Private 1 Bedroom in Shared Park Slope Apt,150044472,Amar,Brooklyn,Windsor Terrace,40.6597,-73.98318,Private room,75,14,0,,,2,0 +22119373,Well lit and modern 1BR condo in LES,7112420,Lizzie,Manhattan,Chinatown,40.71629,-73.99066,Entire home/apt,175,2,10,2018-10-01,0.54,1,0 +22119375,Hart House - Calm Space in Bed-Stuy Activist Home,63935474,Tok,Brooklyn,Bedford-Stuyvesant,40.69538,-73.94657,Private room,35,2,4,2018-01-01,0.21,1,0 +22119708,Cozy room in Brooklyn <3,3043896,Carmen,Brooklyn,Bedford-Stuyvesant,40.68611,-73.95171,Private room,41,7,1,2017-12-06,0.05,1,0 +22120170,Cozy apartment,161599491,Victor,Brooklyn,Borough Park,40.61984,-73.97872,Shared room,50,30,8,2018-06-06,0.42,1,179 +22120346,Bright Private Bedroom in Bushwick.,8739627,Tim,Brooklyn,Bushwick,40.69545,-73.91153,Private room,40,1,0,,,1,0 +22120433,Spacious studio in Williamsburg with back patio!,5610754,Charlotte,Brooklyn,Williamsburg,40.70778,-73.94411,Entire home/apt,150,7,14,2019-05-14,0.83,1,128 +22120954,Newly Renovated 2 Bedroom Apt Sleeps 6,26800283,Marko,Manhattan,Upper East Side,40.77267,-73.94735,Entire home/apt,400,2,1,2018-07-10,0.08,1,0 +22121191,Private Bedroom w/ Easy Access to Manhattan,160461605,Matthew,Manhattan,East Harlem,40.8066,-73.9408,Private room,85,1,6,2018-05-12,0.31,1,0 +22122084,Charming Crown Heights Apartment,2244532,Hazel,Brooklyn,Crown Heights,40.67666,-73.94087,Private room,100,5,1,2018-09-22,0.10,1,0 +22122354,3 Minutes to Central Park ❤︎ of NYC!,161616186,Santiago,Manhattan,Upper West Side,40.78233,-73.98415,Entire home/apt,150,3,20,2019-06-22,1.08,1,36 +22122388,Fully Furnished Spacious Home for 7 People,99202586,Thelma,Staten Island,Randall Manor,40.6311,-74.12816,Entire home/apt,149,2,3,2019-06-16,0.34,5,354 +22122470,New Luxury Harlem Condo 2 bedrooms with Garden,161592215,Mukaram,Manhattan,East Harlem,40.80209,-73.93584,Entire home/apt,210,6,31,2019-06-21,1.68,2,276 +22122614,Spacious Family Space - 2 Bedrooms,161617875,Tyge,Manhattan,Washington Heights,40.85244,-73.9405,Entire home/apt,150,2,30,2019-06-16,1.61,2,109 +22122723,Beautiful room in Manhattan,43719554,Bersabel,Manhattan,Harlem,40.82257,-73.94665,Private room,50,16,0,,,1,0 +22123573,Sunny brownstone greenhouse in Bedford Stuyvesant,4967965,Allison,Brooklyn,Bedford-Stuyvesant,40.68263,-73.92264,Entire home/apt,350,3,42,2019-06-23,2.23,1,275 +22123603,"Charming, quiet room in heart of the East Village",1493800,Nicholas,Manhattan,East Village,40.72341,-73.98534,Private room,130,4,25,2019-05-07,1.35,1,0 +22124017,Fashion and Hotel Couple’s Hells Kitchen Apartment,68358695,Craig,Manhattan,Hell's Kitchen,40.75803,-73.99853,Entire home/apt,285,3,0,,,1,0 +22124086,Airy Brooklyn Pad,47423579,Analise,Brooklyn,Flatbush,40.64366,-73.95794,Shared room,45,2,1,2017-12-07,0.05,1,0 +22125138,New York room,161638092,Sergio,Bronx,Belmont,40.85828,-73.88559,Private room,30,1,3,2018-01-08,0.16,1,0 +22125701,Beautiful Bed-stuy Bedroom,11769840,Amber,Brooklyn,Bedford-Stuyvesant,40.68642,-73.92457,Private room,50,2,42,2019-06-11,2.28,2,53 +22126048,Cozy Room #2 in Brooklyn Home 15 Min from JFK,126110540,Janine,Brooklyn,East New York,40.66379,-73.88177,Private room,50,1,43,2019-07-01,2.26,3,89 +22126122,Cozy bright apartment,1931414,Vera,Manhattan,Upper West Side,40.79799,-73.97018,Private room,250,6,1,2018-07-13,0.08,1,55 +22129871,Soho/East Village One Bed,24379402,Ghazi,Manhattan,East Village,40.72341,-73.98941,Entire home/apt,110,7,2,2019-06-15,0.20,1,0 +22130055,Queens Home short walk to Subway- 2 bedroom 2 bath,59089796,Sara,Queens,Richmond Hill,40.70248,-73.81937,Entire home/apt,125,2,31,2019-06-25,1.65,2,62 +22130220,Dean St,10004299,Morgan,Brooklyn,Prospect Heights,40.682,-73.97231,Private room,80,2,0,,,1,0 +22131111,"Astoria lovely Private Room, Steinway, LGA Airport",154108693,Jasmine,Queens,Astoria,40.75859,-73.91748,Private room,70,1,0,,,1,0 +22131954,Lux Midtown apartment.,161671480,Louisa,Manhattan,Hell's Kitchen,40.76147,-73.99908,Private room,150,1,0,,,1,0 +22134428,"Spacious living room, walk-in closet",159726656,Uttara,Manhattan,Upper West Side,40.78898,-73.97418,Shared room,53,3,7,2018-12-31,0.38,1,0 +22135247,Private Room in Bed-Stuy/Bushwick,161613483,Katelyn,Brooklyn,Bedford-Stuyvesant,40.68594,-73.92394,Private room,55,4,18,2018-10-02,0.99,1,0 +22139766,Luxurious Brooklyn Heights Duplex with Terrasse,88801066,Crina,Brooklyn,Brooklyn Heights,40.6936,-73.9935,Entire home/apt,647,5,4,2019-04-20,0.25,1,166 +22139932,Harlem Oasis,18730893,Seth,Manhattan,Harlem,40.82547,-73.94092,Private room,95,1,0,,,1,0 +22142173,Industrial Brooklyn Loft Style Apt,844422,Lynn,Brooklyn,Greenpoint,40.72684,-73.94002,Entire home/apt,109,4,0,,,1,0 +22142447,Downtown Penthouse with Private Outdoor Terrace,1694701,Shahriq And Patty,Manhattan,Chelsea,40.73989,-73.99863,Entire home/apt,485,4,1,2017-12-29,0.05,1,0 +22142575,Spacious sunny one bedroom apartment with balcony,1776666,Assaf,Brooklyn,Williamsburg,40.71106,-73.94884,Entire home/apt,160,5,15,2019-05-17,0.97,1,83 +22142636,Sunny Modern newly renovated 1BR apartment,40875021,Scott,Manhattan,East Harlem,40.79315,-73.93385,Entire home/apt,150,1,14,2019-04-18,0.76,3,353 +22143436,Chelsea 1 Bedroom Gem!,22967048,Marie,Manhattan,Chelsea,40.75206,-73.99829,Entire home/apt,200,3,43,2019-06-29,2.34,1,63 +22143750,Cozy Double Room in Williamsburg,15338067,Giulia,Brooklyn,Williamsburg,40.71198,-73.9582,Private room,58,4,9,2018-12-29,0.48,1,0 +22144662,Spacious Studio with Private Roof,73358102,Alex,Manhattan,Chelsea,40.75003,-73.99647,Entire home/apt,109,2,76,2019-06-14,3.95,1,4 +22145643,"Cozy Manhattan Bedroom, Same Street as Subway!",16154405,Leslie,Manhattan,Upper East Side,40.78314,-73.94659,Private room,75,1,45,2019-06-27,2.34,1,7 +22146533,"Cozy, bohemian, PRIVATE bedroom in Manhattan NYC",10385600,Kaitlin,Manhattan,Washington Heights,40.84243,-73.93693,Private room,50,1,1,2017-12-10,0.05,1,0 +22147414,BEAUTIFUL HUDSON RIVER VIEW,19577205,Neide,Manhattan,Washington Heights,40.8335,-73.9468,Entire home/apt,215,4,2,2019-01-02,0.11,1,0 +22147426,Prime Harlem Condo -Bright!- with Outdoor Space,161742462,Rashida,Manhattan,Harlem,40.80814,-73.94238,Entire home/apt,249,6,40,2019-05-30,2.35,1,293 +22147647,ULTRA CHIC 2 BEDROOM GRAND CENTRAL,61391963,Corporate Housing,Manhattan,Murray Hill,40.74933,-73.9767,Entire home/apt,200,30,0,,,91,310 +22148073,Nice new bedroom Near D train and Maimonides in BK,5853457,Stanley,Brooklyn,Borough Park,40.6421,-73.99732,Private room,56,1,12,2019-05-29,0.65,4,348 +22148115,Modern Williamsburg Apt w/ Spectacular Views,18587989,Cem,Brooklyn,Williamsburg,40.70979,-73.96631,Entire home/apt,120,1,0,,,1,0 +22148416,The Skyline Loft — Incredible Views Near 2 Trains,14364462,Ashley,Brooklyn,Bushwick,40.70597,-73.92091,Entire home/apt,127,3,9,2019-04-24,0.49,2,34 +22150519,Cozy suite in a Townhouse,26411218,Desmond,Queens,Elmhurst,40.73491,-73.888,Entire home/apt,83,3,77,2019-07-07,4.05,2,22 +22150523,"Entire Modern Home, Amazing Location",148237535,Jermaine,Brooklyn,Canarsie,40.64017,-73.9105,Entire home/apt,290,3,4,2019-05-27,0.39,4,364 +22150956,Brooklyn apt,28110419,Daniel,Brooklyn,Boerum Hill,40.68734,-73.98633,Entire home/apt,150,13,0,,,1,0 +22151022,10mins to LGA /20 to the city /5 min to N train,139867352,Oscar,Queens,Ditmars Steinway,40.78021,-73.91015,Private room,39,1,43,2019-06-23,2.28,2,351 +22151067,"30 mins from Manhattan, Clean room in Queens",161743285,Elena,Queens,Rego Park,40.73266,-73.85447,Shared room,27,60,1,2017-12-23,0.05,1,0 +22151092,Comfy New Bedroom near D line Fort Hamilton PKWY,5853457,Stanley,Brooklyn,Borough Park,40.64226,-73.99706,Private room,56,1,12,2019-03-11,0.65,4,333 +22151598,"Tasteful, spacious and sunny place, gorgeous Manhattan views!",342760,Helo.,Manhattan,Upper East Side,40.76703,-73.95553,Entire home/apt,200,6,4,2018-08-08,0.34,1,5 +22151798,Apartment in South Bronx,45553025,Jose H.,Bronx,Mott Haven,40.81037,-73.91946,Entire home/apt,65,2,47,2018-11-25,2.52,1,0 +22152232,Beautiful room with comfy bed in Bushwick,10018530,Nicole,Brooklyn,Bushwick,40.70328,-73.91429,Private room,50,2,2,2018-07-19,0.10,1,0 +22152376,Newly Renovated Gem | 1 Block to Subway | 2BD/2BA,161770518,Tamer,Brooklyn,East Flatbush,40.64701,-73.94965,Entire home/apt,195,2,65,2019-06-30,3.51,1,236 +22152785,Spacious & Sophisticated in Chelsea,8456422,Abee,Manhattan,Chelsea,40.74009,-73.99608,Entire home/apt,625,2,10,2018-12-27,0.59,1,0 +22153412,Modern Chic Private Room in Gramercy,14613015,Ava,Manhattan,Gramercy,40.73442,-73.98383,Private room,69,4,4,2018-12-17,0.21,1,0 +22153425,Cozy & comfortable apt by Prospect Park,161784847,Jerry,Brooklyn,Flatbush,40.65229,-73.96551,Entire home/apt,125,2,31,2019-06-29,1.67,1,24 +22154118,Heart of Williamsburg - HUGE 1BR Apartment modern,16725099,Shawn,Brooklyn,Williamsburg,40.71644,-73.94807,Entire home/apt,160,2,1,2017-12-08,0.05,1,0 +22156875,Manhattan Studio in Prewar Building,161814450,Michael,Manhattan,Upper West Side,40.77806,-73.98225,Entire home/apt,195,3,20,2019-05-18,1.27,1,217 +22157675,Gorgeous Duplex 2 Bdrm in Prime Greenpoint,1927555,Rob,Brooklyn,Greenpoint,40.72612,-73.9532,Entire home/apt,250,4,1,2017-12-13,0.05,1,0 +22157683,Midtown East Apartment,127267474,Christopher,Manhattan,Midtown,40.75459,-73.96706,Entire home/apt,125,2,5,2018-04-08,0.26,1,0 +22157982,Large room w/ balcony - Williamsburg Warehouse,4152479,Conor,Brooklyn,Williamsburg,40.70851,-73.95318,Private room,100,4,1,2018-02-12,0.06,2,0 +22159096,Beautiful Brooklyn Apartment,26328221,Geoff,Brooklyn,Sunset Park,40.65413,-74.00242,Entire home/apt,180,2,19,2019-06-09,0.99,2,15 +22159309,One Bedroom Apartment by Central Park!,16219811,Emily,Manhattan,Harlem,40.8,-73.95056,Entire home/apt,175,4,3,2018-04-08,0.18,1,0 +22160718,Huge Beautiful Private Floor of Townhouse,4443213,Arielle,Brooklyn,Williamsburg,40.71276,-73.946,Private room,90,2,5,2018-07-01,0.33,1,0 +22160759,Comfortable Private Bedroom 10 min to Central Park,93691661,Rachel,Manhattan,Washington Heights,40.83515,-73.94226,Private room,50,2,67,2019-06-15,3.54,2,20 +22160989,Harlem Luxury Condo !New! 2 Full Bedrooms Balcony,161592215,Mukaram,Manhattan,East Harlem,40.8025,-73.93775,Entire home/apt,200,6,32,2019-06-01,1.73,2,251 +22161352,Comfy & quiet 1 BR - East Williamsburg,6484703,Sheila,Brooklyn,Williamsburg,40.7077,-73.94029,Entire home/apt,90,4,11,2019-05-21,0.59,1,3 +22161395,Sunny Urban Jungle,100675420,Mama Batata,Brooklyn,Bedford-Stuyvesant,40.69129,-73.9523,Private room,70,1,87,2019-07-05,4.58,1,8 +22161900,"New, spacious 1.5 BR Apt Wburg,BK w/ private patio",26494979,Carolyn,Brooklyn,Williamsburg,40.71591,-73.94693,Entire home/apt,115,3,4,2019-05-23,0.22,1,0 +22161977,Lower East Trendy Apartment,29343272,Charlotte,Manhattan,Lower East Side,40.72303,-73.98965,Private room,75,3,18,2018-11-25,0.96,1,0 +22162572,1BED 1 BATH /UPPER WEST SIDE /Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77605,-73.98833,Entire home/apt,190,30,4,2019-04-11,0.63,25,363 +22162915,2 Beds 1 Bath UPPER WEST SIDE/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77483,-73.98973,Entire home/apt,200,30,1,2018-10-12,0.11,25,0 +22163623,2 Bedrooms in Shared Family Home 15 Min frm JFK,126110540,Janine,Brooklyn,East New York,40.6639,-73.88173,Private room,125,1,12,2019-06-23,0.68,3,89 +22164005,COZY Private 1 Bedroom in Brooklyn !,116881616,June,Brooklyn,Bath Beach,40.60554,-74.01044,Private room,33,6,29,2019-05-27,1.53,2,32 +22164073,Entire Sunny Brooklyn Apt for Art & Cat-Lovers!,1444513,Erin,Brooklyn,Crown Heights,40.6697,-73.95831,Entire home/apt,130,2,15,2018-12-10,0.82,1,0 +22164078,Large Modern Chelsea Studio,35509609,Justin,Manhattan,Chelsea,40.7478,-73.99995,Entire home/apt,149,4,3,2019-01-23,0.32,1,0 +22164208,Artistic Loft by Union Square,274583,Lev,Manhattan,Gramercy,40.73702,-73.98824,Entire home/apt,195,3,2,2018-02-22,0.11,1,0 +22165461,Be a Brooklynite & be 3 stops away from Manhattan!,161900946,Kenne,Brooklyn,Sunset Park,40.63801,-74.01665,Entire home/apt,105,2,0,,,1,0 +22165628,Bottom Bunk in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72348,-73.94569,Shared room,40,2,7,2019-01-13,0.39,5,299 +22165795,Large room in Bedstuy brownstone,161903367,Kyle,Brooklyn,Bedford-Stuyvesant,40.68135,-73.94718,Private room,28,2,1,2018-01-01,0.05,1,0 +22165797,Brooklyn beautiful big room!,60365315,Mary,Brooklyn,Sheepshead Bay,40.60475,-73.95987,Private room,45,7,0,,,1,0 +22165957,Sun Drenched 1 Bedroom in Carroll Gardens,160660639,Annette,Brooklyn,Carroll Gardens,40.67666,-74.00055,Entire home/apt,68,1,62,2019-06-23,3.33,2,179 +22166055,"# 1 B Brooklyn NYC Apt close to metro subway, JFK",125914985,Myles,Brooklyn,East Flatbush,40.63439,-73.94397,Entire home/apt,150,6,57,2019-07-01,3.10,2,128 +22166650,Ditmas park lot,161910094,Brian,Brooklyn,Flatbush,40.63809,-73.96445,Private room,60,2,0,,,1,173 +22166900,Large 2 bedroom Moroccan oasis in the East Village,161915399,Lilia,Manhattan,East Village,40.72245,-73.98337,Entire home/apt,260,1,86,2019-05-24,4.59,1,259 +22167066,Spacious & Private Harlem/Washington Heights Room,126397762,Xavier,Manhattan,Harlem,40.82967,-73.93957,Private room,79,1,63,2018-11-27,3.28,3,51 +22169350,The Lovely Suite,83926842,Silvia,Manhattan,Midtown,40.74649,-73.98684,Entire home/apt,130,4,33,2019-06-16,1.76,1,354 +22169843,Perfect studio for your NYC trip,161943355,Nata,Manhattan,East Village,40.72388,-73.98411,Entire home/apt,90,5,21,2019-06-14,1.10,1,83 +22172728,Entire 1 Bedroom Apartment in Midtown Manhattan,40478687,Min,Manhattan,Murray Hill,40.75069,-73.97973,Entire home/apt,250,4,1,2018-01-01,0.05,1,0 +22173085,Spacious & Simple 1BR Apartment for the Holidays!,161971187,Jim,Manhattan,Inwood,40.86089,-73.92832,Entire home/apt,100,4,0,,,1,0 +22173625,Private ground floor apartment in Brooklyn,161976329,Chad Antonio,Brooklyn,East New York,40.6714,-73.87701,Entire home/apt,55,3,58,2019-06-09,3.02,1,57 +22173762,Newly renovated 3 BEDROOM in Astoria woodside NY,123136283,Niki,Queens,Astoria,40.76403,-73.90612,Entire home/apt,280,2,69,2019-06-27,3.68,1,307 +22173887,Greenpoint in my heart ,3297475,Guy,Brooklyn,Greenpoint,40.72458,-73.94122,Private room,43,3,3,2018-07-07,0.16,1,0 +22174455,Adorable Hamilton Heights Apartment,5132258,Jessica,Manhattan,Harlem,40.82434,-73.95066,Entire home/apt,200,3,14,2019-03-09,0.73,2,0 +22174482,Paradise in New York,161983650,Edmarine,Queens,Bayside,40.75236,-73.75519,Private room,41,2,2,2018-01-31,0.11,1,0 +22174923,Sunny Apartment in Trendy Bushwick,23257217,Laura,Brooklyn,Bushwick,40.70579,-73.9185,Entire home/apt,89,2,3,2019-05-28,0.77,1,25 +22175113,Cozy Room in Brooklyn- 2 blocks from subway!,9104749,Bibi,Brooklyn,Bedford-Stuyvesant,40.69134,-73.95551,Private room,50,3,15,2018-05-30,0.80,1,0 +22175249,Cozy Room is available in Nice apartment,161919000,Rana,Brooklyn,Sheepshead Bay,40.58568,-73.93536,Private room,85,3,0,,,1,0 +22175297,Incredibly cozy room close to Manhatan,133785513,Alena,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93705,Private room,42,1,92,2019-07-03,4.90,4,80 +22175513,Spacious Bed & Private Bath in Renovated Townhouse,3529175,Caroline & Adriaan,Brooklyn,Crown Heights,40.67096,-73.95261,Private room,85,2,34,2019-06-30,2.12,1,127 +22175928,"The CaptainsQuarters, Clean Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68502,-73.87547,Private room,45,2,31,2019-07-06,1.63,3,0 +22176026,Sofa bed/pull out couch in Living Room,126397762,Xavier,Manhattan,Harlem,40.83021,-73.94114,Shared room,39,1,7,2017-12-28,0.36,3,0 +22176062,Brand New Bedroom Near D line&Maimonides Hospital,5853457,Stanley,Brooklyn,Borough Park,40.64061,-73.99631,Private room,56,1,12,2019-05-30,0.81,4,321 +22176068,2-bedroom luxury apartment in the heart of Chelsea,161997330,Agustin,Manhattan,Chelsea,40.74221,-73.99626,Entire home/apt,295,9,2,2018-01-01,0.11,1,0 +22176096,"Entire 1BR APT,HEART of ASTORIA10mins to Manhattan",2413383,Nelson,Queens,Astoria,40.76432,-73.91885,Entire home/apt,110,2,7,2018-12-20,0.37,1,0 +22176542,Modern Comfort in West Village,162001851,Erica,Manhattan,West Village,40.73696,-74.00397,Entire home/apt,170,1,12,2018-05-11,0.65,1,0 +22176678,"Amazing 1 BR/BA in HARLEM, NY",110142237,Eric,Manhattan,Harlem,40.80487,-73.95752,Entire home/apt,90,3,32,2019-07-02,1.69,1,1 +22176782,Lovely Room in East Williamsburg,77792023,Hugo B.,Brooklyn,Bushwick,40.70391,-73.92593,Private room,40,2,4,2018-01-14,0.21,1,0 +22176831,JFK 2 Comfort 5 Mins from JFK Private Bedroom,156684502,Nalicia,Queens,Springfield Gardens,40.66158,-73.7705,Private room,50,1,341,2019-07-08,17.82,3,25 +22176896,One-Off Easter Holiday Deal in Cozy Gem,1664473,Cj,Brooklyn,Prospect-Lefferts Gardens,40.6589,-73.94975,Entire home/apt,120,4,0,,,1,0 +22177035,"Quiet, Comfy Bedroom in Prime Williamsburg",8750186,Peter,Brooklyn,Williamsburg,40.7207,-73.96087,Private room,69,7,0,,,1,0 +22177219,Private Big Room with Great Access!!!,162005440,Alba,Queens,East Elmhurst,40.76311,-73.89098,Private room,100,2,23,2019-06-08,1.23,1,95 +22177388,Historic Crown Heights Cute Sunny Bedroom,1834034,Brittney,Brooklyn,Crown Heights,40.67206,-73.93446,Private room,25,4,7,2018-06-04,0.37,1,174 +22178073,Tranquility Stay-cation with private pool,21963202,Journey,Queens,Jamaica Estates,40.7177,-73.78689,Entire home/apt,135,1,115,2019-07-03,6.80,2,138 +22179082,Inviting Brooklyn Studio,6399777,Jessamine,Brooklyn,Crown Heights,40.66863,-73.95046,Entire home/apt,120,3,3,2018-05-27,0.16,1,89 +22179180,5 ★★★★★ Gorgeous suite only 1 block from subway!,129222253,Andy,Bronx,Williamsbridge,40.8785,-73.86347,Entire home/apt,200,1,90,2019-06-24,4.76,3,326 +22180116,Brooklyn Huge Room,15640230,Susana,Brooklyn,Crown Heights,40.66571,-73.9338,Private room,35,30,5,2018-08-10,0.28,4,292 +22180263,"Charming and Convinient, LOCATION LOCATION!",21946213,Natalia,Manhattan,Harlem,40.82389,-73.93887,Private room,70,1,1,2018-01-01,0.05,1,0 +22184960,Experience Zen Williamsburg Life,12454759,Brennan,Brooklyn,Williamsburg,40.7091,-73.96032,Private room,99,1,47,2019-06-23,2.47,1,155 +22186114,Private Room in Brooklyn,16467711,Tori,Brooklyn,Bushwick,40.69743,-73.92171,Private room,75,1,2,2018-01-01,0.11,1,0 +22186387,Sunny and Cozy Private Chef’s Room in East Village,82402385,Sechul,Manhattan,East Village,40.72695,-73.97974,Private room,150,1,133,2019-06-30,7.19,1,14 +22186486,Awesome Character Lower East Side Apartment,162097203,Jason,Manhattan,Lower East Side,40.71871,-73.98218,Private room,220,2,1,2017-12-31,0.05,1,0 +22187068,Luxury Condo - Heart of Williamsburg,14338184,Eli,Brooklyn,Williamsburg,40.71311,-73.95742,Entire home/apt,175,2,2,2018-06-16,0.11,1,0 +22187253,Uptown Manhattan bright and lovely room,4476002,Metodija,Manhattan,Inwood,40.86931,-73.91682,Shared room,90,6,0,,,1,0 +22187284,Beautiful Modern Rustic Williamsburg Loft,802971,Sylvia,Brooklyn,Williamsburg,40.71463,-73.9583,Entire home/apt,120,6,3,2019-01-04,0.25,1,1 +22187361,"""Gold Coast"" 1B in West Village w/ Back Yard",202285,Peter,Manhattan,Greenwich Village,40.73322,-73.99762,Entire home/apt,320,11,4,2019-01-07,0.22,1,0 +22187524,Cozy Modern Apartment With Skyline View,1661245,Pierre,Brooklyn,Williamsburg,40.71,-73.96775,Entire home/apt,250,7,2,2018-12-30,0.14,1,0 +22188609,"SPACIOUS ROOM STEAL, NEAR EVERYTHING MIDTOWN!",155125855,Vicente,Manhattan,Midtown,40.74874,-73.98495,Private room,199,1,9,2018-09-26,0.48,3,0 +22188812,Quiet 2 Bdrm in Williamsburg,67336825,Cody,Brooklyn,Williamsburg,40.70879,-73.94977,Entire home/apt,105,3,2,2017-12-19,0.11,1,0 +22189240,Captain Steuben’s Brooklyn Studio in Clinton Hill,150355601,Michael,Brooklyn,Clinton Hill,40.69368,-73.96244,Entire home/apt,110,2,2,2017-12-26,0.11,1,0 +22189602,Master bedroom with King Size bed! Great location!,3044091,Mike,Manhattan,Upper East Side,40.76814,-73.95604,Private room,99,5,0,,,1,0 +22189962,"Modern, Cozy and affordable NY Home",50682735,Miguel,Queens,Kew Gardens,40.71162,-73.82799,Entire home/apt,80,2,1,2017-12-24,0.05,1,340 +22190231,"LUXURY BEDROOM FOR RENT, close to Manhattan.",119128599,Jessie,Queens,Maspeth,40.73094,-73.90131,Private room,59,2,13,2019-01-13,0.90,1,35 +22190466,"Cozy Getaway, steps from the Train, Stocked Fridge",5751765,CK & Tia,Manhattan,East Harlem,40.79917,-73.94183,Private room,200,3,0,,,2,0 +22190887,"Festive and Cozy Williamsburg Apt, 2 Bedrooms",22481311,Diana,Brooklyn,Williamsburg,40.70893,-73.95472,Entire home/apt,300,5,0,,,1,0 +22190967,Spacious furnished room in midtown,51521183,Abhishek,Manhattan,Murray Hill,40.74763,-73.97316,Private room,85,9,5,2019-05-27,0.27,1,86 +22191121,Cute 2-BR in Greenpoint/Williamsburg,6963310,Kenneth,Brooklyn,Greenpoint,40.72074,-73.94613,Entire home/apt,150,3,1,2017-12-27,0.05,1,0 +22191302,Charming Light Filled Studio in Williamsburg,6317137,Jessica,Brooklyn,Williamsburg,40.71795,-73.95096,Entire home/apt,180,2,1,2019-01-02,0.16,1,0 +22191313,Harlem apartment with a view,10533750,Danyelle,Manhattan,Harlem,40.81914,-73.95516,Private room,75,1,1,2017-12-22,0.05,1,0 +22191343,Light & Quiet Chelsea One Bedroom,162143245,Liza,Manhattan,Chelsea,40.74587,-73.99889,Entire home/apt,229,3,2,2019-01-01,0.11,1,206 +22191500,"Cozy room for one JFK, LGA & subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68739,-73.80555,Private room,50,1,36,2019-06-23,1.96,3,359 +22191646,Bright Private Balcony Apartment in Midtown,30424811,Nona,Manhattan,Midtown,40.74566,-73.98126,Entire home/apt,248,3,2,2018-06-14,0.11,1,0 +22191760,Fully equipped private room near USQ,48189371,Stacy,Manhattan,Gramercy,40.73614,-73.98872,Private room,299,1,4,2018-01-01,0.21,1,0 +22191831,Spacious Apartment in Historic Harlem!,12517694,Rahel,Manhattan,Harlem,40.81244,-73.95261,Private room,67,2,8,2019-05-20,0.42,1,3 +22192285,Chez Cozy,162152103,Sarah,Manhattan,Upper East Side,40.77141,-73.94985,Entire home/apt,150,7,4,2019-04-26,0.35,1,0 +22192407,Heart of Manhattan. Just renovated home!,85854200,Steph,Manhattan,Theater District,40.76109,-73.98261,Entire home/apt,200,4,75,2019-06-20,4.36,1,59 +22192417,Modern 1 Bed in the Heart of Midtown Manhattan,162153544,Kendrick,Manhattan,Murray Hill,40.75048,-73.97776,Entire home/apt,277,3,70,2019-06-30,3.66,1,75 +22192616,"The SerenitySuite. Clean, Cozy and Private.",160326327,Jammie,Brooklyn,Cypress Hills,40.68529,-73.87424,Entire home/apt,99,2,37,2019-06-23,2.05,3,14 +22192877,Upper West Side Home for the Holidays,22866437,Eliana,Manhattan,Upper West Side,40.77838,-73.97851,Entire home/apt,600,3,0,,,2,0 +22193183,Bright bedroom with balcony in Williamsburg,23793668,Annalise,Brooklyn,Williamsburg,40.71312,-73.9517,Private room,80,2,4,2019-04-09,0.28,1,0 +22193650,Gramercy Getaway,83637,Liana,Manhattan,Gramercy,40.73804,-73.98503,Entire home/apt,500,28,5,2018-04-08,0.27,1,173 +22194224,3BD in Williamsburg,114250912,Sabrina,Brooklyn,Williamsburg,40.71498,-73.94357,Private room,175,3,2,2018-01-01,0.11,1,0 +22194287,Bright 2 Bedroom Apt in quiet Woodside,5726293,Suah,Queens,Woodside,40.74402,-73.90946,Entire home/apt,150,2,3,2018-07-10,0.16,2,0 +22194314,Midtown Studio with view of Empire State Building,25275947,Daniel,Manhattan,Murray Hill,40.74703,-73.97484,Entire home/apt,239,5,0,,,1,0 +22194459,Elegant Fifth Avenue Apartment in Luxury Building,162172469,Joan,Manhattan,Greenwich Village,40.73233,-73.99678,Entire home/apt,500,5,0,,,1,229 +22194582,East Williamsburg’s Spacious Sun-drenched Apt.,8094921,ChaYa LoVe,Brooklyn,Williamsburg,40.70767,-73.943,Entire home/apt,320,1,78,2019-06-29,4.16,1,312 +22194993,"Bright, Clean & Comfortable Studio in Brooklyn",27234334,Emee,Brooklyn,Fort Greene,40.68906,-73.97872,Entire home/apt,125,4,7,2018-11-19,0.37,1,16 +22195204,Cozy room in Loft Apartment - Brooklyn,162174536,Estefani,Queens,Ridgewood,40.69687,-73.90111,Private room,31,18,1,2018-01-04,0.05,1,0 +22195324,"Private Floor (3 Bedrooms, 6 Beds) E. Williamsburg",4396760,Bulent,Brooklyn,Williamsburg,40.71436,-73.93812,Entire home/apt,189,2,21,2019-06-10,1.14,1,70 +22202550,Luxury apartment in prime location in Mahattan,16909313,Lauren,Manhattan,Kips Bay,40.73998,-73.97795,Private room,200,1,1,2018-01-01,0.05,1,0 +22203227,Entire 3 bedroom apartment in Brooklyn (36),132706680,Christine,Brooklyn,East New York,40.67539,-73.90207,Entire home/apt,120,2,55,2019-06-26,2.89,1,86 +22203719,Perfectly Located West Village Artist's Studio,156983314,Spencer,Manhattan,West Village,40.73607,-74.00373,Entire home/apt,150,3,12,2019-07-01,0.65,1,0 +22203734,Charming 1 bedroom APT in the heart of Astoria,90285941,Abhi,Queens,Astoria,40.76337,-73.92801,Entire home/apt,70,4,1,2018-01-05,0.05,1,0 +22203739,LeonardLoft,15969987,Daniela,Manhattan,Tribeca,40.71724,-74.00446,Entire home/apt,135,7,0,,,1,0 +22204016,cozy room in brooklyn,139264026,Hillai,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.9535,Private room,38,10,1,2018-07-13,0.08,1,0 +22204167,Your perfect NYC guesthouse getaway prvt entrance,94981926,Steve & Irina,Queens,Rego Park,40.72997,-73.86523,Entire home/apt,135,1,27,2019-06-27,1.46,1,365 +22204187,"Cozy, clean studio in Nolita",18011536,Buster,Manhattan,Chinatown,40.71799,-73.9964,Entire home/apt,125,2,0,,,1,0 +22204668,Large room + office in Bushwick artists' loft,4445275,Jessica,Brooklyn,Bushwick,40.69948,-73.92372,Private room,50,3,2,2018-01-09,0.11,1,0 +22204856,Room available in 3 BD Brooklyn apartment,1819657,Eleanor,Brooklyn,Clinton Hill,40.68381,-73.96786,Private room,55,2,0,,,1,0 +22205113,Cozy stylish studio,162258673,Mar,Manhattan,Washington Heights,40.85394,-73.92972,Private room,50,1,14,2018-12-18,0.80,1,63 +22205179,Spacious and sunny apartment by the Cloisters,921299,Mia,Manhattan,Washington Heights,40.8584,-73.93009,Entire home/apt,110,2,3,2019-05-28,1.55,1,12 +22205277,Modern Luxury Condo (Midtown West),162261784,Mariam,Manhattan,Hell's Kitchen,40.7687,-73.99184,Shared room,70,4,1,2018-01-01,0.05,1,0 +22205280,PRIVATE GARDEN APARTMENT IN HISTORIC BROWNSTONE,14142169,Casey,Brooklyn,Bedford-Stuyvesant,40.69165,-73.93483,Entire home/apt,140,7,31,2019-06-28,1.67,1,67 +22205284,New place near D line easy to get to Manhattan,5853457,Stanley,Brooklyn,Borough Park,40.64212,-73.9973,Entire home/apt,149,2,27,2019-06-16,1.47,4,308 +22205619,Luxury Riverview Williamsburg Apartment,2178877,Hazel,Brooklyn,Williamsburg,40.71881,-73.96397,Private room,100,5,3,2018-08-22,0.16,1,0 +22205622,Spacious Bedroom in apartment in Hamilton Heights,162263721,Magda,Manhattan,Harlem,40.82892,-73.95082,Private room,70,3,0,,,1,0 +22205765,Beautiful spacious Greenwich Village apt w/ garden,16798487,Vadim,Manhattan,Greenwich Village,40.73506,-73.99743,Entire home/apt,400,7,0,,,1,0 +22205780,"Spacious Brooklyn apartment with yard, roof access",67753773,Faziah,Brooklyn,Bedford-Stuyvesant,40.68754,-73.94183,Private room,40,5,6,2018-11-22,0.32,1,0 +22206164,Sleek and Hip Lower East Side 2 Bedroom,3452920,Isaac,Manhattan,Lower East Side,40.71765,-73.98452,Entire home/apt,220,1,3,2018-05-11,0.16,1,0 +22206207,Private room with visit to queens #4,158540605,Sonia,Queens,Glendale,40.69916,-73.8892,Private room,25,1,95,2019-07-05,6.18,6,258 +22206345,1 Bedroom/ 1 Bath in Bushwick,32345243,Ben,Brooklyn,Bushwick,40.69596,-73.92712,Private room,39,4,1,2018-01-02,0.05,1,0 +22206601,Soho/Nolita historic and central downtown location,144857346,Grace,Manhattan,NoHo,40.72485,-73.99461,Entire home/apt,350,3,1,2017-12-31,0.05,3,0 +22206970,Beautiful studio in the East Village,118407577,Vanessa,Manhattan,East Village,40.72588,-73.98243,Entire home/apt,90,4,4,2019-05-06,0.22,1,5 +22207196,Brad's Airbnb,97510172,Brad,Brooklyn,Bushwick,40.68545,-73.91237,Private room,30,2,4,2018-01-02,0.21,1,0 +22207357,The room boom,162116640,Tuvia,Brooklyn,Brighton Beach,40.58363,-73.96405,Private room,3000,1,0,,,1,90 +22207770,AWESOME PRIVATE FAMILY HOUSE CLOSE TO MANHATTAN,155989291,Ahmed,Queens,Corona,40.74725,-73.85486,Entire home/apt,359,3,10,2019-06-09,0.66,1,281 +22207975,"10 min prospect park , restaurant , s. activities",162278789,Jean,Brooklyn,Flatbush,40.65224,-73.95724,Private room,65,2,23,2019-05-13,3.15,1,0 +22207978,Sun-Drenched Luxury Loft with Private Roof Deck,803468,David,Brooklyn,Williamsburg,40.70929,-73.9477,Entire home/apt,109,3,6,2018-08-19,0.31,1,0 +22208060,"Large, sunny room in the heart of Williamsburg!",3791823,Nicole,Brooklyn,Williamsburg,40.70902,-73.96059,Private room,70,4,1,2018-12-31,0.16,1,0 +22208315,Patio Perfection,55324782,Kaitlin,Manhattan,Upper West Side,40.78309,-73.97831,Private room,75,1,1,2018-01-01,0.05,1,0 +22208373,Stunning Executive Apt Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74751,-73.97593,Entire home/apt,125,30,0,,,91,153 +22209216,Private spacious bedroom 10min from Manhattan!!,79373189,Laureta,Queens,Long Island City,40.75901,-73.93404,Private room,40,1,32,2019-06-23,1.75,2,123 +22209583,Spacious sanctuary + private bath in hip Bedstuy,162291393,Olya,Brooklyn,Bedford-Stuyvesant,40.6834,-73.94209,Private room,98,1,26,2018-11-25,1.40,1,73 +22209681,Great UES Private Apartment,162293435,Richie,Manhattan,Upper East Side,40.77585,-73.95337,Entire home/apt,110,2,2,2018-04-30,0.11,1,0 +22210721,East Village Getaway,29035593,Rachel,Manhattan,East Village,40.72339,-73.98911,Entire home/apt,115,3,0,,,1,0 +22212969,Large 3 Bedroom Luxury Apartment in Williamsburg,20855321,Dain,Brooklyn,Williamsburg,40.70643,-73.93976,Entire home/apt,145,3,0,,,1,0 +22213107,Spacious 1br in the heart of Bed-Stuy,3182367,Liz,Brooklyn,Bedford-Stuyvesant,40.68406,-73.93338,Entire home/apt,89,3,0,,,1,0 +22213389,Cinema Studio on Duplex Apt.,4667705,O. Xavier,Brooklyn,Bushwick,40.69787,-73.92703,Private room,85,1,59,2019-07-05,3.18,1,333 +22213508,Quintessential East Village Apt,6707833,Courtney,Manhattan,East Village,40.72711,-73.97727,Entire home/apt,300,5,1,2018-03-18,0.06,1,0 +22213572,2 bedroom available in the heart of Williamsburg,13795760,Eliza Love,Brooklyn,Williamsburg,40.7142,-73.96099,Private room,85,1,0,,,2,0 +22213600,Sunny and Cozy Brooklyn Apartment,4031946,Farideh,Brooklyn,Bushwick,40.69697,-73.93207,Entire home/apt,100,2,4,2019-06-30,0.64,1,9 +22213903,Cozy 2BR+Sofa in Quiet Part of Popular LES,93039729,Sunny,Manhattan,Lower East Side,40.7193,-73.98405,Entire home/apt,225,1,0,,,2,0 +22214268,Cozy 1BR+SofaBed in Quiet Part of Popular LES,93039729,Sunny,Manhattan,Lower East Side,40.71833,-73.98562,Private room,95,1,0,,,2,0 +22214383,UNIQUE 1 BED ROOM in FLATIRON/NOMAD/GRAMERCY,130528939,Colette,Manhattan,Midtown,40.74238,-73.98439,Entire home/apt,91,2,1,2018-01-02,0.05,1,0 +22214395,Spacious Studio In Queens,162276183,Gary,Queens,Rego Park,40.71663,-73.85823,Entire home/apt,59,1,110,2019-06-24,5.92,1,147 +22214408,"Balcony Duplex and Loft, Steps from the Subway",292137,Brandon,Brooklyn,Bushwick,40.69754,-73.9348,Private room,74,21,2,2018-09-30,0.12,1,0 +22214478,Furnished room in a 5 br apartment,104222590,Saarthak,Manhattan,Harlem,40.83044,-73.94839,Private room,33,3,3,2018-01-01,0.16,1,0 +22214583,"Wonderful & Cozy Rm in Uptown Apt, Next to 1 Train",161644370,Dee,Manhattan,Harlem,40.82245,-73.95404,Private room,42,14,2,2018-04-13,0.11,1,0 +22214594,A birdcage on the Upper West Side,81503286,Aissa,Manhattan,Upper West Side,40.79641,-73.97088,Entire home/apt,75,3,5,2018-02-18,0.28,1,0 +22214859,HUGE CORNER 1BR -Columbus Circle -LUXURY AMENITIES,13773574,Cecile,Manhattan,Midtown,40.76512,-73.98201,Entire home/apt,225,30,0,,,12,344 +22214974,Brooklyn City Abode,160495098,Miller,Brooklyn,East Flatbush,40.63338,-73.94753,Private room,39,2,7,2018-12-06,0.50,5,0 +22215122,STUNNING VIEWS!!! - CORNER APT. - COLUMBUS CIRCLE,13773574,Cecile,Manhattan,Midtown,40.76575,-73.98168,Entire home/apt,225,30,0,,,12,343 +22215258,RIVER VIEWS - PRIVATE BALCONY **Gym/Pool/Rooftop**,13773574,Cecile,Manhattan,Midtown,40.7652,-73.98174,Entire home/apt,225,30,1,2018-08-19,0.09,12,343 +22216259,"纽约曼哈顿 唐人街公寓 方便,性价比高",159187644,Wen,Brooklyn,Bergen Beach,40.61807,-73.90162,Private room,100,5,0,,,1,89 +22217757,3-BR duplex in Bed-Stuy Brownstone,3616251,Michael,Brooklyn,Bedford-Stuyvesant,40.68376,-73.95109,Entire home/apt,66,3,41,2019-06-25,3.30,1,219 +22218658,Bed-Stuy IS FLY!! 1-8 guests,162352916,J C,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95418,Private room,50,1,24,2019-04-25,1.30,1,354 +22219529,Modern 2-person room near Subway in Bushwick,101970559,Sergii,Brooklyn,Bushwick,40.69476,-73.90545,Shared room,32,30,3,2018-08-31,0.17,6,365 +22221072,Private cozy room in Bushwick / full-size bed,101970559,Sergii,Brooklyn,Bushwick,40.69295,-73.90851,Private room,50,30,4,2018-06-23,0.21,6,325 +22222996,Private Bedroom near Columbia University,77824133,Ebin,Manhattan,Harlem,40.81634,-73.95735,Private room,35,7,0,,,1,0 +22224072,Beautiful & Modern in the Heart of East Village,13097902,Bruna,Manhattan,East Village,40.72652,-73.98966,Entire home/apt,250,2,29,2019-06-30,1.58,1,38 +22224790,Large Bright FULL 1BD in the Heart of BUSHWICK !,1695734,Amira,Brooklyn,Bushwick,40.70108,-73.91409,Entire home/apt,95,3,4,2018-10-09,0.21,1,0 +22224945,IL TUO APPARTAMENTO PERSONALE IN NEW YORK CITY!!,62068432,Rita,Manhattan,Harlem,40.81462,-73.95047,Entire home/apt,80,6,2,2019-03-31,0.10,1,31 +22225158,COLUMBUS CIRCLE LUXURY - STUNNING RIVER VIEW,13773574,Cecile,Manhattan,Midtown,40.76563,-73.98242,Entire home/apt,225,30,0,,,12,340 +22225555,Sunny Williamsburg Style in Prime Location ❤️,9416996,Keren & Mikey,Brooklyn,Williamsburg,40.71672,-73.95819,Entire home/apt,220,2,95,2019-07-06,5.02,1,67 +22226150,Hell's Kitchen Apartment,4670203,Chris,Manhattan,Hell's Kitchen,40.76285,-73.98728,Private room,105,1,2,2017-12-28,0.11,1,89 +22226156,"Manhattan 1BD in 2BD near ESB, UN, NYU w/roof deck",14103679,Hugh,Manhattan,Murray Hill,40.74623,-73.97404,Private room,199,2,75,2019-06-13,4.04,1,80 +22226334,Spacious private bedroom in Brooklyn New York,4143813,Yu,Brooklyn,Bushwick,40.70162,-73.91297,Private room,53,5,1,2018-01-02,0.05,1,0 +22226558,Homely Queens Home,162411010,Victor,Queens,Ozone Park,40.68562,-73.83498,Entire home/apt,125,7,3,2019-06-15,0.33,1,69 +22227015,Upper West Side Luxury! See fall in Central Park!,4332666,Andrew,Manhattan,Upper West Side,40.79492,-73.96816,Entire home/apt,400,3,10,2018-10-18,0.56,1,64 +22227610,A suite like room with a private bathroom.,132934081,Sam,Brooklyn,Borough Park,40.64495,-73.99615,Private room,70,7,2,2019-01-06,0.11,1,0 +22228935,Private Room in Nice Apt. Close to Manhattan. WIFI,80561485,Gabriela,Queens,Astoria,40.77418,-73.93545,Private room,50,1,62,2019-06-18,3.36,2,7 +22229244,Spacious cozy place in heart of nolita,16569491,Julian,Manhattan,Nolita,40.72184,-73.99452,Private room,20,14,9,2018-06-26,0.48,1,0 +22229473,"Duplex in Williamsburg with Terrace, 4 Bed 2 Bath",162432541,Emily & Joseph,Brooklyn,Williamsburg,40.71053,-73.96261,Entire home/apt,300,2,14,2019-06-16,2.27,2,279 +22229755,Entire private lower unit of owner occupied duplex,1036697,Patricia,Brooklyn,Bushwick,40.69436,-73.92261,Entire home/apt,89,3,21,2019-06-03,1.14,1,30 +22229793,Quiet cozy room in Williamsburg,6111084,Nebojsa,Brooklyn,Williamsburg,40.7063,-73.94439,Private room,59,2,42,2019-07-07,2.23,2,14 +22230294,"Large, Bright, Open 1-BR Oasis in Gramercy Park",1391186,Adam,Manhattan,Flatiron District,40.73962,-73.98492,Entire home/apt,221,5,7,2019-03-29,0.38,1,1 +22230375,318 58 st brooklyn ny 11220,160867897,Mercedes,Brooklyn,Sunset Park,40.64351,-74.01848,Private room,100,2,1,2018-03-17,0.06,1,365 +22230454,☆Huge Private Room Near Park & Train in MANHATTAN!,20134899,Michael,Manhattan,Harlem,40.82816,-73.94957,Private room,69,2,47,2019-05-16,3.78,2,0 +22230702,(☆☆☆☆☆) New ultra-modern 1 bedroom apartment,129165729,Cindy,Queens,Astoria,40.76234,-73.91991,Entire home/apt,150,1,75,2019-06-30,4.38,1,317 +22231328,Spacious Brooklyn loft in Clinton Hill,4642506,Devin,Brooklyn,Bedford-Stuyvesant,40.69216,-73.96011,Private room,275,2,17,2019-06-25,0.92,1,72 +22231453,•HEART OF WILLIAMSBURG APARTMENT COZY&PRIVATE•,128793815,Atthaphon,Brooklyn,Williamsburg,40.71917,-73.96079,Private room,55,2,68,2019-07-03,3.67,4,279 +22231557,•COZY APARTMENT 5 MINS TO MANHATTAN•,128793815,Atthaphon,Brooklyn,Williamsburg,40.72092,-73.96122,Private room,65,2,31,2019-07-01,1.68,4,282 +22231558,Spacious 3BR/3BA in the East Village,7002074,Ryder,Manhattan,East Village,40.72625,-73.97822,Entire home/apt,250,2,2,2017-12-30,0.10,1,0 +22231784,SUNNY WITH RIVER VIEWS - Private Balcony! -,13773574,Cecile,Manhattan,Midtown,40.76639,-73.98163,Entire home/apt,225,30,0,,,12,343 +22231811,Stylish & Spacious 1BD in Central Harlem!,17430718,Natasha,Manhattan,Harlem,40.81537,-73.94067,Entire home/apt,135,3,21,2019-06-10,1.13,2,75 +22232269,Cozy one bedroom apartment perfect for couples,145993199,Bradley,Brooklyn,Flatbush,40.63436,-73.96126,Entire home/apt,90,2,13,2019-04-07,0.70,1,5 +22232328,"LUX 2Bed/UWS Gem! +5 Min Walk to Central Park",57470846,Melissa,Manhattan,Upper West Side,40.78472,-73.97575,Entire home/apt,175,3,0,,,1,0 +22232425,1 Bedroom with a lot of Sunshine,162459728,Chikako,Manhattan,Harlem,40.80639,-73.94834,Entire home/apt,82,2,0,,,1,0 +22232444,Oversized 1BR in Doorman Building by Central Park,33610939,Ishaan,Manhattan,Morningside Heights,40.80486,-73.9656,Private room,200,2,0,,,1,0 +22232463,Cosy Apartment in the Heart of Manhattan,7286095,Lior,Manhattan,Chelsea,40.7443,-73.99732,Entire home/apt,135,1,0,,,1,0 +22232470,Cozy 1BR + Sofa in Quiet Part of Popular LES,17787106,Darwin,Manhattan,Lower East Side,40.71757,-73.98394,Private room,75,1,2,2018-01-02,0.11,1,0 +22233024,Newly Renovated 1BR in SoHo/Nolita,23261539,James,Manhattan,Nolita,40.72344,-73.99592,Entire home/apt,225,7,1,2018-06-28,0.08,1,0 +22233039,Room in Central Harlem for the holidays,12821514,Axelle,Manhattan,Harlem,40.80961,-73.94588,Private room,34,2,4,2019-06-26,0.21,1,0 +22235441,"Safe, Overnight Crash Pad Near JFK, LGA and NYC",72838963,Deborah,Queens,Jamaica,40.68411,-73.79688,Shared room,19,1,26,2019-06-10,1.40,2,138 +22237320,Modern Room in Coliving/15min walk to Williamsburg,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69676,-73.93959,Shared room,35,30,4,2018-08-16,0.22,10,327 +22237930,Cozy Bushwick room with lots of natural light,30548145,Gareth,Brooklyn,Bushwick,40.69385,-73.9096,Private room,40,14,0,,,1,0 +22238046,Bronx 167th Grand ConCourse,162457374,Daniel,Bronx,Concourse Village,40.83314,-73.91708,Private room,38,2,0,,,1,0 +22241250,Newly renovated 1br in the heart of NY,4148879,Carlos,Manhattan,Flatiron District,40.74212,-73.99042,Entire home/apt,249,4,3,2019-05-22,0.16,1,0 +22241573,Private Room B In Prime Location,162427870,Anna,Manhattan,Chelsea,40.74729,-73.98957,Private room,115,1,162,2019-06-23,8.68,3,312 +22241666,Stylish Williamsburg waterfront apartment,31629237,Melissa,Brooklyn,Williamsburg,40.71783,-73.96141,Entire home/apt,150,3,0,,,1,0 +22241696,Private Room C In Prime Location,162427870,Anna,Manhattan,Midtown,40.74535,-73.99023,Private room,105,1,140,2019-06-23,7.39,3,321 +22242334,Whole Apartment Near Prospect Park,41423658,Diane,Brooklyn,Prospect-Lefferts Gardens,40.65896,-73.96104,Entire home/apt,69,2,37,2019-06-11,2.00,1,3 +22243957,Huge cozy artist haven in heart of Hamilton Hts.,5026324,Sean,Manhattan,Harlem,40.83029,-73.94962,Private room,79,2,1,2018-01-02,0.05,1,0 +22244184,"Luxury Private Bed, Bath & Desk in Williamsburg",45858744,Augustine,Brooklyn,Williamsburg,40.70755,-73.95314,Private room,100,2,3,2018-10-14,0.30,1,0 +22244254,Full floor of a beautiful Bedstuy duplex,7306239,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68885,-73.94349,Private room,80,1,4,2018-05-16,0.21,1,0 +22244917,Full room in Astoria max 2 (8 min from Manhattan),3186412,Vanessa,Queens,Astoria,40.75936,-73.91266,Private room,85,11,0,,,1,0 +22245314,Sunny Park Slope Studio,29001464,Grey,Brooklyn,Park Slope,40.67245,-73.97341,Entire home/apt,92,60,1,2018-10-17,0.11,1,0 +22245492,Ft Greene Studio,106899231,Heather,Brooklyn,Fort Greene,40.69387,-73.97316,Entire home/apt,100,4,53,2019-07-02,3.05,2,88 +22245972,Bed in shared room in Crown Heights,162554140,Tzvi,Brooklyn,Prospect-Lefferts Gardens,40.66208,-73.9443,Shared room,22,14,0,,,1,0 +22246294,Huge 2 Bedroom on Mercer St (Soho),162556385,Enrique,Manhattan,SoHo,40.72224,-73.99991,Entire home/apt,720,3,0,,,1,0 +22246770,Nice and sunny room in Williamsburg!!,3266249,Maria,Brooklyn,Williamsburg,40.71032,-73.95687,Private room,65,2,0,,,1,0 +22246864,••Rare Find! Modern Room Near Subway & JFK••,161349813,Yola,Queens,Woodhaven,40.69003,-73.8678,Private room,35,3,14,2019-01-14,0.83,2,0 +22247316,Brooklyn style Loft,43600815,Rafael,Brooklyn,Williamsburg,40.70481,-73.93766,Private room,50,4,0,,,2,0 +22247787,Amazing bedroom in Williamsburg!!,43816141,Ben,Brooklyn,Williamsburg,40.7087,-73.94519,Private room,70,3,3,2018-07-23,0.16,1,0 +22247895,Private Room near the Myrtle Wyckoff L/M train,23817448,Desirée,Queens,Ridgewood,40.7029,-73.91174,Private room,38,2,0,,,1,0 +22247923,Cozy East Village Home Away From Home,68112758,Alexandra,Manhattan,East Village,40.72188,-73.97957,Entire home/apt,237,4,7,2018-10-25,0.45,1,0 +22249013,Cozy Bushwick Loft Apartment,17672907,Imani,Brooklyn,Bushwick,40.69178,-73.91243,Private room,30,3,7,2018-03-12,0.38,1,0 +22249186,Mid-Mod 1 Bedroom Washington Heights NYC,75224562,Michael,Manhattan,Washington Heights,40.84855,-73.93704,Entire home/apt,250,2,1,2017-12-21,0.05,1,0 +22249256,"New Listing - North Williamsburg 1,000 sqft 1-BR",14815035,Amy,Brooklyn,Williamsburg,40.71938,-73.95476,Entire home/apt,170,3,0,,,1,0 +22249641,UES Gorgeous Apartment - 2 Blocks from the Met,22902111,Séhzad,Manhattan,Upper East Side,40.77774,-73.95711,Entire home/apt,400,5,0,,,1,0 +22249905,Cozy One Bed In The Middle of Manhattan,33470925,Stella,Manhattan,Hell's Kitchen,40.75827,-73.99544,Entire home/apt,210,4,2,2017-12-31,0.11,1,0 +22250050,Beautiful cozy room close to Manhattan,85216513,Andrey,Queens,Sunnyside,40.73679,-73.92561,Private room,50,2,2,2018-05-14,0.11,1,179 +22250239,Very big room with private bathroom/Brooklyn,158191277,Camila,Brooklyn,Crown Heights,40.6763,-73.94107,Private room,75,6,3,2018-08-31,0.16,3,0 +22250271,"Cute, Comfy & Cozy Room in Brooklyn",57034140,Alicia,Brooklyn,Bedford-Stuyvesant,40.69338,-73.93125,Private room,65,4,3,2018-03-24,0.16,1,0 +22250309,Brownstone Apartment near Manhattan,62048197,Adetoro,Brooklyn,Bedford-Stuyvesant,40.68373,-73.93056,Entire home/apt,85,2,2,2018-05-05,0.14,1,0 +22250584,Brooklyn Chateau,53693534,Guy,Brooklyn,Crown Heights,40.6756,-73.91465,Entire home/apt,100,5,0,,,1,0 +22251000,Charming 1 bedroom in West Village,4683415,Benny,Manhattan,West Village,40.73612,-74.00828,Entire home/apt,290,3,5,2019-01-01,0.63,1,0 +22251120,Huge one bed room apartment in Manhattan.,70068899,Cristian,Manhattan,East Harlem,40.80039,-73.9361,Entire home/apt,165,3,1,2018-01-01,0.05,1,0 +22251486,Cozy and Quaint 1 Bedroom in Soho!,17110907,Ben,Manhattan,SoHo,40.72594,-74.00136,Private room,180,4,1,2018-03-28,0.06,1,0 +22251732,Bed-Stuy (20mins to Manhattan/Williamsburg/Queens),162598902,Finnían,Brooklyn,Bedford-Stuyvesant,40.6861,-73.95161,Private room,40,4,2,2018-01-01,0.11,1,0 +22251884,Authentic and Open Tribeca Loft,16897284,Hugh,Manhattan,Tribeca,40.71813,-74.00538,Entire home/apt,325,1,35,2019-06-25,1.84,1,141 +22251910,Williamsburg Penthouse with 3 Private Terraces!,83091890,Andrei,Brooklyn,Williamsburg,40.71815,-73.94189,Entire home/apt,190,2,46,2019-07-01,2.97,1,239 +22252595,Perfect Stay to see all of Manhattan Sites,26984764,Lawrence,Queens,Long Island City,40.74397,-73.95667,Private room,90,2,1,2018-01-02,0.05,1,0 +22252628,"Cozy, convenient Manhattan Apartment in the LES",26022466,Calvin,Manhattan,Lower East Side,40.71495,-73.98589,Private room,70,1,8,2018-01-09,0.42,1,0 +22255089,HUGE 1 bedroom in Gramercy,124006965,Shawn,Manhattan,Kips Bay,40.73836,-73.98035,Entire home/apt,167,3,3,2018-04-01,0.16,1,0 +22256926,Beautiful room in Brooklyn,15640230,Susana,Brooklyn,Crown Heights,40.66452,-73.9337,Private room,33,30,1,2018-09-02,0.10,4,354 +22258159,Shared room in one minute walk to the M train!!,134293540,Valentin,Queens,Ridgewood,40.70117,-73.90666,Shared room,33,30,1,2017-12-22,0.05,4,7 +22258326,Gorgeous spacious renovated 1Bed in Hellskitchen!,42304005,Dina,Manhattan,Theater District,40.75957,-73.98798,Entire home/apt,151,2,18,2019-05-13,0.97,1,72 +22258432,Awesome designed shared room in beautiful Coliving,146345538,Sergii,Brooklyn,Bushwick,40.69329,-73.91328,Shared room,15,30,3,2018-07-14,0.16,5,344 +22258450,Gorgeous Queen Luxury Bedroom near J subway,5680111,Timothy,Brooklyn,Bushwick,40.68608,-73.91534,Private room,72,5,23,2019-05-26,1.21,7,112 +22258880,Midtown apt perfect for a New Years stay!,121713773,Salma,Manhattan,Midtown,40.74788,-73.98376,Private room,150,2,2,2018-01-02,0.11,1,0 +22259132,Elegant 2 Bedroom Cobble Hill apartment,162456824,Marie,Brooklyn,Cobble Hill,40.68675,-73.9995,Entire home/apt,145,1,67,2019-06-20,3.63,2,146 +22259472,"Bright, Spacious Apartment in Prime Brooklyn",49019705,Pamela,Brooklyn,Bushwick,40.70383,-73.92663,Entire home/apt,200,1,0,,,1,0 +22259480,"Bed-stuy, Brooklyn Private Bedroom",78895626,Kamerin,Brooklyn,Bedford-Stuyvesant,40.68444,-73.91874,Private room,35,4,0,,,1,0 +22260331,Holiday sublet in beautiful bed stuy!,26898137,Andrew,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94482,Private room,48,7,1,2017-12-14,0.05,1,0 +22260546,HUGE room in prime BUSHWICK,150837630,Dan,Brooklyn,Bushwick,40.69967,-73.9299,Private room,50,3,16,2019-05-19,0.85,1,0 +22260561,Quarto Bronx (NY),136455880,Alvina Da Silva,Bronx,Fordham,40.86674,-73.89284,Private room,30,2,2,2018-02-26,0.11,2,90 +22260983,RENOVATED 2 BEDROOM APT NEAR CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.79638,-73.96332,Entire home/apt,125,30,1,2018-08-04,0.09,16,284 +22261208,Spacious and sunny 2BDR Apt in Queens w/ balcony,405986,Sylvain,Queens,Rego Park,40.73269,-73.8584,Entire home/apt,81,4,6,2018-09-23,0.32,1,6 +22262408,Cozy East Village Studio,108774275,Megan,Manhattan,East Village,40.72712,-73.98233,Entire home/apt,115,2,14,2019-06-09,1.21,1,3 +22262419,AWESOME VIEWS * COLUMBUS CIRCLE * Pool/Gym/Balcony,13773574,Cecile,Manhattan,Midtown,40.76518,-73.98287,Entire home/apt,225,30,0,,,12,343 +22262595,FiDi Beautiful & Spacious Private Room & Bathroom,48296060,Luis,Manhattan,Financial District,40.71086,-74.00464,Private room,128,3,4,2018-10-31,0.36,1,0 +22262982,Cozy place next to Times Square,21577034,Anda,Manhattan,Hell's Kitchen,40.7638,-73.9944,Private room,65,1,28,2019-05-20,1.51,2,107 +22263236,Master Suite in Prospect Heights,65062170,Henry,Brooklyn,Prospect Heights,40.6776,-73.96638,Private room,80,3,1,2017-12-27,0.05,1,0 +22263267,Cozy apartment in Central Park North,161514654,Hafou,Manhattan,East Harlem,40.79598,-73.94838,Entire home/apt,135,2,56,2019-06-12,3.11,1,66 +22263855,SPECTACULAR SOHO GREAT ROOM LOFT 6000sq feet,6145729,Stephanie,Manhattan,SoHo,40.72605,-74.00572,Entire home/apt,3000,7,1,2019-06-30,1,1,325 +22263904,Luxury condo with King Bed & 4K TV,46842591,Panos,Manhattan,Financial District,40.70333,-74.00959,Entire home/apt,240,10,10,2018-12-02,0.54,2,216 +22264539,Loft-Style Room In Bushwick! (L/JMZ train line),104035649,Brittnee,Brooklyn,Bushwick,40.70185,-73.93119,Private room,50,2,0,,,1,0 +22264586,Williamsburg lofted bedroom,50909072,Timothy,Brooklyn,Williamsburg,40.71291,-73.95959,Private room,100,3,3,2018-02-13,0.16,1,0 +22265411,Prime Upper East 2BR~Best Value,162280872,Izi,Manhattan,Upper East Side,40.77383,-73.94903,Entire home/apt,150,60,5,2018-09-30,0.31,13,155 +22265621,Spacious Private Room by the East River,62792050,Joanna,Manhattan,East Harlem,40.78714,-73.94114,Private room,65,2,6,2018-06-15,0.37,1,0 +22265765,2Br~Prime Upper east~Central park~10 Min,162280872,Izi,Manhattan,Upper East Side,40.77466,-73.94748,Entire home/apt,150,30,5,2019-06-01,0.29,13,140 +22265878,"Quiet, newly renovated 2 Bedroom, Great Location",19119771,Marco,Manhattan,Harlem,40.82025,-73.95206,Entire home/apt,180,3,5,2018-09-03,0.26,1,0 +22266183,Home away from home in Upper Manhattan,6866356,Andrew,Manhattan,Washington Heights,40.85521,-73.93528,Private room,50,4,21,2019-06-10,1.15,1,34 +22266234,Huge 3 bedroom in Manhattan,91167002,Alyson,Manhattan,Hell's Kitchen,40.76405,-73.98877,Entire home/apt,329,7,1,2018-03-26,0.06,3,89 +22266286,Gema's Place,44213272,Miss. G.,Queens,Ditmars Steinway,40.77216,-73.91252,Private room,138,30,0,,,5,234 +22266538,Huge Bedroom with Private Entrance and Yard Access,36283215,Bobby,Brooklyn,Williamsburg,40.71227,-73.93683,Private room,54,2,4,2018-03-18,0.22,1,0 +22266609,Bronx home with rooftop and laundry,29412145,Samantha,Bronx,Port Morris,40.80726,-73.92999,Private room,50,2,4,2018-01-02,0.21,1,0 +22266875,Cozy one bedroom,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94472,Entire home/apt,63,30,4,2019-05-23,0.26,6,281 +22267036,Bright beautiful modern large and secure.,138607228,Edward,Brooklyn,Bushwick,40.69367,-73.90756,Entire home/apt,150,2,41,2019-04-14,2.78,3,0 +22267217,City Living with a Home Town Feel.,105061915,Darlene,Manhattan,East Harlem,40.80279,-73.9445,Private room,43,1,13,2019-07-02,0.72,2,6 +22267382,Modern and Cozy Large Studio in Brooklyn,1910170,Katarina,Brooklyn,Fort Greene,40.68855,-73.97883,Entire home/apt,145,5,6,2019-01-01,0.32,1,0 +22267590,Spacious 1 bdr in Brooklyn Heights near all trains,4915579,Elisabeth,Brooklyn,Brooklyn Heights,40.69491,-73.99355,Entire home/apt,160,3,0,,,1,0 +22267769,Cosy room in a cool Williamsburg Apt,72593389,Jeremy,Brooklyn,Williamsburg,40.71353,-73.96216,Private room,60,2,1,2018-01-03,0.05,1,0 +22267906,located 15 minutes away from Time Square,24875845,Devito,Manhattan,Harlem,40.82592,-73.93911,Private room,85,2,15,2019-07-02,0.82,1,75 +22268101,Cute & Quiet 1 Bedroom In Greenwich Village,4243073,Sophia,Manhattan,Greenwich Village,40.72847,-74.00068,Entire home/apt,149,14,8,2019-03-23,0.42,1,38 +22268166,"Manhattan, Room w/3 Beds Near Metro & Central Park",154834587,Joo,Manhattan,East Harlem,40.79428,-73.94433,Private room,69,1,145,2019-06-22,7.64,1,4 +22268506,Cozy Stay,42427554,Donny,Brooklyn,Bushwick,40.69728,-73.91387,Private room,40,5,0,,,1,0 +22268514,4 bedroom / 2 bathroom LOCATION LOCATION LOCATION,13532838,Nik,Manhattan,Chinatown,40.71703,-73.9923,Entire home/apt,400,3,0,,,1,0 +22270195,LIC Private 1 Bdrm 10 mins away Manhattan NYC,162745077,Dorothy,Queens,Long Island City,40.75447,-73.92887,Private room,150,2,17,2019-06-22,0.92,2,72 +22273359,Amazing Apartment- 2 bedroom 1 bathroom,79680629,Martin,Manhattan,Hell's Kitchen,40.7625,-73.99778,Entire home/apt,350,2,3,2018-03-19,0.18,1,0 +22274388,Large Bedroom/Living Room/Bathroom and Backyard,77751221,Mathew,Brooklyn,Crown Heights,40.67423,-73.92913,Private room,90,3,16,2019-06-17,0.87,1,0 +22274854,Heart of East Village / Next to Tompkins Sq Park,162781363,Berk,Manhattan,East Village,40.72486,-73.98241,Entire home/apt,140,30,4,2018-09-15,0.22,1,190 +22274932,Bushwick Street Art,6924461,Dorota,Queens,Ridgewood,40.71261,-73.91429,Private room,80,2,39,2019-06-30,2.08,1,68 +22275245,"Spacious room in Historical South Street Seaport,",162784512,Biggi,Manhattan,Financial District,40.70875,-74.00183,Private room,129,30,32,2018-11-08,1.73,1,0 +22275716,Cozy Studio with Patio Next to Central Park,23939793,Tamar,Manhattan,Upper West Side,40.77428,-73.97893,Entire home/apt,60,3,11,2018-11-24,0.59,1,0 +22275821,"",49662398,Kathleen,Brooklyn,Bushwick,40.69546,-73.92741,Entire home/apt,110,4,5,2018-08-13,0.27,1,0 +22276159,Affordable private room in a home in NYC,12258594,Rosa,Staten Island,St. George,40.64497,-74.08456,Private room,75,2,10,2019-07-01,0.53,2,207 +22276602,Loft in Brooklyn,128560208,Catiana,Brooklyn,Williamsburg,40.70429,-73.936,Private room,150,5,3,2018-10-09,0.32,1,179 +22277233,Sunny & Dreamy Bedstuy Room,105018962,Karly,Brooklyn,Bedford-Stuyvesant,40.68379,-73.92932,Private room,45,3,1,2018-01-01,0.05,2,0 +22277333,Spacious 1 BR apartment in authentic Brooklyn,25769776,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65616,-73.95676,Entire home/apt,64,2,4,2018-01-14,0.21,1,0 +22277436,"(Entire apt) Bright 1 Br apt in Astoria, Queens NY",138200407,Liza,Queens,Astoria,40.76743,-73.92336,Entire home/apt,71,98,0,,,1,0 +22277909,"Cozy, Upper West Side One Bedroom",132464629,Bethany,Manhattan,Upper West Side,40.78178,-73.97928,Entire home/apt,135,12,1,2018-01-05,0.05,1,0 +22278389,Private Room w/ Balcony in Williamsburg (Rooftop),18616281,Lee,Brooklyn,Williamsburg,40.71453,-73.96038,Private room,100,1,10,2018-09-23,0.53,1,0 +22278680,纽约 罗岛曼哈顿短租 Cozy room in Roosevelt Island,68945394,Cr,Manhattan,Roosevelt Island,40.76176,-73.94999,Shared room,30,4,1,2018-01-10,0.06,1,0 +22278896,Affordable pied-a-Terre near south brooklyn ferry.,31069102,Cj,Brooklyn,Red Hook,40.67989,-74.00818,Entire home/apt,110,5,28,2019-04-09,1.53,1,0 +22278941,Book it Vintage!,116236385,Ri.,Manhattan,Upper East Side,40.78068,-73.94963,Private room,200,2,43,2019-06-15,2.33,1,8 +22279040,"Private Room (rm2), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81245,-73.95813,Private room,200,3,30,2019-06-10,1.84,6,1 +22279575,"Comfort, convenience, elegance near Prospect Park",96379938,Alexander,Brooklyn,East Flatbush,40.65381,-73.94819,Private room,30,2,48,2019-01-03,2.58,2,0 +22279816,THE PERFECT JANUARY SUBLET,41930087,Storm,Manhattan,Washington Heights,40.84826,-73.94131,Private room,65,1,6,2018-01-23,0.33,1,0 +22280002,Stuyvesant Heights Loft like Apartment.,67373899,Will,Brooklyn,Bedford-Stuyvesant,40.68206,-73.94417,Entire home/apt,100,1,25,2019-06-24,1.35,1,108 +22280395,Chinatown Super-host Quarters,4189538,Kevin,Manhattan,Two Bridges,40.71107,-73.99605,Entire home/apt,109,3,27,2019-01-01,1.46,1,0 +22280432,Private room in Fort Greene,2838365,Jonnie,Brooklyn,Fort Greene,40.68528,-73.96947,Private room,71,1,0,,,1,0 +22280482,HUGE private bedroom in Artists' home in Bushwick,43756609,Karina,Brooklyn,Bushwick,40.68847,-73.913,Private room,70,1,3,2018-01-01,0.16,2,0 +22280822,"Nice Room Where Soho, Little Italy, Chinatown Meet",7475578,MaTT,Manhattan,Little Italy,40.71909,-73.99731,Private room,70,5,3,2018-07-15,0.17,2,42 +22281684,Modern Uptown Stay,32153139,Michelle,Manhattan,Harlem,40.81318,-73.94508,Private room,85,3,0,,,2,0 +22281732,"Private Room (rm4), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.8112,-73.95967,Private room,100,3,42,2019-06-16,2.43,6,0 +22281854,2 Queen Beds in Private bedroom Safe neighborhood,80601038,Shelley,Queens,Forest Hills,40.72761,-73.84109,Private room,83,1,25,2019-06-15,1.35,2,361 +22281888,The Fountain House,162836752,Omowumi,Brooklyn,East New York,40.67077,-73.87564,Entire home/apt,169,2,23,2019-06-17,1.36,1,196 +22281921,Room close to mall,34954588,Andres,Queens,Elmhurst,40.74059,-73.86866,Private room,50,2,2,2017-12-30,0.11,1,365 +22282419,The real New York experience,80824522,Nat,Brooklyn,Bushwick,40.70208,-73.93259,Private room,55,1,19,2019-06-16,1.03,2,74 +22282513,Private Room on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.69049,-73.93262,Private room,65,2,23,2019-06-21,1.25,4,319 +22282585,New Private studio-apartment,107296819,Alexandra,Manhattan,East Harlem,40.79576,-73.93735,Entire home/apt,110,1,69,2019-06-16,3.64,3,9 +22283652,Simple stay in heart of Chelsea / Meatpacking,24478039,Harutoshi,Manhattan,Chelsea,40.74247,-74.00234,Entire home/apt,285,3,1,2018-01-01,0.05,1,0 +22284181,Real 1 BR Musical Gem in Times Sq/Midtown West,6447195,Aurora,Manhattan,Hell's Kitchen,40.76284,-73.99034,Entire home/apt,180,3,33,2019-03-30,1.79,2,0 +22288453,Private & Cozy Harlem/Washington Heights Room,126397762,Xavier,Manhattan,Harlem,40.83034,-73.94017,Private room,69,1,55,2019-01-12,2.91,3,0 +22289185,VERY LARGE STUDIO APT BEST LOCATION IN NYC,24715671,Julia,Manhattan,Midtown,40.74197,-73.98328,Entire home/apt,199,30,1,2018-06-27,0.08,4,177 +22290340,Brooklyn House,58380725,Osei,Brooklyn,Flatbush,40.65099,-73.95596,Entire home/apt,95,2,90,2019-07-04,4.79,1,73 +22290370,MODERN HIPSTER LOFT,11680404,Corina,Brooklyn,Williamsburg,40.71304,-73.96252,Entire home/apt,140,5,0,,,1,0 +22290580,A Holiday getaway in the heart of East Village,162914079,Abhi,Manhattan,East Village,40.72923,-73.98251,Private room,99,1,1,2018-01-02,0.05,1,0 +22290967,(Room 102)法拉盛舒适轻奢套房,75216989,Wenqin,Queens,Flushing,40.76475,-73.83,Private room,79,2,14,2019-06-12,1.71,4,320 +22291736,Perfect location - Clean and spacious!,37172480,Ken,Manhattan,Hell's Kitchen,40.76565,-73.98708,Entire home/apt,225,1,41,2019-07-07,2.20,1,11 +22291811,Charming flat with Williamsburg view,162923870,Etienne,Brooklyn,Williamsburg,40.71967,-73.9643,Entire home/apt,149,9,13,2019-07-01,0.86,1,29 +22291938,"Modern, Private Williamsburg Bedroom",83170219,Hannah,Brooklyn,Williamsburg,40.7052,-73.94397,Private room,60,2,1,2018-02-13,0.06,1,0 +22292535,Söderläge - Spacious Queen bedroom in Williamsburg,13262918,Glenn,Brooklyn,Williamsburg,40.71153,-73.95743,Private room,85,1,13,2019-04-27,0.73,3,11 +22292617,"Renovated apt, Harlem brownstone, private entrance",4520714,Masha,Manhattan,Harlem,40.81529,-73.94367,Entire home/apt,130,1,77,2019-06-22,4.16,1,21 +22292865,"BEDSTUY BK - PAD +SHORT/ LONG TERM STAYS +NO EVENTS",132130978,Mrs.,Brooklyn,Bedford-Stuyvesant,40.68644,-73.93967,Entire home/apt,150,1,50,2019-06-30,2.96,1,335 +22293021,Huge and Beautiful Room in a Very Nice Apartment.,137136024,Hector,Queens,Maspeth,40.72575,-73.89456,Private room,75,1,4,2018-02-15,0.22,1,0 +22293394,Hippie 1 Bedroom in Chinatown,48086015,Amira,Manhattan,Chinatown,40.71532,-73.99903,Entire home/apt,150,7,2,2017-12-19,0.11,1,0 +22293539,Room for sublet in lovely Ridgewood!,15788530,Diana,Queens,Ridgewood,40.70188,-73.90429,Private room,60,7,2,2018-01-04,0.11,2,0 +22294028,Spaced and beautiful - manhattan - close to subway,12531773,Renata,Manhattan,Harlem,40.82258,-73.95368,Private room,80,4,68,2019-07-06,3.65,2,102 +22294102,"Chic, Cozy Gramercy Apartment",9893943,Nicole,Manhattan,Gramercy,40.73445,-73.98423,Entire home/apt,220,3,12,2019-01-01,0.81,1,0 +22294260,Great 2bedroom in harlem,122919892,John,Manhattan,Harlem,40.82392,-73.94537,Entire home/apt,129,5,0,,,1,0 +22294283,Outdoor Space 2bed 2bath plus POOL,113805886,Yaacov,Manhattan,Upper East Side,40.7771,-73.9502,Entire home/apt,245,31,4,2019-04-21,0.29,33,342 +22294297,5th Avenue One Bedroom,4085770,Omar,Manhattan,Upper East Side,40.78208,-73.959,Entire home/apt,500,19,0,,,1,0 +22294357,One bed near All transportation step from Park,113805886,Yaacov,Manhattan,Upper East Side,40.77746,-73.95043,Entire home/apt,135,31,2,2018-01-08,0.11,33,338 +22294649,Cozy bedroom+bath for 2 in historic Park Slope NYC,6997016,Christine,Brooklyn,Park Slope,40.6718,-73.98251,Private room,190,2,57,2019-06-24,3.08,1,354 +22295038,Home away from Home-Close to trains and JFK,58237901,Nicola,Brooklyn,Brownsville,40.66116,-73.90305,Entire home/apt,100,4,29,2019-06-11,1.57,1,281 +22295587,Two Floor Penthouse Apartment with Private Terrace,152629314,Rahul,Manhattan,East Village,40.72454,-73.97573,Private room,80,3,2,2018-01-25,0.11,1,0 +22295591,Huge Luxury Brooklyn Apartment,70079814,Natia,Brooklyn,Sheepshead Bay,40.60583,-73.95165,Entire home/apt,200,3,4,2019-01-02,0.26,1,0 +22295702,East Village Studio Apartment,135587084,Cami,Manhattan,East Village,40.72504,-73.98327,Entire home/apt,150,12,17,2019-01-09,0.90,1,0 +22295848,Boutique Style Studio in the Heart of Astoria,1626430,Cristina,Queens,Ditmars Steinway,40.77714,-73.91071,Entire home/apt,120,2,81,2019-06-22,4.31,1,27 +22295960,Chelsea Gallery Space for events and exhibitions,3750764,Kevin,Manhattan,Chelsea,40.75081,-74.00396,Private room,2010,1,0,,,6,364 +22296097,Chelsea Gallery Space for events and exhibitions,3750764,Kevin,Manhattan,Chelsea,40.74913,-74.00373,Private room,3210,1,0,,,6,364 +22296197,"Chelsea Gallery for events, exhibitions, fashion",3750764,Kevin,Manhattan,Chelsea,40.74888,-74.00481,Entire home/apt,4160,1,0,,,6,364 +22300341,Spacious Comfortable Williamsburg- 1 Bedroom Apt,4238402,Will,Brooklyn,Williamsburg,40.71558,-73.94801,Entire home/apt,117,2,1,2017-12-28,0.05,1,0 +22301670,Charming One Bedroom In Cobble Hill,162456824,Marie,Brooklyn,Cobble Hill,40.68696,-73.99955,Entire home/apt,125,1,68,2019-06-23,3.65,2,142 +22302452,High Ceilings & Great Light,1371055,Bonny,Brooklyn,Prospect Heights,40.67764,-73.96632,Private room,70,5,18,2019-06-03,0.98,1,8 +22302587,Charming room perfect to spend Summer,8358654,Daniela,Brooklyn,Williamsburg,40.71796,-73.95522,Private room,75,2,0,,,1,0 +22302785,Stunning Loft Penthouse Central Park Terrace New,157757066,Cynthia,Manhattan,Upper East Side,40.76683,-73.96867,Entire home/apt,1046,1,10,2018-10-07,0.54,1,365 +22303234,"Bright, spacious room in Williamsburg!",4421803,Jen,Brooklyn,Williamsburg,40.71092,-73.94765,Private room,60,4,0,,,1,0 +22303856,Large 1-bedroom in Chelsea (unfurnished),4364889,Simone,Manhattan,Chelsea,40.74696,-73.99556,Entire home/apt,152,1,4,2017-12-31,0.21,1,0 +22303888,"Convenient to the east and west, private basement.",310296,Jaqui And Mark,Brooklyn,Prospect-Lefferts Gardens,40.66255,-73.94676,Entire home/apt,65,1,57,2019-06-29,3.07,2,53 +22303956,LARGE Best Loc & View of NYC! 10 Min to Time Sqr,44682387,Sky,Brooklyn,Greenpoint,40.72857,-73.95688,Private room,195,2,72,2019-07-01,3.93,2,165 +22303992,Private Master Bedroom in Harlem,49404324,Brandon,Manhattan,Morningside Heights,40.80751,-73.95745,Private room,70,2,0,,,1,0 +22304458,Loft w/Private Rooftop. Spectacular NYC Views,2435822,Alice,Brooklyn,Williamsburg,40.70781,-73.94479,Entire home/apt,225,2,57,2019-06-17,3.08,1,59 +22304644,Shannan's Place,163046191,Elma,Brooklyn,Fort Greene,40.68522,-73.97115,Private room,57,28,2,2019-05-31,0.11,2,77 +22304663,Charming House with Manhattan Views!,163047898,Erika,Queens,Long Island City,40.74801,-73.95032,Entire home/apt,160,2,2,2018-01-01,0.11,1,0 +22304757,Unique SoHo Oasis,134031945,Chloé,Manhattan,SoHo,40.72516,-74.00242,Entire home/apt,200,3,0,,,1,0 +22305350,"Bright, clean, private room in good neighborhood",335016,Theresa,Brooklyn,Bushwick,40.70398,-73.92403,Private room,29,2,7,2018-08-13,0.38,1,0 +22305797,Cozy bedroom in a share apartmet,65339610,Carlos,Bronx,Norwood,40.87504,-73.88476,Private room,200,3,0,,,1,83 +22305896,Charming Garden Apartment in Brooklyn Brownstone,530553,Jacob,Brooklyn,Bedford-Stuyvesant,40.68156,-73.92036,Entire home/apt,149,2,70,2019-07-01,4.48,1,309 +22305946,Spacious room in a cosy BedStuy palace,79704239,Alice,Brooklyn,Bedford-Stuyvesant,40.68891,-73.9548,Private room,45,5,0,,,2,0 +22306163,Lovely Quiet Room in Bushwick Brooklyn,4162008,Isaac And Izzy,Brooklyn,Bushwick,40.69914,-73.93394,Private room,45,1,1,2018-01-02,0.05,2,0 +22306300,Stylish spacious 1 bd centrally located in Midtown,10730227,Juliana,Manhattan,Hell's Kitchen,40.75547,-73.99513,Entire home/apt,162,3,9,2019-01-01,0.49,1,0 +22306777,"Spacious, luminous, furnished Bushwick room",19561602,Bartolomeo,Brooklyn,Bushwick,40.69613,-73.93264,Entire home/apt,50,5,2,2018-01-13,0.11,1,0 +22306848,2 bedroom Central Park West,110704364,Francisco,Manhattan,Upper West Side,40.77654,-73.97694,Entire home/apt,400,1,0,,,1,0 +22306969,Cozy 1BR Woodside (20min - midtown&Bus from LGA),3161518,Brian & Akiko,Queens,East Elmhurst,40.75689,-73.89763,Entire home/apt,110,1,3,2018-01-05,0.16,1,0 +22307078,Cozy studio in Gramercy,36163515,Margaret,Manhattan,Gramercy,40.73419,-73.98132,Entire home/apt,90,2,3,2018-07-23,0.17,1,0 +22307248,Cool & Calm 3 Bed Apartment in Beautiful Bedstuy,18146050,Joseph,Brooklyn,Bedford-Stuyvesant,40.68029,-73.94693,Entire home/apt,38,4,5,2018-06-11,0.27,1,0 +22307800,Cozy One Bedroom Apt in Brooklyn Close to Beaches,163077876,Diego,Brooklyn,Gravesend,40.58486,-73.99004,Entire home/apt,59,2,42,2019-06-19,2.33,1,35 +22307861,Lovely 1BR Harlem apartment,16004068,Rachel,Manhattan,Harlem,40.80379,-73.95257,Entire home/apt,105,3,4,2018-05-28,0.21,1,0 +22308102,Cozy Triplex in UES with 2 balconies near Bloomies,109270724,Juno,Manhattan,Upper East Side,40.76327,-73.96197,Entire home/apt,210,1,1,2017-12-28,0.05,1,0 +22308180,Sunny Manhattan Studio,2424166,Mikhael,Manhattan,Upper East Side,40.77627,-73.95124,Entire home/apt,150,3,0,,,1,0 +22308705,"Private, Roomy, Convenient Williamsburg Hotspot",23165019,Alex,Brooklyn,Williamsburg,40.70689,-73.9506,Private room,250,1,8,2018-06-13,0.43,1,0 +22308824,Clean and Comfy Home,56704653,Jesus,Manhattan,East Harlem,40.7976,-73.93388,Entire home/apt,170,2,0,,,1,0 +22309027,Brownstone Garden Apartment,6154298,Nick,Brooklyn,Clinton Hill,40.68585,-73.96461,Entire home/apt,115,2,0,,,1,0 +22309304,Upper class in the upper east,75872359,Meryl,Manhattan,Upper East Side,40.77835,-73.94756,Entire home/apt,150,2,1,2018-01-01,0.05,1,0 +22309568,My home.,162546695,Alexander,Queens,Rego Park,40.72946,-73.86277,Private room,100,1,0,,,1,83 +22309616,"Cool and Cozy living room, confortable couch .",160159744,Julio,Manhattan,East Village,40.72299,-73.97809,Shared room,42,2,37,2019-06-30,3.02,1,1 +22309710,"Newly Renovated, by LaGuardia Airport",163098446,Md,Queens,East Elmhurst,40.76314,-73.88619,Entire home/apt,125,1,77,2019-07-05,4.50,1,348 +22309725,Astoria clean private room,135446962,G,Queens,Astoria,40.76797,-73.92807,Private room,50,3,0,,,1,0 +22309732,1 bedroom near Wall Street,6933112,Josie,Manhattan,Financial District,40.70711,-74.01526,Private room,130,1,0,,,2,0 +22309866,Cozy apartment close to subway & good restaurants,72410854,Nikolina,Queens,Astoria,40.75824,-73.92822,Entire home/apt,100,4,0,,,1,0 +22309943,Private room in Brooklyn 3 blocks from subway.,163087464,David,Brooklyn,Bedford-Stuyvesant,40.69131,-73.95666,Private room,59,4,53,2019-07-02,2.88,1,39 +22310190,COZY&QUITE WITH PARK AROUND THE BLOCK BARS & SHOPS,163103487,Raquel,Manhattan,East Village,40.72515,-73.98422,Entire home/apt,199,7,13,2019-06-11,0.82,1,349 +22312190,Art Lover’s Dream! Chelsea Delight!,52602009,Norman,Manhattan,Chelsea,40.75071,-74.00247,Private room,84,2,119,2019-06-19,6.44,1,20 +22312886,Charming West Village Studio Pied-A-Terre.,1723702,Ilse,Manhattan,West Village,40.74,-74.0079,Entire home/apt,80,60,1,2017-12-30,0.05,1,0 +22316496,Cozy private room in the heart of Nolita / Soho,8726000,Larasati,Manhattan,Nolita,40.72347,-73.99302,Private room,70,2,2,2019-02-25,0.11,1,0 +22318150,Large Loft Apartment - Private Terrace and Rooftop,34403474,Kwame,Brooklyn,Crown Heights,40.67546,-73.93171,Entire home/apt,90,2,15,2019-05-05,0.84,1,0 +22318346,Comfy 23rd Floor Washington Heights Home,985926,Erin,Manhattan,Washington Heights,40.84385,-73.94324,Entire home/apt,75,20,0,,,1,0 +22321208,Elegant Apartment for Holidays in East Village,65390606,Carol,Manhattan,East Village,40.72677,-73.98267,Entire home/apt,150,5,1,2017-12-18,0.05,1,0 +22321252,Private bedroom in a doorman building in NYC,138347327,Ariel,Manhattan,Hell's Kitchen,40.76684,-73.98539,Private room,87,1,2,2019-03-18,0.13,1,0 +22321322,Spacious & Comfy Apt in Heart of NYC,964882,Pedro,Manhattan,Kips Bay,40.74435,-73.98097,Entire home/apt,140,4,1,2017-12-26,0.05,1,0 +22321708,Quiet and Spacious Bedroom by the Astoria Park,20780421,Manca,Queens,Ditmars Steinway,40.77626,-73.92462,Private room,49,7,10,2019-06-01,0.55,1,0 +22321716,"Entire Apart, Close to Airport 15 min to Manhattan",163189326,Pema,Queens,Jackson Heights,40.75439,-73.89532,Entire home/apt,105,1,64,2019-06-21,3.60,1,314 +22321796,Brooklyn cute corner-unit modern apartment!,68822704,Stefanie,Brooklyn,Bedford-Stuyvesant,40.68345,-73.95078,Entire home/apt,60,4,1,2018-01-02,0.05,1,0 +22322311,Cute and Cozy One Bedroom with optional Futon Bed!,65292898,Callie,Manhattan,East Harlem,40.79733,-73.93695,Private room,75,2,0,,,1,0 +22322326,Cozy room next to TimesSquare.,21577034,Anda,Manhattan,Hell's Kitchen,40.76384,-73.99309,Private room,65,1,4,2019-06-29,0.94,2,153 +22322524,Alcove Studio in the heart of Williamsburg,103259676,Flávio,Brooklyn,Williamsburg,40.72021,-73.95695,Entire home/apt,150,4,14,2019-01-07,0.77,1,0 +22323325,Cozy One-Bedroom In Heart of Williamsburg,30466311,Alexandra,Brooklyn,Williamsburg,40.71787,-73.9587,Entire home/apt,125,3,17,2019-06-30,1.10,1,14 +22324099,Comfortable room in Manhattan Chinatown Apartment,21028594,Gorm,Manhattan,Chinatown,40.71623,-73.99521,Private room,41,15,3,2018-01-16,0.16,1,0 +22324649,Stylish Apartment with Stunning Roof,33714151,Rory,Brooklyn,Bushwick,40.69348,-73.92497,Private room,100,2,0,,,1,89 +22324705,Spacious 1 Bedroom in the Heart of Union Square!,163210909,Mona,Manhattan,Gramercy,40.73509,-73.98637,Entire home/apt,249,3,8,2019-05-19,0.48,1,175 +22325054,UWS 2Bed Duplex Near Central Park!,1227833,Fran,Manhattan,Upper West Side,40.78012,-73.97874,Entire home/apt,250,2,0,,,1,0 +22325426,Convenient and friendly home away from home,163217478,Myriam,Queens,East Elmhurst,40.75966,-73.88295,Private room,45,1,140,2019-07-06,7.47,2,81 +22325453,1 BR Close to Central Park,153660271,Gina,Manhattan,Harlem,40.8041,-73.95252,Private room,150,1,28,2018-12-30,1.49,1,68 +22325617,Charming room in Brooklyn,52109239,Joanne,Brooklyn,Bedford-Stuyvesant,40.68195,-73.92113,Private room,40,3,0,,,1,0 +22326826,Prime Williamsburg 1BR steps from the L train,74155984,Kathleen,Brooklyn,Williamsburg,40.71214,-73.94204,Entire home/apt,170,2,1,2018-01-01,0.05,1,0 +22327260,"Incredible Tribeca Loft: natural light, spacious",11243357,Sohel,Manhattan,Tribeca,40.72345,-74.01001,Entire home/apt,299,4,3,2018-05-07,0.16,1,0 +22327622,Teranga (Hospitality) in Brooklyn,25188010,Liz,Brooklyn,Bedford-Stuyvesant,40.68556,-73.95417,Private room,55,3,15,2019-07-01,0.81,1,66 +22327744,Sunny room in Queens for couple,79298323,Crispy,Queens,Maspeth,40.73449,-73.89227,Private room,45,5,12,2019-06-25,0.99,3,320 +22328089,*BEAUTIFUL BEDROOM**SUBWAY CLOSE!!,156259857,Joao,Brooklyn,Bushwick,40.68116,-73.90502,Private room,49,1,26,2019-05-31,1.41,3,115 +22328175,Big room with private bath - close to Manhattan,161351021,V,Queens,Woodside,40.75541,-73.90272,Private room,475,1,7,2018-03-01,0.37,2,0 +22328208,Gorgeous Room in Heart of Harlem,29346825,Shemel,Manhattan,Harlem,40.81688,-73.94132,Private room,34,1,1,2017-12-22,0.05,1,0 +22328478,"Sunny, Cozy, and a View!",31369576,Sivan,Brooklyn,Prospect-Lefferts Gardens,40.66057,-73.94373,Entire home/apt,129,2,3,2018-11-05,0.16,1,0 +22328585,Home sweet Harlem,154494056,Scarlet,Manhattan,Harlem,40.81991,-73.95248,Private room,75,1,4,2018-05-14,0.22,1,0 +22328689,Private room in GREENPOINT(hosting females only),12788163,Lina,Brooklyn,Greenpoint,40.72264,-73.9437,Private room,95,3,2,2018-01-03,0.11,1,23 +22329791,"Time Square ,Super Clean and Safe 2bedroom",145844983,Eric,Manhattan,Hell's Kitchen,40.76258,-73.9887,Entire home/apt,180,4,48,2019-07-05,2.58,1,61 +22330756,Cosy private Bedroom in Williamsburg,54658419,Pierre,Brooklyn,Williamsburg,40.71127,-73.95898,Private room,100,3,10,2019-04-25,0.55,2,0 +22331268,Charming West Village Apartment,4457329,Mia,Manhattan,West Village,40.7375,-74.00493,Entire home/apt,220,2,0,,,1,0 +22335475,Millions of View Luxury Apartment In Manhattan,31660984,Echo,Manhattan,Chelsea,40.75271,-73.99573,Entire home/apt,205,3,0,,,1,0 +22336218,Greenpoint Sun Garden,108150300,Cassi,Brooklyn,Greenpoint,40.7257,-73.95553,Private room,100,1,5,2019-06-24,0.27,2,163 +22336299,Boho Chic One Bedroom In Cobble Hill Brookyn,134948140,Tina,Brooklyn,Cobble Hill,40.68669,-73.99909,Entire home/apt,112,1,62,2019-06-17,3.33,1,151 +22336423,The Double U,40371157,Jimmy,Bronx,Longwood,40.82441,-73.90361,Private room,125,1,25,2018-12-09,1.34,2,0 +22336899,Brooklyn Home with Jacuzzi Tub and Backyard,15854250,Stephen,Brooklyn,Clinton Hill,40.69573,-73.96744,Entire home/apt,102,13,6,2019-06-10,0.33,1,0 +22337162,Comfortable and clean room,861330,Joseph,Brooklyn,Williamsburg,40.70232,-73.94587,Private room,40,10,0,,,3,0 +22337421,Cozy Sunny Private Room in Bed-Stuy Brooklyn,5891676,Miao,Brooklyn,Bedford-Stuyvesant,40.69157,-73.95522,Private room,65,2,40,2018-08-31,2.20,1,0 +22337426,Quaint NYC One Bedroom,57818788,Morgan,Manhattan,East Harlem,40.81038,-73.93809,Entire home/apt,100,3,3,2018-01-21,0.16,1,0 +22338292,Cute small one bedroom in Queens Woodside,5795423,Alexandre,Queens,Sunnyside,40.74632,-73.91299,Entire home/apt,80,1,3,2019-05-15,0.21,1,1 +22338296,Two Bedroom UES Apartment with Great Amenities,16026189,Rob,Manhattan,Upper East Side,40.77604,-73.951,Entire home/apt,200,2,8,2019-05-26,0.50,2,3 +22338304,"Brand New, Furnished 1 bedroom apartment",160726948,Mike,Manhattan,Kips Bay,40.74404,-73.97887,Entire home/apt,100,30,6,2019-04-01,0.45,2,271 +22338452,Comfortable East Village 1 Bedroom,4122771,Kara,Manhattan,East Village,40.72813,-73.98132,Entire home/apt,175,2,0,,,1,0 +22338613,"Quiet, comfortable true one bedroom near Columbia",52593822,Hannah,Manhattan,Harlem,40.83034,-73.94787,Entire home/apt,115,1,0,,,1,0 +22338850,**BUDGET private room w/backyard,154258141,Elsie,Brooklyn,Bushwick,40.68731,-73.91669,Private room,45,3,10,2019-05-29,0.90,10,322 +22338901,Serene Studio on the best street in Hells Kitchen!,58253835,Jake,Manhattan,Hell's Kitchen,40.75895,-73.99502,Entire home/apt,70,7,0,,,1,0 +22339165,Semi private room in great apartment,922478,Brad,Brooklyn,Clinton Hill,40.68232,-73.96043,Shared room,50,4,15,2018-08-27,0.81,2,0 +22339218,*Lp) Amazing Private Room in Brooklyn,154258141,Elsie,Brooklyn,Bushwick,40.68683,-73.91692,Private room,60,2,41,2019-06-12,2.46,10,362 +22339259,Cozy affordable room close to Express station!,64018594,Daphne,Manhattan,Harlem,40.80966,-73.95299,Private room,90,1,1,2017-12-31,0.05,2,0 +22339264,Private Sunny Bushwick Apartment,4534686,Maxwell,Brooklyn,Bushwick,40.69854,-73.9235,Entire home/apt,110,5,3,2018-12-31,0.17,1,0 +22339390,Easin' on the Artist Row,162436632,Kaj,Manhattan,East Village,40.7226,-73.97591,Private room,65,7,9,2019-05-06,0.71,1,144 +22339410,Cozy Room in East Williamsburg,38500165,Mikayla,Brooklyn,Williamsburg,40.70683,-73.94323,Private room,70,30,0,,,1,0 +22339430,*Ep) Beautiful Private Room 20 min to Manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68804,-73.91493,Private room,75,2,46,2019-06-24,2.65,10,360 +22339572,*Tr) Charming Private Room 20 min to manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68822,-73.91639,Private room,64,2,46,2019-06-19,2.67,10,352 +22339698,A Lovely 1 Bedroom Apartment Near Transportation !,163329653,Blandine,Brooklyn,East Flatbush,40.65145,-73.94553,Entire home/apt,120,2,83,2019-07-01,4.43,1,346 +22339754,Artistic Chic East Village Flat!,32926963,Garrett,Manhattan,East Village,40.72582,-73.97558,Private room,95,2,13,2019-01-02,0.70,1,0 +22339757,*Dg) Delightful Private Room 20 min to Manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68666,-73.91466,Private room,67,2,27,2019-06-21,1.55,10,359 +22339967,Great Room on UES,84679277,Joe,Manhattan,Upper East Side,40.77817,-73.95096,Private room,60,2,2,2019-05-05,0.30,1,0 +22340093,Newly Furnished 2BR~Prime UES~CPark~subway2 blocks,162280872,Izi,Manhattan,Upper East Side,40.774,-73.94932,Entire home/apt,150,30,3,2019-06-17,0.25,13,147 +22340384,Great Place! Great Space! Welcome 2 My BK Place!,18049970,Lou,Brooklyn,Brownsville,40.65948,-73.90084,Entire home/apt,175,3,56,2019-07-08,3.00,2,288 +22340790,Spacious 2 Bed on 34th & Lex,45377675,Karan,Manhattan,Kips Bay,40.74505,-73.97867,Entire home/apt,220,5,1,2018-01-01,0.05,1,0 +22340808,Manhattan Club Luxury Condo Central Park - Suite,16830841,Mara,Manhattan,Midtown,40.76548,-73.98035,Entire home/apt,365,1,13,2019-07-06,0.71,5,65 +22340915,Spacious Luxury Condo with VIP Amenities,8676157,Jet,Brooklyn,Williamsburg,40.71638,-73.93988,Entire home/apt,325,30,0,,,1,179 +22341035,"Cozy room 4 one JFK, LGA & subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68804,-73.80564,Private room,59,1,21,2019-06-05,1.53,3,348 +22341308,Large Private Room Perfect for 3-4 people!,155109689,Dolores,Brooklyn,Greenpoint,40.73322,-73.95177,Private room,121,1,8,2019-06-12,0.44,2,91 +22341660,"Cozy Private Room in Astoria, NY",67375050,Asema,Queens,Ditmars Steinway,40.77352,-73.91593,Private room,50,3,0,,,1,0 +22342020,Small room in Crown Heights,33060882,Antoine,Brooklyn,Crown Heights,40.67767,-73.95764,Private room,32,1,1,2018-01-22,0.06,1,0 +22342076,Modern style brand new building in Brooklyn!!,75578529,Saki,Brooklyn,Flatbush,40.649,-73.95248,Private room,49,2,0,,,1,0 +22342382,"MASTER, BEDROOM CLOSE TO LGA/TO MANHATTAN",44213272,Miss. G.,Queens,Ditmars Steinway,40.77233,-73.91251,Private room,50,2,38,2019-07-01,2.04,5,301 +22342547,3 BR apt on 2nd floor. Close to airport & Shopping,152371030,KerryAnna,Queens,Springfield Gardens,40.66566,-73.76002,Entire home/apt,95,2,44,2019-04-27,2.53,1,190 +22343079,Sunny and Private Room close to Manhattan!!!,107953084,Ervita,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95326,Private room,75,2,61,2019-07-02,3.26,3,265 +22343274,holiday sublet,163366045,Abby,Manhattan,Harlem,40.81379,-73.95233,Private room,1000,11,0,,,1,0 +22343429,Spacious Greenwich Village Apt near Wash Sq. Park,15927874,Mike,Manhattan,Greenwich Village,40.72941,-74.00004,Entire home/apt,191,3,1,2017-12-20,0.05,1,0 +22343553,Greenpoint Loft,1177128,James Nathan,Brooklyn,Greenpoint,40.72529,-73.95595,Private room,125,3,9,2018-07-01,0.49,1,0 +22343658,"+Williamsburg Private Bedroom, Private backyard!",2772294,Nicolas,Brooklyn,Williamsburg,40.71136,-73.94527,Private room,55,14,5,2019-05-26,0.27,1,90 +22343909,Sublevel Penthouse Suite,52586141,Lance,Brooklyn,Bedford-Stuyvesant,40.69454,-73.94895,Entire home/apt,110,4,40,2019-06-30,2.37,1,50 +22343961,✪Modern house @ Williamsburg | 15min to Manhattan✪,122177964,Henry,Brooklyn,Williamsburg,40.70192,-73.94169,Entire home/apt,250,1,95,2019-06-20,5.04,1,79 +22344067,The best place to rest and relax,160468444,Halim,Brooklyn,Brighton Beach,40.57991,-73.95657,Private room,85,60,0,,,1,358 +22344396,Sunny room in Bushwick,13394563,Virginia,Brooklyn,Bushwick,40.69112,-73.904,Private room,45,5,2,2018-03-14,0.12,1,0 +22344445,Times Square in NY,162966456,Dan,Manhattan,Theater District,40.75829,-73.98833,Private room,150,1,0,,,1,0 +22344483,Greenpoint Pad,163376694,Stephanie,Brooklyn,Greenpoint,40.72288,-73.9514,Entire home/apt,125,21,24,2019-04-29,1.30,1,264 +22345271,Apartment in Trendy and Vibrant Lower East Side,163384875,Sarah & Burak,Manhattan,Lower East Side,40.72002,-73.98893,Entire home/apt,185,2,92,2019-06-30,4.88,1,120 +22345676,Bushwick/BedStuy Studio Apartment,2921109,Alice,Brooklyn,Bedford-Stuyvesant,40.69104,-73.92886,Entire home/apt,104,2,31,2019-06-06,1.69,1,166 +22345693,Cozy room in Bushwick Collective,14805627,Giuseppe,Brooklyn,Bushwick,40.7032,-73.92703,Private room,45,2,8,2018-09-03,0.43,1,0 +22346131,MODERN HAVEN IN CITY,156187884,Mairo,Queens,Astoria,40.75596,-73.92798,Entire home/apt,135,2,44,2019-06-20,2.37,1,83 +22346154,Beautiful Room In Our Friendly Brooklyn Home,5064699,Juliana,Brooklyn,Bedford-Stuyvesant,40.68772,-73.94094,Private room,55,2,5,2018-09-23,0.27,2,0 +22346441,"Private room for 4 JFK, LGA, Subway to Manhattan",162142087,Christian,Queens,Jamaica,40.68695,-73.8045,Private room,79,1,61,2019-06-18,3.30,3,151 +22349506,Shared room in nice surroundings in Ridgewood!!,134293540,Valentin,Queens,Ridgewood,40.70615,-73.90367,Shared room,27,31,5,2018-07-06,0.27,4,6 +22350243,Nice Penthouse very close to Manhattan and airport,163421878,Any,Queens,Woodside,40.74416,-73.91137,Private room,75,1,37,2019-06-30,2.09,3,344 +22352661,Modern 1 Bedroom in East Williamsburg,11742675,Malik,Brooklyn,Williamsburg,40.7078,-73.94619,Entire home/apt,135,1,24,2019-06-27,1.42,2,36 +22352793,"Cozy, impeccable, sunlit West Village studio",108275491,Juan,Manhattan,Chelsea,40.74093,-74.00285,Entire home/apt,110,2,1,2017-12-28,0.05,1,0 +22352928,Bright Brooklyn garden level apartment,1226742,Johnny,Brooklyn,Clinton Hill,40.68245,-73.96321,Entire home/apt,200,1,39,2019-06-30,2.44,2,362 +22353249,Chambre spacieuse,44410626,Cindy,Manhattan,Inwood,40.86318,-73.9221,Private room,50,4,0,,,1,0 +22353870,Great bedroom in cozy apt. close to Central Park.,19543830,Gabe,Manhattan,Harlem,40.7987,-73.9531,Private room,60,4,1,2018-12-26,0.15,1,0 +22353899,Chelsea Studio,733168,Farid,Manhattan,Chelsea,40.74761,-74.00584,Entire home/apt,175,5,3,2018-08-11,0.16,1,0 +22354307,Location location soho cozy apt heart of NYC,163458740,Blair,Manhattan,SoHo,40.72547,-74.0021,Entire home/apt,190,1,94,2019-07-01,5.18,1,187 +22354348,"Hotel at Time Square, only $116/day (Final)",52181900,Melanie,Manhattan,Midtown,40.75498,-73.9903,Entire home/apt,100,1,0,,,1,0 +22354598,Ideal studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74979,-73.97551,Entire home/apt,111,30,1,2019-04-06,0.32,50,317 +22355018,Sunlit BR+private bath in pristine Nolita loft,7465567,Nick,Manhattan,Chinatown,40.71835,-73.99641,Private room,130,2,2,2018-04-12,0.13,2,0 +22355365,Master room w/ Private Bath in Financial District,100701558,Emeka,Manhattan,Financial District,40.70521,-74.00678,Private room,100,1,0,,,1,0 +22355505,"Large, cozy, quiet & beautiful room West Harlem",29003805,Akemi,Manhattan,Harlem,40.82592,-73.94629,Private room,44,2,1,2017-12-26,0.05,2,0 +22356093,Great location and amazing place to stay,39150374,Melissa,Manhattan,West Village,40.73638,-73.99763,Private room,100,1,0,,,1,0 +22356352,Simple One Bedroom Brooklyn Apartment,76835453,Frida,Brooklyn,Bushwick,40.69492,-73.91826,Entire home/apt,70,1,2,2018-01-05,0.11,1,0 +22356843,Bright Light Highrise Spacious Room with Balcony,382836,Chemme,Manhattan,Hell's Kitchen,40.75858,-73.99227,Private room,140,4,24,2019-06-30,1.30,4,355 +22356845,The BROOKLYN Room with Outdoor Space,7416563,Timo,Brooklyn,Downtown Brooklyn,40.68962,-73.98489,Entire home/apt,80,4,87,2019-06-16,4.71,1,4 +22357450,Stunning & spacious loft in the heart of W.berg,137822449,Kaitlin,Brooklyn,Williamsburg,40.71845,-73.95533,Entire home/apt,179,2,13,2019-07-02,0.71,1,35 +22357832,Charming Bedroom in Washington Heights!,13575029,Julian,Manhattan,Washington Heights,40.84849,-73.93107,Private room,47,2,3,2018-01-12,0.17,1,0 +22357868,Empire State views from your bedroom,4393509,Lee,Manhattan,SoHo,40.72783,-74.004,Entire home/apt,160,7,1,2018-03-09,0.06,1,0 +22358241,Brooklyn Overnight Crash Pad,82192372,Jessika,Brooklyn,Williamsburg,40.70954,-73.95922,Private room,80,1,0,,,1,0 +22358421,Sex in the City Pad w/ Open City Views PRIME UES!,163489115,Glen,Manhattan,Upper East Side,40.77795,-73.94653,Entire home/apt,110,3,30,2019-06-23,1.62,1,265 +22359767,"Chic 4 BEDROOM, Nearby Metro, Rooftop.",158399244,Ted,Brooklyn,Bushwick,40.68853,-73.91765,Entire home/apt,250,1,103,2019-06-25,5.50,4,69 +22360132,Upper West Side Garden apartment,50578169,Joyce,Manhattan,Upper West Side,40.78242,-73.98381,Entire home/apt,400,3,32,2019-06-23,1.88,1,69 +22360577,"Warm, Modern Williamsburg Apartment",31867329,Rebecca,Brooklyn,Williamsburg,40.71251,-73.94148,Private room,70,1,1,2018-01-03,0.05,1,0 +22360657,Cozy 1 Bedroom in the Heart of Greenwich Village,48858084,Bryant,Manhattan,Greenwich Village,40.73008,-74.00123,Entire home/apt,225,7,0,,,1,0 +22360787,"Friendly, bright & safe first floor Brooklyn gem!",33738190,Jen,Brooklyn,Sunset Park,40.66316,-73.99643,Private room,80,1,0,,,3,0 +22360921,"Safe, clean, bright and cozy first floor BK gem!",33738190,Jen,Brooklyn,Sunset Park,40.66182,-73.99794,Entire home/apt,350,1,2,2018-01-01,0.11,3,0 +22361004,Manhattan NY Luxurious Hotel,160792280,Dez,Manhattan,Midtown,40.76595,-73.98169,Entire home/apt,190,1,0,,,2,0 +22361100,Loft in Times Square with Roof Balcony,30368670,Juan,Manhattan,Hell's Kitchen,40.76282,-73.99184,Entire home/apt,275,180,5,2018-07-17,0.27,2,364 +22361286,"Large one bedroom apartment in Inwood, Manhattan!",2488360,Laura,Manhattan,Inwood,40.86232,-73.93004,Entire home/apt,90,4,18,2018-11-25,0.98,1,0 +22361598,LARGE 1BR WITH AMAZING VIEWS!!,31142123,Hans,Manhattan,Chelsea,40.74826,-73.98928,Entire home/apt,159,4,3,2018-05-05,0.16,1,0 +22361604,Brooklyn Palace,163516658,Calisa,Brooklyn,East New York,40.656,-73.89719,Entire home/apt,80,1,139,2019-06-24,7.65,1,77 +22361657,Friendly and Artsy Brooklyn Bedroom,5778653,Trisha,Brooklyn,Bedford-Stuyvesant,40.69671,-73.94896,Private room,45,1,1,2017-12-31,0.05,1,0 +22361885,Cozy Room in East Village,52243881,Andrea,Manhattan,East Village,40.72318,-73.98342,Private room,65,1,1,2017-12-23,0.05,2,0 +22361893,Studio apartment -PRIVATE,163518918,N,Brooklyn,Williamsburg,40.70803,-73.94255,Entire home/apt,118,3,3,2019-05-24,1.32,1,249 +22362691,Cozy up in family friendly Queens!,7335887,Emily,Queens,Glendale,40.70037,-73.89344,Entire home/apt,60,2,34,2019-06-14,1.89,2,117 +22363371,Clean&Simple 2- Airport delays & Layovers,132341923,Cynthia,Queens,Jamaica,40.68922,-73.78684,Entire home/apt,57,1,91,2019-07-05,5.04,2,57 +22365504,Shared beautiful room at Bed-Stuy near subway,163259257,Vlada,Brooklyn,Bedford-Stuyvesant,40.69512,-73.93705,Shared room,32,30,2,2018-08-22,0.15,1,0 +22366842,Fully equipped room that's 3 mins from L train!,10994664,Alexander,Brooklyn,Bushwick,40.69208,-73.90452,Shared room,29,30,1,2018-12-11,0.14,8,334 +22366866,"Cozy, quiet, clean Room In Brooklyn",4162008,Isaac And Izzy,Brooklyn,Bushwick,40.70086,-73.93423,Private room,44,1,0,,,2,0 +22367196,Sunny Bushwick Room with Holiday Sale Price!,163554531,Joshua,Brooklyn,Bushwick,40.69417,-73.91237,Private room,35,3,0,,,1,0 +22368370,Bedstuy Luxe Condo,139329404,Dmitriy,Brooklyn,Bedford-Stuyvesant,40.68995,-73.95167,Entire home/apt,126,1,9,2018-03-02,0.49,1,0 +22368751,Bright Luxury Apartment with Amazing View of City,20800727,Amirhos,Brooklyn,Fort Greene,40.69064,-73.97898,Entire home/apt,200,5,0,,,1,0 +22370132,Shared HARLEM Loft w/ Private Bedroom/Bath Suite,163574555,Jeffrey,Manhattan,Harlem,40.81245,-73.95131,Private room,120,1,69,2019-07-05,3.73,1,277 +22370339,Beautiful One Bedroom,163576102,Shonelle,Brooklyn,Flatbush,40.63547,-73.9632,Entire home/apt,64,30,2,2019-04-30,0.15,1,268 +22370386,1 Bedroom in 2 bedroom apartment near Central Park,126735001,Deundre,Manhattan,Harlem,40.80106,-73.95905,Private room,78,2,36,2019-06-24,1.94,1,0 +22370388,"Calming FiDi 1BR w/ lux Gym, Speakeasy + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70637,-74.00941,Entire home/apt,271,30,1,2018-08-17,0.09,232,310 +22371082,KING ROOM IN 1500 SQFT WBRG BALLROOM LOFT,2212344,Enrique,Brooklyn,Williamsburg,40.71208,-73.95566,Private room,78,4,4,2019-01-01,0.22,3,0 +22371868,1 Bedroom Apartment in Crown Heights,13753058,María Valentina,Brooklyn,Crown Heights,40.66475,-73.93564,Entire home/apt,65,15,0,,,1,0 +22372893,Bedroom in lovely and welcoming home,94088674,Lewi,Brooklyn,Bedford-Stuyvesant,40.69857,-73.9439,Private room,38,1,2,2018-02-25,0.11,1,0 +22372939,"Spacious entire apartment in Carroll Gardens, BK.",47499199,Sheyla,Brooklyn,Columbia St,40.6827,-74.00265,Entire home/apt,140,3,10,2019-04-16,0.54,1,0 +22373128,Bronx Norwood Apt,163586662,Cory,Bronx,Norwood,40.87446,-73.87453,Private room,187,3,4,2019-07-04,0.22,1,76 +22373272,Historic Crown Heights Townhouse w. Private Yard,156935,Sneha,Brooklyn,Crown Heights,40.66602,-73.94612,Entire home/apt,300,4,28,2019-06-25,1.52,1,179 +22374327,Time Square cozy room to dream big,163602988,Javier,Manhattan,Hell's Kitchen,40.7661,-73.99447,Private room,100,3,22,2019-06-22,1.20,1,13 +22374799,★Spacious 2 b/r apt | 3 beds + WiFi~Sleeps 1-6★,163605956,Jean,Brooklyn,Flatlands,40.62906,-73.92938,Entire home/apt,117,1,24,2019-06-24,1.30,1,328 +22374957,Williamsburg 4 Bedroom - Spacious Warehouse Loft,41218193,Tommy,Brooklyn,Williamsburg,40.7203,-73.95739,Entire home/apt,500,1,0,,,1,0 +22374967,Family Studio near Times Square,48088611,Alberto,Manhattan,Midtown,40.74816,-73.98676,Entire home/apt,158,7,2,2018-03-19,0.12,2,0 +22375950,Private room in beautiful duplex by Lincoln Center,133415438,Nimrod David,Manhattan,Upper West Side,40.77769,-73.97953,Private room,61,10,0,,,1,0 +22376011,"Clean Comfy Affordable Room in Crown Heights, BK",161510806,Stacy,Brooklyn,Crown Heights,40.67739,-73.95561,Private room,60,1,2,2017-12-30,0.11,2,0 +22376064,Brooklyn Chill Space One Bedroom,5524607,Tanya,Brooklyn,Bedford-Stuyvesant,40.68576,-73.91719,Entire home/apt,95,1,35,2019-07-03,2.04,1,28 +22376093,Private Cozy Rustic Escape in Williamsburg,24273714,Aracelis,Brooklyn,Williamsburg,40.71339,-73.93896,Entire home/apt,160,2,34,2019-07-01,1.84,3,272 +22376903,Lily Brooklyn Private Home,163625251,Lily-Thuy,Brooklyn,Sunset Park,40.64339,-74.02191,Entire home/apt,109,3,34,2019-06-22,1.85,1,156 +22376920,"Quiet, Cozy Room | Heart of Midtown! | Steps to UN",163626113,Alexis,Manhattan,Midtown,40.75349,-73.96545,Private room,160,2,107,2019-06-30,5.73,1,49 +22376956,Best view of the Empire State in all NYC!,707534,Nanda,Manhattan,Theater District,40.75462,-73.9864,Entire home/apt,330,2,9,2019-05-28,0.48,1,5 +22377119,法拉盛近地铁舒适单房—cozy room in flushing,52711549,Wynne,Queens,Flushing,40.75837,-73.82268,Private room,50,1,2,2018-01-03,0.11,2,0 +22378688,Lovely apartment,24755691,筱,Queens,Long Island City,40.75673,-73.93609,Private room,50,1,10,2019-06-30,0.53,1,211 +22379163,Cozy room in a big apartment around Myrtle Ave,150891854,Jiyoung,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9369,Private room,23,3,2,2018-01-16,0.11,1,0 +22379701,Private room + full bathroom / lots of sun + dogs,92649019,Sophie,Brooklyn,Crown Heights,40.66921,-73.92624,Private room,68,6,48,2019-06-29,2.59,1,0 +22381052,private room in upper ditmars astoria wifi,97127885,Concetta,Queens,Ditmars Steinway,40.76826,-73.89391,Private room,36,1,5,2018-12-30,0.27,2,250 +22382300,The heart of West Village - close to everything,10347684,Michael,Manhattan,West Village,40.73061,-74.00325,Entire home/apt,190,6,2,2018-05-06,0.12,1,0 +22382863,Williamsburg Luxury Private 1bed1bath.,66837596,Yoo MI,Brooklyn,Williamsburg,40.71908,-73.96442,Private room,140,3,19,2019-06-17,1.03,2,79 +22384473,MASTER BEDROOM IN THE HEART OF MIDTOWN EAST!,46473712,Vanessa,Manhattan,Midtown,40.75225,-73.97067,Private room,185,3,5,2019-03-16,0.27,1,8 +22384717,Upper Manhattan Oasis,3076579,Elisabeth,Manhattan,Inwood,40.86489,-73.92902,Private room,50,3,4,2019-05-12,0.66,1,31 +22384915,King Sized Room in Prospect Lefferts Gardens,1512819,Sydney,Brooklyn,Flatbush,40.65278,-73.95392,Private room,45,3,13,2019-04-06,0.70,5,76 +22385723,"Large, Sunny Bushwick Loft with Rooftop Access",35089676,Francis,Brooklyn,Bushwick,40.69967,-73.92096,Private room,35,1,8,2019-06-14,0.44,1,76 +22386804,Spacious Gem in the heart of NYC,163715101,Ahlem,Manhattan,Hell's Kitchen,40.76402,-73.98909,Entire home/apt,110,2,67,2019-06-23,3.93,1,67 +22387260,Large Private House Apartment Near Yankee Stadium,161902034,Jesus,Bronx,Concourse Village,40.83373,-73.91147,Entire home/apt,140,1,106,2019-06-30,5.70,1,310 +22387338,Large and comfortable 1-BR Brooklyn Apartment!,45485919,George,Brooklyn,Clinton Hill,40.68321,-73.96076,Entire home/apt,120,1,1,2018-01-02,0.05,1,57 +22387499,Peaceful Garden Apartment in Architect's Townhouse,68554866,Andrea & James,Brooklyn,Bushwick,40.68481,-73.90713,Entire home/apt,125,3,27,2019-07-03,2.77,1,41 +22387975,Private room in Williamsburg close to subway,61394859,Katia,Brooklyn,Williamsburg,40.71879,-73.9402,Private room,50,9,0,,,1,0 +22388659,One bedroom apartment New York City,31451485,Alexandre,Manhattan,East Harlem,40.79081,-73.94946,Entire home/apt,130,4,0,,,1,0 +22389020,Upper East Side Living,3693489,Raymond,Manhattan,Upper East Side,40.76944,-73.95252,Entire home/apt,150,2,0,,,1,0 +22389035,Spacious Bright Top Floor Apt w/ Balcony in LIC 1,25944182,Yves,Queens,Sunnyside,40.73874,-73.92961,Private room,68,2,50,2019-07-05,2.84,2,51 +22389071,"5* Modern Lux 2BR2B Midtown Manhattan, River Views",48205496,B,Manhattan,Hell's Kitchen,40.76825,-73.99107,Entire home/apt,199,3,12,2019-06-29,0.65,2,17 +22389258,"Spacious & Sunny 2BD / 2BTH in Chelsea, Manhattan",5769367,Natalie,Manhattan,Chelsea,40.74312,-73.99953,Entire home/apt,450,3,12,2019-05-27,0.65,1,83 +22389296,Spacious Bright Top Floor Apt w/ Balcony in LIC 2,25944182,Yves,Queens,Sunnyside,40.7387,-73.9283,Private room,76,2,53,2019-07-01,3.15,2,76 +22390736,Luxurious Midtown Manhattan Apartment -Ladies Only,163749958,Brianna,Manhattan,Kips Bay,40.74351,-73.97857,Shared room,39,1,4,2019-05-14,0.49,3,324 +22390755,Huge Clean Room in Trendy Bushwick,4043468,Marlee,Brooklyn,Bushwick,40.69523,-73.90871,Private room,48,2,28,2019-07-07,1.51,1,3 +22392030,one bedroom apt for long term stay up to 2 months,151728547,진,Manhattan,Upper West Side,40.77506,-73.98162,Entire home/apt,70,15,0,,,1,0 +22393526,Peaceful Studio Sanctuary In Heart Of Williamsburg,33787022,Tatiana,Brooklyn,Williamsburg,40.71805,-73.9584,Entire home/apt,175,3,12,2018-10-14,0.85,1,0 +22394214,Cozy Apartment in Williamsburg,6757221,Athina,Brooklyn,Williamsburg,40.70912,-73.94813,Entire home/apt,120,6,1,2019-01-02,0.16,2,0 +22395320,Manhattan Luxury Doorman Loft in Midtown South,2257005,Sean,Manhattan,Midtown,40.74989,-73.98231,Private room,100,3,31,2019-03-15,1.80,1,0 +22396507,"Bright, comfy room in Bushwick, huge roof patio",6764450,Amy,Brooklyn,Bushwick,40.69853,-73.92919,Private room,50,2,2,2018-01-01,0.11,1,0 +22397992,Gorgeous open space apartment!,137675040,Brandon,Manhattan,Harlem,40.81455,-73.95122,Private room,90,3,1,2018-05-30,0.07,1,0 +22399042,One bedroom in shared (but empty) apt in Harlem,96437032,Santiago,Manhattan,Harlem,40.82032,-73.95465,Shared room,37,20,0,,,1,0 +22400254,large room and convenient to train and JFK. #4,82367658,John,Queens,Richmond Hill,40.68985,-73.82003,Private room,40,3,7,2019-06-13,0.38,5,313 +22400368,Forest Houses City Getaway (No Hot Water),158568617,Mandela,Bronx,Longwood,40.823,-73.90859,Entire home/apt,60,1,104,2019-06-23,5.61,1,365 +22400476,"Free yoga & sauna, awesome room. Sunny, wood floor",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68105,-73.99267,Private room,53,1,20,2019-03-23,1.29,4,151 +22400510,"Free yoga & sauna, beautiful room. Best hood. Nice",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68168,-73.99291,Private room,120,1,16,2019-05-26,1.05,4,150 +22400568,Perfect Beautiful Modern House in NYC Summer,12898987,Johan,Queens,Ditmars Steinway,40.77537,-73.90279,Entire home/apt,150,3,49,2019-06-05,2.74,1,324 +22400856,Hip and cozy LES apartment,50312214,Isabella,Manhattan,Lower East Side,40.71975,-73.98975,Entire home/apt,115,2,1,2017-12-30,0.05,1,0 +22401048,"Yoga & sauna during your stay, spacious & sunny.",6787883,Gabriela,Brooklyn,Carroll Gardens,40.68243,-73.99334,Private room,59,1,20,2019-06-20,1.23,4,132 +22401504,Charming Private Brooklyn Apartment,163855521,Judith,Brooklyn,East New York,40.6762,-73.87936,Entire home/apt,99,3,66,2019-07-01,3.55,1,254 +22401901,Cozy Upper East Side Studio close to EVERYTHING,10674042,Eric,Manhattan,Upper East Side,40.77641,-73.94616,Entire home/apt,89,2,1,2018-02-08,0.06,1,0 +22403201,Private bedroom Roosevelt island,102442325,Candice,Manhattan,Roosevelt Island,40.76184,-73.94848,Private room,47,1,2,2018-05-25,0.11,1,0 +22403335,Fort Greene Jewel,163877894,JoAnn,Brooklyn,Clinton Hill,40.68933,-73.96879,Entire home/apt,149,29,24,2019-04-23,1.42,1,3 +22404730,"Modern & Cozy 2Bedroom apt. +15min to Times Square.",1417159,James,Manhattan,Harlem,40.8227,-73.94014,Private room,159,4,42,2019-06-15,2.46,1,242 +22406109,COZY STUDIO IN THE HEART OF CENTRAL HARLEM!,54656266,Asya,Manhattan,Harlem,40.81911,-73.93794,Entire home/apt,90,2,38,2019-06-30,2.05,1,25 +22406251,Manhattan room,163905917,Matilda,Manhattan,Hell's Kitchen,40.75692,-73.9979,Private room,80,2,7,2019-01-01,0.38,3,0 +22406991,法拉盛中心近地铁舒适单房—Cozy room in flushing,52711549,Wynne,Queens,Flushing,40.75855,-73.82208,Private room,50,1,16,2019-06-29,0.85,2,1 +22407389,Lovely bright room in Washington Heights,2924286,Patricia,Manhattan,Washington Heights,40.85783,-73.93117,Private room,60,3,10,2018-09-05,0.54,1,0 +22407448,Luxury Large Studio Apt at City Hall Park/Tribeca,16057852,Stacy,Manhattan,Civic Center,40.71194,-74.00704,Entire home/apt,240,4,0,,,1,0 +22408376,Colonial Bdr Near Midtown Manhattan,44213272,Miss. G.,Queens,Ditmars Steinway,40.77611,-73.91481,Private room,37,1,14,2019-01-04,0.83,5,310 +22408527,"Spacious, convenient, and affordable!",36356065,Mohamad,Brooklyn,Bay Ridge,40.63971,-74.03089,Private room,58,1,1,2017-12-25,0.05,1,0 +22408670,Beautiful Brooklyn Apartment,10663089,Zack,Brooklyn,Flatbush,40.63578,-73.95684,Private room,70,3,5,2018-10-29,0.51,1,0 +22409073,The Baltic - A One Bedroom Apartment,162781227,Gareth,Brooklyn,Gowanus,40.68192,-73.98176,Entire home/apt,280,2,7,2018-12-25,0.38,1,0 +22409377,Cosy room in bushwick,100032033,Shaul,Brooklyn,Bushwick,40.68684,-73.91001,Private room,35,1,0,,,1,0 +22409383,Park Slope 15 min to MANHATTAN SLEEPS 10 + INFANT,3532263,Alejandro,Brooklyn,Gowanus,40.67023,-73.99235,Entire home/apt,349,2,19,2019-06-21,1.03,4,363 +22409448,Premier Garden Suite near Columbia University,9470468,Zeleke,Manhattan,Harlem,40.80815,-73.95399,Entire home/apt,120,3,20,2019-07-05,4.96,1,55 +22409676,Great little spot,164048400,Jarryd,Brooklyn,Bushwick,40.70167,-73.93075,Private room,40,1,1,2017-12-30,0.05,1,0 +22409935,Gorgeous Appartment in Prime NYC area,57044398,Ann,Manhattan,Midtown,40.74374,-73.98541,Entire home/apt,450,4,0,,,1,0 +22410246,"Luxury 2 Bedroom, 2 Bathroom Apt with Roof & Gym",54586794,Victoria,Manhattan,Upper East Side,40.76072,-73.96272,Entire home/apt,250,2,1,2017-12-31,0.05,1,0 +22410359,Charming bedroom with huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.7233,-73.94065,Private room,80,2,5,2018-10-28,0.27,2,0 +22411635,"Your insanely quiet, achingly cute, chillspot",11200970,Eve,Brooklyn,Williamsburg,40.71233,-73.94118,Private room,80,1,31,2019-06-25,1.67,1,13 +22411833,Luxury Times Square High Rise,35805776,Rajan,Manhattan,Hell's Kitchen,40.75857,-73.99189,Entire home/apt,300,3,6,2019-05-26,0.32,1,0 +22412331,Subleasing-Room available starting May or earlier,369226,Omur,Queens,Astoria,40.76581,-73.92518,Shared room,40,30,2,2018-05-17,0.11,1,0 +22417648,"Room w/ amazing views, elevator & private bathroom",25064629,Bianca,Manhattan,Two Bridges,40.71291,-73.99463,Private room,119,3,42,2019-06-13,2.26,1,54 +22418899,Central Park Gem,1741413,Austin,Manhattan,Harlem,40.80116,-73.95287,Private room,110,1,5,2018-06-28,0.27,1,0 +22419249,SPACIOUS BROOKLYN STUDIO NEAR MUSEUM,10556923,Chris,Brooklyn,Crown Heights,40.67719,-73.95471,Entire home/apt,110,4,15,2019-05-28,0.83,1,13 +22419704,"The ""TriBeCa LOFT"" #3 | A stylish 2 bed apt",3231509,Annamaria,Manhattan,Tribeca,40.72052,-74.00365,Entire home/apt,499,14,23,2019-05-09,1.27,4,1 +22419930,Private 1 bedroom 10 mins away to Manhattan NYC,162745077,Dorothy,Queens,Long Island City,40.75469,-73.92822,Private room,99,1,23,2019-07-01,1.25,2,93 +22420010,"The ""TriBeCa Loft"" #5 | A brand New 2 beds Loft",3231509,Annamaria,Manhattan,Tribeca,40.71912,-74.0038,Entire home/apt,499,14,14,2019-03-06,0.78,4,298 +22420304,Nice bunkbed room with private bathroom!,164164069,Marcia,Staten Island,Westerleigh,40.61422,-74.13167,Private room,40,2,17,2018-09-07,0.92,1,36 +22420902,Cozy Bedroom East Williamsburg,52221728,Wassym,Brooklyn,Williamsburg,40.70514,-73.94418,Private room,50,4,2,2018-06-09,0.11,1,0 +22421636,Cozy Apartment across Astoria Park,35518413,Suhel,Queens,Ditmars Steinway,40.77692,-73.92385,Entire home/apt,130,1,93,2019-07-01,5.01,2,279 +22421928,Large 2 Bedroom in trendy LIC 5 mins from City.,15387,Simon,Queens,Long Island City,40.74804,-73.94172,Entire home/apt,175,2,8,2018-10-28,0.56,1,0 +22423342,Big room in luxury building-10mins to Manhattan,85678544,Charles,Queens,Long Island City,40.74832,-73.94197,Private room,60,1,4,2018-08-19,0.22,1,0 +22423659,PRIVATE ROOM CLOSE TO MANHATTAN,44213272,Miss. G.,Queens,Astoria,40.76903,-73.91895,Private room,60,1,26,2018-12-31,1.41,5,173 +22425516,Private Bedroom Near Union Square and East Village,164228532,Vivian,Manhattan,East Village,40.73277,-73.98716,Private room,92,3,104,2019-06-20,5.67,2,25 +22429595,Couch in Red Hook,55804009,Bryan And Candace,Brooklyn,Red Hook,40.67981,-74.00446,Shared room,30,1,1,2017-12-31,0.05,1,0 +22431770,Freehand New York- Queen Room,164291123,Freehand,Manhattan,Flatiron District,40.74077,-73.98718,Private room,129,1,47,2019-06-05,2.80,3,364 +22432497,Convenient PRIVATE ROOM in Brooklyn. Near station!,164303137,Mamiko,Brooklyn,Bedford-Stuyvesant,40.69455,-73.93445,Private room,34,4,35,2019-05-25,2.36,2,5 +22432585,Peaceful Escape |Sunny+Modern| Close to Everything,3244298,Shek,Manhattan,East Harlem,40.79202,-73.93999,Private room,95,2,8,2019-05-13,0.44,1,146 +22433073,Sweet living quarters,164308567,Alex,Brooklyn,Bushwick,40.70189,-73.91984,Private room,125,1,3,2018-05-18,0.16,1,4 +22433291,Harlem Hideaway,84716175,Garret,Manhattan,Harlem,40.8229,-73.93925,Private room,65,1,14,2019-01-01,0.76,2,180 +22433593,Artsy and modern room in a friendly neighborhood.,43222031,Kamila,Queens,Ridgewood,40.69741,-73.89895,Private room,38,4,0,,,1,0 +22434082,Cozy West Village Apartment,164318938,Noni,Manhattan,West Village,40.73248,-74.00053,Entire home/apt,225,1,29,2019-06-23,1.72,1,14 +22434380,Private Room for 1 person in LES/Chinatown,147058441,Scotty,Manhattan,Chinatown,40.71626,-73.99224,Private room,68,1,7,2019-07-07,0.39,1,54 +22434861,Spacious updated pre-war House,5925222,Sophia,Brooklyn,Bushwick,40.69,-73.91885,Entire home/apt,65,2,1,2018-01-01,0.05,1,0 +22435019,Splendid on The Park,5076827,Diane And Craig,Manhattan,Harlem,40.80638,-73.94415,Entire home/apt,180,3,29,2019-02-20,1.79,2,235 +22435399,Room,140494157,Nayely,Queens,Astoria,40.76895,-73.92489,Private room,110,1,1,2018-01-01,0.05,1,0 +22435813,"Big Comfy Room Crown Heights, BK! (25 min to city)",161510806,Stacy,Brooklyn,Crown Heights,40.6781,-73.95487,Private room,150,1,3,2018-02-18,0.16,2,0 +22436168,"Convenient and cozy room in Brooklyn, 2345 trains",22507599,Michela,Brooklyn,Crown Heights,40.67064,-73.95714,Private room,32,1,0,,,1,0 +22436287,Clinton Hill – Brooklyn’s Best Nest,655450,Tara,Brooklyn,Clinton Hill,40.68299,-73.96258,Entire home/apt,108,29,5,2018-12-21,0.31,1,98 +22436581,Beautiful bedroom in Manhattan,110191144,Mamadou,Manhattan,Harlem,40.82375,-73.95379,Private room,68,2,28,2019-06-01,1.75,2,53 +22436770,Most luxuriest place to relax while visiting NYC,114131821,Shawn,Manhattan,Hell's Kitchen,40.76075,-73.99837,Entire home/apt,1500,30,0,,,1,87 +22436899,1-BR Lincoln Center,72390391,Jelena,Manhattan,Upper West Side,40.77213,-73.98665,Entire home/apt,10000,30,0,,,1,83 +22438519,Big Private Room in Perfect Williamsburg Location,125898610,Tay,Brooklyn,Williamsburg,40.71479,-73.93961,Private room,75,2,0,,,1,0 +22438742,White Castle,21878092,Sasha,Brooklyn,Williamsburg,40.7089,-73.95632,Entire home/apt,150,2,9,2019-02-24,0.56,1,0 +22438808,Huge Apartment in East Village,164378428,Saim,Manhattan,East Village,40.72555,-73.98247,Entire home/apt,165,2,2,2018-01-01,0.11,1,0 +22440046,Cozy and Laid Back in L.E.S.,164391402,Robert,Manhattan,East Village,40.72167,-73.98066,Private room,125,1,3,2018-12-31,0.38,1,365 +22445969,crème de la crème - Luxurious 1 BR Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74934,-73.9781,Entire home/apt,150,30,2,2019-06-01,0.87,91,251 +22446079,Beautiful Private Artist's Bungalow,3812968,Melody,Brooklyn,Crown Heights,40.67542,-73.94799,Entire home/apt,60,3,9,2019-02-15,0.51,1,0 +22446205,Brooklyn clean and quiet,164456084,Roody,Brooklyn,Canarsie,40.63409,-73.89383,Private room,27,1,0,,,1,0 +22446479,"•COZY APARTMENT IN BEDFORD AREA, 5 MINS MANHATTAN•",128793815,Atthaphon,Brooklyn,Williamsburg,40.72064,-73.96022,Private room,50,2,55,2019-07-01,2.97,4,281 +22446568,Charming East Village 1 Bed,5458990,Pete,Manhattan,East Village,40.72454,-73.98749,Entire home/apt,199,7,21,2019-04-14,1.14,1,10 +22446998,Cozy Brooklyn Room with Great Vibes,5425440,Janae,Brooklyn,Flatbush,40.64488,-73.96889,Private room,48,1,2,2018-01-16,0.11,1,0 +22447398,1 Bedroom Apartment in Tribeca,11300395,Michael,Manhattan,Tribeca,40.71514,-74.00709,Entire home/apt,180,2,0,,,1,0 +22447855,Redford Room,104273977,Jasmine,Manhattan,Lower East Side,40.71922,-73.98714,Private room,109,1,1,2018-02-17,0.06,3,0 +22448088,Room for rent in the heart of Manhattan,686385,Ava,Manhattan,Upper East Side,40.77509,-73.95554,Private room,80,1,58,2019-06-23,3.64,1,45 +22448345,Redford Room 2,104273977,Jasmine,Manhattan,Lower East Side,40.72133,-73.98684,Private room,109,1,1,2018-02-18,0.06,3,0 +22448487,Renovated 1 bedroom in Bedstuy Brooklyn brownstone,4823243,Janelle,Brooklyn,Bedford-Stuyvesant,40.68317,-73.92777,Entire home/apt,139,2,9,2019-04-07,1.08,1,57 +22448627,LARGE & CONVENIENT Private Room in Brooklyn,164303137,Mamiko,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93288,Private room,39,4,58,2019-07-01,3.16,2,32 +22448905,Sunny and cozy place with coffee morning,54549189,Ivan,Brooklyn,Crown Heights,40.67518,-73.94771,Private room,80,3,1,2017-12-28,0.05,1,0 +22449860,Beautiful Oasis in Brooklyn,92835031,Cindy,Brooklyn,Bedford-Stuyvesant,40.6832,-73.9529,Entire home/apt,225,3,50,2019-06-23,3.12,1,71 +22450143,★ Cosy room in Bushwick ★ 20-min to Manhattan,119828457,Marlice,Brooklyn,Bushwick,40.68868,-73.90655,Private room,55,3,55,2019-06-23,3.40,4,329 +22450373,Spacious and modern space. Super cozy and quiet,15535829,Jay,Staten Island,West Brighton,40.63229,-74.11351,Entire home/apt,99,2,3,2019-05-18,0.36,1,364 +22451363,Perfect block in NYC,164509613,Eduardo,Manhattan,Morningside Heights,40.80414,-73.96498,Entire home/apt,145,1,23,2019-07-05,1.37,1,3 +22451798,Historic Bed Stuy Charmer! Entire Apartment!,4126686,Michael,Brooklyn,Bedford-Stuyvesant,40.68427,-73.93118,Entire home/apt,75,3,87,2019-07-05,4.91,1,267 +22452129,Private Guest Bedroom with beautiful back yard.,164516331,Hamza,Brooklyn,Bedford-Stuyvesant,40.68108,-73.92729,Private room,85,2,33,2018-09-30,1.86,1,0 +22452278,Serene Studio in Brooklyn,3695529,Jenni,Brooklyn,Carroll Gardens,40.68384,-73.99431,Entire home/apt,150,2,61,2019-06-20,3.42,2,85 +22452536,"Beautiful 1 BR Apartment, Convenient Location",54554971,Alyse,Manhattan,Kips Bay,40.74036,-73.98301,Entire home/apt,150,2,33,2018-12-18,1.79,1,0 +22452728,"Astoria close to JFK, Laguardia Airport, Manhattan",117195769,Simone,Queens,Astoria,40.76401,-73.90921,Private room,70,1,92,2019-06-30,4.96,3,357 +22453527,Union SQ/Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73379,-73.98645,Private room,150,2,24,2019-05-03,1.68,3,149 +22453638,Charming 2BR apt in prime Williamsburg Brooklyn,164537600,Nate,Brooklyn,Williamsburg,40.71243,-73.96067,Entire home/apt,140,2,3,2018-01-28,0.17,1,0 +22454253,Spacious 1-Bedrm Apt Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84777,-73.94241,Entire home/apt,160,1,3,2018-03-18,0.17,3,0 +22454397,Private room in cozy apartment in east village,13677929,Charles,Manhattan,East Village,40.7232,-73.98152,Private room,78,30,8,2018-06-13,0.45,1,219 +22454537,Pelham Parkways,164549734,Niara,Bronx,Pelham Gardens,40.85702,-73.83697,Private room,300,1,0,,,1,0 +22454710,Luxury Doorman. Great location.,5863772,Michael,Manhattan,Upper West Side,40.77077,-73.98481,Entire home/apt,225,2,5,2019-01-20,0.27,1,0 +22454765,Luxury studio in Astoria just by the water,13510515,Dimitri,Queens,Astoria,40.77179,-73.93442,Entire home/apt,200,4,0,,,1,0 +22455153,2 Bedroom - Midtown off 5th Ave,26490904,Deo,Manhattan,Midtown,40.76151,-73.97635,Entire home/apt,220,30,2,2019-02-04,0.17,4,280 +22455181,"Clean, cozy room in a great location!",77005581,Kate,Manhattan,East Village,40.73089,-73.98429,Private room,90,1,133,2019-07-07,7.79,1,41 +22455806,cozy has 55 tv dressers living room has own heater,157935032,Freddy,Queens,East Elmhurst,40.76193,-73.87521,Private room,40,1,1,2019-02-15,0.21,1,37 +22460607,Beautiful 1 Bedroom in Grammercy,162100686,Andrew,Manhattan,Kips Bay,40.73735,-73.97952,Entire home/apt,200,2,0,,,1,0 +22460669,Comfy Room E Williamsburg - 1 min from L -Huge APT,55807631,Brent,Brooklyn,Williamsburg,40.70827,-73.94133,Private room,40,1,11,2018-04-01,0.60,1,0 +22462752,Lower East Side - Perfect Escape in NYC! #6,158969505,Karen,Manhattan,Lower East Side,40.72145,-73.99257,Entire home/apt,240,30,3,2019-05-27,0.45,9,199 +22462797,Full Lavish Studio apartment in the heart of NYC,164637779,Sajee,Manhattan,Upper East Side,40.76938,-73.96732,Entire home/apt,150,1,2,2017-12-30,0.11,1,0 +22463757,"Bright 3 Bedroom, Garden, 2 Full Bathrooms",31176801,Nima,Brooklyn,Bedford-Stuyvesant,40.68512,-73.95796,Entire home/apt,170,6,23,2019-05-24,1.42,1,190 +22463977,Amazing Master Bedroom in Historic Brooklyn,164650025,Chris,Brooklyn,Prospect Heights,40.67757,-73.97023,Private room,35,1,204,2019-06-30,11.17,1,19 +22464295,Lower East Side Newly renovated! #7,158969505,Karen,Manhattan,Lower East Side,40.72268,-73.99205,Entire home/apt,250,30,3,2019-04-30,0.37,9,264 +22465327,"*NEW*6 BED BROOKLYN DUPLX,15 MIN TRAIN RIDE 2 CITY",254846,Brendan,Brooklyn,Bushwick,40.69023,-73.91621,Entire home/apt,399,3,19,2019-05-06,1.13,4,272 +22465418,"Sunny, fashionable home for Spring in Soho!",3210260,Michael,Manhattan,SoHo,40.72393,-74.00446,Entire home/apt,210,5,8,2018-05-28,0.49,1,0 +22465657,Lower East Side - Amazing location! #10,158969505,Karen,Manhattan,Lower East Side,40.7224,-73.99268,Entire home/apt,220,30,2,2018-12-16,0.16,9,298 +22466002,Lower East Side Studio - Great location! #13,158969505,Karen,Manhattan,Lower East Side,40.7215,-73.99183,Entire home/apt,170,30,0,,,9,200 +22466315,Lower East Side - Lovely Studio! #14,158969505,Karen,Manhattan,Lower East Side,40.72147,-73.99181,Entire home/apt,170,30,4,2019-01-07,0.30,9,281 +22466537,Homey Private Room in Bushwick!,27188995,Jaritza,Brooklyn,Bushwick,40.70071,-73.9158,Private room,90,1,1,2018-07-01,0.08,1,280 +22468075,Cozy and Spacious One Bedroom,24707177,Zhanna,Manhattan,East Harlem,40.79803,-73.93234,Entire home/apt,80,4,5,2019-01-14,0.28,1,0 +22469509,Renovated Private 1 Bedroom in Downtown Manhattan,3389563,Erica,Manhattan,Chinatown,40.71659,-73.99222,Entire home/apt,96,2,13,2018-05-28,0.73,1,0 +22470443,Homey and comfy room by LGA,163217478,Myriam,Queens,East Elmhurst,40.75739,-73.88144,Private room,59,1,127,2019-07-03,6.94,2,80 +22470605,"Sunny new one bedroom in Brooklyn, Greenpoint",4177178,Sabrina,Brooklyn,Greenpoint,40.72147,-73.9441,Private room,80,14,4,2019-04-03,0.23,1,0 +22471099,"Cozy, homey one bedroom in Brooklyn",48565842,Grace,Brooklyn,Crown Heights,40.67318,-73.95679,Private room,39,7,0,,,1,0 +22471517,Entire apartment in Ditmas Park/Flatbush,89363555,Nitika,Brooklyn,Flatbush,40.64149,-73.96157,Entire home/apt,100,1,5,2018-02-27,0.27,1,0 +22471587,Semi-Private Studio in Quiet Brooklyn Neighborhood,35920741,Matthew,Brooklyn,Flatlands,40.61637,-73.92206,Private room,100,1,18,2019-04-22,0.98,1,364 +22471620,4 min walk to the subway and Columbia University,67043358,Amit,Manhattan,Harlem,40.80708,-73.95583,Private room,70,7,0,,,1,0 +22472801,Swim in Garden Pond near City & JFK,164750816,Mayo,Queens,Howard Beach,40.66201,-73.84084,Entire home/apt,80,2,83,2019-06-29,4.47,1,288 +22477305,Huge Terrace 2 bed 2 Bath POOl in building,113805886,Yaacov,Manhattan,Upper East Side,40.77708,-73.95113,Entire home/apt,235,31,5,2019-03-10,0.40,33,327 +22477997,Speakeasy Inn Bushwick Two,24020292,Cristiano,Brooklyn,Bushwick,40.70241,-73.91996,Private room,55,1,60,2019-07-06,3.25,4,58 +22478609,Manhattan -Top Location - Full Apartment,164806814,Nl,Manhattan,Midtown,40.75993,-73.96342,Entire home/apt,140,4,52,2019-06-17,3.03,1,242 +22479006,Brownstone Getaway in Fort Greene,164814832,Megan,Brooklyn,Fort Greene,40.68853,-73.96943,Entire home/apt,260,3,42,2019-07-06,2.94,1,46 +22479784,Manhattan club NYE room,10685109,Allison,Manhattan,Hell's Kitchen,40.76748,-73.98536,Private room,200,2,1,2018-01-01,0.05,1,0 +22479926,"Artistic home, cozy queen bed",4070519,Lizette,Brooklyn,Williamsburg,40.71239,-73.95098,Private room,80,2,20,2019-05-08,1.14,1,0 +22479963,Brooklyn castle w/ Manhattan skyline views,4500818,Asha,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92854,Private room,78,30,25,2019-05-09,1.35,1,342 +22480137,One Bedroom Apt next to Empire State,48088611,Alberto,Manhattan,Midtown,40.74751,-73.98725,Entire home/apt,208,7,3,2018-08-22,0.17,2,155 +22480209,Housing for SGU/SABA/AUA/ROSS Students/ Residents,27741331,Lyn,Brooklyn,East Flatbush,40.66313,-73.92684,Private room,32,30,0,,,2,322 +22480570,Sunny & Cozy Double Bedroom with private entrance,22382224,Meryem,Brooklyn,Windsor Terrace,40.66023,-73.9804,Private room,85,1,6,2018-04-02,0.33,1,0 +22481246,1-bedroom apartment for up to 4 in Times Square.,92856787,Jessy,Manhattan,Hell's Kitchen,40.76011,-73.99571,Entire home/apt,250,1,75,2019-07-04,4.78,1,283 +22481840,"MODERN & SPACIOUS PAD! +5MINS TO L/J,M/A,C TRAINS",162572530,Carmen,Brooklyn,Bushwick,40.68328,-73.90783,Entire home/apt,28,2,13,2018-06-11,0.72,1,0 +22482376,Sunny & Chic LES apartment,164847238,Nicholas,Manhattan,Lower East Side,40.7199,-73.99225,Private room,101,4,4,2019-06-12,0.22,1,2 +22483105,New Midtown Luxury Studio in Perfect Location,35596244,Dan,Manhattan,Murray Hill,40.74665,-73.97856,Entire home/apt,168,2,0,,,1,0 +22483110,Beautifully curated artist apartment in Park Slope,26156848,Fabiola,Brooklyn,South Slope,40.66514,-73.99017,Entire home/apt,100,1,68,2019-06-15,3.74,1,5 +22483574,Home Away from Home: The Enlightenment Room.,130971031,J-,Brooklyn,Bushwick,40.69977,-73.91983,Private room,79,3,22,2019-04-22,1.22,4,125 +22483585,Best Kept Secret in Carroll Gardens BROOKLYN!!,17129810,Jeffrey,Brooklyn,Columbia St,40.68274,-74.0046,Entire home/apt,190,4,42,2019-05-28,2.42,5,299 +22483776,THE COOL HOUSE,55197894,Erick,Queens,Woodside,40.74907,-73.90083,Private room,30,5,7,2019-02-12,0.38,1,0 +22483942,Home Away from Home: The Cerebral Room,130971031,J-,Brooklyn,Bushwick,40.70093,-73.91864,Private room,69,2,22,2019-06-18,1.21,4,139 +22484006,Your Private Room,26789852,Aendel,Queens,Long Island City,40.75303,-73.93287,Private room,44,4,77,2019-07-06,4.27,2,32 +22484057,Great Room in Brooklyn,38359380,Becky,Brooklyn,Kensington,40.64449,-73.97843,Private room,45,5,2,2018-07-27,0.17,1,0 +22484513,Big Bright Room in East Williamsburg,69427350,Giovanni,Brooklyn,Williamsburg,40.71881,-73.93965,Private room,70,5,2,2018-10-29,0.23,1,0 +22485416,"Private Room (rm3), 5 mins from Columbia",21410914,Eugene,Manhattan,Morningside Heights,40.81232,-73.95849,Private room,85,3,47,2019-06-23,2.77,6,0 +22485639,61st east room C manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76221,-73.96726,Entire home/apt,140,1,43,2019-06-29,2.51,11,281 +22485685,Dina airbnb 61 street east D,164886138,Eliahu,Manhattan,Upper East Side,40.76015,-73.96227,Entire home/apt,140,2,4,2019-03-24,0.53,11,354 +22485716,2 bedroom apt in queens,164887236,Reut,Queens,Fresh Meadows,40.72887,-73.79206,Private room,75,2,0,,,1,0 +22486252,Spacious Loft with Amazing Sky Views,123953239,Philippe,Brooklyn,Williamsburg,40.71247,-73.96443,Entire home/apt,400,2,8,2019-05-19,0.55,2,327 +22486540,Spacious Queen Room close to Prospect Park,1512819,Sydney,Brooklyn,Flatbush,40.65275,-73.95457,Private room,50,10,8,2018-10-10,0.44,5,153 +22489609,Comfortable and Quiet,44216307,Aaron,Brooklyn,Sunset Park,40.64976,-74.00165,Private room,35,1,27,2019-06-16,1.50,1,35 +22489858,61 st East room D Manhattan private,164886138,Eliahu,Manhattan,Upper East Side,40.76014,-73.96098,Entire home/apt,140,1,25,2019-06-27,1.67,11,330 +22491853,Private room near Central Park/Columbia University,67859646,Indhira & Alex,Manhattan,Morningside Heights,40.80737,-73.95732,Private room,75,2,39,2018-12-06,2.17,1,24 +22494825,Just Minutes From Manhattan,25581222,Ella,Bronx,Mott Haven,40.80986,-73.9214,Entire home/apt,140,2,57,2019-06-16,3.58,1,73 +22495122,Get lost at the tip of Manhattan,89245578,Noel,Manhattan,Inwood,40.86456,-73.92799,Entire home/apt,125,2,32,2019-06-23,1.77,1,19 +22495520,❤️ Furnished One Bedroom with Terrace!! ★★★★★,15740291,Mark,Manhattan,Midtown,40.75388,-73.96727,Entire home/apt,125,2,109,2019-06-25,5.95,1,53 +22496369,Pleasant & Low-priced place in Manhattan,23719409,Carlina,Manhattan,Harlem,40.82645,-73.94984,Private room,60,1,41,2019-06-22,2.24,4,132 +22497711,Cozy space+36fl.beautiful view+excellent location,101170573,Lina,Manhattan,Hell's Kitchen,40.77122,-73.99234,Entire home/apt,80,1,1,2018-01-03,0.05,1,0 +22499295,Bright & Beautiful in the East Village,1355958,Kara,Manhattan,East Village,40.72432,-73.98916,Private room,250,1,0,,,2,0 +22499728,"Cozy, Comfy, Beautiful in the East Village",1355958,Kara,Manhattan,East Village,40.72472,-73.98881,Entire home/apt,100,2,0,,,2,22 +22502171,Clean private room in Manhattan,17947250,Conor,Manhattan,East Harlem,40.78538,-73.94121,Private room,60,2,1,2018-01-01,0.05,2,0 +22503055,Upper east side duplex,80612882,Jonathan,Manhattan,Upper East Side,40.76396,-73.96365,Entire home/apt,350,3,1,2018-01-04,0.05,1,5 +22503167,The most beautiful home in Bed-Stuy,21147555,Sam,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93031,Private room,60,20,0,,,1,0 +22503340,Cozy room in Bushwick- 15 min to the city,150858055,Scarlett,Brooklyn,Bushwick,40.69735,-73.93276,Private room,42,1,10,2018-10-21,0.54,1,0 +22503477,A comfy apartment,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68124,-73.9456,Entire home/apt,60,30,4,2019-05-12,0.28,6,299 +22503721,2 bedroom 1 bathroom kitchen and living area,165109723,Monica,Queens,Queens Village,40.70383,-73.73416,Private room,120,3,0,,,1,83 +22503885,Beautiful Apartment in Central Harlem,2694297,Dana,Manhattan,Harlem,40.81685,-73.93711,Entire home/apt,95,3,3,2019-06-30,0.20,1,78 +22504678,Manhattan Palace Presidential Suite,122786340,Joseph,Manhattan,Upper West Side,40.80115,-73.96524,Private room,70,1,0,,,1,0 +22505049,Beautiful & sunny large room in a gorgeous apt.,138768335,Maria,Brooklyn,East Flatbush,40.65547,-73.92567,Private room,40,30,7,2019-06-10,0.44,2,317 +22505480,"Studio in Luxury Building - UWS - Indoor Pool, Gym",126687208,Priscilla,Manhattan,Upper West Side,40.79334,-73.96388,Private room,132,6,0,,,1,0 +22510428,"Harlem-Sugar Hill gracious apt, great location.",165099226,Karen,Manhattan,Harlem,40.82601,-73.9433,Private room,45,1,1,2018-04-09,0.07,1,0 +22510506,Prívate room,165003654,Rocio,Bronx,Norwood,40.87396,-73.87785,Private room,26,30,24,2019-01-15,1.39,1,303 +22511108,Historical home N.shore Staten Isl. nr FREE ferry.,128338539,Reuben,Staten Island,Stapleton,40.6322,-74.07913,Entire home/apt,95,30,25,2018-11-14,1.47,4,178 +22512408,"Lovely, river view oasis!",28400686,Joyce,Manhattan,Roosevelt Island,40.76241,-73.94878,Private room,78,7,0,,,1,0 +22512917,"Spacious, Sunlit, Master Bedroom in Brooklyn",10743035,Fahmida,Brooklyn,Prospect Heights,40.67579,-73.96514,Private room,75,2,0,,,1,0 +22513363,AMAZING Greenpoint/Williamsburg PRIVATE Room,2818775,Elena,Brooklyn,Greenpoint,40.73304,-73.95125,Private room,75,1,16,2019-05-19,1.08,1,280 +22513387,Stellar Crown Heights Location! (Private Bdrm),27854445,Kate,Brooklyn,Crown Heights,40.67632,-73.95535,Private room,50,4,0,,,1,0 +22514364,1D Private Rm in Guesthouse Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80686,-73.93822,Private room,50,1,13,2019-05-28,0.81,10,365 +22514608,"Hamilton Heights Sunny Studio, Manhattan",23834677,Kumar,Manhattan,Harlem,40.82788,-73.94441,Entire home/apt,105,1,111,2019-07-06,6.08,2,238 +22514661,Spacious apartment near East Village and LES,28248849,Stephen,Manhattan,East Village,40.72181,-73.98146,Entire home/apt,149,3,1,2018-01-15,0.06,1,0 +22514949,"Bright, cozy room in UWS next to Central Park",59385671,Yiran,Manhattan,Upper West Side,40.80055,-73.96078,Private room,54,3,0,,,1,0 +22515329,2 bedroom apartment in harlem,118182048,Alan,Manhattan,East Harlem,40.8141,-73.93602,Entire home/apt,100,1,8,2018-10-13,0.56,1,12 +22515792,Private Bedroom in Brownstone Near Subway,40176101,Brady,Brooklyn,Bedford-Stuyvesant,40.69004,-73.92993,Private room,89,1,92,2019-06-26,5.10,7,11 +22516244,"Prospect Park, Lefferts Garden Townhouse",705450,Conor,Brooklyn,Prospect-Lefferts Gardens,40.66215,-73.95187,Entire home/apt,80,3,4,2018-05-18,0.24,1,0 +22516361,Cozy & artsy apt in East Village - 2 bedrooms,26583247,Frannie,Manhattan,East Village,40.7316,-73.98507,Entire home/apt,132,7,0,,,1,0 +22516600,Private Room for 2,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93312,Private room,50,1,14,2019-06-16,0.78,4,306 +22516899,"A Quiet, Sunny Gem in Crown Heights",76426686,Bunge,Brooklyn,Crown Heights,40.6687,-73.93628,Private room,50,5,0,,,1,0 +22517063,Home away from home,122283834,Eve,Queens,Cambria Heights,40.69807,-73.74432,Private room,50,5,0,,,2,96 +22518038,Brooklyn Heights Getaway,2203467,Meahgan,Brooklyn,Brooklyn Heights,40.69379,-73.99753,Entire home/apt,300,3,10,2019-06-16,0.62,1,22 +22518123,15 to JFK/LGA 30 to Manhattan.Close to St John’s,165307387,K,Queens,Jamaica Estates,40.71248,-73.78896,Entire home/apt,85,1,88,2019-06-27,5.14,1,339 +22522733,Like your Private (artist / railroad) Apartment,165360098,Rose,Brooklyn,Williamsburg,40.71868,-73.95917,Private room,80,3,1,2019-06-20,1,1,84 +22524272,Private room in luxury SoHo Loft,5758215,Marcus,Manhattan,SoHo,40.72293,-74.00361,Private room,350,3,0,,,1,173 +22527937,Private Double Room in Midtown NYC/Times Square,10022878,Peter,Manhattan,Hell's Kitchen,40.76256,-73.98935,Private room,65,3,15,2019-07-06,0.88,1,31 +22529131,Lower East Side- Perfect 1 Bedroom! #12,158969505,Karen,Manhattan,Lower East Side,40.7211,-73.99321,Entire home/apt,180,30,2,2018-09-15,0.16,9,151 +22529259,"Cozy 2 Bedroom apartment, Feel like home!",1533576,Eva,Brooklyn,Bedford-Stuyvesant,40.69336,-73.95171,Entire home/apt,111,6,2,2018-10-27,0.18,1,43 +22529877,Cosy.,156505456,John,Brooklyn,East New York,40.66254,-73.88896,Private room,35,3,18,2019-03-17,1.02,13,79 +22530070,Suite 18 - Private Room w/ bath,99296570,Daisy,Brooklyn,Brighton Beach,40.58195,-73.95789,Private room,30,1,70,2019-06-23,3.97,5,193 +22530764,House of Love,165448425,Shana,Brooklyn,East Flatbush,40.65129,-73.94058,Private room,90,1,10,2019-06-24,0.72,1,365 +22531031,Comfortable Brooklyn Studio,56757345,Brenda,Brooklyn,East Flatbush,40.64857,-73.94407,Entire home/apt,89,2,43,2019-07-07,2.74,1,10 +22531696,Luxury Condo Lexington & Park Ave Sleeps 6,27482728,David,Manhattan,Midtown,40.74317,-73.98605,Entire home/apt,255,2,69,2019-06-13,3.85,1,149 +22531866,FULL VIEW NYC Room in Williamsburg & Giant Terrace,357117,Ilginutin,Brooklyn,Williamsburg,40.71914,-73.96237,Private room,44,6,4,2019-05-24,0.23,1,5 +22531898,"Cozy room, female only, AC include&3 subway lines",87174871,Emma,Manhattan,Upper West Side,40.80253,-73.96315,Private room,30,1,6,2019-07-02,0.33,1,9 +22533156,Private Sunny Room (B) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65255,-73.9454,Private room,75,2,5,2019-06-02,0.35,2,40 +22533436,Best Value in Manhattan - Steps from 6 Train,155810605,Danielle,Manhattan,East Harlem,40.79005,-73.94929,Entire home/apt,110,4,4,2018-11-08,0.22,2,0 +22533666,Upper Manhattan Oasis,103166867,Darcy,Manhattan,Inwood,40.8637,-73.92858,Entire home/apt,160,3,0,,,1,0 +22533734,Awesome spacious one bedroom in prime NYC location,165492173,Michael,Brooklyn,Park Slope,40.67682,-73.97476,Entire home/apt,200,7,0,,,1,0 +22534385,Brooklyn Apartment with Great Natural Lighting,164165428,Dotun,Brooklyn,Crown Heights,40.67626,-73.92936,Private room,60,3,0,,,1,0 +22534758,Beautiful Williamsburg Condo with Private Roof,23949144,Sam,Brooklyn,Williamsburg,40.71773,-73.94359,Entire home/apt,300,2,6,2018-05-04,0.38,1,0 +22535503,Perfect Vacation Rental for Family,6298158,Sid,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92706,Private room,72,1,12,2019-07-01,0.69,1,358 +22541685,Comfortable and Clean Place in Bed-Stuy,22414216,Crystal,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93634,Private room,39,30,0,,,1,220 +22542091,"Large, King Size NYC Room Near Trains",2339049,Arianna & Z,Brooklyn,Bushwick,40.6987,-73.93776,Private room,75,2,85,2019-06-23,4.65,2,128 +22543061,Perfect Greenpoint Loft,165603002,Colin,Brooklyn,Greenpoint,40.73767,-73.95732,Private room,60,6,3,2019-04-26,0.16,1,0 +22543433,Cozy 4 bedroom duplex in NYC borough of Brooklyn,138770550,Charmine,Brooklyn,Crown Heights,40.67191,-73.93411,Entire home/apt,350,3,6,2018-10-12,0.43,3,100 +22544160,Comfortable Studio Apartment!,165612495,Alexei,Bronx,Fordham,40.86665,-73.8954,Entire home/apt,80,3,26,2019-06-22,1.68,1,15 +22544810,Williamsburg stunning duplex apartment 4br/3bath,10951481,Ann,Brooklyn,Williamsburg,40.71299,-73.96144,Entire home/apt,550,2,92,2019-06-23,5.24,5,90 +22545036,Cozy Room Close to Columbia,12541753,Yiou,Manhattan,Upper West Side,40.80034,-73.96127,Private room,39,3,1,2018-01-13,0.06,1,0 +22545117,Victorian Artist Loft,90857546,Diana,Brooklyn,Bushwick,40.69818,-73.93577,Private room,108,3,12,2019-03-12,0.79,1,112 +22545206,Cozy affordable room #2,20120009,Jannices,Brooklyn,Bushwick,40.68741,-73.9066,Private room,38,1,48,2019-04-24,2.64,6,3 +22545284,"Private Brooklyn studio, cozy for wintertime",3073721,Jennifer,Brooklyn,East Flatbush,40.65398,-73.94399,Entire home/apt,85,2,52,2019-01-01,3.54,1,0 +22545760,Aysgarth Brooklyn,13061712,Cheryl,Brooklyn,Prospect Heights,40.68001,-73.96557,Entire home/apt,800,5,6,2019-06-14,0.34,1,177 +22545840,Habitación comoda,165386495,Maria,Bronx,Fordham,40.85419,-73.89827,Private room,40,2,15,2018-12-16,0.83,1,220 +22545850,Bedroom for two in Clinton Hill,3720764,Emmet,Brooklyn,Bedford-Stuyvesant,40.69207,-73.96021,Private room,60,5,3,2018-11-25,0.36,1,0 +22546236,SJU大学,133825714,Peng,Queens,Flushing,40.72465,-73.80162,Shared room,30,1,0,,,1,0 +22548780,Private Bedroom in Clinton Hill,3094303,Cecilia,Brooklyn,Clinton Hill,40.68641,-73.96124,Private room,48,12,1,2018-01-31,0.06,1,0 +22550289,Cozy Historical Brooklyn Heights 1-Bedroom #10273,7495768,Carmen,Brooklyn,Brooklyn Heights,40.69335,-73.9984,Entire home/apt,175,3,8,2019-05-19,0.47,1,0 +22550431,Luxury Williamsburg Apt for Four,2453755,Niamh,Brooklyn,Williamsburg,40.71179,-73.93872,Entire home/apt,175,2,2,2018-05-28,0.15,1,0 +22550483,Cozy semi-private small cabin near Times Square,77526864,Anallely,Manhattan,Chelsea,40.7498,-73.99623,Private room,88,1,5,2019-03-16,1.00,1,158 +22551923,Cozy Brooklyn Apartment w/ Private Backyard,56730358,Kali,Brooklyn,Bedford-Stuyvesant,40.6874,-73.94186,Entire home/apt,60,4,5,2018-02-27,0.28,1,0 +22552956,Bushwick Bedroom,165695294,Mike,Brooklyn,Bushwick,40.69946,-73.92686,Private room,85,1,0,,,1,0 +22553501,Central Park Cozy Home,165715198,Robert,Manhattan,Midtown,40.76006,-73.96541,Private room,70,1,52,2019-05-26,2.88,1,128 +22556901,Beautiful & spacious East Village Studio,17150107,Francisco,Manhattan,East Village,40.7277,-73.99007,Entire home/apt,161,5,0,,,1,0 +22561496,Bright/Large 1 Bdr Flat W/Parking!,16457426,Brian,Bronx,Kingsbridge,40.88435,-73.90305,Entire home/apt,145,2,14,2019-06-20,0.77,1,332 +22562364,Room in LIC/Astoria close to the city & LGA/JFK,30812164,Yumi,Queens,Long Island City,40.75501,-73.93455,Private room,38,1,19,2018-10-31,1.73,1,0 +22563782,Sunny Studio in Greenpoint - Private Bath/Kitchen,8203031,Jess,Brooklyn,Greenpoint,40.72188,-73.94355,Private room,150,3,8,2019-07-01,0.48,1,27 +22566815,Stunning Private Room in Awesome BK,1317913,Lauren,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95235,Private room,75,3,0,,,2,0 +22566828,Feel like your home,58403098,Nilufer,Queens,Long Island City,40.73641,-73.92738,Private room,35,4,39,2019-05-14,2.20,3,304 +22567255,"Artsy, Brooklyn Apt minutes away from Manhattan.",8299661,Lucerne,Brooklyn,Bedford-Stuyvesant,40.68503,-73.94093,Entire home/apt,70,28,4,2019-05-31,0.30,1,216 +22567430,Oasis in East Flatbush,165853174,Jackee,Brooklyn,East Flatbush,40.64322,-73.93745,Entire home/apt,89,2,74,2019-07-05,4.38,1,322 +22568033,High Rise Luxury 1bdr Apt by Time Square,21463260,Sabri,Manhattan,Hell's Kitchen,40.7633,-73.99716,Entire home/apt,275,2,0,,,1,0 +22568389,"Spacious, Quiet room in Clinton Hill Duplex",2880848,Candice,Brooklyn,Clinton Hill,40.69526,-73.96613,Private room,50,2,0,,,1,0 +22568702,Luxe North Williamsburg Double Bedroom Brooklyn,83284183,Dawn Anna,Brooklyn,Williamsburg,40.72143,-73.95702,Private room,55,3,1,2018-06-27,0.08,1,0 +22569197,Mine,150858745,Nirit,Queens,Rego Park,40.72195,-73.86112,Entire home/apt,300,3,0,,,1,5 +22569493,Beautifully Renovated Brownstone Apt! #10264,28574655,Mimi,Brooklyn,Crown Heights,40.67589,-73.94223,Entire home/apt,180,30,54,2019-06-24,2.98,1,277 +22569600,Cozy and Warm Stay in Fidi/Battery Park City,63343926,Hanna,Manhattan,Battery Park City,40.71082,-74.0176,Private room,94,1,65,2019-06-24,3.68,1,6 +22570044,Convenient bedroom in a modern apartment,790872,Tri,Manhattan,East Harlem,40.8049,-73.94012,Private room,80,1,4,2018-03-15,0.23,2,0 +22570065,1 Bedroom Apartment at great location in NYC,165887496,Antonio,Manhattan,Kips Bay,40.74451,-73.97836,Entire home/apt,150,1,79,2019-06-22,4.55,1,87 +22570793,Large Room in Quiet Apartment close to Subway,133926727,Victor,Manhattan,Harlem,40.82243,-73.94053,Private room,70,1,3,2018-03-04,0.18,2,0 +22571028,Apt. 2nd Floor (A) 2/4 Guest,87073749,Benedetta,Brooklyn,Williamsburg,40.70982,-73.95609,Entire home/apt,125,2,80,2019-06-22,4.44,2,74 +22571045,Private Studio,116746802,Christine,Queens,Bayside,40.75145,-73.75643,Private room,69,5,11,2019-06-10,0.69,5,128 +22571205,Great 3 BR Apt with private backyard and garage,24495088,Albert,Brooklyn,Brighton Beach,40.57905,-73.96088,Entire home/apt,179,2,1,2018-01-16,0.06,1,0 +22571719,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.7504,-73.96934,Entire home/apt,170,30,1,2018-06-16,0.08,7,364 +22572314,"Perfect location, gorgeous private building",3942655,Danny,Brooklyn,Williamsburg,40.71614,-73.94456,Entire home/apt,105,5,8,2019-04-03,0.53,2,8 +22572695,Simple studio,48616155,Michelle,Brooklyn,Flatbush,40.64663,-73.96187,Shared room,23,1,57,2019-06-23,3.27,1,58 +22574255,Brooklyn Room with a View on tree-lined street.,4365662,Claire,Brooklyn,Flatbush,40.64173,-73.96696,Private room,54,2,96,2019-07-01,5.43,1,130 +22575619,"Cozy, Humble and private",80824522,Nat,Brooklyn,Bushwick,40.7025,-73.93253,Private room,69,2,16,2019-06-29,1.07,2,185 +22576120,"Cozy, Glamorous: A Hide-away Seaside Private Room",162430220,Raymond,Queens,College Point,40.77639,-73.84392,Private room,80,1,0,,,1,0 +22578161,A cozy place to rest,76664098,Scarlett,Queens,Flushing,40.75981,-73.82021,Shared room,30,1,0,,,1,0 +22579082,Queens Home with Private Bathroom and Balcony,7784070,Jose,Queens,Ditmars Steinway,40.77411,-73.90017,Private room,60,1,0,,,1,0 +22579551,The 'TriBeCa Loft' #4 | A stylish 2 bed apt,3231509,Annamaria,Manhattan,Tribeca,40.71775,-74.00607,Entire home/apt,450,14,13,2019-05-08,0.77,4,365 +22579704,The 'TriBeCa Loft' #2 | A stylish 2 bed apt,3231509,Annamaria,Manhattan,Tribeca,40.71953,-74.00401,Entire home/apt,490,14,14,2019-02-10,0.81,4,365 +22579760,Bright private bedroom w/queen bed and parking,165985048,Xing,Queens,Forest Hills,40.72616,-73.84328,Private room,78,1,15,2019-06-17,0.96,1,178 +22580951,Private Huge 4 Bedroom Apartment,21593637,Pat And Shelly,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92656,Entire home/apt,179,3,30,2019-06-14,1.68,2,285 +22582841,The Explorer's Lounge in Bushwick,163829123,Beth,Brooklyn,Bushwick,40.70099,-73.93728,Entire home/apt,245,2,59,2019-06-24,3.69,1,53 +22583959,1 BR in Harlem,4373926,Sebastian,Manhattan,Harlem,40.82824,-73.94525,Entire home/apt,100,10,2,2018-09-01,0.15,1,95 +22584204,Industrial Chinatown Hideaway,126449349,John,Manhattan,Lower East Side,40.71327,-73.98866,Entire home/apt,160,1,2,2019-01-01,0.31,2,159 +22584277,Room for rent,73377818,Justine,Manhattan,Harlem,40.8168,-73.95413,Private room,35,1,0,,,1,89 +22584507,private bedroom in great location in williamsburg,1653265,Allen,Brooklyn,Williamsburg,40.71136,-73.9534,Private room,50,1,0,,,1,0 +22584603,Private room with Amazing views of Manhattan.,4719170,Amber,Brooklyn,Greenpoint,40.73477,-73.95541,Private room,45,2,6,2019-03-04,0.33,1,0 +22584844,Lovely Bedroom,44904334,Dounia,Brooklyn,Flatbush,40.65466,-73.95933,Private room,38,2,1,2018-05-12,0.07,1,0 +22586049,Charming Traditional Brooklyn Apartment,10057035,Caroline,Brooklyn,Williamsburg,40.71412,-73.93829,Entire home/apt,120,2,6,2019-01-01,0.50,1,0 +22586352,Spacious 3 bedroom in Manhattan,166066107,Mia,Manhattan,East Village,40.72193,-73.98162,Entire home/apt,280,1,66,2019-06-24,3.88,1,257 +22586703,Bright 1 Bed Apartment in central Greenpoint,40543452,Don,Brooklyn,Greenpoint,40.73041,-73.95601,Entire home/apt,120,2,2,2018-11-05,0.24,1,0 +22587295,Luxury apartment in beautiful Boerum Hill!,21784449,Stephanie,Brooklyn,Boerum Hill,40.68611,-73.98336,Entire home/apt,175,3,46,2019-06-20,2.84,1,170 +22587700,Private Bedroom in Cozy Williamsburg Apartment!,187912,Erin,Brooklyn,Williamsburg,40.71708,-73.96605,Private room,100,1,35,2019-06-27,2.04,2,17 +22588459,Large Private Room in Bright Bushwick Loft,17799362,Ashley,Brooklyn,Williamsburg,40.70635,-73.93658,Private room,60,2,1,2018-01-21,0.06,1,0 +22588755,Amazing Room w/Workspace - Williamsburg,53821850,Jermaine,Brooklyn,Williamsburg,40.70699,-73.94604,Private room,80,1,62,2019-06-23,4.83,2,58 +22589075,"Designer 1 Bedroom - Williamsburg, Brooklyn",3805722,Liliya,Brooklyn,Williamsburg,40.71197,-73.95804,Entire home/apt,175,4,5,2019-06-16,0.32,1,0 +22589500,Sun-lit Bright Apt in Central Hell's Kitchen,18305503,Derek,Manhattan,Hell's Kitchen,40.76637,-73.98941,Entire home/apt,130,2,3,2018-04-07,0.19,1,0 +22594239,Cozy&Quaint Garden Apartment-Private Backyard,3413548,Valerie,Brooklyn,Sunset Park,40.65758,-73.99807,Entire home/apt,185,2,14,2019-06-15,0.82,1,124 +22598303,Lovely 1B1B Apt in UWS Manhattan,40748414,Ran,Manhattan,Harlem,40.81847,-73.95259,Entire home/apt,60,14,0,,,1,157 +22599828,"Perfect Cobble Hill 1-bed, Brooklyn's best spot",15102235,Lindsay,Brooklyn,Cobble Hill,40.68652,-73.99966,Entire home/apt,140,4,50,2019-07-05,2.99,2,107 +22600713,"Sunny Studio, Lower East Side",1873234,Mikkel,Manhattan,Lower East Side,40.71774,-73.99057,Entire home/apt,140,3,33,2019-05-30,1.91,1,11 +22601143,1 BR in 2 BR Apartment (Furniture Included),166260679,Matt,Manhattan,East Village,40.72756,-73.98867,Private room,50,27,0,,,1,0 +22601249,Chic and spacious 2 bedroom 19 min to Penn Station,166262295,Barbara,Queens,Long Island City,40.75337,-73.93355,Entire home/apt,95,2,57,2019-06-30,3.57,2,53 +22602605,2-Bedroom Apartment at Fort Greene,15535189,Yi,Brooklyn,Bedford-Stuyvesant,40.68788,-73.95741,Entire home/apt,95,2,4,2018-05-02,0.26,1,0 +22602979,Great Private & Cozy bedroom in Crown Heights,166286543,Mark,Brooklyn,Crown Heights,40.67299,-73.95521,Private room,49,7,6,2019-06-12,0.41,2,299 +22602996,Private room near Central Park and Subway!,166289951,George,Manhattan,East Harlem,40.79303,-73.94662,Private room,90,2,0,,,1,0 +22605114,Private room in Brooklyn !!!!,70236577,Sara,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94214,Private room,58,1,11,2019-05-18,1.77,1,345 +22609027,Park Side Zen Home - Terrace & next to CentralPark,166366338,Dico,Manhattan,Upper West Side,40.77327,-73.97953,Entire home/apt,175,3,21,2019-06-10,1.30,1,42 +22611675,Private Room in WaHi,166398662,Michelle,Manhattan,Washington Heights,40.8372,-73.94196,Private room,25,1,2,2018-01-24,0.11,1,0 +22611934,West Harlem- Recently renovated apartment for rent,74982218,Miki,Manhattan,Harlem,40.81309,-73.95336,Private room,32,4,45,2019-07-01,2.53,2,38 +22612874,Private Bedroom with en Suite Bathroom in Bushwick,166415629,Anthony,Brooklyn,Bushwick,40.69859,-73.93534,Private room,85,1,0,,,1,0 +22613221,Astoria very close to Manhattan private bedroom,117195769,Simone,Queens,Astoria,40.76334,-73.90977,Private room,45,1,4,2018-02-25,0.23,3,0 +22614476,"cosy 1 bedroom junior apartment, Midtown Manhattan",121849119,Lexx,Manhattan,Murray Hill,40.74627,-73.97595,Entire home/apt,100,1,57,2019-06-17,3.62,1,86 +22615158,Private Room Upper West Side,33392869,Stephen,Manhattan,Upper West Side,40.79937,-73.96281,Private room,100,3,0,,,1,0 +22615655,Studio sanctuary at the epicenter of a local's NYC,2495580,Jayne,Manhattan,Chelsea,40.73955,-73.99775,Entire home/apt,230,4,3,2019-03-25,0.76,1,0 +22616613,Lovely New York Guest Room,81146832,Willa,Manhattan,Inwood,40.86395,-73.92007,Private room,34,1,15,2018-05-17,0.85,1,0 +22616692,Large Master Bedroom- Ridgewood,106394077,Patricia,Queens,Ridgewood,40.70865,-73.91088,Private room,65,3,0,,,1,0 +22617426,Beautiful Private Bedroom for rent Crown Heights,166286543,Mark,Brooklyn,Crown Heights,40.67439,-73.95286,Private room,35,10,5,2019-02-01,0.29,2,350 +22618211,Midtown NYC Studio,5668546,Tom,Manhattan,Hell's Kitchen,40.75574,-73.99638,Entire home/apt,103,1,0,,,1,0 +22618396,Spacious Brooklyn Bedroom with Natural Light,107978473,Trishia,Brooklyn,Greenpoint,40.73375,-73.9557,Private room,60,2,3,2018-06-19,0.23,1,0 +22618993,FUN Bushwick Living,150647463,Eréz,Brooklyn,Bushwick,40.69783,-73.9301,Private room,55,14,3,2019-01-02,0.21,2,64 +22619073,"Harlem Deco,",84716175,Garret,Manhattan,Harlem,40.82246,-73.93817,Private room,95,1,49,2018-10-22,2.72,2,180 +22624247,HUGE SOHO 3 BR LOFT★★★★★LES/FULL FLOOR ★★★★★,166544300,Mariashi,Manhattan,Lower East Side,40.72015,-73.98376,Entire home/apt,416,4,37,2019-06-09,2.17,1,244 +22627376,Cozy Bedroom in Heart of Greenpoint,1286786,Leslie,Brooklyn,Greenpoint,40.72949,-73.95802,Private room,45,1,1,2018-01-21,0.06,1,0 +22627980,LOVE LIFE,3680044,Roselie,Manhattan,Upper West Side,40.79787,-73.9688,Entire home/apt,99,2,6,2018-04-29,0.33,1,0 +22628116,Inwood apartment closed to have fun in manhattan,130633561,Jose,Manhattan,Inwood,40.86815,-73.92342,Private room,125,1,0,,,1,89 +22628471,Chelsea Studio - Fully Furnished,74255931,Paddy,Manhattan,Chelsea,40.74776,-74.00238,Entire home/apt,75,15,1,2018-02-18,0.06,1,0 +22629010,Fashion week stay!,165907758,Helen,Manhattan,Midtown,40.75301,-73.97277,Entire home/apt,200,7,0,,,1,0 +22629696,Private Room w/premium Mattress Near Subway & Gym,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68766,-73.92788,Private room,100,2,31,2019-07-01,1.71,5,358 +22630194,Authentic Brklyn Experience - Room B,156042211,Tia,Brooklyn,Canarsie,40.64838,-73.89834,Private room,40,4,4,2019-03-07,0.23,4,37 +22631617,"Calm, cozy bedroom in the heart of Brooklyn!",42682752,Katharine,Brooklyn,Cobble Hill,40.6887,-73.99168,Private room,60,1,2,2018-01-15,0.11,3,0 +22631676,"Peaceful, Spacious King-Size Bedroom with Sunlight",41311743,Jean,Brooklyn,Crown Heights,40.67516,-73.94813,Private room,97,3,0,,,2,0 +22631779,Room Private Entrance Close to Subway/Bus/Airport,44782054,Jennifer,Queens,Ditmars Steinway,40.77317,-73.91508,Private room,55,2,58,2019-06-27,3.81,1,9 +22632338,Hidden Gem - Entire Bklyn Apt,156042211,Tia,Brooklyn,Canarsie,40.64994,-73.8964,Entire home/apt,120,4,31,2019-06-23,1.88,4,296 +22634088,Brooklyn Condominium With Balcony,155607686,Jenna,Brooklyn,Gravesend,40.58876,-73.97349,Private room,39,3,20,2019-06-15,1.29,1,324 +22635815,Stylish Bedroom In Washington Heights Manhattan.,26101123,Ken,Manhattan,Washington Heights,40.83558,-73.9404,Private room,38,2,23,2019-06-30,1.43,1,30 +22635959,Private room with visit to queens # 3,158540605,Sonia,Queens,Glendale,40.70116,-73.88935,Private room,45,1,61,2019-07-02,3.52,6,274 +22636145,Private Suite in NYC 15 minutes to Times Square,157979999,Ayesha,Queens,Sunnyside,40.74648,-73.91919,Private room,60,1,76,2019-06-30,4.43,1,301 +22636548,Spacious & Chic 2-BR Home in Manhattan,158563237,Annika,Manhattan,Inwood,40.86958,-73.9172,Entire home/apt,225,4,9,2019-05-19,0.65,1,364 +22636785,Private room with visit to queens # 2,158540605,Sonia,Queens,Glendale,40.70148,-73.88954,Private room,25,2,75,2019-06-23,4.29,6,254 +22637100,"Private room in Queens, Ny # 1",158540605,Sonia,Queens,Glendale,40.70099,-73.89034,Private room,25,1,101,2019-07-04,5.59,6,216 +22637533,Private room,89320309,Rishi,Brooklyn,Fort Hamilton,40.61752,-74.03174,Private room,30,1,2,2019-01-18,0.13,1,0 +22638243,Brooklyn Apartment - Minutes to Prospect Park,16684717,Eric,Brooklyn,Crown Heights,40.67362,-73.9568,Private room,50,1,2,2018-02-11,0.12,1,0 +22638442,A Brief Welcome,22445332,Adrian,Brooklyn,Crown Heights,40.67157,-73.93434,Private room,25,1,1,2018-01-17,0.06,1,0 +22639188,Hells Kitchen - Midtown West - 1 Bedroom Apartment,2925596,Daniel,Manhattan,Hell's Kitchen,40.76464,-73.99361,Entire home/apt,200,5,46,2019-07-01,2.63,1,228 +22647656,59th Street,15819815,Tobey,Manhattan,Midtown,40.7601,-73.96356,Entire home/apt,100,30,1,2018-03-26,0.06,1,177 +22649404,"@Ferry,2Bedroom/4bed.Private,Renovated/Stylish...",1715301,Mark,Staten Island,Tompkinsville,40.63518,-74.07956,Entire home/apt,65,4,63,2019-06-27,3.63,3,191 +22649836,"AirBNB Ozone Park by JFK, NY",151233592,Denise,Queens,Ozone Park,40.68887,-73.8448,Private room,30,1,1,2018-01-11,0.06,1,0 +22650253,Cozy & Sunlit Studio in LES,110345854,Laura,Manhattan,Lower East Side,40.72149,-73.98573,Entire home/apt,110,4,1,2018-11-18,0.13,1,0 +22651032,1BR Guest Suite with private entrance,113469347,Joel,Queens,Queens Village,40.71899,-73.75347,Entire home/apt,45,3,27,2019-06-24,3.65,1,304 +22651464,12 east 86th Steet Upper East Side Building,165898555,Honey,Manhattan,Upper East Side,40.77719,-73.9529,Entire home/apt,200,30,0,,,7,364 +22651509,Cozy New York Apartment,166818540,Shannon R,Manhattan,Chelsea,40.73991,-74.00211,Entire home/apt,115,1,2,2018-10-11,0.11,1,0 +22651614,"Great room in beautiful, light-filled apartment",166819817,Rebecca,Manhattan,Washington Heights,40.83267,-73.94156,Private room,75,30,0,,,1,90 +22651901,HUGE ONE BEDROOM IN BK,124657243,Bugsy,Brooklyn,Flatbush,40.65105,-73.95935,Entire home/apt,89,1,4,2018-03-07,0.23,1,0 +22652358,"Private room for short time rent, Sheepshead Bay",35673036,Victoria,Brooklyn,Sheepshead Bay,40.589,-73.95675,Private room,50,3,3,2018-09-14,0.28,1,189 +22652572,Beautiful private bedroom/bath in private house,93339222,Dena,Brooklyn,Gowanus,40.67968,-73.99066,Private room,125,2,50,2019-06-23,3.19,1,80 +22653378,"Cozy, Chic Private Room -- Steps Away From Metro!",4792728,Adrian,Bronx,Longwood,40.81943,-73.90224,Private room,80,2,9,2018-09-30,0.65,1,0 +22654987,Pinterest Room ! Minimal but cute,9246334,Phil,Brooklyn,Crown Heights,40.67521,-73.93996,Private room,70,7,0,,,1,365 +22655068,1BR Apartment in the Heart of Gramercy,166861637,Gary,Manhattan,Gramercy,40.73674,-73.98308,Entire home/apt,100,3,52,2019-05-31,3.20,1,3 +22656433,Luxury 2 Bedroom Apartment in Williamsburg,166879201,Yazmin,Brooklyn,Bedford-Stuyvesant,40.69305,-73.95599,Entire home/apt,169,2,95,2019-07-05,5.27,1,48 +22656618,124 West 60th one bedroom apartment,165898555,Honey,Manhattan,Upper West Side,40.76973,-73.9848,Entire home/apt,200,30,0,,,7,365 +22656623,Cozy 1 Bedroom in South Williamsburg,4993038,Tiffany,Brooklyn,Williamsburg,40.71082,-73.96128,Entire home/apt,300,1,1,2018-01-20,0.06,1,0 +22656685,Elk Lodge,166884908,Devon,Queens,Long Island City,40.75853,-73.94304,Private room,50,1,0,,,1,0 +22657560,90 Washington top building with spectacular views.,165898555,Honey,Manhattan,Financial District,40.70853,-74.01436,Entire home/apt,225,30,1,2018-05-25,0.07,7,364 +22658582,Comfy couch in Manhattan!,37818581,Sofia,Manhattan,East Harlem,40.8024,-73.93735,Shared room,30,1,17,2018-05-25,0.94,4,0 +22663674,2-bedroom in the heart of Upper West Side.,3889408,Jed,Manhattan,Upper West Side,40.78296,-73.98252,Entire home/apt,545,2,47,2019-06-27,2.79,1,269 +22665286,Stylish home in Queens,4976277,Antonis,Queens,Sunnyside,40.74755,-73.91833,Entire home/apt,200,5,19,2019-06-23,1.18,1,155 +22665392,Spacious and Airy Williamsburg Home,6787261,Anastasia,Brooklyn,Williamsburg,40.71028,-73.95367,Entire home/apt,189,1,52,2019-06-13,2.88,2,0 +22667271,Peaceful Private Luxe Bushwick Space,5680111,Timothy,Brooklyn,Bushwick,40.6881,-73.91312,Private room,71,5,19,2019-04-16,1.29,7,140 +22667641,One bedroom in heart of NYC,167000939,Julianna,Manhattan,Upper East Side,40.76373,-73.96595,Entire home/apt,200,2,13,2018-07-29,0.87,1,0 +22667649,Cute private room in Downtown NYC,260958,Aura,Manhattan,Chinatown,40.71391,-73.99076,Private room,65,3,3,2018-10-15,0.17,3,0 +22667815,Beautiful Private Room in Cobble Hill Brownstone!,22550357,Will,Brooklyn,Cobble Hill,40.6901,-73.99523,Private room,85,10,19,2018-11-24,1.06,1,0 +22668695,Entire Private Floor of West Village Duplex- NY,26754841,Deo,Manhattan,West Village,40.73612,-74.0041,Private room,125,2,3,2019-05-05,0.85,2,0 +22669096,"UWS, Luxury Modern 1 BR 1 Bath, Doorman.",85886048,Lauren,Manhattan,Upper West Side,40.7817,-73.982,Private room,395,3,0,,,1,365 +22670106,Cozy affordable room #1,20120009,Jannices,Brooklyn,Bushwick,40.68726,-73.90621,Private room,38,1,36,2019-04-18,2.00,6,0 +22670366,Cozy affordable room #3,20120009,Jannices,Brooklyn,Bushwick,40.68757,-73.90737,Private room,38,1,33,2019-06-21,1.83,6,1 +22670614,Williamsburg Bedroom Available,22130449,Logan,Brooklyn,Williamsburg,40.71082,-73.95729,Private room,70,2,11,2019-07-04,0.67,1,3 +22671517,55 washington,3428456,Yoon,Brooklyn,DUMBO,40.70311,-73.98853,Private room,74,1,0,,,1,0 +22672271,A Taste of Historic Bedstuy - 20 mins to City!,16275624,Cj,Brooklyn,Bedford-Stuyvesant,40.68141,-73.92769,Private room,69,2,21,2019-07-07,1.20,2,28 +22672516,Artsy 1 bedroom Apartment in East Village,15537429,Walid,Manhattan,East Village,40.72785,-73.97976,Entire home/apt,155,1,80,2019-06-26,4.62,3,21 +22673257,Studio Apartment Above Stephen Colbert Show,5079985,Teena,Manhattan,Midtown,40.76334,-73.98257,Entire home/apt,165,2,4,2018-04-17,0.24,1,188 +22674537,Private bedroom in FiDi,165803414,Michelle,Manhattan,Financial District,40.70789,-74.0108,Private room,80,1,1,2018-01-15,0.06,1,0 +22674576,"Comfy, private bedroom in the Upper East Side.",49222773,Ana,Manhattan,Upper East Side,40.77685,-73.9537,Private room,90,2,12,2018-10-14,0.79,1,2 +22675757,"Central Brooklyn +Beautiful Rooms +Room Vista",167098774,Keisha,Brooklyn,Canarsie,40.63761,-73.89339,Private room,55,2,32,2019-05-27,1.84,3,76 +22676015,LIC 1 Bedroom 10 min to Times Sq -1 stop to NYC,116067987,Kimberley,Queens,Long Island City,40.75489,-73.92167,Entire home/apt,150,2,54,2019-07-03,3.21,2,351 +22681018,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.75059,-73.97122,Entire home/apt,170,30,0,,,7,364 +22683699,Large 1 bdr apartment. 20 mins to Times square,42082112,Tatiana,Manhattan,Harlem,40.82779,-73.94716,Entire home/apt,95,4,34,2019-05-30,2.03,1,56 +22683799,The place,3218951,Marko,Brooklyn,Prospect-Lefferts Gardens,40.65686,-73.95758,Private room,22,7,5,2019-05-28,0.30,1,5 +22683927,Furnished Bedroom Meat Packing District,167188752,Percy,Manhattan,Chelsea,40.7394,-73.99964,Private room,150,3,1,2018-05-02,0.07,1,364 +22685532,Modern 2 bedroom apartment in Ozone Park Queens,143938171,Ashley,Queens,Ozone Park,40.68275,-73.8429,Entire home/apt,200,3,0,,,1,0 +22686497,"Backyard BK! Live like a NY’er in modern, new reno",24124835,Danielle,Brooklyn,Bedford-Stuyvesant,40.6886,-73.92937,Entire home/apt,130,4,53,2019-07-06,3.66,2,41 +22686751,**Summer in SugarHill Manhattan is VERY Sweet**,167208041,Abel,Manhattan,Harlem,40.82476,-73.94332,Entire home/apt,173,2,78,2019-07-06,4.43,1,0 +22687481,"Be Queen For a Stay - Safe, Clean, Trendy in BK",42585518,Anna,Brooklyn,Williamsburg,40.71945,-73.94648,Entire home/apt,75,4,6,2018-09-23,0.37,1,0 +22687843,307 east 44th street fully furnished,165898555,Honey,Manhattan,Midtown,40.75129,-73.9698,Entire home/apt,170,30,0,,,7,364 +22688059,Modern Bedstuy apartment,8992812,Reginald,Brooklyn,Bedford-Stuyvesant,40.6805,-73.92823,Entire home/apt,110,2,10,2019-06-30,0.68,1,0 +22689135,Cozy private room,167250189,Kennedy,Brooklyn,Bushwick,40.69827,-73.93207,Private room,50,5,1,2018-01-21,0.06,1,0 +22689214,A ROOM DESIGNED JUST FOR YOU,72392039,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93057,Private room,55,2,9,2019-04-04,0.80,1,319 +22689939,HUGE One Bedroom East Village!,167258458,East Village,Manhattan,East Village,40.72162,-73.97774,Entire home/apt,135,3,49,2019-06-25,2.71,2,202 +22690429,Huge Bright Spacious apartment to Share,167258458,East Village,Manhattan,East Village,40.7214,-73.97787,Private room,85,2,3,2018-06-07,0.21,2,0 +22690507,Cozy Brooklyn bedroom and bathoom,27264437,Hortense,Brooklyn,Bedford-Stuyvesant,40.69563,-73.93466,Private room,55,5,4,2018-03-15,0.23,2,0 +22690837,"Architect's Haven-- Light, Books and Plants!",26856426,Nicholas,Brooklyn,Gowanus,40.66824,-73.99272,Entire home/apt,189,5,8,2018-06-25,0.52,1,0 +22691267,Handmade artist loft,76422506,Damon,Brooklyn,Clinton Hill,40.69675,-73.96188,Private room,60,3,0,,,1,0 +22697211,Sweet studio in Cobble Hill Brooklyn,41550565,Jeannette,Brooklyn,Cobble Hill,40.68864,-73.99896,Entire home/apt,100,30,5,2019-06-15,0.33,1,117 +22698090,BUENA UBICACIÓN CON DESAYUNO INCLUIDO,167359300,Carmen,Brooklyn,Brighton Beach,40.57458,-73.96514,Private room,76,3,23,2018-09-22,1.37,1,153 +22698756,☆Cozy Brooklyn Condo 18 minutes from Manhattan☆,13203970,Queen Sheba,Brooklyn,Bedford-Stuyvesant,40.67974,-73.91705,Entire home/apt,97,2,44,2019-06-26,2.92,1,174 +22699135,"Clean, Large 2 Bedroom Duplex Apartment w/ Patio",53978622,Narina,Manhattan,East Harlem,40.80954,-73.93934,Entire home/apt,175,4,8,2019-06-19,0.51,2,160 +22699847,Location and Comfort Matter!,134428157,Johny,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94657,Entire home/apt,150,3,27,2019-06-19,1.58,7,319 +22699919,Beautiful spacious private room w/ lovely backyard,117633459,Elena,Brooklyn,Bedford-Stuyvesant,40.68422,-73.95907,Private room,42,7,2,2018-01-23,0.11,1,0 +22700068,Room next to Central Park on the UES!,50765187,Lejla,Manhattan,Upper East Side,40.77287,-73.95897,Private room,175,2,0,,,1,88 +22700180,Queen-sized bed in Ridgewood/Bushwick Area,167004933,Lee,Queens,Ridgewood,40.70348,-73.91051,Private room,40,2,1,2018-08-09,0.09,1,0 +22700620,Cozy 1BR Apt in Williamsburg with Roof & Balcony,56120478,Anna,Brooklyn,Williamsburg,40.71805,-73.94925,Private room,75,1,9,2018-02-24,0.51,1,0 +22701496,"Charming and Spacious, 2bed in Bushwick.",44174916,Adelina,Brooklyn,Bushwick,40.70138,-73.9187,Entire home/apt,75,2,6,2018-02-25,0.33,1,0 +22701863,Beautiful sunny studio apartment,5835731,Ramy,Brooklyn,Bedford-Stuyvesant,40.68037,-73.92029,Entire home/apt,79,2,5,2018-04-08,0.28,1,0 +22701969,"Cute, comfortable, convenient Brooklyn bedroom!",3741891,Rebecca,Brooklyn,Crown Heights,40.67131,-73.94753,Private room,45,2,49,2019-06-21,3.15,1,8 +22702377,Greenpoint apt,167401250,Darby,Brooklyn,Greenpoint,40.72292,-73.94618,Private room,78,1,2,2018-04-22,0.13,1,0 +22702906,Cozy Brownstone Brooklyn Studio Near Subway!!,6291509,Daniel,Brooklyn,Boerum Hill,40.6876,-73.98472,Entire home/apt,160,4,4,2018-09-26,0.30,1,14 +22702994,Furnished Bedroom near Prospect Park!,99652823,Adam,Brooklyn,Kensington,40.64111,-73.97345,Private room,50,2,0,,,1,0 +22703004,Great affordable price for room near Manhattan,140057330,Joey,Queens,Ridgewood,40.69847,-73.90735,Private room,60,1,38,2019-06-16,2.28,7,47 +22703468,"Great private room in Hell’s kitchen +TIMES SQUARE",167270001,Piero,Manhattan,Hell's Kitchen,40.75763,-73.99221,Private room,300,1,64,2019-06-30,3.59,2,332 +22703920,"Central Brooklyn Beautiful Rooms +Room Florence +#1",167098774,Keisha,Brooklyn,Canarsie,40.63905,-73.89243,Private room,55,2,20,2019-06-24,1.40,3,177 +22704069,The Paris - Duplex Penthouse with Roof Deck,162575767,Hampton,Manhattan,SoHo,40.72044,-73.9998,Entire home/apt,800,2,0,,,1,2 +22704461,Amazing Central Park One Bedroom,2681756,Imri,Manhattan,Upper West Side,40.7861,-73.97097,Entire home/apt,170,3,0,,,1,0 +22704580,Lincon appartament,93516714,Nicolo,Manhattan,Upper West Side,40.7734,-73.98684,Private room,120,60,0,,,1,365 +22705059,Cute room in Manhattan 30 mins to Times Square,1692538,Nuttamon,Manhattan,Washington Heights,40.85411,-73.92952,Private room,99,1,45,2019-06-17,2.70,5,315 +22705115,Spacious apartment with all necessities nearby,47412299,Mohammed,Brooklyn,Canarsie,40.64178,-73.90179,Entire home/apt,90,5,23,2019-06-30,1.70,1,293 +22705516,The Quietest Block in Manhattan :),127740507,Kathleen,Manhattan,Harlem,40.83102,-73.94181,Private room,65,2,103,2019-07-07,5.89,2,0 +22705963,1 Large bedroom in Murray Hill,166873118,Adil,Manhattan,Murray Hill,40.74476,-73.9755,Private room,70,15,0,,,1,0 +22706034,Vintage east village apartment,20365135,M,Manhattan,East Village,40.72804,-73.98726,Private room,80,2,3,2018-04-09,0.19,1,0 +22706231,Nice Place in The Bronx!!,163047410,Erick,Bronx,Longwood,40.81961,-73.90019,Entire home/apt,40,5,45,2019-06-23,2.51,1,266 +22706343,Bright-Spacious Private Room /30 min NYC,165257273,Soon,Queens,Flushing,40.77053,-73.80067,Private room,54,30,5,2019-06-27,0.39,3,335 +22712478,"Private, Comfy Town Home - Heart of Williamsburg",10545382,Chase,Brooklyn,Williamsburg,40.7169,-73.96493,Private room,138,1,75,2019-07-07,4.59,2,81 +22713035,"Bright, minimal hideaway with ensuite bathroom",52825108,Raven,Brooklyn,Bushwick,40.69928,-73.9309,Private room,66,14,1,2018-11-13,0.13,1,49 +22713055,Cozy Private room in Hamilton Heights,54740781,Melissa,Manhattan,Harlem,40.82949,-73.94644,Private room,35,3,2,2018-08-13,0.17,1,0 +22713294,Cozy Ridgewood Spot,58884411,Hubert,Queens,Ridgewood,40.70111,-73.89988,Private room,25,3,0,,,1,0 +22713353,Large Brooklyn Rm- Prospect Park & F/G Train!,133545456,Casey,Brooklyn,South Slope,40.66085,-73.98178,Shared room,55,2,1,2018-03-18,0.06,1,0 +22714327,Birth place of Hip hop in the heart of the Bronx.,167560332,Schomberg,Bronx,Hunts Point,40.81978,-73.88743,Private room,45,2,0,,,1,0 +22714571,Amazing Private Room @Madison Square Garden,167270001,Piero,Manhattan,Hell's Kitchen,40.7559,-73.99324,Private room,109,1,91,2019-06-25,5.11,2,304 +22714688,"Huge, New and Green Oasis in Brooklyn",45370849,Judith,Brooklyn,Bay Ridge,40.63557,-74.03449,Entire home/apt,110,2,34,2019-06-29,3.03,1,96 +22714989,Entire Apartment - A retreat in Lefferts Garden,41911368,Katie,Brooklyn,Prospect-Lefferts Gardens,40.65682,-73.95875,Entire home/apt,125,3,0,,,2,0 +22715051,Duplex Apt in Brooklyn Beautiful Brownstone,24967136,Paul,Brooklyn,Bedford-Stuyvesant,40.68226,-73.93153,Entire home/apt,119,5,25,2019-05-25,1.49,2,77 +22715506,Luxury Chelsea apt. walking distance to everything,5601966,Kristen,Manhattan,Chelsea,40.74907,-74.00374,Entire home/apt,375,4,35,2019-04-26,2.19,1,79 +22715517,"Bedroom balcony, modern apt, rooftop williamsburg",17766980,Lucas,Brooklyn,Williamsburg,40.70788,-73.9511,Private room,65,3,5,2018-05-24,0.31,1,0 +22716305,LargeBedroom gem in historic Red Hook Brooklyn!,17129810,Jeffrey,Brooklyn,Columbia St,40.68155,-74.0039,Private room,75,4,4,2018-11-11,0.33,5,0 +22717766,The heart of Brooklyn,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9462,Entire home/apt,58,30,4,2019-05-15,0.26,6,220 +22717838,Sunny apartment with easy connections to anywhere.,120847,Sam,Brooklyn,Bedford-Stuyvesant,40.68959,-73.95616,Private room,85,3,11,2019-06-30,0.82,1,13 +22719709,Cozy Brooklyn Stay,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68177,-73.88277,Private room,68,2,10,2018-12-01,0.94,3,365 +22723461,Large comfortable Studio! Perfect for couple!,167677659,Eriko,Manhattan,Harlem,40.80399,-73.95402,Entire home/apt,90,4,5,2019-02-24,0.31,1,7 +22729984,Madinina,116874533,Bertin,Manhattan,Harlem,40.81294,-73.94609,Private room,90,2,30,2019-07-01,1.88,2,331 +22730139,Staten Island full size living space-lower level,167595532,Nabil,Staten Island,Arden Heights,40.56033,-74.18259,Entire home/apt,75,1,20,2019-01-08,1.55,1,6 +22730298,Spacious King size Apartment near Prospect Park,131827796,Rose,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95427,Entire home/apt,130,3,36,2019-06-25,2.23,1,132 +22730899,Cozy bedroom in the heart of Greenpoint,17338440,Justyna,Brooklyn,Greenpoint,40.72904,-73.94885,Private room,50,5,1,2018-02-20,0.06,1,0 +22731353,Cozy apartment in Greenwich Village,27960761,Christopher,Manhattan,Greenwich Village,40.72815,-73.99586,Entire home/apt,150,2,14,2018-04-22,0.79,3,0 +22732004,Williamsburg BK | Private Guest Suite,3490389,Daniel,Brooklyn,Williamsburg,40.71589,-73.94288,Private room,100,3,19,2019-06-24,1.35,1,172 +22733147,Gorgeous bedroom in prime park slope,60126799,Gunveer,Brooklyn,Park Slope,40.67158,-73.97706,Private room,70,4,0,,,1,0 +22733533,Duplex w Rooftop Patio,167818456,Anna,Brooklyn,Williamsburg,40.71297,-73.95657,Entire home/apt,345,2,47,2019-06-29,3.24,2,146 +22734359,Private room next to Brooklyn college,167831565,Andrew,Brooklyn,Flatlands,40.62812,-73.94664,Private room,59,1,6,2018-03-17,0.34,1,0 +22734483,~Beautiful 1 Bedroom Apt in Prime Upper East Side~,45241930,Juline,Manhattan,Upper East Side,40.77207,-73.95599,Entire home/apt,150,60,6,2019-07-02,0.36,3,33 +22734514,Clean room with Balcony available.,167818421,Marie Louise,Queens,Astoria,40.76645,-73.91486,Private room,80,3,22,2018-10-25,1.28,1,188 +22735103,Sunnyside Bedroom,33695224,Mehmet,Queens,Sunnyside,40.74439,-73.91372,Private room,60,1,3,2018-05-28,0.17,1,0 +22735497,Magical 1BR Apt,12150056,Airik,Manhattan,East Harlem,40.78662,-73.94109,Entire home/apt,100,1,4,2018-05-19,0.22,1,22 +22736194,The room,99542612,Rayshawn,Brooklyn,Flatbush,40.6322,-73.95969,Private room,50,1,0,,,1,0 +22737164,Designer’s Penthouse w/ private terrace,510931,Autumn,Manhattan,Financial District,40.70402,-74.01572,Private room,120,2,11,2019-05-30,0.66,2,58 +22744855,Water View near Flushing近法拉盛海景房,57195513,Sijia,Queens,College Point,40.79427,-73.84726,Entire home/apt,120,7,13,2018-04-15,0.73,1,0 +22745460,Cozy Room,32304780,Nicauris,Manhattan,Harlem,40.82389,-73.95014,Private room,48,30,5,2019-05-31,0.32,3,332 +22745841,Large Sunny West Village Room,4690758,Rachel,Manhattan,West Village,40.73761,-73.99758,Private room,78,1,0,,,1,0 +22746368,Bed no.2 in the living room,47735494,Iris,Queens,Rego Park,40.72666,-73.87004,Shared room,23,1,13,2018-04-02,0.77,4,0 +22746971,Light-filled 1 bdrm with 20ft ceilings,4342526,Michael,Brooklyn,Crown Heights,40.67985,-73.96277,Entire home/apt,175,5,4,2018-08-05,0.31,1,98 +22747209,McSimon's | Cozy Private Studio | Near NYC,8113165,Cynthia And Froebel,Brooklyn,Canarsie,40.63762,-73.91004,Entire home/apt,95,3,4,2019-01-03,0.23,2,108 +22747377,Private cozy bedroom in bright and airy apartment.,13032188,Alison,Brooklyn,Bedford-Stuyvesant,40.68482,-73.93723,Private room,40,1,4,2018-10-06,0.25,1,84 +22748332,Luxury Home in the Heart of Manhattan,891403,Waj,Manhattan,Kips Bay,40.74322,-73.98005,Entire home/apt,339,3,19,2019-04-05,1.25,1,365 +22749701,"Sunny, Private and Spacious Brooklyn Apartment",12954861,Caleb,Brooklyn,Crown Heights,40.67605,-73.95791,Entire home/apt,100,2,20,2018-12-12,1.17,1,0 +22749967,"Cosy, Colorful, Great Bedford Stuyvesant Location",24467449,Laura,Brooklyn,Bedford-Stuyvesant,40.68567,-73.95146,Entire home/apt,79,1,8,2018-11-18,0.47,2,21 +22750161,JFK 3 Comfort 5 Mins from JFK Private Bedroom,156684502,Nalicia,Queens,Springfield Gardens,40.66298,-73.77,Private room,50,1,302,2019-07-06,16.81,3,26 +22751480,Spacious private guest room in Uptown Manhattan,168015754,Jeffer,Manhattan,Inwood,40.85925,-73.9297,Private room,40,3,33,2019-06-05,2.05,1,18 +22751525,THE LOFT,155223823,Michelle,Manhattan,Harlem,40.82881,-73.94309,Shared room,85,1,1,2018-10-07,0.11,1,90 +22751606,"REDESIGNED 2Bdrs in PARK SLOPE,BROOKLYN !",87786261,Sophia,Brooklyn,South Slope,40.66064,-73.98564,Entire home/apt,129,1,67,2019-06-26,3.97,5,255 +22751906,Metropolitan Brooklyn Oasis in Heart of Bed Stuy,167019780,Derick,Brooklyn,Bedford-Stuyvesant,40.68117,-73.93537,Entire home/apt,105,3,41,2019-06-19,2.46,1,211 +22752094,Spacious 1st fl-basement duplex 20min to Times Sq!,33995259,Brad,Manhattan,Upper East Side,40.77418,-73.95327,Entire home/apt,275,7,10,2018-12-30,0.66,1,0 +22753683,"Brand new, sunlit apartment next to Prospect Park",2493425,Simone,Brooklyn,Flatbush,40.65217,-73.95974,Private room,47,2,7,2018-03-31,0.40,1,0 +22753775,Artist Loft.Good Energy.Big Space With Fire Place!,168044240,Mari,Manhattan,NoHo,40.7275,-73.99168,Entire home/apt,265,2,42,2019-06-07,2.45,1,70 +22753912,Private Apartment for Discerning Travelers,16200683,Motonobu,Manhattan,Harlem,40.81246,-73.95161,Entire home/apt,155,4,18,2019-04-20,1.05,1,0 +22754004,"Peaceful, Sunlit Haven with Full sized Bed",41311743,Jean,Brooklyn,Crown Heights,40.67593,-73.94966,Private room,80,3,0,,,2,0 +22754110,Private Apartment in Chelsea,47844929,Ethan,Manhattan,Chelsea,40.73951,-73.99979,Entire home/apt,115,1,4,2018-02-25,0.24,1,0 +22754373,"Brooklynite Room, 10 mins to Williamsburg/LES/City",1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69251,-73.9301,Private room,35,1,5,2018-09-01,0.46,3,59 +22756078,Huge Private Garden Apt - Memory Foam Mattress,17105274,Matt,Brooklyn,Bushwick,40.69124,-73.90236,Private room,69,14,6,2019-06-27,0.35,2,319 +22759494,"Cozy Design House: Sunny, spacious, 3 bdr getaway",10782927,Joel,Brooklyn,Bushwick,40.7,-73.91714,Entire home/apt,250,1,45,2019-06-17,2.56,1,96 +22760853,Zen 1 bedroom near Central Park+MET+Guggenheim,10385345,Christopher,Manhattan,Upper East Side,40.77862,-73.94562,Entire home/apt,100,14,6,2019-06-12,1.94,1,0 +22761054,Bright spacious Studio overlooking Manhattan,168121995,Mayra,Manhattan,Midtown,40.75241,-73.98558,Entire home/apt,120,180,3,2019-01-31,0.42,1,299 +22762560,Heart of new york city modern apt,4441023,Skander,Manhattan,Hell's Kitchen,40.75497,-73.99788,Entire home/apt,450,2,2,2018-05-26,0.14,1,0 +22763812,Spacious Sun-filled Room in Brooklyn,327778,Emily,Brooklyn,Crown Heights,40.67508,-73.92269,Private room,36,3,8,2018-11-30,0.55,1,0 +22764944,1 ROOM IN 2 BEDROOM APT DOORMAN BLDG WITH ELEVATOR,119847900,Marie,Manhattan,Washington Heights,40.8485,-73.93509,Private room,52,1,46,2019-06-25,2.73,1,21 +22766375,Gramercy Apartment,34516512,Janan,Manhattan,Kips Bay,40.74252,-73.9798,Entire home/apt,175,2,0,,,1,0 +22766857,Howard Johnson JFK NYC,167995009,Danlin,Queens,Jamaica,40.66745,-73.78156,Private room,130,1,4,2018-08-07,0.27,1,365 +22767004,Room with high ceilings in South Slope,8125932,Stephanie,Brooklyn,Windsor Terrace,40.65892,-73.98386,Private room,45,2,26,2019-06-23,1.60,1,74 +22767598,Newly Renovated Studio Apartment,50605766,Paul,Manhattan,Tribeca,40.7118,-74.0083,Entire home/apt,150,30,1,2018-08-11,0.09,1,328 +22770313,4BR Queens Apartment -30 Mins from Manhattan!,103104686,Evolve,Queens,Springfield Gardens,40.66658,-73.76581,Entire home/apt,228,2,4,2018-07-22,0.26,2,0 +22770321,Spacious 2BR/2BTH/& Parking| Close to Everything!,168196322,Dalton,Brooklyn,East New York,40.66337,-73.88036,Entire home/apt,80,5,55,2019-06-24,3.31,1,139 +22770827,2 bedroom in a prewar building,19962052,Thikshan,Manhattan,Gramercy,40.73684,-73.98157,Entire home/apt,200,2,20,2019-05-07,1.17,3,20 +22770831,Marco's place,15534068,Marcus,Queens,Richmond Hill,40.70379,-73.8187,Private room,50,7,14,2019-06-24,1.03,1,93 +22771871,My Casa es su Casa!,168211014,Rosa,Bronx,Mott Haven,40.80906,-73.92031,Entire home/apt,150,1,9,2019-06-30,0.72,1,168 +22775292,HUGE Bushwick Room with TERRACE & Pool,413447,Noelle,Brooklyn,Bushwick,40.70262,-73.91679,Private room,65,2,4,2018-08-31,0.36,2,0 +22775694,XL BUSHWICK DREAM STUDIO BR IN DUPLEX BY TRAIN!,31665926,Jewel,Brooklyn,Bushwick,40.69062,-73.92079,Private room,115,3,0,,,1,0 +22775929,Charming & Bright East Village One Bedroom,57791424,April,Manhattan,East Village,40.72406,-73.98275,Entire home/apt,180,3,2,2018-07-08,0.15,1,0 +22777530,Private bedroom in Gorgeous Brooklyn Apartment!,160054295,Cesar,Brooklyn,Crown Heights,40.67582,-73.94054,Private room,47,1,5,2019-01-02,0.53,1,0 +22778341,"Bedroom 14x16ft, shared bathroom, 5 mins to subway",168279437,Lucky,Queens,Woodside,40.74211,-73.89067,Private room,40,1,7,2018-09-21,0.41,1,0 +22779542,Bergen Street by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.67862,-73.97065,Entire home/apt,1680,1,0,,,12,14 +22779726,East 72nd Townhouse by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper East Side,40.76824,-73.95989,Entire home/apt,7703,1,0,,,12,146 +22779746,East 7th Street III by (Hidden by Airbnb),156158778,Sally,Manhattan,East Village,40.72779,-73.98644,Entire home/apt,3518,1,0,,,12,215 +22780103,Park Avenue Mansion by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper East Side,40.78517,-73.9527,Entire home/apt,6419,1,0,,,12,45 +22780158,Park Place Townhouse by (Hidden by Airbnb),156158778,Sally,Brooklyn,Park Slope,40.67859,-73.97787,Entire home/apt,2626,1,0,,,12,31 +22780220,Prospect Place by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.67829,-73.96899,Entire home/apt,2103,1,0,,,12,20 +22781825,Free bottle of wine with stay!,168308087,Sarah,Manhattan,Chelsea,40.73686,-73.99171,Entire home/apt,75,1,0,,,1,0 +22785118,BED-STUY BEAUTY W/ Private Entry & Private Garden,126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68518,-73.94283,Entire home/apt,125,2,61,2019-06-30,3.47,3,250 +22786489,(AC) 4 ppl - 2 Rooms 1 private and 1 sharing bath,110965771,Wilson,Queens,Flushing,40.77253,-73.82467,Private room,140,2,14,2019-05-20,0.81,7,57 +22786958,"Luxurious, Modern Studio in Heart of Chelsea, NY",168353272,Maddi,Manhattan,Chelsea,40.74376,-73.99313,Entire home/apt,220,1,9,2019-06-09,1.79,1,13 +22789426,"Newly Refurbished MIDTOWN Condo, PRIVATE BATHROOM",38638199,Rolland,Manhattan,Midtown,40.75721,-73.96813,Private room,50,1,18,2018-07-30,1.01,1,0 +22789917,Private room in colorful Brooklyn neighborhood,44862267,Herman,Brooklyn,Williamsburg,40.70283,-73.93788,Private room,30,3,32,2019-06-08,1.85,1,36 +22790196,Stunning view in TriBeCa luxury 2 bedrooms,19981762,Chrystele,Manhattan,Battery Park City,40.7152,-74.01368,Entire home/apt,980,3,0,,,1,0 +22790700,Cozy and Newly Renovated Brooklyn Brownstone,83426350,Chris,Brooklyn,Bedford-Stuyvesant,40.68917,-73.94937,Private room,49,2,0,,,1,0 +22792652,"GREAT BEDROOM (IN 2 BRS APT) +EXCELLENT LOCATION!!",118390361,Tsvika,Manhattan,Upper East Side,40.78096,-73.95412,Private room,79,2,88,2019-07-06,5.69,1,107 +22792711,Bright and Beautiful Artists’ Haven,28913914,Maresa,Queens,Ridgewood,40.70228,-73.90097,Private room,90,1,4,2019-06-02,2.26,1,1 +22792746,3 Bedroom/4 Beds @ Ferry. Sleeps 7. Beautiful!,117492425,Dine,Staten Island,St. George,40.64581,-74.07949,Entire home/apt,150,4,0,,,6,0 +22793472,"Spacious Room in Prime Prospect Heights, Brooklyn",168416827,Tom,Brooklyn,Prospect Heights,40.67404,-73.96395,Private room,69,4,16,2019-06-21,0.95,1,300 +22793957,Cosy bedroom,6237087,Rusty,Brooklyn,Williamsburg,40.71214,-73.94423,Private room,50,2,15,2019-05-21,0.97,1,0 +22794168,Sunny park-view room in Harlem brownstone,8637211,Judie And Steven,Manhattan,Harlem,40.81899,-73.94714,Private room,49,30,11,2019-01-17,0.79,4,257 +22794272,Gorgeous Daylight Photo Studio in Chelsea,3750764,Kevin,Manhattan,Chelsea,40.74881,-74.00473,Entire home/apt,1100,1,0,,,6,0 +22794719,Habitacion de renta para 2,168429942,Jennifer,Bronx,Norwood,40.88007,-73.87326,Private room,50,5,4,2019-06-17,0.26,2,324 +22795221,Gorgeous natural light in Chelsea photo studio,3750764,Kevin,Manhattan,Chelsea,40.75021,-74.00479,Entire home/apt,1500,1,0,,,6,0 +22796694,room 3 Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81376,-73.95354,Private room,69,2,4,2018-10-28,0.29,11,180 +22796888,room 2 Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81236,-73.95204,Private room,69,1,4,2018-08-23,0.29,11,365 +22797033,room A Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81196,-73.95221,Private room,65,1,3,2018-03-17,0.18,11,364 +22797190,Large 1 bedroom apartment East Village / Gramercy!,9374496,Svetlana,Manhattan,Gramercy,40.73307,-73.98347,Entire home/apt,150,3,16,2019-06-23,0.90,1,0 +22797978,SEXY Grand Central Modern CHIC BRAND NEW PARK AVE,168465501,Ian,Manhattan,Murray Hill,40.7504,-73.97759,Entire home/apt,200,30,3,2019-05-31,0.28,4,311 +22802275,The clove,168501789,Edward,Brooklyn,Prospect-Lefferts Gardens,40.65676,-73.94139,Entire home/apt,150,3,1,2018-06-14,0.08,1,363 +22803859,Modern 1-Bedroom in Heart of Brooklyn,7431741,Chelsea Holland,Brooklyn,Crown Heights,40.67336,-73.95383,Entire home/apt,110,2,2,2018-03-18,0.12,1,0 +22805947,Big studio in Pospect Park,162127741,Roger,Brooklyn,Prospect-Lefferts Gardens,40.65757,-73.96039,Entire home/apt,110,5,28,2019-06-30,1.71,1,347 +22809557,"East Brodway in Lower East Side, quiete and cute!",168565806,Paolo,Manhattan,Lower East Side,40.71527,-73.9898,Private room,69,8,6,2019-04-25,0.37,2,334 +22810710,Brooklyn Heights 1BR w/ Park View,22768255,Dixon,Brooklyn,Brooklyn Heights,40.6986,-73.99322,Entire home/apt,230,1,17,2018-09-17,0.97,1,0 +22811128,Crown Heights Hideaway,44278310,Charity,Brooklyn,Crown Heights,40.67488,-73.9388,Private room,50,1,0,,,1,0 +22811207,Nice & cozy room located in Manhattan apt!!,90064069,Miryan,Manhattan,Harlem,40.82742,-73.94878,Private room,60,1,103,2019-07-05,5.94,1,19 +22811519,Large Cozy Studio Apartment,167567675,Zdenka,Queens,Middle Village,40.71131,-73.87376,Entire home/apt,100,1,44,2019-06-23,4.33,1,264 +22812324,"Spacious 1 bed in the heart of Bed-Stuy, Brooklyn!",33822427,Christopher,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94873,Entire home/apt,92,2,42,2019-05-27,2.47,1,11 +22813265,master room,107183778,Coco,Queens,Flushing,40.76936,-73.83035,Private room,98,1,26,2019-06-29,1.48,1,215 +22813351,"Spacious, Bright Apartment in an Elevator Building",1597722,Eva,Brooklyn,Williamsburg,40.70858,-73.94791,Entire home/apt,145,7,5,2018-09-13,0.32,1,0 +22814281,cozy haven,168613171,Margarita,Brooklyn,Williamsburg,40.71286,-73.95648,Private room,175,3,0,,,1,365 +22814859,Cozy Private 1 Bedroom in a Shared Area,168619140,Terry,Brooklyn,Canarsie,40.63773,-73.91729,Private room,80,1,5,2019-02-16,0.53,2,0 +22815108,room B private manhattan room,164886138,Eliahu,Manhattan,Harlem,40.81337,-73.95206,Private room,69,1,1,2018-03-15,0.06,11,364 +22815191,Private Room by the Cloisters,35559100,Johanna,Manhattan,Inwood,40.86529,-73.92213,Private room,55,1,28,2019-06-24,2.54,1,175 +22815257,room C Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81351,-73.95186,Private room,65,1,0,,,11,364 +22815339,room D Manhattan private room,164886138,Eliahu,Manhattan,Harlem,40.81339,-73.95176,Private room,65,1,1,2018-04-10,0.07,11,364 +22815783,Your cozy space in Brooklyn,21892425,Caroline,Brooklyn,Crown Heights,40.66884,-73.95957,Private room,40,1,120,2019-07-01,6.77,1,8 +22817544,A Tree Grows in Brooklyn,4035432,Lisa,Brooklyn,South Slope,40.66013,-73.98649,Private room,100,2,9,2018-08-03,0.59,1,0 +22818498,Prime Williamsburg Room on Bedford Ave L,168660624,Carly,Brooklyn,Williamsburg,40.72021,-73.96246,Private room,40,5,0,,,1,0 +22824469,Crown Heights Hideaway,168567714,Lennie & Lincia,Brooklyn,East Flatbush,40.65875,-73.93698,Private room,68,1,18,2019-06-26,1.06,1,152 +22825784,Lower Eastside Loft,27584983,Camille,Manhattan,Lower East Side,40.71263,-73.98106,Entire home/apt,250,3,9,2018-06-12,0.53,1,0 +22829069,Sunny spacious apartment in NY available today!,22610399,Dmitry,Brooklyn,Midwood,40.62306,-73.96965,Entire home/apt,66,18,0,,,1,0 +22829464,Marilyn private bedroom in Bushwick NEAR SUBWAYS,139490165,Melvin & Maya,Brooklyn,Bushwick,40.68425,-73.90708,Entire home/apt,66,3,0,,,3,0 +22830508,Williamsburg Garden Oasis,168159627,Holly,Brooklyn,Williamsburg,40.72017,-73.95977,Entire home/apt,600,2,26,2019-05-09,1.59,1,253 +22830789,Freshly NewPrivateROOM by the7train*15minToMidtown,38814918,Sam,Queens,Woodside,40.74615,-73.90216,Private room,60,1,123,2019-07-03,7.07,1,105 +22832352,*PRIME* Serenity & Love-Private Oasis (Bedford Av),168784638,Ralph & Jenny,Brooklyn,Williamsburg,40.71494,-73.96214,Entire home/apt,237,3,28,2019-06-03,2.09,1,0 +22833112,Cozy on 5th East Harlem,92524622,Annett,Manhattan,East Harlem,40.80106,-73.94503,Entire home/apt,100,5,35,2019-05-31,2.19,1,0 +22833434,"UWS Super Host, Spacious Room near Central Park,CU",17848380,Yi Qun,Manhattan,Upper West Side,40.79551,-73.97221,Private room,120,1,14,2018-12-08,0.81,3,360 +22833773,A Private and Cozy room near Columbia University,168804578,Mike,Manhattan,Morningside Heights,40.80895,-73.95894,Private room,60,1,23,2018-05-20,1.31,1,0 +22835316,Bedstuy Brownstone Luxury Apartments,45688186,Chinasokwu,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92815,Entire home/apt,105,1,72,2019-07-02,4.08,2,307 +22840839,Quiet Studio in the Heart of it All,98956556,Mark,Brooklyn,Boerum Hill,40.68531,-73.97948,Entire home/apt,150,2,19,2019-06-05,1.13,1,1 +22841280,RARE & Spacious Brooklyn Brownstone! Great Area!,26243777,Jami,Brooklyn,Bedford-Stuyvesant,40.68729,-73.92949,Entire home/apt,125,4,6,2019-04-19,0.36,2,0 +22842339,Cute sunny room in big Bushwick apartment,143460,Megan,Brooklyn,Bushwick,40.69819,-73.92194,Private room,45,1,3,2018-07-29,0.21,2,0 +22842989,"Incredible VIEW, Incredible PRICE",21283448,Matt,Brooklyn,Prospect-Lefferts Gardens,40.65888,-73.95959,Entire home/apt,90,4,37,2019-01-02,2.18,1,0 +22843226,"Cozy place in Astoria, 10min to Manhattan",168348550,Jewel,Queens,Long Island City,40.75533,-73.93261,Entire home/apt,175,2,45,2019-06-22,2.84,1,33 +22843793,Large Sunny Apartment in Brooklyn,6762247,Thomas,Brooklyn,Bushwick,40.69185,-73.92052,Entire home/apt,125,1,2,2018-07-07,0.13,2,0 +22845926,"Spacious, Manhattan Home has a private room!",74410137,Jordan,Manhattan,Harlem,40.80684,-73.94612,Private room,46,3,10,2018-12-20,0.57,1,0 +22846744,Sweet & Sunny Studio in Chinatown!,168946125,Chloe,Manhattan,Chinatown,40.71527,-73.99841,Entire home/apt,150,3,4,2018-04-17,0.23,1,0 +22847493,Modern Brooklyn Apartment w GYM & Rooftop Access,43207538,Lo,Brooklyn,Bushwick,40.69226,-73.92681,Private room,60,2,0,,,1,0 +22847975,New york,95014144,Petra,Queens,Astoria,40.76119,-73.91294,Private room,70,1,0,,,1,0 +22848359,Cozy Basement,14969786,Jeff,Bronx,Kingsbridge,40.86664,-73.89844,Private room,70,1,26,2019-07-07,5.23,1,0 +22848378,Prime Union Square Location Private,9630772,Nada,Manhattan,Gramercy,40.73609,-73.98566,Private room,149,4,10,2019-01-02,0.65,2,0 +22848599,Private Floor—Full Private Bath—3 Min to Subway!,16139880,Ksenia & Masha,Brooklyn,Bedford-Stuyvesant,40.67685,-73.91499,Private room,50,3,20,2019-06-22,1.15,6,178 +22849615,The best location - ASTORIA 46th st,46081317,Fabiana,Queens,Astoria,40.75639,-73.91619,Private room,50,25,5,2019-01-01,0.33,3,155 +22850413,1 bedroom Sublet in a 3BR/1Bath IN UNIT LAUNDRY!,114418657,Christopher,Manhattan,Upper West Side,40.80095,-73.96725,Private room,60,90,0,,,1,90 +22851242,Gorgeous Bedroom with breakfast by Central Park,17719708,Roman,Manhattan,East Harlem,40.80194,-73.94397,Private room,69,3,17,2019-07-06,1.27,1,77 +22852022,Sunny Green Apt (L&M trains) Bklyn/Queens border,26808662,Lauren,Queens,Ridgewood,40.69864,-73.90746,Private room,44,1,4,2018-12-09,0.34,1,0 +22852435,SUITE BKLYN - Private 1 Bedroom Apartment,169012324,Salisha,Brooklyn,East Flatbush,40.63767,-73.94011,Entire home/apt,80,90,23,2018-09-15,1.38,1,156 +22856025,Newly Renovated Guest Room with Private Bath,34635838,Madeline,Staten Island,Bull's Head,40.60295,-74.17117,Private room,25,1,34,2019-05-16,2.06,2,0 +22857268,Spectacular 4 Story Townhouse,25168124,Diana,Brooklyn,Greenpoint,40.72998,-73.95649,Entire home/apt,480,7,2,2019-04-26,0.13,1,23 +22857712,Private Bed in Queer Co-Living Space for Men,34614054,Marco,Brooklyn,Greenpoint,40.72522,-73.95184,Private room,46,3,7,2019-06-08,0.40,5,285 +22858455,Beautiful Studio. PRIVATE patio.Rooftop.Best Area.,14117835,Ruth,Manhattan,East Village,40.721,-73.98186,Entire home/apt,150,2,3,2019-07-03,0.17,1,6 +22859702,Sunlit Bushwick Oasis w/ Private Bathroom!,87181550,H&E,Brooklyn,Bushwick,40.68993,-73.90499,Private room,55,1,36,2019-05-29,2.07,1,26 +22860511,Large Queen Room in Beautiful Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73531,-73.95631,Private room,58,3,9,2018-11-24,0.52,4,25 +22860844,Cozy Queen Room in Majestic Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.7348,-73.95701,Private room,58,3,11,2018-11-22,0.64,4,14 +22862288,Downtown 1BR with Stunning Views and Terrace,13997208,Eileen,Manhattan,Lower East Side,40.72073,-73.9929,Entire home/apt,280,3,0,,,1,87 +22862793,A Zen Oasis in the East Village,102841376,Viramo,Manhattan,East Village,40.72509,-73.98954,Private room,139,4,3,2018-07-31,0.17,1,0 +22862864,Nolita Nest,138706642,Kayla,Manhattan,Nolita,40.72011,-73.99535,Private room,125,1,1,2018-02-03,0.06,1,0 +22862877,ROYAL NEST FOR LE$$ ( New York City),8997485,Uri,Brooklyn,Midwood,40.62427,-73.96194,Entire home/apt,69,2,64,2019-07-04,3.95,2,225 +22862882,Apartamento muy acogedor en Manhattan,29574418,Nancy,Manhattan,Washington Heights,40.8521,-73.93958,Entire home/apt,110,7,19,2019-06-19,1.11,1,171 +22863062,Beautiful 2-br Apt in the Heart of Williamsburg,1678861,Efrat,Brooklyn,Greenpoint,40.72016,-73.95462,Entire home/apt,275,2,3,2018-09-03,0.22,1,0 +22863817,Private Room in Cozy Bushwick Apartment,25243100,Janelle,Brooklyn,Bushwick,40.69158,-73.91096,Private room,45,2,0,,,1,0 +22865818,"DREAM ROOM: gorgegous renovated 1bd, 1 bath",30786898,Erin,Brooklyn,Williamsburg,40.7195,-73.96084,Private room,125,3,1,2018-02-01,0.06,1,0 +22866619,Cozy and Luxurious Artist Retreat in Williamsburg,6513281,Pascal-Louis,Brooklyn,Williamsburg,40.71174,-73.94956,Entire home/apt,249,2,54,2019-07-06,3.17,2,154 +22867334,Astoria -Near Manhattan NYC and LGA airport.,169166409,Rafael,Queens,Astoria,40.7682,-73.92852,Shared room,32,2,28,2018-08-04,1.64,2,16 +22868760,BEAUTIFUL Modern LOFT - Rooftop terrace,3699016,Veronika,Brooklyn,Crown Heights,40.6774,-73.95133,Entire home/apt,140,2,54,2019-06-27,3.17,2,1 +22868847,Charming/Cozy Upper West Side Studio,12624093,Elle,Manhattan,Upper West Side,40.7972,-73.96156,Entire home/apt,86,2,3,2018-04-06,0.19,1,0 +22869025,Cozy bedroom in Brooklyn Brownstone,169201555,Tia,Brooklyn,Crown Heights,40.66989,-73.9436,Private room,50,3,1,2018-05-19,0.07,1,18 +22869229,Beautiful 2 bedroom apartment in NYC!,23254432,R.J.,Manhattan,Financial District,40.70351,-74.01266,Entire home/apt,165,2,27,2018-07-27,1.57,1,0 +22869573,Best location! Cozy East Village bohemian loft>>,17631246,Yamile,Manhattan,East Village,40.72997,-73.98772,Entire home/apt,150,2,20,2019-05-27,1.15,1,0 +22869995,Indo Sweet,169211917,Keon,Brooklyn,East Flatbush,40.64016,-73.94119,Private room,80,1,1,2018-05-06,0.07,1,179 +22871526,Comfy private room in trendy Clinton Hill Brooklyn,169226619,Sarah,Brooklyn,Clinton Hill,40.69083,-73.9655,Private room,58,2,38,2019-06-20,2.38,1,37 +22877744,Nice extra room in Bushwick,1164515,Chris,Brooklyn,Bushwick,40.70332,-73.92766,Private room,38,2,13,2019-05-31,0.93,2,141 +22878070,"Large 3 Bedroom Loft in Fort Greene, Brooklyn",26500272,Sam,Brooklyn,Fort Greene,40.6932,-73.97348,Entire home/apt,350,3,0,,,1,0 +22878090,HUGE studio apartment near ALL!,116754031,Rosemary,Brooklyn,East Flatbush,40.6329,-73.92784,Entire home/apt,80,1,53,2019-06-15,3.02,3,363 +22878715,Prospect Park Pad - 1 minute from the subway!,126407919,Sonia,Brooklyn,Prospect-Lefferts Gardens,40.65681,-73.95931,Entire home/apt,73,31,4,2019-05-20,0.31,1,5 +22878805,Clean and Classy Central Park Studio,425702,Kim & John,Manhattan,Upper East Side,40.76805,-73.96765,Entire home/apt,169,1,67,2019-06-26,3.81,1,186 +22879396,"Spacious, Sunny room in Cobble Hill !",12479495,Shalini,Brooklyn,Cobble Hill,40.68712,-73.9914,Private room,75,3,0,,,1,0 +22879903,Private room & bathroom in luxury building at LIC,22040625,Juanjo,Queens,Long Island City,40.75561,-73.93596,Private room,59,2,1,2018-02-07,0.06,1,0 +22881110,"Spacious & Quiet 1 Br Upper West Side, close to CP",120981856,Rgh,Manhattan,Upper West Side,40.78941,-73.97167,Entire home/apt,145,7,9,2019-06-02,0.55,1,80 +22881127,Dreamy Sunny Apt in Central Williamsburg,90685499,Meryl,Brooklyn,Williamsburg,40.71126,-73.96009,Entire home/apt,195,6,6,2019-03-10,0.40,2,14 +22882677,"Charming, Spacious Apartment on theUpper East Side",7759203,Kristen,Manhattan,Upper East Side,40.77219,-73.94763,Entire home/apt,199,5,6,2018-12-07,0.44,1,11 +22884749,Apt 6,159435936,Jonathan,Manhattan,Upper West Side,40.78694,-73.97218,Entire home/apt,100,31,1,2018-07-22,0.09,3,161 +22885310,MODERN AND BEAUTIFUL BROOKLYN,103745233,Luiz,Brooklyn,Crown Heights,40.67346,-73.93295,Private room,60,1,54,2019-03-31,3.07,1,0 +22886125,"Heart of Williamsburg, Sunny & Quiet Room",15377827,Karim,Brooklyn,Williamsburg,40.71899,-73.95858,Private room,45,7,5,2019-01-07,0.29,1,0 +22887406,XL Private Room in a Magnificent Penthouse NYC1,169382341,Tomás,Manhattan,East Village,40.72149,-73.98273,Private room,90,5,11,2019-06-22,0.69,2,5 +22896433,Private 1BR Apt in Sunnyside Close to Train & LGA,126184451,Brie,Queens,Sunnyside,40.74526,-73.91355,Entire home/apt,78,4,26,2019-05-26,1.53,1,50 +22898351,Charming Historic Apartment Near All Trains,11573876,Marissa,Manhattan,Financial District,40.70764,-74.00077,Private room,59,6,3,2018-04-02,0.17,1,0 +22898938,A Peaceful Haven in a Bustling City,16005407,Morgan,Queens,Ridgewood,40.70619,-73.9145,Private room,37,2,17,2019-03-15,1.01,1,0 +22899900,Private Room A In Prime Location,162427870,Anna,Manhattan,Midtown,40.74698,-73.98906,Private room,110,1,135,2019-06-15,7.67,3,311 +22901723,1 Bedroom in an amazing central Bed-Stuy apt!,89221067,Nola,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95005,Private room,35,5,0,,,1,0 +22904609,"Stunning 1BR In Flatiron, Subway steps away!",169534923,Carnitas,Manhattan,Kips Bay,40.74148,-73.98126,Entire home/apt,188,30,40,2019-06-23,2.35,1,146 +22904809,"Large, Sunny Bedroom in Bushwick/Bedstuy",24466431,Caleb,Brooklyn,Bushwick,40.68732,-73.9151,Private room,70,7,0,,,1,0 +22904958,2 Rooms Available. Heart of Brooklyn.Jacuzzi Bath!,26243777,Jami,Brooklyn,Bedford-Stuyvesant,40.68599,-73.92967,Private room,45,2,48,2019-06-19,2.81,2,12 +22904985,A WONDERFUL Place is Waiting 4U in Brooklyn !!!,169532780,Nix,Brooklyn,East New York,40.67342,-73.89325,Entire home/apt,169,3,22,2019-03-31,1.30,1,189 +22905091,Charming Family Style Brownstone Apartment,169546851,Katiuscia,Manhattan,Upper East Side,40.76365,-73.96683,Entire home/apt,275,2,63,2019-06-19,3.90,1,239 +22906559,Sunny City Escape,2076284,Rachel,Queens,Ridgewood,40.70701,-73.90949,Private room,50,2,0,,,1,0 +22907187,Charming apartment nestled in NYC's West Village,20268978,Daniel,Manhattan,West Village,40.73254,-74.00285,Entire home/apt,220,1,0,,,1,0 +22907591,Large 2-Bedroom East Village Apartment,16682397,Mackenzie,Manhattan,East Village,40.72753,-73.98412,Entire home/apt,190,2,5,2018-06-24,0.29,1,0 +22907753,Cozy Private Room in Ditmas Park Apt,16006049,Lanxing,Brooklyn,Flatbush,40.65168,-73.96457,Private room,35,2,0,,,1,0 +22908372,Spacious room in a renovated two-bedroom unit!,17334910,Siwoo,Manhattan,Washington Heights,40.83618,-73.94443,Private room,60,7,0,,,1,0 +22911635,"Three Bedroom Duplex apart. Clean, Modern Apt. 41",80479138,Gordon,Manhattan,Midtown,40.75946,-73.96498,Entire home/apt,189,30,3,2019-04-27,0.21,5,108 +22913600,Comfy Bedroom in East Williamsburg,111782745,Brian,Brooklyn,Bushwick,40.70364,-73.93146,Private room,45,2,23,2018-08-19,1.39,2,0 +22919133,Cloud Music Loft,169686676,Dan,Brooklyn,Crown Heights,40.67802,-73.9614,Private room,60,1,19,2019-06-23,1.17,1,362 +22919807,Carroll Gardens 3 bedroom.,169514692,Steven,Brooklyn,Carroll Gardens,40.67674,-73.99769,Entire home/apt,149,3,38,2019-06-18,2.38,1,138 +22921200,My Place,5165317,Eliran,Manhattan,Upper East Side,40.77233,-73.95321,Entire home/apt,170,2,0,,,1,0 +22923312,Luxury Studio - 1 Stop from NYC/Amazing Views,20413013,Ricardo,Queens,Long Island City,40.74893,-73.94688,Entire home/apt,199,2,50,2019-06-21,2.95,1,161 +22923314,Semiprivate room Forest Hills (female only),9110062,Claudia,Queens,Forest Hills,40.72454,-73.84103,Private room,72,1,5,2018-12-31,0.40,1,35 +22925367,Couch with breakfast included and a view!,37818581,Sofia,Manhattan,East Harlem,40.80228,-73.93903,Shared room,30,1,30,2018-06-01,1.72,4,0 +22926669,Williamsburg Private Room,104623425,Shauna,Brooklyn,Williamsburg,40.70542,-73.9411,Private room,60,3,1,2018-02-26,0.06,1,0 +22926871,Navidad en Manhattan oportunidad bajaron precios!,34679426,Isabel,Manhattan,Midtown,40.76482,-73.97965,Private room,300,1,2,2018-04-02,0.13,1,0 +22926900,House on a quiet dead-end street in hip Ridgewood,2256583,Kelli,Queens,Glendale,40.69507,-73.89599,Entire home/apt,195,5,1,2018-06-30,0.08,1,0 +22927598,"Prime UES, Centrally located, Quiet NYC Apartment",107198157,Ranjith,Manhattan,Upper East Side,40.77978,-73.95153,Entire home/apt,119,3,0,,,1,0 +22928216,Upper East Side Gem,169340719,Oscar,Manhattan,Upper East Side,40.77698,-73.95864,Entire home/apt,159,15,2,2018-04-15,0.11,1,0 +22928463,Great apartment in Bushwick available in Feb,35510045,Aaron,Brooklyn,Bushwick,40.705,-73.91933,Private room,27,14,0,,,1,0 +22928803,Private room in artists duplex,169795562,Ariel,Brooklyn,Bushwick,40.69088,-73.90535,Private room,50,6,0,,,1,0 +22929141,Gorgeous Park Slope Studio,36307813,Megan,Brooklyn,Park Slope,40.66669,-73.9807,Entire home/apt,150,14,0,,,1,0 +22929942,Spacious 1 Bed in Prime Williamsburg (big balcony),25339875,Rotem,Brooklyn,Greenpoint,40.72017,-73.95352,Entire home/apt,140,6,0,,,1,0 +22934602,Great Studio at the Time Square/71C,48146336,Irina,Manhattan,Hell's Kitchen,40.76274,-73.99321,Entire home/apt,120,30,3,2019-01-11,0.25,20,289 +22936827,Charming Williamsburg Bedroom,169721146,Dmitry,Brooklyn,Williamsburg,40.70856,-73.94281,Private room,65,2,74,2019-06-20,4.30,1,28 +22937095,"The Studio, lush cabin living in Brooklyn",2416281,Noemie,Brooklyn,Bedford-Stuyvesant,40.68898,-73.95835,Entire home/apt,98,3,45,2019-06-29,2.56,1,179 +22937305,Large Bedroom with newly renovated bathroom,34635838,Madeline,Staten Island,Bull's Head,40.60336,-74.17118,Private room,39,1,29,2019-05-20,1.81,2,0 +22937557,Bushwick's LARGEST Art-Filled Room in New Building,6726656,Yelle,Brooklyn,Bushwick,40.70285,-73.92563,Private room,50,6,3,2019-01-30,0.28,3,13 +22938753,Luxury Studio near Central Park - Times Square,4920221,UBliss,Manhattan,Midtown,40.76551,-73.98315,Entire home/apt,189,29,3,2018-10-27,0.27,1,358 +22940490,Modern Upper East Side Apartment,51591390,Natalia,Manhattan,Upper East Side,40.77251,-73.95113,Shared room,75,1,30,2019-06-22,2.92,1,8 +22940777,Park Slope 1BR 1st Floor Apt - Perfect for 1 - 2,136636824,Mo,Brooklyn,Park Slope,40.67418,-73.97918,Entire home/apt,100,2,27,2019-06-02,1.56,1,0 +22941772,COZY Bedroom in S. Williamsburg /BedStuy Brooklyn,1466154,Stephanie,Brooklyn,Bedford-Stuyvesant,40.6964,-73.94696,Private room,36,28,1,2018-03-03,0.06,1,297 +22942669,Cozy room for one in BedStuy,1398639,Juliet,Brooklyn,Bedford-Stuyvesant,40.6865,-73.93199,Private room,25,30,6,2019-05-31,0.58,3,207 +22944203,"Cozy room in a charming, spacious apartment",87782960,Josh,Manhattan,Chelsea,40.74286,-73.99847,Private room,84,4,14,2019-06-30,0.82,1,13 +22944348,Centrally Located Comfy 2BR Midtown Apartment,169944714,Akon,Manhattan,Hell's Kitchen,40.76716,-73.98779,Entire home/apt,295,1,114,2019-06-23,6.68,1,125 +22945122,Private Room for short stay in a house.,44695225,Franncis,Queens,Queens Village,40.70843,-73.75018,Private room,38,7,0,,,1,0 +22946348,"Sunny Room near Prospect Park, 35mins to Manhattan",127545011,Kristiana,Brooklyn,East Flatbush,40.65222,-73.95016,Private room,35,1,5,2018-11-30,0.42,1,0 +22950209,Chic Studio,170008285,Fernando And Ana,Manhattan,Midtown,40.74779,-73.98734,Entire home/apt,220,3,36,2019-07-01,2.11,1,331 +22951326,Room in a luxury doorman building in Midtown,36786792,Evelina,Manhattan,Murray Hill,40.74658,-73.97782,Private room,70,2,3,2018-01-31,0.17,1,0 +22951923,Lovely Brooklyn Brownstone Garden Apartment,17478161,Anna,Brooklyn,Bedford-Stuyvesant,40.68876,-73.95265,Entire home/apt,150,3,43,2019-07-02,2.86,1,10 +22953136,Private Specious Sunny Brooklyn Loft,4383475,Keiichiro,Brooklyn,Williamsburg,40.70593,-73.92818,Entire home/apt,125,3,0,,,1,0 +22953160,Well-Lit Apartment in the East Village!,66111674,Charles,Manhattan,East Village,40.72545,-73.98279,Private room,75,1,15,2018-07-22,0.88,1,0 +22953869,Beautiful open layout studio near Prospect Park,98272,Martin,Brooklyn,Flatbush,40.652,-73.95805,Entire home/apt,110,3,32,2019-06-15,1.90,1,0 +22955340,Beautiful apartment with gorgeous views,39062378,Boris,Manhattan,Midtown,40.76372,-73.98355,Shared room,60,2,0,,,1,0 +22955342,"Bright Williamsburg room, 1-stop from Manhattan",25533198,Emma,Brooklyn,Williamsburg,40.71998,-73.96141,Private room,53,4,1,2018-01-29,0.06,1,0 +22956809,Two Rooms-Prime Manhattan Location steps to subway,170075022,Kevin,Manhattan,East Harlem,40.79846,-73.94239,Private room,89,1,63,2019-06-22,3.74,1,12 +22957090,One Room in Dreamy Bushwick Apartment,27070336,Andrea,Brooklyn,Bushwick,40.68588,-73.9144,Private room,75,2,0,,,1,0 +22958516,Center of it all Bushwick apartment,170095185,Aaron,Brooklyn,Bushwick,40.70733,-73.92028,Private room,29,2,3,2018-02-21,0.17,1,0 +22958680,Cosy one-bedroom nest in the heart of Williamsburg,170092307,Raphael & Sydonie,Brooklyn,Williamsburg,40.7141,-73.96194,Entire home/apt,128,5,56,2019-06-12,3.32,1,18 +22959643,Luxury Harlem Apartment,6329693,Nicole,Manhattan,East Harlem,40.80189,-73.94483,Entire home/apt,130,3,3,2019-06-20,0.21,1,128 +22961758,Amazing huge sunny room in the historical building,80331757,Ivan,Brooklyn,Sheepshead Bay,40.60407,-73.95302,Private room,50,2,13,2019-03-10,1.38,1,71 +22961764,Room in central Manhattan,163905917,Matilda,Manhattan,Hell's Kitchen,40.75715,-73.99759,Private room,110,2,13,2018-12-22,0.74,3,23 +22965846,"solo pueden reservar mujeres, es casa de familia.",84562428,Liliana,Queens,Forest Hills,40.73677,-73.84784,Private room,45,5,3,2018-09-13,0.20,2,355 +22968206,1br in spacious 2 br in the heart of Williamsburg,22748648,Hugo,Brooklyn,Williamsburg,40.71246,-73.96133,Private room,90,5,1,2018-02-21,0.06,1,0 +22969068,Pre War Brooklyn Row House Dream Backyard & deck,52525871,Alia,Brooklyn,Clinton Hill,40.69375,-73.96697,Entire home/apt,125,5,0,,,1,0 +22969403,East Village Sunny 2 Bedroom Apartment in New York,52949531,Leah,Manhattan,East Village,40.72196,-73.98103,Entire home/apt,170,3,0,,,1,0 +22969873,A Room in a 3BR Bushwick Apartment,50949024,Bill,Brooklyn,Bushwick,40.70299,-73.92693,Private room,60,2,0,,,1,0 +22970376,Sunny room in Sunnyside New York,24600315,Diana,Queens,Sunnyside,40.74355,-73.92557,Private room,89,1,0,,,1,0 +22971074,"Stunning, Duplex Apartment in Beautiful Bed-Stuy",19074249,Danika & Cary,Brooklyn,Bedford-Stuyvesant,40.67839,-73.92532,Entire home/apt,150,2,59,2019-06-08,3.55,1,231 +22971238,"Suite 18 - Private Room, Close to Coney Island",99296570,Daisy,Brooklyn,Brighton Beach,40.58012,-73.95896,Private room,35,1,77,2019-06-18,4.67,5,187 +22971252,Art Deco Studio,52225868,Deroll,Brooklyn,Crown Heights,40.66987,-73.93433,Private room,32,3,0,,,1,0 +22971913,.Melinda's Place,170265686,Arlene,Brooklyn,Crown Heights,40.66615,-73.95426,Entire home/apt,69,3,85,2019-06-18,5.00,1,193 +22972328,"The best safest area, 15mins to midtown Manhattan",110966607,Rika,Queens,Astoria,40.76097,-73.92191,Private room,47,3,24,2018-11-05,1.44,1,0 +22972357,1,158456362,Nick,Manhattan,Washington Heights,40.83755,-73.94224,Private room,50,1,3,2018-04-02,0.19,1,0 +22972832,"Main st APT w PRIVATE Bath, bedroom, living room.",161899037,Tony,Queens,Flushing,40.75794,-73.83234,Entire home/apt,150,2,54,2019-06-24,3.10,7,70 +22973043,"Coolest neighborhood, cutest apartment.",74873565,China,Manhattan,Two Bridges,40.7116,-73.99568,Entire home/apt,175,2,8,2019-05-06,0.46,1,0 +22975958,"Charming, huge bedroom in Greenpoint.",9250609,Michele,Brooklyn,Greenpoint,40.72475,-73.94889,Private room,80,1,0,,,1,0 +22977021,Spacious Room4 Rent Near Hospital in Staten Island,46723570,Kartikeya,Staten Island,South Beach,40.5895,-74.09663,Shared room,20,4,1,2018-02-02,0.06,1,0 +22978028,Spacious garden-level 1BR in Bed Stuy brownstone,10268766,Shirley,Brooklyn,Bedford-Stuyvesant,40.68156,-73.93722,Entire home/apt,140,4,19,2019-06-20,1.32,1,76 +22978388,Sunny room in Brooklyn (20 min from Manhattan),42949529,Suri,Brooklyn,Sunset Park,40.65907,-73.99849,Private room,150,1,0,,,1,90 +22978756,The Grove - A Luxury One Bedroom Apartment,169541552,Amy,Manhattan,Chelsea,40.74144,-73.99984,Entire home/apt,299,2,0,,,1,2 +22979825,"Private large bedroom in Prime Williamsburg, BK",10826049,Faye,Brooklyn,Greenpoint,40.7195,-73.95256,Private room,75,4,0,,,1,0 +22980068,"Entire Apt Spacious & Chic-Near JFK, Subway & Park",22042097,Pebel,Queens,Woodhaven,40.69665,-73.85114,Entire home/apt,50,4,1,2018-03-03,0.06,1,0 +22980907,"Cute, Bright Private Attic Space in Brooklyn Home",29241227,Ken,Brooklyn,Kensington,40.64579,-73.97383,Entire home/apt,57,3,94,2019-07-02,5.40,2,69 +22981126,Comfortable inn,170387293,Esther,Brooklyn,Crown Heights,40.6654,-73.93653,Private room,75,1,0,,,1,0 +22983227,Spacious Modern Apartment in Prospect Park South,170413197,Rebecca,Brooklyn,Flatbush,40.64786,-73.96125,Entire home/apt,100,2,1,2018-02-25,0.06,1,0 +22983671,Cozy Midtown Studio,20754560,Christine,Manhattan,Murray Hill,40.75066,-73.9804,Entire home/apt,190,1,5,2018-05-16,0.29,1,0 +22983888,Cute and cozy 2 bedroom apartment in Harlem,170424392,Alison,Manhattan,Harlem,40.82101,-73.94065,Entire home/apt,130,4,3,2018-04-03,0.18,1,0 +22984370,Gorgeous skyline condo in trendy Bushwick,1300215,Lisa,Brooklyn,Bushwick,40.6996,-73.91492,Private room,65,3,12,2018-08-27,0.89,1,0 +22984650,"Private room in Queens Village, NY. Near JFK.",143212135,David,Queens,St. Albans,40.70419,-73.75116,Private room,25,3,60,2019-06-09,3.61,1,350 +22985168,Delightful condo,71733378,Abe,Queens,Astoria,40.76475,-73.9289,Entire home/apt,175,1,21,2019-03-28,1.20,1,85 +22985354,Luxury Meets Classic Brownstone w/ Outdoor Space!,4181378,Lauren,Brooklyn,Bedford-Stuyvesant,40.6899,-73.93559,Entire home/apt,450,2,27,2019-06-23,1.79,2,364 +22985419,Exquisite English Tudor with a touch of class,170445076,Sean,Queens,Queens Village,40.72249,-73.75486,Entire home/apt,200,2,58,2019-07-07,3.60,1,152 +22985840,"Bright, beautiful bedroom 5 mins from LGA, 15toNYC",170446723,Pamela,Queens,East Elmhurst,40.75735,-73.87845,Private room,55,2,11,2019-06-18,0.71,2,179 +22986139,2br 2ba Huge pristine Nolita loft,7465567,Nick,Manhattan,Little Italy,40.71889,-73.99686,Entire home/apt,400,2,2,2019-03-10,0.19,2,3 +22986248,Sunny Spacious Two Bedroom - Park Slope,170457264,Yaroslav,Brooklyn,Park Slope,40.67031,-73.98603,Entire home/apt,200,2,6,2019-02-18,0.36,1,0 +22986303,Cozy 2 Bedroom Astoria Apt,170458252,Vasilios,Queens,Ditmars Steinway,40.77799,-73.90807,Entire home/apt,140,1,67,2019-06-05,4.14,1,145 +22986519,Bedroom on the lively Lower East Side,154262349,Brooke,Manhattan,Lower East Side,40.71884,-73.98354,Private room,160,4,23,2019-06-12,2.29,1,102 +22987331,Cozy and convenient spot!,39591103,Michaela,Queens,Astoria,40.76853,-73.9172,Private room,100,1,13,2019-06-01,0.91,1,172 +22987769,Privet room.10min from CentralPark.5 min to Times,13878635,Muslum,Manhattan,Hell's Kitchen,40.76546,-73.99253,Private room,90,2,12,2018-10-07,0.71,2,338 +22994960,Studio Apartment in Murray Hill,96317547,Adam,Manhattan,Murray Hill,40.74827,-73.97851,Private room,120,3,0,,,1,0 +22997160,Chill Vibes in Beautiful Fort Greene,170567335,Robert,Brooklyn,Fort Greene,40.69054,-73.97892,Private room,95,2,5,2019-01-25,0.74,1,0 +22997928,Amazing 1Br Apt in luxury building in williamsburg,170574337,Barthelemy,Brooklyn,Williamsburg,40.71691,-73.96302,Entire home/apt,200,3,19,2019-05-20,1.10,1,4 +22998663,Sunny Roomy 2 Bedroom (Private Bathroom + Balcony),96810536,Chandtisse,Brooklyn,Gowanus,40.66621,-73.99256,Private room,169,1,2,2018-11-24,0.16,3,115 +23000751,Little Neck Queens bedroom w/private bathwash/dry,170603631,Andre,Queens,Douglaston,40.74807,-73.73674,Private room,65,2,29,2019-03-14,1.68,1,240 +23001249,Bright Meatpacking Studio,29074867,Jasmine,Manhattan,Chelsea,40.74142,-74.0025,Entire home/apt,150,2,4,2018-06-10,0.25,1,0 +23001343,Beautiful Private Bedroom Near Prospect Park,170608951,Mariette,Brooklyn,Flatbush,40.65369,-73.95565,Private room,65,3,22,2019-06-10,1.40,1,89 +23001611,East Village Apartment,129782365,Hallie,Manhattan,East Village,40.72968,-73.98073,Entire home/apt,350,2,0,,,1,0 +23002312,Park Ave Apt in the Heart of NYC,42677381,Anna,Manhattan,Murray Hill,40.74882,-73.97788,Entire home/apt,250,3,9,2019-01-03,0.57,1,0 +23002371,"Own Living room, Bathroom & W/D in the EV!",21186353,Benjamin,Manhattan,East Village,40.73123,-73.98655,Private room,90,14,0,,,1,0 +23002904,Upper East Brownstone Duplex 4Beds &Private Garden,61849126,Laura,Manhattan,Upper East Side,40.77602,-73.95062,Entire home/apt,350,3,15,2018-11-25,0.90,1,5 +23003201,South slope Brooklyn 1private bedroom!,170629692,Chris,Brooklyn,Sunset Park,40.66182,-73.99387,Private room,65,1,0,,,1,0 +23004287,"Brooklyn, KingsHwy . 1 room for 1 person",166204258,Olga,Brooklyn,Sheepshead Bay,40.6092,-73.9572,Private room,27,1,1,2018-02-05,0.06,1,0 +23004845,Oasis bedroom for solo travelers,241559,Demi,Brooklyn,Crown Heights,40.67697,-73.96317,Entire home/apt,115,3,37,2019-06-21,2.29,1,13 +23005618,Sunny Spacious Private Bed and Bath in Bushwick,170657264,Renata,Brooklyn,Bushwick,40.70289,-73.92594,Private room,74,3,37,2019-06-02,2.27,1,46 +23005685,Luxury Tribeca,51536620,Rafaela,Manhattan,Tribeca,40.71412,-74.00984,Private room,110,3,1,2018-02-28,0.06,1,0 +23006296,East Village penthouse with city views.,1339185,Alfred,Manhattan,East Village,40.72196,-73.98083,Entire home/apt,148,4,20,2019-06-18,1.39,1,121 +23006397,"Spacious, private East Village studio",14328715,Asya,Manhattan,East Village,40.72957,-73.98724,Entire home/apt,150,2,6,2018-03-04,0.35,1,0 +23006437,Quaint Queens Master Bedroom,89391604,Kara,Queens,Ridgewood,40.70612,-73.90729,Private room,35,7,0,,,1,0 +23006591,Suite 18 - Private Room w/ private bath,99296570,Daisy,Brooklyn,Brighton Beach,40.58198,-73.9577,Private room,35,1,67,2019-06-11,3.83,5,186 +23010967,Crown Heights Classic,78913808,John,Brooklyn,Crown Heights,40.67074,-73.94896,Entire home/apt,125,3,63,2019-07-05,4.36,1,165 +23012588,Welcome!,170724620,Arthur,Manhattan,Harlem,40.82089,-73.95018,Private room,65,1,50,2019-05-24,3.69,1,1 +23014432,Beautiful Bedstuy Brownstone Duplex,45688186,Chinasokwu,Brooklyn,Bedford-Stuyvesant,40.68804,-73.93013,Entire home/apt,150,1,14,2019-04-23,0.82,2,307 +23016550,"Long term, bright studio Union Sq",2317952,Anastacia,Manhattan,Gramercy,40.73573,-73.98755,Entire home/apt,150,30,5,2018-12-24,0.30,1,53 +23017828,Furnished One Bedroom Apartment,1466422,Gila,Brooklyn,Crown Heights,40.67432,-73.9391,Entire home/apt,60,133,12,2018-12-17,0.71,2,0 +23018280,Cozy studio with a fireplace close to the train,10836962,Katya,Bronx,Pelham Bay,40.85407,-73.83264,Entire home/apt,69,3,69,2019-06-19,4.21,1,21 +23019675,Huge 1 Bedroom Apartment,30704814,Jacob,Manhattan,Inwood,40.86407,-73.92822,Entire home/apt,70,14,2,2019-05-26,0.19,1,0 +23019746,Exposed brick Loft apartment,168988812,Giulia,Queens,Ridgewood,40.70068,-73.91008,Entire home/apt,118,6,2,2019-01-02,0.13,1,0 +23020466,Private Harlem Studio w/ Jacuzzi Great Location!,8663057,Alli,Manhattan,East Harlem,40.80375,-73.93599,Entire home/apt,115,3,67,2019-06-28,3.98,2,132 +23021186,"Private Room, Very Cozy. Close to JFK. Garden!",133227147,Megan,Brooklyn,Cypress Hills,40.6784,-73.8924,Private room,100,1,43,2019-06-23,2.65,1,365 +23021271,20 mins to Times Square! Vibrant NYC neighborhood,9388460,Chris&Suly,Queens,Elmhurst,40.74711,-73.88188,Entire home/apt,125,3,56,2019-06-17,3.76,1,107 +23021573,XL Full Floor Loft*3BR*Lower East Side*SUPERHOST*,170805641,Oliver,Manhattan,East Village,40.72169,-73.98279,Entire home/apt,399,4,43,2019-06-13,2.55,1,161 +23023423,Kew Gardens,74805133,Edward,Queens,Kew Gardens,40.707,-73.82684,Private room,70,1,0,,,1,0 +23023728,"Cozy, Full 1 Bedroom Apartment Near Central Park",12417778,Turner,Manhattan,Upper East Side,40.77395,-73.95493,Entire home/apt,100,3,16,2019-06-26,0.95,1,20 +23024065,Brooklyn Artists Loft - 1 Bedroom,105758386,Julia,Brooklyn,Williamsburg,40.70581,-73.93454,Entire home/apt,100,2,2,2018-03-21,0.12,1,0 +23024273,LOFT#1 - Broadway Av. Amazing Location! SoHo,108029974,Agustina,Manhattan,Greenwich Village,40.72839,-73.99437,Entire home/apt,495,6,12,2019-06-14,0.84,4,52 +23024656,Harlem cozy nights,43495748,Catherine,Manhattan,Harlem,40.81767,-73.93771,Entire home/apt,120,4,21,2019-07-01,1.25,1,128 +23025738,Spacious Private Room in Williamsburg!,14097466,Arjun,Brooklyn,Williamsburg,40.70849,-73.94535,Private room,140,3,1,2018-10-02,0.11,1,0 +23026309,15 mins to Manhattan & LGA - Large Private Bedroom,16928139,Mehdi,Queens,Sunnyside,40.74208,-73.92414,Private room,50,2,51,2019-07-01,3.17,1,36 +23026346,"A Nice 3 Bedroom Apt in Pelham Bay, Bronx, NY.",170857849,Ziaul,Bronx,Pelham Bay,40.84934,-73.83345,Entire home/apt,119,3,28,2019-06-12,1.68,1,351 +23027004,Cozy Private 3 Bedroom Garden Apt in Williamsburg,162432541,Emily & Joseph,Brooklyn,Williamsburg,40.7117,-73.9624,Entire home/apt,200,3,40,2019-05-27,2.30,2,279 +23027784,Stylish Upper East Side Brownstone Studio,56283770,Lia,Manhattan,Upper East Side,40.76327,-73.96766,Entire home/apt,145,30,1,2019-06-17,1,6,122 +23031618,15 min train ride to Times Sq and US OPEN,101602599,M,Queens,Woodside,40.7434,-73.90588,Entire home/apt,50,1,95,2019-06-24,5.63,2,0 +23034152,Brand New Amazing 1 Bedroom Best Location,168465501,Ian,Manhattan,Upper West Side,40.7841,-73.97468,Entire home/apt,125,30,5,2019-05-17,0.34,4,220 +23035441,Upper West Side Exclusive 1 bedroom,170935045,Gal,Manhattan,Upper West Side,40.78904,-73.97172,Entire home/apt,117,5,1,2018-02-23,0.06,1,0 +23035859,Newly renovated 3 Bed 2.5 bath Full amenities,113805886,Yaacov,Manhattan,Upper East Side,40.77847,-73.95162,Entire home/apt,350,31,1,2019-01-25,0.18,33,327 +23035874,CHIC & LARGE private bedroom in fancy neighborhood,13126043,Carolle,Manhattan,Midtown,40.74422,-73.98473,Private room,145,2,29,2019-05-15,1.67,2,74 +23035891,"Beautiful room in Williamsburg, close to Manhattan",37222237,Samy Nemir,Brooklyn,Williamsburg,40.70649,-73.94317,Private room,35,6,0,,,1,0 +23035911,Spacious Two Bedroom Apt near Columbia University,4100176,Sehee,Manhattan,Morningside Heights,40.80557,-73.96441,Entire home/apt,125,5,1,2018-03-14,0.06,1,0 +23036845,Renovated with view 3 bed 2 bath big Balcony,113805886,Yaacov,Manhattan,Upper East Side,40.77742,-73.95149,Entire home/apt,300,31,1,2019-01-03,0.16,33,248 +23037039,Bedstuy Bedstay,25001097,Keila,Brooklyn,Bedford-Stuyvesant,40.68209,-73.92015,Entire home/apt,50,5,9,2018-12-20,0.52,1,0 +23037820,Cozy 1 Bed one block from train and supermarket,113805886,Yaacov,Manhattan,Upper East Side,40.77748,-73.9514,Entire home/apt,135,31,1,2018-05-21,0.07,33,338 +23038073,Renovated 2 Bed 2Bath high floor Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77915,-73.95041,Entire home/apt,225,31,0,,,33,326 +23038520,Large 1 bdrm with Modern finishes - Pelham Gardens,7381386,Kayla,Bronx,Pelham Gardens,40.85929,-73.84229,Entire home/apt,60,3,41,2019-07-04,2.44,1,23 +23039069,Cozy 2 Bed 2 bath Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77721,-73.94997,Entire home/apt,300,31,5,2019-01-02,0.31,33,326 +23039363,Cozy 2 Bed 2 Bath Fully Renovated POOl in Building,113805886,Yaacov,Manhattan,Upper East Side,40.77712,-73.95176,Entire home/apt,250,31,0,,,33,345 +23040052,Cozy 2 bed 2 bath Pool in building,113805886,Yaacov,Manhattan,Upper East Side,40.77717,-73.95131,Entire home/apt,300,31,8,2018-12-27,0.49,33,342 +23040115,Eclectic Enclave - 3 blks to G - private space,22246427,Sharon,Brooklyn,Bedford-Stuyvesant,40.68799,-73.95202,Entire home/apt,110,2,58,2019-06-23,3.39,1,62 +23041312,Sky Boasts Exquisite Studio,40811074,Dening,Manhattan,Hell's Kitchen,40.76208,-73.99932,Entire home/apt,525,3,0,,,1,0 +23042836,Williamsburg Studio Apartment,171001581,Joshua,Brooklyn,Williamsburg,40.71181,-73.96383,Entire home/apt,104,1,27,2019-06-23,1.67,1,84 +23044937,"MINI COZY Room Close to NYU Langone H/Metro N,R",105640471,Jason,Brooklyn,Sunset Park,40.638,-74.01619,Private room,39,1,14,2019-05-28,1.00,8,127 +23045850,Private room in Brooklyn with laundry,157977326,Ilyas,Queens,Maspeth,40.71415,-73.91426,Private room,45,1,55,2019-06-24,3.26,2,27 +23046924,Quiet City Getaway!,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.67191,-73.92669,Entire home/apt,178,2,19,2019-06-13,1.13,4,257 +23047572,Big apartment can make your vacation to be amazing,87399457,Elior,Brooklyn,Crown Heights,40.66896,-73.95347,Entire home/apt,220,4,4,2019-05-08,0.24,1,0 +23052180,Large Room in Trendy Bushwick - 3,9864136,Anthony,Brooklyn,Bushwick,40.68579,-73.91416,Private room,45,1,0,,,26,249 +23052964,Huge Brooklyn Room in Bushwick - 2,9864136,Anthony,Brooklyn,Bushwick,40.68651,-73.91384,Private room,55,1,4,2018-03-16,0.23,26,179 +23053294,"Quaint, artistic 2 bedroom Brooklyn apartment",7051379,Susan,Brooklyn,Downtown Brooklyn,40.69727,-73.98552,Entire home/apt,97,31,8,2019-05-23,0.59,2,138 +23053597,Private room with visit to queens # 6,158540605,Sonia,Queens,Glendale,40.69946,-73.89079,Private room,35,1,89,2019-06-29,5.31,6,256 +23053827,Mi hermoso hogar a 4 bloques del AirPort LGA,171107511,Paola,Queens,East Elmhurst,40.76393,-73.86444,Private room,80,2,1,2018-10-07,0.11,1,219 +23054077,"Sunny spacious apt in Greenpoint, Brooklyn",1655982,Jessica,Brooklyn,Greenpoint,40.72904,-73.95433,Entire home/apt,180,45,0,,,1,326 +23054329,Sunny And Spacious! Treat Yourself In Bushwick!,16963843,Martina,Brooklyn,Bushwick,40.69842,-73.92378,Private room,50,5,14,2018-08-30,0.88,2,0 +23054586,Comfortable Room in LIC,170294800,Kynneth,Queens,Long Island City,40.75305,-73.93487,Private room,68,1,23,2019-06-17,1.33,1,298 +23054855,Modern sun-filled 1 bed oasis- Graham Ave L train,7216788,Pari,Brooklyn,Williamsburg,40.71563,-73.9398,Entire home/apt,140,2,18,2019-06-23,1.07,1,36 +23055816,Sunny and comfortable Upper West Side Manhattan,169704873,Michele,Manhattan,Morningside Heights,40.81064,-73.95734,Private room,150,14,6,2018-06-22,0.41,1,0 +23056637,A Cozy Artsy Apartment in the heart of Sunnyside,80651652,Vasko,Queens,Sunnyside,40.7437,-73.91983,Entire home/apt,100,3,0,,,1,0 +23058456,Private room near Pratt Institute,171154086,Hank,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95989,Private room,42,1,0,,,1,0 +23058686,Sunny South Williamsburg Studio,4445657,Max,Brooklyn,Williamsburg,40.71218,-73.96711,Entire home/apt,75,7,2,2018-04-28,0.13,1,0 +23059062,Sunny Basement Apt. in House w/ Garden Near Ferry,6966161,Michal,Staten Island,St. George,40.64399,-74.08526,Entire home/apt,77,7,0,,,1,0 +23059611,"Modern, hip, light drenched apartment.",12502207,Micah,Brooklyn,Vinegar Hill,40.70312,-73.98416,Entire home/apt,130,30,3,2019-01-05,0.24,1,339 +23060192,Peaceful Home in Brooklyn Close to Manhattan,19930911,Mayara & Gaspar,Brooklyn,Crown Heights,40.67218,-73.94087,Entire home/apt,93,1,77,2019-06-22,4.49,1,55 +23060372,Beautiful Studio Apartment in Prime UWS Manhattan!,12554853,Isabel,Manhattan,Upper West Side,40.79653,-73.96887,Entire home/apt,75,1,32,2018-11-25,1.87,1,0 +23061070,Suite Luxe - Luxury & Modern Comfort,49831860,Robert,Brooklyn,Canarsie,40.64129,-73.91316,Entire home/apt,130,3,141,2019-06-17,8.21,2,114 +23061112,Comfort in Brooklyn,31315978,Randall,Brooklyn,Brownsville,40.67087,-73.91293,Entire home/apt,65,2,23,2019-06-29,2.88,1,20 +23062475,"Spacious, Bright Studio Apt in East Village",8108429,Anna,Manhattan,East Village,40.72998,-73.9839,Entire home/apt,99,2,15,2019-06-23,0.89,1,0 +23062725,"Brick Brownstone Apartment, Perfect for Families",179246,Francis & Daniele,Brooklyn,Bedford-Stuyvesant,40.67958,-73.90858,Entire home/apt,119,3,54,2019-07-01,3.58,2,240 +23062969,Sunlit Harlem Haven,9937471,Gabryelle,Manhattan,Harlem,40.81618,-73.94355,Private room,55,2,11,2018-12-17,1.15,1,0 +23063403,Boutique stay in Church turned Apt. near BK museum,22375303,Elle,Brooklyn,Bedford-Stuyvesant,40.67966,-73.93045,Private room,65,1,70,2019-06-24,4.90,2,291 +23064260,Bushwick Mid-Century Artist Enclave,19849721,Joshua,Brooklyn,Bushwick,40.70124,-73.91988,Entire home/apt,250,1,0,,,1,0 +23070522,The Home away from home!!!!,60373268,Bless M,Brooklyn,Bedford-Stuyvesant,40.6849,-73.91811,Entire home/apt,140,3,30,2019-06-18,1.88,1,122 +23071191,Simple and clean WaHi living room!,92192182,Alyssa,Manhattan,Washington Heights,40.84697,-73.93776,Shared room,29,1,13,2018-06-18,0.75,2,0 +23071774,Sunny Private Room in Trendy Williamsburg,93263,Vivian,Brooklyn,Williamsburg,40.71043,-73.95575,Private room,94,2,52,2019-07-03,3.26,1,126 +23072308,Charming WaHi apartment!,92192182,Alyssa,Manhattan,Washington Heights,40.84861,-73.93716,Entire home/apt,72,2,11,2018-07-08,0.64,2,0 +23072371,Large bed room share bathroom,65171233,Cha,Queens,Elmhurst,40.74252,-73.8899,Private room,31,3,21,2019-07-01,1.27,2,111 +23072631,Best 2BR apartment you will get close to Columbia,76428733,Thomas,Manhattan,Morningside Heights,40.8045,-73.96383,Entire home/apt,150,6,1,2018-03-15,0.06,1,0 +23072853,My Williamsburg Place,87830046,Charles,Brooklyn,Williamsburg,40.71276,-73.95897,Entire home/apt,250,3,41,2019-06-20,2.94,1,235 +23074259,"Wonderful 15 minutes Barclay Center,25 Manhattan",94214493,Dadrine,Brooklyn,East Flatbush,40.65625,-73.91901,Private room,80,7,2,2018-11-01,0.13,9,58 +23074722,15 minutes Barclay Center 25 Manhattan,94214493,Dadrine,Brooklyn,East Flatbush,40.65501,-73.91886,Private room,80,5,2,2018-12-21,0.14,9,89 +23075778,Gem in the East Village,2786998,Akshay,Manhattan,East Village,40.72629,-73.98417,Entire home/apt,150,2,20,2019-06-16,1.19,1,2 +23076745,Convenient! Private Room 10 mins to JFK Airport,131476068,Leslie,Queens,Richmond Hill,40.68728,-73.82875,Private room,75,2,1,2018-02-09,0.06,2,48 +23076968,Minimalist's Hut,64206316,Emon,Queens,Flushing,40.76649,-73.82991,Private room,49,7,28,2018-11-23,1.68,1,0 +23077040,Private room in Upper West Side,171339086,Jeta,Manhattan,Upper West Side,40.80026,-73.96425,Private room,85,2,25,2018-10-22,1.48,1,0 +23077115,Large Room;(Manhattan30mins) JFK10mins)(LGA15mins),158625100,Vic,Queens,Richmond Hill,40.6873,-73.82737,Private room,83,1,9,2019-05-20,0.55,2,48 +23077687,"Bright, spacious, and inviting home away from home",2616981,Lauren,Manhattan,Upper East Side,40.76354,-73.96189,Entire home/apt,135,4,3,2018-09-22,0.19,1,60 +23078073,Cozy West Village one-bedroom in perfect location!,171352111,Emily,Manhattan,West Village,40.73718,-73.99851,Entire home/apt,100,1,1,2018-02-06,0.06,1,0 +23078172,Affordable & Convenient,43352661,Charles,Manhattan,Washington Heights,40.84502,-73.94078,Shared room,25,1,51,2019-05-26,2.99,3,365 +23078446,Stylish 1 Bedroom Apt. for 4 p/ NYC - Murray Hill!,86771798,Daia,Manhattan,Murray Hill,40.7457,-73.97672,Entire home/apt,329,4,12,2019-04-21,0.91,2,59 +23080356,Private room in a cozy Hamilton Heights apartment,161846641,Shayna,Manhattan,Harlem,40.83051,-73.94537,Private room,48,1,13,2018-10-18,0.77,1,0 +23084751,Cozy Entire Apt Midtown East,67375976,Mymy,Manhattan,Midtown,40.75544,-73.96901,Entire home/apt,180,4,0,,,1,0 +23085504,Jazzy cool sunshine,24796602,Wesly/Jessica,Brooklyn,Crown Heights,40.6718,-73.92678,Private room,55,2,34,2019-05-29,1.99,4,341 +23086483,Stylish 1 Bedroom Apt. for 4 p/ NYC - Murray Hill!,86771798,Daia,Manhattan,Murray Hill,40.74742,-73.9766,Entire home/apt,365,5,14,2019-06-07,0.86,2,50 +23087403,"Spacious, light 1br apartment in the LES",5788047,Andrea,Manhattan,Lower East Side,40.71269,-73.98713,Entire home/apt,150,2,10,2019-03-25,0.58,1,6 +23088623,Stylish Modern Garden Bedroom w/ensuite bathroom,47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.69181,-73.9331,Private room,99,3,16,2019-06-18,1.24,3,360 +23088777,Stylish Modern Master Bedroom w/ensuite bathroom,47104818,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68975,-73.93327,Private room,109,3,19,2019-06-26,1.37,3,360 +23088947,Ideal Williamsburg #3 - Lorimer L train!,46660053,Ploy,Brooklyn,Williamsburg,40.71371,-73.95189,Private room,40,4,5,2019-05-28,0.38,3,61 +23089441,2 BEDS IN 1BEDROOM & 1 BATH OASIS W/ BACKYARD,12872352,Jada,Manhattan,Midtown,40.75881,-73.96295,Entire home/apt,325,1,0,,,3,267 +23090298,Spacious apartment across from train station,171483814,Algin,Brooklyn,Flatbush,40.65331,-73.96271,Private room,58,2,2,2018-04-09,0.12,1,0 +23090632,LIC 1 Bedroom in a pet-friendly apartment.,171488589,Hisham,Queens,Long Island City,40.74281,-73.95044,Private room,76,1,13,2018-06-20,0.86,1,0 +23090887,"Family Apartment. Close to city. 3 bed, 2 Bath",116365995,Dan,Queens,Woodside,40.74652,-73.90738,Entire home/apt,289,4,10,2019-07-06,0.91,2,271 +23091135,Large 500 square ft Studio in Woodside Queens,5117805,David,Queens,Woodside,40.74279,-73.90419,Entire home/apt,65,2,14,2018-11-10,0.84,1,0 +23091139,Luxurious Private West Village TownHome,66230837,Jason,Manhattan,West Village,40.73143,-74.00338,Entire home/apt,850,3,27,2019-02-25,1.57,1,344 +23091275,Modern Studio Apartment,49258234,Sophie,Manhattan,Midtown,40.7654,-73.98039,Entire home/apt,160,2,3,2018-03-11,0.17,1,0 +23091460,Lovely Central Park duplex w/ large outdoor patio,104425922,Matthew,Manhattan,Upper East Side,40.7773,-73.95652,Entire home/apt,225,2,12,2019-06-17,0.71,1,363 +23092112,Great place! Great location! Great price!,142144113,Samantha,Brooklyn,Flatbush,40.65175,-73.96408,Entire home/apt,90,30,4,2018-12-18,0.24,1,342 +23092889,Cute private bedroom and bathroom - Bushwick,2213846,Marti,Brooklyn,Bushwick,40.70114,-73.91705,Private room,70,2,29,2019-06-25,1.71,1,16 +23093320,Your Bed Room in Bed-Stuy,171522181,Brandon,Brooklyn,Bedford-Stuyvesant,40.69552,-73.94835,Private room,45,7,11,2018-03-25,0.64,1,0 +23094550,1BR Apartment in the Heart of the East Village,7269534,Declan,Manhattan,East Village,40.72939,-73.98553,Entire home/apt,100,4,5,2018-06-20,0.30,1,0 +23096661,1BR Apartment on UWS!,490608,Sush,Manhattan,Morningside Heights,40.80878,-73.95777,Entire home/apt,90,10,5,2019-05-04,0.31,1,0 +23097802,Piece Of Heaven,142447586,Winnie & Andy,Bronx,Williamsbridge,40.87906,-73.85987,Private room,35,3,0,,,4,0 +23100862,Heaven On Earth,142447586,Winnie & Andy,Bronx,Williamsbridge,40.88049,-73.8613,Private room,41,3,1,2018-02-11,0.06,4,0 +23100931,"Modern, Sunny 3 Bdrm 2 Ba w/ Huge Backyard",6309691,Lisa,Brooklyn,Greenpoint,40.73384,-73.95782,Entire home/apt,149,4,2,2018-08-14,0.16,2,0 +23102299,Cloud 9,142447586,Winnie & Andy,Bronx,Williamsbridge,40.8805,-73.86178,Private room,45,1,1,2018-02-21,0.06,4,0 +23103116,New York Bedroom for rent in East Harlem,171629811,Arthur,Manhattan,East Harlem,40.79661,-73.93832,Private room,40,5,3,2018-03-20,0.18,1,0 +23104347,*Rare Spacious Apartment Near JFK/Subway for 2019*,21784559,Ken,Queens,Woodhaven,40.69017,-73.86683,Entire home/apt,90,4,64,2019-07-03,3.71,1,106 +23105516,"NO EXTRA FEES, NO MIN. NITES: 1.5 blocks to train",82889379,Shera,Bronx,Woodlawn,40.8987,-73.86389,Private room,29,1,81,2019-06-09,4.93,4,192 +23105764,"2 Br Apt Steps to LGA, Near Citified JFK,Manhattan",156948703,Asad,Queens,East Elmhurst,40.77074,-73.87342,Entire home/apt,257,1,95,2019-07-01,6.51,6,341 +23106013,NEW Luxury 1BR Oasis - Most Desirable NYC Location,9318816,Brittany,Manhattan,NoHo,40.72651,-73.99196,Entire home/apt,295,2,15,2019-06-02,0.94,1,51 +23106106,Homey townhouse apartment,32718658,Mia,Manhattan,East Harlem,40.80017,-73.93812,Private room,70,1,0,,,1,0 +23106220,1min from the station K size bed 20min toManhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.68928,-73.95541,Private room,70,1,53,2019-06-24,3.29,7,264 +23106361,★Spacious Private Room★ MANHATTAN + Close to Park!,171660157,Del,Manhattan,Harlem,40.82748,-73.95083,Private room,65,4,10,2019-01-15,0.60,1,2 +23106431,Bright Room with Qsize bed 20min to dt Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.6896,-73.95653,Private room,62,1,27,2019-06-25,1.69,7,248 +23106518,A COZY NYC STUDIO APARTMENT 20 minutes to Union Sq,171668854,Marko,Queens,Ridgewood,40.71191,-73.90631,Entire home/apt,60,4,2,2019-03-10,0.19,1,0 +23106900,Cozy Getaway in NYC,72491205,Wanessa,Manhattan,Upper West Side,40.80022,-73.96301,Private room,95,2,0,,,1,0 +23107316,"Unique & Spacious, W Village. 1-Bdrm. NEW LISTING!",171678641,Max,Manhattan,West Village,40.73716,-73.99764,Entire home/apt,225,7,10,2019-04-29,0.78,1,279 +23108435,A very spacious Zen place to vacay.,146172048,Jennyfer,Queens,Woodside,40.75524,-73.90701,Private room,49,4,5,2019-01-03,0.36,1,87 +23108652,"Big, Private, Hip 2BR in Williamsburg w/Terrace",7460552,Redford,Brooklyn,Williamsburg,40.71147,-73.96,Entire home/apt,325,2,7,2019-01-11,0.61,1,96 +23108877,A cozy room in a newly renovated UWS apartment,47023469,Olga,Manhattan,Upper West Side,40.79728,-73.97348,Private room,100,1,28,2019-06-08,1.66,3,270 +23109325,Cheerful & spacious 1-bedroom by Columbia Medical.,86575539,Sharik,Manhattan,Washington Heights,40.84693,-73.94205,Entire home/apt,67,15,1,2018-02-09,0.06,1,1 +23109329,Sunny & Quiet room in Clinton Hill,1577803,Ji,Brooklyn,Clinton Hill,40.6897,-73.96535,Private room,90,2,19,2019-06-11,1.23,1,149 +23110037,Nice Room for ONE (1) Person,130972997,Wilson,Brooklyn,Crown Heights,40.67544,-73.94023,Private room,45,2,21,2019-06-22,1.35,2,339 +23110266,SoHo LOFT #2 Broadway Av. - Amazing Location!,108029974,Agustina,Manhattan,NoHo,40.72943,-73.99277,Entire home/apt,495,4,7,2019-03-27,0.46,4,63 +23111211,Bright room located in the middle of Manhattan!,30672354,Malin,Manhattan,Flatiron District,40.74107,-73.988,Private room,112,4,14,2019-04-10,0.90,2,1 +23111561,CHIC STUDIO 4 the MINIMALISTIC SOUL,30486909,Alanna,Manhattan,Chinatown,40.71608,-73.99081,Entire home/apt,160,4,32,2019-01-02,1.96,1,0 +23116453,Perfect Place to Stay,121379512,Maria,Bronx,Longwood,40.8273,-73.88906,Private room,37,1,7,2018-10-20,0.41,2,0 +23118522,"Unique 1 bedroom apt. in Gowanus, Brooklyn",8959179,Kevin,Brooklyn,Gowanus,40.6786,-73.98705,Entire home/apt,104,4,10,2018-12-29,0.73,1,98 +23120062,Quiet & Convenient in heart of midtown,3324577,Jessica,Manhattan,Midtown,40.7592,-73.97017,Private room,95,2,56,2019-06-30,3.33,1,54 +23120142,Deluxe Bedroom - 30 minutes from Midtown!,133602911,Sanyika,Bronx,Mount Hope,40.84882,-73.90263,Private room,80,3,20,2019-06-14,1.18,2,36 +23120678,Cozy Uptown Apartment!,4757826,Cy,Manhattan,East Harlem,40.79037,-73.9458,Entire home/apt,115,2,3,2018-08-13,0.22,1,1 +23122597,"Brand new two-bedroom apt. in Bensonhurst, Bklyn!",79305630,Elvira,Brooklyn,Gravesend,40.59868,-73.99202,Entire home/apt,148,4,26,2019-07-05,1.68,2,92 +23122670,Bright and Spacious One Bedroom near Prospect Park,10918472,Penina,Brooklyn,Prospect Heights,40.6752,-73.96385,Entire home/apt,75,2,6,2018-07-14,0.37,1,0 +23123189,Sunny One Bedroom in Beautiful Brownstone,101067646,Jennifer,Brooklyn,Clinton Hill,40.68206,-73.95998,Entire home/apt,173,2,3,2018-12-29,0.26,1,0 +23124338,New York Guests House,171830071,Fatima,Bronx,Fordham,40.85662,-73.89797,Private room,65,2,5,2018-03-26,0.30,1,0 +23126553,"★Private, Modern Apartment | Convenient Location★",171854639,Madeleine,Queens,Ditmars Steinway,40.77418,-73.91889,Entire home/apt,75,3,13,2019-01-03,0.78,1,1 +23126790,Spacious 3-Bedroom Duplex in Fort Greene,1975628,Dean,Brooklyn,Fort Greene,40.69126,-73.97186,Entire home/apt,250,2,0,,,1,0 +23126850,Beautiful Cozy Fully Furnished - 1 BD Midtown West,12873109,Sid,Manhattan,Midtown,40.75287,-73.99066,Entire home/apt,160,2,0,,,1,0 +23127656,Private Two Bedroom Apartment in Greenwich Village,171858908,Andrée,Manhattan,Greenwich Village,40.72836,-73.99961,Entire home/apt,300,2,13,2018-06-04,0.77,2,0 +23127964,Bright Soho 2 Bedroom Apartment,5849048,Nima + Kat,Manhattan,SoHo,40.72605,-74.00072,Entire home/apt,169,1,1,2019-01-26,0.18,1,180 +23128067,Creative Living in Bushwick! Ready to Inspire!,22313730,Brizzo,Brooklyn,Bushwick,40.70425,-73.92624,Private room,60,4,10,2018-10-31,0.58,1,88 +23128247,Charming Kensington Apt.,140293912,Awilda,Brooklyn,Kensington,40.64593,-73.97745,Entire home/apt,84,3,38,2019-03-18,2.36,3,0 +23128460,Intimate Studio in the UES,5669820,Charles,Manhattan,Upper East Side,40.77029,-73.95526,Entire home/apt,115,4,26,2019-06-26,1.66,1,16 +23129639,••RARE Modern Apt For 2019 Next to Subway & JFK••,161349813,Yola,Queens,Woodhaven,40.69113,-73.86778,Entire home/apt,106,4,57,2019-06-25,3.73,2,113 +23129919,Fits like a glove,171888683,Michal,Brooklyn,Park Slope,40.67226,-73.97251,Entire home/apt,100,10,11,2019-03-31,0.67,1,0 +23130144,Private bedroom in Astoria,11696537,Allison,Queens,Astoria,40.7675,-73.90911,Private room,100,1,3,2018-12-30,0.41,1,0 +23131011,Catlandia!,127586030,Daniella,Brooklyn,Prospect-Lefferts Gardens,40.66322,-73.95142,Private room,50,2,58,2019-07-06,3.44,1,52 +23131033,"Full 1-BR Apartment - Sunny, Cozy, and Eclectic!",137292249,Sara And Greg,Brooklyn,Flatbush,40.64086,-73.9547,Entire home/apt,55,4,8,2018-11-08,0.53,1,0 +23131155,Newly Renovated Mins from JFK & LGA,45735959,Rose,Queens,St. Albans,40.70828,-73.75276,Entire home/apt,120,3,59,2019-05-26,3.49,1,52 +23131354,Two Bedroom Apartment in trendy Park Slope area.,109719378,Tatyana,Brooklyn,Sunset Park,40.66186,-73.99505,Entire home/apt,120,1,59,2019-06-27,3.69,1,22 +23131463,Sunny Chelsea Studio + Balcony (Central Location),15901859,Jonah,Manhattan,Chelsea,40.74216,-73.99673,Entire home/apt,127,5,30,2019-06-24,2.00,1,32 +23131496,Beautiful stylish studio in Midtown,99683151,Christina,Manhattan,Kips Bay,40.73799,-73.97821,Entire home/apt,160,3,36,2019-06-23,2.14,3,266 +23136074,So nice and close to everything.,171939378,Jose,Manhattan,Hell's Kitchen,40.75584,-73.99559,Entire home/apt,200,3,2,2018-05-13,0.14,2,0 +23139166,Perfectly located Williamsburg 1.5 bedroom Apt,4316650,Oren,Brooklyn,Williamsburg,40.71662,-73.94514,Entire home/apt,117,2,14,2019-05-27,0.82,1,0 +23139647,Spacious 2 level home for Groups sleeps upto 12,11305944,Yahaira,Bronx,Allerton,40.86578,-73.86534,Entire home/apt,250,2,22,2019-06-19,1.44,5,361 +23142074,Spacious & bright 2BR/2BA (available for August),818585,Julian,Brooklyn,Flatbush,40.64726,-73.95937,Entire home/apt,76,14,1,2018-02-08,0.06,1,41 +23142952,Beautiful room in renovated Manhattan apartment,6501039,Geraldo,Manhattan,Washington Heights,40.83416,-73.94375,Private room,30,5,2,2018-07-07,0.14,1,0 +23143173,"Evergreen apartment, furnished with natural light",94263025,Derek,Brooklyn,Bushwick,40.68822,-73.9124,Private room,40,1,10,2018-07-04,0.58,2,0 +23144059,Large Room in a 2Bedrooms Perfect UWS Experience,7990635,Madi,Manhattan,Upper West Side,40.79298,-73.97249,Private room,92,1,0,,,1,0 +23145289,Brooklyn Loft in South Williamsburg,11951436,Maxwell,Brooklyn,Williamsburg,40.71264,-73.96461,Entire home/apt,175,5,0,,,1,0 +23147603,Cozy apartment with a huge terrace in Greenpoint,12233355,Renata,Brooklyn,Greenpoint,40.72421,-73.94074,Entire home/apt,200,1,0,,,2,0 +23148112,Spacious Studio on Staten Island,7875272,Mary,Staten Island,Port Richmond,40.63012,-74.13512,Entire home/apt,50,31,0,,,3,0 +23149641,Prime location 2 BR APT/ Midtown West/ Manhattan,171939378,Jose,Manhattan,Hell's Kitchen,40.75546,-73.99582,Entire home/apt,180,3,31,2019-04-28,1.98,2,4 +23150033,Spacious zen apartment. Close to King's hwy stop.,172067924,Ekaterina,Brooklyn,Midwood,40.61182,-73.95436,Entire home/apt,100,3,0,,,1,0 +23151066,"Charming studio in the heart of UES, Manhattan!",5640467,Surani,Manhattan,Upper East Side,40.77579,-73.95628,Entire home/apt,117,5,1,2018-07-21,0.08,1,0 +23154138,Cozy and conveniently located,3202437,Rosella,Manhattan,Lower East Side,40.7216,-73.98959,Entire home/apt,130,10,4,2019-06-23,0.38,1,35 +23156950,NYCTH Suit Room,172130647,Jirapong,Queens,Jackson Heights,40.74879,-73.88342,Private room,59,1,24,2019-05-30,1.43,1,5 +23158057,Chic/Industrial 1 Bedroom Near Barclay's Center,4023251,Emily,Brooklyn,Gowanus,40.68293,-73.98849,Entire home/apt,94,3,5,2018-12-29,0.30,1,0 +23158770,Private 2 Bedrooms - Subway Across Street,172145021,Quaizar,Queens,Woodhaven,40.69564,-73.85052,Entire home/apt,63,3,0,,,1,0 +23160162,Large bright loft in Williamsburg,71840935,Cara,Brooklyn,Williamsburg,40.70569,-73.95301,Private room,55,2,5,2018-09-07,0.30,1,0 +23161182,"Huge One Bedroom, 20 min from Center of Manhattan!",6577580,Steve,Queens,Forest Hills,40.7255,-73.84755,Entire home/apt,69,2,1,2018-02-15,0.06,1,0 +23163660,Tony's Room 1 near La Guardia Airport,172189639,Camilo & Yesenia,Queens,East Elmhurst,40.76444,-73.86907,Private room,80,1,73,2019-07-06,4.57,2,30 +23164537,Shared studio apartment,172186369,Elisheva,Bronx,Morris Heights,40.84718,-73.91378,Shared room,20,1,9,2018-05-21,0.53,1,0 +23166224,Cozy Respite in the HeART of Bushwick,842091,Megwyn,Brooklyn,Bushwick,40.69874,-73.92496,Private room,40,3,51,2019-07-01,3.00,2,51 +23166555,Upper East Side Triplex Penthouse Rooftop,162153626,S,Manhattan,Upper East Side,40.77394,-73.95252,Entire home/apt,127,1,1,2018-07-06,0.08,1,0 +23166556,Private Quiet Room in Chelsea Brownstone Apartment,625092,Anne-Lise,Manhattan,Chelsea,40.75115,-73.99787,Private room,63,7,4,2019-03-09,0.39,1,31 +23166697,Cozy bedroom in Clinton Hill,21485411,Brittany,Brooklyn,Bedford-Stuyvesant,40.68706,-73.95637,Private room,95,1,22,2019-06-30,1.33,1,36 +23166922,Cathedral View,7411846,Matt,Manhattan,Upper West Side,40.80115,-73.96282,Private room,75,1,1,2018-02-11,0.06,1,88 +23168904,纽约法拉盛民宿客栈,172240638,Betty,Queens,Flushing,40.7681,-73.82265,Private room,50,2,1,2018-03-09,0.06,1,0 +23169146,Artist apartment in LIC,51260506,Grace,Queens,Long Island City,40.74786,-73.94628,Shared room,1250,1,1,2018-02-19,0.06,1,173 +23170204,Private room in Manhattan,86527607,Artur,Manhattan,Kips Bay,40.74405,-73.97596,Private room,80,1,0,,,1,0 +23170592,Quiet and spacious room for 2,40317143,Zsofia,Queens,Maspeth,40.71937,-73.90442,Private room,40,1,2,2018-12-30,0.13,2,169 +23171129,Renovated 1BR Apt - close to Grand Central & UN,21689645,Fazli,Manhattan,Murray Hill,40.74668,-73.97309,Entire home/apt,145,10,2,2019-02-01,0.13,1,0 +23171917,Gorgeous Studio in Little Italy Nolita!!!,10457196,Richard,Manhattan,Little Italy,40.71967,-73.99583,Entire home/apt,135,31,5,2019-01-17,0.37,11,122 +23172490,2 full beds-Spacious beautiful room near Manhattan,117108525,Sen,Queens,Sunnyside,40.74759,-73.91446,Private room,44,1,78,2019-06-28,4.62,2,116 +23177964,"Large Room in Hip Lefferts Garden 1,100 SQ Ft Apt.",56276728,Stefanie,Brooklyn,Flatbush,40.6455,-73.95975,Private room,70,14,5,2018-07-06,0.30,1,0 +23179415,Spacious Pre-War Apt - 1 Block Off Prospect Park,169851445,Mary,Brooklyn,Flatbush,40.654,-73.96209,Private room,47,1,0,,,1,0 +23183557,Private Room in Large Apartment With Yard,40511631,Joey,Brooklyn,Bedford-Stuyvesant,40.68357,-73.93753,Private room,42,2,89,2019-07-01,5.54,2,4 +23184420,Functional & fresh Manhattan male room longterm II,170263842,Sultan,Manhattan,Lower East Side,40.71172,-73.98864,Shared room,33,100,2,2018-12-20,0.18,4,320 +23184752,Large Sunny Clinton Hill/Bedstuy bedroom,172366460,Aaron,Brooklyn,Bedford-Stuyvesant,40.69076,-73.95883,Private room,70,1,18,2019-06-15,1.07,1,362 +23184876,"Bright, Family-Friendly Brooklyn Townhouse",7807118,Garrett,Brooklyn,Gowanus,40.6844,-73.98669,Entire home/apt,350,3,0,,,1,0 +23185690,"Manhattan, West Side, Hudson River View",155618754,Monica,Manhattan,Washington Heights,40.84857,-73.94193,Private room,85,3,0,,,1,0 +23188573,Queen size Bedroom in Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84777,-73.94178,Private room,90,1,0,,,3,0 +23188871,Spacious Apt in Washington Heights Manhattan,132883674,Derek,Manhattan,Washington Heights,40.84643,-73.94187,Private room,120,1,0,,,3,0 +23189933,High rise studio,38672377,Christian,Manhattan,Harlem,40.82015,-73.95747,Entire home/apt,100,6,5,2018-05-28,0.31,1,0 +23190292,Gorgeous Studio Apartment in the heart of Manhatan,13900556,Iryna,Manhattan,Upper East Side,40.77226,-73.95631,Entire home/apt,145,5,5,2019-04-09,0.30,1,0 +23191484,"Warm, Cozy Room in our Classic Brooklyn Brownstone",4249379,Rachel,Brooklyn,Bedford-Stuyvesant,40.68261,-73.95187,Private room,75,2,17,2019-07-01,1.07,1,115 +23195752,"WOW factor! Duplex 3br,2bath. Central Pk, Columbia",5162192,Amy,Manhattan,Upper West Side,40.79788,-73.96235,Entire home/apt,250,30,2,2018-12-10,0.19,12,310 +23199948,Empire State Studio,172506981,Marlene,Manhattan,Midtown,40.74827,-73.98828,Entire home/apt,150,3,27,2019-07-06,1.79,1,320 +23200628,Cozy & Comfortable Modern Apartment,3792602,Andre,Manhattan,Harlem,40.8298,-73.93984,Private room,65,2,25,2019-05-21,1.50,1,30 +23201228,Greenwich Village Gem at Washington Sq Park!,23859317,Jeffery,Manhattan,Greenwich Village,40.73091,-74.00002,Entire home/apt,159,1,77,2019-06-22,5.30,1,50 +23203149,Big beautiful bedroom in huge Bushwick apartment,143460,Megan,Brooklyn,Bushwick,40.69839,-73.92044,Private room,65,2,8,2019-06-23,0.52,2,8 +23203929,La Quinta Central Park West Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77722,-73.97834,Private room,159,1,0,,,4,269 +23204924,Quiet Brooklyn Artist Apartment With A View,594634,Alexandra,Brooklyn,Clinton Hill,40.68651,-73.96604,Entire home/apt,200,5,1,2019-06-19,1,1,0 +23207975,Ridge wood apartment w/ rooftop deck,47070613,Max,Queens,Ridgewood,40.70663,-73.89709,Private room,60,1,44,2019-06-22,2.57,1,84 +23213107,NYCTH Master Room,172640229,Jirapong,Queens,Woodside,40.74301,-73.8954,Private room,46,1,2,2019-04-22,0.16,1,96 +23214720,Beautiful Studio in UWS,154895874,George,Manhattan,Upper West Side,40.79408,-73.97392,Entire home/apt,150,5,0,,,1,13 +23214729,"Sunny + Cozy Studio in Prospect Heights, Brooklyn",13133943,Anthony,Brooklyn,Prospect Heights,40.67616,-73.96466,Entire home/apt,69,3,7,2018-11-04,0.41,1,0 +23216187,Spacious and sunny room in Crown Heights,8260418,Matthew,Brooklyn,Crown Heights,40.67671,-73.94938,Private room,26,2,0,,,1,0 +23216381,Spacious Greenpoint Living,9804931,Byron,Brooklyn,Greenpoint,40.72742,-73.95066,Entire home/apt,190,2,5,2019-06-16,0.32,2,5 +23216832,"Heart of Williamsburg, Private Bedroom in 2BR Apt",2589436,Sarah,Brooklyn,Williamsburg,40.71619,-73.95641,Private room,50,14,0,,,2,0 +23217530,Spacious private bedroom in duplex with backyard,4521174,Caroline,Brooklyn,Crown Heights,40.67184,-73.94041,Private room,65,7,0,,,3,59 +23218152,Spacious Greenpoint Living - Private Room,9804931,Byron,Brooklyn,Greenpoint,40.72672,-73.9517,Private room,80,2,0,,,2,0 +23218579,Greenpoint Loft with True Brooklyn Flavor,5350903,Kyle,Brooklyn,Greenpoint,40.72612,-73.95691,Entire home/apt,125,2,48,2019-07-02,3.00,1,48 +23219361,Cozy Studio near South Beach :-),59966705,Arek,Staten Island,Arrochar,40.59078,-74.07504,Entire home/apt,71,2,30,2019-06-14,1.80,1,306 +23219659,Luxury Garden Escape in Trendy Williamsburg 1 BR,172713193,Olivia,Brooklyn,Williamsburg,40.70757,-73.95387,Entire home/apt,150,4,82,2019-07-02,4.86,1,331 +23221495,Private apartment w/parking,172736191,Gabriela,Queens,Briarwood,40.7149,-73.80916,Entire home/apt,80,5,51,2019-06-22,3.23,1,57 +23221581,Cozy Renovated 2 Bedroom Apartment Heart of Brklyn,41398005,Mirco,Brooklyn,Sunset Park,40.64279,-74.00515,Entire home/apt,70,30,10,2019-06-29,0.62,3,183 +23222091,Lovely 1 bedroom in East Harlem,33438428,Eni,Manhattan,East Harlem,40.80086,-73.93979,Entire home/apt,80,5,15,2018-10-21,0.93,1,46 +23222310,Awesome cozy bedroom in hip area,30940393,Sarah,Brooklyn,Bushwick,40.68901,-73.90768,Private room,43,2,39,2018-12-27,2.31,2,0 +23222680,Private 1-bedroom Apartment in the Lombardy,100829279,Ian,Manhattan,Midtown,40.76163,-73.97113,Entire home/apt,210,1,108,2019-06-20,6.40,3,216 +23223028,"Luxury Apartment, best of Brooklyn, mins from MH",7760617,Nick,Brooklyn,Downtown Brooklyn,40.69472,-73.98337,Entire home/apt,133,3,2,2018-06-13,0.15,1,0 +23229152,Private 1 bedroom - Great for Travel Nurses,131806850,Idara,Brooklyn,Kensington,40.64109,-73.97503,Private room,50,1,1,2018-03-14,0.06,1,0 +23230395,Enormous and illuminated on top floor (long term),84529,Alek,Queens,Elmhurst,40.74524,-73.8876,Entire home/apt,100,60,2,2019-01-02,0.17,1,132 +23232087,A Peaceful Home in Manhattan,127740507,Kathleen,Manhattan,Harlem,40.83118,-73.94325,Private room,47,2,83,2019-07-03,4.97,2,48 +23233925,"8 mins to Central Park,3 mins to Subway,Guest Room",14320524,Andrea,Manhattan,Upper East Side,40.77603,-73.95573,Private room,99,3,35,2019-07-07,2.22,1,162 +23235101,2 Bedroom Garden Apartment in Brooklyn,172885803,Jeannie & Everett,Brooklyn,Bedford-Stuyvesant,40.68807,-73.93634,Entire home/apt,150,4,42,2019-07-07,2.69,1,244 +23235139,"Sunny, spacious and quiet room in artist residency",56793,Gisella,Brooklyn,East Flatbush,40.64745,-73.94413,Private room,50,6,0,,,1,100 +23235654,Only book if your name is Haydn,20725025,Lucas,Manhattan,Upper East Side,40.77506,-73.95335,Shared room,80,1,1,2018-02-16,0.06,1,170 +23235762,Bright Brooklyn Heights One Bedroom Apt,32927725,Lee,Brooklyn,Brooklyn Heights,40.69109,-73.99654,Entire home/apt,200,1,0,,,1,0 +23236828,Cozy Room. 2 blocks to Subway,172911004,Vas,Bronx,Concourse Village,40.83168,-73.91977,Private room,47,5,33,2019-06-01,1.96,1,176 +23237952,"Cozy, private and lovely room at home in Bedstuy",1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94475,Private room,44,3,9,2018-07-04,0.54,2,0 +23238781,GUEST ROOM in a Beautiful 2 bedroom Apartment,81066021,Javerick,Brooklyn,Bedford-Stuyvesant,40.6893,-73.94573,Private room,67,3,16,2019-06-15,1.11,2,307 +23240738,(B) Room for 2 - sharing bath,110965771,Wilson,Queens,Flushing,40.77354,-73.82371,Private room,60,2,25,2019-02-13,1.54,7,14 +23247351,Charming room at Bed-Stuy,127427486,Bianca,Brooklyn,Bedford-Stuyvesant,40.6943,-73.93935,Private room,50,1,33,2019-03-24,2.29,1,0 +23247442,"Contemporary Home Away from Home, Entire house",499896,Leon,Staten Island,Tompkinsville,40.63462,-74.08136,Entire home/apt,245,2,37,2019-06-01,2.28,1,216 +23247514,Private room in family apartment,29098546,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68082,-73.92162,Private room,29,1,65,2019-06-23,3.88,1,5 +23249573,Big New Family Friendly Great Location,83141620,Martin,Brooklyn,Sunset Park,40.65511,-74.001,Entire home/apt,180,7,1,2018-08-12,0.09,1,0 +23250710,Bright Modern Chic & Clean East Village APT,109061785,Jeff,Manhattan,East Village,40.72923,-73.98197,Entire home/apt,189,1,40,2019-06-22,2.37,1,73 +23251395,Peaceful room in popular prime Bushwick street art,4672257,Lola,Brooklyn,Bushwick,40.70468,-73.92481,Private room,41,1,82,2019-06-20,5.00,1,30 +23251417,Cozy Astoria bedroom 20 min from midtown,173047765,Alegria,Queens,Ditmars Steinway,40.77202,-73.91292,Private room,60,2,26,2019-07-01,2.49,1,112 +23251775,1 BR Flat in Williamsburg (3 blocks from Bedford),9837019,Damien,Brooklyn,Williamsburg,40.71399,-73.95363,Entire home/apt,120,2,45,2019-06-14,2.79,1,19 +23252265,Lovely West Village 1 BR - Quiet and Comfortable,4220920,Laura,Manhattan,West Village,40.739,-74.00115,Entire home/apt,123,2,6,2019-05-12,0.38,1,34 +23252443,Wyndham Midtown 45 (2 Bedroom Presidential) 2A,100238132,Michael,Manhattan,Midtown,40.75377,-73.97223,Entire home/apt,339,3,40,2019-05-13,2.63,12,0 +23252588,No place like Brooklyn. No place like Red Hook,2536555,Julian,Brooklyn,Red Hook,40.67914,-74.0063,Entire home/apt,125,3,1,2018-12-31,0.16,1,0 +23253216,Artsy Queen Room in BUSHWICK: Jefferson L train,9484908,Aj,Queens,Ridgewood,40.70991,-73.91832,Private room,30,3,13,2019-06-19,0.84,2,65 +23254023,Grand Concourse Gem,170942459,Edwin,Bronx,Concourse,40.8315,-73.92047,Private room,54,1,16,2018-10-08,0.99,1,69 +23254776,Cozy Apartment for 1 or 2 people,4391681,David,Brooklyn,Crown Heights,40.67294,-73.95943,Entire home/apt,75,3,9,2019-01-04,0.54,1,280 +23254924,"Spacious 1 bedroom apt in Chinatown, NYC",49015786,Conor,Manhattan,Chinatown,40.71483,-73.99287,Entire home/apt,92,7,9,2019-05-10,0.53,1,4 +23255800,Tropical New Yorker with Backyard,19631496,The,Brooklyn,Williamsburg,40.70794,-73.94532,Entire home/apt,130,5,61,2019-07-02,3.84,2,185 +23256023,Private bedroom in Barclays (Brooklyn),123578077,Hooman,Brooklyn,Prospect Heights,40.68215,-73.97372,Private room,55,2,2,2018-03-23,0.13,1,0 +23256828,"Sunny, Spacious Brooklyn Room 1 Block From Train!",63943922,Maxwell,Brooklyn,Bushwick,40.68705,-73.91425,Private room,35,3,4,2018-07-01,0.24,1,0 +23256946,Cozy Studio by the Park,3732261,Sidney,Brooklyn,Prospect-Lefferts Gardens,40.66179,-73.95879,Entire home/apt,75,4,2,2019-01-17,0.12,1,0 +23258602,Private room in Williamsburg. Very close to train!,72196680,Nuria,Manhattan,Civic Center,40.71335,-74.00687,Private room,50,3,0,,,1,0 +23258639,Large Alcove Studio in the Heart of Chelsea,22412963,Anne,Manhattan,Chelsea,40.74482,-73.99882,Entire home/apt,180,1,72,2019-06-25,4.67,3,223 +23258724,Entire Place in Prime Brooklyn Neighborhood,15194406,Yitzchok,Brooklyn,Sunset Park,40.65774,-73.99927,Entire home/apt,89,1,113,2019-06-19,6.70,1,13 +23262857,Central Park - Room for 2 to 4,60281397,Lugao,Manhattan,Upper West Side,40.79701,-73.96933,Private room,93,1,27,2019-06-09,1.69,3,190 +23264421,"Mod Midtown East 1BR w/ Gym, walk to Grand Central by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.749,-73.97961,Entire home/apt,289,30,0,,,232,223 +23265699,"Convenient, Quiet and Sunny 1 BR Condo in Flushing",5962328,Alan,Queens,Flushing,40.76105,-73.82317,Entire home/apt,85,30,4,2018-11-09,0.31,15,232 +23268810,Cosy private room in Manhattan!!!,145252418,Claudio,Manhattan,East Harlem,40.80541,-73.93658,Private room,80,1,54,2019-07-05,3.74,3,180 +23269735,Light Flooded Artist Loft in Brooklyn,149047,Heather Nadine,Brooklyn,Bedford-Stuyvesant,40.69158,-73.95958,Entire home/apt,150,4,6,2019-07-08,0.63,1,11 +23270879,"Private Floor W/Private Entrance, Bath & Rooftop",5516133,Frederik,Brooklyn,Greenpoint,40.72291,-73.94781,Private room,100,1,7,2019-01-21,0.46,1,0 +23271408,Perfect shared male room on Manhattan! II,39528519,Max,Manhattan,Lower East Side,40.70987,-73.98689,Shared room,35,14,0,,,28,322 +23271535,Brooklyn Studio; Williamsburg to Manhattan - 10min,122726779,E...,Brooklyn,Williamsburg,40.71097,-73.9533,Entire home/apt,175,2,92,2019-07-04,5.47,1,96 +23271736,Cozy Brooklyn Heights Apartment!,47151333,Walter,Brooklyn,Brooklyn Heights,40.69061,-73.99264,Entire home/apt,113,3,4,2019-03-31,0.25,2,0 +23273676,Little Italy Spacious Room,116976293,Topher,Manhattan,Little Italy,40.71913,-73.99835,Private room,69,2,45,2019-06-16,2.75,2,0 +23273907,"**Cozy room, good location, 20 mins to Manhattan",173249074,Svetlana,Brooklyn,Bath Beach,40.60434,-74.0169,Private room,50,4,36,2019-06-26,2.19,2,316 +23274386,Perfect Apartment in brand new building!,123736313,Houda,Manhattan,East Harlem,40.78785,-73.94249,Entire home/apt,105,4,8,2019-06-29,0.50,1,0 +23274936,Private cozy room in Brooklyn with laundry,157977326,Ilyas,Queens,Maspeth,40.71395,-73.91373,Private room,55,1,72,2019-06-20,4.27,2,29 +23275013,Dope Apt,756577,Jason,Brooklyn,Greenpoint,40.71859,-73.95284,Entire home/apt,100,90,0,,,1,0 +23275777,2 Floor-Entire Detached House 30 Min to Manhattan,113905011,Li,Queens,Rego Park,40.73082,-73.86796,Entire home/apt,109,2,68,2019-06-30,4.02,1,54 +23277230,2 bedrooms flat near Central Park,128579948,Giampiero,Manhattan,Upper East Side,40.76646,-73.9676,Entire home/apt,500,3,56,2019-06-27,3.57,2,163 +23277442,HABITACION EN BROOKLYN NEW YORK,75633225,Daniel,Brooklyn,Sunset Park,40.64555,-74.00995,Private room,150,2,0,,,1,363 +23278026,"Beautiful 2-bed w private deck, steps from subway",7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94191,Entire home/apt,125,2,3,2018-07-09,0.19,3,0 +23285672,Quarto Bronx (NY),136455880,Alvina Da Silva,Bronx,Fordham,40.86918,-73.8905,Private room,34,1,2,2018-04-05,0.12,2,5 +23285903,Your stylish home in Park Slope,10713617,Liberty,Brooklyn,South Slope,40.66459,-73.98553,Entire home/apt,260,2,6,2019-06-30,0.40,1,1 +23287403,Room 1 - Lots of Space in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64397,-73.96907,Private room,68,2,64,2019-07-03,3.89,6,177 +23288584,Manhattan Club 1 Bedroom (Sleeps 4 adults),40381718,Sujatha,Manhattan,Midtown,40.76422,-73.98188,Private room,250,1,0,,,1,0 +23288667,"Great place for 8, 30 min to Manhattan",173373234,Alexander M,Brooklyn,Bensonhurst,40.60859,-73.99331,Entire home/apt,200,30,19,2018-07-15,1.17,2,179 +23289645,Hamilton Heights home,173379189,Jill,Manhattan,Harlem,40.82521,-73.94159,Entire home/apt,200,2,2,2018-04-01,0.13,1,0 +23289674,WILLIAMSBURG PRIME BROOKLYN PRIVATE APT NEAR WATER,29219991,Doug,Brooklyn,Williamsburg,40.71703,-73.96509,Entire home/apt,125,31,11,2019-05-09,1.29,2,190 +23289837,spacious house near Laguardia/2.blocks from train,76536839,Tashi,Queens,Jackson Heights,40.75159,-73.89437,Entire home/apt,199,2,39,2018-11-26,2.48,2,0 +23290010,Sunny Williamsburg Apt (1 month min stay),1539109,Mary,Brooklyn,Williamsburg,40.71225,-73.95757,Private room,68,28,5,2019-06-17,0.53,1,258 +23290041,Live Like a Local in East Williamsburg Studio Apt,32226468,Melissa,Brooklyn,Williamsburg,40.70529,-73.93883,Entire home/apt,37,4,2,2018-04-25,0.13,1,0 +23290179,Your own relaxing 1-bedroom in Bushwick/Bedstuy!,75982141,Bingham,Brooklyn,Bushwick,40.69029,-73.92277,Entire home/apt,60,3,8,2019-01-15,0.49,1,0 +23292216,Lower East Side Oasis,173406651,Dan,Manhattan,Lower East Side,40.7196,-73.98133,Entire home/apt,300,3,30,2019-07-02,1.77,2,182 +23292982,Trendy Bushwick Place (in Brooklyn),173416551,Natalie,Brooklyn,Bushwick,40.6858,-73.90734,Entire home/apt,87,2,70,2019-06-15,4.25,1,54 +23293483,20 w 53Rd st full furnished 2BR,53179388,Raymond,Manhattan,Midtown,40.76126,-73.97628,Entire home/apt,500,180,0,,,10,363 +23293946,Williamsburg Loft with Garden,3402155,Andre,Brooklyn,Williamsburg,40.7186,-73.95997,Entire home/apt,160,2,9,2018-10-28,0.56,1,157 +23294354,Spacious and Serene in Manhattan! 2 beds,6239596,Tanya,Manhattan,Washington Heights,40.84664,-73.93977,Entire home/apt,145,2,3,2018-05-20,0.20,1,0 +23300336,Cozy room,173485654,Patricia,Staten Island,Mariners Harbor,40.63179,-74.16122,Private room,40,5,1,2018-04-12,0.07,1,87 +23301706,"*Great room, good location, 20 mins to Manhattan",173249074,Svetlana,Brooklyn,Bath Beach,40.60444,-74.01725,Private room,50,4,24,2019-05-18,1.69,2,311 +23302260,Inspiring & Tranquil Experience,122374980,Matt,Manhattan,Upper West Side,40.78648,-73.97923,Shared room,60,1,34,2019-06-22,2.01,4,363 +23302837,Basement studio with half bathroom,40733012,Victor,Brooklyn,Bedford-Stuyvesant,40.68231,-73.91252,Private room,40,7,0,,,1,365 +23303297,"Spacious Rooms 10 minutes to LGA , 15 min. to city",18554986,Kimberly,Queens,Woodside,40.74371,-73.90877,Private room,70,1,2,2018-06-18,0.15,1,0 +23304014,Charming and Cozy Two-Bedroom,33923279,Hollis,Manhattan,Harlem,40.82932,-73.94575,Entire home/apt,100,3,2,2018-04-21,0.12,2,0 +23304600,T-Square Stylish 1 Bedroom,11789627,Maxime,Manhattan,Hell's Kitchen,40.7623,-73.99096,Entire home/apt,172,4,27,2019-06-16,1.75,1,42 +23305380,Private Room in Shared Apt in Greenwich Village,171858908,Andrée,Manhattan,Greenwich Village,40.72765,-73.99881,Private room,75,1,1,2018-05-21,0.07,2,0 +23306531,55 Blue Room Star Studio Apt merged Quiet Cave,173535994,Tyni,Manhattan,East Harlem,40.79497,-73.9477,Entire home/apt,118,1,7,2018-05-27,0.42,1,0 +23307047,2 Story PRIVATE Duplex/Elevator Building in NoMad,172756149,C,Manhattan,Kips Bay,40.74121,-73.98139,Entire home/apt,240,1,66,2019-07-02,4.09,1,83 +23307503,Cultured NYC!,165607672,Mariela,Bronx,Fordham,40.85655,-73.90377,Private room,73,2,31,2019-06-18,1.83,2,39 +23308318,Heart of Park Slope,11540159,Summer,Brooklyn,Park Slope,40.67289,-73.98316,Private room,58,2,0,,,2,0 +23308563,Room in the Safest Neighborhood of Staten Island!,106897471,Oswaldo,Staten Island,Silver Lake,40.62422,-74.09316,Private room,60,3,90,2019-05-26,5.49,1,0 +23310309,MY HOUSE ON NEW YORK!! CLOSE TO JFK AND LGA,173290675,Charlie,Queens,Woodhaven,40.69907,-73.85161,Shared room,34,1,45,2019-06-08,2.66,3,348 +23311118,Astoria 48 street and 30 ave ny,164886138,Eliahu,Queens,Astoria,40.76165,-73.90839,Entire home/apt,60,6,11,2019-06-30,0.66,11,299 +23311374,The Bungalow at Bedford Avenue (Williamsburg),1119739,Luke,Brooklyn,Williamsburg,40.71794,-73.9595,Entire home/apt,125,6,11,2019-05-27,0.66,1,0 +23311527,Ultimate NYC experience at a fraction of the cost!,173584558,Aakash,Manhattan,Upper East Side,40.76125,-73.96449,Private room,79,1,0,,,1,0 +23311756,Trendy Private Harlem Room - Plants & Light!,26259317,Keah,Manhattan,Harlem,40.81367,-73.95133,Private room,55,2,25,2018-10-29,1.57,1,0 +23312379,UWS Brownstone - Near Central Park/Lincoln Center,8055207,Nate,Manhattan,Upper West Side,40.77839,-73.97613,Private room,165,4,53,2019-06-20,3.24,1,0 +23312524,Light filled Cosy room is Brooklyn,75748625,Kosha,Brooklyn,Bedford-Stuyvesant,40.69028,-73.95195,Private room,45,1,2,2018-02-26,0.12,1,0 +23317650,Simple Nice Private Bedroom in Hamilton Heights,24987213,Bridget,Manhattan,Harlem,40.82826,-73.94589,Private room,70,2,8,2018-07-01,0.49,1,156 +23319467,Modern clean Apt-close to LGA & Manhattan,172506421,Santosh,Queens,Jackson Heights,40.75363,-73.88151,Entire home/apt,93,2,70,2019-06-26,4.24,1,89 +23320351,"Private Bdrm in Huge Apt mins to Manhtn,JFK,LGA!",70331348,Nataly,Queens,Sunnyside,40.73739,-73.92397,Private room,49,1,2,2019-01-01,0.31,1,0 +23322641,2 bedrooms apartment 10 minutes from Manhattan,38908498,Jasmine,Queens,Long Island City,40.76506,-73.93234,Entire home/apt,65,15,1,2018-03-04,0.06,1,0 +23322737,Luxurious Private Bed& Bath In NYC-Weekly Discount,169589888,J & T,Manhattan,Washington Heights,40.8347,-73.94487,Private room,140,3,27,2019-06-27,1.69,1,348 +23322795,San Carlos Hotel Garden Terrace Penthouse- up to 4,173685298,Janet,Manhattan,Midtown,40.75664,-73.97191,Private room,700,1,0,,,11,179 +23323530,Private Room in Charming Two Bedroom Apartment,75359775,Sophia,Manhattan,Little Italy,40.71848,-73.99756,Private room,100,1,8,2018-05-05,0.49,1,0 +23324479,"HARLEM HOME AWAY FROM HOME , SHORT - EXTENDED STAY",120167980,Judith,Manhattan,Harlem,40.80497,-73.94952,Private room,125,1,7,2019-05-12,0.43,1,297 +23325238,☀ Beautiful & Quiet ☀TIMES SQUARE ☀ 2 BDR Apt ☀,5201405,Rob,Manhattan,Hell's Kitchen,40.76155,-73.98687,Entire home/apt,295,2,71,2019-07-03,4.25,1,89 +23327138,"One stop from Manhattan, great area, private bd/br",10826173,Katya,Queens,Long Island City,40.74825,-73.94095,Private room,120,2,3,2018-05-10,0.21,1,0 +23327774,Trendy Brooklyn Room - 20mins from Manhattan,129273512,Lisa& Jonathan,Brooklyn,Gowanus,40.67104,-73.99362,Private room,75,1,133,2019-06-17,7.87,3,336 +23329332,"Bright, Shared Living Room in our Beautiful Home!",173754495,Megan,Brooklyn,Cypress Hills,40.67833,-73.89338,Shared room,75,1,25,2019-06-30,1.69,1,270 +23329993,"SHARE;Cheapest,Silent,Clean and Safe in New York",172837223,Erin V.,Queens,Sunnyside,40.73307,-73.91995,Shared room,30,1,51,2019-06-16,3.02,3,140 +23334645,Cool Downtown Apartment in Great Location,1730026,Haifa,Manhattan,Lower East Side,40.71331,-73.99015,Entire home/apt,127,4,7,2019-05-18,0.43,2,3 +23335839,Williamsburg Oasis,9761047,Anika,Brooklyn,Williamsburg,40.71707,-73.95982,Private room,60,3,46,2019-06-20,2.88,3,0 +23336877,Welcoming House near Verrazano Bridge,173823383,Basia,Staten Island,Shore Acres,40.60809,-74.0727,Entire home/apt,165,2,51,2019-07-02,3.25,1,0 +23337201,Cozy E. Williamsburg 3-bedroom apt! (Bedroom 2),60521448,Isabelle,Brooklyn,Williamsburg,40.70742,-73.93754,Private room,59,5,1,2018-09-03,0.10,2,48 +23338901,Bedroom + Private bathroom in Williamsburg!,12128354,Anna,Brooklyn,Williamsburg,40.70744,-73.94681,Private room,100,1,0,,,1,0 +23339298,Cosy and comfortable 2 Bdrm with Outdoor Space,82930,Ed And Heather,Brooklyn,Bushwick,40.69374,-73.912,Entire home/apt,105,2,45,2019-06-30,3.98,1,74 +23340718,Enormous 10 foot ceiling Bushwick room,131476075,Lakisha,Brooklyn,Bushwick,40.68708,-73.91237,Private room,58,1,10,2019-01-03,0.63,8,179 +23342782,"Lovely West Harlem Duplex, Comfortably Sleeps 4",4325160,Kinda,Manhattan,Harlem,40.80381,-73.95055,Entire home/apt,125,10,10,2018-12-11,0.64,1,0 +23343836,SHARE;CHEAPEST;Pure;Cozy;Safe;Silent IN NEW YORK,172837223,Erin V.,Queens,Sunnyside,40.73272,-73.91826,Shared room,30,1,36,2019-07-01,2.29,3,140 +23344008,SHARE;SAFE;CHEAPEST;15 MIN TO HEART OF MANHATTAN.,172837223,Erin V.,Queens,Sunnyside,40.73291,-73.9196,Shared room,30,1,41,2019-06-18,2.48,3,145 +23344243,Zen very well located in Chelsea studio,62745867,Tatiane,Manhattan,Chelsea,40.73981,-74.00031,Entire home/apt,146,7,3,2018-12-14,0.21,1,353 +23344293,Cozy 2,156505456,John,Brooklyn,East New York,40.66122,-73.88672,Private room,52,3,23,2019-05-27,1.37,13,90 +23351120,"upper west side, 15' from Colombia, calm & light",2730883,Seb,Manhattan,Washington Heights,40.85265,-73.93247,Private room,35,20,1,2018-10-20,0.11,2,267 +23352462,Warm room for nice people in Bensonhurst !,38121779,Viktoria,Brooklyn,Gravesend,40.60687,-73.98349,Private room,62,1,0,,,1,0 +23353173,Chateau Upon Metro - large sunny 1bd near train,55149174,Anthony,Brooklyn,Kensington,40.64588,-73.97831,Private room,43,2,0,,,1,0 +23353909,Room in crown heights,63801339,Karina,Brooklyn,Crown Heights,40.66916,-73.9371,Private room,32,1,8,2018-03-29,0.48,1,0 +23354284,It's Always Sunny in Williamsburg (2)!,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71474,-73.95476,Private room,88,1,58,2019-06-23,3.55,4,50 +23354992,Sun-drenched Artist Loft,101618737,Sihan,Brooklyn,Bushwick,40.69273,-73.90719,Private room,80,3,0,,,2,140 +23355035,Chic + Bright One Bedrooom Apartment,428643,Chanae,Manhattan,East Harlem,40.7876,-73.94139,Entire home/apt,149,3,15,2019-05-24,0.92,1,120 +23355382,THE SNUG Luxury Hotel Studio at 56th/Park,8990438,K.C.,Manhattan,Midtown,40.75978,-73.97159,Entire home/apt,169,30,48,2019-03-30,3.27,1,325 +23355877,"Beautiful large space in Jackson Heights, Queens!",17015479,Elizabeth,Queens,Elmhurst,40.74443,-73.88613,Private room,85,2,3,2018-03-18,0.18,1,89 +23357738,"Huge Chic LOFT, Natural Sunlight, Balcony!",173987923,Ethan,Manhattan,East Village,40.73214,-73.98783,Entire home/apt,395,3,4,2019-04-20,0.30,1,89 +23357789,KING SIZED BEDROOM in SoHo,43488929,Nini,Manhattan,Greenwich Village,40.72774,-74.00161,Private room,60,2,2,2018-03-15,0.12,1,0 +23358593,"1BD apartment in Clinton Hill, Brooklyn",12404650,Isabel,Brooklyn,Clinton Hill,40.68969,-73.96682,Entire home/apt,100,3,6,2019-05-15,0.43,1,3 +23358691,Spacious bright room in 2 bedroom apartment,44951851,Yaakov,Brooklyn,Crown Heights,40.66505,-73.95445,Private room,50,3,1,2018-03-17,0.06,2,0 +23359277,Brooklyn private attic in a circus home,14719992,Yoni,Brooklyn,Cypress Hills,40.67853,-73.88991,Private room,35,1,17,2019-02-17,1.13,3,0 +23360409,Beautiful place in historic Bed Stuy neighborhood,3478341,Mark,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92557,Entire home/apt,99,2,21,2019-06-19,1.31,1,26 +23361038,Sofa Bed in middle of East Village (St marks),65804,Ahmad,Manhattan,East Village,40.72831,-73.98873,Shared room,75,1,40,2019-06-04,2.39,2,24 +23363336,Manhattan clean. warm. safe room / 6 train,174124006,Chanhee,Manhattan,East Harlem,40.7975,-73.93556,Private room,60,1,61,2019-06-27,3.67,1,45 +23369253,New York Queen's East Elmhurst (whole Basement),174171891,Charlotte,Queens,East Elmhurst,40.75857,-73.89298,Private room,46,2,31,2019-06-08,1.92,1,51 +23369528,Beautiful Bed Stuy Garden Apartment,688367,Malika,Brooklyn,Bedford-Stuyvesant,40.68861,-73.92941,Entire home/apt,175,4,44,2019-06-24,2.66,1,249 +23369859,Beautiful cozy full 1 bedroom suite/apartment,59514172,Rezaur,Queens,Ozone Park,40.67984,-73.84403,Entire home/apt,120,1,35,2019-06-30,2.18,1,356 +23369991,Manhattan Studio Apt Queen bed & Sofabed loveseat,174180669,Jenny,Manhattan,Harlem,40.81809,-73.94168,Entire home/apt,179,2,37,2019-07-07,2.32,1,333 +23370484,SHOOTS ONLY -- Large Sunny loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71782,-73.96318,Entire home/apt,1000,1,0,,,4,179 +23372015,"Enjoy this vast, chic apt, 15-to-Midtown w/Kingbed",17314413,Jason,Manhattan,Washington Heights,40.83921,-73.93535,Entire home/apt,120,4,10,2019-04-21,0.60,1,4 +23372850,SHOOTS ONLY - Eclectic Artist Loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71846,-73.9616,Entire home/apt,2000,1,0,,,4,177 +23373090,SHOOTS ONLY - Huge Artist loft in Williamsburg,11844979,V,Brooklyn,Williamsburg,40.71653,-73.96276,Entire home/apt,2500,1,0,,,4,140 +23373453,"""Grandma Chic"" Brooklyn Apartment... Williamsburg",23089194,Katie,Brooklyn,Williamsburg,40.71536,-73.94058,Private room,69,5,6,2019-01-02,0.51,1,0 +23374229,Big Private Room in the Hudson Yards Area,36291511,Arturo,Manhattan,Chelsea,40.75272,-73.99682,Private room,98,1,19,2018-12-09,1.25,1,0 +23375014,Light-drenched apartment - heart of Greenpoint,41354164,Belen,Brooklyn,Greenpoint,40.7286,-73.95169,Private room,100,2,0,,,1,0 +23375874,Designer's gem on Ludlow Street,38386349,Tia,Manhattan,Lower East Side,40.72257,-73.98884,Entire home/apt,117,1,4,2018-03-27,0.24,1,0 +23376196,Modern Townhouse Apartment in Brooklyn,3806282,Sunny,Brooklyn,Bedford-Stuyvesant,40.68475,-73.92897,Entire home/apt,115,2,39,2019-06-19,2.41,1,90 +23376943,Crown Heights Greenroom,77938412,Michael,Brooklyn,Crown Heights,40.67641,-73.95736,Private room,45,5,1,2018-02-21,0.06,1,0 +23377365,East Village Location to Experience Manhattan,11274299,Andrew,Manhattan,East Village,40.72603,-73.98469,Private room,149,2,5,2018-03-30,0.30,2,0 +23377410,Beautiful/Spacious 1 bed luxury flat-TriBeCa/Soho,18128455,Rum,Manhattan,Tribeca,40.72197,-74.00633,Entire home/apt,8500,30,2,2018-09-18,0.18,1,251 +23377429,"Brooklyn, N.Y. 3 Bdrm House",63098538,Kristin,Brooklyn,Kensington,40.64187,-73.97376,Entire home/apt,175,7,0,,,1,0 +23377713,Private room in lovely Brooklyn Apt,54241,Matt,Brooklyn,Sunset Park,40.66289,-73.99815,Private room,80,21,0,,,1,0 +23377720,Charming 1 Bedroom Apt in Sunnyside,96686669,Colleen,Queens,Sunnyside,40.74497,-73.91752,Entire home/apt,125,1,16,2018-12-09,0.98,1,0 +23377781,Riverside Delight,174255459,Jose,Manhattan,Washington Heights,40.83913,-73.9461,Entire home/apt,125,2,24,2019-01-03,1.63,1,188 +23377961,Amazing new private bedroom 5 min to subway,174261493,Sophie & Max,Brooklyn,Midwood,40.61204,-73.95501,Private room,99,2,31,2019-06-02,1.90,2,0 +23378076,An Oasis in Manhattan,174263749,Shopper,Manhattan,Washington Heights,40.84442,-73.94039,Private room,115,6,2,2018-11-01,0.22,3,90 +23378120,Quiet 2BR In Residential Area; Desks + Monitors!,1670486,Chris,Brooklyn,Greenpoint,40.72345,-73.94642,Entire home/apt,96,4,0,,,1,0 +23378281,Spacious Loft Bedroom in Brooklyn With 2 Beds,160721088,Nigel,Brooklyn,East Flatbush,40.63571,-73.92398,Private room,150,5,1,2019-04-24,0.39,1,0 +23378803,Tranquil Morningside Apartment,51369575,Elena,Manhattan,Morningside Heights,40.80405,-73.96375,Private room,67,3,7,2018-05-03,0.43,1,0 +23378815,Luxurious 2-Story Home • Large Terrace • Views,20869217,Sarah,Brooklyn,Prospect-Lefferts Gardens,40.65465,-73.96158,Entire home/apt,225,2,32,2019-05-31,2.31,1,56 +23378828,Spacious bedroom in heart of Forest Hills,133536506,David,Queens,Forest Hills,40.72743,-73.85068,Private room,36,1,0,,,1,0 +23379996,All that you need. 1 bedroom in shared apt.,35475017,Danielle,Manhattan,Chinatown,40.71473,-73.99091,Private room,62,4,7,2019-01-03,0.43,1,0 +23380590,Sunny apt in dynamic Bushwick,164519659,Jessica,Brooklyn,Bushwick,40.70073,-73.91714,Private room,35,1,6,2018-04-21,0.37,1,0 +23381157,"Beautiful 1 Bedroom, 3 blocks from Prospect Park!",12780119,Greg,Brooklyn,Park Slope,40.66876,-73.98448,Entire home/apt,175,6,2,2018-04-19,0.13,1,67 +23385738,Male room 2 minutes from East Broadway station III,170263842,Sultan,Manhattan,Lower East Side,40.71117,-73.98727,Shared room,32,14,0,,,4,341 +23385746,"Private Clean, Spacious Room in West Harlem!",7718759,Kelly,Manhattan,Harlem,40.82781,-73.94405,Private room,39,1,26,2019-07-04,1.62,2,10 +23387463,Hamilton Heights Gem,24738447,Marianna,Manhattan,Harlem,40.81862,-73.95565,Private room,60,2,5,2018-04-24,0.31,1,0 +23388053,Private Room in Beautiful Soho NYC,6542295,Jon,Manhattan,SoHo,40.728,-74.00265,Private room,110,3,71,2019-06-26,4.39,2,37 +23389451,Cozy bedroom - Nearby Fort Greene Park & Dumbo,9041817,Melissa,Brooklyn,Fort Greene,40.69752,-73.97419,Private room,47,1,1,2018-03-16,0.06,1,0 +23389897,Cozy E. Williamsburg 3-bedroom apt! (Bedroom 1),60521448,Isabelle,Brooklyn,Williamsburg,40.70665,-73.93894,Private room,59,5,0,,,2,67 +23392375,Home away from home in cozy BK apartment,23625464,Liz,Brooklyn,Bushwick,40.68831,-73.91866,Private room,30,3,1,2018-07-28,0.09,1,0 +23393043,Awesome Modern Oasis 2 Bdrm Apt in Brooklyn,59089906,Connie & Monty,Brooklyn,East New York,40.67237,-73.87651,Entire home/apt,139,3,21,2019-07-05,1.49,1,344 +23394849,"2017 BUILDING!, NEW LOFT, 5 MIN SUBTO MANHATTAN!!!",157967816,Analia,Brooklyn,Greenpoint,40.72107,-73.94316,Private room,70,1,42,2019-05-14,2.50,3,15 +23400115,Cozy and bright east village apartment!,50297669,Chloe,Manhattan,East Village,40.7265,-73.98878,Entire home/apt,110,3,4,2018-04-19,0.25,1,0 +23402559,Pretty room in the heart of the Lower East Side,4057381,Kar Man And Ariel,Manhattan,Lower East Side,40.71925,-73.99301,Private room,81,5,24,2019-07-04,1.48,1,164 +23404901,Large Sun Drenched Bedroom Minutes from Manhattan,24715521,Sarah,Brooklyn,Williamsburg,40.71033,-73.94921,Private room,85,2,2,2018-03-10,0.12,1,0 +23412268,"2 Bed/2 Bath, spacious, modern & bright!",174584122,Eduardo,Manhattan,Two Bridges,40.71124,-73.99456,Entire home/apt,68,3,64,2019-05-20,3.92,1,13 +23413509,Two bedroom apartment in Brooklyn/Bed Stuy,152877297,Hp,Brooklyn,Bedford-Stuyvesant,40.67985,-73.91061,Entire home/apt,95,2,50,2019-06-17,3.13,1,54 +23416448,Private room with private bathroom in Brooklyn,14079322,Nada,Brooklyn,Bedford-Stuyvesant,40.69205,-73.94334,Private room,80,2,2,2018-12-10,0.17,1,0 +23416536,Gramercy Park Central Manhattan 4Beds 2Bath,151080327,Nicole,Manhattan,Kips Bay,40.73925,-73.98084,Entire home/apt,409,3,52,2019-06-23,3.15,1,106 +23417242,【限1~2名女生】近哥伦比亚大学超方便短租房【无其他费用】(情侣请私聊),174628863,Lingqing,Manhattan,Morningside Heights,40.81449,-73.95842,Private room,60,2,3,2018-05-08,0.18,1,0 +23417781,Upscale living on Lafayette St. NoHO,35606642,Santiago,Manhattan,NoHo,40.72764,-73.993,Entire home/apt,400,1,0,,,1,0 +23421363,Private room amazing location Chelsea/Union Square,60133196,Javier,Manhattan,Chelsea,40.73974,-73.99563,Private room,80,3,0,,,1,0 +23425584,"1 bedroom, entire apartment, in upper Manhattan",31825530,Keyonna,Manhattan,Washington Heights,40.83229,-73.94339,Entire home/apt,66,5,8,2018-12-27,0.48,1,0 +23427160,"Bright, renovated duplex with deck and backyard",19400984,Batya,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95721,Entire home/apt,200,6,3,2018-08-15,0.27,1,1 +23429074,Beautiful Private Room!,123741063,Laura,Manhattan,Harlem,40.829,-73.94803,Private room,50,1,0,,,1,0 +23429109,Your Chic NYC 1 bed Apt near Central Park,97168718,Chloe,Manhattan,Upper West Side,40.78654,-73.97663,Private room,95,5,20,2019-06-09,1.42,2,104 +23429757,Peaceful Bushwick Apartment,41105459,Stephanie,Brooklyn,Bushwick,40.69029,-73.90623,Shared room,29,1,3,2018-04-01,0.18,1,0 +23430085,Skylight Apartment,75003580,Butchie,Brooklyn,Bedford-Stuyvesant,40.68337,-73.92996,Private room,60,4,0,,,1,22 +23431200,Spacious studio in LIC,4066645,Gonzalo,Queens,Long Island City,40.74711,-73.93917,Entire home/apt,90,4,0,,,1,0 +23432542,Quiet sanctuary in the heart of the UES,56283770,Lia,Manhattan,Upper East Side,40.76305,-73.96704,Entire home/apt,240,30,2,2019-06-05,0.14,6,156 +23433516,The Kingston - A 3BR/2BA Duplex Apartment,174785774,Matthew,Brooklyn,Crown Heights,40.67487,-73.94051,Entire home/apt,162,2,3,2018-07-22,0.24,1,0 +23433518,New Tidy room plus private entrance PAID parking,124860677,Jim&Lisa,Queens,Flushing,40.75522,-73.81259,Private room,46,2,26,2019-05-26,1.65,6,180 +23433585,"Nice room near SI Ferry +15 minutes by car.",174786681,Sara I,Staten Island,Randall Manor,40.63779,-74.12274,Private room,31,7,3,2018-10-31,0.19,1,357 +23433996,Spacious Room Close to Manhattan (Females Only),20488196,Bettina,Queens,Astoria,40.76451,-73.91182,Private room,100,2,21,2019-06-25,1.86,1,32 +23434675,HUGE 2 BEDROOM NEAR MANHATTAN,21593637,Pat And Shelly,Brooklyn,Bedford-Stuyvesant,40.67988,-73.92229,Entire home/apt,159,3,12,2019-06-01,0.78,2,285 +23434788,Bright Bushwick Apartment with City Views!,56636906,Michael,Brooklyn,Bushwick,40.70223,-73.92959,Private room,50,2,0,,,1,0 +23435040,1 bd Apartment next to Subway,57292550,Elle,Brooklyn,Sheepshead Bay,40.58591,-73.95099,Entire home/apt,70,2,1,2018-02-27,0.06,1,0 +23435615,Private New Brooklyn Room,125431405,Kacey,Brooklyn,Bushwick,40.697,-73.93116,Private room,35,1,1,2018-05-12,0.07,1,0 +23435772,Lakeside View in Brooklyn - its true!,14235061,Javier,Brooklyn,Flatbush,40.65281,-73.96581,Private room,59,2,10,2019-07-07,0.62,1,27 +23435916,"Lovely, Modern Apartment in Park Slope, Brooklyn",174780742,David,Brooklyn,South Slope,40.66022,-73.98581,Entire home/apt,150,2,13,2019-06-02,0.94,1,282 +23436140,Tony's Room 2 near La Guardia Airport,172189639,Camilo & Yesenia,Queens,East Elmhurst,40.76525,-73.86715,Private room,80,1,4,2019-06-01,0.28,2,78 +23436576,1 bedroom with 3 beds in the heart of Times Square,174816758,Kerri,Manhattan,Hell's Kitchen,40.7551,-73.99363,Entire home/apt,200,3,81,2019-07-07,5.80,1,189 +23437204,Cool Lower East Side 1br Duplex W/ Backyard!,347953,Sadiq,Manhattan,Lower East Side,40.71971,-73.98761,Entire home/apt,225,6,22,2019-06-10,1.36,1,17 +23437788,Premier Location 2 Blocks to Central Park E. 62nd!,56283770,Lia,Manhattan,Upper East Side,40.76483,-73.96675,Entire home/apt,225,30,1,2018-08-16,0.09,6,240 +23437793,2 blocks to train -15min to Central Park - Astoria,11581619,Stacey,Queens,Long Island City,40.7605,-73.92795,Entire home/apt,100,2,45,2019-06-30,2.89,1,269 +23438247,Modern Brooklyn Duplex with Private Rooftop,174838471,Renato,Brooklyn,Williamsburg,40.70488,-73.94101,Private room,96,3,38,2019-06-25,2.31,1,25 +23439376,Newly renovated apt near the city/ideal room for 2,140057330,Joey,Queens,Ridgewood,40.69799,-73.90509,Private room,60,1,22,2019-05-29,1.37,7,73 +23439529,Newly renovated room for two/20mins to Manhattan,140057330,Joey,Queens,Ridgewood,40.69704,-73.90576,Private room,60,1,14,2019-05-01,0.88,7,64 +23449499,Our recently rebuilt 19th century Brooklyn gem,7886822,Lior,Brooklyn,Bedford-Stuyvesant,40.68791,-73.95633,Entire home/apt,300,5,0,,,1,0 +23449907,"Light-drenched 2-bedroom apt, prime location中国城",2148510,Joanna,Manhattan,Chinatown,40.71708,-73.99908,Entire home/apt,145,29,18,2019-05-31,1.13,1,155 +23450331,Manhattan New York,14383640,Bob,Manhattan,Murray Hill,40.74848,-73.97609,Private room,335,4,0,,,1,365 +23450541,"Spacious room in Astoria, 15 mins to Manhattan",9494593,Tammy,Queens,Astoria,40.76677,-73.9171,Private room,75,2,4,2019-03-29,0.29,1,0 +23450601,"Friendly, quiet Brooklyn Heights Apartment",22820185,William,Brooklyn,Brooklyn Heights,40.69012,-73.99221,Private room,80,1,14,2019-06-24,0.87,1,2 +23451100,"Beautiful, High-Ceiling Apartment in Fort Greene",6950113,Brad,Brooklyn,Fort Greene,40.69431,-73.97063,Entire home/apt,155,1,16,2019-05-27,1.04,1,14 +23451337,Spacious fully furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75988,-73.96115,Entire home/apt,100,30,5,2019-04-30,0.34,8,229 +23451817,Spacious 1BR Apartment,17487184,Emmanouela,Brooklyn,Williamsburg,40.71356,-73.95276,Entire home/apt,150,6,0,,,1,0 +23452076,Gorgeous Brooklyn Brownstone,3075944,Lucie,Brooklyn,Bedford-Stuyvesant,40.68464,-73.92268,Entire home/apt,120,2,89,2019-07-03,5.59,1,35 +23452435,sleek and modern 600 sf studio/petite one bedroom,35065193,Tranquil,Manhattan,Upper East Side,40.78494,-73.94988,Entire home/apt,225,2,8,2018-12-29,0.48,1,209 +23453013,Studio Near Times Square,2416454,Gen,Manhattan,Hell's Kitchen,40.76,-73.98962,Entire home/apt,175,3,4,2018-07-28,0.26,1,0 +23454165,"Gabby Suite in the Heights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85197,-73.94074,Private room,75,3,21,2019-06-18,1.47,3,138 +23454631,The CLEANEST apartment in New York City!!,174263749,Shopper,Manhattan,Washington Heights,40.84305,-73.93877,Private room,89,6,5,2019-06-01,0.31,3,90 +23455106,"Spacious Comfy Space, Full of Light",33395500,David,Brooklyn,Boerum Hill,40.68307,-73.97981,Private room,55,15,0,,,1,0 +23455982,1 SUNNY MASTER BEDROOM LOWER EAST SIDE,4781753,Rhian,Manhattan,Lower East Side,40.72107,-73.9834,Private room,100,7,0,,,1,0 +23456596,Art & home,28907641,Sherry,Queens,Flushing,40.76314,-73.83,Private room,60,1,112,2019-07-01,7.55,2,84 +23456621,JFK/Queens House of Suedajoy#1(Disc by flexibility,175019394,Suzan,Queens,Jamaica,40.67183,-73.78025,Private room,60,1,83,2019-06-11,5.11,6,171 +23461056,Duke Ellington Studio,11262267,Fabio,Manhattan,Upper West Side,40.80309,-73.96883,Shared room,77,1,0,,,1,350 +23462240,Cozy Room in Brooklyn,118086005,Noa,Brooklyn,Bedford-Stuyvesant,40.69176,-73.94261,Private room,50,1,0,,,1,0 +23462813,Gorgeous Luxury 3 Bedroom steps from Prospect Park,175082875,Scott And Jill,Brooklyn,Windsor Terrace,40.65814,-73.97718,Entire home/apt,250,2,81,2019-06-09,4.89,1,213 +23463017,A great experience in a fashionable neighborhood,9241743,Antonio,Manhattan,Harlem,40.80899,-73.94225,Private room,80,4,1,2018-03-19,0.06,1,365 +23464662,Nice Bedroom A in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.67964,-73.90675,Private room,43,1,58,2019-06-23,3.65,6,152 +23464702,Private bedroom in large Chelsea apartment,3656871,Holman,Manhattan,Chelsea,40.74233,-74.0002,Private room,99,3,3,2018-04-23,0.19,1,0 +23465208,Nice Bedroom B in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68048,-73.90787,Private room,43,1,35,2019-01-31,2.15,6,155 +23465498,Nice Bedroom C in Bushwick,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.67913,-73.90665,Private room,43,1,33,2019-01-02,2.04,6,170 +23465912,Beautiful apartment - easy access to all,175116422,Karilyn,Staten Island,Grant City,40.57879,-74.11043,Entire home/apt,60,3,81,2019-07-04,5.09,3,272 +23466034,Cozy Room Available in Brooklyn,28316764,Zachary,Brooklyn,Williamsburg,40.71876,-73.94441,Private room,52,2,4,2018-03-13,0.24,1,0 +23466099,Your Crown Heights 1 bedroom apartment,18458368,Erin,Brooklyn,Crown Heights,40.67308,-73.95522,Entire home/apt,110,1,38,2018-11-21,2.31,1,0 +23466335,COMFORT ZONE,10466854,Erika,Manhattan,Harlem,40.81404,-73.93809,Private room,60,2,16,2018-10-25,1.00,1,363 +23466360,Comfy Brooklyn Studio,111782745,Brian,Brooklyn,Williamsburg,40.70477,-73.93206,Shared room,26,2,8,2018-04-07,0.48,2,0 +23466594,New clean cozy room private entrance paid parking,124860677,Jim&Lisa,Queens,Flushing,40.75707,-73.81205,Private room,46,2,22,2019-06-25,1.36,6,180 +23467126,"Large, private apartment in restored Brownstone.",15651637,David,Brooklyn,Prospect Heights,40.67908,-73.96858,Entire home/apt,200,3,29,2019-07-03,3.33,1,50 +23467186,MIDTOWN WEST NYC STUDIO,148945774,Clay,Manhattan,Hell's Kitchen,40.76686,-73.98555,Entire home/apt,150,5,13,2018-09-02,0.80,1,0 +23468785,Luxe Master Bdrm Chelsea Doorman Gym/RoofDeck/Elev,19043062,Regi,Manhattan,Chelsea,40.74085,-74.00379,Private room,80,4,34,2019-06-28,2.24,2,20 +23469535,"Your Room at Roselle’s, Bronx",175152359,Massiel,Bronx,Westchester Square,40.843,-73.84806,Private room,65,2,2,2019-06-23,0.13,2,135 +23469548,STUDIO - Boho Chic Sanctuary in Lower East Side,39147880,Madelaine,Manhattan,Chinatown,40.71655,-73.99042,Entire home/apt,130,4,17,2019-05-11,1.10,1,0 +23470849,Perfect room in between walks&fun in Manhattan,22188,Laura,Manhattan,Upper West Side,40.78046,-73.98818,Private room,90,3,2,2019-04-30,0.63,2,339 +23470928,Comfortable shared apartmant by Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.76431,-73.98859,Shared room,75,1,69,2019-06-30,4.21,6,167 +23476922,Zen in Brooklyn,23193,Paris,Brooklyn,Bedford-Stuyvesant,40.6878,-73.93915,Private room,40,3,3,2019-06-25,0.18,4,89 +23477827,Masterful bedroom & private bathroom in Astoria,24555919,David,Queens,Long Island City,40.76322,-73.93047,Private room,47,3,0,,,1,0 +23478580,Prime Location 3 Bedrroms Apartment,9287155,Nick,Manhattan,Kips Bay,40.74265,-73.98066,Entire home/apt,450,30,16,2019-05-20,0.98,1,145 +23479042,Spacious & Private Apt steps to Prospect Park,4243971,Jeanne,Brooklyn,Prospect-Lefferts Gardens,40.65891,-73.95887,Entire home/apt,150,2,68,2019-07-05,4.27,2,32 +23480048,Open studio in Bushwick,64076428,John,Brooklyn,Bushwick,40.69749,-73.93153,Entire home/apt,110,3,7,2018-08-05,0.42,1,38 +23480510,"Bright, spacious, ensuite bedroom in Williamsburg",39607598,Vanessa,Brooklyn,Williamsburg,40.71779,-73.94632,Private room,101,1,5,2019-06-08,0.34,1,90 +23481234,"3 BdRm Apt, 8min to LGA & 25mins to JFK,Manhattan",175289458,Dawa,Queens,East Elmhurst,40.75703,-73.88368,Entire home/apt,135,2,68,2019-06-24,4.27,1,89 +23482476,Private Room in Comfortable Bushwick Apartment,15562068,Meg,Brooklyn,Bushwick,40.7046,-73.92198,Private room,55,1,18,2019-07-01,1.11,1,19 +23483134,2 Bathrooms-Modern Room in Queens (3),175311339,Eduardo,Queens,Jackson Heights,40.75251,-73.86401,Private room,51,2,60,2019-07-01,3.93,5,125 +23483266,NEW Bright-2 bath/4min to train and 10minto LGA(1),175311339,Eduardo,Queens,Jackson Heights,40.75312,-73.86479,Private room,39,2,59,2019-06-18,3.70,5,157 +23483467,Modern: 5mins to train; 30min to Times-2 Bath (2),175311339,Eduardo,Queens,Jackson Heights,40.75295,-73.86465,Private room,37,2,66,2019-07-02,4.06,5,150 +23483525,5mins to train; New York Modern Home- (5),175311339,Eduardo,Queens,Jackson Heights,40.75287,-73.86435,Private room,37,2,34,2019-06-08,2.07,5,126 +23483570,Newly Renovated-5mins to train; 30mins to City (4),175311339,Eduardo,Queens,Jackson Heights,40.75144,-73.86418,Private room,37,2,32,2019-05-03,1.96,5,126 +23484236,AC Room W/ Bathroom close to Northwell and JFK!,3552711,Louann,Queens,Queens Village,40.72528,-73.74738,Private room,75,2,85,2019-06-09,5.56,2,349 +23484328,BEAUTIFUL SUNNY ROOM!,6047516,Fejir,Brooklyn,Bushwick,40.68493,-73.90882,Private room,25,1,0,,,1,0 +23485307,Hotel-like Studio- loft Wall Street,170477315,Tanya,Manhattan,Financial District,40.70234,-74.01047,Entire home/apt,130,2,77,2019-06-30,4.70,1,85 +23485972,3 Bed + 2 Bath Trendy Upper East Apartment,24501817,Amanda Rose,Manhattan,Upper East Side,40.76398,-73.96581,Entire home/apt,479,1,52,2019-07-01,3.24,1,3 +23486333,Convenient and Comfy - minutes from Manhattan!,3726127,Megan And Martin,Queens,Long Island City,40.75044,-73.93961,Private room,150,4,0,,,1,0 +23486966,Cozy Exposed Brick Private Room with bathroom,42078872,Delanique,Queens,Ridgewood,40.69861,-73.90728,Private room,89,1,42,2019-06-16,2.57,1,5 +23487775,Perfect Southside Williamsburg,90334552,Elizabeth,Brooklyn,Williamsburg,40.71254,-73.96183,Entire home/apt,220,1,0,,,1,0 +23487824,BRIGHTON APARTMENT,175372759,Natali,Brooklyn,Brighton Beach,40.5788,-73.95719,Entire home/apt,175,3,21,2019-05-25,1.30,1,160 +23488012,Sparse room inside well-kept apartment,8335684,Mary,Manhattan,Inwood,40.86222,-73.93052,Private room,36,1,1,2018-04-11,0.07,3,0 +23488098,Cozy room close to subway,41326856,Jeerathinan,Queens,Elmhurst,40.74505,-73.88148,Private room,49,1,3,2019-01-01,0.19,5,35 +23488488,Bright cozy home close to Penn Station NYC❤️,166262295,Barbara,Queens,Long Island City,40.75325,-73.93538,Entire home/apt,135,30,0,,,2,159 +23489726,Bushwick Awesome Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68663,-73.91538,Entire home/apt,84,30,7,2018-12-31,0.44,26,156 +23495421,"Cozy studio, fully renovated! Near JFK & subway!",149579965,Camilo,Queens,Ozone Park,40.68936,-73.84114,Private room,60,2,35,2019-07-02,2.17,1,205 +23496215,Charming Studio,175448639,Isabel,Manhattan,Midtown,40.74633,-73.98694,Entire home/apt,170,4,47,2019-06-30,3.09,1,320 +23497936,COZY APARTMENT IN CENTRAL PARK,154955520,Natalia Carolina,Manhattan,Upper East Side,40.77255,-73.96323,Entire home/apt,126,3,52,2019-06-16,3.27,1,35 +23500071,"The Perfect Brooklyn Apt, Bushwick/Williamsburg",84503565,Jason,Brooklyn,Bushwick,40.70333,-73.92933,Private room,100,1,2,2019-05-14,0.13,2,20 +23501343,Columbia University Area,175497286,Jacob,Manhattan,Washington Heights,40.83705,-73.93843,Private room,55,1,2,2018-06-19,0.13,1,341 +23502842,Cozy East Village studio,34777741,Tiffany,Manhattan,East Village,40.72205,-73.98132,Entire home/apt,159,2,10,2019-06-19,0.70,1,17 +23504940,Cozy BK Bungalow,153189324,Mason,Brooklyn,Williamsburg,40.71436,-73.93949,Private room,90,2,16,2018-11-12,1.00,2,20 +23505465,Quiet Garden Level Studio in the heart of Brooklyn,77925223,Patrick,Brooklyn,Sunset Park,40.65683,-73.99959,Entire home/apt,90,2,41,2019-01-01,2.75,1,0 +23505645,Private room with Visit queens #5,158540605,Sonia,Queens,Glendale,40.69987,-73.88952,Private room,30,2,57,2019-07-01,3.54,6,254 +23506770,Brooklyn Designer Home!!!,5977578,Agate,Brooklyn,Crown Heights,40.67843,-73.96125,Entire home/apt,325,4,3,2018-08-23,0.27,2,98 +23507660,"Just renovated, modern, bright Lower East Side 1BR",12009770,David,Manhattan,Lower East Side,40.72177,-73.99205,Entire home/apt,250,5,0,,,1,0 +23508191,A Penthouse in Manhattan,174951212,Catherine,Manhattan,Midtown,40.764,-73.98033,Entire home/apt,550,2,0,,,1,0 +23508567,Cozy Home in Brooklyn Prime Location,13956097,Livia,Brooklyn,Williamsburg,40.71515,-73.95252,Private room,70,3,2,2019-06-09,0.32,1,223 +23513769,Lower Duplex w/Private Access+Bath by Yankees stop,175583687,Quisqueya,Bronx,Highbridge,40.83452,-73.93143,Private room,80,2,32,2019-06-07,2.07,3,17 +23514583,"Luxury High Line Chelsea Doorman, Roof Deck/Gym",19043062,Regi,Manhattan,Chelsea,40.74057,-74.00263,Entire home/apt,150,4,21,2019-06-19,1.46,2,5 +23514938,Upper Duplex w/Private Access+Bath by Yankee Stop,175583687,Quisqueya,Bronx,Highbridge,40.83593,-73.93004,Private room,80,2,29,2019-05-18,1.81,3,17 +23514988,LUXE PRIVATE HUGE 30FL ONE OF A KIND VIEW! UES,170271533,Lindsay,Manhattan,Upper East Side,40.77388,-73.94913,Private room,83,1,75,2019-06-30,4.57,1,44 +23515323,Room with a view in Greenpoint,1687425,Alex,Brooklyn,Greenpoint,40.73075,-73.95725,Private room,80,2,0,,,1,0 +23516943,"NYC Couch Crashers, Travelers, Tourists & Nomads",174511839,Caroline,Queens,Sunnyside,40.74457,-73.92307,Shared room,50,1,25,2018-10-20,1.56,1,5 +23516999,"Cozy room prime Williamsburg, 3 min to waterfront",7138515,Nils Und Isabella,Brooklyn,Williamsburg,40.71759,-73.95935,Private room,60,3,0,,,1,0 +23517220,Private 1 Bedroom in the Heart of Queens,27921386,Nathalia,Queens,Forest Hills,40.71331,-73.83474,Private room,40,1,14,2018-12-24,0.90,1,0 +23519107,Family-friendly apartment in Harlem MANHATTAN,4089511,Marie,Manhattan,Harlem,40.81164,-73.94513,Entire home/apt,165,7,2,2018-07-30,0.17,2,105 +23520803,Spacious one-bedroom apartment in Cobble Hill,16110255,Jennifer,Brooklyn,Gowanus,40.68084,-73.98964,Entire home/apt,130,7,11,2019-06-30,1.30,1,1 +23520855,Sunny in Williamsburg: Amazing Location,23667219,Zoe,Brooklyn,Williamsburg,40.71044,-73.9583,Private room,65,25,6,2018-09-02,0.42,2,0 +23521858,Big Boho-Brooklyn Heights Studio Room,51282128,Jenny,Brooklyn,Brooklyn Heights,40.69126,-73.99288,Private room,50,10,4,2019-01-05,0.25,1,0 +23523123,The Cozy Brooklyn Studio II; limited time offer,112843970,Rhonda,Brooklyn,East New York,40.67594,-73.89365,Entire home/apt,60,3,61,2019-06-19,3.73,2,127 +23524819,Cat on a Venue,15919854,Benjamin,Brooklyn,Flatbush,40.65104,-73.96275,Private room,42,5,1,2018-04-29,0.07,1,0 +23525066,Gorgeous 1-2 BDR apartment in the Lower East Side,45239300,Sophia,Manhattan,Lower East Side,40.72062,-73.98425,Entire home/apt,158,1,46,2019-07-05,2.88,1,106 +23527260,Soulful & Spacious E.V home for two or just you.,39538634,Gabija,Manhattan,East Village,40.72608,-73.98258,Entire home/apt,174,2,0,,,1,0 +23527821,Boho/Artsy Sunnywood studio! 20 min to Midtown,6073169,Audra,Queens,Sunnyside,40.74756,-73.91222,Entire home/apt,65,2,15,2019-06-04,1.02,1,27 +23528303,"Location, Luxury, and Ease: Midtown Manhattan Gem",6270663,Joseph,Manhattan,Hell's Kitchen,40.75689,-73.997,Entire home/apt,380,4,2,2018-10-01,0.14,1,0 +23528984,"L’AFRIQUE, C’EST CHIC! - 2 Bedroom Apartment",37541532,Daapo,Brooklyn,Bedford-Stuyvesant,40.67716,-73.91418,Entire home/apt,110,1,59,2019-06-20,3.70,1,248 +23529395,A cozy garden apartment,175778475,Christopher,Brooklyn,Crown Heights,40.67707,-73.94834,Entire home/apt,145,2,66,2019-07-01,4.85,1,158 +23535132,Cool apartment in Brooklyn with free cinema & gym,35506555,Jermaine,Brooklyn,Bedford-Stuyvesant,40.69167,-73.95381,Private room,77,2,6,2018-12-09,0.38,2,89 +23535279,Cinema + gym included with room,35506555,Jermaine,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95287,Private room,99,2,8,2018-11-05,0.53,2,179 +23536265,Cozy room in 2BR apartment at the Upper East,159598333,Sol,Manhattan,Upper East Side,40.78167,-73.94734,Private room,89,3,7,2019-05-15,0.68,5,213 +23537317,Cozy room on the UES,51368588,Paula,Manhattan,Upper East Side,40.76179,-73.96199,Private room,98,5,30,2019-06-22,1.97,2,23 +23538486,"Posh Park Avenue 1BR w/ Gym, Doorman in Midtown by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74891,-73.97887,Entire home/apt,305,30,1,2019-01-15,0.17,232,326 +23538694,Clean Overnight sofa bed By Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.76452,-73.9874,Shared room,75,1,53,2019-06-19,3.25,6,172 +23538841,Great location shared place by Times Square,175180318,Gúney,Manhattan,Hell's Kitchen,40.7648,-73.98879,Shared room,70,1,50,2019-04-01,3.07,6,362 +23539037,Room 2- Go Back in Time in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.6439,-73.96866,Private room,68,2,69,2019-06-22,4.26,6,196 +23540194,"Immaculate townhouse in Clinton Hill, Brooklyn",67176930,Sophie,Brooklyn,Clinton Hill,40.68832,-73.96366,Entire home/apt,450,3,2,2019-05-31,0.17,1,99 +23541020,Cozy Furnished Room in Heart of Crown Heights 3BR,53597648,Bonnie,Brooklyn,Crown Heights,40.67295,-73.95883,Private room,40,1,2,2019-01-03,0.22,1,0 +23541451,Spacious Private Apartment near JFK!!,5047156,Jay,Brooklyn,East New York,40.66072,-73.87638,Entire home/apt,75,6,30,2019-06-28,1.84,1,0 +23542115,Cute private room in friendly shared living space,4265419,Mary,Brooklyn,Bedford-Stuyvesant,40.68746,-73.94648,Private room,50,1,0,,,1,0 +23544438,"Nolita One Bedroom, in heart of town very quiet",175900532,Wyatt,Manhattan,Nolita,40.72434,-73.99532,Entire home/apt,200,3,21,2019-07-02,1.46,1,124 +23544588,Spacious Apartment in the heart of Manhattan!,30672354,Malin,Manhattan,Flatiron District,40.74016,-73.98735,Entire home/apt,290,5,4,2018-07-27,0.24,2,69 +23545346,Cuarto para 3,168429942,Jennifer,Bronx,Norwood,40.87993,-73.87195,Private room,50,3,18,2019-07-02,1.16,2,326 +23545793,Last stop on the L train.,163621622,Wilfred,Brooklyn,Canarsie,40.64715,-73.90447,Entire home/apt,175,2,50,2019-06-24,3.18,1,173 +23546631,Surburban Home Near The Pier,174805880,Eileen,Brooklyn,Bay Ridge,40.63457,-74.0325,Entire home/apt,125,3,25,2019-06-12,1.57,1,348 +23548260,Spacious one bedroom apartment in Chelsea,52751563,Rory,Manhattan,Chelsea,40.74248,-73.99568,Entire home/apt,96,1,32,2019-06-02,2.03,1,2 +23549904,Lofty 2 Bedroom in Top Gramercy Location!,24475565,Julien,Manhattan,Gramercy,40.73709,-73.98027,Entire home/apt,250,2,38,2019-06-26,2.65,1,322 +23554330,Turn-Key Studio - Upper East Side - great location,7951200,David,Manhattan,Upper East Side,40.77825,-73.94719,Entire home/apt,135,12,4,2018-12-01,0.28,1,171 +23556041,Bright and modern apartment in Williamsburg!,58114733,Antonella,Brooklyn,Williamsburg,40.70923,-73.95205,Entire home/apt,140,6,3,2019-06-07,0.19,1,0 +23557996,Cozy Bushwick Room :),16400151,Henning,Brooklyn,Bushwick,40.70199,-73.92035,Private room,45,2,10,2018-04-01,0.61,1,0 +23559016,Lovely room in heart of Williamsburg,173021064,Katie,Brooklyn,Williamsburg,40.71081,-73.94965,Private room,75,2,2,2018-04-22,0.13,2,7 +23559210,Sweet Studio Manhattan,176038984,Elena,Manhattan,Midtown,40.74688,-73.98701,Entire home/apt,220,4,17,2019-02-26,1.06,1,208 +23560164,**Spacious 47th-Floor Apt** Convenient Location,38202756,Zihan,Manhattan,Chelsea,40.74968,-73.98951,Entire home/apt,186,3,4,2018-04-01,0.24,1,0 +23560187,Comfy Basement Studio,57549945,Aigner,Brooklyn,Canarsie,40.63255,-73.90742,Private room,70,2,23,2019-06-11,1.58,1,53 +23561980,Bright & Quiet Minutes from Washington Square Park,2447827,Alistair,Manhattan,NoHo,40.72822,-73.99239,Entire home/apt,175,7,12,2019-06-30,1.01,1,2 +23563112,Easy Street in Brooklyn!,23891395,Bess,Brooklyn,Park Slope,40.67066,-73.98671,Private room,55,2,5,2018-03-31,0.31,1,0 +23565616,Studio apartment w/ balcony near subway!,40078965,Nina,Queens,Elmhurst,40.73182,-73.87579,Entire home/apt,95,5,29,2019-07-04,1.81,1,120 +23565653,Beautiful Bedroom Near Barclays!,3206715,Tyler,Brooklyn,Prospect Heights,40.68013,-73.97451,Private room,640,3,3,2018-09-28,0.20,1,18 +23565676,"luxury 2 bedrom, 1 bath, 1 living room top FL view",161899037,Tony,Queens,Flushing,40.75654,-73.83146,Entire home/apt,278,2,31,2019-07-02,2.12,7,68 +23565947,Beautiful Studio,3163859,Marie,Manhattan,Upper West Side,40.79167,-73.97421,Entire home/apt,125,2,8,2018-12-31,0.50,1,176 +23566549,Harlem Gem,139935139,LeMar,Manhattan,Harlem,40.81061,-73.95125,Entire home/apt,150,2,12,2019-07-06,0.80,1,0 +23568057,Monkey Jackson height cozy,65171233,Cha,Queens,Elmhurst,40.74253,-73.88962,Private room,65,3,31,2019-07-05,2.21,2,41 +23572577,Sunny Bushwick Bedroom,20302754,Ruben,Brooklyn,Bushwick,40.69322,-73.91268,Private room,43,1,12,2019-04-22,0.76,2,47 +23573326,one Bed in room,104475208,Алексей,Brooklyn,Kensington,40.63285,-73.97483,Shared room,250,3,0,,,1,365 +23573383,Sunny Williamsburg Home,3074904,Lauren & Chelsea,Brooklyn,Williamsburg,40.71452,-73.95451,Entire home/apt,285,1,5,2019-05-27,0.39,4,3 +23574142,queens get away!!,176185168,Janet,Queens,Laurelton,40.68209,-73.73662,Private room,65,1,119,2018-12-24,7.79,1,0 +23574875,Spacious One-Bedroom in the Hills of Inwood,176191548,Perla,Manhattan,Inwood,40.87188,-73.91936,Entire home/apt,85,1,2,2018-04-02,0.12,1,188 +23575012,1 bedroom in heart of Union Square,170032114,Dilan,Manhattan,Gramercy,40.73419,-73.98726,Private room,120,7,2,2018-11-02,0.19,1,31 +23575358,Cozy quarters for your getaway!,165135574,Kam,Manhattan,Gramercy,40.73629,-73.98753,Entire home/apt,165,6,10,2019-07-02,0.65,1,43 +23576132,Decent Private bedroom in 3 bd apartment.,26953965,Jen Supang,Brooklyn,Williamsburg,40.71072,-73.94382,Private room,39,7,4,2018-12-19,0.45,1,0 +23576986,Spacious room near CU Mailman campus,51037916,Lujayn,Manhattan,Washington Heights,40.83767,-73.94171,Private room,39,5,0,,,1,0 +23578232,Gay friendly in NYC,6503950,Rob,Brooklyn,Bushwick,40.69401,-73.90578,Private room,40,1,12,2018-12-31,0.74,2,0 +23579457,Chelsea Luxury Alcove Studio,17477908,Mat,Manhattan,Chelsea,40.74161,-73.99435,Entire home/apt,250,30,3,2018-08-17,0.19,10,338 +23580002,Classic Brooklyn Apartment,176245949,Tone,Brooklyn,Red Hook,40.67656,-74.01656,Entire home/apt,140,2,59,2019-07-03,3.68,1,77 +23580147,Super cozy private room in artist's apartment,66865625,Aiko,Brooklyn,Bay Ridge,40.63164,-74.0292,Private room,60,2,12,2018-10-29,0.73,1,0 +23581183,Bright Williamsburg Condo,52763343,Marie,Brooklyn,Williamsburg,40.70794,-73.94404,Entire home/apt,250,4,0,,,1,0 +23582263,Bright One Bedroom on the Upper East Side,58113598,Clayton,Manhattan,Upper East Side,40.76833,-73.96156,Entire home/apt,200,3,0,,,1,0 +23582566,Beautiful 3 bed 2 bath blocks fr subway in Astoria,109327526,Rosan,Queens,Astoria,40.76509,-73.91026,Entire home/apt,135,2,57,2019-07-07,3.52,1,0 +23582823,Cozy and charming 01 bedroom studio,4436365,Marcelo,Queens,Woodside,40.75524,-73.90768,Entire home/apt,120,3,2,2019-06-04,1.50,1,180 +23583380,"Cozy Brooklyn Room, Close to Everything :)",30436005,Ashley,Brooklyn,Bedford-Stuyvesant,40.69639,-73.93724,Private room,48,3,0,,,1,0 +23583435,2 bedroom tourist heaven with outdoor space.,156557516,Ali,Queens,Long Island City,40.76044,-73.92955,Entire home/apt,200,1,54,2019-06-23,3.38,2,338 +23584115,The Sweet Spot of NYC,49523787,Joe,Manhattan,Harlem,40.8232,-73.95463,Private room,55,1,39,2019-06-10,2.37,2,153 +23584507,♥Private Master Bath | Express Train+Free Parking☆,34177401,Nick,Brooklyn,East New York,40.67563,-73.87866,Entire home/apt,86,1,154,2019-07-05,9.53,2,311 +23586315,"Comfort, light and calm just 3 minutes from mid-town",76939238,Fiorella,Manhattan,Roosevelt Island,40.75988,-73.95097,Entire home/apt,130,2,3,2018-04-10,0.20,2,300 +23593409,Chic + Relaxing Vibe + Close to Subway,12881634,Olivia,Brooklyn,Bedford-Stuyvesant,40.68221,-73.92614,Entire home/apt,112,3,43,2019-07-01,2.63,1,29 +23593582,Jestina's Place: Private bedroom & livingroom!,111262060,Jestina,Brooklyn,Flatbush,40.64105,-73.957,Private room,70,1,66,2019-06-09,4.07,1,144 +23593710,Beautiful Bright Apartment Soho,17494958,Katy,Manhattan,SoHo,40.72172,-74.0041,Entire home/apt,275,5,6,2018-10-14,0.37,3,0 +23594177,Minimalist Brooklyn Artist's Loft (Fort Greene),25096301,Ryan,Brooklyn,Fort Greene,40.68524,-73.97463,Entire home/apt,150,2,8,2018-08-11,0.52,2,11 +23595013,Studio Apartment in Manhattan,5709606,Megan,Manhattan,Upper East Side,40.77154,-73.95573,Entire home/apt,175,3,24,2019-01-01,1.48,1,0 +23595420,Designer Loft - Best location in Williamsburg,16347259,Michelle,Brooklyn,Williamsburg,40.71068,-73.96035,Entire home/apt,378,3,13,2019-07-03,0.85,1,25 +23596025,Upper West Apartment next to Central Park NEW!,43180601,Alejandra,Manhattan,Upper West Side,40.79913,-73.9632,Entire home/apt,150,12,0,,,1,0 +23596665,Beautiful 420-Friendly Private Bedroom & Bath,148564534,Matt,Brooklyn,Prospect-Lefferts Gardens,40.66094,-73.94535,Private room,65,1,69,2019-06-03,4.40,1,0 +23597076,Bronx Cozy 1 Bedroom Apartment with entire access.,176279414,Milton,Bronx,Williamsbridge,40.87021,-73.86095,Entire home/apt,85,2,83,2019-06-29,5.19,1,329 +23597323,Staten Island Studio,99270668,Joseph,Staten Island,New Dorp,40.57044,-74.11747,Entire home/apt,57,1,0,,,1,0 +23598012,"Great Home&Host, next to 1 train",60163700,Dee,Manhattan,Harlem,40.82325,-73.95243,Private room,46,14,12,2018-12-01,0.82,4,0 +23601676,Heart of Astoria 3 bedrooms apt,8994053,Alessandro,Queens,Long Island City,40.76187,-73.92762,Entire home/apt,190,2,65,2019-07-01,4.05,1,259 +23605182,Beautiful Private Room 5 min away from Mid-town,76939238,Fiorella,Manhattan,Roosevelt Island,40.76032,-73.95164,Private room,70,3,1,2019-03-17,0.26,2,358 +23605302,Chill Space in Williamsburg Great for Exploring,5252932,Shannon,Brooklyn,Williamsburg,40.70904,-73.9471,Private room,60,1,0,,,1,0 +23605375,Manhattan Gem,157658093,Kara,Manhattan,Morningside Heights,40.81453,-73.96141,Entire home/apt,125,3,3,2018-07-10,0.19,1,0 +23606434,"Bright spacious 1BD w/ CAT, Minutes from Manhattan",10284187,Rich,Brooklyn,Williamsburg,40.71849,-73.95053,Entire home/apt,175,4,2,2018-06-16,0.15,1,0 +23606468,NEW-BRIGHT-SPACIOUS-LES-W/D-2BATH-BY TRAIN-ROOFTOP,335046,Orit,Manhattan,Lower East Side,40.71374,-73.98907,Private room,100,3,10,2019-06-01,0.62,3,361 +23606605,West Village 1 br apartment w skylight&fireplace,17193773,Elizabeth,Manhattan,West Village,40.73389,-74.00086,Entire home/apt,245,60,12,2019-04-21,0.75,1,13 +23606804,Sunny One Bedroom in Bed Stuy Close to Train,5225104,Malissa,Brooklyn,Bedford-Stuyvesant,40.68016,-73.91054,Entire home/apt,68,3,19,2019-06-28,1.23,1,28 +23607625,16 mins to City - Entire 1 bedrm Williamsburg apt,4602029,Shireen,Brooklyn,Williamsburg,40.70644,-73.94339,Entire home/apt,85,6,7,2018-10-21,0.43,1,0 +23608085,Stylish bedroom in Park Slope near Barclays,1746811,Jon,Brooklyn,Park Slope,40.67913,-73.98015,Entire home/apt,95,1,8,2018-07-29,0.52,2,6 +23608594,Private Room in the Heart of Financial District,176578851,Stephanie,Manhattan,Financial District,40.71012,-74.00828,Private room,110,5,6,2018-12-31,0.37,1,0 +23608665,Huge bedroom with lots of light & free yoga/sauna!,6787883,Gabriela,Brooklyn,Carroll Gardens,40.68086,-73.9926,Private room,74,1,20,2019-05-19,1.31,4,162 +23608727,Room in Cozy Apartment,15956611,Jay R.,Manhattan,East Harlem,40.80373,-73.93594,Private room,53,21,2,2019-05-19,0.46,2,61 +23609407,Very small room near CUMC,176591085,Mike,Manhattan,Washington Heights,40.84389,-73.94127,Private room,45,1,1,2018-05-06,0.07,4,90 +23609559,"Lofted bedroom with private bath, yard & tub",1699871,Chloe,Brooklyn,Bushwick,40.68477,-73.908,Private room,125,3,1,2018-03-12,0.06,3,1 +23610064,Private room w/memory foam QUEEN bed SUNNY space,130858402,Sam,Manhattan,East Village,40.72909,-73.98986,Private room,95,1,78,2019-07-02,4.79,1,5 +23610557,Sunny Private Room in Prime Bushwick on the park!,2251176,Harold,Brooklyn,Bushwick,40.70374,-73.92497,Private room,45,3,17,2019-06-25,1.04,1,16 +23610982,Brooklyn Duplex w manhattan flare,91511951,Libertad,Brooklyn,Prospect Heights,40.6802,-73.96504,Private room,250,3,3,2018-06-13,0.21,1,0 +23611312,Spacious & Cozy Historical Flat,19922549,Dan,Manhattan,Two Bridges,40.7115,-73.9952,Entire home/apt,300,3,24,2019-06-30,1.76,1,32 +23612284,"Spacious, sunny duplex in Fort Greene, Brooklyn",2485076,Jacob,Brooklyn,Fort Greene,40.69466,-73.97151,Entire home/apt,148,3,20,2019-06-02,1.27,1,0 +23612681,Shared Room 1 Stop from Manhattan on the F Train,55724558,Taylor,Queens,Long Island City,40.76006,-73.9408,Private room,55,4,2,2019-06-01,0.65,5,89 +23612811,"Large, Sunny Private Bedroom in Kingsbridge, Bronx",19789539,Isaac,Bronx,Fordham,40.86737,-73.89415,Private room,47,3,14,2019-05-31,0.89,1,197 +23612855,"Bookish apt near City College, Columbia University",99256824,Amy,Manhattan,Harlem,40.82197,-73.94948,Entire home/apt,250,30,0,,,1,0 +23612962,Modern Luxury Studio in Manhattan,15798930,Sunil,Manhattan,Financial District,40.70438,-74.00856,Entire home/apt,115,7,5,2018-07-08,0.32,1,0 +23613174,Quiet Oasis. A nice break from city chaos.,3741154,Esther,Brooklyn,Bushwick,40.68892,-73.90495,Private room,55,2,1,2018-03-06,0.06,1,0 +23613576,♥Private Home Express Subway Station+Free Parking☆,34177401,Nick,Brooklyn,East New York,40.67426,-73.87969,Entire home/apt,140,1,30,2019-07-07,2.18,2,4 +23613688,Clean Spacious Duplex by Yankee Stadium,175583687,Quisqueya,Bronx,Highbridge,40.83604,-73.93099,Entire home/apt,240,1,22,2019-06-24,1.40,3,1 +23613805,Apartment near Grand Central. Great Location,176651039,Lindsay,Manhattan,Murray Hill,40.74681,-73.97911,Entire home/apt,140,300,0,,,1,331 +23614276,"Apto En la exclusiva zona Austin St, Forest Hills",176660539,Veronica,Queens,Forest Hills,40.71895,-73.84249,Private room,120,1,3,2018-10-07,0.29,1,322 +23614417,478 BROOKLYN 2 bedrooms/2 bathrooms (974sf),176663321,Nathalie,Brooklyn,Clinton Hill,40.68235,-73.96128,Entire home/apt,200,30,6,2019-05-31,0.41,1,266 +23620624,A place to call home away from home,128832652,Joseph,Brooklyn,Bushwick,40.69308,-73.91882,Shared room,50,1,0,,,1,0 +23620728,Huge Private Garden Apt - Memory Foam Mattress,17105274,Matt,Brooklyn,Bushwick,40.69166,-73.90314,Private room,49,14,5,2019-06-03,0.34,2,163 +23622168,Spacious Fort Greene Apartment Near All Trains,12968185,Cristy,Brooklyn,Fort Greene,40.6865,-73.97494,Entire home/apt,175,2,0,,,1,0 +23623267,"Spacious, 1 bdr apartment. Great light and views.",24648109,Tanya,Manhattan,Battery Park City,40.70615,-74.01719,Entire home/apt,180,4,0,,,1,0 +23624930,Lisa's Comfort Zone,176763105,Lisa,Queens,Jamaica,40.6743,-73.78471,Private room,70,1,41,2019-05-05,2.76,1,67 +23626799,LUXURY TWO BEDROOM TWO BATHROOM APT,7918430,Stephen Lionel,Manhattan,Harlem,40.80765,-73.95244,Entire home/apt,400,4,7,2019-06-25,0.93,2,244 +23626886,Excellent for Vacation or Business - Heart of NYC,176436884,Leona,Manhattan,Greenwich Village,40.7323,-73.99433,Entire home/apt,199,2,69,2019-07-03,4.23,1,112 +23627524,Private Apartment steps from Central Park,2801739,Alysha,Manhattan,East Harlem,40.78757,-73.95402,Entire home/apt,194,1,19,2019-05-17,1.23,1,177 +23627589,Garden Apartment,170444830,Pramila,Manhattan,Chelsea,40.75102,-73.99841,Entire home/apt,500,30,2,2018-03-09,0.12,1,179 +23628745,"Queen Bedroom besides Central Park, West Side",176809727,Cristian,Manhattan,Upper West Side,40.80076,-73.96236,Private room,105,2,38,2019-06-16,2.38,1,300 +23628818,Female Only UWS Apartment,176810211,Paris,Manhattan,Upper West Side,40.79902,-73.96692,Private room,70,1,1,2018-04-17,0.07,1,0 +23629119,"Room in the heart of Williamsburg, Brooklyn",32130349,Michael,Brooklyn,Williamsburg,40.71876,-73.94341,Private room,50,1,0,,,1,0 +23629364,BEST value in Midtown! 1-bdrm luxury condo.,133288905,Cherie,Manhattan,Midtown,40.75321,-73.97132,Entire home/apt,187,3,12,2019-04-22,0.86,3,6 +23629960,"Bright, spacious loft in the heart of Soho",33153151,Ellen,Manhattan,Greenwich Village,40.7275,-74.0,Entire home/apt,250,2,14,2019-06-01,1.24,1,0 +23630216,Cozy Studio Apartment in East Village,51969502,Jenny,Manhattan,East Village,40.7289,-73.98865,Private room,53,3,1,2018-03-16,0.06,1,0 +23630510,Confortable and full furnished private bedroom,101736132,Alex,Brooklyn,Bushwick,40.69051,-73.91557,Private room,50,3,0,,,2,86 +23630582,Peaceful apartment near Prospect Park,26557574,Aurora,Brooklyn,Prospect Heights,40.67905,-73.97238,Entire home/apt,100,5,1,2018-03-24,0.06,1,0 +23630829,"Modern, Comfortable and Clean Bushwick Apartment",23220666,Catherine,Brooklyn,Bushwick,40.69121,-73.92099,Private room,65,2,9,2018-05-28,0.56,1,0 +23631288,Lower East Side Oasis (private room),173406651,Dan,Manhattan,Lower East Side,40.71967,-73.98311,Private room,110,2,29,2019-03-29,2.02,2,117 +23631575,Bright and spacious room two blocks from park!,2515199,Marcie,Brooklyn,Flatbush,40.65232,-73.96208,Private room,36,2,11,2018-06-17,0.68,1,0 +23631725,Private Cozy Room,176679165,Sherry,Queens,Corona,40.73917,-73.86362,Private room,40,1,78,2019-06-19,4.81,2,69 +23632578,Chelsea Studio Steps from Madison Square Garden,3717633,Tony,Manhattan,Chelsea,40.75129,-73.99561,Entire home/apt,185,2,32,2019-06-23,2.02,1,47 +23632853,Entire sunny 2-floor loft in East Williamsburg,6023250,Kate,Brooklyn,Williamsburg,40.70984,-73.9433,Entire home/apt,175,2,4,2019-05-13,0.45,1,27 +23633175,Private room in a huge Red Hook loft,1772509,Jane,Brooklyn,Red Hook,40.67923,-74.00651,Private room,65,1,13,2018-10-21,0.90,2,160 +23633872,Private Room in Crown Heights,91182678,David,Brooklyn,Crown Heights,40.67413,-73.9398,Private room,42,2,10,2018-07-23,0.64,1,10 +23634984,Shared male room with bunk beds for rent for MALE,176890090,Gani,Brooklyn,Crown Heights,40.67799,-73.94222,Shared room,25,2,13,2019-04-30,0.81,1,81 +23635601,"Cozy, Sunny Bedroom available in Crown Heights",18485718,Luka,Brooklyn,Crown Heights,40.66798,-73.95528,Private room,72,2,16,2019-06-23,0.99,1,0 +23636223,Upper West Side Manhattan Comfort 2,67768251,Felipe,Manhattan,Upper West Side,40.78353,-73.97802,Private room,45,30,4,2019-04-30,0.36,3,242 +23642287,Hip 1 Bedroom w/Buddha Awaits You in Brooklyn,270404,Lo,Brooklyn,Crown Heights,40.67186,-73.93684,Entire home/apt,77,6,15,2019-05-17,0.94,1,32 +23642811,Cozy 1 Bedroom on the Upper West Side,176964342,Robert,Manhattan,Upper West Side,40.7748,-73.97922,Private room,120,2,4,2018-04-01,0.24,1,0 +23643300,Brooklyn One-bedroom: steps from Prospect Park,38672932,Meg,Brooklyn,Prospect-Lefferts Gardens,40.65609,-73.95781,Entire home/apt,70,1,6,2019-05-12,0.39,1,0 +23644347,Private Sunshine Room,176679165,Sherry,Queens,Corona,40.73726,-73.8632,Private room,35,1,78,2019-06-22,4.82,2,75 +23644523,Private & Peacful | Entire Place | High-Line,11243113,Terry,Manhattan,West Village,40.73976,-74.00953,Entire home/apt,200,10,11,2018-12-07,0.76,1,365 +23644644,"Private, Spacious 2BR Apt",52549310,Melissa,Queens,Ditmars Steinway,40.77462,-73.91021,Private room,70,2,6,2018-08-05,0.38,1,0 +23644901,"Modern, lux BDR breakfast airport pickup included!",51088192,Sama,Brooklyn,Bedford-Stuyvesant,40.69028,-73.94163,Private room,100,3,0,,,1,364 +23646295,La Quinta Central Park West,172544686,Vijay,Manhattan,Upper West Side,40.77597,-73.97686,Private room,179,1,4,2018-03-17,0.25,4,270 +23647298,Cozy Upper East Side Studio Apartment,142765455,Genna,Manhattan,Upper East Side,40.78268,-73.94977,Entire home/apt,110,3,2,2018-08-12,0.14,1,0 +23648504,2-bdrm Luxury Condo in Midtown,133288905,Cherie,Manhattan,Midtown,40.75173,-73.9727,Entire home/apt,374,3,11,2019-06-26,0.84,3,3 +23649611,Comfortable Kips Bay for the Holidays,2653232,Anna,Manhattan,Kips Bay,40.74477,-73.98004,Entire home/apt,133,6,0,,,1,0 +23649906,2 Bedroom Brooklyn Apt Minutes from NYC Landmarks.,177036542,Bashiri,Brooklyn,Bedford-Stuyvesant,40.6845,-73.95804,Entire home/apt,175,2,44,2019-07-01,2.72,1,285 +23650008,Bedstuy/Bushwick home in the urban jungle,123453141,Hugo,Brooklyn,Bedford-Stuyvesant,40.69266,-73.9399,Private room,42,2,8,2019-01-13,0.50,1,0 +23650259,"1 private bedroom in Lower East Side, Manhattan",176983812,Lawrence,Manhattan,Lower East Side,40.72142,-73.98411,Private room,350,10,2,2018-05-05,0.13,1,87 +23650568,2 Bedroom by Bayside Train 21 mins from Manhattan,24771677,Noelle,Queens,Bayside,40.76324,-73.77111,Entire home/apt,200,2,45,2019-06-30,2.84,1,42 +23650576,Brooklyn Villa,177045672,Rene,Brooklyn,Bushwick,40.69786,-73.93287,Private room,65,3,4,2018-04-21,0.25,1,342 +23650831,Spacious room in Williamsburg,7849107,Nicholas,Brooklyn,Williamsburg,40.71384,-73.94228,Private room,55,15,0,,,2,1 +23651443,Matilda's House,32772480,Lorna,Brooklyn,Prospect-Lefferts Gardens,40.65923,-73.96031,Entire home/apt,150,3,10,2019-07-02,0.64,2,187 +23652689,Harlem Hideaway,157845873,Rainier,Manhattan,Harlem,40.81798,-73.93956,Private room,115,1,53,2019-04-25,3.33,1,0 +23654584,Comfortable Shared Apt In Midtown,175180318,Gúney,Manhattan,Hell's Kitchen,40.76534,-73.98701,Shared room,75,1,59,2019-06-30,3.64,6,362 +23660051,Room 3 - 1920's Style in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64318,-73.96835,Private room,62,2,67,2019-06-24,4.19,6,50 +23660605,Private Bedroom w/ Balcony view of Central Park,177146433,,Manhattan,East Harlem,40.79766,-73.94824,Private room,139,1,6,2018-08-12,0.46,1,0 +23660722,Beauty Renovated 1br +Balcony fully furnished!,26584499,Ofir,Manhattan,Upper West Side,40.78299,-73.98318,Entire home/apt,150,31,1,2018-06-01,0.07,8,332 +23661749,Neat room at great location,24595687,Virginia,Brooklyn,Clinton Hill,40.68303,-73.96317,Private room,75,7,1,2018-06-27,0.08,1,0 +23662000,omoh comfort,177157966,Lohlah,Queens,St. Albans,40.69147,-73.76013,Private room,45,3,9,2018-11-04,0.57,1,90 +23662887,Welcoming space w/ private room in Upper Manhattan,20618692,Mytasha,Manhattan,Washington Heights,40.83711,-73.94438,Private room,90,1,32,2019-05-06,2.02,1,5 +23664280,"One bedroom apt in Astoria, close to subway stop",921431,Camila,Queens,Ditmars Steinway,40.77113,-73.90459,Entire home/apt,113,2,51,2019-06-28,3.26,1,41 +23664324,Beautiful two Bedroom Apartment,9638130,Amit,Brooklyn,Williamsburg,40.71198,-73.94932,Private room,100,4,0,,,1,89 +23664916,"Beautiful 2 level apt, center of it Fort Greene!",8993896,Julie,Brooklyn,Fort Greene,40.69011,-73.96999,Entire home/apt,186,4,2,2019-06-04,1.36,2,22 +23665341,"Sunny 1BR in Sunnyside, Queens",176793977,Patrizia,Queens,Sunnyside,40.74035,-73.91663,Private room,60,7,0,,,1,0 +23666777,LATE CHECK IN DISCOUNT! NO CLEANING FEE! 2/5 train,82889379,Shera,Bronx,Woodlawn,40.89873,-73.86449,Private room,34,1,122,2019-06-28,8.24,4,5 +23667137,"Safe Area Huge Room/ELECTRIC MASSAGE BED QUEENS,NY",115151548,Beethoven,Queens,Hollis,40.714,-73.77787,Private room,72,5,6,2018-07-02,0.38,1,364 +23667332,The Turquoise Room,107040079,Jonathon,Brooklyn,Crown Heights,40.66561,-73.94156,Private room,42,4,36,2019-06-05,2.34,2,292 +23668381,"Luxurious, Sunny Apartment Overlooking Park",1590148,Tom,Brooklyn,Williamsburg,40.71813,-73.94931,Entire home/apt,250,2,2,2019-01-20,0.31,1,0 +23668731,Family studio beside Empire State #68,177174475,Alberto,Manhattan,Midtown,40.74805,-73.9868,Entire home/apt,120,1,8,2019-03-26,0.53,17,267 +23668732,Family Studio beside Empire State #3,177174475,Alberto,Manhattan,Midtown,40.74677,-73.98698,Entire home/apt,120,1,6,2019-03-30,0.40,17,246 +23668733,Double Studio beside Empire State #6,177174475,Alberto,Manhattan,Midtown,40.74776,-73.98668,Entire home/apt,107,1,0,,,17,208 +23668734,Deluxe Studio view Empire State #10,177174475,Alberto,Manhattan,Midtown,40.74796,-73.98814,Entire home/apt,137,1,10,2019-05-05,1.03,17,182 +23668735,Deluxe Apartment view Broadway #5,177174475,Alberto,Manhattan,Midtown,40.74731,-73.98821,Entire home/apt,163,1,11,2019-05-19,1.42,17,221 +23668736,One Bedroom Apartment beside Empire State #9,177174475,Alberto,Manhattan,Midtown,40.74636,-73.98681,Entire home/apt,153,1,7,2019-05-27,0.49,17,226 +23668737,Family Studio beside Empire State #53,177174475,Alberto,Manhattan,Midtown,40.74793,-73.98834,Entire home/apt,120,1,3,2019-02-08,0.47,17,257 +23668738,Deluxe Studio view Empire State #8,177174475,Alberto,Manhattan,Midtown,40.74826,-73.98873,Entire home/apt,137,1,7,2019-03-10,0.96,17,218 +23668739,Family Studio besides Empire State Building #59,177174475,Alberto,Manhattan,Midtown,40.74825,-73.98853,Entire home/apt,120,1,3,2019-04-01,0.51,17,200 +23668740,Deluxe Studio view Broadway #4,177174475,Alberto,Manhattan,Midtown,40.74657,-73.98691,Entire home/apt,163,1,8,2019-05-22,0.63,17,225 +23668741,One Bedroom Apartment beside Empire State #4,177174475,Alberto,Manhattan,Midtown,40.7474,-73.98685,Entire home/apt,153,1,4,2019-06-27,0.27,17,216 +23668742,Family Studio beside Empire State #52,177174475,Alberto,Manhattan,Midtown,40.74649,-73.98723,Entire home/apt,137,1,5,2019-03-21,0.34,17,162 +23668743,Family Studio near Empire State #56,177174475,Alberto,Manhattan,Midtown,40.74796,-73.98788,Entire home/apt,120,1,7,2019-06-01,0.51,17,232 +23668745,Family Apartment One Bedroom beside Empire State #62,177174475,Alberto,Manhattan,Midtown,40.74653,-73.98717,Entire home/apt,208,1,4,2019-05-18,0.30,17,215 +23668746,One Bedroom Apartment beside Empire State #6,177174475,Alberto,Manhattan,Midtown,40.74706,-73.98689,Entire home/apt,153,1,7,2019-04-01,0.70,17,234 +23668747,Deluxe Apartment Fith Ave View #89,177174475,Alberto,Manhattan,Midtown,40.74643,-73.98729,Entire home/apt,163,1,8,2019-03-27,0.57,17,239 +23668754,Sunlit Charming Studio in Park Slope,29918034,Emily,Brooklyn,Park Slope,40.6701,-73.98151,Entire home/apt,110,30,25,2019-06-25,1.63,1,125 +23668849,♔ 1min to Center of Times Square & 42nd St. ♔,162586833,Edwin,Manhattan,Hell's Kitchen,40.75869,-73.99068,Private room,400,2,19,2019-06-24,1.33,1,166 +23668975,Live like a New Yorker! Easy access to all...,130804,Heather,Manhattan,Washington Heights,40.8331,-73.94347,Private room,65,2,0,,,1,0 +23669006,"4 bdrm Riverdale apt, 15-30 minutes to Manhattan",2965556,Mj,Bronx,Spuyten Duyvil,40.88316,-73.91151,Entire home/apt,360,2,8,2019-06-16,0.51,1,71 +23669140,Beautiful 1 BD Apt in Upper West Manhattan,43264429,דניאל,Manhattan,Morningside Heights,40.80454,-73.9645,Private room,120,1,2,2018-12-24,0.16,1,0 +23669201,Great Price: Williamsburg Brooklyn Loft off L stop,2438,Tasos,Brooklyn,Williamsburg,40.71412,-73.94447,Entire home/apt,95,45,1,2018-03-17,0.06,1,0 +23669328,Private Bedroom in Apartment in Bushwick & Bedstuy,19356927,Dylan,Brooklyn,Bushwick,40.68754,-73.91411,Private room,50,1,80,2019-06-28,5.10,1,57 +23669381,Sunny Room in Williamsburg,7168913,Joaquin,Brooklyn,Williamsburg,40.71594,-73.9573,Private room,65,14,0,,,1,0 +23670513,Nice place for ladies only,177161276,Sissy,Bronx,Olinville,40.88455,-73.86587,Shared room,26,1,10,2019-03-07,0.67,1,312 +23671009,"PARK SLOPE REDESIGNED apt 2 BDRS trains F,G,R,2,3!",87786261,Sophia,Brooklyn,South Slope,40.66094,-73.98652,Entire home/apt,189,1,5,2019-03-10,0.43,5,270 +23671775,Large and beautiful room in Bedford,129483977,Vincent,Brooklyn,Williamsburg,40.71166,-73.96054,Private room,60,2,0,,,1,0 +23678832,"Stylish, Peaceful Greenpoint Bed & Bath",1420659,Melanie,Brooklyn,Greenpoint,40.72294,-73.94902,Private room,150,5,0,,,1,310 +23681735,1 Bedroom Apt with Terrace in East Village-Terrace,177353847,East Village,Manhattan,East Village,40.72619,-73.99019,Entire home/apt,400,4,8,2019-06-03,0.51,4,161 +23682503,Private Bedroom in a well-furnished Manhattan Apt,27245,Maryam,Manhattan,Midtown,40.75532,-73.9654,Private room,90,2,15,2018-11-05,0.93,1,0 +23682816,2 Bedroom Presidential Suite - Wyndham Midtown 45,11186022,Tyler,Manhattan,Midtown,40.75311,-73.97306,Private room,400,3,2,2018-06-14,0.14,1,2 +23683049,Luxurious Three Bedroom,80344984,Alexis,Manhattan,Harlem,40.82733,-73.94937,Entire home/apt,245,3,28,2019-06-26,1.74,1,272 +23683504,Spacious private bedroom across from Fulton Center,51429969,Nick,Manhattan,Financial District,40.71049,-74.00869,Private room,100,3,3,2018-07-29,0.19,1,0 +23683520,Brownstone 439,90834217,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6832,-73.93469,Entire home/apt,125,2,53,2019-06-26,3.44,1,215 +23683924,Stunning designer loft in the heart of Downtown,6238348,Patrizio,Manhattan,Civic Center,40.71353,-73.99925,Entire home/apt,220,15,4,2019-05-01,0.25,1,9 +23684349,Bright private bedroom in Prime Williamsburg!,319707,Kat,Brooklyn,Williamsburg,40.71077,-73.95159,Private room,49,7,0,,,1,37 +23684655,Comfy and Spacious Oasis in Artsy Neighborhood,10964365,Ermina,Queens,Ridgewood,40.70741,-73.91421,Private room,55,3,13,2019-05-25,0.82,1,83 +23684864,Fort Greene 3 bedroom duplex apartment,13788158,Amir,Brooklyn,Fort Greene,40.69392,-73.97114,Entire home/apt,250,3,37,2019-06-23,2.39,2,140 +23684973,"Gramercy Park. Private, on the park",7201216,Emmanuel,Manhattan,Gramercy,40.7368,-73.98518,Private room,110,1,69,2019-06-23,4.34,1,176 +23685538,1 bedroom in a 2 bedroom house,37286422,Abir,Queens,Briarwood,40.70739,-73.81327,Private room,45,2,18,2018-08-09,1.15,1,0 +23685999,1bedroom with private bathroom,22779744,April,Queens,East Elmhurst,40.77127,-73.87123,Private room,100,1,0,,,1,0 +23686606,Huge 1BR Wes Anderson Style Manhattan Apartment,4810688,Kaiti,Manhattan,Harlem,40.8067,-73.95621,Entire home/apt,175,3,43,2019-06-23,2.89,1,37 +23687344,"Large Room in Brownstone, heart of historic Harlem",27046912,Tara & Carl,Manhattan,Harlem,40.80554,-73.95586,Private room,81,4,41,2019-07-03,2.56,2,28 +23690062,Beautiful Shared Apt in West Midtown,175180318,Gúney,Manhattan,Hell's Kitchen,40.76502,-73.98702,Shared room,75,1,59,2019-06-23,3.64,6,174 +23691189,"Bright cozy room near Subway (M, J, Z, G trains)",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69475,-73.9405,Shared room,37,30,3,2019-01-13,0.21,10,342 +23691588,Spacious shared room in modern Bed-Stuy,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69312,-73.94073,Shared room,32,31,4,2019-03-16,0.28,10,341 +23692933,Luxury Townhouse w Balcony in West Village / Soho,170534355,Gabriella,Manhattan,West Village,40.72884,-74.00285,Entire home/apt,200,5,54,2019-06-02,3.34,1,242 +23694603,"Lovely, sunny apt in Williamsburg close to L",1006421,Susana,Brooklyn,Williamsburg,40.71432,-73.94751,Entire home/apt,120,14,2,2018-07-21,0.16,1,177 +23696307,"Lovely 2 bdr loft in Clinton Hill, Brooklyn",3464870,Nina,Brooklyn,Bedford-Stuyvesant,40.69219,-73.95851,Entire home/apt,150,3,11,2019-06-09,0.80,1,2 +23696695,Large and bright private space in shared house!,10440477,Anne-Katrin,Brooklyn,Bedford-Stuyvesant,40.68486,-73.93822,Private room,70,1,2,2019-06-09,0.15,2,0 +23698480,Compact & Cozy Greenpoint Room,5022499,Bryan,Brooklyn,Greenpoint,40.72407,-73.94762,Private room,40,1,0,,,1,0 +23700333,Private room only 1 min from Empire state Building,18882408,Rina,Manhattan,Midtown,40.74995,-73.98602,Private room,108,3,7,2019-04-28,0.44,1,0 +23700385,Two bedroom near the Cloisters,8335684,Mary,Manhattan,Inwood,40.86302,-73.92982,Entire home/apt,91,1,2,2018-04-01,0.13,3,0 +23702051,Private Bedroom in Greenpoint,1327095,Kamilla,Brooklyn,Greenpoint,40.73343,-73.95282,Private room,140,2,0,,,1,0 +23702074,Sonder | 180 Water | Lovely 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70738,-74.00493,Entire home/apt,212,29,0,,,96,332 +23702317,The Greenland In Harlem NYC,177562935,Virginia,Manhattan,Harlem,40.81304,-73.9456,Private room,105,1,35,2019-06-30,3.04,2,60 +23702356,The Yellow CropTop in Harlem NYC,177562935,Virginia,Manhattan,Harlem,40.81274,-73.9455,Private room,147,1,3,2019-04-22,0.30,2,57 +23702442,Sonder | 180 Water | Delightful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70753,-74.00514,Entire home/apt,205,29,1,2018-05-04,0.07,96,338 +23702555,Cozy LES 1 Bedroom!,10434360,Stephen,Manhattan,Lower East Side,40.72003,-73.98588,Entire home/apt,92,2,12,2018-11-25,0.74,1,0 +23703345,Home Away From Home-2,147721837,Karen,Brooklyn,East New York,40.6663,-73.87448,Entire home/apt,139,3,25,2019-06-24,1.61,2,70 +23708317,Sunny and Spacious Artist's Haven,17125526,Elizabeth,Queens,Astoria,40.76119,-73.92379,Private room,100,2,1,2018-08-26,0.09,1,0 +23709593,SUNNY X-LARGE ROOM WITH RIVER VIEWS,128416096,Jennifer,Manhattan,Harlem,40.82165,-73.95593,Private room,55,5,1,2018-07-01,0.08,1,38 +23709995,Comfortable 1 Bedroom Gem in Chinatown / Lil Italy,153390633,Michelle,Manhattan,Chinatown,40.71735,-73.99956,Entire home/apt,80,1,73,2019-06-27,4.54,1,183 +23710983,Private light filled room in spacious apartment,5192686,Shani & Emily,Brooklyn,Prospect-Lefferts Gardens,40.65626,-73.9577,Private room,75,4,6,2019-01-01,0.39,2,0 +23712143,2e chambre pour 1 personne où couple,161081229,Ibrahim Maiga,Bronx,Morrisania,40.82434,-73.91377,Private room,40,2,80,2019-07-04,5.01,2,291 +23713359,Entire Apartment in super convenient location,1581733,Alfredo,Brooklyn,Williamsburg,40.7109,-73.95916,Entire home/apt,400,2,3,2018-11-23,0.21,2,0 +23713405,Sonder | 180 Water | Luxurious 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70805,-74.00581,Entire home/apt,205,29,2,2018-08-17,0.14,96,10 +23713463,Large Master Bedroom & Private Bath,42741722,Tanya,Manhattan,Harlem,40.82065,-73.95444,Private room,70,2,6,2018-04-06,0.37,2,0 +23713825,Private Room,145252418,Claudio,Manhattan,East Harlem,40.80386,-73.93618,Private room,80,1,47,2019-07-07,3.41,3,178 +23714194,Spacious Sunny Studio- heart of Lower East Side,15603100,Brooke,Manhattan,Lower East Side,40.71908,-73.98379,Entire home/apt,220,2,40,2019-05-13,2.51,1,1 +23714684,Sonder | 180 Water | Stunning 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70656,-74.00499,Entire home/apt,215,29,0,,,96,343 +23714854,Gorgeous Room in Downtown Designer Apartment,48911266,Tess,Manhattan,Two Bridges,40.71262,-73.99592,Private room,119,3,17,2019-05-15,1.31,2,86 +23714915,Grad Pad Oasis,177714844,Chuck,Brooklyn,Flatbush,40.64135,-73.96811,Private room,44,30,1,2018-03-23,0.06,1,0 +23715256,One Bedroom Apt with a terrace + view - Times Sq,4112404,Vero,Manhattan,Hell's Kitchen,40.76535,-73.99252,Entire home/apt,199,5,0,,,3,9 +23715974,Spacious & Sunny Central Park West Apartment,3635762,Daphne,Manhattan,Harlem,40.80389,-73.95712,Entire home/apt,190,5,0,,,1,0 +23716003,Private room in beautiful Brooklyn apartment,109874158,Zac,Brooklyn,Clinton Hill,40.69244,-73.96626,Private room,45,3,0,,,1,0 +23718065,Room for rent in a family house,177761074,Alexandra,Queens,Long Island City,40.75373,-73.91902,Private room,60,1,1,2019-06-30,1,1,326 +23719597,1 BR Near Union Square - a bridge to all boroughs,31665801,Harry,Manhattan,East Village,40.73294,-73.98847,Entire home/apt,178,3,40,2019-06-05,2.75,2,83 +23722695,Luxe Elegance in the <3 of Brooklyn,23818330,Emily,Brooklyn,Prospect Heights,40.67839,-73.96791,Entire home/apt,750,7,0,,,1,0 +23723855,Sunny Room in Townhouse near Central Park,28752891,Sarah,Manhattan,Upper West Side,40.79114,-73.9671,Private room,175,4,11,2019-06-27,0.77,2,63 +23723970,"Room w private bathroom, shower & patio",10331194,Lauren,Brooklyn,Bedford-Stuyvesant,40.68872,-73.92425,Private room,49,5,0,,,1,0 +23725946,Cozy Oasis is Clinton Hill.,13963575,Khorkhe,Brooklyn,Clinton Hill,40.69404,-73.96233,Entire home/apt,130,3,15,2019-06-23,1.06,1,41 +23727037,Brooklyn's Best Kept Secret,127345864,Charlene,Brooklyn,East Flatbush,40.64174,-73.93193,Entire home/apt,135,2,26,2019-07-03,2.21,4,29 +23727326,Spacious brand new apartment 2 bedrooms - 2bath,5832321,Kalani,Queens,Glendale,40.69589,-73.89572,Entire home/apt,100,2,57,2019-07-05,3.68,2,267 +23727923,2 Bedroom Apt Newly renovated-10 Min to Times SQ.,116067987,Kimberley,Queens,Astoria,40.75569,-73.92175,Entire home/apt,325,2,2,2019-07-03,2,2,365 +23728057,Luxurious Brooklyn Getaway - Two Bedroom Apartment,15681707,Joycelyn,Brooklyn,Crown Heights,40.67363,-73.91385,Entire home/apt,150,2,49,2019-06-29,3.31,3,210 +23728069,Marlborough Road Air BnB,83899060,Mel,Brooklyn,Flatbush,40.64448,-73.96397,Entire home/apt,100,4,20,2019-07-01,1.25,1,328 +23728251,Private Room in Big Classic Williamsburg Art Space,9223263,Eric,Brooklyn,Williamsburg,40.71665,-73.96269,Private room,45,3,3,2018-04-11,0.19,1,0 +23729632,"Sunny, clean & cozy room in Williamsburg",142248429,Mafer,Brooklyn,Williamsburg,40.71166,-73.95955,Private room,75,6,25,2019-07-03,1.79,1,84 +23729711,Quiet and Secluded Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79068,-73.94461,Private room,30,1,15,2018-04-30,0.94,3,0 +23733244,Bushwick Oasis,6106609,Florentino & Brian,Brooklyn,Bushwick,40.68965,-73.91648,Private room,130,2,30,2019-06-18,2.05,1,290 +23741304,Private master bed and bath in Astoria,59860568,Molly,Queens,Astoria,40.76708,-73.92315,Private room,75,7,0,,,1,0 +23741795,"Cozy, Eclectic Brooklyn Getaway",75469247,Chiara,Brooklyn,Crown Heights,40.67774,-73.95742,Entire home/apt,105,1,39,2019-06-24,2.44,1,38 +23742000,Spacious modern Apt-only 2feet from Subway!,50003794,Jennifer,Queens,Elmhurst,40.74177,-73.88445,Entire home/apt,75,1,31,2018-11-15,1.97,1,0 +23743988,"PRIVATE CLEAN APARTMENT, NEXT TO CENTRAL PARK!",85572162,Whitney,Manhattan,Upper West Side,40.7943,-73.967,Entire home/apt,150,3,42,2019-05-08,2.72,1,3 +23744530,Very Spacious 1BR with Park View,3447309,Mie,Manhattan,Harlem,40.80201,-73.95774,Entire home/apt,89,5,1,2018-12-09,0.14,2,7 +23744762,Large Yankee stadium Bronx bedroom in spacious apt,8159536,Genae,Bronx,Concourse Village,40.83086,-73.92025,Private room,57,1,6,2019-03-11,0.42,3,220 +23744773,Central Park West Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77706,-73.97788,Private room,800,1,0,,,4,269 +23745442,"COZY PRIVATE ROOM, FLUSHING QUEENS Big room",178059867,Kevin,Queens,Flushing,40.7561,-73.80622,Private room,50,1,63,2019-06-17,3.94,3,156 +23745732,*Prime East Village* Quiet & Spacious 2BR Flat,178062766,Andy,Manhattan,East Village,40.73114,-73.98869,Entire home/apt,325,5,44,2019-06-18,2.77,1,179 +23746579,"Spacious,sunny, artistic loft by the L train",124357,Alex,Brooklyn,Williamsburg,40.71603,-73.95432,Entire home/apt,300,1,70,2019-07-05,4.63,3,1 +23746801,Central Park Hotel,172544686,Vijay,Manhattan,Upper West Side,40.77606,-73.97803,Private room,219,1,0,,,4,269 +23747164,"Artsy NYC Apt & BACKYARD, 7 Minutes to Manhattan",83824521,Suzane,Queens,Long Island City,40.75815,-73.92893,Entire home/apt,150,4,41,2019-06-30,2.65,1,175 +23747567,"ARTIST APARTMENT, PERFECT LOCATION",1636933,Antonio,Manhattan,Hell's Kitchen,40.76027,-73.98831,Entire home/apt,99,30,55,2018-10-04,3.50,1,63 +23747870,Gjob,174838527,Weeks,Queens,Richmond Hill,40.69282,-73.82849,Shared room,100,1,0,,,1,0 +23747957,Modern Harlem Gem,36052067,Alex & Yoly,Manhattan,East Harlem,40.80185,-73.94515,Entire home/apt,250,2,17,2019-06-30,5.54,1,47 +23748179,Spacious formal apt mins from midtown or Columbia,6854910,Scott,Manhattan,Harlem,40.80849,-73.94244,Private room,150,7,0,,,1,0 +23748601,"Spacious Park View Parlor Floor, Artists Townhouse",477787,Juliette,Brooklyn,Bedford-Stuyvesant,40.68352,-73.92009,Entire home/apt,112,2,48,2019-05-26,3.04,1,0 +23749162,West Village Paradise - Large 1 bedroom,6989615,Emanuel,Manhattan,West Village,40.74069,-74.00546,Entire home/apt,175,3,18,2019-06-09,1.13,1,175 +23749862,Great Space Location Location Location,20447869,Burton,Manhattan,Kips Bay,40.74499,-73.97926,Private room,95,5,1,2018-03-19,0.06,2,0 +23750601,Charming & inviting Brooklyn Brownstone apartment,3605048,Julia,Brooklyn,Bedford-Stuyvesant,40.68052,-73.92952,Entire home/apt,100,2,25,2019-04-08,1.55,1,65 +23750623,Sonder | 180 Water | Grand 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70786,-74.00476,Entire home/apt,220,29,0,,,96,220 +23751205,Sonder | 180 Water | Bold 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70791,-74.00445,Entire home/apt,227,29,0,,,96,267 +23752247,Super sunny 1BR apartment in West Village,178123507,Cory,Manhattan,West Village,40.7328,-74.00306,Entire home/apt,280,3,9,2019-05-10,0.56,1,0 +23752922,Luxurious Townhouse in Williamsburg,6513281,Pascal-Louis,Brooklyn,Williamsburg,40.71339,-73.94873,Entire home/apt,750,5,2,2019-01-01,0.13,2,178 +23753607,Bright & spacious room in Brooklyn sanctuary,131829860,Anna,Brooklyn,East Flatbush,40.63621,-73.94968,Private room,55,3,1,2018-03-18,0.06,1,0 +23753775,Soho Studio In heart of Manhattan,2250865,Jacqueline,Manhattan,SoHo,40.72639,-74.00687,Entire home/apt,165,2,0,,,1,0 +23754446,1 bedroom apartment on West 34th street,76104209,Rated,Manhattan,Midtown,40.75015,-73.98651,Entire home/apt,200,30,0,,,33,365 +23754556,Studio on East 44th street and 2nd Ave,76104209,Rated,Manhattan,Midtown,40.75132,-73.96926,Entire home/apt,159,30,0,,,33,364 +23754635,1 bedroom apartment on Columbus Avenue,76104209,Rated,Manhattan,Upper West Side,40.79446,-73.96655,Entire home/apt,200,30,0,,,33,364 +23755278,SPACIOUS HARLEM APT,105825171,Benjamin,Manhattan,Harlem,40.82383,-73.94037,Private room,93,1,2,2018-04-01,0.13,1,0 +23756498,Private and Cozy in the Heart of Flatbush Avenue,74033494,Jude,Brooklyn,Flatbush,40.64296,-73.95238,Entire home/apt,125,2,31,2019-06-25,2.93,1,64 +23758532,WEST BROADWAY RESIDENCE,6059542,Marko,Manhattan,Harlem,40.82554,-73.9535,Private room,100,5,0,,,1,364 +23760168,"HUGE *SUITE*, with EN SUITE, AC/Heat",30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68609,-73.90733,Entire home/apt,105,2,80,2019-07-01,5.08,2,77 +23760365,"Floor-Thru, One BR + Loft -- 23 Mins to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.68271,-73.95141,Entire home/apt,99,30,0,,,3,341 +23761645,2BR Wakefield Bronx 20 min NYC 10 min Westchester,16851857,Paul,Bronx,Wakefield,40.89691,-73.85121,Entire home/apt,69,21,11,2019-02-27,0.75,4,343 +23761707,Large Private Room. Safe area. Near 4 and D trains,178229322,Vas,Bronx,Concourse Village,40.83218,-73.91951,Private room,47,5,61,2019-05-15,3.80,1,130 +23762153,Private room in Hamilton Heights,120010130,Katie,Manhattan,Harlem,40.82557,-73.94927,Private room,50,7,2,2018-06-09,0.13,1,358 +23762605,"Luxury Bedroom in a Cozy, Relaxed NYC Atmosphere!",109551284,Saphira,Manhattan,Upper West Side,40.80172,-73.96177,Private room,120,5,9,2019-04-30,0.62,2,0 +23763165,Sonder | 180 Water | Bright 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70659,-74.00426,Entire home/apt,210,29,0,,,96,365 +23763320,Spacious Brooklyn Brownstone with Backyard & Cat,1181486,Kurt,Brooklyn,Bushwick,40.69569,-73.90733,Entire home/apt,84,9,1,2018-03-13,0.06,1,0 +23763367,Astoria Prime,178237936,Jay,Queens,Astoria,40.77451,-73.92712,Entire home/apt,89,2,68,2019-06-29,4.33,1,64 +23763873,Private room in prime Greenpoint-Steps to G train!,178244787,Miranda,Brooklyn,Greenpoint,40.72254,-73.95084,Private room,90,1,13,2018-11-16,0.87,2,0 +23764185,Sonder | 180 Water | Sleek 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70747,-74.00436,Entire home/apt,222,29,0,,,96,241 +23764303,Charming Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78315,-73.94768,Entire home/apt,100,30,0,,,8,320 +23764791,Sonder | 180 Water | Beautiful 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70741,-74.00656,Entire home/apt,227,29,0,,,96,322 +23765629,Luxury appartement!,17583134,Déborah,Brooklyn,Williamsburg,40.71017,-73.941,Entire home/apt,220,3,9,2018-12-29,0.59,1,0 +23765706,Beautiful Large 1br in the middle of Manhattan,25939370,Petar,Manhattan,Chelsea,40.75068,-73.99811,Entire home/apt,172,30,6,2019-03-31,0.50,1,195 +23765937,Huge Williamsburg Loft w/ kids friendly amenities.,176051903,Emerson,Brooklyn,Williamsburg,40.71832,-73.96354,Entire home/apt,550,5,3,2019-07-05,0.28,1,38 +23766156,TheBlueHouse. EntireHome. BabyGrand. FreeParking.,178266385,Megan,Brooklyn,Cypress Hills,40.68012,-73.89338,Entire home/apt,800,1,3,2018-08-15,0.21,1,362 +23766986,Chic & Modern 2 Bedroom On Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.7813,-73.94675,Entire home/apt,162,30,0,,,8,327 +23768377,Forest Hills-Easy Parking-Easy commute to midtown!,97262966,John,Queens,Forest Hills,40.71263,-73.85372,Entire home/apt,175,2,9,2018-12-27,0.66,2,0 +23768711,"Flushing 旅游,探亲,留学生首选 private bedrm, bath, livingrm",161899037,Tony,Queens,Flushing,40.75665,-73.83317,Entire home/apt,149,2,28,2019-06-28,1.81,7,63 +23769218,Better than hotel whole apt next 2 MAIN ST Flushin,161899037,Tony,Queens,Flushing,40.75611,-73.83271,Entire home/apt,149,2,28,2019-06-30,1.78,7,74 +23771352,COSY SPACIOUS LOFT IN EAST WILLIAMSBURG,25705033,Agathe,Brooklyn,Williamsburg,40.70604,-73.93802,Entire home/apt,190,2,1,2018-04-23,0.07,1,0 +23771486,STYLISH / HUGE 5 BEDROOM APT ON LOWER EAST SIDE,12089291,Paul,Manhattan,Lower East Side,40.7234,-73.99032,Entire home/apt,600,2,1,2018-05-20,0.07,1,0 +23772252,"Large, Sunny Williamsburg Apt - Private Room :)",18825679,Dasha,Brooklyn,Williamsburg,40.71586,-73.94044,Private room,96,2,9,2019-01-02,0.77,1,0 +23772767,First floor #6,151084261,Angie,Brooklyn,Williamsburg,40.71865,-73.94951,Private room,125,30,13,2019-05-27,0.86,6,255 +23772926,"Spacious studio, centrally located to all of NYC",20333472,Mitchell,Manhattan,Upper East Side,40.76521,-73.96491,Entire home/apt,166,2,2,2018-04-20,0.13,1,0 +23773431,Comfortable home in the heart of it all,22288459,Alexi,Brooklyn,Bedford-Stuyvesant,40.69389,-73.93472,Private room,45,1,5,2019-03-24,0.33,2,0 +23775392,"Big, Sunny 1 Bed- Roof Top Access-Central Location",83929557,Jonathon André,Brooklyn,Prospect Heights,40.67657,-73.96465,Private room,75,2,7,2019-06-23,4.20,1,17 +23779181,Sunny Bedroom in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79232,-73.94634,Private room,30,4,5,2019-04-29,0.33,3,0 +23780896,Delnewyorkroom,45845050,Delcio,Queens,Jackson Heights,40.75204,-73.88902,Private room,70,5,3,2018-04-20,0.19,1,189 +23781939,Upper West Side 2 Bedroom,22866437,Eliana,Manhattan,Upper West Side,40.77907,-73.97887,Entire home/apt,300,2,2,2018-05-29,0.13,2,0 +23784498,Entire 2 bedroom Brownstone apt - Bedstuy Brooklyn,1302843,Rebeca,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93663,Entire home/apt,200,3,28,2019-06-14,1.78,1,25 +23784779,Downtown private room (Queen Bed) + BREAKFAST,19909972,Jayu,Manhattan,Two Bridges,40.71179,-73.99848,Private room,160,2,129,2019-07-06,8.27,1,3 +23785875,Large Manhattan Duplex 30 mins to Times Square!,137916804,Asia,Manhattan,Washington Heights,40.85395,-73.93335,Entire home/apt,300,4,31,2019-07-01,2.16,1,286 +23788475,Clean Room right by Columbus Circle / Central Park,26921064,Ken,Manhattan,Hell's Kitchen,40.76601,-73.98651,Private room,90,1,70,2019-06-13,4.46,2,21 +23788708,"Location! Location! Location! Quiet and Cozy, 3 bd",154965091,Joe,Manhattan,Hell's Kitchen,40.76934,-73.98782,Entire home/apt,375,2,22,2019-06-19,1.65,4,77 +23789466,Cozy Mid Century Modern Studio 15 min to Manhattan,178507107,Alyssa,Brooklyn,Bushwick,40.70484,-73.92117,Entire home/apt,100,2,7,2018-04-29,0.45,1,0 +23789480,Queen Charlotte’s in B’klyn (accommodation for 1),37401126,Leah,Brooklyn,East Flatbush,40.64016,-73.94057,Private room,50,2,35,2019-05-27,2.22,4,296 +23790556,A private bedroom in the Heart of the East Village,178520748,Linnea,Manhattan,East Village,40.73099,-73.98477,Private room,89,1,114,2019-06-28,7.97,1,38 +23790744,Park-lovers Paradise in Central Manhattan,113094141,Susannah,Manhattan,Harlem,40.80442,-73.95629,Private room,60,1,77,2019-07-07,4.97,1,132 +23791349,Modern style apartment in the heart of Bushwick,31427834,Kerelle,Brooklyn,Bushwick,40.68868,-73.90595,Entire home/apt,100,1,13,2019-02-11,1.16,1,34 +23792606,Newest private room / 15 mins to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72161,-73.94115,Private room,65,30,3,2019-04-02,0.19,10,341 +23792629,(AB) 2 rooms - 4 ppl private and sharing bath,110965771,Wilson,Queens,Flushing,40.77241,-73.8238,Private room,100,1,0,,,7,71 +23792656,G&G Brooklyn Palace,176001804,Garcia,Brooklyn,Prospect-Lefferts Gardens,40.65924,-73.94959,Entire home/apt,125,2,68,2019-06-29,4.45,1,290 +23792770,(BC) 2 rooms 4 ppl 1 sharing bath,110965771,Wilson,Queens,Flushing,40.77337,-73.82501,Private room,100,2,0,,,7,0 +23797329,Newly & Comfy Shared room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72104,-73.93985,Shared room,35,30,3,2018-08-01,0.19,10,365 +23799904,Bright and Beautiful 1BR in Downtown Flushing,5962328,Alan,Queens,Flushing,40.76035,-73.82181,Entire home/apt,85,30,3,2019-06-30,0.20,15,256 +23803334,Cozy private room in the Heart of Williamsurg!,16158622,Sarah,Brooklyn,Williamsburg,40.71725,-73.95704,Private room,86,2,34,2019-06-23,2.34,1,156 +23803836,Blue House on Martense,55339775,Jon,Brooklyn,East Flatbush,40.65202,-73.95104,Entire home/apt,30,4,0,,,1,0 +23804690,One Central Park,40381599,Elite Destination Homes,Manhattan,Upper West Side,40.76986,-73.98197,Private room,600,1,0,,,1,199 +23804783,"Zen Private Bedroom ~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83093,-73.94724,Private room,99,1,10,2019-01-04,0.96,6,31 +23805007,"Large, sunny, private uptown apartment!",4335164,Eva,Manhattan,Washington Heights,40.83963,-73.93512,Entire home/apt,50,1,12,2018-09-29,0.75,1,0 +23807257,Historic Brownstone - Full Floor - Central Harlem,8662157,Chance,Manhattan,Harlem,40.80551,-73.94905,Entire home/apt,270,3,23,2019-06-22,1.56,1,17 +23807600,A Gem close to every Borough in NYC!!,178665352,Andrea,Queens,Jackson Heights,40.75122,-73.87977,Entire home/apt,195,3,23,2019-06-17,1.49,1,302 +23807689,Il Ponte *LES* Suite - free street Parking & Wifi,116839989,Ez,Manhattan,Lower East Side,40.72051,-73.98357,Entire home/apt,110,30,54,2019-05-27,3.40,5,193 +23807788,"Snug & Cozy 1 Bedroom -Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.82961,-73.9474,Private room,80,1,11,2018-12-08,0.92,6,0 +23808650,Chic 2 Bedroom in East Harlem,178675800,Michael,Manhattan,East Harlem,40.79504,-73.93495,Private room,85,6,2,2018-05-11,0.14,1,0 +23808715,Perfect Spot For Your Next NYC Visit,26502283,Nick,Manhattan,East Village,40.7211,-73.97966,Entire home/apt,125,1,14,2018-05-28,0.89,1,0 +23808895,Friendly & nice place for family,178654047,Ksenia,Brooklyn,Williamsburg,40.71297,-73.94242,Entire home/apt,190,1,0,,,1,53 +23809758,Modern Home with Exposed Brick on a Quiet Street,21012470,David,Brooklyn,Bushwick,40.70329,-73.92213,Private room,75,1,20,2019-06-27,1.27,1,89 +23809978,2 bedrooms in a Red Hook Brooklyn home!,17129810,Jeffrey,Brooklyn,Columbia St,40.68183,-74.00369,Private room,55,2,7,2019-06-28,0.53,5,188 +23810398,Bed Stuy Brownstone 50 steps to the Train :),178696800,Felisha,Brooklyn,Crown Heights,40.67825,-73.94748,Private room,35,1,45,2019-07-02,2.83,1,28 +23810745,Sunny Room w/ private bath,62127615,Sophia,Brooklyn,Greenpoint,40.72858,-73.95816,Private room,48,7,2,2018-04-30,0.14,1,0 +23811416,★Minimalist Spacious Bright sunny room in Midtown★,4427689,Nour,Manhattan,Hell's Kitchen,40.76318,-73.98838,Private room,129,5,94,2019-06-23,5.95,2,110 +23811541,"Luxury Apartment close to Time Square, NYC",23255533,Aravind,Manhattan,Theater District,40.76155,-73.98619,Private room,139,3,10,2019-05-27,1.24,1,189 +23812583,★ Clean/Trendy/Sunny room ★ in the center of NYC,4427689,Nour,Manhattan,Hell's Kitchen,40.76489,-73.98822,Private room,129,5,97,2019-06-19,6.11,2,114 +23818526,Luxury Soho Loft,178743973,Vassko,Manhattan,SoHo,40.71989,-74.00113,Entire home/apt,400,30,0,,,1,90 +23819961,Tree Lined Block in Celebs Fave Neighborhood!,791011,D & J,Manhattan,West Village,40.73817,-74.00768,Entire home/apt,240,2,0,,,1,81 +23820164,The Spark Spot,3654624,Jasmaine,Brooklyn,Bedford-Stuyvesant,40.68089,-73.91112,Entire home/apt,85,5,28,2019-06-25,2.28,1,32 +23820465,Suite Dante-15 min Central Park+free street park,116839989,Ez,Queens,Astoria,40.75941,-73.92498,Entire home/apt,105,30,25,2019-06-08,2.54,5,235 +23820538,Large 3 Bedroom Loft in Heart of Williamsburg,28373054,Nadira,Brooklyn,Williamsburg,40.71201,-73.95882,Entire home/apt,600,3,14,2019-06-17,0.98,1,167 +23820909,Charming Bright Apartment Minutes From Manhattan,178636681,Kris,Brooklyn,Williamsburg,40.71097,-73.95895,Entire home/apt,110,3,11,2019-06-04,1.05,1,90 +23821848,"Bright, super spacious 1.5 bedroom apt",14934881,Quentin,Brooklyn,Williamsburg,40.72156,-73.96043,Entire home/apt,280,6,6,2019-01-01,0.39,1,11 +23822397,Sunny room in Bushwick loft with private balcony,2793254,Johnny,Brooklyn,Bushwick,40.70336,-73.91998,Private room,75,3,25,2019-07-01,1.62,3,167 +23822436,Beautiful room in renovated apt; steps from subway,7138847,Chelsea,Brooklyn,Bedford-Stuyvesant,40.67996,-73.94085,Private room,50,2,1,2018-04-16,0.07,3,0 +23823959,Tidy Room In Convenient Brooklyn Apartment,173230953,Rick,Brooklyn,Crown Heights,40.67327,-73.94403,Private room,40,2,7,2018-05-22,0.46,1,0 +23826739,Lovely Room!,34404232,Holly,Queens,Astoria,40.76143,-73.92122,Private room,60,1,24,2018-08-19,1.50,1,0 +23827761,Large 2BR in downtown Manhattan,15784251,David,Manhattan,Little Italy,40.71907,-73.99698,Entire home/apt,375,3,7,2018-11-24,0.46,1,0 +23827905,Central Park View-Free Museum Tickets-Private Room,101438864,Omar,Manhattan,Upper West Side,40.79368,-73.96373,Private room,30,1,89,2019-06-27,6.03,2,94 +23837148,Cozy and Sunny Space near Prospect Park,175507083,Brette,Brooklyn,Prospect-Lefferts Gardens,40.66114,-73.9498,Shared room,45,2,2,2018-05-22,0.13,1,35 +23837898,The Sunset Affair,178986313,Aj,Brooklyn,Bedford-Stuyvesant,40.69174,-73.95921,Entire home/apt,100,1,91,2019-07-07,5.80,1,79 +23838063,Spacious getaway room in the heart of Bushwick,149073048,Kat,Brooklyn,Bushwick,40.69837,-73.93045,Private room,67,5,34,2019-06-30,2.31,1,102 +23838400,Spacious East village apartment,72142281,Zander,Manhattan,East Village,40.7293,-73.98488,Entire home/apt,200,1,29,2019-07-01,1.87,1,176 +23838734,Bedroom in Harlem near Central Park,94219511,Gilles,Manhattan,Harlem,40.80096,-73.9542,Private room,65,6,12,2019-07-01,0.75,2,8 +23839013,New 2-Bedrooms on Grymes Hill,148130073,Sebastian,Staten Island,Grymes Hill,40.61758,-74.09112,Entire home/apt,110,2,69,2019-06-25,4.47,1,19 +23839200,"Friendly, unpretentious, close to the subway",178303634,Gustavo,Brooklyn,South Slope,40.66501,-73.98992,Private room,49,6,48,2019-06-20,3.13,2,5 +23839890,Beautiful huge room with a lovely Bay Window,151124394,Annie,Manhattan,Harlem,40.8282,-73.94973,Private room,39,30,2,2019-01-01,0.16,1,0 +23839939,"*Location, Location | Chelsea | Meat Packing*",70307702,Sam,Manhattan,Chelsea,40.73959,-74.00105,Entire home/apt,199,3,36,2019-07-02,2.44,1,293 +23840030,"Cozy, Convenient 10 min from Manhattan !",179010070,Antonia,Queens,Woodside,40.75608,-73.90535,Private room,65,3,23,2019-05-22,1.49,1,354 +23840461,Elegant room in Harlem,63417081,Devon,Manhattan,Harlem,40.82381,-73.94582,Private room,45,30,1,2018-08-31,0.10,8,318 +23841282,2 BR APT in the heart of Hell's Kitchen - Times SQ,13873488,Jesse,Manhattan,Hell's Kitchen,40.76277,-73.99321,Entire home/apt,196,3,7,2018-05-24,0.46,1,0 +23842204,Cozy Brooklyn Oasis 20min to Manhattan(for 1 or 2),38615080,Beth,Brooklyn,Crown Heights,40.67227,-73.95246,Private room,65,3,24,2019-07-06,4.59,1,9 +23842721,Wendy's New York Homestay,12387523,Wendy,Brooklyn,Bedford-Stuyvesant,40.68033,-73.94248,Private room,47,2,27,2019-06-26,2.05,1,272 +23844034,Marce’s Retreat- Perfection in NYC!,2478424,L.Marce,Queens,Elmhurst,40.73841,-73.88276,Entire home/apt,110,4,17,2019-06-01,1.54,1,94 +23849343,Apartment in Midtown East,90534522,Lisa,Manhattan,Murray Hill,40.74792,-73.97979,Entire home/apt,240,3,6,2019-05-26,0.40,1,0 +23851659,Cozy bedroom in the heart of South Harlem,4113106,Frederic,Manhattan,Harlem,40.80397,-73.95615,Private room,45,1,60,2019-06-30,3.85,2,195 +23852303,A house in Flatbush.,5091423,Jamie,Brooklyn,East Flatbush,40.64747,-73.95189,Entire home/apt,225,3,1,2018-04-04,0.06,1,26 +23852718,"Sunlit Williamsburg Apartment, Prime Location",6527776,Alex,Brooklyn,Williamsburg,40.71549,-73.95579,Entire home/apt,200,2,13,2019-05-05,1.01,1,3 +23852841,Sun-filled room in a lovely house,9574706,Luis,Brooklyn,Carroll Gardens,40.67873,-73.99564,Private room,45,5,2,2018-10-03,0.14,1,0 +23855079,1 Bdrm 1.5 Bath Midtown Condo,29100568,Deborah,Manhattan,Theater District,40.76185,-73.9816,Entire home/apt,171,20,1,2018-06-07,0.08,4,0 +23855466,Cheap Rental in Manhattan Downtown!,179187831,Nadia,Manhattan,Chelsea,40.75031,-73.99336,Entire home/apt,70,1,0,,,1,364 +23855867,HUGE 1 bedroom in Manhattan,173386569,J,Manhattan,Stuyvesant Town,40.73101,-73.97347,Entire home/apt,170,1,17,2019-06-16,1.12,2,0 +23856563,Sun-filled Artist Home 1BR in convenient L.I.C !,25497297,Megan,Queens,Long Island City,40.74643,-73.94693,Entire home/apt,125,2,10,2019-05-12,0.84,1,8 +23856708,Artist friendly: entire apt near Prospect Park,27703207,Joey,Brooklyn,Prospect-Lefferts Gardens,40.65844,-73.94832,Entire home/apt,45,5,3,2018-07-30,0.19,1,0 +23857107,Spacious 1 Bedroom in TriBeCa,16308520,Ryan,Manhattan,Tribeca,40.71359,-74.01049,Entire home/apt,150,3,8,2019-06-11,0.51,1,66 +23857159,1Br available in luxury building Park Slope,14476858,Kola,Brooklyn,Sunset Park,40.66307,-73.99482,Private room,106,2,1,2018-03-19,0.06,1,0 +23857515,1 Private Bedroom in Beautiful Park Slope Apt.,64060155,Aaron,Brooklyn,South Slope,40.66711,-73.98341,Private room,80,10,0,,,1,0 +23857631,Very convinced new room for 2 at affordable price,140057330,Joey,Queens,Ridgewood,40.69651,-73.9057,Private room,50,1,37,2019-06-24,2.39,7,45 +23857837,Renovated room perfect for 2 guests exploring NYC,140057330,Joey,Queens,Ridgewood,40.69729,-73.90571,Private room,50,1,22,2019-06-24,1.53,7,59 +23858270,Renovated Studio Apt! Walk to the Subway & Ferry!,18768995,MJ & Al,Brooklyn,Bay Ridge,40.62989,-74.02345,Private room,90,3,34,2019-07-08,2.24,1,231 +23858353,A lovely taste of Brooklyn with this small bedroom,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68907,-73.92806,Private room,60,2,42,2019-07-02,2.80,5,324 +23858901,Spacious Designer Furnished 2BR in E Williamsburg,176246555,Marina,Brooklyn,Williamsburg,40.70743,-73.9416,Entire home/apt,154,3,5,2019-06-07,0.35,1,80 +23859194,Old School New York,179233527,David,Manhattan,Upper West Side,40.79806,-73.97416,Private room,80,2,22,2019-06-24,1.44,1,0 +23859280,Travelers Cozy New York Getaway,9808458,Zain,Bronx,Kingsbridge,40.87257,-73.9009,Private room,65,1,2,2018-10-19,0.21,4,364 +23859490,"Comfy , Cozy, New York Getaway for Travelers",9808458,Zain,Bronx,Kingsbridge,40.87287,-73.90157,Private room,65,2,0,,,4,365 +23859834,Oasis in The East Village,11274299,Andrew,Manhattan,East Village,40.72603,-73.98369,Private room,149,3,1,2018-03-25,0.06,2,0 +23860039,Sunny room in Williamsburg,37626695,Celia,Brooklyn,Williamsburg,40.71113,-73.95675,Private room,66,10,1,2018-06-22,0.08,1,0 +23860047,Beautiful 4 Bedroom Apartment,27615247,Judy,Brooklyn,Midwood,40.62301,-73.96253,Entire home/apt,150,14,3,2018-07-24,0.24,3,3 +23860219,Designer's Beautiful 2BR Apartment in NOLITA/SOHO,152228055,Ilo And Richard,Manhattan,Nolita,40.72233,-73.99574,Entire home/apt,2990,2,69,2019-06-29,4.36,1,237 +23861367,"Love Nest, Just for 2",21721684,S.,Brooklyn,Bushwick,40.68469,-73.90761,Entire home/apt,69,3,64,2019-06-23,4.06,2,219 +23861801,2 Sofa-beds in Livingroom- Check in: 5:45pm - 11pm,81510823,Ndeye Aissatou,Brooklyn,Bedford-Stuyvesant,40.68829,-73.93184,Shared room,30,1,99,2019-06-30,6.31,1,67 +23868986,Beautiful room . Williamsburg / Greenpoint,178543960,Sergii,Brooklyn,Greenpoint,40.72177,-73.93995,Private room,65,30,2,2018-10-03,0.13,10,341 +23869761,Cozy Bedroom with Queen Size Bed,29326392,Ben,Brooklyn,Bushwick,40.69941,-73.93633,Private room,31,2,1,2018-03-27,0.06,1,0 +23870093,Private Sunny Apt In Beautiful Brooklyn Brownstone,6570552,Hugo,Brooklyn,Bedford-Stuyvesant,40.68424,-73.93851,Entire home/apt,120,5,2,2018-09-25,0.20,1,301 +23870798,Genuine Lower East Side 1BR apt,52443525,Jose,Manhattan,Lower East Side,40.71928,-73.98739,Entire home/apt,140,2,23,2019-06-22,1.51,1,0 +23871290,"Bright, massive live/work space in Park Slope",3563802,Katy,Brooklyn,Park Slope,40.66799,-73.98162,Private room,55,2,2,2019-04-14,0.13,1,0 +23872299,"LARGE COZY PRIVATE ROOM, FLUSHING QUEENS Cozy room",178059867,Kevin,Queens,Flushing,40.75619,-73.80482,Private room,50,1,62,2019-06-07,3.90,3,172 +23873057,Sunny and Spacious East Williamsburg Room,13754273,Erin,Brooklyn,Williamsburg,40.71999,-73.9417,Private room,60,2,6,2018-07-31,0.45,1,0 +23874025,Sonder | 116 John | Bright 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70791,-74.00545,Entire home/apt,179,29,2,2019-02-26,0.36,96,333 +23874196,Comfortable and cozy room in the heart of Astoria.,179366206,Nevine,Queens,Astoria,40.76021,-73.9167,Private room,45,30,5,2019-05-24,0.56,1,101 +23874777,Sonder | 116 John | Lively 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70852,-74.0062,Entire home/apt,187,29,1,2019-05-28,0.71,96,332 +23875454,Great Room in Great apt!,179376942,Sebastian,Manhattan,Washington Heights,40.84591,-73.94059,Private room,50,2,2,2018-05-04,0.14,1,0 +23875602,Sonder | 116 John | Intimate 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70648,-74.00499,Entire home/apt,179,29,0,,,96,333 +23875745,Williamsburg large 2 Bedroom / 2 Bathroom,10951481,Ann,Brooklyn,Williamsburg,40.71312,-73.9634,Entire home/apt,249,2,62,2019-05-06,3.94,5,32 +23876337,Sonder | 116 John | Warm 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70831,-74.00619,Entire home/apt,182,29,2,2019-01-01,0.21,96,259 +23876348,"Cozy Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67945,-73.90842,Private room,40,2,20,2019-04-28,1.28,3,3 +23876355,Clean an comfortable apartment,16597520,Eliana,Queens,Astoria,40.76641,-73.9193,Private room,60,3,6,2019-04-11,0.42,1,156 +23876927,BEST LOCATION IN NY,146326976,Ana Y Hugo,Queens,Astoria,40.7577,-73.91639,Private room,50,3,33,2019-06-18,2.22,1,282 +23877625,Bright 2BR Private Backyard 25 min to Manhattan!,179397918,Eva,Brooklyn,Bedford-Stuyvesant,40.68311,-73.93124,Entire home/apt,175,2,60,2019-06-26,3.88,1,297 +23877781,"Modern Comfort in Carroll Gardens, Brooklyn",8610441,Bernadette,Brooklyn,Gowanus,40.67705,-73.99655,Entire home/apt,195,2,60,2019-06-30,3.87,1,258 +23879156,"Best Room for 3, Only 1 Block From The Subway!",179387087,John,Brooklyn,Bedford-Stuyvesant,40.67936,-73.9072,Private room,40,2,41,2019-04-28,2.59,3,0 +23879304,Beautiful room,179416315,Elizabeth,Bronx,University Heights,40.85989,-73.91189,Private room,60,2,7,2019-01-01,0.46,2,156 +23881522,Local hosts. Luxurious room few blocks to Q train,179442361,Derek,Brooklyn,Midwood,40.61962,-73.96262,Private room,75,3,5,2018-09-26,0.36,1,67 +23882152,Private apartment in basement of private home,2375125,Nicole,Brooklyn,East Flatbush,40.63297,-73.93781,Private room,40,2,1,2018-05-20,0.07,1,0 +23882240,Large Studio in South Williamsburg,10132406,Michael,Brooklyn,Williamsburg,40.71015,-73.96591,Entire home/apt,150,3,2,2018-08-27,0.14,1,0 +23884206,Clean Apt right by Columbus Circle / Central Park,26921064,Ken,Manhattan,Hell's Kitchen,40.76665,-73.98568,Entire home/apt,115,2,0,,,2,0 +23890947,"106th and Amsterdam open, spacious apartment!",24033115,Jessica,Manhattan,Upper West Side,40.802,-73.96605,Private room,72,1,5,2019-06-30,0.41,1,32 +23892803,Beautifully Renovated Brownstone Apartment,23839989,Carlos,Brooklyn,Bedford-Stuyvesant,40.68215,-73.93644,Entire home/apt,95,4,4,2018-12-30,0.31,1,9 +23893916,Comfortable 2-Room Studio Apt with Backyard,8685999,Michele & Lucien,Brooklyn,Bedford-Stuyvesant,40.68229,-73.93261,Entire home/apt,100,3,48,2019-05-24,3.08,1,0 +23894317,Cute Private Bedroom in Brooklyn,479432,Kristal,Brooklyn,Bedford-Stuyvesant,40.67638,-73.91106,Private room,75,1,38,2019-06-09,2.61,1,0 +23894403,Chic Bohemian 1 br in the heart of West Village,15356183,Daniel,Manhattan,West Village,40.73417,-74.00604,Entire home/apt,250,2,5,2019-05-27,0.63,1,0 +23894929,Downtown Loft Location w/ Skyline View & Studio,3201625,J,Manhattan,Chinatown,40.71403,-73.99076,Entire home/apt,1000,1,2,2018-12-18,0.25,1,365 +23895775,Bright + Spacious apartment 3 blocks from the L,29099312,Erin,Brooklyn,Bushwick,40.69653,-73.9125,Private room,60,1,3,2018-07-30,0.22,1,0 +23896110,Charming one bedroom / West village,175315624,Shelby,Manhattan,West Village,40.7317,-74.00708,Entire home/apt,163,7,7,2018-07-18,0.48,1,0 +23897524,Small room in Midtown West,6438952,Sam,Manhattan,Hell's Kitchen,40.76191,-73.99199,Private room,75,7,0,,,1,0 +23898007,Urban Boudoir Available with Back Yard Access,179594570,Elise,Brooklyn,Bushwick,40.69309,-73.924,Private room,48,4,1,2018-04-19,0.07,1,0 +23898727,Beautiful 1 bdrm in 3 bdrm (10 mins to Manhattah),2776635,Manisha,Brooklyn,Gowanus,40.68208,-73.98093,Private room,100,7,0,,,1,0 +23899015,Beautiful Brooklyn Brownstone!,23422026,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68998,-73.93716,Entire home/apt,125,3,0,,,1,125 +23900717,Wyndham Midtown 45 (2 Bedroom Presidential) 9A,100238132,Michael,Manhattan,Midtown,40.75181,-73.97137,Entire home/apt,339,3,34,2018-12-14,2.26,12,0 +23900919,Welcoming and Beautiful bedroom in Brooklyn.,20134221,Jon,Brooklyn,Flatbush,40.6478,-73.96831,Private room,40,3,10,2019-05-30,0.63,1,0 +23900940,Room #1 With Private Shower,179619904,Gregorio,Queens,South Ozone Park,40.67581,-73.82304,Private room,60,1,72,2019-06-24,4.64,3,175 +23901030,Wyndham Midtown 45 (2 Bedroom Presidential) 5A,100238132,Michael,Manhattan,Midtown,40.75316,-73.97163,Entire home/apt,339,3,34,2019-04-19,2.27,12,0 +23901118,"Room #3 Bright, Quiet, Near Race-track and Casino",179619904,Gregorio,Queens,South Ozone Park,40.6736,-73.82092,Private room,65,2,16,2019-06-24,1.15,3,180 +23901252,Wyndham Midtown 45 (1 Bedroom Presidential) 3A,100238132,Michael,Manhattan,Midtown,40.75307,-73.97162,Entire home/apt,269,3,5,2019-01-02,0.35,12,0 +23901420,Wyndham Midtown 45 (1 Bedroom Presidential) 2A,100238132,Michael,Manhattan,Midtown,40.75226,-73.97356,Entire home/apt,269,3,5,2019-05-03,0.36,12,0 +23901526,Wyndham Midtown 45 (1 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75293,-73.97315,Entire home/apt,269,3,5,2019-01-01,0.38,12,0 +23901908,The Madison - A One Bedroom Apartment,179634496,Cristian,Manhattan,East Harlem,40.79983,-73.94481,Entire home/apt,300,2,0,,,1,0 +23901975,BrightClean Studio near Grand Central (MurrayHill),43275413,Ashumi,Manhattan,Midtown,40.7464,-73.97987,Entire home/apt,180,2,18,2019-06-02,1.22,1,4 +23902562,QUIET 1BR apartment CLOSE to EVERYTHING,92696117,Eric,Manhattan,Hell's Kitchen,40.76396,-73.99185,Entire home/apt,200,4,47,2019-05-01,3.31,1,0 +23902905,Shared Room in Midtown East,1429710,Bonnie,Manhattan,Midtown,40.75693,-73.97078,Shared room,63,1,18,2019-06-03,1.20,1,56 +23903645,It's Quiet Uptown,105699183,Crystal,Manhattan,Harlem,40.82718,-73.94883,Entire home/apt,65,6,2,2019-01-03,0.13,2,9 +23903960,Spacious Stylish 2 br duplex in HK ft from Time SQ,179255065,Luis,Manhattan,Hell's Kitchen,40.7612,-73.98886,Entire home/apt,300,1,118,2019-06-21,7.50,1,28 +23905099,The Most Delicious Airbnb Ever,24288568,Micah,Brooklyn,Bedford-Stuyvesant,40.69506,-73.93556,Private room,100,1,54,2019-06-16,3.45,1,45 +23905542,Lush brownstone apartment in Park Slope,1630247,Ben,Brooklyn,Park Slope,40.6785,-73.98209,Entire home/apt,95,2,9,2018-09-09,0.58,1,0 +23906042,Bronx Penthouse,179677211,Bettina,Bronx,Morris Park,40.84857,-73.85976,Entire home/apt,190,1,19,2019-06-09,1.47,3,8 +23913344,"Private Garden Apt in Cobble Hill, Brooklyn",1338262,Rachel,Brooklyn,Boerum Hill,40.68782,-73.99111,Entire home/apt,300,7,1,2019-01-02,0.16,3,224 +23916900,Cozy Apartment - Try NYC Living!,83967077,Renata,Queens,Long Island City,40.75955,-73.93293,Entire home/apt,231,3,4,2018-06-03,0.27,1,0 +23917121,"Sunny, Spacious Bed Stuy Dream Apartment",179765779,Allegra,Brooklyn,Bedford-Stuyvesant,40.6824,-73.93045,Entire home/apt,125,3,80,2019-07-07,5.41,1,269 +23917760,Cozy mezzanine bdrm in charming Bklyn neighborhood,179778880,Marcus,Brooklyn,Sunset Park,40.66162,-73.99129,Private room,45,2,45,2019-07-05,2.95,2,337 +23918528,Serene Central Park Getaway,20585393,Allison,Manhattan,Upper West Side,40.80091,-73.95912,Private room,64,1,4,2018-05-28,0.26,1,0 +23918586,"Clean Private Room, 10 min from 2 subway lines.",22710535,Ben,Brooklyn,Bedford-Stuyvesant,40.68659,-73.92949,Private room,150,1,1,2018-03-25,0.06,1,0 +23918916,Private Sunny Room in Park Slope,17315514,Ana,Brooklyn,Sunset Park,40.66168,-73.99827,Private room,50,7,1,2018-05-13,0.07,2,0 +23919286,Comfortable and close to everything!,179789963,William,Manhattan,Midtown,40.74564,-73.98181,Entire home/apt,115,3,3,2018-04-20,0.20,1,0 +23919507,Large Sunny Bedroom in 2 bedroom Apt. near train,39531110,Josseline,Brooklyn,Gravesend,40.60663,-73.9821,Private room,29,2,1,2018-06-11,0.08,1,0 +23920387,Jackson Heights Room Close to LGA,15654962,Kathy,Queens,Jackson Heights,40.75024,-73.88984,Private room,50,1,0,,,1,0 +23920657,Private Confortable Queen size Bedroom in UES.,132485563,Ali,Manhattan,Upper East Side,40.77038,-73.95273,Private room,105,5,2,2018-09-30,0.14,2,342 +23921460,Bright-peaceful room - 30 Min From NYC,165257273,Soon,Queens,Flushing,40.77244,-73.80061,Private room,40,30,1,2018-10-20,0.11,3,342 +23921983,Private Studio in charming Tudor style home.,165257273,Soon,Queens,Flushing,40.77193,-73.79966,Private room,50,30,5,2019-06-06,0.40,3,296 +23922092,Modern One-bedroom Apartment in Manhattan,19472344,Jillian,Manhattan,East Harlem,40.80016,-73.9383,Entire home/apt,199,21,14,2019-05-12,0.91,1,0 +23922930,温馨小屋,179825270,Vicky,Queens,Flushing,40.74309,-73.82472,Private room,49,1,53,2019-06-23,3.47,1,341 +23924218,Apartment in the heart of Williamsburg,1966537,Matthieu,Brooklyn,Williamsburg,40.71449,-73.96265,Entire home/apt,105,2,13,2019-01-27,0.82,1,0 +23925434,Brooklyn Brownstone Charm*,1903663,Rachel,Brooklyn,Bedford-Stuyvesant,40.68994,-73.95783,Private room,50,3,5,2019-06-09,0.32,2,365 +23925502,Sunny Room in brand new apartment in Bushwick,4162797,Ana,Brooklyn,Bushwick,40.70139,-73.92567,Private room,45,10,2,2018-09-30,0.19,1,13 +23926049,Room in Greenpoint w/ private balcony and bathroom,6900478,Rebecca,Brooklyn,Greenpoint,40.72977,-73.95125,Private room,95,1,9,2019-06-04,3.42,2,54 +23926532,"Quiet, Sunny Bedroom in Lefferts Gardens",171198420,Edna,Brooklyn,East Flatbush,40.65381,-73.94893,Private room,47,3,19,2019-06-28,2.38,2,12 +23926896,Bright & airy uptown sanctuary,5371388,Ashley,Manhattan,Inwood,40.86816,-73.93131,Entire home/apt,100,1,3,2019-06-16,0.22,1,5 +23932185,Cozy private room / Williamsburg / L train,178543960,Sergii,Brooklyn,Greenpoint,40.72029,-73.94,Private room,65,30,1,2019-03-31,0.30,10,341 +23933041,Times Square+Central Park Luxury Room,14743478,Abbie,Manhattan,Hell's Kitchen,40.7653,-73.98737,Private room,105,3,42,2019-06-27,2.71,1,286 +23934000,Room 5 - Quiet Retreat in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64293,-73.96863,Private room,50,2,51,2019-06-27,3.29,6,176 +23935141,"Sun-filled, Mod 3BR Apt Steps from Prospect Park",282655,Jenna,Brooklyn,Flatbush,40.64866,-73.96986,Entire home/apt,175,3,52,2019-06-29,3.58,3,222 +23937502,1BR in Downtown Brooklyn,17772042,Salem,Brooklyn,Downtown Brooklyn,40.69177,-73.98549,Entire home/apt,195,3,0,,,1,0 +23937509,Charming Williamsburg Weekend Getaway,13020369,Shannon,Brooklyn,Williamsburg,40.71201,-73.96048,Entire home/apt,225,4,0,,,1,0 +23937672,"Room #2 Near JFK airport, Race-Track, Casino.",179619904,Gregorio,Queens,South Ozone Park,40.67393,-73.82003,Private room,75,1,124,2019-06-19,7.98,3,160 +23937773,Sunny artist bedroom in Bedstuy,5628508,Jessica,Brooklyn,Bedford-Stuyvesant,40.68977,-73.93773,Private room,45,2,7,2018-07-23,0.46,1,0 +23940102,BRAND NEW PRIVATE STUDIO 5 BLOCKS TO CENTRAL PARK!,80262218,Laila,Manhattan,Upper East Side,40.77172,-73.95427,Entire home/apt,125,30,5,2019-05-14,0.34,3,283 +23940698,"Bright and cozy room. Midwood, Brooklyn.",90878763,Andrew,Brooklyn,Midwood,40.62399,-73.96324,Private room,75,2,0,,,2,0 +23942226,"Bushwick Room w Private Bath, 1 Block to Subway",37806504,Michelle,Brooklyn,Bushwick,40.70072,-73.91359,Private room,60,3,50,2019-05-18,3.33,1,85 +23942859,Modern home at excellent location,180005361,Cindy,Manhattan,Upper East Side,40.75917,-73.95916,Entire home/apt,148,1,55,2019-06-23,3.59,1,123 +23943070,Cozy Studio Apartment,180008916,Endazsia,Brooklyn,Bedford-Stuyvesant,40.68246,-73.94861,Entire home/apt,50,1,21,2019-06-21,1.75,2,0 +23943945,Modern Brooklyn Luxury 1 Bedroom,97964040,Kristen,Brooklyn,Boerum Hill,40.68417,-73.98215,Entire home/apt,150,1,3,2018-05-10,0.20,1,0 +23943948,East Village Celebrity Townhouse,18598201,Patti,Manhattan,East Village,40.7235,-73.98534,Entire home/apt,1000,3,55,2019-07-04,3.50,1,37 +23946148,Spacious Studio with Private Patio in Greenwood!,15817123,Stephanie,Brooklyn,Sunset Park,40.66169,-73.9979,Entire home/apt,135,5,56,2019-06-29,3.78,3,10 +23946427,Big Bright 1BR Apt in the Heart of Brooklyn!,58390724,Aleksandra,Brooklyn,Midwood,40.62923,-73.95746,Entire home/apt,140,2,19,2019-01-09,1.23,1,165 +23946641,Lavish Private room w/ Private Bath in upper east,10661558,Gio,Manhattan,Upper East Side,40.77519,-73.95153,Private room,159,1,67,2019-05-27,4.29,4,0 +23946797,Entire apt in Manhattan. 15 mins to Times Square!,65059624,Peiyi,Manhattan,East Harlem,40.80942,-73.93701,Entire home/apt,50,3,118,2019-06-23,8.06,1,4 +23952724,Best Place to stay,121379512,Maria,Bronx,Longwood,40.82434,-73.88705,Private room,44,20,0,,,2,0 +23955297,Sunny Harlem room: Ideal sublet for summer intern,30021975,Lucy,Manhattan,Harlem,40.80731,-73.95155,Private room,49,2,2,2018-08-11,0.15,1,1 +23955348,Sunny East Village 3/2 Apt in Prime Location!,180126576,P,Manhattan,East Village,40.72574,-73.98272,Entire home/apt,600,5,70,2019-06-02,4.49,3,6 +23956264,Bright room in sunny Prime Williamsburg pad.,128785861,Carlos,Brooklyn,Williamsburg,40.71622,-73.95364,Private room,70,1,13,2018-09-06,0.93,2,0 +23957636,Water views in two directions,19640594,C.,Manhattan,Battery Park City,40.70902,-74.01686,Entire home/apt,295,75,0,,,1,55 +23957942,Kiki’s Place!,46498586,Sage,Brooklyn,Bushwick,40.69603,-73.92537,Entire home/apt,200,2,2,2019-06-25,2,1,32 +23958542,Cozy Corner,180154611,Marlyn,Brooklyn,Canarsie,40.63806,-73.90024,Private room,49,2,16,2019-05-29,1.24,3,346 +23959939,The perfect williamsburg-greenpoint location,10606156,Eric,Brooklyn,Greenpoint,40.72581,-73.95376,Entire home/apt,175,5,0,,,2,0 +23960224,Cozy room in friendly Bed-Stuy apartment,17631089,Katharina,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93518,Private room,45,6,2,2018-10-15,0.15,1,0 +23961249,Private Room in Bklyn Brownstone; 20 mins to NYC!,127437059,Carol,Brooklyn,Crown Heights,40.66685,-73.93828,Private room,35,2,26,2019-06-13,1.68,1,79 +23961333,The Nile River,180180858,Killa,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94353,Entire home/apt,180,5,7,2019-05-29,0.65,1,35 +23961376,Beautiful red-brick bedroom in prime East Village,154266431,Steven,Manhattan,East Village,40.72507,-73.9827,Private room,100,3,45,2019-07-02,3.53,3,6 +23963981,Home away from home,180208872,Ketia,Brooklyn,Canarsie,40.63382,-73.90502,Entire home/apt,155,1,82,2019-07-05,6.97,1,302 +23964318,Private Bedroom-Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76516,-73.95841,Private room,80,1,23,2019-01-28,1.46,5,0 +23964830,Upper East Side Cozy Room!!!,180219381,Johnny,Manhattan,East Harlem,40.78771,-73.95143,Private room,70,2,73,2019-06-25,4.69,1,260 +23965055,Enough space for couple:),79298323,Crispy,Queens,Maspeth,40.73273,-73.89357,Private room,38,3,15,2018-12-07,1.03,3,163 +23965460,Cleo's Royale,157141199,Adeola,Manhattan,Inwood,40.86058,-73.9274,Private room,70,5,5,2019-05-24,0.41,2,90 +23966710,Private Room in Astoria 15 mins to Manhattan / LGA,169166409,Rafael,Queens,Astoria,40.76801,-73.92673,Private room,38,1,40,2019-06-29,2.61,2,48 +23970993,Comfort & Convenience in the middle of NYC!,32909393,Tanya & Mirjan,Manhattan,Upper West Side,40.80228,-73.96334,Private room,75,2,70,2019-06-24,4.60,1,1 +23973305,Private Sunny Apartment on the Upper East Side,88394152,Jessica,Manhattan,Upper East Side,40.77574,-73.94638,Entire home/apt,120,3,20,2019-06-30,1.33,1,157 +23974919,"Charming UWS 1-bedroom, 1 block from Central Park!",25364341,Cyndi,Manhattan,Upper West Side,40.77669,-73.9789,Entire home/apt,200,3,1,2018-05-26,0.07,1,16 +23975246,Your private cozy Williamsburg apartment,6111084,Nebojsa,Brooklyn,Williamsburg,40.70488,-73.94301,Entire home/apt,160,3,4,2019-05-31,0.35,2,46 +23976566,Clean Private Room in Rosedale - Close to JFK+Mall,105124052,Latoya,Queens,Rosedale,40.65882,-73.7332,Private room,28,1,35,2019-05-09,2.25,1,43 +23976700,HUGE ARTSY DESIGNER APRT IN CHINATOWN W/ ELEVATOR,7988008,Emily,Manhattan,Chinatown,40.71336,-73.99263,Entire home/apt,210,1,16,2019-05-04,1.04,1,318 +23978220,JFK;minutes to JFK;$2.50to Manhattan,180347935,Sharon,Queens,Queens Village,40.72822,-73.74119,Shared room,37,1,0,,,1,0 +23978509,"2 Bedroom. Cozy, inexpensive",178303634,Gustavo,Brooklyn,South Slope,40.66429,-73.9906,Entire home/apt,120,5,2,2018-04-15,0.13,2,0 +23979192,"Huge, bright 1 bed w/ priv yard in Crown Heights!",15538912,Michelle,Brooklyn,Crown Heights,40.67395,-73.94874,Entire home/apt,77,3,3,2018-09-23,0.20,1,0 +23979650,Charming Bedroom in Luxury Highrise w/ Gym & Sauna,50698186,Tsilala,Manhattan,Financial District,40.70851,-74.0137,Private room,80,2,4,2019-01-02,0.27,1,0 +23979686,Pre-War 2BR Pad at Prospect Park,3894475,Kyle,Brooklyn,Park Slope,40.6678,-73.98106,Entire home/apt,150,2,0,,,3,0 +23980151,Sunny Williamsburg 1 Bedroom! A block from subway,180379038,Graham,Brooklyn,Williamsburg,40.70808,-73.93964,Entire home/apt,124,1,2,2018-04-09,0.13,1,0 +23980153,Quiet room in Bushwick Apartment above Jefferson L,180378787,Andrew,Brooklyn,Bushwick,40.7069,-73.92284,Private room,30,3,1,2018-04-23,0.07,1,0 +23980622,Manhattan private room 2 Columbia university area,180380802,Avner,Manhattan,Harlem,40.81312,-73.95364,Private room,65,1,11,2019-05-07,0.71,4,365 +23986569,Manhattan private room 3 Columbia university,180380802,Avner,Manhattan,Harlem,40.81205,-73.95322,Private room,65,1,4,2019-06-02,0.28,4,365 +23988427,Chill in Bushwick,64194344,Glynn,Brooklyn,Bushwick,40.70226,-73.92895,Private room,55,1,0,,,1,0 +23989379,Central Harlem Sanctuary for the Bookish Type(s),180467103,Chloé,Manhattan,Harlem,40.82847,-73.93701,Entire home/apt,90,7,1,2018-11-27,0.13,1,24 +23990013,Brookyln Brownstone Pied de Terre,39865251,Alexandra,Brooklyn,Clinton Hill,40.68235,-73.96384,Entire home/apt,225,2,1,2018-04-22,0.07,1,0 +23990128,"Long Island City, Shared 2 bedroom apartment",82834850,Ben,Queens,Long Island City,40.7546,-73.93643,Private room,48,6,2,2018-05-02,0.13,1,0 +23990829,Cosy private room in Central Harlem apartment,10218953,Lina,Manhattan,Harlem,40.81554,-73.94144,Private room,39,2,12,2019-07-06,0.81,1,4 +23990868,1 Bedroom in Luxury Building,4447548,Grace,Brooklyn,Bedford-Stuyvesant,40.69336,-73.94453,Entire home/apt,88,2,8,2019-06-16,0.56,1,18 +23992091,"Cozy apartment in Brooklyn, NY",78441349,Melissa,Brooklyn,East Flatbush,40.6485,-73.95157,Entire home/apt,159,2,1,2019-01-01,0.16,3,191 +23992731,"Cozy studio in trendy Bushwick, Brooklyn",68350188,Laurin,Brooklyn,Bushwick,40.70252,-73.91943,Entire home/apt,99,4,10,2019-05-10,0.72,1,0 +23992737,Big Room in Quiet Neighborhood,4841646,Esmee,Queens,Elmhurst,40.72806,-73.87572,Private room,40,1,24,2018-10-28,1.68,1,0 +23992829,"Room in Nice Apartment, Astoria. Great Area!",20855056,Jonathan,Queens,Ditmars Steinway,40.77694,-73.90846,Private room,35,4,5,2018-04-25,0.32,1,0 +23993066,Big one Bedroom in Prospect Park,160325910,Sylvie,Brooklyn,Prospect-Lefferts Gardens,40.66139,-73.96231,Entire home/apt,115,4,0,,,1,0 +23995936,FLATIRON LUXURY HIGHRISE//STUNNING VIEWS//4 BEDS!!,180548427,Navi,Manhattan,Midtown,40.74562,-73.98511,Entire home/apt,620,4,38,2019-07-06,2.52,1,309 +23996251,Harlem,135510002,David,Manhattan,Harlem,40.81498,-73.94622,Shared room,75,2,8,2018-06-03,0.52,1,0 +23996479,#1 Spacious Private Room,303939,Lissette,Staten Island,Tompkinsville,40.63485,-74.08539,Private room,37,2,53,2019-06-11,3.40,6,341 +23996716,"INCREDIBLE, Spacious 1 BDRM in the heart of SOHO.",44352618,Michelle,Manhattan,SoHo,40.72613,-74.00188,Entire home/apt,200,2,37,2019-06-16,2.51,1,8 +23997663,Amazing Artsy&Trendy Building w/Private Bathroom,2373120,Elena,Brooklyn,Bushwick,40.69999,-73.92807,Private room,75,5,9,2019-06-15,0.60,2,336 +23998608,Cozy room with a comfortable bed,15344412,Abe,Staten Island,New Springville,40.57942,-74.15506,Private room,50,1,38,2019-06-23,2.64,3,88 +23999822,Lovely bedroom in the perfect two bedroom condo.,90629446,Mayer,Brooklyn,Crown Heights,40.67237,-73.95191,Private room,120,1,0,,,1,0 +24000030,"Private studio in East Village, affordable price",64892392,Valentine,Manhattan,East Village,40.72921,-73.98629,Entire home/apt,95,3,5,2018-12-31,0.37,1,5 +24000797,Stunning Brooklyn Suite,19202612,Anthony,Brooklyn,Canarsie,40.6302,-73.8997,Entire home/apt,80,3,13,2018-09-09,0.86,1,0 +24006208,CLEAN & COZY PRIVATE ROOM SHARING APARTMENT QUEENS,53778891,Laura,Queens,Kew Gardens,40.71295,-73.82867,Private room,50,2,20,2019-07-07,1.40,1,334 +24014159,"Central Brooklyn Beautiful Rooms +Room Cozy +#2",167098774,Keisha,Brooklyn,Canarsie,40.63757,-73.89205,Private room,55,2,27,2019-05-06,1.74,3,362 +24014307,In the Heights!,180720187,Peter,Manhattan,Washington Heights,40.83432,-73.94457,Private room,48,3,3,2019-01-06,0.19,1,0 +24016646,Sunny 2br Apt in Bedstuy.. 20 mins to Manhattan!,16275624,Cj,Brooklyn,Bedford-Stuyvesant,40.68238,-73.92918,Entire home/apt,100,3,3,2018-09-15,0.20,2,0 +24016962,New York on The Ocean,180744564,Montage Yuriy,Brooklyn,Brighton Beach,40.58019,-73.95403,Entire home/apt,99,1,36,2019-07-07,2.39,1,350 +24017521,Private room in Manhattan(2名個室),117675375,Ky-Tsuyo,Manhattan,East Harlem,40.8003,-73.93829,Private room,74,7,26,2019-06-21,1.70,2,26 +24017674,Private room in cozy prime Bushwick apartment,14856361,Elena,Brooklyn,Bushwick,40.70063,-73.92981,Private room,65,1,59,2019-06-30,4.13,1,43 +24018753,Amazing refuge near Prospect Park,105315535,Ben,Brooklyn,Prospect Heights,40.67617,-73.96636,Entire home/apt,158,30,2,2019-03-31,0.20,3,5 +24019172,"XL Ensuite 5m to Ferry, RUMC, Snug Harbor",9263105,Wj,Staten Island,New Brighton,40.64393,-74.09312,Private room,40,30,1,2019-06-29,1,2,71 +24019698,Midtown East furnished studio apartment,100965471,Melissa,Manhattan,Midtown,40.75247,-73.9695,Entire home/apt,119,2,3,2018-04-26,0.20,1,0 +24020883,Beach Bungalow 2 Bedroom,180781689,Jeremy,Queens,Rockaway Beach,40.58773,-73.81367,Entire home/apt,325,1,61,2019-07-04,4.49,2,129 +24021725,Deluxe East Village Apartment: 2 Bed - 2 Bath,16962957,Nick,Manhattan,East Village,40.72845,-73.97927,Entire home/apt,215,1,52,2019-04-21,3.34,4,51 +24022079,Cozy studio apartment in Bensonhurst,15266695,Sergey & Kate,Brooklyn,Bensonhurst,40.62062,-73.99837,Entire home/apt,120,7,0,,,2,232 +24022413,New penthouse with Manhattan and park views!,4094332,Nick & Gaby,Brooklyn,East Flatbush,40.65478,-73.95264,Private room,65,3,51,2019-06-20,3.71,1,62 +24022943,Large Opulent Studio Apartment Near Prospect Park,20805,Bridget,Brooklyn,Crown Heights,40.66996,-73.956,Entire home/apt,90,4,0,,,1,0 +24024322,"Luxury KING 2br, Airports & Times SQ minutes away",111978355,Katarina,Queens,Elmhurst,40.73421,-73.87387,Entire home/apt,230,2,30,2019-06-14,2.97,2,51 +24024456,"Convenience & Luxury, City andAirport minutes away",111978355,Katarina,Queens,Elmhurst,40.73276,-73.87252,Entire home/apt,188,2,35,2019-06-09,2.26,2,140 +24024496,1 Bedroom+Piano Studio Manhattan Near Central Park,31671247,Tj,Manhattan,East Harlem,40.79398,-73.9397,Entire home/apt,140,2,17,2019-03-24,1.24,1,7 +24024721,JFK Queens Home Away From Home House Of Suedajoy 2,175019394,Suzan,Queens,Jamaica,40.67048,-73.77832,Private room,60,1,138,2019-06-23,8.87,6,177 +24033132,Wonderfully cozy studio on Waverly w/nice backyard,51038,Erica,Brooklyn,Clinton Hill,40.69415,-73.96788,Entire home/apt,95,2,69,2019-06-30,4.52,6,327 +24033812,Greenwich Village Master Bedroom!,180892493,Anokhi,Manhattan,Greenwich Village,40.72947,-73.9995,Private room,100,1,1,2018-03-28,0.06,1,0 +24034429,Oasis in East Village,180897611,Daniel,Manhattan,East Village,40.72642,-73.98402,Entire home/apt,175,2,5,2019-01-01,0.34,1,15 +24034853,Spacious Bedroom in Prime Brooklyn Location,18168381,Jessica,Brooklyn,Bedford-Stuyvesant,40.69286,-73.93235,Private room,45,3,7,2019-06-22,0.46,1,0 +24034953,Room in Minimalist Brooklyn Loft (Fort Greene),25096301,Ryan,Brooklyn,Fort Greene,40.68659,-73.97557,Private room,70,2,9,2019-06-02,0.63,2,3 +24034969,Harlem Charm in a Convenient Location.,40218949,Tom,Manhattan,East Harlem,40.79931,-73.94726,Private room,60,1,35,2019-06-24,2.34,1,94 +24035864,Warm and Friendly Near Broadway and 96th,20154516,David,Manhattan,Upper West Side,40.79566,-73.96859,Private room,95,6,22,2018-08-24,1.47,1,0 +24036655,Charming 1 Bedroom apt at Bayridge,49219601,Alex,Brooklyn,Fort Hamilton,40.62225,-74.03444,Entire home/apt,70,1,2,2018-09-16,0.19,1,0 +24037479,Quiet 1Bed Studio in heart of East Village,16094075,Christopher,Manhattan,East Village,40.72578,-73.98763,Entire home/apt,119,3,8,2019-05-22,0.58,1,41 +24038323,Dreamy Williamsburg Bedroom with Private Terrace,32720219,Gizem,Brooklyn,Williamsburg,40.70894,-73.94333,Private room,120,4,10,2019-06-17,0.66,2,8 +24038899,Harlem suit La barrio,10828579,Najah,Manhattan,East Harlem,40.79815,-73.93906,Entire home/apt,115,7,7,2018-11-01,0.48,2,0 +24039069,Lovely apartment in affluent area of Manhattan,154860771,Serenity,Manhattan,Upper East Side,40.77989,-73.95159,Entire home/apt,125,1,21,2019-05-20,1.44,1,25 +24039582,BedSTUY SupperCLUB,14795719,Shirley,Brooklyn,Bedford-Stuyvesant,40.68491,-73.93399,Private room,45,6,30,2019-06-20,2.06,1,21 +24039926,very cozy private bedroom within a 2 bedroom flat,180945232,Dan (Leo),Manhattan,Hell's Kitchen,40.75605,-73.99541,Private room,89,3,9,2019-06-19,0.58,1,32 +24040279,Cozy and bright bedroom in South Williamsburg,4365496,Sarah,Brooklyn,Williamsburg,40.70989,-73.96231,Private room,75,2,43,2019-06-30,3.04,2,0 +24041042,"Architect Loft, btw Soho & Tribeca, Private Roof",12307951,Edouard,Manhattan,Tribeca,40.71916,-74.00442,Entire home/apt,240,3,9,2019-06-20,0.63,1,17 +24041447,Brooklyn house,2496897,Marixsa,Brooklyn,East Flatbush,40.64282,-73.94497,Entire home/apt,199,4,0,,,1,13 +24041631,Beautiful sunny BR in fully renovated apartment !!,23831257,Nicole,Brooklyn,Bedford-Stuyvesant,40.6807,-73.92917,Private room,40,7,6,2019-04-01,0.45,2,216 +24041916,New One Bedroom 15-20 Min. From NYC! Close to all!,179382251,Christine,Queens,Ditmars Steinway,40.77289,-73.91293,Entire home/apt,100,7,24,2019-06-24,1.99,1,260 +24042332,Beautiful sunlit spacious loft-like pvt. bedroom!,56917612,Jason,Brooklyn,Bushwick,40.69781,-73.92093,Private room,60,1,16,2019-07-06,1.20,1,21 +24042606,Modern sunlit apartment in the heart of Bushwick,91427536,Yoav,Brooklyn,Bushwick,40.69642,-73.9243,Private room,45,5,5,2019-04-20,0.58,2,3 +24042844,"LOVE MANHATTAN 2 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.80863,-73.92121,Private room,50,1,33,2019-07-03,2.14,4,75 +24043603,Experience Brownstone Living in Brooklyn!,4181378,Lauren,Brooklyn,Bedford-Stuyvesant,40.68967,-73.9366,Entire home/apt,175,2,20,2019-07-01,1.67,2,357 +24044039,Vicky客栈1,180991373,Vicky,Queens,Flushing,40.743,-73.82335,Private room,60,1,38,2019-04-21,2.68,5,0 +24044352,"Cozy, Quiet and Spacious Apt in Astoria",5044922,Riomar,Queens,Astoria,40.7637,-73.9268,Entire home/apt,99,7,3,2019-01-04,0.27,1,0 +24046484,Rocco's Pad,139124384,Mackenzie,Brooklyn,Williamsburg,40.71168,-73.94058,Private room,70,20,26,2019-02-01,2.15,1,0 +24056066,Amazing apartment with Balcony ! GREAT LOCATION!,23989761,Teresa,Manhattan,Upper West Side,40.79094,-73.97459,Entire home/apt,260,1,38,2019-07-02,2.56,1,86 +24057278,Flushing Main st 7 train luxurious apartment,161899037,Tony,Queens,Flushing,40.75671,-73.83337,Entire home/apt,159,2,39,2019-07-01,2.68,7,61 +24057583,Beautiful Studio Apt,181108819,Friday,Staten Island,Clifton,40.61804,-74.0861,Entire home/apt,60,1,54,2019-05-22,3.48,1,361 +24058869,"Upper West / Morningside Heights Apt, Near Subway",81022597,Daniel,Manhattan,Morningside Heights,40.80947,-73.96357,Entire home/apt,100,3,0,,,1,0 +24060140,EAST VILLAGE STUDIO APT WITH COURTYARD,29127683,Melissa,Manhattan,East Village,40.73048,-73.98269,Entire home/apt,78,3,4,2019-01-02,0.31,1,13 +24062062,Brooklyn loft with Manhattan skyline view,22002554,Eleni,Brooklyn,Bushwick,40.70057,-73.92385,Entire home/apt,180,7,3,2019-01-02,0.22,1,1 +24062588,Upper West Side NYC Studio Apartment,17132917,Amelia,Manhattan,Upper West Side,40.79719,-73.97097,Entire home/apt,80,3,1,2018-05-04,0.07,1,0 +24065326,Bright 1 Bed w/Lrg Private Balcony in Williamsburg,16835514,Carla Isabel,Brooklyn,Williamsburg,40.71607,-73.96365,Entire home/apt,250,3,16,2019-07-03,1.05,1,41 +24065408,Private Room in Spacious Apartment with Patio!,1583742,Travis,Brooklyn,Boerum Hill,40.68503,-73.98232,Private room,50,2,31,2019-07-07,2.04,1,0 +24065918,One bedroom in Brooklyn Heights,35996743,Scott,Brooklyn,Boerum Hill,40.68958,-73.99141,Entire home/apt,118,2,3,2018-11-12,0.21,1,0 +24066280,"Overnight Crash Couch 12minNY, 10minLGA/30minJFK",100128949,Lisa,Queens,Astoria,40.75465,-73.91357,Shared room,42,1,54,2019-04-20,3.48,4,66 +24066510,Gorgeous Room available in a 2 bed/apt!,21563231,Nafsica,Manhattan,Harlem,40.82632,-73.94637,Private room,69,3,7,2018-10-25,0.46,1,172 +24075491,Long term rental only. 3months min.,8185223,Jason,Brooklyn,Bushwick,40.69558,-73.92578,Private room,42,90,0,,,1,90 +24075850,Cozy private room in Times Square/Rockefeller,4227606,Cindy,Manhattan,Midtown,40.75866,-73.98032,Private room,100,3,13,2019-01-01,0.88,2,0 +24077483,Heaven in Hell’s Kitchen,116482644,Yaniv,Manhattan,Hell's Kitchen,40.76499,-73.98888,Private room,110,1,67,2019-04-08,4.51,2,0 +24077570,Spacious Brooklyn Apartment w/ private backyard,22923979,Séamus,Brooklyn,Bedford-Stuyvesant,40.68149,-73.93449,Entire home/apt,155,2,13,2019-06-28,1.28,1,53 +24078552,Spacious 2 bed/ 1bath w/ outdoor space (sleeps 8),36576422,Ivana,Queens,Forest Hills,40.71754,-73.83367,Entire home/apt,150,2,31,2019-06-24,2.04,1,89 +24078852,"ART apt: QUIET, charming, GEM in GREENWICH VILLAGE",181300842,Mikaela,Manhattan,Greenwich Village,40.72925,-74.00042,Entire home/apt,119,2,12,2019-05-17,1.07,1,0 +24080143,"Beautiful Private Room near Highline, and Train",44292356,Colin,Manhattan,Chelsea,40.74648,-74.00266,Private room,89,30,30,2019-06-27,2.73,1,105 +24080464,HUGE Luxury Upper East Side 1 Bedroom—Roof Access,19445501,Daniel,Manhattan,Upper East Side,40.76692,-73.95298,Entire home/apt,399,2,20,2019-06-23,1.38,1,78 +24082591,Haven In The Heights - Huge Manhattan 2BR 2 Bath!,44303500,Bruce & Suzanne,Manhattan,Washington Heights,40.84634,-73.93861,Entire home/apt,275,2,7,2019-05-12,0.52,2,0 +24082871,Luxury spot,50545016,Joseph,Brooklyn,Crown Heights,40.67695,-73.95554,Entire home/apt,150,21,1,2018-04-01,0.06,1,0 +24083340,Your Dream 1 bed Apartment in the heart of SoHo,13460416,Jeremie,Manhattan,Little Italy,40.7193,-73.99782,Entire home/apt,140,2,6,2019-07-02,0.41,1,0 +24083686,The Bay - A One Bedroom Apartment,181344112,Ernesto,Manhattan,Kips Bay,40.74346,-73.97827,Entire home/apt,199,2,8,2018-12-03,0.54,1,0 +24083746,Cozy private room available from January 1st,32434287,David,Manhattan,Harlem,40.81787,-73.94286,Private room,65,3,1,2018-05-08,0.07,1,0 +24085451,Elegant and Comfortable Home Away from Home in UES,47929235,Samir,Manhattan,East Harlem,40.78723,-73.94956,Private room,100,7,68,2019-06-22,4.39,1,77 +24086178,2 Bedroom Astoria Beautiful,6523823,Louis,Queens,Ditmars Steinway,40.77516,-73.91792,Entire home/apt,103,5,1,2018-04-22,0.07,1,0 +24086457,HUGE 3500 sf 3 bed/3 bth Loft in SoHo/Little Italy,181372846,William,Manhattan,Little Italy,40.71841,-73.99753,Entire home/apt,649,3,38,2019-06-02,2.59,1,199 +24086562,Harlem Sanctuary,178833771,Danese,Manhattan,Harlem,40.82356,-73.9401,Private room,85,2,29,2019-06-03,1.93,3,78 +24086704,"The Photographer Room in Private Home, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.88004,-73.9,Private room,79,3,45,2019-06-12,3.00,4,59 +24089034,Beautiful Spacious Studio Apartment,181397986,Samantha,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93805,Entire home/apt,96,1,50,2019-07-07,4.37,2,257 +24095408,"Spacious Williamsburg, Brooklyn Spare Room",156955078,Michael,Brooklyn,Williamsburg,40.71952,-73.94165,Private room,70,2,41,2019-06-30,2.73,1,14 +24096651,Brooklyn Brownstone Bedroom,161441682,Brady,Brooklyn,Boerum Hill,40.68708,-73.98389,Private room,57,1,9,2018-08-27,0.60,1,0 +24096826,Charming Historic House in Marble Hill!,18389214,Valeria,Manhattan,Marble Hill,40.87621,-73.90997,Private room,274,3,3,2018-07-29,0.24,1,238 +24097816,1BR Apartment on the Upper East Side.,2163683,Daniel,Manhattan,Upper East Side,40.78124,-73.94988,Entire home/apt,250,50,0,,,1,0 +24098320,PRIVATE BEDROOM IN BRAND NEW CONDO IN BED STUY,10222758,Annette,Brooklyn,Bedford-Stuyvesant,40.69292,-73.94326,Private room,90,3,54,2019-07-06,3.68,1,69 +24099108,Brooklyn Stay Inn TH,179436298,Nyota,Brooklyn,Crown Heights,40.66555,-73.95497,Entire home/apt,100,1,4,2019-06-28,2.26,2,365 +24099296,Beautiful 3 BR Midtown East! Clean & Chic!!,22543458,Ashley,Manhattan,Kips Bay,40.74528,-73.97901,Entire home/apt,412,1,69,2019-07-06,4.45,4,133 +24100492,3BR Chic & Beautiful NYC Apartment,22543458,Ashley,Manhattan,Kips Bay,40.74581,-73.9784,Entire home/apt,412,30,54,2019-06-28,3.48,4,227 +24101160,Gorgeous 3BR Penthouse Murray Hill,22543458,Ashley,Manhattan,Kips Bay,40.74481,-73.97879,Entire home/apt,412,30,69,2019-06-24,4.45,4,234 +24103241,"Peaceful spacious bedroom, easy commute to city",13899187,Jude,Queens,Glendale,40.70297,-73.895,Private room,50,7,0,,,1,0 +24103404,European Cozy Studio w Loft Bedroom - West Village,656978,James,Manhattan,West Village,40.7378,-74.0062,Entire home/apt,148,3,0,,,1,0 +24103428,The Halsey Brownstone Inn,179351232,Sabrina,Brooklyn,Bedford-Stuyvesant,40.68314,-73.92784,Entire home/apt,120,2,6,2019-05-05,0.41,1,334 +24103912,⭐︎⭐︎PRIVATE Bathroom⭐︎⭐︎2min to subway+huge living,19303369,Hiroki,Queens,Woodside,40.74267,-73.90354,Private room,41,30,1,2018-09-16,0.10,37,1 +24104871,"Cozy Art Private Bedroom-Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83163,-73.94615,Private room,70,1,16,2019-01-01,1.22,6,32 +24105281,Clean Private room in Manhattan(females only),29582228,Aki,Manhattan,East Harlem,40.79309,-73.94347,Private room,90,4,1,2018-04-16,0.07,1,6 +24105640,"Tranquil private bedroom, Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.8301,-73.94757,Private room,99,1,22,2019-06-30,1.88,6,45 +24114389,"Very Spacious bedroom, steps from CENTRAL PARK.",180661875,Salim,Manhattan,Upper West Side,40.76844,-73.98333,Private room,10,1,2,2018-04-23,0.13,1,0 +24114571,Studio for the Summer,6568865,Adam,Queens,Forest Hills,40.72385,-73.85124,Entire home/apt,69,30,0,,,1,99 +24115364,Modern Room in historic Harlem,11582560,Hulon,Manhattan,Harlem,40.81503,-73.94341,Private room,54,5,22,2019-05-13,1.45,1,5 +24115562,NYC TOP CHOICE RMS located close to pub transport,55948559,Barry,Bronx,Pelham Gardens,40.86615,-73.84185,Private room,35,1,6,2019-06-18,0.40,4,0 +24116050,Amazing room in super warm apt in prime Bushwick !,14573346,Nimo,Brooklyn,Bushwick,40.70575,-73.92075,Private room,39,7,1,2019-04-27,0.41,1,0 +24116631,Beautiful Manhattan Apt- 20 min to Times Square,5740704,Lauren,Manhattan,Washington Heights,40.84884,-73.93199,Entire home/apt,82,7,0,,,1,0 +24116708,brooklyn next prospect park,279067,Manami,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95784,Private room,40,7,0,,,1,53 +24116969,"Paradise - comfortable, spacious loft apartment",162290659,Ari,Manhattan,Chinatown,40.71396,-73.99771,Entire home/apt,148,2,3,2019-06-08,0.21,1,5 +24117055,Enjoy a beautiful room in this bohemian duplex,181651082,Fran,Queens,Rosedale,40.66021,-73.73709,Private room,60,1,10,2019-07-01,0.92,3,164 +24117765,Spacious sanctuary in the heart of Brooklyn,10642957,Catherine,Brooklyn,Bedford-Stuyvesant,40.68056,-73.94685,Entire home/apt,130,3,2,2018-06-06,0.15,1,0 +24118031,✔ Home Away From Home ✔ 100Mbps ✔ Transit Score 99,4924711,Daniel Rusteen,Bronx,Concourse,40.81952,-73.92844,Entire home/apt,95,2,37,2019-07-06,2.89,1,193 +24119086,Private clean room complementary coffee Manhattan,6636052,Renat,Manhattan,East Harlem,40.79805,-73.93527,Private room,65,2,62,2019-07-06,4.14,1,9 +24119328,Charming Brooklyn Gem with Beautiful Views,8612450,Kareem,Brooklyn,Midwood,40.61379,-73.96826,Private room,20,3,4,2018-05-31,0.26,1,18 +24119876,*Large 3 bedroom getaway* Pre Summer discounts,181679481,Krystle,Queens,Arverne,40.59746,-73.79688,Entire home/apt,190,3,21,2019-06-24,1.49,1,327 +24120512,Live in our Bushwick Townhouse,17200390,Nabeel,Brooklyn,Bushwick,40.69211,-73.90634,Private room,60,12,0,,,1,14 +24121036,Woody's Larger Bedroom,24591977,Woody,Brooklyn,Bedford-Stuyvesant,40.67924,-73.9102,Private room,55,4,25,2019-01-14,1.67,2,0 +24121842,Woody's Smaller Bedroom,24591977,Woody,Brooklyn,Bedford-Stuyvesant,40.67749,-73.91084,Private room,49,7,41,2019-01-09,2.67,2,0 +24121885,Cozy Private Bedroom Upper East Side,81013659,Milena,Manhattan,Upper East Side,40.7668,-73.954,Private room,100,3,64,2019-06-25,4.19,2,275 +24122599,Cozy room in a Victorian house in Central Brooklyn,14905006,Myriam,Brooklyn,Kensington,40.63966,-73.9716,Private room,52,1,11,2019-05-27,0.81,1,0 +24122725,Ivoire Realty(Bronx maison avec vue),181711840,Christophe,Bronx,Kingsbridge,40.86286,-73.9024,Private room,35,2,24,2019-06-07,1.56,2,365 +24122836,Cozy Private Room in Flushing 法拉盛中心單人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76562,-73.8299,Private room,45,1,96,2019-07-07,6.56,3,44 +24129287,Sunny Private Bushwick Bedroom,163703392,Melissa,Brooklyn,Bushwick,40.69384,-73.90674,Private room,41,1,18,2019-05-05,1.19,1,0 +24130728,Luxury apartment with amazing views!,11542546,Matthew,Manhattan,Hell's Kitchen,40.76125,-73.99859,Entire home/apt,275,4,2,2018-06-08,0.13,1,0 +24131620,Luxury One Bedroom Apartment in Financial District,26930091,Cindy,Manhattan,Financial District,40.70745,-74.01521,Entire home/apt,265,30,4,2019-01-02,0.35,1,322 +24131689,Classical Upper West Side Experience,62176119,Katya,Manhattan,Upper West Side,40.77799,-73.9782,Entire home/apt,250,4,15,2019-06-11,1.00,1,57 +24131817,Modern & Spacious 1br East Village Apartment,91332497,Nikki,Manhattan,SoHo,40.72256,-74.00018,Private room,130,2,3,2019-01-21,0.48,1,0 +24131843,"Snug, Sun Flooded Room in The Upper West Side",14742776,Daniyal,Manhattan,Morningside Heights,40.80466,-73.96529,Private room,55,4,3,2018-04-13,0.20,1,0 +24132058,2 Bdrm Luxury Condo Wyndham Presidential Sleeps 6,60617669,Rich,Manhattan,Midtown,40.75305,-73.96947,Entire home/apt,365,2,1,2018-05-04,0.07,4,0 +24132282,Spacious room in the heart of Bushwick!,642986,Luisa,Brooklyn,Bushwick,40.69876,-73.92968,Private room,70,15,6,2018-10-31,0.42,1,321 +24133060,A futon in a beautiful studio for females only,20771576,Maryam,Manhattan,East Harlem,40.78999,-73.95226,Shared room,30,3,5,2018-06-13,0.32,2,0 +24133244,Beautiful New York City Midtown Cozy Apartment,117510818,Lea,Manhattan,Hell's Kitchen,40.76657,-73.98514,Entire home/apt,225,3,28,2019-07-02,1.87,1,323 +24135740,"4 Bed, 2 Bath Apt in East Village-Garden Duplex",177353847,East Village,Manhattan,East Village,40.72468,-73.98996,Entire home/apt,650,4,11,2019-07-07,0.75,4,164 +24136172,Sunny Studio Williamsburg w/ Private Bath&Entrance,1844352,Christine,Brooklyn,Williamsburg,40.71195,-73.94307,Private room,95,5,10,2018-09-19,0.70,2,0 +24136557,"2 Bedroom, 1 Bath Apartment in East Village- Sol",177353847,East Village,Manhattan,East Village,40.72677,-73.9911,Entire home/apt,500,4,6,2019-03-20,0.40,4,121 +24136587,FACTORY ARTIST LOFT - 4 ROOMS SLEEPS 10,80770105,Julian,Brooklyn,Williamsburg,40.70505,-73.92937,Entire home/apt,244,3,0,,,1,345 +24136740,"3 Bedroom, 2 Bath Apt in East Village- Penthouse",177353847,East Village,Manhattan,East Village,40.72601,-73.99086,Entire home/apt,750,4,19,2019-05-31,1.27,4,151 +24137279,Prime Dumbo location for a great price!,7199637,Rafael,Brooklyn,Vinegar Hill,40.70045,-73.98468,Private room,46,3,4,2018-05-02,0.26,1,0 +24137323,Private chef & Chill.,181851683,Jennifer,Bronx,Morrisania,40.83252,-73.89811,Private room,40,1,0,,,1,83 +24137748,Manhattan Studio doorman elevator 10min->Times Sq.,181858292,Johnny,Manhattan,Upper West Side,40.77864,-73.98482,Entire home/apt,140,2,34,2018-12-31,2.27,1,0 +24137869,Master Garden Suite @ Northern Lights Mansion,1261480,Diane,Manhattan,Harlem,40.80646,-73.9517,Private room,1500,2,0,,,2,192 +24137890,Shabby Chic UES,67785571,Ellie,Manhattan,Upper East Side,40.7682,-73.95323,Entire home/apt,140,1,3,2018-07-08,0.20,1,0 +24139165,"Best Williamsburg, Brooklyn NY- 30 days or more",8072802,John,Brooklyn,Williamsburg,40.71032,-73.94806,Entire home/apt,199,30,15,2019-07-01,1.03,2,55 +24139687,Couch of your dreams,1767221,Yael,Manhattan,Harlem,40.82829,-73.94691,Shared room,80,5,0,,,2,363 +24140119,"Cozy space with privacy near JFK, CASINO & NYC",181885526,Ling,Queens,South Ozone Park,40.67344,-73.82096,Private room,69,1,91,2019-07-05,5.95,1,90 +24140198,1 Bedroom Elevator Building Apartment in SoHo,85506502,Chris,Manhattan,Nolita,40.72226,-73.99616,Entire home/apt,188,30,3,2018-08-07,0.20,1,0 +24140556,Elegant shabby chic upper east side studio,36818639,Valerie,Manhattan,Upper East Side,40.77023,-73.95212,Entire home/apt,100,2,6,2018-04-26,0.39,1,0 +24147123,"Bright Brooklyn home on the park, private backyard",4857962,Allison,Brooklyn,Bedford-Stuyvesant,40.69017,-73.94825,Entire home/apt,235,3,5,2018-11-25,0.32,1,3 +24149436,Spacious Studio with a Big Balcony,6792120,Gregory,Manhattan,Upper East Side,40.76726,-73.96333,Entire home/apt,165,2,42,2019-05-11,2.81,1,81 +24151078,Cozy 1 bedroom apartment near JFK,83231755,Alisha,Queens,Jamaica,40.68055,-73.791,Entire home/apt,55,2,4,2018-05-06,0.26,1,0 +24151964,Harlem guest room! Welcome to New York,7941100,Luke&Quincey,Manhattan,Harlem,40.81468,-73.93735,Private room,65,2,1,2018-05-29,0.07,1,156 +24153401,Sunny Family Apartment,2011899,Janelle,Brooklyn,Crown Heights,40.66749,-73.95556,Entire home/apt,70,45,1,2018-08-04,0.09,1,2 +24153494,Quiet Ground Floor Bedroom in Midtown West,154965091,Joe,Manhattan,Hell's Kitchen,40.76956,-73.98804,Private room,125,2,29,2019-06-22,2.03,4,43 +24154729,Sunny Brooklyn Artist's Apartment,37995238,Lara,Brooklyn,Williamsburg,40.71426,-73.9369,Entire home/apt,90,7,18,2019-05-01,1.31,1,0 +24155415,Light Filled Room in Bedstuy!,26315450,Sacha,Brooklyn,Bedford-Stuyvesant,40.67941,-73.908,Private room,56,2,8,2018-12-18,0.67,1,0 +24156731,2019 New York Marathon Weekend,132856118,Conchita,Manhattan,Midtown,40.76441,-73.98145,Entire home/apt,394,3,1,2018-11-05,0.12,1,13 +24156857,BEAUTIFULLY DESIGNED 2BD Brooklyn Apt +GREAT VIEWS,3156480,Margaret,Brooklyn,Boerum Hill,40.68669,-73.98498,Entire home/apt,172,5,4,2019-01-03,0.27,1,0 +24157013,Cozy Brooklyn Designer Apartment,182039779,Eleanor,Brooklyn,Carroll Gardens,40.68123,-73.99424,Entire home/apt,100,3,7,2019-07-06,0.47,1,0 +24157110,Supersized UES Studio near all hospitals,28422,Bernadette,Manhattan,Upper East Side,40.77359,-73.94967,Entire home/apt,80,181,0,,,1,189 +24158722,Luxury Studio in Hell’s Kitchen - In Unit W/D,31404168,Ashley,Manhattan,Hell's Kitchen,40.76179,-73.99989,Entire home/apt,142,20,4,2018-09-28,0.30,1,0 +24158806,An Art Decor Inspired Urban Oasis,142426920,Christina Jo,Brooklyn,Prospect Heights,40.68215,-73.97002,Entire home/apt,220,2,9,2019-06-30,0.64,1,85 +24158816,Cozy Modern Loft with Fireplace in West Village,128610997,Zani,Manhattan,West Village,40.73233,-74.00244,Entire home/apt,264,10,17,2019-06-13,1.19,2,94 +24159289,Great View of New York city,41366374,Jiangyang,Queens,Long Island City,40.75047,-73.9408,Entire home/apt,150,1,0,,,1,0 +24160395,Brooklyn Penthouse With Manhattan Views,178145214,Steve,Brooklyn,Williamsburg,40.71189,-73.95355,Entire home/apt,200,2,43,2019-06-01,2.80,1,102 +24161365,Das Bushwick Haus,2497606,John,Brooklyn,Bushwick,40.68261,-73.90714,Private room,45,6,1,2018-06-16,0.08,1,0 +24161582,Bright Bohemian Treasure in Prospect Heights,182086879,Patti,Brooklyn,Prospect Heights,40.67942,-73.96469,Private room,150,2,8,2018-09-06,0.53,2,0 +24162064,Heart of Midtown Manhattan,182092241,Masa,Manhattan,Midtown,40.75359,-73.97028,Entire home/apt,160,3,48,2019-06-28,3.35,1,203 +24162261,Spacious 1st floor apartment.,83377687,Fernando,Queens,Jackson Heights,40.75436,-73.85696,Entire home/apt,135,2,46,2019-06-25,3.08,2,141 +24162615,"LARGE COZY BASEMENT, FLUSHING QUEENS",178059867,Kevin,Queens,Flushing,40.75722,-73.80595,Private room,55,1,56,2019-06-19,3.75,3,345 +24162681,Bedstuy Cozy Go Green,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.68374,-73.9456,Private room,50,1,114,2019-06-23,7.57,3,363 +24162696,Pristine midtown studio for short-term sublet,1391408,Allen,Manhattan,Theater District,40.75897,-73.98318,Entire home/apt,89,120,0,,,1,173 +24164953,One BDRM in Ridgewood,74291583,Sarah,Queens,Ridgewood,40.70594,-73.91453,Private room,49,1,6,2018-04-25,0.40,1,11 +24164956,Cozy 1 Bedroom Apt~Midtown-East Manhattan NYC!,132492053,Kelley,Manhattan,Midtown,40.75523,-73.97104,Entire home/apt,185,1,8,2019-05-21,1.13,1,29 +24166066,You will LOVE my studio in West Village.,14678390,Mario,Manhattan,West Village,40.73354,-73.99982,Entire home/apt,180,4,31,2019-07-02,2.14,1,10 +24169179,NEW!! Private room in the heart of Brooklyn,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.68853,-73.95982,Private room,70,2,33,2019-03-06,2.33,2,17 +24171777,Luxury Triplex with Roofdeck,6489789,Tim,Brooklyn,Gowanus,40.68159,-73.98075,Entire home/apt,450,2,3,2019-04-03,0.35,1,22 +24172522,Room with a view,72923342,Farah,Manhattan,Upper West Side,40.77101,-73.98481,Entire home/apt,110,1,7,2018-04-28,0.46,1,0 +24175050,"Living by the ocean, Brooklyn",181827361,Mira,Brooklyn,Brighton Beach,40.57721,-73.96076,Entire home/apt,125,7,0,,,1,247 +24175236,Private room in Clinton Hill,13929249,Grainne,Brooklyn,Bedford-Stuyvesant,40.69181,-73.95453,Private room,72,1,2,2018-05-20,0.14,1,0 +24177410,King-Suite on Greene,112901574,Nate,Brooklyn,Bedford-Stuyvesant,40.68962,-73.93352,Private room,80,2,3,2018-10-21,0.29,4,54 +24177822,**Budget Private Room w/Private backyard,154258141,Elsie,Brooklyn,Bushwick,40.68811,-73.91219,Private room,44,2,30,2019-05-10,2.06,10,322 +24178083,Charming mezzanine bedroom near Prospect Park,179778880,Marcus,Brooklyn,Sunset Park,40.66179,-73.99062,Private room,45,2,37,2019-05-18,2.61,2,308 +24178481,Bed-Stuy Grove,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.68524,-73.94427,Private room,71,1,85,2019-06-19,5.60,3,317 +24179288,**Amazing Private Room 20 min to manhattan,154258141,Elsie,Brooklyn,Bushwick,40.68994,-73.91371,Private room,60,2,41,2019-06-24,2.78,10,359 +24179556,**Captivating Private Budget Room,154258141,Elsie,Brooklyn,Bushwick,40.68951,-73.91405,Private room,65,2,29,2019-05-11,1.90,10,356 +24179803,One of a Kind Chinatown 2BR Home w/ HUGE patio,72882190,Angie,Manhattan,Chinatown,40.7147,-73.99868,Entire home/apt,300,7,2,2018-10-15,0.20,1,178 +24181763,"Private Room in Bklyn, 1 min to J, Free Breakfast",182260692,Leesha,Brooklyn,Cypress Hills,40.68168,-73.87882,Private room,99,2,67,2019-07-01,4.59,2,295 +24181925,Family Room in Bed-Stuy,128217748,Kris,Brooklyn,Bedford-Stuyvesant,40.6856,-73.94388,Private room,79,1,75,2019-06-23,4.91,3,295 +24182137,Wyndham Midtown 45 (2 Bedroom Presidential) 1A,100238132,Michael,Manhattan,Midtown,40.75383,-73.97278,Entire home/apt,339,3,28,2019-03-17,1.93,12,0 +24183293,Queen Twin & Futon Ridgewood/Bushwick w View & Gym,48182426,Emilio,Queens,Ridgewood,40.70077,-73.90793,Private room,58,1,3,2018-04-15,0.20,1,0 +24184615,"Private room in cozy apartment, Fort Greene",75479604,Alyssa,Brooklyn,Fort Greene,40.69461,-73.97225,Private room,90,1,24,2019-05-15,2.18,2,0 +24185045,Midtown Manhattan Apartment with Rooftop & Doorman,13204586,María José,Manhattan,Murray Hill,40.74803,-73.97282,Entire home/apt,175,3,0,,,1,0 +24186326,"5 Star Quiet, Spacious Condo. Freedom Tower view",10915812,Wyatt,Manhattan,Battery Park City,40.71085,-74.0158,Entire home/apt,158,2,20,2019-06-23,1.34,1,2 +24186601,Upper East Museum Roads,20367358,Maryse,Manhattan,Upper East Side,40.77456,-73.94602,Entire home/apt,145,28,2,2018-11-19,0.23,1,278 +24186775,"Huge, Clean Brooklyn Room with lots of light",17183013,Mellissa,Brooklyn,Bedford-Stuyvesant,40.68225,-73.9188,Private room,60,2,47,2019-07-01,3.12,1,134 +24187794,Renovated 1 BDR Apt~ Heart of Midtown Manhattan ❤️,29582882,Lynn Liz,Manhattan,Midtown,40.75592,-73.96957,Entire home/apt,99,2,54,2019-06-20,3.54,1,98 +24188354,"Large studio in Williamsburg, 2B",49704571,Krzysztof,Brooklyn,Williamsburg,40.71972,-73.94462,Entire home/apt,80,30,5,2019-05-17,0.42,8,161 +24194478,Williamsburg loft just 20 mins from manhattan!!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72563,-73.9556,Private room,85,1,57,2019-06-29,3.78,7,16 +24199249,Beautiful East Village Room Open For You!,182411776,David,Manhattan,East Village,40.73045,-73.98067,Private room,115,1,37,2019-06-05,2.55,1,128 +24199400,Washington Heights,70162513,Anaiya,Manhattan,Washington Heights,40.83701,-73.94256,Private room,52,1,3,2018-04-29,0.20,1,0 +24200751,2BR 3BD 1.5BA | Rooftop & Balcony | Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70653,-73.90877,Entire home/apt,280,2,42,2019-06-23,3.44,2,108 +24201129,Bright & Cozy Studio in PRIME Flatiron/Chelsea,25635056,Christina,Manhattan,Chelsea,40.73836,-73.99567,Entire home/apt,250,2,12,2019-06-06,1.33,1,7 +24202365,Private room in Manhattan NYC. Train a min away!,182440062,Juan,Manhattan,Harlem,40.82484,-73.93913,Private room,55,1,7,2019-06-22,0.55,2,157 +24203680,Entire Newly Renovated Sugar Hill Apt,9756051,Samantha,Manhattan,Harlem,40.82696,-73.94598,Entire home/apt,100,3,6,2019-01-04,0.44,1,8 +24203813,Huge Modern High End 3BR Apt Prime Location,51510730,Lidor,Brooklyn,Fort Greene,40.68884,-73.97738,Entire home/apt,195,1,6,2018-11-23,0.49,1,0 +24204269,Big Sunny Room 1 Block from Central Park,7360975,Calvin,Manhattan,East Harlem,40.79635,-73.94815,Private room,80,3,15,2019-06-01,1.25,1,88 +24204338,Private Cozy Room on Manhattan,63929490,Lidziya,Manhattan,East Harlem,40.78719,-73.95201,Private room,100,7,18,2019-06-19,1.25,1,45 +24204341,Sunny Brooklyn Home Away From Home,4127752,Angela,Brooklyn,Bedford-Stuyvesant,40.67951,-73.94426,Private room,55,4,5,2019-01-18,0.35,1,0 +24204582,Sun-drenched studio with a beautiful view,50941579,Julia,Manhattan,Harlem,40.82008,-73.95523,Entire home/apt,120,5,1,2018-08-25,0.09,1,34 +24205303,Spacious 1 bedroom in the clouds with river views,34364912,Courtney,Manhattan,Hell's Kitchen,40.77024,-73.99266,Entire home/apt,300,2,14,2019-06-25,0.95,1,87 +24205351,Wyndham Midtown 45 (2 Bedroom Presidential) 8A,100238132,Michael,Manhattan,Midtown,40.75368,-73.97317,Entire home/apt,339,3,30,2019-01-02,2.07,12,0 +24206202,Exquisite Park Slope Brownstone Apartment,182472967,Maureen,Brooklyn,Park Slope,40.67063,-73.97826,Entire home/apt,140,3,1,2019-06-14,1,1,65 +24206224,Harlem hideout w/ great amenities!,10771238,Justin,Manhattan,Harlem,40.82599,-73.95289,Private room,53,2,0,,,3,188 +24207804,"NYC room-cozy, basic, clean, cheap & close to all",182488531,Kevin4,Queens,Elmhurst,40.73739,-73.86991,Shared room,21,1,21,2019-06-16,1.64,2,260 +24207931,Modern Prospect Park 3 bedroom Jewel,182326270,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.6559,-73.95852,Entire home/apt,125,4,58,2019-06-21,3.80,1,78 +24208472,Two room suite 1min from subway 20min to Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.68915,-73.95623,Private room,47,1,64,2019-06-12,4.33,7,278 +24208760,Gorgeous Upper West Side apt in stellar location!,56905821,Josh & Carin,Manhattan,Upper West Side,40.77959,-73.97827,Private room,180,2,29,2018-11-20,1.96,1,0 +24208976,Spacious Room in Clinton Hill Duplex,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.69079,-73.95934,Private room,58,2,1,2018-04-10,0.07,2,0 +24209867,Spacious Room in Clinton Hill/Bed-Stuy,1218837,Diana,Brooklyn,Bedford-Stuyvesant,40.68993,-73.95947,Private room,58,2,0,,,2,0 +24210296,Private bedroom in Downtown Manhattan,97015202,Maya,Manhattan,SoHo,40.72741,-74.0088,Private room,150,1,61,2019-05-31,4.11,1,8 +24210400,Large Gorgeous BR in Artist Loft - BEST Location!!,20486410,Miley,Manhattan,Hell's Kitchen,40.75423,-73.99461,Private room,120,1,75,2019-06-23,4.93,1,134 +24217712,Diamond in the Art of Bushwick 1 block to M Subway,842091,Megwyn,Brooklyn,Bushwick,40.70081,-73.92494,Private room,47,3,55,2019-06-27,3.67,2,12 +24222051,AMAZING CITY VIEWS! New Jersey 15 min Times Square,154949847,Emily,Manhattan,Hell's Kitchen,40.76127,-74.00235,Entire home/apt,288,3,36,2019-06-23,2.93,2,109 +24223406,**Enormous Budget Private Room,154258141,Elsie,Brooklyn,Bushwick,40.68936,-73.91369,Private room,65,2,40,2019-06-04,2.65,10,343 +24223602,Prospect Heights Paradise,182086879,Patti,Brooklyn,Prospect Heights,40.67999,-73.96462,Entire home/apt,300,7,17,2019-06-28,1.22,2,129 +24226102,Class on Wall Street,34358062,Rachel,Manhattan,Financial District,40.70399,-74.00827,Private room,104,2,1,2018-04-07,0.07,1,0 +24226175,Bright apt w Balcony in the heart of williamsburg,12002279,Ayelet,Brooklyn,Williamsburg,40.71417,-73.9591,Entire home/apt,160,5,20,2019-01-01,1.43,1,0 +24226286,Traditional Townhouse in Bushwick,21466891,Martin,Brooklyn,Bushwick,40.68269,-73.90911,Entire home/apt,250,5,0,,,2,0 +24226511,Newly Remodeled 2 Bedroom Apartment in East Harlem,3734637,Ty,Manhattan,East Harlem,40.79046,-73.94436,Entire home/apt,186,1,0,,,3,0 +24226528,Private Bedroom w/ Private Entrance-Williamsburg!,1525346,Jenn,Brooklyn,Williamsburg,40.70949,-73.94892,Private room,73,4,25,2019-05-13,1.64,1,48 +24226842,Luxury High Floor Studio with stunning view,17477908,Mat,Manhattan,Upper West Side,40.79446,-73.96651,Entire home/apt,195,30,3,2019-06-01,0.21,10,311 +24226955,Spectacular 1-Bedroom modern apartment in Flatiron,7461066,Santiago,Manhattan,Midtown,40.74383,-73.98387,Entire home/apt,200,7,1,2019-01-02,0.16,1,0 +24227739,NYC experience,43463232,Carlos,Brooklyn,Bushwick,40.69355,-73.91829,Private room,100,7,7,2018-08-22,0.50,2,365 +24229031,3 QUEEN size lofts in Williamsburg/grrenpoint!!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72552,-73.95647,Private room,300,1,8,2018-11-11,0.53,7,14 +24229203,Artist Warehouse Loft,4391922,Taras,Brooklyn,Navy Yard,40.69792,-73.96406,Entire home/apt,150,2,19,2018-12-29,1.27,1,0 +24230067,"Beautiful 1 bed, UES - steps from Central Park!",5132019,Jocelyn,Manhattan,Upper East Side,40.77905,-73.95275,Entire home/apt,190,2,8,2019-03-05,0.54,1,3 +24230182,Brand-new Room - 20 mins to Manhattan,127412674,Charles,Brooklyn,Williamsburg,40.70111,-73.94471,Private room,75,2,28,2019-05-29,1.91,2,342 +24230591,21st Floor Bedroom in Doorman & Elevator Building,24175837,Greg,Manhattan,Kips Bay,40.74512,-73.97921,Private room,81,4,6,2018-12-17,0.39,2,0 +24231655,Humble Abode in the Bronx,37417547,Raquel,Bronx,Mount Eden,40.84197,-73.91292,Private room,25,2,2,2018-05-19,0.14,1,0 +24232076,Amazing cozy studio Lower East Side/Soho/Nolita!,8591292,Rose,Manhattan,Lower East Side,40.72201,-73.98856,Entire home/apt,275,3,20,2019-06-30,1.36,1,359 +24232309,VERA’S PLACE JUST A STEP FROM SUBWAY,139946116,Vera,Queens,Long Island City,40.7613,-73.92864,Private room,60,7,1,2018-05-05,0.07,1,365 +24232645,"LUXURY APARTMENT, 5 MIN SUB INTO MANHATTAN",157967816,Analia,Brooklyn,Greenpoint,40.72129,-73.94329,Entire home/apt,180,2,49,2019-06-12,3.52,3,233 +24232774,Room in Brooklyn near EVERYTHING!!,41869421,Oriana,Brooklyn,Bedford-Stuyvesant,40.68931,-73.95097,Private room,90,2,1,2018-09-24,0.10,1,343 +24234030,UES 1 bedroom as if you appropriated it yourself!,39083533,Charles,Manhattan,Upper East Side,40.77181,-73.9574,Entire home/apt,222,2,0,,,1,32 +24234359,Town House in Popular Forte Green,2560891,Petra,Brooklyn,Fort Greene,40.69613,-73.97117,Entire home/apt,95,7,6,2018-12-03,0.45,1,19 +24239222,little nook in astoria,74874485,Ana,Queens,Ditmars Steinway,40.77305,-73.9082,Entire home/apt,70,3,2,2018-04-12,0.13,1,0 +24240996,"new-entire condo, terrace, parking D-N-R trains-IC",19707138,Ali,Brooklyn,Sunset Park,40.65604,-74.00032,Entire home/apt,125,15,1,2018-04-08,0.07,1,8 +24242153,Private apartment in ♡ of Williamsburg,167818456,Anna,Brooklyn,Williamsburg,40.71254,-73.95527,Entire home/apt,173,2,51,2019-06-30,3.55,2,127 +24243249,Dreamy Williamsburg Loft with Private Terrace,32720219,Gizem,Brooklyn,Williamsburg,40.70735,-73.94347,Entire home/apt,220,2,0,,,2,0 +24243862,Beautiful Greenwich Village Loft Apartment,5002183,Kyra,Manhattan,Greenwich Village,40.72705,-73.99904,Entire home/apt,148,2,3,2018-07-18,0.24,1,0 +24244194,Full private bathroom inside private room :),176821276,Andrea,Manhattan,Harlem,40.82499,-73.95374,Private room,75,3,8,2018-08-13,0.54,1,0 +24244796,ARTIST LOFT ON HISTORIC TRENDY BLOCK IN SOHO,70091196,Frances,Manhattan,Nolita,40.72402,-73.99452,Entire home/apt,199,2,53,2019-07-04,4.02,1,99 +24245265,Cozy Room For Two/ Steps to Train/Coffee included!,79913651,Darryl,Manhattan,Harlem,40.82268,-73.953,Private room,54,2,26,2019-05-03,1.73,4,157 +24245905,One-br apt in the heart of NYC for late May,131914514,Li,Manhattan,Midtown,40.75265,-73.9684,Entire home/apt,150,4,0,,,1,0 +24246039,Central Park West Duplex,106309624,Burt,Manhattan,Upper West Side,40.78723,-73.97031,Entire home/apt,153,2,6,2019-04-22,0.41,1,0 +24246595,Cozy apt in Bedstuy,34360053,Seba,Brooklyn,Bedford-Stuyvesant,40.6879,-73.94473,Entire home/apt,99,14,1,2018-04-07,0.07,1,0 +24246704,NEAR COLUMBIA PRESBYTERIAN HOSP. Student&Visitor,25237492,Juliana,Manhattan,Washington Heights,40.84103,-73.94063,Private room,65,30,3,2018-12-07,0.26,34,311 +24247367,Midway Home,38874050,Howard,Queens,Ridgewood,40.70058,-73.91061,Private room,50,2,43,2019-06-06,3.15,3,150 +24247380,Crown Heights Brooklyn Room near Franklin Ave,76737749,Chris,Brooklyn,Crown Heights,40.6735,-73.95562,Private room,45,1,0,,,1,0 +24247797,East Village room with a view,19001556,Monica,Manhattan,East Village,40.72421,-73.98025,Private room,100,3,6,2018-06-22,0.42,2,0 +24248461,Cozy Pad in East Williamsburg,25039950,David,Brooklyn,Williamsburg,40.71115,-73.93735,Private room,62,1,6,2018-05-31,0.39,2,0 +24248735,Hidden Gem in Heart of Chinatown,24604504,Jess,Manhattan,Chinatown,40.71394,-73.99843,Private room,77,7,1,2018-04-29,0.07,1,0 +24248741,Minimal Williamsburg Space,2796906,Austin,Brooklyn,Williamsburg,40.70833,-73.94898,Private room,46,1,3,2018-04-13,0.20,1,0 +24250052,Private Room on NYC's Upper West Side,21379585,Erik Joshua,Manhattan,Upper West Side,40.77988,-73.98605,Private room,95,1,50,2019-05-30,3.30,1,0 +24251237,West Village Private Flat AMAZING Location,180329864,Victoria,Manhattan,Greenwich Village,40.73393,-73.9963,Entire home/apt,159,5,4,2019-06-09,0.31,1,42 +24251311,Beautiful 1 BR Apt in the Heart of West Village!,41361010,Zack,Manhattan,West Village,40.73333,-74.0052,Entire home/apt,300,2,8,2019-05-20,0.81,1,199 +24258555,URBAN SPACE the Brooklyn Way!,160318374,Giulia,Brooklyn,Bedford-Stuyvesant,40.67791,-73.92879,Entire home/apt,103,30,42,2019-05-10,2.91,2,139 +24258565,Stylish Nolita 1 Bedroom,143589,Delia,Manhattan,Nolita,40.72213,-73.99479,Entire home/apt,200,2,22,2019-06-09,1.57,1,3 +24260244,NYC BEAUTIFUL APARTMENT IN MANHATTAN,58023108,Nicole,Manhattan,Kips Bay,40.74077,-73.97977,Private room,102,20,2,2018-04-11,0.13,1,0 +24260247,Ditmas Park Victorian Home,14759766,Jerry,Brooklyn,Flatbush,40.64401,-73.96047,Entire home/apt,350,7,1,2019-04-21,0.38,2,77 +24260404,Cozy Queens Studio,182940016,Comfy,Queens,Far Rockaway,40.59707,-73.76506,Entire home/apt,425,1,0,,,1,90 +24260464,Garden room in a private house,15310048,Darya,Brooklyn,East Flatbush,40.65185,-73.94555,Private room,45,45,5,2019-06-01,0.38,2,155 +24261171,Luxury Two-Story Loft in Clinton Hill/Bed-Stuy!,1133299,Ibada,Brooklyn,Bedford-Stuyvesant,40.69592,-73.94765,Entire home/apt,168,3,24,2019-06-10,1.63,1,30 +24264371,Comfy Private Room,182976972,Annero,Brooklyn,East Flatbush,40.64929,-73.92647,Private room,40,3,39,2019-07-02,2.64,2,263 +24265177,Bright Renewed Apartment 1 minute from A express train,182945752,Carol&Emerson,Manhattan,Washington Heights,40.84104,-73.93838,Private room,55,2,71,2019-07-06,4.89,1,135 +24265209,Cozy Apartment,182295691,Doudou,Manhattan,Upper East Side,40.77311,-73.95508,Entire home/apt,150,5,10,2019-03-09,0.76,1,25 +24265333,Prime Williamsburg location- Private bedrm & bath,84527789,Lauren,Brooklyn,Williamsburg,40.71686,-73.95638,Private room,79,2,17,2019-06-17,1.15,1,1 +24265776,Cozy Brooklyn Apartment room near Manhattan,10875931,Bart,Brooklyn,Flatbush,40.64741,-73.97102,Private room,65,2,70,2019-06-30,4.79,1,90 +24266025,Private Room in The Heart of Manhattan,182989727,Ilya,Manhattan,Chelsea,40.74579,-73.9909,Private room,70,3,8,2019-05-12,0.54,1,0 +24266063,Beautiful Contemporary Duplex w. Patio & Roofdeck,1327248,Ian,Brooklyn,Williamsburg,40.71651,-73.95623,Entire home/apt,199,2,4,2019-05-27,0.30,1,93 +24266273,Cozy Private Room in Downtown Flushing法拉盛中心私人房间,181710793,Michelle & Evelyn,Queens,Flushing,40.76525,-73.83055,Private room,45,1,101,2019-07-07,7.03,3,33 +24267208,Pulp Fiction private room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.67952,-73.91296,Private room,70,1,90,2019-07-05,5.99,3,31 +24267383,Room with Private Bathroom in Renovated 2Br2Ba,13078961,Marian,Brooklyn,Bedford-Stuyvesant,40.69201,-73.94104,Private room,60,3,1,2018-05-31,0.07,1,0 +24267385,Sonder | 116 John | Charming 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70688,-74.00523,Entire home/apt,194,29,0,,,96,343 +24267506,The Godfather private room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.68088,-73.91181,Private room,59,1,83,2019-07-02,5.48,3,24 +24267706,entire sunshine of the spotless mind room,21074914,Albert,Brooklyn,Bedford-Stuyvesant,40.68234,-73.91318,Private room,49,1,102,2019-07-05,6.73,3,0 +24269100,Sunny Bedroom with Private Bathroom/法拉盛中心私人房間獨立衛浴,181710793,Michelle & Evelyn,Queens,Flushing,40.76425,-73.83061,Private room,65,1,94,2019-06-26,6.45,3,41 +24276183,** Foodies LOVE This Neighborhood?=>Authentic!!!,59749141,Veronica,Manhattan,East Harlem,40.80451,-73.94079,Entire home/apt,165,2,61,2019-06-26,4.06,1,59 +24276835,Brooklyn Flat in prime Carroll Gardens (Room),26459329,John,Brooklyn,Carroll Gardens,40.67559,-73.99943,Private room,80,2,27,2019-03-13,1.79,1,144 +24277232,Rockaway Beach House,139105717,Larry,Queens,Arverne,40.59103,-73.79497,Entire home/apt,175,2,0,,,1,0 +24278511,Sunny Room - Inn Your Element,19866189,Natasha,Queens,Arverne,40.58906,-73.79503,Private room,95,1,0,,,5,364 +24278899,Fantastic studio in Chinatown/Lower East side,24404900,Nate,Manhattan,Chinatown,40.71371,-73.99355,Entire home/apt,100,2,73,2019-06-30,4.86,1,3 +24279547,Rooftop Terrace Room - Inn Your Element B&B,19866189,Natasha,Queens,Arverne,40.58896,-73.79494,Private room,95,1,2,2018-07-01,0.15,5,361 +24279693,THE BROOKLYN BLUE HOUSE 1.,183127881,Giana,Brooklyn,Canarsie,40.6469,-73.90022,Private room,54,1,61,2019-05-20,4.19,4,319 +24279771,Gorgeous Times Square Flat!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76008,-73.98846,Entire home/apt,299,2,41,2019-05-29,2.79,5,169 +24279933,[Priv Rooftop] Sunny-Spacious Priv Bath bedroom,36632628,Camilo,Brooklyn,Bedford-Stuyvesant,40.68102,-73.93686,Private room,45,4,6,2018-11-26,0.41,1,0 +24281831,Bright and modern New York apartment,38085094,Preeya,Manhattan,Chelsea,40.75087,-73.9953,Entire home/apt,250,2,3,2018-06-24,0.21,1,0 +24281837,Beautiful one bedroom apartment center of Astoria,31679084,Barbara,Queens,Astoria,40.76936,-73.91491,Entire home/apt,120,1,6,2019-03-12,0.41,1,117 +24282118,One Bed Room in Financial District,155935757,Amy,Manhattan,Financial District,40.70615,-74.00752,Entire home/apt,105,30,1,2018-12-29,0.16,1,233 +24282429,#Awesome 2 BR Flat Times Square!,142053,Jowelle,Manhattan,Hell's Kitchen,40.76385,-73.99219,Entire home/apt,299,2,26,2019-03-31,1.76,5,0 +24283298,Luxury Modern Sunny 1BR (Clinton Hill - BedStuy),105159,Martin,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95826,Entire home/apt,130,30,6,2019-01-04,0.43,1,189 +24283531,Quiet Railroad Style Apartment,11150363,Lanee,Queens,Ridgewood,40.70642,-73.90554,Entire home/apt,90,5,2,2018-05-20,0.14,1,0 +24284162,"Books, music and Clinton Hill",80793056,Hazel,Brooklyn,Clinton Hill,40.69289,-73.96865,Private room,62,2,2,2018-05-07,0.14,1,0 +24284701,HEART WILLIAMSBURG - PRIVATE TERRRACE AND BATHROOM,101457588,Louis,Brooklyn,Williamsburg,40.70705,-73.94976,Private room,70,5,1,2018-06-03,0.07,1,0 +24284744,Bright & Beautiful Studio in Columbus Circle/HK!,123362684,Jacob,Manhattan,Hell's Kitchen,40.7671,-73.98744,Entire home/apt,225,1,11,2019-06-17,0.73,1,1 +24285044,Peaceful Room in UWS + sweet pets!,24595747,Melissa,Manhattan,Upper West Side,40.77969,-73.97862,Private room,95,3,16,2019-05-19,1.08,2,0 +24285110,Large 4 bedrooms close to train. 15 m.to Manhattan,183178516,Lucky Day Realty Corp.,Queens,Rego Park,40.72643,-73.86083,Entire home/apt,288,3,16,2019-06-12,1.17,1,136 +24285869,Charming humble hideaway in LES,97825,Eduardo,Manhattan,Lower East Side,40.71883,-73.98957,Entire home/apt,149,8,19,2019-06-23,1.30,1,6 +24286512,Gowanus Pad,29110009,Kate,Brooklyn,Gowanus,40.66889,-73.99115,Private room,95,1,3,2019-06-24,0.22,1,221 +24286518,Large Bright Apt Near Brooklyn's Prospect Park,183191309,Marie,Brooklyn,Prospect-Lefferts Gardens,40.65711,-73.95655,Entire home/apt,150,3,26,2019-04-27,1.84,1,26 +24286851,"Sunny West Village 1BR: amazing location, spacious",54042,Vicki,Manhattan,West Village,40.72969,-74.00697,Entire home/apt,200,2,10,2019-06-21,0.68,1,0 +24287062,Sally's hideaway,180289633,Aleksej,Queens,Woodside,40.7466,-73.89176,Entire home/apt,150,4,27,2019-06-23,2.00,1,321 +24287261,Sweet Spot In Manhattan NYC!,16574437,Lee,Manhattan,Harlem,40.81542,-73.94574,Entire home/apt,175,2,29,2019-07-01,1.92,1,190 +24287286,Spacious home next to JFK airport,32617252,Paul,Queens,Jamaica,40.66735,-73.78922,Entire home/apt,180,2,50,2019-07-07,3.87,1,181 +24287367,Come Explore The Bronx And 30 Mins to Manhattan,102896902,Lawrence,Bronx,Concourse Village,40.83216,-73.91598,Private room,70,3,3,2019-05-22,0.40,1,178 +24287826,Superb Private Bedroom with Private Bath in UPS!,183211558,Linda,Manhattan,Upper East Side,40.77768,-73.94951,Private room,100,2,39,2019-06-19,2.58,1,55 +24287857,Astoria Centeral Location,183211776,Rafael,Queens,Astoria,40.76387,-73.90995,Private room,79,1,73,2019-06-30,5.03,4,171 +24287863,In the heart of NYC...,165395917,Jose,Manhattan,Midtown,40.75512,-73.97155,Private room,350,2,60,2019-06-28,4.00,1,148 +24288869,Private Room+Beautiful Private Backyard Near City,25414207,Brooklyn P,Queens,Ridgewood,40.69928,-73.90616,Private room,75,1,59,2019-06-29,3.99,2,162 +24289129,My Times Square Oasis,1334373,David,Manhattan,Hell's Kitchen,40.76323,-73.99248,Entire home/apt,235,3,7,2019-05-28,0.47,1,5 +24289209,Astoria Centrally located!,183211776,Rafael,Queens,Astoria,40.76531,-73.91126,Private room,39,1,11,2018-12-26,0.77,4,62 +24289510,Studio in the heart of Manhattan!,54103333,Tatiana,Manhattan,Hell's Kitchen,40.75974,-73.98924,Entire home/apt,300,4,2,2018-06-29,0.14,1,5 +24289567,Cozy room for easy traveler,41326856,Jeerathinan,Queens,Elmhurst,40.74468,-73.87911,Private room,50,1,21,2019-06-08,1.39,5,71 +24289926,Comfortable and spacious bedroom in midtown east,149324749,Hessam,Manhattan,Midtown,40.75628,-73.96918,Private room,130,2,2,2018-06-22,0.13,1,0 +24299542,Prime Luxury Apartment,25093840,Abinav,Manhattan,Murray Hill,40.74766,-73.97601,Private room,130,1,3,2018-05-30,0.21,1,0 +24300863,Tranquil Oasis in the Heart of Greenwich Village,5594198,Michelle,Manhattan,Greenwich Village,40.73034,-74.00135,Entire home/apt,250,2,29,2019-06-23,1.91,1,44 +24302356,Sweet Getaway in the Hidden Gem w/ Backyard/Patio,33067672,Ivy,Brooklyn,Sunset Park,40.65247,-74.00994,Entire home/apt,120,2,1,2018-06-04,0.08,1,0 +24302828,"My home, your home! Mi casa, tu casa in NY!",125011763,Peter,Queens,Astoria,40.76137,-73.90582,Entire home/apt,450,4,0,,,2,89 +24303775,Spacious Living Space in the heart of Brooklyn,170817628,Ruta,Brooklyn,Fort Hamilton,40.62313,-74.03114,Private room,47,28,0,,,1,31 +24304515,Sunny Studio in East Village,471453,Michael,Manhattan,East Village,40.7209,-73.98142,Entire home/apt,115,2,12,2019-06-24,0.80,1,0 +24304881,Bright Getaway Studio on the Hudson River,122917817,Kelly,Manhattan,Harlem,40.82036,-73.95415,Entire home/apt,100,2,24,2019-07-04,2.57,1,8 +24305035,Bright and cozy apartment Williamsburg,14709426,Eloise,Brooklyn,Williamsburg,40.71746,-73.9506,Entire home/apt,120,6,6,2019-04-21,0.42,1,20 +24305252,"The Architect’s Suite w/ Private Bath, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.87997,-73.90035,Private room,65,3,54,2019-06-19,3.69,4,64 +24305977,"The Sailors Perch Room in Private Home, Near Metro",106460468,Felix,Bronx,Kingsbridge,40.88068,-73.90012,Private room,79,3,55,2019-06-20,3.68,4,63 +24306539,New Chic Designer's Bedroom,16257970,Jackie,Manhattan,Lower East Side,40.71313,-73.98665,Private room,89,3,48,2019-07-05,3.19,2,181 +24307110,Sunny Lower East Side Sanctuary,43321,Lucinda,Manhattan,Chinatown,40.71426,-73.99175,Entire home/apt,300,7,6,2019-07-06,0.44,1,19 +24307675,Luxury Apartment right on Union Square!,183375315,Brandon,Manhattan,East Village,40.73389,-73.99083,Entire home/apt,220,4,13,2019-06-30,0.93,1,2 +24308589,Stunning Central Park 1 bedroom,101328784,Stive Alexander,Manhattan,Upper West Side,40.78243,-73.97265,Entire home/apt,265,7,13,2019-05-30,0.98,1,130 +24308928,Richmond Hill 3 Bedroom apartment in Private home!,65421561,Tom,Queens,Richmond Hill,40.69792,-73.84081,Entire home/apt,300,1,24,2019-07-01,3.29,1,162 +24308988,Rooftop cabaña with private roof access,5717334,Antoine,Brooklyn,Bedford-Stuyvesant,40.68907,-73.953,Private room,150,5,1,2018-05-12,0.07,2,0 +24311790,Cozy Lower East Mainstay,2631054,Melissa,Manhattan,Lower East Side,40.71932,-73.98995,Entire home/apt,150,3,8,2019-05-26,1.26,1,0 +24312275,West Chelsea MINI,20132009,Karen,Manhattan,Chelsea,40.74491,-74.0042,Entire home/apt,150,3,49,2019-07-04,3.53,2,64 +24312400,Private room in cozy Sunnyside apartment,22716889,Paige,Queens,Sunnyside,40.73937,-73.91566,Private room,46,1,9,2018-11-01,0.59,1,0 +24312987,Sunny Loft in Williamsburg 20mins into Manhattan!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72558,-73.95706,Private room,68,1,55,2019-06-28,3.72,7,38 +24313236,Private bedroom in the heart of the UWS #1,183423525,Nina,Manhattan,Upper West Side,40.80321,-73.9682,Private room,55,30,6,2019-07-02,0.48,4,210 +24313356,Luxurious private Upper Westside Bedroom #2,183423525,Nina,Manhattan,Upper West Side,40.80222,-73.96763,Private room,65,30,1,2018-05-13,0.07,4,216 +24313434,Upper Westside luxury private bedroom 5W-3,183423525,Nina,Manhattan,Upper West Side,40.80365,-73.96639,Private room,70,30,3,2019-04-12,0.24,4,317 +24313500,Stunning spacious study private bedroom #4,183423525,Nina,Manhattan,Upper West Side,40.80324,-73.96816,Private room,65,30,1,2019-06-30,1,4,211 +24313537,Cozy & quiet 2 bedroom apt in a great location!,9973967,Gahee,Manhattan,East Village,40.72626,-73.98784,Entire home/apt,310,2,78,2019-06-23,5.49,1,169 +24313701,Fully renovated Studio.Beautiful and comfortable.,16851857,Paul,Bronx,Wakefield,40.89641,-73.85077,Entire home/apt,88,5,8,2019-04-24,0.61,4,322 +24314268,Easy option to stay on 611 W 177th St.,143820550,Ramy,Manhattan,Washington Heights,40.84695,-73.93593,Private room,50,1,43,2018-12-26,3.01,1,0 +24323687,Brooklyn Family Home with a View of a Pool,127539184,Yuna,Brooklyn,East Flatbush,40.64934,-73.94508,Entire home/apt,250,5,0,,,2,8 +24323953,Stylish NYC Art Loft '3',34643568,Dave,Manhattan,East Harlem,40.79138,-73.9413,Private room,80,3,12,2019-06-21,0.87,6,332 +24324489,STOP! Rooftop Terrace in the East Village!,73885,Jermaine,Manhattan,East Village,40.72328,-73.9843,Private room,80,3,2,2018-05-18,0.14,1,0 +24324891,2 Bedroom Modern-Contempo Bright Apartment,19557813,Princess-Wynona,Brooklyn,Bedford-Stuyvesant,40.68302,-73.92119,Entire home/apt,130,2,35,2019-06-28,2.47,1,34 +24326705,Sunny apartment in prime Greenpoint-Steps to train,178244787,Miranda,Brooklyn,Greenpoint,40.72243,-73.95179,Entire home/apt,130,8,2,2018-12-02,0.14,2,0 +24327546,Cozy & warm private studio apartment in Astoria,80885460,Amy,Queens,Ditmars Steinway,40.77467,-73.9094,Entire home/apt,100,2,6,2019-06-16,0.42,1,0 +24327950,Pleasant Residence,183548336,Aureo,Manhattan,East Harlem,40.7977,-73.93493,Entire home/apt,250,3,13,2019-06-03,0.94,1,74 +24330532,Private Loft Apartment,183568797,Allison,Queens,Long Island City,40.75354,-73.95113,Entire home/apt,200,3,36,2019-06-14,2.43,1,308 +24332080,Huge Bright Bedroom in Brooklyn Townhouse,62803,Eugenia,Brooklyn,Crown Heights,40.67004,-73.92207,Private room,54,6,6,2019-03-30,0.65,2,225 +24334075,Huge Room in a huge Apartment,183599440,Sam,Brooklyn,Williamsburg,40.7193,-73.95863,Private room,65,4,1,2018-08-31,0.10,1,157 +24334422,"ROOM with a VIEW! +LOCATION LOCATION!",17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76169,-73.98839,Private room,120,3,16,2019-05-19,1.11,3,89 +24334634,River and Park Views from Balcony,3220590,Nova,Manhattan,Morningside Heights,40.80798,-73.96585,Entire home/apt,95,7,0,,,1,0 +24335248,sweetheart studio,183610844,Helen,Queens,Fresh Meadows,40.72688,-73.79198,Private room,50,2,6,2019-07-03,0.42,1,51 +24336051,"UWS Gem by Lincoln Center, Julliard & Central Park",183617557,Christine,Manhattan,Upper West Side,40.77598,-73.98917,Entire home/apt,299,3,29,2019-01-22,1.96,1,6 +24337254,COZY THREE BEDROOM APT NEAR JFK AIRPORT,183633639,Nydia,Queens,Richmond Hill,40.69004,-73.83368,Entire home/apt,138,1,28,2019-06-22,1.88,1,347 +24339196,••Cozy Em’s place••,174492861,Siri,Queens,Jackson Heights,40.74939,-73.88155,Private room,42,2,43,2019-06-23,2.87,2,33 +24345718,Heart Of New York City,183699341,Ray,Manhattan,Hell's Kitchen,40.75781,-73.99751,Private room,175,1,6,2018-05-21,0.41,1,365 +24347151,Good Vibes private room,4891915,Yohana,Brooklyn,Bedford-Stuyvesant,40.6947,-73.94319,Private room,85,3,36,2019-07-06,2.44,1,69 +24348078,Large and bright room 15 min away from Manhattan,176427055,Adam,Queens,Astoria,40.76649,-73.92643,Private room,74,1,102,2019-07-07,6.77,1,348 +24348514,For All Classical Lover's 2,96694697,Glory,Brooklyn,Sheepshead Bay,40.60759,-73.96023,Private room,65,2,11,2019-03-01,0.77,2,156 +24349922,Private Bedroom in Sunny Bushwick Apartment,29799151,Olivia,Brooklyn,Bushwick,40.70324,-73.91353,Private room,47,4,5,2018-10-25,0.36,2,0 +24351450,"Eclectic 1BR in Brooklyn, Steps to nightlife!",127532142,Meghan,Brooklyn,Bushwick,40.70473,-73.92069,Private room,85,3,33,2019-05-06,2.47,1,7 +24351719,LES 2 BR Penthouse New Construction,87585422,Dan,Manhattan,Lower East Side,40.72081,-73.98461,Entire home/apt,975,4,8,2019-05-18,0.64,1,164 +24352862,Brooklyn Museum of Art 2 Bedroom Gem!,183751102,Rose,Brooklyn,Crown Heights,40.67102,-73.96172,Entire home/apt,130,4,8,2019-06-09,0.56,1,353 +24352967,"Bed n Bath, 4 mins to 2,5,3,4 trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65435,-73.93785,Private room,70,3,3,2019-01-02,0.30,5,365 +24355118,"Nice, clean, spacious room in Manhattan",55503144,José,Manhattan,East Harlem,40.79645,-73.94803,Private room,70,15,0,,,1,0 +24355153,Rockaway Beach Escape - Beach/City Views,183388833,Welecia,Queens,Rockaway Beach,40.58898,-73.80576,Entire home/apt,179,2,34,2019-03-24,2.37,1,205 +24355169,HUGE Modern Room/office/studio w Private Entrance,43037915,Edward,Brooklyn,Crown Heights,40.66371,-73.95698,Private room,300,2,0,,,1,0 +24356390,Bright Modern clean convenient Brooklyn Location,138607228,Edward,Brooklyn,Bushwick,40.69432,-73.90658,Entire home/apt,150,2,17,2018-08-26,1.15,3,0 +24356663,Modern Clean beautiful 15min to center of NYC,138607228,Edward,Brooklyn,Bushwick,40.6941,-73.90756,Entire home/apt,99,2,51,2019-04-14,3.45,3,0 +24356861,COZY & BEAUTIFUL 1bdrm in Upper NYC,6517654,Erin,Manhattan,Washington Heights,40.8385,-73.94288,Entire home/apt,125,3,6,2019-05-29,0.42,1,0 +24357412,Cozy 1bdr in the heart of Upper East Side,10711933,Nodar,Manhattan,Upper East Side,40.77021,-73.95173,Entire home/apt,170,3,3,2019-05-24,0.21,1,0 +24357562,Cozy Apartment- Lower East Side near F/M/J/Z :),19940836,Justin,Manhattan,Lower East Side,40.71848,-73.98439,Private room,89,1,21,2019-01-29,1.41,1,2 +24358122,Brooklyn apartment living room for rent,30075148,Yating,Brooklyn,Williamsburg,40.70695,-73.94524,Private room,50,7,1,2018-04-27,0.07,1,0 +24358619,UWS Studio - Great Neighborhood!,106837455,Lisa,Manhattan,Upper West Side,40.78489,-73.982,Entire home/apt,90,90,0,,,8,0 +24359329,Gorgeous Room in Wburg!,56202220,Guille,Brooklyn,Williamsburg,40.71196,-73.95424,Private room,80,3,1,2019-06-18,1,1,20 +24360039,Lovely Cozy Studio Upper East Side Manhattan,150629197,Lana,Manhattan,Upper East Side,40.77634,-73.94713,Entire home/apt,168,14,17,2019-05-18,1.18,2,95 +24360112,Comfortable bedroom in Railroad style apartment,183833039,Miguel,Brooklyn,Bushwick,40.69987,-73.91404,Private room,100,1,0,,,1,341 +24360537,Lovely cozy studio in Upper East Side,150629197,Lana,Manhattan,Upper East Side,40.77759,-73.94688,Entire home/apt,118,3,1,2018-04-13,0.07,2,0 +24366289,Art apartment,183707967,Dionyssios,Manhattan,Washington Heights,40.85329,-73.9291,Entire home/apt,150,2,29,2019-06-21,1.96,4,127 +24366897,Modern & Stylish 1 Bed Manhattan w/ Private Garden,183886601,Lee,Manhattan,Inwood,40.87001,-73.92418,Entire home/apt,120,30,3,2019-03-03,0.22,2,27 +24367113,( Private Garden ) Where Hansel and Gretel live.,3540748,Ron,Manhattan,Upper East Side,40.78026,-73.954,Entire home/apt,175,2,4,2018-12-09,0.28,1,354 +24367577,Clinton Hill Dream House,3074904,Lauren & Chelsea,Brooklyn,Clinton Hill,40.6844,-73.96221,Entire home/apt,190,2,10,2019-01-27,0.77,4,12 +24369797,"2BR APARTMENT IN THE CITY, NEXT TO CENTRAL PARK!",178178426,Tiago,Manhattan,East Harlem,40.79208,-73.94642,Entire home/apt,195,1,73,2019-06-23,5.03,1,146 +24369857,The corner house,2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69372,-73.9485,Entire home/apt,112,3,65,2019-07-07,4.62,3,219 +24370001,Stunning Rare Garden Family Home w/Loft! #10303,8961407,Jamie,Manhattan,Harlem,40.80569,-73.94848,Entire home/apt,450,3,38,2019-07-01,3.21,3,302 +24370468,July and August 2bdr beautiful apt Upper East Side,521594,Valeria,Manhattan,Upper East Side,40.77905,-73.94754,Private room,200,15,0,,,1,34 +24370692,Bright Room in Artist's Loft,8973065,Rachel,Brooklyn,Williamsburg,40.70343,-73.93412,Private room,45,5,5,2018-11-26,0.35,1,0 +24372235,Newly Renovated Cozy studio in lower east side #9,158969505,Karen,Manhattan,Lower East Side,40.72192,-73.9928,Entire home/apt,150,30,3,2018-12-29,0.24,9,310 +24372429,"Spacious, Charming 2BR Apt in Trendy Bushwick",10197436,Chris,Brooklyn,Bushwick,40.68652,-73.91212,Entire home/apt,99,2,71,2019-07-06,4.80,1,140 +24373602,"Bright, Charming Greenpoint Home-Away-From-Home",8409547,Courtney,Brooklyn,Greenpoint,40.73081,-73.95184,Entire home/apt,100,2,3,2019-03-08,0.20,1,2 +24373776,Spacious bedroom in Washington Heights,6024063,Bree,Manhattan,Washington Heights,40.84821,-73.94153,Private room,50,2,1,2019-07-06,1,1,25 +24374428,Quiet two BEDROOM APT in MANHATTAN UPPER EAST SIDE,183950956,Dante,Manhattan,Roosevelt Island,40.75916,-73.95124,Entire home/apt,220,1,76,2019-06-24,5.30,1,60 +24374487,Lex place,33587458,Liron,Brooklyn,Bedford-Stuyvesant,40.69138,-73.92617,Entire home/apt,123,3,6,2019-06-24,0.53,1,0 +24376295,Studio Apartment in Bed Stuy!,25741946,Ellie,Brooklyn,Bedford-Stuyvesant,40.68073,-73.92804,Entire home/apt,110,1,2,2018-12-31,0.19,1,0 +24376374,Welcome to YURT -- cozy room in East Village,3436710,Kaptan,Manhattan,East Village,40.72433,-73.97688,Private room,120,1,18,2019-06-14,1.22,2,28 +24376945,Harlem Studio,21766565,Paula,Manhattan,Harlem,40.82934,-73.94269,Entire home/apt,110,2,29,2019-06-19,1.97,1,200 +24377683,Sunny Bedroom at Union Square,21410546,Hong Ngoc,Manhattan,Chelsea,40.737,-73.99407,Private room,85,2,4,2018-06-10,0.27,1,0 +24378358,NYC Time's Square Luxury Pent House Apartment,183989835,Marcus,Manhattan,Midtown,40.76419,-73.97455,Entire home/apt,299,3,22,2019-05-28,1.62,1,278 +24378513,Sunny Spacious Private Bedroom in Brooklyn,714531,Gabriel,Brooklyn,Prospect-Lefferts Gardens,40.65618,-73.95664,Private room,55,4,26,2019-06-24,1.81,1,73 +24378806,Cozy Brooklyn Witchy Apartment (Pet Friendly),27923193,Elisabeth,Brooklyn,Crown Heights,40.67085,-73.92316,Private room,47,1,9,2018-11-03,0.61,1,0 +24379279,Spacious Room,184000316,Ebony,Brooklyn,East New York,40.66972,-73.88393,Private room,55,1,1,2018-08-28,0.09,1,87 +24379887,"SUITE- PRIVATE 1/2 BATH, 4 BEDS IN WILLIAMSBURG!!",184004979,Ken And Andy,Brooklyn,Williamsburg,40.70914,-73.961,Private room,130,3,59,2019-06-19,3.93,2,282 +24380012,Cozy Brooklyn Apt (Near JFK/Manhattan/Times Sqr),73592174,Mark,Brooklyn,Midwood,40.61167,-73.95803,Private room,40,1,4,2018-12-24,0.29,1,84 +24380794,Trendy Williamsburg! 1 block to subway (L).,184009385,Artem,Brooklyn,Williamsburg,40.71434,-73.94275,Entire home/apt,150,2,48,2019-06-21,3.27,2,53 +24387380,Spacious private room close to lots of cool spots,30523475,Michael Daae,Brooklyn,Williamsburg,40.71008,-73.96175,Private room,70,5,3,2018-05-07,0.20,1,0 +24387440,Midtown East Prime UN Location,184065290,Keren,Manhattan,Midtown,40.75418,-73.9664,Entire home/apt,180,30,16,2018-12-12,1.08,1,3 +24387826,A Big Welcome from Lower East Side and Chinatown!,151507961,Demi,Manhattan,Chinatown,40.7139,-73.9912,Private room,90,2,60,2019-04-29,4.35,1,1 +24388099,Grand Central Brand New 2-Bedroom Apartment (5R),2269233,Heather,Manhattan,Murray Hill,40.74922,-73.97744,Entire home/apt,120,30,1,2018-08-12,0.09,1,47 +24391756,Sunny Apartment in Park Slope,20813915,Kimberly,Brooklyn,South Slope,40.66409,-73.9909,Entire home/apt,145,1,90,2019-07-08,5.97,1,212 +24392320,Christmas Week ONLY! Spacious Sunnyside 2 Bdrm Apt,19847523,Mayra,Queens,Sunnyside,40.74686,-73.91283,Entire home/apt,100,2,0,,,1,0 +24392338,Amazing East Village Xtra Large Studio Apartment!,160356,Joseph,Manhattan,East Village,40.72361,-73.9847,Entire home/apt,150,1,108,2019-07-04,7.55,4,201 +24392461,Master bedroom W/ Ensuite in centre of EVERYTHING,24405003,Bianca,Manhattan,Chinatown,40.7138,-73.99371,Private room,125,3,4,2018-10-16,0.31,3,90 +24392740,"Large room 20min time square, fast WiFi, AC, Desk",110088704,Brandon,Manhattan,Harlem,40.82244,-73.95262,Private room,60,1,28,2019-05-28,1.91,1,21 +24392856,Sunny Crown Heights Studio,55924743,Hannah,Brooklyn,Crown Heights,40.67673,-73.9447,Entire home/apt,150,2,3,2018-05-28,0.20,1,0 +24393653,SPECIOUS ONE BEDROOM IN THE HEART OF CHELSEA,95108020,Maya,Manhattan,Chelsea,40.74549,-73.99114,Private room,190,4,37,2019-06-30,2.68,1,28 +24393933,"LINCOLN CENTER, FORDHAM, JUILLIARD SCOOL",184119295,Manhattan,Manhattan,Upper West Side,40.77213,-73.98265,Entire home/apt,145,12,1,2019-01-05,0.16,1,289 +24395202,Large Manhattan Suite,184130293,Sandia,Manhattan,Inwood,40.86408,-73.92257,Private room,50,30,3,2019-03-05,0.21,2,0 +24395331,"Comfortable king bedroom, office, and kids' room",6059987,Andrew,Brooklyn,Crown Heights,40.67718,-73.95566,Private room,95,1,2,2018-07-20,0.17,1,0 +24397502,SUNNY ROOM IN WILLIAMSBURG - 1 BLOCK TO METRO!!,184004979,Ken And Andy,Brooklyn,Williamsburg,40.7102,-73.96222,Private room,91,2,68,2019-06-23,4.54,2,337 +24397657,Brooklyn Townhouse Apartment in Trendy Bushwick.,30927892,Emily,Brooklyn,Bushwick,40.68865,-73.9081,Entire home/apt,145,4,40,2019-06-20,2.80,1,38 +24397824,Cozy private Bedroom in upper Manhattan!,72423116,Isabelle,Manhattan,Morningside Heights,40.80385,-73.96499,Private room,100,1,17,2019-06-26,1.36,1,31 +24398061,Cute and Cozy Bushwick BR,53163551,Amanda,Brooklyn,Bushwick,40.70037,-73.91751,Private room,35,14,4,2018-06-16,0.28,1,0 +24398725,Relaxing place for recharge energy,110907551,Maria,Manhattan,Midtown,40.74515,-73.9813,Private room,120,1,12,2019-06-27,5.00,2,156 +24402527,Cozy Brooklyn Studio,184204269,Donna,Brooklyn,East Flatbush,40.63718,-73.94061,Entire home/apt,69,2,36,2019-06-09,2.46,1,229 +24403784,Clean and comfy bedroom in the waste free home.,21663531,Dana,Queens,Ridgewood,40.70778,-73.90323,Private room,50,2,4,2019-04-12,0.40,2,293 +24405674,"""San-Paraíso"" 80s curated Retro 3 Bedroom LES Pad",19259290,Minh,Manhattan,Lower East Side,40.71499,-73.98986,Private room,290,1,99,2019-07-01,6.96,1,70 +24405962,For all classical lover's 4,96694697,Glory,Brooklyn,Sheepshead Bay,40.60791,-73.96012,Private room,50,2,4,2019-06-29,0.29,2,358 +24408535,Penthouse duplex on Bowery with huge terrace.,408485,Justin,Manhattan,East Village,40.72709,-73.99074,Entire home/apt,545,2,1,2019-06-23,1,1,177 +24408644,Spacious Apartment in Brooklyn,184264303,Olie,Brooklyn,Flatlands,40.62392,-73.93554,Entire home/apt,200,1,28,2019-07-07,2.02,1,265 +24409066,Enormous Duplex in Park Slope (2-3 month sublet),49405,Peter,Brooklyn,Park Slope,40.6757,-73.97473,Entire home/apt,180,60,0,,,1,0 +24412104,Cozy feel at home studio,91034542,Maureen,Manhattan,Kips Bay,40.74408,-73.97803,Private room,10,5,42,2019-06-30,2.87,1,2 +24412681,Cozy SI den with multiple and easy access to NYC,184233409,Lisa,Staten Island,Port Richmond,40.63275,-74.13681,Private room,47,2,13,2019-05-30,0.96,1,283 +24412825,Modern Super Clean Midtown Apt in the Heart of NYC,6451492,Tom,Manhattan,Upper East Side,40.76129,-73.9652,Entire home/apt,175,2,54,2019-03-27,3.72,1,0 +24413589,Peaceful place 10min. from Center of New York City,72872297,Zamira,Queens,Long Island City,40.75558,-73.93643,Private room,75,2,67,2019-07-01,4.93,1,11 +24414462,Clean,156505456,John,Brooklyn,East New York,40.66244,-73.88904,Private room,45,3,15,2019-06-03,1.05,13,365 +24420139,401 east 60th,165898555,Honey,Manhattan,Upper East Side,40.75972,-73.96021,Entire home/apt,275,30,1,2018-05-24,0.07,7,364 +24421357,Private Clean Room near Yankee Stadium.,10534760,Lois,Bronx,Morrisania,40.83139,-73.90166,Private room,23,2,18,2019-07-02,1.25,1,36 +24424607,"Next to Strawberry Fields, Central Park Manhattan",409965,Juan Carlos,Manhattan,Upper West Side,40.77829,-73.97794,Private room,95,6,11,2019-06-30,0.76,1,219 +24424840,◈Hidden Midtown Gem◈ Perfect 5-Star Stay!,148272313,Steven,Manhattan,Murray Hill,40.74519,-73.97676,Entire home/apt,199,2,65,2019-07-01,4.95,1,92 +24426350,Central Harlem Modern Oasis,16908803,Brittany,Manhattan,Harlem,40.81448,-73.93714,Entire home/apt,130,6,2,2018-06-19,0.14,1,0 +24426631,Gem Of A Hideout With Private Deck/Garden,165884816,Kelsey,Brooklyn,Williamsburg,40.71975,-73.96136,Entire home/apt,161,2,10,2019-01-02,0.69,1,0 +24428060,Sweet Home Away From Home,120371644,Natasha,Brooklyn,Sheepshead Bay,40.59143,-73.95548,Private room,65,2,52,2019-06-24,3.57,2,340 +24428782,Quiet and Sunny room in the best part of Brooklyn,184467900,Yumiko,Brooklyn,Greenpoint,40.73276,-73.95304,Private room,60,3,39,2019-07-05,2.83,1,43 +24428965,Modern & Spacious Apartment in Central Harlem,22460686,Diane & Brice,Manhattan,Harlem,40.81716,-73.94279,Entire home/apt,165,3,33,2019-06-03,2.30,1,192 +24430382,"HOTEL ROOM LIKE!! WITH AFFORDABLE RATE!! ""O""",59156312,Viviana,Queens,Woodhaven,40.68614,-73.86682,Private room,69,3,31,2019-06-22,2.16,9,348 +24430667,Spacious bedroom in Beautiful Prospect Lefferts,111938058,James,Brooklyn,Prospect-Lefferts Gardens,40.65926,-73.96252,Private room,100,3,14,2019-06-23,0.98,1,364 +24430682,Bedroom Casa Alvarez,179026754,Maria,Brooklyn,Williamsburg,40.7118,-73.96344,Private room,89,2,23,2019-06-30,2.00,1,103 +24431205,"A cozy private room, close to Columbia!",20267412,Minami,Manhattan,Morningside Heights,40.80868,-73.95801,Private room,55,4,2,2018-08-17,0.16,1,0 +24431214,две кровати в комнате,32168079,Ivan,Brooklyn,Sheepshead Bay,40.58765,-73.94881,Shared room,37,30,0,,,3,84 +24431407,Beautiful large room in quiet in Astoria,184496160,Edwin,Queens,Astoria,40.76031,-73.91702,Private room,80,7,0,,,1,0 +24432069,"Private bathroom with balcony,15mins to Manhattan",103488282,Kaka,Queens,Sunnyside,40.7467,-73.92076,Private room,80,1,34,2019-06-19,2.49,5,262 +24432539,"Front Big Private Room # 2, size 13x17, 3 Windows",43825074,Masud,Brooklyn,Cypress Hills,40.68599,-73.87734,Private room,37,28,6,2019-06-15,0.43,3,356 +24432685,New nice bedrooms in 2 bedroom apt. 1R,122498535,Gf,Brooklyn,East Flatbush,40.655,-73.92764,Private room,40,30,3,2019-06-21,0.23,3,288 +24438437,Private Bedroom NYC 10 mins to Williamsburg,53781263,Oscar,Queens,Ridgewood,40.70197,-73.90377,Private room,60,1,7,2019-01-02,0.48,2,85 +24438564,Chic one Bedroom apartment NYC,53781263,Oscar,Queens,Ridgewood,40.70142,-73.90515,Entire home/apt,90,1,22,2019-06-30,1.64,2,5 +24441860,"East 12th street, Lux 1bd in Greenwich Village",22541573,Ken,Manhattan,East Village,40.73399,-73.99002,Entire home/apt,245,30,1,2018-11-05,0.12,87,357 +24441912,"Private basement suite on Striver's Row, Harlem",9949215,Jake,Manhattan,Harlem,40.81667,-73.94225,Entire home/apt,175,5,39,2019-07-05,2.68,1,90 +24444586,Speakeasy Inn Bushwick Three,24020292,Cristiano,Brooklyn,Bushwick,40.70064,-73.91828,Private room,50,1,27,2019-06-03,1.94,4,55 +24445770,Cozy Comfort in the Heart of Greenpoint Brooklyn,89031106,Edyta,Brooklyn,Greenpoint,40.72198,-73.94911,Entire home/apt,210,30,2,2019-06-03,0.13,4,354 +24445876,Shoot. Film. Sleep. Unique Loft Space in Brooklyn.,59463190,Home Studios,Brooklyn,Bedford-Stuyvesant,40.69268,-73.93848,Entire home/apt,350,1,12,2019-04-21,0.86,1,89 +24448560,Room in Hamilton Heights Apr 20-May 20 (flexible),76409499,Kelly,Manhattan,Harlem,40.82502,-73.95155,Private room,45,7,1,2018-05-23,0.07,1,0 +24449621,fifth ave,184653310,Amit,Manhattan,Midtown,40.75775,-73.97956,Entire home/apt,300,7,14,2019-06-14,0.98,1,85 +24451302,Light-filled apartment in heart of Crown Heights,107802009,Luis,Brooklyn,Crown Heights,40.6752,-73.95231,Entire home/apt,155,3,6,2018-07-29,0.45,2,0 +24452770,Cozy Brooklyn Studio with lots of light,212420,Armine,Brooklyn,Boerum Hill,40.68944,-73.98904,Entire home/apt,125,3,3,2019-01-02,0.21,1,0 +24453838,Williamsburg Apartment with Panoramic View/Rooftop,184694715,Ulker,Brooklyn,Williamsburg,40.71692,-73.94132,Entire home/apt,225,3,25,2019-06-29,1.80,1,157 +24454114,Walter’s place,54548626,Mia,Queens,Flushing,40.75499,-73.78902,Private room,90,1,68,2019-06-21,4.55,1,299 +24454304,Cozy shared apartment close to Midtown!,141765510,Rebecca,Queens,Astoria,40.76343,-73.92248,Shared room,110,4,3,2018-09-01,0.22,1,0 +24455779,Chic & Cozy Brooklyn Apartment,27532205,Nichole,Brooklyn,Bushwick,40.68994,-73.90526,Private room,65,1,8,2019-07-06,3.08,1,106 +24460450,The Cozy Apartment; limited time offer 10 off.,112843970,Rhonda,Brooklyn,Cypress Hills,40.67765,-73.89327,Entire home/apt,125,3,48,2019-06-04,3.36,2,294 +24464665,Spacious private bedroom with high ceilings,28046572,Dier,Brooklyn,Bedford-Stuyvesant,40.68869,-73.93449,Private room,35,20,1,2018-07-16,0.08,1,0 +24465831,New Cozy Quite Studio with Huge Secluded Yard,81712936,Allie,Manhattan,Upper East Side,40.78028,-73.94769,Entire home/apt,150,3,26,2019-05-24,1.91,2,340 +24470373,Large Bedroom Apartment with a Private Bathroom,42993745,Paul,Manhattan,Upper East Side,40.77515,-73.95299,Entire home/apt,299,4,1,2019-01-02,0.16,2,0 +24471239,Beautiful brownstone room,24421834,Andrea,Brooklyn,Crown Heights,40.67716,-73.93885,Private room,50,7,0,,,1,0 +24472398,Sunny Apt/Park Slope Brooklyn 25 min. ride to city,96810536,Chandtisse,Brooklyn,Gowanus,40.66623,-73.99267,Private room,60,2,49,2019-06-24,3.30,3,74 +24472562,"Perfect home by Prospect Park ,Brooklyn",37535886,Dana,Brooklyn,Flatbush,40.65291,-73.95285,Private room,59,2,36,2019-06-05,2.48,1,17 +24473230,Beautifully designed + renovated 3 bedroom home,184853043,Shannon,Brooklyn,Kensington,40.64655,-73.97252,Entire home/apt,250,2,31,2019-07-02,2.88,1,58 +24473606,Perfect Sunny 1BR in the Treetops,3469364,Joe,Manhattan,NoHo,40.72547,-73.99284,Entire home/apt,185,10,1,2019-05-23,0.64,1,57 +24474325,25 min to midtown Manhattan with 7 train.,66808561,Serdar,Queens,Woodside,40.74579,-73.8997,Private room,60,2,6,2019-06-02,0.43,1,0 +24475318,Wall Street Luxuriuos apartment Financial District,173369078,Tina,Manhattan,Financial District,40.70587,-74.0118,Private room,139,3,15,2019-07-07,1.01,1,338 +24475331,New condo-City view-Balcony&elevator,55149412,Ha,Manhattan,Chinatown,40.71585,-73.99492,Private room,80,1,14,2019-06-30,0.96,4,234 +24476209,Inexpensive Private Room with NYC / SIUH Access #2,104812805,Amarjit S,Staten Island,Arrochar,40.59761,-74.08347,Private room,33,4,6,2019-03-26,0.41,8,285 +24477757,Large Private Room in a Magnificent Penthouse NYC2,169382341,Tomás,Manhattan,East Village,40.722,-73.98396,Private room,89,5,11,2019-06-27,0.84,2,76 +24479063,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""A""",59156312,Viviana,Queens,Woodhaven,40.68783,-73.86679,Private room,69,3,28,2019-06-24,1.95,9,359 +24489174,"Comfortable,Spacious,clean Private Room",184523531,June,Manhattan,East Harlem,40.79578,-73.94523,Private room,68,2,31,2019-06-23,2.10,1,265 +24491178,SoHo 1 Bedroom,20044199,John,Manhattan,SoHo,40.72503,-74.0013,Entire home/apt,185,3,26,2019-06-21,1.81,1,42 +24491450,Greenpoint Delight,4831440,Caroline,Brooklyn,Greenpoint,40.72152,-73.94945,Entire home/apt,100,4,12,2019-06-23,0.92,1,0 +24491624,"43rd Street=TIME SQUARE +PRIVATE BEDROOM",30985759,Taz,Manhattan,Hell's Kitchen,40.7578,-73.99211,Private room,116,1,95,2019-07-04,6.42,6,280 +24492814,Cozy apartment in Williamsburg,362457,Brad,Brooklyn,Williamsburg,40.71514,-73.9641,Entire home/apt,140,2,54,2019-06-30,4.06,1,180 +24493058,2 Bedroom furnished NY apt w/ private balcony,4110677,Justin,Manhattan,Harlem,40.8082,-73.94252,Entire home/apt,225,7,1,2018-09-30,0.11,2,253 +24493475,"Enjoy Cozy, Quiet, Safe & Convenient Living in NYC",185022050,Chi,Brooklyn,Bensonhurst,40.61266,-73.98677,Entire home/apt,99,30,5,2019-04-13,0.36,1,320 +24493582,Charming beautiful studio perfect location!!,26584499,Ofir,Manhattan,Upper West Side,40.78382,-73.98235,Entire home/apt,135,30,0,,,8,290 +24493940,Private Bedroom with En Suite Bath on Central Park,1114587,Keenan & Emily,Manhattan,Upper West Side,40.79591,-73.96204,Private room,90,2,9,2019-06-12,0.62,3,181 +24494062,Modern LOFT in Fort Greene,6257521,V And J,Brooklyn,Clinton Hill,40.69325,-73.96863,Entire home/apt,160,3,3,2018-10-29,0.24,1,8 +24494717,Central Park Apt w/ Patio + Washer/Dryer,2450194,Brittany,Manhattan,Upper West Side,40.79,-73.96851,Entire home/apt,148,2,5,2018-11-25,0.34,1,2 +24495291,Bedstuy Hideaway,43253307,Nandi,Brooklyn,Bedford-Stuyvesant,40.68785,-73.93948,Private room,60,30,27,2018-09-28,1.88,1,0 +24495605,Brooklyn Art Residence,75173477,Lara,Brooklyn,Bushwick,40.69932,-73.91191,Entire home/apt,200,3,7,2019-05-05,0.48,1,6 +24497080,Corporate Studio Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75393,-73.96612,Entire home/apt,125,30,5,2019-05-14,0.34,91,304 +24497152,Stunning Elevator 2 Bedroom Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75569,-73.96679,Entire home/apt,150,30,1,2018-06-29,0.08,91,332 +24497202,Brand New apt heart of Manhattan,61391963,Corporate Housing,Manhattan,Kips Bay,40.74471,-73.98027,Entire home/apt,125,30,4,2019-06-14,0.32,91,346 +24497265,Brand New Executive Studio,61391963,Corporate Housing,Manhattan,Murray Hill,40.74651,-73.97868,Entire home/apt,125,30,3,2019-05-31,0.50,91,342 +24497815,Prime Upper east~2BR~ newly furnished,162280872,Izi,Manhattan,Upper East Side,40.77458,-73.94769,Entire home/apt,185,30,0,,,13,161 +24498097,Sweet Home Away From Home,120371644,Natasha,Brooklyn,Sheepshead Bay,40.5917,-73.95536,Private room,65,2,38,2019-06-23,2.57,2,306 +24498872,Charming Upper West Studio,185067271,Jared,Manhattan,Upper West Side,40.78612,-73.97011,Entire home/apt,85,30,6,2019-05-14,0.56,1,15 +24508874,"HOTEL ROOM LIKE!!! WITH AFFORDABLE RATE!!! ""P""",59156312,Viviana,Queens,Woodhaven,40.68654,-73.86672,Private room,89,3,29,2019-06-22,2.00,9,355 +24509757,Wonderful 3 bed 1.5 baths 20 Mins to Times Square!,1273890,Sergio,Manhattan,Washington Heights,40.85081,-73.9368,Entire home/apt,150,30,0,,,2,339 +24510046,NYC with a view,5485647,Chris,Manhattan,Hell's Kitchen,40.76206,-73.99775,Entire home/apt,300,3,2,2019-05-19,0.14,1,0 +24512493,"Private room at Roselle, in the Bronx",175152359,Massiel,Bronx,Westchester Square,40.84367,-73.84911,Private room,65,2,11,2019-06-15,1.11,2,158 +24514134,紐約哥大週邊優質短租,16828799,哲緯,Manhattan,Morningside Heights,40.8058,-73.9647,Entire home/apt,110,10,0,,,1,0 +24514490,"Newly renovated 1 bedroom, steps to Prospect Park",258674,Melissa,Brooklyn,Windsor Terrace,40.65871,-73.9789,Entire home/apt,125,3,15,2018-12-21,1.15,1,65 +24515198,Sunny bedroom in a designer apartment,185189643,Swann,Queens,Sunnyside,40.7461,-73.91983,Private room,75,3,79,2019-07-03,5.44,1,84 +24515524,Affordable Modern/Luxury 2 Bedroom Apt,58097815,Gesner,Brooklyn,Bedford-Stuyvesant,40.68771,-73.92281,Entire home/apt,145,2,73,2019-06-21,4.95,1,219 +24518005,Brooklyn Beautiful private room!!,4576234,Nami,Brooklyn,Crown Heights,40.67535,-73.94992,Private room,65,2,1,2018-12-31,0.16,1,0 +24520558,Sonder | Hanover Square | Cozy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70533,-74.00923,Entire home/apt,142,29,1,2018-08-15,0.09,96,353 +24520702,One Bedroom Apartment in Greenpoint,9010955,Lindsey,Brooklyn,Greenpoint,40.73556,-73.95726,Entire home/apt,200,2,5,2019-05-12,0.37,2,7 +24521322,Sonder | Hanover Square | Sun-Filled 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70551,-74.00839,Entire home/apt,225,29,0,,,96,1 +24521630,THE PONDEROSA PALACE,83921231,B,Manhattan,Hell's Kitchen,40.76152,-73.98758,Entire home/apt,235,2,49,2019-06-25,3.70,1,283 +24521752,New York City with the bird view,180700434,Luba,Manhattan,Upper East Side,40.78119,-73.95121,Entire home/apt,200,4,0,,,1,83 +24522061,Private space in luxury apartment with river view,63189852,Marshall,Manhattan,Roosevelt Island,40.76811,-73.94483,Private room,50,7,3,2018-08-04,0.23,1,0 +24523422,Urban Place,160495098,Miller,Brooklyn,East Flatbush,40.63532,-73.94924,Private room,36,2,1,2018-06-10,0.08,5,0 +24524252,Private Modern Studio in heart of Flatbush,296491,Ely,Brooklyn,Midwood,40.61673,-73.96491,Entire home/apt,75,2,23,2019-05-27,1.55,2,49 +24525249,Sunny Room in heart of hippest Manhattan 'hood,9913035,George,Manhattan,Lower East Side,40.7213,-73.98862,Private room,60,15,8,2019-06-16,0.68,3,260 +24525290,Paradise in New York City,185265758,Shama,Manhattan,Harlem,40.82156,-73.94966,Entire home/apt,247,2,82,2019-07-06,5.68,2,266 +24525356,Cozy Brooklyn Greenpoint Apt.15 min to Manhattan,185267820,Alfredo,Brooklyn,Greenpoint,40.72339,-73.94322,Entire home/apt,295,1,52,2019-07-06,3.83,1,161 +24525886,Comfy Room with Private Insuite Bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69616,-73.93438,Private room,80,3,22,2019-06-24,1.54,7,96 +24526035,"HOTEL ROOM LIKE!! WITH AFFORDABLE RATE!! ""R""",59156312,Viviana,Queens,Woodhaven,40.68765,-73.865,Private room,99,3,24,2019-06-10,1.64,9,343 +24527051,Amazing Brooklyn,100565897,Myrna,Brooklyn,Sheepshead Bay,40.60399,-73.94523,Private room,36,7,3,2018-08-14,0.24,2,29 +24528199,Global Beat Apartment Hideaway in Manhattan,3464645,Sybilla Michelle,Manhattan,Chelsea,40.74732,-73.9999,Entire home/apt,400,2,0,,,3,0 +24531719,Minimalism in the heart of a great neighborhood,6525229,Josh,Manhattan,Chinatown,40.7177,-73.99246,Private room,73,3,1,2018-04-21,0.07,1,37 +24532484,"1 bedroom, blocks from Central Park and subways.",14405060,Corinne,Manhattan,Upper East Side,40.77359,-73.95143,Entire home/apt,117,3,7,2018-08-15,0.50,1,0 +24535218,"Luxury Tribeca 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71433,-74.01073,Entire home/apt,323,30,0,,,232,316 +24535740,TV-PHOTO-FILM-CINEMA-ART GALLERY-MUSIC STUDIO-LOFT,183779546,David & Javier,Brooklyn,Williamsburg,40.71824,-73.95175,Entire home/apt,1000,1,9,2019-04-27,0.66,1,88 +24535821,prime upper west Cozy Studio deal,26584499,Ofir,Manhattan,Upper West Side,40.7826,-73.98228,Entire home/apt,100,31,0,,,8,50 +24535857,Sonder | 21 Chelsea | Charming 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74081,-73.99616,Entire home/apt,265,29,0,,,96,331 +24537187,Sonder | The Biltmore | Quaint Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70561,-74.0086,Entire home/apt,145,29,4,2019-05-23,0.42,96,341 +24537721,Sonder | 21 Chelsea | Elegant 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7409,-73.99596,Entire home/apt,255,29,0,,,96,296 +24537860,Sonder | Hanover Square | Modern 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70563,-74.0078,Entire home/apt,209,29,3,2019-04-30,0.26,96,328 +24538110,Bright Open 2BR In Charming Greenwich Village,12156706,Kevin,Manhattan,Greenwich Village,40.72851,-74.0,Entire home/apt,300,2,3,2018-05-27,0.20,2,0 +24538208,Comfortable Studio Apt in Heart of East Village,20584520,Ben,Manhattan,East Village,40.72926,-73.98456,Entire home/apt,101,1,25,2019-05-22,1.74,1,363 +24538218,Sunny Room in Bed-Stuy close to everything!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.68209,-73.95731,Private room,60,7,11,2018-12-29,0.80,3,0 +24538627,Pleasant Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70503,-74.00698,Entire home/apt,185,29,0,,,96,31 +24539281,"43rd Street “TIME SQUARE” +Single bed.",30985759,Taz,Manhattan,Hell's Kitchen,40.75792,-73.99172,Shared room,65,1,108,2019-06-23,7.33,6,325 +24539732,Sharp 1BR in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70544,-74.00641,Entire home/apt,222,29,0,,,96,333 +24540842,High End Hilton Club in midtown Manhattan,6524762,Armstrong,Manhattan,Midtown,40.76487,-73.97857,Entire home/apt,250,1,9,2019-04-17,0.62,3,89 +24540935,A Beach House in Brooklyn,51068857,Derek,Brooklyn,Bedford-Stuyvesant,40.68297,-73.95251,Private room,80,1,0,,,1,5 +24541125,98th St. FULL apt with positive energy!,62100691,Samara,Manhattan,East Harlem,40.78572,-73.95018,Entire home/apt,140,5,11,2019-04-24,0.77,1,8 +24541153,Summer escape in Brighton Beach,30895980,Elena,Brooklyn,Brighton Beach,40.57644,-73.95551,Entire home/apt,110,2,8,2019-05-17,0.58,2,248 +24541262,Luxury apartment in the center of Manhattan,5997182,Paul,Manhattan,Murray Hill,40.74591,-73.97843,Entire home/apt,200,4,7,2019-02-27,0.52,1,166 +24541899,Clean and Comfortable Place to Rest in NYC!,52525653,Mike,Manhattan,Harlem,40.80565,-73.95197,Private room,100,2,73,2019-06-22,4.98,2,68 +24541992,Quaint Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70558,-74.00845,Entire home/apt,175,29,1,2019-05-05,0.45,96,290 +24542531,Sonder | 21 Chelsea | Lovely 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7423,-73.99603,Entire home/apt,255,29,0,,,96,345 +24543645,The oriental room in Greenpoint mins to Manhattan,182363374,Jimmy,Brooklyn,Greenpoint,40.72549,-73.95574,Private room,112,1,68,2019-06-29,4.74,7,27 +24545438,Private Room with En-Suite in Brooklyn Brownstone,30384092,Ian,Brooklyn,Crown Heights,40.66725,-73.95017,Private room,70,3,45,2019-06-24,3.33,1,135 +24550536,Private Studio w/Bathroom & Kitchenette,137130915,Tricia,Brooklyn,Fort Greene,40.6971,-73.97316,Private room,102,2,1,2018-04-29,0.07,1,0 +24553427,The Best little room in Brooklyn,49505120,Jordan,Brooklyn,Prospect Heights,40.67955,-73.97382,Private room,50,15,0,,,1,0 +24553891,Enjoy all of Manhattan. Big Apple! A Mini-MOMA!,68557372,Shannon,Manhattan,Harlem,40.80667,-73.95182,Entire home/apt,75,5,8,2019-04-24,0.66,2,9 +24554027,"Sunlit Room in Prospect Heights, Brooklyn",24587292,Rania,Brooklyn,Crown Heights,40.67652,-73.96198,Private room,974,7,0,,,2,0 +24555212,NEW Perfect shared male room for a long term I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.9884,Shared room,33,100,0,,,28,320 +24555741,"New York Room, Beautiful Upper West Side",185514817,Allison,Manhattan,Upper West Side,40.79856,-73.97174,Private room,55,5,2,2018-05-21,0.14,1,0 +24556525,Sunny Artist's Bedroom in Bushwick.,90937044,Teddy,Brooklyn,Bushwick,40.69943,-73.92192,Private room,50,2,16,2019-03-31,1.14,1,0 +24556756,Anita’s Funky Master Bedroom on Ocean Parkway,185524223,Anita,Brooklyn,Kensington,40.64196,-73.97467,Private room,62,1,95,2019-07-05,6.97,2,261 +24558117,Modern & Funky Brooklyn Nook,894712,Allison,Brooklyn,Crown Heights,40.67868,-73.95541,Entire home/apt,119,2,2,2018-08-05,0.15,1,0 +24558491,"Sunny private room in Red Hook, Brooklyn",39038649,Cristina,Brooklyn,Red Hook,40.67817,-74.00991,Private room,52,2,41,2019-06-08,2.94,1,3 +24559347,Spacious and bright bedroom,73079322,Guilda,Manhattan,Washington Heights,40.84365,-73.93982,Private room,45,3,1,2019-01-09,0.17,1,5 +24560314,Comfortable & Cozy Times Square Apt,19703783,Ben,Manhattan,Hell's Kitchen,40.76265,-73.98954,Entire home/apt,160,2,5,2019-04-21,0.36,1,70 +24560351,Brooklyn Apartment with Jaw-Dropping Rooftop,69767,Molly,Brooklyn,Clinton Hill,40.68059,-73.95848,Entire home/apt,162,3,10,2019-06-13,0.76,1,4 +24560488,Heart of Soho! Cute studio with clean finishes!,607217,Ross,Manhattan,SoHo,40.72789,-74.00275,Entire home/apt,205,4,15,2019-07-01,1.04,1,5 +24561063,Charming Bushwick Studio,1508253,Matt,Brooklyn,Bushwick,40.69403,-73.92673,Entire home/apt,86,4,4,2018-07-29,0.30,1,0 +24561311,Harlem Retreat Living Room NYC,17345576,Kimberly,Manhattan,Harlem,40.80322,-73.94488,Shared room,65,30,0,,,1,342 +24561322,Lower East Side Summer Rental,37580284,Jonathan,Manhattan,Lower East Side,40.71571,-73.98699,Entire home/apt,85,35,0,,,1,0 +24561950,Modern Apartment with wall-size windows,181111992,Van,Brooklyn,Flatbush,40.63033,-73.95724,Entire home/apt,61,3,2,2019-05-06,0.16,2,138 +24562197,Cozy room in 2bd apartment in UES,167025338,Ameer,Manhattan,Upper East Side,40.77163,-73.94897,Private room,75,14,6,2019-06-22,0.41,2,14 +24562495,summer(A套房私享一层closed to JFK&LGA&Citi Field#parking,62023756,Chang,Queens,Fresh Meadows,40.74622,-73.78297,Private room,79,1,35,2019-07-07,2.40,3,32 +24564608,NEW Private room on Manhattan. Breathtaking view!,39528519,Max,Manhattan,Lower East Side,40.70988,-73.98666,Private room,93,15,0,,,28,185 +24565942,"Nice, cozy and fresh shared male room on Manhattan",39528519,Max,Manhattan,Lower East Side,40.71158,-73.98888,Shared room,32,14,5,2019-04-10,0.76,28,341 +24569072,Chateau Le Hamilton Heights,185636316,Benjamin,Manhattan,Harlem,40.82291,-73.94256,Entire home/apt,119,7,6,2019-04-02,0.43,1,201 +24572398,"Sunny, Modern and Trendy Getaway Spot",10679309,Kirac,Brooklyn,Williamsburg,40.71181,-73.96677,Entire home/apt,150,4,6,2019-05-20,0.41,2,8 +24573069,Quiet apt in the middle of St Marks (East Village),65804,Ahmad,Manhattan,East Village,40.72957,-73.9882,Entire home/apt,129,7,12,2019-06-16,0.88,2,9 +24573377,Inexpensive Private Room with NYC / SIUH Access #1,104812805,Amarjit S,Staten Island,Arrochar,40.59757,-74.08434,Private room,35,4,11,2019-06-10,0.77,8,338 +24574987,Sunny bedroom at the heart of Harlem,6892560,Rebeca,Manhattan,East Harlem,40.80552,-73.94031,Private room,51,5,16,2019-06-29,1.12,1,17 +24575257,"Private, big, clean cozy room, in TIMES SQUARE",146182000,Shir,Manhattan,Theater District,40.75885,-73.98147,Private room,120,3,25,2018-11-03,1.72,1,0 +24575718,"15 min to NYC, beautiful bedroom 5 mins from LGA",170446723,Pamela,Queens,East Elmhurst,40.75906,-73.87771,Private room,78,1,4,2019-01-04,0.41,2,363 +24576230,Cozy 1BR in Historic Harlem,24046704,Hunter,Manhattan,Harlem,40.816,-73.94127,Entire home/apt,100,3,3,2018-10-14,0.23,1,0 +24577999,Best location Greenpoint apartment,179676509,Tiffany,Brooklyn,Greenpoint,40.72874,-73.95621,Entire home/apt,114,4,2,2018-06-07,0.15,1,0 +24580129,Quiet Space,143070465,Kai,Brooklyn,Bedford-Stuyvesant,40.6977,-73.94781,Private room,35,2,10,2018-10-11,0.70,1,0 +24580422,Bright and Cozy Studio in Murray Hill,10574166,Carolyn,Manhattan,Murray Hill,40.74681,-73.97629,Entire home/apt,150,2,17,2018-12-26,1.19,1,0 +24580806,"Angie Suite in the Heights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85054,-73.93956,Private room,75,3,13,2019-06-07,0.91,3,137 +24580838,Sunlit and Plant filled Williamsburg Railroad Apt,185512151,Pia,Brooklyn,Williamsburg,40.70743,-73.94206,Entire home/apt,128,4,6,2019-05-28,0.42,1,0 +24580943,"Sisters Suite in theHeights +Se habla Español",174986751,Angie,Manhattan,Washington Heights,40.85264,-73.93976,Private room,160,3,6,2019-06-25,0.44,3,123 +24582124,room in house,102287990,Andy,Brooklyn,Sunset Park,40.64499,-74.02437,Private room,100,30,0,,,1,365 +24583029,"Cosy,Elegant 1 Bedroom Apartment in heart of UES!",75302217,C-Van,Manhattan,Upper East Side,40.77883,-73.95528,Entire home/apt,199,3,10,2019-06-15,0.70,2,365 +24583519,Wild West Retreat in The Heart of Brooklyn,7939437,Izaac,Brooklyn,Bedford-Stuyvesant,40.68823,-73.95863,Private room,100,2,34,2019-06-25,2.45,1,59 +24583645,"Best Location, Cozy Modern Room in Midtown",48805583,Gareth,Manhattan,Midtown,40.7496,-73.98244,Entire home/apt,170,6,35,2019-06-30,2.48,1,0 +24588491,"Brooklyn, New York",119864371,Felicia,Brooklyn,Bedford-Stuyvesant,40.68401,-73.9244,Entire home/apt,99,3,44,2019-06-20,3.11,1,135 +24591995,Shared male room on Manhattan.Breathtaking view II,39528519,Max,Manhattan,Lower East Side,40.71098,-73.98696,Shared room,35,14,0,,,28,321 +24592583,In the heart of the West Village- cute apartment!,19068554,Jennifer,Manhattan,West Village,40.73608,-73.99997,Entire home/apt,175,3,18,2019-07-06,1.28,1,0 +24593351,Beautiful Gut Renovated NYC 1 Bedroom LOFT,105797483,Rachael,Manhattan,Midtown,40.7452,-73.98427,Entire home/apt,400,1,16,2019-06-30,1.14,1,47 +24594184,"Cozy Mott Haven-Steps from Subway, Total Privacy",185850609,Samuel,Bronx,Mott Haven,40.81011,-73.92166,Entire home/apt,125,3,62,2019-07-02,4.34,1,253 +24594587,Great Small Room 15 Minutes From Time Square,3268993,Emad,Manhattan,Harlem,40.82336,-73.95596,Private room,75,2,122,2019-07-07,8.32,1,127 +24594717,"Large, Bright Midtown East 1 BR in Luxury building by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74112,-73.98009,Entire home/apt,271,30,0,,,232,326 +24596296,Cozy Bed-Stuy Getaway!,20633674,Karli,Brooklyn,Bedford-Stuyvesant,40.69199,-73.94426,Private room,46,3,6,2019-03-16,0.72,1,0 +24596989,WALL STREET AMAZING APARTMENT,12292581,Andrew,Manhattan,Financial District,40.70617,-74.0112,Entire home/apt,240,15,4,2018-12-30,0.30,1,220 +24599215,3 bedrooms 2 baths Brooklyn Home 15m to Manhattan!,185888575,Shirley,Brooklyn,Bushwick,40.69571,-73.93144,Entire home/apt,240,3,50,2019-06-24,3.44,1,243 +24599452,ELEXEY'S COMFORT.,185889529,Michelle,Queens,St. Albans,40.70389,-73.75782,Private room,50,3,58,2019-06-24,4.69,3,358 +24600833,1 BR Free in Bright Open Greenwich Village 2BR Apt,12156706,Kevin,Manhattan,Greenwich Village,40.72839,-73.99983,Private room,115,3,2,2018-05-22,0.14,2,0 +24601752,"Heaven in New York, Natural Room",185908506,Cynthia,Bronx,Edenwald,40.88634,-73.83431,Private room,75,3,19,2019-05-20,1.55,3,166 +24602796,"Relaxing, modern Upper East Side Apt with terrace",52395622,Carrie,Manhattan,Upper East Side,40.77942,-73.94772,Entire home/apt,160,1,16,2018-10-27,1.10,1,0 +24604281,THE COOLEST BEDROOM/APARTMENT IN HARLEM.,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81639,-73.94223,Private room,80,2,49,2019-06-13,3.37,3,178 +24606241,Sunny & Beautiful 1br apt in heart of Lower East.,165725362,Janey,Manhattan,Lower East Side,40.71432,-73.9887,Entire home/apt,150,4,32,2019-07-02,2.36,2,216 +24606641,Classy Antique Private Bedroom 20-minutes to Ferry,99202586,Thelma,Staten Island,Randall Manor,40.62947,-74.12991,Private room,79,2,4,2019-07-01,0.30,5,355 +24607120,TWO BEDROOM UNICORN IN THE HEART OF WILLIAMSBURG,128917721,Usamah,Brooklyn,Greenpoint,40.7203,-73.94644,Entire home/apt,250,3,2,2018-12-14,0.22,1,177 +24607287,Spacious sunlit room in Astoria,160614820,Lucy,Queens,Ditmars Steinway,40.77496,-73.91172,Private room,60,15,12,2019-01-01,0.85,1,21 +24607535,Heart of long island City,183623716,Amira,Queens,Long Island City,40.74664,-73.95039,Private room,85,1,10,2019-07-06,0.71,1,365 +24607763,Cozy home,118029044,Freddy,Brooklyn,Midwood,40.60909,-73.97155,Entire home/apt,200,2,26,2019-07-01,1.88,2,275 +24608095,Clean and charming room for rent.,9663349,Nicole,Queens,Rego Park,40.72795,-73.86048,Private room,40,3,1,2019-05-24,0.65,1,305 +24608893,Huge light filled bedroom in trendy Williamsburg,27032848,Samia,Brooklyn,Williamsburg,40.71747,-73.96045,Private room,89,4,4,2019-06-17,0.29,1,128 +24608922,Skyscraper View - Loving it!,84862540,Christelle,Manhattan,Financial District,40.7069,-74.01388,Private room,95,2,6,2018-08-26,0.41,1,0 +24609263,Beautiful 2bdr apt in Brooklyn near to everything.,43803591,Anna,Brooklyn,Fort Hamilton,40.61257,-74.03598,Entire home/apt,135,5,31,2019-06-02,2.16,1,151 +24609530,Modern and spacious 2 bedroom in Manhattan,185981519,Erika,Manhattan,East Village,40.72189,-73.98219,Entire home/apt,260,1,44,2019-05-25,3.00,1,299 +24611661,BEAUTIFUL GREAT BEDROOM IN HARLEM,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81639,-73.94414,Private room,80,2,40,2019-06-26,2.75,3,177 +24614703,Charming Cozy 1 bed-room in the heart of Bed-Stuy,127956858,Betty,Brooklyn,Bedford-Stuyvesant,40.69298,-73.94188,Entire home/apt,130,3,6,2019-06-08,0.44,1,14 +24618397,ENJOY NYC IN 1 BDRM CONDO HEART OF MIDTOWN,29100568,Deborah,Manhattan,Theater District,40.76205,-73.982,Entire home/apt,165,30,0,,,4,0 +24618542,"New Condo 2 bedrms /1,5bath elevator & balcony",55149412,Ha,Manhattan,Chinatown,40.71409,-73.99434,Entire home/apt,400,1,2,2018-10-07,0.20,4,191 +24620408,"Perfect Location, surrounded with all your need",186059643,Night,Queens,Ridgewood,40.70022,-73.90025,Entire home/apt,200,2,38,2019-06-23,2.73,1,363 +24621401,Charming Art Deco Apartment on Central Park,42795691,Tony,Manhattan,Upper West Side,40.78925,-73.96757,Entire home/apt,139,6,21,2019-06-30,1.83,1,116 +24622596,Two Bridges Private Escape,16754308,Marcel,Manhattan,Lower East Side,40.71152,-73.99166,Private room,59,30,4,2019-03-31,0.34,1,52 +24624070,Private Bedroom in a Modern Building,181111992,Van,Brooklyn,Flatbush,40.63076,-73.95851,Private room,45,1,19,2018-12-27,1.57,2,98 +24624154,1 Bedroom Cozy Apartment,139756559,Maria,Staten Island,Great Kills,40.54878,-74.13908,Entire home/apt,75,30,3,2019-02-11,0.22,2,129 +24624171,Bushwick Brooklyn Private Apartment 15min. To NYC!,81662935,Kamaran,Brooklyn,Bedford-Stuyvesant,40.68392,-73.91324,Entire home/apt,159,2,49,2019-07-01,3.52,2,336 +24626439,Private Room in spacious TriBeCa Loft,5922211,Karan,Manhattan,Tribeca,40.71554,-74.00645,Private room,120,2,2,2018-05-29,0.14,1,0 +24626621,STUDIO.STYLE.BEDROOM+PRIVATE.BATHROOM+TOP.LOCATION,186100463,Mateo,Brooklyn,Crown Heights,40.67357,-73.95467,Private room,99,2,52,2019-07-04,3.63,1,224 +24627128,Little Secret,186111724,Thomas,Manhattan,Upper West Side,40.77705,-73.98118,Private room,112,2,81,2019-07-07,5.63,1,6 +24627684,Quaint NYC studio- tree lined St.- great location!,47895481,Omar,Manhattan,Midtown,40.7446,-73.98399,Entire home/apt,175,1,2,2018-07-02,0.16,1,0 +24628788,White Cozy Studio Apartment in Brooklyn,31929849,Daria,Brooklyn,Midwood,40.61962,-73.96323,Entire home/apt,85,2,8,2019-06-24,0.60,1,27 +24629029,Cozy Astoria Room in 2br Apartment- Artists Space,2521642,Serdar,Queens,Ditmars Steinway,40.78442,-73.91339,Private room,55,1,14,2019-07-04,0.96,1,123 +24629830,Astoria- Boho style bedroom with skylight,11406067,Karina,Queens,Ditmars Steinway,40.77376,-73.90484,Private room,80,2,17,2019-06-24,1.36,1,24 +24630272,Private Room in huge TriBeCa Loft,23971160,Josh,Manhattan,Civic Center,40.71313,-74.00681,Private room,90,2,3,2018-06-01,0.21,1,0 +24630495,"Beautiful, spacious Upper West Side 1Br apartment",24165842,Gal,Manhattan,Upper West Side,40.77127,-73.98842,Entire home/apt,180,5,6,2019-06-16,0.82,1,5 +24631587,"SoHo, Entire Place, Rooftop View",186142001,Bubbles,Manhattan,SoHo,40.72591,-74.00176,Entire home/apt,215,1,0,,,1,158 +24632050,Sunny room in beautiful Brooklyn apartment,186148319,Sara,Brooklyn,Prospect-Lefferts Gardens,40.66155,-73.944,Private room,47,10,0,,,1,0 +24632399,New*full floor 3BR2bath SPACIOUS FAMILY WELCOME*,1846051,Kj,Manhattan,Hell's Kitchen,40.76281,-73.98883,Entire home/apt,415,4,43,2019-06-19,3.33,2,71 +24632456,Beach Break - Your Rockaway Home by the Sea,186148178,Riva,Queens,Rockaway Beach,40.58466,-73.81628,Entire home/apt,275,2,29,2019-07-01,2.13,1,138 +24632516,Quiet Sunlit Bedroom w/ Private Bath in Brooklyn,79322329,Elissa,Brooklyn,Bushwick,40.70133,-73.92074,Private room,115,3,45,2019-07-04,3.14,1,75 +24632590,"Apt near ferry,verrazano brdg, RUMC,buses NYC wifi",32162495,Mostafa,Staten Island,Tompkinsville,40.6326,-74.09099,Entire home/apt,199,1,36,2019-06-23,2.51,3,171 +24632627,Amazing one bedroom - NYC Corporate Housing,3191545,Kyle,Manhattan,Kips Bay,40.74425,-73.97754,Entire home/apt,150,30,0,,,23,363 +24632879,@ Amazing Midtown Furnished Apartment @,3191545,Kyle,Manhattan,Kips Bay,40.74454,-73.97579,Entire home/apt,150,30,0,,,23,0 +24632914,The Avalon,24790900,Joslyn And Pansy,Brooklyn,Brownsville,40.66959,-73.91204,Private room,120,3,3,2019-01-02,0.29,1,365 +24633539,Private East Village Room With Great Light/Views,63409074,Kara,Manhattan,East Village,40.72081,-73.97921,Private room,60,14,7,2019-06-13,0.58,1,126 +24633702,Midwood townhouse,163843832,David,Brooklyn,Midwood,40.6155,-73.9522,Private room,58,2,12,2019-05-27,0.87,1,36 +24633732,Bright Brooklyn Bedroom Close to Prospect Park,2903817,Erica,Brooklyn,South Slope,40.66185,-73.9821,Private room,149,2,16,2018-11-18,1.26,1,0 +24633966,Bowery modern loft,161268152,Maytal And Ken,Manhattan,Lower East Side,40.72221,-73.99181,Entire home/apt,700,2,0,,,2,338 +24634657,Convenient and Relaxing,38874050,Howard,Queens,Ridgewood,40.70055,-73.91013,Private room,45,2,47,2019-06-21,3.29,3,159 +24635041,Irving Ave Bedroom Apartment,186178785,Simon,Brooklyn,Bushwick,40.69658,-73.90773,Private room,55,14,1,2018-08-31,0.10,1,0 +24635095,Traditional and cozy private room in best location,179657707,Andres,Manhattan,Hell's Kitchen,40.75516,-73.99603,Private room,110,3,35,2019-07-01,2.42,2,53 +24635506,"Sunlit Large Bdrm heart of Astoria, 5min to Subway",171825960,Radu,Queens,Ditmars Steinway,40.77826,-73.91805,Private room,70,2,1,2018-04-28,0.07,1,0 +24635562,"SUNNY HOMY ROOM CLOSE TO MANHATTAN,LGA/JFK AIRPORT",44213272,Miss. G.,Queens,Ditmars Steinway,40.77562,-73.91431,Private room,60,2,22,2019-06-23,1.54,5,360 +24644837,Bushwick Awesome Apartment - 2,9864136,Anthony,Brooklyn,Bushwick,40.68608,-73.914,Entire home/apt,121,30,1,2018-04-29,0.07,26,31 +24645220,Private bedroom in two bedroom apartment Brooklyn,115258603,Toun,Brooklyn,Crown Heights,40.67254,-73.91686,Private room,62,2,23,2019-06-03,1.58,1,172 +24645434,Small Comfortable Midtown Room,9864136,Anthony,Manhattan,Kips Bay,40.74233,-73.98031,Private room,75,30,3,2018-12-02,0.29,26,345 +24649878,NEAR COLUMBIA PRESBYTERIAN HOSP Students/Visitors,25237492,Juliana,Manhattan,Washington Heights,40.84039,-73.93954,Private room,50,30,2,2019-05-19,0.21,34,281 +24650448,Astoria bedroom with personality,185495146,Alexandria,Queens,Astoria,40.75452,-73.91458,Private room,52,6,7,2019-06-25,0.50,1,2 +24650569,Comfortable bedroom in PLG,4028002,Tracy,Brooklyn,Prospect-Lefferts Gardens,40.65867,-73.9522,Private room,109,1,0,,,1,95 +24652644,Comfy Cozy - 12 Minutes from Manhattan,31789510,Raisa,Queens,Woodside,40.74667,-73.90202,Entire home/apt,100,3,8,2019-01-01,0.55,1,0 +24652832,Bushwick Brownstone Penthouse,56391348,Dustin,Brooklyn,Bushwick,40.69738,-73.92947,Entire home/apt,160,3,46,2019-06-20,3.22,1,270 +24653197,Midwood,104497453,Mark,Brooklyn,Midwood,40.62483,-73.97437,Private room,200,3,1,2018-07-29,0.09,3,88 +24653285,"Location, Location, Location! & A/C! :)",18416898,Donna,Brooklyn,Crown Heights,40.67014,-73.95342,Private room,65,1,13,2019-06-10,0.91,1,83 +24653322,Cozy Ridgewood Apartment,131482216,Lynn,Queens,Ridgewood,40.71002,-73.90952,Entire home/apt,115,3,14,2019-01-01,0.99,1,19 +24653572,Staten Island retreat.,171590575,Anthony,Staten Island,Randall Manor,40.6416,-74.09861,Private room,50,10,2,2018-11-06,0.14,1,191 +24654607,The East Village Home: The Cabin Room,126034120,Roni,Manhattan,East Village,40.72607,-73.97631,Private room,95,1,67,2019-06-22,4.59,3,241 +24655093,Historic Harlem Townhome,4538012,Karen,Manhattan,Harlem,40.80874,-73.94167,Entire home/apt,300,30,3,2019-04-30,0.27,4,0 +24655787,NYC: Across from Central Park,32008804,David,Manhattan,East Harlem,40.79707,-73.94739,Private room,69,2,68,2019-06-23,4.83,1,0 +24656086,Private 2 BR Mid-Century Modern Apt,186334891,Muneeba,Brooklyn,Sunset Park,40.66294,-73.99349,Entire home/apt,169,2,48,2019-06-23,3.42,2,171 +24656108,Charming 2 Bedroom in the Heart of Williamsburg,4794638,Daniel,Brooklyn,Williamsburg,40.71598,-73.95466,Entire home/apt,134,1,52,2019-07-02,3.59,1,262 +24656201,A Place to Call HOME,25479861,Michael,Queens,Sunnyside,40.74567,-73.91881,Private room,89,1,0,,,1,365 +24656571,Shared Apartment 1 stop from Manhattan,55724558,Taylor,Queens,Long Island City,40.76003,-73.94111,Shared room,35,5,11,2019-05-16,0.78,5,90 +24656728,Private room 1 block from Times Square/City Center,31929860,Bryan,Manhattan,Hell's Kitchen,40.75985,-73.99107,Private room,120,1,18,2019-06-07,1.27,4,249 +24656865,"Comfortable Simplistic, 8th Av walk to destination",186029613,Jazmin,Manhattan,Harlem,40.82452,-73.94219,Entire home/apt,140,2,23,2019-06-23,1.64,1,0 +24657328,Heart of the City,173373234,Alexander M,Manhattan,Midtown,40.75864,-73.97035,Entire home/apt,200,30,7,2018-08-30,0.51,2,188 +24659224,Private bed & bath in gorgeous midtown apartment,19288299,David,Manhattan,Hell's Kitchen,40.76511,-73.98762,Private room,139,2,35,2019-06-27,2.45,1,93 +24659877,Nice home in awesome Location,186376053,Andrea,Manhattan,Upper West Side,40.79694,-73.96268,Private room,80,2,17,2019-06-15,1.44,1,126 +24667053,Cool comfy nest in EAST VILLAGE,159482696,Scar,Manhattan,East Village,40.72247,-73.98172,Private room,79,3,3,2018-06-10,0.22,1,0 +24670553,South exposure Bay windows Loft studio,26584499,Ofir,Manhattan,Upper West Side,40.78245,-73.98355,Entire home/apt,125,30,0,,,8,283 +24670583,Lovely Shared Space in the Bronx,26947215,Luis,Bronx,Clason Point,40.81862,-73.8791,Shared room,40,1,26,2019-06-23,1.82,1,141 +24670846,Brooklyn Home By The Pier,186362905,Karen,Brooklyn,Canarsie,40.63125,-73.88925,Entire home/apt,91,1,28,2019-06-30,2.01,1,172 +24670932,"Sunny, Spacious, & Clean East Village One-Bedroom!",16713679,Marie,Manhattan,East Village,40.72531,-73.98187,Entire home/apt,295,3,9,2019-07-02,0.64,1,88 +24673017,Wall Street Condo with Stunning Views,13834266,Vicki,Manhattan,Financial District,40.70598,-74.00761,Entire home/apt,400,30,0,,,1,290 +24673382,New York Home with a View,59074471,Fatimatou,Manhattan,East Harlem,40.79762,-73.94797,Private room,76,1,16,2019-05-29,1.45,1,0 +24673759,Williamsburg Pad,25895777,Vincent,Brooklyn,Williamsburg,40.70843,-73.96833,Entire home/apt,400,6,3,2019-06-06,0.35,1,347 +24674269,Brooklyn sleepytime art studio,33510832,Benjamin,Brooklyn,Bedford-Stuyvesant,40.69403,-73.94487,Private room,48,2,80,2019-06-28,5.93,2,45 +24676554,family-style apartment,162881419,Manny,Bronx,Norwood,40.87816,-73.87213,Entire home/apt,125,3,20,2018-12-21,1.40,1,281 +24676594,Duplex STUDIO With Sunset View,186501476,Alessandra,Manhattan,Greenwich Village,40.72911,-74.00001,Entire home/apt,250,4,6,2018-10-09,0.44,1,364 +24677673,"Large, Private, Sunny Room 8 min to Subway -Harlem",4538012,Karen,Manhattan,East Harlem,40.80931,-73.93982,Private room,65,4,8,2019-06-18,0.64,4,0 +24677845,"Sunny Brooklyn room in new apt, 4 min to subway!",70237937,Flora,Brooklyn,Bedford-Stuyvesant,40.68133,-73.95433,Private room,80,6,1,2018-05-28,0.07,1,0 +24677926,Stylish & Tranquil East Village Three Bedroom,11305249,Eric,Manhattan,East Village,40.72499,-73.98867,Entire home/apt,650,2,41,2019-05-17,2.83,1,126 +24678015,"A place to sleep the night near NYC,RUMC, Brooklyn",32162495,Mostafa,Staten Island,Tompkinsville,40.63126,-74.0921,Entire home/apt,48,3,1,2018-07-16,0.08,3,0 +24687253,Ctrl Park/Ts Square Private Room for 1 or 2 people,186586297,Clark,Manhattan,Hell's Kitchen,40.7659,-73.98557,Private room,99,1,17,2018-08-26,1.18,2,0 +24692025,Hermoso Penthouse con terraza privada.,163421878,Any,Queens,Woodside,40.74312,-73.91185,Private room,55,1,25,2019-06-17,1.75,3,332 +24693488,Quiet cave crash spot (check in is at 10pm.),186620707,Tyni,Manhattan,Harlem,40.79892,-73.95139,Shared room,44,1,49,2019-06-23,3.38,2,5 +24694397,"Two Bedroom Apartment in Ridgewood, near the train",186626470,Andrew,Queens,Ridgewood,40.70653,-73.91598,Entire home/apt,200,7,10,2019-05-31,0.77,1,365 +24694832,Gorgeous apartment in Brooklyn,588933,Rochi,Brooklyn,Crown Heights,40.6682,-73.95261,Entire home/apt,150,3,36,2019-07-07,2.65,1,332 +24695406,Spacious Private Basement Apartment,98157128,Michael,Bronx,Wakefield,40.88764,-73.8558,Entire home/apt,100,2,38,2019-06-19,2.66,1,107 +24696044,SUMMER DEAL,43184079,Ro,Manhattan,Stuyvesant Town,40.73082,-73.98023,Entire home/apt,150,35,2,2018-06-30,0.16,1,83 +24698043,Your Best NY location,14710145,Sabrina,Manhattan,East Village,40.7232,-73.98758,Private room,150,2,3,2018-05-28,0.21,1,0 +24698087,Brooklyn House of Light,26068038,Sam,Brooklyn,Windsor Terrace,40.64801,-73.97391,Entire home/apt,350,3,2,2018-08-13,0.16,1,0 +24699301,NYC HUB HOME: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.70887,-73.78275,Entire home/apt,128,2,23,2019-05-05,1.75,7,10 +24699402,9th Ave Apartment in the heart of Manhattan NYC!,186586297,Clark,Manhattan,Hell's Kitchen,40.76752,-73.98641,Entire home/apt,200,3,71,2019-07-03,5.49,2,95 +24699629,Brooklyn Leisure Lounge,5160639,Matthew,Brooklyn,Bushwick,40.70434,-73.91935,Entire home/apt,190,2,19,2019-06-16,2.18,1,2 +24699739,Sunny Room in Park Slope,48410883,Jason,Brooklyn,South Slope,40.66807,-73.9906,Private room,40,5,7,2019-05-10,0.49,2,0 +24699823,A spacious 1 bdrm park apartment to yourself,4607848,Nathan,Manhattan,Inwood,40.8622,-73.93039,Entire home/apt,71,6,2,2018-05-30,0.14,1,0 +24699891,GORGEOUS LARGE BEDROOM,45416627,Lolita,Queens,Astoria,40.76962,-73.92477,Private room,60,2,4,2018-06-23,0.29,9,283 +24700123,BRIGHT PRIVATE BEDROOM,45416627,Lolita,Queens,Astoria,40.76956,-73.9243,Private room,59,1,48,2019-06-16,3.47,9,351 +24700856,Flatbush pad Sleeps 6 MANHATTAN 30 min Away!,3532263,Alejandro,Brooklyn,Flatbush,40.63556,-73.95076,Entire home/apt,599,2,34,2019-04-25,2.42,4,0 +24700919,TIGER’S REST,185724116,Maria,Brooklyn,Bushwick,40.68161,-73.90717,Entire home/apt,125,2,41,2019-06-24,2.87,1,168 +24700984,Contemporary Home in the Heart of Bed-Stuy,52575889,Elissa,Brooklyn,Bedford-Stuyvesant,40.68957,-73.94445,Entire home/apt,115,3,9,2019-01-30,0.63,1,0 +24710755,Affordable 1-bedroom apt in private house,101498908,Julie,Brooklyn,East Flatbush,40.65056,-73.94994,Entire home/apt,65,2,14,2018-07-28,1.03,2,0 +24711813,El jardín del Edén,186361566,Merly,Manhattan,Washington Heights,40.83418,-73.94088,Shared room,50,1,8,2018-11-12,0.56,1,89 +24712037,Stylish Design Apartment in the Heart of Brooklyn,13490977,Celia,Brooklyn,Bedford-Stuyvesant,40.6937,-73.94674,Entire home/apt,198,2,14,2019-05-31,1.01,1,0 +24713329,Cozy Hidden Gem Near All,186791133,Sam,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.96209,Entire home/apt,78,3,53,2019-06-13,3.77,1,74 +24714137,Heart of Lower East Side,186798498,Vito & Miriam,Manhattan,Lower East Side,40.7157,-73.98864,Entire home/apt,160,2,50,2019-07-05,4.05,1,325 +24714264,Trendy Stylish Chic Loft in Greenpoint!,46594096,Michael,Brooklyn,Greenpoint,40.72672,-73.94054,Shared room,125,3,4,2018-07-05,0.28,1,0 +24714364,Brooklyn — The Perfect Air BnB Experience,84503565,Jason,Brooklyn,Bushwick,40.70182,-73.92922,Private room,90,1,8,2019-05-12,0.55,2,295 +24715620,Room B Close to NYU Langone H/Metro station,105640471,Jason,Brooklyn,Sunset Park,40.64193,-74.01483,Private room,43,1,11,2019-05-28,1.11,8,146 +24715766,Studio Loft for Rent in Cool Building,83768519,Mutaurwa,Brooklyn,Bushwick,40.69796,-73.93563,Entire home/apt,80,5,1,2018-08-06,0.09,1,5 +24715821,Cozy and clean private room in East Williamsburg,20994908,Gabriel,Brooklyn,Williamsburg,40.70666,-73.94379,Private room,60,4,4,2019-03-16,0.29,1,0 +24715838,Beautiful Modern and Cosy 1BR in Chelsea,5861197,Benoit,Manhattan,Chelsea,40.75254,-73.99471,Entire home/apt,190,3,2,2018-09-22,0.15,1,0 +24715968,Clean comfy couch -2 blocks from train station,6606533,Briane,Brooklyn,East Flatbush,40.63654,-73.94862,Shared room,60,1,1,2018-09-02,0.10,1,0 +24716751,A plus,186819005,Ron,Manhattan,Harlem,40.8175,-73.95234,Private room,57,1,39,2019-07-01,2.71,1,176 +24717470,Amazing Studio at the Time Square/52B,48146336,Irina,Manhattan,Hell's Kitchen,40.76291,-73.99327,Entire home/apt,120,30,3,2019-06-30,0.26,20,342 +24718788,Studio with a view,11966882,Svetlana,Manhattan,Kips Bay,40.73807,-73.98091,Entire home/apt,119,4,2,2018-09-30,0.15,1,0 +24719244,Fort Greene Brownstone Apartment for 6,186851013,Deborah,Brooklyn,Fort Greene,40.68957,-73.97449,Entire home/apt,200,2,31,2019-05-27,2.27,1,95 +24721548,Shared Hotel Room; For Short Stay,114502589,Hugo,Queens,Long Island City,40.75246,-73.94003,Shared room,38,1,0,,,1,0 +24725794,"Cozy Basement Studio in the Heart of Harlem, NYC",186905487,Brayan,Manhattan,Harlem,40.80863,-73.95503,Entire home/apt,92,2,68,2019-06-23,4.76,1,32 +24726458,Beautiful and Huge Room in Brooklyn,15640230,Susana,Brooklyn,Crown Heights,40.66433,-73.93438,Private room,45,13,2,2018-07-31,0.15,4,354 +24727443,Charming Newly Renovated West Village Apartment,7339898,Leah,Manhattan,Greenwich Village,40.72975,-74.00157,Entire home/apt,200,3,18,2019-07-01,1.28,1,10 +24727745,Quiet and Friendly,129585378,Victoria,Manhattan,Murray Hill,40.74943,-73.97279,Private room,120,4,3,2018-08-14,0.26,1,0 +24728012,Beautiful Apartment,77534743,Fabiola,Brooklyn,Bedford-Stuyvesant,40.68622,-73.9395,Private room,42,2,4,2018-06-19,0.28,1,0 +24729353,Private Cozy Room on Thompson Street,38379191,Mickael,Manhattan,Greenwich Village,40.72783,-74.00102,Private room,89,7,44,2019-06-23,3.11,1,0 +24730752,MiniArtHotel|CentralParkUESManhattan|SingleCouple,1784813,Ying,Manhattan,Upper East Side,40.78237,-73.95226,Private room,95,2,35,2019-06-14,2.58,1,180 +24731641,SEMI STUDIO IN 2bdrm apt PRIVATE Bath,1100494,Mike&Mavi,Manhattan,Harlem,40.82347,-73.95452,Private room,80,5,4,2019-06-01,0.35,3,324 +24732229,"HUGE 1,000 Sq Foot Apt in MANHATTAN by 1 train!!",18418581,Pooja,Manhattan,Washington Heights,40.85522,-73.93271,Entire home/apt,235,1,24,2019-07-04,1.68,3,352 +24732245,Large room in 2BR apartment,158596887,Gal,Brooklyn,Bushwick,40.7016,-73.91533,Private room,40,2,3,2018-05-21,0.21,2,0 +24732974,1 bedroom (entire) apartment very spacious,186318389,Joanna,Bronx,Mount Eden,40.84059,-73.92156,Entire home/apt,150,1,4,2018-05-17,0.28,1,0 +24733038,Hamilton heights home,55325859,Stephanie,Manhattan,Harlem,40.8241,-73.94522,Entire home/apt,120,1,4,2018-12-31,0.31,1,0 +24733112,Large 2B/2B with Stunning Views & Balcony,186970542,Jasmine,Manhattan,Upper West Side,40.77396,-73.9842,Entire home/apt,400,2,66,2019-07-04,4.59,1,164 +24733275,Financial District Private Room,127764617,Ned,Manhattan,Financial District,40.70848,-74.0051,Private room,130,1,40,2019-07-01,2.79,1,49 +24733560,Spacious Private Room in Brooklyn,34672584,Andre,Brooklyn,Crown Heights,40.66916,-73.96187,Private room,75,2,1,2018-05-20,0.07,1,157 +24734527,West Village 2 Bedroom with Private Roof Deck!,186985990,Alan,Manhattan,West Village,40.73664,-74.00567,Entire home/apt,125,3,38,2019-06-29,2.79,1,100 +24734792,Large Bedroom in Harlem,15940253,Raimundo,Manhattan,Harlem,40.82708,-73.9447,Private room,120,10,1,2018-12-26,0.15,2,0 +24735077,Studio of your own with a yard - pet friendly!,87328,Danielle,Brooklyn,Park Slope,40.67917,-73.97951,Entire home/apt,120,5,1,2018-05-15,0.07,1,0 +24735722,"Small Private Room # 1, single / Twin bed.",43825074,Masud,Brooklyn,Cypress Hills,40.68593,-73.87793,Private room,35,28,9,2019-05-01,0.63,3,312 +24735773,Sunny room in cozy Bushwick apartment,66754355,Phoebe,Brooklyn,Bushwick,40.70792,-73.91986,Private room,45,3,1,2018-05-13,0.07,1,0 +24736254,Rustic Modern Brooklyn Apt,14577537,Tom,Brooklyn,Bedford-Stuyvesant,40.69103,-73.9288,Entire home/apt,100,30,1,2018-05-03,0.07,2,111 +24736896,Cozy private bedroom downtown,186680487,Henry D,Manhattan,Two Bridges,40.71094,-73.99305,Private room,97,1,86,2019-06-21,6.34,1,20 +24737425,Charming Lux. 1 bedroom in Williamsburg,4350342,Samantha,Brooklyn,Williamsburg,40.7116,-73.95137,Entire home/apt,225,2,21,2019-06-23,1.60,1,88 +24740209,Long term/16 month sublet. Great location!,4267075,Jen,Brooklyn,Clinton Hill,40.68458,-73.96805,Entire home/apt,89,365,1,2018-08-23,0.09,2,0 +24743196,"Private, Cozy & Fully Equipped Room /20 min to NYC",130074377,Eliana,Queens,Ridgewood,40.70092,-73.90714,Private room,80,1,16,2019-06-25,1.46,2,220 +24746319,Amazing room for Memorial day weekend only!,111876825,Brandon,Queens,Maspeth,40.71319,-73.90315,Private room,200,2,0,,,1,365 +24746840,Cozy gem in Bushwick/Bed-stuy,63671528,Patricia,Brooklyn,Bedford-Stuyvesant,40.69475,-73.93586,Private room,40,7,1,2018-05-27,0.07,1,0 +24748187,"Modern, Private Room in Heart of East Village",7656338,Conor,Manhattan,East Village,40.72191,-73.98124,Private room,80,2,9,2018-09-17,0.66,1,0 +24748233,Spacious Modern Studio near Gramercy & Mad Sq Park,40502,Ben,Manhattan,Kips Bay,40.74183,-73.98166,Entire home/apt,175,2,29,2019-06-03,2.14,1,0 +24749018,Brand new 2-bed in luxury full-service building,3346513,Sorel,Brooklyn,Downtown Brooklyn,40.69192,-73.98391,Entire home/apt,250,4,15,2019-05-21,1.04,2,22 +24750019,X-Large 1 Bedroom on McCarren Park,187116536,Joshua,Brooklyn,Greenpoint,40.72251,-73.95103,Entire home/apt,135,3,58,2019-06-16,4.09,1,70 +24751022,Sonder | Hanover Square | Welcoming 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70401,-74.00932,Entire home/apt,179,29,0,,,96,1 +24751067,"Spacious, Sunny, Exposed Brick Near Columbia Univ!",1262513,Ito,Manhattan,Washington Heights,40.85197,-73.93308,Private room,59,2,15,2019-05-20,1.06,1,98 +24751420,Cozy and Spacious Studio in Columbus Circle,130965770,Joshua,Manhattan,Hell's Kitchen,40.76914,-73.98757,Entire home/apt,180,1,43,2019-07-01,4.37,1,2 +24751713,"The Manhattan Club, NYC",183736521,Martha,Manhattan,Midtown,40.76592,-73.98095,Private room,125,3,1,2018-04-30,0.07,1,5 +24752128,Cozy two bedroom apartment in the Upper East Side,5383703,Alexandra,Manhattan,Upper East Side,40.7648,-73.95862,Entire home/apt,170,7,29,2019-06-14,2.06,1,173 +24752747,Sonder | Hanover Square | Simple 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70518,-74.00994,Entire home/apt,182,29,2,2019-04-01,0.24,96,347 +24753221,Rare gem of an apartment in NYC. So Spacious!,3749502,Aaron,Manhattan,Washington Heights,40.83856,-73.94411,Private room,65,3,23,2019-06-19,1.65,1,1 +24754074,"Luxury Brooklyn brownstone, modern with backyard",4285260,Andy,Brooklyn,Bedford-Stuyvesant,40.68582,-73.93706,Entire home/apt,450,2,5,2019-01-01,0.36,1,3 +24754245,Private room with lots of surprise,38874050,Howard,Queens,Ridgewood,40.70125,-73.91051,Private room,42,2,39,2019-06-23,2.71,3,141 +24754459,Spacious Bedroom in Unique Williamsburg,91526716,Alessandra,Brooklyn,Williamsburg,40.71246,-73.96084,Private room,79,3,50,2019-06-30,3.53,1,28 +24754942,Cozy apt in vibrant Brooklyn neighborhood,22251843,Maria,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.96228,Entire home/apt,80,7,8,2019-02-10,0.58,1,4 +24755230,West Village Walk-Up.,22824452,Jacqueline,Manhattan,West Village,40.73272,-74.00623,Entire home/apt,165,5,4,2019-03-20,0.30,1,0 +24756139,Cool and cozy in Brooklyn,1805238,Aleksandra,Brooklyn,Prospect-Lefferts Gardens,40.65517,-73.95827,Private room,50,1,43,2019-06-23,3.07,2,14 +24756445,Spacious One Bedroom in the Heart of Brooklyn,4426154,Haley,Brooklyn,Prospect-Lefferts Gardens,40.65854,-73.962,Entire home/apt,75,2,2,2018-08-05,0.15,1,0 +24756679,Light-Filled Studio Across From Prospect Park,56051614,Erica,Brooklyn,Prospect Heights,40.67388,-73.96709,Entire home/apt,128,3,13,2019-06-30,0.99,1,2 +24757612,Full apartment in Harlem,110062861,Anwar,Manhattan,Harlem,40.81448,-73.94547,Entire home/apt,122,4,17,2019-06-02,1.42,2,245 +24757844,Sunlit Room with Kitchen near Manhattan and LGA,39074591,Shoshana,Queens,Woodside,40.74699,-73.90844,Private room,46,1,2,2019-06-19,0.15,1,0 +24757848,Chic private room,187182730,David,Manhattan,Harlem,40.82511,-73.95341,Private room,85,4,3,2018-05-22,0.21,1,179 +24757985,Cozy apartment perfect for families with kids,5832321,Kalani,Queens,Glendale,40.69709,-73.89556,Entire home/apt,150,2,4,2019-01-13,0.41,2,0 +24758343,Large 1 bedroom Upper East apartment,25146744,Dana,Manhattan,Upper East Side,40.77181,-73.95097,Entire home/apt,199,5,1,2018-08-05,0.09,1,0 +24758512,NYC living,60975812,Johan,Manhattan,Hell's Kitchen,40.75417,-73.99435,Private room,70,4,0,,,1,0 +24758664,Dekalb Ave. #1L,187190679,Dena,Brooklyn,Bushwick,40.69933,-73.92463,Entire home/apt,105,2,31,2019-06-29,2.34,1,353 +24758883,Upscale safe neighborhood Master Bedroom by subway,15838559,Weimin,Queens,Forest Hills,40.71447,-73.85181,Private room,59,2,6,2018-07-05,0.43,4,6 +24759050,"Private Bedroom on Upper West, Manhattan",76537707,Angela,Manhattan,Upper West Side,40.795,-73.97479,Private room,67,12,1,2018-05-31,0.07,1,0 +24760489,"Budget Friendly, Spacious Place 10 min to NYC",2788934,Andrew,Brooklyn,Greenpoint,40.72179,-73.9447,Private room,61,1,30,2019-06-11,2.08,2,1 +24765844,✴SPACIOUS HOMEY✴ 2 BD Sleeps 6! Brooklyn NY,479986,Anthony,Brooklyn,Williamsburg,40.70768,-73.95137,Entire home/apt,170,2,77,2019-07-02,5.54,1,10 +24770333,1BR in downtown Manhattan,46803679,Shawna,Manhattan,West Village,40.73177,-74.00162,Entire home/apt,100,3,0,,,1,0 +24770824,The Blue Bungalow of Rockaway Beach,1106731,Alexander,Queens,Rockaway Beach,40.5886,-73.8124,Entire home/apt,86,2,2,2018-05-12,0.14,2,0 +24772376,Cozy private room in Astoria,16015663,Deniz,Queens,Ditmars Steinway,40.77371,-73.91689,Private room,85,3,10,2019-06-04,0.79,1,88 +24772454,Family friendly 2 bedroom. NYC life and 1000 sq ft,34948714,Andrew,Manhattan,Upper West Side,40.79557,-73.97632,Entire home/apt,145,59,0,,,1,0 +24772896,Quaint SoHo Home Away From Home in The Big Apple!,187301833,Sue,Manhattan,SoHo,40.72095,-73.99961,Entire home/apt,210,3,34,2019-06-26,2.48,1,37 +24774169,"1 Bedroom in Affluent, Serene Bronx Neighborhood",187312110,Rilen,Bronx,Fieldston,40.88764,-73.90449,Private room,50,1,28,2019-07-07,2.47,1,73 +24776834,Stylish NYC Art Loft #2,34643568,Dave,Manhattan,East Harlem,40.79244,-73.94028,Private room,80,3,18,2019-07-01,1.74,6,88 +24777535,Sunny Space in Sunnyside - 15 min to Times Square.,170085232,Shaina,Queens,Sunnyside,40.74425,-73.91768,Private room,50,1,74,2019-01-04,5.15,1,0 +24777719,Cosy Room in Bushwick Collective Near JMZ Trains,27163168,Hanna,Brooklyn,Bushwick,40.69639,-73.93246,Private room,50,3,1,2018-05-08,0.07,1,0 +24778075,Luxury Room in Peaceful Area 25 min to Time Square,187340835,May,Queens,Forest Hills,40.71082,-73.85112,Private room,50,1,72,2019-06-30,5.19,1,228 +24778310,Cozy Room on Hewes with Rooftop Lounge,117367030,Casey,Brooklyn,Williamsburg,40.70703,-73.95434,Private room,151,3,12,2018-11-02,0.97,1,0 +24779271,Private Room,65119217,Frances,Manhattan,East Village,40.72745,-73.98537,Private room,200,1,1,2018-05-18,0.07,1,363 +24779466,High rise Suite with beautiful city views!,54481883,Camille,Manhattan,Gramercy,40.73805,-73.98415,Entire home/apt,150,4,4,2018-08-29,0.29,2,0 +24779801,Cozy large studio in a heart of West Village,25912435,Janna,Manhattan,Greenwich Village,40.73384,-73.99807,Entire home/apt,147,3,13,2019-07-04,0.96,1,0 +24780232,Apartment in sun drenched Upper Manhattan,17778872,Jacqueline,Manhattan,Morningside Heights,40.80937,-73.95881,Entire home/apt,350,3,0,,,1,0 +24780277,Beautiful Townhouse,9922513,James,Brooklyn,Prospect-Lefferts Gardens,40.66247,-73.95011,Entire home/apt,200,4,1,2018-06-03,0.07,1,21 +24782427,Speakeasy Inn Bushwick Four,24020292,Cristiano,Brooklyn,Bushwick,40.70122,-73.91836,Private room,70,1,44,2019-06-19,3.31,4,59 +24783060,[Priv Rooftop] Sunny-Spacious duplex Penthouse,187388261,Miguel,Brooklyn,Bedford-Stuyvesant,40.68135,-73.93709,Entire home/apt,140,8,1,2018-12-31,0.16,1,0 +24784400,Cozy Studio in Queens,24373940,Wolfe,Queens,East Elmhurst,40.75503,-73.89607,Entire home/apt,109,60,0,,,1,365 +24792114,Sunny apartment,3405917,Juliana,Queens,Sunnyside,40.74597,-73.91434,Private room,55,3,26,2019-06-17,1.82,1,1 +24793502,Conveniently located to manhattan,132669029,Edwin,Bronx,Throgs Neck,40.82601,-73.81907,Private room,50,3,19,2019-06-12,1.36,4,8 +24795553,Posh Alcove Studio: Everything You Need For NYC!,28159250,Isabel,Manhattan,Kips Bay,40.7385,-73.97945,Entire home/apt,200,2,43,2019-07-05,3.10,1,284 +24798693,Spacious and Bright Studio in Hell’s Kitchen,78261482,Petr,Manhattan,Hell's Kitchen,40.76293,-73.99347,Entire home/apt,190,4,16,2019-06-08,1.24,2,20 +24798903,Greenhouse APT,21764391,Jery & Dave,Brooklyn,Williamsburg,40.71166,-73.95739,Entire home/apt,200,3,7,2019-01-15,0.62,1,67 +24799437,Private Bedroom in Bushwick / Myrtle-Wyckoff L & M,58953152,Dmitry,Brooklyn,Bushwick,40.70065,-73.91135,Private room,49,1,29,2019-05-19,2.03,2,0 +24799552,Lovely & Sunny 2 Bedroom Home,187487947,Diego,Brooklyn,Greenpoint,40.73228,-73.95539,Entire home/apt,119,1,63,2019-06-01,4.51,6,0 +24799677,1 Bedroom available in a four bedroom house,25109819,Stefanos,Queens,Astoria,40.75989,-73.91571,Private room,40,1,5,2018-05-30,0.35,1,0 +24799807,Furnished Midtown One Bedroom Beauty,120762452,Stanley,Manhattan,Murray Hill,40.75028,-73.97702,Entire home/apt,210,30,1,2018-07-14,0.08,50,365 +24801589,Charming Park Slope 1 Bedroom Apartment,3082771,Hiram,Brooklyn,Park Slope,40.67238,-73.97607,Entire home/apt,105,7,8,2018-10-07,0.62,1,43 +24801968,Sunny place,39774366,Maksim,Manhattan,Upper East Side,40.77882,-73.95054,Entire home/apt,86,27,2,2018-12-23,0.19,1,154 +24804386,Sunny NYC Studio steps from Central Park,1092203,Erin,Manhattan,Upper West Side,40.78277,-73.97604,Entire home/apt,150,4,12,2019-03-31,1.55,1,0 +24805086,Pleasant Place JFK Private Housings Complex,26602392,Dean&Paula,Queens,Springfield Gardens,40.66204,-73.76597,Private room,60,1,50,2019-06-26,3.49,2,355 +24805249,Treetop Chic - Prime Williamsburg Boutique Home,3494371,Shelley,Brooklyn,Williamsburg,40.7135,-73.95468,Entire home/apt,225,10,5,2019-06-29,0.47,1,150 +24805348,Bright Room in Williamsburg,187530856,Baris,Brooklyn,Williamsburg,40.70896,-73.94754,Private room,157,1,6,2018-10-28,0.42,2,365 +24805679,A seriene space in Bushwick,187532995,Adi,Brooklyn,Bushwick,40.70447,-73.92589,Private room,70,4,2,2018-05-27,0.14,1,363 +24806098,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",75981937,Cem,Queens,Astoria,40.76197,-73.92335,Entire home/apt,140,15,2,2019-01-03,0.18,2,71 +24806106,“Studio” ideally located across Golf Course,132669029,Edwin,Bronx,Throgs Neck,40.81437,-73.82774,Entire home/apt,74,2,37,2019-06-13,2.63,4,70 +24806110,sunny apartment on the Ocean,187536544,Nino,Brooklyn,Brighton Beach,40.57707,-73.96303,Entire home/apt,150,5,8,2019-01-06,0.56,1,179 +24806141,Sweet Home at Washington Heights,186679495,Maritza,Manhattan,Washington Heights,40.84698,-73.93629,Entire home/apt,75,1,81,2019-07-02,5.73,1,171 +24806529,"Private Room In Brooklyn,",113890236,Nessim,Brooklyn,Bensonhurst,40.60997,-73.98022,Private room,40,2,2,2018-07-02,0.14,1,0 +24807368,Sunny 2BR Apt Near Columbia University,21573011,Lydia,Manhattan,Upper West Side,40.80001,-73.96459,Entire home/apt,180,2,15,2019-07-02,1.29,1,18 +24807859,Large Room with Balcony in Brownstone Townhouse,20555097,Emilie,Brooklyn,Bedford-Stuyvesant,40.68236,-73.9277,Private room,37,3,13,2019-05-31,0.92,2,0 +24808062,"Perfect for groups! 3BR, 2Bath feet from Subway!",97042500,Raphael,Manhattan,Harlem,40.80393,-73.95205,Entire home/apt,344,2,9,2019-01-23,0.75,4,25 +24808312,"MARTIAL LOFT 3: REDEMPTION (upstairs, 3rd room)",15787004,Martial Loft,Brooklyn,Bushwick,40.69501,-73.92296,Private room,40,3,2,2018-10-24,0.14,5,0 +24809771,"Beautiful, sunny 1 bedroom off Graham Ave",5024658,Yael,Brooklyn,Williamsburg,40.716,-73.94434,Entire home/apt,130,7,1,2018-06-10,0.08,1,9 +24810452,Williamsburg Gem in BK! Queen BR in Luxury Apt,1799439,Sean,Brooklyn,Williamsburg,40.71543,-73.94278,Private room,99,2,7,2018-09-18,0.54,1,0 +24816926,Lovely One Bedroom Apartment in the East Village!!,70043681,Helene,Manhattan,East Village,40.72734,-73.97528,Entire home/apt,142,2,50,2019-07-01,3.69,1,278 +24820939,Boutique huge apartment for families with kids,1478535,Tal,Manhattan,Upper West Side,40.78118,-73.98122,Entire home/apt,550,7,0,,,1,8 +24820955,Private Room in Bed-Stuy,28778026,Shahed,Brooklyn,Bedford-Stuyvesant,40.69401,-73.95692,Private room,70,1,20,2019-05-25,1.39,2,87 +24821651,Hiéroglyphe,187648135,Yero,Bronx,Allerton,40.86778,-73.85491,Private room,45,1,38,2019-07-01,2.70,1,85 +24823404,Large Private Room With Three Windows,137129564,Bing,Queens,Flushing,40.75422,-73.81586,Private room,59,1,25,2019-02-28,1.76,4,77 +24824820,NYC Studio near Central Park and the Hudson River,27958360,Julie,Manhattan,Upper West Side,40.78136,-73.98225,Entire home/apt,160,2,20,2019-06-23,1.47,1,6 +24825809,The Red House,135502033,Adam,Queens,Rockaway Beach,40.58415,-73.81243,Private room,125,1,30,2019-07-06,2.20,1,342 +24826533,R Bright & Cozy & Modern room 30 mins to Manhattan,130903736,Anna,Brooklyn,Bedford-Stuyvesant,40.6921,-73.93398,Private room,59,1,97,2019-06-26,7.08,1,25 +24826789,Sonder | 21 Chelsea | Artsy 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7429,-73.9956,Entire home/apt,239,29,0,,,96,335 +24826817,Fun tourist family friendly Flatiron Loft,187684303,Alexis,Manhattan,Kips Bay,40.73992,-73.98272,Entire home/apt,200,2,16,2019-05-09,1.57,1,6 +24827469,Large Apt + Backyard,14269481,Kate,Brooklyn,Williamsburg,40.70012,-73.95082,Entire home/apt,130,3,2,2019-01-01,0.16,1,3 +24829645,Charming apartment in the heart of Sunnyside,7822898,Saleem,Queens,Sunnyside,40.74617,-73.91592,Entire home/apt,104,2,6,2018-08-27,0.43,1,141 +24831549,Sleek Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70571,-74.00833,Entire home/apt,182,29,1,2019-05-18,0.57,96,333 +24831635,Comfortable an Nice Bedroom to relax,187718165,Magui,Queens,Briarwood,40.71007,-73.81483,Private room,30,1,24,2019-06-12,1.67,1,6 +24833043,Emerald's View,101216314,Charlie,Manhattan,Harlem,40.80848,-73.94271,Private room,65,1,28,2019-02-22,2.00,1,163 +24833117,2 BEDROOM APT-walk to CENTRAL PARK and restaurants,7834073,Moby,Manhattan,East Harlem,40.7879,-73.94796,Entire home/apt,250,2,27,2019-06-20,1.94,1,31 +24833279,Queens C Place,156716488,Christine,Queens,South Ozone Park,40.66906,-73.79254,Private room,60,3,2,2018-11-12,0.23,2,180 +24834058,Queens C Place,156716488,Christine,Queens,South Ozone Park,40.66872,-73.79417,Private room,48,3,15,2019-07-02,1.18,2,365 +24834309,Large 2BR apartment in Astoria near Midtown + LGA,6194487,Rocio & James,Queens,Astoria,40.76207,-73.90541,Entire home/apt,149,2,47,2019-06-25,3.46,3,308 +24834739,THE BROOKLYN BLUE HOUSE 2,183127881,Giana,Brooklyn,Canarsie,40.64487,-73.90081,Private room,59,2,56,2019-06-07,4.06,4,365 +24834823,"Sunny, Spacious Upper West Side Studio",15220605,Tommy And Sarah,Manhattan,Upper West Side,40.80389,-73.96859,Entire home/apt,100,3,1,2018-06-18,0.08,1,0 +24834824,Quiet home,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68828,-73.92329,Entire home/apt,62,30,2,2018-12-15,0.25,6,255 +24835343,Industrial Loft/ palace,52991771,Amir,Brooklyn,Downtown Brooklyn,40.69489,-73.98322,Entire home/apt,135,4,27,2019-06-21,1.95,1,57 +24835618,Art双层屋,28907641,Sherry,Queens,Flushing,40.7632,-73.83098,Private room,95,1,78,2019-06-28,5.43,2,87 +24836464,JFK/QNS Home Away From Home Full private apartment,175019394,Suzan,Queens,Jamaica,40.6706,-73.7794,Entire home/apt,450,1,3,2018-07-02,0.22,6,83 +24836482,Private room avaliable in the private house,24704779,Fevzi,Brooklyn,Sheepshead Bay,40.58996,-73.95835,Private room,59,5,3,2018-07-14,0.22,1,97 +24842392,Private Room in a Two bedroom apartment,3090750,Laura,Manhattan,Upper East Side,40.77106,-73.95013,Private room,59,2,4,2018-05-25,0.28,2,0 +24843435,"Cozy bedroom conveniently located, close Manhattan",132669029,Edwin,Bronx,Throgs Neck,40.82696,-73.81927,Private room,40,4,34,2019-06-21,2.54,4,37 +24845719,"Stunning, oversized 2 Bed, 2 Bath in Prime Wburg",2316071,Kassidy,Brooklyn,Williamsburg,40.71136,-73.9562,Entire home/apt,215,2,8,2019-06-05,0.60,1,77 +24845976,"""Home sweet Home :) """,187822021,Shany,Queens,Astoria,40.7645,-73.9238,Entire home/apt,120,30,5,2019-03-09,0.37,1,5 +24846816,"Cozy Near LGA, Center of Queens RM2",187822288,Zahir,Queens,East Elmhurst,40.76921,-73.87132,Private room,49,1,128,2019-06-22,8.95,5,278 +24847554,Luxury Room in Upscale Penthouse w PRIVATE Rooftop,117341565,David,Manhattan,Little Italy,40.71835,-73.99757,Private room,41,240,1,2018-07-07,0.08,1,0 +24849193,Cozy Tropical NYC Room with Stunning View,36364146,Tomas,Manhattan,Morningside Heights,40.80672,-73.96713,Private room,125,6,3,2018-12-28,0.22,1,34 +24849342,Large Greenwich Village 2 Bedroom!,120006972,Connor,Manhattan,Greenwich Village,40.72923,-74.00176,Entire home/apt,250,3,14,2019-06-21,1.03,1,297 +24850009,Cute studio steps from Prospect Park,19508332,Jessica,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.9602,Entire home/apt,75,2,7,2019-06-07,0.54,1,9 +24851371,Brooklyn Room with a Rooftop,187861161,Maya,Brooklyn,Crown Heights,40.67334,-73.93269,Private room,34,5,1,2018-12-29,0.16,1,0 +24852364,Luxury Apartment in Midtown East,95051172,Tim,Manhattan,Midtown,40.75377,-73.97302,Private room,169,2,0,,,1,0 +24852686,The Shelf: Bedstuy Cozy room,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94396,Private room,60,1,85,2019-01-01,6.01,4,0 +24852836,The Best location in Upper East Side!,77243829,Idan,Manhattan,Upper East Side,40.77751,-73.94774,Entire home/apt,375,2,0,,,1,0 +24852947,Beautiful Bedroom in shared Williamsburg Apartment,90685499,Meryl,Brooklyn,Williamsburg,40.71187,-73.95864,Private room,150,1,0,,,2,0 +24853574,The Amazing Stay,187872824,Erik,Manhattan,Upper West Side,40.80013,-73.95907,Entire home/apt,150,1,6,2018-06-19,0.43,2,179 +24853655,Luxury 1BR close to Columbus Circle/Central Park,102351927,Jon,Manhattan,Hell's Kitchen,40.76482,-73.98674,Entire home/apt,224,7,10,2019-07-06,0.74,1,0 +24853936,JFK Queens/House of Suedajoy#5(dis by flexibility,175019394,Suzan,Queens,Jamaica,40.67121,-73.77859,Private room,80,1,68,2019-06-22,4.81,6,153 +24854139,Chic and Cozy Brooklyn Bedroom,26474200,Alyssa,Brooklyn,Greenpoint,40.72373,-73.94088,Private room,100,3,9,2019-05-28,0.69,1,365 +24855025,Great place by the park with private entrance !!!!,187889772,Jeremy,Queens,Ditmars Steinway,40.77676,-73.92069,Entire home/apt,100,1,4,2018-06-14,0.28,1,0 +24855248,"1st Fl Studio on Upper East, close to Central Park",37421312,Nikki,Manhattan,Upper East Side,40.77096,-73.95334,Entire home/apt,125,7,3,2018-05-31,0.21,1,0 +24855474,Modern Studio with Private Terrace,10901705,Allan,Brooklyn,Williamsburg,40.70763,-73.94797,Entire home/apt,120,1,20,2019-01-12,1.42,1,0 +24855669,Gorgeous Brooklyn Oasis,187895786,Aziza,Brooklyn,Bedford-Stuyvesant,40.69327,-73.95725,Private room,75,2,0,,,1,87 +24856020,Great House for Large Groups; Close to Manhattan,136812761,Wendy,Brooklyn,Bedford-Stuyvesant,40.69448,-73.93657,Entire home/apt,600,1,29,2019-07-01,2.37,3,162 +24856606,JFK Queens Home away from Home House of Suedajoy 4,175019394,Suzan,Queens,Jamaica,40.67228,-73.77804,Private room,70,1,81,2019-06-22,5.73,6,85 +24857291,新一处客居(New place 1),187908645,Jimmy,Queens,Flushing,40.75582,-73.83215,Private room,60,1,9,2019-01-29,0.69,4,57 +24857436,Spacious Bright Room near Columbia University,187914509,Kangxin,Manhattan,Upper West Side,40.80078,-73.96394,Private room,50,5,4,2018-07-26,0.28,1,0 +24857723,Cozy 3 bedroom apartment in HEART of East Village!,32844422,David,Manhattan,East Village,40.7292,-73.98491,Entire home/apt,149,3,0,,,1,0 +24857741,"Studio, Empire State Building area.",135131537,Laura,Manhattan,Midtown,40.74846,-73.98708,Entire home/apt,180,6,38,2019-06-16,2.68,2,27 +24862077,The Perfect Escape,142455925,Hannah,Manhattan,Upper East Side,40.7661,-73.95419,Entire home/apt,118,3,3,2018-06-19,0.23,1,0 +24863288,Cozy 1-Bedroom Apartment in Harlem,29026712,Haydenn,Manhattan,Harlem,40.81717,-73.93918,Entire home/apt,70,2,2,2018-06-04,0.15,1,0 +24865151,Luxury Central Park Views Iconic building,2570750,Wolf,Manhattan,Midtown,40.76682,-73.97943,Entire home/apt,1195,3,27,2019-05-13,1.94,1,40 +24866257,"Huge, Sunny, & Private Room - 5 min to Times Sq.",187980677,Reilly,Manhattan,Chelsea,40.75069,-73.99736,Private room,175,1,46,2019-06-19,3.22,1,109 +24866378,Home Sweet Home in Flatbush,69469129,Cesar,Brooklyn,Flatbush,40.65341,-73.96238,Entire home/apt,165,5,8,2019-07-06,0.66,1,258 +24867995,暑假短租,78823148,Adelle,Manhattan,Kips Bay,40.74235,-73.97971,Private room,150,5,1,2018-05-18,0.07,1,0 +24868180,"Bright and airy, close to Central Park and museums",5679153,Harn,Manhattan,East Harlem,40.78973,-73.94965,Entire home/apt,50,4,17,2019-06-06,1.21,1,0 +24868751,Large room near Columbia University Med school,186155189,Kyunam,Manhattan,Washington Heights,40.84332,-73.94131,Private room,50,1,8,2019-06-18,0.58,3,53 +24868754,Inexpensive Private Rm w/ NYC/SIUH/RUMC Access 3,104812805,Amarjit S,Staten Island,Arrochar,40.59679,-74.08444,Private room,33,4,17,2019-07-06,1.20,8,316 +24868956,新一处客居(Newplace2),187908645,Jimmy,Queens,Flushing,40.75686,-73.83279,Private room,60,1,33,2019-06-22,2.36,4,49 +24870818,新一处客居(New place3),187908645,Jimmy,Queens,Flushing,40.75539,-73.83203,Private room,50,1,20,2019-06-07,1.64,4,2 +24871506,Dreamy centrally located Bedroom with city views!,3480784,Itzi,Manhattan,Little Italy,40.71953,-73.99685,Private room,110,2,34,2019-07-01,2.65,1,160 +24871661,Madison Square Studio w/ Elevator,188023318,Selina,Manhattan,Midtown,40.74234,-73.98277,Entire home/apt,145,5,0,,,4,40 +24871779,Lovely Lincoln Center Studio,3033697,Navid,Manhattan,Upper West Side,40.78054,-73.984,Entire home/apt,137,6,5,2019-05-21,0.37,1,0 +24872073,Big & Bright Bed-Stuy Bushwick Border Boudoir,2967674,Lilly,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92682,Private room,50,30,4,2018-10-12,0.37,2,21 +24872721,Light filled spacious 2 bed room apartment,17620937,Brittany,Manhattan,Washington Heights,40.83534,-73.94354,Entire home/apt,150,2,3,2019-03-10,0.25,1,35 +24873530,Bed-Stuy 2 Bedroom Beauty w/ Spacious Living Room,26178850,Anna,Brooklyn,Bedford-Stuyvesant,40.68344,-73.93308,Private room,45,5,19,2019-05-27,1.34,1,199 +24873980,Historic Strivers’ Row with a View,13926627,Marco,Manhattan,Harlem,40.81811,-73.94497,Private room,75,2,15,2019-05-30,1.07,1,140 +24874467,Private Bedroom with Full Bed in Wash Heights,188050267,Jennifer,Manhattan,Washington Heights,40.83827,-73.93976,Private room,50,2,0,,,1,0 +24874559,"Spacious & cozy room - Upper West Side, Manhattan",188051537,Benjamin,Manhattan,Upper West Side,40.80063,-73.96936,Private room,91,4,2,2018-12-25,0.19,1,197 +24879207,Lawrence Beach House,173852911,Kathryn,Queens,Far Rockaway,40.59486,-73.73837,Entire home/apt,250,2,22,2019-07-07,1.60,1,47 +24883987,Musician's Apartment Near the Park,25371059,Emma,Brooklyn,Prospect-Lefferts Gardens,40.66364,-73.94978,Entire home/apt,80,60,15,2019-06-24,1.21,1,2 +24884922,"Sunny, zen spot in the Heart of East Village",150238950,Natalie,Manhattan,East Village,40.72691,-73.9813,Entire home/apt,136,2,6,2019-06-02,0.42,1,39 +24885715,"2 Private Rooms, 1 min to J train, Free Breakfast",182260692,Leesha,Brooklyn,Cypress Hills,40.68187,-73.87985,Private room,99,2,48,2019-07-03,3.52,2,327 +24886110,Spacious Apartment Steps Away from Yankee Stadium,6762900,Ashley,Bronx,Highbridge,40.83088,-73.92779,Entire home/apt,103,2,40,2019-06-30,2.84,1,248 +24887028,Boho in WaHi,15139808,Tiffany,Manhattan,Washington Heights,40.83309,-73.94008,Private room,175,1,0,,,1,63 +24888436,A Hidden gem in the heart of Washington Heights,188160057,Kristi,Manhattan,Washington Heights,40.8483,-73.93115,Private room,125,3,0,,,1,363 +24889024,"True sanctuary, historic fort greene/clinton hill",83978022,Ofer,Brooklyn,Clinton Hill,40.69538,-73.9701,Entire home/apt,180,30,0,,,1,0 +24889615,One Bedroom apartment in great neighborhood,188169807,David,Manhattan,Upper West Side,40.80439,-73.96755,Entire home/apt,120,2,16,2019-07-07,1.51,1,1 +24889660,Entire Cozy Apartment in Center of East Village,187094395,Miche,Manhattan,East Village,40.72532,-73.98023,Entire home/apt,164,3,0,,,1,0 +24889922,Glendale apartment,177560095,Michelle,Queens,Glendale,40.69991,-73.88952,Private room,50,7,17,2019-04-10,1.27,1,66 +24891549,Beautiful Private Bed & Bathroom (no kitchen),40237342,Sharon,Brooklyn,Bedford-Stuyvesant,40.69089,-73.94676,Private room,80,30,10,2018-09-30,0.71,1,37 +24891651,Large 1 bedroom and private bath in Astoria,108302188,Gentry,Queens,Astoria,40.75755,-73.92854,Private room,49,3,8,2019-05-17,0.65,1,18 +24892670,Harlem Vibes,58964906,Louis,Manhattan,Harlem,40.82331,-73.94403,Private room,50,5,1,2018-05-07,0.07,1,0 +24893488,Huge master bedroom W/ private bath in Brooklyn,48418910,Lydia,Queens,Ridgewood,40.70289,-73.91156,Private room,120,2,0,,,2,0 +24893756,Entire suite close to LGA & JFK with free parking,16308032,Christian,Queens,East Elmhurst,40.75891,-73.87819,Entire home/apt,60,1,59,2019-06-03,4.18,1,150 +24894058,Cozy room in south Harlem - 10 mins to Columbia,11022916,Erin,Manhattan,Harlem,40.80808,-73.95259,Private room,45,1,14,2018-10-14,0.99,1,0 +24894476,Large Bedroom in Harlem,15940253,Raimundo,Manhattan,Harlem,40.82582,-73.946,Private room,70,4,3,2019-01-07,0.40,2,0 +24894724,A cozy studio in Chelsea,30558890,Alexander,Manhattan,Chelsea,40.75164,-73.99727,Entire home/apt,120,30,2,2018-12-30,0.21,1,0 +24895943,Beautiful and Spacious UES Gallery Like apartment,51112551,Kenneth,Manhattan,Upper East Side,40.7618,-73.96546,Entire home/apt,375,2,0,,,1,83 +24896472,Spacious Apt. in Bushwick for summer occupancy,116460196,Anoushka,Brooklyn,Williamsburg,40.70704,-73.92903,Private room,75,7,0,,,1,0 +24896533,Charming Room in Spacious Clinton Hill Apartment,1005489,Caroline,Brooklyn,Clinton Hill,40.68409,-73.96467,Private room,70,7,2,2019-06-06,0.88,1,89 +24896938,Beautiful and Spacious Apartment,79651295,Nkem,Queens,Jamaica,40.67819,-73.78919,Entire home/apt,60,1,0,,,4,177 +24899087,"Private room in Ridgewood, near the L line, for 2",140057330,Joey,Queens,Ridgewood,40.69649,-73.90564,Private room,55,1,20,2019-05-19,1.44,7,107 +24906413,Sunny Bushwick apartment,84453766,Allison,Brooklyn,Williamsburg,40.70229,-73.93774,Private room,80,10,1,2018-05-07,0.07,1,0 +24906924,Spacious One Bedroom in Downtown Manhattan,14396470,Ileang,Manhattan,Chinatown,40.71694,-74.00076,Entire home/apt,150,3,0,,,1,0 +24907355,Bushwick with outdoor space!,39190931,Jessica,Brooklyn,Bushwick,40.70202,-73.92675,Entire home/apt,150,28,0,,,1,90 +24908887,Home away from home in Harlem,5074874,Jessica,Manhattan,Harlem,40.80793,-73.95127,Entire home/apt,225,2,3,2018-07-24,0.24,1,6 +24910361,"""The Little House by the Sea""",188328775,Donna,Queens,Neponsit,40.57043,-73.85821,Entire home/apt,200,2,7,2019-07-06,0.55,1,44 +24911170,Renovated Garden Townhouse Apartment,188337220,Fred,Brooklyn,Bedford-Stuyvesant,40.68452,-73.91614,Entire home/apt,99,3,49,2019-07-02,3.63,1,102 +24911227,1-Bed Apt on East River - 1 stop from Manhattan!,17005953,Cassondra,Queens,Long Island City,40.74462,-73.94913,Entire home/apt,110,1,3,2018-07-03,0.23,1,0 +24911468,Gorgeous 2 BR 2 BA Condo in Flushing Chinatown,5962328,Alan,Queens,Flushing,40.76025,-73.8221,Entire home/apt,115,30,1,2019-06-11,1,15,291 +24912129,Fabulous mid century modern apt in Williamsburg,4407432,Antoinette,Brooklyn,Williamsburg,40.72163,-73.95465,Entire home/apt,225,2,9,2019-06-10,0.66,1,120 +24912450,"RahShoeRay Cozy, Comfortable and Accommodating.",181397986,Samantha,Brooklyn,Bedford-Stuyvesant,40.68569,-73.93729,Private room,95,1,21,2019-01-04,1.48,2,260 +24912783,Brooklyn Park Slope Oasis,7065881,Zina,Brooklyn,Park Slope,40.67691,-73.98163,Entire home/apt,139,4,3,2019-05-27,0.24,1,0 +24913445,Bright sunny room in Bushwick with backyard.,7780845,Liset,Brooklyn,Bushwick,40.70269,-73.91778,Private room,65,2,20,2019-06-30,1.57,3,282 +24913510,True NYC soho experience amazing gem.. large space,28823649,Rose,Manhattan,SoHo,40.72432,-74.00195,Entire home/apt,160,1,6,2019-05-25,0.66,3,172 +24914710,Apartamento para viagem NY,188362154,Jordana,Queens,Astoria,40.76623,-73.91279,Private room,150,5,0,,,1,362 +24915372,A true NYC gem!,188365772,Alan,Manhattan,Harlem,40.82307,-73.95447,Entire home/apt,250,3,0,,,1,0 +24915585,"Beautiful, spacious & quiet!",7072861,Ana,Manhattan,Gramercy,40.73714,-73.98827,Entire home/apt,175,4,2,2018-08-06,0.15,1,3 +24915761,Brooklyn Studio with a View,2642222,Michael,Brooklyn,Prospect Heights,40.6813,-73.97449,Entire home/apt,179,2,19,2019-01-06,1.84,1,0 +24916571,Charming 2 Bedroom Private Apartment in Greenpoint,6919899,Cecilia,Brooklyn,Greenpoint,40.72901,-73.94754,Entire home/apt,130,2,34,2019-06-27,3.34,1,129 +24916744,Newly Renovated Full One Bedroom Brooklyn Apt,93359389,David,Brooklyn,East Flatbush,40.65755,-73.92341,Entire home/apt,80,2,18,2019-06-18,1.46,1,39 +24916951,Amazing Bedroom in fantastic apartment in Brooklyn,8629268,Juan,Brooklyn,Bedford-Stuyvesant,40.68037,-73.93821,Private room,44,3,4,2018-07-29,0.28,1,0 +24917079,Spacious Centrally Located 1 Bedroom Apartment,33225521,Kate,Manhattan,East Village,40.72888,-73.99019,Entire home/apt,300,1,8,2019-05-16,0.58,1,16 +24917120,Sunny Village Suite with Private Patio!,50296004,Emily,Manhattan,Greenwich Village,40.73463,-73.99796,Entire home/apt,215,2,18,2019-07-07,1.33,1,38 +24918349,Private Studio Apartment in Lively Crown Heights,188390380,Nicole,Brooklyn,Crown Heights,40.67575,-73.95074,Entire home/apt,100,1,26,2018-08-30,1.91,1,0 +24918572,The Crown,188391102,Alliot,Brooklyn,Crown Heights,40.67442,-73.94096,Entire home/apt,295,4,7,2019-05-10,0.56,2,343 +24919299,Upper Westside studio for two or just you!,128258877,Kristanne,Manhattan,Upper West Side,40.79332,-73.97501,Entire home/apt,100,1,4,2018-10-16,0.29,1,0 +24919725,Shared Open Studio - Floor Space,159154462,Ken,Manhattan,Midtown,40.75722,-73.98162,Shared room,85,1,5,2018-10-18,0.36,2,83 +24919742,South Park Slope House (Aug 5 - 27; 10 day min),134122415,Garry,Brooklyn,Windsor Terrace,40.6604,-73.98316,Entire home/apt,150,10,3,2019-04-25,0.25,1,23 +24919764,Thomas's creek,169882061,Keisha,Brooklyn,Bedford-Stuyvesant,40.68518,-73.93682,Entire home/apt,225,2,23,2019-06-24,1.66,1,77 +24921526,Private Room (Front) In A Beautiful Apartment,79651295,Nkem,Queens,Jamaica,40.67733,-73.78826,Private room,80,2,0,,,4,179 +24921584,BIG STYLISH LOFT/ROOM with access in the backyard,34184387,Genevieve,Brooklyn,Prospect-Lefferts Gardens,40.65887,-73.94924,Private room,75,5,2,2019-01-02,0.16,1,54 +24921735,Huge Master Bedroom In A Very Spacious Apartment,79651295,Nkem,Queens,Jamaica,40.67894,-73.78885,Private room,140,1,1,2018-05-19,0.07,4,177 +24922519,Beautiful brownstone garden apt. w/outdoor,25347213,Hili,Brooklyn,Bedford-Stuyvesant,40.68432,-73.9515,Entire home/apt,110,2,3,2018-06-23,0.23,1,0 +24923524,Rooftop Condo,42931425,Tino,Brooklyn,Flatbush,40.65333,-73.95381,Private room,100,1,0,,,1,0 +24931508,Sunny & Spacious 1 bedroom in Williamsburg,187530856,Baris,Brooklyn,Williamsburg,40.70933,-73.94779,Entire home/apt,265,2,4,2018-10-07,0.29,2,89 +24933154,Super clean and bright cheerful apartment.,11095383,Victor,Brooklyn,Flatbush,40.63074,-73.95849,Entire home/apt,150,4,1,2018-07-18,0.08,1,20 +24933530,Sunny Brooklyn apt. Quick walk to Prospect Park,104051773,Sophie,Brooklyn,East Flatbush,40.65215,-73.95219,Entire home/apt,91,3,4,2019-01-02,0.30,1,12 +24935048,Surrealist Luxury Loft,11949316,Andrea,Manhattan,Chelsea,40.74903,-73.99198,Entire home/apt,795,3,21,2019-06-19,2.56,1,16 +24935780,Broadway Homebase,188518588,James,Manhattan,Hell's Kitchen,40.76189,-73.98991,Entire home/apt,185,10,23,2019-06-26,1.68,1,68 +24936179,"Centrally located, quiet Hell's Kitchen bedroom.",137255181,Michael,Manhattan,Hell's Kitchen,40.76402,-73.98694,Private room,125,4,1,2018-05-13,0.07,1,0 +24937799,nyc studio apartment,37193449,Julie,Queens,Sunnyside,40.74548,-73.91833,Entire home/apt,75,5,0,,,1,0 +24938183,Private rooftop Penthouse heaven,13089912,Leo,Manhattan,East Village,40.7258,-73.97963,Entire home/apt,330,2,3,2019-05-27,0.25,2,22 +24939453,King bedroom w/ private bathroom in gorgeous Loft,1407676,Jessica,Brooklyn,Williamsburg,40.71739,-73.95804,Private room,99,2,0,,,4,159 +24939648,"Cozy, warm and Clean Stay in Flushing!",177156643,Dalila,Queens,Flushing,40.76991,-73.8265,Private room,50,3,24,2019-06-09,1.73,1,153 +24940447,"Charming Harlem Nook /Coin Charmant de Harlem, NYC",62026191,Olivier,Manhattan,Harlem,40.81585,-73.94272,Private room,79,1,67,2019-06-29,4.82,1,78 +24940507,"Massive, sunny Williamsburg apartment w/ backyard",10777921,Johnny & Hala,Brooklyn,Williamsburg,40.71269,-73.94772,Entire home/apt,129,2,8,2019-06-14,0.57,1,0 +24941111,Guest Room with A/C,188556821,Harry And Kelly,Queens,Woodside,40.74337,-73.90405,Private room,40,1,7,2018-06-15,0.50,1,0 +24941609,NY’s Highest End Celebrity Building + Balconies!,65562107,Gina,Manhattan,Tribeca,40.71868,-74.00765,Entire home/apt,1200,5,13,2019-06-15,0.98,1,347 +24942175,Big 2-bdrm / Morgan Ave L Train / Roberta's,36849759,Peter,Brooklyn,Bushwick,40.7022,-73.93165,Entire home/apt,200,2,39,2019-06-17,3.09,2,209 +24942474,"Ideal Brooklyn Room, Spacious Apartment w/Garden",45376603,Carolyn,Brooklyn,Bushwick,40.69495,-73.92075,Private room,41,2,9,2018-09-20,0.64,1,0 +24942569,My new place,182690453,Rafael,Brooklyn,Navy Yard,40.69833,-73.97087,Private room,140,2,37,2019-06-16,2.64,1,157 +24943283,WeLive Wall Street -- 3 Bedroom,159610596,WeWork,Manhattan,Financial District,40.70606,-74.0054,Entire home/apt,295,1,54,2019-06-29,3.95,6,117 +24943484,Waycross Vista Studio Apartment,56726605,Weisbrod,Brooklyn,Canarsie,40.64432,-73.90556,Entire home/apt,125,5,6,2019-01-02,0.44,3,90 +24943768,Luxurious Suite Grand Central,168465501,Ian,Manhattan,Murray Hill,40.74929,-73.97827,Entire home/apt,150,30,3,2018-11-23,0.27,4,113 +24943903,Parlor Suite Midtown Manhattan,29100568,Deborah,Manhattan,Theater District,40.76093,-73.98192,Entire home/apt,170,20,1,2018-05-29,0.07,4,0 +24944554,"1 Bed Apartment close to city, Astoria, LIC",1590939,James,Queens,Astoria,40.7588,-73.92566,Entire home/apt,101,10,0,,,1,0 +24945253,Brand new beach front house near JFK (2),187383058,John,Queens,Arverne,40.5872,-73.79567,Entire home/apt,350,2,25,2019-07-07,1.83,2,332 +24945323,Cozy 1 Bedroom on Upper West Side,164724867,Kevin,Manhattan,Upper West Side,40.78922,-73.97398,Entire home/apt,175,2,8,2019-06-02,0.59,1,1 +24945511,Elegance on West Side,48889862,Miki,Manhattan,Harlem,40.79891,-73.9528,Entire home/apt,105,2,42,2019-07-01,3.04,1,115 +24945567,Spacious Sunny Private Bedroom in the Bushwick BK,61980894,Kevin,Brooklyn,Bushwick,40.6954,-73.92596,Private room,54,2,7,2018-11-09,0.54,1,90 +24945710,Hey New Yorkers!,169940010,Sergio,Queens,Ridgewood,40.70126,-73.90231,Private room,90,1,4,2018-07-29,0.28,1,269 +24946871,"Beautiful, spacious & well-lit 1BR (Astoria, QNS)",6636303,Alexander,Queens,Astoria,40.7596,-73.92368,Entire home/apt,125,3,3,2019-06-25,0.26,1,0 +24947076,"3-bedroom sunny, quiet, spacious Williamsburg apt",17344471,Chris,Brooklyn,Williamsburg,40.71698,-73.94224,Entire home/apt,233,6,0,,,2,0 +24948017,VERY BIG APARTMENT IN HARLEM/ENTIRE APARTMENT,185683441,Maxime C And Winie C,Manhattan,Harlem,40.81634,-73.94344,Entire home/apt,400,2,3,2018-10-26,0.24,3,175 +24958209,2 Bedroom Garden Getaway,65903420,Brendan,Brooklyn,Crown Heights,40.66673,-73.96158,Entire home/apt,139,3,43,2019-05-26,3.28,1,68 +24959305,"Bright renovated apartment, quiet Bushwick block!",3440653,Jessica,Brooklyn,Bushwick,40.69493,-73.92276,Entire home/apt,135,3,42,2019-06-24,3.04,1,92 +24960138,"Bright, Winged Tribeca Studio w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71686,-74.00484,Entire home/apt,305,30,0,,,232,6 +24961004,brand new studio in the East Village with roofdeck,1562990,Natalie,Manhattan,East Village,40.72249,-73.982,Entire home/apt,175,7,4,2019-01-03,0.38,1,0 +24961967,BEAUTIFUL LUX STUDIO -AMAZING ENTERTAINMENT SYSTEM,104684975,Studio,Brooklyn,Canarsie,40.64361,-73.90435,Entire home/apt,140,1,1,2018-06-20,0.08,1,178 +24962583,"Great value ,central Manhattan apartment",18767788,Earl,Manhattan,Gramercy,40.7355,-73.98,Entire home/apt,126,2,25,2018-12-15,2.03,1,30 +24962971,Comfortable Bedroom 2 Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.64964,-73.9992,Private room,75,1,13,2019-05-26,0.96,2,68 +24963166,Huge Room in the Middle of Bushwick,94860592,Kayleigh,Brooklyn,Bushwick,40.69992,-73.92235,Private room,62,2,5,2018-09-23,0.36,1,0 +24964123,Quiet room in Prospect Heights,13486673,David,Brooklyn,Prospect Heights,40.67846,-73.97157,Private room,99,2,2,2018-09-28,0.14,3,0 +24965059,C) Cozy Two Beds Wifi near JFK Airport and subways,154128335,Joseph,Queens,Jamaica,40.70071,-73.81282,Private room,50,1,4,2019-06-30,4,4,337 +24965233,"Cute, renovated 2 bedroom Apt. in East Village",89608382,Meghan,Manhattan,East Village,40.72522,-73.98205,Entire home/apt,224,3,4,2019-01-01,0.29,1,7 +24965423,Spacious Private Suite in a Brooklyn Brownstone,4219594,Jenna,Brooklyn,Bedford-Stuyvesant,40.68296,-73.9358,Private room,95,2,3,2018-10-08,0.22,1,11 +24965929,Bright 1-Bedroom Gem in Fort Greene,1180925,Mark,Brooklyn,Fort Greene,40.69476,-73.97224,Entire home/apt,108,3,5,2019-06-26,0.36,3,99 +24966197,"Quiet, private room (Hell's Kitchen/West Midtown)",28808740,Robert,Manhattan,Hell's Kitchen,40.76491,-73.98956,Private room,94,3,11,2019-06-23,0.78,2,0 +24966304,Jul Discount! Private Flat (with Patio!) in NYC,188741104,Susan,Manhattan,Harlem,40.80875,-73.94238,Entire home/apt,160,31,48,2019-06-30,3.44,4,117 +24967000,Gorgeous apartment with access to all #2,175116422,Karilyn,Staten Island,Grant City,40.57856,-74.1107,Entire home/apt,72,3,11,2019-03-24,1.05,3,333 +24967765,Modern 2 bedroom Upper East Side apartment.,103152379,Kate,Manhattan,Upper East Side,40.76195,-73.96056,Entire home/apt,199,3,22,2019-07-01,1.58,1,329 +24968131,Private Room in peaceful town,7989399,Esin,Queens,Sunnyside,40.73891,-73.92642,Private room,50,3,3,2018-10-10,0.29,2,112 +24968602,Brooklyn room in the perfect location.,7894144,Anthony,Brooklyn,Williamsburg,40.71486,-73.95705,Private room,75,2,8,2018-06-25,0.58,1,0 +24968879,Studio Apartment in Astoria - Best Location!,50770601,Diana,Queens,Astoria,40.76871,-73.91839,Entire home/apt,169,1,8,2019-04-24,0.62,5,297 +24968926,bushwick’s cozy nook,22010249,Jose,Brooklyn,Bushwick,40.68973,-73.91172,Private room,75,3,36,2019-07-07,3.40,2,292 +24969653,"Cozy, Clean Private Mini Studio in New York City",188741104,Susan,Manhattan,Harlem,40.80954,-73.94257,Entire home/apt,85,31,49,2019-07-04,3.51,4,119 +24969822,Modern Apartment in Long Island City,137575565,Jamesdean,Queens,Long Island City,40.7563,-73.93402,Private room,75,3,2,2018-06-29,0.16,1,0 +24970116,One-bedroom unit in Rego Park,188773665,Yan,Queens,Rego Park,40.72038,-73.86311,Private room,99,1,55,2019-07-03,3.92,1,4 +24970249,Peaceful&Sun filled 2BR&private bathroom near NYC,12931469,Margarita,Staten Island,Great Kills,40.54901,-74.142,Private room,120,2,4,2018-11-19,0.29,3,86 +24970373,Studio apartment; close to tourist attractions,58391499,Sia,Manhattan,Civic Center,40.71175,-74.00763,Entire home/apt,200,2,4,2018-12-31,0.45,1,0 +24970711,Budget Basement,188783370,Faraz,Queens,Flushing,40.73968,-73.80601,Private room,80,1,9,2018-08-10,0.65,1,0 +24970982,Central & Comfortable 1BR Brownstone Apartment,4303181,Veronique,Brooklyn,Carroll Gardens,40.68352,-73.9999,Entire home/apt,150,2,37,2019-06-25,2.93,1,100 +24973698,"Colorful, quiet, private room near LaGuardia/NYC",2424887,Briyah,Queens,Ditmars Steinway,40.76729,-73.89166,Private room,55,1,36,2019-07-01,3.11,1,179 +24976971,1 bedroom apartment on Columbus Avenue,76104209,Rated,Manhattan,Upper West Side,40.7936,-73.96642,Entire home/apt,180,30,0,,,33,364 +24978091,"Cozy, newly furnished apartment in the heart of NY",14759219,Alexandra,Manhattan,Murray Hill,40.74793,-73.97958,Entire home/apt,120,5,2,2018-06-04,0.15,1,0 +24978251,Cozy private room in luxury apartment,3673226,Linda,Manhattan,East Harlem,40.78723,-73.94949,Private room,90,3,5,2019-03-25,0.37,1,0 +24983084,Triple Mint Townhouse in the heart of West Village,5719667,Alexander,Manhattan,West Village,40.73722,-74.00263,Entire home/apt,1500,3,15,2019-06-24,1.21,1,54 +24983373,10 mins from JFK. Smoking okay.,69700229,Shatese,Queens,Jamaica,40.68067,-73.77949,Private room,40,1,70,2019-07-03,5.07,3,90 +24985440,"CHEAP ROOM IN QUEENS, CLOSE TO SUBWAY STATION",463061,Lise,Queens,Woodhaven,40.69642,-73.8502,Private room,42,3,5,2018-08-11,0.36,2,281 +24987685,Short Stay NearJFK.,94713722,Joy,Queens,St. Albans,40.69012,-73.75349,Private room,55,2,8,2019-04-23,0.76,4,122 +24987915,Stylish Apartment 3 Blocks from Central Park,10972311,Thomas,Manhattan,East Harlem,40.79438,-73.94463,Entire home/apt,180,10,13,2019-05-27,0.92,1,11 +24988189,Da Sanctum,26796335,Guillermo,Manhattan,Upper West Side,40.79891,-73.96446,Entire home/apt,225,2,29,2019-06-30,2.21,1,35 +24990534,Maurice’s Penthouse,3530446,Maurice,Brooklyn,Crown Heights,40.67604,-73.95071,Entire home/apt,150,3,27,2019-07-03,2.09,3,288 +24991133,From home to home,91554527,Aboubakar,Bronx,Highbridge,40.83413,-73.92918,Private room,50,3,23,2019-04-07,1.64,1,188 +24992418,Cute & Cozy Studio in Chelsea!,9711035,Madison,Manhattan,Chelsea,40.7464,-73.99701,Entire home/apt,170,28,4,2019-06-08,0.32,1,61 +24992558,ENTIRE Spacious Brownstone Apartment (UNFURNISHED),12633660,Benjamin,Brooklyn,Carroll Gardens,40.67899,-74.00089,Entire home/apt,50,3,5,2019-05-31,0.63,1,0 +24992835,"**FULL FLOOR - 3 BEDRMS, Times Sq/Restaurant Row**",157402346,Victor,Manhattan,Hell's Kitchen,40.76201,-73.99099,Entire home/apt,350,2,60,2019-06-17,4.28,1,224 +24993467,"Prime Williamsburg: 3 Bed, 2 Bath Luxury Apartment",143739618,Nicholas,Brooklyn,Williamsburg,40.71649,-73.95475,Entire home/apt,415,3,1,2018-05-27,0.07,1,0 +24993686,"""Cozy Retreat"" in North Crown Heights",188947623,Priscilla,Brooklyn,Crown Heights,40.66998,-73.94702,Entire home/apt,112,2,50,2019-07-05,3.93,1,0 +24993713,"Stylish, clean & quiet 1 bdr apt in Manhattan",27793336,Helen Maria,Manhattan,East Harlem,40.78877,-73.94647,Private room,170,2,5,2018-09-24,0.50,1,0 +24995099,PLACE NEXT TO THE BEACH,177860344,Maria,Brooklyn,Brighton Beach,40.57569,-73.95892,Private room,80,3,1,2018-09-30,0.11,1,178 +24995291,"Authentic, downtown Manhattan loft condo",188964841,Leslie,Manhattan,East Harlem,40.80083,-73.93778,Entire home/apt,300,1,5,2019-06-14,0.57,1,352 +24995898,Private room Brooklyn,188969229,Auri,Brooklyn,Bushwick,40.68845,-73.91878,Private room,60,1,50,2019-06-27,3.61,1,91 +24996332,Master Bedroom with Full Bath & Manhattan View,129743937,Win,Queens,East Elmhurst,40.75809,-73.8693,Private room,54,1,135,2019-07-02,9.74,2,48 +25002172,Private room in the Bronx for females & couples.,188218993,Suleyma,Bronx,Kingsbridge,40.8801,-73.89709,Private room,46,1,68,2019-06-21,4.89,1,63 +25004276,1 sunny bedroom in Parkchester,189022543,Anne,Bronx,Parkchester,40.83688,-73.85584,Private room,80,2,6,2018-11-01,0.44,1,0 +25005483,3-bdrm Newly Renovated Townhouse.,139756559,Maria,Staten Island,Great Kills,40.54639,-74.13706,Entire home/apt,180,30,9,2018-10-09,0.79,2,130 +25005877,"Designer Studio / 1BR in Williamsburg, Nice Views",108160091,Dasha,Brooklyn,Williamsburg,40.70996,-73.96129,Entire home/apt,168,10,3,2018-10-31,0.22,3,284 +25006193,Barclays Place - An Idyllic One Bedroom Apartment,189036764,Shravan,Brooklyn,Park Slope,40.68375,-73.97839,Entire home/apt,400,2,0,,,1,32 +25007110,Private Bedroom (Back) In A Beautiful Apartment,79651295,Nkem,Queens,Jamaica,40.67901,-73.78876,Private room,100,2,0,,,4,179 +25007742,Postmodern Studio,189047392,Dylan,Brooklyn,Clinton Hill,40.69047,-73.9605,Private room,97,1,23,2019-06-03,1.68,1,189 +25010171,sunshine,159027993,Michelle,Queens,Flushing,40.76106,-73.81279,Private room,48,4,11,2019-05-28,0.79,2,168 +25011664,Peace and quiet in the hustle and bustle,189075482,Chloe,Brooklyn,Cypress Hills,40.67901,-73.89224,Entire home/apt,95,1,22,2019-01-03,1.61,3,126 +25011733,"Trendy, light-filled apartment in Lower East Side.",17842138,Anna,Manhattan,Chinatown,40.71529,-73.99088,Entire home/apt,170,1,11,2019-06-24,0.78,1,24 +25011804,"NYC SkyLoft on Central Park, balcony w/ city view",54228386,Stefani,Manhattan,East Harlem,40.79844,-73.94747,Private room,125,1,81,2019-07-02,6.64,1,29 +25012058,"Lovely room with private terrace, ensuite",11307033,Devon,Manhattan,East Village,40.72561,-73.97622,Private room,175,1,41,2019-05-17,3.14,2,13 +25012767,Private Cozy Bedroom with Patio,161659518,A,Manhattan,Kips Bay,40.74153,-73.9797,Private room,80,30,3,2018-07-31,0.23,1,0 +25012966,Comfy quiet 2BR in Manhattan 25mins to Time-square,9177778,Kana,Manhattan,Lower East Side,40.71339,-73.98684,Entire home/apt,139,3,47,2019-06-23,3.45,1,28 +25013656,Stylish Downtown Apt. (Between Nolita + LES.),4552628,Umber,Manhattan,Chinatown,40.71329,-73.99602,Entire home/apt,162,2,4,2018-06-24,0.28,1,0 +25014162,Bright and spacious private bed-and bathroom!,18718315,Gigi,Brooklyn,Bedford-Stuyvesant,40.69197,-73.92795,Private room,75,4,25,2019-06-29,2.26,1,249 +25015496,"5min from JFK airport, Train, Casino, Racetrack",189108951,Doris,Queens,South Ozone Park,40.66954,-73.80601,Entire home/apt,93,2,48,2019-06-22,3.47,1,316 +25015511,Humble Home in Harlem,159009468,Jay,Manhattan,Harlem,40.81444,-73.94385,Private room,99,7,10,2018-12-24,1.29,1,0 +25017403,Glamping Van,10407935,Meng,Manhattan,Nolita,40.72238,-73.99466,Entire home/apt,89,1,15,2019-05-27,1.12,8,34 +25017424,Magical Brooklyn townhouse room fit for a wizard,189075482,Chloe,Brooklyn,Cypress Hills,40.67988,-73.89201,Private room,85,1,17,2019-06-10,1.64,3,67 +25018204,"Paradise Garden, Spa, Steam & Massage Table #10299",172611460,Rasmus,Manhattan,Harlem,40.82263,-73.95181,Entire home/apt,2500,3,14,2019-06-24,1.38,2,150 +25024676,"Cozy, tranquil bedroom steps from Central Park B",152195388,Rachel,Manhattan,Upper West Side,40.78371,-73.97358,Private room,105,20,5,2019-03-25,0.39,2,64 +25025092,"Scandinavian ""hygge"" in Bed Stuy Brooklyn",127560,Anita,Brooklyn,Bedford-Stuyvesant,40.68429,-73.92952,Entire home/apt,100,4,33,2019-06-25,2.55,1,23 +25025533,"Luxe Large Studio Apt with Rooftop, Doorman, & Gym",6319849,Charles,Manhattan,Hell's Kitchen,40.75678,-73.99357,Entire home/apt,198,9,2,2019-01-31,0.28,1,12 +25026993,Single room in Clinton Hill brownstone,64426364,Micaela,Brooklyn,Bedford-Stuyvesant,40.68593,-73.95702,Private room,48,7,6,2019-06-23,0.45,1,0 +25027222,Safe 'n Handsome 2,133123832,Parmenides,Manhattan,Upper West Side,40.78802,-73.96926,Entire home/apt,117,30,0,,,3,200 +25028952,Charming studio in Brooklyn,178038608,Tal,Brooklyn,Clinton Hill,40.69365,-73.96511,Entire home/apt,110,7,2,2018-07-20,0.14,1,125 +25029794,East Village gem,17145227,Ola,Manhattan,East Village,40.72458,-73.98822,Entire home/apt,206,5,3,2019-01-02,0.22,1,12 +25029982,Cozy Studio in Greenwich Village,4246574,Andrea,Manhattan,Greenwich Village,40.72852,-74.00151,Entire home/apt,164,5,0,,,1,0 +25030090,Bushwick bedroom w/ private bath (Jefferson Stop),2533755,Alex & Dave,Brooklyn,Bushwick,40.70388,-73.92529,Private room,90,1,74,2019-06-24,5.58,1,48 +25030446,SoBecaTown 1 Bedroom,6529128,Kendra,Manhattan,Tribeca,40.71854,-74.00352,Entire home/apt,220,3,15,2019-06-21,1.21,1,84 +25030760,Small and cozy room in awesome place,8076786,Suri,Brooklyn,Sunset Park,40.65907,-73.99887,Private room,150,1,1,2019-03-19,0.27,3,365 +25031116,Bedroom in Bushwick.,189224482,Amanda,Brooklyn,Bushwick,40.68569,-73.9143,Private room,45,7,0,,,1,0 +25031182,Comfy bedroom in heart of Lower East Side,2830216,Drew,Manhattan,Lower East Side,40.71937,-73.99202,Private room,65,7,9,2018-11-17,0.71,1,0 +25031344,"Cozy Studio in East Village, close to everything",28660089,John,Manhattan,East Village,40.72547,-73.98401,Entire home/apt,170,2,7,2019-05-12,0.52,1,0 +25031387,2 Bedroom 1 Bath by NYC Train and Major Highways,72517332,Monique & Bianca,Bronx,Kingsbridge,40.88485,-73.89756,Entire home/apt,399,2,25,2019-06-09,1.79,1,356 +25031793,East Village Penthouse,1273920,Tashi,Manhattan,East Village,40.72606,-73.97913,Entire home/apt,175,3,2,2018-10-07,0.15,1,0 +25032319,Cozy Convenient 2-Bed GARDEN APT w/Central Heat/AC,30736639,Kellie & Joachim,Brooklyn,Bushwick,40.68778,-73.90748,Entire home/apt,99,3,34,2019-06-21,2.58,2,119 +25032957,Historic Brooklyn Heights Apt,1030249,Garth,Brooklyn,Brooklyn Heights,40.69924,-73.99303,Entire home/apt,185,7,10,2019-07-04,0.87,1,125 +25033384,Cozy and renovated one bedroom apartment,99556266,Mariano,Manhattan,East Harlem,40.79725,-73.93311,Entire home/apt,150,2,33,2019-06-14,2.63,2,304 +25033659,Brooklyn Hidden Oasis.,64542737,Ana,Brooklyn,East New York,40.6724,-73.87641,Entire home/apt,175,3,10,2019-06-17,0.74,1,292 +25033991,5min to Subway★20min to Manhattan★Large Bklyn Apt!,189249070,Ness,Brooklyn,Bedford-Stuyvesant,40.68061,-73.93642,Entire home/apt,189,30,24,2019-06-10,1.82,1,99 +25034086,Clean1,156505456,John,Brooklyn,East New York,40.66154,-73.88874,Private room,51,3,13,2019-06-22,0.97,13,180 +25034108,"Large Manhattan Apt 3 BED/2 FULL BATH, Midtown NYC",179014177,Masako,Manhattan,Murray Hill,40.74523,-73.97334,Entire home/apt,398,5,3,2018-07-26,0.25,1,12 +25034878,Upper East Side Getaway! Lots of space!,169960804,Sanah,Manhattan,Upper East Side,40.77277,-73.94965,Entire home/apt,175,1,7,2018-10-30,0.51,1,0 +25036166,BK NEST-Across Barclays & trains/City 10 mins away,187103481,Carol,Brooklyn,Park Slope,40.68241,-73.97719,Entire home/apt,160,2,39,2019-06-21,3.02,1,246 +25042316,Nikki Welcomes you! Private parking space!,112142263,Nicole,Brooklyn,Canarsie,40.63816,-73.91443,Entire home/apt,65,1,119,2019-07-07,9.13,1,61 +25045213,Private Bedroom in 2-bed/New Full-Service Building,3346513,Sorel,Brooklyn,Downtown Brooklyn,40.68984,-73.98416,Private room,130,2,38,2019-06-28,2.73,2,103 +25047309,"The Awesome ,XL Flat",2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69401,-73.94785,Entire home/apt,96,2,39,2019-04-22,2.88,3,237 +25047693,Queens Home Close to Major Airports & Manhattan,189356812,Odit (Andy),Queens,Richmond Hill,40.68834,-73.82624,Entire home/apt,89,3,29,2019-07-01,2.52,1,313 +25048250,Private Bedroom in large 2 bedroom 1100sf apt,95038818,Miho,Brooklyn,Prospect Heights,40.67757,-73.97017,Private room,70,1,42,2019-06-16,3.01,1,163 +25048895,Spacious beautiful Bed Stuy duplex with garden,8901437,Jerome,Brooklyn,Bedford-Stuyvesant,40.68441,-73.9401,Entire home/apt,99,4,3,2019-01-23,0.23,1,0 +25048962,2 Bedroom SOHO Loft,1722340,Natalia,Manhattan,SoHo,40.72373,-74.00552,Entire home/apt,450,2,0,,,1,164 +25049092,Full apt. by Columbia Univ & Subway in Manhattan,46817579,Mihyun,Manhattan,Harlem,40.82996,-73.9449,Private room,69,7,6,2018-12-10,0.53,1,156 +25049405,Loft with View of the Park,189369825,Mary,Manhattan,Tribeca,40.71612,-74.01054,Entire home/apt,500,2,1,2018-07-30,0.09,1,363 +25051166,NEAR COLUMBIA PRESBYTERIAN HOSP- Students*Visitors,25237492,Juliana,Manhattan,Washington Heights,40.84115,-73.94095,Private room,50,30,2,2019-02-06,0.17,34,311 +25053445,Brooklyn Heights Oasis,106436589,Wendy,Brooklyn,Brooklyn Heights,40.69915,-73.9962,Private room,120,1,18,2019-06-23,1.42,2,75 +25054120,DREAMY! Huge + sunny mid-century apt with balcony,8440,Michelle,Brooklyn,Flatbush,40.6397,-73.96554,Entire home/apt,197,4,10,2019-05-18,0.78,1,228 +25054951,NO LONGER AVAILABLE SORY,70120241,Darren,Manhattan,Upper West Side,40.79629,-73.96523,Entire home/apt,225,59,0,,,1,358 +25055293,Beautiful studio with sleeping loft in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.70498,-73.90023,Entire home/apt,105,2,47,2019-07-07,3.47,3,95 +25055376,Chic & Cozy Apartment with Balcony,133658348,Tiffany,Manhattan,Harlem,40.8067,-73.94481,Entire home/apt,170,2,8,2019-01-01,0.59,1,35 +25055498,Room 6 - Comfy Bed in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.6429,-73.96877,Private room,68,2,38,2019-07-02,2.73,6,85 +25056684,Spacious Studio in the Hamilton Heights,129823499,Waleed,Manhattan,Harlem,40.81931,-73.956,Entire home/apt,110,7,0,,,1,0 +25057086,Beautiful 1-bedroom apartment in the West Village,19430913,Isabell,Manhattan,West Village,40.73058,-74.0021,Entire home/apt,200,3,6,2018-11-27,0.45,1,0 +25057198,Entire True Two-Bedroom Steps From Central Park!,16205855,Ali,Manhattan,Upper West Side,40.79282,-73.97353,Entire home/apt,360,6,0,,,1,0 +25058563,Art Studio by the Park,13583715,Mona,Manhattan,Upper East Side,40.77788,-73.96114,Entire home/apt,165,30,4,2018-06-27,0.29,1,203 +25058903,Sunny and Charming 1BR Upper East Side,143420714,Kit,Manhattan,Upper East Side,40.77017,-73.95365,Entire home/apt,200,5,10,2019-05-04,0.82,1,224 +25061086,The Art House,5942292,@ Art House Monique,Brooklyn,Bedford-Stuyvesant,40.68244,-73.93908,Entire home/apt,265,2,3,2018-12-02,0.29,4,114 +25069823,Riverside Drive Condo with a View,69866875,Georgina,Manhattan,Harlem,40.83298,-73.948,Private room,100,7,1,2018-05-15,0.07,1,0 +25070554,Tribeca Luxury Doorman Apartment with Park Views,24069,YuJin,Manhattan,Tribeca,40.71809,-74.01205,Entire home/apt,140,1,9,2019-03-30,0.64,1,44 +25071113,"Airy, art-filled home in bohemian East Village",104921994,Sunhwa,Manhattan,East Village,40.72718,-73.9843,Entire home/apt,128,30,7,2019-05-16,0.50,1,142 +25071168,1 Bedroom Garden Apt with backyard in Park Slope,150440720,Bruce,Brooklyn,Park Slope,40.67218,-73.97774,Entire home/apt,125,1,40,2019-06-23,2.97,1,335 +25072401,Mia Suite East Village-free Street Parking+wifi,116839989,Ez,Manhattan,East Village,40.73075,-73.98114,Entire home/apt,150,30,59,2019-06-19,4.41,5,207 +25073155,Beautiful one bedroom in the heart of Harlem!,16237288,Etty,Manhattan,Harlem,40.80973,-73.9457,Private room,80,1,23,2019-06-19,1.75,1,323 +25074008,Bdrm 5 Mins from Train w/ Big Backyard + Laundry,80465615,Kenya,Brooklyn,Crown Heights,40.67208,-73.94071,Private room,52,1,2,2018-08-07,0.16,1,0 +25074072,"Family Gather + 5 bedrooms 3 full baths 2 floors",49950511,Daveth,Brooklyn,East Flatbush,40.64351,-73.95167,Entire home/apt,350,4,32,2019-07-01,2.63,1,69 +25075209,Bright New Apt in Heart of Williamsburg!,31906423,Mike,Brooklyn,Williamsburg,40.71869,-73.95487,Entire home/apt,129,2,5,2018-07-29,0.36,1,0 +25075529,Comfy cozy studio in LES,164668733,Amalia,Manhattan,East Village,40.72228,-73.98584,Entire home/apt,125,5,3,2018-08-19,0.24,1,0 +25076765,Spacious Master Bedroom in Williamsburg,168180986,Evan,Brooklyn,Williamsburg,40.7191,-73.94408,Private room,100,3,8,2018-12-25,0.61,1,0 +25077177,"PRIVATE, Safe, TIMES SQUARE, Lovely Apt w/ Garden",4482351,Zoey,Manhattan,Hell's Kitchen,40.75996,-73.99223,Entire home/apt,140,5,15,2019-06-13,1.11,2,7 +25077481,Plant Vibes Private Bedroom,2846279,Nick & Vance,Brooklyn,Bedford-Stuyvesant,40.68791,-73.92256,Private room,45,2,61,2019-07-04,4.38,1,92 +25078650,A great place to crash.,21938126,Reenie,Brooklyn,Bedford-Stuyvesant,40.6882,-73.94444,Private room,70,2,11,2019-06-14,0.80,2,20 +25080097,•5 mins to Manhattan super cozy•,128793815,Atthaphon,Brooklyn,Williamsburg,40.72015,-73.96117,Private room,75,5,2,2019-05-05,0.15,4,0 +25080137,Sun drenched loft like space with private yard,15820708,Arlene,Brooklyn,Williamsburg,40.70987,-73.94222,Private room,110,3,15,2019-06-23,1.13,2,254 +25082230,Great Space for Business or Pleasure,189604966,Elvis,Bronx,Schuylerville,40.83022,-73.83286,Private room,90,2,1,2018-10-02,0.11,1,35 +25082325,"LES - Quiet, Comfy, and Large Private Bedroom",1262195,Brittany,Manhattan,Lower East Side,40.71325,-73.98511,Private room,100,1,32,2019-07-04,2.51,1,0 +25083937,Feel like HOME in the heart of NYC at UNION Sq,46590745,Kirill,Manhattan,Gramercy,40.73646,-73.98853,Entire home/apt,176,3,58,2019-06-24,4.17,1,67 +25084002,Private Living Room - NOT Shared With Others,24916607,Maggy S,Manhattan,Harlem,40.8163,-73.95262,Shared room,90,1,37,2019-04-18,2.75,1,60 +25085133,The dreamed aparment- World Trade Center area,704043,Claudia,Manhattan,Financial District,40.70907,-74.01371,Private room,89,3,5,2018-09-11,0.38,1,0 +25085427,Amazing Studio step away from time square /71B,48146336,Irina,Manhattan,Hell's Kitchen,40.76243,-73.99316,Entire home/apt,120,30,4,2019-06-30,0.35,20,342 +25085816,Master bedroom in E Harlem with balcony&Doorman,77716287,Marwa,Manhattan,East Harlem,40.80173,-73.94035,Private room,65,2,11,2019-05-09,0.83,1,365 +25085980,DowntownViewAccomodation,86351586,L,Manhattan,Harlem,40.81936,-73.95788,Shared room,95,1,2,2018-09-30,0.15,1,89 +25086038,"GARDEN UTOPIA, UES; SUPERIOR LOCATION & AMENITIES",188613698,Joey,Manhattan,Upper East Side,40.78074,-73.94811,Entire home/apt,180,3,10,2019-06-26,0.86,1,340 +25090268,❤ Bushwick / Room with SmartTV & Private bathroom,81274648,Ming,Brooklyn,Bushwick,40.69787,-73.93091,Private room,60,2,36,2019-06-22,2.61,4,64 +25097211,Private Bedroom in a safe neighborhood in NYC,28229044,Bruno,Queens,Astoria,40.76723,-73.92317,Private room,80,3,0,,,1,0 +25098068,New unit Amazing apartment on 5th ave 3 bdr #4,134601877,Steven,Manhattan,East Harlem,40.80068,-73.94598,Entire home/apt,191,3,36,2019-07-01,3.17,2,28 +25098701,Spacious Studio in Financial District,20797353,Alexandria,Manhattan,Financial District,40.70791,-74.00529,Entire home/apt,130,3,2,2018-07-22,0.17,1,0 +25100219,Beautiful Williamsburg home with spectacular views,65178149,Jonathan,Brooklyn,Williamsburg,40.71603,-73.96417,Entire home/apt,650,2,6,2018-10-11,0.44,1,0 +25101138,WYNDHAM MIDTOWN 45 NEAR THE UNITED NATIONS,189734742,James,Manhattan,Midtown,40.75184,-73.97302,Private room,175,2,3,2018-11-04,0.31,2,0 +25101192,Relaxing Luminous Room - Perfect For Dog-Lovers!,43095955,Shirley,Manhattan,Harlem,40.82675,-73.9463,Private room,100,2,42,2019-07-06,3.51,1,109 +25101744,Cozy & Bright Studio Close to Subway Station,26555925,Luis,Brooklyn,Bedford-Stuyvesant,40.68057,-73.95249,Entire home/apt,113,3,6,2019-01-28,0.46,1,1 +25103135,"Manhattan NYC, train a min away.",182440062,Juan,Manhattan,Harlem,40.82493,-73.93825,Private room,43,1,6,2019-04-29,0.57,2,90 +25104274,Nice bedroom in Morningside Heights spacious flat,7056141,Magda,Manhattan,Morningside Heights,40.80403,-73.96479,Private room,65,30,0,,,1,39 +25104697,Elegant room in Manhattan only for woman,148833266,Luciana,Manhattan,Upper West Side,40.7997,-73.97073,Private room,95,1,6,2019-03-31,0.58,1,12 +25107333,*NEW-LUXURY Heart of MidWest Step away from TimeSQ,186141107,Lindsey,Manhattan,Hell's Kitchen,40.76097,-73.99959,Entire home/apt,200,4,38,2019-06-24,2.79,1,159 +25108878,Bushwick Garden Apartment,32361189,Raymond And Kymme,Brooklyn,Bushwick,40.68242,-73.90941,Entire home/apt,130,2,53,2019-07-05,3.99,1,122 +25109044,Prime Williamsburg Apt steps from Bedford Ave,444570,Jaymes,Brooklyn,Williamsburg,40.71445,-73.96201,Entire home/apt,275,5,0,,,1,0 +25109931,beautiful holidays,61545139,Lyudmila,Brooklyn,Brighton Beach,40.58033,-73.9657,Private room,100,1,3,2018-10-20,0.22,1,250 +25110301,"Sunny home in Sunnyside, NY",41783072,Daniela & Steven,Queens,Sunnyside,40.7446,-73.92342,Private room,85,1,0,,,1,0 +25110602,Oak St. Gem.,3938536,Jessica,Brooklyn,Greenpoint,40.72717,-73.95688,Private room,100,4,1,2018-06-05,0.08,1,0 +25110742,Cozy 1-Bedroom Apartment in Idyllic Sutton Place,32761501,Jackson,Manhattan,Midtown,40.75581,-73.96605,Entire home/apt,190,1,7,2019-05-07,0.51,1,156 +25112819,Sugar Hill Duplex Apartment,12104046,Paula,Manhattan,Harlem,40.82927,-73.94272,Entire home/apt,150,2,50,2019-06-17,3.69,2,298 +25113126,Panda Pod,6801469,Kelly,Queens,College Point,40.78824,-73.84056,Entire home/apt,65,3,28,2019-06-25,2.13,1,26 +25113440,"1 BR APT amazing location, malls, transportation",189829767,Amro,Queens,Corona,40.73587,-73.8616,Entire home/apt,100,14,0,,,1,37 +25117612,Spacious room in Morningside Heights,147313504,Lorena,Manhattan,Morningside Heights,40.81385,-73.9614,Private room,50,5,0,,,1,24 +25124293,Stylish One-Bedroom Apartment in Park Slope,1546476,Janet,Brooklyn,Park Slope,40.67808,-73.98074,Entire home/apt,120,3,9,2019-05-10,0.67,1,2 +25125914,Perfect Space & Private Garden,16437254,Benjamin,Brooklyn,Clinton Hill,40.68432,-73.96026,Entire home/apt,186,30,2,2019-05-01,0.16,21,342 +25126089,Beautiful Spacious Artist’s Home! * close to train,13964451,Monica,Brooklyn,Bedford-Stuyvesant,40.68316,-73.91637,Entire home/apt,120,2,34,2019-06-23,2.49,1,23 +25126466,"Spacious room, suburban house,20 mn from Manhattan",189610052,Kheira,Queens,Glendale,40.70537,-73.88899,Private room,50,2,19,2019-07-01,1.38,1,337 +25127198,Travellers delight #3,104812805,Amarjit S,Staten Island,Arrochar,40.59644,-74.08279,Private room,32,4,10,2019-05-01,0.73,8,340 +25127253,Amazing Studio in Times Square,38844508,Taylor,Manhattan,Hell's Kitchen,40.75888,-73.99102,Entire home/apt,239,2,17,2019-07-04,1.25,1,7 +25127539,Spacious Private Room near Prospect Park and Train,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65889,-73.95627,Private room,45,31,3,2019-06-09,0.27,2,242 +25127644,One- Bedroom Apartment in the heart of LES.,44887757,Ina,Manhattan,Lower East Side,40.71865,-73.98982,Entire home/apt,159,4,12,2019-06-24,0.89,1,31 +25129958,Summer Rental in Historic Harlem Brownstone,1203954,Emily,Manhattan,Harlem,40.80371,-73.94991,Entire home/apt,130,30,3,2019-03-09,0.22,1,200 +25130960,Williamsburg Brooklyn 2BR Apt. / 5min to L Train,141597248,Osvaldo,Brooklyn,Williamsburg,40.70847,-73.94426,Entire home/apt,107,7,1,2018-06-19,0.08,1,0 +25132414,Bedstuyvesant Apartment,81087558,Eric,Brooklyn,Bedford-Stuyvesant,40.68423,-73.94125,Entire home/apt,75,3,3,2018-11-05,0.22,1,0 +25132598,"Cozy, Bright Morningside Apartment!",18691064,Brendan,Manhattan,Upper West Side,40.80343,-73.96796,Private room,120,4,2,2018-06-09,0.15,1,0 +25132635,"Modern, bright 1 BR Brooklyn apt - Great location!",2300343,Dafna,Brooklyn,Bedford-Stuyvesant,40.68686,-73.95426,Entire home/apt,80,2,8,2019-02-28,0.73,1,0 +25134311,Carnegie City Apartment,189962349,Camille,Manhattan,East Harlem,40.78589,-73.9487,Entire home/apt,250,2,43,2019-06-23,3.11,1,301 +25134727,"Trendy, Large Patio, Near Subway",175513439,Benjamin,Brooklyn,Bedford-Stuyvesant,40.6882,-73.95381,Entire home/apt,217,30,1,2018-07-29,0.09,1,189 +25134894,Massive 4 bed 3 bath Loft in SoHo/Little Italy,189961241,Danny,Manhattan,Little Italy,40.71839,-73.99834,Entire home/apt,699,3,37,2019-06-28,2.92,1,170 +25135206,Stunning Three-Level Loft w/ Roofdeck & Gym,945063,Mike,Brooklyn,Williamsburg,40.71766,-73.95348,Entire home/apt,475,3,0,,,1,12 +25135607,"Quiet, sunny Greenpoint apartment perfect for 4",31612339,Julia,Brooklyn,Greenpoint,40.73675,-73.95443,Entire home/apt,150,5,6,2018-08-29,0.49,1,0 +25135694,Brooklyn Loft,1494472,Shandor,Brooklyn,Navy Yard,40.69823,-73.97357,Entire home/apt,150,21,0,,,2,365 +25135765,The Reading Room: a curated luxury experience,23454048,Ian,Manhattan,Harlem,40.81185,-73.93902,Entire home/apt,225,1,7,2018-08-27,0.52,1,3 +25135772,Comfy one bedroom with backyard,189971299,Karen,Manhattan,Upper West Side,40.8004,-73.96867,Entire home/apt,225,3,23,2019-06-30,1.80,1,283 +25137152,Bright 1 Bedroom in the East Village,189982777,Cloe,Manhattan,East Village,40.72266,-73.98148,Entire home/apt,140,4,49,2019-07-03,3.58,1,51 +25137366,Charm and cozy close to NY and La Guardia Airport,19614644,Gerusa,Queens,Ditmars Steinway,40.77598,-73.92252,Private room,49,2,25,2019-05-19,1.83,1,4 +25137887,Beach front Dublex near jfk,187383058,John,Queens,Arverne,40.58809,-73.79387,Entire home/apt,450,2,32,2019-07-07,2.35,2,315 +25138149,√ LUXURY NYC LOFT √ | Spa Amenities | Smart Home,3129460,Feliz,Manhattan,East Harlem,40.79523,-73.94231,Entire home/apt,200,3,24,2019-06-29,1.94,1,337 +25138442,Cozy Private studio-apartment,189981848,Irina,Manhattan,East Harlem,40.79714,-73.93685,Entire home/apt,112,1,66,2019-06-23,4.78,1,16 +25138975,Charming Sunny 2-bedroom oasis in Rockaway Beach,81754218,Yaffa,Queens,Rockaway Beach,40.58794,-73.81579,Entire home/apt,89,30,34,2019-06-22,2.64,1,84 +25140000,2 Rooms + Bath in Spacious Apartment w/ Backyard,4281300,Alex,Brooklyn,Williamsburg,40.71572,-73.94161,Private room,209,1,21,2019-06-30,3.07,3,15 +25140344,Rare artist loft with private terrace,5758101,Laure-Anne,Brooklyn,Williamsburg,40.70376,-73.93519,Entire home/apt,300,2,13,2019-06-30,1.01,1,365 +25140559,BEAUTIFUL PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.76798,-73.92323,Private room,49,1,41,2019-06-17,2.96,9,322 +25140787,COUSY PRIVATE ROOM,45416627,Lolita,Queens,Astoria,40.77002,-73.92332,Private room,50,1,27,2019-06-23,2.02,9,363 +25142331,MODERN & CHIC 2 Bedroom Loft**Central Park/Musuems,190028461,Jeff & Elita,Manhattan,Upper West Side,40.78209,-73.97598,Entire home/apt,294,4,34,2019-06-10,2.48,1,179 +25145947,"1,100 sq. ft. apt. Penthouse with private deck!",104386567,Rich,Manhattan,Upper East Side,40.77495,-73.94832,Entire home/apt,450,1,0,,,1,173 +25153614,The Crown Master,188391102,Alliot,Brooklyn,Crown Heights,40.67431,-73.94065,Entire home/apt,150,5,2,2018-08-29,0.15,2,364 +25153931,Large Bedroom Apartment in Prime Location,31665801,Harry,Manhattan,East Village,40.73179,-73.98794,Entire home/apt,89,4,16,2019-05-28,1.36,2,17 +25155248,Clean and spacious 2 bedroom w/ separate entrance,35108251,Belinda,Brooklyn,East New York,40.67018,-73.88867,Entire home/apt,79,3,37,2019-06-29,2.73,2,124 +25155302,Spacious Flatbush Studio,46200692,Kathryn,Brooklyn,East Flatbush,40.65467,-73.94967,Entire home/apt,50,2,8,2018-11-11,0.61,1,0 +25155346,Private Bedroom in UES New York shared apartment.,4818484,Michael,Manhattan,Upper East Side,40.76996,-73.9539,Private room,70,2,24,2019-06-19,2.32,1,5 +25156280,Lovely & Chic 2BR Astoria Row House,5637331,Amit & Sofie,Queens,Astoria,40.76182,-73.90622,Entire home/apt,118,3,1,2018-08-11,0.09,2,0 +25156498,Charming Loft apartment with great light!,54469570,Trina,Manhattan,Chelsea,40.749,-73.99466,Private room,75,2,2,2018-06-05,0.15,1,0 +25157160,"Helles, charmantes Zimmer in Brooklyn-WG",4876817,Kitti,Brooklyn,Crown Heights,40.67589,-73.95525,Private room,41,20,1,2018-06-12,0.08,1,0 +25157541,Great home for Families and Couples,137146680,Leticia,Queens,Glendale,40.69988,-73.89504,Entire home/apt,190,3,15,2019-07-01,1.76,1,36 +25157795,Spacious 1-bedroom apartment in prime Midtown East,4294646,Maggie,Manhattan,Midtown,40.75377,-73.96609,Entire home/apt,90,30,4,2019-07-01,0.35,1,0 +25158455,Brooklyn Duplex with Private Deck,4111662,Roberta,Brooklyn,Park Slope,40.67155,-73.98373,Entire home/apt,195,10,4,2019-03-19,0.34,1,15 +25160226,Fully Private Two-Bedroom Duplex House,158566993,Nnenna,Brooklyn,East Flatbush,40.64333,-73.92526,Entire home/apt,150,2,4,2019-01-07,0.31,1,106 +25161052,~ Brooklyn Haven of Magic ~,3593395,Aviva,Brooklyn,Bedford-Stuyvesant,40.68813,-73.94045,Private room,47,2,4,2019-01-01,0.31,1,0 +25161242,*Newly Renovated* Guest Suite w/ Private Entrance,150773114,Liz,Queens,Middle Village,40.71893,-73.8761,Entire home/apt,86,1,110,2019-07-03,8.27,1,174 +25161732,"Private Master’s bedroom in Gramercy, Manhattan",134513664,Charissa,Manhattan,Gramercy,40.73568,-73.97998,Private room,160,2,11,2019-06-29,0.87,1,9 +25163519,Fabulous brand new 1BR across park in Manhattan,40875021,Scott,Manhattan,East Harlem,40.79372,-73.93552,Entire home/apt,150,1,18,2019-06-22,1.32,3,355 +25165611,New Yorker Room - 10 mins to Williamsburg/LES/City,1678704,Roberto,Brooklyn,Bedford-Stuyvesant,40.69317,-73.93003,Private room,45,1,42,2019-07-01,3.19,3,106 +25166331,Heart of the city,47580042,Leonardo,Manhattan,Theater District,40.75971,-73.98639,Entire home/apt,337,4,0,,,1,83 +25167654,Charming sunny Bushwick bedroom,3667601,Olivier,Brooklyn,Bushwick,40.68942,-73.90918,Private room,78,2,51,2019-06-29,3.74,1,9 +25167819,The Consuello2,148130354,George,Brooklyn,Bedford-Stuyvesant,40.68456,-73.92489,Entire home/apt,169,3,11,2018-12-31,0.93,2,0 +25168638,Close to Manhattan and 5 minutes to LGA,415605,Pamela,Queens,East Elmhurst,40.76161,-73.89026,Entire home/apt,169,4,19,2019-04-11,1.40,1,128 +25168678,Cozy Room Near Lincoln Center,22029264,Yangbing,Manhattan,Upper West Side,40.77419,-73.9872,Private room,86,2,1,2018-06-15,0.08,1,0 +25169866,"Large 1BR Apt, Ground Floor w/ High Ceilings in EV",19002326,Joe,Manhattan,East Village,40.73153,-73.98515,Entire home/apt,350,2,0,,,1,0 +25172224,"Cozy loft in greenpoint, 2 stops from Manhattan !!",182363374,Jimmy,Brooklyn,Greenpoint,40.72613,-73.95676,Private room,99,1,41,2019-06-26,2.96,7,54 +25180572,Beautiful Cozy Studio Apt. UWS,119609345,,Manhattan,Upper West Side,40.77701,-73.97667,Entire home/apt,180,4,0,,,1,0 +25180598,Cozy private room in Williamsburg 2 stops to city,182363374,Jimmy,Brooklyn,Greenpoint,40.72754,-73.95674,Private room,105,1,24,2019-03-27,1.77,7,32 +25182363,First floor #7,151084261,Angie,Brooklyn,Williamsburg,40.71901,-73.94978,Private room,85,30,7,2018-07-16,0.53,6,337 +25183760,Sonder | Hanover Square | Calm 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.7052,-74.00961,Entire home/apt,222,29,0,,,96,334 +25184077,Charming Apartment in the Heart of East Village,14654770,Mariaval,Manhattan,East Village,40.72759,-73.98047,Private room,97,3,6,2018-07-15,0.44,1,0 +25184175,Sophisticated 1BR in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70493,-74.0065,Entire home/apt,219,29,0,,,96,282 +25184439,Sonder | Hanover Square | Artsy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70375,-74.00807,Entire home/apt,232,29,1,2018-11-10,0.12,96,299 +25184591,❤ NYC/Bushwick New Private Room Size Queen ❤,81359949,Skarly & Ming,Brooklyn,Bushwick,40.70001,-73.92595,Private room,40,2,31,2019-06-21,2.31,2,36 +25186915,Charming Room by the Pier,5608167,Rhianna,Brooklyn,Red Hook,40.67835,-74.01394,Private room,100,1,12,2018-11-02,0.88,1,8 +25187314,Large 1 Bedroom 2 Blocks from Central Park,65633521,Adam,Manhattan,Harlem,40.80142,-73.9575,Entire home/apt,100,2,9,2019-02-20,0.66,1,0 +25187461,Sunny Apartment @ Luxury Bldg in FiDi!,96712147,Eva,Manhattan,Financial District,40.70465,-74.00762,Entire home/apt,400,2,7,2019-03-10,0.57,2,0 +25187576,"100% Private & A/C! +Bathroom + 1 Bedroom JFK & LGA",23479368,Karan,Queens,South Ozone Park,40.67425,-73.82018,Private room,69,1,78,2019-07-01,5.92,1,79 +25187986,COZY ONE BEDROOM APARTMENT IN MANHATTAN,186810935,Liza,Manhattan,Upper East Side,40.77646,-73.96026,Entire home/apt,180,1,81,2019-07-07,6.12,1,228 +25188064,Beautiful Cozy Apt near Subway - Historic Brooklyn,11501956,Karine,Brooklyn,Bedford-Stuyvesant,40.68273,-73.91651,Entire home/apt,150,3,28,2019-06-29,2.04,1,316 +25188424,Charming Brooklyn apartment with Garden Access,3261533,Lina,Brooklyn,Bedford-Stuyvesant,40.67997,-73.95052,Entire home/apt,88,30,4,2019-02-23,0.38,1,126 +25189853,Sonder | 116 John | Simple 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70803,-74.00502,Entire home/apt,169,29,2,2019-02-10,0.27,96,337 +25189933,Charming Private Room 5 min to the Ocean,12931469,Margarita,Staten Island,Great Kills,40.54896,-74.14246,Private room,40,2,9,2019-07-01,0.73,3,89 +25190223,Great 2 bedroom apartment in midtown for 5ppl,187312369,Ramon,Manhattan,Hell's Kitchen,40.76596,-73.98926,Entire home/apt,390,3,72,2019-07-02,5.31,1,79 +25190757,Private Quite 2BDRM Oasis Best Neighborhood in NYC,30242632,Lindsay,Manhattan,Chelsea,40.74123,-74.00548,Entire home/apt,600,2,44,2019-06-23,3.37,1,134 +25191316,Gorgeous Private room near NYC,12931469,Margarita,Staten Island,Great Kills,40.54889,-74.14199,Private room,50,2,4,2018-11-05,0.30,3,84 +25192722,"Clean, Conscious, Plant-Based Home in Bed-Stuy",6735192,Henry,Brooklyn,Bedford-Stuyvesant,40.68195,-73.94827,Private room,55,3,23,2019-04-17,1.69,1,0 +25192771,Large bedroom in 2BDR apt. in the East Village,152431497,Marie,Manhattan,East Village,40.72787,-73.98844,Private room,90,3,0,,,1,79 +25193004,Spacious room with a hammock near Prospect park,6387541,Julia,Brooklyn,Flatbush,40.6509,-73.96266,Private room,95,1,9,2019-06-03,0.73,1,0 +25193752,Cozy private living in Queens,14323652,Brandon,Queens,Elmhurst,40.73873,-73.88147,Entire home/apt,85,2,36,2019-03-31,2.65,1,130 +25194498,BEST LOCATION - COMFY ROOM for long term,20212516,My,Manhattan,Greenwich Village,40.73552,-73.99719,Private room,65,14,8,2019-06-16,0.58,2,35 +25197784,Mini art and science museum in 2BR brownstone,48275590,Joseph,Brooklyn,Bedford-Stuyvesant,40.68327,-73.92411,Entire home/apt,100,3,4,2019-06-26,0.29,1,358 +25202604,Luxurious Apt2 with Manhattan views on roof deck,153565366,Hugo,Brooklyn,Park Slope,40.67638,-73.98278,Entire home/apt,295,4,16,2019-07-04,1.42,3,68 +25204010,NyStreet!,69006953,Diana,Manhattan,Hell's Kitchen,40.76306,-73.99015,Entire home/apt,280,1,0,,,1,0 +25204567,Sunny room + Private rooftop,25319044,Julien,Brooklyn,Bedford-Stuyvesant,40.67956,-73.93806,Private room,45,4,0,,,1,0 +25204636,GORGEOUS & HUGE room for long term,20212516,My,Manhattan,West Village,40.73675,-73.998,Private room,89,1,13,2019-06-30,1.20,2,7 +25205044,Sweet Comfort,180154611,Marlyn,Brooklyn,Canarsie,40.63652,-73.89856,Private room,49,2,8,2018-10-26,0.62,3,342 +25205158,Private Room in St George near Manhattan,150572903,Dimitri,Staten Island,St. George,40.6408,-74.08097,Private room,75,3,4,2019-05-06,0.30,2,128 +25205932,Weekend Astoria Charmer,52532097,Maegan,Queens,Long Island City,40.75533,-73.91936,Shared room,45,1,5,2018-06-24,0.37,1,0 +25206375,Greenpoint Apartment,190452606,Kelly,Brooklyn,Greenpoint,40.73499,-73.95513,Private room,90,10,0,,,1,0 +25206790,Heart of bay ridge Brooklyn,41762539,Maria,Brooklyn,Fort Hamilton,40.62139,-74.0319,Entire home/apt,125,1,1,2018-07-26,0.09,1,0 +25207662,AFFORDABLE LUXURY...Exclusive Living @ Its Best!,123519201,Festus Atu,Manhattan,Inwood,40.86866,-73.92472,Private room,149,1,30,2019-06-23,2.20,2,270 +25208234,Empty private place to crash for the night,188830760,Stanley,Queens,Ridgewood,40.70367,-73.91063,Private room,110,1,3,2018-09-30,0.28,1,365 +25208477,1 bedroom apt in the heart of the east village,62183764,Lauren,Manhattan,East Village,40.7286,-73.98334,Entire home/apt,115,1,0,,,1,0 +25209061,Spacious and Clean bedroom in modern apt,51091522,Carissa,Manhattan,East Harlem,40.78769,-73.94691,Private room,76,1,0,,,1,0 +25209144,Modern apartment in Hamilton Heights,79168536,James,Manhattan,Harlem,40.825,-73.95181,Private room,90,3,2,2018-08-06,0.16,1,0 +25209293,Perfect Nolita apartment,22587087,Peter,Manhattan,Nolita,40.72277,-73.99524,Entire home/apt,182,2,11,2019-07-01,0.90,1,30 +25209619,A NYC apartment,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.6811,-73.94541,Entire home/apt,65,30,2,2018-11-02,0.21,6,269 +25210171,Large one bedroom in upper manhattan,20882846,Jocelyn,Manhattan,Inwood,40.86734,-73.92102,Entire home/apt,95,1,31,2019-01-13,2.28,1,0 +25211991,Brooklyn Take Me In,4052765,Alex,Brooklyn,Bushwick,40.69394,-73.92972,Private room,46,3,1,2018-06-08,0.08,1,0 +25212748,Modern private bed & bath next to Barclays Center,1798193,Justine,Brooklyn,Prospect Heights,40.68081,-73.9729,Private room,120,1,41,2019-06-02,3.10,1,0 +25213872,Cheap & Comfy Huge Private Room!,5789204,Honglip,Brooklyn,Bensonhurst,40.61006,-73.99902,Private room,37,4,52,2019-06-30,3.94,1,70 +25215426,Magic Brooklyn townhouse room fit for a wizard,189075482,Chloe,Brooklyn,Cypress Hills,40.68074,-73.89157,Private room,85,1,1,2019-05-20,0.60,3,0 +25215547,"Beautiful & Comfy Room, Same Street As The Subway!",153500245,Isabela,Brooklyn,Bedford-Stuyvesant,40.6791,-73.9096,Private room,85,1,81,2019-06-23,6.06,2,233 +25215973,"1 Bedroom in Ridgewood, Brooklyn",21550529,Ella,Queens,Ridgewood,40.6993,-73.90825,Private room,75,5,0,,,1,0 +25221034,Beautiful room!!! Wonderful view!!!,190116017,Kate,Manhattan,Kips Bay,40.73631,-73.97512,Private room,110,5,2,2018-06-16,0.15,1,6 +25221993,Quiet & cozy 1 BR/balcony - Graham L in WBURG,3952200,Gala,Brooklyn,Williamsburg,40.71886,-73.94054,Entire home/apt,140,2,19,2019-06-13,1.52,2,216 +25222993,[ENTIRE APT] Large Designer 1 bd apt in Manhattan,9414337,Garvey,Manhattan,Harlem,40.81759,-73.94385,Entire home/apt,150,5,1,2018-07-05,0.08,1,0 +25224320,Brooklyn Cultural Chateau: Sunny Private Room,4224480,Nate,Brooklyn,Bedford-Stuyvesant,40.69104,-73.9258,Private room,85,2,34,2019-05-21,2.46,1,336 +25225344,Studio Apartment in the Heart of Manhattan!,190589224,Damian,Manhattan,Hell's Kitchen,40.76272,-73.98898,Entire home/apt,130,1,12,2019-03-17,0.87,1,0 +25226728,"Bright, Modern Greenpoint Apartment",78705600,Blake Layton,Brooklyn,Greenpoint,40.73507,-73.95229,Entire home/apt,300,7,0,,,1,31 +25226807,"Beautiful, spacious loft in Clinton Hill",8250822,Sabrina,Brooklyn,Bedford-Stuyvesant,40.69284,-73.96065,Entire home/apt,130,3,4,2018-12-25,0.31,1,7 +25227326,Adorable Top Floor Williamsburg Apt (1 Bedroom),75452286,Sarah,Brooklyn,Williamsburg,40.71754,-73.95906,Entire home/apt,125,2,15,2019-03-24,1.14,1,0 +25227782,Throgsneck Pvt. Room two full beds close manhattan,132669029,Edwin,Bronx,Throgs Neck,40.82617,-73.82073,Private room,74,3,23,2019-07-05,1.77,4,58 +25229392,Luxury Couple’s Retreat by The Park with Doorman,10256614,Cyn,Manhattan,East Harlem,40.79938,-73.94698,Private room,99,2,52,2019-06-23,3.96,1,42 +25229464,Anita's Grey Master BedRoom,185524223,Anita,Brooklyn,Kensington,40.6417,-73.97365,Private room,62,1,107,2019-07-08,8.25,2,263 +25230902,East Village Studio Apartment,3720000,Stephanie,Manhattan,East Village,40.72765,-73.98669,Entire home/apt,200,2,20,2019-06-16,1.47,1,53 +25231000,Spacious Studio in the Heart of West Village,29124230,Robert,Manhattan,West Village,40.73133,-74.00461,Entire home/apt,180,7,5,2018-08-31,0.39,1,34 +25231230,"Clean, quiet, close to Columbia and transit.",190629348,Xinhua,Manhattan,Upper West Side,40.80149,-73.96375,Private room,46,3,7,2018-08-30,0.51,1,0 +25231699,Lovely room in Bushwick 2 bd with a huge backyard,9430106,Cortney,Brooklyn,Bushwick,40.70238,-73.92886,Private room,70,7,1,2018-06-30,0.08,1,0 +25232008,Central Park South Better than a 5-Star Hotel,47100454,Val,Manhattan,Midtown,40.76457,-73.97518,Entire home/apt,166,30,0,,,1,0 +25232254,Manhattan UWS Washington Heights Harlem - Inwood,2631556,Anastasia,Manhattan,Inwood,40.8659,-73.92869,Entire home/apt,359,2,0,,,1,365 +25232501,Modern luxury apartment 15 mins to central park!,7228086,John,Queens,Long Island City,40.75178,-73.93973,Entire home/apt,200,2,4,2018-10-25,0.33,1,0 +25232614,West Village Private Room With A View!,187574104,Victoria,Manhattan,West Village,40.72941,-74.00317,Private room,100,1,4,2019-02-18,0.30,1,0 +25234017,2 Bedroom 2 Bathroom Brooklyn Apartment,190658392,Hendrick,Brooklyn,East New York,40.67163,-73.88898,Entire home/apt,100,1,51,2019-06-01,3.81,1,107 +25234477,The Guesthouse Loft,39575865,Alexandra,Manhattan,Upper East Side,40.77288,-73.94745,Entire home/apt,175,7,0,,,1,5 +25234555,Adorable Room in Spacious Brooklyn Home,116291711,Maggie,Brooklyn,Crown Heights,40.66918,-73.9475,Private room,40,1,3,2018-06-17,0.22,1,0 +25234732,"Gorgeous, charming upper east side one bedroom",1497427,Andrea,Manhattan,Upper East Side,40.77416,-73.9501,Entire home/apt,120,3,12,2019-06-15,1.03,2,105 +25235760,Location Astoria Park ( only female ),3250450,Petya,Queens,Astoria,40.77182,-73.92867,Private room,38,30,1,2018-06-30,0.08,18,310 +25236588,Brand New Apt Room with Modern Living Room,62533391,Yvonne,Brooklyn,Borough Park,40.63584,-74.00578,Private room,55,1,5,2019-05-19,0.41,7,326 +25236786,Ensuite Private bath with Comfortable bed,62533391,Yvonne,Brooklyn,Borough Park,40.63404,-74.0072,Private room,60,1,20,2019-06-04,1.52,7,177 +25236926,Cozy| PRIVATE STUDIO | TIMES SQAURE,102287310,Vera,Manhattan,Hell's Kitchen,40.76269,-73.98954,Entire home/apt,199,3,8,2019-05-28,0.74,3,347 +25237818,East Harlem Room Available (Females Only),141347878,Faith,Manhattan,East Harlem,40.79747,-73.94836,Private room,50,1,31,2019-06-30,2.26,1,0 +25240993,Inigo-Sunset Park,10875083,Inigo,Brooklyn,Borough Park,40.64254,-73.99759,Private room,32,29,2,2018-09-30,0.17,1,1 +25245882,Recently Remodeled: Stunning & Spacious 1 Bedroom,3312372,Laura J.,Queens,Jackson Heights,40.75096,-73.88423,Entire home/apt,175,3,7,2019-06-09,0.68,1,28 +25248774,Charming East Village Bedroom,7425016,Di,Manhattan,East Village,40.72967,-73.98668,Private room,74,2,2,2018-07-22,0.15,1,0 +25249692,wonderful presidential suite in midtown manhattan,119328219,Eric,Manhattan,Midtown,40.75439,-73.97339,Entire home/apt,175,30,6,2019-05-02,0.91,1,22 +25251220,"Very Quiet 'nd Safe, overlooking backyard gardens",133123832,Parmenides,Manhattan,Upper West Side,40.78818,-73.97057,Entire home/apt,113,30,0,,,3,315 +25252356,"Beautiful well lit studio located in Brooklyn, NY",190784850,Madz,Brooklyn,Downtown Brooklyn,40.69264,-73.98542,Entire home/apt,150,1,11,2019-06-23,0.80,1,8 +25252879,Spacious 2 bedroom Williamsburg Apartment,4675864,Teon,Brooklyn,Williamsburg,40.71024,-73.94933,Entire home/apt,200,3,9,2019-06-22,0.69,1,2 +25253576,Sunny & spacious Brooklyn Brownstone Bedroom,190792355,Saron,Brooklyn,Bedford-Stuyvesant,40.69464,-73.94963,Private room,95,2,4,2018-06-29,0.29,1,0 +25255024,"Lovely, Spacious & Private Garden Apt in Bronx, NY",159495469,Keren J,Bronx,Pelham Gardens,40.86681,-73.84073,Entire home/apt,86,2,41,2019-06-16,3.18,1,111 +25255214,"Brooklyn Duplex Townhouse, Deck & Garden",849248,"Brian,Gigi & Clementine",Brooklyn,Sunset Park,40.65986,-73.99684,Entire home/apt,260,4,2,2019-01-01,0.18,1,3 +25255942,Room in brand new shared apt 20 mins to Manhattan,179657707,Andres,Brooklyn,Bushwick,40.70119,-73.91368,Private room,65,2,3,2019-05-27,1.36,2,49 +25257443,Cozy Parkside Studio in the ❤️ of the East Village,190823422,Kimberley,Manhattan,East Village,40.72469,-73.97892,Entire home/apt,165,1,67,2019-07-01,5.51,1,38 +25257912,Bushwick Apartment // L Train,190828985,Francis,Brooklyn,Williamsburg,40.70361,-73.942,Entire home/apt,150,2,5,2018-11-22,0.40,2,0 +25259845,Minimalist Modern West Village Studio,190841783,Cara,Manhattan,Chelsea,40.74098,-73.99744,Entire home/apt,140,29,2,2018-07-22,0.15,1,334 +25262112,Heart of East Village Apartment,61786922,Emily,Manhattan,East Village,40.73029,-73.98836,Entire home/apt,62,4,4,2018-07-08,0.29,1,5 +25262580,Little Italy Basic space.,181074926,Billy,Manhattan,Little Italy,40.71705,-73.99818,Shared room,100,1,20,2019-06-16,1.53,3,354 +25262795,Brooklyn apartment,102888703,Hany,Brooklyn,Gravesend,40.6009,-73.98216,Entire home/apt,100,7,0,,,1,42 +25263327,Jamaica Apartment Mins from Train & Dining,103104686,Evolve,Queens,Jamaica,40.67555,-73.77812,Entire home/apt,125,2,0,,,2,71 +25263729,Check in is at 10 pm!!!!!!Quiet Cave Crash Spot,186620707,Tyni,Manhattan,Harlem,40.79935,-73.95208,Shared room,44,1,25,2019-06-30,1.83,2,6 +25263845,Private Room with a Majestic View,22825646,Dmitriy,Manhattan,Washington Heights,40.84959,-73.93911,Private room,75,2,4,2018-09-23,0.34,1,0 +25264538,Modern one bedroom in Financial District,6254791,Maite,Manhattan,Financial District,40.70884,-74.00822,Entire home/apt,299,2,2,2018-09-23,0.20,1,0 +25264664,"Stunning, Sunny Tribeca Loft",27953442,Holly,Manhattan,Chinatown,40.71845,-74.00214,Entire home/apt,799,15,0,,,1,214 +25264902,Sunnyside Gardens Retreat,5024128,Ricky,Queens,Sunnyside,40.74689,-73.91652,Private room,70,2,31,2019-06-18,2.40,1,319 +25264929,AFFORDABLE LUXURY...Exclusive Living @ Its Best!,190878053,Festus Atu,Manhattan,Inwood,40.8681,-73.92434,Private room,149,1,31,2019-05-22,2.31,1,270 +25265496,Beautiful large 2 br appartement in Brooklyn!,22935245,Anne,Brooklyn,Bedford-Stuyvesant,40.69168,-73.95397,Entire home/apt,145,21,1,2018-07-14,0.08,1,25 +25265984,comfy and cozy room near subway station,186155189,Kyunam,Manhattan,Washington Heights,40.84369,-73.94064,Private room,50,1,11,2019-06-01,1.00,3,90 +25266135,Large room near Columbia Uni medical center (7),186155189,Kyunam,Manhattan,Washington Heights,40.84376,-73.94208,Private room,50,1,7,2019-06-20,0.62,3,83 +25266169,"Quiet, cozy, mid-century mod apartment in Bushwick",12458767,Jehnna,Brooklyn,Bushwick,40.69044,-73.92253,Private room,80,2,12,2019-03-07,0.93,1,67 +25266226,"Minimalist Private Room in Queens, New York",104653500,Sonam,Queens,Woodside,40.7547,-73.90852,Private room,100,2,0,,,1,0 +25266474,Peaceful and cozy room in Williamsburg apartment!,15288827,Alley,Brooklyn,Williamsburg,40.70959,-73.95477,Private room,60,20,4,2019-03-25,0.32,1,66 +25267333,Brooklyn Gem,190902382,Curtis,Brooklyn,Canarsie,40.63491,-73.91163,Entire home/apt,92,2,17,2019-06-09,1.23,1,179 +25274161,Beautiful Single Room,37842947,Heena,Queens,Woodside,40.75607,-73.90146,Private room,80,1,3,2018-10-26,0.31,1,89 +25277640,The Greenwood - One Bedroom Garden Apartment,190962476,Teresa,Brooklyn,Sunset Park,40.66332,-73.99727,Entire home/apt,155,3,26,2019-07-06,2.18,1,67 +25278248,Bushwick duplex w/private backyard; close to city!,13060798,Daniel,Brooklyn,Bushwick,40.68845,-73.91956,Private room,65,2,13,2019-07-07,1.03,1,8 +25278711,Stay in this cozy room in the center of NYC 21B1,190921808,John,Manhattan,Hell's Kitchen,40.75541,-73.99502,Private room,156,7,5,2019-06-06,0.40,47,318 +25278771,Homey Gowanus retreat for artists and dog lovers,184898953,Lindsey,Brooklyn,Gowanus,40.67602,-73.98535,Private room,100,3,8,2019-07-06,0.59,1,0 +25280641,Charming 1BR Apartment in the heart of The Village,10240682,Tiffany,Manhattan,Greenwich Village,40.72938,-74.00027,Entire home/apt,197,3,6,2019-06-16,0.48,1,0 +25280953,Large Room in Historical Neighborhood,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68705,-73.92868,Private room,80,2,28,2019-04-25,2.09,6,160 +25281618,Private Grand Street Home- 2 BR duplex with deck,117341696,Meredith,Brooklyn,Williamsburg,40.71477,-73.96145,Entire home/apt,250,2,24,2019-06-02,1.83,1,0 +25283412,Charming Bright Room in Bed Stuy Brownstone,10770787,Adelina,Brooklyn,Bedford-Stuyvesant,40.6846,-73.93455,Private room,45,30,4,2019-07-02,0.35,1,35 +25285159,Sunny Bedroom in Brooklyn,3734323,Colin,Brooklyn,Bushwick,40.68641,-73.912,Private room,50,2,5,2018-08-26,0.37,3,0 +25285275,Central SPACIOUS Triplex - LOCATION LOCATION LOC..,191007759,Robert,Manhattan,Gramercy,40.73773,-73.98322,Entire home/apt,250,6,11,2019-06-29,0.85,1,223 +25285637,Midtown east for 5 people,191011879,Conor,Manhattan,Midtown,40.75298,-73.96919,Entire home/apt,199,2,50,2019-06-21,3.74,2,92 +25286006,Bright & airy loft,28589041,Frankie,Brooklyn,Bushwick,40.69442,-73.93013,Entire home/apt,150,2,5,2019-01-03,0.38,2,0 +25287087,Room in Beautiful Light- & Plant-Filled Apartment,5043049,Hilary,Brooklyn,Bedford-Stuyvesant,40.69217,-73.95823,Private room,80,1,1,2018-06-17,0.08,1,0 +25287115,COMFORTABLE PRIVATE CLEAN ROOM FULLY FURNISHED,175368807,Lamesha,Bronx,Williamsbridge,40.87579,-73.86532,Private room,33,3,1,2018-07-28,0.09,1,365 +25288200,The Luna’s apartment,70007560,Juan,Manhattan,East Harlem,40.7919,-73.94562,Private room,85,4,25,2019-06-30,1.91,2,90 +25288759,Aventurine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69416,-73.95522,Private room,65,2,13,2019-05-20,0.96,34,308 +25288989,COZY ROOM IN EAST VILLAGE TO CRASH!,48049796,Chester,Manhattan,East Village,40.72823,-73.98425,Private room,100,1,24,2019-06-30,1.79,2,91 +25289487,sunny nice studio,10659899,Marija,Brooklyn,Crown Heights,40.67128,-73.93664,Entire home/apt,60,7,2,2018-08-29,0.18,1,0 +25289848,Nice 2 bedrooms apartment in Bed-Stuy,785940,Adriana,Brooklyn,Bedford-Stuyvesant,40.68408,-73.95659,Entire home/apt,150,1,4,2019-02-17,0.30,1,0 +25290477,Beautiful bedroom on Riverside!,5887537,Margarita,Manhattan,Harlem,40.82297,-73.95481,Private room,80,5,1,2019-01-02,0.16,1,18 +25290572,Wyndham Midtown 45 (2 Bedroom Presidential) 4A,100238132,Michael,Manhattan,Midtown,40.75196,-73.97148,Entire home/apt,339,3,18,2019-04-06,1.37,12,0 +25290749,Studio-Central Location 5 Min walk to Times Square,17988586,Jeffree,Manhattan,Hell's Kitchen,40.76235,-73.98759,Entire home/apt,175,4,7,2019-03-24,0.52,1,0 +25290969,Wyndham Midtown 45 (2 Bedroom Presidential) 3A,100238132,Michael,Manhattan,Midtown,40.75305,-73.97129,Entire home/apt,339,3,14,2018-11-19,1.13,12,0 +25291991,Cozy Private Room,34954769,Elizabeth,Manhattan,Harlem,40.81626,-73.95862,Private room,100,2,1,2018-12-02,0.14,1,86 +25292558,Sunny and Zen room in Chelsea,15668272,Pedro,Manhattan,Chelsea,40.74194,-73.99914,Private room,100,2,1,2018-06-25,0.08,1,0 +25292877,Spacious Williamsburg Bohemian Paradise,33437301,Zane,Brooklyn,Williamsburg,40.71157,-73.95714,Entire home/apt,200,3,14,2019-05-25,1.14,1,119 +25293702,Cozy (☆) Room In Upper Manhattan (♥),110191144,Mamadou,Manhattan,Harlem,40.82201,-73.95444,Private room,75,2,19,2019-06-12,1.40,2,84 +25293994,Upper East Side one bedroom in elevator building,44539148,Kaitlyn,Manhattan,Upper East Side,40.76931,-73.95336,Entire home/apt,140,3,6,2018-09-18,0.51,1,0 +25294143,Amazingly well-lit luxury LOFT,78942575,Bora,Brooklyn,Brooklyn Heights,40.70206,-73.99343,Entire home/apt,245,3,1,2018-12-30,0.16,2,58 +25296394,NYC Hideaway Urban Suite,191085997,Christopher,Bronx,Pelham Bay,40.85519,-73.82932,Entire home/apt,195,2,2,2018-10-09,0.19,3,313 +25297710,✈ NYC/Travelers. New Private Access Room Bed Full,81359949,Skarly & Ming,Brooklyn,Bushwick,40.6978,-73.92607,Private room,45,2,25,2019-06-02,1.97,2,54 +25298259,MothErOfTheC00L-privateEntranceBathroom/ModernCaVe,58629935,Saida,Brooklyn,Bushwick,40.69782,-73.92025,Entire home/apt,93,2,14,2019-07-07,1.03,2,330 +25299137,Cozy Private Bedroom by Central Park in UWS,43809903,Eddie,Manhattan,Upper West Side,40.80321,-73.96463,Private room,35,1,64,2019-06-16,4.76,4,22 +25308563,Single Room/ 15 min away from LGA Airport #5,51531044,Angela,Queens,Jackson Heights,40.7514,-73.87602,Private room,40,2,32,2019-05-11,2.42,4,336 +25308697,UPPER WEST SIDE: Renovated 2 FLOOR - 2 BED & BATH,15807180,Michael,Manhattan,Upper West Side,40.7846,-73.97315,Entire home/apt,99,2,0,,,3,93 +25309799,Jades place,4520673,Jade,Brooklyn,Williamsburg,40.71458,-73.96169,Private room,65,5,67,2019-07-01,5.01,2,124 +25310242,Sevastis place. Superhost!,28638583,Sevasti,Queens,Astoria,40.77444,-73.92923,Entire home/apt,156,1,70,2019-07-02,5.16,1,67 +25310404,Opal Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69314,-73.9571,Private room,60,2,24,2019-06-12,1.76,34,340 +25310497,Jade Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69275,-73.95574,Private room,60,2,30,2019-06-10,2.22,34,310 +25311295,"★Modern,Cozy 3BDR/2BA Getaway in Upper East!",17896706,Mark,Manhattan,Upper East Side,40.77988,-73.95482,Entire home/apt,399,4,58,2019-06-18,4.26,1,158 +25311740,Huge 2 bedroom in Astoria,19503783,Ves,Queens,Ditmars Steinway,40.77975,-73.92087,Entire home/apt,100,14,0,,,1,189 +25312773,Sunny 1 Bed Apartment - South Williamsburg,14993592,Katie,Brooklyn,Williamsburg,40.70691,-73.95104,Entire home/apt,95,4,3,2019-03-17,0.24,1,0 +25313204,Charming Apartment in Brooklyn,8792814,Caroline,Brooklyn,Bedford-Stuyvesant,40.6945,-73.94633,Entire home/apt,108,1,35,2019-03-13,2.77,10,158 +25313748,Luxury One Bdrm Condo @TimeSquare,10106740,David,Manhattan,Hell's Kitchen,40.75788,-73.99198,Entire home/apt,269,4,6,2019-06-07,0.66,1,277 +25314051,Large Boerum Hill 2 Bedroom,20520488,Laura,Brooklyn,Gowanus,40.68075,-73.98181,Entire home/apt,240,3,4,2018-10-21,0.31,1,0 +25314610,Artsy Manhattan Pied À Terre,57059,Lewis,Manhattan,Harlem,40.80693,-73.94831,Entire home/apt,200,28,35,2019-06-20,2.72,1,50 +25315154,Modern & private studio Bronx-Pelham Gardens,188225740,Rnl,Bronx,Pelham Gardens,40.86273,-73.83715,Entire home/apt,80,2,70,2019-07-07,5.34,1,142 +25315860,A beautiful Room In A Safe Sheepshead Bay Area.,179661186,Mirjam,Brooklyn,Sheepshead Bay,40.60057,-73.95154,Private room,61,2,3,2019-06-23,1.84,2,1 +25316571,Great in Greenpoint,29700603,Shari,Brooklyn,Greenpoint,40.72673,-73.94968,Entire home/apt,200,7,1,2018-12-31,0.16,1,16 +25317547,Couples Haven/ 5min to train/20 min Times Square,79913651,Darryl,Manhattan,Harlem,40.82294,-73.9386,Private room,50,2,20,2019-06-30,1.74,4,157 +25317671,Studio apartment with a modern home-y feel!,15429605,Stephanie,Queens,Briarwood,40.70988,-73.81716,Entire home/apt,100,2,10,2019-07-07,0.88,1,160 +25317793,Awesome Cozy Room in The Heart of Sunnyside!,136406167,Kara,Queens,Sunnyside,40.7409,-73.92696,Private room,65,2,22,2019-06-11,1.63,1,131 +25318171,Home Away,95564806,Olvin,Brooklyn,Brownsville,40.66006,-73.91234,Private room,60,1,1,2018-06-15,0.08,3,0 +25319136,"NEW elegant 2brm 2bath +Loft .",4399103,James,Manhattan,Greenwich Village,40.72768,-73.99917,Entire home/apt,410,31,40,2019-07-01,3.20,2,10 +25319356,Washington Heights Getaway Bedroom,191229616,Cesar,Manhattan,Washington Heights,40.83271,-73.94145,Private room,55,15,10,2019-06-22,0.80,2,35 +25323294,Entire apartment with amazing views!,40078170,Sandy,Manhattan,Financial District,40.71033,-74.00743,Entire home/apt,245,2,8,2018-12-09,0.68,1,163 +25323446,Luxurious 2 bedroom home close to Airport and City,70774951,Farhan,Queens,East Elmhurst,40.76799,-73.8795,Entire home/apt,132,1,114,2019-06-24,8.38,3,316 +25323809,New Private Cozy Condo with private bedroom & bath,61699814,Shanthi,Bronx,Kingsbridge,40.87901,-73.90155,Private room,45,30,1,2018-08-08,0.09,2,193 +25324132,Chic Downtown Getaway - Beautiful 1BR Flat,4731948,Kiki,Manhattan,Chinatown,40.71721,-73.99312,Entire home/apt,155,1,16,2019-04-08,1.22,4,301 +25324289,Gotham City Rental 3,191263373,Gotham,Manhattan,Hell's Kitchen,40.75925,-73.99375,Entire home/apt,225,1,63,2019-06-08,4.83,1,357 +25324506,Bright Brooklyn Home with a View,4625857,Ilana,Brooklyn,Crown Heights,40.67157,-73.95807,Entire home/apt,150,10,1,2019-01-02,0.16,1,0 +25325029,Bushwick Room with a View,24327574,Shadi,Brooklyn,Bushwick,40.69928,-73.92386,Private room,150,2,20,2018-10-22,1.52,1,0 +25326478,Classic Tribeca Loft,10369267,Steph,Manhattan,Tribeca,40.71418,-74.00676,Entire home/apt,450,3,14,2019-05-27,1.04,1,36 +25327993,Basic Little Italy 2,181074926,Billy,Manhattan,Little Italy,40.71773,-73.99812,Private room,100,1,25,2019-06-22,1.92,3,323 +25328081,Basic Little Italy 3,181074926,Billy,Manhattan,Little Italy,40.71766,-73.99827,Private room,110,1,43,2019-06-17,3.25,3,348 +25328184,Bedstuy Fly! Two Bedroom Garden Apartment.,1417893,Ingrid,Brooklyn,Bedford-Stuyvesant,40.68902,-73.92838,Entire home/apt,160,3,52,2019-06-22,3.90,1,37 +25335433,kiwi,191343281,Mark,Manhattan,Upper West Side,40.77255,-73.99057,Shared room,220,1,1,2018-05-26,0.07,1,89 +25336605,Luxury Apartment July 4th Wkend -Fireworks view,69825290,Colin,Queens,Long Island City,40.75332,-73.94159,Entire home/apt,150,1,1,2019-01-02,0.16,1,0 +25338619,Hip All Stone East Village Condo,147447438,Chris,Manhattan,East Village,40.73139,-73.98791,Entire home/apt,350,3,11,2019-06-15,0.83,1,88 +25339184,Cute 1 Bedroom close to Graham Ave. train stop,3360346,Christen,Brooklyn,Williamsburg,40.71604,-73.94217,Entire home/apt,53,3,4,2019-06-21,0.30,2,29 +25340516,Garden Duplex close to Central Park,136454672,Fabiana,Manhattan,Upper East Side,40.76516,-73.96562,Entire home/apt,1000,3,10,2019-06-08,0.79,1,84 +25340524,Spacious Gramercy Park Studio w/ separate kitchen,2053735,Kat,Manhattan,Gramercy,40.73609,-73.98595,Entire home/apt,145,2,13,2019-06-23,1.02,1,1 +25340844,"Cozy Room in a Historic, Beautiful Apartment",9523229,Dennis,Manhattan,Chelsea,40.74249,-73.99997,Private room,68,4,33,2019-06-16,2.56,1,0 +25341465,Private Bright Bedroom near 7 Train LGA & JFK,190096034,Janet,Queens,Corona,40.74464,-73.86012,Private room,60,1,63,2019-07-07,5.12,3,155 +25342124,Private Room near Central Park,7249636,Dima,Manhattan,Hell's Kitchen,40.7687,-73.98742,Private room,85,1,127,2019-07-07,9.43,1,19 +25343141,Comfort on Ocean Avenue,178147517,Antonio,Brooklyn,Flatbush,40.63149,-73.95704,Private room,60,2,7,2019-06-22,0.51,1,155 +25344034,"Master Bedroom close to LGA ,JFK, and highways",190096034,Janet,Queens,Corona,40.74322,-73.86005,Private room,65,1,29,2019-06-08,2.57,3,333 +25344841,Serene Flat on Tree-Lined Harlem Street,115738772,Alex,Manhattan,Harlem,40.816,-73.95348,Entire home/apt,130,3,10,2019-06-24,0.88,1,10 +25345332,"Large Private Room in Beautiful Bedstuy, BK",191398879,Mike,Brooklyn,Bedford-Stuyvesant,40.68518,-73.94797,Private room,61,3,2,2018-06-10,0.15,1,0 +25345389,Crystal Mediation Sanctuary Prime Williamsburg BK,42407784,Amanda,Brooklyn,Williamsburg,40.70822,-73.94825,Entire home/apt,300,2,0,,,1,0 +25346073,Small Bedroom for Rent in a Small Apartment..,191389617,Dinorah,Brooklyn,Sunset Park,40.64117,-74.01248,Private room,41,2,54,2019-03-25,4.14,1,0 +25346963,Townhouse Apartment steps away from Central Park,51601657,Joe,Manhattan,Upper East Side,40.77735,-73.96222,Entire home/apt,425,3,50,2019-06-28,3.85,1,106 +25347359,Royal suite,189792874,Voxie,Brooklyn,Canarsie,40.63202,-73.90916,Entire home/apt,135,2,16,2019-06-30,1.21,1,358 +25348299,Stunning Designer 3 bdrm apt 25 min to Manhattan,8013853,Seth,Brooklyn,Bedford-Stuyvesant,40.68412,-73.94836,Entire home/apt,85,30,16,2019-06-14,1.18,1,318 +25348369,Aug 1st Park Slope roommate wanted-3 mos.,702103,Sherry,Brooklyn,South Slope,40.66736,-73.98546,Private room,48,60,0,,,1,342 +25348802,Cozy & comfortable STUDIO in MIDTOWN NYC,23121862,Robin,Manhattan,Midtown,40.75815,-73.96489,Shared room,165,4,0,,,1,12 +25349077,Room in uptonw manhattan,191422870,Elisabet,Manhattan,Inwood,40.86842,-73.91747,Private room,50,7,0,,,1,0 +25349299,Modern Spacious Garden Apartment - Red Hook!,6836514,Ryne,Brooklyn,Red Hook,40.67908,-74.01068,Entire home/apt,117,1,48,2019-05-26,3.51,1,108 +25350452,1BR Breathtaking view w/Private Roof Top Bushwick,3388542,Damien,Brooklyn,Bushwick,40.69566,-73.90687,Entire home/apt,95,3,14,2019-03-24,1.12,1,5 +25350617,Sunny room in chilled out Fort green apt,1180925,Mark,Brooklyn,Fort Greene,40.69492,-73.97154,Private room,75,2,12,2019-06-07,0.97,3,89 +25350875,String lights home 1 min to subway,7772526,Ting Yi,Brooklyn,Bushwick,40.68669,-73.91573,Entire home/apt,140,3,14,2019-06-12,1.05,2,229 +25350971,Charming apartment in Greenpoint Historic District,41457105,Justin,Brooklyn,Greenpoint,40.73374,-73.95854,Entire home/apt,125,2,0,,,1,0 +25352456,BEAUTIFUL Queen Bedroom in Peaceful Green Space,90249125,Jackie,Manhattan,Harlem,40.8063,-73.95548,Private room,85,4,11,2019-07-01,0.86,1,0 +25354569,1 1/2 bedroom totally private exclusive Apt. #4,134901180,Aldric,Brooklyn,Bedford-Stuyvesant,40.68333,-73.95232,Entire home/apt,200,7,4,2019-05-11,0.29,2,179 +25354678,Big Blue House in the Bronx,107437866,Clint,Bronx,Edenwald,40.89124,-73.83423,Entire home/apt,149,2,59,2019-06-24,4.33,1,328 +25355219,Spacious Apt minutes from Manhattan,59377513,Shannon,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.94781,Private room,85,5,3,2018-09-02,0.27,1,32 +25355282,Bed Available in Brooklyn,26996515,Will,Brooklyn,Bedford-Stuyvesant,40.68878,-73.92857,Shared room,30,1,21,2018-09-30,1.60,2,0 +25355807,Cozy bedroom approx 5 minutes from JFK.,123506305,Kisha,Queens,Springfield Gardens,40.66601,-73.77638,Private room,92,1,0,,,3,180 +25355845,Super Charming 1 Bedroom in the Heart of Chelsea,21705284,Dani,Manhattan,Chelsea,40.74388,-73.99631,Entire home/apt,200,2,71,2019-06-18,5.23,1,230 +25356602,Cozy room 5 to 7 minutes from JFK airport.,123506305,Kisha,Queens,Jamaica,40.66732,-73.77813,Private room,60,1,6,2019-05-26,0.45,3,365 +25356696,Spacious room w/ ensuite in heart of East Village,6101536,Josh,Manhattan,East Village,40.72852,-73.99009,Private room,150,3,34,2019-06-28,2.91,1,3 +25357219,Cozy room on the river,75435800,Dean,Manhattan,Midtown,40.75523,-73.96367,Private room,109,3,7,2018-12-08,0.53,2,0 +25365916,Ground Level 1 bedroom common areas shared,161314694,Stephanie,Brooklyn,Crown Heights,40.67568,-73.91809,Private room,60,2,0,,,1,365 +25367421,East Village Skylight Loft,22443613,M.J.B.,Manhattan,East Village,40.72413,-73.98091,Entire home/apt,650,10,1,2018-08-25,0.09,1,23 +25369155,Luke’s place,11353190,Annajan,Brooklyn,Boerum Hill,40.69015,-73.99098,Entire home/apt,140,3,4,2019-05-17,0.34,1,5 +25369739,Gowanus/Park Slope Duplex Garden Apt. 1 BLK METRO,16523946,Stacey,Brooklyn,Gowanus,40.66906,-73.99047,Entire home/apt,200,2,41,2019-06-24,3.30,1,246 +25370297,Bright & stylish apartment in Greenwich Village,13251813,Nick,Manhattan,West Village,40.73521,-73.99944,Entire home/apt,120,4,6,2019-02-17,0.49,1,1 +25370919,"Spacious, Luxury Apartment in Brooklyn",30224403,Peter,Brooklyn,Boerum Hill,40.68773,-73.98778,Entire home/apt,175,5,9,2019-04-11,0.68,1,6 +25371790,Huge Artist Loft Space - Red Hook,89106916,Gabriel,Brooklyn,Red Hook,40.67737,-74.00733,Entire home/apt,170,2,8,2019-03-28,0.62,1,288 +25371837,Beautiful United Nations Studio/ Best location.,1475015,Mike,Manhattan,Midtown,40.75215,-73.97152,Entire home/apt,83,30,0,,,52,309 +25372531,Budget 2 beds private room,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68645,-73.92975,Private room,90,1,5,2019-06-23,1.61,6,256 +25374003,Spacious room brand new.Beautiful yard also avlble,191577969,Nikolas,Queens,Ditmars Steinway,40.78331,-73.91615,Private room,110,2,5,2018-10-27,0.48,1,90 +25374851,Vintage Custom Van,10407935,Meng,Manhattan,Nolita,40.72218,-73.99539,Entire home/apt,89,1,62,2019-06-30,4.64,8,3 +25377317,Cute and Quaint Studio in Astoria!,6895016,Stephanie,Queens,Astoria,40.75831,-73.92658,Entire home/apt,96,3,10,2018-09-11,0.78,1,0 +25378040,Little Italian Manor 2,139871943,Patrick,Manhattan,Little Italy,40.7197,-73.99747,Private room,70,28,26,2018-12-06,1.99,3,147 +25378614,Private room near LGA with separate entrance,141122152,Hardeep,Queens,East Elmhurst,40.76218,-73.88589,Private room,80,1,86,2019-06-20,6.35,1,147 +25379058,"Beautiful, Spacious & Comfortable Room",182976972,Annero,Brooklyn,East Flatbush,40.64946,-73.92839,Private room,65,2,24,2019-06-30,1.79,2,361 +25379780,Heart of Park Slope,187453004,Nancy,Brooklyn,Park Slope,40.67384,-73.97743,Private room,150,2,36,2019-07-01,2.71,1,293 +25380189,"Modern, Fresh Chelsea, Athenas Apartment Room",191621249,Geraldine,Manhattan,Chelsea,40.74104,-73.99712,Private room,100,1,33,2019-06-29,3.87,2,12 +25380654,"Cozy, Confortable, Modern spacious and nice Room",191621249,Geraldine,Manhattan,Chelsea,40.74284,-73.99842,Private room,99,1,95,2019-07-08,7.20,2,0 +25380780,Taste of the Old World,48499240,Walter,Manhattan,Harlem,40.81215,-73.95129,Private room,150,2,15,2019-05-21,1.25,1,57 +25383265,Cozy plant filled room nearby multiple subways,2147561,Shriver,Brooklyn,Williamsburg,40.70578,-73.94324,Private room,69,2,36,2019-06-24,2.85,1,49 +25389925,Stunning duplex. EXCELLENT location. Fort Greene!!,7076239,Annie And Joan,Brooklyn,Fort Greene,40.68677,-73.97298,Entire home/apt,375,2,13,2018-12-30,0.96,2,158 +25392508,Beautiful Sleek Apartment in New Building,23178319,Arjang,Brooklyn,Williamsburg,40.71305,-73.93955,Private room,55,5,24,2019-06-03,1.84,1,313 +25395740,Top Floor Sun-Drenched West Village Studio,17788946,Jenny,Manhattan,West Village,40.73655,-74.00226,Entire home/apt,175,2,19,2019-06-16,1.45,1,3 +25396809,Sunny Suite with Private Entrance,30978136,Eyal & Jessie,Queens,Ridgewood,40.70022,-73.91012,Private room,90,1,57,2019-06-23,4.31,1,284 +25396834,Cozy private room in Bushwick with Gym and Rooftop,17507617,Celeste,Brooklyn,Bedford-Stuyvesant,40.68866,-73.92238,Private room,60,2,21,2018-11-01,1.71,1,75 +25397054,A Room With A View,878445,Stefanie,Manhattan,Harlem,40.82999,-73.94174,Private room,100,2,2,2018-08-18,0.15,1,341 +25399303,"Large Sunny Room with King Size Bed, near subway",912921,Cora & Kai,Manhattan,Washington Heights,40.84362,-73.94253,Private room,47,3,13,2019-06-28,0.99,1,174 +25399452,Luxury Mid-Century Modern in West Village,48097665,Matthew,Manhattan,West Village,40.73735,-74.0004,Entire home/apt,160,30,8,2019-05-25,0.71,1,156 +25401843,Gorgeous Studio Hideout/w Queen Bed.,34313176,Eddie,Queens,Rego Park,40.71691,-73.86147,Entire home/apt,80,2,42,2019-06-29,3.16,4,307 +25402549,Private Bedroom & Bathroom in Midtown Manhattan,76477003,Ai,Manhattan,Hell's Kitchen,40.75933,-73.99512,Private room,125,2,24,2019-05-29,1.90,1,0 +25403075,Your special place in Manhattan FRONT room,191765199,Elena,Manhattan,Washington Heights,40.83387,-73.94163,Private room,81,1,18,2019-06-04,1.34,6,38 +25403196,Spacious Two Bedroom DUMBO Loft,13523227,Stefan,Brooklyn,DUMBO,40.70268,-73.98603,Entire home/apt,350,2,0,,,1,0 +25404381,Romantic Garden Floor For Two or Big Groups,144892527,Victor,Brooklyn,Crown Heights,40.67076,-73.94876,Entire home/apt,183,1,58,2019-06-23,4.36,1,15 +25407116,HEAVENLY PLACE,191804394,Pnb,Bronx,Longwood,40.8156,-73.90075,Entire home/apt,60,1,9,2019-06-09,0.76,2,257 +25415951,Large Manhattan Artist Flat,798380,Chris,Manhattan,Inwood,40.86029,-73.92984,Entire home/apt,120,7,1,2018-08-10,0.09,1,172 +25416257,THE 602 SHOWROOM,26490270,The 6o2,Brooklyn,Prospect-Lefferts Gardens,40.65925,-73.94862,Entire home/apt,1000,1,1,2018-10-30,0.12,1,365 +25417007,Big bright room with private entrance,21552055,Shelley,Brooklyn,Greenpoint,40.72678,-73.95087,Private room,156,1,29,2019-06-24,2.33,2,4 +25417035,"Historical BK Heights 3 br, outdoor deck + patio",9912305,Michele,Brooklyn,Brooklyn Heights,40.69248,-73.9958,Entire home/apt,300,4,4,2019-02-23,0.33,1,185 +25420252,Private Queen Bedroom in UWS near Central Park,140997060,Amy,Manhattan,Upper West Side,40.77898,-73.98532,Private room,179,3,0,,,2,0 +25420704,place on the bay,191901037,Marsha,Brooklyn,Sheepshead Bay,40.58484,-73.94022,Private room,70,10,1,2018-06-30,0.08,2,331 +25421108,"Small, cosy room for the solo traveler!!",4274857,Helena,Manhattan,Lower East Side,40.72013,-73.98842,Private room,80,3,30,2019-06-22,2.31,3,76 +25421109,"BedStuy Spacious & Modern, 2nd floor Apt w/ Roof",16285179,Carolina,Brooklyn,Bedford-Stuyvesant,40.68695,-73.91937,Entire home/apt,120,3,2,2019-01-01,0.19,2,0 +25421873,Spacious Room Seconds from Graham L - Williamsburg,191892665,Jonathan,Brooklyn,Williamsburg,40.71413,-73.94467,Private room,73,21,0,,,1,0 +25422338,New York Loft,191913119,Dylan,Manhattan,Civic Center,40.71313,-74.00541,Entire home/apt,236,2,0,,,1,0 +25424320,Sweet Suite in Greenpoint,43785574,Michon,Brooklyn,Greenpoint,40.72163,-73.9478,Private room,110,7,5,2019-01-02,0.39,1,49 +25424961,Charming Glass Room in 1b Apt in heart of SoHo,2695451,Elle,Manhattan,SoHo,40.72425,-74.00331,Private room,55,2,3,2019-06-29,0.25,2,0 +25425106,Lovely private room in spacious top floor condo,5522547,Dave,Brooklyn,Crown Heights,40.67229,-73.92729,Private room,100,1,1,2018-09-24,0.10,1,89 +25426171,Private room w/ pvt entrance near Times Sq 32C,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99651,Private room,55,7,9,2019-05-21,0.91,47,324 +25426781,Charming Artistic Flat in Brooklyn,17581024,Kemar,Brooklyn,Park Slope,40.67731,-73.98138,Private room,75,1,41,2019-06-13,3.05,2,54 +25427351,Bright 1BDR in Green Oasis - Fantastic Location!,24043300,Emily,Brooklyn,Boerum Hill,40.68444,-73.98094,Entire home/apt,160,7,1,2018-06-28,0.08,1,261 +25428063,1BR Apartment on Prettiest Block in West Village!,3623796,Richard,Manhattan,West Village,40.73788,-74.00183,Entire home/apt,170,3,2,2018-10-28,0.16,1,0 +25428161,Serene Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70587,-74.00685,Entire home/apt,167,29,0,,,96,332 +25428573,"Your Apartment in NEW YORK, all for yourself",191765199,Elena,Manhattan,Washington Heights,40.83265,-73.94012,Entire home/apt,120,1,57,2019-06-23,4.25,6,154 +25434447,LGBT Friendly 15 mins to Union Square!! PRVTE BATH,147229558,Viktoria,Brooklyn,Williamsburg,40.70883,-73.93859,Private room,230,1,21,2019-04-29,1.72,1,24 +25441693,Lovely villa,191063355,Maranatha,Brooklyn,Crown Heights,40.67193,-73.93003,Entire home/apt,125,1,59,2019-06-11,4.38,1,98 +25442072,Grand Penthouse loft in Prime Williamsburg,1802807,Lily,Brooklyn,Williamsburg,40.71438,-73.95955,Private room,100,6,6,2019-02-13,0.45,2,3 +25443451,Sweet Lower Manhattan/Tribeca loft Suite,64660747,S. N,Manhattan,Tribeca,40.71725,-74.00524,Entire home/apt,300,3,2,2018-10-02,0.17,1,108 +25444327,My Upper West Side Studio,4493803,Brandon,Manhattan,Upper West Side,40.78105,-73.98151,Entire home/apt,125,30,2,2018-11-30,0.18,1,67 +25445960,Midtown room with a living room and rooftop!,85541181,Stanley,Manhattan,Midtown,40.75115,-73.98607,Private room,300,30,0,,,1,81 +25446811,"Quiet Williamsburg Studio, Private Bath & Entrance",1844352,Christine,Brooklyn,Williamsburg,40.7117,-73.94388,Private room,100,3,25,2019-07-05,1.90,2,76 +25447407,Sonder | 21 Chelsea | Central 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74222,-73.99444,Entire home/apt,250,29,1,2018-07-31,0.09,96,220 +25447820,Your lovely room,192085113,Cristiane,Queens,Ditmars Steinway,40.77922,-73.90861,Private room,50,3,49,2019-06-30,3.68,1,11 +25448433,Large BR 1 Block From Subway 20 min to Manhattan,192085313,Rachel,Queens,Rego Park,40.73123,-73.86656,Private room,70,2,26,2019-06-12,1.96,1,180 +25448475,Luxurious Clean room 10 min away from Manhattan,192089216,Jonathan,Queens,Long Island City,40.73731,-73.9345,Private room,43,1,33,2019-06-19,2.50,1,282 +25448758,Zen Artist Duplex with Private Garden,895135,Suanny,Brooklyn,Williamsburg,40.7066,-73.94595,Private room,95,3,14,2019-04-30,1.07,3,180 +25449154,Deluxe Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70561,-74.00669,Entire home/apt,164,29,0,,,96,347 +25449234,Sunny Room in South Slope,3912358,Jody,Brooklyn,Sunset Park,40.66298,-73.99864,Private room,40,7,0,,,1,0 +25449386,"Cozy Railroad Apartment in Greenpoint, BK",38380313,Gabriela,Brooklyn,Greenpoint,40.72459,-73.9462,Entire home/apt,95,1,13,2019-04-21,1.04,1,0 +25450885,Sonder | Hanover Square | Charming 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70335,-74.0086,Entire home/apt,229,29,0,,,96,220 +25452071,Modern & Cozy Studio In Best East Village Location,3142924,Kea,Manhattan,East Village,40.72714,-73.98215,Entire home/apt,190,2,32,2019-07-06,2.74,1,17 +25452119,Great Williamsburg Spot,1581733,Alfredo,Brooklyn,Williamsburg,40.71071,-73.95957,Private room,120,2,0,,,2,86 +25452588,Posh 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74454,-73.97339,Entire home/apt,207,29,1,2018-07-12,0.08,96,365 +25453503,Warm Artistic Wburg Loft Off 4 Train Lines,5572415,Hyeseung,Brooklyn,Williamsburg,40.70795,-73.94741,Entire home/apt,100,5,1,2018-07-02,0.08,1,11 +25453535,Contemporary 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74386,-73.97327,Entire home/apt,180,29,1,2018-08-15,0.09,96,342 +25455908,Private bedroom in UWS Apartment,57516611,Mayumi,Manhattan,Upper West Side,40.80109,-73.96523,Private room,99,2,14,2019-07-02,1.06,1,8 +25455986,Your own duplex 3 bedroom w. backyard in Bed-Stuy!,21653460,Zoya,Brooklyn,Bedford-Stuyvesant,40.69399,-73.95269,Entire home/apt,125,5,2,2018-08-28,0.18,2,0 +25456296,Comfy single private room at quiet area in Queens,185914925,Mala,Queens,Hollis,40.7152,-73.76171,Private room,50,2,40,2019-06-12,2.96,2,84 +25456951,Beautiful 1 bedroom apt with private rooftop,10317649,Carita,Brooklyn,Williamsburg,40.71465,-73.96172,Entire home/apt,190,4,4,2019-05-26,0.32,1,17 +25457583,Washington Heights Tranquil Getaway Bedroom,191229616,Cesar,Manhattan,Washington Heights,40.83458,-73.94227,Private room,55,7,1,2018-12-31,0.16,2,125 +25458048,"1BRD Greenpoint BK! Nightlife, parks, shops, food",9582456,Jenny,Brooklyn,Greenpoint,40.72264,-73.94272,Entire home/apt,150,1,14,2019-03-24,1.17,1,0 +25460977,Fresh Studio in Brooklyn Townhouse,2776408,Isaac,Brooklyn,Crown Heights,40.67063,-73.9337,Entire home/apt,75,2,61,2019-07-05,5.23,1,2 +25462356,New Clean Comfortable Studio w/Terrace,154629753,Andrew,Manhattan,Hell's Kitchen,40.76746,-73.98942,Entire home/apt,500,10,41,2019-06-21,3.17,1,126 +25464685,Clean Over Night Bed By Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76464,-73.99006,Shared room,69,1,52,2019-07-01,3.86,8,205 +25464886,Shared Cozy Apartment By Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76418,-73.98822,Shared room,99,1,42,2019-06-23,3.12,8,181 +25465008,Shared Apartment by Times Square Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76488,-73.98832,Shared room,65,1,44,2019-06-30,3.27,8,199 +25465160,Shared Apartment By Times Square Hell’s Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76364,-73.98859,Shared room,65,1,63,2019-07-01,4.68,8,196 +25468554,Workspace Room 3,9864136,Anthony,Brooklyn,Bushwick,40.68674,-73.9151,Private room,36,2,5,2018-10-06,0.38,26,309 +25469769,Fort Greene Sanctuary,6436957,Dylan,Brooklyn,Clinton Hill,40.69127,-73.96873,Entire home/apt,125,4,1,2018-07-26,0.09,1,0 +25470017,Humble and Elegant Place of Comfort,40209604,Enoch,Brooklyn,Crown Heights,40.67459,-73.95742,Private room,50,2,60,2019-06-23,4.52,1,7 +25470372,"Rare, Classic, 2 Bed/2 Bath Williamsburg Loft",34669755,Tanya,Brooklyn,Williamsburg,40.71198,-73.96036,Entire home/apt,250,7,3,2018-09-04,0.24,1,5 +25471574,"Solo Traveler Heaven, Close to Midtown & Airports",40711894,Jessica,Queens,Elmhurst,40.73931,-73.88823,Private room,54,1,2,2019-01-01,0.17,4,0 +25474632,Coworking Style Sublet,37151670,Zoltan,Queens,Long Island City,40.7639,-73.93199,Private room,55,14,6,2019-06-28,0.45,1,61 +25475257,Spacious Clinton Hill apartment all to yourself,6104449,Leo,Brooklyn,Clinton Hill,40.68553,-73.95965,Entire home/apt,95,3,8,2019-04-29,0.63,1,12 +25475518,Carnegie Hill-Clean Small 1 bedroom,192276715,Francis,Manhattan,East Harlem,40.78703,-73.94741,Entire home/apt,115,4,44,2019-07-05,3.41,1,38 +25475944,Tourist spot,191804394,Pnb,Bronx,Longwood,40.81668,-73.89988,Private room,35,1,38,2019-06-23,2.82,2,75 +25476838,Private Apartment w/Sunny Balcony in Riverdale NYC,78289814,Tamara & Fran,Bronx,North Riverdale,40.90329,-73.89991,Entire home/apt,105,2,27,2019-06-30,2.13,1,328 +25476912,3rd floor: Charming 2 BR guest suite with balcony,38675275,Margaret,Queens,Belle Harbor,40.57592,-73.84823,Private room,200,2,4,2019-06-16,1.28,2,332 +25477608,Bright Private Bedroom Close to Central Park,192290899,Nicholas,Manhattan,Upper West Side,40.77403,-73.98803,Private room,123,3,55,2019-07-04,4.09,1,53 +25477650,Entire Historic Brownstone Condominium,182084079,Marnie,Brooklyn,Clinton Hill,40.68615,-73.96018,Entire home/apt,95,29,0,,,1,9 +25480207,Art Lover’s Loft on SoHo/Greenwich Village Border,27871113,Ruben,Manhattan,Greenwich Village,40.72926,-73.99968,Entire home/apt,300,3,14,2019-01-01,1.07,1,0 +25480524,Beautiful Room for 2 in Manhattan,95777134,Carlos,Manhattan,Upper West Side,40.77263,-73.98997,Private room,120,3,57,2019-06-30,4.23,1,48 +25480539,Bronx Roon,102501688,Julissa,Bronx,Highbridge,40.83464,-73.92505,Private room,70,2,2,2018-09-30,0.17,1,348 +25482581,Modern BR with Private Bathroom Near Central Park,146905275,Roberto,Manhattan,Upper West Side,40.77471,-73.98955,Private room,140,1,50,2019-07-02,3.71,1,69 +25483095,Spacious queen bedroom in the heart of Manhattan,113146341,Amanda,Manhattan,Upper West Side,40.76983,-73.98734,Private room,114,1,1,2018-06-10,0.08,1,0 +25484150,Spacious bedroom in East Willyb!,16121141,Afshan,Brooklyn,Williamsburg,40.71074,-73.9443,Private room,80,2,3,2018-06-17,0.22,1,0 +25484398,BRIGHT & AIRY APARTMENT IN GREENPOINT,8063576,Alex,Brooklyn,Greenpoint,40.72724,-73.94843,Entire home/apt,85,7,2,2018-10-02,0.17,1,0 +25484515,Your Home away from Home,192335868,Johnnet,Bronx,Edenwald,40.8901,-73.84031,Private room,125,1,11,2018-08-04,0.88,1,189 +25485201,West Village Pied-à-Terre,8050394,Robert,Manhattan,West Village,40.73308,-74.00456,Entire home/apt,157,2,4,2018-09-09,0.30,1,0 +25486302,Luxurious Apt in the heart of Manhattan,61391963,Corporate Housing,Manhattan,Kips Bay,40.74483,-73.97956,Entire home/apt,125,30,2,2019-04-10,0.44,91,346 +25486542,Adorable bedroom at UES!,64040975,May,Manhattan,Upper East Side,40.76525,-73.95557,Private room,90,3,1,2019-06-15,1,1,16 +25487162,Upper East Side Room,38021737,Elijah,Manhattan,Upper East Side,40.76897,-73.95375,Private room,54,4,0,,,1,0 +25487254,STUNNINGLY COMFORTABLE UWS HI-RISE STUDIO APT,54228655,Otoja,Manhattan,Upper West Side,40.79444,-73.96613,Entire home/apt,195,6,11,2019-07-05,1.05,1,200 +25487784,City Suite,38765891,Wendy,Brooklyn,Bedford-Stuyvesant,40.68344,-73.92373,Private room,230,3,19,2019-06-21,1.66,1,90 +25488542,Private Bedroom in Washington Heights,80926401,Jenna,Manhattan,Washington Heights,40.84501,-73.93861,Private room,40,2,6,2018-12-28,0.47,1,0 +25489254,"Bright, Cozy Little Room in Prime Brooklyn",192189607,Niki,Brooklyn,Bushwick,40.70382,-73.92683,Private room,65,2,7,2019-01-01,0.53,2,0 +25489369,Charming Old Greenwich Village Duplex,4129805,Evelyn,Manhattan,West Village,40.73281,-74.00205,Entire home/apt,325,2,1,2019-04-28,0.42,5,56 +25491443,New 4BDR LOFT in Williamsburg 2 stops to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.72609,-73.95681,Entire home/apt,460,1,30,2019-06-21,2.49,4,63 +25491908,The Quintessential Bushwick Loft: The Dream Cove,6778614,Lindsey,Brooklyn,Bushwick,40.70878,-73.92215,Shared room,30,3,8,2018-07-30,0.61,2,0 +25492031,UWS Studio - CENTRAL PARK WEST -,3962396,Nadir,Manhattan,Upper West Side,40.78585,-73.97069,Entire home/apt,132,30,1,2018-11-05,0.12,1,236 +25492095,Room for June-beginning of July!,144193172,Idil,Brooklyn,Crown Heights,40.67124,-73.93401,Private room,40,15,0,,,1,0 +25492295,"Style, Comfort & Convenience in NYC getaway",8067740,C. Jack,Manhattan,Harlem,40.80462,-73.95622,Entire home/apt,180,2,32,2019-07-01,3.69,1,90 +25492971,"UPPER WEST SIDE,GREAT VALUE STUDIO APT",166368558,Gregory,Manhattan,Upper West Side,40.78575,-73.97429,Entire home/apt,149,1,15,2019-07-02,4.74,1,265 +25493246,Cozy Studio Apt-One block away from Prospect Park!,192406990,Tricia,Brooklyn,Flatbush,40.65385,-73.96202,Entire home/apt,90,1,48,2019-07-06,4.19,1,21 +25493355,"Close to Central Park,renovated quite studio A",192407842,Aron,Manhattan,Upper West Side,40.78488,-73.9763,Entire home/apt,149,1,62,2019-07-03,4.77,1,224 +25497712,NEW Perfect private room near Two Bridges IV,39528519,Max,Manhattan,Lower East Side,40.71252,-73.98765,Private room,94,15,0,,,28,185 +25499011,NEW Wonderful private room near Two Bridges II,39528519,Max,Manhattan,Lower East Side,40.7107,-73.98759,Private room,91,15,0,,,28,184 +25501491,"Great apartment in staten island, New York.",192449075,Alarape,Staten Island,Graniteville,40.62439,-74.16634,Entire home/apt,115,1,36,2019-06-29,2.67,1,263 +25503149,Peaceful apartment for 2,57783233,Maia,Queens,East Elmhurst,40.75767,-73.89299,Entire home/apt,50,1,2,2018-08-04,0.16,1,0 +25503259,Private room in a two bedroom apt,3090750,Laura,Manhattan,Upper East Side,40.76931,-73.94841,Private room,55,2,2,2018-07-01,0.16,2,0 +25503835,Hidden Gem in Canarsie-FREE private parking,192464234,Rodolfo,Brooklyn,Canarsie,40.64516,-73.89684,Entire home/apt,100,1,95,2019-07-08,7.77,1,124 +25504104,**Private Bath** Master Suite in Hip Brooklyn,60346942,Josh & Madeleine,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94463,Private room,90,1,39,2019-05-29,2.98,4,0 +25504641,New York City Manhattan Midtown Convenient Place,192469172,J,Manhattan,Midtown,40.74342,-73.98207,Entire home/apt,160,1,68,2019-06-22,5.11,1,33 +25505473,"Beautiful, Sunny and very Clean Apartment",137836678,Deni,Queens,Sunnyside,40.74196,-73.92136,Entire home/apt,100,3,4,2019-07-01,0.34,1,326 +25506360,cozy zen master bedroom minutes from Manhattan.,37322613,Diana,Queens,Woodside,40.74422,-73.90285,Private room,60,3,3,2018-08-27,0.23,1,0 +25507340,Best in Greenwood. 1min walk & 15min to Manhttn,27922303,Aprilene,Brooklyn,Sunset Park,40.65676,-74.00224,Private room,75,2,8,2019-03-26,0.63,2,90 +25507427,Bushwick Apt,190828985,Francis,Brooklyn,Williamsburg,40.70337,-73.94081,Entire home/apt,130,1,0,,,2,0 +25508055,Two Bedrooms in Bright Brooklyn Home,20480059,Mallary,Brooklyn,Fort Greene,40.69328,-73.97001,Private room,120,3,1,2018-07-24,0.09,3,0 +25509463,"Charming oasis, w/pvt garden, 2 stops to manhattan",3094754,Numi,Brooklyn,Sunset Park,40.65399,-74.00363,Private room,149,1,1,2018-06-08,0.08,2,357 +25510480,BIG SUNNY LOVELY ROOM CENTRAL PARK,38863621,William,Manhattan,Harlem,40.80025,-73.95268,Private room,85,2,3,2018-06-21,0.23,1,0 +25510738,Central Park View-Free Museum Tickets-Private Room,101438864,Omar,Manhattan,Upper West Side,40.79558,-73.96242,Private room,182,1,38,2019-07-02,2.95,2,131 +25511717,"Gorgeous summer spot in boerum hill, brooklyn!",75110137,Christina,Brooklyn,Gowanus,40.68494,-73.9885,Private room,1333,50,0,,,1,365 +25512049,"Charming, Sunny and Spacious one bedroom apartment",2441040,Suzanne,Brooklyn,Greenpoint,40.73546,-73.9581,Entire home/apt,160,15,6,2019-06-09,0.49,1,17 +25512622,Bright Manhattan Room,184130293,Sandia,Manhattan,Inwood,40.86439,-73.92302,Private room,50,4,2,2018-07-01,0.16,2,0 +25515325,West Village One Bedroom with views,4821730,Jessica,Manhattan,West Village,40.73265,-74.00252,Entire home/apt,175,3,4,2019-04-28,0.38,1,0 +25515856,1 Bed 1 Bath on Upper West Side Manhattan,8304377,Beata,Manhattan,Upper West Side,40.78239,-73.98156,Entire home/apt,155,7,0,,,1,0 +25516958,Quiet Cozy Chelsea Studio,32703801,Jackie,Manhattan,Chelsea,40.74326,-74.00278,Entire home/apt,179,3,27,2019-07-07,2.06,1,54 +25517197,HUGE Soho LOFT 2 Bedrooms 2 Bathrooms,50249843,Na,Manhattan,SoHo,40.7228,-74.00644,Entire home/apt,350,2,11,2018-10-08,0.87,1,0 +25517202,Cosy Brooklyn room with a rooftop access,5342802,Mikaela,Brooklyn,Bedford-Stuyvesant,40.68616,-73.91866,Private room,45,3,2,2018-09-14,0.15,2,0 +25517407,Spacious room in prime Willyb! Steps 2 Bedford L,1034976,Katie,Brooklyn,Williamsburg,40.71777,-73.95824,Private room,100,1,18,2019-05-08,1.36,2,33 +25517826,Big room with mini private living room6,133130315,Artem,Manhattan,Hell's Kitchen,40.76463,-73.98562,Private room,136,3,2,2019-06-09,0.78,6,130 +25518394,Comfy Bronx retreat,90981550,Christopher R,Bronx,Morris Park,40.85548,-73.85585,Entire home/apt,125,1,76,2019-06-25,6.02,1,72 +25518572,"NYC Kosher Royal Nest - Near ""Q"" Express Metro",8997485,Uri,Brooklyn,Midwood,40.62415,-73.96029,Entire home/apt,60,2,2,2019-05-08,0.85,2,224 +25518658,Charming loft in a old town house,123664664,Mads,Manhattan,West Village,40.73291,-74.00916,Entire home/apt,200,4,2,2018-06-25,0.15,1,66 +25518930,Luxury 1 Bedroom in Williamsburg with a View!,31410956,Simon,Brooklyn,Williamsburg,40.71837,-73.94336,Entire home/apt,80,2,9,2018-09-18,0.68,1,0 +25519081,Big Size Room in a 2 Bedroom Apt,21364540,Francisca,Brooklyn,Williamsburg,40.70312,-73.93808,Private room,60,4,0,,,2,0 +25519328,Summer Luxury in Harlem !!!,66711742,Jared,Manhattan,Harlem,40.80978,-73.94408,Shared room,235,14,8,2019-07-06,0.70,1,21 +25519673,Private Room with Skyline View in Doorman Building,91392933,Irene,Manhattan,Midtown,40.75405,-73.97291,Private room,249,3,29,2019-07-01,2.20,1,41 +25519674,Hells Kitchen Pied-à-terre,72470941,Eric,Manhattan,Hell's Kitchen,40.76747,-73.9862,Private room,125,3,6,2018-09-17,0.47,1,2 +25519971,Brooklyn Gidi,192583202,Fola,Brooklyn,Brownsville,40.65832,-73.90486,Private room,65,1,1,2018-09-19,0.10,1,0 +25520827,Cozy lovely place :),60826656,Gail,Brooklyn,South Slope,40.66171,-73.9826,Private room,500,1,0,,,1,365 +25521277,"Spacious, light filled Brooklyn getaway",56631570,Natalie,Brooklyn,Bushwick,40.70294,-73.93313,Private room,45,2,16,2018-12-27,1.22,1,0 +25521464,NYC Beachfront Getaway,192594401,Jackee,Queens,Arverne,40.58821,-73.79755,Entire home/apt,325,3,21,2019-06-23,1.59,1,299 +25534630,2 bedroom Flat in Park Slope,17581024,Kemar,Brooklyn,Gowanus,40.67814,-73.98264,Entire home/apt,150,4,9,2019-06-23,0.74,2,6 +25534977,Amazing Times Square Room close to Everything,110115422,Anne,Manhattan,Midtown,40.76538,-73.98293,Private room,150,2,79,2019-07-06,7.69,1,120 +25535697,Huge Central Harlem 2 Bedroom (125th 2/3 train),7710878,Monica,Manhattan,Harlem,40.80805,-73.9456,Entire home/apt,163,3,0,,,1,0 +25537456,Prime Location On E. 62nd Street with Garden,56283770,Lia,Manhattan,Upper East Side,40.76375,-73.96667,Entire home/apt,165,30,1,2019-06-25,1,6,337 +25538397,3 bedroom Tourist's heaven 2nd floor,156557516,Ali,Queens,Long Island City,40.76094,-73.92949,Entire home/apt,189,1,47,2019-06-23,3.52,2,324 +25538850,Beautiful Classic 7 Residence UES,175327947,Dennis,Manhattan,East Harlem,40.78845,-73.95484,Private room,1100,1,1,2018-08-15,0.09,1,0 +25539490,Cheeky Private Bedroom in Bed-Stuy,44832896,Michel,Brooklyn,Bedford-Stuyvesant,40.67845,-73.90852,Private room,50,7,6,2019-05-27,1.41,1,0 +25540851,Modern Park slope duplex 4 bedrooms,1418307,Gal,Brooklyn,Park Slope,40.67133,-73.98714,Entire home/apt,200,1,1,2018-06-09,0.08,1,0 +25541005,WeLive Wall Street -- One Bedroom Apartment,159610596,WeWork,Manhattan,Financial District,40.70583,-74.00545,Entire home/apt,225,1,22,2019-06-24,7.59,6,323 +25541772,Luxurious and Spacious 2 Bedroom Brownstone,192713943,Killian,Brooklyn,Clinton Hill,40.68109,-73.96193,Entire home/apt,350,2,0,,,1,18 +25542088,Private bedroom in Upper East Side / East Harlem,3046221,Lucelenie,Manhattan,East Harlem,40.78936,-73.94918,Private room,46,30,0,,,1,92 +25543393,Charming Photo Set & Studio Loft,192723267,Blake,Brooklyn,Williamsburg,40.70753,-73.93623,Entire home/apt,350,2,1,2019-06-23,1,1,171 +25543561,NYC LUXURY PENTHOUSE MIDTOWN &GYM&AMAZING VIEW,133596333,Talia,Manhattan,Kips Bay,40.74383,-73.97798,Entire home/apt,499,3,11,2019-06-25,0.82,1,55 +25544243,Quiet & cozy one bedroom in Washington Heights,192712383,Kevin,Manhattan,Washington Heights,40.85573,-73.93181,Entire home/apt,115,2,16,2019-06-23,1.26,1,81 +25545177,Beautiful room in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.7054,-73.90233,Private room,100,1,9,2019-05-27,0.68,3,90 +25545275,2BR LES Apartment Near Best Food and Bars in NYC,192716996,Kohl,Manhattan,Lower East Side,40.72077,-73.98427,Private room,95,1,9,2018-11-24,0.68,1,0 +25545372,Very small room near Columbia Uni med school,163813488,Mike,Manhattan,Washington Heights,40.84287,-73.94093,Private room,43,1,10,2019-05-27,0.82,1,116 +25545392,Typical New York City LOFT studio,191765199,Elena,Manhattan,Washington Heights,40.83354,-73.94203,Entire home/apt,120,1,72,2019-06-03,5.37,6,53 +25545958,"*Solo NY Explorer | Comfy, Quiet Space",31077393,Fulani,Queens,Ridgewood,40.70004,-73.89864,Private room,88,5,0,,,1,0 +25546222,Private Brooklyn Historic Brownstone Duplex,192741854,Bethany,Brooklyn,Bedford-Stuyvesant,40.68408,-73.93383,Entire home/apt,215,2,49,2019-06-21,3.95,2,218 +25546901,Green home by Prospect Park,29506,Clare,Brooklyn,Prospect-Lefferts Gardens,40.66282,-73.95902,Entire home/apt,200,5,4,2019-01-01,0.33,1,1 +25547839,"Bright Modern LUX 1BR with pool, gym and sauna",69578078,Olivia,Manhattan,Hell's Kitchen,40.76243,-73.99805,Entire home/apt,299,1,31,2019-06-30,2.74,1,84 +25548071,SoHo Bedroom Central and Close to Many Subways,36579046,Robert,Manhattan,SoHo,40.72092,-74.00018,Private room,115,1,75,2019-06-29,5.80,1,11 +25548615,Beautiful 1BR in the heart of the West Village,3828080,Kathleen,Manhattan,Greenwich Village,40.73062,-73.99981,Private room,199,5,0,,,1,0 +25550429,"NEW Listing! Sunny, spacious, Park Slope apt.",17714108,Ali & Guillaume,Brooklyn,Park Slope,40.67787,-73.98169,Entire home/apt,129,5,8,2019-05-25,0.61,1,0 +25551687,Perfect room in Williamsburg (10min to Manhattan),889683,Rachel,Brooklyn,Williamsburg,40.71273,-73.94841,Private room,84,1,95,2019-06-15,7.13,2,51 +25552076,Private Garden. Trendy Williamsburg location!,184009385,Artem,Brooklyn,Williamsburg,40.7129,-73.94251,Entire home/apt,170,2,47,2019-06-20,3.70,2,57 +25554120,Cozy and modern one Bedroom Apartment,192793716,Claudia,Manhattan,Upper East Side,40.77637,-73.95151,Entire home/apt,149,30,25,2019-06-04,2.01,1,0 +25568873,Newly renovated apartment in the heart of Brooklyn,192861009,Ish,Brooklyn,Crown Heights,40.67046,-73.91785,Private room,47,1,37,2019-06-30,2.82,2,89 +25571627,Beautiful Modern Spacious 3 bedroom Apartment,192874460,Marie,Brooklyn,Flatlands,40.62915,-73.9198,Entire home/apt,125,2,64,2019-06-27,4.92,1,194 +25572892,Bright 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74472,-73.97205,Entire home/apt,177,29,1,2019-03-31,0.30,96,58 +25580113,2000sqf Modern Loft style Townhouse Williamsburg,192915666,Kazuyuki,Brooklyn,Williamsburg,40.71579,-73.93892,Entire home/apt,500,3,16,2019-06-08,1.26,1,160 +25580283,Bright room in beautiful Park Slope apartment,20867842,Sarah,Brooklyn,Sunset Park,40.65877,-73.98974,Private room,60,3,3,2018-06-23,0.23,1,0 +25582365,Lovely 1 bedroom in Washington heights!,4463195,Lenny,Manhattan,Washington Heights,40.8522,-73.93456,Entire home/apt,100,1,1,2018-06-03,0.07,1,0 +25583366,Upper East Side entire flat - Close to Subway,14073337,Marc & Youna,Manhattan,Upper East Side,40.77773,-73.95383,Entire home/apt,180,4,9,2019-05-26,0.71,1,4 +25584852,Huge Room With TV Uptown Manhattan,69862540,Rina,Manhattan,Washington Heights,40.8395,-73.94156,Private room,65,2,38,2019-06-27,2.97,3,21 +25584983,Newly remodeled modern home in LES,159114297,John,Manhattan,Chinatown,40.71714,-73.99229,Entire home/apt,200,1,23,2019-06-23,3.77,1,23 +25587778,Cozy Bedroom Full of Sunshine,46979077,Maya,Queens,Woodside,40.74286,-73.89163,Private room,50,1,57,2019-06-23,4.37,2,295 +25587783,Amazing Artist-Inspired Loft in Bushwick Brooklyn,794878,Freddie,Brooklyn,Bushwick,40.70783,-73.92143,Private room,150,3,5,2019-01-02,0.49,1,39 +25588085,ELEGANT 2 BEDROOM private apt in BROOKLYN,158399244,Ted,Brooklyn,Crown Heights,40.6708,-73.94011,Entire home/apt,159,1,52,2019-06-21,4.07,4,110 +25589726,Comfy Brownstone 1BR with backyard,75569180,Joachim,Brooklyn,Bedford-Stuyvesant,40.68473,-73.92725,Entire home/apt,130,4,2,2018-06-17,0.15,1,0 +25590224,Private furnished room near Columbia University,673215,Jessica Rose,Manhattan,Harlem,40.82441,-73.95327,Private room,100,3,1,2018-09-18,0.10,2,263 +25590707,美国 家庭风----幸运纽约客 民宿,192895513,Vivi,Queens,Flushing,40.75552,-73.83012,Private room,65,2,7,2019-01-02,0.53,3,341 +25590851,Cozy master bedroom in HK: LGBT FRIENDLY.,35342651,David,Manhattan,Hell's Kitchen,40.76633,-73.98325,Private room,100,14,1,2018-06-30,0.08,1,0 +25602541,High Ceiling Loft in Flatiron (3 mins to Subway),192997396,Nati,Manhattan,Kips Bay,40.74029,-73.98337,Entire home/apt,185,1,23,2019-06-27,1.87,1,133 +25606022,Sophisticated and Cozy Pre-War 2 bedroom,142178595,Adelaide,Manhattan,Upper West Side,40.7982,-73.97063,Entire home/apt,150,30,0,,,1,310 +25606562,Stunning 1 bedroom/ 1 bath apartment in Manhattan,16978300,Anna,Manhattan,Upper West Side,40.77226,-73.98876,Entire home/apt,225,2,0,,,1,0 +25607226,Your Absolute Best NYC Experience!!!,190482413,Omari,Manhattan,East Village,40.72873,-73.98759,Entire home/apt,398,2,32,2019-06-13,3.06,1,139 +25610763,Large cozy bedroom close to Times Square 43D4,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99674,Private room,62,7,3,2019-06-02,0.52,47,324 +25610990,Luxury Living in Greenpoint,193031210,Chris,Brooklyn,Greenpoint,40.72983,-73.95808,Entire home/apt,180,10,16,2019-06-15,1.27,1,61 +25614818,New York Apartment steps from Central Park,77108752,Tyler,Manhattan,Morningside Heights,40.80227,-73.95985,Entire home/apt,250,3,0,,,1,0 +25616250,"Stylish, spacious, private 1BR apt in Ditmas Park",125396920,Adam,Brooklyn,Flatbush,40.64314,-73.95705,Entire home/apt,75,3,10,2019-01-03,0.84,1,0 +25616450,1st Floor Cozy 1Br Apt. Near YANKEE STADIUM,193054505,Telia,Bronx,Morrisania,40.82936,-73.90867,Entire home/apt,150,1,26,2019-07-01,3.15,1,175 +25618799,Shared space w/privacy near NY Botanic Garden,21850707,Letitia,Bronx,Norwood,40.87077,-73.8817,Shared room,33,2,8,2019-05-19,0.71,1,6 +25618970,Williamsburg Luxury Artist Loft With All Amenities,249006,Samuel,Brooklyn,Williamsburg,40.7213,-73.96042,Entire home/apt,200,5,11,2019-06-29,0.92,1,0 +25619146,Beautiful Parlor Fl. 1 br - Historic Clinton hill,31829334,Maritza,Brooklyn,Clinton Hill,40.68339,-73.9645,Entire home/apt,99,30,3,2018-09-16,0.25,2,40 +25619849,Welcome to YURT -- comfy room in East Village,3436710,Kaptan,Manhattan,East Village,40.7252,-73.97598,Private room,100,1,13,2019-06-23,0.99,2,335 +25622377,The Green Room,180154611,Marlyn,Brooklyn,Canarsie,40.63808,-73.9001,Private room,49,2,10,2019-01-03,0.78,3,354 +25622574,Cute Bunker Beds,62533391,Yvonne,Brooklyn,Borough Park,40.63396,-74.00729,Private room,50,1,6,2019-05-06,0.46,7,365 +25624101,Blessings,4384604,Hiba,Manhattan,East Harlem,40.80983,-73.9384,Private room,83,2,6,2019-04-23,0.46,1,77 +25625417,The Palace of Perhaps (Bushwick / Ridgewood),21061846,Briana,Queens,Ridgewood,40.69943,-73.90712,Private room,40,2,13,2019-06-28,0.99,1,0 +25626152,Comfortable Flatbush Bedroom & Living Room (Rm# 3),147972663,Hyacinth,Brooklyn,East Flatbush,40.64987,-73.93855,Private room,45,3,33,2019-06-22,2.61,3,320 +25626932,10 mins to Free Ferry to Manhattan NYC new mall,182272609,Denada,Staten Island,Tompkinsville,40.63369,-74.09489,Entire home/apt,161,1,24,2019-06-02,1.82,2,87 +25629624,Minutes to everything in the middle of Manhattan,102649225,Jasmine,Manhattan,Murray Hill,40.74652,-73.97637,Private room,125,1,21,2018-12-23,1.63,1,0 +25635162,LARGE SUNNY 1BD 10 MIN TO MANHATTAN,193126561,Adelina,Queens,Astoria,40.75859,-73.91334,Entire home/apt,90,3,37,2019-06-22,3.22,1,127 +25635216,Clean and Nice Central Park Apt in Lincoln Center,193127179,Sagawa,Manhattan,Upper West Side,40.7764,-73.98236,Private room,85,4,18,2019-05-03,1.38,1,133 +25637401,Cozy Shared Apartment in Midtown Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76361,-73.98992,Shared room,69,1,81,2019-06-21,6.09,8,192 +25638322,Nice area accessible to all public transportation!,106018910,Maria,Queens,Elmhurst,40.73641,-73.87863,Private room,85,1,2,2018-07-15,0.16,1,0 +25639256,Cozy Overnight Bed in Hell's Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76276,-73.98932,Shared room,65,1,55,2019-07-07,4.19,8,204 +25639737,QUIET ROOM IN A BIG NOICY NEW YORK :),137191484,Maria,Manhattan,Hell's Kitchen,40.76362,-73.98546,Private room,99,1,40,2019-06-30,3.05,5,346 +25665981,Bright and Airy 2 Bedroom Apt,151421618,Adesh & Viviana,Queens,Ozone Park,40.6831,-73.84438,Entire home/apt,110,4,6,2019-06-04,0.88,2,140 +25666271,private bedroom in the center of NYC action 21B4,190921808,John,Manhattan,Hell's Kitchen,40.75374,-73.99517,Private room,70,7,8,2019-01-08,0.73,47,310 +25668516,Great cozy room near the center of NYC 12AR,190921808,John,Manhattan,Hell's Kitchen,40.75407,-73.99528,Private room,100,7,8,2019-06-09,0.64,47,271 +25669472,"Modern, comfy studio apartment",121851703,Mo,Queens,Queens Village,40.72105,-73.73444,Entire home/apt,25,1,45,2019-07-01,3.37,2,292 +25672309,Gramercy Apartment Steps from Union Square,59980195,Jesse,Manhattan,Gramercy,40.73467,-73.98501,Entire home/apt,225,3,0,,,1,0 +25673527,Private Apartment with 2 BEDs at Union Square,193278931,Mitsu,Manhattan,Gramercy,40.73579,-73.98636,Entire home/apt,110,3,33,2019-06-18,2.64,1,15 +25673769,Comfortable and bright bedroom in a great location,28753907,Pablo & Anastasiya,Queens,Astoria,40.76,-73.90684,Private room,60,2,35,2019-06-30,2.67,1,204 +25673898,"Clean, Quiet, Spacious Room in Brooklyn",10373779,Carla,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9484,Private room,55,3,4,2019-01-01,0.35,2,0 +25674277,Private room right next to Central Park!!,193282294,Sophie,Manhattan,Upper West Side,40.79468,-73.9647,Private room,98,2,48,2019-06-19,3.95,4,238 +25674366,Mid Century Modern Williamsburg Condo,9038810,Sanjay,Brooklyn,Williamsburg,40.71577,-73.9553,Entire home/apt,295,3,11,2019-05-16,0.87,1,1 +25674371,Home away from home!,53440969,CJ & Raissa,Queens,Queens Village,40.71288,-73.74334,Entire home/apt,80,2,43,2019-02-10,3.27,1,189 +25677480,Comfy 6ft. couch in living room,9726872,Natalie,Manhattan,Upper East Side,40.7677,-73.95476,Shared room,70,1,7,2018-12-09,0.55,1,66 +25677571,Manhattan View Garden Home,193296202,Freda,Queens,Long Island City,40.74646,-73.95324,Entire home/apt,400,3,3,2019-04-16,0.36,2,334 +25677687,Peaceful Room in Williamsburg,6787261,Anastasia,Brooklyn,Williamsburg,40.71021,-73.95563,Private room,66,2,6,2018-07-26,0.46,2,0 +25678517,Upper West Side private room by Central Park,193282294,Sophie,Manhattan,Upper West Side,40.79453,-73.96472,Private room,98,2,51,2019-06-23,4.23,4,219 +25678522,"Quiet West Village one bdrm apt, dwntwn Manhattan",660723,Aryuna,Manhattan,West Village,40.73416,-74.00424,Entire home/apt,186,10,7,2019-06-09,0.54,1,79 +25679063,Luxury private house in Queens,16507770,Jinfei,Queens,Briarwood,40.71052,-73.80906,Private room,60,1,46,2019-07-05,3.68,3,108 +25679101,Room at walking distance from Central Park!,193282294,Sophie,Manhattan,Upper West Side,40.79613,-73.96468,Private room,97,2,55,2019-06-08,4.52,4,246 +25679492,Luxury house 皇后区豪华园林式独立别墅适合家庭出游理想住宿自由畅享私家空间,16507770,Jinfei,Queens,Briarwood,40.71016,-73.81118,Private room,60,2,9,2019-05-27,0.74,3,171 +25679709,Clean Private Room in Manhattan!,193282294,Sophie,Manhattan,Upper West Side,40.79598,-73.96255,Private room,98,2,52,2019-06-18,4.25,4,242 +25680422,Converted Knitting Factory LOFT in N. Williamsburg,10671580,Emerald,Brooklyn,Williamsburg,40.7157,-73.95353,Entire home/apt,200,30,4,2019-06-10,0.35,1,101 +25680531,Large private room near Times Sq. 33C4,190921808,John,Manhattan,Hell's Kitchen,40.75391,-73.99709,Private room,62,7,9,2019-05-20,0.75,47,337 +25681692,Sunny room near center of the big apple 61F2,190921808,John,Manhattan,Hell's Kitchen,40.7558,-73.99677,Private room,62,7,6,2019-05-08,0.66,47,328 +25683401,Gorgeous Sunny Studio step away from Central Park,63266842,Lily,Manhattan,Upper East Side,40.76996,-73.9576,Entire home/apt,138,2,57,2019-07-05,4.44,1,1 +25683408,Modern Space in Charming Pre-war #2,805344,Alec,Manhattan,Harlem,40.82414,-73.95139,Private room,65,2,3,2019-07-06,3,2,68 +25683815,Spacious bedroom in central Fort Greene,2533676,Rachel,Brooklyn,Fort Greene,40.68543,-73.97622,Private room,90,4,2,2019-05-30,0.16,1,88 +25684094,Surfin’ Bird House Red at Rockaway Beach,185956783,John & Christine,Queens,Rockaway Beach,40.58499,-73.81599,Entire home/apt,99,4,21,2019-07-07,1.66,1,133 +25686640,Charming 2 Bedroom in Fashionable East Village,193335348,Julia,Manhattan,East Village,40.727,-73.98406,Entire home/apt,350,2,69,2019-07-06,5.27,1,291 +25688649,Brooklyn Bedstuy Beauty,1557774,Nardia,Brooklyn,Bedford-Stuyvesant,40.68425,-73.9567,Entire home/apt,140,5,27,2019-06-16,2.12,1,0 +25689024,*** Brooklyn Secret Spot ***,127345864,Charlene,Brooklyn,East Flatbush,40.64172,-73.93073,Entire home/apt,85,2,33,2019-07-03,2.74,4,34 +25694039,"Spacious, NEW LUXURY 1 BDRM home in Manhattan",3970656,Melissa,Manhattan,Financial District,40.70819,-74.00662,Entire home/apt,200,3,37,2019-06-08,2.85,1,2 +25698744,Cozy room with Private terrace 7th floor,16877292,D,Manhattan,East Harlem,40.79461,-73.94111,Private room,90,1,8,2019-06-09,0.63,2,208 +25710052,Cozy bedroom in Bushwick!,45859780,Alexandria,Brooklyn,Bushwick,40.68785,-73.91361,Private room,60,1,5,2018-10-01,0.39,1,0 +25716221,Spacious & minimal pre-war apartment,2736762,Emelie,Manhattan,Chelsea,40.7406,-74.00433,Entire home/apt,225,3,3,2018-10-08,0.24,1,0 +25719044,COZY Room for Female Guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66242,-73.94417,Private room,48,1,131,2019-05-31,9.97,2,0 +25719557,Big Apple Retreat,102799406,Gail,Queens,Maspeth,40.71301,-73.90716,Entire home/apt,149,3,8,2019-05-26,0.61,2,350 +25719757,"Huge, spacious, chic Gramercy 1 bedroom",1741498,Eve,Manhattan,Gramercy,40.73748,-73.98354,Entire home/apt,200,2,3,2018-08-12,0.24,1,0 +25721731,BEAUTIFUL MURRAY HILL SUITES-EAST 38TH,2856748,Ruchi,Manhattan,Murray Hill,40.74758,-73.97329,Entire home/apt,225,30,0,,,49,364 +25722216,luxury house in queens,16507770,Jinfei,Queens,Briarwood,40.71017,-73.80965,Private room,50,2,30,2019-06-23,2.41,3,92 +25723733,Cozy place.,183240218,Adedeji,Queens,Jamaica,40.67051,-73.77693,Private room,65,1,74,2019-06-14,6.05,1,211 +25724871,"Bright, Breezy Private Bedroom in Harlem",26922164,Maggie,Manhattan,Harlem,40.81371,-73.95242,Private room,80,2,11,2019-01-02,0.85,1,0 +25725858,Comfortable friendly atmosphere,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69449,-73.93726,Private room,87,2,4,2019-05-26,0.32,5,330 +25727611,Beautiful room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69329,-73.93906,Private room,87,2,4,2019-05-24,0.45,5,337 +25728315,MODERN 2 BEDROOM private apt in BROOKLYN,158399244,Ted,Brooklyn,Crown Heights,40.67221,-73.93937,Entire home/apt,149,1,39,2019-06-23,3.01,4,150 +25728623,Sunny 1BED in Heart of Williamsburg,21216045,Molly,Brooklyn,Williamsburg,40.71233,-73.96208,Entire home/apt,169,4,12,2019-06-25,0.95,1,60 +25731392,THE JEWEL OF CROWN HEIGHTS,166269959,Mor,Brooklyn,Crown Heights,40.67031,-73.9354,Private room,95,4,0,,,1,0 +25734018,Fully renovated Park Slope brownstone apartment,34758216,Rebecca,Brooklyn,Park Slope,40.67796,-73.97616,Entire home/apt,305,2,67,2019-07-02,5.19,1,101 +25734212,Gracious Brooklyn Brownstone in Historic District,25268332,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.66097,-73.95615,Entire home/apt,525,2,5,2019-01-21,0.49,1,21 +25734716,Cozy loft @ Greenpoint. Mins to Manhattan!!,182363374,Jimmy,Brooklyn,Greenpoint,40.72536,-73.95581,Private room,102,1,40,2019-05-23,3.12,7,59 +25736749,UpperWestSide/2B1BA/SHORT-TERM/FURNISHED,193521500,Amy-JPSU,Manhattan,Upper West Side,40.79874,-73.96649,Entire home/apt,220,7,19,2019-06-14,1.45,1,23 +25737165,Lux Studio Suite+ Kitchen+Gym+Rooftop @FiDi!,73456844,Lilian,Manhattan,Financial District,40.70659,-74.01002,Entire home/apt,179,3,8,2019-07-06,0.64,1,102 +25739275,Real Brownstone Brooklyn Living On Subway Line,18139709,Cal,Brooklyn,East Flatbush,40.65239,-73.94824,Entire home/apt,190,3,1,2018-06-24,0.08,1,0 +25739336,1st flr hugeW room Bklyn D train shopping/ corner,12834599,Ms. Edith,Brooklyn,Borough Park,40.63244,-73.99338,Private room,50,3,1,2018-06-21,0.08,4,89 +25740704,Beautifully Renovated 3BD/2BA ☆ 1 Block to Subway,193151416,Mohammed,Brooklyn,East Flatbush,40.64707,-73.95074,Entire home/apt,140,2,64,2019-07-06,4.96,1,220 +25742944,Bright beautiful studio with skyline views!,17254282,Kendall,Manhattan,Upper East Side,40.78133,-73.95198,Entire home/apt,220,2,3,2018-11-25,0.23,1,0 +25745372,Beautiful Private Room & Bath in East Village Loft,193558362,Christine,Manhattan,East Village,40.72421,-73.97963,Private room,124,2,11,2019-05-20,0.94,1,3 +25745458,Huge and beautiful 2BR in Greenpoint Brooklyn,2483350,Avital,Brooklyn,Greenpoint,40.73503,-73.9547,Entire home/apt,114,10,1,2019-02-07,0.20,1,0 +25752683,Chelsea Studio Apt,37239193,Ido,Manhattan,Chelsea,40.74016,-73.99902,Entire home/apt,199,2,1,2018-08-30,0.10,1,0 +25755215,Art Filled Bohemian Chic,193583966,Jean,Brooklyn,Williamsburg,40.71681,-73.95729,Entire home/apt,135,5,14,2019-06-16,1.12,1,44 +25763994,Cozy Hamilton Heights Room for 1 or 2,33680599,Kaila,Manhattan,Harlem,40.82913,-73.94718,Private room,55,2,17,2019-06-15,1.35,1,125 +25764939,"Penny's Place Brooklyn, NY",186481199,Penny,Brooklyn,East Flatbush,40.65496,-73.94405,Private room,125,1,0,,,1,311 +25764974,Deluxe Family Studio with Empire State views #7,177174475,Alberto,Manhattan,Midtown,40.74815,-73.98832,Entire home/apt,131,1,10,2019-05-23,0.84,17,224 +25765042,Awesome Private Bushwick studio!,1290870,Gus,Brooklyn,Bushwick,40.69848,-73.91179,Entire home/apt,100,2,60,2019-07-08,4.74,1,39 +25766100,Bedroom - in the heart of the East Village,21507811,Livia,Manhattan,East Village,40.7293,-73.98325,Private room,95,2,4,2019-03-24,0.31,2,0 +25767363,Luxurious New Building in the Heart of Bushwick,2152359,Alexandre,Brooklyn,Bushwick,40.69905,-73.92466,Entire home/apt,220,4,0,,,1,0 +25767382,Duplex with private terrace in Williamsburg,11309938,Wei,Brooklyn,Williamsburg,40.7128,-73.96244,Entire home/apt,135,60,0,,,1,263 +25769495,Historic New York Home,50749495,Cristina,Manhattan,NoHo,40.72842,-73.99289,Private room,80,7,10,2019-06-09,0.93,1,317 +25769883,Private room + bathroom in 2 bed apartment,1317353,Alper,Brooklyn,Bedford-Stuyvesant,40.68174,-73.94437,Private room,89,3,2,2019-05-11,0.16,1,176 +25770425,New York City home away from home :),32113962,Ania,Staten Island,St. George,40.64497,-74.08267,Entire home/apt,97,4,19,2019-06-20,1.54,1,131 +25770975,Sonder | 180 Water | Charming Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70626,-74.00565,Entire home/apt,167,29,0,,,96,322 +25771285,Spacious and convenient Harlem Guest Room.,8124038,Crystal,Manhattan,Harlem,40.82823,-73.93925,Private room,45,5,17,2019-06-30,1.36,1,119 +25772415,Brooklyn Care & Comfort,105828086,Nikki,Brooklyn,Flatbush,40.64324,-73.96332,Private room,45,2,26,2019-07-01,2.02,4,2 +25772890,"Rustic room in beautiful, naturesque Fort Greene",71987360,Brendan,Brooklyn,Clinton Hill,40.6943,-73.96917,Shared room,45,2,4,2018-08-13,0.31,1,0 +25773391,Beautiful Room in Fort Greene,3687035,Abeyu,Brooklyn,Fort Greene,40.68464,-73.97094,Private room,75,3,9,2019-07-03,0.75,1,7 +25774497,Sanctuary on Court Street (Carroll Gardens),61017447,Catherine,Brooklyn,Carroll Gardens,40.6755,-73.99806,Private room,100,2,35,2019-06-09,2.75,1,0 +25774787,"Cozy & Chic 1 Bedroom, Upper East Side, Manhattan",61981690,Roseanne,Manhattan,Upper East Side,40.7752,-73.95572,Entire home/apt,189,5,18,2019-07-03,1.40,1,21 +25775969,Private room for two in Harlem apartment!,18886157,Alexandra,Manhattan,Harlem,40.80018,-73.95379,Private room,70,6,2,2019-06-30,0.32,1,0 +25776030,Private Room in the heart of NYC. Room 3 of 3,22463377,Allison,Manhattan,Murray Hill,40.74907,-73.97818,Private room,120,1,52,2019-07-04,4.26,3,40 +25776093,Sonder | 116 John | Charming Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70724,-74.0051,Entire home/apt,164,29,0,,,96,326 +25776872,4 Bedroom Townhouse near Prospect Park w/Garden,193717499,Amy,Brooklyn,Windsor Terrace,40.64919,-73.9731,Entire home/apt,375,7,1,2018-07-21,0.08,1,8 +25776914,BROOKLYN Quiet Den,12219437,Alex,Brooklyn,Canarsie,40.64795,-73.89337,Private room,25,2,36,2019-06-16,2.76,1,144 +25779152,Quiet 2BD Brooklyn Cheap Stay,1395940,Reggie,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92151,Entire home/apt,165,1,42,2019-06-21,3.16,1,133 +25779464,Lovely Room in the Heart of Manhattan,137358866,Kazuya,Manhattan,Harlem,40.81118,-73.94231,Private room,56,30,4,2019-04-06,0.37,103,244 +25779937,Simple & Convenient Manhattan Room,137358866,Kazuya,Manhattan,Harlem,40.81207,-73.94359,Private room,52,30,2,2019-01-31,0.18,103,184 +25780292,Cozy 2 Bedroom in Murray Hill!,15372962,Christian,Manhattan,Kips Bay,40.74493,-73.97743,Entire home/apt,275,3,1,2018-08-09,0.09,1,0 +25780953,Large one-bedroom in heart of West Village,2572082,Blair,Manhattan,West Village,40.73492,-74.00418,Entire home/apt,250,2,5,2019-06-24,0.57,1,48 +25781295,Big private room in Sunnyside NYC 7 min Subway,58234433,Martin,Queens,Sunnyside,40.73575,-73.9206,Private room,89,1,12,2019-06-16,0.93,8,282 +25781535,Great private room in NYC 20 min to Manhattan,58234433,Martin,Queens,Sunnyside,40.73692,-73.91967,Private room,89,1,18,2019-06-14,1.38,8,297 +25782709,Spacious Private Room Near A C train in Brooklyn,32708211,Patnaree,Brooklyn,Bedford-Stuyvesant,40.68096,-73.93707,Private room,49,1,42,2019-07-01,3.37,1,221 +25783309,1 Bdrm in Beautiful Brownstone filled with light,7185380,Lucia,Brooklyn,Bedford-Stuyvesant,40.68332,-73.93627,Private room,60,3,7,2018-12-16,0.54,1,0 +25783739,In the heart of the East Village,21507811,Livia,Manhattan,East Village,40.72727,-73.98272,Entire home/apt,159,2,6,2019-01-02,0.51,2,0 +25784814,"4 min walk to Times Square, close to everything!",193744745,Rob,Manhattan,Hell's Kitchen,40.76148,-73.99279,Private room,120,7,1,2018-07-09,0.08,1,0 +25785298,Spacious room in Williamsburg (10min to Manhattan),889683,Rachel,Brooklyn,Williamsburg,40.71264,-73.94889,Private room,88,1,71,2019-06-21,5.37,2,51 +25786000,Explorer's Apartment,193791518,Micheal,Manhattan,Midtown,40.75565,-73.96722,Entire home/apt,186,3,45,2019-07-06,3.80,1,219 +25786994,Manhanton high rising apartment next to the subway,183033408,Jill,Manhattan,Harlem,40.8129,-73.94084,Entire home/apt,99,5,7,2019-03-09,0.63,1,0 +25788995,Country Touches Private Bedroom In Upper West Side,43809903,Eddie,Manhattan,Upper West Side,40.80246,-73.96631,Private room,90,1,51,2019-06-01,3.88,4,39 +25794631,Private room in Brooklyn!,28778026,Shahed,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9559,Private room,70,1,3,2019-04-21,0.26,2,86 +25796599,Common Single Room # 1,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.6861,-73.92859,Private room,40,1,125,2019-06-30,9.47,6,325 +25798461,Large 2 bedroom downtown Loft Apartment,195803,Zinnia,Manhattan,NoHo,40.72555,-73.99283,Entire home/apt,649,1,5,2018-11-03,0.40,1,75 +25798517,Living Art Gallery Room in New Bushwick Building,6726656,Yelle,Brooklyn,Bushwick,40.70117,-73.92545,Private room,50,2,32,2019-06-21,2.78,3,114 +25798995,ARTIST SPACE,850526,Fallon,Brooklyn,Bushwick,40.69133,-73.90538,Private room,45,4,6,2018-09-22,0.47,1,0 +25799803,Private Room in Open Brick loft in Williamsburg,11767749,Chiara,Brooklyn,Williamsburg,40.7137,-73.96674,Private room,95,2,15,2019-05-27,1.16,1,3 +25799863,Penthouse Private room w Private Rooftop + ensuite,13089912,Leo,Manhattan,East Village,40.72331,-73.98424,Private room,149,1,14,2019-06-11,1.08,2,264 +25799876,Modern 2 bedroom apartment,193877830,Lilia And Mateo,Brooklyn,Midwood,40.61722,-73.96696,Entire home/apt,50,3,14,2019-02-28,1.06,1,0 +25801507,Beautiful South Park Slope Brooklyn Apartment,17075886,Zipi,Brooklyn,Sunset Park,40.66132,-73.99192,Entire home/apt,280,3,2,2019-04-28,0.79,1,0 +25802560,Bright Big Beautiful Apt border Bushwick/Ridgewood,3543204,Andrea,Brooklyn,Bushwick,40.704,-73.91492,Private room,75,2,19,2019-06-03,1.47,1,198 +25802592,"Sunnyside - Huge Private Bedroom, right by 7train",172541609,S,Queens,Sunnyside,40.74625,-73.91388,Private room,65,2,10,2019-07-05,0.78,1,44 +25802893,Cozy Artist Apartment,5772223,Stephanie,Brooklyn,Borough Park,40.64512,-73.99839,Entire home/apt,100,14,8,2019-06-28,0.63,1,69 +25803113,"Upper Manhattan, Beautiful Sunlit Space",69563112,Zahra,Manhattan,Harlem,40.81279,-73.95208,Private room,80,3,1,2018-06-20,0.08,1,0 +25803743,Queen Private Room Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80364,-73.95025,Private room,80,2,21,2019-06-26,1.66,4,136 +25803944,Meteorine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95506,Private room,60,2,18,2019-06-17,1.63,34,0 +25804337,One Bedroom Bed-Stuy Walk-Up,6328069,Mackenzie,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95072,Entire home/apt,100,2,5,2018-08-25,0.43,1,0 +25804387,Private room by Prospect Park in Brooklyn,106783508,Gilford,Brooklyn,Flatbush,40.65374,-73.96104,Private room,35,60,0,,,1,0 +25804768,NEW Charming & Modern 2 Bed- Private Backyard!,193910244,Breanna,Brooklyn,Crown Heights,40.67747,-73.95086,Entire home/apt,250,2,20,2018-12-30,1.58,1,0 +25804970,Tropical Room in Brooklyn Heights,11280566,Paris,Brooklyn,Brooklyn Heights,40.69872,-73.99338,Private room,75,2,53,2019-06-18,4.12,1,0 +25805051,"Clean, peaceful, and bright apartment in Brooklyn",51535263,Ricardo,Brooklyn,Bushwick,40.69966,-73.93883,Entire home/apt,60,1,8,2019-03-23,0.73,1,0 +25805422,Awesome clean & cozy space in Sunset Park!,37684272,J,Brooklyn,Borough Park,40.6467,-73.99679,Private room,49,2,77,2019-07-01,5.83,1,0 +25805430,A Contemporary Homelike Stay in the Best of BK,32252422,Mckinley,Brooklyn,East Flatbush,40.63961,-73.93281,Entire home/apt,125,2,56,2019-07-02,4.22,2,332 +25806562,Private room by Prospect Park - 25min to Manhattan,132497591,Herick,Brooklyn,Flatbush,40.64924,-73.95292,Private room,50,4,2,2019-06-21,0.27,1,27 +25807047,"Upper EastSide Apartment, Quick Access to Downtown",31237776,Tunde,Manhattan,East Harlem,40.79059,-73.94332,Private room,50,14,1,2018-06-11,0.08,1,0 +25807578,Cute Brooklyn One Bedroom Apartment,22208953,Kirstie,Brooklyn,Prospect-Lefferts Gardens,40.65548,-73.95707,Entire home/apt,100,7,5,2018-08-06,0.39,1,1 +25807815,A classy room in Harlem,63417081,Devon,Manhattan,Harlem,40.82375,-73.94426,Private room,43,30,1,2019-05-18,0.58,8,310 +25809641,Light & Spacious Artist Loft with Vintage Charm,28484697,Mariah,Brooklyn,Red Hook,40.67304,-74.01231,Entire home/apt,200,2,10,2019-05-23,0.87,1,345 +25810632,Private room w/ pvt entrance near Times Sq. 22B,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99558,Private room,55,7,12,2019-06-23,1.09,47,354 +25810744,Sunny room with a great view near Times Sq. 51E3,190921808,John,Manhattan,Hell's Kitchen,40.75554,-73.99702,Private room,54,7,6,2019-06-09,0.58,47,359 +25810952,1 bed in the heart of Financial District of NYC,43279803,Chelsea,Manhattan,Financial District,40.70934,-74.01001,Private room,80,3,34,2019-06-22,2.58,1,83 +25811286,Queen Bed in Full Floor East Village Apartment,134613498,Adonis,Manhattan,East Village,40.72626,-73.98824,Private room,140,1,7,2019-05-19,0.73,7,1 +25811825,A Perfect Match! The NYC All-Rounder Apartment,74374901,Suzanne,Manhattan,Hell's Kitchen,40.75652,-73.99069,Entire home/apt,250,3,44,2019-06-07,3.53,1,48 +25812187,Beautiful Prewar New York City Apartment!,193947911,TaRi,Queens,Astoria,40.76356,-73.92102,Entire home/apt,250,4,5,2018-09-03,0.44,1,1 +25812660,*Luxurious* Sparkling Clean Two Bedroom Apartment,183803880,Alisa,Manhattan,Hell's Kitchen,40.76578,-73.98383,Entire home/apt,499,3,26,2019-06-20,2.50,1,0 +25812700,Airy Brownstone 20 minutes to Manhattan/Groups,33290222,Kelly,Brooklyn,Bedford-Stuyvesant,40.68279,-73.91947,Entire home/apt,140,2,42,2019-06-30,3.19,1,26 +25812723,Sunny 2 bdrm / 2 bath top floor brownstone,3245072,Brooke,Brooklyn,Bedford-Stuyvesant,40.68905,-73.95242,Entire home/apt,175,2,5,2019-06-23,0.45,1,0 +25812852,Fabulous Room Near Central Park,1292274,Forest,Manhattan,Upper East Side,40.78175,-73.94797,Private room,111,1,10,2019-06-08,0.76,2,62 +25812971,Spacious and minimal apt in the heart of NYC,186084,Ricardo & Ashlie,Manhattan,Chinatown,40.71676,-73.99348,Entire home/apt,160,2,5,2019-06-16,0.48,2,46 +25813254,Enjoy this private room at the heart of NYC 23B1,190921808,John,Manhattan,Hell's Kitchen,40.75437,-73.9964,Private room,150,7,8,2019-05-19,0.77,47,354 +25813279,"Charming Neighborhood, Charming Studio to Share",1538023,Lillian,Manhattan,Upper West Side,40.78099,-73.97933,Shared room,60,1,13,2019-07-04,1.06,1,331 +25813280,Private room in a Bohemian Bushwick Loft! b,96737879,Yury,Brooklyn,Williamsburg,40.70412,-73.93426,Private room,70,3,19,2019-06-30,1.79,3,53 +25813322,"Elegant private room with ROOFTOP, close to train",177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66302,-73.9457,Private room,70,1,90,2019-06-28,6.94,3,352 +25813627,Serene Loft in Williamsburg - Master Bd,2423377,Bryan,Brooklyn,Williamsburg,40.71531,-73.96548,Private room,425,5,6,2019-05-15,0.66,1,156 +25813702,"bright, cheery and real nyc",3713535,Laura,Manhattan,Lower East Side,40.71826,-73.99079,Entire home/apt,230,5,6,2019-01-01,0.47,1,0 +25813796,Fanta Sea Home 2,131777975,Jewell,Brooklyn,Brownsville,40.66528,-73.91829,Private room,50,4,6,2019-06-30,0.62,3,330 +25813849,Simple and Chic Studio Union Square/ East Village,28255971,Katrina,Manhattan,East Village,40.7326,-73.98681,Entire home/apt,200,3,3,2019-06-23,3,1,10 +25814039,Cosy soulful studio in the Upper West Side,193983914,Yul,Manhattan,Upper West Side,40.791,-73.97545,Entire home/apt,125,2,49,2019-06-28,3.79,1,2 +25814918,Large private sunny room near Times Sq. 21B3,190921808,John,Manhattan,Hell's Kitchen,40.75396,-73.99684,Private room,60,7,5,2019-04-27,0.49,47,326 +25815036,Cozy Room Great Price in Bushwick Bklyn! (Suite 4),44123062,Oscar,Brooklyn,Bushwick,40.68853,-73.90613,Private room,40,3,53,2019-07-01,4.14,4,8 +25815620,Bronx 1 bedroom studio apartment,179677211,Bettina,Bronx,Van Nest,40.84787,-73.86177,Entire home/apt,107,1,47,2019-06-23,3.63,3,8 +25815764,Sunny private room 10 mins from Times Sq 23B3,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99563,Private room,62,7,10,2019-05-04,0.87,47,358 +25815781,West Village Sanctuary,157241,Colin And Bryn,Manhattan,West Village,40.73612,-74.00591,Entire home/apt,195,5,7,2019-06-03,0.57,1,6 +25816034,Bronx 2 Bedroom with View of Manhattan Skyline,179677211,Bettina,Bronx,Van Nest,40.84778,-73.86146,Entire home/apt,150,1,29,2019-06-03,2.23,3,24 +25816999,Mamas 2 twins purple #4 boro pk 2nd flr D train,12834599,Ms. Edith,Brooklyn,Borough Park,40.63294,-73.99317,Private room,50,3,3,2019-06-10,0.29,4,179 +25817508,"Brand new space ! ... safe, peaceful and relaxing.",194004304,Norjia,Manhattan,Washington Heights,40.84782,-73.93954,Private room,85,1,9,2019-01-01,0.79,1,80 +25817824,Modern Apartment☆5 Mins to Subway☆40 Mins to NYC☆,194014767,Mohammed,Brooklyn,East Flatbush,40.6464,-73.95106,Entire home/apt,110,2,44,2019-07-03,3.40,2,288 +25823670,"Adorable UES Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77669,-73.95673,Entire home/apt,211,30,1,2019-02-28,0.23,232,201 +25826202,Stay 10 minutes away from Times Square 63F2,190921808,John,Manhattan,Hell's Kitchen,40.75396,-73.99571,Private room,100,7,2,2019-04-03,0.29,47,238 +25826245,Morningside Heights Gem,123073403,Claudia,Manhattan,Morningside Heights,40.80551,-73.96618,Entire home/apt,125,3,1,2019-01-13,0.17,1,0 +25828589,The Sound of Brooklyn,194012738,Andre,Brooklyn,Flatbush,40.65248,-73.95278,Private room,45,3,42,2019-06-24,4.24,1,81 +25829582,***WELCOME TO MI CASA TU CASA NEAR JFK/LGA AIRPORT,117543014,Jhon,Queens,Rego Park,40.72691,-73.85478,Private room,38,2,43,2019-04-28,3.32,1,0 +25830323,"Centrally located from LGA, Manhattan & more",193485559,Helen,Queens,Sunnyside,40.74432,-73.91741,Private room,50,2,0,,,1,66 +25831152,Spacious room to rest in NYC,52525653,Mike,Manhattan,Harlem,40.80549,-73.95129,Private room,83,1,3,2018-09-25,0.28,2,0 +25832499,summer downtown W/ TERRACE,2412677,Jenny,Manhattan,Chinatown,40.71463,-73.99216,Private room,100,2,1,2018-06-17,0.08,1,0 +25832504,Penthouse Triplex Jewel - 3000sf,1524825,Stephan,Manhattan,Tribeca,40.72273,-74.01049,Entire home/apt,1000,7,0,,,1,178 +25833266,Huge private & cozy room in the Bronx!,194102474,Digna,Bronx,Claremont Village,40.84346,-73.91151,Private room,35,1,49,2019-01-23,3.84,1,168 +25833495,Family and Friends Peaceful Home,194104396,Marie,Brooklyn,Flatlands,40.62635,-73.93565,Private room,75,3,0,,,1,90 +25834015,Great cozy room,194108889,Juan,Queens,Maspeth,40.72605,-73.90711,Private room,26,3,2,2019-04-30,0.16,1,118 +25834067,PRIVATE STUDIO APT!! 10 Min walk Times Square 11A,190921808,John,Manhattan,Hell's Kitchen,40.75571,-73.99647,Private room,62,2,19,2019-06-03,1.80,47,331 +25834338,1 bdrm apt / Prime Wburg / steps 2 Bedford L,1034976,Katie,Brooklyn,Williamsburg,40.71767,-73.95902,Entire home/apt,170,2,12,2019-06-23,0.93,2,308 +25834662,Cozy large room at the heart of NYC 41D4,190921808,John,Manhattan,Hell's Kitchen,40.75545,-73.99556,Private room,62,7,8,2019-05-22,0.77,47,355 +25835087,Suite nearJFK with private bathroom and kitchen,156547988,Minying,Queens,Ozone Park,40.67651,-73.84815,Entire home/apt,60,1,32,2019-06-04,2.64,4,155 +25837179,ASTORIA in QUEENS,194130534,Miryung,Queens,Astoria,40.77204,-73.9223,Private room,51,1,23,2019-06-04,1.78,1,3 +25837478,Dreamy room in Avenida Siempre Verde - Bushwick,17005572,Maira,Brooklyn,Bushwick,40.68566,-73.90909,Private room,70,5,25,2019-05-25,1.96,1,64 +25837865,Charming Hamilton Heights Apartment!,17330141,Ramble,Manhattan,Harlem,40.82952,-73.94764,Entire home/apt,105,2,33,2019-06-23,2.91,1,45 +25837948,Beautiful room(s) near JFK airport,156547988,Minying,Queens,Woodhaven,40.68853,-73.85474,Private room,60,1,14,2019-06-15,1.13,4,335 +25838887,"Private bedroom with Bath Chinatown, NYC, #3",33867639,Amiee,Manhattan,Chinatown,40.71471,-73.99514,Private room,100,1,51,2019-06-23,3.86,3,92 +25838923,"Private bedroom in Chinatown, NYC, #1",33867639,Amiee,Manhattan,Chinatown,40.71457,-73.9958,Private room,122,1,71,2019-06-11,5.50,3,91 +25839759,Gigantic Sunny Room in Park Slope-Private Backyard,167570251,Rachel,Brooklyn,Sunset Park,40.66242,-73.99464,Entire home/apt,10,1,14,2018-10-28,1.06,1,4 +25840272,Beautiful and clean 2BR in prime Chelsea,119958898,Aaron,Manhattan,Chelsea,40.74267,-73.99971,Entire home/apt,299,3,76,2019-07-04,5.82,1,91 +25841417,5min to JFK! Private Suite TwinBeds New home R1,6754369,Johann,Queens,Jamaica,40.69252,-73.80272,Private room,85,1,23,2019-05-28,1.75,4,114 +25841637,"Two double beds, New York, Chinatown, #2",33867639,Amiee,Manhattan,Chinatown,40.714,-73.99571,Private room,90,1,82,2019-06-18,6.24,3,77 +25841768,"Entire Garden Level Home in Greenpoint, Brooklyn",159204067,Maggie,Brooklyn,Greenpoint,40.72488,-73.94932,Entire home/apt,124,1,6,2019-03-24,0.50,1,6 +25842433,*THE BUSINESS TRAVELER ROOM*,48183551,Carlos,Queens,Elmhurst,40.7448,-73.88177,Private room,42,6,26,2019-07-04,2.09,5,299 +25842535,The Perfect Williamsburg Apartment,35967771,Aurelio,Brooklyn,Williamsburg,40.72021,-73.95949,Entire home/apt,180,2,3,2019-03-11,0.29,1,0 +25842847,5 min to JFK! Private Queen room in new home. R3,6754369,Johann,Queens,Jamaica,40.69352,-73.80301,Private room,80,1,47,2019-06-30,3.56,4,125 +25843611,"Family-friendly 2BR, Prime Upper West Side",194180091,Liz,Manhattan,Upper West Side,40.79114,-73.97787,Entire home/apt,175,6,3,2018-12-30,0.23,1,0 +25843716,5min to JFK! Private Queen Room in New home! R2,6754369,Johann,Queens,Jamaica,40.69238,-73.80247,Private room,85,1,37,2019-03-23,2.80,4,297 +25844166,"Last minute pricing! quiet street, heart of SoHo",7266843,Asaf,Manhattan,SoHo,40.7258,-74.0015,Private room,45,6,2,2019-03-03,0.17,1,0 +25844635,Full Apartment Downtown Manhattan (East Village),56040696,Johan,Manhattan,East Village,40.72748,-73.9795,Entire home/apt,160,5,25,2019-02-18,1.94,1,0 +25844697,Studio in Prospect Park South,91099303,Aneta,Brooklyn,Flatbush,40.64487,-73.96233,Entire home/apt,59,5,3,2019-05-26,0.40,1,0 +25845142,Sunny and spacious private room in Bushwick,46782979,Ava,Brooklyn,Bushwick,40.69907,-73.92348,Private room,150,30,0,,,1,0 +25852200,For Female Cozy Shared Room in Midtown West,194031970,Demir,Manhattan,Hell's Kitchen,40.76353,-73.98839,Shared room,69,1,24,2019-06-15,1.84,3,208 +25852575,Cozy Shared Room by Central Park For Female,194031970,Demir,Manhattan,Hell's Kitchen,40.76519,-73.98939,Shared room,69,1,17,2018-10-28,1.30,3,212 +25855178,Modern Style Cozy & Convenient 2 Bedroom Apartment,155911578,Christopher,Manhattan,Harlem,40.81889,-73.94224,Entire home/apt,180,2,20,2019-05-27,1.52,2,89 +25855717,"Stylish and Serene in Cobble Hill, Brooklyn",7810310,Erika,Brooklyn,Cobble Hill,40.685,-73.99966,Entire home/apt,100,2,11,2018-10-07,0.91,1,0 +25855773,Sunny Beautiful Loft,13307646,Annette,Brooklyn,Bedford-Stuyvesant,40.69537,-73.95642,Entire home/apt,125,18,4,2019-01-03,0.32,1,24 +25856211,Sunny hip room in Bushwick 2 mins from the L train,30940393,Sarah,Brooklyn,Bushwick,40.68869,-73.90582,Private room,50,3,22,2019-04-11,1.76,2,0 +25857843,Coney Island / Brighton Beach Private rm duplex,75671801,Lucky,Brooklyn,Brighton Beach,40.57941,-73.975,Private room,75,1,12,2019-06-30,1.03,1,90 +25860068,JULY SALE ! PRIVATE ROOM UPPER EAST SIDE NYC,23827868,Gal,Manhattan,Upper East Side,40.77655,-73.94651,Private room,55,21,2,2018-12-29,0.25,1,131 +25860270,"Nice room in large, quiet EV apt",24222,Lori,Manhattan,East Village,40.72585,-73.97967,Private room,65,5,2,2018-07-16,0.16,2,2 +25864717,Studio - 5Mins to Times Square,37412692,Kim,Manhattan,Midtown,40.76666,-73.98156,Entire home/apt,200,30,0,,,4,362 +25864886,Prime Williamsburg on quiet street!,226563,Rolf Arne,Brooklyn,Williamsburg,40.71479,-73.94916,Entire home/apt,120,14,0,,,1,0 +25865718,Beautiful duplex in New York,1190628,Julia,Manhattan,East Harlem,40.79788,-73.93265,Entire home/apt,160,7,0,,,1,278 +25867636,NEW Charming Studio,194349000,Ramsey,Brooklyn,Boerum Hill,40.68716,-73.98801,Entire home/apt,200,2,0,,,1,23 +25868383,Awesome Central Park Room. Cozy Manhattan Space.,137358866,Kazuya,Manhattan,East Harlem,40.79322,-73.94038,Private room,34,30,3,2019-03-31,0.26,103,207 +25868880,Large studio near Central Park/Columbus Circle,136264512,Roxana,Manhattan,Hell's Kitchen,40.76582,-73.98409,Entire home/apt,195,3,38,2019-06-29,3.33,1,9 +25869269,Charming Bedroom in Cozy East Harlem Apartment,31975791,Xiomara,Manhattan,East Harlem,40.79822,-73.93468,Private room,70,2,25,2019-05-24,2.67,1,101 +25870315,Beautiful peninsula to stay,93339410,Ramon,Queens,Bayswater,40.60628,-73.76019,Entire home/apt,105,4,8,2018-10-10,0.70,1,222 +25870448,Cozy Brooklyn two level apartment with a backyard,5368201,Céline,Brooklyn,Bedford-Stuyvesant,40.68565,-73.92599,Entire home/apt,195,7,0,,,1,20 +25870547,East Vilage Sleeping Space Semi-Private Room,194372264,Deborah,Manhattan,East Village,40.72433,-73.9789,Private room,60,2,50,2019-06-25,3.86,1,288 +25870840,Cozy UES apartment by the Central Park,48414103,Yulia,Manhattan,Upper East Side,40.7814,-73.95541,Entire home/apt,120,2,2,2019-04-13,0.64,1,0 +25871075,2 Story Apartment in Greenwich Village,17170106,Taylor,Manhattan,Greenwich Village,40.73416,-73.99446,Entire home/apt,250,2,3,2018-10-22,0.24,1,0 +25871251,Private Room in Bushwick Luxury Fortress,78016461,Drew,Brooklyn,Bushwick,40.69872,-73.9301,Private room,89,2,0,,,1,175 +25871304,Affordable Lenox Ave Room. Clean Sunny Comfy!,137358866,Kazuya,Manhattan,Harlem,40.81205,-73.94309,Private room,32,30,0,,,103,236 +25872255,5min to JFK! Private 3 bedroom Apt-Whole 1st Floor,6754369,Johann,Queens,Jamaica,40.69267,-73.80159,Entire home/apt,340,1,10,2018-10-31,0.78,4,82 +25872636,Elegant and spacious apt in UWS - Cleaning Incl.,176772783,Claudia,Manhattan,Upper West Side,40.79889,-73.97182,Entire home/apt,550,2,3,2019-01-03,0.25,1,0 +25872986,Your special place in Manhattan BACK room,191765199,Elena,Manhattan,Washington Heights,40.83373,-73.94182,Private room,88,1,18,2019-06-02,1.38,6,90 +25873511,Cozy & Beautiful Room in Astoria for all seasons,160248396,Mars,Queens,Ditmars Steinway,40.77816,-73.91002,Private room,70,2,41,2019-05-27,3.18,1,15 +25874845,Spacious Bedroom 1 Min. From the 1 Train,25480676,Erin,Manhattan,Harlem,40.82132,-73.9538,Private room,65,1,10,2019-05-19,4.17,1,5 +25885192,Cozy Upper East Side apartment,89886720,Margaret,Manhattan,Upper East Side,40.78029,-73.95252,Entire home/apt,125,10,4,2019-05-02,0.34,1,9 +25885278,"Cozy 1 bedroom apartment in Throggs neck, bronx",193497177,George,Bronx,Throgs Neck,40.82257,-73.83773,Entire home/apt,100,2,23,2019-06-03,1.84,1,89 +25887161,Small 1-bedroom in East Harlem,3391251,Signe,Manhattan,East Harlem,40.7942,-73.94532,Entire home/apt,110,4,4,2019-06-20,0.37,1,0 +25887684,Gorgeous Two Br Apt in Jamaica Estates.,194520886,Nazma,Queens,Jamaica Estates,40.71434,-73.78805,Entire home/apt,125,1,18,2019-06-09,1.78,2,166 +25887913,"Cozy Room Great Price in Bushwick, Bklyn!(Suite 3)",44123062,Oscar,Brooklyn,Bushwick,40.68912,-73.90848,Private room,40,3,50,2019-06-29,3.96,4,9 +25888428,Brand New Astoria Suite (large studio),25099638,Robert,Manhattan,Civic Center,40.71306,-74.00569,Entire home/apt,150,1,0,,,1,90 +25889072,private room near columbia,1226850,Tony,Manhattan,Morningside Heights,40.81338,-73.96042,Private room,70,3,0,,,1,0 +25889683,Riverside Apartment Room,28996758,俞,Manhattan,Upper West Side,40.79811,-73.97186,Private room,72,1,5,2018-07-08,0.38,1,0 +25891110,Light filled Brooklyn apartment with deck!,392929,Jeremiah,Brooklyn,Park Slope,40.66775,-73.97738,Entire home/apt,195,4,5,2018-11-24,0.40,1,0 +25891334,Ladies Dorm Shared Room (( Bottom Bunk Bed)),3294438,Torell,Brooklyn,Bedford-Stuyvesant,40.68609,-73.95736,Shared room,45,2,14,2019-03-12,1.18,3,306 +25892102,Spacious room in unique loft,20065291,Stefan,Brooklyn,Bedford-Stuyvesant,40.68983,-73.95626,Private room,45,2,1,2018-11-04,0.12,1,0 +25893224,Simple and clean,24000784,Robert,Brooklyn,Sunset Park,40.64524,-74.01273,Entire home/apt,90,2,31,2019-06-18,2.49,4,126 +25893395,Master Bedroom on 2nd floor in a sweet house!,22819324,Patricia,Brooklyn,Bushwick,40.69585,-73.90967,Private room,60,2,12,2019-05-27,1.01,2,0 +25893890,Cozy & Elegant 1 bedroom,194141910,Lilee,Manhattan,Hell's Kitchen,40.75574,-73.99723,Private room,134,2,16,2019-05-31,1.26,1,12 +25893935,"Clean, Comfortable, Convenient",178807971,Anne,Manhattan,Midtown,40.75155,-73.97021,Entire home/apt,250,2,2,2019-05-05,0.21,1,11 +25894924,A Hidden Gem in Queens,106304833,Amah Justin,Queens,Jamaica,40.68257,-73.77949,Entire home/apt,75,2,25,2019-06-24,2.06,1,62 +25894982,Downtown Brooklyn Home,194590736,Keon,Brooklyn,Fort Greene,40.69493,-73.97984,Private room,80,5,48,2019-04-27,3.70,1,86 +25895122,Beautifully decorated duplex with an amazing yard!,4580765,Grace,Brooklyn,Crown Heights,40.67367,-73.9223,Entire home/apt,300,3,33,2019-07-07,2.56,1,292 +25895132,Private Queen Room steps from Columbia and Subway,17221402,Emily,Manhattan,Morningside Heights,40.81313,-73.96148,Private room,75,2,22,2019-01-01,1.88,1,0 +25895230,Private Bedroom in Midtown West with River View,18567068,Evelyn,Manhattan,Hell's Kitchen,40.76201,-73.99876,Private room,150,3,4,2018-07-09,0.31,1,0 +25895519,Cozy Harlem room w/ a view! Near Central Park!,137358866,Kazuya,Manhattan,Harlem,40.81098,-73.94278,Private room,52,30,1,2018-07-31,0.09,103,237 +25902370,New Modern Townhouse Clinton Hill Brooklyn,181863187,Pamela,Brooklyn,Clinton Hill,40.69462,-73.96996,Entire home/apt,550,12,0,,,1,2 +25903655,Sun Drenched Artist Loft in Williamsburg!,67191518,Reisha,Brooklyn,Williamsburg,40.71777,-73.96173,Entire home/apt,250,4,8,2019-07-01,0.70,1,156 +25904446,"Cozy & Convenient Private Bedroom in Harlem, NYC.",155911578,Christopher,Manhattan,Harlem,40.8186,-73.94348,Private room,110,1,1,2019-05-04,0.45,2,0 +25904988,Bedstuy spacious townhouse w. amazing backyard,175408,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68242,-73.92788,Entire home/apt,250,10,1,2018-07-21,0.08,1,0 +25905991,Charming 3 Bedroom House in Forest Hills NY,148546760,Nicole,Queens,Forest Hills,40.71952,-73.85523,Entire home/apt,325,4,6,2018-12-31,0.51,1,3 +25909160,Simple Private Rm w/ Futon in the Bronx/ Storage,144119993,Charles,Bronx,Fordham,40.85801,-73.88247,Private room,21,1,9,2018-08-05,0.70,2,0 +25909161,New York Oasis,32605338,Aliesha,Manhattan,Upper East Side,40.76917,-73.9516,Entire home/apt,150,4,11,2019-05-23,1.13,1,3 +25911322,Brooklyn Basement,144002200,April,Brooklyn,Gowanus,40.67087,-73.99305,Entire home/apt,75,2,7,2019-07-07,0.74,1,7 +25912647,Midtown East - Huge private room with terrace,193716904,Li,Manhattan,Midtown,40.75704,-73.96531,Private room,100,3,4,2018-08-22,0.31,1,0 +25914288,PVT room cozy & warm w/fridge 15mins to NY airport,37939474,Isaac And Eunice,Queens,Jamaica,40.70713,-73.78342,Private room,37,2,34,2019-06-24,2.63,1,331 +25914515,Onderdonk Hotel Studio,194554070,Daniel,Queens,Ridgewood,40.7087,-73.91452,Private room,50,2,1,2018-06-23,0.08,1,0 +25917234,Artist Loft in Tribeca,6255854,Anna,Manhattan,Tribeca,40.71785,-74.00549,Entire home/apt,275,2,20,2019-07-07,1.56,1,10 +25917853,Very Convenient Modern Brooklyn Studio Apartment,94363111,Jessica,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95943,Entire home/apt,110,3,51,2019-07-01,4.16,1,46 +25918623,Sunny & Cheery Bronx Home - with Chickens!,7558748,Lily,Bronx,Mott Haven,40.8084,-73.92037,Entire home/apt,115,2,36,2019-06-29,3.12,1,114 +25918869,MODERN 2-3 Bedroom Apartment with Huge Roof Deck,26876408,Kelley,Brooklyn,Columbia St,40.68051,-74.00357,Entire home/apt,160,30,1,2018-08-22,0.09,1,95 +25919220,Massive Bedroom w/Private Yard. NYC/Williamsburg,117287163,Jolene,Brooklyn,Williamsburg,40.71971,-73.95879,Private room,65,14,0,,,1,0 +25921999,Serene 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74388,-73.97193,Entire home/apt,184,29,1,2019-03-15,0.26,96,347 +25922009,Elegant 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74468,-73.97335,Entire home/apt,189,29,1,2018-08-03,0.09,96,338 +25922026,Intimate Studio in FiDi by Sonder,12243051,Sonder,Manhattan,Financial District,40.70447,-74.00847,Entire home/apt,169,29,0,,,96,170 +25925504,SoHo! Private Room in Comfy Apt!,192951036,Jasmine,Manhattan,SoHo,40.72788,-74.00301,Private room,129,1,38,2019-07-06,2.98,10,151 +25927829,Soho! Amazing Single Room!,192951036,Jasmine,Manhattan,SoHo,40.7258,-73.99969,Private room,119,1,35,2019-06-23,2.75,10,156 +25928236,Soho! Room in Modern Apartment!,192951036,Jasmine,Manhattan,SoHo,40.72513,-74.00329,Private room,119,1,42,2019-07-06,3.32,10,120 +25931882,Large sunny room in Modern Brooklyn Townhouse,33210753,Can,Brooklyn,Clinton Hill,40.69631,-73.96288,Private room,65,3,11,2019-01-01,0.85,1,356 +25933647,sunshine room sublease,194927217,Qingxue,Manhattan,Washington Heights,40.84002,-73.94384,Shared room,40,1,1,2019-06-23,1,1,30 +25934111,GREAT LOCATION / GREAT PRICE COZY PRIVATE ROOM,132908616,Federico,Brooklyn,Bushwick,40.70227,-73.92264,Private room,45,3,25,2019-06-25,2.07,2,44 +25935054,LUXURY On The Lower East Side,4132784,Jeremy,Manhattan,Lower East Side,40.71896,-73.986,Entire home/apt,375,2,3,2018-12-15,0.31,1,8 +25937108,Luxury 2 Bedroom Grand Central,168465501,Ian,Manhattan,Murray Hill,40.75058,-73.97746,Entire home/apt,200,30,0,,,4,364 +25937419,"Harlem, near Columbia: Sunny room with view",55737033,Maria,Manhattan,Harlem,40.82967,-73.94851,Private room,65,4,29,2019-07-02,2.29,1,98 +25937698,Private room in Manhattan,37280441,Mary,Manhattan,Morningside Heights,40.81039,-73.95948,Private room,70,1,67,2019-04-07,5.19,2,0 +25938492,Cozy Manhattan 2 bedroom,194958383,Shen,Manhattan,East Harlem,40.79019,-73.94839,Private room,190,3,19,2019-06-28,1.53,1,14 +25939748,Modern Apt with private bedroom & bathroom,25210511,Zak,Brooklyn,Clinton Hill,40.69485,-73.96567,Private room,85,1,16,2018-08-17,1.24,1,0 +25940097,Modern Wall of Glass Townhouse with Garden,6654682,Catherine,Manhattan,Harlem,40.80609,-73.95258,Entire home/apt,800,4,2,2019-03-30,0.19,1,197 +25941089,Bed Stuy Brownstone Charm,38003941,Damira,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93054,Private room,80,2,9,2018-10-29,0.71,1,0 +25942651,ELLIS 56-4 *COLUMBIA PRESBYTERIAN HOSPITAL AREA,25237492,Juliana,Manhattan,Washington Heights,40.84089,-73.94109,Private room,65,30,1,2018-12-11,0.14,34,311 +25943177,"Lovely room with private bathroom, near Manhattan",58234433,Martin,Queens,Sunnyside,40.73657,-73.91975,Private room,129,1,10,2019-06-13,1.02,8,275 +25943635,Sunny room in great location,10304316,Engorako,Queens,Astoria,40.76549,-73.9149,Private room,60,50,0,,,1,21 +25946015,Cozy 1 Bed/1 Bath Nestled in Charming West Village,195021790,Josh,Manhattan,West Village,40.73338,-74.00314,Entire home/apt,180,2,4,2018-07-26,0.31,1,0 +25946924,BEST DEAL in NYC - Cute and Cozy Room Times Square,42998647,Prav,Manhattan,Hell's Kitchen,40.75854,-73.98988,Private room,35,3,101,2019-06-08,7.77,3,68 +25947865,Ensuite Private Room with Bath @4th FL,62533391,Yvonne,Brooklyn,Borough Park,40.63591,-74.00717,Private room,60,1,10,2019-05-24,0.82,7,312 +25947875,Single Bunker Private Bath Room,62533391,Yvonne,Brooklyn,Borough Park,40.63573,-74.00552,Private room,60,1,1,2019-03-18,0.26,7,350 +25948078,BEST LOCATION - Lovely room by Times Square!!!,42998647,Prav,Manhattan,Hell's Kitchen,40.75859,-73.99195,Private room,39,3,84,2019-06-22,6.46,3,17 +25948225,Bushwick play2,2974873,Jourdain,Brooklyn,Bushwick,40.69329,-73.91579,Private room,70,14,2,2018-09-30,0.20,2,311 +25948509,Cozy large Full 1 Bedroom Apt,195040579,Omar,Brooklyn,Midwood,40.6294,-73.97004,Entire home/apt,115,354,0,,,1,179 +25948697,"Private Bedroom In Brooklyn, NY",3163428,Veronika,Brooklyn,Sheepshead Bay,40.59919,-73.94189,Private room,60,6,0,,,1,12 +25948942,Lovely room in Manhattan Lower East Side,131236711,Qi,Manhattan,Lower East Side,40.71026,-73.98738,Private room,80,1,11,2018-07-13,0.85,1,0 +25949165,Quiet Room for Rent,195048996,Cynthia,Manhattan,Harlem,40.82571,-73.95016,Private room,68,3,0,,,1,0 +25949359,Luxury spacious new 1Bdr 30 mins to Manhattan,46976642,Panid,Brooklyn,Midwood,40.61605,-73.94549,Entire home/apt,155,4,1,2018-07-07,0.08,1,7 +25949539,"Elegant 4 floor/4BR home, garden, chef's kitchen",183188884,Alex,Brooklyn,Clinton Hill,40.68403,-73.9625,Entire home/apt,780,3,0,,,1,0 +25949877,Chic + comfortable 1 BR apt on Upper East Side,195057742,Dale,Manhattan,Upper East Side,40.77772,-73.94822,Entire home/apt,135,2,6,2018-09-17,0.50,1,0 +25950590,Cozy room close to Central Park and Columbia,2732777,Beatriz,Manhattan,Upper West Side,40.8018,-73.96264,Private room,115,3,19,2019-06-17,1.50,1,189 +25951465,NYC HUB Master Bedroom: Train @900ft,20912691,Jeff,Queens,Jamaica,40.71106,-73.78393,Private room,59,2,10,2019-05-08,0.79,7,0 +25951810,Deluxe East Village Flat: 2 Bed - 2 Bath,16962957,Nick,Manhattan,East Village,40.72891,-73.97977,Entire home/apt,169,1,5,2018-12-22,0.39,4,59 +25961778,Brooklyn Nest,697560,Emily,Brooklyn,East Flatbush,40.65014,-73.94451,Entire home/apt,100,2,0,,,1,5 +25961797,Sweet Studio in <3 of Manhattan,35577118,Ruth & C,Manhattan,Upper East Side,40.76182,-73.9619,Entire home/apt,195,1,48,2019-06-15,3.71,1,0 +25962847,Comfy King Bed Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80387,-73.95164,Private room,85,3,30,2019-07-04,2.48,4,145 +25963570,"""I LOVE BROOKLYN"" Newly Renovated Studio APT.",52403444,"R, J",Brooklyn,Bedford-Stuyvesant,40.6881,-73.94586,Entire home/apt,109,1,75,2019-06-21,5.77,3,20 +25964053,King Size Room Feet from Subway,97042500,Raphael,Manhattan,Harlem,40.80352,-73.95212,Private room,109,3,35,2019-07-07,2.82,4,0 +25964304,Modern Studio Apt on Waterfront (Greenpoint),3107231,Dan,Brooklyn,Greenpoint,40.72617,-73.95956,Entire home/apt,85,15,0,,,1,191 +25965483,Light-filled Room with Private Bath & Entrance,4712374,Karen,Brooklyn,Greenpoint,40.73325,-73.95542,Private room,85,1,12,2018-10-03,0.97,1,0 +25966512,The cozy room!,62557719,Leomaris,Manhattan,Harlem,40.82961,-73.94525,Private room,45,7,11,2019-06-09,0.85,3,88 +25967331,Cozy and Convenient Spot in Washington Heights,152442590,Nick,Manhattan,Washington Heights,40.85108,-73.93912,Private room,60,1,8,2018-07-08,0.62,1,0 +25967882,Gorgeous UES DOORMAN Apt + GYM & ROOFTOP clean !,7186760,Dafna Irit,Manhattan,Upper East Side,40.77727,-73.94588,Entire home/apt,115,35,1,2018-07-31,0.09,2,21 +25967894,Modern newly renovated apartment with balcony,47426611,Adriano,Manhattan,Washington Heights,40.84963,-73.9372,Entire home/apt,100,2,15,2019-06-23,1.39,1,48 +25968756,Cute private bedroom in Stuyvesant Height.,161649470,Jaquayala,Brooklyn,Bedford-Stuyvesant,40.68315,-73.92913,Private room,50,1,1,2018-12-11,0.14,1,0 +25970374,BEAUTIFUL STUDIO ON UPPER EAST SIDE/ CENTRAL PARK,9293730,Inna,Manhattan,Upper East Side,40.77045,-73.9568,Entire home/apt,125,30,6,2019-07-01,0.59,16,339 +25970826,"$6M Soho Penthouse: 2000 sq ft, 18 ft ceilings",1001819,Rose,Manhattan,Greenwich Village,40.72818,-73.99993,Entire home/apt,850,5,11,2019-06-13,0.88,1,45 +25971425,"Big, beautiful, sunny room in Hamilton Heights",54369863,Genevieve,Manhattan,Harlem,40.82567,-73.95261,Private room,70,1,1,2018-07-16,0.08,1,0 +25972102,Beautiful Bright Room in Soho,17494958,Katy,Manhattan,SoHo,40.72352,-74.00365,Private room,100,5,2,2018-09-29,0.17,3,0 +25972171,HUGE WASHINGTON HEIGHTS ROOM,90689056,Maddie,Manhattan,Washington Heights,40.84813,-73.94349,Private room,55,5,1,2018-06-13,0.08,1,0 +25972861,Luxurious Private Studio,195219725,Marina,Queens,Kew Gardens Hills,40.72437,-73.81523,Entire home/apt,95,1,51,2019-05-20,3.94,1,136 +25973941,HUGE 4 Bedroom PERFECT Wilburg Apt. on Bedford Ave,20176273,Adrien,Brooklyn,Williamsburg,40.71068,-73.96304,Entire home/apt,347,4,22,2019-05-27,2.19,1,70 +25974812,Cozy Room Great Price Bushwick Brooklyn (Suite 1),44123062,Oscar,Brooklyn,Bushwick,40.68714,-73.90657,Private room,50,3,45,2019-06-25,3.61,4,6 +25975428,Cozy & Modern 2 beds Apt. newly renovated BK/NYC,195238640,Yado & Vane,Brooklyn,Crown Heights,40.67411,-73.93023,Entire home/apt,190,3,26,2019-06-26,2.07,1,251 +25976738,Beautiful 1 bedroom - 2 Blocks from Central Park,30801953,John,Manhattan,Upper West Side,40.77999,-73.97997,Entire home/apt,169,2,10,2019-06-12,0.78,1,0 +25977386,Cost Effective Upper Manhattan Room,139191647,Tyler,Manhattan,Washington Heights,40.85612,-73.92888,Private room,215,1,0,,,1,179 +25977603,EarlyBirdDiscount! HUGE Modern CottageStyle TimeSq,39915290,A. Kaylee,Manhattan,Harlem,40.81187,-73.95393,Entire home/apt,299,2,8,2019-06-03,0.97,2,314 +25979705,Pre-War Elegance in Soho / West Village,8881505,Megan,Manhattan,SoHo,40.72786,-74.005,Entire home/apt,175,5,20,2019-06-13,2.01,1,36 +25979753,Greenwich Village - BEST NEIGHBORHOOD,195274541,Simon,Manhattan,Greenwich Village,40.72935,-74.00156,Entire home/apt,220,3,3,2018-07-26,0.24,1,0 +25980294,Cozy Studio in Upper East Side,195279731,Lauren,Manhattan,Upper East Side,40.77097,-73.95594,Entire home/apt,120,2,28,2019-06-23,2.22,1,0 +25982477,Little Italy Gem,191087534,Pj,Manhattan,Little Italy,40.71852,-73.99803,Entire home/apt,200,3,0,,,1,0 +25982839,Luxury gallery apartment in beautiful Greenpoint,121392618,Michal,Brooklyn,Williamsburg,40.71882,-73.94159,Entire home/apt,190,1,95,2019-05-26,7.38,1,0 +25995062,Private room with balcony with ROOFTOP terrace,177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66342,-73.94519,Private room,90,1,100,2019-07-03,7.71,3,316 +25996748,"Full Apartment, 1 Bedroom",18197276,Miguel,Bronx,Kingsbridge,40.88058,-73.90552,Entire home/apt,85,2,13,2019-01-01,1.05,1,0 +25996892,"Lovely Apartment in Greenwich Village, NYC",155627,Katherine,Manhattan,Greenwich Village,40.73177,-73.99936,Entire home/apt,90,42,2,2019-05-04,0.41,1,91 +25997567,Deluxe Loft Suite with Patio,57257950,Franklin,Brooklyn,Greenpoint,40.7334,-73.95849,Entire home/apt,399,1,0,,,4,248 +25997748,Studio Deluxe,57257950,Franklin,Brooklyn,Greenpoint,40.73409,-73.95752,Entire home/apt,349,1,0,,,4,214 +25997752,Loft Suite at Franklin Guesthouse,57257950,Franklin,Brooklyn,Greenpoint,40.73198,-73.95862,Entire home/apt,379,1,0,,,4,227 +25997937,Deluxe Loft Suite,57257950,Franklin,Brooklyn,Greenpoint,40.73218,-73.95855,Private room,399,1,1,2018-09-03,0.10,4,249 +25998042,Great Brooklyn Apartment,5597411,Misha,Brooklyn,Kensington,40.6357,-73.97208,Entire home/apt,150,14,0,,,2,112 +25998807,"Great Private Room in Midtown, great Location!",193364875,Silva,Manhattan,Hell's Kitchen,40.76311,-73.98704,Private room,98,2,64,2019-07-05,5.65,1,54 +25999678,Light & Airy home 1 minute to subway,7772526,Ting Yi,Brooklyn,Bushwick,40.68658,-73.91418,Entire home/apt,140,3,15,2019-06-12,2.76,2,240 +26000019,1Bedroom 15min Train ride to the Heart of NEW YORK,195419830,Brígida,Manhattan,Washington Heights,40.83799,-73.94036,Private room,50,2,43,2019-06-23,3.42,1,134 +26000298,Soho! Amazing 3bedroom Apt!,192951036,Jasmine,Manhattan,SoHo,40.72712,-74.00065,Entire home/apt,393,1,11,2019-05-13,0.91,10,300 +26000559,Pvt Art-filled Room w/ Pvt Access to Huge Roof Gym,2739367,Heather,Brooklyn,Williamsburg,40.70826,-73.94421,Private room,62,29,70,2019-02-27,5.38,2,64 +26001361,Relaxing and Tranquil Room in Park Slope,4232532,Jenn,Brooklyn,South Slope,40.6611,-73.98109,Private room,112,1,5,2018-11-14,0.39,2,0 +26001925,Beautiful one-bedroom get away with park view,67923313,Zhenni,Manhattan,Washington Heights,40.85811,-73.92921,Entire home/apt,90,5,5,2019-05-20,0.44,1,18 +26002246,Fully furnished apartment in a convenient location,83786650,Bridge,Manhattan,Upper East Side,40.76018,-73.9608,Entire home/apt,117,30,0,,,8,339 +26002676,Lovely one bedroom apartment in Wiliamsburg,15570509,Helen,Brooklyn,Williamsburg,40.70779,-73.95467,Entire home/apt,350,2,8,2019-05-19,1.06,1,129 +26003667,Pvt Room in Artsy Home w/pvt roof gym!,2739367,Heather,Brooklyn,Williamsburg,40.70931,-73.94253,Private room,62,1,71,2019-06-20,5.52,2,73 +26003692,Large Private Bedroom/Woodlawn Location,136208791,Camille,Bronx,Wakefield,40.88723,-73.86351,Private room,45,1,4,2018-08-17,0.31,1,365 +26003793,2 Private Rooms in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72811,-73.98824,Private room,285,1,0,,,7,0 +26004226,Best location - spacious room,395627,Deepika,Manhattan,Upper East Side,40.76279,-73.96266,Private room,125,1,16,2019-06-23,1.26,1,80 +26004343,Modern Private Room in Historic Strivers Row,36214976,Rosalba,Manhattan,Harlem,40.81968,-73.94384,Private room,75,2,12,2018-10-30,0.96,1,0 +26004664,Luxurious 2bed/2.5bath with Central Park Views,4876826,Alex,Manhattan,Midtown,40.76591,-73.97886,Entire home/apt,333,12,1,2018-09-24,0.10,1,110 +26004876,Ivoire Realty,181711840,Christophe,Bronx,University Heights,40.86259,-73.90359,Private room,65,1,2,2018-08-28,0.19,2,0 +26005261,2 Private Rooms in Full Floor East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72814,-73.98665,Private room,250,1,1,2018-06-19,0.08,7,365 +26006150,Brooklyn Palace,22098752,Eric,Brooklyn,Bushwick,40.68232,-73.9058,Entire home/apt,100,1,1,2018-11-05,0.12,1,85 +26009952,Historic Building on a Tree-lined Street,39535251,Tammen,Brooklyn,Boerum Hill,40.68696,-73.98174,Entire home/apt,103,2,5,2019-01-05,0.40,1,0 +26010424,Private Apartment 30mins from Times Square,195497710,Christopher,Manhattan,Inwood,40.86903,-73.91825,Entire home/apt,95,3,22,2019-06-27,2.06,1,251 +26011175,Cozy bedroom in LES apartment,8473523,Alexandra,Manhattan,Lower East Side,40.71857,-73.98867,Private room,75,1,7,2019-06-19,0.55,1,0 +26012750,Charming apartment in the heart of Chinatown,195516359,Carlota,Manhattan,Lower East Side,40.71359,-73.98932,Entire home/apt,220,3,12,2019-04-29,0.98,1,43 +26013177,"Avenue L, your Home away from Home.",195520304,Wayne,Brooklyn,Canarsie,40.64175,-73.89228,Entire home/apt,100,2,56,2019-07-05,4.47,1,133 +26014359,NYC Experience,43463232,Carlos,Brooklyn,Bushwick,40.69208,-73.91775,Entire home/apt,110,30,0,,,2,221 +26014444,Studio Apartment in Upper East Side,5445262,Steven,Manhattan,Upper East Side,40.77844,-73.94728,Entire home/apt,125,3,8,2019-01-01,0.63,1,0 +26022104,Cosy condo in Williamsburg with amazing rooftop,144345250,David,Brooklyn,Williamsburg,40.71552,-73.94263,Private room,110,2,0,,,1,0 +26025308,Gorgeous room available in Trendy Bushwick BK,159608581,Heather,Brooklyn,Bushwick,40.6879,-73.91183,Private room,39,2,1,2018-07-27,0.09,1,0 +26025770,"Upper West Side 3-Bedroom, 2-Bathroom",4392159,Gary,Manhattan,Upper West Side,40.80135,-73.96643,Entire home/apt,179,30,0,,,1,0 +26026530,Master bedroom in luxury apartment w. rooftop/gym,15984278,Laure-Ellyn,Brooklyn,Bushwick,40.70164,-73.9223,Private room,90,2,18,2019-06-30,1.39,1,344 +26026904,Charming Room Sunset Park Industry City Brooklyn,195517789,Patricia,Brooklyn,Sunset Park,40.65004,-74.00512,Private room,55,3,31,2019-07-01,2.75,2,345 +26028612,Cozy Private Bedroom In The Heart Of Midtown,87979621,Adam,Manhattan,Hell's Kitchen,40.76907,-73.98814,Private room,99,2,52,2019-06-22,4.08,1,192 +26029571,"Bright, spacious one bedroom in Brooklyn",7193111,Tanya,Brooklyn,Crown Heights,40.67639,-73.94714,Entire home/apt,200,1,15,2019-06-12,1.42,1,2 +26029677,Your perfect space to all New York has to offer!,14860389,Laura,Brooklyn,Greenpoint,40.7374,-73.95666,Private room,120,3,1,2019-03-22,0.28,1,87 +26031698,Bright room and private terrace with a view,24402648,Fabie,Brooklyn,Bushwick,40.69374,-73.92645,Private room,149,2,8,2019-06-30,0.65,1,83 +26032155,Giant Sunny Urban Jungle 1-BR In East Village,23024846,Casey,Manhattan,East Village,40.72455,-73.98418,Entire home/apt,200,1,12,2019-05-05,1.00,1,0 +26033022,"Prospect Heights, Brooklyn Loft with views",94509134,Katherine,Brooklyn,Crown Heights,40.67961,-73.96325,Entire home/apt,190,1,12,2019-07-02,0.93,1,9 +26033190,Williamsburg Luxury - Penthouse Duplex,16638733,Steve,Brooklyn,Williamsburg,40.71988,-73.94239,Entire home/apt,149,4,0,,,1,0 +26033963,Designers 1 bedroom West Village apartment,6295182,Jeremy,Manhattan,West Village,40.73434,-73.99963,Entire home/apt,230,2,11,2019-05-27,0.95,1,59 +26035003,Brooklyn private big bedroom,64790109,Ava,Brooklyn,Clinton Hill,40.69369,-73.9629,Private room,50,20,1,2019-04-27,0.41,1,72 +26035069,New York Home in the Heart of Harlem,68327820,Sharlee,Manhattan,Harlem,40.82314,-73.94245,Private room,97,2,13,2019-04-21,1.08,1,23 +26035350,Private Bedroom in Open Williamsburg Loft,195667782,Bill,Brooklyn,Williamsburg,40.70898,-73.94813,Private room,76,1,59,2019-06-20,4.57,1,44 +26035905,"Bliss-Private room close to train, ROOFTOP terrace",177314795,Viviane,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.94509,Private room,60,1,59,2019-07-01,4.65,3,342 +26036438,Fun and Whimsical UWS Garden Home,40653297,Jordyn,Manhattan,Upper West Side,40.78721,-73.97015,Entire home/apt,350,2,19,2019-06-16,1.50,1,163 +26036850,Guest room,195678889,Susan,Manhattan,Harlem,40.82461,-73.95269,Private room,60,2,0,,,1,363 +26036861,Spacious room in modern Williamsburg condo,4122424,Mark,Brooklyn,Williamsburg,40.70621,-73.95026,Private room,60,1,36,2019-06-19,2.79,1,0 +26037255,Private Room! AMAZING area in SoHo!,192951036,Jasmine,Manhattan,West Village,40.72918,-74.00482,Private room,209,1,40,2019-07-01,3.09,10,247 +26037496,Large Studio in NYC Brownstone for the Budget,195683584,Harold,Manhattan,Harlem,40.80579,-73.94916,Entire home/apt,125,2,22,2019-06-14,1.84,1,291 +26038458,Verona TwentyOne - PHOEBE'S PLACE,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68037,-73.94775,Entire home/apt,150,1,95,2019-07-07,7.94,3,243 +26038825,Beautiful Historic Harlem Townhouse,195693063,Billy,Manhattan,Harlem,40.82252,-73.94858,Private room,125,1,63,2019-06-19,5.34,2,293 +26038936,"GREAT LOCATION, THE HEART OF THE UWS!",6918093,Carinne,Manhattan,Upper West Side,40.78883,-73.98068,Private room,90,3,8,2018-12-27,0.62,1,0 +26039252,Private Room in Meatpacking/Chelsea,195689083,M,Manhattan,West Village,40.74012,-74.00537,Private room,50,2,56,2019-07-01,4.35,1,21 +26039725,Spa Ha Getaway,186517433,Alvina,Manhattan,East Harlem,40.79608,-73.93335,Entire home/apt,350,1,0,,,1,90 +26040209,Extra Room in Large East Village Apt!,134613498,Adonis,Manhattan,East Village,40.72718,-73.98798,Private room,60,1,11,2018-10-06,0.86,7,23 +26040426,Spacious and bright 1 br apartment in West Village,195712950,Giorgi,Manhattan,West Village,40.73867,-74.00383,Entire home/apt,300,3,2,2019-02-07,0.20,1,0 +26040453,Verona TwentyOne - RODFRED COMFORT,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94699,Entire home/apt,150,1,109,2019-07-04,8.93,3,241 +26041591,"Private room in beautiful 3 bdr, off Riverside Dr",33996519,Isabella,Manhattan,Harlem,40.82291,-73.95612,Private room,50,13,0,,,1,5 +26041689,The home is where the heart is.,156585195,Gerard,Brooklyn,East Flatbush,40.65287,-73.94861,Entire home/apt,200,2,27,2019-06-25,2.30,2,217 +26043335,Luminous and Spacious Private Room,4167027,Jam,Brooklyn,Kensington,40.64595,-73.97578,Private room,60,5,3,2019-04-16,0.45,1,344 +26043558,Beautiful large floor-through apartment,31410976,Linda Jo,Brooklyn,Bedford-Stuyvesant,40.68681,-73.93344,Entire home/apt,183,3,24,2019-07-01,1.89,1,115 +26048920,"Spacious, artsy bedroom in the heart of bushwick.",769759,Karla,Brooklyn,Bushwick,40.69502,-73.93107,Private room,70,3,11,2019-04-10,0.94,2,0 +26050423,"Spacious, trendy bedroom in the heart of Bushwick",769759,Karla,Brooklyn,Bushwick,40.69615,-73.93302,Private room,60,2,17,2019-05-19,1.31,2,2 +26050704,Greenpoint room,17452999,Carlos,Brooklyn,Greenpoint,40.73616,-73.95511,Private room,95,3,0,,,1,0 +26052294,"Lovely, spacious room in the best neighborhood",17672941,Daniel,Manhattan,Greenwich Village,40.72844,-74.00025,Private room,100,3,6,2019-06-02,0.48,1,9 +26053340,"Beloved Williamsburg, Brooklyn is calling to you!",18824752,Ashley,Brooklyn,Williamsburg,40.70858,-73.95378,Private room,70,3,42,2019-06-29,3.41,1,20 +26053366,Private Room in Century Old Brownstone Duplex,26034076,Ria,Brooklyn,Bedford-Stuyvesant,40.69625,-73.93693,Private room,55,30,0,,,1,0 +26054026,Awesome bedroom in Upper Manhattan,40044041,Rocio,Manhattan,Washington Heights,40.84367,-73.93566,Private room,59,2,5,2019-01-02,0.43,1,0 +26055132,"Private room, Queens NY with free street parking",6879271,Béla,Queens,Glendale,40.70267,-73.88663,Private room,83,2,4,2019-04-09,0.32,1,364 +26055709,Sunlit Private Room One Block off Subway (3 & 4),46201715,Brysen,Brooklyn,Crown Heights,40.66697,-73.93225,Private room,67,1,73,2019-07-03,5.67,1,251 +26056703,"West 33rd street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Chelsea,40.75233,-73.9941,Entire home/apt,259,30,0,,,87,357 +26057084,Spacious 1 Bd. Duplex Apt. in Brownstone,36440514,Sarah,Brooklyn,Clinton Hill,40.68553,-73.96314,Entire home/apt,150,3,5,2018-12-31,0.39,1,0 +26057252,"Bushwick Brownstone, Long-term Stay",87767243,David,Brooklyn,Bedford-Stuyvesant,40.68423,-73.9149,Private room,41,21,1,2018-10-07,0.11,2,155 +26057878,"Soho family loft 3 beds, 2 bedroom. Best location!",389684,Violetta,Manhattan,SoHo,40.72292,-73.99951,Entire home/apt,550,3,9,2019-06-29,3.18,1,61 +26058074,Airy Crown Heights Loft,758520,Rowan,Brooklyn,Crown Heights,40.67621,-73.95052,Entire home/apt,99,3,3,2019-01-12,0.26,1,0 +26058246,Sunny room in Avenida Siempre Verde - Bushwick,19407197,Alvaro,Brooklyn,Bushwick,40.68642,-73.90734,Private room,70,3,21,2019-06-29,1.78,1,33 +26058634,Highline,195831428,P,Manhattan,Chelsea,40.74441,-74.00385,Entire home/apt,350,7,4,2019-06-13,0.43,1,207 +26059525,SPACIOUS SUNLIT 2 BED/2 BATH APT IN WILLIAMSBURG,662432,Emily,Brooklyn,Williamsburg,40.71657,-73.9595,Entire home/apt,350,5,1,2018-08-04,0.09,1,117 +26060534,Cozy Private Bedroom for 1 Female,17867234,Anna,Queens,Ridgewood,40.70793,-73.89528,Private room,37,4,8,2019-06-12,0.64,1,157 +26061337,LIC 5 Minutes from Manhattan,384654,Fabio,Queens,Long Island City,40.74623,-73.94051,Entire home/apt,140,2,7,2019-06-07,2.23,1,122 +26061532,"Cool, comfortable: RIGHT by 3 Subways",28811203,Brandon,Manhattan,Flatiron District,40.73986,-73.9863,Entire home/apt,349,7,3,2018-09-10,0.26,1,188 +26061712,The East Village Home: The Summer Getaway,126034120,Roni,Manhattan,East Village,40.72608,-73.97797,Private room,105,3,1,2018-08-20,0.09,3,14 +26062650,MONTHLY RENTAL 1/2 Block from the BEACH BUNGALOW,64777265,Joe,Queens,Rockaway Beach,40.58536,-73.81726,Entire home/apt,75,30,1,2018-09-28,0.11,1,363 +26062892,Brooklyn home away from home,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67771,-73.90969,Private room,55,1,25,2019-06-12,1.97,3,74 +26063053,April 1st Beautiful Furnished Manhattan Apt,195867496,Caren,Manhattan,Kips Bay,40.74036,-73.97929,Entire home/apt,85,28,0,,,1,0 +26063230,Gorgeous 4 BR apt w. King bed 30 min to Manhattan,1409262,Sarah,Brooklyn,Flatbush,40.6424,-73.95365,Entire home/apt,165,2,49,2019-07-02,4.04,6,191 +26063353,"Designer DUMBO Loft, 2BR",8161684,Corey,Brooklyn,Vinegar Hill,40.70139,-73.98351,Entire home/apt,250,4,5,2018-12-29,0.49,1,0 +26063436,Bk home away from home,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67736,-73.90995,Private room,55,1,24,2019-06-13,1.96,3,64 +26063550,Ocean hill home away from,193500709,Levi,Brooklyn,Bedford-Stuyvesant,40.67758,-73.90841,Private room,59,1,24,2019-06-30,1.86,3,32 +26064299,Private Room! TRENDY location!,192951036,Jasmine,Manhattan,Greenwich Village,40.7278,-73.99976,Private room,129,1,29,2019-05-09,2.28,10,245 +26064779,Cool Private Room in Dreamy Bedstuy Apartment,94669,Keithan,Brooklyn,Bedford-Stuyvesant,40.68354,-73.94003,Private room,55,3,43,2019-07-06,3.57,2,0 +26065193,"Luxury, large, private room on Upper West Side",4993126,Lenny,Manhattan,Upper West Side,40.78052,-73.97567,Private room,109,3,14,2019-06-11,1.14,1,0 +26072801,Jades Place,4520673,Jade,Brooklyn,Williamsburg,40.71424,-73.96182,Private room,75,20,4,2019-06-13,0.52,2,95 +26074006,Nice & Spacious Manhattan Room Near the Station,137358866,Kazuya,Manhattan,Harlem,40.81217,-73.94406,Private room,52,30,2,2019-06-04,0.19,103,214 +26074339,"Laid Back, Cozy 1-BR in Perfect Brooklyn Location",13811457,Jenita,Brooklyn,Bedford-Stuyvesant,40.68662,-73.95466,Entire home/apt,115,2,6,2018-11-14,0.56,1,6 +26075796,Spacious Studio Near Columbia University,155807678,Gloria,Manhattan,Morningside Heights,40.80395,-73.96311,Entire home/apt,113,45,0,,,1,87 +26076732,Brooklyn 28+day Refuge - Private Bedroom w/lounge,35516941,Thomas,Brooklyn,South Slope,40.66336,-73.9789,Private room,50,60,0,,,1,362 +26076877,CONFORTABLE BIG BED ON NY CLOSE TO JFK AND LGA,173290675,Charlie,Queens,Woodhaven,40.69791,-73.85158,Private room,40,2,16,2019-06-16,1.24,3,330 +26077493,Fantastic 1bdr in New York,143400845,Pierpaolo,Bronx,University Heights,40.86113,-73.91511,Entire home/apt,100,5,1,2018-07-19,0.08,1,11 +26078971,Private Cozy bedroom 12 minutes to Midtown,104913801,Luis,Queens,Long Island City,40.75654,-73.94232,Private room,45,2,42,2019-06-30,3.59,2,54 +26079745,Entire Apartment in Prime Clinton Hill!,65775049,Nicole,Brooklyn,Clinton Hill,40.68834,-73.96269,Entire home/apt,150,3,1,2018-08-17,0.09,2,255 +26080154,NYC HUB GuestRoom: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Jamaica,40.70908,-73.78237,Private room,66,2,17,2019-06-29,1.34,7,0 +26080646,Entire West Village Apartment,196017028,Franklin,Manhattan,Greenwich Village,40.72848,-74.0012,Entire home/apt,200,4,18,2019-07-01,1.42,1,5 +26080745,bayroom,196017211,Mohammed,Brooklyn,Bay Ridge,40.63554,-74.02421,Private room,35,28,7,2019-05-21,0.55,1,264 +26080980,Magical Room in the Heart of West Village,12810839,Kytzia,Manhattan,West Village,40.73157,-74.00481,Private room,90,2,1,2018-07-13,0.08,2,0 +26081052,Sunny room with backyard in a yoga studio,5748117,Malika,Brooklyn,Bedford-Stuyvesant,40.678,-73.93974,Private room,75,1,25,2019-07-07,1.93,1,170 +26084019,"Window-filled & Spacious, Quiet Downtown Getaway",12672756,Jake,Manhattan,Chinatown,40.7165,-73.99107,Private room,90,2,42,2019-07-02,3.26,1,99 +26084024,"Quiet, sunlit apartment in heart of Brooklyn",23718772,Allan,Brooklyn,Crown Heights,40.67415,-73.96291,Entire home/apt,139,2,2,2019-05-26,0.70,1,12 +26084814,Large bedroom in a lovely flat in perfect location,54970203,Molly,Manhattan,Harlem,40.80372,-73.95266,Private room,82,2,33,2019-06-16,2.75,1,2 +26085068,"Lovely apartment in INWOOD, Manhattan",50814751,Maki,Manhattan,Inwood,40.86833,-73.92291,Entire home/apt,85,18,2,2019-01-13,0.21,1,16 +26085075,Charming studio with PRIVATE DECK by McCarren park,27530449,Estefania,Brooklyn,Greenpoint,40.72173,-73.9482,Private room,106,4,21,2019-06-03,1.73,2,58 +26085247,Bright Minimal Studio in Heart of Williamsburg,196059058,Emon,Brooklyn,Williamsburg,40.70984,-73.95979,Entire home/apt,100,7,3,2019-01-01,0.30,1,44 +26085282,Free ferry to Manhattan 10 mins away,182272609,Denada,Staten Island,Tompkinsville,40.63277,-74.09562,Entire home/apt,106,3,10,2019-06-29,0.86,2,87 +26085355,house,37001535,Daitao,Brooklyn,Fort Greene,40.69223,-73.98165,Entire home/apt,130,3,1,2019-01-19,0.18,1,0 +26086126,Beautiful and Clean Private Bedroom with Bathroom,152708570,Emily,Queens,College Point,40.78141,-73.84506,Entire home/apt,60,3,30,2019-06-17,2.49,1,55 +26086768,"New 3 Bdrm Urban Lux Oasis w/Deck, 50 Ft to Subway",64626614,Debbie & Hilel,Brooklyn,Crown Heights,40.66757,-73.92981,Entire home/apt,200,2,36,2019-06-23,2.80,1,321 +26086909,"Spacious townhouse, vibrant Brooklyn neighborhood",2797280,Michael,Brooklyn,Bedford-Stuyvesant,40.69061,-73.95345,Entire home/apt,200,1,26,2019-06-29,2.39,1,69 +26087030,Charming bedroom with private bathroom,60908748,Maria,Brooklyn,Bushwick,40.7007,-73.921,Private room,100,1,5,2019-06-17,1.00,2,145 +26093497,Beautiful 5 bedroom+ Oasis in NYC,93752700,Bliss Beata,Brooklyn,Flatbush,40.63573,-73.96433,Entire home/apt,745,4,1,2019-01-02,0.16,1,28 +26094506,Small Room in great location Upper East Side,99349134,Tupac,Manhattan,Upper East Side,40.77816,-73.9541,Private room,95,1,44,2019-06-19,3.45,2,98 +26096547,"East Village studio, perfect location",3185760,Cristian,Manhattan,East Village,40.72906,-73.9845,Entire home/apt,85,14,14,2019-06-21,1.32,1,16 +26097566,"Magical Artist's Brownstone in Brooklyn, 2 Rooms",41099363,Maria,Brooklyn,Fort Greene,40.68792,-73.97671,Private room,230,4,2,2019-05-03,0.24,3,114 +26098014,"Room with private entrace & bath, AC + roofdeck",1855509,Janne,Brooklyn,Park Slope,40.67547,-73.97361,Entire home/apt,89,5,92,2019-07-06,7.26,1,193 +26098606,"Light, airy and spacious Apartment close to all",15106211,Siddhartha,Brooklyn,Gowanus,40.67965,-73.98899,Entire home/apt,150,5,2,2019-04-25,0.17,1,16 +26098654,3 bedroom duplex with skyline view roof terrace,6568666,Jeroen,Brooklyn,Clinton Hill,40.69003,-73.96865,Entire home/apt,274,2,0,,,1,24 +26099255,"Serenity Studio; Light, Bright and Cute",196171209,Marina,Brooklyn,Crown Heights,40.67316,-73.95397,Entire home/apt,85,2,57,2019-07-03,4.62,1,110 +26099303,Heart of South Williamsburg,27966935,Lara,Brooklyn,Williamsburg,40.71033,-73.9647,Private room,100,28,20,2019-05-31,1.62,1,309 +26099885,Sunlit modern Brooklyn home with terrace,196178201,Mimi,Brooklyn,Carroll Gardens,40.67895,-73.99529,Entire home/apt,225,6,1,2018-08-14,0.09,1,0 +26104760,Private En-Suite Bedroom in charming BK Retreat,56198002,Hannes & Will,Brooklyn,Flatbush,40.65239,-73.96417,Private room,75,2,14,2019-06-16,1.12,1,17 +26107318,Great Townhome!! 1 Stop from Manhattan! Sleeps 6,99268393,Brian,Queens,Long Island City,40.74436,-73.95205,Entire home/apt,175,2,42,2019-07-01,3.77,1,238 +26108084,Sunny Flat in NYC,11121151,Christina,Manhattan,Upper West Side,40.7958,-73.97163,Private room,69,2,0,,,1,0 +26108336,Large room with a view in the heart of NYC 31C2,190921808,John,Manhattan,Hell's Kitchen,40.75587,-73.99724,Private room,65,7,5,2019-05-20,0.53,47,356 +26109380,Amazing large studio apartment in Harlem!,4426065,Lynn,Manhattan,Harlem,40.80799,-73.94158,Entire home/apt,100,7,1,2018-07-24,0.09,1,26 +26110133,Luxurious 2 Bedroom Apartment,196274503,Patience,Queens,Bayswater,40.60606,-73.75492,Entire home/apt,120,1,23,2019-03-02,1.81,1,189 +26110466,"JFK Queens Home away from Home""House Of Suedajoy#3",175019394,Suzan,Queens,Jamaica,40.67057,-73.77869,Private room,60,1,22,2019-06-22,1.73,6,81 +26119005,"Alisha’s Place-JFK 10 MINS, walk to subway & buses",102410496,Alisha,Queens,Richmond Hill,40.69608,-73.8286,Entire home/apt,249,2,15,2019-06-16,1.28,2,360 +26119170,City Island Seaview Apartment,196333700,Teddy,Bronx,City Island,40.85104,-73.78573,Entire home/apt,110,2,25,2019-05-27,2.18,1,171 +26121109,Boho Haven with Private Balcony in Bushwick,33592161,Dakota,Brooklyn,Bushwick,40.69777,-73.92252,Entire home/apt,95,3,5,2019-04-27,0.39,1,0 +26121159,Bedstuy Brooklyn home with a view!!!,195831980,Randaull,Brooklyn,Bedford-Stuyvesant,40.6851,-73.94791,Entire home/apt,170,1,27,2019-03-30,2.13,1,137 +26121444,3 bedroom Apartment near airport and attractions,171171143,Mariela,Queens,East Elmhurst,40.7642,-73.86932,Entire home/apt,100,4,15,2019-06-07,1.34,1,203 +26121733,Modern Apartment in The Heart of Brooklyn,24545739,Ewa,Brooklyn,Bedford-Stuyvesant,40.68824,-73.92377,Private room,65,4,5,2018-11-26,0.39,1,0 +26121892,"NO FEE, Brand New Luxury Studio in Manhattan",195656040,Donyanaz,Manhattan,Midtown,40.74914,-73.98779,Entire home/apt,350,7,0,,,1,0 +26122874,Sparkling Pad near Times Square HK -w- Full Bed,501343,Bryan,Manhattan,Hell's Kitchen,40.76361,-73.98847,Private room,155,2,3,2019-05-30,0.24,2,0 +26123841,East Village Authentic Loft Living Apt,4227314,Alex,Manhattan,East Village,40.72204,-73.98151,Private room,90,3,28,2019-06-24,2.26,1,6 +26125053,Greenpoint private 2 rooms,196373534,Paschal,Brooklyn,Greenpoint,40.72921,-73.95016,Private room,50,2,1,2018-07-10,0.08,1,0 +26125349,Beautiful apartment in Greenpoint,502897,Malu,Brooklyn,Greenpoint,40.72791,-73.95689,Entire home/apt,150,5,1,2018-06-20,0.08,1,0 +26126570,Two bedroom apartment with all amenities,673215,Jessica Rose,Manhattan,Harlem,40.82299,-73.95461,Entire home/apt,200,5,0,,,2,39 +26126894,2+1 Bedroom Apartment Upper West Side,17444700,Andrés,Manhattan,Morningside Heights,40.80724,-73.96677,Entire home/apt,250,7,4,2019-06-29,0.37,1,4 +26127726,"Spacious, beautiful, quite 2BR 2BA in the UES",4965751,Dipti,Manhattan,Upper East Side,40.7713,-73.95568,Entire home/apt,189,4,8,2019-01-02,0.65,1,7 +26127763,Cozy Garden Suite on Prime Bed-Stuy Block,840092,Veronika,Brooklyn,Bedford-Stuyvesant,40.6834,-73.93648,Entire home/apt,119,2,46,2019-07-02,3.85,1,81 +26128481,Cozy Home Away TH,179436298,Nyota,Brooklyn,Crown Heights,40.66391,-73.95618,Entire home/apt,112,2,3,2018-12-29,0.29,2,364 +26129270,"Mi casa es su casa, La casa de Pupilos",6724903,Edgard,Queens,Middle Village,40.71293,-73.88402,Private room,70,2,20,2019-05-04,1.82,1,224 +26129308,Charming Crown Heights Bedroom,107712560,Julia,Brooklyn,Bedford-Stuyvesant,40.67982,-73.945,Private room,41,1,15,2019-01-03,1.17,1,0 +26131004,Sunny Delight,196421197,Pedro Y Martha,Queens,East Elmhurst,40.75902,-73.87698,Private room,45,3,15,2019-07-01,1.18,1,365 +26131195,"Large modern luxury 1 bdrm apt, beautiful rooftop!",40323007,Joshua,Manhattan,East Village,40.72852,-73.97987,Entire home/apt,280,2,40,2019-06-27,3.18,1,119 +26131606,High End Luxury 2 Bedroom Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.74969,-73.9774,Entire home/apt,200,30,0,,,91,311 +26131794,Super Luxurious 2 Bedroom Grand Central,61391963,Corporate Housing,Manhattan,Murray Hill,40.7512,-73.97738,Entire home/apt,175,30,2,2019-04-30,0.38,91,241 +26131873,Stunning 1 Bedroom 2 Bathroom in Midtown,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76234,-73.98947,Entire home/apt,199,30,1,2018-08-31,0.10,91,0 +26132476,Sunny private room 10 minutes from Times Sq. 53E3,190921808,John,Manhattan,Hell's Kitchen,40.75544,-73.99721,Private room,64,30,5,2019-05-08,0.55,47,365 +26134096,"LGA cozy apt, Close to Astoria, Manhattan, JFK",156948703,Asad,Queens,East Elmhurst,40.76956,-73.87347,Entire home/apt,99,1,94,2019-07-07,7.32,6,333 +26134638,Beautiful 1 Bdrm w/ Large Private Patio,20659309,Emily,Brooklyn,Williamsburg,40.70901,-73.95471,Entire home/apt,168,2,5,2018-11-04,0.39,1,0 +26135091,Spacious Lower East Side Apartment,195638506,Anastasia,Manhattan,East Village,40.72213,-73.98236,Entire home/apt,150,3,27,2019-07-07,2.11,1,19 +26135659,Another comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68725,-73.91623,Entire home/apt,163,3,20,2019-06-03,1.59,3,309 +26135711,Heaven away from Home!.,76237449,Majidudeen,Queens,Jamaica,40.70647,-73.79794,Entire home/apt,52,30,0,,,1,365 +26136583,Newly Renovated Cozy Apartment,6171984,Deanna,Queens,Woodside,40.74789,-73.89752,Entire home/apt,156,1,2,2018-07-05,0.16,1,0 +26136978,Cozy Bronx nest,196468460,German And Wendy,Bronx,Unionport,40.82848,-73.85466,Entire home/apt,85,2,68,2019-07-04,5.37,1,247 +26137379,15 Mins to Rockefeller Center!,196476281,Damien,Bronx,Concourse,40.83193,-73.92223,Private room,40,1,29,2019-07-07,2.47,2,360 +26137457,Brooklyn Oasis 20 Min to Manhattan,1004883,Marisha,Brooklyn,Bushwick,40.69107,-73.90604,Private room,60,4,5,2019-06-28,0.45,2,364 +26137778,Peaceful Private Clean Rm Near 2/5Train/Metro N.,196462256,Rees,Bronx,Wakefield,40.89374,-73.85579,Private room,60,2,10,2019-04-10,0.85,1,365 +26138483,Manhattan Mid-town Time Square Cozy Bedroom,20630497,槟利,Manhattan,Hell's Kitchen,40.76418,-73.99448,Private room,70,2,2,2018-07-30,0.17,1,0 +26138542,Huge Cobble Hill BR w private bath city views,896708,Kat,Brooklyn,Carroll Gardens,40.68288,-73.99799,Private room,130,3,7,2019-04-23,0.57,2,48 +26138591,Room with AC - Cozy Manhattan Apt. —Central Park,196088317,Andreas & Bella,Manhattan,Upper East Side,40.76473,-73.95623,Private room,80,2,45,2019-06-13,3.56,2,26 +26138643,Sunny Apartment In The Heart of Lower Manhattan,6213880,Chelcie,Manhattan,Lower East Side,40.72202,-73.98922,Entire home/apt,145,2,16,2019-06-09,1.55,1,2 +26138702,Clean and big bedroom close to manhattan,18260424,Tevfik,Queens,Sunnyside,40.74304,-73.91699,Private room,73,1,1,2018-07-30,0.09,1,0 +26138943,Awesome bedroom. Clean & new apt. 5 min to train,43148410,Lo,Brooklyn,East New York,40.66761,-73.88693,Private room,38,30,2,2019-04-01,0.19,3,342 +26138957,Charming Sunny Bushwick Abode,9787070,Denisse,Brooklyn,Bedford-Stuyvesant,40.69462,-73.93249,Private room,60,4,0,,,1,0 +26139590,Safe upscale zone master bedroom close to subway,15838559,Weimin,Queens,Forest Hills,40.71357,-73.85138,Private room,59,60,4,2018-08-03,0.33,4,0 +26139678,Private cozy room in perfect UWS,18497228,현선,Manhattan,Morningside Heights,40.80485,-73.96534,Private room,1200,60,0,,,1,365 +26140709,Workspace Room 3 - 2,9864136,Anthony,Brooklyn,Bushwick,40.68644,-73.91554,Private room,36,2,1,2018-08-10,0.09,26,302 +26142708,Yankee baseball stay,158215530,Deon,Bronx,Concourse,40.82753,-73.92463,Private room,200,1,0,,,2,365 +26147454,"Sunny, Spacious 1BR in Ditmas Park, Brooklyn",48618049,Courtney,Brooklyn,Kensington,40.63278,-73.96891,Entire home/apt,90,4,0,,,1,5 +26147702,YANKEE BASEBALL STAY,158215530,Deon,Bronx,Concourse,40.82714,-73.92528,Private room,200,1,0,,,2,179 +26148245,NYC!!,196549213,Ronen,Manhattan,Hell's Kitchen,40.76718,-73.98574,Private room,102,14,3,2019-05-18,0.34,1,65 +26149494,10 minutes from JFK Airport Rockaway Beach Livin,196557649,Erica,Queens,Bayswater,40.59762,-73.76719,Entire home/apt,230,1,3,2019-06-01,0.33,2,310 +26150100,Eclectic One Bedroom in Little Italy,14170288,Stephanie,Manhattan,Little Italy,40.71829,-73.9978,Entire home/apt,174,30,0,,,1,89 +26150691,1 bedroom apt in an awesome part of town,7235975,Georges,Manhattan,West Village,40.73026,-74.00392,Entire home/apt,200,2,2,2018-07-01,0.16,1,2 +26153609,A Historic District Gem in Jackson Heights,196580929,Vivian,Queens,Jackson Heights,40.75228,-73.88699,Private room,42,1,3,2018-07-22,0.25,1,0 +26155827,Greenpoint room,5213686,Charlotte,Brooklyn,Greenpoint,40.73442,-73.95854,Private room,70,5,2,2018-08-09,0.16,1,0 +26156155,Beautiful studio apartment /Grand central location,166366283,Angie,Manhattan,Midtown,40.7511,-73.97103,Entire home/apt,170,7,2,2018-09-30,0.20,1,64 +26157329,Large studio apt w/ private deck. Close to RUMC.,102263916,John,Staten Island,Tompkinsville,40.63111,-74.09001,Entire home/apt,99,1,37,2019-07-07,4.25,2,172 +26157426,Luxurious Deluxe King Room St. Regis Manhattan,26556695,Alyssa,Manhattan,Midtown,40.76031,-73.9739,Entire home/apt,750,1,9,2019-01-01,0.71,6,365 +26158157,Sunny & Quiet 2 bedroom Apt In Greenwich Village,2697373,Anna,Manhattan,Greenwich Village,40.7298,-73.99838,Entire home/apt,289,3,6,2019-04-22,0.52,1,0 +26158857,Luxury Retreat with Juliette Balcony on Stone St.,4196156,Kristina,Manhattan,Financial District,40.70512,-74.01097,Entire home/apt,200,1,1,2019-07-06,1,1,16 +26159891,Dream home + Best Location. Brooklyn Heights.,10995888,Vasilisa,Brooklyn,Brooklyn Heights,40.6901,-73.99247,Entire home/apt,208,5,5,2019-05-20,0.51,1,9 +26160236,Beautiful Exposed Brick Williamsburg 2 bedroom,8871034,Sarah,Brooklyn,Williamsburg,40.71002,-73.96333,Entire home/apt,175,5,21,2019-04-14,1.72,1,0 +26162960,Bridge view,4410830,Mik,Brooklyn,Williamsburg,40.71162,-73.96431,Entire home/apt,225,4,4,2019-06-24,0.38,1,50 +26164046,"New Designer 4 Bedroom, AC-Laundry. Next to Subway",17510243,Yankel,Brooklyn,Crown Heights,40.66741,-73.92974,Entire home/apt,300,2,27,2019-06-30,2.13,1,347 +26164204,Lovely 1BR Apartment in the heart of Park Slope,45062059,Akriti,Brooklyn,Park Slope,40.67259,-73.98324,Entire home/apt,130,2,15,2019-06-16,2.02,1,174 +26164606,Studio Apartment with Gorgeous View!,196660011,Ge,Manhattan,Harlem,40.81863,-73.95771,Entire home/apt,170,1,28,2018-11-28,2.20,1,0 +26165109,Historic Far Rockaway Beach Bungalow,193889243,David S,Queens,Far Rockaway,40.59458,-73.75839,Entire home/apt,275,3,0,,,1,89 +26165195,"Private Bedroom. Near Subway. Bushwick, Brooklyn",396599,Thomas,Brooklyn,Bushwick,40.69966,-73.92295,Private room,40,1,65,2019-07-02,5.27,2,52 +26165533,1B in the heart of the East Village,12501133,Erika,Manhattan,East Village,40.72814,-73.98296,Entire home/apt,131,3,35,2019-06-18,2.82,1,0 +26166442,Big bright room near iconic Red Hook hangouts,10448798,Kit,Brooklyn,Red Hook,40.67498,-74.01214,Private room,75,2,6,2018-10-27,0.50,1,0 +26166987,Family friendly Soho loft apartment,5161217,Stephanie,Manhattan,SoHo,40.72362,-74.0053,Entire home/apt,425,4,2,2018-12-31,0.20,1,1 +26167034,Spacious Private Brooklyn Room w/ Backyard Access,31230100,Elissa,Brooklyn,Crown Heights,40.67304,-73.95615,Private room,100,7,3,2019-01-03,0.29,3,161 +26167182,Historic penthouse apartment on Saint Marks Place,42110861,Chelsea,Manhattan,East Village,40.7299,-73.98824,Entire home/apt,250,2,72,2019-05-27,5.82,1,96 +26167567,Common Single Room #2,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68643,-73.93007,Private room,40,1,148,2019-07-01,11.68,6,174 +26168027,20-25 minutes to downtown NYC/30-40 to midtown,89769986,Alan,Brooklyn,Bedford-Stuyvesant,40.69144,-73.93493,Private room,120,30,0,,,4,0 +26171844,Double Room with AC- 72nd St. Subway- Central Park,196088317,Andreas & Bella,Manhattan,Upper East Side,40.76505,-73.95824,Private room,85,10,54,2019-06-22,4.34,2,2 +26182768,Cozy NYC apartment in Little Italy,21146326,Olga,Manhattan,Chinatown,40.71826,-73.99671,Entire home/apt,156,2,9,2019-05-31,0.74,2,1 +26182774,Private Bedrm & Bath in Luxury Apt,7918430,Stephen Lionel,Manhattan,Harlem,40.80715,-73.95301,Private room,112,2,31,2019-06-06,2.59,2,340 +26183173,Cozy apartment at the south tip of central park,99658452,Tina,Manhattan,Midtown,40.76039,-73.96504,Entire home/apt,139,30,1,2018-08-26,0.09,1,0 +26183582,"Spacious 1-BR by Central Park/Museum Mile, Harlem",52526057,Joshua,Manhattan,East Harlem,40.7898,-73.94853,Entire home/apt,169,5,45,2019-06-30,3.56,1,150 +26185195,Private bedroom in Fort Greene home,20480059,Mallary,Brooklyn,Fort Greene,40.69358,-73.97065,Private room,75,3,4,2018-07-30,0.32,3,0 +26186295,Cozy room **10 Mins away from JFK Airport **,196701166,Dee,Queens,Rosedale,40.65376,-73.74057,Private room,70,7,1,2018-06-24,0.08,1,0 +26186945,Bushwick Paradise!,45251482,Sheri,Brooklyn,Bedford-Stuyvesant,40.69222,-73.93171,Entire home/apt,300,5,5,2018-08-12,0.39,1,280 +26188309,Master bedroom next to Prospect Park,82359141,Peter,Brooklyn,Park Slope,40.66747,-73.97473,Private room,75,5,1,2018-06-30,0.08,1,189 +26188604,Exclusive & Bright Private 3-Floor Townhome,385367,Tom,Brooklyn,Williamsburg,40.71758,-73.95153,Entire home/apt,595,3,5,2019-01-01,0.43,1,13 +26188665,Spacious private room on UWS near Central Park,27474188,Janice,Manhattan,Upper West Side,40.79827,-73.97231,Private room,90,2,6,2018-08-11,0.48,3,0 +26188757,Cute Place in the Heart of Astoria,168244985,Ferheen,Queens,Astoria,40.76879,-73.92666,Entire home/apt,99,3,1,2018-07-09,0.08,1,0 +26189111,"Clean, Comfortable & Cozy Brooklyn Apartment",145238884,Petula,Brooklyn,Crown Heights,40.67387,-73.91306,Entire home/apt,120,2,13,2019-07-01,1.23,1,52 +26190193,Spacious and Bright Williamsburg Loft,13414796,Corrie,Brooklyn,Williamsburg,40.71578,-73.95389,Entire home/apt,185,3,10,2019-04-28,1.12,1,0 +26190559,Lapp House,196838948,Daniel,Queens,Kew Gardens Hills,40.72079,-73.82263,Entire home/apt,160,3,0,,,1,0 +26190785,Minimalistic private room w twin bed in the Bronx,144119993,Charles,Bronx,Belmont,40.85609,-73.88391,Private room,30,1,9,2018-08-02,0.71,2,0 +26190809,UWS room perfect for NYC weekend,27474188,Janice,Manhattan,Upper West Side,40.7975,-73.97099,Private room,74,2,2,2018-07-30,0.16,3,0 +26191578,Bright 2 bedroom UWS APT perfect for family trip,27474188,Janice,Manhattan,Upper West Side,40.79838,-73.97076,Private room,240,5,0,,,3,0 +26191770,Modern New York City Penthouse w/ Incredible Views,149328348,Caitie,Manhattan,Financial District,40.70563,-74.01106,Entire home/apt,131,30,2,2019-05-31,0.23,1,0 +26192545,"Williamsburg Bedroom with TV, AC, WiFi & Library",19665329,Patrick,Brooklyn,Williamsburg,40.71045,-73.9441,Private room,40,5,3,2018-11-02,0.27,1,0 +26193643,"Cute, Cozy, East Village 1BR Apartment!",70011812,Elise,Manhattan,East Village,40.72564,-73.98616,Entire home/apt,125,2,41,2019-07-01,3.32,2,48 +26193678,Manhattan Apartment - Near North Central Park,108286255,Gabrielle,Manhattan,Harlem,40.81264,-73.94231,Private room,60,1,3,2019-01-01,0.46,1,0 +26194019,Cozy 1-Bedroom Apartment 2 Blocks from the Subway,66196101,Francesco,Brooklyn,Bay Ridge,40.62991,-74.02458,Entire home/apt,95,2,6,2018-08-04,0.48,1,0 +26194075,Zen Den in X's Square!,2258341,Beto,Manhattan,Hell's Kitchen,40.76113,-73.99185,Private room,155,10,9,2019-06-15,0.80,1,103 +26194357,Leli’s Modern Luxe Apartment,59982224,Leli,Brooklyn,East New York,40.67503,-73.87357,Private room,120,2,22,2019-04-28,1.77,4,40 +26194606,Brooklyn Oasis in Beautiful Bay Ridge,64825520,Anthony,Brooklyn,Fort Hamilton,40.61798,-74.03619,Entire home/apt,200,2,8,2019-06-11,0.63,1,177 +26194771,Spacious 3 bedroom Duplex with garden,2155917,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68716,-73.94601,Entire home/apt,250,30,0,,,3,196 +26196029,PRIME Williamsburg Big Quiet room Private Balcony,2773082,Freddie,Brooklyn,Williamsburg,40.71595,-73.96001,Private room,95,3,7,2019-06-30,1.11,1,6 +26196660,Brighton Beach the room,196872053,Marina,Brooklyn,Brighton Beach,40.57573,-73.96051,Private room,38,3,16,2019-06-17,1.38,2,175 +26198109,Modern 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74419,-73.97186,Entire home/apt,187,29,1,2019-06-01,0.79,96,335 +26198112,Designer apartment on Riverside Dr-Upper West Side,196900738,Kimberley,Manhattan,Upper West Side,40.79801,-73.97403,Entire home/apt,400,1,0,,,1,0 +26198481,Far Rockaway Home near the Beach,196903663,Mickey,Queens,Arverne,40.59633,-73.80083,Entire home/apt,50,2,58,2019-07-07,4.59,1,349 +26199962,BELLA CASA large Studio - 5 mins to Times Square!!,16480700,Eddie&Vlad,Manhattan,Upper East Side,40.76451,-73.96744,Entire home/apt,249,1,37,2019-06-07,3.04,7,352 +26200203,Bright 2BR Apartment in Woodside,5726293,Suah,Queens,Woodside,40.74382,-73.90879,Private room,60,1,19,2019-06-23,1.52,2,34 +26200249,ALIA’S Place -JFK- 7 mins- walk to subway & buses,102410496,Alisha,Queens,Richmond Hill,40.6964,-73.82837,Entire home/apt,215,2,2,2018-08-05,0.16,2,360 +26200914,Full Apartment in Forest Hills with Easy Parking,97262966,John,Queens,Forest Hills,40.71325,-73.85415,Entire home/apt,89,3,5,2018-12-30,0.45,2,1 +26201442,"Private, Comfy Room, 2 blocks from Central Park",63600861,Birim,Manhattan,Harlem,40.80036,-73.95433,Private room,90,3,50,2019-06-15,4.07,1,7 +26201913,"Beautiful, spacious 2 bed, Crown Heights apartment",1260391,Thomas,Brooklyn,Brownsville,40.66837,-73.92454,Entire home/apt,165,4,9,2019-06-29,1.17,1,21 +26202688,Suite Monroe,183603765,Monique And Colin,Brooklyn,Bedford-Stuyvesant,40.68496,-73.94964,Entire home/apt,108,2,26,2019-06-23,2.26,1,315 +26203807,"SPACIOUS ARTSY room w/ rooftop, 25 min>Manhattan",104124704,Alejandro,Brooklyn,Crown Heights,40.66733,-73.9535,Private room,55,1,11,2019-05-12,0.92,1,0 +26205265,HUGE APT on border of EAST VILLAGE & GRAMERCY!,196961556,Mike,Manhattan,Gramercy,40.73338,-73.98315,Entire home/apt,499,4,41,2019-06-30,3.31,1,10 +26210593,Bright 4-people room close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.71997,-73.94021,Shared room,35,30,0,,,10,343 +26211176,Shared room in East Williamsburg near the park,178543960,Sergii,Brooklyn,Greenpoint,40.72157,-73.94002,Shared room,35,30,1,2018-08-10,0.09,10,364 +26219420,"Welcome To Safe Space-warm, clean and friendly!",39805148,Chris,Queens,Jamaica,40.68727,-73.77858,Private room,75,1,5,2019-06-26,0.47,2,281 +26220343,Stylish & Cozy Private Studio Apartment (UES),2747221,Judah,Manhattan,Upper East Side,40.76321,-73.9583,Entire home/apt,99,3,10,2019-04-21,0.86,1,7 +26221423,Cozy 2BR in Trendy LIC! 1 Stop From Manhattan!!!,62701284,Steve,Queens,Long Island City,40.7452,-73.9535,Entire home/apt,155,2,43,2019-07-03,3.60,1,239 +26223279,和缘浪漫民宿,153018041,Feng,Queens,Flushing,40.75651,-73.80455,Private room,50,1,17,2019-02-23,1.34,2,0 +26224149,Brooklyn home with the view,191901037,Marsha,Brooklyn,Sheepshead Bay,40.58338,-73.93961,Private room,75,10,2,2019-05-08,0.20,2,146 +26224487,3 bedroom 1200sq ft apt with exposed brick & deck,55978113,Alexis,Staten Island,Stapleton,40.63701,-74.07624,Private room,50,1,21,2019-07-07,1.81,2,363 +26224538,Modern light and bright townhouse in Brooklyn.,53621,Monica,Brooklyn,Bedford-Stuyvesant,40.69231,-73.93781,Entire home/apt,220,2,23,2019-07-02,2.19,2,270 +26225021,Cozy room/creative space in modern bed stuy home.,156255637,Titi,Brooklyn,Bedford-Stuyvesant,40.68911,-73.94727,Private room,90,1,32,2019-06-29,3.06,1,36 +26227629,Spacious and Sunny Studio,26596078,Natalya,Brooklyn,Bay Ridge,40.62804,-74.02603,Entire home/apt,75,7,11,2019-05-19,0.91,1,3 +26228457,Brooklyn Brownstone (blue bedroom - single bed),80292073,Julie,Brooklyn,South Slope,40.66323,-73.98138,Private room,60,5,7,2019-06-02,0.59,2,56 +26229979,New York Home with a back yard in Central Harlem.,150482926,Yann,Manhattan,Harlem,40.80898,-73.94591,Entire home/apt,295,5,3,2018-08-21,0.27,1,0 +26232008,Large Private Room btwn Central/Riverside Parks,28071093,Kathleen,Manhattan,Upper West Side,40.79973,-73.9656,Private room,60,2,5,2018-09-25,0.45,1,0 +26232656,"Bright, spacious 1BD apt near 30th Ave in Astoria",46592613,Julie,Queens,Astoria,40.76945,-73.92485,Entire home/apt,100,5,5,2019-06-29,0.57,1,0 +26235821,Wonderful Location on East 68th st,10371008,Anna,Manhattan,Upper East Side,40.76436,-73.95672,Shared room,75,4,10,2019-06-14,1.15,2,329 +26235873,Voted #1 Airbnb In NYC,197169969,Maria,Queens,Jamaica,40.68939,-73.79886,Entire home/apt,10,2,22,2019-07-06,1.76,1,332 +26236138,Spacious private bedroom in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85392,-73.93139,Private room,58,1,20,2019-06-20,2.01,5,315 +26238688,Super Cozy Studio Apartment,6141162,Myrto,Queens,Woodside,40.742,-73.89505,Entire home/apt,60,14,3,2019-01-07,0.30,1,4 +26240434,Amazing apartment,38969811,Lea,Manhattan,Upper East Side,40.78135,-73.95194,Private room,100,6,0,,,1,0 +26247578,FURNISHED 2BR 1BA BY CENTRAL PARK!!,22129776,Ali,Manhattan,Hell's Kitchen,40.76502,-73.98839,Entire home/apt,369,1,2,2019-04-10,0.22,3,365 +26249499,Large private bedroom near Times sq 23B4,190921808,John,Manhattan,Hell's Kitchen,40.75418,-73.99644,Private room,150,7,12,2019-06-01,0.95,47,354 +26249544,Comfy Room with Private Insuite Bathroom,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69455,-73.9343,Private room,63,3,27,2019-07-06,2.26,7,225 +26250185,LYRIC - Hotel Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70722,-74.00873,Entire home/apt,219,1,36,2019-07-07,2.83,8,321 +26250476,Quiet Homestead in the city,102228163,Cesar,Brooklyn,Carroll Gardens,40.67683,-74.00056,Entire home/apt,90,7,3,2018-10-30,0.25,3,0 +26250574,Perfect Pied-à-Terre,9962257,Erika & Brett,Brooklyn,Greenpoint,40.7287,-73.95607,Entire home/apt,171,2,19,2019-06-16,1.51,1,81 +26250832,Sun lit Room in Bushwick,48260592,Lizzy,Brooklyn,Bushwick,40.69922,-73.93762,Private room,40,4,0,,,1,0 +26251173,Large bedroom close to M & L trains with backyard,71742050,Jameel,Brooklyn,Bushwick,40.70057,-73.91414,Private room,35,3,0,,,1,3 +26251284,"LYRIC - 1 Bedroom Suite, 1 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70747,-74.00663,Entire home/apt,309,1,15,2019-03-23,1.18,8,143 +26251408,Sunny Bedstuy Brooklyn Apartment,17673366,Shayna,Brooklyn,Bedford-Stuyvesant,40.69397,-73.93124,Private room,60,1,1,2018-09-27,0.11,1,0 +26251587,Extremely large 1 bed in West Chelsea- Highline,28171999,Alex,Manhattan,Chelsea,40.74561,-74.00205,Entire home/apt,250,3,0,,,1,10 +26251659,"LYRIC - 2 Bedroom Suite, 1 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.7057,-74.00819,Entire home/apt,650,1,7,2019-05-19,0.76,8,315 +26252069,Beautiful cozy apartment in Midtown West,197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.9871,Shared room,80,1,60,2019-06-19,4.76,7,225 +26252097,Comfy Room for a NYC Stay,157295347,Ana,Queens,Woodside,40.74474,-73.90531,Private room,50,1,10,2019-05-27,1.09,3,328 +26252841,Private small accomodation specially for you!,140599227,Fanny,Queens,Forest Hills,40.73156,-73.8523,Private room,30,1,1,2018-10-08,0.11,2,363 +26253008,Brooklyn Studio Apartment in 2 family Townhouse,506007,Elodie,Brooklyn,Kensington,40.64692,-73.97706,Entire home/apt,90,3,6,2018-11-20,0.50,1,30 +26253804,Hell's Kitchen Living Room Retreat,145072632,Andrea,Manhattan,Hell's Kitchen,40.75973,-73.98815,Shared room,65,2,13,2019-06-23,1.34,2,5 +26253826,Historical Central Park stay,187872824,Erik,Manhattan,Upper West Side,40.7989,-73.96042,Private room,150,1,0,,,2,365 +26254872,Sunny and cozy 1BR in Astoria,7132948,Cindy,Queens,Astoria,40.76433,-73.92192,Entire home/apt,110,2,2,2018-07-30,0.16,1,6 +26254953,Gorgeous & spacious room in Bed-Stuy,2989773,Megan,Brooklyn,Bedford-Stuyvesant,40.68697,-73.95141,Private room,95,3,2,2019-05-29,0.17,1,38 +26255072,15 min to NYC from a comfy and clean house.,157295347,Ana,Queens,Woodside,40.74445,-73.90581,Private room,32,2,16,2018-12-23,1.28,3,365 +26255080,♥♥♥ Entire House with Backyard & Superfast WiFi♥♥♥,191338162,William,Bronx,Allerton,40.8616,-73.86227,Entire home/apt,142,2,31,2019-07-01,2.50,5,312 +26255392,Large one bedroom on the Upper East Side.,64097192,Lisa,Manhattan,Upper East Side,40.77055,-73.95509,Entire home/apt,150,2,28,2019-07-01,2.25,1,0 +26255895,Furnished room w/ AC in Crown Heights/Clinton Hill,9478555,Alex,Brooklyn,Crown Heights,40.67911,-73.96012,Private room,35,2,2,2018-07-05,0.16,1,0 +26256019,Private Room in the Heart of New York,192750134,Oni,Queens,Long Island City,40.75233,-73.9394,Private room,55,1,23,2019-06-30,1.85,1,263 +26256557,Studio-like July sublet,197355864,J.T.,Brooklyn,Park Slope,40.6735,-73.97606,Private room,50,31,0,,,1,340 +26256921,Cozy Bushwick Apartment in Great Neighborhood,124693842,Lauren,Brooklyn,Bushwick,40.69788,-73.922,Entire home/apt,140,5,3,2018-08-19,0.25,1,0 +26257613,"Cozy studio, Best Location /Live like a New Yorker",42993277,Alberto,Manhattan,Midtown,40.75016,-73.96925,Entire home/apt,175,3,5,2018-12-14,0.51,1,230 +26257731,Private room in a large duplex,171092619,Clement,Brooklyn,Williamsburg,40.7079,-73.94896,Private room,59,13,0,,,1,0 +26257823,Sunny Lofted Bedroom in Spacious Shared Apt.,186110692,John,Brooklyn,Bushwick,40.69014,-73.91908,Private room,39,1,20,2019-06-25,1.63,1,14 +26257903,Eco Chic King Size Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68581,-73.99586,Private room,80,7,57,2019-06-16,4.49,2,285 +26258306,Private Manhattan 1BR w/ a view & light,22090713,Abigail,Manhattan,Washington Heights,40.85068,-73.9372,Entire home/apt,65,2,4,2019-03-31,0.98,1,0 +26258351,Escape NYC in the Borough of Parks!,6402171,Taryn,Staten Island,Rossville,40.5479,-74.21017,Entire home/apt,75,3,21,2019-07-01,1.69,1,59 +26259541,Cozy sunny loft in East Williamsburg,5314938,Olya,Brooklyn,Williamsburg,40.70937,-73.94113,Private room,94,2,18,2019-06-23,1.48,1,0 +26260516,Bright room between SoHo/NoHo/LES,191276498,Yosh,Manhattan,Little Italy,40.71778,-73.99801,Private room,91,3,35,2019-04-23,2.84,1,0 +26268189,!Captivating Private Room,154258141,Elsie,Brooklyn,Bushwick,40.68885,-73.91487,Private room,60,2,8,2019-06-15,0.74,10,356 +26270554,Spacious & primely-located Brooklyn apartment,28186801,Kate,Brooklyn,Williamsburg,40.71882,-73.94943,Entire home/apt,260,2,1,2018-06-28,0.08,1,0 +26270906,Perfect spot near Kennedy airport,119156699,Marj,Queens,Briarwood,40.71309,-73.8155,Shared room,73,1,2,2019-05-20,0.21,1,90 +26271462,3+ Bedroom House - Perfect For A Family Visit!,197487133,Susye,Brooklyn,Windsor Terrace,40.65053,-73.97438,Entire home/apt,225,7,1,2018-10-10,0.11,1,168 +26271688,Affordable Sunnyside Room. Comfortable Quiet Safe.,137358866,Kazuya,Queens,Sunnyside,40.735,-73.92038,Private room,34,30,2,2019-03-24,0.18,103,251 +26272163,Gorgeous Bedroom steps from local stores!,197354631,Nina,Brooklyn,Williamsburg,40.71471,-73.94173,Private room,67,30,3,2019-05-31,0.28,3,19 +26272421,Upper East Side/ Midtown Studio,197294267,Corey,Manhattan,Upper East Side,40.76071,-73.96062,Entire home/apt,170,3,2,2019-01-02,0.17,1,0 +26272989,Lovely Prospect Heights duplex with private patio,19562,Putri,Brooklyn,Crown Heights,40.68054,-73.96278,Entire home/apt,190,2,1,2018-08-10,0.09,1,0 +26273200,Big sunny private room (cat as a bonus ;-)),118763899,Elena,Manhattan,Harlem,40.81889,-73.94269,Private room,40,21,0,,,1,67 +26274345,Private Bedroom in Hudson Heights Manhattan,161617875,Tyge,Manhattan,Washington Heights,40.85221,-73.93916,Private room,97,2,0,,,2,0 +26274490,Cozy Stay!!,197516314,Genny,Staten Island,Port Richmond,40.63428,-74.13339,Private room,50,1,16,2019-06-23,1.53,3,365 +26274952,Entire Apartment in House! 20mins to FREE ferry!,145536848,Petya,Staten Island,Concord,40.60307,-74.08441,Entire home/apt,100,1,25,2019-07-01,5.64,1,72 +26275024,“Comfort Inn” Queens. NON-SMOKERS ONLY.,22737802,Joy,Queens,Rego Park,40.73143,-73.85674,Shared room,65,3,8,2019-06-30,0.71,1,161 +26275643,Modern Elegance on the Upper East Side,143719035,Ash,Manhattan,Upper East Side,40.76776,-73.95214,Entire home/apt,220,3,3,2019-04-09,0.26,1,0 +26277801,Upper west side 2bedroom apartment.,187960424,Anqi,Manhattan,Upper West Side,40.78968,-73.97169,Entire home/apt,250,3,1,2018-07-28,0.09,1,0 +26278372,"Private apartment with a view, stunning location.",17084566,Alfredo,Brooklyn,Flatbush,40.6303,-73.96179,Entire home/apt,120,60,13,2019-06-12,1.11,1,0 +26278431,HUGE Private Bedroom in Midtown Manhattan!,42624482,Param,Manhattan,Midtown,40.74897,-73.98642,Private room,120,3,2,2019-06-05,0.32,1,0 +26279108,Spacious sun-drenched room in Manhattan,39872420,Elizabeth,Manhattan,Inwood,40.86347,-73.92287,Private room,50,1,1,2018-07-01,0.08,1,0 +26279999,Private room in the heart of NYC. Room 2 of 3,22463377,Allison,Manhattan,Murray Hill,40.74953,-73.9801,Private room,120,1,16,2018-12-12,1.29,3,9 +26280662,"Huge room in beautiful park slope, by barclay ctr",30613046,Debbie,Brooklyn,Park Slope,40.68176,-73.97891,Private room,66,3,2,2019-05-19,1.03,2,87 +26280689,Artistic Room in walking distance to Central Park,197579052,Vlad,Manhattan,East Harlem,40.79778,-73.93921,Private room,80,1,60,2019-07-07,4.76,2,0 +26280881,Bedroom in 3br exposed brick apt w deck & garden,55978113,Alexis,Staten Island,Stapleton,40.63705,-74.07722,Private room,80,1,4,2018-10-25,0.34,2,29 +26281121,Quiet bedroom in walking distance to Central Park,197579052,Vlad,Manhattan,East Harlem,40.79657,-73.93913,Private room,80,1,49,2019-05-20,3.89,2,110 +26281187,Bedroom with a view located steps from the train,197584424,Kyle,Brooklyn,Bushwick,40.69821,-73.91559,Private room,45,5,1,2018-07-07,0.08,1,0 +26290174,Queens home steps from subway!!,131392140,Vik,Queens,Long Island City,40.75694,-73.9308,Entire home/apt,129,2,21,2019-06-16,1.73,5,90 +26291721,Gem in NoMad - entire apartment,197675041,Alexandra,Manhattan,Midtown,40.7424,-73.9837,Entire home/apt,220,3,0,,,1,28 +26293088,Sunny & Rustic one-bedroom in the West Village!,43297299,Nick,Manhattan,West Village,40.73886,-74.00413,Entire home/apt,200,3,6,2019-06-03,0.94,1,0 +26294354,Organic Bohemian Pad in Brooklyn,22899202,Sadie,Brooklyn,Bedford-Stuyvesant,40.68808,-73.92264,Private room,55,1,31,2019-07-04,2.82,2,225 +26294658,Entire 2nd Floor with Private Bath,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.68546,-73.94574,Private room,40,14,3,2019-05-28,0.26,3,256 +26295421,Cozy place II,197516314,Genny,Staten Island,Port Richmond,40.63408,-74.13224,Private room,55,1,40,2019-06-15,3.21,3,363 +26295450,Sunny & ideally located room in luxury bldg @ FiDi,96712147,Eva,Manhattan,Financial District,40.70494,-74.00806,Private room,150,3,3,2018-10-15,0.24,2,0 +26297402,"Cozy, sunny oasis in the heart of Crown Heights",57456594,Lisa,Brooklyn,Crown Heights,40.67713,-73.95219,Private room,75,2,18,2019-06-05,1.44,1,242 +26297631,Charming spacious garden level apt,1409262,Sarah,Brooklyn,Flatbush,40.64245,-73.95216,Entire home/apt,75,2,42,2019-07-05,3.73,6,87 +26298570,Private Room in brand new building and posh neighborhood,158338077,Muhammad,Brooklyn,Kensington,40.63743,-73.97229,Private room,67,1,10,2019-04-28,0.83,2,365 +26300797,"Luxury 4BR Home, Spacious & Central to Trains",197740847,Nicole,Brooklyn,Crown Heights,40.67989,-73.96212,Entire home/apt,250,3,30,2019-06-16,2.56,1,114 +26301985,Entire 2 Bedroom Elegant Suite w Modern Amenities,197736479,Akem & Terry,Brooklyn,Cypress Hills,40.67877,-73.89228,Entire home/apt,125,2,22,2019-07-06,1.88,1,282 +26303788,Cozy sanctuary/Big master bedroom/NYC/The Heights,39305771,Jess,Manhattan,Washington Heights,40.84911,-73.93097,Private room,59,2,5,2019-04-08,0.44,1,216 +26304188,luxurious & light-filled apartment in williamsburg,32543699,Lucia,Brooklyn,Williamsburg,40.71563,-73.95667,Entire home/apt,165,4,3,2018-08-07,0.24,2,0 +26304486,Bright & Sunny Brooklyn 1BDR with Amazing Views,20126746,Alexandra,Brooklyn,Greenpoint,40.72724,-73.95401,Entire home/apt,195,3,11,2019-06-09,0.95,1,0 +26304847,Sound Bath Sanctuary I Manhattan,7217937,Joule,Manhattan,Inwood,40.86764,-73.9259,Private room,50,2,17,2019-06-18,1.54,2,243 +26304871,New York City (Downtown) accessibly sleeps 6,197794017,Zoraida,Bronx,Bronxdale,40.85456,-73.86921,Entire home/apt,79,2,36,2019-06-24,3.33,1,10 +26306276,art-filled williamsburg room w/ ensuite bathroom,32543699,Lucia,Brooklyn,Williamsburg,40.71339,-73.95566,Private room,98,2,2,2018-09-10,0.17,2,0 +26310218,!!Cozy 3-person shared room near L train!!,178543960,Sergii,Brooklyn,Greenpoint,40.72166,-73.9399,Shared room,36,30,0,,,10,311 +26311285,Amazing & Quite shared room near L train,178543960,Sergii,Brooklyn,Greenpoint,40.72177,-73.94166,Shared room,37,30,3,2019-02-04,0.26,10,312 +26313558,Newly Renovated 2B/2B Skyline & River views BBQ,24013611,Juan,Manhattan,Upper West Side,40.77511,-73.99005,Entire home/apt,295,2,26,2019-06-09,2.17,1,2 +26317923,Room in Spacious Modern Apartment,195965905,Gabriella,Brooklyn,Bushwick,40.70009,-73.94015,Private room,75,6,2,2018-10-10,0.22,1,36 +26318555,Beautiful 1BDR UWS Apartment Close to Central Park,3274004,Sara,Manhattan,Upper West Side,40.78343,-73.9823,Entire home/apt,265,2,5,2019-05-22,0.49,1,5 +26319688,Beautiful Private Room in Brooklyn,69977115,Jacob,Brooklyn,Bensonhurst,40.61559,-73.99027,Private room,79,2,0,,,4,89 +26320074,3BR/2Bath Duplex Parkslope (15 min to Manhattan),118619861,Laurence,Brooklyn,Prospect Heights,40.67953,-73.97303,Entire home/apt,449,3,33,2019-06-30,2.82,1,329 +26320521,Beautiful Apartment across from Carnegie Hall,159498011,David,Manhattan,Midtown,40.7657,-73.98075,Entire home/apt,400,2,5,2018-12-30,0.43,1,0 +26322941,"Cobble Hill Retreat, 1-Bedroom Garden Apartment",27600568,Anne,Brooklyn,Cobble Hill,40.68537,-73.99861,Entire home/apt,195,2,55,2019-07-03,5.32,1,30 +26323287,C C's Honeyroom 30 minutes to Manhattan.,197957799,Christiana,Brooklyn,East Flatbush,40.65035,-73.94895,Private room,59,2,22,2019-07-07,3.59,1,107 +26324904,Best place at queens,167568754,Konrad,Queens,Middle Village,40.71064,-73.87463,Entire home/apt,100,1,4,2018-09-09,0.34,1,0 +26325637,Comfortable one bedroom apartment,47718147,Shalisa,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94327,Entire home/apt,100,1,30,2019-06-30,2.50,1,176 +26326115,East Harlem room,128731102,Veronica,Manhattan,East Harlem,40.79486,-73.94038,Private room,80,5,15,2019-06-27,1.23,1,0 +26326777,Comfy Private LivingRoom steps from Times Square!,162138028,Rex,Manhattan,Hell's Kitchen,40.75916,-73.99148,Shared room,96,10,1,2018-10-08,0.11,1,179 +26327565,Queens home in quiet neighborhood,155152907,Maria,Queens,St. Albans,40.70479,-73.76357,Private room,45,2,31,2019-06-30,2.80,2,266 +26327970,Island with City Benefits,1290628,Noemi,Bronx,City Island,40.84879,-73.78987,Entire home/apt,125,2,23,2019-07-07,1.89,1,155 +26329644,Spacious Private Bedroom in Financial District,25107874,Emil,Manhattan,Financial District,40.70989,-74.00813,Private room,85,3,4,2019-06-21,0.33,1,72 +26330526,"Sugar Hill House w/ 2 bdrms, den rm & 2 bathrms",198018391,Mich,Manhattan,Harlem,40.82235,-73.94846,Entire home/apt,250,2,27,2019-06-21,2.26,2,180 +26331103,room b,32060911,Elvis,Staten Island,West Brighton,40.63402,-74.11375,Private room,40,33,1,2019-07-04,1,2,337 +26331645,Bedstuy Comfy Private Room,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.6858,-73.94654,Private room,43,30,0,,,3,312 +26332143,"Bayridge Clean, Beautiful, Spacious Room",198030672,Rita,Brooklyn,Bay Ridge,40.63562,-74.0318,Private room,55,1,4,2018-12-30,0.35,1,156 +26332425,Luxurious Brownstone near Pratt with Breakfast!,198033559,Errol,Brooklyn,Clinton Hill,40.6902,-73.9669,Private room,150,2,5,2019-06-28,1.40,1,174 +26332468,"3BR renovated private apartment, prime Park Slope!",4694251,Anh & David,Brooklyn,Park Slope,40.67469,-73.98368,Entire home/apt,229,2,55,2019-07-05,4.41,1,215 +26333121,Cute Room. Manhattan. 20 min train to Time Square!,197334240,Angelica,Manhattan,Harlem,40.8131,-73.94459,Private room,67,1,73,2019-06-30,5.82,2,193 +26334022,Master bedroom. 20 min. train to Time Square!,197334240,Angelica,Manhattan,Harlem,40.81493,-73.94403,Private room,69,1,67,2019-06-15,5.39,2,170 +26334347,"1BR in Newly Renovated Apartment - Rm A, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70456,-73.9314,Private room,51,1,12,2019-06-17,1.14,7,352 +26334886,Park Slope Secret Garden,65884218,Patty,Brooklyn,Sunset Park,40.66264,-73.99174,Entire home/apt,275,4,5,2019-01-01,0.46,1,12 +26335577,Spacious Williamsburg Nook w/ Balcony,11080981,Trisha,Brooklyn,Williamsburg,40.71682,-73.95107,Private room,200,1,0,,,1,0 +26335893,Natural Light - Airy and Large Apartment,36644104,Jack,Manhattan,Midtown,40.75786,-73.96679,Entire home/apt,200,7,8,2018-12-04,0.76,1,0 +26336898,NYC cozy room in Upper East Side,16485294,Tom,Manhattan,Upper East Side,40.78351,-73.94709,Private room,75,1,6,2019-06-23,0.66,1,0 +26337274,Flatbush Fabulous,6032380,Christopher,Brooklyn,East Flatbush,40.63314,-73.94537,Entire home/apt,80,2,22,2019-03-24,1.77,1,0 +26337439,3 Bed / 1.5 Bath Huge Midtown Apt!,198082137,Alex,Manhattan,Midtown,40.74431,-73.98196,Entire home/apt,350,5,36,2019-06-09,2.87,1,124 +26337617,Express to NYC - beautiful 1 bedroom apartment,140039953,Bernarda,Brooklyn,Bergen Beach,40.62402,-73.91681,Entire home/apt,85,3,31,2019-07-08,2.95,1,122 +26338609,Room in Modern Bushwick Townhouse,23272375,Amber,Brooklyn,Bushwick,40.69825,-73.93725,Private room,46,7,3,2018-07-15,0.25,1,0 +26338854,"The Grange Place- private apartmt +w/1 bedrm/1bath",198018391,Mich,Manhattan,Harlem,40.82154,-73.94925,Entire home/apt,135,2,23,2019-06-13,1.92,2,328 +26338897,Contemporary Brooklyn living 20 min from Manhattan,2594243,Rachael,Brooklyn,Fort Greene,40.68664,-73.97683,Entire home/apt,200,5,2,2018-10-28,0.19,2,0 +26341895,Tempting Loft in Lovely Neighborhood,20884180,Kim,Brooklyn,Bedford-Stuyvesant,40.69474,-73.95498,Entire home/apt,125,10,2,2018-11-24,0.18,1,24 +26341916,A Gem In Downtown Flushing - Elegance and Class #1,89766221,Alan,Queens,Flushing,40.75548,-73.83042,Private room,190,2,0,,,2,362 +26344667,Private room in Apartment,129168532,Likowsky,Manhattan,Harlem,40.82081,-73.95474,Private room,58,1,5,2018-08-19,0.40,1,0 +26350983,"Gorgeous One-Bed in Williamsburg, BK",39456887,Janie,Brooklyn,Williamsburg,40.71239,-73.96775,Entire home/apt,150,10,1,2018-08-08,0.09,1,0 +26351621,Modern Home on the Park,4292600,Owen,Brooklyn,Fort Greene,40.68803,-73.9733,Entire home/apt,120,3,9,2019-06-14,0.75,1,0 +26351877,DaDukes Milky way,139879568,Alberto,Queens,Long Island City,40.76648,-73.94098,Private room,90,1,30,2019-06-10,2.58,6,365 +26352096,温馨方便COZY ROOM.1 min to subway& close to everything,115424426,Taylor,Queens,Elmhurst,40.73885,-73.87676,Private room,74,1,11,2018-09-20,0.93,1,0 +26352984,Quiet place w/ private bathroom,27355064,Marine,Brooklyn,Crown Heights,40.67508,-73.91788,Private room,99,1,19,2019-06-24,1.61,1,153 +26353304,"SPACIOUS, HIGH CELING, MODERN ROOM IN BROOKLYN",81127692,Rauf,Brooklyn,Flatbush,40.64613,-73.95354,Private room,53,2,45,2019-07-05,3.69,2,294 +26355142,Private bedroom w/pvt entrance near Times sq. 42D,190921808,John,Manhattan,Hell's Kitchen,40.75505,-73.99531,Private room,120,7,6,2019-06-14,0.50,47,332 +26355170,Charming Brooklyn oasis,198193838,Roger,Brooklyn,Greenpoint,40.72478,-73.9383,Entire home/apt,250,2,6,2019-05-19,0.53,1,49 +26355272,Place for solo traveler (girls only) in LIC,198195140,Lucy,Queens,Long Island City,40.74753,-73.93918,Shared room,30,1,15,2019-07-01,4.74,2,5 +26355413,Stunning Apartment in Heart of Williamsburg,46370836,Joey,Brooklyn,Williamsburg,40.7197,-73.95745,Entire home/apt,209,3,3,2018-10-03,0.24,1,0 +26356082,Entire Greenpoint / North Williamsburg Gem,1828429,Lola,Brooklyn,Greenpoint,40.72756,-73.95628,Entire home/apt,140,3,1,2019-05-25,0.67,1,36 +26356921,Cozy private room in the center of NYC 23B2,190921808,John,Manhattan,Hell's Kitchen,40.7551,-73.99556,Private room,99,7,8,2019-04-26,0.73,47,362 +26357035,Bright room near Prospect Park!,45094825,Joseph,Brooklyn,Prospect-Lefferts Gardens,40.66242,-73.95607,Private room,50,1,0,,,1,0 +26357145,Nice one bedroom near United Nations,120762452,Stanley,Manhattan,Murray Hill,40.7503,-73.97605,Entire home/apt,200,30,0,,,50,365 +26357357,Private cozy Room near Central Park & Museum Mile,44927221,Tarry,Manhattan,Upper East Side,40.7861,-73.95434,Private room,80,1,57,2019-05-04,4.63,1,0 +26357377,Spacious Midtown one bedroom,120762452,Stanley,Manhattan,Murray Hill,40.74891,-73.97719,Entire home/apt,200,30,1,2019-05-23,0.64,50,352 +26357960,Soho Loft,117086989,Robert,Manhattan,SoHo,40.72292,-74.00456,Entire home/apt,300,1,0,,,1,0 +26358309,Beautiful & Quiet Room in Astoria Ditmars New York,198084744,Sabine,Queens,Ditmars Steinway,40.77685,-73.90824,Private room,50,2,58,2019-05-29,4.69,1,13 +26358423,Cozy Private Room near Central Park,19961365,Taina,Manhattan,East Harlem,40.78875,-73.9476,Private room,85,1,39,2019-06-23,3.28,1,78 +26358530,Bushwick Den,9630989,Ernesto,Brooklyn,Bushwick,40.69934,-73.92265,Private room,50,3,20,2019-01-01,1.63,2,0 +26358694,Charming Brooklyn 1 bedroom,10763733,Daphna,Brooklyn,Crown Heights,40.67499,-73.95729,Entire home/apt,84,2,16,2018-11-19,1.33,1,0 +26359068,"Luxury Private Room +15 mins From Manhattan",190854592,Brock,Queens,Ditmars Steinway,40.77188,-73.91157,Private room,79,6,6,2019-04-26,0.65,1,365 +26359622,"Studio in East Village Manhattan, NYC",3282282,Phil,Manhattan,Lower East Side,40.72119,-73.98339,Entire home/apt,79,2,32,2019-06-26,2.67,1,3 +26360690,Peaceful Parkside Place,21184527,Jackson,Brooklyn,Prospect-Lefferts Gardens,40.65529,-73.95971,Entire home/apt,130,1,16,2019-06-17,1.32,1,0 +26361090,Charming Apartment near Central Park with Balcony,844253,Ariane,Manhattan,Upper West Side,40.7786,-73.97578,Entire home/apt,350,7,1,2018-08-20,0.09,1,292 +26361306,Pent House Studio Minutes From Manhattan,123648417,Sean,Brooklyn,Flatbush,40.65401,-73.96212,Entire home/apt,125,1,22,2019-03-24,1.80,1,93 +26361403,HIDDEN GEM near JFK w. PRIVATE ENTRANCE x PARKING.,174197082,Deborah,Queens,Rosedale,40.65695,-73.73617,Entire home/apt,80,1,106,2019-06-29,8.69,2,300 +26361594,"Central Harlem, New York City",8686752,Lamar,Manhattan,Harlem,40.81857,-73.9402,Entire home/apt,100,2,18,2019-06-01,1.45,1,0 +26362867,Large Bedroom w/ PRIVATE BATHROOM,18197365,Jake,Brooklyn,Williamsburg,40.71111,-73.94736,Private room,70,3,11,2019-06-01,0.88,1,9 +26362898,subletting for one week while traveling,37072476,Natia,Brooklyn,Bushwick,40.69952,-73.92623,Private room,60,7,0,,,1,0 +26365747,SuperHost 1 block to Times Square NYC City Center,109040481,Julian,Manhattan,Hell's Kitchen,40.75825,-73.98982,Private room,125,1,54,2019-06-19,4.34,1,341 +26366437,LIVING ROOM COUCH amazing Williamsburg location,91498269,Jonny,Brooklyn,Williamsburg,40.7155,-73.95724,Shared room,100,1,31,2019-06-30,2.81,1,82 +26366913,Luxury Bright Soho Loft,4806931,Courtney,Manhattan,SoHo,40.72182,-74.00255,Entire home/apt,450,2,1,2019-06-04,0.86,1,360 +26370425,Amazing 1b1b in Luxury Building near Empire State,52529356,Zhaoyun,Manhattan,Midtown,40.74843,-73.98259,Entire home/apt,150,2,2,2018-08-11,0.17,1,0 +26371238,Cozy room in townhouse on tree-lined street,74145986,Jason,Brooklyn,Brooklyn Heights,40.69177,-73.99388,Private room,89,1,44,2019-07-06,5.28,1,73 +26374486,East Harlem Entire 1BR apt,198340695,Miho,Manhattan,East Harlem,40.78978,-73.94138,Entire home/apt,90,5,0,,,1,0 +26380347,420 E 61 st Street SOLOW building 1BR furnished,53179388,Raymond,Manhattan,Upper East Side,40.75954,-73.96022,Entire home/apt,250,30,0,,,10,89 +26383405,Cozy and Clean Park Slope 2 bed Apt. Hidden Gem!,19393471,Dana,Brooklyn,Sunset Park,40.66073,-73.98983,Entire home/apt,265,3,23,2019-07-01,1.95,1,365 +26383523,Bright Artist's Loft on the Lower East Side,18252465,Liza,Manhattan,Lower East Side,40.71452,-73.98201,Entire home/apt,225,4,2,2019-01-02,0.29,1,0 +26385006,Harlem Historian/Musician near Columbia Room 2,6088893,Karen,Manhattan,Harlem,40.81932,-73.95765,Private room,55,3,4,2019-01-01,0.36,1,21 +26385197,Private bedroom w/ pvt entrance near Times Sq. 52E,190921808,John,Manhattan,Hell's Kitchen,40.75577,-73.99687,Private room,120,30,3,2019-06-02,0.26,47,288 +26385398,Park Slope Brooklyn Penthouse Apartment,6308220,Michael,Brooklyn,South Slope,40.66154,-73.98283,Entire home/apt,210,2,35,2019-06-29,3.11,1,190 +26385422,NY HILTON CLUB 2 BR SUITE Luxury Holidays 2019,58071546,Mary,Manhattan,Midtown,40.76151,-73.97894,Entire home/apt,599,2,3,2019-01-03,0.24,1,0 +26386244,Cozy private room in sunny Brooklyn apartment,72299995,Jennifer,Brooklyn,Flatbush,40.65195,-73.95645,Private room,65,1,7,2019-04-24,0.59,1,0 +26386411,Cozy Modern Room in Greenpoint - GREAT LOCATION!,129559316,Tk,Brooklyn,Greenpoint,40.72225,-73.94328,Private room,115,1,6,2018-09-27,0.49,1,0 +26386759,Cozy and extremely well located Bushwick room,86892036,Michael,Brooklyn,Bushwick,40.70103,-73.91901,Private room,50,2,5,2018-07-29,0.41,2,0 +26387138,Spacious New York bedroom!,151291713,Kathryn,Manhattan,Washington Heights,40.84918,-73.93775,Private room,70,1,31,2019-05-05,2.53,2,4 +26387184,Cozy apartment in the heart of South Harlem,24378438,Jen,Manhattan,Harlem,40.80718,-73.94907,Entire home/apt,80,2,3,2019-01-07,0.38,1,1 +26387674,Cozy Entire Floor Private 2 Bedroom & Bath,37274021,Nuno,Brooklyn,Bedford-Stuyvesant,40.68497,-73.9543,Private room,110,3,38,2019-06-23,3.25,1,101 +26387779,Perfect apartment for your NYC stay,12302238,Brett-Michael,Brooklyn,Bedford-Stuyvesant,40.68812,-73.92353,Private room,115,3,2,2018-08-03,0.17,1,0 +26388810,Brooklyn home with a View,424656,Jasmine,Brooklyn,Williamsburg,40.7164,-73.95438,Entire home/apt,259,7,0,,,1,0 +26388933,Brooklyn Hostel bedroom 2. Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69405,-73.95592,Shared room,38,1,12,2019-06-08,1.00,34,360 +26390150,Large private bedroom w/private bath in shared apt,7090327,Niccolo,Brooklyn,DUMBO,40.70328,-73.9899,Private room,150,1,1,2018-06-30,0.08,1,0 +26390806,Cosy and Spacious New York Apartment,75479380,Maria Ivy,Queens,Long Island City,40.75192,-73.94074,Entire home/apt,125,2,6,2019-01-03,0.70,1,0 +26391060,Privet room and bathroom in luxurious apartment.,68074387,Emma,Manhattan,Harlem,40.81186,-73.93922,Private room,125,3,6,2019-06-23,0.52,1,0 +26392206,Quaint One-Bedroom close to the UN !,47475970,Jenya,Manhattan,Midtown,40.75468,-73.96563,Entire home/apt,180,4,11,2019-06-23,0.93,1,1 +26392397,Cute and Convenient Park Slope Room,2180581,Jana,Brooklyn,South Slope,40.6652,-73.98191,Private room,99,5,4,2018-10-02,0.35,2,0 +26394592,Ma-Don Hideaway,135585700,Lillie & Donald,Brooklyn,Bedford-Stuyvesant,40.69069,-73.92651,Entire home/apt,125,2,13,2019-01-02,1.26,1,1 +26394988,Gorgeous room in luxury apartment (2),198478845,Jelani,Brooklyn,Clinton Hill,40.68697,-73.96063,Private room,59,3,10,2019-06-05,0.87,2,150 +26395296,The Yorkville Gem,198482796,Janine,Manhattan,Upper East Side,40.78023,-73.95069,Shared room,110,7,15,2019-07-01,3.46,1,4 +26397041,1940's Historic Brooklyn Townhome,6323006,Mark,Brooklyn,East Flatbush,40.63863,-73.93826,Entire home/apt,300,5,2,2019-06-19,0.81,1,174 +26397444,"Sunny, CENTRAL Williamsburg Room with Rooftop",20237617,Samantha,Brooklyn,Williamsburg,40.71446,-73.95992,Private room,50,1,4,2018-08-13,0.33,1,0 +26398320,Cozy room w/ private balcony and incredible views!,45448756,Lucia,Manhattan,East Village,40.72777,-73.98568,Private room,99,6,5,2019-05-20,0.43,1,11 +26398428,Incredible Private Room in prime Bushwick,4492236,Rebecca,Brooklyn,Bushwick,40.69585,-73.93094,Private room,70,7,0,,,2,0 +26398894,NYC HOME BASE: Train @ 900ft; midtown 30min!,20912691,Jeff,Queens,Hollis,40.71104,-73.78175,Entire home/apt,150,2,17,2019-06-22,1.50,7,10 +26401639,Amazing Brooklyn,100565897,Myrna,Brooklyn,Sheepshead Bay,40.60369,-73.94511,Private room,36,7,8,2019-05-17,0.71,2,81 +26408958,Spacious Room and PRIVATE bath in Harlem Townhouse,10747093,Byron,Manhattan,Harlem,40.8072,-73.94313,Private room,149,2,13,2019-05-08,1.42,1,185 +26409175,"1BR in Newly Renovated Apartment - Rm B, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.70522,-73.93075,Private room,51,1,10,2019-05-23,0.84,7,310 +26410121,Welcoming Brooklyn Artist's Room in Williamsburg,16118005,Floriana,Brooklyn,Williamsburg,40.70831,-73.96192,Private room,70,1,11,2019-03-11,0.89,1,0 +26410307,"1BR in Newly Renovated Apartment - Rm C, Bushwick!",36012265,Ada,Brooklyn,Williamsburg,40.7052,-73.93017,Private room,49,1,6,2019-06-09,0.53,7,343 +26412930,Zen Brooklyn,209300,Gina,Brooklyn,Fort Greene,40.68731,-73.9751,Private room,85,1,8,2018-09-01,0.66,2,0 +26414834,Enjoy this cozy private room near Times Sq. 53E4,190921808,John,Manhattan,Hell's Kitchen,40.75561,-73.99543,Private room,55,30,3,2019-05-30,0.92,47,345 +26415648,Stay in this sunny private room near Times Sq 41D3,190921808,John,Manhattan,Hell's Kitchen,40.75564,-73.99564,Private room,65,7,9,2019-05-25,1.15,47,326 +26416651,Bushwick Duplex 3 min walk to subway,152032831,Alexandria,Brooklyn,Bushwick,40.6897,-73.921,Private room,99,1,4,2018-07-13,0.32,1,0 +26417009,Ladies Bedroom Bed 2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.95636,Shared room,38,1,17,2019-06-23,1.39,34,365 +26417485,A get away home,145721354,Gardell,Brooklyn,Prospect-Lefferts Gardens,40.65912,-73.94735,Entire home/apt,44,1,9,2019-06-15,0.77,1,89 +26417856,Magic Waters - Brooklyn Refuge,6722833,Paul,Brooklyn,Bedford-Stuyvesant,40.68202,-73.92295,Entire home/apt,345,2,25,2019-06-22,2.17,1,321 +26419291,Brooklyn Hostel Bedroom 2. Bed 3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6944,-73.95674,Shared room,38,3,14,2019-06-28,1.14,34,365 +26420017,Charming 1 Bedroom in Ideal Location,66757117,Laural,Manhattan,Gramercy,40.73557,-73.98038,Entire home/apt,150,3,1,2018-07-15,0.08,1,0 +26420626,Ladies bedroom Bed 4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69299,-73.95675,Shared room,38,1,21,2019-07-04,1.77,34,365 +26420986,Cute studio in the Upper West Side.,22309598,Ai,Manhattan,Upper West Side,40.79392,-73.97288,Entire home/apt,119,2,12,2019-05-27,1.13,1,5 +26421624,Cozy Long Island City Studio close to Manhattan,198666761,Izi,Queens,Long Island City,40.75286,-73.93539,Entire home/apt,71,3,32,2019-06-29,2.73,1,77 +26422007,Spacious one bedroom with gym and roof top,198674086,J,Manhattan,Upper West Side,40.7956,-73.96702,Entire home/apt,200,15,1,2018-11-30,0.14,1,365 +26422113,Sunny Room in Brooklyn 2,34991003,Karen,Brooklyn,East Flatbush,40.64617,-73.92397,Private room,35,3,7,2019-06-04,0.57,3,319 +26423738,Sonder | View 34 | Vibrant 1BR + Rooftop,12243051,Sonder,Manhattan,Murray Hill,40.74444,-73.97355,Entire home/apt,185,29,0,,,96,332 +26424516,Flatiron Oasis Off 5th Ave,198691406,Quincy,Manhattan,Flatiron District,40.74043,-73.99277,Entire home/apt,1500,3,5,2019-05-20,0.43,1,362 +26424667,Prime Location! The Mid/Upper East side Grey Room,164345159,Giovanna,Manhattan,Upper East Side,40.76258,-73.96252,Private room,150,1,82,2019-06-16,7.01,1,51 +26425032,Private Room in apartment (1),198478845,Jelani,Brooklyn,Clinton Hill,40.6867,-73.9612,Private room,59,4,6,2019-06-20,0.87,2,156 +26425700,Private Room in Ridgewood with Rooftop access!,38714592,Catherine,Queens,Ridgewood,40.70254,-73.90679,Private room,34,2,2,2018-07-27,0.17,1,0 +26425943,Sunny Williamsburg 1 BR near Peter Luger's,50361964,Rikki,Brooklyn,Williamsburg,40.7108,-73.9618,Entire home/apt,225,1,3,2018-11-04,0.33,1,0 +26429962,Leli’s Modern Pad - Queen Bedroom,59982224,Leli,Brooklyn,East New York,40.67502,-73.87277,Private room,80,2,8,2019-06-16,1.76,4,41 +26430182,"Cozy, clean apartment in Harlem near the subway",140096210,Sarah,Manhattan,East Harlem,40.78866,-73.9507,Entire home/apt,250,1,0,,,1,0 +26430364,Leli’s Modern Pad - Double Room,59982224,Leli,Brooklyn,East New York,40.67519,-73.87372,Private room,50,2,6,2019-06-12,0.68,4,1 +26430901,Hustler's Paradise 003 Private Room Lower Level,104927746,Amardeep,Staten Island,Concord,40.59691,-74.087,Private room,30,4,26,2019-06-25,2.14,7,359 +26431251,Captain's Cabin 001/Apmnt like,137999892,Simranjeet,Staten Island,Concord,40.60531,-74.08893,Private room,30,4,16,2019-07-01,1.30,7,334 +26431364,Country charm in the midst of hipster Brooklyn,19259107,Harold,Brooklyn,Windsor Terrace,40.64792,-73.97647,Entire home/apt,110,5,0,,,1,87 +26431441,Captains Cabin 002/Apmnt like,137999892,Simranjeet,Staten Island,Concord,40.60697,-74.08765,Private room,30,4,11,2019-07-06,0.99,7,337 +26440393,1 BED IN LIVING ROOM NEAR Q SUBWAY AVE U,172369331,Abby,Brooklyn,Sheepshead Bay,40.5972,-73.95777,Shared room,40,5,12,2019-07-01,1.07,10,301 +26440780,Loft in Downtown Brooklyn - entire apartment,16753104,Robert,Brooklyn,Downtown Brooklyn,40.69206,-73.98445,Entire home/apt,160,4,5,2019-01-01,0.44,1,0 +26440793,Comfortable Brooklyn Apartment with Personality,17224262,Dana,Brooklyn,Bedford-Stuyvesant,40.69557,-73.94033,Entire home/apt,100,3,5,2018-12-31,0.42,1,3 +26440960,Large beautiful home in the center of Manhattan!,53046634,Joey,Manhattan,Hell's Kitchen,40.76322,-73.99253,Entire home/apt,285,3,6,2018-12-10,0.51,2,76 +26441519,Sunny & colorful room in Bushwick w/ yard access,16865342,Elene,Brooklyn,Bushwick,40.70553,-73.91938,Private room,53,2,29,2019-06-20,2.46,2,143 +26441935,Conveniently located sunny room near Times Sq 63F4,190921808,John,Manhattan,Hell's Kitchen,40.75386,-73.99562,Private room,55,7,6,2019-05-18,0.73,47,357 +26443106,"trip NYC - your Couch - clean, cheap, close to all",182488531,Kevin4,Queens,Elmhurst,40.73753,-73.87054,Shared room,15,1,19,2019-06-20,1.71,2,271 +26443119,"*NEW* Bright, Spacious & Quiet Bedroom by Times SQ",198835140,Leivan,Manhattan,Hell's Kitchen,40.76129,-73.98859,Private room,90,2,55,2019-06-23,4.61,1,49 +26443376,Big 1BR in PRIME Bushwick! 2 blocks to L Train!,6293227,Nish,Brooklyn,Bushwick,40.70148,-73.91834,Entire home/apt,90,3,9,2019-06-01,0.74,1,0 +26446103,"Estudio 1 Brooklyn, NY.",198853982,Brigit,Brooklyn,Cypress Hills,40.68816,-73.87193,Entire home/apt,90,2,34,2019-06-24,2.80,2,120 +26447297,Northern Manhattan Getaway,319488,Melinda,Manhattan,Inwood,40.86755,-73.9287,Private room,125,2,21,2019-06-23,1.82,1,141 +26447954,Beautiful Designer DUMBO Loft,244444,Michael,Brooklyn,Vinegar Hill,40.7023,-73.98394,Entire home/apt,159,14,0,,,1,0 +26449028,5min to Manhattan apartment in new luxury building,19813391,Summer,Queens,Long Island City,40.7456,-73.94366,Entire home/apt,180,1,7,2019-05-27,0.61,2,0 +26449775,Cute NYC studio in the heart of East Village,198884450,Nat,Manhattan,East Village,40.72521,-73.98316,Entire home/apt,120,5,2,2019-01-02,0.22,1,0 +26450173,Dekalb Stop Flat,25545946,Tyler,Queens,Ridgewood,40.70772,-73.9118,Private room,80,2,0,,,1,88 +26450185,Crash Pad,97378432,Rev. Simone,Queens,Jamaica,40.6837,-73.79343,Private room,75,2,1,2019-05-19,0.58,1,180 +26450570,Brooklyn Spot,188393472,Virginie,Brooklyn,Crown Heights,40.67664,-73.95172,Entire home/apt,210,1,0,,,1,0 +26450631,3 Bedroom Apartment • 20 Minutes from Time Square,198890291,Mehedhi,Queens,Woodside,40.74225,-73.90553,Entire home/apt,145,3,55,2019-06-19,4.50,1,133 +26450798,Stunning 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.74417,-73.97206,Entire home/apt,189,29,0,,,96,316 +26450808,Sonder | Hanover Square | Elegant 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70362,-74.00804,Entire home/apt,190,29,0,,,96,333 +26450809,Sonder | Hanover Square | Classic 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70569,-74.00929,Entire home/apt,190,29,0,,,96,284 +26450817,Sonder | Hanover Square | Sunny 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70376,-74.00833,Entire home/apt,187,29,2,2018-12-04,0.24,96,323 +26450823,Sonder | Hanover Square | Airy 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70506,-74.0079,Entire home/apt,185,29,1,2018-10-01,0.11,96,220 +26450833,Sonder | 21 Chelsea | Grand 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74154,-73.99527,Entire home/apt,250,29,0,,,96,311 +26450834,Colorful 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.7445,-73.97222,Entire home/apt,170,29,0,,,96,324 +26451569,Cozy Apartment 15 Minutes from Grand Central,198451327,Amanda,Queens,Sunnyside,40.74611,-73.91548,Entire home/apt,72,2,14,2018-09-29,1.12,1,0 +26453418,Room to rest near LaGuardia. Steps to subway!,137358866,Kazuya,Queens,Jackson Heights,40.7488,-73.88045,Private room,39,30,1,2019-04-01,0.30,103,186 +26455093,Presidential Comfort,198476726,Cathy,Queens,Far Rockaway,40.60395,-73.74904,Private room,55,1,27,2019-07-07,2.21,1,177 +26455688,CLOSE TO EVERYWHERE IN NYC 1,158922261,Ana,Queens,Astoria,40.75523,-73.91297,Private room,59,2,30,2019-06-26,2.54,3,132 +26456925,Nice Room Near Roosevelt Jackson Heights Station,137358866,Kazuya,Queens,Woodside,40.74033,-73.89342,Private room,33,30,1,2019-01-25,0.18,103,269 +26458835,cozy one bed room only girls,7970340,Dian,Manhattan,Stuyvesant Town,40.73391,-73.97857,Private room,55,4,1,2018-07-06,0.08,1,0 +26463879,New york Multi-unit building,21682640,Clarise,Brooklyn,Flatbush,40.64258,-73.95952,Private room,65,30,0,,,2,365 +26465413,Spacious & charming apartment in the heart of NYC,199014573,Elizabeth,Manhattan,Midtown,40.75486,-73.97252,Private room,125,3,8,2018-09-16,0.65,1,0 +26465686,Designer Waterfront Brooklyn Home with a View,24496471,Naheel,Brooklyn,Williamsburg,40.71574,-73.9665,Entire home/apt,200,3,11,2019-04-09,0.94,1,0 +26467543,Huge Moroccan Loft in Little Italy,22583075,Jonathan,Manhattan,Little Italy,40.71737,-73.99861,Entire home/apt,400,2,2,2018-08-14,0.18,1,0 +26469342,"Lovely apt heart of manhattan, location location",71404080,César Julio,Manhattan,Hell's Kitchen,40.76117,-73.99169,Private room,80,22,1,2018-08-01,0.09,1,187 +26470188,Luxury Greenwich Village Studio,55240477,Jonathan,Manhattan,Greenwich Village,40.73036,-73.99358,Entire home/apt,220,4,1,2018-07-11,0.08,1,16 +26471867,"Light-Filled 2 BR in Brooklyn, A Perfect Hideaway",4291088,Nïco,Brooklyn,Clinton Hill,40.6955,-73.96446,Entire home/apt,130,1,35,2019-06-30,2.87,1,0 +26472079,Cozy studio at UWS near Columbia university,274910,Yooin,Manhattan,Morningside Heights,40.80998,-73.95756,Entire home/apt,90,1,25,2019-06-25,2.07,1,0 +26472112,the family room,198328249,Hiram,Brooklyn,Bushwick,40.69164,-73.91513,Shared room,47,1,9,2019-07-01,1.03,2,365 +26472343,1 Bedroom 3R in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69101,-73.93773,Private room,118,1,29,2019-07-01,2.46,6,288 +26473275,Large 1 bedroom apartment near Prospect Park,749126,Stacey,Brooklyn,South Slope,40.66501,-73.98112,Entire home/apt,145,2,8,2019-05-13,0.66,1,0 +26473415,New York Home at Times Square,9638257,Mayur,Manhattan,Theater District,40.75934,-73.98755,Private room,85,4,14,2019-06-29,1.98,1,33 +26473544,Brooklyn Comfy Room--20 minutes to Manhattan,1004883,Marisha,Brooklyn,Bushwick,40.6914,-73.90675,Private room,75,4,4,2018-10-16,0.36,2,364 +26473581,FORDHAM DELIGHT,199070207,Oscar,Bronx,University Heights,40.86255,-73.90669,Private room,80,3,52,2019-06-24,4.79,2,0 +26474934,A spacious room for females in Clinton Hill aptmnt,136846568,Priyanka,Brooklyn,Bedford-Stuyvesant,40.68932,-73.95887,Private room,40,2,2,2019-01-13,0.19,1,0 +26475612,Perfect location for NYC getaway,73570025,Angela,Brooklyn,Williamsburg,40.71648,-73.94452,Entire home/apt,110,1,52,2019-06-23,4.36,1,44 +26475717,Lovely Bushwick oasis,196904829,Alicia,Brooklyn,Bushwick,40.69972,-73.92362,Private room,80,3,0,,,1,0 +26476238,"Comfort, clean and close to everything.",157506473,Al,Queens,Flushing,40.75819,-73.81977,Private room,60,1,6,2018-08-11,0.50,1,0 +26476892,Bedroom & Private Bathroom in Brooklyn!,199118646,Tami,Brooklyn,East Flatbush,40.64834,-73.95161,Private room,50,1,37,2019-06-25,3.68,1,84 +26477897,Room available in Bushwick duplex,33233142,Lee,Brooklyn,Bushwick,40.69298,-73.90685,Private room,58,5,1,2018-08-18,0.09,1,17 +26487039,Brooklyn Loft - close to Pratt!!! Great location!,56666937,Brittany,Brooklyn,Clinton Hill,40.68962,-73.96062,Entire home/apt,150,6,16,2019-06-20,1.58,1,168 +26488707,Harlem Peace Quarters,65093286,Angel,Manhattan,Harlem,40.81488,-73.94415,Private room,49,1,12,2018-07-28,0.97,1,0 +26489146,A Great Room in Heart of NYC,519554,Umut&Deniz,Manhattan,Lower East Side,40.72051,-73.98777,Private room,69,3,1,2019-05-20,0.60,5,270 +26489955,Private Room-Chinatown/Soho/LittleItaly.HeartofNYC,197400421,Ben,Manhattan,Chinatown,40.71515,-73.99827,Private room,99,3,30,2019-06-01,2.51,2,147 +26490844,Twin suites of Prospect Lefferts Garden- Brooklyn,76225580,Gary,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.95231,Entire home/apt,200,2,6,2019-06-30,2.28,2,267 +26494149,LG Private Room for (3). Metro less than 5 mins.,10535719,Mike,Manhattan,East Harlem,40.798,-73.93944,Private room,150,7,0,,,3,358 +26494242,Sunny One Bedroom Heart of Lower East Side,10577999,Barak,Manhattan,Lower East Side,40.72135,-73.98391,Entire home/apt,200,4,3,2019-01-01,0.25,1,0 +26494876,Sunny & Spacious 2 bdrm apt,1473755,Regina,Brooklyn,Williamsburg,40.71906,-73.94039,Entire home/apt,125,4,2,2018-07-02,0.16,1,0 +26494942,Beautiful Room In Spacious House w/ Full Kitchen,35746135,Lionel,Brooklyn,Kensington,40.62896,-73.97494,Private room,70,1,34,2019-07-01,2.74,2,1 +26496075,Sunny Room in Newly Renovated Crown Heights Apt!,40905101,Rebecca,Brooklyn,Crown Heights,40.67478,-73.94418,Private room,45,2,25,2018-11-30,2.05,1,0 +26496330,COZY BROOKLYN BEDROOM,24079691,Mercedes,Brooklyn,Crown Heights,40.67863,-73.95859,Private room,70,1,2,2018-09-30,0.17,1,0 +26496505,Beautiful Queens Home close to JFK and LGA,38920716,Hamad,Queens,Queens Village,40.70789,-73.74073,Entire home/apt,75,3,134,2019-07-07,10.86,1,63 +26496645,Room with a view,110049861,Martin,Brooklyn,Williamsburg,40.70959,-73.95693,Private room,10,1,0,,,1,83 +26497309,Sun Drenched One Bedroom in the East Village,40594187,Christina,Manhattan,East Village,40.72256,-73.9848,Entire home/apt,150,3,6,2018-11-25,0.48,1,4 +26497890,Sunny Room in a Cozy & Spacious Apartment,24712915,Victoria,Brooklyn,Sunset Park,40.66236,-73.99037,Private room,55,2,41,2019-06-30,3.35,1,340 +26499284,Private Room and most of apt in Upper West Side,127595553,Santiago,Manhattan,Morningside Heights,40.80624,-73.9634,Private room,90,1,7,2018-07-31,0.57,1,0 +26500087,"Beautiful, Modern & Bright Apt in the East Village",13533446,Daniel,Manhattan,East Village,40.72634,-73.97625,Private room,139,2,31,2019-06-26,2.88,1,81 +26501755,"Clean, quiet studio apartment - Gramercy/Kips Bay!",36383204,Despina,Manhattan,Kips Bay,40.74174,-73.98162,Entire home/apt,120,25,7,2018-10-31,0.58,1,0 +26501791,**Private Entrance Apartment W/ Bedroom & Bath**,199315923,Jacqueline,Queens,Glendale,40.70271,-73.87717,Entire home/apt,65,3,49,2019-07-02,4.06,1,293 +26503507,Brigham Place,199213364,Eeman,Brooklyn,Sheepshead Bay,40.59689,-73.93353,Entire home/apt,83,1,35,2019-06-18,2.91,2,97 +26504376,COZY ROCKAWAY BEACH BUNGALOW 1 BEDROOM,180781689,Jeremy,Queens,Rockaway Beach,40.58756,-73.81371,Entire home/apt,149,1,41,2019-07-02,3.34,2,140 +26514725,Private Room_Brooklyn Townhouse,8456000,Brian,Brooklyn,Navy Yard,40.69793,-73.96989,Private room,175,1,11,2019-06-06,1.10,2,90 +26516462,M2 A cozy well lit room sleeps 2 on 2 single beds,295128,Carol Gloria,Bronx,Clason Point,40.81309,-73.85367,Private room,70,1,3,2019-04-28,0.47,7,360 +26516849,Private Room in Rockaway House-Nearby JFK & Subway,199299171,Paul,Queens,Rockaway Beach,40.58743,-73.81411,Private room,49,1,10,2019-06-11,0.87,1,356 +26518272,Brooklyn: Spacious apartment in calm neighborhood,2188481,Talia,Brooklyn,Gowanus,40.68234,-73.98223,Entire home/apt,150,4,2,2019-04-30,0.17,1,55 +26518337,Cozy 1 Bedroom Apartment In Great LES Location,49909186,Andrea,Manhattan,Lower East Side,40.72003,-73.98928,Entire home/apt,180,4,23,2019-07-01,1.99,2,233 +26518547,U2 comfortable double bed sleeps 2 guests,295128,Carol Gloria,Bronx,Clason Point,40.81225,-73.85502,Private room,80,1,4,2019-07-01,1.48,7,365 +26518779,Tranquil East Village apartment,6072790,Lotte,Manhattan,East Village,40.72607,-73.97851,Entire home/apt,220,3,3,2019-06-27,0.28,1,25 +26518916,Spacious Bushwick Bedroom!,14907512,Alex,Brooklyn,Bushwick,40.69505,-73.92968,Private room,30,10,4,2019-05-11,0.35,1,13 +26519306,Luxurious Harlem 1 Bdrm Steps from Subway,53276746,Andrea,Manhattan,Harlem,40.81581,-73.94142,Entire home/apt,150,3,22,2019-06-03,1.90,1,261 +26519461,*AMAZING* Large Studio in Prime Union Square area!,187139932,Michelle,Manhattan,Greenwich Village,40.73524,-73.99259,Entire home/apt,225,3,2,2019-06-30,1.30,1,1 +26520216,Beautiful 1 bedroom in South Midtown Manhattan,11541034,William,Manhattan,Midtown,40.7523,-73.99024,Entire home/apt,210,5,7,2019-01-03,0.63,1,0 +26520475,Family suites in UpperEastSide Townhouse,199466039,Sydney,Manhattan,Upper East Side,40.77669,-73.95283,Private room,299,1,4,2019-06-23,0.35,3,365 +26521015,Brooklyn Oasis,74911937,Alwyn,Brooklyn,Flatbush,40.63338,-73.95074,Entire home/apt,110,4,18,2019-06-30,1.60,1,46 +26522298,"Magical Brownstone in Fort Greene, Artist Room",41099363,Maria,Brooklyn,Fort Greene,40.68992,-73.97528,Private room,120,4,4,2019-05-16,0.45,3,291 +26522398,Private room in Williamsburg Brooklyn,198900829,David,Brooklyn,Williamsburg,40.71142,-73.96141,Private room,80,5,1,2018-08-14,0.09,1,0 +26522529,Cozy apartment 9mts to Barclays Center/ProspecPark,199147185,Lou,Brooklyn,Sunset Park,40.66291,-73.995,Entire home/apt,330,1,34,2019-06-11,2.83,5,147 +26522949,Cozy Apt in Centrally Located Brooklyn Heights,47151333,Walter,Brooklyn,Brooklyn Heights,40.69174,-73.99283,Entire home/apt,150,2,4,2018-08-27,0.36,2,11 +26523155,Hip Master Bedroom with A Private Bathroom in NYC,28325192,Brian,Manhattan,Roosevelt Island,40.764,-73.94741,Private room,150,3,2,2018-08-07,0.17,1,0 +26526075,BEST LOCATION Times Square Central Prk Hudson Yrds,56060495,Laura-Lee,Manhattan,Hell's Kitchen,40.75524,-73.99362,Entire home/apt,99,1,34,2019-06-28,2.90,1,1 +26526269,Roosevelt Island - Hidden Gem of New York,41655831,Justin,Manhattan,Roosevelt Island,40.76506,-73.94662,Private room,99,1,2,2018-07-21,0.16,1,0 +26527543,AMAZING AAA Specious Studio South Expo Skylight!,26584499,Ofir,Manhattan,Upper West Side,40.78246,-73.98314,Entire home/apt,115,30,0,,,8,89 +26527613,Former Mattress Factory Loft,85712984,Holly,Brooklyn,Williamsburg,40.70277,-73.93568,Entire home/apt,90,1,1,2018-07-08,0.08,1,76 +26527791,Beautiful studio with loft bed north expo!,26584499,Ofir,Manhattan,Upper West Side,40.7828,-73.98348,Entire home/apt,118,30,0,,,8,157 +26528837,"✨Cozy clean room, 5 min walk to subway(Line R/M)",199524563,Bei,Queens,Rego Park,40.72608,-73.86233,Private room,65,2,28,2019-05-28,2.36,3,38 +26529593,"Cosy room in Queens, 5 min walk to subway(R/M)",199524563,Bei,Queens,Rego Park,40.72738,-73.86273,Private room,65,2,21,2019-05-28,1.76,3,0 +26530921,New Luxury Building,11459431,Anna,Manhattan,Hell's Kitchen,40.76213,-73.99938,Entire home/apt,300,5,1,2018-09-25,0.10,1,11 +26532680,"Private Bedroom, Easy travel in brooklyn",28727058,Waen,Brooklyn,Fort Greene,40.69309,-73.97238,Private room,70,2,47,2019-07-01,4.15,1,0 +26532770,Gorgeous private room in a luxury condo by Time Sq,4823737,Evgeny,Manhattan,Hell's Kitchen,40.75945,-73.99344,Private room,250,4,0,,,1,0 +26532804,Peace and love,108454497,Yasser,Queens,Maspeth,40.72959,-73.89381,Private room,35,30,0,,,1,179 +26534723,"Stylish, art-filled apartment near Hudson River",1495694,Eileen,Manhattan,Washington Heights,40.8436,-73.9412,Entire home/apt,125,11,1,2018-07-30,0.09,1,342 +26534838,Large Studio in the heart of West Village,5225042,Kai,Manhattan,West Village,40.73429,-74.00487,Entire home/apt,150,3,6,2019-03-25,0.52,1,0 +26535575,179st Hub Master Bedroom w/ balcony,20912691,Jeff,Queens,Jamaica,40.70985,-73.78429,Private room,50,2,4,2019-06-12,0.34,7,0 +26538746,Studio in UES (7mins from Central Park/The MET),51783601,Gursharan,Manhattan,Upper East Side,40.77537,-73.95556,Entire home/apt,120,5,1,2018-07-03,0.08,1,0 +26538883,Charming Sunny Studio Lower East Side.,77303930,Cecilia,Manhattan,Lower East Side,40.72235,-73.98766,Entire home/apt,125,3,1,2018-07-27,0.09,1,0 +26540634,Sleek and Modern Studio Apartment,4066678,Brandon,Brooklyn,Williamsburg,40.71657,-73.96512,Entire home/apt,200,15,0,,,1,0 +26550322,Modern duplex 30 minutes to Times Square,179483216,Marvin,Manhattan,Washington Heights,40.85515,-73.93297,Entire home/apt,250,4,20,2019-06-22,1.94,1,228 +26552340,*NYC Flat Cold Cozy Private Room w/ Blazin' WiFi*,191338162,William,Bronx,Allerton,40.85978,-73.8619,Private room,142,1,29,2019-06-25,2.47,5,48 +26552951,Sonder | 21 Chelsea | Serene 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74259,-73.99589,Entire home/apt,249,29,0,,,96,230 +26553542,PRIME BEDSTUY LOCATION WITH A VIEW! BOOK WITH US!,104157084,Taylor,Brooklyn,Bedford-Stuyvesant,40.67854,-73.94883,Shared room,60,1,2,2018-07-15,0.17,1,342 +26554732,"Beautiful NYC Private Room/Bath, Late Check-In OK",191338162,William,Bronx,Allerton,40.86017,-73.86198,Private room,142,1,36,2019-07-02,3.50,5,57 +26554879,East Village/Union Square Flat,17400431,Bob,Manhattan,East Village,40.73177,-73.98691,Entire home/apt,179,5,32,2019-06-26,2.92,1,12 +26554937,"Beach Street Loft - Surf Rockaway Beach, NYC, JFK",10457300,Andre,Queens,Arverne,40.59427,-73.79729,Entire home/apt,140,1,36,2019-06-23,2.96,1,70 +26555338,Immaculate and Spacious,20444038,Debbie,Manhattan,Midtown,40.74624,-73.98255,Entire home/apt,465,2,31,2019-06-23,2.66,1,142 +26555450,Big Bright Studio in the Heart of Brooklyn,7169873,Julia,Brooklyn,Midwood,40.61716,-73.96271,Entire home/apt,80,5,24,2019-06-08,2.02,1,0 +26555992,NEW - Big Brooklyn apt in Bushwick,552288,Charles,Brooklyn,Bushwick,40.69949,-73.92383,Entire home/apt,65,2,6,2019-06-26,0.54,1,0 +26557068,Midtown NYC: High End Resort Sleeps 2,172190160,Millie,Manhattan,Midtown,40.7521,-73.97334,Private room,300,2,2,2019-01-01,0.25,1,0 +26557266,Cozy private Room in 2 bedrooms appt,152047633,Rudi,Brooklyn,Williamsburg,40.71415,-73.96225,Private room,90,1,0,,,1,0 +26557748,Quiet and Cozy Brooklyn Home in Perfect Location,1840698,Jared,Brooklyn,Greenpoint,40.72446,-73.9516,Entire home/apt,180,3,13,2019-06-17,1.13,1,0 +26557901,"Park Slope, Brooklyn",199702366,Anuar,Brooklyn,South Slope,40.66625,-73.9826,Private room,56,2,15,2019-06-05,2.33,1,57 +26558970,"Fifth Element: 7bd, private home.FREE CANCELLATION",143979755,Edwin,Bronx,Pelham Gardens,40.86239,-73.84362,Entire home/apt,99,1,67,2019-07-06,6.07,1,337 +26559223,"Charming Williamsburg Apartment, next to trainJZM",18210699,Leanne,Brooklyn,Williamsburg,40.71106,-73.95945,Private room,70,4,1,2018-07-31,0.09,1,220 +26559313,2 Stops from Manhattan in Trendy LIC,155924492,Christina,Queens,Long Island City,40.75311,-73.93628,Entire home/apt,285,2,30,2019-06-16,2.54,1,172 +26559476,Warm and Cozy Bedroom ~ 15 minutes to JFK,72746827,Jeffrey & Casandra,Queens,Bayswater,40.61036,-73.7687,Private room,82,1,8,2019-07-07,8,1,172 +26559892,"== Modern, A/C, Easy Check-in / Book Instantly ==",191338162,William,Bronx,Allerton,40.86014,-73.86301,Private room,142,1,30,2019-07-02,2.56,5,48 +26560159,A sweet cozy one bedroom in Crown Heights Brooklyn,16782911,Dena,Brooklyn,Prospect-Lefferts Gardens,40.66352,-73.94157,Entire home/apt,100,5,8,2019-06-03,0.69,1,57 +26560264,"❤️ Beautiful, Bright Room - Late Self Check-In ❤️",191338162,William,Bronx,Allerton,40.86013,-73.86339,Private room,142,1,30,2019-07-02,2.56,5,57 +26560973,One bedroom apt with private yard in Williamsburg,23342828,Peggy,Brooklyn,Williamsburg,40.70807,-73.95565,Entire home/apt,125,3,6,2018-10-01,0.54,1,0 +26561464,Lower East Side Loft (Event Space),173259171,Will,Manhattan,Lower East Side,40.71946,-73.98935,Entire home/apt,900,1,2,2018-08-29,0.18,1,0 +26563874,PrivateBed&BathLGAMetsTimeSqUSTAFlushingQueens,199745521,Nonie,Queens,Corona,40.75046,-73.85443,Private room,40,2,19,2019-06-24,1.60,1,24 +26564665,Modern NYC Apartment,68287582,George,Manhattan,Harlem,40.80455,-73.95429,Entire home/apt,120,2,16,2018-11-24,1.32,1,0 +26565864,Luxury East Village Penthouse With Private Deck,390844,Leigh,Manhattan,East Village,40.72436,-73.98235,Entire home/apt,199,2,9,2019-06-28,0.80,1,0 +26566099,Bedstuy Cove,199740814,Luqman,Brooklyn,Bedford-Stuyvesant,40.68125,-73.92326,Private room,60,1,7,2018-08-23,0.59,1,129 +26566291,"Quiet, Private and Sunny in Greenwich Village",186452920,Rose,Manhattan,Greenwich Village,40.73093,-74.00125,Entire home/apt,200,2,42,2019-06-21,3.62,1,129 +26569512,Comfortable room 30/35 minutes to Manhattan,59262205,Luis,Brooklyn,Bedford-Stuyvesant,40.67963,-73.90816,Private room,55,1,16,2019-04-28,2.34,3,0 +26569565,"Gorgeous, Entire Apartment in Bushwick, Brooklyn",176955227,Rachael,Brooklyn,Bushwick,40.69257,-73.92332,Entire home/apt,150,1,7,2019-05-12,0.62,1,88 +26569882,Queen Bedroom with Private roof top,7943066,Tamiris,Brooklyn,Williamsburg,40.71787,-73.94171,Private room,110,2,4,2019-06-01,1.50,2,66 +26570172,Manhathan NY,199793200,Romulo,Manhattan,Inwood,40.86735,-73.91762,Private room,53,3,3,2018-08-23,0.26,1,0 +26570316,2 Bedroom in 1897 Landmarked house,15175378,Missy & Julien,Brooklyn,Crown Heights,40.67512,-73.94703,Entire home/apt,150,5,28,2019-06-29,2.54,2,62 +26571135,Private Bedroom in Manhattan,167621521,Emma,Manhattan,Inwood,40.86411,-73.92241,Private room,35,3,1,2018-07-31,0.09,1,0 +26571486,Humble home,151714821,Ailin,Bronx,Morris Heights,40.84835,-73.9141,Entire home/apt,149,1,1,2018-07-25,0.09,1,0 +26571706,Sky Boasts Exquisite Studio,199808815,Dening,Manhattan,Hell's Kitchen,40.76138,-73.99945,Entire home/apt,190,2,3,2018-07-09,0.25,1,0 +26572767,Cozy Private Upper Eastside Bedroom,109196702,David,Manhattan,Upper East Side,40.77673,-73.95525,Private room,143,2,4,2018-10-01,0.34,2,0 +26573069,Prime Bushwick - 10 min to city - Superhost,15147054,Chris & Grace,Brooklyn,Bushwick,40.69675,-73.93374,Private room,57,2,42,2019-06-23,3.43,2,348 +26574652,Private room in walking distance from Central Park,199828653,Vady,Manhattan,East Harlem,40.79872,-73.93954,Private room,59,1,66,2019-06-19,5.38,1,126 +26574775,★ Beautiful Apartment in Best Location ★,1510920,Zoë,Manhattan,East Village,40.72366,-73.9903,Entire home/apt,299,2,11,2019-07-05,0.99,1,0 +26574893,Private Room,199833548,Syeda,Queens,Sunnyside,40.74166,-73.92658,Private room,70,1,50,2019-06-23,4.25,9,339 +26576819,Cozy Em’s Place 2 (3 people),174492861,Siri,Queens,Jackson Heights,40.74942,-73.88248,Private room,49,2,6,2019-06-08,0.50,2,89 +26584254,Minimal style bedroom close to Manhattan,199887038,Theodoros,Queens,Ditmars Steinway,40.77031,-73.90793,Private room,68,2,10,2019-06-29,0.89,2,53 +26584630,Park Slope getaway with giant outdoor space,6947681,Hiten,Brooklyn,Park Slope,40.66986,-73.98668,Entire home/apt,120,2,23,2019-07-02,1.86,1,4 +26587430,Big studio in beautiful Cobble Hill by waterfront,52538564,Ezequiel,Brooklyn,Columbia St,40.68988,-73.99907,Entire home/apt,135,4,1,2019-05-04,0.45,1,13 +26589357,East Village Cozy & Bright Home,9678132,Lucie,Manhattan,East Village,40.72639,-73.97848,Private room,80,8,2,2019-05-25,0.19,1,0 +26592537,Super cozy & spacious room - house with backyard !,27497250,Barbara,Brooklyn,Greenpoint,40.72694,-73.94868,Private room,80,3,5,2018-10-15,0.41,1,55 +26593665,Sunny Windsor Terrace 3BR with deck,2487882,Craig,Brooklyn,Windsor Terrace,40.65163,-73.97911,Entire home/apt,150,5,0,,,2,0 +26593733,Affordable room in the heart of New York.,33055418,Jaime,Manhattan,Midtown,40.74573,-73.98323,Private room,90,3,6,2018-09-24,0.55,1,70 +26594199,Room with a View,197516742,Sushmita,Manhattan,Kips Bay,40.74348,-73.97962,Entire home/apt,150,14,1,2018-07-10,0.08,1,0 +26594390,Spacious Studio Apartment in Luxury Building,17407870,Elizabeth,Queens,Long Island City,40.75087,-73.94202,Entire home/apt,197,2,24,2019-07-01,2.11,1,232 +26594677,Wyndham Midtown 45 @ NYC,46555645,Jennifer,Manhattan,Midtown,40.75357,-73.97313,Private room,181,3,1,2018-11-05,0.12,1,0 +26594746,Modern Williamsburg Apartment with Manhattan Views,9685952,Ari,Brooklyn,Williamsburg,40.71414,-73.96334,Entire home/apt,180,2,3,2018-08-05,0.25,1,0 +26595705,LIC Brand New Home with a View & Pool,55785340,Fei,Queens,Long Island City,40.74748,-73.93985,Private room,178,1,0,,,1,0 +26595733,Private Room near Columbia University *,199946021,Joe,Manhattan,Upper West Side,40.8006,-73.96407,Private room,76,1,80,2019-06-22,6.59,3,19 +26596388,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,199956234,Kevin Unal,Manhattan,Harlem,40.80448,-73.95567,Entire home/apt,139,1,58,2019-06-18,4.89,1,96 +26597239,Close to everywhere in NY!! Cerca de todo en NY!!,158922261,Ana,Queens,Astoria,40.75709,-73.9145,Private room,51,2,21,2019-06-24,1.86,3,151 +26598131,"Sunny Bedroom, New renovated Brooklyn House",139899546,Selin,Brooklyn,Prospect-Lefferts Gardens,40.65829,-73.95171,Private room,50,20,3,2018-07-22,0.25,1,0 +26598239,"Cozy, Clean Private Room in Clinton Hill BK",168815258,Maggie,Brooklyn,Clinton Hill,40.69322,-73.96655,Private room,55,3,2,2018-07-22,0.16,1,0 +26598477,Extra Large appartment in the heart of Manhattan,56338076,Barbara,Manhattan,Harlem,40.81657,-73.93849,Entire home/apt,250,1,19,2019-06-03,1.62,3,0 +26599049,Cozy bedroom on the cusp of Williamsburg/Bushwick,3188892,Christian,Brooklyn,Williamsburg,40.71018,-73.94057,Private room,55,3,2,2018-07-29,0.17,1,36 +26599360,"Parkslope, Brooklyns Best Neighborhood!",199985122,Sean,Brooklyn,Park Slope,40.67193,-73.98152,Private room,80,2,24,2019-06-30,2.09,1,294 +26600090,Very close to Manhattan! Muy cerca de Manhattan,158922261,Ana,Queens,Astoria,40.75697,-73.91314,Private room,51,2,34,2019-06-27,2.97,3,167 +26602263,"Quiet, Clean Bedroom in Prime Harlem Location.",1514109,Myles,Manhattan,Harlem,40.79976,-73.95119,Private room,69,3,28,2019-06-24,2.36,1,4 +26602421,"Midtown apt, steps to Penn station (family, kids)",200007278,Rose,Manhattan,Chelsea,40.75274,-73.99647,Entire home/apt,255,3,4,2019-02-10,0.33,1,0 +26602878,2 PRIVATE ROOMS IN A SPACIOUS APPARTEMENT,56338076,Barbara,Manhattan,Harlem,40.81694,-73.93909,Private room,150,2,3,2018-09-06,0.26,3,364 +26602955,COZY ROOM IN MANHATTAN MINUTES 2 TIMES SQR,158972140,Figo,Manhattan,Harlem,40.81678,-73.94246,Private room,85,1,7,2019-04-02,0.62,2,180 +26603881,SPACIOUS 3 BR APT 5 MNS TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.80269,-73.94687,Entire home/apt,300,2,0,,,3,353 +26603929,UWS Cozy room near Columbia UNIVERSITY***,199946021,Joe,Manhattan,Upper West Side,40.79978,-73.96295,Private room,52,1,64,2019-06-23,5.42,3,11 +26604019,Home away from home,40398107,Joey,Brooklyn,Midwood,40.61615,-73.95997,Entire home/apt,70,1,1,2018-07-17,0.08,1,0 +26604063,Private room close to Columbia university **,199946021,Joe,Manhattan,Upper West Side,40.79972,-73.96281,Private room,76,1,76,2019-06-16,6.28,3,16 +26604446,Spacious and close to everything,200018869,Vivian,Bronx,Claremont Village,40.84171,-73.91159,Private room,150,1,0,,,1,363 +26606648,"Big, Pretty & Right in the City!",7718759,Kelly,Manhattan,Harlem,40.82763,-73.94404,Private room,63,1,19,2019-07-02,7.92,2,16 +26606845,NYC Guest Suite with Loft-Free Ferry to Manhattan,50756378,Nina,Staten Island,Clifton,40.61543,-74.08513,Entire home/apt,100,2,5,2019-05-19,0.43,7,312 +26607493,LES - Lower East Side,73269245,Borna,Manhattan,Chinatown,40.71443,-73.99348,Private room,55,7,1,2018-08-15,0.09,1,0 +26607877,COZY ROOM 5 MNS WALK TO CENTRAL PARK NORTH,17344881,El,Manhattan,Harlem,40.80367,-73.94803,Private room,90,3,6,2019-01-02,0.60,3,353 +26608031,Charming Upper Manhattan Apartment,200049516,Talia,Manhattan,Washington Heights,40.83958,-73.94596,Entire home/apt,110,3,4,2018-11-24,0.33,1,0 +26608302,❤️ A Warm Place to Stay. A Clean & Sunny RM,137358866,Kazuya,Queens,Woodside,40.74461,-73.90648,Private room,48,30,0,,,103,238 +26608589,Midtown 45 Manhattan with a view,173227728,Loretta,Manhattan,Midtown,40.75157,-73.97134,Private room,250,3,0,,,1,5 +26609429,Cozy home in UWS,199584723,Rachel,Manhattan,Upper West Side,40.79577,-73.97403,Private room,66,6,6,2018-08-26,0.49,1,0 +26619987,One big and comfy bedroom located in queens NY!!,176189568,Lina,Queens,Elmhurst,40.74295,-73.87812,Private room,130,2,0,,,1,358 +26622664,The house of Tranquility,17768644,Ankeen,Brooklyn,Flatbush,40.6533,-73.95534,Entire home/apt,65,2,1,2018-07-21,0.08,1,0 +26623526,apartment in ft Greene. Close to park and subway,952381,Elik,Brooklyn,Fort Greene,40.68705,-73.97336,Entire home/apt,133,28,6,2019-06-10,0.52,1,307 +26627587,RH COZY HOME,199954647,Danny,Queens,Richmond Hill,40.69666,-73.83415,Entire home/apt,100,3,15,2019-01-01,1.33,1,0 +26627762,Comfy Quiet Private Room in 3 bd/rm Apt.,200166257,Bryan,Manhattan,Washington Heights,40.85466,-73.92771,Private room,30,2,1,2018-07-30,0.09,1,0 +26630310,Beautiful Private room in Brooklyn,128883588,Zara,Brooklyn,Bedford-Stuyvesant,40.69185,-73.95896,Private room,75,10,0,,,1,17 +26632496,Cozy Brooklyn Nook w/Quick Manhattan Access,85852354,Janli,Brooklyn,Downtown Brooklyn,40.69032,-73.9871,Private room,85,2,26,2019-05-31,2.39,1,0 +26632917,Casa Maritza,47924569,Marco,Brooklyn,East Flatbush,40.64629,-73.932,Entire home/apt,125,3,18,2019-06-22,1.53,1,48 +26633920,Sunny studio apartment in Greenpoint BK,7117901,Krista,Brooklyn,Greenpoint,40.72878,-73.95823,Entire home/apt,137,3,0,,,1,0 +26635476,Newly Renovated Apartment in Upper Manhattan!,57322447,Matthew,Manhattan,Inwood,40.86159,-73.92616,Entire home/apt,100,4,3,2018-10-31,0.26,1,0 +26635867,Prospect Park Oasis in the City,2208401,Sarah & Bruce,Brooklyn,Prospect-Lefferts Gardens,40.66113,-73.96277,Entire home/apt,125,2,11,2019-04-28,0.94,1,0 +26638676,Home Sweat Home,46970670,Jasmine,Manhattan,Battery Park City,40.71106,-74.0157,Entire home/apt,91,28,5,2019-05-16,0.41,1,47 +26639925,Esteem's Place Deux,141615596,Esteem,Bronx,Parkchester,40.83791,-73.85845,Private room,26,1,14,2019-06-13,1.24,2,311 +26640189,Comfy Clinton Hill Master Suite,147059964,Candi,Brooklyn,Bedford-Stuyvesant,40.69418,-73.96069,Private room,66,1,3,2019-04-07,0.36,3,0 +26640231,Magic at the Castle: private bedroom and bathroom,27964506,Ally,Bronx,Throgs Neck,40.81639,-73.81954,Private room,60,1,13,2019-06-30,1.09,1,35 +26640272,Modern NYC Living in Soho/ Noho/West Village,19433714,Jeff,Manhattan,Greenwich Village,40.727,-73.99767,Private room,150,3,30,2019-06-06,2.64,3,20 +26641303,Chic Designer Lower East Side Studio,7612089,Daniella,Manhattan,Lower East Side,40.71769,-73.99148,Entire home/apt,222,1,3,2018-12-30,0.26,1,0 +26641779,Clean and modern space in Clinton Hills,182152235,Tyrone,Brooklyn,Bedford-Stuyvesant,40.6886,-73.95884,Entire home/apt,148,2,38,2019-07-01,3.28,2,102 +26642831,The Best Place to stay in Manhattan,502829,Ildiko,Manhattan,Upper West Side,40.79083,-73.97531,Entire home/apt,225,3,3,2019-05-06,0.42,1,330 +26643374,Williamsburg Modern Apt - same block as L/G train.,14927030,Bianca,Brooklyn,Williamsburg,40.71364,-73.95126,Entire home/apt,200,5,0,,,1,103 +26645876,Lucky Home 像纽约有个温馨的家 安静整洁 Sunshine lovely Comfort,88576580,Anna,Queens,Flushing,40.75607,-73.82212,Private room,60,1,3,2018-08-19,0.28,2,0 +26654670,Cozy Room Great Price in Bushwick Bklyn! (Suite 2),44123062,Oscar,Brooklyn,Bushwick,40.68796,-73.90781,Private room,45,4,47,2019-07-02,4.37,4,20 +26655705,CESAR'S PALACE,24195130,Cesar,Bronx,Pelham Gardens,40.86153,-73.83656,Entire home/apt,102,1,50,2019-06-23,4.19,1,349 +26658854,Sunny well-located room near Times Sq. 41D2,190921808,John,Manhattan,Chelsea,40.75369,-73.99719,Private room,50,7,11,2019-06-22,0.99,47,358 +26659521,"LongTerm-25DaysMin +Chinatown,Soho,LittleItaly,LES",197400421,Ben,Manhattan,Chinatown,40.71509,-73.99986,Private room,100,25,0,,,2,333 +26660828,AIRY & BREEZY,19739033,Fifi,Manhattan,Harlem,40.81265,-73.95261,Entire home/apt,250,2,3,2019-04-01,0.31,2,0 +26662052,Beautiful room in Bushwick right next to JMZ train,19704368,Zephyr,Brooklyn,Bushwick,40.69227,-73.92521,Private room,44,5,3,2018-09-19,0.25,1,4 +26662711,Cozy Studio near Hudson River & Central Park,104117770,Dara,Manhattan,Hell's Kitchen,40.7686,-73.98951,Entire home/apt,130,4,7,2019-03-24,0.59,1,0 +26663094,"Great room in Bushwick, Brooklyn.",107579819,Tal,Brooklyn,Bushwick,40.69417,-73.92589,Private room,55,5,6,2019-05-01,0.51,2,0 +26663507,Bright and spacious Bushwick apartment,1116256,Fernando,Brooklyn,Bushwick,40.70618,-73.91689,Entire home/apt,78,30,1,2018-08-19,0.09,1,6 +26664229,Queens Center 25 min to Manhattan 5min to subway!,200439496,Richard,Queens,Elmhurst,40.73744,-73.87247,Entire home/apt,165,30,14,2019-06-30,1.15,1,242 +26664580,Twin Cabin One,51913826,The Bowery House,Manhattan,Nolita,40.72242,-73.99463,Private room,84,1,0,,,8,0 +26664837,Great renovated apartment 1 block away from train,17926275,Jessica,Manhattan,Washington Heights,40.85116,-73.93457,Entire home/apt,90,3,7,2019-06-26,0.64,1,6 +26665072,"Airy, sun-drenched brownstone apt w/ private deck",8060373,Tiffany,Brooklyn,Fort Greene,40.6896,-73.97238,Private room,150,14,0,,,1,0 +26665387,3 Level Loft♦♦♦Private Terrace W/views ♦♦♦Flatiron,158687034,Eric,Manhattan,Midtown,40.74493,-73.9824,Entire home/apt,500,5,39,2019-06-30,3.24,1,114 +26665588,Beautiful Convenient Bushwick Oasis w/Trampoline,7054114,Alex,Brooklyn,Bushwick,40.69286,-73.92675,Private room,75,1,22,2019-07-01,9.17,1,70 +26665850,Secured Apartment Queens NY - 15 mins from JFK.,200453889,Mary,Queens,Jamaica,40.69066,-73.78759,Private room,44,5,8,2018-12-08,0.68,1,314 +26666333,Williamsburg sunny bedroom,9034275,Arnaud,Brooklyn,Williamsburg,40.71674,-73.95825,Private room,75,3,2,2019-03-04,0.19,1,0 +26667693,"Prime Location Cozy, Posh, Upper East Side Room1",200465032,Jack,Manhattan,Upper East Side,40.78369,-73.95154,Private room,120,2,58,2019-06-30,4.96,3,354 +26668018,"Prime Location Cozy, Posh, Upper East Side Room 2",200465032,Jack,Manhattan,Upper East Side,40.78352,-73.95275,Private room,120,2,57,2019-07-01,4.76,3,351 +26668116,"Prime Location Cozy, Posh, Upper East Side Room3",200465032,Jack,Manhattan,Upper East Side,40.78394,-73.95137,Private room,110,2,49,2019-06-30,4.06,3,358 +26668703,Red Hook Loft,6354758,Molly,Brooklyn,Red Hook,40.67966,-74.00641,Private room,125,7,1,2018-09-01,0.10,1,45 +26669041,A Cozy Single bed for Female Girls,200479961,Fei,Brooklyn,East New York,40.6757,-73.87657,Shared room,25,2,26,2019-06-04,2.25,1,50 +26669199,HouseOfGrace,200483536,Sien,Manhattan,East Village,40.72307,-73.98437,Private room,89,1,12,2019-05-04,1.07,1,160 +26670401,Spacious room in center of the city,161057073,Stella,Manhattan,Lower East Side,40.7216,-73.98791,Private room,81,2,26,2019-06-24,2.29,4,61 +26670812,Lucky home 温馨如家,88576580,Anna,Queens,Flushing,40.75432,-73.82273,Private room,60,1,1,2018-08-15,0.09,2,0 +26679556,Very Sunny Apt on UWS,4231845,Yann,Manhattan,Morningside Heights,40.80494,-73.96426,Entire home/apt,95,2,2,2018-08-15,0.18,1,0 +26681364,Large room near Times Square 31C4,190921808,John,Manhattan,Hell's Kitchen,40.75544,-73.99511,Private room,75,7,3,2018-10-24,0.29,47,348 +26681846,Large cozy room in the center of NYC 21B2,190921808,John,Manhattan,Hell's Kitchen,40.75492,-73.99563,Private room,80,7,7,2019-05-25,0.66,47,329 +26682755,perfectly located right next to Main st Flushing,161899037,Tony,Queens,Flushing,40.75637,-73.83208,Entire home/apt,159,2,22,2019-06-09,1.83,7,58 +26682918,Sunny Private Bedroom Near Manhattan,200600695,Carolina,Queens,Sunnyside,40.74122,-73.92223,Private room,80,1,11,2019-06-23,0.93,1,346 +26683178,Garden level Brooklyn apartment,13093738,Alex,Brooklyn,Boerum Hill,40.68563,-73.98796,Entire home/apt,165,4,2,2018-12-20,0.19,1,0 +26685276,Large eclectic plant filled home w private rooftop,7620548,Lena,Queens,Ridgewood,40.69212,-73.90188,Entire home/apt,170,7,0,,,1,10 +26685314,Bedroom minutes to Manhattan - steps to train,200621725,Sue,Brooklyn,Williamsburg,40.71215,-73.94082,Private room,69,2,70,2019-06-20,5.79,2,30 +26687229,A real East Village experience on St Marks Place!,2326551,Laura,Manhattan,East Village,40.7277,-73.98362,Entire home/apt,140,1,38,2019-06-23,3.27,2,101 +26688045,Cozy & Gorgeous Girls room Near Train / Manhattan,137358866,Kazuya,Queens,Woodside,40.74465,-73.90795,Private room,39,30,0,,,103,0 +26688805,Beautiful Bedstuy Brooklyn Bedroom,153900772,Stacy,Brooklyn,Bedford-Stuyvesant,40.68208,-73.92116,Private room,50,2,4,2018-08-27,0.35,1,0 +26689265,Sunny 1.5 Bed Bushwick Brooklyn Railroad,2622041,Elizabeth,Brooklyn,Bushwick,40.70204,-73.91684,Entire home/apt,135,2,10,2019-04-28,0.97,1,15 +26689797,Harlem Bliss,28713609,Irma,Manhattan,East Harlem,40.8018,-73.9413,Entire home/apt,120,2,25,2019-06-11,2.06,1,6 +26690336,Cozy Sunnyside Couples Bedroom w/ Great Location,137358866,Kazuya,Queens,Sunnyside,40.7351,-73.92039,Private room,39,30,1,2019-03-01,0.23,103,0 +26690488,"Large, Eco-Friendly, Vintage Apt near Bushwick",3329478,Emily,Queens,Ridgewood,40.70527,-73.90083,Private room,69,2,22,2019-02-01,1.92,1,16 +26690586,Ionic Room close to NYC,183321912,Iris,Brooklyn,Bedford-Stuyvesant,40.68746,-73.95379,Private room,65,30,30,2019-05-31,2.71,2,361 +26691677,Small 3rd story Room off BRKLYN-QUEENS Expressway,56616801,James,Brooklyn,Greenpoint,40.72414,-73.93967,Private room,25,1,4,2018-10-29,0.34,1,0 +26691866,"Prospect Heights / Brooklyn Botanical Garden $ Prospect Park West +#kuetheresidence",3664407,Katia,Brooklyn,Prospect Heights,40.67367,-73.96507,Entire home/apt,120,3,13,2019-06-18,1.09,1,9 +26692070,SUPER COZY LUXURY APT WALL ST. WITH GYM/ROOFTOP,200683024,Ezgin,Manhattan,Financial District,40.70496,-74.00639,Entire home/apt,128,5,36,2019-06-13,3.06,1,136 +26692402,Light Filled Upper East Side Studio,6788748,Erica,Manhattan,Upper East Side,40.77668,-73.94587,Entire home/apt,125,30,9,2019-06-16,0.82,1,4 +26693195,Modern Bedroom in Townhouse. Close to subway.,200697707,Carles,Brooklyn,Bushwick,40.68764,-73.91445,Private room,65,1,57,2019-06-24,4.76,1,48 +26694068,Beautiful cozy 3 bedrooms steps from Industry City,199147185,Lou,Brooklyn,Sunset Park,40.66214,-73.99511,Entire home/apt,172,1,34,2019-06-20,3.07,5,133 +26696254,Upscale Spacious Condo in the Heart of Brooklyn,160683712,Dejuan,Brooklyn,Bedford-Stuyvesant,40.68291,-73.91975,Entire home/apt,150,2,8,2018-10-15,0.68,1,84 +26703677,Camp Rockaway,200754542,Kent,Queens,Breezy Point,40.56605,-73.86994,Private room,195,1,4,2019-06-15,0.35,2,160 +26705460,A+ Location - Cozy Brooklyn Room with Great Access,106609860,Jeremy,Brooklyn,Gowanus,40.67779,-73.98342,Private room,60,2,37,2019-06-20,3.27,1,54 +26706133,Beautiful brand new apartment !,199147185,Lou,Brooklyn,Sunset Park,40.66362,-73.99616,Entire home/apt,330,1,1,2018-11-04,0.12,5,174 +26708055,2 BR - Manhattan Upper West Side - Bright & Quiet,145237476,Margaux,Manhattan,Upper West Side,40.79782,-73.97179,Entire home/apt,195,2,1,2019-01-01,0.16,1,3 +26709233,Sunny house,200826881,Cheolwoo,Queens,Elmhurst,40.74579,-73.88904,Entire home/apt,60,3,16,2019-07-07,1.42,1,40 +26710580,Dream House Midtown,22800762,Mary,Manhattan,Hell's Kitchen,40.76484,-73.98969,Entire home/apt,220,4,0,,,1,0 +26713367,Artistic + Chic Flat in East Village w/ Backyard,197547562,Galina,Manhattan,East Village,40.72382,-73.97683,Private room,110,2,7,2019-05-15,0.79,1,89 +26715133,Beautiful Apartment In Nolita for 4 Guests,10457196,Richard,Manhattan,Chinatown,40.71765,-73.99457,Entire home/apt,154,30,3,2019-05-29,0.30,11,113 +26715682,1BR private apartment,131522515,Marina,Brooklyn,Gravesend,40.59166,-73.96672,Entire home/apt,76,2,26,2019-06-23,2.22,1,323 +26716338,* Lovely Washington Heights Room *,116308258,Aida,Manhattan,Washington Heights,40.83298,-73.93938,Private room,70,7,2,2018-08-28,0.18,1,0 +26717112,Modern Brooklyn Loft in Full-Service Elev Bldg,83076690,Stacie,Brooklyn,Prospect Heights,40.68219,-73.97259,Entire home/apt,220,3,6,2019-07-01,0.52,1,0 +26717141,"Cozy Room: 7 Minutes to LGA, 20 min to Manhattan !",65671256,Freddy,Queens,Jackson Heights,40.75782,-73.85973,Private room,55,1,55,2019-07-02,4.98,3,136 +26717498,studio apartment,51278311,Sven,Brooklyn,Gowanus,40.66873,-73.99263,Entire home/apt,55,9,0,,,1,0 +26717562,"Cathedral ceiling, very large Chelsea apartment",102763548,Tugrul,Manhattan,Chelsea,40.7433,-74.00119,Entire home/apt,270,5,0,,,1,46 +26717696,"Prime Location 67 St & 3 Ave, walk to Central Park",477865,Irina,Manhattan,Upper East Side,40.76663,-73.96171,Entire home/apt,99,4,4,2019-04-02,0.35,1,2 +26717970,An artist retreat in the heart of Bushwick,51412807,Daniel,Brooklyn,Bushwick,40.69826,-73.91944,Entire home/apt,95,2,40,2019-03-25,3.32,1,0 +26718375,1 Bedroom 2R in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69074,-73.93858,Private room,118,1,20,2019-06-03,1.90,6,285 +26719190,Harlem Gem,200840286,Danielle,Manhattan,Harlem,40.80705,-73.95582,Private room,80,2,42,2019-06-26,4.92,1,13 +26719426,"Private apartment, complimentary parking included.",180775831,Kyle,Queens,Flushing,40.75396,-73.83361,Entire home/apt,60,1,40,2019-06-23,3.46,1,15 +26721080,Private Room,44630233,George,Brooklyn,Williamsburg,40.7073,-73.92776,Private room,20,1,8,2018-10-11,0.73,1,1 +26728369,"New York private room in Park slope, City views",26437452,Sandee,Brooklyn,Gowanus,40.67118,-73.99061,Private room,70,4,14,2019-05-27,1.16,1,0 +26734103,Best spot in town: Bunk in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69103,-73.93933,Shared room,33,1,33,2019-06-02,2.78,17,85 +26734288,Super cool shared apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69099,-73.94094,Shared room,30,2,32,2019-06-23,2.66,17,85 +26734461,Great Sunny Brooklyn Room minutes from the City!,18747710,Jessica,Brooklyn,Carroll Gardens,40.67834,-73.99761,Private room,98,2,21,2019-07-05,2.10,2,73 +26735127,2 BEDS Y- SUNNY ROOM NEAR TRAIN TO MANHATTAN,201024308,William And Julian,Brooklyn,Bedford-Stuyvesant,40.68574,-73.95492,Private room,70,2,28,2019-06-23,2.30,1,334 +26735305,Private 1 Bd Guest House. Great for Quiet Getaway,34313176,Eddie,Queens,Rego Park,40.71734,-73.86,Entire home/apt,110,2,12,2019-03-25,1.02,4,332 +26735765,Bright room in beautiful Park Slope apartment,15500498,Tiffany,Brooklyn,Sunset Park,40.65828,-73.98983,Private room,55,2,7,2018-11-04,0.58,1,0 +26737188,Brand New Brooklyn Style Hostel RM3 #1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69414,-73.9556,Shared room,40,3,10,2019-06-15,0.93,34,332 +26739023,Cozy Studio Apartment in Great Location!!!,50770601,Diana,Manhattan,Gramercy,40.73714,-73.97962,Entire home/apt,189,1,11,2019-06-06,1.51,5,312 +26739075,Brand New Brooklyn Style Hostel RM3 #2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69385,-73.95696,Shared room,36,1,18,2019-05-01,1.53,34,365 +26739303,SUNNY ROOM C - GREAT LOCATION RIGHT NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69373,-73.95041,Private room,65,30,35,2019-06-17,3.04,3,348 +26741049,Josh & Charlotte's Place,200193940,Josh,Brooklyn,Bedford-Stuyvesant,40.69361,-73.93441,Private room,49,2,44,2019-07-07,4.43,1,73 +26741585,Super Convenient Park Slope Room,62587696,Andrew,Brooklyn,Gowanus,40.67077,-73.98969,Private room,52,2,53,2019-07-03,5.26,2,13 +26741642,Luxury Historic Brooklyn Apt in Bed Stuy - Legal,3073952,Christof,Brooklyn,Bedford-Stuyvesant,40.68069,-73.91045,Entire home/apt,97,1,27,2019-06-30,5.66,2,62 +26742074,"Cozy clean bright room Bushwick, blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69444,-73.93247,Private room,80,20,9,2019-06-09,0.78,4,154 +26743115,"Upper East 1 Bedroom Apartment, Near Central Park!",50770601,Diana,Manhattan,Upper East Side,40.77359,-73.94865,Entire home/apt,189,1,1,2019-03-13,0.25,5,365 +26743342,Brand New Brooklyn Style Hostel RM3 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69396,-73.95578,Shared room,35,1,16,2019-07-06,1.34,34,346 +26743564,Brand New Brooklyn Style Hostel RM3 #3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69439,-73.95518,Shared room,36,3,14,2019-05-06,1.24,34,361 +26743587,"Private, Modern, Garden Apt - Historic Ditmas Park",201083646,Hilary,Brooklyn,Flatbush,40.6417,-73.96554,Entire home/apt,150,4,18,2019-06-18,1.57,1,52 +26743617,BRAND NEW LUXE 2BR/2 BA APARTMENT IN BUSHWICK,16713332,Tabea,Brooklyn,Bushwick,40.69701,-73.93002,Entire home/apt,100,12,1,2019-01-06,0.16,2,0 +26743638,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68579,-73.95038,Private room,60,30,1,2019-03-19,0.27,8,217 +26743923,Freehand New York- Bunk Room,164291123,Freehand,Manhattan,Flatiron District,40.74107,-73.98693,Private room,179,1,35,2019-05-26,3.11,3,331 +26744053,Private Room,200933726,Momo,Bronx,Allerton,40.86659,-73.866,Private room,34,2,0,,,1,0 +26744721,"Gorgeous studio ""Hamptons style"" in West Village",8305252,Lauren,Manhattan,West Village,40.73611,-74.00922,Entire home/apt,200,3,26,2019-06-23,2.14,1,67 +26745686,Huge 1 Bedroom 2F in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93943,Private room,123,2,32,2019-06-03,2.72,6,251 +26747129,Charming and Cozy Private Clinton Hills Studio,201116493,Andrea,Brooklyn,Clinton Hill,40.68305,-73.96316,Entire home/apt,80,14,2,2018-12-31,0.19,1,0 +26747248,Red Hook studio space with private entrance,3830753,Roberto,Brooklyn,Red Hook,40.675,-74.01127,Entire home/apt,90,4,32,2019-06-24,2.75,1,107 +26747415,Near LGA and JFK Airports Large Cozy Room,194377255,Jimmy,Queens,East Elmhurst,40.76071,-73.88406,Private room,40,1,104,2019-07-04,8.64,4,351 +26748151,Sun-Filled Artist Loft in Private Townhouse,24187602,Cyril,Manhattan,West Village,40.73865,-74.00662,Entire home/apt,490,2,15,2019-06-05,1.48,1,179 +26748374,"Cabin Feels +Sunset Views +By Greenwood cemetery +<3",183563796,Michal,Brooklyn,Borough Park,40.64282,-73.98779,Entire home/apt,70,2,2,2019-01-02,0.19,1,0 +26748389,Sunny Pre-War Carroll Gardens Apartment,18747710,Jessica,Brooklyn,Carroll Gardens,40.67995,-73.99665,Entire home/apt,188,2,7,2019-05-11,0.59,2,19 +26749031,Bright Bedroom Steps to train Minutes to Manhattan,200621725,Sue,Brooklyn,Williamsburg,40.7132,-73.94164,Private room,69,2,75,2019-06-21,6.20,2,15 +26749730,KID-friendly 2BR apartment - heart of Williamsburg,8654731,Juan,Brooklyn,Williamsburg,40.70945,-73.95843,Entire home/apt,289,30,32,2019-04-21,3.06,1,60 +26749932,Ju Ju Shala in Williamsburg,201142263,Pablo,Brooklyn,Williamsburg,40.70761,-73.95337,Private room,130,2,8,2019-06-26,0.68,1,86 +26750369,Lovely Private Room in Heart of Prospect Heights!,4537638,Rachel,Brooklyn,Prospect Heights,40.67762,-73.96539,Private room,75,2,4,2018-09-01,0.37,1,0 +26750461,Manhattan view from Queens- 15 min from NYC & BK,40643524,Mary,Queens,Sunnyside,40.73758,-73.92821,Shared room,79,2,1,2018-07-22,0.09,1,0 +26750638,This is a beautiful condo with a lot of mirror,45093051,Vincent,Manhattan,Harlem,40.80045,-73.95166,Private room,100,1,13,2019-06-30,1.13,2,351 +26750740,Bon Séjour,201138200,Paul,Manhattan,Financial District,40.70413,-74.0134,Private room,995,1,0,,,1,365 +26751201,Cozy apartment in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76538,-73.92726,Entire home/apt,150,2,46,2019-06-21,3.84,2,121 +26753081,Trendy Nabe Bunk for travelers,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69124,-73.93911,Shared room,21,1,35,2019-06-20,2.92,17,78 +26753210,Spacious studio by the ocean,32936693,Polina,Brooklyn,Brighton Beach,40.57951,-73.95663,Entire home/apt,68,25,4,2019-03-13,0.37,1,0 +26753414,Williamsburg Sizable Bedroom w/ Outdoor Space,75590434,Michael,Brooklyn,Williamsburg,40.71256,-73.95121,Private room,135,4,11,2019-07-01,0.99,1,5 +26754406,Midtown NYC Loft,126962637,Mathew,Manhattan,Murray Hill,40.74849,-73.97873,Entire home/apt,145,3,28,2019-06-19,2.43,1,43 +26754694,"COZY AND ELEGANCE PLACE NEAR JFK, LGA",173290675,Charlie,Queens,Woodhaven,40.69883,-73.85142,Private room,45,2,8,2019-05-10,0.81,3,50 +26755667,Private room in Friendly Apartment!,72157489,Yvonne,Brooklyn,Bushwick,40.69327,-73.91599,Private room,50,1,3,2018-07-30,0.25,2,250 +26755790,vicky客栈2,180991373,Vicky,Queens,Flushing,40.74298,-73.82306,Private room,60,1,26,2019-07-07,2.34,5,46 +26756045,vicky客栈3,180991373,Vicky,Queens,Flushing,40.74294,-73.82318,Private room,49,1,25,2019-07-05,2.12,5,46 +26756339,vicky客栈5,180991373,Vicky,Queens,Flushing,40.74247,-73.82439,Private room,40,1,52,2019-07-07,4.32,5,15 +26756446,"Cozy bedroom mins to Manhattan, one block to train",201203968,William,Brooklyn,Williamsburg,40.7127,-73.94034,Private room,62,2,64,2019-06-10,5.35,2,26 +26756546,Central Park Treasure,77106920,Jennifer,Manhattan,Harlem,40.80626,-73.95268,Entire home/apt,345,3,12,2019-05-29,1.01,1,37 +26757594,A Great Room,199833548,Syeda,Queens,Sunnyside,40.74136,-73.92476,Private room,80,1,27,2019-06-05,2.40,9,309 +26757602,A room for rest before you wander,9541963,Rebecca,Brooklyn,Crown Heights,40.6746,-73.9474,Entire home/apt,90,1,51,2019-07-07,4.47,1,2 +26758154,A Private Room,199833548,Syeda,Queens,Sunnyside,40.74046,-73.9251,Private room,60,1,25,2019-06-22,2.23,9,336 +26766865,Large Secured Condominium Studio,198257022,Henry,Bronx,University Heights,40.8612,-73.91065,Entire home/apt,150,1,6,2018-11-10,0.53,1,191 +26768387,Prime Bushwick Artist’s Pad,50601648,Creighton,Brooklyn,Bushwick,40.68904,-73.92037,Private room,68,3,16,2019-06-03,1.40,1,139 +26769087,Chic Upper West Side living.,647918,Rohan,Manhattan,Upper West Side,40.77782,-73.98762,Private room,150,1,4,2019-02-03,0.38,1,0 +26770045,Beautiful Williamsburg 1BR - Huge and Sunny,1465316,Alex,Brooklyn,Williamsburg,40.71433,-73.95679,Entire home/apt,120,7,3,2019-01-04,0.43,1,230 +26770455,Very large room & apartment close to Central Park!,46844755,Bhavin,Manhattan,Midtown,40.76448,-73.97907,Private room,70,1,1,2018-07-23,0.09,1,90 +26771228,WV apt available July 24th to Aug 24th,144674348,Cristin,Manhattan,West Village,40.73132,-74.00429,Entire home/apt,200,15,0,,,1,0 +26772477,Full Cabin One,51913826,The Bowery House,Manhattan,Nolita,40.72271,-73.99412,Private room,109,1,2,2018-07-29,0.17,8,0 +26773228,NYC Large private bedroom & bathroom,90439931,Jasmine,Queens,Ditmars Steinway,40.77329,-73.91183,Entire home/apt,74,3,3,2018-09-03,0.25,1,41 +26774025,Big Apple Slice of History with Breakfast Included,201315040,Carmen,Manhattan,East Village,40.72493,-73.97571,Private room,125,2,26,2019-06-19,2.23,1,118 +26774439,Full Cabin Two,51913826,The Bowery House,Manhattan,Nolita,40.72315,-73.99454,Private room,109,1,1,2019-02-10,0.20,8,0 +26774653,"Bright, Spacious Apartment in Brooklyn",27742407,Filippo,Brooklyn,Clinton Hill,40.68453,-73.96773,Entire home/apt,120,5,2,2018-09-14,0.19,1,13 +26775087,SUNNY ROOM B - GREAT LOCATION RIGHT NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69526,-73.95119,Private room,65,30,15,2019-05-19,1.42,3,328 +26775656,"Bright, Private Bedroom in Bushwick Proper",10457486,Kevin,Brooklyn,Bushwick,40.69808,-73.92417,Private room,47,1,17,2019-06-11,1.63,1,106 +26776752,Private Room in Nolita/Soho (+ Balcony/Roof Deck),1462999,Ilya,Manhattan,Nolita,40.72341,-73.99426,Private room,120,4,37,2019-06-21,3.22,1,78 +26776816,Private 3B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75998,-73.98952,Private room,110,1,73,2019-06-22,6.48,12,187 +26776819,Private 3A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76187,-73.98984,Private room,110,1,54,2019-06-23,4.84,12,251 +26777200,Private 3C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.7601,-73.99166,Private room,115,1,59,2019-06-20,5.25,12,194 +26777328,Private 3D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75955,-73.99022,Private room,105,1,67,2019-06-18,5.98,12,241 +26777561,Simple + Cute + Spacious Studio (perfect for 1-2),201350300,Yeena,Manhattan,Upper West Side,40.7862,-73.98089,Entire home/apt,119,3,6,2019-06-23,0.57,1,0 +26777948,Comfortable Studio Apartment,120035273,Ral,Bronx,Edenwald,40.89245,-73.83721,Entire home/apt,42,1,32,2019-06-20,2.74,1,32 +26778845,Williamsburg apartment with roof terrace,2478942,Francesca,Brooklyn,Williamsburg,40.71085,-73.96136,Private room,65,4,10,2019-05-28,0.87,1,5 +26779327,Large artsy basement room close to subway,2886359,David,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91618,Private room,54,1,15,2019-07-08,1.81,2,13 +26779818,NEW Bright West Village 2 Bed,201369441,Teddy,Manhattan,West Village,40.7383,-74.00131,Entire home/apt,325,2,9,2018-12-05,0.76,1,0 +26780175,"Sunny, Spacious Town Home w. Private Backyard!",119673533,David,Brooklyn,Sunset Park,40.66236,-73.99109,Entire home/apt,265,2,4,2018-12-30,0.42,1,0 +26780625,Suite/English basement in Brooklyn townhouse,58857346,Rachel,Brooklyn,Kensington,40.6451,-73.97064,Private room,95,3,19,2019-06-30,1.61,1,85 +26780658,Cozy gem in Greenwich Village @ border of SoHo,27960761,Christopher,Manhattan,Greenwich Village,40.72704,-73.99672,Entire home/apt,199,2,9,2019-04-23,0.82,3,0 +26780660,NEW! HUGE DESIGN LOFT w/ Rooftop in Williamsburg,2127180,Fleur,Brooklyn,Williamsburg,40.71308,-73.94458,Entire home/apt,125,9,5,2019-04-14,0.42,1,59 +26781602,Cozy apartment in the East Village,16149213,David,Manhattan,East Village,40.72541,-73.98398,Entire home/apt,174,2,6,2019-05-19,2.12,1,5 +26782162,"Near JFK & LaGuardia airport, cozy studio-style",27558716,Nhia,Queens,Queens Village,40.70946,-73.74837,Private room,50,1,47,2019-07-01,3.96,1,348 +26782911,Apartment in Brooklyn Brownstone & Rooftop Views,3955425,Meredith,Brooklyn,Crown Heights,40.67435,-73.95087,Entire home/apt,140,2,7,2018-12-31,0.59,1,7 +26783332,"Huge, Bright, clean Bushwick blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69517,-73.93248,Private room,95,20,11,2019-05-06,0.92,4,244 +26783354,Great apartment in the heart of trendy Bushwick.,129403630,David,Brooklyn,Bushwick,40.70145,-73.92,Entire home/apt,120,2,10,2018-11-05,0.83,1,3 +26784218,Compact Comfy Cute Private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.64165,-74.00922,Private room,39,2,6,2019-04-01,0.53,5,224 +26784269,Brooklyn Retreat,37834029,Thom & Moses,Brooklyn,Bedford-Stuyvesant,40.68393,-73.9553,Private room,75,3,49,2019-07-05,4.18,1,71 +26784504,Spacious and Comfy private room in Brooklyn Ctown,201403610,青明,Brooklyn,Sunset Park,40.63985,-74.01094,Private room,65,2,10,2019-05-19,0.85,5,186 +26784754,Comfy Bunk Bed private room in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.63986,-74.01064,Private room,58,2,10,2019-05-28,0.92,5,232 +26784985,Private Red Hook Guest Suite,135739716,Pavel,Brooklyn,Red Hook,40.67856,-74.01584,Entire home/apt,100,3,17,2019-06-04,1.42,1,6 +26785111,"1 BR, Williamsburg.",44492422,Florencia,Brooklyn,Williamsburg,40.70918,-73.96135,Private room,73,5,1,2018-11-09,0.12,1,249 +26785149,Bright Spacious Private room in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.641,-74.00925,Private room,65,2,12,2019-06-10,1.02,5,262 +26785267,Comfy and Bright Bedroom in Brooklyn Chinatown,201403610,青明,Brooklyn,Sunset Park,40.64101,-74.01049,Private room,57,2,16,2019-06-05,1.35,5,222 +26786123,Comfy brand new designer duplex 2 min from L train,1809268,Célestine,Brooklyn,Bushwick,40.69433,-73.90649,Private room,60,3,5,2018-12-02,0.43,1,0 +26786737,Harmonious Room,183321912,Iris,Brooklyn,Bedford-Stuyvesant,40.68749,-73.95467,Private room,65,30,29,2019-06-05,2.51,2,362 +26787336,room & private bathroom in a beautlful space,22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69471,-73.933,Private room,100,3,4,2018-08-10,0.33,7,109 +26787347,Oasis in the heart of Bed-Sty,201419214,Bryant,Brooklyn,Clinton Hill,40.68389,-73.96201,Private room,185,30,0,,,3,347 +26787899,Gourgeous room in Brooklyn,201419214,Bryant,Brooklyn,Clinton Hill,40.6853,-73.96385,Private room,65,30,31,2019-06-03,2.70,3,365 +26788016,Eclectic Room,201419214,Bryant,Brooklyn,Clinton Hill,40.68387,-73.96392,Private room,70,30,27,2019-06-13,2.38,3,347 +26788437,Big Private Room In the Heart of The East Village,201447930,Daniella,Manhattan,East Village,40.72785,-73.98684,Private room,130,2,19,2019-06-25,1.58,2,32 +26788754,Bright clean serene room Bushwick blocks 4rm train,201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93292,Private room,60,20,9,2019-03-29,0.75,4,318 +26788852,Budget apt in PRIME HARLEM NYC location,42537893,Courtney,Manhattan,Harlem,40.8274,-73.95215,Entire home/apt,102,2,14,2019-06-26,1.21,1,293 +26788956,Sun-filled private co-op minutes from JFK and NYC,37678920,Tiffanie,Queens,Jamaica,40.67784,-73.77299,Entire home/apt,100,1,7,2018-10-21,0.60,1,0 +26789136,"Huge, Bright Bushwick 3 Bedroom blocks from train",201079770,HyeSuk & Alex,Brooklyn,Bedford-Stuyvesant,40.69516,-73.93213,Private room,170,5,3,2019-03-29,0.44,4,167 +26793665,Aery Room near all,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68845,-73.95659,Private room,65,30,32,2019-06-03,2.86,3,365 +26794087,cozy room <3,201480794,Genesiss,Brooklyn,Cypress Hills,40.68401,-73.89462,Private room,30,4,5,2019-06-25,1.50,1,0 +26794121,Blisfull Room,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68644,-73.95712,Private room,60,30,25,2019-06-20,2.08,3,0 +26794624,Dreamer Room,201416245,Fransheska,Brooklyn,Bedford-Stuyvesant,40.68862,-73.95572,Private room,65,30,35,2019-06-19,3.06,3,365 +26796641,MASTER PRIVATE BATHROOM - 2 BEDS - NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69526,-73.95155,Private room,90,30,28,2019-07-07,2.37,3,320 +26796818,GREAT LOCATION 1 RIGHT NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69453,-73.95173,Private room,65,30,18,2019-05-10,1.54,3,354 +26802372,Cozy private room near the center of NYC 12AL,190921808,John,Manhattan,Hell's Kitchen,40.7557,-73.99668,Private room,50,3,15,2018-12-16,1.30,47,238 +26802868,Anderson's abode,190085120,Rodney,Bronx,Morrisania,40.82823,-73.90114,Private room,150,2,0,,,1,0 +26803556,Sunny Top Floor Victorian,801975,Elizabeth And Timothee,Brooklyn,Crown Heights,40.67726,-73.94618,Entire home/apt,142,7,11,2019-07-06,1.04,2,219 +26803876,"Brooklyn studio by the park, 30 min to Manhattan",2052361,Katya,Brooklyn,Prospect-Lefferts Gardens,40.65501,-73.95948,Entire home/apt,80,3,2,2019-06-10,0.32,3,0 +26805133,Cozy room in best New York neighborhood Chelsea,40404374,Reda,Manhattan,Chelsea,40.74137,-73.9994,Private room,92,3,8,2019-06-09,0.69,1,125 +26805201,Sunny Room 1 in Cool New Bushwick Building,6726656,Yelle,Brooklyn,Bushwick,40.70136,-73.9269,Private room,70,6,6,2018-11-12,0.50,3,11 +26805522,Bright Luxury Apartment in Williamsburg,126819583,Cydney,Brooklyn,Williamsburg,40.71107,-73.94665,Entire home/apt,275,2,20,2019-06-02,1.83,1,0 +26805568,Large Artist Studio - Prime Midtown Location,52666941,Jennifer,Manhattan,Midtown,40.74952,-73.9713,Entire home/apt,157,5,11,2019-01-01,0.91,1,0 +26805586,Clay's place@Bayswater,147710243,Clayton,Queens,Bayswater,40.60644,-73.76089,Private room,120,2,0,,,1,169 +26806179,Brighton Beach Paradise Apartment - Living Room,76123508,Viktoriya,Brooklyn,Brighton Beach,40.57636,-73.95964,Shared room,100,3,9,2019-07-07,0.78,1,85 +26807614,Twin Cabin with a Window One,51913826,The Bowery House,Manhattan,Nolita,40.72311,-73.99345,Private room,94,1,1,2019-03-24,0.28,8,0 +26807636,"East Village, ground floor, clean private bedroom!",2419727,Tim,Manhattan,East Village,40.72573,-73.98377,Private room,88,7,17,2019-06-24,1.63,1,227 +26807942,Room in East Village,10603974,Daniel,Manhattan,East Village,40.7272,-73.98186,Private room,56,9,4,2019-05-13,0.65,1,0 +26808322,10 MINS TO MANHATTAN! Very private & sunny room.,54640485,Cagkan,Queens,Long Island City,40.75463,-73.93448,Private room,55,3,44,2019-07-01,3.75,1,37 +26808582,Sonder | 116 John | Superior 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70633,-74.00623,Entire home/apt,165,29,0,,,96,332 +26808908,Twin Cabin with a Window Two,51913826,The Bowery House,Manhattan,Nolita,40.72259,-73.99399,Private room,84,1,0,,,8,0 +26809805,Gramercy spacious apt!,19955930,Olivia,Manhattan,Kips Bay,40.74068,-73.98227,Entire home/apt,150,1,5,2019-06-05,0.46,1,23 +26810428,Times Sq. Private Bedroom-Great Location!,201611274,Nick,Manhattan,Hell's Kitchen,40.76475,-73.9932,Private room,244,1,39,2019-06-13,3.35,1,5 +26810466,Bright Midtown East,53883793,Rory,Manhattan,Midtown,40.76085,-73.96627,Entire home/apt,180,2,2,2019-06-10,0.17,1,4 +26810573,自己的小房间,48978249,QianWen,Queens,Flushing,40.75479,-73.81916,Shared room,200,1,0,,,2,89 +26810815,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68537,-73.94974,Private room,60,30,0,,,8,237 +26810987,"Bronx Haven : Near water, accessible to transit",16997863,Tara,Bronx,Castle Hill,40.81518,-73.84758,Entire home/apt,62,3,32,2019-06-23,2.79,1,42 +26811066,Gorgeous Lincoln Center - overlooking Central Park,77559258,Laura,Manhattan,Upper West Side,40.77237,-73.98063,Private room,245,2,0,,,1,89 +26811414,Charming House near Prospect Park,9296262,MIchele,Brooklyn,Windsor Terrace,40.65251,-73.97598,Entire home/apt,145,3,3,2018-08-02,0.26,1,69 +26812320,Sonder | 21 Chelsea | Modern 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74281,-73.99595,Entire home/apt,250,29,0,,,96,312 +26812324,Gorgeous Gramercy Apt,47596725,Owen,Manhattan,Flatiron District,40.73945,-73.98543,Entire home/apt,225,2,12,2019-06-30,1.07,1,5 +26812606,Modern Spacious Studio in the Heart of Chelsea,6720254,Eliran,Manhattan,Chelsea,40.74285,-73.99395,Entire home/apt,69,2,22,2018-12-06,1.94,1,0 +26812923,Your private studio in Manhattan,191765199,Elena,Manhattan,Washington Heights,40.83235,-73.94117,Entire home/apt,96,1,52,2019-06-17,4.37,6,40 +26813190,Bushwick House,11982558,Giorgi,Brooklyn,Bushwick,40.70313,-73.91451,Private room,37,21,1,2019-05-03,0.44,1,36 +26813610,Neat+Nice+Large dining area & 2 min to Subway,19303369,Hiroki,Queens,Woodside,40.74323,-73.90471,Private room,33,37,1,2018-12-15,0.15,37,39 +26814302,Amazing Studio at the Time Square Area/54C,48146336,Irina,Manhattan,Hell's Kitchen,40.76118,-73.99342,Entire home/apt,120,30,3,2019-04-07,0.33,20,346 +26814362,Modern Condo in Sunset Park w/Washer and Dryer,4622765,Gail And Yordanis,Brooklyn,Sunset Park,40.64538,-74.01624,Entire home/apt,180,7,2,2019-04-25,0.71,1,0 +26814599,Sunny and Spacious West Harlem bedroom with a view,156200633,Malik,Manhattan,Harlem,40.81747,-73.95249,Private room,52,3,10,2018-11-27,0.85,1,0 +26814763,One bedroom with full bed / 1 stop from Manhattan,201647469,Danielle,Queens,Long Island City,40.74565,-73.94699,Private room,108,2,13,2019-06-20,1.74,1,333 +26815405,Heart of the City,382836,Chemme,Manhattan,Hell's Kitchen,40.75718,-73.99245,Private room,140,2,4,2018-10-26,0.42,4,365 +26815416,Pinacoladaburgh,201654234,Jessica,Queens,Rockaway Beach,40.58739,-73.81746,Entire home/apt,75,2,35,2019-07-08,2.97,1,125 +26815937,Bear(D)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74544,-73.82244,Private room,48,1,74,2019-07-07,6.20,4,56 +26816742,Cozy living room in the center of Manhattan,42730216,Tatjana,Manhattan,Upper East Side,40.76639,-73.95817,Shared room,150,3,2,2019-06-19,2,2,142 +26816883,"Tour NYC, US Open - clean, comfort, close to all",201667999,Lily2R,Queens,Elmhurst,40.73965,-73.86796,Entire home/apt,60,1,23,2019-06-23,2.00,2,144 +26817803,New Amazing Modern Apartment w/ Backyard,12129877,Andre,Brooklyn,Crown Heights,40.67252,-73.93918,Entire home/apt,110,2,26,2019-06-26,2.21,2,267 +26818747,Cozy Garden Oasis Brooklyn Private 1 Bedroom Apt,9857739,Kelvin,Brooklyn,Sheepshead Bay,40.58884,-73.95136,Entire home/apt,70,2,59,2019-06-23,5.65,1,13 +26819776,Greatest room in the city,201696839,Chloe,Brooklyn,Downtown Brooklyn,40.69608,-73.98384,Private room,100,1,26,2019-06-08,2.27,1,131 +26828006,Brooklyn Duplex with Terrace near Park,748365,Nick,Brooklyn,Crown Heights,40.68055,-73.96425,Entire home/apt,200,30,4,2019-04-15,0.43,1,4 +26828964,NYC Private room with everything included !!,201757076,Soledad,Queens,Briarwood,40.71214,-73.81661,Entire home/apt,93,3,0,,,3,15 +26828970,Harlem Gem,149868,Joseph,Manhattan,Harlem,40.81381,-73.94549,Entire home/apt,125,1,59,2019-06-23,5.55,1,262 +26832236,5 blocks from Central Park- Entire 1br apartment,177478860,Annie,Manhattan,Upper East Side,40.77096,-73.95672,Entire home/apt,140,5,2,2018-10-09,0.19,1,0 +26832286,Luxe Designed Home by Times Sq with a View,2690202,Remy,Manhattan,Theater District,40.75987,-73.986,Entire home/apt,375,5,0,,,1,0 +26833795,Doorman 44Th st& 2nd! UN Doorman Studio Gym 5226,16098958,Jeremy & Laura,Manhattan,Midtown,40.75047,-73.96935,Entire home/apt,140,30,2,2019-06-02,0.26,96,311 +26833963,Gorgeous 2bedroom in the heart of Williamsburg!,22919533,Kristina,Brooklyn,Williamsburg,40.71193,-73.95956,Entire home/apt,200,3,32,2019-07-06,3.58,2,141 +26834353,Cozy Brooklyn Room - Next to Pratt Institute,133425456,소정,Brooklyn,Bedford-Stuyvesant,40.69056,-73.9598,Private room,40,5,1,2018-08-18,0.09,1,0 +26836650,Brooklyn Loft near Pratt,79657553,Ben,Brooklyn,Clinton Hill,40.69042,-73.96046,Private room,44,6,6,2019-02-11,0.52,1,1 +26837124,Williamsburg Apartment,8325079,Leila,Brooklyn,Williamsburg,40.71612,-73.94468,Entire home/apt,115,6,1,2018-08-20,0.09,1,0 +26837669,"Beautiful house in Brooklyn, New York City (34)",201822098,Charles,Brooklyn,Cypress Hills,40.67859,-73.89936,Entire home/apt,120,2,31,2019-06-08,2.59,1,99 +26837745,Great 4 Bedrooms with 4 private baths in ParkSlop.,199147185,Lou,Brooklyn,Sunset Park,40.66359,-73.99487,Entire home/apt,460,1,33,2019-06-09,2.75,5,113 +26837823,Private Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.69319,-73.90692,Private room,40,1,35,2019-05-29,2.92,3,0 +26837834,Romantic room with private entrance,6105036,George,Manhattan,Harlem,40.80527,-73.95106,Private room,90,4,20,2019-07-03,1.82,3,283 +26838387,"Great location, Minutes to Manhattan",201829594,James,Brooklyn,Bushwick,40.70237,-73.92002,Entire home/apt,150,20,3,2019-06-04,0.28,1,127 +26839646,Best Apartment Alphabet City Luxury & Comfort !!,201841679,Monica,Manhattan,East Village,40.72838,-73.97926,Entire home/apt,260,2,52,2019-06-17,4.62,1,141 +26839660,Manhattan modern walk to Central Park & Q train,5668544,Dj,Manhattan,Upper East Side,40.77594,-73.94818,Entire home/apt,200,3,0,,,1,132 +26839759,A little piece of heaven in the West Village!,2264902,Leni,Manhattan,West Village,40.73746,-74.00456,Entire home/apt,350,10,2,2019-01-02,0.17,2,0 +26840133,Oasis I,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68828,-73.95201,Private room,65,30,22,2019-06-04,1.89,3,365 +26840646,Bright Studio in the Heart of Bushwick,21924395,Natiya,Brooklyn,Bushwick,40.68657,-73.91354,Entire home/apt,63,2,10,2019-04-17,0.86,1,0 +26842735,"Bright, Cozy studio in beautiful West Village!",201868461,Coco,Manhattan,West Village,40.73384,-74.00819,Entire home/apt,129,2,55,2019-06-23,4.78,1,12 +26843289,Brighton Beach modern apartment (See description),58477936,Lev,Brooklyn,Brighton Beach,40.58022,-73.9558,Entire home/apt,75,2,48,2019-06-29,4.02,1,169 +26843443,Charming Studio in the Heart of Astoria,86414330,Willi,Queens,Astoria,40.75717,-73.92831,Entire home/apt,100,4,19,2019-06-23,3.00,1,31 +26843473,"Brooklyn Charming Apt, Bed Stuy/sleeps 3",33214549,Alexandre,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94977,Entire home/apt,129,1,0,,,5,0 +26844905,Trendy Union Square Apartment,201885926,Ramona,Manhattan,East Village,40.73269,-73.98833,Private room,111,2,48,2019-07-02,4.17,1,0 +26845053,Brand New Cozy Brooklyn Apartment!,201884425,Hoover,Brooklyn,Cypress Hills,40.68253,-73.87457,Entire home/apt,80,5,25,2019-05-07,2.14,3,43 +26845312,10 MINUTES FROM MANHATTAN (Big),47015275,Kathy,Queens,Elmhurst,40.74503,-73.88761,Private room,80,1,3,2018-10-07,0.29,2,317 +26845317,Bear (C)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74686,-73.82192,Private room,59,1,49,2019-07-04,4.31,4,72 +26845561,The Unique Home in New York City,78643953,Daniel,Brooklyn,Bushwick,40.68875,-73.916,Entire home/apt,159,3,20,2019-07-01,3.14,2,258 +26845781,Bear(B),191571338,Geheng,Queens,Flushing,40.74293,-73.81868,Private room,55,1,43,2019-07-05,3.58,4,81 +26846116,Comfy Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.69307,-73.90541,Private room,65,1,37,2019-05-03,3.10,3,0 +26846269,Oasis II,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68978,-73.95131,Private room,65,30,21,2019-06-05,2.05,3,365 +26846867,Bushwick Proper - king master bed private bathroom,69527,Daniele,Brooklyn,Bushwick,40.69037,-73.90679,Private room,85,14,11,2019-06-30,2.20,1,55 +26846907,Large Bedroom w/Private Bathroom in DUMBO,201909387,Cagla,Brooklyn,Downtown Brooklyn,40.6973,-73.98359,Private room,70,30,1,2018-09-13,0.10,1,0 +26847614,Cozy Apartment on Franklin Ave,48498020,Anwar,Brooklyn,Crown Heights,40.67434,-73.95549,Private room,40,7,3,2018-08-25,0.25,1,0 +26849955,Parlour Floor of a Brownstone in Cobble Hill,12223329,Ney,Brooklyn,Cobble Hill,40.68542,-73.99673,Entire home/apt,300,2,18,2019-05-30,1.56,1,61 +26858196,AWESOME 2 BEDS - QUEEN + SOFA - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69561,-73.94972,Private room,75,30,22,2019-06-22,1.83,6,318 +26858223,COMFORTABLE PRIVATE ROOM - NEXT TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69323,-73.94993,Private room,68,30,14,2019-06-13,1.26,6,365 +26860883,Private Bedroom in Manhattan!,50951460,Sydney,Manhattan,Harlem,40.8275,-73.94323,Private room,60,1,14,2019-06-19,1.35,1,310 +26861563,Upper West Side Apartment,199315366,Christina,Manhattan,Upper West Side,40.78803,-73.97432,Private room,90,3,1,2018-07-29,0.09,1,0 +26861684,NYC - Brooklyn Haven,46182994,Dolphy,Brooklyn,Flatlands,40.63183,-73.92229,Entire home/apt,110,2,30,2019-05-26,2.51,1,327 +26863858,Private room/15 min central park,18523979,Marko,Queens,Sunnyside,40.74521,-73.91353,Private room,80,1,4,2019-06-30,1.74,1,330 +26864429,Big Bright Beautiful Home in PRIME WIlliamsburg,26030112,Tatiana,Brooklyn,Williamsburg,40.71714,-73.95783,Private room,190,2,3,2019-01-02,0.36,1,0 +26865113,Cozy 2BR apt in center of Brooklyn (Female Please),7342104,Audrey,Brooklyn,Gowanus,40.68071,-73.98201,Private room,66,3,3,2018-11-13,0.33,1,0 +26865972,Pretty Light Filled Apartment to Share,3395693,Cecille,Queens,Long Island City,40.75596,-73.92144,Private room,60,15,3,2019-03-03,0.29,1,148 +26865983,Simplistic & Modern Apartment In Brooklyn,55997024,Donavan,Brooklyn,Crown Heights,40.67228,-73.91841,Entire home/apt,125,2,24,2019-06-09,2.17,1,55 +26866322,Modern + Cozy in Astoria NYC | 3 blocks to Subway,27951037,Kirsten,Queens,Ditmars Steinway,40.77592,-73.90754,Entire home/apt,65,6,19,2019-06-15,1.88,2,7 +26866483,Oasis III,201824419,Angie,Brooklyn,Bedford-Stuyvesant,40.68784,-73.95145,Private room,55,30,22,2019-06-05,2.03,3,365 +26866997,Sweet little home,201893473,Danielisa,Bronx,Concourse,40.83224,-73.92068,Private room,38,5,6,2018-12-08,0.52,1,188 +26867485,New 2 Bedroom Totally Private Brooklyn Apartment,201884425,Hoover,Brooklyn,Cypress Hills,40.68237,-73.87291,Entire home/apt,80,5,22,2019-06-10,1.93,3,60 +26867888,Brooklyn private luxury room with private bathroom,11460365,Alan,Brooklyn,Bedford-Stuyvesant,40.67844,-73.93831,Private room,200,1,14,2019-02-17,1.24,1,22 +26867963,Midtown Apartment- very convenient location!,3710483,Jennifer,Manhattan,Hell's Kitchen,40.75566,-73.99917,Entire home/apt,200,2,3,2018-08-31,0.26,1,0 +26868019,Private Furnishured Room for Rent. (W/M),202070950,Nancy,Manhattan,Washington Heights,40.85333,-73.9305,Private room,100,7,0,,,1,365 +26868493,Brooklyn Apartment,202074215,Michael,Brooklyn,Bedford-Stuyvesant,40.68563,-73.91988,Entire home/apt,89,2,52,2019-07-05,4.38,2,18 +26869417,UES apt right above the Q PRIVATE BATHROOM,143330625,Jessie,Manhattan,Upper East Side,40.76943,-73.95971,Private room,82,2,8,2018-09-02,0.68,1,0 +26869767,3 BEDS LARGE ROOM GREAT FOR GROUPS - PRIME WILLYB,156484505,Conrad,Brooklyn,Williamsburg,40.71216,-73.95683,Private room,115,2,50,2019-06-29,4.21,2,322 +26869803,1 BED and FUTON -SUNNY ROOM - PRIME WILLIAMSBURG,156484505,Conrad,Brooklyn,Williamsburg,40.7116,-73.95606,Private room,100,2,43,2019-06-26,3.65,2,363 +26870969,Green and spacious 1 Bedroom Apt with balcony!,41769353,Grace,Brooklyn,Bedford-Stuyvesant,40.69458,-73.94581,Private room,45,5,0,,,1,0 +26871154,Green Brooklyn -- house near the park w/ parking,202096567,Laurel,Brooklyn,Windsor Terrace,40.65667,-73.97908,Entire home/apt,390,5,0,,,1,15 +26871208,First floor apartment with a backyard in Brooklyn.,481630,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68706,-73.94368,Entire home/apt,100,9,5,2019-06-07,0.52,2,55 +26871230,West Chelsea High Line Treasure,2304932,David,Manhattan,Chelsea,40.74443,-74.0029,Entire home/apt,300,5,10,2019-04-29,0.87,1,4 +26871256,Just Relax and Enjoy :-),142590597,Joica,Brooklyn,East New York,40.6743,-73.87368,Private room,119,1,6,2019-06-30,2.22,6,180 +26871281,West Village Apartment,440022,Petter,Manhattan,West Village,40.73001,-74.00562,Entire home/apt,150,60,1,2019-02-07,0.20,1,0 +26871942,Bear(A)Close to JFK&LGA&Citi Field&Subway#Parking,191571338,Geheng,Queens,Flushing,40.74674,-73.82298,Private room,55,1,61,2019-07-07,5.20,4,88 +26872443,Quintessential New York Charm,202110598,Kierra,Manhattan,Upper West Side,40.79969,-73.9635,Entire home/apt,150,3,4,2018-11-05,0.37,1,0 +26872960,Times Square! LUXURY 1 Bedroom with GORGEOUS view!,37221425,Rohan,Manhattan,Theater District,40.75942,-73.98664,Private room,149,4,22,2019-05-12,2.03,1,65 +26874133,Spacious Studio Apt | Walk + Transit score 100,2280048,Edgar,Brooklyn,East Flatbush,40.66097,-73.9319,Entire home/apt,79,4,15,2019-06-23,1.27,1,174 +26874462,Peace and Happiness In Park Slope,1339545,Nina & Keith,Brooklyn,Park Slope,40.6703,-73.98003,Entire home/apt,150,3,28,2019-06-21,2.58,2,57 +26874714,Private Room: Rockaway Beach House-Near JFK&Subway,202131439,Paul,Queens,Rockaway Beach,40.58937,-73.81327,Private room,49,1,15,2019-06-02,1.33,1,345 +26874715,Large/Cozy Two Bedroom In Bedford Stuyvesant,75657939,Reyna,Brooklyn,Bedford-Stuyvesant,40.69315,-73.93912,Entire home/apt,175,1,53,2019-06-21,4.91,1,84 +26874727,"Large, spacious bedroom in the heart of Bushwick!",129596284,Sonya,Brooklyn,Bushwick,40.70105,-73.92183,Private room,40,4,5,2018-12-29,0.42,1,0 +26876289,2BR 3BD 1.5BA / Rooftop & Balcony / Airport PickUp,47424665,Brian,Queens,Ridgewood,40.70676,-73.91107,Entire home/apt,280,2,40,2019-06-24,3.53,2,104 +26877222,Clean cozy room in Manhattan. 5 min to 135 St,137358866,Kazuya,Manhattan,Harlem,40.81657,-73.94262,Private room,33,30,3,2019-04-30,0.46,103,189 +26877259,*Times Square Luxury Apartment Private Room*,172864847,Jae,Manhattan,Theater District,40.75964,-73.98731,Private room,100,1,137,2019-07-07,12.05,1,36 +26877276,Quinn's bedroom,64540550,Quinn,Brooklyn,Bushwick,40.68974,-73.91449,Private room,31,4,10,2019-03-18,0.85,1,0 +26879788,Cozy overnight bed by Central Park,197190247,Jacob,Manhattan,Hell's Kitchen,40.76587,-73.98878,Shared room,75,1,33,2019-06-08,2.79,7,225 +26884320,Charming Room with 2 Beds+ Laundry in Williamsburg,141204556,Aaron & Ivy,Brooklyn,Williamsburg,40.7109,-73.96478,Private room,109,30,43,2019-06-06,3.72,2,365 +26884369,Dazzling Room with 2 Beds+ Laundry in Williamsburg,141204556,Aaron & Ivy,Brooklyn,Williamsburg,40.71013,-73.9637,Private room,109,30,37,2019-06-21,3.14,2,361 +26884438,Awesome Private Room+ Laundry- Prime Williamsburg,141204841,Ivy And Andrew,Brooklyn,Williamsburg,40.70978,-73.96424,Private room,95,30,33,2019-06-17,3.15,2,365 +26884455,Beautiful Room with Laundry in Prime Williamsburg,141204841,Ivy And Andrew,Brooklyn,Williamsburg,40.70915,-73.96479,Private room,95,30,35,2019-06-23,2.97,2,365 +26886071,Overlooking Tompkins Sq Park in the East Village,5073548,David,Manhattan,East Village,40.72696,-73.9811,Entire home/apt,300,3,6,2019-03-10,0.94,1,0 +26887521,SUNNY HARLEM HAVEN ON A BEAUTIFUL HARLEM BLOCK,8534610,E Vera,Manhattan,Harlem,40.81189,-73.94137,Private room,90,2,23,2019-06-16,2.09,1,104 +26889078,Staten Island Garden Apartment Near Ferry,199535935,Tim,Staten Island,St. George,40.64641,-74.08502,Entire home/apt,130,2,52,2019-06-24,4.60,1,96 +26889817,Luxurious Brooklyn Studio,202268676,Nazli,Brooklyn,Fort Greene,40.6873,-73.97906,Entire home/apt,125,7,3,2019-01-02,0.28,1,33 +26890649,Bedstuy Puppet Cave,125059640,Ben,Brooklyn,Bedford-Stuyvesant,40.69516,-73.93462,Entire home/apt,125,3,2,2018-07-29,0.17,1,0 +26891909,"Minimal style bedroom, close to Manhattan",199887038,Theodoros,Queens,Ditmars Steinway,40.76961,-73.90805,Private room,60,2,0,,,2,0 +26892245,Cozy Brooklyn Room,3552356,Griffin,Brooklyn,Bushwick,40.69995,-73.91802,Private room,35,5,2,2018-08-16,0.18,1,0 +26893530,Quiet King Size Room(5mins)Yankee Stadium,187008191,Isabel,Bronx,Concourse,40.83285,-73.92158,Private room,45,1,43,2019-06-22,3.66,1,205 +26893534,TRUE LOFT LIVING,202303852,Idris,Brooklyn,Williamsburg,40.70528,-73.934,Entire home/apt,250,3,7,2019-03-22,0.71,1,17 +26893966,Beautiful Renovated West Village Gem with Hästens,4219564,Mina,Manhattan,West Village,40.73162,-74.00228,Entire home/apt,300,2,22,2019-05-28,3.11,1,168 +26894016,Spacious & Comfy in Hip Area,5778935,Drew,Brooklyn,Clinton Hill,40.69239,-73.96538,Entire home/apt,135,2,4,2019-07-01,0.36,1,0 +26894122,Spacious duplex apt in Brooklyn,202307843,Julie,Brooklyn,Bedford-Stuyvesant,40.68489,-73.95096,Entire home/apt,108,2,19,2019-06-25,1.67,1,0 +26894548,Cozy private room near Times Square 53E1,190921808,John,Manhattan,Hell's Kitchen,40.75518,-73.99706,Private room,45,30,2,2019-05-21,0.32,47,347 +26894687,"Cozy, spacious private room in Brooklyn apartment",19899115,Libby,Brooklyn,Crown Heights,40.6776,-73.95094,Private room,50,2,12,2018-11-13,1.01,2,0 +26895166,2018Serenity,202318295,2018Serenity,Manhattan,East Harlem,40.79424,-73.9429,Private room,50,5,4,2019-06-22,0.39,1,32 +26895277,Spacious Apt. + Waterfront Terrace in Manhattan,202319331,Rodrigo,Manhattan,Lower East Side,40.71194,-73.97792,Private room,80,4,6,2019-05-20,1.70,1,0 +26895469,Conveniently located room near Times Sq. 43D1,190921808,John,Manhattan,Hell's Kitchen,40.75496,-73.99715,Private room,45,7,4,2019-05-11,0.49,47,336 +26895683,Apartment in time square New York,202324391,Charlie,Manhattan,Hell's Kitchen,40.76339,-73.98866,Private room,150,1,30,2019-06-01,2.59,1,66 +26896131,"Prospect Park, Bk Museum, Botanic Gardens and You",2685092,Mary Angelica,Brooklyn,Prospect Heights,40.67262,-73.96286,Entire home/apt,115,5,2,2019-04-28,0.19,1,19 +26896460,Sun-kissed & Spacious Queens Room w/ Full Kitchen,20909506,Camile,Queens,Astoria,40.7648,-73.91174,Private room,40,3,7,2018-11-09,0.61,2,0 +26896906,"Large, exclusive room with suite-like atmosphere",185914925,Mala,Queens,Hollis,40.71446,-73.75968,Private room,75,2,21,2019-05-15,1.77,2,65 +26897453,Private studio in best location.,135093573,Georgina,Queens,Long Island City,40.75648,-73.93389,Entire home/apt,80,3,48,2019-06-23,4.15,1,209 +26897811,Sunny Brooklyn musician loft .,126967409,Claudia,Brooklyn,Bedford-Stuyvesant,40.6903,-73.96008,Entire home/apt,82,2,0,,,1,13 +26897821,River front Brand New upper East side apt,111816745,Dami,Manhattan,Upper East Side,40.77076,-73.94757,Entire home/apt,125,2,8,2019-04-23,1.02,1,1 +26898028,"ONE Room →→→20mins to TimesSQ ☆彡 COZY, COZY, COZY",19303369,Hiroki,Queens,Woodside,40.74296,-73.90328,Private room,39,30,3,2019-07-01,0.29,37,32 +26900640,Cozy & Bright Room w/ Big Window!!,200239515,Shogo,Queens,Woodside,40.74102,-73.89358,Private room,40,30,3,2019-02-25,0.29,15,0 +26904628,"My Style法拉盛中心 靠近地铁站 +1 Queen bed room",109507109,Haifeng,Queens,Flushing,40.76005,-73.83447,Private room,60,2,21,2019-06-16,2.04,1,51 +26909099,Rosedale Private residential ( SMOKE FREE),202449469,Akinwole,Queens,Rosedale,40.65197,-73.7461,Entire home/apt,100,1,33,2019-07-08,2.86,1,171 +26911755,Eclectic sun-filled LES one bedroom,16253164,K,Manhattan,Lower East Side,40.71536,-73.98951,Entire home/apt,110,5,3,2019-03-16,0.28,1,1 +26914676,Bright Brooklyn (Boerum Hill) Condo w Roof Deck,62792657,Adam,Brooklyn,Boerum Hill,40.68647,-73.98197,Entire home/apt,350,2,6,2018-11-25,0.53,1,0 +26916664,NYC X/L Bedroom/Private Bathroom. Long term,50116095,Bonnie,Manhattan,Harlem,40.83136,-73.94299,Private room,65,4,4,2019-01-08,0.38,1,188 +26916746,Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.63886,-74.00391,Private room,40,1,26,2019-03-20,2.29,8,0 +26916818,Cozy bedroom with a private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71027,-73.9468,Private room,74,3,29,2019-06-14,2.60,2,44 +26918753,Sala star sofacama amplio cerca al Aeropuerto.,202350344,Diana Carolina,Queens,East Elmhurst,40.76109,-73.88898,Private room,40,2,32,2019-07-06,2.86,2,236 +26919911,"Sunny, Artistic Getaway Near Prospect Park",5848252,Monica,Brooklyn,Flatbush,40.65323,-73.96372,Entire home/apt,70,2,11,2019-02-24,0.93,1,0 +26920545,NYC Private Room w/Backyard,80533986,Amanda,Manhattan,East Harlem,40.7904,-73.94785,Private room,113,2,13,2019-07-05,5.13,1,1 +26920890,A great room in Manhattan !!!,37370465,Tolga,Manhattan,Lower East Side,40.71857,-73.98973,Private room,74,3,15,2019-04-27,1.34,1,280 +26923831,▲Cozy Apartment at Union Square▲,202587266,Matt,Manhattan,Gramercy,40.73502,-73.986,Entire home/apt,125,2,34,2019-06-02,3.11,1,12 +26923846,Spacious rooms for one or two persons,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93862,Private room,75,2,2,2019-04-22,0.19,4,337 +26924532,"Private Guest Suite near NYC Ferry, Rear",71725161,Kalina,Brooklyn,Sunset Park,40.64149,-74.02325,Entire home/apt,99,4,20,2019-06-29,2.49,2,146 +26924800,Beautiful Clean Room For One,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69335,-73.9369,Private room,79,2,2,2019-06-20,0.19,4,338 +26924878,Charming 1BD in the Lower East Side,71978141,Jennifer,Manhattan,Lower East Side,40.71958,-73.98284,Entire home/apt,190,3,8,2019-06-03,0.79,1,79 +26924882,Upper West Side Duplex,202384697,Miriam,Manhattan,Upper West Side,40.78981,-73.9697,Entire home/apt,275,14,0,,,1,15 +26925879,Sunny private room in UWS by Columbia UNI***,200261161,Davis,Manhattan,Upper West Side,40.79682,-73.96282,Private room,67,1,26,2019-06-17,6.19,3,37 +26925980,Cozy Williamsburg room,38593087,Russell,Brooklyn,Williamsburg,40.70685,-73.96663,Private room,82,1,25,2019-07-05,2.17,2,64 +26926704,Beautiful Bedroom & Bathroom in Brooklyn Oasis,23542079,Teres,Brooklyn,East Flatbush,40.6442,-73.93266,Private room,45,3,35,2019-06-30,3.01,2,30 +26929793,Modern and Tranquil Apartment on Riverside Drive!,202636642,Frank,Manhattan,Upper West Side,40.79485,-73.9755,Entire home/apt,146,3,28,2019-06-29,3.31,1,158 +26933416,Comfy shared room near Subway close to Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.721,-73.94143,Shared room,41,30,0,,,10,365 +26934153,Comfortable shared room near Manhattan,178543960,Sergii,Brooklyn,Greenpoint,40.72133,-73.93995,Shared room,38,30,1,2018-09-30,0.11,10,365 +26934498,Charming room in Chelsea,12750945,Luis,Manhattan,Chelsea,40.73968,-73.99746,Private room,150,2,41,2019-06-19,3.54,4,316 +26935628,Warm bed room,198933477,Jonathan,Queens,St. Albans,40.68988,-73.76308,Private room,208,1,0,,,1,364 +26937970,3 BEDS -ROOM IN CONVERTED FACTORY LOFT -NEAR METRO,35606248,Blake And Madia,Brooklyn,Bushwick,40.70458,-73.92753,Private room,95,2,23,2019-06-09,2.08,5,361 +26938086,2 BEDS -YOUR ROOM IN CONVERTED FACTORY -NEAR METRO,35606248,Blake And Madia,Brooklyn,Bushwick,40.70274,-73.9263,Private room,82,2,24,2019-05-23,2.14,5,365 +26939323,SUNNY ROOM 1 - SHORT RIDE TO MANHATTAN!,141362117,Julian And Michael,Brooklyn,Williamsburg,40.7076,-73.93426,Private room,67,2,32,2019-06-23,2.80,2,348 +26939557,Bright and Cozy Room 2 -Short Ride to Manhattan :),141362117,Julian And Michael,Brooklyn,Williamsburg,40.70521,-73.93554,Private room,67,2,33,2019-06-11,2.88,2,359 +26941551,Charming Duplex with spacious & private back yard,1902114,J.D.,Manhattan,Midtown,40.75707,-73.96417,Entire home/apt,250,2,12,2019-07-06,1.01,1,14 +26942149,Beautiful 1 bedroom in prime Chelsea,104286680,Dima,Manhattan,Chelsea,40.75003,-73.99589,Entire home/apt,250,14,1,2018-08-11,0.09,1,88 +26943028,PRIVATE ROOM WITH EVERYTHING INCLUDED!!,201757076,Soledad,Queens,Briarwood,40.71251,-73.81674,Private room,70,1,22,2019-06-26,1.89,3,0 +26943823,THE HIDEAWAY,187153824,Mike & Glenna,Brooklyn,East New York,40.663,-73.86723,Entire home/apt,85,3,28,2019-05-31,2.41,1,19 +26945036,Jungle Oasis In the East Village,8266306,Michelle,Manhattan,East Village,40.72847,-73.98807,Entire home/apt,150,2,14,2019-06-22,1.36,1,0 +26945421,STUDIO ON WEST 56TH COLUMBUS CIRCLE~ DOORMAN,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76717,-73.98614,Entire home/apt,185,30,0,,,65,342 +26946148,Relax in Harlem,101388075,Imogene,Manhattan,Harlem,40.82237,-73.94001,Entire home/apt,104,1,18,2019-06-19,1.53,1,34 +26946208,Cozy room in the heart of Little Italy,21146326,Olga,Manhattan,Chinatown,40.71794,-73.99686,Private room,75,3,4,2018-11-04,0.40,2,0 +26946697,New york Multi-unit building in Williamsburg BR,32165430,Marcia,Brooklyn,Williamsburg,40.7045,-73.937,Private room,60,3,1,2018-08-08,0.09,1,0 +26946895,Manhattan - Columbus Circle Apt,202741872,Carlos,Manhattan,Hell's Kitchen,40.76782,-73.98351,Entire home/apt,250,1,34,2019-06-17,3.01,1,20 +26946903,MIDTOWN EAST 3 BED 2 BATH APT WITH PRIVATE BALCONY,200380610,Pranjal,Manhattan,Murray Hill,40.74389,-73.97149,Entire home/apt,340,30,0,,,65,364 +26947049,Recharge Like a Local 20 Min from Downtown NYC!,21150974,Allison,Brooklyn,Sunset Park,40.66361,-73.99246,Private room,50,2,14,2019-01-01,1.22,1,0 +26947476,Sunlit Duplex LOFT 1.5BR WATERFRNT/ POOL/ GYM (5O),202757964,Mayan,Brooklyn,Williamsburg,40.71771,-73.96431,Entire home/apt,185,30,2,2019-06-16,0.32,6,304 +26947508,CLASSIC 1BR IN WEST 15TH STREET-CHELSEA,200380610,Pranjal,Manhattan,Chelsea,40.74037,-74.00015,Entire home/apt,210,30,0,,,65,364 +26947531,Bachelor Apt,105485520,Mark,Queens,Fresh Meadows,40.73751,-73.7839,Entire home/apt,285,2,9,2018-10-28,0.78,1,0 +26947587,Private room & own bath w/ view near Central Park!,34263302,Chris,Manhattan,Harlem,40.80681,-73.95119,Private room,125,1,55,2019-07-01,4.81,1,79 +26947761,Sunny private room in the heart of NYC 53E2,190921808,John,Manhattan,Hell's Kitchen,40.75503,-73.99724,Private room,53,30,0,,,47,316 +26947883,Brooklyn Bedroom (Flatbush-Ditmas),91578701,Tatiana,Brooklyn,Flatbush,40.64127,-73.95525,Private room,45,1,9,2019-01-08,1.13,2,0 +26948057,Central Park West Luxury One bedroom with Balcony,17477908,Mat,Manhattan,Upper West Side,40.79514,-73.96687,Entire home/apt,250,30,1,2018-09-02,0.10,10,205 +26948562,"Modern, spacious NYC apartment",202766548,Adam,Manhattan,Chelsea,40.74829,-74.00462,Entire home/apt,425,2,5,2019-06-23,0.44,1,13 +26948645,Airy Ridgewood room with a view!,202766239,Shanley,Queens,Ridgewood,40.70225,-73.90177,Private room,50,1,5,2018-08-17,0.43,1,0 +26948855,Beautiful Spacious Room,35487412,Rashidi,Queens,Jackson Heights,40.7523,-73.87204,Private room,46,3,12,2019-02-01,1.02,1,5 +26949336,Luxury loft 2bed 2bath Mulberry st,176971425,Laura,Manhattan,Little Italy,40.71765,-73.99798,Private room,140,31,0,,,1,83 +26951069,Manhattan Private Room @2BR apt-East Village Heart,202788450,Isai Jesse,Manhattan,East Village,40.7246,-73.97687,Private room,58,4,20,2019-06-22,1.69,1,10 +26953879,Serene bedroom in the heart of Fort Green,2014051,Nick,Brooklyn,Fort Greene,40.6881,-73.97642,Private room,86,2,7,2019-04-16,1.02,1,75 +26954900,The Terraces,3935522,Greg,Brooklyn,South Slope,40.66636,-73.99052,Entire home/apt,111,2,6,2018-10-14,0.58,1,12 +26957225,Beautiful Studio Apt. Yoga vibes & love,11453805,Helen,Manhattan,Lower East Side,40.72078,-73.98762,Entire home/apt,207,2,3,2018-10-29,0.26,1,0 +26957310,Cozy Bright Room 1 Block from the L-Train,85350993,Giulia,Brooklyn,Williamsburg,40.70626,-73.92921,Private room,47,13,3,2019-05-30,0.26,1,88 +26957426,Beautiful South Bronx Colonial Townhouse,6738579,Natalie,Bronx,Morrisania,40.83201,-73.89996,Entire home/apt,140,2,3,2019-04-22,0.27,1,27 +26958190,Brooklyn [Williamsburg] Apartment,202849060,Masashi,Brooklyn,Williamsburg,40.71258,-73.95764,Private room,90,21,6,2018-08-15,0.51,1,38 +26958633,Cozy room,202833337,Vancila,Queens,Cambria Heights,40.69698,-73.72962,Private room,40,1,15,2019-07-06,1.34,1,361 +26960589,Brooklyn Sanctuary with Private Luxury Spa,202873307,Dov,Brooklyn,Sunset Park,40.64992,-74.01169,Entire home/apt,750,1,12,2019-05-06,1.20,1,364 +26960958,Big Room & Perfect Brooklyn Location! 15 min NYC,29101658,Manuel,Brooklyn,Boerum Hill,40.68684,-73.98167,Private room,80,2,6,2019-03-06,0.53,1,0 +26964456,New aparment biutiful area,104311294,Edwin,Queens,Corona,40.73933,-73.84851,Entire home/apt,100,2,2,2018-08-21,0.18,1,0 +26978092,Private room for all Midtown attractions,202979735,Troy,Manhattan,Hell's Kitchen,40.76092,-73.9922,Private room,180,2,5,2019-04-21,0.48,1,16 +26978101,"Shared Place by Times Square, Theaters District.",197190247,Jacob,Manhattan,Hell's Kitchen,40.76405,-73.98695,Shared room,75,1,50,2019-06-11,4.21,7,225 +26978310,Sunny Brooklyn House: Steps from the train!,12960612,Lilia,Brooklyn,Bushwick,40.6984,-73.92767,Entire home/apt,275,2,0,,,1,0 +26978574,Private room with amazing Manhattan view rooftop,202979435,Outpost,Brooklyn,Gowanus,40.68293,-73.98979,Private room,95,30,1,2018-07-28,0.09,2,311 +26978889,"People of the Arts Welcome! +420 friendly",202986805,Miss,Brooklyn,Crown Heights,40.67175,-73.92117,Private room,46,3,12,2019-05-30,1.01,1,19 +26979053,Newly renovated House next to Downtown,202979435,Outpost,Brooklyn,Gowanus,40.68188,-73.98978,Private room,96,30,1,2018-08-29,0.10,2,333 +26980415,"COZY BEDROOM IN NEW YORK, W/AIRPORT PICK UP",184669674,Donnihe Jhans,Queens,Middle Village,40.71128,-73.89338,Private room,44,3,17,2019-07-01,1.73,1,126 +26980448,City Saver in Brooklyn,8654456,James,Brooklyn,Sunset Park,40.64985,-74.00835,Entire home/apt,100,2,37,2019-07-07,3.22,1,0 +26981567,Queens New York 2 bedroom apartment,22780462,Mark,Queens,Kew Gardens Hills,40.72048,-73.81458,Entire home/apt,139,4,6,2019-05-21,0.58,2,282 +26982403,Enchanting 1BR near Times Sq w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76196,-73.98536,Entire home/apt,280,30,2,2019-05-16,0.36,232,218 +26983183,Steps from Waterfront - 1 Bedroom Apartment,12512629,Kreshnik,Queens,Long Island City,40.74427,-73.95477,Entire home/apt,125,5,1,2018-08-20,0.09,1,0 +26983743,PRIVATE ROOM- 2 BEDS BY METRO -EASY ACCESS TO CITY,141362503,Michael,Brooklyn,Williamsburg,40.70596,-73.93847,Private room,80,2,31,2019-06-23,2.71,2,365 +26984028,Sonder | 21 Chelsea | Bright 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74158,-73.99585,Entire home/apt,245,29,0,,,96,342 +26984054,QUEEN BED - SUNNY DUPLEX BY TRAIN - 15 MIN TO CITY,141362503,Michael,Brooklyn,Williamsburg,40.70719,-73.94021,Private room,70,2,37,2019-06-15,3.14,2,362 +26984883,HIGH END QUEEN BED -EXPOSED BRICK IN WILLIAMSBURG,121771546,Cherri,Brooklyn,Williamsburg,40.71185,-73.96292,Private room,95,2,41,2019-06-09,3.50,2,365 +26985149,• Spread Love it’s the BK Way • Eco/Veg/Bio/Bckyrd,1836803,Jess,Brooklyn,Bedford-Stuyvesant,40.68872,-73.93183,Entire home/apt,130,3,1,2018-08-27,0.09,1,17 +26985201,2 BEDS - INCREDIBLE LOCATION - 1 STOP TO MANHATTAN,121771546,Cherri,Brooklyn,Williamsburg,40.71153,-73.96453,Private room,110,2,49,2019-06-24,4.14,2,335 +26986526,☆Nice Private Room Near Park & Train in MANHATTAN!,20134899,Michael,Manhattan,Harlem,40.82607,-73.95124,Private room,54,23,8,2018-12-30,0.70,2,35 +26987448,Colorful and Sunlit Bushwick!,1110208,Kat,Brooklyn,Bushwick,40.70506,-73.91731,Entire home/apt,100,2,9,2019-06-16,0.77,1,0 +26987854,Bunk bed,24000784,Robert,Brooklyn,Sunset Park,40.64456,-74.01135,Private room,45,1,6,2019-06-24,0.61,4,32 +26988550,King Bed on Queens/Brooklyn Border,4231312,Robert,Queens,Ridgewood,40.70458,-73.90269,Entire home/apt,99,3,8,2019-01-03,0.69,1,16 +26988903,Sunny+ Modern Brooklyn apartment,1459377,Stefania,Brooklyn,Williamsburg,40.71998,-73.94216,Entire home/apt,145,3,3,2018-09-21,0.26,1,0 +26989176,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.68585,-73.94919,Private room,60,30,3,2019-03-01,0.45,8,221 +26989662,Ridgewood Penthouse,14463049,Roy,Queens,Ridgewood,40.69997,-73.90721,Entire home/apt,275,2,0,,,1,0 +26989977,Beautiful Clinton Hill 1-BR in luxury building,24822059,Jessica,Brooklyn,Clinton Hill,40.68214,-73.96536,Entire home/apt,119,6,2,2018-08-29,0.18,1,0 +26992139,Marsha INN,155668897,Nicola,Queens,Jamaica,40.66726,-73.78666,Private room,70,5,43,2019-06-25,3.61,2,365 +26993244,Spacious 2bd apt with Manhattan view and sunset,132883657,Kathryn,Brooklyn,Gowanus,40.67076,-73.98903,Entire home/apt,350,2,9,2019-06-24,0.81,1,0 +26993437,BK Homestead - Private Rm in Large Apt with Deck!,56740664,Laura,Brooklyn,Williamsburg,40.71784,-73.95611,Private room,225,4,1,2018-12-31,0.16,1,5 +26993454,ROOF DECK+ LAUNDRY- BRICK WALLS - CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.71294,-73.95866,Private room,95,2,25,2019-06-23,2.19,3,342 +26993585,2 BEDS +ROOF DECK+ LAUNDRY- CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.71269,-73.95815,Private room,95,2,15,2019-02-10,1.28,3,335 +26994076,Brooklyn Magic Bunk Share,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69052,-73.94149,Shared room,30,1,32,2019-06-21,2.74,17,83 +26994354,Nice bunk spot in heart if Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69206,-73.94072,Shared room,30,1,45,2019-06-17,3.99,17,84 +26994401,Queens Two BR house 20Min to Manhattan,69439684,Michelle & Lily,Queens,Elmhurst,40.7396,-73.88119,Entire home/apt,165,1,38,2019-06-23,3.31,2,122 +26995950,Queen Bed 2 guests UWS Manhattan,216227,Victor,Manhattan,Harlem,40.82226,-73.95569,Private room,62,1,68,2019-06-18,5.86,3,310 +26996347,Cozy 1BR/1BA minutes from Manhattan.,203123198,Dave,Brooklyn,East Flatbush,40.66091,-73.93244,Entire home/apt,149,2,24,2019-04-07,2.11,1,145 +26996408,Multicultural House,203123161,Luis,Bronx,Concourse,40.8212,-73.92859,Entire home/apt,80,3,40,2019-06-23,3.79,2,280 +26996466,Lumber lodge,167459000,Adrian,Brooklyn,Bushwick,40.69482,-73.91096,Private room,60,1,0,,,1,5 +26996673,Peaceful Home with Terrace Near Prospect Park,2163625,Shannon,Brooklyn,Windsor Terrace,40.653,-73.97717,Entire home/apt,120,7,0,,,2,0 +27000837,Beautiful cozy space for one,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69508,-73.93735,Shared room,79,2,2,2019-05-05,0.19,4,90 +27001229,Cozy quite room for 2,149296850,Septina,Brooklyn,Bedford-Stuyvesant,40.69359,-73.93911,Private room,80,2,3,2018-10-02,0.26,4,82 +27002075,Central Park APT Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80127,-73.96166,Private room,72,2,14,2018-10-04,1.19,4,0 +27002590,Cozy shared apt in Midtown Manhattan,197190247,Jacob,Manhattan,Hell's Kitchen,40.76456,-73.98818,Shared room,75,1,38,2019-06-23,3.26,7,225 +27002733,"Beautiful, cozy overnight place by Times Square",197190247,Jacob,Manhattan,Hell's Kitchen,40.76462,-73.9886,Shared room,75,1,29,2019-06-19,2.47,7,225 +27002850,Overnight bed by Times Square,197190247,Jacob,Manhattan,Hell's Kitchen,40.76441,-73.98692,Shared room,75,1,39,2019-06-14,3.32,7,221 +27010728,3rd Floor Art,183707967,Dionyssios,Manhattan,Washington Heights,40.85419,-73.93013,Entire home/apt,140,2,38,2019-05-28,3.30,4,176 +27010922,Brooklyn Apartment,2954574,Ricardo,Brooklyn,Bedford-Stuyvesant,40.69183,-73.94185,Private room,65,7,0,,,1,105 +27011736,NEW Perfect shared male room right on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.7111,-73.98689,Shared room,35,14,1,2018-12-26,0.15,28,322 +27012241,Cozy Nook in Washington Heights,203235966,Nicole,Manhattan,Inwood,40.86203,-73.93037,Entire home/apt,71,1,7,2019-01-01,0.67,1,1 +27014758,Private Room,34883773,Cansu,Brooklyn,Bedford-Stuyvesant,40.68944,-73.95089,Private room,50,7,1,2018-11-10,0.12,1,0 +27015441,Studio Penthouse,176950173,Aka,Manhattan,Midtown,40.76476,-73.97511,Entire home/apt,395,1,0,,,2,328 +27015464,Studio Penthouse,176950173,Aka,Manhattan,Midtown,40.76459,-73.97529,Entire home/apt,395,1,0,,,2,328 +27016704,1 Bedroom Loft Space in the Heart of Williamsburg,16779679,Chris,Brooklyn,Williamsburg,40.71171,-73.963,Entire home/apt,200,4,3,2018-10-05,0.31,1,0 +27016768,Luxury Studio 5 min to World Trade & BK Bridge,203268839,Drea,Manhattan,Civic Center,40.71389,-74.00484,Entire home/apt,199,3,35,2019-06-07,2.96,1,255 +27016931,Bronx Apartment-> BRAND NEW BUILDING-BUILT IN 2010,203266238,Steve,Bronx,Morris Park,40.85322,-73.85144,Private room,75,5,6,2019-03-31,0.55,5,29 +27017924,"Quaint, Cozy Studio in the Heart of Harlem",203277214,Phillip,Manhattan,Harlem,40.81033,-73.94286,Entire home/apt,150,3,30,2019-06-19,2.59,1,159 +27018851,Bright and Spacious Apartment,32866463,Bassam,Brooklyn,Bay Ridge,40.63328,-74.01978,Entire home/apt,145,1,41,2019-06-23,3.63,2,139 +27021428,Studio Penthouse,176950781,Aka Times Square,Manhattan,Theater District,40.75762,-73.98486,Entire home/apt,325,1,0,,,1,360 +27022896,"2bedroom in East Harlem, few blocks from 6 train",50169207,Richie,Manhattan,East Harlem,40.79371,-73.93995,Entire home/apt,100,2,3,2019-06-23,0.28,2,67 +27023152,Luxury Private Room - All Amenities,7853731,Hod,Brooklyn,Crown Heights,40.67458,-73.96079,Private room,55,14,0,,,2,61 +27023307,"Large, True 1BR - Heart of Nolita/Soho/LittleItaly",3399151,Charles,Manhattan,Nolita,40.72235,-73.99454,Entire home/apt,140,1,9,2019-05-17,0.97,1,11 +27024042,Art Chalk wall room,203307016,Israel,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91689,Private room,65,1,44,2019-06-20,3.73,2,75 +27024787,Stunning bedroom in trendy Williamsburg!,197354631,Nina,Brooklyn,Williamsburg,40.71407,-73.93936,Private room,67,30,2,2019-07-06,1.33,3,24 +27025577,Stunning Private Room with a *VIEW* Prime Location,197354631,Nina,Brooklyn,Williamsburg,40.71538,-73.94148,Private room,67,30,3,2019-06-03,0.43,3,23 +27026175,Brooklyn home away from home,203339760,Sofiya,Brooklyn,Sunset Park,40.66153,-73.99297,Private room,65,1,6,2019-06-23,0.65,1,0 +27026461,Room available from July 29th to October 31st,1524602,Martina,Brooklyn,Williamsburg,40.71653,-73.94131,Private room,48,90,0,,,1,358 +27027786,Prime East Village Manhattan w/ Beautiful Backyard,203357182,Thomas,Manhattan,East Village,40.72769,-73.98498,Private room,150,1,3,2019-06-22,2.09,1,27 +27028248,Upper west side studio for extended stay,4296422,Brendon,Manhattan,Upper West Side,40.78246,-73.97654,Entire home/apt,155,7,0,,,1,0 +27029402,Central Park Spacious Room,194843581,Hongzhi,Manhattan,Upper West Side,40.79908,-73.96215,Private room,87,1,14,2018-08-23,1.19,4,0 +27029421,Modern Living in Soho/Noho/West Village,19433714,Jeff,Manhattan,Greenwich Village,40.72674,-73.99673,Entire home/apt,200,3,6,2019-07-01,0.55,3,21 +27029508,Newly Renovated 3 Bedroom Apartment in Brooklyn,1892281,Ashley,Brooklyn,East Flatbush,40.65887,-73.9198,Entire home/apt,250,3,15,2019-07-01,1.30,1,266 +27029894,Central Park West Room,194843581,Hongzhi,Manhattan,Upper West Side,40.79936,-73.96243,Private room,79,1,49,2019-07-04,4.16,4,1 +27030076,Cosy bedroom in Williamsburg,54658419,Pierre,Brooklyn,Williamsburg,40.7117,-73.9608,Private room,100,3,8,2019-05-13,0.69,2,0 +27030230,Ground Floor Retreat near BKLYN Children’s Museum,1494238,Melissa,Brooklyn,Crown Heights,40.6726,-73.93992,Entire home/apt,135,3,24,2019-06-30,2.44,1,246 +27032162,"Private big one bedroom apt, Brooklyn,NY",203397896,Teola,Brooklyn,Brownsville,40.66648,-73.91375,Entire home/apt,98,2,40,2019-06-24,4.15,1,223 +27033995,Brooklyn House,186642041,Klara,Brooklyn,Bergen Beach,40.62697,-73.91357,Entire home/apt,121,30,0,,,1,88 +27034834,UWS Luxury 2 bdrm 2 bath Penthouse,17477908,Mat,Manhattan,Upper West Side,40.79473,-73.96744,Entire home/apt,350,30,2,2019-01-02,0.19,10,365 +27043685,5th Ave NYC 2/3 train minutes to Times Square,202993649,Ronald,Manhattan,East Harlem,40.81379,-73.93536,Private room,90,1,9,2018-11-04,0.81,1,0 +27045165,Washington Heights Paradise,138635224,Josh,Manhattan,Washington Heights,40.85671,-73.93011,Shared room,40,1,19,2019-04-05,1.82,2,341 +27046708,Designer $10M Luxury Home in Prime SoHo !,203504228,Luxury Lofts,Manhattan,SoHo,40.72367,-73.99868,Entire home/apt,1250,4,21,2019-06-23,2.26,1,125 +27047594,Beautiful 5100 SQ FT Industrial Brooklyn Loft,319077,Shell,Brooklyn,Clinton Hill,40.6855,-73.96112,Entire home/apt,999,1,2,2018-11-18,0.22,4,365 +27048562,"Sunny, Pre-War Crown Heights Apartment",21881605,Julie,Brooklyn,Crown Heights,40.67788,-73.94525,Private room,100,2,0,,,2,364 +27051433,THE LIGHT ROOM,6786361,Michael,Brooklyn,Bushwick,40.6964,-73.92675,Private room,65,3,13,2019-04-08,1.21,2,302 +27052657,Modern Renovated Sunny~Near Subways & Central Park,162171692,Jerry,Manhattan,Upper East Side,40.77997,-73.95214,Entire home/apt,99,7,25,2019-05-13,2.28,1,95 +27052686,"beautiful, spacious 1 bedroom apartment on UES",194409758,Christina,Manhattan,Upper East Side,40.77681,-73.95472,Entire home/apt,150,2,6,2019-03-24,0.54,1,0 +27053726,Windsor Terrace Garden Apartment,33526253,Nicki,Brooklyn,Windsor Terrace,40.65639,-73.98242,Entire home/apt,250,1,2,2018-08-18,0.18,1,0 +27053984,Spacious Bed Stuy Brooklyn 2 Bedroom Near Subway,33074595,Jessica,Brooklyn,Bedford-Stuyvesant,40.68528,-73.958,Entire home/apt,179,4,28,2019-07-04,2.99,1,130 +27054483,Cozy cottage-like apartment in Gowanus!,12275644,Janessa,Brooklyn,Gowanus,40.66774,-73.99292,Private room,70,2,0,,,1,0 +27054520,Spacious loft-style room in Upper East Side,40238727,Maria,Manhattan,Upper East Side,40.77977,-73.95757,Shared room,115,2,43,2019-06-30,3.72,1,72 +27054761,Modern apartment in Brooklyn's Stuyvesant heights,160343057,Helen,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91954,Entire home/apt,158,2,8,2018-10-21,0.69,1,0 +27055058,Spacious apt in heart of Downtown!,13412408,Brendan,Manhattan,Greenwich Village,40.72848,-74.00116,Private room,200,1,5,2019-04-22,0.47,1,0 +27055191,Charming bedroom for female guests,40119874,Stephany,Brooklyn,Prospect-Lefferts Gardens,40.66171,-73.94417,Private room,49,1,85,2019-05-29,8.64,2,0 +27055213,Cozy Brooklyn Studio in Williamsburg (Graham L),7825844,Courtney,Brooklyn,Williamsburg,40.71603,-73.9409,Entire home/apt,128,5,0,,,1,35 +27056608,Home away from Home,17322419,Ohran,Manhattan,Kips Bay,40.74079,-73.98303,Entire home/apt,750,31,0,,,1,365 +27057237,"Bright, Industrial-Chic 1 Bedroom w/Outdoor Patio",203585325,Judd,Brooklyn,Prospect-Lefferts Gardens,40.6597,-73.94863,Entire home/apt,200,2,4,2019-03-20,0.34,1,11 +27057790,EXC Location & Huge duplex Renovated Apt,19303369,Hiroki,Queens,Woodside,40.74353,-73.90443,Private room,35,29,0,,,37,30 +27059366,Your own 2 bedroom Home in NYC,97168718,Chloe,Manhattan,Upper West Side,40.78802,-73.97253,Entire home/apt,250,2,0,,,2,38 +27059505,Great Cozy Apartment.,10120673,Alexo & JC,Queens,Jackson Heights,40.75017,-73.89219,Entire home/apt,180,5,2,2019-04-30,0.21,2,363 +27060026,WBurg Priv Room. Great transport & local amenities,63260355,Spencer,Brooklyn,Williamsburg,40.70975,-73.95651,Private room,80,1,2,2018-08-27,0.19,1,0 +27061395,Affordable room in a super convenient location,4915341,Son,Manhattan,West Village,40.73666,-73.99851,Private room,59,7,5,2019-06-30,0.43,3,3 +27061623,"Stylish, Minimalist Family Pad in Carroll Gardens",203624751,Christian,Brooklyn,Carroll Gardens,40.67738,-73.99723,Entire home/apt,180,3,17,2019-06-01,1.45,1,106 +27061785,Private 1-bedroom in Gramercy/Union Square,48539240,Shreyasi,Manhattan,Gramercy,40.7348,-73.98312,Private room,189,1,1,2018-07-28,0.09,2,0 +27061895,Sunlit Studio In Modern Brownstone,12460642,Tile,Brooklyn,Bedford-Stuyvesant,40.68345,-73.93874,Entire home/apt,95,3,6,2019-07-06,0.54,1,0 +27062294,"Private 1-bedroom, shared bath in Gramery/Union Sq",48539240,Shreyasi,Manhattan,Gramercy,40.73411,-73.98289,Private room,199,1,1,2018-07-30,0.09,2,0 +27063173,East village private bedroom - walk anywhere!,7615002,Paloma,Manhattan,East Village,40.72527,-73.98338,Private room,100,1,33,2019-05-26,2.80,2,1 +27064423,New York Loft,1330116,Robert,Manhattan,Greenwich Village,40.73237,-73.99344,Private room,200,30,1,2018-08-11,0.09,1,90 +27065834,Sunny one bedroom in the Friends Building,83856521,Casey,Manhattan,West Village,40.73264,-74.0062,Entire home/apt,275,1,3,2018-08-31,0.26,1,0 +27067463,Private room for rent,2688409,Ia,Brooklyn,Borough Park,40.64436,-73.99866,Private room,55,3,0,,,1,363 +27078210,Awesome Room in my Cool APT,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68426,-73.9451,Private room,62,2,18,2019-06-02,1.80,3,356 +27078212,Funky Chinatown Bunkbed for 2!,28576665,Anna & Ben,Manhattan,Chinatown,40.71694,-73.99032,Private room,93,1,12,2019-06-23,1.08,2,11 +27079267,Bright room on Top Floor,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68554,-73.9442,Private room,62,2,29,2019-06-18,3.13,3,324 +27079532,NEW YORK CITY MANHATTAN STUDIO.,88900561,Camry,Manhattan,East Harlem,40.80203,-73.93885,Shared room,60,1,17,2019-03-01,1.48,1,0 +27079588,Cozy Private Room in Bedsty,203750889,Matt,Brooklyn,Bedford-Stuyvesant,40.68374,-73.94368,Private room,55,2,20,2019-06-18,1.70,3,353 +27079735,"PRIVATE, Funky bunk style room in Williamsburg",15820210,Scott,Brooklyn,Williamsburg,40.70917,-73.93513,Private room,50,2,25,2019-06-26,2.26,2,21 +27083112,"Stay with PJ above a café, 1 block from the subway",203793342,Pj,Brooklyn,Bedford-Stuyvesant,40.69817,-73.93776,Private room,35,2,21,2019-07-01,1.88,1,1 +27083575,Happy home 2,158178970,Raquel,Staten Island,Randall Manor,40.62972,-74.12539,Private room,22,1,21,2019-07-04,1.77,3,261 +27083945,Private room in UWS near Central Park,43809903,Eddie,Manhattan,Upper West Side,40.80209,-73.96742,Private room,70,2,11,2018-12-31,1.07,4,4 +27084832,Entire 3 Bed Apartment in UWS near Central Park,43809903,Eddie,Manhattan,Upper West Side,40.80233,-73.96742,Entire home/apt,350,1,8,2019-06-23,0.88,4,135 +27085372,Chelsea Manhattan Studio Apartment,42400797,Kristi,Manhattan,Chelsea,40.74217,-73.99649,Entire home/apt,98,12,0,,,1,0 +27085643,"Entire apartment in Clinton Hill, minutes from NYC",349596,Marie-Claude,Brooklyn,Clinton Hill,40.68477,-73.96799,Entire home/apt,189,10,3,2019-05-20,0.32,1,14 +27086130,"Heaven in New York, Suite",185908506,Cynthia,Bronx,Edenwald,40.8859,-73.83517,Entire home/apt,95,3,5,2019-05-31,0.66,3,311 +27086249,Anna's place bed and breakfast,203572377,Anna,Staten Island,Prince's Bay,40.527,-74.20941,Private room,118,1,0,,,1,353 +27087566,Designer apartment with private rooftop and views,579017,Stefan & Marianne,Brooklyn,Greenpoint,40.73438,-73.95863,Entire home/apt,230,10,1,2019-04-01,0.30,1,0 +27088022,"Bright, Brand NEW, and Spacious, Gorgeous Home",115827173,David,Staten Island,Willowbrook,40.59886,-74.13217,Entire home/apt,249,4,9,2019-05-13,0.80,2,351 +27088182,Private room in spacious Harlem apt.,114574,Beau,Manhattan,Harlem,40.81523,-73.9463,Private room,75,2,6,2018-10-15,0.55,2,68 +27088254,Chez Jesse Vacation Spot - Manhattan Loft,3191371,Jesse,Manhattan,East Harlem,40.80714,-73.93747,Private room,80,1,29,2019-06-21,3.04,3,193 +27088944,Charming and Artistic West Village Studio,2102205,Conrad,Manhattan,West Village,40.73894,-74.00108,Entire home/apt,250,2,15,2018-12-22,1.33,1,0 +27089110,High Rise 2 Bed 2 Baths,75405696,Jimmy,Manhattan,Midtown,40.75316,-73.97241,Entire home/apt,450,6,2,2019-07-05,0.31,1,48 +27089135,High-end studio apartment in the heart of Harlem,57336940,Kamali,Manhattan,Harlem,40.81561,-73.93692,Entire home/apt,130,3,9,2019-05-27,0.78,1,0 +27089896,A Piece of NYC,27333268,Seneca,Manhattan,Upper West Side,40.77159,-73.98215,Entire home/apt,151,5,8,2019-01-06,0.73,1,27 +27090376,Cozy Master bedroom/private bath.,154037433,Roland,Queens,Jamaica,40.67022,-73.77296,Private room,90,1,12,2019-07-01,1.11,3,86 +27096053,hip cool House,203650630,Ardinia,Brooklyn,Coney Island,40.5721,-73.99712,Private room,290,1,1,2019-05-31,0.75,1,364 +27098774,Private Room,62533391,Yvonne,Brooklyn,Borough Park,40.63528,-74.00734,Private room,60,1,4,2019-06-01,0.84,7,152 +27100997,Cozy & Private Bedroom near Highline- CHELSEA,203346157,Bryan,Manhattan,Chelsea,40.74309,-73.99535,Private room,115,55,11,2019-05-20,1.31,1,204 +27103785,Beautiful 1 bd NYC Home with a View,2849280,Benjamin,Manhattan,Financial District,40.70617,-74.00948,Entire home/apt,200,7,5,2019-01-01,0.46,1,0 +27104485,Classic Chic West Village Getaway,18416371,Tori,Manhattan,West Village,40.73144,-74.00523,Entire home/apt,250,3,4,2019-01-03,0.39,1,0 +27104814,White ease board room,203307016,Israel,Brooklyn,Bedford-Stuyvesant,40.68031,-73.9186,Private room,44,2,31,2019-05-26,2.70,2,77 +27106745,New York City-Spacious Private Bedroom,203855380,Sheryl,Manhattan,East Village,40.72327,-73.98105,Private room,160,2,17,2019-06-30,1.48,1,0 +27106749,Zen Studio Loft in Beautiful West Chelsea,25720293,Lena,Manhattan,Chelsea,40.74676,-74.00308,Entire home/apt,329,4,17,2019-05-17,1.53,3,252 +27107124,Cozy Midtown Studio,204018218,Annika,Manhattan,Hell's Kitchen,40.76668,-73.99656,Entire home/apt,135,2,21,2019-06-10,2.78,1,5 +27107511,La Cantina + Room in Bed-Stuy,10260340,Anna,Brooklyn,Bedford-Stuyvesant,40.69088,-73.94499,Private room,70,1,4,2019-07-01,0.40,1,0 +27108423,East Village 2 Bedroom Cozy & Sunny Apartment,96347734,T.,Manhattan,East Village,40.72617,-73.97934,Entire home/apt,275,2,47,2019-06-24,4.05,1,275 +27110090,Cozy room in a quiet and clean apartment,75385686,Anna,Manhattan,Washington Heights,40.83668,-73.94476,Private room,37,13,2,2018-08-11,0.17,1,0 +27110361,Artist's home in Williamsburg,8731758,Jeanne,Brooklyn,Williamsburg,40.71326,-73.9644,Entire home/apt,175,5,5,2019-05-23,0.46,1,198 +27111405,King Bedroom - Ideal for Business Travelers,1462483,Danny,Manhattan,Midtown,40.74585,-73.98237,Private room,100,4,32,2019-06-26,2.87,2,174 +27111530,Simple & Spacious Brooklyn Room,68454791,Dominique,Brooklyn,Bedford-Stuyvesant,40.68863,-73.93902,Private room,55,2,6,2018-09-29,0.53,1,79 +27111588,"Artsy 1 bedroom UES apt, minutes from Central Park",2234119,Renee,Manhattan,Upper East Side,40.77093,-73.95485,Entire home/apt,86,3,12,2019-06-25,1.08,1,0 +27111881,Lovely Midtown Railroad Flat with Private Patio,6791240,Mary,Manhattan,Midtown,40.75546,-73.98086,Entire home/apt,200,4,12,2019-05-26,1.24,1,0 +27112282,"Cozy Bedroom in Elmhurst, NY +One block to subway",185679950,Ivon,Queens,Elmhurst,40.74103,-73.88253,Private room,59,2,8,2019-05-27,0.76,1,331 +27112835,5 ave apto,10476100,Cezar,Manhattan,Chelsea,40.73916,-73.99471,Entire home/apt,85,14,1,2018-12-20,0.15,1,16 +27113535,Spacious 1 Bedroom Apartment Near The Met,109196702,David,Manhattan,Upper East Side,40.77648,-73.95428,Entire home/apt,215,2,0,,,2,0 +27113697,PRIME Location:2min Subway 1min LIRR & NEWLY Built,19303369,Hiroki,Queens,Woodside,40.74446,-73.90466,Private room,45,30,5,2019-04-30,0.51,37,1 +27115251,NYC Spacious 3 BR / Private Entrance + Backyard,5179523,Max,Brooklyn,Williamsburg,40.71145,-73.95302,Entire home/apt,315,1,44,2019-05-29,3.84,3,113 +27125757,Artsy Brooklyn Gem-1 min to subway & Prospect Park,8052047,Kristiina,Brooklyn,Prospect-Lefferts Gardens,40.65421,-73.96155,Shared room,47,2,10,2018-11-04,0.93,1,0 +27125791,Brooklyn Penthouse with views and balcony,121772455,Thomas,Brooklyn,Downtown Brooklyn,40.69122,-73.9907,Entire home/apt,149,6,2,2018-10-07,0.18,1,11 +27126270,ENTIRE APARTMENT: BRIGHT & CHARMING- best location,7615002,Paloma,Manhattan,East Village,40.72338,-73.98346,Entire home/apt,100,2,14,2019-07-07,1.39,2,5 +27127045,Luxury basement apartment in newly built house,199214751,Ester,Queens,Fresh Meadows,40.7392,-73.79181,Entire home/apt,250,1,1,2018-08-17,0.09,1,363 +27127722,Suite 18 - Cozy room w/ Private Bathroom,99296570,Daisy,Brooklyn,Brighton Beach,40.57987,-73.95889,Private room,65,1,43,2019-05-27,3.82,5,283 +27128039,Room available in spacious apartment UWS,114375702,Claudia,Manhattan,Upper West Side,40.78493,-73.97683,Private room,50,4,4,2019-01-02,0.42,1,0 +27130196,Luxurious bright private room in stylish apt,1409262,Sarah,Brooklyn,Flatbush,40.64188,-73.95317,Private room,65,2,2,2018-09-28,0.19,6,287 +27131137,New York City Apartment -minimum 30 day rental,49786789,Jp,Manhattan,Inwood,40.86945,-73.92123,Entire home/apt,106,30,1,2019-03-09,0.25,1,8 +27131151,The Brooklyn Blue House 4,183127881,Giana,Brooklyn,Canarsie,40.64651,-73.90043,Private room,59,2,28,2019-06-03,3.19,4,178 +27131580,Spacious UWS 1BR + balcony by Central Park,114216175,Austin,Manhattan,Upper West Side,40.78986,-73.96688,Entire home/apt,195,2,21,2019-06-17,1.83,1,2 +27131607,Private Apartment in Classic Brownstone,204248415,Vince,Brooklyn,Bedford-Stuyvesant,40.68007,-73.92963,Entire home/apt,150,5,36,2019-07-04,3.62,1,145 +27131829,Heart of Bushwick 2 minutes to the L train,23074465,John,Brooklyn,Bushwick,40.70181,-73.91566,Private room,65,1,44,2019-07-01,5.34,3,27 +27132102,★ UNBEATABLE★ 4Beds/Manhattan/NYC/TIME SQUARE,198645701,Weihao,Manhattan,Hell's Kitchen,40.76176,-73.98981,Entire home/apt,700,4,19,2019-06-16,1.63,1,134 +27132152,The Mavis,166809666,Derrick,Manhattan,East Harlem,40.80603,-73.94114,Entire home/apt,275,2,27,2019-06-25,2.87,1,29 +27133123,"Downtown, 1 Bedroom with living room + sofa bed",42991956,Ashley,Manhattan,Lower East Side,40.71936,-73.99229,Entire home/apt,137,5,22,2019-05-27,2.19,1,40 +27133188,Serene large private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.6417,-73.95251,Private room,55,2,2,2018-10-05,0.19,6,287 +27133412,Private Room in Williamsburg Apartment,36444228,Selika,Brooklyn,Williamsburg,40.71671,-73.94094,Private room,70,6,1,2018-08-29,0.10,1,287 +27134625,Garden apartment in the heart of Fort Greene,31619241,Caroline,Brooklyn,Fort Greene,40.68925,-73.97108,Entire home/apt,165,2,16,2019-06-20,3.72,1,29 +27135927,1BEDROOM AT YANKEE STADUIM,158972140,Figo,Bronx,Concourse Village,40.82855,-73.91856,Private room,47,1,9,2019-03-03,0.82,2,332 +27136219,Cozy eclectic bedroom in the heart of Bushwick,19923039,Justin,Brooklyn,Bushwick,40.70144,-73.92094,Private room,35,5,3,2019-01-06,0.27,1,0 +27137095,Giordano Suite - 5 mins to LGA,19536409,Melissa,Queens,East Elmhurst,40.75817,-73.89893,Entire home/apt,85,1,43,2018-12-30,3.72,1,0 +27137301,"Bright, modern duplex w/ rooftop deck & balcony",9736367,Katie,Brooklyn,Bedford-Stuyvesant,40.68652,-73.94848,Private room,46,3,5,2019-04-22,0.47,1,0 +27137607,Beautiful bright Brooklyn Heights 1 bedroom,32717107,Lucas,Brooklyn,Boerum Hill,40.69033,-73.98994,Entire home/apt,130,3,6,2019-06-12,0.51,1,194 +27137651,"Hi-ceiling, Studio, Flatiron NYC",10113487,Aleksandar,Manhattan,Kips Bay,40.73933,-73.9797,Entire home/apt,185,7,13,2019-06-23,1.26,1,292 +27138925,Family friendly apartment near Prospect Park,3388510,Laura,Brooklyn,Flatbush,40.64599,-73.96079,Entire home/apt,100,2,5,2019-03-31,0.46,1,0 +27138938,Comfy Getaway/Steps to Subway/WiFi,79913651,Darryl,Manhattan,Harlem,40.8183,-73.93828,Private room,52,1,13,2019-06-29,1.34,4,167 +27139072,Sunny Private Suite in Luxury Building,95901692,Anthony,Brooklyn,Bedford-Stuyvesant,40.6875,-73.9588,Private room,150,1,36,2019-07-01,3.23,1,29 +27139625,Cute Brownstone apt on tree-lined street Brooklyn,40230580,Kurtis,Brooklyn,Clinton Hill,40.68454,-73.96425,Entire home/apt,88,3,8,2019-01-28,0.81,1,0 +27139685,"SofaBed-Hell's Kitchen, Heart of Manhattan",204335117,Joseph,Manhattan,Hell's Kitchen,40.76391,-73.99325,Shared room,39,1,44,2019-07-02,4.00,1,31 +27139915,Living Room,199833548,Syeda,Queens,Sunnyside,40.74161,-73.92505,Shared room,40,1,20,2019-06-09,1.88,9,343 +27140232,曼哈顿帝国大厦/Time square,107245546,Michael,Manhattan,Chelsea,40.74708,-73.99131,Entire home/apt,155,3,11,2019-07-02,4.78,3,84 +27140359,Beautiful & Big Room in Astoria,64453547,Onur,Queens,Ditmars Steinway,40.77405,-73.90328,Private room,55,20,0,,,3,31 +27140472,Room In Light Filled Home Walk to Prospect Park,2163625,Shannon,Brooklyn,Windsor Terrace,40.65086,-73.97757,Private room,65,2,0,,,2,0 +27140547,Manhattan Apartment in the heart of Harlem,204336983,Joseph & Joséphine,Manhattan,East Harlem,40.806,-73.94082,Private room,90,2,2,2019-01-01,0.18,1,11 +27140578,Cozy private room in stylish Brooklyn home,1409262,Sarah,Brooklyn,Flatbush,40.64118,-73.95245,Private room,54,2,3,2018-10-05,0.28,6,286 +27140780,Bright cozy private room in stylish Brooklyn apt,1409262,Sarah,Brooklyn,Flatbush,40.64228,-73.95204,Private room,40,2,4,2018-09-28,0.37,6,260 +27141013,Modern Newly Renovated Home Away From Home,204346423,Yva,Brooklyn,Mill Basin,40.61768,-73.91669,Entire home/apt,85,2,36,2019-07-07,3.26,1,322 +27141191,NewlyBuilt+Terrace 3min▶︎Subway 30min Manhattan,19303369,Hiroki,Queens,Elmhurst,40.74022,-73.87614,Private room,34,30,0,,,37,0 +27142225,Lovely Brownstone in Brooklyn Heights,624101,Zak,Brooklyn,Brooklyn Heights,40.69176,-73.99336,Entire home/apt,132,3,6,2019-05-27,0.55,1,0 +27143808,Modern studio apt with full kitchen and bath,13031306,Rachael,Manhattan,Harlem,40.82372,-73.95122,Private room,80,2,19,2018-12-03,1.71,1,0 +27149449,LUXURY 1BR ON EAST 44TH~DOORMAN/LAUNDRY,200380610,Pranjal,Manhattan,Midtown,40.75019,-73.97045,Entire home/apt,225,30,0,,,65,310 +27149630,SPACIOUS 2BR 2 BATH IN UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.77093,-73.95873,Entire home/apt,285,30,0,,,65,365 +27150644,LUXURY DOORMAN STUDIOS ON EAST 44th,200380610,Pranjal,Manhattan,Midtown,40.75237,-73.9704,Entire home/apt,190,30,0,,,65,364 +27154602,"Master Suite w/ King Bed, Backyard",1418015,Reuben,Brooklyn,Crown Heights,40.6756,-73.95232,Private room,140,2,41,2019-06-29,3.69,4,334 +27156129,Charming townhouse apartment,1441920,Llewellyn,Brooklyn,Bedford-Stuyvesant,40.68167,-73.93608,Entire home/apt,87,2,0,,,1,0 +27156174,Beautiful & Big Room with Balcony in Astoria,64453547,Onur,Queens,Ditmars Steinway,40.77377,-73.9048,Private room,50,15,0,,,3,0 +27157649,SPACIOUS Bedroom with PRIVATE BATHROOM & ROOF,22264156,Raghav,Brooklyn,Clinton Hill,40.69456,-73.96439,Private room,120,1,3,2019-05-30,0.63,1,0 +27159331,Awesome New York Apartment Close to it All!,30595682,Michael,Manhattan,Hell's Kitchen,40.76795,-73.98432,Entire home/apt,165,2,11,2019-06-02,1.04,1,2 +27159664,Beautiful Sunny Private Bedroom in Brooklyn (JMZ),53365451,Brigid,Brooklyn,Bedford-Stuyvesant,40.6939,-73.93239,Private room,50,6,2,2019-01-01,0.18,1,0 +27160398,Clean + Spacious.,204244117,Patrola,Manhattan,Harlem,40.82423,-73.95056,Private room,49,1,27,2019-06-12,2.41,2,180 +27160493,曼哈顿/帝国大夏/ time square【2】,107245546,Michael,Manhattan,Chelsea,40.74756,-73.99072,Private room,165,2,5,2019-07-02,3.00,3,93 +27160938,Gorgeous light filled Brooklyn Brownstone,12337810,Praise,Brooklyn,Bedford-Stuyvesant,40.68625,-73.94045,Entire home/apt,192,1,2,2018-08-27,0.17,1,0 +27161183,Sumpter Suites,204495302,Judy,Brooklyn,Bedford-Stuyvesant,40.68049,-73.91918,Entire home/apt,150,2,17,2019-06-17,2.34,1,0 +27161388,Brooklyn Town House,2381030,Terry,Brooklyn,Fort Greene,40.68876,-73.97048,Entire home/apt,1200,3,1,2018-08-15,0.09,1,0 +27161807,3 Private Rooms in Full Floor East Village Apt,134613498,Adonis,Manhattan,East Village,40.72673,-73.98766,Private room,415,1,2,2018-12-23,0.23,7,0 +27162696,Sweet BR (A) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63956,-73.95033,Private room,75,3,10,2019-06-30,0.91,3,123 +27163003,Bright Brooklyn Oasis 1 Block from Subway,103681571,Paige,Brooklyn,Bedford-Stuyvesant,40.69149,-73.96043,Private room,60,2,5,2019-05-22,0.48,1,2 +27164116,Efficient and Accessible Harlem Studio,204527519,Kristopher,Manhattan,Harlem,40.80136,-73.95158,Entire home/apt,100,3,16,2019-06-14,1.42,1,0 +27164169,Heart of Williamsburg with huge private terrace,46325694,Unai,Brooklyn,Williamsburg,40.71219,-73.96301,Entire home/apt,329,4,1,2019-01-02,0.16,1,0 +27165248,"Bedroom #5, Basement level, Park, express Q train",2478675,Gina,Brooklyn,Prospect-Lefferts Gardens,40.65614,-73.9584,Private room,39,1,11,2019-07-07,2.29,5,309 +27165702,Cozy Van,10407935,Meng,Manhattan,West Village,40.73399,-74.00357,Entire home/apt,89,1,54,2019-07-01,4.82,8,2 +27166808,Artists/Yoga Sunny Studio - Prime Location!,48201791,Olivia,Brooklyn,Flatbush,40.6395,-73.96507,Entire home/apt,150,4,27,2019-06-07,2.39,2,29 +27166904,PRIVATE APARTMENT IN DOORMAN BUILDING,94832914,John,Manhattan,Financial District,40.70571,-74.00675,Entire home/apt,139,3,1,2019-03-18,0.27,1,0 +27167258,Chelsea Proper,23335317,Jaimi,Manhattan,Chelsea,40.74462,-74.0013,Entire home/apt,230,2,1,2019-06-14,1,1,77 +27168097,Prime Williamsburg location! High ceilings!,54541149,J,Brooklyn,Williamsburg,40.7159,-73.95905,Private room,75,2,1,2018-07-29,0.09,1,0 +27169644,"Bright, Simple, Cozy 1br. Apt in East Williamsburg",204577752,Lilia & Gaby,Brooklyn,Williamsburg,40.7154,-73.93926,Entire home/apt,135,2,44,2019-06-24,4.11,1,7 +27169890,2 BR affordable - good for groups,204581148,Eddie,Manhattan,East Harlem,40.79729,-73.93092,Entire home/apt,185,1,24,2019-06-20,2.06,1,314 +27172827,"Cozy Upper East - 1 Bed +Park | Museums | Subway",25700836,Brenton,Manhattan,Upper East Side,40.77979,-73.95297,Entire home/apt,128,1,11,2018-11-26,0.96,1,30 +27173512,Awesome Apartment near Prospect Park,23371413,Amit,Brooklyn,Crown Heights,40.66483,-73.95883,Entire home/apt,110,4,2,2018-09-16,0.20,1,32 +27173844,Midtown (near Korean town) spacious private room,74529394,Siyu,Manhattan,Midtown,40.74832,-73.98423,Private room,80,5,2,2018-08-31,0.17,1,0 +27185508,Large 1 Bedroom in the Heart of New York City,2596736,Barry,Manhattan,Chelsea,40.74017,-73.99485,Entire home/apt,175,3,6,2019-07-07,0.57,1,5 +27186509,Lovely apartment with a balcony,9598256,Raphaël,Brooklyn,Prospect Heights,40.67329,-73.96627,Entire home/apt,160,5,6,2019-06-30,0.55,1,28 +27188155,Sunny One bedroom in the heart of the East Village,192554415,Nina,Manhattan,East Village,40.7297,-73.98552,Entire home/apt,250,7,16,2019-06-25,1.72,1,135 +27189113,Home away from home in the West Village.,2264902,Leni,Manhattan,West Village,40.73692,-74.00531,Entire home/apt,225,2,17,2019-07-01,1.54,2,0 +27190005,1 Bedroom Suite By LGA / JFK airports & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76087,-73.88375,Private room,45,3,19,2019-04-10,1.67,2,0 +27190713,Modern Studio on Upper East Side,178224519,Lisa,Manhattan,Upper East Side,40.78306,-73.94524,Entire home/apt,150,30,0,,,8,364 +27191921,Fort Pl B&B,204752727,Paul,Staten Island,St. George,40.64275,-74.08001,Private room,120,2,1,2019-04-05,0.31,1,350 +27192502,Private Bedroom A in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.68991,-73.91179,Private room,50,2,26,2019-06-18,2.50,3,80 +27194554,Upper West Side Getaway In the City Center,14459075,Eddy,Manhattan,Morningside Heights,40.80279,-73.96325,Private room,60,2,58,2019-07-07,5.67,1,110 +27195039,BIG FACTORY LOFT - HIP BUSHWICK NEAR 2 METROS!!,35606248,Blake And Madia,Brooklyn,Bushwick,40.70265,-73.92606,Private room,70,2,28,2019-06-09,2.43,5,359 +27195515,2 BEDS -EXTRA ROOM IN ARTIST LOFT -HIP BUSHWICK,35606248,Blake And Madia,Brooklyn,Bushwick,40.70442,-73.92752,Private room,80,2,30,2019-05-24,2.71,5,361 +27195566,1 BR apartment near Times Square,92772140,Alex,Manhattan,Hell's Kitchen,40.76035,-73.99524,Entire home/apt,200,2,22,2019-05-27,2.06,1,155 +27195600,Reign in your castle,204773816,Marisa,Queens,Flushing,40.75785,-73.81948,Entire home/apt,120,3,21,2019-06-13,2.09,1,152 +27195692,Low Price Private Room,204786430,Shamyra,Queens,Ridgewood,40.70775,-73.90853,Private room,53,7,0,,,2,0 +27196488,"2 br furnished apartment sublet for August. Prime Sunnyside location, close to restaurants, stores and subway 7train 40 street stop",204774833,Tatiana,Queens,Sunnyside,40.74506,-73.92444,Entire home/apt,200,1,1,2018-08-24,0.09,1,0 +27196874,"Convenience, comfort & charm on the Upper West",8749245,Sarah,Manhattan,Upper West Side,40.78461,-73.98078,Entire home/apt,175,30,2,2019-05-24,0.27,1,215 +27197193,Soho neighborhood apartment,163482759,John,Manhattan,SoHo,40.72586,-74.00079,Private room,75,1,14,2019-01-25,1.25,1,0 +27199508,Chelsea Studio (450 Sq. Feet) with Balcony!,52602302,Daniel,Manhattan,Chelsea,40.74312,-73.99573,Entire home/apt,149,5,5,2019-06-27,0.45,1,0 +27200105,Spacious brand new apartment in Brooklyn,416361,O,Brooklyn,Bedford-Stuyvesant,40.68036,-73.94587,Private room,150,3,1,2018-08-12,0.09,1,179 +27201242,**Newly Listed 2-bedroom gem with private entrance,1837068,Mansura,Brooklyn,Bushwick,40.69279,-73.91423,Entire home/apt,110,2,21,2019-06-08,2.96,1,13 +27201257,Charming & convenient to subways/1 bed. brownstone,200391647,Lauren,Brooklyn,Park Slope,40.67947,-73.97618,Entire home/apt,150,7,1,2018-10-18,0.11,1,0 +27201468,Large Apt on Upper East! Steps to Q/4/5/6 Subways!,104835154,Itay,Manhattan,Upper East Side,40.77847,-73.94962,Entire home/apt,147,7,10,2019-04-26,0.86,2,11 +27201540,Brooklyn / Bed Stuy :: Brownstone garden-floor apt,257904,David,Brooklyn,Bedford-Stuyvesant,40.68518,-73.93517,Entire home/apt,150,5,5,2018-11-15,0.48,1,0 +27202604,NICE COZY PRIVET ROOM,26877037,Catherine,Brooklyn,Sheepshead Bay,40.59887,-73.9579,Private room,138,1,1,2018-12-04,0.14,2,269 +27202749,Entire 2nd floor w/2 Rooms in Authentic Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69176,-73.9383,Private room,135,2,10,2019-06-27,1.21,6,249 +27202986,HOSTEL,204852524,Sergiy,Brooklyn,Gravesend,40.59982,-73.98679,Shared room,100,1,1,2018-08-14,0.09,1,363 +27203333,850 sq ft Large 3rd Floor NYC Family Loft,29510402,Douglas,Bronx,Longwood,40.82445,-73.90341,Private room,90,2,1,2018-07-29,0.09,3,0 +27203347,"New Great Place, 20min to Downtown Manhattan",204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67786,-73.93254,Entire home/apt,500,1,1,2018-11-19,0.13,14,53 +27203413,Quiet Apartment/ Private Entrance/ Free Parking,204810113,Maria,Staten Island,New Brighton,40.63813,-74.0929,Private room,115,3,42,2019-06-21,3.80,1,115 +27203779,New Sunny 4 bedroom space! Popular! Close2Subway!,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67851,-73.93071,Entire home/apt,300,1,1,2018-11-04,0.12,14,53 +27203985,Awesome room in BK great for two friends sharing!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68923,-73.92816,Private room,43,30,1,2019-05-01,0.43,5,140 +27204768,Wicked Chill Artist Space!,4356698,Youmie,Manhattan,Washington Heights,40.85045,-73.93493,Private room,75,2,20,2019-06-30,1.74,1,357 +27205234,Guest Room With a Cute Backyard!,928165,Meg,Brooklyn,Bushwick,40.6969,-73.9114,Private room,52,2,12,2019-01-04,1.19,1,0 +27205506,Seconds from subway or a 30 min drive to city.,47504485,Danny,Brooklyn,Bensonhurst,40.61183,-73.98219,Private room,85,5,29,2019-07-06,2.58,2,58 +27211525,Brooklyn Home convenient to everywhere,204915695,Jian,Brooklyn,Sunset Park,40.63729,-74.01046,Private room,50,3,25,2019-07-05,2.26,2,108 +27214615,4BR 4 BATH IN THE HEART OF WEST VILLAGE,200380610,Pranjal,Manhattan,West Village,40.73495,-74.00033,Entire home/apt,483,30,0,,,65,364 +27215273,DOORMAN/ GYM/ MODERN 1 BR ON EAST 52ND ST,200380610,Pranjal,Manhattan,Midtown,40.75524,-73.96382,Entire home/apt,290,30,0,,,65,365 +27215478,LUXURY STUDIO ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76701,-73.98174,Entire home/apt,225,30,0,,,65,249 +27215807,LUXURY DELUXE 2BR 2BATH -DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76182,-73.99771,Entire home/apt,550,30,0,,,65,360 +27216072,LUXURY & DESIGNER 1BR IN HELL'S KITCHEN,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76194,-73.99824,Entire home/apt,450,30,0,,,65,365 +27216202,A CLASSIC NYC NEIGHBORHOOD-EAST 86TH/5TH AVENUE,200380610,Pranjal,Manhattan,Upper East Side,40.78009,-73.95929,Entire home/apt,200,30,0,,,65,364 +27216361,Sunny Plant Filled Apt in Williamsburg,5809327,Michele,Brooklyn,Williamsburg,40.70747,-73.95304,Private room,80,3,6,2019-06-01,0.61,1,282 +27216826,LUXURY 2BR 2BATH IN SUTTON PLACE-GYM/DOORMAN,200380610,Pranjal,Manhattan,Midtown,40.75457,-73.96248,Entire home/apt,360,30,0,,,65,364 +27217390,1 BEDROOM ON UES-DOORMAN/WASHER/DRYER,200380610,Pranjal,Manhattan,Upper East Side,40.77834,-73.95193,Entire home/apt,210,30,0,,,65,364 +27217551,EAST 25TH ST~KIPS BAY/EAST VILLAGE/UNION SQUARE,200380610,Pranjal,Manhattan,Kips Bay,40.73863,-73.98002,Entire home/apt,210,30,0,,,65,364 +27217759,LUXURY STUDIO ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.75994,-73.98673,Entire home/apt,225,30,0,,,65,250 +27217819,Easy Eastern Parkway! Minutes From 4/5 Train!,204971560,Natasha,Brooklyn,Crown Heights,40.66957,-73.95764,Private room,75,1,27,2019-07-01,2.47,1,146 +27220502,Large sunny private room near Times Sq. 43D3,190921808,John,Manhattan,Hell's Kitchen,40.75516,-73.99547,Private room,120,7,1,2019-04-26,0.41,47,338 +27221468,AWESOME QUEEN BED B - NEAR 3 METROS WILLIAMSBURG,189625025,Mary And Ryan,Brooklyn,Williamsburg,40.70844,-73.94415,Private room,70,2,20,2019-06-10,1.90,2,345 +27222175,Private Bedroom in the Financial District,126897791,Allison,Manhattan,Financial District,40.70662,-74.00562,Private room,1700,120,0,,,1,0 +27222424,Townhouse private 1 1/2 bedroom garden apartment,195693063,Billy,Manhattan,Harlem,40.82244,-73.94994,Entire home/apt,195,2,42,2019-06-30,4.08,2,257 +27225028,NYC Private 1BR Apartment - 116th Street,59591371,Dustin,Manhattan,East Harlem,40.79889,-73.94489,Entire home/apt,89,6,48,2019-07-02,4.21,1,15 +27225540,Huge Private Brooklyn Room with Two Beds!,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94762,Private room,65,2,21,2019-06-15,2.04,4,334 +27225628,Columbia/Morningside 1BR Sublet in 3BR Apt,23619449,Kaedin,Manhattan,Morningside Heights,40.81308,-73.95993,Private room,45,31,1,2018-08-31,0.10,1,1 +27225643,Cozy room at Pat's Paradise,187870198,Patricia,Queens,Rockaway Beach,40.58511,-73.81757,Private room,53,2,7,2019-06-29,0.61,1,252 +27225719,❤️Private Suite for Friends Getaway Close to NYC,179745489,Sophie,Queens,Elmhurst,40.73088,-73.87488,Entire home/apt,125,2,47,2019-06-27,4.18,1,315 +27225784,Furnished Upper East Side LARGE Studio,10573806,Masha,Manhattan,Upper East Side,40.77168,-73.95393,Entire home/apt,140,2,5,2018-10-28,0.55,1,0 +27225888,Studio Apartment in Gramercy,2457645,Bijal,Manhattan,Gramercy,40.73615,-73.98166,Entire home/apt,130,15,0,,,1,0 +27226871,Lovely Brooklyn Room great for groups,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68613,-73.94786,Private room,65,2,25,2019-06-14,2.52,4,347 +27227103,Furnished and Finished Basement Entire Place SAFE,122044895,Yerddy,Bronx,Wakefield,40.89382,-73.84844,Entire home/apt,75,30,7,2019-05-31,0.69,2,188 +27227269,Huge bedroom in Harlem,28449397,Vanessa,Manhattan,Harlem,40.82958,-73.94184,Private room,80,1,1,2018-10-09,0.11,2,364 +27227358,Jewel of a Room in BK,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68608,-73.94813,Private room,65,2,17,2019-06-24,1.65,4,350 +27227655,Intimate Private Room,205032591,Annie,Brooklyn,Bedford-Stuyvesant,40.68635,-73.94821,Private room,55,2,18,2019-06-04,1.60,4,359 +27227840,"Cute, Comfortable, Full Apartment in NYC!!!",31687877,Christina,Manhattan,Kips Bay,40.74298,-73.97448,Entire home/apt,110,1,42,2019-07-07,3.73,1,8 +27229363,"FOURTH OF JULY!!!! BEST DEAL!! Perfect, 1 bed. apt",835534,J,Manhattan,Upper East Side,40.78319,-73.9544,Entire home/apt,120,1,16,2019-06-09,1.41,1,2 +27230758,Room in modern apartment in hip Williamsburg,31882405,Dawn,Brooklyn,Williamsburg,40.7082,-73.96719,Private room,130,2,12,2019-07-05,1.07,1,26 +27234677,Amazing Upper East Side Apt with private patio,69885871,Jennifer,Manhattan,Upper East Side,40.7729,-73.95761,Private room,120,1,2,2019-02-09,0.31,1,171 +27235064,Cute Williamsburg Apartment Perfectly Located,793717,Alain,Brooklyn,Williamsburg,40.70934,-73.95593,Entire home/apt,162,3,38,2019-06-30,3.34,1,314 +27235864,Cozy bedroom in Harlem,28449397,Vanessa,Manhattan,Harlem,40.82962,-73.94212,Private room,80,1,12,2019-05-21,1.04,2,357 +27236170,Staten Island Home with a View,205132904,Farah,Staten Island,Tompkinsville,40.63513,-74.07929,Private room,135,2,65,2019-06-24,6.13,2,293 +27237325,Beautiful Crown Heights Studio apartment,205144781,Evelyn,Brooklyn,Crown Heights,40.675,-73.92358,Entire home/apt,85,1,53,2019-07-05,4.68,1,306 +27237510,"*NO GUEST SERVICE FEE* Studio Suite w/ Queen Bed, Close to 51st St Subway",205031545,Red Awning,Manhattan,Midtown,40.75299,-73.96659,Entire home/apt,699,3,8,2019-05-19,1.21,49,204 +27237511,*NO GUEST SERVICE FEE* Beekman Tower Premium Studio Suite,205031545,Red Awning,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,699,3,3,2019-03-03,0.50,49,204 +27237512,*NO GUEST SERVICE FEE* Studio Suite with Free Continental Breakfast Daily,205031545,Red Awning,Manhattan,Midtown,40.75239,-73.96684,Entire home/apt,699,3,1,2019-03-31,0.30,49,204 +27237516,*NO GUEST SERVICE FEE* Beekman Tower Studio with Queen Bed & Free Wifi,205031545,Red Awning,Manhattan,Midtown,40.75425,-73.96648,Entire home/apt,699,3,4,2019-05-19,0.82,49,204 +27237526,*NO GUEST SERVICE FEE* 1 Bed Studio Suite - Close to UN Headquarters,205031545,Red Awning,Manhattan,Midtown,40.75397,-73.96697,Entire home/apt,699,3,5,2019-04-29,0.48,49,204 +27237539,*NO GUEST SERVICE FEE* Incredible Location! Luxury Midtown Studio with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75434,-73.96569,Entire home/apt,699,3,3,2019-05-20,0.46,49,164 +27237549,*NO GUEST SERVICE FEE* Luxury Studio Suite in Excellent Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75442,-73.96696,Entire home/apt,699,3,8,2019-06-16,1.18,49,204 +27237563,*NO GUEST SERVICE FEE* Studio Suite w/ Convenient Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.9651,Entire home/apt,699,3,19,2019-06-11,2.45,49,204 +27237570,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite,205031545,Red Awning,Manhattan,Midtown,40.75243,-73.9654,Entire home/apt,699,3,5,2019-05-31,0.74,49,206 +27237572,"*NO GUEST SERVICE FEE* One Bedroom Suite w/ Queen Bed, Close to 51st St Subway",205031545,Red Awning,Manhattan,Midtown,40.75444,-73.96497,Entire home/apt,737,3,2,2019-05-20,0.42,49,216 +27237577,*NO GUEST SERVICE FEE* One Bedroom Suite with Free Continental Breakfast Daily,205031545,Red Awning,Manhattan,Midtown,40.75224,-73.96652,Entire home/apt,737,3,1,2019-02-17,0.21,49,200 +27237578,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75417,-73.96557,Entire home/apt,737,3,8,2019-06-02,1.02,49,188 +27237583,*NO GUEST SERVICE FEE* Beekman Tower Premium One Bedroom Suite,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.96567,Entire home/apt,737,3,1,2019-02-18,0.21,49,222 +27237586,*NO GUEST SERVICE FEE* Luxury One Bedroom Suite in Excellent Midtown Location,205031545,Red Awning,Manhattan,Midtown,40.75451,-73.96708,Entire home/apt,737,3,0,,,49,206 +27237591,*NO GUEST SERVICE FEE* One Bedroom Suite - Close to UN Headquarters,205031545,Red Awning,Manhattan,Midtown,40.75425,-73.96556,Entire home/apt,737,3,4,2019-05-28,0.36,49,249 +27237604,*NO GUEST SERVICE FEE* Luxury Midtown One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75294,-73.96731,Entire home/apt,737,3,2,2019-06-07,0.40,49,235 +27237606,*NO GUEST SERVICE FEE* Luxury One Bedroom Suite w/ Free Continental Breakfast,205031545,Red Awning,Manhattan,Midtown,40.75269,-73.96678,Entire home/apt,737,3,5,2019-05-27,1.17,49,230 +27237609,*NO GUEST SERVICE FEE* Beekman Tower Studio with Fully Equipped Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75308,-73.96732,Entire home/apt,699,3,9,2019-02-24,1.09,49,190 +27237610,*NO GUEST SERVICE FEE* Great Location! Luxury Midtown Studio with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75231,-73.96707,Entire home/apt,699,3,7,2019-05-31,1.27,49,176 +27237623,*NO GUEST SERVICE FEE* Luxury Studio Suite w/ Free Continental Breakfast,205031545,Red Awning,Manhattan,Midtown,40.75283,-73.96675,Entire home/apt,699,3,3,2018-12-12,0.33,49,196 +27237625,*NO GUEST SERVICE FEE* Luxury Midtown One Bedroom Suite with Kitchen,205031545,Red Awning,Manhattan,Midtown,40.75459,-73.96707,Entire home/apt,737,3,3,2019-06-10,0.44,49,153 +27237631,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite with Queen Bed & Free Wifi,205031545,Red Awning,Manhattan,Midtown,40.75238,-73.96653,Entire home/apt,737,3,2,2019-05-23,0.71,49,224 +27238918,Cozy Private Twin Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77214,-73.89169,Private room,52,1,39,2019-07-04,3.38,4,353 +27241336,your home in the big apple,202329412,Anthony Michel,Brooklyn,Crown Heights,40.66516,-73.94097,Private room,46,1,13,2019-05-27,1.13,1,301 +27244093,QUEEN BED 1 NEAR 3 METROS IN WILLIAMSBURG,189625025,Mary And Ryan,Brooklyn,Williamsburg,40.70756,-73.94269,Private room,76,2,29,2019-06-30,2.54,2,330 +27246155,SUNNY 2 BEDS - NEAR 3 METROS IN WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.70936,-73.94427,Private room,86,2,28,2019-06-30,2.61,3,365 +27248443,Cozy Private Queen Room 5min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77309,-73.89256,Private room,85,1,41,2019-07-07,3.66,4,349 +27248487,Cozy & Chic West Village One Bedroom Oasis,205227236,Anne,Manhattan,West Village,40.73394,-74.00175,Entire home/apt,200,2,3,2018-09-03,0.27,1,0 +27249535,**Harmony Room with Bed and Futon**,205234874,Petera,Brooklyn,Bedford-Stuyvesant,40.69128,-73.94311,Private room,60,2,24,2019-06-21,2.22,2,360 +27250227,Artist Retreat Private Single,134521683,Kathy,Manhattan,East Village,40.72401,-73.98154,Private room,50,30,3,2019-06-14,0.30,2,34 +27250336,Cozy Private Full Room 5 min LaGuardia LGA Airport,10229087,Kais,Queens,Ditmars Steinway,40.77248,-73.89263,Private room,52,1,32,2019-07-05,2.83,4,355 +27250504,Exquisite Room--Just 15 minutes from JFK,205243076,Diana,Queens,Cambria Heights,40.69159,-73.73658,Private room,65,2,27,2019-06-30,2.34,2,79 +27250960,Renovated Brooklyn Apt Only 35m to Manhattan!,303926,Kay,Brooklyn,Cypress Hills,40.68351,-73.88448,Entire home/apt,89,2,14,2019-06-09,1.48,2,180 +27251398,EAST RIVER VIEW~HIRISE STUDIO,200380610,Pranjal,Manhattan,Midtown,40.75424,-73.96312,Entire home/apt,200,30,0,,,65,364 +27252114,TOWNHOUSE CHARME IN CITY~EAST 59th STREET STUDIO,200380610,Pranjal,Manhattan,Midtown,40.75909,-73.96398,Entire home/apt,154,30,0,,,65,364 +27252615,LUXURIOUS 3 BR WITH BALCONY & RIVER VIEWS,200380610,Pranjal,Manhattan,Murray Hill,40.74422,-73.97124,Entire home/apt,350,60,0,,,65,327 +27252798,Huge apartment with jacuzzi and backyard,1110299,Loreta,Queens,Ridgewood,40.70108,-73.90222,Entire home/apt,120,2,3,2018-08-27,0.27,1,40 +27254736,Beautiful Empire State Views Studio Apartment,14317115,Samantha,Manhattan,Kips Bay,40.74075,-73.97674,Entire home/apt,86,1,0,,,1,0 +27255101,Comfortable Bedroom in calm Midwood neighborhood,130006475,Nadira,Brooklyn,Midwood,40.62771,-73.96381,Private room,40,1,22,2019-02-17,1.90,1,0 +27255632,Sunny spacious room near Times Square 51E2,190921808,John,Manhattan,Hell's Kitchen,40.75562,-73.99539,Private room,55,30,8,2019-05-21,0.71,47,351 +27255936,"Cozy Room, 2 min Times Square, centrally located",84825183,Antoine,Manhattan,Hell's Kitchen,40.76243,-73.99078,Private room,95,3,3,2018-08-05,0.26,1,5 +27256404,Beautiful Bushwick 3br on the subway,14487073,Jeremy,Brooklyn,Bushwick,40.70382,-73.91456,Entire home/apt,250,2,25,2019-07-01,2.37,2,260 +27257149,~House of Rest~Treehouse Room in Bushwick Brooklyn,427019,Oh,Brooklyn,Williamsburg,40.70713,-73.92918,Private room,55,2,18,2019-05-21,1.61,2,5 +27257929,AWESOME SUNNY 2 BEDS C NEAR 3 METROS WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.70757,-73.94466,Private room,86,2,23,2019-07-01,2.18,3,365 +27257936,AWESOME SUNNY 2 BEDS A NEAR 3 METROS WILLIAMSBURG,189646908,Jolene And Ryan,Brooklyn,Williamsburg,40.7089,-73.94447,Private room,86,2,17,2019-06-02,1.53,3,342 +27259887,Bedstuy Oasis,4089207,Mondell,Brooklyn,Bedford-Stuyvesant,40.68571,-73.93868,Entire home/apt,250,3,22,2019-07-07,1.94,2,314 +27260962,Quiet Manhattan Bedroom - sublet/roommate,49435345,Caitlin,Manhattan,Inwood,40.86813,-73.92393,Private room,50,30,9,2018-10-15,0.81,1,57 +27260995,2br apt for rent daily 10min away in train to City,114887819,Fernando,Brooklyn,Bushwick,40.69752,-73.93497,Entire home/apt,245,2,5,2019-06-03,0.79,1,128 +27261168,Renovated Comfy 1 BDR in Prime Midtown~Close toALL,204348856,Ellie,Manhattan,Midtown,40.7562,-73.96796,Entire home/apt,125,1,35,2019-06-28,3.37,1,35 +27262079,Private Apt 2BR/1Bath/Kitchen/Parking in OUR HOME,119826595,Juan,Bronx,Mott Haven,40.81192,-73.91781,Entire home/apt,132,1,44,2019-06-30,3.91,1,103 +27262712,Unique Harlem experience in sunny lofted studio,205358796,Shana,Manhattan,Harlem,40.80765,-73.95484,Entire home/apt,112,3,4,2019-03-30,0.37,1,24 +27263672,Massive room seconds from Bushwick graffiti,26302195,Michael,Brooklyn,Williamsburg,40.70562,-73.92734,Private room,65,1,2,2019-02-24,0.44,1,0 +27264907,Low price private room train nearby,204786430,Shamyra,Queens,Ridgewood,40.70665,-73.90969,Private room,53,7,4,2019-01-02,0.36,2,0 +27264926,"豪华双人间 +法拉盛步行地铁站",158181451,Sophia,Queens,Flushing,40.74702,-73.82618,Private room,38,28,0,,,1,123 +27274799,RIVER VIEWS-EAST 52ND LUXURY 1 BR,200380610,Pranjal,Manhattan,Midtown,40.75579,-73.9652,Entire home/apt,234,30,0,,,65,364 +27277107,Cozy East Village Room,930201,Lilian,Manhattan,East Village,40.72817,-73.9773,Private room,81,5,9,2019-07-06,0.97,1,110 +27277569,LUXURY SUTTON PLACE 2BR 2BATH-DOORMAN/GYM,200380610,Pranjal,Manhattan,Midtown,40.75375,-73.96362,Entire home/apt,350,30,0,,,65,364 +27277843,"Cute, Comfy Room in the Heart of Bedstuy",28943965,Daniel,Brooklyn,Bedford-Stuyvesant,40.68593,-73.94628,Private room,55,2,3,2018-10-14,0.29,1,0 +27278017,LUXURY 2BR ON WEST 26 ST-GYM/STORAGE ROOM,200380610,Pranjal,Manhattan,Midtown,40.74573,-73.99049,Entire home/apt,550,30,0,,,65,339 +27279139,Charming and Spacious BK Loft 15 mins to Manhattan,3662122,Tina,Brooklyn,Bushwick,40.70743,-73.92294,Entire home/apt,175,4,7,2018-10-05,0.63,3,54 +27279410,Private 4A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75974,-73.99016,Private room,110,1,69,2019-05-31,6.22,12,232 +27279645,Private 4B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76037,-73.9917,Private room,110,1,63,2019-06-23,5.71,12,267 +27279953,Private 4C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75983,-73.99119,Private room,115,1,82,2019-06-21,7.34,12,230 +27279982,WEST 56TH COLUMBUS CIRCLE-LUXURY 1BR- DOORMAN/DECK,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76629,-73.986,Entire home/apt,236,30,0,,,65,364 +27280189,Private 4D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75981,-73.99011,Private room,105,1,79,2019-06-24,6.99,12,241 +27281341,Sunny 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Kips Bay,40.74324,-73.97224,Entire home/apt,184,29,0,,,96,7 +27281452,Budget Friendly Private Room in Brooklyn “L”,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.6838,-73.95161,Private room,60,2,25,2019-06-12,2.29,7,349 +27281620,Trendy & Private Bedroom in Williamsburg! 2-1,204527108,Nina,Brooklyn,Williamsburg,40.71796,-73.957,Private room,87,30,2,2019-06-30,2,3,310 +27281794,Beautiful Private Bedroom in North Brooklyn! 2-2,204527108,Nina,Brooklyn,Williamsburg,40.71918,-73.95735,Private room,87,30,0,,,3,310 +27282297,Spacious Private Bedroom in North Brooklyn! 2-3,204527108,Nina,Brooklyn,Williamsburg,40.71763,-73.95594,Private room,87,30,0,,,3,310 +27282364,Charming Private Room Friends/Couples/Solo “M”,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68511,-73.94948,Private room,65,2,21,2019-06-13,1.95,7,362 +27282824,"Bright, Cozy West Village Studio",193289800,Claire,Manhattan,West Village,40.73214,-74.00531,Entire home/apt,120,2,14,2019-05-20,1.24,1,0 +27283564,"Spacious Bedroom in Ridgewood, Queens 3R-1",205530337,Nina,Queens,Ridgewood,40.70161,-73.90556,Private room,45,30,0,,,8,312 +27284500,"Private bedroom in Ridgewood, Queens 3R-2",205530337,Nina,Queens,Ridgewood,40.70296,-73.9056,Private room,45,30,1,2018-12-14,0.14,8,314 +27284564,"Great Bedroom in Ridgewood, Queens!",205530337,Nina,Queens,Ridgewood,40.70176,-73.90435,Private room,45,30,1,2019-05-29,0.71,8,347 +27284611,Beautiful Bedroom in Brand New Apartment! 3R-4,205530337,Nina,Queens,Ridgewood,40.70378,-73.90582,Private room,45,30,1,2018-11-30,0.14,8,163 +27284901,"Gorgeous One Bedroom in Ridgewood, Queens!",205530337,Nina,Queens,Ridgewood,40.701,-73.90607,Private room,45,30,1,2019-05-15,0.54,8,321 +27285058,Great Private Bedroom in Ridgewood! 3L-3,205530337,Nina,Queens,Ridgewood,40.70285,-73.90411,Private room,45,30,1,2019-06-01,0.77,8,331 +27285234,Spacious Bedroom in Ridgewood! 3L-4,205530337,Nina,Queens,Ridgewood,40.70175,-73.90552,Private room,45,30,0,,,8,340 +27285454,La Estancia,205543083,Sandra,Queens,Woodhaven,40.6905,-73.86117,Private room,80,3,4,2019-01-02,0.36,1,342 +27287076,Clementine's Room,35645017,Clara,Manhattan,East Harlem,40.7962,-73.94894,Private room,85,1,6,2018-08-27,0.53,1,0 +27287158,BEST LOCATION - AMAZING 1 Bedroom Apartment 2 beds,606154,Sam,Manhattan,Gramercy,40.73508,-73.98477,Entire home/apt,118,3,21,2019-06-23,1.86,2,10 +27287501,Bedroom with Private bathroom in East Village,205564408,Patrick,Manhattan,East Village,40.72701,-73.97909,Private room,50,1,5,2018-12-26,0.46,1,0 +27290648,Room in Upper East Side,180212824,Samet,Manhattan,Upper East Side,40.76618,-73.9562,Private room,99,1,18,2019-01-09,1.66,5,0 +27291497,3BR/2.5BTH Modern Brownstone Duplex w Terrace,194684765,James,Brooklyn,Bedford-Stuyvesant,40.68855,-73.9443,Entire home/apt,204,5,28,2019-06-08,2.96,1,225 +27291757,Studio in heart of NoLIta,205606415,Paola,Manhattan,Nolita,40.72159,-73.9962,Entire home/apt,220,1,28,2019-07-05,2.52,1,45 +27292217,"Center of manhattan, Times Square , 1min from st",57724903,Treasure,Manhattan,Theater District,40.76193,-73.98236,Entire home/apt,325,7,0,,,1,0 +27292944,"Cozy duplex in Redhook, Brooklyn +(entire basement)",8593113,Salem,Brooklyn,Red Hook,40.67349,-74.00589,Private room,81,1,7,2019-05-17,0.66,2,48 +27293665,Bright essential cozy private room,99137905,Valentina,Bronx,Wakefield,40.88878,-73.86349,Private room,60,1,1,2019-01-13,0.17,1,269 +27295164,"private room in Redhook, Brooklyn",8593113,Salem,Brooklyn,Red Hook,40.67381,-74.00762,Private room,50,1,25,2019-06-29,2.17,2,351 +27295492,HARLEM REBIRTH OF COOL,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.8087,-73.93897,Private room,90,2,38,2019-06-27,3.36,6,0 +27296173,Super nice space,24000784,Robert,Brooklyn,Sunset Park,40.64431,-74.01261,Private room,45,1,7,2019-07-01,0.75,4,32 +27296868,East 39th Street Furnished Studio,200380610,Pranjal,Manhattan,Murray Hill,40.74688,-73.97342,Entire home/apt,180,30,0,,,65,364 +27297152,LUXURY 1 BR IN CHELSEA-24 HR GYM & SKYLINE VIEWS,200380610,Pranjal,Manhattan,Chelsea,40.74631,-73.99121,Entire home/apt,320,30,0,,,65,364 +27298901,SPACIOUS 2BR 2BATH IN THE HEART OF YORKVILLE,200380610,Pranjal,Manhattan,Upper East Side,40.7732,-73.95029,Entire home/apt,340,30,0,,,65,364 +27299174,LUXURY & SPACIOUS 2BR 2BATH ON UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.76852,-73.96245,Entire home/apt,395,30,0,,,65,346 +27301019,LUXURY NEIGHBORHOOD IN NYC-EAST 86TH ST/5TH AVE,200380610,Pranjal,Manhattan,Upper East Side,40.77964,-73.95865,Entire home/apt,187,30,0,,,65,315 +27301638,Camp Rockaway,200754542,Kent,Queens,Breezy Point,40.56568,-73.87009,Private room,195,1,1,2018-08-25,0.09,2,59 +27301758,Beautiful Woodhaven Home,205684793,Cynthia,Queens,Woodhaven,40.69062,-73.84747,Entire home/apt,170,5,1,2018-08-13,0.09,2,0 +27301897,Delightful Sanctuary in Nolita for 4 Guests~,10457196,Richard,Manhattan,Little Italy,40.71927,-73.99451,Entire home/apt,140,30,3,2018-11-25,0.31,11,104 +27302499,Cozy 2 Bedroom Garden Apartment,14381199,Juliana,Brooklyn,Bedford-Stuyvesant,40.6855,-73.95677,Entire home/apt,125,3,20,2019-06-23,1.94,1,0 +27303282,Spacious Bedroom with Beautiful Views,205697848,Carly,Manhattan,Hell's Kitchen,40.76435,-73.99298,Private room,85,1,8,2019-04-28,0.70,1,30 +27304339,纽约多单元大厦,190324721,Jun Jun,Queens,Flushing,40.76003,-73.83307,Private room,73,1,25,2019-06-18,2.43,4,317 +27304971,Private 1 BD in 2 BD/1 BTH in W. Harlem,66495651,Brittany,Manhattan,Harlem,40.82209,-73.95423,Private room,100,1,0,,,1,302 +27308088,"Sunny, Cozy & Clean Brooklyn Apt Steps from Train",42637974,Valentina,Brooklyn,Crown Heights,40.67782,-73.9474,Entire home/apt,90,7,0,,,1,0 +27308432,Mid-century modern garden oasis,14297465,Thomas,Brooklyn,Crown Heights,40.67189,-73.95624,Entire home/apt,135,3,42,2019-07-05,3.82,1,100 +27309080,"Sunlit private room in Park Slope, Brooklyn.",3819001,Tracy,Brooklyn,South Slope,40.66477,-73.97999,Private room,60,1,18,2019-06-11,1.65,2,308 +27312214,West village COZY! BEST LOCATION!,205777414,Jenny,Manhattan,West Village,40.73858,-74.00619,Entire home/apt,199,4,1,2018-09-18,0.10,1,232 +27312914,Mint room w/attached bath in center of Flushing,205745676,Liqin,Queens,Flushing,40.75749,-73.81983,Private room,80,1,33,2019-07-07,2.87,9,365 +27312987,Bright and spacious room in Bushwick,89589630,Yaw,Brooklyn,Bushwick,40.69629,-73.91351,Private room,50,1,86,2019-06-30,7.70,1,198 +27313587,Cozy and clean 1 bedroom in luxury apartment,36494687,Esther,Manhattan,East Village,40.72071,-73.97822,Private room,55,5,2,2018-08-20,0.18,1,0 +27314038,Nice 20 minute Manhattan 15 to Barclays Center,94214493,Dadrine,Brooklyn,East Flatbush,40.65473,-73.91846,Private room,80,7,1,2019-01-01,0.16,9,365 +27314650,"Spacious room w/attached bath, center of Flushing",205745676,Liqin,Queens,Flushing,40.75897,-73.82011,Private room,95,1,30,2019-07-07,2.66,9,353 +27315942,The converted one bedroom turned into a suite.,205813359,Ivin,Manhattan,Harlem,40.82469,-73.94176,Entire home/apt,120,2,25,2019-06-26,2.43,1,180 +27316669,Bronx Apart,205820814,Luz,Bronx,Highbridge,40.83454,-73.92751,Private room,10,1,0,,,1,180 +27322746,"Lovely bright eclectic 2BR, perfect for couple!",23773099,Elias,Brooklyn,Fort Greene,40.68462,-73.96908,Entire home/apt,110,225,0,,,1,365 +27326744,Cozy NYC Retreat,25459,Christine,Manhattan,Harlem,40.82698,-73.93871,Private room,40,1,22,2019-06-29,2.33,2,105 +27328415,Luxurious Townhouse - Chic & Sunny Room - Rooftop,17866326,Rony,Brooklyn,Bushwick,40.68636,-73.90731,Private room,50,4,2,2019-06-02,0.18,2,0 +27329048,Newly renovated & spacious Woodside room,137358866,Kazuya,Queens,Woodside,40.74411,-73.91077,Private room,40,30,2,2019-04-14,0.45,103,216 +27329585,1BR trendy Bushwick apt & minutes from Manhattan!,205930301,Robert,Brooklyn,Bushwick,40.693,-73.91078,Entire home/apt,99,1,79,2019-06-24,7.18,1,173 +27332332,"Cute, clean and convenient place in , Bed-Stuy.",205952285,Angela,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95036,Private room,65,2,32,2019-06-26,2.89,1,37 +27332770,Warm Home w/ Private Garden (Inwood Manhattan NYC),80381355,Mary,Manhattan,Inwood,40.86912,-73.92183,Entire home/apt,195,2,6,2019-03-31,0.53,1,0 +27333008,Delacroix’s Studio,18884557,A-B,Manhattan,West Village,40.73494,-74.00463,Entire home/apt,150,30,1,2019-06-20,1,1,86 +27333579,Chelsea Apartment,205969507,Chelsea,Manhattan,Chelsea,40.75313,-74.00235,Private room,120,1,4,2019-05-24,0.56,1,5 +27334148,Cozy family style Woodhaven home near JFK Airport,205684793,Cynthia,Queens,Woodhaven,40.69109,-73.84846,Entire home/apt,170,5,4,2018-12-15,0.44,2,0 +27334857,Apartment at Queens Landmark,177825782,Ada,Queens,Jackson Heights,40.75212,-73.88248,Private room,80,4,3,2018-10-11,0.30,2,175 +27336179,"Che’ Randall Deux +SoBro +10 minutes to Manhattan!",30585124,Rawn,Bronx,Longwood,40.81822,-73.90812,Private room,35,5,8,2019-01-02,0.77,2,179 +27336613,Cozy Loft Apartment in Bushwick,74678395,Gabriela,Brooklyn,Bushwick,40.70624,-73.9177,Entire home/apt,130,5,14,2019-06-30,1.24,1,305 +27336782,"Cute room, 45min Manhattan, 20 LGA, 20 JFK 2Peop",205999048,Clara,Queens,Flushing,40.73717,-73.80847,Private room,30,1,16,2019-06-23,1.46,1,153 +27336802,Cute Bed-Stuy Room,205998016,Pilar,Brooklyn,Bedford-Stuyvesant,40.6889,-73.93733,Private room,53,2,40,2019-06-29,3.79,1,13 +27336951,Lux Modern Spacious 1 Bed + Washer/Dryer,203169632,Max,Manhattan,Upper East Side,40.77134,-73.95498,Entire home/apt,350,2,24,2019-06-20,2.48,1,242 +27337223,Your welcome to have a nice stay on Bayview Place,205131610,Steven,Brooklyn,Canarsie,40.64228,-73.90819,Private room,50,2,5,2019-02-14,0.50,3,180 +27337409,"7 Bedroom Victorian Mansion, Built in 1908",45767988,Miki,Brooklyn,Flatbush,40.63876,-73.96025,Entire home/apt,250,1,0,,,1,17 +27337533,Private Room in a lovely Apartment,21621071,Ala,Brooklyn,Bedford-Stuyvesant,40.69156,-73.94846,Private room,30,4,3,2019-04-02,0.27,1,0 +27338033,"Private Bushwick Room -- Close to J, M, L Trains",206009618,Keilyn,Brooklyn,Bushwick,40.70055,-73.93024,Private room,56,2,32,2019-06-25,2.97,1,158 +27338569,Private room & bath.Near subway Luxe @ great price,59880594,Margaret,Manhattan,East Harlem,40.79832,-73.9398,Private room,98,2,18,2019-06-25,1.86,1,209 +27341015,"Bright, Comfy, Conveniently Located Brooklyn Apt.",133298502,Dalila,Brooklyn,Flatbush,40.6498,-73.95592,Private room,100,1,0,,,1,0 +27341122,Williamsburg Loft,206040990,Alejandro,Brooklyn,Williamsburg,40.71425,-73.9623,Entire home/apt,290,5,0,,,1,0 +27343189,Jay's Studio Apartment,204036615,Jehan,Bronx,Allerton,40.87015,-73.85582,Entire home/apt,75,4,35,2019-07-01,3.13,1,169 +27351337,Studio sanctuary in Park Slope Brooklyn,10849252,Leslie,Brooklyn,Park Slope,40.6726,-73.98195,Entire home/apt,130,2,24,2019-07-01,3.27,1,2 +27351442,Room in cute East Village apartment w/ city views,4901731,Joachim,Manhattan,East Village,40.72875,-73.98443,Private room,98,2,15,2019-06-30,1.49,1,29 +27356337,Bright & Bohemian UES 1 BR - Whole Apt!,61100797,Haley,Manhattan,Upper East Side,40.76841,-73.95402,Entire home/apt,180,2,23,2019-06-16,2.04,1,2 +27356543,UES Skyview One Bedroom Gym 5198,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77687,-73.95173,Entire home/apt,200,30,0,,,96,0 +27357537,Stylish South Williamsburg + Waterfront Terrace,28380119,Johnny,Brooklyn,Williamsburg,40.71133,-73.96806,Entire home/apt,250,4,4,2018-12-10,0.38,1,0 +27357619,Private Room; Safe Building; All The Amenities,41287915,Larry,Brooklyn,Bushwick,40.69743,-73.92929,Private room,75,1,27,2019-06-30,2.45,1,29 +27358688,"SOHO Oasis - Sunny, Quiet 2 Bedroom",21940136,Ben,Manhattan,Nolita,40.72191,-73.99592,Entire home/apt,300,3,52,2019-07-05,5.20,1,119 +27359314,Calm in the City w/ 2 Bedrooms and 2 Bathrooms,13642054,Russell,Brooklyn,Bedford-Stuyvesant,40.67936,-73.91375,Entire home/apt,180,2,30,2019-06-11,2.77,1,69 +27359346,Best Gramercy one bedroom apartment,204744401,Howard,Manhattan,Kips Bay,40.73968,-73.98217,Entire home/apt,199,5,18,2019-06-04,1.65,1,248 +27359696,ACintheroom!35minutes toWALL St. quiet&residential,47782497,Robianddebbie,Brooklyn,East New York,40.66983,-73.87745,Private room,65,7,16,2019-06-23,1.42,3,287 +27359897,"ACintheroom!NEAR 3-4-A-C lines, quiet neighborhood",47782497,Robianddebbie,Brooklyn,East New York,40.67061,-73.8759,Private room,45,7,24,2019-06-29,2.11,3,313 +27360252,"Modern, Private Bedroom with Patio and Roof Access",74323368,Joan,Manhattan,Harlem,40.81968,-73.9436,Private room,90,2,39,2019-07-02,3.42,1,29 +27360936,"Enormous sun-drenched loft in Bed Stuy, Brooklyn",7210713,Andrew,Brooklyn,Bedford-Stuyvesant,40.69519,-73.95465,Entire home/apt,150,2,12,2019-07-06,1.09,1,0 +27361321,Prime Location of Flushing Queens 豪华卧室 旅途中的家 E,63312104,Max,Queens,Flushing,40.74764,-73.81795,Private room,55,1,37,2019-06-03,3.31,6,364 +27361471,Bsmt.shared apt close to JFK & Manhattan 2 twins,15145474,Denisse,Queens,Ozone Park,40.68221,-73.8457,Private room,51,4,27,2019-06-23,2.45,4,87 +27361805,Patio suite with terrace,3508047,Brian,Brooklyn,Bushwick,40.70024,-73.924,Private room,45,3,2,2018-08-27,0.18,3,0 +27362309,Not available,14621589,Sol,Brooklyn,Bedford-Stuyvesant,40.69974,-73.94658,Private room,50,400,0,,,1,90 +27362417,Large sunny studio space w/queen bed & living room,13639385,Farah,Brooklyn,Crown Heights,40.67713,-73.94137,Private room,60,3,0,,,1,179 +27362458,Prime Location of Flushing Queens 豪华卧室 旅途中的家 G,63312104,Max,Queens,Flushing,40.74766,-73.81942,Private room,60,1,38,2019-06-23,3.52,6,363 +27363157,"Large, Sunny West Village 1 Bedroom",26278289,Erika,Manhattan,Greenwich Village,40.72862,-74.00054,Entire home/apt,300,4,0,,,1,188 +27363172,Beautiful 4bed Brooklyn Family Townhouse,1603942,James,Brooklyn,Fort Greene,40.68712,-73.97768,Entire home/apt,375,20,2,2019-01-02,0.25,2,0 +27363454,Entire apartmen on Sheepshead Bay,23341244,Oxana,Brooklyn,Sheepshead Bay,40.59356,-73.95869,Entire home/apt,64,30,0,,,1,0 +27364187,Spacious room in Williamsburg with a yard!,9880191,Patty,Brooklyn,Williamsburg,40.71353,-73.94162,Private room,125,1,4,2018-10-15,0.39,2,8 +27364236,Modern Apartment in Williamsburg w/ backyard!,9880191,Patty,Brooklyn,Williamsburg,40.71449,-73.94195,Entire home/apt,250,2,3,2019-01-01,0.32,2,0 +27364319,room in Harlem,206217143,Isidro,Manhattan,Harlem,40.81968,-73.93858,Private room,40,1,7,2019-05-24,0.64,1,0 +27365033,Large Room In Prestigious Neighborhood Of SI,18404082,Alexander,Staten Island,Grymes Hill,40.6157,-74.0985,Private room,89,1,1,2018-11-04,0.12,1,65 +27365650,private bedroom in East Village Apartment,206227910,Maria,Manhattan,East Village,40.72239,-73.9821,Private room,80,3,23,2019-07-02,2.09,1,9 +27365908,"Williamsburg Penthouse, Large Private Deck",118403993,Arielle,Brooklyn,Williamsburg,40.71939,-73.96056,Entire home/apt,600,2,23,2019-06-28,2.20,2,328 +27366041,Sham’s home,80543188,Shamira,Bronx,Fordham,40.86299,-73.89088,Private room,75,2,14,2019-05-01,1.26,1,210 +27366228,Modern Studio in East Flatbush,59808986,Elen,Brooklyn,East Flatbush,40.64933,-73.94539,Entire home/apt,110,1,57,2019-06-10,5.06,3,223 +27366401,Spacious Apartment in the center of Park Slope,195704869,Mauro,Brooklyn,South Slope,40.66793,-73.98934,Entire home/apt,150,3,22,2019-07-07,2.18,1,144 +27366783,Luxury Waterfront Condo with views (and pool!),6584607,Henry,Brooklyn,Williamsburg,40.71784,-73.96363,Private room,90,1,18,2019-05-31,1.62,2,9 +27367243,Sonder | 116 John | Private Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70852,-74.00525,Entire home/apt,125,29,0,,,96,345 +27367939,Sonder | 21 Chelsea | Chic 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74083,-73.99457,Entire home/apt,209,29,0,,,96,335 +27368144,Sonder | Madison Ave | Pristine 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74812,-73.98602,Entire home/apt,287,29,0,,,96,219 +27368472,Sonder | 21 Chelsea | Lively Studio + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74272,-73.99599,Entire home/apt,202,29,0,,,96,279 +27368543,Executive 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Midtown,40.74803,-73.98666,Entire home/apt,287,29,0,,,96,219 +27368907,Sonder | 21 Chelsea | Sunny 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.743,-73.99521,Entire home/apt,239,29,3,2019-03-09,0.37,96,254 +27368990,Sophisticated 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Midtown,40.7482,-73.98776,Entire home/apt,287,29,0,,,96,218 +27369200,Sonder | 21 Chelsea | Colorful 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7429,-73.99428,Entire home/apt,232,29,2,2019-04-16,0.29,96,311 +27369583,Airy 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Kips Bay,40.74295,-73.97177,Entire home/apt,187,29,0,,,96,323 +27369599,Large & Luxury Two Bedrooms Apartment on 34th St,45241930,Juline,Manhattan,Murray Hill,40.74416,-73.9727,Entire home/apt,175,29,5,2019-05-15,0.74,3,49 +27369713,"Welcome to NY :) new, clean and beautiful house",206260220,Idalia,Queens,Jackson Heights,40.75589,-73.85755,Private room,60,1,38,2019-07-07,3.76,1,315 +27370912,Spacious 2 Bed/2 Bath Apt. Sleeps 6 - with Rooftop,15334096,John,Brooklyn,Williamsburg,40.71448,-73.95198,Entire home/apt,310,4,0,,,1,87 +27372891,Beautiful Chelsea Home Near The High Line & More!,17506009,Jeff,Manhattan,Chelsea,40.74564,-74.0006,Entire home/apt,200,1,12,2019-05-26,1.09,1,6 +27373231,10 minutes from JFK Airport Rockaway Beach Bliss,196557649,Erica,Queens,Edgemere,40.59684,-73.76873,Entire home/apt,200,1,7,2019-06-16,0.62,2,311 +27373536,"Historic Greenpoint Loft 2,000sqft",6776218,Raymond,Brooklyn,Greenpoint,40.7308,-73.95775,Entire home/apt,650,4,1,2019-06-09,1,1,168 +27373599,Perfect pad nested in best spot in bk,10606156,Eric,Brooklyn,Greenpoint,40.7244,-73.95435,Entire home/apt,75,4,0,,,2,177 +27374183,"Cozy Kensington room by F,G, B16, B35 :))",14898658,Chadanut,Brooklyn,Kensington,40.64205,-73.98049,Private room,40,1,19,2019-06-22,1.69,11,28 +27375052,Super clean! 2 Bedrooms in Bensonhurst -Sleeps 8,206313609,Lily,Brooklyn,Bensonhurst,40.60557,-73.99799,Entire home/apt,123,2,27,2019-06-25,2.57,2,128 +27375467,Fashion Of The City: Apartment in TIMES SQUARE NYC,9738823,Sam,Manhattan,Hell's Kitchen,40.76335,-73.98737,Private room,150,2,41,2019-06-16,4.17,1,67 +27380062,Room for rent in spacious brooklyn appartment,8346419,Yana,Brooklyn,Bushwick,40.70296,-73.91755,Private room,47,7,2,2018-12-30,0.18,1,0 +27382741,Sunny private room in renovated apartment (BR 1),206359223,Abraham,Brooklyn,Bedford-Stuyvesant,40.68033,-73.91023,Private room,31,30,1,2018-09-11,0.10,1,62 +27384075,"Comfortable private room in Astoria, Queens",68170006,Charles,Queens,Astoria,40.75519,-73.91582,Private room,54,2,2,2018-09-09,0.20,1,0 +27384626,TRUE2BR-PRIME MIDTOWN EAST~53rd&3rd,200380610,Pranjal,Manhattan,Midtown,40.75632,-73.96795,Entire home/apt,235,30,0,,,65,249 +27385411,LUXURY 1 BR ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76634,-73.98155,Entire home/apt,320,30,0,,,65,249 +27385494,LUXURY 2 BR ON WEST 56TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Midtown,40.76541,-73.98179,Entire home/apt,495,30,0,,,65,364 +27385914,LUXURY STUDIO IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76029,-73.99811,Entire home/apt,300,30,0,,,65,365 +27385966,LUXURY 2 BR ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.75975,-73.98698,Entire home/apt,470,30,0,,,65,250 +27386339,LUXURY DELUXE 1BR IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76191,-73.99818,Entire home/apt,350,30,0,,,65,281 +27386991,LUXURY 2BR 2BATH IN HELL'S KITCHEN-DOORMAN/GYM,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76181,-73.99855,Entire home/apt,350,30,0,,,65,281 +27387238,FLEX. 2BR IN PRIME LOCATION-MIDTOWN EAST,200380610,Pranjal,Manhattan,Midtown,40.7525,-73.96683,Entire home/apt,200,30,0,,,65,339 +27387265,LUXURY 3BR IN MIDTOWN WEST NEAR COLUMBUS CIRCLE,200380610,Pranjal,Manhattan,Midtown,40.76366,-73.98342,Entire home/apt,435,30,0,,,65,329 +27387286,"Modern 1 bedroom with office, 2 minutes to R Train",84683441,Brian,Brooklyn,Sunset Park,40.65945,-73.99383,Entire home/apt,100,2,12,2019-07-01,1.08,1,2 +27387520,1BR ON BROADWAY & WEST 71ST STREET,200380610,Pranjal,Manhattan,Upper West Side,40.779,-73.98319,Entire home/apt,200,30,0,,,65,342 +27388568,Casa Finca Sanctuary Duplex w/ Private Garden,895135,Suanny,Brooklyn,Williamsburg,40.70732,-73.94536,Private room,130,3,12,2019-07-02,1.08,3,90 +27389045,CITY VIEWS &BALCONY~GORGEOUS 2BR IN MURRAY HILL,200380610,Pranjal,Manhattan,Murray Hill,40.74632,-73.97307,Entire home/apt,305,30,0,,,65,364 +27389647,Master Bed/Bath near Lincoln Center in high-rise,119531605,Nicole,Manhattan,Upper West Side,40.7737,-73.99027,Private room,99,1,7,2018-08-31,0.61,1,0 +27389714,32 FLR VIEWS!LINCOLN SQR-LUXURY MIDTOWN WEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77071,-73.98545,Entire home/apt,230,30,0,,,65,348 +27389854,Queens Apartment,206400943,Homemattie,Queens,Richmond Hill,40.69103,-73.83407,Entire home/apt,150,3,6,2019-06-25,0.55,1,162 +27389930,42NDFLR VIEWS!LINCOLN SQR-LUXURY MIDTOWNWEST 60TH,200380610,Pranjal,Manhattan,Upper West Side,40.77095,-73.98626,Entire home/apt,220,30,0,,,65,364 +27390188,2BR APT IN MIDTOWN~WEST55TH STREET,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76711,-73.98685,Entire home/apt,250,30,0,,,65,275 +27390867,NYU/UNION SQRE/EAST VILLAGE-QUIET STUDIO EAST 25TH,200380610,Pranjal,Manhattan,Kips Bay,40.73865,-73.9781,Entire home/apt,185,30,0,,,65,364 +27391028,2BR WITH PRIVATE PATIO EAST VILLAGE,200380610,Pranjal,Manhattan,East Village,40.73223,-73.98658,Entire home/apt,253,30,0,,,65,332 +27391206,PERFECT STUDIO FOR 2 EAST 60th ST,200380610,Pranjal,Manhattan,Upper East Side,40.75969,-73.96071,Entire home/apt,150,30,0,,,65,364 +27392814,2BR ON MIDTOWN EAST~EAST 34TH STREET,200380610,Pranjal,Manhattan,Murray Hill,40.7444,-73.97284,Entire home/apt,350,30,0,,,65,364 +27393400,Sonder | 116 John | Dashing Studio + Gym,12243051,Sonder,Manhattan,Financial District,40.70856,-74.00659,Entire home/apt,135,29,0,,,96,332 +27393606,Bedstuy Living,4406629,Peter,Brooklyn,Bedford-Stuyvesant,40.69228,-73.94566,Private room,50,30,15,2018-10-03,1.36,1,179 +27393765,Little Oasis,95564806,Olvin,Brooklyn,Brownsville,40.6604,-73.91227,Private room,59,2,32,2019-06-17,2.85,3,0 +27394468,Bright Light High-rise Spacious Room with Balcony,206451695,Vanessa,Manhattan,Hell's Kitchen,40.7594,-73.99748,Private room,180,4,10,2019-06-15,0.91,3,365 +27394897,Renovated 1 Bedroom apt in Bensonhurst- Sleeps 4,206313609,Lily,Brooklyn,Bensonhurst,40.60569,-73.99823,Entire home/apt,113,3,24,2019-06-18,2.22,2,96 +27395171,Cozy room w/attached bath in center of Flushing,205745676,Liqin,Queens,Flushing,40.75902,-73.82099,Private room,80,1,30,2019-06-21,2.69,9,189 +27397256,(WOMEN ONLY) Spacious & 10 min from the airport!,33905781,Rwaida,Queens,Astoria,40.76756,-73.91798,Private room,45,2,4,2018-09-28,0.37,1,249 +27398613,CLEAN SAFE apart near NYU/East Village,206482566,Sarah,Manhattan,Stuyvesant Town,40.73182,-73.98158,Private room,100,30,3,2018-08-23,0.28,2,0 +27398782,WeLive Wall Street -- Four Bedroom / Two Bath,159610596,WeWork,Manhattan,Financial District,40.70448,-74.00615,Entire home/apt,525,1,25,2019-07-07,2.53,6,203 +27398972,"Room in beautiful, well-lit Brooklyn Brownstone",2685910,Alison,Brooklyn,Bedford-Stuyvesant,40.68707,-73.95482,Private room,100,2,0,,,1,0 +27401585,Relaxing Ridgewood Apartment,2420988,Erin,Queens,Ridgewood,40.70804,-73.89747,Entire home/apt,105,7,2,2019-01-01,0.22,1,93 +27402244,Charming and Spacious East Village apartment!,205772141,Jorge,Manhattan,East Village,40.72935,-73.99054,Entire home/apt,250,2,10,2018-11-25,0.97,1,188 +27402384,Modern Staten Island Townhouse- Welcome home!,206508895,Arika,Staten Island,Randall Manor,40.6406,-74.11702,Entire home/apt,67,2,39,2019-06-25,3.45,1,45 +27403622,Charming exposed brick bedroom in the heart of LES,52050220,Brooke,Manhattan,Lower East Side,40.71873,-73.98553,Private room,100,1,4,2018-09-21,0.36,2,0 +27405246,"Private 2 Bdrm Apt, 1 Block to Subway",34755288,Toby,Bronx,Longwood,40.81872,-73.90014,Entire home/apt,75,7,0,,,1,0 +27405333,Entire 2 BD apartment in heart of lower east side,52050220,Brooke,Manhattan,Lower East Side,40.71796,-73.98445,Entire home/apt,226,1,1,2018-08-05,0.09,2,0 +27405874,Neat and quiet space for you.,206538133,Gayle,Manhattan,Financial District,40.70522,-74.00728,Entire home/apt,175,2,1,2018-08-26,0.09,1,0 +27406282,"Central to everything, Spacious, Sunny & No MarkUp",379051,Michael,Manhattan,Hell's Kitchen,40.76463,-73.99128,Entire home/apt,550,3,1,2018-08-01,0.09,1,353 +27406558,Cozy home in friendly & hip Bushwick near subway,8245652,Cazzie,Brooklyn,Bushwick,40.69667,-73.90806,Entire home/apt,120,2,6,2019-03-24,0.77,2,0 +27407257,Cozy 2 bedroom in Bedford Stuyvesant,33750239,Chao,Brooklyn,Bedford-Stuyvesant,40.68634,-73.93817,Entire home/apt,126,2,30,2019-06-18,2.88,2,35 +27407457,Cozy & quiet living experience in a trending area,11409024,Aysu,Brooklyn,Bedford-Stuyvesant,40.68221,-73.94487,Private room,61,2,1,2019-07-01,1,1,349 +27407852,Room in Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76529,-73.95771,Private room,99,1,18,2019-02-10,1.59,5,0 +27407863,2BR Apartment in Manhattan - 8m from Times Square,206551997,Sean,Manhattan,Hell's Kitchen,40.75607,-73.9941,Entire home/apt,200,3,10,2019-07-05,4.48,1,206 +27408243,"SUNNY ROOM IN BUSHWICK +QUEEN SIZE J/M/Z/L",7638718,Gil,Brooklyn,Bushwick,40.70048,-73.9295,Private room,54,7,8,2019-05-25,0.75,1,0 +27409329,Most beautiful bedroom in Harlem,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80874,-73.94038,Private room,90,2,38,2019-06-25,3.40,6,178 +27414303,Beautiful Apartment in Brooklyn Heights,206509509,Jasna,Brooklyn,Brooklyn Heights,40.6987,-73.99275,Entire home/apt,155,1,12,2019-06-26,1.16,1,6 +27416658,HARLEM ROCKS/BEST APARtMENT,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.807,-73.93976,Entire home/apt,400,2,0,,,6,173 +27417822,2BR ON BROADWAY & WEST 71ST STREET,200380610,Pranjal,Manhattan,Upper West Side,40.77725,-73.98407,Entire home/apt,250,30,0,,,65,334 +27420805,"Peaceful Retreat, One stop from Manhattan",718630,Sara,Queens,Long Island City,40.74583,-73.95363,Entire home/apt,150,3,2,2019-04-21,0.32,1,3 +27422570,Peaceful loft,34643568,Dave,Manhattan,East Harlem,40.79232,-73.94156,Private room,85,3,2,2019-05-06,0.79,6,90 +27422684,Brooklyn Style Hostel RM4 #3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69393,-73.957,Shared room,38,3,12,2019-06-12,1.07,34,365 +27423688,New York Po home sweet home,176043852,Hellen,Manhattan,East Harlem,40.8093,-73.93747,Shared room,220,4,2,2019-03-29,0.20,1,41 +27424575,Brooklyn Style Hostel RM4 #2,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69254,-73.95563,Shared room,37,2,10,2019-04-22,0.90,34,362 +27424610,private room in east williamsburg spacious loft,2948064,Anthony,Brooklyn,Williamsburg,40.71031,-73.93623,Private room,58,3,46,2019-07-03,4.19,2,126 +27425011,Stylish New York Apartment,10428298,Sheila,Manhattan,Chelsea,40.73768,-73.99565,Entire home/apt,220,14,0,,,1,0 +27425265,Brooklyn House,147590647,Ava,Brooklyn,Dyker Heights,40.61699,-74.01042,Private room,55,1,39,2019-07-07,3.45,1,45 +27425371,Bright+Cozy Apartment w/ Balcony,14812962,Domitille,Brooklyn,Crown Heights,40.67321,-73.95386,Entire home/apt,93,5,3,2018-09-01,0.28,1,0 +27425828,Luxury studio on West 91st & Broadway,200380610,Pranjal,Manhattan,Upper West Side,40.79026,-73.97304,Entire home/apt,175,30,0,,,65,364 +27426650,Private room in east Williamsburg Brooklyn Loft,2948064,Anthony,Brooklyn,Williamsburg,40.70859,-73.93572,Private room,58,3,47,2019-07-04,4.26,2,188 +27426767,Signature-Manhattan-Studio,5699385,Eugene,Manhattan,Kips Bay,40.73932,-73.97764,Entire home/apt,140,5,13,2019-06-23,1.23,1,24 +27426797,George's Miraculous Studio,7183012,George,Manhattan,Kips Bay,40.73967,-73.98171,Entire home/apt,160,10,2,2018-12-29,0.24,1,81 +27427289,Test Drive A Historic Brownstone in Brooklyn!,6456799,Cheryl,Brooklyn,Bedford-Stuyvesant,40.68726,-73.94176,Entire home/apt,125,21,2,2019-05-09,0.65,1,250 +27427898,Private 2 Bd Guest House. Great for Quiet Getaway,34313176,Eddie,Queens,Rego Park,40.71662,-73.85971,Entire home/apt,140,2,11,2019-06-26,1.17,4,335 +27428046,Upper West Side Apartment,200834302,Harold & Rose,Manhattan,Harlem,40.80329,-73.957,Entire home/apt,126,4,34,2019-07-02,3.12,1,90 +27429253,"Cozy house in Woodside, comfortable are!!",200239515,Shogo,Queens,Woodside,40.7423,-73.89426,Private room,35,30,2,2019-04-27,0.58,15,5 +27429817,Spacious paradise all by urself DT Flushing Mainst,161899037,Tony,Queens,Flushing,40.75676,-73.83288,Entire home/apt,159,2,7,2019-07-01,2.44,7,67 +27430644,Bedroom Three (Master) in House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.67261,-73.79675,Private room,99,1,49,2019-06-28,5.88,3,38 +27431305,"Modern room with great light, privacy nr J train",5680111,Timothy,Brooklyn,Bushwick,40.68596,-73.914,Private room,63,5,6,2019-06-04,0.54,7,133 +27431313,Wonderlust in WIlliamsburg,205594437,Gabrielle,Brooklyn,Williamsburg,40.70819,-73.96597,Entire home/apt,180,2,5,2018-10-25,0.47,1,0 +27431698,Luxurious Modern Queen Bedroom in Brand New Apt,5680111,Timothy,Brooklyn,Bushwick,40.68654,-73.91454,Private room,63,6,3,2019-06-29,0.27,7,187 +27432653,Sleep Under the Stars!,105699183,Crystal,Manhattan,Harlem,40.82771,-73.9499,Private room,65,4,2,2019-05-28,0.25,2,0 +27433046,Room in Ditmas Park Mansion,1548010,John,Brooklyn,Flatbush,40.63952,-73.9601,Private room,48,30,3,2018-08-31,0.28,1,0 +27434658,"Sunny and cozy room, 20 min from Manhattan",11158514,Yulia,Brooklyn,Flatbush,40.64472,-73.96263,Private room,42,10,1,2018-09-12,0.10,1,0 +27435989,**Studio Apartment 20 min. From MANHATTAN **,206758830,Chris And Jocelyn,Queens,Middle Village,40.71775,-73.87488,Entire home/apt,85,2,36,2019-06-09,3.40,1,290 +27436322,King Sized Room; Bay Ridge,84155085,Ridhima,Brooklyn,Bay Ridge,40.63145,-74.02375,Private room,50,2,1,2018-08-27,0.09,1,0 +27436334,Modern Stay with a Balcony View in the City,109930093,Chris,Manhattan,East Harlem,40.79505,-73.93126,Entire home/apt,199,2,15,2019-06-22,1.40,2,230 +27437662,New York Apartment,206774126,Brene,Manhattan,Harlem,40.82788,-73.93905,Entire home/apt,85,15,0,,,1,0 +27437794,Cozy Greenpoint,1720151,Sally,Brooklyn,Greenpoint,40.72208,-73.94275,Entire home/apt,315,2,0,,,2,364 +27438452,TAO (The Ascending Oasis),204684505,David,Brooklyn,East Flatbush,40.63558,-73.94929,Entire home/apt,199,3,9,2019-05-08,0.81,1,353 +27453970,Manhattan - Master Room - 1mn Metro - Central Park,57002433,Lucile,Manhattan,East Harlem,40.79713,-73.941,Private room,80,1,25,2019-07-02,2.25,2,0 +27454297,Brooklyn Style Hostel RM4 #1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69322,-73.95519,Shared room,36,3,12,2019-06-19,1.06,34,361 +27454358,Sunny Huge Room 3rd Floor,195041901,Lucy,Brooklyn,Bedford-Stuyvesant,40.68323,-73.95108,Private room,40,30,2,2018-12-14,0.27,3,331 +27454691,Myrtle the Turtle Room,32346001,Michael,Brooklyn,Bushwick,40.69854,-73.92373,Private room,106,1,2,2018-10-25,0.22,2,5 +27454904,Spectacular Loft Like Garden Floor,206195782,Leigh,Manhattan,Harlem,40.80804,-73.95373,Entire home/apt,195,2,14,2019-07-01,1.43,1,33 +27455308,SHORT LAYOVER/Weekend GETAWAY FOR 2 Cozy Studio,206889476,Shondel,Queens,Jamaica,40.68078,-73.79492,Entire home/apt,75,1,63,2019-07-05,6.10,1,61 +27455707,Spacious Apartment in Astoria,243321,Richard,Queens,Long Island City,40.76398,-73.92969,Entire home/apt,150,3,0,,,1,0 +27457026,New york Multi-unit building,125320407,Sata,Queens,Jamaica,40.70653,-73.80561,Entire home/apt,1000,2,0,,,5,365 +27457583,"Spacious 2 bdrm -1 block to train, 12 mins to city",201203968,William,Brooklyn,Williamsburg,40.71283,-73.94157,Entire home/apt,160,2,59,2019-06-19,5.46,2,23 +27458304,Palatial Serenity Close to Central Park & Museums,56283770,Lia,Manhattan,Upper East Side,40.76515,-73.96662,Entire home/apt,185,30,0,,,6,123 +27459543,Central Park High Floor Luxury One bedroom,17477908,Mat,Manhattan,Upper West Side,40.79285,-73.9676,Entire home/apt,264,30,2,2018-12-24,0.25,10,343 +27459661,A Quiet Space,206926246,Gwen,Brooklyn,Canarsie,40.62831,-73.89876,Private room,40,3,23,2019-07-05,2.31,1,357 +27460411,"Breathtaking views in this unique, brand new apt",894516,Lev,Queens,Astoria,40.77198,-73.92206,Entire home/apt,120,3,23,2019-06-10,2.10,1,16 +27460536,Heart of Bushwick minutes to the L train,23074465,John,Brooklyn,Bushwick,40.70192,-73.9168,Private room,65,1,31,2019-06-30,3.75,3,134 +27461602,Luxury 2 bdrm Apt near Soho with huge patio,3125234,Timothy,Manhattan,Chinatown,40.71882,-73.99652,Entire home/apt,350,2,8,2019-06-30,0.73,1,52 +27462003,Great Room in Manhattan,184398500,Ernesto,Manhattan,East Harlem,40.80026,-73.94398,Private room,75,1,2,2018-10-07,0.19,1,0 +27462063,Luxurious West Village Studio with Zen Garden,21888830,Jordan,Manhattan,West Village,40.73495,-74.00402,Entire home/apt,190,30,5,2019-04-01,0.60,1,130 +27464651,Magical UWS Manhattan loft with two kitties!,97170205,Kristen,Manhattan,Upper West Side,40.78779,-73.96881,Entire home/apt,65,3,9,2019-01-05,0.87,1,0 +27465159,Amazingly convenient Lower Manhattan 1 Bedroom,206974381,Elijah,Manhattan,Chinatown,40.71709,-73.99746,Entire home/apt,180,2,19,2019-06-22,2.00,1,179 +27465935,Cozy Bushwick Apartment,105983342,Isobel,Brooklyn,Bushwick,40.68863,-73.90638,Entire home/apt,100,1,1,2018-08-27,0.09,1,0 +27466393,Sunny bdr w stunning view in prime Williamsburg!!!,8879096,Cristina,Brooklyn,Williamsburg,40.71688,-73.95107,Private room,65,3,6,2019-04-11,0.54,1,0 +27466647,Le Bain,6485,Saeko,Brooklyn,Bedford-Stuyvesant,40.6813,-73.93304,Entire home/apt,150,5,4,2019-05-09,0.47,1,160 +27467399,Quality accommodation in a prime location!,100704594,Kate,Manhattan,Chelsea,40.74752,-73.9976,Private room,225,3,21,2019-05-21,2.03,1,8 +27468323,*Cozy Room in Manhattan with Private Living Room*,207003851,Carlos Ivan,Manhattan,East Harlem,40.79917,-73.93716,Private room,111,3,9,2018-11-29,0.88,1,3 +27468927,Bright and Modern Luxury Master Room,206778021,Vanessa,Manhattan,Harlem,40.82287,-73.95394,Private room,150,2,26,2019-07-06,2.34,2,55 +27469022,Quaint Apartment in East Harlem,207010341,Maria,Manhattan,East Harlem,40.79578,-73.93398,Entire home/apt,145,5,2,2018-09-03,0.18,2,1 +27470574,Bright private room with high ceilings near subway,35328956,Mansimran,Brooklyn,Bedford-Stuyvesant,40.6905,-73.95906,Private room,57,2,2,2019-03-01,0.32,1,0 +27470676,Country Living Magazine's Inn of the Month!,56283770,Lia,Manhattan,Upper East Side,40.76389,-73.96808,Entire home/apt,135,30,0,,,6,178 +27471155,1 bed entire apartment Williamsburg,202869636,James,Brooklyn,Williamsburg,40.71832,-73.95566,Entire home/apt,150,4,7,2019-05-17,0.63,1,5 +27471933,Beautiful Large Room in Prime Rockaway Location,207038607,Erik,Queens,Rockaway Beach,40.58754,-73.81296,Private room,53,1,14,2019-04-09,1.30,1,357 +27472037,Private Room in Bed-stuy,104569137,Samuel,Brooklyn,Crown Heights,40.67829,-73.9505,Private room,60,2,0,,,1,40 +27472111,"Private .5 bath/ Queen Room Bushwick Brooklyn, NYC",2885704,Victor,Brooklyn,Bushwick,40.69383,-73.92068,Private room,35,2,43,2019-06-23,4.08,2,15 +27473250,The Skyline Loft — Bright Airy Room Near Train,14364462,Ashley,Brooklyn,Bushwick,40.7052,-73.92101,Private room,65,3,3,2019-02-17,0.28,2,0 +27477710,Two bedroom apt w/parking 10mins to LGA & Flushing,157337532,Henry,Queens,College Point,40.77859,-73.84323,Entire home/apt,100,1,62,2019-07-07,6.00,2,77 +27478943,Peaceful Living,132536008,Sarah,Queens,Springfield Gardens,40.6609,-73.75633,Entire home/apt,100,2,4,2019-06-30,1.82,1,178 +27480436,"Luxury penthouse with stunning views, very quiet",52676179,Kathy,Manhattan,Hell's Kitchen,40.76213,-74.00126,Entire home/apt,144,2,2,2019-01-03,0.18,1,0 +27481115,Bedroom in Brooklyn Apartment,170384085,Bethany,Brooklyn,Crown Heights,40.66933,-73.94173,Private room,49,1,13,2018-08-31,1.15,1,0 +27482124,"Large, Bright Studio for Rent",20398684,Heather,Manhattan,Midtown,40.75135,-73.97197,Entire home/apt,120,2,6,2019-04-15,0.62,1,0 +27482592,"Cute, clean and sunny one bedroom with character",52644225,Alex And Tatiana,Queens,Sunnyside,40.74245,-73.92587,Entire home/apt,77,2,3,2018-09-10,0.29,1,0 +27483961,"Modern, Cozy Apt Share for Young Professionals",2822805,Ollie,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94976,Private room,60,30,1,2018-12-01,0.14,8,0 +27484611,Apartment in Tribeca with huge private terrace,64971854,Ana Sophia,Manhattan,Tribeca,40.71793,-74.00594,Entire home/apt,160,1,8,2019-04-21,0.73,1,0 +27486545,Affordable cozy private room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73781,-73.80845,Private room,62,1,10,2019-06-23,0.92,5,90 +27487078,Private Suite,1353336,Dennis,Queens,Astoria,40.75759,-73.91703,Private room,90,5,1,2018-09-29,0.11,1,69 +27488220,"Private room Flushing Queens, 15 min from 7train",54508119,Paolo,Queens,Flushing,40.7423,-73.8047,Private room,38,1,16,2019-06-30,1.42,1,362 +27488806,Aesthetically Designed Modern Private Room,206778021,Vanessa,Manhattan,Harlem,40.82221,-73.95606,Private room,150,2,24,2019-06-21,2.38,2,47 +27489188,Nice Apartment in Gramercy Park,27336207,Juan Eduardo,Manhattan,Gramercy,40.73569,-73.98097,Entire home/apt,160,3,6,2019-05-19,0.56,2,0 +27489247,MASSIVE Studio Space,12841127,Savannah,Manhattan,East Harlem,40.7895,-73.94827,Entire home/apt,128,90,8,2019-01-02,0.71,1,0 +27491339,Comfortable Duplex Studio with Balcony! Near train,120643397,Rachel,Brooklyn,Midwood,40.62258,-73.97398,Entire home/apt,139,2,41,2019-07-07,3.70,1,62 +27491393,The Best apartment in Bayridge,207195903,Veronica,Brooklyn,Bay Ridge,40.6294,-74.02258,Entire home/apt,80,3,39,2019-06-23,4.50,1,8 +27491566,Brooklyn Room with private rooftop,48018277,Alejandro,Brooklyn,Bedford-Stuyvesant,40.6922,-73.9415,Private room,85,3,8,2019-06-30,0.77,2,63 +27491585,Private Room in Brooklyn Home,193502084,Linda,Brooklyn,Borough Park,40.64003,-74.00315,Private room,45,1,8,2019-04-01,0.76,8,0 +27492039,Great Apt With Balcony and Steps To The Subway,166862866,Mariana,Brooklyn,Bedford-Stuyvesant,40.67712,-73.9226,Entire home/apt,148,1,63,2019-07-07,5.61,1,82 +27492139,Sun drenched Artsy One Bedroom,206949054,Sandy,Brooklyn,East Flatbush,40.6648,-73.92672,Entire home/apt,115,1,15,2019-06-29,1.42,1,48 +27492179,Close to Manhattan Quiet Residential Area,207205519,Dimitri,Staten Island,Shore Acres,40.6075,-74.06679,Private room,100,3,0,,,1,90 +27492304,Private Room in Quiet 2 Bedroom,207117606,Sylvia,Brooklyn,Windsor Terrace,40.65668,-73.97827,Private room,75,4,1,2018-11-14,0.13,1,82 +27492948,"Sleek, modern apartment in trendy Bushwick",207216690,Elisa,Brooklyn,Bushwick,40.70098,-73.92135,Private room,75,1,37,2019-06-16,3.34,1,294 +27494148,ONLY 4.3 MILES TO MANHATTAN,54438083,Charles,Queens,Maspeth,40.72373,-73.90881,Entire home/apt,196,2,21,2019-06-30,1.87,3,202 +27494734,New York - Columbia/Harlem big Apartment,22896813,Jacqueline,Manhattan,Morningside Heights,40.81382,-73.95939,Private room,100,3,1,2018-08-12,0.09,1,0 +27498398,"Spacious, Bright Harlem Treetop Duplex",194047658,Jean,Manhattan,Harlem,40.80734,-73.94201,Entire home/apt,290,3,11,2018-12-29,1.02,1,85 +27499097,ELEXEY'S COMFORT....This room is small and cozy.,185889529,Michelle,Queens,St. Albans,40.70531,-73.75835,Private room,46,2,71,2019-07-04,6.51,3,340 +27500496,"Room by Central Park,Harlem, NY",89842859,Charlène,Manhattan,Harlem,40.80138,-73.95107,Private room,68,10,1,2018-09-08,0.10,1,0 +27501755,"Spacious, Sunny 1-Bedroom By the Park",557166,Jonathan,Manhattan,Upper West Side,40.79287,-73.97333,Entire home/apt,150,5,2,2018-09-01,0.18,1,0 +27502928,Sunny East Village Apt,25357997,Andrew,Manhattan,East Village,40.72691,-73.98423,Entire home/apt,149,2,1,2018-08-08,0.09,1,0 +27504048,"Quiet & Cheap, 15 minutes to Manhattan",63199008,Sophia Yi,Queens,Elmhurst,40.74586,-73.89048,Private room,39,3,1,2018-08-20,0.09,1,0 +27504290,Bright & modern one bed in heart of Williamsburg!,33467956,Risa,Brooklyn,Williamsburg,40.71786,-73.95434,Entire home/apt,175,1,15,2019-07-07,1.33,1,8 +27505253,Private room with king sized bed in Brooklyn.,31378,Kristine,Brooklyn,Crown Heights,40.67194,-73.96208,Private room,100,1,12,2019-05-10,1.24,3,2 +27506090,Private room by Time Square,140312311,Jimmy,Manhattan,Hell's Kitchen,40.75478,-73.99604,Private room,100,2,0,,,1,0 +27506095,"Room in Bedstuy! Exposed brick, subways are close",38635971,Eitan,Brooklyn,Bedford-Stuyvesant,40.68299,-73.92713,Private room,60,1,4,2018-08-15,0.36,1,0 +27506113,"Light-filled, Airy, 2-Bedroom w/ City Views",41950627,Lana,Manhattan,Harlem,40.82167,-73.94726,Entire home/apt,175,5,0,,,1,0 +27506443,Modern loft in the best part of Bushwick.,52190465,Sobe,Brooklyn,Bushwick,40.70474,-73.9162,Entire home/apt,100,2,1,2018-08-14,0.09,1,0 +27507137,Homey Harlem Studio,158088272,Connor,Manhattan,Harlem,40.81589,-73.93686,Entire home/apt,76,3,1,2018-11-25,0.13,1,0 +27507299,Sun-filled studio apt in Clinton Hill brownstone,1639484,Megan,Brooklyn,Prospect Heights,40.6814,-73.96584,Entire home/apt,91,5,2,2019-05-16,0.21,1,0 +27507457,THE GARDEN ROOM,6786361,Michael,Brooklyn,Bushwick,40.69633,-73.927,Private room,65,5,13,2019-06-14,1.20,2,310 +27507561,"Bright, Modern, King Size 1-Bedroom in Chelsea!",6344971,Sharat,Manhattan,Chelsea,40.7444,-73.99604,Entire home/apt,240,2,8,2019-03-30,0.71,1,0 +27507663,Exótico,207396117,Carlos,Queens,Sunnyside,40.74233,-73.9125,Shared room,30,1,30,2019-03-04,2.78,1,157 +27507912,Cozy Bushwick apartment in the heart of Brooklyn!,85281944,Evangelia,Brooklyn,Bushwick,40.69857,-73.9142,Entire home/apt,110,1,0,,,1,0 +27508376,Modern Luxury Condo in the UES with Fitness Center,2093069,Jennyfer,Manhattan,East Harlem,40.79228,-73.94013,Entire home/apt,106,2,8,2019-06-10,1.53,1,0 +27508803,Beautiful Sunlit Room in Bushwick,11381575,Sydney,Brooklyn,Bushwick,40.70548,-73.92671,Private room,59,2,8,2019-01-01,0.73,1,0 +27509562,Brooklyn Cozy Corner,207418547,Holly,Brooklyn,Brownsville,40.65934,-73.90245,Private room,45,7,5,2019-04-21,0.53,1,168 +27509983,AMAZING LOCATION - BEAUTIFUL ROOM,6146050,Victoria,Brooklyn,Williamsburg,40.7135,-73.9583,Private room,98,1,0,,,2,0 +27510869,Staten Island Apartment,113295877,Jonathan,Staten Island,Tompkinsville,40.63461,-74.08937,Private room,55,3,6,2018-10-24,0.55,3,154 +27511207,"One Private Bedroom - near Astoria, NY & LGA",106233552,Coco,Queens,East Elmhurst,40.7653,-73.86729,Private room,89,3,0,,,2,23 +27517686,Luxury in classic brownstone. Oversized 1 bedroom.,3116204,Tala,Brooklyn,Bedford-Stuyvesant,40.68249,-73.93916,Entire home/apt,165,5,25,2019-06-26,2.42,1,127 +27518599,Spectacular East Village Loft,207523208,Chris,Manhattan,East Village,40.73052,-73.98277,Entire home/apt,450,3,34,2019-07-05,3.37,1,80 +27519196,Nice Bayside 1 bedroom Apartment,50909051,Miranda,Queens,Bayside,40.76731,-73.76288,Entire home/apt,115,1,6,2019-05-19,0.53,1,179 +27519772,Cute bushwick room,82891189,Veronica,Brooklyn,Bushwick,40.69449,-73.91987,Private room,50,2,2,2019-01-01,0.18,1,0 +27520341,"New condo in LES/China Town, elevator",55149412,Ha,Manhattan,Chinatown,40.71579,-73.99285,Private room,130,3,0,,,4,222 +27521147,Empire State views LUXURY 3BR/2BA w terrace+Gym,131493626,Maya,Manhattan,Murray Hill,40.74828,-73.97917,Entire home/apt,799,5,5,2019-06-19,0.55,1,340 +27521990,Loft-style Bedroom in the heart of Bushwick,22550591,Foteinos,Brooklyn,Bushwick,40.70844,-73.92274,Private room,100,2,5,2018-10-31,0.52,1,0 +27523125,★Private Guest Suite in a great location ★,40511430,Chris,Queens,Woodhaven,40.69783,-73.85221,Private room,70,2,53,2019-07-01,5.28,1,108 +27523631,New york Lovely Guest Room.,34992043,Frances,Queens,Flushing,40.73662,-73.82764,Private room,50,1,20,2019-06-26,1.81,2,188 +27523953,Brooklyn modern Apartment steps to the L train ;-),207582987,Roger,Brooklyn,Bushwick,40.68397,-73.9074,Entire home/apt,138,2,62,2019-07-01,5.67,1,151 +27524142,Gorgeous Room With Private Entrance & Backyard,14278851,Alessandra,Queens,Ridgewood,40.7043,-73.91137,Private room,50,5,2,2018-12-03,0.22,1,15 +27524258,Darling Duplex on UES,17826780,Sam,Manhattan,Upper East Side,40.77454,-73.95454,Entire home/apt,250,30,1,2018-10-07,0.11,1,60 +27524608,Private Room in Stunning East Village Apartment,21858263,Lawrence,Manhattan,East Village,40.73047,-73.98048,Private room,83,2,0,,,1,0 +27524646,"Double, Cozy Room only 20 min to NYC",130074377,Eliana,Queens,Ridgewood,40.70134,-73.909,Private room,89,1,28,2019-07-06,2.60,2,212 +27524836,Quiet and cozy room in Clinton Hill,7098693,Neha,Brooklyn,Bedford-Stuyvesant,40.69073,-73.95965,Private room,75,3,0,,,1,0 +27526504,"Beautiful, cozy, Penthouse Studio in Astoria/LIC",207573589,Cris,Queens,Astoria,40.77032,-73.92621,Entire home/apt,125,1,18,2019-01-01,1.74,1,0 +27526520,Lovely Manhattan Room near GCT / Central Park,137358866,Kazuya,Manhattan,East Harlem,40.79461,-73.94199,Private room,36,30,1,2018-10-01,0.11,103,199 +27526619,Sonder | Hanover Square | Pristine 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70514,-74.00914,Entire home/apt,159,29,0,,,96,325 +27526697,Spacious+Sunny Queens Room. Full kitchen+Roof apt.,20909506,Camile,Queens,Astoria,40.76519,-73.91067,Private room,55,3,2,2018-10-07,0.18,2,0 +27526727,"Stylish 1 bedroom, Upper East Side, E91st",92611851,Mariah,Manhattan,Upper East Side,40.78051,-73.94809,Entire home/apt,160,1,17,2019-06-23,1.62,1,5 +27526910,"Spacious apartment, 20 mins to Manhattan",148705627,Jonathan,Queens,Ridgewood,40.70147,-73.9047,Entire home/apt,170,14,1,2019-06-09,1,2,106 +27526997,"Vie's NY Unique crashpad apts sleep 14, metro*wifi",310670,Vie,Bronx,Eastchester,40.88017,-73.83574,Entire home/apt,475,2,0,,,13,359 +27527039,Sonder | 180 Water | Contemporary 1BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70788,-74.00484,Entire home/apt,217,29,0,,,96,9 +27527118,Charming Chelsea Bedroom steps from Highline Park,1911615,Conley,Manhattan,Chelsea,40.74755,-74.00317,Private room,77,1,4,2019-02-18,0.36,2,0 +27527478,Great two Bedroom Apartment - 20 mins from NYC.,55184486,Amado,Brooklyn,Bushwick,40.68842,-73.91465,Entire home/apt,175,1,54,2019-07-02,5.26,2,137 +27527902,Cozy 1 bedroom apartment in trendy Bushwick.,101144679,Jorge,Brooklyn,Bushwick,40.6944,-73.9242,Entire home/apt,90,3,26,2019-06-15,2.43,1,3 +27528026,"The GEORGE at Lincoln Center: Duplex, UWS/Times Sq",200829464,Chrisann,Manhattan,Upper West Side,40.77425,-73.98122,Entire home/apt,299,3,33,2019-07-05,2.97,1,96 +27528267,Amazing room & private en-suite bath in Brooklyn!,17518954,Rashmi,Brooklyn,Bedford-Stuyvesant,40.69038,-73.93101,Private room,79,3,44,2019-07-01,4.06,1,91 +27528305,Luxurious Hell’s Kitchen Famous Vibrant NYC!,7985095,Douglas,Manhattan,Hell's Kitchen,40.7645,-73.98788,Entire home/apt,285,2,44,2019-06-30,4.05,3,70 +27528620,Brooklyn Bedroom,193502084,Linda,Brooklyn,Borough Park,40.64039,-74.00252,Private room,45,1,8,2019-03-31,0.81,8,0 +27528935,Private Room in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.63925,-74.00329,Private room,40,1,12,2019-03-23,1.16,8,0 +27529129,Private bedroom with full sized bed,193502084,Linda,Brooklyn,Borough Park,40.63844,-74.00232,Private room,40,1,9,2019-03-23,0.82,8,0 +27529325,Private room and bathroom in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.63889,-74.00244,Private room,40,1,11,2019-03-03,1.09,8,0 +27529458,Nolita One Bedroom with View,33389621,Maura,Manhattan,Little Italy,40.71843,-73.99817,Entire home/apt,124,2,5,2019-03-31,0.46,1,0 +27529564,Queen size bedroom,207651513,Nour,Manhattan,Harlem,40.80907,-73.94444,Private room,60,1,49,2019-05-27,4.85,3,0 +27529655,Sweet room w/attached bath in center of Flushing.,205745676,Liqin,Queens,Flushing,40.75889,-73.82104,Private room,89,1,39,2019-07-07,3.49,9,342 +27530069,Times Square - JULY/AUG Special Price + Netflix,7129207,Nate,Manhattan,Hell's Kitchen,40.76337,-73.9873,Entire home/apt,159,2,58,2019-07-02,5.21,1,124 +27530187,Private Bed & Bath in Heart of Downtown Manhattan,16676759,Derek,Manhattan,Financial District,40.70668,-74.00727,Private room,180,3,10,2019-06-06,0.99,1,48 +27530761,私人空间,190324721,Jun Jun,Queens,Flushing,40.76084,-73.83233,Private room,63,1,22,2019-05-30,1.99,4,347 +27531821,Beautiful Private Bedroom/Kitchen studioPark Slope,147638312,George,Brooklyn,Park Slope,40.67246,-73.97707,Private room,125,5,7,2019-05-29,0.84,1,180 +27532758,"Sunny, Newly Renovated, Private Bushwick Room",192587955,Sania,Brooklyn,Bushwick,40.70276,-73.92899,Private room,70,1,1,2019-06-09,1,1,39 +27534625,Woodside NY Cozy Room-15/20 mins from Time Square.,91646104,Pao,Queens,Woodside,40.74344,-73.91076,Private room,51,3,38,2019-07-02,3.65,3,146 +27538237,Grand Suite in Historic Brownstone,7136700,Michelle,Brooklyn,Crown Heights,40.67166,-73.94674,Entire home/apt,115,3,34,2019-07-03,4.43,4,249 +27539706,Private city getaway,84459821,Jermaine,Bronx,Parkchester,40.83658,-73.86181,Private room,55,1,32,2019-06-20,2.96,1,333 +27540102,"Sun-drenched Chic SOHO ""Cabin""",206972453,Grant,Manhattan,Nolita,40.72205,-73.99699,Entire home/apt,250,4,16,2019-06-26,1.68,1,0 +27540139,STUDIO IN VILLAGE CHARM~PERRY STREET!,200380610,Pranjal,Manhattan,West Village,40.73485,-74.00313,Entire home/apt,188,30,0,,,65,326 +27542342,2 beautiful & bright bedrooms in a renovated apt.,35660592,Luis,Queens,Elmhurst,40.7335,-73.87571,Private room,149,2,5,2019-06-10,0.46,6,340 +27542642,4Js Home4You,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65074,-73.91633,Entire home/apt,55,1,38,2019-04-28,3.43,3,311 +27542872,One Beautiful Sunny Bedroom with Amazing Views,162282607,Ayesha,Manhattan,Battery Park City,40.71728,-74.01511,Private room,100,1,5,2018-09-06,0.45,1,0 +27543086,Huge Studio in Brooklyn Luxury Building,5108882,Elena,Brooklyn,Fort Greene,40.68905,-73.97991,Entire home/apt,170,2,18,2019-06-16,1.64,1,0 +27543590,Manhattan Home Steps Away from Central Park!,104064206,Faateh,Manhattan,East Harlem,40.79574,-73.94684,Private room,85,1,6,2018-10-08,0.55,1,0 +27544396,1 bedroom apt. in the heart of Upper West Side,111587063,Kirill,Manhattan,Upper West Side,40.79291,-73.97599,Entire home/apt,295,2,24,2019-07-01,2.28,1,70 +27545221,Chinatown New York Apartment,58680528,David,Manhattan,Chinatown,40.71591,-73.99721,Entire home/apt,125,30,39,2019-06-28,3.77,1,32 +27545256,"Sunny, Spacious Bedroom 1/2 Block from Ft Green Pk",8039125,Omar,Brooklyn,Fort Greene,40.68811,-73.97539,Private room,52,4,4,2019-05-31,0.36,1,329 +27545876,"times sq 5 STAR quiet, stylish, safe, doorman bldg",207795404,Ros,Manhattan,Hell's Kitchen,40.75953,-73.98938,Entire home/apt,151,6,22,2019-07-01,2.10,2,56 +27546086,"Beautiful, clean bedroom close to Central Park!",22318190,Jane,Manhattan,East Harlem,40.79657,-73.94932,Private room,90,4,9,2019-04-24,0.82,1,13 +27546132,Cozy large private room near Times Square 31C3,190921808,John,Manhattan,Hell's Kitchen,40.75526,-73.99719,Private room,55,7,5,2019-06-02,0.46,47,342 +27546295,Large cozy NY room near Times Square 51E4,190921808,John,Manhattan,Hell's Kitchen,40.75412,-73.99651,Private room,55,7,1,2019-05-25,0.65,47,360 +27546818,Staying Good location to close US OPEN,142289373,Ellen,Queens,Flushing,40.75361,-73.82014,Entire home/apt,450,3,0,,,1,0 +27546831,Van Cortlandt Multi-Unit Building,207661442,Marcia,Bronx,Kingsbridge,40.88445,-73.89663,Private room,50,1,1,2019-02-15,0.21,1,61 +27547687,Queens Apartment Private Room,177825782,Ada,Queens,Jackson Heights,40.75047,-73.88216,Private room,89,4,2,2019-05-26,0.33,2,175 +27549021,AWESOME MODERN ROOM IN CHARMING AREA+ SWEET ROOF C,29650513,Katie Graham,Brooklyn,Clinton Hill,40.69473,-73.96165,Private room,90,30,1,2019-03-01,0.23,6,281 +27549628,Charming two-bedroom suite in Rockaway Beach,38675275,Margaret,Queens,Belle Harbor,40.57491,-73.84962,Entire home/apt,200,1,32,2019-06-24,3.02,2,324 +27551182,Big Lofty Apartment with Beautiful Rooftop,14727039,Alexandra,Brooklyn,Williamsburg,40.71684,-73.94565,Private room,165,3,0,,,1,89 +27551227,Private Room+Bathroom in DUMBO in luxury building,34161028,Agnese,Brooklyn,Vinegar Hill,40.69949,-73.98319,Private room,116,3,2,2019-05-17,0.32,3,16 +27551268,Studio Gem in Heart of Manhattan (Chelsea),2058584,Andrei,Manhattan,Chelsea,40.74554,-74.00595,Entire home/apt,150,2,7,2019-07-07,0.82,1,3 +27551436,Eco Chic Bedroom in Amazing Neighborhood,87757867,Gennaro,Brooklyn,Cobble Hill,40.68517,-73.99545,Private room,80,7,54,2019-06-30,4.98,2,311 +27551517,"Clean & Sunny room in UES, Doorman+Sunroof+GYM",7186760,Dafna Irit,Manhattan,Upper East Side,40.77742,-73.94687,Private room,70,7,1,2018-10-15,0.11,2,33 +27551619,Spacious room with private bathroom,39285391,Siham,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92331,Private room,65,1,56,2019-06-23,5.27,2,49 +27551715,Brand New Brooklyn Apartment,14049772,Vanessa,Brooklyn,Dyker Heights,40.61968,-74.00656,Entire home/apt,170,4,12,2019-06-10,1.17,1,308 +27551807,The St Marks: A large 7 bedroom 15 mins to Manhtan,5589082,Jenn & JJ,Brooklyn,Crown Heights,40.67578,-73.94159,Entire home/apt,689,2,18,2019-05-23,1.61,1,340 +27552471,Best Brighton Beach welcoming for your stay!,25899890,Youssef,Brooklyn,Brighton Beach,40.57762,-73.96051,Entire home/apt,99,2,2,2018-09-16,0.19,1,0 +27552582,Studio in the Heart of East Village,30680112,Danielle,Manhattan,East Village,40.72951,-73.98576,Entire home/apt,120,2,0,,,1,39 +27552717,Spacious Flat in the Heart of Greenwich Village,9060287,Priya,Manhattan,Greenwich Village,40.73021,-74.00091,Private room,111,3,7,2018-10-22,0.63,1,0 +27552770,Sunny Cozy Room in Bedstuy,14377035,Sebastián Y Natalia,Brooklyn,Bedford-Stuyvesant,40.68529,-73.95438,Private room,43,4,10,2019-06-11,1.02,1,0 +27552868,VIP staycation deluxe movie theater indoor pool,21963202,Journey,Queens,Jamaica Estates,40.71927,-73.7868,Entire home/apt,275,1,0,,,2,329 +27554578,Williamsburg Loft Private Bedroom,23635330,Marissa,Brooklyn,Williamsburg,40.71547,-73.94686,Private room,125,2,3,2018-09-13,0.27,1,54 +27555063,Brooklyn Heights with a breathtaking terrace,63338955,Michael,Brooklyn,Brooklyn Heights,40.6932,-73.9945,Entire home/apt,200,3,4,2019-01-05,0.37,1,0 +27557322,Large sun drenched queen bedroom in Brooklyn Loft,3662122,Tina,Brooklyn,Bushwick,40.70881,-73.92084,Private room,100,3,29,2019-06-18,3.19,3,31 +27557992,Lofted Bedroom in Cool Sundrenched Brooklyn Loft,3662122,Tina,Brooklyn,Bushwick,40.70751,-73.92143,Private room,63,3,5,2019-05-15,0.56,3,0 +27559416,Charming Carnegie Hill Bedroom,21003949,Theodore,Manhattan,East Harlem,40.78899,-73.95204,Private room,150,1,5,2018-11-03,0.48,1,83 +27566002,Modern living in old Harlem (the Scream1),2802223,Raluca,Manhattan,Harlem,40.82789,-73.93812,Private room,60,30,5,2018-10-13,0.47,2,0 +27567455,Best Apartment in Bay Ridge,4232014,Izzie,Brooklyn,Bay Ridge,40.63348,-74.03088,Entire home/apt,100,2,8,2019-07-07,0.76,1,46 +27569308,Fire Escape + Roof Views 30-min from Manhattan,16303550,Arianna,Brooklyn,Bushwick,40.68643,-73.91552,Private room,39,31,1,2018-09-29,0.11,1,35 +27569888,Private bed & Bath 1/2 block from the A Express!,146660704,Amy,Manhattan,Washington Heights,40.85199,-73.93701,Private room,90,2,24,2019-07-06,2.39,1,119 +27570074,Lovely 3 bedroom Townhouse in BK Historic District,1898675,Lee + Amber,Brooklyn,Prospect-Lefferts Gardens,40.6626,-73.95598,Entire home/apt,195,3,33,2019-06-28,3.20,1,241 +27570295,Super Cute 1 Bedroom Best Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74211,-73.97887,Entire home/apt,142,30,1,2018-10-13,0.11,91,364 +27570463,LUXURY STAYING IN BROOKLYN (Bed-Stuy),10016960,Deniz,Brooklyn,Bedford-Stuyvesant,40.67772,-73.9233,Private room,55,2,18,2019-07-02,1.73,1,310 +27570485,1 Bedroom off Columbus fit for a King,61391963,Corporate Housing,Manhattan,Upper West Side,40.78488,-73.97325,Entire home/apt,142,30,3,2019-06-18,0.32,91,213 +27571163,"Beautiful S Williamsburg 1 Bdrm near G,L,J,M,Z",24862289,Thaddeus,Brooklyn,Williamsburg,40.70865,-73.94631,Entire home/apt,150,4,9,2019-06-30,0.89,1,0 +27572554,Sunny Master Bedroom In Prime Williamsburg 30 Days,120749029,Joe And Shelly,Brooklyn,Williamsburg,40.70722,-73.94121,Private room,65,27,4,2019-04-29,0.44,2,154 +27572832,Spacious & Sunny Master w Private Bath,167775339,Lydia,Queens,Woodside,40.7488,-73.90362,Private room,86,1,12,2019-02-04,1.28,1,0 +27573483,"Fort Greene two bedroom, quiet and peaceful",1180925,Mark,Brooklyn,Fort Greene,40.69488,-73.97222,Entire home/apt,200,7,1,2018-09-21,0.10,3,163 +27573704,Beautiful private room in luxury building,44514753,Jonathan,Brooklyn,Williamsburg,40.71239,-73.95271,Private room,65,4,2,2018-09-08,0.19,1,0 +27573767,Heart of the West Village Apartment,49283943,Oliver,Manhattan,West Village,40.73762,-74.002,Entire home/apt,400,5,1,2018-11-04,0.12,1,0 +27573861,Brooklyn Style Hostel Private Room #5,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69459,-73.95561,Private room,55,2,13,2019-05-02,1.19,34,330 +27576267,Cosy & Clean studio apt in the heart of Manhattan,15272878,Jane,Manhattan,Kips Bay,40.74104,-73.98134,Entire home/apt,150,2,0,,,1,0 +27577076,Grand 2 bed Apartment in Heart of Harlem,8663057,Alli,Manhattan,East Harlem,40.80226,-73.93583,Entire home/apt,175,3,27,2019-06-28,2.53,2,128 +27578298,Large studio apt in Grammercy,506194,Shivani,Manhattan,Kips Bay,40.73995,-73.98401,Entire home/apt,150,15,1,2018-09-11,0.10,1,5 +27579255,Loft Style Bushwick Apartment,16725437,Tobias,Brooklyn,Bushwick,40.70432,-73.91897,Private room,59,5,8,2019-05-11,0.74,1,177 +27579698,Wyndham Midtown 45 (2 Bedroom Presidential) 7A,100238132,Michael,Manhattan,Midtown,40.75361,-73.97202,Entire home/apt,339,3,7,2019-04-01,0.74,12,0 +27579796,New York home ferry ride from Manhattan.,169567256,Pariis,Staten Island,Tompkinsville,40.63183,-74.09268,Private room,100,2,1,2018-11-04,0.12,1,0 +27579844,Wyndham Midtown 45 (2 Bedroom Presidential) 6A,100238132,Michael,Manhattan,Midtown,40.75216,-73.97351,Entire home/apt,339,3,4,2019-04-03,0.41,12,0 +27579923,Highline Hudson Yards Studio,161279657,Michelle,Manhattan,Chelsea,40.75255,-74.00118,Entire home/apt,350,3,0,,,1,0 +27580312,The Pit of Despair,208099979,Yianni,Manhattan,Upper East Side,40.78117,-73.95688,Private room,105,1,3,2019-03-15,0.28,1,90 +27580328,Large comfortable home 2 blocks from Times Square,207833780,Genisley,Manhattan,Hell's Kitchen,40.76228,-73.99026,Entire home/apt,195,2,53,2019-06-23,4.86,1,150 +27580964,"Cozy, walk to Central Park, Columbia & Morningside",208106618,Paul A,Manhattan,Harlem,40.8031,-73.95654,Private room,79,1,8,2018-10-13,0.75,1,0 +27581016,Zen Room in Prime Bushwick,23884430,Yuting,Brooklyn,Bushwick,40.69673,-73.92338,Private room,55,1,64,2019-07-03,5.87,3,149 +27581411,Authentic NYC Getaway - Large 2BR w Priv Rooftop,16931119,Barron,Brooklyn,Williamsburg,40.71722,-73.95361,Entire home/apt,200,2,1,2019-01-02,0.16,1,27 +27581615,"Large Private 1 Bed Room Apartment, Hell's Kitchen",71299428,Andy,Manhattan,Hell's Kitchen,40.75906,-73.99321,Entire home/apt,159,2,3,2018-12-30,0.31,1,0 +27582416,Luxury Private Condo/Apartment,69997531,Markus,Brooklyn,Crown Heights,40.67512,-73.94192,Private room,82,2,21,2019-06-30,1.94,1,175 +27584413,Chic Designer Home Guest Studio,69366752,Maggie,Queens,Forest Hills,40.73469,-73.85426,Entire home/apt,65,2,59,2019-07-01,5.50,2,127 +27584915,CLEAN PRIVATE bathroom in Newly built in 2014,204704622,Momoyo,Queens,Elmhurst,40.73874,-73.87615,Private room,59,29,0,,,7,41 +27584957,4Js Room4You,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65068,-73.91811,Private room,75,1,2,2019-04-26,0.21,3,125 +27585752,Modern & Airy 1 Bedroom Apt in heart of Greenpoint,33767755,Miriam,Brooklyn,Greenpoint,40.73357,-73.95908,Entire home/apt,136,2,13,2019-07-02,1.32,1,3 +27585912,Room4You by 4Js,207777872,Joel And Jamila,Brooklyn,East Flatbush,40.65181,-73.91672,Private room,65,1,4,2019-02-06,0.39,3,125 +27589169,Convenient & Sunny Room Close to Central Park,61042,Marlon,Manhattan,East Harlem,40.79836,-73.94272,Private room,49,5,14,2019-06-12,1.37,6,12 +27593034,Cozy Manhattan apartment!,10366675,Kelli,Manhattan,Greenwich Village,40.73578,-73.99682,Entire home/apt,300,4,5,2018-11-04,0.48,1,0 +27593335,Large sunny 1 bedroom with everything you need,6067124,Chelsea,Brooklyn,Carroll Gardens,40.68307,-73.99226,Entire home/apt,160,4,2,2019-05-06,0.23,1,4 +27593369,Small humble apartment in perfect location LES,208206416,Mina,Manhattan,Lower East Side,40.71815,-73.98858,Entire home/apt,150,7,8,2019-06-11,0.79,1,290 +27596342,Rainbow Guesthouse 1-1 Female room,124399442,Igor,Brooklyn,Midwood,40.61241,-73.95939,Shared room,32,7,0,,,4,21 +27596820,Brooklyn Style Hostel RM4 #4,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95542,Shared room,36,1,9,2019-05-05,0.82,34,365 +27598172,Studio-like space & Kitchen all for you,19000768,Karina,Queens,Sunnyside,40.74194,-73.92353,Entire home/apt,79,2,6,2019-01-10,0.54,2,0 +27598707,Freehand New York- Artist Room,164291123,Freehand,Manhattan,Gramercy,40.73928,-73.98638,Private room,129,1,35,2019-04-20,3.30,3,365 +27599185,Legal Redesigned 2 BDRS PARK SLOPE/Prospect Park!,87786261,Sophia,Brooklyn,South Slope,40.66055,-73.98597,Entire home/apt,159,1,11,2019-06-09,1.05,5,262 +27600209,Modern studio in Harlem,101170153,Wale,Manhattan,Harlem,40.81709,-73.94217,Entire home/apt,100,5,10,2019-04-11,0.92,1,177 +27600437,"Sunny Hudson Yards/ Chelsea Studio, Free WiFi",7245581,Michael,Manhattan,Chelsea,40.74912,-73.99739,Entire home/apt,93,105,1,2018-12-02,0.14,19,332 +27601676,"Entire Apt. *Huge 1,600 SF 3BR* *Dining&Living Ro",63903815,David,Manhattan,Upper West Side,40.79666,-73.97334,Entire home/apt,220,6,0,,,1,0 +27602303,"Private Spacious Studio Apartment, Rooftop access",6663544,Donna,Manhattan,Harlem,40.81756,-73.94099,Entire home/apt,86,4,3,2018-09-23,0.28,1,0 +27602495,New York Apartment,15322945,Loris,Manhattan,Inwood,40.86139,-73.92744,Private room,60,1,26,2019-05-26,2.36,1,365 +27602987,Spacious Greenpoint room steps away from G train,24909331,Katherine,Brooklyn,Greenpoint,40.73354,-73.95576,Private room,105,4,0,,,1,8 +27603879,Chic and unique Attic bedroom in a shared duplex,181651082,Fran,Queens,Rosedale,40.66049,-73.73496,Private room,60,1,6,2019-06-23,0.58,3,167 +27603936,Trendy and Stylish Downtown apartment !!!,52262348,Elena,Manhattan,Lower East Side,40.7188,-73.98554,Entire home/apt,185,3,10,2019-05-05,0.97,1,0 +27604258,5 Stars Maple *****,156586664,Hugh,Queens,Flushing,40.75389,-73.83192,Private room,75,1,65,2019-07-06,6.11,1,139 +27604639,Convenient Apartment in Washington Heights,5466113,Pedro,Manhattan,Washington Heights,40.85268,-73.92716,Entire home/apt,95,1,42,2019-06-13,4.00,1,2 +27606109,Cozy Bklyn Minimalism Private Bdrm in 2Bdrm w/ Gym,22011768,Javonne,Brooklyn,Bedford-Stuyvesant,40.69178,-73.9486,Private room,42,2,34,2019-05-27,3.29,1,9 +27606720,Serene Bedroom & Boudoir in Design Loft,16356851,Sophia,Brooklyn,Greenpoint,40.73439,-73.95839,Private room,120,5,8,2019-06-13,0.79,2,179 +27608063,Best of Both Worlds! Sunny Bedroom 15 Min to NYC,6388234,Andi,Queens,Forest Hills,40.71852,-73.84577,Private room,120,2,0,,,1,35 +27609132,Brooklyn spot right next to express train,207213839,Sheneque,Brooklyn,Sunset Park,40.64136,-74.01898,Entire home/apt,120,3,0,,,1,0 +27609355,Bedroom available 20 mins to Manhattan!!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68977,-73.92723,Private room,37,30,0,,,5,214 +27610009,"Large, beautiful 2 bdrm in Harlem, fits 6 people",125857611,Legera,Manhattan,Harlem,40.81162,-73.95199,Entire home/apt,350,3,2,2018-10-23,0.19,1,0 +27610245,Brand New 1 Bedroom w/Parking-25 Mins to Manhattan,59765638,Philip,Queens,Douglaston,40.76561,-73.7464,Entire home/apt,125,3,16,2019-06-19,1.51,1,123 +27610753,Historic Brooklyn Brownstone Apartment,208346552,Adrian,Brooklyn,Windsor Terrace,40.65818,-73.98031,Entire home/apt,165,3,55,2019-07-02,5.11,1,37 +27610995,PRIVATE BEDROOM in spacious apartment in the UWS!,17278356,Nico,Manhattan,Upper West Side,40.79099,-73.97293,Private room,230,3,14,2019-05-29,1.28,1,0 +27611098,Bright spacious home in the Upper East,24363273,Kelly,Manhattan,East Harlem,40.78549,-73.94895,Entire home/apt,200,20,1,2018-08-10,0.09,1,341 +27612070,Stylish Studio Perfect Location-Empire State,89767580,Jk,Manhattan,Midtown,40.74673,-73.98499,Entire home/apt,250,5,59,2019-06-24,5.82,1,58 +27612667,Williamsburg Loft Hideaway,10511660,Nicole,Brooklyn,Williamsburg,40.70666,-73.96629,Entire home/apt,290,4,12,2019-06-23,1.25,1,117 +27612876,Spotless room w/attached bath. Center of Flushing,205745676,Liqin,Queens,Flushing,40.7594,-73.81971,Private room,80,1,21,2019-05-19,1.90,9,362 +27612925,Shared room with bunk beds,208367810,Dan,Brooklyn,Borough Park,40.64047,-73.99687,Shared room,25,3,8,2019-01-02,0.77,4,88 +27613128,Shared room with bunk beds in Bensonhurst,208367810,Dan,Brooklyn,Gravesend,40.60059,-73.98818,Shared room,35,3,2,2019-04-03,0.32,4,50 +27620424,Two bedrooms apt. in Jamaica Estates,194520886,Nazma,Queens,Jamaica Estates,40.7143,-73.78985,Entire home/apt,150,1,20,2019-05-23,1.92,2,147 +27622210,Quiet and modern Williamsburg garden 1BR,402569,Celia,Brooklyn,Williamsburg,40.71295,-73.94459,Entire home/apt,180,3,22,2019-06-16,1.98,1,98 +27623260,Upper East Side creative sanctuary apartment,17898332,Zizi,Manhattan,Upper East Side,40.78497,-73.95201,Entire home/apt,150,4,7,2019-06-24,0.69,1,0 +27623360,"Studio at Upper East Side Manhattan, New York",95642648,Тest,Manhattan,Upper East Side,40.77713,-73.95309,Entire home/apt,95,4,3,2018-08-21,0.27,2,0 +27624476,Spacious Harlem Room,26185286,Silvia,Manhattan,Harlem,40.82923,-73.93764,Private room,120,3,22,2019-06-28,2.10,1,10 +27624539,Flatiron Penthouse,46935284,Ben,Manhattan,Gramercy,40.73801,-73.98815,Entire home/apt,400,4,2,2018-12-04,0.25,1,0 +27627627,New York Condominium,3250725,Ken,Manhattan,SoHo,40.7206,-74.0033,Entire home/apt,1100,3,5,2018-12-27,0.52,1,180 +27627991,Cozy clean Studio Apartment in Luxury Building,208485817,Canet,Brooklyn,Bushwick,40.69616,-73.92905,Entire home/apt,160,5,0,,,1,0 +27628195,Cozy/Spacious Master Bedroom Apt-20min to Manhattn,144699715,Shinhee,Brooklyn,Bedford-Stuyvesant,40.69442,-73.95144,Entire home/apt,60,4,1,2018-11-25,0.13,1,0 +27628302,Beach Oasis and NYC only 45 minutes away!,83203036,Flo,Queens,Arverne,40.58845,-73.80015,Entire home/apt,130,2,0,,,1,215 +27628465,Lovely Studio in Brooklyn with Rooftop & Garden,208488535,Mehdi,Brooklyn,Bedford-Stuyvesant,40.68152,-73.94389,Entire home/apt,150,4,7,2019-05-27,0.65,1,0 +27628480,Great room#1,208136645,Andre,Brooklyn,Prospect-Lefferts Gardens,40.65591,-73.94352,Private room,49,2,9,2019-06-02,0.83,4,132 +27628754,NYC entire 2 bd apartment 15 min to Manhattan,68907781,Dafni,Queens,Astoria,40.76892,-73.92919,Entire home/apt,120,1,5,2019-05-27,0.52,3,0 +27629043,A Night at Anchor Aboard Yacht Ventura,45863742,James,Manhattan,Battery Park City,40.71364,-74.01758,Entire home/apt,3750,1,0,,,1,365 +27629538,Artsy 1 bedroom Apartment Steps to Subway,2886359,David,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91546,Entire home/apt,100,1,5,2019-05-04,0.63,2,0 +27630335,Brooklyn Bed Stuyvesant Private Home,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.691,-73.93837,Entire home/apt,139,1,10,2019-06-08,0.94,9,20 +27630572,Upper West Side Studio,44034761,Matt,Manhattan,Upper West Side,40.77979,-73.98513,Entire home/apt,135,1,0,,,2,93 +27632141,"Cozy BK Home,Near JMZ lines,15-25 min to Manhattan",70997341,Kriti,Brooklyn,Bushwick,40.69768,-73.93511,Private room,59,2,26,2019-06-18,2.39,1,0 +27632496,In a heart of queens /// QUEEN SIZE ROOM ///,181885938,Ismael,Queens,Elmhurst,40.73394,-73.87207,Private room,60,2,11,2019-05-31,1.05,2,318 +27633968,Lower East Side Oasis,12970838,Vanja,Manhattan,Lower East Side,40.72159,-73.98959,Entire home/apt,197,5,1,2018-12-04,0.14,1,12 +27633987,One bedroom apt in a brownstone - Manhattan,208531763,Féven,Manhattan,Harlem,40.81915,-73.9425,Entire home/apt,112,4,9,2019-06-22,1.04,1,89 +27635012,East Village duplex with private roof access!,26825592,Jeff,Manhattan,East Village,40.73028,-73.98165,Entire home/apt,140,2,19,2019-06-02,1.76,1,18 +27636227,Astoria Artist Abode,20267436,Joe,Queens,Ditmars Steinway,40.77516,-73.90558,Private room,125,1,0,,,1,363 +27636889,Pure luxury one bdrm + sofa bed on Central Park,5790236,Clay,Manhattan,Upper West Side,40.78837,-73.96821,Entire home/apt,245,2,33,2019-06-25,3.14,2,262 +27637065,"Airy, modern apartment in a Brooklyn Brownstone",13462855,Travis,Brooklyn,Bedford-Stuyvesant,40.68175,-73.93966,Entire home/apt,175,4,6,2019-04-01,0.58,2,1 +27637220,Best of Bk 20min to Manhtn & 5min to Williamsburg,55170899,Ana,Brooklyn,Greenpoint,40.72586,-73.94547,Entire home/apt,199,2,14,2019-05-28,1.28,1,250 +27637755,Unfinished basement unit under private house,64450303,Elizabeth,Brooklyn,Flatlands,40.62776,-73.94137,Entire home/apt,65,2,97,2019-07-08,8.87,2,7 +27638014,Beach Bungalo Steps to Bay Bike to Beach. Rockaway,23299832,Jodi,Queens,Arverne,40.59787,-73.79759,Entire home/apt,250,1,0,,,1,90 +27638567,Beautiful home,208574990,Hattie,Bronx,Unionport,40.82972,-73.84957,Private room,60,1,0,,,1,268 +27639125,⭐⭐⭐Sleeps 10! Rare 4 Bedroom Apt Close to NYC,208580991,Sophie,Queens,Elmhurst,40.73224,-73.87534,Entire home/apt,229,2,37,2019-04-22,3.58,1,0 +27639832,Welcome to Historic Harlem!,45835291,Shareef,Manhattan,Harlem,40.82424,-73.9554,Private room,70,7,49,2019-06-29,4.55,6,22 +27649154,"*Luxury 1 BR w/ your own Bathroom, steps to subway",93153006,Lili,Brooklyn,Bushwick,40.69399,-73.92472,Private room,88,7,21,2019-06-21,1.91,1,54 +27649404,Charming Private Room,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69339,-73.93971,Private room,55,2,41,2019-06-16,3.73,3,358 +27649901,Beautiful Private Room in BK,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69197,-73.94052,Private room,55,2,27,2019-06-23,2.47,3,346 +27650083,Excellent Brooklyn Private Room,208634617,Anne& Peter,Brooklyn,Bedford-Stuyvesant,40.69197,-73.93872,Private room,55,2,27,2019-06-11,2.46,3,351 +27650553,Cosy bedroom in Bushwick close to L&M train,7780845,Liset,Brooklyn,Bushwick,40.70133,-73.91726,Private room,65,2,3,2019-06-23,0.28,3,28 +27650624,Dawn til' Dusk ROOFTOP! Only for the Day-late!,103865219,Dawn,Brooklyn,Bedford-Stuyvesant,40.67973,-73.92592,Entire home/apt,350,1,2,2019-06-23,1.58,1,127 +27652402,**Excellent Private Room w/Comfy Bed**,38123545,Daisy,Brooklyn,Bedford-Stuyvesant,40.6912,-73.9394,Private room,52,2,25,2019-06-24,2.31,2,328 +27653212,**Great Budget Private Room**,38123545,Daisy,Brooklyn,Bedford-Stuyvesant,40.69015,-73.94075,Private room,55,2,24,2019-06-24,2.32,2,347 +27653304,Artist Loft,46176891,Ekin,Brooklyn,Williamsburg,40.70601,-73.92825,Entire home/apt,160,2,0,,,1,0 +27654484,Greenpoint Williamsburg Jewel for 6,89031106,Edyta,Brooklyn,Greenpoint,40.72409,-73.95039,Entire home/apt,125,5,5,2019-05-30,1.17,4,68 +27654829,Spacious Union Square / Greenwich Village Home,113697596,Mitchell,Manhattan,Chelsea,40.73639,-73.99318,Private room,200,4,13,2019-05-20,1.23,1,172 +27656004,Cozy Brooklyn Apartment,45675260,Victoria,Brooklyn,Bushwick,40.69632,-73.9193,Private room,65,3,5,2018-09-21,0.46,2,0 +27656104,Charming bedroom w private bathroom,126119576,Petr,Brooklyn,Williamsburg,40.71015,-73.94654,Private room,85,4,1,2018-09-13,0.10,2,0 +27656752,Traditional NYC Oasis - Near Times Square,208699273,Spencer,Manhattan,Hell's Kitchen,40.76384,-73.98822,Entire home/apt,379,2,31,2019-06-21,3.24,1,238 +27656768,Central Park North Room,194843581,Hongzhi,Manhattan,Upper West Side,40.80116,-73.96088,Private room,69,2,10,2019-04-07,0.91,4,0 +27657263,Private Room in Spacious Apartment,45675260,Victoria,Brooklyn,Bushwick,40.69792,-73.91886,Private room,65,3,5,2019-01-02,0.48,2,6 +27657926,Cozy One Bdr Apt.. Minutes away from Times Square!,21785798,Donald,Manhattan,Harlem,40.81493,-73.93953,Entire home/apt,175,5,1,2018-10-06,0.11,1,89 +27658108,"Cozy, artistic studio in the heart of Bushwick",126024716,Alicia,Brooklyn,Bushwick,40.7044,-73.92111,Entire home/apt,100,3,6,2018-12-29,0.55,1,0 +27658203,Sunny Room in Sunset Park Industry City Brooklyn,195517789,Patricia,Brooklyn,Sunset Park,40.65092,-74.00489,Private room,50,3,39,2019-07-02,3.79,2,300 +27659298,Sonder | 180 Water | Luxurious 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70761,-74.00513,Entire home/apt,294,29,0,,,96,38 +27659540,One Bedroom in Gramercy,21923346,John,Manhattan,East Village,40.73215,-73.9866,Entire home/apt,225,2,6,2019-01-23,0.57,1,87 +27659585,Spacious and Modern 1 bed apt. In luxury bldg,45336046,Edwin,Manhattan,Harlem,40.8154,-73.94677,Entire home/apt,175,2,1,2018-08-25,0.09,1,14 +27660427,FORDHAM DELUXE,199070207,Oscar,Bronx,Kingsbridge,40.863,-73.90661,Private room,80,3,24,2019-06-23,2.91,2,72 +27661175,Vibrant Neighborhood & Convenient Location 2BR,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69236,-73.93759,Entire home/apt,155,1,17,2019-05-26,1.65,9,118 +27662837,Single room w/ attached bath in heart of Flushing,205745676,Liqin,Queens,Flushing,40.75732,-73.82075,Private room,75,1,25,2019-06-29,2.31,9,360 +27663407,Reader’s Nook,23884430,Yuting,Brooklyn,Bushwick,40.69372,-73.92801,Private room,55,1,47,2019-07-07,4.31,3,0 +27663483,Lux Apartment across Hudson River - city view,77829151,Cal,Manhattan,Hell's Kitchen,40.76164,-73.99804,Entire home/apt,239,4,2,2019-01-02,0.21,1,0 +27670819,"Large BR in beautiful 2BR artist loft, best of NYC",112545065,Diana,Brooklyn,Bushwick,40.69898,-73.92266,Private room,50,7,1,2019-05-24,0.65,2,55 +27671796,lovely room,75587530,Annie,Manhattan,Upper East Side,40.77943,-73.95456,Shared room,90,26,0,,,2,90 +27672277,"Bay Ridge, Vista Place",208856601,Mason,Brooklyn,Bay Ridge,40.63368,-74.01956,Entire home/apt,300,3,8,2019-06-25,0.83,1,125 +27672939,Lovely garden level apartment Brooklyn brownstone,22622958,Wayne,Brooklyn,Park Slope,40.67889,-73.97813,Entire home/apt,285,2,25,2019-07-01,2.35,2,36 +27673543,PLUSH APARTMENT WITH HIGH CEILINGS!,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69155,-73.95714,Entire home/apt,250,4,36,2019-07-02,3.34,3,202 +27675041,"Brooklyn, Bedstuy, Crown Heights Private Room",208882093,Devaughn,Brooklyn,Crown Heights,40.67522,-73.91938,Private room,85,1,1,2018-12-21,0.15,1,65 +27675173,"beautiful, converted multi-unit building",18763685,Sabina,Manhattan,East Village,40.7309,-73.98671,Entire home/apt,330,2,8,2019-07-02,0.74,1,5 +27676268,Large room w/ attached bath in heart of Flushing,205745676,Liqin,Queens,Flushing,40.75828,-73.82145,Private room,85,1,31,2019-06-14,2.81,9,337 +27677746,Private floor / bedroom/ bathroom + TERRACE!,3598079,Kristina,Manhattan,Midtown,40.75453,-73.96841,Private room,120,1,12,2019-06-05,1.11,1,0 +27677869,Stay comfortably with us. You'll be back again....,208906697,Maxime,Bronx,Longwood,40.82248,-73.89915,Private room,50,1,13,2019-05-29,1.26,1,280 +27677962,Cozy 1BR Apartment in Williamsburg,115154494,Joseph,Brooklyn,Williamsburg,40.71727,-73.94821,Entire home/apt,150,3,6,2019-01-01,0.61,1,0 +27678012,"Private Room in PRIME Williamsburg, Brooklyn",56546581,Moné,Brooklyn,Williamsburg,40.71877,-73.96093,Private room,63,10,2,2019-03-30,0.52,1,0 +27678171,~*PLANT HAVEN*~ Private Room -Charming Garden Apt,94390487,Samantha,Brooklyn,Bedford-Stuyvesant,40.68592,-73.93117,Private room,85,3,11,2019-05-27,1.04,1,170 +27678259,Studio Apartment in Queens,208911587,Mari,Queens,Springfield Gardens,40.66448,-73.76479,Entire home/apt,85,3,33,2019-06-16,3.07,1,44 +27678634,Brooklyn Chill & Explore,105828180,Guy,Brooklyn,Crown Heights,40.66872,-73.95343,Private room,43,2,57,2019-06-28,5.52,3,81 +27680233,"Cute Room in Boho NYC Apt: Quiet, Close to Trains!",183330366,Max & Katie,Manhattan,Little Italy,40.71714,-73.99815,Private room,80,2,65,2019-07-05,6.35,1,12 +27681015,Amazing 3BR/2Bath Apt in the coolest Brooklyn Spot,118226205,Sahar,Brooklyn,Williamsburg,40.71582,-73.94191,Entire home/apt,172,3,32,2019-06-13,3.12,3,78 +27681497,Private top-floor in historic Brooklyn Brownstone,38956453,Paula And Jorge,Brooklyn,Bedford-Stuyvesant,40.6844,-73.9358,Entire home/apt,125,2,51,2019-07-01,5.03,1,89 +27681710,"Private room W/ private bathroom, shower, balcony",208260240,Stan,Brooklyn,Brighton Beach,40.58087,-73.95974,Private room,45,1,1,2019-07-07,1,1,39 +27681714,"Studio in our home Jamaica, Queens 17Min JFK",208946050,Daphnee/Allan,Queens,Jamaica,40.69576,-73.78867,Entire home/apt,54,2,45,2019-06-21,4.18,1,12 +27681899,Cozy One Bedroom Manhattan Apartment with Office,128610997,Zani,Manhattan,Harlem,40.82663,-73.94108,Entire home/apt,170,3,3,2018-12-08,0.28,2,180 +27682748,Child Friendly Cat Lovers Apartment,3800338,Marie,Brooklyn,Flatbush,40.64599,-73.95986,Private room,50,2,2,2019-07-01,2,1,77 +27682933,Best Deal in Brooklyn Bedroom with own Bathroom,208955733,Candace,Brooklyn,East Flatbush,40.65625,-73.9218,Private room,80,1,77,2019-07-01,7.00,4,345 +27684910,New york Single family home,85113502,Sheldon,Queens,St. Albans,40.70245,-73.76925,Private room,55,1,0,,,1,8 +27686998,Cozy private room near Roosevelt Av - Jackson Hts,137358866,Kazuya,Queens,Woodside,40.74146,-73.89341,Private room,33,30,1,2019-02-15,0.21,103,246 +27689960,Cozy Room in a Brooklyn Apartment,4415812,Stephanie,Brooklyn,Flatbush,40.64011,-73.95773,Private room,45,4,24,2019-06-21,2.44,1,4 +27692424,charming and unique studio at toplocation,52363997,Julie,Manhattan,Upper East Side,40.76066,-73.96397,Entire home/apt,150,1,2,2019-07-01,2,1,0 +27693410,Princess Palace Purple,44469259,Layla,Brooklyn,Bedford-Stuyvesant,40.69309,-73.93051,Private room,37,2,44,2019-04-27,4.04,2,1 +27693532,Light one bedroom apartment in Soho!,1423082,Alice,Manhattan,Nolita,40.72265,-73.99458,Entire home/apt,150,2,26,2019-05-27,2.41,1,0 +27693980,Excellent room 20 minutes from Manhattan by train,175182004,Miguel,Queens,Ditmars Steinway,40.77668,-73.90668,Private room,60,1,3,2018-12-28,0.45,1,40 +27694474,Studio. Cozy. Private. Sunny. Sparkling clean.,38272413,Vasily,Brooklyn,Midwood,40.61358,-73.95484,Entire home/apt,71,2,3,2018-09-23,0.28,2,0 +27694593,New York East village Artsy Apartment,15537429,Walid,Manhattan,East Village,40.72658,-73.97753,Entire home/apt,158,2,21,2019-07-02,3.07,3,18 +27695133,Smart Home in the Heart of Harlem,102332204,Theodora,Manhattan,Harlem,40.81658,-73.93994,Entire home/apt,150,2,11,2019-06-20,2.92,1,38 +27695485,The Woodside Story- Private bathroom (1),158407820,Omar,Queens,Woodside,40.75398,-73.90084,Private room,58,2,32,2019-06-24,2.96,5,88 +27695755,7mins to subway-28 mins Manhattan (3),158407820,Omar,Queens,Woodside,40.75375,-73.90037,Private room,57,2,21,2019-06-02,1.94,5,125 +27696495,Sunny mega happy kings room,53127489,Will,Queens,Ridgewood,40.70609,-73.90592,Private room,65,2,0,,,2,0 +27697082,Manhattan white room. Walk to central park,98260543,Ley,Manhattan,Upper East Side,40.76988,-73.95352,Private room,155,1,13,2019-06-12,1.25,3,312 +27697284,Cozy Spacious Loft Convenient to City,875439,Sami,Queens,Jackson Heights,40.74997,-73.87851,Entire home/apt,185,3,25,2019-07-02,3.21,1,55 +27697402,Sunny and Bright Room,21020951,Claudina,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93686,Private room,86,2,2,2019-05-18,0.97,5,342 +27699052,Cozy Brooklyn Room with private bathroom,8855004,Peach,Brooklyn,Bedford-Stuyvesant,40.68891,-73.95164,Private room,65,1,1,2018-08-20,0.09,1,0 +27700332,Fam-Friendly Brooklyn Brownstone w. Vintage charm,2362991,Ashley,Brooklyn,Bedford-Stuyvesant,40.68398,-73.93464,Entire home/apt,139,2,6,2019-06-27,2.02,1,0 +27700366,Huge Apartment Midtown Manhattan Empire State Bldg,89332421,Mohit,Manhattan,Kips Bay,40.74462,-73.97838,Entire home/apt,187,3,4,2019-03-25,0.53,1,0 +27700747,Beach-side basement media room,145245549,Dawid,Staten Island,New Dorp Beach,40.56629,-74.10331,Private room,36,2,18,2019-06-07,1.67,1,178 +27700795,Apartment in the Heart of Manhattan,50183471,Meryl,Manhattan,Hell's Kitchen,40.75597,-73.9955,Entire home/apt,120,14,15,2019-07-01,1.80,1,0 +27701535,Place for sleeping and exploring NYC,209121939,Linda,Manhattan,Harlem,40.82005,-73.93949,Private room,65,1,21,2019-06-17,1.94,2,58 +27703016,New York Apartment,157209452,Mansi,Manhattan,Nolita,40.72194,-73.99557,Private room,120,1,9,2018-10-20,0.85,1,179 +27703561,both world getting to the city and safe place,15486514,Nathan,Bronx,Parkchester,40.8358,-73.85833,Shared room,65,2,4,2018-11-25,0.39,2,0 +27703578,"Charming Chelsea Bungalow w/ +Large Outdoor Terrace",1008066,Francesca,Manhattan,Chelsea,40.74557,-73.99871,Entire home/apt,250,2,14,2019-05-26,1.51,1,28 +27703666,Sunny Large 1BR w/balcony,27610676,Richard,Queens,Bayside,40.76189,-73.77349,Entire home/apt,120,2,7,2019-07-05,0.90,1,41 +27703756,Gorgeous 3BR Home Bear JFK & only 25min to NYC,32126880,Bryant,Queens,Laurelton,40.67563,-73.74713,Entire home/apt,175,2,6,2019-06-15,0.97,2,317 +27703757,Beautiful 4 Bdrm Home - 25 min from Manhattan,32126880,Bryant,Queens,Laurelton,40.67525,-73.74625,Entire home/apt,200,2,6,2019-06-24,0.92,2,321 +27703859,"Chic, Spacious Upper West Side Studio",92509169,Abbey,Manhattan,Upper West Side,40.78348,-73.98383,Entire home/apt,148,2,18,2019-06-21,1.74,1,1 +27703865,Brooklyn Private Apartment,209147067,Maria,Brooklyn,Borough Park,40.6448,-73.99524,Entire home/apt,120,2,5,2019-01-04,0.52,1,3 +27704612,Beautiful Historic Townhouse w/ Backyard(Duplex),1213248,Laurence,Manhattan,Harlem,40.80722,-73.9491,Entire home/apt,159,3,31,2019-07-03,3.07,1,358 +27704712,Spacious 2BR with Private Patio in Lower East Side,9793059,Adam,Manhattan,Lower East Side,40.71586,-73.98908,Entire home/apt,200,4,16,2019-05-18,1.46,1,56 +27705293,Studio Apartment in historic Sugar Hill townhouse,12104046,Paula,Manhattan,Harlem,40.82862,-73.93832,Entire home/apt,85,2,23,2019-07-01,2.24,2,16 +27706017,Beautiful room in a newly renovated apartment!,47023469,Olga,Manhattan,Upper West Side,40.7956,-73.97219,Private room,90,1,31,2019-06-24,3.00,3,112 +27706098,Williamsburg Studio- Steps Away from Lorimer L,3550181,Emily,Brooklyn,Williamsburg,40.71094,-73.95026,Entire home/apt,104,2,20,2019-06-06,2.00,1,0 +27706786,Room with a View,208775804,Anny,Bronx,Kingsbridge,40.88354,-73.89061,Private room,85,3,0,,,1,89 +27706929,"Comfy, Beautiful Apt with Breakfast Included",207381668,Deborah/Aston,Brooklyn,East New York,40.67661,-73.87488,Entire home/apt,125,2,43,2019-07-05,4.13,1,95 +27707196,Harlem Gem,12672916,Erica,Manhattan,East Harlem,40.80147,-73.94432,Entire home/apt,275,3,2,2018-12-10,0.19,1,0 +27707562,Pleasant Place 5 mins away from JFK Airport,61688262,Paula,Queens,Springfield Gardens,40.66333,-73.7661,Private room,60,14,12,2019-05-19,1.14,1,341 +27707814,Great Room Great Price,152484079,Carmen,Staten Island,Port Richmond,40.63577,-74.13113,Private room,46,1,17,2018-12-15,1.55,1,0 +27710264,Cozy Brooklyn Apartment,209202426,Ace,Brooklyn,Bushwick,40.7015,-73.93566,Entire home/apt,80,7,5,2018-10-31,0.53,1,0 +27712922,Bay Ridge Bklyn entire spacious Basement Apartment,69476664,Alkhadher,Brooklyn,Bay Ridge,40.63895,-74.02599,Entire home/apt,136,2,24,2019-07-05,2.26,1,130 +27714862,Newly Renovated Brooklyn Brownstone - Private,5354200,Chantal,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93478,Entire home/apt,125,1,68,2019-07-03,6.26,1,261 +27717773,Bushwick Retreat (for dog lovers only),15413542,Nada,Brooklyn,Bushwick,40.69098,-73.92128,Private room,85,1,14,2019-06-30,1.38,1,81 +27720812,Gorgeous 1 Bedroom on the Park,4367464,Woods,Brooklyn,Fort Greene,40.69028,-73.97484,Entire home/apt,175,3,16,2019-06-24,1.63,1,0 +27722209,New York Hotel,209291543,Christine,Manhattan,Midtown,40.75355,-73.97352,Private room,400,7,3,2019-05-30,1.23,1,184 +27723558,Awesome Private Room Big Windows,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69085,-73.95079,Private room,60,30,27,2019-06-06,2.70,4,319 +27723717,Beautiful Private Room Big Windows,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69025,-73.95042,Private room,60,30,11,2019-04-18,1.02,4,361 +27723810,Sunny room with roof deck in Brooklyn,9503685,Aaron,Brooklyn,Bedford-Stuyvesant,40.69199,-73.9435,Private room,95,2,2,2018-09-09,0.19,2,0 +27723975,Brooklyn Private Room 20 min to Manhattan,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.69088,-73.95018,Private room,65,30,30,2019-06-04,2.84,4,365 +27724217,Warm and Friendly Bronx Home,209306758,Harriet,Bronx,Baychester,40.87886,-73.84301,Private room,69,3,9,2019-06-11,0.87,2,311 +27724572,Best Apt in Queens! 3 people! Metro and everything,67801150,Qiongyao,Queens,Elmhurst,40.73543,-73.87522,Private room,89,1,2,2018-08-25,0.18,1,33 +27725029,Park Avenue Haven,14760734,Anna,Manhattan,East Harlem,40.78954,-73.95076,Private room,110,1,35,2019-07-05,3.90,1,90 +27725392,NEWLY RENOVATED Studio #8,158969505,Karen,Manhattan,Lower East Side,40.72264,-73.9912,Entire home/apt,150,30,2,2019-06-01,0.77,9,302 +27725844,Beautiful new apartment located in Bushwick,106647991,Manon,Brooklyn,Bushwick,40.70398,-73.92168,Private room,52,7,3,2018-10-08,0.29,1,0 +27727321,Simplicity,209332627,Adriana,Manhattan,Washington Heights,40.85711,-73.93004,Private room,75,2,4,2019-06-15,1.67,2,58 +27727442,Williamsburg Proper,9761047,Anika,Brooklyn,Williamsburg,40.71532,-73.96209,Private room,60,3,29,2019-06-28,3.19,3,61 +27728631,Spacious & cozy 1BR opposite Prospect Park Lake,97012192,Sultan,Brooklyn,Prospect-Lefferts Gardens,40.65661,-73.96065,Entire home/apt,100,2,6,2019-04-21,0.58,1,0 +27729476,Spacious bedroom suite in Brooklyn brownstone,209350565,Jeff,Brooklyn,Crown Heights,40.67754,-73.94824,Private room,90,1,52,2019-06-15,4.92,1,0 +27730153,"Entire 1BR Apt, Spacious, Light, 10 mins to LGA",187731563,Sean,Queens,Astoria,40.76969,-73.92197,Entire home/apt,170,2,11,2018-12-16,1.07,1,0 +27730191,"Stylish, Artsy & Comfortable Stay Near the Ocean.",32215382,Polina,Brooklyn,Sheepshead Bay,40.59446,-73.94289,Entire home/apt,105,2,1,2019-05-20,0.59,1,36 +27730757,Charm & style galore in Boerum Hill 2BR duplex,7087709,Theresa,Brooklyn,Boerum Hill,40.68783,-73.98695,Entire home/apt,295,2,31,2019-07-02,2.99,1,25 +27730786,Bedroom in Luxury Waterfront Apt with Views & Pool,6584607,Henry,Brooklyn,Williamsburg,40.71739,-73.96244,Private room,98,1,33,2019-06-21,3.24,2,11 +27731269,"Be Our Guest! Live, Love Bed-Stuy",126501524,Jaran,Brooklyn,Bedford-Stuyvesant,40.68387,-73.94162,Entire home/apt,150,3,44,2019-07-06,4.14,3,252 +27731601,"Williamsburg Loft - Spacious, Sky-High Ceilings",4354856,Jay,Brooklyn,Williamsburg,40.71095,-73.95171,Private room,100,60,0,,,2,157 +27732417,"Brooklyn /Private Bedroom & bathroom, 3 Guests",209374833,Candia,Brooklyn,Crown Heights,40.66678,-73.96148,Private room,99,3,19,2019-07-05,4.96,2,41 +27732746,Entire apartment in the heart of west village,125177157,Josue,Manhattan,West Village,40.73397,-74.00168,Entire home/apt,190,2,0,,,1,0 +27732981,Luxury apartment in New York City,133473678,Shumin,Queens,Long Island City,40.75118,-73.93646,Private room,89,1,0,,,1,0 +27733012,9mins to LGA; 28mins to JFK (4),158407820,Omar,Queens,Woodside,40.75391,-73.90256,Private room,53,2,23,2019-06-10,2.15,5,156 +27733464,Beautiful shared place in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79884,-73.9424,Shared room,49,2,25,2019-05-09,2.31,9,12 +27733542,Spacious room in awesome Bushwick townhouse,6591232,Sebastien,Brooklyn,Bushwick,40.69194,-73.92352,Private room,40,3,1,2018-08-29,0.10,1,0 +27734811,Luxurious Apartment in the best Location,3048319,Carlos,Manhattan,Hell's Kitchen,40.76209,-73.99875,Entire home/apt,300,2,12,2019-06-03,1.14,2,2 +27735126,Cozy shared place by Central Park Manhattan,209386156,Abraham,Manhattan,East Harlem,40.80033,-73.94201,Shared room,49,2,60,2019-06-22,5.54,9,109 +27735315,The luxury East New York,78485066,Corie,Brooklyn,East New York,40.66526,-73.8937,Entire home/apt,124,2,34,2019-06-04,3.59,2,273 +27735701,Beautiful cozy apt in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.80033,-73.941,Shared room,60,2,28,2019-06-10,2.58,9,120 +27735744,☆ Secret Hideaway - Blocks from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75658,-73.99568,Private room,100,1,41,2019-06-18,3.80,3,64 +27736075,Welcome to the Secret Oasis in Williamsburg,84063956,Astrid,Brooklyn,Williamsburg,40.70908,-73.95006,Private room,78,1,32,2019-06-17,3.19,1,30 +27736140,Spacious home in quiet Forest Hills,209406241,Sumeet,Queens,Forest Hills,40.71799,-73.85695,Entire home/apt,300,1,0,,,1,0 +27736749,☆ Manhattan's Retreat - Blocks from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75655,-73.99535,Private room,90,1,44,2019-07-04,4.07,3,36 +27737158,☆ 2 Bedroom Apartment - Minutes from Times Square!,209405908,Louis,Manhattan,Hell's Kitchen,40.75611,-73.9937,Entire home/apt,180,1,41,2019-07-01,4.73,3,30 +27744041,Entire New York Apartment. 2 bedrooms,98260543,Ley,Manhattan,Upper East Side,40.76938,-73.95212,Entire home/apt,300,2,8,2019-06-19,1.06,3,62 +27746387,Gorgeous bright spacious loft apt in Brooklyn,27780735,Susan,Brooklyn,Bushwick,40.69815,-73.92841,Entire home/apt,110,1,2,2018-12-23,0.19,1,0 +27747288,"Modern 3Beds/2bedroom Apartment, 5min TIME SQUARE.",45578040,Ryan,Manhattan,Hell's Kitchen,40.76457,-73.98766,Entire home/apt,269,1,18,2019-06-25,1.67,2,55 +27748069,NYC NARNIA ROOM Walking Distance to Central Park!,4233057,Hajah,Manhattan,East Harlem,40.79709,-73.93586,Private room,61,3,8,2019-04-22,0.85,3,95 +27749038,Private Bedroom in Upper East Side,180212824,Samet,Manhattan,Upper East Side,40.76517,-73.95669,Private room,99,1,7,2018-12-12,0.74,5,0 +27751020,"Bedroom in Brooklyn Apt, close to Prospect Park!",74569188,Luz Carime,Brooklyn,Flatbush,40.64815,-73.96862,Private room,60,2,3,2018-11-06,0.32,1,0 +27752128,sofa Bed And Breakfast,205706382,Peter,Queens,Maspeth,40.72514,-73.89845,Shared room,11,1,0,,,1,245 +27752788,Bright and Spacious Apt in the Heart of Manhattan,22072708,Mk,Manhattan,Midtown,40.74264,-73.98361,Entire home/apt,199,3,14,2019-06-17,1.33,1,3 +27753677,Private Bedroom Free parking 10 min to Manhattan,11365400,Rojé,Queens,Long Island City,40.73674,-73.92973,Private room,75,1,91,2019-06-30,8.56,2,0 +27754177,West Village dream location room,12926593,Catarina,Manhattan,West Village,40.73202,-74.00348,Private room,150,2,2,2019-06-30,0.21,3,56 +27754773,Spacious Room in the heart of Manhattan,209549523,Mariluz,Manhattan,Midtown,40.74863,-73.98291,Private room,150,1,59,2019-06-21,6.04,3,0 +27756576,Brooklyn Bedroom for two friends sharing!!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68925,-73.92805,Private room,42,30,3,2019-05-16,0.36,5,216 +27756639,Comfortable Place with Dimple,209306758,Harriet,Bronx,Baychester,40.8773,-73.84329,Private room,53,3,12,2019-06-14,1.20,2,356 +27758379,"Spacious, Quiet Apt- Heart of West Village",52889401,Teen,Manhattan,West Village,40.73223,-74.00499,Entire home/apt,290,2,9,2019-04-28,0.87,1,41 +27758562,LARGE Private Room next to the Empire State,209549523,Mariluz,Manhattan,Midtown,40.74906,-73.98454,Private room,135,1,70,2019-06-16,7.24,3,0 +27759146,Cozy corner near Empire State Building,209549523,Mariluz,Manhattan,Midtown,40.74858,-73.98341,Shared room,62,1,112,2019-06-13,10.77,3,0 +27759455,Luxurious Apartment!! Located on 5th Avenue!,30775274,Samuel,Manhattan,Midtown,40.74616,-73.98641,Entire home/apt,800,1,1,2019-04-02,0.31,1,270 +27760207,"Bright, airy west village retreat!Great location!",23463422,Amit,Manhattan,West Village,40.73384,-74.00011,Entire home/apt,175,3,7,2019-01-01,0.70,1,0 +27760799,Christina’s home,209372017,Christina,Bronx,Bronxdale,40.8546,-73.86785,Private room,50,1,24,2019-06-27,2.24,1,163 +27761683,"Clean Cozy Room, Queens-5 min walk to subway (R/M)",199524563,Bei,Queens,Rego Park,40.72678,-73.86218,Private room,55,2,25,2019-06-22,2.37,3,38 +27762497,*NYC Central Park* Entire Floor with Great Privacy,205390315,Yu,Manhattan,Upper West Side,40.79689,-73.96289,Entire home/apt,149,3,32,2019-06-22,3.07,1,96 +27763793,Hell’s Kitchen Apartment,15485954,Bryan,Manhattan,Hell's Kitchen,40.76315,-73.99235,Entire home/apt,200,1,29,2019-04-01,2.79,1,0 +27765541,Perfect location two bedroom beautifully furnished,209642447,Brik,Manhattan,SoHo,40.72725,-74.00128,Entire home/apt,350,2,38,2019-07-01,4.49,1,267 +27770423,Cosy Manor on Menahan,3566012,Salar,Brooklyn,Bushwick,40.69546,-73.91477,Private room,38,7,0,,,1,40 +27773847,Perfect NYC Hell’s Kitchen Duplex Apartment!,129263359,Ashley,Manhattan,Hell's Kitchen,40.76398,-73.99087,Entire home/apt,250,2,1,2019-04-21,0.38,1,9 +27774442,Huge Industrial Chic Williamsburg 1 Bdrm w/rooftop,24399066,Rachel,Brooklyn,Williamsburg,40.72018,-73.9573,Entire home/apt,185,1,20,2019-06-09,1.89,1,44 +27774740,Entire Garden apartment in Brownstone,60928518,Evelyn,Brooklyn,Carroll Gardens,40.67982,-74.00038,Entire home/apt,185,2,25,2019-06-19,2.42,1,17 +27775893,Midtown Studio,209719391,Laura,Manhattan,Midtown,40.74752,-73.98679,Entire home/apt,140,3,28,2019-07-01,2.71,1,333 +27776337,Apartment for transient guest!,209121939,Linda,Manhattan,Harlem,40.81942,-73.94068,Private room,45,1,14,2019-06-22,1.34,2,128 +27776926,★☆Sunnyside☆-Locals' favorite neighbor for living-,43044876,Haruhisa,Queens,Sunnyside,40.73998,-73.92619,Private room,40,29,1,2018-10-11,0.11,5,0 +27779367,Unique Apartment in Park Slope,5744362,Boer,Brooklyn,Park Slope,40.6779,-73.97991,Private room,150,1,1,2018-09-09,0.10,1,276 +27779997,"Private Room Midtown Park Avenue, Steal!",209758777,Isabel,Manhattan,Midtown,40.74631,-73.98502,Private room,145,1,53,2019-06-24,7.61,2,5 +27781325,"Private house in Queens, 10 minutes from JFK.",4668357,Angie,Queens,Jamaica,40.68479,-73.77606,Entire home/apt,125,1,2,2018-10-28,0.22,1,0 +27781833,"Queens Apt (bedroom w balcony), close to subway",134170699,Rafa' S,Queens,Elmhurst,40.73603,-73.87845,Private room,70,2,25,2019-07-07,2.31,2,177 +27782635,Sonder | 116 John | Sun-Filled 2BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70628,-74.00654,Entire home/apt,245,29,0,,,96,304 +27782761,Best of both world city and safety easy to get,15486514,Nathan,Bronx,Parkchester,40.83581,-73.85864,Private room,65,2,3,2018-12-02,0.29,2,0 +27782804,"SPACIOUS & CHARMING w/garden 4BR +walk 2 train",20951849,Elaine,Brooklyn,Bedford-Stuyvesant,40.69138,-73.93217,Entire home/apt,350,1,5,2019-01-01,0.49,2,5 +27782948,Private room in trendy Williamsburg,20448671,Kandi,Brooklyn,Williamsburg,40.7098,-73.9418,Private room,66,2,6,2019-01-02,0.66,3,173 +27783586,Williamsburg nest with private bathroom,20448671,Kandi,Brooklyn,Williamsburg,40.70755,-73.94377,Private room,65,2,22,2019-06-29,2.25,3,173 +27783611,Lovely place for traveler,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.69089,-73.93912,Shared room,31,1,33,2019-06-23,3.08,17,85 +27783928,Sonder | Madison Ave | Airy 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.7469,-73.98438,Entire home/apt,239,29,0,,,96,305 +27784070,Room 4 -Sunny Cozy Room in Historic Victorian Home,173362161,Elizabeth,Brooklyn,Flatbush,40.64408,-73.96979,Private room,55,2,28,2019-06-23,2.64,6,68 +27784090,Large Williamsburg room with private deck,20448671,Kandi,Brooklyn,Williamsburg,40.70936,-73.9437,Private room,75,2,16,2019-02-24,1.55,3,215 +27784542,Artistic Loft w Fireplace & Manhattan Skyline,33655,Sruthi,Brooklyn,Columbia St,40.68388,-74.00484,Entire home/apt,210,2,11,2019-07-02,1.24,2,120 +27784556,"Beautiful, New Williamsburg apartment.",8197910,Matthew,Brooklyn,Williamsburg,40.71652,-73.94809,Private room,120,1,16,2019-06-09,1.55,1,85 +27784595,Sonder | Madison Ave | Relaxed 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74681,-73.98488,Entire home/apt,239,29,0,,,96,327 +27785049,Sonder | Madison Ave | Restful 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74576,-73.98339,Entire home/apt,239,29,0,,,96,326 +27785327,Bushwick Art collective bedroom A,3635302,Adam,Brooklyn,Bushwick,40.70563,-73.91853,Private room,90,2,6,2019-05-31,0.58,3,89 +27785672,Bushwick Art collective bedroom B,3635302,Adam,Brooklyn,Bushwick,40.7052,-73.91888,Private room,90,2,14,2019-07-01,1.32,3,87 +27786254,Bright Studio near park,170026468,Azia,Brooklyn,Flatbush,40.65258,-73.96343,Entire home/apt,115,3,11,2019-06-05,1.23,1,165 +27786365,Good vibes a block from the J,44469259,Layla,Brooklyn,Bedford-Stuyvesant,40.69331,-73.93031,Private room,45,1,1,2018-12-03,0.14,2,0 +27786467,Spacious Harlem Home,7692306,Gordon,Manhattan,Harlem,40.80597,-73.95348,Entire home/apt,200,3,2,2018-12-31,0.24,1,16 +27786837,Adorable Boho Room in Great Location,54217990,Eleanor,Brooklyn,Williamsburg,40.71315,-73.94993,Private room,105,3,12,2019-07-01,1.34,1,0 +27787312,Beautiful cozy apt by Central Park,209386156,Abraham,Manhattan,East Harlem,40.79832,-73.94214,Shared room,49,2,35,2019-05-28,3.23,9,9 +27787386,Clean cozy overnight bed in Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79873,-73.94052,Shared room,49,2,51,2019-06-09,4.71,9,5 +27787665,Overnight place in East Side Manhattan,209386156,Abraham,Manhattan,East Harlem,40.799,-73.94107,Shared room,49,2,23,2019-06-30,2.12,9,10 +27788038,Beautiful overnight bed by Central park,209386156,Abraham,Manhattan,East Harlem,40.79861,-73.94116,Shared room,49,2,62,2019-06-30,5.81,9,3 +27788408,Home Away from Home: Crystalline dreams,130971031,J-,Brooklyn,Bushwick,40.70397,-73.91801,Private room,73,3,8,2019-02-16,0.76,4,104 +27788826,Upper East Side 2 Room Studio Retreat,11376647,Nicholas,Manhattan,Upper East Side,40.76856,-73.95367,Entire home/apt,150,10,3,2018-09-16,0.29,1,17 +27795110,Center of West Village: Unique 1 Bedroom,48677236,Lo,Manhattan,West Village,40.73271,-74.00207,Entire home/apt,220,2,10,2019-07-01,0.92,1,48 +27795234,Near LGA and JFK Airport Cozy Basement Room,194377255,Jimmy,Queens,East Elmhurst,40.76019,-73.88405,Private room,35,1,92,2019-07-01,8.87,4,344 +27795695,"Bright, Beautiful + Adorable in S. Williamsburg",24589216,Heidi,Brooklyn,Williamsburg,40.70878,-73.96061,Entire home/apt,125,1,13,2018-10-01,1.22,2,0 +27802387,Living Room sofa Bed in Chelsea,12750945,Luis,Manhattan,Chelsea,40.74186,-73.99769,Shared room,85,2,22,2019-06-23,2.19,4,365 +27802430,Beautiful Duplex steps from Subway,156259857,Joao,Brooklyn,Bushwick,40.68164,-73.9039,Entire home/apt,350,6,0,,,3,156 +27803315,Sonder | Madison Ave | Modern 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74705,-73.98268,Entire home/apt,239,29,0,,,96,328 +27803575,Relaxing Stay in Brooklyn,50912,Ry,Brooklyn,Crown Heights,40.67268,-73.96108,Entire home/apt,190,1,9,2019-06-30,0.99,1,364 +27803732,"Large 1 bed, 1.5 bath on the Upper East Side",7169451,Danielle,Manhattan,Upper East Side,40.76537,-73.9638,Entire home/apt,300,3,2,2019-06-16,0.21,1,343 +27803759,Sonder | Madison Ave | Lively 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.74658,-73.98298,Entire home/apt,279,29,0,,,96,325 +27804120,Large sunny pvt room 10 mins from Times sq. 63F3,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99633,Private room,65,1,2,2018-11-02,0.23,47,361 +27804902,Brooklyn Flavor,23776693,Bev,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92936,Private room,48,3,22,2019-07-03,3.13,3,94 +27805071,Lovely 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75452,-73.96256,Entire home/apt,239,29,0,,,96,206 +27805652,Fort Greene Parlor,814747,Maeve,Brooklyn,Fort Greene,40.68634,-73.97091,Entire home/apt,250,2,4,2019-04-18,0.39,2,12 +27807007,Salt Shack - A Houseboat in the Rockaways!,20469514,Justin,Queens,Arverne,40.59391,-73.78824,Entire home/apt,150,2,22,2019-07-01,2.04,1,118 +27807260,Private room in East Harlem,50169207,Richie,Manhattan,East Harlem,40.79409,-73.94007,Private room,150,2,2,2019-06-10,0.24,2,67 +27807509,Beautiful 1 Bedroom apartment,209979150,Cheryl,Brooklyn,Crown Heights,40.67082,-73.92175,Entire home/apt,80,2,64,2019-06-26,6.00,1,209 +27808176,"New York, Jackson heights",118419433,Freddy,Queens,Jackson Heights,40.75395,-73.87396,Private room,80,1,5,2019-01-02,0.47,1,180 +27808723,A beautiful home for vacation,152246149,Catherine,Bronx,Throgs Neck,40.83148,-73.82931,Private room,65,1,23,2019-06-21,2.18,5,365 +27809255,Luxurious 2 Bedroom Midtown East,61391963,Corporate Housing,Manhattan,Midtown,40.75734,-73.96727,Entire home/apt,150,30,1,2019-05-04,0.45,91,311 +27810474,Sunny Third-Floor Fort Greene Apartment,37820632,Moira,Brooklyn,Fort Greene,40.68912,-73.97514,Entire home/apt,275,2,2,2018-12-18,0.19,1,0 +27810647,New York Home,191765199,Elena,Manhattan,Washington Heights,40.83341,-73.94154,Entire home/apt,250,3,6,2019-06-19,0.95,6,46 +27812071,Cozy Room East Williamsburg (15 Min to Manhattan),210019212,Holden,Brooklyn,Bushwick,40.70767,-73.92307,Private room,49,7,28,2019-06-25,2.78,3,28 +27812131,"Visit New York,The Local Brooklyn Way SuperHost",210014579,Paul,Queens,Ridgewood,40.70186,-73.90467,Private room,61,1,48,2019-06-22,4.50,1,171 +27814544,Underhill Penthouse,153781232,Zak,Brooklyn,Prospect Heights,40.67313,-73.96536,Private room,90,1,8,2019-07-07,0.75,1,129 +27814780,Williamsburg duplex apartment with backyard,67913256,Onyuka,Brooklyn,Williamsburg,40.71475,-73.94913,Private room,75,1,5,2019-05-06,0.59,1,55 +27815089,Morningside Heights Cozy & Clean Modern Apt.,31659721,Krystalee,Manhattan,Harlem,40.80624,-73.95622,Private room,110,1,1,2018-08-31,0.10,1,0 +27816015,Queens Apartment,210054677,Mofizur,Queens,Woodside,40.74822,-73.90591,Entire home/apt,125,1,33,2019-07-07,3.20,1,95 +27817851,A Nice Room For Unique people,152246149,Catherine,Bronx,Throgs Neck,40.82952,-73.82818,Private room,140,1,31,2019-06-09,3.01,5,365 +27823763,2 Bedroom with backyard and best location,10017420,Liat,Brooklyn,Cobble Hill,40.68574,-73.99958,Entire home/apt,250,3,31,2019-06-22,2.98,1,101 +27824606,Huge outdoor w/ amazing view right from your room,73820234,Yeon,Manhattan,West Village,40.73213,-74.00865,Private room,100,3,35,2019-06-07,3.30,1,112 +27825381,"Dream private loft in Williamsburg, Brooklyn",53481649,Lucy,Brooklyn,Williamsburg,40.71493,-73.96089,Private room,90,2,2,2018-09-25,0.19,1,0 +27827110,private room in a shared apartment,141400974,Öykü,Manhattan,Harlem,40.80913,-73.94614,Private room,45,14,5,2019-01-25,0.47,1,0 +27827834,Coziest room off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.6898,-73.92588,Private room,65,1,27,2019-01-26,2.52,2,0 +27830753,Private Room in Renovated Bushwick Apt w/ Wash/Dry,62187386,Luigi,Brooklyn,Bushwick,40.70117,-73.91481,Private room,45,3,9,2019-06-19,0.87,1,10 +27831194,Bright 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75498,-73.96426,Entire home/apt,212,29,0,,,96,203 +27831402,Bright Williamsburg room with huge private terrace,110674731,Ben,Brooklyn,Williamsburg,40.71247,-73.94548,Private room,70,1,2,2018-09-05,0.18,1,0 +27831715,Modern 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75497,-73.96289,Entire home/apt,204,29,0,,,96,243 +27831928,Charming 3bed/2ba Downtown/LES,210170222,Anastasia,Manhattan,Lower East Side,40.71815,-73.98213,Private room,400,3,6,2019-03-31,0.87,1,67 +27832001,Sonder | 180 Water | Pristine Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70788,-74.00459,Entire home/apt,184,29,0,,,96,267 +27832008,Private 1BR with Private Bathroom feet from subway,104607422,Tunde,Manhattan,Harlem,40.83005,-73.93992,Entire home/apt,119,1,29,2019-06-30,3.02,1,103 +27832135,Huge Room for Nightly Stays Downtown or Monthly,3699846,Abbey,Manhattan,Tribeca,40.7181,-74.00999,Private room,197,5,3,2019-05-21,0.30,1,95 +27833130,Creative Bushwick - Cozy Private Room,210175250,Dr. Jihene,Brooklyn,Bushwick,40.6888,-73.92015,Private room,30,1,18,2019-06-23,3.60,1,93 +27833243,Sonder | 116 John | Cozy 2BR+ Gym,12243051,Sonder,Manhattan,Financial District,40.70797,-74.0055,Entire home/apt,245,29,1,2019-03-16,0.26,96,311 +27833897,Pet-friendly 1bd in the Heart of East Village,13775855,Joe,Manhattan,East Village,40.72772,-73.98046,Entire home/apt,149,3,25,2019-06-09,2.40,1,1 +27834075,art-filled spacious room in artist's cozy home.,68284975,Dio,Brooklyn,Bushwick,40.69355,-73.92684,Private room,66,2,39,2019-06-25,3.75,2,158 +27834828,Private Bedroom in MANHATTAN (Free Wifi),124901163,Sarah,Manhattan,Harlem,40.8228,-73.94442,Private room,76,5,2,2019-05-23,0.32,1,66 +27835546,"Cute, Cozy Private One-Bed in Crown Heights",143952234,Aaron,Brooklyn,Crown Heights,40.67182,-73.94446,Entire home/apt,100,3,5,2019-05-20,0.52,1,0 +27836216,Sunny Room in modern building in Bushwick,13098292,Raisa,Brooklyn,Bushwick,40.69961,-73.93138,Private room,55,3,4,2018-09-21,0.39,2,0 +27836335,Private Room in great location Bushwick!,13098292,Raisa,Brooklyn,Bushwick,40.69994,-73.93299,Private room,55,2,0,,,2,0 +27836864,The Buchanan’s,45155504,Violet,Queens,St. Albans,40.70046,-73.74834,Entire home/apt,130,2,17,2019-07-01,1.69,1,352 +27838541,2 bedroom apartment in Astoria,104885443,Maiko,Queens,Astoria,40.76942,-73.92772,Entire home/apt,130,2,3,2019-01-04,0.47,2,0 +27839683,"One bedroom apartment Woodhaven, Queens NY.",210218941,Jason C,Queens,Woodhaven,40.6959,-73.84868,Entire home/apt,51,7,3,2019-06-18,1.00,1,2 +27840650,Large bedroom ensuite,210250232,Samantha,Brooklyn,East New York,40.67154,-73.87913,Private room,65,3,2,2018-10-07,0.19,1,179 +27842475,Bright Brooklyn Studio,41610771,Caroline,Brooklyn,Bedford-Stuyvesant,40.68056,-73.95372,Entire home/apt,100,3,5,2019-06-10,0.66,1,4 +27846079,Art Gallery apartment in a Queens’ Victorian house,207622517,Andrzej,Queens,Woodhaven,40.69508,-73.86032,Entire home/apt,170,3,24,2019-07-07,2.55,1,308 +27848370,Williamsburg Duplex with outdoor deck,266921,Jason,Brooklyn,Williamsburg,40.71399,-73.9454,Entire home/apt,144,6,1,2019-01-01,0.16,1,71 +27849036,"Charming, Sunny West Village 1BR - Prime Location!",3598494,Jenna,Manhattan,West Village,40.73641,-73.99929,Entire home/apt,250,2,3,2019-04-23,0.34,1,0 +27849339,~Flatiron 2 Bedroom~Amazing Location~Sleeps 6~,209556739,Ryan,Manhattan,Midtown,40.74478,-73.98442,Entire home/apt,349,4,32,2019-06-21,3.04,1,255 +27850382,Superior Studio with Balcony,32866463,Bassam,Brooklyn,Bay Ridge,40.63334,-74.01784,Private room,65,1,40,2019-07-04,3.79,2,169 +27850505,Room in heart of Williamsburg on Bedford Ave.,34988761,Colin,Brooklyn,Williamsburg,40.71289,-73.9637,Private room,65,1,0,,,1,0 +27851725,luz lunar bibis,207381757,Gabriel,Bronx,Norwood,40.87633,-73.88328,Private room,45,1,18,2019-07-01,1.93,1,153 +27852017,Your Private Safe-Clean Haven w/Private Bath,206884583,Haidy,Bronx,Pelham Bay,40.84633,-73.83029,Private room,80,2,28,2019-06-25,2.69,1,78 +27852410,Big Bed Paradise,104812805,Amarjit S,Staten Island,Arrochar,40.59623,-74.0839,Private room,34,4,8,2019-06-08,0.85,8,290 +27852878,Lush mid-century haven in Greenpoint,117030530,Laine,Brooklyn,Greenpoint,40.73347,-73.95164,Private room,80,3,2,2018-11-24,0.20,1,0 +27853417,A Cozy Place to Stay in Woodside Queens!,137358866,Kazuya,Queens,Maspeth,40.73786,-73.90616,Private room,36,30,1,2019-05-31,0.77,103,235 +27853549,NYC Chelsea Luxury Modern Studio,5064974,Alice,Manhattan,Chelsea,40.73918,-73.99753,Entire home/apt,180,6,5,2018-12-31,0.56,1,0 +27853643,Sonder | 116 John | Pleasant 1BR + Gym,12243051,Sonder,Manhattan,Financial District,40.70776,-74.00477,Entire home/apt,174,29,0,,,96,313 +27853696,Spacious Bright Private Bedroom In Williamsburg!!!,127056976,Ali,Brooklyn,Williamsburg,40.71407,-73.93856,Private room,66,5,3,2018-10-07,0.31,1,0 +27854183,Private Room in the heart of Williamsburg,35959456,Karim,Brooklyn,Williamsburg,40.71893,-73.95866,Private room,95,1,47,2019-07-06,4.35,1,28 +27854195,"Beautiful, sunny, private apartment",32935611,Martha,Brooklyn,Sunset Park,40.64704,-74.00819,Entire home/apt,119,4,23,2019-06-11,2.61,1,31 +27855899,"large, stylish, airy East Village loft apartment!",3809729,Yemisi,Manhattan,East Village,40.72307,-73.98369,Entire home/apt,199,3,7,2019-05-05,0.69,1,0 +27857163,"Studio near times grand central, Times Square, UN",19664260,Viswanadha,Manhattan,Midtown,40.75216,-73.97172,Entire home/apt,300,1,2,2018-09-23,0.20,1,0 +27858785,Spacious Lower East Side Room,65692858,Christian,Manhattan,Lower East Side,40.72093,-73.98596,Private room,150,3,17,2019-01-28,1.65,1,188 +27863860,New York Apartment,106651452,Karen,Manhattan,Civic Center,40.7131,-74.00527,Entire home/apt,70,15,0,,,1,0 +27866657,Affordable bedroom in Brooklyn townhouse.,101498908,Julie,Brooklyn,East Flatbush,40.6504,-73.95011,Private room,39,3,2,2019-02-18,0.19,2,0 +27868079,"""In the Clouds"" Brooklyn Heights Studio",23115464,Jenna,Brooklyn,Brooklyn Heights,40.69503,-73.99475,Entire home/apt,125,8,1,2018-09-27,0.10,1,207 +27869059,beautiful modern 1 bed room apt,210505783,Alex,Manhattan,Chelsea,40.74813,-74.00478,Private room,300,2,4,2019-05-28,0.45,1,0 +27869100,Spacious Room in Midtown East Apartment,7324189,Buke,Manhattan,Midtown,40.76043,-73.97075,Private room,150,3,3,2018-10-14,0.31,2,127 +27869757,Bright and Cozy Room in Williamsburg,25549229,Pauline,Brooklyn,Williamsburg,40.7073,-73.96607,Private room,60,4,17,2019-04-07,1.59,2,131 +27871248,"Clean, Cozy Home in Perfect Park Slope Location",106063627,Young Jean,Brooklyn,Park Slope,40.68178,-73.97957,Entire home/apt,130,120,0,,,1,0 +27871410,South Williamsburg Condo - Rooftop & Balcony,135018,Julie,Brooklyn,Williamsburg,40.71113,-73.96181,Entire home/apt,180,3,1,2018-09-30,0.11,1,9 +27873228,Spacious Private Room near Train and Prospect Park,40830538,Aaron,Brooklyn,Prospect-Lefferts Gardens,40.65815,-73.95546,Private room,40,31,3,2019-06-01,0.45,2,84 +27873545,Sunny Apt in Brooklyn Close to Prospect Park,12703112,Sophia,Brooklyn,Kensington,40.63472,-73.97268,Private room,65,3,2,2019-01-01,0.19,1,281 +27874237,Park Slope Perfect 2 BR,42273,Dani,Brooklyn,South Slope,40.66875,-73.98779,Entire home/apt,150,31,1,2019-05-24,0.64,2,281 +27874671,room in a soho loft,3968209,Swetha,Manhattan,SoHo,40.72099,-73.99921,Private room,100,3,8,2019-04-29,0.81,2,361 +27875757,Sun-Drenched Perch in Charming Brownstone,210578372,Joyce,Brooklyn,Carroll Gardens,40.68112,-73.99296,Entire home/apt,150,4,9,2019-05-18,0.87,1,0 +27875973,South Williamsburg Loft,4359156,Alexandra,Brooklyn,Williamsburg,40.70856,-73.96632,Private room,90,2,2,2019-07-03,2,1,10 +27876063,Charming Private Room in Apt Share- Astoria NY,110930,Linda,Queens,Astoria,40.76305,-73.91874,Private room,40,5,1,2018-09-08,0.10,1,0 +27876238,"Massive, Private 1 Bedroom near Barclays Center",75287595,Nathan,Brooklyn,Park Slope,40.6783,-73.97559,Private room,69,1,13,2019-04-07,1.22,1,1 +27876268,Step back in time and see NYC as it was in the 80s,26405093,Jeff,Staten Island,Stapleton,40.63782,-74.07732,Private room,85,1,2,2018-09-13,0.19,2,353 +27876346,Industrial Brooklyn Duplex w/ Rooftops!,4336107,Bryce,Brooklyn,Crown Heights,40.67436,-73.9551,Entire home/apt,200,4,6,2019-04-07,0.61,1,4 +27876546,Aqua Room East Williamsburg (15 min to Manhattan),210019212,Holden,Brooklyn,Bushwick,40.70777,-73.92115,Private room,59,1,33,2019-06-19,3.14,3,28 +27876600,Peaceful garden + private studio in the UES,43888084,Elena,Manhattan,Upper East Side,40.78057,-73.95186,Entire home/apt,248,4,3,2019-04-16,0.31,1,100 +27876953,Cozy Antique Haven in Brooklyn,8619668,Linda,Brooklyn,Crown Heights,40.66663,-73.93455,Private room,60,3,2,2018-10-13,0.21,1,50 +27876980,"Private, big, clean cozy room, in TIMES SQUARE",121657084,Naor,Manhattan,Midtown,40.7571,-73.98014,Private room,95,3,28,2019-06-15,2.71,1,0 +27878456,Five stars room in very comfy aptm. chek this out,35660592,Luis,Queens,Elmhurst,40.73366,-73.87651,Private room,77,2,10,2019-06-11,0.98,6,354 +27889231,Private Room in a Recently Remodeled Apt Bushwick,4908332,Ivan,Brooklyn,Bushwick,40.70325,-73.91349,Private room,70,1,8,2019-04-21,0.81,1,0 +27890305,Sofa bed space for rent nightly,174504698,Moza,Queens,Elmhurst,40.73853,-73.88647,Shared room,100,1,0,,,1,179 +27890556,Beautiful Historic Brooklyn!,51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69652,-73.94821,Private room,45,2,46,2019-06-23,4.68,4,36 +27890781,Hidden gem that's only 15 minutes from Manhattan.,210687004,Didier,Queens,Woodside,40.75537,-73.90741,Private room,83,2,0,,,1,126 +27891385,"Manhattan Charm, Brooklyn Price!!!",51954926,Kc,Brooklyn,Bedford-Stuyvesant,40.69676,-73.94794,Private room,45,2,41,2019-06-23,4.07,4,39 +27891791,Comfort Away from Home,205188960,Patrick,Brooklyn,East Flatbush,40.6491,-73.92532,Entire home/apt,75,3,12,2019-06-30,1.21,1,167 +27892770,Brazilian hospitality in Long Island City,31967085,Dalva,Queens,Long Island City,40.75428,-73.93323,Private room,64,4,23,2019-06-27,2.21,1,8 +27893211,Beautiful Sun Drenched Williamsburg Apartment,6842719,Shachi,Brooklyn,Williamsburg,40.71615,-73.94171,Entire home/apt,150,2,3,2019-05-27,0.48,2,330 +27896043,Comfortable room in the heart of Williamsburg!!,129864476,Greetings From Saul And Diana,Brooklyn,Williamsburg,40.7191,-73.95988,Private room,80,1,13,2019-07-01,1.32,1,65 +27896962,Private Studio with Backyard in Brooklyn,4324281,Jasmine,Brooklyn,Bedford-Stuyvesant,40.68231,-73.95202,Entire home/apt,75,2,17,2019-06-30,2.17,1,77 +27899019,Affordable quite private room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73821,-73.81006,Private room,64,1,7,2019-06-09,0.73,5,90 +27900847,Brooklyn Getaway,3870708,Keagon,Brooklyn,Windsor Terrace,40.66047,-73.98244,Entire home/apt,154,2,12,2019-06-30,1.16,1,19 +27901243,Sunny 3rd floor huge Master Bedroom,78379915,Joanne,Brooklyn,Bedford-Stuyvesant,40.68392,-73.95265,Private room,40,30,1,2019-05-25,0.65,1,282 +27901304,huge 2 bedroom / 2 bathroom GREENPOINT duplex,29600909,Inna,Brooklyn,Greenpoint,40.72927,-73.9477,Entire home/apt,160,2,14,2019-07-01,6.18,1,45 +27901436,Cozy apartment in midtown east,61009334,Tyler,Manhattan,Midtown,40.75142,-73.97049,Entire home/apt,210,2,7,2019-03-04,0.68,1,0 +27902950,Cozy private room in 2br apt Brooklyn,210779293,Zsanett,Brooklyn,Borough Park,40.63516,-74.00078,Private room,54,1,55,2019-06-23,5.16,2,59 +27903031,Prewar Gem in Middle of Everything!,7580102,(Email hidden by Airbnb),Manhattan,Midtown,40.76399,-73.98077,Private room,139,3,3,2018-11-17,0.31,2,0 +27903095,5 minutes walking distance to everything you need,16594445,Jasmine,Queens,Flushing,40.76106,-73.8305,Private room,39,1,22,2019-06-22,2.14,1,82 +27903413,Cozy 1 BR APT->CHELSEA!!!,210783572,Enrica,Manhattan,Chelsea,40.74186,-74.00372,Entire home/apt,180,4,3,2019-04-13,0.31,1,0 +27904413,2BD Mid-Century Union Sq Brownstone/ Gramercy Park,9021276,Colette,Manhattan,Gramercy,40.73947,-73.9847,Entire home/apt,400,4,7,2019-05-27,0.68,1,64 +27904745,Stuytown apartment,1142553,Brittany,Manhattan,Stuyvesant Town,40.72957,-73.97715,Entire home/apt,189,2,5,2018-11-05,0.48,1,0 +27905583,Uptown Manhattan: Private Room w Private Entrance!,210800401,Jasmine,Manhattan,Washington Heights,40.8466,-73.93432,Private room,60,3,28,2019-06-09,2.64,2,0 +27906043,Chic entire downstairs in 3br duplex,8441265,Sara,Queens,Ridgewood,40.70576,-73.91129,Private room,55,3,3,2019-05-27,0.32,2,0 +27906346,New york Multi-unit building,27071572,Kinga,Manhattan,Upper West Side,40.79372,-73.97431,Entire home/apt,140,5,3,2019-04-24,0.29,1,89 +27906663,Plant-filled colorful Bushwick bedroom!,41942577,Olive,Brooklyn,Bushwick,40.69247,-73.91196,Private room,46,5,1,2018-10-09,0.11,1,0 +27906833,Simple and cozy studio apartment in Williamsburg,66744930,Lana,Brooklyn,Williamsburg,40.71207,-73.95784,Entire home/apt,122,3,18,2019-06-24,1.87,1,61 +27906875,Organic Oasis Duplex (EMF-free),1358304,Karliin,Manhattan,Hell's Kitchen,40.76292,-73.99219,Entire home/apt,350,60,0,,,1,177 +27907554,Quiet and clean room in the heart of Brooklyn,39285391,Siham,Brooklyn,Bedford-Stuyvesant,40.68613,-73.92349,Private room,65,1,42,2019-05-19,3.99,2,67 +27909027,Modern Remodeled 1 bedroom Apartment,210831649,Keno,Brooklyn,Brownsville,40.66176,-73.92,Entire home/apt,176,3,0,,,1,54 +27909175,Heart of Harlem,174663454,Anthony J,Manhattan,Harlem,40.80672,-73.94993,Private room,70,1,47,2019-06-28,4.45,1,10 +27910083,"Lovely, Clean & Spacious. Your Own Woodside Room!",137358866,Kazuya,Queens,Woodside,40.74272,-73.91075,Private room,38,30,0,,,103,0 +27910119,Stylish and cozy flat in West Village with 3 beds,99683151,Christina,Manhattan,West Village,40.7334,-74.00323,Entire home/apt,180,3,21,2019-06-29,2.09,3,162 +27910595,"Cozy&Clean Suite-private entry, bedroom & bathroom",210843289,Tajudeen,Staten Island,Mariners Harbor,40.63068,-74.15521,Private room,40,2,86,2019-06-25,10.12,1,56 +27911463,"Pvt Single Bed 10 min from JFK, Close to Manhattan",23370431,Melissa,Queens,Queens Village,40.71711,-73.75608,Private room,55,2,7,2019-05-22,0.76,2,155 +27914324,"Spacious, Convenient Williamsburg Apartment",26822598,Jesus,Brooklyn,Williamsburg,40.71388,-73.94999,Private room,80,5,3,2018-09-30,0.29,1,0 +27915673,Brand New Cozy Apt Upper West Manhattan,45050275,Ada,Manhattan,Upper West Side,40.80098,-73.96025,Private room,99,1,45,2019-06-24,4.44,1,0 +27919104,Gorgeous Sun-filled Rooftop Apt in Prime Harlem,219313,Lucie,Manhattan,Harlem,40.8101,-73.94453,Entire home/apt,225,4,0,,,1,364 +27919288,Bright and cheery room in Harlem,12358203,Rachel Leigh,Manhattan,Harlem,40.82996,-73.94714,Private room,90,1,20,2019-06-01,2.05,2,6 +27920036,Penthouse 1 bedroom in LIC,32604201,Cherie,Queens,Long Island City,40.75094,-73.93806,Entire home/apt,107,3,4,2018-11-25,0.38,1,0 +27921952,Bronx Home,210916369,Lucie,Bronx,Wakefield,40.88563,-73.85975,Private room,50,2,40,2019-06-30,3.77,1,0 +27922598,Spacious Apartment in Ditmas Park,5182228,Amal,Brooklyn,Flatbush,40.64063,-73.95667,Entire home/apt,300,2,6,2018-11-25,0.58,1,0 +27922834,Brooklyn Garden Apartment,117964194,David,Brooklyn,Park Slope,40.67009,-73.98492,Entire home/apt,123,13,23,2019-06-11,2.35,1,0 +27923071,A Nice Room to Stay in the Heart of Manhattan,137358866,Kazuya,Manhattan,Harlem,40.81094,-73.94273,Private room,36,30,2,2019-06-15,0.22,103,215 +27923577,NYC HUB XL @ 900ft from subway; 30 min to Midtown,20912691,Jeff,Queens,Jamaica,40.71075,-73.7823,Entire home/apt,399,2,17,2019-07-05,2.30,7,324 +27924639,NYC Private home-1 bedroom/Private Entrance,11305944,Yahaira,Bronx,Williamsbridge,40.87135,-73.85736,Entire home/apt,145,2,5,2018-12-10,0.48,5,0 +27925378,Peaceful Studio In South Williamsburg,31296185,Mat,Brooklyn,Williamsburg,40.71286,-73.9599,Entire home/apt,140,2,4,2019-06-22,1.04,1,213 +27925678,Large cozy bedroom close to Times Square 43D4,194535003,John,Manhattan,Hell's Kitchen,40.75537,-73.995,Private room,54,30,2,2018-10-27,0.23,1,352 +27926502,Cozy Greenpoint Railroad Apartment,5649853,Flannery,Brooklyn,Greenpoint,40.73473,-73.95776,Entire home/apt,177,2,23,2019-07-01,2.28,1,214 +27926975,Artsy Harlem room with quick access to everything,149639152,Rahat,Manhattan,Harlem,40.81758,-73.94188,Private room,65,2,22,2019-06-29,2.06,1,275 +27927068,Designer Beach House Studio in Williamsburg,8171440,Geoffrey,Brooklyn,Williamsburg,40.71286,-73.95898,Entire home/apt,150,2,17,2019-05-28,1.68,1,0 +27927147,Private Room w/ Private Shower,2702372,Esther,Brooklyn,Sunset Park,40.64614,-74.0064,Private room,50,2,12,2019-06-30,1.16,1,41 +27928809,The Ultimate W-Burg Experience-Historic Building!,183400278,Jan,Brooklyn,Williamsburg,40.71153,-73.94557,Entire home/apt,104,2,5,2019-06-23,0.54,1,179 +27929173,Private room in Brooklyn(Borough park) safe area,210779293,Zsanett,Brooklyn,Borough Park,40.63592,-74.00064,Private room,54,1,46,2019-02-01,4.31,2,36 +27929288,Home Away From Home,161184313,Kristina,Brooklyn,Greenpoint,40.73029,-73.9515,Private room,74,5,1,2018-11-12,0.13,2,95 +27929389,Gracious Spacious Bushwick Loft,112545065,Diana,Brooklyn,Bushwick,40.69852,-73.92428,Private room,75,2,4,2019-05-31,1.43,2,64 +27929894,Beautiful 3 bed apt close to Central Park,3554039,Jimmy,Manhattan,Upper East Side,40.77041,-73.96109,Entire home/apt,300,2,11,2019-06-23,1.07,1,8 +27929993,*Rare Find* AMAZING Two Bed Property,138923178,Jazzy,Manhattan,Hell's Kitchen,40.76383,-73.98922,Entire home/apt,280,2,28,2019-06-02,2.83,1,147 +27930322,One private Room Harrigan Luxury Townhouse Suite,102108786,Marie,Brooklyn,East New York,40.67186,-73.88815,Private room,150,2,1,2018-09-04,0.10,2,362 +27930328,Cozy and Affordable Room in NYC,20071733,Carolina,Manhattan,East Harlem,40.79329,-73.94725,Private room,73,5,5,2018-11-24,0.47,1,0 +27930717,Charming and cozy bedroom - close to Manhattan,34817471,Maxime,Queens,Long Island City,40.7583,-73.93294,Private room,70,4,3,2018-09-24,0.29,1,0 +27931134,NEW Bohemian Brooklyn 1 Bed,210992029,Rebecca,Brooklyn,Flatbush,40.63847,-73.95693,Entire home/apt,195,2,0,,,1,30 +27933214,Beautiful Studio in Brooklyn,138086216,Eli,Brooklyn,Bergen Beach,40.62299,-73.90501,Entire home/apt,97,2,25,2019-06-30,2.68,1,148 +27933429,Cute Williamsburg studio,35335572,Caleb,Brooklyn,Williamsburg,40.71645,-73.95721,Entire home/apt,130,3,1,2019-01-01,0.16,1,2 +27933622,Room with Private Entrance in Williamsburg,192365952,Yasser,Brooklyn,Williamsburg,40.71733,-73.95811,Private room,95,1,62,2019-07-04,5.83,1,65 +27933916,Renovated Bathroom and floor with PRIVATE Backyard,204704622,Momoyo,Queens,Woodside,40.74131,-73.89774,Private room,40,28,2,2019-05-05,0.24,7,0 +27934322,5min to metro - Cozy and Bright - Shared Kitchen,154981576,Bedly Bushwick,Queens,Ridgewood,40.70117,-73.91083,Private room,38,30,3,2019-06-19,0.36,9,7 +27934546,Artist Loft Room,8252974,Florence,Brooklyn,Williamsburg,40.71229,-73.95592,Private room,70,25,3,2019-01-03,0.33,1,0 +27934562,Shared Apt w/ Young professionals - Fast WiFi,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.69985,-73.91195,Private room,38,30,0,,,9,43 +27935275,Stunning 5 BR Townhouse with Chef's Kitchen #10288,211024051,Natalie,Brooklyn,Crown Heights,40.67243,-73.94977,Entire home/apt,600,3,24,2019-07-01,2.27,1,139 +27935369,Cozy super private room in Brooklyn!,2510754,Marina,Brooklyn,Crown Heights,40.67508,-73.94242,Private room,44,5,2,2018-12-02,0.20,1,0 +27935946,Cozy room 20-101,115993835,Shimin,Brooklyn,Sunset Park,40.64021,-74.00867,Private room,29,1,18,2019-04-27,1.73,5,0 +27936288,Cute & Comfy 1 bedroom apt (Downtown NYC),211034625,Elle,Manhattan,Chinatown,40.71409,-73.99575,Entire home/apt,135,3,9,2019-04-19,0.87,1,68 +27936320,Bushwick Duplex Haven near L train,52593429,Xavier,Brooklyn,Bushwick,40.70488,-73.92521,Private room,58,2,13,2019-03-23,1.25,2,3 +27936628,Beautiful room in East Harlem!,52125790,Daniela,Manhattan,East Harlem,40.793,-73.94125,Private room,120,3,5,2019-04-28,0.47,1,0 +27936839,Big & Sunny room w/toilet in Williamsburg,1472433,Marcos,Brooklyn,Williamsburg,40.70698,-73.94295,Private room,110,1,3,2019-06-11,0.28,2,173 +27937564,Idyllic West Village Bedroom - Private Room,3571431,Julianne,Manhattan,West Village,40.73086,-74.00498,Private room,130,5,4,2019-06-05,0.41,2,117 +27938207,Private Room in Charming NYC Guest Suite (single),50756378,Nina,Staten Island,Clifton,40.61706,-74.08567,Private room,50,2,8,2019-04-28,0.77,7,37 +27939557,Private room in Charming NYC Guest Suite (Double),50756378,Nina,Staten Island,Clifton,40.61683,-74.08552,Private room,40,2,4,2019-04-13,0.39,7,37 +27939842,Shared Loft in Charming Guest Suite (Front Left),50756378,Nina,Staten Island,Clifton,40.61542,-74.08496,Shared room,95,3,0,,,7,37 +27941636,Beautiful apartment 3 subway stops from Manhattan!,211069875,Nat,Brooklyn,Borough Park,40.6428,-73.99297,Private room,70,1,0,,,1,0 +27948294,"The Elkins House – Truly Rare, Historic 5BR 3 Bath",211106440,Amber,Brooklyn,Crown Heights,40.67782,-73.94373,Entire home/apt,495,4,46,2019-06-17,4.55,1,194 +27949286,High Ceiling + Sunny Brooklyn loft experience :D!,211115242,Hardik,Queens,Ridgewood,40.7018,-73.89643,Private room,80,1,16,2018-11-23,1.54,1,0 +27949417,"Private room in TRIBECA Loft, elevator into apt!",50288091,Daniel,Manhattan,Tribeca,40.71392,-74.00754,Private room,200,2,3,2019-04-07,0.84,1,0 +27949503,PARK AVE - Easiest Apartment to Get to in NYC,52310314,Nick,Manhattan,Murray Hill,40.74775,-73.98226,Private room,89,1,13,2019-05-19,1.27,1,2 +27951070,Light-filled Brooklyn Brownstone Apartment,209237058,J.S.,Brooklyn,Bedford-Stuyvesant,40.68368,-73.92028,Private room,40,3,7,2018-10-29,0.69,1,13 +27951475,Brooklyn Apartment,168569105,Maka,Brooklyn,Bedford-Stuyvesant,40.69037,-73.92694,Private room,60,9,1,2019-04-09,0.33,1,83 +27952152,Ladies bedroom Bed 1,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69425,-73.95668,Shared room,36,1,15,2019-06-01,1.45,34,365 +27952742,TW #7 Private Rm. 2nd Fl. Full Size Bed 1 Guest,211136294,Sharon & Erika,Bronx,Schuylerville,40.83729,-73.83323,Private room,69,1,2,2019-05-10,0.19,5,330 +27952837,Huge private room in a Brooklyn Brownstone,13208084,Sheki,Brooklyn,Crown Heights,40.67818,-73.94709,Private room,45,7,1,2018-09-02,0.10,3,143 +27952988,"Light-drenched room in cozy, art-filled apartment",4441146,Michele,Brooklyn,Carroll Gardens,40.67724,-73.99797,Private room,75,1,25,2019-06-03,2.36,1,65 +27953232,PERFECT LONG TERM RENTAL~1 BR- EAST 60TH STREET,200380610,Pranjal,Manhattan,Upper East Side,40.75991,-73.96105,Entire home/apt,160,30,0,,,65,364 +27953771,Best Brooklyn location - stylish and comfortable,15102235,Lindsay,Brooklyn,Cobble Hill,40.68643,-73.9976,Entire home/apt,125,4,38,2019-07-05,3.75,2,33 +27953850,Amazing Private Room in BK,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69159,-73.9388,Private room,55,2,30,2019-06-11,2.98,3,314 +27954057,"Spanish Harlem, NYC Apartment with Roofdeck Garden",203286339,Douglas,Manhattan,East Harlem,40.7887,-73.9414,Private room,90,1,50,2019-05-18,4.84,1,0 +27954244,Chelsea renovated 2 bedroom Apartment,152129733,Marie,Manhattan,Hell's Kitchen,40.76261,-73.99143,Entire home/apt,300,3,1,2019-06-23,1,1,90 +27954369,PRIVATE 1 BED IN APT OFF PROSPECT PARK | Q & B,63480384,Jennifer,Brooklyn,Flatbush,40.6531,-73.96184,Private room,88,2,5,2019-07-01,0.53,2,86 +27955732,Ladies bedroom Bed 3,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6925,-73.95551,Shared room,36,1,16,2019-06-15,1.51,34,365 +27955820,24HR Doorman Condo&Gym 3Blocks From Time Square!!!,58905707,Greg,Manhattan,Hell's Kitchen,40.76168,-74.00079,Entire home/apt,225,2,14,2018-12-30,1.35,1,0 +27956646,"Spacious, Sunny Room in BKLYN, NYC.",11002711,Andrei,Brooklyn,Midwood,40.61349,-73.94896,Private room,79,1,6,2019-05-26,0.67,1,180 +27956689,Spacious private room in the heart of EastVillage,71149842,Yaasha,Manhattan,East Village,40.72882,-73.97807,Private room,80,1,6,2019-01-06,0.58,2,0 +27957027,Cozy Room With Access to Two Full Bathrooms,55858529,Austin,Brooklyn,Bedford-Stuyvesant,40.68465,-73.93847,Private room,39,2,62,2019-06-28,6.08,3,4 +27957371,Agate Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69448,-73.95696,Private room,43,2,20,2019-06-12,1.96,34,344 +27958130,Big beautiful room with tons of sunlight,25710035,Blaine,Brooklyn,Bushwick,40.69695,-73.92268,Private room,37,28,1,2018-10-31,0.12,1,0 +27958825,★SPRING/ SUMMER SALE ALERT★ 10 MIN TO TIMES SQUARE,208770380,William,Manhattan,Hell's Kitchen,40.76511,-73.98714,Entire home/apt,394,2,19,2019-06-01,2.19,1,68 +27959042,Top Luxury NYC EmpireSt View 3BR/2BA w/Terrace+Gym,162397867,Lea,Manhattan,Kips Bay,40.74487,-73.97608,Entire home/apt,799,5,1,2018-09-14,0.10,1,364 +27959548,"Authentic, Traditional NYC - Walk to Times Square",208918394,John,Manhattan,Hell's Kitchen,40.76543,-73.98871,Entire home/apt,499,2,28,2019-06-07,2.95,1,233 +27959826,Spacious room in Brooklyn by the subway!,79489045,ZhongJei,Brooklyn,Borough Park,40.64423,-73.99686,Private room,60,3,1,2019-06-03,0.81,1,53 +27960021,Cozy Room In Brooklyn,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68064,-73.88285,Private room,68,2,5,2019-05-19,0.49,3,365 +27961870,Fresh room w/ skyline view in heart of Bushwick,86892036,Michael,Brooklyn,Bushwick,40.70706,-73.9201,Private room,70,3,7,2019-06-11,0.68,2,11 +27961920,CORNER SUITE HIGH CELING in a Luxury Building,828519,Teresa,Manhattan,Hell's Kitchen,40.7603,-73.98822,Private room,149,5,13,2019-06-23,1.26,1,123 +27962373,Brand new independent one bedroom apartment,211205182,Chang,Queens,Flushing,40.73736,-73.80071,Entire home/apt,69,1,86,2019-06-24,8.06,1,121 +27962805,Shared Loft in Charming Guest Suite (Front Right),50756378,Nina,Staten Island,Clifton,40.61672,-74.0855,Shared room,75,2,1,2018-09-04,0.10,7,37 +27963195,"Nice, clean and large room. Peaceful place",189404055,Antonio,Queens,Long Island City,40.7544,-73.93314,Private room,95,3,25,2019-06-24,2.44,2,245 +27963404,West Village Prime Location Light and Chic,72420514,Cate,Manhattan,West Village,40.73723,-74.00845,Entire home/apt,214,1,8,2019-05-07,0.75,3,296 +27964104,Shared Loft in Charming Guest Suite (Rear),50756378,Nina,Staten Island,Clifton,40.61575,-74.08658,Shared room,75,2,0,,,7,37 +27964166,Comfortable 2 bedroom apt in Times Square 5ppl,211220478,Georgian,Manhattan,Hell's Kitchen,40.75885,-73.98996,Entire home/apt,269,1,63,2019-06-27,6.18,1,216 +27964410,Sunny Brooklyn Apartment With Private Terrace,16533479,Sam,Brooklyn,Bedford-Stuyvesant,40.69164,-73.93431,Entire home/apt,80,3,3,2018-09-25,0.29,1,105 +27965802,Cheap and Worth it!,154678310,Rafael,Queens,Elmhurst,40.74038,-73.87381,Private room,30,1,24,2019-02-02,2.32,1,0 +27966667,Comfortable Carroll Gardens 2 BR Amazing Location,211022699,David,Brooklyn,Carroll Gardens,40.6798,-73.99272,Entire home/apt,200,2,7,2019-07-06,0.90,1,45 +27967580,"Lovely Room in Sunnsyide, 15 min ride to Manhattan",137358866,Kazuya,Queens,Sunnyside,40.73759,-73.92127,Private room,39,30,3,2019-05-10,0.31,103,251 +27967600,A Nice and Warm Place to Stay in Sunnyside!,137358866,Kazuya,Queens,Sunnyside,40.73919,-73.92004,Private room,38,30,2,2019-06-23,0.21,103,233 +27967621,"Private Guest Suite Close To Ferry, Colleges, RUMC",13974626,Carrie,Staten Island,Tompkinsville,40.63482,-74.095,Entire home/apt,65,2,13,2019-06-16,2.89,1,247 +27967972,Bushwick Oasis | Gorgeous View,23884430,Yuting,Brooklyn,Bushwick,40.69431,-73.92247,Private room,70,1,68,2019-07-06,6.54,3,168 +27975725,"J- LUXURY SHARED ROOM, AC FREE WIFI+CABLE GARDEN",8814258,Nikole,Queens,South Ozone Park,40.67172,-73.79669,Shared room,30,4,4,2019-05-01,0.41,7,365 +27975978,"J- *LUXURY SHARED ROOM AC FREE WIFI CABLE, GARDEN",8814258,Nikole,Queens,South Ozone Park,40.6726,-73.79566,Shared room,31,5,1,2018-09-30,0.11,7,365 +27977824,Modern chic studio in luxury building,120237085,Camilla,Brooklyn,Bedford-Stuyvesant,40.69217,-73.95837,Entire home/apt,170,4,3,2018-12-01,0.37,1,0 +27978240,Private/Relaxing Queen PopUp bed 30min2timessqr,4290578,Noah,Manhattan,Inwood,40.86524,-73.92195,Private room,45,1,12,2019-02-08,1.37,1,0 +27978257,1BR/Studio Superb for a professional (Hidden by Airbnb) Home,28190490,H,Manhattan,Hell's Kitchen,40.75435,-73.99744,Entire home/apt,90,4,6,2019-04-07,0.56,1,3 +27982303,Isaac apartament,70007560,Juan,Manhattan,East Harlem,40.79236,-73.94689,Entire home/apt,400,1,1,2019-01-02,0.16,2,7 +27984123,The Space in Brooklyn,57484031,Frederick,Brooklyn,Crown Heights,40.66472,-73.92871,Private room,250,1,0,,,1,0 +27985235,Large Lux Apt with Amazing NYC Views - Location!,128447,Raul,Manhattan,Kips Bay,40.74371,-73.97946,Entire home/apt,200,3,3,2019-01-01,0.28,2,13 +27986129,Times Square Apartment,6116657,Will,Manhattan,Hell's Kitchen,40.76228,-73.99027,Entire home/apt,199,3,25,2019-07-01,2.48,1,30 +27987084,"Free Cleaning & WiFi, Young Professional Roommates",155297713,Marie & Tyler,Brooklyn,Bushwick,40.70466,-73.92553,Private room,35,30,1,2018-10-31,0.12,3,4 +27987152,"Comfort Beds 4 mins to 2,5,3 4,trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65562,-73.93952,Private room,60,3,3,2019-05-05,0.29,5,90 +27987391,"30+ Day Stay-2000 sq ft Guest House, Deck, Rooftop",137522531,Ali,Queens,Flushing,40.757,-73.80927,Entire home/apt,499,6,0,,,7,363 +27987939,"Spacious, Private LIC Studio 2 Blocks to Train!",5340329,Cassidy,Queens,Sunnyside,40.74375,-73.91563,Entire home/apt,118,2,0,,,2,0 +27988211,Welcome Home To Ridgewood!,138203985,Alejandro,Queens,Ridgewood,40.70724,-73.91268,Entire home/apt,195,1,94,2019-07-07,8.84,1,0 +27988835,Huge West Village Loft in Luxury Building,3330784,Dylan,Manhattan,West Village,40.73241,-74.00722,Entire home/apt,180,6,2,2018-12-30,0.20,1,0 +27988990,"352 Prospect pl, 1st floor",211393353,Allam,Brooklyn,Prospect Heights,40.67769,-73.96548,Entire home/apt,150,15,2,2018-11-03,0.24,1,57 +27989656,Modern Luxury Studio in Heart of Astoria,3221735,Roger,Queens,Astoria,40.76836,-73.91405,Entire home/apt,115,5,28,2019-06-29,2.75,1,38 +27989719,Private Room in Prospect Place,38886949,Nishant,Brooklyn,Prospect Heights,40.67893,-73.97113,Private room,250,16,0,,,2,89 +27989781,Charming room in upper Manhattan,12358203,Rachel Leigh,Manhattan,Harlem,40.82867,-73.94561,Private room,80,1,28,2019-06-27,2.78,2,5 +27991020,Prospect Suite,23388169,Jessica,Brooklyn,Prospect Heights,40.67752,-73.96977,Private room,200,2,16,2019-06-04,1.62,2,357 +27992581,New Large Luxury Residence in Manhattan,16223929,Justin,Manhattan,Hell's Kitchen,40.75525,-73.99597,Entire home/apt,639,3,4,2019-03-26,0.38,1,108 +27993571,QUIET MASTER BEDROOM,1100212,Maria C.,Brooklyn,Bushwick,40.68636,-73.91331,Private room,150,3,1,2018-09-11,0.10,1,26 +27993666,Sunny room in Park Slope with air mattress,50407407,Nicole,Brooklyn,Park Slope,40.6715,-73.98451,Private room,70,1,1,2018-09-15,0.10,1,0 +28001559,Sunnyside's beauty,131379802,Sammy,Queens,Sunnyside,40.7441,-73.92153,Entire home/apt,115,2,31,2019-06-25,3.31,1,169 +28001862,Garden Oasis,8056254,Lou,Manhattan,East Village,40.72795,-73.97768,Entire home/apt,225,2,2,2019-01-02,0.22,1,0 +28002057,Amazing Large Sunny Studio in Greenwich Village,46160710,Shaun,Manhattan,West Village,40.73765,-74.00157,Entire home/apt,140,30,11,2019-06-26,1.24,1,6 +28002981,Beautiful Historic Home in Brooklyn,8792814,Caroline,Brooklyn,Prospect-Lefferts Gardens,40.66318,-73.95372,Entire home/apt,200,1,2,2018-10-02,0.21,10,220 +28004429,Ideal New York Apartment,57287101,Stephanie,Manhattan,East Village,40.7249,-73.98026,Entire home/apt,250,2,5,2019-06-11,0.48,1,0 +28005241,Cozy flat with back Patio,27261471,Philmore,Brooklyn,Canarsie,40.64693,-73.89537,Entire home/apt,119,5,0,,,2,220 +28007178,"Spread Love, It's the Brooklyn Way!",18090278,Taitu,Brooklyn,Midwood,40.61559,-73.9496,Entire home/apt,125,2,1,2019-01-01,0.16,1,55 +28008005,Spacious Room in Murray Hill,211535073,Piyush,Manhattan,Kips Bay,40.74336,-73.97628,Private room,150,20,1,2018-09-28,0.11,1,0 +28008714,Spacious Deco Apt.- Columbus Circle,76862848,Alexis,Manhattan,Hell's Kitchen,40.76708,-73.98295,Private room,270,6,4,2019-01-01,0.45,1,365 +28009721,"Upper Manhattan room like a studio ""White room""",51992385,Maribel,Manhattan,Washington Heights,40.84536,-73.93564,Private room,72,6,5,2019-06-09,0.53,1,361 +28010779,Luxury apartment close to Empire State Building,46842591,Panos,Manhattan,Midtown,40.74404,-73.98263,Entire home/apt,250,5,5,2018-12-09,0.51,2,179 +28010820,Bedroom on UES,2878510,Ahmet,Manhattan,Upper East Side,40.77353,-73.95357,Private room,100,3,10,2019-06-09,0.99,1,14 +28011594,Large Bedroom Steps from Subway (Ground Flr Room),29582232,Lee And Teri,Brooklyn,Flatbush,40.64184,-73.9642,Private room,68,2,42,2019-06-08,3.96,5,47 +28011745,Huge 1 bedroom in Williamsburg for Travelers,5640444,Philip,Brooklyn,Williamsburg,40.71012,-73.9595,Entire home/apt,200,5,5,2019-05-30,0.49,1,35 +28011840,Beautiful 2 Bedroom Apartment Near LGA and City,70774951,Farhan,Queens,East Elmhurst,40.76708,-73.8795,Entire home/apt,129,1,52,2019-06-21,4.92,3,296 +28012031,A Charming Hideout for a perfect weekend,178499417,Vanessa,Brooklyn,East Flatbush,40.64557,-73.94684,Entire home/apt,80,1,14,2019-02-24,1.49,1,0 +28012942,"Clean, Modern Studio. First floor access! #10292",211385563,Jason,Manhattan,Upper East Side,40.77936,-73.9518,Entire home/apt,175,2,41,2019-06-28,4.16,1,247 +28012966,A cozy quiet 1-bedroom with a balcony in Astoria,1636092,Igor,Queens,Astoria,40.76255,-73.91934,Entire home/apt,160,6,2,2018-11-21,0.19,1,19 +28013709,Your Home Next to the Empire State Building,33245632,Tassie,Manhattan,Murray Hill,40.74628,-73.97899,Entire home/apt,460,2,11,2019-06-30,1.07,1,27 +28014073,Heights,9130040,Candace,Brooklyn,East Flatbush,40.66184,-73.93436,Private room,89,1,2,2019-05-19,0.22,6,365 +28014366,"Private, spacious home in Central Brooklyn!",37697640,Sarah,Brooklyn,Crown Heights,40.67672,-73.94934,Entire home/apt,99,2,3,2018-12-28,0.30,1,0 +28014495,Modern Sunlit Brooklyn Apartment,111284635,Kevin,Brooklyn,Bedford-Stuyvesant,40.67856,-73.94483,Private room,55,2,11,2019-05-05,1.15,1,4 +28014733,Warm & Cozy Room in Sunnyside. Awesome Location!,137358866,Kazuya,Queens,Sunnyside,40.73703,-73.92179,Private room,38,30,0,,,103,245 +28014842,1BR Central park apartment with lots of sunshine!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94421,Entire home/apt,76,30,3,2019-03-31,0.36,103,219 +28015516,Fanta Sea Home 3,131777975,Jewell,Brooklyn,Brownsville,40.66339,-73.91671,Private room,50,4,5,2019-06-10,0.52,3,365 +28016217,Mercedes-Benz Home | Dinner for 50+ | Private Chef,4740447,5 Star Stays,Brooklyn,Prospect-Lefferts Gardens,40.66178,-73.9505,Entire home/apt,175,1,76,2019-07-07,8.29,1,321 +28020352,Rare Downtown First Floor Apt w Private Backyard,16714191,Nicolas,Manhattan,Gramercy,40.7358,-73.9806,Entire home/apt,160,3,6,2019-05-28,0.69,1,351 +28021392,Queens Jazz Home (JW),211212649,Kyle,Queens,St. Albans,40.69548,-73.77436,Private room,65,2,1,2018-12-31,0.16,1,0 +28025050,Comfortable New York City Apartment,826553,Mira,Manhattan,Washington Heights,40.85461,-73.92668,Entire home/apt,80,4,6,2019-06-19,0.59,1,56 +28025630,Central Park master room with private bathroom.,211678783,Judy,Manhattan,East Harlem,40.78807,-73.93988,Private room,99,1,20,2019-06-02,2.03,1,0 +28026246,Beautiful 4BDR Unit @Greenpoint 2stop to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.72625,-73.95578,Entire home/apt,480,1,11,2019-06-12,1.30,4,63 +28028868,Private Bedroom B in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.68993,-73.91139,Private room,60,2,32,2019-06-17,3.10,3,78 +28029439,Beautiful Bedroom in Brooklyn Apt,92237522,Amaru,Brooklyn,Flatbush,40.63621,-73.95252,Private room,35,3,17,2019-06-29,1.62,2,59 +28030557,Cozy 2 bedroom NYC apartment near LGA Airport,151520943,Kenny,Queens,East Elmhurst,40.76248,-73.86986,Private room,110,1,52,2019-03-30,4.92,1,365 +28030637,Bedroom in a charming apartment near Prospect Park,8539550,Gabrielle,Brooklyn,Kensington,40.64349,-73.9738,Private room,60,3,20,2019-06-30,1.91,1,62 +28031322,"Staten Island Gem, 4 bedroom duplex in St. George",196770644,Rafael,Staten Island,Stapleton,40.63556,-74.07623,Entire home/apt,150,2,27,2019-07-01,2.74,1,259 +28031581,Entire House For Rent In Brooklyn NY.,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60766,-73.95384,Entire home/apt,350,1,23,2019-06-25,2.88,8,334 +28031654,Private Room in Luxury BK Apartment,156958091,Mayda,Brooklyn,Bushwick,40.6932,-73.90639,Private room,65,1,26,2019-05-23,2.52,3,0 +28031717,"Artist retreat in East Williamsburg, Brooklyn",2478763,Gonzalo,Brooklyn,Williamsburg,40.71594,-73.94113,Entire home/apt,298,2,2,2019-01-01,0.20,1,74 +28032779,The Sweet Suite,32092125,Christine,Queens,Springfield Gardens,40.66207,-73.74986,Entire home/apt,101,1,32,2019-06-24,4.40,1,135 +28033675,"Convenient, shared-studio in LIC/Sunnyside",5340329,Cassidy,Queens,Sunnyside,40.74342,-73.91538,Shared room,72,2,0,,,2,0 +28033814,Large bright bedroom near Bushwick,199203455,Kendra,Queens,Ridgewood,40.70476,-73.91111,Private room,75,1,3,2018-09-08,0.29,1,0 +28035852,Urban Oasis,211124733,Murtland,Queens,Jamaica,40.67091,-73.78204,Entire home/apt,165,3,24,2019-06-17,2.32,1,51 +28039292,My wife is not used to the noisy environment. How,5687436,Jane,Manhattan,Financial District,40.70535,-74.01277,Entire home/apt,200,1,0,,,1,0 +28041818,Bedroom Two in Private House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.67296,-73.79658,Private room,80,1,75,2019-07-05,9.34,3,57 +28042014,Bedroom One In Private House Near JFK Airport,206714649,Cando,Queens,South Ozone Park,40.6718,-73.79719,Private room,80,1,66,2019-07-02,7.56,3,48 +28042536,Sunny&Quiet 1 Bed APT in central Greenwich Village,198610122,Christina,Manhattan,West Village,40.73011,-74.00198,Entire home/apt,170,2,6,2019-07-07,0.59,1,0 +28042839,"7BR, 4 Full Bath Duplex with Washer & Dryer",210970608,Lucy,Brooklyn,Crown Heights,40.66996,-73.94836,Entire home/apt,530,3,8,2019-05-20,0.90,5,249 +28043195,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE CABLE WIFI,8814258,Nikole,Queens,South Ozone Park,40.67324,-73.7957,Shared room,34,5,2,2019-02-23,0.23,7,365 +28043390,Sunny room in Manhattan ☀️,88827816,Ziva,Manhattan,Upper East Side,40.76325,-73.95893,Private room,99,11,0,,,1,365 +28044146,J- **LUXURY SHARED ROOM 2PPL FREE WIFI+CABLE+AC,8814258,Nikole,Queens,South Ozone Park,40.67286,-73.79666,Shared room,29,5,1,2018-09-14,0.10,7,365 +28044485,Chic sun-filled dream home in East Village,211836350,Jt,Manhattan,East Village,40.72744,-73.9831,Entire home/apt,209,3,4,2019-06-16,0.58,1,83 +28045230,Central Park Getaway,133792790,Annie,Manhattan,Upper West Side,40.77727,-73.9795,Entire home/apt,300,1,76,2019-06-22,8.29,1,239 +28045724,Heart of Bushwick! Women only,9594567,Clarissa,Brooklyn,Bushwick,40.70463,-73.92026,Private room,50,5,1,2018-09-04,0.10,1,0 +28046097,Cozy Room in East Williamsburg Apartment,37243605,Amy,Brooklyn,Williamsburg,40.71311,-73.94036,Private room,65,2,1,2019-06-30,1,1,303 +28046416,Private Bedroom with queen sized bed,193502084,Linda,Brooklyn,Borough Park,40.63989,-74.00321,Private room,45,1,7,2019-02-16,0.68,8,0 +28046788,Spacious bronx room for 1,211321817,Alexander,Bronx,Eastchester,40.88271,-73.83217,Private room,50,1,0,,,1,88 +28046851,Bellrose Home - 15 minutes from both NYC airports,211860521,Tamara,Queens,Bellerose,40.72908,-73.72778,Private room,105,3,7,2019-05-31,0.76,2,343 +28047011,"Huge room in great area, 25 minutes from Manhattan",70260514,Daphna,Queens,Woodside,40.74588,-73.89721,Private room,45,4,4,2018-12-14,0.43,1,0 +28047046,West Village Mid Century Studio Perfect for Two,16204937,Jose,Manhattan,West Village,40.73861,-74.00467,Entire home/apt,215,3,7,2018-11-24,0.68,1,0 +28047666,LaGuardia Private 3 Bedrooms Appartment for 6 Pax,10229087,Kais,Queens,Ditmars Steinway,40.77224,-73.89295,Private room,220,1,5,2019-06-08,0.61,4,346 +28049316,CUTE APARTMENT WALKING DISTANCE TO NYC BEST SPOTS,176290998,Leah,Manhattan,Hell's Kitchen,40.75622,-73.99405,Private room,100,1,12,2019-05-06,1.19,1,89 +28049432,Roomy and Relaxing Brooklyn Apartment,144687306,Nutrice,Brooklyn,Prospect-Lefferts Gardens,40.6556,-73.95286,Entire home/apt,120,2,51,2019-07-06,4.94,2,232 +28049456,Best of Williamsburg,8179150,Michael,Brooklyn,Williamsburg,40.71119,-73.94349,Private room,90,31,0,,,1,0 +28050441,"Industrial Chic, Owners Suite",211893857,Vaughn,Brooklyn,East Flatbush,40.65943,-73.91939,Entire home/apt,110,2,45,2019-07-03,5.27,1,2 +28050532,"Private Apartment: Brooklyn, NYC 40 Min to City",211895243,Lili,Brooklyn,Midwood,40.62588,-73.96396,Entire home/apt,97,2,26,2019-06-24,2.57,2,81 +28050688,Exposed Brick Bushwick Bedroom,45000778,Jordan,Brooklyn,Williamsburg,40.70612,-73.92725,Private room,75,2,6,2019-05-19,0.61,1,0 +28050972,Luxury 1BR 2 bed; no cleanup fee; fast response!,29964121,Ricky,Manhattan,Financial District,40.70402,-74.00964,Private room,150,1,17,2019-06-25,1.63,1,362 +28051505,Very large room near CUMC,176591085,Mike,Manhattan,Washington Heights,40.84519,-73.941,Private room,50,1,3,2019-06-20,1.36,4,270 +28052106,Small room near Columbia Uni med,176591085,Mike,Manhattan,Washington Heights,40.84521,-73.9416,Private room,47,1,3,2019-05-22,1.67,4,90 +28052259,Manhattan Townhouse,76350146,David,Manhattan,Kips Bay,40.74123,-73.97559,Private room,150,2,17,2019-07-01,1.95,1,0 +28052281,Private Room in a Bushwick Retreat,150578564,Morgan,Brooklyn,Bushwick,40.69938,-73.93342,Private room,75,1,75,2019-07-01,7.28,1,64 +28053065,Astoria Room,211682646,Martin & Soledad,Queens,Astoria,40.77194,-73.92985,Private room,58,1,41,2019-07-01,3.97,1,156 +28053907,Sunny apartment in historic tenement building,10043726,Giraud,Manhattan,Lower East Side,40.71823,-73.98537,Entire home/apt,150,5,20,2019-06-30,2.01,1,26 +28053933,"Comfy, Convenient, & Private Rm In Manhattan NYC",126155532,Seyoum,Manhattan,Washington Heights,40.85053,-73.93027,Private room,70,2,28,2019-06-30,2.80,1,123 +28054212,Brooklyn Serene Bedrooms,18753186,Florence,Brooklyn,Gowanus,40.68255,-73.98911,Entire home/apt,150,5,25,2019-06-30,2.43,2,54 +28054489,Creative open floor studio,42623736,Ashley,Brooklyn,Bedford-Stuyvesant,40.68476,-73.9548,Entire home/apt,130,3,2,2019-01-14,0.28,1,0 +28054901,Cozy and affordable,29953329,Yulia,Brooklyn,Bedford-Stuyvesant,40.69371,-73.94449,Private room,53,4,52,2019-06-25,6.50,2,1 +28054965,Crown Heights Gem Easy Access to ALL,52675311,Deloris,Brooklyn,Crown Heights,40.66818,-73.95529,Entire home/apt,200,2,13,2019-06-23,1.26,1,89 +28055277,"Home away from home +& (QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94391,Private room,35,1,27,2019-06-22,2.58,2,338 +28057020,Big Apt in Luxury High Rise Building - Location!,128447,Raul,Manhattan,Kips Bay,40.74365,-73.97928,Entire home/apt,220,3,0,,,2,24 +28057180,"New 4BR, 2Full Bath with Washer & Dryer",210970608,Lucy,Brooklyn,Crown Heights,40.6697,-73.94919,Entire home/apt,285,3,13,2019-06-16,1.26,5,275 +28057894,Renovated 3BR 2 Full Bath with Washer & Dryer,210970608,Lucy,Brooklyn,Crown Heights,40.66977,-73.9489,Entire home/apt,245,3,5,2019-05-30,0.48,5,278 +28068963,❤️❤️NEW 2 level home 15min to the Beach ⚓ BOOK NOW,129222253,Andy,Bronx,Williamsbridge,40.87675,-73.86372,Entire home/apt,280,2,32,2019-07-03,3.09,3,344 +28069265,Skylit Private Bedroom for LGA & JFK layovers,190096034,Janet,Queens,Corona,40.74454,-73.8592,Private room,60,1,74,2019-07-07,7.21,3,66 +28071460,Beautiful apartment in Greenpoint,9609022,Emilie,Brooklyn,Greenpoint,40.72113,-73.95279,Entire home/apt,98,8,1,2018-08-29,0.10,1,0 +28071998,Cozy room in a three-bedroom House,47516406,Arthur,Queens,Woodhaven,40.69139,-73.86086,Private room,10,7,4,2018-10-08,0.41,2,180 +28073668,Cozy Studio Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74769,-73.9885,Entire home/apt,200,2,13,2019-06-18,1.38,13,358 +28073918,"SUNNY PRIVATE BEDROOM IN WILLIAMSBURG, BROOKLYN!",51022084,Tony,Brooklyn,Williamsburg,40.71216,-73.95968,Private room,75,4,3,2019-05-28,0.30,1,29 +28074191,"Bright Room, Vibrant Area, 2 Blocks From Train",71177383,Chris,Brooklyn,Bushwick,40.70028,-73.93928,Private room,78,2,18,2019-07-02,1.80,2,266 +28075473,Sophisticated 1BR in Sutton Place by Sonder,12243051,Sonder,Manhattan,Midtown,40.75522,-73.96444,Entire home/apt,239,29,0,,,96,189 +28075828,Private room + office in designer luxury penthouse,117354500,Charles,Manhattan,Flatiron District,40.73928,-73.98583,Private room,590,2,6,2018-12-02,0.60,1,125 +28076377,"Bushwick Brownstone, Long-Term Stay",87767243,David,Brooklyn,Bedford-Stuyvesant,40.68252,-73.91467,Private room,41,4,0,,,2,0 +28076544,Brooklyn Artist/Designer/Photographer Loft,1494472,Shandor,Brooklyn,Fort Greene,40.69694,-73.97493,Entire home/apt,145,30,1,2018-10-13,0.11,2,177 +28078309,*BEST DEAL*FURNISHED RM NEAR EMPIRE STATE BLDG*,200730049,Maria Luisa,Manhattan,Midtown,40.74517,-73.98924,Private room,65,30,0,,,1,363 +28078505,New york Multi-unit building,122849679,Maria,Brooklyn,Sheepshead Bay,40.59085,-73.95405,Private room,70,1,2,2018-11-03,0.20,1,0 +28079070,Private Room in the heart of Manhattan,212112060,Elisabeth,Manhattan,Upper West Side,40.78089,-73.98406,Private room,135,1,8,2018-12-16,0.93,1,197 +28079986,Brooklyn Prospect Park Parade Ground Standard,202837291,Sarahya,Brooklyn,Flatbush,40.64668,-73.9642,Private room,65,1,20,2019-06-22,2.09,2,164 +28081396,Beautiful Spacious Shared Queens Apartment.,210179412,Joshua,Queens,Springfield Gardens,40.66684,-73.76645,Shared room,120,1,16,2019-06-23,1.62,1,14 +28081740,Classic and Charming Upper West Side NYC Apt,7341856,Lenore,Manhattan,Upper West Side,40.78162,-73.9753,Entire home/apt,175,1,1,2018-09-02,0.10,1,195 +28081782,Private room w/attached bath in hot of Flushing,205745676,Liqin,Queens,Flushing,40.75806,-73.82005,Private room,85,1,24,2019-06-16,2.31,9,341 +28081940,Large Private Bedroom 15 mins from Central Park,48898267,Julien,Manhattan,Harlem,40.81695,-73.94335,Private room,79,2,3,2018-11-11,0.29,1,0 +28082095,The BEST of SoBro,135412962,Charlie,Bronx,Mott Haven,40.80769,-73.91617,Entire home/apt,130,1,38,2019-06-30,3.68,1,349 +28083637,Brooklyn Prospect Park South Master Suite,202837291,Sarahya,Brooklyn,Flatbush,40.64543,-73.96457,Private room,80,1,18,2019-06-22,1.83,2,78 +28083998,Private Room Family & Friendly,210297251,Grisel,Brooklyn,Crown Heights,40.67718,-73.95852,Private room,70,2,1,2018-09-14,0.10,1,0 +28084157,Couple room w/attached bath. In heart of Flushing,205745676,Liqin,Queens,Flushing,40.75746,-73.82013,Private room,89,1,28,2019-07-07,2.78,9,346 +28084536,Casa familiar,212157854,Camilo,Bronx,Concourse,40.83703,-73.91643,Private room,40,2,32,2019-06-29,3.08,2,132 +28085491,1 Bedroom in NYC's Lower East Side! | Chinatown,50250626,Greg,Manhattan,Lower East Side,40.71882,-73.98554,Entire home/apt,185,1,52,2019-07-04,5.20,1,162 +28087456,ROYAL QUEENS ASTORIA,45404805,Bianca,Queens,Astoria,40.769,-73.93284,Private room,120,5,2,2018-10-12,0.21,2,90 +28089652,Boho-Chic sleeps 4 TOP FLOOR penthouse prime WBURG,23156390,Emily,Brooklyn,Williamsburg,40.71227,-73.957,Entire home/apt,122,30,5,2019-07-02,0.76,1,152 +28094626,"Large and clean room with a king size bed,",189404055,Antonio,Queens,Long Island City,40.75487,-73.93105,Private room,55,1,11,2019-07-01,2.16,2,281 +28095496,"Roomy FiDi 1BR w/ Gym, Roof deck + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70427,-74.00964,Entire home/apt,285,30,1,2018-11-03,0.12,232,324 +28096650,Small Bedroom in Beautiful Duplex,212232139,Andrea,Brooklyn,Bedford-Stuyvesant,40.67812,-73.9168,Private room,30,3,7,2019-06-27,0.68,1,2 +28097610,relaxing bed and breakfast feel apartment.,84366617,Kathy,Brooklyn,Gravesend,40.58771,-73.966,Entire home/apt,80,2,1,2019-06-23,1,2,229 +28100131,When modern renovation meets prewar details,212262028,R R,Brooklyn,Fort Greene,40.69032,-73.97678,Entire home/apt,335,3,16,2019-06-23,1.67,2,81 +28100333,Respectful Beautiful Harlem Room,212263525,SamariSankofa,Manhattan,Harlem,40.81047,-73.94042,Private room,848,1,19,2019-05-26,1.89,3,355 +28100624,Brooklyn Apartment,82490186,James,Brooklyn,Bushwick,40.70156,-73.91329,Private room,75,1,14,2019-05-28,1.44,1,48 +28100877,Queens Apartment downtown flushing,203986261,Ajay,Queens,Flushing,40.75831,-73.82776,Private room,55,1,37,2019-06-21,3.58,1,142 +28101132,1.5 Brooklyn Apartment w/ Private Backyard,44174247,Chloe,Brooklyn,Clinton Hill,40.69343,-73.96387,Entire home/apt,119,1,3,2018-10-09,0.30,1,0 +28101217,Cozy Bushwick apartment with backyard!,74305569,Nicole,Brooklyn,Bushwick,40.69552,-73.92341,Entire home/apt,143,2,3,2018-10-14,0.29,2,0 +28101280,Comfy and cute UWS bedroom,81711191,Enrique,Manhattan,Upper West Side,40.80313,-73.96745,Private room,80,3,1,2018-12-31,0.16,1,3 +28101762,Beautiful Brown stone in Central Park West,213020,Robert,Manhattan,Upper West Side,40.78786,-73.96837,Entire home/apt,175,2,39,2019-07-02,4.08,3,142 +28101852,Hip Apartment in Brooklyn w/ lots of amenities,212274985,Sam,Brooklyn,Bedford-Stuyvesant,40.67765,-73.92345,Entire home/apt,150,2,17,2019-06-24,1.73,1,11 +28101926,Resort style living. Ferry to city 5 min walk.,67048974,Jonathan,Bronx,Clason Point,40.80644,-73.8518,Private room,48,2,33,2019-06-22,3.21,1,47 +28104307,Sonder | Madison Ave | Cozy 1BR + Gym,12243051,Sonder,Manhattan,Midtown,40.7468,-73.98329,Entire home/apt,239,29,0,,,96,333 +28104895,Cozy Chelsea Downtown Studio w/ Private Backyard,51289216,Carrie,Manhattan,Chelsea,40.74363,-74.0022,Entire home/apt,167,2,60,2019-06-30,5.75,1,164 +28105301,Sonder | 180 Water | Beautiful Studio + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70619,-74.0064,Entire home/apt,169,29,1,2019-05-18,0.58,96,214 +28105430,Bright Spacious Apt [20 mins - Manhattan],48167507,Kalaya'An,Queens,Jackson Heights,40.74691,-73.89193,Private room,86,2,3,2018-10-02,0.29,1,88 +28105759,Spacious One-Bedroom apartment - Manhattan,212306955,Axelle,Manhattan,Washington Heights,40.85508,-73.92779,Entire home/apt,110,2,9,2019-07-07,0.96,1,157 +28107104,SPACIOUS AND PRIVATE BEDROOM NEW YORK,36966743,Samuel,Queens,Jackson Heights,40.75061,-73.89364,Private room,55,1,50,2019-06-24,4.81,1,1 +28107465,Cozy apt. with private room on UWS. Low price!,4536328,Ram Anthonie,Manhattan,Upper West Side,40.79918,-73.9622,Private room,85,1,25,2019-03-21,2.60,1,0 +28108863,Beautiful & Central Manhattan 1 Bedroom Apt,28135147,V,Manhattan,Harlem,40.80375,-73.95501,Entire home/apt,200,2,20,2019-06-23,2.02,1,11 +28108959,Sunny Prospect Park Studio,2153064,Justin,Brooklyn,Prospect-Lefferts Gardens,40.66021,-73.95982,Entire home/apt,100,3,18,2019-06-20,1.74,1,0 +28109059,Private Room in Prime Crown Heights Location!,103411445,Nina,Brooklyn,Crown Heights,40.67613,-73.94578,Private room,59,2,25,2019-06-25,3.07,1,60 +28111213,Luxurious+spacious room 10 mins from UES,20359104,Pm,Bronx,Mott Haven,40.8106,-73.91667,Private room,68,1,16,2019-05-26,1.55,1,347 +28121200,靠近机场交通购物两便利房间#1,156547988,Minying,Queens,Ozone Park,40.67807,-73.8486,Private room,65,1,6,2019-01-02,0.61,4,335 +28121527,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,212417594,Hugo,Brooklyn,Williamsburg,40.70952,-73.96267,Entire home/apt,380,7,1,2018-09-28,0.11,1,0 +28121788,Beautiful & Bright One-Bedroom in Hells Kitchen,1680013,Michael,Manhattan,Hell's Kitchen,40.76596,-73.98846,Entire home/apt,165,7,5,2019-04-19,0.53,1,0 +28123708,"Large, Fully Furnished, Quiet 1 Bedroom Apt.",13562603,Rebecca,Brooklyn,Flatbush,40.64831,-73.95788,Entire home/apt,80,90,0,,,1,95 +28123818,KING Room w Private Entrance - Times Square,42998647,Prav,Manhattan,Hell's Kitchen,40.75759,-73.99006,Private room,45,3,72,2019-06-23,6.99,3,86 +28125509,Private bed/ bath in classic Upper West Side apt.,191106696,Jeff,Manhattan,Upper West Side,40.79103,-73.97632,Private room,79,1,59,2019-07-04,5.75,1,61 +28126530,Sonder | 21 Chelsea | Desirable 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.741,-73.99456,Entire home/apt,244,29,1,2019-03-31,0.30,96,240 +28126994,Sonder | 180 Water | Sophisticated 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70611,-74.00626,Entire home/apt,299,29,0,,,96,311 +28127009,Ruby Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69406,-73.95665,Private room,65,2,22,2019-06-16,2.16,34,288 +28127032,Sonder | 180 Water | Airy 2BR + Rooftop,12243051,Sonder,Manhattan,Financial District,40.70798,-74.00591,Entire home/apt,299,29,0,,,96,189 +28127126,Chez Jesse Vacation Spot,3191371,Jesse,Manhattan,East Harlem,40.80656,-73.93709,Private room,80,2,1,2019-07-01,1,3,181 +28128130,Astoria Cozy 2 Bedrooms Apartment,83342221,Edgard,Queens,Astoria,40.76317,-73.91124,Entire home/apt,200,5,1,2018-09-30,0.11,1,0 +28128149,LUXURY 1 BR ON WEST 48TH ST-POOL/GYM/CLUB HOUSE,200380610,Pranjal,Manhattan,Theater District,40.76106,-73.98574,Entire home/apt,410,30,0,,,65,365 +28128620,Room in Brooklyn,4463170,Yordanos,Brooklyn,Bushwick,40.69748,-73.92319,Private room,37,2,2,2018-09-10,0.19,1,0 +28129212,Intimate SIngle Room in Bushwick!,212071658,Brian,Brooklyn,Bushwick,40.6914,-73.90388,Private room,40,2,21,2019-06-11,2.08,5,343 +28129366,Spacious 1 bedroom apartment in HEART of Manhattan,14012333,Chris,Manhattan,Murray Hill,40.74657,-73.97539,Entire home/apt,280,2,10,2019-06-29,1.06,1,70 +28129565,Fun Leffert's Gardens Suite,212473045,Jonathan,Brooklyn,Prospect-Lefferts Gardens,40.66068,-73.9504,Private room,99,1,31,2019-05-09,3.06,1,0 +28129668,Stunning Brand New Apartment 35m to NYC!!!,303926,Kay,Brooklyn,Cypress Hills,40.68287,-73.88578,Entire home/apt,160,2,3,2019-04-21,0.29,2,167 +28129744,Brooklyn Apartment,212472679,Tyson,Brooklyn,Williamsburg,40.71201,-73.94474,Entire home/apt,275,3,1,2018-10-08,0.11,1,0 +28129768,Cozy private room,10009047,Alexandra,Queens,Astoria,40.76605,-73.908,Private room,65,3,15,2019-04-10,1.51,1,0 +28130741,"Renovated, Stylish Apt! Next to Prospect Park",6109032,Claire,Brooklyn,Prospect-Lefferts Gardens,40.66159,-73.95921,Entire home/apt,104,3,11,2019-03-25,1.05,1,0 +28131065,"Beautiful Basement Apt in Fresh Meadows, Queens",86622957,Gail,Queens,Fresh Meadows,40.72717,-73.79055,Entire home/apt,60,1,45,2019-06-20,4.98,1,42 +28131994,Cozy Convenient Brooklyn One Bedroom,80788474,Ambre,Brooklyn,Bedford-Stuyvesant,40.68195,-73.95328,Entire home/apt,165,3,0,,,2,83 +28133007,Cozy 1 BDRM in Union Square,66744439,Sara,Manhattan,Chelsea,40.73642,-73.9924,Entire home/apt,200,1,0,,,1,0 +28133736,Luxury Manhattan Loft w Huge Private Back Yard,118908092,Selma,Manhattan,Gramercy,40.73449,-73.98473,Entire home/apt,250,1,28,2019-06-27,2.75,1,25 +28133769,Cozy 1st fl spacious bdrm in 3 bdrm New York Apt,120974332,Jessi,Manhattan,East Harlem,40.79726,-73.93164,Private room,66,2,23,2019-06-19,2.23,2,5 +28133914,Private bedroom in Brooklyn apartment,137562994,Danila,Brooklyn,Bedford-Stuyvesant,40.6814,-73.94975,Private room,85,2,15,2019-07-07,1.45,1,257 +28134807,"Girls House - ""Dandelion"" Single Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68276,-73.8708,Shared room,25,4,19,2019-06-26,1.91,6,16 +28135177,West Village Dream - sunny bedroom,22508819,Camille,Manhattan,West Village,40.73039,-74.00208,Private room,140,5,4,2019-05-13,0.39,1,0 +28135693,"Girls House - ""Azalea"" Loft Upper Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68385,-73.87088,Shared room,25,1,26,2019-06-30,2.57,6,23 +28135901,1br apt in Ditmars/Astoria,9813962,Andi,Queens,Ditmars Steinway,40.7787,-73.9093,Entire home/apt,100,4,2,2018-09-09,0.19,1,26 +28135996,APARTAMENTO EN JACKSON HGTS,212526912,Martha Liliana,Queens,East Elmhurst,40.75727,-73.88346,Private room,75,2,1,2018-09-23,0.10,2,363 +28136026,"Girls House - ""Bauhinia"" Lower Bed 紐約民宿",101491116,Tong,Brooklyn,Cypress Hills,40.68217,-73.8723,Shared room,25,1,25,2019-06-19,2.52,6,2 +28136160,Manhattan theater district,17101801,Marina,Manhattan,Hell's Kitchen,40.75819,-73.99347,Entire home/apt,150,29,3,2019-05-23,0.37,1,287 +28136772,Cozy Room on the Upper East Side,108576923,Margaret,Manhattan,Upper East Side,40.77006,-73.95589,Private room,150,1,0,,,1,177 +28136987,ParkView Modern Design New 4 Bedrooms Apartment,127571361,Wendy,Brooklyn,Bay Ridge,40.63939,-74.03028,Entire home/apt,134,2,35,2019-06-21,3.40,1,34 +28137157,"Laurelton, Queens, NYC (3min-JFK; Seconds-LIRR)",157393936,Apostle John,Queens,Springfield Gardens,40.66959,-73.75246,Private room,100,5,1,2018-09-13,0.10,2,365 +28137345,Just 10 minutes from Manhattan (S ),43930499,Katherine,Queens,Elmhurst,40.74356,-73.88813,Private room,140,1,4,2019-06-21,0.45,2,79 +28137623,"Queens, NYC Centralized: 3 min-JFK; Secs. to LIRR",157393936,Apostle John,Queens,Springfield Gardens,40.66932,-73.7514,Private room,95,5,1,2018-10-17,0.11,2,90 +28138470,New MidCentury Modern Apt In The Heart Of Brooklyn,42085952,Mj,Brooklyn,Flatbush,40.63088,-73.96113,Entire home/apt,102,2,0,,,1,36 +28138840,Big and bright private room,210408018,Katelyn,Manhattan,East Harlem,40.7961,-73.94366,Private room,100,2,16,2019-01-05,1.55,1,0 +28139041,New! 3B2B Bayside/3 blocks to train/25 min to NYC,18159034,Sara,Queens,Bayside,40.76039,-73.77419,Entire home/apt,190,3,1,2019-01-01,0.16,1,0 +28144810,1 Bed Apartment in the heart of Brooklyn,105831144,Ben,Brooklyn,Bushwick,40.70642,-73.92165,Entire home/apt,240,2,1,2018-09-03,0.10,1,0 +28149619,Lefferts Gardens Enclave,90096680,Richard,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.9482,Entire home/apt,102,1,2,2019-07-01,2,1,0 +28151027,"Home sweet home +&(QTPOC artistic safe space)",24614094,Naomi,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94591,Private room,40,1,16,2019-06-16,1.84,2,310 +28151382,Cozy 1BR Apartment in East Village,69878814,Jessica,Manhattan,East Village,40.72244,-73.98194,Entire home/apt,120,4,5,2018-12-03,0.49,1,1 +28152851,PRIME location 2min to train 20min Manhattan,19303369,Hiroki,Queens,Woodside,40.74408,-73.90498,Private room,43,30,2,2019-01-14,0.28,37,0 +28153873,Idyllic West Village Full 2 bedroom,3571431,Julianne,Manhattan,West Village,40.73281,-74.00688,Entire home/apt,375,4,5,2019-05-26,0.55,2,289 +28153938,"Luxury modern oasis, 1 stop from Manhattan",10109608,Aj,Queens,Long Island City,40.74726,-73.94074,Entire home/apt,156,2,9,2019-03-25,0.88,2,0 +28154487,Bed-Stuy one bedroom with Balcony,212660460,Nazanin,Brooklyn,Bedford-Stuyvesant,40.67999,-73.94618,Entire home/apt,100,21,2,2019-03-15,0.24,1,33 +28154635,Upper West Side 1 Bedroom Apt near Central Park,212661859,Amita,Manhattan,Upper West Side,40.78333,-73.98089,Entire home/apt,199,4,6,2018-11-18,0.58,1,0 +28155197,Your home away from home!!,208079253,Wendy,Brooklyn,Crown Heights,40.67737,-73.94034,Entire home/apt,115,3,32,2019-06-16,3.49,1,168 +28157869,Brooklyn Guest Suite,68927337,Jean,Brooklyn,East Flatbush,40.65329,-73.92756,Shared room,50,7,1,2018-09-28,0.11,1,179 +28158237,"Warm, Bright and JUST RIGHT! +Brownstone",212689019,Ronald,Brooklyn,Bedford-Stuyvesant,40.68723,-73.92003,Private room,109,1,16,2019-06-24,1.58,2,179 +28159221,"Relaxation Station :-D +Brownstone",212689019,Ronald,Brooklyn,Bedford-Stuyvesant,40.68563,-73.92193,Private room,99,1,24,2019-07-01,2.36,2,179 +28160047,Private Double Room in the heart of Williamsburg,38194603,Adham,Brooklyn,Williamsburg,40.71884,-73.95825,Private room,76,1,46,2019-06-23,5.04,2,52 +28160221,Upscale Living. Home Away from Home.,205594323,Ade,Queens,Springfield Gardens,40.6675,-73.75245,Entire home/apt,185,2,30,2019-06-30,2.90,1,146 +28161643,New York Apartment,28408861,Kristianne,Manhattan,East Harlem,40.79009,-73.94741,Private room,97,2,0,,,1,0 +28161907,Large & Luxury One Bedroom Apartment on 34th St,45241930,Juline,Manhattan,Murray Hill,40.74433,-73.97416,Entire home/apt,150,7,6,2019-06-20,0.60,3,43 +28162058,Garden Loft Manhattan Apartment,4562182,Florence,Manhattan,Harlem,40.81084,-73.94482,Entire home/apt,225,30,9,2019-06-22,0.95,4,326 +28165121,"Large, Sunny Retreat- B/Q subway, Prospect Park!",47050813,Jewel,Brooklyn,Flatbush,40.65131,-73.96307,Private room,70,1,31,2019-07-02,3.00,2,51 +28172195,"Spacious, Bright Duplex Apartment with a Skylight",13415893,Porsha & Jordan,Brooklyn,Crown Heights,40.67,-73.95091,Entire home/apt,89,2,0,,,1,6 +28172338,Casas familiar,212157854,Camilo,Bronx,Concourse,40.83659,-73.91777,Private room,40,1,1,2018-10-13,0.11,2,8 +28172407,Cozy Room close to subway and park,4982459,Mariana,Brooklyn,Flatbush,40.65193,-73.96401,Private room,85,5,1,2018-09-23,0.10,3,0 +28178226,EAST VILLAGE E12TH ST-TOP FLOOR 2 BR APT,200380610,Pranjal,Manhattan,East Village,40.73087,-73.98631,Entire home/apt,255,30,0,,,65,364 +28179447,"A COZY COMFY ROOM NEAR THE BEACH,STORES AND JFK",212834813,Olayode,Queens,Arverne,40.59194,-73.8,Private room,50,1,44,2019-07-01,4.57,1,155 +28180599,Chic UWS Apt - 1 block from Central Park!,190130382,Sarah,Manhattan,Upper West Side,40.78517,-73.97672,Entire home/apt,150,5,4,2018-10-09,0.41,1,53 +28181243,"Kosher, newly renovated, stylish 1 bedroom",15529083,Melissa,Brooklyn,Crown Heights,40.66891,-73.93495,Entire home/apt,200,3,2,2018-12-30,0.24,1,362 +28181405,Harlem Green - City College,11099966,James,Manhattan,Harlem,40.82175,-73.95109,Private room,57,2,57,2019-06-28,5.90,2,13 +28181575,Airy 1 Bedroom Flat in Vinegar Hill Townhouse,39523758,Nick,Brooklyn,Navy Yard,40.70375,-73.97979,Entire home/apt,150,3,0,,,1,0 +28181805,Harlem White - City College,11099966,James,Manhattan,Harlem,40.82162,-73.94902,Shared room,45,2,54,2019-06-26,5.61,2,22 +28181827,Newly built 1 BR apartment with private rooftop!,57024509,Soheil,Brooklyn,Bushwick,40.69452,-73.9082,Entire home/apt,90,5,8,2019-04-26,0.81,1,0 +28182350,Queens Beauty Close to Manhattan,212857568,Howard,Queens,Ozone Park,40.67616,-73.86016,Entire home/apt,90,4,12,2019-06-19,1.38,1,193 +28182769,Nice & Cozy manhattan apartment,99149791,Prez,Manhattan,Harlem,40.80281,-73.94748,Entire home/apt,160,1,2,2018-10-28,0.22,1,10 +28183270,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE CABLE WIFI,8814258,Nikole,Queens,South Ozone Park,40.67181,-73.79622,Shared room,30,4,0,,,7,365 +28184001,"Queens, Astoria - Apartment & Room with NYC view.",212160752,James,Queens,Astoria,40.76768,-73.92001,Private room,63,4,10,2019-07-04,1.18,1,74 +28184101,Great spot in Bushwick,32992928,François,Brooklyn,Bushwick,40.70076,-73.92382,Entire home/apt,180,3,2,2018-09-30,0.21,1,15 +28184199,Luxury and comfort,212871974,Rushella,Brooklyn,Prospect-Lefferts Gardens,40.65849,-73.94791,Private room,100,3,2,2018-10-07,0.20,1,89 +28184830,1 Bedroom in Williamsburg 3 BD/1BA Apartment,26942041,Clara,Brooklyn,Williamsburg,40.70744,-73.95136,Private room,50,7,0,,,1,0 +28185867,Zen & Cozy Room In Astoria,39537244,Evelyn,Queens,Ditmars Steinway,40.78569,-73.91522,Private room,42,3,11,2019-07-02,1.14,1,244 +28186096,Studio apt. w/ lofted queen bed in East Village,97395286,Grayson,Manhattan,East Village,40.72899,-73.98334,Entire home/apt,160,4,6,2019-04-24,0.65,1,6 +28187115,French charm in Manhattan,35649879,Brad,Manhattan,Upper East Side,40.76249,-73.96428,Entire home/apt,430,2,10,2019-07-04,1.06,1,365 +28187614,"Warm, cozy, private entrance with 2 Full bathrooms",212899703,Ms. Debra,Queens,Jamaica,40.67956,-73.76621,Entire home/apt,83,3,29,2019-06-23,2.82,3,48 +28188131,Welcoming place in Upper East Side,28840396,Ruben,Manhattan,East Harlem,40.79863,-73.93461,Private room,95,5,14,2019-06-23,1.39,1,137 +28188696,Steps 2 Prospect Park & 2 blocks 2Q Train cool apt,2568528,Maria,Brooklyn,Flatbush,40.65152,-73.96429,Entire home/apt,75,5,14,2019-05-18,1.48,1,19 +28189904,Large room near Columbia Medical school,176591085,Mike,Manhattan,Washington Heights,40.84554,-73.94282,Private room,48,1,7,2019-06-21,1.09,4,176 +28195632,Queens Apartment #1,80478684,Joe,Queens,Maspeth,40.72538,-73.89284,Entire home/apt,150,2,27,2019-06-17,2.69,2,317 +28195740,Amazing Downtown Views,212898110,Jeremy,Brooklyn,Gowanus,40.66712,-73.99215,Entire home/apt,200,2,17,2018-12-01,1.72,1,0 +28196106,"*UES Private Bed/Bath - Quiet, Sunny, Central Park",1512565,Jean,Manhattan,East Harlem,40.78932,-73.95343,Private room,150,2,18,2019-06-21,1.80,3,112 +28197084,"Perfect art filled space for small family or individual, in upper manhattan",34590955,Brian,Manhattan,Washington Heights,40.85295,-73.93595,Entire home/apt,250,2,0,,,1,67 +28200288,1 Bedroom Apartment Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74747,-73.98668,Entire home/apt,260,2,7,2019-06-13,0.84,13,276 +28202481,Best Futon in Brooklyn/ Minimal Apt,136590050,Ashton,Brooklyn,Crown Heights,40.66568,-73.95386,Private room,34,1,70,2019-06-18,6.84,1,1 +28202752,Cozy cove,156505456,John,Brooklyn,East New York,40.66265,-73.88735,Private room,85,3,10,2019-06-10,1.04,13,90 +28202825,"Feel at home in NYC, 5 min from LGA With PARKING",213014559,Kam,Queens,East Elmhurst,40.76828,-73.87752,Entire home/apt,179,1,57,2019-07-08,5.74,2,0 +28204876,Private modern studio suite with private bathroom,118410907,Sophia,Brooklyn,Bensonhurst,40.60644,-73.99135,Entire home/apt,88,1,39,2019-07-03,3.77,1,362 +28205535,Cozy private room for females in the heart of BR,85495151,Zineb,Brooklyn,Fort Hamilton,40.62274,-74.03277,Private room,60,3,6,2018-10-29,0.61,1,38 +28206135,Bronx ROOM #2 NYC-BEST DEAL,203266238,Steve,Bronx,Morris Park,40.85409,-73.85032,Private room,50,5,8,2019-06-22,0.87,5,22 +28206177,Bronx Brand New Room #3,203266238,Steve,Bronx,Morris Park,40.85361,-73.85018,Private room,85,5,5,2019-05-31,0.49,5,365 +28206615,法拉盛步行7号地铁7分钟左右单房(共用卫生间),213049308,Cen,Queens,Flushing,40.75539,-73.83571,Private room,56,1,19,2019-06-23,2.00,3,45 +28207491,Large One-bedroom Apartment in Crown Heights.,105085784,Jaime,Brooklyn,Crown Heights,40.664,-73.93328,Entire home/apt,75,1,54,2019-07-01,9.36,1,20 +28207627,Morning Glory,72318418,Francisca,Brooklyn,Crown Heights,40.66957,-73.92179,Private room,69,2,15,2019-06-23,1.48,3,359 +28207954,Bellerose home 15 min both airport,211860521,Tamara,Queens,Bellerose,40.73258,-73.726,Private room,95,1,3,2019-05-31,0.47,2,0 +28208177,法拉盛步行地铁站8分钟带独立卫生间套房,213049308,Cen,Queens,Flushing,40.75501,-73.83315,Private room,120,1,37,2019-06-10,3.85,3,0 +28208416,法拉盛步行地铁10分钟单房(共用卫生间)Queen size 床,213049308,Cen,Queens,Flushing,40.75522,-73.83451,Private room,55,1,19,2019-03-10,1.84,3,0 +28209194,Big and lovely apartment in Sunnyside NYC,58234433,Martin,Queens,Sunnyside,40.73707,-73.91867,Entire home/apt,261,1,14,2019-06-23,1.47,8,240 +28213718,"""Sweet Home near to Bronx Zoo in Little Italy """,211638781,Adriana,Bronx,Belmont,40.85287,-73.88536,Private room,100,3,36,2019-06-18,3.69,2,49 +28214075,HK AUTHENTIC TENEMENT UPDATED,213065914,Joshua,Manhattan,Hell's Kitchen,40.76557,-73.99174,Private room,120,1,56,2019-06-30,5.81,1,4 +28214275,Quiet Room in Beautiful Historic Bed Stuy,1337630,Bobbi,Brooklyn,Bedford-Stuyvesant,40.68673,-73.9248,Private room,100,3,1,2018-09-25,0.10,1,0 +28215216,Queens House bedroom 1,213111794,Desmond,Queens,Cambria Heights,40.6844,-73.74601,Private room,250,1,2,2018-10-08,0.20,4,365 +28215809,Queen-Sized Private Bedroom in Historic Harlem,92185816,Fiona,Manhattan,Harlem,40.80823,-73.94963,Private room,62,14,1,2019-05-03,0.45,3,265 +28216267,Luxury apt in the heart of Times Square!LOCATION !,11543355,Matthew,Manhattan,Hell's Kitchen,40.76202,-73.99679,Entire home/apt,250,4,0,,,1,0 +28217921,Heights IV,9130040,Candace,Brooklyn,East Flatbush,40.6624,-73.9329,Private room,89,1,3,2019-06-10,1.73,6,365 +28218300,"Private Room: Cute Apt - Prospect Heights, Bklyn",7592992,Sam,Brooklyn,Prospect Heights,40.67785,-73.96987,Private room,90,1,0,,,1,0 +28218384,"Beautiful&quiet, steps to Central Park w/priv deck",213138857,Sarah,Manhattan,Upper West Side,40.78195,-73.9767,Entire home/apt,225,3,33,2019-06-28,3.46,1,128 +28218710,Brooklyn Apartment,213141901,Amparo,Brooklyn,Bedford-Stuyvesant,40.67841,-73.94477,Private room,75,6,1,2018-10-01,0.11,1,88 +28219460,Convenient Apartment in Brooklyn Townhouse,6928558,Amy,Brooklyn,Bedford-Stuyvesant,40.69084,-73.95368,Entire home/apt,140,2,51,2019-07-06,5.02,1,125 +28220182,New Charming 1 Bedroom Oasis Apartment,35387196,Kizzie,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95311,Entire home/apt,85,7,6,2019-01-30,0.62,4,0 +28220443,The Library @ Guacamaya's Nest,19418027,Maya,Brooklyn,Crown Heights,40.67726,-73.94179,Private room,58,3,24,2019-06-29,2.62,1,6 +28220772,Spectacular Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72249,-74.00385,Private room,195,3,14,2019-06-22,1.37,3,0 +28221182,Immaculate -1/2 Block to train! Private Entrance!,107156,Michael,Brooklyn,Bushwick,40.70285,-73.91934,Private room,89,1,10,2019-06-30,0.99,1,247 +28221379,Demmy's space,183604908,Ade,Brooklyn,Crown Heights,40.66858,-73.92661,Private room,50,2,25,2019-06-30,2.49,1,179 +28221478,Cozy One bedrooom Suite Mins to JFK Airport,23491471,Talia,Queens,Laurelton,40.68263,-73.7393,Entire home/apt,75,1,31,2019-06-24,3.01,1,361 +28221653,Private Bedroom in Super Comfortable NYC Apt.,160611440,Fran,Manhattan,Upper West Side,40.79912,-73.97064,Private room,95,1,11,2019-06-05,1.11,1,0 +28222556,Hamilton Heights/City College,213172811,James,Manhattan,Harlem,40.82266,-73.95481,Private room,70,1,0,,,1,56 +28222827,Sunny bedroom near Times Square 33C2,190921808,John,Manhattan,Hell's Kitchen,40.75534,-73.99668,Private room,75,7,5,2018-10-28,0.51,47,352 +28223260,Private 1 BR/1 Bath apt with full kitchen,15717497,Nick,Manhattan,Upper West Side,40.77078,-73.98344,Entire home/apt,179,1,0,,,1,0 +28225706,MI DULCE MORADA,212526912,Martha Liliana,Queens,East Elmhurst,40.75598,-73.8837,Private room,60,2,4,2019-06-09,0.40,2,325 +28226222,"Spacious 1.5 Bedroom in Bed-Stuy, Brooklyn",55397210,Jelani,Brooklyn,Bedford-Stuyvesant,40.69714,-73.94897,Entire home/apt,119,3,7,2019-05-27,0.71,1,9 +28226667,BP- BEAUTIFUL COZY ROOM FOR 2 NEAR MANHATTAN wifi,213208277,Darry,Brooklyn,Borough Park,40.64189,-73.99357,Private room,60,5,5,2019-07-01,0.53,8,364 +28227192,Multi-Use Brooklyn Sanctuary,75937385,Karen,Brooklyn,Bedford-Stuyvesant,40.68183,-73.95046,Entire home/apt,99,2,3,2018-11-18,0.32,1,3 +28227271,Private Room in Fort Greene Gem,33522184,May,Brooklyn,Fort Greene,40.68629,-73.97589,Private room,75,5,6,2019-05-27,0.63,1,167 +28227966,Beautiful One Bed,115545139,Sixta,Brooklyn,East New York,40.65925,-73.89396,Private room,32,2,56,2019-07-03,5.62,2,27 +28228445,2 Bedroom Upper Westside Apartment,7835900,Lyndon & Christine,Manhattan,Upper West Side,40.7838,-73.97858,Entire home/apt,250,3,1,2018-10-23,0.12,1,0 +28228599,Great Manhattan 25min Barclays Center 15 minutes,94214493,Dadrine,Brooklyn,East Flatbush,40.65612,-73.91788,Private room,65,7,4,2019-05-10,0.49,9,365 +28230432,Comfy sofa close to Manhattan!,85186349,Agustina,Queens,Astoria,40.76826,-73.92772,Shared room,40,1,18,2019-06-29,1.76,1,165 +28230753,Private room w/ fire escape in beautiful Soho,6542295,Jon,Manhattan,SoHo,40.72668,-74.00252,Private room,100,3,6,2019-06-24,0.63,2,3 +28240916,Perfect Bedroom W/En Suite Bath & Terrace Access,20568490,Steve,Manhattan,Tribeca,40.72343,-74.00791,Private room,149,1,16,2019-06-24,1.62,1,337 +28242507,"Cozy, Centrally Located Upper East Side Flat",10720383,Gregory,Manhattan,Upper East Side,40.78315,-73.94693,Entire home/apt,199,2,49,2019-07-01,5.18,1,62 +28242697,Times square luxury,30431292,Felix,Manhattan,Hell's Kitchen,40.76217,-73.99911,Entire home/apt,500,2,1,2018-11-24,0.13,1,179 +28243109,Peaceful Oasis in the heart of SOHO,615025,Kimberlee,Manhattan,SoHo,40.72387,-74.00423,Entire home/apt,249,3,1,2018-10-22,0.12,1,363 +28243134,Studio in Hamilton Heights Manhattan,3299094,Elena,Manhattan,Harlem,40.82161,-73.94644,Entire home/apt,140,1,4,2019-07-06,0.64,1,8 +28245313,Garden Oasis in Historic Hamilton Heights,17893196,Jillian,Manhattan,Harlem,40.8238,-73.94794,Entire home/apt,145,2,5,2019-05-19,0.57,1,5 +28245930,Spacious retreat,77570619,Xander,Manhattan,Harlem,40.82232,-73.93908,Entire home/apt,95,2,16,2019-06-24,1.62,1,140 +28247510,Williamsburg escape in a perfect location!,3942655,Danny,Brooklyn,Williamsburg,40.7159,-73.94397,Private room,90,5,1,2019-04-29,0.42,2,73 +28250130,Gorgeous 1 bedroom with 300 sqf patio and balcony,3768359,Piret,Manhattan,Lower East Side,40.72177,-73.98898,Entire home/apt,300,3,7,2019-02-21,0.71,1,12 +28250228,Private room in shared lovely apartment,70640922,Enzo,Manhattan,Gramercy,40.73314,-73.9838,Private room,115,3,6,2018-12-16,0.59,1,0 +28250448,Confortable apt in the Bronx NYC.,14214034,Desmar,Bronx,Concourse,40.82145,-73.92856,Entire home/apt,102,2,24,2019-06-26,2.76,2,288 +28250863,Clean & Spacious room in NYC,136121042,Janilssa,Manhattan,Inwood,40.86319,-73.92672,Private room,60,2,4,2019-04-30,0.39,1,359 +28250925,"Bright, cozy room in Prospect Heights/Park Slope",73640551,Courtney,Brooklyn,Prospect Heights,40.67852,-73.97308,Private room,75,2,11,2019-01-27,1.24,2,1 +28250999,Newly Decorated Harlem Haven,211973888,Tj,Manhattan,Harlem,40.81773,-73.94357,Entire home/apt,75,4,8,2019-06-29,0.88,1,69 +28251042,"Great energy, XL,clean, plants, comfortable bed,",6048765,Raz,Manhattan,Harlem,40.81835,-73.93925,Private room,86,2,7,2018-10-05,0.69,2,87 +28252662,Beautiful apartment in Elmhurst New York,129124146,KImberly,Queens,Elmhurst,40.73334,-73.87198,Shared room,65,1,4,2018-11-10,0.42,3,179 +28252786,Private Modern 2 bedroom in the heart of Flatbush,296491,Ely,Brooklyn,Midwood,40.61565,-73.96602,Entire home/apt,149,2,22,2019-07-07,2.22,2,83 +28253482,Artsy Brooklyn Apartment,4601788,Heather Marie,Brooklyn,Flatbush,40.64402,-73.96489,Private room,50,1,5,2018-12-02,0.53,1,0 +28253864,"Astoria, NY 1-bedroom apartment",14933692,Fernando,Queens,Astoria,40.76616,-73.91332,Entire home/apt,90,2,8,2019-01-18,0.82,1,0 +28254842,Room in Astoria - 20min to Manhattan,6944101,Olivier & Priscilla,Queens,Ditmars Steinway,40.77033,-73.91008,Private room,50,2,5,2019-05-31,0.53,1,0 +28255658,"Beautiful, brand new Prospect/Crown Heights home",9050139,Noah And Jordan,Brooklyn,Crown Heights,40.67604,-73.95775,Entire home/apt,215,2,14,2019-07-06,1.45,1,13 +28256883,"Gorgeous,stylish 1bd apt Near everything !",25082393,Brandywine,Manhattan,East Harlem,40.79706,-73.93473,Entire home/apt,250,1,8,2019-05-05,0.80,1,37 +28256958,Downtown BK luxury apartment,78817833,David,Brooklyn,Downtown Brooklyn,40.68978,-73.98598,Private room,110,21,0,,,1,0 +28257309,Esther Home,213426241,Allison,Brooklyn,Bedford-Stuyvesant,40.6902,-73.95277,Entire home/apt,350,2,15,2019-06-23,1.53,1,319 +28258594,Cozy Private Bedroom 5mins to NYC,19528144,Nma,Queens,Long Island City,40.76245,-73.93286,Private room,66,3,9,2019-04-11,0.94,1,0 +28259695,D&G Chateau,106667717,Darian,Manhattan,Harlem,40.82761,-73.94192,Private room,85,1,9,2019-05-04,0.90,1,364 +28259702,"Clean , Quite and Comfortable Queen size bed",143979484,Blan,Manhattan,Washington Heights,40.8453,-73.93795,Private room,52,5,11,2018-12-19,1.10,2,310 +28261459,Cozy apartment 15 minutes from midtown!,103049729,Julia,Queens,Sunnyside,40.74314,-73.92389,Entire home/apt,78,2,4,2018-12-02,0.44,1,0 +28261992,Cute Room in Bushwick!,44545038,Oliver,Brooklyn,Bushwick,40.6951,-73.92981,Private room,48,3,5,2018-09-17,0.49,1,0 +28270500,REGO PARK HOUSE NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73095,-73.85706,Entire home/apt,268,2,2,2019-05-20,0.76,3,5 +28270998,"Charming, bright and brand new Bed-Stuy home",647528,Caterina,Brooklyn,Bedford-Stuyvesant,40.69508,-73.95164,Entire home/apt,10,3,5,2019-07-02,0.51,1,0 +28271289,Queens BLVD House NEXT TO ALL,67376966,Lucky,Queens,Rego Park,40.73005,-73.8576,Entire home/apt,268,3,1,2019-06-24,1,3,173 +28272634,Private 2 room apartment in the East village,8554637,Rory,Manhattan,East Village,40.72445,-73.97683,Private room,149,3,36,2019-06-23,3.94,1,109 +28273584,Sunlit Bedroom in prime neighbourhood + Rooftop,17464499,Meenakshi,Manhattan,Chinatown,40.71789,-73.99581,Private room,75,2,3,2019-01-16,0.30,1,0 +28273699,"Bright, Spacious BK Gem",26784906,Sam,Brooklyn,Bedford-Stuyvesant,40.67987,-73.91931,Entire home/apt,250,2,2,2018-09-23,0.20,1,0 +28274486,Luxury Loft - Home away from Home,17877401,Ryan,Queens,Ridgewood,40.70123,-73.90685,Private room,75,2,2,2018-10-07,0.20,1,341 +28275375,Beautiful Williambsurg apartment above the L,53192488,Daniel,Brooklyn,Williamsburg,40.71709,-73.95632,Private room,56,21,1,2018-10-06,0.11,1,0 +28276940,Humble One Bedroom Brooklyn Apt 15mins to the City,96328752,Jivani,Brooklyn,Bedford-Stuyvesant,40.6823,-73.94958,Entire home/apt,125,2,4,2019-04-30,0.48,1,70 +28277212,"A Comfortable private room+Near # 2, 4 & 6 trains",184122908,Livinus,Bronx,Mott Haven,40.81161,-73.90513,Private room,35,1,24,2019-06-30,2.38,1,150 +28277352,"Huge Room in Grammercy, terrace access",9420910,Alyona,Manhattan,Kips Bay,40.73865,-73.9788,Private room,130,1,11,2019-04-18,1.13,2,147 +28277480,"Clean, cozy and private room in midtown Manhattan",26045887,Ivy,Manhattan,Murray Hill,40.7483,-73.9736,Private room,105,1,43,2019-06-21,4.24,2,176 +28278875,Cozy Comfortable Studio Suite,213568384,Shama,Brooklyn,Canarsie,40.63814,-73.90002,Entire home/apt,75,1,68,2019-07-05,7.58,1,258 +28279502,Elegant 4 Bedroom 2.5 Bath with Contemporary Charm,138770550,Charmine,Brooklyn,Crown Heights,40.67222,-73.93487,Entire home/apt,325,3,15,2019-06-24,1.56,3,124 +28282908,Industrial-Chic Room Available in Artist Loft,49218771,Amanda,Brooklyn,Bushwick,40.68992,-73.90435,Private room,70,3,8,2019-02-14,0.82,1,0 +28284019,Spanish Harlem urban hang Suite,10828579,Najah,Manhattan,East Harlem,40.79916,-73.93959,Entire home/apt,125,7,5,2019-01-02,0.52,2,0 +28284205,Caribbean Home,213604115,Jennifer,Brooklyn,East New York,40.66631,-73.86278,Private room,40,2,17,2019-06-23,1.68,1,334 +28284445,New 3BR 2Full bath Apartment with Dryer & Washer,210970608,Lucy,Brooklyn,Crown Heights,40.67061,-73.95023,Entire home/apt,245,3,11,2019-06-16,1.11,5,280 +28284458,New york Multi-unit building,213604995,Doreen,Brooklyn,Bushwick,40.68705,-73.91456,Private room,75,2,85,2019-07-05,8.31,2,309 +28284704,Small Crash Pad in the heart of Williamsburg!,32872039,Sean,Brooklyn,Williamsburg,40.71281,-73.95226,Private room,48,3,17,2019-06-16,2.80,1,0 +28284832,Very Accomodating,213605347,Roberta,Queens,Laurelton,40.68104,-73.74821,Entire home/apt,50,1,14,2019-06-24,1.53,1,356 +28284867,"Sunny studio, minutes from Columbia",14504701,Sahar,Manhattan,Harlem,40.80579,-73.95606,Entire home/apt,115,6,5,2019-06-08,0.53,1,192 +28285760,New York City Finest,213615269,Maryam,Brooklyn,Bedford-Stuyvesant,40.68871,-73.92732,Entire home/apt,197,2,48,2019-07-05,4.86,1,104 +28285795,Grand Suite Floor Thru in Artist's Duplex loft,46374641,Sabina,Brooklyn,Bedford-Stuyvesant,40.68804,-73.94576,Private room,150,2,0,,,1,88 +28286101,*** Hell's kitchen quiet private room ***,137191484,Maria,Manhattan,Hell's Kitchen,40.76561,-73.98387,Private room,99,1,62,2019-06-30,6.55,5,351 +28286163,Sun-drenched 3BD apt in Harlem,15439251,Willy,Manhattan,Harlem,40.82302,-73.94259,Entire home/apt,220,3,12,2019-07-03,1.29,4,230 +28286395,Manhattan Private X-Small Bedroom- Good Location,36800887,Julian,Manhattan,Hell's Kitchen,40.76671,-73.98413,Private room,106,4,27,2019-05-19,2.83,1,0 +28286844,Charming downtown New York Serviced Apartment,20177770,Katy,Manhattan,Civic Center,40.71167,-74.00749,Entire home/apt,140,13,4,2019-02-21,0.44,1,0 +28286952,"Apr - Jun, Entire apt, UWS near park and subway!",92769975,Robert & Nira,Manhattan,Upper West Side,40.78883,-73.96848,Entire home/apt,199,8,2,2018-11-19,0.22,1,8 +28287064,"""THE MANHATTAN OASIS"" Penthouse & Private Terrace",213438424,Jen,Manhattan,East Village,40.72936,-73.98093,Entire home/apt,345,2,35,2019-06-03,3.44,1,262 +28287653,Hunters Point 2500sf 3-story Garden Home,193296202,Freda,Queens,Long Island City,40.74613,-73.95343,Entire home/apt,600,2,2,2019-07-05,0.25,2,272 +28288433,Beatuful Harlem Urban Penthouse,213635139,Elvis,Manhattan,East Harlem,40.79824,-73.94014,Entire home/apt,300,2,53,2019-06-11,5.96,1,14 +28289858,Ft. Green/ Clinton Hill Downtown Brooklyn,213647282,Arkell,Brooklyn,Fort Greene,40.68528,-73.97127,Entire home/apt,200,2,13,2019-02-18,1.30,1,0 +28289954,NewPlace 4,187908645,Jimmy,Queens,Flushing,40.75778,-73.83353,Private room,70,1,7,2019-05-04,0.70,4,347 +28290447,Entire fully furnished 1 Bed/1 Bath w/French Doors,213650814,Joshua,Manhattan,Harlem,40.8072,-73.94383,Entire home/apt,149,5,17,2019-04-25,1.95,1,3 +28291704,Mott Haven Dorm-Bed A,174785358,Rem,Bronx,Port Morris,40.8102,-73.93147,Shared room,28,1,18,2019-06-20,1.93,7,60 +28291780,Home away from home,213660495,Jamie,Queens,Long Island City,40.75472,-73.91891,Entire home/apt,125,2,27,2019-06-09,2.74,1,0 +28298405,Great room in Bushwick!,212071658,Brian,Brooklyn,Bushwick,40.69297,-73.90427,Private room,65,2,23,2019-05-05,2.35,5,339 +28298437,Grande chambre lumineuse à bushwick,14430349,Marie,Brooklyn,Bushwick,40.69469,-73.90786,Private room,75,2,10,2019-03-11,1.05,1,0 +28300510,Cozy and Bright Private Bedroom,73270488,Jayden & Minea,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93661,Private room,50,1,39,2019-06-23,3.98,1,15 +28302975,Luxe 2 Bedroom Sunrise Brooklyn Loft Condo,82083094,Fay,Brooklyn,Canarsie,40.63933,-73.88221,Entire home/apt,250,3,0,,,2,270 +28303888,Comfortable Brooklyn Oasis,2237736,Suzi,Brooklyn,Crown Heights,40.67085,-73.93866,Private room,60,20,3,2019-03-18,0.39,1,0 +28305549,1 private bedroom in Bushwick!,74305569,Nicole,Brooklyn,Bushwick,40.69549,-73.925,Private room,48,2,1,2018-09-21,0.10,2,0 +28306536,Large Room In 3Bed Home w/ Washer/Dryer,1561585,Peter,Brooklyn,East Flatbush,40.65059,-73.94506,Private room,90,3,1,2018-10-08,0.11,1,179 +28306661,Small private room for single ones comfy and clean,17450152,Tiba,Manhattan,Hell's Kitchen,40.76438,-73.98955,Private room,85,2,29,2019-06-21,2.87,5,0 +28306885,The Greek Goddess House.,3068075,Sofia,Queens,Middle Village,40.71246,-73.88784,Private room,70,2,6,2018-10-07,0.62,1,156 +28307159,Queens Palace,129038733,George & Kevin,Queens,Ditmars Steinway,40.77658,-73.90344,Entire home/apt,100,3,12,2018-12-30,1.21,1,0 +28307999,"Spacious, Bright, Cozy, BROOKLYN APT",2389808,Elsa,Brooklyn,Prospect Heights,40.67881,-73.97166,Entire home/apt,135,5,15,2019-06-24,1.75,1,0 +28308261,Artistic + peaceful studio in Greenpoint Brooklyn,213773496,Michael,Brooklyn,Greenpoint,40.73449,-73.95716,Private room,97,3,2,2018-10-08,0.21,1,0 +28308278,Ultra Luxury TriBeCa LOFT!,213774428,Valerie,Manhattan,Civic Center,40.71317,-74.00654,Entire home/apt,590,2,42,2019-06-01,4.33,1,42 +28308296,Oasis in the heart of Williamsburg,1211082,Andrew,Brooklyn,Williamsburg,40.71525,-73.96487,Entire home/apt,320,5,1,2019-01-02,0.16,1,78 +28309196,"Live, Work, Play In Williamsburg!",45519906,Aliu,Brooklyn,Williamsburg,40.70904,-73.95198,Private room,200,3,5,2019-01-05,0.53,1,85 +28309473,Your Cozy Room,213781715,Anting,Brooklyn,Greenpoint,40.73286,-73.95086,Private room,99,1,5,2019-04-21,0.51,33,365 +28309976,BnB & Spa,22125997,Lilly Rose,Bronx,Westchester Square,40.84184,-73.84967,Private room,28,1,26,2019-06-21,2.65,2,123 +28310699,Nice room near Manhattan in a safe neighborhood,79499558,Robertina,Queens,Jackson Heights,40.75176,-73.88374,Private room,55,4,23,2019-07-07,2.28,4,112 +28310943,BEAUTIFUL 2 BEDROOM APARTMENT,212649635,Ramon,Manhattan,Hell's Kitchen,40.76125,-73.99389,Entire home/apt,350,3,41,2019-07-01,4.29,1,74 +28311763,"Spacious, Bright, and Convienent in East Harlem",34607882,Dawn,Manhattan,East Harlem,40.7984,-73.9427,Entire home/apt,115,14,1,2018-10-25,0.12,1,0 +28312177,Private En-suite in an Beautiful Brownstone,213803787,Naftaly,Brooklyn,Crown Heights,40.66627,-73.94164,Entire home/apt,180,1,12,2019-05-31,1.31,1,109 +28312266,"Suite 18 - Mini Apartment, ALL YOURS!",99296570,Daisy,Brooklyn,Brighton Beach,40.57973,-73.95799,Private room,65,1,23,2019-06-25,2.34,5,204 +28312421,Brand New 1BDR Apartment within 5 min walk to SOHO,2328540,Waise Omid,Manhattan,Lower East Side,40.71768,-73.99068,Entire home/apt,200,2,15,2019-05-23,1.51,1,129 +28312520,Little paradise,131993336,David,Queens,Forest Hills,40.71962,-73.85,Private room,49,1,47,2019-06-26,4.64,2,196 +28312552,Cozy Ground Floor Garden Apt. Across from Park,7825587,Rosi,Brooklyn,Sunset Park,40.65064,-74.00595,Entire home/apt,100,5,12,2019-06-19,1.20,1,106 +28312557,Hello Brooklyn! Stylish home in the heart of BK,46594996,Genenne,Brooklyn,East Flatbush,40.6332,-73.94267,Entire home/apt,115,2,8,2018-12-17,0.82,1,0 +28312729,"Private room in Harlem, NY...",15439251,Willy,Manhattan,Harlem,40.82293,-73.94249,Private room,80,2,13,2019-01-21,1.29,4,238 +28312904,Spacious Studio Apt on Upper East side,91545870,Michelle,Manhattan,Upper East Side,40.78132,-73.95148,Entire home/apt,59,1,4,2019-06-30,0.44,2,24 +28313234,"Private bedroom in Harlem, NY ..",15439251,Willy,Manhattan,Harlem,40.8224,-73.94136,Private room,70,3,17,2019-04-18,1.71,4,230 +28313266,Spacious room in vibrant area. 2 blocks from train,71177383,Chris,Brooklyn,Bushwick,40.6999,-73.93947,Private room,100,1,5,2019-07-03,0.52,2,88 +28313344,"Private bedroom in historic Harlem, NY.",15439251,Willy,Manhattan,Harlem,40.8224,-73.94241,Private room,70,2,14,2019-05-15,1.40,4,238 +28313356,Private Room in Williamsburg Apartment,66711185,Oliver,Brooklyn,Williamsburg,40.71151,-73.94396,Private room,63,3,1,2018-12-04,0.14,1,0 +28313685,Cozy room close to the city center 61F1,190921808,John,Manhattan,Hell's Kitchen,40.75545,-73.99652,Private room,120,30,2,2019-03-27,0.21,47,351 +28313785,Luxury suite in the Heart of Hell's Kitchen,30145223,Alex,Manhattan,Hell's Kitchen,40.76646,-73.99132,Entire home/apt,269,4,26,2019-07-03,2.60,1,49 +28314565,"Cozy room near subway , LGA airport n manhattan",79499558,Robertina,Queens,Jackson Heights,40.75164,-73.88506,Private room,55,2,29,2019-06-20,2.96,4,149 +28314576,"1 Br in Brooklyn, near Williamsburg/Manhattan",3604985,Rebeca,Brooklyn,Greenpoint,40.73482,-73.95399,Private room,70,1,4,2018-12-31,0.45,1,97 +28314689,Brand New 3-Bedroom in Trendy L.E.S. #10296,213618380,Carol,Manhattan,Lower East Side,40.71935,-73.98361,Entire home/apt,600,2,33,2019-07-05,3.46,1,280 +28314777,Queens Finest Luxury Place,44924379,Roland,Queens,Jamaica,40.69742,-73.78541,Private room,60,1,22,2019-05-21,2.16,3,363 +28314882,Quiet Washington Heights Studio Apartment,213824132,John,Manhattan,Washington Heights,40.85035,-73.9325,Entire home/apt,80,2,28,2019-06-30,2.98,1,41 +28315011,An Art Director's Fort Green Studio,15146990,Madelyn,Brooklyn,Fort Greene,40.68616,-73.97206,Entire home/apt,115,2,4,2019-07-01,0.44,1,95 +28315707,!AMAZING PRIVATE ROOM 2 MIN FROM TRAIN STATION!,213795822,MateusDaniela,Brooklyn,Bushwick,40.68236,-73.90765,Private room,45,1,30,2019-07-05,3.63,2,327 +28316936,Williamsburg Cozy Room 10 minutes from Manhattan.,80509710,Isaura,Brooklyn,Williamsburg,40.70874,-73.95237,Private room,63,5,24,2019-06-17,2.48,1,7 +28317113,!PERFECT PRIVATE ROOM PLACE 2MIN FROM THE SUBWAY!,213795822,MateusDaniela,Brooklyn,Bushwick,40.68235,-73.90602,Private room,47,2,30,2019-07-07,3.63,2,303 +28317744,*ON SALE* West Village 2BR base to discover NYC,12926593,Catarina,Manhattan,West Village,40.73142,-74.00275,Entire home/apt,300,2,2,2019-06-23,0.31,3,14 +28324221,740 sqf large luxury apt w doorman midtown east,875830,Sacha,Manhattan,Midtown,40.75278,-73.97107,Entire home/apt,169,30,5,2019-05-13,0.70,1,280 +28328473,Modern private studio in rockaway,213910720,Ayodele,Queens,Far Rockaway,40.59752,-73.76337,Private room,50,1,18,2019-06-29,1.79,1,71 +28329076,2BR Williamsburg home w/ PATIO! Baby Gear! L train,106950680,Elmie,Brooklyn,Williamsburg,40.71392,-73.94034,Private room,274,3,3,2019-06-17,0.31,1,0 +28329209,Brooklyn Bedstuy Trendy Apt,128041266,Nayira,Brooklyn,Bedford-Stuyvesant,40.68786,-73.93252,Entire home/apt,110,1,20,2019-06-23,2.22,1,19 +28329243,"Attractive FiDi 1BR w/ Office nook + Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Battery Park City,40.70438,-74.01708,Entire home/apt,263,30,1,2018-10-23,0.12,232,327 +28329261,Sunny Central Park Apt (2 blocks from park),4410716,Nicole,Manhattan,Harlem,40.79993,-73.95485,Private room,75,14,4,2019-05-27,0.40,1,66 +28330508,East village sanctuary,2244813,Matthew,Manhattan,East Village,40.72778,-73.98747,Entire home/apt,250,31,1,2018-10-07,0.11,1,156 +28332207,Private bedroom with bathroom in clean quiet space,212899703,Ms. Debra,Queens,Jamaica,40.67783,-73.76637,Private room,83,2,2,2019-04-15,0.26,3,26 +28333466,"Lovely, sunny & quiet 1br Chelsea apt w/balcony",43252905,Jonathan,Manhattan,Chelsea,40.74299,-73.99777,Entire home/apt,225,2,11,2019-06-06,1.20,1,0 +28333941,"Private, sun-filled, plant-filled bedroom",199245226,Alison,Brooklyn,Crown Heights,40.67597,-73.94857,Private room,175,4,3,2019-01-01,0.30,1,0 +28334679,Astoria Apartment,29514176,Meghann,Queens,Astoria,40.76642,-73.91637,Entire home/apt,125,3,4,2018-11-25,0.42,1,0 +28334760,Boerum Hill Queen BR in a Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68701,-73.98495,Private room,70,1,38,2019-07-03,3.83,3,47 +28335031,Chic Studio in a Great Neighborhood,11050667,Michelle,Manhattan,Chelsea,40.73917,-73.99412,Entire home/apt,154,4,7,2019-05-14,0.77,1,0 +28335929,Mott Haven Dorm-Bed B,174785358,Rem,Bronx,Port Morris,40.80952,-73.93005,Shared room,28,1,17,2019-06-03,1.79,7,83 +28336933,West Village 5 BR Townhouse & Private Yard,126830432,Andrea,Manhattan,West Village,40.73151,-74.00528,Entire home/apt,1500,4,17,2019-06-27,1.86,1,32 +28337493,Look down on Bedford Ave! Private room.,10810969,Drew,Brooklyn,Williamsburg,40.71551,-73.96057,Private room,95,1,9,2019-01-16,0.91,1,0 +28338004,Mott Haven Dorm-Bed D,174785358,Rem,Bronx,Port Morris,40.80994,-73.93061,Shared room,28,1,29,2019-05-27,3.09,7,89 +28338110,Huge Western Room on the Top Floor of a Townhouse,17260320,Jon,Brooklyn,Bedford-Stuyvesant,40.6866,-73.9532,Private room,75,3,7,2019-01-18,0.72,1,0 +28338131,Mott Haven Dorm-Bed E,174785358,Rem,Bronx,Port Morris,40.80977,-73.93038,Shared room,28,1,16,2019-06-22,1.70,7,0 +28339611,"Cute, book-filled, apartment in Williamsburg",25300542,Samridhi,Brooklyn,Williamsburg,40.71019,-73.95684,Entire home/apt,125,5,2,2019-01-04,0.21,1,0 +28339747,Queens house bedroom 2,213111794,Desmond,Queens,Springfield Gardens,40.66509,-73.75863,Private room,180,1,0,,,4,179 +28340136,Queens house bedroom 3,213111794,Desmond,Queens,Laurelton,40.68013,-73.74734,Private room,180,1,3,2019-07-07,0.33,4,180 +28340434,Queens house bedroom 4,213111794,Desmond,Queens,Springfield Gardens,40.66556,-73.75735,Private room,200,1,2,2018-12-15,0.22,4,179 +28340606,Large Room with PRIVATE bathroom! Best NYC rooftop,696141,Michael Dan,Manhattan,Financial District,40.706,-74.0077,Private room,115,4,6,2019-04-20,0.61,1,0 +28340698,Sun and Serenity in SoHo with Private Bath,103471052,Samantha,Manhattan,SoHo,40.72774,-74.00326,Private room,135,2,17,2019-03-06,1.73,1,0 +28341280,Bushwick Rustic Loft,10812370,Al,Brooklyn,Bushwick,40.69987,-73.91821,Private room,69,1,28,2019-07-07,2.75,1,36 +28341857,"Private Brand New 2 BR, Minutes from JFK & LGA",5669527,Mohd Tahmid,Queens,Jamaica,40.67695,-73.79045,Entire home/apt,99,1,96,2019-07-04,9.63,1,31 +28342248,Ridgewood retreat,120730056,Sophie,Queens,Ridgewood,40.70602,-73.90485,Entire home/apt,80,5,2,2018-09-30,0.21,1,0 +28343300,"Sunny apartment in BK- Close to J,M,Z",4492236,Rebecca,Brooklyn,Williamsburg,40.70685,-73.94796,Entire home/apt,150,10,1,2018-10-05,0.11,2,0 +28344161,One Bedroom in Midtown East,15736460,Shirley,Manhattan,Midtown,40.76054,-73.96425,Private room,75,5,0,,,1,72 +28344462,Serenity palace,214024476,Edlyne,Queens,St. Albans,40.69153,-73.77667,Entire home/apt,150,2,23,2019-07-02,2.34,1,175 +28344470,20 steps to subway!!,131392140,Vik,Queens,Long Island City,40.75655,-73.93001,Entire home/apt,134,2,9,2019-06-22,0.93,5,163 +28344775,23 steps to subway!,131392140,Vik,Queens,Long Island City,40.7563,-73.92971,Entire home/apt,134,2,8,2019-06-01,1.10,5,144 +28344821,"“Brownstone in Brooklyn” +Close to Manhattan!",57827692,Mollie,Brooklyn,Bedford-Stuyvesant,40.68757,-73.92923,Entire home/apt,145,3,14,2018-12-26,1.45,1,0 +28344992,Garden Apartment on Prettiest Street in NYC,2308139,Rubi&Danny,Manhattan,Washington Heights,40.83385,-73.94013,Entire home/apt,189,3,45,2019-06-28,4.49,1,180 +28345080,* GRAMERCY * TOP LOCATION * ULTRA MODERN BEDROOM,214029598,Stav,Manhattan,Stuyvesant Town,40.73389,-73.98016,Private room,120,3,3,2019-01-06,0.33,1,0 +28345644,Welcome New york Astoria spacious,213587085,Sherry,Queens,Ditmars Steinway,40.77739,-73.90805,Private room,65,4,16,2019-06-08,1.67,1,23 +28345654,LaGuardia Airport 15min•COZY8PPL•10min Ride to NYC,147298964,Angela,Queens,Ditmars Steinway,40.7699,-73.91156,Entire home/apt,280,1,33,2019-06-13,3.34,1,294 +28345804,LES Light Filled Large Bedroom,86274028,Francesca,Manhattan,East Village,40.72803,-73.97961,Private room,100,1,1,2018-09-18,0.10,1,0 +28346019,Cozy accommodation in Queens for MAX 2 people,43044876,Haruhisa,Queens,Elmhurst,40.74316,-73.87285,Private room,40,29,2,2019-03-03,0.29,5,1 +28346064,Cozy Room near Empire State Building!,214037223,Monze,Manhattan,Kips Bay,40.74389,-73.98033,Private room,120,2,32,2019-06-10,3.74,3,264 +28346402,Room at walking distance to the Empire State!,214037223,Monze,Manhattan,Kips Bay,40.74381,-73.97909,Private room,130,2,45,2019-06-24,4.87,3,277 +28346728,Upper West Side Apartment,212310107,Gregory,Manhattan,Upper West Side,40.80094,-73.96163,Entire home/apt,180,1,43,2019-06-14,4.69,1,24 +28346829,"LOVE MANHATTAN 3 +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.81072,-73.92031,Private room,55,1,32,2019-06-23,3.31,4,76 +28347338,Lofty & Sunny 2 Bedroom w/ Manhattan Skyline View,214044763,Donald,Brooklyn,Greenpoint,40.73403,-73.95746,Entire home/apt,175,4,35,2019-07-03,3.51,1,69 +28349233,Private room blocks away from HBO's The Deuce set!,34607061,Elizabeth,Manhattan,Washington Heights,40.84067,-73.93602,Private room,36,28,4,2019-06-01,0.47,1,284 +28350560,Spacious Bdrm in N.Y.C. (30 mins to Midtown),37252076,Iara,Queens,Jackson Heights,40.75436,-73.88534,Private room,50,3,1,2019-06-19,1,2,155 +28354720,Oversized Studio right in the heart of Kips Bay,6744445,Steph,Manhattan,Kips Bay,40.7436,-73.98122,Entire home/apt,165,1,4,2019-01-01,0.42,1,0 +28355554,"Sunny, central and comfortable!",18270302,Ameera,Manhattan,Upper East Side,40.77619,-73.95325,Private room,90,3,5,2019-01-01,0.52,2,56 +28355651,A Cozy Room in New York Apartment,214095681,Pavel And Sarah,Queens,Sunnyside,40.74403,-73.92147,Private room,65,2,64,2019-07-01,6.34,2,6 +28358001,Beautiful Sun-filled Loft in Prime Williamsburg,11026665,Margaret,Brooklyn,Williamsburg,40.71544,-73.96073,Entire home/apt,175,3,12,2019-06-22,1.23,1,54 +28358666,Private Room,31770868,Tae,Manhattan,Theater District,40.75928,-73.98634,Private room,110,2,46,2019-06-11,4.66,2,38 +28359512,East Village Pad with a View,131454177,Ali,Manhattan,East Village,40.72907,-73.98388,Entire home/apt,195,7,0,,,1,295 +28359529,"Characteristic ""New Yorker"" 2 bedroom apartment",214121850,Giorgio,Manhattan,Upper East Side,40.76615,-73.95662,Entire home/apt,300,5,8,2019-06-02,0.94,1,82 +28359765,STUDIO WITH OUTDOOR SPACE-CHELSEA MARKET-WEST 19TH,200380610,Pranjal,Manhattan,Chelsea,40.74138,-73.99729,Entire home/apt,175,30,1,2019-06-13,1,65,342 +28359897,Comfy LGA apt in Queens,207808113,Md,Queens,East Elmhurst,40.76115,-73.88239,Entire home/apt,150,1,73,2019-06-25,7.55,1,78 +28360016,Beautiful Studio Basement-35 minutes from the city,2298141,Karen,Queens,Jamaica,40.68033,-73.77753,Entire home/apt,100,1,45,2019-07-05,5.31,1,76 +28361060,Soho Nolita Private capsule Loft NYC Female only,10164435,Stella,Manhattan,Nolita,40.72124,-73.99425,Private room,68,1,28,2019-06-24,2.84,3,21 +28361262,Luxury Apartment walk to Central Park Javits,14035840,Feliz,Manhattan,Hell's Kitchen,40.76942,-73.99163,Private room,120,1,38,2019-07-03,4.37,1,16 +28362311,Entire Brooklyn Home with a Friendly Cat,6484652,Una,Brooklyn,South Slope,40.66439,-73.98904,Entire home/apt,99,3,3,2019-06-18,0.46,2,1 +28363730,Spacious Masterbedroom with attached bathroom,144587441,Jameel,Queens,Ozone Park,40.68892,-73.83834,Private room,110,1,0,,,1,363 +28364513,baynefamilywithlove,206459807,Evelyn,Brooklyn,Cypress Hills,40.68382,-73.8796,Entire home/apt,110,2,29,2019-07-01,3.04,1,63 +28364587,A suite with a view of the Empire State Building !,53906227,James,Manhattan,Theater District,40.75952,-73.98368,Entire home/apt,84,1,25,2019-02-12,2.53,1,257 +28366610,Close to everything jfk subway casino,170810121,Raj,Queens,Jamaica,40.67887,-73.79243,Private room,60,2,11,2019-05-28,1.09,1,157 +28366864,Sunny Astoria Room in Ideal Location!,49487260,Brittanie,Queens,Astoria,40.77089,-73.93036,Private room,100,1,3,2018-10-10,0.30,1,0 +28367094,Fantastic Room in Bushwick,212071658,Brian,Brooklyn,Bushwick,40.69238,-73.90361,Private room,65,2,24,2019-06-10,2.59,5,351 +28367264,Spacious 1BR in Midtown East by Sonder,12243051,Sonder,Manhattan,Murray Hill,40.7442,-73.97355,Entire home/apt,174,29,0,,,96,311 +28367352,Hip Bushwick Area Private Room!,212071658,Brian,Brooklyn,Bushwick,40.69098,-73.90509,Private room,65,2,22,2019-06-24,2.46,5,348 +28367470,Joyous private Room,212071658,Brian,Brooklyn,Bushwick,40.69159,-73.90399,Private room,65,2,30,2019-06-13,2.96,5,359 +28367520,Peaches Cozy Corner,214171931,Camorine,Queens,St. Albans,40.69544,-73.77663,Private room,50,1,81,2019-06-16,8.02,1,232 +28367842,Large King Sized Bedroom with Private Bathroom,92185816,Fiona,Manhattan,Harlem,40.80737,-73.95055,Private room,70,30,4,2019-06-17,0.59,3,340 +28368234,Harlem apartment,214175454,Mohamed,Manhattan,Harlem,40.82332,-73.93979,Private room,120,1,7,2018-12-19,0.73,1,89 +28368282,Terrific Apartment in the Heart of Williambsburg,9641129,Sam,Brooklyn,Williamsburg,40.71447,-73.95195,Private room,70,14,2,2018-10-27,0.20,1,18 +28368404,Penthouse living 1 single room 4 a night or 2!!!,125320407,Sata,Queens,Jamaica,40.70507,-73.80424,Private room,225,1,1,2018-10-07,0.11,5,364 +28368678,Boerum Hill Twin BR in a Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68519,-73.98653,Private room,70,1,51,2019-07-03,5.03,3,55 +28368870,Bright Bedroom in NYC (30 min to Midtown + MoMa),37252076,Iara,Queens,Jackson Heights,40.75378,-73.8862,Private room,45,3,3,2019-06-24,0.35,2,132 +28369307,Modern & Sunny Room near Museum Mile,4128972,Alina,Manhattan,East Harlem,40.79388,-73.94594,Private room,105,1,33,2019-06-30,3.41,1,26 +28369515,Étage au sein d’un duplex à Brooklyn,2771943,Sophie & Grégoire,Brooklyn,Clinton Hill,40.68227,-73.96486,Private room,175,2,9,2019-06-30,0.89,1,17 +28369552,Boerum Hill 2 BR Suite in Classic NYC Brownstone,6770631,Allen,Brooklyn,Boerum Hill,40.68528,-73.98634,Private room,98,1,9,2019-06-09,0.89,3,25 +28369648,New(2019) Renovated bath & 30-40 min to Manhattan,19303369,Hiroki,Queens,Elmhurst,40.74513,-73.87237,Private room,33,30,0,,,37,0 +28369910,Semi Private Bedroom,214190693,Samantha,Bronx,Fordham,40.85536,-73.90242,Shared room,55,1,3,2019-02-23,0.31,1,83 +28372451,New York Walk Up Apartment,214207874,Tom,Manhattan,Chelsea,40.73941,-73.99777,Entire home/apt,110,7,4,2018-11-04,0.40,1,0 +28374327,Brand New Private Room in Heart of Brooklyn,30735525,Lawrence,Brooklyn,Bushwick,40.68467,-73.91341,Private room,55,2,7,2019-06-28,0.96,1,36 +28379264,Spacious 1 bedroom in Bed Stuy Brooklyn,93294060,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6925,-73.94872,Entire home/apt,95,2,39,2019-06-29,4.18,1,26 +28381581,Huge Room in Upper West close to Columbia & Subway,2666466,Javier,Manhattan,Morningside Heights,40.80439,-73.96393,Private room,130,4,37,2019-06-18,4.16,1,38 +28385105,30 day min days-entire apt minutes to Manhattan!,49804236,JoAnn,Queens,Sunnyside,40.74707,-73.9235,Entire home/apt,80,30,3,2019-06-10,0.44,1,109 +28385354,The Green Room: Fun Private Room for Fun Families!,214298769,Megan,Brooklyn,Cypress Hills,40.67865,-73.89241,Private room,100,1,9,2019-06-09,0.92,1,330 +28385896,Room w Roof in Trendy Renovated E Williamsburg Apt,6892946,Danite,Brooklyn,Williamsburg,40.70568,-73.94282,Private room,70,10,2,2018-11-19,0.21,1,0 +28386112,Spacious 2 BR. Ridgewood Apt.,214304954,Milly & George,Queens,Glendale,40.6934,-73.8951,Entire home/apt,160,2,12,2019-06-30,1.31,1,361 +28386154,Charming Bedroom in Brooklyn Navy Yard,30185638,Nima,Brooklyn,Fort Greene,40.69633,-73.97215,Private room,85,5,29,2019-06-18,2.91,1,240 +28387362,Private room for rent,22685487,Elireth,Queens,Elmhurst,40.72946,-73.88054,Private room,45,2,4,2018-10-01,0.40,2,324 +28388724,Huge bedroom in Williamsburg [Prime Location],19484041,Qasim,Brooklyn,Williamsburg,40.71272,-73.94104,Private room,71,1,8,2019-03-26,0.81,1,0 +28389715,Entire 3 bedroom apartment in best location.,203564743,Angel,Queens,Long Island City,40.75651,-73.93441,Entire home/apt,170,3,31,2019-06-17,3.32,1,238 +28389754,Affordable comfy room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73862,-73.80808,Private room,65,1,2,2019-05-20,0.52,5,90 +28389771,3. Beautiful and clean room only 20ms to Manhattan,188498431,Han,Queens,Sunnyside,40.73825,-73.92387,Private room,65,2,19,2019-07-01,1.95,6,356 +28389772,Private Studio in Astoria- 25 min. to Midtown,214332639,Gina,Queens,Ditmars Steinway,40.78105,-73.91435,Entire home/apt,100,1,27,2019-07-07,2.92,1,36 +28390400,Beautiful bedroom off the L train Lorimer stop,2907609,Daniel,Brooklyn,Williamsburg,40.71451,-73.95068,Private room,70,5,0,,,1,0 +28390924,Comfortable rooms 15 minutes to Manhattan,49568280,Hakan,Queens,Ditmars Steinway,40.77699,-73.91354,Private room,95,1,0,,,3,177 +28391441,"Midtown 2Bed 1.5Bath Luxury Full Kitchen, Balcony",214347105,Roman,Manhattan,Midtown,40.75224,-73.96526,Entire home/apt,449,3,23,2019-05-19,2.36,8,326 +28391512,ELEXEY'S COMFORT.. room is located on the 3rd fl.,185889529,Michelle,Queens,St. Albans,40.69898,-73.75518,Private room,50,1,51,2019-06-29,5.10,3,358 +28391618,Maspeth Queens Apartment,80478684,Joe,Queens,Maspeth,40.72664,-73.89294,Entire home/apt,150,2,19,2019-07-01,2.91,2,309 +28392603,Brooklyn Historical Townhouse,73445711,Terrence And Teresa,Brooklyn,Bedford-Stuyvesant,40.68104,-73.93776,Entire home/apt,101,2,37,2019-07-01,4.19,1,170 +28400092,Private Bedroom Minutes To Manhattan,214329835,Rita,Queens,Ditmars Steinway,40.77882,-73.90935,Private room,69,2,2,2019-05-06,0.23,2,74 +28403499,NY Style by the Metro and St. john's University.,196036532,Natalie,Queens,Jamaica Estates,40.71959,-73.78849,Private room,57,1,6,2019-03-14,0.66,1,65 +28404814,Stylish & dreamy brooklyn loft,2236212,Iva,Brooklyn,Bedford-Stuyvesant,40.67895,-73.93641,Entire home/apt,190,3,11,2019-06-09,1.20,2,179 +28406352,Mikey's,7963207,Michael,Manhattan,West Village,40.73659,-74.00495,Entire home/apt,325,3,8,2019-06-26,0.83,1,83 +28406990,Cozy apartment in trendy financial district,214464499,Mel,Manhattan,Financial District,40.70498,-74.00992,Entire home/apt,200,1,8,2019-07-06,0.81,1,0 +28407129,East Village/Noho home with private deck,5176117,Jessica,Manhattan,East Village,40.72749,-73.98994,Entire home/apt,250,1,2,2019-03-31,0.52,1,63 +28407992,"Entire 2BR apartment, your home away from home",162848296,Fengxiang,Staten Island,Graniteville,40.62301,-74.16558,Entire home/apt,71,4,7,2019-06-01,1.01,1,0 +28408938,Gorgeous loft with stunning view : Williamsburg,17760140,Amo,Brooklyn,Williamsburg,40.71801,-73.95573,Entire home/apt,190,4,2,2019-05-31,0.21,1,4 +28408961,French Riviera,214480354,Alex,Manhattan,Upper West Side,40.79876,-73.96053,Private room,109,3,2,2018-10-09,0.21,1,0 +28409021,Artist’s Retreat,97658205,John Drue,Brooklyn,Bushwick,40.70023,-73.92487,Private room,35,1,5,2018-10-05,0.53,1,0 +28409283,Staten Island Townhouse,214483712,Christina,Staten Island,Bull's Head,40.59448,-74.16388,Private room,40,10,0,,,3,89 +28409399,Affordable Studio for First-Time Travelers to NYC,88982022,Timothy,Manhattan,Upper East Side,40.77878,-73.95694,Private room,130,1,15,2018-12-30,1.56,1,0 +28409473,CoZy room with your own bathroom/entrance in UES!,109378554,Adele,Manhattan,Upper East Side,40.77016,-73.95632,Private room,149,2,32,2019-06-12,3.21,1,75 +28410723,Entire Apartment in Greenwood,108902280,Guadalupe,Brooklyn,Sunset Park,40.65929,-73.99441,Entire home/apt,59,2,26,2019-06-23,2.63,1,173 +28411594,Private room for rent!,22685487,Elireth,Queens,Elmhurst,40.72962,-73.88053,Private room,45,2,3,2019-06-06,0.31,2,324 +28411657,"Your Brooklyn Getaway, King sized bed in neat room",14234166,Peter,Queens,Ridgewood,40.70552,-73.91476,Private room,70,1,39,2019-06-17,3.95,2,74 +28411950,Large & Bright Bedroom in Astoria,214483779,Jany,Queens,Astoria,40.76296,-73.92571,Private room,75,2,4,2018-10-28,0.42,1,164 +28412322,Kozy Klean Kwiet,20161085,Lloyd,Queens,Jamaica,40.68588,-73.76315,Private room,120,2,31,2019-07-04,3.21,1,57 +28412831,West village bright dream location room,12926593,Catarina,Manhattan,West Village,40.73117,-74.00232,Private room,126,2,1,2019-06-30,1,3,15 +28414122,3 Bedroom Artsy Apartment. Best Deal in Brooklyn.,7799229,Artem,Brooklyn,Williamsburg,40.71567,-73.95831,Entire home/apt,207,2,28,2019-06-13,3.08,2,271 +28415700,Cozy Bedroom in Williamsburg - 5 min from L train,44090067,Khaula,Brooklyn,Williamsburg,40.71623,-73.94328,Private room,70,1,30,2019-07-05,4.33,1,8 +28417682,Great private room in Sunnyside NYC 7 min Subway,58234433,Martin,Queens,Sunnyside,40.73587,-73.92027,Private room,90,1,11,2019-06-03,1.10,8,319 +28418722,"Apartment minutes away from JFK, LGA, CitiField",214424497,Michelle,Queens,St. Albans,40.70454,-73.7656,Entire home/apt,64,1,32,2019-07-07,3.47,1,259 +28422482,Chateau Greenpoint Dog Lovers,11728318,John,Brooklyn,Greenpoint,40.72624,-73.94285,Private room,40,2,24,2019-06-30,2.69,1,95 +28423989,⭐3 BR Sleep 8 A+ Location by Shops + Subway to NYC,214311765,Sophie And Linda,Queens,Elmhurst,40.73655,-73.87892,Entire home/apt,300,2,29,2019-06-19,3.83,1,298 +28424657,Nice Room,214586580,Tina,Queens,Astoria,40.7708,-73.92686,Private room,55,30,19,2019-01-08,1.92,1,184 +28426648,Minimalist Loft Luxury in Soho,214416012,James,Manhattan,SoHo,40.72345,-73.99943,Entire home/apt,800,2,36,2019-07-01,3.88,1,90 +28427324,New york Multi-unit building,214141672,Monica,Queens,Astoria,40.76466,-73.92731,Private room,120,1,1,2018-09-19,0.10,1,362 +28428225,"Studio Rm in Bklyn, Medical & Professionals ONLY",214611101,Myra,Brooklyn,Kensington,40.63662,-73.97612,Private room,66,30,1,2019-06-28,1,4,74 +28428327,Private Sunny Room — Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74721,-73.97398,Private room,100,1,12,2019-05-13,1.70,3,58 +28428636,Room for easy commute. Near train & essentials!,137358866,Kazuya,Queens,Elmhurst,40.74345,-73.87901,Private room,38,30,2,2019-05-30,0.39,103,247 +28429572,RE:GEN:CY,214620702,Ashley And Cayla,Brooklyn,Red Hook,40.67864,-74.00546,Entire home/apt,750,1,6,2019-06-23,0.64,1,179 +28429583,Dream East Village apartment.,19414064,Declan,Manhattan,East Village,40.72617,-73.98869,Entire home/apt,225,3,0,,,1,0 +28430186,Gorgeous Artists' loft ★ Prime location,76232256,Natalia,Brooklyn,Williamsburg,40.71736,-73.95361,Private room,99,3,13,2019-06-21,1.32,1,221 +28430639,"Waterfront Apt, Private bed&bath in Williamsburg",66837596,Yoo MI,Brooklyn,Williamsburg,40.72015,-73.96403,Private room,110,3,18,2019-07-05,1.96,2,234 +28431690,"Brand New Luxury Apartment, Tons of Outdoor Space",157703622,John,Manhattan,Lower East Side,40.71821,-73.98914,Entire home/apt,225,30,2,2019-02-23,0.23,2,188 +28431734,Bright 2- Room apartment in a house next to train.,55004447,Olga,Staten Island,Arden Heights,40.54312,-74.17388,Private room,41,2,7,2019-01-08,0.71,1,0 +28432700,Large one bedroom Apartment in Ditmas Park,2770596,Emilio,Brooklyn,Flatbush,40.63813,-73.96592,Entire home/apt,120,5,3,2018-12-26,0.31,2,231 +28433202,Great value! Private room Queen size Couch bed,147762665,Jose,Bronx,Wakefield,40.88688,-73.85848,Private room,37,1,14,2019-07-05,1.42,3,332 +28433844,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.70999,-74.011,Private room,179,7,9,2019-06-25,0.97,13,349 +28436764,5. Beautiful Clean room just 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73773,-73.92227,Private room,75,2,15,2019-07-06,1.84,6,342 +28436953,Sunny Private Room near the Montrose L,48084892,Megan,Brooklyn,Williamsburg,40.70859,-73.94297,Private room,63,3,8,2019-03-26,0.85,1,0 +28436992,7. Beautiful Clean room just 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73939,-73.92308,Private room,65,2,13,2019-07-05,1.49,6,341 +28437372,Newly renovated private room w/ view! 5mins to N/R,214678935,Kin,Brooklyn,Sunset Park,40.64689,-74.01401,Private room,55,1,31,2019-06-28,3.10,3,361 +28437554,New York roomers,131705586,Freddy,Brooklyn,Fort Greene,40.69379,-73.97111,Private room,67,1,36,2019-06-05,3.59,2,329 +28437669,Two-Story 2BR/2BA East Village Apartment!,3964276,Steve,Manhattan,East Village,40.72447,-73.98821,Entire home/apt,255,3,6,2018-12-30,0.65,1,0 +28437754,8. Beautiful clean room 20mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73894,-73.92288,Private room,65,2,26,2019-07-01,2.80,6,355 +28438004,Large Harlem 3 bed 2 bath,214683117,Glenis,Manhattan,Harlem,40.81249,-73.94957,Entire home/apt,325,2,2,2019-01-01,0.20,1,0 +28438216,2BED Close UN Location full Kitchen Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75282,-73.96688,Entire home/apt,389,3,8,2019-05-22,0.83,8,339 +28438408,The Artist's House & Roof Garden (part 2!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65518,-73.95664,Private room,40,20,7,2019-04-28,0.84,4,34 +28438751,Private room NYC near LGA JFK Manhattan centre,10164435,Stella,Queens,Astoria,40.75726,-73.92812,Private room,44,1,49,2019-05-01,5.38,3,52 +28438882,The Artist's House & Roof Garden (part 3!),18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.6569,-73.95728,Private room,40,1,2,2019-04-13,0.27,4,37 +28439263,"10BR 6 full Bath, 3 story, entire landmark house",210970608,Lucy,Brooklyn,Crown Heights,40.6692,-73.95054,Entire home/apt,785,3,0,,,5,226 +28439572,Amazing Soho Apartment,2740709,Cathal,Manhattan,SoHo,40.72615,-74.00325,Entire home/apt,285,4,1,2018-09-16,0.10,1,7 +28440536,Chelsea Cabin,20480351,David,Manhattan,Chelsea,40.7404,-73.99485,Entire home/apt,200,3,21,2019-06-20,2.40,1,42 +28440683,Modern guest suite in historic home,60787,Greg,Brooklyn,Bedford-Stuyvesant,40.6816,-73.93282,Entire home/apt,75,5,4,2019-04-03,0.44,1,0 +28441716,"XL Studio: great view, minutes from Times Square",2757243,Matthew,Manhattan,Hell's Kitchen,40.7557,-73.99337,Entire home/apt,230,2,6,2019-05-26,0.64,1,4 +28443430,Beautiful Full-size Studio in Classic Brownstone,1820586,Lizania,Brooklyn,Bedford-Stuyvesant,40.68279,-73.94805,Entire home/apt,80,7,4,2019-05-25,0.44,1,14 +28452001,Cozy private bedroom near Times Square 31C1,190921808,John,Manhattan,Hell's Kitchen,40.75417,-73.99578,Private room,99,7,5,2019-06-12,0.59,47,352 +28453441,BP- STYLISH SHARED Room 2ppl 10 MINS TO MANHATTAN,213208277,Darry,Brooklyn,Borough Park,40.64314,-73.99221,Shared room,30,5,7,2019-06-14,1.00,8,365 +28454118,Amazing sunny Williamsburg apt!,29452152,Lore,Brooklyn,Williamsburg,40.70807,-73.95681,Entire home/apt,145,4,5,2019-04-13,0.53,1,1 +28456148,Sunny cozy 1 bedroom- Designer’s home,3334537,Jolie,Brooklyn,Bedford-Stuyvesant,40.68471,-73.93763,Entire home/apt,150,4,9,2019-06-28,0.93,1,132 +28456453,Celebrity Home 15 mins to jfk & lga,213816392,DuChess,Queens,Queens Village,40.70762,-73.74366,Private room,41,1,38,2019-07-06,3.99,3,163 +28456602,靠近机场交通方便明亮大房间#3,156547988,Minying,Queens,Ozone Park,40.67743,-73.84941,Private room,65,1,5,2019-06-14,0.50,4,334 +28458448,The Come On Inn,3740621,Jonathan,Manhattan,Harlem,40.81465,-73.94265,Private room,150,1,40,2019-06-03,4.26,2,66 +28459032,Modern Alcove Apartment,139135,Lisa,Manhattan,Kips Bay,40.74197,-73.98012,Entire home/apt,145,7,2,2018-12-28,0.29,1,0 +28459635,Huge Brooklyn Bedroom,3771945,Lindsay,Brooklyn,Bedford-Stuyvesant,40.69585,-73.93335,Private room,50,2,3,2019-05-04,0.32,1,0 +28460904,"Huge Artist’s Loft in Red Hook, Brooklyn",15631610,Jesse,Brooklyn,Red Hook,40.67918,-74.00568,Entire home/apt,185,3,16,2019-05-25,1.67,1,0 +28461232,Beuty full bedroom Queens size bed,65827591,Nubia,Queens,Maspeth,40.73591,-73.90013,Private room,65,2,4,2018-11-11,0.43,3,254 +28461316,2 bedroom/1 bathroom next to Columbia University,82736848,Courtney,Manhattan,Morningside Heights,40.81214,-73.96488,Entire home/apt,150,2,2,2019-01-01,0.21,1,0 +28461528,NEW! New York City Apartment 7 min walk to Metro!,58234433,Martin,Queens,Sunnyside,40.7359,-73.9187,Entire home/apt,260,1,15,2019-06-23,1.71,8,267 +28462562,Prime New York Upper East Side 1 Bedroom Apartment,63659318,Kerem,Manhattan,Upper East Side,40.76976,-73.94956,Entire home/apt,125,2,17,2019-06-28,1.76,1,70 +28462738,COZY STUDIO Upper West Side,169773010,Petrina,Manhattan,Upper West Side,40.78471,-73.9716,Entire home/apt,199,1,86,2019-06-30,8.72,1,22 +28462811,Bronx Home 5 Minute walk from Yankee Stadium,214859918,Edna,Bronx,Concourse,40.82228,-73.92783,Private room,45,1,28,2019-06-24,3.07,1,161 +28463327,"Humble Abode - CLEAN, SAFE, AFFORDABLE.",214863971,Elenora And Jason,Brooklyn,Flatlands,40.6211,-73.92651,Private room,37,2,28,2019-05-30,2.84,2,38 +28463654,Chelsea's best kept secret,182425491,Brian,Manhattan,Chelsea,40.75151,-73.99725,Entire home/apt,500,3,9,2019-06-02,0.93,1,357 +28464119,Private Room 2,31770868,Tae,Manhattan,Theater District,40.76102,-73.98677,Private room,100,1,51,2019-06-21,5.15,2,169 +28464743,Private bedroom with great location,11320557,Bojan,Manhattan,Chinatown,40.71624,-73.99995,Private room,100,2,35,2019-06-26,4.32,1,6 +28464767,NY PRIVATE BEDROOM QUEEN BED BY 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.83088,-73.86492,Private room,42,2,23,2019-06-10,2.54,3,109 +28464787,LUNA 2BR SUITE by COLUMBIA-PRESBYTERIAN HOSP.,25237492,Juliana,Manhattan,Washington Heights,40.84241,-73.94087,Entire home/apt,65,30,0,,,34,295 +28464829,Great cosy Studio. Just perfect.,24833181,Andres,Brooklyn,Bedford-Stuyvesant,40.69488,-73.94983,Entire home/apt,85,1,44,2019-07-05,4.51,2,208 +28466730,Akouaba,214888995,Adama,Bronx,Belmont,40.85267,-73.88627,Private room,50,2,51,2019-07-06,5.17,1,325 +28467737,Midtown Manhattan - 3BR/1BA near Empire State,27661888,Inho,Manhattan,Murray Hill,40.74734,-73.98049,Entire home/apt,575,2,40,2019-07-07,4.43,1,46 +28467973,NYC Penthouse Private Bedroom & Balcony w/ Skyline,123567556,Sean,Brooklyn,Crown Heights,40.67596,-73.93201,Private room,85,1,9,2019-06-23,5.40,2,173 +28468184,Affordable Large Bushwick Room with a View,179773675,Megan,Brooklyn,Bedford-Stuyvesant,40.68517,-73.91736,Private room,60,4,0,,,1,0 +28471510,"Looking for low key, clean long term guest .",82975282,Evyiatar,Queens,Bayswater,40.60484,-73.76871,Private room,52,30,0,,,2,312 +28477383,Spacious RM in Quiet Area near LGA & MNHTN express,137358866,Kazuya,Queens,Woodside,40.74301,-73.89458,Private room,50,30,2,2019-05-11,0.50,103,269 +28483408,DOORMAN/ GYM/ MODERN 2 BR ON EAST 52ND ST,200380610,Pranjal,Manhattan,Midtown,40.7551,-73.96507,Entire home/apt,385,30,0,,,65,364 +28483571,Brand New Beautiful Home (25 min to Manhattan),178011115,Mohammed,Queens,Maspeth,40.74113,-73.90118,Entire home/apt,166,4,31,2019-06-09,3.52,1,280 +28484028,9.Clean Bed just 20 mnts to Manhattan,188498431,Han,Queens,Sunnyside,40.73892,-73.92397,Shared room,39,2,18,2019-06-23,1.96,6,344 +28484124,Modern & Hip 1 bed apt Manhattan,13538150,Mariana,Manhattan,Hell's Kitchen,40.77054,-73.99305,Entire home/apt,97,2,1,2019-06-26,1,1,8 +28484811,Spacious Brooklyn Oasis,1327520,Christa,Brooklyn,Bedford-Stuyvesant,40.69357,-73.94971,Entire home/apt,200,1,3,2018-09-29,0.30,1,0 +28485500,Brownstone Garden Style Apt in Historic Bedstuy,73538984,Kesha,Brooklyn,Bedford-Stuyvesant,40.68618,-73.94367,Entire home/apt,155,2,12,2018-11-24,1.25,1,0 +28486770,Williamsburg Nest: Your Home Away From Home,47239386,Eliran,Brooklyn,Williamsburg,40.71671,-73.95064,Entire home/apt,220,4,3,2018-10-15,0.32,1,16 +28487528,Large sunny private queen bedroom - S Williamsburg,50921439,Patrick,Brooklyn,Williamsburg,40.70985,-73.96435,Private room,75,4,3,2019-01-02,0.32,1,0 +28488070,Designer 3 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69482,-73.92493,Entire home/apt,140,30,0,,,2,330 +28489062,Cozy 2 Bedroom by the Park !,20104851,Scott,Brooklyn,South Slope,40.66595,-73.97973,Entire home/apt,195,4,22,2019-06-25,3.01,1,67 +28490526,Authentic Brooklyn Brownstone - Garden Unit,39477098,Elisha,Brooklyn,Crown Heights,40.67205,-73.94853,Entire home/apt,125,3,25,2019-06-26,4.55,1,139 +28491645,Private room woodside close to all transportations,114249746,Jeff,Queens,Woodside,40.75249,-73.90041,Private room,45,1,53,2019-06-02,5.39,1,45 +28492753,New York City 4 Room Suite at The Manhattan Club,215073823,William,Manhattan,Midtown,40.76534,-73.98096,Private room,425,1,4,2019-04-22,0.53,1,0 +28493404,Brand new Loft 2 blocks away from train w/ parking,117027456,Madeleine,Brooklyn,East New York,40.67001,-73.88339,Entire home/apt,90,1,34,2019-06-30,4.10,1,122 +28493933,Prime Location Private Room in a Williamsburg,61330869,Carine,Brooklyn,Williamsburg,40.70803,-73.96142,Private room,95,1,6,2019-05-05,0.62,1,0 +28494807,"Upper West Side, NYC. Near 72nd 1,2,3",5970733,Michelene,Manhattan,Upper West Side,40.77953,-73.98421,Entire home/apt,100,2,17,2019-07-01,2.12,1,18 +28495328,Good place to stay NYC,215034605,Erasmo,Queens,Ditmars Steinway,40.76932,-73.90113,Private room,100,3,14,2019-01-01,1.42,1,0 +28496792,Huge Private Suite-Style Bedroom by Prospect Park,3158797,Drea,Brooklyn,Windsor Terrace,40.65209,-73.97376,Private room,50,14,0,,,1,174 +28497028,Heights V,9130040,Candace,Brooklyn,East Flatbush,40.66148,-73.93408,Private room,89,1,1,2019-05-19,0.59,6,365 +28500619,Brooklyn Tree House,215127571,Anthony,Brooklyn,Williamsburg,40.71859,-73.95202,Entire home/apt,400,3,25,2019-07-05,2.62,1,30 +28501387,Huge Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72381,-74.00183,Entire home/apt,403,4,4,2019-01-22,0.45,3,0 +28506359,"2 Bdrm Central Park-Convenient, Clean, Near Metro",215161436,Sam,Manhattan,Upper West Side,40.80014,-73.96039,Entire home/apt,325,4,17,2019-06-25,3.67,1,319 +28506595,Cute Room,8834412,Deborah,Bronx,Longwood,40.81232,-73.90299,Private room,100,3,0,,,2,364 +28507308,Luxury Apt with perfect location and views,1604815,Meng,Manhattan,Upper West Side,40.77902,-73.98709,Entire home/apt,135,10,13,2019-06-01,1.38,1,7 +28509709,Bronx Apartment College Ave,215183568,Matilde,Bronx,Claremont Village,40.83739,-73.91118,Private room,26,1,20,2019-03-26,2.07,1,3 +28510048,NYC Spacious 6 Br Victorian Home w/ parking,57812046,Dave + Suzanne,Brooklyn,Flatbush,40.63848,-73.96572,Entire home/apt,330,3,2,2019-07-03,1.05,2,18 +28510491,Clean + Cozy Room-Please Read All Details,215189782,Bianca,Manhattan,Hell's Kitchen,40.76825,-73.98743,Private room,200,3,8,2019-05-30,0.83,1,332 +28510832,Private 2 BR apartment near train,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69105,-73.93723,Entire home/apt,139,1,8,2019-04-22,0.86,9,118 +28512918,"Comfortable, Queen Bedroom in East Williamsburg",67391192,Chris,Brooklyn,Williamsburg,40.70898,-73.94116,Private room,50,2,9,2019-05-17,0.91,1,4 +28513148,"Lovely Studio - Heart of Carroll Gardens, Brooklyn",1381000,Diana,Brooklyn,Gowanus,40.68077,-73.98983,Entire home/apt,125,2,2,2019-05-12,0.23,1,0 +28513450,Cozy 3 Bedroom in the heart of NYC,215209489,Leah,Manhattan,Hell's Kitchen,40.76088,-73.98971,Entire home/apt,350,30,1,2019-03-16,0.26,1,331 +28513774,Cozy 2 Bedroom Apt w/ Patio & Hot Tub near Trains,108249932,Yngrid And Jiovanni,Brooklyn,East New York,40.6757,-73.88925,Entire home/apt,175,3,22,2019-06-30,2.89,2,285 +28513853,Spacious Studio - 5 Mins from Times Square.,37412692,Kim,Manhattan,Midtown,40.76539,-73.98329,Entire home/apt,169,30,0,,,4,362 +28514974,"Great room in hip, but quiet Williamsburg, BKLYN.",12715154,Leo,Brooklyn,Williamsburg,40.72032,-73.94561,Private room,130,7,2,2019-05-15,0.32,2,212 +28515078,Minimalist Oasis/ Condo,124155350,Anna,Manhattan,Harlem,40.82778,-73.94995,Entire home/apt,150,2,7,2019-01-02,0.76,1,0 +28517276,Luxury Studio & Private Patio - NYC in 20 minutes!,71219887,Christina,Brooklyn,Bushwick,40.69062,-73.92265,Entire home/apt,120,2,10,2019-06-23,1.18,1,4 +28517278,Williamsburg Brooklyn Apartment,215239210,Brit,Brooklyn,Williamsburg,40.71528,-73.94331,Entire home/apt,150,2,14,2019-06-21,1.45,1,2 +28518320,Beautiful Brooklyn Brownstone in Prime Location,127250744,Steven,Brooklyn,Carroll Gardens,40.68036,-73.99247,Entire home/apt,180,3,4,2019-06-22,0.53,1,5 +28519623,clean& airy in Brooklyn w/private bathroom and AC!,215257373,Erica,Brooklyn,Williamsburg,40.71601,-73.93962,Private room,105,1,71,2019-07-05,7.34,1,55 +28519821,"Cute Clean & Quaint , 40 minutes away from. City",214184351,Bladimil,Brooklyn,Bushwick,40.69855,-73.91394,Private room,63,3,2,2019-03-01,0.31,1,365 +28520092,2BR APT NEXT TO CENTRAL PARK & TIMES SQUARE,215259606,Kennyd,Manhattan,Hell's Kitchen,40.76542,-73.98754,Entire home/apt,300,1,61,2019-06-27,6.31,1,154 +28520183,"Large, brand new Williamsburg apt. w/ prvt outdoor",1755123,Franco,Brooklyn,Williamsburg,40.71543,-73.95421,Entire home/apt,70,2,4,2019-05-03,0.50,1,0 +28521841,Colorful and central Gramercy apartment,120378725,Olena,Manhattan,Kips Bay,40.73826,-73.98028,Entire home/apt,250,2,2,2018-09-27,0.21,1,0 +28522394,The Spot,215277711,Aaron,Bronx,Van Nest,40.83988,-73.86978,Entire home/apt,300,1,0,,,1,365 +28525440,Art & Expression Inn,202823080,Marissa,Brooklyn,Bushwick,40.69939,-73.9158,Private room,43,3,5,2019-04-03,0.68,1,179 +28526676,Cozy Room,28740462,Andrea,Brooklyn,Borough Park,40.64465,-73.99078,Private room,40,1,36,2019-07-03,3.74,1,63 +28531920,SPECTACULAR 2br high floor (Website hidden by Airbnb) view,6393008,Labeat,Manhattan,Hell's Kitchen,40.76485,-73.98525,Entire home/apt,471,3,1,2019-04-28,0.42,1,188 +28532378,Gem,156505456,John,Brooklyn,East New York,40.66676,-73.87421,Private room,40,3,9,2019-06-07,0.95,13,180 +28534405,New york Multi-unit building,2891643,Jacqueline,Manhattan,Harlem,40.82146,-73.94598,Private room,50,1,0,,,1,0 +28536037,EXCELLENT location 2min 7 line 61st Express train,19303369,Hiroki,Queens,Woodside,40.74474,-73.90314,Private room,47,30,0,,,37,1 +28536172,NYC Townhouse & Private Roof Deck,189336520,Martha,Manhattan,Upper East Side,40.77141,-73.95658,Entire home/apt,1000,4,16,2019-06-15,1.97,1,66 +28536219,Adorable Polly Pocket-Sized Prospect Heights Space,3690070,Jess,Brooklyn,Prospect Heights,40.67881,-73.96888,Entire home/apt,94,2,8,2019-05-11,0.83,1,0 +28537361,La Casa Azul - Paradise in Brooklyn!!,215378301,Meg,Brooklyn,Cypress Hills,40.68269,-73.89223,Entire home/apt,750,1,6,2019-04-07,0.67,1,365 +28538516,纽约单一家庭住宅,156064588,Xiaowen,Brooklyn,Crown Heights,40.67623,-73.91144,Private room,69,1,11,2019-01-04,1.11,1,0 +28538946,Spacious & Bright 1 Bedroom Refuge in the Big City,904138,Paul,Queens,Astoria,40.76214,-73.92148,Entire home/apt,150,6,1,2019-04-07,0.32,1,0 +28539077,Sun-drenched Executive Suite 1,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68062,-73.91251,Private room,80,5,12,2019-07-02,1.28,3,354 +28539464,"#2BED Luxury Midtown Full Kitchen, Comp Breakfast",214347105,Roman,Manhattan,Midtown,40.75306,-73.96662,Entire home/apt,399,3,13,2019-06-09,1.48,8,229 +28540171,Central Harlem Home,7147060,Kathleen,Manhattan,Harlem,40.80212,-73.95732,Private room,95,2,5,2019-06-21,1.90,2,90 +28540537,Cozy Loft Studio with Skylight!,187487947,Diego,Brooklyn,Greenpoint,40.73176,-73.95525,Entire home/apt,52,1,32,2019-05-29,3.47,6,0 +28540618,Sweet studio in the heart of Nolita,215403497,Rebecca,Manhattan,Little Italy,40.71908,-73.99766,Entire home/apt,150,4,3,2018-11-28,0.32,1,179 +28540662,Angels Haven,215392967,Rose,Queens,Bellerose,40.72415,-73.728,Private room,65,3,10,2019-07-01,1.06,1,89 +28541165,Budget cave!,2268393,Javier & Jorge,Brooklyn,Williamsburg,40.70665,-73.94554,Private room,60,7,5,2019-06-05,0.52,2,0 +28541238,Spacious room with huge bay window & natural light,215407308,Hawk,Queens,Sunnyside,40.7372,-73.92586,Private room,55,2,19,2019-06-16,2.04,3,138 +28541768,Cosy small room 15 mins away from Manhattan,215407308,Hawk,Queens,Sunnyside,40.73829,-73.9274,Private room,49,3,14,2019-05-07,1.44,3,106 +28542484,Sonder | 21 Chelsea | Sophisticated 2BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.74299,-73.99436,Entire home/apt,377,29,0,,,96,302 +28542784,Sonder | 21 Chelsea | Lively 1BR + Rooftop,12243051,Sonder,Manhattan,Chelsea,40.7425,-73.99427,Entire home/apt,249,29,1,2018-09-25,0.10,96,220 +28543617,Private room in Airy Harlem Penthouse,7147060,Kathleen,Manhattan,Harlem,40.80256,-73.95581,Private room,100,2,11,2019-06-30,1.18,2,90 +28543707,Fab & huge room in historic bedstuy brownstone,921829,Ali,Brooklyn,Bedford-Stuyvesant,40.6909,-73.93737,Private room,60,3,17,2019-06-25,1.75,1,340 +28544890,Serene Spacious and Sun lit Master 5 mins to metro,214678935,Kin,Brooklyn,Sunset Park,40.64667,-74.01416,Private room,59,1,36,2019-06-23,3.79,3,352 +28545860,Affordable private queen room in Fresh Meadows,23120620,Jackie,Queens,Flushing,40.73819,-73.81007,Private room,65,1,2,2018-10-14,0.22,5,90 +28547290,Sunny room W/ Private bathroom -North Williamsburg,96735874,Ally,Brooklyn,Williamsburg,40.71969,-73.96427,Private room,120,1,23,2019-07-05,2.46,1,37 +28548195,"Modern, clean, NEW apt 1 block from train!",179413160,Maria Fernanda,Brooklyn,Cypress Hills,40.67974,-73.88374,Private room,45,1,8,2019-07-05,0.85,1,57 +28550680,Bright Room w own Bathroom & Views. Central Park.,7720459,Angie,Manhattan,Harlem,40.80459,-73.9558,Private room,150,5,33,2019-06-26,3.69,1,58 +28554405,Shared place by Theater district in Manhattan west,175180318,Gúney,Manhattan,Hell's Kitchen,40.76538,-73.98779,Shared room,90,1,11,2019-07-04,1.11,6,169 +28558474,Cozy apartment separated bedroom - Near Manhattan,21124300,Simon,Brooklyn,Fort Greene,40.68803,-73.973,Entire home/apt,140,2,8,2019-07-07,0.83,1,14 +28558930,Cosy home in Bushwick..25 minutes into Manhattan!,44753370,Sanjeev,Brooklyn,Bushwick,40.70543,-73.91935,Private room,50,6,1,2018-09-16,0.10,1,0 +28559951,"Small, Cozy room in Central Harlem neighborhood",67395042,Omar,Manhattan,Harlem,40.82306,-73.94046,Private room,70,1,46,2019-06-09,5.54,1,66 +28560196,Good 2-bedroom in Bushwick!,14383179,Dan,Brooklyn,Bushwick,40.70037,-73.92408,Entire home/apt,90,5,4,2019-04-24,0.44,1,0 +28560281,Theatre District Apartment,6066958,Hannah,Manhattan,Hell's Kitchen,40.76309,-73.99154,Private room,125,1,10,2018-11-11,1.01,1,0 +28560837,Rock Rock Rockaway Beach House,92523072,Bill,Queens,Rockaway Beach,40.58862,-73.81276,Entire home/apt,150,2,14,2019-07-03,7.24,1,97 +28560966,New York Apartment,83343316,Jamie,Manhattan,Kips Bay,40.73954,-73.98185,Private room,150,2,2,2018-11-25,0.26,1,45 +28561160,"New York - Private room, perfect location",2570601,Thirza,Manhattan,Upper West Side,40.7855,-73.97584,Private room,98,2,7,2019-03-16,0.80,1,0 +28561620,Clean and private room in Murray Hill,26045887,Ivy,Manhattan,Murray Hill,40.74844,-73.97344,Private room,120,1,36,2019-06-19,3.79,2,180 +28561904,Brand new uber-clean minimalist Bushwick 1BR,1119058,Ruben,Brooklyn,Bushwick,40.70473,-73.92662,Entire home/apt,100,4,17,2019-06-23,1.76,1,0 +28561906,Spacious Modern Brooklyn Studio,14904449,Joseph,Brooklyn,Crown Heights,40.67347,-73.95833,Entire home/apt,110,2,9,2019-06-23,0.93,1,15 +28563801,"Stylish, convenient, renovated- 2 min to subway -",45466335,Boris,Manhattan,Harlem,40.82195,-73.9368,Entire home/apt,250,1,36,2019-07-06,4.62,2,301 +28564157,1Ample room for groups in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69316,-73.90445,Private room,65,2,29,2019-05-15,2.93,8,348 +28564317,1Brooklyn budget room in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69198,-73.9038,Private room,65,2,26,2019-06-24,2.82,8,349 +28564366,1Cosy room for solo/couple in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69326,-73.90431,Private room,50,2,22,2019-06-05,2.48,8,362 +28564408,1Dynamic private room in bushwick,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69256,-73.90457,Private room,65,2,26,2019-06-07,2.80,8,362 +28565170,Private room+bathroom Only 20mins to Midtown NYC!,48303314,Gaurab,Queens,Woodside,40.74909,-73.90915,Private room,35,2,21,2019-07-02,2.23,1,16 +28565575,Central & Cozy Brooklyn Home,215591956,Magdalena,Brooklyn,East New York,40.67111,-73.87083,Entire home/apt,160,2,22,2019-06-23,2.38,1,48 +28567040,Bronx House #4_3,203266238,Steve,Bronx,Morris Park,40.85362,-73.85011,Private room,65,5,0,,,5,365 +28568117,Harlem Heights Suite,39174150,Keanna,Manhattan,Harlem,40.82445,-73.95218,Private room,200,2,21,2019-06-13,2.35,3,38 +28574888,Guest Studio at Stella's place,15617507,Stella,Bronx,Morris Park,40.85105,-73.86049,Entire home/apt,60,2,20,2019-05-19,2.29,3,208 +28578651,Sunny Private bedroom in prime Greenpoint,1521811,Colleen,Brooklyn,Greenpoint,40.72749,-73.95217,Private room,53,5,1,2018-10-06,0.11,1,11 +28578931,Sunnyside RM. Reasonable price. Great for commute!,137358866,Kazuya,Queens,Sunnyside,40.73998,-73.92143,Private room,38,30,2,2019-05-31,0.30,103,201 +28580323,Writer's nook in the center of Greenpoint !!!,141734227,Brian,Brooklyn,Greenpoint,40.73128,-73.95358,Private room,99,1,11,2019-03-31,1.20,1,0 +28580426,Rooftop Vibes for small events,62659791,Chiz,Brooklyn,Crown Heights,40.67814,-73.95292,Shared room,149,1,0,,,2,363 +28581563,Peace and quiet in the center of it all,10301127,Elizabeth,Manhattan,Upper West Side,40.77399,-73.97861,Private room,140,30,0,,,1,0 +28582698,"Private Studio, 5 minutes from JFK",63056614,Ana,Queens,Jamaica,40.67189,-73.77769,Entire home/apt,65,2,40,2019-07-05,4.44,1,123 +28582815,"Bright, spacious 2BR in classic brownstone",137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.683,-73.93669,Entire home/apt,110,28,1,2019-05-12,0.51,4,156 +28583186,Fabulous Bed-Stuy Brownstone Garden Apartment,2646237,Ny,Brooklyn,Bedford-Stuyvesant,40.6909,-73.92662,Entire home/apt,140,3,18,2019-07-05,2.33,1,134 +28583260,Cozy Private Home Space in Gorgeous Neighborhood,215727176,Christine,Queens,Bayside,40.74933,-73.76821,Entire home/apt,175,3,1,2018-10-09,0.11,1,112 +28583593,"Elegant, Loft-like 1BR in a historic brownstone",137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68301,-73.93657,Entire home/apt,115,28,2,2019-06-28,0.32,4,212 +28584472,Art gallery apartment in the center of Manhattan,50462097,Jirayus,Manhattan,Hell's Kitchen,40.76435,-73.9875,Entire home/apt,199,2,35,2019-07-05,4.29,1,200 +28584690,Upper East Cozy Apt,42601145,Eva,Manhattan,Upper East Side,40.77481,-73.95558,Private room,60,1,48,2019-06-27,4.97,1,8 +28584877,Cozy bedroom available in best area of Brooklyn!,92733485,Vitaly,Brooklyn,Downtown Brooklyn,40.69164,-73.99055,Private room,50,1,5,2018-10-16,0.54,1,0 +28585042,Lovely Room in the heart of the East Village,23354644,Nancy,Manhattan,East Village,40.72977,-73.98529,Private room,78,2,1,2019-07-05,1,3,38 +28585119,Brooklyn Hot Spot with all the Fixins!,172741,Kate,Brooklyn,Prospect-Lefferts Gardens,40.66089,-73.9625,Private room,70,1,5,2019-05-27,1.06,1,37 +28585982,Large apartment walking distance to Williamsburg,102180676,Sarah,Brooklyn,Greenpoint,40.72493,-73.93976,Private room,120,4,0,,,1,49 +28586482,Private room in 2 bdrm apt. Near Gateway Ctr. Mall,26585911,Shola,Brooklyn,East New York,40.66018,-73.86607,Private room,125,1,3,2019-04-07,0.31,1,281 +28587071,Private Bedroom in Queens at St. John's University,215759678,Andrew,Queens,Jamaica Estates,40.71987,-73.79816,Private room,35,2,30,2019-07-03,3.35,1,233 +28587227,Private Studio near LaGuardia Airport and Mahattan,80933709,Jacqueline,Queens,East Elmhurst,40.76533,-73.87873,Private room,54,3,27,2019-06-10,2.83,2,35 +28587590,"Stay in my spacious, clean and quiet abode.",18022132,Jo,Queens,Long Island City,40.74523,-73.94973,Private room,175,4,1,2019-01-07,0.16,1,39 +28587806,New York City Apartment,215765235,Julia,Manhattan,NoHo,40.72503,-73.99252,Entire home/apt,500,5,1,2019-05-27,0.70,1,362 +28589725,"CAMAS PARA MUJERES VIAJERAS EN QUEENS,(Only Women)",215778245,Jessy & Christian,Queens,Corona,40.74056,-73.86446,Shared room,25,2,15,2019-06-27,1.77,6,330 +28590307,SALA/CAMA PARA MUJERES VIAJERAS (WOMEN ONLY),215778245,Jessy & Christian,Queens,Corona,40.73888,-73.86618,Shared room,26,2,21,2019-07-01,2.58,6,352 +28600360,Cozy studio near the beach and St. John’s hospital,36383387,Suleidy,Queens,Far Rockaway,40.60106,-73.75154,Entire home/apt,63,1,11,2019-07-07,4.52,1,129 +28600950,Wonderful and bright 1BR steps from Central Park,4166822,Kay,Manhattan,Upper West Side,40.79012,-73.96896,Entire home/apt,127,3,14,2019-06-04,1.78,1,0 +28602842,Amazing 2Bed apt in Union Square,215869827,Isabelle,Manhattan,East Village,40.73245,-73.98535,Entire home/apt,300,30,0,,,1,180 +28603871,Sonder | Madison Ave | Sophisticated Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74716,-73.98454,Entire home/apt,225,29,1,2019-06-01,0.79,96,332 +28604409,Sonder | Madison Ave | Convenient Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74653,-73.98481,Entire home/apt,209,29,0,,,96,250 +28604793,6MinTrainMasterRoom/MaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65012,-74.00603,Private room,60,1,20,2019-06-28,2.07,4,162 +28605855,Martha's Guest Room,110213244,Russ,Brooklyn,South Slope,40.66209,-73.98671,Private room,47,1,4,2019-05-12,0.42,1,362 +28606263,Gorgeous 1 Bedroom on the Park,22154340,Rachele,Brooklyn,Fort Greene,40.68892,-73.97329,Entire home/apt,195,3,1,2019-02-04,0.19,1,0 +28606376,Bedroom Apartment in the Heart of Manhattan,215897007,Joana,Manhattan,Murray Hill,40.74536,-73.97506,Private room,355,2,13,2019-06-09,1.49,1,308 +28606397,"Affordable Couch-Surfing, Near All",9731301,Arq,Queens,Jackson Heights,40.75011,-73.89113,Shared room,70,1,2,2019-03-31,0.32,1,365 +28606853,Bedroom 7 bed A.,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69313,-73.95533,Shared room,39,1,13,2019-07-02,1.33,34,365 +28607153,Renovated Dining(2019) 5min to 74st Express subway,19303369,Hiroki,Queens,Jackson Heights,40.74951,-73.89378,Private room,35,30,2,2019-06-30,0.56,37,32 +28607761,Bedroom 7 Bed B,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69238,-73.95724,Shared room,39,2,6,2019-05-20,0.62,34,343 +28607874,Sonder | Madison Ave | Spacious Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74584,-73.98474,Entire home/apt,237,29,0,,,96,365 +28608063,South Bronx Oasis - Stunning 1 Bedroom Apartment,214871546,Dion,Bronx,Longwood,40.82718,-73.90241,Entire home/apt,90,2,58,2019-06-30,6.80,1,301 +28608084,Sonder | Madison Ave | Simple Studio + Gym,12243051,Sonder,Manhattan,Midtown,40.74712,-73.98461,Entire home/apt,254,29,0,,,96,291 +28608251,Bedroom 7 Bed C,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69232,-73.95654,Shared room,39,3,13,2019-06-09,1.36,34,359 +28608462,Bedroom 7 Bed D,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69245,-73.95657,Shared room,39,1,13,2019-06-13,1.36,34,365 +28608920,Chic modern studio,141300,Mel,Manhattan,Upper West Side,40.78581,-73.97179,Entire home/apt,165,1,8,2019-05-06,0.88,1,87 +28609526,Beautiful Bedroom in a brand new apartment! 3L-1,205530337,Nina,Queens,Ridgewood,40.70279,-73.90601,Private room,45,30,4,2019-06-22,0.48,8,248 +28609705,20 mins from Manhattan. 10 mins frm S.I. ferry.,215922295,Muneeb,Staten Island,Rosebank,40.61088,-74.07327,Entire home/apt,200,5,8,2019-06-05,1.00,1,244 +28609762,Sun Filled Oasis,135150441,Savannah,Brooklyn,Bedford-Stuyvesant,40.68987,-73.94484,Private room,80,4,1,2018-12-22,0.15,1,325 +28610567,Nice Clean Official Cozy Suite 2 In Brooklyn,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68003,-73.91181,Private room,65,3,17,2019-07-04,2.26,3,365 +28611271,Cozy Room in Steinway st. with a firescape view!,150439529,Marina,Queens,Astoria,40.76677,-73.91315,Private room,70,4,6,2019-05-26,0.68,1,63 +28611623,"Jazz, Harlem, Home :)",45835291,Shareef,Manhattan,Harlem,40.82253,-73.95525,Private room,53,8,37,2019-06-19,3.88,6,299 +28613110,Apt in Bronx near 6 train 20 min Manhattan or LGA.,215951448,Gulshan,Bronx,Soundview,40.8289,-73.86219,Entire home/apt,87,1,54,2019-07-04,5.61,1,326 +28613174,6MinTrainLivingRoomMaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65167,-74.00624,Private room,50,1,22,2019-06-21,2.28,4,169 +28614344,6MinTrainBackRoom/Maimonides-Lutheran industryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65135,-74.00487,Private room,55,1,18,2019-07-01,1.87,4,161 +28614707,"Artist's nest, in the heart of the East Village",20745804,Guy,Manhattan,East Village,40.72707,-73.9853,Entire home/apt,240,3,2,2018-11-26,0.24,1,0 +28615793,Private bedroom in 4 bedroom apt. in Tribeca,9299046,Frederik,Manhattan,Civic Center,40.71638,-74.00419,Private room,120,5,5,2019-06-24,0.60,1,25 +28616009,GREAT 3 BR Home Mins. From Manhattan !!!!!!!,215967566,Sunny,Queens,Jackson Heights,40.75091,-73.87818,Entire home/apt,225,2,38,2019-07-03,4.01,1,49 +28616435,^^SWEET DEAL in NYC^,89728139,Tanya,Manhattan,Harlem,40.82714,-73.93888,Private room,89,3,15,2019-06-01,1.56,1,179 +28616686,Newly Remodeled Room !!! downtown brooklyn,214694658,Damon,Brooklyn,Fort Greene,40.69439,-73.97319,Private room,65,1,90,2019-06-24,9.41,1,254 +28625897,"Near A/C/L/3 trains! Two comfy beds, good vibes.",97546900,Regina,Brooklyn,Brownsville,40.6676,-73.90954,Private room,75,2,33,2019-06-23,3.45,1,20 +28626448,Sunny penthouse studio in Brooklyn,14515065,Vanessa,Brooklyn,Bushwick,40.69845,-73.93609,Entire home/apt,108,1,79,2019-07-03,8.40,2,46 +28627156,Cozy Room near Manhattan NYC,202818204,Andres,Queens,Long Island City,40.74942,-73.93658,Private room,75,1,8,2019-05-11,0.82,1,3 +28627384,Times Square True NY Style Home With All Cultures!,216032427,Maneh,Manhattan,Hell's Kitchen,40.76357,-73.98906,Private room,150,2,31,2019-06-23,3.46,1,124 +28627947,Astoria Couples RM w/ Lovely Furniture. Own bath.,137358866,Kazuya,Queens,Astoria,40.76708,-73.92451,Private room,60,30,0,,,103,215 +28628675,A quiet and spacious haven in the Lower East Side,56750914,Elliot,Manhattan,East Village,40.72296,-73.98184,Private room,150,2,28,2019-06-25,2.97,1,0 +28631359,Brooklyn Apartment 2,202074215,Michael,Brooklyn,Bedford-Stuyvesant,40.6843,-73.91985,Entire home/apt,89,3,47,2019-06-24,4.88,2,23 +28631715,Williamsburg Home with a View,216061803,Joe,Brooklyn,Williamsburg,40.71672,-73.95484,Entire home/apt,180,2,3,2019-04-22,0.98,1,0 +28632449,Entire 2 Bedroom Apartment — Murray Hill NYC,16624745,Katie,Manhattan,Murray Hill,40.74704,-73.97356,Entire home/apt,250,30,0,,,3,92 +28632837,Lovely RM in Astoria with great location.,137358866,Kazuya,Queens,Astoria,40.76655,-73.92463,Private room,51,30,0,,,103,216 +28633104,3rd FL Private 2BR apartment with dinning room,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93681,Entire home/apt,139,1,10,2019-02-27,1.05,9,7 +28634470,Beautiful Garden Apt in Prime Bushwick,25617559,Erin,Brooklyn,Bushwick,40.7042,-73.9259,Entire home/apt,89,4,6,2019-01-05,0.73,1,0 +28635035,Beautiful garden apartment,88111418,Micheline,Queens,St. Albans,40.69113,-73.75524,Entire home/apt,70,3,12,2019-06-20,1.31,1,323 +28635287,Brooklyn Studio Apartment,216086952,Troy,Brooklyn,Bedford-Stuyvesant,40.69113,-73.9273,Entire home/apt,99,1,21,2019-06-30,2.23,1,87 +28635684,Room with Amazing View in Manhattan!,216090534,Sophie,Manhattan,Hell's Kitchen,40.76539,-73.99145,Private room,150,2,38,2019-06-23,4.15,2,243 +28635863,Fabulous West Village Modern Luxury,6332730,Nita,Manhattan,Greenwich Village,40.7348,-73.99785,Entire home/apt,400,90,0,,,1,365 +28636781,Clinton Hill Heavenly Haven - shared,697469,Grace,Brooklyn,Clinton Hill,40.69288,-73.96101,Private room,69,3,6,2019-04-21,0.62,1,174 +28637001,"Room with a View, Next to Times Square!",216090534,Sophie,Manhattan,Hell's Kitchen,40.76282,-73.98847,Private room,145,2,38,2019-06-21,4.25,2,256 +28637635,Room 3 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80731,-73.94516,Private room,53,30,0,,,6,198 +28637994,Spacious Room in Upper Manhattan,2605122,Jessica,Manhattan,Harlem,40.8072,-73.94513,Private room,55,28,3,2018-10-30,0.33,1,0 +28638855,Cute & Cozy Studio in the BEST part of BK,7505271,Simone,Brooklyn,Greenpoint,40.72586,-73.94466,Private room,99,1,8,2018-12-30,0.92,1,0 +28640338,Luxury Apartment/ Wall Street,56656728,Bret,Manhattan,Financial District,40.7112,-74.0094,Entire home/apt,209,1,51,2019-07-06,5.82,5,1 +28640741,Airy Brooklyn Artist's Loft,95415432,Molly,Brooklyn,Williamsburg,40.71621,-73.96407,Entire home/apt,280,4,0,,,1,43 +28641018,Heart of Astoria,214923987,Nadira,Queens,Ditmars Steinway,40.77643,-73.91156,Private room,55,4,19,2019-06-23,2.13,1,89 +28641288,TOWN HOME ONE,63953718,Chai,Queens,Elmhurst,40.73137,-73.87193,Private room,69,2,3,2018-11-15,0.33,1,0 +28642074,Cozy BX Corner,216136826,Shawn,Bronx,Wakefield,40.8878,-73.85372,Private room,47,2,13,2019-07-02,1.62,1,347 +28642335,Cozy/Clean/ Private Bedroom in Uptown Manhattan.,12672019,Elizabeth,Manhattan,Washington Heights,40.83766,-73.94045,Private room,65,5,23,2019-06-28,2.47,1,255 +28642660,Private furnished bedroom in Williamsburg,2871975,Padraig,Brooklyn,Williamsburg,40.70973,-73.96405,Private room,65,5,3,2019-06-30,0.74,1,31 +28642786,Excellent Loc best value Midtown studio/nearMacy’s,9698896,Sanyam,Manhattan,Midtown,40.74971,-73.98682,Entire home/apt,108,2,6,2019-05-29,0.62,1,0 +28643600,Waterfront condo with swimming pool,17486626,Alessandro,Brooklyn,Williamsburg,40.71953,-73.96401,Private room,70,2,14,2019-06-24,1.52,2,3 +28644822,Home of the artists,162974717,Samantha,Brooklyn,Prospect-Lefferts Gardens,40.65787,-73.95927,Private room,60,1,15,2019-05-22,1.62,1,0 +28646412,Astoria Queens. A Perfect Room to Stay in 3BR2BA,137358866,Kazuya,Queens,Astoria,40.768,-73.92388,Private room,45,30,0,,,103,246 +28647979,"Home For Medical Professionals - ""The Tesla""",26377263,Stat,Brooklyn,East Flatbush,40.65246,-73.93791,Private room,57,30,0,,,43,138 +28652436,"Large bedroom in Sunny 2-Bed, 1-Bath",15105613,Elizabeth,Manhattan,Upper East Side,40.77713,-73.95096,Private room,70,30,1,2018-12-09,0.14,1,236 +28654606,Warm Duplex Townhouse,191849342,Joseph,Brooklyn,Crown Heights,40.67177,-73.95334,Entire home/apt,500,4,9,2019-06-22,1.32,1,247 +28655675,Williamsburg 1 Private Queen Bedroom and Bathroom,20990306,Elizabeth,Brooklyn,Williamsburg,40.71257,-73.94946,Private room,95,2,32,2019-06-19,3.38,2,1 +28656163,Celebrity Home Artistic Master Bdrm,213816392,DuChess,Queens,Queens Village,40.70649,-73.74517,Private room,41,1,24,2019-06-28,2.47,3,351 +28656606,UWS 1 bedroom near everything,3606458,Mathew,Manhattan,Upper West Side,40.79517,-73.97392,Entire home/apt,300,1,0,,,2,358 +28657242,Charming and spacious duplex in classic brownstone,137817563,Tal & Amarelle,Brooklyn,Bedford-Stuyvesant,40.68161,-73.93811,Entire home/apt,140,28,0,,,4,173 +28658564,Perfectly located UWS - Cool Clean studio,196211856,Tarun,Manhattan,Upper West Side,40.77771,-73.98023,Entire home/apt,145,5,4,2019-05-05,0.53,1,0 +28658731,Gorgeous Bedroom in the heart of Bushwick Him-2L-1,216235179,Nina,Brooklyn,Bushwick,40.69952,-73.91868,Private room,55,30,1,2019-05-04,0.45,17,342 +28659172,Spacious/comfortable/detailed/eclectic apartment,23871497,Jay,Queens,Jackson Heights,40.75154,-73.8907,Entire home/apt,95,3,12,2019-07-01,1.31,1,31 +28659175,Spacious Private Bedroom in the heart of Bushwick!,216235179,Nina,Brooklyn,Bushwick,40.69933,-73.92079,Private room,50,30,0,,,17,327 +28659894,Private bedroom in prime Bushwick! Near Trains!!!,216235179,Nina,Brooklyn,Bushwick,40.69988,-73.92072,Private room,55,30,4,2019-04-12,0.58,17,358 +28660068,Gorgeous Bedroom in the heart of Bushwick Him-2R-3,216235179,Nina,Brooklyn,Bushwick,40.70011,-73.92043,Private room,55,30,0,,,17,336 +28660257,Gorgeous Bedroom in the heart of Bushwick Him-3R-3,216235179,Nina,Brooklyn,Bushwick,40.70161,-73.91922,Private room,50,30,1,2019-07-01,1,17,184 +28660377,Gorgeous Bedroom in the heart of Bushwick Him-2R-1,216235179,Nina,Brooklyn,Bushwick,40.69938,-73.91953,Private room,55,30,1,2018-12-21,0.15,17,339 +28661274,Incredible Brookly Room!,205234874,Petera,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94341,Private room,60,2,19,2019-05-03,2.14,2,251 +28661332,Gorgeous Bedroom in the heart of Bushwick Him-3R-1,216235179,Nina,Brooklyn,Bushwick,40.70026,-73.92026,Private room,50,30,0,,,17,315 +28661542,Gorgeous Bedroom in the heart of Bushwick Him-2R-2,216235179,Nina,Brooklyn,Bushwick,40.70126,-73.92077,Private room,55,35,2,2019-03-29,0.30,17,365 +28661704,Gorgeous Bedroom in the heart of Bushwick Him-3R-2,216235179,Nina,Brooklyn,Bushwick,40.70082,-73.91859,Private room,50,30,2,2019-06-30,0.47,17,319 +28661866,Gorgeous Bedroom in the heart of Bushwick Him-3R-4,216235179,Nina,Brooklyn,Bushwick,40.70124,-73.92013,Private room,50,30,0,,,17,131 +28662351,Large Room in Manhattan Steps to Subway,51413809,Erik,Manhattan,East Harlem,40.79933,-73.94283,Private room,59,1,29,2019-06-15,2.99,1,247 +28663593,WILLIAMSBURG LUXURY BUILDING (BEST LOCATION),216091157,Sofia,Brooklyn,Greenpoint,40.72108,-73.95215,Entire home/apt,200,5,5,2018-12-09,0.52,1,0 +28666327,Cozy loft private bathroom,216287451,Marcela,Brooklyn,Bushwick,40.69038,-73.91909,Private room,85,1,1,2018-11-11,0.12,1,177 +28666578,Large Cozy Bedroom 10 mins from Times Sq. 33C3,190921808,John,Manhattan,Hell's Kitchen,40.75584,-73.99559,Private room,120,7,4,2019-04-16,0.44,47,365 +28667225,A Good Night Sleep,115545139,Sixta,Brooklyn,East New York,40.65894,-73.89343,Private room,39,2,54,2019-06-26,5.63,2,60 +28667823,Private Room in Authentic Luxury Loft,4440548,Thomas,Brooklyn,Williamsburg,40.71526,-73.9469,Private room,65,3,6,2019-04-28,0.65,2,88 +28667969,Lola’s Haven,216299753,Omoti,Brooklyn,Canarsie,40.63284,-73.91149,Private room,80,2,11,2019-02-08,1.15,1,5 +28668546,Brooklyn House at 443 Linden Room 1,216304678,Bryan,Brooklyn,East Flatbush,40.65409,-73.94214,Private room,46,3,13,2019-06-08,1.41,5,341 +28668879,Lefferts Garden! Real Brooklyn flavor!,330123,Nicole And Adrian,Brooklyn,Flatbush,40.65458,-73.95677,Entire home/apt,80,5,3,2018-10-25,0.33,1,0 +28669168,Cozy Room in the Center of Manhattan!,214037223,Monze,Manhattan,Kips Bay,40.74256,-73.97912,Private room,135,2,35,2019-06-14,3.79,3,267 +28670390,"Home For Medical Professionals - ""The Abducens""",26377263,Stat,Brooklyn,East Flatbush,40.65351,-73.93768,Private room,57,30,0,,,43,311 +28670432,X 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.64036,-74.00822,Private room,26,1,13,2019-04-12,1.36,5,141 +28671481,Best Location x Sparkling Clean x Private Studio,26769462,Brenda,Manhattan,Midtown,40.74894,-73.98673,Entire home/apt,170,5,28,2019-06-01,3.13,1,0 +28671495,"Home For Medical Professionals - ""The Xenon""",26377263,Stat,Brooklyn,East Flatbush,40.65245,-73.93752,Private room,53,30,0,,,43,346 +28671992,Cozy Bedroom with Private Bath,205132904,Farah,Staten Island,Tompkinsville,40.63311,-74.07936,Private room,55,2,48,2019-07-02,4.97,2,302 +28672201,The Groundhog Inn. Entire Apt Near Subway Vegan,96076215,Mike,Brooklyn,Bushwick,40.69986,-73.92095,Entire home/apt,105,1,58,2019-05-01,6.02,1,0 +28680502,Spacious clean private bedroom,169396379,Mehdi,Brooklyn,Flatbush,40.65417,-73.95524,Private room,95,1,12,2019-06-15,1.30,1,179 +28680576,Cozy Room With Big Comfortable Bed!,216375039,Tosin/Rashon,Manhattan,East Harlem,40.79368,-73.93492,Private room,95,1,43,2019-06-01,4.46,1,0 +28680995,Brooklyn House,208610094,Eufemia,Brooklyn,Flatlands,40.62908,-73.92265,Private room,40,1,38,2019-07-01,3.93,1,365 +28681181,Clinton Hill/Bedstuy Brooklyn stylish and artsy,8859112,Navin,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95183,Entire home/apt,100,2,27,2019-07-05,2.79,2,255 +28682647,Private room in Bushwick Brooklyn,216392786,Kaz,Brooklyn,Bushwick,40.6982,-73.93034,Private room,60,2,21,2019-05-28,2.31,1,57 +28684892,Sweet Tribeca Studio w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71618,-74.00608,Entire home/apt,282,30,0,,,232,244 +28687609,Studio Apartment with Bridge and River Views,11160056,Selena,Manhattan,Two Bridges,40.71079,-73.99304,Entire home/apt,135,2,4,2019-03-01,0.41,1,0 +28688612,Upper west side room,133762456,Gloria,Manhattan,Upper West Side,40.78588,-73.97117,Private room,200,4,0,,,1,365 +28689388,Huge 1 BR APT in Heart of Astoria,9808087,Emil,Queens,Ditmars Steinway,40.77379,-73.91875,Entire home/apt,95,3,13,2019-06-24,1.39,1,0 +28689514,Brooklyn Heart,216437098,Trevor,Brooklyn,Bedford-Stuyvesant,40.68392,-73.92123,Entire home/apt,110,2,9,2019-03-18,0.96,2,41 +28690074,Spacious Cozy Private Room close to Central Park,214135354,Min,Manhattan,Upper East Side,40.77601,-73.95114,Private room,90,1,75,2019-06-30,7.76,2,283 +28690364,En-suite room with PRIVATE bathroom,120767920,Jimmy &Cindy,Queens,Flushing,40.75548,-73.81372,Private room,53,2,24,2019-07-07,2.61,10,359 +28690371,"420 friendly rm,lots of sunlight great for couples",75030544,Sunny,Brooklyn,Bedford-Stuyvesant,40.68166,-73.91625,Private room,85,12,4,2019-03-23,0.42,4,365 +28692213,"One bedroom, with huge backyard for personal space",195262476,Eleonora,Queens,Ditmars Steinway,40.77671,-73.90543,Entire home/apt,100,1,9,2019-03-17,1.03,1,2 +28692232,Luxury Affordable comfort in the Bronx-Suite 3!,216456504,Annick,Bronx,Wakefield,40.89399,-73.84279,Private room,65,1,52,2019-06-28,5.40,3,363 +28692626,"Pvt 1 full bed 10 min from JFK, close to Manhattan",23370431,Melissa,Queens,Hollis,40.71694,-73.75656,Private room,55,2,16,2019-06-19,1.71,2,178 +28692911,Private One Bedroom Apartment,12166742,Yizak,Brooklyn,Flatlands,40.62515,-73.94409,Entire home/apt,85,1,21,2019-07-05,2.26,1,82 +28693418,Traveler's Rest,64673584,Jacob,Manhattan,Upper West Side,40.78285,-73.97487,Entire home/apt,200,7,5,2019-06-23,0.53,1,1 +28694075,Greenpoint 2BR,4654272,Cooper,Brooklyn,Greenpoint,40.72891,-73.95345,Entire home/apt,225,2,37,2019-06-29,3.84,1,229 +28695405,Luxury apartment. ONE STOP from midtown MANHATTAN!,215535399,Smith,Queens,Long Island City,40.75188,-73.94548,Private room,95,3,1,2018-10-08,0.11,1,24 +28696741,Exclusive Modern Penthouse Apartment,48483287,Bronica,Manhattan,East Harlem,40.80655,-73.93872,Entire home/apt,175,1,7,2018-12-26,0.76,1,0 +28697632,Spacious and clean 1BR apt. in Uptown Manhattan,216492330,Michael,Manhattan,Washington Heights,40.85428,-73.93204,Entire home/apt,189,3,8,2019-05-05,0.88,1,358 +28697997,"Home For Medical Professionals - ""The Fossa""",26377263,Stat,Brooklyn,East Flatbush,40.65438,-73.93676,Private room,53,30,1,2019-06-29,1,43,304 +28699232,"Home For Medical Professionals - ""The Gamma""",26377263,Stat,Brooklyn,East Flatbush,40.65279,-73.93817,Private room,57,30,0,,,43,283 +28699654,"Home For Medical Professionals - ""The Kinetic""",26377263,Stat,Brooklyn,East Flatbush,40.65429,-73.93601,Private room,57,30,0,,,43,306 +28699887,Brooklyn Home,44338944,Ethan,Brooklyn,Sunset Park,40.64349,-74.02347,Entire home/apt,80,14,2,2019-05-31,0.24,1,184 +28701957,"Midtown West, very cozy place with your own room, prime location.",216519008,Sam,Manhattan,Hell's Kitchen,40.76382,-73.98902,Private room,97,3,8,2019-06-05,0.86,2,10 +28703204,"Multi unit building , cozy room. Ny",216519008,Sam,Manhattan,West Village,40.7404,-74.00497,Private room,79,3,2,2019-05-17,0.23,2,0 +28709382,Huge bedroom with private half bath prime location,22992959,Eric,Brooklyn,Bushwick,40.70012,-73.92777,Private room,80,2,3,2019-01-03,0.33,1,0 +28711718,Harlem apartment,57430885,Diana,Manhattan,Harlem,40.81574,-73.94212,Private room,39,10,1,2019-01-08,0.16,1,0 +28711792,East Village Cottage Life,865148,Eliza,Manhattan,East Village,40.72939,-73.98007,Private room,85,2,26,2019-07-05,3.07,1,165 +28713390,Private Open Space,216586341,Joe,Brooklyn,Crown Heights,40.67172,-73.95031,Entire home/apt,50,3,3,2018-11-07,0.33,1,0 +28713500,San Carlos Hotel Deluxe Room- up to 3,173685298,Janet,Manhattan,Midtown,40.75499,-73.97121,Private room,330,1,4,2019-02-17,0.48,11,176 +28715201,Simple Spacious RM near Queens Center Mall & NYPD,137358866,Kazuya,Queens,Elmhurst,40.74432,-73.87123,Private room,37,30,1,2019-03-10,0.25,103,252 +28715332,TRIBECA/SOHO 2 BEDROOM LUXURY LOFT,122323589,Roberto,Manhattan,Tribeca,40.71979,-74.00407,Entire home/apt,799,3,6,2019-04-22,0.66,1,325 +28715589,Cozy Loft Apartment - Convenient Location!,38579823,Diane,Manhattan,Chelsea,40.75064,-73.99536,Entire home/apt,150,1,12,2018-12-17,1.29,1,0 +28715862,Bright & Peaceful Brooklyn Abode!,202950759,Christiana,Brooklyn,Crown Heights,40.6716,-73.9564,Entire home/apt,195,2,37,2019-07-03,4.04,1,199 +28716187,Home away from home,216611306,Eme,Queens,Briarwood,40.71378,-73.80796,Private room,50,1,13,2019-04-08,1.46,1,0 +28717231,PRIVATE BATH • AC • Yard • Historic Brownstone,16064187,Michael And Lindsey,Brooklyn,Crown Heights,40.67326,-73.95503,Private room,100,2,18,2019-06-21,2.07,1,61 +28718446,Modern East Village Apartment off Bowery,9155419,Frans,Manhattan,East Village,40.72615,-73.98905,Private room,140,2,5,2019-05-19,0.55,1,149 +28718812,One bed room apartment,214610799,Antonio,Manhattan,East Harlem,40.79695,-73.9356,Entire home/apt,275,2,2,2018-09-29,0.21,1,7 +28719635,Beautiful house with a beautiful room and more,96978924,Ree,Brooklyn,East Flatbush,40.63575,-73.94235,Entire home/apt,85,1,5,2019-01-01,0.55,1,124 +28720687,"BP DORM STYLE SHARED ROOM, BIG BEAUTIFUL HOME+WIFI",213208277,Darry,Brooklyn,Borough Park,40.64214,-73.99237,Shared room,31,5,7,2019-06-29,0.78,8,365 +28721018,Brooklyn Sunny room 5 min to subway,174261493,Sophie & Max,Brooklyn,Sheepshead Bay,40.61051,-73.95508,Private room,99,2,10,2019-06-02,1.05,2,0 +28721911,Crash pad,156505456,John,Brooklyn,East New York,40.66704,-73.87525,Private room,117,3,4,2019-03-17,0.43,13,85 +28722807,Bright and Spacious Loft in Brooklyn,3017533,Briana,Brooklyn,Sunset Park,40.6642,-73.99338,Entire home/apt,160,2,51,2019-07-05,5.39,1,15 +28722897,Charming Shared Place in East Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79912,-73.94202,Shared room,65,2,33,2019-05-24,3.44,9,10 +28730126,Beautiful Apartment in West Village,13092234,Andrew,Manhattan,West Village,40.73113,-74.00831,Private room,295,6,0,,,1,0 +28730167,Quite place by the park,25326,Gregory,Brooklyn,Windsor Terrace,40.65777,-73.97487,Entire home/apt,105,1,15,2019-06-07,1.56,2,269 +28730408,Brooklyn Carriage House,171433016,Vikki,Brooklyn,Clinton Hill,40.68633,-73.96539,Entire home/apt,225,2,29,2019-06-16,3.14,1,36 +28730581,NEAR 5th AVE RENOVATED STUDIO IN BROOKLYN,188212054,Joanna,Brooklyn,Bay Ridge,40.62165,-74.02336,Entire home/apt,245,3,18,2019-06-10,1.94,2,255 +28731208,"Lovely, Spacious Cottage in Ditmas Park",2260289,Matt & Quin,Brooklyn,Flatbush,40.63882,-73.96563,Entire home/apt,185,5,2,2018-11-23,0.26,1,33 +28732998,Quintessential Tribeca Loft,3612407,Mag,Manhattan,Tribeca,40.7172,-74.00675,Entire home/apt,295,3,3,2018-12-08,0.33,1,17 +28733777,"Clean, quiet space in Upper East Side",214119114,Lagane,Manhattan,East Harlem,40.78781,-73.94549,Private room,75,3,0,,,1,0 +28734234,Cozy 4BDR Unit in Greenpoint mins to Manhattan,188023318,Selina,Brooklyn,Greenpoint,40.7256,-73.95698,Entire home/apt,480,1,8,2019-06-30,3.24,4,63 +28734328,Comfortable and Bright 1 Bedroom Apartment,216738447,Emily,Brooklyn,Bedford-Stuyvesant,40.68528,-73.95217,Entire home/apt,190,2,3,2018-11-24,0.33,1,88 +28734438,New York Chelsea Apartment,545355,Kevin,Manhattan,Chelsea,40.74497,-74.00571,Entire home/apt,225,3,2,2019-01-01,0.26,1,0 +28734646,Cosy Williamsburg Apartment in Brooklyn New York,1104166,Mala,Brooklyn,Williamsburg,40.71223,-73.9524,Entire home/apt,325,5,0,,,4,0 +28734774,Spacious private room in the heart of Bed-Stuy,6520550,Ina,Brooklyn,Bedford-Stuyvesant,40.68506,-73.93841,Private room,59,2,8,2019-06-26,0.84,1,45 +28734815,Brand New Modern 1+2 Apt,57294304,Ekin,Manhattan,Hell's Kitchen,40.76464,-73.98737,Entire home/apt,250,1,0,,,1,0 +28735958,Modern Luxury Apartment with Washer & Dryer,2207585,David,Manhattan,Financial District,40.70565,-74.00666,Entire home/apt,139,20,0,,,1,0 +28736148,Cozy 1 Bedroom Apt in Hamilton Heights,43431867,Tommy,Manhattan,Washington Heights,40.83256,-73.9444,Entire home/apt,96,4,0,,,1,17 +28736269,Bright room - Williamsburg Lorimer Stop L train!,1104166,Mala,Brooklyn,Williamsburg,40.71304,-73.95235,Private room,60,2,23,2019-06-16,2.46,4,60 +28736839,"Gorgeous Harlem loft w/15 ft ceilings, sleeps 10",3251620,S,Manhattan,Harlem,40.81148,-73.9514,Entire home/apt,300,1,1,2018-10-10,0.11,1,0 +28736904,Modem 2 bedroom in Times sq for 5ppl,4443863,Lica,Manhattan,Hell's Kitchen,40.76419,-73.98949,Entire home/apt,325,1,59,2019-06-29,6.48,1,180 +28737665,Beautiful NYC loft 10min walk from Central Park,216764638,Bo,Manhattan,East Harlem,40.79145,-73.93962,Private room,100,3,22,2019-07-01,3.42,1,23 +28737860,Luxury Oasis in SoHo,333712,Rose,Manhattan,SoHo,40.72205,-74.00121,Entire home/apt,355,4,5,2019-06-08,0.64,1,31 +28738642,4th Floor en-suite Bath Room,216772639,Ling,Brooklyn,Borough Park,40.63378,-74.00599,Private room,60,1,7,2019-06-04,0.76,7,179 +28739729,Brand New Renovated Shared Room In Manhattan,209386156,Abraham,Manhattan,East Harlem,40.79983,-73.94116,Shared room,65,2,27,2019-05-25,2.80,9,11 +28739873,Arverne Bayside,195887266,Antonia,Queens,Arverne,40.59843,-73.79844,Entire home/apt,100,1,12,2019-05-30,2.29,1,65 +28740981,"Chic, light-filled Sugar Hill 1 bedroom",2225836,Jennifer,Manhattan,Harlem,40.82608,-73.94231,Entire home/apt,99,2,12,2019-06-12,1.38,1,6 +28741369,Cozy Renovated New Apt with Private Bathroom,216772639,Ling,Brooklyn,Borough Park,40.63549,-74.00553,Private room,65,1,16,2019-06-11,1.73,7,180 +28741548,Enjoyable Newly Renovated Private Room,216772639,Ling,Brooklyn,Borough Park,40.63424,-74.00556,Private room,58,1,12,2019-06-21,1.30,7,364 +28743080,"Clean, Cozy & Charming Shared Room in Manhattan",69494967,Gem,Manhattan,Midtown,40.75729,-73.96807,Shared room,75,1,18,2019-06-14,1.97,1,52 +28750104,Awesome 1BR in 2 room located in heart of Bushwick,109004750,JayJay,Brooklyn,Bushwick,40.69582,-73.9095,Private room,40,1,0,,,1,364 +28751375,Cozy Room in Brooklyn- Sunset Park,211353692,Josie,Brooklyn,Sunset Park,40.64634,-74.01419,Private room,50,2,8,2019-02-08,0.86,2,0 +28751496,"2-BR Apt 25min from TIMES SQUARE, Near Shops!",36391065,Vance,Queens,Astoria,40.75975,-73.91992,Entire home/apt,50,2,4,2019-06-03,0.46,1,20 +28751660,Alcove Studio 10 mins walk to Times Square,84720132,Nidhi,Manhattan,Hell's Kitchen,40.76591,-73.99493,Entire home/apt,300,4,4,2019-05-11,0.44,1,5 +28751912,Private Room in Brooklyn,211353692,Josie,Brooklyn,Sunset Park,40.64682,-74.01515,Private room,80,2,1,2019-01-02,0.16,2,65 +28752251,Sun-filled Apartment in Great Location,9165739,Jesse,Manhattan,Chelsea,40.74184,-74.00108,Private room,91,1,10,2019-06-30,1.09,1,0 +28754650,NYC Chelsea,216891728,Sonia,Manhattan,Chelsea,40.7458,-73.9957,Entire home/apt,140,32,29,2019-07-02,3.94,1,2 +28755241,New York Apt -Subway 5 min & Supermarket 1 min,37708037,Daniela,Manhattan,Financial District,40.70815,-74.00438,Entire home/apt,199,3,5,2019-06-08,0.66,1,37 +28756175,Huge Sunny Private Bedroom & Private Bathroom - BK,27186438,Kaylee,Brooklyn,East Flatbush,40.65345,-73.94881,Private room,43,6,2,2019-01-04,0.22,1,311 +28757780,New York City Private one bedroom and shared bath,216917414,Ramon,Manhattan,Washington Heights,40.85104,-73.93979,Private room,60,2,12,2018-12-12,1.34,2,0 +28757927,Astoria escape,64898741,Pete,Queens,Long Island City,40.75771,-73.93143,Private room,200,2,6,2019-05-22,0.69,2,90 +28758083,TJ Room,123145309,Akshay,Manhattan,Morningside Heights,40.81623,-73.96103,Private room,50,1,2,2018-10-08,0.22,1,0 +28759034,Large quiet private studio in East Harlem,196536266,Saki,Manhattan,East Harlem,40.80141,-73.93814,Entire home/apt,75,7,3,2018-11-23,0.32,1,161 +28759953,SoHo 1BR Apartment,38042569,Michael,Manhattan,SoHo,40.72301,-74.0049,Entire home/apt,150,7,1,2018-10-26,0.12,1,0 +28760070,Great one bedroom studio,7365834,Alex,Brooklyn,Sheepshead Bay,40.58296,-73.95879,Entire home/apt,99,30,1,2018-10-07,0.11,5,365 +28760189,Cozy Happy Place in Brooklyn 1 block from Subway,3094662,Fernanda,Brooklyn,Fort Hamilton,40.62288,-74.03082,Private room,90,3,12,2019-06-19,1.30,1,63 +28761069,Queen Sized Bdrm in Historic Harlem (Townhouse),92185816,Fiona,Manhattan,Harlem,40.80774,-73.94939,Private room,62,10,4,2019-06-20,0.48,3,345 +28761735,New york Multi-unit building,65827591,Nubia,Queens,Maspeth,40.73616,-73.89926,Shared room,55,1,0,,,3,47 +28762085,Private room! nice apartment near yankee stadium,202976102,Jayceon,Bronx,Concourse Village,40.83413,-73.91669,Private room,35,1,15,2019-06-25,3.88,1,70 +28762323,Gorgeous Spacious Duplex Apartment in Brooklyn,2300366,Yosub,Brooklyn,Williamsburg,40.70761,-73.9424,Entire home/apt,105,2,1,2018-10-04,0.11,2,3 +28763093,"Cozy, lux studio in prime NYC with amazing view",27815282,Milan,Manhattan,Theater District,40.76226,-73.98537,Entire home/apt,175,3,5,2019-06-14,0.58,1,83 +28763578,5min walk to L train - Free WiFi & Cleaning,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.7001,-73.91219,Private room,38,30,0,,,9,7 +28764308,Cute private room in the heart of Soho,69720852,Yana,Manhattan,SoHo,40.72004,-73.99862,Private room,100,5,7,2019-06-15,0.77,3,16 +28770601,Cozy Brooklyn 2 Bedroom for your BUDGET!,40892524,Bea,Brooklyn,Crown Heights,40.676,-73.92283,Entire home/apt,76,1,25,2019-06-03,3.10,1,287 +28773549,Elegant 2bdrm home in Midtown!,97417890,Angela,Manhattan,Midtown,40.74223,-73.98286,Entire home/apt,299,1,32,2019-07-07,4.40,2,264 +28775021,Industrial apartment in the heart of Bushwick,3180546,Monica,Brooklyn,Bushwick,40.69943,-73.93292,Entire home/apt,150,3,3,2018-12-07,0.39,1,0 +28775714,Cute apartment in Long Island City,9599815,Patricia Rose,Queens,Long Island City,40.74511,-73.95293,Entire home/apt,80,4,11,2019-06-03,1.25,1,24 +28777497,Gorgeous Cozy Brooklyn apartment suite,99133678,Chelsea,Queens,Ridgewood,40.7092,-73.91246,Private room,25,1,0,,,1,0 +28777968,PRIVATE BEDROOM and BATHROOM crown heights Aprtmnt,47180541,Natassha,Brooklyn,Crown Heights,40.6752,-73.94829,Private room,80,1,25,2019-06-01,2.73,1,11 +28778214,Beautiful Studio Apartment in East Harlem,148152874,Andrew,Manhattan,East Harlem,40.80046,-73.93677,Entire home/apt,59,4,9,2019-06-03,1.02,1,0 +28778379,Luxury 2 beds with 2 full baths and skyline view,32631901,Papis,Brooklyn,Williamsburg,40.71255,-73.9405,Entire home/apt,250,2,7,2019-05-19,0.76,1,2 +28778501,Big Room/Basement on three bedroom apt,13642781,Carlos A.,Brooklyn,Williamsburg,40.71259,-73.94163,Private room,100,1,1,2018-09-25,0.10,1,0 +28779020,Artist tenement apartment in NOLITA/Little Italy,866089,Launa,Manhattan,Little Italy,40.71862,-73.99677,Private room,115,5,3,2019-04-02,0.32,3,67 +28779353,A Sunny Room w/Private Bath. 20 m to Mnhttn,128300825,Anton,Brooklyn,Bedford-Stuyvesant,40.69276,-73.92966,Private room,70,2,53,2019-06-16,5.60,2,32 +28779428,3Bedroom+1.5bath Loft apartment,211549023,Studioplus,Manhattan,Midtown,40.74823,-73.98697,Entire home/apt,500,2,14,2019-06-17,2.07,13,272 +28779900,Brooklyn House at 443 linden Bedroom 2,216304678,Bryan,Brooklyn,East Flatbush,40.65267,-73.94293,Private room,46,3,10,2019-06-28,1.05,5,311 +28780407,"BRIGHT! Huge,Beautiful&Quiet Fort Greene (BK) Apt",1976287,Patrick,Brooklyn,Fort Greene,40.69178,-73.97345,Entire home/apt,145,3,5,2019-03-25,0.55,1,0 +28780515,2 bedrooms available• private garden • 2/5 train,5166260,Jenni & Eric,Brooklyn,East Flatbush,40.65241,-73.95088,Private room,80,2,51,2019-06-24,5.50,1,34 +28781373,Spacious & Sunny Brooklyn Home,5188470,Zoe,Brooklyn,Flatbush,40.6437,-73.95973,Entire home/apt,65,4,11,2019-07-07,1.46,1,19 +28782669,Encuentra la tranquilidad ideal,216411482,Adriana,Queens,East Elmhurst,40.76349,-73.88662,Private room,40,2,21,2019-06-27,2.27,1,30 +28784880,*PRIVATE* Loft 5 minutes away from LaGuardia,65671256,Freddy,Queens,Jackson Heights,40.75703,-73.85827,Entire home/apt,72,1,70,2019-06-24,7.42,3,98 +28785091,Brooklyn House at 443 Linden - Room 5,216304678,Bryan,Brooklyn,East Flatbush,40.65293,-73.9435,Private room,100,3,1,2018-12-04,0.14,5,305 +28785322,Beautiful and Convenient Location in Lower NYC,140983856,Nini,Manhattan,Financial District,40.71064,-74.00754,Entire home/apt,185,15,11,2019-05-29,1.23,2,331 +28785361,Large 2BED UN Location Full Kitchen Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75283,-73.96736,Entire home/apt,370,3,9,2019-05-15,0.96,8,316 +28786315,Brooklyn House at 443 Linden Room 3,216304678,Bryan,Brooklyn,East Flatbush,40.65285,-73.943,Private room,60,3,11,2019-05-18,1.17,5,347 +28786900,Brooklyn House at 443 linden Bedroom 4,216304678,Bryan,Brooklyn,East Flatbush,40.65256,-73.94185,Private room,70,3,2,2018-12-27,0.24,5,267 +28787365,1Cozy bedsty room,144204336,Jason,Brooklyn,Bedford-Stuyvesant,40.69336,-73.93857,Private room,53,2,18,2019-06-24,2.49,2,333 +28787471,Bed stuy duplex close to train,10838658,Karina,Brooklyn,Bedford-Stuyvesant,40.67644,-73.91078,Entire home/apt,110,2,7,2019-06-19,0.82,1,7 +28787488,1Delightful room in bedsty,144204336,Jason,Brooklyn,Bedford-Stuyvesant,40.69272,-73.93807,Private room,53,2,24,2019-05-21,2.93,2,337 +28790081,HUGE 3 BDR Apt & 2 Baths ✴EAST VILLAGE✴,17814794,Hanna,Manhattan,East Village,40.72615,-73.98477,Entire home/apt,59,2,17,2019-07-01,5.05,1,79 +28790940,East Village - Two twin beds,217154594,Ryan,Manhattan,East Village,40.73046,-73.98589,Private room,79,5,8,2019-04-28,0.85,1,51 +28794872,2 bedroom Corner unit overlooking the park,114022893,Christine,Brooklyn,Sunset Park,40.64907,-74.00579,Entire home/apt,150,4,22,2019-06-08,2.44,1,123 +28799008,"Lovely, bright 2BR Apt in Crown Heights",116538157,Kate,Brooklyn,Crown Heights,40.67132,-73.95235,Entire home/apt,200,2,22,2019-07-06,3.44,1,20 +28801345,Cozy Chic Bedroom in the Heart of West Village,1015883,Katie,Manhattan,West Village,40.73106,-74.00301,Private room,125,1,7,2019-05-22,0.83,1,156 +28801976,Modern renovated Loft in the Heart of Williamsburg,1171704,Vanessa,Brooklyn,Williamsburg,40.70475,-73.93522,Entire home/apt,200,2,16,2019-06-23,1.99,1,136 +28802019,Modern Manhattan Brownstone -1 Block to Subway,217221109,Rich,Manhattan,Harlem,40.80839,-73.94375,Entire home/apt,200,1,40,2019-07-02,4.88,1,274 +28803718,Art Filled Private Room,62776991,Cem,Brooklyn,Sunset Park,40.66323,-73.99573,Private room,60,5,3,2019-05-10,0.47,1,0 +28805003,"Micro-Studio in Hells Kitchen, Shared Bath",198861577,Novo,Manhattan,Hell's Kitchen,40.76021,-73.99197,Private room,69,30,0,,,5,0 +28805245,Just Peachy: East Village. Come home already!,217251565,Just,Manhattan,East Village,40.7237,-73.98514,Private room,125,1,25,2019-06-30,2.68,1,68 +28805290,Private room in Williamsburg loft,217251106,Janine,Brooklyn,Williamsburg,40.71242,-73.95919,Private room,70,4,1,2019-02-15,0.21,1,156 +28807852,Downtown in NOHO a block from broome street.,217268929,Bella,Manhattan,SoHo,40.72458,-74.00312,Private room,100,3,3,2018-10-27,0.33,1,363 +28807969,"Exceptionally Cute, Cozy East Village Unit",204622039,Raymond,Manhattan,East Village,40.72443,-73.98406,Entire home/apt,359,2,19,2019-06-16,2.06,1,252 +28810799,Spacious Comfy livingroom Lounge spot in BronxHome,217290804,Robert,Bronx,Morris Park,40.85661,-73.85281,Shared room,40,1,2,2018-10-29,0.23,1,88 +28811035,New York House,217293060,Mohan,Manhattan,Greenwich Village,40.73278,-73.99712,Entire home/apt,175,90,0,,,4,311 +28811363,Warm little oasis in Brooklyn with Full size bed,42561290,Carla,Brooklyn,East New York,40.66197,-73.86794,Private room,30,2,3,2019-02-01,0.46,4,158 +28812604,"Street-view room near Union Square, Greenwich Vilg",4915341,Son,Manhattan,Greenwich Village,40.73596,-73.99614,Private room,120,30,3,2018-11-30,0.37,3,119 +28812837,Charming Mid Century One Bedroom,21376165,Ellis,Brooklyn,Flatbush,40.63867,-73.96571,Entire home/apt,95,6,1,2018-10-28,0.12,1,0 +28813184,Tranquil East Village 1 Bedroom,18602194,Carolyn,Manhattan,East Village,40.72984,-73.98588,Entire home/apt,125,3,2,2019-01-01,0.27,1,45 +28815052,Quaint West Village Hideaway,217321404,Sophia,Manhattan,West Village,40.73953,-74.0049,Entire home/apt,225,3,15,2019-05-16,1.72,1,6 +28815149,"Charming Bk Crash Pad, relax & unwind with ease",1029021,Jameelah,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93236,Private room,57,1,13,2019-05-26,2.22,3,16 +28816767,THE CREATIVE CAVE BY CONEY ISLAND,217332035,Rose,Brooklyn,Sheepshead Bay,40.59063,-73.94588,Private room,37,1,1,2018-10-07,0.11,2,364 +28816970,Amazing Studio in the heart of East Village,76610380,Ana,Manhattan,East Village,40.72925,-73.98459,Entire home/apt,150,3,12,2019-06-22,1.26,1,0 +28817246,"Sweet, Small Brooklyn Room!",205268444,Jordan,Brooklyn,Bedford-Stuyvesant,40.69334,-73.93849,Private room,36,2,1,2018-11-18,0.13,1,0 +28817364,Cozy Spacious Studio 15 mins -Time Square,107516522,Jaime,Queens,Woodside,40.74451,-73.91106,Entire home/apt,115,2,34,2019-06-20,3.72,1,81 +28820641,Located in the perfect neighborhood of NYC a gem,130562125,Emma,Manhattan,SoHo,40.72608,-74.00336,Entire home/apt,350,2,32,2019-07-01,3.42,1,284 +28826608,“For Heaven Cakes”,217379941,Brent,Queens,Springfield Gardens,40.66457,-73.76918,Entire home/apt,75,1,132,2019-07-05,15.78,1,28 +28830379,The Best apartment in NYC for the Best guest!,174263749,Shopper,Manhattan,Washington Heights,40.84358,-73.94051,Private room,155,4,0,,,3,90 +28831635,NYC Apartment - Upper East Side True 1 Bedroom,46641887,Zachary,Manhattan,Upper East Side,40.76831,-73.95629,Private room,149,10,2,2018-10-30,0.23,1,40 +28832811,"Spacious Room in a Historic, Beautiful Apartment",15148834,Rafic,Manhattan,Chelsea,40.74413,-74.00004,Private room,90,3,4,2019-06-28,0.43,1,0 +28833210,Bright Room 20-203,115993835,Shimin,Brooklyn,Sunset Park,40.63867,-74.00681,Private room,29,1,12,2019-04-03,1.37,5,66 +28833297,"HUGE SPACE, HEART OF BROOKLYN, 1 BLOCK FROM SUBWAY",131976173,Mira,Brooklyn,Bedford-Stuyvesant,40.69012,-73.95433,Private room,200,1,73,2019-07-02,7.99,3,65 +28833410,Bright two bedroom apartment in Soho,40394752,Vanya,Manhattan,SoHo,40.72277,-74.00464,Entire home/apt,275,5,6,2019-06-25,0.71,2,9 +28834703,Beautiful Brooklyn Brownstone Entire Parlor Floor.,217432173,Dan,Brooklyn,Bedford-Stuyvesant,40.68085,-73.94354,Entire home/apt,130,2,48,2019-06-27,5.12,1,267 +28835184,Bronx Apartment,217439132,Rosalyn,Bronx,Edenwald,40.88805,-73.83248,Entire home/apt,90,15,0,,,1,89 +28835678,Charming and cozy one-bedroom on Upper West Side,94395484,Rosemarie,Manhattan,Morningside Heights,40.81511,-73.95998,Entire home/apt,140,2,6,2019-02-24,0.66,1,0 +28836267,"Good location in queen +Near by subway (3 block)",50855262,Fone,Queens,Elmhurst,40.74688,-73.8817,Private room,45,7,4,2019-05-31,0.46,3,21 +28836976,New York Apartment / HIDDEN GEM ROSEDALE LLC,174197082,Deborah,Queens,Rosedale,40.65644,-73.72817,Entire home/apt,80,1,9,2019-07-05,1.79,2,116 +28837152,Harlem Oasis,153269305,Kaitlyn,Manhattan,Harlem,40.8087,-73.94335,Private room,110,30,3,2018-10-18,0.33,1,90 +28838614,Sunny one bedroom renovated apartment,73638523,Stephany,Queens,Queens Village,40.72085,-73.7496,Entire home/apt,68,2,33,2019-06-30,3.60,1,282 +28838673,Luxury Brownstone living in the heart of Brooklyn,290055,Julian,Brooklyn,Bedford-Stuyvesant,40.68523,-73.93833,Entire home/apt,275,3,43,2019-06-24,4.54,1,123 +28838780,Studio w/ great location in the heart of Brooklyn!,65826607,Dylan,Brooklyn,Downtown Brooklyn,40.69632,-73.98454,Entire home/apt,90,2,2,2019-03-11,0.32,1,0 +28838875,Charming 2 Bedroom Apartment in Ideal Location,1228328,Hedda,Brooklyn,Downtown Brooklyn,40.69769,-73.98386,Entire home/apt,250,2,8,2019-05-21,0.85,1,29 +28839265,Cozy MasterBed Room Suite w/Jacuzzi Tub,10321540,Steven,Queens,Bayswater,40.60845,-73.75861,Private room,60,1,9,2019-06-12,1.13,1,84 +28840001,Beautiful Cozy Studio Apartment,217468746,Timothy,Staten Island,Stapleton,40.62448,-74.08317,Entire home/apt,89,1,23,2019-07-05,2.43,1,0 +28840175,Pretty and cozy 2BR apartment in Chelsea,217111553,Jason,Manhattan,Chelsea,40.7467,-73.99335,Entire home/apt,288,3,44,2019-07-06,4.78,1,48 +28841259,Beautiful Duplex & Private Terrace in Williamsburg,21058022,Pablo,Brooklyn,Williamsburg,40.70779,-73.94714,Private room,70,3,4,2019-06-23,0.63,3,3 +28841309,Times Square Prime Two Bedroom Near Port Authority,215683904,Ryan,Manhattan,Hell's Kitchen,40.75768,-73.99417,Entire home/apt,159,30,0,,,1,333 +28841361,A place to stay,217484828,Benjamin,Bronx,East Morrisania,40.83285,-73.8879,Entire home/apt,60,1,22,2019-07-07,2.40,1,279 +28842166,Cozy room by South Seaport,93560404,Ada,Manhattan,Financial District,40.70417,-74.00928,Private room,100,1,31,2019-06-24,3.35,1,195 +28843143,New York City Private bedroom and shared bath,216917414,Ramon,Manhattan,Washington Heights,40.85157,-73.93936,Private room,60,2,16,2018-12-27,1.75,2,0 +28843808,Luxury Townhome in the heart of Brooklyn,23542079,Teres,Brooklyn,East Flatbush,40.64565,-73.93164,Entire home/apt,99,5,1,2018-11-26,0.13,2,0 +28844940,The Brooklyn Blue House 3,183127881,Giana,Brooklyn,Canarsie,40.646,-73.90189,Private room,59,2,35,2019-05-24,3.85,4,176 +28845130,Modern Luxury Spacious Suite 15min from Manhattan,72513663,Teddy,Queens,Sunnyside,40.74693,-73.92188,Private room,119,1,27,2019-06-29,2.88,1,27 +28846489,Dumbo paradise,40529301,Tommy,Brooklyn,Fort Greene,40.69617,-73.97456,Private room,89,1,24,2019-06-06,3.09,2,72 +28849818,"Colorful East Village 1BR, Gym, Doorman, Rooftop by Blueground",107434423,Blueground,Manhattan,East Village,40.72272,-73.98379,Entire home/apt,314,30,0,,,232,330 +28850624,Cozy room in historic Brooklyn walk-up,47485031,Ben,Brooklyn,South Slope,40.66189,-73.97946,Private room,60,2,1,2018-10-30,0.12,1,36 +28852284,Charming One Bedroom in Washington Heights,27108723,Aly,Manhattan,Washington Heights,40.84578,-73.93902,Entire home/apt,66,1,12,2019-07-06,1.83,1,5 +28856920,FiDi 1 Bedroom w/Huge Gym in Luxury Building,4722955,Kelly,Manhattan,Financial District,40.70665,-74.01503,Entire home/apt,175,30,1,2018-12-31,0.16,1,54 +28857304,Chic Brooklyn Artist Loft w/ Stunning Views,140173,Tucker,Brooklyn,Greenpoint,40.73498,-73.95805,Entire home/apt,150,3,7,2019-03-16,0.80,1,0 +28859453,"Gorgeous, Prime West Village Apt!",93705483,Andrea,Manhattan,West Village,40.73161,-74.00172,Entire home/apt,310,2,4,2019-06-21,0.48,2,8 +28859648,"Spacious room in a huge house, East williamsburg",217591735,Alison,Brooklyn,Williamsburg,40.70664,-73.93978,Private room,70,2,4,2019-04-28,0.45,1,0 +28859846,Business Travelers/2 bedrooms,8857758,Cleonides,Queens,Maspeth,40.72972,-73.89916,Entire home/apt,109,5,1,2019-06-30,1,2,160 +28860105,3 Bedroom Penthouse in FiDi NYC,5330754,Christina,Manhattan,Financial District,40.70734,-74.00837,Entire home/apt,300,30,0,,,1,310 +28860221,shared room in east harlem,217595343,Jack,Manhattan,East Harlem,40.80046,-73.94239,Shared room,65,1,2,2019-06-30,2,2,64 +28861629,Comfort and Charm in Harlem with a View!!!,138957777,Azarii,Manhattan,East Harlem,40.80226,-73.93734,Private room,83,2,25,2019-06-24,2.69,1,161 +28862464,Harlem Gem,75972444,Danielle,Manhattan,Harlem,40.80659,-73.95266,Private room,200,1,2,2019-06-24,2,1,32 +28862531,"Williamsburg Private Room, 15 Mins. to Manhattan!",90294445,Brendan,Brooklyn,Williamsburg,40.70672,-73.94491,Private room,90,4,26,2019-07-02,2.88,2,0 +28864263,Large 2BED Midtown Full Kitchen and Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75396,-73.96559,Entire home/apt,380,3,10,2019-06-14,1.12,8,225 +28864751,Beautiful bright room in Soho,40394752,Vanya,Manhattan,SoHo,40.72396,-74.00393,Private room,175,5,1,2018-10-12,0.11,2,0 +28866426,LUXURY 3BR/2 Bath Home 10 minutes to JFK & Casino,217621677,Joseph,Queens,Jamaica,40.68671,-73.7759,Entire home/apt,46,1,18,2019-07-01,1.96,4,135 +28867268,Spacious Room in well Loved East Williamsburg Home,26880156,Patrick,Brooklyn,Bushwick,40.70452,-73.92917,Private room,50,2,3,2018-11-12,0.35,1,32 +28867312,JCI Cozy 2 bedroom Apt. in Brownstone near trains,217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68456,-73.94962,Private room,200,2,5,2019-05-21,0.57,3,64 +28867326,Beuty full bedroom,65827591,Nubia,Queens,Maspeth,40.73661,-73.90021,Private room,31,2,6,2019-01-06,0.65,3,259 +28867389,PLG Brooklyn Apartment private bedroom+bathroom,53357457,Benjamin,Brooklyn,Prospect-Lefferts Gardens,40.66357,-73.948,Private room,59,3,6,2019-03-24,0.66,1,0 +28867577,Large Studio Apartment in Historic Brownstone,216734225,Erica,Manhattan,Harlem,40.81453,-73.94719,Entire home/apt,180,5,27,2019-06-23,2.95,1,88 +28867880,Convenient stay,217648807,Tyeesha,Bronx,Morris Heights,40.85324,-73.92143,Private room,240,1,0,,,1,363 +28868139,New Yorker first option to all Malls n restaurant,47564333,Marisa,Queens,Flushing,40.75414,-73.81536,Private room,75,1,0,,,1,365 +28869774,Light-filled studio in East Williamsburg,19874189,Ali,Brooklyn,Williamsburg,40.71598,-73.943,Entire home/apt,160,4,6,2019-06-26,0.69,1,10 +28871214,Bedroom Walking Distance to Central Park,75285802,Lauren,Manhattan,East Harlem,40.78689,-73.945,Private room,72,5,21,2019-06-23,2.23,2,165 +28871823,Chic Modern Minimalism | Private Luxury Space,10320429,Julie,Brooklyn,Bedford-Stuyvesant,40.69058,-73.94863,Private room,72,2,37,2019-06-30,3.94,1,18 +28872273,Fully furnished lxury 2 BR with outdoor space (2E),202757964,Mayan,Brooklyn,Williamsburg,40.71875,-73.96376,Entire home/apt,210,30,2,2019-05-31,0.32,6,335 +28872377,Prolonged Traveler's Dream (a month first & more),32164030,Ikkyukim,Bronx,Hunts Point,40.81377,-73.88933,Private room,40,30,3,2019-04-07,0.36,6,321 +28881114,A+ Chelsea_global inspired location. Large room,3464645,Sybilla Michelle,Manhattan,Chelsea,40.74768,-73.99965,Private room,175,2,0,,,3,70 +28885547,GREENPOINT LOVE,58131408,Dixie,Brooklyn,Greenpoint,40.73372,-73.94227,Private room,180,4,0,,,1,170 +28885996,Spacious Private Room in the heart of Harlem,70922580,Brittany,Manhattan,Harlem,40.81759,-73.93724,Private room,70,4,0,,,1,0 +28887506,2 BEDS - ROOF DECK+ LAUNDRY- CLOSE TO METRO!,184090548,Emanuel & Orion,Brooklyn,Williamsburg,40.7107,-73.95785,Private room,105,2,13,2019-05-18,1.79,3,335 +28888037,DaDukes Xtra,139879568,Alberto,Queens,Long Island City,40.76463,-73.93878,Private room,95,1,18,2019-06-09,1.91,6,347 +28888147,NEW Lofty 1bedroom UpperEast Side,43825799,Anthony,Manhattan,Midtown,40.75896,-73.96251,Entire home/apt,235,2,37,2019-07-01,4.19,1,135 +28889141,"PRIVATE ROOM in 2bdr, 2bth NEW YORK Brighton Beach",181356989,Kseniya,Brooklyn,Brighton Beach,40.57646,-73.96641,Private room,69,2,8,2019-06-23,0.90,2,4 +28890190,"5 min from Manhattan, Williamsburg new building!",217784241,Analia,Brooklyn,Williamsburg,40.7087,-73.95941,Private room,70,1,67,2019-06-06,7.18,4,5 +28890259,Charming Studio view of NYC,55335435,Tatiana,Manhattan,Harlem,40.82834,-73.94298,Entire home/apt,75,5,2,2019-01-08,0.27,1,0 +28890542,E.Village Private bdrm with Private Entrance for 4,181810800,David,Manhattan,East Village,40.72699,-73.98548,Private room,139,2,11,2019-01-01,1.19,1,0 +28890908,Beautiful Apartment in Ideal Manhattan Location,192270861,Zach,Manhattan,Harlem,40.81993,-73.94768,Private room,75,5,1,2019-01-29,0.19,1,0 +28891043,15min:Manhattan 5 subway line takes you everywhere,19303369,Hiroki,Queens,Jackson Heights,40.74909,-73.89538,Private room,41,29,1,2018-12-15,0.15,37,1 +28891434,New & Clean 2 bedrooms Garden Home,217793924,NY Blue House,Brooklyn,Crown Heights,40.67294,-73.93655,Entire home/apt,120,3,33,2019-06-17,3.61,1,73 +28891558,400sqft HUGEroom 2min expresstrain & 1min LIRR,19303369,Hiroki,Queens,Woodside,40.74258,-73.9031,Private room,55,30,2,2019-04-30,0.32,37,1 +28892753,4 min subway. 2beds 3people private room&bothroom,196058543,美德,Queens,Forest Hills,40.72081,-73.83821,Private room,88,2,37,2019-07-06,4.04,5,210 +28892979,4min subway.free parking big private room温馨漂亮大睡房,196058543,美德,Queens,Forest Hills,40.71984,-73.83969,Private room,78,2,28,2019-07-03,3.05,5,205 +28893129,2min bus 4 min subway.9min JFK private room干净舒适花园房,196058543,美德,Queens,Forest Hills,40.72133,-73.83928,Private room,58,2,35,2019-06-02,3.85,5,235 +28893365,Large charming space in the heart of the E Village,23354644,Nancy,Manhattan,East Village,40.72957,-73.98723,Private room,85,2,21,2019-06-22,2.27,3,41 +28894636,Sunny private room close to the city center 41D1,190921808,John,Manhattan,Hell's Kitchen,40.7543,-73.99697,Private room,150,7,9,2019-06-11,0.99,47,358 +28895817,SUNNY ROOM WITH SKYLIGHT + 2 BEDS,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69524,-73.95322,Private room,67,30,31,2019-06-16,3.41,6,333 +28896148,LUXURY BEDROOM # 2. Ten mins from JFK/Casino,217621677,Joseph,Queens,Jamaica,40.68627,-73.77633,Shared room,51,1,17,2019-05-17,1.84,4,141 +28896237,"Sunlight, comfort, & Brooklyn charm near the Park",96379938,Alexander,Brooklyn,East Flatbush,40.65358,-73.94965,Private room,99,4,13,2019-05-09,1.41,2,48 +28896728,A HIDDEN GEM W/ QUEEN BED & COUCHES 20 MINS TO NYC,51025844,Kdn,Manhattan,Inwood,40.86697,-73.92534,Private room,99,1,3,2019-04-21,0.40,3,365 +28897533,"Newly built Apt in 2015, 3min to Subway",204704622,Momoyo,Queens,Elmhurst,40.73902,-73.87702,Private room,32,29,1,2019-02-18,0.21,7,35 +28897932,LUXURY BEDROOM # 3. Ten mins from JFK/Casino,217621677,Joseph,Queens,St. Albans,40.68806,-73.77573,Private room,35,1,30,2019-07-05,3.25,4,143 +28901045,Master Suite w/Private Bath & Balcony,2065453,Ora & Scout,Brooklyn,Crown Heights,40.67618,-73.95607,Private room,75,2,6,2019-04-23,0.69,3,12 +28901091,peaceful third floor Fort Greene treetop retreat,171212377,Lali,Brooklyn,Fort Greene,40.68832,-73.97731,Entire home/apt,175,3,38,2019-07-06,4.15,1,122 +28901111,Bensonhurst,209768607,Amrane,Brooklyn,Bensonhurst,40.61135,-74.00827,Entire home/apt,62,23,0,,,1,0 +28908658,Small Reasonable stay in NYC 3min Subway Grand Ave,204704622,Momoyo,Queens,Elmhurst,40.74035,-73.87617,Private room,29,29,1,2019-06-20,1,7,6 +28908909,"Perfect Studio, Private Garden, Ideal Location!",217909276,Julie,Brooklyn,Fort Greene,40.68631,-73.97497,Entire home/apt,150,8,4,2019-06-01,0.50,1,0 +28909110,Modern 1 Bedroom In Vibrant BK Neighborhood,10218689,Bere,Brooklyn,Crown Heights,40.67088,-73.95128,Entire home/apt,90,4,26,2019-06-19,2.85,1,0 +28909276,Welcome to Paradise,205131610,Steven,Brooklyn,Canarsie,40.63979,-73.90378,Private room,55,1,9,2018-11-07,0.95,3,365 +28909477,Charming NYC Guest Suite (Loft Room),50756378,Nina,Staten Island,Clifton,40.61595,-74.08535,Shared room,150,2,2,2018-11-04,0.22,7,312 +28910248,"❤️ Private Studio+Bath+Balcony, 15 mins to City",217844544,Mia,Brooklyn,Bushwick,40.69454,-73.92612,Private room,90,2,54,2019-07-07,5.79,2,118 +28910899,"Private room in large, central Nolita penthouse!",153154549,Sarah,Manhattan,Nolita,40.72135,-73.99426,Private room,140,3,2,2018-10-15,0.22,1,0 +28910978,Artistic house with murals,52044518,Veronica,Queens,East Elmhurst,40.76173,-73.87417,Private room,65,1,58,2019-07-08,6.19,1,47 +28911697,Cozy Artist Room,70230403,Sonya,Brooklyn,Bushwick,40.69677,-73.92688,Private room,57,1,1,2018-10-22,0.12,1,0 +28911775,LUXURY PRIVATE BEDROOM & Bath Mins from JFK,217621677,Joseph,Queens,St. Albans,40.68754,-73.77488,Private room,50,1,16,2019-07-07,1.78,4,137 +28911830,Charming redbrick Bronx Villa,191085997,Christopher,Bronx,Pelham Bay,40.8546,-73.83026,Entire home/apt,299,2,1,2019-05-19,0.58,3,1 +28911848,NYC Hideaway spacious Garden apartment,191085997,Christopher,Bronx,Pelham Bay,40.85413,-73.83065,Entire home/apt,125,2,7,2019-06-30,0.99,3,301 +28911924,Charming Times Square Midtown One Bedroom!,40245658,Alexa,Manhattan,Hell's Kitchen,40.7617,-73.98882,Private room,85,2,34,2019-06-09,4.47,3,103 +28912358,Parisian style 1 bedroom in the Heart of UES!!!,41062475,Viktoria,Manhattan,Upper East Side,40.76035,-73.96045,Private room,80,4,11,2019-07-01,1.30,1,156 +28912768,Cozy BK Apt -Roof & Balcony- 5 star host reviews!,10448306,Kelly,Brooklyn,Williamsburg,40.71814,-73.95517,Entire home/apt,180,2,4,2019-02-23,0.43,1,0 +28912811,Full parlor floor in a Brooklyn brownstone,27922078,Timothy,Brooklyn,Crown Heights,40.675,-73.9422,Entire home/apt,65,3,7,2019-01-27,0.77,1,0 +28913324,6 Guests LUXURIOUS MANHATTAN Condo With ROOFTOP!!!,96986507,Jason,Manhattan,Harlem,40.80702,-73.95334,Entire home/apt,270,2,12,2019-06-11,1.34,1,365 +28913606,King Hotel Room at Wyndham Midtown 45 Resort,49128620,Joy,Manhattan,Midtown,40.75359,-73.97305,Private room,175,2,2,2019-05-12,0.22,1,1 +28913683,LOVE Best City Views: Luxury & Location 2BD/2BT,40681070,Monika,Manhattan,Midtown,40.74952,-73.97089,Entire home/apt,359,5,9,2019-04-21,0.99,1,23 +28913824,Luxury STUDIO w/FREE GYM by Prospect Park!,1158429,Anastasia,Brooklyn,Windsor Terrace,40.64968,-73.97325,Entire home/apt,100,29,2,2018-11-23,0.22,1,59 +28914077,✦Luxury Upper East Side Studio Apartment✦,217948247,Jodi,Manhattan,Upper East Side,40.77707,-73.95154,Entire home/apt,275,2,8,2019-01-02,0.91,1,0 +28915824,"Private Room in Little Italy/Chinatown, Manhattan",217836856,Moying,Manhattan,Chinatown,40.71795,-73.99708,Private room,185,1,36,2019-03-21,3.90,2,233 +28915827,Attractive private room by South Seaport,217965968,Carol,Manhattan,Financial District,40.70545,-74.0084,Private room,119,1,27,2019-06-23,2.99,1,5 +28916312,Cozy nook in Bronx 5 mins from Botanical Gardens!,99956350,Aubeen,Bronx,Fordham,40.86777,-73.88397,Private room,90,1,2,2019-01-01,0.22,1,362 +28916375,Prime area in Chinatown and Little Italy,67552519,Patrick,Manhattan,Little Italy,40.71894,-73.99759,Entire home/apt,160,2,44,2019-07-07,5.64,2,275 +28916439,Family and Friendly Room,35927005,Kathy,Brooklyn,Borough Park,40.63535,-74.00589,Private room,60,1,0,,,10,0 +28916850,Bushwick modern luxury: 2 bed 2 bath apartment,4765119,Jasmine,Brooklyn,Bushwick,40.68782,-73.91071,Entire home/apt,149,20,4,2019-03-20,0.55,1,165 +28916864,Cozy 3-People Room Close to Subway,35927005,Kathy,Brooklyn,Borough Park,40.63445,-74.00524,Private room,57,1,1,2019-03-22,0.27,10,365 +28917395,Ultra Plush Large Private cozy cottage Bedroom,217332035,Rose,Brooklyn,Sheepshead Bay,40.59055,-73.9464,Private room,39,1,1,2018-10-31,0.12,2,360 +28917505,Small room for 1 Person-Best Value,35927005,Kathy,Brooklyn,Borough Park,40.63448,-74.00563,Private room,50,1,2,2019-06-20,0.24,10,365 +28917781,Walk in Basement Room with Window,35927005,Kathy,Brooklyn,Borough Park,40.63586,-74.00597,Private room,55,1,1,2018-10-20,0.11,10,298 +28918134,Basement Room with Window,35927005,Kathy,Brooklyn,Borough Park,40.63525,-74.00724,Private room,48,1,0,,,10,365 +28918211,B1. Shared room for 4 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66151,-73.9455,Shared room,30,2,5,2019-04-20,0.55,6,365 +28918405,Nice Couple in A Walk in Basement with Window,35927005,Kathy,Brooklyn,Borough Park,40.63416,-74.00722,Private room,50,2,0,,,10,365 +28918624,Private Room with a Twin Bed,35927005,Kathy,Brooklyn,Borough Park,40.63549,-74.00699,Private room,45,2,3,2018-12-30,0.37,10,365 +28918768,living room space but with curtain for privacy,35927005,Kathy,Brooklyn,Borough Park,40.63522,-74.00596,Shared room,35,1,0,,,10,352 +28918915,B2. Shared room for 4-5 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66076,-73.94547,Shared room,30,2,5,2019-04-12,0.55,6,352 +28919308,Charming West Chelsea Studio Loft,145331404,Allan,Manhattan,Chelsea,40.74542,-74.00133,Entire home/apt,195,5,21,2019-07-01,2.42,1,17 +28919420,G1. Private room. For 2 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66061,-73.94712,Private room,40,2,2,2019-05-31,0.74,6,364 +28919421,Lovely New Private Bathroom Room,216772639,Ling,Brooklyn,Borough Park,40.63371,-74.00717,Private room,60,1,9,2019-06-24,0.98,7,180 +28919516,3-P Room/Private Bath/Walk to Subway--Best Value,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00698,Private room,60,1,9,2019-06-06,1.00,7,177 +28919815,G1. Private room for 2 guest.,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.94661,Private room,35,2,1,2018-10-06,0.11,6,364 +28920156,BEAUTIFUL LUXURY 2BDR APARTMENT ON PARK AVE,217996544,Ofir,Manhattan,Midtown,40.74407,-73.98386,Entire home/apt,249,3,0,,,2,179 +28920811,Super charming and cozy one bedroom apartment.,218001383,James,Queens,Long Island City,40.75554,-73.92127,Entire home/apt,120,2,36,2019-06-30,4.14,1,48 +28927140,Gentleman's Quarters #2,43392243,Rita,Staten Island,Concord,40.59972,-74.07701,Private room,35,1,2,2019-06-30,2,4,360 +28927290,Gentleman's Quarters,43392243,Rita,Staten Island,Concord,40.59934,-74.07836,Private room,35,1,45,2019-07-07,4.89,4,177 +28931117,AMAZING LUXURY 1 BEDROOM NEAR TIMES SQUARE/MIDTOWN,13027278,Jinna,Manhattan,Hell's Kitchen,40.75927,-73.9939,Entire home/apt,151,7,3,2018-11-17,0.33,1,0 +28931731,Spacious Sunny EV Studio Perfect 4 Business/Travel,60246968,Sophia,Manhattan,East Village,40.72259,-73.98472,Entire home/apt,478,1,6,2019-06-30,0.71,1,5 +28932158,Cosy Room in Chinatown. Near Canal St.,56550302,Eli,Manhattan,Chinatown,40.7175,-73.99962,Private room,110,3,2,2018-12-03,0.23,1,66 +28933107,new ARTIST ROOM IN EAST VILLAGE NYC .,1810885,Alex,Manhattan,East Village,40.72522,-73.97786,Private room,85,4,7,2019-04-08,0.79,3,54 +28933205,Private Bedroom on UES with amazing terrace,218090309,Katrin,Manhattan,Upper East Side,40.76872,-73.95513,Private room,250,3,22,2019-06-23,2.55,1,0 +28933262,Wyndham Midtown 45,198749990,Maria,Manhattan,Midtown,40.75378,-73.97156,Private room,350,2,0,,,1,0 +28933403,STYLISH OPEN-PLAN LOFT IN BUSHWICK APARTMENT.,1429693,Madeline,Brooklyn,Bushwick,40.70846,-73.92088,Private room,200,2,10,2019-05-19,1.09,1,79 +28933616,Spacious studio apartment on ideal LES block,526744,Tessa,Manhattan,Chinatown,40.71614,-73.99085,Entire home/apt,250,2,3,2018-11-04,0.35,1,0 +28934396,One Bedroom Apt with a pool & a gym in the bldg,6531164,Steven,Brooklyn,Downtown Brooklyn,40.69712,-73.98401,Entire home/apt,285,1,1,2019-01-02,0.16,1,6 +28935658,Private Bedroom&Bathroom w Breakfast in Manhattan,218080780,Neyir,Manhattan,Upper East Side,40.78478,-73.94967,Private room,200,1,20,2019-07-01,2.25,1,313 +28935673,Victorian Studio Bedroom Suite in Brooklyn,720510,Erin,Brooklyn,Bushwick,40.70274,-73.92598,Entire home/apt,100,2,16,2019-06-30,1.89,1,55 +28936557,Designer Apartment in Harlem,37957096,Gòn,Manhattan,Harlem,40.82365,-73.93786,Entire home/apt,80,10,17,2019-06-02,1.90,1,95 +28936795,Great Access! Close to station/5line u can use!,200239515,Shogo,Queens,Woodside,40.74516,-73.89278,Private room,35,30,2,2019-04-30,0.25,15,0 +28937536,Modern Luxury Condo with a Sunny Patio,70636634,Allia,Brooklyn,Sunset Park,40.66461,-73.99506,Entire home/apt,220,15,1,2018-10-08,0.11,1,0 +28937584,Cozy Private Room in Uptown Manahattan,43027007,Robbie,Manhattan,East Harlem,40.7949,-73.93627,Private room,57,1,26,2019-06-03,2.82,1,344 +28938342,"❤️ 2 Beds Option@Bushwick, 15 mins to Manhattan",217844544,Mia,Brooklyn,Bushwick,40.69404,-73.92432,Private room,70,3,45,2019-06-30,4.93,2,146 +28938631,❤️ Welcome to the Chelsea Charmer❤️,211391055,Vanessa,Manhattan,Chelsea,40.74552,-74.00021,Entire home/apt,299,2,35,2019-06-16,3.75,1,277 +28939377,SUMMER SPECIAL! Spacious Harlem Condo,218140824,Jason,Manhattan,Harlem,40.80756,-73.94855,Entire home/apt,145,60,1,2019-01-07,0.16,1,227 +28940025,City Island studio apartment retreat,2780938,Molly,Bronx,City Island,40.84802,-73.78963,Entire home/apt,84,2,31,2019-06-29,3.38,1,166 +28940279,Brand New Apartment in Williamsburg!,40742174,Jessica,Brooklyn,Williamsburg,40.70948,-73.95946,Private room,70,5,1,2018-12-14,0.14,1,0 +28940496,Master Roon In NICe Aparment,130972997,Wilson,Brooklyn,Crown Heights,40.67387,-73.93944,Private room,55,4,1,2019-04-10,0.33,2,311 +28940723,Traveler Friendly Brooklyn Apartment w Backyard!!!,146339341,Dylan,Brooklyn,Williamsburg,40.71172,-73.94556,Private room,99,1,3,2018-10-27,0.33,1,0 +28940952,"Modern, Well-Appointed Room in NYC!",8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69246,-73.95863,Private room,48,2,47,2019-06-23,5.02,3,10 +28941589,"3 bdrm, 2 bth duplex -20 mins to midtown -32B",42226482,Monique,Bronx,Williamsbridge,40.87704,-73.86276,Entire home/apt,80,30,0,,,1,0 +28941614,Brooklyn Style - with a Balcony!!!,8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69362,-73.95906,Private room,45,2,43,2019-06-21,4.69,3,25 +28941710,Tiny Home,149292557,Kimberly,Queens,Jackson Heights,40.75137,-73.86081,Entire home/apt,69,2,52,2019-07-06,5.63,2,137 +28941808,Just Like Home!,8518665,Kevin,Brooklyn,Bedford-Stuyvesant,40.69339,-73.95881,Private room,50,2,42,2019-06-22,5.02,3,17 +28942802,Comfortable house in Dyker Hight New York,118442680,Betty,Brooklyn,Dyker Heights,40.6185,-74.00679,Private room,150,7,5,2019-06-01,0.79,1,149 +28943748,Home Away from Home: The Restorative Room,130971031,J-,Brooklyn,Bushwick,40.70355,-73.91803,Private room,73,3,1,2018-10-08,0.11,4,0 +28950019,Bed room close to NYC⬆︎ with lots of sun light☀️,43044876,Haruhisa,Queens,Elmhurst,40.73655,-73.87762,Private room,40,29,2,2019-04-29,0.55,5,32 +28950738,Ozone Park Studio,218222410,Seeta,Queens,Ozone Park,40.68689,-73.84587,Private room,60,1,0,,,1,0 +28952183,Cozy private room in spacious Brooklyn Apartment,19899115,Libby,Brooklyn,Crown Heights,40.67759,-73.9523,Private room,50,2,6,2018-12-10,0.69,2,0 +28952972,"Penthouse Suite at the Manhattan Club, NYC",91757655,Edward,Manhattan,Midtown,40.7656,-73.98,Private room,450,3,0,,,1,339 +28953757,One Bed Room with a share living and kitchen apt,195251910,Ahmad,Queens,Long Island City,40.76216,-73.94109,Private room,100,1,2,2019-02-18,0.32,1,1 +28954021,Crown Heights Nice,57403189,Joslin,Brooklyn,Crown Heights,40.67635,-73.94378,Entire home/apt,100,2,13,2019-06-30,3.20,2,20 +28954146,NEW- Spacious & Bright Brooklyn 1 Bed,218219395,Gigi,Brooklyn,Bushwick,40.70081,-73.91805,Entire home/apt,160,2,20,2019-06-03,2.28,1,364 +28954400,Lovely Private Garden Apt!,1633246,Natasha,Brooklyn,Bedford-Stuyvesant,40.68563,-73.92331,Entire home/apt,110,4,1,2018-10-27,0.12,4,129 +28956510,Private room in full floor Soho Loft,23397935,John,Manhattan,SoHo,40.72039,-73.99851,Private room,249,5,3,2019-01-27,0.33,1,5 +28958147,Cozy 1BR Apartment in Heart of LES,51947144,Jason,Manhattan,Lower East Side,40.71895,-73.98922,Entire home/apt,150,3,8,2019-04-30,0.92,1,0 +28958325,Huge beedroom close to Cent. Park and Times Square,9187405,Sebastian,Manhattan,Midtown,40.76488,-73.9806,Private room,150,2,5,2018-11-24,0.57,1,0 +28958489,Cosy room on the ocean beach.,93315723,Анита,Brooklyn,Brighton Beach,40.57795,-73.9616,Private room,50,2,27,2019-06-26,3.18,1,71 +28958526,"Lower Manhattan 2 Bedroom, Very Convenient!",176231758,Brett,Manhattan,Little Italy,40.71717,-73.99815,Entire home/apt,240,2,26,2019-06-24,2.80,1,267 +28959608,The Green Atelier of Park Slope,5085951,Liz,Brooklyn,Park Slope,40.67702,-73.97907,Private room,100,2,22,2019-06-27,2.59,1,292 +28959784,Your Cozy Home,213781715,Anting,Queens,Long Island City,40.74029,-73.95927,Private room,119,1,2,2018-12-05,0.26,33,365 +28959854,1 BR /stove /fridge / bath/ living rm 20 mins nyc,16851857,Paul,Bronx,Wakefield,40.89502,-73.85071,Entire home/apt,75,7,3,2019-05-03,0.63,4,242 +28960086,Tudor Village,218289083,Faysal,Queens,Ozone Park,40.68334,-73.85837,Entire home/apt,90,7,2,2018-10-26,0.22,1,90 +28960088,SOHO 1st Floor | Two Story Apt + Private Backyard,218282660,Maksum,Manhattan,Nolita,40.72162,-73.99549,Entire home/apt,399,5,29,2019-06-24,3.16,1,76 +28960455,Large BASEMENT 1BD Apartment - Astoria,218292717,Tania And Jimmy,Queens,Astoria,40.76267,-73.90555,Entire home/apt,149,2,35,2019-06-22,3.89,1,362 +28960497,Cozy room in Astoria close to Manhattan,70800114,Olivia,Queens,Ditmars Steinway,40.7698,-73.91157,Private room,64,1,10,2018-12-09,1.12,1,0 +28961050,QUEEN BED WITH SKYLIGHT - NEXT TO METRO!,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69634,-73.95375,Private room,68,30,17,2019-06-05,1.93,6,242 +28961085,Charming Midtown East 1-bedroom,51385941,Laura,Manhattan,Midtown,40.75417,-73.96437,Entire home/apt,250,3,21,2019-06-10,2.32,1,80 +28961203,COZY ROOM NEXT TO METRO B,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69464,-73.95259,Private room,63,30,16,2019-06-16,1.80,6,365 +28961444,Couples Retreat/One min to subway/WiFi/Coffee!,79913651,Darryl,Manhattan,East Harlem,40.80608,-73.93718,Private room,56,1,20,2019-06-05,2.19,4,129 +28961690,Clinton Hill 1 Bedroom Brooklyn heart of it all!,218300937,Thomas,Brooklyn,Clinton Hill,40.68313,-73.96742,Entire home/apt,200,5,3,2019-04-11,0.33,2,89 +28961919,Linda's Place,218301609,Merle,Queens,Hollis,40.70864,-73.76683,Private room,65,5,8,2019-05-24,0.99,1,170 +28962959,Luxury Studio in Prime Lower East Side,89742769,Chels,Manhattan,Lower East Side,40.72071,-73.98764,Entire home/apt,300,1,54,2019-06-28,5.87,1,48 +28963068,Manhattan-Bronx Large Studio Apt in Mott Haven,218311373,Yizhak,Bronx,Port Morris,40.80861,-73.93015,Entire home/apt,100,1,25,2019-06-17,2.81,1,39 +28963840,Cozy 2 Bedroom Home,22301628,Jayleen,Brooklyn,East New York,40.67454,-73.89652,Entire home/apt,120,2,15,2019-01-13,1.66,1,0 +28963934,"GRAY MANHATTAN, BIG COZY ROOM IN A 3BEDRMS APART",47595754,Voisin,Manhattan,Washington Heights,40.84577,-73.93731,Private room,70,7,11,2019-06-16,1.30,1,356 +28964081,Perfect Location! 2BR Oasis in Heart of Chelsea,216586866,Joseph,Manhattan,Chelsea,40.74377,-73.99905,Entire home/apt,137,4,1,2019-01-01,0.16,2,0 +28964166,$ummer $ALE Williamsburg TownHouse -BEST Location!,218319766,Ron And Irit,Brooklyn,Williamsburg,40.71741,-73.95656,Entire home/apt,275,2,45,2019-06-30,5.04,1,249 +28964397,Perfect Location! Your Oasis in Heart of Chelsea,216586866,Joseph,Manhattan,Chelsea,40.744,-73.99721,Private room,65,3,12,2019-06-25,1.43,2,30 +28965064,Bright clean modern spacious with big front porch!,1093167,Paul,Brooklyn,Crown Heights,40.68076,-73.96415,Entire home/apt,150,1,3,2018-10-14,0.33,1,95 +28965273,Private room,154737520,Mehrangez,Brooklyn,Bedford-Stuyvesant,40.67937,-73.94493,Private room,40,27,0,,,1,89 +28965609,CB2 BROOKLYN,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69476,-73.94821,Private room,82,6,8,2019-06-15,0.88,3,48 +28966170,"Bright, Sunny Private Room in Bushwick",26633737,Liz,Brooklyn,Bushwick,40.69571,-73.91637,Private room,65,3,0,,,1,3 +28966707,Private Bath & Fire Escape Brooklyn Bedroom,142059543,Luna,Brooklyn,Williamsburg,40.71849,-73.94165,Private room,80,3,6,2019-03-24,0.80,1,6 +28966945,Lugar acogedor y confortable,153809989,Sandy,Bronx,Mount Eden,40.84084,-73.92178,Private room,48,2,0,,,1,0 +28967484,Comfortable Brooklyn Room,34125495,Billy,Brooklyn,Bushwick,40.68893,-73.90984,Private room,39,1,5,2019-06-09,0.60,1,158 +28971081,MOXY NYC DOWNTOWN-7 NIGHTS MIN,5144567,Yun,Manhattan,Civic Center,40.71193,-74.00694,Private room,169,7,4,2019-06-15,1.35,13,351 +28971865,Brooklyn Bedroom - Warm & Cozy Near Subway (1),217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68591,-73.95044,Private room,150,2,6,2019-03-31,0.75,3,33 +28972637,Modern living in old Harlem (the Scream2),2802223,Raluca,Manhattan,Harlem,40.82921,-73.93802,Entire home/apt,125,60,2,2019-05-31,0.23,2,3 +28976135,1Great Budget Private Room,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.68937,-73.94992,Private room,65,30,13,2019-05-27,1.45,4,357 +28976867,Amazing Spacious Sunlit Studio with a balcony.,218406956,Jane,Manhattan,Upper East Side,40.76892,-73.96321,Entire home/apt,160,2,14,2019-06-24,1.79,1,170 +28977135,Private Cozy 2-Bedroom Clinton Hill Apartment,113055692,Whitney,Brooklyn,Clinton Hill,40.68349,-73.96153,Entire home/apt,175,2,5,2019-06-30,0.63,1,158 +28978023,Gallery Apartment with Parking in Heart of Astoria,137194766,Maria,Queens,Ditmars Steinway,40.77145,-73.9125,Entire home/apt,150,3,37,2019-06-22,4.10,2,7 +28978145,"Heart of Ft Greene, newly renovated w garden patio",218417996,Sam,Brooklyn,Fort Greene,40.68904,-73.97269,Entire home/apt,210,4,20,2019-06-20,2.32,1,268 +28978328,2254 and 2nd avenue,43531190,Kasun,Manhattan,East Harlem,40.79701,-73.93709,Private room,45,240,0,,,1,280 +28978474,New + Sunlit Apartment in Bed-Stuy,34394667,Ron,Brooklyn,Bedford-Stuyvesant,40.67782,-73.92326,Entire home/apt,125,3,15,2019-06-24,4.33,1,175 +28978510,Quite 1 Bedroom Apartment near EBS,211549023,Studioplus,Manhattan,Midtown,40.74822,-73.9873,Entire home/apt,240,2,14,2019-06-22,1.95,13,279 +28979013,Amazing converted 1BR in FiDi,54689007,Ana,Manhattan,Financial District,40.707,-74.00642,Entire home/apt,185,2,0,,,3,89 +28979690,My Place,218428676,Barbie,Manhattan,Washington Heights,40.83912,-73.94327,Private room,140,1,0,,,1,363 +28980678,"Stylish 2 bedroom apt, vibrant Bklyn neighborhood",20311036,Blu,Brooklyn,Bedford-Stuyvesant,40.68193,-73.93569,Entire home/apt,150,3,11,2019-05-26,1.25,1,105 +28981827,Beautiful Luxury 1 Bedroom,7021189,Sachin,Manhattan,Chelsea,40.74463,-73.9923,Entire home/apt,200,100,1,2018-10-02,0.11,1,0 +28982688,Beautiful Private One Bedroom,218450889,Caprice,Brooklyn,Flatbush,40.63994,-73.9516,Private room,80,1,4,2019-01-02,0.48,1,179 +28983189,PrivateRoom1/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.78073,-73.8193,Private room,39,1,44,2019-07-07,4.93,3,89 +28983494,Lovely Garden Apt,218457745,Shane,Brooklyn,East Flatbush,40.65073,-73.92738,Entire home/apt,135,4,9,2019-06-04,1.07,1,365 +28984202,Middle of Williamsburg-2 stops to Manhattan,218460622,Julia,Brooklyn,Williamsburg,40.70813,-73.94707,Private room,55,10,1,2018-12-01,0.14,1,48 +28984222,RENOVATED BROWNSTONE APARTMENT W/ HIGH CEILINGS!,124743046,Mark,Brooklyn,Bedford-Stuyvesant,40.69025,-73.9559,Entire home/apt,230,4,29,2019-07-05,3.36,3,205 +28985543,Modern Sunny 3bdrm Apt,389924,Patty,Bronx,Morris Park,40.84605,-73.8493,Entire home/apt,39,5,0,,,2,0 +28985708,BEST LOCATION- Newly renovated 1 BR in Nolita,218474205,Madi,Manhattan,Nolita,40.72174,-73.99559,Entire home/apt,175,2,22,2019-06-23,2.52,1,24 +28985951,Spacious private bedroom and kitchen in Bedstuy,140671636,Brianna,Brooklyn,Bedford-Stuyvesant,40.68302,-73.94897,Private room,50,2,5,2019-04-29,0.56,1,0 +28986154,3rd Fl bright two bedroom,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93875,Entire home/apt,139,1,4,2019-06-06,0.50,9,7 +28986535,Wonderful apartment Brooklyn 1 minute to L train.,96864161,Pedro,Brooklyn,Bushwick,40.68365,-73.90517,Entire home/apt,129,2,38,2019-06-25,4.73,1,192 +28986804,Sunny Private Bedroom/Bath in Beautiful Brooklyn,71314515,Tessa,Brooklyn,Bedford-Stuyvesant,40.69303,-73.94183,Private room,80,1,15,2019-06-23,1.82,1,64 +28986807,Relaxing private room in Astoria. Balcony / WiFi.,137358866,Kazuya,Queens,Astoria,40.76649,-73.92266,Private room,46,30,0,,,103,237 +28987232,"Bright & Spacious / Red Brick, Modern Kitchen!",136010789,Rebeca & John @ Bedly,Brooklyn,Bushwick,40.69456,-73.91965,Private room,44,30,1,2018-11-20,0.13,2,9 +28987503,Cosy and friendly private space,218458746,Colin,Queens,Woodside,40.74592,-73.90889,Private room,100,1,4,2018-11-09,0.43,1,0 +28988283,The Come On Inn - 2,3740621,Jonathan,Manhattan,Harlem,40.81664,-73.94267,Private room,150,1,11,2019-06-12,1.26,2,177 +28988684,"Gorgeous sunny, queen size room Brooklyn",71157443,Jane,Brooklyn,Bushwick,40.6911,-73.90942,Private room,90,1,2,2019-04-11,0.25,1,29 +28989676,Modern & Spacious Luxe Apt,59982224,Leli,Brooklyn,East New York,40.67474,-73.87187,Entire home/apt,200,3,1,2019-01-02,0.16,4,4 +28989889,"""MI Casa es su Casa """,211638781,Adriana,Bronx,Belmont,40.85336,-73.88549,Private room,65,3,26,2019-06-29,2.83,2,46 +28989914,Bright and spacious loft in East Village,218505786,Victoria,Manhattan,East Village,40.72352,-73.98277,Private room,100,2,11,2019-02-24,1.21,1,0 +28990341,Gorgeous Two Bedroom in Soho,10457196,Richard,Manhattan,Little Italy,40.71938,-73.99448,Entire home/apt,130,30,1,2019-02-02,0.19,11,332 +28990673,Bright and large room in the heart of Williamsburg,218511630,Carlos,Brooklyn,Williamsburg,40.71485,-73.95324,Private room,75,1,13,2019-02-15,1.41,3,0 +28990717,Spacious apartment in Brooklyn,162968562,Mariah,Brooklyn,Gravesend,40.59147,-73.97566,Private room,70,1,1,2019-03-02,0.23,1,0 +28991548,Small and cozy room in the heart of Williamsburg,218511630,Carlos,Brooklyn,Williamsburg,40.71641,-73.95477,Private room,55,1,4,2019-01-03,0.45,3,0 +28992002,Cozy & Beautiful Private Room w/Nearby Coffee Shop,80093359,Isabella,Brooklyn,Bushwick,40.68589,-73.91422,Private room,55,2,15,2019-05-26,1.72,2,0 +28992146,TIMES SQ. MEETS BRYANT PARK #1 ULTIMATE LOCATION!,93948524,Marilyn,Manhattan,Hell's Kitchen,40.75603,-73.99214,Entire home/apt,125,30,3,2018-11-05,0.34,1,226 +28992518,Private 1 Bedroom on Top Floor Apartment Building,218526982,Liz,Manhattan,Lower East Side,40.72165,-73.98695,Entire home/apt,175,2,11,2019-07-07,1.20,2,6 +28993172,Charming home in Manhattan's most iconic street!,18264569,Jennifer,Manhattan,Chinatown,40.71447,-73.99737,Private room,125,2,35,2019-07-07,3.82,1,315 +28994671,한성 韓城 Han A (2FL),92706260,Kane,Queens,Flushing,40.76126,-73.81549,Private room,48,1,35,2019-07-01,3.79,5,79 +28999699,한성 韓城 Han B (2F),92706260,Kane,Queens,Flushing,40.76237,-73.8157,Private room,48,1,39,2019-06-28,4.21,5,84 +29000338,Shared Room 4 FEMALE Guests 30mins to Manhattan-4,172369331,Abby,Brooklyn,Sheepshead Bay,40.59658,-73.95944,Shared room,50,7,6,2019-05-17,0.70,10,311 +29001222,"Modern, Stylish and Peaceful Sanctuary",67915061,John,Manhattan,Washington Heights,40.83693,-73.93643,Entire home/apt,80,1,20,2019-06-28,2.59,1,28 +29001863,"Privet Room in a 4 Bed 1.5 Bath Apt, Ridgewood",194107668,Saron,Queens,Glendale,40.70002,-73.89364,Private room,35,7,1,2018-10-20,0.11,1,365 +29002099,Cozy sunlit Little Italy apartment!,136025561,Alexandra,Manhattan,Little Italy,40.71824,-73.99796,Private room,95,2,2,2019-06-23,2,2,23 +29002824,Cozy Private Room in East Village,20328673,Matt,Manhattan,East Village,40.73199,-73.98857,Private room,90,3,1,2019-01-07,0.16,1,5 +29004967,"Large, sunny WBurg apartment steps from L train",14453908,Andrew,Brooklyn,Williamsburg,40.70946,-73.94966,Entire home/apt,85,7,4,2019-07-01,0.59,1,357 +29005507,Sunny and Convenient Park Slope Room,2180581,Jana,Brooklyn,South Slope,40.66656,-73.98204,Private room,85,2,18,2019-05-30,1.99,2,0 +29005584,Manhattan Club NY-One Bedroom Suite-Sleeps 4,82460872,Dolores,Manhattan,Midtown,40.76412,-73.98017,Private room,425,4,0,,,1,0 +29005696,Private room in huge 2 bedroom-Prospect Heights,15528170,Kristin,Brooklyn,Prospect Heights,40.67737,-73.97159,Private room,90,8,1,2018-12-21,0.15,1,156 +29007491,Williamsburg 2 bedrooms 1 bathroom Private entry,20990306,Elizabeth,Brooklyn,Williamsburg,40.71345,-73.95,Entire home/apt,175,2,17,2019-06-24,1.83,2,0 +29008272,ASTORIA ROOM very nice with Balcony N/W train,43194941,Marco,Queens,Astoria,40.76322,-73.91132,Private room,80,1,7,2019-05-26,0.76,1,85 +29008767,FT GREENE STUDIO (1BD FEEL) NEAR ALL SUBWAYS,35594087,Shearly,Brooklyn,Fort Greene,40.68515,-73.97381,Entire home/apt,134,2,15,2019-05-26,1.91,1,41 +29008984,Studio,177177772,Delilah,Manhattan,Upper West Side,40.79639,-73.96889,Entire home/apt,150,2,8,2018-12-17,0.90,1,0 +29012098,Cozy Private Room,24283455,Igam,Brooklyn,Gravesend,40.59075,-73.98359,Private room,40,2,10,2018-12-30,1.11,2,0 +29012259,AVery neat one bedroom.,8925493,Yvonne,Brooklyn,Bedford-Stuyvesant,40.68252,-73.91165,Private room,55,3,1,2018-12-31,0.16,2,89 +29012563,Your Sanctuary in the city,1936796,JenJoy,Brooklyn,Williamsburg,40.71179,-73.9387,Private room,60,1,41,2019-06-28,4.42,2,5 +29013947,"Beautiful Bedroom in Bushwick, Brooklyn!",124069492,Maria,Brooklyn,Bushwick,40.70249,-73.92557,Private room,74,1,26,2019-06-30,2.90,2,34 +29014353,Ensuite bathroom paradise,393107,Catalina,Brooklyn,Carroll Gardens,40.68035,-73.99611,Private room,69,5,4,2019-04-24,0.45,1,0 +29015079,"Sunny, Modern Williamsburg Condo Steps from Train",218689235,John,Brooklyn,Williamsburg,40.71441,-73.95229,Entire home/apt,160,2,21,2019-07-02,3.28,1,335 +29015492,1Comfortable Shared Apt in Hell’s Kitchen,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76249,-73.98807,Shared room,65,1,17,2019-06-23,4.77,8,198 +29016112,Cozy Newly Apartment Close To Manhattan,216641760,Jamie,Queens,Jackson Heights,40.75281,-73.87654,Entire home/apt,128,3,33,2019-06-28,4.01,1,325 +29016146,Ex-Large 2 Bedroom Apartment Harlem Delight!,218680572,Curtiss,Manhattan,Harlem,40.80879,-73.94813,Entire home/apt,250,28,7,2019-06-02,1.02,1,183 +29016907,Queens home in quiet neighborhood Room 2,155152907,Maria,Queens,St. Albans,40.70459,-73.76271,Private room,45,2,15,2019-06-30,1.67,2,262 +29025649,"Spacious, Cozy, ENTIRE One Bedroom Apartment",57699301,Irina,Brooklyn,Sunset Park,40.63902,-74.01837,Entire home/apt,100,28,4,2019-05-31,0.59,1,219 +29027131,COOL URBAN COMFORT - ARTSY BUSHWICK,200461550,Ben And Madi,Brooklyn,Williamsburg,40.70574,-73.92809,Private room,65,2,7,2019-01-12,0.77,1,255 +29027424,"Brand new apartment in Queens, NY",38153613,Farzona,Queens,Briarwood,40.71047,-73.81562,Private room,350,4,1,2018-10-07,0.11,1,90 +29027853,"Bright, spacious room with breakfast in New York",218762580,Heidrun,Manhattan,Harlem,40.8258,-73.95392,Private room,120,3,3,2019-03-26,0.36,1,295 +29028668,Beautiful Large NYC 1 Bedroom With Views,218770781,Mike,Manhattan,Morningside Heights,40.81088,-73.95677,Entire home/apt,135,2,4,2019-06-08,0.53,1,22 +29028761,#5 Quadruple private bedroom for 1-4 people,42093468,Tsotne (Tut),Bronx,Mott Haven,40.81322,-73.91696,Private room,42,5,7,2019-07-01,1.08,4,321 +29031273,Cozy Artists Apartment in Central Harlem,218793561,Dmitri,Manhattan,East Harlem,40.80771,-73.93853,Private room,66,1,21,2019-06-20,2.63,1,64 +29031435,Cozy sun-soaked bedroom in Harlem,6564232,Umar,Manhattan,Harlem,40.81723,-73.93616,Private room,80,2,3,2018-12-09,0.34,1,0 +29031768,ROOM Astoria 8 min to NWR train nice Neighborhood,203231204,Marco,Queens,Astoria,40.76538,-73.91168,Private room,105,1,2,2018-12-02,0.23,1,359 +29034190,The NYC Getaway Space,9808458,Zain,Bronx,Kingsbridge,40.87072,-73.89974,Private room,65,2,0,,,4,364 +29034966,Modern Brooklyn Studio By The Beach,145002203,Bruno,Brooklyn,Brighton Beach,40.58001,-73.96266,Entire home/apt,80,1,51,2019-07-04,5.71,1,303 +29035162,Winter Escape in Classic Brooklyn Brownstone,125576446,Roz,Brooklyn,Prospect Heights,40.67861,-73.96999,Entire home/apt,400,32,1,2018-12-30,0.16,1,0 +29035769,Clinton Hill Sunny Room,218825786,Mariana,Brooklyn,Clinton Hill,40.68883,-73.96141,Private room,55,3,2,2019-01-05,0.31,1,0 +29035989,CAMAROTE SOLO PARA MUJERES/HABITACIÓN COMPARTIDA,215778245,Jessy & Christian,Queens,Corona,40.73894,-73.86477,Shared room,40,2,10,2019-06-09,1.19,6,356 +29036763,"15 minutes to Manhattan, Times square",147269347,Chad,Queens,Long Island City,40.75507,-73.91822,Private room,70,1,2,2019-07-07,2,1,342 +29037043,CB3 BROOKLYN,96479013,Kian,Brooklyn,Bedford-Stuyvesant,40.69402,-73.94679,Private room,72,6,6,2019-05-23,0.76,3,66 +29037141,PRIVATE SINGLES CLEAN BEDROOM NY 6 TRAIN NO CURFEW,44260966,Alicia,Bronx,Soundview,40.83144,-73.86639,Private room,38,2,11,2019-04-21,1.29,3,188 +29037276,Affordable 5-P Room n Private bath,216772639,Ling,Brooklyn,Borough Park,40.63376,-74.00541,Private room,45,1,3,2019-05-26,0.42,7,357 +29037359,Astoria Hideaway,10732658,Rachel,Queens,Ditmars Steinway,40.76976,-73.90314,Private room,500,1,0,,,1,89 +29037483,Bronx Suite,218840878,Francisco,Bronx,Mott Haven,40.81017,-73.92266,Private room,79,2,2,2019-01-02,0.23,1,88 +29037588,Spacious Apartment Located By Central Park,212697613,Jon,Manhattan,Upper West Side,40.78857,-73.97072,Entire home/apt,295,3,19,2019-06-18,2.16,1,77 +29038532,Cozy Nest in the heart of Williamsburg Brooklyn,182306283,Noriko,Brooklyn,Williamsburg,40.71193,-73.95122,Entire home/apt,120,2,40,2019-06-28,4.88,1,13 +29038655,"Small Cozy Room in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76696,-73.91108,Private room,55,1,4,2019-01-02,0.45,3,0 +29039497,Apartment by Central Park,32987584,Maria,Manhattan,Upper West Side,40.79574,-73.96192,Private room,70,6,22,2019-05-31,2.42,1,0 +29039647,"ENJOY MANHATTAN +NEAR TO YANKE STADIUM",143052745,Ociel,Bronx,Mott Haven,40.80958,-73.91895,Private room,120,1,29,2019-06-28,3.15,4,312 +29041626,Cosy room with Queen bed,27084741,Paul,Queens,Woodside,40.74459,-73.91167,Private room,90,1,2,2019-05-18,0.77,2,173 +29043928,Brooklyn Sanctuary,218883687,Parrish,Brooklyn,East Flatbush,40.63931,-73.94451,Private room,125,1,7,2019-01-01,0.76,2,364 +29051174,Hidden Gem in the Upper East Side,10989161,Michele,Manhattan,Upper East Side,40.77513,-73.94977,Entire home/apt,135,1,20,2019-03-12,2.74,1,1 +29051227,1BR in a Stunning LES apt -W/D /2Bath-Top Location,335046,Orit,Manhattan,Lower East Side,40.71241,-73.98913,Private room,120,3,5,2019-01-02,0.55,3,361 +29051841,Amazing Penthouse,213781715,Anting,Brooklyn,Greenpoint,40.73079,-73.95193,Entire home/apt,350,1,1,2018-11-10,0.12,33,0 +29051948,Industrial Loft Living in NYC,63952962,Drew,Bronx,Mott Haven,40.81102,-73.92778,Entire home/apt,81,4,5,2019-05-28,0.62,1,0 +29052179,Entire suite with breathtaking views of NYC,145981682,Simi,Manhattan,Theater District,40.75866,-73.98535,Entire home/apt,850,1,24,2019-06-19,3.51,3,269 +29054423,Spacious bedroom near to subway,79499558,Robertina,Queens,Jackson Heights,40.75346,-73.88397,Private room,68,4,22,2019-07-07,2.45,4,100 +29054576,New York on the Ocean,30895980,Elena,Brooklyn,Brighton Beach,40.57504,-73.95551,Entire home/apt,105,2,6,2019-06-24,0.85,2,332 +29054973,Jul Discount! Beautiful Apartment for 3 in NYC,188741104,Susan,Manhattan,Harlem,40.80872,-73.94274,Entire home/apt,200,31,25,2019-06-18,2.81,4,91 +29055747,British Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80445,-73.96373,Private room,75,1,29,2019-06-23,3.33,3,8 +29056345,"Modern, Bright, & Cheerful - Free Cleaning & WiFi",155297713,Marie & Tyler,Brooklyn,Bushwick,40.70529,-73.92535,Private room,40,30,1,2018-11-22,0.13,3,54 +29056566,Pretty Williamsburg Loft,169467786,Jovenne Naldrey,Brooklyn,Williamsburg,40.71001,-73.96101,Entire home/apt,215,1,5,2019-06-26,2.21,1,165 +29057244,"Bright & Cozy Private Room—Williamsburg, Brooklyn",8185593,Diana,Brooklyn,Williamsburg,40.70951,-73.95443,Private room,80,3,1,2018-10-28,0.12,1,8 +29058075,Quaint Bedroom in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.7111,-73.84099,Private room,150,2,1,2019-01-07,0.16,3,365 +29058512,Modern East Village Apt - Available Last Minute,447895,Adam,Manhattan,East Village,40.723,-73.97753,Entire home/apt,112,2,4,2019-04-21,0.50,1,0 +29058736,Spacious Basement Bedroom in Duplex w/ yard access,142833006,Cj,Brooklyn,Bushwick,40.70631,-73.92064,Private room,42,2,2,2019-01-21,0.26,1,0 +29058814,Designer Studio with Private Terrace,218978124,Jessica,Manhattan,Upper West Side,40.78127,-73.98366,Entire home/apt,80,3,10,2019-03-03,1.51,1,0 +29059214,Comfy Van,10407935,Meng,Manhattan,SoHo,40.72725,-74.00245,Entire home/apt,89,1,45,2019-06-30,4.93,8,34 +29059334,BSM.1. Shered room for 4-5 guests,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66017,-73.9475,Shared room,25,2,4,2019-06-07,0.53,6,365 +29059349,Your TICKET to TIMES SQUARE New York,177396569,Yanina,Manhattan,Hell's Kitchen,40.76247,-73.99254,Entire home/apt,120,5,0,,,3,40 +29059533,4th floor art,183707967,Dionyssios,Manhattan,Washington Heights,40.85277,-73.92916,Entire home/apt,120,2,16,2019-06-23,1.80,4,365 +29059768,Gramercy 3 Bedroom - Central to Everything! #10294,28422641,Dylan,Manhattan,Gramercy,40.73551,-73.98546,Entire home/apt,350,2,29,2019-07-05,3.27,1,65 +29059870,Hostel - Twin-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70652,-73.91784,Shared room,25,4,14,2019-06-05,1.56,5,62 +29060392,Spacious Bedroom for 2 w/ washer/dryer + backyard,121836170,Rafael,Brooklyn,Bushwick,40.70229,-73.92223,Private room,85,1,40,2019-06-09,4.62,1,354 +29060585,Hostel - Full-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70431,-73.91584,Shared room,25,4,17,2019-06-23,1.88,5,80 +29061500,Cozy waterfront studio in downtown Manhattan.,40544318,Daniela,Manhattan,Battery Park City,40.71138,-74.01575,Entire home/apt,200,1,9,2019-01-01,1.01,1,0 +29061711,"In the heart of Hell’s Kitchen , Time Sqare.",76114530,Neetu,Manhattan,Hell's Kitchen,40.76177,-73.99426,Entire home/apt,575,6,0,,,1,83 +29063276,Comfy Minimalist Room W/ Private Entrance,22123619,Antoine,Brooklyn,Crown Heights,40.675,-73.91903,Private room,48,30,2,2018-11-01,0.23,2,89 +29063413,"Large luxury 1 BR with views, greenwich village!",30782359,Tracey,Manhattan,Greenwich Village,40.73069,-73.9932,Entire home/apt,350,2,5,2019-05-19,0.59,1,0 +29063485,★ Your Cozy Home I Taxi Service I Backyard ★,219012245,Denise,Brooklyn,Canarsie,40.63655,-73.91065,Entire home/apt,78,1,10,2019-06-16,2.17,1,3 +29063993,"Cosy Midtown New York Place, Ideal for 1 Person!",219016824,Xue,Manhattan,Chelsea,40.75049,-73.99809,Entire home/apt,69,1,2,2018-10-30,0.24,1,1 +29072168,Amazing Room w/ Private Bathroom - Near to Subway,179387087,John,Brooklyn,Bedford-Stuyvesant,40.67941,-73.90849,Private room,55,4,11,2019-04-28,1.20,3,0 +29073059,Fun in the Financial District,31218019,Stephanie,Manhattan,Financial District,40.70538,-74.00742,Shared room,150,2,11,2019-06-18,1.33,1,270 +29073462,Chill Room in soho,116381793,Jordan,Manhattan,SoHo,40.72182,-73.99963,Private room,134,1,3,2018-12-05,0.36,1,70 +29073911,Home,164538104,Javi,Queens,Maspeth,40.74079,-73.90057,Private room,42,1,1,2018-10-07,0.11,1,178 +29074124,"Private bedroom close to Times Square, Manhattan",219080539,Jose,Manhattan,Hell's Kitchen,40.76108,-73.99358,Private room,100,1,15,2019-06-10,1.74,1,27 +29074233,A Cozy Beautiful Brooklyn Overlooking Park space,49745989,Meir,Brooklyn,Crown Heights,40.67175,-73.9436,Entire home/apt,80,4,12,2019-07-04,1.86,1,29 +29075468,Modern room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.71168,-73.95626,Private room,67,1,15,2019-01-13,1.65,3,0 +29075705,Convenient room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.70987,-73.95818,Private room,66,1,45,2019-06-23,4.91,3,75 +29075810,COZY Single Bed @Williamsburg NY Lorimer Ltrain!,1104166,Mala,Brooklyn,Williamsburg,40.71164,-73.95173,Private room,95,2,7,2019-04-15,0.77,4,3 +29078251,"Park Avenue midtown apartment, walk to everything",1163709,Dc,Manhattan,Murray Hill,40.74836,-73.9807,Shared room,800,2,12,2019-06-27,1.40,1,220 +29078405,"MODERN 2BD WITH ROOFTOP, DOWNTOWN MANHATTAN",44129118,Anthony,Manhattan,Financial District,40.7105,-74.00845,Entire home/apt,249,20,0,,,2,0 +29079293,Luxury pied-à-terre in Carroll Gdns carriage hse,48806776,Amanda,Brooklyn,Carroll Gardens,40.68132,-73.99169,Entire home/apt,175,2,14,2019-05-25,2.05,1,119 +29079699,Midtown studio with balcony,8597272,Sammi,Manhattan,Hell's Kitchen,40.76479,-73.98831,Entire home/apt,200,5,2,2018-10-30,0.23,1,15 +29079912,Cozy place to stay 7 minutes from Manhattan...,210755291,Elizabete,Queens,Astoria,40.76172,-73.92098,Private room,100,3,2,2019-05-20,0.94,1,364 +29080980,"Best Homestay 25 min Manhattan , Barclays Center",94214493,Dadrine,Brooklyn,East Flatbush,40.65554,-73.9184,Private room,70,7,0,,,9,365 +29081010,金色上房,190324721,Jun Jun,Queens,Flushing,40.75914,-73.83352,Private room,70,1,5,2019-06-04,0.82,4,5 +29081056,Cozy & Large NYC Private Suite!,48954003,Bradley,Bronx,Olinville,40.88453,-73.86273,Private room,80,2,20,2019-05-03,2.20,1,188 +29081059,Doris’s Fresh House,216065402,Lee,Queens,College Point,40.79439,-73.84675,Private room,60,2,19,2019-07-01,2.11,1,331 +29081201,Entire Space - Large Apartment - Clean 2&5 Trains,24103915,Godlove,Brooklyn,Flatbush,40.63517,-73.96221,Entire home/apt,89,1,22,2019-06-08,2.48,1,35 +29081288,"Great home stay,Manhattan Barclay Center 25minutes",94214493,Dadrine,Brooklyn,East Flatbush,40.65454,-73.91885,Private room,90,7,1,2019-06-02,0.79,9,365 +29081547,Cozy renovated NYC Gateway - 7 min M/R Train (2),158407820,Omar,Queens,Woodside,40.75368,-73.90216,Private room,53,2,33,2019-06-19,3.67,5,157 +29082165,Luxurious Huge Room Same Street As The Subway!,153500245,Isabela,Brooklyn,Bedford-Stuyvesant,40.67872,-73.90967,Private room,90,1,51,2019-06-24,5.56,2,224 +29082372,MJS HOME,219167320,Murat,Queens,Queens Village,40.71059,-73.74515,Entire home/apt,60,3,25,2019-06-17,3.16,1,143 +29082508,"Entire Brooklyn apartment, safe, quiet with garden",8119708,Charlotte & Aaron,Brooklyn,Midwood,40.62795,-73.96281,Entire home/apt,125,3,6,2019-06-23,0.71,3,173 +29082734,Sublet - Queen size bedroom in Bushwick,104351616,Ben,Brooklyn,Bushwick,40.70166,-73.93062,Private room,50,5,0,,,1,0 +29083751,PRIME LOCATION CLEAN SOHO PRIVATE ROOM 2 BEDROOM,26860800,Jonathan,Manhattan,SoHo,40.72614,-74.00076,Private room,115,1,31,2019-06-12,3.39,1,1 +29090040,Riverside doorman and concierge,21339635,Martin,Manhattan,Upper West Side,40.77708,-73.98791,Entire home/apt,138,3,24,2019-07-03,2.69,1,1 +29093302,Cozy quiet private room,41939513,Cynthia,Manhattan,Harlem,40.79913,-73.95357,Private room,120,5,3,2018-12-09,0.38,1,0 +29094342,Near JFK air train nice spot,219262205,Tony,Queens,Jamaica,40.70094,-73.81446,Private room,60,1,37,2019-03-09,4.17,1,0 +29095078,Beautiful room in Sunset Park,10220753,Kirstie,Brooklyn,Sunset Park,40.65209,-74.01136,Private room,112,1,10,2019-05-02,1.15,2,0 +29095217,Charming Brooklyn 2 Bedroom w/Character,24738407,Matthew,Brooklyn,East Flatbush,40.63853,-73.94869,Entire home/apt,140,3,33,2019-07-02,4.01,2,116 +29095984,Upper East Side Spacious 2 BR with Balcony,24230637,Kartik,Manhattan,Upper East Side,40.77003,-73.95018,Entire home/apt,199,20,0,,,1,337 +29096185,Welcome to Woodside!,56177749,Zumunta,Queens,Woodside,40.74218,-73.90403,Private room,31,1,1,2018-10-14,0.11,1,0 +29096295,Clinton Hill loft for your creative side.,5953382,Matthew,Brooklyn,Bedford-Stuyvesant,40.69196,-73.95969,Entire home/apt,100,3,5,2019-01-09,0.57,1,0 +29096312,Rose in Spanish Harlem 2,202587815,Willie,Manhattan,East Harlem,40.79006,-73.94969,Private room,120,2,27,2019-06-18,3.29,2,188 +29096448,Unique Penthouse,213781715,Anting,Manhattan,NoHo,40.72904,-73.99344,Entire home/apt,225,1,2,2018-12-11,0.24,33,179 +29097320,Charming 1 Bedroom Apartment in Greenwich Village,11854642,James,Manhattan,West Village,40.73255,-74.00173,Entire home/apt,157,5,1,2018-11-26,0.13,1,0 +29097472,Unique bohemian modern apartment,157397904,Kimbe,Brooklyn,Williamsburg,40.71705,-73.96545,Entire home/apt,275,30,2,2019-05-08,0.68,1,77 +29098862,Quite room. 15 mins to JFK & 20 mins to Manhattan,219305025,Michael,Brooklyn,Cypress Hills,40.67855,-73.86961,Private room,80,1,3,2019-01-02,0.42,1,1 +29100541,"Private Room, Bath & Entry w/ Free Parking in NYC",22175061,Suket,Queens,Forest Hills,40.72096,-73.8539,Entire home/apt,99,2,44,2019-07-01,4.94,2,35 +29101869,Sunny apartment with piano + yard!,161873557,Natalia,Brooklyn,Bedford-Stuyvesant,40.69898,-73.94705,Entire home/apt,85,3,34,2019-07-01,4.36,1,42 +29101938,The Bronx Studio,219330285,Janice,Bronx,Wakefield,40.89385,-73.8448,Entire home/apt,80,3,6,2018-12-31,0.71,1,0 +29102760,Split level walk-in Masterbedroom,219333557,Rafael,Queens,East Elmhurst,40.76274,-73.86866,Private room,79,1,8,2019-06-02,1.26,7,96 +29103145,"Hip, Light & Plant Filled Studio in Prime Harlem",14953075,Laura,Manhattan,Harlem,40.81562,-73.94712,Entire home/apt,150,5,3,2018-12-02,0.38,1,0 +29103275,Central park lovely cozy room,218300830,Leona,Manhattan,Upper East Side,40.77345,-73.95386,Private room,100,1,76,2019-07-03,9.58,2,281 +29103450,Beautiful cosy room in a Luxury Building,59204717,Chantou,Brooklyn,Bedford-Stuyvesant,40.69156,-73.95307,Private room,87,2,3,2019-01-02,0.35,1,0 +29104053,Gem of East New York,219347424,Adonna,Brooklyn,East New York,40.66737,-73.87551,Private room,150,2,1,2018-12-14,0.14,2,354 +29104593,Upper East Side Cozy Private Room,218300830,Leona,Manhattan,Upper East Side,40.77375,-73.9541,Private room,100,1,59,2019-06-29,7.31,2,257 +29104786,Amazing room for your holidays,16965783,Luca,Manhattan,Harlem,40.82452,-73.94427,Private room,56,3,17,2019-06-22,2.63,1,228 +29105065,Private Crown Heights bedroom near 2/5 Trains,90996947,Alan,Brooklyn,Prospect-Lefferts Gardens,40.66226,-73.94855,Private room,70,2,4,2019-04-19,0.46,1,321 +29105563,Charming Brooklyn 1 Bedroom Apartment w/Character,24738407,Matthew,Brooklyn,East Flatbush,40.63905,-73.95046,Entire home/apt,120,3,23,2019-07-01,2.79,2,121 +29105864,Cozy UES studio,19739986,Adriana,Manhattan,Upper East Side,40.76731,-73.95843,Entire home/apt,155,1,50,2019-06-21,5.75,1,8 +29105910,HABITACION PRIVADA PARA TI EN NYC.. PRIVATE ROOM,115734913,Nahi,Bronx,Fordham,40.85791,-73.89528,Private room,39,2,24,2019-06-22,2.73,1,211 +29106442,Cute and roomy 2br Clinton Hill hideaway,46337258,Anna,Brooklyn,Clinton Hill,40.69416,-73.96866,Entire home/apt,200,3,2,2018-12-28,0.22,1,16 +29107308,"Cozy, Sunny Bedroom near Times Square/hk",67186748,Travis,Manhattan,Hell's Kitchen,40.76129,-73.9943,Private room,250,1,4,2018-12-16,0.44,1,365 +29109909,Cozy financial district manhattan spot,219383069,Melli,Manhattan,Financial District,40.70494,-74.00964,Entire home/apt,220,1,8,2019-06-06,0.89,1,0 +29113996,Lovely double bedroom in the centre of it all,24405003,Bianca,Manhattan,Chinatown,40.7147,-73.99279,Private room,106,2,9,2019-05-25,1.12,3,117 +29117381,"Queen bed behind living room curtain, cheap, good",15872352,Sifan,Queens,Rego Park,40.73095,-73.86411,Shared room,40,1,25,2019-07-03,2.90,2,78 +29117643,Cultured NYC 2.0,165607672,Mariela,Bronx,Fordham,40.85765,-73.90351,Private room,48,2,18,2019-04-13,2.00,2,34 +29119411,Cozy Studio Alcove in the heart of East Village!!,56648414,Anique,Manhattan,East Village,40.72759,-73.98786,Entire home/apt,125,1,11,2018-12-10,1.26,1,0 +29120854,"Large apt in trendy, hipster Ridgewood/Bushwick BK",2604247,Jason,Brooklyn,Bushwick,40.70426,-73.91308,Entire home/apt,150,5,1,2018-11-12,0.13,1,0 +29123516,Private Bathroom & Bedroom in Williamsburg,113411637,Joel,Brooklyn,Williamsburg,40.71954,-73.94329,Private room,68,2,5,2019-03-31,0.61,1,4 +29124172,"Private room by LGA, Citifield and near Manhattan.",219465297,Irwing,Queens,Jackson Heights,40.75491,-73.88313,Private room,49,2,10,2019-04-23,1.15,1,5 +29124414,Large 2 Bedroom Gem,12171344,Marta,Brooklyn,Crown Heights,40.66506,-73.95177,Entire home/apt,185,2,6,2019-06-16,0.79,2,2 +29124476,Lovely private bedroom in Manhattan,20825054,Andres,Manhattan,Inwood,40.86565,-73.92348,Private room,50,2,44,2019-07-07,4.85,1,271 +29125444,Cozy 1 bedroom in Murray Hill.,52083976,Kevin,Manhattan,Murray Hill,40.74466,-73.9737,Entire home/apt,140,1,0,,,1,0 +29126587,QUEEN BED - GREAT LOCATION NEXT TO METRO,199786012,Nadine,Brooklyn,Bedford-Stuyvesant,40.69558,-73.94697,Private room,65,30,21,2019-05-13,2.31,3,365 +29126674,"HUGE Art-Loft Warehouse in Bushwick, Brooklyn",5759665,Cristóbal,Brooklyn,Bushwick,40.70752,-73.92217,Entire home/apt,120,2,9,2019-04-21,1.03,1,0 +29126779,One Bdrm Apt w/ Extraordinary Views of Downtown,218936218,Solina,Manhattan,Financial District,40.71148,-74.01283,Entire home/apt,230,3,8,2019-05-26,0.95,1,23 +29127425,Modern huge room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.69167,-73.948,Private room,60,1,7,2019-01-01,0.78,2,28 +29127613,Small & comfy Bedroom near Brooklyn college.,219499104,Monika,Brooklyn,Flatbush,40.6355,-73.95205,Private room,60,1,12,2019-06-10,1.34,1,90 +29128941,Private room in a Bohemian Bushwick Loft! c,96737879,Yury,Brooklyn,Williamsburg,40.70266,-73.93413,Private room,60,3,12,2019-06-30,2.55,3,73 +29129018,"AFFORDABLE ROOM, 5 MINUTES TO MANHATTAN!",217784241,Analia,Brooklyn,Williamsburg,40.70964,-73.95969,Private room,60,1,81,2019-06-21,8.97,4,0 +29129256,Large Shared Studio (your own bed) - Luxury+Views!,28531618,Wayne,Manhattan,Upper West Side,40.77169,-73.99117,Shared room,79,3,4,2019-07-01,0.50,1,76 +29129902,"Upper West Side, 1800 sq/ft private apartment",66361,Jasmine,Manhattan,Upper West Side,40.79566,-73.96954,Entire home/apt,275,2,8,2019-07-01,0.99,1,24 +29130366,Amazing place close to all,960248,Max/Patti,Manhattan,East Harlem,40.79511,-73.9373,Entire home/apt,220,3,21,2019-06-30,4.04,1,24 +29130381,24 Lex Prime Location of East NYC 15min to TimeSq,161057073,Stella,Manhattan,Kips Bay,40.73945,-73.98168,Entire home/apt,95,2,39,2019-06-22,4.33,4,74 +29130838,Cozy 1bd in Kensington,22474793,Alena,Brooklyn,Kensington,40.64046,-73.97233,Entire home/apt,130,1,2,2019-05-27,1.28,1,95 +29131447,Upper East Side room with full size bed,216944902,Janna,Manhattan,East Harlem,40.79055,-73.94867,Private room,85,1,6,2018-12-02,0.67,1,0 +29132306,BEST LOCATION IN NEW YORK:PRIVATE MEDIUM SIZE ROOM,183748836,Alex,Manhattan,Midtown,40.75829,-73.97259,Private room,120,1,44,2019-05-22,4.91,1,4 +29132322,Casa finca Zen Sanctuary Artist Home,895135,Suanny,Brooklyn,Williamsburg,40.70717,-73.94622,Entire home/apt,95,3,7,2019-05-30,0.93,3,363 +29132459,Brooklyn with a view,163046191,Elma,Brooklyn,Fort Greene,40.68257,-73.97139,Private room,45,30,1,2019-05-22,0.61,2,77 +29132608,Elmhurst 1st Fl Rightl Bedroom,219333557,Rafael,Queens,East Elmhurst,40.76294,-73.86883,Private room,49,1,17,2019-07-01,1.90,7,0 +29132728,Cozy and spacious 1-bedroom apartment,83907534,Leen,Manhattan,Kips Bay,40.74228,-73.97601,Entire home/apt,175,7,5,2019-06-14,0.66,1,32 +29133320,HUGE LOFT IN HIP BUSHWICK 1 - NEAR 2 METROS,121130063,Luke & Madia,Brooklyn,Bushwick,40.70428,-73.92702,Private room,70,2,2,2019-06-19,2,3,358 +29133348,New! Entire studio apartment with lofted bedroom!!,72006801,Kevin,Queens,Ridgewood,40.70208,-73.91125,Entire home/apt,120,2,2,2018-11-24,0.24,1,5 +29133389,Awesome Budget Private Room with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69232,-73.94966,Private room,70,2,14,2019-06-23,1.65,3,365 +29133513,Elmhurst 1st Floor BR w/ Pvt. Bath&Balcony,219333557,Rafael,Queens,East Elmhurst,40.76251,-73.86765,Private room,59,1,17,2019-05-24,1.90,7,0 +29133980,"LGA airport Apt. near Manhattan, JFK, Citi Field.",219548329,Farhana,Queens,East Elmhurst,40.76971,-73.87273,Entire home/apt,99,1,34,2019-06-24,3.76,1,166 +29134423,Your Brooklyn paradise,219548549,Kennedy,Brooklyn,Bushwick,40.69272,-73.92067,Private room,155,1,1,2018-10-13,0.11,2,365 +29134543,Cozy Waterfront Space in Brooklyn,217075214,Judyann,Brooklyn,Canarsie,40.64116,-73.88346,Entire home/apt,125,3,3,2019-06-26,0.43,1,85 +29135220,Parisian Style Apartment in Heart of Brooklyn,32830245,Dora,Brooklyn,Prospect Heights,40.68063,-73.97334,Entire home/apt,180,2,9,2019-06-13,1.01,1,0 +29135488,"Cozy Room, 2 twin beds, NEAR TRAIN AND AIRPORTS",219099148,Valeria,Queens,Ridgewood,40.70605,-73.90374,Private room,50,1,14,2018-12-28,1.70,1,272 +29135797,Stylish bright and newly renovated,219558480,Lena,Manhattan,East Village,40.72876,-73.98655,Entire home/apt,187,7,4,2019-01-03,0.47,1,56 +29136920,REDESIGNED LUX Studio&garden Park Slope Brooklyn!,87786261,Sophia,Brooklyn,South Slope,40.66238,-73.98742,Entire home/apt,179,2,9,2019-06-23,1.03,5,152 +29138655,RENOVATED LUXURY 3BR 3BATH ON LITTLE WEST STREET,200380610,Pranjal,Manhattan,Battery Park City,40.70587,-74.01773,Entire home/apt,433,180,0,,,65,364 +29144832,Luxurious home in the sky overlooking 5th Ave.,214270886,Maka,Manhattan,Midtown,40.75138,-73.98143,Entire home/apt,300,1,10,2019-02-01,1.15,1,0 +29146109,CozyPlace 20%off Week Pvt Entrance 18min Manhattan,28260018,Ivan,Queens,Ditmars Steinway,40.77612,-73.90456,Private room,96,1,63,2019-06-17,7.08,1,80 +29146373,Huge 1 Bedroom 3F in Authentic Brooklyn Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69263,-73.93992,Private room,75,2,22,2019-07-01,2.45,6,308 +29146446,Charming 1 Bedroom on the best block in BK Heights,3959013,Clarke,Brooklyn,Brooklyn Heights,40.69228,-73.99768,Entire home/apt,151,5,4,2019-04-18,0.63,1,27 +29148367,Stunning 2 Bedroom in Soho,61391963,Corporate Housing,Manhattan,Little Italy,40.71881,-73.99675,Entire home/apt,165,30,2,2019-06-27,0.33,91,347 +29148550,Luxurious Apt Best Finishes & Location,61391963,Corporate Housing,Manhattan,Kips Bay,40.74472,-73.97932,Entire home/apt,125,30,1,2019-06-20,1,91,352 +29149191,CLASSIC/ BRIGHT 1 BEDROOM IN UNION SQUARE,200380610,Pranjal,Manhattan,Gramercy,40.73261,-73.98398,Entire home/apt,180,30,0,,,65,364 +29149612,Cute Private Room in Astoria Duplex,21030441,Nathalie,Queens,Astoria,40.76836,-73.91506,Private room,87,2,20,2019-06-30,3.24,1,282 +29149618,Confortable room in East Village,7795299,Margaux,Manhattan,Gramercy,40.73254,-73.98207,Private room,100,3,8,2019-07-07,1.00,1,13 +29150743,Spacious Apartment with a View in Williamsburg,7912469,Pedro,Brooklyn,Williamsburg,40.70695,-73.94913,Private room,50,2,3,2018-11-15,0.34,1,0 +29150883,BEAUTIFUL UPPER WEST SIDE-WEST 83RD STREET,200380610,Pranjal,Manhattan,Upper West Side,40.7854,-73.97532,Entire home/apt,215,30,0,,,65,365 +29151631,The warm place,219666829,Charlotte,Queens,Bay Terrace,40.77971,-73.77857,Shared room,32,2,6,2019-06-23,0.95,1,169 +29152037,"Private artist bedroom in Bushwick, Brooklyn",219669515,Sasha,Brooklyn,Bushwick,40.70328,-73.92006,Private room,50,2,6,2019-06-19,5.62,1,10 +29152320,Gem of East New York,219347424,Adonna,Brooklyn,East New York,40.66788,-73.87339,Entire home/apt,150,2,6,2019-04-28,0.69,2,171 +29152795,Hostel- Twin-sized Bed in Shared Room in Brooklyn,201813482,Nick,Brooklyn,Bushwick,40.70442,-73.91707,Shared room,25,4,27,2019-06-18,3.01,5,49 +29152899,Private room in E. Williamsburg! Budget friendly!,9770822,Andrea,Brooklyn,Williamsburg,40.71233,-73.93781,Private room,55,3,13,2019-06-22,1.55,1,36 +29153170,Nicely decorated apt with amazing private rooftop!,219678120,Jean,Brooklyn,Crown Heights,40.67419,-73.92173,Entire home/apt,200,3,21,2019-06-10,2.79,1,327 +29153508,"Spacious, brand-new Downtown Brooklyn apartment",17604711,Dora,Brooklyn,Downtown Brooklyn,40.6904,-73.98502,Entire home/apt,135,9,5,2019-07-05,0.62,1,12 +29155175,Private Sun-Drenched 1BR Brownstone Apt,11823440,Kisha,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92306,Entire home/apt,129,3,42,2019-07-07,4.81,1,233 +29156377,Historic Harlem New York Get-Away with charm,219462780,Curtis Green,Manhattan,Harlem,40.82746,-73.94718,Private room,60,2,1,2018-12-14,0.14,1,83 +29157211,Angeles aparment,95921282,Walter,Queens,Richmond Hill,40.68308,-73.81649,Entire home/apt,165,2,29,2019-06-24,3.23,1,362 +29157794,Full size room for rent,181885938,Ismael,Queens,Elmhurst,40.73288,-73.87177,Private room,55,2,8,2019-06-29,0.90,2,315 +29157984,Double Bedroom in Modern Manhattan Apartment,219717193,Jessie,Manhattan,Gramercy,40.73288,-73.98251,Private room,59,5,18,2019-06-21,2.01,2,5 +29158199,한성 韓城 Han C (2F),92706260,Kane,Queens,Flushing,40.76126,-73.81443,Private room,45,1,58,2019-06-20,6.42,5,75 +29158470,South Slope Townhome,219725282,Jacqueline,Brooklyn,Sunset Park,40.66051,-73.99081,Entire home/apt,400,2,3,2019-04-27,0.40,1,0 +29158675,"Amazing & Cozy Room, Same Street As The Subway!",219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67737,-73.90935,Private room,75,1,43,2019-06-23,4.80,4,52 +29158689,Brooklyn APT in heart of urban NYC hustle & bustle,41209536,Andrew,Brooklyn,Bedford-Stuyvesant,40.69732,-73.93684,Entire home/apt,125,3,19,2019-06-21,2.27,1,225 +29159486,Bright & Cheerful - Modern Style + Free Cleaning,155297713,Marie & Tyler,Brooklyn,Bushwick,40.70531,-73.92592,Private room,39,30,1,2019-05-31,0.77,3,38 +29159920,Suite East Side - FREE street parking & wifi,219738858,Joe,Manhattan,Lower East Side,40.72074,-73.98487,Entire home/apt,195,30,21,2019-06-21,2.43,5,117 +29160008,Cobble Hill Alcove Studio,112794720,Joshua,Brooklyn,Carroll Gardens,40.68386,-73.99807,Entire home/apt,125,1,1,2019-05-25,0.65,1,34 +29160599,Private bedroom in Washington Heights,219746152,Sonia And Lissette,Manhattan,Washington Heights,40.83788,-73.9402,Private room,60,3,8,2019-06-10,1.15,1,2 +29161516,Cozy Private Room in Brooklyn,51699123,Bo,Brooklyn,Bushwick,40.69854,-73.91086,Private room,70,2,29,2019-06-24,4.73,2,121 +29162918,ELMHURST/FLUSHING 1ST FLOOR 3BEDROOM APT.,219333557,Rafael,Queens,East Elmhurst,40.76236,-73.86862,Entire home/apt,149,1,40,2019-06-24,5.00,7,0 +29162974,Private Room in a Recently Remodeled Apt Bushwick,52484523,Andres,Brooklyn,Bushwick,40.70247,-73.91409,Private room,100,3,4,2019-05-26,0.59,1,0 +29163083,Warm and Cozy two bedroom in prime Chelsea,217792112,George,Manhattan,Chelsea,40.74889,-74.00132,Entire home/apt,320,3,40,2019-06-16,4.53,1,95 +29165306,15% Discount - Cozy Room in LES with Backyard,219782181,Vince,Manhattan,Lower East Side,40.715,-73.98596,Private room,80,1,22,2019-06-17,2.54,3,123 +29165823,Sunny Newly Renovated Private Room - Bed-Stuy,219785279,Uchenna,Brooklyn,Bedford-Stuyvesant,40.68131,-73.95254,Private room,79,2,18,2019-06-12,2.10,1,74 +29167257,Multicultural House II,203123161,Luis,Bronx,Concourse,40.82132,-73.92884,Entire home/apt,100,3,24,2019-06-30,3.44,2,187 +29168569,"Home For Medical Professionals - ""The Macula""",26377263,Stat,Brooklyn,East Flatbush,40.65385,-73.93657,Private room,53,19,0,,,43,347 +29170235,"Home For Medical Professionals - ""The Palatine""",26377263,Stat,Brooklyn,East Flatbush,40.65405,-73.93657,Private room,53,30,0,,,43,311 +29170953,Spacious Superhost BK RM! Easy Manhattan acess!,137358866,Kazuya,Brooklyn,Bushwick,40.69248,-73.91189,Private room,43,30,0,,,103,157 +29171435,Gorgeous Brownstone Studio @ Central Park West,103368847,Sasha,Manhattan,Upper West Side,40.78579,-73.97148,Entire home/apt,150,2,25,2019-06-28,4.36,1,129 +29173351,"1 Rm in 4 BR East Vil-King bd, Roof,prime location",62167677,Joshua,Manhattan,East Village,40.72784,-73.98473,Private room,60,8,1,2019-03-28,0.29,2,0 +29174021,"Cosy, friendly room in great part of Bed Stuy!",122551862,Marian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.94528,Private room,41,2,18,2019-06-15,2.23,2,18 +29176864,136 Apt 7,159435936,Jonathan,Manhattan,Upper West Side,40.78833,-73.97182,Entire home/apt,85,30,2,2019-02-26,0.44,3,118 +29176897,Semi-private bedroom. Close 2 Times Square,219848970,Javier,Manhattan,Hell's Kitchen,40.76219,-73.99493,Shared room,69,1,30,2019-06-20,3.40,2,335 +29178331,Farm house style in Bay Ridge (A),31760835,Fon,Brooklyn,Bay Ridge,40.6339,-74.03049,Private room,65,1,10,2019-01-01,1.13,4,4 +29178713,Farm house style home in Bay Ridge (B),31760835,Fon,Brooklyn,Bay Ridge,40.63504,-74.0289,Private room,65,1,7,2019-01-09,0.78,4,189 +29178995,Farm house style home in Bay Ridge (C),31760835,Fon,Brooklyn,Bay Ridge,40.63409,-74.02887,Private room,65,1,8,2019-05-05,0.92,4,98 +29179815,Excellent Private Room,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69363,-73.9404,Private room,60,2,29,2019-06-02,3.95,3,292 +29179918,Basemnt,211146044,Ann,Brooklyn,Bedford-Stuyvesant,40.69342,-73.93884,Private room,58,2,0,,,3,317 +29180542,Newly renovated duplex home in Central Harlem,219879114,Tricia,Manhattan,Harlem,40.81182,-73.94331,Entire home/apt,159,2,26,2019-06-09,3.05,1,343 +29181147,Cozy private room near Columbia University,41541593,Zoe,Manhattan,Upper West Side,40.80324,-73.96555,Private room,70,10,4,2019-01-15,0.49,1,19 +29181179,Charming Studio Apartment at East Harlem.,37736307,Rafael,Manhattan,East Harlem,40.78731,-73.94889,Private room,110,2,8,2019-06-30,0.95,2,14 +29181281,A Suite with breathtaking views of NYC !,145981682,Simi,Manhattan,Theater District,40.75982,-73.98418,Private room,999,1,12,2019-02-11,1.40,3,213 +29181449,Double Bedroom in BedStuy/Clinton Hill/Fort Greene,186349150,Kit,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95405,Private room,75,1,3,2018-11-12,0.34,1,0 +29181504,Over-sized amazing studio in East Village!,35957140,Oz,Manhattan,East Village,40.72941,-73.98094,Entire home/apt,150,4,9,2019-05-30,1.12,1,0 +29181842,Charming East Village 1 Bedroom Apartment,46589590,Shabnam,Manhattan,East Village,40.72449,-73.98384,Entire home/apt,114,14,0,,,1,19 +29183047,Amber Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.6929,-73.95513,Private room,49,2,15,2019-06-24,1.70,34,306 +29183204,Brand new private room in new building w Roofdeck,54677106,Alan,Brooklyn,Bedford-Stuyvesant,40.6797,-73.94084,Private room,41,1,6,2019-03-17,0.66,2,0 +29183445,New 2bd 2bat Apt. w/ rooftop Manhattan view & gym,54677106,Alan,Brooklyn,Bedford-Stuyvesant,40.67825,-73.94068,Entire home/apt,175,2,1,2018-10-30,0.12,2,0 +29183470,Apatite Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69228,-73.95677,Private room,49,2,12,2019-06-24,1.35,34,305 +29183581,Little Italy Sunny 2 Bedroom,116976293,Topher,Manhattan,Little Italy,40.71865,-73.99847,Entire home/apt,225,3,0,,,2,0 +29183697,Citrine Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69436,-73.95526,Private room,65,2,11,2019-07-03,1.31,34,282 +29183838,Emerald Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69261,-73.95706,Private room,49,2,10,2019-06-18,1.14,34,313 +29183932,Garnet Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95528,Private room,49,2,9,2019-06-05,1.02,34,312 +29184026,Lava Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69366,-73.95563,Private room,65,2,7,2019-06-22,0.80,34,285 +29184093,Opalite Bedroom,119669058,Melissa,Brooklyn,Bedford-Stuyvesant,40.69263,-73.95583,Private room,49,2,9,2019-07-03,1.02,34,308 +29184419,"20 minutes from Manhattan, 1 block from subway",492457,Jay,Queens,Woodside,40.74364,-73.90222,Private room,50,2,14,2019-05-26,1.57,1,308 +29184626,Modern Bright Private Entry 3min to TRAIN near JFK,89680730,Terry,Brooklyn,Brownsville,40.66399,-73.91913,Private room,45,1,16,2019-07-04,6.86,1,139 +29184845,Haven In Harlem,17892150,Lancelot,Manhattan,Harlem,40.81295,-73.95304,Private room,60,3,35,2019-06-19,4.10,1,5 +29184981,Cute Apartment in Brooklyn,25767215,Sofia,Brooklyn,Crown Heights,40.67792,-73.9484,Private room,99,1,9,2019-06-19,1.18,1,249 +29186254,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.72839,-73.99225,Entire home/apt,225,1,8,2019-06-06,1.62,33,179 +29188542,SUN DRENCHED 1 BEDROOM IN THE LOWER EAST SIDE,8053333,Stefanie,Manhattan,Chinatown,40.71722,-73.99242,Entire home/apt,105,2,15,2019-06-18,1.67,1,160 +29189777,"Bed&Bushwick | Clean & Chic Apt, Close to Subway",219924114,Mella & Justin,Brooklyn,Bushwick,40.6954,-73.92723,Entire home/apt,115,3,38,2019-07-01,4.40,1,131 +29190199,"Quick walk to L Train, Free Cleaning & WiFi!",105506002,Martin & Steve,Brooklyn,Williamsburg,40.7126,-73.93982,Private room,44,30,1,2019-06-09,1,1,84 +29190221,Cozy room in Brooklyn. 40 min to Manhattan.,172986033,Boris,Brooklyn,Bensonhurst,40.61023,-73.99627,Private room,39,1,0,,,1,0 +29191564,"GORGEOUS APARTMENT, PERFECT HARLEM LOCATION!",29104701,Patrice,Manhattan,Harlem,40.80055,-73.95501,Entire home/apt,150,3,16,2019-06-14,2.22,1,50 +29191862,Room in a Lovely Apartment in Upper East Side,219981147,Amanda & Rafael,Manhattan,Upper East Side,40.76869,-73.95007,Private room,150,2,8,2019-02-10,0.92,1,0 +29192462,Spacious apartment in front of Prospect Park,42735733,Slava,Brooklyn,Crown Heights,40.66392,-73.95994,Entire home/apt,110,1,52,2019-06-28,5.98,1,81 +29202087,Modern WBurg Castle in w/ Park & Skyline Views,8917825,Jordan,Brooklyn,Greenpoint,40.72004,-73.95424,Entire home/apt,199,2,11,2019-02-01,1.49,1,0 +29203845,Chic & Charming Brownstone Apartment 2 Bed w/Patio,3849025,Ana,Brooklyn,Bedford-Stuyvesant,40.69391,-73.94352,Entire home/apt,180,5,18,2019-06-12,2.18,1,106 +29205007,Parkside Place,217970334,Linda,Bronx,Norwood,40.87448,-73.87412,Entire home/apt,200,1,13,2019-07-07,6.61,1,0 +29205817,Little Safe Haven,220055820,Lillian,Manhattan,Harlem,40.82494,-73.9428,Private room,80,2,15,2019-07-03,1.73,1,143 +29205903,"Hidden gem in LES with Access to Backyard, F train",219782181,Vince,Manhattan,Lower East Side,40.71451,-73.98789,Private room,78,1,22,2019-06-16,2.53,3,91 +29206093,Modern Furnished 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70876,-73.96592,Entire home/apt,120,29,0,,,7,0 +29206535,Superior One Bedroom Apartment in Prime Brooklyn,220060177,Alan,Brooklyn,Bushwick,40.69471,-73.90687,Private room,75,3,6,2019-05-11,0.74,2,365 +29209379,"Green Rm,4 bdrm House Medical & Professional ONLY",214611101,Myra,Brooklyn,Kensington,40.638,-73.97652,Private room,50,30,1,2018-12-01,0.14,4,130 +29209396,Room with King sized bed in the heart of Bushwick,200182757,Rosie,Brooklyn,Bushwick,40.70696,-73.9199,Private room,50,2,31,2019-06-20,3.86,2,273 +29210330,Perfect share apartment near Little Italy!,1613244,Ariel,Manhattan,Lower East Side,40.72143,-73.9931,Entire home/apt,170,30,0,,,9,336 +29210994,"Orange Rm, 4bd rm Home Medical & Professional ONLY",214611101,Myra,Brooklyn,Kensington,40.63765,-73.97711,Private room,45,30,2,2019-02-28,0.26,4,42 +29212676,Large soho apartment,28823649,Rose,Manhattan,SoHo,40.72405,-74.00073,Entire home/apt,194,1,0,,,3,89 +29212737,PrivateRoom2/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.78029,-73.8184,Private room,49,1,50,2019-06-30,5.58,3,87 +29213095,Blue rm 4bdrm Home Medical & Professionals ONLY,214611101,Myra,Brooklyn,Kensington,40.63678,-73.97625,Private room,40,30,1,2019-06-30,1,4,120 +29213401,PrivateRoom/LGA&JFK&Citi field&法拉盛/BustoManhattan,164719010,Babie,Queens,Whitestone,40.77945,-73.82029,Private room,35,1,35,2019-07-06,3.87,3,86 +29213886,Charming NEW Nordic Style 1-bed apartment,7956889,K,Brooklyn,Bushwick,40.68864,-73.91295,Entire home/apt,86,28,3,2019-07-02,0.43,1,66 +29214672,Beautiful spacious apt in the heart of Bushwick,7638924,Ioana,Brooklyn,Bushwick,40.70466,-73.9177,Entire home/apt,130,4,0,,,1,0 +29215351,Private! Entire loft near the waterfront!,220121415,Min,Brooklyn,Williamsburg,40.7075,-73.96576,Entire home/apt,96,3,22,2019-06-04,2.59,1,58 +29215529,CHARMING & SPACIOUS CENTRALLY LOCATED STUDIO APT,217996544,Ofir,Manhattan,Kips Bay,40.74139,-73.98132,Entire home/apt,199,30,0,,,2,365 +29215541,Private Apartment,219502160,Aneel,Queens,Ozone Park,40.68005,-73.85552,Entire home/apt,150,5,3,2019-07-01,0.35,1,317 +29215600,Charming cozy bedroom in Clinton Hill!,1303899,Nicolas,Brooklyn,Clinton Hill,40.68933,-73.96082,Private room,45,3,1,2018-10-18,0.11,1,189 +29216228,Sunny apartment in the heart of Greenpoint!,66473223,Roger,Brooklyn,Greenpoint,40.73324,-73.95332,Entire home/apt,110,3,1,2019-06-01,0.79,1,0 +29216296,Feel at home!,23703328,Dada,Queens,Kew Gardens,40.71163,-73.82752,Private room,59,1,24,2019-06-30,2.76,1,32 +29216706,NEW Perfect cozy 1 BDRM near JFK & Casino NYC LGA,220129825,Carlton,Queens,Jamaica,40.67379,-73.78187,Entire home/apt,150,1,75,2019-07-01,9.30,2,69 +29216716,Sunny Room with Private Bath,29285454,Marie,Brooklyn,Bedford-Stuyvesant,40.68612,-73.94318,Private room,55,5,2,2019-01-03,0.30,1,297 +29217721,Large 1 Bedroom Brownstone Apartment,30811338,Joseph,Brooklyn,Bedford-Stuyvesant,40.6919,-73.93866,Entire home/apt,89,2,18,2019-06-22,2.10,1,209 +29218719,Private room near Prospect Park,49421712,Mariana,Brooklyn,Prospect-Lefferts Gardens,40.65945,-73.96145,Private room,55,1,32,2019-07-05,3.81,1,0 +29219456,2 Beds in Private Room 1- 20 minutes to Manhattan,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69441,-73.94848,Private room,65,2,14,2019-06-10,1.85,4,365 +29220176,American Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80303,-73.96336,Private room,80,1,48,2019-06-17,5.54,3,7 +29220410,Canadian Room @ Columbia Uni.,171214206,Elif,Manhattan,Morningside Heights,40.80423,-73.96334,Private room,75,1,23,2019-06-11,2.74,3,8 +29220437,Brooklyn home with character & convenience,213251818,Debora,Brooklyn,Brownsville,40.66835,-73.92335,Entire home/apt,90,3,26,2019-07-07,3.17,1,138 +29221565,Modern art-filled bedroom with vintage touch.,68284975,Dio,Brooklyn,Bushwick,40.69375,-73.92496,Private room,66,2,8,2019-06-06,0.97,2,90 +29225254,Clever Midtown West 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76125,-73.99546,Entire home/apt,264,30,1,2019-01-10,0.17,232,187 +29225417,"Large UWS 1BR w/ Stunning Gym, Doorman + Rooftop by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.78892,-73.97402,Entire home/apt,244,30,1,2019-01-31,0.19,232,218 +29227134,Your New York Home,213781715,Anting,Brooklyn,Greenpoint,40.733,-73.95309,Private room,119,1,0,,,33,180 +29227369,Artist Penthouse,213781715,Anting,Manhattan,NoHo,40.72839,-73.99133,Entire home/apt,225,1,3,2019-03-08,0.35,33,179 +29228604,2 bedroom CONDO off 5th Ave - BRIGHT and homey,220197047,Sara And Hila,Manhattan,East Harlem,40.80173,-73.94517,Entire home/apt,280,30,32,2019-07-02,3.69,1,112 +29230390,Your New York Penthouse,213781715,Anting,Manhattan,NoHo,40.7287,-73.99184,Entire home/apt,225,1,0,,,33,364 +29230470,Suite Nest /free street parking+wifi,219738858,Joe,Manhattan,Stuyvesant Town,40.73092,-73.98146,Entire home/apt,200,30,16,2019-07-01,2.47,5,164 +29231873,1Master BR in a Brand new apt W/D- By Subway,335046,Orit,Manhattan,Lower East Side,40.71271,-73.99084,Private room,150,3,9,2019-06-07,1.11,3,219 +29231876,"Penthouse studio- clean, A+ location. Park&Cafe :)",42153340,Boomer,Brooklyn,Greenpoint,40.72291,-73.9487,Entire home/apt,122,2,38,2019-06-30,4.44,2,211 +29231943,Private Room in a Quaint 2bd/1ba w/ TERRACE!!!,7556128,N.L.,Manhattan,East Village,40.72762,-73.98118,Private room,150,7,2,2018-10-28,0.23,2,45 +29232472,Overnight Bed in Heart of Manhattan for Female,194031970,Demir,Manhattan,Hell's Kitchen,40.76437,-73.98775,Shared room,100,1,1,2019-02-13,0.21,3,212 +29232638,Sweet Brooklyn,167636238,Qusuquzah,Brooklyn,Cypress Hills,40.68205,-73.8822,Private room,62,2,1,2018-12-16,0.15,3,179 +29232662,Charming Apartment with TERRACE!!,7556128,N.L.,Manhattan,East Village,40.72789,-73.98236,Entire home/apt,240,2,12,2019-06-04,1.51,2,0 +29232781,Cozy private room+bathroom in brooklyn!,3659719,Dedy,Brooklyn,Bushwick,40.70644,-73.9193,Private room,46,2,28,2019-07-05,3.22,1,23 +29233046,PRIVATE room w/PARKING included-15Min to LGA&JFK!!,146449899,Fabian,Queens,Flushing,40.74538,-73.83489,Private room,49,1,57,2019-06-30,6.71,2,143 +29233568,Cozy apartment in PERFECT location!,41083526,Brenda,Queens,Sunnyside,40.74529,-73.92176,Shared room,50,1,9,2019-03-23,1.03,2,0 +29233640,Gorgeous Big 2 BedRoom Apt in Brooklyn Brownstone,220232423,Ella,Brooklyn,Bay Ridge,40.63432,-74.02663,Entire home/apt,119,1,32,2019-07-03,3.60,1,276 +29233981,Williamsburg One Bedroom,1713685,Jessica,Brooklyn,Williamsburg,40.71295,-73.9628,Entire home/apt,125,1,11,2019-06-20,1.30,1,39 +29234766,Sunlit 1 Bedroom in the heart of Park Slope,220242803,Samaya,Brooklyn,Park Slope,40.68086,-73.98002,Entire home/apt,140,3,23,2019-06-27,3.15,1,285 +29236294,Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72858,-73.99141,Entire home/apt,179,1,4,2019-05-20,0.47,33,179 +29237220,Polished 2 BR/2BA Home in Chic W. Village#10298,8354383,Sara,Manhattan,West Village,40.73756,-74.00755,Entire home/apt,600,5,7,2018-12-16,0.84,1,210 +29237561,Sunny New York Home in East Village,24074596,Vivian,Manhattan,East Village,40.73031,-73.98018,Entire home/apt,145,3,7,2019-06-09,0.91,1,4 +29237692,Professional Travelers,24000784,Robert,Brooklyn,Sunset Park,40.64513,-74.01279,Private room,45,1,5,2019-05-17,0.57,4,32 +29237852,Private room 3 min walking to J train(female only),219930693,Viktoriia,Queens,Woodhaven,40.69034,-73.86268,Private room,90,2,9,2019-06-24,1.03,2,180 +29238286,Greenpoint Apt with a wonderful view !,171630463,Mickael,Brooklyn,Greenpoint,40.73812,-73.95649,Entire home/apt,150,3,4,2019-01-03,0.47,1,0 +29238785,Romantic space at the Upper East side of Manhattan,146224146,Sasha,Manhattan,Upper East Side,40.76006,-73.96136,Entire home/apt,135,3,8,2019-01-01,0.89,1,0 +29238906,Garden apartment in historic Brooklyn townhouse.,6701152,Jenny,Brooklyn,Bedford-Stuyvesant,40.68982,-73.95818,Entire home/apt,135,3,18,2019-07-07,2.19,1,307 +29240070,New York Wall St. RH29,135247339,Ron,Manhattan,Financial District,40.70604,-74.00869,Private room,370,4,0,,,1,89 +29241662,Artsy Apartment - Large Bedroom in Upper Manhattan,220307306,Tatianna,Manhattan,Washington Heights,40.85712,-73.9277,Private room,90,1,4,2018-11-11,0.46,1,0 +29242098,Large Private Bedroom in a Spacious Apartment,41945759,Angely,Manhattan,Washington Heights,40.85671,-73.92735,Private room,165,1,3,2018-12-29,0.35,1,0 +29242305,Charming Studio in the Heart of Greenwich Village,16955151,Savanna,Manhattan,West Village,40.73079,-74.00268,Entire home/apt,195,2,10,2019-06-11,1.16,1,3 +29242564,Private room 17 mins to Times Square.,93732420,Tim,Queens,Astoria,40.76412,-73.92185,Private room,65,2,27,2019-07-05,3.24,2,59 +29242599,Beautiful brownstone duplex in prime UES location,7138174,Anne-Marie,Manhattan,Upper East Side,40.78537,-73.95037,Entire home/apt,500,4,3,2019-06-28,0.48,1,11 +29243359,Shared Apt living-room w/pull out click open couch,220322871,Elisa,Manhattan,Upper East Side,40.77156,-73.95716,Shared room,75,1,1,2018-10-22,0.12,1,365 +29243499,"Mellow, Stylish Bedroom close to Pratt #1",7305006,Jessica,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95878,Private room,60,6,8,2019-05-24,1.10,2,144 +29245492,Charming White Bedroom close to Pratt #2,7305006,Jessica,Brooklyn,Bedford-Stuyvesant,40.69137,-73.95878,Private room,59,6,12,2019-05-18,1.53,2,54 +29251636,LUXURY Brooklyn Brownstone 1 block from train,220378888,Eg,Brooklyn,Bay Ridge,40.63093,-74.02363,Entire home/apt,175,1,27,2019-06-18,3.07,1,276 +29253322,"Female only, Private room,3 min walking to metro J",219930693,Viktoriia,Queens,Woodhaven,40.69102,-73.86089,Private room,90,2,11,2019-05-27,1.24,2,89 +29254887,Quiet master bedroom on Fort Greene Park,12982906,Kate,Brooklyn,Fort Greene,40.69146,-73.97378,Private room,110,2,0,,,3,66 +29255501,Private Brooklyn Basement Apartment,59627203,Majd,Brooklyn,Windsor Terrace,40.65116,-73.97881,Entire home/apt,125,5,2,2019-05-26,0.27,1,0 +29255502,Private room in apartment,12982906,Kate,Brooklyn,Fort Greene,40.69367,-73.97383,Private room,120,2,0,,,3,280 +29256134,Brooklyn Heights contemporary studio apartment,8730700,Scott,Brooklyn,Brooklyn Heights,40.69863,-73.9937,Entire home/apt,88,20,3,2019-07-08,1.14,1,23 +29256229,Crown Heights Urban Royal Penthouse,2715012,Maurice,Brooklyn,Crown Heights,40.67415,-73.94007,Entire home/apt,175,2,4,2019-05-04,0.64,3,325 +29256358,Studio apartment in Sunset park,141853769,Boris,Brooklyn,Borough Park,40.64459,-73.99951,Entire home/apt,100,2,10,2019-07-03,4.41,1,24 +29256706,Brooklyn Room & Driveway,220419710,Colette,Brooklyn,Flatlands,40.62453,-73.92479,Private room,175,2,3,2019-06-18,1.73,1,275 +29256787,Academic pad,177110165,Piro,Brooklyn,Gowanus,40.66811,-73.99451,Entire home/apt,121,5,1,2019-04-04,0.31,1,45 +29256968,Clean Room in Hip Neighborhood,85221704,Quincy,Manhattan,Harlem,40.83096,-73.95016,Private room,89,25,1,2018-11-12,0.13,1,18 +29256982,Apartment in a Brownstone Steps from Prospect Park,13744738,Yana,Brooklyn,South Slope,40.66177,-73.98198,Entire home/apt,200,3,0,,,1,1 +29257026,Cozy Private 1 Bedroom in a 2 Bedroom Shared Area,168619140,Terry,Brooklyn,Canarsie,40.63764,-73.91556,Private room,58,2,1,2019-03-11,0.25,2,0 +29257038,"Soho Gem: A Modern, Zen 1BR in Nolita.",193473122,Renwick,Manhattan,Little Italy,40.71962,-73.99682,Entire home/apt,150,3,10,2019-06-08,1.15,1,9 +29258871,Bushwick Apartment with Access to L and M Trains,220297196,Oliver,Brooklyn,Bushwick,40.69905,-73.91874,Private room,35,1,5,2019-02-04,0.57,1,1 +29259463,SPACIOUS/FURNISHED One Bedroom Brooklyn Apartment,18917915,Sean,Brooklyn,Williamsburg,40.70296,-73.94086,Entire home/apt,90,3,7,2019-07-05,0.95,1,3 +29259580,"Spacious duplex, fits 5, perf midtown location!",3292437,Peter,Manhattan,Midtown,40.75228,-73.9695,Entire home/apt,250,2,20,2019-06-23,2.30,1,0 +29260051,Air B and B at the Grand Old Mansion,187908347,William,Brooklyn,Crown Heights,40.67311,-73.94679,Entire home/apt,90,4,24,2019-07-04,2.89,2,82 +29261640,Cozy&Nice Bedroom in an Apt/NYC Inwood location,140640991,Fabricio,Manhattan,Inwood,40.86261,-73.92295,Private room,100,3,8,2019-05-23,0.95,1,165 +29262039,Beautiful One Bedroom apt. with private rooftop.,37154382,Lisette,Queens,Forest Hills,40.71018,-73.85229,Entire home/apt,100,2,22,2019-06-24,2.83,1,103 +29262635,"Modern 2 Bedroom, Brooklyn Apt! Amazing Amenities!",220468724,Yngrid,Brooklyn,Bedford-Stuyvesant,40.6775,-73.92281,Entire home/apt,149,2,73,2019-07-07,8.62,1,93 +29264544,Spacious room in downtown 1st Ave 14th St.,36693787,Ma,Manhattan,Stuyvesant Town,40.73341,-73.98,Entire home/apt,188,10,1,2019-05-26,0.68,1,21 +29269102,Cozy and Convenient,158406020,Marvin,Brooklyn,East Flatbush,40.65105,-73.93034,Private room,47,1,9,2019-01-02,1.05,2,14 +29271438,"Quiet, cozy, modern apartment in Bushwick",44745096,Marta,Brooklyn,Bushwick,40.6934,-73.92372,Private room,110,3,8,2019-07-07,1.08,1,8 +29272336,Beautiful Bushwick Oasis,204268180,Danni,Brooklyn,Bushwick,40.70254,-73.92471,Private room,33,1,8,2019-01-02,0.96,1,64 +29275537,New Spacious 1BD w/ Private Bathroom Chinatown/LES,5123160,Molly,Manhattan,Two Bridges,40.71145,-73.99607,Private room,130,1,7,2019-01-27,0.99,1,0 +29277029,Charming 1-bedroom in Lower Manhattan,220568909,Anneka,Manhattan,Little Italy,40.71751,-73.99849,Entire home/apt,230,2,9,2019-05-19,1.04,1,360 +29277834,Midtown City &River View~Luxury 3BR/2BA~BalconyGym,33510623,Motty,Manhattan,Murray Hill,40.74629,-73.97703,Entire home/apt,899,4,5,2019-06-11,0.71,1,340 +29277979,1 bdr in duplex with terrasse,16063645,Alexandra,Manhattan,East Village,40.7293,-73.9834,Entire home/apt,130,1,26,2019-06-07,3.01,1,243 +29278083,"Nice room with private beth , use of kitchen",220576785,Manny,Brooklyn,Midwood,40.61703,-73.97055,Private room,100,1,0,,,1,365 +29278247,Bushwick Loft (must love plants!),2093557,Sarah,Brooklyn,Bushwick,40.69975,-73.92602,Entire home/apt,100,1,3,2019-06-16,1.34,2,4 +29278439,New York Modern Studio,34075689,Zhen Zhen,Queens,Maspeth,40.72236,-73.90195,Entire home/apt,150,7,15,2019-07-02,1.73,3,69 +29280869,LES private bedroom in safe apartment building,220601248,Nora,Manhattan,Lower East Side,40.71827,-73.98836,Private room,66,2,23,2019-06-22,3.14,2,6 +29281115,"Private Entrance, Boutique Amenities, Zen Vibes",38503320,Jon,Brooklyn,Greenpoint,40.72637,-73.95248,Private room,95,5,36,2019-06-30,4.15,1,101 +29281128,NYC LUXURY STUDIO,53621734,Erika,Manhattan,Hell's Kitchen,40.75985,-73.99799,Entire home/apt,170,12,1,2018-10-19,0.11,1,365 +29281300,NOMAD District Loft Tons of Light,210961816,Anthony,Manhattan,Midtown,40.74584,-73.98894,Private room,125,3,13,2019-06-23,1.51,1,14 +29281407,THE HIVE // Brand New 3-Story Luxury Townhome,4874700,Eli,Brooklyn,Greenpoint,40.72549,-73.94595,Entire home/apt,975,2,0,,,1,149 +29281707,Riverside Private Room,220605010,Riverside,Manhattan,Washington Heights,40.83773,-73.94415,Private room,125,3,0,,,1,178 +29282185,2MinToTrainsCozyLivingRoomMaimonideLutheranHospita,96222132,Norma-Ester-,Brooklyn,Sunset Park,40.65595,-74.00274,Shared room,45,1,8,2019-05-18,0.93,4,332 +29282847,Spacious Central Park Apartment,80026984,Keziah,Manhattan,Harlem,40.80132,-73.95496,Entire home/apt,195,3,3,2019-07-02,0.40,1,239 +29283100,NICE Private Bedroom in the BEST part of Manhattan,606154,Sam,Manhattan,Gramercy,40.73386,-73.98307,Private room,118,6,0,,,2,0 +29283634,Bushwick loft with NYC views (entire apt),172859639,Nicholas,Brooklyn,Williamsburg,40.7041,-73.93415,Entire home/apt,250,1,2,2019-03-10,0.23,1,4 +29286653,"Cozy, Private Room on Upper East Side",151229011,Gerta,Manhattan,Upper East Side,40.77557,-73.94381,Private room,93,3,32,2019-06-30,3.87,1,28 +29286966,Big 1BR in park adjacent apartment,630534,Brandy,Brooklyn,Flatbush,40.65026,-73.96316,Private room,196,3,5,2019-06-08,0.65,1,35 +29287004,Jackson Heights: Bright and Spacious Apartment,134904068,Jeanpaul,Queens,Jackson Heights,40.75024,-73.88409,Entire home/apt,200,5,1,2019-07-03,1,1,38 +29287113,Hunts Point Studio Apt,73453515,Kerlyne,Bronx,Hunts Point,40.81819,-73.88653,Entire home/apt,150,2,5,2018-11-12,0.57,1,0 +29287515,Upper East Side Family Apartment,213586067,John,Manhattan,Upper East Side,40.78108,-73.95439,Entire home/apt,215,3,0,,,1,0 +29295191,Luxury - Jr. 1 Br/High Fl- Rooftop Terrace Access,6562449,John,Manhattan,Upper West Side,40.79325,-73.97237,Entire home/apt,325,1,16,2019-06-30,1.95,1,7 +29295665,NYC Central Park Lux Hotel w/ Brfast & Dinner incl,3053587,Allison,Manhattan,Midtown,40.76531,-73.9789,Private room,350,3,1,2019-04-17,0.36,1,169 +29298335,"Artful Williamsburg penthouse with rooftop, big TV",120431726,Noah,Brooklyn,Greenpoint,40.72097,-73.94052,Private room,99,1,14,2019-06-29,1.60,2,0 +29299404,Spacious Studio in Historic Neighborhood,13646328,Katey,Manhattan,Upper West Side,40.79954,-73.96263,Entire home/apt,99,5,10,2019-06-29,1.55,1,29 +29299470,"Cozy, sunny bedroom in Bed-Stuy",23196609,Emma,Brooklyn,Bedford-Stuyvesant,40.69341,-73.94177,Private room,40,2,8,2019-06-09,1.76,2,14 +29301424,Entire cozy 1.5 bedroom flat in South Slope!,15586309,Kerry,Brooklyn,Sunset Park,40.66486,-73.99535,Entire home/apt,90,1,6,2019-05-27,0.73,1,0 +29301889,Spacious place w/ private bathroom,105572926,Matt,Brooklyn,Crown Heights,40.67636,-73.91932,Private room,85,2,2,2018-11-06,0.24,1,0 +29302018,1 Bedroom Apartment 1 minute walk to subway,93732420,Tim,Queens,Astoria,40.76363,-73.92178,Entire home/apt,90,5,0,,,2,0 +29303036,"Lovely brownstone, priv bath, garden, 15 min nyc!",838325,Maya,Brooklyn,Bedford-Stuyvesant,40.69368,-73.93403,Private room,98,1,6,2019-05-17,0.69,1,135 +29303639,Your passport to the big apple!,101410003,Ricardo,Manhattan,Midtown,40.76525,-73.98058,Private room,279,5,2,2019-04-21,0.32,1,26 +29304329,Williamsburg Charming 2 Bedrooms/2 full Baths,10951481,Ann,Brooklyn,Williamsburg,40.71416,-73.96191,Entire home/apt,249,2,38,2019-06-17,4.38,5,46 +29304334,Peaceful private sunny room in spacious apartment,1216891,Amberjade,Manhattan,Harlem,40.81954,-73.94713,Private room,85,1,22,2019-06-11,2.53,1,232 +29304787,Peaches Paradise 2,101499766,Claudette,Queens,Springfield Gardens,40.6831,-73.75526,Private room,50,1,29,2019-07-06,4.53,2,347 +29305952,Luxury Oceanfront 2BD Suite in Arverne By The Sea,220763958,Veronika,Queens,Arverne,40.58848,-73.795,Entire home/apt,199,1,11,2019-07-07,3.79,1,113 +29306127,Cozy + Artsy Studio Apt in Cypress Hills- Brooklyn,1463509,Liza + Victor,Brooklyn,Cypress Hills,40.68809,-73.87004,Entire home/apt,70,3,21,2019-07-05,2.97,1,2 +29306590,Cozy Room in Brooklyn,51699123,Bo,Brooklyn,Bushwick,40.69917,-73.9123,Private room,65,2,31,2019-07-05,5.08,2,125 +29306602,Large Modern Cozy Apartment Close to Train,108746563,Alyssa,Brooklyn,Crown Heights,40.6703,-73.93597,Entire home/apt,149,3,22,2019-07-01,3.11,1,13 +29307957,Charming Creative Corner in Crown Heights,20976078,Amer,Brooklyn,Crown Heights,40.67516,-73.95416,Private room,90,1,10,2019-04-15,1.26,1,0 +29308138,San Carlos Hotel Executive Junior Suite - up to 4,173685298,Janet,Manhattan,Midtown,40.75484,-73.97235,Private room,375,1,0,,,11,179 +29308309,VINTAGE COZY PLACE,220786352,Reina,Manhattan,Harlem,40.82426,-73.95231,Entire home/apt,125,3,8,2019-06-24,1.17,1,119 +29308471,Linden Estates Luxurious 2 bedroom suite,220762164,Sherley,Queens,St. Albans,40.69272,-73.76264,Entire home/apt,105,2,2,2019-01-01,0.24,4,89 +29308553,Nice room in Brooklyn,219499219,Oriana Alexandra,Brooklyn,Bedford-Stuyvesant,40.6915,-73.94692,Private room,75,1,1,2018-10-24,0.12,2,0 +29308781,Designer's Two Floors New Deluxe Apartment in NYC,220709091,Dan & Melisa,Brooklyn,Bay Ridge,40.63859,-74.02497,Entire home/apt,82,1,56,2019-06-22,6.41,1,288 +29310612,Room for rent! 3 bed / 2 bath. G train,220806520,Ignacio,Brooklyn,Bedford-Stuyvesant,40.69279,-73.94654,Private room,50,10,0,,,1,359 +29312347,6MinTrainsCozySmallRMaimonidesLutheranIndustryCity,215884830,Magdalena,Brooklyn,Sunset Park,40.65047,-74.00403,Private room,50,1,23,2019-06-30,2.63,4,327 +29312926,Designer 1BR in LES/Chinatown with rooftop access,15644345,Veronika,Manhattan,Lower East Side,40.71477,-73.98575,Entire home/apt,250,5,1,2018-12-11,0.14,1,0 +29313128,Astoria Room Available,166794407,Bruna,Queens,Astoria,40.76681,-73.91308,Private room,44,5,1,2018-12-31,0.16,3,188 +29313398,Family looking for a budget apartment?,4555996,Ben,Manhattan,Harlem,40.8229,-73.94287,Entire home/apt,150,10,0,,,2,4 +29314737,Private bedroom in a clean charming apartment,1601321,Serdar,Queens,Astoria,40.75736,-73.92162,Private room,130,2,5,2019-06-23,2.34,1,6 +29314975,New York Downtown fourpoints Sheraton,38216858,Silver,Manhattan,Financial District,40.7086,-74.01266,Private room,270,5,2,2019-05-19,0.32,4,364 +29316421,Home away from home,216738370,Mary,Manhattan,Upper East Side,40.76481,-73.96001,Private room,175,1,9,2019-05-15,1.09,1,365 +29316878,Cute little room in a large Brooklyn house.,65407018,Harmony,Brooklyn,Greenpoint,40.72334,-73.93745,Private room,45,1,13,2019-06-09,1.63,5,160 +29317721,Private King Luxury Room - 20 Mins to City,219784095,Uchenna,Brooklyn,Bedford-Stuyvesant,40.68405,-73.95267,Private room,79,2,14,2019-06-02,1.63,1,79 +29320258,Private Room in Prime Bushwick,89339003,Shoshi,Brooklyn,Bushwick,40.7027,-73.91429,Private room,70,5,1,2019-02-17,0.21,1,53 +29327591,"Beautiful Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73769,-73.99734,Entire home/apt,374,30,0,,,232,263 +29328881,"Sunny, spacious 1 Bedroom Apt in the East Village",4205284,Danielle,Manhattan,East Village,40.73122,-73.98652,Entire home/apt,240,2,2,2019-05-23,0.28,1,53 +29328939,3 Beds in Private Room 2 - 20 Minutes to Manhattan,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69397,-73.94921,Private room,70,2,26,2019-06-23,3.06,4,339 +29329429,2-story Apt in the heart of The Upper West Side!,80242144,Emily,Manhattan,Upper West Side,40.78461,-73.97801,Entire home/apt,199,1,6,2019-05-20,0.68,1,62 +29329932,Cozy boho 1-bedroom in brownstone,43349835,Caroline,Manhattan,Gramercy,40.73395,-73.9821,Entire home/apt,135,14,2,2019-01-01,0.27,1,240 +29331191,"Sizable UWS 1BR w/ Open kitchen, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77691,-73.98263,Entire home/apt,259,30,0,,,232,170 +29331258,Stunning 2bed Williamsburg (gym/roof) J/M/Z G & L,178826661,Orpaz,Brooklyn,Williamsburg,40.70635,-73.94656,Entire home/apt,200,4,0,,,1,0 +29331513,Downtown Manhattan Bedroom! Top of Fidi/City Hall,69545272,Ben,Manhattan,Financial District,40.71161,-74.00665,Private room,57,9,3,2019-05-09,0.36,2,365 +29331741,Spacious WV studio at the center of everything,2301120,Varun,Manhattan,West Village,40.73327,-74.00157,Entire home/apt,300,2,8,2019-06-30,0.94,1,0 +29332188,Huge 4 Bedroom 2 Bathroom Townhouse with Backyard,439827,Jacob,Brooklyn,Greenpoint,40.73038,-73.95221,Entire home/apt,250,29,0,,,1,0 +29332195,"Cozy, Zen Studio. Prime Williamsburg location!!!",220969093,Giselle & Charles,Brooklyn,Greenpoint,40.71958,-73.95247,Entire home/apt,99,2,26,2019-06-27,3.21,1,145 +29332969,Huge Apt in EXCELLENT LOCATION - HELLS KITCHEN,28214995,Xanthi,Manhattan,Hell's Kitchen,40.75947,-73.99335,Entire home/apt,350,2,10,2019-06-23,1.19,1,179 +29333330,"Convenient, comfy, and bright",7389707,Yael,Manhattan,Washington Heights,40.84539,-73.93968,Shared room,40,2,14,2019-06-13,2.82,2,0 +29333400,1 bedroom apartment,331328,Amir,Manhattan,East Harlem,40.80759,-73.94103,Entire home/apt,99,5,13,2019-06-17,2.48,3,8 +29334063,Room in Home with Backyard in Bronx Little Italy,44851966,Joseph,Bronx,Belmont,40.85449,-73.88437,Private room,100,1,3,2019-07-03,1.84,1,319 +29334325,Plant & pet-friendly LOFT in the UWS,24595747,Melissa,Manhattan,Upper West Side,40.77972,-73.97871,Private room,97,3,7,2019-03-18,0.83,2,0 +29336271,San Carlos Hotel One Bedroom Suite - up to 5,173685298,Janet,Manhattan,Midtown,40.75613,-73.97056,Private room,425,1,3,2019-03-10,0.36,11,177 +29336346,Luxury and convenience in the center of it all!,15872365,Daniel,Queens,Astoria,40.76553,-73.91625,Entire home/apt,89,4,15,2019-06-18,1.73,1,12 +29336922,LUXURY 2BR CONDO APT IN THE HEART OF BROOKLYN,217568399,Kelly,Brooklyn,Bath Beach,40.60319,-73.99591,Entire home/apt,150,1,13,2019-01-02,1.54,1,0 +29337184,J- HOTEL STYLE SHARE ROOM FOR 2PPL FREE WIFI CABLE,8814258,Nikole,Queens,South Ozone Park,40.67293,-73.79554,Shared room,30,4,1,2019-05-03,0.45,7,365 +29337285,Studio in Prime Williamsburg w/ Private Balcony,220688207,Alan,Brooklyn,Williamsburg,40.70959,-73.96111,Entire home/apt,150,1,77,2019-07-02,8.95,1,77 +29337912,Chelsea Apartment,132866292,Ned,Manhattan,Chelsea,40.74165,-73.99968,Entire home/apt,225,2,47,2019-06-24,5.38,1,101 +29338253,Home away from home,221022609,Lexus,Brooklyn,Flatlands,40.63204,-73.93383,Private room,45,7,0,,,1,83 +29338399,Private floor in Soho Loft with 11ft ceilings,102542851,Nathan,Manhattan,SoHo,40.72706,-74.00572,Private room,129,4,0,,,1,0 +29338559,Cozy Room for Rent very close to Manhattan,4666670,Jeanny,Queens,Astoria,40.76902,-73.91856,Private room,49,5,9,2019-06-12,1.05,4,318 +29338715,Clean Cozy Getaway--Just 15 Minutes From JFK,205243076,Diana,Queens,Cambria Heights,40.69238,-73.73646,Private room,65,2,13,2019-07-02,1.49,2,77 +29338760,Williamsburg apartment with amazing views,9399583,Marco,Brooklyn,Williamsburg,40.71047,-73.96796,Entire home/apt,160,10,0,,,1,34 +29338819,"2018 New 2br elevator condo, 法拉盛中心新大楼2卧,5分钟main st",119305261,Brenda,Queens,Flushing,40.76373,-73.82904,Entire home/apt,188,2,15,2019-06-24,1.97,1,59 +29339032,Cozy Apartment in Lively Brooklyn 15 Min from Pier,117380551,Sade,Brooklyn,Crown Heights,40.67115,-73.94932,Entire home/apt,110,2,0,,,1,107 +29339219,Spacious New 1BR in Sunnyside. Parking available!,114386000,Ira,Queens,Sunnyside,40.74299,-73.92441,Entire home/apt,155,2,2,2019-01-13,0.32,1,358 +29339310,"""The Dumont"" Event Space",221036535,Terry,Brooklyn,East New York,40.66957,-73.86585,Entire home/apt,300,1,12,2019-06-29,1.49,1,175 +29340021,"Home to LGA airport near Manhattan, JFk, Astoria.",221043708,Rumalia,Queens,East Elmhurst,40.7698,-73.87183,Entire home/apt,150,1,29,2019-06-30,3.32,1,360 +29340345,Sams place,178337703,Samuel,Bronx,Clason Point,40.80504,-73.85327,Private room,300,1,1,2018-10-21,0.11,1,364 +29341038,Very comfortable and clean,28960938,Vinroy,Bronx,Unionport,40.82598,-73.85203,Private room,90,7,0,,,1,180 +29341918,Perfect location UWS private room private bath,218272490,Miki,Manhattan,Upper West Side,40.78177,-73.97878,Private room,85,2,23,2019-04-13,2.64,1,79 +29342293,Sunny room in Brooklyn,15331078,Nathalie,Brooklyn,Crown Heights,40.67768,-73.94244,Private room,35,5,1,2019-01-03,0.16,1,69 +29342616,Spacious Brooklyn Home,35807458,Anthony,Brooklyn,Crown Heights,40.66587,-73.92966,Private room,120,1,0,,,1,88 +29343523,Noho High Rise w/ Private Terrace,221071115,Ty,Manhattan,Greenwich Village,40.72836,-73.99925,Entire home/apt,300,7,0,,,1,80 +29344882,Manhattan downtown large modern private room,16628063,Hailey,Manhattan,Two Bridges,40.7125,-73.99661,Private room,90,1,26,2019-06-30,3.42,1,297 +29351570,DESIGNER ARTIST 2 BEDROOM APARTMENT . E.V.,1810885,Alex,Manhattan,East Village,40.72628,-73.97981,Entire home/apt,199,4,4,2019-05-27,0.77,3,204 +29356635,Spacious Room In Hip Williamsburg,74468846,Diana,Brooklyn,Williamsburg,40.71353,-73.94339,Private room,75,2,11,2019-04-29,1.56,2,0 +29356679,Private Room that’s comfortable and convenient,134170699,Rafa' S,Queens,Elmhurst,40.73756,-73.87787,Private room,65,2,2,2019-06-30,1.43,2,364 +29356840,Creative House for Travelers and Other Creatives,215022472,Andrea,Brooklyn,Bedford-Stuyvesant,40.69032,-73.95283,Private room,51,4,19,2019-07-01,2.16,1,189 +29358057,Murray Hill Apt (next to 6 train & near Penn/Bus),52161562,Marlena,Manhattan,Kips Bay,40.7444,-73.97946,Entire home/apt,125,2,14,2019-05-27,1.65,1,0 +29359092,Sweet room,217159080,Illias,Queens,Elmhurst,40.74133,-73.88345,Private room,41,2,44,2019-06-22,5.24,1,123 +29359223,"Sunny, clean 2 bedroom",9806886,Tiffany,Brooklyn,Carroll Gardens,40.67742,-74.00146,Entire home/apt,200,7,1,2019-01-03,0.16,1,0 +29359338,Cosy bedroom in prime Soho,9319215,Julia,Manhattan,SoHo,40.72751,-74.0018,Private room,250,7,3,2019-01-18,0.44,1,0 +29359403,Cozy Sunny Harlem Studio,130054323,Fabrice,Manhattan,Harlem,40.82361,-73.93926,Entire home/apt,102,1,17,2019-06-19,2.14,1,75 +29359499,Upper East Side alcove studio in doorman building,110042455,Robyn,Manhattan,Upper East Side,40.77123,-73.9549,Entire home/apt,175,2,3,2019-05-20,1.23,1,6 +29360292,COZY ROOM TO CRASH,48049796,Chester,Manhattan,East Village,40.72935,-73.98441,Private room,100,1,10,2019-06-13,1.15,2,90 +29361344,Spacious and Airy Apt - 20 min to Manhattan!,221201866,Jesse,Brooklyn,Gowanus,40.68216,-73.98199,Entire home/apt,115,1,9,2019-01-06,1.03,1,0 +29362785,"Nice, fun, Brooklyn! Bedroom & private bath",193353343,Alice,Brooklyn,Bushwick,40.68677,-73.91571,Private room,84,1,8,2019-06-03,0.94,1,31 +29364202,Modern + colorful 2-BR in lively Clinton Hill,5120616,Amenee,Brooklyn,Clinton Hill,40.68634,-73.96117,Entire home/apt,150,3,0,,,1,0 +29364445,Lil A's Place- 60 Seconds to the Train-Location!!,220479551,Betty,Queens,Astoria,40.75684,-73.91705,Private room,65,1,4,2019-06-23,0.64,1,88 +29365401,4min subway. Prime locations. single sofa bed 单人间,196058543,美德,Queens,Forest Hills,40.72192,-73.83931,Shared room,40,2,20,2019-05-29,2.40,5,230 +29365566,Modern Duplex - Central Chelsea!!!,219494713,David,Manhattan,Chelsea,40.74327,-73.99663,Entire home/apt,599,2,25,2019-06-16,2.92,1,244 +29367125,Woodruffe Place,221252894,Deslyn,Brooklyn,Crown Heights,40.67253,-73.9223,Entire home/apt,225,1,27,2019-07-05,3.36,1,339 +29367388,UES private bedroom in shared apartment,17272284,Geoffrey,Manhattan,Upper East Side,40.7652,-73.95834,Private room,109,1,9,2019-05-26,2.87,2,0 +29369079,Celebrity Designer Pied A Terre,220962399,Julien,Manhattan,Upper East Side,40.76408,-73.95686,Entire home/apt,250,1,12,2019-07-02,1.41,1,323 +29370077,"Large, Bright & Cozy Retreat in Bklyn.",221275418,Rufina,Brooklyn,Crown Heights,40.67685,-73.93653,Private room,55,2,18,2019-07-02,2.18,3,251 +29371373,Heart of nyc. Harlem.,39301747,Takeis,Manhattan,Harlem,40.81801,-73.93855,Entire home/apt,78,1,27,2019-07-01,3.86,1,33 +29380907,"Cozy, Private 1 Bedroom Basement Apartment",179355129,Gabrielle,Staten Island,Dongan Hills,40.58303,-74.09271,Entire home/apt,85,2,12,2019-06-24,1.91,1,229 +29381358,Spacious 1 Bed (FURNISHED!) Hudson Yards Sublet,221343982,Christina,Manhattan,Chelsea,40.75358,-73.99707,Private room,165,45,0,,,1,83 +29381786,La Cabina al Mare,25059454,Luca,Queens,Rockaway Beach,40.58409,-73.81665,Entire home/apt,65,2,13,2019-07-06,1.54,1,73 +29382257,25 min to Manhattan: Bed in quiet apartment,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67956,-73.91135,Shared room,35,1,13,2019-05-19,1.52,17,89 +29383018,"Comfort room A in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81548,-73.95931,Private room,80,1,38,2019-06-22,4.40,4,57 +29383019,"Sunny room B in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81376,-73.95954,Private room,85,1,66,2019-06-22,7.59,4,71 +29383020,"Premier room D in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81454,-73.96086,Private room,98,1,51,2019-06-22,5.86,4,56 +29383021,"Cozy room C in upper west side NY, Columbia",221355351,James,Manhattan,Morningside Heights,40.81386,-73.95936,Private room,90,1,55,2019-06-15,6.40,4,87 +29383233,"“One of a kind” Penthouse +獨一無二的紐約閣樓",213781715,Anting,Manhattan,NoHo,40.72872,-73.99199,Entire home/apt,179,1,1,2019-05-26,0.68,33,187 +29383605,"Your Home 安全舒適的家 + 12 mins Manhattan",213781715,Anting,Brooklyn,Greenpoint,40.73543,-73.95454,Private room,119,1,0,,,33,179 +29384404,Prime Location 34th&6th! Doorman Gym Deck 5231,16098958,Jeremy & Laura,Manhattan,Midtown,40.74829,-73.98653,Entire home/apt,180,30,0,,,96,342 +29384552,Bright and cozy room in bed-stuy,73377711,Margaux,Brooklyn,Bedford-Stuyvesant,40.68539,-73.94903,Private room,60,4,1,2018-11-03,0.12,1,0 +29384622,Private Sun-Splashed Studio Chelsea,221366300,Casey,Manhattan,Chelsea,40.74303,-73.99727,Entire home/apt,200,1,34,2019-07-02,4.66,1,0 +29385308,Brownstone Studio,221371129,Denise,Brooklyn,Carroll Gardens,40.67787,-73.99973,Entire home/apt,130,4,9,2019-06-25,1.09,1,70 +29386355,"Welcome to Williamsburg, Brooklyn!!",68128762,Tom,Brooklyn,Greenpoint,40.71961,-73.95405,Private room,170,1,0,,,1,220 +29388081,Convenient Private Bed & Bath! 10 mins. to LGA,8094710,Janine & Reneé,Queens,Ditmars Steinway,40.77671,-73.91283,Private room,75,7,12,2019-05-25,1.60,1,40 +29388083,Dream Apt in the heart of NYC,221392587,San,Manhattan,Midtown,40.7599,-73.96685,Entire home/apt,244,4,9,2019-06-17,1.21,1,56 +29388803,Beautiful room with private bathroom in Town house,36995455,William,Brooklyn,Crown Heights,40.67283,-73.9447,Private room,80,1,48,2019-06-15,5.52,1,214 +29388858,Great Midtown Vibe Spacious Experience in UWS NYC,208901618,XnL,Manhattan,Upper West Side,40.78793,-73.97261,Entire home/apt,180,2,10,2019-06-18,1.22,1,0 +29390218,Bright and cozy 1 bedroom,221405192,Ivan,Brooklyn,Bensonhurst,40.61667,-73.99932,Entire home/apt,100,1,3,2018-12-28,0.41,1,61 +29390491,PRIVATE STUDIO APARTMENT- ASTORIA,1411399,Carlos,Queens,Astoria,40.76894,-73.91193,Entire home/apt,76,1,7,2019-06-13,0.83,5,326 +29390506,Spacious furnished 2b1b apt with a big living room,62330502,Rosa,Bronx,Woodlawn,40.89753,-73.87359,Private room,50,1,6,2019-01-21,0.71,1,0 +29391342,Sunlit Cozy Bargain 2 Bedroom in Carroll Gardens,4180621,Julia,Brooklyn,Carroll Gardens,40.67692,-73.99986,Entire home/apt,78,1,28,2019-06-09,3.64,2,223 +29391531,Your home away from home,221420411,Chantal,Queens,Briarwood,40.71347,-73.80873,Private room,200,2,0,,,1,90 +29391564,Spacious 1 BR Apartment with Times Square view,50822673,Ferdy,Manhattan,Midtown,40.76597,-73.98177,Entire home/apt,180,3,2,2019-07-07,1.36,1,1 +29391852,Room in heart of Bushwick with private entrance,131305000,David,Brooklyn,Bushwick,40.69552,-73.91165,Private room,65,3,16,2019-06-17,1.82,1,74 +29392426,Cozy Apt x Rent Close to Manhattan,4666670,Jeanny,Queens,Astoria,40.77029,-73.91881,Entire home/apt,110,5,1,2019-01-07,0.16,4,173 +29392681,Cozy Apartment in Upper West Side New York,220414847,Sergio,Manhattan,Upper West Side,40.78818,-73.96796,Entire home/apt,190,3,37,2019-07-01,4.64,1,120 +29392902,"1 x Bedroom Apt with Amazing Rooftop, Greenpoint",91101209,Anna,Brooklyn,Greenpoint,40.7348,-73.95543,Entire home/apt,150,6,1,2018-11-26,0.13,1,154 +29393117,Massive Art Loft - Best Manhattan Location Ever!,220574429,Juliana,Manhattan,Midtown,40.74549,-73.99066,Entire home/apt,670,25,0,,,3,305 +29393175,Bright Spacious Greenpoint Duplex,13859261,Milosz,Brooklyn,Greenpoint,40.73159,-73.95713,Entire home/apt,181,1,35,2019-06-13,4.12,1,37 +29393371,New york Multi-unit building,221434490,Aracely,Queens,Jackson Heights,40.75586,-73.87014,Private room,49,2,23,2019-06-16,2.86,2,358 +29393457,2 Private Rooms Near Staten Island Ferry,204823078,Maria,Staten Island,South Beach,40.58639,-74.08943,Private room,100,2,6,2019-05-26,0.73,2,86 +29393659,Private 2BR house Poyer st- 20 min to Manhattan,69439684,Michelle & Lily,Queens,Elmhurst,40.74111,-73.88184,Entire home/apt,179,2,31,2019-07-05,3.65,2,239 +29393808,Cozy 1 bed in amazing NYC location! (Chelsea),17218010,Katie,Manhattan,Chelsea,40.74011,-73.99745,Entire home/apt,175,2,17,2019-04-21,2.08,1,0 +29401472,Large room next to Yankees 20 min from Manhattan,7591218,Kenny,Bronx,Concourse,40.83007,-73.92251,Private room,45,3,19,2019-06-25,2.27,1,67 +29406821,ASTORIA NATURE HOUSE,22050715,Bruno,Queens,Astoria,40.75718,-73.92763,Private room,90,2,5,2019-05-02,0.61,1,354 +29409313,Authentic East Village Escape,11433245,Nikki,Manhattan,East Village,40.72653,-73.98501,Entire home/apt,168,7,6,2019-06-03,0.78,1,130 +29409370,Cozy 1BR with private bathroom near the subway,73222575,Tania,Queens,Ditmars Steinway,40.77888,-73.90827,Private room,95,2,6,2019-06-10,1.41,1,12 +29410055,Private community close to all the NYC & NJ action,199539833,Vince,Staten Island,Rosebank,40.60816,-74.07634,Entire home/apt,90,3,19,2019-06-15,2.68,1,247 +29410763,Hell's Kitchen Luxurious 2 Bedroom NYC Apt!,163251048,Jen,Manhattan,Hell's Kitchen,40.76094,-73.99778,Entire home/apt,499,30,0,,,8,185 +29411009,"San Carlos Hotel Deluxe Rm - 2 Queen Bds, up to 4",173685298,Janet,Manhattan,Midtown,40.75674,-73.97201,Private room,329,1,1,2018-11-04,0.12,11,178 +29411550,NEW Stylish Midtown 2 bedroom w/ balcony,221548872,Charlie,Manhattan,Hell's Kitchen,40.75504,-73.99521,Entire home/apt,390,2,3,2019-01-20,0.36,1,0 +29411649,1bd shared bathroom - very welcome apt in Harlem,134167192,Mamy Francine,Manhattan,Harlem,40.81502,-73.94183,Private room,90,2,3,2018-11-18,0.36,1,0 +29411940,Charming & Sunny Brooklyn Heights Studio,5123477,Meryl,Brooklyn,Brooklyn Heights,40.69719,-73.99229,Entire home/apt,120,3,2,2019-05-23,0.82,1,1 +29412276,New york Multi-unit building,221434490,Aracely,Queens,Jackson Heights,40.75473,-73.8715,Private room,45,2,22,2019-06-14,2.58,2,138 +29412375,Bryan's house,3928437,Bryan,Brooklyn,Clinton Hill,40.68303,-73.95988,Private room,139,1,1,2018-12-01,0.14,1,83 +29412402,Exposed Brick New York Styled apt in Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69387,-73.9102,Private room,45,2,3,2019-01-28,0.34,5,318 +29412897,Large open space in Bushwick,1949282,Kyla,Brooklyn,Bushwick,40.69418,-73.9114,Private room,36,3,13,2019-06-15,1.51,5,329 +29414633,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61208,-74.00181,Shared room,15,10,0,,,2,0 +29415474,Bed-Stuy/Clinton Hill Sunny Brooklyn Apartment,3585637,Lucienne,Brooklyn,Bedford-Stuyvesant,40.68071,-73.95761,Entire home/apt,160,30,0,,,1,281 +29415546,AMELUZ NY,157093664,Zulema,Queens,St. Albans,40.6978,-73.76775,Entire home/apt,299,2,9,2019-06-24,1.05,2,52 +29416216,*PRIVATE* Big Bedroom 20 minutes from Manhattan,65671256,Freddy,Queens,Jackson Heights,40.75749,-73.85811,Private room,65,1,43,2019-06-23,4.94,3,48 +29416543,Asshur’s Room,49664763,Asshur,Brooklyn,East Flatbush,40.66098,-73.92382,Private room,77,1,1,2018-11-08,0.12,1,0 +29416986,Room in the heart of New York City,32896046,Ramon,Manhattan,Midtown,40.76289,-73.98003,Private room,115,3,2,2018-11-25,0.25,1,0 +29417325,"Classic, yet Unconventional Tribeca New York City!",221595358,Karen,Manhattan,Tribeca,40.71904,-74.00857,Private room,149,1,32,2019-06-30,3.86,2,317 +29417620,Beautiful Private Room with 3 Beds in Bed Stuy,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69223,-73.95141,Private room,75,2,13,2019-06-03,1.53,3,365 +29418015,Charming Private Room in Bed Stuy with 2 Beds,219544415,Joel And Julian,Brooklyn,Bedford-Stuyvesant,40.69381,-73.94998,Private room,70,2,14,2019-04-25,1.61,3,365 +29418601,Great New York shared room 3-6,179336958,Ruby,Manhattan,Midtown,40.74757,-73.98671,Shared room,65,3,20,2019-06-14,2.51,6,169 +29418724,Park view New York Apartment,57675402,Nofar,Manhattan,Morningside Heights,40.81424,-73.96051,Entire home/apt,100,4,2,2018-12-27,0.30,1,0 +29419129,Brooklyn Hideaway right in Williamsburg,25352847,Rachel,Brooklyn,Williamsburg,40.71421,-73.95421,Private room,130,1,13,2019-06-10,1.63,2,64 +29419330,Female Only: Prime Location-East 60s-Central Park,221612013,Inhee,Manhattan,Upper East Side,40.76105,-73.96294,Private room,80,1,27,2019-06-29,3.45,1,0 +29420244,Cozy place,71164216,Ezra,Manhattan,Harlem,40.8063,-73.94484,Private room,70,2,13,2019-06-30,1.49,1,361 +29420970,Time-Sharing Private Room,62533391,Yvonne,Brooklyn,Borough Park,40.63543,-74.00701,Shared room,38,1,7,2019-05-17,0.80,7,365 +29422942,12 mins to Times Square; 10 mins to LGA!,221635816,Topu,Queens,Sunnyside,40.73986,-73.91996,Entire home/apt,185,2,55,2019-07-03,6.45,1,99 +29424138,"*Location, Location* | Chelsea | West Village",60105727,Lee,Manhattan,West Village,40.73531,-74.00303,Entire home/apt,182,30,31,2019-07-06,3.88,2,12 +29424522,1-bed/ba PR condo Wyn. Midtown 45 Thanksgiving,30616847,Martha,Manhattan,Midtown,40.75322,-73.97353,Private room,500,3,0,,,1,365 +29425269,"New York Apartment , private bed room / queen bed.",207651513,Nour,Manhattan,Harlem,40.80903,-73.94307,Private room,97,1,47,2019-07-05,5.71,3,75 +29429036,Comfortable clean large bedroom,24954668,Sophie,Manhattan,Upper East Side,40.76877,-73.95479,Private room,110,7,1,2018-12-12,0.14,1,365 +29431457,Large Studio Apartment on Todt Hill,146363617,Michael,Staten Island,Todt Hill,40.58392,-74.1078,Entire home/apt,62,14,4,2019-04-30,0.56,1,268 +29431738,Cool Apartment in East Village,47125955,Alex,Manhattan,East Village,40.72849,-73.98002,Entire home/apt,150,2,8,2019-05-19,0.97,1,132 +29431974,Charming Studio in One of the Best Locations!,76323622,Liza,Manhattan,Nolita,40.72342,-73.99408,Entire home/apt,250,2,2,2019-01-01,0.28,1,0 +29432994,Brownstone w/Terrace-Close to Rockefeller Tree,1343352,Marisa,Manhattan,Upper West Side,40.7764,-73.98144,Entire home/apt,220,2,1,2018-11-18,0.13,1,0 +29433879,East Village 2Bdrm apt with Rooftop and City Views,43957041,Amy,Manhattan,East Village,40.72726,-73.97934,Entire home/apt,300,4,3,2019-05-27,0.47,1,0 +29434244,Cozy Guest Suite in Ditmas Park,220945034,Ray,Brooklyn,Flatbush,40.63462,-73.95572,Entire home/apt,150,2,13,2019-06-30,1.53,1,160 +29434293,Room at 1br apt,7040483,Agata,Queens,Astoria,40.76107,-73.91364,Private room,69,5,20,2019-06-23,2.43,1,37 +29435528,Single cozy room in Manhattan's Upper West Side,39481825,Ami,Manhattan,Morningside Heights,40.80559,-73.96606,Private room,70,1,15,2019-07-02,1.77,1,16 +29435698,"Prime Williamsburg Loft, close to the water!",3583973,Lauren,Brooklyn,Williamsburg,40.71247,-73.96295,Entire home/apt,190,2,17,2019-04-15,1.99,1,0 +29438220,STUDIO&GARDEN REDESIGNED Park Slope-Brooklyn!,87786261,Sophia,Brooklyn,South Slope,40.66129,-73.98734,Entire home/apt,169,3,4,2019-05-06,0.48,5,41 +29439494,VERREZZANO HOUSE,221760432,Daniel,Staten Island,Concord,40.60367,-74.0695,Entire home/apt,200,4,4,2019-05-07,0.53,1,320 +29440688,Neon Dreams - Private Bedroom in Chelsea,89120831,Shannon & Ryan,Manhattan,Chelsea,40.7487,-73.99678,Private room,100,1,42,2019-07-02,5.06,1,23 +29445977,Large luxury apartment. NYC,23930728,Jo,Manhattan,Harlem,40.81861,-73.94565,Entire home/apt,280,8,1,2019-01-06,0.16,1,166 +29449537,"Queen size bed room , New York Apartment",207651513,Nour,Manhattan,Harlem,40.80935,-73.9442,Private room,63,1,61,2019-07-01,7.50,3,31 +29450310,"Cozy, newly renovated, 2 bed, Brooklyn apartment",8699249,Tom,Brooklyn,Park Slope,40.67811,-73.97974,Entire home/apt,200,3,3,2019-06-22,0.40,1,0 +29450700,Commuter Studio,63300613,Kaleel,Manhattan,Washington Heights,40.84534,-73.93479,Shared room,125,2,13,2019-06-27,1.72,1,126 +29451949,Bushwick Room,65411833,Steve,Brooklyn,Bushwick,40.69016,-73.91075,Private room,50,30,0,,,1,0 +29452507,Charming Carroll Gardens/Gowanus Apartment,977716,Larah,Brooklyn,Carroll Gardens,40.67861,-73.99469,Entire home/apt,125,2,2,2018-11-25,0.24,1,0 +29452654,Inclusive & clean Time square sunny apartment,22251283,Nir,Manhattan,Hell's Kitchen,40.76388,-73.99307,Entire home/apt,125,30,0,,,4,0 +29452918,Great New York - Private or shared room 2,179336958,Ruby,Manhattan,Midtown,40.74684,-73.98698,Private room,75,4,7,2019-05-11,0.82,6,357 +29453027,BEST LOCATION!! Whole Apartment with Backyard!!,219782181,Vince,Manhattan,Lower East Side,40.71489,-73.98511,Entire home/apt,165,2,6,2019-06-08,0.92,3,83 +29453203,Serene & clean stay in a luxury building,221850456,Kat,Manhattan,East Harlem,40.78819,-73.94234,Private room,90,2,3,2018-12-06,0.38,1,89 +29453268,East Village Sublet multi month please,221853540,Kirt,Manhattan,East Village,40.72877,-73.98938,Entire home/apt,140,31,0,,,1,0 +29453598,"Artistic Studio Apt, Private Entrance",221851804,Tohar,Brooklyn,Crown Heights,40.66935,-73.94133,Entire home/apt,105,2,17,2019-06-16,2.01,1,245 +29455045,Beautiful apartment next to Central Park & The Met,33142561,Joan,Manhattan,Upper East Side,40.77697,-73.96063,Entire home/apt,110,30,2,2019-01-04,0.25,1,0 +29455145,"Modern 1BR Astoria, espresso maker, 5 min 2 train",4540122,Evan,Queens,Astoria,40.76204,-73.92267,Entire home/apt,74,5,3,2019-05-21,0.53,1,52 +29455324,Very spacious 2-BR entire apartment in the UWS,92657816,Juan Francisco,Manhattan,Morningside Heights,40.80413,-73.96416,Entire home/apt,239,2,9,2019-04-08,1.04,2,154 +29455519,Quiet Comfty Home,171446547,Xiomara,Staten Island,Bull's Head,40.617,-74.16485,Private room,80,1,29,2019-07-07,3.40,1,362 +29455559,Large 1 Bed Beautiful view LES in Luxury Building,221871654,Tim,Manhattan,East Village,40.72185,-73.98451,Entire home/apt,255,2,1,2019-05-17,0.57,1,0 +29455764,Single room in a 2-br apartment in the UWS,92657816,Juan Francisco,Manhattan,Morningside Heights,40.80463,-73.96373,Private room,99,3,3,2019-03-04,0.38,2,0 +29455913,Home,213781715,Anting,Brooklyn,Greenpoint,40.73297,-73.95385,Private room,119,1,0,,,33,365 +29455925,Home: 12 mins to Manhattan,213781715,Anting,Brooklyn,Greenpoint,40.73099,-73.956,Private room,119,1,0,,,33,365 +29455932,Chill pad,106692652,Thomas,Queens,Rego Park,40.72986,-73.85929,Private room,47,1,7,2019-01-25,0.82,1,0 +29456271,Sophisticated Artist Loft sale! Reg. $525.,6573459,Shelli,Manhattan,Financial District,40.71086,-74.00721,Entire home/apt,525,2,3,2019-05-24,0.36,1,158 +29457275,Hell's Kitchen Comfy Loft Bedroom (for one person),1710940,Michael,Manhattan,Hell's Kitchen,40.76199,-73.99253,Private room,62,1,59,2019-06-23,7.41,1,194 +29457680,Awesome Room with 2 Beds and Large Closet,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69388,-73.94501,Private room,70,3,19,2019-06-04,2.24,3,361 +29457851,New Luxury Williamsburg 2 Bedroom 2 Bath,53223410,Rachael,Brooklyn,Williamsburg,40.71047,-73.95529,Entire home/apt,200,5,2,2019-01-01,0.26,1,0 +29457860,not available,914386,Anna,Queens,Ozone Park,40.68129,-73.84235,Private room,75,1,1,2018-10-26,0.12,2,173 +29458518,Great New York - korea townPrivate room 1,179336958,Ruby,Manhattan,Midtown,40.74626,-73.98682,Private room,75,2,14,2019-05-27,1.76,6,305 +29459091,Lovely Modern Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83284,-73.94461,Private room,75,2,17,2019-06-23,1.99,2,27 +29459784,Comfy extra bedroom in Williamsburg,1453898,Anthony,Brooklyn,Williamsburg,40.71194,-73.9668,Private room,60,2,30,2019-06-23,3.53,3,43 +29459888,Stunning Modern Suite in the Heart of Brooklyn,105828180,Guy,Brooklyn,Crown Heights,40.66847,-73.95225,Private room,85,4,0,,,3,0 +29460026,Beautiful Room with 2 Beds Near Metro.,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69379,-73.94384,Private room,68,2,15,2019-05-15,1.76,3,365 +29460203,Charming Room with 2 Beds Near Metro,105386434,Felix Lion,Brooklyn,Bedford-Stuyvesant,40.69304,-73.94349,Private room,72,2,15,2019-06-23,1.77,3,365 +29461552,Chic Upper West Side Suite,210634970,Sheila,Manhattan,Washington Heights,40.83513,-73.94738,Private room,99,2,16,2019-06-18,1.89,1,283 +29461695,Large Private Room in Beautiful Brooklyn Apartment,97425,Lauren,Brooklyn,Bushwick,40.70137,-73.92442,Private room,70,2,10,2019-06-12,2.36,1,14 +29461747,Cozy 1 Bedroom in LIC,17813973,Maggy,Queens,Astoria,40.76276,-73.92508,Entire home/apt,86,1,6,2019-01-01,0.79,1,1 +29463258,It's always sunny in Hells Kitchen,57765860,Christina,Manhattan,Upper West Side,40.76964,-73.98615,Entire home/apt,250,7,0,,,1,34 +29463847,NIce Bright Private Room North of Central Park,221929447,Lyn,Manhattan,Harlem,40.81226,-73.94137,Private room,45,5,5,2019-06-17,0.60,1,184 +29464105,You can live in the center of Manhattan!,221934669,Tanya,Manhattan,Midtown,40.74945,-73.98762,Private room,119,1,58,2019-06-25,6.72,2,0 +29464708,Bright 2BR/2BA Apartment - Heart of East Village,104675082,Yoann,Manhattan,East Village,40.72908,-73.98912,Entire home/apt,300,6,1,2018-12-31,0.16,1,25 +29466848,Simple Perfect Soho Sublet,2047776,Jennifer,Manhattan,Nolita,40.7223,-73.99607,Entire home/apt,180,30,0,,,2,249 +29472696,Sharing room for FEMALE #1,167620568,Mikosya,Brooklyn,Brighton Beach,40.58056,-73.96313,Shared room,100,1,4,2019-06-09,0.56,2,365 +29473324,Huge Light Filled 1BDR Loft - Modern + Minimalist,586840,Sarah,Brooklyn,Bedford-Stuyvesant,40.69105,-73.95882,Entire home/apt,130,4,3,2019-05-27,0.40,1,5 +29478604,"Sun-filled room in a quiet, historic neighborhood.",137358866,Kazuya,Queens,Sunnyside,40.7366,-73.92358,Private room,39,30,1,2019-02-05,0.19,103,252 +29479579,Williamsburg New Luxury Private Room + Bathroom,6255971,Scott,Brooklyn,Williamsburg,40.71145,-73.95534,Private room,85,2,7,2019-07-01,0.83,1,326 +29480209,New Brooklyn&Breakfast listing! 2nd fl Budget Room,344035,Brooklyn& Breakfast -Len-,Brooklyn,Prospect Heights,40.67929,-73.97097,Private room,55,1,39,2019-07-01,4.55,13,315 +29480256,2 BED 2 BATH DUPLEX IN UPPER EAST SIDE,200380610,Pranjal,Manhattan,Upper East Side,40.77114,-73.95913,Entire home/apt,255,30,0,,,65,365 +29480988,Private Guest Loft in a Sunny Etsy-Lovers Apt,10659007,Kaylen,Brooklyn,Williamsburg,40.70969,-73.94356,Private room,110,2,0,,,1,0 +29481874,"Large, comfortable, one-bedroom Astoria apartment",20310357,Kira,Queens,Ditmars Steinway,40.77489,-73.9161,Private room,170,1,0,,,1,157 +29482218,San Carlos Hotel Deluxe Room (B)- up to 3,173685298,Janet,Manhattan,Midtown,40.75524,-73.97269,Private room,299,1,8,2019-05-19,0.94,11,177 +29482859,San Carlos Hotel Deluxe Rm 2 Queen bds (B)-up to 4,173685298,Janet,Manhattan,Midtown,40.75611,-73.97209,Private room,329,1,1,2019-04-21,0.38,11,178 +29483789,UPPER EAST SIDE LUXURY 2BR Apartment,222057751,Maayan,Manhattan,Upper East Side,40.75968,-73.95963,Entire home/apt,299,7,0,,,1,15 +29484503,Parisian West Village Apartment,4952877,Alexis,Manhattan,West Village,40.7374,-74.00409,Entire home/apt,255,2,3,2019-01-02,0.39,1,0 +29484840,Private room in Washington Heights!,222064628,Michael,Manhattan,Washington Heights,40.84832,-73.93583,Private room,42,1,59,2019-06-29,7.14,1,77 +29485421,Sunny Brooklyn Duplex,9503685,Aaron,Brooklyn,Bedford-Stuyvesant,40.69175,-73.94334,Entire home/apt,150,2,3,2019-01-04,0.38,2,0 +29486682,Loft Space with Incredible Windows,5118419,Greg,Manhattan,Chinatown,40.71722,-74.00293,Entire home/apt,1500,1,0,,,1,365 +29486971,cozy artsy cool,52370129,Nino,Brooklyn,Bay Ridge,40.62444,-74.02916,Private room,63,2,5,2019-01-04,0.59,2,12 +29487162,"Cozy Room In The Heart Of Bushwick, Brooklyn",62925063,Andrea,Brooklyn,Bushwick,40.70167,-73.93308,Private room,50,1,3,2019-05-17,0.36,2,342 +29487347,Beautiful 1.5 bedroom in Bed Stuy Brownstone.,222081034,Vida,Brooklyn,Bedford-Stuyvesant,40.68457,-73.93456,Entire home/apt,150,2,40,2019-06-17,4.86,1,31 +29487530,Spacious Modern 1BR Living by NÔM Living,732460,Nôm,Brooklyn,Williamsburg,40.70878,-73.96622,Entire home/apt,120,30,1,2018-12-21,0.15,7,108 +29488512,Bushwick Modern Loft w/terrace,46296435,Garrett,Brooklyn,Bushwick,40.70137,-73.93277,Entire home/apt,225,2,0,,,1,85 +29489013,Exclusive ♥ | Bed-Stuy Sanctuary,215273760,Youge,Brooklyn,Bedford-Stuyvesant,40.68342,-73.92838,Private room,65,3,21,2019-05-31,2.55,2,148 +29489329,Solo ♥ | Stuyvesant Sunshine,215273760,Youge,Brooklyn,Bedford-Stuyvesant,40.68337,-73.9288,Private room,65,5,30,2019-07-07,3.66,2,178 +29489407,Bright Apt Super Stylish Best Location,61391963,Corporate Housing,Manhattan,Hell's Kitchen,40.76382,-73.98815,Entire home/apt,117,30,1,2018-12-09,0.14,91,345 +29489824,Stunning and Spacious Brownstone Apt in Park Slope,10555698,Sari,Brooklyn,Park Slope,40.67137,-73.98064,Entire home/apt,200,2,9,2019-07-07,1.09,1,23 +29489893,Beautiful furnished private studio with backyard,222098649,Melissa,Queens,Jamaica,40.68547,-73.79063,Entire home/apt,20,1,111,2019-07-07,13.11,1,41 +29490579,DUMBO PALACE,40529301,Tommy,Brooklyn,Fort Greene,40.69686,-73.97315,Private room,60,2,11,2019-07-03,2.39,2,113 +29490752,Williamsburg Bedford av. Comfy bedroom.,85942706,Pedro,Brooklyn,Williamsburg,40.71351,-73.96066,Private room,72,2,48,2019-06-28,5.83,1,95 +29491140,Modern & Sun-filled 1BR Condo in Prospect Heights,910677,Bertrand,Brooklyn,Prospect Heights,40.68014,-73.96539,Entire home/apt,150,8,12,2019-06-24,1.54,1,34 +29491851,"Gorgeous 2 bedroom apt in Ditmas Park +1300 ft.²",2831146,Nicole,Brooklyn,Flatbush,40.63513,-73.9672,Entire home/apt,185,2,2,2018-12-28,0.27,1,0 +29492316,Cozy Quiet UpperWest 1 bed near C Park/Subway,31994,Carol,Manhattan,Upper West Side,40.78587,-73.97589,Entire home/apt,140,2,18,2019-02-07,2.09,1,0 +29492381,Private Room in the Heart of NYC. Room 1 of 3.,22463377,Allison,Manhattan,Murray Hill,40.74936,-73.97836,Private room,153,1,25,2019-07-03,3.30,3,32 +29492557,Brick wall apartment next to subway station,110366443,Charlie,Manhattan,Harlem,40.81296,-73.94217,Private room,36,7,2,2019-04-20,0.27,1,16 +29495273,Home on Houston - 2 Rooms near SoHo/NoHo/LES,818753,Jamie,Manhattan,NoHo,40.72584,-73.99306,Private room,295,2,0,,,1,5 +29495710,Amazing One Bedroom Apartment in Prime Brooklyn,220060177,Alan,Brooklyn,Bushwick,40.69327,-73.90773,Private room,70,3,8,2019-05-19,0.95,2,362 +29495933,Luxurious Famous Hell’s Kitchen!,7985095,Douglas,Manhattan,Hell's Kitchen,40.7639,-73.99083,Entire home/apt,345,2,29,2019-07-07,3.40,3,100 +29496193,Cozy + Chic Harlem Apartment,33869262,Madeline,Manhattan,Harlem,40.82364,-73.94472,Entire home/apt,125,2,19,2019-06-30,2.35,1,37 +29501807,Sunny room with new Queen bed and large closet,77813945,Andrew,Manhattan,East Village,40.72145,-73.97881,Private room,75,4,5,2019-05-26,1.90,1,33 +29503231,Charming Studio in an EXCELLENT LOCATION,7339399,Julio,Manhattan,Hell's Kitchen,40.76614,-73.98484,Entire home/apt,180,4,13,2019-06-29,1.81,1,55 +29504717,1 Bdrm Midtown Oasis,29100568,Deborah,Manhattan,Theater District,40.76189,-73.98338,Entire home/apt,155,20,1,2019-01-19,0.18,4,0 +29504721,Luxury 3 bedroom in Prime Midtown,222190882,Katherine,Manhattan,Murray Hill,40.74485,-73.97072,Entire home/apt,625,4,26,2019-07-06,3.06,1,321 +29505792,2nd floor art,183707967,Dionyssios,Manhattan,Washington Heights,40.85416,-73.9292,Entire home/apt,120,2,14,2019-06-12,2.12,4,365 +29506320,Scandinavian Style 1BR in the Upper East Side,55966543,Mike,Manhattan,Upper East Side,40.78411,-73.95097,Entire home/apt,200,2,7,2019-01-01,0.88,1,0 +29507584,Modern and spacious 1BR apartment in Harlem,9212560,Karla,Manhattan,Harlem,40.82153,-73.94612,Entire home/apt,140,1,5,2019-06-30,0.66,1,3 +29508725,Brooklyn Loft Bedroom I,30346705,Soeun & Rolando,Brooklyn,Bedford-Stuyvesant,40.69206,-73.95997,Private room,55,1,40,2019-07-01,5.31,2,99 +29509608,Cozy Small Room with Brooklyn Bridge View,221591579,Liv,Manhattan,Financial District,40.70626,-74.00481,Private room,147,1,13,2019-06-09,1.62,1,177 +29509877,Great Location in Midtown! ESB,211549023,Studioplus,Manhattan,Midtown,40.74759,-73.98889,Entire home/apt,220,2,9,2019-06-15,1.54,13,283 +29511701,"Bright and cozy apartment in Cobble Hill, BK",18897333,Natalie,Brooklyn,Carroll Gardens,40.68572,-73.99234,Entire home/apt,115,2,9,2019-06-30,1.11,1,32 +29511905,CozyStudio /Briarwood Van Wyck station F to city,153141476,Franz,Queens,Briarwood,40.70626,-73.81463,Entire home/apt,44,1,17,2019-06-24,2.23,3,44 +29512260,Beautiful apartment!!,198730633,Ruth,Manhattan,Harlem,40.81223,-73.95284,Entire home/apt,298,1,16,2019-06-23,2.00,2,300 +29513000,✨✨Union Square Duplex LOFT•••4 BEDS✨✨MUST SEE !!!!,48762596,Bob,Manhattan,Gramercy,40.7367,-73.98985,Entire home/apt,499,5,28,2019-06-19,3.36,1,145 +29513074,"Quiet, Modern Studio Near Manhattan & Brooklyn",26600082,Stephanie,Queens,Ridgewood,40.69973,-73.90835,Entire home/apt,150,1,14,2019-07-02,2.80,1,2 +29513249,Large 1 bedroom apartment available,222249366,Nikia,Manhattan,Harlem,40.82267,-73.95044,Entire home/apt,80,3,1,2018-10-24,0.12,1,0 +29513311,Two beds in a spacious Studio!,222249602,Omar,Manhattan,East Harlem,40.78552,-73.94153,Entire home/apt,145,1,30,2019-06-21,3.61,1,144 +29513616,Enjoy a Private Room with 2 Beds in Bed Stuy,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69416,-73.94528,Private room,68,3,13,2019-05-20,1.54,3,365 +29513629,Gorgeous 1 bedroom in Brooklyn Heights!,781180,Maria,Brooklyn,Brooklyn Heights,40.69033,-73.9931,Entire home/apt,150,5,1,2019-01-04,0.16,1,35 +29514542,Delightful Private Room with 2 Beds Near Metro,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69288,-73.946,Private room,70,2,21,2019-06-23,2.51,3,344 +29514909,Modern and cozy apt in Manhattan,222261103,Brenda And Tim,Manhattan,East Harlem,40.78661,-73.94349,Entire home/apt,240,2,44,2019-06-27,5.22,1,93 +29514964,Beautiful Queen Bed Room - Entire Apt!,2670024,Renata,Brooklyn,Sunset Park,40.66266,-73.99064,Entire home/apt,120,7,1,2019-01-02,0.16,1,128 +29515301,Cozy flat in Williamsburg,156195302,Diogo,Brooklyn,Williamsburg,40.72062,-73.9555,Entire home/apt,200,2,7,2019-04-21,0.93,1,17 +29515558,"A Comfortable Place, 15 min to JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.6854,-73.8623,Private room,50,3,10,2019-06-24,1.36,2,44 +29515789,Private room-Upper East Side-2min walking Q train,222077787,Betty&Sam,Manhattan,Upper East Side,40.76464,-73.95831,Private room,99,6,18,2019-05-05,2.32,2,14 +29515916,* Modern Private BR in the Heart of Williamsburg *,7268300,Arianna,Brooklyn,Williamsburg,40.71204,-73.96541,Private room,80,4,3,2019-05-28,0.48,1,7 +29516095,Comfortable & Sunny 1 Bdrm – Heart of Fort Greene,37510066,Hayley,Brooklyn,Fort Greene,40.68723,-73.97369,Entire home/apt,128,1,31,2019-07-05,4.23,1,13 +29516374,Private Bedroom - King Size Bed,222272674,Anita,Brooklyn,Bay Ridge,40.62049,-74.02304,Private room,49,1,26,2019-07-06,4.08,1,174 +29516678,Harlem Heights Pearl Suite,39174150,Keanna,Manhattan,Harlem,40.8252,-73.95189,Private room,100,1,13,2019-06-11,1.58,3,71 +29517411,Sun Drenched Apartment in Brooklyn,62015880,Daniel,Brooklyn,Crown Heights,40.66734,-73.95637,Entire home/apt,119,2,4,2018-11-26,0.47,1,0 +29517540,KINGS THEATER! MODERN PRIVATE ROOM WITH AMENITIES!,222281704,Ekaterina,Brooklyn,Flatbush,40.6458,-73.95392,Private room,60,1,54,2019-07-02,6.78,1,317 +29517566,Stunning 4BDRM/2BTH Duplex Loft Best Neighborhood!,222086035,Vic,Manhattan,Lower East Side,40.71856,-73.98485,Entire home/apt,700,1,29,2019-06-24,3.57,1,256 +29517601,Amazing private room 15 min to manhattan!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69853,-73.94736,Private room,65,2,24,2019-06-20,3.83,3,310 +29517676,Spacious & Comfortable Suite w/ Private Entry/Bath,72001588,Dave,Staten Island,West Brighton,40.62625,-74.11109,Private room,80,1,29,2019-07-01,3.49,1,80 +29517691,Beautiful private room in townhouse!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69712,-73.94732,Private room,52,2,13,2019-04-27,1.72,3,320 +29517769,Cozy private room!,222281153,Jay And Josh,Brooklyn,Bedford-Stuyvesant,40.69651,-73.94763,Private room,62,2,18,2019-06-24,2.70,3,338 +29517788,"Super Spacious, Renovated, Artsy Uptown Apartment",13102999,Jhila,Manhattan,Harlem,40.82827,-73.94257,Entire home/apt,108,3,15,2019-06-15,1.99,1,0 +29518083,"Premier room in UWS NYC, Columbia, Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80392,-73.96556,Private room,120,1,52,2019-06-17,6.14,4,31 +29518497,Delightful private room 15 min to manhattan!,222288328,Matthew,Brooklyn,Bedford-Stuyvesant,40.697,-73.94543,Private room,60,2,10,2019-06-05,1.44,2,311 +29518561,Excellent private room!,222288328,Matthew,Brooklyn,Bedford-Stuyvesant,40.69871,-73.94686,Private room,72,1,30,2019-06-24,3.85,2,344 +29518745,"Quiet, classic Queens studio, on subway, JFK LGA",40298873,Jonathan,Queens,Forest Hills,40.71588,-73.83266,Entire home/apt,90,1,6,2019-05-19,0.79,1,83 +29518861,Fantastic private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69816,-73.94703,Private room,55,2,20,2019-06-24,2.64,3,332 +29518915,Great private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94552,Private room,55,2,23,2019-06-18,2.96,3,322 +29518961,Huge private room!,14061862,Jay,Brooklyn,Bedford-Stuyvesant,40.69746,-73.9454,Private room,55,2,19,2019-06-20,2.95,3,359 +29519083,Entire Apt in the center of NYC,60525649,Lixia,Manhattan,Hell's Kitchen,40.75464,-73.99542,Entire home/apt,120,2,9,2019-06-30,1.08,1,2 +29520126,Large 2 bedroom apartment in Williamsburg,11923041,Eli,Brooklyn,Williamsburg,40.7158,-73.95863,Entire home/apt,300,10,0,,,1,0 +29521183,"Financial District Studio, Furnished. Location!",644904,Donna,Manhattan,Financial District,40.70496,-74.00964,Entire home/apt,170,12,2,2019-05-31,0.27,1,14 +29521683,Explore NYC From Our Private Studio w/Free Wifi,78339088,Casa Victoria,Queens,Corona,40.75047,-73.85374,Private room,75,1,26,2019-06-24,3.45,1,115 +29522531,Private Cozy Room,14719992,Yoni,Brooklyn,Cypress Hills,40.67959,-73.89209,Private room,31,1,14,2019-06-08,1.72,3,210 +29524623,Room to rent for Couple specially tourists !,221374905,Jean,Brooklyn,Bushwick,40.69155,-73.90595,Private room,200,1,0,,,1,365 +29528574,Cosy room in spacious Fort Greene apartment,9601006,Izzy,Brooklyn,Fort Greene,40.69519,-73.97202,Private room,60,1,23,2019-04-23,2.70,1,0 +29531069,greenpoint williamsburg huge studio room /,150316502,Francisca,Brooklyn,Greenpoint,40.72674,-73.95495,Private room,250,5,0,,,1,154 +29531124,Charming private room 2 beds,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.69065,-73.95153,Private room,65,30,10,2019-06-07,1.18,4,328 +29531408,Delightful Private Room X,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.69072,-73.95026,Private room,65,30,13,2019-05-15,1.65,4,336 +29533631,"Colorful, cozy, artsy bedroom in heart of bushwick",222385509,Marcy,Brooklyn,Bushwick,40.69807,-73.91494,Private room,35,7,1,2018-11-15,0.13,1,89 +29533666,Designer Brooklyn Townhouse with Garden,39801631,Charlotte,Brooklyn,Gowanus,40.67662,-73.98642,Entire home/apt,300,2,6,2019-06-24,0.80,1,3 +29533754,Beautiful Home 美麗之家,213781715,Anting,Brooklyn,Greenpoint,40.73136,-73.95447,Shared room,119,1,0,,,33,180 +29533829,Home: Cozy Secure Convenient 12 min to NYC舒適安全便利的家,213781715,Anting,Brooklyn,Greenpoint,40.73274,-73.95575,Shared room,119,1,0,,,33,365 +29533923,One stop away from manhattan,91605357,Tina,Brooklyn,Williamsburg,40.7073,-73.95739,Private room,85,1,56,2019-06-26,7.00,2,51 +29534664,Beautiful two bedrooms in front of the park,100106209,Emmie,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.96153,Entire home/apt,115,2,1,2018-12-29,0.16,2,219 +29535295,"SPACIOUS & COZY APARTMENT, 35 MINS FROM MANHATTAN",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68775,-73.87044,Entire home/apt,75,30,4,2019-06-18,0.55,6,170 +29535938,Sparkling Pad near Times Square HK -w- Queen Bed,501343,Bryan,Manhattan,Hell's Kitchen,40.76328,-73.98942,Private room,225,3,2,2019-05-14,0.73,2,30 +29538158,Private Sunny Mid-century Feng Shui Apartment,22336312,Chiroy,Manhattan,Washington Heights,40.83469,-73.94604,Entire home/apt,129,2,13,2019-05-25,1.63,2,0 +29538751,Private bed in a huge apartment! Him-1R-1,216235179,Nina,Brooklyn,Bushwick,40.70114,-73.91879,Private room,50,30,1,2019-05-04,0.45,17,365 +29539167,Private Bedroom in Bushwick Him-1R-2,216235179,Nina,Brooklyn,Bushwick,40.69992,-73.92013,Private room,50,30,1,2019-04-22,0.38,17,326 +29539744,Amazing Bedroom in Brooklyn Him-1R-3,216235179,Nina,Brooklyn,Bushwick,40.70156,-73.91913,Private room,50,30,0,,,17,268 +29539982,Private Bedroom in the heart of Bushwick Him-1R-4,216235179,Nina,Brooklyn,Bushwick,40.70091,-73.92003,Private room,50,30,2,2019-05-25,0.52,17,333 +29540204,Gorgeous Bedroom on Himrod! Him-1R-5,216235179,Nina,Brooklyn,Bushwick,40.70154,-73.91873,Private room,50,30,0,,,17,325 +29540687,"East 82nd Street, Upper East Side/Yorkville 1bd",22541573,Ken,Manhattan,Upper East Side,40.77327,-73.94939,Entire home/apt,165,30,0,,,87,355 +29541214,New gorgeous garden view spacious 1BR flat,47022650,Jillian,Manhattan,East Harlem,40.79524,-73.93429,Entire home/apt,150,1,11,2019-07-02,1.34,3,356 +29541280,One block from subway: bed for traveler,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67745,-73.90958,Shared room,24,1,14,2019-06-16,1.65,17,89 +29541353,Quiet sleep share in Brooklyn,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67937,-73.91108,Shared room,32,1,17,2019-06-24,2.13,17,87 +29541600,New york Single family home,206370255,Thiago Pereira,Manhattan,East Harlem,40.79468,-73.94194,Entire home/apt,200,2,8,2019-05-19,1.13,1,162 +29541790,** COZY & SPACIOUS 1/1 - HARLEM,196669206,Sara,Manhattan,Harlem,40.82359,-73.95508,Entire home/apt,119,2,24,2019-06-17,3.43,1,120 +29542012,Gorgeous Bohemian one BEDROOM in EAST VILLAGE,29387678,Robin,Manhattan,East Village,40.72208,-73.98472,Private room,1700,23,0,,,1,365 +29542612,NEW! 3 Bedroom Central Williamsburg Home,36149596,Lauren,Brooklyn,Williamsburg,40.71507,-73.95462,Entire home/apt,305,1,15,2019-07-01,1.89,1,43 +29543072,Homey Shared Apt - 5min to L train - Free cleaning,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.69976,-73.91202,Private room,35,30,0,,,9,43 +29543433,Large 1 bedroom in Manhattan upper west side,621652,Simon,Manhattan,Upper West Side,40.78014,-73.97974,Entire home/apt,200,5,1,2019-04-21,0.38,1,4 +29543716,"2BR- 3 Beds, Great Location in Midtown Manhattan",288972,Bono,Manhattan,Hell's Kitchen,40.75651,-73.99807,Entire home/apt,206,5,10,2019-06-02,1.55,1,199 +29543762,"Room w/private bathroom, Central Park & Times Sq",222456125,Mariano,Manhattan,Midtown,40.76474,-73.98187,Private room,160,3,5,2018-12-10,0.62,1,0 +29544456,Long Island City Gem!,11598586,Kate,Queens,Long Island City,40.74705,-73.94594,Private room,159,1,0,,,1,0 +29544710,Cozy 1 BDR in Long Island City,222460280,Elly,Queens,Sunnyside,40.74185,-73.92701,Entire home/apt,99,3,0,,,1,0 +29544793,LUXURY 3BDRM 2BTH Sleeps 10 PPL 30 min to Midtown,222461823,Youssef,Queens,Astoria,40.75862,-73.91097,Entire home/apt,349,2,27,2019-07-04,3.29,1,303 +29545994,Nice room available in Astoria for the holidays!,166794407,Bruna,Queens,Astoria,40.7673,-73.91194,Private room,70,1,3,2019-01-02,0.39,3,188 +29546132,LOFT Apartment in Bed-Stuy,7450345,Amy,Brooklyn,Bedford-Stuyvesant,40.69032,-73.9544,Entire home/apt,107,3,1,2018-10-26,0.12,1,0 +29546328,Spacious convenient room available immediately!!,222424429,Marta,Manhattan,Washington Heights,40.84701,-73.93949,Private room,38,2,17,2019-04-01,2.33,2,73 +29546402,Luxurious 1 Brd with Manhattan and Ocean views.,35944,Sergey,Brooklyn,Brighton Beach,40.57755,-73.96667,Entire home/apt,210,3,0,,,1,161 +29546751,Private apartment 10 min walk from train,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69274,-73.93481,Entire home/apt,139,1,12,2019-06-23,1.67,9,134 +29547131,Nights in Midtown Manhattan-Ladies Only,222476614,Melanie,Manhattan,Kips Bay,40.74579,-73.97887,Shared room,39,2,6,2019-04-21,0.74,3,352 +29547314,"Apartment New York +Hell’s Kitchens",35303743,Patricia,Manhattan,Upper West Side,40.76835,-73.98367,Private room,6500,30,0,,,1,97 +29547577,The Spot! 25 min from NYC walk to Belmont Park,129559712,Sidney,Queens,Queens Village,40.71024,-73.72928,Entire home/apt,100,2,42,2019-07-07,5.08,1,123 +29548163,The cozy room,222480912,Marielisa,Brooklyn,Bushwick,40.70288,-73.9195,Private room,62,2,7,2018-12-30,0.87,2,125 +29549451,The East Village Home: The Sunlight Room,126034120,Roni,Manhattan,East Village,40.72576,-73.97685,Private room,125,1,19,2019-06-16,2.68,3,230 +29549783,The Symphony,222430446,JohnP,Manhattan,East Village,40.72322,-73.98689,Private room,89,1,48,2019-07-05,5.83,2,7 +29550259,Sugar Cove,222430446,JohnP,Manhattan,East Village,40.7229,-73.98698,Private room,89,1,44,2019-07-01,5.59,2,4 +29558285,Brooklyns Perfect Location!,8435480,Matt,Brooklyn,Greenpoint,40.72198,-73.94992,Entire home/apt,180,2,41,2019-07-06,5.44,2,76 +29559298,Manhattan Club-A Lux Suite in Heart of Manhattan,93031650,Kay,Manhattan,Midtown,40.76434,-73.98199,Entire home/apt,300,4,0,,,1,0 +29559309,Artsy + Light. River Views. 30 min to 42nd St.,1418004,Estelle,Bronx,Highbridge,40.83217,-73.93148,Private room,45,5,15,2019-06-25,2.10,1,123 +29560068,Midtwon / UES Gem With Private Terrace!,165776960,Raanan,Manhattan,Midtown,40.75935,-73.96422,Entire home/apt,135,30,0,,,2,341 +29560863,Warm & Cozy Bushwick apt steps from Dekalb L Train,24050629,Mackenzey And Kelly,Brooklyn,Bushwick,40.70125,-73.91982,Entire home/apt,350,2,1,2018-12-31,0.16,1,0 +29561222,Quite and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6626,-73.87731,Private room,29,1,59,2019-07-05,7.25,2,54 +29562532,1/2 of a LARGE APARTMENT in Bushwick / Bedstuy <3,1903737,Natalie,Brooklyn,Bedford-Stuyvesant,40.69414,-73.93231,Private room,99,2,0,,,3,0 +29562750,Huge sunny loft on Downtown Bowery!,23983203,Vance,Manhattan,Chinatown,40.71491,-73.99878,Entire home/apt,200,2,1,2018-10-31,0.12,1,5 +29562919,Awesome space on your own floor with a PrivateBath,19011946,John,Brooklyn,Bay Ridge,40.63766,-74.02626,Private room,99,3,1,2018-10-25,0.12,2,362 +29563829,Beautiful Twin Room in Victorian Cottage,7878911,Summer & Kamilya,Brooklyn,Flatbush,40.63635,-73.95502,Private room,90,3,5,2019-06-09,0.59,1,0 +29564676,Beautiful Bedroom in Booming Bushwick!,124069492,Maria,Brooklyn,Bushwick,40.70264,-73.92514,Private room,65,1,47,2019-07-03,5.53,2,29 +29564687,#2 Apartment,217293060,Mohan,Manhattan,Greenwich Village,40.73429,-73.99675,Entire home/apt,200,5,1,2018-10-28,0.12,4,89 +29565013,True 1BR in East Village with City Views,213302863,Kahrej,Manhattan,East Village,40.72348,-73.98322,Entire home/apt,175,3,3,2019-01-01,0.36,1,0 +29565064,#1,217293060,Mohan,Manhattan,Greenwich Village,40.73432,-73.99686,Entire home/apt,600,31,0,,,4,328 +29565377,"Sunny, 2 Bed Apartment on Wburg-Greenpoint Border",9229108,Etan,Brooklyn,Greenpoint,40.7218,-73.94085,Entire home/apt,250,7,1,2018-12-28,0.16,2,35 +29566272,Huge Apartment in the Heart of Bushwick,2897622,Jordan,Brooklyn,Bushwick,40.69786,-73.93125,Entire home/apt,200,6,1,2018-12-07,0.14,1,26 +29567252,Beautiful Artsy Apartment centrally located!,41083526,Brenda,Queens,Sunnyside,40.74322,-73.91989,Entire home/apt,130,4,0,,,2,0 +29567482,Clean & Cozy 1 BR - Great NYC Location,3472283,Julie,Brooklyn,Gowanus,40.67022,-73.9914,Entire home/apt,125,3,13,2019-04-13,1.65,1,0 +29567488,Amazing 1 bedroom apartment in Williamsburg Area,3719653,Pablo,Brooklyn,Williamsburg,40.71653,-73.94618,Entire home/apt,250,3,0,,,1,249 +29568068,Large Private Room in Gorgeous FiDi Apartment,119134476,Rachel,Manhattan,Financial District,40.70486,-74.01546,Private room,60,2,1,2018-12-12,0.14,1,18 +29570523,MyLittlePlace,222626145,Niko,Queens,Kew Gardens Hills,40.72292,-73.81635,Entire home/apt,90,1,19,2019-06-17,2.42,1,26 +29570887,"LARGE ROOM ‘N CLINTON HILL, Brooklyn, w / LAUNDRY!",24124835,Danielle,Brooklyn,Bedford-Stuyvesant,40.68652,-73.95412,Private room,60,25,0,,,2,100 +29570920,Nice bedroom in Brooklyn !,15989323,Lea,Brooklyn,Williamsburg,40.7068,-73.94439,Private room,50,4,2,2019-01-03,0.31,1,0 +29573034,Studio Apartment Full Bath 15 Minutes From JFK,141027957,Radhames,Brooklyn,Cypress Hills,40.68911,-73.86922,Entire home/apt,60,2,25,2019-06-30,3.18,2,289 +29575293,"""Cabin"" —Private Queen Bedroom in Jungly Apartment",41704832,Ben,Brooklyn,Bushwick,40.69663,-73.91226,Private room,85,1,29,2019-07-05,5.65,1,82 +29576256,(A) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.6781,-73.91163,Private room,55,2,26,2019-06-26,3.59,4,192 +29582742,"roomy & chic 1 bdrm w/ skyline views, near trains",222691577,Sara & Kevin,Brooklyn,Fort Greene,40.68638,-73.97378,Entire home/apt,250,2,3,2019-05-19,0.40,1,28 +29583389,PERFECT WILLIAMSBURG PLACE W/ BACKYARD OASIS,20283518,Jamie,Brooklyn,Williamsburg,40.70516,-73.94423,Private room,85,2,34,2019-06-21,4.00,1,74 +29584099,NYC Best 2 Bedroom Apartment Location,222700281,Paul,Manhattan,Kips Bay,40.74257,-73.97948,Private room,355,2,5,2019-03-07,0.66,1,230 +29584789,Beautiful Upper East Side 1 Bedroom Apt: King Size,41233448,Elizabet,Manhattan,Upper East Side,40.76975,-73.9524,Entire home/apt,260,6,2,2018-12-25,0.25,1,0 +29584983,Large quiet bedroom near williamsburg bridge,53413881,Donald,Brooklyn,Williamsburg,40.70803,-73.95475,Private room,55,2,4,2019-05-30,1.30,1,0 +29585263,Brooklyn Bedroom - Warm & Cozy Near Subway (2),217642569,Jci,Brooklyn,Bedford-Stuyvesant,40.68562,-73.94921,Private room,150,2,5,2019-03-20,0.70,3,37 +29585526,Room in cool apartment with cool people,132383053,Chezky,Brooklyn,Bedford-Stuyvesant,40.6928,-73.94525,Private room,55,1,45,2019-06-29,5.31,1,0 +29585551,Bushwick Brooklyn Grand Bedroom,131476075,Lakisha,Brooklyn,Bushwick,40.68581,-73.91176,Private room,58,1,18,2019-07-03,2.14,8,179 +29586573,1-Bedroom in Bushwick for 2 in shared apartment,4458360,Daniel,Brooklyn,Bedford-Stuyvesant,40.68804,-73.92279,Private room,110,2,0,,,1,280 +29587811,1 Bedroom in Williamsburg,162504107,Lucile,Brooklyn,Williamsburg,40.71526,-73.94987,Private room,90,2,2,2019-05-19,0.33,1,193 +29588060,Wonderful Stay at Upper West Side 2BR Apartment,178653055,Jones,Manhattan,Upper West Side,40.7826,-73.98006,Entire home/apt,90,5,18,2019-06-30,2.18,1,13 +29588371,San Carlos Hotel One Bedrm Suite/3 beds- up to 6,173685298,Janet,Manhattan,Midtown,40.75503,-73.97131,Private room,399,1,9,2019-07-01,1.23,11,176 +29588528,(C) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67717,-73.91161,Private room,55,2,28,2019-07-01,3.43,4,167 +29588587,(D) Brand New apto just few steps from the train,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67805,-73.91071,Private room,55,2,35,2019-06-27,4.25,4,209 +29588640,Hard to Find!! Entire Floor with 2 PRIVATE TERRACE,222659001,Rosana,Brooklyn,Bedford-Stuyvesant,40.67783,-73.91109,Private room,72,1,54,2019-06-30,6.43,4,239 +29589341,E 74 & 2nd Avenue,32606852,Julie,Manhattan,Upper East Side,40.77063,-73.95819,Entire home/apt,123,4,13,2019-05-28,1.94,1,1 +29590847,Artists + Travelers Private Room in Brooklyn,164178160,Karlie,Brooklyn,Bedford-Stuyvesant,40.69031,-73.95855,Private room,59,3,2,2018-11-17,0.24,1,0 +29591004,very small room near Columbia Uni med school,222749009,Hana,Manhattan,Washington Heights,40.84427,-73.94216,Private room,45,1,1,2019-01-02,0.16,3,66 +29591011,"Cozy, cute room in Williamsburg w/ shared backyard",41728993,Raqueli,Brooklyn,Williamsburg,40.71518,-73.93982,Private room,95,1,1,2019-05-04,0.45,1,0 +29591891,Large private bedroom,25073781,Arnaud,Manhattan,Harlem,40.8084,-73.94439,Private room,65,2,18,2019-05-15,2.34,2,188 +29592296,Brick Studio with Great wide Street View,211549023,Studioplus,Manhattan,Midtown,40.74749,-73.98816,Entire home/apt,260,2,20,2019-06-19,3.23,13,242 +29592523,"Luxury Studio, one block from Central Park",16398038,Valeria,Manhattan,Upper West Side,40.79306,-73.9676,Entire home/apt,260,5,2,2019-06-04,0.24,1,145 +29592768,Filomena’s,89351775,Alex,Queens,Ditmars Steinway,40.77362,-73.91947,Entire home/apt,73,1,69,2019-06-23,8.35,1,233 +29594425,Lovely room in the heart of Wiliamsburg,19184440,Karim,Brooklyn,Williamsburg,40.71808,-73.95859,Private room,60,5,1,2019-05-28,0.71,1,187 +29595432,BSM2. Shares basement,215588687,Levi,Brooklyn,Prospect-Lefferts Gardens,40.66192,-73.94668,Shared room,25,2,1,2018-11-27,0.13,6,365 +29596175,Private Room in the heart of Williamsburg,222782619,Carl,Brooklyn,Williamsburg,40.7156,-73.95233,Private room,150,2,7,2019-01-09,0.86,1,0 +29604741,My cozy studio,5497326,Jennifer,Manhattan,Upper West Side,40.77873,-73.97845,Entire home/apt,285,7,0,,,2,79 +29605492,Gilchrist Private,222843411,Brian,Brooklyn,Brooklyn Heights,40.69615,-73.99682,Entire home/apt,1000,3,0,,,1,363 +29605532,Serene art-filled apartment near Prospect Park,2681144,Dara,Brooklyn,Flatbush,40.6512,-73.95908,Entire home/apt,81,5,13,2019-06-25,1.89,1,8 +29605631,Cozy & Clean RM in Queens. Near Subway Station.,137358866,Kazuya,Queens,Woodside,40.74361,-73.90758,Private room,38,30,0,,,103,249 +29606105,Le Chateau vacation,22307859,Sharon,Brooklyn,Canarsie,40.63677,-73.89416,Private room,70,3,2,2019-01-02,0.25,5,86 +29607688,"Female only , Close to Manhattan, Safe, Clean,",99108929,Melih,Queens,Sunnyside,40.73753,-73.92233,Shared room,29,5,2,2019-02-21,0.27,2,23 +29609190,"Sunny Spacious Studio, Subway Right Downstairs!",13758411,Shell,Manhattan,Upper East Side,40.77807,-73.95003,Entire home/apt,160,1,1,2018-12-18,0.15,1,71 +29609668,Le Chateau Vacation,22307859,Sharon,Brooklyn,Canarsie,40.63784,-73.89406,Private room,98,3,0,,,5,361 +29609716,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6363,-73.95168,Private room,98,3,0,,,5,0 +29609786,Le Chateau,22307859,Sharon,Brooklyn,Flatbush,40.6345,-73.9519,Private room,98,3,0,,,5,0 +29610113,New Renovation cozy sweet apartment。3 FL,212147885,Alisa,Brooklyn,Cypress Hills,40.67791,-73.90662,Entire home/apt,150,3,14,2019-05-27,1.85,2,153 +29610311,♀ New Sunny Furnished Room near Express Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67954,-73.93276,Private room,35,15,0,,,14,0 +29610605,♀ New Large Sunny Room close to Express Train,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67854,-73.93204,Private room,50,15,2,2018-10-29,0.24,14,0 +29610742,Hip and minimal neighborhood loft,948095,Ellen,Manhattan,East Village,40.72455,-73.9783,Entire home/apt,265,14,2,2018-12-31,0.29,1,0 +29610930,New Large 3bd furnished space. Walk to Fast Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67992,-73.93244,Entire home/apt,211,1,1,2018-11-19,0.13,14,38 +29611037,1 bedroom apartment across the Central Park,40997229,Ana,Manhattan,Upper West Side,40.79487,-73.96304,Private room,160,3,3,2019-04-15,0.38,1,5 +29611144,Sunny and cozy room 10 minutes from Times Sq.61F3,190921808,John,Manhattan,Hell's Kitchen,40.75389,-73.99518,Private room,99,7,5,2019-06-08,0.69,47,332 +29611279,"Quiet, light-filled, Soho apartment",1940275,Alison,Manhattan,SoHo,40.72498,-74.00262,Entire home/apt,170,2,19,2019-06-24,2.64,1,184 +29611826,Modern & trendy serenity—great High Line location,287348,Rachelle,Manhattan,Chelsea,40.74919,-74.00377,Entire home/apt,299,2,7,2019-06-02,0.90,1,0 +29612248,"Colorful, Sun Drenched Bed Stuy Gem",19920574,Briana,Brooklyn,Bedford-Stuyvesant,40.68624,-73.9515,Entire home/apt,150,4,2,2018-12-31,0.26,1,0 +29612338,Instagrammers Dream Loft,1286471,Peter,Brooklyn,Bedford-Stuyvesant,40.69487,-73.95583,Entire home/apt,200,2,1,2019-05-27,0.68,1,6 +29612355,Rare gem nestled in the heart of Bushwick,6814283,Marc,Brooklyn,Bushwick,40.70218,-73.93034,Entire home/apt,140,3,3,2019-04-28,0.48,1,0 +29612907,"3 Bedroom Bright super Cozy, W'burg",12837247,Alejandro,Brooklyn,Williamsburg,40.7188,-73.94417,Entire home/apt,220,2,0,,,1,0 +29613115,Brooklyn is fun,221284411,Isaias,Brooklyn,East Flatbush,40.65234,-73.95145,Private room,35,28,7,2019-06-15,1.09,1,55 +29613339,Cozy One Bedroom Apartment In Downtown Manhattan,222901071,Maria,Manhattan,Battery Park City,40.7118,-74.01678,Entire home/apt,125,4,2,2018-11-27,0.26,1,0 +29613451,Modern 4story building w/private bathroom elavator,222909571,Jordan,Brooklyn,Bedford-Stuyvesant,40.67921,-73.93975,Private room,90,2,3,2019-01-02,0.37,1,329 +29614352,Steps from Times Square and Subway!,9489892,Serim,Manhattan,Hell's Kitchen,40.76186,-73.98851,Private room,99,1,15,2019-06-16,1.81,1,0 +29614580,⚡ 3 APT in 1--Large groups Travel & stay together⚡,129222253,Andy,Bronx,Williamsbridge,40.87831,-73.86511,Entire home/apt,350,2,3,2019-06-09,0.41,3,323 +29615968,Cozy&Quiet&Modern sky life in New York,45599567,Hana,Queens,Long Island City,40.74881,-73.93885,Private room,70,14,1,2019-01-07,0.16,1,0 +29616041,"Cozy Apt in UWS Manhattan, Columbia, Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80431,-73.96512,Private room,98,1,23,2019-06-18,3.22,4,64 +29617415,Spacious Manhattan room. Well lit! Always clean.,137358866,Kazuya,Manhattan,Harlem,40.81798,-73.94157,Private room,40,30,2,2019-05-19,0.38,103,246 +29621716,Large and comfortable in heart of Brooklyn,29746291,Sumana,Brooklyn,Prospect-Lefferts Gardens,40.65931,-73.95371,Entire home/apt,150,5,5,2019-07-05,0.68,1,3 +29621786,New York room uptown,34911780,Daniel,Manhattan,Inwood,40.85961,-73.92911,Private room,66,3,1,2018-11-05,0.12,2,107 +29623888,November's pre-holiday listing,217101766,Michelle,Manhattan,Upper East Side,40.77664,-73.95749,Private room,200,2,0,,,1,0 +29624337,Quiet spacious Williamsburg room w/ private bath,222990788,Reni,Brooklyn,Williamsburg,40.71018,-73.94671,Private room,100,1,4,2018-12-11,0.52,1,0 +29625454,30 minutes to Times Square! 10 to Williamsburg!,223000151,Minerva,Brooklyn,Bedford-Stuyvesant,40.68636,-73.91711,Private room,75,4,17,2019-07-05,4.02,1,9 +29625962,Large and charming apartment in the East Village,80102605,Zach,Manhattan,East Village,40.72766,-73.97715,Entire home/apt,150,1,4,2019-06-23,0.53,1,5 +29626157,Sun Drenched 1-Bed in the Heart of Park Slope,67516962,Phoebe,Brooklyn,Park Slope,40.66827,-73.98205,Entire home/apt,125,5,2,2019-05-19,0.76,1,9 +29626161,"Sunny room in UWS, Columbia,Central Park",222285897,Alvin,Manhattan,Morningside Heights,40.80441,-73.96352,Private room,85,1,46,2019-07-05,5.59,4,20 +29626345,"Dont Be Shy, Stay in Bedstuy!!!",223007347,Jay,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95204,Entire home/apt,175,2,21,2019-07-07,2.86,1,164 +29626682,"Comfort room in UWS, Columbia,CentralPark",222285897,Alvin,Manhattan,Morningside Heights,40.8042,-73.96491,Private room,90,1,42,2019-06-25,5.04,4,61 +29627988,Upper East Chic 1BR Apartment Near Central Park,65498336,Song,Manhattan,East Harlem,40.78918,-73.94787,Entire home/apt,199,1,41,2019-06-25,5.37,1,228 +29628181,2 bed next to Times Square w/ private heated patio,21703883,David,Manhattan,Hell's Kitchen,40.76289,-73.99487,Entire home/apt,250,2,6,2019-02-18,0.75,1,0 +29628380,Modern Studio Apartment,155027850,Dilek,Brooklyn,Bergen Beach,40.61954,-73.91133,Entire home/apt,85,5,17,2019-07-01,2.24,1,305 +29628681,New York Apartment close to many attractions,223027077,Keegan,Manhattan,Upper East Side,40.7631,-73.95866,Entire home/apt,150,1,2,2018-12-30,0.25,1,0 +29628693,Sanctuary Apartment in Ideal NYC Location,22178020,Lewis,Manhattan,Chinatown,40.71787,-73.99461,Entire home/apt,100,3,3,2019-07-01,3,1,301 +29628834,Manhattan/Step to central park 5th ave/3BR sleep 9,68014876,Takara,Manhattan,Midtown,40.76279,-73.97494,Entire home/apt,399,1,36,2019-06-23,4.29,1,201 +29628979,Queen Studio Room In Boutique Hotel,33213436,Alec,Brooklyn,Gowanus,40.67955,-73.98435,Private room,149,1,7,2019-06-03,0.95,8,365 +29629048,Charming East Village 1B Apt with Rooftop & View,160050819,Caitlyn,Manhattan,East Village,40.72683,-73.97993,Entire home/apt,250,4,1,2019-03-30,0.30,1,0 +29629244,Boutique Cozy Queen Room,33213436,Alec,Brooklyn,Gowanus,40.67983,-73.98408,Private room,139,1,16,2019-06-22,2.04,8,363 +29629370,Cozy Brooklyn Studio Apartment Condo,39483399,Kristen,Brooklyn,Fort Greene,40.69319,-73.98226,Entire home/apt,100,5,0,,,1,0 +29629465,Williamsburg own,37040186,William,Brooklyn,Williamsburg,40.70308,-73.94893,Entire home/apt,250,1,1,2018-12-30,0.16,1,178 +29629527,Cozy Brooklyn Heights,223032162,Dot,Brooklyn,Boerum Hill,40.68612,-73.98988,Entire home/apt,174,2,9,2019-06-09,1.13,2,3 +29629819,"Large, Clinton Hill studio with a view.",223032610,Erin,Brooklyn,Clinton Hill,40.69194,-73.96426,Entire home/apt,150,3,15,2019-06-25,1.88,1,19 +29629862,Private room in huge Soho apartment,4341365,Sophie,Manhattan,SoHo,40.72243,-74.00027,Private room,80,5,1,2019-03-05,0.24,1,0 +29629878,Sun-drenched Executive Suite 3,215387072,Mr. G,Brooklyn,Bedford-Stuyvesant,40.68193,-73.91252,Private room,100,3,6,2019-06-28,0.95,3,348 +29630056,This place Very quiet and fresh!,222178766,Firuza,Brooklyn,Flatbush,40.64767,-73.96236,Private room,75,1,7,2019-07-02,0.85,1,133 +29630099,Beauty in the heart of downtown Brooklyn,57773455,Banafsheh,Brooklyn,Cobble Hill,40.68691,-73.99818,Entire home/apt,109,3,3,2019-01-03,0.37,1,0 +29630190,Cozy Brooklyn Heights - Private Room,223032162,Dot,Brooklyn,Boerum Hill,40.68602,-73.99023,Private room,65,2,15,2019-05-19,1.80,2,0 +29630309,Garden Room in Rego Park,89000911,Ursula,Queens,Middle Village,40.7258,-73.87071,Private room,65,1,0,,,2,0 +29630553,Fantastic Value - Quiet Room Seconds from Graham L,79576043,Jonathan,Brooklyn,Williamsburg,40.71521,-73.94473,Private room,40,28,0,,,1,0 +29630728,1 bedroom apartment in Chelsea,23954256,Meaghan,Manhattan,Chelsea,40.75024,-73.99686,Entire home/apt,189,1,7,2019-07-01,0.86,1,2 +29630759,"Room @Brooklyn, NY",222136360,Muhammet,Brooklyn,Borough Park,40.64749,-73.99646,Private room,45,1,8,2019-01-01,0.96,1,6 +29630879,Heart of Astoria- Extremely close to the CITY,219720888,Shuhel,Queens,Long Island City,40.75918,-73.93299,Entire home/apt,120,1,30,2019-02-25,3.66,1,6 +29630907,Paris in New York Cozy private entrance&bath bkfst,32295097,Maureen,Manhattan,Lower East Side,40.71454,-73.98782,Private room,125,2,33,2019-06-30,4.06,2,191 +29631258,Bedroom with private access to patio,23788168,Jonathan,Brooklyn,Bedford-Stuyvesant,40.68522,-73.93711,Private room,45,10,8,2019-06-23,0.96,1,61 +29631302,"Large Bedroom in Beautiful, Modern Apartment",24799369,Alfonso,Manhattan,Hell's Kitchen,40.76381,-73.9919,Private room,120,5,1,2019-01-03,0.16,1,0 +29631369,New & Stylish 1 Bedroom Williamsburg,153754513,Caitlin,Brooklyn,Williamsburg,40.71258,-73.94307,Entire home/apt,82,1,15,2019-05-27,2.02,1,16 +29631667,"Quiet luxury condo w/ central aircon, roof & W/D",4138139,Nipun,Brooklyn,Crown Heights,40.67306,-73.95509,Private room,72,4,3,2019-07-06,1.73,1,16 +29631729,Modern Williambsurg Studio in Prime Location,9358058,Alex,Brooklyn,Williamsburg,40.71131,-73.95669,Entire home/apt,200,3,3,2019-06-30,0.38,1,35 +29631765,Modern and Spacious Brooklyn Duplex,17031708,Hannah,Brooklyn,Williamsburg,40.71301,-73.94846,Private room,500,3,1,2018-12-05,0.14,1,180 +29632401,Modern Private Studio IN East Flatbush,59808986,Elen,Brooklyn,East Flatbush,40.64841,-73.94516,Entire home/apt,110,1,20,2019-06-23,2.41,3,290 +29632875,Bright and Cozy Brooklyn Apartment,14906911,Sophie,Brooklyn,Williamsburg,40.71867,-73.95162,Private room,75,1,3,2019-02-14,0.37,1,0 +29633187,J-BRAND NEW LUXURY ROOM 25 MIN DRIVE TO MANHATTAN,8814258,Nikole,Queens,South Ozone Park,40.673,-73.79552,Private room,64,3,1,2019-06-13,1,7,195 +29633588,3 BEDS - PRIVATE HALF BATH -NEXT TO METRO,35728189,"Roo, Nadine And Neil",Brooklyn,Bedford-Stuyvesant,40.69383,-73.95268,Private room,100,30,13,2019-06-22,1.55,3,336 +29635253,New york Cozy studio,34075689,Zhen Zhen,Queens,Maspeth,40.7221,-73.90223,Entire home/apt,100,7,23,2019-06-25,2.86,3,88 +29635732,Newly Renovated Spacious 2 Bedroom Apartment!,63227531,Marwa,Staten Island,Randall Manor,40.62743,-74.12261,Entire home/apt,140,2,12,2019-07-05,1.57,2,340 +29636554,Cozy room in hip Lower East Side neighborhood,5855485,Sarah,Manhattan,Lower East Side,40.71924,-73.98507,Private room,83,2,3,2019-06-30,3,1,6 +29640481,DESIGNER 1 BEDROOM APARTMENT,218048903,David M,Manhattan,Hell's Kitchen,40.75983,-73.99064,Entire home/apt,200,2,17,2019-06-25,2.13,1,254 +29644544,Cosy One-Bedroom in vibrant Washington Heights,41323748,Karen,Manhattan,Washington Heights,40.83414,-73.94565,Entire home/apt,125,5,18,2019-06-24,2.19,1,1 +29645650,Beautiful Bedroom in Bedstuy,26219578,Zoe,Brooklyn,Bedford-Stuyvesant,40.69071,-73.94478,Private room,32,3,0,,,1,48 +29646041,"Comfortable place, 15 min from JFK & 30 min to NYC",210339363,Dilenia,Queens,Woodhaven,40.68639,-73.86088,Private room,60,5,11,2019-05-31,1.44,2,17 +29646391,Aiden’s Red Door - Jr. Penthouse Suite,32418402,Roxanne,Brooklyn,Crown Heights,40.67223,-73.93027,Private room,89,2,4,2019-07-07,4,2,88 +29646454,Large Private room in Astoria. Midtown in 20mins,7832790,Michael,Queens,Astoria,40.76416,-73.91321,Private room,90,1,7,2019-06-05,1.00,2,49 +29647523,Spacious - Newly Renovated 2/2 on Top Floor,57294763,Grant,Queens,Rego Park,40.73355,-73.85856,Entire home/apt,155,30,0,,,1,125 +29648013,Chic Brand New Maisonette 2BR in Greenpoint,222270217,Katie,Brooklyn,Greenpoint,40.73291,-73.95989,Entire home/apt,139,3,36,2019-06-19,4.48,1,58 +29648368,Duplex Room in the heart of Williamsburg,108426646,Dan,Brooklyn,Williamsburg,40.71205,-73.95838,Private room,70,3,4,2019-06-23,0.48,1,0 +29648584,"Super Cozy Kensington by F,G trains",14898658,Chadanut,Brooklyn,Kensington,40.64243,-73.98049,Private room,42,1,4,2019-03-10,0.59,11,88 +29649727,Sunny Private Bedroom in Nolita,17076157,Grace,Manhattan,Chinatown,40.71859,-73.9958,Private room,85,4,5,2019-06-21,1.35,1,0 +29650402,Landmarked Limestone Sanctuary,68198631,Kate,Brooklyn,Prospect-Lefferts Gardens,40.66354,-73.95507,Entire home/apt,860,2,4,2019-04-28,0.49,1,23 +29651529,THE LOUVRE MEETS THE HEART OF THE EAST VILLAGE,223180509,Jane,Manhattan,East Village,40.72399,-73.98261,Entire home/apt,195,1,54,2019-07-01,6.45,1,181 +29652130,♂ ♀ Large Sunny Bedroom Walk to Express Subway,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.68005,-73.93256,Private room,75,15,0,,,14,0 +29652274,Clean room in Soho/Nolita,126510786,Peyton,Manhattan,SoHo,40.72306,-74.00006,Private room,120,1,1,2018-11-20,0.13,1,0 +29652347,♂ ♀ Large Room Close to Express Subway + Bus,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67974,-73.93134,Private room,65,15,0,,,14,0 +29652490,♂ ♀ Sunny Bedroom in Popular Brooklyn,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67937,-73.93262,Private room,45,15,0,,,14,0 +29652691,♀ Female Only Large Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67817,-73.93198,Shared room,35,15,0,,,14,0 +29652878,♀ Female Only Sunny Shared Room Double bed,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67784,-73.93236,Shared room,30,15,0,,,14,0 +29653011,♀ Female Only Single Bed in Sunny Room Popular,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67775,-73.93201,Shared room,30,15,0,,,14,0 +29653137,"♀ Female only Shared Bedroom, Double Bed",204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67801,-73.93142,Shared room,35,15,0,,,14,0 +29653294,LaGuardia in less than 30. Steps to Supermarket.,137358866,Kazuya,Queens,Jackson Heights,40.75023,-73.87896,Private room,31,30,2,2019-06-13,0.62,103,269 +29653333,Yankee stadium pad,127828600,Brey,Bronx,Concourse,40.82773,-73.92308,Private room,100,1,2,2018-12-27,0.26,1,177 +29653480,Cozy Room near mall & Elmhurst Ave station (M.R).,137358866,Kazuya,Queens,Elmhurst,40.74293,-73.87908,Private room,42,30,0,,,103,0 +29653774,♀ Large Sunny Room in Newly Renovated Apt Popular,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67931,-73.93212,Private room,75,15,0,,,14,0 +29653847,Luxurious Duplex Condo in the heart of Brooklyn,223198021,Roy,Brooklyn,Prospect-Lefferts Gardens,40.66235,-73.94619,Entire home/apt,165,2,19,2019-06-29,2.30,1,102 +29654002,Cozy Studio with River Views,223198779,Juliet,Manhattan,East Harlem,40.79112,-73.93606,Entire home/apt,95,5,20,2019-06-20,2.43,1,56 +29654013,♀ Sunny Bedroom in Great Apartment in Popular Bk,204852306,Dee,Brooklyn,Bedford-Stuyvesant,40.67862,-73.93227,Private room,41,15,0,,,14,0 +29654321,Fab Williamsburg 1 BR w great amenities! #10307,7863991,Tiffany,Brooklyn,Williamsburg,40.71922,-73.94258,Entire home/apt,250,2,23,2019-06-29,3.17,1,311 +29654969,Spacious room in Ridgewood,58377909,Benjamin,Queens,Ridgewood,40.69956,-73.90752,Private room,30,6,2,2019-01-08,0.26,1,0 +29655150,Ground Floor Gem w/ tiny patio!,304262,Bjorn,Manhattan,Lower East Side,40.71555,-73.98949,Entire home/apt,165,30,0,,,1,353 +29655330,MANHATTAN CLUB - 1 BEDROOM SUITE,223208290,Charles,Manhattan,Midtown,40.76562,-73.98233,Private room,250,4,1,2018-12-14,0.14,1,3 +29655436,Weekend Getaway,4452717,Sandra,Brooklyn,Williamsburg,40.71797,-73.95441,Entire home/apt,200,3,0,,,1,5 +29656082,The Perfect Room 1 stop to East Village!,2967914,Nina,Brooklyn,Williamsburg,40.71435,-73.96292,Private room,102,1,56,2019-07-05,6.80,2,14 +29656826,Rare and spacious apartment. 15 mins to Manhattan.,223191465,Kiryl,Brooklyn,Williamsburg,40.71131,-73.94156,Entire home/apt,200,3,29,2019-06-09,3.57,2,144 +29656859,"Petra, Place of Peace ***Female PREFERRED!***",223219744,Dina,Queens,Jamaica,40.69441,-73.78954,Private room,60,2,2,2019-03-24,0.32,1,180 +29657375,"Gorgeous Room in Williamsburg, 10min to Soho",2967914,Nina,Brooklyn,Williamsburg,40.71304,-73.96238,Private room,102,1,48,2019-06-21,5.81,2,20 +29657991,1BR Apartment close to Prospect Park,16502641,Marni,Brooklyn,South Slope,40.66036,-73.98494,Entire home/apt,93,5,10,2019-07-07,1.60,1,2 +29658517,Close by Central Park,222755851,Sarah,Manhattan,Upper West Side,40.79896,-73.96183,Private room,110,3,5,2019-06-18,0.62,2,176 +29659322,COZY SPACIOUS ROOM WITH PRIVATE ENTRANCE TO GARDEN,223238601,Valentine,Brooklyn,Bedford-Stuyvesant,40.69574,-73.93364,Private room,70,5,8,2019-06-29,2.82,1,307 +29659447,Private room. All RENOVATED. 4 stops to MHTN,152395213,Ramiro,Queens,Astoria,40.76332,-73.92478,Private room,80,5,16,2019-06-05,2.00,1,29 +29660984,charming Bedroom in a quite neighborhood,221751961,Maya,Staten Island,Oakwood,40.56028,-74.10678,Private room,46,1,4,2019-01-19,0.51,1,0 +29661457,Modern Spacious Room in Loft with Rooftop,2930482,Ashley,Queens,Ridgewood,40.70177,-73.89797,Private room,75,1,1,2018-11-17,0.13,1,0 +29661817,Monet in Manhattan private room w deck & bkfst,32295097,Maureen,Manhattan,Lower East Side,40.71434,-73.98641,Private room,125,2,28,2019-07-03,3.39,2,255 +29661866,Minimal East Village studio in the BEST location!,20087466,Adela,Manhattan,East Village,40.72434,-73.98018,Entire home/apt,110,3,15,2019-04-17,1.89,1,0 +29662087,"Three ""new"" New Yorker's",222755851,Sarah,Manhattan,Upper West Side,40.79896,-73.96027,Private room,145,1,2,2018-11-08,0.24,2,0 +29662414,"Grand Street in Brooklyn, G stop, L stop.",162938514,Alex,Brooklyn,Williamsburg,40.71121,-73.95028,Entire home/apt,250,2,24,2019-06-29,3.01,1,282 +29662606,Your Home Away From Home in New York City! NYC,10552196,Nikolas,Manhattan,Hell's Kitchen,40.76158,-73.99175,Shared room,100,1,2,2018-12-09,0.24,1,363 +29670957,Huge 450ft Master Bedroom in Spectacular Soho Loft,302885,Hattie Grace,Manhattan,SoHo,40.72197,-74.00401,Private room,200,3,0,,,3,0 +29672090,comfortable one-bedroom in great LES location,1887283,Sylvia,Manhattan,Chinatown,40.71415,-73.99255,Entire home/apt,121,2,8,2019-06-24,1.07,1,0 +29674137,SOUTH RIVER VIEWS/DOORMAN-E 52nd ST,2856748,Ruchi,Manhattan,Midtown,40.75565,-73.9634,Entire home/apt,330,30,0,,,49,365 +29674246,Immaculate and Bright Apartment Downtown,21610233,Britni,Manhattan,Battery Park City,40.71756,-74.01659,Entire home/apt,650,7,0,,,1,12 +29674265,Stylish studio in the heart of Clinton Hill,777522,Harris,Brooklyn,Clinton Hill,40.68424,-73.96661,Entire home/apt,105,1,3,2019-06-09,0.40,1,0 +29674661,Williamsburg Artist Loft,35033777,Rune,Brooklyn,Williamsburg,40.70572,-73.93387,Entire home/apt,110,30,0,,,1,262 +29674710,Great New York-korea town1~2,179336958,Ruby,Manhattan,Midtown,40.74595,-73.98509,Private room,65,3,3,2019-06-03,1.53,6,359 +29674940,Sunlit Backyard in NYC + Walk to Zoo and Gardens!,57400178,Diane,Bronx,Allerton,40.86923,-73.86275,Entire home/apt,90,5,1,2019-01-02,0.16,1,157 +29675374,Trendy and Spacious East Harlem 1BR Apt,223340140,Olivia,Manhattan,East Harlem,40.79793,-73.94334,Entire home/apt,109,1,3,2018-12-29,0.45,1,0 +29675631,Gorgeous Modern + Sunny Room in Prime Williamsburg,198395530,Carla,Brooklyn,Williamsburg,40.71217,-73.95888,Private room,68,5,1,2018-11-02,0.12,1,0 +29676028,Cozy and new apartment between LES and Chinatown,223345099,Milica,Manhattan,Chinatown,40.71431,-73.99275,Entire home/apt,170,3,22,2019-06-27,2.84,1,128 +29676417,New York Moments (Ladies Only),223248121,Julia,Manhattan,Kips Bay,40.74319,-73.98074,Shared room,39,2,1,2019-01-01,0.16,1,365 +29676867,Home of Harmony,62234273,Harmony,Brooklyn,Bedford-Stuyvesant,40.68277,-73.92012,Entire home/apt,100,3,35,2019-07-07,4.25,1,283 +29677326,Ultra Lux Morden 2 Bedrooms suite with court yard,220762164,Sherley,Queens,St. Albans,40.69161,-73.76326,Entire home/apt,298,2,12,2019-06-23,1.51,4,365 +29678364,Kan house,183417610,Kanchana,Queens,Elmhurst,40.7409,-73.87738,Private room,180,1,3,2019-05-27,0.39,3,88 +29678746,KalaJones,84077949,Gunmala,Manhattan,Roosevelt Island,40.7662,-73.94676,Entire home/apt,250,3,2,2019-01-04,0.31,1,1 +29678787,Beautiful & bright space in PRIME Williamsburg,55693494,Amore,Brooklyn,Williamsburg,40.71309,-73.96331,Private room,120,2,13,2019-05-25,1.73,1,108 +29679067,Kan house,183417610,Kanchana,Queens,Elmhurst,40.73841,-73.87751,Private room,180,1,0,,,3,0 +29679464,The perfect resting stop,144167745,Maria,Brooklyn,Sunset Park,40.64335,-74.02255,Private room,50,2,39,2019-06-30,6.19,1,31 +29679677,Lofty Studio in the heart of Williamsburg,8587936,Aimée,Brooklyn,Williamsburg,40.71823,-73.96141,Entire home/apt,180,3,0,,,1,0 +29680105,1 Private Room in West Harlem,137380710,Bruce,Manhattan,Harlem,40.82723,-73.94217,Private room,40,5,1,2019-02-18,0.21,1,0 +29680716,Stunning Flatiron 1 BR near Subway access to all!,223374565,"Christine,",Manhattan,Midtown,40.74376,-73.98355,Entire home/apt,189,4,16,2019-07-05,2.11,1,323 +29681004,Cozy Studio in West Village,15197115,Stephanie,Manhattan,West Village,40.73513,-74.0063,Entire home/apt,500,2,3,2019-06-01,1.55,1,5 +29682189,Huge & Sunny room in Williamsburg,1472433,Marcos,Brooklyn,Williamsburg,40.70758,-73.94134,Private room,56,5,1,2018-11-11,0.13,2,10 +29682577,Kan house,183417610,Kanchana,Queens,Elmhurst,40.74085,-73.87682,Private room,180,1,0,,,3,0 +29683262,5 mins from Central Park +Community #1,215540583,OneBaz106,Manhattan,East Harlem,40.79018,-73.94014,Private room,78,10,13,2019-05-20,1.83,1,68 +29683293,Guest room nice family in Cypress Hills :),223393782,Mercedes,Brooklyn,Cypress Hills,40.68983,-73.86905,Private room,45,3,6,2019-01-02,0.78,1,6 +29683957,Williamsburg Waterfront Luxury Apartment,18283992,Hannah,Brooklyn,Williamsburg,40.719,-73.96419,Entire home/apt,250,2,2,2019-04-14,0.33,1,0 +29684187,Natural Habitat | ♥ SUPER HOST ♥,223401516,Jessica,Brooklyn,Bedford-Stuyvesant,40.68424,-73.92828,Private room,65,2,34,2019-07-02,4.20,1,175 +29684231,Private Room in Relaxing Townhouse,861848,Nicholas,Brooklyn,Bedford-Stuyvesant,40.69093,-73.92754,Private room,68,2,0,,,2,0 +29684573,Nice Cozy Room In Brooklyn On A Dead End Block,31039254,Sean,Brooklyn,East Flatbush,40.64843,-73.93549,Private room,45,1,8,2019-07-07,5.00,1,334 +29685583,"SPACIOUS MANHATTAN ROOM +NO EXTRA FEE",77304447,Genesis,Manhattan,Harlem,40.81834,-73.95583,Private room,42,5,34,2019-07-04,4.23,3,40 +29686349,"Brooklyn Room, lots of sunlight",38299001,LaQuann,Brooklyn,Bedford-Stuyvesant,40.69025,-73.93387,Private room,55,1,0,,,1,0 +29686468,Private Master Bedroom,142641298,Maryana,Brooklyn,Bedford-Stuyvesant,40.69251,-73.94549,Private room,100,1,1,2018-11-19,0.13,1,0 +29686576,Cozy NYC Downtown Room,13392472,Lana,Manhattan,Lower East Side,40.72085,-73.98945,Private room,103,3,38,2019-07-05,4.58,1,99 +29686857,"2BR Apartment in Ridgewood, 20min to Manhattan",223422291,Robin,Queens,Ridgewood,40.70242,-73.90403,Entire home/apt,115,3,15,2019-06-24,1.88,1,10 +29686875,"*Spacious, Modern and Charming 1 Bedroom Apt!*",223418394,Max,Manhattan,Washington Heights,40.84726,-73.93866,Entire home/apt,90,1,15,2019-05-12,1.87,1,170 +29687049,"ALL PRIVATE - Bedroom, Bath and Kitchenette",617537,Bryan,Brooklyn,Bushwick,40.6952,-73.91535,Private room,85,3,35,2019-06-18,4.34,1,127 +29687597,East Village Escape for 2-4 guests!,223426581,Evan,Manhattan,East Village,40.72535,-73.98794,Entire home/apt,229,2,21,2019-07-03,2.58,1,70 +29687924,Gorgeous Room with Private Bath in Bedstuy,104246751,Javier,Brooklyn,Bedford-Stuyvesant,40.69237,-73.94314,Private room,95,1,36,2019-07-02,4.34,1,79 +29688392,Serenity In Queens,223431967,Stacy,Queens,Flushing,40.72915,-73.79448,Private room,70,2,0,,,1,95 +29688903,Room J near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.80434,-73.9649,Private room,80,1,28,2019-06-22,3.53,3,8 +29689103,Cozy studio btw upper east side and midtown east,19289434,Roman,Manhattan,Upper East Side,40.76118,-73.96036,Entire home/apt,140,3,1,2019-02-24,0.22,1,0 +29689253,Privet Room in GROUND FLOOR apt with FREE parking,57128179,Rita,Queens,Rego Park,40.71605,-73.85854,Private room,66,1,24,2019-07-05,2.99,2,327 +29690801,Private room next to N train.,198021963,Onur,Brooklyn,Borough Park,40.61979,-73.98886,Private room,20,1,12,2019-06-25,1.66,1,14 +29697411,Large Cozy Bedroom Near Manhattan & Airport,3644693,Eugenia,Queens,Jackson Heights,40.75166,-73.88088,Private room,68,28,5,2019-01-23,0.61,2,0 +29698179,QUIET Zen Garden Pad in BEST Brooklyn location!,324657,Laura,Brooklyn,Park Slope,40.67918,-73.97408,Entire home/apt,108,3,15,2019-06-16,1.87,1,8 +29699681,Sunny Penthouse with Williamsburg Bridge view,5226176,Laura,Brooklyn,Williamsburg,40.71093,-73.96407,Entire home/apt,143,5,2,2019-05-21,0.24,1,9 +29700382,"Spacious Hell's Kitchen Studio, Amazing Location",24561601,Morgan,Manhattan,Hell's Kitchen,40.76629,-73.98816,Entire home/apt,132,2,10,2019-05-26,1.25,1,3 +29701014,"Newly Renovated 3BR Apt,Minutes away from SI Ferry",223504937,Ellouise,Staten Island,Randall Manor,40.62692,-74.1299,Entire home/apt,109,3,21,2019-07-07,4.44,1,121 +29701500,New York Chelsea Art Apt.,30627525,Laith,Manhattan,Chelsea,40.73798,-73.99253,Entire home/apt,200,3,10,2019-06-08,1.35,1,263 +29701773,Chic one bedroom apartment in the heart of NYC,5224789,Mona,Manhattan,Hell's Kitchen,40.76072,-73.98993,Entire home/apt,150,4,3,2019-06-12,0.44,1,3 +29701791,Cozy Private Apartment 4 stops away from 42 st,5735865,Anya,Manhattan,Upper West Side,40.80254,-73.96723,Private room,70,3,23,2019-06-23,2.90,1,87 +29702007,"Cozy apartment with art, good light, books",8533032,Andrew,Brooklyn,Carroll Gardens,40.67414,-73.99961,Entire home/apt,130,4,5,2019-05-18,0.63,1,10 +29702562,DOORMAN Immaculate A/C Quiet Elegant,1575480,Gerard,Manhattan,Upper East Side,40.77081,-73.94944,Entire home/apt,195,30,1,2019-01-01,0.16,1,143 +29703038,LUXARY 2BR DUPLEX LOFT Downtown Brooklyn,48194192,Allen,Brooklyn,Clinton Hill,40.69509,-73.96462,Entire home/apt,191,1,42,2019-06-23,5.94,4,28 +29703465,"Sunny, Modern Comfort in Harlem",61684829,Chris,Manhattan,Harlem,40.80602,-73.95627,Entire home/apt,250,3,2,2018-12-02,0.27,1,0 +29704561,Huge Designer Soho Loft (Elevator) Private Terrace,54377368,Alexander,Manhattan,Lower East Side,40.721,-73.99218,Entire home/apt,350,2,5,2019-06-28,0.74,1,326 +29704596,Fraud,95642648,Тest,Manhattan,Lower East Side,40.72036,-73.98883,Shared room,147,3,9,2019-06-26,1.32,2,0 +29704955,Huge Room Right by the Myrtle JMZ,63966927,Hope,Brooklyn,Bedford-Stuyvesant,40.6956,-73.93739,Private room,50,1,5,2019-06-22,0.65,1,188 +29705049,"Sunny, Cozy Apt in the Heart of BedStuy for Cheap",82286,Linda,Brooklyn,Bedford-Stuyvesant,40.68615,-73.9356,Entire home/apt,79,3,2,2019-05-09,0.25,1,157 +29705115,Charming Apt in Historic Greenpoint Brownstone,153503882,Katherine,Brooklyn,Greenpoint,40.72795,-73.95481,Entire home/apt,150,2,8,2019-03-18,1.03,1,0 +29705207,Luxurious Ensuite in Historic Brownstone,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68405,-73.93401,Private room,70,2,11,2019-05-24,1.45,2,71 +29705876,One stop subway from mamhattan,36288249,Wu,Queens,Long Island City,40.7478,-73.94113,Private room,200,29,14,2019-01-06,1.70,1,364 +29706277,Vintage first floor private room in a 3 bed apt,57128179,Rita,Queens,Rego Park,40.71639,-73.85799,Private room,60,2,12,2019-06-16,1.45,2,19 +29706358,Bright and Airy Greenwich Village Junior 1 Bedroom,259123,Caitlin,Manhattan,Greenwich Village,40.73492,-73.99604,Entire home/apt,300,2,2,2018-12-15,0.26,1,11 +29706750,Sun filled DJ apartment in Williamsburg,187496935,Marie,Brooklyn,Williamsburg,40.71024,-73.95834,Entire home/apt,200,2,8,2019-01-02,1.00,1,5 +29707094,Female Shared 2 Bedroom Apt by Lincoln Center,223548766,Jeane',Manhattan,Upper West Side,40.77221,-73.9875,Private room,100,2,15,2019-06-30,1.81,1,58 +29707860,Entire Basement w/ Warm+Friendly+Brooklyn Energy!,223553290,Eli,Brooklyn,Cypress Hills,40.67948,-73.89313,Entire home/apt,200,1,5,2019-05-19,1.21,1,360 +29708352,Privet living room,205131610,Steven,Brooklyn,Canarsie,40.64376,-73.90833,Private room,68,2,3,2019-06-02,0.47,3,365 +29708729,Notorious -_- 15R,222483970,Felipe,Manhattan,East Village,40.72316,-73.98703,Private room,55,1,35,2019-07-02,4.39,1,0 +29710266,Manhattan Sights & Sound (Ladies Only),223574944,Carly,Manhattan,Kips Bay,40.74355,-73.97936,Shared room,39,2,2,2019-03-25,0.52,2,326 +29710463,"2 bedroom, one bath in Crown Heights",203302656,Nadine,Brooklyn,Prospect-Lefferts Gardens,40.66249,-73.95075,Entire home/apt,2545,90,0,,,1,180 +29711508,"Cozy clean room ;LGA 5 mints,JFK 10 mint Astoria",104814095,Hanine,Queens,East Elmhurst,40.75967,-73.88335,Private room,50,1,10,2019-06-04,1.37,3,85 +29711772,Luxury Apt near the Statue of Liberty,223578316,Susan,Manhattan,Financial District,40.7041,-74.0155,Entire home/apt,160,1,27,2019-06-26,3.28,1,302 +29712188,"Heaven in New York, Orange Room",185908506,Cynthia,Bronx,Edenwald,40.885,-73.83518,Private room,75,3,1,2018-11-20,0.13,3,311 +29712306,★Private Rooftop★- Your Own Townhouse in NYC,219490225,Hazel,Manhattan,West Village,40.73881,-74.00398,Entire home/apt,399,2,29,2019-07-02,3.83,1,234 +29712675,"Luxury Two Bedroom Ground Floor, Walk-in Apartment",222179066,Nneka,Brooklyn,Bedford-Stuyvesant,40.68775,-73.92581,Entire home/apt,115,1,89,2019-06-20,11.03,1,278 +29722452,Perch Harlem,14631757,Scott,Manhattan,Harlem,40.83039,-73.94721,Entire home/apt,150,1,5,2019-05-27,0.67,1,319 +29722985,J-ROOM SHARE BY CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.67098,-73.79657,Shared room,34,4,0,,,8,365 +29724480,J-NEW ROOM*NEAR CASINO*AIRPORT*CAFE*DOORSTEP METRO,213208277,Darry,Queens,South Ozone Park,40.6728,-73.79495,Private room,59,4,2,2019-05-17,0.33,8,365 +29727132,Amazing one bedroom for a getaway in Brooklyn,44358422,Akeema,Brooklyn,Flatbush,40.63919,-73.95219,Private room,38,1,2,2018-11-26,0.27,1,238 +29729573,Brooklyn BedStuy Apt close to Subway and Downtown,9632197,Olivia,Brooklyn,Bedford-Stuyvesant,40.68269,-73.94712,Private room,45,2,23,2019-06-30,3.61,1,50 +29729728,Apartment in the heart of Williamsburg,2299134,Maya,Brooklyn,Williamsburg,40.72034,-73.95626,Entire home/apt,100,3,2,2019-04-26,0.40,1,2 +29730504,Brooklyn Apartment with tons of light,223667060,Rachel,Brooklyn,Bushwick,40.69293,-73.90537,Entire home/apt,100,1,4,2019-02-10,0.48,1,35 +29730616,Large and bright bedroom 18 min to Grand Central,140930693,Max And Kathy,Bronx,Mott Haven,40.81177,-73.92726,Private room,60,1,29,2019-07-04,3.54,2,304 +29731583,"Charming apartment in coveted Carroll Gardens, BK",13466647,McKenzie,Brooklyn,Carroll Gardens,40.68333,-73.99831,Entire home/apt,155,3,8,2019-05-27,1.06,1,0 +29731625,Sunlit Spacious Apartment in Brooklyn,30177875,Bree,Brooklyn,Crown Heights,40.67452,-73.95906,Entire home/apt,120,4,3,2019-05-25,0.47,1,7 +29733220,Gorgeous space for last minute marathon plans,35244416,Amy,Manhattan,Upper East Side,40.77828,-73.95492,Private room,275,1,0,,,1,0 +29733748,Chambers Queen - Modernist Room | Minutes from 5th,220229838,Chamber Hotel,Manhattan,Midtown,40.7637,-73.97422,Private room,191,2,5,2019-06-16,3.00,11,217 +29734326,Luxurious apartment with spectacular city views,113834719,Daniel,Manhattan,Chelsea,40.75169,-74.00382,Entire home/apt,350,3,0,,,1,0 +29734635,Cozy 1BR near Brooklyn Waterfront by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71067,-73.96629,Entire home/apt,120,29,1,2018-12-10,0.14,7,0 +29734919,New York City UES Luxury Doorman Building,212698653,Amy,Manhattan,Upper East Side,40.76725,-73.95971,Entire home/apt,500,5,0,,,1,84 +29736250,Elegant 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70898,-73.96596,Entire home/apt,120,29,2,2019-03-24,0.38,7,0 +29736711,La Grand BnB near JFK,217652530,Portia,Queens,Jamaica,40.67352,-73.77957,Entire home/apt,485,1,24,2019-07-07,2.99,4,347 +29737168,Affordable Room near JFK,217652530,Portia,Queens,Jamaica,40.67385,-73.77874,Private room,125,1,1,2019-06-23,1,4,253 +29737954,Room 3 blocks from Columbus Circle / Central Park,58077160,Kat,Manhattan,Hell's Kitchen,40.76579,-73.98557,Private room,140,6,1,2018-11-12,0.13,1,0 +29738053,"Room near JFK, good for Cancellations and Delays!",217652530,Portia,Queens,Jamaica,40.67233,-73.77751,Private room,125,1,2,2019-04-13,0.32,4,253 +29738205,Beautiful Private Small Room with 2 Beds,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68634,-73.95499,Private room,63,2,13,2019-06-18,1.72,3,321 +29738207,Charming Room 1 with 2 Beds Close to Metro,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.6847,-73.95532,Private room,70,2,23,2019-06-23,2.95,3,293 +29738439,La Grand Master Bedroom,217652530,Portia,Queens,Jamaica,40.67205,-73.77721,Private room,180,1,0,,,4,253 +29738563,Cozy private room in the heart of Bushwick,223723845,Antonieta,Brooklyn,Bushwick,40.70717,-73.92126,Private room,50,4,3,2019-04-30,0.42,1,40 +29738760,Large bedroom in Manhattan. Subway on same block,4317615,Fabio,Manhattan,Harlem,40.82188,-73.95391,Private room,70,30,0,,,2,249 +29740134,Sunlit Bedroom in Washington Heights,30240946,Tanya,Manhattan,Washington Heights,40.85155,-73.92967,Private room,42,7,0,,,1,0 +29740171,Contemporary Minimalistic Private room in Bed-Stuy,45618730,Kevin,Brooklyn,Bedford-Stuyvesant,40.69405,-73.94411,Private room,60,2,11,2019-06-21,1.38,1,0 +29740703,5minutes to Manhattan luxury apartment,223741555,Mengxiao,Queens,Long Island City,40.74813,-73.93852,Private room,69,5,4,2018-12-27,0.53,1,0 +29741023,"Bright, cozy and large room in Manhattan - ATrain",20579643,Denis,Manhattan,Washington Heights,40.83627,-73.94329,Private room,40,2,1,2019-06-03,0.83,1,51 +29751447,The Cozy Corner in BedStuy,223817242,Carla,Brooklyn,Bedford-Stuyvesant,40.68774,-73.93699,Entire home/apt,120,1,36,2019-06-23,4.62,1,334 +29753642,Comfortable room in family home in Brooklyn!,11880311,Aileen,Brooklyn,Carroll Gardens,40.68261,-73.99097,Private room,50,2,6,2019-05-04,1.10,2,0 +29753750,Large Suite w/private bathroom by central park,223346842,Alex,Manhattan,Harlem,40.80551,-73.95136,Private room,92,2,44,2019-07-06,5.57,3,51 +29754544,"Comfortable- JFK,LGA Best Value",223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66102,-73.77035,Private room,50,1,57,2019-06-21,7.28,3,342 +29754946,Large studio in midtown east,76327788,Lola,Manhattan,Murray Hill,40.74633,-73.97586,Entire home/apt,155,5,14,2019-06-25,1.74,1,29 +29755360,LUXURY Studio Apartment in PRIME Williamsburg,223855863,Thais,Brooklyn,Williamsburg,40.71841,-73.95224,Entire home/apt,200,3,0,,,1,111 +29756137,2 bedroom Apartment.,215041024,Ife,Queens,Edgemere,40.5939,-73.77361,Entire home/apt,80,7,1,2019-06-08,0.94,1,87 +29756451,"Entire Townhouse in Boerum Hill, Brooklyn",11880311,Aileen,Brooklyn,Carroll Gardens,40.68345,-73.99094,Entire home/apt,138,7,3,2019-04-16,0.37,2,0 +29756773,Willoughby penthouse,223869982,Steve,Brooklyn,Bedford-Stuyvesant,40.69495,-73.93509,Private room,100,7,0,,,1,0 +29758199,Queens home with a view,71560458,Norma,Queens,Bayswater,40.60513,-73.77024,Entire home/apt,151,2,33,2019-07-07,4.21,1,309 +29758221,Entire floor of apartment with separate entrance,42979789,Vanessa,Brooklyn,Williamsburg,40.70845,-73.9402,Private room,85,3,7,2019-07-01,1.00,1,42 +29758404,Entire Apartment in Beautiful Brooklyn Brownstone,223886475,John & Dee,Brooklyn,Carroll Gardens,40.68564,-73.99201,Entire home/apt,170,2,8,2019-06-03,2.79,1,0 +29759120,Spacious Home with Backyard in Brooklyn,861848,Nicholas,Brooklyn,Bedford-Stuyvesant,40.69299,-73.92934,Entire home/apt,81,3,6,2019-01-06,0.73,2,0 +29760102,Minimal Loft in heart of Williamsburg -waterfront,24046264,Matt,Brooklyn,Williamsburg,40.71845,-73.96241,Entire home/apt,150,3,4,2019-04-22,0.50,1,69 +29760452,Cozy Brooklyn room 15min to Manhattan by subway!,209163615,Oriana,Brooklyn,Bedford-Stuyvesant,40.68377,-73.94489,Private room,85,1,1,2019-01-04,0.16,1,12 +29760512,1 double size bedroom 0.1 mile from Times Square.,214173940,Ali,Manhattan,Theater District,40.75941,-73.98794,Private room,62,1,7,2019-01-01,0.87,1,9 +29760721,Room M near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.8043,-73.96342,Private room,75,1,37,2019-06-19,4.72,3,10 +29760740,Single bedroom in Brooklyn,193502084,Linda,Brooklyn,Borough Park,40.64049,-74.00255,Private room,40,1,5,2019-03-18,0.61,8,0 +29760869,Studio in East Harlem,169647759,Johann,Manhattan,East Harlem,40.79078,-73.94547,Entire home/apt,100,1,11,2019-04-19,1.34,1,0 +29760980,Downtown Brooklyn Loft Space Under The Bridge,223807986,Luis,Brooklyn,Vinegar Hill,40.70079,-73.98512,Entire home/apt,275,1,1,2018-11-18,0.13,1,0 +29761111,"Clean, Convenient & Comfy Apt in FLATIRON! :-)",33041007,Jenny,Manhattan,Midtown,40.74559,-73.98551,Private room,139,4,14,2019-06-30,1.75,1,28 +29761241,Midtown room in the center of the NYC universe.,215229943,Mark,Manhattan,Hell's Kitchen,40.76458,-73.98686,Private room,98,5,8,2019-05-26,0.98,1,179 +29761272,"cozy room in queens, with free subway pick up",223913025,Jennyfer,Queens,Cambria Heights,40.69597,-73.74307,Private room,100,7,1,2018-11-10,0.12,1,0 +29761534,FREE YOGA with Goodyoga's Guest Room!,1240933,Goodyoga,Brooklyn,Greenpoint,40.72725,-73.95617,Private room,100,7,10,2019-06-24,1.38,1,353 +29762648,New York Manhattan Club Metro Suite,151280982,Carole,Manhattan,Midtown,40.76523,-73.98054,Private room,100,2,0,,,1,0 +29763219,"Bright one bedroom. Lorimer (J,M) broadway (G)",4858280,Anna,Brooklyn,Williamsburg,40.70343,-73.94894,Entire home/apt,149,6,7,2019-05-29,0.96,1,4 +29764987,Brooklyn-Brooklyn,78080379,Liliana,Brooklyn,Bushwick,40.68944,-73.907,Private room,75,5,0,,,1,250 +29765101,Luxury 2 Beds 2 Bath / Lincoln center,131647128,Emily,Manhattan,Upper West Side,40.77384,-73.98917,Entire home/apt,260,30,6,2019-06-18,1.58,25,257 +29766259,Cozy Artsy Room 2nd,52370129,Nino,Brooklyn,Bay Ridge,40.62461,-74.0297,Private room,60,2,9,2019-07-01,1.16,2,31 +29774846,"Cozy, quiet, one-bedroom West Village apartment",17910174,Jamie,Manhattan,West Village,40.73207,-74.00322,Entire home/apt,160,30,0,,,1,0 +29775040,Entire Brooklyn Brownstone Apartment with Laundry,149929,Obed,Brooklyn,Fort Greene,40.69083,-73.97301,Entire home/apt,135,5,21,2019-06-30,2.70,5,206 +29775262,Private Room in Beautiful Brooklyn Apt!,41389252,Evan,Brooklyn,Bedford-Stuyvesant,40.67893,-73.94318,Private room,60,3,7,2019-06-02,1.59,1,58 +29775749,Modern Luxury 1BR Apt,39607226,Alan,Brooklyn,Bushwick,40.68856,-73.91903,Entire home/apt,119,3,6,2019-06-16,0.79,1,4 +29776064,New York Home with a View,51338091,Vander,Manhattan,Harlem,40.82816,-73.93827,Entire home/apt,130,7,1,2019-01-06,0.16,1,280 +29776209,Large room + private bathroom by Central Park,223346842,Alex,Manhattan,Harlem,40.80679,-73.95105,Private room,75,2,12,2019-01-28,1.55,3,0 +29776235,"Spacious, Immaculate 2-BR Perfect for NYC Visit",22345627,Christine,Manhattan,East Harlem,40.80556,-73.94071,Entire home/apt,150,7,1,2018-11-15,0.13,1,66 +29776313,Suite Splendor near the Prospect Park.,864766,Leigh,Brooklyn,Park Slope,40.66912,-73.97493,Entire home/apt,150,5,6,2019-06-30,0.74,1,0 +29776797,"Huge bright 1,500SqFt loft. Subway down the street",224029433,Adrian,Brooklyn,Clinton Hill,40.68215,-73.96526,Entire home/apt,250,3,15,2019-06-23,1.99,1,43 +29777077,Trendy Soho Apartment,44457589,Joel,Manhattan,SoHo,40.72611,-74.00252,Entire home/apt,200,11,3,2019-06-15,0.41,2,17 +29777278,Vintage Room &prvt bathroom Central Park Manhattan,223346842,Alex,Manhattan,Harlem,40.80475,-73.95081,Private room,79,2,43,2019-07-05,5.47,3,43 +29777340,East Village Luxury Retreat,3783926,Vivek,Manhattan,East Village,40.7281,-73.98293,Private room,250,1,2,2018-11-30,0.24,1,180 +29777857,Contemporary room in front of Central Park,52033043,Johnny,Manhattan,Harlem,40.79927,-73.95384,Private room,89,2,22,2019-04-29,2.84,1,0 +29778083,NYC East Village 1 BR / Studio,28418563,Eli,Manhattan,East Village,40.72546,-73.98396,Entire home/apt,179,1,20,2019-07-01,2.65,1,268 +29778309,Spice Island Hotspot,224042160,Pettrina,Brooklyn,East Flatbush,40.65046,-73.95067,Private room,38,2,11,2019-06-30,1.51,3,365 +29778804,Giant private bedroom w 1/2 bathroom in 4BR apt,58266933,Jordan,Queens,Astoria,40.75805,-73.90927,Private room,25,7,2,2019-03-21,0.29,1,66 +29779072,Massive Large 4 bedrooms 2 bathrooms in Manhattan,4317615,Fabio,Manhattan,Harlem,40.82064,-73.9537,Private room,150,1,11,2019-01-25,1.43,2,0 +29779831,Bedstuy Artists Quarter (tower corner room),18272280,Louis,Brooklyn,Bedford-Stuyvesant,40.68398,-73.94179,Private room,43,1,10,2019-04-28,1.33,2,2 +29779937,** 2 Bedrooms in Central NYC! ***,194954408,Bruce,Manhattan,Midtown,40.75175,-73.98499,Entire home/apt,295,28,4,2019-05-20,0.51,1,147 +29780076,"Spacious, classic parlor brownstone with backyard",5845384,Kaylin,Brooklyn,Carroll Gardens,40.68301,-73.99677,Entire home/apt,215,5,0,,,1,33 +29780117,"one bedroom apartment safe, clean, best price",224056583,Sevilay,Brooklyn,Sheepshead Bay,40.6058,-73.95337,Private room,75,7,4,2019-06-11,0.51,1,311 +29780690,Home away from home,224062220,Tevin,Brooklyn,East Flatbush,40.65155,-73.92907,Private room,80,1,22,2019-07-01,2.76,1,162 +29780863,Private Studio Chelsea 23 x 8th Ave 30sec to train,6458347,Esther,Manhattan,Chelsea,40.74499,-73.99845,Private room,180,1,2,2019-04-19,0.31,1,158 +29781238,"Spacious, private room near Empire State Building",3335791,Ben,Manhattan,Kips Bay,40.74406,-73.98003,Private room,99,3,7,2019-05-22,0.93,1,0 +29781403,Modern Apartment in Brooklyn with deck and yard,22464812,Maruf,Brooklyn,Kensington,40.64261,-73.9835,Entire home/apt,200,1,24,2019-06-24,3.27,1,290 +29781691,East meets West,59459840,Michelle,Manhattan,East Harlem,40.79831,-73.94201,Entire home/apt,95,3,4,2019-07-01,4,1,88 +29782067,Bedroom in Astoria for two,20037314,Marcel,Queens,Astoria,40.76339,-73.92249,Private room,97,2,0,,,1,249 +29782186,"Sunny , queen size bedroom near the metro",107161778,David,Brooklyn,Crown Heights,40.66531,-73.93267,Private room,100,4,0,,,1,0 +29787085,Half block to NY. Flushing Chinatown. Main Street,110058188,Charles,Queens,Flushing,40.76016,-73.82672,Private room,57,1,13,2019-07-06,3.28,1,347 +29790239,Comfortable artistic Brooklyn apartment,94546995,Hollis,Brooklyn,Bedford-Stuyvesant,40.69854,-73.94554,Entire home/apt,75,3,15,2019-05-21,2.47,1,4 +29791183,Nice room in Astoria 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.76984,-73.90779,Private room,45,1,7,2019-06-22,2.50,5,29 +29792553,Stunningly Bright Room with NYC Skyline Views,10928484,Stan,Brooklyn,Williamsburg,40.71843,-73.94199,Private room,299,4,0,,,1,35 +29792926,Sun-lit downtown apartment in the West Village,224141746,Germaine,Manhattan,West Village,40.73176,-74.00428,Entire home/apt,179,7,3,2019-05-24,0.49,1,10 +29793730,Elevated Bushwick Apartment w/360 Brooklyn Views,32346001,Michael,Brooklyn,Bushwick,40.6989,-73.9246,Entire home/apt,160,2,19,2019-05-26,2.38,2,0 +29794028,"Cosy bedroom in Bedstuy - A, C and G trains",103216104,Esther,Brooklyn,Bedford-Stuyvesant,40.68409,-73.94965,Private room,60,7,1,2018-11-07,0.12,1,0 +29794270,Barrett’s Family Home,120245209,Heidi,Brooklyn,Canarsie,40.63535,-73.89493,Private room,55,1,7,2019-06-22,1.08,2,126 +29794702,Spacious 1BR BK Hideaway Steps from Prospect Pk,20241112,Mariela,Brooklyn,Prospect-Lefferts Gardens,40.65581,-73.95732,Entire home/apt,85,3,12,2019-05-31,1.60,1,263 +29796861,Our home sweet home,8344401,Alejandro,Brooklyn,Bedford-Stuyvesant,40.69331,-73.94918,Entire home/apt,185,1,4,2019-06-26,4,1,3 +29797153,PRIVATE ROOM NEAR BOTH AIRPORTS AND SUBWAY/LIRR,224176858,Martha,Queens,Maspeth,40.73183,-73.89787,Private room,50,1,4,2019-03-24,0.56,1,137 +29797522,"Near to all trains, 15 minute from JFK, safe house",213183791,Walkiris,Queens,Corona,40.74419,-73.85861,Private room,110,1,1,2019-01-02,0.16,1,357 +29797672,Entire downstairs 1.5 baths & private backyard,48823279,Chris,Manhattan,East Harlem,40.79875,-73.93643,Private room,125,3,2,2019-06-30,0.32,1,238 +29797712,Brooklyn Magic Space,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71818,-73.95945,Entire home/apt,300,2,15,2019-07-02,2.06,2,273 +29798763,1 BDRM close to JFK airport cozy & clean HOUSE NYC,220129825,Carlton,Queens,Jamaica,40.67367,-73.78157,Entire home/apt,160,1,3,2019-06-13,0.41,2,359 +29798872,Comfortable private room near Columbia University,224190427,Miller,Manhattan,Upper West Side,40.80183,-73.96542,Private room,68,1,14,2019-06-21,2.02,1,12 +29799125,1 bedroom within walking distance to Times Sq,57146691,Andrew,Manhattan,Midtown,40.75514,-73.96746,Entire home/apt,250,3,0,,,1,0 +29799420,Private and cozy room in East Williamsburg.,53103368,Caroline,Brooklyn,Williamsburg,40.70701,-73.94446,Private room,65,2,0,,,1,6 +29799920,Ultra Modern Two Bedroom with Amazing Views,63875726,Jason,Manhattan,Murray Hill,40.74441,-73.97328,Entire home/apt,215,5,0,,,1,51 +29800110,"Modern, comfy, and cool",49701856,Rachel,Brooklyn,Bushwick,40.69222,-73.90695,Entire home/apt,150,3,22,2019-07-02,2.89,1,50 +29800664,Private bedroom 3 stops from Grand Central,224204301,Tylor,Bronx,Mott Haven,40.8114,-73.92747,Private room,60,1,48,2019-07-07,6.96,2,296 +29800895,Huge Auditorium/Theatre w/Balcony Seats for Events,13460069,Shan,Queens,Flushing,40.73333,-73.79514,Entire home/apt,500,1,0,,,1,365 +29800915,Entire floor (private entrance) w/ 1 BR in NYC,224206042,Jose,Bronx,Allerton,40.86116,-73.86248,Entire home/apt,55,3,26,2019-06-25,3.36,1,349 +29800927,Brand New Luxury Apartment with Private Garden,157703622,John,Manhattan,Lower East Side,40.71707,-73.98931,Entire home/apt,200,30,0,,,2,97 +29801113,"Near LGA and JFK Airport +Charming Guest Suite",194377255,Jimmy,Queens,East Elmhurst,40.76299,-73.86976,Private room,65,1,22,2019-07-05,4.26,4,349 +29801175,Large private bedroom 1 stop from Manhattan,152202371,Richard,Bronx,Mott Haven,40.81,-73.92654,Private room,65,1,35,2019-07-02,4.32,1,295 +29801645,"CLOSE TRAIN, 30JFK 40LG, 1or2People. closeManhatt",224048389,David,Brooklyn,Sunset Park,40.64198,-74.01809,Private room,48,3,2,2018-11-15,0.25,1,0 +29802895,"Near LGA and JFK airport +Small Cozy Room",194377255,Jimmy,Queens,East Elmhurst,40.76199,-73.88331,Private room,38,1,42,2019-05-05,5.12,4,207 +29803428,Spacious West Village Studio,41802394,Joshua,Manhattan,West Village,40.73378,-74.00272,Entire home/apt,1115,3,2,2019-05-27,0.38,1,0 +29804246,Huge Studio style room in Manhattan -Private Bath,42676520,Andrew,Manhattan,Harlem,40.80728,-73.94619,Private room,80,1,54,2019-06-30,7.83,2,8 +29804415,"BRIGHT, SPACIOUS, QUIET Luxury Oasis, DowntownNYC!",26330233,Dr.,Manhattan,East Village,40.72977,-73.97895,Entire home/apt,175,6,23,2019-06-19,3.15,1,232 +29804907,"2 bedroom apartment in Sunset Park, Brooklyn",12235509,Zachary,Brooklyn,Sunset Park,40.65085,-74.0037,Entire home/apt,175,4,12,2019-07-02,1.65,1,142 +29805157,The heart of Queens !!,192773562,Marie,Queens,Woodside,40.7415,-73.89249,Private room,60,1,0,,,1,87 +29805233,Brand New NYC Apartment: Central Park & Midtown,224238226,Maksum,Manhattan,Upper East Side,40.76263,-73.96881,Entire home/apt,265,6,33,2019-06-16,4.16,1,95 +29805732,Book your party on UES NYC Venue,47721954,Agata,Manhattan,Upper East Side,40.77695,-73.95519,Shared room,75,1,0,,,1,90 +29806013,NICE BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN 1,221836975,Jon,Queens,Jackson Heights,40.75125,-73.89346,Shared room,58,2,4,2019-05-31,0.64,3,267 +29806412,"Beautiful 4 bedroom, one block from Central Park!",224245939,"Esteban, Maxi, Alberto, Lucia",Manhattan,Upper West Side,40.79439,-73.96315,Entire home/apt,310,7,0,,,1,0 +29806992,"Luxurious townhouse, 2bd w/Loft+2bath+High-ceiling",15058648,Shola,Brooklyn,Bushwick,40.69798,-73.92968,Entire home/apt,135,3,5,2019-07-03,0.71,3,17 +29809200,Bargain Warm Spacious Studio in Carroll Gardens!,4180621,Julia,Brooklyn,Carroll Gardens,40.67739,-74.00004,Entire home/apt,74,1,4,2019-01-25,0.57,2,0 +29814549,"Comfy, Cozy Studio at the Grand Old Mansion",187908347,William,Brooklyn,Crown Heights,40.67265,-73.94728,Entire home/apt,81,4,19,2019-07-05,2.44,2,94 +29816922,Bright warmth 2min bus 4min subway 窗下凉台花园房。,196058543,美德,Queens,Forest Hills,40.71988,-73.83922,Shared room,35,3,24,2019-07-02,3.13,5,236 +29820510,Large bedroom with private bathroom,224314859,Miki,Manhattan,Washington Heights,40.85358,-73.93526,Private room,90,3,3,2019-01-02,0.41,1,82 +29821404,Sunny Bohemian Apartment in Solar Building!,224317523,Olivia,Brooklyn,South Slope,40.66402,-73.98282,Entire home/apt,285,5,29,2019-06-16,3.57,1,74 +29821998,"Cozy apartment, SubwayEMR7NW, 5mins to Manhattan",52767716,Eden,Queens,Long Island City,40.74836,-73.93833,Private room,95,2,3,2018-12-31,0.44,1,0 +29822259,Warm Wiliamsburg Retreat,2967674,Lilly,Brooklyn,Williamsburg,40.70686,-73.95538,Private room,48,2,6,2019-02-06,0.87,2,0 +29822873,West Village Corner 1 Bedroom GEM,2465013,Alyssa,Manhattan,West Village,40.72994,-74.00456,Entire home/apt,275,3,2,2019-01-02,0.29,1,0 +29823499,Large Union Sq Apartment!,34986045,Andy,Manhattan,East Village,40.73228,-73.98669,Entire home/apt,650,3,1,2018-12-31,0.16,1,0 +29824343,New Yorker sunny top floor loft,29279378,Viktor,Manhattan,Harlem,40.82812,-73.94219,Entire home/apt,200,30,0,,,1,180 +29824401,"Large private room Williamsburg, Luxury Building",224340103,Vincent,Brooklyn,Williamsburg,40.70933,-73.94651,Private room,80,2,3,2019-02-17,0.40,2,0 +29824856,Comfortable and Modern BedStuy Hideaway,25970711,Keilon,Brooklyn,Bedford-Stuyvesant,40.68457,-73.92914,Entire home/apt,100,2,8,2019-06-16,1.09,1,75 +29825469,Entire Top Floor Suite with Private Bathroom.,7443296,Faridath,Brooklyn,Cypress Hills,40.68072,-73.88787,Private room,120,2,26,2019-07-01,3.24,1,63 +29825538,My magical home steps from Times Square,224019631,Victor,Manhattan,Hell's Kitchen,40.75971,-73.99076,Entire home/apt,150,2,7,2019-06-10,0.91,1,14 +29825609,Spacious Sunny Balcony Room in Williamsburg,57973441,Mark,Brooklyn,Williamsburg,40.70932,-73.94792,Private room,90,1,1,2018-11-19,0.13,1,32 +29825825,Home away from home. Private apt across from park.,224350246,Marceline,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91792,Entire home/apt,175,2,4,2019-06-16,0.54,1,326 +29826781,Beautiful Artist couples Home in Chinatown.,13619313,Kaylee,Manhattan,Little Italy,40.71731,-73.99862,Entire home/apt,175,4,0,,,1,179 +29827109,Modern 1BR in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71081,-73.96695,Entire home/apt,120,29,5,2019-06-03,0.75,7,0 +29827403,"“TIME SQUARE” 43rd Street +Big Bedroom on 1st floor",30985759,Taz,Manhattan,Hell's Kitchen,40.75988,-73.99123,Private room,135,1,50,2019-07-07,6.20,6,316 +29827530,Bright Brooklyn Brownstone,6856247,Andrew,Brooklyn,Park Slope,40.67262,-73.97372,Entire home/apt,160,2,5,2019-07-02,0.66,1,2 +29827671,Private bedroom in large apartment in East Harlem,26000391,Yvette,Manhattan,East Harlem,40.7906,-73.94594,Private room,40,7,2,2019-01-01,0.27,1,188 +29827690,Private master bedroom next to Central Park & CU,17822256,Anna & Frank,Manhattan,Harlem,40.80075,-73.95676,Private room,95,2,40,2019-06-21,5.00,4,141 +29827781,NYC WARM CLEAN COZY CLOSET EXPERIENCE ROOM 3 PPL,4233057,Hajah,Manhattan,East Harlem,40.79829,-73.93601,Private room,68,3,4,2019-05-29,0.64,3,95 +29828155,Bergen Beach Beauty,224365956,Marshall,Brooklyn,Bergen Beach,40.62221,-73.90975,Entire home/apt,49,3,20,2019-06-30,2.64,1,164 +29828159,Renovated studio/ Elevator/ Laundry/ 76 St & 2 Ave,1475015,Mike,Manhattan,Upper East Side,40.77072,-73.95538,Entire home/apt,105,30,0,,,52,358 +29828333,"**Harlem, Chic Getaway! 5m to Dining/Trains***",216634331,Stephanie,Manhattan,Harlem,40.82431,-73.94291,Entire home/apt,202,3,8,2019-06-21,1.10,1,88 +29828587,Doorman Beautiful Studio / 32nd St & Lexington Ave,1475015,Mike,Manhattan,Kips Bay,40.74446,-73.98091,Entire home/apt,120,30,0,,,52,353 +29828614,New York home ferry ride from Manhattan.,224370048,Pariis,Staten Island,Tompkinsville,40.63304,-74.09244,Private room,90,1,6,2019-06-23,0.95,1,262 +29828654,Luxury high ceiling penthouse apartment,62014501,Guangnan,Queens,Long Island City,40.74781,-73.93891,Entire home/apt,133,20,9,2018-12-16,1.27,1,21 +29828657,Upper West Side Studio,48967970,John,Manhattan,Morningside Heights,40.80528,-73.95928,Entire home/apt,150,20,0,,,1,33 +29828852,Small Room Close to Astoria Park,7653811,Olga,Queens,Astoria,40.77359,-73.9251,Private room,60,1,2,2019-01-01,0.32,1,249 +29829054,Best location in Williamsburg!,20827165,Melissa,Brooklyn,Williamsburg,40.71545,-73.94383,Entire home/apt,99,2,1,2018-11-19,0.13,2,0 +29829066,Convenient 2 BR next to train minutes to Manhattan,179668570,Ric,Brooklyn,Williamsburg,40.71359,-73.9404,Entire home/apt,165,3,37,2019-06-20,5.19,1,34 +29829412,Private Room 1 - Central Park / CU mins away,17822256,Anna & Frank,Manhattan,Harlem,40.80246,-73.95737,Private room,95,2,31,2019-06-18,4.15,4,172 +29829829,"Modern 1BR Apt in Heart of LES, near Subway!",218984753,Emmanuel,Manhattan,Lower East Side,40.71918,-73.98525,Entire home/apt,59,1,25,2019-05-31,3.25,1,143 +29831106,"TIME SQUARE” 43rd street +Private room on 1st floor",30985759,Taz,Manhattan,Hell's Kitchen,40.75938,-73.98986,Private room,145,1,61,2019-07-06,7.50,6,283 +29831510,Private Room 2 - Next to Central Park / CU,17822256,Anna & Frank,Manhattan,Harlem,40.80076,-73.95742,Private room,95,2,32,2019-06-22,4.00,4,163 +29831517,Large private bedroom in private house.,224384517,Rena,Brooklyn,Canarsie,40.64403,-73.88908,Private room,60,1,64,2019-07-04,8.97,1,142 +29831549,Cozy Room Conveniently Located Near Central Park,1512565,Jean,Manhattan,East Harlem,40.7879,-73.95418,Private room,90,2,9,2019-06-30,1.78,3,112 +29832431,Hart st,156948111,Vanessa,Brooklyn,Bedford-Stuyvesant,40.69351,-73.95161,Private room,60,10,1,2018-12-11,0.14,1,365 +29832437,Room Q near Columbia,223431101,Stella,Manhattan,Morningside Heights,40.80307,-73.96386,Private room,80,1,37,2019-06-23,4.78,3,9 +29832733,Cozy bedroom in hip center of Williamsburg,224401490,Gloria,Brooklyn,Williamsburg,40.71009,-73.95151,Private room,60,3,2,2018-12-14,0.25,1,0 +29832768,Avail July - Beautiful Greenwich Village room!,26310763,Amz,Manhattan,Greenwich Village,40.73328,-73.99431,Private room,150,7,0,,,1,2 +29833375,Brooklyn Loft Bedroom II,30346705,Soeun & Rolando,Brooklyn,Bedford-Stuyvesant,40.69086,-73.95955,Private room,50,1,42,2019-07-01,5.38,2,57 +29834133,"Quiet private bedroom in Bed-Stuy, Brooklyn",56156848,Michael And Brooke,Brooklyn,Bedford-Stuyvesant,40.69551,-73.94565,Private room,93,3,21,2019-06-30,2.70,1,73 +29834597,Cozy studio with private entrance,158781381,Samuel,Brooklyn,East New York,40.66128,-73.89105,Entire home/apt,75,2,15,2019-06-24,1.87,2,179 +29834691,Luxury Condo near Columbia Univ and Central Park,224413673,Alex,Manhattan,Harlem,40.80536,-73.95434,Entire home/apt,150,1,4,2018-12-28,0.53,1,0 +29835041,Hudson Yard - Comfy Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75546,-73.99792,Private room,107,1,22,2019-06-20,2.81,30,141 +29835159,Bright and Comfortable Home in Brooklyn,16398154,Jennifer,Brooklyn,Prospect Heights,40.68162,-73.96818,Entire home/apt,149,2,8,2019-04-29,1.00,1,0 +29835357,East Village Oasis,8573489,Jc,Manhattan,East Village,40.73022,-73.97998,Entire home/apt,220,4,1,2019-07-08,1,1,14 +29838125,Beautiful Private Room 20 min to city X,24762401,Dee Daisy And Peter,Brooklyn,Bedford-Stuyvesant,40.68921,-73.95035,Private room,65,30,26,2019-06-24,3.25,4,361 +29838679,EXCELLENT private room X,209298687,Digna,Brooklyn,Bedford-Stuyvesant,40.68907,-73.95217,Private room,65,30,13,2019-06-10,1.77,4,333 +29844533,Bright and stylish 1 bedroom,224461227,Birce,Manhattan,Chelsea,40.74442,-73.99908,Entire home/apt,220,2,2,2019-04-14,0.32,1,0 +29844951,Cozy Home In Queens,49946447,Rah,Queens,Jamaica,40.68842,-73.77677,Private room,50,2,1,2019-03-19,0.27,1,311 +29847462,"Park Slope - Brand New Bright 3 Bedroom, 2.5 Bath",5847816,Tristan,Brooklyn,Park Slope,40.66724,-73.98039,Entire home/apt,700,4,2,2019-06-12,0.32,1,174 +29847492,Cozy Studio in the Upper East (30 DAYS MIN),159598333,Sol,Manhattan,Upper East Side,40.78179,-73.94693,Entire home/apt,99,30,1,2019-03-24,0.28,5,332 +29849331,Spacious and Bright Williamsburg Loft,5537011,Ian,Brooklyn,Williamsburg,40.71474,-73.94441,Entire home/apt,175,2,6,2019-06-29,2.37,1,176 +29849903,Luxury studio suite in heart of Financial district,187360554,Ricardo,Manhattan,Financial District,40.70731,-74.00871,Entire home/apt,155,3,0,,,1,107 +29849986,Ultra modern Luxury apartment in Time Square,22582243,Luca,Manhattan,Hell's Kitchen,40.7597,-73.99726,Entire home/apt,219,3,6,2019-05-26,0.80,1,6 +29850004,NOLITA apartment w doorman,224498087,Sibel,Manhattan,Nolita,40.72361,-73.99301,Entire home/apt,130,7,0,,,1,0 +29850433,A Express Train Studio,1550888,Miss Carolyn,Brooklyn,Bedford-Stuyvesant,40.6817,-73.95025,Entire home/apt,70,30,3,2019-04-30,0.42,3,281 +29851718,Serviced townhouse with backyard & terrace in NYC,117932348,Deborah,Manhattan,Gramercy,40.73492,-73.98079,Entire home/apt,650,30,0,,,2,88 +29851985,Comfy King Bedroom Skyline View Close to Subway,20491372,Di,Queens,Forest Hills,40.72784,-73.85109,Private room,69,2,1,2018-11-18,0.13,1,35 +29852201,Lothlorien,224513581,Gaia,Brooklyn,Bedford-Stuyvesant,40.67759,-73.9106,Private room,30,7,2,2018-12-18,0.26,2,250 +29852402,Flex Room With Private Patio in Bushwick,60258049,John,Brooklyn,Bushwick,40.69061,-73.90815,Shared room,42,2,5,2019-01-01,0.67,1,0 +29852434,Single Bedroom near Columbia University,73655921,七,Manhattan,Morningside Heights,40.8088,-73.95949,Private room,55,8,0,,,1,177 +29853088,Cute & convenient garden apartment in Astoria/LIC,137194766,Maria,Queens,Astoria,40.75491,-73.91445,Entire home/apt,98,3,32,2019-06-21,4.02,2,131 +29853753,Modern room in Harlem,16495440,Elisabeth,Manhattan,Harlem,40.80312,-73.95378,Private room,85,2,0,,,1,10 +29854034,New York Luxury condo with Queens view,32423541,Wei,Queens,Long Island City,40.74635,-73.94035,Entire home/apt,120,2,2,2019-06-30,0.32,1,4 +29854048,Light Airy & Hip One Bedroom in Greenwhich Village,2730280,Cady,Manhattan,Greenwich Village,40.73002,-74.00107,Entire home/apt,225,2,8,2019-06-23,1.26,1,207 +29854118,Central 1 bedroom in East Village NYC July Deal$$$,4316287,Ryan,Manhattan,East Village,40.72896,-73.98111,Entire home/apt,158,3,10,2019-05-26,1.58,1,323 +29854455,Spacious two-bedroom apartment near train,7229055,Sarah,Manhattan,Harlem,40.82173,-73.94831,Entire home/apt,130,2,7,2019-05-10,1.08,1,0 +29855428,Cozy 1 bedroom Apartment 5 min from LGA!,7849770,Melitza,Queens,East Elmhurst,40.76373,-73.86508,Entire home/apt,70,1,83,2019-07-07,10.29,1,0 +29855524,Putnam Palace,39972598,Barbara,Brooklyn,Bushwick,40.68847,-73.91989,Private room,70,4,1,2018-11-27,0.13,1,342 +29856229,GREAT FURNISHED BEDROOM NEAR MIDTOWN MANHATTAN,221836975,Jon,Queens,Jackson Heights,40.74945,-73.89299,Private room,50,2,9,2019-07-02,1.38,3,365 +29856590,Private cozy room after long day exploring NYC,215944788,Kay,Manhattan,Upper East Side,40.77143,-73.94893,Private room,90,2,23,2019-06-23,3.00,3,17 +29857392,"So Fresh & Clean whole apartment, Lower East Side!",61649970,Chantelle,Manhattan,Lower East Side,40.71965,-73.98448,Entire home/apt,250,1,24,2019-06-21,3.17,2,280 +29858126,LARGE apartment. 12 minutes from midtown,149849302,Tyler,Manhattan,Harlem,40.81004,-73.95271,Entire home/apt,200,1,3,2019-01-01,0.45,1,0 +29858182,Luxury Affordable comfort in the Bronx-Suite 2!,216456504,Annick,Bronx,Wakefield,40.89429,-73.84392,Private room,49,1,26,2019-07-01,3.21,3,363 +29858389,Cozy one bedroom apt near Central Park,78482422,Esperanza,Manhattan,East Harlem,40.79,-73.94728,Entire home/apt,160,2,11,2019-06-23,1.49,1,0 +29858919,Luxury Family- Friendly Brooklyn Condo,612551,Mike,Brooklyn,Bedford-Stuyvesant,40.6858,-73.95375,Entire home/apt,150,7,2,2019-06-16,1.36,1,0 +29858941,Luxury Affordable comfort in the Bronx-2 Bedroom!,216456504,Annick,Bronx,Wakefield,40.894,-73.84362,Entire home/apt,130,1,11,2019-06-23,1.45,3,363 +29859444,Cozy Room Times Square - Hell´s Kitchen,7147987,Pablo,Manhattan,Hell's Kitchen,40.76061,-73.99038,Private room,170,8,1,2019-01-02,0.16,1,19 +29860764,"Stylish, clean, quiet space in the UES",2931626,Liz,Manhattan,Upper East Side,40.76747,-73.95451,Entire home/apt,120,2,2,2018-12-28,0.27,1,0 +29860810,Sun-drenched duplex apartment,224575394,Sabrina,Brooklyn,Williamsburg,40.70774,-73.9445,Private room,100,2,21,2019-07-01,2.75,1,6 +29861097,LARGE Cozy Room by Prospect Park !,1512819,Sydney,Brooklyn,East Flatbush,40.65323,-73.95256,Private room,45,5,5,2019-05-17,1.06,5,69 +29862444,1 Bedroom - Great Place to land in Manhattan,3073250,Dan,Manhattan,Upper West Side,40.79202,-73.96887,Entire home/apt,175,3,10,2019-07-03,1.29,1,13 +29863494,Private RM and BR in Queens close to Manhattan,215956658,Any,Queens,Woodside,40.75542,-73.9021,Private room,70,4,34,2019-06-28,4.25,1,34 +29867971,"Minimal, clean 2 bedroom in BedStuy Brooklyn",224614531,Amhalise,Brooklyn,Bedford-Stuyvesant,40.69318,-73.94739,Entire home/apt,200,2,3,2019-01-01,0.41,2,95 +29869390,HABITACIÓN COMPARTIDA PARA AVENTURERAS(Only Women),215778245,Jessy & Christian,Queens,Corona,40.73887,-73.86562,Shared room,30,2,6,2019-07-02,0.76,6,365 +29869463,Large Studio with Best View in NYC!,214290528,Tiffany,Manhattan,Financial District,40.70724,-74.01438,Entire home/apt,195,2,4,2019-01-02,0.56,1,0 +29870750,Creative House for Traveling Creatives,40883581,Morian,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95428,Private room,55,1,4,2019-04-06,0.53,1,0 +29871943,Large Sunny Room in NYC,73881521,Betty,Manhattan,Washington Heights,40.84616,-73.93855,Private room,60,10,0,,,1,310 +29873175,Vibrant room in Bushwick with lots of light,119990626,Vladimir,Brooklyn,Bushwick,40.69862,-73.92849,Private room,60,7,1,2018-11-28,0.13,1,173 +29874127,"Gym, Rooftop, Pool Lux entire flat no share",217482038,Emily,Manhattan,Upper East Side,40.76328,-73.96598,Entire home/apt,129,2,8,2019-06-20,1.18,3,15 +29874717,Lovely room in Brooklyn,223620306,Xavier,Brooklyn,Bushwick,40.69725,-73.91181,Shared room,95,1,0,,,1,0 +29874869,2 mins walk from the subway station in West Harlem,74982218,Miki,Manhattan,Harlem,40.81278,-73.95156,Private room,55,3,3,2019-01-20,0.39,2,0 +29875137,"HUGE & Luxurious 1 Bedroom w/ Dining Room, 2 Bath!",9071235,Alex,Manhattan,East Village,40.72753,-73.98285,Entire home/apt,399,4,3,2019-04-22,0.47,1,75 +29875238,★AMAZING★ 4Beds/TIME SQUARE/NYC/PERFECT FOR U,224661472,Jake,Manhattan,Hell's Kitchen,40.76117,-73.99099,Entire home/apt,700,4,46,2019-05-23,5.70,1,126 +29875799,"Colorful flat in heart of East Village, NYC",32162351,A.J.,Manhattan,East Village,40.73018,-73.98229,Entire home/apt,199,2,0,,,2,0 +29876288,Beautiful and bright apartment close to Manhattan!,5326571,Ines,Queens,Ditmars Steinway,40.77718,-73.91029,Entire home/apt,180,7,1,2019-05-25,0.67,2,122 +29876453,"In Riverdale, a most unusual apartment to enjoy.",124867390,Karel,Bronx,Spuyten Duyvil,40.88071,-73.92074,Private room,60,3,8,2019-06-16,1.11,1,326 +29877024,The Art Of Living - Loft apartment,224675361,Paula,Brooklyn,Bushwick,40.69143,-73.90993,Entire home/apt,110,2,20,2019-07-01,2.56,1,284 +29877195,Modern Murray Hill Penthouse,113274391,Francis,Manhattan,Murray Hill,40.74991,-73.97262,Entire home/apt,200,21,0,,,1,0 +29877448,Prime upper east 2BR~Newly furnished!best value,162280872,Izi,Manhattan,Upper East Side,40.76197,-73.96139,Entire home/apt,195,30,1,2019-05-16,0.56,13,138 +29878717,King size luxury studio minutes to Manhattan,75435800,Dean,Queens,Long Island City,40.75262,-73.93656,Entire home/apt,165,2,0,,,2,0 +29878723,"Family-friendly Brownstone, 2 blocks to Subway!",2494204,Jessica,Brooklyn,Bedford-Stuyvesant,40.68143,-73.94765,Entire home/apt,150,2,7,2019-07-01,0.90,1,11 +29879085,"Beautiful spacious Loft , east village,2 real beds",24449433,Mario,Manhattan,East Village,40.72575,-73.98236,Entire home/apt,190,3,10,2019-07-01,1.60,1,61 +29879394,Clinton Hill - Peaceful and bright room,14349735,Laurie,Brooklyn,Clinton Hill,40.68683,-73.96572,Private room,64,6,2,2018-11-24,0.25,1,250 +29880308,Sweet comfortable home,224696045,Fozia,Brooklyn,Sheepshead Bay,40.59362,-73.95659,Entire home/apt,110,2,16,2019-06-23,2.45,1,276 +29880522,Private Room pretty close to Manhattan,5817533,Leda,Queens,Astoria,40.76477,-73.92901,Private room,75,5,0,,,1,0 +29880528,"Private Suite: Brooklyn, NY - 40 min to Manhattan",211895243,Lili,Brooklyn,Midwood,40.62541,-73.96293,Entire home/apt,105,3,1,2018-11-11,0.12,2,46 +29880984,Luxury suite in the heart of Manhattan,145981682,Simi,Manhattan,Theater District,40.76,-73.98377,Entire home/apt,212,1,5,2019-02-08,0.69,3,272 +29881483,Apartment in greenwood heights /south slope,224706357,Fritz,Brooklyn,Sunset Park,40.66056,-74.00017,Entire home/apt,110,2,42,2019-06-24,5.21,1,90 +29881570,New york Cozy Studio Near multiple metro Lines,12131971,Maria,Manhattan,Midtown,40.75855,-73.96961,Entire home/apt,140,1,3,2018-12-09,0.37,1,0 +29881620,Magical Christmas Experience in NYC,224711473,Kd,Manhattan,Midtown,40.76556,-73.97726,Private room,375,1,0,,,1,0 +29881712,Home Away from Home - Manhattan,210112096,Genevieve,Manhattan,East Harlem,40.7901,-73.94111,Private room,74,2,32,2019-06-27,3.98,1,195 +29881973,Small Full Sized Bedroom in Historic Manhattan,223715716,James,Manhattan,Harlem,40.82424,-73.93753,Private room,35,7,1,2019-06-17,1,1,0 +29883798,⏩ It's Always Sunny At The Bleu Hauz ⏪,106335321,Dev,Brooklyn,Crown Heights,40.67117,-73.95653,Entire home/apt,110,2,29,2019-07-02,7.70,1,19 +29883990,South Williamsburg Room,152457143,Carly,Brooklyn,Williamsburg,40.70956,-73.95305,Private room,65,2,9,2019-06-17,1.15,1,0 +29884003,Great Room next to Empire State Building w/ROOFTOP,11907194,Thomas,Manhattan,Midtown,40.74992,-73.98772,Private room,110,2,8,2019-07-07,1.06,1,0 +29884121,~ pure BLISS among CITY turmoil ~,224731704,Andrew,Manhattan,Hell's Kitchen,40.76505,-73.98919,Private room,129,1,11,2019-06-20,1.37,3,177 +29884334,"Clean , Safe, Cozy 3min to JFK , LGA Best Value",223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66199,-73.772,Private room,59,1,73,2019-07-01,9.09,3,340 +29884367,Luxury & safe and close to everything in NYC,109583232,Lidor,Queens,Long Island City,40.75074,-73.94206,Entire home/apt,150,13,4,2019-02-01,0.64,1,121 +29884497,~ cosy DWELLING for NYC MIDTOWN explorers ~,224731704,Andrew,Manhattan,Hell's Kitchen,40.76516,-73.9888,Private room,129,1,11,2019-06-30,1.58,3,177 +29884848,private room for WOMEN ONLY near BX Little Italy,149306690,Kelcie,Bronx,Belmont,40.85504,-73.88394,Private room,24,1,4,2019-06-24,0.52,1,0 +29884872,Cozy Room in Astoria,224735872,Diana,Queens,Long Island City,40.75406,-73.92095,Shared room,40,3,1,2018-11-26,0.13,1,178 +29885196,Airy Brooklyn Limestone: 2 bedroom suite,3393434,Billye And Joe,Brooklyn,Crown Heights,40.67133,-73.94631,Private room,349,3,4,2019-04-22,0.56,2,89 +29885604,Magic Waters Parlor Apartment,224241313,Bonnie,Brooklyn,Bedford-Stuyvesant,40.68336,-73.92144,Entire home/apt,250,2,6,2019-05-23,0.85,1,179 +29885663,Powell Victorian,42210223,Mimi,Brooklyn,Flatbush,40.63616,-73.95594,Private room,120,2,0,,,1,83 +29885929,Private room 3 - mins from Central Park / CU,17822256,Anna & Frank,Manhattan,Harlem,40.80114,-73.95696,Private room,90,2,32,2019-06-20,4.02,4,147 +29886141,BK Getaway:Private bath/bed/balcony near Barclays!,20321004,Sara,Brooklyn,Clinton Hill,40.68272,-73.96675,Private room,125,1,33,2019-06-24,4.34,1,0 +29889800,Large private room overlooking the skyline,16152090,Amna,Manhattan,Roosevelt Island,40.76414,-73.949,Private room,175,4,3,2019-04-27,0.43,2,362 +29891697,Studio in Gramercy/East Village! #10309,20453005,Vin,Manhattan,Gramercy,40.73687,-73.98668,Entire home/apt,165,7,9,2019-05-18,1.27,1,0 +29893519,the Perfect LES studio,174797199,Thaw Dar,Manhattan,Lower East Side,40.72207,-73.98726,Entire home/apt,99,1,11,2019-01-22,1.46,1,0 +29895573,★Roof views/Quick to Times Sq/NY Presby/Columbia ★,22388757,Jordan,Manhattan,Washington Heights,40.85114,-73.93754,Private room,55,2,6,2019-06-30,2.07,2,169 +29896132,"Spacious 1 bedroom in Flatbush, Brooklyn, NY.",107090465,Linwood,Brooklyn,East Flatbush,40.63835,-73.94621,Entire home/apt,125,3,2,2019-05-10,0.61,1,170 +29897019,Bright and spacious townhouse apartment in Soho,224808776,Pietro,Manhattan,Greenwich Village,40.72841,-74.00045,Entire home/apt,300,4,28,2019-07-01,3.82,1,217 +29897123,Entire Cozy Apt in Brooklyn - 20 mins to Manhattan,218959287,George,Brooklyn,Crown Heights,40.67355,-73.94567,Entire home/apt,100,2,0,,,1,0 +29897802,Chic and Cozy West Village 1 Bedroom Home,7271048,Dana,Manhattan,Greenwich Village,40.72953,-73.99978,Entire home/apt,225,3,8,2019-05-19,1.11,1,357 +29897911,NY HUDSON RIVER DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.755,-73.99784,Private room,249,1,6,2019-06-23,1.06,8,87 +29898413,Cozy Room for the Holidays in Brooklyn,155200301,Andy,Brooklyn,Bedford-Stuyvesant,40.68536,-73.92222,Private room,37,18,2,2019-01-15,0.33,2,341 +29898471,Modern 2 bedroom 2 bath with stunning park views,224806557,Daniel,Brooklyn,Williamsburg,40.72084,-73.9554,Entire home/apt,295,2,4,2019-01-01,0.58,1,0 +29898560,Beautiful apartment in Cobble Hill (Brooklyn),9488139,Eric,Brooklyn,Carroll Gardens,40.68425,-73.99464,Entire home/apt,200,1,0,,,1,250 +29898985,Artist Quarters spacious common room. Near subway,162283008,Daniel,Brooklyn,Bedford-Stuyvesant,40.6837,-73.94199,Private room,43,3,5,2019-04-24,0.79,1,0 +29899434,Very Private One Bedroom Apt near NYU in Manhattan,224825910,Dee,Manhattan,Kips Bay,40.74273,-73.97998,Entire home/apt,100,1,5,2019-01-19,0.64,1,0 +29899574,Great penthouse in the heart of Downtown,224827088,Valentyn,Manhattan,Financial District,40.70421,-74.00962,Entire home/apt,520,4,8,2019-07-01,1.19,1,38 +29899704,New York Cozy Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73147,-73.95209,Private room,119,1,1,2019-01-05,0.16,33,365 +29900235,"Cozy Manhattan Room, 15 minutes to Times Square",99511145,Nichole,Manhattan,Harlem,40.80646,-73.94829,Private room,45,4,19,2019-07-06,2.54,2,10 +29900395,Your Manhattan Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73214,-73.95511,Private room,119,1,0,,,33,365 +29900575,Cozy private room close to Times Square 33C1,190921808,John,Manhattan,Hell's Kitchen,40.75511,-73.99532,Private room,75,7,4,2019-06-01,0.59,47,365 +29900755,Your Manhattan Home: 12 mins to NYC,213781715,Anting,Brooklyn,Greenpoint,40.73394,-73.95154,Private room,119,1,2,2019-06-24,0.32,33,1 +29900966,Landmark Brooklyn Brownstone 35 min from Midtown,65747874,Eric,Brooklyn,Crown Heights,40.67424,-73.94098,Entire home/apt,137,2,21,2019-07-06,2.78,2,63 +29901006,"Spacious, bright apt in the heart of Williamsburg",212328883,Patryk,Brooklyn,Williamsburg,40.71719,-73.95757,Entire home/apt,148,2,39,2019-06-10,5.00,1,34 +29902392,NYC Home in the Heart of Harlem,51746762,Taylor,Manhattan,Harlem,40.82315,-73.94094,Entire home/apt,75,2,0,,,1,2 +29902562,Beautiful Basement Apartment,8830191,Hd,Brooklyn,Flatbush,40.64169,-73.95398,Entire home/apt,40,2,2,2019-07-01,2,1,57 +29902956,#Private Room & Bath 30 min to Wall st NYC,224850313,Roman,Brooklyn,Sheepshead Bay,40.58723,-73.94305,Private room,59,6,15,2019-05-17,1.86,2,147 +29903363,Huge Sunny Bedroom 1min from Central Park!,96647029,Maxi,Manhattan,Upper West Side,40.79481,-73.96437,Private room,84,6,3,2019-03-31,0.37,1,6 +29903897,Spacious room with a double bed in heart of BK,222581357,Stella,Brooklyn,Bushwick,40.69243,-73.91528,Private room,50,30,51,2019-06-10,6.32,3,227 +29904305,Comfy room with a sunroof in the heart of BK!,222581357,Stella,Brooklyn,Bushwick,40.69202,-73.91487,Private room,46,30,29,2019-07-03,3.60,3,246 +29904478,Cozy room in the heart of Bushwick,222581357,Stella,Brooklyn,Bushwick,40.69276,-73.91465,Private room,35,30,31,2019-07-07,3.94,3,316 +29904741,Interfaith Retreats (St. Francis),16677326,Alex And Zeena,Manhattan,Chelsea,40.74942,-73.99593,Private room,85,1,23,2019-06-05,3.18,12,362 +29905117,Great Master Bedroom - Like 5 Stars Hotel,224859583,Marvin,Bronx,Morrisania,40.83213,-73.90736,Private room,50,6,0,,,1,179 +29905155,Beautiful Cobble Hill Waterfront Garden Apartment,201940587,Paul And Gia,Brooklyn,Columbia St,40.68786,-74.00066,Entire home/apt,130,2,17,2019-06-29,4.55,1,9 +29905327,Coney İsland beach,224867226,İlyas,Brooklyn,Coney Island,40.57729,-73.98728,Entire home/apt,101,5,2,2019-06-19,0.26,1,323 +29905956,Full Comfortable Queens Apartment,4283610,Rachel,Queens,Glendale,40.70202,-73.89044,Entire home/apt,114,3,9,2019-06-04,1.53,1,3 +29906233,BRONX SUNNY CLEAN ROOM,224874182,Norman,Bronx,Parkchester,40.83872,-73.87149,Shared room,45,7,0,,,1,280 +29906273,Adorable Chelsea Studio in best neighborhood!,53443367,Kathryn,Manhattan,Chelsea,40.74333,-74.00106,Entire home/apt,175,1,8,2019-06-16,1.22,1,0 +29906282,Full apt for 6 in a conveniently located area,67480949,Dawa & Phurpa,Queens,Jackson Heights,40.75478,-73.88786,Entire home/apt,105,1,28,2019-06-28,3.85,1,113 +29906659,Quite spotless private room in Queens,224877731,Liam,Queens,Elmhurst,40.74278,-73.88069,Private room,63,2,2,2019-06-01,1.15,1,365 +29907089,Clean and Cozy 1Bedroom near LGA,174976495,Jorge,Queens,College Point,40.78497,-73.85754,Private room,45,1,7,2019-01-05,0.88,1,0 +29907701,5 Minutes Walking Distance to Subway Station #2,108618132,Elizabeth,Brooklyn,Bensonhurst,40.61519,-74.00398,Private room,39,2,13,2019-06-23,1.64,4,236 +29907751,Best Location Sun Filled West Village Townhome,72420514,Cate,Manhattan,West Village,40.73646,-74.00761,Entire home/apt,165,1,6,2019-06-24,0.76,3,215 +29907852,Plantation House,224885898,Thomas,Brooklyn,Bedford-Stuyvesant,40.68135,-73.92122,Entire home/apt,125,3,10,2019-07-01,1.60,1,361 +29908325,"12 minutes from JFK, private room and bath.",212899703,Ms. Debra,Queens,Jamaica,40.67903,-73.76535,Private room,83,2,2,2019-04-15,0.27,3,322 +29909077,Gorgeous Room with private bath in Crown Heights,224892300,Jose,Brooklyn,East Flatbush,40.6614,-73.93867,Private room,110,2,3,2018-12-31,0.38,1,176 +29909672,"Beautiful, comfy full 1BR in the heart of Chelsea",851736,Mj,Manhattan,Chelsea,40.74741,-74.00213,Entire home/apt,250,7,4,2019-06-23,0.62,1,8 +29909820,203 Cozy Clean Private Bedroom,224900182,Jeremy,Queens,Flushing,40.7559,-73.80427,Private room,55,1,29,2019-06-23,3.87,1,362 +29916697,INQUIRY ONLY FOR HOTEL ROOM TO 2 BEDROOMS NEAR UN,189734742,James,Manhattan,Midtown,40.75284,-73.9717,Private room,314,2,0,,,2,266 +29917467,The Castelo,38092082,Barry,Brooklyn,Bushwick,40.68844,-73.91486,Private room,60,1,0,,,1,71 +29917648,Perfect Studio apartment in heart of Sheepsheadbay,9059810,Vlad,Brooklyn,Midwood,40.61429,-73.94779,Entire home/apt,88,2,0,,,3,89 +29918219,Soho Gem | 2 Bedroom 2 Bath Flat,223893932,Tyler & Lacey,Manhattan,SoHo,40.72557,-74.0019,Entire home/apt,399,1,18,2019-06-27,3.91,1,248 +29920153,2 bedroom in Astoria Queens 20 minutes to NYC,222421079,Maria,Queens,Long Island City,40.7615,-73.94323,Entire home/apt,455,2,0,,,1,83 +29920808,Nice and spacious 1-bedroom apartment in Astoria,182313432,Laura,Queens,Astoria,40.76635,-73.90812,Entire home/apt,100,5,2,2019-06-11,0.32,1,40 +29921529,E. Village 1-Bedroom,224974185,Christine,Manhattan,East Village,40.72867,-73.98593,Entire home/apt,175,3,8,2019-05-25,1.21,1,66 +29921568,"Sunny/Quiet/Clean/Zen, in Central Location!",42295490,C-S,Manhattan,Chinatown,40.71655,-73.99537,Private room,68,30,4,2019-05-29,0.64,2,0 +29921569,Peaceful Williamsburg Garden Duplex,224972774,Lisa And Jorge,Brooklyn,Williamsburg,40.71518,-73.95777,Entire home/apt,300,3,6,2019-06-05,0.85,1,128 +29922910,Private Bedroom in stylish Artists Loft,39243102,Daniela,Brooklyn,Columbia St,40.68784,-74.00242,Private room,200,1,0,,,1,89 +29922930,"New york Doorman building, 4 elevators and balcony",64802660,David,Manhattan,Midtown,40.76599,-73.9826,Entire home/apt,175,184,0,,,2,0 +29923182,$250.,1611747,Travis,Manhattan,Lower East Side,40.71341,-73.98981,Entire home/apt,250,1,1,2018-11-13,0.13,1,0 +29923198,New york doorman building with private balcony,64802660,David,Manhattan,Midtown,40.76495,-73.98313,Entire home/apt,175,153,0,,,2,295 +29923252,ONE Bed Room →→→20mins to Manhattan ☆彡 Wow! COZY!,43044876,Haruhisa,Queens,Woodside,40.74824,-73.89961,Private room,30,29,1,2019-04-01,0.30,5,1 +29923522,Beautiful Corner King Room in NYC,220229838,Chamber Hotel,Manhattan,Midtown,40.76402,-73.97453,Private room,233,2,0,,,11,207 +29923537,Beautiful Deluxe King Room in NYC,220229838,Chamber Hotel,Manhattan,Midtown,40.76232,-73.97512,Private room,233,2,0,,,11,213 +29923555,Studio Suite | Luxury Suite | Near Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76344,-73.97447,Private room,590,2,0,,,11,162 +29923582,Elegant Duplex Suite in Manhattan -Private Terrace,220229838,Chamber Hotel,Manhattan,Midtown,40.76219,-73.97646,Private room,913,2,0,,,11,143 +29923599,Studio Double | 2 Full Size Beds,220229838,Chamber Hotel,Manhattan,Midtown,40.76197,-73.97562,Entire home/apt,276,2,0,,,11,173 +29923618,Modern 3 Bedroom with Private Backyard,224987632,Daisy,Manhattan,Lower East Side,40.71992,-73.98472,Entire home/apt,550,3,50,2019-07-07,6.67,1,199 +29923619,Studio King Room | Your NYC Getaway,220229838,Chamber Hotel,Manhattan,Midtown,40.76194,-73.97459,Entire home/apt,276,2,0,,,11,206 +29923634,Studio King Room | 5th Ave | Full Sofabed,220229838,Chamber Hotel,Manhattan,Midtown,40.76239,-73.97444,Entire home/apt,276,2,1,2019-06-18,1,11,192 +29923654,Deluxe Suite ~ Near Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76201,-73.97635,Entire home/apt,505,2,0,,,11,152 +29923660,Luxury waterfront apartment- 1 stop from Manhattan,30909338,Andrew,Brooklyn,Williamsburg,40.71934,-73.96136,Entire home/apt,162,5,3,2019-06-04,0.51,1,5 +29923677,Shop 5th Ave + Explore Central Park,220229838,Chamber Hotel,Manhattan,Midtown,40.76324,-73.97515,Private room,233,2,0,,,11,163 +29923697,Terrace Suite| Semi-Private Terrace | Full Sofabed,220229838,Chamber Hotel,Manhattan,Midtown,40.76184,-73.97605,Entire home/apt,718,2,0,,,11,199 +29923760,Lovely BRIGHT apt in Ft. Hamilton Brooklyn,186701037,Gabriela,Brooklyn,Dyker Heights,40.62827,-74.01078,Shared room,39,5,1,2019-06-01,0.77,2,89 +29924001,"Spacious 1-Bedroom in Brooklyn, PLG",94646666,Ben,Brooklyn,Prospect-Lefferts Gardens,40.65897,-73.94163,Entire home/apt,70,1,7,2019-06-15,0.93,1,0 +29924285,Private Apt Manhattan Upper East 12min CentralPark,224994472,Juan C,Manhattan,East Harlem,40.79074,-73.94276,Entire home/apt,140,2,31,2019-07-02,4.13,1,272 +29925332,Welcome / Brand new Beautiful 1BR / best location,1475015,Mike,Manhattan,Kips Bay,40.74306,-73.97843,Entire home/apt,87,30,0,,,52,365 +29926001,Room next to Central Park,158970615,Lia,Manhattan,Upper East Side,40.76464,-73.9593,Private room,115,1,54,2019-05-27,7.47,1,0 +29926808,Bedroom in Queens,89902143,Jose,Queens,Jackson Heights,40.75398,-73.86161,Private room,100,7,0,,,2,0 +29927091,Designer apartment in historic Brooklyn brownstone,2594243,Rachael,Brooklyn,Prospect Heights,40.67817,-73.97152,Entire home/apt,200,3,1,2018-12-04,0.14,2,188 +29927138,A great space in NYC,158461160,Sophia,Brooklyn,Bedford-Stuyvesant,40.68062,-73.94418,Entire home/apt,62,30,1,2019-05-31,0.75,6,284 +29928467,Entire Studio Available in cultural Astoria,16152090,Amna,Queens,Astoria,40.76147,-73.92549,Entire home/apt,250,3,0,,,2,0 +29928630,Punjabi House,225025900,Jas,Queens,Ditmars Steinway,40.77689,-73.9073,Private room,60,1,3,2019-07-05,2.43,2,363 +29929095,"Spacious studio by the LIRR, Q3-Q85 to JFK, trains",206229239,Mamadou,Queens,Jamaica,40.67748,-73.76376,Entire home/apt,100,1,12,2019-02-17,1.69,1,161 +29929331,“TIME SQUARE” 43rd street SINGLE BED,30985759,Taz,Manhattan,Hell's Kitchen,40.75964,-73.99002,Shared room,70,1,59,2019-07-04,7.47,6,314 +29929702,"""The Spot""",225033890,Dwain,Brooklyn,East New York,40.66577,-73.887,Entire home/apt,140,2,27,2019-06-23,3.68,1,201 +29930623,"Cozy, lofted room in Bushwick",91040009,Kayla,Brooklyn,Bushwick,40.69368,-73.92539,Private room,44,1,31,2019-06-26,4.25,1,172 +29930787,Clean Well-Lit NY Room. WiFi & Utilities Included,137358866,Kazuya,Queens,Woodside,40.74484,-73.90959,Private room,40,30,0,,,103,93 +29931976,Hudson Yard - Bright Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75671,-73.99694,Private room,199,1,20,2019-06-04,2.49,30,359 +29935981,Fully renovated historic district townhouse,1902578,Matt,Brooklyn,Greenpoint,40.72864,-73.95641,Entire home/apt,475,4,3,2019-06-25,0.47,1,354 +29936213,"Spacious, Sunny, and Boutique Condo for Catlovers",1103289,Berk,Brooklyn,Williamsburg,40.71201,-73.94967,Entire home/apt,94,6,4,2019-06-02,0.57,1,11 +29936587,Bright and stylish bedroom 20min from Times Square,140930693,Max And Kathy,Bronx,Mott Haven,40.81167,-73.92729,Private room,55,1,38,2019-06-21,4.75,2,301 +29937451,Barrett ‘s Family home,120245209,Heidi,Brooklyn,Canarsie,40.63642,-73.89532,Private room,50,1,6,2019-05-24,0.77,2,281 +29937893,Industrial duplex with river and Manhattan views,1476599,Margaux,Brooklyn,Williamsburg,40.71545,-73.96344,Entire home/apt,300,4,2,2019-04-24,0.32,1,28 +29937919,Harlem Heights Double Suites,39174150,Keanna,Manhattan,Harlem,40.82528,-73.95313,Private room,215,2,3,2019-05-06,0.42,3,91 +29938457,Cozy 1 bedroom in the heart of Greenwich!,179570454,Derek,Manhattan,Greenwich Village,40.72878,-74.0016,Entire home/apt,165,7,2,2019-04-22,0.28,1,1 +29938894,Sunlit Private Bedroom in Bushwick Apartment,87568094,Victoria,Brooklyn,Bedford-Stuyvesant,40.69342,-73.9324,Private room,75,7,0,,,1,87 +29939030,Monthly One bedroom apt in Astoria,42213050,Jack,Queens,Long Island City,40.76243,-73.93044,Entire home/apt,113,25,0,,,1,177 +29939528,Comfortable living space,109854433,Careen,Brooklyn,Bedford-Stuyvesant,40.68777,-73.95378,Entire home/apt,99,30,2,2019-06-18,0.94,2,253 +29940344,Spacious Park Avenue (Website hidden by Airbnb) -2-Month lease,1678050,Liam,Manhattan,Murray Hill,40.74938,-73.9802,Entire home/apt,200,60,2,2019-01-02,0.29,2,0 +29940771,COMFORTABLE BEDROOM FOR LONG TERM,3229770,Luis,Queens,Sunnyside,40.73695,-73.92376,Private room,69,5,4,2019-03-31,0.53,4,280 +29941633,Yogin's Paradise,3218399,Christian,Brooklyn,Park Slope,40.67534,-73.97332,Entire home/apt,150,10,1,2019-02-16,0.21,1,264 +29942196,#1 Modern Gem 2br apt..(Street parking available),224715959,Ernesto,Queens,Jackson Heights,40.75355,-73.89221,Entire home/apt,170,2,10,2019-06-28,1.55,1,346 +29942679,Cozy 1 Bedroom in Prospect Park South,3429147,Karl,Brooklyn,Flatbush,40.65092,-73.9632,Entire home/apt,120,3,2,2019-05-04,0.61,1,31 +29942901,"2 Beds apt, walk to Central Park and time square",215786346,Marina,Manhattan,Upper East Side,40.76544,-73.9585,Entire home/apt,380,3,4,2019-06-24,0.51,1,156 +29943061,Sunlit Private 1BR Suite w/Kitchen/Bath @A/C Lines,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67961,-73.92461,Entire home/apt,120,3,11,2019-06-30,1.47,3,71 +29943391,Cozy tiny bedroom w/large living-room & kitchen.,221940893,Sara,Brooklyn,Kensington,40.6359,-73.97105,Private room,34,2,24,2019-06-25,3.16,3,204 +29943455,Cozy and Nice room in Queens! good subway access!,200239515,Shogo,Queens,Woodside,40.74287,-73.89439,Private room,32,28,3,2019-06-01,0.47,15,0 +29943543,Brooklyn Loft with a Musical Soul,61297139,Ed,Brooklyn,Williamsburg,40.70469,-73.93878,Private room,135,1,14,2019-06-30,1.98,1,355 +29943700,Cozy One Bedroom in the Heart of Fort Greene,17871320,Carly,Brooklyn,Fort Greene,40.68701,-73.97457,Entire home/apt,150,3,16,2019-07-07,2.26,1,66 +29943824,"Perfect family retreat for New York City ,Bushwick",23400523,Thomas,Queens,Ridgewood,40.71194,-73.91414,Entire home/apt,200,3,9,2019-06-22,1.19,1,273 +29943909,Cozy and spacious room in the heart of NYC❤️,168184878,Daria,Manhattan,Hell's Kitchen,40.76423,-73.98891,Private room,145,2,12,2019-06-06,1.59,1,37 +29944557,Chic and Stylish apartment in Central Harlem,60152095,Sharon,Manhattan,Harlem,40.81022,-73.94547,Entire home/apt,132,2,18,2019-06-20,2.32,1,123 +29944625,Cozy King Sized Apt In NYC (Harlem),225139503,Tracy,Manhattan,East Harlem,40.8055,-73.93653,Entire home/apt,250,1,7,2019-07-01,0.90,1,78 +29944850,Female Roommate Needed for 5 months!,29277084,Kiran,Manhattan,Washington Heights,40.84353,-73.94072,Private room,50,180,0,,,1,90 +29945246,Lovely Furnished Studio Chelsea,224489730,Rachel,Manhattan,Chelsea,40.74419,-74.00067,Entire home/apt,125,30,2,2019-03-05,0.32,2,67 +29945283,Beautiful spacious bedroom in classic nyc walkup,2315692,Hugo,Queens,Ridgewood,40.70356,-73.90241,Private room,75,2,2,2019-05-20,0.32,1,52 +29945516,Bright Beautiful 4BDRM Triplex Loft Best Area,69695606,Vee,Manhattan,Lower East Side,40.7184,-73.98719,Entire home/apt,692,1,33,2019-06-22,4.36,1,256 +29945765,GREAT FURNISHED BEDROOM FOR LONG STAY,3229770,Luis,Queens,Long Island City,40.73511,-73.92488,Private room,79,5,1,2019-01-03,0.16,4,315 +29945767,Cozy home away from home,9804005,Jean Charles,Brooklyn,Bedford-Stuyvesant,40.68931,-73.94041,Entire home/apt,95,2,1,2018-12-25,0.15,1,8 +29945987,Spacious Apartment near Empire State Building,225150700,Victor,Manhattan,Midtown,40.74563,-73.98342,Entire home/apt,300,1,14,2019-05-07,1.92,1,5 +29946074,Cuarto en Queens,89902143,Jose,Queens,Jackson Heights,40.75457,-73.86162,Private room,100,7,0,,,2,179 +29946107,"Spacious, sun-filled apartment in family townhome",3662048,Daphne,Brooklyn,Carroll Gardens,40.67948,-73.99531,Entire home/apt,147,6,14,2019-06-21,1.84,1,14 +29946644,Bedroom for 2 Guests,48196322,Jose,Manhattan,Washington Heights,40.85359,-73.92982,Private room,35,1,34,2019-06-23,4.25,1,4 +29946757,COZY ONE BEDROOM IN BROOKLYN,4170464,Sonia,Brooklyn,Bedford-Stuyvesant,40.68901,-73.92826,Private room,125,7,0,,,1,363 +29947091,Cozy Private Bedroom in Harlem (WOMEN ONLY),29010692,Josephine,Manhattan,East Harlem,40.79768,-73.93455,Private room,40,2,2,2019-01-01,0.26,1,0 +29947398,Private Room w/ a 5 min walk to train!,105248014,Kevin,Brooklyn,East Flatbush,40.64608,-73.94738,Private room,80,1,71,2019-07-07,8.99,2,35 +29948187,MidTown Heights,77103886,Dorah,Manhattan,Hell's Kitchen,40.75922,-73.9969,Private room,105,1,10,2019-07-01,1.28,1,191 +29948786,2BR / 2BA - Sleeps 6!,8618782,Anthony,Manhattan,Harlem,40.8063,-73.9558,Entire home/apt,350,3,1,2019-01-01,0.16,1,5 +29955067,"CITY LINE, HALF BROOKLYN /QUEENS COZY CORNER",128162460,Winston,Brooklyn,East New York,40.67037,-73.85899,Private room,90,3,0,,,1,180 +29955544,Magnificent Loft with a Skyline view,4538731,Francois,Brooklyn,Greenpoint,40.73039,-73.95434,Entire home/apt,270,7,2,2019-04-15,0.32,1,20 +29956272,"Charming and quiet bedroom in Greenpoint, Brooklyn",46393811,Ondine,Brooklyn,Greenpoint,40.73123,-73.95664,Private room,80,5,1,2018-12-29,0.16,1,22 +29956865,Furnished room in Crown Heights Brooklyn,34514781,Caroline,Brooklyn,Crown Heights,40.67442,-73.95165,Private room,50,7,1,2018-12-17,0.15,1,0 +29957016,Comfy Boerum Hill apartment - great for families,14517154,Jaime,Brooklyn,Boerum Hill,40.68589,-73.98543,Entire home/apt,300,2,1,2018-12-30,0.16,1,0 +29957585,Jewel Street Apartment 2 Bedroom,28071452,Douglas,Brooklyn,Greenpoint,40.72744,-73.94673,Entire home/apt,195,3,12,2019-06-25,1.71,1,112 +29957848,Beautiful UWS Apt. \\ 4 mins from Central Park,74595855,Alon,Manhattan,Upper West Side,40.77951,-73.97765,Entire home/apt,200,5,3,2019-05-26,0.49,1,0 +29958350,Charming 2 bedroom west village penthouse!,12784820,Edouard,Manhattan,West Village,40.73649,-73.99927,Entire home/apt,400,3,3,2019-06-21,0.49,1,3 +29959104,Warm Spacious Bedroom in Historical Harlem!!!,225249198,Erica,Manhattan,Harlem,40.81927,-73.93886,Private room,200,1,8,2019-04-13,1.13,1,0 +29959489,NYC COZY 1 BD APT. W/ ELEVATOR NEAR SUBWAYS R & M,224619132,Adriana,Queens,Woodside,40.75507,-73.90741,Entire home/apt,80,3,4,2019-02-23,0.61,1,0 +29959581,East Harlem Modern & Luxurious Studio,225252724,Fabiola,Manhattan,East Harlem,40.79758,-73.93808,Entire home/apt,98,1,0,,,1,25 +29959810,Brooklyn Home With A View,151901555,Brad,Brooklyn,Williamsburg,40.71365,-73.93838,Entire home/apt,150,4,2,2019-01-01,0.25,1,1 +29960469,For Cat Lovers only: Quiet and Calm above subway.,7230698,Megan,Manhattan,Harlem,40.82687,-73.94364,Entire home/apt,90,6,3,2019-05-08,0.46,2,108 +29960687,Upper West Side Apartment near Central Park,225261197,Sunny,Manhattan,Upper West Side,40.78413,-73.97451,Private room,100,1,75,2019-07-06,9.62,2,248 +29961517,Central Park is Next Door ;),2653479,Brian,Manhattan,Upper West Side,40.80004,-73.96088,Private room,50,2,30,2019-07-01,4.81,4,6 +29962534,Central Park Is Across The Street,2653479,Brian,Manhattan,Upper West Side,40.80043,-73.95859,Private room,50,2,31,2019-07-07,4.84,4,112 +29962755,Beautiful Room 30 minutes to Manhattan,225277393,Jenny,Bronx,Kingsbridge,40.87,-73.90129,Private room,39,4,33,2019-06-24,4.36,1,86 +29962965,Dyckman Delight - Upscale Apartment Uptown,3230788,Nicholas,Manhattan,Inwood,40.86268,-73.9238,Entire home/apt,200,2,22,2019-06-30,2.83,1,283 +29963179,Direct Central Park View from 6th floor Studio,38774068,C,Manhattan,Upper West Side,40.79655,-73.96285,Entire home/apt,98,30,0,,,1,359 +29963540,"Bushwick, Prvt Room/Prvt Bath, 20mins to Manhattan",52357574,Mitch,Brooklyn,Bushwick,40.6988,-73.91388,Private room,85,1,2,2018-12-23,0.27,1,0 +29963575,VAL'S PLACE,225283096,Valentine,Queens,Rosedale,40.65567,-73.73076,Private room,65,1,45,2019-06-16,6.75,1,277 +29963810,Beautiful and comfy Private bed/bath in Manhattan!,145252418,Claudio,Manhattan,East Harlem,40.80612,-73.93627,Private room,120,1,20,2019-07-01,6.00,3,357 +29964046,Bohemian Brownstone,70431576,Hypatia,Brooklyn,Bedford-Stuyvesant,40.68515,-73.93255,Entire home/apt,64,2,7,2019-01-30,0.92,1,6 +29964050,"XL 1bed, 2bath duplex, w. yard, 1 block to subway",128230715,Reid,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94795,Entire home/apt,200,3,1,2019-05-27,0.68,1,11 +29964348,NYC HOLIDAY!!!! April 15- May 15,2039658,Pam,Manhattan,Upper East Side,40.76519,-73.96874,Entire home/apt,3600,31,0,,,1,358 +29964470,2 Bedroom Bushwick Apartment,1093220,Chavisa,Brooklyn,Bushwick,40.70328,-73.92474,Entire home/apt,100,5,1,2018-12-28,0.16,3,0 +29964495,Brooklyn 2 bedroom apartment for pet lovers,4980714,Caitlin,Brooklyn,Sunset Park,40.66006,-73.99161,Entire home/apt,100,4,1,2019-01-01,0.16,1,0 +29964510,"Private&comfortable bedroom. +Williamsburg Brooklyn",225291555,Daniela,Brooklyn,Williamsburg,40.71101,-73.93613,Private room,105,2,2,2018-12-09,0.28,2,148 +29964754,NYC Room and Balcony. Walk to Forest Hills Stadium,22175061,Suket,Queens,Forest Hills,40.72104,-73.85391,Private room,89,2,13,2019-06-30,1.73,2,24 +29965041,Nice room to rent at Midtown Manhattan,7898626,Rémi,Manhattan,Midtown,40.75652,-73.96859,Private room,100,2,8,2019-05-05,1.09,1,6 +29965101,Large Private Space in Ideal Location,20287320,Konah,Brooklyn,Fort Greene,40.69306,-73.97084,Private room,80,2,14,2019-04-20,1.86,1,189 +29965481,Cottage by the Water,116995217,Jonathan,Queens,Howard Beach,40.65628,-73.83172,Entire home/apt,220,2,58,2019-07-06,7.53,1,144 +29965497,Entire 3 FL apartment close to Subway,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69321,-73.93835,Entire home/apt,139,1,23,2019-06-16,2.97,9,238 +29965528,1 Bedroom by Central Park - Great Location in NYC,76519640,Alissa,Manhattan,Harlem,40.79965,-73.95076,Private room,75,2,29,2019-06-12,3.73,1,2 +29965839,Entire 1BR Apt in FiDi close to Everything!,54689007,Ana,Manhattan,Financial District,40.70903,-74.00596,Entire home/apt,165,20,0,,,3,53 +29965956,Cozy Apartment near Central Park,225261197,Sunny,Manhattan,Upper West Side,40.7857,-73.97459,Private room,90,1,35,2019-07-05,7.24,2,261 +29965995,LUXURY 3BDRM 1BTH Sleeps 10PPL 25 min to Manhattan,62836981,Youssef,Queens,Astoria,40.77403,-73.92213,Entire home/apt,299,2,9,2019-06-20,1.60,1,354 +29966192,The Cozy Place,221442773,Carlos & Vielca,Bronx,Pelham Bay,40.84391,-73.83171,Entire home/apt,99,2,8,2019-01-01,1.05,1,360 +29966514,ChinitaBhost QUEENS,225307360,Cris,Queens,Woodhaven,40.68706,-73.8645,Private room,45,2,3,2019-06-07,1.50,1,47 +29966643,RUSTIC/MODERN/EV/NYC,5523186,Mark,Manhattan,East Village,40.73042,-73.98491,Entire home/apt,750,3,0,,,2,179 +29966943,Your Home Away From Home,225309985,Ashley,Bronx,Fordham,40.8689,-73.88552,Entire home/apt,98,2,30,2019-05-24,4.46,1,327 +29967433,Dulce hogar,225313172,Luis,Manhattan,Washington Heights,40.83175,-73.94052,Private room,50,2,9,2019-07-03,1.45,1,170 +29967445,Cozy Studio NYC getaway,83650675,Nikki,Manhattan,Harlem,40.81662,-73.93687,Entire home/apt,75,1,10,2019-06-30,1.42,1,361 +29967691,Greenwich Village 1-Bedroom,202183338,Amanda,Manhattan,Greenwich Village,40.72871,-74.00009,Entire home/apt,250,2,4,2018-12-16,0.55,1,0 +29967770,"Cottage in the City - 2 bedroom, 2 bath DUMBO",1126015,Patricia,Brooklyn,DUMBO,40.70321,-73.98488,Entire home/apt,150,3,3,2019-03-21,0.40,1,7 +29968356,Private STUDIO in Central Park | TIMES SQUARE,102287310,Vera,Manhattan,Midtown,40.76477,-73.97592,Entire home/apt,199,3,7,2019-06-18,1.59,3,358 +29968478,Studio in Forest Hills near public transportation.,78110875,Gabriel,Queens,Forest Hills,40.73134,-73.8521,Entire home/apt,175,2,6,2019-06-30,0.93,1,168 +29970723,Habitación privada en Brooklyn.,115193518,Fede,Brooklyn,Bushwick,40.70557,-73.92445,Private room,42,1,2,2019-01-07,0.32,3,0 +29975548,NICE APARTMENT-TIME-SQUARE/CENTRAL PARK,186812508,Endy,Manhattan,Midtown,40.76651,-73.98289,Entire home/apt,201,2,33,2019-06-12,4.21,1,227 +29976484,Modern Apartment in the heart of Brooklyn,20857455,Wesley,Brooklyn,East Flatbush,40.65477,-73.95159,Entire home/apt,150,3,1,2018-12-31,0.16,1,0 +29977234,Waterfront Studio View of Manhattan,35468424,Carissa,Manhattan,Greenwich Village,40.72893,-73.99512,Entire home/apt,89,2,22,2019-07-05,2.83,1,11 +29978942,Marcus’s place,43434770,Marcus,Brooklyn,Bedford-Stuyvesant,40.69522,-73.94027,Private room,50,7,1,2019-04-19,0.37,1,0 +29979510,Landmarked 2bdrm near Fort Greene Park w deck,12211018,Bridget,Brooklyn,Clinton Hill,40.69116,-73.96538,Entire home/apt,170,2,3,2018-12-29,0.39,1,0 +29979969,Enormous beautiful apt in the heart Williamsburg,225390764,Manuel,Brooklyn,Williamsburg,40.7213,-73.95677,Entire home/apt,210,4,3,2019-06-02,0.44,1,4 +29980934,"Peaceful Apartment steps from Manhattan, Airports",35632450,Khalid,Queens,Woodside,40.74951,-73.90787,Entire home/apt,110,2,27,2019-07-05,4.38,1,137 +29981007,Brooklyn Luxury Apartment - Gorgeous 3 bedroom,139145066,Kerri-Ann,Brooklyn,East New York,40.67419,-73.88123,Entire home/apt,200,2,30,2019-07-05,3.85,2,76 +29981213,Broadway Triangle,83787104,John,Brooklyn,Williamsburg,40.70136,-73.94423,Private room,65,2,3,2019-02-28,0.59,1,89 +29981718,Beautiful Elite Penthouse,213781715,Anting,Manhattan,NoHo,40.72831,-73.99327,Entire home/apt,179,1,1,2019-05-17,0.57,33,348 +29981728,comfy apto :),38392972,Paula,Brooklyn,Bushwick,40.69869,-73.9124,Entire home/apt,82,3,3,2019-04-07,0.42,1,26 +29981890,MODERN & STYLISH HARLEM APARTMENT,224954032,Christina,Manhattan,East Harlem,40.8074,-73.93711,Entire home/apt,180,1,17,2019-07-02,2.38,1,334 +29982192,Boho chic brooklyn escape,8246221,Rana,Brooklyn,Prospect-Lefferts Gardens,40.66108,-73.94959,Entire home/apt,105,4,1,2019-01-03,0.16,1,0 +29982557,The House on Richardson: Entire Home w/ Rear Yard,197286,Vera,Brooklyn,Williamsburg,40.71841,-73.94343,Entire home/apt,174,2,27,2019-07-02,3.60,1,126 +29982568,Home 家,213781715,Anting,Brooklyn,Greenpoint,40.73306,-73.95353,Private room,119,1,0,,,33,365 +29982582,Sunny One-Bedroom Apartment in a Brownstone,32785325,Sam,Brooklyn,Bedford-Stuyvesant,40.68064,-73.94856,Entire home/apt,125,3,16,2019-06-22,2.21,1,4 +29982644,Don’t miss it! Cozy Space is Available in Queens!,129875945,Judit,Queens,Forest Hills,40.71694,-73.83442,Private room,100,2,3,2019-05-07,0.42,1,161 +29982941,Chelsea 1 BR in 4BR Penthouse Apt.,35699609,Lea,Manhattan,Flatiron District,40.74283,-73.99273,Private room,80,1,0,,,1,0 +29983341,Cute Hells Kitchen Apt. w Balcony,49745850,Alana,Manhattan,Hell's Kitchen,40.76192,-73.99698,Entire home/apt,400,3,14,2019-03-31,1.92,1,0 +29983505,Private Bedroom in Bushwick artist house,155923396,Kelly,Brooklyn,Bushwick,40.70113,-73.92893,Private room,45,3,4,2019-02-16,0.56,3,276 +29984118,BEAUTIFUL Brownstone Apt in Historic Ft. Greene,3422235,Julia,Brooklyn,Fort Greene,40.68946,-73.97279,Entire home/apt,270,3,1,2018-12-08,0.14,1,125 +29984457,粉色上房,190324721,Jun Jun,Queens,Flushing,40.75948,-73.8341,Private room,75,1,3,2019-06-16,0.39,4,75 +29984938,HUGE 1-Bedroom in Theater District,1428501,Michael,Manhattan,Hell's Kitchen,40.76356,-73.98772,Entire home/apt,241,3,8,2019-07-05,1.06,2,23 +29985591,Cozy Home,213781715,Anting,Brooklyn,Greenpoint,40.73259,-73.94977,Shared room,119,1,0,,,33,180 +29987114,Hamilton Heights - West Harlem Studio,15238188,Sally,Manhattan,Harlem,40.82437,-73.95177,Entire home/apt,95,1,51,2019-07-07,6.95,1,1 +29987700,"Spacious, sunny 1 bedroom on the Lower East Side",11729215,Daniela,Manhattan,Lower East Side,40.71391,-73.97747,Entire home/apt,225,2,1,2019-01-01,0.16,1,0 +29987801,Central Park Is Just Steps Away,2653479,Brian,Manhattan,Upper West Side,40.79821,-73.96058,Private room,70,2,33,2019-06-27,4.88,4,114 +29987867,Quietly cool uptown 1BD apartment,3874544,Justine,Manhattan,Harlem,40.82484,-73.95271,Entire home/apt,115,4,8,2019-06-01,1.06,1,0 +29988114,"Cute, quiet studio",96430287,Jay,Manhattan,West Village,40.73678,-74.00469,Entire home/apt,200,1,0,,,1,87 +29989236,Double Bed Private Room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69287,-73.9432,Private room,80,2,23,2019-03-07,2.94,4,257 +29989586,Cozy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59894,-73.75629,Private room,85,1,2,2019-06-09,0.38,4,362 +29989939,Ideally located downtown sanctuary,225456817,Dorsey,Manhattan,Lower East Side,40.71864,-73.9847,Entire home/apt,160,5,20,2019-07-01,2.70,1,0 +29990168,Brooklyn Awesomely Huge Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68633,-73.91413,Entire home/apt,85,30,3,2019-04-30,0.44,26,313 +29990344,Charming Brooklyn Apartment Next to Prospect Park,58069820,Michael,Brooklyn,Crown Heights,40.67244,-73.95992,Private room,75,2,45,2019-07-07,5.74,1,9 +29991534,Lovely room,179416315,Elizabeth,Bronx,Norwood,40.87064,-73.8797,Private room,60,1,9,2019-01-15,1.19,2,310 +29992271,Bright & Spacious Bushwick Bedroom,4024013,Dan,Brooklyn,Bushwick,40.69696,-73.93024,Private room,50,14,4,2019-06-25,1.21,1,129 +29993012,Beautiful Large Studio in the heart of Park Slope,23952383,Jean,Brooklyn,Park Slope,40.67117,-73.97836,Entire home/apt,75,29,1,2019-06-14,1,1,200 +29993540,Very Spacious Colorful Room Close to Manhattan,4666670,Jeanny,Queens,Astoria,40.76934,-73.91895,Private room,70,5,3,2019-05-22,0.38,4,90 +29994325,In The Heart of The City,41895575,Jack,Manhattan,Upper West Side,40.78196,-73.98283,Entire home/apt,400,2,2,2019-03-16,0.31,1,89 +29994632,"Beautiful Room in Manhattan, UWS",34614008,Kanchan,Manhattan,Harlem,40.82765,-73.94625,Private room,99,1,0,,,1,89 +29994675,Near 5 major trains in 1 subway station!,225489491,Ikwo,Brooklyn,Bedford-Stuyvesant,40.67773,-73.90865,Private room,40,2,4,2019-06-15,1.67,1,363 +29994978,Sunny garden studio minutes from Prospect Park,5794062,Grace,Brooklyn,Park Slope,40.67331,-73.97471,Entire home/apt,93,3,2,2019-06-23,0.46,1,5 +29995144,Home away from home 1,115741895,Damian,Queens,St. Albans,40.70275,-73.75043,Private room,70,2,3,2019-04-07,0.40,2,105 +29995154,"Conveniently-Located, Clean + Chic Rm. Hells Ktchn",4934489,Jessica,Manhattan,Hell's Kitchen,40.75989,-73.99227,Private room,85,2,1,2018-12-12,0.14,3,0 +29995362,"Hollis Cove - Queens 1BR Flat Near LGA & JFK, SJU",173990320,Molly & Justin,Queens,Hollis,40.71523,-73.76992,Entire home/apt,100,2,44,2019-07-01,5.55,1,310 +29995668,Cozy room in friendly & hip Bushwick near subway,8245652,Cazzie,Brooklyn,Bushwick,40.69658,-73.90968,Private room,60,1,6,2019-03-01,0.79,2,0 +29995977,Private room in two floor apartment w/ back yard,2458913,Richard,Brooklyn,Bushwick,40.70183,-73.92028,Private room,50,1,1,2018-11-13,0.13,1,66 +29996902,Hudson Yard - Lux King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75625,-73.99678,Private room,107,1,19,2019-05-26,2.50,30,156 +29998656,Cozy room in West Village,64583317,Ji Han,Manhattan,Greenwich Village,40.72863,-74.00125,Private room,43,5,3,2019-05-27,0.39,1,5 +29998952,Large Private Bedroom in Brownstone Apartment,225513415,Tresanna,Brooklyn,Bedford-Stuyvesant,40.69195,-73.93892,Private room,75,2,26,2019-06-27,3.66,2,21 +29999267,Private Room in Brownstone Apartment,225513415,Tresanna,Brooklyn,Bedford-Stuyvesant,40.69122,-73.93753,Private room,65,2,17,2019-06-24,2.48,2,21 +30002830,Bunk bed spot one block from subway,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67916,-73.9114,Shared room,24,1,11,2019-06-17,1.49,17,85 +30005374,Nice one bedroom well located,113805886,Yaacov,Manhattan,Upper East Side,40.77768,-73.95064,Entire home/apt,150,31,1,2019-03-21,0.27,33,338 +30006770,Sleek + Modern FiDi 1BR in Luxury Building by Blueground,107434423,Blueground,Manhattan,Financial District,40.70425,-74.00856,Entire home/apt,325,30,0,,,232,304 +30006781,Sunlit double story studio escape in Bed-Stuy!,225558132,Dana,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95483,Entire home/apt,135,2,5,2019-04-14,0.68,1,45 +30006962,"Sharp Wall Street 1BR w/ Gym, Doorman, Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70497,-74.00746,Entire home/apt,267,30,1,2019-03-20,0.27,232,189 +30006988,Brooklyn Home with Brick Walls and High Ceilings,19909719,Danny,Brooklyn,Greenpoint,40.72203,-73.94709,Entire home/apt,249,7,0,,,2,0 +30007128,Newly renovated apartment in Brooklyn Townhouse,157410883,Chiara,Brooklyn,Bushwick,40.69372,-73.92283,Entire home/apt,120,1,39,2019-06-22,5.27,1,196 +30007787,SUNNY STUDIO IN CHELSEA,4932419,Andrew,Manhattan,West Village,40.73836,-74.00128,Entire home/apt,130,8,6,2019-05-26,1.13,1,1 +30007850,Large and sunny 2 bedroom,225564897,Yassmina,Manhattan,Harlem,40.82358,-73.95178,Entire home/apt,300,2,0,,,1,32 +30007990,Harlem Brownstone Studio Apartment,225566189,Christian,Manhattan,Harlem,40.81804,-73.94375,Entire home/apt,100,2,2,2018-12-31,0.27,1,0 +30008659,East 44th st and 2nd Ave- Doorman Studio Gym 5218,16098958,Jeremy & Laura,Manhattan,Midtown,40.75125,-73.97105,Entire home/apt,145,30,0,,,96,0 +30009035,Sweet room on prime location,225571766,Ashraf,Queens,Jackson Heights,40.75068,-73.87739,Private room,80,2,5,2019-06-07,2.50,1,57 +30009546,Cozy Artist’s Apartment Bushwick,19874155,Ciara,Brooklyn,Williamsburg,40.70245,-73.93603,Private room,75,1,4,2019-01-01,0.53,1,35 +30009701,Fast Commute - SUNNY PRIVATE ROOM in luxury BK,188949327,Criselis,Brooklyn,Bedford-Stuyvesant,40.68986,-73.9249,Private room,50,1,6,2019-04-29,1.00,1,0 +30010084,Very spacious 2 BR in Crown Heights,15823232,Nicolas,Brooklyn,Crown Heights,40.67812,-73.94618,Entire home/apt,129,3,30,2019-06-26,3.96,3,81 +30010324,New York Style one bed,113805886,Yaacov,Manhattan,Upper East Side,40.77919,-73.95182,Entire home/apt,150,31,7,2019-05-26,0.96,33,338 +30010380,Prime 2 bedW/3 beds! Doorman Laundry! 5232,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76735,-73.98524,Entire home/apt,275,30,0,,,96,325 +30010913,Minimalist Apartment Greenpoint / Williamsburg,67958710,Felipe,Brooklyn,Greenpoint,40.72424,-73.94984,Entire home/apt,100,6,0,,,1,0 +30011365,1 bed close to Park and subway,113805886,Yaacov,Manhattan,Upper East Side,40.77751,-73.95174,Entire home/apt,150,31,1,2019-05-25,0.67,33,338 +30011527,Cozy Duplex Studio 1 Minute to Subway,222236294,Kieu&Jimmy,Brooklyn,Bedford-Stuyvesant,40.68942,-73.95455,Entire home/apt,160,2,33,2019-07-03,4.65,1,246 +30012164,"Historic Gem in Beautiful Clinton Hill, Brooklyn",30466297,Jack,Brooklyn,Clinton Hill,40.68632,-73.96292,Entire home/apt,450,2,5,2019-07-05,0.66,1,11 +30012632,Lovely bedroom in prime Williamsburg,87167456,Hernan,Brooklyn,Greenpoint,40.71942,-73.95011,Private room,75,4,2,2018-12-08,0.26,1,0 +30013028,Beautiful boho-chic bedroom with private bathroom,225593905,Elyse,Brooklyn,Bushwick,40.69285,-73.92085,Private room,79,3,0,,,1,24 +30013315,New Bedroom in a nice apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66736,-73.99467,Private room,53,1,0,,,3,317 +30013811,Alexander,224711439,S Xander,Manhattan,Inwood,40.86414,-73.92537,Private room,50,3,1,2018-12-29,0.16,1,0 +30014004,Modern Brooklyn Condo,394891,Ray,Brooklyn,Crown Heights,40.67826,-73.96379,Entire home/apt,200,4,2,2019-01-03,0.25,1,8 +30014439,East Village Gem - The Garden Dream,35422741,Alexia,Manhattan,East Village,40.73015,-73.98447,Entire home/apt,350,3,3,2019-06-16,0.48,1,5 +30014743,Cute & quiet 1BR in East Village,4817341,Lauren,Manhattan,East Village,40.7288,-73.98058,Entire home/apt,200,2,6,2019-06-23,0.95,1,7 +30014866,DaDukes Giza,139879568,Alberto,Queens,Long Island City,40.76538,-73.93882,Private room,85,1,18,2019-05-27,2.50,6,363 +30015529,"Quiet, Sun-Filled, 1BR Williamsburg Apt",53444504,Harvey,Brooklyn,Williamsburg,40.71633,-73.94138,Entire home/apt,200,1,5,2019-06-16,0.66,1,0 +30015658,private spacious LES bedroom,220601248,Nora,Manhattan,Lower East Side,40.71752,-73.98887,Private room,75,2,24,2019-06-23,3.14,2,7 +30015731,1 Bedroom Spacious and Cozy UWS Apartment,43043667,Dina,Manhattan,Upper West Side,40.78105,-73.97633,Entire home/apt,249,2,13,2019-02-28,1.82,1,0 +30015813,Newly renovated house with a rooftop near Downtown,225618164,Sergii,Brooklyn,Gowanus,40.68198,-73.98962,Private room,77,30,0,,,3,365 +30016740,Cozy Yogi Crash Pad :),224637257,Shep,Brooklyn,Flatbush,40.64491,-73.9573,Private room,55,2,17,2019-04-28,2.31,2,142 +30017676,KOREA FOOD TOWN! Affordable Price! Ideal for 1or2!,162496355,Chanhee,Queens,Flushing,40.76531,-73.8138,Private room,43,2,6,2019-01-05,0.80,1,0 +30017757,Next to Central Park,2653479,Brian,Manhattan,Upper West Side,40.79505,-73.96382,Private room,90,2,2,2019-04-17,0.59,4,43 +30018448,A lovely room in a very quiet area waiting for you,173287467,Sonali,Queens,College Point,40.79469,-73.84544,Private room,50,5,0,,,1,0 +30018456,COMFORTABLE PRIVATE ROOM IN FLATBUSH!,72015600,XaXa,Brooklyn,Flatbush,40.64664,-73.95486,Private room,60,1,3,2019-01-27,0.48,1,0 +30018946,Best View in Brooklyn —> Private Modern Penthouse,14482375,Lara & David,Brooklyn,Greenpoint,40.72074,-73.94371,Entire home/apt,95,3,0,,,3,0 +30019462,Beautiful Times Square Apt. Heart of Manhattan!,219848970,Javier,Manhattan,Hell's Kitchen,40.76203,-73.99353,Entire home/apt,600,3,0,,,2,17 +30019511,Hard to Find!!! Entire private floor and 2 baths,17022165,Jess,Manhattan,Lower East Side,40.72042,-73.98414,Private room,159,2,29,2019-07-04,4.39,1,209 +30019535,NewYork Downtown aloft,38216858,Silver,Manhattan,Financial District,40.70772,-74.01489,Private room,220,1,1,2019-05-21,0.60,4,365 +30020090,Large Chic Uptown NYC Apartment,225646557,Mike,Manhattan,Washington Heights,40.83901,-73.93802,Entire home/apt,199,2,18,2019-07-01,2.56,1,171 +30020439,Airy Brooklyn Limestone : 3 Bedroom Suite!,3393434,Billye And Joe,Brooklyn,Crown Heights,40.67152,-73.94712,Private room,600,3,0,,,2,89 +30020524,LES Penthouse,36560763,Daniel,Manhattan,Lower East Side,40.71762,-73.98606,Entire home/apt,450,2,0,,,1,0 +30020930,Romantic Upper East Side studio,183924446,Rose,Manhattan,Upper East Side,40.77064,-73.95124,Entire home/apt,150,3,11,2019-06-22,1.56,1,49 +30021086,"Room in a Cosy Appartment, Midtown, Grand Central",92963604,Barthelemy,Manhattan,Midtown,40.75638,-73.9675,Private room,100,3,6,2019-04-21,0.85,1,45 +30021315,Central Park studio,88161763,Bethlehem,Manhattan,Upper West Side,40.79672,-73.96169,Entire home/apt,150,2,29,2019-06-25,3.97,1,11 +30021600,Tasteful Bright Studio Loft in Historic Brownstone,225655167,David,Brooklyn,Bedford-Stuyvesant,40.6887,-73.92742,Entire home/apt,150,5,3,2019-03-15,0.46,1,24 +30021914,Pelham Gardens Entire Home *Newly Built*,153817,Sadio,Bronx,Pelham Gardens,40.86279,-73.83947,Entire home/apt,87,2,26,2019-06-30,3.42,1,7 +30023607,Sunny bedroom with a view in East Village/LES/NYC,29217011,Eb,Manhattan,Lower East Side,40.72122,-73.98652,Private room,85,4,2,2019-01-04,0.28,1,0 +30027892,Stunning Garden Apartment in Prospect Heights,91851098,Matthew,Brooklyn,Prospect Heights,40.67786,-73.97029,Entire home/apt,110,2,5,2019-04-26,0.89,1,0 +30029651,Home away from home.,115741895,Damian,Queens,St. Albans,40.7008,-73.75121,Private room,70,2,3,2019-05-19,0.40,2,186 +30029831,Classic Comfort Private Suite in the Heights,8556404,Chris,Manhattan,Washington Heights,40.85229,-73.9394,Private room,97,2,0,,,1,365 +30030480,Charming West Village Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72943,-74.00243,Entire home/apt,269,30,1,2019-01-05,0.16,232,234 +30031616,Bright UES 1BR w/Doorman 15m walk to Central Park by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77196,-73.95175,Entire home/apt,255,30,0,,,232,157 +30031841,Private room with awesome Manhattan view,225618164,Sergii,Brooklyn,Gowanus,40.68155,-73.98947,Private room,79,30,0,,,3,365 +30033284,"Spunky Wall Street 1BR w/Speakeasy, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Financial District,40.70462,-74.00912,Entire home/apt,248,30,0,,,232,338 +30033478,Invincible river view Central Park North,225724159,Co,Manhattan,Harlem,40.81857,-73.9557,Private room,59,1,2,2019-02-03,0.36,1,0 +30034070,Private Patio Studio,211549023,Studioplus,Manhattan,Midtown,40.74687,-73.98836,Entire home/apt,220,2,8,2019-06-14,1.48,13,315 +30034260,Bright Ultimate View with Balcony + Roof Access,225730907,Theo,Brooklyn,Bushwick,40.69936,-73.9242,Entire home/apt,170,2,36,2019-07-02,5.24,1,191 +30035166,4-Floor Unique Event Space 50P Cap. - #10299B,172611460,Rasmus,Manhattan,Harlem,40.82511,-73.94961,Entire home/apt,5000,1,2,2019-02-23,0.38,2,150 +30035973,Astoria's Tranquil Home Away From Home,160493366,Kat,Queens,Ditmars Steinway,40.76992,-73.89719,Entire home/apt,62,5,3,2019-05-18,0.76,1,6 +30036315,Room in Williamburg BK,120939023,Maria Fernanda,Brooklyn,Williamsburg,40.71837,-73.95882,Private room,99,2,9,2019-06-17,1.16,2,46 +30036390,Luxury Living Condo,225620845,Maria,Brooklyn,Sheepshead Bay,40.58403,-73.95692,Entire home/apt,180,3,4,2019-06-09,0.63,3,156 +30036783,Bright and spacious 2 bed apartment,225748084,Kimberley,Brooklyn,Crown Heights,40.67726,-73.95573,Entire home/apt,140,7,0,,,1,0 +30037000,Calm apartment in Brooklyn,3297399,Adero,Brooklyn,East Flatbush,40.64391,-73.94833,Entire home/apt,57,1,6,2019-01-08,0.80,1,0 +30037339,Luxury Living Condo 2 bdr,225620845,Maria,Brooklyn,Sheepshead Bay,40.58496,-73.95739,Entire home/apt,250,3,4,2019-06-23,0.62,3,360 +30037892,Private room | Beautiful apartment in West Village,23020619,Lorenzo,Manhattan,West Village,40.73444,-74.00562,Private room,190,2,4,2019-04-27,0.53,2,0 +30037932,Loft with Room in Exclusive Area near Free Ferry,183625602,Leslie,Staten Island,Tompkinsville,40.62917,-74.08619,Entire home/apt,120,3,15,2019-07-01,1.92,1,166 +30038038,Large Loft Times Square Apartment,39770685,Mike,Manhattan,Hell's Kitchen,40.75551,-73.99236,Entire home/apt,300,4,8,2019-06-23,1.06,1,7 +30038130,Manhattan Penthouse,213781715,Anting,Manhattan,NoHo,40.72865,-73.99148,Entire home/apt,179,1,0,,,33,179 +30038208,LUX TOP LOC OWN ENTRY GUEST SUITE 1BR+SPABATH+LV!,225706084,Mikki & Doni,Brooklyn,Prospect-Lefferts Gardens,40.65786,-73.95813,Entire home/apt,135,2,29,2019-06-29,4.01,1,80 +30038245,Spacious Room In The Heart Of Harlem,6480134,Johanna,Manhattan,Harlem,40.82414,-73.93912,Private room,60,4,11,2019-06-18,1.53,2,161 +30038280,Cozy & clean 1 Bedroom apartment,22749087,Marie,Manhattan,East Village,40.72514,-73.98504,Entire home/apt,175,3,7,2019-03-30,0.90,1,110 +30038437,Luxe and Quiet 1 Bdrm Upper East Side Apartment,15605409,Jackie,Manhattan,Upper East Side,40.77064,-73.96197,Entire home/apt,345,7,15,2019-06-14,1.92,1,21 +30038438,Your Manhattan Home,213781715,Anting,Brooklyn,Greenpoint,40.73278,-73.95368,Private room,119,1,0,,,33,180 +30039638,Airy and Bright 1 bedroom APT in Brooklyn.,75224005,Michael,Brooklyn,Windsor Terrace,40.65696,-73.97942,Entire home/apt,130,7,1,2019-06-27,1,1,11 +30040019,Private Boutique One Bedroom,2021640,Lina,Manhattan,Upper East Side,40.77717,-73.95404,Entire home/apt,182,2,28,2019-07-02,3.85,1,64 +30040977,Cozy two room studio upper east side NYC,48860816,Christina,Manhattan,Upper East Side,40.77487,-73.95654,Entire home/apt,123,1,0,,,1,0 +30041344,Harlem 5th Avenue Room,19531024,Emmanuel,Manhattan,Harlem,40.80877,-73.94122,Private room,100,2,0,,,2,0 +30041537,"""Home sweet Home"" Welcome friends",224315550,Leonardo,Brooklyn,Williamsburg,40.70956,-73.96552,Private room,90,2,39,2019-06-26,5.37,2,78 +30041554,Huge Apartment Harlem on 5th av,19531024,Emmanuel,Manhattan,Harlem,40.80945,-73.94183,Entire home/apt,175,3,1,2019-01-01,0.16,2,46 +30043083,Home away from home lodging #1 (1 Bed- 1 guest),225790094,Vena,Brooklyn,East Flatbush,40.65129,-73.92696,Private room,35,1,10,2019-07-02,1.32,3,83 +30043303,Cosy entire apartment in great location,22826759,Fuchsia,Brooklyn,Greenpoint,40.72051,-73.95464,Entire home/apt,103,3,3,2019-05-19,0.46,1,11 +30043557,Relaxing private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59802,-73.75497,Private room,70,1,12,2019-06-19,1.69,4,361 +30043754,Spacious bedroom in Midtown East Manhattan,2559403,Belen,Manhattan,Midtown,40.75959,-73.97084,Private room,100,3,1,2018-12-31,0.16,1,0 +30043809,Comfy private bedroom,225454310,Tosin,Queens,Far Rockaway,40.59836,-73.75555,Private room,50,1,12,2019-04-28,1.55,4,363 +30043966,Beautiful Bed-Stuy Brownstone on tree line block.,133723890,Elle,Brooklyn,Bedford-Stuyvesant,40.6871,-73.92449,Entire home/apt,125,3,20,2019-06-24,2.58,1,339 +30045214,room in cozy exposed brick apt with HUGE BALCONY,33235360,Guy,Brooklyn,Williamsburg,40.70903,-73.94416,Private room,60,2,14,2019-06-26,1.89,2,14 +30045461,Boho bungalow in Harlem,67658340,Caitlyn,Manhattan,Harlem,40.81691,-73.94124,Private room,70,2,17,2019-06-29,2.44,1,27 +30045865,Upper East Side Studio by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.78918,-73.94834,Entire home/apt,110,30,1,2019-02-12,0.20,2,0 +30046140,Central Park 2 Bedroom Escape in South Harlem,59011845,Aksel,Manhattan,Harlem,40.7997,-73.9534,Entire home/apt,600,3,0,,,1,83 +30046174,Spacious Loft steps from Central Park by NÔM Stays,224655849,Nôm,Manhattan,East Harlem,40.79052,-73.94838,Entire home/apt,120,29,1,2019-05-31,0.77,2,0 +30046332,Private Room in Heart of Downtown NYC,11718279,Annette,Manhattan,Financial District,40.70815,-74.00513,Private room,115,2,4,2019-01-01,0.55,1,177 +30046359,The Ultimate Dumbo Pad - 1 Large Bedroom~Sleeps 4,26603179,Gal,Brooklyn,DUMBO,40.7034,-73.98544,Entire home/apt,219,3,16,2019-06-26,2.50,1,332 +30046573,Cheery Chelsea Charmer... best location!,3896863,Susanna And Ricki,Manhattan,Chelsea,40.74164,-73.99656,Entire home/apt,250,3,18,2019-06-21,3.44,1,51 +30046737,The Rich Home:minutes to JFK & 30min to the City,225813251,Latasha,Queens,St. Albans,40.6968,-73.76592,Entire home/apt,135,1,69,2019-07-02,10.67,1,158 +30047100,Big brownstone apartment in prime Williamsburg,22588056,Amy,Brooklyn,Williamsburg,40.71323,-73.96319,Entire home/apt,90,7,1,2019-01-02,0.16,1,0 +30047357,BEAUTIFUL COZY ROOM IN HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.59021,-73.948,Private room,55,1,45,2019-06-15,5.74,3,83 +30047371,Home away from Home! 25 Mins from Time Square,59240650,Angely,Manhattan,Inwood,40.8597,-73.92748,Private room,75,2,5,2019-01-05,0.66,1,0 +30048135,Garden 1BR in Brooklyn Heights,78251,Leslie,Brooklyn,Brooklyn Heights,40.70099,-73.99532,Entire home/apt,100,31,0,,,2,310 +30048506,Beautiful! 3 bed 2bath 5min JFK & Resorts Casino,44682387,Sky,Queens,Jamaica,40.67196,-73.77821,Entire home/apt,155,1,59,2019-06-26,7.60,2,287 +30048716,"Come live in, Brooklyn",225749624,Jonathan,Brooklyn,Bedford-Stuyvesant,40.69233,-73.94366,Private room,70,1,1,2018-12-01,0.14,1,0 +30049755,"Bright, spacious and comfortable with open view",5326571,Ines,Queens,Ditmars Steinway,40.77751,-73.90956,Private room,85,2,2,2019-05-31,0.29,2,278 +30049817,Modern Manhattan Apartment,140830391,Jay,Manhattan,Inwood,40.86159,-73.92686,Private room,60,1,15,2019-06-24,2.01,9,89 +30057248,Beautiful Private bedroom for rent in Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70094,-73.91992,Private room,59,1,1,2019-05-31,0.75,5,148 +30057380,Brooklyn Bed and Breakfast next to Prospect Park,14022130,Farah,Brooklyn,Prospect-Lefferts Gardens,40.65646,-73.95229,Entire home/apt,115,2,1,2018-12-26,0.15,1,0 +30058948,家庭式旅馆獨立衛生間套房K,225889604,Fiona,Queens,Flushing,40.76345,-73.828,Private room,73,1,5,2019-06-18,1.17,5,87 +30059270,Beautiful 1 bedroom in Ridgewood's heart.,225891200,Judit,Queens,Ridgewood,40.70947,-73.90039,Private room,75,2,0,,,1,0 +30059328,Two Blocks from Washington Square Park!!,41194120,Melissa,Manhattan,Greenwich Village,40.72978,-73.99982,Entire home/apt,275,1,4,2019-05-26,0.61,1,0 +30059491,Cozy Brooklyn Nook,46093850,Caroline,Brooklyn,Bedford-Stuyvesant,40.68137,-73.95714,Private room,100,1,2,2018-12-29,0.26,1,311 +30059579,Night away,157093664,Zulema,Queens,St. Albans,40.69866,-73.76759,Private room,59,1,0,,,2,365 +30060150,Private room in trendy neighborhood,129902279,Catalina,Brooklyn,Sunset Park,40.65977,-73.99087,Private room,40,8,7,2019-06-12,0.96,1,66 +30060474,Largest High Ceiling Furnished Room in Bushwick,29765186,Raoul&Nats,Brooklyn,Bedford-Stuyvesant,40.6972,-73.93613,Private room,75,2,6,2019-06-14,0.86,1,84 +30060926,3bdrm cozy attic 15 mins from jfk & Belmont track,160940380,Adeola,Queens,St. Albans,40.69869,-73.749,Entire home/apt,250,3,4,2019-06-09,0.63,3,348 +30062210,Cozy Four Twenty Friendly Bedroom in Brooklyn,225913497,Mamadou,Brooklyn,Bedford-Stuyvesant,40.67966,-73.90755,Private room,28,3,1,2019-01-01,0.16,1,0 +30062344,Peaceful Greenpoint sanctuary,49290775,Wira,Brooklyn,Greenpoint,40.73561,-73.95873,Entire home/apt,150,3,3,2019-04-13,0.48,1,42 +30062477,FEMALE SHARED ROOM 30 minutes to Times Square,172369331,Abby,Brooklyn,Sheepshead Bay,40.59823,-73.95909,Shared room,30,2,5,2019-06-12,0.66,10,0 +30062478,Chelsea Hudson yards Highline adorable apartment,225913271,Kristie,Manhattan,Chelsea,40.7507,-74.00261,Entire home/apt,170,3,6,2019-06-30,0.84,1,170 +30062776,"Center of Flushing, Queens, Near Sheraton Hotel",169472089,Betty,Queens,Flushing,40.76079,-73.83387,Private room,90,3,1,2019-01-06,0.16,2,90 +30063499,Large room w private bath <10 mins to Main St!,188575380,Nina,Queens,Flushing,40.76068,-73.82233,Private room,66,2,19,2019-06-24,2.73,1,312 +30063759,Cozy Manhattan Hideaway,14859699,Beau Augusto,Manhattan,Washington Heights,40.83649,-73.94383,Private room,29,134,0,,,1,0 +30063808,Williamsburg Full-Floor Vintage Loft,16072607,Matthew,Brooklyn,Williamsburg,40.70901,-73.9676,Entire home/apt,300,4,2,2019-04-20,0.32,1,161 +30064021,Modern Harlem Haven,225926055,Stacie,Manhattan,Harlem,40.82199,-73.95632,Entire home/apt,120,5,1,2019-01-02,0.16,1,0 +30064378,Entire 1- Bedroom Apt. in the Heart of Astoria.,148298029,Jennifer,Queens,Astoria,40.76529,-73.91137,Entire home/apt,103,5,1,2019-01-01,0.16,1,0 +30064760,Spacious Sunny Bedroom in Bushwick/Ridgewood,12625398,Marcela,Queens,Ridgewood,40.70581,-73.90978,Private room,43,2,4,2019-04-21,0.55,1,0 +30064922,Luxury Bay Ridge Rentals,225930875,Emad,Brooklyn,Bay Ridge,40.62951,-74.02319,Entire home/apt,165,7,0,,,1,126 +30065004,Charles' Chillspot 2guests/ min per stay,225933854,Charles,Queens,Briarwood,40.70742,-73.81345,Entire home/apt,55,1,11,2019-07-02,1.42,1,40 +30065027,Peaceful and Stylish Oasis in the West Village,16403250,Alberto,Manhattan,West Village,40.73334,-74.00098,Entire home/apt,240,4,18,2019-07-04,4.19,1,24 +30065172,"Bedroom in cosy apt in Williamsburg, Brooklyn",49546136,Victoire,Brooklyn,Williamsburg,40.71235,-73.95764,Private room,79,4,0,,,1,0 +30065616,"Bright Room, next to subway, 15 mins to NYC",737641,Sasha,Brooklyn,Bushwick,40.69874,-73.93589,Private room,50,2,30,2019-06-25,3.98,1,0 +30065947,Comfortable room with private entrance,4460107,Julia,Brooklyn,Greenpoint,40.72745,-73.9483,Entire home/apt,85,3,4,2019-02-23,0.53,1,0 +30066243,Room in the heart of Harlem,225942423,Zainab,Manhattan,Harlem,40.80652,-73.94937,Private room,68,1,33,2019-07-01,4.25,1,19 +30066459,"Upper West Side, NYC",10273945,Camila,Manhattan,Morningside Heights,40.80741,-73.96658,Entire home/apt,150,13,1,2018-11-19,0.13,1,0 +30066865,Lovely new Renovation Stylish apartment 2 floor,212147885,Alisa,Brooklyn,Cypress Hills,40.6765,-73.9063,Entire home/apt,150,3,9,2019-05-26,1.27,2,179 +30067029,UPPER EAST SIDE!! MANHATTAN!!,151300770,Joe,Manhattan,Upper East Side,40.77829,-73.95093,Private room,150,5,5,2019-07-02,0.66,4,272 +30067209,Just for you,222054756,Dora,Queens,Rego Park,40.72637,-73.86829,Private room,60,3,1,2019-01-01,0.16,1,89 +30067470,THE ❤️ OF NYC AWAITS--ASK ABOUT MY SUMMER SALE,224884160,Nbeki,Manhattan,Hell's Kitchen,40.76193,-73.99147,Entire home/apt,499,2,14,2019-06-23,1.98,1,236 +30067550,1 Sunny Sublet in Crown Heights 3 BR Apt,7569336,Simona,Brooklyn,Crown Heights,40.66988,-73.94682,Private room,60,20,1,2018-11-30,0.14,1,64 +30067603,"Comfortable, Jazzy, Netflix",45835291,Shareef,Manhattan,Harlem,40.82411,-73.95441,Private room,47,8,31,2019-06-30,4.04,6,270 +30067767,UPPER EAST SIDE in NYC!!!,151300770,Joe,Manhattan,Upper East Side,40.77954,-73.95127,Private room,150,5,5,2019-05-20,0.79,4,267 +30068066,MANHATTAN! NEW YORK CITY!,151300770,Joe,Manhattan,Upper East Side,40.78006,-73.95046,Private room,150,5,7,2019-06-19,0.96,4,293 +30068829,Midtown West - Sunny Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75659,-73.99988,Private room,179,1,27,2019-06-23,3.45,30,327 +30069021,Midtown West - Cozy Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75753,-73.99701,Private room,199,1,25,2019-06-23,3.21,30,324 +30069091,"Work Friendly, Private Bathroom and Kitchen",225963659,Alexander,Brooklyn,Bushwick,40.69538,-73.92501,Private room,59,20,0,,,1,0 +30069635,"Chic, spacious, private home away from home!",101367917,Colleen,Queens,Astoria,40.76589,-73.92259,Private room,150,2,4,2019-04-28,0.55,1,0 +30070126,✩Prime Renovated 1/1 Apartment in Upper East Side✩,4968673,Sean,Manhattan,Upper East Side,40.76831,-73.95929,Entire home/apt,200,5,2,2019-05-26,0.68,1,71 +30071389,Lothlorien,224513581,Gaia,Brooklyn,Bedford-Stuyvesant,40.67752,-73.90886,Private room,26,30,0,,,2,250 +30071646,Bright Spacious Brooklyn Room with Living Room,38250051,Carrie,Brooklyn,Sunset Park,40.65978,-73.99406,Private room,50,3,3,2019-04-07,0.43,1,0 +30071822,"Entire Private 1 Bdrm, 1 Bath & 1000 SQFT Backyard",24864537,Jocelyn,Brooklyn,Prospect-Lefferts Gardens,40.65985,-73.94985,Entire home/apt,100,3,10,2019-06-21,1.32,1,25 +30071866,Brooklyn based 1 bedroom apartment,22723123,Maximilian,Brooklyn,Downtown Brooklyn,40.69115,-73.98466,Entire home/apt,99,3,1,2019-04-28,0.41,1,31 +30071905,Amazing Central Park Apartment Close to everything,78325795,Bozhena,Manhattan,Harlem,40.80616,-73.95007,Entire home/apt,269,1,29,2019-07-03,3.88,3,1 +30071972,Beautiful room Williamsburg Brooklyn NY,192181166,Elisa,Brooklyn,Williamsburg,40.70685,-73.94231,Private room,60,150,2,2019-01-13,0.32,2,0 +30077994,GEM BnB Cozy Comfort 3 Br House near JFK,221764359,Graham,Queens,Springfield Gardens,40.66635,-73.76622,Entire home/apt,300,1,5,2019-05-26,0.66,1,154 +30081034,Greenpoint Brooklyn,226035811,Samantha,Brooklyn,Greenpoint,40.72778,-73.94781,Private room,200,7,0,,,1,0 +30081150,"Huge Private Bedroom, Manhattan Washington Heights",3421779,Kfir,Manhattan,Washington Heights,40.83856,-73.94186,Private room,109,1,2,2018-12-15,0.29,1,270 +30082832,Cozy 2BD Parlor Level w/ Deck Apt in Brooklyn,226048286,Denise,Brooklyn,Clinton Hill,40.69415,-73.96581,Entire home/apt,250,2,30,2019-07-06,5.29,1,274 +30082958,NYC★GREATVALUE★STEPSFROMTRAIN★QUEENtempurpedicBED,73183897,Michael,Staten Island,Dongan Hills,40.58415,-74.10503,Entire home/apt,70,3,14,2019-07-06,1.81,1,51 +30084221,"Live in the heart of East Village, Manhatan",44642799,Judith,Manhattan,East Village,40.72818,-73.98075,Entire home/apt,225,3,2,2019-01-03,0.31,1,0 +30084269,Private Large Bedroom in Brooklyn,12171344,Marta,Brooklyn,Crown Heights,40.66655,-73.95005,Private room,85,2,7,2019-07-03,0.99,2,27 +30084665,Fuhgettaboutit! No hidden fees+HBOShowtime-1 guest,37401126,Leah,Brooklyn,East Flatbush,40.64251,-73.93926,Private room,50,2,32,2019-06-24,4.47,4,358 +30085136,1 BR in historical Brownstone with terrace/garden,198707356,Stephen,Manhattan,Harlem,40.81756,-73.9452,Private room,99,14,2,2019-04-26,0.32,1,36 +30085665,家庭式雙人房K,225889604,Fiona,Queens,Flushing,40.76506,-73.82757,Private room,65,1,3,2019-05-26,0.42,5,85 +30085711,Elegant Park Slope 1b steps from Barclays,114043000,Jeff,Brooklyn,Park Slope,40.67989,-73.97922,Private room,120,2,12,2019-03-06,1.57,1,89 +30085865,Cozy 1 bedroom apartment in Fort Greene,75479604,Alyssa,Brooklyn,Fort Greene,40.69473,-73.97225,Entire home/apt,175,1,1,2018-12-30,0.16,2,0 +30086057,Spacious Room / ✰ Prime Williamsburg ✰ / NYC,5179523,Max,Brooklyn,Williamsburg,40.71027,-73.95293,Private room,75,1,0,,,3,43 +30086614,"private room in clean, homey apartment",3147746,Elise,Manhattan,Washington Heights,40.8444,-73.93654,Private room,27,29,1,2018-11-20,0.13,1,124 +30086617,4-person apartment in Upper East Side/East Harlem,187567357,Tim,Manhattan,East Harlem,40.7947,-73.94115,Entire home/apt,160,1,0,,,1,0 +30086862,Light Massive Sanctuary,224637257,Shep,Brooklyn,Flatbush,40.64544,-73.95731,Private room,95,2,3,2019-05-19,0.40,2,180 +30087377,Prime West Village Boutique Apartment,14379366,Perry,Manhattan,West Village,40.7363,-74.00494,Entire home/apt,340,30,2,2019-06-14,0.46,1,100 +30087397,Beautiful and Cozy Space,35319788,Kiran,Manhattan,Upper West Side,40.80052,-73.9706,Private room,100,2,8,2019-04-27,1.06,1,0 +30088291,Room in Sunny Prime Williamsburg Pad,218511630,Carlos,Brooklyn,Williamsburg,40.71465,-73.95499,Private room,75,2,11,2019-05-20,1.90,3,0 +30088310,Private Bedroom in a Quintessential UWS Apartment,2723489,Leslie,Manhattan,Upper West Side,40.80055,-73.96876,Private room,80,2,3,2019-01-03,0.42,1,0 +30088327,Lower East Side luxury one bedroom apartment,75404627,Nadia,Manhattan,Lower East Side,40.71022,-73.99163,Entire home/apt,195,3,14,2019-06-10,1.93,1,158 +30088359,Spacious studio across from Morningside Park,10842596,Ruth,Manhattan,Morningside Heights,40.80218,-73.95904,Entire home/apt,100,1,24,2019-07-07,3.09,1,1 +30088906,Safe and Sound Studio in the Big Apple,226088610,Cynthia,Manhattan,Upper East Side,40.76812,-73.95093,Entire home/apt,150,7,0,,,1,365 +30089134,NYC House rent,225616368,Jafor,Queens,Woodside,40.74217,-73.90218,Entire home/apt,136,2,17,2019-07-06,2.25,1,348 +30089412,Private 2 bedroom apartment with outdoor space ..,156481014,Nyesha,Brooklyn,Clinton Hill,40.6819,-73.96007,Entire home/apt,250,2,16,2019-06-30,2.18,1,78 +30089600,Spacious Apt with Charm & Character,113569564,Talia,Bronx,Riverdale,40.88511,-73.90831,Entire home/apt,175,3,5,2019-04-08,0.77,1,0 +30089810,Private Room in Beautiful 3000 sq ft Loft!,14413778,Allegra,Manhattan,Nolita,40.72192,-73.99418,Private room,307,3,1,2018-11-22,0.13,2,363 +30089955,Amazing City View Ultra Luxury One Bed in Midtown,50046186,Jesse,Manhattan,Midtown,40.74933,-73.98467,Entire home/apt,600,2,1,2018-12-16,0.15,1,0 +30090198,"ENTIRE one-bedrm apartment. Cozy, chic, spacious!",17617821,Julie,Brooklyn,Crown Heights,40.67775,-73.94913,Entire home/apt,99,4,5,2019-06-10,0.77,1,23 +30091241,Tribeca - Large 4 bedroom 2 bathroom for Xmas/NY,102655617,Mahesh,Manhattan,Tribeca,40.71546,-74.00856,Entire home/apt,2000,1,1,2019-01-01,0.16,1,0 +30091313,家庭式單間雙人床K,225889604,Fiona,Queens,Flushing,40.76339,-73.82831,Private room,55,1,7,2019-05-11,0.95,5,85 +30091592,Best view near Times Square,16768238,Julio Adrian,Manhattan,Hell's Kitchen,40.75975,-73.9944,Private room,215,2,0,,,1,0 +30091823,Cozy Soho Walk Up,122053964,Madeline,Manhattan,SoHo,40.72355,-74.0032,Entire home/apt,200,2,0,,,1,0 +30092606,Time Square West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75665,-73.99838,Private room,129,1,18,2019-05-05,2.40,30,140 +30093042,Spacious 1BR close to the subway,15823232,Nicolas,Brooklyn,Crown Heights,40.67698,-73.94414,Private room,99,2,2,2019-03-03,0.29,3,78 +30093274,家庭式獨立衛生間套房G,225889604,Fiona,Queens,Flushing,40.76548,-73.82764,Private room,82,1,2,2019-06-09,0.31,5,85 +30093843,Johns place,2286764,John,Queens,Woodside,40.75542,-73.90716,Entire home/apt,125,3,14,2019-06-13,2.05,1,42 +30094586,"Stay for a day, or two (or +), totally up to you!",41326201,Crú,Queens,Ridgewood,40.69845,-73.90838,Private room,150,1,14,2019-06-30,1.89,1,89 +30094688,Luxurious Brooklyn Office,225943653,Oswin,Brooklyn,Bedford-Stuyvesant,40.68515,-73.94743,Entire home/apt,151,1,1,2018-11-28,0.13,1,179 +30094802,Very spacious 1 BR with lots of sunlight,15823232,Nicolas,Brooklyn,Crown Heights,40.6773,-73.94465,Private room,99,2,1,2019-05-21,0.60,3,84 +30096719,Small studio in historic Clinton Hill,188896,Ellen,Brooklyn,Clinton Hill,40.6887,-73.96668,Entire home/apt,98,1,32,2019-07-02,4.10,2,257 +30101694,New york Multi-unit building,4750332,Ofer,Manhattan,Hell's Kitchen,40.75884,-73.99208,Entire home/apt,800,180,0,,,1,358 +30101954,Spacious bright bedroom in modern apartment,57755572,Georgia,Brooklyn,Greenpoint,40.73008,-73.96062,Private room,70,2,2,2019-01-05,0.27,1,0 +30102118,Huge two bedroom in trendy Greenpoint,5743700,Joshua,Brooklyn,Greenpoint,40.72918,-73.95538,Entire home/apt,200,4,1,2018-12-26,0.15,1,0 +30102666,"Summer in style, 2BR Apt with Rooftop",15967997,Laura,Brooklyn,Williamsburg,40.71861,-73.95448,Entire home/apt,380,3,3,2019-06-24,0.48,1,14 +30103053,Stunning Huge Loft Prime SoHo position,2969845,Lucas,Manhattan,SoHo,40.72418,-73.99978,Entire home/apt,500,5,3,2019-04-09,0.46,1,63 +30103232,Welcome to the private LOVE NEST in BUSHWICK!!!,9834068,Toni,Brooklyn,Bushwick,40.69726,-73.91587,Private room,50,2,19,2019-06-07,2.52,1,5 +30104692,"Quiet apartment. Easy access to L, J/M/Z, G lines.",43089807,John,Brooklyn,Williamsburg,40.71318,-73.95876,Entire home/apt,149,2,20,2019-06-23,2.80,1,263 +30104723,Cozy apt with washer dryer in trendy Williamsburg,226201658,Vanessa,Brooklyn,Williamsburg,40.70689,-73.94996,Entire home/apt,73,30,1,2019-03-02,0.23,3,345 +30105018,Bushwick Artist Loft in Converted Factory,226204224,Allyson,Brooklyn,Bushwick,40.6991,-73.92338,Private room,50,1,7,2018-12-30,0.93,1,0 +30105022,SUNLIT PRIVATE ROOM,126449349,John,Manhattan,Lower East Side,40.71436,-73.98856,Private room,80,1,6,2019-06-19,0.77,2,151 +30105086,Spacious and Bright West Village Studio,24524608,Ali,Manhattan,West Village,40.72975,-74.0042,Entire home/apt,170,2,9,2019-06-22,1.37,1,19 +30105572,East Village Gem,951571,Georgie,Manhattan,East Village,40.72815,-73.98455,Entire home/apt,120,1,5,2019-06-30,0.65,1,191 +30105773,Entire 1br. Kitchen and sleeping quarters.,4361061,Abrm,Queens,Astoria,40.77298,-73.92461,Entire home/apt,70,1,1,2019-01-01,0.16,2,2 +30106162,Private Room in Charming TriBeCa Loft,407922,Kristen,Manhattan,Tribeca,40.72018,-74.00451,Private room,70,30,2,2018-12-12,0.26,1,0 +30106965,⍟Luxury high rise apt | 1 street to Times Square⍟,141713210,J.C.,Manhattan,Theater District,40.75716,-73.98796,Entire home/apt,400,4,2,2019-01-02,0.31,1,0 +30106990,NY MANHATTAN DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75438,-73.99759,Private room,209,2,11,2019-05-16,1.63,8,73 +30107009,家庭式雙床房G,225889604,Fiona,Queens,Flushing,40.76418,-73.8293,Private room,72,1,8,2019-05-31,1.12,5,74 +30107262,Quint brownstone private entrance with spa on site,226205088,Robbin,Manhattan,Harlem,40.80324,-73.94887,Entire home/apt,125,2,12,2019-07-02,3.05,1,7 +30108247,beautiful apt. in Chelsea w/ a doorman,7285648,Josh,Manhattan,Chelsea,40.74656,-74.00441,Private room,114,1,1,2019-01-01,0.16,3,0 +30108593,MODERN STYLISH CHIC GARDEN LEVEL SUITE in BROOKLYN,226230372,Jean,Brooklyn,East Flatbush,40.64879,-73.95079,Entire home/apt,88,2,44,2019-06-26,5.92,1,7 +30108978,Renovated Boutique Rough Luxe Apartment,36021544,Ricardo,Manhattan,Hell's Kitchen,40.76375,-73.99201,Entire home/apt,250,6,0,,,1,87 +30109089,MOXY NYC DOWNTOWN-7 NIGHTS MIN,5144567,Yun,Manhattan,Financial District,40.70845,-74.01037,Private room,209,7,1,2019-01-04,0.16,13,358 +30109128,"Chic Apartment in Financial District, Manhattan",9156492,Matei,Manhattan,Financial District,40.70701,-74.0151,Entire home/apt,114,1,6,2019-07-02,0.79,1,11 +30109151,Large Open Brooklyn Loft,4445708,Kirsten,Brooklyn,Bedford-Stuyvesant,40.69137,-73.96,Entire home/apt,118,2,6,2019-02-18,0.89,1,67 +30109697,Nicely appointed BIG one bedroom off Central Park,1385157,Brian,Manhattan,Upper West Side,40.78318,-73.97372,Entire home/apt,130,30,1,2019-04-12,0.34,5,261 +30109765,"Nice & quiet,clean & neat, all including hostel",95958773,Maryna,Brooklyn,Brighton Beach,40.57811,-73.96004,Shared room,50,1,0,,,3,365 +30109916,Entire Spacious Apt. with Comfy Queen Bed & WiFi,22694324,Greg,Bronx,Allerton,40.86975,-73.84669,Entire home/apt,75,1,7,2019-01-20,0.93,1,1 +30110482,686 A home away from home,226250191,Shawn,Brooklyn,Brownsville,40.65239,-73.91029,Entire home/apt,130,2,20,2019-06-29,2.63,1,139 +30111496,Brooklyn Newly Renovated 1-bedroom Apartment,101215475,Julia,Brooklyn,Williamsburg,40.70762,-73.96503,Private room,90,3,10,2019-07-06,4.55,1,77 +30111883,Twin Private Room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69356,-73.94537,Private room,80,2,16,2019-06-17,2.17,4,3 +30112272,Spacious 3 bedrooms Prime Manhattan,225108575,Tom,Manhattan,Midtown,40.75693,-73.96583,Entire home/apt,206,30,3,2019-04-30,0.41,1,161 +30112494,"Huge, super-clean and elegant!",225971717,Natalia,Manhattan,Harlem,40.8242,-73.9537,Entire home/apt,120,2,4,2018-12-16,0.53,1,0 +30113007,家 Home (12 mins to NYC),213781715,Anting,Brooklyn,Greenpoint,40.73031,-73.95742,Entire home/apt,306,1,0,,,33,364 +30113079,Brooklyn Cosy Daybed,10809204,Mario,Brooklyn,Crown Heights,40.66844,-73.95857,Shared room,46,2,0,,,1,0 +30115354,Amazing apartment in the heart of Brooklyn,5918341,Mona,Brooklyn,Bedford-Stuyvesant,40.68446,-73.95182,Entire home/apt,149,3,14,2019-05-25,1.88,2,0 +30120067,Home Sweet Riverdale,163737392,K,Bronx,Fieldston,40.89466,-73.89735,Shared room,50,1,8,2019-07-06,1.26,2,241 +30120427,"2 blocks from train, Balcony, Free Parking!",50319699,Sharon,Queens,Astoria,40.77036,-73.92191,Entire home/apt,165,3,2,2019-05-06,0.27,1,0 +30122033,"A well loved, Individually designed luxury home!",38140449,David,Manhattan,Upper West Side,40.77355,-73.99084,Entire home/apt,375,4,1,2019-01-01,0.16,1,0 +30122474,Comfy Oasis In Exceptionally Convenient Area,41217631,Paul,Manhattan,Chinatown,40.71508,-73.9975,Private room,75,1,33,2019-06-23,4.52,2,0 +30122576,Charming apartment in Manhattan.,48958233,Ana,Manhattan,Gramercy,40.73619,-73.98307,Entire home/apt,259,1,14,2019-04-23,1.92,2,0 +30123494,Comfy modern appartment in hip Crown Heights,11869986,Christopher,Brooklyn,Crown Heights,40.67299,-73.95804,Entire home/apt,210,4,1,2019-01-01,0.16,1,0 +30124206,Fresh Room One Block From Metro!!,226335012,Ann,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95596,Private room,55,2,23,2019-06-21,3.59,1,323 +30124398,"Beautiful 1865 Townhouse, 5 bedrm, Fireplace Sauna",4077993,Raquel,Brooklyn,Crown Heights,40.67536,-73.94237,Entire home/apt,460,2,2,2019-01-02,0.27,2,0 +30124940,Large second floor room for 4!,65407018,Harmony,Brooklyn,Greenpoint,40.7227,-73.93691,Private room,85,1,14,2019-06-03,1.92,5,137 +30125523,Excellent studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74957,-73.97683,Entire home/apt,111,30,1,2019-06-13,1,50,332 +30125569,Quiet room in the quiet place for 1 person only,114673570,Mark,Manhattan,East Harlem,40.80909,-73.93726,Private room,200,30,0,,,1,358 +30125704,Pleasant studio in Midtown Manhattan,120762452,Stanley,Manhattan,Murray Hill,40.74839,-73.97556,Entire home/apt,111,30,0,,,50,365 +30126088,Experience Serernity~Hamilton Heights,178473107,Allan C.,Manhattan,Harlem,40.82982,-73.94661,Private room,109,1,1,2019-01-01,0.16,6,41 +30126274,Cute 1/1 Available for the Holidays in NYC!,216903925,Victoria,Manhattan,Washington Heights,40.8375,-73.94182,Entire home/apt,99,1,2,2019-01-07,0.31,1,0 +30126658,Cozy stylish luxury... in the heart of Soho!!!,3562922,John,Manhattan,Nolita,40.72154,-73.99727,Entire home/apt,300,4,3,2019-05-28,0.48,1,97 +30128559,"Brooklyn place with pool, gym and comfort",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69412,-73.9062,Private room,70,3,8,2019-07-04,1.06,3,67 +30128919,In the heart of the city!,226391260,Ahmad,Manhattan,Chelsea,40.74079,-74.00383,Entire home/apt,250,3,4,2019-06-28,0.63,1,49 +30129482,Brooklyn Apartment,9962746,Tania,Brooklyn,Fort Greene,40.688,-73.97185,Entire home/apt,80,3,2,2019-05-12,0.32,1,107 +30129493,"Wall St Condo with Gym, Lounge & a 360° Rooftop",24131677,Eve,Manhattan,Financial District,40.70636,-74.0096,Entire home/apt,240,7,14,2019-06-07,1.98,2,305 +30129734,Cozy Self Contained Private 1 Bedroom Apartment,221844597,Ayana,Queens,St. Albans,40.68739,-73.76598,Entire home/apt,35,1,63,2019-06-30,8.44,1,8 +30129898,PRIME WILLIAMSBURG 1 BED APT- PRIVATE & SUNNY,45319780,Mia,Brooklyn,Williamsburg,40.70795,-73.94307,Entire home/apt,200,3,0,,,1,0 +30129959,Central Harlem Apartment,195452338,Jacob,Manhattan,Harlem,40.81112,-73.94289,Private room,100,3,2,2019-02-07,0.32,1,0 +30130328,Charming Apartment in Wonderful Nolita,226381548,Joe,Manhattan,Nolita,40.72249,-73.99406,Entire home/apt,160,3,14,2019-05-19,1.98,1,0 +30130331,"A brand new house in Little Neck, Queens",226402773,Paul,Queens,Douglaston,40.75466,-73.72924,Entire home/apt,178,5,14,2019-06-17,1.94,1,143 +30130483,Great 1BR with Terrace near Times Square,215531390,Annie Veronique,Manhattan,Hell's Kitchen,40.76481,-73.9922,Entire home/apt,269,4,6,2019-06-12,0.92,1,43 +30130572,Studio-like bedroom with private entrance and bath,2557167,Eric,Bronx,Claremont Village,40.83499,-73.91003,Private room,75,3,19,2019-06-03,2.59,1,109 +30130941,4 Room 9 guest Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.65867,-73.92953,Entire home/apt,200,1,0,,,3,87 +30131250,Private Bushwick Bedroom Madison 3L-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.6877,-73.93146,Private room,42,30,2,2019-05-11,0.47,27,353 +30131273,Private shared space TV/WiFi included bus/train,226410935,Ninosca,Manhattan,Washington Heights,40.83815,-73.94385,Private room,40,3,23,2019-07-01,3.00,1,129 +30131426,Private Williamsburg Co-living Room Madison 3L-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68765,-73.93208,Private room,42,30,1,2019-06-16,1,27,339 +30131491,Prime location cozy studio,53241793,Anastasia,Manhattan,Hell's Kitchen,40.76207,-73.98935,Entire home/apt,160,1,51,2019-07-05,7.50,1,25 +30131676,Elegant & Cozy Room in Hell's Kitchen,226414315,Erica,Manhattan,Hell's Kitchen,40.76802,-73.9906,Private room,130,2,5,2019-06-23,0.71,1,78 +30131807,$2800,226414996,John,Queens,Ditmars Steinway,40.77269,-73.90626,Entire home/apt,90,14,1,2019-01-07,0.16,2,19 +30131908,Private room in Upper East Side |Near Central Park,79194704,Fernanda,Manhattan,East Harlem,40.78721,-73.94131,Private room,99,1,1,2018-11-26,0.13,1,0 +30132025,Room for 3 and 5 minute walk to train!,105248014,Kevin,Brooklyn,East Flatbush,40.64574,-73.94675,Private room,50,1,46,2019-07-05,6.03,2,34 +30132508,Newly Renovated Garden Apt in Brooklyn Brownstone!,182990602,Jamie,Brooklyn,Clinton Hill,40.69205,-73.96646,Entire home/apt,150,2,41,2019-07-01,5.42,1,60 +30132666,Sunny Room in Astoria,42870202,Greg,Queens,Astoria,40.75978,-73.91748,Private room,80,7,1,2018-12-17,0.15,1,8 +30132711,"Spacious And Sunny Apartment, Private Roof Deck!",2446722,Amanda,Brooklyn,Bedford-Stuyvesant,40.69176,-73.95396,Entire home/apt,120,3,22,2019-06-24,3.07,1,16 +30133020,Beautiful 1-BedroomApt in Midtown NYC Manhattan!,1813055,Moshe,Manhattan,Midtown,40.75876,-73.96153,Entire home/apt,162,1,0,,,1,51 +30133397,BEAUTIFUL PRIVATE ROOM IN THE HOUSE,204906313,Iryna,Brooklyn,Sheepshead Bay,40.59099,-73.94856,Private room,60,1,56,2019-07-03,7.24,3,48 +30133439,"Cozy, sunny room in best neighborhood - Chelsea",33529908,Michelle,Manhattan,Chelsea,40.74172,-73.99937,Private room,66,5,0,,,1,5 +30133610,Cozy Mid-Town East Penthouse With Terrace,3202935,Cricket,Manhattan,Midtown,40.75199,-73.9725,Entire home/apt,350,3,17,2019-05-30,2.49,1,33 +30134087,Beautiful home in the heart of Manhattan.,83699356,Luke,Manhattan,NoHo,40.72746,-73.99288,Entire home/apt,150,6,0,,,1,0 +30134327,Large Studio near Lincoln Center,38334307,Missy,Manhattan,Upper West Side,40.77848,-73.97996,Entire home/apt,150,1,7,2018-12-31,0.95,1,0 +30137792,Small cozy private room near time square,215944788,Kay,Manhattan,Chelsea,40.74337,-73.99423,Private room,85,3,15,2019-03-17,2.13,3,1 +30141411,Renewed private cozy room next to the Central Park,126653377,Sergii,Manhattan,Harlem,40.80348,-73.95775,Private room,50,30,1,2019-01-16,0.17,6,304 +30142833,Brand New Modern Apt in Fi-Di Manhattan New York,61116037,Jackie,Manhattan,Financial District,40.70428,-74.00707,Entire home/apt,550,2,30,2019-06-23,3.96,1,72 +30143717,"Bright, modern 2 bedroom oasis middle of Flatiron!",46068130,Laura,Manhattan,Flatiron District,40.7443,-73.99056,Entire home/apt,225,5,4,2019-06-04,0.54,2,1 +30144241,Private Room in the Heart of Harlem,6480134,Johanna,Manhattan,Harlem,40.82293,-73.93958,Private room,70,4,8,2019-06-03,1.26,2,102 +30144337,Brooklyn Condo w/ City Views,44434863,Johnathan,Brooklyn,Sunset Park,40.64564,-74.01867,Private room,75,1,1,2018-12-28,0.15,1,365 +30144719,"Gorgeous, Huge Artist's Loft in Williamsburg",51364990,Jasper,Brooklyn,Williamsburg,40.71361,-73.95703,Entire home/apt,195,2,5,2019-06-30,1.61,1,7 +30145754,Large shared apartment in Alphabet City,113675409,Adam,Manhattan,East Village,40.72724,-73.97601,Private room,1880,180,0,,,1,358 +30145840,Luxurious private room near subway B/C stations,126653377,Sergii,Manhattan,Harlem,40.80289,-73.95813,Private room,63,30,2,2019-02-28,0.32,6,335 +30146330,Room available in Bushwick!,156237907,Ariadna,Brooklyn,Bushwick,40.69499,-73.90994,Private room,40,5,1,2018-11-27,0.13,1,250 +30146411,Luxury West Village private Townhouse 5B Garden,101080203,Luxury Property,Manhattan,Gramercy,40.73652,-73.98618,Entire home/apt,3000,1,1,2018-12-16,0.15,1,365 +30146882,"Exquisite Private room Central Park Subway A,B,C",126653377,Sergii,Manhattan,Harlem,40.80521,-73.95592,Private room,63,30,1,2019-04-20,0.37,6,1 +30146925,Sweet and modern 2BR getaway in Bed-Stuy,34277028,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68633,-73.92728,Entire home/apt,150,3,15,2019-06-10,2.13,1,77 +30147304,"Cozy private room near, Upper Westside CentralPark",126653377,Sergii,Manhattan,Harlem,40.80447,-73.95589,Private room,63,30,0,,,6,364 +30147493,NoLIta / Soho 1 bedroom oasis,2743475,Jenny,Manhattan,Nolita,40.72224,-73.99675,Entire home/apt,165,3,5,2019-02-06,0.74,1,0 +30148490,"Beautiful, large Vinegar Hill apartment.",226517382,Caspar,Brooklyn,Navy Yard,40.70159,-73.9801,Private room,50,6,1,2018-12-20,0.15,1,0 +30148548,Cozy Bushwick Room for the holiday season!,198445878,Kevin,Brooklyn,Bushwick,40.70131,-73.93039,Private room,50,1,0,,,1,0 +30150357,"Sun-drenched, airy industrial loft in Brooklyn!",30381245,Cristian,Brooklyn,Bushwick,40.69968,-73.93588,Private room,85,1,4,2019-07-03,0.61,1,1 +30150406,Ditmas Park Affordable Luxury Living-Private Rm,204541838,Diana,Brooklyn,Flatbush,40.64308,-73.96508,Private room,150,3,2,2019-06-19,0.27,2,364 +30150667,Private Room in Manhattan,226531905,Daisuke,Manhattan,Two Bridges,40.71261,-73.99475,Private room,62,1,7,2019-01-02,0.93,1,58 +30151378,1min from the subway station 20min to Manhattan,55468128,Reina,Brooklyn,Bedford-Stuyvesant,40.69107,-73.95597,Private room,50,1,13,2019-06-23,1.74,7,264 +30152036,1 BEDROOM in Brooklyn,54606969,Daniela,Brooklyn,Fort Greene,40.68412,-73.96951,Private room,60,7,3,2019-01-06,0.42,1,250 +30152177,PRIME WEST / CENTRAL VILLAGE LARGE STUDIO,217293060,Mohan,Manhattan,Greenwich Village,40.73313,-73.99692,Entire home/apt,299,6,0,,,4,0 +30152553,Stunning one bedroom with skylight and loft!,28695751,Ian & Wendy,Brooklyn,Park Slope,40.67958,-73.97816,Entire home/apt,345,3,10,2019-04-14,1.38,2,0 +30153101,2BR - Great Deal in the Trendy East Village,855079,Nicholas,Manhattan,East Village,40.72829,-73.98452,Entire home/apt,92,1,2,2018-12-29,0.29,3,0 +30153309,1 Bedroom with Clinton Hill Charm,88777320,Eli,Brooklyn,Clinton Hill,40.68658,-73.96752,Private room,241,1,2,2019-03-24,0.47,1,139 +30153367,Private Room perfect for Tourists,43981373,Celeste,Bronx,Concourse,40.83488,-73.91988,Private room,45,2,3,2019-06-16,0.57,1,0 +30153527,"Spacious Renovated Bright, by Prospect Park",14987061,Vera,Brooklyn,Flatbush,40.6478,-73.96091,Entire home/apt,125,2,3,2019-06-16,0.40,1,1 +30153699,Luxury Apartment (1 Bedroom w/ twin beds),163152195,Zakiyyah,Bronx,Port Morris,40.80747,-73.92766,Private room,145,1,7,2019-06-23,1.12,1,360 +30154053,Your Retreat on the Lower East Side,55299396,Courtney,Manhattan,Chinatown,40.71629,-73.98975,Private room,275,2,6,2019-06-09,2.28,1,85 +30154255,Designer Downtown Loft,19168930,Hampton,Manhattan,East Village,40.73298,-73.98768,Entire home/apt,495,2,6,2019-07-01,0.82,1,230 +30155157,Large room near CUMC....,222749009,Hana,Manhattan,Washington Heights,40.84216,-73.94227,Private room,50,1,4,2019-06-07,1.02,3,71 +30155262,Room on Forest Hills,34508000,Venera,Queens,Rego Park,40.72276,-73.85683,Private room,40,1,6,2018-12-07,0.79,1,0 +30155394,New york Multi-unit building,208235184,Linda,Brooklyn,Greenpoint,40.72305,-73.94576,Entire home/apt,195,1,0,,,1,12 +30155402,Large room near Columbia uni med school,222749009,Hana,Manhattan,Washington Heights,40.84241,-73.94264,Private room,50,1,3,2019-04-29,0.39,3,180 +30155444,Cozy Room with private bathroom in Crown Heigths,226562416,Saireth,Brooklyn,East Flatbush,40.66093,-73.93893,Private room,69,1,18,2019-06-30,2.48,1,175 +30155455,Manhattan apt in the best part of NYC,53887230,Danielle,Manhattan,Washington Heights,40.85042,-73.93649,Entire home/apt,120,5,1,2019-01-05,0.16,1,231 +30156697,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73181,-74.00606,Entire home/apt,300,3,21,2019-07-01,5.25,5,308 +30156908,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73389,-74.00646,Entire home/apt,285,3,12,2019-07-04,1.76,5,313 +30157285,"Newly renovated, cozy 1 br appt great location!!!",157687888,Maksim,Brooklyn,Bensonhurst,40.61072,-73.98533,Entire home/apt,90,2,53,2019-06-27,7.07,1,36 +30157535,New York with a hint of European,226572566,Sophia,Manhattan,Upper East Side,40.77066,-73.94993,Entire home/apt,140,5,24,2019-06-25,3.35,1,48 +30157585,Master bedroom,226574177,Robert,Manhattan,Harlem,40.82894,-73.94568,Private room,46,1,1,2018-11-21,0.13,1,179 +30158061,Beautiful Williamsburg Bedroom by McCarren Park,8189649,Samantha,Brooklyn,Williamsburg,40.71876,-73.94436,Private room,96,3,0,,,1,0 +30158174,SWEET + SUNNY WILLIAMSBURG SANCTUARY,4085985,Kimberly,Brooklyn,Williamsburg,40.71134,-73.96059,Entire home/apt,200,3,0,,,1,28 +30158357,Room in Bushwick Apartment,50755816,Tali,Brooklyn,Bushwick,40.69631,-73.92944,Private room,37,1,2,2019-02-18,0.34,1,0 +30158735,"Spacious 2 Bedroom, LES, Amazing Rooftop",146638424,Sean,Manhattan,East Village,40.72141,-73.98111,Entire home/apt,134,1,2,2019-02-10,0.27,1,0 +30158743,Stay in Lovely 2 BR/1 BA Flatbush Apartment,95114505,Aiesha & Stacy,Brooklyn,East Flatbush,40.64874,-73.94467,Entire home/apt,150,3,3,2019-06-30,3,1,0 +30158934,"Beautifull 2BDR, Prime Location, Quiet, Elevator",226587084,Andrea,Manhattan,Financial District,40.70816,-74.0084,Entire home/apt,195,30,13,2019-07-05,4.29,1,305 +30159356,Unbelievable view in midtown high rise,57328653,Esther,Manhattan,Midtown,40.75886,-73.96374,Private room,90,60,0,,,2,64 +30159383,2 BEDROOM EUROPEAN CHIC CENTRAL PARK APARTMENT,6524294,Natascha,Manhattan,Upper East Side,40.7843,-73.95745,Entire home/apt,450,5,5,2019-06-29,0.71,2,345 +30159757,PRIVET ROOM FOR YOUR VACATION NEAR Central Park !!,214137767,Anna,Manhattan,East Harlem,40.78572,-73.94468,Private room,100,1,13,2019-05-24,1.78,1,270 +30160167,Warm little building 温馨小筑 따뜻한 작은 건물 D,92706260,Kane,Queens,Flushing,40.73941,-73.82099,Private room,49,1,19,2019-06-11,2.50,5,48 +30160427,Huge & Cozy Studio in the Upper East Side,51366012,Sabrina,Manhattan,Upper East Side,40.76044,-73.96097,Entire home/apt,189,2,3,2019-07-01,2.43,1,29 +30161160,Manhattan - Double Double,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75606,-73.99662,Private room,199,1,21,2019-06-23,2.96,30,133 +30161268,Comfortable Bedroom Astoria,53518745,Fiach,Queens,Astoria,40.76171,-73.91725,Private room,300,3,2,2019-05-12,0.32,1,54 +30161460,Madison Square - Double Double,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75491,-73.99644,Private room,199,1,24,2019-06-21,3.27,30,155 +30161645,Midtown West - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7552,-73.99672,Private room,179,1,10,2019-05-05,1.36,30,175 +30161866,Time Square - Comfy Standard Queen,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75652,-73.99826,Private room,179,1,24,2019-06-09,3.23,30,165 +30168118,Comfy private BR for a couple! Near train & mall,137358866,Kazuya,Queens,Woodside,40.74041,-73.89029,Private room,49,30,3,2019-05-31,0.50,103,195 +30169107,Lovely private room with private bath in Brooklyn,41091852,Andrea,Brooklyn,Bedford-Stuyvesant,40.69338,-73.94328,Private room,75,1,29,2019-07-06,4.60,1,84 +30169470,LOWER EAST SIDE (private room),1384016,Ignacio,Manhattan,Lower East Side,40.71501,-73.98478,Private room,95,2,5,2019-06-18,0.71,1,165 +30171159,Perfect NYC Getaway 2-BR Apartment w/Garden access,66740918,Nancy,Brooklyn,Gowanus,40.66838,-73.99325,Entire home/apt,125,12,0,,,1,83 +30171467,Sam and Mala place is your home away from home,226664611,Samuel,Queens,South Ozone Park,40.68048,-73.8125,Entire home/apt,72,2,26,2019-06-18,3.80,2,317 +30172902,"Cozy 2 Beds in Private Bedroom: NYC ""LES"" Manhattn",226503876,Chi,Manhattan,Lower East Side,40.71284,-73.98861,Private room,75,5,14,2019-06-28,2.09,2,217 +30173614,Ditmas Park Affordable Luxury-Private Room,204541838,Diana,Brooklyn,Flatbush,40.64489,-73.96363,Private room,65,3,15,2019-06-24,2.05,2,208 +30173864,"Charming Apartment in Brooklyn, NY",49589973,Steven,Brooklyn,Fort Greene,40.68665,-73.97183,Private room,112,5,2,2019-04-15,0.37,1,12 +30174660,Room for Temporary Sublet Nov. 21`-28,226684665,Nicholas,Queens,Ridgewood,40.70673,-73.90071,Private room,40,1,0,,,1,0 +30175190,Hancock-Brooklyn Hospitality,226688121,Makeba,Brooklyn,Bedford-Stuyvesant,40.68504,-73.91699,Entire home/apt,175,1,16,2019-07-05,3.97,1,9 +30175521,The BEST LOCATION in Brooklyn,100935364,Kira,Brooklyn,Gowanus,40.68234,-73.98129,Private room,44,2,3,2019-01-06,0.47,2,0 +30175606,"Quiet, Large, & Cozy Bedroom in Bushwick Apt - 3",9864136,Anthony,Brooklyn,Bushwick,40.68513,-73.91385,Private room,50,30,0,,,26,365 +30176919,Cali-Retro Duplex in Historic Greenpoint,6701890,Jenny,Brooklyn,Greenpoint,40.73128,-73.95439,Private room,95,7,1,2019-04-13,0.34,2,0 +30177307,2 Bedroom Presidential Suite in Midtown Manhattan,154340775,Sandy,Manhattan,Midtown,40.75172,-73.97191,Entire home/apt,500,4,0,,,1,0 +30177516,Impressive living in the prime location,21651849,Coco,Manhattan,Upper West Side,40.7723,-73.99363,Entire home/apt,188,2,12,2019-06-04,1.93,1,0 +30178785,Beautiful cozy studio,186701037,Gabriela,Brooklyn,Dyker Heights,40.62877,-74.00918,Entire home/apt,75,1,0,,,2,0 +30179231,True 2 Bedroom in Elevator Building in Prime LES,107562106,Dan,Manhattan,Lower East Side,40.71983,-73.98686,Entire home/apt,295,5,0,,,1,0 +30179242,Luxury 5bed/2bath on Central Park!,222302376,Yves,Manhattan,Upper West Side,40.79396,-73.96311,Entire home/apt,400,4,39,2019-07-06,5.18,1,265 +30179548,GREENWICH Village Noho Luxury RooftopJuly4Th view,226715173,G,Manhattan,East Village,40.72828,-73.98823,Entire home/apt,125,2,1,2019-05-30,0.75,2,365 +30179869,GREENWICH VILLAGE w fireworks July4thRooftopView!,226715173,G,Manhattan,East Village,40.73031,-73.98666,Entire home/apt,139,2,2,2019-05-06,0.32,2,365 +30180208,Nice bedroom in cosy Harlem apartment,75349777,Charles,Manhattan,Harlem,40.81533,-73.95733,Private room,70,3,3,2019-01-02,0.42,1,0 +30181399,Bright Quiet Room in the West Village,108890111,Miguel,Manhattan,West Village,40.73045,-74.00266,Private room,90,2,1,2019-01-02,0.16,1,0 +30181691,Sonder | 180 Water | Incredible 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70637,-74.00645,Entire home/apt,302,29,0,,,327,309 +30181945,Sonder | 180 Water | Premier 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70771,-74.00641,Entire home/apt,229,29,1,2019-05-29,0.73,327,219 +30182093,Chic Chelsea One Bedroom Oasis,12827163,Pamela,Manhattan,Chelsea,40.74057,-73.99908,Entire home/apt,200,5,0,,,1,0 +30182137,Sophisticated Upper East Apt Best Location,61391963,Corporate Housing,Manhattan,Upper East Side,40.7719,-73.95521,Entire home/apt,133,30,3,2019-05-18,0.69,91,341 +30183115,Luxury apartment in Time Square with in-unit wash,39329047,C,Manhattan,Hell's Kitchen,40.76186,-73.99737,Entire home/apt,150,10,4,2019-02-15,0.58,1,0 +30183428,Uptown Cozy Apartment,11547083,Sabrina,Manhattan,Upper West Side,40.79757,-73.96065,Entire home/apt,135,2,2,2019-06-03,0.32,1,1 +30184318,Brownstone House Spa in Bed-Stuy,19591194,Ali,Brooklyn,Bedford-Stuyvesant,40.68589,-73.94236,Entire home/apt,175,5,1,2019-01-01,0.16,1,84 +30184570,Cozy room in the heart of Williamsburg.,188477517,Jane,Brooklyn,Williamsburg,40.7107,-73.95846,Private room,100,1,1,2018-12-09,0.14,1,0 +30186121,1 Bedroom - Sleeps 3 - Minutes from Subway & CP!,21226117,Robbie,Manhattan,Upper East Side,40.77553,-73.95507,Entire home/apt,345,7,0,,,1,0 +30186549,⋆Brooklyn Brownstone Suite⋆Great Location⋆,145248567,Sam,Brooklyn,Crown Heights,40.66436,-73.95275,Entire home/apt,120,3,43,2019-06-30,5.94,1,56 +30186632,**Bed-Stuy Studio**,2823246,Paige,Brooklyn,Bedford-Stuyvesant,40.68377,-73.95804,Entire home/apt,70,4,1,2018-11-23,0.13,1,0 +30186710,Private bedroom at East Williamsburg,13608859,Ceren,Brooklyn,Williamsburg,40.70316,-73.94914,Private room,110,1,13,2019-05-26,1.85,1,6 +30187331,Prime Area Room/Astoria/LGA 5 minutes,52599987,Jess,Queens,Ditmars Steinway,40.77568,-73.90303,Private room,100,1,2,2018-12-09,0.27,1,0 +30187850,Cozy room one block away from Central Park!,226772729,Lucía,Manhattan,Upper West Side,40.79535,-73.9641,Private room,120,5,1,2019-01-19,0.18,1,0 +30188200,SOHO|LITTLE ITALY|CHINATOWN|HIDEOUT,117831982,Luke,Manhattan,Little Italy,40.71781,-73.99783,Private room,130,3,17,2019-06-23,2.34,1,84 +30189129,"BED IN A SHARED ROOM FOR A MAN NEAR MIDTOWN, NY. 3",221836975,Jon,Queens,Jackson Heights,40.74848,-73.89149,Shared room,35,2,1,2018-12-30,0.16,3,310 +30192717,Cozy studio in the heart of New York,132878036,Tae,Manhattan,Hell's Kitchen,40.76383,-73.98979,Entire home/apt,185,4,23,2019-06-27,3.05,1,230 +30193023,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #3,205031545,Red Awning,Manhattan,Midtown,40.75252,-73.96667,Entire home/apt,714,28,1,2019-02-03,0.19,49,257 +30193024,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #1,205031545,Red Awning,Manhattan,Midtown,40.75436,-73.9671,Entire home/apt,675,28,1,2019-06-02,0.81,49,253 +30193032,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #6,205031545,Red Awning,Manhattan,Midtown,40.75363,-73.96648,Entire home/apt,675,28,2,2019-02-17,0.32,49,243 +30193034,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #12,205031545,Red Awning,Manhattan,Midtown,40.754,-73.96531,Entire home/apt,675,28,6,2019-04-25,0.95,49,253 +30193035,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #7,205031545,Red Awning,Manhattan,Midtown,40.75381,-73.96724,Entire home/apt,675,28,2,2019-02-17,0.31,49,224 +30193036,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #11,205031545,Red Awning,Manhattan,Midtown,40.75404,-73.9671,Entire home/apt,675,28,0,,,49,241 +30193131,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #1,205031545,Red Awning,Manhattan,Midtown,40.75385,-73.96536,Entire home/apt,956,4,2,2018-12-20,0.29,49,80 +30193136,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #10,205031545,Red Awning,Manhattan,Midtown,40.75276,-73.96582,Entire home/apt,675,28,1,2019-02-26,0.23,49,251 +30193147,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #2,205031545,Red Awning,Manhattan,Midtown,40.75408,-73.96568,Entire home/apt,675,28,0,,,49,254 +30193154,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #9,205031545,Red Awning,Manhattan,Midtown,40.75439,-73.96647,Entire home/apt,675,28,4,2019-05-26,0.63,49,253 +30193183,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #5,205031545,Red Awning,Manhattan,Midtown,40.75232,-73.96696,Entire home/apt,675,28,1,2019-05-20,0.60,49,234 +30193201,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #8,205031545,Red Awning,Manhattan,Midtown,40.75371,-73.96515,Entire home/apt,675,28,0,,,49,251 +30193239,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #10,205031545,Red Awning,Manhattan,Midtown,40.75271,-73.96575,Entire home/apt,714,28,1,2019-02-05,0.19,49,257 +30193258,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #12,205031545,Red Awning,Manhattan,Midtown,40.75376,-73.96644,Entire home/apt,714,28,1,2019-01-03,0.16,49,257 +30193314,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #5,205031545,Red Awning,Manhattan,Midtown,40.75447,-73.96573,Entire home/apt,714,28,0,,,49,257 +30193325,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #2,205031545,Red Awning,Manhattan,Midtown,40.75439,-73.96648,Entire home/apt,956,4,0,,,49,121 +30193326,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #4,205031545,Red Awning,Manhattan,Midtown,40.75373,-73.96536,Entire home/apt,714,28,0,,,49,257 +30193344,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #8,205031545,Red Awning,Manhattan,Midtown,40.75443,-73.96594,Entire home/apt,714,28,0,,,49,257 +30193345,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #1,205031545,Red Awning,Manhattan,Midtown,40.75402,-73.96724,Entire home/apt,714,28,0,,,49,252 +30193375,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #4,205031545,Red Awning,Manhattan,Midtown,40.75385,-73.96573,Entire home/apt,675,28,1,2019-05-20,0.60,49,234 +30193397,*NO GUEST SERVICE FEE* Beekman Tower Studio Suite #3,205031545,Red Awning,Manhattan,Midtown,40.75428,-73.96566,Entire home/apt,675,28,1,2018-12-29,0.16,49,225 +30193408,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #11,205031545,Red Awning,Manhattan,Midtown,40.7538,-73.96564,Entire home/apt,714,28,0,,,49,257 +30193428,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #9,205031545,Red Awning,Manhattan,Midtown,40.75271,-73.96638,Entire home/apt,714,28,0,,,49,257 +30193432,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #7,205031545,Red Awning,Manhattan,Midtown,40.75264,-73.96543,Entire home/apt,714,28,0,,,49,257 +30193485,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #6,205031545,Red Awning,Manhattan,Midtown,40.75459,-73.96566,Entire home/apt,714,28,0,,,49,257 +30193536,*NO GUEST SERVICE FEE* Beekman Tower One Bedroom Suite #2,205031545,Red Awning,Manhattan,Midtown,40.75403,-73.96714,Entire home/apt,714,28,0,,,49,250 +30195586,Room in New York,178733071,Júnior,Queens,Ditmars Steinway,40.7747,-73.90115,Private room,50,2,0,,,1,171 +30198140,Beautiful Room in Brooklyn!!,15640230,Susana,Brooklyn,Crown Heights,40.66433,-73.93383,Private room,40,30,0,,,4,354 +30198386,Big Cozy Brand New Sunny Studio in Flushing NY!,226769067,Mike,Queens,Flushing,40.75982,-73.80629,Entire home/apt,59,1,32,2019-07-04,4.62,1,24 +30198546,Clean and Cozy Private Room in Lower East Side,226832980,Victor,Manhattan,Lower East Side,40.71744,-73.98957,Private room,115,3,19,2019-07-01,2.81,1,0 +30199043,Spacious room in Luxury Chelsea Apt,212033848,Stephanie,Manhattan,Chelsea,40.74453,-73.99196,Private room,150,1,4,2019-07-06,0.55,1,1 +30199622,Near Subway and Central Park :),226839517,Tamara,Manhattan,Midtown,40.75714,-73.96748,Private room,90,1,42,2019-06-23,5.68,1,45 +30199749,Entire 3 bed apart (4 double beds) 117st & Lex.,226839928,Marion,Manhattan,East Harlem,40.79844,-73.94048,Entire home/apt,220,5,0,,,1,205 +30199980,"Hidden gem in Park Slope, 19 mins away from NYC!!!",36728751,Emily,Brooklyn,South Slope,40.66181,-73.98218,Entire home/apt,130,4,2,2019-05-26,0.28,1,179 +30200030,"Sunny, Charming, Private One-Bedroom in Brooklyn",11068937,Kara,Brooklyn,Clinton Hill,40.68325,-73.96487,Entire home/apt,110,4,4,2019-05-21,0.65,2,0 +30200332,"NYUW 05-0 Upper West: NYC, Soho Luxury",39890192,Laura,Manhattan,Morningside Heights,40.80402,-73.96345,Entire home/apt,266,14,2,2019-05-27,0.78,12,86 +30200473,"Cozy, Clean and Quiet Private Room - Wifi Access",226838925,Aralis,Queens,Glendale,40.6953,-73.898,Private room,100,1,5,2019-05-28,0.68,1,0 +30200487,Upper east private bedroom,78971832,Yue,Manhattan,Upper East Side,40.76804,-73.95951,Private room,73,3,0,,,1,0 +30200750,Sunlit Private Upper Manhattan Bedroom,25769417,Daniel,Manhattan,Harlem,40.82022,-73.95309,Private room,150,100,0,,,1,88 +30200791,Loft Living in the Heart of Bushwick,949070,Emily,Brooklyn,Bushwick,40.70887,-73.92154,Entire home/apt,200,3,1,2019-01-01,0.16,1,5 +30200839,Brooklyn apartment 20 min away from Manhattan,226846427,Fidencio,Brooklyn,Bay Ridge,40.63921,-74.02474,Entire home/apt,90,3,19,2019-06-24,2.75,1,52 +30201476,"Smart Studio in Trendy Tribeca, Indoor pool + Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71532,-74.00645,Entire home/apt,303,30,1,2019-02-08,0.20,232,331 +30201810,Beautiful and Cozy Apartment in heart of NYC,226565802,Oksana,Queens,Rego Park,40.72664,-73.85884,Entire home/apt,250,2,1,2019-01-21,0.18,1,365 +30202750,"Large 2 BR, loft-like apartment in historic house",17011664,Ann Marie,Staten Island,St. George,40.64682,-74.08575,Entire home/apt,86,5,1,2019-01-03,0.16,1,43 +30203891,"Classic, yet Unconventional Tribeca NYC Extra Room",221595358,Karen,Manhattan,Tribeca,40.71941,-74.00856,Private room,80,1,38,2019-06-28,5.04,2,329 +30205007,Quaint 1 bedroom tenement apartment in E.Village,72326431,Brianna,Manhattan,East Village,40.72573,-73.98841,Entire home/apt,100,2,11,2019-06-29,1.47,1,102 +30205920,Massive Charming Loft,17966682,David,Brooklyn,Bushwick,40.69498,-73.90698,Entire home/apt,179,1,5,2019-01-14,0.70,1,365 +30205956,Large 1 bdr apt + balcony Williamsburg - Bedford,16081505,Georgia,Brooklyn,Williamsburg,40.71853,-73.96415,Entire home/apt,220,2,6,2019-06-27,0.84,1,16 +30206026,Massive Loft in the Heart of Union square,51340124,Nikki,Manhattan,Chelsea,40.73851,-73.99213,Entire home/apt,3000,2,0,,,2,0 +30206080,NEW Bright upper east side 1 bedroom!,219718268,David,Manhattan,Upper East Side,40.76917,-73.95367,Entire home/apt,230,2,13,2019-03-11,1.78,1,0 +30208046,Lovely & Sunny bedroom in Astoria ( Female only),169490939,Ikrame,Queens,Astoria,40.76635,-73.9205,Private room,89,3,2,2019-04-16,0.71,2,208 +30208369,"Cozy and home feeling, 1-bedroom apt near subway",117648324,Utah,Brooklyn,Gravesend,40.60626,-73.9754,Private room,40,1,1,2018-12-02,0.14,1,335 +30208544,Penthouse in FiDi,73128753,Haider,Manhattan,Financial District,40.70542,-74.00678,Private room,105,2,3,2019-06-30,0.47,1,8 +30209908,"Centrally Located, Cozy One Bedroom",38649650,Shalev,Manhattan,Hell's Kitchen,40.76826,-73.98719,Entire home/apt,175,7,2,2019-05-13,0.79,1,188 +30209958,Lovely exposed brick room to rent in Williamsburg,27716292,Ianthe,Brooklyn,Williamsburg,40.71225,-73.94961,Private room,50,2,2,2019-07-01,0.92,1,0 +30210441,Coziness from a westelm catalog,226906712,Sade,Manhattan,Harlem,40.8077,-73.94953,Private room,127,1,0,,,1,89 +30212188,Manhattan West - Standard Queen Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75523,-73.99827,Private room,107,1,25,2019-05-27,3.52,30,169 +30212514,Manhattan West - Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75506,-73.99803,Private room,199,1,7,2019-02-03,0.95,30,166 +30212526,Rustic and Artsy,37621814,Stacy,Brooklyn,South Slope,40.66493,-73.98136,Entire home/apt,125,1,27,2019-07-07,3.82,1,18 +30212741,New Kitchen&Bath : 5min ➡︎ Subway 20min ➡︎ TimeSQ,19303369,Hiroki,Queens,Jackson Heights,40.75074,-73.89339,Private room,43,30,1,2019-05-01,0.43,37,1 +30213232,30min➡︎TimesSQ 3min➡︎Subway New New New Building,204704622,Momoyo,Queens,Elmhurst,40.73925,-73.87745,Private room,35,29,2,2019-04-24,0.38,7,1 +30213410,30min➡︎LGA New&Clean Apt with Cozy Terrace Space,204704622,Momoyo,Queens,Elmhurst,40.73885,-73.87553,Private room,33,29,2,2019-06-15,0.71,7,1 +30215130,Large Newly Renovated 1 Bedroom Apartment,27245607,Sidney,Manhattan,West Village,40.73331,-74.00502,Entire home/apt,165,1,2,2019-03-11,0.32,1,0 +30218133,The Exclusive Studio Manhattan NYC,13133052,Bruno,Manhattan,Midtown,40.74749,-73.9869,Entire home/apt,182,3,16,2019-07-01,2.31,1,301 +30219534,The Cozy Studio Midtown Manhattan,226958612,Maria,Manhattan,Midtown,40.74741,-73.98732,Entire home/apt,227,3,16,2019-06-30,2.44,1,321 +30223426,Clean Room near M & R train. Close to mall & LGA,137358866,Kazuya,Queens,Elmhurst,40.73477,-73.87858,Private room,41,30,2,2019-05-28,0.76,103,268 +30224906,Luminous one bedroom in the heart of east village,2271676,Gautier,Manhattan,East Village,40.72566,-73.985,Entire home/apt,292,2,0,,,1,0 +30224962,Designer studio in the heart of East Village,41827902,Prangchat,Manhattan,East Village,40.72853,-73.98762,Private room,115,2,6,2019-04-09,0.87,1,23 +30225205,Relax De Dios,180311428,Every,Bronx,Allerton,40.86757,-73.8649,Private room,60,2,1,2019-01-01,0.16,1,363 +30225291,The Lover´s Apartment in Midtown Manhattan,226979522,Alexia,Manhattan,Midtown,40.74779,-73.98859,Entire home/apt,135,4,9,2019-06-21,1.46,1,314 +30226474,Jackie Kennedy's Nook,86973566,Karina,Bronx,City Island,40.85056,-73.78829,Private room,65,3,2,2018-12-09,0.27,1,89 +30226855,Upper East side cozy room,226927431,Tina,Manhattan,Upper East Side,40.76734,-73.95233,Private room,100,4,28,2019-07-03,3.80,2,40 +30226880,Big room near Central Park,206648175,Bella,Manhattan,East Harlem,40.78535,-73.94268,Private room,99,2,12,2019-06-12,1.64,1,176 +30227054,Bright and Sunny Luxury Modern Midtown Apartment,50240612,Kavya,Manhattan,Midtown,40.74903,-73.98528,Entire home/apt,375,1,7,2019-07-02,1.10,1,0 +30227502,COZY ONE BEDROOM APARTMENT IN MIDTOWN EAST,227007194,Ele,Manhattan,Midtown,40.75339,-73.96765,Entire home/apt,250,1,1,2018-11-24,0.13,1,64 +30227667,"Lovely studio next to Penn Station ,",8073725,Ronni,Manhattan,Chelsea,40.74875,-73.99697,Entire home/apt,175,1,24,2019-06-25,3.17,1,365 +30227942,"Private Room, Bath & Entry, King Bed - NYC",2156741,Renu,Queens,Forest Hills,40.73622,-73.8466,Entire home/apt,90,2,37,2019-07-05,5.05,1,21 +30229400,Upper East Side Sofa Bed (Shared space),227020247,Esteban,Manhattan,Upper East Side,40.77112,-73.95652,Shared room,49,2,17,2019-06-03,2.31,1,39 +30229464,Cozy Room close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68811,-73.95627,Private room,65,2,18,2019-06-03,2.48,4,343 +30229561,HARLEM CLEAN & COMFY SPACE,227021565,Alexander,Manhattan,Harlem,40.82669,-73.93832,Private room,44,1,15,2019-06-20,2.38,1,45 +30229776,Dandy Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68795,-73.95614,Private room,65,2,9,2019-04-29,1.29,4,311 +30229901,Enjoyable Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.68976,-73.95639,Private room,65,2,13,2019-06-07,2.15,4,321 +30229988,HOLIDAY SEASON IN MIDTOWN NY LARGE & SUNNY STUDIO,73839962,Raphael,Manhattan,Midtown,40.75421,-73.96834,Entire home/apt,246,3,1,2019-01-02,0.16,1,365 +30230938,Modern looking private room in Brooklyn's heart,48692009,Luc,Brooklyn,Flatbush,40.64627,-73.95396,Private room,50,1,0,,,1,0 +30231026,"Hell’s kitchen studio, Time Square/Javitz center",86171061,Abraham,Manhattan,Hell's Kitchen,40.75811,-73.99527,Entire home/apt,300,2,5,2019-06-04,0.80,1,0 +30231478,Big apartment by Prospect Park 15 min to Manhattan,4982459,Mariana,Brooklyn,Flatbush,40.65333,-73.96552,Entire home/apt,350,3,0,,,3,0 +30231630,"15 Min to Manhattan, 10 Min to LGA - Cozy Home",227037845,Mustak And Farzana,Queens,Maspeth,40.7385,-73.9065,Entire home/apt,99,1,43,2019-07-04,5.73,1,231 +30231632,Lower East Side Private Bedroom,72614493,Gino,Manhattan,Lower East Side,40.71246,-73.99069,Private room,355,2,10,2019-06-16,2.34,1,75 +30231655,Cozy 2 bedroom apartment (15 min from Manhattan),215919088,Vincent,Brooklyn,Williamsburg,40.712,-73.95397,Entire home/apt,120,3,2,2019-05-29,0.32,1,0 +30231880,West Village/Greenwich Village Room With A View,2647893,Deedee,Manhattan,Greenwich Village,40.73138,-73.99976,Private room,125,10,0,,,1,347 +30232126,3 BEDROOMS/2 BATHS ENTIRE APARTMENT 10 MINS to JFK,107915864,Mina,Queens,Howard Beach,40.66682,-73.85161,Entire home/apt,130,1,0,,,4,285 +30232726,Private Room 15 minutes away to Central Park,154843406,Eugene,Manhattan,Harlem,40.83001,-73.94925,Private room,69,3,11,2019-06-25,1.45,2,167 +30232758,Clean & Spacious Duplex Bushwick Gem (w. Backyard),6004082,LeAnne And Keith,Brooklyn,Bushwick,40.69344,-73.92245,Entire home/apt,175,5,20,2019-07-02,2.84,1,12 +30233548,"Relaxing, Riverbank Park, West Harlem",45835291,Shareef,Manhattan,Harlem,40.82206,-73.95573,Private room,50,7,35,2019-06-27,4.73,6,11 +30234593,Spice Island Hotspot two,224042160,Pettrina,Brooklyn,East Flatbush,40.65236,-73.94965,Private room,38,2,9,2019-07-01,1.58,3,357 +30235085,A taste of Brooklyn,227063506,Gabriel,Brooklyn,Sunset Park,40.6475,-74.00786,Entire home/apt,64,5,8,2019-07-01,1.22,1,0 +30235118,*Fresh Budget Room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68176,-73.91435,Private room,40,2,6,2019-05-10,1.67,10,363 +30235273,*Easy check in Budget Room!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68197,-73.91235,Private room,40,2,11,2019-07-04,3.17,10,317 +30235341,*Ideal room for travelers with a budget!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.6818,-73.9139,Private room,55,2,5,2019-06-02,1.70,10,326 +30235404,*Delightful budget room for travelers!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68105,-73.91256,Private room,40,2,7,2019-07-05,2.69,10,353 +30235482,*Groovy Budget room for the traveler!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68052,-73.91216,Private room,45,2,5,2019-07-05,1.36,10,362 +30235527,*Hospitable room for the traveler!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68249,-73.91276,Private room,50,3,3,2019-05-05,0.73,10,333 +30236202,BEST Bushwick Luxury Apt. 15-minutes to Manhattan,8998154,Gordon,Brooklyn,Bushwick,40.69347,-73.92448,Entire home/apt,99,2,12,2019-06-15,1.71,2,46 +30243242,Bedstuy Pad with Luxury and artistic touch!,133687324,Oto,Brooklyn,Bedford-Stuyvesant,40.6932,-73.94897,Entire home/apt,250,5,4,2019-01-18,0.55,1,0 +30244166,Gorgeous Midtown East Apt. Open Concept 1 Bedroom,225429345,Aldo,Manhattan,Midtown,40.75248,-73.97017,Entire home/apt,200,4,8,2019-05-25,1.10,1,363 +30246118,Amazing apt in Brooklyn close to Prospect Park A,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66166,-73.94084,Private room,70,1,19,2019-06-30,2.57,5,199 +30246323,Private cozy room near time square,215944788,Kay,Manhattan,Hell's Kitchen,40.75844,-73.98965,Private room,200,2,13,2019-06-06,1.82,3,224 +30246807,Stay into heart of Brooklyn close Prospect Park B,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66225,-73.94126,Private room,74,1,20,2019-06-23,2.83,5,125 +30246815,Sunny Apartment in Crown Heights,1850477,Michela,Brooklyn,Crown Heights,40.67728,-73.94536,Entire home/apt,120,3,0,,,2,0 +30247044,Great Room with Amazing View - 15 minutes to city,326465,Joshua,Brooklyn,Greenpoint,40.7247,-73.95378,Private room,88,7,1,2018-12-23,0.15,1,0 +30247556,Homey Apt - 5min walk to L Train + Free Cleaning!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70115,-73.91106,Private room,37,30,0,,,9,29 +30247719,Room into heart of Brooklyn close Prospect Park D,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66199,-73.94135,Private room,70,1,12,2019-06-30,1.86,5,119 +30248002,Modern apt Brooklyn's heart close Prospect Park C,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66191,-73.94137,Private room,70,1,7,2019-06-22,0.96,5,158 +30248715,Cozy Upper East Side studio,227152926,Elba,Manhattan,Upper East Side,40.76732,-73.95179,Entire home/apt,150,1,4,2019-06-05,0.59,1,49 +30249168,UWS Lofted Studio just off Central Park,27126531,Bronwyn,Manhattan,Upper West Side,40.77642,-73.97987,Entire home/apt,150,3,3,2019-01-02,0.42,1,0 +30249944,Corner-Unit Bedroom in Sun-filled Bushwick loft,149301266,Sophie,Brooklyn,Bushwick,40.70897,-73.92198,Private room,60,1,1,2018-12-07,0.14,1,0 +30250766,"Staten Island - Free Wifi, Parking Space, Near NYC",225160295,Yun,Staten Island,Rosebank,40.61438,-74.0664,Entire home/apt,138,1,51,2019-07-02,7.18,1,291 +30251543,Sunny floor-to-ceiling windows apartment in UES,3356798,Makedonka,Manhattan,Upper East Side,40.78139,-73.94678,Entire home/apt,150,30,1,2018-12-12,0.14,1,146 +30251760,Private bedroom in Manhattan close to subway,29688249,Habibi,Manhattan,Harlem,40.82582,-73.94276,Private room,82,1,6,2019-06-23,1.94,1,180 +30252034,A neat bedroom in a cozy 3-bedroom apartment,227179489,Ester,Manhattan,Roosevelt Island,40.76127,-73.95034,Private room,90,1,46,2019-07-01,6.30,1,27 +30252158,Temple of DreamZzz,227165163,Glory,Brooklyn,Kensington,40.64249,-73.97559,Private room,56,3,1,2018-12-24,0.15,1,47 +30252251,Private Luxury Suite in the Heart of Brooklyn,23501405,Emily,Brooklyn,Downtown Brooklyn,40.69051,-73.98398,Private room,249,1,20,2019-06-26,2.82,1,39 +30252654,Bowery bedroom w/ private bathroom great location,9370327,Sandra,Manhattan,Lower East Side,40.72097,-73.99274,Private room,120,3,6,2019-01-07,0.85,1,0 +30253236,SedaOn2 Dance Studio,140862407,Angelie,Bronx,Westchester Square,40.84378,-73.84469,Entire home/apt,670,1,2,2019-03-31,0.34,1,178 +30253910,Decent basement room in Williamsburg,58658843,Maxim,Brooklyn,Williamsburg,40.71146,-73.95632,Private room,55,1,27,2019-06-20,3.65,3,0 +30254229,"NEW! Spacious, Bright, Fam-Friendly BK Townhouse!",3624487,Christina,Brooklyn,Crown Heights,40.67339,-73.91415,Entire home/apt,149,3,31,2019-07-07,4.63,1,224 +30254510,Charming Two bedroom apartment in Greenpoint,4363775,O.,Brooklyn,Greenpoint,40.7319,-73.95739,Entire home/apt,114,31,0,,,3,219 +30254869,Studio within an Apt Private bathroom and entrance,63959641,Alejandro,Queens,Jackson Heights,40.75149,-73.87872,Private room,100,2,16,2019-07-07,2.55,1,134 +30255002,Large 1 BR apt in the heart of Flatiron (NYC),177058197,Joe,Manhattan,Flatiron District,40.73949,-73.98552,Entire home/apt,210,2,6,2019-07-07,1.58,1,9 +30255064,Apartment-Therapy-Featured Greenpoint Flat,2186425,Nicole,Brooklyn,Greenpoint,40.72457,-73.95435,Entire home/apt,100,60,1,2019-05-31,0.77,1,220 +30255425,Tiny Magic Room in Historic Park Slope Brownstone,24878388,Johanna,Brooklyn,Park Slope,40.67947,-73.97806,Private room,45,10,1,2019-01-01,0.16,2,250 +30255625,Lovely private bedroom in heart of Williamsburg,7340654,Jessica,Brooklyn,Williamsburg,40.71174,-73.94767,Private room,45,1,7,2018-12-22,0.97,1,0 +30256311,The Hampton,129162333,Mo,Queens,Howard Beach,40.66146,-73.85638,Entire home/apt,207,1,13,2019-06-23,1.84,1,346 +30256944,CozyHome Close2 LGA US OpenTennis 30min2 Manhattan,227219174,Jeba/Ashraf,Queens,East Elmhurst,40.76689,-73.87661,Entire home/apt,99,1,14,2019-07-05,7.12,1,138 +30256952,Warm little building 温馨小筑 따뜻한 작은 건물 G,92706260,Kane,Queens,Flushing,40.73888,-73.8206,Private room,45,1,33,2019-07-01,4.48,5,80 +30257236,Crown Heights Wellness Gem,3642820,Jesal,Brooklyn,Crown Heights,40.67672,-73.95839,Private room,80,2,11,2019-07-02,2.50,1,28 +30257515,Habitación privada en Bushwick.,115193518,Fede,Brooklyn,Bushwick,40.70508,-73.92419,Private room,42,7,0,,,3,0 +30258358,"Manhattan-LoVe, Upper West Side, Studio.",227165735,Sara,Manhattan,Upper West Side,40.77883,-73.9825,Shared room,139,3,0,,,2,88 +30262760,Close to transportation sleep share,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67797,-73.90924,Shared room,35,1,11,2019-06-10,1.51,17,89 +30264393,Hendrix Upstairs Oasis Rm #3,105878573,Tonisha,Brooklyn,East New York,40.66522,-73.88686,Private room,50,1,20,2019-05-31,2.82,5,62 +30264512,Hendrix Upstairs Oasis Rm #4,105878573,Tonisha,Brooklyn,East New York,40.66547,-73.8891,Private room,40,1,9,2019-06-21,2.11,5,64 +30264608,A slice of luxury In Cozy Chelsea loft!,226070943,Asia,Manhattan,Chelsea,40.74277,-74.00204,Entire home/apt,315,2,15,2019-07-05,2.09,1,365 +30264903,Bohemian Room for Rent,2346935,Dolores,Brooklyn,Crown Heights,40.67549,-73.94392,Private room,90,7,0,,,1,0 +30265098,Private Room in Brooklyn Near Subway,3445172,Maha,Brooklyn,Prospect-Lefferts Gardens,40.66383,-73.94907,Private room,50,12,2,2019-05-15,0.32,1,0 +30265397,Warm and cozy room,53502678,Alessandro,Queens,Sunnyside,40.7393,-73.9256,Private room,85,7,0,,,1,179 +30266212,Pvt Room in Charming Pet-Friendly Apt in Bedstuy.,42474896,Eric,Brooklyn,Bedford-Stuyvesant,40.68245,-73.95223,Private room,89,1,3,2019-04-21,0.45,1,48 +30266235,2nd floor of 2-family house available for December,227310832,Carol,Queens,Astoria,40.76789,-73.93512,Entire home/apt,1500,7,0,,,1,365 +30267337,"Stunning, modern apartment in Greenwich Village",196705969,Adam & Kath,Manhattan,Greenwich Village,40.72866,-74.0013,Entire home/apt,258,2,4,2019-05-28,0.61,1,10 +30268281,Sunny Lofted space with private bath,18576070,Lauren,Brooklyn,Bushwick,40.69576,-73.93254,Private room,150,30,2,2018-12-29,0.27,1,143 +30268592,Furnished queens 1 bedroom apartment,217275948,Mujibun,Queens,Long Island City,40.75926,-73.94006,Entire home/apt,120,1,1,2019-01-02,0.16,1,0 +30268825,Amazing Studio In Best Part of NYC,227309215,Jamie,Manhattan,Lower East Side,40.72129,-73.99271,Entire home/apt,250,5,1,2019-04-25,0.40,1,87 +30269171,✺ NEW Fully Renovated ✺ Harlem Garden Apartment,197013608,Madeline,Manhattan,East Harlem,40.79853,-73.93327,Entire home/apt,75,30,1,2019-05-19,0.59,1,0 +30269789,private room in apt near Fort Tryon Park.,87897420,Anne,Manhattan,Inwood,40.86171,-73.92945,Private room,65,4,1,2019-01-01,0.16,1,13 +30269942,"Cozy, Light and Calming East Village apartment",48666840,Ryan,Manhattan,East Village,40.72809,-73.98028,Entire home/apt,93,7,0,,,1,0 +30270320,Musician/nerdy paradise!,227344500,Mandy & Jerry,Brooklyn,Bushwick,40.70268,-73.93185,Private room,40,1,24,2019-06-21,3.46,1,20 +30272428,Brooklyn Jade,126176275,Audrey,Brooklyn,East Flatbush,40.63685,-73.93094,Private room,50,4,12,2019-06-04,1.78,4,62 +30272473,Glamorous studio in Chelsea,126691775,Jack,Manhattan,Chelsea,40.74941,-73.99589,Entire home/apt,139,1,20,2019-07-02,2.74,1,355 +30272649,Monthly: Gorgeous 3 Story Brownstone,16099130,Jane,Manhattan,East Harlem,40.80855,-73.93841,Entire home/apt,232,23,1,2019-01-06,0.16,1,0 +30273223,COZY GUEST ROOM,204906313,Iryna,Brooklyn,Sheepshead Bay,40.58889,-73.94797,Private room,32,1,50,2019-07-06,6.67,3,83 +30273310,Farm house style Bay Ridge (private D),31760835,Fon,Brooklyn,Bay Ridge,40.63574,-74.03102,Private room,85,365,1,2018-12-15,0.14,4,189 +30273352,Spacious Lovely 1B1B in UP Manhattan 4Min to Train,128293264,Sizhu,Manhattan,Washington Heights,40.83956,-73.94102,Entire home/apt,135,1,13,2019-06-21,2.00,1,0 +30274568,Cleo’s Royale II,157141199,Adeola,Manhattan,Inwood,40.86184,-73.92757,Private room,65,5,2,2019-04-28,0.32,2,365 +30275273,Zenful and artistic apartment home,227385012,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68824,-73.95047,Private room,34,1,3,2019-01-01,0.43,1,0 +30279712,Cozy 1 bedroom apt in Brooklyn,225367154,Maurice,Brooklyn,East Flatbush,40.65265,-73.91233,Entire home/apt,91,2,13,2019-06-30,2.52,1,305 +30281771,Charming duplex with backyard in Carroll Gardens,13291840,Agathe,Brooklyn,Carroll Gardens,40.67992,-73.99282,Entire home/apt,100,4,2,2019-04-26,0.31,1,35 +30282074,Classy NY charm place with sunlight (so rare),2449193,Alla,Manhattan,Hell's Kitchen,40.76052,-73.99241,Private room,109,2,7,2019-06-02,0.94,1,10 +30283630,Alexander's Lofted Bedroom with Private Entrance,103615271,Alexander,Brooklyn,Bedford-Stuyvesant,40.69657,-73.93536,Private room,50,21,1,2019-06-04,0.86,1,10 +30283940,Charming Studio in Manhattan - Great location!,128721938,Livia,Manhattan,Kips Bay,40.7425,-73.97704,Entire home/apt,250,3,1,2019-01-01,0.16,1,0 +30284324,Central park cheap sofa bed,214135354,Min,Manhattan,Upper East Side,40.77754,-73.95114,Shared room,55,1,66,2019-07-01,9.12,2,309 +30285056,"LOVELY, SPACIOUS FURNISHED MANHATTAN BEDROOM",31374,Shon,Manhattan,Inwood,40.86328,-73.92184,Private room,50,3,0,,,3,96 +30285558,"Cozy & convenient studio, midtown west Manhattan!!",82208124,Yang,Manhattan,Upper West Side,40.77497,-73.98788,Entire home/apt,137,3,8,2019-03-21,1.21,2,0 +30285772,"Sunny & Spacious, Studio-Like Ridgewood Apartment",5937189,Leigh,Queens,Ridgewood,40.70247,-73.90474,Private room,45,2,8,2019-06-26,1.08,1,2 +30286108,"Bright, Beautiful Bed-Stuy Brooklyn 2 Bedroom",36535955,Jillian,Brooklyn,Bedford-Stuyvesant,40.68243,-73.95697,Entire home/apt,139,2,2,2019-04-21,0.31,1,0 +30286646,Uptown Manhattan 2BR Designer Loft w/ River Views,401517,Mc,Manhattan,Washington Heights,40.85079,-73.94108,Entire home/apt,279,5,0,,,1,55 +30286771,Uptown Manhattan Private Room,19312868,Carla,Manhattan,Washington Heights,40.83324,-73.94072,Private room,70,1,0,,,1,0 +30287525,Sweet Sugar Hill Studio,65653322,Heavenly,Manhattan,Harlem,40.82521,-73.94037,Entire home/apt,97,2,2,2018-12-09,0.27,1,0 +30288068,A cozy one-bedroom in the heart of Harlem,1705112,Simon,Manhattan,Harlem,40.81486,-73.93941,Entire home/apt,70,1,1,2019-06-24,1,1,6 +30288537,The most expensive neighborhood.,52424735,Eric,Manhattan,West Village,40.73807,-74.00468,Private room,80,4,10,2019-06-30,1.43,1,26 +30289305,New York Getaway Beautiful Room,212263525,SamariSankofa,Manhattan,Harlem,40.81051,-73.94014,Private room,100,1,8,2019-06-03,1.26,3,253 +30289333,"Sunny, spacious, 1-bedroom apartment in UES, NYC",24717090,Shehrezad,Manhattan,Upper East Side,40.77262,-73.9501,Entire home/apt,220,4,2,2019-01-09,0.28,1,0 +30290307,Beautiful Central 2 Bedroom in Soho!,227498924,Alex,Manhattan,SoHo,40.72607,-74.00166,Entire home/apt,299,4,2,2019-05-18,0.32,1,156 +30291283,"COMPLETELY PRIVATE ""SMART"" APT IN EAST VILLAGE",2334794,Eden,Manhattan,East Village,40.72861,-73.97734,Entire home/apt,160,1,4,2019-06-04,0.55,1,41 +30291704,Beautiful Apartment in Staten Island,207856540,Meir,Staten Island,New Springville,40.58952,-74.15587,Entire home/apt,119,2,17,2019-07-05,3.13,1,175 +30292232,"1 BR Apartment in Greenpoint, Brooklyn w/ backyard",8120005,Megan,Brooklyn,Greenpoint,40.72447,-73.94458,Entire home/apt,70,30,2,2019-01-21,0.33,1,0 +30292454,Cozy Sunlit Spacious Bedroom (PURPLE ROOM),119051571,Sou,Brooklyn,Clinton Hill,40.69319,-73.96093,Private room,41,1,1,2019-05-05,0.45,2,52 +30293230,"The best location in Williamsburg, private room!",227520154,Lumila,Brooklyn,Williamsburg,40.70916,-73.96252,Private room,70,4,13,2019-06-21,1.85,2,280 +30293266,It's a Fine Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67727,-73.90663,Private room,48,1,63,2019-07-03,8.51,5,231 +30293282,It's a Delightful Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Cypress Hills,40.67627,-73.90795,Private room,48,1,57,2019-07-04,7.57,5,199 +30293703,"LUXURIOUS 5 bedroom, 4.5 bath home",36332698,Lisa,Manhattan,Upper West Side,40.79009,-73.97544,Entire home/apt,2999,1,0,,,1,0 +30293824,Upper West Side Large Two Bedroom,2079332,Linnette,Manhattan,Upper West Side,40.79855,-73.9717,Entire home/apt,75,1,16,2019-05-04,2.13,1,5 +30294144,It's a Stunning Day in Bed-Stuy!,19536596,Andrew,Brooklyn,Crown Heights,40.67612,-73.90813,Private room,48,1,21,2019-07-04,3.04,5,252 +30294243,Sunny Room next to L train,1296938,Kristina,Brooklyn,Williamsburg,40.71069,-73.94106,Private room,100,5,8,2019-06-15,1.21,1,0 +30295136,"Union Square, East Village Studio",109357781,Kayleigh,Manhattan,East Village,40.73237,-73.98495,Entire home/apt,225,7,1,2019-01-01,0.16,1,153 +30295374,"SUNNY, Cozy Private Room in Bushwick!",53215338,Catherine,Brooklyn,Bushwick,40.6985,-73.93578,Private room,80,1,1,2019-01-01,0.16,1,0 +30295700,Cozy Room 20 min from Manhattan in brand new unit,23959538,Julian,Queens,Ridgewood,40.70268,-73.90824,Private room,36,1,0,,,1,0 +30295881,Cozy Chinatown Apartment,31358380,Keith,Manhattan,Chinatown,40.717,-73.99717,Private room,100,3,1,2018-11-26,0.13,1,88 +30295927,Bedroom in Massive Loft Apartment,51340124,Nikki,Manhattan,Chelsea,40.73785,-73.99214,Private room,350,2,0,,,2,0 +30296033,Pretty private bedroom in shared apt near Columbia,66462141,Deena,Manhattan,Harlem,40.80446,-73.95567,Private room,47,5,3,2019-05-18,0.42,1,0 +30296168,Cozy room in sunny apartment across from park,3567433,Wesley,Brooklyn,Bushwick,40.69118,-73.9083,Private room,35,2,34,2019-07-01,4.95,2,112 +30296204,Brick and Beam Experience in North Williamsburg,1005966,Ryan,Brooklyn,Williamsburg,40.7198,-73.95813,Entire home/apt,300,3,7,2019-05-20,1.11,1,168 +30296364,Newly renovated place for students and young pro’s,227548199,Abi,Brooklyn,Midwood,40.62375,-73.96286,Shared room,50,1,0,,,1,85 +30296768,Sunny and plant-filled room in Crown Heights!,73524680,Shannon,Brooklyn,Crown Heights,40.6772,-73.94442,Private room,60,2,18,2019-05-25,3.38,1,0 +30297591,Cosy sun filled bedroom with a private bathroom,10576896,Kati,Manhattan,Harlem,40.79939,-73.95218,Private room,85,3,0,,,1,6 +30297696,Cozy and comfortable studio in Clinton Hill.,1883287,Max,Brooklyn,Clinton Hill,40.6848,-73.96614,Entire home/apt,125,3,2,2018-11-26,0.27,1,0 +30299604,A Luxury Studio in the Heart of Greenwich Village!,227569206,Suzy,Manhattan,Tribeca,40.71478,-74.01161,Entire home/apt,280,3,4,2019-05-25,0.55,1,328 +30307336,Spacious & Luxurious Room near LGA and Manhattan,137358866,Kazuya,Queens,Woodside,40.74458,-73.90752,Private room,50,30,0,,,103,235 +30307691,Cute One Bedroom in East Village/Lower Manhattan,178666589,Victoria,Manhattan,East Village,40.72445,-73.98922,Private room,195,1,12,2019-06-30,1.61,1,85 +30308289,Spacious Studio Home in Landmark Townhouse,125508339,Robert,Manhattan,Upper West Side,40.80177,-73.9693,Entire home/apt,225,3,15,2019-06-22,2.39,1,25 +30310012,"Cozy, comfortable room in historic district",66294381,Maria,Manhattan,Morningside Heights,40.80385,-73.96305,Private room,45,10,0,,,1,0 +30310098,NYC Hamilton Heights Apartment,114462596,Morgan,Manhattan,Harlem,40.82251,-73.9512,Private room,112,1,5,2018-12-30,0.67,1,0 +30310318,Private cozy spacious bedroom Queens NY,144714634,Char,Queens,Flushing,40.73872,-73.82863,Private room,29,1,49,2019-07-07,7.14,1,168 +30310672,"Jacuzzi 2-BR by Central Park/Museum Mile, Harlem",55817559,Christienne,Manhattan,East Harlem,40.78748,-73.94779,Private room,399,6,15,2019-06-24,2.14,1,47 +30310984,Charming One Bedroom Garden Apt Close to Subway,782801,Cassandra,Brooklyn,Bedford-Stuyvesant,40.68677,-73.95522,Entire home/apt,125,1,9,2019-06-15,1.36,1,192 +30311099,PRIVATE ROOM IN COZY SCANDINAVIAN / BROOKLYN HOME,220734035,Selma,Brooklyn,Williamsburg,40.70209,-73.94223,Private room,60,3,0,,,1,0 +30311572,Harlem Oasis,57964033,Holly,Manhattan,Harlem,40.81403,-73.94957,Entire home/apt,200,1,7,2019-05-20,0.99,1,158 +30312506,The best NYC has to offer,128549927,Stephen,Manhattan,Hell's Kitchen,40.75907,-73.99558,Entire home/apt,265,1,18,2019-06-30,2.55,1,46 +30312515,"Private, spacious 1bd/1bth Manhattan Apartment",227648437,Carson,Manhattan,Washington Heights,40.84556,-73.94025,Entire home/apt,150,6,1,2019-01-03,0.16,1,258 +30312525,Private bedroom in the heart of Harlem,6002231,Henrietta,Manhattan,Harlem,40.81875,-73.93691,Private room,59,90,0,,,1,89 +30312807,Quaint 1 Bedroom in Beautiful Astoria Queens,3390942,Zahi,Queens,Ditmars Steinway,40.77556,-73.90866,Private room,60,3,6,2019-06-18,0.84,1,43 +30313152,Plush Midtown West NYC 2BR With Stunning Views!,163251048,Jen,Manhattan,Hell's Kitchen,40.76189,-73.99955,Entire home/apt,499,30,0,,,8,365 +30313661,Deluxe Midwest NYC 2BR Apt With Super Amenities!,163251048,Jen,Manhattan,Hell's Kitchen,40.76211,-73.99791,Entire home/apt,499,30,0,,,8,185 +30313903,Sunny Eclectic Apt Near the Park & Brooklyn Museum,11815674,Christina,Brooklyn,Crown Heights,40.66661,-73.95301,Entire home/apt,125,3,4,2019-06-30,0.63,1,0 +30313929,"Zen bedroom in Williamsburg, Brooklyn",173282483,Catherine,Brooklyn,Williamsburg,40.71679,-73.95644,Private room,150,1,4,2019-06-30,1.18,1,89 +30314104,Magnificent Midtown West 2BR Apt + Gym and Spa!,163251048,Jen,Manhattan,Hell's Kitchen,40.76093,-73.99924,Entire home/apt,499,30,0,,,8,333 +30314337,Magnificent NYC 1BR Apt + Superb Amenities!,163251048,Jen,Manhattan,Hell's Kitchen,40.76214,-73.99899,Entire home/apt,399,30,0,,,8,129 +30314623,Beautiful Midtown West 1BR Apt + Gym & Sky Deck!,163251048,Jen,Manhattan,Hell's Kitchen,40.76171,-73.99793,Entire home/apt,399,30,0,,,8,129 +30314761,Spacious & cozy room/30 min to Manhattan by train,129158371,Sofiya,Brooklyn,Midwood,40.6188,-73.95417,Private room,54,2,3,2019-06-01,0.48,1,64 +30314819,Brooklyn Finest Air Bnb,224699779,Michael,Brooklyn,Bushwick,40.69097,-73.92166,Private room,120,7,0,,,1,365 +30314964,Modern NYC 2 Bedroom apt. Close to everything 34a,22641060,Wayne,Bronx,Williamsbridge,40.87821,-73.86354,Entire home/apt,85,30,0,,,1,365 +30315087,Magnificent NYC 1 Bedroom Apt on the River!!,163251048,Jen,Manhattan,Hell's Kitchen,40.76086,-73.99964,Entire home/apt,399,30,0,,,8,186 +30315498,Spacious Brownstone Home in Prospect Heights,5412248,Sarah Beyahte,Brooklyn,Prospect Heights,40.6753,-73.96768,Entire home/apt,95,30,1,2018-12-06,0.14,1,219 +30315829,"Cozy Studio Apartment in Greenpoint, Brooklyn",42661839,Justin,Brooklyn,Greenpoint,40.73468,-73.95418,Entire home/apt,149,5,2,2019-06-15,0.32,1,0 +30315979,Easy charm in Fort Greene,1364105,Jenny,Brooklyn,Fort Greene,40.69091,-73.97202,Private room,119,2,28,2019-06-29,3.94,1,3 +30316546,"Nice & clean room, two blocks from Times Square",227671939,Ivan,Manhattan,Hell's Kitchen,40.76136,-73.99205,Private room,90,4,26,2019-07-01,4.29,1,278 +30316570,★Modern 2BDR WITH BIG PATIO in Upper East!★,171452798,Nir,Manhattan,Upper East Side,40.77655,-73.94787,Entire home/apt,264,1,49,2019-07-01,6.87,1,296 +30319473,Amazing Convenient Cozy Room (girl preferred),47227131,Xiao,Brooklyn,Sunset Park,40.64456,-74.00839,Private room,28,10,1,2019-01-03,0.16,1,0 +30319831,Private bedroom in a loft apartment (Williamsburg),115051556,Jean Pierre,Brooklyn,Williamsburg,40.71217,-73.94396,Private room,80,1,33,2019-07-05,4.97,1,151 +30320090,"SPACIOUS, PRIVATE ROOM IN MIDTOWN, PARK AVENUE",209758777,Isabel,Manhattan,Midtown,40.74475,-73.98337,Private room,145,1,51,2019-06-23,7.39,2,29 +30320921,Romantic getaway in the heart of NYC,227647873,Samanta,Queens,Astoria,40.76194,-73.91255,Private room,89,2,15,2019-03-08,2.07,3,13 +30321082,Contemporary 1BR in Brooklyn by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.70855,-73.96782,Entire home/apt,120,29,1,2019-05-31,0.77,7,0 +30321542,Spacious Duplex 3 BR Apt in Bushwick/Ridgewood,8441265,Sara,Queens,Ridgewood,40.70463,-73.91183,Entire home/apt,190,3,1,2019-01-01,0.16,2,0 +30321732,NYC/UES Beautiful and Sunny one-bedroom apartment,227705254,Shula,Manhattan,Upper East Side,40.76935,-73.9534,Entire home/apt,275,4,5,2019-06-26,0.70,1,77 +30322497,studio for your own,137665954,Yibin,Manhattan,West Village,40.73751,-74.00231,Entire home/apt,168,3,3,2018-12-17,0.44,1,0 +30323677,Spacious Studio in the Heart of West Village,50014274,Luke,Manhattan,West Village,40.73598,-73.99903,Entire home/apt,200,2,2,2019-06-01,0.27,1,0 +30323806,Hidden gem... steps from Times Square,90401194,Joshua,Manhattan,Hell's Kitchen,40.76168,-73.98969,Entire home/apt,180,3,20,2019-06-25,2.87,1,79 +30324051,"3 bedrooms, 2 bathrooms, huge open space!",91427536,Yoav,Brooklyn,Bushwick,40.69684,-73.92241,Entire home/apt,100,2,1,2019-01-01,0.16,2,5 +30324225,"Cozy, two-bedroom East Harlem apartment",28613272,Roosbelinda,Manhattan,East Harlem,40.79949,-73.93531,Entire home/apt,149,7,1,2018-12-30,0.16,1,3 +30324273,3 bed 6 guest luxury Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.65882,-73.92947,Private room,200,31,0,,,3,365 +30325235,HUGE 1Br Converted Art Gallery Loft WILLIAMSBURG,92546730,Nick,Brooklyn,Williamsburg,40.70787,-73.94974,Entire home/apt,55,3,13,2019-07-02,1.83,1,0 +30325250,Charming South Harlem Hideaway with Garden,8630543,Olga,Manhattan,Harlem,40.80453,-73.95015,Entire home/apt,115,3,18,2019-07-05,2.60,2,255 +30325586,Nice and artsy apartment in East Village,26671786,Sherry,Manhattan,East Village,40.7233,-73.97882,Private room,79,1,4,2019-05-27,0.61,1,0 +30325604,1 BDRM avail in sunny apartment in Williamsburg,10860700,Sarah,Brooklyn,Williamsburg,40.71293,-73.94283,Private room,120,2,11,2019-06-21,1.76,2,117 +30325639,Cozy shared studio in a safe neighborhood,21495656,Ramy,Queens,Little Neck,40.76212,-73.71928,Shared room,32,3,1,2018-12-04,0.14,1,88 +30326645,Best Scenic Night View In Riverside DR NYC,198442706,Marii,Bronx,Edenwald,40.88229,-73.84295,Private room,80,1,0,,,1,365 +30326749,Spacious Neon Apartment Inspired by the Caribbean,1370324,Yeelen,Brooklyn,Prospect-Lefferts Gardens,40.65513,-73.95632,Entire home/apt,100,3,2,2019-05-08,0.32,1,324 +30327469,Parisian Palace in Heart of Manhattan,224001464,Aleszea,Manhattan,Chelsea,40.73734,-73.99327,Entire home/apt,333,4,4,2019-05-29,1.41,1,80 +30330519,Spacious room near Columbia University,159142440,Chien-Ni,Manhattan,Upper West Side,40.80401,-73.96635,Private room,70,1,7,2019-06-05,1.02,1,0 +30333873,Accomplished private room next to Columbia Uni,126653377,Sergii,Manhattan,Harlem,40.80373,-73.95805,Private room,63,30,0,,,6,364 +30334838,Refined private room next to Columbia University,126653377,Sergii,Manhattan,Harlem,40.80384,-73.95754,Private room,63,30,1,2019-04-01,0.30,6,364 +30337531,Cozy Brooklyn 1 Bed,227801173,Drew,Brooklyn,Brooklyn Heights,40.69346,-73.99814,Entire home/apt,125,2,7,2019-06-17,1.09,1,47 +30338113,Wonderful and sunny 2 bedroom in Brooklyn,226833844,Ev,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94094,Entire home/apt,225,2,4,2019-01-02,0.62,1,0 +30339161,ONE BEDROOM KING SUITE - PRIME WILLIAMSBURG,198861577,Novo,Brooklyn,Williamsburg,40.72176,-73.95616,Private room,200,7,0,,,5,364 +30339947,New Flatiron King Bed Apartment,196479236,Ashley,Manhattan,Flatiron District,40.74154,-73.99283,Entire home/apt,210,1,2,2019-06-10,0.28,1,359 +30340057,"Cute and cozy room, 1 stop from Midtown Manhattan",196598648,Anuja,Queens,Long Island City,40.75853,-73.93227,Private room,50,3,5,2019-01-25,0.70,1,0 +30340086,"Peace of Mind, Harlem, Netflix",45835291,Shareef,Manhattan,Harlem,40.82388,-73.95527,Private room,40,8,29,2019-06-29,4.05,6,54 +30340089,Airy and Beautiful East Village 2BR Apt,224703803,Jed & Leah,Manhattan,East Village,40.72577,-73.98535,Entire home/apt,399,1,9,2019-05-27,1.49,1,319 +30340171,"**Newly Renovated, Cozy, Urban Oasis entire apt**",227818501,Jenna,Bronx,Williamsbridge,40.87684,-73.86389,Entire home/apt,120,2,13,2019-06-18,1.83,2,97 +30340538,"2 Bed, 2 Bath Flat In Trendy Nolita - Modern!",225616673,Harry & Morgan,Manhattan,Nolita,40.72113,-73.99595,Entire home/apt,418,1,16,2019-06-16,2.81,1,328 +30341514,Designer Apartment in NYC near Central Park,24407449,Elle,Manhattan,Upper West Side,40.79181,-73.96747,Entire home/apt,350,2,2,2019-05-20,0.76,1,60 +30343546,"Ridgewood/Bushwick Lovely, Clean and Inviting! A/C",1460313,Soraya,Queens,Ridgewood,40.69598,-73.89972,Private room,56,5,14,2019-07-01,2.20,2,35 +30344630,Upper East Side 1 Bedroom,5777779,Rachel,Manhattan,Upper East Side,40.77538,-73.94857,Entire home/apt,150,30,0,,,1,158 +30344912,Private 2B Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75993,-73.99089,Private room,110,1,21,2019-06-23,3.18,12,256 +30344925,Modern Park Slope 1br right by Prospect Park,18609785,Ben,Brooklyn,South Slope,40.66557,-73.98044,Entire home/apt,155,3,9,2019-03-18,1.38,1,5 +30345024,Very cozy apartment in the heart of Ridgewood =),223191465,Kiryl,Queens,Ridgewood,40.70844,-73.90905,Entire home/apt,120,3,16,2019-06-23,2.32,2,60 +30346011,2 Bedroom Apartment in Heart of Chinatown,227691333,Gus,Manhattan,Lower East Side,40.71826,-73.99338,Entire home/apt,125,3,18,2019-06-19,2.77,1,20 +30346056,Historic Park Slope 2 bedroom cozy clean apt,17825521,Adriana,Brooklyn,South Slope,40.66533,-73.98212,Entire home/apt,134,5,5,2019-04-05,1.13,1,13 +30347034,Cute cozy home in south slope!!,208938947,Radha,Brooklyn,Sunset Park,40.66388,-73.99475,Private room,50,31,0,,,1,0 +30347099,"Cozy, Airy One Bedroom in Greenwich Village",147186603,Wesley,Manhattan,Greenwich Village,40.73004,-74.00128,Entire home/apt,350,3,1,2019-03-17,0.26,1,7 +30347708,Sonder | 180 Water | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70743,-74.00443,Entire home/apt,232,29,1,2019-05-21,0.60,327,159 +30347852,Huge room in Bushwick apt. 20 mins from Manhattan,40004714,Ruth,Brooklyn,Bushwick,40.69504,-73.93061,Private room,50,2,13,2019-06-23,1.83,2,11 +30347868,Private Room in the Upper East Side,6180828,Alina,Manhattan,Upper East Side,40.77409,-73.9519,Private room,95,5,10,2019-04-16,1.63,1,5 +30348506,1500 SQ FT Williamsburg Penthouse,198861577,Novo,Brooklyn,Williamsburg,40.72194,-73.95511,Private room,1600,1,0,,,5,0 +30348624,Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66272,-73.76849,Entire home/apt,89,1,88,2019-07-06,12.05,2,253 +30348636,"Quiet, serene Holiday getaway in the Bronx",20444114,Gregory,Bronx,Allerton,40.86698,-73.85178,Private room,35,2,21,2019-06-30,3.35,1,252 +30348644,"New York, prime location cozy 1bedroom unit!",142456326,Inna,Manhattan,Kips Bay,40.73857,-73.97972,Entire home/apt,180,1,5,2019-06-15,0.73,1,90 +30348712,"Huge, modern apt 20 mins from Manhattan JMZ metro",40004714,Ruth,Brooklyn,Bushwick,40.69657,-73.93274,Entire home/apt,190,2,0,,,2,11 +30348944,Spacious modern condo by Columbia University,2964135,Jessie,Manhattan,Harlem,40.80623,-73.95343,Entire home/apt,200,3,3,2019-05-23,0.98,1,0 +30348979,Huge studio on Central Park west top location,4431107,Ally,Manhattan,Upper West Side,40.7886,-73.96862,Entire home/apt,200,2,19,2019-06-27,2.66,3,0 +30349105,Entire studio Central Park west,4431107,Ally,Manhattan,West Village,40.73034,-74.01022,Entire home/apt,200,1,0,,,3,158 +30349243,Modern- and newly renovated Brooklyn apartment,10759819,Bo,Brooklyn,Crown Heights,40.6716,-73.95847,Entire home/apt,300,2,1,2019-01-03,0.16,1,364 +30349344,Roomy and Relaxing 3 Brooklyn Apartment,144687306,Nutrice,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.9516,Entire home/apt,150,3,26,2019-07-07,3.53,2,241 +30350359,Private Room in Brand New Greenpoint Apartment,108457539,Fola,Brooklyn,Greenpoint,40.72268,-73.94349,Private room,55,1,2,2018-12-10,0.27,1,0 +30351170,Top floor of an amazing duplex,213020,Robert,Manhattan,Upper West Side,40.79382,-73.96984,Private room,88,1,4,2019-03-21,0.78,3,7 +30351256,"HUGE ONE-BED, PROSPECT PARK, CAT LOVERS ONLY!!",1675112,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66106,-73.96189,Entire home/apt,79,5,2,2019-06-23,1.28,1,8 +30351642,Very bright and cosy bedroom.,44074020,Juliette,Manhattan,Harlem,40.81443,-73.95688,Private room,70,6,1,2018-12-29,0.16,1,13 +30352538,Spacious Garden Studio,51964207,Brooke,Brooklyn,Williamsburg,40.70946,-73.96567,Entire home/apt,140,3,7,2019-06-09,1.42,1,3 +30352717,Basic room in Williamsburg,45773187,Jakub,Brooklyn,Williamsburg,40.71038,-73.94779,Private room,49,7,0,,,1,0 +30352862,Comfy and Artsy Big Room in EAST VILLAGE,64934891,Scarlett,Manhattan,East Village,40.7219,-73.97819,Private room,70,3,0,,,1,0 +30353296,"Spacious room 2min walk to Subway M,R near Mall",218336964,Wei,Queens,Elmhurst,40.72977,-73.87171,Private room,40,2,12,2019-06-04,2.83,4,5 +30353302,Room close to La Guardia Airport,227905146,Gladys,Queens,East Elmhurst,40.76185,-73.87392,Shared room,16,1,10,2019-06-16,1.36,1,0 +30354041,"Affordable Room close to train, mall. With WIFI.",137358866,Kazuya,Queens,Elmhurst,40.74439,-73.87988,Private room,34,30,1,2019-06-10,1,103,273 +30354291,Cozy private bedroom with Great East River view,24593962,Sean,Manhattan,Upper East Side,40.78353,-73.94592,Private room,90,2,1,2018-12-05,0.14,1,0 +30354304,Private room in spacious BK community w/ parking,3285978,Nicole,Brooklyn,Bedford-Stuyvesant,40.69998,-73.94369,Private room,50,1,5,2019-01-13,0.71,2,0 +30355109,Shared male room on Manhattan next to river I,39528519,Max,Manhattan,Lower East Side,40.71147,-73.98714,Shared room,35,14,1,2018-12-31,0.16,28,320 +30355292,Shared male room of your dreams on Manhattan III,39528519,Max,Manhattan,Lower East Side,40.71046,-73.98839,Shared room,32,14,1,2019-01-26,0.18,28,341 +30355426,Amazing and cozy shared male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71025,-73.98703,Shared room,35,14,0,,,28,322 +30355532,1BR in Manhattan. Central Park at your doorstep!,137358866,Kazuya,Manhattan,East Harlem,40.79422,-73.94383,Entire home/apt,70,30,2,2019-04-29,0.36,103,219 +30355793,Unbelievable male room& best price on Manhattan II,39528519,Max,Manhattan,Lower East Side,40.70981,-73.98702,Shared room,35,14,8,2019-06-19,1.31,28,322 +30355933,Spacious and comfortable room,208136645,Andre,Brooklyn,East Flatbush,40.65267,-73.94257,Private room,45,2,1,2018-12-27,0.15,4,296 +30357870,Superhosted room close to station! Bed+sofa & WiFi,137358866,Kazuya,Queens,Jackson Heights,40.74887,-73.87949,Private room,33,30,0,,,103,0 +30358423,Cozy Room in Great APT! Near LGA / Manhattan,137358866,Kazuya,Queens,Sunnyside,40.74907,-73.91185,Private room,37,30,1,2019-04-30,0.43,103,0 +30359944,Gorgeous Room in a renovated Woodside townhouse!,137358866,Kazuya,Queens,Woodside,40.74958,-73.90011,Private room,42,30,1,2019-06-01,0.79,103,235 +30361847,"One bedroom apartment in Brooklyn, NY",40480205,Owen,Brooklyn,Park Slope,40.6828,-73.97738,Entire home/apt,110,60,2,2019-06-29,0.81,1,83 +30364369,hip and cosy Brooklyn family retreat,12838954,Vincent,Brooklyn,Bedford-Stuyvesant,40.68696,-73.94382,Entire home/apt,375,7,0,,,1,0 +30367011,Quiet Neighborhood Close to Trendy Spots,183967887,Hayley,Brooklyn,Williamsburg,40.71326,-73.93766,Private room,65,4,5,2019-04-20,0.74,1,0 +30367724,Cozy private room in Williamsburg,228000501,Dylan,Brooklyn,Williamsburg,40.70996,-73.96495,Private room,50,3,6,2019-06-30,0.82,1,38 +30367948,Beautiful apartment in Brooklyn Heights,26312879,Daron,Brooklyn,Brooklyn Heights,40.69458,-73.99771,Entire home/apt,125,5,3,2019-05-18,0.48,1,0 +30369014,Private room with a view- cosy apt in East Village,5559293,Tiphaine,Manhattan,Gramercy,40.73212,-73.98247,Private room,150,2,10,2019-06-05,1.41,1,36 +30369286,Modern/Eclectic Light Filled Williamsburg Home,3262412,Britney,Brooklyn,Williamsburg,40.7076,-73.94718,Entire home/apt,225,2,0,,,1,45 +30369420,"Trendy Chelsea 1BR w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73878,-73.99604,Entire home/apt,303,30,0,,,232,185 +30369494,LOFT EXPERIENCE IN HEART OF WILLIAMSBURG,228011801,Hugo,Brooklyn,Williamsburg,40.70955,-73.96311,Private room,69,7,1,2019-06-23,1,1,0 +30369652,Central Park Loft,93717558,Abe,Manhattan,Upper West Side,40.78687,-73.97189,Entire home/apt,175,2,17,2019-06-20,2.64,1,27 +30369751,Private bedroom w/ bathroom in cozy UWS apartment,206960083,Marjolein,Manhattan,Upper West Side,40.78384,-73.97696,Private room,95,7,1,2019-01-03,0.16,1,0 +30369889,Modern 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76135,-73.98668,Entire home/apt,316,30,0,,,232,35 +30370124,Cozy Room 1,213781715,Anting,Brooklyn,Downtown Brooklyn,40.69839,-73.98758,Private room,119,1,1,2019-05-27,0.68,33,365 +30370448,Cozy Home 2,213781715,Anting,Brooklyn,Greenpoint,40.73291,-73.95282,Private room,119,1,0,,,33,365 +30370564,LINCOLN CENTER / LUXURY 2BED 2BATH,131647128,Emily,Manhattan,Upper West Side,40.77396,-73.98925,Entire home/apt,260,30,3,2019-05-12,0.45,25,274 +30370565,"Cozy private room in NYC +25 mins from Midtown",172895347,Mario & Maria,Queens,Jackson Heights,40.75275,-73.88186,Private room,59,30,2,2019-02-18,0.38,2,0 +30370601,DELUXE DOUBLE ROOM,198861577,Novo,Brooklyn,Williamsburg,40.72205,-73.956,Private room,350,2,0,,,5,0 +30370613,Central & Comfy East Village Studio,225620034,Jared & Rachel,Manhattan,East Village,40.73011,-73.98405,Entire home/apt,189,1,13,2019-07-02,3.07,1,338 +30370630,Cozy Home 3,213781715,Anting,Brooklyn,Greenpoint,40.7318,-73.95307,Entire home/apt,399,1,0,,,33,364 +30370642,"Serene, Clean Studio in South Williamsburg",10934627,Jacqueline,Brooklyn,Williamsburg,40.7112,-73.96566,Entire home/apt,105,7,3,2019-06-16,0.56,1,16 +30370778,Large room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.72994,-73.86987,Private room,45,2,11,2019-06-19,1.73,4,6 +30372287,Private Floor in Brownstone near Prospect Park,11370189,Brandon,Brooklyn,Prospect Heights,40.6779,-73.96393,Entire home/apt,140,5,2,2019-01-05,0.31,2,25 +30372486,Luxury Apt - Private Suite in Theater District,3729486,Andrew,Manhattan,Hell's Kitchen,40.76593,-73.99186,Private room,180,4,12,2019-07-03,1.68,1,172 +30373102,Big cozy room in Washington Heights,24762196,Manuel,Manhattan,Washington Heights,40.8471,-73.93996,Private room,80,3,3,2019-01-03,0.42,1,0 +30373480,Cozy Nook in Trendy Lower East Side,1723475,Samantha,Manhattan,Lower East Side,40.71813,-73.98633,Entire home/apt,214,3,20,2019-06-23,3.30,1,279 +30373928,*Beautiful Private Room near Subway,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68371,-73.95096,Private room,65,2,24,2019-06-15,3.48,7,330 +30374290,Private Bedroom w/ Queen Size bed in Williamsburg,19868844,André,Brooklyn,Williamsburg,40.71115,-73.95825,Private room,60,2,14,2019-06-03,1.99,1,0 +30374563,Open & Bright Williamsburg 1 Bed Loft,228104837,Barbara,Brooklyn,Williamsburg,40.7092,-73.9631,Entire home/apt,195,2,14,2019-06-03,2.04,1,28 +30375114,South Prospect Park Private Middle Room F&Q subway,221940893,Sara,Brooklyn,Kensington,40.6377,-73.97062,Private room,36,2,18,2019-07-07,2.51,3,189 +30375328,Large studio-style Private Room,151429490,Hajdi,Brooklyn,Crown Heights,40.66456,-73.95216,Private room,80,1,0,,,1,359 +30376063,Industrial Chic Stuyvesant Bedroom Madison 1R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68551,-73.9324,Private room,42,30,1,2019-05-19,0.58,27,346 +30376150,Nelson-Hamilton Family,225750872,Lauria,Queens,Far Rockaway,40.59349,-73.76377,Private room,60,1,1,2018-12-30,0.16,1,90 +30376368,Hip East Village Flat,228117451,Pam,Manhattan,East Village,40.72269,-73.98306,Entire home/apt,75,8,6,2019-06-28,0.94,1,232 +30376416,pinlia,143084679,Lukia,Queens,Flushing,40.74625,-73.83433,Private room,40,1,7,2019-06-14,2.96,1,0 +30376690,Charming Harlem Studio!,81970141,Emily,Manhattan,Harlem,40.82932,-73.94696,Entire home/apt,119,2,15,2019-07-01,2.38,1,12 +30376805,Penthouse Apartment to view July 4th Fireworks,11773839,Nate,Manhattan,Chinatown,40.71446,-73.99112,Private room,95,2,5,2019-07-07,0.80,1,2 +30376977,Private Stuyvesant Bedroom Madison 1R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68632,-73.93251,Private room,42,30,0,,,27,346 +30377021,Shared Room 4 FEMALE Guests 30mins to Manhattan-2,172369331,Abby,Brooklyn,Sheepshead Bay,40.5981,-73.9584,Shared room,25,7,2,2019-06-01,1.15,10,290 +30377430,Modern Private Stuyvesant Room Madison 1R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68553,-73.93215,Private room,42,30,1,2019-05-25,0.65,27,346 +30377654,Greenpoint Creative's Apartment,2011313,Ariana,Brooklyn,Greenpoint,40.72471,-73.939,Entire home/apt,100,7,3,2019-06-10,0.78,1,6 +30377718,Sunny Stuyvesant Private Bedroom Madison 1R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68595,-73.93109,Private room,42,30,2,2019-02-13,0.33,27,345 +30378040,Artsy Stuyvesant Private Bedroom Madison 2L-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68555,-73.93107,Private room,42,30,1,2019-03-05,0.24,27,332 +30378211,Shared Studio (females only),200401254,Meg,Manhattan,Greenwich Village,40.73094,-73.999,Shared room,110,999,0,,,1,365 +30378751,Homely One Bedroom on a quite safe street!,31408845,Shane,Queens,Astoria,40.76605,-73.92425,Entire home/apt,250,14,2,2019-06-28,0.32,1,341 +30378764,Luxurious Manhattan Apartment with Rooftop Views,128766,James,Manhattan,Harlem,40.81916,-73.95312,Entire home/apt,150,2,15,2019-06-21,2.12,1,9 +30378844,Mellow Stuyvesant Bedroom Madison 2L-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68768,-73.93076,Private room,42,30,2,2019-06-01,0.86,27,311 +30378982,Modern Brooklyn Zen with Private Garden,3042136,Jenni,Brooklyn,Carroll Gardens,40.68241,-73.99157,Entire home/apt,250,2,26,2019-07-07,3.94,3,266 +30379067,Large Room in Sunnyside,4275601,Wesley,Queens,Long Island City,40.7351,-73.92526,Private room,100,1,1,2019-01-01,0.16,1,364 +30379843,"Your NY home for Quality time , Fully Equipped !",148725429,Javier,Brooklyn,Bushwick,40.69231,-73.92567,Entire home/apt,90,3,58,2019-07-07,7.91,2,2 +30380685,"Bright, large, fully renovated apartment!!",20318052,Laura,Brooklyn,Bedford-Stuyvesant,40.69518,-73.94676,Entire home/apt,140,2,0,,,2,112 +30387064,Stunning Corner 1BR in West Village w/ Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72976,-74.00387,Entire home/apt,350,30,0,,,232,341 +30387132,"Bespoke Tribeca Studio, Indoor pool + Great views by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71663,-74.00546,Entire home/apt,276,30,0,,,232,284 +30387173,Exquisite UWS 2BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.77833,-73.98469,Entire home/apt,452,30,1,2019-01-12,0.17,232,337 +30387196,Modern + Bright Times Square 1BR w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.76017,-73.98509,Entire home/apt,325,30,0,,,232,362 +30387218,"Grand Lenox Hill 1BR w/ Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.76368,-73.95993,Entire home/apt,312,30,0,,,232,293 +30387263,"Splendid Tribeca 1BR w/ Gym, Doorman + Valet by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71284,-74.00844,Entire home/apt,285,30,0,,,232,185 +30387280,"Stunning Tribeca 2BR w/ Indoor pool, Gym, Rooftop by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71684,-74.00544,Entire home/apt,350,30,0,,,232,342 +30387305,"Bright, Open 1BR in lovely West Village w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.7287,-74.00327,Entire home/apt,397,30,0,,,232,53 +30387328,"Comfy UWS 1BR w/ Gym + Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77804,-73.98409,Entire home/apt,283,30,0,,,232,1 +30387351,Palatial Wall Street 1BR w/ Luxury gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.70492,-74.00678,Entire home/apt,289,30,0,,,232,341 +30387377,"Welcoming Chelsea 1BR w/ Roof deck, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74143,-73.99469,Entire home/apt,343,30,1,2019-01-17,0.17,232,323 +30387425,Swanky 1BR in Central Chelsea w/ Garden by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73846,-73.99769,Entire home/apt,334,30,1,2019-04-15,0.35,232,310 +30387445,"Serene Theater District 1BR, Doorman, Gym, Garden by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76258,-73.98768,Entire home/apt,302,30,0,,,232,330 +30387469,"Dandy Wall St 1BR w/ Office nook, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70617,-74.00842,Entire home/apt,320,30,0,,,232,310 +30387495,Stately + Spacious UWS 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.77722,-73.98262,Entire home/apt,316,30,0,,,232,18 +30387553,"Ample Central Midtown East 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74499,-73.97937,Entire home/apt,287,30,0,,,232,268 +30387566,"Airy Times Sq 1BR w/ Indoor pool, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76143,-73.98533,Entire home/apt,334,30,0,,,232,296 +30387600,"Cozy Midtown Studio w/ Gym, near Penn Station by Blueground",107434423,Blueground,Manhattan,Midtown,40.75231,-73.98924,Entire home/apt,238,30,1,2019-01-02,0.16,232,322 +30387648,Cheery Tribeca Studio w/ Gym + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71479,-74.00671,Entire home/apt,291,30,0,,,232,295 +30387788,"Dapper Times Square 1BR w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Theater District,40.76139,-73.98521,Entire home/apt,276,30,0,,,232,206 +30387820,Cozy Central Chelsea Studio w/ Balcony + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73918,-73.99616,Entire home/apt,303,30,1,2019-01-31,0.19,232,280 +30387838,"Immaculate Central West Village 1BR, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.72988,-74.00341,Entire home/apt,392,30,0,,,232,328 +30387856,Charismatic 1BR in West Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.72945,-74.00321,Entire home/apt,356,30,0,,,232,162 +30387885,Times Square 1BR w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.76159,-73.98544,Entire home/apt,297,30,0,,,232,68 +30387916,Smart Tribeca Studio w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71674,-74.0069,Entire home/apt,265,30,0,,,232,208 +30387960,"Ideal Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73899,-73.99749,Entire home/apt,291,30,0,,,232,320 +30387983,Lush 2BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76034,-73.98656,Entire home/apt,358,30,0,,,232,196 +30388011,"Bright 1BR near Times Sq w/ Indoor pool, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.75988,-73.98568,Entire home/apt,312,30,0,,,232,341 +30388057,Dreamy 1BR in Hip East Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,East Village,40.723,-73.98415,Entire home/apt,312,30,1,2019-02-28,0.23,232,359 +30388079,"Spacious UWS 1BR w/ Gym, Walk to Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7904,-73.97555,Entire home/apt,320,30,0,,,232,293 +30388100,Light-filled Studio in Swanky Chelsea w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73767,-73.99739,Entire home/apt,321,30,1,2019-04-24,0.39,232,310 +30388159,"Dandy Tribeca Studio w/ Indoor pool, Views + Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71657,-74.00551,Entire home/apt,309,30,0,,,232,312 +30388225,"Tranquil East Village 1BR Gym, Garden + Doorman by Blueground",107434423,Blueground,Manhattan,East Village,40.72232,-73.98543,Entire home/apt,312,30,0,,,232,219 +30388284,"Cozy, Bright 2BR in Hip LES w/ Large terrace by Blueground",107434423,Blueground,Manhattan,Lower East Side,40.71856,-73.99061,Entire home/apt,314,90,0,,,232,208 +30388313,"Roomy Midtown East 1BR, Office nook, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74528,-73.97948,Entire home/apt,352,30,0,,,232,268 +30388333,Thoughtful UWS Studio w/ Gym near Central Park by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.79094,-73.97235,Entire home/apt,238,30,0,,,232,279 +30388352,"Lofty UES 1BR w/ Indoor pool, Doorman, City views by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77518,-73.9491,Entire home/apt,289,30,1,2019-03-31,0.30,232,235 +30388383,"Charming Midtown West 2BR, 2BA w/ Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.75973,-73.99574,Entire home/apt,291,30,0,,,232,189 +30388429,"Tranquil Columbus Cir. 1BR, Doorman, River Views by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.76923,-73.98627,Entire home/apt,263,30,0,,,232,280 +30388449,"Spacious Chelsea 1BR w/ Gym, Balcony + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73806,-73.99744,Entire home/apt,365,30,0,,,232,261 +30388479,"Hip Midtown East 1BR w/ Great views, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74164,-73.97859,Entire home/apt,253,30,0,,,232,203 +30388528,"Stylish Tribeca Studio w/ Gym, Doorman + Valet by Blueground",107434423,Blueground,Manhattan,Tribeca,40.7132,-74.00942,Entire home/apt,246,30,0,,,232,332 +30388552,"Sparkling Midtown Studio w/ Gym near Times Square, by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76393,-73.98721,Entire home/apt,211,30,0,,,232,227 +30388587,"Homey UWS 1BR w/ Gym, walk to Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77779,-73.98459,Entire home/apt,306,30,0,,,232,336 +30388617,"Gorgeous + Bright Midtown East 1BR, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Midtown,40.75861,-73.96359,Entire home/apt,241,30,0,,,232,149 +30388668,"Well-appointed Tribeca Studio w/ Indoor pool, Gym by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71519,-74.00654,Entire home/apt,312,30,0,,,232,38 +30388718,"Bright, Luxury FiDi Studio w/ Doorman, Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70672,-74.00661,Entire home/apt,259,120,0,,,232,286 +30388750,Cozy Midtown 1BR w/ Doorman near Penn Station by Blueground,107434423,Blueground,Manhattan,Midtown,40.75335,-73.99029,Entire home/apt,267,30,0,,,232,274 +30388841,"Stately Chelsea Studio, Balcony in Chic building by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73929,-73.99777,Entire home/apt,312,30,0,,,232,157 +30388944,Mod + Lux Theater District 1BR w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.75971,-73.98551,Entire home/apt,347,30,0,,,232,266 +30388972,"Ample 1BR w/ Indoor pool, Gym near Broadway by Blueground",107434423,Blueground,Manhattan,Theater District,40.75995,-73.98728,Entire home/apt,278,30,0,,,232,147 +30388999,"Swanky Central Chelsea Studio w/ Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73774,-73.99723,Entire home/apt,242,30,0,,,232,188 +30389026,Lovely Midtown East 1BR w/ City views + Doorman by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.74805,-73.97351,Entire home/apt,242,30,0,,,232,237 +30389066,"Light-filled Chelsea 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73786,-73.9977,Entire home/apt,358,30,0,,,232,322 +30389115,"Airy East Village 1BR w/ Doorman, Gym, near NYU by Blueground",107434423,Blueground,Manhattan,East Village,40.73021,-73.98765,Entire home/apt,377,90,0,,,232,174 +30389147,"Modern Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73897,-73.99637,Entire home/apt,280,30,0,,,232,1 +30389192,Fetching FiDi Studio in Luxury Building by Blueground,107434423,Blueground,Manhattan,Financial District,40.70619,-74.00895,Entire home/apt,232,30,0,,,232,61 +30389224,"Mod Midtown West 2BR, Gym, Doorman + Water views by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76087,-73.99563,Entire home/apt,365,30,0,,,232,326 +30389262,Large Couples Room for that Perfect New York Stay,137358866,Kazuya,Queens,Woodside,40.74635,-73.90774,Private room,62,30,2,2019-01-31,0.32,103,269 +30389263,Stately Midtown East 1BR w/ Doorman near Flatiron by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.74053,-73.97874,Entire home/apt,273,30,0,,,232,157 +30389280,"Bright FiDi 1BR w/ Luxury gym, Doorman, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70511,-74.00722,Entire home/apt,285,30,0,,,232,339 +30389309,"Spacious Midtown East 1BR, Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74072,-73.97794,Entire home/apt,307,30,0,,,232,333 +30389336,"Bespoke Studio in Hip East Village w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,East Village,40.73186,-73.98761,Entire home/apt,281,90,0,,,232,322 +30389441,Shining Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71609,-74.00501,Entire home/apt,275,30,0,,,232,342 +30389474,"Homey 1BR in Fun, Central West Village w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.73003,-74.00215,Entire home/apt,396,30,0,,,232,163 +30389504,"Sweet Chelsea Studio w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73947,-73.99777,Entire home/apt,283,30,0,,,232,334 +30389559,Homey Tribeca 2BR w/ Great views + Indoor pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71626,-74.00694,Entire home/apt,358,30,0,,,232,217 +30389586,Comfy 1BR w/ Gym + Doorman near Times Square by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76035,-73.99679,Entire home/apt,285,30,0,,,232,330 +30389608,"Mod East Village 1BR w/ Doorman, Gym near Union Sq by Blueground",107434423,Blueground,Manhattan,East Village,40.73169,-73.98932,Entire home/apt,420,30,0,,,232,157 +30390975,Room & Private Bath + Free Gym/Pool/Theater/More!,12704088,Jennifer,Brooklyn,Williamsburg,40.7189,-73.96416,Private room,88,2,7,2019-03-26,1.35,1,0 +30391061,Travelers Delight - Minutes from JFK and MTA,228207777,Marie,Queens,Springfield Gardens,40.66784,-73.75357,Entire home/apt,150,1,4,2019-05-15,0.70,1,162 +30391955,Queens Comfort,228213504,Lorraine,Queens,Jamaica,40.69607,-73.79842,Private room,45,3,0,,,1,0 +30392517,"Cozy Studio in Charming Chelsea, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73774,-73.99725,Entire home/apt,283,30,0,,,232,337 +30392543,Stately Theater District 1BR w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76177,-73.98504,Entire home/apt,316,30,0,,,232,311 +30392569,"Picture-perfect Flatiron Studio w/ Rooftop + Gym, by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74094,-73.99464,Entire home/apt,255,30,1,2019-02-03,0.19,232,330 +30392623,"Dapper Park Ave Studio w/ Gym, near Grand Central by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74943,-73.98055,Entire home/apt,282,30,1,2019-02-27,0.23,232,323 +30392649,Palatial Midtown East 1BR w/ Office nook + Doorman by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.74005,-73.97884,Entire home/apt,290,30,0,,,232,312 +30392677,"Bright 1BR near Times Sq w/ Indoor pool, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.75965,-73.98582,Entire home/apt,317,30,0,,,232,251 +30392704,Immaculate Chelsea 1BR w/ Water views + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74148,-73.99955,Entire home/apt,303,30,0,,,232,332 +30392780,"Stately Midtown Studio w/ Doorman, Gym, near MSG by Blueground",107434423,Blueground,Manhattan,Midtown,40.75149,-73.9908,Entire home/apt,206,30,0,,,232,203 +30392806,"Mod Tribeca 1BR w/ Gym, Doorman + Rooftop garden by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71295,-74.00906,Entire home/apt,278,30,0,,,232,330 +30392834,"Charming West Village Studio Oasis w/ Doorman, Gym by Blueground",107434423,Blueground,Manhattan,West Village,40.73021,-74.00379,Entire home/apt,305,30,0,,,232,1 +30392874,Crisp 1BR near Times Square w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.75963,-73.98595,Entire home/apt,316,30,0,,,232,262 +30392909,Smart Midtown East Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.748,-73.97943,Entire home/apt,252,30,0,,,232,315 +30392930,Bright + Mod Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71488,-74.00687,Entire home/apt,332,30,1,2019-02-05,0.19,232,1 +30392986,"Peaceful Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7388,-73.997,Entire home/apt,361,30,0,,,232,157 +30393018,"Stunning Tribeca Studio w/ City views, Gym + Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71479,-74.00621,Entire home/apt,269,30,0,,,232,310 +30393045,"Bright + Open Midtown 1BR w/ Doorman, Gym, Sundeck by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74108,-73.97788,Entire home/apt,245,30,0,,,232,280 +30393099,Handsome Tribeca Studio w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71607,-74.00564,Entire home/apt,305,30,1,2019-03-15,0.26,232,274 +30393171,Airy + Bright FiDi Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Financial District,40.70887,-74.01446,Entire home/apt,233,30,0,,,232,365 +30393194,Stately Central West Village 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.72873,-74.0034,Entire home/apt,459,30,0,,,232,293 +30393223,Stylish + Spacious UWS 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.7764,-73.98387,Entire home/apt,271,30,0,,,232,186 +30393251,"Darling Chelsea 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7387,-73.99699,Entire home/apt,314,30,1,2019-01-31,0.19,232,345 +30393286,"Gorgeous 2BR, 2BA, Pool + Doorman, near Times Sq by Blueground",107434423,Blueground,Manhattan,Hell's Kitchen,40.76046,-73.99685,Entire home/apt,416,30,0,,,232,335 +30393322,"Comfy Wall Street 1BR w/ Speakeasy, Gym, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70601,-74.0096,Entire home/apt,316,30,0,,,232,287 +30393342,"Neat FiDi Studio w/ Gym, Doorman, + Roof deck by Blueground",107434423,Blueground,Manhattan,Battery Park City,40.70444,-74.01712,Entire home/apt,232,120,0,,,232,163 +30393355,"Midtown 1BR Duplex w/ Gym, Doorman + Great views by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74737,-73.97626,Entire home/apt,262,60,0,,,232,188 +30393377,Clever 1BR near Broadway w/ Indoor pool + Gym by Blueground,107434423,Blueground,Manhattan,Theater District,40.76178,-73.98547,Entire home/apt,330,30,0,,,232,306 +30393414,"Grand UES 1BR w/ Doorman, Gym, + Roof deck by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77506,-73.95678,Entire home/apt,271,30,0,,,232,240 +30393427,Home,228223819,Arosha,Queens,Ridgewood,40.70967,-73.90962,Private room,45,3,3,2018-11-30,0.41,1,179 +30393443,"West Village/Chelsea 3 bd, unbelieveable location!",221901576,Richard,Manhattan,West Village,40.73944,-74.00563,Entire home/apt,453,1,16,2019-06-19,3.72,2,113 +30393464,"Superb FiDi 1BR w/ City views, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70455,-74.01008,Entire home/apt,236,30,0,,,232,185 +30393497,"Sleek Upper West Side 1BR w/ Balcony, Doorman, Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77639,-73.98269,Entire home/apt,294,30,0,,,232,219 +30393527,"Bright East Village 1BR w/ Balcony, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,East Village,40.72303,-73.98545,Entire home/apt,329,30,0,,,232,249 +30393555,"Serene UWS 2BR w/ Doorman, Gym, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.77771,-73.98244,Entire home/apt,481,30,0,,,232,156 +30393583,"Bespoke Central Chelsea 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73939,-73.99613,Entire home/apt,343,30,0,,,232,356 +30393609,"Sauve FiDi Studio w/ Private terrace, Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70864,-74.0051,Entire home/apt,224,30,0,,,232,338 +30393638,Adorable Theater District Studio w/ Indoor pool by Blueground,107434423,Blueground,Manhattan,Theater District,40.7601,-73.98504,Entire home/apt,278,30,0,,,232,304 +30393670,"Rad East Village 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,East Village,40.72277,-73.98419,Entire home/apt,312,30,0,,,232,358 +30393689,Posh 1BR in Hip East Village w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,East Village,40.72256,-73.98544,Entire home/apt,302,30,0,,,232,265 +30393759,Smart Studio in Heart of West Village w/ Doorman by Blueground,107434423,Blueground,Manhattan,West Village,40.73035,-74.00324,Entire home/apt,334,30,0,,,232,280 +30393778,"Sweet Midtown East 1BR, Water views, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.74478,-73.9727,Entire home/apt,258,30,0,,,232,235 +30393798,Modern Sleek Apartment in Dumbo,16051761,Sandra,Brooklyn,Downtown Brooklyn,40.69739,-73.98444,Entire home/apt,150,7,0,,,1,0 +30393803,Stately Central Chelsea 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74261,-73.99457,Entire home/apt,356,30,0,,,232,323 +30393836,"Chic Chelsea Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73934,-73.99737,Entire home/apt,278,30,1,2019-02-23,0.22,232,235 +30393853,Spacious 1 Bedroom in Historic Brownstone,49282603,Zahid,Brooklyn,Bedford-Stuyvesant,40.69054,-73.92801,Entire home/apt,75,7,4,2019-06-28,0.64,1,10 +30393882,"Smart FiDi Studio w/ Gym, Roofdeck + Speakeasy by Blueground",107434423,Blueground,Manhattan,Financial District,40.70485,-74.00934,Entire home/apt,184,30,0,,,232,180 +30393896,"Mod Tribeca Studio w/ Tons of light, Gym, Pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71508,-74.00628,Entire home/apt,274,30,0,,,232,194 +30393921,"Chic Central Chelsea 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73854,-73.99695,Entire home/apt,347,30,0,,,232,7 +30393944,"Spacious UWS 2BR w/ Great kitchen, Doorman + Gym by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7767,-73.98291,Entire home/apt,466,30,0,,,232,280 +30393969,Radiant Times Square 1BR w/ Indoor pool + Doorman by Blueground,107434423,Blueground,Manhattan,Theater District,40.7619,-73.9853,Entire home/apt,316,30,0,,,232,332 +30393998,Roomy 1BR near Broadway w/ Indoor pool + Doorman by Blueground,107434423,Blueground,Manhattan,Theater District,40.76058,-73.9855,Entire home/apt,285,30,0,,,232,220 +30394018,"Sleek Wall St. 1BR w/ Lux gym, Doorman, + Rooftop by Blueground",107434423,Blueground,Manhattan,Financial District,40.70513,-74.009,Entire home/apt,271,30,0,,,232,234 +30394053,"Dapper Midtown 1BR w/ Water views, Indoor pool by Blueground",107434423,Blueground,Manhattan,Theater District,40.76061,-73.98675,Entire home/apt,317,30,0,,,232,155 +30394071,Dazzling Tribeca 2BR w/ Indoor pool + Great views by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71659,-74.00653,Entire home/apt,388,30,0,,,232,1 +30394105,Expansive West Village Studio w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.7296,-74.00246,Entire home/apt,341,30,0,,,232,285 +30394133,Friendly Midtown East Studio w/ Great light + Gym by Blueground,107434423,Blueground,Manhattan,Kips Bay,40.745,-73.97942,Entire home/apt,237,30,1,2019-04-11,0.34,232,283 +30394155,"Open + Cozy Chelsea Studio w/ Gym, Lovely Sundeck by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7407,-73.99478,Entire home/apt,248,30,0,,,232,346 +30394179,Charming Central West Village 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,West Village,40.73005,-74.00208,Entire home/apt,379,30,0,,,232,340 +30394203,"Cozy + Quaint Chelsea 1BR w/ Doorman, Gym, Balcony by Blueground",107434423,Blueground,Manhattan,Chelsea,40.7392,-73.99578,Entire home/apt,314,30,0,,,232,359 +30394223,Snazzy Wall Street Studio w/ Lux gym + Roof deck by Blueground,107434423,Blueground,Manhattan,Financial District,40.70593,-74.0091,Entire home/apt,251,30,0,,,232,16 +30394274,"Gorgeous, Roomy West Village 1BR w/ Doorman by Blueground",107434423,Blueground,Manhattan,West Village,40.72946,-74.00318,Entire home/apt,423,30,0,,,232,229 +30394324,"Chic Midtown East 1BR w/ Doorman, Gym + Sundecks by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7396,-73.97938,Entire home/apt,240,30,0,,,232,249 +30394340,"Comfy Tribeca Studio w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71409,-74.00977,Entire home/apt,245,30,0,,,232,310 +30394380,"Bright + Airy Theater District 1BR w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76103,-73.98666,Entire home/apt,329,30,0,,,232,98 +30394403,"Luxury FiDi Studio w/ Gym, Roof deck + Speakeasy by Blueground",107434423,Blueground,Manhattan,Financial District,40.70631,-74.00886,Entire home/apt,265,30,0,,,232,45 +30394423,"Dapper Chelsea Studio w/ Balcony, Gym + Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73785,-73.99736,Entire home/apt,300,30,0,,,232,356 +30394446,Hip + Bright Studio w/ Balcony in Charming Chelsea by Blueground,107434423,Blueground,Manhattan,Chelsea,40.73935,-73.99691,Entire home/apt,267,30,0,,,232,340 +30394467,"Chic Central Chelsea 1BR w/ Gym, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73939,-73.99747,Entire home/apt,374,30,0,,,232,312 +30394494,"Charming Chelsea 1BR w/ Office nook, near Union Sq by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73795,-73.99753,Entire home/apt,316,30,0,,,232,339 +30394518,Opulent FiDi Studio w/ Great Rooftop + Gym by Blueground,107434423,Blueground,Manhattan,Financial District,40.70571,-74.01509,Entire home/apt,189,30,1,2019-02-15,0.21,232,142 +30394541,Bright 1BR w/ Gym near Chelsea Mkt + Meatpacking by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74423,-74.0026,Entire home/apt,298,30,0,,,232,285 +30394622,"Ideal Chelsea 1BR w/ Office nook, Balcony, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73924,-73.99586,Entire home/apt,362,30,0,,,232,211 +30394691,Explore NYC from its best nabe! 1 blck from subway,136900522,Matt,Queens,Astoria,40.76403,-73.92195,Entire home/apt,150,2,1,2018-12-10,0.14,1,0 +30395040,Naturally Lit/ Cozy & Cute Studio in Flatbush,61105987,Taylor,Brooklyn,Flatbush,40.63574,-73.95129,Entire home/apt,90,3,7,2019-06-11,2.26,1,5 +30395433,Gorgeous NYC apt. near everything! (Women only),27698539,Roberta,Manhattan,Midtown,40.74985,-73.98152,Private room,90,2,13,2019-07-07,1.88,1,24 +30395680,1 bed 2 guest luxury Apt in Brooklyn,226406882,Lizzy,Brooklyn,East Flatbush,40.66051,-73.92964,Private room,75,1,0,,,3,364 +30395737,Private Bed in Brooklyn Him-1R-6,216235179,Nina,Brooklyn,Bushwick,40.69997,-73.92054,Private room,47,30,0,,,17,323 +30396100,"Private Bedroom in Prime Bushwick, GREAT Location!",216235179,Nina,Brooklyn,Bushwick,40.69972,-73.91874,Private room,47,30,2,2019-04-30,0.59,17,347 +30396953,Bright South Slope Studio,34866807,Mary,Brooklyn,Sunset Park,40.66278,-73.99206,Entire home/apt,250,2,29,2019-06-30,4.08,1,121 +30397278,Cozy loft bed,228250502,Bill,Manhattan,Gramercy,40.73567,-73.98403,Shared room,69,2,9,2019-07-01,1.44,1,62 +30397717,Not available,228253636,Richard,Brooklyn,Williamsburg,40.71434,-73.9398,Private room,90,1,0,,,1,364 +30398077,A large Sunny Bedroom in Astoria,132801944,Shampa,Queens,Astoria,40.7686,-73.91354,Private room,120,2,4,2019-05-13,0.62,2,0 +30398373,Fifth Ave/Central Park Studio Apt,228257645,Svetlana,Manhattan,Midtown,40.76334,-73.97809,Entire home/apt,200,3,3,2019-06-23,0.97,1,85 +30398902,Cozy 1 bedroom in the heart of Hell's Kitchen!,14501006,Ryan,Manhattan,Hell's Kitchen,40.76007,-73.98965,Entire home/apt,430,2,0,,,1,0 +30398938,Perfect Location in Manhattan,211549023,Studioplus,Manhattan,Midtown,40.74697,-73.98693,Entire home/apt,240,2,11,2019-06-17,1.89,13,258 +30399177,Next to train-Spacious-Sleeps 2-Flex Chk In Times,228263278,475,Manhattan,Harlem,40.82391,-73.94699,Private room,160,2,2,2019-04-13,0.32,4,180 +30399408,Cozy Studio in Upper East Side,110278081,Ashley,Manhattan,Upper East Side,40.77225,-73.95326,Entire home/apt,70,2,16,2019-06-16,2.24,1,4 +30399435,"East Village Gem for 7, 1 block to train",224368116,Ev,Manhattan,Lower East Side,40.72235,-73.98911,Entire home/apt,313,1,22,2019-06-23,4.52,1,28 +30399838,Spacious 3 bedroom 2 bathroom Upper West Side home,228268284,Michele,Manhattan,Upper West Side,40.77853,-73.97609,Entire home/apt,750,7,1,2018-12-12,0.14,1,0 +30399969,Cozy Two Bedroom Apartment in Greenpoint,129312581,Andre,Brooklyn,Greenpoint,40.72944,-73.95395,Entire home/apt,167,2,0,,,1,0 +30399972,Charming room Newly Renovated Apt30 mins from city,228268188,Motlaq,Brooklyn,Borough Park,40.62801,-74.00328,Private room,65,1,7,2019-05-21,1.00,1,351 +30400100,"Greenwich Village/ Noho Duplex Flat! Bright, Luxe",224480214,Ollie,Manhattan,East Village,40.72493,-73.99061,Entire home/apt,308,1,39,2019-06-22,6.46,1,269 +30400390,Cozy Exposed Brick Apartment in Brooklyn !,48138946,Isabella,Brooklyn,Columbia St,40.68491,-74.00183,Entire home/apt,100,1,11,2019-06-16,1.55,1,81 +30400423,Amazing Room Close to Metro,226338109,Mia,Brooklyn,Bedford-Stuyvesant,40.6887,-73.95572,Private room,60,2,13,2019-06-11,1.83,4,311 +30400542,Amazingly located private room with huge space!,137358866,Kazuya,Queens,Woodside,40.74405,-73.89994,Private room,42,30,0,,,103,219 +30400683,Amazing place Harlem (10 min walk Central Park),36747057,Roberto,Manhattan,Harlem,40.80666,-73.95691,Private room,90,6,4,2019-03-24,1.02,1,0 +30400980,Cozy 2 Bed/1 Bath in the heart of Red Hook,62869020,Jacob,Brooklyn,Red Hook,40.67846,-74.0141,Entire home/apt,120,4,2,2019-02-26,0.39,1,0 +30401429,Lovely room in convenient location. J/M & L trains,58344344,Julie,Brooklyn,Bushwick,40.70089,-73.93903,Private room,51,1,33,2019-06-28,5.24,1,19 +30402045,Large private room in 2nd floor apartment.,171673961,Eric,Brooklyn,Bedford-Stuyvesant,40.67896,-73.90892,Private room,25,2,2,2019-01-01,0.30,1,0 +30403397,Cozy spacious studio close to Times Square,5439134,Ethan,Manhattan,Hell's Kitchen,40.76331,-73.99128,Entire home/apt,150,1,1,2019-06-12,1,1,5 +30403504,"Chic PENT HOUSE near LaGuardia airport, 30 to nyc.",95570854,Fatema,Queens,Ditmars Steinway,40.76711,-73.89367,Entire home/apt,250,7,0,,,2,365 +30403878,*Just right budget room :),226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68059,-73.91372,Private room,55,5,4,2019-05-26,0.72,10,360 +30404034,Bright 1BR Duplex - Welcome to Bed-Stuy!,6899080,Betsy,Brooklyn,Bedford-Stuyvesant,40.68181,-73.91811,Entire home/apt,115,3,22,2019-07-01,3.49,1,44 +30404664,A Large Private Room in Greenpoint- 15 min to Manh,72512761,Erik,Brooklyn,Greenpoint,40.72325,-73.94911,Private room,44,1,29,2019-05-30,4.07,3,0 +30405178,Luxury Apartment in Midtown West,51937277,Jessica,Manhattan,Hell's Kitchen,40.75399,-73.99764,Entire home/apt,243,2,14,2019-05-26,1.89,1,93 +30406215,Comfy Midtown East Getaway,73262360,Blake,Manhattan,Midtown,40.75893,-73.96751,Entire home/apt,290,4,1,2019-06-03,0.83,1,52 +30406311,Private room (Bee Room) in Bushwick Brownstone,40305031,Rob,Brooklyn,Bushwick,40.68426,-73.90793,Private room,65,1,5,2019-05-07,0.68,2,363 +30406899,Private room (Paris Room) in Bushwick Brownstone,40305031,Rob,Brooklyn,Bushwick,40.68583,-73.90985,Private room,55,1,10,2019-05-06,1.36,2,365 +30407158,BEAUTIFUL PRIVATE ROOM IN EAST VILLAGE,228321090,Imade,Manhattan,East Village,40.72658,-73.98803,Private room,115,1,20,2019-05-31,2.83,1,67 +30407308,La Greka,109843377,Rubi,Brooklyn,Bedford-Stuyvesant,40.67992,-73.90943,Private room,60,14,0,,,2,156 +30408787,Clean + Comfortable Bedroom in West Harlem,228332039,Dystini,Manhattan,Harlem,40.82631,-73.95201,Private room,30,1,3,2019-05-26,1.41,1,8 +30415541,"Lovely 2 BR Skyline View , 5 Min to Manhattan",33320745,Daniel,Queens,Long Island City,40.75256,-73.93671,Entire home/apt,250,6,4,2019-07-02,1.56,1,105 +30416267,House of Stylez,15377463,Kazem,Brooklyn,Bedford-Stuyvesant,40.68525,-73.93159,Private room,65,2,0,,,1,0 +30417368,Great 1br near Prospect Park,129732248,Dan,Brooklyn,Flatbush,40.65332,-73.95778,Entire home/apt,120,4,19,2019-06-25,2.98,1,8 +30417665,MANHATTAN Upper West LUXURY -- for 5. Free Parkng,71276635,Joe,Manhattan,Washington Heights,40.83547,-73.94207,Entire home/apt,140,1,22,2019-07-07,3.10,5,334 +30417877,Private Room #2 in Brooklyn,25077909,Carlos,Brooklyn,Bedford-Stuyvesant,40.69044,-73.92636,Private room,50,3,10,2019-06-26,1.59,2,235 +30418156,Cozy room in Doormen/Elev. bldg by Grand Central,24346280,Eric,Manhattan,Midtown,40.75294,-73.97105,Private room,70,5,1,2019-02-20,0.22,1,0 +30418220,Aziza's Cosy Apartment,59917137,Aziza,Manhattan,Harlem,40.8206,-73.93779,Private room,65,5,1,2019-01-02,0.16,1,0 +30418770,Beautiful bedroom in a 3 bedroom apartment,221645033,Afrah,Brooklyn,Bushwick,40.69947,-73.92006,Private room,50,1,1,2019-06-25,1,5,333 +30418905,Private Room In Brooklyn Community House,35746135,Lionel,Brooklyn,Borough Park,40.6289,-73.97683,Private room,35,1,9,2019-03-30,1.23,2,0 +30420904,Cozy Brooklyn Bedroom - Close to Manhattan!,226350275,Bryan,Brooklyn,Greenpoint,40.7242,-73.94235,Private room,60,1,1,2018-12-28,0.16,1,0 +30421561,"Ideal UES 1BR w/ Doorman, near Central Park by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77135,-73.95035,Entire home/apt,245,30,1,2019-01-11,0.17,232,326 +30421730,2 BR/2BA Modern Apt in Prime TriBeCa Location,65797727,Tram,Manhattan,Tribeca,40.7208,-74.01097,Entire home/apt,300,4,0,,,1,0 +30421742,"""Mi casa es su casa"" Welcome home",224315550,Leonardo,Brooklyn,Williamsburg,40.71043,-73.96505,Private room,90,2,27,2019-07-05,3.84,2,56 +30421981,Nolita/SoHo! Location Share! Views! Elevator!,506779,Claudia,Manhattan,Lower East Side,40.72065,-73.99282,Private room,295,3,0,,,2,338 +30422332,"Huge, Beautiful Apt perfect for Holidays in Harlem",8661991,Olivia,Manhattan,Harlem,40.81223,-73.94156,Entire home/apt,200,2,1,2018-12-30,0.16,1,0 +30422813,Studio in East Williamsburg - Steps to Subway,158970159,Nancy,Brooklyn,Williamsburg,40.70236,-73.94663,Entire home/apt,95,14,1,2019-01-18,0.17,1,0 +30423106,Lou's Palace-So much for so little,228415932,Louann,Queens,Rosedale,40.65417,-73.74158,Private room,45,1,37,2019-07-08,20.94,1,134 +30423282,Lovely Aprt. 6 mins walk from Utica Av. Station,210427776,Obinna,Brooklyn,Crown Heights,40.67708,-73.92944,Private room,25,2,4,2019-01-10,0.59,1,0 +30423571,Bushwick Bedroom,228420131,Jonathan,Brooklyn,Bushwick,40.69456,-73.90714,Private room,35,2,7,2019-05-31,1.07,1,35 +30424508,Bright + cozy room in leafy Williamsburg apartment,383623,Melissa,Brooklyn,Williamsburg,40.71239,-73.95419,Private room,50,5,4,2019-06-24,0.56,1,12 +30424707,"Beautiful, comfortable 1bedroom in Hell's Kitchen!",34292000,Shannon,Manhattan,Hell's Kitchen,40.76602,-73.98766,Entire home/apt,150,2,4,2019-06-22,0.59,1,1 +30425766,Bed in a shared male room,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.69218,-73.9439,Shared room,30,2,14,2019-05-20,1.92,4,224 +30425770,Queens Corner Lot,128580688,-TheQueensCornerLot,Queens,Queens Village,40.70524,-73.73349,Entire home/apt,150,1,51,2019-07-07,7.43,1,248 +30426001,South Harlem Share,228437214,Paul,Manhattan,Harlem,40.80306,-73.95508,Private room,65,1,48,2019-07-05,6.70,1,4 +30426054,"New York City - East Village +Right in The Action!",7544635,Stephen,Manhattan,East Village,40.72579,-73.98301,Private room,130,2,0,,,2,177 +30427406,Cozy Room for the Holidays in the Heart of Astoria,166794407,Bruna,Queens,Astoria,40.76677,-73.91169,Shared room,55,5,0,,,3,83 +30427521,"Cozy, bright Bohemian pad in NYC's Epic Village",214979297,Fryske,Manhattan,Greenwich Village,40.72792,-73.99877,Entire home/apt,110,5,3,2019-06-04,0.41,1,4 +30427669,Private Rooms in Brooklyn,78104160,Lana,Brooklyn,Bay Ridge,40.63234,-74.0231,Private room,40,14,3,2019-01-18,0.46,1,0 +30428469,"Cozy, spacious Studio located on Upper East Side",29411875,Nikki,Manhattan,Upper East Side,40.76782,-73.95918,Entire home/apt,175,3,3,2019-01-01,0.46,1,0 +30428479,"Clean, Warm, and Comfortable !",228130265,Mr,Brooklyn,East Flatbush,40.66257,-73.92355,Entire home/apt,125,2,22,2019-06-24,3.25,1,82 +30428730,Charming Studio in the heart of West Village,17618432,Camellia,Manhattan,West Village,40.73563,-74.00659,Entire home/apt,215,1,3,2019-01-01,0.42,1,0 +30429113,Minimalist Studio in Central Downtown,17040751,Jaisy,Manhattan,Civic Center,40.71224,-74.00684,Entire home/apt,150,90,0,,,1,0 +30429469,Time Square - DOUBLE DOUBLE ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75472,-73.99713,Private room,199,1,17,2019-04-16,2.37,30,334 +30429519,Bright room in a newly renovated Apt in Brooklyn,82683774,Ruben And Will,Brooklyn,Crown Heights,40.6761,-73.93502,Private room,45,2,17,2019-05-05,2.52,1,14 +30429599,Room in a Magical Bowery Loft in Nolita,20277431,Matthew,Manhattan,Nolita,40.72316,-73.99329,Private room,220,7,0,,,1,89 +30429620,BIG APPLE - SUNNY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75508,-73.99696,Private room,199,1,10,2019-06-10,1.36,30,356 +30429625,Guest Room with 2 beds in Bayridge Brooklyn,148049072,Ahmed,Brooklyn,Fort Hamilton,40.61964,-74.02518,Private room,90,2,1,2019-01-01,0.16,1,79 +30429780,GOTHAM - DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75541,-73.99634,Private room,199,1,17,2019-04-20,2.34,30,354 +30429970,TIME SQ WEST- COZY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75523,-73.99709,Private room,199,1,17,2019-06-16,2.32,30,347 +30430139,TIME SQ WEST-COZY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75659,-73.99867,Private room,179,1,20,2019-05-27,2.76,30,364 +30430163,Apartment in south Williamsburg,96089493,Masashi,Brooklyn,Williamsburg,40.71282,-73.95742,Private room,60,1,1,2018-12-08,0.14,1,0 +30430185,BIG APPLE - COMFY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75655,-73.9969,Private room,179,1,18,2019-05-05,2.49,30,364 +30430235,MANHATTAN WEST - SUNNY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75505,-73.99811,Private room,179,1,16,2019-05-30,2.22,30,363 +30430294,MADISON SQ - COZY KING ROOM,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7561,-73.99855,Private room,179,1,13,2019-05-01,1.82,30,361 +30432254,"Beautifully lit, newly renovated bushwick home",284199,Avijit,Brooklyn,Bushwick,40.69277,-73.92133,Private room,70,15,0,,,2,0 +30434346,"Prime private room, on bedford ave in a 2Bd apt",1395530,Dorit,Brooklyn,Williamsburg,40.71285,-73.96124,Private room,27,20,2,2019-05-27,0.42,1,333 +30435549,Lux Condo RM near Manhattan & LGA! Laundry + GYM,137358866,Kazuya,Queens,Maspeth,40.74027,-73.90146,Private room,49,30,0,,,103,251 +30435663,Magical Gramercy Apartment,113417140,Mya,Manhattan,Kips Bay,40.74022,-73.98003,Entire home/apt,200,2,2,2019-06-17,1.40,1,0 +30435839,Comfortable sweet room near to JFK airport - 8min,222049462,Jose,Queens,Rosedale,40.65901,-73.7356,Private room,55,1,42,2019-06-28,5.78,2,87 +30437291,Beautiful large room Manhattan/Roosevelt Island,228524640,Dragomir,Manhattan,Roosevelt Island,40.7616,-73.95052,Private room,55,21,1,2019-03-08,0.24,1,342 +30437417,Spacious 1 Bedroom Brooklyn Apartment,1627760,Lucy,Brooklyn,Clinton Hill,40.68911,-73.96297,Entire home/apt,190,3,1,2019-01-01,0.16,1,0 +30437498,"LXRY BLDG-next to Central Park, Times Sq,SLEEPS 5!",48572835,Jodi,Manhattan,Hell's Kitchen,40.76552,-73.98498,Entire home/apt,300,6,2,2019-06-06,1.33,1,270 +30437677,Clean apt for 5 close to the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.68238,-73.90641,Entire home/apt,125,2,3,2019-07-01,1.11,5,342 +30437968,Beautiful one bed in the best part of Brooklyn,52575295,Jonny,Brooklyn,Williamsburg,40.71972,-73.95705,Entire home/apt,295,5,3,2019-06-22,0.49,1,46 +30438095,Clean apt for 3 close to the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.68325,-73.90637,Entire home/apt,125,2,2,2019-01-02,0.30,5,347 +30438251,New York Highrise,228536894,Victoria,Manhattan,Greenwich Village,40.73293,-73.9946,Private room,47,1,2,2018-12-31,0.31,1,0 +30438271,Large Bedroom Next to Central Park,31610838,Chris,Manhattan,Upper West Side,40.79895,-73.96128,Private room,95,12,1,2019-01-10,0.17,1,0 +30438391,Newly built stylish retreat. A couple's haven...,137358866,Kazuya,Queens,Maspeth,40.73998,-73.90113,Private room,63,30,1,2019-05-01,0.43,103,251 +30438997,Garden apt for 4 near the city & with free gym,105367031,Miriam,Brooklyn,Bushwick,40.6821,-73.90694,Entire home/apt,125,2,1,2019-04-21,0.37,5,347 +30439073,Gorgeous 2 bedroom condo with a Manhattan skyline,5732940,Anna,Queens,Long Island City,40.7409,-73.95506,Entire home/apt,225,3,1,2019-06-22,1,1,314 +30439210,Charming 2 Bedroom in Park Slope,3548411,CASA Heidi,Brooklyn,Park Slope,40.67559,-73.97633,Entire home/apt,300,3,14,2019-06-28,2.22,1,311 +30439398,Super Sunny Room in Calm Bed-Stuy Apartment,47152279,Noelle,Brooklyn,Bedford-Stuyvesant,40.69043,-73.94288,Private room,40,3,3,2019-05-18,0.43,1,0 +30439600,"NY Penthouse in Midtown, Near everything Christmas",209964870,Maria,Manhattan,Hell's Kitchen,40.76726,-73.9901,Entire home/apt,149,4,1,2019-01-01,0.16,1,0 +30439783,The Halsey Treehouse,138573840,Helen,Brooklyn,Bushwick,40.69453,-73.90667,Private room,90,1,2,2019-01-01,0.31,1,0 +30439949,Fantastic sunny apartment and 10 Min to Manhattan,135060128,Abella,Brooklyn,Williamsburg,40.70809,-73.94913,Entire home/apt,160,1,35,2019-07-04,4.79,2,269 +30440226,Sky-luxury building 1b1b Main bedroom rental,217642173,Xiangjun,Manhattan,Hell's Kitchen,40.76243,-73.99901,Private room,207,1,3,2019-05-29,0.74,2,82 +30440427,NYC Designer 4bedrooms 2bath! PRIVATE PATIO,228552300,Michael,Manhattan,East Village,40.72124,-73.9801,Entire home/apt,805,4,19,2019-07-01,2.63,1,168 +30440488,Gorgeous Private Bedroom Madison 2L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93085,Private room,42,30,1,2019-01-26,0.18,27,311 +30440653,Meserole Street,6284535,Thoralf,Brooklyn,Williamsburg,40.70827,-73.9425,Private room,63,4,0,,,1,187 +30440712,Private Bedroom in Williamsburg Madison 2L-5,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93053,Private room,42,30,0,,,27,332 +30440903,Amazing Bedroom in Bushwick Madison 3L-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68625,-73.93286,Private room,42,30,1,2019-05-21,0.60,27,282 +30441211,Excellent large private room - HK/Columbus Cir,7384820,Lancelot,Manhattan,Hell's Kitchen,40.76547,-73.98521,Private room,115,1,22,2019-06-29,3.22,1,33 +30441377,Great access/2min U can use 5 lines(EFMR7),200239515,Shogo,Queens,Woodside,40.74652,-73.89154,Private room,28,28,0,,,15,0 +30441504,"Large, Comfortable 2 Bedroom Apartment",157287318,Susan,Manhattan,Kips Bay,40.7413,-73.98145,Entire home/apt,275,30,35,2019-06-24,5.00,1,253 +30441751,"Spacious, Sunny Apartment in Bed Stuy",28060043,Olivia,Brooklyn,Bedford-Stuyvesant,40.68757,-73.94428,Entire home/apt,195,2,2,2019-06-16,0.32,1,1 +30441793,Cozy Brooklyn Room,200055931,Jessica,Brooklyn,Red Hook,40.67441,-74.01278,Private room,280,1,0,,,1,90 +30441795,Stunning Luxury Priv. Room: Prime Upper East!,184670155,James,Manhattan,Upper East Side,40.77566,-73.94747,Private room,100,1,6,2019-03-17,1.02,2,0 +30442211,Whole Bedroom in Co-Living Space Madison 3L-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68561,-73.93289,Private room,35,30,1,2019-05-30,0.73,27,312 +30442257,"Luxury Building 15 mins from LES +Manhattan",40204585,Olivia,Brooklyn,Bushwick,40.70026,-73.93582,Entire home/apt,180,1,3,2019-04-09,0.47,1,0 +30442290,Modern Private Bedroom in Stuyvesant Madison 3L-5,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68744,-73.93088,Private room,42,30,1,2019-05-08,0.48,27,346 +30442333,"Lovely colonial house in Queens, New York.",228567385,Clarabel,Queens,College Point,40.79118,-73.84766,Entire home/apt,150,2,6,2019-06-03,0.95,1,336 +30442508,Bedroom in Brooklyn Madison 3R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68567,-73.93123,Private room,42,30,0,,,27,358 +30442585,Luxury Private Bedrm in Williamsburg Madison 3R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68589,-73.93057,Private room,42,30,0,,,27,358 +30442665,"Private Bedroom in Williamsburg, Brooklyn",53186123,Jennifer,Brooklyn,Williamsburg,40.71423,-73.96234,Private room,65,1,19,2019-05-25,3.28,1,0 +30442720,Spacious room in heart of Bushwick Madison 3R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68616,-73.93136,Private room,42,30,0,,,27,358 +30442775,Cozy room in Astoria ideal for travelers on budget,220095360,Jayoung,Queens,Astoria,40.76341,-73.92535,Private room,27,7,0,,,1,0 +30442790,Great Private Bedroom at Great Price Madison 3R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68692,-73.9307,Private room,42,30,0,,,27,326 +30442870,Furnished Bedroom in Brooklyn Madison 2R-1,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68639,-73.93069,Private room,42,30,1,2019-04-08,0.33,27,342 +30442999,Bedroom in heart of Bushwick Madison 2R-2,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68726,-73.93289,Private room,42,30,0,,,27,312 +30443032,Modern Williamsburg Beauty,10458297,Michael,Brooklyn,Williamsburg,40.71079,-73.95192,Private room,230,4,0,,,1,35 +30443067,Beautiful Bedroom in Stuyvesant Madison 2R-3,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68737,-73.93132,Private room,42,30,0,,,27,343 +30443115,Modern Bedroom in Williamsburg Madison 2R-4,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68607,-73.93235,Private room,42,30,0,,,27,331 +30443961,"Cozy Private Bedroom in NYC ""LES"" Manhattan!",226503876,Chi,Manhattan,Lower East Side,40.71383,-73.98867,Private room,60,5,13,2019-06-30,1.90,2,253 +30443976,Times Square Palace,193986289,Greg,Manhattan,Theater District,40.76006,-73.98589,Entire home/apt,3000,1,0,,,1,311 +30444003,Bright and Cozy Little Spot in Long Island City,8144643,Karina & Garrett,Queens,Long Island City,40.74588,-73.95377,Entire home/apt,90,5,0,,,1,0 +30444500,Brooklyn Comfy Getaway,193963715,Steph,Brooklyn,East Flatbush,40.65074,-73.92945,Entire home/apt,75,6,2,2018-12-25,0.30,1,24 +30444675,Lovely Apartment in Upper West,209943977,Carolina,Manhattan,Upper West Side,40.80155,-73.96498,Entire home/apt,120,2,4,2019-05-16,0.61,1,0 +30444773,Comfortable Space in the Center of Brooklyn,1157099,Ramon,Brooklyn,Bedford-Stuyvesant,40.67904,-73.94837,Entire home/apt,75,2,11,2019-06-23,1.73,1,0 +30445028,Midtown Priv. Lux.Room in a Penthouse (only girls),172586583,Miriam,Manhattan,Chelsea,40.74772,-73.99146,Private room,110,3,6,2019-06-28,0.84,1,12 +30445079,Spiritual Oasis in the East Village,37254146,Atma,Manhattan,East Village,40.72877,-73.98249,Entire home/apt,189,19,1,2019-01-04,0.16,1,200 +30445156,Great for students!,51842673,Rayquila,Brooklyn,Bedford-Stuyvesant,40.6843,-73.93836,Shared room,725,1,0,,,1,0 +30445539,Cozy & clean private bedroom. Brooklyn NY,225291555,Daniela,Brooklyn,Williamsburg,40.71218,-73.9363,Private room,55,2,5,2019-04-02,0.79,2,160 +30446240,Original NoHo Loft full of Charm & Character,35352941,Bonnie,Manhattan,NoHo,40.72662,-73.99423,Entire home/apt,350,7,0,,,1,219 +30446253,"Affordable, quiet, tasteful bedspace",171198420,Edna,Brooklyn,East Flatbush,40.65343,-73.94914,Private room,35,3,39,2019-07-01,6.43,2,8 +30447266,ENJOYABLE APT. FOR LONG STAY. 15 MIN. TO MANHATTAN,3229770,Luis,Queens,Sunnyside,40.73697,-73.92478,Entire home/apt,149,3,6,2019-06-25,0.91,4,305 +30447329,Bedroom in Crown Heights,68039772,Celeste,Brooklyn,Crown Heights,40.67249,-73.95564,Private room,55,4,1,2018-12-02,0.14,1,15 +30448539,Lower East Side Tenement Get Away,27421445,Brett,Manhattan,Lower East Side,40.71357,-73.98553,Private room,50,6,1,2019-01-06,0.16,1,0 +30448678,Bed in a shared male room2,224074972,Askhat,Brooklyn,Bedford-Stuyvesant,40.694,-73.94355,Shared room,30,2,18,2019-07-07,2.57,4,192 +30449094,Private Room in A Family House,228608906,Linda,Staten Island,Arrochar,40.59107,-74.07061,Private room,65,1,1,2019-01-01,0.16,2,362 +30449111,Bxny Yankees,227856882,Carl,Bronx,Concourse,40.83513,-73.91797,Private room,99,1,2,2019-06-03,0.32,1,90 +30450834,Mina’s House,228622994,Mina,Queens,Jamaica,40.69409,-73.79363,Private room,29,1,26,2019-04-14,3.84,1,0 +30451593,HOLIDAY RENTAL: Great Room Close to Trains!,27664722,Gloria,Brooklyn,Bushwick,40.69539,-73.92267,Private room,30,3,2,2019-01-01,0.30,1,0 +30452520,"Cozy bedroom in heart of Manhattan, next to Empire",20790185,Anna,Manhattan,Midtown,40.74815,-73.98374,Shared room,90,2,8,2019-06-08,1.11,1,5 +30453281,☯ Ur Cool & Cozy Chambers ☯,69189948,Ella,Manhattan,Washington Heights,40.84878,-73.93449,Private room,50,1,12,2019-07-02,1.69,3,0 +30457958,East village renovated studio,15397994,Samantha,Manhattan,East Village,40.72715,-73.9848,Entire home/apt,175,2,7,2019-06-30,1.10,1,38 +30458672,Newly renovated with elevator room 1,125961131,David,Manhattan,Two Bridges,40.71107,-73.99509,Private room,79,1,44,2019-06-28,6.38,3,3 +30459160,Large 2 Bedroom Apt - Close to everything!,84147508,Andre,Queens,Ridgewood,40.70028,-73.90785,Entire home/apt,190,3,1,2018-12-30,0.16,1,0 +30459588,Beautiful and open apartment in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82071,-73.95359,Shared room,34,1,17,2019-07-02,2.33,3,4 +30460606,"Spacious, Sleeps 10, 2 baths, EAST VILLAGE!",224678494,Amy & Brian,Manhattan,East Village,40.72336,-73.98465,Entire home/apt,443,1,28,2019-06-23,4.75,1,293 +30460675,2 Bedroom Williamsburg Oasis w/Private Backyard,67727548,Rachel,Brooklyn,Williamsburg,40.7066,-73.94625,Entire home/apt,150,2,9,2019-06-18,1.27,1,1 +30461720,"Cozy yet Spacious 1BR Apt, 25 Min from Manhattan",157219382,Lucy,Queens,Elmhurst,40.74717,-73.87645,Entire home/apt,75,6,1,2019-01-25,0.18,1,0 +30462343,⭐SPRING/SUMMER SALE- LARGE OUTDOOR PATIO⭐,216428022,Frankie,Manhattan,Chelsea,40.74877,-73.99754,Entire home/apt,299,2,10,2019-04-28,1.46,1,271 +30462998,Urban Oasis Steps from Central Park,228707670,Mohan,Manhattan,Harlem,40.80466,-73.95635,Entire home/apt,112,3,14,2019-06-19,3.31,1,16 +30463017,Classy welcoming 3-bedroom - 20 Mins to Manhattan,212456912,Mora,Brooklyn,Bushwick,40.69058,-73.91402,Entire home/apt,125,2,22,2019-07-06,3.22,1,122 +30463419,New Years in NYC - in a Gold Star Resort,24552104,Terry,Manhattan,Midtown,40.76424,-73.98143,Private room,350,3,0,,,1,3 +30463784,"Luxury 4br 2ba, sleeps 12! Blocks from Subway.",224684025,David,Brooklyn,Williamsburg,40.70629,-73.95636,Entire home/apt,392,1,19,2019-06-21,3.73,1,337 +30464086,Naelle studio,218543704,Kersaint,Brooklyn,East Flatbush,40.64718,-73.94778,Entire home/apt,150,1,18,2019-06-09,2.54,1,175 +30464266,Beautiful Loft in the Heart of Nolita,14413778,Allegra,Manhattan,Nolita,40.7233,-73.99463,Entire home/apt,800,3,0,,,2,0 +30464498,"Ideally located cozy, quiet apartment",46745791,Christine,Manhattan,Hell's Kitchen,40.76289,-73.98808,Entire home/apt,145,2,3,2019-01-02,0.46,1,0 +30464926,"BK. Private entrance, w pool and gym",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69362,-73.90727,Private room,55,3,7,2019-06-24,1.74,3,79 +30465539,Bohemian twist studio,140348326,Sanja,Queens,Astoria,40.75807,-73.91582,Entire home/apt,80,4,0,,,2,0 +30465758,Stylized room in Harlem 141 st,566838,Max,Manhattan,Harlem,40.82008,-73.94057,Private room,50,1,30,2019-07-07,6.25,2,149 +30466053,Awesome 2 bed apartment in LES,45731391,Laurence,Manhattan,Lower East Side,40.72068,-73.99019,Entire home/apt,195,2,1,2019-01-01,0.16,3,0 +30466608,Manhattan studio near Central Park & Times Square.,38407262,Kay,Manhattan,Upper West Side,40.80017,-73.96882,Entire home/apt,115,3,9,2019-06-22,1.34,1,315 +30466737,Art Life in the City – from Brooklyn to Manhattan,1936796,JenJoy,Brooklyn,Williamsburg,40.71228,-73.93782,Private room,72,2,3,2019-06-30,3,2,0 +30467289,Private South Williamsburg 1BR,20631010,Anna & Ben,Brooklyn,Williamsburg,40.70601,-73.95424,Entire home/apt,180,3,0,,,1,0 +30467785,Private Chic Midtown 1 BD Apt Theater District,40245658,Alexa,Manhattan,Hell's Kitchen,40.76326,-73.99018,Entire home/apt,264,2,8,2019-07-01,1.28,3,2 +30468177,Sunny apartment in the heart of Williamsburg,4765019,Xavier,Brooklyn,Williamsburg,40.7198,-73.95741,Entire home/apt,150,3,9,2019-06-30,1.44,1,0 +30468335,LARGE Prospect Lefferts Gardens Bedroom,228750026,,Brooklyn,Flatbush,40.65152,-73.95271,Private room,55,7,0,,,1,69 +30468550,Lovely one-bedroom in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82012,-73.9515,Entire home/apt,101,2,8,2019-06-06,1.24,3,0 +30468686,Minimal Bed-stuy Bedroom with Fire Escape,11769840,Amber,Brooklyn,Bedford-Stuyvesant,40.68611,-73.92428,Private room,70,2,8,2019-07-01,1.22,2,5 +30468736,Spacious apt in Brooklyn Brownstone 1 min to Metro,39523280,Rebecca,Brooklyn,Prospect-Lefferts Gardens,40.66184,-73.9495,Entire home/apt,185,2,30,2019-06-21,4.59,1,281 +30469105,"Global Sanctuary ~ Brooklyn, Entire House",88036082,DaNeilia,Brooklyn,East Flatbush,40.63912,-73.92827,Entire home/apt,125,2,17,2019-03-08,2.48,2,0 +30469315,Jax Shack,6394831,Jax,Manhattan,Washington Heights,40.85245,-73.93273,Private room,100,3,0,,,1,0 +30469464,THE RESIDENCES BY HILTON CLUB (Penthouse Suite),227836627,Marilynn,Manhattan,Midtown,40.76287,-73.98073,Private room,699,2,0,,,1,365 +30469490,"Quick walk to Metro, Cleaning, & Great roommates",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70029,-73.91188,Private room,35,30,0,,,9,45 +30469789,Big bright apartment in hip neighborhood,21552055,Shelley,Brooklyn,Greenpoint,40.72594,-73.94852,Entire home/apt,150,1,4,2019-02-17,0.59,2,0 +30470126,Spacious and Cozy Room - Just like Home,162166015,Freddy,Queens,Ridgewood,40.6963,-73.89965,Private room,50,1,3,2019-01-01,0.45,1,189 +30470365,Cozy Brooklyn Apartment,37860219,Rebecca,Brooklyn,Bushwick,40.70073,-73.94037,Entire home/apt,250,1,7,2019-06-29,1.06,2,5 +30470373,⭐$1.6 MILLION CHELSEA FLAT⭐LUXURY AND LOCATION!,227345813,Oliver,Manhattan,Chelsea,40.74294,-73.99795,Entire home/apt,261,2,18,2019-06-19,2.57,1,143 +30471690,Room in Astoria,74215453,Leo,Queens,Astoria,40.76626,-73.91422,Private room,100,5,0,,,1,41 +30473401,Cozy Bedroom in renovated Little Italy Walk-up,25043292,Vane,Manhattan,Nolita,40.7203,-73.99548,Private room,98,7,0,,,2,0 +30473558,Cozy comfortable room,228771058,Ariel,Manhattan,Harlem,40.82625,-73.94859,Private room,52,4,7,2019-06-19,1.83,1,54 +30474972,1 bedroom in newly renovated apartment,67054959,Paola,Manhattan,Harlem,40.82375,-73.94381,Private room,100,1,4,2019-06-19,0.99,1,56 +30475015,Room in Charming Brooklyn Apartment,37860219,Rebecca,Brooklyn,Bushwick,40.70086,-73.9403,Private room,50,2,4,2019-05-07,0.71,2,7 +30476053,Gorgeous 2 Bed Oasis near Vibrant Prospect Park!,1229653,Nana & Karim,Brooklyn,Flatbush,40.64823,-73.9625,Entire home/apt,90,3,2,2019-04-29,0.33,1,0 +30476363,"COZY APARTMENT, CLOSE TO MIDTOWN-MANHATTAN.",3229770,Luis,Queens,Sunnyside,40.73662,-73.92372,Entire home/apt,129,3,7,2019-07-01,1.11,4,280 +30476370,Sweet BR (B) in owner's duplex very near subway,35983559,Laura,Brooklyn,East Flatbush,40.63832,-73.94908,Private room,75,3,1,2019-07-01,1,3,170 +30476455,Large Studio in Forest Hills,1609077,Nadia,Queens,Forest Hills,40.71163,-73.84319,Entire home/apt,99,3,0,,,3,0 +30476519,Urban Room,160495098,Miller,Brooklyn,Flatbush,40.63296,-73.94894,Private room,72,2,0,,,5,0 +30476876,"Cozy studio is all you need, 20 mins to Manhattan",227647873,Samanta,Queens,Astoria,40.76184,-73.91443,Private room,109,2,50,2019-07-01,6.88,3,0 +30477343,Private Room in Bushwick - 15 Min to Manhattan,51610412,Shayan,Brooklyn,Bushwick,40.70424,-73.92682,Private room,45,4,2,2018-12-30,0.28,1,0 +30477370,Luxury bedroom with River View,21102511,Jae,Manhattan,Roosevelt Island,40.76708,-73.94607,Private room,100,2,2,2019-05-19,0.32,1,43 +30477526,Cozy Getaway in Harlem,2327106,Jenae,Manhattan,Harlem,40.80242,-73.95372,Entire home/apt,275,2,6,2019-05-18,0.95,1,252 +30478251,Singles bed for one,198328249,Hiram,Brooklyn,Bushwick,40.69088,-73.91556,Private room,43,20,0,,,2,365 +30478388,"Your home away from home, private cozy room",104814095,Hanine,Queens,East Elmhurst,40.75938,-73.88158,Private room,29,1,5,2019-07-01,0.86,3,35 +30483084,Spacious Two Bedroom in Crown Heights,129525574,Hezla,Brooklyn,Crown Heights,40.66571,-73.95191,Entire home/apt,125,2,13,2019-06-23,3.61,1,360 +30483778,Manhattan Christmas holiday room at discount!!,221285123,Serena,Manhattan,Hell's Kitchen,40.7589,-73.99165,Private room,69,10,0,,,1,0 +30483899,"Sunny, Spacious Apartment on Upper East Side",82189264,Laur,Manhattan,East Harlem,40.78695,-73.94218,Entire home/apt,215,60,0,,,1,365 +30484485,Furnished bedroom with queen bed desk and wifi,4297835,Shaun,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92749,Private room,75,2,0,,,1,0 +30485423,Cozy & Sunny Sunnyside Room w/ Great Location!,137358866,Kazuya,Queens,Sunnyside,40.73983,-73.92175,Private room,42,30,0,,,103,63 +30486661,Furnished Brooklyn Room. Full-size bed. Fast WiFi.,137358866,Kazuya,Brooklyn,Bushwick,40.69076,-73.91296,Private room,43,30,0,,,103,236 +30489218,"Gorgeous 1-bedroom apt in Williamsburg, Brooklyn",59026607,Anuj,Brooklyn,Williamsburg,40.70392,-73.94885,Entire home/apt,72,3,7,2019-05-16,1.26,1,0 +30489379,Calm bed. perfect for students and travelers.,111542307,Imoy,Brooklyn,Bedford-Stuyvesant,40.68622,-73.92639,Shared room,19,30,1,2019-01-09,0.17,2,339 +30494093,Sunny garden apartment in historic Brooklyn,115355850,Paget,Brooklyn,Boerum Hill,40.68417,-73.98498,Entire home/apt,125,2,23,2019-06-30,4.51,1,60 +30495063,Chic & Bright Brooklyn Bungalow,33988719,Fenice,Brooklyn,Bushwick,40.69056,-73.91596,Private room,90,3,0,,,1,176 +30495338,"Luxe, Quiet, Bright 1br in Prime Williamsburg",228872661,Louie,Brooklyn,Williamsburg,40.71191,-73.95568,Entire home/apt,243,1,23,2019-07-02,4.63,1,107 +30495481,Modern Comfort and a View,228864897,Jen,Queens,Long Island City,40.74769,-73.93938,Entire home/apt,180,1,0,,,1,0 +30495558,Peaceful and Clean Home in Fort Greene.,226471554,JeanRobert,Brooklyn,Clinton Hill,40.68535,-73.96736,Private room,65,3,4,2019-05-10,0.62,1,0 +30495739,Large 2 Bedroom Apartment with Full Amenities,104835154,Itay,Manhattan,Murray Hill,40.74436,-73.97321,Entire home/apt,175,30,0,,,2,274 +30495769,"Luxury building, best location in williamsburg!!",17486626,Alessandro,Brooklyn,Williamsburg,40.7177,-73.96346,Private room,70,9,1,2019-01-31,0.19,2,15 +30496077,Huge Renovated Studio in Manhattan,228878380,Aliona,Manhattan,Upper West Side,40.78549,-73.97535,Entire home/apt,200,5,1,2018-12-31,0.16,1,0 +30496231,Brooklyn Duplex,185725011,Jimmy,Brooklyn,Bedford-Stuyvesant,40.68139,-73.92157,Entire home/apt,65,3,1,2018-12-28,0.15,1,281 +30496236,Charming 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.73932,-73.97997,Entire home/apt,155,30,0,,,8,363 +30496490,@@@Prime Location 2 Bedrooms NYC@@@,195422078,Aby,Manhattan,Midtown,40.75054,-73.98386,Entire home/apt,365,30,0,,,1,145 +30496651,Sunny Bedroom in Magical Ditmas Park,10358835,Nathalie,Brooklyn,Flatbush,40.63895,-73.96619,Private room,49,7,0,,,1,362 +30497529,1 Bedroom in east village,1286331,Nadjah,Manhattan,East Village,40.72579,-73.98344,Entire home/apt,100,3,12,2019-07-02,1.90,1,80 +30498747,Luxurious bedroom in Tribeca - walk to World Trade,36642844,Jason,Manhattan,Tribeca,40.71802,-74.01038,Private room,97,1,4,2019-04-26,0.63,1,0 +30498804,Sun Drenched Room Ridgewood / Bushwick,228895684,Maria,Queens,Ridgewood,40.70711,-73.90713,Private room,35,5,0,,,1,321 +30499051,Chic and spacious split-level,3104928,Nissa,Manhattan,Upper East Side,40.78191,-73.95292,Entire home/apt,275,3,11,2019-06-16,1.78,1,36 +30499109,NYC Christmas spirt entire apartment in Brooklyn,1513294,Urszula,Brooklyn,Bushwick,40.69811,-73.91176,Entire home/apt,95,222,1,2019-01-08,0.16,2,85 +30499163,Luxury midtown east apartment,57302064,Olivia,Manhattan,Midtown,40.75198,-73.9707,Entire home/apt,595,2,3,2019-05-17,0.47,1,55 +30499662,Beautiful Bedroom with Private Bath in Brooklyn,228900197,Gina,Brooklyn,Williamsburg,40.70922,-73.94255,Private room,55,2,2,2019-01-07,0.32,1,0 +30501797,Cozy 1 bedroom east village apartment,5048861,Manuela,Manhattan,East Village,40.72333,-73.97934,Entire home/apt,101,2,3,2019-01-01,0.45,1,0 +30501806,Bright UWS apartment a block from Riverside Park,11710440,Meredith,Manhattan,Upper West Side,40.79283,-73.975,Entire home/apt,180,3,6,2019-05-04,1.28,1,0 +30501956,"3 beds w/ Kitchenette, own bath separate entrance",139195158,Gina,Queens,Woodside,40.75166,-73.90108,Private room,99,2,10,2019-05-09,1.59,1,5 +30502203,"Clean, Cozy Private Bedroom/Apartment",11332183,Tj,Manhattan,Harlem,40.81281,-73.94475,Private room,65,3,3,2019-05-27,0.45,1,0 +30502752,Location! 2bed/with 3 beds Doorman Gym Prime 5237,16098958,Jeremy & Laura,Manhattan,Midtown,40.76516,-73.9819,Entire home/apt,265,30,0,,,96,330 +30502875,Spacious and Cozy Studio,199716727,Amy,Queens,Astoria,40.77008,-73.92,Private room,120,2,0,,,1,66 +30502914,Family Suite Beautiful Brooklyn Home,208955733,Candace,Brooklyn,East Flatbush,40.65441,-73.91995,Private room,95,1,6,2019-07-01,0.87,4,350 +30503020,55&8! Doorman Large One bedroom View 5235,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76557,-73.98384,Entire home/apt,215,30,0,,,96,327 +30503210,Huge sunny 2bed apt in Harlem. Skyline views!,143031643,Aura Xenia,Manhattan,East Harlem,40.81275,-73.93461,Entire home/apt,300,2,1,2019-01-01,0.16,1,0 +30504465,Modern in heart of East Village,34222449,Eli,Manhattan,East Village,40.72531,-73.97973,Private room,105,2,0,,,1,8 +30504780,NEW Brooklyn studio get away!,228898361,Lauren,Brooklyn,Williamsburg,40.71723,-73.94965,Entire home/apt,200,2,7,2019-01-23,1.01,1,0 +30505350,A place to crash in historical Bed-Stuy,141359886,Yuli,Brooklyn,Bedford-Stuyvesant,40.68763,-73.95683,Entire home/apt,100,2,22,2019-06-24,3.32,1,286 +30505732,Renovated 2-Bedroom Apt in Williamsburg with Patio,228937001,Manuela,Brooklyn,Williamsburg,40.7161,-73.95427,Entire home/apt,165,1,24,2019-06-15,3.77,1,213 +30505964,Cozy renovated Brooklyn apt near LGA JFK NYC,73624239,Sarah,Brooklyn,East New York,40.67396,-73.87905,Entire home/apt,120,2,11,2019-07-01,1.68,1,62 +30506672,Peaceful Haven in NYC!,24419496,Melissa,Manhattan,Upper East Side,40.77604,-73.94524,Entire home/apt,125,3,1,2019-01-03,0.16,1,0 +30506799,Cozy Williamsburg Apt in the Coolest Neighborhood!,208537842,Daisy,Brooklyn,Williamsburg,40.71269,-73.9495,Entire home/apt,200,1,3,2019-01-01,0.41,1,0 +30507110,Small room in shared APT near CUMC.,228945290,Daehan,Manhattan,Washington Heights,40.84215,-73.94266,Private room,45,1,4,2019-06-23,0.57,1,90 +30507545,Nice & Big 2 Bedroom Apartment in The East Village,201447930,Daniella,Manhattan,East Village,40.72646,-73.98686,Entire home/apt,260,2,2,2019-06-27,0.32,2,28 +30508185,Cozy private bedroom,228709796,Sujeiry,Queens,Howard Beach,40.66894,-73.85369,Private room,40,1,3,2019-07-06,0.47,1,20 +30509099,"Brooklyn Home - backyard, office, easy to city!",474940,Katie,Brooklyn,Bushwick,40.70077,-73.91724,Entire home/apt,120,30,0,,,1,0 +30509230,Coziest space off the j,158314625,Tyrany,Brooklyn,Bedford-Stuyvesant,40.68992,-73.92594,Private room,70,1,1,2018-12-08,0.14,2,0 +30509658,Quiet Apartment in Times Square / Hell’s Kitchen,57195863,Andrew,Manhattan,Hell's Kitchen,40.75806,-73.98934,Entire home/apt,295,2,7,2019-06-23,1.12,1,129 +30509757,"Cozy area, Woodside! w/ 3windows& AC",200239515,Shogo,Queens,Woodside,40.7434,-73.89908,Private room,32,30,2,2019-03-29,0.32,15,38 +30510107,Brooklyn Designer Home!! Private Bedroom/Bathroom,5977578,Agate,Brooklyn,Crown Heights,40.67902,-73.96042,Private room,45,2,0,,,2,100 +30510275,"Charming, well-located with everything you need!",10184093,Lilian,Brooklyn,Fort Greene,40.69027,-73.97173,Entire home/apt,119,5,3,2019-05-22,0.47,1,0 +30510347,"Modern, Sunlit Brooklyn Apartment",34621599,Ashley,Brooklyn,Crown Heights,40.6782,-73.945,Private room,55,2,6,2019-06-04,0.86,1,89 +30510365,Cg hosting,228286488,Clara,Manhattan,Washington Heights,40.83644,-73.94231,Private room,40,3,1,2018-12-16,0.15,1,245 +30510553,Modern NYC Apartment with high ceilings/views.,58929651,Michael,Manhattan,Theater District,40.76002,-73.98708,Entire home/apt,800,5,0,,,1,0 +30511096,Private room,132784640,Karen,Brooklyn,Sunset Park,40.63866,-74.01746,Private room,40,2,20,2019-06-16,2.83,1,349 +30511114,Astoria Luxury RM w/ Priv Bath 3 mins from subway!,137358866,Kazuya,Queens,Astoria,40.76677,-73.92408,Private room,57,30,0,,,103,238 +30511301,Sunny 2 Bdr Apartment in Williamsburg (1000sqf),13888249,Omer,Brooklyn,Williamsburg,40.70662,-73.95289,Entire home/apt,180,3,3,2019-06-16,0.48,2,0 +30511773,"Sunny, Comfy, Artsy 1BR in Astoria",90034872,Jacqueline,Queens,Astoria,40.76721,-73.92633,Private room,75,2,4,2019-06-30,0.63,1,36 +30511873,Cozy studio middle of Manhattan/ close to Time sq.,2086035,Piyawan,Manhattan,Hell's Kitchen,40.75611,-73.99386,Entire home/apt,130,4,2,2019-04-04,0.52,2,0 +30512146,Artsy Upper East Side Apartment,21296382,Victor,Manhattan,Upper East Side,40.76703,-73.95957,Entire home/apt,200,3,3,2019-04-22,0.46,1,188 +30512304,Quiet and safe one bedroom in Upper Manhattan,228980689,Mark,Manhattan,Washington Heights,40.85502,-73.92763,Entire home/apt,150,5,9,2019-07-01,1.27,1,286 +30512507,Cozy Sunbathed Studio in Brooklyn,38249006,Irene,Brooklyn,Bedford-Stuyvesant,40.68462,-73.94056,Entire home/apt,70,4,14,2019-06-27,2.07,1,17 +30512582,Beautiful 6BR + Terrace in SOHO! Dream Location!,83462709,Khy,Manhattan,Tribeca,40.71459,-74.00933,Entire home/apt,359,1,36,2019-06-20,5.09,1,175 +30513180,Quiet & Cozy Studio in Upper East Side.,11377906,Simon,Manhattan,Upper East Side,40.76756,-73.96856,Entire home/apt,100,2,0,,,1,3 +30513862,Romantic New York City Get-Away,142642693,Bijan,Manhattan,Harlem,40.80861,-73.95451,Entire home/apt,95,2,24,2019-05-13,3.79,1,0 +30514000,"Cozy, quite, clean place to feel like home",160778490,Batka,Manhattan,Inwood,40.86565,-73.92486,Private room,40,2,3,2019-06-01,0.42,1,19 +30514043,Spacious & Renovated Room in a Brooklyn Townhouse!,137358866,Kazuya,Brooklyn,Bushwick,40.6907,-73.91157,Private room,40,30,0,,,103,269 +30514166,Queen Bedroom newly renovated Bushwick Apartment,51985960,Jonathan,Brooklyn,Williamsburg,40.70552,-73.92947,Private room,38,6,2,2019-06-24,0.32,2,95 +30514401,1 bedroom,222805048,Fidel,Manhattan,Washington Heights,40.85025,-73.94105,Private room,40,1,27,2019-06-17,4.01,1,49 +30514931,Pride Weekend East Village Apartment,228998411,Becky,Manhattan,East Village,40.72863,-73.97994,Entire home/apt,170,1,0,,,1,0 +30517097,"Habitación privada en Brooklyn, New York.",115193518,Fede,Brooklyn,Bushwick,40.70468,-73.92443,Private room,45,5,0,,,3,0 +30518222,Clean & Lovely Couples Room Near Mall & Manhattan,137358866,Kazuya,Queens,Elmhurst,40.73578,-73.88049,Private room,51,30,3,2019-06-01,0.54,103,246 +30521015,Comfy Cozy,228691487,Steven,Brooklyn,East Flatbush,40.63835,-73.94402,Entire home/apt,90,1,39,2019-06-23,5.44,1,141 +30522970,GREAT LOCATION! NYC ON A BUDGET!!,22051363,Melissa,Manhattan,Harlem,40.82089,-73.94791,Private room,50,1,0,,,1,0 +30523683,UPSCALE DWELLING,228961973,Michael,Bronx,Concourse Village,40.82674,-73.91935,Private room,85,3,1,2019-04-21,0.38,1,341 +30524542,The Gingerheadman's House!,18403410,Jonathan E,Brooklyn,Crown Heights,40.67817,-73.94691,Private room,150,1,3,2019-03-23,0.43,1,0 +30524703,Bright 1 Bedroom Apartment in Prime Manhattan area,25947734,Ian & Shayne,Manhattan,Upper East Side,40.77203,-73.95988,Entire home/apt,284,4,7,2019-06-10,1.11,1,328 +30525544,Tidy 1 bedroom near NYU,228212001,Nick,Manhattan,East Village,40.72664,-73.98661,Entire home/apt,185,2,7,2019-04-15,1.00,1,14 +30525680,Prospect Heights Garden Duplex,1157541,Damaris,Brooklyn,Prospect Heights,40.67625,-73.97038,Entire home/apt,166,30,1,2019-03-05,0.24,1,365 +30525727,15 minutes From Times Square!!,56778641,Ari,Manhattan,Washington Heights,40.85127,-73.92985,Private room,31,1,28,2019-07-02,4.57,1,111 +30526105,A cozy place,384595,Adam,Manhattan,Lower East Side,40.71422,-73.98808,Entire home/apt,150,3,8,2019-06-24,1.18,1,163 +30526261,Downtown 2 Bed 2 Bath In Nolita - Walk Everywhere!,227814642,David & Maddy,Manhattan,Chinatown,40.71787,-73.9964,Entire home/apt,398,1,10,2019-07-04,2.50,1,328 +30526468,"Elegant Ft. Greene One-Bedroom, 5 min from Subway",10674184,R.,Brooklyn,Fort Greene,40.685,-73.97275,Entire home/apt,185,4,8,2019-06-16,1.33,1,0 +30527061,Sunny 2-bedroom Brooklyn Apt with Rooftop Views,229072295,Fareez,Brooklyn,Carroll Gardens,40.68486,-73.99358,Entire home/apt,200,3,1,2018-12-30,0.16,1,0 +30527403,Luxury 2BD 1Bath Condo in Harlem.,12802075,Farhad,Manhattan,Harlem,40.81981,-73.94326,Entire home/apt,300,4,4,2019-06-01,0.63,1,0 +30527466,Cozy Quiet Studio Right off Time Square,181974787,Helen,Manhattan,Hell's Kitchen,40.76411,-73.99019,Entire home/apt,189,1,4,2019-07-07,0.61,1,74 +30527526,Pelham south,228773060,Reggae In,Bronx,Bronxdale,40.85398,-73.86451,Private room,25,2,1,2018-12-14,0.14,1,0 +30527535,Spacious & Cozy Master BR - Nearby Prospect Park,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66147,-73.9415,Private room,55,1,32,2019-06-30,4.66,7,7 +30527900,Amazing large 1BR Brand New quiet moderm Charm!!!!,52671461,Andrea,Manhattan,Kips Bay,40.73963,-73.98002,Entire home/apt,200,2,5,2019-04-20,0.72,2,338 +30528438,Spacious one bedroom apartment - Brooklyn,192861009,Ish,Brooklyn,Crown Heights,40.67128,-73.91604,Entire home/apt,52,1,13,2019-06-08,1.80,2,88 +30528541,New york Multi-unit building,95575605,Natasha,Manhattan,Chelsea,40.74726,-73.99029,Entire home/apt,250,7,0,,,1,0 +30528551,Luxury penthouse,225620845,Maria,Brooklyn,Sheepshead Bay,40.58527,-73.95741,Entire home/apt,400,3,2,2019-04-25,0.32,3,363 +30528692,Real New York Experience! Pvt 1 bedroom apt in UES,18294695,Dannie,Manhattan,Upper East Side,40.77469,-73.95067,Entire home/apt,102,30,2,2019-05-26,0.31,1,0 +30529492,My sweet Home,229087097,Jessica,Queens,Ditmars Steinway,40.76949,-73.89222,Private room,80,1,0,,,1,179 +30530151,Brand new luxurious apartment in SoHo!,1725141,Sl,Manhattan,NoHo,40.72696,-73.99501,Entire home/apt,390,15,1,2019-06-06,0.91,1,15 +30530758,"Centrally located Brooklyn 4br, Stunning Skyline",228411197,Bryson,Brooklyn,Bedford-Stuyvesant,40.69468,-73.93304,Entire home/apt,450,1,10,2019-06-23,1.84,1,352 +30531143,Cozy Home 家 5,213781715,Anting,Brooklyn,Greenpoint,40.73378,-73.95569,Private room,199,1,0,,,33,180 +30531163,"Private Room in Top Floor Apartment, heart of NYC",218526982,Liz,Manhattan,Lower East Side,40.72165,-73.98693,Private room,110,1,0,,,2,0 +30531246,"Luxury Apt, 1 BR, Stainless Steel Appliances",226201658,Vanessa,Brooklyn,Williamsburg,40.70755,-73.94892,Entire home/apt,90,30,2,2019-04-05,0.45,3,314 +30531270,One of a kind Brooklyn waterfront loft & rooftop,8187816,Mona & Miko,Brooklyn,Williamsburg,40.71025,-73.96921,Entire home/apt,550,7,0,,,1,20 +30531585,The Williamsburg Artist's Pad,6349101,Michael,Brooklyn,Williamsburg,40.71058,-73.93912,Entire home/apt,111,5,1,2018-12-08,0.14,1,0 +30531695,Boho tranquil room in bushwick/ridgewood,227682707,Michelle,Queens,Ridgewood,40.70383,-73.91171,Private room,60,2,2,2018-12-30,0.29,1,0 +30531953,SUPERIOR KING ROOM -PRIME WILLIAMSBURG,198861577,Novo,Brooklyn,Williamsburg,40.72132,-73.95463,Private room,295,1,2,2019-04-04,0.60,5,90 +30532068,Astorias spacious room in a historical mansion!!,229104353,Abram,Queens,Astoria,40.77606,-73.92804,Private room,91,2,0,,,2,341 +30533086,"Cozy, Sunny Studio in the heart of Central Harlem.",55970820,Tashina,Manhattan,Harlem,40.81785,-73.93989,Entire home/apt,54,30,0,,,1,0 +30533273,Your own little apartment in New York,140497439,Margarita,Manhattan,Washington Heights,40.83658,-73.94088,Entire home/apt,55,7,2,2019-04-20,0.33,1,0 +30533835,"Quiet, comfortable and clean bedroom on UWS",9930986,Julio,Manhattan,Upper West Side,40.80152,-73.96673,Private room,110,1,0,,,1,0 +30535180,Cozy poet’s room in Central Manhattan,14254368,Jiaoyang,Manhattan,Murray Hill,40.7503,-73.97747,Private room,75,4,0,,,1,87 +30535751,Townhouse for 12 close to the city & w free gym,105367031,Miriam,Brooklyn,Bushwick,40.68162,-73.90593,Entire home/apt,325,2,8,2019-06-24,2.38,5,342 +30535813,Cozy room in heart of NYC,98260543,Ley,Manhattan,Upper East Side,40.76981,-73.95365,Private room,135,1,11,2019-06-28,1.75,3,330 +30535905,Charming 1 Bedroom Apartment in Carroll Gardens,229124258,Jett,Brooklyn,Carroll Gardens,40.67775,-74.00131,Entire home/apt,79,10,0,,,1,19 +30536087,Time Square South Deluxe King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75622,-73.99683,Private room,179,1,12,2019-06-07,1.69,30,175 +30536585,"Bright, spacious en-suite room in co-living house",1418015,Reuben,Brooklyn,Crown Heights,40.67441,-73.95235,Private room,80,2,10,2019-07-01,1.57,4,2 +30537134,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.74449,-73.83476,Private room,80,1,10,2019-06-24,1.41,6,169 +30537221,Spacious beautifully designed modern 2-bedroom,3137237,Oleg,Manhattan,Morningside Heights,40.81068,-73.9582,Entire home/apt,175,1,1,2018-12-30,0.16,1,0 +30537849,NEW GARDEN APT IN THE HEART OF PARK SLOPE,21527486,Michele,Brooklyn,Park Slope,40.673,-73.97721,Entire home/apt,211,3,8,2019-06-11,1.20,1,90 +30537851,Upper West Side 3-bedroom,81009456,Carolina,Manhattan,Upper West Side,40.80368,-73.96662,Entire home/apt,133,1,2,2018-12-29,0.28,1,0 +30538323,Queens Garden,10748308,Raquel,Queens,Kew Gardens,40.7048,-73.83384,Entire home/apt,200,3,0,,,1,0 +30538753,Beauitful spacious Loft apartment,854567,Oketo,Brooklyn,Bedford-Stuyvesant,40.69202,-73.95456,Private room,1350,21,0,,,2,365 +30539100,Clean Airy 1-Bedroom Apartment in Gowanus,227915163,Stephen,Brooklyn,Gowanus,40.66871,-73.99038,Entire home/apt,70,6,1,2018-12-10,0.14,1,0 +30539227,NEWLY AVAILABLE - Just TWO BLOCKS away from LGA,229149810,Tussan,Queens,East Elmhurst,40.76887,-73.8741,Private room,75,1,33,2019-07-06,4.63,3,81 +30539229,Heart of Little Italy / Soho,49223549,Michael,Manhattan,Little Italy,40.72007,-73.99695,Entire home/apt,250,1,0,,,1,0 +30539307,Cozy 1Bedroom Loft Style living (The entire Floor),229149668,Paul,Brooklyn,Bedford-Stuyvesant,40.68294,-73.95451,Entire home/apt,150,3,26,2019-07-07,3.79,1,93 +30539902,Sunny 1BR in Williamsburg/Greenpoint,4169001,Lani,Brooklyn,Williamsburg,40.72006,-73.94593,Entire home/apt,175,5,0,,,1,0 +30540323,NYC East Village Doorman Unit with Private Rooftop,55403309,Justin,Manhattan,East Village,40.7249,-73.98174,Entire home/apt,240,3,1,2019-01-03,0.16,2,0 +30541377,Beautiful Private Room in Harlem/Hamilton Height,60939718,Tisya,Manhattan,Harlem,40.82576,-73.94454,Private room,43,5,1,2018-12-20,0.15,1,0 +30541439,Brooklyn room with Empire State building view,56665831,Perrine,Brooklyn,Bedford-Stuyvesant,40.68947,-73.95269,Private room,99,5,1,2019-01-02,0.16,1,0 +30541504,"Spacious, sunny room in hip neighbourhood!",21132706,Gjermund,Brooklyn,Bedford-Stuyvesant,40.69492,-73.94958,Private room,50,3,0,,,1,25 +30542320,Clean music/film themed bedroom,212466724,Estevan,Brooklyn,Bushwick,40.68667,-73.9154,Private room,37,5,0,,,1,0 +30546334,Renovated. Nice & clean 1/F RM in BK. Superhost!,137358866,Kazuya,Brooklyn,Bushwick,40.69177,-73.9135,Private room,41,30,2,2019-03-31,0.41,103,186 +30547975,GARDEN APARTMENT IN CLINTON HILL,31792728,Heather,Brooklyn,Clinton Hill,40.68414,-73.95976,Entire home/apt,125,2,30,2019-07-07,4.59,1,243 +30548591,FEMALE SHARED ROOM3 Single Beds Near Subway-3,172369331,Abby,Brooklyn,Coney Island,40.57863,-73.98455,Shared room,29,18,1,2019-02-15,0.21,10,221 +30551020,2BR in Williamsburg | One block from Hewes JMZ,2324779,Erik,Brooklyn,Williamsburg,40.70898,-73.95391,Entire home/apt,250,6,1,2018-12-31,0.16,1,0 +30551807,Bedford Ave Apartment,229229020,Alexandra,Brooklyn,Greenpoint,40.72109,-73.95403,Entire home/apt,115,7,3,2019-03-23,0.48,1,11 +30552071,Hilton Cub at West 57 st Penthouse King Size,85385725,Benjamin,Manhattan,Midtown,40.76399,-73.97718,Private room,550,2,0,,,2,145 +30552204,Bright Luxe Williamsburg Home - 4br 2ba,227987738,Todd,Brooklyn,Williamsburg,40.70807,-73.95604,Entire home/apt,392,1,18,2019-06-19,3.12,1,318 +30552566,"Spacious King Bedroom in Downtown, NY",24916650,Kat,Manhattan,East Village,40.72301,-73.98347,Private room,125,4,21,2019-07-06,3.56,1,52 +30552680,HUGE DESIGNER SOHO LOFT,4075403,Karim,Manhattan,SoHo,40.72046,-74.00151,Entire home/apt,950,4,1,2019-04-19,0.37,1,90 +30552921,"Dreamy Brooklyn 3br, sleeps many! ~*Must See*~",227990647,Jona,Brooklyn,Bedford-Stuyvesant,40.694,-73.93354,Entire home/apt,360,2,26,2019-06-21,3.94,1,21 +30553339,Spacious Brooklyn Apartment,229115651,Jeremy,Brooklyn,Bushwick,40.69632,-73.92908,Private room,50,5,0,,,1,0 +30554355,All You Need- Cozy East Village 1 BD Apt.,9994745,Kimberly,Manhattan,East Village,40.72367,-73.98244,Entire home/apt,175,2,2,2019-02-17,0.32,1,2 +30554660,STEPS TO COOL BARS AND COFFEE SHOPS! B/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68548,-73.95679,Private room,45,30,0,,,11,354 +30554810,Railroad 2 bdr apartment,70065270,Iryna,Manhattan,East Harlem,40.789,-73.94798,Entire home/apt,90,3,1,2019-01-01,0.16,1,0 +30554915,Clean & Spacious Private Bedroom 2 min. to Subway,24594462,Fatima,Manhattan,East Harlem,40.79617,-73.946,Private room,95,2,27,2019-06-25,3.91,2,33 +30555359,YOUR BROOKLYN HOME! COZY + COMFY + CONVENIENT!B/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68612,-73.95806,Private room,50,15,2,2019-05-25,0.85,11,189 +30555709,Spacious Sanctuary -Great Neighborhood/City Center,229255407,Jose,Manhattan,Midtown,40.74551,-73.98744,Entire home/apt,150,1,4,2019-01-20,0.57,1,5 +30555898,"Nice, Clean and quiet place in Williamsburg",12715154,Leo,Brooklyn,Williamsburg,40.71954,-73.9461,Private room,100,5,1,2019-01-01,0.16,2,0 +30556230,THE BEST LOCATION TO EXPERIENCE NYC! B/3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68736,-73.95777,Private room,59,15,5,2019-05-18,0.94,11,343 +30557081,SUPER LOCATION + OVERSIZED SUNLIT ROOM! R/4,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.6857,-73.95781,Private room,60,15,8,2019-07-04,1.12,11,330 +30557292,TRAVELERS + STUDENTS + NYC LOVERS WELCOME! L/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68549,-73.9573,Private room,48,15,2,2019-01-03,0.31,11,189 +30557569,Convenient East Village Apartment,9047774,Katrina,Manhattan,East Village,40.73009,-73.98884,Entire home/apt,150,4,0,,,1,0 +30557583,"Wonderful Chelsea Studio w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Chelsea,40.73888,-73.99782,Entire home/apt,287,30,0,,,232,218 +30557658,SERENE ESCAPE IN THE BUSY CITY! L/3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68737,-73.95798,Private room,48,15,5,2019-04-27,0.70,11,364 +30557789,Spacious private room with in room MOVIE THEATER,4599529,Luke,Brooklyn,Williamsburg,40.71673,-73.94948,Private room,65,2,1,2018-12-15,0.15,1,95 +30557920,Great studio with beautiful backyard,148508902,Olga,Brooklyn,Sheepshead Bay,40.5864,-73.9432,Entire home/apt,69,1,42,2019-06-30,6.09,1,57 +30558005,Penthouse apartment in the heart of Williamsburg,22591930,Matthew,Brooklyn,Williamsburg,40.71901,-73.96303,Private room,70,2,1,2019-01-01,0.16,1,0 +30558097,Warm Cozy Apt in Brooklyn,229269352,Neil,Brooklyn,Bedford-Stuyvesant,40.68879,-73.9534,Private room,120,2,2,2019-01-01,0.30,1,89 +30558219,Master bedroom w/priv bathroom in heart of BedStuy,1313385,Dania,Brooklyn,Bedford-Stuyvesant,40.68548,-73.93145,Private room,90,3,2,2019-06-17,2,1,1 +30558568,ALL YOU COULD WANT FOR YOUR STAY IN BK! L/4,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68606,-73.95752,Private room,40,15,3,2019-05-03,0.47,11,354 +30558682,Cutepraise home in queens,229272976,Olly,Queens,St. Albans,40.69064,-73.76009,Private room,60,2,15,2019-06-17,2.27,1,356 +30559387,Brooklyn 1 room,229278227,明凤,Brooklyn,Bensonhurst,40.62071,-73.99912,Private room,45,1,13,2019-06-30,2.07,1,324 +30559544,Cozy Home,195024580,Mikael,Brooklyn,Williamsburg,40.72066,-73.95726,Entire home/apt,150,7,2,2019-03-11,0.32,1,8 +30559819,Urban Oasis II,2522815,Tricia,Brooklyn,Sunset Park,40.66356,-73.99368,Entire home/apt,150,2,0,,,2,29 +30561213,EXPERIENCE COLORFUL NYC IN THE BEST LOCATION! R/1,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68723,-73.95742,Private room,48,15,4,2019-05-21,0.56,11,341 +30561353,Williamsburg waterfront 1 BR in luxury building,169898690,Antonia,Brooklyn,Williamsburg,40.72161,-73.96327,Entire home/apt,125,90,0,,,1,129 +30561846,Brand new studio,35256210,Bruno,Queens,Long Island City,40.75038,-73.94069,Entire home/apt,200,4,0,,,1,0 +30561958,Vibey Artist Studio - Heart of Lower East Side,35435470,Martha Nicole,Manhattan,Lower East Side,40.72149,-73.98918,Entire home/apt,99,1,3,2019-01-27,0.49,1,0 +30562291,Best Location in Luxury Building near Times Square,21496186,Richard,Manhattan,Midtown,40.75051,-73.98625,Private room,94,1,27,2019-07-01,4.58,2,76 +30562328,Large Room 11minutes to Manhattan NYC at Safe area,229293180,Jessica,Queens,Woodside,40.7419,-73.90236,Private room,55,3,20,2019-07-03,3.39,1,44 +30562360,Spacious Apartment in the heart of Manhattan,12076120,Victoria,Manhattan,West Village,40.74005,-74.00525,Entire home/apt,205,2,0,,,1,157 +30562364,"Stunning 2,000 sq ft 2BR in Williamsburg",5524422,Anne,Brooklyn,Williamsburg,40.71362,-73.95714,Entire home/apt,520,3,1,2019-01-01,0.16,1,24 +30562589,Gut renovated one bedroom in Brooklyn!,51596064,Toma,Brooklyn,East Flatbush,40.64487,-73.94711,Entire home/apt,70,1,23,2019-01-28,3.27,1,0 +30563655,BEST LOCATION -TIME SQUARE-Javits- Spacious 2BEDS.,229288524,Yan,Manhattan,Hell's Kitchen,40.75569,-73.99111,Entire home/apt,128,5,0,,,2,142 +30563760,Private One Bedroom Chelsea Apartment New York-#1,9328763,Synergy Global,Manhattan,Chelsea,40.74511,-73.99468,Private room,138,25,0,,,2,0 +30565063,Private Bedroom on Newly Renovated Apartment,61560050,Bárbara,Brooklyn,Bushwick,40.70279,-73.91347,Private room,55,2,2,2019-01-01,0.32,1,0 +30565107,Quiet but close to Main Street.Flushing Chinatown,229309933,Jeniffer,Queens,Flushing,40.76389,-73.82349,Shared room,49,1,3,2019-06-23,0.94,2,90 +30565284,Great for family/friends! 2 bdrm duplex sleeps 6!,181651082,Fran,Queens,Rosedale,40.65861,-73.73672,Entire home/apt,135,1,5,2019-06-09,0.76,3,36 +30566489,"2-Bedroom Bright Duplex, Heart of Williamsburg",3933608,Harsha,Brooklyn,Williamsburg,40.71713,-73.9622,Entire home/apt,280,3,0,,,1,0 +30566910,Spacious East Village Zen Den,33531612,Kim,Manhattan,East Village,40.72365,-73.98643,Entire home/apt,110,2,1,2019-05-27,0.70,1,280 +30567047,WELCOME TRAVELERS AND NYC LOVERS! R/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.6871,-73.95735,Private room,40,15,4,2019-05-25,0.56,11,325 +30567064,Manhattan Midtown West 3B Apartment,107053688,Qiuyang,Manhattan,Upper West Side,40.77394,-73.98955,Entire home/apt,500,5,5,2018-12-14,0.71,1,0 +30567265,A gem in Bushwick,61107296,Jessica,Queens,Ridgewood,40.70732,-73.91491,Private room,65,1,3,2019-01-02,0.47,1,0 +30567518,Private Bedroom,11127879,Roger,Brooklyn,Crown Heights,40.67315,-73.9288,Private room,79,3,0,,,2,359 +30567765,"Bedstuy is the best, where I rest my chest",9334241,George,Brooklyn,Bedford-Stuyvesant,40.68079,-73.94719,Entire home/apt,150,2,2,2019-05-19,0.64,1,177 +30567827,2 blocks to Main Street Flushing Chinatown NY,229309933,Jeniffer,Queens,Flushing,40.76226,-73.82459,Private room,60,1,6,2019-05-19,0.87,2,365 +30568383,Prime Williamsburg,171382321,Nicole,Brooklyn,Williamsburg,40.71381,-73.96016,Entire home/apt,400,7,1,2018-12-10,0.14,1,219 +30568497,Comfy Haven,229325672,Linda,Manhattan,Upper West Side,40.77648,-73.97895,Entire home/apt,195,3,11,2019-06-19,1.71,1,13 +30570178,CHEERFUL RM IN BROOKLYN! EASY ACCESS TO TRAIN! R3,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68709,-73.95801,Private room,45,15,3,2019-05-12,0.47,11,199 +30570251,Cozy Room in Brokklyn,13400096,Ron,Brooklyn,Crown Heights,40.67646,-73.94333,Private room,40,25,0,,,3,0 +30570449,PEACEFUL ESCAPE FROM THE BUSY CITY! L/2,229147376,Melly,Brooklyn,Bedford-Stuyvesant,40.68598,-73.95735,Private room,45,15,3,2019-01-16,0.42,11,331 +30570943,SUMMER 50% OFF SALE - 4 Min Walk to Times Square,227340438,Andrew,Manhattan,Hell's Kitchen,40.75833,-73.9919,Entire home/apt,240,2,14,2019-06-11,1.98,1,156 +30574688,Modern&pretty 3-B apt near everything you want!!!,33064599,Yukee,Manhattan,Upper West Side,40.80002,-73.9671,Entire home/apt,199,1,4,2019-04-23,0.68,6,320 +30574764,"Lovely, Convenient & Renovated Bushwick BK Room.",137358866,Kazuya,Brooklyn,Bushwick,40.69262,-73.91198,Private room,35,30,4,2019-05-12,0.66,103,269 +30577164,Comfort zone,156505456,John,Brooklyn,East New York,40.66682,-73.87351,Private room,57,3,1,2019-05-03,0.44,13,90 +30577273,A safe room to stay in Manhattan. Clean & sunny.,137358866,Kazuya,Manhattan,Harlem,40.81254,-73.94199,Private room,31,30,1,2019-06-08,1,103,0 +30578526,Summertime in Brooklyn’s Bedford–Stuyvesant,229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68422,-73.92314,Private room,65,2,16,2019-07-06,2.50,3,222 +30578954,Beautiful Master Bedroom & Private Bath,15929157,Christina,Brooklyn,East New York,40.67199,-73.88253,Private room,36,15,1,2019-02-28,0.23,3,213 +30580115,Spacious artsy private bedroom,9572607,Nicole,Manhattan,Lower East Side,40.72176,-73.98825,Private room,150,1,8,2019-06-09,2.07,3,0 +30580668,Clinton Hill Studio,2948760,Ian,Brooklyn,Clinton Hill,40.68554,-73.96651,Entire home/apt,120,3,3,2019-04-27,0.47,1,0 +30580793,Beautifully Renovated Mid Century Modern Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72189,-73.99133,Private room,150,1,16,2019-07-06,2.25,2,20 +30581572,Sun-lit Room in the Heart of SoHo,62398329,Begüm,Manhattan,SoHo,40.72183,-73.99903,Private room,90,1,0,,,1,0 +30582797,Modern Chic Studio,38256284,Daniyal,Manhattan,Chelsea,40.74322,-73.99547,Entire home/apt,250,1,1,2018-12-30,0.16,1,0 +30582854,Cozy Private Room w/ Full Bed - Perfect for Travel,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66015,-73.94251,Private room,55,1,24,2019-06-27,3.38,7,45 +30584054,Sunny private room in the heart of Brooklyn.,104813064,Kate,Brooklyn,Kensington,40.64637,-73.97593,Private room,56,1,6,2019-02-22,0.88,1,0 +30584138,Garden apt for 7 close to the city & w free gym,105367031,Miriam,Brooklyn,Bushwick,40.68346,-73.90568,Entire home/apt,250,2,0,,,5,342 +30584271,"SuperBig Beautiful room,clean manhattan 30min.",229421782,Sunny,Brooklyn,East Flatbush,40.64743,-73.94356,Private room,43,3,3,2019-03-21,0.43,2,58 +30584721,Gorgeous GOOD VIBES One Bedroom in Greenpoint,5221013,Mario,Brooklyn,Greenpoint,40.7205,-73.94717,Entire home/apt,80,3,2,2019-05-25,0.47,1,3 +30584948,All Girls Studio Apt.,145041366,Anchal,Manhattan,Kips Bay,40.74374,-73.97998,Entire home/apt,200,7,0,,,1,90 +30585278,"Bright, warm & wonderful bedroom in Greenpoint",5214227,Tasha,Brooklyn,Greenpoint,40.72386,-73.9506,Private room,90,2,1,2019-05-19,0.59,1,63 +30585355,Hollywood Inn,229431423,Yolanda,Brooklyn,Crown Heights,40.6737,-73.91608,Private room,100,1,1,2019-01-06,0.16,1,89 +30586349,Open view on Manhattan,105622510,Manny,Manhattan,East Harlem,40.79179,-73.93524,Private room,52,2,10,2019-06-15,1.60,1,5 +30586563,"Charming, Quiet Prewar Apt in Midtown, Manhattan",107374902,Liam,Manhattan,Midtown,40.75426,-73.96524,Entire home/apt,182,3,5,2019-06-30,0.80,1,41 +30587250,Best Stuy!,114003480,Noah,Brooklyn,Bedford-Stuyvesant,40.69353,-73.94375,Private room,50,2,0,,,1,220 +30587285,Spice island nook,224042160,Pettrina,Brooklyn,East Flatbush,40.65051,-73.94969,Private room,35,1,3,2019-01-01,0.44,3,69 +30587338,Spacious 2 bedroom near Central Park,44886301,Dayane,Manhattan,Upper East Side,40.76991,-73.95327,Private room,175,3,0,,,2,0 +30587461,Cozy Quaint Modern Garden Apartment,229443636,Burhan,Brooklyn,Bedford-Stuyvesant,40.6874,-73.95279,Entire home/apt,349,2,15,2019-06-02,2.11,1,349 +30587740,Mogul Hideout 2: Modern Lifestyle 4 min from JFK,221204634,Faith,Queens,Laurelton,40.67156,-73.74383,Entire home/apt,125,2,26,2019-06-30,3.79,1,21 +30588600,PRIVATE bedroom and bathroom in Upper Manhattan,34464182,Dahilil,Manhattan,Harlem,40.82769,-73.94758,Private room,100,5,4,2019-05-26,1.04,1,89 +30588659,"Chic, Contemporary 2br Brooklyn Condo",227993479,Carrie & Mick,Brooklyn,Bushwick,40.70165,-73.92056,Entire home/apt,231,1,23,2019-06-20,3.71,1,335 +30588681,Private Cozy Room at East Village (Manhattan),75509095,Gia,Manhattan,East Village,40.7286,-73.97952,Private room,69,1,35,2019-06-16,4.93,2,98 +30588700,Great unit in prime Williamsburg,92612757,Avihay,Brooklyn,Williamsburg,40.71716,-73.95183,Entire home/apt,200,2,1,2019-01-02,0.16,1,219 +30589552,Clean & Spacious Apt. 2 min. to Subway,24594462,Fatima,Manhattan,East Harlem,40.79519,-73.94543,Entire home/apt,135,2,2,2019-06-08,1.67,2,2 +30589636,Furnished 1000sq large 2bed + office in Harlem,229458601,Kay,Manhattan,Harlem,40.81315,-73.9511,Entire home/apt,3200,90,0,,,1,365 +30589865,VANLIFE in NYC! Perfect for minimal travelers!,20902952,Michael,Brooklyn,Red Hook,40.67204,-74.00792,Entire home/apt,120,2,1,2019-05-05,0.45,1,157 +30590147,"Williamsburg private, comfy, bright room",18494627,Olivia,Brooklyn,Williamsburg,40.70929,-73.94719,Private room,40,58,1,2019-01-02,0.16,1,15 +30590265,Charming Private Apartment near Brooklyn Museum1BR,229181517,Rose,Brooklyn,Crown Heights,40.67179,-73.95363,Entire home/apt,125,3,18,2019-07-01,2.61,1,96 +30590337,"Awesome Studio-Apt near Times Square, super quiet",60081723,Antoine,Manhattan,Hell's Kitchen,40.76239,-73.99119,Entire home/apt,199,3,21,2019-06-30,3.00,2,228 +30590361,"Bright, Spacious, & Cheerful! 5min walk to Metro L",154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91201,Private room,37,30,1,2019-05-31,0.75,9,45 +30590895,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.7439,-73.83261,Private room,80,1,14,2019-07-05,1.97,6,138 +30590921,Feels Like Home Near JFK and LGA,16608415,Smidty,Brooklyn,East New York,40.66745,-73.89217,Private room,25,1,25,2019-06-26,3.61,3,211 +30591122,Cosy private bedroom in Williamsburg!,229469300,Alisa,Brooklyn,Williamsburg,40.70855,-73.95072,Private room,55,2,2,2019-05-10,0.75,2,4 +30591250,"★Bright,Spacious 1BR near Empire State/5th Ave",24131677,Eve,Manhattan,Midtown,40.74315,-73.98222,Entire home/apt,250,20,14,2019-07-04,2.04,2,315 +30591382,Comfy Room w/ Bunk Bed - Great for Friends!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66019,-73.9413,Private room,55,1,25,2019-06-29,3.52,7,42 +30591478,Spacious-Sleeps 2-Next to trains-Flex Chk In Times,228263278,475,Manhattan,Harlem,40.82428,-73.94854,Private room,160,2,0,,,4,180 +30592244,The NYC Quick Stay- Flexible Check-In,228263278,475,Manhattan,Harlem,40.82565,-73.94815,Private room,95,2,5,2019-06-05,0.79,4,178 +30592546,Spacious Bronx apartment near Bronx Zoo,229480146,Marcelina,Bronx,Tremont,40.84289,-73.88773,Entire home/apt,40,2,17,2019-06-28,2.70,1,107 +30592647,Private Bedroom w/ Bunk Bed - Great for Friends!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66065,-73.94116,Private room,55,1,20,2019-06-17,2.82,7,53 +30593615,Spacious and Sun-Soaked Luxury 1BR,22374232,Chuck,Brooklyn,Williamsburg,40.71051,-73.96564,Entire home/apt,145,2,0,,,1,4 +30593639,Amazing Luxury Loft in Williamsburg,1443812,Luciana,Brooklyn,Williamsburg,40.71101,-73.96439,Entire home/apt,190,4,2,2019-01-20,0.32,2,128 +30593915,Flushing downtown luxury suite,228879817,Vicky,Queens,Flushing,40.74548,-73.8341,Private room,80,1,10,2019-07-07,1.59,6,163 +30594102,Comfy Private Room w/ Full Bed - Near Prospect Prk,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66055,-73.94242,Private room,55,1,19,2019-06-04,2.70,7,53 +30594172,Flushing downtown large single room,228879817,Vicky,Queens,Flushing,40.74444,-73.83281,Private room,80,1,15,2019-06-24,2.28,6,137 +30594607,Cozy Apartment in Hell’s Kitchen,75998293,Nicolas,Manhattan,Hell's Kitchen,40.76475,-73.98662,Private room,160,8,1,2019-05-07,0.48,1,64 +30594645,Newly renovated with elevator room 3,125961131,David,Manhattan,Two Bridges,40.71217,-73.99483,Private room,75,1,41,2019-06-18,5.97,3,2 +30595234,Single Bedroom-Upper East Side-Central Park,180212824,Samet,Manhattan,Upper East Side,40.76718,-73.95715,Private room,80,1,3,2018-12-21,0.42,5,0 +30595611,Home away from Home! 2 Bedroom Apartment.,229503748,Jamal,Manhattan,Hell's Kitchen,40.76323,-73.98893,Entire home/apt,250,2,26,2019-06-29,3.80,1,60 +30596759,Cozy LES Room,229509602,Javier,Manhattan,Lower East Side,40.71997,-73.98491,Private room,85,2,23,2019-07-07,3.35,1,344 +30596912,Warm & sweet private bedroom,104167105,Max,Manhattan,Upper West Side,40.78484,-73.97862,Private room,120,2,8,2019-02-18,1.15,1,0 +30597566,"Central Park S. Doorman, elevator, laundry, bedroo",5300413,James,Manhattan,Midtown,40.76698,-73.97988,Private room,60,30,0,,,1,125 +30622293,Pvt. Room w/full bed safe & close to everything,222760631,Denise,Bronx,Throgs Neck,40.82507,-73.8204,Private room,45,3,0,,,1,36 +30628768,Affordable room near airport - LGA - and subway!,137358866,Kazuya,Queens,Elmhurst,40.73501,-73.87989,Private room,36,30,1,2019-03-01,0.23,103,234 +30634438,Charming entire house,225454310,Tosin,Queens,Far Rockaway,40.5998,-73.75586,Entire home/apt,145,1,3,2019-06-23,0.45,4,311 +30636732,New york Brownstone,9501531,Andre,Manhattan,Harlem,40.82314,-73.94505,Private room,55,1,14,2019-07-04,1.98,3,359 +30637957,Doorman Elevator Prime Location UN! 5242,16098958,Jeremy & Laura,Manhattan,Midtown,40.75554,-73.96533,Entire home/apt,220,30,0,,,96,332 +30638114,"Loft-like + Roomy Dumbo Studio w/ Office, Doorman by Blueground",107434423,Blueground,Brooklyn,DUMBO,40.70372,-73.98545,Entire home/apt,312,30,0,,,232,349 +30638353,Beautiful Studio on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.73945,-73.97934,Entire home/apt,118,30,0,,,8,326 +30639972,Prime Doorman Elevator! Huge One bedroom UN 5239,16098958,Jeremy & Laura,Manhattan,Midtown,40.75501,-73.96594,Entire home/apt,220,30,0,,,96,342 +30640875,Traditional yet Modern home away from home,229554591,Kelsang,Queens,Sunnyside,40.73571,-73.91837,Private room,49,1,1,2019-01-19,0.18,2,0 +30641771,Prime Doorman Elevator Huge One Bedroom 5238,16098958,Jeremy & Laura,Manhattan,Midtown,40.75609,-73.96684,Entire home/apt,220,30,0,,,96,336 +30642253,1 Bedroom+1 bath in Artsy modern Williamsburg NY,44152990,Olivia,Brooklyn,Williamsburg,40.71894,-73.96187,Private room,90,3,4,2019-04-25,0.60,1,11 +30643610,Small clean cosy minimalist FEMALE ONLY -Bushwick,94113622,Darlene,Brooklyn,Bushwick,40.70138,-73.92365,Private room,50,7,1,2019-05-26,0.68,2,48 +30644741,Huge master bedroom in prime Financial District,57094235,Kellie,Manhattan,Financial District,40.7086,-74.01376,Private room,100,8,1,2019-01-03,0.16,1,0 +30648855,Midtown East 52&2 ! Big One Bedroom King bed! 5247,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.75916,-73.96023,Entire home/apt,293,30,0,,,96,292 +30649588,Elevator Doorman Big One Bedroom King bed! 5227,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.76021,-73.96075,Entire home/apt,293,30,0,,,96,280 +30651057,Amazing two bedroom with the terrace/73A.,48146336,Irina,Manhattan,Hell's Kitchen,40.76157,-73.99358,Entire home/apt,190,30,1,2019-02-11,0.20,20,331 +30651242,"Modern, Luxury Style, private balcony/City view!",193709,Glenna,Brooklyn,Greenpoint,40.73506,-73.954,Entire home/apt,150,11,2,2019-05-12,0.32,1,15 +30655067,Skyline Views in Williamsburg 4Br,85315237,Matthew,Brooklyn,Williamsburg,40.70971,-73.94804,Private room,50,4,1,2018-12-27,0.15,1,0 +30656450,West Village Dream Townhouse,912324,Rae,Manhattan,West Village,40.73704,-74.00501,Entire home/apt,500,3,5,2019-06-21,0.80,1,18 +30658563,Spacious and cozy room with washer and dryer,34957489,Sarahi,Manhattan,Harlem,40.83175,-73.94692,Private room,45,4,0,,,1,7 +30659261,Quiet and Spacious South Williamsburg One Bedroom,2199778,Emily,Brooklyn,Williamsburg,40.70839,-73.9547,Entire home/apt,150,3,6,2019-07-03,0.95,1,4 +30661098,Bed-Stuy Gem with Cozy entire floor of Brownstone,45534171,Mariana,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92214,Entire home/apt,200,7,2,2019-04-23,0.32,1,31 +30661174,Private Room in Heart of Brooklyn!,189876110,Joy,Brooklyn,Crown Heights,40.67616,-73.9404,Private room,59,1,2,2018-12-25,0.29,1,0 +30662063,‘Age of Innocence’ | Studio Apartment,225122879,Margaret/Matthew,Brooklyn,Park Slope,40.67193,-73.97334,Entire home/apt,100,3,26,2019-06-24,3.79,1,219 +30662701,Cosy private room in luxury condo,229578317,Rose,Manhattan,Hell's Kitchen,40.76348,-73.99391,Private room,125,1,5,2019-07-03,0.73,1,38 +30663246,"Greenpoint Summer Stunner, perfect for families",229577914,James,Brooklyn,Greenpoint,40.72681,-73.95359,Entire home/apt,150,5,1,2018-12-31,0.16,1,48 +30663416,Cozy Bedroom w/ Bunk Bed - Private Side Yard!!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.6609,-73.9412,Private room,55,1,12,2019-06-18,1.76,7,58 +30663568,"Chic, Quiet, Convenient East Village One-Bedroom",193420283,Daniel,Manhattan,East Village,40.73079,-73.98117,Entire home/apt,240,2,7,2019-06-18,1.01,1,0 +30666207,"Beautiful, unique apartment in Brooklyn Heights",5494184,Annette,Brooklyn,Brooklyn Heights,40.69423,-73.99728,Entire home/apt,140,7,1,2019-01-05,0.16,1,5 +30667058,Art Deco Soho Loft,22916874,Brian,Manhattan,Nolita,40.72182,-73.99567,Entire home/apt,250,2,28,2019-06-22,3.98,1,0 +30667695,Music Recording Mixing Film Photography Art,213781715,Anting,Brooklyn,Greenpoint,40.73289,-73.955,Entire home/apt,199,1,1,2019-06-01,0.79,33,365 +30670056,Sunny Williamsburg Loft ☀️,14559352,Jamis,Brooklyn,Williamsburg,40.71064,-73.9614,Entire home/apt,150,3,4,2019-03-23,0.63,2,0 +30672441,Brooklyn Pvt Bedroom with an amazing rooftop!,229588502,Nat,Brooklyn,Williamsburg,40.71251,-73.96062,Private room,80,3,0,,,1,0 +30672646,5min walk to L train - Great Roommates! Fast WiFi!,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70127,-73.91235,Private room,35,30,0,,,9,43 +30674080,Beautiful 2-bedroom Apt near Times Square,64825610,Michel And Antoine,Manhattan,Hell's Kitchen,40.76011,-73.99087,Entire home/apt,299,3,23,2019-07-01,3.50,2,207 +30674177,Cozy Brooklyn Studio Apartment!,51908924,Lily,Brooklyn,Crown Heights,40.67471,-73.9616,Entire home/apt,85,3,2,2019-04-15,0.32,1,19 +30674463,Prime Location Affordable 2 Bedrooms,229284767,Ned,Manhattan,Midtown,40.75234,-73.98591,Entire home/apt,152,30,2,2019-04-08,0.38,1,0 +30675435,NY TIME SQUARE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75641,-73.9971,Private room,209,1,25,2019-05-28,3.49,8,84 +30675713,"Modern Studio in Heart of Crown Heights, Brooklyn",72944476,Micah,Brooklyn,Crown Heights,40.67013,-73.95375,Entire home/apt,100,1,15,2019-02-17,2.17,1,0 +30676471,Sofa-Bed in a modern and cozy apartment in Harlem,229450070,Gianluca,Manhattan,Harlem,40.82398,-73.93815,Shared room,45,2,15,2019-06-05,2.28,1,96 +30676672,New York City cozy creative,19759400,Samantha,Manhattan,Upper East Side,40.76117,-73.96019,Private room,96,2,28,2019-06-30,6.83,1,31 +30676992,ENTIRE bushwick studio,141735689,Jocelyn,Brooklyn,Bushwick,40.69227,-73.91724,Entire home/apt,100,3,3,2019-05-27,0.42,1,0 +30677069,NEWLY AVAILABLE Private Room only 2 BLOCKS off-LGA,229149810,Tussan,Queens,East Elmhurst,40.77082,-73.87469,Private room,51,1,65,2019-07-03,9.15,3,83 +30677218,Luxury Chelsea 1 bed full service with balconies,24865062,Danielle,Manhattan,Chelsea,40.7416,-73.99782,Entire home/apt,300,4,2,2019-01-02,0.30,1,17 +30677287,Comfortable one bedroom in heart of Midtown,12920745,Matthew,Manhattan,Hell's Kitchen,40.75608,-73.99606,Entire home/apt,120,10,2,2019-05-20,0.91,1,0 +30677434,Private ROOM in a GROUND FLOOR apt w/Parking,21376704,Claudia And Luis,Queens,Flushing,40.72859,-73.80899,Private room,85,2,18,2019-07-07,2.62,1,60 +30681498,Private Entire Studio 10min to LGA! 全独立套房十分钟法拉盛中心,157337532,Henry,Queens,College Point,40.77857,-73.84408,Entire home/apt,65,1,50,2019-07-03,7.69,2,78 +30685679,Home in NYC 1 BR Apartment Midtown Retreat,2239610,Tanya,Manhattan,Hell's Kitchen,40.756,-73.99804,Entire home/apt,165,5,10,2019-07-06,1.47,1,31 +30685991,Sunny Spacious New Brooklyn Condo,2019933,Nathan,Brooklyn,Greenpoint,40.73578,-73.95369,Entire home/apt,200,4,3,2019-03-25,0.43,1,321 +30686870,Large bedroom,221940893,Sara,Brooklyn,Kensington,40.63628,-73.9697,Private room,60,2,12,2019-07-07,3.67,3,220 +30686886,"The Manhattan Club New York Oct 6-13, 2019",210301854,Thomas,Manhattan,Midtown,40.76435,-73.98197,Entire home/apt,345,7,0,,,1,227 +30686973,Tranquil oasis in the fast pace of NYC,229695499,Linda,Manhattan,Lower East Side,40.7189,-73.98263,Private room,175,1,11,2019-07-03,2.84,1,250 +30687126,Cheap good double bed in living room-30min to Man,15872352,Sifan,Queens,Rego Park,40.72942,-73.86551,Shared room,34,1,12,2019-06-30,1.86,2,51 +30687132,"Sunny, Cozy Apartment in Chinatown/LES",12101562,Suea,Manhattan,Two Bridges,40.71114,-73.99977,Entire home/apt,175,2,0,,,1,0 +30688108,NEW - Manhattan - Private room near Central Park,224311652,Adrien,Manhattan,East Harlem,40.79852,-73.93769,Private room,79,1,31,2019-06-22,4.63,1,0 +30688314,"Centrally located, modern, pleasant 1BR apartment",162167111,Orlando,Queens,Elmhurst,40.74055,-73.88076,Entire home/apt,95,3,20,2019-06-22,4.11,1,101 +30688621,A Little Sanctuary,16358757,Nelmir,Brooklyn,Crown Heights,40.67685,-73.94405,Entire home/apt,80,5,5,2019-06-24,0.81,1,8 +30688867,"Artistic, Cozy Space in Convenient Williamsburg",879277,Marnie,Brooklyn,Williamsburg,40.70874,-73.95873,Shared room,70,2,4,2019-06-02,0.59,1,135 +30689529,Privately located 2 BR Apt! Soho!,192951036,Jasmine,Manhattan,SoHo,40.72608,-74.00022,Entire home/apt,240,1,9,2019-06-09,1.73,10,338 +30689655,Light Drenched Brooklyn Haven,13108315,Max,Brooklyn,Park Slope,40.67409,-73.97546,Entire home/apt,100,8,3,2019-04-30,0.48,1,7 +30690149,Upscale Artsy Apartment in Brooklyn - Free Parking,22205488,Allie,Brooklyn,Crown Heights,40.6751,-73.91035,Entire home/apt,100,2,7,2019-03-11,1.03,1,0 +30690804,Cosy APt,43053304,Ali,Manhattan,Upper East Side,40.77778,-73.94893,Entire home/apt,120,5,1,2019-02-24,0.22,1,0 +30691484,Luxury in Brooklyn,219449657,Franklyn,Brooklyn,Bushwick,40.68225,-73.90721,Entire home/apt,200,1,28,2019-07-02,4.22,1,30 +30691717,Soho Loft Experience,229732503,Natalie,Manhattan,SoHo,40.72446,-73.99966,Private room,165,7,0,,,1,88 +30691909,Spacious 1 BR Home in Hell's Kitchen,1319214,Nick,Manhattan,Hell's Kitchen,40.76333,-73.98917,Entire home/apt,172,4,3,2019-02-21,0.42,1,0 +30691956,Modern Room in LuxuryApt overlooking LIC&Manhattan,100554481,Drew,Queens,Long Island City,40.749,-73.94161,Private room,68,30,6,2019-05-24,1.04,1,0 +30692023,Sunny bedroom in a spacious loft/apt in Bushwick!,294581,Azu,Brooklyn,Williamsburg,40.70202,-73.94352,Private room,75,3,4,2019-07-04,4,1,101 +30692246,Private room 1 block from M train in Ridgewood,84011138,Aimar,Queens,Ridgewood,40.70792,-73.89546,Private room,55,3,7,2019-07-07,1.08,1,188 +30692398,Large bright room in the heart of Bushwick,51431600,Aurélie,Brooklyn,Bushwick,40.70134,-73.92111,Private room,50,5,1,2019-01-03,0.16,1,0 +30692462,Bright 2-bedroom in Brooklyn,229737810,Cameron,Brooklyn,Bedford-Stuyvesant,40.68006,-73.94711,Entire home/apt,125,3,1,2019-01-02,0.16,1,95 +30694626,Clinton Hill Quiet stylish 2 bedroom,541486,Max,Brooklyn,Bedford-Stuyvesant,40.68736,-73.9564,Entire home/apt,160,1,9,2019-06-02,1.39,2,6 +30694693,"Gorgeous Hideout, Close to Everything.",202144863,Huma,Queens,Woodhaven,40.68845,-73.85423,Private room,60,1,10,2019-03-01,1.49,1,0 +30694768,A Relaxing Place in Inwood,188050970,Walkiria,Manhattan,Inwood,40.85962,-73.92971,Private room,65,1,25,2019-06-26,3.89,1,86 +30694839,Brand new beautiful apartment in Williamsburg!,17665952,Bree,Brooklyn,Williamsburg,40.70973,-73.95811,Private room,75,7,2,2019-05-19,0.28,1,0 +30694973,Door man condo near 61st St station,137358866,Kazuya,Queens,Woodside,40.74188,-73.90146,Private room,61,30,2,2019-05-31,0.75,103,230 +30695144,Williamsburg Studio,56286886,Juan Carlos,Brooklyn,Williamsburg,40.71673,-73.96428,Entire home/apt,150,2,4,2019-05-26,0.59,1,12 +30695780,Heart of Upper East Side Home w/ washer-dryer,2939479,Danielle,Manhattan,Upper East Side,40.7751,-73.95294,Private room,125,3,2,2019-07-01,0.32,1,23 +30696051,Modern Spacious Studio just 1 min To Bus Stop,120912613,Sanny,Queens,Glendale,40.6998,-73.89351,Entire home/apt,99,2,28,2019-07-06,5.12,1,289 +30696675,"High wifi , private space and private room",229769527,Morrece,Brooklyn,East Flatbush,40.65679,-73.91631,Private room,200,5,0,,,1,365 +30697032,A Quiet Room in Greenpoint,72512761,Erik,Brooklyn,Greenpoint,40.72402,-73.94949,Private room,75,3,2,2019-07-02,2,3,0 +30697207,"Great room and friendly environment in Astoria, NY",229774456,Chris,Queens,Ditmars Steinway,40.77383,-73.90558,Private room,70,2,4,2019-05-25,0.64,1,89 +30697483,Newly renovated with elevator room 2,125961131,David,Manhattan,Two Bridges,40.7126,-73.99376,Private room,55,1,53,2019-06-23,7.64,3,2 +30699302,Prime Williamsburg / Bedford Avenue Apartment,81347848,Kobi,Brooklyn,Williamsburg,40.71486,-73.96125,Private room,49,28,0,,,1,90 +30700892,MILES DAVIS BIG BEAUTIFUL BEDROOM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80822,-73.94051,Private room,90,2,20,2019-06-24,3.09,6,0 +30701853,"Room in Charming, Plant-filled Brooklyn Apartment",20177190,Kayla,Brooklyn,Gowanus,40.66902,-73.99188,Private room,65,1,20,2019-06-30,3.13,1,146 +30702161,JIMI HENDRIX BIG BEAUTIFUL BEDROOM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80847,-73.94044,Private room,90,2,25,2019-06-24,3.66,6,173 +30702384,SHOW STOPPER/BEST APARTMENT IN HARLEM,203982404,Maxime C/Armande C,Manhattan,East Harlem,40.80701,-73.94041,Entire home/apt,500,2,0,,,6,173 +30703449,"Cool, Clean and Close to All !",228581927,Todd,Brooklyn,Crown Heights,40.6775,-73.9634,Entire home/apt,180,3,1,2018-12-13,0.14,1,90 +30704068,Garden Apartment - Cozy renovated 1BDR,92674591,Celia,Brooklyn,Clinton Hill,40.68878,-73.96495,Entire home/apt,99,2,18,2019-06-30,5.00,1,50 +30704165,Entire Apt for 9Guests near Subway-20mins Times Sq,172379806,Alaz,Queens,Ditmars Steinway,40.77108,-73.91378,Entire home/apt,100,2,25,2019-06-26,3.55,1,294 +30705353,Modern Brooklyn Brownstone Garden Apartment,229836139,Steve,Brooklyn,Bedford-Stuyvesant,40.6881,-73.95356,Entire home/apt,140,2,19,2019-07-01,3.33,1,35 +30705522,Great East Village/Alphabet City Apt!,21010752,Zach,Manhattan,East Village,40.72185,-73.98237,Private room,49,4,2,2019-01-26,0.35,2,0 +30706240,Cozy New York Apartment. Amazing Location!,35179914,Juanita,Manhattan,Harlem,40.82495,-73.94023,Entire home/apt,150,5,1,2019-01-11,0.17,1,0 +30706259,Fully Renovated East Village Oasis,229709908,Delia,Manhattan,East Village,40.72434,-73.98208,Entire home/apt,285,3,16,2019-07-06,3.48,1,241 +30706271,Giant Duplex with Backyard 20 Mins to Manhattan!,10045509,Rebecca,Queens,Ditmars Steinway,40.77315,-73.9075,Entire home/apt,150,5,2,2019-04-02,0.32,1,0 +30706817,Large Sunny 2 Bedrooms in Manhattan-Steps2Subway,229844097,Dave,Manhattan,East Harlem,40.79819,-73.94294,Private room,89,1,23,2019-06-05,3.37,1,285 +30707567,"Sunny, plant-filled & quiet Washington Heights apt",6769030,Dina,Manhattan,Washington Heights,40.83477,-73.94293,Private room,75,2,5,2019-06-22,1.76,1,0 +30707586,Very cozy apartment in Brooklyn.,13223221,Tatiana,Brooklyn,Midwood,40.61843,-73.95626,Entire home/apt,75,3,1,2019-03-10,0.25,1,0 +30708251,Prime Williamsburg water front modern one-bed,13977477,Courtney,Brooklyn,Williamsburg,40.71643,-73.96443,Entire home/apt,99,5,5,2019-06-02,0.81,1,0 +30708281,"Garden, Exotic Lounge Apartment",2838058,Annette,Manhattan,Harlem,40.81216,-73.94411,Entire home/apt,165,5,0,,,2,163 +30708308,Garden Apartment /Mingle and Jingle Fun Host,2838058,Annette,Manhattan,Harlem,40.81234,-73.94512,Private room,65,3,3,2019-05-28,0.48,2,363 +30708899,☆Cozy bedroom in Midtown | 1min to 4 subway lines☆,164051353,Warren,Manhattan,Chelsea,40.74836,-73.98921,Private room,133,1,17,2019-06-23,4.32,3,87 +30709202,"☆Charming bedroom, 5min to Empire State Building☆",164051353,Warren,Manhattan,Chelsea,40.74832,-73.98915,Private room,130,1,19,2019-06-28,2.88,3,81 +30709893,✨PRIVATE Bathroom - Midtown | 5 min Grand Central✨,173417532,Ed,Manhattan,Midtown,40.75106,-73.97485,Private room,172,1,18,2019-07-05,4.74,3,85 +30710247,Cozy Sunny Private Room in Spacious 2-Bedroom,229872308,Shane & Shreshth,Brooklyn,Bedford-Stuyvesant,40.6844,-73.91878,Private room,40,2,50,2019-06-23,7.11,1,18 +30710264,Pleasant Upper West Side Studio,79563670,Nicole,Manhattan,Upper West Side,40.77888,-73.97967,Entire home/apt,100,3,7,2019-07-06,1.04,1,52 +30710325,Huge Room in Trendy East Williamsburg,49800768,Grant,Brooklyn,Williamsburg,40.70509,-73.92988,Private room,80,7,1,2019-01-01,0.16,1,219 +30710341,Zohar’s Apartment,229872448,Zohar,Manhattan,Upper West Side,40.78791,-73.97404,Entire home/apt,180,5,1,2018-12-26,0.15,1,0 +30710462,Pop Fashion Studio,6451056,Liz,Brooklyn,Bushwick,40.69793,-73.93141,Entire home/apt,93,3,5,2019-06-02,0.78,1,0 +30710954,Serene Brooklyn Brownstone Gem,192137090,Daniel,Brooklyn,Gowanus,40.68269,-73.98585,Entire home/apt,100,3,13,2019-01-31,1.90,1,0 +30711544,"Entire Place *NEW APT - NYC, LGA, Flushing Meadows",9096745,Corey,Queens,Elmhurst,40.73383,-73.87346,Entire home/apt,299,2,10,2019-06-30,1.47,1,78 +30712164,The Bronx's Oasis,229885031,Chantel,Bronx,Mount Hope,40.85055,-73.90189,Entire home/apt,69,2,25,2019-07-04,3.66,1,92 +30712281,Beautiful apartment near the city and the beach!!,2370813,Anastasia,Brooklyn,Sheepshead Bay,40.5987,-73.96031,Entire home/apt,110,2,38,2019-07-05,5.43,2,294 +30712349,Artist's Creative Loft Photo Studio-2 Bed + Office,1632633,Susy,Brooklyn,Williamsburg,40.70977,-73.94193,Entire home/apt,120,2,27,2019-07-02,4.20,1,8 +30712446,Beautiful Luxury Building Studio Apartment,10089405,Sini,Brooklyn,Fort Greene,40.68643,-73.97873,Entire home/apt,120,1,1,2019-01-04,0.16,1,1 +30712669,Safe perfect location heart of east village,7957807,Matheus,Manhattan,East Village,40.7256,-73.98478,Entire home/apt,250,2,14,2019-06-20,2.19,1,364 +30712682,A whimsical stay in the heart of Bushwick,133972014,Nana,Brooklyn,Bushwick,40.69979,-73.93158,Entire home/apt,130,3,4,2019-06-09,0.63,1,6 +30712961,Sunny and isolated living room on Roosevelt island,229893262,Shenqi,Manhattan,Roosevelt Island,40.76564,-73.94528,Private room,43,2,1,2018-12-30,0.16,1,50 +30713613,"Artsy duplex for 6, close to US Open & Manhattan",227647873,Samanta,Queens,Astoria,40.76167,-73.91346,Entire home/apt,179,2,29,2019-07-07,5.15,3,116 +30713926,Bright Brooklyn One Bedroom,5170481,Peter,Brooklyn,Clinton Hill,40.68521,-73.96716,Entire home/apt,90,3,5,2019-07-05,2.59,1,50 +30714036,Warm & Welcoming Home for You - Crown Heights,4509281,Kelly,Brooklyn,Crown Heights,40.67548,-73.93992,Private room,500,3,32,2019-07-02,4.62,1,0 +30714312,Clean 2 bedroom home in a safe area near Manhattan,191324,Keith,Queens,Sunnyside,40.74942,-73.91491,Private room,60,2,4,2019-06-11,2.55,2,2 +30715085,"Private Studio apartment In prime Astoria, no fees",57046582,JayJay,Queens,Astoria,40.76908,-73.90873,Entire home/apt,95,3,0,,,1,0 +30715104,1bdr apt. with Manhattan skyline view (long term),141218191,Claudia,Brooklyn,Bushwick,40.70161,-73.93326,Entire home/apt,110,70,4,2019-01-17,0.65,1,90 +30715422,A spacious 1 bedroom apt in a landmark building,5953913,Zhanna,Manhattan,Battery Park City,40.70418,-74.01695,Entire home/apt,220,2,0,,,1,0 +30715488,New york Multi-unit building,5954813,Sarah,Brooklyn,Clinton Hill,40.68983,-73.96553,Private room,120,15,0,,,1,179 +30716128,Spacious RM in Quiet Residential Neighborhood,137358866,Kazuya,Queens,Sunnyside,40.73668,-73.92427,Private room,33,30,0,,,103,244 +30716192,"NYUW05-1: Cozy room, Park, Columbia university.",39890192,Laura,Manhattan,Upper West Side,40.80003,-73.96123,Private room,70,14,2,2019-05-17,0.61,12,146 +30716880,"Prime area locate in Little Italy, Nolita, Soho.",67552519,Patrick,Manhattan,Nolita,40.72246,-73.99549,Entire home/apt,228,2,29,2019-07-01,4.42,2,78 +30717174,E20's- Charm and modern Elevator studio- Quiet,52671461,Andrea,Manhattan,Kips Bay,40.73989,-73.97984,Entire home/apt,150,7,1,2019-03-25,0.28,2,71 +30717311,Tiny studio in best neighborhood in NYC!,9266337,Sara,Manhattan,West Village,40.73153,-74.00469,Entire home/apt,154,2,4,2019-07-01,0.59,1,12 +30717487,Charming Williamsburg Loft - 1 BR,63260432,Thibaut,Brooklyn,Greenpoint,40.7198,-73.95489,Entire home/apt,179,1,15,2019-05-19,2.54,1,0 +30717527,"Two bedroom apartment, one stop from Manhattan",33945670,Eli,Queens,Long Island City,40.74863,-73.9488,Entire home/apt,283,2,11,2019-06-15,1.75,2,303 +30717533,Large Private Room in Crown Heights BK,17598541,Robert,Brooklyn,Crown Heights,40.66708,-73.92968,Private room,45,1,12,2019-06-13,1.89,1,150 +30718238,Manhattan best location Entire1BR Apt amazing view,183790715,D Alejandro,Manhattan,Hell's Kitchen,40.76191,-73.99771,Entire home/apt,575,2,0,,,1,364 +30718403,Local Paradise,141931484,Xie,Brooklyn,Flatlands,40.62815,-73.92898,Private room,69,2,15,2019-06-29,2.20,3,329 +30718534,Charming 1 bedroom in a 2 bedroom west village apt,23419046,Rema,Manhattan,West Village,40.73433,-74.00301,Private room,200,1,0,,,1,0 +30720122,Sunnyside RM w/ a view. Near everything you need.,137358866,Kazuya,Queens,Sunnyside,40.73756,-73.92329,Private room,29,30,0,,,103,241 +30720530,Furnished & Renovated. An Astoria NY RM w/ Appeal!,137358866,Kazuya,Queens,Astoria,40.76671,-73.92278,Private room,39,30,1,2019-06-17,1,103,0 +30721128,"Master Suite w/ Own Bath, 3 mins from subway!",137358866,Kazuya,Queens,Astoria,40.76654,-73.92382,Private room,54,30,0,,,103,0 +30722712,Amazing 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.74002,-73.97914,Entire home/apt,155,30,0,,,8,365 +30722858,Cozy Sunnyside room with a classic feel.,137358866,Kazuya,Queens,Sunnyside,40.74925,-73.91332,Private room,41,30,0,,,103,124 +30723941,Cute 1 BR on Gramercy (Min 30 Days),178224519,Lisa,Manhattan,Kips Bay,40.74056,-73.9791,Entire home/apt,150,30,1,2019-05-21,0.61,8,332 +30725215,"Beautiful 1 BR, Gramercy",178224519,Lisa,Manhattan,Kips Bay,40.74134,-73.98101,Entire home/apt,150,30,0,,,8,364 +30727105,Modern and charming Brooklyn apartment,4679911,Ana Luiza,Brooklyn,Greenpoint,40.73473,-73.95229,Private room,54,21,1,2018-12-22,0.15,1,0 +30728438,"Relax, easy commute to the city",30377766,Julio,Queens,Jackson Heights,40.75382,-73.87508,Private room,62,1,2,2019-05-18,0.32,2,365 +30728885,Private room,9412549,Michael,Manhattan,Financial District,40.70822,-74.00885,Private room,180,1,1,2019-01-18,0.17,1,0 +30728947,Brooklyn Home with a View,5358010,Mansi,Brooklyn,South Slope,40.66358,-73.98997,Entire home/apt,145,4,1,2019-06-11,1,1,12 +30730521,Luxury Apartment on Madison Avenue,4731785,Elena,Manhattan,Upper East Side,40.77995,-73.96056,Entire home/apt,200,21,1,2019-01-07,0.16,1,88 +30731628,Three Bed-Room in Borough Park,230013366,Jessica,Brooklyn,Borough Park,40.63442,-74.00433,Entire home/apt,110,2,17,2019-06-25,2.51,1,243 +30731670,Cozy Brooklyn Brownstone w/ Huge Private Backyard,196613633,Zach,Brooklyn,Bedford-Stuyvesant,40.68361,-73.91372,Private room,45,30,0,,,2,220 +30731674,Spacious studio in the heart of NYC,1995636,Oleg,Manhattan,Midtown,40.75634,-73.96519,Entire home/apt,225,30,1,2019-04-20,0.37,1,108 +30732728,"Luxury apartment, for single! near Central Park",5469063,Yuliya,Manhattan,Upper East Side,40.76719,-73.95253,Entire home/apt,200,5,1,2019-02-08,0.20,1,24 +30732895,Spacious Room w/Comfy Queen Bed. Central Location!,2824437,Tina,Brooklyn,Crown Heights,40.67506,-73.94648,Private room,70,3,6,2019-06-15,0.85,1,41 +30733035,Bright serene 2-bedroom in Harlem,29245582,Jennifer,Manhattan,Harlem,40.8114,-73.9431,Entire home/apt,150,5,16,2019-06-23,3.22,1,3 +30733474,Flex Chk In Times - NYC Quick Stay,228263278,475,Manhattan,Harlem,40.8241,-73.94682,Private room,95,2,4,2019-06-16,0.93,4,180 +30733576,king size bed in hip LES -subway outside,19052001,Madison,Manhattan,Lower East Side,40.7124,-73.99054,Private room,80,2,3,2019-03-02,0.60,1,0 +30733692,Available Now,230028797,Wael,Queens,Astoria,40.76808,-73.93359,Shared room,100,1,0,,,1,89 +30733899,Downtown Brooklyn exquisite private room epic view,225618164,Sergii,Brooklyn,Gowanus,40.6832,-73.9891,Private room,70,30,0,,,3,365 +30734277,Large Full Bedroom in an Awesome Huge Artist Loft,501456,Aaron,Brooklyn,Greenpoint,40.73448,-73.95716,Private room,70,3,0,,,4,4 +30734595,Beautiful Park Slope Designer Condo,14244557,Diego,Brooklyn,Park Slope,40.66519,-73.97793,Entire home/apt,250,9,1,2019-01-07,0.16,1,251 +30735151,Cozy Private BR - Less Than Five Mins To Subway,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67935,-73.90838,Private room,55,1,9,2019-06-19,1.38,6,173 +30735308,Private 2 BR Apt in heart of South Slope,186334891,Muneeba,Brooklyn,Sunset Park,40.66207,-73.99147,Entire home/apt,150,2,17,2019-06-19,2.67,2,244 +30735480,Neve recording studio,229693987,0123,Manhattan,Lower East Side,40.71456,-73.98717,Entire home/apt,600,1,0,,,1,365 +30735839,Comfy & Modern Private Bedroom w/ Bunkbed,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67999,-73.90701,Private room,55,1,3,2019-06-23,1.50,6,163 +30736119,"Modern and Cozy Private Bedroom in Brooklyn, NY",230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.68045,-73.9064,Private room,55,1,8,2019-06-15,1.13,6,173 +30736279,"Deluxe Wall Street Studio w/ Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Financial District,40.70563,-74.00835,Entire home/apt,232,30,0,,,232,350 +30737105,"Lovely,Cozy,bright,beautiful room **only female**",229421782,Sunny,Brooklyn,East Flatbush,40.6472,-73.94348,Private room,35,4,5,2019-06-05,0.79,2,89 +30737182,Central Park Charming Home,197082458,Luisa,Manhattan,Upper West Side,40.7773,-73.97736,Entire home/apt,350,2,9,2019-06-23,1.32,1,286 +30737221,Chic and Comfortable in Manhattan,198406576,Zel,Manhattan,Harlem,40.81612,-73.94216,Entire home/apt,195,30,5,2019-06-18,2.08,1,239 +30737562,Private Bedroom and Bathroom in Spacious Apartment,4281300,Alex,Brooklyn,Williamsburg,40.71715,-73.94152,Private room,89,1,2,2019-03-05,0.43,3,16 +30737572,Private Room in Clean & Cozy Home Central Location,230049837,Crystal,Manhattan,Murray Hill,40.74929,-73.9812,Private room,59,5,5,2019-06-13,1.43,2,0 +30737615,ONE BIG PARK SLOPE ROOM starting MARCH - MAY 2019,835112,Leah,Brooklyn,South Slope,40.66869,-73.98665,Private room,42,90,0,,,2,0 +30737643,Long Term Stay 4 1/2- 5 months. Starting Jan,1466422,Gila,Brooklyn,Crown Heights,40.67551,-73.94047,Entire home/apt,60,133,0,,,2,0 +30739597,"Basement suite in Bushwick, 4 minutes from the M!",14841940,David,Brooklyn,Bushwick,40.69752,-73.92069,Private room,48,3,13,2019-06-18,2.05,1,34 +30739837,Spacious and relaxing apartment in UWS.,181370114,Feizal,Manhattan,Upper West Side,40.79167,-73.97864,Entire home/apt,500,1,0,,,1,87 +30739988,Quite Spacious studio easy access to ALL,103922915,Shu,Manhattan,Midtown,40.75816,-73.97004,Entire home/apt,149,2,3,2019-01-01,0.46,1,0 +30740488,**Cozy Private Room(M),52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68373,-73.95161,Private room,49,2,13,2019-05-24,2.22,7,294 +30740551,Dollar,131705586,Freddy,Brooklyn,Fort Greene,40.69564,-73.97287,Private room,77,1,7,2019-06-02,1.84,2,364 +30741070,Living room in Queens for rent,118839768,Виль,Queens,Jackson Heights,40.74766,-73.88598,Shared room,35,62,0,,,1,0 +30741160,"Private room in Sunnyside, Queens",123099811,Heather,Queens,Sunnyside,40.74209,-73.92592,Private room,40,2,0,,,1,1 +30741199,Bright Beautiful Loft Apt in Heart of Williamsburg,416238,Mark,Brooklyn,Williamsburg,40.71513,-73.94444,Entire home/apt,225,6,1,2019-01-01,0.16,1,88 +30741302,**Cozy Private Room(B),52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95014,Private room,49,2,19,2019-06-20,3.22,7,360 +30744215,NYC Marathon 2019 - Near Carnegie Hall - 2 nights,51151126,Anne,Manhattan,Midtown,40.7654,-73.98202,Private room,600,2,0,,,2,2 +30744543,"Quiet place +fully renovated apartment +Queens-NY",35162102,Lisa,Queens,Queens Village,40.72348,-73.75269,Entire home/apt,120,2,41,2019-06-20,6.51,1,66 +30744585,NYC Marathon 2019 - Near Carnegie Hall - 2 Nights,51151126,Anne,Manhattan,Midtown,40.76579,-73.98049,Private room,600,2,0,,,2,2 +30745232,Park Slope Cozy Bedroom,3016566,Yukako,Brooklyn,Park Slope,40.67371,-73.9769,Private room,200,1,1,2019-04-19,0.37,1,351 +30745402,Room in central Manhattan,163905917,Matilda,Manhattan,Hell's Kitchen,40.75584,-73.99574,Private room,115,4,1,2019-05-12,0.52,3,0 +30745429,Alphabet City Long term Stay,31917161,Cameron,Manhattan,East Village,40.72583,-73.97528,Private room,70,30,0,,,1,0 +30745771,Quiet Cozy Apartment by the Beach,230046770,Fitzene,Brooklyn,Coney Island,40.57115,-73.99408,Entire home/apt,190,1,1,2018-12-25,0.15,1,2 +30745822,New Build APT in Brooklyn - Prospect Park South!,97681343,Shola,Brooklyn,Flatbush,40.64499,-73.97043,Entire home/apt,62,2,0,,,1,54 +30746531,One bedroom in Clinton Hill/Bedstuy,48827403,Ivanna,Brooklyn,Bedford-Stuyvesant,40.68578,-73.94933,Private room,160,2,0,,,1,363 +30746904,WOW LOFT LONG TERM STAY & SHORT TERM EVENTS/SHOOTS,76192815,Sam,Manhattan,Chinatown,40.71387,-73.99414,Entire home/apt,175,1,1,2019-03-10,0.25,5,364 +30747260,"Spacious room in quiet Sunset Park, Brooklyn",28821748,Jieyu,Brooklyn,Sunset Park,40.64098,-74.01061,Private room,30,10,1,2019-01-01,0.16,1,0 +30747515,Bedstuy-stay,20043437,Marianne,Brooklyn,Bedford-Stuyvesant,40.68581,-73.95189,Private room,35,10,3,2019-05-31,0.48,1,5 +30747562,BedStuy cozy + convenient private room and bath,2581995,Layla,Brooklyn,Bedford-Stuyvesant,40.68061,-73.91693,Private room,37,1,29,2019-06-19,4.58,2,10 +30748041,Best Manhattan location & best room for the price!,7883985,Clarissa,Manhattan,Upper East Side,40.77221,-73.95528,Private room,79,1,23,2019-06-25,3.59,1,7 +30749019,Bright airy rooms in Queens close to transport,230108889,Malca,Queens,Kew Gardens Hills,40.71997,-73.81222,Private room,40,5,2,2019-03-01,0.32,2,0 +30749411,"Manhattan huge bedroom, with PRIVATE BATHROOM!",8214691,Francesco,Manhattan,Two Bridges,40.7114,-73.99354,Private room,159,3,0,,,1,0 +30749889,"Very nice Master bedroom, all comfort, brooklyn",230113240,Mary,Brooklyn,Bushwick,40.69251,-73.91246,Private room,100,1,23,2019-06-23,3.69,1,240 +30750063,"Tranquility and views - 2 beds, family-friendly",9976776,Tatiana,Manhattan,Roosevelt Island,40.76209,-73.94854,Private room,199,3,1,2019-01-02,0.16,1,0 +30754138,Prime Soho apartment with private backyard,163035332,Pirin,Manhattan,SoHo,40.72199,-74.00444,Entire home/apt,550,2,12,2019-07-03,1.72,3,126 +30756760,Cozy Room with a view,144124452,Yemi,Queens,Rosedale,40.65291,-73.73458,Private room,55,1,9,2019-04-21,1.34,3,30 +30756898,Lux renovated room 19mins ride to Grand Central,137358866,Kazuya,Queens,Woodside,40.74491,-73.90824,Private room,40,30,1,2019-03-25,0.28,103,247 +30759268,Cute 2BR in the middle of West Village,230165497,Lara,Manhattan,West Village,40.73103,-74.00197,Entire home/apt,155,30,0,,,4,0 +30759388,"Convenient, comfy, and bright apartment",7389707,Yael,Manhattan,Washington Heights,40.84658,-73.93979,Entire home/apt,200,2,0,,,2,0 +30759781,Stay in heart of Manhattan!Subway near-Best Area,149312705,Anthony,Manhattan,Midtown,40.75994,-73.96473,Private room,150,2,25,2019-06-27,3.87,1,19 +30761478,Sundrenched Studio Doorman Elevator Laundry 5240,16098958,Jeremy & Laura,Manhattan,Midtown,40.75585,-73.96502,Entire home/apt,190,30,0,,,96,158 +30761885,Bedstuy Private Room Two Blocks from Subway,50686800,Antoinette,Brooklyn,Bedford-Stuyvesant,40.6907,-73.95004,Private room,46,1,0,,,1,28 +30761890,Renovated One bedroom Gym Laundry Elevator 5236,16098958,Jeremy & Laura,Manhattan,Midtown,40.76394,-73.98154,Entire home/apt,215,30,0,,,96,271 +30762826,Jefferson Avenue Apartment,6051149,Cristiano,Brooklyn,Bedford-Stuyvesant,40.68341,-73.94608,Entire home/apt,140,3,12,2019-06-17,2.25,1,66 +30762861,"Cozy & Nice room w/AC, Queens! good subway access!",200239515,Shogo,Queens,Woodside,40.74336,-73.89438,Private room,35,30,2,2019-06-01,0.90,15,7 +30763021,"Off AVE N Beauty, a place like home! Flatlands, BB",173912778,Georgette'S,Brooklyn,Flatlands,40.62183,-73.92111,Entire home/apt,89,2,12,2019-06-12,1.86,1,132 +30763291,Luxury Private Bedroom in Brooklyn 2R-1,230192510,Zach,Brooklyn,Fort Greene,40.69638,-73.97507,Private room,48,30,1,2019-06-30,1,25,342 +30763342,Lofted East Village 2BR | Big & Safe,228220221,Aiden & Cassy,Manhattan,East Village,40.72217,-73.98139,Entire home/apt,239,1,13,2019-06-23,2.10,1,345 +30763404,Entire studio East village Walk to All,230192818,Felicia,Manhattan,East Village,40.72138,-73.98084,Entire home/apt,90,1,22,2019-06-28,3.40,2,17 +30763950,BRIGHT AND LOFTY IN THE EAST VILLAGE,363717,Sara,Manhattan,East Village,40.72213,-73.98122,Entire home/apt,350,4,2,2019-06-04,1.15,1,127 +30764168,Modern Co-Living Space 2R-2,230192510,Zach,Brooklyn,Fort Greene,40.69716,-73.97384,Private room,48,30,1,2019-06-30,1,25,322 +30764476,Two Bedroom fully furnished - UES (30 days MIN),159598333,Sol,Manhattan,Upper East Side,40.78305,-73.94532,Entire home/apt,99,30,0,,,5,324 +30764665,Large one bedroom with 2 walk through living rooms,230196849,Mariia,Manhattan,East Harlem,40.78909,-73.94153,Entire home/apt,350,2,4,2019-05-19,0.63,1,81 +30764972,Spacious 6BR/2.5BA Apt — Washer & Dryer / 20% OFF!,227679456,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.66062,-73.94298,Entire home/apt,599,2,1,2019-04-16,0.35,7,110 +30764990,Lovely spacious 1 BR apartment in Williamsburg,226201658,Vanessa,Brooklyn,Williamsburg,40.70819,-73.94945,Entire home/apt,89,30,2,2019-03-31,0.39,3,295 +30765849,Elevator Doorman Gym Studio Roof Laundry 5219,16098958,Jeremy & Laura,Manhattan,Midtown,40.74986,-73.98709,Entire home/apt,180,30,0,,,96,311 +30766280,音樂之家 Musician and Artist Exhibition Home,213781715,Anting,Brooklyn,Greenpoint,40.73289,-73.95203,Entire home/apt,189,1,0,,,33,364 +30766643,Bright & Cozy Manhattan Home | Central Location,230049837,Crystal,Manhattan,Murray Hill,40.7493,-73.98119,Entire home/apt,129,3,6,2019-05-27,0.93,2,22 +30767017,Spacious Bedroom in the heart of Fort Greene 1L-3,230192510,Zach,Brooklyn,Fort Greene,40.69691,-73.97376,Private room,48,30,1,2019-02-14,0.21,25,220 +30767259,Luxury Private Bed in Brooklyn 2L-1,230192510,Zach,Brooklyn,Fort Greene,40.6969,-73.97566,Private room,48,30,0,,,25,340 +30767280,Nice Room 3min walk to Subway Plus Balcony and AC,218336964,Wei,Queens,Rego Park,40.73058,-73.86963,Private room,40,3,14,2019-06-21,2.07,4,8 +30767367,Fantastic Co-Living Space 2L-2,230192510,Zach,Brooklyn,Fort Greene,40.69629,-73.97447,Private room,48,30,0,,,25,341 +30767659,3 Single Beds Studio near ESB,211549023,Studioplus,Manhattan,Midtown,40.74841,-73.98768,Entire home/apt,220,2,15,2019-06-07,2.47,13,286 +30767663,1 bedroom apartment in Bushwick,6297882,Indre,Brooklyn,Bushwick,40.69879,-73.92936,Entire home/apt,120,3,2,2019-06-05,0.35,1,0 +30767905,Updated Private Bedroom in Co-Living Space 2L-3,230192510,Zach,Brooklyn,Fort Greene,40.69758,-73.97432,Private room,48,30,1,2019-02-24,0.22,25,311 +30768008,Upper West Manhattan Entire Suite,10415675,Yao & Rain,Manhattan,Harlem,40.82224,-73.95402,Entire home/apt,150,4,3,2019-05-08,0.47,7,281 +30768300,Manhattan Time Square Private Room,34689714,Maria,Manhattan,Hell's Kitchen,40.76448,-73.98632,Private room,99,1,3,2019-06-02,0.44,5,358 +30768969,Sunny & Big Room w/private toilet in Bushwick,192181166,Elisa,Brooklyn,Williamsburg,40.70891,-73.94268,Private room,72,3,0,,,2,0 +30769015,Heart of Bedford Stuyvesant. Next to subway. Full floor in brown stone. Great neighborhood. 20 minutes to downtown Manhattan. Best place ever.,95915902,Sam,Brooklyn,Bedford-Stuyvesant,40.68883,-73.9525,Entire home/apt,100,2,5,2019-01-06,0.75,1,0 +30769129,Artist Retreat in Williamsburg with studio space!,121434641,Camilla,Brooklyn,Williamsburg,40.70891,-73.94047,Entire home/apt,100,1,23,2019-05-12,3.30,1,173 +30769303,Luxury Apartment Building,155261188,Ahmed,Queens,Kew Gardens,40.70555,-73.82138,Private room,200,1,0,,,1,365 +30769456,Quarto privado em Astória.,230230484,Clara,Queens,Astoria,40.76501,-73.92502,Private room,80,3,3,2019-06-02,0.48,2,365 +30769510,Modern Luxury 2bedroom in ideal Brooklyn location,4797532,Priscilla,Brooklyn,Crown Heights,40.67267,-73.95786,Entire home/apt,135,28,0,,,2,189 +30769650,Private Room in Two-Bedroom Brooklyn Apartment,214130808,Karen Jennifer & Jan,Brooklyn,Bay Ridge,40.6224,-74.02428,Private room,50,1,17,2019-06-12,2.71,1,311 +30769899,Gorgeous Brooklyn Heights apartment,2547347,Jessica,Brooklyn,Brooklyn Heights,40.69214,-73.99444,Entire home/apt,100,2,7,2019-05-01,1.12,1,326 +30769959,Private One Bedroom Chelsea Apartment New York-#2,9328763,Synergy Global,Manhattan,Chelsea,40.74566,-73.99673,Private room,138,25,0,,,2,0 +30769985,Verona TwentyOne - Kendal Garden,195691349,Norman,Brooklyn,Bedford-Stuyvesant,40.68012,-73.94837,Entire home/apt,150,2,18,2019-07-06,3.94,3,299 +30770301,Clean Private Bedroom in the Heart of East Village,222779801,Maira,Manhattan,East Village,40.72963,-73.98662,Private room,75,1,17,2019-07-05,2.49,2,120 +30770314,Spacious Manhattan Apartment near Battery Park,230235805,Kenneth,Manhattan,Financial District,40.70427,-74.01533,Entire home/apt,116,3,17,2019-05-25,2.50,1,0 +30770478,Big private room in Brooklyn penthouse,9288052,Lauren,Brooklyn,Clinton Hill,40.68527,-73.9657,Private room,60,7,2,2019-05-02,0.34,2,0 +30770723,Live in an Art Curator's Home,599076,Stephanie,Brooklyn,Bushwick,40.70035,-73.92323,Private room,70,1,5,2019-04-21,0.78,1,81 +30770830,One Bdrm Apt in Charming South Harlem Brownstone,208477013,Bill,Manhattan,Harlem,40.80442,-73.94756,Entire home/apt,125,2,7,2019-07-01,1.12,1,24 +30772697,"Relaxing Private Bedroom~Hamilton Heights, NY",178473107,Allan C.,Manhattan,Harlem,40.83024,-73.94715,Private room,90,1,1,2019-03-09,0.25,6,40 +30772721,Budget friendly room in Queens. 5mins to subway!,137358866,Kazuya,Queens,Elmhurst,40.73489,-73.88048,Private room,28,30,0,,,103,63 +30772753,Perfect apartment in NYC,28230496,Tyler,Manhattan,Lower East Side,40.72168,-73.98686,Entire home/apt,200,5,2,2019-04-14,0.32,1,78 +30773154,Bright spacious two bed apartment! (private room),72887012,Dany,Manhattan,East Village,40.72297,-73.9852,Private room,90,6,2,2019-06-27,0.31,1,23 +30773558,MANHATTAN NEWLY RENOVATED SPACIOUS MODERN FLAT!,191469946,Emmanuel,Manhattan,East Harlem,40.7942,-73.94091,Entire home/apt,350,1,27,2019-06-25,4.09,1,95 +30774970,A Queen's Palace: Brooklyn NY Style,20279355,Nekhena,Brooklyn,Bedford-Stuyvesant,40.67939,-73.91825,Shared room,75,1,15,2019-06-23,3.72,1,123 +30775624,Private cozy room in a modern artsy apartment,20587499,Edward,Manhattan,Washington Heights,40.83701,-73.94577,Private room,65,1,13,2019-05-26,1.99,1,0 +30775672,Private room in sunny apartment in Williamsburg,49292750,Baptiste,Brooklyn,Williamsburg,40.70766,-73.94789,Private room,72,3,2,2019-02-03,0.31,1,0 +30776023,Architects Residency in Upper East / 2-min Subway,18091877,Jim,Manhattan,Upper East Side,40.78176,-73.945,Private room,120,4,20,2019-06-29,3.17,1,31 +30776172,Waterfront Studio in Luxury Highrise w/ Gym & Roof,1574687,Mila,Manhattan,Financial District,40.7058,-74.01559,Entire home/apt,180,2,3,2019-05-27,1.14,1,5 +30778977,Quiet and cute bedroom in a 2 bedroom apartment,60370951,Emanuella,Queens,Astoria,40.77677,-73.93521,Private room,100,3,0,,,2,343 +30785849,"Chic, stylish apartment in HEART of NYC",27863129,Nikita,Manhattan,West Village,40.7385,-74.00014,Entire home/apt,250,2,39,2019-05-27,6.32,1,0 +30786156,Brownstone Garden Apartment,105154396,Goenuel,Brooklyn,Bedford-Stuyvesant,40.68963,-73.95138,Entire home/apt,160,3,22,2019-06-29,3.28,1,110 +30786375,Beautiful Brooklyn Room for a Single Traveler,690079,Elena,Brooklyn,East Flatbush,40.64915,-73.95147,Private room,40,25,0,,,1,305 +30786668,"Rustic house w/ parking, wifi, & AC",64450303,Elizabeth,Brooklyn,Flatlands,40.62941,-73.9425,Entire home/apt,300,1,9,2019-07-01,1.44,2,7 +30786946,Lovely stay in a private large room near JFK,26028092,Vanessa,Queens,Richmond Hill,40.68146,-73.82286,Private room,66,1,30,2019-06-30,4.52,1,131 +30788199,Private bedroom with Attached bathroom,129174905,Syed,Manhattan,Upper East Side,40.76174,-73.96066,Private room,65,15,1,2018-12-18,0.15,1,0 +30788330,Spacious alcove studio in the middle of Chelsea,37883321,Lionel,Manhattan,Chelsea,40.74435,-73.99535,Entire home/apt,160,7,8,2019-06-30,3.04,1,80 +30789224,Pvt Room in Quiet Home JFK 6mi LGA 10 mi -Silver,230025652,Kafayat,Queens,Queens Village,40.70359,-73.74859,Private room,38,2,14,2019-04-27,2.71,4,6 +30789463,Modern Cozy 2 Bedroom Apt on UES -Near subways!,93822547,Laura,Manhattan,Upper East Side,40.77515,-73.95173,Entire home/apt,185,2,3,2019-05-26,1.11,1,0 +30791183,Spacious One Bedroom Apartment (sleeps 2-5 people),230367259,James,Manhattan,Upper East Side,40.77861,-73.94628,Entire home/apt,200,7,0,,,1,235 +30791783,"Sunny, Spacious, Chic Interior Designer Apartment",129328105,Charlie,Manhattan,Upper East Side,40.77423,-73.96561,Entire home/apt,199,2,1,2019-04-29,0.42,1,50 +30791949,Cozy and spacious loft in Williamsburg/Bushwick,4510691,Gillian,Brooklyn,Williamsburg,40.70923,-73.9448,Entire home/apt,175,2,4,2019-05-13,0.62,1,34 +30792105,Wonderful Queen Room Next to Manhattan,36732553,Miriam,Queens,Astoria,40.75616,-73.91657,Private room,60,15,3,2019-03-31,0.48,3,331 +30792215,Room steps from Times Square,192754619,Liza,Manhattan,Hell's Kitchen,40.75568,-73.99661,Private room,159,1,1,2018-12-30,0.16,1,189 +30792372,UWS Studio Apartment,230375654,Tracey,Manhattan,Upper West Side,40.78168,-73.98099,Entire home/apt,250,2,0,,,1,0 +30792493,Luxury 2BR 2BA with washer/dryer in Soho/Tribeca,230165497,Lara,Manhattan,SoHo,40.72129,-74.0019,Entire home/apt,250,30,0,,,4,364 +30792566,"LES Well-Designed Flat, 3br, 5beds, Sleeps 9!",230371691,Mark,Manhattan,Lower East Side,40.71981,-73.98895,Entire home/apt,432,1,20,2019-06-23,3.35,1,325 +30793033,Private One Bedroom Apartment,230378560,Ta56,Queens,Briarwood,40.71398,-73.81834,Entire home/apt,66,2,9,2019-06-16,1.36,1,186 +30793116,"Peaceful, spacious and musical!",22863358,Marisa,Manhattan,Washington Heights,40.84245,-73.93886,Private room,80,2,1,2019-05-28,0.71,1,29 +30794026,Bed-Stuy Little Gem,223258125,Nuriia,Brooklyn,Bedford-Stuyvesant,40.67907,-73.9498,Entire home/apt,150,2,8,2019-06-23,1.27,1,6 +30795092,Oasis on Saratoga,166084232,Jermaine,Brooklyn,Crown Heights,40.67606,-73.9155,Entire home/apt,185,1,17,2019-06-16,2.48,1,48 +30795672,Private Room non smoking female only near JFK,230396622,Darlena,Brooklyn,Brownsville,40.65872,-73.90951,Private room,29,4,6,2019-06-21,0.94,1,66 +30795961,Quiet 1 bedroom near Midtown Manhattan,72082556,Nicole,Queens,Long Island City,40.73637,-73.9371,Entire home/apt,75,1,0,,,1,42 +30795963,"HARLEM, NY MASTER BEDROOM EN SUITE BATH & BALCONY",228571016,Alexis,Manhattan,Harlem,40.82591,-73.95144,Private room,190,2,1,2018-12-29,0.16,2,89 +30795983,City Portal,106667600,Monica,Queens,East Elmhurst,40.75782,-73.8844,Private room,42,10,3,2019-06-02,0.50,1,326 +30797115,"Private Room in Luxury Building, Downtown Brooklyn",48367358,Kuang,Brooklyn,Downtown Brooklyn,40.6923,-73.98298,Private room,65,30,0,,,1,17 +30797190,#1 JFK/NYC Home sweet home!,37891510,Carlos & Lina,Queens,Woodhaven,40.68577,-73.85984,Private room,45,3,10,2019-07-04,2.14,2,54 +30797357,Newly Renovated Bedroom Central Park South,230407184,Arjay,Manhattan,Hell's Kitchen,40.76707,-73.98591,Private room,131,2,2,2019-01-02,0.32,1,0 +30798396,Spacious room near airport LGA Manhattan & Gym :),137358866,Kazuya,Queens,Jackson Heights,40.74878,-73.8799,Private room,24,30,0,,,103,244 +30798936,Room Near Times Square/Javits/Hells Kitchen/MSG,230418398,Jordana,Manhattan,Hell's Kitchen,40.75651,-73.9976,Private room,89,2,1,2019-01-01,0.16,1,0 +30799010,Brand new building with Manhattan view,52053537,Inna,Queens,Long Island City,40.75317,-73.94015,Entire home/apt,200,3,0,,,1,0 +30799299,Beautiful Row House Steps From Prospect Park,16305093,Betsy,Brooklyn,Windsor Terrace,40.65716,-73.9755,Entire home/apt,450,4,0,,,2,87 +30799325,Cute inexpensive place for a short stay in Queens,78378674,Mihika,Queens,Elmhurst,40.74461,-73.87334,Shared room,40,1,1,2018-12-30,0.16,1,0 +30799348,Penthouse Gorgeous Apartment Stay,161769990,William,Brooklyn,Bedford-Stuyvesant,40.68964,-73.9508,Private room,45,7,8,2019-04-17,1.16,2,0 +30799727,Cozy and clean room. Easy transportation,160923266,Mario,Brooklyn,Greenpoint,40.73324,-73.95101,Private room,70,5,0,,,1,0 +30800201,Sunny and Bright Space in Heart of East Village,2729738,Kristina,Manhattan,East Village,40.72728,-73.98256,Entire home/apt,225,4,0,,,1,0 +30800868,W 70s BR in Classic UWS Building,3929012,Kevin,Manhattan,Upper West Side,40.77824,-73.98255,Private room,129,1,30,2019-07-01,4.69,4,49 +30801068,Spacious bedroom in a quiet commuter town.,137358866,Kazuya,Queens,Woodside,40.74031,-73.89213,Private room,33,30,3,2019-06-15,0.70,103,236 +30801197,1.5 BR w/ HUGE Living Room&Den - EZ access to City,14818535,Dustin,Queens,Maspeth,40.73889,-73.89706,Entire home/apt,122,2,17,2019-07-07,2.71,1,73 +30801344,Huge BR in Classic UWS Building W 70s,3929012,Kevin,Manhattan,Upper West Side,40.78012,-73.98279,Private room,129,1,37,2019-07-01,5.39,4,59 +30801989,Wonderful room with fridge next to Manhattan,36732553,Miriam,Queens,Astoria,40.75491,-73.9152,Private room,50,15,1,2019-05-04,0.45,3,341 +30805617,61 street and 2 ave apt D Manhattan,180380802,Avner,Manhattan,Midtown,40.75169,-73.97162,Entire home/apt,140,2,1,2019-05-19,0.59,4,354 +30805802,harlem/morning side heights/SOHA,10214546,Amy,Manhattan,Harlem,40.80629,-73.95478,Private room,250,1,0,,,1,179 +30806012,61st and 2nd ave apt C Manhattan clean safe,180380802,Avner,Manhattan,Midtown,40.75158,-73.97151,Entire home/apt,130,2,2,2019-05-09,0.29,4,365 +30809679,Luxurious and Bright Room Near Time Square,204160428,Cristian,Manhattan,Hell's Kitchen,40.76036,-73.99676,Private room,180,3,29,2019-06-22,4.58,3,126 +30810353,"Lovely Room, Midtown Manhattan!",204160428,Cristian,Manhattan,Hell's Kitchen,40.75934,-73.99563,Private room,160,3,30,2019-06-22,4.71,3,73 +30810475,Gorgeous Room! Close to Time Square,204160428,Cristian,Manhattan,Hell's Kitchen,40.75874,-73.99605,Private room,130,3,27,2019-06-23,4.35,3,114 +30811789,Piece of mind in Harlem,2423570,Alex,Manhattan,East Harlem,40.81568,-73.93442,Entire home/apt,150,30,4,2019-05-13,1.13,1,345 +30811876,Quiet Sunny Spacious Room in Charming Vintage Apt,54368503,Alison,Queens,Ridgewood,40.70351,-73.90212,Private room,120,3,0,,,1,0 +30811958,2 Bedroom Penthouse with Good Vibes,230498530,Patricia,Manhattan,Harlem,40.82621,-73.94125,Entire home/apt,90,30,1,2019-05-25,0.67,1,209 +30812691,Cozy private room near Upper West Central Park,103726845,Alessandra,Manhattan,Upper West Side,40.80269,-73.96459,Private room,85,1,0,,,2,0 +30812751,Double Double Room · Empire CIty New York,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75467,-73.99657,Private room,199,1,4,2019-01-20,0.61,30,363 +30812846,"New, Lovely Studio in Long Island City",159026666,Jerry,Queens,Long Island City,40.74774,-73.939,Entire home/apt,199,7,0,,,1,0 +30814038,Nice private bedroom near Upper West Central Park,103726845,Alessandra,Manhattan,Upper West Side,40.80236,-73.96604,Private room,90,1,2,2019-01-21,0.32,2,0 +30814580,Luxury Industrial 3 Bedroom Williamsburg Condo,228228269,Yoanna,Brooklyn,Williamsburg,40.7173,-73.96159,Entire home/apt,444,1,15,2019-06-24,2.49,1,326 +30814778,Magnificent NYC 1 Bedroom Apt in Hell's Kitchen!,163251048,Jen,Manhattan,Hell's Kitchen,40.76049,-73.99782,Entire home/apt,399,30,0,,,8,294 +30815072,Wonderful Clean 2 Bedroom Apartment in EV,228225649,Brent & Kaley,Manhattan,East Village,40.725,-73.98236,Entire home/apt,349,1,8,2019-06-29,1.88,1,352 +30815097,Entire 1BR APT in historic Clinton Hill Brownstone,3636827,Kyle,Brooklyn,Clinton Hill,40.68246,-73.9643,Entire home/apt,195,2,2,2019-05-19,0.31,1,44 +30815183,Location Location Location !!,230516915,C,Manhattan,Upper East Side,40.78013,-73.96031,Entire home/apt,590,14,0,,,1,358 +30815343,Room w/ Balcony-- 5min from Grand Central!!,921897,Richard,Manhattan,Murray Hill,40.74692,-73.97548,Private room,70,30,1,2019-01-01,0.16,1,172 +30815605,Massive Designer One Bedroom in Brownstone,2582762,Anna,Brooklyn,Fort Greene,40.69301,-73.97128,Entire home/apt,220,14,0,,,1,31 +30816604,Sweet South Slope Garden Apartment,3312111,Elsie,Brooklyn,South Slope,40.66146,-73.98371,Entire home/apt,150,2,3,2019-01-07,0.47,1,34 +30817001,"Beautiful, Newly Furnished, Luxury, Grand Central",52950465,Gal,Manhattan,Midtown,40.7541,-73.97056,Entire home/apt,169,30,0,,,12,365 +30817038,Double Double Room · Broadway,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75506,-73.99715,Private room,199,1,1,2018-12-27,0.15,30,365 +30817133,"Spacious, Mid-Century Studio in Downtown Brooklyn!",1992020,Brandon,Brooklyn,Fort Greene,40.6874,-73.97973,Entire home/apt,199,5,2,2019-05-06,0.32,1,0 +30817394,Spacious apartment in East Williamsburg!,192740917,Dotan,Brooklyn,Williamsburg,40.7054,-73.94239,Entire home/apt,120,7,1,2019-01-01,0.16,1,189 +30817424,Cozy Astoria Getaway!,230528448,Katie,Queens,Ditmars Steinway,40.77651,-73.91281,Private room,40,1,3,2019-02-02,0.48,1,0 +30817603,Large Private Room. Fits up to 6 people,135060128,Abella,Brooklyn,Williamsburg,40.70841,-73.95048,Private room,120,1,3,2019-07-06,0.47,2,269 +30818441,TIMES SQUARE 3BR FLAT APT,230531384,Carlos,Manhattan,Hell's Kitchen,40.76291,-73.99179,Entire home/apt,350,2,32,2019-06-23,5.25,1,198 +30818565,NICE 1 BEDROOM CLOSE 3 MALLS AND SHOPPING,190298308,Lucky,Queens,Forest Hills,40.73306,-73.84904,Entire home/apt,94,3,9,2019-06-30,1.32,1,329 +30818914,1400 Sq Ft Apartment on Broadway!,18653145,Mario,Manhattan,Harlem,40.83109,-73.94714,Entire home/apt,185,7,3,2019-05-08,0.99,1,128 +30819021,Your 1BR home in Murray Hill!,41955015,Angeles,Manhattan,Murray Hill,40.74719,-73.97478,Entire home/apt,150,1,2,2019-01-07,0.32,1,0 +30819096,"2 BEDROOM Home, in the Center of Midtown",53046634,Joey,Manhattan,Hell's Kitchen,40.76156,-73.99006,Entire home/apt,225,3,20,2019-06-20,3.17,2,68 +30819919,Charming Hideout by the East River,63419128,Noah,Manhattan,Stuyvesant Town,40.73284,-73.97635,Private room,120,3,2,2019-01-19,0.32,1,0 +30820062,"Spacious, sunny apartment by Prospect Park",7798275,Lucia And Rob,Brooklyn,Prospect-Lefferts Gardens,40.66027,-73.95376,Entire home/apt,100,25,1,2019-03-21,0.27,1,5 +30820590,Sun-Soaked Historic Brownstone Apartment,4408261,Peter,Brooklyn,Bedford-Stuyvesant,40.68191,-73.95812,Entire home/apt,130,3,1,2019-01-02,0.16,1,0 +30821781,"Cozy Retreat, Close to LGA and Midtown",4691878,Kristine,Queens,East Elmhurst,40.75647,-73.89964,Private room,100,2,0,,,1,363 +30821795,UES Bliss,2793924,Tommy,Manhattan,Upper East Side,40.76909,-73.95479,Entire home/apt,140,4,4,2019-05-01,0.65,1,5 +30821860,Cozy 1 person bedroom in Fancy neighborhood,13126043,Carolle,Manhattan,Midtown,40.74312,-73.98447,Private room,89,3,1,2018-12-29,0.16,2,26 +30822294,Extra Large Bedroom In Lively part of Astoria!,1218437,David,Queens,Ditmars Steinway,40.77611,-73.90818,Private room,40,20,1,2019-07-01,1,1,156 +30822664,New York Apartment Near Times Square & Broadway,88814777,Jill S,Manhattan,Hell's Kitchen,40.76225,-73.99106,Entire home/apt,145,6,10,2019-06-30,2.63,1,163 +30822815,NYC cozy studio,193490396,Luping,Manhattan,Roosevelt Island,40.7579,-73.95256,Entire home/apt,185,2,23,2019-06-24,3.37,1,295 +30823061,2BED in Williamsburg With Private Patio!,11061595,Emilie,Brooklyn,Williamsburg,40.70709,-73.9506,Entire home/apt,250,3,2,2019-05-27,0.31,1,10 +30823647,"Quaint, Artsy 1BD in Greenpoint",147256857,Samantha,Brooklyn,Greenpoint,40.7258,-73.94426,Private room,120,4,0,,,1,0 +30823651,Hotel living! Private large bedroom & bath!!,83490060,Annette,Bronx,Throgs Neck,40.81518,-73.82708,Private room,99,1,1,2019-01-05,0.16,1,318 +30823817,New York Lovely Quiet Room near to Time’s Square,137191484,Maria,Manhattan,Hell's Kitchen,40.76436,-73.98779,Private room,120,1,31,2019-06-21,4.67,5,321 +30824786,▲Private Cozy Room at Madison Square Garden▲,230574578,Haru,Manhattan,Chelsea,40.74946,-73.99614,Private room,75,2,17,2019-06-24,2.80,1,11 +30824804,hip Bed-Stuy large one bedroom,6097531,Scott,Brooklyn,Bedford-Stuyvesant,40.68462,-73.95429,Entire home/apt,180,3,1,2019-03-09,0.24,1,158 +30824853,Stunning apartment heart of Williamsburg 2bd/2ba,5503926,Giancarlo,Brooklyn,Williamsburg,40.71158,-73.96162,Entire home/apt,250,3,16,2019-06-30,2.35,1,271 +30825043,Real Brooklyn Apt on Pacific and New York,221623897,Matt,Brooklyn,Crown Heights,40.67683,-73.94702,Private room,30,5,2,2019-02-01,0.32,1,220 +30826725,Cool Vibes at Ace’s High End Apt.,20780113,Ace,Brooklyn,Canarsie,40.63168,-73.90895,Entire home/apt,114,2,21,2019-07-07,4.38,1,68 +30826777,"LIC网红楼Jackson Park沙发客厅 +Luxury apartment livingrm",204006071,呈刚,Queens,Long Island City,40.74751,-73.93744,Private room,45,3,4,2019-06-07,0.68,1,0 +30842198,"Quite and safe locations, 2 blocks from train stat",30377766,Julio,Queens,Jackson Heights,40.75549,-73.87731,Private room,100,1,1,2019-05-05,0.46,2,179 +30842262,Mid-century Modern Midtown 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Murray Hill,40.74488,-73.97389,Entire home/apt,271,30,0,,,232,60 +30848952,Cozy private room in the Upcoming Bronx,230646296,Cesar,Bronx,Concourse Village,40.83311,-73.9116,Private room,34,2,2,2018-12-26,0.29,1,0 +30850027,"New York, private gorgeous bedroom!",86078173,Gina,Brooklyn,Williamsburg,40.7077,-73.93855,Private room,85,5,2,2019-06-27,0.32,1,25 +30850215,wheelchair accessible apt near Columbia University,230653775,Jane,Manhattan,Morningside Heights,40.80672,-73.96547,Entire home/apt,150,4,2,2019-05-23,0.55,1,0 +30850620,BROOKLYN : PRIVATE ROOM +BATHROOM,27264437,Hortense,Brooklyn,Bedford-Stuyvesant,40.69534,-73.93338,Private room,50,6,1,2019-01-21,0.18,2,0 +30851304,Twice As Better Home Inn,227872371,Better Home,Queens,Springfield Gardens,40.66292,-73.76711,Entire home/apt,75,1,40,2019-07-04,6.19,2,300 +30851988,Gorgeous please! Perfect for couple or two friends,111911758,Isaac,Queens,Astoria,40.75796,-73.91347,Private room,70,5,3,2019-06-14,2.43,1,69 +30852631,Tiny bedroom in Williamsburg - Brooklyn,15788530,Diana,Brooklyn,Williamsburg,40.71847,-73.94509,Private room,60,4,1,2019-01-01,0.16,2,0 +30852793,Spacious Room with natural light in Forest Hill,206025860,Angelina,Queens,Forest Hills,40.72223,-73.84647,Private room,37,1,1,2019-01-01,0.16,1,249 +30852891,BEAUTIFUL 2 BEDROOM,133594005,Carmen,Staten Island,St. George,40.64762,-74.08682,Entire home/apt,135,3,3,2019-06-14,1.76,1,232 +30853297,Cozy place one minute from metro,12249166,Tianxia,Queens,Long Island City,40.74906,-73.9385,Private room,340,1,0,,,1,90 +30853505,"Clean, spacious 1BR, 1BA in heart of NYC",23746969,Mike,Manhattan,Kips Bay,40.74175,-73.98135,Entire home/apt,300,2,5,2019-04-14,0.78,1,193 +30853530,Cute and Cozy Bedroom in Northern Manhattan,21934258,Sonia,Manhattan,Harlem,40.82263,-73.9547,Private room,65,4,8,2019-05-27,1.70,1,0 +30853694,Entire Loft with a bedroom and walk-in closet,14276413,Sedef,Brooklyn,Bedford-Stuyvesant,40.69066,-73.95922,Entire home/apt,300,2,2,2019-01-01,0.30,1,0 +30854157,"Renovated pre-war flat, terrace, & garden",230683611,Melissa,Manhattan,Hell's Kitchen,40.76238,-73.99259,Entire home/apt,180,2,2,2019-02-21,0.32,1,0 +30854475,Luxury Brooklyn Stay,69226908,Chassity,Brooklyn,East Flatbush,40.63659,-73.94734,Private room,40,1,15,2019-06-30,2.37,1,90 +30855018,Demo listing - not real,137447960,Rohit,Queens,Astoria,40.76495,-73.92529,Entire home/apt,70,18,0,,,1,178 +30855529,Double Room in Upper East Side Apt - Central Park,226764496,A. Nicholas,Manhattan,Upper East Side,40.76588,-73.95834,Private room,80,1,32,2019-06-16,5.33,4,27 +30855904,NEWLY FURNISHED Luxury Studio at Park Avenue South,102763353,Krysia,Manhattan,Midtown,40.74248,-73.98434,Entire home/apt,160,30,1,2019-01-06,0.16,2,0 +30856336,Large Room and Windows in Cozy Crown Heights,230698955,Victoria,Brooklyn,Crown Heights,40.67119,-73.93468,Private room,45,1,0,,,2,0 +30856384,Cozy Crown Heights Studio,13501779,Alex,Brooklyn,Crown Heights,40.67188,-73.95049,Entire home/apt,85,3,0,,,2,0 +30856584,"Double Room in Upper East Side, near Central Park",226764496,A. Nicholas,Manhattan,Upper East Side,40.76499,-73.95831,Private room,80,1,29,2019-07-04,4.26,4,18 +30856920,Brooklyn Holiday Getaway Pad,22920335,Eric,Brooklyn,Bedford-Stuyvesant,40.68149,-73.91459,Entire home/apt,110,7,1,2019-01-03,0.16,1,189 +30857071,Luxurious Hell’s Kitchen! Vibrant Famous NYC!,7985095,Douglas,Manhattan,Hell's Kitchen,40.76547,-73.99032,Entire home/apt,285,2,5,2019-07-02,1.40,3,44 +30857261,"Bright and airy close transport, left side",230108889,Malca,Queens,Kew Gardens Hills,40.71843,-73.81266,Private room,49,4,6,2019-07-06,0.95,2,111 +30857450,Cozy bedroom in Bed-Stuy area!,93520536,Jessenia,Brooklyn,Bedford-Stuyvesant,40.68094,-73.9086,Private room,60,3,9,2019-06-29,1.43,1,20 +30857971,Luxury apartment in UES,39548500,Silvio,Manhattan,Upper East Side,40.779,-73.95298,Entire home/apt,300,3,4,2019-02-17,0.65,1,0 +30858685,Brooklyn the the way it should be,230712429,Matthew,Brooklyn,Bay Ridge,40.62611,-74.02213,Entire home/apt,90,1,0,,,1,0 +30859271,"Comfortable, Quiet, And A Good Night Sleep.",214678935,Kin,Brooklyn,Sunset Park,40.6465,-74.01454,Private room,55,1,14,2019-07-01,2.20,3,174 +30859838,Bright and stylish West Village gem,46389451,Martin,Manhattan,West Village,40.73245,-74.00328,Entire home/apt,190,3,13,2019-06-25,2.36,3,115 +30860048,comfortable room with cheap fee,230720666,Xiao,Manhattan,Financial District,40.70612,-74.01585,Private room,80,3,0,,,1,133 +30862301,Pvt entrance lower level apt w/cable-wi-fi pvt bth,22983583,Jannette,Queens,Woodhaven,40.69545,-73.86084,Private room,30,2,8,2019-06-09,1.76,1,0 +30875053,INCREDIBLE 1-BEDROOM IN MANHATTAN TOO,230670970,Jenuine,Manhattan,Harlem,40.81573,-73.94036,Entire home/apt,195,30,2,2019-05-13,0.62,1,239 +30877996,NYC loft by the beach,31307082,Veronica,Staten Island,Arrochar,40.58957,-74.07666,Entire home/apt,100,2,18,2019-07-08,2.81,1,296 +30878695,BRIGHT BEAUTIFUL BROWNSTONE IN BROOKLYN,66913051,Amy,Brooklyn,Williamsburg,40.71792,-73.94172,Entire home/apt,160,1,4,2019-01-20,0.59,1,49 +30879375,Cozy one bedroom in the heart of Greenpoint!,159336961,Dylan,Brooklyn,Greenpoint,40.7242,-73.95126,Private room,100,1,18,2019-06-23,2.81,1,325 +30879761,Comfortable Suite/Apartment in Manhattan,25573498,Tong,Manhattan,Morningside Heights,40.80511,-73.96572,Entire home/apt,60,5,4,2019-02-20,0.59,1,0 +30881039,Bright and Spacious Brown Stone Apartment,38320446,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68295,-73.93942,Entire home/apt,150,4,0,,,1,18 +30881484,Modern Room in Brooklyn,73618889,Alex,Brooklyn,Bushwick,40.70069,-73.9384,Private room,65,1,14,2019-06-16,6.67,1,44 +30882631,"Private bedroom in BK community, w/ parking",3285978,Nicole,Brooklyn,Bedford-Stuyvesant,40.6999,-73.94406,Private room,50,1,3,2019-01-01,0.46,2,0 +30882745,Luxury Studio In Heart of Manhattan,141720257,Mayur,Manhattan,Financial District,40.71074,-74.00627,Entire home/apt,150,30,0,,,1,0 +30882893,Artsy spacious apartment 3 mins from Times Square,230807441,Kevin,Manhattan,Hell's Kitchen,40.75805,-73.99292,Entire home/apt,450,4,2,2019-06-16,0.32,1,158 +30882957,Greenpoint Light & Plant filled Apt mins from city,37147077,Ashli,Brooklyn,Greenpoint,40.73787,-73.95281,Entire home/apt,115,3,2,2019-02-18,0.32,1,0 +30883546,Amazing Roommate Share in Prime NY Near Transit!,230192510,Zach,Brooklyn,Fort Greene,40.69738,-73.97396,Private room,48,30,1,2019-06-14,1,25,59 +30884263,Discounted Cozy Downtown Unit - 3 Bedroom 2 baths,227494795,Marissa,Manhattan,Lower East Side,40.71955,-73.9861,Entire home/apt,499,2,15,2019-05-25,2.27,1,297 +30885018,"Country home in Manhattan, w/ fireplace, backyard!",3757699,Jeremiah,Manhattan,Upper West Side,40.79272,-73.97069,Entire home/apt,515,20,0,,,2,0 +30885287,2Beds Studio apartment in Prime Location,211549023,Studioplus,Manhattan,Midtown,40.74657,-73.98685,Entire home/apt,240,2,12,2019-06-03,2.00,13,304 +30885549,Room with Balcony in trendy Williamsburg,47739675,David,Brooklyn,Williamsburg,40.71792,-73.95312,Private room,500,28,1,2018-12-31,0.16,1,89 +30885754,Fantastic Modern Co-Living Space 4L-3,230192510,Zach,Brooklyn,Fort Greene,40.69629,-73.97397,Private room,48,30,1,2019-05-07,0.48,25,58 +30885792,Sunny Bedroom in Chelsea Beauty!,130476089,Lennon,Manhattan,Chelsea,40.74293,-73.99922,Private room,80,1,2,2019-03-11,0.48,2,0 +30885937,"Private Bedroom in 5,000 sq ft DoBro Penthouse",79946214,Gopal,Brooklyn,Downtown Brooklyn,40.68887,-73.9829,Private room,109,1,16,2019-06-14,2.53,1,66 +30886242,Spacious and Bright bedroom (females only!),43960739,Eliana,Manhattan,Washington Heights,40.8455,-73.93987,Private room,52,1,1,2019-06-01,0.79,2,0 +30887065,"Entire 1st floor, Easy commute to Manhattan",67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.69295,-73.93685,Entire home/apt,139,1,8,2019-06-14,1.36,9,134 +30887391,"Private bedroom in clean, quiet apartment",47779382,Kevin,Brooklyn,Bedford-Stuyvesant,40.69358,-73.93854,Private room,30,16,0,,,1,40 +30887578,2nd FL cozy apartment,67987135,Siyi,Brooklyn,Bedford-Stuyvesant,40.6917,-73.93842,Entire home/apt,145,1,11,2019-06-18,2.13,9,118 +30888271,Cozy Cypress Suite Convenient To Train & JFK ×,230801598,JuVita,Brooklyn,Cypress Hills,40.68426,-73.87461,Private room,80,1,10,2019-06-19,1.51,1,32 +30888624,"Cozy 2 Bed Room Gramercy, New York",146607158,Jason,Manhattan,Kips Bay,40.73879,-73.98135,Entire home/apt,220,2,1,2018-12-19,0.15,1,0 +30890018,Private room in brand new apartment in HK,4491717,Goran,Manhattan,Hell's Kitchen,40.76132,-73.99443,Private room,180,3,1,2019-01-01,0.16,1,341 +30891437,Global Sanctuary ~Brooklyn Private Room,88036082,DaNeilia,Brooklyn,East Flatbush,40.64115,-73.92837,Private room,70,1,0,,,2,0 +30891733,BEAUTIFUL AND SPACIOUS STUDIO CLOSE TO LGA AND JFK,230584533,Sonia,Queens,Corona,40.745,-73.85927,Entire home/apt,99,1,64,2019-07-04,9.50,1,329 +30892041,Park Slope / Spacious and Comfy / Perfect Location,4631381,Merve,Brooklyn,Park Slope,40.67801,-73.97951,Entire home/apt,220,20,0,,,1,24 +30892407,Renovated 1 bedroom Near Subway to Manhattan & JFK,230868224,Carl,Queens,Richmond Hill,40.70279,-73.82576,Entire home/apt,61,2,32,2019-07-01,4.71,1,75 +30898965,Great views of the city,11510329,Angelica,Manhattan,Kips Bay,40.74103,-73.97451,Entire home/apt,180,4,2,2019-03-31,0.56,1,4 +30901275,The Den - 3 mins to JFK,223846870,Shared Stay-JFK The Hugh Suite,Queens,Springfield Gardens,40.66284,-73.76962,Private room,45,1,17,2019-06-11,2.60,3,0 +30902549,River View Apartment,44628416,Max,Manhattan,Washington Heights,40.85573,-73.93987,Entire home/apt,140,2,12,2019-06-18,1.89,1,122 +30902832,"Private and spacious room, 15 mins to Times Square",3307004,Vikas,Manhattan,Harlem,40.82384,-73.94776,Private room,99,4,2,2019-06-15,0.32,1,24 +30903214,Home Away From Home,229306781,Terrioma,Brooklyn,Crown Heights,40.67428,-73.91986,Private room,70,1,2,2018-12-28,0.30,1,73 +30903481,"Private room in Safe & Quite Greenpoint, Brooklyn",33839663,Mike,Brooklyn,Greenpoint,40.72574,-73.93785,Private room,60,5,5,2019-05-21,1.16,2,133 +30903797,Luxury Apartement in Manhattan,42322216,David,Manhattan,Financial District,40.70947,-74.01329,Entire home/apt,250,5,0,,,1,0 +30904197,Room in the Lower East Side,230941034,James,Manhattan,Lower East Side,40.71898,-73.98347,Private room,85,2,14,2019-06-18,2.27,1,357 +30904215,Gorgeous Penthouse in Chelsea / Meatpacking!,104364388,Chris,Manhattan,Chelsea,40.7413,-74.00429,Entire home/apt,350,30,11,2019-06-12,1.91,1,275 +30904692,Room Available in Crown Heights,164692370,Jared,Brooklyn,Crown Heights,40.67405,-73.95264,Private room,31,14,2,2019-03-19,0.34,1,0 +30904806,Entire Apartment in Astoria,196915362,Janna,Queens,Astoria,40.76804,-73.92161,Entire home/apt,190,5,1,2019-01-01,0.16,2,55 +30905035,Well located studio in the heart of NYC.,221418152,Abdiaziz,Manhattan,Harlem,40.80602,-73.95508,Entire home/apt,180,1,24,2019-07-05,3.79,1,85 +30905264,The Williamsburg Urban Haven,230961710,Dana,Brooklyn,Williamsburg,40.71408,-73.95501,Entire home/apt,60,1,37,2019-07-07,5.66,1,234 +30905265,Composer's Atelier in the Heart of Brooklyn,44354001,Silvio,Brooklyn,Bedford-Stuyvesant,40.69018,-73.93118,Private room,38,1,1,2019-01-03,0.16,1,0 +30906210,Newly Renovated Doorman Apt. with Great Amenities,10672594,Eduard,Queens,Long Island City,40.74827,-73.94557,Entire home/apt,210,3,1,2019-01-01,0.16,1,0 +30906267,XL cozy bedroom with separate entrance,40317143,Zsofia,Queens,Maspeth,40.72223,-73.90264,Private room,68,1,0,,,2,133 +30906400,Stylish Manhattan penthouse with private rooftop,11449978,Gwen,Manhattan,Harlem,40.82166,-73.94635,Entire home/apt,350,4,17,2019-05-07,2.59,1,23 +30907262,Spacious One-bedroom Home in Columbia U,215116298,冉阳,Manhattan,Morningside Heights,40.80449,-73.96426,Entire home/apt,80,14,0,,,1,0 +30907275,Cozy Brooklyn Loft,105221828,Tk,Brooklyn,Bedford-Stuyvesant,40.68124,-73.90797,Private room,60,2,1,2019-04-21,0.38,1,0 +30907441,Willimsburg Deluxe Studio,32874565,Madison,Brooklyn,Williamsburg,40.71763,-73.95334,Entire home/apt,125,15,1,2019-01-02,0.16,1,285 +30907448,Cozy bedroom with good location,225659661,Mariana,Brooklyn,Williamsburg,40.71528,-73.95033,Private room,120,2,0,,,1,89 +30908379,Charming 3bed/2 bath Apt near Central Park,230481249,Yocasta,Manhattan,East Harlem,40.80239,-73.9425,Entire home/apt,155,2,18,2019-07-02,2.73,1,123 +30908416,Sunny Greenpoint Apartment 5 Min Walk To Nassau G,25812202,Leah,Brooklyn,Greenpoint,40.72554,-73.94781,Private room,45,14,2,2019-06-25,0.32,1,21 +30908613,Room in bushwick!,192189607,Niki,Brooklyn,Bushwick,40.7037,-73.92659,Private room,60,4,0,,,2,22 +30908640,Alphabet City!! Entire Apartment!,7544635,Stephen,Manhattan,East Village,40.72747,-73.98409,Private room,175,3,0,,,2,0 +30908766,Modern Studio Apartment near transportation,16089151,Sahla,Queens,Queens Village,40.72219,-73.73605,Entire home/apt,85,2,17,2019-06-24,2.63,1,14 +30908886,Chic and Lofty Studio Apartment in heart of SoHo,24755227,Mic,Manhattan,SoHo,40.7271,-74.00286,Entire home/apt,109,6,5,2019-07-01,0.84,1,9 +30909031,Your 2 bedroom home in Brooklyn.,79355506,Eriola,Brooklyn,Fort Hamilton,40.62113,-74.03037,Entire home/apt,98,5,1,2019-01-01,0.16,1,23 +30909287,Luxury Apartment in Lower East Side,22323,Arnaud,Manhattan,East Village,40.72324,-73.9769,Entire home/apt,400,1,2,2018-12-30,0.30,1,0 +30910712,[New] Manhattan-Hell's Kitchen Private Studio,231003106,Joe,Manhattan,Hell's Kitchen,40.76428,-73.98988,Entire home/apt,125,2,22,2019-06-23,3.55,1,230 +30910732,"Spacious bright 4 bedrm Manhattan home, elevator!",59051417,Kai,Manhattan,East Harlem,40.79611,-73.94906,Entire home/apt,750,3,5,2019-06-05,0.78,6,249 +30911300,Charming Quiet Upper East Side Studio!,231007291,Samantha,Manhattan,Upper East Side,40.77382,-73.9535,Entire home/apt,160,2,6,2019-07-01,0.95,1,11 +30911893,"Modern, bohemian 1 bedroom apt in Williamsburg",19478720,Alex,Brooklyn,Williamsburg,40.71942,-73.95993,Entire home/apt,125,21,2,2019-05-16,0.50,1,81 +30912190,Harmony Guestsuite 10 mins from JFK & Mall,222946997,Shiniqua,Queens,Springfield Gardens,40.68789,-73.75117,Entire home/apt,93,1,24,2019-07-03,3.64,1,19 +30912539,Spacious Home Centrally located Near Downtown,231015527,Demi,Brooklyn,Prospect Heights,40.68056,-73.97251,Entire home/apt,275,2,5,2019-04-01,0.85,1,0 +30912652,Gorgeous Flat with Priv Patio Steps from 42nd/34th,17139611,Nina,Manhattan,Hell's Kitchen,40.75718,-73.99807,Entire home/apt,375,3,1,2019-01-01,0.16,1,0 +30912673,Williamsburg Penthouse,50760546,CRNY Monthly Rentals,Brooklyn,Williamsburg,40.70885,-73.96767,Entire home/apt,250,180,0,,,31,173 +30912712,cute studio apartment upper east side,231017568,Meli,Manhattan,Upper East Side,40.78415,-73.95248,Entire home/apt,100,30,0,,,1,99 +30913224,"Cozy and Sunny Room Williamsburg, Luxury Building",33771081,Rémy,Brooklyn,Williamsburg,40.70959,-73.94652,Private room,80,3,2,2019-05-08,0.31,1,0 +30913411,Gorgeous and spacious 1 BR in Nomad new listing,150424721,Kris,Manhattan,Chelsea,40.74531,-73.99098,Entire home/apt,299,3,1,2019-07-01,1,1,155 +30913615,Cute room for single traveler,33238800,Ayzhan,Manhattan,Hell's Kitchen,40.76568,-73.9876,Private room,100,1,35,2019-06-30,5.59,1,82 +30913799,Spacious bedroom near Central Park/Columbus Circle,87505316,Litri,Manhattan,Upper West Side,40.76927,-73.98477,Private room,90,3,5,2019-05-03,0.77,1,1 +30914075,Room in big and light Prospect Heights apartment,16333280,Hanna,Brooklyn,Prospect Heights,40.67452,-73.96618,Private room,55,2,4,2019-05-12,0.65,1,0 +30914114,Beautiful and cozy street view 1BR in W Village,54501105,Sophie,Manhattan,West Village,40.7328,-74.00468,Entire home/apt,180,3,15,2019-06-08,2.68,2,166 +30914235,Cozy Charming Room in South Slope 1 Min to METRO,51913277,Andrada And Alex,Brooklyn,Sunset Park,40.66182,-73.99805,Private room,45,2,13,2019-07-03,4.59,1,37 +30915138,Private Bedroom in Upper East Side-Central Park,226764496,A. Nicholas,Manhattan,Upper East Side,40.76574,-73.9583,Private room,80,1,5,2019-06-03,0.74,4,2 +30915351,"New Listing, 5 ☆ Host! Sunny, Quiet Lovely Flat!",226124574,Stephane & Mike,Manhattan,Upper East Side,40.77199,-73.94929,Entire home/apt,153,2,3,2019-06-08,0.81,1,274 +30915587,"Center of Flushing 2, Queens, Near Sheraton Hotel",169472089,Betty,Queens,Flushing,40.75974,-73.83399,Private room,80,5,0,,,2,89 +30916118,Large and cozy room in the heart of Manhattan,221934669,Tanya,Manhattan,Midtown,40.74981,-73.98585,Private room,350,1,7,2019-06-23,1.07,2,0 +30923312,700sf One Bedroom Loft in the Clouds,30214050,Alexandra,Brooklyn,Williamsburg,40.7131,-73.95044,Entire home/apt,125,5,1,2019-01-02,0.16,1,0 +30924308,Rooftop Oasis in Brooklyn for Shoots & Gigs,231091048,Stephanie,Brooklyn,Bedford-Stuyvesant,40.68984,-73.95864,Entire home/apt,600,3,1,2019-01-03,0.16,1,66 +30924783,STEPS FROM BALL DROP IN TIME SQR! Sleeps up to 8!,89407287,Cole,Manhattan,Midtown,40.76421,-73.97977,Entire home/apt,1000,1,0,,,1,0 +30925552,San Carlos Hotel One Bedrm Suite (B) up to 5,173685298,Janet,Manhattan,Midtown,40.7564,-73.97242,Private room,425,1,1,2019-01-01,0.16,11,180 +30925627,Sweet 2 BR sublet in Brooklyn,41191579,Maura,Brooklyn,Crown Heights,40.66856,-73.93937,Entire home/apt,88,30,1,2019-03-31,0.30,3,34 +30925647,Private room 20 minutes away from Manhattan,184641438,Saly,Queens,Sunnyside,40.74194,-73.91787,Private room,65,1,4,2019-06-03,0.59,2,341 +30927349,Brand new Luxury & Spacious 2-Bedroom Apt in FiDi,230257556,Nan,Manhattan,Financial District,40.70559,-74.00669,Entire home/apt,420,2,20,2019-06-09,3.02,1,76 +30927746,Apt walk distance to Central Park+ 15 min Times Sq,66807700,Gabi,Manhattan,East Harlem,40.79469,-73.94351,Entire home/apt,220,2,3,2019-06-09,0.45,3,9 +30927844,Cost-effective nice room near Columbia University!,138349238,韦达,Manhattan,Upper West Side,40.80146,-73.96076,Private room,1350,1,0,,,1,365 +30928305,Mesmerized Penthouse,213781715,Anting,Manhattan,NoHo,40.72886,-73.99139,Entire home/apt,179,1,0,,,33,364 +30928513,Cozy Room A,213781715,Anting,Brooklyn,Greenpoint,40.73132,-73.95036,Private room,119,1,0,,,33,180 +30928769,Cozy Room B,213781715,Anting,Brooklyn,Greenpoint,40.73095,-73.95131,Private room,89,1,0,,,33,180 +30929071,Stylish 2 Bedroom in Brooklyn + A Cat,231123296,Colleen,Brooklyn,Bedford-Stuyvesant,40.6952,-73.94412,Entire home/apt,175,2,1,2019-01-02,0.16,1,0 +30929123,Beautiful furnished bedroom in Crown Heights!!!,53058139,Terence,Brooklyn,Crown Heights,40.6685,-73.95364,Private room,100,5,0,,,1,69 +30929724,1 bedroom SOHO flat with sunny views,230503468,Robert,Manhattan,SoHo,40.72628,-74.00236,Entire home/apt,380,2,12,2019-04-16,1.89,1,0 +30929887,Spacious private room 15 min from Manhattan,145662625,Alena,Queens,Long Island City,40.76381,-73.93477,Private room,45,3,2,2019-02-17,0.38,1,5 +30929920,Corner Beach Front House!,56394959,Li,Queens,Arverne,40.58847,-73.79102,Private room,300,2,3,2019-04-16,0.47,1,133 +30930476,"Bright, Spacious 3BR/2BA in East Village, groups",227995389,Jackson,Manhattan,East Village,40.72375,-73.98188,Entire home/apt,443,1,30,2019-07-02,4.92,1,165 +30930863,Spacious Master Bedroom in Harlem,231133484,Nicole,Manhattan,Harlem,40.81963,-73.93879,Private room,50,1,3,2019-01-02,0.47,1,0 +30930990,Great location in midtown east!!!!,170223089,Dor,Manhattan,Midtown,40.76011,-73.97051,Entire home/apt,116,2,28,2019-07-01,4.57,1,99 +30931406,Gym+rooftop+pool. Lux private room,222900797,Emily,Manhattan,Upper East Side,40.76284,-73.96507,Private room,119,3,32,2019-06-21,5.22,1,239 +30932134,Winter wonderland in heart of Manhattan 32 & 5!,14210435,Liz,Manhattan,Midtown,40.74733,-73.98447,Private room,180,3,0,,,1,179 +30932198,Amazing location in SOHO! Make your visit GREAT!,11286990,Grace,Manhattan,SoHo,40.72725,-74.00288,Entire home/apt,225,2,9,2019-06-30,2.08,1,11 +30932236,Large 1920s home W/Parking | 20 mins from Midtown.,29854797,Michael,Bronx,Claremont Village,40.84145,-73.91027,Entire home/apt,150,3,29,2019-07-06,4.70,1,109 +30932555,[New] Hell's Kitchen/Time SQ Private One Bed Room,231144414,Matthew,Manhattan,Hell's Kitchen,40.76326,-73.98582,Entire home/apt,179,2,17,2019-06-20,4.77,1,229 +30933535,Chic 2 bedroom just a train ride away from NYC,230517521,Vincent,Queens,Ridgewood,40.69913,-73.90831,Entire home/apt,200,2,1,2019-06-30,1,1,0 +30933599,Gorgeous Bedroom in spacious Brooklyn apt,17259675,Christine,Brooklyn,Bushwick,40.70018,-73.91573,Private room,60,1,3,2019-03-17,0.48,1,0 +30934007,Bohemian getaway in NYC,230009785,Aurelia,Manhattan,Chinatown,40.71581,-73.99056,Entire home/apt,280,2,0,,,1,1 +30934310,AMAZING E. VILLAGE STUDIO-LONGTERM starting Aug 10,726197,Ana Maria,Manhattan,East Village,40.7243,-73.98255,Entire home/apt,129,15,0,,,1,332 +30934838,Prospect Park Family Townhouse,231157284,Cecilia,Brooklyn,Windsor Terrace,40.65463,-73.97536,Entire home/apt,300,2,0,,,1,35 +30935446,Private Bedroom next to Times Square,231161473,Lorenzo,Manhattan,Hell's Kitchen,40.76194,-73.99122,Private room,83,2,1,2018-12-23,0.15,1,0 +30935520,WEST VILLAGE GEM - LARGE BRIGHT 1BR W/KING BED,6151483,Marc,Manhattan,West Village,40.73693,-74.0023,Entire home/apt,300,4,8,2019-07-01,1.28,1,21 +30935679,Ashly’s apartment,231163395,Ashly,Manhattan,Harlem,40.82206,-73.93799,Private room,1000,30,0,,,1,90 +30936253,Upper West Side Spacious Cozy Bedroom,17875227,Reem,Manhattan,Upper West Side,40.79977,-73.96198,Private room,55,5,4,2019-03-17,0.59,1,3 +30937306,Hart Street Garden Apartment,34119511,Charles,Brooklyn,Bedford-Stuyvesant,40.69406,-73.93321,Private room,30,2,1,2018-12-23,0.15,1,0 +30937590,Sonder | The Nash | Artsy 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74792,-73.97614,Entire home/apt,262,2,8,2019-06-09,1.86,327,91 +30937591,Sonder | The Nash | Lovely Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74771,-73.97528,Entire home/apt,255,2,14,2019-06-10,2.59,327,81 +30937594,Sonder | The Nash | Brilliant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74845,-73.97446,Entire home/apt,245,2,4,2019-06-08,0.94,327,137 +30937595,Sonder | 11th Ave | Bright 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76188,-73.99616,Entire home/apt,185,29,1,2019-06-20,1,327,281 +30937596,Sonder | 11th Ave | Contemporary 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76037,-73.99744,Entire home/apt,185,29,1,2019-06-10,1,327,332 +30937597,Sonder | The Nash | Pristine Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74884,-73.97589,Entire home/apt,252,2,7,2019-06-23,1.19,327,117 +30937598,Sunny 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76079,-73.99807,Entire home/apt,189,29,1,2019-06-08,0.94,327,325 +30937740,Sonder | The Nash | Airy Studio + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74896,-73.97472,Entire home/apt,228,2,5,2019-06-19,0.91,327,111 +30937747,Sonder | The Nash | Bohemian Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74737,-73.9742,Entire home/apt,240,2,4,2019-06-01,1.06,327,99 +30937750,Sonder | The Nash | Simple Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97448,Entire home/apt,241,2,4,2019-06-03,1.30,327,130 +30937756,Sonder | The Nash | Creative 1BR + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97446,Entire home/apt,265,2,5,2019-06-12,1.21,327,83 +30937759,Sonder | The Nash | Bohemian 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74846,-73.97611,Entire home/apt,263,2,5,2019-05-18,0.99,327,62 +30937762,Sonder | The Nash | Charming Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74909,-73.97585,Entire home/apt,243,2,6,2019-06-21,1.09,327,153 +30937764,Sonder | The Nash | Polished Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74845,-73.97458,Entire home/apt,254,2,1,2019-04-11,0.34,327,159 +30937961,Cozy room in a great food-filled neighborhood,222654299,Irma,Queens,Elmhurst,40.74096,-73.87937,Private room,35,3,4,2019-06-16,0.76,1,310 +30938001,"Huge 400 sf BR, amazing location",6857284,Hadley,Brooklyn,Prospect Heights,40.6805,-73.97376,Private room,45,2,3,2019-01-30,0.49,1,0 +30938219,Beautiful Brooklyn Brownstone in Lefferts Gardens,2242911,Joshua,Brooklyn,Prospect-Lefferts Gardens,40.65928,-73.95431,Entire home/apt,200,30,0,,,1,0 +30938582,"Beautiful apartment in, steps from the train",231186389,A.M,Brooklyn,Flatbush,40.63379,-73.96246,Private room,40,53,0,,,1,90 +30938616,Charming NYC UpperWest Apartment,38013805,Corina,Manhattan,Upper West Side,40.79737,-73.96217,Entire home/apt,180,3,0,,,1,4 +30938629,"Penthouse Apartment in Williamsburg, Brooklyn",70143818,Alessandro,Brooklyn,Williamsburg,40.7194,-73.96374,Private room,80,3,4,2019-06-13,0.63,1,280 +30938769,Bright 1 Bedroom / Columbia & Morningside Heights,88774551,Megan,Manhattan,Morningside Heights,40.81325,-73.96122,Entire home/apt,80,3,1,2018-12-20,0.15,1,0 +30938864,"Large sunny bedroom in Astoria, Queens",6586697,Yasha,Queens,Astoria,40.76702,-73.90945,Private room,60,2,1,2019-01-05,0.16,3,51 +30939313,Funky sun-filled artist home near Fort Greene Park,129324501,Šara,Brooklyn,Fort Greene,40.68908,-73.97309,Entire home/apt,115,2,1,2019-06-20,1,1,16 +30939405,Cozy 1 bedroom in Upper East Side,71867363,Sarah,Manhattan,Upper East Side,40.77349,-73.95658,Entire home/apt,235,3,7,2019-06-24,1.14,1,0 +30939599,Small room in NOLITA Artist Tenement APT,866089,Launa,Manhattan,Little Italy,40.71943,-73.99712,Private room,150,5,1,2019-01-02,0.16,3,0 +30939678,Queen Bed in Beautiful Clinton Hill,65775049,Nicole,Brooklyn,Clinton Hill,40.68873,-73.96133,Private room,100,5,1,2018-12-19,0.15,2,6 +30940247,Naturally-lit Loft in Williamsburg by NÔM Stays,732460,Nôm,Brooklyn,Williamsburg,40.71004,-73.96781,Entire home/apt,120,29,0,,,7,0 +30940394,Clean Central Spacious One Bedroom Home,231141701,Oliver,Manhattan,Midtown,40.7506,-73.98882,Entire home/apt,199,1,5,2019-05-09,1.43,1,0 +30940780,Waterfront Room with Manhattan View and Balcony,6983558,Ben,Manhattan,Roosevelt Island,40.76358,-73.94761,Private room,150,2,14,2019-07-07,2.25,1,7 +30940831,Bohemian 1-bedroom in Williamsburg,77825548,Rafe,Brooklyn,Williamsburg,40.70379,-73.94329,Private room,100,1,1,2018-12-30,0.16,1,0 +30941062,Cozy & Clean private bedroom in Columbus Circle.,221591996,Sehwan,Manhattan,Hell's Kitchen,40.76732,-73.98482,Private room,89,5,2,2019-01-09,0.32,1,0 +30941095,Minutes to Manhattan,69713712,Trevor,Bronx,Hunts Point,40.81389,-73.88914,Private room,70,2,1,2018-12-30,0.16,1,342 +30941454,Spacious 1 bedroom in Bensonhurst - Sleeps 4,231212364,Kel,Brooklyn,Bensonhurst,40.6065,-73.99917,Entire home/apt,113,3,13,2019-05-27,2.07,2,118 +30941744,Simple studio,76388052,Xochilth,Manhattan,Harlem,40.82211,-73.93887,Entire home/apt,85,4,0,,,1,3 +30942018,Overnight Bed by Central Park New York City,231216524,Chase,Manhattan,Hell's Kitchen,40.7656,-73.98822,Shared room,80,1,18,2019-06-12,2.67,5,48 +30942047,Holiday Get Away,19902999,Jose,Manhattan,Midtown,40.75914,-73.9798,Entire home/apt,150,1,1,2018-12-31,0.16,1,0 +30942778,Share a Lg Studio room* 2 blocks subway* Bronx Zoo,1532337,Monica,Bronx,Van Nest,40.84047,-73.87127,Shared room,20,14,1,2019-05-08,0.48,4,139 +30943186,"25 minutes from Manhattan, shared room bunk beds",208367810,Dan,Brooklyn,Borough Park,40.63987,-73.99578,Shared room,40,3,2,2019-04-08,0.55,4,50 +30945324,Luxurious Private Sunny LES Full Floor Loft - NYC,1121064,Julie,Manhattan,Lower East Side,40.71909,-73.99343,Entire home/apt,499,1,18,2019-06-30,2.83,1,356 +30948025,⭐️ Luxury Studio with modern finishes ⭐️,193626078,Andy,Bronx,Williamsbridge,40.87701,-73.86282,Entire home/apt,200,1,34,2019-07-07,5.13,3,347 +30948183,One bedroom in 2 bedroom apartment,4333342,Megan,Manhattan,East Village,40.72712,-73.97803,Private room,75,1,15,2019-06-29,2.88,2,0 +30948241,Book NOW this New 3br Home with lots of space.,193626078,Andy,Bronx,Belmont,40.85222,-73.89277,Entire home/apt,299,1,10,2019-06-28,1.52,3,322 +30949075,Shared room for 2 persons 15 sec away from Mtrain,133802988,Sergii,Queens,Ridgewood,40.70482,-73.90342,Shared room,40,30,0,,,6,365 +30949331,Private room with queen-size bed! M and L trains,133802988,Sergii,Queens,Ridgewood,40.70487,-73.90354,Private room,57,30,0,,,6,365 +30950186,Classic Brownstone Living in historic BROOKLYN,195418702,Megan,Brooklyn,Bedford-Stuyvesant,40.68353,-73.93566,Entire home/apt,450,3,0,,,1,357 +30950513,5 Star Manhattan Luxury St. Regis Hotel King Suite,26556695,Alyssa,Manhattan,Midtown,40.76042,-73.97504,Entire home/apt,1075,1,4,2019-02-18,0.61,6,365 +30950564,"My roomie is in Hawaii for 1 month, I'm on Airbnb",231272145,Joseph,Brooklyn,Bedford-Stuyvesant,40.68214,-73.92159,Private room,55,1,1,2018-12-30,0.16,2,0 +30950573,Brooklyn 3 persons shared room close to subway,17706542,Sergey,Brooklyn,Bushwick,40.6919,-73.90626,Shared room,32,30,0,,,6,342 +30950765,great Location with a fireplace balcony &rooftop,16105313,Debra,Manhattan,Midtown,40.74484,-73.98355,Entire home/apt,150,20,0,,,2,157 +30950818,"1 Bedroom, Comfortable Large Brownstone apt",85165113,LaTasha,Brooklyn,Bedford-Stuyvesant,40.68358,-73.91775,Entire home/apt,50,3,11,2019-07-03,1.69,2,26 +30951321,Luxurious Bushwick house 3person room near subway,17706542,Sergey,Brooklyn,Bushwick,40.69101,-73.9066,Shared room,32,30,0,,,6,330 +30951804,"Serene, Super-Sized Oasis in Bed Stuy",37728210,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68805,-73.92599,Private room,175,2,0,,,1,83 +30952008,Amazing 2 person shared room close to subway!!!,17706542,Sergey,Brooklyn,Bushwick,40.69102,-73.90525,Shared room,40,30,0,,,6,365 +30952896,Spacious 2 person shared room high near subway,17706542,Sergey,Brooklyn,Bushwick,40.69028,-73.90563,Shared room,40,30,0,,,6,365 +30953126,"Heavenly private room near subway line J,Z,M",17706542,Sergey,Brooklyn,Bushwick,40.69096,-73.90528,Private room,55,30,0,,,6,365 +30953535,Artist Apartment in EastVillage,2139368,Alexander,Manhattan,East Village,40.7289,-73.98091,Entire home/apt,175,5,1,2019-01-01,0.16,1,0 +30954420,Artistic apartment in the Heart of Manhattan,231298987,Austin,Manhattan,Lower East Side,40.7189,-73.98599,Entire home/apt,200,4,1,2019-03-16,0.26,1,0 +30954828,Clean and Cozy 1 Bedroom Apartment in LES,90230216,Ellen Fannie,Manhattan,Lower East Side,40.71966,-73.98184,Entire home/apt,102,2,2,2019-01-01,0.30,1,0 +30955020,"Shared place in Hell’s Kitchen, Midtown West!",197190247,Jacob,Manhattan,Hell's Kitchen,40.76389,-73.98671,Shared room,99,1,7,2019-06-14,1.04,7,33 +30955179,Beautiful Family Apt close to Broadway Station N/W,231303544,Erica,Queens,Astoria,40.76551,-73.92904,Entire home/apt,200,2,23,2019-06-30,3.50,1,265 +30955204,"Large bedroom and private bath, astoria, NY",134741341,Sofia,Queens,Astoria,40.77522,-73.93014,Private room,55,7,2,2019-04-28,0.33,2,0 +30955422,"HUGE warm sunny room in Clinton Hill, Brooklyn",12012671,Zahava,Brooklyn,Bedford-Stuyvesant,40.69266,-73.96046,Private room,65,5,1,2018-12-19,0.15,1,0 +30955962,Fabulous studio apartment 12 mins to Manahattan,116742660,Clinton,Queens,Astoria,40.76837,-73.92007,Entire home/apt,140,4,3,2019-06-03,0.48,1,101 +30956743,1BR Park Slope Apt w/ Private Backyard,87859431,Melysa,Brooklyn,Park Slope,40.68087,-73.97871,Entire home/apt,100,2,2,2019-02-17,0.31,1,1 +30956885,Entire Loft Apartment in Soho/NoHo/Nolita,96049478,Lida,Manhattan,NoHo,40.72604,-73.99342,Entire home/apt,550,7,4,2019-05-13,1.38,1,14 +30957964,Javits center 1 bedroom,231322933,Marisa,Manhattan,Hell's Kitchen,40.75605,-73.99711,Entire home/apt,134,1,33,2019-06-23,5.08,1,20 +30958404,Safe and lively South Harlem Condo with doorman.,231267860,Joseph,Manhattan,Harlem,40.80798,-73.95544,Private room,150,2,12,2019-06-29,4.04,1,184 +30958416,Sunny East Williamsburg Apartment,25612580,Josh,Brooklyn,Williamsburg,40.70721,-73.93843,Entire home/apt,105,2,14,2019-06-27,3.96,1,144 +30958452,Great Room in Heart of Williamsburg,14819229,Tim,Brooklyn,Williamsburg,40.71332,-73.95591,Private room,75,4,1,2019-05-13,0.53,1,47 +30958558,Sunny & Clean- Soho/west village loft,231327254,Candy,Manhattan,Greenwich Village,40.72699,-73.99933,Entire home/apt,250,3,22,2019-06-24,3.53,1,244 +30958706,Modern 2BD Plus Movie screening room-Alphabet City,17413870,Ashley,Manhattan,East Village,40.72103,-73.9804,Entire home/apt,295,3,5,2019-07-01,0.80,1,140 +30958853,"Cozy room,25 minutes to Manhattan",32581689,Fnu,Brooklyn,Sunset Park,40.63818,-74.01918,Private room,32,3,1,2019-01-01,0.16,1,0 +30958980,Brooklyn Apartment Room for Monthly Sublet,53911974,Joshua,Brooklyn,Bushwick,40.69951,-73.91352,Private room,35,30,1,2019-05-31,0.77,1,0 +30959724,(UES) Entire Apartment Near Central Park,21154516,Kal,Manhattan,Upper East Side,40.77608,-73.94665,Entire home/apt,180,2,15,2019-06-23,3.06,1,57 +30960178,Room in AMAZING Williamsburg Apartment!,36213174,Brittney,Brooklyn,Williamsburg,40.70786,-73.95022,Private room,70,5,1,2019-01-02,0.16,1,0 +30961345,2-bedroom apartment on the Upper East Side,86534046,Sierra,Manhattan,Upper East Side,40.78228,-73.94715,Entire home/apt,130,1,4,2019-02-17,0.63,1,0 +30961373,Master Bedroom in Spacious Washington Heights Apt.,3737055,Emmanuel,Manhattan,Washington Heights,40.84457,-73.94065,Private room,60,1,34,2019-07-03,5.34,1,66 +30962126,CQ 1 Bedroom,30223355,Adrienne,Manhattan,Financial District,40.70706,-74.00991,Private room,3000,3,0,,,1,23 +30962509,2 Bedrooms with Harbor View,231352789,Farah,Staten Island,Stapleton,40.63448,-74.07837,Private room,85,2,26,2019-07-04,3.92,3,305 +30963889,Shared renovated cozy room in heart of the city.,231216524,Chase,Manhattan,Hell's Kitchen,40.76481,-73.98724,Shared room,80,1,19,2019-06-24,2.82,5,52 +30964040,"Beautiful shared place by Times Square, Midtown.",231216524,Chase,Manhattan,Hell's Kitchen,40.76333,-73.98806,Shared room,80,1,39,2019-06-24,5.82,5,22 +30964065,The Pearl of Midtown Manhattan,79472397,Ilia,Manhattan,Hell's Kitchen,40.75878,-73.99011,Entire home/apt,220,5,7,2019-06-19,1.53,1,22 +30964729,"Shared apt by Theater District, Broadway",231216524,Chase,Manhattan,Hell's Kitchen,40.76546,-73.98712,Shared room,80,1,24,2019-06-19,3.58,5,46 +30964891,Queen Size Room in the Heart of Upper East Side,16026189,Rob,Manhattan,Upper East Side,40.77581,-73.95072,Private room,120,2,7,2019-04-28,1.11,2,66 +30964898,Chic Brooklyn Apartment,14100888,Alexandra,Brooklyn,Prospect-Lefferts Gardens,40.66316,-73.95442,Entire home/apt,200,2,15,2019-04-24,2.30,1,0 +30965275,Basement in a Gorgeous Brooklyn Brownstone,231370569,Sharyn,Brooklyn,Bedford-Stuyvesant,40.69007,-73.94326,Private room,40,7,13,2019-06-26,2.39,1,93 +30965475,Cool Private Bedroom & Office/Living Room Bushwick,213069141,Evan,Brooklyn,Williamsburg,40.7033,-73.93583,Private room,60,2,1,2019-07-01,1,1,210 +30965544,Spacious sun-filled bedroom near Botanical Garden,23828476,Rosario,Bronx,Allerton,40.86437,-73.86047,Private room,80,3,4,2019-05-12,0.60,1,155 +30967230,manhattan 127 st and convent ave room 2,164886138,Eliahu,Manhattan,Harlem,40.81399,-73.95229,Private room,69,2,0,,,11,365 +30968359,Humble abode near Prospect Park,30770117,Chrystin,Brooklyn,Flatbush,40.65114,-73.96333,Entire home/apt,160,3,0,,,1,0 +30971850,Charming space in the heart of the East Village,6575362,Youmna,Manhattan,East Village,40.72918,-73.98154,Entire home/apt,180,1,0,,,1,188 +30973590,Designed 3-person shared room next to Wyckoff Ave,10994664,Alexander,Brooklyn,Bushwick,40.69078,-73.90504,Shared room,32,30,0,,,8,365 +30974737,*NO GUEST SERVICE FEE* Beekman Tower Two Bedroom #3,205031545,Red Awning,Manhattan,Midtown,40.75393,-73.96646,Entire home/apt,956,4,0,,,49,124 +30974895,Spacious shared room near L-train,10994664,Alexander,Brooklyn,Bushwick,40.6915,-73.90623,Shared room,32,30,0,,,8,355 +30975278,Light twin room,10994664,Alexander,Brooklyn,Bushwick,40.69241,-73.90692,Shared room,40,30,0,,,8,276 +30975610,Gorgeous 2 people shared room with great amenities,10994664,Alexander,Brooklyn,Bushwick,40.69213,-73.90548,Shared room,40,30,0,,,8,365 +30975764,"Walk toTimes Square,Central Park,Museums, Broadway",17450152,Tiba,Manhattan,Hell's Kitchen,40.76356,-73.98956,Entire home/apt,230,1,17,2019-06-23,4.21,5,282 +30976138,Cozy private room in EastBushwick near subway,10994664,Alexander,Brooklyn,Bushwick,40.6905,-73.90622,Private room,55,30,0,,,8,340 +30978169,"Large, sunny, and chic apt in historic Harlem",2279677,Phil,Manhattan,Harlem,40.80709,-73.95363,Private room,99,2,17,2019-07-07,2.54,1,43 +30978824,bushwick nook,22010249,Jose,Brooklyn,Bushwick,40.69114,-73.91158,Private room,70,3,15,2019-06-18,2.32,2,137 +30979146,"Classic brick, Ambient lighting Apt Heart of NYC",231456842,Brian,Manhattan,Hell's Kitchen,40.76111,-73.99461,Entire home/apt,139,2,5,2019-05-24,0.79,1,10 +30979178,Beautiful boutique studio near Central Park,106396058,Anna,Manhattan,Upper East Side,40.76607,-73.96165,Entire home/apt,135,25,1,2018-12-21,0.15,1,0 +30980172,Sunny and Spacious Charmer in S Williamsburg,900055,Dominic,Brooklyn,Williamsburg,40.70917,-73.9658,Entire home/apt,125,3,0,,,1,0 +30980594,A GEM IN NOHO,28720717,Albert,Manhattan,East Village,40.72288,-73.98344,Entire home/apt,350,3,2,2019-05-20,0.38,2,342 +30980752,Sunny home w/ beautiful views,41511227,Joe,Brooklyn,Gowanus,40.66744,-73.99254,Entire home/apt,99,2,1,2019-01-21,0.18,1,0 +30981245,Huge Artistic Downtown Loft - Designer Furniture,17981316,Kasra,Manhattan,Civic Center,40.71324,-73.99881,Entire home/apt,410,3,0,,,1,18 +30981877,The NYC Adventure,231474021,Cyn,Manhattan,East Harlem,40.78724,-73.9494,Private room,65,365,1,2019-05-17,0.57,1,0 +30982252,The Nest...,207078295,Michelle,Queens,Ozone Park,40.66736,-73.83457,Private room,60,1,0,,,1,364 +30982372,Magnificent Industrial Chic 3 Bedroom Loft,228231975,Beny & Maria,Brooklyn,Williamsburg,40.71733,-73.96145,Entire home/apt,450,1,12,2019-07-01,2.79,1,334 +30984634,Cozy Room in Crown Heights 0 minutes from transit,29301222,Aleecea,Brooklyn,Crown Heights,40.67005,-73.93276,Private room,33,29,0,,,1,0 +30984803,Bright Spacious 2Bedrooms private Apt in Bay Ridge,35253342,Tee,Brooklyn,Bay Ridge,40.63284,-74.02272,Entire home/apt,120,9,1,2019-05-20,0.60,3,3 +30984989,susan place,111091786,Susan,Brooklyn,East Flatbush,40.6499,-73.91499,Private room,60,3,2,2019-01-04,0.31,1,189 +30989033,Master suite in iconic Brooklyn brownstone,38609581,Lira,Brooklyn,Prospect Heights,40.67888,-73.97077,Private room,130,3,1,2019-01-02,0.16,2,0 +30994310,Great Deal! Sunny 2 Bedroom in Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73344,-73.95653,Entire home/apt,100,1,26,2019-06-01,4.67,6,0 +30995347,Bedroom close to Manhattan(BIG),43930499,Katherine,Queens,Elmhurst,40.7455,-73.89103,Private room,75,1,14,2019-06-28,5.38,2,256 +30998033,A beautiful huge quiet Brooklyn apartment.,231503052,Jack,Brooklyn,Sheepshead Bay,40.6001,-73.94974,Entire home/apt,199,3,16,2019-06-28,2.57,1,129 +30999038,"Amazing location, A gem in Soho two bedroom",231515893,Chris,Manhattan,SoHo,40.7274,-74.0026,Entire home/apt,183,2,35,2019-07-02,5.36,1,294 +30999134,Private Room in a Neo Hippie Art Apartment!,231192888,Kevin,Brooklyn,Bedford-Stuyvesant,40.69747,-73.94498,Private room,35,2,21,2019-07-06,3.33,1,100 +30999358,Living room at prime location,96379433,Satish,Brooklyn,Sunset Park,40.65924,-73.99685,Shared room,22,1,5,2019-01-14,0.81,2,0 +30999460,Sweet digs of Windsor,274296,Massimo,Brooklyn,Windsor Terrace,40.65554,-73.97932,Entire home/apt,104,3,30,2019-07-04,4.95,1,43 +31000518,Sunny Clean Modern 2BR w/ Private Roofdeck!,16145840,Nick,Manhattan,East Harlem,40.79745,-73.93834,Entire home/apt,100,2,1,2019-01-22,0.18,2,0 +31000800,U can have your private bathroom! @cozy area!,200239515,Shogo,Queens,Woodside,40.74288,-73.89488,Private room,40,30,0,,,15,22 +31000866,Beautiful apartment in Elmhurst,129124146,KImberly,Queens,Elmhurst,40.73399,-73.87351,Entire home/apt,150,3,2,2019-05-03,0.78,3,107 +31001555,5th Ave Luxury St. Regis NYC King Room Manhattan,26556695,Alyssa,Manhattan,Midtown,40.7608,-73.97391,Entire home/apt,820,1,1,2019-06-24,1,6,365 +31001961,Luxury Studio style room in Manhattan Brownstone,42676520,Andrew,Manhattan,Harlem,40.8072,-73.94747,Private room,69,1,61,2019-07-01,9.29,2,8 +31002413,Riverdale private room,231459188,Viktoria,Bronx,Fieldston,40.88796,-73.90473,Private room,49,1,3,2019-01-05,0.45,1,0 +31002659,"Best of NYC! Location and Lux Apt 1 Bed +& SofaBed",139479838,Sherry,Manhattan,Chelsea,40.7505,-73.99608,Entire home/apt,205,4,17,2019-07-02,3.40,1,44 +31002972,"Sunny, Plant-filled Apt in Manhattan’s Chinatown",1602948,Allie,Manhattan,Chinatown,40.71513,-73.99791,Entire home/apt,91,5,2,2019-05-30,0.33,1,1 +31003285,"City Views, Private Balcony, Clean, Private Bath",188230441,MyHomes,Queens,Flushing,40.75342,-73.83164,Private room,90,1,27,2019-06-17,4.09,1,29 +31012734,Stunning Central Chelsea 1BR w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.74228,-73.99488,Entire home/apt,306,30,0,,,232,343 +31013452,Clinton Hill loft,97843035,Lionel,Brooklyn,Bedford-Stuyvesant,40.69209,-73.95868,Entire home/apt,300,3,0,,,1,364 +31014013,Spacious & Sunny Bedroom in Bedstuy,53243644,Omri,Brooklyn,Bedford-Stuyvesant,40.69255,-73.93915,Private room,45,1,6,2019-01-20,0.97,2,3 +31014208,Bright & Airy East Village Penthouse w/ Terrace,8525142,Molly,Manhattan,East Village,40.72391,-73.97698,Entire home/apt,520,3,7,2019-06-30,1.14,1,80 +31014381,"LaGuardia airport, JFK airport, citi fields",231628393,Jing,Queens,Flushing,40.73129,-73.80416,Entire home/apt,58,2,19,2019-07-05,2.95,1,57 +31016809,Huge Williamsburg Loft,19948445,Megan,Brooklyn,Williamsburg,40.71173,-73.96487,Entire home/apt,220,5,0,,,1,89 +31017171,Beautiful,231648163,Awa,Brooklyn,Bedford-Stuyvesant,40.68054,-73.91775,Private room,80,2,0,,,1,365 +31017536,Spacious Beauty 1 Bedroom Apartment,9891348,Adelle,Manhattan,Kips Bay,40.74098,-73.98331,Entire home/apt,130,2,11,2019-07-06,1.76,1,4 +31017639,Cozy one-bedroom in Astoria!,227353438,Christina,Queens,Astoria,40.76412,-73.92055,Private room,70,2,1,2019-03-21,0.27,1,0 +31018202,Private Room in Bushwick Loft,88221919,Kate,Brooklyn,Williamsburg,40.70326,-73.9336,Private room,40,2,5,2019-04-04,1.30,1,0 +31018438,Charming 2 bedroom in Soho,231663345,Ana,Manhattan,Nolita,40.72316,-73.99577,Private room,399,3,7,2019-06-01,1.57,1,246 +31018826,SUNLIT OASIS,41059169,Alex,Brooklyn,Williamsburg,40.71159,-73.96318,Private room,118,2,4,2019-06-19,0.67,3,112 +31018857,Come feel at home,231667071,Leticia,Manhattan,Harlem,40.81734,-73.95428,Private room,100,7,0,,,1,365 +31018894,"Cozy, clean and quiet room in Bushwick.",28875304,Sebastian,Brooklyn,Bushwick,40.68991,-73.91349,Private room,37,2,8,2019-06-25,1.25,2,1 +31019621,Luxury on 5th Ave St. Regis 2 King BR Suite 5 Star,26556695,Alyssa,Manhattan,Midtown,40.76024,-73.97483,Entire home/apt,1999,1,0,,,6,365 +31020087,Charming 1BR by Washington Square Park Heart of NY,231675945,Alex,Manhattan,West Village,40.73236,-74.00213,Entire home/apt,370,3,20,2019-07-01,3.02,1,155 +31020399,"Newly Renovated Stylish Luxury 2 bedroom, first fl",231681941,Roberto,Bronx,West Farms,40.83942,-73.87518,Entire home/apt,165,2,4,2019-03-17,0.63,1,310 +31020675,Beautifully Renovated Small Mid Century Bedroom,152386567,Alexandra-Katherine,Manhattan,Lower East Side,40.72173,-73.9918,Private room,125,1,4,2019-07-07,0.79,2,165 +31021814,2nd bedroom still available for the holidays,231272145,Joseph,Brooklyn,Bedford-Stuyvesant,40.68098,-73.92229,Private room,105,1,0,,,2,0 +31022309,"Amazing View in luxury building, Time Square",90818631,Max,Manhattan,Hell's Kitchen,40.75943,-74.00018,Private room,99,3,6,2019-05-04,1.02,1,5 +31022359,Nice Room Sunnyside 15 min to Times Sq (AC/TV),222886357,Grace,Queens,Sunnyside,40.73711,-73.91955,Private room,35,1,37,2019-07-07,5.84,2,0 +31022770,1bdr apartment / 2 stops to Manhattan (D/N trains),98522037,Anna,Brooklyn,Sunset Park,40.64929,-74.00422,Entire home/apt,100,2,5,2019-06-05,0.82,1,0 +31022861,Private Room Best LES Location- Read Description!,49909186,Andrea,Manhattan,Chinatown,40.71687,-73.99074,Private room,150,4,12,2019-07-02,1.89,2,72 +31023868,"Bright, charming Fort Greene studio",108810117,Jaclyn,Brooklyn,Fort Greene,40.68941,-73.98098,Entire home/apt,175,3,4,2019-07-07,0.63,1,9 +31023979,Mother & Daughter bnb-Brooklyn,231719679,Mother & Daughter,Brooklyn,East Flatbush,40.63846,-73.92892,Entire home/apt,75,1,27,2019-07-06,4.26,1,185 +31025081,Gorgeous NYC Hideout 20min to Times Square,87833104,Konni,Queens,Sunnyside,40.7426,-73.92318,Entire home/apt,85,4,3,2019-03-14,0.56,1,12 +31025252,Gorgeous Room in Lux Apt: Prime Upper East!,184670155,James,Manhattan,Upper East Side,40.77564,-73.94551,Private room,100,1,10,2019-03-30,1.69,2,0 +31028269,Spacious Sun-drenched two bedroom APT,5715157,Chafiq,Brooklyn,Clinton Hill,40.69303,-73.96196,Entire home/apt,200,1,19,2019-06-29,2.94,1,285 +31032487,Share Lg studio rm b2*2 blocks subway *Bronx Zoo,1532337,Monica,Bronx,Van Nest,40.84119,-73.87049,Shared room,20,10,2,2019-06-30,0.32,4,114 +31035022,Lovely Bushwick Garden Apartment,48325116,Marcela,Brooklyn,Bushwick,40.69157,-73.91288,Entire home/apt,155,2,1,2019-06-19,1,1,10 +31035955,Stunning Penthouse 2 bedrooms full city view,20862635,Milan,Manhattan,Hell's Kitchen,40.7685,-73.99128,Entire home/apt,400,4,17,2019-07-06,2.73,1,0 +31037068,Entire Basement Apartment near LGA,94380772,Mainul,Queens,East Elmhurst,40.76592,-73.87388,Entire home/apt,60,1,3,2019-07-07,3,1,50 +31037859,2 BEDROOM/3BED APT/TIME SQUARE/HELLS KITCHEN,37986167,Scott,Manhattan,Hell's Kitchen,40.76558,-73.98787,Entire home/apt,135,3,28,2019-07-04,4.24,2,141 +31038321,Center of Astoria,3369352,Anup,Queens,Ditmars Steinway,40.77594,-73.90799,Private room,55,2,0,,,1,35 +31038331,Splendid Midtown Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.75146,-73.99,Entire home/apt,215,30,0,,,232,2 +31038347,"Cheery Midtown 1BR w/ Doorman + Gym, near MSG by Blueground",107434423,Blueground,Manhattan,Midtown,40.75313,-73.98863,Entire home/apt,227,30,0,,,232,329 +31038390,Modern apt near mall and trains. 25 min from city,231831493,Javier,Queens,Elmhurst,40.73162,-73.87584,Entire home/apt,200,1,1,2018-12-22,0.15,1,0 +31038842,Sweet Home,230527676,Dj,Brooklyn,Bushwick,40.69142,-73.92472,Private room,140,1,4,2019-05-26,0.63,2,365 +31039678,Beautiful and Convenient 2 Bedroom In Flushing,5962328,Alan,Queens,Flushing,40.75985,-73.82393,Entire home/apt,120,30,1,2019-05-02,0.43,15,303 +31039690,Manhattan modern living by the Chelsea High Line,9770967,Irwin,Manhattan,Chelsea,40.74382,-74.00463,Entire home/apt,250,30,2,2019-01-27,0.34,1,233 +31039784,TWO BIG Rooms - a Park Slope Oasis,15942513,Tom,Brooklyn,South Slope,40.66617,-73.98862,Private room,90,2,15,2019-06-18,2.34,1,91 +31040444,Large Bedroom near Central Park and Mt Sinah,231846634,Jacqueline,Manhattan,East Harlem,40.79022,-73.9471,Private room,100,30,0,,,1,262 +31040644,Beautiful 2 bed with a balocony,229142922,Gad,Brooklyn,Bedford-Stuyvesant,40.67878,-73.94446,Entire home/apt,205,2,0,,,2,89 +31040919,Cute apartment,5909599,Danica,Queens,Ditmars Steinway,40.77776,-73.91455,Entire home/apt,200,3,1,2019-05-10,0.50,2,11 +31041100,Charming studio close to everything,74841734,Christina,Manhattan,Hell's Kitchen,40.76676,-73.98953,Entire home/apt,200,6,2,2019-06-18,1.43,1,11 +31041659,Upper West Manhattan Suite - Cozy Private Bedroom,10415675,Yao & Rain,Manhattan,Harlem,40.82179,-73.95283,Private room,55,3,11,2019-06-30,1.76,7,1 +31041885,Cozy Room 20 minutes away from the city,184641438,Saly,Queens,Sunnyside,40.74132,-73.91931,Private room,65,2,0,,,2,341 +31042032,Columbia Univ Queen-bed in a Cozy Suite 5B,10415675,Yao & Rain,Manhattan,Harlem,40.82171,-73.95346,Private room,55,5,7,2019-06-01,1.09,7,154 +31042197,Sunny Boutique Condo on Picturesque Harlem Street,231863607,Jerry And Kate,Manhattan,East Harlem,40.80719,-73.94088,Entire home/apt,250,2,10,2019-04-07,1.54,1,0 +31042303,Upper West Manhattan Luxurious Master Bedroom 5C,10415675,Yao & Rain,Manhattan,Harlem,40.82343,-73.95469,Private room,50,5,4,2019-05-27,1.11,7,237 +31042470,Upper West Manhattan Spacious Master Bedroom 1C,10415675,Yao & Rain,Manhattan,Harlem,40.8222,-73.95416,Private room,58,5,2,2019-02-01,0.33,7,314 +31042971,纽约长岛市最新豪华网红楼王Jackson Park独立卧室出租!(出门就是地铁站!),190124793,Molly,Queens,Long Island City,40.74782,-73.93837,Private room,56,13,1,2018-12-24,0.15,1,12 +31043762,Upper West Manhattan Spacious Private Bedroom 1D,10415675,Yao & Rain,Manhattan,Harlem,40.82177,-73.95472,Private room,55,4,13,2019-07-02,2.29,7,299 +31043855,Nice apartment with great view on the Hudson River,81534306,Nourdine,Manhattan,Washington Heights,40.85257,-73.94161,Entire home/apt,160,2,1,2019-01-07,0.16,2,0 +31043873,Modern cheap huge 1bd apt next to Central Pk & sub,30600933,Helene,Manhattan,Harlem,40.79931,-73.95238,Entire home/apt,149,1,15,2019-06-22,2.43,1,35 +31044749,Pvt Room in Quiet Home Near JFK 6mi/LGA 10mi Lvdr,230025652,Kafayat,Queens,St. Albans,40.70522,-73.75063,Private room,35,2,11,2019-04-14,1.72,4,3 +31045451,Windsor Terrace Warm Artist Pad Prospect Park,8822878,Oleg,Brooklyn,Windsor Terrace,40.65329,-73.97987,Entire home/apt,250,2,1,2019-06-25,1,1,84 +31048559,You Will Love Our Beautiful 3 bed 3 Bath Home,229142922,Gad,Brooklyn,Bedford-Stuyvesant,40.68046,-73.94277,Private room,175,2,1,2019-02-07,0.20,2,89 +31049346,Espaço acolhedor e limpo próximo a Manhattan!,190389545,Andressa,Queens,Long Island City,40.75376,-73.94101,Private room,55,3,16,2019-06-21,2.42,2,3 +31050262,"Come and enjoy ""Brooklyn is the new Manhattan""",231929970,Nusrat,Brooklyn,Bedford-Stuyvesant,40.68004,-73.94083,Private room,55,1,1,2019-01-02,0.16,1,0 +31052540,“Quincy Manor” in the heart of Bedford-Stuyvesant.,82735692,David,Brooklyn,Bedford-Stuyvesant,40.68858,-73.94534,Entire home/apt,100,2,20,2019-07-07,3.16,1,273 +31052694,Private Room With a Balcony In a Modern Loft,3363749,Alex,Brooklyn,Williamsburg,40.70877,-73.94171,Private room,89,6,8,2019-06-15,1.98,3,260 +31052742,PRIVATE ROOM in the heart of MANHATTAN,8033432,Tom,Manhattan,Hell's Kitchen,40.76769,-73.98649,Private room,140,2,1,2019-04-09,0.33,4,39 +31052910,GORGEOUS PRIME SOHO 3 BEDROOMS PENTHOUSE,163035332,Pirin,Manhattan,SoHo,40.72267,-74.00334,Entire home/apt,649,2,17,2019-07-01,2.59,3,281 +31053045,Sleeper shared rm on subway bronx zoo 30m2NYC,1532337,Monica,Bronx,Van Nest,40.84087,-73.8699,Shared room,20,10,3,2019-07-01,0.68,4,25 +31053180,Modern 2BR Williamsburg Loft With a Balcony,3363749,Alex,Brooklyn,Williamsburg,40.70646,-73.94169,Entire home/apt,189,6,2,2019-05-16,0.45,3,242 +31053208,Boutique Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69488,-73.93115,Private room,55,1,23,2019-06-10,3.77,2,28 +31053525,Luxury Bushwick design suite 15 min to Manhattan,34124858,Ana,Brooklyn,Bushwick,40.69975,-73.93865,Private room,60,5,0,,,1,0 +31054045,Cozy and Bright Bedroom for One or Two,93317715,Trisha,Queens,Ridgewood,40.7067,-73.91458,Private room,65,4,1,2019-04-26,0.41,1,0 +31054058,Modern & cozy bedroom in Manhattan,28142165,Souha,Manhattan,Harlem,40.82331,-73.95454,Private room,89,2,6,2019-05-22,0.95,2,170 +31054566,Perfect location in Manhattan,231971512,Roland,Manhattan,Chelsea,40.7463,-73.9911,Private room,68,1,0,,,1,0 +31054795,Beautiful bedroom in Upper Manhattan,28142165,Souha,Manhattan,Harlem,40.82219,-73.95381,Private room,89,2,10,2019-06-18,2.01,2,127 +31054975,Exposed Brick One Bedroom in the Heart of Soho,61586251,Zack,Manhattan,Nolita,40.72199,-73.99534,Entire home/apt,165,1,3,2019-06-30,0.46,1,12 +31055032,Greenwich Village Prewar off Washington Sq Park!,2623620,Jacob,Manhattan,Greenwich Village,40.72956,-73.9986,Entire home/apt,142,3,3,2019-01-03,0.45,1,0 +31055254,In the heart of midtown manhattan - CONVENIENCE,69446035,Michael,Manhattan,Midtown,40.75094,-73.981,Entire home/apt,100,1,0,,,1,365 +31055362,Single Room in the heart of Corona Queens,2084313,Clara,Queens,Corona,40.73729,-73.85595,Private room,46,2,4,2019-05-27,0.63,1,0 +31055896,Cute/Clean Affordable Room Close To Public Transp.,31247820,Samuel,Manhattan,Washington Heights,40.83845,-73.9412,Private room,75,1,1,2019-01-05,0.16,1,0 +31056015,Private room in a brand new brooklyn apartment,60127679,Jason,Brooklyn,Bedford-Stuyvesant,40.68368,-73.92623,Private room,63,1,63,2019-06-24,9.64,2,47 +31056122,"Private Bath, Private Room 2 blocks from NR trains",6675227,Jason,Brooklyn,Sunset Park,40.65035,-74.00974,Private room,75,2,2,2019-01-14,0.32,1,16 +31056942,Charming 1 Bedroom in Bushwick 20 min to Manhattan,1407079,Nate,Brooklyn,Bushwick,40.69936,-73.91729,Entire home/apt,120,30,0,,,1,0 +31057348,NY EMPIRE STATE DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75589,-73.99642,Private room,249,1,13,2019-06-19,2.13,8,81 +31057368,2 bedroom apt in the heart of Bushwick (House),13143585,Robert,Brooklyn,Bushwick,40.69577,-73.92612,Entire home/apt,250,2,1,2018-12-30,0.16,2,0 +31057394,Cozy bedroom in spacious Crown Heights apartment!,57090879,Aaron,Brooklyn,Crown Heights,40.66527,-73.95729,Private room,60,1,1,2018-12-31,0.16,1,0 +31057603,Home in the heart of Brooklyn,20287808,Karen,Brooklyn,Bedford-Stuyvesant,40.69497,-73.94978,Entire home/apt,69,30,0,,,1,0 +31058735,"25 minutes from Manhattan, shared room",208367810,Dan,Brooklyn,Borough Park,40.63892,-73.9974,Shared room,35,2,1,2018-12-30,0.16,4,87 +31058866,ENTIRE One Bedroom Apt Available 7/21-8/16,23662073,Maxine,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.95135,Entire home/apt,70,7,0,,,1,14 +31058888,LOFT 108,26992810,Mike,Brooklyn,Bushwick,40.69832,-73.93544,Entire home/apt,100,3,12,2019-07-03,1.93,1,12 +31058909,"Cozy home # 2 In Brooklyn 20 min from N,y,c. 3bed",118029044,Freddy,Brooklyn,Borough Park,40.61019,-73.97343,Entire home/apt,200,3,0,,,2,325 +31058918,"Dvine Home, 5 Minutes from JFK, FREE parking",227919091,Flyn,Queens,Jamaica,40.67546,-73.7974,Entire home/apt,65,2,27,2019-06-24,4.40,1,182 +31059276,Premium Times Sqr 2 Bed 2 Bath ~ Rooftop,231468237,David And Natalia,Manhattan,Hell's Kitchen,40.76102,-73.98874,Entire home/apt,399,5,21,2019-07-07,3.44,1,118 +31060046,Nice place in Brooklyn .,201718939,Leon,Brooklyn,Greenpoint,40.73201,-73.95699,Private room,120,5,0,,,1,77 +31061295,Suíte Tati,103630226,Tatiane,Brooklyn,Sunset Park,40.64663,-73.9987,Private room,120,7,0,,,1,362 +31062827,Chateau New York!! 2 Bedrooms In BK,90687626,Shari,Brooklyn,Bedford-Stuyvesant,40.67795,-73.92145,Entire home/apt,120,7,1,2019-06-25,1,1,68 +31064733,Cozy Shared Studio 10 minutes from Times Square!,6367348,Ikenna,Manhattan,Harlem,40.80242,-73.94562,Shared room,60,1,0,,,1,7 +31065551,Room 25 min away from Manhattan 7train/busQ67,31044879,Ara,Queens,Sunnyside,40.73718,-73.9209,Private room,60,3,8,2019-07-01,1.27,2,0 +31066679,Happy place to be,230527676,Dj,Brooklyn,Bushwick,40.69233,-73.92636,Private room,100,7,1,2019-01-01,0.16,2,365 +31067269,New York - Upper East side cozy appartment,60658041,Armel,Manhattan,Upper East Side,40.77018,-73.95502,Private room,125,3,2,2019-06-18,0.30,1,0 +31067660,Cozy private room in Greenwich Village,10803693,Bobby,Manhattan,Greenwich Village,40.72836,-73.99953,Private room,90,7,3,2019-05-05,0.94,1,88 +31067715,Large Bx condo 3 mins to Subway by Yankee Stadium,146675319,Will,Bronx,Fordham,40.85214,-73.90294,Entire home/apt,100,2,12,2019-06-17,2.98,3,20 +31068388,Small Deluxe Private room near LGA (Room#01),155691570,Mili,Queens,East Elmhurst,40.76406,-73.87312,Private room,35,1,65,2019-06-24,10.05,5,85 +31069444,Sunshine Room in Quiet Greenpoint Apartment,5576749,Paul,Brooklyn,Greenpoint,40.73752,-73.9535,Private room,75,2,9,2019-05-26,1.42,1,0 +31069942,Cozy room in a area with everything.female only pl,110179329,Nashwa,Brooklyn,Bay Ridge,40.6334,-74.0212,Private room,70,1,0,,,1,342 +31069988,Beautiful Apartment on the Upper West Side,17494958,Katy,Manhattan,Upper West Side,40.77391,-73.98874,Entire home/apt,200,3,0,,,3,0 +31070935,Cozy room in duplex apartment - terrace with view,232112395,Alessandro,Brooklyn,Crown Heights,40.67686,-73.93159,Private room,45,14,0,,,1,30 +31071518,Private room in my apartment.,191442758,Naftali,Manhattan,Harlem,40.81425,-73.94549,Private room,28,4,6,2019-04-16,1.05,1,0 +31072227,Private Bedroom in Chinatown/LES,16285179,Carolina,Manhattan,Two Bridges,40.71302,-73.99405,Private room,85,1,6,2019-06-09,1.67,2,42 +31073162,Luxury high floor 1bdrm in prime midtown location!,150723893,David,Manhattan,Midtown,40.75318,-73.98649,Entire home/apt,300,3,0,,,1,0 +31074354,Estilo y tranquilidad en un mismo espacio,227413647,Yamid,Queens,Jackson Heights,40.74888,-73.87708,Private room,50,2,29,2019-06-28,4.73,1,16 +31074425,Calm Environment,232152341,Decidel,Queens,St. Albans,40.69278,-73.76192,Entire home/apt,80,2,11,2019-06-13,2.31,1,313 +31075136,Fun Spacious 3 Bed 2 bath Elevator Building,113805886,Yaacov,Manhattan,Upper East Side,40.77893,-73.95221,Entire home/apt,350,31,1,2019-04-12,0.34,33,342 +31075162,2 BEDROOMS 2 PERSONS EACH,228571016,Alexis,Manhattan,Harlem,40.82584,-73.95024,Private room,295,1,2,2019-06-14,0.76,2,89 +31075172,Brooklyn's Finest - LL,50364039,Cathy,Brooklyn,Williamsburg,40.71477,-73.96122,Entire home/apt,130,2,25,2019-07-02,3.99,3,261 +31075624,Room + movie theater/gym/roof - 1 block to subway!,3722715,Laura,Brooklyn,Bedford-Stuyvesant,40.69162,-73.95435,Private room,80,2,9,2019-07-01,1.48,2,0 +31076156,长岛豪华公寓单间卧室低价短租交通无敌便利,232169947,辣辣,Queens,Long Island City,40.74779,-73.9382,Private room,60,2,0,,,1,0 +31076185,Blue Modern 93,163603458,Qing,Queens,Queens Village,40.72218,-73.73396,Entire home/apt,79,1,59,2019-07-08,9.03,2,36 +31076667,"Luxury Astoria 1BD apt, 15 min from Manhattan",19630705,Eugene,Queens,Long Island City,40.75576,-73.93071,Entire home/apt,70,3,2,2019-03-18,0.32,1,4 +31077566,Prime East Village 1BR,1488170,Anish,Manhattan,East Village,40.72435,-73.98715,Entire home/apt,225,5,2,2019-03-10,0.37,1,90 +31082026,Elegant 2 bedroom in Chelsea,231465803,Robyn,Manhattan,Chelsea,40.74244,-74.00274,Entire home/apt,300,2,13,2019-07-03,2.57,1,16 +31082686,"Two BR, entire top floor, 23 Minutes to Manhattan",105310740,Margareth,Brooklyn,Bedford-Stuyvesant,40.6828,-73.95303,Entire home/apt,83,30,1,2019-06-03,0.81,3,349 +31084737,"Terrific Tribeca 2BR, Indoor pool, Gym + Rooftop by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71696,-74.00689,Entire home/apt,373,30,0,,,232,259 +31084982,Studio Apartment in East Village,232241894,Steph,Manhattan,East Village,40.73033,-73.98518,Entire home/apt,100,30,0,,,1,246 +31085028,Village/soho | 2Br + Skylights,4399103,James,Manhattan,Greenwich Village,40.72785,-73.99933,Entire home/apt,310,31,18,2019-06-28,2.87,2,7 +31085213,NY MIDTOWN DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.756,-73.99783,Private room,209,1,20,2019-06-16,3.28,8,53 +31085554,Paradise in New York City 2,185265758,Shama,Manhattan,Harlem,40.82269,-73.94969,Entire home/apt,247,2,24,2019-07-06,4.26,2,263 +31085569,AFFORDABLE LUXURY...ENTIRE APARTMENT @ Its Best!,123519201,Festus Atu,Manhattan,Inwood,40.86856,-73.92623,Entire home/apt,300,1,12,2019-06-16,2.98,2,357 +31085679,Master bedroom in Bedstuy,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69079,-73.93115,Private room,80,3,11,2019-06-25,1.95,4,160 +31085806,"Huge Apartment & Private Bathroom, Upper East Side",47746841,Jonathan,Manhattan,Upper East Side,40.76521,-73.96337,Private room,99,3,14,2019-06-29,3.09,1,44 +31086198,6 minutes from JFK Private Bedroom/Bathroom,232251881,Lakshmee,Queens,Springfield Gardens,40.6667,-73.78469,Private room,100,1,86,2019-07-05,13.30,8,335 +31086356,HOME AWAY,85664849,Ismail,Brooklyn,Crown Heights,40.67637,-73.91352,Private room,60,1,6,2019-06-08,1.50,1,327 +31086787,nice suite available in victorian home.,197767541,Davied,Queens,Bayswater,40.61127,-73.76451,Private room,105,5,0,,,1,180 +31087023,Shared Room 4 FEMALE Guests 30mins to Manhattan-3,172369331,Abby,Brooklyn,Sheepshead Bay,40.59726,-73.95951,Shared room,40,3,1,2019-03-16,0.26,10,281 +31087094,1 bedroom spacious and bright apt near SOHO,169959693,Steven,Manhattan,Chinatown,40.71744,-73.99559,Entire home/apt,189,2,10,2019-06-13,1.59,1,35 +31087703,Times Square 3bedroom,382836,Chemme,Manhattan,Hell's Kitchen,40.76186,-73.99608,Entire home/apt,300,2,5,2019-06-20,1.06,4,173 +31088379,Manhattan second unit,227165735,Sara,Manhattan,Upper West Side,40.77783,-73.98433,Shared room,199,3,0,,,2,95 +31088862,"Luxury, Sunny, Comfy, Gorgeous views, Central Park",28191131,Al,Manhattan,Upper East Side,40.76451,-73.96249,Entire home/apt,890,3,0,,,1,0 +31089176,Brooklyn Home,12625165,Jeonghoon,Brooklyn,Bedford-Stuyvesant,40.6916,-73.95961,Private room,42,1,0,,,1,0 +31089253,Cozy Sun Drenched Full Apt. 30 mins from City,232283561,Beverline,Bronx,East Morrisania,40.83026,-73.89102,Entire home/apt,200,1,26,2019-06-30,4.06,3,80 +31090120,"Elegant & Quiet & Convenient 紐約清雅居,地鐵公車便利,步行3分鐘到超市",56403037,Jane,Queens,Ozone Park,40.68757,-73.85084,Private room,44,1,3,2019-05-30,1.55,3,119 +31090222,6 Minutes From JFK Airport Cozy Bedroom,232251881,Lakshmee,Queens,Jamaica,40.668,-73.78477,Private room,30,1,98,2019-06-26,15.23,8,189 +31090310,Awesome 1 bedroom near Flatiron 30 day minimum.,171812142,Blanca,Manhattan,Midtown,40.74366,-73.98343,Entire home/apt,145,30,0,,,1,151 +31090684,Comfy room in the Heart of Bushwick,23074465,John,Brooklyn,Bushwick,40.70304,-73.91694,Private room,60,1,21,2019-06-13,3.35,3,78 +31090803,Clean & Nice & Affordable 3-P Room/Private Bath,216772639,Ling,Brooklyn,Borough Park,40.63529,-74.00618,Private room,48,1,2,2019-05-27,0.91,7,169 +31092944,Luxury Entire 3Bedroom Apartment near Downtown bk.,232191978,Gabriel,Brooklyn,Crown Heights,40.6776,-73.95447,Entire home/apt,350,3,8,2019-06-24,2.00,1,283 +31094549,Sunny Bedstuy apartment,2359328,Tega,Brooklyn,Bedford-Stuyvesant,40.69033,-73.94848,Entire home/apt,90,5,1,2019-01-22,0.18,1,1 +31095373,Private room in a quiet apartment,144124452,Yemi,Queens,Rosedale,40.65433,-73.73638,Private room,35,1,3,2019-06-22,0.47,3,46 +31097777,Quiet One-Bedroom in Williamsburg Close to Subway,115064362,Ale And Tom,Brooklyn,Williamsburg,40.70627,-73.95484,Entire home/apt,85,2,11,2019-06-14,1.76,1,237 +31098262,1 Bedroom/1 Bath Apt in Hudson Yards/Midtown West,232364825,Kusum&Kannan,Manhattan,Chelsea,40.75286,-73.99693,Entire home/apt,250,1,1,2019-01-01,0.16,1,0 +31099129,UES WITH VIEW OF EAST RIVER,232374986,Shelby,Manhattan,East Harlem,40.78591,-73.94234,Private room,70,1,6,2019-01-22,0.95,1,0 +31099515,Super Deluxe Private Room near LGA (Room #02),155691570,Mili,Queens,East Elmhurst,40.76577,-73.87131,Private room,35,1,56,2019-07-03,9.08,5,89 +31099533,Central Light Filled Studio,202478509,Yana,Manhattan,Hell's Kitchen,40.76101,-73.99431,Entire home/apt,160,4,2,2019-05-15,0.39,1,0 +31099999,SIMPLEHOME,137302318,Alona,Queens,Long Island City,40.75606,-73.93234,Entire home/apt,93,1,16,2019-06-26,2.45,2,181 +31100145,Super Big Deluxe Private Room near LGA (Room #03),155691570,Mili,Queens,East Elmhurst,40.76533,-73.87159,Private room,45,1,74,2019-06-23,11.38,5,89 +31100244,Private 2BR w/washer/dryer/balcony in Bushwick,95205457,Teddy,Brooklyn,Bushwick,40.69472,-73.92574,Entire home/apt,249,2,6,2019-06-24,0.98,1,0 +31100684,HUGE room in Grammercy,9420910,Alyona,Manhattan,Kips Bay,40.73885,-73.97938,Private room,150,1,1,2019-05-25,0.67,2,157 +31100844,Humble abode residing 20 minutes away from city,229554591,Kelsang,Queens,Sunnyside,40.73716,-73.91848,Private room,49,1,1,2019-01-07,0.16,2,0 +31101102,Quarto espaçoso perto de Manhattan!,190389545,Andressa,Queens,Long Island City,40.75408,-73.94098,Private room,48,2,21,2019-04-24,3.25,2,0 +31101257,East Village Nook,723184,Andrew,Manhattan,East Village,40.7279,-73.97797,Shared room,65,2,0,,,1,0 +31101775,Apartment share close to train station,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67862,-73.91233,Shared room,27,1,4,2019-06-10,0.63,17,89 +31101814,Stylish & Spacious Private Room + Bath in Bed-Stuy,229109330,Alejandra,Brooklyn,Bedford-Stuyvesant,40.68441,-73.94632,Private room,100,2,0,,,1,31 +31101826,Easy commute apartment next to subway,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67877,-73.91227,Shared room,35,1,9,2019-06-09,1.97,17,88 +31101852,Sunny room in iconic Brooklyn brownstone,38609581,Lira,Brooklyn,Prospect Heights,40.67782,-73.97076,Private room,120,2,0,,,2,0 +31102513,Sweet Spot! 2 rooms w/ PRIVATE ENTRANCE in BK!,8960308,Siji,Brooklyn,East Flatbush,40.64168,-73.95026,Private room,59,2,16,2019-07-06,4.49,1,13 +31102915,Comfortable Classy Apartment,232419771,Avi,Brooklyn,Midwood,40.61708,-73.95559,Entire home/apt,120,1,2,2019-02-17,0.35,1,126 +31103138,Best price-City College-1 train 20 min. Times Sq.,231830871,Sait,Manhattan,Harlem,40.81818,-73.95506,Shared room,50,1,27,2019-06-08,5.51,1,98 +31103559,Three bedrooms house,228608906,Linda,Staten Island,Arrochar,40.58796,-74.07205,Private room,65,1,8,2019-07-02,1.37,2,362 +31104180,West Village Apartment,26999875,Sarah,Manhattan,West Village,40.72998,-74.00774,Entire home/apt,500,2,0,,,1,0 +31106126,Entire Luxurious private Studio Near LGA Airport,155691570,Mili,Queens,East Elmhurst,40.75812,-73.87195,Entire home/apt,80,1,36,2019-06-17,5.71,5,150 +31106666,Cozy Room 2 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68966,-73.92946,Private room,65,3,5,2019-05-26,0.95,4,161 +31106850,Big Private Room in Manhattan,107362574,Poli,Manhattan,Washington Heights,40.8331,-73.94007,Private room,110,3,0,,,1,89 +31106961,Amazing apartment,93412728,Mor,Brooklyn,Williamsburg,40.71659,-73.95072,Private room,100,14,0,,,1,0 +31110349,Astoria Entire apartment,196915362,Janna,Queens,Ditmars Steinway,40.77638,-73.91308,Entire home/apt,85,40,2,2019-05-31,0.42,2,85 +31111599,Tribeca Treasure,6096884,Juliet,Manhattan,SoHo,40.71973,-74.00232,Entire home/apt,288,3,4,2019-05-09,0.70,1,87 +31112840,幸福小屋,232509057,David,Staten Island,South Beach,40.59164,-74.08197,Private room,55,1,10,2019-07-05,7.14,1,363 +31113241,"5 min walk to train,2 min walk to bus, most shop.",11082255,Hasan,Queens,Flushing,40.75644,-73.82875,Entire home/apt,200,2,1,2019-01-01,0.16,1,0 +31113620,HUGE queen bed 1 block away from Prospect Park!,29102073,Melissa,Brooklyn,Flatbush,40.65327,-73.96573,Private room,60,5,2,2019-05-27,0.32,1,0 +31114246,Modern King-Bed Private room and en-suite Bathroom,91015018,April,Brooklyn,Bedford-Stuyvesant,40.69038,-73.95953,Private room,112,1,29,2019-06-22,5.09,1,84 +31115149,Yellow submarine,165827975,Galina,Brooklyn,Bedford-Stuyvesant,40.69032,-73.92437,Private room,59,2,0,,,1,10 +31115685,Cozy Studio Apartment in the Heart of Williamsburg,17968226,Olivia,Brooklyn,Williamsburg,40.71881,-73.95369,Entire home/apt,175,2,0,,,1,24 +31116524,Cozy room near Prospect Park,72184742,Zach Williams,Brooklyn,Flatbush,40.65051,-73.95586,Private room,35,4,7,2019-06-26,1.17,1,20 +31116747,Beauty In The East-Mins to Subway/JFK/LGA/Manhatta,212729984,Victoria,Brooklyn,East New York,40.65905,-73.8976,Entire home/apt,150,1,13,2019-07-03,7.36,1,89 +31118219,Private Room @ Floasis Art Collective in Bushwick!,632548,Rachel,Brooklyn,Bushwick,40.69738,-73.92432,Private room,61,2,1,2019-01-01,0.16,1,307 +31118518,Astoria 320square feet room!!:),229104353,Abram,Queens,Astoria,40.77607,-73.92876,Private room,70,2,0,,,2,310 +31118586,Private Room with exposed bricks at East Village,75509095,Gia,Manhattan,East Village,40.7297,-73.97995,Private room,169,3,0,,,2,14 +31118680,One Bedroom Apartment in the Heart of East Village,222779801,Maira,Manhattan,East Village,40.73017,-73.98668,Entire home/apt,130,1,4,2019-05-17,1.46,2,120 +31119139,"Beautiful, sunlit bedroom in Brooklyn",33839663,Mike,Brooklyn,Greenpoint,40.72663,-73.93819,Private room,70,7,2,2019-05-16,0.32,2,63 +31119351,Beautiful Brooklyn Home,2557889,Serena,Brooklyn,Bushwick,40.70267,-73.92751,Private room,55,2,16,2019-05-13,2.57,1,2 +31119965,10 min subway to Time Square Sunny 1BR,228900167,Xi,Queens,Long Island City,40.7505,-73.94381,Entire home/apt,200,1,29,2019-06-17,4.86,1,148 +31120226,Private Room in 2BR East Village Apartment,15687009,Chad,Manhattan,East Village,40.72373,-73.97534,Private room,100,1,17,2019-07-06,3.21,1,73 +31120563,Magnificent 5 Bedroom Brooklyn Townhouse,9786357,Ilsa,Brooklyn,Prospect Heights,40.68187,-73.97075,Entire home/apt,1750,2,5,2019-07-01,1.65,1,358 +31120596,Beautiful Brooklyn Apartment - The Sunlight Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64245,-73.94603,Private room,48,1,1,2019-04-22,0.38,5,0 +31120812,Sunny Bedroom off Broadway,126625033,Nina,Manhattan,Morningside Heights,40.80556,-73.96503,Private room,50,5,0,,,1,0 +31120894,Bright and Cozy Room in Greenpoint!,95475481,Brandi,Brooklyn,Greenpoint,40.72706,-73.95439,Private room,55,7,2,2019-02-28,0.38,1,0 +31121208,Brooklyn home with a view,35855601,Emilie,Brooklyn,Kensington,40.64029,-73.97265,Private room,35,1,37,2019-07-04,5.75,1,97 +31121209,Industrialized in the City (1 guest only),37401126,Leah,Brooklyn,East Flatbush,40.64206,-73.94059,Private room,50,2,17,2019-06-28,3.57,4,318 +31121213,Studio with Historic Charm in South Harlem,8630543,Olga,Manhattan,Harlem,40.80456,-73.95033,Entire home/apt,115,3,15,2019-06-28,3.21,2,116 +31121525,"Charming 2Br in the middle of LES, SoHo",214869202,Joey,Manhattan,Lower East Side,40.72181,-73.98946,Entire home/apt,250,1,36,2019-06-22,6.17,1,10 +31121555,Private Room With Private En-Suite Bathroom,9316328,Maria,Brooklyn,Bedford-Stuyvesant,40.68587,-73.95221,Private room,60,3,14,2019-06-26,2.46,1,9 +31121622,Artists Home and Studio in Gramercy Park 2,307241,E. Adam,Manhattan,Gramercy,40.73583,-73.98037,Entire home/apt,155,3,18,2019-06-21,3.10,1,70 +31121946,Private House next to JFK,90169214,Victor,Queens,Ozone Park,40.68695,-73.84101,Entire home/apt,188,2,5,2019-06-23,0.99,1,344 +31122502,2 min walk to Times Square!!!,9730304,Baha,Manhattan,Hell's Kitchen,40.75982,-73.99066,Entire home/apt,205,4,1,2019-01-03,0.16,1,1 +31122551,Master Bedroom in Luxury Building,39761389,Stivan,Brooklyn,Bushwick,40.69933,-73.92886,Private room,185,1,14,2019-07-05,2.22,1,37 +31122807,500 sqft Art Deco Empire State and Hudson views,232599387,Michael,Manhattan,Chelsea,40.7411,-73.99669,Private room,200,4,2,2019-05-05,0.76,1,365 +31122836,Luxury Union Square Loft (3000 sq ft),22997536,Kyle,Manhattan,Chelsea,40.73732,-73.99033,Private room,200,1,2,2019-03-11,0.32,1,0 +31123021,Designer Artist Loft in Williamsburg,755603,Laura,Brooklyn,Williamsburg,40.70904,-73.94574,Entire home/apt,150,2,4,2019-06-16,0.63,1,0 +31123200,"NYC at your fingertips! Shopping, the Arts & more!",16431082,Kagle,Brooklyn,Fort Greene,40.68674,-73.97618,Entire home/apt,144,3,0,,,1,92 +31123490,Modern 1 Bedroom Escape with River Views,65294078,Matt,Manhattan,Hell's Kitchen,40.76792,-73.98453,Entire home/apt,279,1,12,2019-07-02,3.27,1,0 +31123611,JFK Airport Great place to stay 6 minutes away,232251881,Lakshmee,Queens,Jamaica,40.66823,-73.78374,Shared room,40,1,65,2019-07-06,10.00,8,346 +31124175,Botanical Bedstuy,21152553,Phi,Brooklyn,Bedford-Stuyvesant,40.68655,-73.92112,Entire home/apt,125,2,32,2019-07-06,5.16,1,57 +31124462,Home in Hell's Kitchen,2373009,Reza,Manhattan,Hell's Kitchen,40.76416,-73.98685,Private room,100,1,1,2019-02-24,0.22,1,0 +31124852,Totally Renovated Plush loft apartment,232618610,Hugo,Brooklyn,Cypress Hills,40.68392,-73.8693,Entire home/apt,195,4,7,2019-06-29,2.47,1,136 +31125134,Huge Private Room w/ Private Bathroom in Flatiron!,89509928,Kim,Manhattan,Midtown,40.74329,-73.98341,Private room,120,3,9,2019-05-26,1.43,1,0 +31125496,Cozy Room 1 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.69088,-73.92983,Private room,65,3,11,2019-06-13,2.73,4,164 +31125857,Cozy Modern Getaway 30 mins from Manhattan (1Bdrm),232283561,Beverline,Bronx,East Morrisania,40.8296,-73.88971,Private room,125,1,9,2019-03-25,1.46,3,80 +31126424,A Girls Only Charming living room!!,176899233,Vicky,Brooklyn,Kensington,40.63981,-73.97165,Shared room,45,1,2,2019-05-31,0.60,2,22 +31127208,"Massive Manhattan Private Room,15 mins to Times Sq",99511145,Nichole,Manhattan,Harlem,40.80696,-73.94931,Private room,89,6,9,2019-06-03,1.42,2,0 +31127267,"Studio apartment between NYC, JFK and LGA airports",32540806,Maor,Queens,Kew Gardens Hills,40.72927,-73.82469,Entire home/apt,45,3,8,2019-06-02,1.33,1,0 +31127402,ONE OF A KIND: HUGE BEAUTIFUL LOFT,172391931,Francis,Brooklyn,Bedford-Stuyvesant,40.69232,-73.9534,Entire home/apt,250,5,1,2019-04-25,0.40,1,0 +31127529,Cozy Room 3 in Brooklyn,231150375,Olabimpe,Brooklyn,Bedford-Stuyvesant,40.68931,-73.93131,Private room,65,3,9,2019-06-03,1.79,4,126 +31127742,1000 Sq Ft HUGE apartment with Empire State views.,232648305,Josh,Manhattan,Kips Bay,40.74061,-73.98063,Entire home/apt,450,1,2,2019-03-04,0.32,1,89 +31127921,Prime East Village location! 2 bed/1 bath,182679740,Todd,Manhattan,East Village,40.72685,-73.9837,Entire home/apt,299,3,13,2019-06-23,2.32,1,212 +31128045,Spacious North Williamsburg 1 Bedroom w/ Yard,1390454,Gabe,Brooklyn,Williamsburg,40.7208,-73.96022,Entire home/apt,150,7,0,,,1,249 +31128175,Awesome Apartment in Lower East Side,855089,Shawn,Manhattan,Lower East Side,40.71327,-73.99019,Private room,60,30,0,,,1,0 +31129115,Luxurious Boutique Studio Red Hook Brooklyn,1499484,Tom,Brooklyn,Red Hook,40.67746,-74.01392,Entire home/apt,99,1,29,2019-06-28,4.97,2,273 +31135051,Pvt Single Room Occupancy Near JFK 6 mi/LGA 10 mi,230025652,Kafayat,Queens,St. Albans,40.70541,-73.75037,Private room,30,2,7,2019-04-30,1.10,4,6 +31135611,Pvt Room for Two Near JFK 6 mi/ LGA 10 mi- Olive,230025652,Kafayat,Queens,Queens Village,40.70533,-73.7485,Private room,38,2,13,2019-04-27,2.06,4,6 +31136603,"Bright, Luxury Executive Studio",22560728,Sean,Manhattan,Hell's Kitchen,40.76156,-73.99342,Entire home/apt,150,45,1,2019-05-07,0.48,1,56 +31139974,3 bedroom apartment for your perfect stay,44477551,Sammy,Brooklyn,Midwood,40.62532,-73.96286,Entire home/apt,250,3,0,,,1,101 +31140017,Historic District Brownstone 35 min from Midtown,65747874,Eric,Brooklyn,Crown Heights,40.67317,-73.94104,Private room,80,2,14,2019-07-04,2.68,2,78 +31141189,Watson’s Loft,3744921,Brandon,Queens,Forest Hills,40.72186,-73.85601,Private room,70,1,4,2019-06-23,0.65,1,134 +31142239,Brooklyn Retreat,232749708,Winston,Brooklyn,East Flatbush,40.65546,-73.92031,Entire home/apt,300,2,12,2019-04-14,1.95,1,352 +31142743,Purple Palace,36425865,Emily,Brooklyn,Bushwick,40.69388,-73.92974,Private room,39,1,13,2019-05-04,2.15,1,89 +31143144,Nice Private Room w/ 2 Beds,232767784,Mayra,Manhattan,Washington Heights,40.83414,-73.9438,Private room,70,3,10,2019-07-05,3.00,1,39 +31143377,Luxury Apartment with Statue of Liberty view,232463854,Mina,Manhattan,Battery Park City,40.7077,-74.01555,Entire home/apt,300,1,3,2019-05-17,0.76,1,363 +31143457,Empire State Building Views in Luxury 1 Bedroom,4783028,Emma,Manhattan,Midtown,40.75334,-73.98719,Entire home/apt,250,2,4,2019-06-10,1.12,1,0 +31144302,Beautiful Modern Lower East Side Apartment!,9152003,Katie,Manhattan,Lower East Side,40.72176,-73.99218,Entire home/apt,199,2,18,2019-07-06,2.92,1,16 +31144445,Room in Bensonhurst,232778333,Jaime,Brooklyn,Bensonhurst,40.61355,-73.99648,Private room,25,5,7,2019-04-13,1.23,2,175 +31144697,Midtown East 2 bedroom apartment,232784693,Tanya,Manhattan,Midtown,40.75376,-73.96669,Entire home/apt,350,3,10,2019-06-22,1.86,1,207 +31144865,Cozy private bedroom close to train and Manhattan,224204301,Tylor,Bronx,Mott Haven,40.81331,-73.92765,Private room,60,1,30,2019-07-02,6.38,2,333 +31145076,Modern comforts,66084717,Tim,Brooklyn,East Flatbush,40.65079,-73.92527,Entire home/apt,125,3,15,2019-07-07,4.25,2,227 +31145329,APT-2:Room 1,72602373,Mo,Brooklyn,Brownsville,40.66313,-73.91653,Private room,81,1,4,2019-06-01,0.97,2,36 +31145652,"Great Manhattan Apartment, Near ALL! Quiet!",23155661,David,Manhattan,Upper East Side,40.77711,-73.95059,Entire home/apt,219,6,1,2018-12-31,0.16,1,39 +31145654,Shared male Room on Manhattan! Amazing view! II,39528519,Max,Manhattan,Lower East Side,40.70991,-73.98835,Shared room,35,14,1,2019-02-15,0.21,28,320 +31145829,"Nice, cozy and fresh male room on Manhattan III",39528519,Max,Manhattan,Lower East Side,40.71112,-73.98691,Shared room,32,14,0,,,28,342 +31145928,Shared male room on Manhattan with crazy view! I,39528519,Max,Manhattan,Lower East Side,40.71113,-73.98667,Shared room,35,14,0,,,28,321 +31146079,Amazing cozy and warm male room on Manhattan IV,39528519,Max,Manhattan,Lower East Side,40.71124,-73.98687,Shared room,35,14,0,,,28,322 +31146186,Large bedroom with a private terrace in Astoria,6586697,Yasha,Queens,Astoria,40.76904,-73.91002,Private room,75,1,1,2019-04-11,0.33,3,0 +31147386,Spacious Studio near Prospect Park,9664155,Ewa,Brooklyn,Windsor Terrace,40.6518,-73.97575,Entire home/apt,52,30,1,2019-03-31,0.30,1,0 +31147410,Private and cozy room,144124452,Yemi,Queens,Rosedale,40.6528,-73.73627,Private room,40,1,6,2019-03-11,0.93,3,56 +31147583,Best Apartment in Manhattan Central Park,81013659,Milena,Manhattan,Upper East Side,40.76756,-73.95643,Entire home/apt,215,2,1,2019-03-16,0.26,2,265 +31148287,Carroll Garden Brownstone Charmer w/ Washer&Dryer,23901417,Megan & Erica,Brooklyn,Carroll Gardens,40.6805,-74.00091,Entire home/apt,100,7,0,,,1,0 +31148404,"Luxury Doorman Apartment - POOL, GYM, LOUNGE +++",34271675,Chris,Manhattan,Financial District,40.70763,-74.00671,Entire home/apt,110,15,2,2019-05-15,0.80,1,0 +31148486,One bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70632,-73.91182,Entire home/apt,75,1,9,2019-02-01,1.40,3,132 +31149002,"Close to all NYC attraction, easy access",24117374,Karina,Manhattan,Morningside Heights,40.80206,-73.95949,Private room,150,3,0,,,1,364 +31149078,Sharing room for FEMALE #2,167620568,Mikosya,Brooklyn,Brighton Beach,40.5776,-73.96231,Shared room,30,1,1,2019-06-23,1,2,364 +31149094,Tribeca Loft,273174,Jon,Manhattan,Tribeca,40.71943,-74.00435,Entire home/apt,1000,1,2,2019-06-14,0.40,3,38 +31149465,Spacious Duplex with two terraces and a roof deck,24202039,Logan,Brooklyn,Williamsburg,40.71142,-73.94819,Private room,125,1,1,2018-12-31,0.16,1,0 +31149641,Charming Private Room Near Central Park,60281397,Lugao,Manhattan,Upper West Side,40.79721,-73.96875,Private room,99,2,6,2019-05-12,0.93,3,49 +31150305,East Village Peaceful Perfect One Bedroom,2928701,Catalina,Manhattan,East Village,40.72722,-73.98383,Entire home/apt,210,7,0,,,2,235 +31150327,Light and refresh 1-2 bdrm apartment,4770121,Somaya,Manhattan,Harlem,40.82511,-73.94031,Entire home/apt,100,7,0,,,4,0 +31151589,Private room in beautiful Brownstone building,16354583,Monica,Brooklyn,Crown Heights,40.67325,-73.94666,Private room,30,5,2,2019-01-31,0.33,1,0 +31151736,The perfect NYC flat in the Meatpacking / Chelsea,43770857,Matthew,Manhattan,Chelsea,40.74393,-74.00444,Entire home/apt,190,3,2,2019-03-04,0.32,1,0 +31152858,Cozy bedroom next to Columbia University,232860638,Maria,Manhattan,Morningside Heights,40.80998,-73.959,Private room,110,1,1,2019-01-29,0.19,1,0 +31153254,TOURISTS DREAM - Room steps from Grand Central,50241946,Ana,Manhattan,Midtown,40.75017,-73.97241,Private room,250,2,20,2019-06-23,3.17,1,1 +31154648,Heart of Brooklyn 1 Bedroom in 2 bdr apt.,218300937,Thomas,Brooklyn,Clinton Hill,40.68457,-73.96605,Private room,59,3,0,,,2,179 +31162245,Beautiful Brooklyn Apartment: The Red Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64227,-73.94702,Private room,48,1,2,2019-04-22,0.36,5,0 +31164039,Amazing BR w/ Private Bath near subway & Manhattan,137358866,Kazuya,Queens,Woodside,40.74524,-73.90637,Private room,70,30,0,,,103,269 +31164918,Bright and cozy bedroom in Williamsburg,29523138,Ita,Brooklyn,Williamsburg,40.70792,-73.94087,Private room,48,1,23,2019-04-30,3.71,2,0 +31164968,Room in Perfect Bushwick Location,146169974,Daniela,Brooklyn,Bushwick,40.70258,-73.92614,Private room,90,3,2,2019-04-06,0.46,1,0 +31165324,Furnished room in beautiful spacious duplex,44409079,Mariana,Brooklyn,Williamsburg,40.71198,-73.94807,Private room,125,30,0,,,1,340 +31166689,LARGE ROOM 15 TO MANHATTAN,67376966,Lucky,Queens,Rego Park,40.73097,-73.85736,Private room,88,1,0,,,3,188 +31166982,cozy massive room for January,232959891,Niccolo,Brooklyn,Bushwick,40.69547,-73.91941,Private room,60,1,4,2019-01-20,0.63,1,220 +31167183,Luxury private whole apartment 6 people Bushwick!!,81662935,Kamaran,Brooklyn,Bedford-Stuyvesant,40.68382,-73.91467,Entire home/apt,97,2,19,2019-06-27,3.00,2,340 +31167434,Sunny bedroom pvt entrance close to Times Sq. 62F,190921808,John,Manhattan,Hell's Kitchen,40.75518,-73.99568,Private room,99,7,6,2019-05-31,1.70,47,321 +31168240,Beautiful Brooklyn Apartment: The Quaint Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64311,-73.9472,Private room,48,1,3,2019-06-08,0.49,5,0 +31168577,Beautiful Brooklyn Apartment: The Cozy Room,232578558,Nick & D.,Brooklyn,East Flatbush,40.64376,-73.94616,Private room,48,1,5,2019-06-08,0.80,5,0 +31168781,Amazing cozy and warm male room on Manhattan IV,170263842,Sultan,Manhattan,Lower East Side,40.71013,-73.98822,Shared room,35,14,0,,,4,334 +31168852,Beautiful Brooklyn Apartment,232578558,Nick & D.,Brooklyn,East Flatbush,40.6434,-73.94738,Entire home/apt,156,2,30,2019-06-24,4.69,5,21 +31169585,A Home just like Home!!!,175714102,Daisy,Bronx,Mott Haven,40.81185,-73.91625,Entire home/apt,100,1,0,,,1,173 +31169716,Astoria Apt quick trip to Manhattan and LGA,37087545,Daniel,Queens,Astoria,40.77029,-73.9197,Private room,98,30,1,2019-02-17,0.21,1,0 +31169765,Little Belaire,232985707,Ursula,Brooklyn,Windsor Terrace,40.6579,-73.98101,Entire home/apt,99,2,18,2019-07-07,5.00,1,32 +31170814,"Tranquil, Cozy, Comfy Cottage.",125586920,Julie,Bronx,City Island,40.85746,-73.79056,Entire home/apt,175,2,14,2019-06-23,2.66,1,79 +31171380,Clean Affordable Room #4,20120009,Jannices,Brooklyn,Bushwick,40.68895,-73.9062,Private room,38,1,3,2019-04-23,0.95,6,6 +31172260,Relaxing and convenient shared room in UES,45317760,Mohammed,Manhattan,Upper East Side,40.76939,-73.95436,Shared room,35,1,14,2019-05-30,2.37,3,22 +31172569,Bebop & Swing Space,224126362,Nikki Jo,Brooklyn,Bedford-Stuyvesant,40.68066,-73.93281,Entire home/apt,200,2,0,,,1,22 +31172584,Williamsburg Duplex Loft of Lorimer L,4318363,D,Brooklyn,Williamsburg,40.71462,-73.95278,Entire home/apt,180,3,2,2019-02-18,0.41,2,24 +31173428,Cozy ✨LARGE BED✨ In the heart of NYC!,233021124,Jules,Manhattan,Hell's Kitchen,40.76878,-73.98737,Entire home/apt,200,4,10,2019-06-24,1.80,1,80 +31173740,Marion Manor,233025597,Déon,Brooklyn,Bedford-Stuyvesant,40.68092,-73.92045,Entire home/apt,195,2,4,2019-07-01,1.28,1,301 +31174332,"Single Room in Upper East Side, near Central Park",226764496,A. Nicholas,Manhattan,Upper East Side,40.7658,-73.95812,Private room,50,1,37,2019-07-01,6.42,4,22 +31174610,Brilliant BR w/ Private Bath near LGA & Manhattan,137358866,Kazuya,Queens,Woodside,40.74451,-73.90782,Private room,60,30,1,2019-03-19,0.27,103,209 +31174636,Cozy bedroom with balcony. 25min TimeSquare,233035096,Roxanna,Queens,Rego Park,40.7211,-73.85968,Private room,45,1,4,2019-06-19,0.96,1,97 +31174994,"Private comfortable bedroom, 25min to TimeSquare",233038917,Roxanna,Queens,Rego Park,40.71952,-73.85839,Private room,55,1,14,2019-06-15,2.22,1,286 +31175570,Charming garden level apt in Brooklyn Townhouse,29129194,Ferris,Brooklyn,Bedford-Stuyvesant,40.68483,-73.94745,Entire home/apt,90,3,17,2019-06-15,4.15,1,91 +31175623,Spacious Room Close to Subway & Central Park,137358866,Kazuya,Manhattan,Harlem,40.81221,-73.94225,Private room,47,30,1,2019-04-27,0.41,103,228 +31176143,Beautiful shared apartment,129124146,KImberly,Queens,Elmhurst,40.73457,-73.87211,Shared room,65,2,1,2019-01-02,0.16,3,365 +31176662,Modern East Village Oasis,9201921,Rachel,Manhattan,East Village,40.72467,-73.98878,Entire home/apt,250,1,3,2019-05-27,1.70,1,0 +31176875,Private room available close to everything!,44886301,Dayane,Manhattan,Upper East Side,40.77016,-73.95293,Private room,120,3,0,,,2,0 +31177757,Bright and Cozy,146275359,Modupe,Queens,Springfield Gardens,40.68941,-73.75116,Private room,42,2,12,2019-07-06,2.40,3,365 +31177794,"Spacious, cozy Private room 10 min from Manhattan",233066892,Millind,Brooklyn,Sunset Park,40.65991,-73.99702,Private room,36,2,3,2019-02-11,0.51,1,0 +31178012,Cozy JFK,146275359,Modupe,Queens,St. Albans,40.68985,-73.75265,Private room,42,4,10,2019-06-24,1.56,3,189 +31178588,Very Clean and Very Large,107578852,Carlos,Manhattan,Washington Heights,40.84258,-73.93789,Private room,100,30,9,2019-06-02,1.42,2,365 +31178681,"HOTEL ROOM LIKE “T” +AFFORDABLE PRICE",59156312,Viviana,Queens,Woodhaven,40.68771,-73.86456,Private room,89,3,6,2019-04-28,0.96,9,358 +31179136,Comfy Private bedroom with balcony.25mnTimeSquare,233080667,Roxanna,Queens,Rego Park,40.72045,-73.85782,Private room,45,1,2,2019-02-06,0.32,1,217 +31181911,Brooklyn apt 10 minutes to Manhattan by subway,129022496,Alan,Brooklyn,Bedford-Stuyvesant,40.68093,-73.94922,Private room,20,10,3,2019-05-08,0.57,2,17 +31183757,Blue Studio in Hamilton Heights,1276028,Marcia,Manhattan,Harlem,40.82865,-73.95069,Private room,70,3,1,2019-03-29,0.29,2,347 +31185117,DUPLEX BIG BIG APARTMENT IN BEAUTIFUL NOHO,100698803,Jenny,Manhattan,East Village,40.73071,-73.98858,Entire home/apt,478,3,25,2019-06-17,3.97,1,148 +31187945,Clean comfortable room,233165925,Wendy,Brooklyn,East Flatbush,40.63383,-73.94175,Private room,150,1,0,,,1,90 +31188274,Luxury apartment in queens,224533200,Jason,Queens,Elmhurst,40.73429,-73.87237,Entire home/apt,400,2,15,2019-06-30,2.65,1,34 +31188378,NY HUDSON YARD DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75495,-73.99825,Private room,209,1,6,2019-05-31,1.01,8,88 +31189073,Quite and comfortable shared room in UES,45317760,Mohammed,Manhattan,Upper East Side,40.77096,-73.95512,Shared room,30,1,23,2019-06-13,3.67,3,13 +31189225,Nice room only 3 mins walk to subway,108207108,Noofai,Queens,Elmhurst,40.74272,-73.89013,Private room,200,1,0,,,1,177 +31189979,Park Slope Brownstone Garden Apartment,40231738,Thatcher,Brooklyn,Park Slope,40.67071,-73.9792,Entire home/apt,205,2,4,2019-06-22,1.30,1,203 +31190191,"Hey, It's Brooklyn, JUST BE YOU.",233189145,Lynda,Brooklyn,Windsor Terrace,40.65224,-73.9762,Private room,85,1,18,2019-06-23,3.16,1,168 +31190326,"Very Clean, Cozy 2 Bedrooms near Central Park",231707114,Zhaoxi,Manhattan,Hell's Kitchen,40.76807,-73.98508,Entire home/apt,365,2,19,2019-06-25,3.37,1,28 +31191366,Prime Williamsburg Duplex Loft Off Lorimer L,4318363,D,Brooklyn,Williamsburg,40.71315,-73.95411,Private room,65,2,17,2019-07-07,3.11,2,26 +31191752,Large and centrally located Brooklyn room w/ Roof!,31764367,Tyler,Brooklyn,Bedford-Stuyvesant,40.69019,-73.9248,Private room,60,2,2,2019-07-06,2,1,151 +31193385,Haven for your Brooklyn Family/Friends Vacation!,4564774,Melanie,Brooklyn,Prospect-Lefferts Gardens,40.66069,-73.94732,Entire home/apt,120,2,15,2019-07-05,2.53,1,20 +31193461,New York Private Room with a View,1276028,Marcia,Manhattan,Harlem,40.82765,-73.95012,Private room,80,3,6,2019-06-27,1.89,2,70 +31193843,Spacious 2 Bedrooms,231352789,Farah,Staten Island,Tompkinsville,40.63489,-74.07967,Private room,69,2,25,2019-07-07,3.95,3,280 +31194144,Brooklyn apt 10 mins to Manhattan by subway,129022496,Alan,Brooklyn,Bedford-Stuyvesant,40.67872,-73.94805,Private room,20,10,8,2019-07-01,1.40,2,38 +31194309,Hip Bushwick Basement Dwelling,91845557,Angela,Brooklyn,Bedford-Stuyvesant,40.68788,-73.91935,Private room,75,1,0,,,1,0 +31194321,Private bedroom with back yard,1699871,Chloe,Brooklyn,Bushwick,40.68475,-73.90918,Entire home/apt,60,2,3,2019-01-26,0.47,3,153 +31194580,1 bedroom in the East Village,105355373,Daniella,Manhattan,East Village,40.72293,-73.98777,Entire home/apt,143,30,0,,,1,57 +31201553,Brooklyn bedroom and open basement,350088,Richard,Brooklyn,Williamsburg,40.72023,-73.9585,Private room,200,2,1,2019-01-27,0.18,1,0 +31201605,Curated East Village Apt,233315617,Dana,Manhattan,East Village,40.72722,-73.97698,Private room,115,2,12,2019-06-18,2.07,1,33 +31201624,Brooklyn Bedroom (Flatbush-Ditmas) II,91578701,Tatiana,Brooklyn,Flatbush,40.64148,-73.95502,Private room,45,1,4,2019-01-21,0.63,2,0 +31201815,Cozy Loft Bedroom With lil Couch Underneath. =],217950098,Soft,Bronx,Melrose,40.81712,-73.9209,Private room,100,1,3,2019-06-03,1.05,1,150 +31201905,"Sam and Mala""s Place",226664611,Samuel,Queens,South Ozone Park,40.67993,-73.81249,Entire home/apt,72,3,29,2019-06-22,4.55,2,293 +31203322,"1 BR. Across from subway. 30m to city, 5m to park.",50211500,Mitchell,Brooklyn,Flatbush,40.65075,-73.96267,Entire home/apt,75,3,4,2019-02-23,0.69,1,115 +31203481,Private room with TV and your own bath in NYC!,233333162,Pamela,Brooklyn,Prospect-Lefferts Gardens,40.6583,-73.9514,Private room,40,2,12,2019-06-20,2.11,1,79 +31203696,"1 bedroom / 1 bathroom in Bushwick, Brooklyn",1498228,Annie,Brooklyn,Bushwick,40.68759,-73.90727,Private room,79,3,7,2019-06-25,1.11,1,69 +31204536,Private guest suite on magnificent Brooklyn block,66813379,Reuven,Brooklyn,Crown Heights,40.66644,-73.94665,Entire home/apt,130,2,10,2019-06-22,1.95,2,96 +31205829,Bedroom in Bushwick!,6403404,Lisa,Brooklyn,Bushwick,40.69984,-73.92163,Private room,40,2,14,2019-06-25,2.28,1,54 +31205946,"Large, Bright Sunny Room in Bushwick near L train",52593429,Xavier,Brooklyn,Bushwick,40.70293,-73.9265,Private room,45,2,14,2019-06-16,2.55,2,40 +31206275,Patty’s Home,44217272,Rebeca,Bronx,Morris Heights,40.84613,-73.91668,Entire home/apt,42,2,18,2019-07-02,3.02,1,6 +31206409,Spacious 1-bedroom Apartment in Manhattan,233364799,Eva,Manhattan,Roosevelt Island,40.76314,-73.94864,Entire home/apt,100,1,21,2019-07-01,3.41,1,0 +31206698,Bay Ridge House near park and water,10198498,Heather,Brooklyn,Bay Ridge,40.63936,-74.03164,Entire home/apt,99,5,2,2019-06-23,2,1,4 +31207065,Nice Room in Sunnyside (15 min to Times Square),222886357,Grace,Queens,Sunnyside,40.73756,-73.91802,Private room,33,1,7,2019-06-16,1.11,2,0 +31207719,Sunny and cozy bedroom with a private bathroom,7535013,Hayon,Brooklyn,Bushwick,40.70406,-73.92578,Private room,90,2,12,2019-06-23,2.67,1,3 +31208021,Next to subway station: Bunkbed accommodations,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67847,-73.91244,Shared room,35,1,12,2019-06-24,1.89,17,86 +31208062,cozy bright apartment in high end building,233382915,Tzivya,Brooklyn,Bedford-Stuyvesant,40.69567,-73.95133,Entire home/apt,150,2,3,2019-06-19,0.69,1,34 +31208865,Big studio across the street from Prospect Park,52964447,Mariel,Brooklyn,Prospect-Lefferts Gardens,40.66042,-73.96129,Entire home/apt,70,2,7,2019-06-30,1.28,1,29 +31209182,LIC Spacious Bedroom in Luxury Building,131782045,Rylan,Queens,Long Island City,40.74946,-73.93854,Private room,60,5,0,,,1,0 +31209400,2 bedroom apartment in Staten Island,141524395,Myrka,Staten Island,Mariners Harbor,40.63531,-74.15789,Entire home/apt,130,2,8,2019-06-30,1.41,1,174 +31210579,Private bedroom with a personal backyard,201752118,Dishank,Brooklyn,Bedford-Stuyvesant,40.69719,-73.94315,Private room,50,7,0,,,1,0 +31211324,"Spacious, cute room in great location",233423542,Asheera,Queens,Astoria,40.76681,-73.9285,Private room,75,3,0,,,2,0 +31211375,Treehouse Brooklyn Loft,231959634,Eleanor And Alex,Brooklyn,Bushwick,40.69463,-73.92942,Private room,45,1,33,2019-07-01,5.35,2,25 +31211385,Long Island City,233417287,Felix,Queens,Long Island City,40.74248,-73.95674,Entire home/apt,150,2,3,2019-02-13,0.48,1,0 +31212220,AMAZING ENTIRE 1 BEDROOM APARTMENT (No hot water),233434401,Randy,Bronx,Longwood,40.82306,-73.90821,Entire home/apt,75,1,50,2019-06-23,8.11,1,359 +31212456,Homy Abode,233436938,Janet,Queens,Rosedale,40.65267,-73.7317,Entire home/apt,70,2,14,2019-06-28,4.72,1,105 +31212571,"Two bedrooms apt in Hell's Kitchen, NYC",201112506,Evan,Manhattan,Hell's Kitchen,40.76662,-73.98864,Entire home/apt,200,35,0,,,1,58 +31214157,Cozy private room in Manhattan,81764323,Lucas,Manhattan,Kips Bay,40.74384,-73.97852,Private room,110,2,7,2019-07-01,1.28,1,175 +31216852,Beautiful Studio in New Chelsea Building,15010630,Poma,Manhattan,Chelsea,40.74714,-74.00142,Entire home/apt,216,30,1,2019-06-30,1,1,89 +31217760,Spacious studio on museum miles by central park,20771576,Maryam,Manhattan,East Harlem,40.79158,-73.95168,Entire home/apt,100,4,0,,,2,0 +31218310,"YOUR HM AWAY FROM HM +Medical personnel, Vacation?",233485864,Jeannie,Staten Island,New Dorp Beach,40.56662,-74.10444,Private room,40,1,56,2019-07-06,9.33,2,307 +31218768,"Comfy bedroom, heart of Crown Heights",6631815,Craig,Brooklyn,Crown Heights,40.67105,-73.95451,Private room,60,2,1,2019-02-22,0.22,1,189 +31218952,*PRIME MANHATTAN*one block to 5 trains*ROOFDECK!*,2685943,Sara,Manhattan,Harlem,40.8249,-73.94585,Private room,60,1,30,2019-06-23,5.56,1,67 +31220573,Perfect Location: Times Square with skyline view,106825862,Anton,Manhattan,Hell's Kitchen,40.75953,-73.99019,Private room,308,3,0,,,1,37 +31220603,Cozy Woodhaven,1720151,Sally,Queens,Woodhaven,40.68923,-73.85304,Entire home/apt,75,1,8,2019-07-07,2.14,2,325 +31220645,Air and Light and Time and Space,646563,Brian,Brooklyn,Clinton Hill,40.68182,-73.96013,Entire home/apt,187,1,8,2019-05-13,1.30,2,0 +31220749,"Private bedroom near M train, 22 min to Manhattan!",47931146,Rachel,Queens,Ridgewood,40.70393,-73.90851,Private room,39,6,2,2019-04-03,0.55,1,0 +31221092,Central Harlem Private Room,26216172,Sergio,Manhattan,Harlem,40.81577,-73.94711,Private room,60,2,1,2019-01-07,0.16,1,0 +31221208,"Sunny 1 bedroom in Greenpoint, great location!",105584927,Lilly,Brooklyn,Greenpoint,40.72173,-73.94664,Entire home/apt,75,2,8,2019-04-07,1.30,1,0 +31221314,HAPPY HOME,33189255,Miryam,Manhattan,East Harlem,40.80467,-73.9405,Private room,45,2,0,,,1,341 +31221559,Flatbush Hideaway - Quiet and close to subway!,67345821,Jason,Brooklyn,East Flatbush,40.64445,-73.94943,Entire home/apt,33,1,29,2019-07-01,4.75,1,19 +31221589,Elegance and Comfort in Clinton Hill,646563,Brian,Brooklyn,Clinton Hill,40.68162,-73.96083,Private room,75,1,3,2019-05-28,1.70,2,0 +31221996,Private bedroom in a Historic Brownstone House,232622663,Raphael,Brooklyn,Bedford-Stuyvesant,40.68429,-73.94841,Private room,39,2,9,2019-02-08,1.45,2,0 +31223941,Neat & Tidy - East Village,1717520,Andrew,Manhattan,East Village,40.72405,-73.9845,Entire home/apt,187,3,1,2019-01-17,0.17,2,0 +31224372,Spacious and Homey Room,5666720,Jules Slutsky,Brooklyn,Crown Heights,40.67185,-73.94524,Private room,100,3,0,,,1,220 +31224624,Rose in Spanish Harlem,202587815,Willie,Manhattan,East Harlem,40.79132,-73.95083,Private room,85,2,15,2019-06-04,2.42,2,224 +31224656,Private Room with Backyard,4281300,Alex,Brooklyn,Williamsburg,40.71602,-73.94189,Private room,119,1,0,,,3,0 +31225319,Dominiques unique twin room*NYC-wifi* metro*safe,310670,Vie,Bronx,Eastchester,40.88179,-73.83455,Private room,75,2,1,2019-04-20,0.37,13,365 +31225404,Private Room/Descent Host/close to Subway for Manh,107930075,Ameet,Queens,Ozone Park,40.68436,-73.84213,Private room,50,1,1,2019-05-19,0.58,2,89 +31225706,Sugar Hill Retreat (SPECIAL OPENING PRICE!),233559664,Mordechai,Manhattan,Harlem,40.82294,-73.94453,Entire home/apt,150,3,15,2019-06-18,2.90,1,7 +31226770,Sunny Private Clean Room Downtown - steps2subway,46412380,Thanh,Manhattan,Chinatown,40.71685,-73.99074,Private room,72,1,43,2019-07-01,7.13,1,15 +31226826,Cozy Bedroom 6 mins from JFK. 35mins frm the city,137017288,Khan,Queens,Jamaica,40.68574,-73.79008,Private room,50,1,1,2019-02-07,0.20,2,36 +31227033,Cozy Br. 6 mins from JFK/ 35 mins from the city,137017288,Khan,Queens,Jamaica,40.68551,-73.79128,Private room,59,1,3,2019-03-10,0.57,2,37 +31230933,Easy access to everything in NYC!,178213591,Lilian,Manhattan,Financial District,40.70777,-74.00676,Entire home/apt,125,10,8,2019-06-28,1.30,1,270 +31231904,Serenity - home away from home,203981093,Sunshine,Brooklyn,Bushwick,40.68712,-73.91536,Entire home/apt,100,2,12,2019-06-30,2.55,1,17 +31233576,Cozy studio close to Central Park,76901881,Line,Manhattan,Upper West Side,40.78501,-73.97579,Entire home/apt,100,1,32,2019-05-24,5.16,1,0 +31234062,Perfect for 4!,40822420,Mark,Manhattan,East Harlem,40.78981,-73.942,Entire home/apt,160,5,14,2019-07-01,3.04,1,205 +31234360,"Separate PRIVATE ROOM furnished, 5 min to A train",107930075,Ameet,Queens,Woodhaven,40.69034,-73.84611,Private room,50,3,0,,,2,178 +31234496,Cozy space in Brooklyn,9270510,Andres,Brooklyn,Flatbush,40.64689,-73.95862,Private room,45,1,7,2019-06-30,1.46,1,34 +31235019,Charming West Village Apt. / Bleecker & Jones,127965755,Ethan,Manhattan,West Village,40.73251,-74.00191,Private room,90,6,7,2019-05-10,1.41,1,76 +31235120,Private bedroom in Gorgeous Tonwhouse/Backyard,232622663,Raphael,Brooklyn,Bedford-Stuyvesant,40.68412,-73.9501,Private room,39,2,3,2019-01-15,0.48,2,0 +31235309,Furnished Private Room in Apartment,233660209,Bernard,Brooklyn,Midwood,40.62568,-73.94708,Private room,60,2,0,,,1,0 +31235791,"Williamsburg 1 Bedroom, Spacious and Classy",228224011,Weston & Gabby,Brooklyn,Williamsburg,40.71359,-73.95574,Entire home/apt,251,1,17,2019-06-26,2.91,1,340 +31236046,The Princess,233665357,Sandra,Bronx,Pelham Gardens,40.86723,-73.84285,Entire home/apt,67,7,2,2019-04-01,0.38,1,172 +31237124,The Courtyard,233422217,Douglas,Manhattan,Harlem,40.82575,-73.95177,Private room,92,2,0,,,2,346 +31237303,Worldclass Casa - Sun Rm - 5 min to JFK,115136074,Tina,Queens,Springfield Gardens,40.68996,-73.74882,Private room,147,2,6,2019-07-07,1.01,3,85 +31237727,Luxurious + Chic Upper East Studio,23069554,Lillian,Manhattan,Upper East Side,40.76765,-73.95892,Entire home/apt,115,3,9,2019-07-05,1.60,1,19 +31238044,Ethelia's BnB,230465121,Raynita,Brooklyn,East Flatbush,40.65615,-73.91619,Entire home/apt,130,1,9,2019-04-07,1.65,1,189 +31238549,"Gorgeous Bedstuy Duplex: space, light and style",2235105,Sarah,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93456,Entire home/apt,209,3,0,,,1,0 +31240258,Bright Modern Room in Brooklyn,22507236,Camila,Brooklyn,Bushwick,40.69881,-73.93129,Private room,55,10,0,,,1,0 +31241736,Charming Fort Greene Garden Apartment,1459187,Geoff,Brooklyn,Clinton Hill,40.68961,-73.96839,Entire home/apt,125,14,0,,,1,0 +31242053,"Private, spacious room near airport, train & city",5592622,Christina,Queens,Astoria,40.75731,-73.91489,Private room,65,1,22,2019-06-22,4.93,5,119 +31243221,"Private room close to train, airport & the city",5592622,Christina,Queens,Astoria,40.756,-73.91386,Private room,55,1,23,2019-07-07,4.63,5,100 +31244557,Cozy room near Union Square and East Village,164228532,Vivian,Manhattan,East Village,40.73136,-73.98659,Private room,68,4,0,,,2,2 +31247718,Spacious lovely clean private room in Brooklyn,34556469,Zhansaya,Brooklyn,Gravesend,40.60663,-73.97638,Private room,50,1,0,,,2,0 +31248288,Private room in Bedstuy Brooklyn!,53298603,Yvonne,Brooklyn,Bedford-Stuyvesant,40.69678,-73.94755,Private room,55,30,2,2019-03-15,0.48,1,0 +31249784,Studio Apartment 6 minutes from JFK Airport,232251881,Lakshmee,Queens,Jamaica,40.66793,-73.78452,Private room,67,1,95,2019-07-05,15.32,8,145 +31253484,Nice and quiet Room in Apart in Astoria New York,233834659,Shearyl,Queens,Astoria,40.76976,-73.92627,Private room,50,2,18,2019-07-03,5.14,1,24 +31253968,Small Room In NY,303939,Lissette,Staten Island,Tompkinsville,40.63584,-74.08542,Private room,35,2,12,2019-06-24,2.02,6,299 +31254505,Spacious Studio Sublet in Hell's Kitchen,77657991,Dawn,Manhattan,Hell's Kitchen,40.76138,-73.99825,Entire home/apt,104,28,1,2019-04-28,0.42,1,0 +31255156,"Сдаётся с 13 Февраля-20 Марта , +В отличном раёне",14948568,Alizaveta,Brooklyn,Midwood,40.61842,-73.97111,Entire home/apt,80,35,0,,,1,0 +31255471,STYLISH 2 BEDROOM APT RIGHT ON CENTRAL PARK WEST,9293730,Inna,Manhattan,Upper West Side,40.79641,-73.96191,Entire home/apt,99,30,2,2019-06-28,0.52,16,201 +31255786,Sunny Shared Vintage Loft,806774,Ali & SweetPea,Brooklyn,Williamsburg,40.70823,-73.96685,Shared room,125,1,5,2019-06-23,2.31,2,156 +31258461,Designer 2 Bedroom Heart of Bushwick 15min to NYC,44755507,Michael,Brooklyn,Bushwick,40.69496,-73.9243,Entire home/apt,155,30,0,,,2,365 +31258508,Private Entrance Brooklyn Townhouse Garden Suite,2965005,Jennifer,Brooklyn,Williamsburg,40.71399,-73.93798,Private room,110,3,20,2019-06-28,3.26,1,98 +31259044,Private Room in Park Slope,232996930,Raymond,Brooklyn,Park Slope,40.66975,-73.98475,Private room,30,2,1,2019-01-11,0.17,1,0 +31259110,Live like a local in the heart of East Village!,233521077,Oda,Manhattan,East Village,40.72657,-73.98135,Private room,89,2,11,2019-05-28,3.03,1,1 +31262486,Amazing location with the Manhattan Skyline View!!,233315839,Kemal,Brooklyn,Williamsburg,40.72085,-73.96116,Private room,105,1,1,2019-01-27,0.18,1,0 +31262842,Cute and spacious room in prime Astoria!!,233423542,Asheera,Queens,Astoria,40.76622,-73.92897,Private room,60,4,0,,,2,0 +31263006,Great Two Bedroom Apartment in Bushwick!,233924381,Rodrigo,Queens,Ridgewood,40.70698,-73.91599,Entire home/apt,175,6,2,2019-03-24,0.40,1,365 +31263586,Sunny room in prime williamsburg location!!!!!!!,107589614,Jim,Brooklyn,Williamsburg,40.7131,-73.96004,Private room,70,3,0,,,2,188 +31264500,Lovely Chinatown Apartment,115506821,Emmett,Manhattan,Chinatown,40.71367,-73.99313,Entire home/apt,175,2,4,2019-02-09,0.71,1,0 +31265925,Large Private Furnished Patio + Cozy Indoors,229494802,Tanner,Manhattan,Chelsea,40.74891,-73.99573,Entire home/apt,299,2,8,2019-06-16,1.59,1,274 +31267046,Quiet Private Bedroom 10 min from 7 Train,11365400,Rojé,Queens,Sunnyside,40.73888,-73.92827,Private room,65,28,22,2019-06-15,4.82,2,4 +31267520,Mott Haven Dorm-Bed F,174785358,Rem,Bronx,Port Morris,40.8094,-73.93173,Shared room,28,1,17,2019-06-18,2.77,7,319 +31267560,JFK Crashpad 6 minutes away,232251881,Lakshmee,Queens,Jamaica,40.66684,-73.78289,Shared room,39,1,56,2019-07-05,9.13,8,34 +31267561,Gorgeous Upper West Side Gem with sofa bed! ,57357614,Carla,Manhattan,Upper West Side,40.77447,-73.98853,Entire home/apt,300,2,5,2019-07-05,5,1,0 +31268431,Prime Location Private Room in Queens,233755743,Jany,Queens,Elmhurst,40.73504,-73.87407,Private room,80,2,8,2019-06-03,1.54,2,125 +31268851,Brooklyn Room Near Subway (45-min from Manhattan),68740200,Eric,Brooklyn,Cypress Hills,40.67646,-73.90579,Private room,34,4,8,2019-06-30,1.33,1,58 +31269651,Brooklyn Bliss A,219104513,Kendra,Brooklyn,East Flatbush,40.65854,-73.93913,Private room,53,2,5,2019-05-07,0.91,2,191 +31269703,Heart of Jamaica Queens,81146418,Monique,Queens,Jamaica,40.68684,-73.79921,Entire home/apt,80,2,13,2019-06-15,2.36,1,87 +31269983,Lux Condo Room Close to Manhattan. WiFi & Balcony!,137358866,Kazuya,Queens,Woodside,40.74181,-73.90279,Private room,61,30,0,,,103,123 +31269990,Cute big private room with a private bathroom.,47023469,Olga,Manhattan,Upper West Side,40.79595,-73.97251,Private room,110,1,2,2019-06-23,0.60,3,6 +31270322,Private bedroom in Queens//Netflix,5691195,Aislyn,Queens,Flushing,40.72744,-73.81005,Private room,75,2,0,,,1,0 +31270742,Meyers Inn,234006406,Daniel,Manhattan,Hell's Kitchen,40.75975,-73.99533,Private room,150,1,7,2019-02-18,1.29,1,88 +31275494,Comfortable affordable room #5,20120009,Jannices,Brooklyn,Bushwick,40.68929,-73.90605,Private room,38,1,5,2019-06-19,0.82,6,7 +31276196,Large bright modern apartment in luxury building,6965682,Sharif,Brooklyn,Bushwick,40.70162,-73.93607,Entire home/apt,180,5,1,2019-03-16,0.26,1,0 +31277426,Airy & Bright Three Bedroom Apt steps from Subway,29582232,Lee And Teri,Brooklyn,Flatbush,40.64061,-73.96487,Entire home/apt,125,4,10,2019-07-02,2.78,5,84 +31280212,"Modern, spacious, & cozy Upper West Side Apartment",61295963,Kaylan,Manhattan,Upper West Side,40.78331,-73.97687,Entire home/apt,300,2,1,2019-02-20,0.22,1,188 +31280733,Williamsburg Private Room in Homey Space by Trains,23308549,John,Brooklyn,Williamsburg,40.71388,-73.95744,Private room,75,2,1,2019-02-12,0.20,1,0 +31283531,Amazing 3 Bedroom Duplex w/ Backyard,231824284,Andy & Kiera,Manhattan,East Harlem,40.79618,-73.94142,Entire home/apt,450,1,9,2019-06-01,2.21,1,312 +31283533,New York City Home w/ Full Amenities,39179346,Rooshabh,Manhattan,Midtown,40.75414,-73.96595,Entire home/apt,110,1,8,2019-07-01,4.00,1,238 +31283569,Cozy sunny room in Washington Heights,80054574,Esaú,Manhattan,Washington Heights,40.85547,-73.92912,Private room,33,3,1,2019-01-17,0.17,1,0 +31283904,Central & Homey East Village One Bedroom,230061564,Jason & Becca,Manhattan,East Village,40.72846,-73.98457,Entire home/apt,399,1,10,2019-06-30,1.67,1,332 +31284078,Charming new renovated private room,234111066,Isidora,Manhattan,Lower East Side,40.72296,-73.99259,Private room,90,1,1,2019-01-07,0.16,2,0 +31284182,1 bd. Apartment in central Greenpoint,1694324,Rikki,Brooklyn,Greenpoint,40.72392,-73.948,Entire home/apt,175,4,3,2019-04-22,0.58,1,0 +31285092,Brooklyn Palace,216437098,Trevor,Brooklyn,Bedford-Stuyvesant,40.68341,-73.92154,Entire home/apt,140,2,7,2019-06-08,1.23,2,281 +31285302,Beautiful 1bedroom apt in Williamsburg,17126336,Ines,Brooklyn,Williamsburg,40.71998,-73.96283,Entire home/apt,190,6,4,2019-04-21,0.88,1,59 +31285562,Charming East Village one-bedroom,129034868,Maria,Manhattan,East Village,40.72943,-73.98443,Entire home/apt,111,4,3,2019-05-09,0.80,1,37 +31285648,"1 bedroom in roommates apartment +In Williamsburg",3147732,Ofek,Brooklyn,Williamsburg,40.72011,-73.94487,Private room,45,1,2,2019-02-17,0.40,1,0 +31285720,cozy private room in upper east side,10770318,Yao Yi,Manhattan,Upper East Side,40.77959,-73.94685,Private room,65,1,17,2019-06-13,4.18,1,19 +31286946,Spacious large bedroom room,88484548,Margaret,Queens,Queens Village,40.70685,-73.73583,Private room,70,2,1,2019-01-21,0.18,1,0 +31287343,Sugar Hill Harlem Apartment,234143954,Derek,Manhattan,Harlem,40.82915,-73.94453,Private room,50,1,0,,,1,29 +31287498,Cozy Clean 1BR 10min to LGA/Flushing,234147066,Layla,Queens,College Point,40.77981,-73.84242,Entire home/apt,69,1,19,2019-06-22,3.93,1,212 +31287736,Herbalist’s Home,17262002,Elizabeth,Brooklyn,Greenpoint,40.73536,-73.9581,Private room,70,1,1,2019-01-16,0.17,1,0 +31287886,Spacious Bright Manhattan Home Near The Park,59051417,Kai,Manhattan,East Harlem,40.79465,-73.94935,Private room,399,6,1,2019-02-12,0.20,6,230 +31288513,Cozy Bedroom Steps From The 1 Train,67123961,Carole,Manhattan,Harlem,40.82057,-73.95511,Private room,55,2,0,,,2,0 +31289259,NYC Private Bedroom in Spanish Harlem,213379221,Shay,Manhattan,East Harlem,40.79628,-73.94126,Private room,90,2,2,2019-04-15,0.53,1,168 +31290477,Beautiful Bushwick Studio Intimate Gatherings,231691559,Karen,Brooklyn,Williamsburg,40.71335,-73.93546,Entire home/apt,500,1,5,2019-07-07,0.88,1,365 +31290728,Sunnyside,234178917,Kaan,Queens,Sunnyside,40.746,-73.91393,Entire home/apt,160,2,1,2019-04-30,0.43,1,310 +31291169,Cosy studio in the heart of Manhattan,52728780,Aditi,Manhattan,Midtown,40.75341,-73.97116,Entire home/apt,200,7,0,,,1,0 +31291730,NY HIGH LINE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75619,-73.99797,Private room,209,1,19,2019-06-16,3.13,8,81 +31291979,"Gorgeous, Plant Filled Oasis & Private Terrace",4657612,Elien,Manhattan,Lower East Side,40.71727,-73.98634,Entire home/apt,120,1,4,2019-06-29,0.67,1,36 +31292343,Best East Village Location,12965214,Alana,Manhattan,East Village,40.7297,-73.97959,Private room,99,2,1,2019-02-01,0.19,1,0 +31292656,Brand New and Modern Room in Brooklyn,22552061,Nikol,Brooklyn,Bushwick,40.6942,-73.92598,Private room,80,1,1,2019-02-17,0.21,1,168 +31292757,NY BROADWAY DOUBLE DOUBLE ROOM,224815152,Hudson River Hotel,Manhattan,Hell's Kitchen,40.75634,-73.99641,Private room,249,1,6,2019-06-16,1.06,8,89 +31293545,Sunny Hamilton Heights Apartment,3951033,Folami,Manhattan,Harlem,40.83032,-73.9421,Entire home/apt,120,5,7,2019-06-08,1.69,1,84 +31294112,Empire Aparment,234211879,Alfredo,Brooklyn,Bedford-Stuyvesant,40.68304,-73.92175,Entire home/apt,140,2,12,2019-06-18,2.02,1,284 +31294395,Cozy studio in Manhattan!,51812548,Marko,Manhattan,Upper East Side,40.78047,-73.95152,Entire home/apt,110,1,3,2019-04-14,0.51,1,5 +31294712,Bushwick Loft Apartment w/ Stunning Manhattan View,1180631,Dale,Brooklyn,Bushwick,40.70426,-73.92111,Entire home/apt,200,4,0,,,1,66 +31295111,Sunny Spacious 2BR Apt in Heart of Bushwick,234214434,Mike,Brooklyn,Bushwick,40.70146,-73.92841,Entire home/apt,145,30,7,2019-06-25,1.46,4,218 +31295524,Cozy Modern Getaway 30 mins from Manhattan (1Bdrm),232283561,Beverline,Bronx,East Morrisania,40.83025,-73.89134,Private room,70,1,1,2019-01-28,0.19,3,81 +31295741,LUXURIOUS EXPERIENCE IN TIME SQUARE NYC,234230740,Wanderlust,Manhattan,Theater District,40.75638,-73.98834,Entire home/apt,260,5,0,,,1,0 +31296410,Private bedroom in cozy apt near Central Park,535343,Chad,Manhattan,Harlem,40.8014,-73.9578,Private room,60,2,12,2019-06-24,2.35,1,1 +31296956,Modern 2 bdr penthouse 300 feet from subway,166634,Lou,Queens,Astoria,40.75518,-73.9143,Entire home/apt,150,5,0,,,5,0 +31297452,Luxury NEW two level suite (Duplex) in Chelsea,99683151,Christina,Manhattan,Chelsea,40.74285,-74.00196,Entire home/apt,190,3,15,2019-06-11,2.54,3,293 +31301399,"Elegant, Mid Century Modern Apt (Private Room)",12618858,Alimah,Brooklyn,Bedford-Stuyvesant,40.68313,-73.92833,Private room,70,1,5,2019-06-21,0.85,2,111 +31303661,New York Safe Haven (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74535,-73.97898,Shared room,39,2,0,,,3,348 +31304303,"Entire Apartment, Nice & Quiet, Perfect for Three",20517979,David,Manhattan,Upper East Side,40.76643,-73.96181,Entire home/apt,115,1,3,2019-06-15,1.55,1,5 +31304312,Charming studio w/ lots of light!,234297980,Tucker,Manhattan,Upper East Side,40.77441,-73.95571,Entire home/apt,200,2,0,,,1,0 +31305014,"Duane Street, Upscale Tribeca Studio",22541573,Ken,Manhattan,Tribeca,40.71509,-74.00566,Entire home/apt,210,30,0,,,87,262 +31305551,Classic and Cozy Brooklyn Brownstone Apartment 1BR,2108671,Laura,Brooklyn,Bedford-Stuyvesant,40.68904,-73.93643,Entire home/apt,70,4,0,,,1,0 +31306674,Spacious and Welcoming In Hip Bushwick,59470806,Michelle,Brooklyn,Bushwick,40.69451,-73.92213,Entire home/apt,135,4,10,2019-07-07,1.80,1,26 +31307385,Stylish One Bedroom in Chelsea,234115186,Melanie,Manhattan,Chelsea,40.74412,-73.99684,Entire home/apt,275,2,0,,,1,0 +31307651,TIME SQ WEST- 2 Bunk Beds for 4 People,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75681,-73.99865,Private room,199,1,1,2019-04-18,0.36,30,362 +31308318,Bedstuy Moroccan Room and Photo Studio,9783911,Lashaia,Brooklyn,Bedford-Stuyvesant,40.68661,-73.91982,Private room,200,2,0,,,1,0 +31308773,Light & Airy Williamsburg Retreat,234338317,Anna,Brooklyn,Williamsburg,40.71105,-73.94563,Private room,80,1,1,2019-06-23,1,1,86 +31309714,COSY BEDROOM in CITY CENTER,234338206,Arkadiy,Manhattan,Hell's Kitchen,40.76499,-73.99267,Private room,140,1,9,2019-06-30,1.70,2,0 +31310624,Shoot in Eccentric Loft with tons of Natural Light,33655,Sruthi,Brooklyn,Columbia St,40.68343,-74.00371,Entire home/apt,1080,1,0,,,2,167 +31311422,"AMAZING, UNIQUE, ONE OF A KIND VILLAGE APARTMENT!",234357462,Marina,Manhattan,West Village,40.73245,-74.00355,Entire home/apt,225,2,11,2019-07-06,2.21,1,280 +31313010,Creative artist apartment in Williamsburg,10196479,Vanessa,Brooklyn,Williamsburg,40.71285,-73.95558,Private room,45,3,1,2019-01-22,0.18,1,0 +31313015,2000 sq ft Unique Cozy Art Home with Private Room,198214941,Angeline,Brooklyn,Bushwick,40.69085,-73.90937,Private room,150,1,0,,,1,269 +31313105,A Spacious & Blissful Stay in Queens!!!,7797973,Sonya,Queens,Springfield Gardens,40.66014,-73.7582,Entire home/apt,175,2,19,2019-06-29,4.45,1,147 +31313153,small room in Manhattan. Close to major nyc sites,37280441,Mary,Manhattan,Morningside Heights,40.81053,-73.96123,Private room,53,1,1,2019-01-09,0.17,2,0 +31313376,"15min from Times Square, 3 minutes from Subway!",11223389,Ioannis,Queens,Astoria,40.75802,-73.92851,Private room,44,2,14,2019-06-30,2.98,1,47 +31313806,"new, private entrance, pvt room and pvt bath",49101398,Nicholas,Brooklyn,Gravesend,40.59741,-73.9752,Private room,59,2,18,2019-07-07,3.16,3,118 +31313870,Modern bedroom with view in a high rise building,22100836,Hana,Manhattan,Gramercy,40.73772,-73.98758,Private room,65,1,11,2019-05-27,1.79,3,0 +31313987,Williamsburg Gem,121926104,Lily,Brooklyn,Williamsburg,40.71606,-73.9593,Private room,65,2,0,,,1,0 +31314273,"Private bedroom in the Upper West Side, Manhattan",6391001,Maria,Manhattan,Upper West Side,40.8024,-73.96496,Private room,59,1,39,2019-06-30,6.50,1,106 +31314329,203 E175th,115832915,David,Bronx,Mount Hope,40.8476,-73.90594,Private room,50,1,0,,,1,0 +31315168,Brooklyn Bed,5800174,Rena,Brooklyn,Prospect Heights,40.67632,-73.96617,Private room,70,2,17,2019-06-30,2.82,1,26 +31315296,Cozy/Private Room in Park Slope,84796432,Lissette,Brooklyn,Sunset Park,40.66005,-73.99316,Private room,59,1,17,2019-06-29,4.40,1,109 +31315385,"Ideal loc, 2 bedroom apt, East Village, Union Sq",227854504,Jully,Manhattan,Gramercy,40.73268,-73.98399,Entire home/apt,199,1,26,2019-06-30,4.48,1,72 +31315479,Chic Eclectic Midtown Apartment,42037177,Larissa,Manhattan,Midtown,40.75494,-73.96437,Private room,300,3,2,2019-02-03,0.33,1,365 +31315936,Large room near express trains & Central Park,10746800,Julian,Manhattan,Upper West Side,40.79471,-73.96918,Private room,61,4,2,2019-02-22,0.37,1,0 +31315980,Comfortable room Lower East Side. AC,17328806,Michael,Manhattan,Lower East Side,40.7179,-73.98192,Private room,90,2,8,2019-06-17,2.55,1,324 +31315991,Large Williamsburg room,195650850,Jasmine,Brooklyn,Williamsburg,40.71218,-73.94616,Private room,60,3,1,2019-03-30,0.30,1,0 +31316654,Luxury One Bedroom Apartment (Midtown Manhattan),230077977,Taisiya,Manhattan,Hell's Kitchen,40.76509,-73.99508,Entire home/apt,179,6,1,2019-01-23,0.18,1,3 +31316889,Private Midtown 2 BR Apt Times Sq Theater District,40245658,Alexa,Manhattan,Hell's Kitchen,40.76325,-73.99012,Entire home/apt,199,2,12,2019-07-02,2.83,3,110 +31317255,Zen! Life! Love! Liberation! Color! Creative!,234417391,Letisha,Manhattan,Upper West Side,40.79249,-73.96627,Private room,150,2,5,2019-06-09,1.90,1,20 +31317645,3 Beds in Private Room 3 20 min to City,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69392,-73.94904,Private room,85,2,11,2019-06-09,2.39,4,314 +31317744,SERETSE'S INN,234423593,Donna,Bronx,Melrose,40.82433,-73.91619,Entire home/apt,80,5,12,2019-07-06,2.26,1,91 +31318780,Enjoy a luxury suite during your Manhattan visit!,234172613,Eugenia,Manhattan,Midtown,40.76425,-73.9802,Private room,300,3,0,,,1,0 +31319056,Sunny and cozy Williamsburg apartment.,3807069,Deva,Brooklyn,Williamsburg,40.71125,-73.95935,Private room,100,2,4,2019-05-05,1.05,1,0 +31319316,Newly decorated room close to Elmhurst Ave (M.R),137358866,Kazuya,Queens,Elmhurst,40.74325,-73.87832,Private room,35,30,1,2019-05-18,0.58,103,252 +31319331,"A Painters Canvas, Only 25 mins to Time Square.",234376122,Earl,Bronx,Highbridge,40.83651,-73.92269,Entire home/apt,74,2,19,2019-06-28,3.85,1,183 +31319380,Spacious one bedroom apartment upper east side,234440538,Fatima,Manhattan,Upper East Side,40.77905,-73.9535,Entire home/apt,150,1,0,,,1,0 +31320905,Manhattan artist home - Gorgeous private room,34915339,Michael,Manhattan,Upper East Side,40.77951,-73.95075,Private room,100,1,32,2019-06-24,5.45,4,184 +31322232,Luxury 4 BR Apartment-25 minutes from the city,2930761,Despina,Queens,Fresh Meadows,40.75085,-73.7854,Entire home/apt,114,2,7,2019-07-05,3.23,1,359 +31322379,PRIVATE BR 5min to TIMES SQ and COLUMBUS CIRCLE,234338206,Arkadiy,Manhattan,Hell's Kitchen,40.76358,-73.99361,Private room,140,1,4,2019-04-06,0.74,2,0 +31324327,CENTRAL PARK NORTH,234483148,Makis,Manhattan,Harlem,40.80334,-73.94681,Private room,77,2,31,2019-07-07,5.14,2,106 +31325866,Amazing Soho Apartments with Private Backyard,163035332,Pirin,Manhattan,SoHo,40.72273,-74.00479,Entire home/apt,1299,2,15,2019-06-10,2.62,3,273 +31328535,FORT GREENE THE NEW HEART BEAT OF BROOKLYN!,12865261,Lisa,Brooklyn,Fort Greene,40.68994,-73.96952,Entire home/apt,170,3,5,2019-07-02,2.54,1,304 +31328877,Private suite with two bedrooms and adjacent bath,1512565,Jean,Manhattan,East Harlem,40.788,-73.953,Private room,175,2,3,2019-06-03,0.81,3,105 +31330713,True 2Br 3beds Apt with fast WIFI in Times Square,234381268,Erica,Manhattan,Hell's Kitchen,40.75483,-73.99405,Entire home/apt,156,1,21,2019-06-19,3.71,1,46 +31331255,Central Bedstuy Apt,234543110,Marclynn,Brooklyn,Bedford-Stuyvesant,40.68433,-73.94392,Entire home/apt,110,3,0,,,1,63 +31331349,Mommy_Ty,225302090,Taisha,Manhattan,Washington Heights,40.83307,-73.93515,Private room,100,80,0,,,1,179 +31332143,Good room in Brooklyn super close to Subways C,175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68062,-73.90716,Private room,45,1,13,2019-06-24,2.31,6,170 +31332746,private room,221574115,Ahmet,Brooklyn,Bensonhurst,40.61203,-74.00181,Private room,40,10,0,,,2,0 +31333074,Miltons place,14855509,Milton,Manhattan,Harlem,40.81438,-73.94782,Entire home/apt,110,4,13,2019-06-30,2.60,2,197 +31333606,Lovely Spacious King Size Bedroom in Manhattan,59051417,Kai,Manhattan,East Harlem,40.79554,-73.94835,Private room,114,3,13,2019-06-02,2.23,6,50 +31334292,Luxury studio in Manhattan close to everything,229332180,Lisa,Manhattan,Hell's Kitchen,40.75483,-73.99689,Entire home/apt,135,4,0,,,1,0 +31336040,Queens Rm in Celebrity's Home,213816392,DuChess,Queens,Queens Village,40.70755,-73.74421,Private room,35,1,17,2019-06-24,2.79,3,354 +31336245,Jfk crash pad 1-2persons in SHARED space,232251881,Lakshmee,Queens,Jamaica,40.66715,-73.78346,Shared room,39,1,65,2019-07-07,10.60,8,320 +31336368,One Bedroom in Central NYC location,204731291,Bridgette,Brooklyn,East Flatbush,40.64844,-73.95032,Private room,65,2,4,2019-06-10,1.50,1,178 +31336375,Brooklyn Room - 20 min from Manhattan,234596452,Laura,Brooklyn,Bushwick,40.70195,-73.92257,Private room,85,1,0,,,1,0 +31336763,Lovely Bright Queen Size Private Bedroom in NYC,59051417,Kai,Manhattan,East Harlem,40.7943,-73.95003,Private room,116,3,17,2019-06-02,2.90,6,42 +31337900,Cozy Clean Private Bedroom Near Central Park,59051417,Kai,Manhattan,East Harlem,40.79575,-73.9496,Private room,101,3,10,2019-06-01,1.89,6,62 +31339496,"Walk to the ""US OPEN""!",131808888,Renee,Queens,Flushing,40.74633,-73.82975,Entire home/apt,200,1,12,2019-06-15,4.50,1,139 +31339548,Bedroom in shared luxury apartment in East Village,11519866,Gordon,Manhattan,East Village,40.72262,-73.98515,Private room,85,1,7,2019-04-08,1.48,1,0 +31339600,Massive Room in Triplex Loft,123672154,Abdes,Brooklyn,Greenpoint,40.73386,-73.95294,Private room,70,1,3,2019-02-17,0.50,2,0 +31340282,SPACIOUS Modern APT in Greenpoint/Williamsburg,155109689,Dolores,Brooklyn,Greenpoint,40.73369,-73.95197,Entire home/apt,172,2,9,2019-06-15,1.61,2,281 +31340283,2br - The Heart of NYC: Manhattans Lower East Side,4382127,Matt,Manhattan,Lower East Side,40.7198,-73.98566,Entire home/apt,9999,30,0,,,1,365 +31340315,1 BEDROOM ASTORIA APARTMENT / 15 min to Manhattan,34685168,Kijin,Queens,Astoria,40.76724,-73.9232,Entire home/apt,120,3,0,,,1,0 +31340539,Travel alone? Stay like at your friend's house!,207173529,Tamara,Manhattan,Inwood,40.86772,-73.92057,Private room,65,1,2,2019-04-14,0.64,1,0 +31340666,Exclusive 1 bedroom apartment by time square nyc,22251283,Nir,Manhattan,Hell's Kitchen,40.7558,-73.99376,Entire home/apt,115,30,1,2019-02-15,0.21,4,50 +31340743,Suite with stunning view in convenient location,5838825,Isa,Manhattan,Hell's Kitchen,40.75599,-73.99185,Private room,200,3,0,,,1,0 +31340955,Private Entrance + Sunny Spacious Room in 2BR Apt,234214434,Mike,Brooklyn,Bushwick,40.70006,-73.92902,Private room,60,30,0,,,4,191 +31341166,"Stay like a NYker - Cheap, clean and close to All",137501374,LKL Rental,Queens,Elmhurst,40.74057,-73.86975,Private room,25,1,17,2019-06-20,2.79,3,231 +31341298,Private Entrance + Sunny Spacious Room in 2BR Apt,234214434,Mike,Brooklyn,Bushwick,40.70061,-73.92869,Private room,68,30,0,,,4,191 +31341476,"Tight budget tours NYC? Cheap, Clean and close all",137501374,LKL Rental,Queens,Elmhurst,40.74038,-73.86964,Shared room,19,1,15,2019-06-22,2.78,3,236 +31350702,Private House in Brooklyn,14671652,Marlon,Brooklyn,Bedford-Stuyvesant,40.69126,-73.95285,Entire home/apt,250,14,0,,,1,364 +31351908,The Industrial LOFT #1 NoHo. - Great Location!,108029974,Agustina,Manhattan,NoHo,40.72833,-73.99331,Entire home/apt,495,6,1,2019-04-08,0.33,4,52 +31352270,The Industrial LOFT #2 NoHo. - Great Location!,108029974,Agustina,Manhattan,NoHo,40.72811,-73.99381,Entire home/apt,525,6,5,2019-06-02,1.76,4,63 +31353429,"Huge Fully Equipped Apt, DM Building, Great Area",21412569,Mike,Manhattan,Murray Hill,40.74533,-73.97685,Entire home/apt,395,5,1,2019-04-18,0.37,1,363 +31353678,"Colorful, Cozy, Bright Brooklyn Studio PetFriendly",110902412,Anna,Brooklyn,Prospect-Lefferts Gardens,40.65841,-73.96121,Entire home/apt,82,3,14,2019-07-02,3.21,1,75 +31354518,Private Room in Brooklyn Loft Oasis,1973165,Rob,Brooklyn,Greenpoint,40.73344,-73.95851,Private room,100,2,3,2019-06-26,0.53,1,100 +31354965,Sun-Drenched Artistic Uptown Studio,63411066,Caleb,Manhattan,Washington Heights,40.8334,-73.94327,Entire home/apt,70,2,11,2019-02-22,1.84,1,0 +31355075,Brooklyn sweet dreams,234776583,Misael,Brooklyn,Bushwick,40.70138,-73.91556,Entire home/apt,100,2,8,2019-06-18,1.43,1,342 +31355285,Cozy room 2 min walk to subway near mall,218336964,Wei,Queens,Rego Park,40.73176,-73.8702,Private room,35,4,10,2019-06-29,1.99,4,11 +31355295,Private Sunny Room (D) in Historic Townhouse,28428851,Christine,Brooklyn,East Flatbush,40.65144,-73.94659,Private room,80,2,0,,,2,27 +31356462,LAST MINUTE STAY IN WARM COZY ROOM,4233057,Hajah,Manhattan,East Harlem,40.79737,-73.93499,Private room,100,2,0,,,3,365 +31356710,Weekday Williamsburg Dreamhouse,2678122,Tasha,Brooklyn,Williamsburg,40.71708,-73.94852,Entire home/apt,120,3,0,,,3,0 +31357191,"Prime 2BR in GreenPoint, Quiet, Large Living Space",15817323,Kelly,Brooklyn,Greenpoint,40.7282,-73.9506,Entire home/apt,175,2,8,2019-03-19,1.45,1,0 +31357323,Great find 2 bedrooms 20minutes from Times Square,25134822,Irena,Queens,Astoria,40.7702,-73.9261,Entire home/apt,130,1,9,2019-06-24,4.22,2,162 +31358401,Quiet cozy room in Prospect Heights,73640551,Courtney,Brooklyn,Prospect Heights,40.6771,-73.97174,Private room,55,2,21,2019-05-10,3.60,2,0 +31358547,"LUXE 1BR+Bath (private) in New, Spacious 2BR",16713332,Tabea,Brooklyn,Bushwick,40.69853,-73.93098,Private room,65,10,0,,,2,0 +31359053,Affordable luxurious 2 bedroom apartment.,234823585,Anthony,Brooklyn,Kensington,40.64481,-73.97318,Entire home/apt,100,2,15,2019-07-07,2.46,1,66 +31359630,Entire cozy Manhattan studio close to everything,234831342,Emma,Manhattan,Hell's Kitchen,40.7566,-73.99725,Entire home/apt,139,10,0,,,1,0 +31360128,Cute & Cozy Studio in the heart of East Village,234836860,Natti,Manhattan,East Village,40.72482,-73.98242,Entire home/apt,105,4,6,2019-07-01,1.14,1,83 +31360817,Cozy Space in Bay Ridge,767346,Celeste,Brooklyn,Fort Hamilton,40.61693,-74.03136,Private room,90,2,6,2019-06-03,2.77,1,0 +31361356,Cozy Private Room in the heart of Bushwick,22651136,Isaac & Irene,Brooklyn,Bushwick,40.69327,-73.92456,Private room,60,1,18,2019-06-27,3.46,1,29 +31362232,Your dream 2BR/2BA home in Park Slope!,118971,Evelyn,Brooklyn,South Slope,40.66743,-73.98963,Entire home/apt,300,2,16,2019-07-01,3.75,3,92 +31362276,brooklyn charmer,18683197,Uzi,Brooklyn,Sheepshead Bay,40.58449,-73.94132,Entire home/apt,179,7,0,,,1,342 +31364352,"NYC, East 108th st, private bed room, female only",24920992,Takuya,Manhattan,East Harlem,40.79241,-73.94132,Private room,70,2,3,2019-06-18,0.54,1,0 +31365313,Large 1 bedroom in SOHO,101890546,Sam,Manhattan,Little Italy,40.71916,-73.99754,Entire home/apt,229,1,3,2019-02-16,0.53,1,362 +31365591,Park&walk2Boat! See LadyLiberty&DTNY all for free!,233541916,James,Staten Island,St. George,40.64118,-74.08401,Private room,100,1,0,,,1,0 +31369363,"Private room Greenpoint, Brooklyn NY",19019393,Jana,Brooklyn,Greenpoint,40.72615,-73.94592,Private room,49,3,0,,,1,0 +31369708,ROOMS ONE and TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68537,-73.87442,Private room,250,3,0,,,3,364 +31370245,Beautiful Room in Brooklyn NY,234930202,Ronnie,Brooklyn,Canarsie,40.63314,-73.89739,Private room,60,1,3,2019-04-08,0.49,1,86 +31370305,ROOM 1,226036723,Ravita,Brooklyn,Cypress Hills,40.68522,-73.873,Private room,125,3,2,2019-03-17,0.42,3,180 +31370452,ROOM TWO,226036723,Ravita,Brooklyn,Cypress Hills,40.68487,-73.87254,Private room,125,3,0,,,3,364 +31377088,Clean Quiet Prvt Rm Prvt Bathroom in Midtown,234986384,Eddie,Manhattan,Hell's Kitchen,40.76318,-73.9942,Private room,109,5,17,2019-07-01,3.89,1,35 +31377252,Huge Apartment in TriBeCa,7029525,Sagar,Manhattan,Tribeca,40.71509,-74.00779,Entire home/apt,400,3,1,2019-02-17,0.21,1,0 +31377477,Cozy Unique Artist Loft in East Williamsburg,16622969,Michael,Brooklyn,Williamsburg,40.70259,-73.93535,Private room,45,2,8,2019-06-26,1.35,1,0 +31378549,Sonder | 180 Water | Chic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70768,-74.00603,Entire home/apt,197,29,2,2019-06-02,0.51,327,334 +31379248,"Cozy, Sunny Franklin Ave 1-Bedroom with a Piano",10032762,Kristina,Brooklyn,Crown Heights,40.67612,-73.95856,Entire home/apt,85,2,2,2019-06-23,0.85,1,6 +31379452,Sunlit Williamsburg Studio Right Next to the L!,24269944,Talia,Brooklyn,Williamsburg,40.71355,-73.95895,Entire home/apt,120,14,4,2019-04-08,0.66,1,0 +31379967,Sunny Long Island City 2bed close to manhattan,235008186,Luz,Queens,Astoria,40.7548,-73.91364,Entire home/apt,170,4,10,2019-06-15,2.07,1,97 +31380037,Duplex in Brooklyn,131569457,Nikki,Brooklyn,Bushwick,40.68755,-73.90887,Shared room,40,4,0,,,1,0 +31381103,Private Modern bedroom 12 minutes to Midtown,104913801,Luis,Queens,Long Island City,40.75733,-73.94176,Private room,55,2,12,2019-06-30,2.05,2,81 +31381171,JFK Studio Hideaway,47409152,Sherra,Queens,St. Albans,40.68623,-73.76209,Entire home/apt,125,1,9,2019-06-17,1.65,1,344 +31382465,Modern Studio near Bushwick & Train,59808986,Elen,Queens,Ridgewood,40.69766,-73.90354,Entire home/apt,100,1,42,2019-07-06,7.12,3,121 +31382878,Private Studio apartment in the west village,226960918,Pamela,Manhattan,Chelsea,40.73934,-74.00146,Entire home/apt,180,3,2,2019-06-21,2,1,173 +31383493,Cozy bedroom in spacious Brooklyn apartment.,166432964,Yasmin,Brooklyn,Bedford-Stuyvesant,40.69216,-73.95714,Private room,40,14,0,,,1,0 +31383763,Newly Renovated 3BR in Bushwick,36012265,Ada,Brooklyn,Williamsburg,40.70471,-73.92957,Entire home/apt,156,30,0,,,7,126 +31386277,NEW Charming Private Floor - 15min to Manhattan!,136807581,April & Tom,Queens,Ditmars Steinway,40.77749,-73.91652,Entire home/apt,99,2,20,2019-07-01,3.75,1,0 +31387609,"Big basement apartment, very close to subway!",235073206,Julianna,Manhattan,Harlem,40.8197,-73.94576,Entire home/apt,145,1,28,2019-06-18,5.28,4,169 +31388229,Book TODAY! Large 3br with lots of space in the BX,193626078,Andy,Bronx,Belmont,40.85387,-73.89384,Entire home/apt,247,2,15,2019-06-30,3.17,3,322 +31388248,"Bohemian Open Loft +Williamsburg/Bushwick close 2 L",234961480,Janette,Brooklyn,Williamsburg,40.70474,-73.94423,Private room,120,1,8,2019-07-01,2.79,1,80 +31388942,"Huge private room with a view, close to everything",154335207,Christopher,Manhattan,East Harlem,40.80139,-73.94042,Private room,70,5,1,2019-06-12,1,1,65 +31389120,"New, Clean, and Spacious 3 Bedroom Apartment",234869359,Alan,Brooklyn,Bushwick,40.68815,-73.91289,Entire home/apt,80,2,21,2019-06-24,3.71,1,154 +31389369,SoHo Charm - Entire 2-br apartment,22322931,Maria Bonde,Manhattan,SoHo,40.72672,-74.00066,Entire home/apt,200,2,1,2019-01-20,0.18,1,0 +31389481,NEW YORK CITY!!! MANHATTAN!!!,151300770,Joe,Manhattan,Upper East Side,40.77811,-73.95186,Private room,150,5,6,2019-06-12,1.73,4,280 +31389656,NYC LUXURY3 BEDROOMS IN MIDTOWN EAST& GYM& BALCONY,170372974,Inbal,Manhattan,Murray Hill,40.74579,-73.9726,Entire home/apt,599,4,11,2019-06-30,2.23,1,140 +31389728,Full Floor One Bedroom Apt in Manhattan,235102134,Titus,Manhattan,Harlem,40.80652,-73.94899,Entire home/apt,188,3,4,2019-05-31,1.18,1,253 +31389838,The Perfect Stay in West Village,15074983,Kav,Manhattan,West Village,40.73169,-74.00214,Private room,110,7,13,2019-06-21,2.23,1,13 +31389928,Brooklyn Beauty,9453700,Jillian,Brooklyn,Boerum Hill,40.68612,-73.98013,Private room,99,1,15,2019-06-23,2.63,1,149 +31390350,Room in a beautiful chelsea apt. w/ doorman,7285648,Josh,Manhattan,Chelsea,40.74618,-74.00569,Private room,100,1,0,,,3,0 +31391466,Spacious 3 bedroom apt in Williamsburg,235115405,New York Italians,Brooklyn,Williamsburg,40.70967,-73.95249,Private room,70,2,8,2019-06-29,1.57,2,8 +31391642,Spacious East Harlem Room,163510250,Munyaradzi,Manhattan,East Harlem,40.78754,-73.94186,Private room,75,1,6,2019-05-30,2.95,1,0 +31393901,New apt so I have the basic things for the moment.,234905483,Yerriz,Bronx,Mount Hope,40.8461,-73.90883,Private room,30,2,14,2019-06-01,3.28,1,176 +31394757,AWESOME CONVERTED 1BR in FiDi,54689007,Ana,Manhattan,Financial District,40.70889,-74.00701,Entire home/apt,180,10,0,,,3,54 +31397084,LES Luxury Studio! with Private Outdoor Terrace!!,22412963,Anne,Manhattan,Lower East Side,40.71805,-73.98675,Entire home/apt,225,25,22,2019-06-30,3.63,3,268 +31399985,Modern bedroom with queen size bed,234111066,Isidora,Manhattan,Lower East Side,40.72166,-73.98842,Private room,125,5,0,,,2,0 +31400005,"Cute, simple & cheap studio. Great location UES!",87348589,Hana,Manhattan,Upper East Side,40.77769,-73.94836,Entire home/apt,130,3,3,2019-03-04,0.64,1,0 +31400403,Hamilton Heights,16683574,Delphine And Michael,Manhattan,Harlem,40.82823,-73.94971,Entire home/apt,145,30,0,,,2,357 +31403932,"Go to NYC? Stay with us. Cozy, Clean &Close all",137501374,LKL Rental,Queens,Elmhurst,40.73998,-73.86802,Private room,28,1,12,2019-06-24,3.03,3,236 +31404481,Convenient nook,1495021,Lida,Queens,Sunnyside,40.73618,-73.92016,Private room,49,31,0,,,2,281 +31405515,"ONLY WOMEN, CAMAS PARA MUJERES EN QUEENS",215778245,Jessy & Christian,Queens,Corona,40.74071,-73.86687,Private room,40,2,5,2019-04-15,1.15,6,306 +31405999,"Serene FiDi 1BR w/ Gym, Doorman + Roof deck by Blueground",107434423,Blueground,Manhattan,Financial District,40.70491,-74.00978,Entire home/apt,271,30,0,,,232,331 +31407481,1BR beautiful apartment in the AMAZING Bushwick :),158596887,Gal,Brooklyn,Bushwick,40.70192,-73.91556,Entire home/apt,100,5,0,,,2,0 +31408487,Sunny Designer Apartment in East Village,23862648,Cecily,Manhattan,East Village,40.73065,-73.98523,Entire home/apt,88,2,18,2019-06-23,3.88,1,5 +31409073,The Hudson,233422217,Douglas,Manhattan,Harlem,40.82645,-73.95235,Private room,86,3,1,2019-04-29,0.42,2,310 +31409154,Great Location Cozy Apt. w/ Private Bath,198195140,Lucy,Queens,Long Island City,40.74755,-73.93878,Private room,55,1,11,2019-06-02,2.92,2,7 +31409410,Wyndham Midtown New-York,207618240,Johanne,Manhattan,Midtown,40.75225,-73.97132,Private room,300,3,0,,,1,338 +31409612,Tremendous Views - Greenpoint,56061729,Dennis,Brooklyn,Greenpoint,40.73421,-73.95318,Entire home/apt,125,2,8,2019-06-10,1.37,1,188 +31409739,Stunning triplex in East Williamsburg,20233597,Peter,Brooklyn,Williamsburg,40.70952,-73.9435,Entire home/apt,200,6,2,2019-06-24,2,1,49 +31410637,Charming Harlem Apartment,70184008,Evan,Manhattan,Harlem,40.82964,-73.94271,Entire home/apt,80,2,2,2019-02-02,0.37,1,189 +31411210,Affordable & Sunny Crown Heights Room,7730748,Wendy,Brooklyn,Crown Heights,40.67431,-73.95847,Private room,45,5,0,,,1,0 +31411380,Bright Sunny Manhattan Room in Shared apartment,34399492,Charles,Manhattan,Harlem,40.8166,-73.9407,Private room,80,3,13,2019-06-23,3.45,1,6 +31411615,Serenity Studio in East Harlem,4208096,Liv,Manhattan,East Harlem,40.7857,-73.94578,Entire home/apt,99,1,20,2019-07-02,4.23,1,81 +31412174,Beautifully decorated cozy Harlem home.,552627,Brandy,Manhattan,Harlem,40.82503,-73.93767,Private room,70,2,0,,,2,0 +31412664,Quiet Apt on the Gramercy/East Village Border,57148387,Max,Manhattan,Gramercy,40.73423,-73.98211,Private room,100,1,4,2019-07-01,0.75,1,254 +31413351,"Private entrance, own bathroom, comfy & sunshine",33614329,Walter,Brooklyn,Bushwick,40.69684,-73.9307,Entire home/apt,85,1,36,2019-07-03,6.10,4,210 +31413900,"Maximum Comfort, Minimum Expenditure 1min to train",235302401,Kin,Brooklyn,Sunset Park,40.64373,-74.01351,Private room,49,1,9,2019-06-21,1.59,3,177 +31414400,New and Upscale Space. Just like home,235305665,Dave,Manhattan,East Harlem,40.7902,-73.9463,Private room,69,1,4,2019-06-06,0.78,2,60 +31414856,Loft Room in Bushwick,235311151,Armin,Brooklyn,Williamsburg,40.7025,-73.93561,Private room,40,2,1,2019-03-25,0.28,1,0 +31415232,Luxury 2 Bedroom 2 Bath Brownstone in NYC,188741104,Susan,Manhattan,Harlem,40.81027,-73.94306,Entire home/apt,175,31,3,2019-04-05,0.63,4,274 +31416434,"Upscale Adorbable Room, Amazing",235305665,Dave,Manhattan,East Harlem,40.78953,-73.9432,Private room,65,1,4,2019-06-17,0.70,2,69 +31416916,"2 Bedrooms Nearby Free ""Manhattan Ferry""",231352789,Farah,Staten Island,Tompkinsville,40.63515,-74.07929,Private room,85,2,29,2019-07-07,5.00,3,296 +31418014,Interior Designer’s Lovely 1BR Flat (+Balcony!),5637331,Amit & Sofie,Manhattan,Upper East Side,40.7627,-73.96422,Entire home/apt,140,6,1,2019-04-14,0.35,2,0 +31419390,Private Room in Williamsburg . 2min walk to L,235344330,Yoko,Brooklyn,Williamsburg,40.71598,-73.9451,Private room,75,2,23,2019-07-04,4.86,1,113 +31419862,2 BED APT/TIME SQUARE/HELLS KITCHEN/CENTRAL PARK,37986167,Scott,Manhattan,Hell's Kitchen,40.76458,-73.98753,Entire home/apt,350,1,25,2019-06-03,4.26,2,0 +31420503,West Village Charmer,4305407,Christopher,Manhattan,West Village,40.73318,-74.00473,Entire home/apt,150,2,9,2019-03-30,1.57,1,0 +31427366,Clean Modern Upper Manhattan NYC Room,83415090,Liberty,Manhattan,Washington Heights,40.85085,-73.94134,Private room,50,1,35,2019-06-30,5.93,1,36 +31428772,Private Studio 25 Minutes from Midtown,42761,Jessica,Bronx,Claremont Village,40.84487,-73.90811,Private room,80,2,1,2019-01-20,0.18,1,156 +31428785,Artist's huge family home in BK with Roof Deck!,230909887,Jennie And Dan,Brooklyn,Crown Heights,40.67674,-73.93083,Entire home/apt,133,2,7,2019-07-01,1.24,1,41 +31428865,Lil boho gem in Harlem city center,9637585,Stephanie,Manhattan,Harlem,40.81049,-73.95311,Private room,80,2,0,,,1,36 +31430577,Upper East Side One Bedroom,79520100,Bee,Manhattan,East Harlem,40.7868,-73.95228,Private room,50,2,29,2019-06-08,5.00,1,0 +31432189,LYRIC - Hotel Extended Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70744,-74.00819,Entire home/apt,219,1,20,2019-07-02,3.85,8,322 +31433921,Private Room in HUGE Harlem Apartment!,58956219,Brennan,Manhattan,Harlem,40.81859,-73.93997,Private room,60,2,8,2019-07-07,1.41,1,80 +31435734,"Sharp UES 1BR w/Indoor pool, Doorman + City views by Blueground",107434423,Blueground,Manhattan,Upper East Side,40.77463,-73.94972,Entire home/apt,307,30,0,,,232,249 +31435773,Quaint UES Studio w/ Balcony + Gym near subway by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77572,-73.95672,Entire home/apt,233,30,0,,,232,249 +31435825,"Lovely 2BR, 2BATH in heart of East Village!!!",235468713,Steven,Manhattan,East Village,40.72466,-73.98373,Entire home/apt,235,2,28,2019-06-20,4.75,1,8 +31435994,Cozy Bedroom Uptown Manhattan,47515751,Jennyfer,Manhattan,Inwood,40.86772,-73.92563,Private room,40,4,1,2019-03-05,0.24,2,81 +31436066,Cozy Apt in Kensington,113393845,Cindy,Brooklyn,Kensington,40.64557,-73.98097,Entire home/apt,100,1,2,2019-05-05,0.43,1,268 +31436965,Zen One Bedroom in Greenpoint - easy access to NYC,1698607,Benjamin,Brooklyn,Greenpoint,40.73336,-73.95394,Entire home/apt,92,4,3,2019-05-11,0.66,1,95 +31438319,Apartamento con cuarto privado en Manhattan,85108863,Manuel,Manhattan,Washington Heights,40.85065,-73.93188,Private room,45,2,12,2019-06-05,2.32,1,78 +31438520,"Kozzy in Clinton Hill Brooklyn, NY,",1290193,Henry,Brooklyn,Bedford-Stuyvesant,40.68617,-73.95927,Private room,50,4,3,2019-05-28,1.76,1,365 +31438699,WELL LIT 2 BR WILLIAMSBURG APARTMENT,61886746,Charles,Brooklyn,Williamsburg,40.71072,-73.96289,Entire home/apt,200,2,0,,,1,0 +31439169,One bedroom right next to Central Park on UES!,95635119,Ella,Manhattan,Upper East Side,40.7848,-73.95687,Private room,42,3,7,2019-06-29,1.39,1,131 +31439428,"Manhattan: large 3bed/2bath, new reno, central LES",20445702,Jason,Manhattan,Lower East Side,40.70983,-73.98562,Shared room,249,60,0,,,1,0 +31441434,Huge family 2 bedroom in Ideal Upper Manhattan,136081476,Rebecca,Manhattan,Harlem,40.8087,-73.94157,Entire home/apt,150,2,17,2019-06-16,3.31,1,19 +31443055,Cosy room in the heart of Bushwick,704963,Chloé,Brooklyn,Bushwick,40.70165,-73.92262,Private room,35,4,1,2019-04-30,0.43,1,7 +31443230,Artistic Loft In East Williamsburg,8620509,Verdis,Brooklyn,Williamsburg,40.70508,-73.93763,Entire home/apt,165,5,0,,,1,20 +31444015,"TIME SQUARE CHARMING ONE BED IN HELL'S KITCHEN,NYC",8523790,Johlex,Manhattan,Hell's Kitchen,40.76682,-73.98878,Entire home/apt,170,3,0,,,1,188 +31444458,PRIVATE - East Village Three Bedroom,3459240,D,Manhattan,East Village,40.72377,-73.97963,Private room,289,2,17,2019-06-20,3.42,1,72 +31444634,Wburg Duplex w/ Private Garden. Great for groups!,48392689,Ilan,Brooklyn,Williamsburg,40.71324,-73.95099,Entire home/apt,400,2,0,,,1,329 +31445273,Convenient - 2 Stops from the city (good price!),235548617,Khalid,Queens,Long Island City,40.7576,-73.93222,Private room,55,1,25,2019-07-07,5.03,2,34 +31445758,TRENDi 3 Bed Duplex in Heart of Historic Harlem,133234099,Gemma,Manhattan,Harlem,40.80761,-73.94366,Entire home/apt,250,3,11,2019-06-16,1.94,2,110 +31445795,Cozy clean private room in Woodside. 20mins to NYC,86322604,Zoe,Queens,Woodside,40.75396,-73.90111,Private room,56,2,9,2019-06-28,2.84,1,4 +31446827,Bright and airy 2 bedroom near Prospect Park,4688531,Julia,Brooklyn,East Flatbush,40.65344,-73.94547,Entire home/apt,120,1,13,2019-05-01,3.00,1,0 +31447095,Large 3 BR In LIC/Astoria- 2 Blocks From Subway,60835915,Ali,Queens,Long Island City,40.76061,-73.92812,Entire home/apt,149,3,14,2019-07-03,3.00,1,30 +31447607,SUN FILLED APARTMENT WITH STUNNING RIVER VIEWS,13773574,Cecile,Manhattan,Hell's Kitchen,40.76666,-73.98358,Entire home/apt,225,30,0,,,12,343 +31447999,Stunning Modern 1br with Private Balcony & Views,13773574,Cecile,Manhattan,Midtown,40.76616,-73.98228,Entire home/apt,225,30,0,,,12,365 +31448783,Sleek 1 Bedroom Brownstone Apartment in Brooklyn,5945241,Tomi,Brooklyn,Bedford-Stuyvesant,40.6789,-73.91014,Entire home/apt,80,2,8,2019-07-07,2.12,1,0 +31450131,Apt2- large bedroom.,72602373,Mo,Brooklyn,Brownsville,40.66262,-73.91575,Private room,59,1,2,2019-05-31,0.42,2,53 +31453103,Newly Renovated Cozy Private 1 Bedroom Apartment,194014767,Mohammed,Brooklyn,East Flatbush,40.64656,-73.95016,Entire home/apt,65,2,20,2019-06-29,3.57,2,293 +31457187,Brooklyn Bliss V,219104513,Kendra,Brooklyn,East Flatbush,40.65808,-73.93903,Private room,39,2,3,2019-05-08,0.73,2,67 +31458142,Huge studio in the heart of Kips Bay,235655558,Steph,Manhattan,Kips Bay,40.74343,-73.98147,Entire home/apt,140,1,3,2019-04-01,0.63,1,0 +31458781,"Bright and Beautiful, Private Garden",129643632,Benjamin,Brooklyn,Sunset Park,40.66426,-73.99375,Entire home/apt,165,30,0,,,1,337 +31459245,SPACIOUSprivate room in LARGEapt 1block from train,71012165,Imani,Brooklyn,Bedford-Stuyvesant,40.6966,-73.93592,Private room,100,4,0,,,1,0 +31459956,#2 Minutes to JFK!!!,37891510,Carlos & Lina,Queens,Woodhaven,40.68709,-73.85982,Private room,55,4,10,2019-06-26,1.81,2,360 +31462754,Private Room in Spacious Apt by Prospect Park,14201257,Jamie,Brooklyn,Flatbush,40.65218,-73.96551,Private room,40,7,4,2019-07-06,0.92,1,1 +31463824,"Studio at Battery Park, Downtown Manhattan",21229164,Alex,Manhattan,Battery Park City,40.70417,-74.01709,Entire home/apt,115,1,12,2019-06-30,2.02,1,0 +31465478,"Hyper Chic, Bi-Level Apartment + Garden",117143694,Tenlie,Manhattan,Harlem,40.80454,-73.94635,Entire home/apt,400,5,15,2019-07-01,2.88,1,148 +31465521,Spacious 3 bed suite next to transit NYC,233732841,Ori,Manhattan,Washington Heights,40.83397,-73.94541,Private room,35,1,25,2019-07-04,4.36,2,80 +31465817,HIP & FUN PRIVATE / COZY BEDROOM 1 BLK FROM METRO,132908616,Federico,Brooklyn,Bushwick,40.70218,-73.92046,Private room,40,3,13,2019-07-03,2.95,2,51 +31466176,White Space Studio,14855509,Milton,Manhattan,Harlem,40.81272,-73.9471,Entire home/apt,110,4,20,2019-07-01,4.69,2,227 +31466547,Private and cozy room in Bushwick,62857588,Natalie,Brooklyn,Cypress Hills,40.68001,-73.90547,Private room,35,7,1,2019-02-24,0.22,1,0 +31466893,Corner 1br w/ Private Balcony w/ Central Park View,13773574,Cecile,Manhattan,Midtown,40.76473,-73.98131,Entire home/apt,225,30,0,,,12,343 +31467371,J-m-l train 20 mint to city 20 to jfk clean 4/20,235734225,Khaled,Brooklyn,Bushwick,40.69812,-73.92134,Private room,130,2,6,2019-06-10,1.18,1,356 +31468463,MINS From Central Park / 5th Ave Sleep 9 Manhattan,120242215,Smofie,Manhattan,Midtown,40.76263,-73.97664,Entire home/apt,299,3,3,2019-05-23,0.56,1,38 +31469483,2 bedroom Upper east side apartment,191786703,Fabiola,Manhattan,Upper East Side,40.76137,-73.95992,Entire home/apt,400,1,0,,,1,179 +31470004,Private bedroom/Bathroom in a 2 bedroom apartment,71241932,Max,Manhattan,East Village,40.72544,-73.97818,Private room,2500,60,0,,,1,90 +31470025,Single room in a quaint apartment in East Harlem,207010341,Maria,Manhattan,East Harlem,40.7966,-73.93345,Private room,60,4,0,,,2,51 +31470251,Stunning Centra Park View - Huge Sunny Corner 1br,13773574,Cecile,Manhattan,Midtown,40.76539,-73.98336,Entire home/apt,225,30,0,,,12,343 +31471169,Stay at Lex,10416602,Ann,Brooklyn,Bedford-Stuyvesant,40.68928,-73.93906,Entire home/apt,130,3,6,2019-05-27,2.09,1,292 +31472498,NEW PRIVATE APARTMENT - 2 BLOCKS from LGA,229149810,Tussan,Queens,East Elmhurst,40.77008,-73.87442,Entire home/apt,128,1,4,2019-07-01,0.83,3,80 +31472775,Private Room in Brooklyn: Near L/A/C/J Trains,20647101,James,Brooklyn,Bushwick,40.68364,-73.90748,Private room,45,1,2,2019-03-01,0.39,1,0 +31473340,Cozy Clean XL Studio,2790890,Phil,Brooklyn,Bedford-Stuyvesant,40.69226,-73.94788,Entire home/apt,89,3,18,2019-06-26,3.03,3,237 +31474100,"Big window, good lighting, computer and speaker!",9475918,Joanne,Brooklyn,Bedford-Stuyvesant,40.69306,-73.94565,Private room,39,1,1,2019-02-26,0.22,1,0 +31474126,Loft in Bushwick,126052775,Lancelot,Brooklyn,Bushwick,40.70444,-73.92181,Private room,47,2,0,,,1,0 +31474431,Spacious Clean Quiet Master 1 min to Subway N Line,235302401,Kin,Brooklyn,Sunset Park,40.64359,-74.01358,Private room,49,1,8,2019-06-15,1.67,3,164 +31474638,Great clean quiet bedroom - half a block to R Line,235302401,Kin,Brooklyn,Sunset Park,40.64303,-74.014,Private room,49,1,3,2019-06-17,1.48,3,155 +31475440,Magnificent 6 Bedroom/5 Bathroom Townhouse,235810002,Joshua,Manhattan,Upper West Side,40.7874,-73.97051,Entire home/apt,1150,1,0,,,1,2 +31476060,Cozy Williamsburg Apartment,9014833,Hillary,Brooklyn,Williamsburg,40.71159,-73.96581,Entire home/apt,61,2,15,2019-06-20,2.76,1,0 +31476497,Modern stylized room in appartment Harlem 141st,566838,Max,Manhattan,Harlem,40.81944,-73.93974,Private room,70,1,23,2019-06-27,6.05,2,97 +31484603,"Gorgeous, sunny, two bedroom beach house.",5369840,Kimberley,Queens,Belle Harbor,40.57743,-73.84519,Entire home/apt,105,2,0,,,1,22 +31485453,Peaceful Private Room in Kew Gardens! Room 1,23969698,Lindsey,Queens,Kew Gardens,40.70817,-73.83595,Private room,40,1,13,2019-06-11,2.41,2,17 +31485528,Small Private Room with backyard,38757148,Daniel,Brooklyn,Bedford-Stuyvesant,40.68937,-73.94291,Private room,50,2,14,2019-06-20,2.46,1,5 +31486254,Luxury 2 Bedroom Apartment 15 Mins from Manhattan,1788443,Aaron,Brooklyn,Bushwick,40.69568,-73.93203,Entire home/apt,175,2,23,2019-07-06,4.06,1,227 +31486707,Beautiful Loft sublet with community in Brooklyn,33120658,Maku,Brooklyn,Williamsburg,40.70505,-73.934,Private room,50,4,2,2019-05-24,0.42,1,12 +31489863,Conveniently located Chelsea 2br,25502424,Jay,Manhattan,Chelsea,40.74859,-73.99685,Private room,92,2,0,,,1,0 +31490386,"Rustic, Private One-Bedroom Apartment in Brooklyn!",31883163,Bri,Brooklyn,Greenpoint,40.73203,-73.95126,Entire home/apt,95,1,22,2019-07-06,3.71,1,22 +31490447,Minimal Studio in North Greenpoint - Affordable!,11612872,Robert,Brooklyn,Greenpoint,40.73757,-73.95509,Entire home/apt,80,2,22,2019-06-08,3.84,3,5 +31490659,"‘’AROUND THE CORNER’’ QUEENS, NY",12394498,Anna,Queens,Maspeth,40.7282,-73.89135,Entire home/apt,90,3,9,2019-07-05,6.75,1,121 +31491866,"COZY ,BRIGHT & BEAUTIFUL 2 BDS HOME IN DOWNTOWN",235939247,Maria,Manhattan,Two Bridges,40.71261,-73.99506,Entire home/apt,250,3,21,2019-06-17,3.64,1,148 +31493796,Artists House with fire place & roof garden!,18007776,Tyler,Brooklyn,Prospect-Lefferts Gardens,40.65621,-73.9562,Private room,40,3,5,2019-06-22,1.03,4,0 +31494165,Sunny Cosy Private Room Hell's Kitchen & Broadway,33464426,Natasha,Manhattan,Hell's Kitchen,40.76453,-73.98527,Private room,80,3,8,2019-05-29,1.40,1,0 +31494679,Brighton Luxury,149221924,Viktor,Brooklyn,Brighton Beach,40.57504,-73.96673,Entire home/apt,80,1,1,2019-01-17,0.17,1,0 +31494924,Cozy Double Bedroom Suite Williamsburg 30 Days,120749029,Joe And Shelly,Brooklyn,Williamsburg,40.70643,-73.94198,Private room,63,21,0,,,2,135 +31495625,Sunny one-bedroom in Prospect Heights,17726859,Liz,Brooklyn,Prospect Heights,40.681,-73.96827,Private room,150,1,1,2019-01-19,0.18,1,0 +31497697,"Cozy Manhattan 1-Bedrm, Ground floor, 24hr checkin",218352095,Emma,Manhattan,Upper East Side,40.78132,-73.94723,Private room,75,4,15,2019-07-06,2.66,1,21 +31498735,NEW Perfect private room near Two Bridges IV,170263842,Sultan,Manhattan,Lower East Side,40.7096,-73.98703,Private room,71,15,0,,,4,185 +31499021,Manhattan Artist residency room,34915339,Michael,Manhattan,Upper East Side,40.78062,-73.95173,Private room,89,1,39,2019-07-05,6.65,4,221 +31499047,Renovated 2 Br Close to LGA/JFK /7 mile Midtown,234396332,Joy,Queens,East Elmhurst,40.75675,-73.88599,Entire home/apt,99,1,18,2019-07-06,3.16,2,141 +31499524,Stylish cozy room in prime area of Upper East,34915339,Michael,Manhattan,Upper East Side,40.78001,-73.9518,Private room,99,1,38,2019-06-30,6.44,4,142 +31499813,SUNNY SAFE & COZY BRICK BEDROOM CLOSE TO NYC! <3,236014031,Jim,Bronx,Longwood,40.81624,-73.9011,Private room,50,2,0,,,1,0 +31499944,Stylish 1BR in West Village,46389451,Martin,Manhattan,West Village,40.73411,-74.00508,Entire home/apt,170,3,9,2019-06-19,1.71,3,169 +31500127,Comfortable sofa bed in chic apt,34915339,Michael,Manhattan,Upper East Side,40.7814,-73.95206,Shared room,50,1,38,2019-06-30,6.48,4,238 +31500172,Room can fit 3 people in Manhattan close to subway,235073206,Julianna,Manhattan,Harlem,40.8181,-73.94441,Private room,82,1,22,2019-06-24,3.84,4,96 +31501009,MIDTOWN East LARGE STUDIO-7 mins to TIMES SQUARE!,16480700,Eddie&Vlad,Manhattan,Upper East Side,40.76495,-73.96679,Entire home/apt,299,1,8,2019-06-28,1.36,7,342 +31502105,The Peaceful Palace Spacious,236018119,Lucy,Queens,Queens Village,40.70472,-73.74865,Entire home/apt,121,1,13,2019-07-06,2.28,3,90 +31502639,Comfortable room close to train 30 min to Times Sq,235073206,Julianna,Manhattan,Harlem,40.82049,-73.94505,Private room,75,1,21,2019-06-17,4.09,4,351 +31502830,Flatiron Designer Loft! Private Elevator! 3BR/2BA,231295106,Sam,Manhattan,Gramercy,40.73667,-73.98592,Entire home/apt,199,3,20,2019-06-16,3.70,1,123 +31506629,Chic Bedstuy Townhouse w/ Lovely Garden,15185649,Beebe,Brooklyn,Bedford-Stuyvesant,40.683,-73.92346,Entire home/apt,149,7,0,,,2,5 +31509696,Quaint Furnished Studio in Doorman Building!,234650220,Pacita,Brooklyn,Brooklyn Heights,40.69657,-73.99604,Entire home/apt,79,3,1,2019-06-01,0.77,1,94 +31510414,Sun-lit room in spacious Clinton Hill loft,44037475,Hannah,Brooklyn,Bedford-Stuyvesant,40.69046,-73.9586,Private room,60,30,1,2019-05-05,0.45,4,153 +31511086,Private cozy room in Manhattan,144006321,Lethy,Manhattan,Washington Heights,40.84282,-73.94133,Private room,45,1,13,2019-07-07,2.45,1,87 +31511088,Blissful Boudiors Your Home Away From Home,167383560,Toni,Brooklyn,Bedford-Stuyvesant,40.68069,-73.94264,Private room,125,1,2,2019-06-10,1.02,1,199 +31511141,GEM AT THE HEART OF NOLITA MOTT& PRINCE ST.,236107297,Raquel,Manhattan,Nolita,40.72189,-73.9941,Entire home/apt,199,7,1,2019-04-21,0.38,1,124 +31512324,Private Bedroom / Bushwick,135722057,Polina,Brooklyn,Bushwick,40.6847,-73.90883,Private room,48,1,2,2019-06-27,2,1,53 +31513692,Need temp room mate/ Private room in Manhattan(個室),117675375,Ky-Tsuyo,Manhattan,East Harlem,40.79876,-73.93763,Private room,40,7,9,2019-06-25,1.97,2,8 +31514475,New Building Rooms 5 from 1,203266238,Steve,Bronx,Morris Park,40.85589,-73.85825,Private room,85,5,5,2019-06-29,0.85,5,343 +31514722,The best room on Sheepshead Bay,228053166,Anna,Brooklyn,Sheepshead Bay,40.58624,-73.94558,Private room,45,1,21,2019-06-29,6.30,1,160 +31514807,"Meatpacking Events, Popups, Baby Showers, PhotoSht",78140736,Greg,Manhattan,West Village,40.73882,-74.00706,Entire home/apt,1050,1,0,,,1,48 +31515617,PRIVATE ROOM 1 - 1 BLOCK TO METRO,23188519,Emily Wes,Brooklyn,Bedford-Stuyvesant,40.69581,-73.95379,Private room,68,30,1,2019-06-24,1,6,311 +31516684,Safe room in a quiet neighborhood. Near Manhattan!,137358866,Kazuya,Queens,Sunnyside,40.73812,-73.92024,Private room,41,30,1,2019-03-12,0.25,103,186 +31517508,Light filled Room in heart of Brooklyn,7777033,Martha,Brooklyn,Crown Heights,40.66915,-73.95321,Private room,80,2,0,,,1,342 +31517652,City Life Private Rm-Near Columbia University NYC.,16480700,Eddie&Vlad,Manhattan,Harlem,40.81878,-73.95302,Private room,77,1,15,2019-05-18,3.36,7,351 +31520819,Private apartment (1st floor) with all amenities,220125576,Yogi,Queens,Ozone Park,40.67883,-73.85627,Entire home/apt,72,2,7,2019-05-27,1.20,3,52 +31521732,Comfortable Room For 4-Near Columbia University.,16480700,Eddie&Vlad,Manhattan,Harlem,40.81981,-73.95353,Private room,79,1,1,2019-03-14,0.26,7,60 +31529989,Sunny East Village Private Room with Bath,180126576,P,Manhattan,East Village,40.72475,-73.98345,Private room,120,3,1,2019-05-12,0.52,3,0 +31530836,Cozy Priv Room! in Prime East Village!,180126576,P,Manhattan,East Village,40.72471,-73.98367,Private room,100,3,1,2019-04-12,0.34,3,0 +31532352,Super Cute Crown Heights Hideaway .,158739,Zahavah Cara,Brooklyn,Prospect-Lefferts Gardens,40.66324,-73.94233,Entire home/apt,106,2,3,2019-03-29,0.74,2,0 +31532357,"Beautiful, spacious 1brm, unbelievable location!",5916186,Carmel,Manhattan,Hell's Kitchen,40.76462,-73.98734,Private room,110,3,7,2019-07-02,1.71,1,3 +31532642,Nice cozy apartment in Washington Heights!,26018582,Mery,Manhattan,Washington Heights,40.83419,-73.94638,Entire home/apt,135,3,1,2019-02-06,0.20,1,214 +31533891,Upper West Side Studio,171367408,Samantha,Manhattan,Upper West Side,40.79003,-73.97693,Entire home/apt,90,2,8,2019-06-23,1.98,1,0 +31533898,TRENDi 6 BEDROOM 2 APARTMENTS COMBINED/12 BEDS,133234099,Gemma,Manhattan,Harlem,40.8095,-73.94297,Entire home/apt,750,3,0,,,2,97 +31534487,New York Big Room,21250331,Clara,Queens,Bayside,40.75409,-73.76935,Private room,47,1,19,2019-06-20,3.63,3,350 +31534613,New Oceanside home just 5 houses from beach side B,37136163,Renzo,Manhattan,Midtown,40.75164,-73.98042,Entire home/apt,600,7,0,,,1,281 +31534723,Brownstone Fashion Studio,20863433,Mona,Brooklyn,Bedford-Stuyvesant,40.685,-73.94711,Entire home/apt,130,1,7,2019-06-30,1.98,1,16 +31535692,"Beautiful, Charming Bohemian Brownstone Loft",82400601,Valerie,Brooklyn,South Slope,40.66716,-73.98335,Entire home/apt,100,1,9,2019-03-02,1.74,1,0 +31536758,Gorgeous views from cleanly home in Lincoln Square,236349458,Jeannette,Manhattan,Upper West Side,40.77714,-73.9881,Private room,180,3,13,2019-06-28,2.60,1,0 +31538945,PRIVATE ROOM IN ARTSY WILLIAMSBURG LOFT!,52531721,Pamela,Brooklyn,Williamsburg,40.71126,-73.94917,Private room,55,2,26,2019-06-29,5.10,1,156 +31539511,Great Space with Private Entrance,235763046,Yvonne,Queens,Rosedale,40.66818,-73.73399,Entire home/apt,60,1,30,2019-06-29,5.45,1,282 +31539570,Beautiful and cozy 2Br with private terrace,7225691,Jérôme,Manhattan,Lower East Side,40.72278,-73.98902,Entire home/apt,350,1,46,2019-07-01,7.89,2,342 +31540929,Classic 3 Bedroom Upper West Side Apartment,28035940,Yaron,Manhattan,Upper West Side,40.79933,-73.96794,Entire home/apt,130,210,1,2019-03-28,0.29,1,2 +31541068,"Bright Guest Room in Fort Greene, BK",115252929,Duaa,Brooklyn,Fort Greene,40.68431,-73.97209,Private room,65,1,9,2019-06-23,2.87,1,157 +31541668,Contemporary Bedroom in Brooklyn,62954830,Rose-Camille,Brooklyn,Clinton Hill,40.69571,-73.96944,Private room,90,1,9,2019-05-26,2.84,1,144 +31542692,BK Spot,64091336,Allan,Brooklyn,Bedford-Stuyvesant,40.693,-73.934,Entire home/apt,120,3,12,2019-06-10,2.13,1,0 +31542976,"Cozy, Bright Room in Uptown Manhattan",112290211,Valerie,Manhattan,Washington Heights,40.84623,-73.93578,Private room,70,2,10,2019-06-24,2.13,1,152 +31543246,Brownstone Top Floor Sunny & Spacious Apartment,236422290,Verna,Manhattan,Harlem,40.8089,-73.94349,Entire home/apt,135,30,2,2019-06-24,0.88,1,7 +31543432,Private bright room with private detached bathroom,26295375,Alex,Bronx,Port Morris,40.80797,-73.92865,Private room,95,3,5,2019-07-02,0.96,1,49 +31543550,Lower manhattan 1 bedroom short or long term,7285648,Josh,Manhattan,Chelsea,40.74562,-74.00538,Private room,86,1,0,,,3,0 +31549470,Cozy UES Studio w/ Gym + Doorman near subway by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77478,-73.95486,Entire home/apt,236,30,0,,,232,127 +31552528,Comfy & Spacious Room in Williamsburg Loft,236432765,Aleks,Brooklyn,Williamsburg,40.71736,-73.95394,Private room,50,2,3,2019-05-03,0.78,2,330 +31553066,Near major transportation,41090359,Abi,Queens,Little Neck,40.77122,-73.738,Private room,100,1,0,,,1,88 +31553305,Private Loft-Style Bedroom w/ your own Bathroom,15058648,Shola,Brooklyn,Bushwick,40.69866,-73.92929,Private room,70,3,4,2019-05-31,0.73,3,21 +31555001,New York Apartment that feels like home,236511564,Mintra,Manhattan,Harlem,40.8041,-73.956,Private room,60,21,2,2019-04-19,0.43,1,35 +31556307,G/F Woodside room mins to LaGuardia Airport,137358866,Kazuya,Queens,Woodside,40.74424,-73.90146,Private room,49,30,0,,,103,247 +31556929,Sunny Central Corner Room in Bushwick,8288491,Sofia,Queens,Ridgewood,40.70667,-73.9147,Private room,70,2,0,,,2,92 +31557309,"IDEAL Beach Bungalow in BelleHarbor, Rockaway!",40025069,Briana,Queens,Belle Harbor,40.57518,-73.84558,Entire home/apt,97,2,2,2019-06-30,2,1,52 +31557451,"Spacious, Stylish & Sunny Mid-Century Home",398617,Sarah,Brooklyn,Bedford-Stuyvesant,40.68387,-73.95476,Entire home/apt,155,2,10,2019-07-01,2.11,1,42 +31557578,Cozy room next to subways and Prospect Park,227134858,Hitalo,Brooklyn,Prospect-Lefferts Gardens,40.66238,-73.94289,Private room,58,1,8,2019-06-30,1.56,5,158 +31560410,Homey Studio just minutes from Time Square,21129281,Sy,Manhattan,Washington Heights,40.83899,-73.93979,Entire home/apt,70,5,10,2019-04-08,1.78,1,191 +31560479,large private Rooms for rent 5 mins from SI Ferry,236556387,Samuel,Staten Island,Stapleton,40.63474,-74.07758,Private room,57,1,7,2019-06-22,3.56,1,365 +31560811,Williamsburg Hidden Gem,5178818,Daniel,Brooklyn,Williamsburg,40.71186,-73.95736,Entire home/apt,129,1,28,2019-07-07,5.22,1,93 +31561218,Huge Bright King Size Private Bedroom in NYC,59051417,Kai,Manhattan,East Harlem,40.7961,-73.94791,Private room,109,1,2,2019-04-23,0.44,6,0 +31561372,SPACIOUS 2BEDS APT. IN THE HEART OF NYC TIMESQUARE,229288524,Yan,Manhattan,Theater District,40.75749,-73.98921,Entire home/apt,128,30,6,2019-06-24,1.88,2,233 +31561805,Pam's cozy 2 bedroom in Brooklyn,236565167,Pamilitta,Brooklyn,East Flatbush,40.6386,-73.93654,Private room,80,1,10,2019-05-26,1.95,1,4 +31562978,Bright 3 bedroom apt in South Brooklyn,27479250,Patrice,Brooklyn,Bensonhurst,40.60364,-73.99524,Entire home/apt,125,2,0,,,1,0 +31564154,West Village Cozy Studio,49503035,Gabriella,Manhattan,West Village,40.73041,-74.00251,Entire home/apt,85,3,5,2019-06-22,1.08,1,16 +31564614,Solo/Couple 2 Stops from the city (good price!),235548617,Khalid,Queens,Long Island City,40.75683,-73.93184,Private room,55,1,29,2019-06-19,5.37,2,1 +31565105,Massive Room in Bed-Stuy Clinton Hills,236596347,John,Brooklyn,Bedford-Stuyvesant,40.68226,-73.94493,Private room,69,2,1,2019-03-30,0.29,1,95 +31565332,Penthouse 2 Bedroom w/ Terrace,15989140,Coralie,Brooklyn,Greenpoint,40.73636,-73.95538,Entire home/apt,115,30,0,,,1,3 +31565717,Renovated entire floor apt in prime Williamsburg!,27446767,Dario,Brooklyn,Williamsburg,40.71272,-73.95599,Private room,59,4,0,,,1,0 +31566109,B in Brooklyn!,154390742,Brittney,Brooklyn,Bedford-Stuyvesant,40.69382,-73.95862,Entire home/apt,120,2,8,2019-06-02,1.41,1,0 +31566176,One room in Bushwick,236607981,Alla,Brooklyn,Bushwick,40.69494,-73.92724,Private room,80,1,0,,,1,0 +31566253,Full Sunny East Williamsburg Apt,174559516,Joseph,Brooklyn,Williamsburg,40.70214,-73.94512,Entire home/apt,120,5,1,2019-02-27,0.23,1,0 +31568589,NYC Cat Sitter- laundry & office space,16334409,Lisa,Manhattan,East Harlem,40.79445,-73.93183,Entire home/apt,57,24,0,,,2,181 +31568673,Large private room w/ 2 built-in closets,236631469,Paloma,Bronx,Williamsbridge,40.88449,-73.86227,Private room,25,30,0,,,1,85 +31569502,Entire 1 BR Apartment in Perfect Astoria Location,39192815,Agnes,Queens,Astoria,40.76533,-73.92171,Entire home/apt,95,2,0,,,1,0 +31570303,Worldclass Casa - JFK Master Suite w/ Prvt Bath,115136074,Tina,Queens,Springfield Gardens,40.68955,-73.74867,Private room,65,2,10,2019-06-18,2.38,3,68 +31570962,A home away from home.,81636631,Jermaine,Brooklyn,Bedford-Stuyvesant,40.67893,-73.91014,Entire home/apt,100,3,0,,,1,89 +31571554,SWEET PLACE IN BUSHWICK 3 BLOCKS FROM METRO STAT,236659049,Yesenia,Brooklyn,Bushwick,40.69157,-73.90435,Entire home/apt,140,2,12,2019-06-23,2.07,4,48 +31572551,Chic in the City,6486059,Matt,Manhattan,Washington Heights,40.85442,-73.93266,Entire home/apt,85,4,4,2019-06-18,0.72,1,8 +31572850,Affordable Manh. Studio for 2 for weekend(or week),274333,Janu,Manhattan,Harlem,40.8013,-73.95474,Entire home/apt,87,3,2,2019-05-11,0.95,3,49 +31575039,SoHo/Central/Quiet St/Close to trains/Entire Place,114548258,Only One,Manhattan,SoHo,40.72749,-74.0018,Entire home/apt,205,1,2,2019-07-01,2,2,124 +31575274,Spacious 2BR Apt Heart of Bushwick + Backyard,234214434,Mike,Brooklyn,Bushwick,40.70016,-73.93042,Entire home/apt,145,30,6,2019-07-03,1.64,4,224 +31580460,Cheery West Village 1BR w/ Washer + Dryer by Blueground,107434423,Blueground,Manhattan,West Village,40.73588,-74.00474,Entire home/apt,236,30,0,,,232,273 +31582772,1B share Rm Bed1 Guesthouse in Manhattan,7831209,Bobi,Manhattan,East Harlem,40.80745,-73.93955,Private room,72,1,2,2019-03-10,0.45,10,365 +31582797,Modern & Spacious Brownstone Apartment,2903063,Ana,Brooklyn,Bedford-Stuyvesant,40.68878,-73.94103,Entire home/apt,149,2,24,2019-07-07,4.80,1,194 +31583242,Comfi & Cozy Studio in private house,236745428,Lutz,Brooklyn,Flatbush,40.64003,-73.955,Entire home/apt,95,2,9,2019-06-17,1.79,1,0 +31584089,"Homey Hudson Yards w/ Gym + Doorman, near MSG by Blueground",107434423,Blueground,Manhattan,Chelsea,40.75218,-73.99541,Entire home/apt,213,30,0,,,232,303 +31586233,"Full apt 3 bd/ 2 ba w/parking, close to train/park",17790600,Claire,Brooklyn,Prospect-Lefferts Gardens,40.65801,-73.95732,Entire home/apt,150,4,0,,,1,127 +31589769,Beautiful Duplex Apartment for Rent,214623686,Earlene,Brooklyn,Bedford-Stuyvesant,40.68521,-73.95184,Entire home/apt,80,2,19,2019-07-07,4.67,1,81 +31590566,PRIME SOHO: Perfect Room on Prince Street,236445157,Anna,Manhattan,Greenwich Village,40.7315,-73.99961,Private room,80,180,5,2019-05-10,0.90,3,331 +31591448,"Apt in Little Italy/Chinatown, Lower Manhattan",217836856,Moying,Manhattan,Chinatown,40.71865,-73.99587,Entire home/apt,190,1,46,2019-07-05,8.47,2,232 +31592115,Luxury Studio in Iconic Lower East Side,14278450,Linda,Manhattan,Lower East Side,40.71923,-73.98935,Entire home/apt,200,1,7,2019-05-01,1.86,1,0 +31593170,Cute and Cozy Private Room,19418202,Yulia And Amine,Bronx,Van Nest,40.84555,-73.86787,Private room,50,1,19,2019-07-06,4.35,1,32 +31593677,Modern NYC 2 bedroom apt close to Subway 300#1C,137567864,Johanna,Bronx,Melrose,40.82421,-73.917,Entire home/apt,99,2,11,2019-06-22,1.94,1,107 +31593740,Broadway - Cozy Standard King,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75636,-73.99675,Private room,199,1,5,2019-06-19,0.99,30,362 +31594590,Prime Bushwick Entire 2 Bedroom Apt 10 min to City,15147054,Chris & Grace,Brooklyn,Bushwick,40.69633,-73.93369,Entire home/apt,95,3,0,,,2,0 +31594754,Empire State - Comfy King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75641,-73.99706,Private room,129,1,2,2019-04-07,0.41,30,363 +31595243,"Cozy and Renovated 2 BR Apt in UWS, Central Park",47038126,Brigitte,Manhattan,Upper West Side,40.7859,-73.9723,Entire home/apt,300,3,2,2019-05-11,0.45,2,40 +31595244,Central Park - Comfy King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75504,-73.99716,Private room,199,1,3,2019-05-09,0.89,30,360 +31595389,Private Cozy&Quiet Bedroom 1min from central park,47038126,Brigitte,Manhattan,Upper West Side,40.78541,-73.97343,Private room,110,1,2,2019-06-18,1.40,2,72 +31596163,GREAT LOCATION in NY! PRIVATE STUDIO with PARKING!,20056779,David & Orli,Queens,Forest Hills,40.72282,-73.85479,Entire home/apt,175,2,11,2019-06-16,1.96,1,172 +31596199,Entire Contemporary Bronx home,236852677,Emily,Bronx,Fordham,40.86906,-73.88753,Entire home/apt,200,2,1,2019-06-16,1,1,32 +31596216,Flex Individual Bedroom ONLY ONE (1) Professional,236406472,Alix,Queens,Astoria,40.75667,-73.92726,Private room,60,5,4,2019-06-29,1.29,1,150 +31596519,Idyllic 1000 Sq Ft Bushwick Loft steps from the L.,3246916,Jos,Brooklyn,Williamsburg,40.7049,-73.93301,Entire home/apt,250,3,2,2019-05-15,0.37,1,0 +31599106,纽约客民宿,192895513,Vivi,Queens,Flushing,40.75528,-73.83072,Private room,99,3,2,2019-06-21,0.78,3,336 +31599436,"Elegant, Mid Century Modern Apt (Entire Place)",12618858,Alimah,Brooklyn,Bedford-Stuyvesant,40.6848,-73.92974,Entire home/apt,130,2,5,2019-06-16,1.39,2,64 +31599484,Entire apartment at the best part of Williamsburg!,16949541,Sebastian,Brooklyn,Williamsburg,40.7133,-73.96341,Entire home/apt,120,5,12,2019-06-10,3.50,2,107 +31599728,"Great Private Br, 59th ave & Main Street flushing.",217910985,Acclaimed,Queens,Flushing,40.74295,-73.82544,Private room,55,5,0,,,1,132 +31600379,Great apartment park slope,148787736,Fred,Brooklyn,Gowanus,40.66763,-73.9919,Entire home/apt,115,1,2,2019-06-23,2,2,93 +31600930,Frum kosher house for rent,57135136,Naftoli,Queens,Far Rockaway,40.59794,-73.74688,Entire home/apt,250,10,0,,,1,179 +31602882,Extra Large Furnished Room,236914360,Jackie,Brooklyn,Crown Heights,40.67427,-73.94826,Private room,80,1,1,2019-03-31,0.30,1,89 +31605060,"BIG ROOM on Prince Street, PRIME SOHO LOCATION",236445157,Anna,Manhattan,Greenwich Village,40.72939,-74.00064,Private room,80,180,1,2019-05-15,0.55,3,219 +31614670,XL Private Bedroom in the Heart of Brooklyn,92588965,Kam,Brooklyn,East Flatbush,40.64842,-73.92753,Entire home/apt,45,2,17,2019-06-07,2.98,1,248 +31615207,Wyndham Midtown 45 New York City Presidential,96086378,Ashley,Manhattan,Midtown,40.75359,-73.97325,Entire home/apt,1295,1,1,2019-05-07,0.48,2,289 +31616672,Beautiful 1 bedroom Apartment in Prime Astoria,237012945,Gregory,Queens,Astoria,40.76923,-73.91855,Entire home/apt,79,4,0,,,1,0 +31619454,Room In West Brooklyn,232778333,Jaime,Brooklyn,Bensonhurst,40.61245,-73.99684,Private room,29,15,2,2019-06-01,1.20,2,244 +31620173,"Williamsburg 1.5 Bed, PRIVATE Yard, Music Venues",237049868,Luc And Deb,Brooklyn,Williamsburg,40.71364,-73.9383,Entire home/apt,95,1,2,2019-05-06,0.56,1,0 +31621627,Peaceful Private Room in Kew Gardens! Room 2,23969698,Lindsey,Queens,Kew Gardens,40.7078,-73.83634,Private room,40,1,9,2019-06-12,1.61,2,0 +31621785,"Great deal! Comfy, brand new, close to subway:)",235073206,Julianna,Manhattan,Harlem,40.81893,-73.94512,Private room,75,1,20,2019-07-05,3.80,4,192 +31622417,"Vibrant, Modern, Chelsea 1 bd sleeps 4",236896088,Alice,Manhattan,Chelsea,40.74125,-73.99876,Entire home/apt,200,2,4,2019-06-11,0.85,1,6 +31622448,Home Studio Suite,4852748,Michelle,Manhattan,Harlem,40.8063,-73.9454,Private room,105,4,2,2019-05-31,1.15,6,119 +31623508,Flex 3 bedroom and super spacious unit in Bushwick,26738513,Malachi,Brooklyn,Bushwick,40.69187,-73.91464,Entire home/apt,135,7,0,,,3,204 +31624317,Private BedStuy Wabi-sabi Apart. w/ own backyard.,154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92766,Entire home/apt,130,3,8,2019-07-01,1.47,5,110 +31624608,"Homey, comfy bedroom with king size bed!",154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68796,-73.9259,Private room,60,3,5,2019-05-24,0.89,5,110 +31624832,"Bright, sunny bedroom with backyard",154302755,Vika & Josh,Brooklyn,Bedford-Stuyvesant,40.68803,-73.92601,Private room,50,2,6,2019-05-25,1.15,5,125 +31624862,Upper East Side Studio on 68th street,10371008,Anna,Manhattan,Upper East Side,40.76455,-73.95646,Entire home/apt,135,4,1,2019-06-13,1,2,217 +31626307,Bright and Airy Freeman Street loft,513839,Syed,Brooklyn,Greenpoint,40.73444,-73.95658,Entire home/apt,120,30,3,2019-05-14,0.53,1,209 +31626662,Beautiful Bed-Stuy Open Concept Garden Apartment,237107169,Cinthya,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92443,Entire home/apt,136,2,18,2019-07-01,3.46,1,74 +31626920,Quiet Place at Manhattan Midtown West,50339845,Jitabella,Manhattan,Upper West Side,40.7733,-73.98913,Private room,50,1,3,2019-02-06,0.53,1,0 +31636424,Lovely Woodside room near LaGuardia & 52 St train,137358866,Kazuya,Queens,Woodside,40.74373,-73.90804,Private room,41,30,0,,,103,215 +31638687,NEW Luxury 1 Bedroom on UES Perfect Location!!!,237201559,David,Manhattan,Upper East Side,40.77112,-73.95405,Entire home/apt,175,2,16,2019-07-03,3.72,1,233 +31639432,Entire Cozy Studio in Central Harlem,37277862,Lucy,Manhattan,Harlem,40.80864,-73.94453,Entire home/apt,85,2,7,2019-04-20,1.24,1,0 +31640203,*SUMMER SUBLET*Sunny Penthouse w/ Private Terrace*,510931,Autumn,Manhattan,Battery Park City,40.70438,-74.01657,Private room,71,14,0,,,2,63 +31641160,Marsha Inn,155668897,Nicola,Queens,Jamaica,40.66678,-73.78361,Private room,80,14,6,2019-03-17,1.05,2,365 +31641843,Sunny Bedroom in Williamsburg / Chambre privée,184600679,Raphaëlle,Brooklyn,Williamsburg,40.71013,-73.95206,Private room,85,6,1,2019-04-30,0.43,1,0 +31647134,Luxury SohoStyle 2 bedroom Downtown Manhattan.,91571876,Lena,Manhattan,Lower East Side,40.71889,-73.99231,Entire home/apt,255,2,13,2019-05-30,2.32,1,239 +31647516,Elegant & bright 1 bedroom in West Village,237204047,Ryan,Manhattan,West Village,40.72963,-74.0033,Entire home/apt,250,2,11,2019-05-31,2.34,1,0 +31647962,Spacious and stylish Harlem apartment,237280886,Nicola,Manhattan,Harlem,40.82636,-73.94985,Entire home/apt,95,2,0,,,1,0 +31648320,"Times Square Suite with amazing views, high rise !",237283897,Mj,Manhattan,Theater District,40.75412,-73.98601,Entire home/apt,119,1,18,2019-06-21,3.18,1,302 +31649210,one bedroom,111586798,Percival,Bronx,Soundview,40.82121,-73.87764,Private room,65,7,0,,,1,90 +31650146,Gorgeous Spacious 1BR in Prime Lower East Side,1306854,Ani,Manhattan,Lower East Side,40.71991,-73.98505,Entire home/apt,110,30,0,,,1,172 +31651200,Private room in Midtown Manhattan with Balcony,10318796,Roberta,Manhattan,Midtown,40.75403,-73.9715,Private room,160,2,0,,,1,0 +31651359,Huge Private Room Near Brooklyn Museum,181382109,Jacob,Brooklyn,Crown Heights,40.66911,-73.95982,Private room,68,1,1,2019-05-13,0.52,1,59 +31652254,Photo Studio & Creative Space,5095364,Michael,Manhattan,Nolita,40.72095,-73.99756,Entire home/apt,1200,1,1,2019-02-03,0.19,1,27 +31652405,"Private room,29fl in luxury bldg Midtown Manhattan",237320600,Katya,Manhattan,Midtown,40.7532,-73.97141,Private room,119,2,1,2019-02-17,0.21,1,0 +31652563,Super large 2 bed 2 Bath with balcony and POOL,113805886,Yaacov,Manhattan,Upper East Side,40.77694,-73.94994,Entire home/apt,250,31,1,2019-03-13,0.25,33,365 +31652565,Green moon#2,208136645,Andre,Brooklyn,Flatlands,40.62655,-73.9407,Private room,49,2,1,2019-04-03,0.31,4,96 +31654063,"♥Private-Keyed Room #3 - Desk, closet, & King-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73783,-73.99775,Private room,99,12,12,2019-06-20,2.11,4,21 +31654495,Luxury Modern Gramercy Loft with a balcony,79697038,Esteban,Manhattan,Kips Bay,40.74144,-73.98079,Entire home/apt,200,30,4,2019-06-13,0.85,1,88 +31660529,Calm bed great area.,111542307,Imoy,Brooklyn,Bedford-Stuyvesant,40.68694,-73.92732,Shared room,20,30,0,,,2,342 +31663848,Gorgeous Sunny Luxury Williamsburg Condo,237406328,Daniel,Brooklyn,Williamsburg,40.71447,-73.95108,Entire home/apt,140,2,30,2019-07-07,5.56,1,135 +31665707,bohemian pied a Terre,27473538,Yael,Brooklyn,Greenpoint,40.72712,-73.95674,Entire home/apt,250,5,0,,,1,43 +31667621,Manhattan studio 7,204811322,J Danny,Manhattan,Chelsea,40.74826,-73.98887,Private room,220,3,5,2019-06-20,2.73,2,21 +31668199,Spread love it’s the Brooklyn way.,130023,Lloyd,Brooklyn,Bedford-Stuyvesant,40.68306,-73.93104,Entire home/apt,145,5,5,2019-06-15,1.43,2,244 +31668461,Amazing and Lofty 2BD space in Williamsburg,236432765,Aleks,Brooklyn,Williamsburg,40.71524,-73.9553,Entire home/apt,200,2,14,2019-06-30,3.93,2,330 +31668481,Beautiful 1 bdr in the heart of Williamsburg,230930866,Kim,Brooklyn,Williamsburg,40.71788,-73.96398,Entire home/apt,175,3,2,2019-06-01,0.53,1,5 +31669029,Cozy bedroom in artsy Bushwick Loft,7571700,Harris,Brooklyn,Williamsburg,40.70404,-73.93348,Private room,45,3,3,2019-04-23,0.76,1,0 +31669717,Cozy One Bedroom by Central Park,225612108,Rina,Manhattan,Upper West Side,40.79385,-73.96351,Entire home/apt,120,7,1,2019-03-25,0.28,1,0 +31669844,Studio in lovely Astoria,46324691,Eva,Queens,Astoria,40.77026,-73.92574,Entire home/apt,125,7,2,2019-04-03,0.58,1,0 +31670111,Greenpoint Sun Garden (Entire Loft),108150300,Cassi,Brooklyn,Greenpoint,40.72713,-73.95509,Entire home/apt,150,1,1,2019-02-18,0.21,2,2 +31670237,Dominiques Homesharing room NYC* metro*quiet*safe,310670,Vie,Bronx,Eastchester,40.88009,-73.83456,Private room,68,2,0,,,13,364 +31670590,East Village/Union Square Flat,237464350,Jake,Manhattan,East Village,40.73315,-73.98688,Entire home/apt,167,5,13,2019-06-20,2.75,1,91 +31670608,Contemporary Duplex with Grand Master Suite,50612451,Valentin,Brooklyn,Crown Heights,40.67577,-73.92393,Entire home/apt,220,3,4,2019-07-06,4,1,76 +31670625,Bright financial district apartment with views,237283862,Benjamin,Manhattan,Financial District,40.70504,-74.00787,Entire home/apt,250,2,6,2019-04-06,1.26,1,0 +31670943,Nice Quite place,73676875,Jonathan,Bronx,Claremont Village,40.84381,-73.90827,Entire home/apt,80,2,0,,,1,321 +31671043,Spacious Sun-Drenched UWS Apartment,4005376,Adam,Manhattan,Upper West Side,40.78966,-73.9776,Entire home/apt,107,25,1,2019-05-06,0.47,1,170 +31671056,Standalone room in the heart of Astoria,137734836,Walter,Queens,Astoria,40.7576,-73.91735,Private room,54,2,1,2019-06-19,1,1,56 +31671411,ELEVATOR Doorman GYM Studio 5225,16098958,Jeremy & Laura,Manhattan,Midtown,40.75003,-73.97059,Entire home/apt,135,30,0,,,96,156 +31671911,Harry Potter Den,138456145,Neal,Brooklyn,Bushwick,40.69294,-73.90744,Private room,35,7,1,2019-04-27,0.41,1,36 +31671972,NYC Entire Floor large space,237474824,Cho Cheong,Brooklyn,South Slope,40.66052,-73.9843,Entire home/apt,45,5,1,2019-03-04,0.23,1,28 +31672538,Home away from home,237482248,Jacob,Queens,Sunnyside,40.74372,-73.92416,Entire home/apt,200,1,1,2019-06-21,1,1,179 +31673405,Sunny 2 bedroom in Central Brooklyn!,121842697,Lo,Brooklyn,Crown Heights,40.67648,-73.93814,Entire home/apt,200,5,14,2019-06-22,3.59,1,96 +31675232,Brooklyn Exquisite,206288086,Akram,Brooklyn,Fort Greene,40.6927,-73.97265,Entire home/apt,165,2,13,2019-06-30,3.05,2,273 +31675244,Large Bedroom in Excellent Chinatown/LES Apartment,41108789,Ulysses,Manhattan,Chinatown,40.71444,-73.99344,Private room,85,2,25,2019-06-17,5.00,1,24 +31675967,"Bright, spacious, minimalist room in cool spot",220071184,Madison,Brooklyn,Williamsburg,40.70824,-73.94423,Private room,57,2,1,2019-06-09,1,1,3 +31676259,Huge 1br ** Priv.Balcony & River Views ** Gym*Pool,13773574,Cecile,Manhattan,Midtown,40.76497,-73.98191,Entire home/apt,225,30,0,,,12,328 +31677408,Perfect Upper West Side Studio,28334703,Stephen,Manhattan,Upper West Side,40.77974,-73.97973,Entire home/apt,150,4,2,2019-06-26,0.71,1,7 +31677547,NEW Williamsburg Gardens Large Room Private Bath,86604612,Janet,Brooklyn,Williamsburg,40.70624,-73.9508,Private room,75,2,3,2019-06-22,0.74,1,0 +31682228,Luxury Modern Apt - AMAZING location,237569289,I Do Not Live Here,Manhattan,Gramercy,40.73792,-73.98306,Entire home/apt,220,90,6,2019-05-10,1.21,1,0 +31682665,Cozy place in Astoria,8810794,Marcela,Queens,Long Island City,40.74776,-73.92875,Private room,50,1,10,2019-06-30,2.13,1,125 +31683919,Huge sunny room with private bath,49539959,Alex,Brooklyn,Crown Heights,40.67375,-73.91242,Private room,50,30,5,2019-03-31,0.93,2,0 +31684570,Designer Apartment in Cool Two Bridges,48911266,Tess,Manhattan,Chinatown,40.71382,-73.99609,Entire home/apt,175,2,4,2019-05-19,0.85,2,18 +31685548,"Little cozy, clean, homy gem in the hearth of LIC.",11914604,Maurizio,Queens,Long Island City,40.74649,-73.9525,Private room,70,15,3,2019-06-25,1.32,1,135 +31687149,Cozy south brooklyn apartment for a single/couple,32552738,Stella,Brooklyn,Kensington,40.64159,-73.9796,Entire home/apt,90,2,9,2019-03-18,1.75,1,0 +31688794,Awesome 1 Br apartment,24618314,Mishka,Brooklyn,Bedford-Stuyvesant,40.68638,-73.95442,Entire home/apt,56,3,2,2019-02-18,0.36,1,0 +31690275,Cozy & Colorful in Bushwick,71635863,Anne,Brooklyn,Bushwick,40.69034,-73.91976,Private room,65,1,25,2019-07-05,4.78,1,7 +31690969,Stay in the ❤️of Manhattan!,14892784,Melanie,Manhattan,Midtown,40.75979,-73.96463,Private room,100,1,20,2019-06-16,4.29,1,7 +31691209,"All set for guys, don’t miss out",51596474,Antony,Brooklyn,Gravesend,40.58453,-73.97172,Shared room,20,5,5,2019-04-29,1.01,12,0 +31691927,"One Room, In The Heights",13743148,Michelle,Manhattan,Washington Heights,40.8429,-73.93858,Private room,65,1,0,,,1,310 +31692426,Charming 2 Bedroom Brownstone Apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68525,-73.99837,Entire home/apt,200,2,4,2019-07-07,1.38,2,22 +31692860,2 bedroom apartment with a big outdoor terrace,169148493,Alan,Queens,Ditmars Steinway,40.77363,-73.91188,Private room,90,4,0,,,1,0 +31695085,Upper Upper East Side Vistas (15 min to LGA),13419129,Mikala,Manhattan,East Harlem,40.79966,-73.9417,Entire home/apt,97,1,16,2019-07-05,3.38,1,11 +31696775,Quiet & Peaceful room in Astoria!,151557263,Sadhya,Queens,Astoria,40.76333,-73.91187,Private room,45,2,13,2019-07-01,2.57,1,53 +31697123,Montauk Guest Suite,237715800,Joseph & Teresa,Brooklyn,East New York,40.66996,-73.87637,Entire home/apt,85,1,43,2019-07-08,7.87,1,161 +31698813,Cozy & Comfortable room-flushing subway,111142003,Se 小瑟,Queens,Flushing,40.75187,-73.81691,Private room,40,1,10,2019-06-18,2.52,1,205 +31704075,Cozy Manhattan Room,153793156,Erika,Manhattan,Morningside Heights,40.81633,-73.96069,Private room,50,2,15,2019-06-20,3.60,1,2 +31705298,Cozy and Quiet City Escape,3072696,Amy,Manhattan,Harlem,40.81369,-73.94996,Private room,100,1,6,2019-05-11,1.58,1,125 +31705971,Home away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.70534,-73.87995,Private room,50,2,18,2019-07-02,3.78,2,63 +31707011,West Village Gem,237804845,Veronica,Manhattan,West Village,40.73409,-74.00464,Entire home/apt,299,1,13,2019-07-01,3.22,1,61 +31707882,"Park Slope, Beautiful New Apartment",237817180,Sandra,Brooklyn,Park Slope,40.67378,-73.98299,Entire home/apt,285,5,9,2019-06-18,1.86,1,2 +31709260,"Spacious apartment close to Manhattan, WIFI",80561485,Gabriela,Queens,Astoria,40.7744,-73.93344,Entire home/apt,170,1,3,2019-03-09,0.58,2,41 +31710037,Beautiful airy apartment with private backyard.,47664369,Raizy,Brooklyn,Sunset Park,40.66123,-73.9971,Entire home/apt,100,1,9,2019-05-22,2.03,1,35 +31711274,"Contemporary, Cozy Retreat",170256169,Tiphanie,Brooklyn,Canarsie,40.6354,-73.90039,Entire home/apt,60,2,45,2019-06-24,9.64,1,30 +31711687,PRIVATE 1 Bedroom w/ your own bathroom & entrance!,15058648,Shola,Brooklyn,Bushwick,40.69814,-73.92805,Private room,70,3,3,2019-05-19,1.13,3,21 +31711813,法拉盛花园独立屋Entire 3beds+Park mins go JFK Airport/NYC,44093954,Susan,Queens,Whitestone,40.78236,-73.82092,Entire home/apt,140,1,9,2019-06-07,1.64,1,204 +31713303,Beautiful and Spacious West Village Apartment,223075114,Reggie,Manhattan,West Village,40.73386,-74.00038,Entire home/apt,215,2,2,2019-06-02,1.03,1,5 +31713522,Whole Ridgewood Railroad 2 blocks from M,11082069,Sam,Queens,Ridgewood,40.70271,-73.90517,Entire home/apt,52,7,1,2019-02-02,0.19,1,0 +31713858,Long Island City Apt with a Terrace,237880163,Sandeep,Queens,Sunnyside,40.7379,-73.92911,Private room,85,1,21,2019-07-02,4.92,1,80 +31714036,Urban Design Sanctuary,9582338,Max,Manhattan,NoHo,40.72626,-73.99316,Entire home/apt,250,3,9,2019-07-02,2.70,1,112 +31714168,5 min away from LGA,213014559,Kam,Queens,East Elmhurst,40.76893,-73.87712,Entire home/apt,135,1,17,2019-07-08,3.57,2,0 +31715312,Manhattan Studio 4,204811322,J Danny,Manhattan,Midtown,40.74827,-73.98865,Entire home/apt,230,3,2,2019-06-04,0.51,2,29 +31715879,Beautiful Cozy room in NYC nearby Time square,222424429,Marta,Manhattan,Washington Heights,40.84562,-73.94031,Private room,54,3,17,2019-06-27,3.31,2,38 +31716471,Lovely studio in Astoria/ LIC!,47114213,Leonardo,Queens,Long Island City,40.76117,-73.93127,Entire home/apt,70,2,11,2019-05-28,2.29,1,3 +31717837,"Amazing Value, Convenient Location, Nice Amenities",234174616,Onika,Brooklyn,East New York,40.67349,-73.88705,Entire home/apt,100,5,0,,,1,180 +31717883,Your Stay in Staten Island will be the best,237913872,Lilia,Staten Island,Concord,40.60228,-74.08324,Private room,75,2,8,2019-06-29,1.78,1,90 +31719001,Nice place for three people.,3767367,Regina,Manhattan,Upper West Side,40.79397,-73.972,Private room,80,3,7,2019-07-02,2.47,3,334 +31720275,Suite Escape - Modern & Chic 1 Bedroom,208930169,Kimesha,Brooklyn,Canarsie,40.63028,-73.90121,Entire home/apt,110,2,0,,,1,353 +31722467,ENTIRE PLACE! near Columbia-sleeps up to 8 guests!,16480700,Eddie&Vlad,Manhattan,Harlem,40.81953,-73.95476,Entire home/apt,250,1,0,,,7,249 +31726939,"Terrific Tribeca 1BR, Gym, Roof deck, Indoor pool by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71494,-74.00676,Entire home/apt,349,30,0,,,232,310 +31728112,"LARGE ROOM +20 minutes to midtown",172895347,Mario & Maria,Queens,Jackson Heights,40.75168,-73.88315,Private room,59,2,1,2019-02-03,0.19,2,0 +31729652,Sunny Studio located in the heart of Harlem,91390716,Kathiana Joy,Manhattan,Harlem,40.81207,-73.94335,Entire home/apt,80,2,3,2019-02-25,0.63,1,0 +31730525,Spacious 2 beds apt in Hell’s Kitchen 5ppl,237921255,Maria,Manhattan,Hell's Kitchen,40.76246,-73.9953,Entire home/apt,325,1,33,2019-07-03,6.11,1,217 +31731555,Spacious Bedroom with King Bed in Light-Filled Apt,2278050,Jill Laurie,Manhattan,Upper West Side,40.80272,-73.96916,Private room,80,5,3,2019-04-30,0.65,1,188 +31733307,5min fr Belmont Park 15min fr JFK 20min fr LaGuard,234191916,Dwayne,Queens,Queens Village,40.71131,-73.74623,Entire home/apt,69,1,34,2019-06-10,6.46,1,170 +31734628,"Sublet in Williamsburg, 50 steps from L train",23670318,Sean,Brooklyn,Williamsburg,40.7135,-73.94644,Private room,48,28,0,,,1,0 +31736343,Penthouse studio. Clean. A+ location Cafe&Park :),42153340,Boomer,Brooklyn,Greenpoint,40.72328,-73.94969,Entire home/apt,120,2,2,2019-02-19,0.42,2,0 +31737653,Museum Bed and Breakfast: Apt 3R Garden View,49736436,George,Manhattan,Washington Heights,40.83583,-73.93847,Entire home/apt,120,3,2,2019-06-24,2,2,116 +31738077,Cozy private room in Williamsburg,50497157,Luca,Brooklyn,Williamsburg,40.71248,-73.94859,Private room,45,3,1,2019-02-21,0.22,1,0 +31738629,Historic Brooklyn Townhouse Garden Floor,170638981,Gabrielle,Brooklyn,Prospect-Lefferts Gardens,40.6598,-73.95879,Entire home/apt,85,2,25,2019-07-08,4.78,1,28 +31743178,1 bedroom apartment/living room available.,234592314,Selvete,Brooklyn,Midwood,40.61459,-73.96041,Entire home/apt,59,2,4,2019-06-13,0.73,1,87 +31748621,Modern NYC Apartment,19043103,Jai,Manhattan,Chelsea,40.75124,-73.99523,Entire home/apt,100,5,6,2019-06-20,1.10,1,8 +31748955,Comfy Private bedroom in shared APT - Wyckoff Hosp,200927536,Manu,Brooklyn,Bushwick,40.70535,-73.91817,Private room,65,7,0,,,3,329 +31755223,Modern 3BR artsy Brooklyn duplex. New renovation,3042136,Jenni,Brooklyn,Carroll Gardens,40.6827,-73.99142,Entire home/apt,375,6,1,2019-04-28,0.41,3,7 +31756631,Private room in modern duplex,238111285,Leticia,Brooklyn,Bushwick,40.68542,-73.90952,Private room,45,2,1,2019-02-05,0.19,1,0 +31758029,"Color and light, East Village",2690800,Svetlana And Jimmy,Manhattan,East Village,40.7221,-73.98304,Entire home/apt,117,5,6,2019-03-24,1.22,1,0 +31758438,Hip Bushwick Room close to L train (A),238119405,Julia,Brooklyn,Bushwick,40.68219,-73.90737,Private room,48,1,18,2019-07-01,3.72,5,189 +31759087,Hip Bushwick Room close to L train (B),238119405,Julia,Brooklyn,Bushwick,40.68209,-73.90672,Private room,48,1,11,2019-06-20,1.98,5,166 +31759330,Hip Bushwick Room close to L train (C),238119405,Julia,Brooklyn,Bushwick,40.68161,-73.90618,Private room,53,2,10,2019-05-27,2.61,5,158 +31759409,conveniet access to NYC,63966717,Carol,Bronx,Belmont,40.85929,-73.89165,Private room,99,2,1,2019-03-11,0.25,2,0 +31759545,Hip-Beautiful Bushwick Room Close to L train (D),238119405,Julia,Brooklyn,Bushwick,40.68216,-73.90642,Private room,48,1,4,2019-04-21,0.73,5,166 +31759546,Cozy Upper West Side Apartment,160739637,Crystal,Manhattan,Upper West Side,40.80153,-73.9655,Entire home/apt,150,5,0,,,1,74 +31760403,1 JFK Layover - Express train to Manhattan,67746251,Gasminee,Queens,Ozone Park,40.68069,-73.8494,Private room,44,1,42,2019-06-28,8.03,4,32 +31760436,Columbia & CentralPark Private room!,124028462,Sergii,Manhattan,Harlem,40.80384,-73.95765,Private room,55,30,1,2019-03-01,0.23,3,353 +31760509,"Morningside Park, near Columbia U., private room",219505617,Karen,Manhattan,Harlem,40.80351,-73.95822,Private room,85,1,18,2019-06-25,3.62,1,92 +31760941,Private exquisite apartment with modern amenities,238118741,Idelsa,Bronx,Mott Haven,40.81132,-73.92037,Entire home/apt,115,3,19,2019-07-07,3.41,1,228 +31761090,Wall-size window Private Bedroom,238145460,Cindy,Brooklyn,Flatbush,40.63037,-73.95671,Private room,45,1,9,2019-06-24,1.72,1,129 +31761417,Large quiet apt. Right next to everything you need,123060492,DeShawn,Queens,Astoria,40.7679,-73.91764,Entire home/apt,75,5,2,2019-03-04,0.41,1,0 +31763495,Entire studio fully renovated,52577963,Mark,Queens,Woodhaven,40.69054,-73.84812,Entire home/apt,99,5,7,2019-06-11,1.62,6,319 +31764572,Modern living in semi-industrial setting,78326799,Patrick,Brooklyn,Gowanus,40.68289,-73.9878,Private room,80,1,2,2019-04-07,0.63,1,0 +31767505,Spacious Downtown Studio,56656728,Bret,Manhattan,Financial District,40.71115,-74.00834,Entire home/apt,209,3,12,2019-06-19,2.20,5,107 +31771914,AMAZING ENTIRE APT FOR Friends and Family,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69254,-73.90445,Entire home/apt,185,2,0,,,8,320 +31772667,A3 Delightful Budget private room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69213,-73.90248,Private room,65,2,15,2019-06-18,2.81,8,344 +31772802,A3 Excellent Budget Private Room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.6918,-73.90414,Private room,65,2,21,2019-05-22,3.84,8,321 +31773364,Spacious room with easy commute to Grand Central!,137358866,Kazuya,Queens,Woodside,40.74466,-73.909,Private room,38,30,0,,,103,244 +31773898,PRIME SOHO: Lovely Room With Closet on Prince St,236445157,Anna,Manhattan,SoHo,40.7276,-74.00275,Private room,80,180,1,2019-03-11,0.25,3,342 +31775512,"Private room with bathroom/ M, J, Z, G trains",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.6931,-73.94043,Private room,75,30,0,,,10,364 +31787990,"Warm, quiet and spacious.",127583166,Maite,Manhattan,Washington Heights,40.83919,-73.94585,Private room,75,3,2,2019-02-12,0.41,2,0 +31794109,Adorable Hudson Yards Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Chelsea,40.75194,-73.99501,Entire home/apt,243,30,0,,,232,1 +31795059,Loft on the Best Block of the Lower East Side,1533007,Sivan,Manhattan,Chinatown,40.71683,-73.99172,Entire home/apt,130,3,15,2019-06-19,3.04,1,15 +31795183,Bright Room in Bushwick,10512556,Julie,Brooklyn,Bushwick,40.70108,-73.92401,Private room,55,2,0,,,1,0 +31795680,Recently Renovated 2 Bed Apartment In Williamsburg,3659285,Moshe,Brooklyn,Williamsburg,40.70787,-73.95501,Entire home/apt,160,1,22,2019-06-25,4.49,1,237 +31796259,Luxury Studio in Prime Area,89896526,Scott,Manhattan,Financial District,40.71081,-74.00846,Entire home/apt,115,30,1,2019-03-05,0.24,1,4 +31796691,Spacious 2 bedroom apt in Bensonhurst - Sleeps 10,231212364,Kel,Brooklyn,Bensonhurst,40.60556,-73.99898,Entire home/apt,123,3,3,2019-07-04,1.06,2,147 +31797655,Spacious studio - 5 Mins to Times Square,37412692,Kim,Manhattan,Midtown,40.76697,-73.98176,Entire home/apt,105,30,0,,,4,339 +31799118,"3 BDR APT, ONLY 1 SUBWAY STOP TO MANHATTAN, 5 MIN!",217784241,Analia,Brooklyn,Williamsburg,40.71011,-73.96086,Entire home/apt,280,1,12,2019-06-20,3.21,4,250 +31799369,Private West Village Townhouse w/ Hot Tub,185049106,Natalia,Manhattan,West Village,40.73271,-74.00324,Entire home/apt,700,4,10,2019-06-01,2.56,1,127 +31799920,Best location Just 5 min to MANHATTAN,217784241,Analia,Brooklyn,Williamsburg,40.70999,-73.96097,Private room,70,1,33,2019-05-31,6.92,4,0 +31801234,MANHATTAN studio 10 minutes away from Central Park,238323020,Paul,Manhattan,Upper East Side,40.76672,-73.96111,Entire home/apt,129,1,23,2019-06-21,4.16,1,109 +31801375,East Flatbush,238321827,Denise,Brooklyn,East Flatbush,40.65057,-73.92383,Private room,37,1,51,2019-06-28,9.56,1,341 +31801631,Queen Master BR 5min Walk from Major Attractions 웃,238324936,Marcel,Manhattan,Hell's Kitchen,40.76315,-73.98711,Private room,150,1,4,2019-06-21,0.75,3,149 +31801816,Sparkling Clean BR in Unbeatable Location 웃,238324936,Marcel,Manhattan,Hell's Kitchen,40.76463,-73.98772,Private room,150,1,3,2019-03-07,0.56,3,152 +31802275,Coral Harlem Studio,8895249,Kenya,Manhattan,Harlem,40.82297,-73.93948,Private room,54,2,12,2019-06-26,2.83,1,129 +31802641,High Vibe Upper West,19755137,Beth,Manhattan,Upper West Side,40.77809,-73.97962,Entire home/apt,185,7,0,,,1,55 +31802796,Cozy apartment in the heart of NYC,30077950,Lea,Manhattan,East Village,40.73201,-73.98768,Entire home/apt,250,2,0,,,1,0 +31803169,Beautiful & Spacious APT / Large Living Room Area,80093359,Isabella,Brooklyn,Bushwick,40.6856,-73.91413,Entire home/apt,79,2,4,2019-06-11,0.86,2,0 +31803533,Beautiful Luxury Studio w/Exceptional Water View,147351617,Cem,Manhattan,Battery Park City,40.71085,-74.01801,Entire home/apt,200,2,17,2019-06-30,3.05,1,79 +31803703,COZY! PRIME LOCATION! REAL 2-BEDROOM!,238342493,George,Brooklyn,Cobble Hill,40.68846,-73.99557,Entire home/apt,250,2,19,2019-07-01,3.63,1,295 +31804149,Williamsburg - 1st stop out of Lower Manhattan!,109276977,Ernie,Brooklyn,Williamsburg,40.71033,-73.95868,Private room,59,1,1,2019-02-15,0.21,1,0 +31805784,Beautiful & Cozy - SoHo Studio,35486274,Evan,Manhattan,SoHo,40.72451,-74.00385,Entire home/apt,132,2,3,2019-05-06,0.73,1,0 +31805845,Cozy Room - Free Cleaning + WiFi - Quick Walk to L,154981576,Bedly Bushwick,Brooklyn,Bushwick,40.70048,-73.91229,Private room,34,30,0,,,9,196 +31806593,High ceilings private room with record player,191084919,Brian,Brooklyn,Bedford-Stuyvesant,40.68434,-73.93712,Private room,70,1,5,2019-06-30,1.97,1,0 +31806847,Lovely Room in Brooklyn,93690639,Teo,Brooklyn,Bensonhurst,40.61109,-74.00239,Private room,90,1,0,,,1,0 +31807013,Cuarto acogedor para gente que quiera disfrutar NY,238374006,César A.,Queens,Flushing,40.76398,-73.82426,Private room,40,2,1,2019-04-07,0.32,1,153 +31809360,#NycArtBNB Luxury West Village 1 Bedroom,25169596,Jessica,Manhattan,West Village,40.73304,-74.00059,Entire home/apt,250,1,21,2019-06-30,4.34,2,271 +31809829,Beautiful Room in Bushwick,11672284,Hea,Brooklyn,Bushwick,40.70471,-73.92477,Private room,89,2,0,,,2,0 +31809918,Pirouette (Private Room),51596474,Antony,Brooklyn,Gravesend,40.58421,-73.97104,Private room,35,5,1,2019-02-15,0.21,12,0 +31814773,Amazing Private room near Central Park,124028462,Sergii,Manhattan,Harlem,40.80515,-73.95651,Private room,59,30,1,2019-03-17,0.26,3,332 +31815470,Crown heights apt,44801404,Idris,Brooklyn,Crown Heights,40.66897,-73.92848,Private room,130,14,0,,,1,365 +31815508,Private room with a great location in Manhattan,124028462,Sergii,Manhattan,Harlem,40.80492,-73.95817,Private room,59,30,2,2019-05-13,0.50,3,333 +31818244,Large and Comfy at Prospect Park,4375988,Keturah,Brooklyn,Prospect-Lefferts Gardens,40.65952,-73.95526,Private room,50,1,0,,,3,305 +31818320,Private room in center of Manhattan I,39528519,Max,Manhattan,Lower East Side,40.70988,-73.98686,Private room,73,15,0,,,28,185 +31818460,Entire 3rd Floor w/2 rooms of Authentic Brownstone,73425483,Vincent,Brooklyn,Bedford-Stuyvesant,40.69254,-73.93823,Entire home/apt,400,2,0,,,6,0 +31818771,Wonderful private room near Two Bridges II,39528519,Max,Manhattan,Lower East Side,40.70961,-73.98679,Private room,73,15,0,,,28,185 +31822089,Artist’s apartment in Harlem!,552627,Brandy,Manhattan,Harlem,40.82458,-73.93883,Private room,39,2,0,,,2,315 +31823258,Serenity in the Gardens,3443943,Nicole And Joe,Brooklyn,Carroll Gardens,40.6766,-73.99855,Private room,225,3,1,2019-05-09,0.48,1,178 +31823510,Park Slope apartment in the heart of it all.,34097291,Andrew,Brooklyn,South Slope,40.66626,-73.98127,Entire home/apt,275,1,0,,,1,0 +31823779,Sunny bedroom in Greenpoint/Williamsburg Brooklyn.,43976480,Karina,Brooklyn,Greenpoint,40.72174,-73.94802,Private room,65,1,32,2019-07-01,8.50,1,22 +31823858,**BROOKLYN BLUE**MODERN LUXE STUDIO SUITE,198674748,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.6615,-73.95307,Entire home/apt,126,3,23,2019-06-26,4.51,1,6 +31824097,Large Private Room with office space,193725343,Manon,Brooklyn,Bedford-Stuyvesant,40.68809,-73.95855,Private room,63,1,3,2019-06-28,0.74,1,44 +31824803,Cozy and Spacious 2 bedroom Apartment,238496151,Stephany,Brooklyn,Bedford-Stuyvesant,40.69569,-73.94792,Entire home/apt,165,5,8,2019-06-16,2.67,1,81 +31828528,Amazing Room in Triplex Loft,123672154,Abdes,Brooklyn,Greenpoint,40.73392,-73.95203,Private room,65,1,3,2019-03-13,0.55,2,0 +31828585,"Large Private Room in Modern, Rustic 2BR Apartment",61278632,Owen,Manhattan,Harlem,40.82049,-73.95268,Private room,50,3,3,2019-07-01,0.74,1,7 +31830652,NEW YORK CITY Manhattan Penthouse Central Park,8849869,Tatiana & Tyson,Manhattan,Upper West Side,40.79118,-73.97091,Entire home/apt,110,30,1,2019-05-19,0.59,1,3 +31832773,Great access/2min! U can use 5 lines(EFMR7) !,200239515,Shogo,Queens,Woodside,40.74578,-73.89328,Private room,40,30,1,2019-03-16,0.26,15,1 +31832851,Amazing Townhouse Prewar Duplex @ Lex Ave&79th St!,235559424,Shmuel Z,Manhattan,Upper East Side,40.77567,-73.95961,Entire home/apt,495,2,15,2019-06-24,3.31,1,156 +31832966,Garden apartment in the heart of Gramercy,236148005,Linus,Manhattan,Flatiron District,40.74158,-73.98593,Entire home/apt,200,2,8,2019-07-01,1.95,1,34 +31834008,"PLEASE READ LISTING BEFORE BOOKING +Suite 10017",231510804,Sharon,Brooklyn,Canarsie,40.63502,-73.88834,Entire home/apt,130,1,57,2019-07-08,10.36,1,337 +31834161,Great Access! 2min frm station U can use 5 lines!!,200239515,Shogo,Queens,Woodside,40.74438,-73.89161,Private room,40,30,1,2019-03-03,0.23,15,44 +31834190,Small studio in Queens,18957069,Natalia,Queens,Woodside,40.74734,-73.89735,Entire home/apt,95,2,0,,,1,17 +31835260,Downtown Modern 2 bedroom with Views!,22100836,Hana,Manhattan,Gramercy,40.73782,-73.98547,Entire home/apt,218,1,6,2019-05-12,1.49,3,0 +31835498,Large Private Bedroom with a High-rise View in NYC,22100836,Hana,Manhattan,Flatiron District,40.73943,-73.98532,Private room,65,1,14,2019-06-02,2.98,3,0 +31835627,2 minutes to subway Room with Terrace and sofa,152895936,Matsuko,Queens,Elmhurst,40.73538,-73.87892,Private room,34,28,0,,,1,0 +31835917,Chic and cozy,26317294,Denise,Manhattan,Upper West Side,40.77796,-73.98213,Private room,95,275,0,,,1,365 +31836311,New(2015) Room & easy commute to Manhattan 35min,19303369,Hiroki,Queens,Elmhurst,40.74001,-73.87629,Private room,32,29,1,2019-03-31,0.30,37,31 +31836703,Amazing and spacius room in Bed-Stuy Brooklyn,6030450,Joana,Brooklyn,Bedford-Stuyvesant,40.68442,-73.92441,Private room,80,3,6,2019-07-01,1.41,1,179 +31837233,Beautiful room in Bushwick,11672284,Hea,Brooklyn,Bushwick,40.70526,-73.92446,Private room,250,2,0,,,2,97 +31837921,PRIVATE duplex by trains in the heart of Bushwick,46072382,Abigail,Brooklyn,Bushwick,40.69863,-73.934,Entire home/apt,107,4,1,2019-03-01,0.23,1,0 +31838301,Private room in Beautiful Bed-Stuy,14743889,Kellie,Brooklyn,Bedford-Stuyvesant,40.68427,-73.9546,Private room,46,1,18,2019-07-01,3.33,1,16 +31838338,"ingefära hus! Two bedroom apt in Williamsburg, BK",179679,Ginger,Brooklyn,Williamsburg,40.71144,-73.95576,Entire home/apt,175,2,4,2019-05-19,0.99,3,14 +31839994,Private house with backyard overlooking park.,40160805,Cherokee,Queens,Flushing,40.75406,-73.80156,Entire home/apt,159,3,1,2019-06-30,1,1,78 +31845412,Specious 4-people room in nice surrounding,27974952,Alex,Brooklyn,East Flatbush,40.64434,-73.9504,Shared room,31,30,0,,,7,365 +31848816,Luxury Large 2-Bedroom Apartment in Hot Astoria,238685151,Damir&Sanela,Queens,Astoria,40.76595,-73.90829,Entire home/apt,115,1,30,2019-07-06,5.81,1,85 +31850283,Cozy room with nice view.(20mn to Times Square).,94049573,Anthony,Manhattan,East Harlem,40.81339,-73.93617,Private room,75,1,16,2019-07-01,4.80,1,199 +31852479,Cozy and warm private room,120974332,Jessi,Manhattan,East Harlem,40.79568,-73.93368,Private room,50,2,6,2019-06-18,1.10,2,5 +31852788,Tribeca Bedroom/Bathroom in Fabulous Penthouse,49725053,Steve,Manhattan,Tribeca,40.72154,-74.00664,Private room,149,1,6,2019-06-05,1.70,1,336 +31852940,Private Room in LES,15402077,Brijette,Manhattan,East Village,40.72043,-73.97923,Private room,84,2,0,,,1,0 +31853354,Room with private bath and shower in boho apt,12470243,Nicolina,Brooklyn,Bushwick,40.69713,-73.93035,Private room,50,15,0,,,1,0 +31854564,Three Bedroom / 2.5 Restroom In Warm Relaxing Home,238733096,Roy,Queens,Richmond Hill,40.68378,-73.83136,Entire home/apt,175,2,7,2019-06-23,2.88,2,345 +31856192,"Pvt Bath, Parking/Bkft - ""Suite Piece of Heaven""",61875246,Carolyn,Queens,Whitestone,40.7866,-73.82207,Private room,65,1,14,2019-06-30,4.77,2,5 +31856243,Luxury Highrise with Golf Simulator/Sauana Mry Hil,238748653,Sam,Manhattan,Murray Hill,40.74661,-73.97195,Private room,90,7,5,2019-05-15,1.06,1,8 +31857171,New York Apartment in a Beautiful Neighborhood,7700456,Seema,Manhattan,Washington Heights,40.85548,-73.93741,Entire home/apt,89,7,0,,,1,1 +31857472,Hamilton Studio. 2Queen. priv bath. kitchenette,238750007,Hamilton,Manhattan,Harlem,40.82335,-73.94939,Entire home/apt,145,4,20,2019-07-02,3.66,3,310 +31858749,"Quiet, comfortable & bright apt in East Village",2582224,Daniel,Manhattan,East Village,40.72749,-73.98674,Entire home/apt,150,5,1,2019-04-30,0.43,1,249 +31859521,Home Away from Home in Brooklyn/Queens borderline,220480440,Erica And Jose,Queens,Glendale,40.69472,-73.89663,Private room,50,2,18,2019-06-07,3.60,2,127 +31859735,Simple Reliable & Convenient 1Bdrm Upper East Side,68717996,David,Manhattan,Upper East Side,40.78136,-73.94709,Private room,87,4,11,2019-07-05,2.02,1,46 +31859909,Beautiful room with view in newly-renovated house,5704932,Victor,Bronx,Fordham,40.86643,-73.88895,Private room,65,2,7,2019-04-01,1.28,3,110 +31861155,Cozy 1 BR in hip Crown Heights,7261749,Michelle,Brooklyn,Prospect-Lefferts Gardens,40.65719,-73.95421,Private room,30,4,2,2019-07-03,0.81,1,6 +31861671,Hamilton Loft. 2Queen. priv bath. full kitchen,238750007,Hamilton,Manhattan,Harlem,40.82163,-73.94757,Entire home/apt,145,4,17,2019-07-01,3.09,3,265 +31861939,Cozy Heart of Gold Near Times Square Central Park!,155691688,Bonnie,Manhattan,Hell's Kitchen,40.76655,-73.9891,Entire home/apt,225,1,19,2019-07-06,5.64,1,50 +31863369,"Eh it's an apartment, control yourself",209940785,Stephen,Manhattan,Harlem,40.82337,-73.95127,Shared room,100,1,1,2019-02-14,0.21,1,90 +31864884,Elegant &Classical. 30 mins to midtown Manhattan!,56403037,Jane,Queens,Woodhaven,40.68793,-73.84975,Private room,42,1,16,2019-06-24,3.36,3,121 +31866810,Brooklyn Best Location! Granite Prospect! Doorman!,236671534,Eva,Brooklyn,Brooklyn Heights,40.69653,-73.99541,Entire home/apt,75,3,1,2019-02-20,0.21,1,94 +31866909,Private Gramercy studio btwn downtown & midtown!,169318289,Marla,Manhattan,Gramercy,40.73572,-73.98017,Entire home/apt,90,1,11,2019-06-23,2.31,1,89 +31871475,"Smart Midtown 1BR w/Private Roofdeck, near C.Park by Blueground",107434423,Blueground,Manhattan,Midtown,40.76175,-73.97592,Entire home/apt,267,30,0,,,232,188 +31873616,New Renovated Studio~Prime Upper East~W/D,162280872,Izi,Manhattan,Upper East Side,40.77598,-73.94904,Entire home/apt,140,30,1,2019-04-19,0.37,13,276 +31874576,Chic Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79884,-73.95983,Private room,60,30,2,2019-06-16,1.46,32,337 +31875616,Cozy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79966,-73.96059,Private room,60,30,1,2019-06-09,1,32,333 +31875688,East Village Loft,238779678,Dustin,Manhattan,East Village,40.72631,-73.98876,Private room,73,30,1,2019-04-30,0.43,9,332 +31875827,Artsy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80014,-73.96132,Private room,60,30,0,,,32,347 +31876014,Modern Bedroom in the Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.7988,-73.96096,Private room,60,30,0,,,32,342 +31876398,Airy Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79821,-73.9609,Private room,60,30,0,,,32,356 +31876569,Greenpoint Getaway,157896836,Emily,Brooklyn,Greenpoint,40.72115,-73.94841,Private room,48,1,1,2019-02-10,0.20,1,0 +31876645,Artistic Private BR in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79971,-73.96075,Private room,60,30,0,,,32,364 +31876649,Charming Greenpoint's Bedroom,2559194,Francesca,Brooklyn,Greenpoint,40.72731,-73.95482,Private room,100,14,0,,,1,188 +31876724,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79887,-73.95968,Private room,60,30,1,2019-06-21,1,32,342 +31877020,Calming Private BR in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79959,-73.95924,Private room,60,30,1,2019-06-16,1,32,346 +31877100,Stylish Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79891,-73.96116,Private room,60,30,1,2019-06-03,0.83,32,325 +31877537,Pastel Dream Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80044,-73.95953,Private room,60,30,0,,,32,317 +31877719,"Clean, minimally furnished room in huge apartment",2970272,Gretchen,Brooklyn,Crown Heights,40.67428,-73.9481,Private room,80,2,0,,,1,0 +31877755,Modern Private Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79823,-73.96064,Private room,60,30,1,2019-06-25,1,32,341 +31877856,Vibrant Private Bedroom in UWS 107,238321374,Eyal,Manhattan,Upper West Side,40.80008,-73.95926,Private room,60,30,1,2019-06-16,1,32,365 +31877977,Stunning Private Bedroom in UWS 107,238321374,Eyal,Manhattan,Upper West Side,40.79881,-73.9596,Private room,60,30,0,,,32,329 +31878663,Stylish Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79852,-73.96091,Private room,60,30,0,,,32,317 +31878924,Dreamy Private Bedroom Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79896,-73.95995,Private room,60,30,0,,,32,317 +31878988,Beautiful Garden Apartment Bedford Ave. stop on L,30214212,Michael,Brooklyn,Williamsburg,40.71509,-73.958,Entire home/apt,100,28,3,2019-05-30,0.90,1,258 +31879035,Bright Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79839,-73.96126,Private room,60,30,0,,,32,317 +31879273,Renovated Studio in the heart of Manhattan,105344359,Michelle,Manhattan,Midtown,40.75408,-73.96831,Entire home/apt,120,2,4,2019-03-31,0.77,1,0 +31879380,Peaceful room in cool area close to G/7/Ferry/JFK,80500739,Janet,Brooklyn,Greenpoint,40.7372,-73.95299,Private room,115,1,19,2019-07-06,5.33,1,345 +31879887,Spacious ground floor in Brooklyn town house,238894847,Ofrit,Brooklyn,Bedford-Stuyvesant,40.68636,-73.95577,Entire home/apt,200,2,11,2019-07-01,3.33,1,269 +31881052,Park Slope Villa,238953933,Claudia,Brooklyn,South Slope,40.66371,-73.9876,Entire home/apt,110,1,48,2019-06-23,9.93,1,250 +31881336,New large beautiful room with private bathroom,5704932,Victor,Bronx,Fordham,40.86566,-73.88748,Private room,65,2,6,2019-06-25,1.18,3,77 +31881525,Amazing Private Room w/ Bunk Bed - Nearby Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68439,-73.93753,Private room,57,2,17,2019-06-28,3.31,3,146 +31881759,New 1BR w/ King Bed. Subway close. B in NYC 7min,799317,Michael,Brooklyn,Williamsburg,40.71571,-73.94722,Entire home/apt,175,3,1,2019-02-11,0.20,1,0 +31881804,Beautiful Spacious Room w/ Queen Bed - Near Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68502,-73.93893,Private room,44,2,26,2019-06-25,4.94,3,118 +31881815,Quiet Bedroom in Gorgeous Upper East Side Loft,29394295,Samara,Manhattan,East Harlem,40.7882,-73.9405,Private room,80,3,0,,,1,0 +31882099,Comfy Private Room w/ Full Bed - Nearby Subway,238957303,Gui,Brooklyn,Bedford-Stuyvesant,40.68354,-73.9378,Private room,44,2,13,2019-06-26,2.58,3,162 +31883012,private room with private bathroom to MANHATTAN,24294060,Simon,Queens,Elmhurst,40.7337,-73.88363,Private room,80,3,0,,,1,364 +31883127,✴NEWLY RENOVATED✴ 2 BDR | SLEEPS 4 @ BROOKLYN,6833598,Timothy,Brooklyn,Bedford-Stuyvesant,40.68417,-73.91899,Entire home/apt,99,2,13,2019-07-05,3.98,1,182 +31883238,Living In Art,238975559,Antoaneta,Queens,Woodside,40.75413,-73.90204,Entire home/apt,250,2,12,2019-07-07,2.81,1,137 +31883514,"♥Private-Keyed Room #2 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73697,-73.99563,Private room,99,12,3,2019-02-11,0.60,4,19 +31883774,"♥Private-Keyed Room #1 - Desk, closet, Queen-bed♥",237336458,Thomas,Manhattan,Chelsea,40.73894,-73.9952,Private room,99,10,1,2019-02-17,0.21,4,31 +31884029,February room available in cozy Park Slope Apt.,140338526,Kenneth,Brooklyn,Park Slope,40.67042,-73.98508,Private room,50,5,0,,,1,0 +31884434,Studio B on Atlantic Ave,139838320,Bismillah,Brooklyn,Bedford-Stuyvesant,40.67991,-73.95168,Entire home/apt,86,2,19,2019-06-25,3.54,2,284 +31884652,Heart of Time Square w/ Spectacular View 3BR 2BA,235774051,Satoh,Manhattan,Theater District,40.75917,-73.98246,Entire home/apt,519,2,10,2019-06-26,1.86,1,165 +31884808,Woodside with a view (9 minutes from midtown),49289095,John,Queens,Woodside,40.74395,-73.89984,Private room,75,1,0,,,1,138 +31885300,King Size Bed: Spacious BR 25 minutes to city,96810536,Chandtisse,Brooklyn,Gowanus,40.66781,-73.99345,Private room,65,2,22,2019-07-06,4.23,3,156 +31885563,Close to Manhattan! Comfortable area to stay♪,200239515,Shogo,Queens,Sunnyside,40.73858,-73.92555,Private room,37,30,1,2019-05-20,0.60,15,0 +31885791,Room in East Harlem,8754633,Aleksei,Manhattan,East Harlem,40.79865,-73.93638,Private room,65,2,8,2019-06-30,2.79,1,8 +31885820,"Private bathroom/bedroom, easy access to JFK/LGA",14501609,Zebin,Queens,Richmond Hill,40.70203,-73.82841,Private room,40,2,18,2019-06-14,3.44,1,30 +31885987,Wonderful Charming Bedroom with Amazing NYC Views,1340740,Brian,Brooklyn,South Slope,40.66881,-73.98737,Private room,65,7,0,,,1,19 +31885991,Full size bed suite.,105762561,Kim,Queens,Jamaica,40.69102,-73.78438,Private room,65,2,2,2019-04-29,0.75,3,319 +31886239,beautiful 1 bedroom apt,239004977,Jess,Queens,Queens Village,40.72684,-73.74896,Private room,80,1,0,,,1,0 +31886403,"Large, sunny room with private bath.",238955568,George,Brooklyn,Kensington,40.63581,-73.96977,Private room,40,2,20,2019-06-10,3.80,1,6 +31886891,A3 Cozy private room,215577249,Charlie And Selena,Brooklyn,Bushwick,40.69217,-73.90396,Private room,65,2,11,2019-06-20,2.24,8,345 +31888319,Gorgeous big room with Hudson river view,22188,Laura,Manhattan,Upper West Side,40.78085,-73.98664,Private room,130,2,0,,,2,154 +31890488,"3 mins walk to subway , safe neighborhood , clean",239035419,Maetika,Queens,Woodside,40.74362,-73.89158,Private room,70,1,0,,,1,5 +31893504,Lovely Historic Garden Level Apartment,192741854,Bethany,Brooklyn,Bedford-Stuyvesant,40.68436,-73.93564,Entire home/apt,120,2,17,2019-06-23,3.75,2,214 +31894643,Spacious 1BR with terrace in the heart of Brooklyn,27547703,Brent,Brooklyn,Brooklyn Heights,40.69712,-73.99307,Entire home/apt,110,2,2,2019-06-09,0.53,1,0 +31894855,Best Upper West Side Two Bedroom Apartment,320428,David,Manhattan,Upper West Side,40.79095,-73.97291,Entire home/apt,142,7,5,2019-06-08,1.17,1,214 +31895547,Private room and bath 10 minutes to Manhattan,15437944,Chelsea,Brooklyn,Williamsburg,40.70703,-73.95396,Private room,100,2,0,,,1,0 +31895980,"2 Bedroom modern apartment, trains nearby, a GEM!",33614329,Walter,Brooklyn,Bushwick,40.69549,-73.93006,Entire home/apt,159,1,12,2019-06-29,3.03,4,259 +31896339,My cozy room perfect for Manhattan visitors,239088720,Stephanie,Bronx,Throgs Neck,40.82688,-73.81899,Private room,40,3,11,2019-05-25,2.06,1,0 +31897516,Hamilton Suite. 4Queen. 2rms. priv bath. kitchen,238750007,Hamilton,Manhattan,Harlem,40.82292,-73.94802,Entire home/apt,199,2,0,,,3,0 +31898440,"Well-decorated room in clean, modern apartment",80111968,Joe,Brooklyn,Downtown Brooklyn,40.69447,-73.98252,Private room,49,3,1,2019-02-17,0.21,1,0 +31898478,Skylit Bedroom In Brooklyn,3734323,Colin,Brooklyn,Bushwick,40.68629,-73.91245,Private room,49,2,15,2019-06-22,2.80,3,0 +31898581,THE BEST STASH SPOT,181346298,Tyqua,Manhattan,Lower East Side,40.71923,-73.97972,Private room,75,1,3,2019-06-30,2.81,1,364 +31898630,Bushwick Apartment,239116505,Alexis,Brooklyn,Bushwick,40.69945,-73.93543,Private room,38,3,1,2019-02-12,0.20,1,0 +31898844,Eddies place #2,98214533,Edwin’S Place,Staten Island,Huguenot,40.53982,-74.1728,Entire home/apt,75,2,20,2019-07-07,4.38,2,229 +31900179,Eddies place #3,98214533,Edwin’S Place,Staten Island,Huguenot,40.53987,-74.17258,Entire home/apt,100,2,11,2019-07-06,2.09,2,259 +31900259,"Nice place,where you can be comfortable",207913076,Fabrice,Brooklyn,Brownsville,40.66779,-73.91676,Private room,70,2,3,2019-05-16,0.64,1,325 +31900266,"Cozy Brownstone Garden Apt: Bed Stuy, Brooklyn",8803552,Ursula,Brooklyn,Bedford-Stuyvesant,40.68758,-73.94458,Private room,95,3,0,,,1,179 +31901657,Best Stay in Clean Brand New Penthouse Apartment,161769990,William,Brooklyn,Bedford-Stuyvesant,40.69117,-73.95233,Private room,50,5,2,2019-03-20,0.54,2,0 +31901835,The Tree of Life Community,49988341,Chris,Bronx,Wakefield,40.89682,-73.84318,Private room,41,1,0,,,1,163 +31903229,Cozy Sunlit Bedroom in heart of Williamsburg,598896,Su,Brooklyn,Williamsburg,40.71798,-73.95983,Private room,90,2,0,,,2,184 +31904037,"Bright, Clean and Modern Williamsburg Studio",10914119,Jules,Brooklyn,Williamsburg,40.71747,-73.96142,Entire home/apt,190,4,4,2019-05-31,1.05,1,187 +31904156,Fantastic Private Bedroom. Great Views & Location.,239168415,Christine,Manhattan,Financial District,40.70493,-74.0102,Private room,119,3,4,2019-05-10,1.15,1,26 +31904811,"Big Cozy room in Greenpoint, 5 mins from G train.",213760419,Ken,Brooklyn,Greenpoint,40.73104,-73.95097,Private room,110,2,5,2019-06-24,1.61,1,82 +31905531,Cozy Studio Near Central Park,179136567,Ro,Manhattan,East Harlem,40.79423,-73.94741,Entire home/apt,185,1,0,,,1,0 +31906094,Fabulous 1 Bedroom in the Heart of Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73202,-73.95595,Entire home/apt,68,1,20,2019-06-01,3.82,6,0 +31906580,Bright High Ceiling Bedroom in East Williamsburg,2707591,Lívia,Brooklyn,Williamsburg,40.70754,-73.94228,Private room,95,1,6,2019-07-01,1.28,1,200 +31907710,"One bedroom Apt in Manhattan, East Village",9736997,Esteban,Manhattan,East Village,40.72845,-73.98158,Entire home/apt,113,1,20,2019-06-20,3.85,1,96 +31909528,The clean separate studio in New York,51186155,Cherry,Queens,Flushing,40.73182,-73.79505,Entire home/apt,45,1,51,2019-07-04,9.39,1,49 +31909623,Wyndham Midtown 45 New York City 1 BR Apt w/View,96086378,Ashley,Manhattan,Midtown,40.75342,-73.97135,Entire home/apt,699,1,1,2019-04-23,0.39,2,333 +31913609,Stuy Heights Brownstone Passive House Garden Unit,21019302,Bobby And Ruth,Brooklyn,Bedford-Stuyvesant,40.68489,-73.92087,Entire home/apt,200,2,15,2019-07-05,3.69,1,300 +31916725,EMPIRE ST VIEW>Luxury 3BR 2BA BALCONY High fl>Gym,129079212,Dana,Manhattan,Midtown,40.74829,-73.98326,Entire home/apt,799,5,3,2019-06-04,1.73,1,346 +31916931,Marco and Fabio,239276795,FabioeMarco,Manhattan,Washington Heights,40.83794,-73.94256,Private room,42,3,9,2019-04-28,2.00,1,1 +31918252,Private Bedroom & Living Room in Sunny Apt,53300414,Monica,Brooklyn,Gowanus,40.66938,-73.99164,Private room,95,1,4,2019-06-16,0.93,2,59 +31919501,"ALL NEW LUXURY APT- 1ST FL 4BR/2 BTH,10MIN-JFK/LGA",215385823,Az,Queens,Jamaica Hills,40.71378,-73.80292,Entire home/apt,275,1,11,2019-07-06,7.50,2,280 +31919636,"LUMINOUS, COZY BR w/ personal BA + entrance in BK",29301386,Saya,Brooklyn,Williamsburg,40.70333,-73.94913,Private room,85,2,16,2019-07-01,3.27,1,11 +31919779,Comfortable 1.5 Bedroom With Private Back Patio,9472223,Arthur,Manhattan,Morningside Heights,40.80636,-73.9578,Entire home/apt,79,3,0,,,3,0 +31920075,Clean and quiet room in home,15977,Alicia,Manhattan,Harlem,40.80385,-73.95294,Private room,60,7,6,2019-05-16,1.32,1,254 +31920843,"Cute Apartment in Heart of East Village, Manhattan",237718748,Cassandra,Manhattan,East Village,40.72742,-73.98235,Private room,90,5,1,2019-03-23,0.28,1,0 +31924097,Authentic Midtown Manhattan Studio,225011474,Vicente,Manhattan,Midtown,40.74595,-73.98439,Entire home/apt,250,1,41,2019-06-23,7.64,1,125 +31925075,Sweet Quiet Spacious Room Brooklyn,239351588,A,Brooklyn,Crown Heights,40.66835,-73.93112,Private room,75,1,12,2019-05-02,2.54,1,0 +31925535,Luxury Duplex with large loft space and Terrace,1746041,Jean-Yves,Brooklyn,Greenpoint,40.72242,-73.95076,Entire home/apt,450,3,5,2019-06-13,1.06,1,43 +31926655,SPACIOUS- 3 Bedroom Harlem gem 5 mins from train,115075522,Christian,Manhattan,Harlem,40.82656,-73.94648,Entire home/apt,225,1,13,2019-07-01,3.22,1,83 +31927597,Large Room in Prime Bushwick Neighborhood,239375612,Rebekah,Brooklyn,Bushwick,40.70455,-73.92565,Private room,30,1,3,2019-03-31,0.62,1,0 +31928439,Private Pod in the heart of Brooklyn,384430,Eric,Brooklyn,Midwood,40.62583,-73.96237,Private room,120,30,0,,,1,252 +31928508,Modern Private room in Hell's kitchen- times Squar,239383641,Jc,Manhattan,Hell's Kitchen,40.76474,-73.98924,Private room,80,1,30,2019-06-29,5.73,1,183 +31929176,Exposed Brick Gem in Bklyn~Close To Manhattan,137725101,Wayne Keith,Brooklyn,Crown Heights,40.66997,-73.93221,Entire home/apt,100,2,0,,,1,12 +31929350,LINCOLN CENTER / 2BED 2BATH,131647128,Emily,Manhattan,Upper West Side,40.77388,-73.98798,Entire home/apt,275,30,0,,,25,329 +31929437,Upscale & Modern Duplex Apartment Sleeps 8,183886601,Lee,Manhattan,Inwood,40.86763,-73.92259,Entire home/apt,175,30,1,2019-03-18,0.27,2,8 +31929578,UPPER WEST SIDE/ 2BED 2BATH / RIVER VIEW,131647128,Emily,Manhattan,Upper West Side,40.77537,-73.98938,Entire home/apt,300,30,0,,,25,288 +31929775,CITY VIEW/ 2BED 2BATH/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77438,-73.98717,Entire home/apt,300,30,0,,,25,341 +31929849,Your own entire private place in BROOKLYN NY :),7958766,Sammy,Brooklyn,Bath Beach,40.59988,-74.00415,Entire home/apt,99,2,17,2019-06-30,3.78,1,20 +31930706,Beautiful apartment in Gravesend(Girls share room),51596474,Antony,Brooklyn,Gravesend,40.58737,-73.96882,Shared room,20,7,2,2019-04-21,0.56,12,0 +31931117,Beautiful Renovated 1-Bed in Park Slope Brownstone,815436,Ray,Brooklyn,Park Slope,40.67364,-73.97954,Entire home/apt,135,2,33,2019-07-06,6.31,1,9 +31931371,"★Clean, Private Bedroom in Little Italy/Chinatown★",19408182,Drew,Manhattan,Little Italy,40.71947,-73.99723,Private room,120,3,3,2019-06-15,0.70,1,10 +31932152,An Unbeatable Cozy 3 Bedroom Apartment.,57885474,Shully'S,Bronx,Wakefield,40.89702,-73.85723,Entire home/apt,289,2,14,2019-07-07,2.96,2,356 +31932642,Spacious and convenient room at Hamilton Heights!,20181084,Farouk,Manhattan,Harlem,40.82441,-73.95323,Private room,60,3,7,2019-05-25,2.16,1,199 +31932872,Garden Oasis in Brooklyn Brownstone 2mins to Train,239427202,Maudry-Beverley,Brooklyn,Bedford-Stuyvesant,40.67932,-73.94741,Entire home/apt,160,2,22,2019-07-07,4.71,1,289 +31933373,The Ideal Vacation Home in Brooklyn:,78643953,Daniel,Brooklyn,Bushwick,40.69029,-73.91533,Entire home/apt,149,3,19,2019-07-08,4.52,2,231 +31934408,Newly Renovated 2 Br 7min LGA/JFK/7 mile Midtown,234396332,Joy,Queens,East Elmhurst,40.75712,-73.8874,Entire home/apt,99,1,19,2019-07-07,4.01,2,143 +31935427,Cozy Studio in East Village,1919392,Demi,Manhattan,East Village,40.72998,-73.98071,Entire home/apt,100,1,11,2019-06-24,2.13,1,0 +31935664,Luxury Private Bed Same Street As Subway!,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67895,-73.91077,Private room,75,1,15,2019-05-09,3.06,4,52 +31936078,Midtown sleep space,86078176,Nicole,Manhattan,Hell's Kitchen,40.76243,-73.98621,Private room,120,2,0,,,1,0 +31946382,LARGE 3Br Williamsburg Apt Mins from Manhattan,239517667,George,Brooklyn,Williamsburg,40.71007,-73.95136,Entire home/apt,199,2,20,2019-06-23,3.73,1,61 +31946864,Sweet Private Room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76295,-73.98866,Private room,70,1,30,2019-06-10,6.08,2,193 +31947104,EMPIRE COZY DOUBLE DOUBLE,224414117,Gabriel,Manhattan,Hell's Kitchen,40.7549,-73.99679,Private room,299,1,0,,,30,363 +31947645,Brodway- Double Double Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75628,-73.99643,Private room,299,1,0,,,30,365 +31947991,"Bright room in huge, dog-friendly apt w/ balcony",4094038,Alex,Brooklyn,Williamsburg,40.71197,-73.94223,Private room,75,2,16,2019-06-06,4.29,4,25 +31948183,Stylish Bushwick apartment with private backyard,12166574,Jordy,Brooklyn,Bushwick,40.70144,-73.92662,Entire home/apt,120,2,4,2019-05-28,0.85,1,14 +31950082,"Large Remodeled Home in Red Hook, Brooklyn, NY",6902218,Christele,Brooklyn,Red Hook,40.67697,-74.00993,Entire home/apt,250,3,0,,,1,1 +31950380,Super cozy private room with own bathroom,195654382,Gul,Brooklyn,Sheepshead Bay,40.58508,-73.93801,Private room,60,1,4,2019-07-06,0.90,1,77 +31950761,Private Room 2 Blocks From Prospect Park,67384934,Ifrat,Brooklyn,Flatbush,40.65246,-73.96046,Private room,75,2,4,2019-05-19,1.40,1,5 +31950840,LUX 2 Bedroom Sleep 6 City Center Private Deck,237250378,Jeff,Manhattan,Kips Bay,40.7436,-73.98165,Entire home/apt,276,3,12,2019-06-07,2.42,1,277 +31950886,Small studio at the heart of Little Italy,22337277,Zoey,Manhattan,Little Italy,40.71839,-73.99729,Entire home/apt,130,13,3,2019-05-07,1.32,1,20 +31952771,Sunny 1 bedroom w/private half bath!,89181972,Lexx,Bronx,Bronxdale,40.85646,-73.86813,Private room,50,1,14,2019-07-05,2.96,1,206 +31953043,Lincoln Center Stunning One Bedroom,239571340,Alice,Manhattan,Hell's Kitchen,40.76516,-73.99205,Private room,180,1,0,,,1,83 +31953973,Luxury 1 Bedroom -Midtown/Times Square/Centralpark,37412692,Kim,Manhattan,Midtown,40.76467,-73.98277,Entire home/apt,115,30,0,,,4,362 +31954104,"Best Location, Best Roof!",17062221,Vanessa,Manhattan,Kips Bay,40.73935,-73.98025,Entire home/apt,260,3,6,2019-06-03,1.31,2,173 +31954232,LOCATION!!!!Beautiful 2 bedrooms appartement !!!,24425582,Artur,Brooklyn,Williamsburg,40.71301,-73.95845,Entire home/apt,128,2,13,2019-06-23,2.50,1,27 +31955252,Parlour Room Central Park/ Columbia University,22023754,Joshua,Manhattan,Harlem,40.80725,-73.95471,Private room,75,2,1,2019-06-22,1,1,22 +31956393,Cozy Room in Hamilton Heights R3,158054102,Beverly,Manhattan,Harlem,40.83026,-73.94455,Private room,60,2,1,2019-06-23,1,3,71 +31956547,Your Private Place in a Cozy Casa,135858587,Daniel,Brooklyn,Crown Heights,40.673,-73.95043,Private room,70,1,8,2019-07-05,2.53,1,75 +31956965,Bienvenue à la maison,239605688,Sue,Manhattan,Upper East Side,40.76882,-73.96862,Entire home/apt,150,1,0,,,1,0 +31957975,"ENTIRE apt, 2 Bdr,Commercial Area,Private Entrance",236334741,Wendy,Staten Island,Rosebank,40.61588,-74.06711,Entire home/apt,100,1,47,2019-06-23,9.10,1,151 +31959359,Cozy Room for Rent in Fort Greene/Clinton Hill,26923225,Meg,Brooklyn,Clinton Hill,40.69462,-73.97006,Private room,36,28,2,2019-03-25,0.46,1,0 +31961126,"Private Apartment/4 Guests +Nr Beach&JFK w/Parking",209374833,Candia,Queens,Edgemere,40.59555,-73.76942,Entire home/apt,99,3,5,2019-06-14,3.41,2,246 +31961731,"New York City, Midtown 2 Bedrooms, Sleeps 6",239644931,Tonya,Manhattan,Kips Bay,40.73972,-73.98412,Private room,355,2,6,2019-03-31,1.13,1,312 +31963324,New Luxury Doorman Apartment,239142480,Lucas,Manhattan,Chinatown,40.71416,-73.99161,Private room,75,1,0,,,1,0 +31963704,Friendly space!,104859044,Shiya,Brooklyn,Crown Heights,40.66566,-73.93698,Private room,35,2,7,2019-03-26,1.40,1,0 +31964005,PERFECTLY LOCATED PRIVATE APARTMENT - AFFORDABLE,15652930,Ferhat,Manhattan,Harlem,40.81252,-73.95096,Entire home/apt,211,3,21,2019-07-04,4.47,1,30 +31964642,"Spacious room (2min to subway, 25min to Manhattan)",12872707,Elizaveta,Brooklyn,Bedford-Stuyvesant,40.67898,-73.93982,Private room,40,4,0,,,1,0 +31964801,Harlem Residence,10257350,Mauricio,Manhattan,Washington Heights,40.83488,-73.94452,Private room,55,2,8,2019-06-19,2.29,2,44 +31965215,Cozy studio in East New York,27867038,L,Brooklyn,East New York,40.67695,-73.87402,Entire home/apt,62,1,11,2019-06-22,3.11,1,351 +31965415,Cozy Brooklyn Private Bedroom,161657326,Rachael Lee,Brooklyn,Bedford-Stuyvesant,40.67933,-73.94103,Private room,37,3,1,2019-02-16,0.21,1,0 +31968550,Brooklyn Place,196935380,Prosper,Brooklyn,Flatbush,40.63886,-73.95228,Private room,80,2,0,,,1,88 +31972030,SMALL ROOM 15 MINUTES AWAY FROM MANHATTAN,157310194,Asia,Brooklyn,Williamsburg,40.70597,-73.94245,Private room,60,2,16,2019-07-04,3.78,1,116 +31974197,"Cosy room in Brooklyn, 20 minutes to Manhattan",65631015,Sonia,Brooklyn,Bedford-Stuyvesant,40.69043,-73.95587,Private room,75,2,2,2019-03-30,0.42,1,33 +31974592,Cozy apartment in Brooklyn Brownstone,186251769,Bibiane,Brooklyn,Bedford-Stuyvesant,40.68875,-73.9516,Entire home/apt,110,1,19,2019-07-07,5.04,1,34 +31978375,UWS Cozy Shared Apartment near subway & Central Pk,11630930,Elizabeth,Manhattan,Upper West Side,40.80135,-73.96193,Shared room,60,1,17,2019-07-01,3.59,1,39 +31978518,Apt in historic brownstone on best block in NYC,51414586,Robert,Brooklyn,Fort Greene,40.68904,-73.9759,Entire home/apt,225,3,4,2019-07-06,2.14,1,78 +31978781,Park Slope Garden Apartment,1185024,Miles And Ruth,Brooklyn,Park Slope,40.67821,-73.9787,Entire home/apt,100,1,3,2019-03-16,0.61,1,0 +31979292,Oceanfront Beach Bungalow,4955499,Samantha,Queens,Rockaway Beach,40.58344,-73.81456,Entire home/apt,200,1,4,2019-04-28,1.12,1,124 +31979408,West Harlem Room - 1 Block from the Subway,50862159,Ariel,Manhattan,Harlem,40.80393,-73.9574,Private room,60,2,3,2019-04-01,0.67,1,188 +31980005,Charming 2BR 1BA in the center of Soho,230165497,Lara,Manhattan,Nolita,40.72157,-73.99432,Entire home/apt,199,30,0,,,4,365 +31980644,"A beautiful Stay in Brooklyn, Safe Sheepshead Bay.",179661186,Mirjam,Brooklyn,Sheepshead Bay,40.59876,-73.95296,Private room,61,2,3,2019-07-01,1.48,2,0 +31980794,Sleep 6 adults & 2 children - 2 Level Garden Apt,59073470,Angela,Manhattan,Upper West Side,40.79144,-73.97909,Entire home/apt,375,2,4,2019-05-23,1.24,1,208 +31981491,Cozy n' Bright Sanctuary in Lovely Carroll Gardens,16639428,Drew,Brooklyn,Gowanus,40.67941,-73.99118,Entire home/apt,200,2,10,2019-06-30,4.23,1,218 +31982293,Brightly Artsy 1 Bedroom next to Pratt Institute,720974,Seble,Brooklyn,Bedford-Stuyvesant,40.6895,-73.95886,Entire home/apt,120,4,13,2019-07-07,3.28,1,13 +31982527,"Luxury apartment, 15 minute train to Midtown.",237015178,Anna,Queens,Astoria,40.77161,-73.92063,Entire home/apt,144,2,19,2019-07-06,5.33,1,18 +31983211,Hip Harlem Apartment,4499538,Brett,Manhattan,Harlem,40.80902,-73.94186,Entire home/apt,175,4,6,2019-06-08,1.33,1,0 +31984471,private room in artist's home. prime WILLIAMSBURG.,11914004,Kate,Brooklyn,Williamsburg,40.71275,-73.96049,Private room,50,2,5,2019-07-07,1.06,1,0 +31984738,Great room Ditmas Park Near park Restaurants shops,95444031,Jesse,Brooklyn,Flatbush,40.64473,-73.96849,Private room,60,7,0,,,1,0 +31986426,Spacious Studio with Amazing Views,104513848,Jor,Manhattan,Chelsea,40.74415,-73.99483,Entire home/apt,250,3,1,2019-06-10,1,1,60 +31986430,Cozy & Shinny 1BR in Lower East Side,21976589,Benjamin,Manhattan,Lower East Side,40.71957,-73.98538,Entire home/apt,180,18,3,2019-06-03,0.57,1,22 +31987512,Newly Renovated 1 Bedroom in Soho / West Village,16945810,Rob,Manhattan,SoHo,40.72609,-74.00035,Entire home/apt,250,3,1,2019-04-17,0.36,1,0 +31987544,"Peaceful Private Bedroom, Upper West Side 107",238321374,Eyal,Manhattan,Upper West Side,40.80037,-73.95995,Private room,60,30,0,,,32,317 +31987806,Vibrant Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.80042,-73.96147,Private room,60,30,1,2019-06-16,1,32,317 +31988004,Cozy & Modern Bedroom in Upper West Side 107,238321374,Eyal,Manhattan,Upper West Side,40.79901,-73.96135,Private room,58,30,0,,,32,317 +31988074,"LYRIC - 1 Bedroom Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.7076,-74.0074,Entire home/apt,309,1,1,2019-05-19,0.59,8,314 +31988308,"Bright, Clean and Spacious East Village Studio",4383563,Zander,Manhattan,East Village,40.72744,-73.98336,Entire home/apt,190,2,0,,,1,0 +31989330,Paris Private Room W/Private Bathroom,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67818,-73.92284,Private room,55,1,3,2019-02-08,0.58,2,0 +31989484,Blissful Balcony Room,237421509,Lisa,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92346,Private room,45,1,2,2019-03-07,0.39,2,0 +31990505,Entire apartment.,52720583,John,Queens,Jackson Heights,40.74774,-73.88653,Entire home/apt,115,2,3,2019-05-10,0.84,1,6 +31990543,1 berm south brooklyn,239851275,Joseph,Brooklyn,Sheepshead Bay,40.60263,-73.94355,Private room,200,1,0,,,1,363 +31991088,Spacious Studio in Hell's Kitchen,232725253,Jason,Manhattan,Hell's Kitchen,40.76246,-73.99032,Entire home/apt,199,2,3,2019-05-23,1.13,1,179 +31991309,Quaint apartment in heart of Astoria,51551032,Diane,Queens,Astoria,40.76424,-73.91516,Entire home/apt,50,4,1,2019-01-30,0.19,1,0 +31991377,"Great location, quality Brooklyn private place",99695025,Dev,Brooklyn,Williamsburg,40.71094,-73.94907,Entire home/apt,121,2,1,2019-02-10,0.20,1,0 +31991634,Back bedroom next to kitchen and bathroom,22926868,Xenia,Brooklyn,Sunset Park,40.6463,-73.99953,Private room,45,13,3,2019-04-18,0.91,3,34 +31993541,Nice bright and quiet room near Prospect park,10174909,Marine,Brooklyn,Crown Heights,40.66415,-73.95169,Private room,50,7,0,,,1,0 +31993628,Room in prime location! Mins from LIC & Midtown!,137358866,Kazuya,Queens,Long Island City,40.74821,-73.92087,Private room,44,30,0,,,103,247 +31994556,Williamsburg Micro Guest House,239887273,Amanda,Brooklyn,Williamsburg,40.71815,-73.95834,Private room,75,1,24,2019-07-03,4.62,1,201 +31994735,Cosy Garden Apartment Williamsburg NY House,193954973,Sean,Brooklyn,Williamsburg,40.71506,-73.95192,Entire home/apt,150,3,7,2019-06-23,2.26,3,86 +31997308,Cozy Studio,239906704,Adrian,Queens,Woodside,40.74286,-73.91076,Private room,120,2,0,,,1,365 +32006626,Blue House on the Hill,222386455,Herman,Brooklyn,Cypress Hills,40.68099,-73.89264,Entire home/apt,165,2,18,2019-07-01,3.78,1,61 +32007251,Home Sweet Home,118502740,Mikyla,Queens,Jamaica,40.69289,-73.81079,Private room,120,2,0,,,1,0 +32007435,Beautiful Chelsea Luxury Penthouse,57761801,Michael,Manhattan,Chelsea,40.7454,-74.00427,Entire home/apt,450,90,0,,,1,365 +32008192,Brooklyn Bohemian 2 Bedroom Loft,5339839,Jodi,Brooklyn,Bedford-Stuyvesant,40.68357,-73.95449,Entire home/apt,295,7,0,,,1,0 +32008547,PRIVATE APARTMENT BUSINESS FRIENDLY,16782573,Dorina,Queens,Middle Village,40.71515,-73.88392,Entire home/apt,115,4,2,2019-03-09,0.44,4,314 +32008894,Bushwick Bedroom w/ private Bath.,59616570,Erika,Brooklyn,Bushwick,40.70352,-73.92163,Private room,55,4,0,,,1,189 +32010533,Andrew’s Bushwick Den,14656629,Andrew,Brooklyn,Bushwick,40.70002,-73.91909,Private room,35,3,0,,,1,0 +32012198,Murray Hill Jewel With Outdoor Space,50760546,CRNY Monthly Rentals,Manhattan,Murray Hill,40.74657,-73.97685,Entire home/apt,139,29,0,,,31,130 +32012464,Half a block from the train! my private cozy room,239978864,Patricia,Queens,Jackson Heights,40.7489,-73.87549,Private room,50,2,20,2019-07-01,4.69,1,167 +32013622,Room for rent from March to August.,1767221,Yael,Manhattan,Inwood,40.86622,-73.92233,Private room,48,160,0,,,2,179 +32014745,comfortable cozy,229110237,Guy,Brooklyn,East New York,40.66287,-73.88553,Private room,80,2,3,2019-06-23,1.14,1,363 +32015007,Cozy room next to subway!,240033083,Patrik,Manhattan,Harlem,40.82272,-73.95478,Private room,70,2,0,,,1,0 +32016639,Forest Sanctuary in Bushwick,7964926,Matthew,Brooklyn,Bushwick,40.70118,-73.92176,Entire home/apt,90,2,19,2019-06-23,3.88,1,53 +32017624,COZY ROOM,204926318,Bibi,Brooklyn,East Flatbush,40.65351,-73.94999,Private room,40,30,0,,,1,300 +32018080,Master room 套房,240055586,George,Queens,Fresh Meadows,40.7386,-73.79248,Private room,80,1,38,2019-06-26,7.60,5,29 +32018402,Spacious warm clean private room in the Brooklyn,34556469,Zhansaya,Brooklyn,Gravesend,40.60653,-73.97725,Private room,50,1,0,,,2,0 +32018806,Spring Room 春,240055586,George,Queens,Fresh Meadows,40.7385,-73.79145,Private room,55,1,32,2019-06-30,7.50,5,28 +32019046,Best Place to Stay in the Heart of Queens,117930151,Feather Factory Hotel,Queens,Long Island City,40.74458,-73.94102,Private room,100,1,5,2019-06-22,1.06,2,351 +32019847,Prime Location NYC 2 Bedrooms,238136541,Max,Manhattan,Murray Hill,40.74797,-73.98271,Entire home/apt,345,30,6,2019-05-04,1.13,1,154 +32020853,"★ Clean, Private BR in Little Italy/Chinatown ★",14249909,Evan,Manhattan,Chinatown,40.71825,-73.99651,Private room,169,3,3,2019-05-19,0.67,1,0 +32020961,Full Sized Bed(in bunk) in Inwood *entire apt*,21836588,Kimberly,Manhattan,Inwood,40.86454,-73.9246,Entire home/apt,35,1,33,2019-06-25,6.56,1,5 +32020990,Private room&bathroom close to train/airport/city,5592622,Christina,Queens,Astoria,40.75734,-73.91365,Private room,65,1,12,2019-07-01,2.55,5,149 +32022699,Punjabi House 2,225025900,Jas,Queens,Ditmars Steinway,40.77783,-73.90662,Private room,80,1,5,2019-06-23,1.29,2,358 +32022820,Small Artist Tenement APT in NOLITA/ Little Italy,866089,Launa,Manhattan,Little Italy,40.7191,-73.99513,Entire home/apt,250,3,0,,,3,0 +32025639,Enjoy the View in a Cozy Lux Condo,56656728,Bret,Manhattan,Harlem,40.8165,-73.94438,Private room,60,5,1,2019-02-16,0.21,5,0 +32032602,Live Like a New Yorker,96710414,Brandon,Manhattan,Midtown,40.75741,-73.96372,Entire home/apt,120,2,8,2019-06-22,1.89,1,328 +32034149,9 Beds 4 Full Bath Duplex with Washer and Dryer,70058270,Lucy,Brooklyn,Crown Heights,40.66521,-73.93153,Entire home/apt,575,3,0,,,4,105 +32034639,Artsy Brooklyn Apartment -25 Minutes to Manhattan,37450458,Olivia,Brooklyn,Bedford-Stuyvesant,40.67904,-73.91084,Entire home/apt,100,2,5,2019-06-19,2.59,2,149 +32035609,"Harlem 3 Bedroom, 1.5 Bathroom Condo - Bright!",230062403,Daniel & Kenzie,Manhattan,East Harlem,40.7984,-73.94014,Entire home/apt,450,1,12,2019-06-10,2.67,1,325 +32036785,Big sunny room in Sunnyside,158126190,Oleg,Queens,Sunnyside,40.74141,-73.92688,Private room,33,7,2,2019-02-20,0.40,1,0 +32036822,"XL clean room in Manhattan, 1 block from subway!",36323224,Valentina,Manhattan,Washington Heights,40.84669,-73.94028,Private room,55,1,17,2019-07-03,3.31,1,30 +32036850,Charming lower east side room,165863135,Amanda,Manhattan,Lower East Side,40.72026,-73.98787,Private room,80,20,2,2019-04-19,0.48,1,3 +32036997,Private room in spacious uptown NYC apartment,240194042,Sarita,Manhattan,Harlem,40.8235,-73.95391,Private room,30,21,0,,,1,0 +32037535,Sumptuous floor through apartment in brownstone,212262028,R R,Brooklyn,Fort Greene,40.6882,-73.97651,Entire home/apt,160,3,13,2019-06-23,3.10,2,252 +32037930,East VillageTownhouse for 30 day minimum rentals.,8503180,Kathy,Manhattan,East Village,40.72997,-73.9884,Entire home/apt,1500,30,0,,,2,178 +32038185,"8mins to JFK airport, separate door & bathroom",240203470,Modesta,Queens,Jamaica,40.67804,-73.80122,Private room,25,1,44,2019-06-30,9.23,1,41 +32039742,Trendy Private Bedroom in Upper West Side 107 24-1,240207968,Jocelyn,Manhattan,Upper West Side,40.79967,-73.96109,Private room,128,30,0,,,2,364 +32039920,Spacious 3 bdrms/ 2 baths Prime Manhattan,238133848,Garry,Manhattan,Midtown,40.75702,-73.96503,Entire home/apt,450,30,3,2019-05-24,0.58,1,154 +32040058,SPACIOUS PLACE in BedStuy,7352103,Dave,Brooklyn,Bedford-Stuyvesant,40.69159,-73.95765,Entire home/apt,80,5,2,2019-06-03,0.42,1,0 +32040351,"Stunning Private Room, Upper West Side, Columbia U",240207968,Jocelyn,Manhattan,Upper West Side,40.79907,-73.96098,Private room,128,30,0,,,2,1 +32040396,Ditmas Park Apartment Share,9124906,Chris,Brooklyn,Flatbush,40.64004,-73.9664,Private room,40,1,1,2019-02-06,0.20,1,0 +32040619,wonderful private room in brooklyn,236659049,Yesenia,Brooklyn,Bushwick,40.69006,-73.90605,Private room,40,1,3,2019-04-09,0.64,4,0 +32041359,"1 charming, private bedroom available! LES",48857380,Estefania,Manhattan,East Village,40.72267,-73.9852,Private room,150,2,4,2019-05-05,1.05,1,0 +32041621,Ben's extra bedroom,62589092,Chen,Manhattan,Harlem,40.80996,-73.94191,Private room,53,1,26,2019-06-20,5.03,1,1 +32042717,Home Sweet Home,65786143,Lisa,Brooklyn,Williamsburg,40.70572,-73.94501,Private room,90,2,11,2019-07-02,2.92,1,83 +32042721,Sunny BR w/ Private LR 15 min to JFK free Parking,240239465,Okhela,Queens,St. Albans,40.70132,-73.75463,Entire home/apt,30,2,11,2019-05-25,2.32,2,230 +32042820,Harlem Sweets 2,187419882,Terrence & Skye,Manhattan,Harlem,40.82885,-73.9412,Private room,62,1,1,2019-05-06,0.47,3,72 +32043013,2 JFK Layover - Express train to Manhattan-30 mins,67746251,Gasminee,Queens,Ozone Park,40.68237,-73.84874,Private room,45,1,40,2019-07-08,7.79,4,30 +32043671,"Cozy room in Artistic apt in Little Italy, SoHo",240248599,Sapir,Manhattan,Little Italy,40.71918,-73.99536,Private room,125,3,1,2019-04-28,0.42,1,1 +32044146,Charming Apartment in Greenpoint,138150256,Alejandro,Brooklyn,Greenpoint,40.73324,-73.95304,Entire home/apt,110,7,1,2019-05-26,0.68,2,23 +32045160,Harlem Sweets Home,187419882,Terrence & Skye,Manhattan,Harlem,40.82711,-73.94143,Private room,99,2,18,2019-07-01,3.80,3,72 +32045403,Comfortable Private Room in Crown Heights,64213111,Meir,Brooklyn,Prospect-Lefferts Gardens,40.66088,-73.94363,Private room,50,2,0,,,1,0 +32045812,Nice Entire Place of Large 1B1B in Great Location,47732926,William,Queens,Rego Park,40.72819,-73.86032,Entire home/apt,90,1,7,2019-06-23,1.84,1,64 +32047002,3 JFK Layover - Express train to Manhattan-30 mins,67746251,Gasminee,Queens,Ozone Park,40.6824,-73.84997,Private room,42,1,33,2019-06-24,6.39,4,31 +32047248,Downtown 2500 Sq Ft Loft.,158725307,Greg,Manhattan,NoHo,40.72813,-73.99258,Entire home/apt,400,2,0,,,2,38 +32047800,Cozy Room starting at $67 a night,9898029,Anthony,Brooklyn,East Flatbush,40.64998,-73.92358,Private room,67,3,0,,,5,357 +32048047,Artist Loft Bushwick up to 4 guests,65800377,Benny,Brooklyn,Bushwick,40.70053,-73.92314,Private room,150,3,0,,,3,28 +32048480,"Calm, Quiet Space in Bedstuy",60403058,Maria,Brooklyn,Bedford-Stuyvesant,40.68735,-73.93118,Private room,60,2,2,2019-04-28,0.49,1,0 +32048560,Cosy one bedroom apartment in Hells Kitchen,240289379,Laure,Manhattan,Hell's Kitchen,40.76364,-73.99506,Entire home/apt,90,3,4,2019-03-18,0.90,1,0 +32048862,Twin Beds With Sauna & Relaxing Spa Amenities,89985620,Annette C,Brooklyn,Flatlands,40.62297,-73.92971,Private room,42,2,13,2019-06-26,3.33,3,280 +32049360,Modern Flatbush Apartment in Townhouse,42121413,Tarik,Brooklyn,East Flatbush,40.64222,-73.95067,Entire home/apt,190,4,13,2019-07-01,3.17,1,241 +32049606,3 private bedrooms in historic Harlem brownstone?,58220119,Rumiko,Manhattan,Harlem,40.8167,-73.94421,Private room,300,2,1,2019-05-27,0.70,1,76 +32050071,Modern luxury apartment in the heart of Noho,6073347,Elisabeth,Manhattan,NoHo,40.72703,-73.99264,Entire home/apt,189,5,2,2019-03-08,0.46,1,0 +32050188,Private room in the heart of Manhattan NYC,239519185,Raphael,Manhattan,Hell's Kitchen,40.76124,-73.9894,Private room,120,1,29,2019-06-23,5.80,2,198 +32050937,Downtown Williamsburg Loft,21416718,Andrew,Brooklyn,Williamsburg,40.71606,-73.96268,Entire home/apt,150,3,15,2019-06-21,3.75,1,35 +32050983,"Hudson River/GW Bridge +view. Spacious room",240311383,Ana,Manhattan,Washington Heights,40.84725,-73.94274,Private room,85,2,11,2019-07-03,2.21,1,227 +32053614,TINY ROOM FOR ONE PERSON,77304447,Genesis,Manhattan,Harlem,40.82065,-73.95483,Private room,35,5,19,2019-07-03,4.45,3,8 +32054416,Harrison Green by (Hidden by Airbnb),156158778,Sally,Manhattan,Tribeca,40.71782,-74.01047,Entire home/apt,1978,1,0,,,12,0 +32054475,Prospect Place III by (Hidden by Airbnb),156158778,Sally,Brooklyn,Prospect Heights,40.6776,-73.96961,Entire home/apt,1494,1,0,,,12,0 +32054910,West 88th Street by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper West Side,40.78742,-73.97011,Entire home/apt,3512,1,0,,,12,124 +32058864,LUXURY IN MIDTOWN WEST-DOORMAN/GYM/LAUNDRY,200380610,Pranjal,Manhattan,Midtown,40.75569,-73.98154,Entire home/apt,600,30,0,,,65,110 +32059283,Sun-drenched and Spacious Studio,33646389,Sally,Brooklyn,Crown Heights,40.67128,-73.95895,Entire home/apt,85,5,1,2019-05-19,0.58,2,51 +32062080,"Cozy, quiet room near Times Square",2231216,Nick,Manhattan,Hell's Kitchen,40.75947,-73.99196,Private room,150,2,17,2019-06-28,3.59,1,16 +32062178,Unique Holiday Home,152246149,Catherine,Bronx,Throgs Neck,40.83108,-73.82951,Private room,50,1,11,2019-06-09,2.41,5,365 +32062843,Cute renovated apartment in the heart of flushing!,91393358,Emma,Queens,Flushing,40.75584,-73.80618,Entire home/apt,115,2,15,2019-07-05,3.91,1,44 +32064173,"Safe, cozy, and clean in the heart of Brooklyn",51709634,Israel,Brooklyn,East Flatbush,40.65441,-73.95024,Private room,31,1,25,2019-06-09,5.00,1,5 +32064705,Spacious private bedroom in Hamilton Heights,6407054,Melissa,Manhattan,Harlem,40.82051,-73.95291,Private room,53,1,4,2019-06-23,0.85,3,0 +32065845,"Times Square Suite with amazing views, high floor!",240460735,Jj,Manhattan,Theater District,40.76015,-73.98497,Entire home/apt,890,1,2,2019-03-02,0.41,1,301 +32066991,Studio to yourself! In artsy bushwick railroad apt,33386742,Jayme,Brooklyn,Williamsburg,40.70298,-73.93834,Private room,80,1,0,,,1,5 +32069538,Harlem Residence 2,10257350,Mauricio,Manhattan,Washington Heights,40.83325,-73.94444,Private room,50,2,8,2019-07-02,2.76,2,52 +32069686,"Amazing views, sun, luxe style, live like a local!",27107891,Kossivi,Brooklyn,Williamsburg,40.71396,-73.93986,Entire home/apt,179,4,8,2019-06-21,2.11,1,104 +32070946,Amazing Studio at the Time Square Area/54D,48146336,Irina,Manhattan,Hell's Kitchen,40.76318,-73.99335,Entire home/apt,130,30,2,2019-05-08,0.50,20,263 +32071927,"Sunny, Private Bedroom in ♥ of Downtown (SOHO/LES)",41869388,Emily,Manhattan,Nolita,40.72233,-73.99334,Private room,85,2,20,2019-06-21,4.29,1,5 +32080210,Central Park & Rooftop with 4 large luxury rooms,29278028,Alexis,Manhattan,Upper East Side,40.77698,-73.95712,Entire home/apt,800,5,3,2019-04-24,0.86,4,280 +32080359,Quiet and Close to transportation,75035789,Stuart,Queens,Maspeth,40.7321,-73.89712,Private room,40,1,0,,,1,156 +32081249,Sense the spirit of New York,240594389,Olga,Queens,Glendale,40.69271,-73.89519,Entire home/apt,135,3,7,2019-06-01,2.00,1,120 +32085454,"Perfectly located, bright, clean and spacious",18193304,Tiarnan,Brooklyn,Williamsburg,40.71268,-73.9472,Private room,80,1,10,2019-07-05,3.03,1,102 +32085492,Charming Bedroom in West Village,8962177,Giselle,Manhattan,West Village,40.73231,-74.00377,Private room,90,1,4,2019-07-02,1.26,1,330 +32085580,No Fee MASSIVE West Village Two bedrooms,24975940,William,Manhattan,Greenwich Village,40.73365,-73.99727,Entire home/apt,159,90,0,,,2,90 +32086758,Large 1bedroom Apartment in the Heart of Manhattan,164242874,Irene,Manhattan,Upper West Side,40.79481,-73.97432,Entire home/apt,150,1,20,2019-06-23,4.05,1,272 +32088018,Beautiful Single Bedroom 30 min to Manhattan.,3158364,Devika,Queens,Sunnyside,40.73641,-73.92415,Private room,40,5,5,2019-06-30,1.26,4,297 +32088075,Tourists Summer Getaway in New York,14234166,Peter,Queens,Ridgewood,40.70484,-73.91393,Private room,59,1,15,2019-06-25,2.98,2,67 +32089161,Newly rennovated studio space in UWS,25115746,Stephanie,Manhattan,Upper West Side,40.78757,-73.97624,Shared room,500,1,0,,,1,89 +32090300,Brooklyn Basement Bungalow BBnB,48112774,Sainabou,Brooklyn,Bedford-Stuyvesant,40.67767,-73.91784,Private room,100,1,7,2019-06-30,1.83,1,365 +32091007,"LRG DESIGNER STUDIO/1-BED, MIDTOWN, DOORMAN, ELEV.",23502183,Daniel,Manhattan,Midtown,40.75445,-73.96471,Entire home/apt,159,30,0,,,2,249 +32092858,"Private Apt in Bed-Stuy Brownstone, AC & W/D",49138015,Jennifer,Brooklyn,Bedford-Stuyvesant,40.68272,-73.92555,Entire home/apt,119,3,11,2019-06-16,2.43,1,24 +32093515,Flushing downtown Single room,228879817,Vicky,Queens,Flushing,40.74523,-73.83321,Private room,42,1,20,2019-07-07,4.26,6,157 +32094042,Flushing downtown Single room,228879817,Vicky,Queens,Flushing,40.74588,-73.83284,Private room,49,1,14,2019-07-02,2.76,6,121 +32095668,Fully Private Cozy Studio Close to NY Attractions!,110539055,Manny,Bronx,Williamsbridge,40.87905,-73.85243,Entire home/apt,76,2,14,2019-07-01,2.98,2,300 +32098667,"Sunny room in Downtown NYC, Two Bridges, Chinatown",240134265,Sam,Manhattan,Two Bridges,40.71214,-73.99643,Private room,97,1,30,2019-06-23,5.84,3,174 +32101077,"Comfort room in Downtown Manhattan, Two Bridges",240134265,Sam,Manhattan,Two Bridges,40.71247,-73.99619,Private room,300,1,19,2019-06-18,3.93,3,166 +32101427,"Premier room in Downtown NY, Two Bridges,Chinatown",240134265,Sam,Manhattan,Two Bridges,40.71208,-73.9941,Private room,93,1,28,2019-05-30,5.53,3,359 +32102590,Cute Studio in Central of Midtown,211549023,Studioplus,Manhattan,Midtown,40.7467,-73.98706,Entire home/apt,220,2,4,2019-06-18,1.09,13,283 +32102888,"Stunning duplex, perfect location",12236516,Trevor,Brooklyn,Prospect Heights,40.67743,-73.97202,Entire home/apt,175,30,0,,,1,300 +32104047,Wyndham Midtown 45 at New York City - Bedroom,194953121,Christian,Manhattan,Midtown,40.75204,-73.97278,Entire home/apt,699,2,0,,,1,132 +32104211,MASTER ROOM IN A ELEGANT COZY BEAUTIFUL HOME,1507408,Flavia,Manhattan,East Harlem,40.80245,-73.94426,Private room,96,3,1,2019-05-16,0.56,1,365 +32105616,"Beautiful 2BR Manhattan Apt, 2 blocks from subway",39444059,Gwyneth,Manhattan,Inwood,40.86886,-73.92407,Entire home/apt,100,1,0,,,1,13 +32107065,Private room with terrace,240858689,Anna,Queens,Long Island City,40.74794,-73.94901,Private room,100,14,0,,,1,0 +32107458,Historic Greenwich Village 1 Bedroom - Very Quiet,94087109,Tayler,Manhattan,Greenwich Village,40.73027,-74.00077,Entire home/apt,299,3,9,2019-06-21,1.80,1,19 +32108317,Beautiful 2 Bedr in Landmarked Brooklyn Brownstone,16543733,Sylvester,Brooklyn,Crown Heights,40.6757,-73.95121,Entire home/apt,160,3,9,2019-06-23,2.35,1,109 +32108840,Boho Chic Apartment in the Heart of Brooklyn,7980041,Shirin,Brooklyn,Flatbush,40.64504,-73.9608,Entire home/apt,110,2,6,2019-06-30,1.50,1,17 +32109093,1-Bedroom in Cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73028,-74.00015,Entire home/apt,220,1,4,2019-05-19,0.85,2,29 +32109492,Amazing Studio at the Time square area/5-3A,48146336,Irina,Manhattan,Hell's Kitchen,40.76165,-73.99351,Entire home/apt,130,30,2,2019-06-01,0.53,20,332 +32110731,"Newly renovated apartment in Bensonhurst, Brooklyn",239360406,Lili,Brooklyn,Bensonhurst,40.61487,-74.00666,Private room,70,1,15,2019-05-27,3.02,1,0 +32112767,Couples Retreat,137463409,Marsha,Queens,Maspeth,40.72595,-73.90299,Entire home/apt,150,1,24,2019-07-01,5.26,1,236 +32113235,SPACIOUS BRIGHT & COZY 1BR in CHELSEA MANHATTAN,240913613,Ran,Manhattan,Chelsea,40.74928,-73.99633,Entire home/apt,180,3,26,2019-07-01,5.45,1,53 +32113817,Private Essex Street Bedroom in the LowerEast Side,231819451,Timothy,Manhattan,Lower East Side,40.71984,-73.98625,Private room,100,3,19,2019-07-01,4.01,1,48 +32114142,Spacious BK Duplex | Sleep 10 | 15min to Manhattan,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68321,-73.93803,Entire home/apt,250,5,13,2019-06-23,2.79,3,194 +32114499,2 Story Private Duplex + Backyard | BBQ |Sleeps 10,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68429,-73.93623,Entire home/apt,250,5,7,2019-06-03,1.84,3,215 +32114824,5 minutes from Times Square! Central Manhattan.,240934322,Pete,Manhattan,Hell's Kitchen,40.76412,-73.98771,Private room,125,3,0,,,1,173 +32116711,Sunny furnished room in the heart of Bushwick,42519995,Lamia,Brooklyn,Bushwick,40.70709,-73.92071,Private room,70,1,3,2019-06-09,0.58,1,319 +32120380,Night with a king,143509629,Mel,Bronx,University Heights,40.85538,-73.91081,Shared room,40,1,0,,,1,0 +32121725,The heart of NYC,32999831,Valeria,Manhattan,Theater District,40.75943,-73.98756,Entire home/apt,200,2,3,2019-05-12,0.84,1,85 +32122767,Private Room New York 1 (4R),102466916,Luca And Kameko,Manhattan,Harlem,40.80618,-73.94288,Private room,53,30,0,,,6,241 +32122886,Private Room New York 3 (4f),102466916,Luca And Kameko,Manhattan,Harlem,40.80577,-73.9448,Private room,55,60,0,,,6,210 +32123225,Top Luxury 3BR 2BA Balcony ->Gym City& River Views,65929049,Bar,Manhattan,Midtown,40.74838,-73.98444,Entire home/apt,799,5,2,2019-05-05,0.39,1,343 +32125848,Sunny Spacious room and close to Manhattan,215407308,Hawk,Queens,Sunnyside,40.73708,-73.92634,Private room,48,2,1,2019-05-07,0.48,3,132 +32125944,Perfect East Village Loft,238779678,Dustin,Manhattan,East Village,40.72764,-73.9906,Private room,60,30,0,,,9,343 +32126612,"Super Sunny, Massive East Village Getaway",238779678,Dustin,Manhattan,East Village,40.72689,-73.98906,Private room,69,30,0,,,9,310 +32126629,Midtown - United Nations - MOMA - East River Apt,62436749,Alexander,Manhattan,Midtown,40.75483,-73.96991,Entire home/apt,295,4,0,,,1,270 +32127699,Cozy Private Bedroom in East Williamsburg,241035874,Anne,Brooklyn,Williamsburg,40.71045,-73.93826,Private room,60,2,16,2019-06-03,4.14,1,355 +32128935,Cute Bedroom in Heart of Bushwick (A/C provided),11757212,Jasmine,Brooklyn,Bushwick,40.69665,-73.92714,Private room,65,1,22,2019-07-03,4.49,4,89 +32133824,FEMALE ONLY- Modern room in Gramercy/Kips Bay NYC,25116715,Mary,Manhattan,Kips Bay,40.73957,-73.98006,Private room,115,4,0,,,1,22 +32135728,⭐Sleeps 10 ⭐ Rare 4 Bedroom ⭐ 30 Mins to NYC ⭐,171646902,Sophie,Queens,Elmhurst,40.73102,-73.87383,Entire home/apt,300,2,20,2019-06-25,6.32,1,298 +32136644,Excelent Neighboorhood,228141767,Angel,Bronx,Kingsbridge,40.88344,-73.90301,Private room,45,1,14,2019-06-24,2.86,1,347 +32137426,Perfect for two couples. Upper East Side apartment,3435092,Elena,Manhattan,Upper East Side,40.78081,-73.94866,Entire home/apt,175,4,12,2019-07-01,3.91,3,231 +32137481,Greenwich Village Luxury Loft,10476957,Gina & Alex,Manhattan,Greenwich Village,40.7312,-74.00025,Entire home/apt,1000,2,8,2019-05-12,1.59,1,273 +32137567,Artsy Cozy Little Italy Apt! PRIME LOCATION!,11263163,Antonio,Manhattan,Little Italy,40.71939,-73.99662,Entire home/apt,150,1,18,2019-06-30,3.83,1,0 +32138615,BEAUTIFUL 1 BEDROOM Heart of Upper East Side!!,118769947,Albina,Manhattan,Upper East Side,40.7629,-73.96157,Entire home/apt,200,1,30,2019-06-21,6.00,1,2 +32138645,Renovated townhouse near trendy Bushwick hotspots,16954523,Tessa,Brooklyn,Bushwick,40.68754,-73.91231,Private room,55,7,4,2019-06-06,0.92,1,95 +32139526,Perfect Little Gem in the East Village,171331943,Marko,Manhattan,East Village,40.72882,-73.98103,Entire home/apt,160,3,6,2019-07-02,6,1,63 +32141173,Spacious Flat. Lux Building. 3 stops to Manhattan,17849213,Alexey,Brooklyn,Williamsburg,40.71695,-73.93847,Entire home/apt,110,1,7,2019-06-01,2.56,2,1 +32141626,Beautiful West-side Harlem Brick apartment!!,238391711,Harrie,Manhattan,Harlem,40.81303,-73.95285,Private room,180,1,13,2019-06-26,3.05,1,296 +32141672,Jewel Apartment in Hip Long Island City,20811907,Richard-Anthony,Queens,Astoria,40.76734,-73.93267,Entire home/apt,90,3,14,2019-06-17,2.96,1,251 +32155741,Spacious Cozy Quite Private Room in Fidi w/ Perks,220139308,Ellie,Manhattan,Financial District,40.70713,-74.01043,Private room,125,1,13,2019-06-26,4.15,1,132 +32158769,Manhattan adventure,140348326,Sanja,Manhattan,Upper East Side,40.7814,-73.94771,Private room,68,4,2,2019-04-07,0.59,2,0 +32159820,Heart of Williamsburg,31691527,Kat,Brooklyn,Williamsburg,40.71698,-73.95879,Private room,365,2,4,2019-06-09,1.52,1,79 +32160052,Full Floor Of A Luxe Brooklyn Townhouse W. Garden!,124506693,Beautiful Brooklyn,Brooklyn,Crown Heights,40.6751,-73.953,Private room,71,2,9,2019-07-01,3.38,1,223 +32160460,Brand New Elev BLDG Luxury Studio~heart of NYC~,162280872,Izi,Manhattan,Hell's Kitchen,40.76163,-73.99602,Entire home/apt,150,30,0,,,13,332 +32160889,Brand NewXL 1BR~Prime midtown~Laundry~Elev~Sleeps4,162280872,Izi,Manhattan,Hell's Kitchen,40.76273,-73.9942,Entire home/apt,185,30,0,,,13,298 +32160897,New Construction 1BR~Prime Midtown~Elevator~Must C,162280872,Izi,Manhattan,Hell's Kitchen,40.76164,-73.9944,Entire home/apt,145,30,0,,,13,300 +32161408,Cómodo apartamento familiar,131995652,Henry,Bronx,Mount Hope,40.84994,-73.9066,Entire home/apt,148,3,7,2019-07-07,1.74,1,358 +32161968,Good Apt in Brooklyn super close Subways Room (B),175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68061,-73.907,Private room,46,1,12,2019-06-26,2.38,6,155 +32161987,Charming 2BR Near Columbia | Perfect for Families,4619315,Tiffany,Manhattan,Harlem,40.8199,-73.95248,Entire home/apt,165,3,9,2019-06-10,2.01,1,2 +32162250,Lovely and Bright Astoria apartment,241277495,Virginie,Queens,Astoria,40.75864,-73.92782,Entire home/apt,225,5,1,2019-06-15,1,1,30 +32163602,Spacious 1 Bedroom in Chelsea/West Village,18466353,Magal,Manhattan,Chelsea,40.74084,-74.00425,Entire home/apt,180,5,0,,,1,214 +32163798,"BEST LOCATION! Flatiron! Large 2 Bedroom, Terrace",3280640,Seth,Manhattan,Midtown,40.74437,-73.98848,Entire home/apt,250,3,18,2019-07-01,3.83,1,26 +32164372,Semi-studio in MIDTOWN HK,133130315,Artem,Manhattan,Hell's Kitchen,40.76379,-73.9872,Entire home/apt,170,1,4,2019-05-27,1.05,6,123 +32164433,Chelsea Pre-War Arts Apartment,16384390,Matthew,Manhattan,Chelsea,40.74324,-73.99705,Entire home/apt,175,2,9,2019-06-19,2.37,1,50 +32165536,1 Bedroom - Fully Furnished - Williamsburg Loft,1570799,Adam,Brooklyn,Williamsburg,40.70771,-73.94627,Private room,100,10,2,2019-06-19,0.90,1,3 +32165540,Spacious East Village Apartment,801538,Mike,Manhattan,East Village,40.7233,-73.98062,Entire home/apt,150,90,0,,,1,341 +32165550,Your NY Home in a multicultural setting!,68959402,Santiago,Queens,Elmhurst,40.74685,-73.88626,Entire home/apt,70,1,8,2019-06-05,1.73,1,141 +32166264,Private Bushwick room 15 mins from Manhattan,21536937,Chen,Brooklyn,Bushwick,40.70431,-73.92655,Private room,100,2,1,2019-05-16,0.56,1,89 +32166672,Cozy apartment close to Central Park,187849608,Florencio,Manhattan,Upper West Side,40.79097,-73.97412,Private room,180,1,3,2019-05-14,0.63,1,151 +32167255,"Bedroom in a cosy/ bright apartment, Williamsburg",6883576,Otto,Brooklyn,Williamsburg,40.71516,-73.94934,Private room,98,1,9,2019-06-16,2.37,1,53 +32167684,Sunny bedroom in Greenwich Village/SoHo!,1458110,Molly,Manhattan,Greenwich Village,40.72722,-73.99914,Private room,96,3,2,2019-05-26,0.41,2,5 +32168090,Brooklyn’s Finest in Fort Greene,206288086,Akram,Brooklyn,Fort Greene,40.69434,-73.97099,Entire home/apt,167,2,20,2019-06-30,4.96,2,284 +32168744,Sunlit Spacious Bedroom,241341898,Madeleine,Manhattan,Harlem,40.82796,-73.94088,Private room,85,1,27,2019-05-29,5.70,1,0 +32168942,Luxury Modern Artist Chelsea Apartment,116089235,Noemi,Manhattan,Chelsea,40.75117,-73.99735,Entire home/apt,500,3,1,2019-05-23,0.63,1,77 +32169418,Little Cottage,158407820,Omar,Queens,Woodside,40.75403,-73.90076,Entire home/apt,98,2,15,2019-06-26,4.13,5,337 +32170868,Cozy Brooklyn Home close to the train! Non smoking,48675725,Rosemary,Brooklyn,East New York,40.67212,-73.86991,Entire home/apt,125,2,18,2019-07-01,4.43,1,28 +32171100,Cozy Room in uptown Manhattan,241366980,Josefina,Manhattan,Washington Heights,40.83685,-73.94176,Private room,75,2,20,2019-07-02,4.88,1,223 +32171104,Welcome to New York City!,241359293,Bijan,Manhattan,Hell's Kitchen,40.76483,-73.99248,Entire home/apt,280,2,0,,,1,0 +32172621,Private Room with Desk & Closet ♥ Best Location,237336458,Thomas,Manhattan,Chelsea,40.73778,-73.99616,Private room,99,12,4,2019-06-17,0.79,4,29 +32176821,"Williamsburg Loft in Brooklyn, NYC. Sleeps 6-8.",9260643,Sophie,Brooklyn,Williamsburg,40.71615,-73.95877,Entire home/apt,400,2,3,2019-04-26,1.18,1,20 +32178172,2BED 2 BATH/COLUMBUS CIRCLE/ BALCONY,131647128,Emily,Manhattan,Upper West Side,40.77054,-73.98344,Entire home/apt,290,30,2,2019-03-21,0.52,25,313 +32179659,Cute room! 15mins to LGA 17mins to Midtown.,137358866,Kazuya,Queens,Astoria,40.76399,-73.92581,Private room,37,30,1,2019-05-31,0.77,103,238 +32180213,Beautiful private room!,198730633,Ruth,Manhattan,Harlem,40.81105,-73.95241,Private room,80,1,3,2019-03-17,0.71,2,0 +32180820,Modern & Spacious 3 Bedroom Apt in Times Square,210141310,Alci,Manhattan,Hell's Kitchen,40.75961,-73.98844,Entire home/apt,295,3,22,2019-07-03,4.49,1,228 +32181226,Large Furnished Loft Financial District!!,27891261,Glenn,Manhattan,Financial District,40.709,-74.01221,Entire home/apt,160,30,2,2019-06-15,0.86,1,126 +32182464,2BR DUPLEX WITH PRIVATE GARDEN IN CHELSEA,200380610,Pranjal,Manhattan,Chelsea,40.74468,-74.00157,Entire home/apt,382,90,0,,,65,364 +32183028,Bright ‘n Clean private room close to L M train!!,240237028,Jose,Queens,Ridgewood,40.69924,-73.90191,Private room,45,2,14,2019-06-11,2.96,1,168 +32185458,Renovated 3 bedroom/2 full bath duplex.,66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.68697,-73.92859,Entire home/apt,245,4,13,2019-07-01,2.79,3,272 +32185689,Sunny private room in the heart of trendy Bushwick,33992697,Dor,Brooklyn,Bushwick,40.70458,-73.92888,Private room,80,2,3,2019-06-20,0.63,1,14 +32185917,*NEW* Clinton Hill Room in Plant Filled Apartment,545623,Misty,Brooklyn,Clinton Hill,40.68447,-73.96714,Private room,75,1,11,2019-05-13,2.64,1,5 +32185974,Spacious One Bedroom in Hell's Kitchen,241361740,Michael,Manhattan,Hell's Kitchen,40.75951,-73.99455,Entire home/apt,230,2,0,,,1,0 +32186503,Spacious two bedroom in Hell's Kitchen,241366983,Jack,Manhattan,Hell's Kitchen,40.7647,-73.99516,Entire home/apt,250,2,0,,,1,0 +32186906,"Ottoman 3BR, 2Bath In Safest NYC w/ Balcony",61316506,Mamun,Queens,Sunnyside,40.74603,-73.91458,Entire home/apt,145,1,14,2019-06-24,2.90,2,331 +32186945,Private Master Bedroom with Ensuite Bath HK,25043035,Lauren,Manhattan,Midtown,40.76638,-73.98311,Private room,100,1,4,2019-05-12,0.85,1,0 +32187475,"Prime loc. Spacious, bright, clean, cozy room",7627510,Eduardo,Queens,Jackson Heights,40.75318,-73.88404,Private room,80,2,5,2019-06-27,1.06,1,157 +32189288,Gem in the heart of Manhattan,32136241,EStelle,Manhattan,Chelsea,40.75173,-73.99869,Entire home/apt,100,3,11,2019-06-18,2.77,1,24 +32189352,Wyndham Midtown 45 - Hotel Room,77021411,Jennifer,Manhattan,Midtown,40.75231,-73.97331,Private room,300,4,0,,,1,0 +32189706,Private Room in Chill Brooklyn Apartment,53300414,Monica,Brooklyn,Gowanus,40.67024,-73.99349,Private room,55,1,0,,,2,20 +32190090,"CLEAN, TIMES SQUARE ONE BEDROOM",55289,E,Manhattan,Hell's Kitchen,40.76522,-73.98779,Entire home/apt,250,4,17,2019-07-04,3.98,1,200 +32190231,Stylish 1BR with back patio in Hell's Kitchen,241513556,Hunter,Manhattan,Theater District,40.76106,-73.98694,Entire home/apt,170,2,0,,,1,0 +32190629,Charming Astoria,92510990,Kristen,Queens,Long Island City,40.76235,-73.92651,Private room,100,3,5,2019-06-01,1.40,1,42 +32191213,Bohême à Williamsburg,241541553,Sam,Brooklyn,Williamsburg,40.71211,-73.96276,Entire home/apt,418,2,20,2019-06-30,3.97,1,153 +32194564,Master Suite in Brownstone with Garden & Fire Pit!,39712384,Shanée & Ash,Brooklyn,Crown Heights,40.6732,-73.92146,Private room,110,3,7,2019-07-01,2.44,1,152 +32195520,Cozy Apartment in long island city /Astoria,241583701,Alejandro,Queens,Long Island City,40.75331,-73.92454,Entire home/apt,140,7,4,2019-05-21,0.85,1,35 +32197473,26 Mt Morris Park Bldg in A la Soho!,217807652,Jennifer,Manhattan,Harlem,40.80625,-73.94647,Private room,75,5,0,,,1,0 +32201182,Beautiful 1BR in Heart of Midtown Manhattan,26817172,Malvern,Manhattan,Midtown,40.75828,-73.96829,Entire home/apt,250,1,11,2019-06-29,3.59,1,336 +32203689,A warm and friendly place!,241458287,Leandro,Bronx,Mott Haven,40.81098,-73.91814,Entire home/apt,65,2,15,2019-06-18,3.26,1,51 +32205973,Throsneck,241675405,Yolanda,Bronx,Throgs Neck,40.8154,-73.81551,Entire home/apt,75,3,0,,,1,90 +32206003,Spacious Rm for 1 near Hospital1 min Walk to Train,241676154,Maria,Staten Island,Grant City,40.57974,-74.10989,Private room,30,7,1,2019-06-29,1,2,188 +32207083,Convent Ave & 127st Col Univ RM 2,57049951,Eliahu,Manhattan,Harlem,40.81332,-73.95309,Private room,69,1,1,2019-04-10,0.33,9,365 +32207088,"Wonderful large room, queen bed, next to Manhattan",36732553,Miriam,Queens,Astoria,40.75604,-73.91488,Private room,60,7,0,,,3,338 +32207090,Columbia UN Area 127 st And convent Ave,57049951,Eliahu,Manhattan,Harlem,40.81401,-73.95393,Private room,69,2,1,2019-06-25,1,9,365 +32207337,Manhattan room 3 NYC 127 st and convent ave,57049951,Eliahu,Manhattan,Harlem,40.81384,-73.95315,Shared room,69,2,1,2019-04-23,0.39,9,365 +32208121,Ayos Abode,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.68683,-73.93825,Entire home/apt,140,1,1,2019-05-06,0.47,2,68 +32209753,One of a kind Loft in Brooklyn,241059711,Saira,Brooklyn,Crown Heights,40.6786,-73.96308,Entire home/apt,450,1,2,2019-04-21,0.52,1,204 +32214068,~Stunning 3BR home~Legal Airbnb~Central Location~,241732167,Matty,Manhattan,Murray Hill,40.74915,-73.9761,Entire home/apt,220,30,1,2019-04-10,0.33,1,310 +32214481,Elegant Studio-Loft in Flatiron / NoMad,117717201,Matthew,Manhattan,Midtown,40.74338,-73.98557,Entire home/apt,210,4,3,2019-05-23,1.29,1,156 +32214585,Bronx Comfort,98868828,Natasha,Bronx,Edenwald,40.89156,-73.84197,Private room,65,1,0,,,1,89 +32214783,"Sunny Lofty Sanctuary in Artsy Bushwick, Guest BR",234270791,April G,Brooklyn,Bushwick,40.69615,-73.92995,Private room,58,3,6,2019-06-18,2.02,3,94 +32214892,"3 Private rooms,shared space",17473098,Elias,Staten Island,Castleton Corners,40.62373,-74.11773,Private room,150,1,0,,,1,0 +32218558,Sonder | Stock Exchange | Welcoming 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.0106,Entire home/apt,245,2,6,2019-05-19,1.65,327,272 +32218659,Sonder | Stock Exchange | Amazing 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70608,-74.012,Entire home/apt,245,2,2,2019-06-18,2,327,299 +32218803,Sonder | Wall Street | Quaint Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70658,-74.01036,Private room,200,2,13,2019-06-18,2.81,327,352 +32219550,Sonder | Stock Exchange | Peaceful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70623,-74.01198,Entire home/apt,229,2,6,2019-06-21,3.00,327,355 +32219678,Sonder | Wall Street | Quaint Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70564,-74.01162,Private room,204,2,4,2019-04-29,0.96,327,327 +32221325,Corner Loft in Williamsburg,107504230,Rhaynelina,Brooklyn,Williamsburg,40.71189,-73.9649,Entire home/apt,100,3,2,2019-04-15,0.43,1,0 +32222587,Large Cozy Apartment.,241764251,Claribel,Manhattan,East Harlem,40.79973,-73.94567,Entire home/apt,156,3,8,2019-06-22,2.22,1,51 +32222756,Cozy Room in Townhouse Apartment,32625342,Bianca,Bronx,Kingsbridge,40.88316,-73.90586,Private room,30,4,8,2019-04-30,1.76,2,0 +32222783,SHOOTS ONLY Industrial Dumbo Warehouse Studio,241765415,Michael,Brooklyn,Vinegar Hill,40.70046,-73.98389,Entire home/apt,240,1,1,2019-03-14,0.25,1,89 +32223111,Clean/convenient apartment w/rooftop & gym.,9163877,Brian,Brooklyn,Bedford-Stuyvesant,40.69116,-73.95444,Entire home/apt,132,3,4,2019-06-09,1.03,1,205 +32223114,Private 2BR near the beach and subway/has yard!!!,73670512,Monika,Brooklyn,Gravesend,40.59284,-73.97682,Entire home/apt,130,3,15,2019-07-05,3.31,2,119 +32223317,Sonder | Stock Exchange | Premier 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7058,-74.0121,Entire home/apt,404,2,10,2019-05-27,2.26,327,330 +32223854,Sonder | Stock Exchange | Classic 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.01047,Entire home/apt,234,2,2,2019-06-04,1.46,327,332 +32224165,Sonder | Stock Exchange | Modern 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01238,Entire home/apt,425,2,8,2019-05-27,2.11,327,339 +32224172,Sonder | Stock Exchange | Restful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70752,-74.01046,Entire home/apt,235,2,7,2019-06-24,1.52,327,306 +32224211,Sonder | Stock Exchange | Calming 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01203,Entire home/apt,503,2,5,2019-06-22,1.34,327,315 +32224530,Quiet Times Square Apartment,64663067,Li,Manhattan,Hell's Kitchen,40.75977,-73.99062,Entire home/apt,250,2,17,2019-07-06,3.86,1,71 +32224599,Descanza con plenitud,241770178,Mary Luz,Queens,East Elmhurst,40.76587,-73.87968,Private room,40,2,8,2019-05-24,1.88,1,10 +32225184,Sonder | Wall Street | Calming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.01226,Private room,258,2,6,2019-05-12,1.27,327,332 +32225186,Sonder | Stock Exchange | Tranquil 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01233,Entire home/apt,392,2,2,2019-05-13,0.63,327,286 +32225187,Sonder | Wall Street | Dreamy 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70573,-74.01077,Private room,375,2,5,2019-06-23,1.24,327,280 +32225188,Sonder | Stock Exchange | Private 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.01214,Entire home/apt,231,2,7,2019-05-13,1.69,327,347 +32225189,Sonder | Stock Exchange | Artsy Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70624,-74.01076,Entire home/apt,194,2,8,2019-06-18,1.85,327,341 +32225195,Sonder | Stock Exchange | Beautiful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70732,-74.01029,Entire home/apt,240,2,8,2019-06-20,1.98,327,357 +32225197,Sonder | Stock Exchange | Private 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01023,Entire home/apt,229,2,7,2019-05-17,1.75,327,346 +32225203,Sonder | Stock Exchange | Upscale 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70737,-74.01103,Entire home/apt,230,2,5,2019-06-16,1.49,327,346 +32225206,Sonder | Stock Exchange | Original 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70587,-74.01092,Entire home/apt,472,2,12,2019-06-15,2.67,327,234 +32225207,Sonder | Wall Street | Distinct 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70727,-74.01072,Private room,256,2,16,2019-06-20,3.75,327,329 +32226740,Midtown 2BR w/ Patio! Central Park & Times Sq!,232475160,Jhonnil,Manhattan,Hell's Kitchen,40.76242,-73.9925,Entire home/apt,149,2,7,2019-06-21,1.47,1,155 +32228971,big Room 25 min to time square,1495355,John,Queens,Forest Hills,40.72345,-73.84365,Private room,40,2,4,2019-06-08,1.88,2,188 +32232502,Private bedroom in a charming apartment,45238340,Fa,Manhattan,East Harlem,40.79196,-73.95048,Private room,95,1,8,2019-05-26,2.55,1,131 +32232908,Urban Zen in the Heart of Williamsburg,29775337,Amanda,Brooklyn,Williamsburg,40.7185,-73.95601,Private room,150,2,7,2019-05-26,1.48,1,20 +32233982,Spacious Woodside room close to all transporations,137358866,Kazuya,Queens,Woodside,40.74259,-73.91193,Private room,51,30,1,2019-05-18,0.58,103,239 +32234241,Sunny and Charming Studio - Beautiful West Village,34468788,Heather,Manhattan,West Village,40.73847,-74.0062,Entire home/apt,175,2,7,2019-07-01,2.92,1,3 +32234380,Cozy spot in hipster East Williamsburg,241870258,Reesey,Brooklyn,Williamsburg,40.71363,-73.93615,Shared room,75,1,2,2019-04-06,0.63,2,1 +32234672,Zen Den 1BR Uptown Oasis,24973324,Matthew,Manhattan,Washington Heights,40.85355,-73.93232,Entire home/apt,125,2,1,2019-02-18,0.21,1,72 +32234674,Tribeca Studio w/ Gym + Pool by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71543,-74.00647,Entire home/apt,282,30,0,,,232,302 +32234982,Magical Mott Haven Loft,241883660,Sherril,Bronx,Port Morris,40.80707,-73.92974,Entire home/apt,200,5,1,2019-05-25,0.67,1,0 +32235802,Stable Room at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73742,-74.00484,Private room,999,1,1,2019-04-24,0.39,5,310 +32236518,Sonder | Stock Exchange | Expansive 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70775,-74.01047,Entire home/apt,454,2,11,2019-06-11,3.33,327,297 +32236681,Sonder | Wall Street | Eclectic 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70615,-74.01243,Private room,262,2,6,2019-06-05,1.59,327,328 +32236951,Sonder | Stock Exchange | Incredible 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01064,Entire home/apt,472,2,6,2019-06-10,1.41,327,316 +32237138,Sonder | Stock Exchange | Lively Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01225,Entire home/apt,203,2,7,2019-06-24,1.88,327,338 +32237148,Sonder | Stock Exchange | Dreamy 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70795,-74.01046,Entire home/apt,247,2,9,2019-05-28,2.13,327,263 +32237240,Sonder | Stock Exchange | Dreamy 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01227,Entire home/apt,377,2,15,2019-06-21,3.52,327,273 +32237306,Sonder | Stock Exchange | Calming 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70586,-74.01078,Entire home/apt,229,2,14,2019-06-23,3.65,327,323 +32237394,Sonder | Stock Exchange | Private 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70789,-74.01229,Entire home/apt,234,2,12,2019-06-16,3.05,327,340 +32237413,Sonder | Stock Exchange | Expansive 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70631,-74.01098,Entire home/apt,503,2,7,2019-05-28,2.10,327,294 +32237469,Sonder | Stock Exchange | Welcoming 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01175,Entire home/apt,228,2,2,2019-05-18,0.73,327,350 +32237493,Sonder | Stock Exchange | Serene 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7065,-74.01171,Entire home/apt,404,2,15,2019-06-09,3.19,327,310 +32237560,Sonder | Wall Street | Simple 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.01044,Entire home/apt,252,2,12,2019-06-19,3.03,327,302 +32237566,Sonder | Stock Exchange | Simple 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70648,-74.01241,Entire home/apt,229,2,7,2019-05-26,1.69,327,337 +32237634,Sonder | Stock Exchange | Premier 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70642,-74.01045,Entire home/apt,431,2,10,2019-06-14,2.11,327,323 +32237640,Sonder | Stock Exchange | Premier 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01056,Entire home/apt,412,2,13,2019-06-14,3.07,327,341 +32237692,Sonder | Stock Exchange | Tranquil 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70767,-74.01061,Entire home/apt,403,2,8,2019-06-16,1.90,327,273 +32237736,Sonder | Stock Exchange | Bold 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7065,-74.01019,Entire home/apt,229,2,10,2019-06-13,2.34,327,349 +32237768,Sonder | Stock Exchange | Bright 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01092,Entire home/apt,227,2,8,2019-06-05,1.88,327,356 +32237811,Sonder | Stock Exchange | Design Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70797,-74.01227,Entire home/apt,205,2,10,2019-06-24,2.54,327,338 +32238040,Feminine room in Manhattan. 1 stop to midtown.,59411033,Alexandra,Manhattan,Harlem,40.81359,-73.95246,Private room,85,1,2,2019-05-09,0.82,1,7 +32238106,Sonder | Stock Exchange | Modern Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7072,-74.01214,Entire home/apt,194,2,8,2019-06-13,2.26,327,318 +32238131,Sonder | Stock Exchange | Simple 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70731,-74.01056,Entire home/apt,214,2,11,2019-06-11,3.20,327,312 +32238198,Sonder | Stock Exchange | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.01066,Entire home/apt,229,2,9,2019-05-13,2.11,327,346 +32238229,Sonder | Stock Exchange | Warm Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.01045,Entire home/apt,185,2,6,2019-05-26,1.58,327,295 +32238253,Sonder | Stock Exchange | Airy 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01183,Entire home/apt,234,2,8,2019-06-18,2.31,327,333 +32238307,Sonder | Stock Exchange | Classic Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70574,-74.01023,Entire home/apt,201,2,20,2019-06-21,4.11,327,333 +32238324,Sonder | Stock Exchange | Chic 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01054,Entire home/apt,229,2,5,2019-05-21,1.25,327,335 +32238387,Sonder | Stock Exchange | Central 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01114,Entire home/apt,244,2,1,2019-05-27,0.70,327,258 +32238391,Sonder | Stock Exchange | Lively 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70569,-74.01077,Entire home/apt,227,2,8,2019-06-11,3.64,327,349 +32238462,Sonder | Stock Exchange | Sleek 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.01042,Entire home/apt,451,2,15,2019-06-21,4.37,327,254 +32238473,Sonder | Stock Exchange | Sleek Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70581,-74.01226,Entire home/apt,241,2,5,2019-06-12,1.35,327,284 +32238548,Sonder | Stock Exchange | Lovely 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70764,-74.01077,Entire home/apt,252,2,15,2019-06-21,3.19,327,260 +32238621,Sonder | Stock Exchange | Playful 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.01188,Entire home/apt,250,2,10,2019-06-23,2.59,327,292 +32238694,Midtown 2 Bed Large Full Kitchen & Free Breakfast,214347105,Roman,Manhattan,Midtown,40.75431,-73.96518,Entire home/apt,419,3,6,2019-06-21,1.57,8,326 +32238730,Sonder | Stock Exchange | Original 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70785,-74.01239,Entire home/apt,505,2,7,2019-06-14,1.79,327,275 +32238809,Sonder | Stock Exchange | Distinct 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01201,Entire home/apt,228,2,8,2019-06-19,2.02,327,348 +32238821,Sonder | Stock Exchange | Unique 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70731,-74.01021,Entire home/apt,242,2,15,2019-06-16,3.75,327,261 +32238933,Charming & Spacious Loft in Clinton Hill,18874653,Elsa,Brooklyn,Clinton Hill,40.69344,-73.9652,Entire home/apt,175,4,5,2019-06-30,1.19,1,40 +32239033,Sonder | Stock Exchange | Smart 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70583,-74.01089,Entire home/apt,221,2,4,2019-06-24,1.97,327,333 +32239034,Sonder | Stock Exchange | Quaint Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70651,-74.01252,Entire home/apt,203,2,9,2019-06-20,2.16,327,336 +32239035,Sonder | Stock Exchange | Peaceful 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01064,Entire home/apt,228,2,11,2019-06-13,2.73,327,355 +32239039,Sonder | Stock Exchange | Smart 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70775,-74.0105,Entire home/apt,215,2,9,2019-06-11,2.31,327,313 +32239170,FairPlay BNB for alternative life style renters!,241924064,Alice,Staten Island,Shore Acres,40.60525,-74.06745,Entire home/apt,300,1,0,,,1,87 +32239551,Sonder | Stock Exchange | Classic Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70706,-74.01036,Entire home/apt,198,2,7,2019-05-13,1.65,327,346 +32239640,Sonder | Stock Exchange | Tasteful 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.0116,Entire home/apt,468,2,11,2019-06-21,3.00,327,267 +32239738,Sonder | Stock Exchange | Lively 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70563,-74.01097,Entire home/apt,227,2,3,2019-04-27,0.81,327,350 +32239944,Sonder | Stock Exchange | Unique 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70702,-74.01087,Entire home/apt,236,2,9,2019-06-05,2.52,327,347 +32239950,Sonder | Stock Exchange | Playful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70595,-74.0118,Entire home/apt,244,2,2,2019-06-14,1.82,327,317 +32240068,Room,177449995,Jade,Queens,Woodside,40.74554,-73.89831,Private room,120,2,0,,,1,363 +32240076,Sonder | Stock Exchange | Lovely 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70637,-74.01199,Entire home/apt,248,2,17,2019-06-17,4.08,327,271 +32240110,Sonder | Stock Exchange | Artsy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70609,-74.01219,Entire home/apt,241,2,7,2019-06-16,2.08,327,331 +32240183,Sonder | Stock Exchange | Serene 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70581,-74.01101,Entire home/apt,390,2,9,2019-06-20,2.43,327,268 +32240186,Sonder | Stock Exchange | Unique 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01218,Entire home/apt,230,2,12,2019-06-16,2.57,327,357 +32240388,Sonder | Stock Exchange | Classic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.01023,Entire home/apt,230,2,9,2019-06-10,2.11,327,323 +32240417,Sonder | Stock Exchange | Airy 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7074,-74.01043,Entire home/apt,227,2,6,2019-06-16,2.50,327,328 +32240476,Sonder | Stock Exchange | Simple 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70654,-74.01091,Entire home/apt,214,2,11,2019-06-20,2.97,327,304 +32240488,Sonder | Stock Exchange | Artsy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70757,-74.01111,Entire home/apt,188,2,4,2019-04-12,1.08,327,298 +32240533,Sonder | Stock Exchange | Playful 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70765,-74.011,Entire home/apt,247,2,4,2019-05-14,0.97,327,314 +32240537,Sonder | Stock Exchange | Delightful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.01081,Entire home/apt,220,2,4,2019-05-27,1.15,327,331 +32240590,Sonder | Stock Exchange | Stylish Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70734,-74.01097,Entire home/apt,196,2,6,2019-06-11,1.48,327,325 +32240603,Sonder | Stock Exchange | Bold 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70638,-74.01086,Entire home/apt,218,2,4,2019-06-23,1.04,327,279 +32240776,Cozy Escape in the thriving heart of Bed-Stuy,241940624,Beryl,Brooklyn,Bedford-Stuyvesant,40.68529,-73.94028,Entire home/apt,130,2,9,2019-07-07,2.93,1,301 +32240788,Sonder | Stock Exchange | Serene 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.01227,Entire home/apt,396,2,8,2019-06-24,2.12,327,289 +32240812,Sonder | Stock Exchange | Lovely 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70619,-74.01065,Entire home/apt,214,2,5,2019-05-26,1.43,327,268 +32240870,"Bright, nice size room in beautiful Brooklyn apt.",1646988,Murat,Brooklyn,Windsor Terrace,40.65302,-73.97357,Private room,50,2,1,2019-06-24,1,1,0 +32240873,Sonder | Stock Exchange | Classic Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70796,-74.01206,Entire home/apt,196,2,9,2019-06-18,2.48,327,318 +32240896,Sonder | Stock Exchange | Premier 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01066,Entire home/apt,380,2,12,2019-06-20,3.50,327,302 +32240933,Sonder | Stock Exchange | Lively 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70726,-74.0106,Entire home/apt,229,2,2,2019-06-23,0.77,327,351 +32240966,Sonder | Stock Exchange | Sleek 3BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.7062,-74.01192,Entire home/apt,498,2,8,2019-06-11,2.50,327,255 +32240970,Sonder | Stock Exchange | Dashing 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70584,-74.01039,Entire home/apt,215,2,3,2019-06-13,0.77,327,317 +32241019,Sonder | Stock Exchange | Smart 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01184,Entire home/apt,231,2,13,2019-06-02,3.42,327,331 +32241027,Sonder | Stock Exchange | Distinct 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7058,-74.01107,Entire home/apt,234,2,5,2019-06-19,1.36,327,343 +32241060,Sonder | Stock Exchange | Bright 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70628,-74.01213,Entire home/apt,212,2,3,2019-05-31,0.74,327,293 +32241096,Sonder | Stock Exchange | Sunny 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70656,-74.01094,Entire home/apt,228,2,8,2019-05-29,2.12,327,343 +32241117,Sonder | Stock Exchange | Glam 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70781,-74.01165,Entire home/apt,214,2,6,2019-06-11,1.57,327,343 +32241142,Sonder | Stock Exchange | Tranquil 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70766,-74.01074,Entire home/apt,214,2,3,2019-05-25,1.23,327,333 +32241163,Sonder | Stock Exchange | Dreamy Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01208,Entire home/apt,201,2,9,2019-06-14,2.62,327,271 +32241185,Sonder | Stock Exchange | Bright 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01199,Entire home/apt,214,2,2,2019-06-08,0.59,327,331 +32241235,Sonder | Stock Exchange | Airy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70727,-74.01026,Entire home/apt,235,2,3,2019-06-11,1.58,327,341 +32241239,Sun drenched modern stylish 2 bedroom apt near all,241945355,Clement & Rose,Brooklyn,Flatlands,40.63129,-73.92748,Entire home/apt,165,2,5,2019-06-19,1.58,2,365 +32241242,Sonder | Stock Exchange | Playful 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01175,Entire home/apt,256,2,9,2019-06-23,2.60,327,277 +32241284,Sonder | Stock Exchange | Lovely 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70582,-74.01111,Entire home/apt,248,2,9,2019-06-23,2.48,327,284 +32241288,Sonder | Stock Exchange | Lively 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.0107,Entire home/apt,216,2,9,2019-06-22,2.23,327,332 +32241577,Sonder | Stock Exchange | Chic 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70762,-74.01105,Entire home/apt,223,2,3,2019-06-01,0.74,327,310 +32241600,Sonder | Stock Exchange | Pristine 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7062,-74.01092,Entire home/apt,229,2,11,2019-06-17,2.37,327,329 +32242139,Sun-Drenched 1 BR/1BA near Grand Army Plaza #10313,20375986,Marissa,Brooklyn,Park Slope,40.67655,-73.97697,Entire home/apt,200,3,17,2019-06-29,3.98,1,142 +32242353,Private Room in Stunning Apartment,52005895,Jae,Brooklyn,Bedford-Stuyvesant,40.68429,-73.92515,Private room,110,1,5,2019-05-14,1.10,1,86 +32242547,Times Square & Rockefeller Center Private Bedroom,93411405,Eden,Manhattan,Midtown,40.7597,-73.97916,Private room,150,2,0,,,2,0 +32242848,Summer room 夏,240055586,George,Queens,Fresh Meadows,40.73834,-73.79209,Private room,55,1,24,2019-07-01,4.97,5,32 +32244500,Bushwick APT with big bright room/private backyard,64318524,Stephanie,Brooklyn,Bushwick,40.69754,-73.91465,Private room,65,4,1,2019-04-21,0.38,1,0 +32244701,Quiet 1bedroom apartment,241985900,V,Manhattan,Hell's Kitchen,40.7588,-73.9922,Entire home/apt,150,1,23,2019-06-23,4.66,1,106 +32244865,LARGE Trendy Studio!!!,53931758,Lc,Brooklyn,Flatbush,40.64464,-73.96453,Entire home/apt,100,3,3,2019-06-03,0.97,1,73 +32245235,Quiet Private Room in the Exciting East Village!,160356,Joseph,Manhattan,East Village,40.72576,-73.98309,Private room,68,1,18,2019-07-03,4.15,4,90 +32250920,The Berry - Hip in the heart of Williamsburg.,1859754,Adam,Brooklyn,Williamsburg,40.71989,-73.9581,Entire home/apt,100,4,2,2019-06-30,0.48,1,7 +32251219,Urban Casita,5167068,Heather & Alex,Brooklyn,Bedford-Stuyvesant,40.6923,-73.9328,Entire home/apt,215,3,12,2019-06-17,2.88,1,6 +32251904,Mary Sweet Home,242063700,Marysell,Queens,Flushing,40.73907,-73.82943,Private room,65,1,2,2019-03-10,0.41,1,0 +32252006,Upper Ditmars Top FL of Home with Patio,7973451,Chris,Queens,Ditmars Steinway,40.77315,-73.89908,Entire home/apt,85,5,1,2019-04-01,0.30,1,84 +32252190,Fall room 秋,240055586,George,Queens,Fresh Meadows,40.73784,-73.79101,Private room,50,1,20,2019-07-08,4.20,5,38 +32253160,Family House 旅行客栈,240055586,George,Queens,Fresh Meadows,40.73704,-73.79151,Entire home/apt,255,1,13,2019-06-17,2.87,5,114 +32257766,Bushwick Gem-Spacious & Quiet for a solo traveller,13954138,Clarissa,Brooklyn,Bushwick,40.69534,-73.91777,Private room,37,7,0,,,2,16 +32260219,private room for up to 2 guests,242094791,Lizhen,Queens,Elmhurst,40.74311,-73.88098,Private room,300,1,1,2019-02-18,0.21,1,89 +32260853,Room in Williamsburg w/ private full bathroom,80354349,Luke,Brooklyn,Williamsburg,40.7079,-73.94608,Private room,75,2,2,2019-05-06,0.85,1,188 +32263166,Welcome to my Lovely Studio.,207640201,Denny,Bronx,Tremont,40.8474,-73.89612,Shared room,50,1,7,2019-05-19,1.54,1,158 +32264646,the haven,8212204,Nitzan,Brooklyn,Crown Heights,40.665,-73.95362,Entire home/apt,64,30,1,2019-03-09,0.25,1,0 +32266199,2400 sq. ft. Luxury Tribeca Loft,4471865,Cuitlahuac,Manhattan,Tribeca,40.71683,-74.00574,Private room,225,1,1,2019-03-21,0.27,1,66 +32267097,Cozy room in brand new condo with rooftop & gym,242115790,Esteban,Brooklyn,Greenpoint,40.73394,-73.95174,Private room,50,2,11,2019-06-23,3.33,1,49 +32267833,Bright room in a spacious apartment,235146087,Ismael,Bronx,Parkchester,40.83099,-73.86951,Private room,35,2,10,2019-06-03,2.10,1,6 +32268791,The Artist Retreat Duplex and Garden 2,90860,Amy,Brooklyn,Bedford-Stuyvesant,40.68272,-73.9303,Entire home/apt,170,2,0,,,4,89 +32270481,Private Apartment in the Heart of East Village,217521776,Chin,Manhattan,East Village,40.72716,-73.9783,Entire home/apt,211,30,17,2019-07-07,4.18,1,74 +32270656,Sweet Studio Apartment in Sunnyside,9427289,Steve,Queens,Sunnyside,40.749,-73.91858,Entire home/apt,95,3,15,2019-07-01,4.50,2,23 +32271293,Cozy/ smallish on 143 st & Broadway,61042,Marlon,Manhattan,Harlem,40.82153,-73.95458,Private room,52,5,7,2019-06-21,1.68,6,11 +32272051,Bushwick Loft Transformed into Bohemian Hideaway!,25365575,Nick,Brooklyn,Williamsburg,40.70525,-73.93363,Private room,64,1,29,2019-07-05,6.13,1,13 +32272082,Waterfront apt with Manhattan view and balcony...,152034487,Dino,Manhattan,Roosevelt Island,40.76218,-73.94897,Private room,85,1,20,2019-07-02,8.45,1,104 +32272829,Artist Studio Loft in The Heart of Williamsburg,128810972,Vlasta,Brooklyn,Williamsburg,40.71356,-73.96751,Entire home/apt,200,2,5,2019-05-19,1.05,2,26 +32273036,"Lux room near train station, LGA & Manhattan.",137358866,Kazuya,Queens,Woodside,40.74609,-73.90632,Private room,41,30,0,,,103,230 +32278370,Furnished room in a nice apt 20 mins to Manhattan,212151296,Ella,Queens,Rego Park,40.72871,-73.86014,Private room,54,2,10,2019-07-01,2.34,1,319 +32281241,Cozy NYC apartment,55452987,Mark & Alex,Manhattan,East Harlem,40.79616,-73.93343,Private room,55,5,0,,,1,179 +32281512,"One of a kind, lovely apartment w/private backyard",42483386,Jennifer,Brooklyn,Prospect Heights,40.67959,-73.96736,Entire home/apt,195,1,3,2019-06-30,1.10,1,20 +32282597,"E Flatbush! Cozy, 20 min walk to Dwnstate Hosp",242296495,Angela,Brooklyn,East Flatbush,40.64941,-73.93451,Private room,33,1,14,2019-07-06,3.09,3,37 +32283154,70KO,164144705,Gabriel,Brooklyn,Bedford-Stuyvesant,40.6892,-73.95213,Private room,220,1,0,,,1,178 +32284162,Unique 2 bedroom apt in the center of Williamsburg,6960621,Diego,Brooklyn,Williamsburg,40.71294,-73.96142,Entire home/apt,210,2,27,2019-06-28,5.91,1,188 +32284611,Sun drenched apartment w/ outdoor space.,2201403,Brittany,Brooklyn,Williamsburg,40.71297,-73.95139,Private room,50,30,0,,,1,340 +32284628,Modern Ground FL Event Space on Infamous 5th Ave,11520555,Mike,Manhattan,East Harlem,40.80129,-73.94466,Entire home/apt,612,1,15,2019-06-24,3.52,1,91 +32284910,1.Nice Room near La Guardia AirPort NYC,242322561,Rosy,Queens,East Elmhurst,40.76599,-73.8693,Private room,45,1,51,2019-07-02,11.59,1,66 +32285425,86,207182952,Ali,Brooklyn,Downtown Brooklyn,40.69429,-73.98415,Entire home/apt,650,1,1,2019-03-27,0.29,1,365 +32285578,Spacious NYC experience,242330603,Nellie,Queens,Richmond Hill,40.67863,-73.82648,Entire home/apt,129,180,0,,,1,365 +32286305,Safe quiet midtown home!,203254069,Dave,Manhattan,Upper East Side,40.76324,-73.96382,Entire home/apt,175,3,1,2019-06-19,1,1,3 +32286787,BROOKLYN Bright Williamsburg room Backyard +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70684,-73.94932,Private room,65,1,20,2019-07-04,4.23,4,107 +32286975,Cool&cozy Bushwick apartment with private backyard,34599913,Irina,Brooklyn,Bushwick,40.68723,-73.91451,Entire home/apt,70,6,15,2019-06-18,3.19,1,63 +32287174,"Brownstone Apt, 1min to Subway, 20min to Manhattan",242348374,Ninja & Sung,Brooklyn,Clinton Hill,40.68846,-73.96139,Entire home/apt,195,3,12,2019-07-01,3.71,1,38 +32288165,1 bedroom apt in Harlem 600 sq. feet,96589640,Alberto,Manhattan,East Harlem,40.79658,-73.93284,Entire home/apt,128,7,0,,,1,178 +32291033,The best place .Close to Central Park,110204617,Luiz Charles,Manhattan,Upper East Side,40.77405,-73.9623,Entire home/apt,150,15,0,,,1,162 +32291088,"Bright Den In Modern, New Condo, Sleeps 2",171364485,Leila,Brooklyn,Gowanus,40.68194,-73.98033,Private room,80,3,9,2019-06-15,2.23,1,89 +32291385,Unique & Comfortable Apartment in East Village,12404709,Clinton,Manhattan,East Village,40.72694,-73.98501,Entire home/apt,300,2,2,2019-06-09,0.58,2,0 +32291386,Super Luxury! XL Alcove Studio in heart of Chelsea,21127860,Carol,Manhattan,Chelsea,40.74101,-73.99471,Entire home/apt,215,2,12,2019-06-07,2.55,1,128 +32291500,ROOM X,194839310,Memory,Brooklyn,Bushwick,40.68981,-73.91299,Private room,40,3,8,2019-05-19,1.90,1,0 +32291826,Charming Bedroom in Quintessential Brooklyn Home,36211911,Matthew,Brooklyn,Williamsburg,40.71751,-73.94474,Private room,80,1,0,,,1,0 +32291916,Quite and cozy room in Manatthan,65183994,Camille,Manhattan,East Harlem,40.79795,-73.93448,Private room,77,2,20,2019-06-14,4.38,1,52 +32292122,Comfy bedroom in stylish apt in Clinton Hill,541486,Max,Brooklyn,Bedford-Stuyvesant,40.68594,-73.95658,Private room,95,1,0,,,2,146 +32292131,"Nice bedroom in Astoria, Queens, NY",230230484,Clara,Queens,Astoria,40.76352,-73.92489,Private room,100,3,0,,,2,0 +32292954,Split level Front walk-in Apartment,219333557,Rafael,Queens,East Elmhurst,40.76276,-73.86889,Private room,49,1,6,2019-06-03,1.25,7,55 +32293401,Private garden and luxury 2-bd apartment in Harlem,18338590,Terry,Manhattan,Harlem,40.82869,-73.94468,Entire home/apt,120,30,0,,,1,147 +32293598,Beautiful Mid-century Modern One Bedroom Apartment,42427156,Lisa,Queens,Astoria,40.76624,-73.91475,Entire home/apt,89,3,18,2019-06-27,4.29,1,0 +32293787,"Easy access Mall, Midtown & JFK. Vast room space!",137358866,Kazuya,Queens,Elmhurst,40.74467,-73.8726,Private room,26,30,0,,,103,233 +32297005,AMAZINGLY LOCATED APARTMENT NEAR TIME SQ,242438900,Oscar,Manhattan,Hell's Kitchen,40.76299,-73.98994,Entire home/apt,170,1,39,2019-07-07,8.48,1,64 +32302579,Charming 1 bedroom for female guest,1283375,Shalini,Brooklyn,Prospect Heights,40.67414,-73.9662,Private room,65,2,7,2019-07-02,1.50,1,63 +32302978,Bright 1b on quiet Williamsburg street,2943364,Alison,Brooklyn,Williamsburg,40.71177,-73.96464,Entire home/apt,120,3,4,2019-07-01,0.88,1,8 +32303292,Cozy 2 Bedroom Brownstone Duplex,73234851,Shoshana,Brooklyn,Bedford-Stuyvesant,40.68129,-73.94251,Entire home/apt,150,3,10,2019-05-21,2.78,2,5 +32303671,BROOKLYN! Chic Williamsburg room + Balcony +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70847,-73.9491,Private room,57,1,31,2019-07-02,6.46,4,116 +32303904,Homey sanctuary in classic limestone garden apt.,3308518,Alexis,Brooklyn,Bedford-Stuyvesant,40.68514,-73.92392,Entire home/apt,108,5,9,2019-06-25,2.60,1,99 +32303970,BROOKLYN! Cute Williamsburg room + Balcony +Trains,242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70766,-73.94974,Private room,70,1,34,2019-07-05,7.03,4,132 +32304108,Carroll Gardens Cozy Nest,152114575,Barbara,Brooklyn,Carroll Gardens,40.68082,-73.99482,Private room,89,4,5,2019-06-16,1.40,1,0 +32304790,Private bedroom/bathroom in Williamsburg GEM !,12741400,Manon,Brooklyn,Williamsburg,40.71208,-73.95126,Private room,99,3,9,2019-06-24,2.03,1,19 +32304889,Sleek Williamsburg Apartment With Gym,64434732,Amy,Brooklyn,Williamsburg,40.7084,-73.94488,Private room,115,1,2,2019-05-18,0.61,1,89 +32304894,A Sweet Retreat in Bedstuy,8112941,Cat,Brooklyn,Bedford-Stuyvesant,40.69389,-73.94317,Private room,90,3,0,,,3,280 +32305506,Large Studio Doorman Elevator 5241,16098958,Jeremy & Laura,Manhattan,Midtown,40.75629,-73.96548,Entire home/apt,135,30,0,,,96,332 +32305798,Bright Spacious Full Floor Fort Greene Apartment,6771515,Blacky,Brooklyn,Fort Greene,40.69722,-73.97204,Entire home/apt,119,3,2,2019-03-25,0.44,1,5 +32306053,Modern renovated 1 BR in the heart of Manhattan,48339350,Kel,Manhattan,Upper East Side,40.76218,-73.96633,Entire home/apt,136,1,26,2019-06-29,5.91,1,47 +32306527,RM#2-Bright room w/balcony 30 mins NYC & airports,241963980,Deborah,Queens,Jamaica Hills,40.71686,-73.79742,Private room,67,2,25,2019-07-07,6.88,2,318 +32306605,"Sharp UES 2BR w/Indoor pool, Doorman + City views by Blueground",107434423,Blueground,Manhattan,Midtown,40.75901,-73.96198,Entire home/apt,365,30,0,,,232,341 +32307013,LUXURY PRVT ROOM NEAR PROSPECT PARK,28046939,Stephanie,Brooklyn,Kensington,40.6376,-73.97386,Private room,97,1,0,,,1,0 +32308243,Stylish 1 Bedroom in the heart of Brooklyn,241523602,Mary,Brooklyn,Crown Heights,40.66854,-73.95857,Entire home/apt,100,2,9,2019-06-25,4.50,1,0 +32308362,Quiet Mid-Century Modern Apartment,99763169,Ashlin,Manhattan,Upper West Side,40.77995,-73.98464,Entire home/apt,220,2,3,2019-04-29,0.62,1,36 +32308471,Best Nest.,237118012,Jackie,Manhattan,Upper East Side,40.76335,-73.96831,Private room,200,1,0,,,1,179 +32308571,Cozy bedroom minutes to Manhattan,68907781,Dafni,Queens,Astoria,40.76837,-73.92712,Private room,45,2,4,2019-06-29,1.15,3,31 +32309292,Cozy room with private entrance in Harlem.,6105036,George,Manhattan,Harlem,40.80521,-73.95137,Private room,145,1,14,2019-06-19,2.98,3,113 +32309885,Hidden GEM in the CENTRAL location,123357281,Maria,Manhattan,West Village,40.73957,-74.00241,Entire home/apt,195,2,4,2019-05-07,0.99,1,0 +32310285,Room in Heart of NYC Art & Nightlife !,9816503,Mick,Manhattan,Nolita,40.72214,-73.99675,Private room,75,3,9,2019-06-07,2.73,1,67 +32310645,Brooklyn Two Bedroom APT near the TRAIN,242491187,Vlad,Brooklyn,Kensington,40.64265,-73.98355,Entire home/apt,160,3,2,2019-05-30,0.79,1,177 +32310733,Crash Space in BK for your NYC Adventure!,40146897,Eric,Brooklyn,Crown Heights,40.67302,-73.92134,Shared room,25,2,1,2019-02-20,0.21,5,29 +32311383,The Projects Gallery,44262594,Sam,Brooklyn,Fort Greene,40.68495,-73.97438,Private room,85,4,0,,,1,365 +32312452,Beautiful big ROOM/Safe&comfortable/ near LG& JFK,169587048,Jay/Carolina Bastidas Family,Brooklyn,Cypress Hills,40.68446,-73.87801,Private room,38,4,10,2019-06-26,2.44,2,307 +32313314,Excellent apartment/ awesome location,33568073,Jordan,Brooklyn,South Slope,40.66736,-73.98508,Entire home/apt,150,5,0,,,1,8 +32314460,lower east side home,27923277,Xu,Manhattan,Lower East Side,40.7127,-73.98854,Private room,75,4,9,2019-06-23,1.96,1,34 +32314474,Bedroom in middle of BK! Great location!,26362511,Katya,Brooklyn,Bushwick,40.69266,-73.92058,Private room,60,1,0,,,1,16 +32314821,Huge room in Creative Colorful Modern apartment,3703456,Brooke,Brooklyn,Bedford-Stuyvesant,40.69619,-73.94242,Private room,55,1,6,2019-04-28,1.29,2,22 +32315112,TWO BEDROOM APARTMENT IN BEAUTIFUL BED-STUY,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69493,-73.94483,Entire home/apt,100,3,4,2019-06-30,1.04,3,6 +32316532,Cozy Quaint Brooklyn Apartment,187877117,Skylar,Brooklyn,Crown Heights,40.67111,-73.92237,Entire home/apt,125,2,11,2019-07-07,2.60,1,128 +32316672,"Cozy space, centrally located!",24697585,Martin,Manhattan,Kips Bay,40.73951,-73.98216,Entire home/apt,140,30,0,,,1,36 +32317538,"SPACIOUS Floor-Through Loft in Flatiron, NYC",53170355,Anika,Manhattan,Gramercy,40.73833,-73.98943,Entire home/apt,1200,2,2,2019-05-05,0.70,1,166 +32317602,LARGE 2 Bedroom Midtown Manhattan Apartment!,242622786,Ethan,Manhattan,Hell's Kitchen,40.76262,-73.98865,Entire home/apt,177,1,7,2019-07-04,1.74,1,8 +32317628,"Comfortable, Quiet, close to Airports, Manhattan",242622555,J,Queens,Maspeth,40.73218,-73.89633,Private room,50,1,0,,,1,0 +32326698,Washington Suite at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73672,-74.00539,Private room,999,1,3,2019-07-01,2.43,5,329 +32327326,Tabor Room at Incentra Village Hotel,241889662,Incentra,Manhattan,West Village,40.73697,-74.00343,Private room,999,1,2,2019-05-26,0.59,5,334 +32327466,Lahore Suite at Incentra Village House,241889662,Incentra,Manhattan,West Village,40.73897,-74.00346,Private room,999,1,3,2019-05-19,0.70,5,341 +32329737,One stop away manhattan #2,91605357,Tina,Brooklyn,Williamsburg,40.70738,-73.95569,Private room,60,2,26,2019-06-29,6.50,2,21 +32332953,Glorious Bedstuy: Large room with a work station.,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69433,-73.9432,Private room,60,1,22,2019-07-07,4.49,4,282 +32333010,Brownstone Brooklyn with a View,158200817,Beka And Strat,Brooklyn,Prospect-Lefferts Gardens,40.65814,-73.9588,Private room,158,2,3,2019-06-23,3,2,179 +32333590,LES is more,197676391,Law,Manhattan,Lower East Side,40.71701,-73.98874,Entire home/apt,140,1,14,2019-07-02,4.20,1,9 +32333972,Pacheco’s House.,242758145,Adrian,Brooklyn,Prospect-Lefferts Gardens,40.65447,-73.9616,Private room,60,2,6,2019-05-20,1.26,1,144 +32334037,Bedstuy Blues: Room for one or two,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69315,-73.94191,Private room,60,1,39,2019-07-06,7.96,4,301 +32334635,Stylish West Village Artists Studio Penthouse,22720650,Duane,Manhattan,West Village,40.73674,-74.00556,Entire home/apt,130,30,0,,,2,309 +32337194,Uptown Riverside Drive Apartment,194981782,Ana,Manhattan,Harlem,40.82666,-73.95175,Private room,140,3,1,2019-04-21,0.38,1,120 +32338134,Cozy Greenpoint Getaway,13543967,Paulina,Brooklyn,Greenpoint,40.72912,-73.95203,Private room,100,3,4,2019-06-30,1.36,1,53 +32338520,Stylish apartment in a Brooklyn brownstone,6635392,Patrick,Brooklyn,Bedford-Stuyvesant,40.68597,-73.93873,Entire home/apt,125,5,4,2019-07-01,1.20,1,0 +32340585,Enjoy privacy & comfort in Washington Heights 1BR,17174170,Angela,Manhattan,Washington Heights,40.85197,-73.92853,Entire home/apt,74,1,4,2019-03-24,0.95,1,0 +32341313,Cozy Room in Ridgewood/Bushwick! 25 Mins to NYC,135280693,John,Queens,Ridgewood,40.70833,-73.91039,Private room,65,3,3,2019-06-24,1.29,2,342 +32342394,Convenient 2 bedroom apt near Times Sq. 1C,190921808,John,Manhattan,Hell's Kitchen,40.75393,-73.99667,Entire home/apt,500,3,2,2019-05-26,0.81,47,352 +32342541,Room Nearby train station to Times Square NYC,242831353,Blanca,Queens,Long Island City,40.75204,-73.9226,Private room,30,3,14,2019-06-29,3.41,1,77 +32342911,3 bedroom apartment 10m away from Times Sq. 2C,190921808,John,Manhattan,Hell's Kitchen,40.75572,-73.99509,Entire home/apt,650,3,1,2019-03-12,0.25,47,297 +32343097,Rare 1BR Artist's Apt. Chinatown-L. Italy-NoLita,178631153,Di Di,Manhattan,Nolita,40.71996,-73.99548,Entire home/apt,125,2,5,2019-04-14,1.10,1,0 +32343635,LARGE BEDROOM IN BRONX DOWN THE BLOCK FROM 2 TRAIN,109189054,Camille,Bronx,Wakefield,40.88805,-73.86451,Private room,65,1,0,,,1,0 +32343903,East Williamsburg Quiet Getaway or Workspace,241870258,Reesey,Brooklyn,Williamsburg,40.71536,-73.93662,Private room,80,1,10,2019-05-07,2.11,2,0 +32345140,✤ NEWLY RENOVATED ✤ TOP LOCATION ✤,229478744,Yara,Manhattan,Hell's Kitchen,40.76332,-73.9915,Entire home/apt,379,2,11,2019-06-21,3.30,1,252 +32347436,Upper West Side 1BR w/ Doorman + Gym by Blueground,107434423,Blueground,Manhattan,Upper West Side,40.7813,-73.97927,Entire home/apt,189,30,0,,,232,189 +32347622,"Spacious Midtown East 1BR w/ Balcony, Gym, Doorman by Blueground",107434423,Blueground,Manhattan,Murray Hill,40.7493,-73.97376,Entire home/apt,321,30,0,,,232,83 +32347796,"Crisp Heart of Chelsea Studio, w/ Roofdeck + Gym, by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74112,-73.99483,Entire home/apt,285,30,0,,,232,283 +32349835,NYC - PRIVATE room in Bay Ridge.,78258843,Jim,Brooklyn,Bay Ridge,40.62955,-74.02429,Private room,40,6,3,2019-04-21,0.82,1,62 +32350835,Sunnyside room mins to Times Square & JFK.,137358866,Kazuya,Queens,Sunnyside,40.74658,-73.92007,Private room,42,30,1,2019-04-22,0.38,103,0 +32354513,Brooklyn artistic studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68396,-73.95267,Entire home/apt,90,1,14,2019-06-10,3.09,5,85 +32355251,PRIVATE bath & entrance in hip Greenpoint,56470374,Jacqueline,Brooklyn,Greenpoint,40.7293,-73.95075,Private room,145,21,1,2019-07-01,1,1,343 +32355657,Amazing Apt in West Village NYC,230191262,Lorena,Manhattan,West Village,40.73938,-74.00176,Entire home/apt,400,6,4,2019-07-05,0.83,1,0 +32355744,Red Door Townhouse — Heart of The Upper East Side,242933360,Jennifer,Manhattan,Upper East Side,40.77202,-73.95821,Private room,150,1,11,2019-06-20,2.92,1,81 +32356294,Large Bedroom with Private Entrance,2487323,Maddy,Brooklyn,Greenpoint,40.73446,-73.9523,Private room,61,14,0,,,1,157 +32356476,Brooklyn palace,22749766,Raphael,Brooklyn,Williamsburg,40.7085,-73.94966,Private room,50,1,1,2019-03-11,0.25,1,0 +32356850,Spacious 1 Bedroom in the Heart of Williamsburg,221177870,Austin,Brooklyn,Williamsburg,40.71415,-73.93857,Entire home/apt,95,1,5,2019-05-27,1.20,1,0 +32358081,Brand New!XL 1 BR!Prime Midtown~Elv bldg~BestValue,162280872,Izi,Manhattan,Hell's Kitchen,40.76099,-73.99554,Entire home/apt,160,30,0,,,13,310 +32358099,sweet room to relax,236659049,Yesenia,Brooklyn,Bushwick,40.69169,-73.90429,Private room,40,1,3,2019-04-20,0.69,4,0 +32358780,comfortable room for guests,236659049,Yesenia,Brooklyn,Bushwick,40.68991,-73.90495,Private room,40,1,8,2019-04-10,1.67,4,0 +32359401,NEW renovated bathroom & Private backyard,19303369,Hiroki,Queens,Elmhurst,40.74503,-73.87099,Private room,28,30,0,,,37,1 +32361370,Large Private Bedroom Near Tons Of Transit!,242962235,Yuval,Queens,Ridgewood,40.70896,-73.8956,Private room,42,30,2,2019-05-04,0.60,23,204 +32361532,"Chic Private Bedroom in Ridgewood, NY by 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70892,-73.89502,Private room,42,30,0,,,23,220 +32361604,"Bold & Beautiful Private Bedroom, Ridgewood Queens",242962235,Yuval,Queens,Ridgewood,40.70813,-73.89664,Private room,42,30,2,2019-06-07,1.62,23,208 +32361650,"Trendy Private Room in Prime NY, 3 Train Nearby!",242962235,Yuval,Queens,Ridgewood,40.70727,-73.89627,Private room,42,30,0,,,23,332 +32361746,"Stylish Private Bedroom in Ridgewood, NY",242962235,Yuval,Queens,Ridgewood,40.70906,-73.89511,Private room,37,30,1,2019-03-28,0.29,23,318 +32362267,"Duplex apartment near JFK, LGA, train & the city",5592622,Christina,Queens,Astoria,40.75605,-73.91341,Entire home/apt,225,1,4,2019-06-03,1.12,5,89 +32363924,"Private Room in Bushwick, Brooklyn",2210374,Nathalie,Brooklyn,Bushwick,40.70188,-73.9258,Private room,43,1,2,2019-06-16,0.61,1,0 +32364378,Grand Central 1 bedroom apartment,56025976,Stefy,Manhattan,Midtown,40.75337,-73.97334,Entire home/apt,160,2,7,2019-06-23,1.78,1,12 +32364475,TIMES SQUARE!!! COZY PRIVATE ROOM (for up to 3)!,97131241,Marccelo Gabriel,Manhattan,Theater District,40.76282,-73.98236,Private room,115,1,27,2019-06-23,5.79,1,94 +32364762,Bronx,19303369,Hiroki,Bronx,Kingsbridge,40.88474,-73.90321,Private room,27,30,0,,,37,0 +32364848,A Place for Pet Lovers,24879404,Jackson,Brooklyn,Flatbush,40.64612,-73.9608,Private room,40,1,7,2019-05-31,1.86,1,61 +32365337,Hidden 2 Bedrm Gem in SOBRO! Minutes to NYC!,242571852,Julio,Bronx,Longwood,40.82671,-73.90643,Entire home/apt,159,2,7,2019-06-30,2.26,1,118 +32365434,The Luxury Spot! Brooklyn Prime Location!,86005213,Yaevette,Brooklyn,Crown Heights,40.67066,-73.94801,Entire home/apt,150,3,2,2019-06-30,2,1,70 +32365636,Water Front Duplex with Amazing Views and Parking.,132163538,Alex,Brooklyn,Bay Ridge,40.6348,-74.03788,Entire home/apt,155,28,0,,,1,339 +32365738,Rare Gem - Modern Lux Studio,113856483,Niky,Manhattan,Financial District,40.70399,-74.00662,Entire home/apt,249,2,13,2019-07-01,3.12,1,227 +32366042,Huge Private Room near Central Park with KEY,243026919,Kiara,Manhattan,East Harlem,40.80801,-73.94011,Private room,85,1,14,2019-06-27,6.27,2,0 +32367010,Romantic Top Floor Brownstone in Crown Heights,237508892,Kendrick,Brooklyn,Crown Heights,40.66978,-73.95009,Entire home/apt,188,1,10,2019-06-18,2.40,1,199 +32370730,CITY VIEWS LARGE APARTMENT,243037591,Maria,Manhattan,Flatiron District,40.74189,-73.99019,Entire home/apt,488,3,14,2019-07-02,3.65,1,76 +32371477,Extra Large Room Close to Midtown,61042,Marlon,Manhattan,East Harlem,40.7996,-73.94216,Private room,55,5,2,2019-06-22,2,6,6 +32371865,LUXURY 2 BR WITH PRIVATE PATIO IN CHELSEA-WEST21ST,200380610,Pranjal,Manhattan,Chelsea,40.74119,-73.99536,Entire home/apt,425,30,0,,,65,327 +32373990,Warm Cozy Home W/Backyard,227836692,Derrik,Brooklyn,East Flatbush,40.65134,-73.94309,Private room,133,1,0,,,1,89 +32374666,Get away for the weekend in a cozy private room,241708736,Jurany,Manhattan,Morningside Heights,40.80511,-73.95824,Private room,300,3,0,,,1,364 +32377751,Central Location in NYC - Walk to Central Park,38483415,Florentino,Manhattan,East Harlem,40.80108,-73.94602,Private room,79,1,9,2019-05-25,2.23,4,365 +32378301,Charming Studio in Brooklyn Heights,44948759,Caroline,Brooklyn,Brooklyn Heights,40.69757,-73.99335,Entire home/apt,100,1,1,2019-03-13,0.25,1,0 +32379092,Brooklyn spacious Bedroom (D) close to the Subways,243129380,Nubia,Brooklyn,Bushwick,40.68587,-73.9082,Private room,57,2,23,2019-07-02,5.11,4,114 +32379410,NYC like Home !,44123891,Elizabeth,Manhattan,Upper East Side,40.77189,-73.94694,Entire home/apt,260,7,2,2019-05-02,0.75,1,76 +32379480,Celebrity Central Park townhouse designer's touch.,243132541,Jenny,Manhattan,Upper East Side,40.76262,-73.96443,Entire home/apt,1497,1,10,2019-06-30,2.36,1,363 +32379695,Brooklyn Small but cozy bedroom C close to Subways,243129380,Nubia,Brooklyn,Bushwick,40.6872,-73.90895,Private room,55,2,18,2019-06-29,4.00,4,188 +32380039,Modern room B into heart of Brooklyn close Subways,243129380,Nubia,Brooklyn,Bushwick,40.68772,-73.90808,Private room,51,2,15,2019-06-16,3.33,4,111 +32380547,"Quiet private room fabulous apt, perfect location",243131091,Irina,Manhattan,Upper West Side,40.77422,-73.97778,Private room,95,2,13,2019-06-22,3.61,1,6 +32381021,Artist LOFT in East Williamsburg!,51509098,Aushra,Brooklyn,Bushwick,40.70218,-73.93582,Entire home/apt,125,5,1,2019-03-04,0.24,1,11 +32381165,"Elegant & Luxurious, Clean & Cheerful entire house",243147506,Peter,Staten Island,Stapleton,40.6279,-74.08202,Entire home/apt,275,2,11,2019-07-03,3.51,1,182 +32382542,Home away from home lodging #2 with 2 Bed- 2 guest,225790094,Vena,Brooklyn,East Flatbush,40.64929,-73.92685,Private room,35,1,7,2019-07-01,1.47,3,365 +32383114,Home away from home lodging 3 (2 Beds - 2 guests),225790094,Vena,Brooklyn,East Flatbush,40.65015,-73.92803,Private room,35,1,7,2019-06-23,1.84,3,351 +32384354,Shared Room - All Female - Great Roommates!,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67652,-73.94016,Shared room,26,15,2,2019-05-31,0.59,2,23 +32384721,Shared Room: All Male - Coed Apt-Great Roommates,107180958,Sarah & John @ Bedly,Brooklyn,Crown Heights,40.67692,-73.94038,Shared room,26,20,2,2019-05-13,0.75,2,49 +32385315,"Warm , Beautiful and cozy 1Br in LES",243181741,Samia,Manhattan,Two Bridges,40.71257,-73.995,Entire home/apt,175,2,15,2019-07-01,3.44,1,90 +32385720,Elevated Living in the East Village,141508996,Britt,Manhattan,East Village,40.72498,-73.97604,Private room,95,1,6,2019-06-17,1.49,1,160 +32387391,Rent my unique 2BR Condo in Prime Williamsburg,4427256,Dani,Brooklyn,Williamsburg,40.71581,-73.95546,Entire home/apt,215,90,0,,,1,328 +32392636,Sun drenched 1 bedroom furnished,331328,Amir,Manhattan,East Harlem,40.80526,-73.93818,Entire home/apt,95,14,2,2019-05-30,0.60,3,3 +32397072,WILLIAMSBURG PRIME LOCATION-AMAZING LIGHT!,201791531,Monica,Brooklyn,Williamsburg,40.71682,-73.95446,Private room,66,182,0,,,1,157 +32398138,"Modern and spacious apt in Kips Bay, NYC!",30283594,Kara,Manhattan,Kips Bay,40.74378,-73.97356,Entire home/apt,239,29,0,,,121,364 +32398156,Comfortable stay-beautiful 1 bedroom apt in NYC!,30283594,Kara,Manhattan,Kips Bay,40.74361,-73.97523,Entire home/apt,239,29,0,,,121,364 +32398174,"Gorgeous Studio apt in the heart of Kips Bay, NYC!",30283594,Kara,Manhattan,Kips Bay,40.74271,-73.97533,Entire home/apt,209,29,0,,,121,184 +32399523,Premium FiDi 1BR w/ Doorman + Wraparound Roofdeck by Blueground,107434423,Blueground,Manhattan,Financial District,40.70399,-74.00908,Entire home/apt,306,90,0,,,232,281 +32399591,Cozy bedroom in the best location in New York,243297214,Coronado,Brooklyn,Williamsburg,40.71084,-73.95875,Private room,60,4,3,2019-06-09,0.76,1,0 +32400196,Entire apartment in townhouse,110062861,Anwar,Manhattan,Harlem,40.81461,-73.94635,Entire home/apt,110,4,5,2019-05-27,1.23,2,214 +32400749,Gorgeous 7BR/3.5BA Bohemian Flat - PRIME LOCATION,25318403,Bethany,Brooklyn,Williamsburg,40.71244,-73.9581,Entire home/apt,750,3,0,,,3,7 +32401236,fabulous & large bedroom - East Williamsburg,238766198,Lily,Brooklyn,Williamsburg,40.71235,-73.93963,Private room,67,2,9,2019-06-14,1.99,1,345 +32401422,"Private Studio for Events, Recording & Exhibitions",155993704,Mariah,Brooklyn,Bushwick,40.68385,-73.90653,Private room,75,1,3,2019-05-26,0.93,1,364 +32401972,Chic Village Apt!,5611846,Bradley,Manhattan,Greenwich Village,40.72847,-74.00094,Entire home/apt,200,3,0,,,1,0 +32402674,Apartment,210218219,Ruth,Bronx,Longwood,40.81694,-73.89627,Private room,60,1,8,2019-05-25,1.97,1,308 +32402856,"POSH COBBLE HILL APARTMENT, 5 MINUTES TO MANHATTAN",153565366,Hugo,Brooklyn,Carroll Gardens,40.68391,-73.99226,Entire home/apt,190,4,12,2019-07-04,3.33,3,207 +32402997,Charming private room in Brownstone apartment,237668552,Kim,Brooklyn,Cobble Hill,40.68557,-73.99829,Private room,85,2,11,2019-07-01,2.56,2,111 +32403617,NEW! Modern 1BR Apartment in Heart of NYC!,79729447,Joe,Bronx,Throgs Neck,40.8149,-73.81545,Entire home/apt,125,3,1,2019-06-09,1,1,365 +32403665,3rd floor Master Suite,22819324,Patricia,Brooklyn,Bushwick,40.69678,-73.90828,Private room,50,2,1,2019-06-25,1,2,0 +32403772,"Nolita (SoHo) - Lovely, brand new apartment",243333842,Matthias,Manhattan,Nolita,40.72186,-73.99696,Entire home/apt,172,2,8,2019-06-28,1.98,1,42 +32404550,Spacious standalone room in the heart of Astoria,212776359,Larissa,Queens,Astoria,40.75836,-73.9175,Private room,80,2,14,2019-07-05,3.26,1,51 +32404978,"Beautiful, Sunny Private Room in Harlem",18562674,Belkis,Manhattan,Harlem,40.8276,-73.94457,Private room,58,1,4,2019-06-07,0.85,2,365 +32405524,Spacious New Apartment- BROOKLYN,102692931,Brynlee & Lawrence,Brooklyn,Cypress Hills,40.68632,-73.87792,Entire home/apt,179,4,10,2019-07-03,3.37,1,17 +32406106,"PRIVATE BIG ROOM w. Queen Bed, and quiet roommates",192383231,Bryan,Bronx,Melrose,40.81894,-73.91418,Private room,49,2,2,2019-06-30,2,1,0 +32406935,Bushwick Brooklyn NY Sunny Apartment,131476075,Lakisha,Brooklyn,Bushwick,40.68757,-73.91183,Entire home/apt,166,1,11,2019-06-30,2.56,8,177 +32407324,"NEW Luxury 1BR, Floor to ceiling windows, balcony",122559140,Javicia,Brooklyn,Fort Greene,40.68912,-73.97903,Entire home/apt,133,25,1,2019-07-01,1,1,0 +32407462,15min to Times Square!! Lux apartment 3 Bedrooms,243367528,Lucca & Paula,Queens,Astoria,40.76636,-73.91366,Entire home/apt,220,1,12,2019-07-04,2.81,7,308 +32408593,15min to Times Square !! Charming Bedroom 03,243367528,Lucca & Paula,Queens,Astoria,40.76514,-73.91212,Private room,62,1,16,2019-06-21,3.38,7,308 +32408700,Astoria 1 Bedroom Apt 10 minutes from LGA Airport,23260853,Rich,Queens,Astoria,40.76889,-73.92957,Entire home/apt,125,2,4,2019-06-17,0.92,1,14 +32409168,15 minutes to Times Square!!! Red Lux bedroom,243367528,Lucca & Paula,Queens,Astoria,40.76575,-73.91366,Private room,80,1,21,2019-06-09,4.53,7,313 +32409454,cozy bedroom 01 in the heart of Astoria- Queens,243367528,Lucca & Paula,Queens,Astoria,40.76472,-73.91358,Private room,70,1,14,2019-07-07,3.26,7,313 +32409562,Sofa-bed in apartment in Astoria! Near Manhattan!,243367528,Lucca & Paula,Queens,Astoria,40.76466,-73.91274,Shared room,40,1,17,2019-06-08,3.59,7,313 +32414346,Luxury 1bd in best location (long-term rental),3048319,Carlos,Manhattan,Hell's Kitchen,40.76188,-73.99925,Entire home/apt,250,30,0,,,2,342 +32414842,A little peace of heaven in the Bronx,238959309,Angel,Bronx,Longwood,40.82095,-73.89522,Private room,100,2,0,,,1,179 +32416142,Garden Apt in fully renovated town house.,1543357,Anna,Brooklyn,Bedford-Stuyvesant,40.68461,-73.95203,Entire home/apt,179,1,18,2019-07-06,4.66,1,323 +32418651,"Bright, Modern Designer's Pad in East Village",5945833,Daniel,Manhattan,East Village,40.72888,-73.98109,Entire home/apt,240,3,7,2019-05-29,1.79,1,99 +32419542,JFK AIRPORT DELIGHT,243466968,Owen,Queens,Jamaica,40.67355,-73.7834,Private room,55,2,19,2019-06-26,4.22,1,0 +32420737,"Classic UWS doorman 3 BR. River, elevator, dogs",231704,Judith,Manhattan,Upper West Side,40.7897,-73.97909,Entire home/apt,317,30,0,,,3,358 +32420792,3 bedroom luxury Apt by TimeSquare & Grand Central,243487765,Norma,Manhattan,Murray Hill,40.75097,-73.97895,Entire home/apt,515,2,31,2019-07-05,6.84,1,163 +32420992,Large Brooklyn Room! A/C & Rooftop Manhattan Views,15336905,Michelle,Brooklyn,Bedford-Stuyvesant,40.68837,-73.9356,Private room,57,2,0,,,1,61 +32421217,"Canadian Rustic Modern Loft, Greenpoint",189114879,Whitney&Theo,Brooklyn,Greenpoint,40.72751,-73.95693,Entire home/apt,175,2,2,2019-05-27,0.56,1,103 +32422767,Big and beautiful room in big and beautiful Ap.,133030103,Amaury,Bronx,Wakefield,40.89308,-73.85076,Private room,41,7,2,2019-05-10,0.58,1,357 +32422880,Amazing huge 2BR apartment in Park Slope,157430725,Fiona,Brooklyn,Gowanus,40.66757,-73.99487,Entire home/apt,180,2,5,2019-05-10,1.72,3,0 +32423962,Cozy&Bright room in Queens♪Good subway access!,200239515,Shogo,Queens,Woodside,40.74482,-73.89256,Private room,35,30,0,,,15,61 +32424818,Kay's Cozy Getaway,243526828,Kay,Brooklyn,Canarsie,40.63979,-73.89647,Entire home/apt,200,3,3,2019-06-27,1.13,1,357 +32425720,Cozy Private room in Bedstuy Artist duplex,242544120,Benjamin,Brooklyn,Bedford-Stuyvesant,40.68226,-73.92643,Private room,60,3,1,2019-03-13,0.25,1,0 +32426202,Modern 2 Bedroom Walk in. 3 min from Subway !,9289171,Chaim,Brooklyn,Crown Heights,40.66916,-73.93182,Entire home/apt,125,2,20,2019-07-07,9.68,1,87 +32426419,Upper west/huge confortable Central Park ColumbiaU,206758177,Miguel,Manhattan,Upper West Side,40.80047,-73.96064,Entire home/apt,200,1,22,2019-05-13,4.89,3,0 +32426480,Spread Love it's the Brooklyn Way,40846857,Kaylin,Brooklyn,Crown Heights,40.67241,-73.95041,Private room,70,2,0,,,2,66 +32426943,Convenience Cozy Apartment- Hells kitchen,10120673,Alexo & JC,Manhattan,Hell's Kitchen,40.76121,-73.98813,Entire home/apt,220,5,5,2019-06-07,1.95,2,1 +32427203,Better Than Hostel semi-private artsy room,226314382,Dina,Brooklyn,Flatbush,40.65292,-73.95677,Shared room,25,1,8,2019-04-07,1.73,1,0 +32427478,Brooklyn home,243556325,Sa,Brooklyn,Bensonhurst,40.61268,-73.98857,Entire home/apt,100,30,0,,,1,312 +32428327,Huge Bedroom in Gorgeous Sunlit-Apartment in Wahi!,112430492,Justin,Manhattan,Washington Heights,40.83591,-73.94033,Private room,75,1,5,2019-06-29,1.19,1,0 +32428466,Top floor apt in luxury building - lease takeover,39427266,Alison,Queens,Rego Park,40.73288,-73.86438,Entire home/apt,108,210,0,,,1,270 +32434711,Studio Resort in Manhattan-Wyndham Midtown 45,243627109,Veronica,Manhattan,Midtown,40.75169,-73.97302,Private room,250,4,2,2019-05-21,1.15,1,76 +32437052,"Cozy room in the heart of Briarwood, Queens NY",49625765,Ilham,Queens,Briarwood,40.709,-73.81431,Private room,62,2,9,2019-06-09,2.33,1,13 +32437992,"Private, Sunny Brooklyn Bedroom in 2 BR Apartment",158739,Zahavah Cara,Brooklyn,Prospect-Lefferts Gardens,40.66311,-73.94356,Private room,65,2,2,2019-07-01,1.15,2,81 +32438036,Sunny 3 Story 5BR 5Bath Townhouse Upper East Side!,243655782,Pam And Ray,Manhattan,Upper East Side,40.77534,-73.95287,Private room,1250,5,0,,,1,116 +32439523,Manhattan at its best!,10434070,Pit,Manhattan,Morningside Heights,40.80419,-73.96603,Entire home/apt,180,5,4,2019-03-23,0.85,1,4 +32439871,Bright room near shops and subway well located,79499558,Robertina,Queens,Jackson Heights,40.75135,-73.88378,Private room,85,4,14,2019-07-02,3.72,4,50 +32441129,Beautiful - Art Filled - Sun Filled - Luxurious,1403333,Brett,Manhattan,NoHo,40.72612,-73.99494,Entire home/apt,325,2,5,2019-05-27,1.24,1,31 +32441243,Comfortable apartment in the heart of Brooklyn.,243687825,Alejandro,Brooklyn,Crown Heights,40.67527,-73.90862,Entire home/apt,104,1,28,2019-07-06,6.13,1,174 +32441428,Bright Private Bedroom in Classic Harlem Apt,17578498,Adrienne,Manhattan,East Harlem,40.79876,-73.93802,Private room,77,2,9,2019-05-28,2.50,1,0 +32441769,Cozy Room in Huge place in Prospect Heights,10557160,Alex,Brooklyn,Crown Heights,40.675,-73.9631,Private room,50,3,10,2019-06-26,2.19,1,0 +32443972,Bright/Cozy 1 Bedroom Condo in Heart of Brooklyn!,243716532,Daniel,Brooklyn,Bedford-Stuyvesant,40.69067,-73.95823,Entire home/apt,120,5,12,2019-07-07,3.87,1,137 +32444517,Sunny Spacious Parkside Pad,24979823,Jen,Brooklyn,Prospect-Lefferts Gardens,40.65504,-73.96113,Private room,70,3,0,,,1,50 +32445673,Sunny King-Sized Manhattan 1BR w/Views Awaits You!,28556029,Cheyenne,Manhattan,East Harlem,40.81213,-73.93752,Entire home/apt,95,3,16,2019-06-30,4.07,1,0 +32446089,Spacious apartment right by the Subway,233732841,Ori,Manhattan,Washington Heights,40.83495,-73.94682,Entire home/apt,150,1,0,,,2,79 +32446458,Bedroom near train station,243741999,Luz,Queens,Jackson Heights,40.74796,-73.88399,Private room,42,2,20,2019-06-25,4.48,1,80 +32446696,Modern & Cozy 1 Bedroom Apt in the heart of NYC,241545382,Frankie,Manhattan,Hell's Kitchen,40.76142,-73.98987,Entire home/apt,180,3,17,2019-06-19,3.75,1,281 +32447993,Private room in cute Greenwich Village Walk-up,50544293,Melissa,Manhattan,Greenwich Village,40.73238,-73.99954,Private room,110,1,13,2019-07-02,3.00,2,0 +32448627,Lola's Casa,243766178,Lola,Bronx,Westchester Square,40.83619,-73.84916,Private room,52,4,1,2019-02-22,0.22,1,0 +32449378,Shared Apartment - 1 Bedroom,12198291,Nick,Manhattan,Chelsea,40.74458,-74.00644,Shared room,180,1,0,,,1,0 +32450257,Quiet Upper Manhattan Apt - Whole Apt Not Shared!!,1197307,Evie,Manhattan,Washington Heights,40.85326,-73.93813,Entire home/apt,80,3,0,,,1,12 +32450788,Artistic Modern Sanctuary -- Spacious & Private,243787623,Howard,Brooklyn,Bushwick,40.6994,-73.92186,Entire home/apt,90,7,10,2019-06-23,2.26,1,66 +32450910,Large Private Room near Central Park with Key,243026919,Kiara,Manhattan,East Harlem,40.80584,-73.94066,Private room,79,1,16,2019-07-01,7.38,2,93 +32454559,Lovely 1 BDRM at Upper East side prime location,55202404,Regina,Manhattan,Upper East Side,40.77914,-73.95049,Entire home/apt,100,30,1,2019-05-02,0.44,1,50 +32457051,94TH STREET STUDIO SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78385,-73.94828,Private room,420,2,0,,,6,351 +32458305,94TH STREET BIG 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78213,-73.94839,Private room,500,2,0,,,6,351 +32459287,Gorgeous Sun Filled Creative Loft! Clean & Unique!,1575044,Dana,Brooklyn,Bushwick,40.70176,-73.92684,Entire home/apt,135,3,7,2019-06-16,1.96,1,117 +32460177,Cozy and Hip Room in Brooklyn close to Subway (D),238119405,Julia,Brooklyn,Bushwick,40.6835,-73.9074,Private room,51,1,11,2019-06-21,2.41,5,166 +32461960,Riverdale Pad,163737392,K,Bronx,Fieldston,40.896,-73.89964,Private room,64,1,11,2019-06-27,3.47,2,358 +32463145,BETTER SIDE OF BED-STUY,243875619,David,Brooklyn,Bedford-Stuyvesant,40.68834,-73.9444,Private room,48,1,22,2019-07-07,5.37,2,257 +32463707,Not too late! Great place in Chelsea,58483,Deni,Manhattan,West Village,40.73988,-74.00356,Entire home/apt,500,2,0,,,1,0 +32463948,Amazing East Village Loft,238779678,Dustin,Manhattan,East Village,40.72704,-73.98916,Private room,55,30,0,,,9,365 +32464225,Stunning East Village Loft,238779678,Dustin,Manhattan,East Village,40.72586,-73.98874,Private room,55,30,0,,,9,332 +32464368,"Sunny, Massive East Village Loft",238779678,Dustin,Manhattan,East Village,40.72625,-73.98884,Private room,55,30,0,,,9,340 +32465145,Sonder | The Nash | Design Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74697,-73.97537,Entire home/apt,282,2,7,2019-05-17,1.93,327,125 +32466156,Sonder | The Nash | Smart 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7472,-73.97418,Entire home/apt,192,29,0,,,327,363 +32466179,Sonder | The Nash | Classic 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74898,-73.97534,Entire home/apt,202,29,0,,,327,365 +32466246,Sonder | The Nash | Cozy Studio + Fitness Room,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74927,-73.9739,Entire home/apt,169,29,2,2019-04-30,0.60,327,332 +32466254,Sonder | The Nash | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74706,-73.97594,Entire home/apt,200,29,0,,,327,311 +32466398,Sonder | The Nash | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74864,-73.97407,Entire home/apt,169,29,1,2019-05-08,0.48,327,220 +32466401,Sonder | The Nash | Modern Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74915,-73.97557,Entire home/apt,172,29,2,2019-05-30,0.75,327,338 +32466450,Union Square Industrial Loft Apartment - 1 Bedroom,182709,S,Manhattan,East Village,40.73147,-73.98825,Entire home/apt,199,1,8,2019-07-03,6.49,1,65 +32466500,Sonder | The Nash | Relaxed 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74781,-73.97601,Entire home/apt,202,29,1,2019-05-06,0.47,327,338 +32466675,Beautiful APT. mins from JFK/ mins from the city!,64106093,Jorge,Brooklyn,Cypress Hills,40.67715,-73.86672,Entire home/apt,150,2,11,2019-07-07,3.93,1,217 +32466778,Sonder | The Nash | Warm Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74725,-73.97404,Entire home/apt,160,29,0,,,327,318 +32467087,Sonder | The Nash | Lively 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74918,-73.97379,Entire home/apt,204,29,0,,,327,158 +32467835,SPACIOUS & COMFY 3 BDROM/2 BATH APT CLOSE 2 SUBWAY,216419980,Billie,Manhattan,Harlem,40.8242,-73.95106,Entire home/apt,112,30,0,,,1,365 +32468788,Huge 1-bedroom available from April through July,33783958,Paul,Brooklyn,Prospect Heights,40.68106,-73.97304,Entire home/apt,150,4,1,2019-04-27,0.41,1,63 +32469151,"Private patio, sunlight filled, gorgeous studio!",243931948,Alli,Brooklyn,Williamsburg,40.71765,-73.96254,Entire home/apt,179,2,2,2019-05-26,0.47,1,2 +32469620,Cute room with private rooftop near Central Park,39079982,Mansi,Manhattan,East Harlem,40.7908,-73.94491,Private room,99,1,6,2019-04-25,1.49,1,0 +32470327,Chic & Sunny Prospect Park 1-Bedroom,243944082,Mani,Brooklyn,Flatbush,40.65215,-73.9647,Entire home/apt,110,13,0,,,1,8 +32470732,New Renovate in 2019 & Everything is New,19303369,Hiroki,Manhattan,Inwood,40.8647,-73.92353,Private room,29,30,0,,,37,1 +32471373,Cozy apartment on the Upper East Side,130827164,Julia,Manhattan,Upper East Side,40.7718,-73.95556,Private room,150,2,5,2019-06-21,1.40,2,345 +32472023,comfortable Place to live,209376540,Jing,Queens,College Point,40.76813,-73.84542,Entire home/apt,60,30,0,,,1,121 +32472366,Cozy quiet room in basement apt with mirrors & tv!,109516888,Becky,Manhattan,Morningside Heights,40.81052,-73.95973,Private room,175,6,1,2019-03-11,0.25,1,252 +32472692,Sunny bedroom in Soho/Greenwich village,1458110,Molly,Manhattan,Greenwich Village,40.72835,-74.00053,Private room,78,4,0,,,2,13 +32474426,Private Room in Heart of Brooklyn,35004442,Perrian,Brooklyn,Bedford-Stuyvesant,40.697,-73.93788,Private room,96,2,2,2019-06-21,1.82,1,103 +32474739,Sunny Modern Lux Private House with Parking,12593328,Jeromy,Brooklyn,East Flatbush,40.64577,-73.93118,Entire home/apt,74,3,11,2019-06-14,2.84,3,86 +32475687,Two bedroom apartment close to subway,230205171,Lian,Bronx,Schuylerville,40.84321,-73.83129,Entire home/apt,100,2,22,2019-07-05,4.93,1,3 +32476606,Recently Renovated & Furnished Apt- Room available,244008821,Sonia,Manhattan,West Village,40.7354,-74.00208,Private room,2850,100,0,,,1,270 +32476906,FULLY RENOVATED DESIGN APART IN THE HEART OF NYC,25214775,Alex,Manhattan,East Village,40.72774,-73.98857,Entire home/apt,240,2,0,,,1,9 +32477130,Sunny Artist's Loft,38786890,Sancar,Brooklyn,Clinton Hill,40.69151,-73.96059,Entire home/apt,120,3,2,2019-05-03,0.82,1,113 +32477522,Brooklyn Hibiscus,126176275,Audrey,Brooklyn,East Flatbush,40.63707,-73.93148,Private room,35,4,10,2019-06-03,2.59,4,42 +32479283,Large 1 bdrm free while musician owner is on tour,244008816,David,Manhattan,Upper West Side,40.80134,-73.96897,Entire home/apt,120,1,19,2019-06-08,4.45,1,65 +32483378,LUXURY STUDIO ON WEST 50TH-DOORMAN/GYM/LAUNDRY,200380610,Pranjal,Manhattan,Hell's Kitchen,40.76259,-73.98667,Entire home/apt,190,30,0,,,65,365 +32484743,Great Space w/ backyard for Small Events,180008916,Endazsia,Brooklyn,Bedford-Stuyvesant,40.68116,-73.94738,Entire home/apt,400,1,5,2019-05-19,1.23,2,5 +32484875,1BEDROOM ON EAST 86th ST~PRIVATE BALCONY/GYM/POOL,200380610,Pranjal,Manhattan,Upper East Side,40.77903,-73.95071,Entire home/apt,210,30,0,,,65,364 +32485922,LUXURY 1BR ON W 48TH ST-MIDTOWN-POOL/GYM/DOORMAN,200380610,Pranjal,Manhattan,Theater District,40.76193,-73.98573,Entire home/apt,310,30,0,,,65,338 +32486433,"A large, lovely room with plants.",9979861,Tessa,Brooklyn,Bedford-Stuyvesant,40.69617,-73.93763,Private room,66,1,0,,,1,0 +32487006,JFK LUXURY APARTMENT #A,244082709,Jfk,Queens,Springfield Gardens,40.65795,-73.76996,Entire home/apt,175,1,15,2019-07-07,3.31,7,68 +32487198,Brooklyn Sanctuary: Sunny Studio in Carrol Gardens,6663384,Christine,Brooklyn,Columbia St,40.68502,-74.0051,Entire home/apt,100,2,4,2019-04-21,0.93,1,0 +32490805,Spacious Apartment Near Central Park (Manhattan),151460365,King-Lyndon,Manhattan,East Harlem,40.7984,-73.94267,Entire home/apt,100,2,16,2019-06-26,3.58,1,8 +32492270,JFK LUXURY BEDROOM # 5,244082709,Jfk,Queens,Springfield Gardens,40.66019,-73.77157,Private room,75,1,29,2019-06-16,6.35,7,163 +32492359,JFK LUXURY APARTMENT #B,244082709,Jfk,Queens,Springfield Gardens,40.65933,-73.77125,Entire home/apt,175,1,17,2019-07-03,3.75,7,160 +32492910,JFK LUXURY BEDROOM # 2,244082709,Jfk,Queens,Springfield Gardens,40.65973,-73.77125,Private room,55,1,17,2019-06-25,3.92,7,161 +32493112,JFK LUXURY BEDROOM # 1,244082709,Jfk,Queens,Springfield Gardens,40.65953,-73.76923,Private room,75,1,8,2019-06-20,1.86,7,179 +32493281,Cozy Bed in Musician housing (4/20 friendly),136943521,Shemar,Brooklyn,Bushwick,40.69501,-73.91125,Shared room,30,1,11,2019-06-16,2.34,1,157 +32493320,Charming Brooklyn studio,244135864,Alanna,Brooklyn,Bushwick,40.70305,-73.93127,Entire home/apt,69,2,4,2019-02-20,0.86,1,0 +32493396,JFK LUXURY BEDROOM # 3,244082709,Jfk,Queens,Springfield Gardens,40.6597,-73.76993,Private room,65,1,14,2019-06-23,3.23,7,177 +32493667,JFK LUXURY BEDROOM # 4,244082709,Jfk,Queens,Springfield Gardens,40.65994,-73.77069,Private room,85,1,14,2019-07-05,3.89,7,163 +32494256,Newly renovated 2 Bedroom Apartment,12674973,Victoria,Brooklyn,Clinton Hill,40.68771,-73.96304,Entire home/apt,143,2,22,2019-06-18,5.00,1,81 +32494991,Brand New 2 bed 1 bath in the UES #6129,113805886,Yaacov,Manhattan,Upper East Side,40.77883,-73.9505,Entire home/apt,206,30,0,,,33,217 +32495009,Spacious 3 bedroom apartment in WILLIAMSBURG,235115405,New York Italians,Brooklyn,Williamsburg,40.7077,-73.95332,Private room,65,2,13,2019-07-05,3.33,2,9 +32495242,Quiet parlour floor apartment on tree-lined street,33299125,Natalia,Brooklyn,Bedford-Stuyvesant,40.68199,-73.95131,Entire home/apt,150,15,1,2019-06-30,1,1,146 +32496573,1BDR cozyclean apt great location,62305875,Scarlett,Brooklyn,Williamsburg,40.71304,-73.96729,Entire home/apt,107,30,1,2019-05-15,0.55,1,53 +32496993,Lower East Side Pad !,154465734,Wayne,Manhattan,Lower East Side,40.71936,-73.98402,Entire home/apt,500,30,0,,,1,81 +32499059,"Amazing , Clean, Cozy in Upper East Side Manhattan",28917776,Tito,Manhattan,Upper East Side,40.78139,-73.95379,Private room,87,2,2,2019-07-03,2,1,76 +32499495,Carroll Gardens Charm with Magical Manhattan Views,67274316,Linsey,Brooklyn,Columbia St,40.68418,-74.00313,Entire home/apt,175,2,30,2019-06-28,7.14,1,73 +32499766,Large sunny private room with queen size bed.,34943243,Maya,Queens,Astoria,40.76273,-73.90869,Private room,48,2,1,2019-02-20,0.22,1,0 +32500481,"BRIGHT, clean, charming 1-BR in Prospect Heights",48328095,Maisie,Brooklyn,Prospect Heights,40.67651,-73.96681,Entire home/apt,82,6,5,2019-05-27,1.25,1,42 +32501003,"Clean private room near Central Park, NYC",14804867,Edna,Manhattan,Upper East Side,40.76965,-73.95326,Private room,78,3,11,2019-06-13,2.60,1,116 +32501542,New Apartment Near Prospect Park and Major Subway!,63116168,Alex,Brooklyn,Flatbush,40.65027,-73.9608,Entire home/apt,105,3,1,2019-03-29,0.29,1,38 +32501807,MANHATTAN Upper-West Luxury Home for 10 people,71276635,Joe,Manhattan,Washington Heights,40.83528,-73.94179,Entire home/apt,285,1,17,2019-06-26,4.08,5,261 +32501820,Queen size bed private room for 2,191011879,Conor,Manhattan,Midtown,40.75449,-73.9677,Private room,250,1,0,,,2,268 +32502180,1-Bedroom Newly Renovated Cozy Apartment,244217480,Vlad,Staten Island,Arden Heights,40.54857,-74.17628,Entire home/apt,83,30,3,2019-06-28,0.90,1,316 +32503099,Boss Room in Deluxe Pad,3104336,Amy,Brooklyn,Bushwick,40.70094,-73.93013,Private room,35,90,0,,,1,326 +32503167,Beautiful apt in Nolita - your perfect stay,244182582,Milena,Manhattan,Lower East Side,40.72088,-73.99312,Private room,86,30,0,,,4,310 +32503384,Smaller room in a Gorgeous HUGE apt in Nolita,244182582,Milena,Manhattan,Lower East Side,40.71933,-73.99431,Private room,76,30,0,,,4,339 +32503407,Union SQ/Cozy & Quiet Room ! 5mins to Times SQ,145518739,Tommy,Manhattan,Gramercy,40.73572,-73.98736,Private room,150,2,10,2019-06-09,2.54,3,334 +32503539,Modern Luxury Private Rm. W Rooftop Bushwick,244231812,Joshua,Brooklyn,Bushwick,40.70084,-73.93033,Private room,80,1,0,,,1,341 +32506530,VERY LARGE NEW STUDIO+LARGE SLEEPING LOFT+DOORMAN,243614369,Ady,Manhattan,Midtown,40.74757,-73.98564,Entire home/apt,145,3,7,2019-07-05,2.88,1,36 +32511315,Summer Rental on Park Ave (1 Month minimum),850498,Aaron,Manhattan,Upper East Side,40.78028,-73.95528,Entire home/apt,149,30,0,,,1,62 +32514722,"Relaxed home, middle of Lower East! Side!",165725362,Janey,Manhattan,Chinatown,40.71358,-73.99091,Entire home/apt,150,30,7,2019-06-03,1.84,2,88 +32516998,Skylight spacious Bedroom,4107600,Valentina,Brooklyn,Bushwick,40.7041,-73.91688,Private room,55,2,5,2019-07-01,4.69,3,317 +32517517,Bright room with Open Terrace 3min walk to Subway,204704622,Momoyo,Queens,Elmhurst,40.74063,-73.87732,Private room,33,29,1,2019-06-16,1,7,34 +32517547,"Private Room In Quiet & Charming 3 Br, 1.5 Ba",244197139,Brooke,Manhattan,Nolita,40.72004,-73.99486,Private room,62,30,0,,,5,249 +32518068,Super cute 1 bedroom apartment close to TimeSquare,7441368,Chris And Jamie,Manhattan,Hell's Kitchen,40.7548,-73.9948,Entire home/apt,175,1,27,2019-07-01,6.59,2,133 +32518218,Upper East Side - Posh NYC Experience,165860505,Rosario,Manhattan,Upper East Side,40.77705,-73.96038,Private room,90,1,4,2019-04-28,0.88,1,0 +32518771,Sunny and cozy studio 30 min from Manhattan,1938828,Shay,Brooklyn,East Flatbush,40.64882,-73.94537,Entire home/apt,85,6,12,2019-07-05,3.33,3,215 +32518869,Eclectic Private BR in Ridgewood Woodbine 1L-1,244171850,Jocelyn,Queens,Ridgewood,40.70083,-73.90802,Private room,47,35,0,,,10,331 +32518954,"Private Room In Remodeled SoHo 3 Br, 1 Ba",244197139,Brooke,Manhattan,Nolita,40.72158,-73.9941,Private room,62,30,0,,,5,188 +32519021,Unique Private BR in Ridgewood Woodbine 1L-2,244171850,Jocelyn,Queens,Ridgewood,40.70296,-73.90602,Private room,47,35,0,,,10,365 +32519119,Sunny Private BR in Ridgewood Woodbine 1L-3,244171850,Jocelyn,Queens,Ridgewood,40.70075,-73.90741,Private room,47,45,0,,,10,330 +32519790,The Fun Home,26178450,Cory,Manhattan,Hell's Kitchen,40.7548,-73.99818,Private room,90,2,10,2019-06-30,2.34,1,14 +32520381,Newly renovated 2BR apt in brownstone Brooklyn,33159631,Emmanuel,Brooklyn,Carroll Gardens,40.67797,-73.99969,Entire home/apt,199,2,17,2019-07-03,5.05,1,31 +32520602,"CLEAN, SAFE, AFFORDABLE",214863971,Elenora And Jason,Brooklyn,Flatlands,40.62063,-73.9244,Private room,40,2,10,2019-07-06,2.34,2,43 +32521604,Peaceful and private room in heart of Ft Greene,118566355,Luis & Tiana,Brooklyn,Fort Greene,40.68875,-73.9761,Private room,90,2,1,2019-07-02,1,1,83 +32522010,Cozy Renovated 2 BR 2 Bathroom Brooklyn/Queens NYC,51810229,Moaz,Queens,Ridgewood,40.69903,-73.90961,Entire home/apt,150,28,0,,,1,197 +32523519,The Manhattan View,173009,Scott And Bea,Staten Island,Stapleton,40.63285,-74.0778,Entire home/apt,125,2,10,2019-07-07,3.19,1,252 +32523945,Walk to Subway★15min to Manhattan★Min. to LGA/JFK,235252386,Smart Accommodations,Queens,Ditmars Steinway,40.77097,-73.91107,Entire home/apt,350,3,3,2019-07-05,0.99,1,97 +32526623,"Midtown, NYC. Near Central Park Times Square MoMa",139033454,Dardana,Manhattan,Hell's Kitchen,40.7645,-73.98862,Private room,70,2,1,2019-06-10,1,1,3 +32526864,"Private room for a single, couple or small family",88367005,Karla,Brooklyn,Bushwick,40.68949,-73.90588,Private room,36,1,1,2019-03-08,0.24,1,0 +32527273,Greenwich Village Studio Apartment,178793639,Alexandra,Manhattan,Greenwich Village,40.72835,-74.00159,Entire home/apt,175,3,0,,,1,157 +32527460,Bright bdr in Renovated Building (15min from City),224340103,Vincent,Brooklyn,Williamsburg,40.70927,-73.94684,Private room,75,1,2,2019-02-24,0.44,2,151 +32527598,Castle Nolita,138492193,Antonio,Manhattan,Little Italy,40.71907,-73.99685,Entire home/apt,160,1,25,2019-06-21,5.47,1,29 +32527742,Chic Bed-Stuy Hideaway w/ Large Patio,17535511,Celina,Brooklyn,Bedford-Stuyvesant,40.69573,-73.95076,Entire home/apt,150,2,0,,,1,0 +32528224,Luxury River Vue w/ Private Outdoor Terrace,3910399,Stephan And Leo,Manhattan,Hell's Kitchen,40.76211,-73.99873,Entire home/apt,295,3,2,2019-05-16,1.00,2,39 +32528660,Deluxe Apartment in The Sky,3910399,Stephan And Leo,Manhattan,Hell's Kitchen,40.76063,-73.99863,Entire home/apt,295,3,2,2019-05-25,0.52,2,2 +32528831,Private Rooftop UWS Cozy Apartment,244438661,Bel,Manhattan,Upper West Side,40.7966,-73.97428,Private room,125,3,1,2019-04-14,0.35,2,0 +32529302,Manhattan apartment | Perfect SOHO location,76484622,Felix,Manhattan,Greenwich Village,40.72824,-74.00259,Entire home/apt,215,4,2,2019-06-22,0.53,1,148 +32530603,Lovely Spacious Apt close to Manhattan & Airports,244453286,Alba,Queens,Sunnyside,40.73643,-73.91886,Entire home/apt,115,2,16,2019-06-18,4.36,2,34 +32531001,Luxurious Newly Renovated Apartment,41658748,Ben,Queens,Ditmars Steinway,40.77129,-73.91226,Entire home/apt,175,2,16,2019-06-09,4.03,3,331 +32531170,Eldridge Refined,43811211,Jon,Manhattan,Chinatown,40.71612,-73.99273,Entire home/apt,299,2,5,2019-06-15,2.05,1,324 +32531179,Wonderful 1 Bedroom Apartment (Washington Sq Park),45499169,Michael,Manhattan,Greenwich Village,40.72927,-74.00003,Entire home/apt,146,30,1,2019-03-02,0.23,1,89 +32531409,"Luxury home, 2700 sq ft, 20 m to airports/City/LI!",168814318,Misha,Queens,Jamaica Estates,40.71894,-73.78188,Entire home/apt,250,2,15,2019-06-30,4.46,1,94 +32533738,Suite Donna Dina - free Street Parking+wifi,219738858,Joe,Manhattan,East Village,40.72956,-73.98113,Entire home/apt,161,30,18,2019-06-21,4.22,5,204 +32540677,Spacious studio with outdoor deck in Hells Kitchen,230165497,Lara,Manhattan,Midtown,40.76607,-73.9826,Entire home/apt,140,30,1,2019-04-15,0.35,4,327 +32541300,Bed-study Deluxe,148102066,Beauty,Brooklyn,Bedford-Stuyvesant,40.69278,-73.94372,Private room,55,1,33,2019-07-04,7.17,4,298 +32541389,LUXURY 2 BR ON E 18th ST IN GRAMERCY PARK-DOORMAN,200380610,Pranjal,Manhattan,Gramercy,40.73512,-73.98614,Entire home/apt,235,30,0,,,65,242 +32541475,"Pied-a-Terre in NYC - Nomad, Midtown",97172649,Gigi,Manhattan,Murray Hill,40.74974,-73.98094,Private room,200,5,0,,,1,263 +32541965,Cozy artists haven,168495229,Daisy,Brooklyn,Crown Heights,40.66661,-73.95367,Private room,48,5,2,2019-04-08,0.48,1,15 +32542856,Newly Remodeled Private Room in SoHo,244197139,Brooke,Manhattan,Nolita,40.72033,-73.99527,Private room,66,30,1,2019-04-16,0.36,5,125 +32542979,Airy Private Bedroom in Ridgewood Woodbine 1R-1,244171850,Jocelyn,Queens,Ridgewood,40.70246,-73.90604,Private room,47,30,0,,,10,340 +32543311,"Incredible, Sunny New York Apartment",238779678,Dustin,Manhattan,East Village,40.72621,-73.99028,Private room,59,30,0,,,9,310 +32543781,Private Room With Lock Available In SoHo :),244197139,Brooke,Manhattan,Nolita,40.72013,-73.99524,Private room,59,30,0,,,5,125 +32544013,Luxury Living in Bumpin Bushwick,489448,Tina,Brooklyn,Bushwick,40.6994,-73.92607,Private room,70,5,6,2019-05-28,1.57,2,99 +32544460,Sleek Private Bedroom in Ridgewood Woodbine 1R-2,244171850,Jocelyn,Queens,Ridgewood,40.70285,-73.90798,Private room,47,30,0,,,10,290 +32544579,Calming Private BR in Ridgewood Woodbine 1R-3,244171850,Jocelyn,Queens,Ridgewood,40.70124,-73.90774,Private room,47,30,0,,,10,323 +32544596,Brooklyn Awesomely Huge Apartment - 2,9864136,Anthony,Brooklyn,Bushwick,40.68491,-73.91324,Entire home/apt,85,30,1,2019-03-10,0.25,26,312 +32544667,Classic 1 Bed walking distance to Central Park.,244557149,Vincent,Manhattan,Upper East Side,40.76226,-73.95808,Entire home/apt,300,1,8,2019-05-23,1.88,1,168 +32545827,Garden apt. opposite historic Fort Greene Park,129581090,Amy,Brooklyn,Fort Greene,40.68842,-73.97349,Entire home/apt,160,2,12,2019-06-29,3.13,1,71 +32545866,"Rest and relaxation, free swimming pool at bay st",244544373,Valerie,Staten Island,St. George,40.63763,-74.08268,Private room,100,1,0,,,2,365 +32546286,LOVELY SUITE IN A HISTORIC BROWNSTONE NEAR SUBWAY.,159587137,Wene,Brooklyn,Clinton Hill,40.68995,-73.9675,Entire home/apt,220,3,0,,,2,159 +32546490,Dandy Budget Private Room,220149091,Peter,Brooklyn,Bedford-Stuyvesant,40.69299,-73.94837,Private room,58,2,11,2019-06-16,2.70,4,365 +32546497,Spacious One Bedroom near Lower East Side!,244573712,Daniel,Manhattan,Chinatown,40.71411,-73.99375,Entire home/apt,145,2,3,2019-03-31,0.79,1,0 +32546587,"Private Room In SoHo, Modern Building",244197139,Brooke,Manhattan,Nolita,40.72106,-73.99501,Private room,67,30,0,,,5,137 +32546879,Spacious Room in Astoria!,99791908,Lera,Queens,Astoria,40.75756,-73.91931,Private room,70,5,1,2019-03-28,0.29,2,0 +32547350,"Quiet & Elegant, 30 mins to midtown Manhattan!",56403037,Jane,Queens,Woodhaven,40.68899,-73.85001,Shared room,35,1,11,2019-06-22,4.52,3,53 +32548384,Anny's Place,244581878,Ana,Manhattan,Washington Heights,40.85019,-73.93004,Entire home/apt,50,2,16,2019-06-29,4.25,1,51 +32549039,Penthouse full floor 4 bedroom apartment,13196439,Cylia,Manhattan,Financial District,40.70436,-74.00927,Entire home/apt,500,5,16,2019-06-22,3.78,1,298 +32549155,BK Home Away From Home,244596528,Mary Ann,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93425,Entire home/apt,126,1,11,2019-07-02,5.16,1,52 +32549231,温馨的家,239139334,Fang,Queens,Bayside,40.76898,-73.78855,Private room,48,1,7,2019-06-21,3.18,3,244 +32549565,Sunny Chelsea Loft,10414780,Matan,Manhattan,Chelsea,40.74149,-73.99701,Entire home/apt,139,3,4,2019-05-28,1.17,1,58 +32549617,Your home away from home.,244602318,Stanley,Manhattan,Chelsea,40.75114,-73.99831,Entire home/apt,123,30,0,,,1,341 +32550619,Cozy Upper West Side Spacious Studio,51268465,Sebastian,Manhattan,Upper West Side,40.79467,-73.96923,Entire home/apt,135,1,1,2019-03-30,0.30,1,0 +32552274,Big room in a Giant Loft !,244182582,Milena,Manhattan,Lower East Side,40.72064,-73.99305,Private room,73,30,0,,,4,364 +32552560,East Village Super Cute 3 bdr / sleeps up to 8,33214549,Alexandre,Manhattan,East Village,40.72734,-73.98389,Entire home/apt,369,1,10,2019-06-26,3.75,5,97 +32552611,Cozy Private Bedroom in Spacious Manhattan Apt,47518086,Timothy,Manhattan,East Harlem,40.81393,-73.93632,Private room,35,1,4,2019-06-14,1.11,1,2 +32553129,Cozy Bushwick Nook,244635438,Adila,Brooklyn,Bushwick,40.7042,-73.91693,Private room,39,1,15,2019-06-21,3.36,1,13 +32553235,Prime Union Square Location Private Room Fireplace,9630772,Nada,Manhattan,Gramercy,40.73621,-73.98729,Private room,120,4,0,,,2,12 +32554699,1718双个房,119692067,Qiulan,Brooklyn,Sunset Park,40.64333,-74.00227,Private room,50,1,10,2019-06-20,3.16,3,71 +32554746,"Clean, Safe, east village room!",112439306,빈나,Manhattan,Stuyvesant Town,40.7318,-73.97999,Private room,125,4,1,2019-03-06,0.24,1,0 +32554837,1718三人房,119692067,Qiulan,Brooklyn,Sunset Park,40.64486,-74.00255,Private room,60,1,7,2019-06-23,3.13,3,84 +32554867,Luxury Studio Apartment near Central Park,53750726,Luis,Manhattan,Hell's Kitchen,40.76711,-73.98732,Entire home/apt,200,3,5,2019-07-06,1.21,1,13 +32555976,Cozy Bedroom with Private Bath & 2 Cats in Bedstuy,9212686,Kelly,Brooklyn,Bedford-Stuyvesant,40.68991,-73.93695,Private room,55,2,1,2019-03-19,0.27,1,0 +32557722,Perfect Greenwich village studio apt,244671957,Sofia,Manhattan,Greenwich Village,40.73251,-73.99602,Entire home/apt,130,80,0,,,1,214 +32558916,Beautiful Brooklyn Brownstone Garden Apartment,244473721,Pam,Brooklyn,Bedford-Stuyvesant,40.68411,-73.94616,Entire home/apt,200,2,4,2019-06-03,1.38,1,344 +32559129,Charming West Village studio in Landmarked Mansion,127667513,Michelle,Manhattan,Greenwich Village,40.72781,-74.00039,Entire home/apt,185,30,0,,,1,342 +32560880,94TH STREET BIGGER 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78187,-73.94699,Private room,500,2,0,,,6,351 +32561334,94TH STREET BIGGEST 1BR SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78216,-73.94841,Private room,540,2,0,,,6,351 +32561729,Top floor apartment with Manhattan view,65284316,Fabiola,Queens,Long Island City,40.75541,-73.93647,Entire home/apt,120,1,3,2019-04-04,0.72,1,0 +32562943,94TH STREET 2BR-2BA SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78266,-73.94673,Private room,700,2,0,,,6,341 +32563657,94TH STREET 3BR-3BA SUITE WITH DOORMAN-GYM,123745971,Especial,Manhattan,Upper East Side,40.78399,-73.94725,Private room,990,2,1,2019-06-09,1,6,343 +32564016,Huge 1 bedroom apartment with private deck!,224666178,Jacqueline,Brooklyn,Williamsburg,40.71263,-73.9581,Entire home/apt,150,2,6,2019-06-09,1.50,1,2 +32564397,UES Prime Location 2 bed Doorman Gym laundry 5179,16098958,Jeremy & Laura,Manhattan,Upper East Side,40.77671,-73.95516,Entire home/apt,280,30,0,,,96,332 +32564618,Furnished apartment United nation! Doorman 5243,16098958,Jeremy & Laura,Manhattan,Midtown,40.75619,-73.9654,Entire home/apt,135,30,0,,,96,306 +32566536,SUBURBAN VIBES ONLY 25 MINS FROM BARCLAYS CENTER !,244733416,Jacqueline,Brooklyn,Canarsie,40.63626,-73.90696,Entire home/apt,69,1,31,2019-07-06,7.50,1,282 +32567344,"Bright and lovely flat in Williamsburg, Brooklyn",39329872,Maxime,Brooklyn,Williamsburg,40.70857,-73.95258,Entire home/apt,110,6,3,2019-06-21,0.98,1,25 +32568037,Huge APT with private rooftop in Williamsburg,57746555,Diego,Brooklyn,Williamsburg,40.71015,-73.96019,Entire home/apt,180,1,0,,,1,0 +32568130,Sonder | The Nash | Eclectic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74868,-73.97563,Entire home/apt,257,2,8,2019-06-23,2.03,327,108 +32568567,Sonder | The Nash | Contemporary Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74862,-73.97531,Entire home/apt,243,2,4,2019-06-22,1.35,327,140 +32569486,靓房,239139334,Fang,Queens,Bayside,40.76868,-73.78871,Private room,39,1,16,2019-07-04,3.61,3,142 +32569915,Sun-Filled Cozy Bedroom steps to Fort Greene Park,196613633,Zach,Brooklyn,Fort Greene,40.69354,-73.97172,Private room,95,5,0,,,2,0 +32570179,"Warm, Sunny Bedroom in Harlem Apartment",5409243,Katie Rose,Manhattan,Harlem,40.82931,-73.94183,Private room,65,2,6,2019-07-06,1.59,2,1 +32570888,Large apartment - Brooklyn Charm,66813379,Reuven,Brooklyn,Crown Heights,40.66878,-73.93938,Entire home/apt,165,2,11,2019-07-01,2.75,2,269 +32570893,Stay in a NYC Historic Site!,13733669,Madeleine,Manhattan,Harlem,40.81134,-73.94097,Private room,59,4,7,2019-04-16,1.59,1,0 +32571267,Great share 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6785,-73.91274,Shared room,35,1,2,2019-06-04,0.75,17,49 +32572058,Private 2C Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.75978,-73.99183,Private room,115,1,16,2019-06-14,3.75,12,217 +32572192,Cali-Retro Duplex w/ HUGE private backyard!,6701890,Jenny,Brooklyn,Greenpoint,40.73297,-73.95466,Entire home/apt,350,2,0,,,2,76 +32572203,Private 2D Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.7616,-73.99042,Private room,105,1,14,2019-06-16,3.62,12,241 +32572929,SUMMER SUBLET for 2 Months in Brooklyn,73049484,Kumru,Brooklyn,Crown Heights,40.66779,-73.92875,Entire home/apt,100,44,0,,,2,53 +32573252,Nicely Furnished 1.5BR in LIC For Long Term Stay,2115395,Amit,Queens,Long Island City,40.74479,-73.94997,Entire home/apt,107,31,2,2019-06-22,0.90,1,133 +32573359,Sonder | The Nash | Central 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74921,-73.97395,Entire home/apt,308,2,6,2019-06-09,1.55,327,81 +32574380,Lovely One bedroom apartment 20 min to Manhattan,244804004,C,Brooklyn,Greenpoint,40.73738,-73.95679,Entire home/apt,99,4,10,2019-06-23,2.36,2,19 +32574801,Home away from home.,244808289,Ann,Queens,Jamaica,40.67931,-73.80149,Private room,50,3,0,,,1,74 +32575481,Private room in 2 bedroom apartment,81534306,Nourdine,Manhattan,Washington Heights,40.8524,-73.94214,Private room,70,1,0,,,2,0 +32575528,"Woodside RM close to 7 express , airport & Midtown",137358866,Kazuya,Queens,Woodside,40.74228,-73.90049,Private room,43,30,0,,,103,215 +32575757,"2nd floor, Room# 1 ( 8' x 10')",244817841,Aminul,Brooklyn,East New York,40.66954,-73.89539,Private room,35,7,4,2019-06-27,1.19,13,260 +32576739,The Big Apple Paradise. 10 minutes from JFK,168704622,Patrick,Queens,Rosedale,40.66294,-73.73292,Entire home/apt,300,2,4,2019-04-21,0.97,1,364 +32577223,Old,48194192,Allen,Brooklyn,Clinton Hill,40.69302,-73.96475,Entire home/apt,395,4,2,2019-05-05,0.64,4,0 +32581701,"Big room, sleeps 4 with private bathroom.",65407018,Harmony,Brooklyn,Greenpoint,40.72312,-73.93608,Private room,105,1,3,2019-06-24,2.43,5,349 +32584290,spacious bedroom queen bed on upper east side,131298733,Jen,Manhattan,Upper East Side,40.78417,-73.94902,Private room,80,2,1,2019-03-31,0.30,1,0 +32586373,The Heart of Williamsburg Brooklyn,244906527,Julia,Brooklyn,Williamsburg,40.71586,-73.9391,Entire home/apt,120,2,15,2019-06-22,3.52,1,292 +32587410,Perfect Location - ASTORIA,46081317,Fabiana,Queens,Astoria,40.75547,-73.91539,Private room,48,20,2,2019-05-12,0.91,3,0 +32587861,Bright Room in Central BK!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.6837,-73.95655,Private room,51,3,5,2019-06-25,1.52,3,0 +32587884,Soho One Bedroom Apartment,244920495,Claudia,Manhattan,Little Italy,40.71919,-73.99654,Entire home/apt,120,60,1,2019-04-24,0.39,1,37 +32587918,One Bedroom Apartment in Central of Midtown.,211549023,Studioplus,Manhattan,Midtown,40.74766,-73.9868,Entire home/apt,260,2,2,2019-05-29,1.13,13,259 +32587983,Harlem Sweets 3,187419882,Terrence & Skye,Manhattan,Harlem,40.82899,-73.94185,Private room,82,2,4,2019-06-03,0.94,3,90 +32588761,Private Room on Brighton Beach,27295569,Michael,Brooklyn,Brighton Beach,40.5767,-73.96,Private room,45,1,5,2019-06-23,1.18,2,351 +32589600,BED IN FAMILY HOUSE (ONLY WOMEN),215778245,Jessy & Christian,Queens,Corona,40.74147,-73.86753,Shared room,23,1,8,2019-06-03,2.12,6,308 +32589616,Mr. B - Room Apartment in NYC,235990293,Yanilin,Manhattan,Washington Heights,40.84377,-73.94094,Private room,37,4,4,2019-06-09,1.05,1,88 +32590546,Sweet private space near trains with 2 cuddly cats,47518701,Jim,Brooklyn,Gowanus,40.67858,-73.98232,Entire home/apt,115,3,1,2019-03-17,0.26,1,0 +32590674,Sonder | The Nash | Quaint 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74892,-73.97571,Entire home/apt,300,2,5,2019-05-02,1.17,327,58 +32590792,Sonder | The Nash | Original 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74763,-73.97524,Entire home/apt,316,2,5,2019-06-16,1.17,327,76 +32590874,Sonder | The Nash | Tranquil Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74734,-73.97438,Entire home/apt,228,2,4,2019-06-21,1.12,327,133 +32591286,Cozy Neat New Building 30min from Manhattan,19303369,Hiroki,Queens,Elmhurst,40.73878,-73.87711,Private room,32,30,0,,,37,0 +32591885,Cozy room in plush apartment,32788431,Elo,Manhattan,East Harlem,40.80193,-73.93866,Private room,79,2,14,2019-06-23,3.56,1,97 +32592405,Nice room with private living-room.,242816206,Diaby,Bronx,Longwood,40.82236,-73.90227,Private room,75,2,0,,,1,361 +32592596,Vibrant Bedroom in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72608,-74.00031,Private room,95,1,17,2019-07-06,5.37,3,74 +32592881,Bushwick Room!,244973445,Shevon,Brooklyn,Bushwick,40.69466,-73.9106,Private room,100,1,0,,,1,35 +32593295,"Summer! UES, 3-bed a block from Central Park!",244977552,Patty,Manhattan,Upper East Side,40.78609,-73.95341,Entire home/apt,225,3,0,,,1,166 +32595081,13ft Ceilings > Prime Historic Brownstone Brooklyn,19807856,Jack,Brooklyn,Clinton Hill,40.68575,-73.96311,Entire home/apt,200,2,6,2019-06-30,2.50,1,76 +32595351,Comfy & Clean Riverside Studio,13615300,Aaron,Manhattan,Harlem,40.82916,-73.9498,Entire home/apt,160,2,4,2019-05-27,0.94,1,0 +32595489,Very Nice and Cozy Room Right by JFK and LIRR,245002893,Christopher,Queens,Rosedale,40.6684,-73.73563,Private room,42,5,2,2019-05-13,0.90,2,178 +32595490,Peaceful 2 Bedroom apartment in a private house,245003299,Yoselyn,Bronx,Clason Point,40.80924,-73.85107,Entire home/apt,95,2,27,2019-07-05,8.62,1,153 +32595900,"Modern, luxurious spacious room in East Village",156381151,Karim,Manhattan,East Village,40.72467,-73.98836,Private room,90,2,6,2019-05-20,1.70,2,0 +32602726,Private Clean Bedroom 20 min from Manhattan,244804004,C,Brooklyn,Greenpoint,40.73635,-73.95705,Private room,89,2,3,2019-05-21,0.90,2,5 +32607488,"2nd Floor, Room # 2 (12'x14')",244817841,Aminul,Brooklyn,East New York,40.66954,-73.89575,Private room,35,180,0,,,13,189 +32608044,Beautiful Apartment near Prospect Park,11785148,Laura,Brooklyn,Flatbush,40.65438,-73.95624,Entire home/apt,83,14,1,2019-04-01,0.30,1,163 +32608451,Elegant Midtown Home w/Balcony,97417890,Angela,Manhattan,Kips Bay,40.74493,-73.9786,Entire home/apt,349,1,1,2019-02-26,0.23,2,355 +32609815,Bright Brooklyn Studio Minutes To Botanical Garden,8714863,Kelly,Brooklyn,Crown Heights,40.66947,-73.95593,Entire home/apt,90,3,20,2019-06-13,4.96,1,2 +32610653,Cozy and Comfortable Vacation Apartment in Queens!,7831200,Temp,Queens,Maspeth,40.73173,-73.899,Entire home/apt,100,1,13,2019-06-25,3.28,1,183 +32610834,Manhattan by the water!,12132369,Omar,Manhattan,Kips Bay,40.73767,-73.97384,Entire home/apt,150,7,0,,,1,9 +32611321,Amazing apartment close to midtown with skylight,27287203,Ben,Manhattan,Upper West Side,40.79887,-73.96343,Private room,80,1,42,2019-07-07,13.13,1,16 +32611480,Modern Luxury Private Room Steps from subway,218407281,Sahar,Manhattan,East Harlem,40.80551,-73.93654,Private room,75,2,3,2019-05-24,1.17,1,332 +32611643,TRENDi Artistic Duplex with Backyard Sleeps 10ppl,15034908,Trendi,Manhattan,Harlem,40.80782,-73.94132,Entire home/apt,278,3,4,2019-06-23,0.99,2,133 +32611927,Beautiful One Bedroom Near Prospect Park,17558599,Lisa,Brooklyn,Prospect Heights,40.67911,-73.9725,Entire home/apt,150,2,4,2019-06-10,0.98,1,5 +32611977,Mi casa es tu casa! Cozy & comfortable!,245160359,Arnol,Bronx,Belmont,40.85505,-73.89238,Private room,40,2,28,2019-07-06,6.72,1,84 +32612264,Luxury Living 2 in Bumpin Bushwick,489448,Tina,Brooklyn,Bushwick,40.69922,-73.92637,Private room,65,5,8,2019-06-12,2.09,2,100 +32612266,Beautiful 1 Bedroom Apt in Bed-Stuy,82326716,Nicolas,Brooklyn,Bedford-Stuyvesant,40.6953,-73.94392,Entire home/apt,90,1,5,2019-05-27,1.53,1,6 +32612731,"Clean, Sunny & Modern NYC Apartment !",61524764,Erica,Manhattan,Upper East Side,40.76746,-73.95861,Entire home/apt,199,1,20,2019-07-05,5.17,1,49 +32613384,Gorgeous Luxury Brooklyn 1 Bedroom Apt,139145066,Kerri-Ann,Brooklyn,East New York,40.67561,-73.88072,Entire home/apt,106,1,33,2019-07-04,7.56,2,15 +32613752,Sunny and Compfy Loft Bedroom,59089761,Gamze,Brooklyn,Williamsburg,40.71107,-73.96449,Private room,55,30,0,,,1,87 +32616111,Big room!!! (only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58539,-73.96984,Shared room,28,9,2,2019-04-16,0.55,12,0 +32616255,"Cozy, Quiet Apt near Times Square and Penn Station",245206417,Mike,Manhattan,Hell's Kitchen,40.75616,-73.99408,Entire home/apt,132,10,9,2019-05-31,2.45,1,174 +32616393,"2nd floor, Room# 5 (8'x12')",244817841,Aminul,Brooklyn,East New York,40.66888,-73.89372,Private room,35,7,12,2019-06-27,3.10,13,247 +32616616,Cozy apartment in Bed-Stuy near Subway Stations,6895494,Esteban,Brooklyn,Bedford-Stuyvesant,40.67981,-73.90606,Private room,29,3,5,2019-07-05,1.74,1,18 +32617384,"2nd Floor, Room # 3 (9'x12')",244817841,Aminul,Brooklyn,East New York,40.66934,-73.89402,Private room,35,7,7,2019-06-16,1.75,13,252 +32617393,Brooklyn Artist Loft,15764988,Giancarlo,Brooklyn,Bushwick,40.69835,-73.9361,Entire home/apt,100,3,5,2019-06-10,1.17,1,326 +32617641,"2nd Floor, Room # 4 (12' x 18')",244817841,Aminul,Brooklyn,East New York,40.66962,-73.89404,Private room,42,7,1,2019-05-24,0.64,13,98 +32617897,Big private room with backyard in hip Bushwick,215891351,Pablo,Brooklyn,Bushwick,40.69935,-73.92407,Private room,43,2,17,2019-06-24,4.05,2,68 +32618476,Quiet space close to the city,72234136,Eliza Alex,Queens,Astoria,40.77655,-73.93587,Private room,100,1,11,2019-06-04,2.89,1,124 +32618577,"1st Floor, Room # 9 (8' x 12')",244817841,Aminul,Brooklyn,East New York,40.66946,-73.89404,Private room,35,7,5,2019-04-29,1.33,13,116 +32618640,"1st Floor, Room # 8 (12' x 15')",244817841,Aminul,Brooklyn,East New York,40.66977,-73.89356,Private room,40,7,8,2019-06-14,2.05,13,198 +32618716,"1st Floor, Room #7 (9' x 12')",244817841,Aminul,Brooklyn,East New York,40.66974,-73.89569,Private room,38,7,6,2019-06-29,1.64,13,301 +32619108,"1st Floor, Room # 6 (12' x 14')",244817841,Aminul,Brooklyn,East New York,40.6697,-73.8954,Private room,40,7,5,2019-06-30,1.95,13,247 +32620347,2min to SubwayM/R easy commute to Manhattan,43044876,Haruhisa,Queens,Elmhurst,40.73534,-73.87767,Private room,35,29,3,2019-06-01,0.87,5,2 +32628641,Private room-Close to manhattan(10-15 minutes),79567015,Yeufre,Bronx,Mott Haven,40.81496,-73.92088,Private room,60,1,1,2019-04-09,0.33,1,90 +32633622,Spacious Brooklyn Home with 2 Large BD & Garden,27736765,Myckie,Brooklyn,Bedford-Stuyvesant,40.67899,-73.93548,Entire home/apt,160,100,0,,,1,0 +32634041,Beach suite,244964029,Anthony,Queens,Far Rockaway,40.59639,-73.7486,Entire home/apt,147,4,20,2019-06-30,4.92,1,107 +32634220,U W S Sunny Queen size bedroom near Columbia UNI*,200261161,Davis,Manhattan,Upper West Side,40.79877,-73.96313,Private room,80,1,16,2019-05-30,3.64,3,0 +32634232,"Warm, Sunny Artist Apartment in Harlem!",5409243,Katie Rose,Manhattan,Harlem,40.82928,-73.94054,Entire home/apt,135,3,1,2019-04-26,0.41,2,3 +32634265,Sonder | Stock Exchange | Original 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.0102,Entire home/apt,484,2,8,2019-06-21,2.00,327,247 +32634304,Sonder | Stock Exchange | Modern Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70598,-74.01193,Entire home/apt,211,2,15,2019-06-21,4.21,327,325 +32634435,Sonder | Stock Exchange | Incredible 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70795,-74.01096,Entire home/apt,388,2,9,2019-06-11,2.35,327,262 +32634514,Sonder | Stock Exchange | Pristine 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70575,-74.01231,Entire home/apt,407,2,9,2019-06-23,2.18,327,294 +32634671,Sonder | Stock Exchange | Upscale 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70759,-74.01242,Entire home/apt,425,2,5,2019-06-17,1.18,327,311 +32634720,Sonder | Stock Exchange | Sharp 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70728,-74.01073,Entire home/apt,432,2,3,2019-06-14,1.11,327,323 +32634839,Sonder | Stock Exchange | Cozy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70778,-74.01074,Entire home/apt,205,2,8,2019-06-16,2.64,327,327 +32634874,Sonder | Stock Exchange | Pristine 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70604,-74.01216,Entire home/apt,248,2,7,2019-06-26,2.59,327,294 +32634964,Sonder | Stock Exchange | Dashing 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70652,-74.01048,Entire home/apt,396,2,6,2019-05-28,1.80,327,323 +32635018,Sonder | Stock Exchange | Central 2BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70624,-74.01227,Entire home/apt,376,2,10,2019-05-24,2.46,327,276 +32635385,Bright and Sunny Room in Brand New Apt,6790993,Andrea,Brooklyn,Bedford-Stuyvesant,40.68908,-73.9522,Private room,93,1,0,,,1,77 +32635569,Big sunnny bedroom with a giant private garden,3002665,Zoe,Brooklyn,Williamsburg,40.7146,-73.94167,Shared room,125,1,1,2019-05-14,0.54,2,365 +32635717,Sonder | Stock Exchange | Calming 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7057,-74.01221,Entire home/apt,230,2,6,2019-06-10,1.98,327,297 +32635722,Sonder | Stock Exchange | Modern 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70608,-74.01112,Entire home/apt,416,2,7,2019-06-08,1.72,327,338 +32636472,"Private, Sunny Bedroom in Washington Heights",236908324,Christopher,Manhattan,Washington Heights,40.85117,-73.94065,Private room,50,1,22,2019-07-06,5.41,1,24 +32636494,Luxurious & spacious in the heart of West Harlem,3901955,Lena,Manhattan,Harlem,40.80556,-73.95497,Entire home/apt,134,7,0,,,1,9 +32636654,Jamaica Queens Apartment,160618190,Melissa,Queens,Jamaica,40.70225,-73.81546,Entire home/apt,129,30,0,,,1,348 +32636982,Spacious and family friendly location!,245369413,Jason,Bronx,Parkchester,40.83485,-73.85954,Entire home/apt,93,5,1,2019-02-26,0.23,1,306 +32637632,Charming 1BR in a Modern Harlem Townhouse,2603586,Joseph,Manhattan,Harlem,40.80761,-73.94305,Private room,150,2,0,,,1,6 +32638547,1.5 Bdrm In Hip Bed-Stuy Brownstone,16866694,Nikki,Brooklyn,Bedford-Stuyvesant,40.69127,-73.93856,Entire home/apt,100,1,13,2019-06-24,3.86,1,13 +32638687,Rustic Williamsburg Loft,225087238,Roxanne And Stan,Brooklyn,Williamsburg,40.70881,-73.96688,Entire home/apt,235,5,13,2019-07-04,2.98,1,153 +32638774,Friendly relaxing place for you to stay,72166833,Shalini,Manhattan,Washington Heights,40.84389,-73.93688,Private room,51,3,0,,,1,13 +32639119,Classic and Cozy Brooklyn Apartment,161985273,Melody-Lane,Brooklyn,Prospect-Lefferts Gardens,40.65554,-73.9499,Private room,45,3,7,2019-07-01,3.13,1,43 +32640244,Amazing Astoria apt minutes away from Manhattan!,245399415,Andrzej,Queens,Astoria,40.75664,-73.92806,Entire home/apt,180,1,12,2019-07-02,2.98,1,82 +32640289,2 bedroom 3 beds! Doorman Elevator 5229,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76651,-73.98752,Entire home/apt,202,30,1,2019-05-31,0.77,96,327 +32640768,Heavenly Harlem Haven,123810965,Carlton,Manhattan,Harlem,40.81072,-73.94236,Private room,50,1,13,2019-06-30,3.22,2,168 +32641909,Amazing One bedroom step away from Time SQ/73C,48146336,Irina,Manhattan,Hell's Kitchen,40.76237,-73.99202,Entire home/apt,160,30,1,2019-05-18,0.58,20,332 +32641991,Lovely room/Great Location in Williamsburg!,227520154,Lumila,Brooklyn,Williamsburg,40.70897,-73.96392,Private room,65,4,0,,,2,280 +32642131,Great Room in Manhattan - Close to Central Park,242594287,Thaweesab,Manhattan,Hell's Kitchen,40.76852,-73.98895,Private room,90,3,2,2019-03-31,0.48,1,66 +32642886,Great View Balcony Room/ 10min to Heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.74165,-73.90603,Private room,50,1,0,,,2,62 +32642930,"Clean, nice specious 2 bedroom apt in East Village",54645176,Alina,Manhattan,East Village,40.72712,-73.97763,Private room,220,3,1,2019-02-26,0.23,1,0 +32643109,UWS Sunny Cozy room by C park & Columbia UNI**,200261161,Davis,Manhattan,Upper West Side,40.79872,-73.96069,Private room,67,1,22,2019-06-12,5.64,3,38 +32643370,Central Bushwick Private Bedroom,10113653,Jessica,Brooklyn,Bushwick,40.69504,-73.9264,Private room,45,2,5,2019-06-10,1.55,1,9 +32643993,XL Private 3 bedroom Full floor E. Village Apt!,160356,Joseph,Manhattan,East Village,40.7253,-73.98401,Entire home/apt,250,1,5,2019-06-20,1.47,4,233 +32644251,4-bedroom Haven in Ridgewood,7335887,Emily,Queens,Glendale,40.69991,-73.89488,Entire home/apt,190,4,7,2019-06-16,2.28,2,70 +32644865,Spacious bedroom for the modern traveler,229637274,Sonia,Queens,Elmhurst,40.74792,-73.88115,Private room,42,1,6,2019-06-09,3.05,2,0 +32645984,Original Bed-Stuy Apartment,6410979,Alice,Brooklyn,Bedford-Stuyvesant,40.68909,-73.94556,Entire home/apt,109,2,5,2019-04-28,1.24,2,0 +32646039,NY Spacious RM w/ Own Bath near train & LaGuardia.,137358866,Kazuya,Queens,Woodside,40.74683,-73.90654,Private room,50,30,0,,,103,94 +32646882,Cozy private room and bathroom in Times Square,102221050,Maybee,Manhattan,Hell's Kitchen,40.76086,-73.98927,Private room,150,1,16,2019-06-30,4.17,2,255 +32653951,A travelers accomodation,148960265,Randy,Manhattan,Marble Hill,40.87618,-73.91268,Private room,40,3,0,,,3,308 +32655597,"Charming, cozy apartment on the UWS",12247755,Sinead,Manhattan,Upper West Side,40.77961,-73.98474,Entire home/apt,150,14,3,2019-05-27,0.98,1,0 +32655912,COOL DEAL,1284729,Selcuk,Manhattan,Upper East Side,40.77756,-73.95408,Entire home/apt,137,7,1,2019-04-08,0.33,1,12 +32657400,LONG TERM -Medium room-A-B-C-D trains-Washer&Dryer,231870747,Ozzy,Manhattan,Harlem,40.82455,-73.94585,Private room,44,14,2,2019-07-01,1.71,1,0 +32657797,Comfy 3 bedroom apartment in Manhattan,245474906,Evgeny,Manhattan,East Harlem,40.79519,-73.94115,Entire home/apt,350,3,8,2019-06-29,2.18,1,318 +32661291,Large Bedroom with private sunroom Columbus Circle,2521127,Rick,Manhattan,Upper West Side,40.76829,-73.98298,Private room,275,2,13,2019-07-05,3.15,1,233 +32661706,"Spacious, modern and sunny 1-BD in Forest Hills",139306955,Bianca,Queens,Forest Hills,40.7164,-73.83501,Entire home/apt,150,5,3,2019-06-03,0.99,1,75 +32661869,Bushwick room above punk bar,52835849,Heather,Brooklyn,Bushwick,40.70153,-73.92996,Private room,60,7,0,,,2,332 +32661875,TIMES SQUARE PRIVATE YARD 4 GUEST APARTMENT,75011143,Ryan,Manhattan,Hell's Kitchen,40.76125,-73.98849,Entire home/apt,125,3,9,2019-06-15,2.13,1,191 +32662408,Dashing 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74422,-73.97309,Entire home/apt,174,29,0,,,327,312 +32663202,Cozy Chelsea Apartment,64433748,Abby,Manhattan,Chelsea,40.74855,-74.00074,Shared room,65,1,19,2019-06-30,4.45,1,208 +32663403,Sharp 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74436,-73.97223,Entire home/apt,192,29,0,,,327,329 +32663836,Sunny East Village Room w/ full kitchen,319842,Andy,Manhattan,East Village,40.72681,-73.97955,Private room,185,2,0,,,1,26 +32664187,Beautiful room close to Prospect Park,25575398,Maya,Brooklyn,Crown Heights,40.66828,-73.95341,Private room,70,5,3,2019-05-31,0.90,1,9 +32664246,"Cozy apartment, few blocks from Central Park",112173787,Enrico,Manhattan,East Harlem,40.79191,-73.93982,Entire home/apt,166,2,2,2019-04-18,0.65,1,0 +32664528,5 Stops to 42nd St/Times Sqaure,57007752,Dinneal,Queens,Long Island City,40.76321,-73.93472,Private room,55,2,15,2019-06-26,3.88,2,114 +32664634,Be happy in NYC everything closet to you,194804585,Ines,Queens,Jackson Heights,40.75245,-73.88586,Private room,55,3,4,2019-06-27,4,2,61 +32664976,Quiet 1BR at Union Square/East Village,245013643,Daria,Manhattan,Gramercy,40.73379,-73.98605,Entire home/apt,130,30,0,,,2,342 +32664982,"Your bright, spacious & central WILLIAMSBURG home!",8498596,Erika,Brooklyn,Williamsburg,40.71558,-73.94877,Private room,95,2,14,2019-06-21,3.44,1,32 +32666157,"Charming, East Village One Bedroom",776290,Barrett,Manhattan,East Village,40.72844,-73.98296,Entire home/apt,115,3,1,2019-03-11,0.25,1,5 +32666523,Furnished room in Washington Heights in 184st,241280089,Mary,Manhattan,Washington Heights,40.85156,-73.93035,Private room,37,15,0,,,1,350 +32666534,Prospect Brownstone Palace,23388169,Jessica,Brooklyn,Prospect Heights,40.67616,-73.97009,Entire home/apt,350,4,3,2019-06-28,1.11,2,82 +32667705,Beautiful Luxury 4BR/2BA Williamsburg Apartment,229566046,Roman,Brooklyn,Williamsburg,40.70678,-73.95478,Entire home/apt,506,1,8,2019-06-30,2.18,1,134 +32667711,Sonder | The Nash | Picturesque Studio + Gym,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74769,-73.97592,Entire home/apt,165,29,1,2019-05-19,0.59,327,342 +32667713,Delightful 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74467,-73.97188,Entire home/apt,160,29,1,2019-05-22,0.63,327,345 +32668712,BB+B Brooklyn Brick & Brownstone/ Treetop terrace,521964,James And Siobhan,Brooklyn,Bedford-Stuyvesant,40.68472,-73.9418,Entire home/apt,650,1,22,2019-07-03,5.41,1,307 +32668812,BEAUTIFUL BROOKLYN ROOM,88437224,Laura,Brooklyn,Sunset Park,40.63916,-74.02175,Private room,40,2,0,,,1,0 +32668900,Best apartment in Chelsea for a young couple,11821104,Nicolas,Manhattan,Chelsea,40.74214,-73.99912,Entire home/apt,200,5,0,,,1,9 +32668910,A Peaceful Studio In The Heart of BK,8960858,Hui Chong,Brooklyn,Crown Heights,40.67639,-73.94785,Entire home/apt,102,3,7,2019-06-10,1.72,1,4 +32669067,One of The Kind in NYC,102325214,Chris,Manhattan,Theater District,40.7606,-73.98408,Entire home/apt,359,5,10,2019-05-20,2.42,1,2 +32669154,The Heart of BedSty,225322104,Gwendolyn,Brooklyn,Bedford-Stuyvesant,40.691,-73.94696,Entire home/apt,190,1,5,2019-05-19,1.47,1,351 +32669305,Cozy and Convenient Upper West Side Apartment,174804937,Julia,Manhattan,Upper West Side,40.80081,-73.96414,Entire home/apt,150,1,0,,,1,0 +32670147,NEW Brooklyn 3 Bedroom Townhouse with Private Deck,186252061,Margery,Brooklyn,Bedford-Stuyvesant,40.67779,-73.92483,Entire home/apt,150,2,0,,,1,32 +32670621,Heavens' Home,245655016,Cleo & Job,Brooklyn,Canarsie,40.63355,-73.90466,Entire home/apt,168,1,10,2019-06-28,2.46,1,83 +32670715,Family Friendly 2 Bedroom Apartment with Parking.,105956343,Ali,Brooklyn,Sheepshead Bay,40.58594,-73.93182,Entire home/apt,125,2,13,2019-06-30,3.98,1,0 +32671362,bedroom in a cozy apartment in Brooklyn,44513798,William,Brooklyn,Bedford-Stuyvesant,40.68122,-73.91018,Private room,40,2,0,,,1,0 +32671733,Luxury studio close to central park,10219283,Jasmine,Manhattan,Hell's Kitchen,40.7718,-73.99421,Entire home/apt,170,1,4,2019-06-23,1.01,1,3 +32672719,"Newest,sunny,room with separate entrance & balcony",245564705,Sergii,Brooklyn,Brighton Beach,40.57921,-73.96419,Private room,85,1,18,2019-06-20,4.43,1,222 +32672993,Cozy room in LES/Chinatown,2238256,Jaclyn,Manhattan,Chinatown,40.71463,-73.99054,Private room,128,13,0,,,1,91 +32673942,Sunny and Very Spacious 1 bedroom Apartment,139591030,Robert,Manhattan,Morningside Heights,40.80714,-73.96515,Entire home/apt,150,5,1,2019-03-22,0.28,1,0 +32674139,"Cute 1 bed/1 bath apartment, in a great location!",48438698,Stephanie,Manhattan,Upper East Side,40.76916,-73.95365,Entire home/apt,125,3,6,2019-06-23,1.51,1,42 +32675657,A budget friendly Greenpoint Studio!,83717038,Max,Brooklyn,Greenpoint,40.73738,-73.95282,Entire home/apt,95,2,7,2019-06-14,1.89,3,14 +32675979,Private Room With Kitchen Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74921,-73.99273,Private room,100,1,9,2019-06-22,3.42,9,275 +32676082,Large One Bedroom Suite With Kitchen in Midtown,244559229,Stewart Hotel,Manhattan,Chelsea,40.74913,-73.99128,Private room,100,1,4,2019-06-30,1.85,9,323 +32676112,Margarita's Room # 2 A unos minutos del JFK y LGA,214738765,Lucio,Queens,Richmond Hill,40.69433,-73.83114,Private room,58,1,16,2019-06-30,4.44,3,129 +32676180,Large Private Suite in the Heart of Midtown,244559229,Stewart Hotel,Manhattan,Chelsea,40.74845,-73.99257,Private room,100,1,22,2019-06-18,7.67,9,315 +32676181,Accessible Two Bedded Suite With Kitchen near MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.7492,-73.99073,Private room,100,1,22,2019-07-02,9.85,9,319 +32676185,Huge Two Bedroom Suite in the Heart of New York,244559229,Stewart Hotel,Manhattan,Chelsea,40.74819,-73.99224,Private room,100,1,0,,,9,245 +32676186,Large One Bedroom Double With Kitchen in Manhattan,244559229,Stewart Hotel,Manhattan,Chelsea,40.74963,-73.99141,Private room,100,1,3,2019-06-11,1.80,9,269 +32676189,Two Beds in Private Room near Times Square and MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74851,-73.99062,Private room,100,1,4,2019-07-01,1.69,9,317 +32676190,Large One Bedroom Suite with Two Baths in Chelsea,244559229,Stewart Hotel,Manhattan,Chelsea,40.74927,-73.99227,Private room,100,1,1,2019-05-27,0.68,9,324 +32678246,Private and Spacious Queen Room Across From MSG,244559229,Stewart Hotel,Manhattan,Chelsea,40.74902,-73.99211,Private room,100,1,17,2019-07-02,7.08,9,324 +32678718,Luxury accommodation minutes from Central Park!,244361589,Row NYC,Manhattan,Theater District,40.75781,-73.98903,Private room,499,1,0,,,9,293 +32678719,Enjoy great views of the City in our Deluxe Room!,244361589,Row NYC,Manhattan,Theater District,40.75918,-73.98801,Private room,100,1,156,2019-07-07,58.50,9,299 +32678720,Great Room in the heart of Times Square!,244361589,Row NYC,Manhattan,Theater District,40.75828,-73.98876,Private room,199,1,82,2019-07-07,27.95,9,299 +32678721,Nice Room 1 block away from Times Square action!,244361589,Row NYC,Manhattan,Theater District,40.75783,-73.98908,Private room,100,1,38,2019-07-04,14.62,9,295 +32678723,Spacious room in the Heart of Midtown!,244361589,Row NYC,Manhattan,Theater District,40.75803,-73.98887,Private room,100,1,6,2019-06-15,2.61,9,289 +32678724,Steps from varied cuisines at Restaurant Row!,244361589,Row NYC,Manhattan,Theater District,40.75792,-73.989,Private room,249,1,0,,,9,278 +32678725,Enjoy the Times Square experience with the family!,244361589,Row NYC,Manhattan,Theater District,40.75976,-73.98761,Private room,249,1,22,2019-06-23,7.59,9,283 +32678726,Steps away from the Heart of the Theater District!,244361589,Row NYC,Manhattan,Theater District,40.75925,-73.98767,Private room,100,1,1,2019-05-04,0.45,9,299 +32678727,In the center of all Broadway Theater ACTION!,244361589,Row NYC,Manhattan,Theater District,40.75821,-73.9882,Private room,249,1,0,,,9,298 +32681408,Artful UWS Superior Queen Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78111,-73.97923,Private room,209,1,6,2019-06-23,2.81,10,288 +32681548,Artful UWS Room-2 Double Beds Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78162,-73.97941,Private room,250,1,1,2019-05-04,0.45,10,281 +32681549,"Artful UWS Loft with Terrace Near Central Park,",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78133,-73.98132,Private room,305,1,0,,,10,271 +32681551,UWS King Room with Broadway View Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78189,-73.98138,Private room,230,1,1,2019-06-06,0.88,10,288 +32681559,Artful UWS Jr Suite with Balcony Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78281,-73.98124,Private room,325,1,0,,,10,259 +32681564,Artistic UWS Jr Suite- 2 Queens Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.7813,-73.97922,Private room,280,1,0,,,10,275 +32681565,Artistic UWS Studio with Terrace Near Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78128,-73.9796,Private room,275,1,0,,,10,281 +32681579,"Artful UWS King Room near Central Park, Museums",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78241,-73.98077,Private room,220,1,0,,,10,284 +32681581,"Artful UWS King Room - near Central Park, Museums",245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78313,-73.97953,Private room,230,1,2,2019-05-28,0.74,10,252 +32681584,Artful UWS Penthouse with Balcony by Central Park,245314318,Arthouse Hotel,Manhattan,Upper West Side,40.78136,-73.97988,Private room,350,1,0,,,10,282 +32683419,Steps away from Times Square!! Stylish Queen Room,244370442,Paramount Hotel,Manhattan,Theater District,40.76033,-73.98636,Private room,324,1,5,2019-05-25,1.85,7,363 +32683422,Up to 4 people-Only steps away from Times Square!!,244370442,Paramount Hotel,Manhattan,Theater District,40.75861,-73.98683,Private room,379,1,10,2019-06-12,4.55,7,353 +32683430,Private Bed and Essentials for NYC Solo Travelers,244370442,Paramount Hotel,Manhattan,Theater District,40.75976,-73.98727,Private room,299,1,20,2019-06-15,7.69,7,362 +32683433,Spacious King near Times Square and Broadway Shows,244370442,Paramount Hotel,Manhattan,Theater District,40.76026,-73.98747,Private room,359,1,4,2019-05-28,1.54,7,358 +32683537,Stylish Private 1 Double Bed Room in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.75987,-73.98758,Private room,304,1,6,2019-05-30,2.54,7,351 +32687805,Charming one bedroom with rooftop in Brooklyn,67449621,Renel,Brooklyn,Crown Heights,40.67729,-73.95697,Entire home/apt,146,28,2,2019-05-27,0.77,1,24 +32691375,Vintage 3BR Chelsea Loft! Best Location!,245324803,Alexandra,Manhattan,Chelsea,40.75106,-73.99792,Entire home/apt,149,2,9,2019-06-23,2.31,1,129 +32692224,"Affordable, Simple, Bright, Furnished NYC Studio!",1623509,Ngozi,Manhattan,Harlem,40.81891,-73.93786,Entire home/apt,73,7,1,2019-05-21,0.61,1,43 +32694705,Sizeable Private Room - Prime NYC Location!,242962235,Yuval,Queens,Ridgewood,40.70881,-73.89689,Private room,42,30,1,2019-06-01,0.79,23,37 +32694901,Newly Designed / Furnished Room - PRIME Location!,242962235,Yuval,Queens,Ridgewood,40.70899,-73.89494,Private room,42,30,2,2019-06-20,0.86,23,225 +32695204,Beautiful 1 bedroom house near Verrazano bridge,144653854,Natalya,Staten Island,Arrochar,40.59809,-74.0656,Entire home/apt,150,2,12,2019-07-01,3.79,1,85 +32695489,"New Years Eve, The Manhattan Club (A268)",244746656,William,Manhattan,Midtown,40.76447,-73.9816,Entire home/apt,840,1,0,,,4,4 +32695731,New York City - Double Room (A140),244746656,William,Manhattan,Midtown,40.75169,-73.97335,Entire home/apt,315,1,0,,,4,3 +32695762,"New York City, Double Hotel Room (A142)",244746656,William,Manhattan,Midtown,40.75215,-73.97269,Entire home/apt,315,1,0,,,4,3 +32695800,Thanksgiving - New York City (A144),244746656,William,Manhattan,Midtown,40.75166,-73.97323,Entire home/apt,315,1,0,,,4,3 +32696766,Cozy East Village Apartment,228235742,Amber,Manhattan,East Village,40.72412,-73.98891,Private room,100,1,0,,,1,0 +32696852,Beautiful lots of light room in the heart of LES,244182582,Milena,Manhattan,Lower East Side,40.71923,-73.99336,Private room,74,30,0,,,4,332 +32697000,Cozy room in Williamsburg near subway,228184534,Ekaterina,Brooklyn,Williamsburg,40.71965,-73.94234,Private room,45,15,1,2019-03-31,0.30,1,37 +32697097,Gorgeous Bushwick Townhome,158891219,Peter,Brooklyn,Bushwick,40.68638,-73.90863,Entire home/apt,300,2,10,2019-06-10,2.83,1,112 +32697582,Upper East Side Gem,69784014,William,Manhattan,Upper East Side,40.77817,-73.94743,Entire home/apt,105,3,10,2019-05-27,2.56,1,0 +32697647,Spacious! 3 bed 2bath 5min JFK & Resorts Casino,199075581,Larry,Queens,Jamaica,40.67193,-73.77986,Entire home/apt,135,1,23,2019-07-02,8.52,1,121 +32698370,Private rooftop exposed brick NYC apartment,244438661,Bel,Manhattan,Upper West Side,40.79553,-73.97388,Entire home/apt,200,3,3,2019-03-29,0.79,2,0 +32698909,Cozy Bronx Home ( 2 nd floor),241236910,Bernadette,Bronx,Wakefield,40.88999,-73.86008,Private room,75,2,11,2019-06-10,3.17,1,54 +32699108,"In the heart of Hunters Point, Long Island City",74116175,Lauro,Queens,Long Island City,40.74547,-73.95198,Entire home/apt,300,2,7,2019-07-01,2.26,1,40 +32699916,Harlem Hideaway,180523383,Richardene,Manhattan,East Harlem,40.80305,-73.94163,Entire home/apt,185,1,5,2019-05-05,1.20,1,338 +32699981,"HuGe, Bright Room.",144224025,Khaled,Brooklyn,Bushwick,40.69762,-73.91999,Private room,45,1,14,2019-06-13,3.23,1,189 +32700870,Heart of NYC! 4BR Incredible Location!,245324678,Steven,Manhattan,Midtown,40.757,-73.96906,Entire home/apt,199,2,10,2019-06-20,2.97,1,103 +32701394,Large Room in a Duplex Townhouse Style Apartment!,130185535,Renee,Manhattan,East Village,40.73018,-73.97981,Private room,60,60,0,,,1,147 +32701542,Lovely Spacious Home Close to Manhattan & Airports,244453286,Alba,Queens,Sunnyside,40.73802,-73.91902,Entire home/apt,180,3,10,2019-07-06,2.48,2,123 +32702033,The Refinery,18170444,Sebastian,Brooklyn,Carroll Gardens,40.68299,-73.99928,Private room,80,2,13,2019-05-29,3.42,2,160 +32704496,Ladies Shared Cozy Space,163749958,Brianna,Manhattan,Kips Bay,40.74433,-73.97868,Shared room,39,2,1,2019-05-10,0.50,3,365 +32705496,Clean and Modern Harlem 1 Bedroom,110001729,Erick,Manhattan,Harlem,40.80226,-73.95211,Entire home/apt,113,2,3,2019-05-22,0.84,1,35 +32711107,CentralPark/ Upper west /Columbia University,206758177,Miguel,Manhattan,Upper West Side,40.80007,-73.95981,Entire home/apt,234,1,27,2019-07-05,6.69,3,51 +32711759,Luxury Studio in Nomad NYC,21056486,Hanna,Manhattan,Midtown,40.74389,-73.98537,Entire home/apt,150,10,0,,,1,111 +32713924,Bnb n Spa 30 minutes from Manhattan,22125997,Lilly Rose,Bronx,Westchester Square,40.84077,-73.8487,Private room,50,3,6,2019-06-03,1.62,2,27 +32714098,Gorgeous 1 BR apt in NYC with breathtaking views!,30283594,Kara,Manhattan,Hell's Kitchen,40.76077,-74.0002,Entire home/apt,302,30,0,,,121,364 +32714417,"Modern, Deluxe 1 bedroom apt in prime of NYC!",30283594,Kara,Manhattan,Hell's Kitchen,40.76168,-73.9996,Entire home/apt,350,30,0,,,121,364 +32714435,Heart of NYC- deluxe 1BR apt with gorgeous views,30283594,Kara,Manhattan,Hell's Kitchen,40.76212,-73.9981,Entire home/apt,350,30,0,,,121,364 +32714651,Gorgeous Modern Cozy Manhattan Apartment!,29525065,Mj,Manhattan,Upper West Side,40.78334,-73.97927,Entire home/apt,120,30,1,2019-05-31,0.75,1,311 +32715168,Great room great view /10min to heart of NYC,195509478,Jingyeong,Queens,Maspeth,40.7412,-73.90552,Private room,55,1,2,2019-06-16,1.82,2,152 +32716117,Brooklyn Heights garden window view cozy studio,125981804,Ornella,Brooklyn,Brooklyn Heights,40.6929,-73.99111,Entire home/apt,110,7,0,,,1,151 +32716275,Iconic renovated tenement apartment!,205764159,Sarah,Manhattan,Lower East Side,40.72202,-73.98858,Entire home/apt,170,2,1,2019-05-27,0.70,1,8 +32717193,Cozy Greenpoint one bedroom apartment,245878254,Amanda,Brooklyn,Greenpoint,40.73142,-73.96023,Entire home/apt,189,2,9,2019-06-25,3.51,1,60 +32717623,Freshly furnished private room - GREAT Location!,242962235,Yuval,Queens,Ridgewood,40.70912,-73.89685,Private room,42,30,3,2019-07-05,0.86,23,311 +32717722,Brand New Furnished Room in Prime NYC,242962235,Yuval,Queens,Ridgewood,40.70725,-73.89473,Private room,45,30,1,2019-06-09,1,23,309 +32717887,Cosy Crown Heights Brownstone,43494916,Tilly,Brooklyn,Crown Heights,40.67637,-73.95527,Entire home/apt,132,3,0,,,2,0 +32718064,Artist Designed Garden Floor With Sunny Back Yard,15538629,Brigitte,Brooklyn,Bedford-Stuyvesant,40.6854,-73.94253,Entire home/apt,175,3,12,2019-07-05,4.00,1,301 +32718338,Beautiful vintage apt in Williamsburg (ENTIRE APT),24809291,Luca,Brooklyn,Williamsburg,40.71438,-73.94359,Entire home/apt,130,5,1,2019-05-07,0.48,1,121 +32718483,3 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74123,-73.98058,Private room,94,1,23,2019-07-03,5.90,3,55 +32719444,"2 entire floors,2 (Website hidden by Airbnb) to everything.",34313176,Eddie,Queens,Rego Park,40.71702,-73.86183,Entire home/apt,239,2,0,,,4,299 +32721182,Gorgeous Dumbo 2-Bedroom w/ Incredible Views,245805416,Samantha,Brooklyn,DUMBO,40.70284,-73.99083,Entire home/apt,375,3,2,2019-06-27,2,1,242 +32721316,Make this New Year's Eve Special in NYC,64222121,Deanna,Manhattan,Midtown,40.75333,-73.97266,Private room,450,3,0,,,1,160 +32721564,2 Bedroom Apartment in Residential Neighborhood,90463984,Isabelle,Queens,Richmond Hill,40.70047,-73.84086,Entire home/apt,120,7,0,,,3,52 +32722219,New Beautiful Apt in Manhattan 30min to Midtown,19303369,Hiroki,Manhattan,Inwood,40.86428,-73.92199,Private room,27,29,1,2019-05-31,0.77,37,32 +32722262,Parkside Chateau,212338108,James R,Manhattan,Harlem,40.82335,-73.94902,Private room,125,1,2,2019-06-16,2,1,139 +32722385,Large bright room in Brooklyn artist's apartment!,6753972,July,Brooklyn,Bedford-Stuyvesant,40.68362,-73.95692,Private room,60,1,1,2019-05-26,0.67,1,95 +32723619,Apt in heart of Williamsburg,111466,Joanna,Brooklyn,Williamsburg,40.71797,-73.95738,Entire home/apt,250,4,1,2019-06-27,1,1,122 +32724046,Large & Adorable 2 Bedroom in the Heart of Bklyn,4726371,Samantha,Brooklyn,Gowanus,40.67886,-73.98702,Entire home/apt,175,2,4,2019-04-30,1.20,2,0 +32724719,"Quiet and Private Space in Bushwick, Brooklyn",42164373,Gina,Brooklyn,Bushwick,40.70725,-73.91966,Entire home/apt,50,3,1,2019-03-24,0.28,1,0 +32724929,Cozy and modern bedstuy room,58994794,Jean-Paul,Brooklyn,Bedford-Stuyvesant,40.689,-73.94445,Private room,72,1,3,2019-04-28,1.11,1,311 +32725337,Ayo's Abode 2,241694782,Karin,Brooklyn,Bedford-Stuyvesant,40.6867,-73.93835,Entire home/apt,160,1,6,2019-05-05,1.49,2,68 +32725374,Bay Bungalow Bare-Minimum Occupancy,762610,Christopher,Queens,Arverne,40.599,-73.79603,Private room,35,3,11,2019-06-05,2.73,2,54 +32726051,Cozy bedroom in South Harlem’s restaurant row,4113106,Frederic,Manhattan,Harlem,40.80252,-73.9547,Private room,80,1,17,2019-06-13,4.21,2,177 +32726513,"Quiet, Cozy, Oassis",246096171,Ramón Emilio,Brooklyn,Bedford-Stuyvesant,40.67864,-73.91413,Private room,55,1,22,2019-07-03,6.11,1,12 +32726808,Stylish & Cozy Room Same Street As The Subway,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67803,-73.9102,Private room,75,1,17,2019-06-16,4.51,4,227 +32729130,cozy and charming experience in China Town!,50333451,Jennifer,Manhattan,Chinatown,40.71432,-73.99866,Entire home/apt,151,12,0,,,1,0 +32731541,HUGE duplex floor for share with 1 girl,49758877,Karina,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94757,Shared room,30,18,8,2019-06-23,1.89,1,27 +32732490,Pro-Music Recording Studio With Bedroom & Lounge,106067584,Shelby,Brooklyn,Bedford-Stuyvesant,40.69025,-73.92491,Private room,225,1,0,,,1,179 +32733884,"FIRST FLOOR CHARMING ONE BED, GREAT BED SIT...",103240731,Fairry,Manhattan,East Village,40.72675,-73.98651,Entire home/apt,150,3,0,,,1,0 +32734625,Private Room in a chill home 20 mins to Manhattan,241390361,Melissa,Brooklyn,Bedford-Stuyvesant,40.69424,-73.93416,Private room,55,2,22,2019-07-01,5.20,1,45 +32735694,Cozy room in 3-bedroom bushwick apartment,24386929,Colton,Brooklyn,Bushwick,40.69493,-73.9273,Private room,40,10,1,2019-04-01,0.30,1,0 +32736925,One bedroom unit in Lower East side.,246173897,Michael,Manhattan,Lower East Side,40.71867,-73.99082,Entire home/apt,150,2,8,2019-06-30,2.24,1,33 +32737146,Artist loft in Heart of Bushwick!,22544960,Farnaz,Brooklyn,Williamsburg,40.7027,-73.93571,Private room,85,3,0,,,1,0 +32737169,Perfect UWS Furn. Rooms By Central Park & Transit,50741398,Jessica,Manhattan,Upper West Side,40.80102,-73.96528,Private room,80,1,10,2019-05-16,2.38,4,0 +32739824,Private 1 Bedroom Apartment in the Upper East,94038074,Forum,Manhattan,Upper East Side,40.77313,-73.94824,Entire home/apt,111,2,5,2019-05-08,1.39,1,0 +32739899,Spacious Room in the Heart of East Village!,245637171,Min,Manhattan,East Village,40.72789,-73.98557,Private room,82,30,1,2019-05-11,0.51,8,364 +32740310,Sonder | The Nash | Warm Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74928,-73.97453,Entire home/apt,262,2,9,2019-06-23,2.35,327,113 +32740475,Sonder | The Nash | Cozy Studio + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74835,-73.97612,Entire home/apt,244,2,9,2019-06-13,2.31,327,133 +32740570,Sonder | The Nash | Chic Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7488,-73.97522,Entire home/apt,240,2,8,2019-06-22,1.95,327,105 +32740761,My place 4 u,181889371,David,Brooklyn,Sea Gate,40.57919,-74.00635,Entire home/apt,1315,10,0,,,1,0 +32740979,beautiful and clean studio apartmen in Astoria,52970439,Abraham,Queens,Astoria,40.76604,-73.93108,Entire home/apt,110,2,6,2019-05-18,1.54,1,309 +32741043,Private Room in Historical Clinton Hill/Ft Greene,18318834,Anika,Brooklyn,Clinton Hill,40.69465,-73.96427,Private room,50,2,12,2019-07-07,2.98,1,0 +32742238,"Cozy cypress hill 1BR apt near jfk , bars & mta .",161514941,Maria,Brooklyn,Cypress Hills,40.68126,-73.89457,Private room,38,1,10,2019-06-23,2.46,1,365 +32742915,SPECIAL! NYC Summer - Reserve LOW Prices,246194760,Noel,Queens,East Elmhurst,40.75984,-73.88228,Private room,33,1,17,2019-06-16,6.46,4,208 +32742923,West Village/Chelsea 3 bd For Long Term Stays,221901576,Richard,Manhattan,West Village,40.7406,-74.0062,Entire home/apt,217,105,0,,,2,85 +32743311,Amazing apt Steps away from NYU and Union Square,246222122,Anna,Manhattan,East Village,40.73219,-73.98503,Entire home/apt,220,4,9,2019-06-22,2.23,2,233 +32743787,Brooklyn Best Kept Secrete!,2839817,Rain,Brooklyn,Bedford-Stuyvesant,40.68659,-73.91883,Private room,150,4,0,,,1,179 +32744022,Large 1BR Sublet UWS Luxury High-Rise,246232599,Shel,Manhattan,Upper West Side,40.79106,-73.96785,Entire home/apt,123,7,2,2019-04-22,0.65,1,0 +32744084,Sunny Bedroom in Williamsburg,118385679,Nina,Brooklyn,Williamsburg,40.71315,-73.95695,Private room,50,1,12,2019-06-17,3.13,1,13 +32744206,Sleep & The City (Women Shared Apartment),163749958,Brianna,Manhattan,Kips Bay,40.7423,-73.98016,Shared room,39,2,1,2019-06-18,1,3,345 +32744748,Rockacozy studio!,246239362,William,Queens,Belle Harbor,40.57553,-73.85299,Entire home/apt,85,1,0,,,1,33 +32745294,Packaged for one plus group (QUEEN),242631139,Glen,Brooklyn,East Flatbush,40.6472,-73.92951,Private room,100,2,4,2019-06-23,1.85,4,360 +32745711,Packaged for one plus groups (ENSUITE KING),242631139,Glen,Brooklyn,East Flatbush,40.64659,-73.93058,Private room,110,2,6,2019-06-30,2.54,4,354 +32746895,"Spacious, Sunlit Brooklyn Loft with City Views",5560274,Blake,Brooklyn,Crown Heights,40.6773,-73.9528,Entire home/apt,250,5,3,2019-06-24,1.15,1,179 +32747955,"Charming BDR - 15min Manhattan-4min stn trains N,W",203890641,Vinicius,Queens,Ditmars Steinway,40.77482,-73.90852,Private room,85,3,13,2019-06-24,3.71,2,208 +32748003,Close to Flushing Main Street and Manhattan! (3D),246272839,Northern Star Realty,Queens,Flushing,40.76663,-73.81921,Entire home/apt,85,1,5,2019-07-06,1.69,4,145 +32748646,曼岛中城 切尔西区CHESEA 21街 闹市中静怡如家的空间,230745945,Hong,Manhattan,Chelsea,40.74278,-73.99765,Private room,80,1,3,2019-06-15,2.50,1,0 +32749109,Bay Ridge(guys only),51596474,Antony,Brooklyn,Bay Ridge,40.62439,-74.02024,Shared room,30,12,2,2019-05-13,0.86,12,0 +32749511,Cozy furnished 2 Bedroom (30 day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69239,-73.94884,Entire home/apt,120,28,0,,,2,264 +32749800,Nice Private Room in Manhattan,53725579,William,Manhattan,Washington Heights,40.84493,-73.93843,Private room,45,1,25,2019-06-26,5.95,3,205 +32750252,What’s better than “Glamping” in NYC!!!,33287445,Jean,Queens,Elmhurst,40.74033,-73.88561,Private room,70,1,6,2019-06-22,1.61,1,89 +32750384,"Generous, Light-Filled Room in Brooklyn Townhouse",62803,Eugenia,Brooklyn,Brownsville,40.66863,-73.92169,Private room,44,9,4,2019-06-01,1.29,2,12 +32757476,Apartment 2,245394439,Joyce,Manhattan,Harlem,40.80299,-73.95443,Entire home/apt,181,2,15,2019-07-01,4.21,1,22 +32758570,LARGE ROOM - 1 MONTH MINIMUM - WASHER&DRYER,144008701,Ozzy Ciao,Manhattan,Harlem,40.82391,-73.9471,Private room,37,15,0,,,2,32 +32759322,Enjoy the flavor of Spanish Harlem's rich culture.,160187991,Rosalina,Manhattan,East Harlem,40.79359,-73.9407,Private room,65,2,2,2019-07-06,2,1,125 +32759711,Worldclass Casa - Private Room - 5 min to JFK,115136074,Tina,Queens,Springfield Gardens,40.69034,-73.74895,Private room,70,2,12,2019-06-15,2.95,3,89 +32760292,LUXURY APT 3 BEDROOMS MIDTOWN Views >GYM>TERRACE,245333087,Shoshana,Manhattan,Murray Hill,40.74545,-73.97188,Entire home/apt,650,5,2,2019-05-05,0.60,1,339 +32760468,Peaceful PRVT Room in Brooklyn Amenity Building,140433148,Lauren,Brooklyn,Bushwick,40.69319,-73.90547,Private room,53,30,0,,,3,142 +32762071,Bedstuy Artists Quarter (fire escape room),18272280,Louis,Brooklyn,Bedford-Stuyvesant,40.68402,-73.9424,Private room,51,1,1,2019-03-11,0.25,2,0 +32763453,Israeli Stay NYC,31518987,Yoni,Manhattan,Chelsea,40.73948,-73.99555,Private room,150,1,0,,,1,90 +32764445,G’s NYC Airbnb,5313154,Garrett,Manhattan,Washington Heights,40.83588,-73.94095,Entire home/apt,199,30,0,,,1,98 +32764575,Private bedroom in heart of Downtown Manhattan,1844921,Ananth,Manhattan,Chelsea,40.73926,-73.9946,Private room,140,2,7,2019-06-20,2.73,1,11 +32764647,Perfect apartment for the NYC experience,44169567,Ragini,Queens,Astoria,40.7561,-73.92578,Entire home/apt,170,1,1,2019-05-12,0.52,1,60 +32765655,Private Bedroom in East Williamsburg,2915668,Vince,Brooklyn,Williamsburg,40.71373,-73.94034,Private room,65,3,0,,,1,0 +32765984,Beautiful Room and private bath - Great Price!,16509151,Deborah,Queens,Forest Hills,40.71627,-73.83768,Private room,79,2,2,2019-04-29,0.55,1,85 +32765985,Cozy sofa-bed 2 in apartment! Near to Manhattan !,243367528,Lucca & Paula,Queens,Astoria,40.76663,-73.91436,Shared room,36,1,10,2019-06-09,2.36,7,313 +32766010,Private Studio in the Center of Manhattan,246432505,Qing,Manhattan,Midtown,40.74968,-73.98722,Entire home/apt,145,1,7,2019-06-16,1.74,1,0 +32770241,Spacious Sunnyside Room. Lots of Natural Lights.,137358866,Kazuya,Queens,Sunnyside,40.74874,-73.91315,Private room,35,30,0,,,103,191 +32770484,"Big Gorgeous Room•A/C| Close NYC +Modern & Clean",192187594,Joselyn,Queens,Maspeth,40.72504,-73.88976,Private room,55,2,9,2019-06-23,2.35,1,180 +32773207,Immersive Chelsea's Art House! Great Location!!,246456163,Diego,Manhattan,Chelsea,40.74996,-73.99488,Entire home/apt,149,2,9,2019-06-18,3.03,1,151 +32775747,Super cute & cozy 2BR home in Brooklyn,16479647,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68376,-73.93336,Entire home/apt,99,2,8,2019-07-07,2.03,1,0 +32777169,Beautiful Bedroom in Manhattan,53725579,William,Manhattan,Washington Heights,40.84332,-73.93829,Private room,45,1,20,2019-06-24,4.88,3,227 +32777705,Good Brooklyn shared apartment close to train,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.67668,-73.91243,Shared room,28,1,5,2019-06-08,1.50,17,89 +32779148,HUGE Beautiful Brooklyn Loft,1135032,Kelsey,Brooklyn,Red Hook,40.68062,-74.00722,Private room,55,2,1,2019-05-01,0.43,1,5 +32780360,Beautiful & Clean 2B/2B near Times Square,145573505,Jasmine,Manhattan,Hell's Kitchen,40.7616,-73.99368,Entire home/apt,400,2,19,2019-07-04,6.20,1,95 +32781823,"Private 2bedrooms&bathroom near airport,train&city",5592622,Christina,Queens,Astoria,40.75676,-73.91334,Private room,115,1,4,2019-07-02,1.05,5,90 +32782675,Clean and quite,140125433,Yany,Bronx,Williamsbridge,40.87498,-73.85644,Private room,39,3,6,2019-07-05,1.57,1,49 +32783284,1 brdm Apartment available July And August,246589575,Regina,Brooklyn,Brighton Beach,40.5765,-73.9685,Entire home/apt,84,30,0,,,1,0 +32783365,Peaceful Sanctuary in the heart of the action,25312503,Gerrod & Rebecca,Manhattan,East Village,40.72412,-73.98283,Entire home/apt,158,1,16,2019-07-05,5.05,1,70 +32783755,Cozy Boerum Hill Private 2 Bedroom Apartment,12680161,Tirinda,Brooklyn,Boerum Hill,40.68406,-73.98481,Entire home/apt,175,1,12,2019-06-11,3.13,2,40 +32784434,Luxury Modern Grand Central 2 BR Apt Sleeps 5,246331794,Anna,Manhattan,Murray Hill,40.74929,-73.9779,Entire home/apt,300,1,29,2019-07-07,7.13,2,247 +32784607,New Williamsburg King Bed Condo,10994728,Jeff,Brooklyn,Williamsburg,40.71665,-73.9515,Entire home/apt,150,3,2,2019-05-14,0.77,1,159 +32785169,2 Bedroom Refuge with Private Bath & Living Room,20433973,Julia,Bronx,City Island,40.83988,-73.78287,Private room,95,1,6,2019-06-17,1.65,2,359 +32785423,"Soulful, Artistic Space in a Brooklyn Townhouse",3040104,Todd,Brooklyn,Park Slope,40.67687,-73.98171,Entire home/apt,140,4,9,2019-07-01,2.33,1,227 +32786031,Dream apartment facing Prospect Park,10783378,Diana,Brooklyn,Prospect-Lefferts Gardens,40.65974,-73.96134,Entire home/apt,108,29,0,,,1,0 +32786180,Comfortable private single room (Queens),234393604,Sol,Queens,Middle Village,40.71474,-73.89931,Private room,28,1,21,2019-06-19,6.49,1,14 +32786275,Clean and Simple,82940021,Todd,Manhattan,Hell's Kitchen,40.76341,-73.99306,Entire home/apt,145,3,9,2019-07-01,3.55,1,6 +32787798,1 block to subway,246622509,Nalya,Brooklyn,Sheepshead Bay,40.59642,-73.95878,Private room,60,3,2,2019-04-14,0.51,1,158 +32788167,Private room in Upper East Side #14,1786901,Shai,Manhattan,Upper East Side,40.78365,-73.94723,Private room,80,3,8,2019-05-16,2.40,9,50 +32788343,Air conditioned Fantastic Private Room for 1 or 2,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.6941,-73.93947,Private room,52,5,4,2019-06-14,2.00,3,23 +32788464,"Cozy, BRIGHT & AFFORDABLE STUDIO, heart of UES",53149725,Elena,Manhattan,Upper East Side,40.77032,-73.95498,Entire home/apt,145,7,13,2019-07-01,3.17,1,34 +32788864,Air conditioned Wonderful Private Room for 1 or 2,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.69485,-73.93866,Private room,48,5,6,2019-06-16,1.91,3,28 +32788877,"Private Queen Room in 2Br +on Broadway Astoria",193111692,Dan,Queens,Astoria,40.76317,-73.92208,Private room,75,21,0,,,1,0 +32788887,A cool bedroom in cool Brooklyn,481630,Sebastian,Brooklyn,Bedford-Stuyvesant,40.68743,-73.94451,Private room,50,7,2,2019-06-30,1.33,2,4 +32789261,Spacious 2 bedroom apt in quiet area,246653349,Juan,Bronx,Baychester,40.8694,-73.84171,Entire home/apt,101,2,11,2019-06-30,3.40,1,46 +32789884,The livingroom turned bedroom in a 1Br apartment,4361061,Abrm,Queens,Astoria,40.77122,-73.92326,Private room,62,1,7,2019-06-30,2.10,2,25 +32790135,West Village Apartment,246664340,Andrew,Manhattan,West Village,40.7319,-74.00489,Entire home/apt,175,1,4,2019-05-21,1.40,1,5 +32790345,Private cozy room By Yankee stadium,246666261,Jovid,Bronx,Claremont Village,40.84355,-73.91103,Private room,55,1,8,2019-06-17,2.67,1,358 +32790547,"Private Cozy Room, easy to go around in NY City!",246665018,Helio,Queens,Long Island City,40.76266,-73.93929,Private room,60,7,1,2019-07-06,1,1,115 +32792015,Elegant and convenient access,63966717,Carol,Bronx,Fordham,40.85912,-73.89254,Private room,59,3,0,,,2,0 +32792151,Cozy Clean Two Bedroom Very near Fort Greene Park,246681878,Erica,Brooklyn,Fort Greene,40.69431,-73.97289,Entire home/apt,145,1,19,2019-06-28,5.18,1,30 +32792802,Cozy East Side Sweet Spot with lots of Character,5861806,Linn,Manhattan,Upper East Side,40.77526,-73.95333,Entire home/apt,140,2,4,2019-04-28,1.40,1,0 +32792849,Private half bath in Manhattan NEW construction,19303369,Hiroki,Manhattan,Inwood,40.86411,-73.92353,Private room,33,30,0,,,37,0 +32792970,Everything is New. Rare New apartment in Manhattan,19303369,Hiroki,Manhattan,Inwood,40.86423,-73.92348,Private room,33,29,1,2019-06-01,0.79,37,32 +32794232,Cozy Small Bedroom on Orchard,16664377,D,Manhattan,Lower East Side,40.71899,-73.98968,Private room,75,1,6,2019-06-01,2.02,3,155 +32795950,Spacious Room in Beautiful Private House,246717334,Denise,Staten Island,Mariners Harbor,40.6396,-74.1661,Private room,63,1,10,2019-06-29,2.65,1,179 +32798710,TW #8 Private Rm- 2nd Fl. Queen Bed 1 to 2 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.83757,-73.8353,Private room,62,1,14,2019-06-07,6.36,5,229 +32799550,TW #4 Private Rm 1st Fl. Full Size Bed 1 Guest,211136294,Sharon & Erika,Bronx,Schuylerville,40.83647,-73.83491,Private room,65,2,5,2019-06-01,1.90,5,183 +32801102,Kips Bay Apartment,209587921,Gia,Manhattan,Kips Bay,40.74072,-73.97764,Entire home/apt,199,2,6,2019-05-19,1.91,1,237 +32801214,TW #6 Private Suite 2nd Fl. 1 to 4 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.8356,-73.83369,Private room,150,1,24,2019-06-20,8.37,5,247 +32802231,"Perfect, charming apartment on Upper East Side",29602688,Lindsey,Manhattan,East Harlem,40.7889,-73.94925,Entire home/apt,130,2,6,2019-06-24,1.82,1,2 +32802904,COZY COLORFUL CITY PAD BY ALL TRANSPORTATION LINES,207000645,Tk,Manhattan,East Village,40.724,-73.98933,Entire home/apt,190,1,1,2019-05-22,0.63,1,365 +32803072,Small Room In Single Room Occupancy,244819285,Jamika,Manhattan,Greenwich Village,40.73535,-73.99525,Private room,100,3,6,2019-05-16,1.88,1,175 +32805038,Sweet home in NYC,105448689,Linda,Manhattan,Chelsea,40.74655,-74.00134,Entire home/apt,139,5,0,,,1,29 +32805276,Private room close to the Central Park,154843406,Eugene,Manhattan,Harlem,40.82786,-73.94845,Private room,50,2,11,2019-06-21,4.18,2,64 +32805414,Stylish Room in Times Square near Broadway Shows,244370442,Paramount Hotel,Manhattan,Theater District,40.76057,-73.98583,Private room,339,1,18,2019-06-22,6.59,7,364 +32806692,XL Williamsburg Full Apartment for rent,9089718,Ramon,Brooklyn,Williamsburg,40.71813,-73.95964,Entire home/apt,129,5,1,2019-03-05,0.24,1,14 +32806789,Spacious & Bright 1 Bedroom in S. Williamsburg,246791914,Rep,Brooklyn,Williamsburg,40.71078,-73.96905,Entire home/apt,200,2,8,2019-06-30,2.67,1,2 +32807364,Beautiful Bedroom in Trendy Neighborhood!,174668332,Karan,Brooklyn,Bedford-Stuyvesant,40.69141,-73.93022,Private room,76,1,7,2019-05-05,1.72,1,0 +32808169,"3-Bedroom Townhouse in Bed-Stuy, Brooklyn.",4606577,Zachariah And Jess,Brooklyn,Bedford-Stuyvesant,40.68891,-73.93201,Entire home/apt,125,4,0,,,1,0 +32808737,Sonder | The Nash | Original Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7475,-73.97569,Entire home/apt,231,2,5,2019-06-03,1.32,327,82 +32808795,Unique West Village Loft,27559933,Ben,Manhattan,West Village,40.73283,-74.00734,Entire home/apt,300,2,7,2019-06-04,2.44,1,104 +32808836,Slice of New York. Enjoy Ethnicity and culture!!,246806787,Xian,Bronx,Williamsbridge,40.88542,-73.86169,Private room,140,2,3,2019-05-05,0.97,1,365 +32808879,Sonder | The Nash | Alluring Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74851,-73.97431,Entire home/apt,165,29,0,,,327,341 +32809387,The cutest little bungalow in Rockaway!,45364547,Lauren,Queens,Arverne,40.59384,-73.79392,Entire home/apt,300,2,1,2019-06-23,1,1,2 +32809670,Spacious Private Bedroom in a 3 bedroom apt.,246797434,Mel,Manhattan,Harlem,40.82908,-73.94096,Private room,63,3,1,2019-06-23,1,1,188 +32810768,Feel at home at this beautiful 2Br apartment!,29959226,Elad,Queens,Kew Gardens Hills,40.72876,-73.81967,Entire home/apt,65,13,1,2019-05-25,0.67,1,0 +32811391,Amazing views in the center of it all. Look at the Empire State Building right from your bed!,246827568,Ang,Manhattan,Chelsea,40.74596,-73.99234,Entire home/apt,290,2,14,2019-07-01,3.96,1,149 +32811501,Cozy Greenpoint Gem near park and hip amenities!,5718871,Allison,Brooklyn,Greenpoint,40.72434,-73.93971,Private room,59,7,1,2019-03-24,0.28,1,64 +32812845,Cozy Room in Lovely East Village Apartment!,245637171,Min,Manhattan,East Village,40.72981,-73.98638,Private room,55,30,0,,,8,310 +32813805,Private Room,246849103,Kathleen,Brooklyn,Sunset Park,40.66061,-73.99765,Private room,40,1,5,2019-04-07,1.35,1,89 +32813862,"Artsy, quiet haven in the Bronx’s little Ireland",8589557,John,Bronx,Woodlawn,40.89981,-73.86684,Private room,80,2,7,2019-06-03,1.84,1,70 +32814024,7 train to visit New York City at your fingertips,246851284,Jose,Queens,Flushing,40.75747,-73.80868,Entire home/apt,450,4,0,,,1,365 +32814524,Quiet & Clean Living Room in Astoria,1888085,Paulina,Queens,Astoria,40.76452,-73.92536,Shared room,35,1,11,2019-04-30,2.66,1,11 +32815390,Vinyl Studio for Music Lovers,9700935,Daniel,Queens,Astoria,40.75705,-73.90697,Entire home/apt,69,4,0,,,1,2 +32815738,"Bright, beautiful duplex apartment in Bushwick",49856034,Ellen,Brooklyn,Bushwick,40.69583,-73.93051,Private room,80,4,0,,,1,263 +32816064,Brand new Luxury apartment in a Luxury building,69426967,Aviel,Manhattan,Hell's Kitchen,40.76017,-73.99638,Entire home/apt,250,3,1,2019-03-09,0.24,1,0 +32816486,Cozy UES Apartment,65098342,Lacey,Manhattan,Upper East Side,40.76494,-73.95808,Entire home/apt,225,2,4,2019-05-31,1.24,1,1 +32816601,BROOKLYN 2BR RESIDENCE CLOSE TO TRAIN/Manhattan,120616904,Rhykel & Glenny,Brooklyn,Cypress Hills,40.67915,-73.89986,Entire home/apt,135,2,20,2019-07-03,5.56,1,297 +32816987,Enjoy Summer in the West Village.,50449750,Nick,Manhattan,West Village,40.73598,-74.0048,Entire home/apt,168,30,4,2019-06-16,1.85,1,47 +32818195,HUGE Private Union Square/East Village Apartment,246886799,Morgan,Manhattan,East Village,40.73226,-73.98983,Entire home/apt,250,2,12,2019-06-21,3.16,1,32 +32818383,Cozy clean quiet room with lock and key #1,146132198,Ronald And Cookie,Bronx,Wakefield,40.89393,-73.8581,Private room,50,2,14,2019-07-01,3.59,2,132 +32818954,"Clean, Private BDR and BATHROOM in LES/Chinatown!",31147415,Ravi,Manhattan,Lower East Side,40.71952,-73.99167,Private room,125,3,14,2019-06-30,3.96,1,36 +32819286,"Simple,clean,cozy room with lock and key #2 ,",146132198,Ronald And Cookie,Bronx,Wakefield,40.89604,-73.85877,Private room,50,2,20,2019-06-24,4.96,2,117 +32820306,The Grand Clinton Hill AirBnB,29411897,Keith,Brooklyn,Bedford-Stuyvesant,40.68873,-73.95472,Private room,70,1,18,2019-06-23,4.70,1,142 +32820753,Brooklyn classy suite (7day minimum),246290852,Eddie,Brooklyn,Bedford-Stuyvesant,40.69417,-73.94734,Entire home/apt,110,7,8,2019-06-23,2.16,2,243 +32820849,Beckoning ”Bed-Stay” 2 BR Suite in Bed-Stuy,96311058,Donna,Brooklyn,Bedford-Stuyvesant,40.68343,-73.92746,Entire home/apt,180,2,11,2019-06-29,3.37,1,280 +32821152,1BR SoHo Apt w/ your own private backyard.,96773131,Erica,Manhattan,Greenwich Village,40.72848,-74.00269,Entire home/apt,300,1,8,2019-06-22,2.96,1,192 +32821769,[NEWLY RENOVATED] - SMACK DAB IN THE ❤️ of NYC,229496718,Shubham,Manhattan,Hell's Kitchen,40.76649,-73.98727,Entire home/apt,489,3,10,2019-06-14,2.68,1,81 +32822073,Cozy apartment w/ Magnificent View!,246422621,Jimmy,Manhattan,Battery Park City,40.70966,-74.01644,Private room,69,2,3,2019-04-15,0.93,1,2 +32822356,Manhattan Lifestyle by Melanie (Females Only),222476614,Melanie,Manhattan,Kips Bay,40.74434,-73.97758,Shared room,53,2,2,2019-06-26,0.59,3,297 +32826893,Charming bedroom in the heart of Flatiron,34780853,Tia,Manhattan,Flatiron District,40.73885,-73.98786,Private room,99,1,2,2019-05-24,1.13,1,13 +32828305,2 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74138,-73.98168,Private room,115,1,19,2019-06-23,6.63,3,37 +32828362,"Spacious, clean room in midtown west.",246960941,Mordy,Manhattan,Hell's Kitchen,40.77041,-73.99242,Private room,150,2,0,,,1,88 +32828462,1 - Private room in Yogi's BIG Midtown Manhattan,25059364,Yogi,Manhattan,Kips Bay,40.74056,-73.98077,Private room,69,1,24,2019-07-01,6.43,3,35 +32831206,Cozy private room in the heart of NYC 51E1,190921808,John,Manhattan,Hell's Kitchen,40.75378,-73.9955,Private room,99,7,4,2019-06-07,1.69,47,318 +32833064,Private Room Right Off L Train,6447195,Aurora,Brooklyn,Williamsburg,40.70754,-73.94151,Private room,42,3,3,2019-06-26,1.30,2,5 +32834210,Stylish & Convenient 2BR off Park Ave,2279174,Svetlana,Manhattan,Murray Hill,40.7494,-73.9784,Entire home/apt,220,30,6,2019-06-08,1.94,1,135 +32834423,"Comfy room in large, dog-friendly apt w/ balcony",4094038,Alex,Brooklyn,Williamsburg,40.71036,-73.94053,Private room,65,2,13,2019-06-01,3.25,4,25 +32835357,4mins to Manhattan Bound 7train; 10mins to LGA (1),247013511,Frank,Queens,Jackson Heights,40.75298,-73.87675,Private room,40,2,8,2019-06-20,2.42,6,75 +32836385,Bright Private Bed/Bath in the Heart of Ft Greene,10337544,Christiana,Brooklyn,Fort Greene,40.69258,-73.97285,Private room,105,1,12,2019-06-10,3.87,1,0 +32837714,Private Room 15 min to Midtown Manhattan,100112994,Felix,Queens,Long Island City,40.75074,-73.93648,Private room,79,2,15,2019-07-02,3.95,2,37 +32837987,Bed-Stuy Modern and Minimal,43207895,Alexandra,Brooklyn,Bedford-Stuyvesant,40.68851,-73.95174,Private room,60,3,3,2019-06-15,0.82,2,197 +32838270,Wyndham Midtown 45 in NYC,246225955,Michael,Manhattan,Midtown,40.7515,-73.97206,Entire home/apt,488,2,0,,,1,65 +32838331,Bed-Stuy Bookhouse,3003330,Hadass,Brooklyn,Bedford-Stuyvesant,40.68989,-73.94469,Entire home/apt,95,2,5,2019-06-18,2.50,3,0 +32838697,Habitación privada cerca aeropuerto la Guardia.,202350344,Diana Carolina,Queens,East Elmhurst,40.76091,-73.88686,Private room,45,2,11,2019-07-01,3.67,2,294 +32839377,Spacious and peaceful Park Slope apartment!,2370813,Anastasia,Brooklyn,Gowanus,40.67757,-73.98845,Entire home/apt,139,2,19,2019-07-01,4.96,2,209 +32839529,Super Sunny Room in Ditmas Park,29927802,Claire,Brooklyn,Kensington,40.64217,-73.9714,Private room,56,1,7,2019-06-20,1.86,1,0 +32840036,Homey Room in StuyTown,64783050,Steven,Manhattan,Stuyvesant Town,40.73379,-73.97754,Private room,55,1,4,2019-03-26,0.97,1,1 +32840500,Cozy and Modern Bedroom in Williamsburg,55025690,Clara,Brooklyn,Williamsburg,40.71468,-73.95825,Private room,68,1,7,2019-06-08,2.23,1,0 +32840626,Sonder | Stock Exchange | Unique 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.706,-74.01068,Entire home/apt,221,2,10,2019-06-12,2.78,327,354 +32841296,"❋ FAB BROOKLYN ROOM ❋ PRIVATE ENSUITE, 2 BED'S ;-)",7598620,Daniel,Brooklyn,Bushwick,40.69826,-73.93474,Private room,58,1,26,2019-07-07,7.03,1,70 +32841690,Beautiful bed room and separate bathroom,233227636,Waqas,Brooklyn,Flatlands,40.6246,-73.92709,Private room,40,1,1,2019-06-04,0.83,2,37 +32841707,"Fresh, Spacious 2-Bed with Garage Parking",247064022,Sunny,Queens,Flushing,40.74551,-73.82662,Entire home/apt,189,3,10,2019-07-01,2.68,1,51 +32842295,Beautiful bedroom and full bathroom,233227636,Waqas,Brooklyn,Flatlands,40.62646,-73.92754,Private room,40,1,16,2019-06-22,5.05,2,151 +32843454,"Cute, Vintage Studio on UES Close to Express Q",247072396,Andrea,Manhattan,Upper East Side,40.77085,-73.94933,Entire home/apt,250,2,1,2019-04-21,0.38,1,0 +32844039,New York Comfort Stay!,105225699,Serena,Queens,Flushing,40.76177,-73.79415,Entire home/apt,135,3,12,2019-07-05,3.13,2,178 +32844072,Private studio with balcony near LGA and Manhattan,80933709,Jacqueline,Queens,East Elmhurst,40.76292,-73.87906,Private room,55,3,2,2019-06-22,2,2,37 +32844370,"Cozy & Modern, 1 bed apt in Hell’s Kitchen!!",4087531,Isabel & Micah,Manhattan,Hell's Kitchen,40.76414,-73.98652,Entire home/apt,169,3,0,,,1,0 +32844387,Cozy East Village Apartment,46231814,Amber,Manhattan,East Village,40.72423,-73.98816,Private room,100,3,26,2019-06-25,7.88,3,220 +32844588,Stylish Room w/ 2 Twin Beds in Times Square,244370442,Paramount Hotel,Manhattan,Theater District,40.76035,-73.98587,Private room,324,1,13,2019-06-18,5.42,7,331 +32844884,Place like home,244217586,Rajwinder,Queens,Jamaica,40.70949,-73.79304,Entire home/apt,90,1,0,,,1,0 +32845010,Private 2 Bedroom APT Close to City & Expressway.,139238261,Ilya,Queens,Fresh Meadows,40.73566,-73.79059,Entire home/apt,95,3,17,2019-07-07,4.51,1,329 +32845131,"Modern, Private Bedroom in East Harlem",74205904,Carly,Manhattan,East Harlem,40.79368,-73.94294,Private room,75,2,3,2019-05-05,0.89,1,0 +32845242,In the Heart of Astoria,111723,Kat,Queens,Ditmars Steinway,40.77248,-73.91665,Entire home/apt,140,2,1,2019-05-06,0.47,1,3 +32845331,Brooklyn sun kissed studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68573,-73.9527,Entire home/apt,90,1,14,2019-06-24,3.59,5,63 +32845516,Brooklyn stylish studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68543,-73.95415,Entire home/apt,90,1,14,2019-06-20,3.39,5,55 +32845716,3 Bedroom Artist Loft in Williamsburg Prime,1019963,Renzo,Brooklyn,Williamsburg,40.71565,-73.95837,Entire home/apt,223,2,17,2019-07-03,4.47,1,310 +32846103,Cozy Apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68391,-73.91721,Private room,150,1,4,2019-06-02,1.26,2,267 +32847003,"IVORY COAST ROOM +Is your home away from home",145878384,Denise,Brooklyn,Crown Heights,40.67248,-73.92962,Private room,70,5,2,2019-06-15,1.54,7,308 +32847146,Stevie's,37703550,Steve,Manhattan,Washington Heights,40.84751,-73.93864,Private room,45,2,1,2019-04-13,0.34,1,35 +32847511,Luxurious 1BR Gorgeous City View High Elevation,247118366,Paul,Manhattan,Hell's Kitchen,40.76195,-73.98771,Entire home/apt,260,2,14,2019-06-14,4.24,1,212 +32848199,"Cozy, Confortable and Nice place in Bay Ridge",246910562,Stefany,Brooklyn,Bay Ridge,40.63238,-74.02382,Private room,53,1,22,2019-06-26,5.32,1,83 +32848619,NYUW05-3:Columbus university Central Park one room,39890192,Laura,Manhattan,Upper West Side,40.8022,-73.96483,Private room,97,15,0,,,12,179 +32854456,Cozy Clean Clutter-free Apartment with Office,22171095,George & Diana,Queens,Astoria,40.76235,-73.92138,Entire home/apt,140,2,16,2019-06-14,4.21,2,79 +32856048,"Dapper W.Village Studio w/Doorman, close to subway by Blueground",107434423,Blueground,Manhattan,West Village,40.7304,-74.00301,Entire home/apt,321,30,0,,,232,310 +32857508,10 min to Manhattan: Cozy share,247189581,Helena,Brooklyn,Fort Greene,40.68637,-73.97431,Shared room,25,2,8,2019-06-14,1.95,5,32 +32857674,Brooklyn modern studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68533,-73.95278,Entire home/apt,104,1,15,2019-06-20,3.66,5,48 +32857918,Classic Hells Kitchen Haven,129047499,Bret,Manhattan,Hell's Kitchen,40.76926,-73.98746,Private room,95,1,14,2019-06-10,3.50,1,7 +32858018,Brooklyn charming studio apartment!,242924411,James And Laureta,Brooklyn,Bedford-Stuyvesant,40.68571,-73.95265,Entire home/apt,90,1,10,2019-06-07,2.42,5,50 +32858895,Live like a true New Yorker!,8454981,Artez,Manhattan,Hell's Kitchen,40.75658,-73.99734,Entire home/apt,150,3,7,2019-06-13,1.98,1,0 +32859066,Bedroom & common area w/ private back yard.,171636572,Keegan,Brooklyn,Bushwick,40.68881,-73.91992,Private room,50,5,18,2019-06-16,7.01,1,12 +32860008,Bed-Stuy townhome ideal for families/entertaining,10283936,Kate,Brooklyn,Bedford-Stuyvesant,40.69148,-73.94994,Entire home/apt,300,5,1,2019-04-28,0.42,1,4 +32860550,VIP,247212166,Issouf,Bronx,Mott Haven,40.81058,-73.9069,Private room,80,5,0,,,1,179 +32861073,San Carlos Hotel Executive Junior Suite(B)up to 4,173685298,Janet,Manhattan,Midtown,40.75628,-73.97072,Private room,375,1,2,2019-06-04,1.13,11,179 +32862140,Furnished room in Manhattan Apt!,17842449,Marisa,Manhattan,Kips Bay,40.74068,-73.97848,Private room,40,30,0,,,1,83 +32864955,Cozy Apartment near NYC Central Park & Riverside,235905088,Dominique,Manhattan,Upper West Side,40.8022,-73.9666,Entire home/apt,325,7,8,2019-06-22,2.53,1,176 +32864985,Sunny studio in Manhattan near Central Park,157422070,Georgiana,Manhattan,Upper West Side,40.78493,-73.97294,Entire home/apt,175,5,7,2019-07-02,2.44,1,19 +32865017,Quiet Private Room in Heart of Jamaica smoke ok!,141645843,Gedan,Queens,Jamaica,40.681,-73.79592,Private room,33,1,3,2019-05-23,0.74,2,189 +32865372,Casa Linda on Linden - 8 minutes to JFK Airport,3179866,Gonzalo And Nora,Queens,Jamaica,40.68816,-73.78974,Entire home/apt,170,3,8,2019-06-17,2.79,2,336 +32865732,Park views and city fun for July & August,11175,Teri,Brooklyn,Prospect-Lefferts Gardens,40.6622,-73.96208,Entire home/apt,130,30,0,,,1,129 +32866480,Loft on Ludlow (LES/Chinatown),1159268,Max,Manhattan,Chinatown,40.71614,-73.99047,Entire home/apt,200,2,0,,,1,0 +32866678,Sonder | The Nash | Relaxed 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74896,-73.97521,Entire home/apt,212,29,0,,,327,330 +32867399,Amazing location 10min to the city,247189581,Helena,Brooklyn,Fort Greene,40.6865,-73.9729,Shared room,38,2,3,2019-05-19,0.81,5,31 +32869060,"Big, brt rm w/ king bed+ pvt bath in HK/MT West",33607268,Anne,Manhattan,Hell's Kitchen,40.76575,-73.98938,Private room,110,1,14,2019-05-29,3.65,1,0 +32869379,Air conditioned Excellent Private Room for 1,9773038,Yuki,Brooklyn,Bedford-Stuyvesant,40.69271,-73.93799,Private room,42,5,3,2019-05-11,0.76,3,23 +32870169,Spacious 1 Bedroom in the West Village,60668386,Madison,Manhattan,West Village,40.73341,-74.00444,Entire home/apt,197,2,3,2019-06-27,3,1,2 +32870748,"Luxury building studio, swimmingpool, pet friendly",246865215,Mia,Brooklyn,Williamsburg,40.72136,-73.95532,Entire home/apt,160,2,1,2019-04-27,0.41,1,350 +32871846,The Artist,18170444,Sebastian,Brooklyn,Carroll Gardens,40.68133,-73.99944,Private room,80,2,20,2019-06-23,5.50,2,154 +32872356,BEST SIDE OF BED-STUY,243875619,David,Brooklyn,Bedford-Stuyvesant,40.68725,-73.94625,Private room,48,1,20,2019-07-07,5.04,2,242 +32872437,Room in Astoria,145984241,Diego,Queens,Astoria,40.75492,-73.91548,Private room,100,4,0,,,1,114 +32873781,Bed-Style! One bedroom apt. in trendy neighborhood,211280779,Kourtney,Brooklyn,Bedford-Stuyvesant,40.68779,-73.92131,Entire home/apt,125,1,0,,,1,116 +32874495,Private room - Midtown West elevator building,55586606,Stacey,Manhattan,Hell's Kitchen,40.75493,-73.99676,Private room,200,2,8,2019-06-12,2.40,1,0 +32874857,Luxury Studio High Rise 10 mins from Times Sq NY!,247335568,Evelyn,Queens,Long Island City,40.74881,-73.94316,Entire home/apt,130,3,1,2019-05-10,0.50,7,24 +32875637,"Williamsburg 2-Story Penthouse, Large Private Deck",118403993,Arielle,Brooklyn,Williamsburg,40.72124,-73.95984,Entire home/apt,400,2,10,2019-06-19,2.63,2,351 +32876011,Private room in a perfect location in the city,59583716,Shai,Manhattan,Upper East Side,40.76174,-73.96625,Private room,90,3,1,2019-03-12,0.25,1,8 +32876527,"Cozy place to stay, 30 min away from Manhattan.",71968525,Raya,Brooklyn,Borough Park,40.62688,-73.99795,Shared room,50,3,1,2019-03-13,0.25,1,177 +32884159,Huge brooklyn duplex,238544255,Kynara,Brooklyn,Bedford-Stuyvesant,40.68274,-73.91272,Private room,45,1,5,2019-06-01,1.28,1,37 +32884505,"Cozy, spacious room in Bed-Stuy",158872351,Kelly,Brooklyn,Bedford-Stuyvesant,40.68845,-73.9439,Private room,55,1,7,2019-06-10,2.56,1,0 +32885270,Bright Designer 1 Bedroom in Heart of Manhattan,2938649,Danielle,Manhattan,Chelsea,40.74184,-73.9981,Entire home/apt,180,7,3,2019-06-26,2.31,1,0 +32886217,Dash Production loft,247411073,Antwoine,Brooklyn,Crown Heights,40.67041,-73.9463,Private room,239,1,1,2019-05-19,0.58,1,364 +32886361,beautifulROOM/Safe&comfortable/ near LG& JFK,169587048,Jay/Carolina Bastidas Family,Brooklyn,Cypress Hills,40.68258,-73.87731,Private room,50,7,1,2019-05-13,0.52,2,365 +32886967,Comfortable Single Room - 15min Manhattan,203890641,Vinicius,Queens,Ditmars Steinway,40.77558,-73.90941,Private room,50,3,13,2019-06-24,3.71,2,220 +32888484,Brand new charming modern apartment,82190014,Kristin,Brooklyn,East Flatbush,40.66346,-73.93572,Entire home/apt,149,3,1,2019-06-09,1,1,170 +32890197,Brooklyn Room with 2 Chill Guys,175413,Angelo,Brooklyn,Bushwick,40.69835,-73.93258,Private room,33,2,3,2019-03-31,0.75,1,188 +32890299,"Able to walk to free ferry in Manhattan. Many,Bus",244544373,Valerie,Staten Island,St. George,40.63894,-74.08069,Private room,100,1,1,2019-06-24,1,2,365 +32890531,Distinctive 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75544,-73.9829,Entire home/apt,177,29,0,,,327,354 +32890591,"""Color Me Time Sq."" Interactive Room in Manhattan",247446830,Krista,Manhattan,Harlem,40.82757,-73.94915,Private room,64,2,15,2019-07-07,3.78,2,48 +32890647,Comfy Sofa Bed in Living Room,17827404,Erdi,Queens,Astoria,40.76449,-73.91996,Shared room,30,1,7,2019-06-28,4.12,1,320 +32891080,Centrally Located Beautiful Escape,242296495,Angela,Brooklyn,East Flatbush,40.64922,-73.93301,Private room,35,1,31,2019-07-05,8.02,3,66 +32891427,Private Room in quiet XL East Village apartment!,160356,Joseph,Manhattan,East Village,40.72504,-73.98327,Private room,68,1,31,2019-07-03,7.69,4,94 +32891722,Ladies Only NYC,247453895,Kamila,Manhattan,Kips Bay,40.74367,-73.97551,Shared room,44,2,3,2019-06-03,0.79,3,324 +32892358,Bed Stuy Modern,43207895,Alexandra,Brooklyn,Bedford-Stuyvesant,40.6901,-73.95139,Private room,60,2,1,2019-05-15,0.54,2,189 +32892533,Pleasant 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Theater District,40.75731,-73.98326,Entire home/apt,177,29,1,2019-06-13,1,327,343 +32892576,New! Sunny Loft/Studio in Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73304,-73.95491,Entire home/apt,50,1,8,2019-05-20,2.47,6,0 +32892634,Perfect Loft - Minutes from Manhattan - Big Comfy,244330525,Lee,Brooklyn,Williamsburg,40.72055,-73.95825,Entire home/apt,300,2,0,,,1,95 +32892845,Manhattan Wall Street Luxury Apartment Experience,75064270,Audrey,Manhattan,Financial District,40.70937,-74.00531,Private room,300,3,0,,,2,365 +32893084,Room in Crown Heights Apt,244096292,Rafael,Brooklyn,Prospect-Lefferts Gardens,40.65813,-73.95788,Private room,400,1,0,,,1,0 +32893569,"EAST 141 FACE HARLEM +NEAR TO YANKE STADIUM",144839232,Karla,Bronx,Mott Haven,40.80981,-73.92031,Private room,39,1,9,2019-07-01,3.38,1,176 +32894176,Modern Gramercy Park/NoMad Flat near Union Square,9581668,Kirk,Manhattan,Kips Bay,40.73882,-73.98291,Entire home/apt,219,1,18,2019-07-02,4.46,1,292 +32894678,Brooklyn Awesomely Huge and Hip Apartment,9864136,Anthony,Brooklyn,Bushwick,40.68624,-73.9144,Entire home/apt,80,30,2,2019-05-31,0.50,26,317 +32894721,COZY NYC!!!,206695257,Ronald,Queens,Queens Village,40.71324,-73.73318,Private room,70,1,4,2019-06-23,1.60,1,88 +32896994,X Night,184750740,Juice,Bronx,Morrisania,40.82398,-73.90894,Shared room,77,1,0,,,4,90 +32897532,X Live,184750740,Juice,Bronx,Morrisania,40.82575,-73.90993,Private room,80,1,0,,,4,365 +32897709,Bedroom in Prime Bushwick,5365438,Elena,Brooklyn,Bushwick,40.70235,-73.92892,Private room,50,3,1,2019-06-05,0.88,1,0 +32897839,THE STUDIO LODGE BROOKLYN,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68224,-73.92097,Private room,60,3,4,2019-07-06,2.22,2,316 +32898133,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room1,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67721,-73.91404,Private room,47,30,0,,,5,317 +32898150,Near Yankee Stadium,232665281,Melinda,Bronx,Concourse,40.82913,-73.92236,Private room,50,1,7,2019-06-23,1.84,1,265 +32900798,The Inspired Artist,21967943,Elise,Brooklyn,Bushwick,40.7006,-73.93018,Private room,95,1,6,2019-05-10,1.58,1,0 +32901262,"Chabla Residence. The perfect stay, when away",247538066,Edwin,Queens,Jackson Heights,40.75196,-73.86893,Entire home/apt,260,2,14,2019-07-02,5.00,1,32 +32908284,Modern Brooklyn Residence,33514370,Silvia,Brooklyn,Prospect-Lefferts Gardens,40.66066,-73.94458,Entire home/apt,159,3,16,2019-06-30,5.78,1,10 +32912783,Loft bed,113295877,Jonathan,Staten Island,Tompkinsville,40.63476,-74.0894,Private room,55,3,3,2019-06-30,1.11,3,61 +32914064,Chic and Cosy Private Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.76094,-73.99129,Private room,120,4,8,2019-06-16,3.00,2,275 +32915389,Modern & Cozy 2 BR Private Apartment in Brooklyn,246459949,Gk,Brooklyn,Bay Ridge,40.63189,-74.02322,Entire home/apt,135,1,14,2019-06-14,3.59,1,271 +32915674,Stylish Industrial Theater District Apartment,4534893,Alex,Manhattan,Theater District,40.76219,-73.98564,Entire home/apt,325,2,16,2019-06-28,4.57,4,304 +32915763,Luxurious Family apartment-20min to Manhattan,247644516,Alexa,Brooklyn,Bedford-Stuyvesant,40.68443,-73.93167,Entire home/apt,190,2,5,2019-06-17,2.94,1,86 +32916183,SPACIOUS SUNNY ROOM NEAR SUBWAY AND HUDSON rIVER,1190978,Linden & Bah,Manhattan,Harlem,40.82195,-73.95572,Private room,52,30,1,2019-06-21,1,2,365 +32916190,Spacious and sunny room with private bathroom,76394560,Chris,Brooklyn,Bushwick,40.70311,-73.92514,Private room,60,1,12,2019-06-16,3.64,1,9 +32916378,Cozy Midtown NYC Studio (East 59th and 2nd),247649713,Matthew,Manhattan,Upper East Side,40.76142,-73.96493,Entire home/apt,199,1,1,2019-03-17,0.26,1,5 +32917116,"Luxurious townhouse, 2bd w/Loft+2bath+High-ceiling",129412544,Gleason,Brooklyn,Williamsburg,40.711,-73.96218,Entire home/apt,200,180,0,,,1,365 +32917795,2 bathrooms; 10mins LGA: 4mins 7train (2),247013511,Frank,Queens,Jackson Heights,40.75093,-73.87507,Private room,45,2,7,2019-06-19,1.74,6,64 +32917917,Private room for rent in crescent east New York,247662050,Grinis,Brooklyn,Cypress Hills,40.68355,-73.8765,Private room,60,1,1,2019-05-18,0.57,1,89 +32918029,Comfy Room III,197516314,Genny,Staten Island,Port Richmond,40.63517,-74.13352,Private room,52,1,3,2019-06-28,0.93,3,365 +32918155,Modern Cozy-4mins to 7train; 30mins to City (3),247013511,Frank,Queens,Jackson Heights,40.75157,-73.87639,Private room,45,2,6,2019-06-17,1.54,6,66 +32919210,"Private room,1 min from Subway,20 min to Manhattan",245258532,Elena,Queens,Kew Gardens,40.713,-73.83101,Private room,45,2,16,2019-07-05,4.10,2,6 +32919247,❤️ SUPERCUTE BROOKLYN BEDROOM,247673988,Adrian,Brooklyn,Bushwick,40.69872,-73.93461,Private room,49,1,18,2019-07-02,4.74,2,158 +32919980,CHARMING BEDROOM❤️HEART OF BROOKLYN,247673988,Adrian,Brooklyn,Bushwick,40.69929,-73.93602,Private room,55,1,16,2019-07-02,4.36,2,169 +32920030,"Homely shared living room,1 min from Subway(E,F).",245258532,Elena,Queens,Kew Gardens,40.71222,-73.83297,Shared room,35,2,2,2019-06-24,2,2,34 +32920121,Private and cozy bedroom in Bushwick,85488730,Reynald,Brooklyn,Bushwick,40.69825,-73.93029,Private room,60,2,4,2019-05-24,1.00,1,61 +32920999,Tranquil Manhattan Room close to Trains,3228429,Austin,Manhattan,Harlem,40.82791,-73.94752,Private room,65,2,6,2019-07-02,2.07,1,72 +32921148,Cozy room w/ Laundry in Building + 3 Bathrooms!,136010789,Rebeca & John @ Bedly,Brooklyn,Bushwick,40.69387,-73.91826,Private room,33,30,0,,,2,54 +32921617,"A Relaxing, Blessed Apartment #3 (Hotel Style)",168891738,Miguel & Marisol,Bronx,Unionport,40.82661,-73.8571,Entire home/apt,100,2,16,2019-06-30,4.32,2,161 +32922087,Private Bedroom in Manhattan,53725579,William,Manhattan,Washington Heights,40.84505,-73.93779,Private room,45,1,23,2019-06-20,5.95,3,217 +32922463,HUGE & Sunny Two Bedroom Apartment in Brooklyn,7752638,Colin And Madelaine,Brooklyn,Sunset Park,40.6417,-74.01892,Private room,95,2,0,,,1,137 +32923358,"Guest Room in a Warm, friendly Artist's Home",11018124,Alea,Manhattan,Upper West Side,40.78812,-73.97091,Private room,175,2,0,,,1,66 +32926087,2BR in Hell's Kitchen w/ Gym + Pool close to the subway by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76186,-73.99714,Entire home/apt,446,30,0,,,232,325 +32928652,Big Room in Times Square,17577495,Ramiro & Jeff,Manhattan,Hell's Kitchen,40.76135,-73.98698,Private room,140,3,3,2019-06-24,1.67,3,45 +32929439,1200 SQR FT stylish loft June-July 2019,16237721,Marco,Bronx,Port Morris,40.80643,-73.92783,Entire home/apt,110,14,0,,,1,88 +32929482,Brand new renovated retreat 5 min from JFK!,46789694,Tapashi,Queens,Springfield Gardens,40.66648,-73.7526,Private room,65,1,28,2019-06-30,7.85,2,340 +32932554,Beauty of Brooklyn and short ride to Manhattan.,15672224,Michael,Brooklyn,Sheepshead Bay,40.58546,-73.9457,Entire home/apt,150,21,0,,,1,81 +32933643,Spacious Studio in the UES 94th st (30 days MIN),159598333,Sol,Manhattan,Upper East Side,40.78331,-73.94646,Entire home/apt,99,30,0,,,5,332 +32935473,Private room in Astoria... 20 min to the city.,90043913,Yudum,Queens,Ditmars Steinway,40.77205,-73.91759,Private room,55,2,8,2019-07-07,2.26,2,110 +32935877,East Village Plant Studio,38352826,Devin,Manhattan,East Village,40.7269,-73.98368,Entire home/apt,128,4,2,2019-07-04,2,1,16 +32935986,Uniware( only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58527,-73.96871,Shared room,28,10,0,,,12,0 +32936398,UES Apartment near Central Park(20 mins TimesSq),239658197,Shawn,Manhattan,East Harlem,40.79153,-73.94138,Entire home/apt,180,1,4,2019-06-30,1.54,1,32 +32936990,Private Loft - WALKING DISTANCE to JFK and Casino,211303730,Raj,Queens,South Ozone Park,40.67425,-73.82231,Entire home/apt,115,1,23,2019-06-22,5.95,1,66 +32937132,Super Cute 2 Beds in the East village,2196224,Sally,Manhattan,East Village,40.7295,-73.98327,Entire home/apt,133,30,0,,,4,151 +32937689,1 room in 2BR luxury Apartment in Bushwick,13412901,Daniel,Brooklyn,Bushwick,40.70158,-73.92257,Private room,65,2,1,2019-03-24,0.28,1,88 +32937802,"Charming 2 Bedroom, Your Cozy Brooklyn Homebase!",1580711,Dawn,Brooklyn,Clinton Hill,40.69444,-73.9669,Entire home/apt,115,2,4,2019-06-24,1.29,1,46 +32938196,COZY BEAUTIFUL HOUSE ! 2 min from the train,166673485,Daniela,Brooklyn,Bushwick,40.68227,-73.90703,Entire home/apt,150,2,7,2019-06-23,3.62,1,342 +32938308,"Sweet, Cozy and Blessed Apartment #2 (Hotel Style)",168891738,Miguel & Marisol,Bronx,Unionport,40.8267,-73.85704,Entire home/apt,100,2,18,2019-06-28,4.78,2,145 +32939925,1920's Historic Home near JFK and LGA Airport,33832598,Doreshia,Queens,Jamaica,40.69911,-73.78196,Entire home/apt,122,2,3,2019-07-08,3,1,81 +32940382,"Cozy room in bright, spacious apartment",97853468,Steven,Bronx,Hunts Point,40.81731,-73.89052,Private room,35,21,0,,,4,341 +32940875,3blocks to 7 train-30mins to City Exploration (4),247013511,Frank,Queens,Jackson Heights,40.75091,-73.87612,Private room,39,2,22,2019-06-21,5.64,6,58 +32941264,Laundry + Free Cleaning & WiFi - 5min to Metro,102242694,Jess & Ben,Brooklyn,Bushwick,40.69987,-73.92638,Private room,35,20,1,2019-07-01,1,1,24 +32942408,"Airy, Large Room W'burg - 15 mins to Manhattan",102114290,Bobby,Brooklyn,Williamsburg,40.71563,-73.94085,Private room,59,4,5,2019-04-30,1.24,1,0 +32942632,Jackson Heights coziest private room,229637274,Sonia,Queens,Elmhurst,40.74642,-73.88044,Private room,30,1,15,2019-07-03,4.84,2,135 +32942981,Welcome in the Sam Suite (only for GUYS),51596474,Antony,Brooklyn,Gravesend,40.58462,-73.97155,Shared room,25,10,0,,,12,0 +32943558,"TAO's Cozy Empire in Brooklyn, NY (One Female)",205151601,Thomas,Brooklyn,Crown Heights,40.6745,-73.92612,Private room,60,30,0,,,1,126 +32943585,Your Own Apartment in Lower Manhattan,247900765,Vic,Manhattan,Lower East Side,40.72085,-73.98253,Entire home/apt,175,1,22,2019-06-17,5.50,1,64 +32943764,Two Bedrooms Tonhouse,247900596,Sergo,Manhattan,Harlem,40.80598,-73.94792,Entire home/apt,325,1,16,2019-07-06,4.21,1,346 +32944408,Private Room Aprtmnt shared 12 mins from Manhattan,217484432,Dion,Queens,Ditmars Steinway,40.77726,-73.90689,Private room,115,1,7,2019-06-10,2.26,2,304 +32954828,Madison Flat,30168484,Eric,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93886,Entire home/apt,120,4,8,2019-06-18,2.29,1,126 +32955144,"NY on a Budget: Minimal Decor, Center of the City",168729352,Anna,Manhattan,Kips Bay,40.73867,-73.98039,Entire home/apt,55,4,0,,,1,8 +32956331,Green & Cozy Home in NYC's Staten Island,31757676,Maite,Staten Island,Stapleton,40.62493,-74.08318,Entire home/apt,100,7,0,,,1,16 +32957830,Private place. Close to everything NY has to offer,248021206,Alen,Queens,Glendale,40.7071,-73.86482,Private room,50,1,0,,,1,177 +32959315,Luxury 3 BR loft for the ideal NYC experience!,150273801,Angie,Queens,Glendale,40.70504,-73.86933,Entire home/apt,131,3,11,2019-06-18,2.87,1,319 +32959357,cozy bedroom,56265076,Andrea,Queens,Kew Gardens Hills,40.7201,-73.81043,Private room,50,7,0,,,2,0 +32959389,Great UWS Room - 10 mins from Times Square,248041579,Harkiran,Manhattan,Upper West Side,40.79361,-73.97047,Private room,100,2,4,2019-06-11,1.29,1,0 +32959453,Vibrant Apartment By The Beach,2361627,Will,Queens,Rockaway Beach,40.58532,-73.81687,Entire home/apt,66,7,2,2019-05-14,0.85,1,0 +32960518,BEST LOCATION! Charming Renovated Apt Union Square,248050046,L.Anouk,Manhattan,Gramercy,40.73488,-73.98585,Entire home/apt,190,7,10,2019-06-26,2.70,1,24 +32961345,MONTHLY* CENTRAL PARK 3 BED/2 BATH LINCOLN SQUARE!,245631422,Liam,Manhattan,Upper West Side,40.77348,-73.97994,Entire home/apt,370,30,0,,,1,352 +32961700,Cute Apartment with a terrace near Central Park,12748942,Veronica Gallardo,Manhattan,Upper West Side,40.77912,-73.98029,Entire home/apt,220,30,1,2019-05-31,0.75,1,189 +32961822,Sunny Upper East Side one bedroom apartment,248064547,Sara,Manhattan,Upper East Side,40.7776,-73.94634,Entire home/apt,165,1,12,2019-06-25,3.03,1,75 +32962251,Peaceful home in Brooklyn (2 beds for 3 guest),136621673,Kayla,Brooklyn,Crown Heights,40.67453,-73.94164,Private room,99,1,10,2019-06-23,2.75,1,47 +32962319,Twin Bed in the heart of Downtown Manhattan,1022166,Roda,Manhattan,East Village,40.73216,-73.98937,Shared room,65,4,6,2019-06-08,2.07,1,35 +32963138,Incredible 1 Bedroom in the Heart of Greenpoint!,187487947,Diego,Brooklyn,Greenpoint,40.73232,-73.95664,Entire home/apt,70,1,15,2019-06-01,4.09,6,0 +32963218,Greenpoint Stay for Couple or Single Traveler,19980949,Troy,Brooklyn,Greenpoint,40.7262,-73.95077,Entire home/apt,120,5,0,,,1,160 +32964403,Private Apt (2 Bedrooms includes 1 Bath & Kitchen),67132329,Brian,Manhattan,Two Bridges,40.71253,-73.99599,Private room,145,3,19,2019-07-02,5.43,1,42 +32964714,Stylish bedroom in new luxurious industrial apt #1,38043348,Moises,Manhattan,Harlem,40.80838,-73.94093,Private room,90,1,23,2019-07-01,6.00,2,254 +32966499,A Sweet Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.6758,-73.94146,Entire home/apt,100,3,6,2019-05-12,2.17,4,246 +32967426,Stylish bedroom in new luxurious industrial apt #2,38043348,Moises,Manhattan,East Harlem,40.80808,-73.9405,Private room,90,1,18,2019-06-30,5.74,2,238 +32967988,Cozy Shared Room In Hell’s Kitchen Manhattan,187975743,R.Henry,Manhattan,Hell's Kitchen,40.76306,-73.98867,Shared room,65,1,14,2019-06-24,3.68,8,206 +32968738,Olive’s Guest Quarters #1,152394865,Arline,Brooklyn,East Flatbush,40.63213,-73.94559,Private room,175,2,6,2019-07-01,2.14,3,61 +32969639,Sunny first floor West Village getaway,2206966,Nik,Manhattan,West Village,40.73478,-74.00015,Entire home/apt,170,2,6,2019-06-26,1.94,1,3 +32973353,Spacious shared room in newly renovated house,248161322,Sergii,Brooklyn,Bushwick,40.69977,-73.93966,Shared room,35,30,0,,,14,341 +32974799,Bright twin room in 1 min walk to M/J trains,248161322,Sergii,Brooklyn,Bushwick,40.7008,-73.9394,Shared room,45,30,0,,,14,364 +32975089,"Amazing private room near subway (M,J, L,G trains)",248161322,Sergii,Brooklyn,Bushwick,40.70001,-73.93914,Private room,64,30,0,,,14,338 +32975416,Private room with bathroom close to M/J trains,248161322,Sergii,Brooklyn,Bushwick,40.70106,-73.93895,Private room,80,30,0,,,14,342 +32975511,Massive Modern State of the Art Luxury Home,12593328,Jeromy,Brooklyn,East Flatbush,40.64779,-73.93163,Private room,90,3,3,2019-06-08,2.05,3,0 +32976324,Location!! Sunny Room in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72527,-74.00043,Private room,105,1,18,2019-06-16,5.57,3,91 +32977260,Location!! 2 Bedrooms in MidCentury Soho Apt,19638146,Brett,Manhattan,SoHo,40.72542,-74.00156,Private room,230,1,2,2019-06-01,0.67,3,53 +32978551,Huge cozy room in Upper Manhattan,33897850,Fatou,Manhattan,Washington Heights,40.83713,-73.94827,Private room,65,3,0,,,1,87 +32978570,Large bedroom with 200SF outdoor patio,97853468,Steven,Bronx,Hunts Point,40.81724,-73.88878,Private room,60,3,2,2019-06-29,0.68,4,335 +32978962,"Sunny&Spacious 1BR, Luxury BLDG, GYM,ROOF,LAUNDRY",7365223,Shay,Brooklyn,Greenpoint,40.73281,-73.95208,Entire home/apt,170,3,4,2019-04-27,1.30,1,157 +32979235,Spacious Bedroom With Queen-Size Bed,49251674,Mirta,Brooklyn,Bedford-Stuyvesant,40.69657,-73.94578,Private room,65,3,1,2019-05-23,0.63,1,119 +32979245,Guest House,248202552,Stanislav,Brooklyn,Brighton Beach,40.57974,-73.95892,Private room,55,1,5,2019-06-23,1.29,1,0 +32980398,"Your own sanctuary! Private Floor, 3min to subway",5338560,Daniella,Brooklyn,Bedford-Stuyvesant,40.67812,-73.91465,Entire home/apt,95,2,14,2019-07-07,4.20,1,275 +32982724,Home Away from home,63640163,Erik,Bronx,Fordham,40.8637,-73.89236,Entire home/apt,107,1,22,2019-07-03,6.80,1,339 +32983049,Sonder | 21 Chelsea | Airy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74286,-73.99436,Entire home/apt,209,29,0,,,327,326 +32983723,Cozy & Calm,592967,Portia,Brooklyn,Bedford-Stuyvesant,40.67883,-73.94438,Shared room,35,7,1,2019-04-19,0.37,1,344 +32984848,2 Bedroom Clean & Simple in Manhattan,241567925,Paraskevi,Manhattan,Chinatown,40.71358,-73.99062,Entire home/apt,199,3,7,2019-06-02,1.88,1,49 +32984993,Gorgeous and Sunny Studio on The Upper West Side,239707721,Emily,Manhattan,Upper West Side,40.77872,-73.98435,Entire home/apt,112,30,0,,,1,52 +32986532,Warm and welcoming studio in heart of Chinatown!!!,243501721,Emeline,Manhattan,Chinatown,40.71661,-73.99784,Entire home/apt,200,5,4,2019-05-19,1.09,1,72 +32986796,Furnished private room 5 minutes from Subway,141547523,Mathew,Manhattan,Harlem,40.82943,-73.9469,Private room,50,2,13,2019-06-15,3.42,1,65 +32987477,P,91018434,Jack,Brooklyn,Sheepshead Bay,40.5987,-73.9593,Shared room,25,1,0,,,1,0 +32987685,2bd BOUTIQUE Apartament in the heart of MANHATTAN,8033432,Tom,Manhattan,Hell's Kitchen,40.76694,-73.98773,Entire home/apt,299,1,13,2019-07-07,5.91,4,0 +32987851,Private Room in Cozy Nolita Apartment,13697041,Patrick,Manhattan,Nolita,40.72042,-73.99622,Private room,100,1,14,2019-06-30,5.25,1,30 +32987863,2 bedrooms in upper east side #14,1786901,Shai,Manhattan,Upper East Side,40.78317,-73.94559,Entire home/apt,185,3,1,2019-05-19,0.59,9,92 +32989626,Very nice room - 15min away to Manhattan,248272030,Anissa,Queens,Woodside,40.74299,-73.90295,Private room,50,7,4,2019-05-27,2.07,1,225 +32989719,Luxe Long Island City Space Minutes From Manhattan,60275401,Joel,Queens,Long Island City,40.75038,-73.93904,Private room,89,1,12,2019-06-23,7.20,1,288 +32989829,Entire Large one bedroom close to all areas of NYC,248286585,Maria,Bronx,Kingsbridge,40.88298,-73.8987,Entire home/apt,90,3,5,2019-06-30,1.38,1,321 +32990259,Cozy Studio in Prime Lower East Side,48958358,Geoff,Manhattan,Lower East Side,40.72141,-73.98866,Entire home/apt,200,3,8,2019-06-23,2.03,1,319 +32990282,Private room in Astoria... 20 min to the city.,30698503,Sherry,Queens,Ditmars Steinway,40.77253,-73.91476,Private room,80,7,3,2019-06-21,1.55,1,352 +32990481,Cute & Close to Everything! Plus a Patio!,10888067,Christina,Manhattan,SoHo,40.72697,-74.00409,Entire home/apt,150,3,13,2019-06-24,3.86,1,9 +32991664,Private room with a balcony on the water,161135042,Valerie,Queens,Long Island City,40.74529,-73.95753,Private room,200,1,1,2019-03-22,0.28,1,0 +32991792,Sunny Bed-Stuy Apartment Next to Subway,92333417,Valerie,Brooklyn,Bedford-Stuyvesant,40.68151,-73.94781,Entire home/apt,117,3,10,2019-06-30,3.90,2,308 +32991956,Charming cozy 1 bedroom in the heart of Greenpoint,4158712,Marina,Brooklyn,Greenpoint,40.73282,-73.95208,Entire home/apt,117,2,3,2019-06-23,1.29,1,15 +32992183,Large 2 bedroom Williamsburg loft apartment,72660976,Joseph,Brooklyn,Williamsburg,40.71177,-73.95629,Entire home/apt,180,3,6,2019-06-23,1.51,1,38 +32992225,Enchanting quiet NOLITA sanctuary loft,28480501,Elisha,Manhattan,Nolita,40.72222,-73.99692,Private room,150,14,3,2019-06-21,2.57,1,36 +32992390,Private Room with Own Entrance in Williamsburg!,1489654,Austin,Brooklyn,Williamsburg,40.71247,-73.94915,Private room,93,1,25,2019-06-25,7.01,1,234 +32992438,UWS queen sunny private room by Columbia UNI&Cpark,248314431,David,Manhattan,Upper West Side,40.79931,-73.96072,Private room,75,1,19,2019-06-20,5.28,2,58 +32992674,Sun lit private room in WIlliamsburg,6085353,Anand,Brooklyn,Williamsburg,40.71502,-73.95633,Private room,60,5,3,2019-05-18,0.99,1,179 +32992944,En-suite Bed-Stuy room; Well stocked; Private bath,3777082,Stephen,Brooklyn,Bedford-Stuyvesant,40.68057,-73.94585,Private room,81,1,3,2019-06-13,1.32,1,175 +32993357,Private room in a Bohemian JP Loft! a,96737879,Yury,Brooklyn,Williamsburg,40.70263,-73.93488,Private room,70,5,1,2019-04-20,0.37,3,4 +33001460,Spring near Beautiful Columbia and Central Park!,50741398,Jessica,Manhattan,Upper West Side,40.801,-73.96696,Private room,79,1,10,2019-05-16,3.23,4,0 +33002617,Room for 2 Per diem $50 rental up to 30 days max,248385708,Alexander,Brooklyn,Sheepshead Bay,40.60331,-73.95082,Private room,21,1,2,2019-05-26,1.02,1,90 +33005220,Spend a Night or Seven with a Living NYC Artist!,248404100,Ligel,Bronx,Morris Heights,40.84615,-73.91546,Private room,35,1,25,2019-07-07,7.08,1,241 +33007456,Common single room#5,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68682,-73.92837,Private room,40,1,32,2019-06-29,8.57,6,323 +33007551,Luxury NYC Rental / Affordable / Roosevelt Island,248421148,Justin,Manhattan,Roosevelt Island,40.76092,-73.95154,Private room,80,6,1,2019-05-31,0.77,2,312 +33007610,70' Luxury MotorYacht on the Hudson,7407743,Jack,Manhattan,Battery Park City,40.71162,-74.01693,Entire home/apt,7500,1,0,,,1,364 +33008059,"温馨小宅,安静干净,环境优美!",140630987,Jiali,Queens,Flushing,40.75977,-73.81289,Private room,75,1,10,2019-06-15,2.94,6,126 +33010488,Midtown Pied-à-Terre Close to Central Park,4688336,Richard,Manhattan,Midtown,40.76049,-73.97066,Entire home/apt,225,6,1,2019-05-07,0.48,1,0 +33010913,Wonderful bedroom,248444631,Jehan,Queens,Ridgewood,40.69906,-73.89871,Private room,70,1,0,,,1,127 +33011379,Bright & Cozy 2 BR Apt + Rooftop Williamsburg,29523138,Ita,Brooklyn,Williamsburg,40.70957,-73.94088,Entire home/apt,168,3,7,2019-07-01,3.44,2,190 +33011581,Clean and warm place,139705987,Luz,Queens,East Elmhurst,40.76247,-73.86092,Private room,55,2,16,2019-07-01,4.36,1,158 +33012494,RAVENWOOD: Modern Hipster Retreat in Williamsburg,196273418,Collen,Brooklyn,Williamsburg,40.7194,-73.95899,Private room,89,2,0,,,1,305 +33013821,Light Filled Room in EV,245637171,Min,Manhattan,East Village,40.72997,-73.98553,Private room,62,30,0,,,8,341 +33013974,"Amazing Room, Amazing Location!!",245637171,Min,Manhattan,East Village,40.72841,-73.98615,Private room,62,30,1,2019-05-31,0.77,8,325 +33014236,Chic Room in Trendy EV!,245637171,Min,Manhattan,East Village,40.72932,-73.98474,Private room,68,30,0,,,8,336 +33014255,Spacious comfy apt near L/G/J/M with covered patio,53632978,Annie,Brooklyn,Williamsburg,40.70856,-73.94777,Entire home/apt,200,1,8,2019-05-16,3.00,1,0 +33015342,Nice Room in this EV Gem!,245637171,Min,Manhattan,East Village,40.72843,-73.98581,Private room,62,30,1,2019-05-28,0.71,8,310 +33015815,Superior Room in Gramercy!,245637171,Min,Manhattan,East Village,40.72821,-73.98633,Private room,62,30,0,,,8,310 +33019022,XtraLarge Room SuperComfortable Bed 15mntsToTimeSq,145975067,Ousmane,Manhattan,Harlem,40.82008,-73.93863,Private room,75,2,28,2019-06-30,7.30,3,13 +33019100,Newly Renovated Garden Apartment,248513181,Margie,Brooklyn,Bedford-Stuyvesant,40.6847,-73.9435,Entire home/apt,200,2,3,2019-04-23,1.06,1,157 +33020831,Amazing location at great price,45927588,Ido,Manhattan,Upper West Side,40.77278,-73.98068,Entire home/apt,250,3,3,2019-07-01,1.11,1,2 +33022743,Comfortable room in bushwick,28375704,Ricardo,Brooklyn,Bushwick,40.69679,-73.93405,Private room,80,10,0,,,1,180 +33023192,Retro room in Astoria - 15m to Manhattan,248555214,Michelle,Queens,Astoria,40.76516,-73.92758,Private room,85,2,13,2019-06-28,3.79,2,13 +33024132,"Modern 2BDR. Great Location, Quiet, 24/7 Doorman",248035116,Adam And Ana,Manhattan,Financial District,40.70754,-74.00683,Entire home/apt,195,30,13,2019-06-30,4.59,1,174 +33029434,West 84th Street by (Hidden by Airbnb),156158778,Sally,Manhattan,Upper West Side,40.78545,-73.97123,Entire home/apt,3613,1,1,2019-06-15,1,12,158 +33032132,Stylish new luxury apartment,6051414,Marshall,Manhattan,Battery Park City,40.71092,-74.0177,Entire home/apt,225,4,2,2019-06-11,1.03,1,138 +33033160,beautiful shared apt in Midtown,248068752,Gúney,Manhattan,Hell's Kitchen,40.76448,-73.98895,Shared room,75,1,20,2019-06-16,5.17,5,365 +33033214,Private Room in Gorgeous Duplex Apartment,2300366,Yosub,Brooklyn,Williamsburg,40.70835,-73.94163,Private room,90,2,1,2019-05-22,0.63,2,9 +33034321,Comfortable Shared Apt in Times Square,248068752,Gúney,Manhattan,Hell's Kitchen,40.7647,-73.98853,Shared room,75,1,8,2019-06-02,2.16,5,361 +33034744,Cozy and shared apt in hells&kitchen,248068752,Gúney,Manhattan,Hell's Kitchen,40.76441,-73.98838,Shared room,75,1,6,2019-06-20,1.70,5,361 +33034799,The Brooklyn Experience,27512264,Daniel,Brooklyn,Carroll Gardens,40.68252,-73.99089,Entire home/apt,143,30,0,,,1,181 +33035339,shared room in heart of Manhattan Times Square,248068752,Gúney,Manhattan,Hell's Kitchen,40.76592,-73.98769,Shared room,75,1,5,2019-05-21,1.38,5,365 +33035739,"Overnight Bed, Cozy Shared Room in Times Square",248068752,Gúney,Manhattan,Hell's Kitchen,40.76404,-73.98873,Shared room,75,1,9,2019-05-15,2.33,5,363 +33035865,NEW TOP FLOOR APT. IN BUSHWICK PRIME LOCATION,130279,Alvise,Brooklyn,Bushwick,40.69943,-73.92858,Private room,75,1,3,2019-06-22,2.43,1,0 +33035945,Private hotel room in the heart of Times Square,4342052,Lea,Manhattan,Theater District,40.76089,-73.98709,Private room,299,1,22,2019-06-24,5.69,1,303 +33036559,"Homey, large space 15 mins from Mid Town Manhat!",43063099,Aida,Queens,Astoria,40.7637,-73.9238,Private room,42,7,0,,,1,0 +33038003,HOSTEL MY REFUGE PAISA,248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76362,-73.88163,Private room,35,1,3,2019-06-23,0.78,4,150 +33038028,Aiden’s Red Door @ Crown Heights,32418402,Roxanne,Brooklyn,Crown Heights,40.67165,-73.93143,Private room,82,2,2,2019-06-20,1.02,2,156 +33038266,Spacious Room in Chill Ridgewood Avail. Sept - Oct,216310452,Jorge,Queens,Ridgewood,40.70078,-73.9072,Private room,60,35,1,2019-04-02,0.30,1,64 +33038481,Airy Sunlit BedStuy BnB,40069144,J.L.,Brooklyn,Bedford-Stuyvesant,40.68831,-73.94066,Private room,46,14,0,,,1,37 +33038567,"Spacious Midtown 1BR, w/ Balcony, Fitness center + Doorman by Blueground",107434423,Blueground,Manhattan,Theater District,40.76057,-73.98455,Entire home/apt,343,30,0,,,232,311 +33039061,"✨Unique space, private bath, close to subway!",18869247,Jillian,Queens,Ridgewood,40.70103,-73.91018,Private room,80,2,9,2019-07-02,3.10,1,53 +33040208,Stunning apartment in Williamsburg !,24520756,Lilly,Brooklyn,Williamsburg,40.71131,-73.95869,Entire home/apt,150,7,0,,,1,129 +33040300,"Artists Created Peaceful, Spacious, Manhattan NYC",248671285,Brian,Manhattan,Harlem,40.82364,-73.95433,Private room,75,4,5,2019-07-04,2.31,1,80 +33041216,Room for 2 Persons Center of Downtown NYC,35927005,Kathy,Manhattan,Lower East Side,40.715,-73.98633,Private room,86,1,7,2019-06-24,2.84,10,115 +33041634,"Zen Sanctuary! Stunning View, Prime Location",73369106,Adam,Brooklyn,Williamsburg,40.71864,-73.96107,Entire home/apt,319,2,5,2019-07-06,1.90,1,47 +33042309,Cozy & Affordable Room in 3 Story Brownstone,190981544,Martita,Brooklyn,Bedford-Stuyvesant,40.68613,-73.9295,Private room,100,1,1,2019-04-23,0.39,6,356 +33042347,★★ Spacious Single House | Close to Everything! ★★,16637631,J.C & Johanna,Brooklyn,Williamsburg,40.70984,-73.96366,Entire home/apt,260,1,24,2019-07-05,6.43,1,45 +33043051,Cosy private bedroom in UES/Harlem,41348157,Petra,Manhattan,East Harlem,40.79342,-73.93889,Private room,70,2,3,2019-03-30,0.84,3,10 +33044053,"Stay at the ""Claudette"" guest room in SoHa",70506007,Barry And Jimmy,Manhattan,Morningside Heights,40.80392,-73.95829,Private room,100,2,16,2019-06-29,4.57,1,38 +33044128,Morden spacious Private room near subway M/J/L/G,248161322,Sergii,Brooklyn,Bushwick,40.69995,-73.93933,Private room,64,30,0,,,14,364 +33044270,Quite clean queen size bedroom,154234826,Max,Manhattan,Harlem,40.82039,-73.94402,Private room,50,3,4,2019-05-23,1.97,1,9 +33044381,^^Dynamic Private Budget Room. 20 min to City,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.68367,-73.95155,Private room,65,2,7,2019-06-24,2.02,7,272 +33044727,Lovely Budget Private Room 20 min to city,52140932,Diana And Peter,Brooklyn,Bedford-Stuyvesant,40.6833,-73.95008,Private room,65,2,4,2019-05-08,1.32,7,347 +33046019,Brand New Upper East Living,61391963,Corporate Housing,Manhattan,Upper East Side,40.77991,-73.95267,Entire home/apt,117,30,0,,,91,311 +33046072,Large 2 Bed Woodside apt 10 Minutes from Manhattan,154525001,Rumana & Dan,Queens,Woodside,40.74443,-73.90885,Entire home/apt,125,1,14,2019-06-23,3.68,1,288 +33046111,Gorgeous 2 bedroom apartment in the East village,218481230,Flynn,Manhattan,East Village,40.72213,-73.97791,Private room,249,3,10,2019-06-18,3.45,1,91 +33046367,"cozy bedroom close to Time Square, Manhattan",248723983,Jeyruth,Manhattan,Hell's Kitchen,40.76279,-73.99473,Private room,93,1,1,2019-05-30,0.75,1,0 +33046604,Brand New BK Duplex in the Center of it All!!!,65613634,Sam,Brooklyn,Bedford-Stuyvesant,40.68736,-73.93827,Entire home/apt,400,2,13,2019-06-23,5.34,1,278 +33046682,Cozy Studio in tree-lined Park Slope Brooklyn,22217533,Kristin,Brooklyn,Park Slope,40.67301,-73.97154,Entire home/apt,135,5,5,2019-06-09,1.81,1,318 +33047256,Cozy Boutique Studio | Heart of NYC,11391775,Aidin,Manhattan,Kips Bay,40.74284,-73.97967,Entire home/apt,150,1,22,2019-06-26,7.02,1,29 +33047674,A great place to relax after being in the city,231103652,Christine,Manhattan,Harlem,40.824,-73.95229,Private room,50,4,15,2019-07-05,4.55,1,4 +33047896,Charming and homie Sunnyside apartment,3141293,Camila,Queens,Sunnyside,40.74737,-73.9143,Entire home/apt,100,6,0,,,1,10 +33048925,A Lofted Piece of New York,30445677,Andrey,Manhattan,Upper West Side,40.77824,-73.97964,Entire home/apt,250,2,6,2019-07-03,1.59,1,21 +33049114,A Sweet Garden Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67387,-73.9424,Entire home/apt,100,3,5,2019-05-12,2.03,4,250 +33049134,Modern East Village Studio In A Great Location,245681626,Helena & Jim,Manhattan,East Village,40.72583,-73.97945,Entire home/apt,168,3,20,2019-06-29,5.22,1,30 +33049970,Cozy room in BK -FEMALE ONLY,77698412,Mié,Brooklyn,Bedford-Stuyvesant,40.69159,-73.93339,Private room,40,2,1,2019-07-03,1,1,0 +33050172,UWS - Pre-War Building- Large space,29461390,Sharone,Manhattan,Upper West Side,40.79288,-73.9723,Private room,82,1,7,2019-07-01,2.44,1,178 +33050650,Room in a Comfy Brooklyn Apartment,240717293,Carla,Brooklyn,Vinegar Hill,40.70195,-73.98309,Private room,85,2,10,2019-06-24,4.05,1,1 +33055126,Cozy place located in the Heart of Manhattan,248788151,Anayah,Manhattan,Hell's Kitchen,40.76156,-73.98749,Entire home/apt,160,3,8,2019-07-08,2.58,1,1 +33060504,Five minutes from Central Manhattan,1648510,Lee,Manhattan,Roosevelt Island,40.76213,-73.94893,Entire home/apt,160,4,9,2019-06-18,3.38,1,33 +33060929,"ROOM FOR TWO 15 MINUTES WALL STREET, NO CLEAN FEE",247937619,Jessy,Manhattan,Lower East Side,40.71525,-73.98735,Private room,72,5,17,2019-06-21,5.00,1,49 +33061311,Decatur street Limestone an Urban Zen experience,7289570,Shelley,Brooklyn,Bedford-Stuyvesant,40.68382,-73.9204,Entire home/apt,150,3,15,2019-07-01,4.89,1,75 +33061453,Luxury NYC Rental/Affordable /Roosevelt Island 2,248421148,Justin,Manhattan,Roosevelt Island,40.76038,-73.95085,Private room,80,6,3,2019-05-27,1.25,2,260 +33061842,"Cozy house , very quiet , clean room !",140630987,Jiali,Queens,Flushing,40.77078,-73.82615,Private room,60,1,13,2019-06-23,4.94,6,125 +33063156,LOVE this Bed-Stuy Open Concept @SpotlessRock,248818787,J. Westley,Brooklyn,Bedford-Stuyvesant,40.68704,-73.9304,Private room,80,2,3,2019-06-25,3,1,83 +33064746,Central Park 2 Bed Apt. Steps from Park & Subway,11305100,Shae,Manhattan,Harlem,40.79943,-73.95376,Entire home/apt,150,3,6,2019-06-03,1.59,1,10 +33064805,Luxurious 3 Bedroom Home on LES/Chinatown Border,118375653,Charlene,Manhattan,Two Bridges,40.7119,-73.99364,Entire home/apt,250,3,0,,,3,0 +33065137,DITMAS PARK/FLATBUSH Private Rm with LOTS of Light,2392755,Chase,Brooklyn,Flatbush,40.64299,-73.95954,Private room,45,2,8,2019-06-23,3.00,1,109 +33067252,3 person shared room at the heart of Brooklyn,248161322,Sergii,Brooklyn,Bushwick,40.70002,-73.94054,Shared room,35,30,1,2019-03-15,0.26,14,341 +33067318,A very conducive private area near to train statn,248856446,Bilikis,Queens,Rockaway Beach,40.58891,-73.80181,Private room,50,1,1,2019-05-26,0.67,1,179 +33068174,Home,25370675,Geovanny,Queens,Elmhurst,40.73247,-73.8768,Private room,443,1,0,,,1,365 +33068756,"Luxury 2BDR in Prime Area, Doorman, Elevator",248036814,Anton,Manhattan,Financial District,40.7069,-74.00606,Entire home/apt,195,30,17,2019-06-23,5.10,1,203 +33069506,Large Chelsea Bedroom!,130476089,Lennon,Manhattan,Chelsea,40.74216,-73.99962,Private room,83,1,1,2019-04-10,0.33,2,0 +33069533,"Sunny, plant filled, heavenly room",10478551,Lyora,Brooklyn,Clinton Hill,40.68419,-73.96428,Private room,50,10,0,,,1,0 +33069555,Hermoso Cuarto para compartir en familia,248714625,Janneth,Queens,East Elmhurst,40.75985,-73.88233,Shared room,70,1,1,2019-04-26,0.41,1,89 +33070416,Prime 1 bedroom Doorman Gym RoofDeck 5221,16098958,Jeremy & Laura,Manhattan,Midtown,40.74885,-73.98698,Entire home/apt,260,30,1,2019-05-06,0.46,96,343 +33071794,Prime Location 44stDoorman Gym Studio!5217,16098958,Jeremy & Laura,Manhattan,Midtown,40.75032,-73.97143,Entire home/apt,175,30,0,,,96,342 +33071843,habitacion amplia y privada a 20 min de manhattan,195657353,Carolina,Brooklyn,Bushwick,40.70005,-73.91295,Private room,42,2,0,,,2,311 +33072230,Sonder | Stock Exchange | Sleek 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.01186,Entire home/apt,520,2,6,2019-06-16,2.43,327,262 +33072533,Charming European Apt with City View's + Terrace,240480084,Brittany,Brooklyn,Williamsburg,40.71719,-73.94795,Entire home/apt,300,3,2,2019-06-03,0.98,1,59 +33072686,Prime Location One Bed Doorman Gym Deck!5223,16098958,Jeremy & Laura,Manhattan,Hell's Kitchen,40.76291,-73.9875,Entire home/apt,250,30,0,,,96,303 +33072698,Perfect studio in Midtown,248901969,Tugce,Manhattan,Murray Hill,40.74613,-73.97528,Entire home/apt,175,3,4,2019-06-15,1.52,1,270 +33072804,34th and 6th Ave - Doorman Gym Roofdeck 1 bed 5234,16098958,Jeremy & Laura,Manhattan,Midtown,40.74909,-73.98657,Entire home/apt,170,30,1,2019-05-12,0.51,96,345 +33073934,habitacion con entrada privada a 20 min de manhat,195657353,Carolina,Brooklyn,Bushwick,40.70083,-73.9122,Private room,42,2,0,,,2,125 +33075317,"""Bushwick in Manhattan"" Interactive, Private Room",247446830,Krista,Manhattan,Harlem,40.82576,-73.94861,Private room,73,2,14,2019-07-02,3.72,2,35 +33075770,Private room in Lower East Side,4221836,Rebekah,Manhattan,Lower East Side,40.71887,-73.99256,Private room,95,5,7,2019-06-13,2.28,1,118 +33077121,Bright and Spacious Queens Townhouse,4037192,Lukasz,Queens,Middle Village,40.72355,-73.87456,Entire home/apt,100,30,1,2019-05-31,0.77,1,323 +33077150,Comfortable & Private One Bedroom Apt in NYC!,248944703,Sasha,Manhattan,Murray Hill,40.7462,-73.97296,Entire home/apt,160,2,11,2019-07-03,4.34,1,90 +33078339,Clean Room in Bushwick Brooklyn,248956396,Leoluis,Brooklyn,Bushwick,40.69179,-73.91404,Private room,45,1,24,2019-06-24,6.61,1,167 +33078564,Crown Heights LUXURY Kingston Apt,2931897,Shiri,Brooklyn,Crown Heights,40.66568,-73.94176,Entire home/apt,250,3,0,,,1,365 +33080376,Lovely room in a great location !!,248971429,Tzlil,Brooklyn,Bedford-Stuyvesant,40.68966,-73.95353,Private room,60,4,0,,,1,0 +33080606,Ladies Only Shared Room,223574944,Carly,Manhattan,Kips Bay,40.74392,-73.98072,Shared room,35,2,2,2019-05-25,0.57,2,353 +33085491,Modern and Spacious Brooklyn Apartment,88497114,Veronica,Brooklyn,Bedford-Stuyvesant,40.68857,-73.9384,Entire home/apt,160,2,15,2019-07-06,6.72,1,71 +33086413,Beautiful one bedroom in Astoria NY private Room,65887955,Mike,Queens,Astoria,40.76475,-73.90918,Private room,69,3,0,,,1,73 +33087134,Spacious 3people room close to Broadway-J/M trains,248161322,Sergii,Brooklyn,Bushwick,40.70107,-73.93934,Shared room,35,30,1,2019-04-14,0.35,14,341 +33087999,"Sunny Private Room w Pool, Sauna, Gym + More",28408288,Jeannette,Brooklyn,Bushwick,40.69339,-73.90461,Private room,49,2,6,2019-06-02,1.62,1,0 +33089083,Chic 2 bedroom Brownstone with garden 17m to MHTN.,249030378,Gloria,Brooklyn,Bedford-Stuyvesant,40.68965,-73.92908,Entire home/apt,110,4,13,2019-07-03,3.71,1,161 +33090783,Modern East Williamsburg Apartment,713776,Hayley,Brooklyn,Williamsburg,40.71417,-73.94123,Entire home/apt,94,3,4,2019-06-16,1.32,1,31 +33093166,Spacious Room in 4 BR!,245637171,Min,Manhattan,East Village,40.72849,-73.98576,Private room,82,30,0,,,8,365 +33093855,Morden 3 person shared room fully furnished.,248161322,Sergii,Brooklyn,Bushwick,40.70007,-73.93899,Shared room,35,30,0,,,14,341 +33094168,Travelers Paradise Steps from Empire State Bld,230917343,Joseph,Manhattan,Midtown,40.74758,-73.98276,Entire home/apt,299,3,8,2019-06-26,2.89,1,306 +33094220,Bright and Quiet near Union Square in the Village,249069377,Natasha,Manhattan,Greenwich Village,40.73424,-73.99355,Private room,120,1,7,2019-06-12,1.96,1,13 +33094281,Times Square,247796242,Justin,Manhattan,Midtown,40.75492,-73.98027,Private room,382,3,0,,,1,201 +33094364,Boho Studio in West Village- PRIME LOCATION,28770493,Haley,Manhattan,West Village,40.73508,-74.00004,Entire home/apt,204,4,3,2019-06-30,1.36,1,6 +33094622,BEAUTIFUL 1 BED ROOM 10 MINS FROM JFK,29349060,Ode,Queens,St. Albans,40.6853,-73.76814,Private room,55,1,12,2019-06-18,3.13,3,180 +33096377,"Classy apartment in downtown +Everything you need",8661986,Eugene,Manhattan,Stuyvesant Town,40.73223,-73.98134,Entire home/apt,279,2,26,2019-07-05,7.22,1,229 +33096564,Tu Tranquilidad no tiene precio,182434290,Ana Maria,Queens,Ditmars Steinway,40.77134,-73.91328,Private room,52,1,5,2019-05-23,1.60,2,188 +33097219,Brand new home in Staten island!,249104360,Arkady,Staten Island,Grymes Hill,40.61572,-74.08901,Entire home/apt,300,5,1,2019-05-19,0.58,1,174 +33097224,Spacious Luxury 2B2B in the Heart of Manhattan,248554249,Ammy,Manhattan,Midtown,40.74362,-73.98207,Entire home/apt,388,3,13,2019-06-21,3.61,1,246 +33097308,Cozy room in Brooklyn's historical district,4401527,Pouliasis,Brooklyn,Clinton Hill,40.68464,-73.96151,Private room,40,6,1,2019-04-03,0.31,1,17 +33098823,Luxury Two Bedroom on High Floor with Great Views,248975053,Richard,Manhattan,Financial District,40.7068,-74.00632,Entire home/apt,195,2,12,2019-06-24,3.87,1,24 +33100876,Bright room in Bushwick,249146659,Anne,Brooklyn,Bushwick,40.70204,-73.93027,Private room,40,5,1,2019-04-17,0.36,1,364 +33101073,Bright UES apt close to everything 24hr doorman,147827717,Julie,Manhattan,Upper East Side,40.76329,-73.96119,Private room,109,4,0,,,1,101 +33101286,"2, 3 or 4 Floors, Heart of Greenwich Village",4129805,Evelyn,Manhattan,West Village,40.73242,-74.00404,Entire home/apt,400,2,1,2019-05-24,0.65,5,102 +33102485,Exclusive Dream room 8 mins from JFK Smoking OK!,141645843,Gedan,Queens,Jamaica,40.68093,-73.79713,Private room,45,1,9,2019-07-06,2.67,2,113 +33107400,"Wonderful 3 people room near M,J, L,G trains",248161322,Sergii,Brooklyn,Bushwick,40.70028,-73.93952,Shared room,35,30,0,,,14,333 +33107548,NYUW05-2: Centra Park one bedroom by river,39890192,Laura,Manhattan,Upper West Side,40.80319,-73.96676,Private room,70,15,0,,,12,153 +33107690,NYUW05-4:Columbus university Central Park one room,39890192,Laura,Manhattan,Upper West Side,40.80031,-73.96775,Private room,70,21,1,2019-06-04,0.86,12,119 +33108984,Entire spacious 1 bd apt. Easy commute to City.,244371444,Nicole,Queens,Sunnyside,40.74383,-73.92332,Entire home/apt,130,13,0,,,1,0 +33110021,Big private room,211906172,Sercan,Queens,Rego Park,40.72407,-73.86585,Private room,70,4,0,,,1,365 +33110303,Cozy NYC Studio with Great Light & Comfort!,11776513,Yuki,Manhattan,Upper East Side,40.78475,-73.95339,Entire home/apt,99,10,2,2019-05-02,0.59,1,188 +33111095,Private Comfortable Room,153356660,Johnathen,Brooklyn,Bushwick,40.69594,-73.90685,Private room,75,1,0,,,1,83 +33112368,Ysa's room,249243301,Ysa,Bronx,Mount Hope,40.8477,-73.90988,Private room,24,2,2,2019-05-01,0.68,1,0 +33112524,Sunny 2-Bedroom Union Square Apartment,39653778,Greg,Manhattan,East Village,40.73161,-73.98438,Entire home/apt,220,4,1,2019-03-17,0.26,1,1 +33112929,Prospect Lefferts Garden Private rm 30 min to Nyc,27785287,Bendji,Brooklyn,Flatbush,40.65345,-73.95476,Private room,50,2,6,2019-06-21,1.78,1,2 +33113865,Small room for only you :),140630987,Jiali,Queens,Flushing,40.76897,-73.82728,Private room,39,1,27,2019-07-05,8.62,6,133 +33113990,Adorable walk-up on the high line—with views!,2919299,Sean,Manhattan,Chelsea,40.75024,-74.00213,Entire home/apt,175,4,3,2019-06-09,1.11,1,15 +33114243,Stylish Manhattan Bedroom!!,140830391,Jay,Manhattan,Harlem,40.8159,-73.9396,Private room,70,1,4,2019-07-05,1.14,9,260 +33115153,Oasis in the Jungle,4276261,Yara,Manhattan,East Village,40.72625,-73.99014,Entire home/apt,350,3,1,2019-05-27,0.70,1,66 +33115218,Studio apt in the East Village,10530947,Miguel,Manhattan,East Village,40.72047,-73.97998,Entire home/apt,120,4,1,2019-03-17,0.26,1,0 +33115959,New Modern Apartment at Center of Manhattan,249279890,Stella,Manhattan,Lower East Side,40.71852,-73.99067,Private room,129,3,12,2019-06-13,3.53,1,85 +33116655,Very quite and convenient location.,38604449,Pasang,Queens,Woodside,40.75563,-73.90493,Private room,50,2,1,2019-05-11,0.51,2,262 +33117486,Two Bedroom Apt 25 Min From Midtown Manhattan,249297875,Guoxin,Bronx,Woodlawn,40.89768,-73.87363,Entire home/apt,35,2,18,2019-06-30,5.35,1,51 +33117497,Beautiful Spacious Brooklyn Room #1,249291429,Boho,Brooklyn,Clinton Hill,40.69306,-73.96132,Private room,45,1,4,2019-05-26,1.88,2,135 +33118582,UPPER WEST SIDE: Renovated Private Cozy Room & BR,15807180,Michael,Manhattan,Upper West Side,40.78536,-73.97116,Private room,82,2,26,2019-06-30,7.29,3,288 +33119736,Perfect Getaway in West Village Duplex,26754841,Deo,Manhattan,West Village,40.73674,-74.00411,Private room,180,3,1,2019-05-11,0.51,2,123 +33119863,Queens Studio.,42540127,Tio,Queens,Bayside,40.77067,-73.78278,Entire home/apt,55,2,37,2019-07-08,10.37,1,6 +33120664,"Beautiful Cozy Bedroom In Astoria, NYC",86190506,Daniel,Queens,Astoria,40.75698,-73.91362,Private room,65,3,8,2019-07-07,3.48,1,71 +33123667,Perfect Place to just Sleep while you explore NYC,56349939,Oliver,Manhattan,Lower East Side,40.71728,-73.99085,Private room,84,2,18,2019-06-29,5.35,1,21 +33126746,Bright Beautiful 1br Apt in Hipster neighborhood.,249309586,Hoon J,Manhattan,Chinatown,40.71502,-73.99066,Entire home/apt,150,4,8,2019-06-25,2.38,1,255 +33127307,COZY 1 BED ROOM 10 MINS FROM JFK AND TRAIN STATION,29349060,Ode,Queens,St. Albans,40.68481,-73.76952,Private room,55,1,16,2019-06-01,4.21,3,269 +33127624,Exclusive home near JFK and Long Island Rail Road.,245002893,Christopher,Queens,Rosedale,40.66875,-73.73627,Private room,70,1,3,2019-06-02,1.11,2,180 +33127817,"Master bedroom in sunny, renovated, corner apt",2537981,Laura,Brooklyn,Bushwick,40.6951,-73.92898,Private room,78,3,0,,,1,105 +33128125,Beautiful Brownstone Apartment in Sugar Hill,249042333,Jerry,Manhattan,Harlem,40.82808,-73.94563,Entire home/apt,148,2,8,2019-06-21,2.82,1,334 +33129033,Sweet,41941061,Johanna,Manhattan,Hell's Kitchen,40.76655,-73.99216,Private room,350,1,0,,,1,89 +33129377,"Beautiful, spacious three bedroom apt with terrace",4094038,Alex,Brooklyn,Williamsburg,40.71198,-73.94191,Entire home/apt,285,3,3,2019-07-02,3,4,16 +33129394,Northern Manhattan Bicycle & Guitar Oasis,249404981,Susan,Manhattan,Inwood,40.86948,-73.92122,Entire home/apt,129,2,0,,,1,65 +33130688,Luxury 2 bedroom/2 bathroom apartment in Manhattan,65574027,Liv,Manhattan,Upper East Side,40.7739,-73.94937,Entire home/apt,370,5,0,,,1,15 +33131785,luxury apartment in east village,52584817,Gabriel,Manhattan,East Village,40.72353,-73.97646,Entire home/apt,150,2,5,2019-06-28,1.33,1,4 +33133218,Harlem Musicians Home !!,249286477,Green,Manhattan,Harlem,40.82734,-73.94718,Entire home/apt,85,4,3,2019-07-06,1.13,1,6 +33133219,Spacious studio on quiet tree lined street,109448921,Mark,Brooklyn,Prospect-Lefferts Gardens,40.66379,-73.95239,Entire home/apt,75,2,12,2019-07-06,3.56,1,8 +33133321,Majestic Mansion LifeStyle :),74373729,Shah,Queens,Bayside,40.77811,-73.77069,Entire home/apt,2600,6,3,2019-05-30,1.73,1,362 +33133919,Great studio in Carroll Gardens.,120296922,Miriam,Brooklyn,Carroll Gardens,40.67716,-74.00074,Entire home/apt,110,3,7,2019-06-23,2.08,1,0 +33134698,Furnished Upper West Side near Central Park,50741398,Jessica,Manhattan,Upper West Side,40.80071,-73.96616,Private room,80,1,14,2019-05-16,3.89,4,0 +33135126,Light Filled 1BDRM in Clinton Hill,81867025,Lauren,Brooklyn,Bedford-Stuyvesant,40.68484,-73.9552,Entire home/apt,100,14,0,,,1,0 +33135391,Quintessential West Village Getaway,6520032,Carolina,Manhattan,West Village,40.73551,-74.00138,Entire home/apt,250,2,6,2019-07-06,2.12,1,19 +33135591,Beautiful 1 Bedroom,549971,Ginta,Manhattan,Chinatown,40.7142,-73.99254,Entire home/apt,150,30,3,2019-05-17,1.25,1,33 +33135950,Victorian Brooklyn Spacious Living!,130981288,Geoffrey,Brooklyn,Flatbush,40.64938,-73.96682,Entire home/apt,110,2,1,2019-03-23,0.28,1,260 +33136564,Charming Red Hook loft with yard,116826665,Christina,Brooklyn,Red Hook,40.67962,-74.01294,Entire home/apt,122,13,1,2019-06-01,0.77,1,12 +33137479,Luxury 2BR/2BA by Grand Central with views,247120058,William,Manhattan,Murray Hill,40.74699,-73.97301,Entire home/apt,375,2,10,2019-06-18,3.75,1,26 +33138120,Essex House in front of Central Park!,36793116,Ilan,Manhattan,Midtown,40.76582,-73.97958,Entire home/apt,399,30,3,2019-06-20,1.32,1,303 +33138268,"Absolutely stunning 3bed 1ba, Thank me later!",249495371,Shayaa,Brooklyn,Bushwick,40.69269,-73.92178,Entire home/apt,201,1,24,2019-07-04,7.58,1,296 +33138276,1 Private BR in the heart of Fidi!,209557185,Isabella,Manhattan,Financial District,40.70522,-74.00925,Private room,150,7,6,2019-05-08,1.65,1,351 +33138360,New Luxury Brooklyn Apartment Near Manhattan,39362079,Jon,Brooklyn,Crown Heights,40.6704,-73.95038,Entire home/apt,95,2,7,2019-05-27,2.50,1,0 +33138453,Art/Musician Loft Space in Greenpoint,42732656,Jesse,Brooklyn,Greenpoint,40.72769,-73.94309,Private room,69,3,4,2019-05-23,1.14,1,0 +33138741,Most Convenient Apartment in Upper Manhattan,249500632,Mike,Manhattan,Harlem,40.81476,-73.94723,Entire home/apt,75,30,1,2019-05-31,0.77,1,13 +33138874,The Heart of the Bronx,249500015,Pedro,Bronx,Soundview,40.8265,-73.87045,Entire home/apt,103,2,19,2019-06-28,5.70,1,75 +33140204,Beautiful Brownstone in Bed-Suy Brooklyn,5944855,Melissa,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93649,Entire home/apt,150,2,2,2019-05-27,0.78,1,92 +33140984,COZY ROOM IN THE HEARTOF BROOKLYN (420 FRIENDLY),128369561,Frampton,Brooklyn,Bushwick,40.69544,-73.91012,Private room,46,1,7,2019-06-08,2.04,1,130 +33141479,Quiet Bright Park Slope BK room w/private bathroom,3988394,Adam,Brooklyn,South Slope,40.66829,-73.98871,Private room,95,1,16,2019-07-03,5.11,1,80 +33141938,Clean Beautiful New apartment renovated in 2019,19303369,Hiroki,Manhattan,Inwood,40.86507,-73.92348,Private room,35,29,0,,,37,31 +33142839,Incredible Location! Flatiron 4BR Loft!,248747777,Drake,Manhattan,Chelsea,40.7394,-73.99868,Entire home/apt,199,2,8,2019-06-24,2.89,1,125 +33148781,"Beautiful room in Brooklyn, 2 min ocean and train",196872053,Marina,Brooklyn,Brighton Beach,40.57753,-73.95901,Private room,80,3,0,,,2,350 +33151516,Best Hood in NYC. Private Bedroom in ASTORIA!!,1852219,Douglas And Juthamas,Queens,Astoria,40.7718,-73.91942,Private room,62,2,16,2019-06-23,4.53,1,313 +33153247,Comfortable quiet single room in beautiful Astoria,104796372,Eric,Queens,Astoria,40.77151,-73.93066,Private room,65,1,2,2019-06-23,2,1,7 +33154427,Artsy apartment in Crown Heights next to Subway,82524498,Javier,Brooklyn,Crown Heights,40.66697,-73.93508,Entire home/apt,85,5,9,2019-06-18,2.65,1,7 +33154669,Center Located OneBedroom CloseTo LGA Train7/E/F,90131587,Yu Qun,Queens,Elmhurst,40.73716,-73.87957,Entire home/apt,109,2,3,2019-05-26,1.15,1,0 +33155086,Large Studio close to everything,190643075,Ally,Brooklyn,Bay Ridge,40.63015,-74.02305,Entire home/apt,90,6,1,2019-06-07,0.94,1,0 +33155194,Bed-Stuy 2 Bed/2 Bath - Newly Renovated,34014150,Barry,Brooklyn,Bedford-Stuyvesant,40.68394,-73.94002,Entire home/apt,175,4,4,2019-06-03,1.64,1,196 +33155206,"Central, spacious, beautiful, well-appointed 1-br",13564519,Rebecca,Manhattan,Midtown,40.76309,-73.98063,Entire home/apt,190,3,1,2019-06-05,0.88,1,84 +33155771,One bedroom apartment in the Heart of Williamsburg,3401286,Katalin,Brooklyn,Williamsburg,40.71848,-73.94393,Entire home/apt,170,2,4,2019-07-05,1.22,1,1 +33155909,Spacious apt in NYC minutes away from midtown,249637449,Inna,Manhattan,Harlem,40.82311,-73.94749,Entire home/apt,130,2,12,2019-07-01,3.40,1,14 +33155912,"Brooklyn Heights Contemporary Gem, 3 Bed, 2 Bath",36477189,David,Brooklyn,Brooklyn Heights,40.69944,-73.99596,Entire home/apt,600,3,8,2019-07-02,2.96,1,44 +33155996,"Bright and Spacious in Bed Stuy, Brooklyn",8902538,Laura,Brooklyn,Bedford-Stuyvesant,40.69264,-73.94551,Entire home/apt,100,2,5,2019-05-21,1.61,1,0 +33156123,"Cool, clean and confortable 1 bedroom in Bushwick",2928681,Santiago,Brooklyn,Bushwick,40.70487,-73.92533,Entire home/apt,150,3,1,2019-05-05,0.46,1,6 +33156210,LUXE bedroom in HUGE 2BR APT! Wash/Dry! Terrace!,95604631,Tom,Brooklyn,Williamsburg,40.71579,-73.95092,Private room,79,4,0,,,1,110 +33156988,Beautiful Bright TriBeCa Loft - steps from Soho!,61256671,Jason,Manhattan,Tribeca,40.71989,-74.00668,Entire home/apt,290,2,4,2019-06-25,2.26,1,75 +33157003,Brenda's Palace,92190906,Brenda,Brooklyn,Flatlands,40.62636,-73.91824,Entire home/apt,110,3,6,2019-06-28,2.28,1,339 +33157359,Private room for CAT LOVERS,138994918,Priscila,Manhattan,East Harlem,40.80143,-73.93803,Private room,50,3,0,,,1,41 +33157502,#2 Make yourself at home. (close to LGA and JFK),249649095,Tenzin,Queens,East Elmhurst,40.76132,-73.88192,Private room,53,2,16,2019-06-21,4.49,1,79 +33157841,"A beautiful, Bright , Specious 2 Bedroom apt",28460706,Roger,Brooklyn,Bedford-Stuyvesant,40.67657,-73.91146,Entire home/apt,80,30,0,,,1,312 +33159062,LES Bachelor/ette Pad,249661823,Cara,Manhattan,Lower East Side,40.71829,-73.989,Entire home/apt,200,2,4,2019-06-02,1.54,1,3 +33159289,"#4 Cozy studio, 2 blocks from CENTRAL PARK",231138233,Filiz,Manhattan,East Harlem,40.7891,-73.94906,Entire home/apt,180,1,17,2019-06-23,4.77,5,40 +33161019,"Treat yourself to Complete, Private Tranquility",249676515,Karen,Queens,Rosedale,40.65233,-73.72656,Entire home/apt,80,2,1,2019-06-15,1,1,176 +33161119,LUXURY 2BED 2 BATH/ LINCOLN CENTER,131647128,Emily,Manhattan,Upper West Side,40.77424,-73.98827,Entire home/apt,260,30,7,2019-06-17,2.73,25,274 +33162983,SPACIOUS 4BR/2BA APT W/PRIVATE OUTDOOR SPACE UWS,9293730,Inna,Manhattan,Upper West Side,40.80044,-73.96176,Entire home/apt,190,30,1,2019-05-04,0.45,16,310 +33163633,Beautiful Spacious Brooklyn Room #2,249291429,Boho,Brooklyn,Bedford-Stuyvesant,40.69284,-73.95954,Private room,45,3,0,,,2,135 +33164622,Private large bedroom with skylight in Loft.,3502098,Cecilia,Brooklyn,Williamsburg,40.71646,-73.95996,Private room,75,2,10,2019-07-03,2.83,1,177 +33165620,Sunny studio in great location,249708372,Gabriel,Queens,Long Island City,40.75817,-73.92949,Entire home/apt,100,3,11,2019-07-01,3.30,1,296 +33167738,E. Williamsburg/Bushwick/Bedstuy Private Bedroom,21524809,Jeremy,Brooklyn,Williamsburg,40.70312,-73.94464,Private room,75,4,6,2019-06-24,1.98,1,55 +33168074,Homely Peaceful Apartment. Close to JFK,77393311,Edgar,Queens,Woodhaven,40.69567,-73.84949,Private room,50,2,7,2019-05-31,2.00,1,174 +33168966,Lower East Side at East Broadway 2b,168565806,Paolo,Manhattan,Lower East Side,40.71171,-73.99077,Entire home/apt,125,30,1,2019-05-26,0.68,2,46 +33169141,Split level entire 2Bedroom Apt.,219333557,Rafael,Queens,East Elmhurst,40.76258,-73.86855,Entire home/apt,95,1,16,2019-07-03,4.40,7,81 +33169495,Clean and convenient in the heart of Brooklyn,389297,Jonathan,Brooklyn,Boerum Hill,40.68872,-73.98938,Entire home/apt,126,5,0,,,1,0 +33169786,Cozy Fully Furnished,1602809,Christina,Brooklyn,Prospect-Lefferts Gardens,40.65953,-73.96059,Entire home/apt,150,30,0,,,1,278 +33169890,Cozy Bedroom on Upper west near Columbia U,233917490,Yoannie,Manhattan,Upper West Side,40.80221,-73.96677,Private room,40,1,0,,,1,1 +33170496,"Cozy, charming, quiet and modern one bedroom apt!",165054817,Johanna,Bronx,Pelham Bay,40.84342,-73.83929,Entire home/apt,125,1,15,2019-07-07,5.77,1,336 +33171891,30 days minimum Time square West Midtown apartment,177396569,Yanina,Manhattan,Hell's Kitchen,40.76043,-73.99132,Entire home/apt,4100,30,0,,,3,180 +33172245,"#2 Cozy 1 bedroom apartment,2 block to CENTRALPARK",231138233,Filiz,Manhattan,East Harlem,40.78909,-73.94956,Entire home/apt,180,1,21,2019-07-06,6.00,5,87 +33172249,"#3 Cozy Studio , 2 blocks from Central Park",231138233,Filiz,Manhattan,East Harlem,40.78878,-73.94838,Entire home/apt,165,1,23,2019-07-07,6.83,5,102 +33175415,Cozy Studio Apt Brooklyn Close to Brighton & Coney,114736959,Ed,Brooklyn,Gravesend,40.58822,-73.97294,Entire home/apt,85,30,1,2019-04-05,0.31,6,347 +33181402,Beautiful Bed-Stuy Brownstone w/ Outdoor Oasis,1940153,Dan & Bliss,Brooklyn,Bedford-Stuyvesant,40.68164,-73.9262,Entire home/apt,199,2,3,2019-07-02,3,1,67 +33183013,Private room in light + plant filled zen oasis!!,23276234,Samantha,Brooklyn,Williamsburg,40.70905,-73.95315,Private room,90,3,2,2019-04-21,0.71,1,0 +33184032,"Comfy Kips Bay 1BR w/ Gym, Doorman + Sundecks, walk to MSG by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.74079,-73.9775,Entire home/apt,263,30,0,,,232,332 +33184311,Furnished East Village Studio Apartment,249846765,Cy,Manhattan,East Village,40.72853,-73.98173,Entire home/apt,89,30,0,,,1,0 +33184502,"Private, Sunny Room in Prime Williamsburg",89035025,Leanne,Brooklyn,Williamsburg,40.71492,-73.94332,Private room,65,3,4,2019-06-10,1.29,1,3 +33185502,Sunny loft- private room & private living-room,41089134,Carissa,Brooklyn,Red Hook,40.67897,-74.00587,Private room,45,2,17,2019-06-29,5.05,1,87 +33186696,Harlem Quite haven 15 minutes to Time Square !!!!!,145975067,Ousmane,Manhattan,Harlem,40.81826,-73.93882,Private room,70,1,25,2019-07-02,6.76,3,9 +33186806,Manhattan luxury studio(near Columbia Circle),64689615,Vivienne,Manhattan,Upper West Side,40.77362,-73.99133,Entire home/apt,250,8,0,,,1,4 +33186981,Beautiful apartment in Bedstuy Brooklyn,72031522,Vanessa,Brooklyn,Bedford-Stuyvesant,40.6802,-73.93436,Private room,60,2,9,2019-06-15,2.76,1,22 +33187408,Gorgeous bedroom w/ensuite bath-East Williamsburg,249870831,Melat,Brooklyn,Williamsburg,40.71395,-73.94022,Private room,65,1,2,2019-05-27,1.15,1,124 +33187617,Midtown East Gem with PRIVATE Terrace,165776960,Raanan,Manhattan,Midtown,40.76054,-73.96449,Entire home/apt,130,30,1,2019-06-09,1,2,148 +33188757,GORGEOUS 1-bdrm with PRIVATE YARD & washer/dryer,249881559,Christopher,Brooklyn,Williamsburg,40.71594,-73.9402,Entire home/apt,135,2,9,2019-06-27,3.86,1,162 +33189664,Large 1 Bedroom Apartment,46311875,Michael,Manhattan,Chelsea,40.75183,-73.99633,Entire home/apt,140,30,0,,,1,167 +33189755,"San Carlos Hotel One Bedrm Suite/3 beds, up to 6",173685298,Janet,Manhattan,Midtown,40.75475,-73.97243,Private room,399,1,1,2019-06-02,0.81,11,364 +33190044,Comfy Brooklyn escape w/ quick access to Manhattan,7117263,Joy,Brooklyn,Brooklyn Heights,40.69153,-73.9951,Private room,75,1,23,2019-07-07,8.02,1,166 +33190224,Artsy and bright Studio apartment in Brooklyn,21218657,Yezica,Brooklyn,Bedford-Stuyvesant,40.69462,-73.94499,Entire home/apt,89,3,7,2019-05-28,3.28,1,0 +33190990,Huge Designer Loft- View of New York City Skyline!,27564513,Lauren And Jeff,Brooklyn,Williamsburg,40.70396,-73.93442,Entire home/apt,250,2,7,2019-06-02,2.44,1,183 +33191754,renovated sunnyside with NY city views,40949032,Ana,Queens,Sunnyside,40.74149,-73.92327,Entire home/apt,131,30,0,,,1,182 +33193795,Quiet Room ideal for Students or young workers NYC,16722828,Víctor,Manhattan,Upper East Side,40.77385,-73.94733,Private room,58,28,3,2019-04-25,1.03,1,0 +33194789,Stunning 3 bedroom in townhouse right on Union Sq,249929999,Natalli,Manhattan,Gramercy,40.73683,-73.98816,Entire home/apt,700,5,11,2019-07-07,3.93,1,282 +33195147,The Sweet,239155432,Thia,Bronx,Wakefield,40.90484,-73.84489,Private room,120,1,1,2019-04-08,0.32,1,268 +33195320,Stylish Bedroom!! Manhattan!!!,140830391,Jay,Manhattan,Harlem,40.8088,-73.94527,Private room,100,1,4,2019-06-17,1.60,9,275 +33195591,Manhatan Stylish Bedroom,140830391,Jay,Manhattan,Harlem,40.81072,-73.94235,Private room,85,1,8,2019-07-02,2.61,9,150 +33197108,Welcome home,48958233,Ana,Manhattan,Gramercy,40.73644,-73.98097,Entire home/apt,215,1,1,2019-03-30,0.30,2,188 +33197913,Entire place on the upper east side,130827164,Julia,Manhattan,Upper East Side,40.77195,-73.9537,Entire home/apt,199,2,0,,,2,364 +33199798,Garden Apartment in Bushwick,19729266,Sam,Brooklyn,Bushwick,40.69328,-73.9225,Entire home/apt,150,7,1,2019-04-24,0.39,1,88 +33201132,Spacious bedroom walking distance from Columbia!,21816318,Nadia,Manhattan,Harlem,40.80098,-73.95424,Private room,85,3,5,2019-05-30,1.76,1,0 +33201727,Beautiful bedroom w/private bath-E.Williamsburg,249588074,Lily,Brooklyn,Williamsburg,40.71206,-73.94006,Private room,85,1,0,,,2,124 +33202973,LARGE PRIVATE ROOM IN GREAT NEIGHBORHOOD! UES.,878938,T. S.,Manhattan,Upper East Side,40.77927,-73.95165,Private room,98,1,10,2019-06-18,4.35,1,327 +33203187,The Australian Bear-Rug Master Bedroom in NYC,250005351,Max,Manhattan,Financial District,40.70529,-74.00653,Private room,293,1,7,2019-06-29,3.18,1,75 +33210106,East Village sanctuary.,8253008,Shane,Manhattan,East Village,40.7275,-73.98838,Entire home/apt,125,30,0,,,1,97 +33210320,The Love Shack,72744910,Saman,Brooklyn,Greenpoint,40.71971,-73.94377,Private room,65,2,6,2019-05-21,1.94,1,20 +33212719,NYC cozy apartment close to staten island ferry,250065719,Martha,Staten Island,Randall Manor,40.63211,-74.12557,Entire home/apt,85,1,6,2019-06-24,2.20,1,316 +33213292,Welcome,116446134,Jay,Brooklyn,East New York,40.67554,-73.8942,Private room,120,1,2,2019-05-06,0.59,1,89 +33214322,large & spacious bedroom-Williamsburg,249588074,Lily,Brooklyn,Williamsburg,40.71389,-73.93859,Private room,69,2,1,2019-03-22,0.28,2,345 +33214803,Spacious/Comfortable Close to Yankee Stadium/City,11379822,Danny,Bronx,Mount Hope,40.84672,-73.90411,Private room,63,1,3,2019-05-07,0.94,1,167 +33216329,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76453,-73.98035,Private room,250,1,0,,,8,0 +33216433,The Shambhala House,70393914,Danalee,Brooklyn,East Flatbush,40.64627,-73.92014,Private room,58,2,2,2019-07-07,2,1,126 +33216589,Luxury City Lights Suite,24831061,Hosteeva,Manhattan,Midtown,40.76428,-73.98083,Entire home/apt,310,1,0,,,8,0 +33216624,Magical Brooklyn Space *20 MIN to Manhattan!*,201407513,Norma-Jean,Brooklyn,Bedford-Stuyvesant,40.67922,-73.90953,Private room,41,1,6,2019-06-24,1.86,2,79 +33216902,Midtown Manhattan Suite,24831061,Hosteeva,Manhattan,Midtown,40.76543,-73.98078,Entire home/apt,261,1,0,,,8,0 +33217330,"Astoria Spacious Room +All included,Great location",177673174,Arber,Queens,Astoria,40.76553,-73.91353,Private room,80,2,0,,,1,0 +33217402,NO CLEANING FEE! 1.5 blocks from 2 train. Fridge!,240913980,Joie,Bronx,Wakefield,40.89637,-73.8555,Private room,39,1,10,2019-06-18,2.73,1,15 +33218283,Brand New 1BR prime UES~W/D the unit Best Value,162280872,Izi,Manhattan,Upper East Side,40.77039,-73.95812,Entire home/apt,180,30,1,2019-05-06,0.47,13,325 +33218637,Private Patio and Bathroom - Two Bedroom (Girls),40275796,Jill,Bronx,Kingsbridge,40.8704,-73.90559,Private room,100,5,0,,,1,40 +33219156,Sonder | The Biltmore | Sunny Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.75966,-73.9862,Entire home/apt,175,29,0,,,327,335 +33219891,Bright Private Room,250115747,Ivy,Brooklyn,Bushwick,40.69927,-73.9107,Private room,44,2,6,2019-06-24,2.37,4,163 +33220339,Sonder | The Biltmore | Cozy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.76147,-73.98589,Entire home/apt,177,29,2,2019-05-31,0.85,327,354 +33221080,"Convenient, Convenient and Comfortable",250115747,Ivy,Queens,Ridgewood,40.70056,-73.9106,Private room,49,2,14,2019-06-12,4.08,4,165 +33221660,Comfy and Convenient Private Room,250115747,Ivy,Queens,Ridgewood,40.69935,-73.91043,Private room,44,2,10,2019-06-24,3.13,4,128 +33221933,Visitors Dream,250115747,Ivy,Queens,Ridgewood,40.70125,-73.91051,Private room,44,2,9,2019-06-23,3.18,4,154 +33222428,"Beautiful Cozy room in Hell’s Kitchen,Times Square",231216524,Chase,Manhattan,Hell's Kitchen,40.76565,-73.98872,Private room,149,1,14,2019-06-25,3.78,5,0 +33223405,Royal Court,250149612,Claudia,Queens,Jamaica,40.66971,-73.78583,Entire home/apt,300,1,11,2019-07-07,3.27,1,319 +33224321,Huge Apartment with Amazing City Views,13783103,Veronika,Queens,Ridgewood,40.70848,-73.9148,Entire home/apt,140,3,13,2019-06-23,4.29,1,192 +33226027,"Quiet, Private room in Brooklyn Brownstone",162093521,Malik,Brooklyn,Bedford-Stuyvesant,40.68196,-73.92416,Private room,35,2,1,2019-05-07,0.47,1,4 +33226326,Manhattan luxury building super large studio,106857875,Yige,Manhattan,Chelsea,40.75426,-73.99848,Entire home/apt,140,120,0,,,1,255 +33226423,Modern 1 Bedroom in Brooklyn,15191122,Michelle,Brooklyn,Bedford-Stuyvesant,40.68802,-73.94291,Entire home/apt,75,2,2,2019-06-02,1.33,1,24 +33226517,Spacious Room w/ oversized closet in East Harlem,39823351,Geli,Manhattan,East Harlem,40.79415,-73.94156,Private room,90,4,10,2019-07-03,3.53,1,24 +33227584,King Size Dream Room,237077566,Jean Paul,Brooklyn,Gowanus,40.67731,-73.98539,Private room,74,1,1,2019-03-23,0.28,1,72 +33228127,ST MARKS /heart of EAST VILLAGE sleep up to 8,95892016,Leonora,Manhattan,East Village,40.72687,-73.98416,Entire home/apt,396,1,15,2019-06-19,4.84,5,317 +33229012,1 stop away from Manhattan- HUGE Williamsburg room,45470760,Neha,Brooklyn,Williamsburg,40.70406,-73.95763,Private room,70,2,5,2019-06-01,1.63,1,2 +33230088,Bedroom in NYC - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86208,-73.9269,Private room,100,1,2,2019-06-19,0.78,9,324 +33230211,Bedroom in NYC!! - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86324,-73.92682,Private room,100,1,4,2019-07-01,1.58,9,315 +33230303,Bedroom in NYC - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86182,-73.92667,Private room,100,1,7,2019-07-05,2.33,9,324 +33230477,NYC Bedroom!! - Minutes to Central Park!!,140830391,Jay,Manhattan,Inwood,40.86387,-73.92711,Private room,180,5,6,2019-06-23,1.94,9,323 +33235936,Amazing Studio in the heart of Midtown Manhattan,250252296,Manuel Ricardo,Manhattan,Midtown,40.74789,-73.98702,Entire home/apt,220,4,10,2019-07-03,3.03,1,297 +33236002,Sunny and Bright Brooklyn Duplex,6312248,Angelle,Brooklyn,Bedford-Stuyvesant,40.68609,-73.92932,Entire home/apt,195,2,5,2019-06-23,2.42,2,20 +33237562,Luda and David Nest to share.,234588422,Luda,Queens,Sunnyside,40.74512,-73.91758,Entire home/apt,75,6,3,2019-06-23,1.22,1,43 +33238238,Luxury Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.7643,-73.98199,Entire home/apt,310,1,2,2019-04-21,0.70,8,0 +33239233,"STUNNING BRAND NEW 2 BDR APT IN GREENPOINT, BKLN",249983430,Emily,Brooklyn,Greenpoint,40.73644,-73.95425,Entire home/apt,300,2,22,2019-06-26,6.23,1,341 +33240039,"Sunny room, Downtown NY, 2 Bridges, Chinatown L",248961864,Lily,Manhattan,Chinatown,40.71301,-73.99609,Private room,85,1,12,2019-05-29,3.36,3,339 +33240867,"Comfort room in Downtown NYC, Chinatown, Soho W",248961864,Lily,Manhattan,Two Bridges,40.71241,-73.99458,Private room,85,1,15,2019-06-19,4.17,3,356 +33240958,COZY Room @Williamsburg (10 mins to Manhattan),1104166,Mala,Brooklyn,Williamsburg,40.71362,-73.95343,Private room,65,2,9,2019-06-23,3.42,4,43 +33241012,Manhattan Club Suite,24831061,Hosteeva,Manhattan,Midtown,40.76425,-73.9809,Entire home/apt,310,1,0,,,8,0 +33241034,Sunny Bedroom in Ridgewood Apartment!,67373452,David,Queens,Ridgewood,40.69894,-73.90064,Private room,50,7,6,2019-04-14,1.84,1,128 +33241498,2 Rooms in pvt house-15 mins to NYC & free ferry,161357125,Mohsin,Staten Island,Emerson Hill,40.61035,-74.11711,Entire home/apt,78,2,11,2019-07-03,3.88,3,38 +33241841,Spacious Manhattan Club Suite,24831061,Hosteeva,Manhattan,Midtown,40.76403,-73.98191,Entire home/apt,275,1,0,,,8,0 +33241978,1 BR Suite in Midtown Manhattan,24831061,Hosteeva,Manhattan,Midtown,40.76391,-73.98071,Private room,250,1,0,,,8,0 +33242348,1 room in private house - 15 mins to NYC & Ferry,161357125,Mohsin,Staten Island,Todt Hill,40.60991,-74.11577,Private room,50,2,6,2019-06-18,2.02,3,52 +33242898,Luxury Metropolitan Suite,24831061,Hosteeva,Manhattan,Midtown,40.76559,-73.98026,Entire home/apt,275,1,0,,,8,0 +33242964,"Cozy room in Downtown Manhattan, 2 Bridges, Soho Y",248961864,Lily,Manhattan,Chinatown,40.71309,-73.99626,Private room,85,1,14,2019-06-16,3.93,3,332 +33243041,Beautiful Bright Brooklyn BedRoom *20 Min to City*,201407513,Norma-Jean,Brooklyn,Bedford-Stuyvesant,40.67876,-73.91096,Private room,41,2,5,2019-06-16,2.08,2,74 +33243396,"Big, Quiet Apartment with Two Cats, Central Park",409766,Rachel,Manhattan,Upper West Side,40.79702,-73.96256,Entire home/apt,144,3,2,2019-07-05,2,1,0 +33243529,Astoria Bedroom 20 minutes away from the city,214329835,Rita,Queens,Ditmars Steinway,40.77761,-73.90919,Private room,69,2,1,2019-06-17,1,2,349 +33244670,Charming place in the heart of Manhattan.,143563277,Mariana,Manhattan,Greenwich Village,40.73592,-73.99601,Entire home/apt,230,1,2,2019-04-14,0.57,1,83 +33245975,Crashpad in Clinton Hill,3151,Eric,Brooklyn,Clinton Hill,40.69316,-73.96773,Private room,69,1,1,2019-05-26,0.67,1,179 +33246476,Spacious bedroom in Williamsburg,13480762,Shana,Brooklyn,Williamsburg,40.71768,-73.94027,Private room,40,1,9,2019-06-01,2.84,2,22 +33247707,Cozy East Village walk up,6048212,Lissa,Manhattan,East Village,40.72958,-73.98569,Entire home/apt,151,3,10,2019-06-17,3.00,1,7 +33248031,Harlem Sanctuary 1,178833771,Danese,Manhattan,Harlem,40.82312,-73.93885,Entire home/apt,275,2,1,2019-05-05,0.46,3,351 +33248625,beautiful studio apt in the village,593135,Maria,Manhattan,Greenwich Village,40.72894,-74.00102,Entire home/apt,180,3,8,2019-07-01,2.79,1,188 +33249193,Harlem Sanctuary 2,178833771,Danese,Manhattan,Harlem,40.82172,-73.94019,Private room,55,3,2,2019-05-09,0.67,3,353 +33250984,Large private bedroom in prime West Village!,250374011,Lisa,Manhattan,West Village,40.73261,-74.01043,Private room,120,2,12,2019-07-08,3.91,1,35 +33253620,studio appt,2811538,Oliver,Manhattan,Little Italy,40.71948,-73.99603,Entire home/apt,350,3,0,,,1,90 +33254187,Room in Washingtom Heights (Manhattan),83114146,Inbar,Manhattan,Washington Heights,40.84232,-73.93772,Private room,60,2,8,2019-06-30,2.53,1,26 +33254547,安静 干净 温暖的小屋,140630987,Jiali,Queens,Flushing,40.7603,-73.81428,Private room,75,1,9,2019-06-15,2.52,6,204 +33254830,"10 min to Manhattan, no cleaning fee!",250413062,Jernej,Queens,Long Island City,40.74827,-73.94006,Private room,110,2,14,2019-07-04,4.57,1,112 +33255997,"Gym, Rooftop, Pool Lux mater bedroom/private bath",217482038,Emily,Manhattan,Upper East Side,40.76258,-73.96809,Private room,129,3,4,2019-06-22,3.08,3,15 +33256416,Rooftop pool view Lux private room,217482038,Emily,Manhattan,Upper East Side,40.76178,-73.96653,Private room,129,3,1,2019-06-11,1,3,0 +33256653,"Bed-Stuy, Brooklyn apt w/ rooftop & skyline view.",204221927,"Tommy, Nate, And Kofi",Brooklyn,Bedford-Stuyvesant,40.68716,-73.94241,Private room,55,2,6,2019-06-30,3.53,1,89 +33259063,LUXURIOUS! Private Bedroom/Bath near Central Park,21686560,Katarina,Manhattan,Upper East Side,40.77399,-73.9461,Private room,217,1,6,2019-05-25,1.94,1,242 +33260042,Nice Manhattan room close to Apollo & transpo!,137358866,Kazuya,Manhattan,Harlem,40.81212,-73.94341,Private room,37,30,0,,,103,223 +33263092,Beautiful 2BR in Vibrant Area!,181092484,Leonard,Manhattan,Lower East Side,40.72082,-73.9879,Entire home/apt,299,1,1,2019-05-14,0.54,3,217 +33263637,Calm Comfortable Brooklyn Retreat,1760549,Patrice,Brooklyn,Canarsie,40.63567,-73.91296,Entire home/apt,120,2,11,2019-07-02,4.12,1,52 +33265025,"Quiet, East Village Bedroom for Sublet (Queen bed)",28940517,Josh,Manhattan,East Village,40.73284,-73.9865,Private room,65,30,0,,,1,38 +33265526,Sunset Park Retreat - 3 blocks from train station!,5325489,Julie,Brooklyn,Sunset Park,40.64997,-74.00626,Entire home/apt,135,2,9,2019-07-08,5.19,1,266 +33266016,Spacious room and private bath in Williamsburg,18883243,Mika,Brooklyn,Williamsburg,40.71937,-73.9549,Private room,75,14,1,2019-05-25,0.67,1,0 +33267342,Spectacular Luxury Park Slope Brownstone,15101609,Rebecca,Brooklyn,Park Slope,40.67591,-73.97689,Entire home/apt,700,3,0,,,1,239 +33267781,Lincoln Center Haven - private room with ensuite,250512369,Jaclyn,Manhattan,Upper West Side,40.77477,-73.97958,Private room,159,1,7,2019-06-05,2.56,1,302 +33268045,Brooklyn 1 Bedroom Apartment,250514925,Andrew,Brooklyn,Red Hook,40.67635,-74.01133,Entire home/apt,100,1,2,2019-06-09,1.67,1,13 +33268138,"Designers apartment on the Upper East, 2 entrances",105763296,Tara,Manhattan,Upper East Side,40.78423,-73.94786,Entire home/apt,100,5,8,2019-06-25,3.24,1,270 +33269114,Wake up to Statue of Liberty view,247815136,Mina,Manhattan,Financial District,40.7071,-74.01556,Entire home/apt,300,2,0,,,1,365 +33269801,Gorgeous queen size oasis,105762561,Kim,Queens,Jamaica,40.69008,-73.78667,Private room,85,2,12,2019-07-01,3.56,3,330 +33269847,Sunny Happy Artist room close to train,248472625,Tyrone,Brooklyn,Bushwick,40.68929,-73.9216,Private room,45,14,1,2019-05-30,0.73,1,67 +33270782,Spacious & Bright Brooklyn Getaway near trains,96240355,Sherika,Brooklyn,Bedford-Stuyvesant,40.67969,-73.90923,Private room,75,2,9,2019-06-24,2.62,1,0 +33270883,Sunny and Zen room in Chelsea,44731956,Raymond,Manhattan,Chelsea,40.74147,-73.99908,Private room,100,4,0,,,1,0 +33271110,Cozy Room in BK Brownstone w/ Breakfast,2517810,Amber,Brooklyn,Bedford-Stuyvesant,40.68689,-73.93344,Private room,45,2,7,2019-06-28,2.41,1,82 +33271828,Urban Oasis Junior,2522815,Tricia,Brooklyn,Sunset Park,40.664,-73.99233,Entire home/apt,135,2,4,2019-07-04,4,2,296 +33273186,StudioAptWithSeparateKitchen-20min from Manhattan,6307153,Nobin,Queens,Sunnyside,40.74636,-73.91748,Entire home/apt,71,2,5,2019-06-19,3.19,1,0 +33273335,First Class King Suite Midtown Manhattan | Outdoor Restaurant Terrace,239660813,Yotel,Manhattan,Hell's Kitchen,40.75833,-73.99516,Private room,210,1,0,,,10,333 +33273525,"Beautiful, large, sunny private bedroom available",24204269,Alexis,Brooklyn,Prospect Heights,40.67953,-73.97334,Private room,70,20,1,2019-05-09,0.49,1,0 +33274640,Bright & Comfortable East Village Oasis,555245,Eric,Manhattan,East Village,40.72808,-73.98273,Entire home/apt,165,1,4,2019-06-22,2.61,1,97 +33274701,PARADISE HOME,227195925,Magda,Queens,Howard Beach,40.65278,-73.84289,Entire home/apt,165,1,0,,,1,323 +33275070,Modern studio/private entrance/superb location,250580779,Viktoriya,Staten Island,"Bay Terrace, Staten Island",40.55105,-74.1366,Entire home/apt,55,30,2,2019-05-21,0.82,1,0 +33275250,First Class Suite in Midtown Manhattan | Manhattan Skyline View,239660813,Yotel,Manhattan,Hell's Kitchen,40.76027,-73.99682,Private room,209,1,0,,,10,333 +33275808,Large Charming 1-Bedroom apt in Brownstone,233881237,Marietta,Brooklyn,Fort Greene,40.68562,-73.96977,Entire home/apt,125,3,4,2019-06-23,1.67,1,48 +33279205,NYC Luxury | Penthouse Suite + Private Outdoor Terrace + Tub,239660813,Yotel,Manhattan,Hell's Kitchen,40.75955,-73.99667,Private room,794,1,0,,,10,200 +33279209,Midtown Manhattan Space | Chic Design + Outdoor Terrace + Rain Shower,239660813,Yotel,Manhattan,Hell's Kitchen,40.76019,-73.99524,Private room,146,1,0,,,10,314 +33279214,Corner Room in Midtown Manhattan | Outdoor Terrace + Fitness Center,239660813,Yotel,Manhattan,Hell's Kitchen,40.75842,-73.99609,Private room,197,1,1,2019-05-17,0.57,10,342 +33279216,Private Terrace + Outdoor Cold Water Soaking Tub | Midtown Manhattan,239660813,Yotel,Manhattan,Hell's Kitchen,40.75893,-73.99485,Private room,297,1,0,,,10,311 +33279221,Room with a View | Enjoy the Manhattan Skyline + Outdoor Terrace,239660813,Yotel,Manhattan,Hell's Kitchen,40.75796,-73.99625,Private room,166,1,1,2019-05-01,0.43,10,345 +33279231,Midtown Manhattan Room | Outdoor Terrace + Co-working Space,239660813,Yotel,Manhattan,Hell's Kitchen,40.75796,-73.99522,Private room,166,1,0,,,10,343 +33279235,Chic Room in Midtown Manhattan | Outdoor Restaurant Terrace + Smart TV,239660813,Yotel,Manhattan,Hell's Kitchen,40.75885,-73.99595,Private room,135,1,0,,,10,275 +33279239,180 Degree View of Midtown Manhattan + Hudson River + Empire State,239660813,Yotel,Manhattan,Hell's Kitchen,40.76034,-73.99638,Private room,500,1,1,2019-06-10,1,10,305 +33288485,Quiet Oasis in Brooklyn with Garden Patio,1307197,Jenn,Brooklyn,East Flatbush,40.66039,-73.93034,Private room,90,1,2,2019-05-19,0.97,1,0 +33288663,Sun drenched private apartment,17247001,Erin,Brooklyn,Crown Heights,40.67704,-73.95957,Entire home/apt,140,1,3,2019-07-03,1.58,1,13 +33288760,"Bright, spacious Brooklyn Loft with large terrace",1825325,Benny,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94494,Entire home/apt,80,90,0,,,1,41 +33290240,Williamsburg Resort 15 Mins. to Manhattan!,90294445,Brendan,Brooklyn,Williamsburg,40.70865,-73.94507,Entire home/apt,200,4,0,,,2,4 +33290753,Luxury Apartment with Balcony,18254321,Mj,Manhattan,Hell's Kitchen,40.75617,-73.99824,Private room,200,4,1,2019-04-28,0.41,1,22 +33291448,Loft on the Brooklyn Waterfront,6082769,Christopher Linwood,Brooklyn,Greenpoint,40.7359,-73.95909,Entire home/apt,250,14,0,,,1,83 +33291824,Nice and Cozy 2 bedrooms apartment near Manhattan,209569701,Beatriz,Queens,Long Island City,40.75464,-73.94107,Entire home/apt,190,4,7,2019-06-13,2.56,1,255 +33291866,Angela's Sweet Suite (Shared-Females Only),113251277,Angela,Manhattan,Kips Bay,40.74225,-73.97943,Shared room,35,2,2,2019-04-06,0.59,2,353 +33292234,Sunny Brooklyn apartment,45467925,Elise,Brooklyn,Gowanus,40.66791,-73.99354,Entire home/apt,125,5,7,2019-06-12,2.23,1,70 +33292956,Stylish 2 bedroom in the heart of manhattan,250739581,Vivi,Manhattan,East Village,40.72345,-73.98152,Entire home/apt,280,1,8,2019-06-23,2.40,1,325 +33293218,1860’s Vanderbilt Mansion - 19th century details,141124307,Stratis,Brooklyn,Bedford-Stuyvesant,40.68579,-73.9358,Entire home/apt,249,3,12,2019-06-29,4.19,1,38 +33294626,Soho 1 Bedroom Apartment Near Tons of Restaurants,250759662,John,Manhattan,Greenwich Village,40.72779,-73.99882,Entire home/apt,200,4,14,2019-06-27,3.96,1,323 +33294631,Subletting an amazing room!!!,169619135,Bar,Manhattan,Chelsea,40.74825,-73.99542,Private room,75,4,0,,,1,0 +33294992,East Harlem room with private bathroom!,159676587,Karina,Manhattan,East Harlem,40.79668,-73.93434,Private room,124,1,7,2019-06-22,2.28,2,155 +33295329,Unique & Stylish Apartment in Chelsea,5258749,Bani,Manhattan,Chelsea,40.74197,-73.99703,Entire home/apt,120,5,13,2019-06-30,5.00,2,14 +33295429,Large room with private bathroom in East Harlem!,159676587,Karina,Manhattan,East Harlem,40.79781,-73.93599,Private room,125,1,8,2019-07-03,2.70,2,117 +33295827,Private Room in 4 Bedroom Apartment in Upper West,250771864,Zhou,Manhattan,Upper West Side,40.80131,-73.96596,Private room,37,50,0,,,1,1 +33303647,Rento cómoda habitación para pareja oh persona sol,250841016,Jenny,Bronx,Norwood,40.87275,-73.87978,Private room,58,5,0,,,1,180 +33307926,Short term Queen size sofa-bed in living room,747681,Pro,Manhattan,Midtown,40.76446,-73.98123,Private room,95,3,1,2019-06-16,1,1,5 +33309213,Room in a Stylish & Dreamy Brooklyn loft,2236212,Iva,Brooklyn,Bedford-Stuyvesant,40.67867,-73.93723,Private room,100,2,0,,,2,89 +33309892,Extra Large Central Park/UWS Furnished Room,50741398,Jessica,Manhattan,Upper West Side,40.8003,-73.96436,Private room,105,1,8,2019-05-05,2.40,4,0 +33310062,"Beautiful 1.5 Bedroom Oasis, Heart of Williamsburg",2196083,Bridgette,Brooklyn,Williamsburg,40.71699,-73.96167,Entire home/apt,214,3,6,2019-07-01,1.94,1,32 +33310325,Flushing entire apartment in prime location,215556105,Kay,Queens,Flushing,40.76695,-73.81638,Entire home/apt,250,7,0,,,3,174 +33310428,Confortable y limpio,250896604,Cristina,Manhattan,Washington Heights,40.85487,-73.92759,Private room,32,2,26,2019-07-03,8.48,1,280 +33310983,Luxury Miami style apartment,250911060,Anthony,Manhattan,East Harlem,40.79583,-73.93328,Entire home/apt,160,1,11,2019-06-20,5.59,1,21 +33311237,Large Parlor Apt Williamsburg Brooklyn NY House,193954973,Sean,Brooklyn,Williamsburg,40.71547,-73.95147,Entire home/apt,165,3,5,2019-07-03,1.97,3,272 +33312951,Charming and Luxury 1 Bedroom Apartment,10533936,Taylor,Manhattan,Chelsea,40.743,-74.00136,Entire home/apt,300,2,2,2019-07-01,1.22,1,363 +33313341,Spectacular apartment in Astoria near everywhere,151780315,Jose,Queens,Ditmars Steinway,40.78096,-73.91282,Private room,70,2,0,,,1,0 +33314007,"Room with own living room, 1 stop from Manhattan",25476420,Laura,Brooklyn,Fort Greene,40.69438,-73.9712,Private room,51,12,0,,,1,44 +33315073,Brand new 2 bedroom apartment near yankee stadium,24979023,Nanyuma,Bronx,Concourse Village,40.83251,-73.91217,Private room,85,1,0,,,1,365 +33315338,Lovely bedroom in Brooklyn,52818583,Justin & Lilo,Brooklyn,Bedford-Stuyvesant,40.68797,-73.95439,Private room,75,1,21,2019-06-30,7.50,1,114 +33315343,UPPER WEST SIDE:Renovated Private Spacious Rm & BR,15807180,Michael,Manhattan,Upper West Side,40.7852,-73.9714,Private room,111,2,8,2019-06-23,2.58,3,344 +33315595,Bright Top Floor + Private Terrace in Williamsburg,131057988,Brandon & Caitlyn,Brooklyn,Williamsburg,40.71419,-73.94138,Private room,150,2,7,2019-06-29,2.66,1,48 +33316217,Quiet Studio with Balcony near Central Park,217803139,Brigitte,Manhattan,Upper West Side,40.78687,-73.97428,Entire home/apt,175,2,1,2019-05-26,0.68,1,2 +33316356,Spacious 1BR on W 72nd! A dream UWS location!,250968889,Samantha,Manhattan,Upper West Side,40.77884,-73.98591,Entire home/apt,180,5,7,2019-06-18,2.50,1,10 +33316690,THIES IN HARLEM .,250969026,Cheikh,Manhattan,Harlem,40.81323,-73.9422,Entire home/apt,165,1,8,2019-06-23,2.58,1,53 +33317478,Luxury redefined: Splendid sleep in the skies,15822432,May,Manhattan,Hell's Kitchen,40.75908,-73.9938,Entire home/apt,395,5,4,2019-07-06,2.73,1,167 +33318809,Spacious Artistic 1 Bedroom Loft & High Ceilings,106159574,Jonathan,Brooklyn,Williamsburg,40.70694,-73.94176,Private room,90,2,3,2019-04-07,0.90,1,0 +33319941,Private Bathroom & Private Bedroom in Clinton Hill,922056,Vincent,Brooklyn,Bedford-Stuyvesant,40.68073,-73.95749,Private room,52,180,0,,,1,85 +33326342,Alphabet Place II by (Hidden by Airbnb),156158778,Sally,Manhattan,East Village,40.72905,-73.97797,Entire home/apt,1145,1,0,,,12,0 +33329762,Chic renovated historic 1BR with garden,1036179,Nathan,Brooklyn,Crown Heights,40.67318,-73.95566,Entire home/apt,225,4,4,2019-07-07,1.29,1,11 +33330013,Spacious 2bd apt in the heart of Manhattan,13506708,Guy,Manhattan,East Harlem,40.7854,-73.94981,Entire home/apt,250,2,3,2019-04-21,0.97,1,188 +33330161,Soho Loft III by (Hidden by Airbnb),156158778,Sally,Manhattan,SoHo,40.72525,-74.00142,Entire home/apt,1306,1,0,,,12,23 +33331140,"SKY VIEW 1 BEDROOM, 1 MIN TO SUBWAY",85518733,Vivivn,Queens,Long Island City,40.74697,-73.94131,Entire home/apt,135,4,0,,,1,0 +33331584,Our place in Williamsburg,98056984,Adi,Brooklyn,Williamsburg,40.70804,-73.94868,Entire home/apt,150,5,2,2019-06-14,0.67,1,0 +33333345,"Specious light room near Broadway(M,J, L,G trains)",248161322,Sergii,Brooklyn,Bushwick,40.70031,-73.94077,Shared room,35,30,0,,,14,311 +33334269,SPACIOUS ROOMS FOR RENT,13480762,Shana,Brooklyn,Williamsburg,40.7185,-73.93964,Private room,40,1,14,2019-06-02,4.57,2,26 +33334476,★1800ft²/195m²★3-Levels★Deck★Walk Score 96★Office★,3165356,Arlene,Brooklyn,Greenpoint,40.72023,-73.94355,Entire home/apt,336,2,9,2019-07-06,5.87,1,97 +33334633,Looks Like A Calvin Klein Ad! Manhattan Loft,246331794,Anna,Manhattan,Murray Hill,40.7476,-73.97632,Entire home/apt,320,1,5,2019-07-06,1.72,2,236 +33334958,Private NYC Studio--Near Central Park + East River,68930822,Jill Lauren,Manhattan,Upper East Side,40.76218,-73.95858,Entire home/apt,150,3,13,2019-06-25,4.24,1,61 +33336699,Stunning Sunny Studio,89068125,Martin,Manhattan,East Harlem,40.79755,-73.94413,Entire home/apt,250,1,1,2019-04-30,0.43,1,0 +33337280,Private room in gated community: walk to ferry!,97328229,Jaime,Bronx,Clason Point,40.80771,-73.85204,Private room,46,2,3,2019-06-30,1.13,1,179 +33339676,Sunny Large Studio Elevator Doorman Gym UN 5226,16098958,Jeremy & Laura,Manhattan,Midtown,40.75191,-73.9698,Entire home/apt,140,30,0,,,96,311 +33340151,Warm Spacious Bedroom in Historical Harlem!!!,63160119,Michael,Manhattan,Harlem,40.81749,-73.93875,Private room,75,1,13,2019-07-06,5.27,1,74 +33340216,Classic modern bedroom-close to everything,215556105,Kay,Queens,Flushing,40.76734,-73.81789,Private room,60,1,3,2019-05-01,0.96,3,84 +33341083,"Sexy, Cozy Loft for work and play",23913300,Kelly,Brooklyn,Williamsburg,40.71158,-73.96697,Entire home/apt,400,1,1,2019-05-05,0.46,2,89 +33342049,Hell's Kitchen Cuteness!!,27624437,Peggy,Manhattan,Hell's Kitchen,40.76581,-73.98745,Entire home/apt,208,10,1,2019-05-21,0.61,1,170 +33342415,#Private office bedroom PC WiFi Print Scan,224850313,Roman,Brooklyn,Sheepshead Bay,40.58692,-73.94235,Private room,79,30,0,,,2,216 +33342461,Charming Studio,16083192,Alexander,Manhattan,Upper West Side,40.77907,-73.98684,Entire home/apt,208,3,0,,,1,150 +33342901,Beautiful room in spacious Ft. Greene split level,8993896,Julie,Brooklyn,Fort Greene,40.68887,-73.97021,Private room,72,1,8,2019-06-23,3.93,2,0 +33343579,Gorgeous modern style room near Central Park,5288991,Tanya,Manhattan,Upper East Side,40.77886,-73.95139,Private room,90,7,1,2019-05-25,0.67,6,0 +33344728,"Don't miss this BRIGHT, SUNNY getaway in Queens",33151563,Regine,Queens,Flushing,40.76353,-73.82381,Entire home/apt,70,2,1,2019-04-22,0.38,2,0 +33344785,Modern Brand New 3 Bedroom/2 Baths In Hip Brooklyn,147983579,Chy,Brooklyn,Bedford-Stuyvesant,40.68901,-73.94031,Entire home/apt,220,4,6,2019-06-19,2.90,2,230 +33346434,Times Square entire apartment Heart of Big apple!!,177396569,Yanina,Manhattan,Hell's Kitchen,40.76207,-73.99098,Entire home/apt,200,4,3,2019-06-14,1.15,3,127 +33346748,"Comfortable Stay in Historic, Brooklyn Brownstone",24761711,Aron,Brooklyn,Kensington,40.64714,-73.98107,Entire home/apt,525,5,0,,,2,42 +33346762,2BR Apartment in Brownstone Brooklyn!,50321289,Avery,Brooklyn,Bedford-Stuyvesant,40.682,-73.95681,Entire home/apt,140,2,4,2019-06-14,1.58,3,4 +33347084,Studio in Brooklyn,75760509,Mohamed,Brooklyn,Gravesend,40.60245,-73.9814,Entire home/apt,80,2,3,2019-05-28,1.03,1,16 +33347638,"The Crescent. Newly renovated, 5 mins from JFK",5708402,Gannell,Brooklyn,East New York,40.66706,-73.86781,Entire home/apt,95,2,0,,,1,149 +33348368,Brooklyn 1BR Full Apartment Great Location,209553776,Jonah,Brooklyn,Crown Heights,40.67023,-73.9567,Entire home/apt,65,2,6,2019-06-17,1.94,1,4 +33348709,Lucio's Room #3 a unos minutos del JFK y LGA,214738765,Lucio,Queens,Richmond Hill,40.69668,-73.83138,Private room,75,1,31,2019-07-07,9.21,3,89 +33348833,Cozy haven in the Upper East Side.,117792931,Stella,Manhattan,Upper East Side,40.78075,-73.95108,Entire home/apt,125,4,12,2019-06-22,3.96,1,0 +33348910,Spacious bright bedroom w/4 windows,215556105,Kay,Queens,Flushing,40.76699,-73.81636,Private room,75,1,10,2019-07-06,3.13,3,89 +33358823,Newly renovated shared room in great neighborhood,251296793,Alex,Brooklyn,Bushwick,40.70087,-73.93904,Shared room,35,30,0,,,4,0 +33359386,Shared room on a boarder of Williamsburg!!!,251296793,Alex,Brooklyn,Bushwick,40.70115,-73.93931,Shared room,35,30,0,,,4,0 +33359522,Spacious Room with Balcony,14810989,Maria,Queens,Woodside,40.74402,-73.89698,Private room,55,5,8,2019-05-28,2.86,1,162 +33360408,Executive private room with full size bed- M train,251296793,Alex,Brooklyn,Bushwick,40.69995,-73.93884,Private room,64,30,0,,,4,0 +33361338,Astória Queens Bedroom close to the Subway M R .,251166866,Marcia,Queens,Astoria,40.76027,-73.90768,Private room,60,1,6,2019-07-05,1.91,1,323 +33361844,"SOHO LOFT APARTMENT, PRIME NYC LOCATION",221213143,David,Manhattan,SoHo,40.71953,-74.00064,Entire home/apt,450,2,3,2019-06-23,1.13,9,361 +33361856,"Private Room 2 min to Train, TONS of Natural Light",244171850,Jocelyn,Queens,Ridgewood,40.70154,-73.90752,Private room,47,30,0,,,10,365 +33362018,Clean & Modern Getaway in Williamsburg,239650062,Ben,Brooklyn,Williamsburg,40.71178,-73.94257,Entire home/apt,163,7,2,2019-05-04,0.79,1,263 +33362260,Cozy Brand New Private Room - Steps from M Train,244171850,Jocelyn,Queens,Ridgewood,40.70302,-73.9063,Private room,47,30,0,,,10,365 +33362377,"Bright, Williamsburg bedroom with private balcony",4094038,Alex,Brooklyn,Williamsburg,40.71157,-73.94055,Private room,75,2,4,2019-06-04,2.11,4,0 +33362399,Charming 2 bedroom apartment in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85476,-73.93094,Private room,196,1,6,2019-06-23,3.53,5,336 +33362477,Comfy 2 bedroom apartment in Manhattan,1692538,Nuttamon,Manhattan,Washington Heights,40.85482,-73.93137,Entire home/apt,174,1,6,2019-06-09,1.88,5,324 +33362774,NEW Spacious & Sunny 1 Bed in Vinegar Hill,251318098,Nicholas,Brooklyn,Navy Yard,40.70234,-73.97954,Entire home/apt,295,2,1,2019-04-07,0.32,1,0 +33363084,E community that is commercially (Website hidden by Airbnb) smoke,242175033,Alex,Bronx,Allerton,40.86003,-73.86584,Entire home/apt,60,1,28,2019-07-02,8.32,1,74 +33363343,Rooftop & Backyard in the Heart of Williamsburg,7230979,Seth,Brooklyn,Williamsburg,40.71867,-73.96163,Private room,100,2,1,2019-05-19,0.59,1,44 +33363401,Bushwick /Brooklyn Garden apartment,251331500,Feigy,Brooklyn,Bushwick,40.70632,-73.91876,Entire home/apt,199,1,5,2019-04-14,1.46,1,178 +33363704,Private Room in Prime Location - Newly Renovated,244171850,Jocelyn,Queens,Ridgewood,40.70103,-73.90613,Private room,47,30,0,,,10,365 +33363957,Designer Renovated Madison Avenue 1 Bedroom Apt,55782090,Chris,Manhattan,Upper East Side,40.78378,-73.95606,Entire home/apt,105,31,0,,,2,249 +33364071,Ultra Modern Sleek Sunny Private Bedroom in House,12593328,Jeromy,Brooklyn,East Flatbush,40.64627,-73.93164,Private room,50,3,3,2019-04-29,1.05,3,0 +33364906,sofa bed room with outdoor event space,250928371,Kenisha,Brooklyn,Bedford-Stuyvesant,40.69644,-73.94113,Private room,100,1,0,,,1,359 +33365489,"Sunny, Spacious West Village Two-bed/Two-bath",251350235,Chris,Manhattan,West Village,40.73753,-74.00882,Entire home/apt,595,2,7,2019-06-24,2.28,1,80 +33365859,Less is More - in West Chelsea,1842737,L,Manhattan,Chelsea,40.74477,-74.00622,Entire home/apt,185,2,5,2019-06-20,1.69,1,137 +33366167,Room in Wonderful and Secure Private House,43330303,Cristian,Bronx,Fordham,40.85394,-73.89641,Private room,35,5,3,2019-07-02,1.20,2,62 +33366815,King-size sunny bedroom by JMZ and G trains.,114461769,Ekaterina,Brooklyn,Bedford-Stuyvesant,40.69647,-73.94248,Private room,70,5,0,,,1,37 +33367026,Artist apartment in the heart of Brooklyn!,27445710,Nikolay,Brooklyn,Flatbush,40.64582,-73.96479,Entire home/apt,80,1,1,2019-03-29,0.29,1,0 +33367718,Entire Floor In Landmarked Building,706037,Alex,Brooklyn,Greenpoint,40.72988,-73.95789,Entire home/apt,210,10,0,,,1,83 +33367953,Comfy and cozy room 20 mins away from Manhattan.,219891232,Yurany,Queens,Elmhurst,40.74326,-73.88912,Private room,45,2,16,2019-06-29,5.05,1,32 +33368138,"Live Inside of a Painting in Williamsburg, BK",251368944,Miriam,Brooklyn,Williamsburg,40.71938,-73.95736,Entire home/apt,110,3,8,2019-06-18,2.79,1,0 +33368771,CHIC ASTORIA STUDIO**Near Subway**15minToCity,24201188,Monika,Queens,Astoria,40.75967,-73.91602,Entire home/apt,109,14,1,2019-06-30,1,2,52 +33368855,CHIC EAST VILLAGE LOFT STEPS TO UNION SQUARE,16155254,Lina,Manhattan,East Village,40.73063,-73.98322,Entire home/apt,180,1,5,2019-06-12,1.47,4,20 +33371988,Comfy bedroom in apt share 20 mins to City!,30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.6881,-73.92843,Private room,39,30,0,,,5,145 +33372038,Spacious designer’s flat.,1499286,Andrey,Manhattan,Hell's Kitchen,40.76303,-73.99225,Entire home/apt,245,5,8,2019-06-19,3.24,2,13 +33372668,"Charming Cozy Apartment, Bushwick Brooklyn",15488551,Vanieta,Brooklyn,Williamsburg,40.7045,-73.94357,Entire home/apt,150,6,5,2019-06-23,2.17,1,40 +33373002,KEW GARDEN HILLS BEST.,251413755,Jc,Queens,Flushing,40.7384,-73.83052,Entire home/apt,132,30,0,,,1,342 +33373213,Sunny Studio Great View,69095594,Emanuel,Manhattan,East Harlem,40.78593,-73.94292,Entire home/apt,139,2,3,2019-04-11,0.89,1,74 +33373366,Full Private Studio - No Roommate Hassle,251418685,Liz,Manhattan,Midtown,40.7531,-73.96986,Entire home/apt,130,4,2,2019-04-21,0.75,1,63 +33373421,Hudson river and Central Park big room,12220,Corina E.,Manhattan,Upper West Side,40.77859,-73.98481,Private room,228,1,3,2019-06-02,0.96,3,341 +33373525,Amazing Hudson river two bedroom apartment,12220,Corina E.,Manhattan,Upper West Side,40.77757,-73.98579,Entire home/apt,236,1,4,2019-05-26,1.46,3,341 +33374241,"A home away from home, You will be at home.",203569485,Shanice,Brooklyn,Flatbush,40.63481,-73.95927,Private room,70,1,0,,,1,311 +33374582,Specious Room in Manhattan,251430918,Medena,Manhattan,Hell's Kitchen,40.76616,-73.98611,Private room,97,2,10,2019-07-06,3.85,2,77 +33375266,"Cozy private room, walking distance from LGA, RM-3",187822288,Zahir,Queens,East Elmhurst,40.77069,-73.87286,Private room,55,1,27,2019-06-24,8.44,5,171 +33375762,Nice Apartment in Brooklyn,98862249,Ayush,Brooklyn,Williamsburg,40.70429,-73.94894,Private room,150,1,0,,,1,89 +33376169,BedStuy Private Room (D6),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93038,Private room,49,2,6,2019-06-28,2.17,8,226 +33376343,BedStuy Private Room (D7),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69058,-73.93068,Private room,49,2,8,2019-07-02,2.93,8,250 +33377642,Modern Private Room & Bathroom - Bushwick,819759,Einstein,Brooklyn,Bushwick,40.68628,-73.90895,Private room,65,5,5,2019-06-24,1.97,1,64 +33378475,Cozy room next to the L train,104960784,Lorena,Brooklyn,Bushwick,40.68989,-73.90447,Private room,50,3,1,2019-04-08,0.33,1,0 +33379269,1 BR Luxury Apt on Metro Ave in E Williamsburg,251468079,Ken,Brooklyn,Williamsburg,40.71573,-73.93887,Entire home/apt,110,4,5,2019-06-19,2.63,1,1 +33382288,Spacious green#3,208136645,Andre,Brooklyn,East Flatbush,40.65587,-73.94187,Private room,45,3,0,,,4,332 +33386573,BedStuy Private Room (D5),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6914,-73.93046,Private room,49,2,11,2019-06-30,4.23,8,254 +33388360,Camping/Glamping in NYC!,251530232,Liz,Bronx,Pelham Gardens,40.86304,-73.84559,Entire home/apt,150,1,4,2019-06-14,2.07,1,78 +33388458,"Cozy Private Room, Walking Distance From LGA, Rm 4",187822288,Zahir,Queens,East Elmhurst,40.76946,-73.87138,Private room,55,1,24,2019-06-20,7.13,5,168 +33388510,Two-Level Garden Apartment in the Heart of Harlem,251378476,Mike,Manhattan,East Harlem,40.80622,-73.94171,Entire home/apt,195,2,10,2019-06-28,3.75,1,0 +33388629,U W S Sunny Queen size bedroom near Columbia UNI*,248314431,David,Manhattan,Upper West Side,40.79658,-73.96118,Private room,75,1,8,2019-06-14,2.64,2,75 +33389288,"Cozy Private Room, Walking Distance From LGA, Rm 5",187822288,Zahir,Queens,East Elmhurst,40.77051,-73.87344,Private room,55,1,22,2019-06-19,6.47,5,162 +33389423,In Times Square Cozy Shared Female Apt,251510391,Demir,Manhattan,Hell's Kitchen,40.76459,-73.9888,Shared room,59,1,10,2019-06-23,2.91,3,358 +33389733,"Cozy, Shared Apt in Manhattan only For Female",251510391,Demir,Manhattan,Hell's Kitchen,40.76251,-73.98871,Shared room,59,1,7,2019-05-30,2.04,3,362 +33389926,"Cozy Private Room, Walking Distance From LGA, Rm 6",187822288,Zahir,Queens,East Elmhurst,40.77102,-73.87287,Private room,55,1,42,2019-06-24,12.12,5,153 +33390413,Gorgeous Lower Manhattan studio for summer sublet,251545269,Royi,Manhattan,Financial District,40.70613,-74.01583,Entire home/apt,135,35,0,,,1,105 +33391826,West village quiet and stylish large 1 bedroom,14563618,Jessy,Manhattan,West Village,40.7366,-74.00619,Entire home/apt,248,7,0,,,1,0 +33391968,Quiet Room in 3bed apt. Near Grand Central. NYC,111807108,Nico,Manhattan,Midtown,40.74526,-73.98163,Private room,48,30,1,2019-05-30,0.75,1,0 +33393883,Charming 2BR/2BA on Upper West Side,9028198,Erin,Manhattan,Upper West Side,40.80273,-73.96386,Entire home/apt,300,1,4,2019-06-23,1.40,1,4 +33394700,Cozy kosher home for your stay in NYC,251578356,Ari,Brooklyn,Sheepshead Bay,40.60165,-73.96299,Private room,55,1,3,2019-05-12,1.15,1,0 +33396290,Manhattan XTRA space & luxury for 12. Free Parking,71276635,Joe,Manhattan,Washington Heights,40.8357,-73.94234,Entire home/apt,560,1,1,2019-04-02,0.31,5,335 +33396762,BedStuy Private Room (D8),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69182,-73.92859,Private room,52,2,9,2019-06-30,3.42,8,268 +33397385,Midtown Manhattan great location (Gramacy park),16105313,Debra,Manhattan,Midtown,40.74482,-73.98367,Entire home/apt,5100,30,1,2019-06-22,1,2,343 +33397879,Large private bedroom New York,25073781,Arnaud,Manhattan,East Harlem,40.80564,-73.94198,Private room,65,2,15,2019-07-06,5.29,2,292 +33397908,Sunny apartment on L train in Bushwick/Ridgewood,30751157,Nick,Queens,Ridgewood,40.69945,-73.90771,Private room,89,3,4,2019-06-02,1.88,1,68 +33398320,Residence Near JFK (T1F/ TB4),145727343,Janelle,Queens,Jamaica,40.68324,-73.79169,Private room,39,1,4,2019-05-12,1.45,3,157 +33398445,Charming Upper West Side Apartment,61391963,Corporate Housing,Manhattan,Upper West Side,40.78536,-73.97543,Entire home/apt,133,30,0,,,91,312 +33398529,Very comfortable QNS bed judge yourselfg,50375092,Mohamad,Staten Island,Dongan Hills,40.57857,-74.09152,Private room,65,1,9,2019-05-31,2.62,3,35 +33399180,Large Sunny 3Bedroom Apartment with Office,139712252,Charn,Brooklyn,Crown Heights,40.66652,-73.93167,Entire home/apt,150,3,6,2019-06-25,2.17,1,313 +33399665,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.70569,-74.00403,Private room,169,7,1,2019-05-14,0.53,13,365 +33399897,AC Hotel New York Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.7065,-74.00503,Private room,169,7,1,2019-05-25,0.65,13,365 +33400016,A Brooklyn Launch Pad,35881969,John,Brooklyn,Williamsburg,40.70426,-73.94542,Private room,70,1,13,2019-06-24,5.13,2,76 +33400202,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70832,-74.00755,Private room,169,7,1,2019-05-17,0.57,13,358 +33400552,feel home,251625546,Eden,Brooklyn,Brownsville,40.66815,-73.92169,Private room,65,1,9,2019-06-16,2.93,2,320 +33400613,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70969,-74.00575,Private room,169,7,0,,,13,365 +33400953,Heart of NYC Full Home! 3Beds.2BR.2Bath. Kitchen.,3400827,Nicole,Manhattan,Upper West Side,40.79595,-73.97485,Entire home/apt,380,3,2,2019-04-21,0.74,1,0 +33401134,2 Bdrm Apt in Heart of Greenwich Village,29420917,Jesse,Manhattan,Greenwich Village,40.72882,-74.00089,Entire home/apt,300,2,6,2019-07-07,3.16,1,16 +33401610,"Park Slope, Brooklyn",251638751,Randy,Brooklyn,Park Slope,40.67946,-73.97497,Entire home/apt,120,1,5,2019-06-21,2.42,1,8 +33404689,LUXURY APARTMENT,251640733,Tomasz,Queens,Glendale,40.70467,-73.86108,Entire home/apt,200,10,3,2019-05-08,0.93,1,178 +33404876,New York City!! Times Square Home!!!,251564307,Lucy,Manhattan,Hell's Kitchen,40.76325,-73.98592,Entire home/apt,285,3,3,2019-06-11,1.80,1,215 +33405084,Newly renovated garden flat in historic Brooklyn,2019135,Amber,Brooklyn,Bedford-Stuyvesant,40.68114,-73.92065,Entire home/apt,175,3,4,2019-06-18,1.36,1,26 +33405611,Moxy NYC Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.711,-74.00883,Private room,169,7,4,2019-06-15,1.97,13,323 +33405642,"干净卫生的环境房,欢迎订房",236355800,彼特,Queens,Forest Hills,40.72755,-73.85028,Private room,60,2,2,2019-04-27,0.77,1,0 +33405850,Private 1st Floor with all amenities. Not shared,220125576,Yogi,Queens,Ozone Park,40.68042,-73.85515,Entire home/apt,70,3,1,2019-04-01,0.30,3,53 +33406037,Aloft Manhattan Downtown-7 Nights Min,5144567,Yun,Manhattan,Financial District,40.71086,-74.00746,Private room,169,7,2,2019-05-24,0.95,13,358 +33406188,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70712,-74.00609,Private room,169,7,2,2019-05-19,0.81,13,344 +33406274,Four Points by Sheraton New York Downtown-7 Nights,5144567,Yun,Manhattan,Financial District,40.70842,-74.00519,Private room,169,7,1,2019-06-09,1,13,358 +33406321,Cozy Williamsburg Bedroom Available,25604908,Nathalie,Brooklyn,Williamsburg,40.71606,-73.94093,Private room,70,7,0,,,1,13 +33406391,Aloft Manhattan Downtown - Financial District,5144567,Yun,Manhattan,Financial District,40.70922,-74.00571,Private room,169,7,0,,,13,365 +33406453,AC Hotel New York Downtown-7 Nights Minimum,5144567,Yun,Manhattan,Financial District,40.70599,-74.00503,Private room,169,7,1,2019-06-12,1,13,365 +33406864,Manhattan Luxury Private Bedroom!!!,224317184,Luke,Manhattan,Inwood,40.86259,-73.92728,Private room,90,3,2,2019-06-15,0.97,8,282 +33407038,Manhattan Luxury Private Bedroom!!,224317184,Luke,Manhattan,Inwood,40.86214,-73.92708,Private room,90,3,1,2019-06-04,0.86,8,252 +33407108,Manhattan Luxury Private Bedroom,224317184,Luke,Manhattan,Inwood,40.86256,-73.92887,Private room,90,3,1,2019-05-20,0.60,8,258 +33407244,Manhattan Luxury Private Bedroom!,224317184,Luke,Manhattan,Inwood,40.86364,-73.92835,Private room,90,3,4,2019-06-01,1.85,8,237 +33412533,Bronx Beauty,251704655,Hamza,Bronx,Port Morris,40.8027,-73.91563,Entire home/apt,109,2,9,2019-07-02,3.42,3,50 +33416167,"Bright, cozy getaway in the center of all..",105632711,Chris,Manhattan,Hell's Kitchen,40.76088,-73.99081,Entire home/apt,144,1,25,2019-07-05,7.98,1,12 +33416246,Extra Large Midtown East 1 Bedroom Elevator,61391963,Corporate Housing,Manhattan,Midtown,40.75577,-73.96727,Entire home/apt,142,30,0,,,91,310 +33417913,Private Room in the heart of financial district,21894419,Alba,Manhattan,Financial District,40.70956,-74.00713,Private room,250,1,0,,,2,292 +33418580,Lavish Private Room with own Bathroom/Williamsburg,251296793,Alex,Brooklyn,Bushwick,40.70103,-73.93979,Private room,80,30,1,2019-05-05,0.46,4,364 +33418931,BedStuy Private Room (D3),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6918,-73.93028,Private room,58,2,14,2019-07-04,5.19,8,261 +33419182,Great Room In Bed-stuy! J TRAIN,4669488,James,Brooklyn,Bedford-Stuyvesant,40.69103,-73.92719,Private room,50,3,1,2019-04-18,0.36,2,127 +33419280,Beautiful and Modern 2 Bed- 20 Min To Manhattan,240217000,Toni,Brooklyn,Bedford-Stuyvesant,40.68523,-73.9384,Entire home/apt,89,1,2,2019-06-24,0.92,1,194 +33420907,Modern Loft Like Spacious Studio - northern Harlem,136028350,James,Manhattan,Harlem,40.82868,-73.94678,Entire home/apt,159,1,5,2019-05-09,1.72,2,44 +33421406,X-Large Private room in newly renovated apartment,10149317,Lana,Queens,Kew Gardens,40.71134,-73.8279,Private room,60,3,11,2019-07-01,4.34,5,318 +33422134,Sunny/Bright apartment / top floor East Harlem,9625116,Jessica,Manhattan,East Harlem,40.79889,-73.9393,Entire home/apt,160,90,0,,,1,140 +33422875,"Bright, Modern, Luxurious 2BDR in Williamsburg",8877881,David,Brooklyn,Williamsburg,40.71105,-73.96748,Entire home/apt,499,4,0,,,1,0 +33422954,Spacious Studio,251781156,Trinize,Bronx,Tremont,40.84581,-73.8889,Shared room,25,2,5,2019-07-01,1.60,1,146 +33423101,Bedroom with Empire State view,51419167,Navin,Manhattan,Murray Hill,40.74636,-73.97561,Private room,120,1,5,2019-06-05,3.33,1,55 +33423250,"Location, Location, Location Close to Central Park",117536647,Victor,Manhattan,East Harlem,40.80022,-73.94185,Entire home/apt,124,1,13,2019-06-26,5.06,1,86 +33423849,Private Room with Private Bathroom Newly Renovated,10149317,Lana,Queens,Kew Gardens,40.71042,-73.82912,Private room,70,5,6,2019-06-18,2.54,5,308 +33424312,Comfortable and spacious bedroom suite in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92898,Private room,70,4,0,,,3,12 +33424723,Your own Loft like Studio Apartment sunny near all,136028350,James,Manhattan,Harlem,40.82775,-73.94667,Entire home/apt,127,1,8,2019-06-22,2.79,2,13 +33427025,Industrial bedroom 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68921,-73.95424,Private room,69,2,6,2019-07-02,4.62,4,279 +33427418,Cozy modern room in Bushwick,178676648,Tyler,Brooklyn,Bushwick,40.68355,-73.90701,Private room,150,1,1,2019-04-22,0.38,1,88 +33427580,Sun Lit Brooklyn 2 Bedroom Apt w Roof Views,194856554,Sebastian,Brooklyn,Williamsburg,40.72069,-73.95829,Entire home/apt,295,2,9,2019-06-02,2.90,1,3 +33427855,Sustainable event space and rooftop for photoshoot,148108,Fatima,Manhattan,Lower East Side,40.72121,-73.9909,Entire home/apt,800,1,1,2019-05-19,0.59,2,364 +33428005,"Cozy shared place in Midtown, close to everything",251817021,Lincoln,Manhattan,Hell's Kitchen,40.76632,-73.98597,Shared room,95,1,8,2019-06-06,2.38,5,23 +33428068,Central Location: Excellent travelers bed,247189581,Helena,Brooklyn,Fort Greene,40.68528,-73.97285,Shared room,32,2,6,2019-06-06,1.78,5,31 +33428109,Spacious bedroom in the heart of the West Village,23020619,Lorenzo,Manhattan,West Village,40.73587,-74.0043,Private room,70,2,3,2019-04-28,1.22,2,128 +33428552,Suite Houston - Free Street Parking & WIFI,219738858,Joe,Manhattan,Lower East Side,40.7204,-73.98371,Entire home/apt,180,30,5,2019-05-08,1.76,5,193 +33428571,Beautiful sunny bedroom in central Williamsburg,6080376,Leah,Brooklyn,Williamsburg,40.71322,-73.94655,Private room,74,1,18,2019-07-01,5.40,1,49 +33428580,Sunny Cozy Economic Garden Bedroom 4GR,17555570,Yan,Brooklyn,Crown Heights,40.66889,-73.92376,Private room,49,1,23,2019-06-27,7.04,12,48 +33429269,Big Room space in Harlem,22222260,Simone,Manhattan,Harlem,40.81824,-73.93832,Private room,81,4,4,2019-05-24,1.30,2,291 +33429437,"Luxury, Location, and Convenience - **RARE FIND**",230831241,Monica,Manhattan,Hell's Kitchen,40.76395,-73.99075,Entire home/apt,898,2,5,2019-06-21,3.13,1,294 +33429492,FEMALE SHARED ROOM 3 Single Beds Near Subway-1,172369331,Abby,Brooklyn,Coney Island,40.57776,-73.98313,Shared room,25,3,2,2019-06-11,1.05,10,0 +33429651,Nice and comfortable place for short stay.,251839479,Dieudonne,Bronx,Longwood,40.8279,-73.90516,Private room,100,2,2,2019-06-30,2,2,345 +33429773,Beautiful 600 ft studio in Soho,160754766,Jonah,Manhattan,SoHo,40.72506,-74.00876,Entire home/apt,230,3,2,2019-05-26,0.82,1,0 +33430450,"HOTEL ROOM LIKE “L” +AFFORDABLE PRICE",59156312,Viviana,Queens,Woodhaven,40.68727,-73.86413,Private room,59,3,4,2019-05-31,1.88,9,361 +33430500,Cute room close to M train,66959637,Carmen,Queens,Ridgewood,40.70557,-73.90713,Private room,55,7,0,,,2,290 +33430829,Artists Corner,21749637,Tucker,Brooklyn,Bedford-Stuyvesant,40.68599,-73.93005,Entire home/apt,100,1,5,2019-07-05,1.58,1,0 +33430847,Beautiful Cozy Shared Apt in Manhattan,251852817,Owen,Manhattan,East Harlem,40.80093,-73.94322,Shared room,45,1,19,2019-06-29,5.64,7,90 +33430867,Warm&clean private room near Times Square,17450152,Tiba,Manhattan,Hell's Kitchen,40.76389,-73.98872,Private room,138,1,8,2019-06-09,2.79,5,95 +33431246,Jungle room in hip Bushwick,215891351,Pablo,Brooklyn,Bushwick,40.70065,-73.92378,Private room,60,2,13,2019-06-18,3.94,2,48 +33431289,Rochester's Place Comfy Cozy Crown Heights NYC,251859047,Errol,Brooklyn,Crown Heights,40.67588,-73.92405,Private room,85,1,9,2019-06-02,3.10,3,125 +33431582,Comfortable clean overnight bed by Central Park,251852817,Owen,Manhattan,East Harlem,40.79922,-73.94187,Shared room,49,1,22,2019-06-30,6.53,7,83 +33431687,Charming Garden Apt Close to Central Park,25282730,Zac,Manhattan,Harlem,40.80653,-73.94942,Entire home/apt,160,1,15,2019-06-30,5.23,1,9 +33431709,Shared apartment by the Central Park,251852817,Owen,Manhattan,East Harlem,40.80073,-73.94328,Shared room,45,1,17,2019-06-30,5.10,7,72 +33431823,a brand new cozy shared apartment by Central Park,251852817,Owen,Manhattan,East Harlem,40.79949,-73.94265,Shared room,60,1,8,2019-06-16,2.40,7,90 +33431909,Beautiful cozy shared apartment by Central Park,251852817,Owen,Manhattan,East Harlem,40.79966,-73.94191,Shared room,55,1,13,2019-06-30,3.86,7,89 +33431978,Overnight a brand new apartment in upper east side,251852817,Owen,Manhattan,East Harlem,40.79885,-73.94304,Shared room,45,1,14,2019-06-25,4.16,7,83 +33431994,Entire Cozy 3 Bedroom in private home,52577963,Mark,Queens,Woodhaven,40.69459,-73.85081,Entire home/apt,150,5,0,,,6,121 +33433134,Luxury 1 Bedroom Loft,149080740,Dakota,Brooklyn,Bedford-Stuyvesant,40.69911,-73.94162,Private room,69,10,1,2019-03-30,0.29,1,59 +33433393,Bright nordic room in pastel colors,22028840,Miki,Manhattan,Washington Heights,40.86069,-73.92513,Private room,59,4,2,2019-05-22,0.67,2,103 +33434235,Comfort room close to Columbia University,251865256,Warren,Manhattan,Morningside Heights,40.80485,-73.96319,Private room,87,1,8,2019-05-19,2.50,1,365 +33439471,Sweet Single Room,251625546,Eden,Brooklyn,Crown Heights,40.66949,-73.92172,Private room,65,1,6,2019-05-29,1.91,2,323 +33441771,BEST location in Williamsburg,251932107,Nicola,Brooklyn,Williamsburg,40.71623,-73.9601,Private room,85,2,5,2019-06-10,2.38,1,86 +33444260,1 BR Gem w/ Private Patio in East Village,12913455,Fikile,Manhattan,East Village,40.72656,-73.98758,Entire home/apt,300,2,16,2019-06-30,5.78,1,52 +33444493,★Single Room in Backpackers Accommodation★,56060787,International,Brooklyn,Williamsburg,40.70908,-73.95663,Private room,55,1,14,2019-06-23,4.47,1,295 +33444872,Huge shared space East Village Female guests only,173386569,J,Manhattan,Gramercy,40.73392,-73.98085,Shared room,70,3,3,2019-06-23,1.38,2,0 +33445970,Cozy place located in the Heart of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76691,-73.98726,Shared room,95,1,3,2019-05-30,1.96,5,23 +33446054,Cozy&Charming NYC style apt in the heart of SoHo,251966476,Alex,Manhattan,Nolita,40.72394,-73.99583,Entire home/apt,240,1,19,2019-07-04,6.13,1,121 +33446295,Furnished Bedroom in House w/ LAUNDRY & GARDEN,251826717,Ryan,Brooklyn,Bedford-Stuyvesant,40.68956,-73.9432,Private room,50,3,6,2019-06-29,2.77,1,0 +33446373,large room in a 4 bedroom (2bath) apartment,251968645,Diana,Brooklyn,Greenpoint,40.73354,-73.95719,Private room,65,1,1,2019-04-14,0.35,1,0 +33446557,"Mi casa, tu casa!",203932958,Lina,Manhattan,Lower East Side,40.72044,-73.98335,Entire home/apt,240,3,10,2019-06-24,3.23,2,8 +33446581,Private Room by Bushwick with Piano & Guitar,251969263,Eunice,Queens,Ridgewood,40.70008,-73.89596,Private room,47,1,4,2019-06-23,1.38,2,28 +33447225,Relaxing abode in LES,203932958,Lina,Manhattan,Lower East Side,40.71922,-73.98514,Private room,120,1,3,2019-04-16,0.89,2,11 +33448379,Comfortable 3 Bedroom Loft Apartment,251985344,Marilyn,Brooklyn,Bushwick,40.70041,-73.92483,Private room,54,3,0,,,1,99 +33448532,Tribeca Apt w/ Rooftop Views,251986333,Juliet,Manhattan,Civic Center,40.71626,-74.00257,Private room,200,4,5,2019-06-06,1.97,1,327 +33448577,Midtown 2 BED Large Kitchen Free Breakfast Great,214347105,Roman,Manhattan,Midtown,40.75277,-73.96594,Entire home/apt,419,4,1,2019-05-18,0.58,8,218 +33448765,Cozy Place Right Next to Central Park,251817021,Lincoln,Manhattan,Hell's Kitchen,40.7667,-73.98692,Shared room,95,1,2,2019-06-20,1.30,5,23 +33448834,Sun-filled Private BR in Luxury Chinatown Apt,118375653,Charlene,Manhattan,Two Bridges,40.71099,-73.99442,Private room,150,3,3,2019-06-25,2.43,3,4 +33449304,Treat Your self,84562269,Finely,Queens,Queens Village,40.71933,-73.7536,Private room,55,1,1,2019-04-11,0.34,2,0 +33449485,BR in Luxe Chinatown Apt w/ Private Balcony & Bath,118375653,Charlene,Manhattan,Two Bridges,40.71239,-73.99461,Private room,200,3,0,,,3,0 +33449518,21min to Manhattan & Safe Neighborhood&PrivateRoom,238989521,Takatomo,Queens,Sunnyside,40.73872,-73.92678,Private room,35,30,0,,,1,1 +33450079,Quiet Apartment with Private Backyard,68296703,Chris,Brooklyn,Crown Heights,40.67257,-73.94011,Entire home/apt,78,3,3,2019-06-21,1.18,1,17 +33451336,Artist Heaven Garden Loft,132099860,Mark,Manhattan,East Village,40.72283,-73.98382,Entire home/apt,450,5,0,,,1,310 +33451456,Stylish Brownstone with Stainless Steel Kitchen,3073952,Christof,Brooklyn,Bedford-Stuyvesant,40.68035,-73.91035,Entire home/apt,167,1,8,2019-06-25,4.62,2,80 +33451472,Large private bedroom 15 min from Manhattan,149312408,Kateryna And Tim,Queens,Astoria,40.76896,-73.92404,Private room,65,1,23,2019-07-02,7.26,2,334 +33451863,Luxe Modern Private Townhome,99895085,Joseph,Brooklyn,Carroll Gardens,40.68374,-73.99368,Private room,88,1,11,2019-06-23,3.47,1,85 +33451888,"Super comfy Bushwick getaway, 4 min. from the M!",50737287,D'Arcy,Brooklyn,Bushwick,40.69814,-73.9219,Private room,40,2,1,2019-04-30,0.43,1,0 +33452409,Home Sweet Home,92411,Karen,Manhattan,Harlem,40.82857,-73.95161,Entire home/apt,175,30,0,,,1,5 +33453326,Unique Private Suite,20182359,Edgar,Manhattan,Harlem,40.81141,-73.94051,Private room,135,3,7,2019-07-03,4.04,1,365 +33455253,Cozy and Sunny Bedroom in Private Apartment,71878492,Raymel,Brooklyn,Williamsburg,40.71437,-73.94133,Private room,70,5,3,2019-06-26,1.58,1,66 +33455322,Private Bedroom in Original Bed-Stuy Apartment,6410979,Alice,Brooklyn,Bedford-Stuyvesant,40.69108,-73.94535,Private room,109,2,1,2019-04-15,0.35,2,0 +33455365,Cozy shared room in the middle of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76838,-73.98723,Shared room,95,1,4,2019-05-30,1.20,5,21 +33455408,Cozy Place in the Middle of Manhattan,251817021,Lincoln,Manhattan,Hell's Kitchen,40.76769,-73.98681,Shared room,95,1,4,2019-06-08,2.22,5,19 +33456259,Beautiful upper west side apt share,8112314,Mena,Manhattan,Upper West Side,40.78399,-73.9733,Private room,65,1,4,2019-06-09,2.03,2,364 +33457366,Room available in BedStuy condo w/ private yard,35528708,Cindy,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94787,Private room,50,1,1,2019-06-02,0.81,2,0 +33457731,Room available in BedStuy condo w/ private yard,35528708,Cindy,Brooklyn,Bedford-Stuyvesant,40.69615,-73.9474,Private room,56,1,4,2019-06-08,1.20,2,0 +33460551,Sun Drenched Williamsburg Gem,32942122,Jessica,Brooklyn,Williamsburg,40.70921,-73.9426,Entire home/apt,125,2,1,2019-06-16,1,1,22 +33464005,Large Modern Studio in East Village,252118553,Matthew,Manhattan,East Village,40.72191,-73.97869,Entire home/apt,160,2,4,2019-06-15,1.54,1,33 +33467176,"Le Chateau Boutique in Le Brooklyn , NY ! Voila !",148725429,Javier,Brooklyn,Bushwick,40.68942,-73.91714,Entire home/apt,99,2,17,2019-07-01,6.07,2,300 +33467309,Williamsburg Charm,172422032,Alexandria,Brooklyn,Williamsburg,40.7136,-73.96221,Private room,120,7,0,,,1,235 +33467371,"Private, Beautiful Upper Eastside Townhome",683230,Thomas,Manhattan,Upper East Side,40.76725,-73.95864,Private room,950,3,11,2019-06-30,4.23,3,251 +33468225,Spacious Two-Bedroom Apartment with Private Garden,5421086,Steven,Manhattan,Harlem,40.82254,-73.9501,Entire home/apt,110,30,0,,,1,102 +33468702,Eclectic Space for Chill and Creative Energies,75999185,Fana,Brooklyn,Bushwick,40.6916,-73.90713,Private room,45,1,6,2019-07-02,5.00,1,337 +33468884,Duplex Townhouse in Heart of Williamsburg,252163238,Kelly,Brooklyn,Williamsburg,40.71912,-73.94296,Entire home/apt,327,2,7,2019-06-16,3.00,1,49 +33469440,Apartment minutes from manhattan,252168489,Tianna,Queens,Jamaica Hills,40.71022,-73.79665,Entire home/apt,110,2,8,2019-06-29,3.16,1,81 +33469797,"NYC SWEET OASIS (POOL, PATIO,& OUTSIDE SPACE)",252171508,Lisa,Queens,Jamaica,40.67282,-73.77793,Entire home/apt,190,1,16,2019-07-04,10.00,1,132 +33470295,Convenient and comfy,36800675,Mandisa,Queens,Jamaica,40.68462,-73.77582,Entire home/apt,120,3,9,2019-06-30,3.14,1,44 +33470580,Top Floor Two Bedroom at Top of Manhattan,19931875,Luz & Ruben,Manhattan,Inwood,40.86774,-73.92401,Entire home/apt,99,5,3,2019-05-22,1.30,3,271 +33471012,Designer Loft,252181650,Daniel & Neena,Manhattan,Chinatown,40.71543,-73.99323,Entire home/apt,350,1,18,2019-06-30,5.74,1,82 +33471805,Comfortable Room with Private Bath - 15 min to JFK,252191305,Marion,Queens,Cambria Heights,40.6909,-73.73193,Private room,50,1,34,2019-06-30,11.21,1,61 +33472083,Private bedroom on historic street in Manhattan,44969970,Jaye,Manhattan,Chinatown,40.71404,-73.99085,Private room,80,1,2,2019-06-22,1.30,1,172 +33472626,Top room with a view Quiet Easy A-train downtown,19931875,Luz & Ruben,Manhattan,Inwood,40.86804,-73.92429,Private room,57,7,1,2019-07-01,1,3,225 +33472677,Spacious room in Brooklyn. Only girls please,57158173,Katerina,Brooklyn,Midwood,40.61186,-73.96955,Private room,38,3,1,2019-06-26,1,1,0 +33472719,Quiet & Cozy Central Park Charmer,10421091,Melanie,Manhattan,Upper West Side,40.78232,-73.97575,Entire home/apt,140,30,1,2019-04-28,0.42,1,74 +33473125,#5 STUDIO one block to train station,231138233,Filiz,Manhattan,East Harlem,40.78974,-73.94933,Entire home/apt,165,1,17,2019-06-18,5.93,5,83 +33473567,Hamilton Heights Full Floor Garden Apt,33388853,Christine,Manhattan,Harlem,40.8309,-73.94308,Entire home/apt,200,60,0,,,1,219 +33473664,The Park Townhouse - Jewel of Fort Greene,1413658,Nyneve,Brooklyn,Fort Greene,40.68991,-73.97352,Entire home/apt,750,4,13,2019-07-07,4.06,1,179 +33473671,"Clean, cool and modern downtown apartment",44129118,Anthony,Manhattan,Financial District,40.70997,-74.00816,Private room,150,4,0,,,2,0 +33473838,"#6 Cozy Studio, one block from train station",231138233,Filiz,Manhattan,East Harlem,40.79,-73.94964,Entire home/apt,165,1,16,2019-06-30,6.00,5,56 +33474092,"1 Bedroom, Pvt Living Space & Bath- Till May 30th",13206448,Ruchi,Manhattan,Upper West Side,40.79908,-73.96465,Private room,50,7,2,2019-05-24,0.60,1,283 +33474649,"private room for women, central location in NYC",175152790,Stella,Manhattan,Midtown,40.74567,-73.98478,Private room,65,1,14,2019-06-13,4.72,1,0 +33474952,Spacious private bedroom in East Village / StMarks,95892016,Leonora,Manhattan,East Village,40.72503,-73.98466,Private room,125,1,3,2019-06-15,0.95,5,318 +33475698,Germania's Deluxe Palace,252019224,Gladys Germania,Queens,Jamaica Estates,40.71668,-73.80588,Entire home/apt,250,1,13,2019-06-30,4.15,1,359 +33475840,Highclass clean and calm,247171817,Habiba,Queens,Sunnyside,40.74685,-73.91586,Private room,50,1,1,2019-04-07,0.32,1,66 +33477284,Spacious NEW studio in Brooklyn near NYC subway!,72855892,Melvis,Brooklyn,Bedford-Stuyvesant,40.68171,-73.92858,Entire home/apt,115,1,19,2019-06-30,6.55,1,74 +33483299,Full bedroom with private access and courtyard,7050972,Paloma,Brooklyn,Williamsburg,40.70658,-73.9463,Private room,70,2,0,,,1,0 +33485088,Sunny BedStuy hideaway near clubs + 30 min to City,17407539,Mari,Brooklyn,Bedford-Stuyvesant,40.68782,-73.94327,Private room,40,14,1,2019-04-07,0.32,1,35 +33485823,Room in te heart of manhattan - prime location!,95892016,Leonora,Manhattan,East Village,40.72713,-73.98402,Private room,80,1,4,2019-06-15,1.26,5,318 +33485978,"New to Market, Extended Stay Studio in Park Slope",26989131,Cathy,Brooklyn,Gowanus,40.66949,-73.99112,Entire home/apt,85,30,2,2019-06-23,1.07,1,100 +33486731,"Sunny, spacious Apt. near Prospect Park",21877010,Clara,Brooklyn,Prospect-Lefferts Gardens,40.66075,-73.95926,Entire home/apt,120,4,3,2019-05-26,1.15,1,0 +33488037,"Beautiful, eclectic large Soho-Tribeca 2-Bed Apt",4977373,Jesse,Manhattan,Tribeca,40.72078,-74.00726,Entire home/apt,300,4,5,2019-07-01,2.88,1,20 +33488044,Two amazing bedrooms in the heart of East Village,95892016,Leonora,Manhattan,East Village,40.7272,-73.98288,Private room,260,1,0,,,5,317 +33488188,Private Room in Light-Filled Loft,2093557,Sarah,Brooklyn,Bushwick,40.70149,-73.92752,Private room,80,1,4,2019-06-07,1.79,2,22 +33489978,Huge private apartment in Manhattan,252356839,Leo,Manhattan,Harlem,40.82802,-73.94481,Entire home/apt,74,3,1,2019-04-07,0.32,2,0 +33490271,Spacious private bedroom in Washington Heights,186621582,Artem,Manhattan,Washington Heights,40.85513,-73.93305,Private room,60,3,5,2019-06-01,1.95,1,20 +33490968,2BR High Ceiling Zen Sanctuary in Artsy Bushwick,234270791,April G,Brooklyn,Bushwick,40.69627,-73.93076,Private room,100,5,2,2019-05-27,0.70,3,94 +33491210,Clean and comfortable private room in NYC,27947449,Teya,Bronx,Parkchester,40.83758,-73.85804,Private room,47,1,4,2019-07-06,1.90,2,167 +33491297,Entire Apartment in Park Slope Brownstone,3208908,Julie,Brooklyn,Park Slope,40.68068,-73.97938,Entire home/apt,245,3,3,2019-06-12,1.29,1,35 +33491517,Spacious 1-bedroom apartment in Pelham Parkway,249412015,Jamie,Bronx,Bronxdale,40.85464,-73.8672,Entire home/apt,75,1,0,,,1,0 +33491707,Private Garden Apartment in Park Slope Brownstone,252372862,Keith & Masa,Brooklyn,Park Slope,40.66867,-73.98017,Entire home/apt,135,3,0,,,1,23 +33492175,The beautiful room with your own bathroom,175370972,Young,Queens,Flushing,40.7577,-73.83519,Private room,65,1,13,2019-06-22,4.06,1,36 +33492234,Penthouse with Manhattan views,37273247,Gary,Queens,Maspeth,40.7289,-73.89803,Entire home/apt,130,2,4,2019-06-30,1.88,1,338 +33492587,[Entire place] Comfy Apt in Prime Location,13442714,Nuan,Manhattan,SoHo,40.72207,-73.99751,Entire home/apt,173,5,2,2019-06-06,0.76,2,3 +33492744,Cozy Studio in the Heart of Spanish Harlem,19392723,Pablo,Manhattan,East Harlem,40.79463,-73.94604,Entire home/apt,100,2,2,2019-04-18,0.70,1,8 +33493038,Sunny 1-Bedroom close to Manhattan,5708673,Meike,Brooklyn,Bushwick,40.69934,-73.92947,Entire home/apt,120,4,1,2019-04-26,0.41,1,15 +33493759,The Yorkville Club House,252386106,Derrick,Manhattan,Upper East Side,40.78045,-73.94688,Private room,105,1,19,2019-07-07,6.71,1,9 +33493942,Mid Century modern room 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68913,-73.95639,Private room,72,2,6,2019-06-23,4.74,4,316 +33494085,Vintage Brooklyn Room 1 minute to Subway,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68868,-73.95623,Private room,79,2,5,2019-06-28,4.17,4,351 +33494125,Cozy and quiet studio by Central Park,19300279,Shahar,Manhattan,Harlem,40.80119,-73.95749,Entire home/apt,140,11,0,,,1,0 +33494804,Special!! Near NYC up to 4+ people,246194760,Noel,Queens,East Elmhurst,40.76009,-73.88271,Private room,49,1,15,2019-06-24,5.62,4,1 +33495663,luxury apartment near wall street,121431667,Ellen,Manhattan,Financial District,40.70464,-74.0164,Entire home/apt,134,15,1,2019-06-23,1,1,2 +33496225,BEAUTIFUL CONDO IN HEART OF HELLS KITCHEN !!,107484794,Aaron,Manhattan,Hell's Kitchen,40.76468,-73.98785,Private room,160,1,22,2019-06-30,6.80,1,77 +33496293,A great amount of space for a family!,2363889,Amy,Manhattan,Lower East Side,40.71508,-73.97895,Entire home/apt,140,2,7,2019-07-01,2.88,1,27 +33496728,One bedroom apartment in Williamsburg,11740339,(Email hidden by Airbnb),Brooklyn,Williamsburg,40.7184,-73.94434,Entire home/apt,120,2,0,,,1,0 +33496995,New York at its BEST!,247940983,Rhonda,Brooklyn,Flatbush,40.65421,-73.95751,Private room,50,1,3,2019-04-12,0.94,1,358 +33497642,"Walk distance to Central Park, 10min Time Square",61940591,Raquel,Manhattan,Upper East Side,40.77289,-73.94689,Private room,120,1,14,2019-07-04,4.88,1,147 +33497845,Brooklyn Brownstone — BedStuy Garden Apartment,6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69081,-73.93025,Entire home/apt,155,2,10,2019-07-04,4.92,8,270 +33497909,"Beautiful, Comfortable Studio",252432969,Jaime,Manhattan,Midtown,40.7545,-73.97067,Entire home/apt,260,1,14,2019-06-23,4.47,1,139 +33498032,"Beautiful Private apartment, Sunset Park Brooklyn",252437123,Connie,Brooklyn,Sunset Park,40.64849,-74.00277,Entire home/apt,130,2,8,2019-06-30,2.55,1,19 +33498743,Trendy and Modern Room in Bushwick,252442970,Ronen,Brooklyn,Bushwick,40.70151,-73.92293,Private room,70,5,0,,,1,0 +33499489,Room In Manhattan Close to Everything,251430918,Medena,Manhattan,Hell's Kitchen,40.76808,-73.98625,Private room,89,2,11,2019-07-01,3.51,2,54 +33500292,Close to JFK,146275359,Modupe,Queens,Springfield Gardens,40.68831,-73.75141,Private room,42,3,10,2019-07-06,3.09,3,352 +33500813,Upper East Fun and Sunny 1B1B Very Close to Subway,252460693,Stephen,Manhattan,East Harlem,40.78499,-73.94588,Entire home/apt,159,1,15,2019-07-06,5.11,1,152 +33505047,Cozy Private Bedroom in Manhattan,163619844,James Cem,Manhattan,Harlem,40.82004,-73.94622,Private room,70,2,5,2019-06-15,1.65,1,1 +33505762,THE WHITE HOUSE BEDROOM 3,24660289,Dennis/Norma,Bronx,Port Morris,40.80074,-73.91574,Private room,50,3,2,2019-05-04,0.81,1,350 +33509538,WALK TO FREE SI FERRY FROM FURNISHED STUDIO APT,160956,Neil,Staten Island,St. George,40.64015,-74.08127,Entire home/apt,99,3,4,2019-06-28,2.31,1,326 +33510678,COZY&CHARMING ROOM - CLOSE TO MANHATTAN,239952407,Alaor,Queens,Long Island City,40.75961,-73.93366,Private room,50,5,0,,,1,0 +33511856,Large Beautiful Apartment in Peter Cooper Village,5592151,Joshua,Manhattan,Stuyvesant Town,40.73351,-73.97798,Entire home/apt,130,60,0,,,1,243 +33512307,Cozy Studio in Queens zZZ,252535164,Shahrath,Queens,Woodside,40.74239,-73.9018,Entire home/apt,99,3,9,2019-06-26,2.93,1,236 +33512766,STEINWAY..The heart of Astoria,73227284,Bidhya,Queens,Astoria,40.7577,-73.91728,Private room,60,2,6,2019-05-10,1.94,1,333 +33513077,Large Room in Brownstone Townhouse (2nd fl),20555097,Emilie,Brooklyn,Bedford-Stuyvesant,40.68211,-73.92695,Private room,90,5,2,2019-05-11,0.76,2,71 +33513897,Coming soon: stunning Upper West Side apartment,252545388,Joseph,Manhattan,Upper West Side,40.77112,-73.98964,Entire home/apt,1000,31,0,,,1,103 +33514031,Cozy NoHo Studio Apartment,251762237,Lori,Manhattan,NoHo,40.72493,-73.99318,Entire home/apt,106,7,2,2019-05-19,0.94,1,3 +33514079,New Furnished Modern Two-Bedroom Apartment,3259045,Jessica,Queens,Astoria,40.75744,-73.91839,Entire home/apt,115,30,1,2019-05-31,0.77,1,311 +33514118,Close to city in trendy Queens! Females only,30870512,Linda,Queens,Elmhurst,40.72688,-73.87861,Private room,38,1,6,2019-06-19,2.34,1,36 +33514962,中城西豪华客厅!,58762277,Wang,Manhattan,Hell's Kitchen,40.76695,-73.99103,Private room,69,4,0,,,1,57 +33515695,Private Room near to Manhattan,29470566,Lidu,Queens,Astoria,40.76799,-73.90995,Private room,65,1,6,2019-04-29,1.96,1,31 +33515760,Cozy vibes next to Prospect Park/Botanical Gardens,855437,Ronni,Brooklyn,Prospect-Lefferts Gardens,40.66277,-73.9574,Private room,75,2,7,2019-06-19,3.23,1,111 +33516105,Bright and Spacious East Village Apartment,7130003,Ranita,Manhattan,East Village,40.72344,-73.98479,Entire home/apt,250,30,0,,,2,221 +33516720,Chic modern 1 bedroom apartment in Astor Place,23022462,Javier,Manhattan,East Village,40.7299,-73.98979,Entire home/apt,275,3,2,2019-06-12,0.70,1,123 +33519749,Cozy And Stylish Modern Home,252590512,Yien,Staten Island,New Brighton,40.64098,-74.0935,Entire home/apt,249,2,8,2019-06-22,2.58,1,241 +33519952,"Class, Comfort, Convenience In The Heart of NYC",229489983,Devin,Manhattan,Hell's Kitchen,40.76485,-73.99229,Entire home/apt,799,2,5,2019-06-02,2.38,1,247 +33520202,"Spacious apt, New building in trendy Bushwick!",47343944,Tamara,Brooklyn,Bushwick,40.7042,-73.92719,Entire home/apt,147,2,0,,,1,0 +33520254,Sunny 1 Bedroom Apt in Bed-Stuy Brownstone,42946242,Kirby,Brooklyn,Bedford-Stuyvesant,40.69318,-73.95054,Entire home/apt,110,14,0,,,1,0 +33520773,Crown Heights Studio,190094547,Marion,Brooklyn,Crown Heights,40.67144,-73.92496,Entire home/apt,90,3,3,2019-05-06,1.18,1,7 +33521183,"Massive, Incredible Brand New East Village Loft",238779678,Dustin,Manhattan,East Village,40.72735,-73.98917,Private room,62,30,0,,,9,325 +33521985,"Kings palace close to jfk, Belmont track & casino",160940380,Adeola,Queens,St. Albans,40.69967,-73.75026,Entire home/apt,600,2,2,2019-06-23,1.58,3,332 +33523404,Bedroom in Soho for working professional,29952888,Noah,Manhattan,SoHo,40.72029,-74.00033,Private room,67,30,0,,,1,50 +33523503,Comfortable master room in Brooklyn close to train,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67723,-73.91256,Private room,58,2,6,2019-06-01,2.47,5,213 +33523616,Nightly or long sublet. (12x12 room in 2BR),21210898,Fagan,Brooklyn,Bushwick,40.70723,-73.92066,Private room,120,2,0,,,2,0 +33523818,STOP n SLEEP Large - LGA LaGuardia Airport and JFK,246194760,Noel,Queens,East Elmhurst,40.75985,-73.88294,Private room,39,1,8,2019-05-10,2.58,4,210 +33524882,Chic+Charming Soho Loft Apartment [True 1BR],38174433,Sophia,Manhattan,SoHo,40.72347,-74.00463,Entire home/apt,235,1,3,2019-06-04,1.25,1,34 +33524910,Manhattan Treasure (Harlem Find),89349779,Dee,Manhattan,Harlem,40.8026,-73.95829,Entire home/apt,182,2,5,2019-07-06,5,1,19 +33524941,The New Harlemites,252607014,Eric,Manhattan,Harlem,40.81325,-73.9398,Entire home/apt,150,3,6,2019-05-21,2.31,1,25 +33526039,One bedroom apartment in mid-town,20229932,Francesco,Manhattan,Murray Hill,40.74535,-73.9764,Entire home/apt,120,2,6,2019-06-30,1.94,1,0 +33526710,"1 Bedroom studio 15Mins from JFK,30 mins by carLGA",252628456,Lisa,Brooklyn,East New York,40.66155,-73.88916,Entire home/apt,100,2,4,2019-07-05,4,1,96 +33526801,new years eve week,239770902,Chandler,Manhattan,Midtown,40.75383,-73.97207,Private room,350,5,0,,,1,353 +33527195,Entire Luxurious Condominium Near JFK Airport,110308993,Giovanina,Queens,Jamaica,40.67138,-73.77238,Entire home/apt,90,1,7,2019-05-28,2.66,1,0 +33527468,Sonder | Stock Exchange | Pristine Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70604,-74.01021,Entire home/apt,194,2,3,2019-06-03,1.27,327,303 +33527634,Best of Brooklyn: Prospect Park,86325,Josephine,Brooklyn,Prospect Heights,40.67323,-73.96863,Entire home/apt,145,3,1,2019-06-04,0.86,1,45 +33527778,Sonder | Stock Exchange | Stunning 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70763,-74.0105,Entire home/apt,470,2,5,2019-06-02,1.88,327,272 +33527998,Sonder | Stock Exchange | Relaxed 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70747,-74.01226,Entire home/apt,247,2,9,2019-06-14,3.42,327,272 +33528078,Sunny Bedroom in Ridgewood/Bushwick,38194603,Adham,Queens,Ridgewood,40.70622,-73.90641,Private room,50,1,13,2019-06-24,4.53,2,5 +33528090,Sonder | 21 Chelsea | Vibrant 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.7425,-73.99443,Entire home/apt,260,29,0,,,327,365 +33528101,Sunlit Bedroom with Private Terrace - Williamsburg,19643468,Kelvin,Brooklyn,Williamsburg,40.70652,-73.94541,Private room,80,1,2,2019-05-19,0.65,1,0 +33528376,Spacious Williamsburg Duplex w/ Private Patio,243489234,Chelsea,Brooklyn,Williamsburg,40.70855,-73.94992,Entire home/apt,210,2,0,,,1,3 +33528511,bellissima stanza privata in east harlem NYC,7594732,Lele,Manhattan,East Harlem,40.79433,-73.94414,Private room,70,2,0,,,1,103 +33528562,"Private, warm & inviting contemporary space.",252641467,Antoinette,Bronx,Wakefield,40.88491,-73.85484,Private room,33,1,0,,,1,116 +33529491,Private bedroom in the heart of east village,95892016,Leonora,Manhattan,East Village,40.72705,-73.9846,Private room,80,1,1,2019-04-04,0.31,5,15 +33529536,Large Private room minutes to Times Square,123810965,Carlton,Manhattan,Harlem,40.81089,-73.94309,Private room,62,1,7,2019-07-05,2.21,2,172 +33529691,Comfy & Cheerful Oasis in Vibrant Neighborhood,94531229,Rocco,Brooklyn,Williamsburg,40.7198,-73.94125,Entire home/apt,171,2,6,2019-06-17,3.00,1,48 +33529806,Entire studio with separate kitchen & dining room!,105270072,Ulviyya,Brooklyn,Sheepshead Bay,40.59516,-73.96208,Entire home/apt,125,1,0,,,1,0 +33530151,"West Village Town House +With Private Backyard",23532686,Donald,Manhattan,West Village,40.73103,-74.00778,Entire home/apt,350,3,0,,,1,16 +33530282,LUXURY 2bedrm w/ Outdoor Patio - TimeSq/42nd & 9th,51667335,Janio,Manhattan,Hell's Kitchen,40.76022,-73.99253,Entire home/apt,395,2,11,2019-06-23,3.63,1,247 +33531011,Sunny Private bedroom in convenient location,41859649,Melissa,Brooklyn,Bushwick,40.70039,-73.92352,Private room,72,2,2,2019-05-06,0.70,1,364 +33532173,"Only for airline crew, pilots and flight attendant",104814095,Hanine,Queens,East Elmhurst,40.76078,-73.88222,Private room,70,1,1,2019-07-07,1,3,76 +33532216,BKLYN Cozy B&B,252678417,Anthony,Brooklyn,Bedford-Stuyvesant,40.69655,-73.93458,Private room,55,1,18,2019-06-22,6.00,1,0 +33532516,Urban Zen Oasis,44205809,Victoria,Brooklyn,Crown Heights,40.67401,-73.92371,Entire home/apt,225,1,8,2019-06-08,2.61,1,178 +33533498,"MASTER ROOM +Close to the JFK and LGA airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73018,-73.87172,Private room,57,1,20,2019-07-05,6.32,4,156 +33533601,Chic Blush Freesia,243489304,Jackie,Manhattan,Lower East Side,40.71629,-73.98862,Private room,99,4,15,2019-07-05,4.74,2,191 +33533803,Feel free and at home In my cozy apartment.,167949895,W. Jesse,Bronx,Kingsbridge,40.86313,-73.90183,Shared room,35,1,3,2019-04-06,0.94,1,0 +33534624,Chic Blush Shine,243489304,Jackie,Manhattan,Chinatown,40.71515,-73.99099,Private room,89,4,16,2019-07-06,5.00,2,166 +33536886,★ Private Room in great location near Times Square,228151544,Rubens,Manhattan,Hell's Kitchen,40.7637,-73.99037,Private room,135,1,12,2019-07-07,5.90,1,278 +33543641,Home away from home!! (4A),246272839,Northern Star Realty,Queens,Flushing,40.76671,-73.81935,Entire home/apt,85,1,8,2019-07-01,2.82,4,150 +33544433,Spacious one bedroom Suit! (2T),246272839,Northern Star Realty,Queens,Flushing,40.7651,-73.81749,Entire home/apt,85,1,5,2019-06-03,2.08,4,156 +33544651,Sun Lit Room in Ridgewood/Bushwick 25 mins to NYC,135280693,John,Queens,Ridgewood,40.70811,-73.91054,Private room,60,3,3,2019-06-01,1.15,2,264 +33544900,Modern Suite in Bed-Stuy,252765359,Bianca,Brooklyn,Bedford-Stuyvesant,40.67837,-73.91871,Entire home/apt,60,2,5,2019-06-30,1.53,1,0 +33546025,Cozy 2 bedroom Manhattan apartment,250269817,Toli,Manhattan,Upper East Side,40.78234,-73.9476,Entire home/apt,219,2,20,2019-06-28,6.52,1,133 +33546136,Cozy 3BR/2BA in LES - Close to Subway - Sleeps 9,224813944,Anne & Gary,Manhattan,Lower East Side,40.71917,-73.98343,Entire home/apt,442,1,12,2019-06-23,4.50,1,253 +33546854,LAVISH 3 Bedroom in Williamsburg!!,252642141,Inez,Brooklyn,Bedford-Stuyvesant,40.69421,-73.93834,Entire home/apt,250,2,3,2019-07-07,1.50,1,117 +33547205,Sunny Astoria One-Bedroom With Stunning NYC Views,252782565,Bharat,Queens,Astoria,40.76625,-73.91946,Entire home/apt,160,2,1,2019-04-22,0.38,1,7 +33548209,"Large, Bright, Full Home in Greenpoint w/ Backyard",252790183,Shelley,Brooklyn,Greenpoint,40.73279,-73.954,Entire home/apt,240,2,1,2019-04-28,0.42,1,7 +33548323,Modern & Cozy Room with PRIVATE balcony!,6946537,Tiara,Brooklyn,Flatbush,40.6307,-73.95815,Private room,80,2,0,,,1,90 +33549215,Entire apartment in the heart of Williamsburg,128914189,Edgar,Brooklyn,Williamsburg,40.71285,-73.96535,Entire home/apt,190,30,0,,,2,188 +33549469,Sanctuary in the Heart of Williamsburg!,1155020,Timothy,Brooklyn,Williamsburg,40.72037,-73.95857,Entire home/apt,199,3,0,,,1,99 +33549508,Musical loft sanctuary with private roof deck,4345155,Charles,Brooklyn,Greenpoint,40.73293,-73.95889,Entire home/apt,250,5,0,,,1,174 +33550800,Luxury Chelsea Loft with Private Elevator,230119671,Yullya,Manhattan,Chelsea,40.74567,-73.99254,Entire home/apt,949,2,6,2019-06-05,2.02,1,270 +33551770,Sun soaked private room with all the amenities!,84084279,Jarrod,Brooklyn,Crown Heights,40.67692,-73.92241,Private room,60,1,26,2019-07-07,7.88,1,330 +33551810,Beautiful Fifth Avenue Studio with Garden,248282016,Angeline,Manhattan,Upper East Side,40.78513,-73.95588,Entire home/apt,180,5,1,2019-04-27,0.41,1,77 +33552714,Heaven,22388020,Lùis,Brooklyn,Bushwick,40.7023,-73.91911,Private room,59,1,8,2019-06-25,2.73,1,56 +33552984,2 BRM Heart of Time Square,252824941,Alex,Manhattan,Hell's Kitchen,40.76273,-73.99061,Entire home/apt,300,1,14,2019-07-06,4.52,1,306 +33553737,1 Bedroom open floor garden apartment,76451668,Juan,Brooklyn,Bedford-Stuyvesant,40.68592,-73.92695,Entire home/apt,120,31,1,2019-05-11,0.51,2,155 +33554251,"seconds from subway, 30 min drive to city,solo tra",47504485,Danny,Brooklyn,Bensonhurst,40.61225,-73.9815,Private room,39,7,12,2019-06-11,4.50,2,58 +33555650,A Nice Room,199833548,Syeda,Queens,Jamaica,40.70585,-73.80867,Private room,50,1,13,2019-06-23,4.53,9,358 +33555952,"HUGE, SUNNY room in Financial District",12655794,Pat,Manhattan,Financial District,40.70598,-74.00804,Private room,150,4,2,2019-04-15,0.62,1,90 +33556026,"CATALINA’S ROOM + Close to JFK and LGA airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73101,-73.87139,Private room,51,1,12,2019-06-27,3.96,4,180 +33556100,Spacious private room for rent.,79134040,William,Manhattan,Washington Heights,40.84316,-73.94062,Private room,100,2,11,2019-07-01,4.29,1,55 +33557100,Great Room with WC,76849762,German,Brooklyn,Williamsburg,40.71492,-73.94397,Private room,60,3,1,2019-06-02,0.81,1,0 +33558048,"Artist Loft: Clean, Cozy, Sun Filled, Plant Oasis",252856825,Jessi,Brooklyn,Bedford-Stuyvesant,40.69446,-73.9543,Entire home/apt,250,1,4,2019-07-02,1.85,1,10 +33558102,Private room in loft (check out my pictures)!!!!,157708630,Marilyn,Brooklyn,Bushwick,40.70044,-73.92503,Private room,68,2,5,2019-05-27,1.76,1,15 +33558241,Our sanctuary,4770121,Somaya,Manhattan,Harlem,40.82457,-73.94008,Entire home/apt,100,7,1,2019-04-26,0.41,4,33 +33558283,Bohemian Brooklyn Suite with 2 Private Terraces,28831479,Sedef,Brooklyn,Williamsburg,40.70796,-73.94826,Private room,189,3,0,,,2,78 +33558307,Charming 1BD Astoria Penthouse,252865772,Regina,Queens,Astoria,40.75909,-73.92005,Entire home/apt,98,2,1,2019-04-03,0.31,1,292 +33558445,Sunny 4 bedrooms in Manhattan,247185393,Artem,Manhattan,East Harlem,40.79491,-73.94162,Entire home/apt,400,3,7,2019-06-14,2.33,1,307 +33558466,"Homey and spacious 1BR Apt, near Prospect Park",10506005,Chuck,Brooklyn,Flatbush,40.6491,-73.96322,Entire home/apt,110,3,2,2019-07-07,2,1,108 +33558773,Astoria Center Location,183211776,Rafael,Queens,Astoria,40.76523,-73.9118,Private room,49,1,8,2019-06-04,3.04,4,192 +33558808,Designer's spacious 4bedrooms Manhattan apt,9488131,Javanshir,Manhattan,Washington Heights,40.85129,-73.92954,Entire home/apt,300,3,12,2019-06-24,3.91,1,313 +33558846,Brooklyn sunny room! Short or long term stay,15178683,Acadia,Brooklyn,Flatbush,40.63376,-73.95148,Private room,30,3,0,,,1,0 +33559960,Center of the Universe Stay,193488,Jane,Manhattan,East Village,40.73361,-73.98995,Private room,135,1,0,,,2,177 +33560308,A GREY DOOR - BED-STUY.,99494083,Eunice,Brooklyn,Bedford-Stuyvesant,40.68395,-73.92998,Entire home/apt,113,5,8,2019-06-27,2.55,2,101 +33560323,Private Studio Space in Windsor Terrace Brooklyn,26535250,Sheila,Brooklyn,Windsor Terrace,40.65596,-73.97951,Entire home/apt,55,1,5,2019-06-20,2.21,3,232 +33560439,"Location Location Location! Basic, Clean & Cheap!",54023713,Khero,Manhattan,Kips Bay,40.74385,-73.97669,Entire home/apt,100,4,25,2019-07-05,8.24,1,4 +33560460,Charming Soho large 1 bedroom apartment style loft,177742211,Kyle,Manhattan,SoHo,40.72745,-74.0025,Entire home/apt,285,5,3,2019-06-17,0.98,1,365 +33560646,Big room with king bed,119294198,Jewel,Brooklyn,Bay Ridge,40.63209,-74.018,Private room,45,1,1,2019-04-08,0.32,1,95 +33560655,Contemporary Brooklyn Lifestyle Apt /JFK Airport,223375402,Joyce,Brooklyn,East New York,40.66115,-73.89352,Entire home/apt,195,2,5,2019-06-23,2.83,4,347 +33560707,Amazing Cortelyou road,110448579,Moncef,Brooklyn,Flatbush,40.63866,-73.96735,Entire home/apt,78,30,1,2019-06-22,1,1,279 +33560762,Alojamiento Betsaida.,252855885,Delsy,Bronx,Fordham,40.86255,-73.90059,Private room,42,1,2,2019-06-30,1.82,1,332 +33561854,Cozy studio for the best rest,215744706,Anastasia,Manhattan,Harlem,40.82011,-73.9404,Entire home/apt,110,1,0,,,1,180 +33562239,Stylish NYC Apartment Right Next to Subway,35657710,Andrew,Manhattan,Washington Heights,40.8312,-73.9399,Private room,99,7,2,2019-06-16,0.77,1,90 +33564331,Sunny big room in East Williamsburg,42881572,Olga,Brooklyn,Williamsburg,40.71379,-73.94104,Private room,47,27,1,2019-05-04,0.45,1,323 +33571420,"DEMETRIO’S ROOM +Close to JFK and LGA Airport",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.72997,-73.87183,Private room,51,1,20,2019-06-25,6.38,4,365 +33571687,Sunny And Spacious Apartment In Chelsea,151048265,Minnie,Manhattan,Chelsea,40.74038,-74.00139,Entire home/apt,170,3,2,2019-06-01,1.09,1,39 +33571691,RV camper for the outdoor lovers,122363368,New Roc,Bronx,Allerton,40.87268,-73.85424,Entire home/apt,100,2,0,,,1,180 +33572668,Master bedroom in Luxury High Rise,107393843,James,Manhattan,Financial District,40.70824,-74.01403,Private room,125,4,1,2019-05-25,0.67,1,0 +33574976,"Still NYC... Grymes Hill, Staten Island",246224359,Julie Ann,Staten Island,Grymes Hill,40.6105,-74.09132,Entire home/apt,115,1,1,2019-06-30,1,1,339 +33575571,HOSTEL MY REFUGE PAISA(Camarote#2abajo),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76255,-73.88019,Shared room,43,1,0,,,4,153 +33577934,"Rad Chelsea 2BR w/ Sundeck, Doorman + Rooftop views by Blueground",107434423,Blueground,Manhattan,Flatiron District,40.74394,-73.99094,Entire home/apt,439,30,0,,,232,278 +33578217,"Gorgeous Gramercy Park 2BR w/ Large private terrace, Gym + Doorman",107434423,Blueground,Manhattan,Gramercy,40.73823,-73.98343,Entire home/apt,348,30,0,,,232,331 +33578743,PRIME WEST VILLAGE STUDIO APARTMENT,132644544,Sacha,Manhattan,West Village,40.73532,-73.99874,Entire home/apt,150,2,0,,,1,2 +33578821,Cozy bedroom with patio in townhouse in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68775,-73.9277,Private room,50,4,1,2019-06-16,1,3,23 +33579533,Comfortable and spacious bedroom in Brooklyn,1192659,Leandro And Julia,Brooklyn,Bedford-Stuyvesant,40.68899,-73.9289,Private room,57,3,8,2019-07-04,3.81,3,9 +33579606,HOSTEL MY REFUGE PAISA (Camarote#1 arriba),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76275,-73.88198,Shared room,43,1,1,2019-04-09,0.33,4,91 +33579691,shared apt only for female near Times Square,251510391,Demir,Manhattan,Hell's Kitchen,40.76461,-73.98745,Shared room,65,1,0,,,3,365 +33579775,Hotel Room at Midtown 45 at New York City,154673872,Allan,Manhattan,Midtown,40.75325,-73.97176,Private room,250,5,0,,,1,0 +33579779,Great Apartment super close to the train.,198666639,Bernard,Brooklyn,Cypress Hills,40.67875,-73.90704,Entire home/apt,160,2,2,2019-06-18,2,1,162 +33579970,Spacious and sunny one bedroom,64898741,Pete,Queens,Long Island City,40.75912,-73.92903,Entire home/apt,130,3,2,2019-06-09,1.43,2,0 +33580008,Sonder | Stock Exchange | Calming 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01179,Entire home/apt,505,2,8,2019-06-22,3.58,327,263 +33580893,Art Deco Charm in the heart of The Village!,248122395,Walker Hotel Greenwich Village,Manhattan,Greenwich Village,40.73571,-73.99694,Private room,425,1,0,,,2,353 +33580907,Art Deco Charm in the heart of The Village!,248122395,Walker Hotel Greenwich Village,Manhattan,Greenwich Village,40.73679,-73.99592,Private room,425,1,4,2019-06-23,1.52,2,359 +33581628,"Spacious, Clean and Modern 2 Bedroom Suite",148317706,Michaelle,Brooklyn,Prospect-Lefferts Gardens,40.66002,-73.94363,Entire home/apt,150,2,8,2019-07-05,7.27,1,30 +33582424,"clean room with private bath, 10 Mins to city",253047601,Wendy,Brooklyn,Bushwick,40.70092,-73.93732,Private room,50,1,26,2019-07-04,9.07,1,9 +33582776,Cozy Guest Quarters in East Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.7234,-73.98267,Private room,62,2,15,2019-06-21,4.84,4,284 +33583238,Lovely apartment 2 bedrooms 2 bathrooms in UWS,30137775,Thibault,Manhattan,Upper West Side,40.79321,-73.96823,Private room,380,3,1,2019-04-21,0.38,1,24 +33584724,Comfy’s Bedroom Close Subway,120763629,Mei,Brooklyn,Bath Beach,40.60615,-74.00315,Private room,49,2,3,2019-04-26,1.05,2,347 +33585504,New 2 Bed 1 Bath in the UES #6131,113805886,Yaacov,Manhattan,Upper East Side,40.7786,-73.95208,Entire home/apt,206,30,1,2019-06-11,1,33,311 +33585541,Lower East Side Studio,3817581,Omar,Manhattan,Lower East Side,40.72028,-73.98794,Entire home/apt,123,30,1,2019-05-31,0.77,1,96 +33585686,Nolita Gem,253073362,Jia,Manhattan,Nolita,40.72175,-73.99544,Entire home/apt,145,5,3,2019-06-29,2.50,1,7 +33585726,Amazing New 1 Bedroom in the UES #6132,113805886,Yaacov,Manhattan,Upper East Side,40.77721,-73.95222,Entire home/apt,206,30,0,,,33,189 +33586112,Cozy Corner,208955733,Candace,Brooklyn,East Flatbush,40.65477,-73.92207,Private room,75,1,10,2019-07-02,3.19,4,365 +33586722,"Gorgeous, Large Brownstone with Backyard & Parking",4678376,Shannan,Brooklyn,Crown Heights,40.66806,-73.95295,Entire home/apt,350,2,7,2019-06-23,2.63,1,82 +33588367,"Large room in sunny Williamsburg apt, HUGE BALCONY",33235360,Guy,Brooklyn,Williamsburg,40.70845,-73.94266,Private room,76,2,6,2019-05-05,1.89,2,5 +33588662,AMAZING 3 BEDROOM APARTMENT IN FLUSHING QUEENS,253083248,Samuel & Toluwani,Queens,Flushing,40.74006,-73.82894,Entire home/apt,200,1,12,2019-06-30,6.00,1,145 +33588933,No Cleaning Fee! 1.5 blocks to 2 Train. 9pm-9am,253104269,Kenneth,Bronx,Wakefield,40.89613,-73.85503,Private room,35,1,9,2019-06-27,3.18,1,0 +33589352,B-comfortable queen size bed try it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.57882,-74.09197,Private room,49,1,8,2019-06-09,2.53,3,342 +33589468,“Mi casa es tu casa” “My home is your home” NYC,109567034,Javier,Queens,Fresh Meadows,40.74376,-73.7942,Entire home/apt,150,2,15,2019-07-07,6.92,1,69 +33589554,Comfy Home ~ 1st Floor,253110236,Frances,Queens,Springfield Gardens,40.66465,-73.74907,Entire home/apt,150,3,6,2019-06-14,2.28,1,176 +33590374,QUIET 1BR apartment CLOSE to EVERYTHING,127562833,Eric,Manhattan,Hell's Kitchen,40.76386,-73.98901,Entire home/apt,195,5,11,2019-07-05,5.08,1,14 +33591701,"spacious, apt. near bars/parks/museums/restaurants",19407341,Jenna,Manhattan,Upper East Side,40.76928,-73.94855,Entire home/apt,140,2,11,2019-07-01,3.93,1,3 +33592068,Bay parkway Private room,51596474,Antony,Brooklyn,Bensonhurst,40.6062,-73.98995,Private room,35,1,7,2019-05-21,2.44,12,0 +33592086,Huge Room For Rent Close to JFK and the Q train,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60898,-73.95341,Private room,65,1,5,2019-07-06,1.83,8,348 +33592474,Private Room Near Q Train in Brooklyn,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60765,-73.95392,Private room,65,1,4,2019-07-07,2.26,8,359 +33592650,Cozy Room For Girls Only:2 Minutes Walk To Q Train,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60755,-73.95303,Private room,65,1,5,2019-06-28,2.63,8,352 +33592861,Brand new private apartment 5 minutes from JFK!,46789694,Tapashi,Queens,Springfield Gardens,40.66821,-73.75263,Entire home/apt,50,1,16,2019-06-30,6.00,2,304 +33592928,Comfortable Sofa Bed For Rent In NYC. Female ONLY,197368927,Cebile,Brooklyn,Sheepshead Bay,40.6093,-73.95211,Shared room,40,2,8,2019-06-08,2.55,8,358 +33593018,Sofa Bed For Rent Near The Q Train: Girls Only.,197368927,Cebile,Brooklyn,Sheepshead Bay,40.60852,-73.95368,Shared room,40,2,3,2019-07-04,1.14,8,343 +33594788,"Beautiful Private Home in Bushwick, Brooklyn!",63541445,Luis,Brooklyn,Bushwick,40.69477,-73.93011,Entire home/apt,180,3,6,2019-06-24,2.86,1,119 +33595791,Beautiful Chelsea townhouse bedroom,236668588,Jen,Manhattan,Chelsea,40.74679,-74.00263,Private room,115,1,3,2019-06-30,1.11,2,113 +33597052,Uptown Minimalist Chic,130667866,Omar,Manhattan,Washington Heights,40.85549,-73.92789,Private room,69,2,7,2019-06-23,2.19,1,14 +33603476,A beautiful Gem,4621134,Ulrika,Bronx,Clason Point,40.80626,-73.85122,Private room,40,7,2,2019-06-07,1.76,1,59 +33605327,"SMALL ROOM NO WINDOW, NO AIR CONDITIONER V-ROOM",59156312,Viviana,Queens,Woodhaven,40.6875,-73.8664,Private room,39,3,8,2019-06-21,3.04,9,358 +33605568,Union Square Private Double & Single Bed w/ Shower,44350279,Jp,Manhattan,Gramercy,40.73446,-73.9867,Private room,99,2,8,2019-07-04,3.53,4,13 +33607276,"Central Herald Sq.1BR w/ Roofdeck, Gym next to the subway by Blueground",107434423,Blueground,Manhattan,Midtown,40.74875,-73.98675,Entire home/apt,334,30,0,,,232,311 +33607319,Share in cozy 1BR,253246141,Jenny,Manhattan,East Harlem,40.78722,-73.94482,Shared room,40,22,1,2019-06-10,1,1,12 +33607370,"MARCELO’S ROOM +Close to JFK airport and LGA",245710234,Marcelo Y Lucio,Queens,Elmhurst,40.73125,-73.87251,Private room,38,1,28,2019-07-02,8.94,4,365 +33607399,"Premium FiDi 1BR w/ Roofdeck, Gym + Doorman near Wall St. by Blueground",107434423,Blueground,Manhattan,Financial District,40.70429,-74.00714,Entire home/apt,332,90,0,,,232,115 +33607411,Cozy room in Soho,69720852,Yana,Manhattan,SoHo,40.7204,-74.00027,Private room,64,3,1,2019-04-12,0.34,3,86 +33608420,Bright One Bedroom Loft,84732743,Julia,Brooklyn,Williamsburg,40.71255,-73.93922,Entire home/apt,100,3,3,2019-06-08,1.23,1,3 +33608666,Beautiful Chelsea Townhouse bedroom,236668588,Jen,Manhattan,Chelsea,40.7461,-74.00329,Private room,110,1,10,2019-06-10,3.49,2,108 +33608870,"Large Comfy 2Bdrm Apt in Williamsburg, Brooklyn",193954973,Sean,Brooklyn,Williamsburg,40.71381,-73.95187,Entire home/apt,245,3,1,2019-05-06,0.47,3,257 +33611062,Cosy apartment in heart of the East Village,11870917,Faye,Manhattan,East Village,40.72392,-73.98915,Entire home/apt,135,7,3,2019-07-07,1.05,1,15 +33611142,Your Next Vacation Should be Here...Walk to TimeSq,139724098,Mona,Manhattan,Hell's Kitchen,40.76091,-73.99126,Entire home/apt,299,4,16,2019-06-26,5.45,1,59 +33611809,Brand New Studio~W/D in unit~Prime Gramercy,162280872,Izi,Manhattan,Kips Bay,40.73948,-73.97973,Entire home/apt,150,30,0,,,13,327 +33611988,"Spacious,Quite,beautiful room in Astoria-Ditmars",64453547,Onur,Queens,Ditmars Steinway,40.77832,-73.90604,Private room,53,20,0,,,3,0 +33612527,Sonder | Theater District | Airy 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76142,-73.98629,Entire home/apt,212,29,0,,,327,349 +33612970,5BR Designer Loft in Soho/TriBeCa! Best Location!,147051233,Steve,Manhattan,Tribeca,40.71859,-74.00459,Entire home/apt,299,31,3,2019-06-20,1.06,1,165 +33613727,Cozy and Comfortable Studio Apartment,253304582,Iris,Queens,Corona,40.73747,-73.86404,Entire home/apt,110,7,3,2019-06-27,1.23,2,54 +33613736,"Bright Large Room, only 30mins to Times Square",5704932,Victor,Bronx,Fordham,40.86615,-73.88828,Private room,60,2,6,2019-06-23,1.96,3,34 +33614017,My awesome room :0),39837217,Leo,Brooklyn,Bushwick,40.70069,-73.93676,Private room,70,3,0,,,2,15 +33614390,Vacate NYC.,58027700,Janei,Brooklyn,Bedford-Stuyvesant,40.67758,-73.92751,Private room,65,1,12,2019-06-29,4.29,1,179 +33614825,Spacious yellow room in Brooklyn,208955733,Candace,Brooklyn,East Flatbush,40.65401,-73.92013,Private room,90,1,10,2019-06-25,3.75,4,365 +33614872,Charming 1BR next to subway & walk to Central Park,140272,Fé,Manhattan,East Harlem,40.79013,-73.94958,Entire home/apt,174,3,9,2019-06-23,3.55,1,85 +33616667,Nolita! Cute one bedroom (Website hidden by Airbnb) Location!,39943241,Bernarda,Manhattan,Little Italy,40.72002,-73.99704,Entire home/apt,260,3,2,2019-06-13,1.43,1,33 +33617342,Brooklyn Spacious Sunny Apartment,39828340,Pascale,Brooklyn,Crown Heights,40.66431,-73.95083,Private room,200,1,0,,,1,0 +33618213,Clean and quiet Brooklyn room 35 mins from Soho,23991239,Ann,Brooklyn,Bedford-Stuyvesant,40.68898,-73.94139,Private room,50,10,1,2019-06-01,0.77,1,246 +33618303,The Pineapple tree (Girls shared room only),51596474,Antony,Brooklyn,Gravesend,40.58649,-73.97339,Shared room,24,11,2,2019-05-02,0.74,12,0 +33618352,Large Bedroom with privet bathroom,231131023,Christina,Brooklyn,Crown Heights,40.66544,-73.9577,Private room,35,2,0,,,1,224 +33618572,Cozy and beautiful room for a couple,250477669,Salome J,Queens,Jackson Heights,40.75278,-73.89114,Private room,70,3,1,2019-05-09,0.49,1,59 +33618578,★Affordable Clean Private Room#1 in Hell' kitchen★,42222090,Kita,Manhattan,Upper West Side,40.77029,-73.98761,Private room,110,3,5,2019-06-14,2.08,2,158 +33618626,Highland Park 2 bedroom share,2099273,Eric,Brooklyn,Cypress Hills,40.68176,-73.89402,Private room,85,30,0,,,1,98 +33618672,Beautiful Home in Heart of Brooklyn,17726658,T+Y+K+M,Brooklyn,East Flatbush,40.64673,-73.94686,Entire home/apt,95,1,28,2019-07-05,10.77,1,292 +33618854,Private House in Trendy Crown Heights,253354074,Yehudis,Brooklyn,East Flatbush,40.66247,-73.93784,Entire home/apt,425,2,2,2019-06-27,2,2,59 +33619855,Modern & Spacious in trendy Crown Heights,253354074,Yehudis,Brooklyn,Crown Heights,40.66387,-73.9384,Entire home/apt,150,1,6,2019-05-27,2.50,2,148 +33619915,Charming Room in Clean Apt! Soho!,192951036,Jasmine,Manhattan,SoHo,40.72589,-74.00015,Private room,119,1,7,2019-06-11,2.44,10,23 +33621265,Large Cozy Prospect Lefferts II,1512819,Sydney,Brooklyn,East Flatbush,40.65292,-73.95229,Private room,45,5,2,2019-05-31,1.07,5,159 +33621795,Queen Room,257565053,The Redford,Manhattan,Lower East Side,40.7211,-73.9893,Private room,135,1,0,,,2,162 +33621826,Standard Queen Room,257567667,The Gatsby,Manhattan,Lower East Side,40.72335,-73.99138,Private room,100,1,0,,,1,358 +33621851,Standard Queen,257569145,The Orchard Street,Manhattan,Lower East Side,40.72018,-73.98813,Private room,219,1,0,,,1,362 +33622308,Double Room with Two Double Beds,257565053,The Redford,Manhattan,Lower East Side,40.71943,-73.98753,Private room,159,1,0,,,2,161 +33627195,East Village Bedroom,192956786,Brian,Manhattan,East Village,40.72585,-73.98831,Private room,50,4,9,2019-06-16,3.14,1,48 +33627366,Cozy Bedroom in Bed-Stuy apartment,247104282,Sean,Brooklyn,Bedford-Stuyvesant,40.68375,-73.91503,Private room,150,1,0,,,2,177 +33628454,HOSTEL MY REFUGE PAISA (CAMAROTE#4 Parte Baja),248654228,Albeiro Y Katalina,Queens,East Elmhurst,40.76303,-73.88039,Shared room,34,1,2,2019-05-04,0.70,4,123 +33631732,Olive's Guest Quarters #2,152394865,Arline,Brooklyn,East Flatbush,40.63196,-73.94572,Private room,175,2,4,2019-06-13,1.52,3,43 +33631782,Private Bedroom in Williamsburg Apt!,8569221,Andi,Brooklyn,Williamsburg,40.71829,-73.95819,Private room,109,3,3,2019-04-28,1.07,2,97 +33632312,"Comfortable,spacious and luxurious homely settings",184472924,Odaine,Brooklyn,East New York,40.6633,-73.89733,Entire home/apt,140,2,7,2019-06-09,2.63,1,157 +33632933,Comfy and quiet bed for women travelers,224150,Svetlana,Brooklyn,Midwood,40.61489,-73.94541,Shared room,26,2,5,2019-05-10,1.83,1,0 +33633697,Olive's Guest Quarters #3,152394865,Arline,Brooklyn,Flatlands,40.6313,-73.94534,Private room,175,2,4,2019-06-18,2.18,3,43 +33633853,"Perfectly Located Near Restaurants, Shops, & Sites",253111673,Wendy,Manhattan,Hell's Kitchen,40.76248,-73.98937,Entire home/apt,299,4,8,2019-06-23,2.89,1,61 +33634956,Sonder | Stock Exchange | Amazing 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70748,-74.0108,Entire home/apt,234,2,7,2019-06-20,2.66,327,309 +33635065,Sonder | Stock Exchange | Cozy 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7071,-74.01194,Entire home/apt,230,2,6,2019-06-20,2.28,327,327 +33635292,Sonder | Stock Exchange | Sunny 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70642,-74.01255,Entire home/apt,230,2,2,2019-06-24,1.50,327,319 +33635511,Hamilton Heights Home Away from Home! (30-Day Min),23777742,Eliot,Manhattan,Harlem,40.82479,-73.94218,Entire home/apt,125,30,0,,,1,242 +33636056,Sonder | The Biltmore | Charming 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76112,-73.98663,Entire home/apt,217,29,1,2019-05-31,0.75,327,337 +33636178,Sonder | The Biltmore | Warm Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76122,-73.98583,Entire home/apt,182,29,0,,,327,333 +33636366,Sonder | The Biltmore | Cozy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.75948,-73.98615,Entire home/apt,152,29,1,2019-05-21,0.60,327,193 +33636410,The Sunshine Palace,236018119,Lucy,Queens,Queens Village,40.70303,-73.74906,Entire home/apt,125,1,38,2019-07-05,12.00,3,362 +33636449,Sonder | The Biltmore | Serene 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76149,-73.98633,Entire home/apt,219,29,0,,,327,346 +33636535,Sonder | The Biltmore | Sunny 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.75923,-73.9865,Entire home/apt,207,29,0,,,327,331 +33636725,Charming 2BR Apt! Popular Neighborhood!,192951036,Jasmine,Manhattan,Greenwich Village,40.72667,-73.99878,Entire home/apt,289,1,3,2019-07-01,1.50,10,133 +33637874,STYLISH 2 BEDROOM APART. IN PRIME UPPER WEST SIDE,247067478,Antonio,Manhattan,Upper West Side,40.7977,-73.96115,Entire home/apt,330,4,9,2019-06-20,3.65,1,132 +33638326,Hustler's Paradise 2 (Semi Private),104927746,Amardeep,Staten Island,Concord,40.597,-74.08778,Shared room,29,1,0,,,7,2 +33639266,★ CLEAN/ELEGANT TWO BEDROOM APARTMENT ★,253504649,Nour,Manhattan,Upper East Side,40.78134,-73.95212,Entire home/apt,289,5,15,2019-06-22,4.89,1,146 +33639750,NiceA apt in trendy Brooklyn,253513520,Andres,Brooklyn,Bedford-Stuyvesant,40.68831,-73.9393,Entire home/apt,150,1,10,2019-06-24,3.57,1,206 +33639841,"Large furnished studio, East 56 St., NYC",191021802,Margaret,Manhattan,Midtown,40.75967,-73.96786,Entire home/apt,120,30,0,,,1,159 +33639979,A Comfortable Room,199833548,Syeda,Queens,Jamaica,40.70532,-73.80965,Private room,40,1,6,2019-06-25,2.12,9,360 +33640884,Sonder | Stock Exchange | Sunny 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70799,-74.01113,Entire home/apt,228,2,9,2019-06-23,3.33,327,317 +33640885,Sonder | Stock Exchange | Warm Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70579,-74.01245,Entire home/apt,203,2,1,2019-05-26,0.67,327,322 +33641049,JFK Airport Layovers Special 6 minutes away,232251881,Lakshmee,Queens,Springfield Gardens,40.66663,-73.7836,Private room,49,1,2,2019-04-30,0.80,8,0 +33641091,Charming Williamsburg 30 day min stay 2 br /2 bath,10951481,Ann,Brooklyn,Williamsburg,40.71095,-73.96717,Entire home/apt,183,30,0,,,5,249 +33641209,Glamorous 3 Bedroom/3 Bath Brownstone,253528452,Fab,Manhattan,Murray Hill,40.74779,-73.981,Entire home/apt,800,3,9,2019-06-22,3.46,1,276 +33642152,"Pleasant Room on Pleasant Avenue, NYC",67781861,Bronislaw,Manhattan,East Harlem,40.79738,-73.93196,Private room,50,2,4,2019-06-03,1.56,1,35 +33642266,Lower East Side Gem,91783661,Robert,Manhattan,East Village,40.72673,-73.98646,Entire home/apt,149,3,12,2019-07-01,4.29,1,151 +33643309,Cozy private bedroom 15 min from Manhattan,149312408,Kateryna And Tim,Queens,Astoria,40.76769,-73.92564,Private room,55,1,11,2019-07-07,3.75,2,319 +33643819,"Premier room in Downtown NY, Two Bridges,Chinatown",253552326,Grace,Manhattan,Chinatown,40.71313,-73.99615,Private room,108,1,11,2019-06-23,3.71,4,175 +33644836,"Priv room in an immaculate Apt,near Cent Park, UWS",76628403,Matt,Manhattan,Upper West Side,40.77961,-73.97821,Private room,160,2,3,2019-06-30,1.13,1,61 +33645301,1718公馆套房,119692067,Qiulan,Brooklyn,Sunset Park,40.64403,-74.00087,Private room,60,1,0,,,3,89 +33645723,Cute private room in Washington Heights!,112531390,Rachel,Manhattan,Washington Heights,40.84427,-73.93742,Private room,52,1,1,2019-04-25,0.40,1,0 +33650779,Central Manhattan Ladies Only (Shared),247453895,Kamila,Manhattan,Kips Bay,40.7432,-73.97605,Shared room,39,2,0,,,3,324 +33650996,"Cozy room in Downtown Manhattan, Two Bridges, Soho",253552326,Grace,Manhattan,Two Bridges,40.71214,-73.99568,Private room,89,1,13,2019-06-10,5.20,4,153 +33652038,"Brooklyn room close to the train, L,C,A,Zand J",230037325,Jay,Brooklyn,Cypress Hills,40.67916,-73.90628,Private room,57,1,9,2019-06-23,3.18,6,170 +33652633,Brooklyn room close to Subways to Manhattan,230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.67919,-73.90684,Private room,57,1,6,2019-05-31,2.47,6,164 +33652661,New bedroom in nice apartment. Close to hospital!,138768335,Maria,Brooklyn,East Flatbush,40.65565,-73.92705,Private room,40,30,1,2019-05-04,0.45,2,344 +33652892,"Great room close to the Subways L,A,C,Z and J",230037325,Jay,Brooklyn,Bedford-Stuyvesant,40.68092,-73.90777,Private room,55,1,8,2019-06-23,2.76,6,138 +33653706,Brand New Duplex 3BR~W/D in the unit.,162280872,Izi,Manhattan,Upper East Side,40.77139,-73.95651,Entire home/apt,290,30,1,2019-05-17,0.57,13,283 +33653735,Clean and comfortable private room in NYC,27947449,Teya,Bronx,Parkchester,40.83938,-73.85708,Private room,45,1,10,2019-06-16,4.92,2,352 +33654019,1 Bedroom nestled in Bushwick/East Williamsburg,12351745,Gregory,Brooklyn,Bushwick,40.70014,-73.93664,Entire home/apt,150,1,10,2019-06-24,3.49,1,292 +33654032,A room where you can find peace and rest!,253624959,Eli,Brooklyn,East Flatbush,40.66008,-73.92122,Private room,50,2,5,2019-06-15,2.50,1,304 +33654285,Charming 1 bedroom apartment with private patio,3129709,Mathew,Manhattan,Upper West Side,40.7867,-73.96951,Entire home/apt,165,2,0,,,1,5 +33654480,Amazing 1 Bedroom Apt! Near the SI Ferry!!,190246158,Pavel-Alexey,Staten Island,St. George,40.64448,-74.08485,Entire home/apt,68,2,4,2019-06-26,1.97,1,65 +33655013,BEST location beautiful 1BR apartment in Manhattan,143598647,Henry,Manhattan,Hell's Kitchen,40.75913,-73.99185,Entire home/apt,195,6,6,2019-07-01,2.90,1,12 +33655084,Woodhaven Castle,47516406,Arthur,Queens,Woodhaven,40.6898,-73.86077,Private room,45,7,3,2019-07-01,1.20,2,360 +33655292,曼哈顿108街转租!,253640919,思铨,Manhattan,Upper West Side,40.80038,-73.95994,Private room,66,1,1,2019-04-12,0.34,1,17 +33655636,MASTER BEDROOM WITH A LOT OF LIGHT IN ASTORIA,158785491,Marina,Queens,Astoria,40.76019,-73.90934,Private room,40,30,0,,,1,170 +33656088,"Hip Midtown West 2BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.75942,-73.98602,Entire home/apt,309,30,0,,,232,214 +33656120,"Airy Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.76118,-73.98625,Entire home/apt,240,30,0,,,232,239 +33656146,"Open Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.7609,-73.98594,Entire home/apt,240,30,0,,,232,189 +33656304,"Smart Midtown West Studio w/ sundeck, gym, near Times Sq. by Blueground",107434423,Blueground,Manhattan,Theater District,40.75938,-73.98749,Entire home/apt,219,30,0,,,232,14 +33656821,Spacious and bright — Ft. Greene — best location,1364340,Jess,Brooklyn,Fort Greene,40.68966,-73.97311,Private room,125,2,7,2019-06-25,4.38,1,0 +33658071,"Bright, renovated apartment close to subway+city",3002017,Barblin,Brooklyn,Bedford-Stuyvesant,40.68466,-73.91716,Entire home/apt,130,2,10,2019-07-01,5.36,1,262 +33658646,A Delightful Room,199833548,Syeda,Queens,Briarwood,40.70741,-73.80838,Private room,50,1,11,2019-06-16,3.79,9,342 +33659082,Home Away From Home at Mosholu pkwy,229929832,Ifeoluwa,Bronx,Norwood,40.87414,-73.88342,Private room,51,1,10,2019-07-04,4.76,1,271 +33660190,"Flatbush Apartment near 2,5 train",67610438,Jabari,Brooklyn,East Flatbush,40.6386,-73.94584,Entire home/apt,82,1,5,2019-06-09,2.27,1,19 +33660196,Airy Apartment in the Heart of West Village/SoHo,32059780,Nisa,Manhattan,SoHo,40.72681,-74.00455,Entire home/apt,200,2,0,,,1,47 +33660716,Cozy Bright Prospect Park Studio,73785055,Alycen,Brooklyn,Prospect Heights,40.67382,-73.96642,Entire home/apt,150,4,0,,,1,28 +33660911,Stylish Designer 3 Bedroom Apartment,61084210,Nadine,Queens,Astoria,40.76222,-73.91861,Entire home/apt,360,3,10,2019-07-01,3.85,1,206 +33660966,Remote William,253693119,Wes,Brooklyn,Williamsburg,40.71993,-73.96395,Entire home/apt,400,180,0,,,1,310 +33661139,"Private Rm Near JFK, Beach & St. John E Hospital",234090781,Phoenix,Queens,Bayswater,40.6083,-73.75787,Private room,45,1,4,2019-06-21,2.26,2,54 +33661269,"Comfort room in Downtown NY, Two Bridges,Chinatown",253552326,Grace,Manhattan,Chinatown,40.71304,-73.99484,Private room,89,1,13,2019-06-11,4.43,4,164 +33661274,Sunny Sunset Park Large Bedroom near subway,9034883,Matt,Brooklyn,Sunset Park,40.66172,-73.99387,Private room,75,2,0,,,1,88 +33661568,Small studio,253698437,H,Bronx,Williamsbridge,40.88171,-73.85384,Entire home/apt,75,2,2,2019-05-28,0.82,1,360 +33661788,Cozy bedroom in Sunset Park apartment,70406797,Monée,Brooklyn,Sunset Park,40.64644,-74.01057,Private room,47,1,0,,,1,31 +33663100,5 ★ Stay in Manhattan (Cozy & Family Friendly),73212148,Shiko,Manhattan,Harlem,40.80704,-73.95134,Private room,105,3,11,2019-06-23,3.79,1,20 +33663595,Tu tranquilidad no tiene precio,182434290,Ana Maria,Queens,Ditmars Steinway,40.77005,-73.91098,Private room,90,1,6,2019-05-28,2.47,2,0 +33663599,"Modern,spacious and peaceful apartment",18109057,Milly,Manhattan,Washington Heights,40.85176,-73.93009,Private room,75,2,1,2019-04-23,0.39,1,53 +33664163,A Living Room,199833548,Syeda,Queens,Briarwood,40.70579,-73.81001,Shared room,30,1,10,2019-06-11,4.05,9,361 +33664228,Sophisticated Brownstone Duplex,87766324,Michelle,Brooklyn,Bedford-Stuyvesant,40.68638,-73.93497,Entire home/apt,499,2,0,,,2,30 +33664484,3BR Family Home in Prime Queens Neighborhood,157301360,Dalia & Marina,Queens,Kew Gardens Hills,40.72947,-73.82076,Entire home/apt,250,3,5,2019-07-06,2.88,1,152 +33666119,Alexander Hamilton( For Guys ONLY),51596474,Antony,Brooklyn,Bay Ridge,40.62329,-74.02136,Shared room,24,10,1,2019-06-20,1,12,0 +33666175,English style home in Brooklyn New York,69977115,Jacob,Brooklyn,Bensonhurst,40.61472,-73.99143,Private room,79,2,1,2019-06-24,1,4,364 +33666359,Private Entrance Spacious 5 BD Apartment Manhattan,197792014,Danny,Manhattan,Washington Heights,40.84467,-73.93549,Entire home/apt,280,2,23,2019-07-02,8.31,1,215 +33666607,Immaculate Private Bedroom & Bathroom (Room A),88171838,Kimi,Brooklyn,Bay Ridge,40.63555,-74.02962,Private room,75,1,14,2019-07-01,4.83,4,154 +33666721,ALEX SPACE #5,252819295,Alex,Queens,Richmond Hill,40.69439,-73.83243,Shared room,58,1,12,2019-07-02,4.14,1,180 +33666887,Close to Manhattan ( S ).,253748268,Katie,Queens,Elmhurst,40.74623,-73.88974,Private room,55,1,4,2019-07-05,1.94,1,83 +33667403,Contemporary Brooklyn Lifestyle Apt /JFK Airport 1,223375402,Joyce,Brooklyn,East New York,40.66067,-73.8931,Private room,65,2,1,2019-05-14,0.53,4,354 +33668282,Contemporary Brooklyn Lifestyle Apt /JFK Airport 2,223375402,Joyce,Brooklyn,East New York,40.66089,-73.89376,Private room,65,2,1,2019-06-12,1,4,349 +33673071,COUCH SURF in Gorgeous apt. Have own open room!,33151563,Regine,Queens,Flushing,40.76308,-73.82215,Private room,63,2,1,2019-06-13,1,2,0 +33673436,Spacious aptmt sleeps 4 AND addtn blowup mattress,11670365,Jane,Manhattan,Chinatown,40.71565,-73.99211,Entire home/apt,250,4,2,2019-05-27,0.74,1,8 +33674936,Artist LOFT in Bushwick - 15min from Manhattan,9850389,David,Brooklyn,Bushwick,40.70672,-73.92295,Entire home/apt,200,2,1,2019-05-27,0.70,1,0 +33676336,"Light-Filled Studio, Steps to Subway",4128255,Lily,Brooklyn,Fort Greene,40.68694,-73.97435,Entire home/apt,104,2,7,2019-06-24,3.33,1,2 +33678486,"Habitación amplia , a 15 minutos del airport LGA",253842399,Leandro,Queens,Corona,40.74266,-73.86526,Entire home/apt,65,1,1,2019-05-02,0.44,1,280 +33679677,"RENTING MY SOFA. ASTORIA ,NY",220634514,Daisy Marina,Queens,Astoria,40.75869,-73.91439,Shared room,45,10,0,,,1,341 +33680582,Beautiful Apt in the Heart of the Upper East Side,245174862,Alexandra,Manhattan,Upper East Side,40.78091,-73.95384,Entire home/apt,175,2,0,,,1,38 +33680825,Studio on East Williamsburg,17524733,David,Brooklyn,Bushwick,40.68383,-73.90857,Entire home/apt,65,6,2,2019-05-16,0.80,1,19 +33681005,Cozy 1 br Apt In Uptown Manhattan,39395975,Matt,Manhattan,Inwood,40.86725,-73.92726,Entire home/apt,150,1,0,,,1,16 +33682168,New York City Luxury Bedroom,224317184,Luke,Manhattan,Harlem,40.81708,-73.95059,Private room,215,5,3,2019-06-22,1.84,8,345 +33682555,"Midtown 2 Bed United Nations Loc, Full Kitchen",214347105,Roman,Manhattan,Midtown,40.75088,-73.96958,Entire home/apt,419,3,1,2019-06-01,0.79,8,343 +33682823,New York City Luxury Bedroom!!,224317184,Luke,Manhattan,Harlem,40.81652,-73.94914,Private room,215,5,7,2019-06-21,2.73,8,335 +33682910,Gorgeous and Huge One BR and sofa bed in LR too!,1328716,Susan,Manhattan,Midtown,40.75544,-73.96452,Entire home/apt,195,2,1,2019-05-27,0.70,1,117 +33683110,Sun filled Brooklyn Apartment,11967268,Carly,Brooklyn,Williamsburg,40.70762,-73.95,Entire home/apt,225,3,1,2019-06-17,1,1,0 +33683557,Beautiful Room in Williamsburg Loft,24064771,Damasia,Brooklyn,Williamsburg,40.7077,-73.9435,Private room,65,7,0,,,1,0 +33683615,Monthly**Lux 2bed/2bath* Flatiron Midtown Doorman!,253888808,Paris,Manhattan,Midtown,40.74472,-73.98526,Entire home/apt,306,30,2,2019-06-30,1.30,1,320 +33683932,BRIGHT WILLIAMSBURG ROOM WITH BALCONY,17879327,Hannah,Brooklyn,Williamsburg,40.70783,-73.95431,Private room,90,3,3,2019-06-25,1.17,1,47 +33683971,Elegant Park BrownStone Duplex 3Bedroom/3Bath,253892856,Anna + Fred,Manhattan,Murray Hill,40.74898,-73.98029,Entire home/apt,700,3,11,2019-06-16,4.18,1,249 +33684693,Cozy industrial loft in the heart of Williamsburg,253898121,Denis,Brooklyn,Williamsburg,40.72178,-73.95653,Entire home/apt,200,5,1,2019-05-19,0.59,1,13 +33685563,Magical cozy studio in the heart of West village,35842670,Keshet,Manhattan,West Village,40.73792,-74.00063,Entire home/apt,230,14,2,2019-06-20,0.65,1,87 +33686419,Prime Williamsburg 2BR w/ NYC View -Long Term Only,82742663,Scott,Brooklyn,Williamsburg,40.71948,-73.96376,Entire home/apt,150,30,1,2019-04-29,0.42,1,160 +33687439,"Vibrant area, bohemian vibe",211941129,Katarzyna,Brooklyn,Greenpoint,40.72633,-73.95859,Private room,55,1,21,2019-07-05,7.33,2,47 +33687456,New York at Christmas Time! Dec. 17-20,253925102,Chris,Manhattan,Midtown,40.75166,-73.97154,Private room,600,3,0,,,1,96 +33688029,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66784,-73.95798,Private room,68,30,1,2019-05-01,0.43,7,251 +33688884,Spacious Room in North Williamsburg!,30590073,Michael,Brooklyn,Williamsburg,40.71878,-73.9604,Private room,70,1,7,2019-05-31,3.28,2,98 +33689069,Dollhouse Studio,253944108,Anthony,Brooklyn,Bedford-Stuyvesant,40.69539,-73.94399,Private room,79,2,3,2019-07-03,2.43,1,96 +33689108,"Cozy, Comfy, Clean Mondern 2-Story Condo",229288218,Shawn,Brooklyn,Bushwick,40.69833,-73.93463,Entire home/apt,175,1,5,2019-06-16,1.90,1,264 +33689191,"WHOLE APARTMENT, 15 MINUTES TO MANHATTAN",2350326,Ero,Queens,Ditmars Steinway,40.7786,-73.91031,Entire home/apt,140,15,0,,,2,0 +33689283,1 & 1/2 Bd Garden apt around corner from river,253940417,Alourdes,Manhattan,Washington Heights,40.83591,-73.94586,Entire home/apt,180,5,0,,,1,83 +33689398,comfortable & cozy qns size bed Feel it yourself,50375092,Mohamad,Staten Island,Dongan Hills,40.5788,-74.09155,Private room,37,1,7,2019-07-04,2.66,3,310 +33689606,Luxury 3 Double-Bed Park Slope Apt Steps from Park,149415862,Kate,Brooklyn,Park Slope,40.66815,-73.97767,Entire home/apt,395,5,0,,,1,22 +33689647,Brooklyn Bliss 2,44929652,Lawanne,Brooklyn,East Flatbush,40.64578,-73.94756,Private room,75,2,7,2019-07-01,4.12,4,361 +33689653,Brooklyn Bliss 3,44929652,Lawanne,Brooklyn,East Flatbush,40.64423,-73.94683,Private room,50,2,2,2019-06-24,2,4,356 +33689832,Cozy bedroom in a shared apartment. Private room.,6565512,Justus,Manhattan,Harlem,40.82437,-73.95027,Private room,85,1,0,,,1,83 +33689844,Cozy and sunny 2 bedroom apartment,17844480,Angie,Manhattan,Upper West Side,40.80009,-73.96218,Entire home/apt,130,14,0,,,1,2 +33690902,Time Square 2 bedroom apt,137950324,Sam,Manhattan,Hell's Kitchen,40.75923,-73.99233,Entire home/apt,225,4,2,2019-06-19,0.77,1,44 +33691283,Timbuktu suits Bamako,251839479,Dieudonne,Bronx,Longwood,40.82639,-73.90517,Entire home/apt,150,2,0,,,2,0 +33691396,Comfortable Bedroom in Cute Boerum Hill Area,15729463,Carter,Brooklyn,Boerum Hill,40.68619,-73.98719,Private room,105,4,2,2019-05-12,0.76,1,0 +33692033,One bedroom apartment in the heart of astoria,253745747,Francesca,Queens,Astoria,40.75737,-73.91669,Entire home/apt,85,14,1,2019-06-30,1,1,77 +33694626,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76473,-73.99003,Shared room,69,1,8,2019-07-03,2.70,9,347 +33694628,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76449,-73.99107,Shared room,60,1,14,2019-06-20,4.62,9,349 +33694634,Cozy apartment by Central Park,253906467,Erik,Manhattan,Hell's Kitchen,40.76623,-73.99075,Shared room,85,1,18,2019-06-28,6.21,9,337 +33695141,Shared Room in Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76436,-73.99153,Shared room,60,1,20,2019-06-28,6.82,9,348 +33699563,Close to everything: Artsy fartsy share,247189581,Helena,Brooklyn,Fort Greene,40.68667,-73.9738,Shared room,41,2,4,2019-05-20,1.64,5,0 +33701016,Bright modern loft in Crown Heights brownstone,9919024,Francesco,Brooklyn,Crown Heights,40.67807,-73.95532,Entire home/apt,130,4,7,2019-06-20,2.50,1,28 +33701468,Best Location! Spacious 3BR in Center of NYC!,253128090,Harvy Jake,Manhattan,Midtown,40.76167,-73.96944,Entire home/apt,149,2,7,2019-06-14,2.63,1,163 +33704586,Hudson Yards Penthouse Luxury Sublet,50484250,Jeremy,Manhattan,Hell's Kitchen,40.75813,-73.99818,Private room,100,90,0,,,1,160 +33705120,Light filled Townhouse in Historic Central Harlem,24599796,Stewart,Manhattan,Harlem,40.80879,-73.94174,Entire home/apt,600,7,0,,,1,14 +33708600,Sonder | The Biltmore | Chic 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76008,-73.98721,Entire home/apt,227,29,0,,,327,365 +33708769,Sonder | The Biltmore | Stylish 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.76072,-73.98582,Entire home/apt,244,29,1,2019-06-06,0.88,327,363 +33708931,July 4th Special! 1 bedroom in NYC,1693671,Sylvia,Manhattan,Chelsea,40.75256,-73.99653,Private room,150,4,0,,,1,91 +33709053,Sonder | Stock Exchange | Tasteful 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70599,-74.01236,Entire home/apt,472,2,8,2019-06-23,3.43,327,262 +33709253,Sonder | Stock Exchange | Stunning 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70729,-74.01095,Entire home/apt,474,2,9,2019-06-22,4.22,327,263 +33709466,Sonder | Stock Exchange | Restful Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70751,-74.01059,Entire home/apt,214,2,1,2019-06-09,1,327,319 +33709502,Sonder | Stock Exchange | Polished 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70761,-74.01226,Entire home/apt,235,2,5,2019-06-24,1.76,327,333 +33709503,Sonder | Stock Exchange | Relaxed 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70602,-74.0123,Entire home/apt,244,2,2,2019-06-04,0.98,327,315 +33709508,Sonder | Stock Exchange | Polished 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70715,-74.0103,Entire home/apt,495,2,7,2019-06-14,2.50,327,265 +33709566,1 sunny Bedroom in a Boho style apartment,10696263,Nino,Brooklyn,Bushwick,40.69058,-73.91303,Private room,60,7,0,,,1,0 +33709754,Sonder | Stock Exchange | Laid-Back 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70653,-74.01088,Entire home/apt,398,2,0,,,327,279 +33710554,"PRIDE Perfect! Bright, Clean & New W. Village Flat",254107226,Katherine,Manhattan,West Village,40.73593,-74.00438,Entire home/apt,260,3,2,2019-07-05,1.03,1,10 +33710571,Very huge apartment in the heart of Williamsburg.,217498918,Mike,Brooklyn,Williamsburg,40.71072,-73.94207,Entire home/apt,230,2,10,2019-06-24,3.57,1,169 +33710612,Fantastic new luxury single beach studio in NYC!,102588471,Cashmira,Queens,Arverne,40.59356,-73.79436,Entire home/apt,95,1,6,2019-07-02,2.20,1,35 +33711092,Sonder | Stock Exchange | Airy 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.01188,Entire home/apt,229,2,2,2019-06-22,1.50,327,338 +33711101,Spacious private room in the heart of Astoria,10606171,Nicholas,Queens,Astoria,40.76257,-73.92162,Private room,90,1,12,2019-05-13,4.04,1,104 +33711189,Sonder | Stock Exchange | Warm 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70645,-74.0118,Entire home/apt,240,2,3,2019-06-08,1.70,327,323 +33711350,Convienent Brooklyn (Fort Greene) Bedroom,41949280,Allison,Brooklyn,Fort Greene,40.6871,-73.97575,Private room,90,5,0,,,1,85 +33711384,Sonder | Stock Exchange | Brilliant 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01079,Entire home/apt,236,2,10,2019-06-17,3.70,327,319 +33711735,Sonder | Stock Exchange | Calming 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70793,-74.01043,Entire home/apt,229,2,11,2019-06-24,4.52,327,341 +33711895,Cozy studio in the heart of cobble hill,41848631,Donal,Brooklyn,Boerum Hill,40.68727,-73.98956,Entire home/apt,160,2,1,2019-06-25,1,1,5 +33712004,Sonder | Stock Exchange | Cozy 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70784,-74.0107,Entire home/apt,229,2,7,2019-06-23,2.80,327,327 +33712513,Cozy studio in Chelsea NYC,40832103,Bobby,Manhattan,Chelsea,40.74005,-74.00071,Entire home/apt,154,3,0,,,1,18 +33712646,Penthouse Duplex with outdoor space Murray Hill,19171259,Lari,Manhattan,Murray Hill,40.74805,-73.97855,Entire home/apt,200,3,6,2019-05-29,2.28,1,1 +33713175,"Hostal , full size bed ( bottom bunk) shared room",2793778,Fernando,Queens,Forest Hills,40.71597,-73.83543,Shared room,35,4,1,2019-06-16,1,5,332 +33713803,Rad Clubhouse: 2 Private Rooms + Diner Kitchen,19645976,Angela,Brooklyn,Williamsburg,40.70891,-73.96342,Private room,169,3,7,2019-07-01,3.56,1,72 +33714297,Cozy Room with Private Bath in Bay Ridge (Room B),88171838,Kimi,Brooklyn,Bay Ridge,40.63611,-74.03178,Private room,75,1,16,2019-07-07,5.27,4,134 +33714518,Duplex Penthouse with private roof in Williamsburg,120431726,Noah,Brooklyn,Williamsburg,40.71994,-73.94085,Entire home/apt,240,2,2,2019-05-26,1.18,2,0 +33714755,Comfy Room w Private Bath in Bay Ridge (Room C),88171838,Kimi,Brooklyn,Bay Ridge,40.63521,-74.03197,Private room,75,1,7,2019-07-04,2.88,4,361 +33715743,BIENVENIDOS MI CASA ES TU CASA,253118370,Mary,Queens,Corona,40.74666,-73.85781,Private room,50,1,6,2019-06-29,2.43,2,164 +33715755,Private Bedroom in a Prewar Gramercy Building!,46714344,Manuel Alex,Manhattan,Gramercy,40.73568,-73.98188,Private room,95,2,4,2019-06-15,1.43,1,0 +33715848,Massive Private rm Private Entrance HEART of Wb,171008642,Mona,Brooklyn,Williamsburg,40.72005,-73.95704,Private room,120,2,14,2019-06-18,4.83,1,18 +33716043,Comfortable Room near the center of Manhattan.,254150644,Eduardo,Manhattan,Washington Heights,40.84661,-73.93444,Private room,60,2,16,2019-07-03,5.78,1,216 +33716426,Sonder | Stock Exchange | Central 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70723,-74.01086,Entire home/apt,229,2,3,2019-06-13,1.55,327,340 +33716700,Cozy studio in great location on Upper East Side,254157091,Alexandra,Manhattan,Upper East Side,40.77116,-73.95776,Entire home/apt,130,3,7,2019-06-26,2.84,1,5 +33717001,Halsey Street Commode,254159261,Sam,Brooklyn,Bedford-Stuyvesant,40.68481,-73.9296,Entire home/apt,100,2,15,2019-07-07,6.52,1,37 +33717547,Sonder | Upper East Side | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.7644,-73.9633,Entire home/apt,164,29,0,,,327,221 +33717575,Large studio for 2,254164653,Cedar,Manhattan,Hell's Kitchen,40.75896,-73.9956,Entire home/apt,150,7,4,2019-06-23,2.67,1,213 +33717623,Luxe Modern Tribeca Studio,254165437,Josh,Manhattan,Tribeca,40.71492,-74.01154,Entire home/apt,355,4,3,2019-06-15,1.11,1,365 +33717639,Sonder | Upper East Side | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76291,-73.96448,Entire home/apt,150,29,2,2019-06-12,1.02,327,220 +33717828,UPPER WEST SIDE ZEN CASITA CLOSE TO COLUMBIA UNI!,161061302,Carol,Manhattan,Upper West Side,40.80004,-73.96838,Private room,89,1,9,2019-06-20,3.42,2,52 +33718046,Prime Location!Cozy 2BR in West Village!,253192168,Romeo,Manhattan,West Village,40.73037,-74.00497,Entire home/apt,1799,2,0,,,1,270 +33718254,Imperial,249479517,Imperial,Bronx,Soundview,40.82864,-73.87609,Private room,45,2,6,2019-06-21,2.28,2,24 +33718909,Park Avenue # Central Park # Luxury # 2 Bedroom,253507120,Mikey,Manhattan,Upper East Side,40.7649,-73.96795,Entire home/apt,395,7,4,2019-07-02,2.35,1,279 +33719279,UPPER EAST SIDE BEST ROOM,254172441,Adi & Naor,Manhattan,Upper East Side,40.78034,-73.94861,Private room,70,1,4,2019-06-09,2.00,1,0 +33719615,Modern Brooklyn Getaway,2727975,Vanessa,Brooklyn,Bedford-Stuyvesant,40.68393,-73.91528,Entire home/apt,134,3,4,2019-06-29,4,1,245 +33719823,"Large, Bright, Luxury Chelsea Studio/ Best Area!!!",254189342,Kimberley,Manhattan,Chelsea,40.75104,-73.99544,Entire home/apt,200,4,1,2019-07-07,1,1,228 +33720130,Charming 3BR w/Private Backyard. 15min to Manh,5333953,Andrey,Brooklyn,Bedford-Stuyvesant,40.69248,-73.93162,Entire home/apt,215,2,5,2019-07-06,1.90,1,18 +33720225,"Manhattan Lux King Sized Room, Lots of Light",3773866,Megumi & Nathan,Manhattan,Harlem,40.81824,-73.93919,Private room,85,2,1,2019-04-28,0.42,2,77 +33720269,Great Brooklyn location! Spacious apartment.,9494211,Laura,Brooklyn,Columbia St,40.68296,-74.00378,Entire home/apt,350,6,0,,,1,61 +33725862,Spacious Brooklyn Room for 1 or 2 Guests.,137358866,Kazuya,Brooklyn,Bushwick,40.69198,-73.91168,Private room,48,30,0,,,103,267 +33726859,Private bedroom in new and spacious apartment,60127679,Jason,Brooklyn,Bedford-Stuyvesant,40.68553,-73.92569,Private room,65,1,20,2019-06-15,6.59,2,23 +33728093,"Cozy Midtown West 1BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.75943,-73.98675,Entire home/apt,271,30,0,,,232,316 +33734068,★Warm + Welcoming BEDSTUY - Private2BR on J/M/Z★,608700,Rachel,Brooklyn,Bedford-Stuyvesant,40.69156,-73.93497,Entire home/apt,125,3,9,2019-06-26,3.18,1,24 +33734301,Light-filled master Bedroom by the Cloisters,41844032,Violetta,Manhattan,Washington Heights,40.85768,-73.92855,Private room,70,2,2,2019-07-07,2,1,163 +33734483,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73326,-74.00511,Entire home/apt,250,3,5,2019-07-02,2.24,5,255 +33735398,"Modern, Airy & Sunny Apt in Brownstone Brooklyn!",22736811,Lisa,Brooklyn,Bushwick,40.68808,-73.90985,Entire home/apt,159,2,16,2019-07-07,5.39,1,127 +33736401,Prime West Village: Art & Foodie Heaven,1192716,Larissa,Manhattan,West Village,40.73272,-74.00797,Entire home/apt,155,2,7,2019-07-07,2.44,1,6 +33736715,Executive Living off Fifth Ave and Central Park,61391963,Corporate Housing,Manhattan,Midtown,40.76223,-73.97588,Entire home/apt,159,60,0,,,91,353 +33737434,"Cozy Downtown Unit - 3 bedrooms, 2 full baths",229600367,Ankita,Manhattan,Lower East Side,40.71981,-73.9856,Entire home/apt,699,2,0,,,1,290 +33738412,Instagram Dream Townhouse in Times Sq.,254320440,Laura + John,Manhattan,Hell's Kitchen,40.75823,-73.99066,Entire home/apt,300,3,8,2019-06-19,3.33,1,54 +33739054,Family Friendly East Village Brownstone 2-Floors,52826,Tom,Manhattan,East Village,40.72235,-73.97772,Entire home/apt,165,30,0,,,2,56 +33740211,Chill East Village Get-Away,52826,Tom,Manhattan,East Village,40.72236,-73.97689,Entire home/apt,140,26,0,,,2,46 +33740728,Quiet and comfy Room in the heart of Williamsbourg,22620829,Imma,Brooklyn,Williamsburg,40.71102,-73.95829,Private room,75,2,6,2019-07-07,2.34,1,0 +33740789,Spacious bedroom with washer and dryer unit.,144863350,Keith,Manhattan,Harlem,40.81482,-73.95192,Private room,51,1,12,2019-05-15,4.34,1,0 +33741107,Fresh,216274333,Victoria,Queens,Fresh Meadows,40.72894,-73.78003,Private room,80,1,2,2019-05-25,1.22,1,0 +33741545,Astoria Apt,58024325,Nate,Queens,Astoria,40.76001,-73.92313,Private room,700,1,1,2019-05-06,0.47,1,125 +33742429,Chill East Williamsburg Apartment,1648806,Maraliz,Brooklyn,Williamsburg,40.71439,-73.9409,Private room,90,2,2,2019-06-10,1.18,2,174 +33742984,Brooklyn Loft Living in Bedstuy / Clinton Hill,5477538,Leslie,Brooklyn,Clinton Hill,40.69235,-73.96102,Private room,64,5,1,2019-05-26,0.68,1,90 +33743082,"NEWLY-RENOVATED APARTMENT, 35 MINS FROM MANHATTAN",619942,Stacy & Simon,Brooklyn,Cypress Hills,40.68935,-73.87254,Entire home/apt,150,30,0,,,6,17 +33743424,★COLUMBUS CIRCLE★FULL FLOOR LOFT~5 Beds@BROADWAY,254358202,Shosh,Manhattan,Midtown,40.76523,-73.98157,Entire home/apt,549,5,7,2019-06-26,2.66,1,207 +33743807,Cozy Bushwick Studio - Great Location,18569998,Brandon,Brooklyn,Bushwick,40.7077,-73.9225,Entire home/apt,100,4,4,2019-06-24,1.52,1,11 +33744142,"6 Guests! Close to JFK-Manhattan(30 min ""A"" train)",67746251,Gasminee,Queens,Ozone Park,40.68268,-73.84977,Entire home/apt,149,1,0,,,4,113 +33744630,Beautiful Park Slope Apartment with outdoor space,99884541,Phil,Brooklyn,South Slope,40.66052,-73.9811,Private room,50,30,0,,,1,0 +33745270,2 Bedroom APT in Beautiful Brooklyn Heights,186678447,Miguel,Brooklyn,Brooklyn Heights,40.6981,-73.9958,Entire home/apt,550,3,4,2019-07-01,4,1,215 +33745352,温暖的双人房间,140630987,Jiali,Queens,Flushing,40.75966,-73.81469,Private room,65,1,11,2019-06-21,3.79,6,126 +33745548,Midtown West Hotel - Hudson Twin Single,252604696,Erin,Manhattan,Chelsea,40.74922,-73.9968,Private room,99,1,4,2019-07-05,1.50,20,168 +33745550,Midtown West Hotel - Empire Triple Room,252604696,Erin,Manhattan,Chelsea,40.75094,-73.99662,Private room,199,1,1,2019-05-19,0.58,20,160 +33745565,Wood + brick + Bushwick,222480912,Marielisa,Brooklyn,Bushwick,40.70167,-73.91913,Private room,60,3,0,,,2,0 +33745608,Greenwich/West Village Sunny real one bedroom apt!,880797,Adrienne,Manhattan,West Village,40.73131,-74.00619,Entire home/apt,154,3,3,2019-05-20,1.14,1,19 +33745956,Charming and Beautiful Home with Outdoor Space,13342325,Gabriel,Brooklyn,Bedford-Stuyvesant,40.68529,-73.92843,Entire home/apt,120,10,0,,,1,156 +33746075,A Pleasant Room,199833548,Syeda,Queens,Briarwood,40.70655,-73.80842,Private room,50,1,10,2019-06-09,3.37,9,357 +33746153,The Stop at Fordham Manor,51614766,Jonathan,Bronx,Fordham,40.8667,-73.89115,Private room,70,1,5,2019-05-27,1.76,1,364 +33746705,My home is open to everyone!,254382567,Vicente,Manhattan,Washington Heights,40.84377,-73.93666,Private room,60,1,18,2019-06-29,6.07,1,305 +33747879,Small room for female guests only,252636577,Jean,Queens,Flushing,40.76,-73.82466,Shared room,26,2,5,2019-07-08,1.65,2,90 +33748535,Contemporary Brooklyn Lifestyle Apt /JFK Airport 3,223375402,Joyce,Brooklyn,East New York,40.66195,-73.8936,Private room,65,2,1,2019-05-13,0.52,4,352 +33749115,Sensational Midtown East Dream Near E/M Trains,254372359,Timothy And Natalia,Manhattan,Midtown,40.75452,-73.97092,Entire home/apt,250,5,7,2019-06-14,2.44,1,161 +33749547,Private room in Mckibbin Lofts. Rooftop access,154080858,David,Brooklyn,Williamsburg,40.70621,-73.93663,Private room,70,2,18,2019-06-24,6.67,1,205 +33749699,Nice basement studio apt on East Williamsburg,57457584,Kethy,Brooklyn,Bushwick,40.68523,-73.90665,Entire home/apt,65,10,2,2019-05-14,0.95,1,42 +33749769,HABITACIÓN COMPARTIDA PARA MUJERES AVENTURERAS!,223087887,Jess & Ana,Queens,Corona,40.74116,-73.86705,Shared room,25,2,10,2019-07-03,3.45,8,344 +33750981,Spacious 2 Bedroom apartment in Astoria,169490939,Ikrame,Queens,Astoria,40.7684,-73.92066,Entire home/apt,115,3,1,2019-04-28,0.42,2,188 +33751577,Luxury 3 Bed FiDi Charm Doorman Elevator | Laundry,254429373,James,Manhattan,Financial District,40.70563,-74.00919,Entire home/apt,325,5,7,2019-06-09,2.84,1,131 +33751903,Guest Bedroom in light-filled Williamsburg Loft,3286195,Huston,Brooklyn,Williamsburg,40.71839,-73.94621,Private room,75,1,8,2019-07-01,3.53,1,109 +33752082,"Hotel-like Private Room, KING Bed 25 min NYC",48684597,David,Queens,Maspeth,40.73612,-73.89519,Private room,50,1,19,2019-06-30,8.03,4,165 +33753198,"Chefs apt w/ art, plants, books & strong coffee",7875127,Evan,Brooklyn,Crown Heights,40.67468,-73.96149,Private room,65,2,1,2019-04-17,0.36,1,0 +33760723,Spacious Studio with easy access to NYC,211400652,Viktor,Staten Island,Arden Heights,40.55762,-74.19626,Entire home/apt,70,5,1,2019-07-03,1,1,55 +33763207,Lady's Powder Room,253753123,Basia,Brooklyn,Borough Park,40.63112,-73.99532,Private room,39,1,9,2019-07-04,3.70,1,11 +33765725,Modern Private Bath and Furnished Room Near Train,253690060,Winston,Bronx,Pelham Gardens,40.86674,-73.8428,Private room,75,5,0,,,1,188 +33766115,Cozy West Village apt,5549854,Maja,Manhattan,West Village,40.73684,-74.00844,Entire home/apt,170,4,2,2019-06-16,1.36,1,5 +33766179,"Large living room, near transit, gym, super clean",236430571,Marguerite,Brooklyn,Flatlands,40.6316,-73.94559,Entire home/apt,80,1,2,2019-06-02,1.02,1,132 +33767467,Beautiful & Tranquil Private Room in Williamsburg,9693094,Laksmi,Brooklyn,Williamsburg,40.70734,-73.96417,Private room,71,2,5,2019-07-02,2.88,1,182 +33767710,Hostal: 1 full size mattress bottom floor bunk bed,2793778,Fernando,Queens,Forest Hills,40.71692,-73.83439,Shared room,33,4,0,,,5,334 +33769887,Private! Studio New Modern Close To JFK LGA NYC :),87156911,Alex,Queens,Ozone Park,40.6752,-73.8552,Entire home/apt,100,1,15,2019-07-07,5.84,1,326 +33769930,quiet inwood space,254567452,Sophia,Manhattan,Inwood,40.87079,-73.91961,Private room,70,1,7,2019-06-04,2.59,1,73 +33771250,Marriott Vacation Club Pulse New York City,53481729,Barbara,Manhattan,Midtown,40.75104,-73.9852,Entire home/apt,275,1,0,,,1,0 +33771697,Cozy Central Park Pad Close To Everything!,253429887,Hubert & Val,Manhattan,Upper West Side,40.7762,-73.98028,Entire home/apt,274,4,9,2019-07-02,3.55,1,34 +33772674,Boerum Hill modern duplex with private backyard!,401659,Dd,Brooklyn,Boerum Hill,40.68581,-73.9833,Entire home/apt,140,4,2,2019-05-15,0.97,1,77 +33772781,Clean & Cozy apartment in East Village,11902072,Raashi,Manhattan,East Village,40.73036,-73.98701,Entire home/apt,130,2,6,2019-07-05,2.81,1,27 +33773521,Shar's Hideaway comfortable 1 bedroom suite,254592145,Sharon,Queens,Queens Village,40.70657,-73.72932,Private room,49,1,1,2019-04-20,0.37,1,0 +33774081,"Fully furnished studio, 10 mins away from JFK.",146484191,Roy,Queens,Springfield Gardens,40.66377,-73.76785,Entire home/apt,100,2,10,2019-06-25,4.23,1,353 +33774162,Shared room y Times Square,253906467,Erik,Manhattan,Hell's Kitchen,40.76483,-73.98975,Shared room,85,1,12,2019-06-27,4.09,9,349 +33774285,Lovely Sunny 1br in Bushwick,13500337,Ian,Brooklyn,East New York,40.66641,-73.89133,Private room,65,3,2,2019-05-09,0.80,2,364 +33775190,LUXURY Building in the Heart of Manhattan!,253978780,Sue,Manhattan,Midtown,40.7528,-73.97092,Entire home/apt,150,12,4,2019-05-23,1.38,1,118 +33775328,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,254607256,Heleen,Brooklyn,DUMBO,40.70416,-73.98999,Entire home/apt,250,30,0,,,2,365 +33775765,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,254607256,Heleen,Brooklyn,DUMBO,40.70238,-73.99181,Entire home/apt,250,30,0,,,2,0 +33775845,Little Italy/Lower East Side/ 3BR A+ Location!,254518753,Princess,Manhattan,Little Italy,40.7203,-73.99663,Entire home/apt,139,31,4,2019-05-19,1.52,1,139 +33775898,Cozy & Huge 1-Bed Apt in Harlem : Sparkling Clean,51434683,Seong,Manhattan,Harlem,40.80717,-73.94386,Entire home/apt,110,2,6,2019-06-28,2.31,1,0 +33776235,Bright apt in the heart of the lower east side!,42615337,Capucine,Manhattan,East Village,40.72241,-73.98554,Entire home/apt,180,5,1,2019-07-03,1,1,32 +33776470,West 57th Club by Hilton Club Studio Available,85385725,Benjamin,Manhattan,Midtown,40.76494,-73.97822,Private room,300,1,1,2019-04-15,0.35,2,364 +33776553,Spanish Harlem! Next to the 6 train in Manhattan!,251508221,Dee,Manhattan,East Harlem,40.79834,-73.94337,Entire home/apt,300,2,1,2019-05-15,0.55,1,180 +33776576,Modern Astoria Apartment,2312420,Marie-Claire,Queens,Astoria,40.75845,-73.9111,Entire home/apt,200,5,4,2019-07-01,2.35,2,95 +33777266,Home away in a cozy apartment in Times Square.,102221050,Maybee,Manhattan,Hell's Kitchen,40.76051,-73.98792,Entire home/apt,220,1,0,,,2,277 +33777889,E. WILLIAMSBURG ROOM WITH PRIVATE BALCONY,4204942,Victor,Brooklyn,Williamsburg,40.70403,-73.9428,Private room,69,2,1,2019-07-01,1,1,36 +33778143,The Blue Room by LGA/Kennedy Airporst & NYC!,204733512,Aramis,Queens,East Elmhurst,40.76111,-73.88408,Private room,45,3,13,2019-07-03,5.42,2,80 +33778352,PRIME COZY HUGE Bedroom in Heart of NYC (RARE!!),28580275,Sommy,Manhattan,Midtown,40.75625,-73.96416,Private room,119,2,6,2019-06-30,2.69,4,297 +33779447,Amazing 1BR apartment in heart of Astoria,155902664,Pavel,Queens,Astoria,40.76829,-73.92625,Entire home/apt,125,1,14,2019-07-01,4.72,1,328 +33780071,Designer Madison Ave Studio with Brand New Kitchen,55782090,Chris,Manhattan,Upper East Side,40.78582,-73.95546,Entire home/apt,145,31,1,2019-05-31,0.77,2,304 +33780177,Private Bathroom Bedroom Near Subway,120763629,Mei,Brooklyn,Bath Beach,40.60471,-74.00243,Private room,59,2,0,,,2,361 +33780216,"M&C Garden, located in the heart of Astoria Ny",60754157,Mark & Christopher,Queens,Astoria,40.76649,-73.92356,Entire home/apt,225,2,3,2019-07-07,1.23,1,23 +33780377,"""Sea Gate"" Sunny, cozy, very clean studio app",194716858,Greg,Brooklyn,Sea Gate,40.57453,-74.00828,Entire home/apt,125,10,1,2019-06-20,1,1,180 +33781074,Comfortable apartment in the heart of Brooklyn.,26071530,Olman,Brooklyn,Crown Heights,40.67533,-73.94889,Entire home/apt,100,2,6,2019-07-07,2.54,2,0 +33781532,Fabulous 3BR/3BA NoMad Midtown LOFT,253474169,Zoie + Chris,Manhattan,Midtown,40.74615,-73.98872,Entire home/apt,800,3,13,2019-06-20,4.59,1,84 +33782555,"Cute and cozy, great downtown Manhattan location!",18885469,Leila,Manhattan,Chinatown,40.71483,-73.99801,Shared room,53,1,7,2019-06-26,2.92,1,58 +33782653,Packaged for one plus groups (ENSUITE KING ROYAL),242631139,Glen,Brooklyn,East Flatbush,40.64695,-73.93121,Private room,100,2,3,2019-06-23,1.14,4,365 +33783249,Is a beautiful place for recharge good energy....,110907551,Maria,Manhattan,Midtown,40.74501,-73.98319,Private room,150,10,0,,,2,89 +33783359,Sunny Modern Studio Near Columbus Circle,20235361,Cynthia,Manhattan,Upper West Side,40.77123,-73.98782,Entire home/apt,140,7,0,,,1,24 +33783445,MI CASA ES TÚ CASA,253118370,Mary,Queens,Flushing,40.76409,-73.82928,Private room,53,1,23,2019-07-07,8.73,2,161 +33784647,Style in the heart of Williamsburg w/ private bath,371936,Ryan,Brooklyn,Williamsburg,40.71704,-73.95799,Private room,89,1,1,2019-06-30,1,1,44 +33785223,"subway 1 min away, manhattan 10 min.",253571094,Jesus,Queens,Astoria,40.75839,-73.91191,Private room,90,1,9,2019-06-30,3.14,2,341 +33785477,Sunny Private Room close to Manhattan(Green),254771644,Jianren,Brooklyn,Bushwick,40.69682,-73.93067,Private room,66,2,8,2019-07-05,3.08,1,159 +33787433,3 Bedroom Spacious Apartment,251704655,Hamza,Bronx,Port Morris,40.80143,-73.91353,Entire home/apt,115,2,11,2019-06-24,4.46,3,6 +33787438,Cozy Studio in the heart of NYC,131544841,Taina,Manhattan,Kips Bay,40.74469,-73.98037,Entire home/apt,120,2,5,2019-07-07,2.05,1,10 +33787778,Uptown 1-bdr apartment. 2 stops to Times Sq!,222763653,Vaz,Manhattan,Morningside Heights,40.81342,-73.9565,Entire home/apt,165,1,15,2019-06-16,5.11,1,27 +33787919,"Rad Midtown West 2BR w/ roomy sundeck, gym, near Times Sq by Blueground",107434423,Blueground,Manhattan,Theater District,40.76061,-73.98589,Entire home/apt,353,30,0,,,232,337 +33788019,Sun-Filled 3 Bedroom Apartment in Bronx,251704655,Hamza,Bronx,Port Morris,40.80273,-73.91519,Entire home/apt,115,4,9,2019-07-02,3.97,3,124 +33789647,Zen Room in Artist’s Apartment,61278683,Leela,Queens,Astoria,40.76429,-73.90967,Private room,120,2,6,2019-06-23,4.62,1,16 +33791537,Beautiful Veteran owned townhome,93763302,Demacoy,Queens,Arverne,40.59908,-73.79133,Entire home/apt,137,1,4,2019-06-02,2.18,1,273 +33796136,Sunny Long Island City Studio,104368542,Becca,Queens,Long Island City,40.74613,-73.94141,Entire home/apt,150,2,5,2019-07-06,3.33,1,103 +33796251,Beautiful private Brooklyn room with kitchenette,8748976,Jeffrey,Brooklyn,Bedford-Stuyvesant,40.68807,-73.95426,Private room,4200,114,0,,,1,347 +33796992,"Big Studio, 2 Queen beds with separate entrance",38503810,Wendy,Brooklyn,Williamsburg,40.71554,-73.96225,Entire home/apt,129,2,0,,,1,25 +33797564,SUNNY SUMMER SUBLET,73049484,Kumru,Brooklyn,Crown Heights,40.66623,-73.92874,Entire home/apt,100,50,0,,,2,225 +33797672,Island Dream,35224817,Nikki,Manhattan,Upper East Side,40.7613,-73.96152,Entire home/apt,220,1,0,,,1,32 +33798189,Charming RM w/ own bath. Easy Midtown & LGA access,137358866,Kazuya,Queens,Woodside,40.74496,-73.90779,Private room,59,30,0,,,103,252 +33798389,starlight of washington heights,186325219,Kenneth,Manhattan,Washington Heights,40.84008,-73.93684,Private room,100,5,0,,,1,365 +33798718,LUX high-rise apt in timesSQ with Huds river view,255173566,Al,Manhattan,Hell's Kitchen,40.76124,-74.00059,Entire home/apt,199,15,1,2019-04-23,0.38,1,179 +33800016,COZY ROOM IN PRIME MID EAST CLOSE TO EVERYTHING!!!,28580275,Sommy,Manhattan,Midtown,40.75661,-73.96396,Private room,100,2,4,2019-05-22,1.82,4,314 +33800548,"Entire Apartment in Flushing , Queens.",96219565,Carlyn,Queens,Flushing,40.75908,-73.80845,Entire home/apt,115,3,2,2019-06-30,2,1,360 +33800823,Spectacular 2bedroom near Subway-Cafes-Shop & MORE,253873710,Jalen,Manhattan,Upper West Side,40.7867,-73.97594,Entire home/apt,349,5,5,2019-07-04,1.95,1,220 +33800856,Private 2A Room in 4BR/2BA APT in Hell's Kitchen,137274917,David,Manhattan,Hell's Kitchen,40.76037,-73.99171,Private room,110,1,10,2019-06-16,3.53,12,270 +33801117,Brooklyn Couples Retreat w/ spa bathroom,25308624,Michele,Brooklyn,Bedford-Stuyvesant,40.68129,-73.93437,Private room,75,5,4,2019-05-30,2.03,1,313 +33801421,The best building in Bed-Stuy,46430057,Pharohl,Brooklyn,Bedford-Stuyvesant,40.69266,-73.94431,Entire home/apt,60,1,7,2019-07-01,7,1,17 +33801781,Lower East Side Classic Vibes,69831679,May,Manhattan,Lower East Side,40.72059,-73.98514,Entire home/apt,170,3,6,2019-07-01,2.57,1,235 +33802074,LARGE ROOM - FIT 2-3 GUESTS - SAFE & RENOVATED,73676969,Meezy,Bronx,Williamsbridge,40.87724,-73.85047,Private room,56,2,4,2019-06-20,3.24,3,70 +33803252,All the restaurants and bars you can ask for,255216752,Amaree,Bronx,Throgs Neck,40.82807,-73.82418,Entire home/apt,80,1,0,,,1,1 +33804063,"Bushwick apartment, thoughtful details",1200192,Christine,Brooklyn,Bushwick,40.69767,-73.93096,Private room,99,2,0,,,1,1 +33804180,Cozy farmhouse in NYC. 2 bdrms; 2 full baths. WiFi,163169045,Janice,Staten Island,Prince's Bay,40.52293,-74.21238,Entire home/apt,85,2,8,2019-06-24,3.33,1,66 +33804214,Studio sized room in Midtown-East Manhattan,136122177,Elizabeth,Manhattan,Kips Bay,40.74263,-73.97639,Private room,100,6,3,2019-05-31,1.30,1,0 +33806317,Welcome homey ! Your new artist friend :),7216350,Ume,Manhattan,Lower East Side,40.72152,-73.98625,Shared room,117,1,5,2019-06-24,2.03,1,139 +33807644,Williamsburg 30 days min. 2bath/en suite 2bedroom,10951481,Ann,Brooklyn,Williamsburg,40.71092,-73.96717,Entire home/apt,249,30,0,,,5,222 +33808226,FURNISHED NEW STUDIO EAST VILLAGE/SOHO/BOWERY,226699782,Vijay,Manhattan,Lower East Side,40.7215,-73.99171,Entire home/apt,120,2,10,2019-06-29,5.88,1,87 +33808368,Bright & Cheerful w/ Laundry & Free Cleaning!,161324994,Ashley At Bedly,Brooklyn,Bedford-Stuyvesant,40.69054,-73.92793,Private room,36,30,0,,,6,58 +33808465,"Access to public transportation +Near shopping area",255258800,Abie,Brooklyn,Midwood,40.61326,-73.94742,Private room,100,1,8,2019-07-05,3.00,1,179 +33808634,Gotham City oasis 10 min to the city,247189581,Helena,Brooklyn,Fort Greene,40.68557,-73.97288,Shared room,31,1,2,2019-06-09,1.62,5,73 +33809888,Modern and Cozy Queen Bedroom (Shared),225055374,David,Manhattan,Upper East Side,40.77203,-73.95344,Shared room,75,30,0,,,3,365 +33810134,Amazing Queen Bedrose UES (Shared),225055374,David,Manhattan,Upper East Side,40.77181,-73.953,Shared room,78,30,1,2019-05-22,0.63,3,365 +33810243,Azur Queen Bedroom UES (Shared),225055374,David,Manhattan,Upper East Side,40.77019,-73.95449,Shared room,75,30,0,,,3,331 +33810572,Shared Room and Exp Heart of Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76661,-73.99082,Shared room,85,1,12,2019-06-28,4.44,9,161 +33810599,Furnished modern studio luxury elevator building,28175069,Leanne,Manhattan,Financial District,40.71138,-74.00834,Entire home/apt,160,4,3,2019-07-08,1.38,1,0 +33812239,3 bedroom Apartment a few blocks from Union Square,34312950,Sam,Manhattan,East Village,40.72919,-73.98151,Entire home/apt,290,2,10,2019-06-26,4.29,1,254 +33820675,*Private room with new bedroom set and mattress,10149317,Lana,Queens,Kew Gardens,40.70927,-73.82948,Private room,50,2,5,2019-06-02,1.88,5,319 +33822605,Brooklyn share next to train 25 min to Manhattan,201015598,Anchor,Brooklyn,Bedford-Stuyvesant,40.6783,-73.91055,Shared room,35,1,3,2019-06-07,1.11,17,77 +33823598,LOVELY 1 BED ROOM 10 MIN FR JFK WITH PRIVATE PORCH,29349060,Ode,Queens,St. Albans,40.68687,-73.76809,Private room,67,1,12,2019-07-06,4.74,3,365 +33825679,✭Spacious home in 2 unit house next to subway!✭,141885946,Jun,Brooklyn,Williamsburg,40.70961,-73.95598,Entire home/apt,265,1,9,2019-07-05,3.80,1,86 +33826205,"Gorgeous, light & bright apt in Bed Stuy + yard",57920236,Ashley,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95434,Entire home/apt,180,3,1,2019-06-04,0.83,1,98 +33826775,"Spacious, Light-Filled One-Bedroom in Williamsburg",255178006,John,Brooklyn,Williamsburg,40.70783,-73.94346,Entire home/apt,180,2,1,2019-04-22,0.38,1,10 +33827757,Great bars nearby & Quick 3min walk to Metro,128572217,Bedly Brooklyn,Brooklyn,Bedford-Stuyvesant,40.69117,-73.92805,Private room,36,11,0,,,1,48 +33827823,The Sweet Spot 2- Private Apt with a court yard,49523787,Joe,Manhattan,Harlem,40.8273,-73.94952,Private room,55,2,4,2019-06-02,1.94,2,76 +33828402,Trendy NYC Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79961,-73.95961,Private room,60,30,0,,,32,362 +33828501,Upper East Two Bed w/ 3 Beds | Sleeps 6 | Near Q,255408641,Jackson,Manhattan,Upper East Side,40.76996,-73.95771,Entire home/apt,250,5,7,2019-06-08,2.76,1,155 +33828528,Stunning Private Bedroom in Prime NYC/by Columbia!,238321374,Eyal,Manhattan,Upper West Side,40.7999,-73.95962,Private room,60,30,1,2019-06-27,1,32,314 +33828595,Ideal for Student: Upper West Side Private Bedroom,238321374,Eyal,Manhattan,Upper West Side,40.79848,-73.95983,Private room,60,30,0,,,32,328 +33828709,RARE | Romantic Studio ♥ West Village Landmark,254422886,Jessie,Manhattan,West Village,40.7334,-74.00075,Entire home/apt,250,1,0,,,1,76 +33828807,"Cozy room in Brooklyn Safe Area. 30m to D,N/Town",92897185,Nikolett,Brooklyn,Borough Park,40.63402,-74.0025,Private room,65,1,9,2019-06-29,3.38,2,46 +33829141,New Private Bedroom in Prime NYC / Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79834,-73.96117,Private room,60,30,1,2019-06-01,0.79,32,335 +33829512,Vibrant Private Bedroom in Central Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.80004,-73.96066,Private room,60,30,0,,,32,334 +33829538,Luxury 2 Bed 2 Full Bath Walk to Times Square,255414914,Stanley,Manhattan,Theater District,40.75746,-73.98795,Entire home/apt,420,5,14,2019-06-30,5.06,1,137 +33829619,**Private Room in Newly Renovated Apartment,10149317,Lana,Queens,Kew Gardens,40.70657,-73.82903,Private room,60,2,7,2019-06-29,2.63,5,305 +33830012,Spacious Private space in Park Slope,255420742,Tom & Reina,Brooklyn,Windsor Terrace,40.6602,-73.98052,Entire home/apt,155,1,7,2019-05-19,2.47,1,71 +33830298,Artsy Private Bedroom in UWS - Near Columbia U!,238321374,Eyal,Manhattan,Upper West Side,40.79972,-73.96107,Private room,60,30,0,,,32,342 +33830393,Newly Renovated Private Bedroom Near Columbia U!,238321374,Eyal,Manhattan,Upper West Side,40.79812,-73.96082,Private room,60,30,0,,,32,341 +33830460,Quaint East Village Apartment,46231814,Amber,Manhattan,East Village,40.72554,-73.98875,Private room,100,3,4,2019-05-26,2.00,3,0 +33830513,Dreamy Private Bedroom in Prime NYC Location (UWS),238321374,Eyal,Manhattan,Upper West Side,40.80037,-73.9594,Private room,60,30,0,,,32,311 +33830665,"Stylish Private Room in Upper West Side, Manhattan",238321374,Eyal,Manhattan,Upper West Side,40.79863,-73.96103,Private room,60,30,0,,,32,348 +33831016,Upper West Side/Central Park Sleek Private Bedroom,238321374,Eyal,Manhattan,Upper West Side,40.80035,-73.96106,Private room,60,30,0,,,32,250 +33831074,Sunny Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.79995,-73.96139,Private room,60,30,0,,,32,83 +33831113,Sonder | Stock Exchange | Vibrant 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.01205,Entire home/apt,255,2,4,2019-06-20,1.62,327,215 +33831116,Sonder | Stock Exchange | Collected 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70621,-74.01199,Entire home/apt,229,2,5,2019-06-15,1.92,327,350 +33831120,Sonder | Stock Exchange | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70761,-74.01078,Entire home/apt,235,2,3,2019-05-19,1.11,327,340 +33831129,Charming and Bright Apt. in Heart of Williamsburg,8860345,Riya,Brooklyn,Williamsburg,40.71339,-73.96112,Entire home/apt,175,2,3,2019-06-17,1.14,1,4 +33831138,Modern Private Bedroom in Upper West Side,238321374,Eyal,Manhattan,Upper West Side,40.80006,-73.96095,Private room,60,30,0,,,32,37 +33831221,"Private Bedroom in Prime Location, Upper West Side",238321374,Eyal,Manhattan,Upper West Side,40.80036,-73.96075,Private room,60,30,0,,,32,51 +33831236,211 east 34 st Room 1,255431206,Mohammed,Brooklyn,East Flatbush,40.65239,-73.94454,Private room,40,7,1,2019-06-03,0.81,9,346 +33832027,Studio in an Upscale Beautiful Neighborhood,42422120,Yasmine,Queens,Forest Hills,40.7201,-73.83723,Shared room,60,2,2,2019-06-05,1.11,1,0 +33832840,"Beautiful, Cozy & Private Bedroom in Bushwick BKLN",11123552,Paola,Brooklyn,Bushwick,40.7011,-73.92194,Private room,50,1,26,2019-07-05,9.40,2,74 +33833257,Huge Room In Lovely Apartment. 30 Min To Manhattan,255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.67994,-73.9135,Private room,60,1,14,2019-07-02,5.25,3,20 +33833470,Sonder | Stock Exchange | Smart 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70779,-74.01249,Entire home/apt,390,2,8,2019-06-24,3.04,327,243 +33833596,Convenient & Cozy Upper West Side 2 Beds Apartment,40629507,Ceive,Manhattan,Upper West Side,40.80238,-73.96737,Entire home/apt,140,1,8,2019-06-16,4.36,1,0 +33833636,Sonder | Stock Exchange | Timeless 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70709,-74.01037,Entire home/apt,475,2,7,2019-06-18,3.23,327,253 +33833725,Cozy Home Nested Between Soho and The West Village,158694,Beatrix,Manhattan,SoHo,40.72825,-74.0033,Private room,150,5,1,2019-04-30,0.43,1,97 +33833887,Sonder | Stock Exchange | Vintage 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01117,Entire home/apt,228,2,1,2019-05-26,0.68,327,357 +33834873,Cutely designed room in Williamsburg apartment,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71216,-73.94246,Private room,70,3,12,2019-07-07,6.67,3,142 +33835358,Rustic Room East Williamsburg 15 Min to Manhattan,210019212,Holden,Brooklyn,Bushwick,40.70697,-73.92401,Private room,54,5,9,2019-07-01,3.75,3,0 +33835408,Luxury Corner Apt&bigTerrace. Water&city view 55Fl,67738361,Julie,Manhattan,Hell's Kitchen,40.75966,-73.99277,Entire home/apt,350,1,0,,,2,83 +33835470,"""The Grand Budapest"" room in Brooklyn!",255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.67965,-73.91168,Private room,55,1,15,2019-07-07,5.92,3,15 +33836115,Private Room in PRIME Manhattan Location,119798153,Amy,Manhattan,Upper East Side,40.76853,-73.96407,Private room,79,1,8,2019-07-01,4.53,1,31 +33837065,Modern west village one bedroom,359537,Albert,Manhattan,West Village,40.73393,-74.00552,Entire home/apt,250,5,0,,,1,365 +33845173,"Cozy, Friendly Apt Share For Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66945,-73.95717,Private room,64,30,1,2019-06-29,1,7,94 +33845393,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66999,-73.95959,Private room,65,30,1,2019-05-04,0.45,7,237 +33846501,Packaged for one and groups (QUEEN B),242631139,Glen,Brooklyn,East Flatbush,40.64683,-73.93003,Private room,90,2,6,2019-06-02,2.25,4,360 +33847217,BIG BEDROOM CLOSE TO LA GUARDIA AIRPORT FREE WIFI,22784412,Stephanie,Queens,East Elmhurst,40.76402,-73.89098,Private room,44,1,0,,,2,0 +33849375,Beautiful Park Slope summer 1-bedroom sublet,10873558,Michelle,Brooklyn,Park Slope,40.67093,-73.97555,Entire home/apt,101,60,0,,,2,32 +33849970,"3min to Grand Ave subway, newly built in 2015",19303369,Hiroki,Queens,Elmhurst,40.7387,-73.8771,Private room,33,30,0,,,37,31 +33850135,Private & Quiet Oasis in the Center of NYC,253637076,Sergey,Manhattan,Chelsea,40.74034,-74.00084,Entire home/apt,162,2,6,2019-06-23,2.20,1,66 +33850661,Amazing private room 5 min time square,45578040,Ryan,Manhattan,Hell's Kitchen,40.76921,-73.99239,Private room,105,1,1,2019-04-18,0.37,2,0 +33851532,Rooftop Terrace Penthouse 2 Bed Near Central Park,255440488,Jacob And Michelle,Manhattan,Hell's Kitchen,40.76347,-73.98776,Entire home/apt,420,5,10,2019-06-29,4.48,1,130 +33851754,BrooklynRoom,13672021,Andrea,Brooklyn,Boerum Hill,40.68325,-73.98126,Private room,46,1,0,,,1,0 +33851822,Laundry + Free Cleaning - 5min to Metro,161324994,Ashley At Bedly,Brooklyn,Bedford-Stuyvesant,40.69077,-73.92667,Private room,36,30,0,,,6,38 +33851889,Spacious Room in great location,37917699,Moises,Manhattan,Inwood,40.86202,-73.92771,Private room,45,2,2,2019-06-19,2,1,180 +33852169,Large East Village Private Room & Private bathroom,37792599,Moji,Manhattan,East Village,40.72485,-73.98422,Private room,119,2,3,2019-05-24,1.32,1,2 +33852557,Spanish Harlem magical place full of life .,254112876,David,Manhattan,East Harlem,40.7958,-73.93766,Private room,90,2,8,2019-07-02,3.08,2,174 +33852604,Sunny-Junior-one bedroom-Prospect/Lefferts garden,112909067,Chaya,Brooklyn,Prospect-Lefferts Gardens,40.6605,-73.94767,Entire home/apt,120,2,9,2019-07-01,3.38,1,10 +33853158,2 bedroom on the Brighton Beach by the ocean,73397630,Anastasia,Brooklyn,Brighton Beach,40.57859,-73.95962,Entire home/apt,160,2,1,2019-04-29,0.42,1,102 +33853642,Comfy basement suite,78185278,Quisquella,Bronx,Woodlawn,40.90406,-73.86286,Entire home/apt,65,1,1,2019-07-04,1,1,29 +33853876,Middle of Manhattan,62289627,Braulio,Manhattan,Hell's Kitchen,40.75939,-73.99501,Private room,100,1,1,2019-04-24,0.39,1,23 +33853889,Private Spacious Bedroom in lush green Fort George,45776423,Aman,Manhattan,Washington Heights,40.85719,-73.93048,Private room,35,3,3,2019-06-14,3,1,5 +33854066,Birdman movie Room in Brooklyn.30 Min to Manhattan,255448841,Andrey,Brooklyn,Bedford-Stuyvesant,40.68078,-73.91283,Private room,55,1,15,2019-07-07,5.49,3,20 +33854406,"Beautiful condo in quiet Parkchester, close to NYC",16851857,Paul,Bronx,Parkchester,40.83516,-73.86024,Entire home/apt,85,2,1,2019-06-24,1,4,349 +33855726,Modern 2 Br Apartment in Brooklyn. Close to NYC,107950422,Eric And Tansey,Brooklyn,Bushwick,40.68773,-73.91039,Private room,88,28,5,2019-06-30,2.73,1,24 +33855937,"BRIGHT, STUNNING ROOM WITH AMAZING VIEWS.",117999420,Clemente,Manhattan,Upper East Side,40.76236,-73.96482,Private room,160,3,7,2019-07-01,2.47,1,81 +33855990,Master Bedroom in Bushwick Minutes from Subways,64680664,Ariel,Brooklyn,Bushwick,40.6897,-73.91146,Private room,70,2,8,2019-06-04,3.08,3,61 +33856310,Sunny Summer Space in Brooklyn’s Stuyvesant East,229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68305,-73.92322,Entire home/apt,76,3,7,2019-07-05,4.29,3,285 +33856727,Master Bedroom w/Private bath Artsy Apt in Bushwik,2373120,Elena,Brooklyn,Bushwick,40.70041,-73.92884,Private room,90,5,2,2019-06-30,0.94,2,323 +33856906,Relax in SoHo with private outdoor space,14909731,Gardea,Manhattan,Nolita,40.72202,-73.99491,Entire home/apt,200,2,7,2019-07-04,3.56,1,252 +33857172,Cozy Queen Bedroom Private Half Bathroom in Harlem,25272468,Anastasia,Manhattan,Harlem,40.82032,-73.94464,Private room,59,1,6,2019-06-30,4.62,1,74 +33857708,"Sunnyside room close to subway, Midtown & LGA.",137358866,Kazuya,Queens,Sunnyside,40.73614,-73.92068,Private room,35,30,0,,,103,245 +33858603,Sunny,15347665,Catalina,Manhattan,Harlem,40.819,-73.94568,Entire home/apt,160,29,0,,,1,0 +33859371,Duplex Penthouse w Sprawling Outdoor Terrace,255675063,Alexander,Brooklyn,Williamsburg,40.71664,-73.94534,Entire home/apt,300,15,0,,,1,35 +33865520,Great 1BR in Times Square with terrace and view,253619642,Matt Et Vero,Manhattan,Hell's Kitchen,40.76412,-73.99173,Entire home/apt,269,5,0,,,1,19 +33866860,"A+ Chelsea Location! MSG, Javits, Penn!",231755465,Mishael,Manhattan,Chelsea,40.74945,-73.99511,Entire home/apt,99,31,4,2019-06-14,1.45,1,165 +33867882,Charming private bedroom in Hell’s Kitchen,9718310,Allan,Manhattan,Hell's Kitchen,40.76335,-73.99051,Private room,65,2,3,2019-05-27,1.25,1,0 +33869355,"Cozy big Apt, Manhattan, Columbia, Central Park",163365183,Sijia,Manhattan,Morningside Heights,40.81153,-73.96112,Shared room,34,5,0,,,1,14 +33870097,"Convenient, bright 1Bdr in Williamsburg, Brooklyn",2405781,Jeff,Brooklyn,Williamsburg,40.71139,-73.9598,Entire home/apt,150,2,4,2019-05-26,1.71,1,1 +33870501,2 BDR apt in Brownstone Greenpoint Williamsburg,38257294,Casha,Brooklyn,Greenpoint,40.72599,-73.95498,Private room,185,1,8,2019-07-05,5.45,1,123 +33871041,"High floor, sunny, clean and cozy FiDi apt:)",48419016,Stefanie,Manhattan,Financial District,40.70388,-74.0082,Entire home/apt,165,2,6,2019-07-01,2.50,1,1 +33873570,Lexi's Global Retreat in Flatbush! (New Host!!),255787023,Anderson,Brooklyn,East Flatbush,40.64418,-73.92556,Private room,125,1,11,2019-06-27,4.58,1,29 +33874579,Middle town luxury studio close to penn station,210193549,Jiangbin,Manhattan,Chelsea,40.75114,-73.99843,Entire home/apt,150,8,3,2019-06-12,1.05,1,39 +33875614,Artist's Harlem Apartment,16439835,Janice,Manhattan,Harlem,40.81003,-73.94535,Entire home/apt,100,6,0,,,1,332 +33877113,Luxurious Rooms,255811821,Mary,Queens,Jamaica,40.68787,-73.77727,Private room,88,2,2,2019-05-31,1.50,1,180 +33877682,Huge private room in convenient south Brooklyn,2640420,Laurin,Brooklyn,Gowanus,40.67435,-73.9891,Private room,99,1,20,2019-07-07,10.17,1,1 +33877798,NYC High End Upper East Side Central Park Gem Home,147675745,Freda,Manhattan,Upper East Side,40.77867,-73.95143,Entire home/apt,151,1,30,2019-07-01,11.25,1,42 +33877942,Crown Heights Amazing,57403189,Joslin,Brooklyn,Crown Heights,40.67637,-73.94309,Entire home/apt,105,2,6,2019-07-01,2.25,2,286 +33878676,TRIBECA-Huge One Bedroom Doorman Apt,26248578,Iskender Turgay,Manhattan,Civic Center,40.71715,-74.00368,Entire home/apt,345,2,1,2019-04-17,0.36,1,179 +33880071,Beautiful Studio,255845450,Ariel,Manhattan,East Harlem,40.7866,-73.94225,Entire home/apt,150,2,2,2019-05-05,0.87,1,102 +33880238,Putnam Townhome,18007143,Dwayne,Brooklyn,Bedford-Stuyvesant,40.68482,-73.95136,Private room,57,2,12,2019-07-01,4.93,1,51 +33880288,Perfect Location!,3128437,Natalie,Queens,Astoria,40.75792,-73.92249,Private room,120,1,0,,,2,89 +33880355,Modern yet Cozy! Awesome Roommates and Near Metro!,114389578,Beck & Brad,Brooklyn,Bedford-Stuyvesant,40.6794,-73.94996,Private room,34,30,0,,,1,40 +33880820,"Cute, comfy room in beautiful Brooklyn brownstone",6410618,Marie,Brooklyn,Bedford-Stuyvesant,40.6943,-73.95004,Private room,65,4,1,2019-05-26,0.67,1,17 +33880913,Perfect Midtown East 1 Bed Just One Flight Stairs,255853430,William,Manhattan,Midtown,40.75886,-73.96596,Entire home/apt,200,5,12,2019-07-07,5.63,1,127 +33881088,Cozy Sm Room Furnished!,5986790,Gen,Manhattan,Washington Heights,40.83532,-73.94428,Private room,47,5,4,2019-06-26,1.58,6,272 +33881136,Cozy Brooklyn Getaway,255856907,Chanel,Brooklyn,Crown Heights,40.6756,-73.9251,Private room,100,3,2,2019-06-19,1.33,1,163 +33881201,SoHo + Greenwich Penthouse Escape! Cozy Studio!,254522143,Julie Anne,Manhattan,Greenwich Village,40.7277,-74.00104,Entire home/apt,129,31,7,2019-06-29,2.80,1,167 +33883497,Beautiful 2BR Bed Stuy Apartment,255882354,Dolores & David,Brooklyn,Bedford-Stuyvesant,40.67917,-73.94624,Entire home/apt,150,2,3,2019-07-04,3,1,251 +33883852,Charming Studio with Fantastic Location,137581011,Norbert,Manhattan,Hell's Kitchen,40.76491,-73.98659,Entire home/apt,165,5,0,,,1,67 +33884341,Sunny Private Room close to Manhattan(Blue),255890676,Hok Thu,Brooklyn,Bushwick,40.69612,-73.92918,Private room,66,2,11,2019-07-01,4.23,1,147 +33884349,Comfy Bronx home away from home,54136018,Louise,Bronx,Kingsbridge,40.86925,-73.89974,Private room,35,1,8,2019-06-27,8,1,48 +33885227,Sunny Private Room close to Manhattan(Yellow),255899465,Long,Brooklyn,Bushwick,40.69814,-73.9286,Private room,63,2,10,2019-06-30,3.85,1,127 +33885308,"Spacious, natural light room in EAST WILLIAMSBURG",64675514,Alexis,Brooklyn,Williamsburg,40.70867,-73.93891,Private room,65,15,1,2019-06-07,0.94,1,0 +33887493,Cute room in HK,133130315,Artem,Manhattan,Hell's Kitchen,40.76582,-73.98571,Private room,100,3,0,,,6,351 +33888418,Beautiful room in East Village spacious apartment,1409287,Adrian,Manhattan,East Village,40.72777,-73.97951,Private room,180,3,0,,,1,91 +33891559,"Dapper 1BR in Upper East Side w/ Doorman + Gym, next to Central Park",107434423,Blueground,Manhattan,Upper West Side,40.78548,-73.97078,Entire home/apt,352,30,0,,,232,202 +33892511,Greenpoint Sunrise Studio (Private / Entire Apt),255946767,Jacqueline,Brooklyn,Greenpoint,40.73292,-73.95395,Entire home/apt,150,2,2,2019-06-30,2,1,241 +33893655,Studio in doorman building in Tribeca,138798990,Jonas,Manhattan,Tribeca,40.7243,-74.0111,Entire home/apt,225,3,0,,,1,42 +33896459,Luxurious 2BR Midtown Manhattan Perfect Location Fantastic views,255433680,Jiaming,Manhattan,Hell's Kitchen,40.77127,-73.99237,Entire home/apt,360,2,13,2019-06-25,4.94,1,251 +33897702,Privacy in a shared Space!! Males Only Plz,27260699,J,Brooklyn,Bushwick,40.69541,-73.90785,Shared room,28,1,8,2019-06-17,3.20,4,41 +33897838,NEW- Sunny and Modern Cobble Hill 1 Bedroom,255980743,Ashley,Brooklyn,Cobble Hill,40.68834,-73.9989,Entire home/apt,170,2,5,2019-06-19,2.31,1,43 +33898321,Room in heart of NoHo/East Village,8518291,Carolina,Manhattan,East Village,40.7284,-73.99053,Private room,61,30,3,2019-06-01,1.76,1,84 +33898799,Location! Room in Bklyn 10 minutes to Manhattan B2,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69804,-73.94546,Private room,79,2,9,2019-07-06,3.33,6,136 +33899066,Epic 3bdr 2bath next to the best rooftop bars,174760879,Anthony,Manhattan,Lower East Side,40.71697,-73.98605,Entire home/apt,325,4,4,2019-07-07,2.03,1,65 +33899850,Privacy in a Shared Space! Males only plz,27260699,J,Brooklyn,Bushwick,40.69606,-73.9095,Shared room,28,1,4,2019-06-24,1.71,4,53 +33900104,Clean and comfortable Upper East Side location,253071059,Eugenio,Manhattan,East Harlem,40.78995,-73.94603,Private room,100,1,7,2019-05-28,2.56,1,0 +33900546,The Green Place,101790764,Zabi,Queens,Long Island City,40.74895,-73.9474,Entire home/apt,199,2,6,2019-06-22,2.81,2,175 +33900721,NEW COZY STUDIO WITH LARGE PRIVATE OUTDOOR SPACE,81712936,Allie,Manhattan,Upper East Side,40.78202,-73.94826,Entire home/apt,200,3,3,2019-06-14,1.76,2,0 +33900911,Gorgeous Apartment on the Upper West Side,131171018,Aaron,Manhattan,Upper West Side,40.77318,-73.98836,Entire home/apt,300,3,2,2019-07-01,1.33,1,13 +33901005,"Sunny, Spacious, Cozy, Charming Brooklyn Abode",192752,Danielle,Brooklyn,Park Slope,40.67599,-73.97664,Entire home/apt,145,5,0,,,1,38 +33901138,Location! Room in Bklyn 10 minutes to Manhattan B3,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69765,-73.94715,Private room,81,2,10,2019-07-05,4.17,6,121 +33902284,Location! Room in Bklyn 10 minutes to Manhattan U1,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69952,-73.9451,Private room,81,2,13,2019-07-06,4.87,6,164 +33902619,Location! Room in Bklyn 10 minutes to Manhattan U2,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69806,-73.94544,Private room,81,1,9,2019-06-24,3.80,6,105 +33902876,Location! Room in Bklyn 10 minutes to Manhattan U3,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69741,-73.94555,Private room,81,2,9,2019-06-21,3.91,6,128 +33903016,Appartment-2 rooms,198853982,Brigit,Brooklyn,Cypress Hills,40.68892,-73.87167,Entire home/apt,100,2,6,2019-06-12,2.34,2,150 +33903248,Location! Room in Bklyn 10 minutes to Manhattan B1,188015014,Bela & Gui,Brooklyn,Bedford-Stuyvesant,40.69915,-73.94709,Private room,81,2,0,,,6,150 +33903300,Affordable Luxury 2 Bedroom & 2 Bath In Brooklyn,147983579,Chy,Brooklyn,Bedford-Stuyvesant,40.68946,-73.94181,Entire home/apt,165,4,9,2019-07-01,4.03,2,201 +33903781,Sunny and spacious home in Greenpoint,114589786,Pamela,Brooklyn,Greenpoint,40.72215,-73.94317,Private room,75,5,2,2019-06-28,1.20,1,0 +33904680,HUGE Master Suite in Spacious Duplex,10374669,Josephine,Manhattan,Hell's Kitchen,40.76537,-73.98767,Private room,92,5,2,2019-06-09,0.71,1,187 +33905074,The Guest House,256032762,The,Queens,Elmhurst,40.73136,-73.87402,Private room,70,2,3,2019-06-17,1.67,1,0 +33906539,Eclectic Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70913,-73.89486,Private room,34,30,0,,,23,324 +33906887,New renovation cozy home 12 min train to Manhattan,251156430,Emma,Queens,Woodside,40.74508,-73.90291,Shared room,65,2,8,2019-06-29,3.04,1,89 +33907003,Unique Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.7081,-73.89507,Private room,34,30,0,,,23,278 +33907325,TW #5 Private Rm - 1st Fl. Queen Bed 1 to 2 Guests,211136294,Sharon & Erika,Bronx,Schuylerville,40.83715,-73.83489,Private room,60,1,20,2019-06-30,7.59,5,343 +33907604,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70722,-73.89614,Private room,34,30,1,2019-05-26,0.68,23,281 +33907635,Charming Studio in the heart of Upper East Side,90052526,Olga,Manhattan,Upper East Side,40.77414,-73.95301,Entire home/apt,140,3,5,2019-07-02,2.46,1,18 +33907731,Cozy Modern Townhouse Garden Apt,53621,Monica,Brooklyn,Bedford-Stuyvesant,40.69258,-73.93638,Entire home/apt,95,5,3,2019-07-02,2.09,2,120 +33907801,Stylish Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70775,-73.89472,Private room,34,30,0,,,23,201 +33908098,Cozy Room near Prospect Park!,42483494,Chris,Brooklyn,Windsor Terrace,40.64807,-73.9789,Private room,40,7,0,,,1,102 +33908121,"Shopping , City, Close the water Distance",212629546,Saadet,Brooklyn,Fort Hamilton,40.61523,-74.02917,Private room,60,4,0,,,1,155 +33908256,Bright & designed apartment in Brooklyn,254795926,David,Brooklyn,Crown Heights,40.67144,-73.94613,Entire home/apt,120,2,14,2019-06-29,5.60,1,298 +33908307,Stuyvesant Heights quiet private Apartment,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68682,-73.93493,Entire home/apt,130,29,1,2019-06-22,1,2,283 +33908446,"Free Cleaning & WiFi, Quick Walk to Metro-Modern!",133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.69116,-73.92658,Private room,35,30,1,2019-05-13,0.52,3,53 +33909064,Clinton Hill/Bed Stuy Artist Retreat,8859112,Navin,Brooklyn,Bedford-Stuyvesant,40.69214,-73.95217,Entire home/apt,189,3,10,2019-06-30,3.66,2,349 +33909151,"Mi casa es tu casa, habitación 2",241565326,Valentina,Queens,Woodside,40.74351,-73.90405,Private room,44,1,11,2019-07-01,7.67,2,331 +33909411,Stuyvesant Heights quiet private Apt - 2 bedrooms,6790229,Jean-Yves,Brooklyn,Bedford-Stuyvesant,40.68492,-73.9334,Entire home/apt,135,20,2,2019-06-18,1.50,2,285 +33909508,Private room in Manhattan,173673660,Jessica,Manhattan,Washington Heights,40.8415,-73.9375,Private room,55,2,6,2019-07-01,2.54,1,0 +33909511,Executive room for professional.,1709718,Victoria,Manhattan,Midtown,40.7651,-73.97808,Private room,199,1,1,2019-04-29,0.42,2,350 +33909539,"Luxury studio w/doorman,gym,sauna,washer/dryer",19057986,Dan,Brooklyn,Crown Heights,40.67794,-73.96023,Entire home/apt,400,1,2,2019-05-05,0.82,1,362 +33909633,"Amazing 3 Bed Apt, Less than 5 mins to Manhattan",251229393,Rafu,Queens,Long Island City,40.74657,-73.93289,Entire home/apt,129,1,3,2019-06-14,1.70,2,95 +33910078,Bright & Cozy Apartment walking distance to Subway,256071378,Maggie,Brooklyn,Bedford-Stuyvesant,40.69422,-73.93232,Entire home/apt,225,2,10,2019-06-19,4.17,1,38 +33910837,Nest,209332627,Adriana,Manhattan,Washington Heights,40.85531,-73.9283,Private room,75,2,1,2019-04-29,0.42,2,58 +33910920,Free Cleaning & WiFi-Near Train + Bars & Nightlife,133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.6908,-73.92784,Private room,35,30,1,2019-06-16,1,3,53 +33911027,Centrally located on Broadway -Quick walk to metro,133555768,John & Jennifer,Brooklyn,Bedford-Stuyvesant,40.68938,-73.9263,Private room,35,30,0,,,3,54 +33911544,Best Location in NYC! 4BR Steps to Central Park!,255674126,Cristina,Manhattan,Upper East Side,40.76458,-73.96759,Entire home/apt,159,31,9,2019-06-12,3.42,1,157 +33911691,Private room close to the JFK airport,66132548,Rochelle,Brooklyn,Cypress Hills,40.68567,-73.87985,Private room,36,1,8,2019-06-23,3.69,1,192 +33912045,chill zone,176119156,Monica,Brooklyn,Williamsburg,40.70628,-73.9379,Entire home/apt,190,1,13,2019-06-23,5.91,1,171 +33912291,Bright and Chill Room in Bushwick for two friends!,18765976,Mihail,Brooklyn,Bushwick,40.69903,-73.9149,Private room,70,1,14,2019-06-30,5.32,4,78 +33912483,Charming 2Bdr in Park Slope with roof deck,15676792,Louis-Marie,Brooklyn,Park Slope,40.6763,-73.97287,Entire home/apt,186,5,0,,,1,107 +33913644,"Modern and bright 2Bed 2Bath Bushwick, Brooklyn",50981314,Ofier,Brooklyn,Bushwick,40.70205,-73.91338,Entire home/apt,150,2,4,2019-07-07,1.64,1,89 +33913682,Cozy room with turquoise accent in historic Harlem,27277379,Karina,Manhattan,Harlem,40.81482,-73.94477,Private room,75,2,9,2019-07-03,3.75,1,227 +33913702,Artsy apt in the heart of Brooklyn -- Near all!,27936743,Amy,Brooklyn,Bedford-Stuyvesant,40.68466,-73.94349,Entire home/apt,75,2,4,2019-06-19,1.85,1,103 +33914381,Sunny and Cozy in Upper Manhattan,77515,Judi,Manhattan,Washington Heights,40.83266,-73.9414,Private room,45,3,6,2019-06-23,2.31,1,4 +33914432,"Large, Peaceful Private Room in Bushwick",18765976,Mihail,Brooklyn,Bushwick,40.69916,-73.91572,Private room,68,1,9,2019-07-02,3.42,4,55 +33914554,3 Bedroom Full house - 15mins to NYC/Ferry,161357125,Mohsin,Staten Island,Todt Hill,40.61041,-74.11593,Entire home/apt,135,3,2,2019-06-23,0.86,3,36 +33915820,Manhattan Ave Apartment 2 stops from Times Square,18416970,Ryan,Manhattan,Harlem,40.80712,-73.95686,Private room,103,2,14,2019-07-07,5.83,1,19 +33915843,Beautiful duplex apartment by Times Square,253906467,Erik,Manhattan,Hell's Kitchen,40.7665,-73.98943,Shared room,85,1,9,2019-07-04,3.25,9,365 +33916529,Entire Studio Apartment Over Looking Central Park,101965358,Ana,Manhattan,East Harlem,40.79551,-73.94813,Entire home/apt,200,7,2,2019-05-22,0.95,1,173 +33917759,Central Park North Max-Room,234483148,Makis,Manhattan,Harlem,40.80332,-73.94853,Private room,95,1,11,2019-07-03,4.58,2,256 +33917958,"LGA / Midtown, Prime room space w/ elevator +more",137358866,Kazuya,Queens,Woodside,40.74506,-73.90602,Private room,56,30,0,,,103,242 +33923209,"Queens SPACIOUS Bedroom, 1–3 people, 25 min to NYC",254542999,Cheryl,Queens,Sunnyside,40.73591,-73.92415,Private room,90,2,12,2019-06-30,5.14,1,57 +33925600,"Nice room in Brooklyn, Safe area 30m to D,N/Town",92897185,Nikolett,Brooklyn,Borough Park,40.6348,-74.00304,Private room,60,1,6,2019-06-23,2.25,2,46 +33926057,ONLY WOMEN/CAMAS PARA MUJER/HABITACIÓN COMPARTIDA,223087887,Jess & Ana,Queens,Corona,40.74116,-73.86667,Shared room,24,1,4,2019-05-04,1.52,8,346 +33926074,Cozy Artist's Haven Brooklyn Apartment,83615522,Constance,Brooklyn,Crown Heights,40.66681,-73.9549,Private room,45,2,4,2019-06-29,2.26,1,10 +33927253,Private Room@Columbia University neighborhood,114502772,Peter,Manhattan,Upper West Side,40.80144,-73.96409,Private room,44,2,1,2019-05-15,0.55,1,0 +33927923,"Spacious, Sunny, and quiet sanctuary in FlatbushBK",2282687,Maarouf,Brooklyn,Flatbush,40.65164,-73.95533,Entire home/apt,120,4,1,2019-05-08,0.48,1,0 +33928971,Large 1BR apt. in luxury West Village building.,158709729,Michael,Manhattan,West Village,40.73264,-74.00422,Entire home/apt,450,2,4,2019-06-28,2.55,1,43 +33929577,"Couch(sofácama), only women, near LGA & Manhattan",223087887,Jess & Ana,Queens,Corona,40.74086,-73.86618,Shared room,24,1,3,2019-05-12,1.11,8,332 +33929652,Private Bedroom In 5BR Apt W 2 Baths Near 3 Trains,242962235,Yuval,Queens,Ridgewood,40.7093,-73.8954,Private room,34,30,0,,,23,252 +33930074,"Your Private Oasis In A Shared Apt, Near 3 Trains!",242962235,Yuval,Queens,Ridgewood,40.70893,-73.89636,Private room,34,30,0,,,23,243 +33930406,Absolutely Beautiful!,20851517,Maggie,Manhattan,Hell's Kitchen,40.76597,-73.9893,Private room,98,6,2,2019-05-14,0.97,3,4 +33930602,Your New Private Bedroom Awaits! Near Good Transit,242962235,Yuval,Queens,Ridgewood,40.70897,-73.89663,Private room,34,30,0,,,23,335 +33930883,Beautiful 2 bedroom 2 bathroom in East Harlem,49796888,Reema,Manhattan,East Harlem,40.79819,-73.93953,Entire home/apt,500,2,0,,,1,55 +33930925,"Spacious Private Room W 3 Nearby Trains, In Queens",242962235,Yuval,Queens,Ridgewood,40.70762,-73.89526,Private room,34,30,0,,,23,317 +33931270,Sleek & Sunny Private Bedroom With 3 Local Trains,242962235,Yuval,Queens,Ridgewood,40.70862,-73.89536,Private room,34,30,0,,,23,314 +33931985,"New, Adorable Williamsburg One-Bedroom",229141974,Mah,Brooklyn,Williamsburg,40.70409,-73.94078,Entire home/apt,195,2,1,2019-05-06,0.47,1,0 +33932313,Sunny Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70876,-73.89704,Private room,34,30,0,,,23,322 +33932433,"Room w/Loft & Private Bathroom, Private Entrance",55143966,Jason,Brooklyn,Bushwick,40.69764,-73.91585,Private room,62,17,2,2019-07-02,0.78,1,21 +33932486,Shared Couch in Shared Studio,274333,Janu,Manhattan,Harlem,40.80298,-73.95375,Shared room,20,1,0,,,3,2 +33932573,Modern Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70769,-73.89641,Private room,34,30,1,2019-06-08,1,23,325 +33932806,Trendy Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70885,-73.89634,Private room,34,30,0,,,23,136 +33932981,Peaceful Private BR in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70937,-73.89702,Private room,34,30,0,,,23,192 +33933219,24hr access recording studio with on call engineer,61950433,Amin,Brooklyn,Clinton Hill,40.69593,-73.97003,Private room,75,1,0,,,1,0 +33933477,Comfortable! 2 Bed Rm Apt. in House~20 min to NYC,38377515,Gil,Bronx,Clason Point,40.81338,-73.85821,Entire home/apt,75,2,5,2019-07-06,5,1,86 +33933527,Beautiful Private Room in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78222,-73.9456,Private room,95,3,3,2019-05-15,1.10,9,8 +33933592,Stylish 4 BR APT in Ridgewood Woodbine,242962235,Yuval,Queens,Ridgewood,40.70807,-73.89483,Private room,34,30,0,,,23,322 +33934534,#1 Shared ROOM 4YOU for 6 guests,256235740,Levi,Brooklyn,Crown Heights,40.66738,-73.93669,Shared room,25,2,1,2019-05-28,0.71,3,167 +33935442,Manhattan/帝国大夏/ time square【3】,107245546,Michael,Manhattan,Chelsea,40.74578,-73.99091,Private room,130,2,3,2019-06-23,3,3,132 +33936370,Cozy room with 3 windows.,43676525,Filip,Brooklyn,Bushwick,40.69174,-73.90811,Private room,40,30,0,,,1,365 +33937108,#2 ROOM 4LEDY (4 guests),256235740,Levi,Brooklyn,Crown Heights,40.66779,-73.93729,Shared room,45,2,0,,,3,179 +33937444,NEW! Beautiful room in flat w/ rooftop in SOHO :),35955942,Corinna,Manhattan,Nolita,40.72365,-73.99377,Private room,150,4,2,2019-06-10,1.82,1,6 +33937844,"Spacious, Light-Filled, Private Bklyn 2-Bedroom",255990804,Joel,Brooklyn,Crown Heights,40.66549,-73.94616,Entire home/apt,220,2,4,2019-06-05,2.03,1,251 +33937907,Antonio's place,36242952,Antonio,Queens,Long Island City,40.75009,-73.94864,Private room,85,1,15,2019-07-02,6.00,1,67 +33938000,Super Spacious Room! Private bathroom! LES/Soho,71400423,Maria,Manhattan,Lower East Side,40.71983,-73.98981,Private room,135,1,10,2019-06-20,4.05,3,93 +33940543,211 east 34 stRoom 3,255431206,Mohammed,Brooklyn,East Flatbush,40.65295,-73.9463,Private room,42,7,4,2019-07-01,2.55,9,120 +33941416,Comfy Room in Williamsburg! Close to 3 subways!,256299491,Anthony,Brooklyn,Williamsburg,40.70445,-73.94491,Private room,75,4,5,2019-06-29,2.27,1,6 +33941653,The Eagle's Nest,82380968,Loretta,Manhattan,Harlem,40.80437,-73.94595,Private room,85,1,3,2019-05-15,1.14,1,193 +33941785,Beautiful studio apartment in a perfect location,9380030,Gustav,Manhattan,East Village,40.72359,-73.98519,Entire home/apt,140,3,1,2019-06-23,1,1,56 +33942313,Private Bedroom Modern Fully Renovated Harlem Apt,345087,M,Manhattan,Harlem,40.82185,-73.9413,Private room,99,2,1,2019-04-28,0.42,1,359 +33942517,Cozy Three-Bedroom Apartment - Brooklyn,236796242,Em,Brooklyn,Bedford-Stuyvesant,40.68737,-73.94346,Entire home/apt,140,1,3,2019-06-24,1.80,1,316 +33943045,Steps away from Manhattan!,55203569,Anna,Queens,Astoria,40.76752,-73.91433,Entire home/apt,250,3,13,2019-06-26,5.49,1,76 +33943216,"Entire 2BR Modern, Luxurious Apt in East Village",156381151,Karim,Manhattan,East Village,40.72607,-73.98625,Entire home/apt,190,2,2,2019-06-10,1.40,2,0 +33943482,Perfect 2 Bedrooms in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78364,-73.94586,Entire home/apt,175,3,1,2019-05-04,0.45,9,103 +33943754,Private Room with Backyard Access!,18765976,Mihail,Brooklyn,Bushwick,40.69899,-73.91667,Private room,65,1,9,2019-07-05,3.38,4,66 +33943994,Private & Cozy Room in Bushwick,18765976,Mihail,Brooklyn,Bushwick,40.69932,-73.91576,Private room,65,1,7,2019-06-16,2.63,4,61 +33944331,Gorgeous 2br apartment on Madison Ave,255190901,Michael,Manhattan,Midtown,40.74602,-73.98486,Entire home/apt,339,3,20,2019-06-22,7.89,1,86 +33944413,Large modern one bedroom apartment -1 block subway,248831780,Camille,Queens,Astoria,40.76939,-73.92139,Entire home/apt,175,1,0,,,1,185 +33944634,"Centrally Located 2 Bedroom, 1 Bath",243226371,Robert,Manhattan,East Village,40.72391,-73.98409,Entire home/apt,700,2,8,2019-06-02,3.08,1,263 +33944826,Bienvenidos a casa,234956201,Jose,Manhattan,Washington Heights,40.83588,-73.93978,Private room,65,2,7,2019-07-01,3.75,1,180 +33945670,Quaint City Island.Come and enjoy our home,43332874,Margaret,Bronx,City Island,40.83959,-73.78587,Private room,100,7,0,,,1,180 +33945711,Brand New Luxury 2 Bed Condo in East Williamsburg!,256341094,David,Brooklyn,Bushwick,40.6991,-73.92917,Entire home/apt,249,6,4,2019-07-01,1.97,2,177 +33947023,"Authentic apartment in the heart of Williamsburg,",117476022,Valentine,Brooklyn,Williamsburg,40.71213,-73.951,Private room,84,5,0,,,1,60 +33947095,Central Park West Private Room,26910600,Rachel,Manhattan,Upper West Side,40.79179,-73.96623,Private room,500,1,1,2019-05-09,0.49,1,90 +33951037,2BR Prime West Village location!,254472726,Jerick,Manhattan,West Village,40.73198,-74.00526,Entire home/apt,149,31,5,2019-05-23,1.92,1,219 +33953726,Nice neighborhood and very close to subway,256379094,Prarintorn,Brooklyn,Kensington,40.64582,-73.97898,Private room,85,10,0,,,1,52 +33954390,Room with GARDEN,29953329,Yulia,Brooklyn,Bedford-Stuyvesant,40.69267,-73.94395,Private room,79,2,2,2019-06-16,1.02,2,5 +33954574,Luxury High Rise with Private Balcony,23066402,Daniel,Manhattan,Chelsea,40.74371,-73.99622,Entire home/apt,225,3,2,2019-05-30,0.83,1,33 +33955057,Splendid 1 bdrm in West Village NYC,4189194,Sandra,Manhattan,West Village,40.73286,-74.00463,Entire home/apt,160,3,3,2019-06-07,1.88,1,2 +33956049,Comfortable Private Room with everything you need!,256403429,Brenda,Brooklyn,East Flatbush,40.65438,-73.95181,Private room,54,1,14,2019-07-01,5.32,5,81 +33956883,Beautiful Cozy Private Room!,256403429,Brenda,Brooklyn,East Flatbush,40.65214,-73.95159,Private room,53,1,15,2019-07-06,5.56,5,77 +33957038,A Beautiful Williamsburg Apartment Available Today,252575404,Yeshe,Brooklyn,Williamsburg,40.71009,-73.95842,Private room,90,3,4,2019-07-02,3.53,1,63 +33957835,RM#1-Blue room w/balcony 30 min NYC; all airports,241963980,Deborah,Queens,Jamaica Hills,40.71757,-73.7961,Private room,65,1,1,2019-07-07,1,2,139 +33959560,"Gorgeous, sunny and cosy Williamsburg 2 bed Apt",10860700,Sarah,Brooklyn,Williamsburg,40.7121,-73.94347,Entire home/apt,130,10,0,,,2,34 +33959697,Sun-drenched apartment in Washington Heights,8990490,Jeffrey,Manhattan,Washington Heights,40.84542,-73.93945,Private room,55,1,1,2019-04-19,0.37,1,157 +33960097,1890 Townhouse Penthouse Centered S Williamsburg,44918139,Shai,Brooklyn,Williamsburg,40.71093,-73.95815,Entire home/apt,250,31,1,2019-07-01,1,1,90 +33960800,Sunlight Large Studio in Heart of Harlem,56338076,Barbara,Manhattan,Harlem,40.81431,-73.93994,Entire home/apt,130,1,6,2019-06-15,2.25,3,0 +33961484,Gorgeous room near Washington Square,15617182,Namaya,Manhattan,Greenwich Village,40.72811,-73.99893,Private room,90,2,4,2019-05-19,1.54,1,146 +33961505,Gorgeous flat in vibrant Bushwick,2513294,Carrie,Brooklyn,Bushwick,40.70333,-73.92557,Entire home/apt,80,1,0,,,1,213 +33961801,211 east 34 st Room 9,255431206,Mohammed,Brooklyn,East Flatbush,40.65116,-73.94525,Private room,40,7,1,2019-06-16,1,9,172 +33962313,Room 4 ( 8 by 12),255431206,Mohammed,Brooklyn,East Flatbush,40.65286,-73.94532,Private room,40,7,2,2019-05-09,0.81,9,151 +33962690,Cozy lil Williamsburg walk-up with a resident dog,91183632,Dilan,Brooklyn,Williamsburg,40.71331,-73.9627,Private room,75,1,0,,,1,43 +33962961,Manhattan Studio with Great Location!,16881166,Kimberly,Manhattan,Midtown,40.75563,-73.9691,Entire home/apt,200,28,0,,,1,82 +33962986,Room 2 ( 10 by 10),255431206,Mohammed,Brooklyn,East Flatbush,40.6529,-73.94493,Private room,40,7,2,2019-07-06,0.91,9,114 +33963079,"Near Brooklyn Museum, Barclays, Transit, & Banks",127831150,Carena,Brooklyn,Crown Heights,40.67633,-73.94403,Entire home/apt,80,5,9,2019-07-01,3.80,2,225 +33963211,Hang The World In Your Memory© (SLEEPS 1 to 5),233986410,S,Bronx,Parkchester,40.83754,-73.85764,Private room,150,1,0,,,1,267 +33964014,The Zen Home,15853933,Radilena,Queens,Astoria,40.76623,-73.91243,Private room,69,1,9,2019-05-31,3.42,1,35 +33964102,"Cozy Morningside Park, Next to Columbia University",58521727,Ashton,Manhattan,Morningside Heights,40.80958,-73.95743,Entire home/apt,130,8,0,,,1,17 +33964812,Luxury FiDi Terrace Apt by Seaport & WTC,10714783,Mickey,Manhattan,Financial District,40.70824,-74.00476,Entire home/apt,200,2,4,2019-07-02,2.45,1,38 +33964954,Modern Duplex in Artsy Williamsburg,79246014,Shanice,Brooklyn,Williamsburg,40.71975,-73.94613,Entire home/apt,110,2,3,2019-06-16,2.57,1,26 +33965415,Spacious Bedroom near Prospect Park,256403429,Brenda,Brooklyn,Flatbush,40.65228,-73.95286,Private room,54,1,11,2019-06-29,4.12,5,62 +33965894,Doesn't get better than this! Cozy Spacious Room,256403429,Brenda,Brooklyn,Flatbush,40.65235,-73.95347,Private room,54,1,10,2019-07-05,4.35,5,70 +33966122,"Relaxing, comfy, and stress-free apartment.",138962369,Eugenia,Bronx,Edenwald,40.89039,-73.83186,Entire home/apt,50,3,8,2019-07-07,3.04,1,34 +33966308,Lovely Brooklyn Bedroom,256479489,Amy,Brooklyn,Bath Beach,40.60456,-74.00117,Private room,49,2,1,2019-04-29,0.42,2,316 +33967235,Skyline view 1BR condo with balcony,8485868,Jake,Brooklyn,Bushwick,40.70044,-73.93472,Entire home/apt,150,3,0,,,1,17 +33967503,Private room,10188543,Charvii,Queens,Richmond Hill,40.69318,-73.83418,Private room,60,1,17,2019-06-19,6.71,1,1 +33968500,Comfy bedroom with natural light,119774078,Christina,Queens,Ridgewood,40.70728,-73.90572,Private room,60,4,2,2019-05-15,0.73,1,51 +33968977,HUGE Dumbo apartment with private rooftop!,121193088,Nathan,Brooklyn,DUMBO,40.70315,-73.99424,Entire home/apt,100,2,2,2019-04-29,0.79,1,0 +33969648,Comfortable and Cozy Home,256502464,Paul,Manhattan,Harlem,40.82715,-73.94667,Private room,55,1,20,2019-07-01,7.41,3,175 +33969898,Private room near Columbia University,256504089,Gaea,Manhattan,Upper West Side,40.80337,-73.96511,Private room,69,20,0,,,1,0 +33970585,Ingrid’s Columbia Apt,256012654,Yueying,Manhattan,Upper West Side,40.80169,-73.96339,Private room,40,15,0,,,1,17 +33970684,Its the Brooklyn way!,256510832,George,Brooklyn,Brownsville,40.67144,-73.91457,Entire home/apt,180,2,7,2019-06-23,2.63,1,352 +33970850,SummerWintersGetaway- 8 mins from JFK,256462453,Yolander,Queens,Jamaica,40.69115,-73.80617,Entire home/apt,350,1,9,2019-06-09,3.42,1,358 +33971163,Williamsburg Home,70026919,Dan,Brooklyn,Williamsburg,40.71709,-73.96035,Private room,66,7,1,2019-04-19,0.37,1,281 +33971428,Sunny and spacious Bushwick haven,45834595,Kira,Brooklyn,Bushwick,40.70504,-73.91868,Entire home/apt,120,3,3,2019-05-27,1.13,1,3 +33971836,Cozy apartment In Manhattan,253906467,Erik,Manhattan,Hell's Kitchen,40.76447,-73.99103,Shared room,69,1,4,2019-06-23,1.48,9,364 +33971900,Bright&staylish room 15min from LaGuardia&20minJFK,253467179,Daniel,Queens,Forest Hills,40.73105,-73.85318,Private room,70,2,6,2019-07-02,2.86,1,288 +33972459,Luxury New Private Duplex in Manhattan,49623247,Saar,Manhattan,Washington Heights,40.85167,-73.92868,Entire home/apt,350,3,8,2019-06-10,3.29,1,243 +33972460,Wow! Close to all of NYC in Lower East Side,157699374,Richard,Manhattan,East Village,40.722,-73.98256,Entire home/apt,179,1,4,2019-05-19,1.52,1,0 +33972589,Sunny HUGE bedroom,206482566,Sarah,Manhattan,Stuyvesant Town,40.73193,-73.97971,Private room,115,1,0,,,2,0 +33973347,Beautiful private bedroom in UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7929,-73.9391,Private room,90,2,2,2019-06-23,2,3,0 +33974082,LARGE LUXURIOUS BEDROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75736,-73.92815,Private room,65,1,11,2019-06-16,4.58,5,300 +33974640,BEAUTIFUL PRIVATE ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75771,-73.92724,Private room,50,1,3,2019-05-31,1.34,5,318 +33974777,SUNNY ROOM,32167398,Meela,Queens,Astoria,40.75925,-73.92506,Private room,45,1,6,2019-06-11,2.31,5,342 +33975580,McDonald,156850005,Sharon,Queens,Jackson Heights,40.75606,-73.87787,Private room,100,1,3,2019-06-30,1.73,2,350 +33975581,Alphabet City Room,39077228,Kevin,Manhattan,East Village,40.72827,-73.98041,Private room,83,2,2,2019-04-18,0.73,1,15 +33980568,COZY PRIVATE ROOM. 5min walk to the L train!,256581747,Sergii,Brooklyn,Williamsburg,40.70631,-73.94467,Private room,72,30,0,,,3,333 +33980946,Modern large 3Bedrm w Washer/Dryer Next to Subway,62066342,Rafaelo,Manhattan,Harlem,40.80691,-73.94626,Private room,98,7,2,2019-06-21,1.22,2,321 +33981416,One bedroom in Chelsea,12321281,Calypso,Manhattan,Chelsea,40.74483,-73.99649,Private room,110,30,0,,,1,145 +33982630,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73367,-74.00497,Entire home/apt,250,3,2,2019-06-20,0.88,5,265 +33983585,Comfy private room with new interior!,256581747,Sergii,Brooklyn,Williamsburg,40.7062,-73.94237,Private room,72,30,0,,,3,318 +33984685,High comfort private room! New interior design.,256581747,Sergii,Brooklyn,Williamsburg,40.70709,-73.9426,Private room,73,30,0,,,3,364 +33984941,Private studio next to Penn,200282080,Laura,Manhattan,Chelsea,40.75129,-73.99538,Entire home/apt,250,2,1,2019-06-26,1,1,0 +33986797,Cozy room in Richmond hill,251768799,Naiomi,Queens,Richmond Hill,40.69927,-73.82643,Private room,150,1,1,2019-04-25,0.40,1,0 +33987446,X Light,184750740,Juice,Bronx,Morrisania,40.82565,-73.91095,Shared room,77,1,0,,,4,179 +33987509,Private & Cozy Room 1B near Columbia Univ,10415675,Yao & Rain,Manhattan,Harlem,40.82289,-73.954,Private room,120,3,1,2019-04-23,0.39,7,339 +33987592,Bedroom in Huge and Sunny Williamsburg Apartment!,73233066,Austin,Brooklyn,Williamsburg,40.71194,-73.95428,Private room,165,1,0,,,1,0 +33987747,Cozy/Beautiful studio in Times Square. Sleep 2,102287310,Vera,Manhattan,Hell's Kitchen,40.76704,-73.98646,Entire home/apt,199,3,0,,,3,358 +33987847,Gorgeous Rooftop Views / Seconds From Train,22388757,Jordan,Manhattan,Washington Heights,40.85075,-73.93982,Entire home/apt,120,3,3,2019-07-07,1.70,2,0 +33987887,Clean Comfortable and Private.,204244117,Patrola,Manhattan,Harlem,40.82609,-73.94948,Private room,49,1,11,2019-07-04,5.50,2,180 +33988271,"Cute, Convenient Bushwick 1-Bedroom (sleeps 6)",256634850,Barbara,Brooklyn,Bushwick,40.68773,-73.90589,Entire home/apt,149,2,1,2019-06-23,1,1,0 +33988643,"Cozy, Friendly Apt Share for Young Professionals",253836845,Ollie,Brooklyn,Crown Heights,40.66981,-73.95734,Private room,68,30,2,2019-05-20,0.92,7,226 +33988756,Single Bedroom with private roof top,7943066,Tamiris,Brooklyn,Williamsburg,40.71963,-73.94149,Private room,75,2,10,2019-05-31,3.85,2,62 +33989177,Large Private Room in Brownstone (4th fl),897871,Raphael,Brooklyn,Bedford-Stuyvesant,40.68171,-73.93346,Private room,90,4,1,2019-05-30,0.75,1,0 +33989681,"Cozy, Quintessential Brooklyn Carriage House",235329443,Sophie,Brooklyn,Boerum Hill,40.68438,-73.98436,Entire home/apt,150,3,12,2019-07-06,6.55,1,173 +33989972,MONTAUK HEIGHTS,152503673,Idemudia,Brooklyn,East New York,40.67562,-73.87763,Entire home/apt,89,3,11,2019-07-01,4.58,1,13 +33990380,Sonder | Stock Exchange | Ideal 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70613,-74.01067,Entire home/apt,228,2,5,2019-06-12,1.90,327,347 +33990485,Sonder | Stock Exchange | Timeless 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.01208,Entire home/apt,256,2,4,2019-06-18,2.79,327,292 +33990639,Sonder | Stock Exchange | Ideal 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.7075,-74.01096,Entire home/apt,188,2,6,2019-06-20,2.65,327,329 +33990756,Sonder | Stock Exchange | Ideal 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70754,-74.01206,Entire home/apt,240,2,6,2019-06-19,2.69,327,340 +33991062,Sonder | Stock Exchange | Superior 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70701,-74.01176,Entire home/apt,255,2,6,2019-06-08,2.57,327,237 +33992212,2 Bedroom Sunny Apartment Near Prospect Park,2992287,Shahzad,Brooklyn,Prospect Heights,40.67405,-73.96788,Entire home/apt,199,3,4,2019-06-22,2.40,1,21 +33992824,Sonder | Stock Exchange | Superior 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70631,-74.01225,Entire home/apt,228,2,5,2019-06-16,3.00,327,349 +33992942,"Beautiful, Furnished 1 Bedroom on Upper West Side",24525241,Jeremy,Manhattan,Upper West Side,40.77341,-73.9812,Entire home/apt,166,17,0,,,1,102 +33993225,Private small room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.72613,-73.98447,Private room,99,1,9,2019-06-13,3.42,5,30 +33993343,Unique peaceful apart smartly located in Astoria,156286838,Ella,Queens,Astoria,40.77698,-73.93389,Entire home/apt,150,7,0,,,1,342 +33993547,Small Private Room in 3 bdr apt - East Village,33214549,Alexandre,Manhattan,East Village,40.7267,-73.98316,Private room,99,1,5,2019-06-13,1.90,5,0 +33993628,Blogger's apartment (w/ a ring light!) in Brooklyn,189165590,Young,Brooklyn,Bedford-Stuyvesant,40.69037,-73.94542,Entire home/apt,150,3,2,2019-05-12,0.92,1,0 +33994465,Penthouse with huge deck and city views,106418986,Vicky And Nektarios,Brooklyn,Greenpoint,40.73473,-73.95207,Entire home/apt,250,3,0,,,1,62 +33994677,Elegant Villa in the Heart of Manhattan!,221213143,David,Manhattan,Kips Bay,40.7431,-73.98137,Entire home/apt,790,1,4,2019-06-12,1.82,9,298 +33994694,"Manhattan 2BR W/ Garden, Laundry, Near Subway",15757322,Devin T.,Manhattan,Washington Heights,40.83611,-73.94162,Entire home/apt,161,2,13,2019-06-22,4.87,2,294 +33994896,Lower East side/Soho/Chinatown room fits 3 people,71400423,Maria,Manhattan,Lower East Side,40.71958,-73.9905,Private room,123,1,7,2019-07-05,4.47,3,146 +33994927,"Stylish Large 2 Bedroom, Perfect Location",256680416,Drew,Manhattan,Murray Hill,40.74818,-73.98247,Entire home/apt,299,2,7,2019-07-02,3.18,1,16 +33995462,"Bronx, Little Italy, Arthur Ave, Fordham, Yanks.",256683560,Jorge,Bronx,Belmont,40.85398,-73.88737,Shared room,49,1,2,2019-06-03,0.94,2,358 +33995466,A Perfect Studio,3940207,Kimberly,Brooklyn,Williamsburg,40.72114,-73.96307,Entire home/apt,125,20,1,2019-06-13,1,1,122 +33995614,Lovely LES/SOHO/Chinatown room can fit 3 people!,71400423,Maria,Manhattan,Lower East Side,40.72139,-73.9896,Private room,123,1,10,2019-06-18,4.35,3,0 +33995646,Walk to Columbia University,67651553,Yunqiu,Manhattan,Upper West Side,40.80237,-73.96695,Entire home/apt,120,20,0,,,2,95 +33995764,Private Master Suite.,5547103,Artur,Bronx,Parkchester,40.8353,-73.85751,Private room,75,3,0,,,1,81 +33995769,Entire studio First Floor Walk to all,230192818,Felicia,Manhattan,East Village,40.72222,-73.98221,Entire home/apt,190,2,7,2019-06-27,3.28,2,78 +33996094,Astoria Prime- 5 Min to LaGuardia/20 Min to NYC!,60737457,Paige,Queens,Ditmars Steinway,40.7733,-73.90569,Entire home/apt,225,1,23,2019-07-06,9.58,1,109 +33996358,Paper moon private room. Best Bushwick location!,11297371,Maria,Brooklyn,Bushwick,40.69923,-73.93089,Private room,50,2,8,2019-05-30,3.38,2,292 +33996362,Cozy Bedroom in a New York EDITION Apartment,43502871,Gilberto,Manhattan,Inwood,40.86517,-73.92995,Private room,95,3,0,,,1,216 +33996365,Queen Bedroom in Modern Manhattan Apartment,219717193,Jessie,Manhattan,Gramercy,40.73431,-73.98167,Private room,59,5,4,2019-06-15,1.74,2,10 +33996948,Lovely Hudson Yards Stonehouse near Penn Station,256697785,Arya,Manhattan,Chelsea,40.75034,-73.99059,Entire home/apt,250,3,4,2019-06-06,2.35,1,144 +33997927,Private Room in Queens NYC,679431,Miguelina,Queens,Woodhaven,40.69345,-73.86674,Private room,65,2,4,2019-06-23,1.69,1,180 +33998142,Sonder | Wall Street | Superior 3BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70597,-74.01248,Private room,616,2,5,2019-06-12,2.46,327,255 +33998269,Sonder | Stock Exchange | Superior 2BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.707,-74.01208,Entire home/apt,408,2,2,2019-06-22,0.95,327,273 +33998274,Affordable Studio Close to All the Action,256710914,Benjamin,Manhattan,Chelsea,40.74694,-74.0013,Entire home/apt,100,2,3,2019-07-01,3,1,2 +33998291,Sonder | Wall Street | Superior 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70756,-74.01107,Private room,264,2,2,2019-06-15,0.83,327,348 +33998396,3000 sq ft daylight photo studio,3750764,Kevin,Manhattan,Chelsea,40.7506,-74.00388,Entire home/apt,6800,1,0,,,6,364 +33999088,KingSize Dream Room,256718904,Jean Paul,Brooklyn,Gowanus,40.6771,-73.98414,Private room,75,1,1,2019-04-21,0.37,1,82 +33999377,CLEAN & SPACIOUS ROOM CLOSE TO MANHATTAN,32167398,Meela,Queens,Astoria,40.75759,-73.92677,Private room,50,1,7,2019-06-02,2.88,5,336 +33999874,BRIGHT ROOM CLOSE TO MIDTOWN MANHATTAN,32167398,Meela,Queens,Long Island City,40.75894,-73.92864,Private room,60,1,4,2019-05-12,1.52,5,355 +34000977,Ocean-themed Studio Minutes from the Beach!,8756834,Kristi,Brooklyn,Midwood,40.62635,-73.9725,Entire home/apt,80,2,1,2019-05-08,0.48,1,33 +34002121,Pat's place (shared female only).,256743247,Patricia,Queens,Bayside,40.77125,-73.7809,Private room,49,1,14,2019-06-28,6.36,2,72 +34008808,"Open Midtown 2BR w/ Doorman, Gym, 5 min walk to Subway, by Blueground",107434423,Blueground,Manhattan,Midtown,40.74546,-73.98679,Entire home/apt,377,30,0,,,232,341 +34009172,Charming NoMad Studio w/ Gym + Doorman by Blueground,107434423,Blueground,Manhattan,Midtown,40.74403,-73.98701,Entire home/apt,274,30,0,,,232,353 +34009196,"Gramercy Park 1BR w/ Great Views, Gym, W/D, near the subway by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.7385,-73.982,Entire home/apt,314,30,0,,,232,337 +34009215,"Stately Gramercy Park 1BR w/ WD, Gym, Doorman, near Subway by Blueground",107434423,Blueground,Manhattan,Kips Bay,40.73905,-73.98225,Entire home/apt,314,30,0,,,232,338 +34010131,Brand New & Beautiful. 1 min toTrain /15Min to JFK,22543458,Ashley,Queens,Ozone Park,40.67775,-73.8601,Entire home/apt,199,1,14,2019-06-28,6.36,4,249 +34011627,Library Suite with Antique Touches - mid-Bushwick,4982496,Anna Leah,Brooklyn,Bushwick,40.70373,-73.92723,Private room,85,4,0,,,1,0 +34013027,Lower East/Little Italy 5BR Loft! Prime Downtown!,256521664,Roxanne,Manhattan,Chinatown,40.71692,-73.9947,Entire home/apt,239,31,3,2019-06-15,1.76,1,176 +34013205,cozy private studio in greenpoint..,25346924,Edyta,Brooklyn,Greenpoint,40.72602,-73.95848,Entire home/apt,118,4,1,2019-05-27,0.70,1,30 +34013223,ARTIST ABODE CLOSE TO APOLLO AND SCHOMBURG CENTRE,256817214,Taio,Manhattan,Harlem,40.81597,-73.94114,Private room,90,5,1,2019-06-03,0.83,1,354 +34013463,Beautiful Brooklyn Brownstone,15734998,Lisa,Brooklyn,Crown Heights,40.66913,-73.94028,Entire home/apt,91,2,2,2019-07-06,2,1,9 +34014027,Spacious Light-Filled Room in Williamsburg Loft,23003756,Dimitri,Brooklyn,Williamsburg,40.71777,-73.94874,Private room,90,2,2,2019-05-23,1.18,1,0 +34014432,"Cozy , clean and comfortable",125755479,Carla,Queens,Astoria,40.76398,-73.91409,Private room,100,1,0,,,1,0 +34014834,"Beautiful colonial near Belmont Race +Tract",256505094,Cederna,Queens,Cambria Heights,40.69955,-73.72247,Entire home/apt,180,1,0,,,1,83 +34014939,Two floor apartment near Central Park,82746113,Cecilia,Manhattan,Upper West Side,40.78684,-73.96912,Entire home/apt,250,1,0,,,2,88 +34015098,Entire Gorgeous Greenpoint Duplex,38217925,Lily,Brooklyn,Greenpoint,40.7342,-73.95707,Entire home/apt,205,5,0,,,2,64 +34015258,E & J private stay.,155961583,Jeanette,Brooklyn,Bushwick,40.7007,-73.93401,Private room,69,2,8,2019-06-26,3.75,1,131 +34016163,PRIVATE HOUSE VERY CLOSE TO SUBWAY LINE,256836581,Mohammad,Bronx,Fordham,40.8716,-73.89177,Entire home/apt,92,2,9,2019-07-05,4.82,1,48 +34016570,== TRAVELHOLIC Rooms (Modern Decor / Clean) ==,109402182,Michael,Manhattan,Harlem,40.82361,-73.94599,Private room,59,25,3,2019-05-10,1.17,1,24 +34016888,3BR Times Square Loft ! Heart of City!,255539744,Sheryl,Manhattan,Hell's Kitchen,40.75364,-73.99291,Entire home/apt,149,31,4,2019-06-01,1.85,1,135 +34017043,Sonder | Stock Exchange | Superior 2BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70776,-74.01169,Entire home/apt,396,2,6,2019-06-23,3.00,327,328 +34017119,Sonder | Stock Exchange | Dreamy Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70735,-74.01221,Entire home/apt,215,2,1,2019-06-16,1,327,346 +34017464,Amazing 2 bedroom apt . Recently renovated.,6752504,Ella,Brooklyn,Gravesend,40.59609,-73.97486,Entire home/apt,120,5,0,,,3,23 +34017530,*** HEART OF MANHATTAN (Herald Square) ***,150879430,Michael,Manhattan,Midtown,40.74944,-73.98338,Private room,99,14,0,,,1,25 +34017965,BRIGHT SUNNY ONE BEDROOM APT WITH TERRACE,49101398,Nicholas,Brooklyn,Gravesend,40.59725,-73.97684,Entire home/apt,99,2,3,2019-07-07,3,3,97 +34018291,Laid Back Williamsburg Apartment,256857295,Amy,Brooklyn,Williamsburg,40.7128,-73.9396,Private room,100,2,4,2019-06-25,1.85,1,169 +34019440,Beautiful&Clean 1 KING BDR apt in Chelsea LONGTERM,234227365,Emma,Manhattan,Chelsea,40.74073,-73.99884,Entire home/apt,180,5,1,2019-04-28,0.42,1,83 +34019712,"Homey, Friendly Apt Share Next To Subway",253836845,Ollie,Brooklyn,Crown Heights,40.66977,-73.95725,Private room,68,30,2,2019-06-18,2,7,246 +34019889,"East Village 1BR - Sleek, Modern, Urban Oasis!",70011812,Elise,Manhattan,East Village,40.72625,-73.98625,Entire home/apt,169,1,16,2019-07-06,7.27,2,50 +34019915,"Homey, Friendly Apt Share Next to Subway",253836845,Ollie,Brooklyn,Crown Heights,40.67155,-73.95854,Private room,66,30,2,2019-05-25,1.00,7,223 +34020020,"Charming, quiet and lovely Brooklyn Heights Studio",14950774,Gina,Brooklyn,Brooklyn Heights,40.69094,-73.99293,Entire home/apt,160,7,0,,,1,98 +34020036,Prime Gramercy! **12 months lease!,1146958,Liz,Manhattan,Kips Bay,40.73859,-73.98218,Entire home/apt,89,360,0,,,4,364 +34020040,"Homey, Friendly Apt Share Next To Subway",253836845,Ollie,Brooklyn,Crown Heights,40.67058,-73.9573,Private room,68,30,1,2019-05-21,0.60,7,226 +34020097,Cozy Room in Classic Crown Heights,98978751,Vita,Brooklyn,Crown Heights,40.67052,-73.95612,Private room,70,1,4,2019-06-18,2.67,1,153 +34020964,Newly Renovated Multimedia Studio,256487516,Vernon,Brooklyn,East New York,40.66038,-73.88761,Entire home/apt,40,14,1,2019-05-15,0.54,1,178 +34021170,HUGE Room. Lower East Side! Perfect location!,4613096,Laura,Manhattan,Lower East Side,40.7208,-73.98959,Private room,90,3,2,2019-06-27,2,1,34 +34022109,Modern Studio in Washington Heights!,26973868,Jhunior,Manhattan,Washington Heights,40.84221,-73.93705,Entire home/apt,90,4,4,2019-06-30,1.88,1,51 +34022186,Beautiful Room in Chic Area!,181092484,Leonard,Manhattan,Lower East Side,40.71833,-73.98936,Private room,99,1,7,2019-07-01,2.92,3,356 +34022664,Couch surfing at the sanctuary,218883687,Parrish,Brooklyn,East Flatbush,40.63964,-73.94362,Shared room,50,1,8,2019-06-30,3.00,2,365 +34022740,Safari in Brooklyn!,256899020,Melissa,Brooklyn,Brownsville,40.65799,-73.91595,Private room,57,4,7,2019-06-23,2.84,1,35 +34023411,2 beautiful bedroom apt .with 2 main subway line,6752504,Ella,Brooklyn,Gravesend,40.60121,-73.97515,Entire home/apt,200,4,1,2019-04-21,0.37,3,173 +34023558,1 BR apartment in gut renovated historic building,88602231,Karol,Brooklyn,Kensington,40.64722,-73.9736,Entire home/apt,111,14,0,,,1,21 +34023619,Entire Apartment With Space For Two,84118689,Andrew,Manhattan,Upper East Side,40.77362,-73.94886,Entire home/apt,130,1,11,2019-06-20,4.34,1,26 +34024785,Beautiful Bright Private Room!,181092484,Leonard,Manhattan,Lower East Side,40.71923,-73.98582,Private room,119,1,7,2019-07-05,2.88,3,360 +34025113,Large soho apt,28823649,Rose,Manhattan,SoHo,40.72611,-74.00337,Entire home/apt,194,1,0,,,3,89 +34029489,Private Bedroom in Amazing Location! Times Square!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.75662,-73.99333,Private room,500,31,1,2019-05-10,0.50,3,0 +34029837,Amazing Times Square Location! Private BR in Loft!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.7574,-73.99395,Private room,500,31,2,2019-05-11,0.82,3,0 +34032088,Private room- Astoria Modern,347045,Shane,Queens,Astoria,40.75807,-73.92632,Private room,125,2,5,2019-06-30,2.34,1,90 +34032175,"Renovated 2BR in trendy Williamsburg, Brooklyn",152850919,Barbara,Brooklyn,Williamsburg,40.71446,-73.96229,Entire home/apt,200,3,0,,,1,179 +34032390,Crash pad #2,156505456,John,Brooklyn,East New York,40.66739,-73.87379,Private room,65,3,2,2019-05-18,0.95,13,365 +34033950,Dramatic quiet light filled 18' high E village apt,256981777,Scott,Manhattan,East Village,40.72388,-73.97902,Entire home/apt,245,30,0,,,1,16 +34034553,Beautiful little apartment on the Upper East Side,256987188,Irina,Manhattan,Upper East Side,40.77507,-73.94785,Entire home/apt,150,1,1,2019-05-06,0.47,1,33 +34035431,"Private Room by Emmons, beaches. B, Q trains.",177031514,Alena,Brooklyn,Sheepshead Bay,40.58438,-73.95564,Private room,60,1,4,2019-06-23,1.85,1,341 +34035571,Beautiful Place in the Heart of Williamsburg,457147,Florent,Brooklyn,Williamsburg,40.71191,-73.95598,Private room,75,7,2,2019-06-08,1.58,1,324 +34035610,Private Room in a Beautiful Ridgewood Apartment,128605205,Tom,Queens,Ridgewood,40.7066,-73.91392,Private room,100,2,0,,,1,3 +34035902,Luxury Hudson yards apartment on the High line,224879685,Irina,Manhattan,Chelsea,40.75321,-74.00238,Entire home/apt,590,10,0,,,1,84 +34036011,Charming East Village Penthouse Studio Apartment,43885531,Lee,Manhattan,East Village,40.72935,-73.9826,Entire home/apt,130,30,1,2019-06-14,1,1,115 +34036047,Harlem Time Capsule,256998898,Hank,Manhattan,Harlem,40.80483,-73.95553,Entire home/apt,550,1,0,,,3,365 +34036136,Excellent chill spot in gowanus,46595898,Ilona,Brooklyn,Gowanus,40.67709,-73.98494,Private room,100,2,1,2019-06-12,1,1,61 +34036333,Flamingo Paradiso East,11418912,Gus,Brooklyn,Williamsburg,40.71239,-73.95037,Entire home/apt,100,3,7,2019-07-03,3.00,1,66 +34037737,Ash’s Place in Hell’s Kitchen,159281143,Ash,Manhattan,Hell's Kitchen,40.76255,-73.99026,Entire home/apt,200,7,4,2019-05-26,2.07,1,216 +34038333,Walking distance to Central Park,257019090,Camille,Manhattan,Upper West Side,40.78046,-73.9784,Entire home/apt,150,4,0,,,1,0 +34038559,Gorgeous Apt on the Upper East Side,1241543,Claire,Manhattan,Upper East Side,40.78145,-73.9496,Private room,130,5,3,2019-06-30,1.73,1,180 +34038619,"Cozy, convenient Upper West Side studio",236779549,Marina,Manhattan,Morningside Heights,40.80665,-73.96062,Entire home/apt,115,31,0,,,1,57 +34039045,Modern Brick Exposed Brooklyn Apartment!,30995747,John,Brooklyn,Crown Heights,40.67723,-73.95133,Entire home/apt,95,4,3,2019-06-10,1.88,1,4 +34039320,Quiet and clean apartment in nyc,201757076,Soledad,Queens,Briarwood,40.71167,-73.81812,Entire home/apt,111,1,9,2019-06-30,3.70,3,223 +34040037,"Bay Ridge is rated Convenient, safe neighborhood",257034143,Sophia,Brooklyn,Bay Ridge,40.62961,-74.02616,Entire home/apt,200,2,5,2019-06-15,2.42,2,161 +34040771,Luxurious life in Manhattan,154895657,Shihu,Manhattan,Hell's Kitchen,40.76245,-73.99831,Entire home/apt,198,30,0,,,1,28 +34040940,"Bright, Light & Airy 1 Bedroom in Kips Bay",7218138,Roger,Manhattan,Kips Bay,40.741,-73.98056,Entire home/apt,149,5,1,2019-05-19,0.59,1,0 +34041523,Master Room in Harlem Duplex,256998898,Hank,Manhattan,Harlem,40.80514,-73.95561,Private room,140,1,4,2019-06-18,1.88,3,350 +34041587,The Power Tower,256998898,Hank,Manhattan,Harlem,40.80536,-73.95469,Private room,140,1,3,2019-07-01,2.00,3,336 +34041630,The Beatiful place,257043301,Alfredo,Queens,Kew Gardens,40.70609,-73.83014,Private room,55,1,0,,,1,179 +34042173,"Peaceful, fully equipped, home away from home!",257053267,Leanna,Queens,Richmond Hill,40.69622,-73.84634,Private room,60,1,3,2019-07-01,1.76,1,364 +34042443,Cute Private Room in Washington Heights,133561420,Evan,Manhattan,Washington Heights,40.84405,-73.93714,Private room,49,3,1,2019-05-04,0.45,1,2 +34042658,Luxury Condo Steps Away From Hudson Yards NYC,11951664,Jack,Manhattan,Chelsea,40.74999,-74.00205,Entire home/apt,195,2,8,2019-07-01,4.36,1,41 +34042777,Comfortable Room in NYC in Harlem area,153205975,Waly,Manhattan,Harlem,40.80279,-73.94736,Private room,78,5,1,2019-05-05,0.46,1,89 +34043476,Bohemian Artist’s Studio in Victorian Neighborhood,48201791,Olivia,Brooklyn,Flatbush,40.63927,-73.9636,Entire home/apt,140,4,9,2019-07-05,3.97,2,328 +34043633,Huge Upper Manhattan Apartment (1st),29178119,Aris,Manhattan,Washington Heights,40.83489,-73.94587,Private room,85,4,0,,,1,55 +34045372,Soulful studio space near Yankees Stadium,12463953,Derrick,Bronx,Mott Haven,40.81865,-73.93014,Entire home/apt,107,2,0,,,1,81 +34047149,1 bedroom in North Slope with Queen bed & futon,225834252,Jodi,Brooklyn,Prospect Heights,40.67656,-73.9706,Entire home/apt,140,2,4,2019-06-25,2.22,1,130 +34051551,"靠近机场,交通购物两便利大房间#1",107272884,Lynn L,Queens,Richmond Hill,40.69441,-73.84659,Private room,45,1,3,2019-06-09,1.43,4,360 +34053030,"Dog Friendly, 1-Bedroom apt, close to subway",250515297,Nikita,Brooklyn,Bedford-Stuyvesant,40.68501,-73.91884,Entire home/apt,75,2,0,,,1,7 +34053516,2 bedroom apt in Brooklyn. Close to subway,6752504,Ella,Brooklyn,Gravesend,40.5974,-73.97448,Entire home/apt,180,3,0,,,3,173 +34054250,Clean and spacious room in charming Greenpoint,47625541,Jeff,Brooklyn,Greenpoint,40.72646,-73.95639,Private room,70,5,1,2019-06-25,1,2,78 +34055336,Private room in apartment near Central Park/6Train,14680337,Anya,Manhattan,East Harlem,40.79034,-73.94503,Private room,169,1,0,,,1,84 +34056586,1850 Sq Brownstone duplex with backyard,7603795,Benoit,Brooklyn,Bushwick,40.69149,-73.92536,Entire home/apt,350,7,0,,,1,124 +34056679,Spanish Harlem magical place. Mezzanine bed,254112876,David,Manhattan,East Harlem,40.79787,-73.93568,Private room,90,2,3,2019-06-30,2.43,2,175 +34056750,Wyndham Midtown 45 at New York City,91854658,Genevieve,Manhattan,Midtown,40.75196,-73.97269,Entire home/apt,500,4,0,,,1,5 +34056928,"1 block off the beach in Arverne, NY. Clean space",257167592,Denise,Queens,Arverne,40.59344,-73.78906,Private room,54,3,0,,,1,363 +34057129,Large one of a kind designer loft in Williamsburg!,22166460,Jarrod,Brooklyn,Williamsburg,40.71902,-73.96414,Entire home/apt,170,4,4,2019-07-01,2.55,1,188 +34058607,Cozy apartment at heart of Brooklyn,11256721,Zeynep,Brooklyn,East Flatbush,40.64939,-73.94864,Entire home/apt,92,4,0,,,1,27 +34059500,Big room prime location WaHe uptown manhattan,290845,Majsan,Manhattan,Washington Heights,40.84387,-73.93969,Private room,59,1,3,2019-06-11,1.64,1,293 +34059931,1 BR Large Luxury Furnished Ap. Near Central Park,15145088,Izi,Manhattan,Upper West Side,40.78537,-73.97456,Entire home/apt,190,30,0,,,8,157 +34059997,Cozy Brooklyn Camper van.,13486673,David,Brooklyn,Prospect Heights,40.67868,-73.97157,Entire home/apt,70,2,0,,,3,84 +34060242,Luxe Sunny Scandinavian Loft in Downtown NYC,864737,Marika,Manhattan,Financial District,40.70816,-74.0019,Entire home/apt,365,2,2,2019-06-10,1.02,1,127 +34060973,"Roomy, sun-drenched, one-bedroom apartment",18811278,Anna Lien,Queens,Ridgewood,40.70741,-73.91534,Entire home/apt,150,7,0,,,1,0 +34061088,"Bright, Spacious Studio near Water in Lux Highrise",73670220,Maya,Manhattan,Financial District,40.70673,-74.01518,Entire home/apt,208,5,4,2019-06-26,2.11,1,9 +34061095,Empty Spacious Unfurnished 1 Bedroom Apartment,7228431,Susan,Bronx,Parkchester,40.83908,-73.86042,Entire home/apt,70,93,0,,,1,134 +34061159,Luxury pad by the beach,255219640,Anna,Brooklyn,Brighton Beach,40.57865,-73.96983,Private room,75,2,1,2019-07-05,1,1,100 +34061253,"Better Than A Hotel Room, Times Sq. Hell's Kitchen",257204612,Adolfo,Manhattan,Hell's Kitchen,40.76461,-73.98997,Entire home/apt,150,3,1,2019-06-23,1,1,138 +34061588,Ideal Studio - Top Prime Location,256921050,Ellen,Manhattan,Chinatown,40.71588,-73.99099,Entire home/apt,135,6,3,2019-06-24,2.37,2,1 +34062194,East Village Dream Apartment - Best Rooftop View,75267282,Yoz,Manhattan,East Village,40.72067,-73.97999,Entire home/apt,210,7,1,2019-05-09,0.49,1,284 +34062487,Clean and Quiet room,27744706,Sasan,Queens,Ridgewood,40.70746,-73.91118,Private room,44,5,1,2019-06-29,1,1,192 +34062693,西藏民居,218134921,Kate,Queens,Woodside,40.74904,-73.90188,Private room,85,1,0,,,1,3 +34062876,Awesome Room in Beautiful Williamsburg Loft,130675,Marta,Brooklyn,Williamsburg,40.71074,-73.94284,Private room,79,3,4,2019-07-01,2.93,1,9 +34063075,"Spacious Bedroom in Washington Heights, Manhattan",257221104,Clark,Manhattan,Washington Heights,40.83466,-73.94029,Private room,60,3,5,2019-06-21,2.42,1,93 +34063202,Bright & clean space in lively Bushwick!,28336,Denise,Brooklyn,Bushwick,40.69982,-73.92491,Private room,75,2,8,2019-06-26,3.75,1,317 +34063821,Bedroom in the Heart of Brooklyn,78078053,Johnnie,Brooklyn,Bedford-Stuyvesant,40.6891,-73.95016,Private room,75,1,2,2019-05-19,1.00,1,138 +34065052,Spacious & Awesome Room in Brooklyn!,215532980,Isa & Bruno,Queens,Ridgewood,40.70515,-73.9136,Private room,75,1,11,2019-07-01,4.52,3,88 +34065083,"Spacious brownstone in peaceful, shady block",9623313,Serafina,Brooklyn,Cobble Hill,40.68518,-73.99709,Entire home/apt,195,7,0,,,1,13 +34065601,Spacious & Modern Room in a Prime Location!,215532980,Isa & Bruno,Queens,Ridgewood,40.70384,-73.91137,Private room,75,1,11,2019-06-25,4.65,3,68 +34065608,New Apartment & Newly Furnished in Prime Location!,215532980,Isa & Bruno,Queens,Ridgewood,40.70391,-73.91153,Private room,75,1,14,2019-07-07,5.83,3,88 +34065631,"Bright 1BR in Heart of Williamsburg, Brooklyn",5452701,Jean-Marc,Brooklyn,Williamsburg,40.71921,-73.95628,Entire home/apt,100,3,0,,,1,6 +34065823,"*female only* cozy room, summer sublet",32736976,Elien,Brooklyn,Sunset Park,40.64296,-74.0056,Private room,24,60,0,,,1,71 +34065832,"Cozy, peaceful, and cute.",244443448,Ireen,Brooklyn,Bay Ridge,40.63233,-74.01796,Private room,60,31,0,,,1,90 +34067204,Cosy bedroom in Williamsburg,229469300,Alisa,Brooklyn,Williamsburg,40.70785,-73.94898,Private room,60,2,3,2019-05-24,1.25,2,5 +34068735,Perfect 2 Bedroom Apartment in Hot Spot,85539820,Yorick,Manhattan,East Village,40.72783,-73.98015,Entire home/apt,250,5,3,2019-06-17,1.73,1,263 +34071098,3BR Times Square! Great Location! W/D!,253789998,Kim,Manhattan,Hell's Kitchen,40.76303,-73.98894,Entire home/apt,149,30,2,2019-05-23,0.90,1,148 +34076756,A light filled historical,73324719,Scott,Queens,Rockaway Beach,40.59009,-73.81042,Entire home/apt,126,7,0,,,1,58 +34079720,Rare find!! Stylish duplex top floor all yours!,29044900,Tiffany,Brooklyn,Williamsburg,40.71616,-73.95552,Private room,130,2,10,2019-07-01,3.95,1,159 +34081178,Central Park-Time Square-All Major Subways,2161203,Bassema,Manhattan,Hell's Kitchen,40.76601,-73.98414,Entire home/apt,190,2,5,2019-06-30,2.08,1,10 +34082053,Large basement-level studio,141146473,Rosa,Brooklyn,Prospect-Lefferts Gardens,40.66248,-73.95407,Entire home/apt,90,2,4,2019-06-16,2.11,1,27 +34082442,Beautiful Clean & Quiet Room! Rm#3,11674837,Christopher,Queens,Ridgewood,40.70477,-73.90943,Private room,69,1,6,2019-06-24,3.10,3,179 +34082709,Extra Luxury Loft with private elevator & terrace,257365536,Oleg,Manhattan,Hell's Kitchen,40.75634,-73.99445,Entire home/apt,945,2,2,2019-05-09,0.94,1,292 +34083914,"PERFECT LOCATION, LUSH AND CHIC DOWNTOWN ROOM",11306615,Matt,Manhattan,Chinatown,40.71727,-74.0004,Private room,155,2,3,2019-06-12,1.23,2,50 +34084341,Boutique 4 Bedroom/2 Bath Home by Central Park,5325719,Mike,Manhattan,Upper West Side,40.80181,-73.96683,Entire home/apt,450,5,8,2019-06-28,4.29,1,123 +34084476,Cozy Studio in Gramercy with Private Backyard,228946399,Jamie,Manhattan,Kips Bay,40.73863,-73.97989,Entire home/apt,178,1,7,2019-06-06,3.23,1,0 +34085029,211 east34 st Room 6,255431206,Mohammed,Brooklyn,East Flatbush,40.65132,-73.9452,Private room,40,7,1,2019-05-19,0.58,9,106 +34085087,Huge Townhouse in New York City,221213143,David,Manhattan,Kips Bay,40.74142,-73.98219,Entire home/apt,690,1,2,2019-06-14,1.87,9,287 +34085559,211 east 34 Room 5 ( 8 by 10 ),255431206,Mohammed,Brooklyn,East Flatbush,40.65144,-73.94489,Private room,32,7,0,,,9,126 +34085654,The Library,7910657,Gretchen,Brooklyn,Park Slope,40.67245,-73.97365,Entire home/apt,250,2,3,2019-06-23,1.34,1,175 +34085766,211 east 34 Room 7,255431206,Mohammed,Brooklyn,East Flatbush,40.65226,-73.94521,Private room,35,7,2,2019-05-18,0.98,9,131 +34085929,211 East 34 St Room 8 (10 by 12),255431206,Mohammed,Brooklyn,East Flatbush,40.65279,-73.946,Private room,35,7,4,2019-06-28,2.11,9,152 +34086188,Cozy room in Harlem next to 2/3 train,44919396,Forest,Manhattan,Harlem,40.81808,-73.93671,Private room,45,1,5,2019-06-06,2.38,1,0 +34086213,"Spacious, Bright BK Two-Bed with Vintage Flare",257171785,Matt,Brooklyn,Williamsburg,40.71233,-73.95318,Entire home/apt,295,2,1,2019-06-02,0.81,1,0 +34086656,Sonder | Stock Exchange | Gorgeous 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70649,-74.01217,Entire home/apt,244,2,2,2019-06-17,0.83,327,260 +34086800,Sonder | Stock Exchange | Divine 2BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70724,-74.01085,Entire home/apt,409,2,3,2019-06-19,1.29,327,325 +34086944,Sonder | Stock Exchange | Original 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70712,-74.01201,Entire home/apt,185,2,2,2019-06-07,1.28,327,291 +34087005,Comfort Haven,245960335,Kern,Queens,Jamaica,40.68055,-73.78263,Private room,95,1,0,,,1,180 +34087090,Sonder | Stock Exchange | Gorgeous 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70588,-74.01214,Entire home/apt,230,2,6,2019-06-18,2.50,327,285 +34087749,Sonder | 116 John | Laid-Back Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70803,-74.00639,Entire home/apt,100,29,0,,,327,325 +34087750,Sonder | 116 John | Ideal 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.00499,Entire home/apt,164,29,0,,,327,328 +34088667,"One master bedroom near Q10,Q24 BUS STOP, A train",179951095,Balwinder,Queens,Richmond Hill,40.69035,-73.82238,Private room,78,1,14,2019-07-05,5.83,1,356 +34088861,Quiet Studio Apartment Near Prospect Park + Subway,44914887,Theo,Brooklyn,Flatbush,40.64692,-73.96696,Entire home/apt,105,3,5,2019-07-05,5,1,51 +34088961,14th Street Oasis,214148143,Amber,Manhattan,Stuyvesant Town,40.7311,-73.9775,Private room,165,3,9,2019-06-05,3.70,1,90 +34089777,Bright and Artful 2-Bedroom in Fort Greene,451777,Masha,Brooklyn,Fort Greene,40.68557,-73.97199,Entire home/apt,250,6,0,,,1,12 +34089853,Quaint And Cozy Stop Over,242296495,Angela,Brooklyn,East Flatbush,40.64979,-73.93299,Private room,28,1,13,2019-07-07,5.49,3,49 +34090389,Iconic New York penthouse with wraparound terrace,22123114,Michael,Manhattan,Midtown,40.75797,-73.96356,Entire home/apt,225,14,1,2019-06-11,1,1,240 +34090662,BedStuy Private Room (M1),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.69023,-73.93063,Private room,54,1,5,2019-07-02,2.46,8,27 +34091327,Beautiful 1 bedroom near to Time’s Square,34689714,Maria,Manhattan,Hell's Kitchen,40.76512,-73.98674,Entire home/apt,240,1,0,,,5,365 +34092210,"BEACH 2 BDR, 2 BTH NEW YORK, BRIGHTON BEACH",181356989,Kseniya,Brooklyn,Brighton Beach,40.57647,-73.96696,Entire home/apt,275,2,1,2019-06-30,1,2,56 +34093093,Private entrance with views. 25 mins to Manhattan,20087667,Mike,Queens,Astoria,40.76962,-73.93146,Private room,55,1,15,2019-06-29,6.00,1,17 +34093881,A Cute and cozy two bedrooms apartment.,253448038,Ramon,Manhattan,Hell's Kitchen,40.75618,-73.99321,Entire home/apt,250,3,8,2019-07-01,4.07,2,61 +34094976,Sweet Home near Columbia,245014802,佳,Manhattan,Morningside Heights,40.80495,-73.96439,Private room,50,60,0,,,1,72 +34096002,LIC luxury building with indoor pool and lounge,179875332,Tracy,Queens,Long Island City,40.74745,-73.93656,Private room,135,3,1,2019-05-22,0.63,1,0 +34096795,Boutique room for families w/ rooftop & breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75566,-73.99486,Private room,370,1,3,2019-06-21,1.55,5,290 +34096836,An urban retreat from the city’s hustle and bustle,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75603,-73.99511,Private room,430,1,4,2019-05-20,1.97,5,287 +34096837,Refined luxury suite with relaxed residential vibe,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75663,-73.99563,Private room,159,1,1,2019-06-21,1,5,292 +34096839,Near Hudson Yards & Times Square w/ breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.7572,-73.99482,Private room,390,1,21,2019-06-22,10.86,5,299 +34096841,Sleek Times Square suite with rooftop & breakfast,257005399,Cassa Times Square Hotel,Manhattan,Hell's Kitchen,40.75702,-73.99382,Private room,410,1,1,2019-05-10,0.50,5,294 +34099071,Entire 3 Bedroom in Central Chelsea Location,77080918,Patrick,Manhattan,Chelsea,40.74942,-73.99468,Entire home/apt,265,3,5,2019-06-16,2.42,1,164 +34101162,Spacious with amazing views 1 bedroom apartment,22553662,Christos,Brooklyn,Clinton Hill,40.69338,-73.96751,Entire home/apt,150,7,3,2019-06-14,2.14,1,0 +34103144,Manhattan room near Apollo. 5 mins walk to subway!,137358866,Kazuya,Manhattan,Harlem,40.81622,-73.94276,Private room,38,30,0,,,103,247 +34107684,Cozy Bed-Stuy 1BR- easy access to Manhattan,12162311,Corey,Brooklyn,Bedford-Stuyvesant,40.69302,-73.93285,Entire home/apt,101,1,1,2019-05-17,0.57,1,167 +34108545,Sunny top floor 1BR in Victorian Brooklyn,218940337,Julie,Brooklyn,Flatbush,40.63981,-73.96534,Entire home/apt,120,90,0,,,1,49 +34109471,New HUGE gorgeous 1 BR next to Prospect Park!,12222242,Sidrah,Brooklyn,Prospect-Lefferts Gardens,40.66072,-73.95772,Entire home/apt,150,2,2,2019-06-16,0.92,1,0 +34109512,Beautiful Apartment in Luxury building,156853666,Helen!,Manhattan,Hell's Kitchen,40.7689,-73.98993,Entire home/apt,225,3,8,2019-06-14,4.29,1,49 +34109917,Livingroom for you staying,257555082,Mr.&Mrs.,Queens,Jackson Heights,40.75308,-73.89419,Shared room,55,2,0,,,1,270 +34110599,The Green Place I,101790764,Zabi,Queens,Long Island City,40.74764,-73.9482,Entire home/apt,199,2,7,2019-06-22,3.28,2,170 +34111158,Delightful Lower East Side Two Bedroom Apartment,183573239,Janelle,Manhattan,Chinatown,40.71655,-73.99224,Entire home/apt,200,1,5,2019-07-01,2.31,1,11 +34111540,Big Bedroom near Columbia University and 1 line,90332306,Haylee,Manhattan,Upper West Side,40.80383,-73.96724,Private room,59,3,4,2019-06-09,2.61,1,5 +34111820,Quiet Uptown Stay in Historic Building,29740456,Giovanny,Manhattan,Washington Heights,40.83298,-73.93874,Private room,75,2,4,2019-06-04,1.90,1,0 +34112635,CRASH PAD near LGA JFK,21216008,Jose,Queens,Jackson Heights,40.75078,-73.87949,Shared room,28,1,4,2019-06-08,2.11,4,354 +34113802,"Brand New, Beautiful LES Apartment",238779678,Dustin,Manhattan,East Village,40.7272,-73.98993,Private room,73,30,0,,,9,364 +34115136,Sonder | Stock Exchange | Gorgeous 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70756,-74.01229,Entire home/apt,210,2,3,2019-06-22,3,327,302 +34116007,Sky luxury building 1b1b summer rental,217642173,Xiangjun,Manhattan,Hell's Kitchen,40.76229,-73.99994,Private room,199,30,0,,,2,140 +34116575,"Sunny, Quiet, Green Studio near Central Park & MET",42144338,Jessie,Manhattan,Upper East Side,40.7786,-73.95028,Entire home/apt,120,6,2,2019-06-15,1.36,1,9 +34116613,Sonder | 116 John | Restful Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70845,-74.00472,Entire home/apt,164,29,0,,,327,327 +34116742,Old style Bk,257602124,Carlo,Brooklyn,Sunset Park,40.64383,-74.02051,Private room,45,4,0,,,1,179 +34117228,Whimsical music room in an Artsy W’burg 3br,6645096,Wendy,Brooklyn,Williamsburg,40.71996,-73.9414,Private room,78,2,2,2019-07-03,2,1,5 +34117732,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76654,-73.95825,Private room,38,30,0,,,6,39 +34118020,Amazing Area - Quick walk to Metro - Spacious!,161324994,Ashley At Bedly,Manhattan,East Harlem,40.791,-73.94807,Private room,38,30,1,2019-05-31,0.77,6,44 +34118644,Sonder | Stock Exchange | Sleek 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7056,-74.0119,Entire home/apt,256,2,4,2019-06-14,2.67,327,293 +34118872,Sonder | Stock Exchange | Superior 3BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.01105,Entire home/apt,468,2,0,,,327,255 +34118882,Sonder | Stock Exchange | Superior 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.70632,-74.01073,Entire home/apt,229,2,3,2019-06-08,2.09,327,348 +34119451,Amazing 3BR private triplex in historic townhouse!,5173736,Yuliya,Manhattan,Gramercy,40.73499,-73.98875,Entire home/apt,1000,3,7,2019-06-10,3.09,1,286 +34119485,Bright and Spacious Apartment in Bay Ridge,29094579,Ruby,Brooklyn,Fort Hamilton,40.61642,-74.02397,Entire home/apt,89,3,4,2019-06-23,1.56,1,21 +34120117,The Grand Blue Hideaway Near The Park,253227041,Karen,Brooklyn,Crown Heights,40.6725,-73.93079,Entire home/apt,150,3,11,2019-07-01,5.16,1,142 +34120534,"Sunlit Apartment in the ""Friends Building""",128905420,Vaughn,Manhattan,West Village,40.73195,-74.00626,Entire home/apt,500,2,3,2019-06-14,2.31,1,82 +34120696,Fully renovated 1 bedroom apartment,36205885,Eddy,Queens,Ridgewood,40.70737,-73.91138,Entire home/apt,74,1,16,2019-06-30,7.16,3,351 +34120717,Sonder | Stock Exchange | Divine 1BR + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70736,-74.0125,Entire home/apt,217,2,4,2019-06-21,1.79,327,272 +34120798,Sonder | Stock Exchange | Divine Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70755,-74.01116,Entire home/apt,203,2,7,2019-06-21,3.13,327,328 +34120977,"Chic, Spacious, Bright BK 2-Bedroom w/ Backyard",257576232,Russell,Brooklyn,Williamsburg,40.70992,-73.94969,Entire home/apt,305,2,14,2019-06-30,6.46,1,296 +34121613,"Private room in spacious, cozy Brooklyn home.",3842238,Beverly,Brooklyn,Bushwick,40.69013,-73.91177,Private room,65,1,1,2019-07-01,1,1,88 +34121885,NYC Summer Housing,110319331,Xinting,Manhattan,Upper East Side,40.77132,-73.94829,Entire home/apt,127,5,4,2019-06-29,1.74,1,192 +34121944,"Spacious, studio w/ great lighting in heart of BK",17361902,Shauna,Brooklyn,Crown Heights,40.67114,-73.94921,Entire home/apt,99,3,1,2019-05-17,0.57,1,1 +34122318,"Amazing Area - Free Laundry, Cleaning & WiFi!",161324994,Ashley At Bedly,Manhattan,Upper East Side,40.77348,-73.94601,Private room,37,30,1,2019-07-01,1,6,76 +34122992,Cozy big room Perfect for 2 adults and an infant,123506305,Kisha,Queens,Springfield Gardens,40.66714,-73.77664,Private room,50,1,5,2019-06-01,2.34,3,364 +34123251,Charming Park Slope 2BR (15 Minutes to Manhattan!),257629980,William,Brooklyn,Gowanus,40.66907,-73.99221,Entire home/apt,195,2,6,2019-07-04,3.46,1,330 +34123769,private room in new luxury building,257656654,Viola,Brooklyn,Prospect-Lefferts Gardens,40.65629,-73.95177,Private room,36,120,0,,,1,365 +34124049,Private bedroom located in Downtown Manhattan,257599351,Sandra And Katharina,Manhattan,Chinatown,40.71703,-73.99538,Private room,120,2,8,2019-07-01,3.69,1,34 +34124075,Stay with a native New Yorker!,257585150,Lynne,Manhattan,Upper East Side,40.77167,-73.95529,Private room,120,1,2,2019-06-30,2,1,311 +34124100,2 Bedroom/2 Bath Hell’s Kitchen Gem with views.,5556564,Stephen,Manhattan,Hell's Kitchen,40.76676,-73.99146,Entire home/apt,499,3,3,2019-06-23,2.09,1,1 +34124248,Emergency sleeping for backpacking or Couchsurfer,38483415,Florentino,Manhattan,East Harlem,40.80084,-73.94514,Shared room,35,1,9,2019-06-25,3.86,4,358 +34124328,"Lovely stay near LGA. Lux condo RM, private bath!",137358866,Kazuya,Queens,Woodside,40.74152,-73.90314,Private room,67,30,1,2019-05-17,0.57,103,1 +34124683,Freedom Tower View - pvt Br. Queen size bed,10962595,Rati,Brooklyn,Fort Hamilton,40.61859,-74.03644,Private room,60,28,0,,,1,263 +34124720,"Private Bedroom, LGBTQ Friendly",6665872,Jeremy,Manhattan,Hell's Kitchen,40.7631,-73.98963,Private room,75,2,15,2019-07-03,6.34,1,33 +34124949,"Apartment for rent in EV, ten min from WSP",257668187,Noah,Manhattan,East Village,40.72754,-73.99025,Private room,63,30,1,2019-05-15,0.55,1,18 +34125094,★INCREDIBLE LOCATION★HELLO TIMES SQ & CENTRAL PARK,257188989,Kledi,Manhattan,Midtown,40.76413,-73.97691,Entire home/apt,189,2,10,2019-06-30,5.56,1,36 +34125485,Cozy lil room in the coolest Brooklyn neighborhood,97322120,María Gabriela,Brooklyn,Bushwick,40.69026,-73.90689,Private room,80,4,0,,,1,158 +34125558,"Lux RM near 61St Station, laundry elevator & more!",137358866,Kazuya,Queens,Woodside,40.74123,-73.90152,Private room,59,30,0,,,103,247 +34126611,"amazing, homey, plant-filled and spacious retreat",160118608,Jenny,Brooklyn,Williamsburg,40.7071,-73.94634,Private room,65,5,1,2019-04-24,0.39,1,35 +34126627,Woodside condo room close to Midtown / LGA.,137358866,Kazuya,Queens,Woodside,40.74165,-73.90155,Private room,59,30,1,2019-06-15,1,103,260 +34126672,ZEN LIVING RM CLOSE 2 COLUMBIA UNI & CENTRAL PRK!,161061302,Carol,Manhattan,Upper West Side,40.80244,-73.96592,Shared room,50,1,1,2019-05-08,0.48,2,363 +34126874,suit No.1,257683179,H Ai,Queens,Flushing,40.75139,-73.81328,Private room,55,1,3,2019-06-29,2.81,6,75 +34127215,Beautiful Williamsburg Townhouse 4 bed / 2.5 bath,257685807,Alejandra,Brooklyn,Williamsburg,40.70927,-73.96149,Entire home/apt,650,2,0,,,1,157 +34136999,"Homey Tribeca Studio w/ Pool, Roofdeck, Gym & View by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71691,-74.00511,Entire home/apt,267,30,0,,,232,283 +34137207,"Stunning Chelsea 1BR w/ Doorman, Roofdeck, BBQs & Lounge by Blueground",107434423,Blueground,Manhattan,Chelsea,40.74269,-73.99911,Entire home/apt,316,30,0,,,232,323 +34138042,"Hip FiDi Studio w/ Resident's Bar, Golf Simulator, Pro Gym by Blueground",107434423,Blueground,Manhattan,Financial District,40.7066,-74.00872,Entire home/apt,229,30,0,,,232,333 +34138100,"Lux FiDi 1BR w/ Resident's Bar, Golf Simulator, Pro Gym, by Blueground",107434423,Blueground,Manhattan,Financial District,40.70586,-74.00904,Entire home/apt,262,30,0,,,232,325 +34139763,Quiet & Modern Serene Bedroom near J subway train,5680111,Timothy,Brooklyn,Bushwick,40.68603,-73.91399,Private room,63,12,2,2019-05-17,1.00,7,130 +34142194,QUIET SPACIOUS BEDROOM IN THE HEART OF MANHATTAN,48711094,Alex,Manhattan,Midtown,40.74607,-73.98372,Private room,95,2,10,2019-06-23,4.55,1,0 +34142214,"Cozy home, away from home. 15 mins from downtown.",196476281,Damien,Bronx,Concourse,40.83197,-73.9212,Private room,45,1,4,2019-06-01,1.71,2,318 +34142272,Chic Private Room | Only 1 Stop from Manhattan!,257773717,Lydia,Brooklyn,Williamsburg,40.71041,-73.96327,Private room,58,30,0,,,5,341 +34143050,"Newly Renovated, Unbeatable Location Private Room",257773717,Lydia,Brooklyn,Williamsburg,40.71037,-73.96317,Private room,58,30,0,,,5,338 +34143234,"Large Beautiful Room in Prime BK, 10 Min to City!!",257773717,Lydia,Brooklyn,Williamsburg,40.70944,-73.96472,Private room,58,30,0,,,5,342 +34143280,Clean & Cozy Guestroom in Harlem-Heights,42767903,Shara,Manhattan,Washington Heights,40.83248,-73.94177,Private room,50,3,1,2019-06-21,1,1,14 +34143463,"Feel-Good Decor, Lux Private Room & Great Location",257773717,Lydia,Brooklyn,Williamsburg,40.70887,-73.96249,Private room,58,30,0,,,5,333 +34143632,"Big, Bright, Beautiful Roommate Share in Prime BK",257773717,Lydia,Brooklyn,Williamsburg,40.70954,-73.96284,Private room,58,30,0,,,5,308 +34144954,Spacious Modern Flat in the Heart of Williamsburg,93090420,Patrick,Brooklyn,Williamsburg,40.71327,-73.96155,Private room,100,1,0,,,1,66 +34145824,Peaceful and Cozy Room in Bushwick,157207818,Vanessa,Brooklyn,Bushwick,40.70044,-73.9243,Private room,63,1,7,2019-06-30,3.28,1,22 +34146260,Crash Pad in Jackson Heights,153371127,Nancy,Queens,Jackson Heights,40.75023,-73.87772,Shared room,27,1,4,2019-06-10,2.73,2,355 +34146835,Massive Private Bedroom in Brooklyn Heights,2119428,Ori,Brooklyn,Brooklyn Heights,40.69699,-73.9936,Private room,125,3,9,2019-07-05,4.58,1,252 +34147375,Sonder | Stock Exchange | Sunny 3BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70776,-74.01239,Entire home/apt,470,2,3,2019-06-23,1.55,327,237 +34147683,Studio Apt in the Heart of Flatiron,18149022,Samantha,Manhattan,Flatiron District,40.73996,-73.98972,Entire home/apt,225,4,0,,,1,365 +34147709,Sonder | Stock Exchange | Brilliant 1BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70744,-74.01048,Entire home/apt,229,2,2,2019-06-23,0.82,327,331 +34147733,Sonder | Stock Exchange | Stunning 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70711,-74.01044,Entire home/apt,470,2,4,2019-06-14,2.50,327,242 +34147828,Sonder | Stock Exchange | Brilliant 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.01248,Entire home/apt,228,2,1,2019-05-05,0.46,327,353 +34148267,"Stunning Private Apt, Perfect Location Premium Bed",14552154,Leslie,Manhattan,Midtown,40.74411,-73.98209,Entire home/apt,239,3,5,2019-06-28,2.50,4,319 +34148700,Spacious Room in 3 Bedroom BK Apt!,190688437,Nirma,Brooklyn,Bushwick,40.69072,-73.91891,Private room,40,30,0,,,1,189 +34148819,Private Room In Little Italy,236839319,Brooke,Manhattan,Little Italy,40.71803,-73.99835,Private room,59,30,0,,,3,35 +34150118,Cool newly renovated 1BR Apt overlooking Park,40875021,Scott,Manhattan,East Harlem,40.79325,-73.93386,Entire home/apt,150,1,2,2019-05-27,1.22,3,178 +34150120,2 bed.Full apartment. L Train.15 min away from NYC,257832461,Stephanie,Brooklyn,Bushwick,40.70247,-73.92671,Entire home/apt,99,1,32,2019-07-05,13.33,1,77 +34150332,Adorable room 2,34689714,Maria,Manhattan,Hell's Kitchen,40.7667,-73.98829,Private room,99,1,0,,,5,365 +34150501,Amazing 3BR Apartment - Incredible Location,174313318,Plamen,Manhattan,Chelsea,40.74781,-73.99436,Entire home/apt,380,3,1,2019-05-28,0.71,1,296 +34150631,conveniently located to highway !,257836545,Floriane,Brooklyn,Canarsie,40.63117,-73.88688,Entire home/apt,125,1,0,,,1,360 +34150840,Brooklyn Sunny Apartment,25086874,Mono,Brooklyn,Bedford-Stuyvesant,40.69215,-73.94051,Private room,50,1,1,2019-07-02,1,1,51 +34150989,CHARMING APT. IN MANHATTAN! 2 FULL BATH & 7 BEDS,257838704,Dave,Manhattan,Washington Heights,40.84237,-73.93914,Entire home/apt,300,5,6,2019-06-16,2.50,1,252 +34151215,Bright and Artsy 2 Bedroom Apartment,257810280,Leslie,Brooklyn,Bedford-Stuyvesant,40.67935,-73.93715,Entire home/apt,100,1,5,2019-07-08,5,1,0 +34151410,Cozy apartment in a safe neighborhood,257842396,Jalal,Brooklyn,Greenpoint,40.72468,-73.94042,Entire home/apt,200,2,1,2019-06-10,1,1,0 +34152348,Awesome 3 bedroom apartment in best location,29092144,Katrin,Manhattan,Chelsea,40.7465,-73.9981,Entire home/apt,320,15,2,2019-05-16,0.97,1,299 +34152598,Hip budget friendly room 20 min from Manhattan!,34269923,Annabella,Brooklyn,Bushwick,40.69718,-73.91165,Private room,52,1,7,2019-07-01,4.77,1,0 +34152864,Luxury 2 Bedrooms 2 bathrooms High-rise,252211149,Anna,Manhattan,Kips Bay,40.7443,-73.97519,Entire home/apt,304,1,9,2019-06-22,4.66,1,127 +34153345,★ Discounted!!★ NEAR TIMES SQUARE,229603136,Pinki,Manhattan,Hell's Kitchen,40.76368,-73.98881,Entire home/apt,239,2,6,2019-06-16,3.46,1,335 +34153647,"Beautiful private Master Bedroom in +Bushwick!",2008510,Ben,Brooklyn,Bushwick,40.70395,-73.92585,Private room,65,4,3,2019-05-25,1.43,1,75 +34153683,Sun Filled Studio In the Heart of the East Village,61086446,Brian,Manhattan,East Village,40.72555,-73.98499,Entire home/apt,300,4,1,2019-05-19,0.59,1,0 +34153891,Private Room in a Brand New Apt / Quiet Building,257866899,Carlos,Manhattan,Harlem,40.81864,-73.94108,Private room,60,4,6,2019-06-24,2.81,1,212 +34154569,NEW APT - 15 MINS TO MANHATTAN!,6004860,Reza,Queens,Woodside,40.74807,-73.9028,Entire home/apt,79,30,0,,,1,333 +34154797,Private Room Near Staten Island Ferry,204823078,Maria,Staten Island,South Beach,40.58802,-74.08855,Private room,50,2,4,2019-06-21,1.85,2,80 +34155626,Luxury UWS 2 bed 1.5 bath Summer Sublet,14929050,Nuisha,Manhattan,Upper West Side,40.78893,-73.97591,Entire home/apt,350,20,0,,,1,33 +34156010,Amazing Luxury Apt in the middle of Manhattan,257677041,Elsen,Manhattan,Kips Bay,40.7421,-73.97404,Entire home/apt,539,1,13,2019-07-06,7.36,1,233 +34156161,Chelsea Luxury & Cozy 2 Bedroom Apartment,257671905,Evelyn,Manhattan,Chelsea,40.74301,-73.9937,Entire home/apt,249,1,8,2019-06-22,4.80,1,131 +34156292,Charming and Elegant Apartment by Central Park,257888723,Francesco,Manhattan,Upper East Side,40.78563,-73.95396,Entire home/apt,250,4,2,2019-07-01,2,1,297 +34156436,Stunning 2 Bedrooms Apt Central Park West,257891606,Paola,Manhattan,Upper West Side,40.78198,-73.97571,Entire home/apt,249,1,13,2019-07-04,7.22,1,29 +34156769,LOW PRICE! up to 4+ people-Near LGA / JFK AIRPORT,246194760,Noel,Queens,East Elmhurst,40.76021,-73.88301,Private room,49,1,3,2019-06-14,2.14,4,207 +34157056,Top Of New York City Luxury 2Bedroom -with Terrace,253328272,Dani,Manhattan,Murray Hill,40.74511,-73.97407,Entire home/apt,499,1,1,2019-06-08,1,1,216 +34157717,Private Apt w/2 Queen beds close to NY Attractions,110539055,Manny,Bronx,Williamsbridge,40.87699,-73.85366,Entire home/apt,87,2,5,2019-06-30,5,2,298 +34160208,The Perfect 2 Bedroom Designer Flat in L.E.S.,20377891,B.,Manhattan,Chinatown,40.71538,-73.99004,Entire home/apt,250,1,1,2019-06-20,1,2,92 +34160917,The Perfect Chic 2BR/1BA Designer Flat in L.E.S.,20377891,B.,Manhattan,Lower East Side,40.71456,-73.98986,Entire home/apt,250,1,1,2019-07-01,1,2,58 +34165293,Clean w/ lovely interiors. Nice loc Woodside room!,137358866,Kazuya,Queens,Woodside,40.74654,-73.90776,Private room,60,30,0,,,103,215 +34167620,"comfortable room, 25min from manhattan",28096614,Bruno,Queens,Woodside,40.74298,-73.90582,Private room,50,2,4,2019-06-27,1.88,2,266 +34168420,SUMMER DEAL! Duplex: 2 Bedrooms with Private Yard,257974128,Mark & Olivia,Manhattan,Upper East Side,40.78473,-73.94884,Entire home/apt,350,4,2,2019-06-24,1.87,1,191 +34169395,Gorgeous Tribeca 2BR w/ Amazing city views + Gym by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71633,-74.00521,Entire home/apt,426,30,0,,,232,321 +34169778,22min from Manhattan,28096614,Bruno,Queens,Woodside,40.74249,-73.90603,Private room,50,2,10,2019-07-02,4.76,2,257 +34170097,Cozy 1 Bedroom Close To Manhattan,86196529,Jordan,Brooklyn,Williamsburg,40.70313,-73.93837,Entire home/apt,101,2,4,2019-06-18,1.88,1,75 +34172085,Spacious private bedroom in Manhattan.,257993786,Ronnie,Manhattan,Inwood,40.86473,-73.92641,Private room,60,1,9,2019-07-07,6.28,1,352 +34172128,Two bedrooms/ 1.5 restrooms in welcoming home!,238733096,Roy,Queens,Richmond Hill,40.68201,-73.83023,Private room,100,2,0,,,2,160 +34172912,Beautiful apartment in prime Soho NYC,16862745,Andrea,Manhattan,Greenwich Village,40.72786,-74.00158,Entire home/apt,250,2,8,2019-06-21,3.69,1,310 +34173196,"Private Queen bedroom, wonderful view",161472665,Melissa,Manhattan,East Village,40.72729,-73.97618,Private room,250,1,2,2019-05-24,1.18,1,178 +34173579,Quiet and cozy 1 bedroom apartment,78261482,Petr,Manhattan,Hell's Kitchen,40.76085,-73.99222,Entire home/apt,168,3,2,2019-07-01,1.13,2,4 +34174357,Beautiful private room in Manhattan,245886857,Djily,Manhattan,Harlem,40.81249,-73.94175,Private room,90,4,0,,,2,365 +34175118,Luxury Soho Executive Suite,61391963,Corporate Housing,Manhattan,Little Italy,40.7191,-73.99671,Entire home/apt,150,30,0,,,91,312 +34175216,Beautiful room in Manhattan,245886857,Djily,Manhattan,Harlem,40.81312,-73.94215,Private room,70,5,0,,,2,364 +34175707,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75923,-73.98669,Entire home/apt,222,29,0,,,327,221 +34176066,Airy Bushwick Home with Back Yard,743732,Jaxyn,Brooklyn,Bushwick,40.70043,-73.92266,Entire home/apt,70,30,0,,,1,0 +34176229,***Awesome bedroom in the heart of Manhattan***,34782150,Harold,Manhattan,Hell's Kitchen,40.76691,-73.98719,Private room,200,2,0,,,1,0 +34176788,A Little Sumptin' on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.67878,-73.9172,Private room,48,1,22,2019-07-07,9.85,2,236 +34177117,Sonder | The Biltmore | 1BR,219517861,Sonder (NYC),Manhattan,Theater District,40.76118,-73.98635,Entire home/apt,699,29,0,,,327,365 +34177609,MODERN APT WITH AN AMAZING CITY VIEW IN MIDTOWN,82537581,Gabriel,Manhattan,Hell's Kitchen,40.76802,-73.99298,Entire home/apt,249,5,2,2019-07-01,2,1,364 +34177796,Blocks to the High Line * West Village Home for 10,63393553,S,Manhattan,West Village,40.73855,-74.00125,Entire home/apt,577,2,2,2019-06-06,1.30,1,273 +34178190,Room in Bright Authentic New York Style Apartment,204806146,Broque,Manhattan,Inwood,40.86594,-73.92487,Private room,46,1,7,2019-06-30,3.28,1,143 +34179115,Stunning View of Manhattan with Balcony,141510360,Diego,Brooklyn,Park Slope,40.67018,-73.98752,Private room,50,2,2,2019-05-27,1.22,1,102 +34179924,Comfy Room in the Heart of Queens,258058607,Raul,Queens,Woodside,40.74444,-73.896,Private room,125,1,0,,,1,90 +34180216,Comfy Jfk Room to crash,232251881,Lakshmee,Queens,Jamaica,40.66794,-73.78483,Private room,39,1,15,2019-07-04,6.25,8,0 +34180340,Sunny & Spacious Room,181233778,Aishah,Bronx,Belmont,40.85595,-73.88519,Private room,27,30,0,,,1,68 +34180413,Great 3 Bedroom Apartment - Incredible Location,257282534,Martina,Manhattan,Chelsea,40.74618,-73.9963,Entire home/apt,380,25,0,,,1,353 +34180443,"BRIGHT, chic, Huge room with PRIVATE BATHROOM",44260443,Bah,Brooklyn,Bedford-Stuyvesant,40.68268,-73.93055,Private room,75,1,12,2019-06-29,5.37,1,60 +34181077,Penthouse Spectacular NYC Skyline Views,258057633,Mo,Manhattan,Kips Bay,40.74375,-73.97372,Entire home/apt,499,1,10,2019-07-05,6.38,1,194 +34181176,"Flat at EMPIRE STATE BUILDING! +doorman & rooftop",53720018,Vivi,Manhattan,Midtown,40.74798,-73.987,Entire home/apt,299,2,0,,,1,0 +34181264,Room 2. Bunk beds available for two adults.,251859047,Errol,Brooklyn,Crown Heights,40.67558,-73.9231,Private room,65,2,3,2019-07-01,2.09,3,126 +34181609,"Huge, Bright Room in Prime Williamsburg",57247607,Iman,Brooklyn,Williamsburg,40.71808,-73.95839,Private room,200,2,0,,,1,69 +34181682,Sonder | The Biltmore | Chic 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.76152,-73.98587,Entire home/apt,157,29,0,,,327,340 +34181803,"Safe & lively, tons of restaurants & bars nearby!",221839786,Seira,Manhattan,Hell's Kitchen,40.76417,-73.99334,Private room,145,1,6,2019-06-30,4.09,1,287 +34182096,Architecturally Designed East Village Oasis,18327084,Sheelagh,Manhattan,East Village,40.72495,-73.97679,Entire home/apt,240,4,0,,,1,83 +34182523,Gorgeous Super Large 2 Bedroom apartment,257982308,Bessi,Manhattan,Upper West Side,40.78422,-73.97754,Entire home/apt,299,1,5,2019-06-22,3.13,1,61 +34182985,Adorable Room w/Gym Access-Hamilton Hts Manhattan,4592344,Ally,Manhattan,Harlem,40.82261,-73.95544,Private room,53,3,1,2019-06-04,0.86,1,74 +34183825,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75942,-73.98727,Entire home/apt,699,29,0,,,327,332 +34183895,Sonder | Stock Exchange | Intimate 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Financial District,40.7063,-74.01254,Entire home/apt,247,2,4,2019-06-23,2.35,327,232 +34184572,3 Bedroom Apartment in Midtown - Amazing Deal,258097158,Kismet,Manhattan,Kips Bay,40.7436,-73.9768,Entire home/apt,311,1,12,2019-07-03,6.21,1,220 +34184764,"NEW - STEPS TO SUBWAY, NO STOP TO MANHATTAN!",110375726,Dane,Queens,Woodside,40.74625,-73.90311,Entire home/apt,99,30,1,2019-05-31,0.77,1,333 +34184826,Private big room in upper east side,45317760,Mohammed,Manhattan,Upper East Side,40.76915,-73.95515,Private room,60,14,3,2019-06-02,2.25,3,29 +34184923,Cozy 2 Bedroom in Luxury Building,258057196,Linda,Manhattan,Murray Hill,40.74624,-73.9725,Entire home/apt,299,1,8,2019-06-26,4.44,1,93 +34186291,Smoke n Mirrors,10415735,Angie,Queens,Howard Beach,40.66144,-73.85762,Entire home/apt,250,1,1,2019-06-29,1,2,346 +34186868,Bianchi Soho,150878611,Yuri,Manhattan,Nolita,40.72169,-73.99642,Entire home/apt,150,30,11,2019-06-22,4.65,1,40 +34191165,Top 3BR Apartment in THE BEST LOCATION,141194319,Cathy,Manhattan,Chelsea,40.75338,-73.99822,Entire home/apt,370,12,0,,,1,320 +34194218,Cozy studio located in midtown west,2086035,Piyawan,Manhattan,Hell's Kitchen,40.75526,-73.9945,Entire home/apt,195,1,9,2019-07-01,6.14,2,267 +34194826,Private room in Williamsburg,95381568,Elias,Brooklyn,Williamsburg,40.7134,-73.96306,Private room,85,4,3,2019-06-24,2.20,1,6 +34196242,Newly renovated loft on quiet block,20810101,Amy,Brooklyn,Bedford-Stuyvesant,40.68111,-73.94683,Private room,93,1,2,2019-06-29,1.40,2,23 +34196510,Midtown West Hotel - Boutique Queen,252604696,Erin,Manhattan,Chelsea,40.74948,-73.99506,Private room,199,1,0,,,20,189 +34197608,Private room in Brooklyn,232641412,Amp,Brooklyn,Bedford-Stuyvesant,40.6918,-73.94308,Private room,45,2,0,,,1,3 +34197691,"Super Great Bright Room, 15mins to NYC w/ desk",229249302,Missy,Brooklyn,Bushwick,40.69751,-73.93582,Private room,120,1,16,2019-07-05,6.96,1,57 +34197733,Beautiful 3 Bedroom 15 Minutes To Manhattan NYC,258186526,Mimi,Queens,Woodside,40.74823,-73.90352,Entire home/apt,189,2,10,2019-06-22,4.23,1,62 +34198108,Time Square South - Sunny Lux Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75029,-73.99492,Private room,129,1,3,2019-06-23,1.48,20,358 +34199108,Beautiful apartment in Manhattan!,130155462,Fred,Manhattan,Financial District,40.70578,-74.00769,Entire home/apt,280,2,11,2019-06-26,5.89,1,182 +34199411,Tons of Bars & Cafes nearby! Quick Walk to Metro,161324994,Ashley At Bedly,Manhattan,Upper East Side,40.76514,-73.96176,Private room,38,30,1,2019-06-01,0.79,6,43 +34199783,Modern One Bedroom - Greenpoint,9583320,Raine & Andrew,Brooklyn,Greenpoint,40.72336,-73.94652,Entire home/apt,150,7,1,2019-06-11,1,1,0 +34200086,Cozy Studio with Patio Close to the Subway,258202599,Elijah,Manhattan,East Harlem,40.78967,-73.94199,Entire home/apt,145,2,7,2019-06-24,3.62,1,0 +34200677,Great Eclectic Studio Apt in Brooklyn !!!!!!,161496464,Tyler,Brooklyn,Flatbush,40.65188,-73.95649,Entire home/apt,95,1,2,2019-07-07,0.91,1,362 +34201544,"5min walk to Metro+Laundry, Cleaning, & AC!",155299207,Casey,Brooklyn,Crown Heights,40.67648,-73.93881,Private room,33,30,0,,,1,45 +34201695,BedStuy Private Room (M2),6206040,Linda,Brooklyn,Bedford-Stuyvesant,40.6914,-73.9294,Private room,65,1,4,2019-06-18,2.35,8,12 +34202149,"Perfect 2 Bedroom Apt on East River, Williamsburg",31628364,Sarah,Brooklyn,Williamsburg,40.71603,-73.96417,Entire home/apt,220,3,4,2019-06-29,1.97,1,44 +34202304,曼哈顿 林肯中心 Manhattan Lincoln Center 5分钟到西59/66地铁站,97044757,柏润,Manhattan,Upper West Side,40.77435,-73.98761,Entire home/apt,139,20,0,,,2,18 +34202362,Entire Apt. In Brooklyn. 25 minutes to Manhattan.,135061108,Carmelo,Brooklyn,East Flatbush,40.64902,-73.94795,Entire home/apt,125,1,0,,,2,33 +34202651,"UWS 3BR/2BTH Apt, 1 block from Central Park",652539,Jamie,Manhattan,Upper West Side,40.79097,-73.96885,Entire home/apt,500,4,2,2019-06-04,1.36,1,256 +34202946,Sonder | 21 Chelsea | Stunning 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74285,-73.99595,Entire home/apt,277,29,0,,,327,365 +34203531,☆ Times Square- Home Away From Home,444275,Sara And Ronald,Manhattan,Hell's Kitchen,40.76521,-73.98986,Entire home/apt,180,3,1,2019-05-21,0.61,1,17 +34203594,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.7601,-73.98675,Entire home/apt,699,29,0,,,327,333 +34203595,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74455,-73.97162,Entire home/apt,162,29,0,,,327,341 +34203618,"Well lit room in FiDi, Manhattan-June,July sublet",225651433,Sruthi,Manhattan,Financial District,40.708,-74.01485,Private room,52,25,0,,,1,99 +34204138,2 Bedroom apt in LES with a private roof top,258230385,Vangelis,Manhattan,Chinatown,40.71661,-73.99275,Entire home/apt,176,30,1,2019-06-19,1,1,339 +34204173,Upscale Luxury High Rise with Amazing Terrace,257679591,Arthur,Manhattan,Murray Hill,40.74485,-73.97388,Entire home/apt,500,1,5,2019-06-18,2.94,1,62 +34204219,Bedroom + Private Office by Barclays Ctr,20702874,Jody,Brooklyn,Park Slope,40.68092,-73.97823,Private room,68,14,0,,,1,4 +34204602,Sonder | 11th Ave | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76166,-73.99691,Entire home/apt,182,29,0,,,327,302 +34204893,Gorgeous spacious 1 bedroom apartment,85773188,Mark,Brooklyn,Brighton Beach,40.57589,-73.96636,Entire home/apt,86,1,10,2019-07-08,9.09,1,20 +34205267,"Spacious, sunny room in Queens/Brooklyn",913940,Giancarlo,Queens,Ridgewood,40.70666,-73.90779,Private room,30,21,0,,,1,73 +34205286,Sonder | Upper East Side | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.7639,-73.96432,Entire home/apt,150,29,0,,,327,220 +34205501,Sonder | 11th Ave | Restful 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76061,-73.9967,Entire home/apt,189,29,0,,,327,334 +34205576,Convenient ground floor duplex - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70998,-73.94694,Private room,155,3,1,2019-05-27,0.70,3,365 +34206163,Midtown Manhattan - Cozy Triple Room,252604696,Erin,Manhattan,Chelsea,40.74889,-73.99656,Private room,199,1,2,2019-05-26,1.15,20,352 +34206373,Sonder | The Nash | Classic 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7484,-73.97544,Entire home/apt,200,29,0,,,327,342 +34206597,Waterfront 2 bd apt. Amazing views to Manhattan!,227163,"Coleen, Felipe And Victoria",Brooklyn,Williamsburg,40.70847,-73.96837,Entire home/apt,270,3,1,2019-06-08,1,1,0 +34206654,Manhattan Time Square South-Sunny Queen Room,252604696,Erin,Manhattan,Chelsea,40.75022,-73.99632,Private room,199,1,0,,,20,365 +34206709,Manhattan Chelsea - Cozy Queen Room,252604696,Erin,Manhattan,Chelsea,40.74952,-73.99671,Private room,199,1,0,,,20,365 +34206762,Time Square Modern Cozy Queen,252604696,Erin,Manhattan,Chelsea,40.75059,-73.9967,Private room,199,1,2,2019-06-19,0.81,20,365 +34206858,Good Day New York - Comfy Queen,252604696,Erin,Manhattan,Chelsea,40.74914,-73.99471,Private room,199,1,0,,,20,365 +34206929,Madison Square Garden - Sunny Queen,252604696,Erin,Manhattan,Chelsea,40.75093,-73.99523,Private room,199,1,1,2019-05-18,0.57,20,363 +34207022,Manhattan West - Cozy Single Room,252604696,Erin,Manhattan,Chelsea,40.74975,-73.9961,Private room,129,1,0,,,20,359 +34207413,Manhattan Chelsea Cozy Single,252604696,Erin,Manhattan,Chelsea,40.75074,-73.9967,Private room,149,1,0,,,20,359 +34207474,Good Day New York - Sunny Single,252604696,Erin,Manhattan,Chelsea,40.7494,-73.99519,Private room,149,1,0,,,20,359 +34207536,Sonder | Wall Street | Peaceful 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Financial District,40.70709,-74.01241,Entire home/apt,257,2,0,,,327,355 +34207537,Contemporary 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7618,-73.9979,Entire home/apt,185,29,0,,,327,332 +34207544,Madison Square Sunny Twin Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75055,-73.99482,Private room,149,1,0,,,20,351 +34207635,Midtown West - Comfort Twin Single Hotel,252604696,Erin,Manhattan,Chelsea,40.74942,-73.99536,Private room,149,1,0,,,20,359 +34207673,Manhattan Midtown West - Modern Single Hotel Room,252604696,Erin,Manhattan,Chelsea,40.74899,-73.99605,Private room,159,1,0,,,20,359 +34207739,30ST & 8th Ave Hotel - Twin Single Room,252604696,Erin,Manhattan,Chelsea,40.74882,-73.99663,Private room,159,1,0,,,20,359 +34207823,Time Square South - Clean Triple Hotel Room,252604696,Erin,Manhattan,Chelsea,40.75064,-73.99626,Private room,219,1,4,2019-07-04,1.82,20,356 +34207862,Midtown Boutique Hotel - Cozy Single,252604696,Erin,Manhattan,Chelsea,40.74913,-73.99513,Private room,159,1,0,,,20,360 +34207902,Midtown West Hotel - Bright Queen Room,252604696,Erin,Manhattan,Chelsea,40.75095,-73.99628,Private room,219,1,0,,,20,365 +34207925,Spacious and beautiful 4BR with backyard,646729,Andy,Brooklyn,Flatbush,40.63781,-73.96531,Entire home/apt,275,2,10,2019-07-03,5.17,1,298 +34208053,✴ COZY Astoria NYC ✴ 1BDR & 1 BATH APT,258265562,Ossama,Queens,Long Island City,40.75575,-73.93037,Entire home/apt,113,2,4,2019-06-07,1.85,1,0 +34208055,Private room in queens,1346437,Cristina,Queens,Sunnyside,40.74628,-73.9243,Private room,50,7,0,,,2,35 +34208237,Entire Magnificent Townhouse,98039499,Luigi,Manhattan,Upper East Side,40.77052,-73.96683,Entire home/apt,249,5,6,2019-06-25,3.27,1,116 +34208508,Sonder | 11th Ave | Stunning 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76241,-73.99606,Entire home/apt,182,29,0,,,327,319 +34208509,Simple 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74461,-73.97349,Entire home/apt,190,29,0,,,327,261 +34208674,Amazing 5 bed/2 bath Duplex 10 min from Manhattan!,258269673,Jameson,Brooklyn,Williamsburg,40.71547,-73.94074,Entire home/apt,595,2,4,2019-06-24,2.79,1,322 +34209348,Verrazano bridge garden house,98297464,Max,Brooklyn,Fort Hamilton,40.62065,-74.02929,Private room,68,5,2,2019-06-20,1.71,2,55 +34209440,Hotel-like Cottage Private Room KING Bed 25min NYC,48684597,David,Queens,Maspeth,40.73763,-73.89533,Private room,50,1,10,2019-07-01,4.48,4,218 +34209596,NYC Private Room in Manhattan,258247777,Claudio,Manhattan,Harlem,40.81672,-73.94746,Private room,135,3,5,2019-06-17,2.50,3,224 +34209682,Stunning 2Bedroom Apartment in LES Hot Spot,257973120,Maxinne,Manhattan,Lower East Side,40.72138,-73.98543,Entire home/apt,120,7,3,2019-06-30,1.76,1,284 +34209710,Cozy Room for Female Guests/ just 30sec to Subway!,63834320,Minami & Takuya,Brooklyn,Bushwick,40.70058,-73.91123,Private room,65,2,8,2019-07-07,3.93,1,19 +34209885,Sonder | 11th Ave | Modern 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76218,-73.99646,Entire home/apt,189,29,0,,,327,333 +34210645,2 bedroom 2 bathroom with garden heart of Bushwick,258286476,Eden,Brooklyn,Bushwick,40.69861,-73.91999,Entire home/apt,90,4,2,2019-05-12,0.94,1,34 +34211618,Lovely 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76182,-73.996,Entire home/apt,187,29,0,,,327,331 +34212511,Sonder | The Nash | Original 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74787,-73.97457,Entire home/apt,202,29,0,,,327,355 +34213403,"Comfy Sunnyside Room, Midtown in less than 30!",137358866,Kazuya,Queens,Sunnyside,40.74627,-73.92027,Private room,43,30,0,,,103,216 +34213482,Sonder | The Nash | Relaxed 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74883,-73.9752,Entire home/apt,200,29,0,,,327,365 +34213836,Delightful 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74421,-73.97221,Entire home/apt,190,29,0,,,327,345 +34214603,Sonder | 11th Ave | Vibrant 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76198,-73.99644,Entire home/apt,184,29,0,,,327,334 +34217313,Sonder | 11th Ave | Polished 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76229,-73.99628,Entire home/apt,187,29,0,,,327,335 +34218886,Beautiful and cozy place 2 min walk from subway,257999795,Joao,Brooklyn,Bushwick,40.68178,-73.90313,Private room,60,1,6,2019-06-23,5.14,1,52 +34221161,Room with sofa bed or air mattress,9295237,Noelle,Queens,Astoria,40.75593,-73.91276,Private room,2000,365,0,,,2,0 +34222262,Sonder | The Biltmore | Modern 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Theater District,40.76089,-73.9862,Entire home/apt,215,29,0,,,327,342 +34222263,Sonder | The Nash | Cozy 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74695,-73.97615,Entire home/apt,200,29,0,,,327,339 +34222682,Nice sunny room in great part of Bed Stuy,122551862,Marian,Brooklyn,Bedford-Stuyvesant,40.68569,-73.94465,Private room,50,2,2,2019-07-01,0.90,2,8 +34222823,Spacious + beautiful Garden apt in brick townhouse,831185,Andrew,Brooklyn,Crown Heights,40.67978,-73.96231,Entire home/apt,335,2,1,2019-07-01,1,3,365 +34223346,Big and bright with private entrance,41976386,Nawar,Queens,Ridgewood,40.70611,-73.91521,Private room,50,30,0,,,1,36 +34224023,Brilliant like studio apartment close to Manhattan,254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92996,Private room,89,1,25,2019-07-07,10.56,3,160 +34227232,Very quiet two twin beds room 温馨双单人床小屋,140630987,Jiali,Queens,Flushing,40.76089,-73.8142,Private room,70,1,7,2019-07-07,3.18,6,326 +34227846,Great New York-korea town Shared room,179336958,Ruby,Manhattan,Midtown,40.74605,-73.98634,Shared room,65,3,1,2019-06-29,1,6,353 +34228220,Newly Renovated 2 bedroom in Heart of Times Square,258413226,Collin,Manhattan,Hell's Kitchen,40.75548,-73.99513,Entire home/apt,225,3,11,2019-07-02,5.08,1,152 +34228341,A.Hamilton(for GUYS only),51596474,Antony,Brooklyn,Bay Ridge,40.62638,-74.01837,Shared room,18,9,1,2019-06-15,1,12,0 +34228857,"B, Hamilton( For GUYS ONLY)",51596474,Antony,Brooklyn,Bay Ridge,40.62703,-74.01952,Shared room,22,5,0,,,12,0 +34229313,Astoria's Retreat 10min away from the city. Prkg,247092108,Jackie,Queens,Astoria,40.76683,-73.91435,Entire home/apt,199,1,12,2019-07-06,7.06,3,283 +34229869,Cozy Living Room Futon,27537930,Preston,Bronx,Pelham Gardens,40.86209,-73.84667,Shared room,20,1,0,,,1,5 +34230311,Sonder | The Nash | Edgy 1BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74693,-73.97582,Entire home/apt,204,29,0,,,327,326 +34230337,Master Bed Room With Private Bathroom #1,258217172,Jin Sen,Brooklyn,Bushwick,40.68757,-73.90961,Private room,70,1,9,2019-06-29,4.22,1,262 +34230593,Spacious UES place. Flexible check-in/out. Subway.,113927793,Liz,Manhattan,Upper East Side,40.77712,-73.95164,Entire home/apt,155,2,8,2019-06-16,3.38,1,0 +34231172,Fully renovated brick house floor in Brooklyn,59642348,Kevin,Brooklyn,Sunset Park,40.6455,-74.01262,Entire home/apt,95,1,9,2019-07-08,9,1,106 +34231565,Private bedroom and bathroom 15 mins from the city,2961266,John,Queens,Sunnyside,40.73857,-73.92563,Private room,72,1,4,2019-07-02,4,2,25 +34231746,Big and Bright Room in South Bronx Artist Home!,9975046,Karah,Bronx,Longwood,40.81835,-73.91465,Private room,65,3,0,,,1,0 +34232536,Red Violet,145878384,Denise,Brooklyn,East Flatbush,40.65093,-73.93269,Private room,75,3,2,2019-06-12,1.54,7,245 +34232892,East Flatbush Charmer,258013305,Marsha,Brooklyn,East Flatbush,40.64298,-73.93945,Private room,40,2,7,2019-06-30,4.29,1,0 +34233364,★ Huge Three Bedroom Centrally Located ★,258389576,William,Manhattan,Upper East Side,40.78161,-73.94852,Entire home/apt,450,1,5,2019-05-31,2.24,1,164 +34233430,Contemporary studio in Manhattan,258460961,Elena,Manhattan,Upper East Side,40.77932,-73.94547,Entire home/apt,150,3,4,2019-06-30,1.90,1,315 +34233572,"Quiet, Safe, Clean Room",258461766,Leslie,Queens,Flushing,40.75073,-73.82052,Private room,75,1,0,,,1,365 +34234242,Empire state building neighbor,44803585,Chrissy,Manhattan,Midtown,40.74673,-73.98191,Entire home/apt,300,1,4,2019-06-02,1.85,1,235 +34234982,NYC Manhattan Private Room,258247777,Claudio,Manhattan,Harlem,40.81548,-73.94556,Private room,135,3,6,2019-06-10,2.86,3,247 +34235178,NYC Manhattan Private Room! Private Bathroom!!,258247777,Claudio,Manhattan,Harlem,40.81693,-73.94562,Private room,135,5,1,2019-05-23,0.64,3,320 +34235450,I rent out brand new 2br/2bath apt in Chinatown,24890474,Stanislav,Manhattan,Chinatown,40.71333,-73.99419,Entire home/apt,300,2,5,2019-06-20,2.42,1,231 +34243440,Room in Astoria - few steps from subway Ditmars,16072483,Danilo,Queens,Ditmars Steinway,40.77419,-73.91113,Private room,30,2,5,2019-07-02,2.31,1,11 +34244391,A space like a home,258536261,Judy,Brooklyn,Cypress Hills,40.67959,-73.88302,Entire home/apt,100,2,11,2019-07-08,5.69,1,179 +34245023,Apartment,185974751,Claudia,Manhattan,Upper West Side,40.79527,-73.96666,Private room,48,5,1,2019-05-11,0.50,1,0 +34245778,Mi Rincón acogedor!,258551028,Alcira,Brooklyn,Bensonhurst,40.61985,-74.00205,Private room,40,5,4,2019-05-24,1.74,1,0 +34247014,Tribeca 3.5 Bedroom Loft,106627,Philip,Manhattan,Tribeca,40.71734,-74.00858,Entire home/apt,750,7,0,,,1,22 +34247102,"Charming, newly renovated prime Park Slope Studio",11522108,Cecilia,Brooklyn,Park Slope,40.67428,-73.97559,Entire home/apt,150,3,4,2019-06-25,2.73,1,130 +34249203,BK Cozy Couch,7817764,Karen,Brooklyn,Williamsburg,40.70197,-73.94131,Shared room,50,3,0,,,1,16 +34250079,Williamsburg historic apt. summer sublet!,5317044,Jasper,Brooklyn,Williamsburg,40.7153,-73.95333,Entire home/apt,109,45,0,,,1,62 +34250344,ROOM # 3 near to JFK & LGA Airport,258589420,Diego,Queens,Richmond Hill,40.68908,-73.83326,Private room,56,1,12,2019-07-07,5.37,7,179 +34251007,Penthouse with breath taking views of the skyline.,258596027,Noreen,Queens,Long Island City,40.74973,-73.94015,Entire home/apt,199,2,6,2019-06-10,3.46,1,316 +34251212,Charming One-Bedroom East Village Apartment,59782332,Nikolas,Manhattan,East Village,40.72325,-73.98776,Entire home/apt,120,3,4,2019-07-06,1.82,1,0 +34251397,"Nice House, clean space",258518165,Andres,Queens,Bayside,40.74966,-73.75328,Private room,80,1,0,,,1,289 +34251643,NYC 2-bedrooms apartment @ Brooklyn,258118351,Artie,Brooklyn,Borough Park,40.64032,-73.99493,Entire home/apt,95,18,2,2019-06-04,1.62,2,38 +34251664,Cozy private room 10 min to Columbia Univiersity,250207981,Junyi,Manhattan,Upper West Side,40.80378,-73.96619,Private room,50,14,1,2019-04-29,0.42,1,15 +34251680,Spacious private bedroom upper manhattan NYC,4711282,Gen,Manhattan,Washington Heights,40.85015,-73.93863,Private room,70,1,11,2019-06-16,4.93,1,97 +34251990,Great location in Hells kitchen,32615118,Taylor,Manhattan,Hell's Kitchen,40.7676,-73.98609,Private room,110,5,3,2019-06-14,1.76,1,331 +34252769,Comfortable 2 bedroom Condo (Chelsea),258273798,Benny,Manhattan,West Village,40.74021,-74.00414,Entire home/apt,259,1,10,2019-07-02,5.45,1,32 +34253217,Fantastic 2 Bedroom Apartment,258599553,Matt,Manhattan,Kips Bay,40.7432,-73.97703,Entire home/apt,190,1,4,2019-06-17,2.14,1,144 +34253279,"Jfk min away. Welcome to the beach! Fun,sand,surf",125320407,Sata,Queens,Far Rockaway,40.60412,-73.75163,Private room,875,2,0,,,5,365 +34253845,Bedroom w full kitchen & living room - no stairs!,258243498,Ben,Brooklyn,Williamsburg,40.70992,-73.94698,Private room,100,1,4,2019-06-02,2.03,3,365 +34254505,"2 Bedroom, sleeps 6, Luxury apt, outside of NYC!",254637078,Nicholas,Brooklyn,Greenpoint,40.73339,-73.95271,Entire home/apt,200,1,2,2019-06-23,2,1,229 +34255183,2 Bedrooms and a Comfy Couch On Washington,17842194,Cathleen,Brooklyn,Crown Heights,40.67882,-73.96267,Private room,100,2,0,,,2,21 +34255308,Large Renovated 2 br Apt called Home Crown Heights,78113383,Sara,Brooklyn,Crown Heights,40.67266,-73.92423,Entire home/apt,80,10,0,,,3,258 +34255351,Times Square Hidden Gem 2 Bedroom Apartment,258139060,Angel,Manhattan,Hell's Kitchen,40.76273,-73.99192,Entire home/apt,249,1,9,2019-06-22,5.29,1,88 +34255385,Amazing Apartment infront of Williamsburg Bridge!,258412458,Sophia,Brooklyn,Williamsburg,40.71289,-73.96603,Entire home/apt,300,2,3,2019-06-16,1.84,1,25 +34255438,NYC Lux. Condo,258635350,Jason,Staten Island,New Springville,40.58111,-74.15933,Entire home/apt,150,2,0,,,1,0 +34255449,Beautiful Manhattan TOWNHOUSE APARTMENT w Deck,779474,Clint,Manhattan,Washington Heights,40.83515,-73.94178,Entire home/apt,128,3,9,2019-07-05,4.66,1,236 +34255571,Brooklyn Brownstone (Private Room),243639488,Joanna,Brooklyn,East Flatbush,40.64359,-73.94821,Private room,120,2,3,2019-06-30,2.00,1,180 +34255740,"Private, 2-story apartment, near the Highline",141713689,Nawar,Manhattan,Chelsea,40.74475,-74.00108,Entire home/apt,134,7,3,2019-06-23,2.65,1,13 +34256176,"Nice 3Beds/2bedroom Apartment, 5min TIME SQUARE.",41124793,Gary,Manhattan,Hell's Kitchen,40.76515,-73.98586,Entire home/apt,389,1,1,2019-06-19,1,1,0 +34256485,Chilling in Brooklyn in a cool culture vibe,258647286,Irma,Brooklyn,Brownsville,40.66242,-73.90128,Private room,38,2,0,,,1,176 +34256514,[Special Price] Have a nice trip with my room!,69339916,Luke,Manhattan,Harlem,40.8125,-73.95305,Private room,70,1,3,2019-06-21,2.57,1,71 +34256683,Great 3Bedroom Apt in Stunning Location,161047916,Zara,Manhattan,Chelsea,40.74895,-73.99652,Entire home/apt,380,14,3,2019-06-16,1.80,1,321 +34256717,Bedstuy Cozy Room with Private Bathroom,155299284,Kia,Brooklyn,Bedford-Stuyvesant,40.68977,-73.95482,Private room,75,1,14,2019-07-02,7.12,1,0 +34256727,"Private, Cozy Escape! Near all!",49216953,Marina,Staten Island,Midland Beach,40.57568,-74.09522,Entire home/apt,115,2,2,2019-06-20,2,1,231 +34257861,2 Bedroom Empire State Building Apartment,258133009,Rovena,Manhattan,Murray Hill,40.74553,-73.97699,Entire home/apt,239,1,8,2019-06-24,4.53,1,140 +34257868,Beautiful Studio in the heart of Williamsburg,258661548,Brisa,Brooklyn,Williamsburg,40.71456,-73.94326,Entire home/apt,140,1,9,2019-06-23,3.86,1,200 +34257884,Top floor West Village apartment with city views,20944981,Monica,Manhattan,West Village,40.73521,-74.00528,Entire home/apt,180,2,4,2019-06-15,2.40,1,22 +34258598,Single Bedroom around Columbia University,195863013,Yiwei,Manhattan,Upper West Side,40.80249,-73.96729,Private room,45,3,3,2019-06-08,2.05,1,2 +34258883,MIN WALK TO TRAIN/STORES/FOOD PLACES/NEAR HOSPITAL,241676154,Maria,Staten Island,Grant City,40.57801,-74.10869,Private room,29,21,0,,,2,281 +34259050,One little beautiful room in an 3bedroom apartment,258671946,Basil Walker,Bronx,Longwood,40.82654,-73.90516,Private room,27,2,7,2019-06-16,3.50,1,60 +34259388,Great home for the summer ONLY,17770682,Adriana,Bronx,Highbridge,40.83149,-73.92766,Entire home/apt,70,40,0,,,1,0 +34260123,"3BR Apartment in Bushwick, 1 min to Train!",258682005,Terly,Queens,Ridgewood,40.69526,-73.90263,Entire home/apt,210,7,2,2019-05-26,1.13,1,142 +34260966,Heart of SoHo: Spring Street 3 Bed Loft,257889696,Renee & Roscoe,Manhattan,SoHo,40.72249,-73.99758,Entire home/apt,499,4,5,2019-06-05,2.73,1,194 +34261963,Bright Furnished Room in Midtown East!,6466170,Peter,Manhattan,Midtown,40.75514,-73.96773,Private room,109,60,0,,,1,327 +34262617,Manhattan Tourists' warm home 3,257997585,Yu,Manhattan,Midtown,40.75843,-73.97053,Private room,129,7,9,2019-06-21,4.03,1,128 +34263343,New renovated a comfortable apartment in manhattan,251852817,Owen,Manhattan,East Harlem,40.80078,-73.94335,Shared room,60,1,5,2019-07-04,2.31,7,90 +34271296,Gracious Art-Deco 2 Bed Home on Tree-lined street,257892281,Alissandra,Manhattan,Upper East Side,40.77116,-73.94774,Entire home/apt,299,4,9,2019-07-06,5.00,1,170 +34272398,Brooklyn Townhouse Apartment with Outdoor Space,29032861,Suzen,Brooklyn,Bedford-Stuyvesant,40.67797,-73.91818,Entire home/apt,150,3,2,2019-05-27,1.20,1,14 +34272580,Spacious 3 bedroom duplex with private backyard,4521174,Caroline,Brooklyn,Crown Heights,40.67167,-73.94015,Entire home/apt,140,30,0,,,3,73 +34274062,Williamsburg big studio,133465194,Andrea,Brooklyn,Williamsburg,40.71925,-73.94293,Entire home/apt,94,7,1,2019-05-17,0.57,1,0 +34275040,Huge Williamsburg Studio with Private Terrace,125398274,Christian,Brooklyn,Williamsburg,40.71186,-73.96575,Entire home/apt,300,3,4,2019-06-23,2.07,2,0 +34275316,Bright and Sunny SoHo Gem,258769304,Adelaide,Manhattan,SoHo,40.72301,-74.00229,Entire home/apt,160,4,4,2019-06-17,2.45,1,21 +34275346,Amazing Cozy 2 Bedroom | Heart of Lower Manhattan!,110146823,Laura,Manhattan,Chinatown,40.713,-73.99645,Entire home/apt,200,2,5,2019-06-14,2.94,1,298 +34275461,BedStuy Penthouse Duplex 1BR,247584029,Robert,Brooklyn,Bedford-Stuyvesant,40.68417,-73.95343,Entire home/apt,132,30,1,2019-06-08,0.94,1,191 +34277091,Entire sunny apartment in Crown Heights,34648989,Sebastián,Brooklyn,Crown Heights,40.67058,-73.95347,Entire home/apt,97,6,0,,,1,101 +34277352,"Comfort Room in Downtown New York, Chinatown, Soho",250825715,Cherry,Manhattan,Chinatown,40.71672,-73.99553,Private room,67,1,0,,,3,39 +34278125,Magnificent Penthouse Suite in Midtown Manhattan,24413996,Arlen,Manhattan,Midtown,40.76459,-73.98167,Private room,395,2,0,,,1,0 +34278223,Luxury for Single Traveler,3577413,Rj,Manhattan,Financial District,40.70599,-74.00515,Entire home/apt,139,7,2,2019-06-11,0.92,1,1 +34278532,3 Bedroom Loft Like Unit 5 minutes from train,258795923,Saf,Brooklyn,Gravesend,40.59145,-73.98546,Entire home/apt,129,3,4,2019-06-26,3.00,1,167 +34278696,Brooklyn artist studio,47572575,Andres,Brooklyn,Crown Heights,40.67259,-73.9525,Entire home/apt,100,2,9,2019-07-06,4.09,1,5 +34278936,Greenpoint - Sun Filled Room in Unique Loft Space,19344148,Alex,Brooklyn,Greenpoint,40.72563,-73.95656,Private room,65,2,15,2019-07-01,6.92,1,65 +34279388,Hamilton Heights sanctuary,9070754,Michele,Manhattan,Harlem,40.82672,-73.94948,Private room,50,10,0,,,1,55 +34279945,Charming Room In Little Italy,236839319,Brooke,Manhattan,Little Italy,40.71815,-73.99756,Private room,51,30,0,,,3,35 +34280267,Sonder | 116 John | Cozy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70808,-74.00561,Entire home/apt,130,29,0,,,327,338 +34280337,Little Italy Room,236839319,Brooke,Manhattan,Little Italy,40.71786,-73.9979,Private room,59,30,0,,,3,35 +34280940,"Mi casa es tu casa, Habitación 1",241565326,Valentina,Queens,Woodside,40.7432,-73.90304,Private room,50,1,16,2019-07-03,7.06,2,81 +34281515,"Great location, private bedroom with two windows.",258818973,Daria,Brooklyn,Brighton Beach,40.57541,-73.96028,Private room,55,2,6,2019-07-01,6,1,50 +34281907,Private Room in East Williamsburg - Clean & Comfy!,17017530,Susan,Brooklyn,Williamsburg,40.71466,-73.9378,Private room,89,1,1,2019-06-30,1,1,188 +34282192,"Large room close to Metro ,20min to TQ",258824466,Nam,Queens,Sunnyside,40.73898,-73.9212,Private room,60,2,6,2019-07-01,2.81,1,180 +34282410,1 BD Apt in Luxury Building - Crown Heights NYC,258826234,Stephanie,Brooklyn,Crown Heights,40.67708,-73.95489,Entire home/apt,175,7,1,2019-05-23,0.63,1,35 +34283155,Clean Room in Upper West Side Near Columbia Uni,6655776,Jk,Manhattan,Morningside Heights,40.80436,-73.96512,Private room,85,2,11,2019-07-07,5.79,1,9 +34283312,2BR in Bushwick! 20 min to Manhattan!,258831812,Veronika,Queens,Ridgewood,40.70805,-73.91535,Entire home/apt,170,7,0,,,1,126 +34284185,Cozy Private Bedroom,257390100,Hugo,Manhattan,Upper West Side,40.80168,-73.96143,Private room,60,1,9,2019-05-31,4.58,1,0 +34284316,Bedroom,180991373,Vicky,Queens,Flushing,40.74265,-73.8231,Private room,50,1,0,,,5,23 +34284408,Sonder | 116 John | Spacious 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70685,-74.00698,Entire home/apt,130,29,0,,,327,246 +34284409,Sonder | 116 John | Modern Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70825,-74.00482,Entire home/apt,100,29,1,2019-06-06,0.88,327,358 +34284597,South Bronx Suite,19903807,Carol,Bronx,Mott Haven,40.81305,-73.91655,Entire home/apt,120,3,5,2019-06-02,2.50,3,45 +34284651,Columbia campus 2 bedrooms apartment,790288,Sandra,Manhattan,Morningside Heights,40.808,-73.96643,Entire home/apt,200,1,0,,,1,11 +34284654,Manhattan Private Room & Bathroom,19109608,Elle,Queens,Astoria,40.76149,-73.9203,Private room,95,7,0,,,3,356 +34284697,2 Bedroom Apt w private entrance & backyard,6302448,Hidemi,Brooklyn,Bedford-Stuyvesant,40.67882,-73.94941,Entire home/apt,120,2,0,,,1,40 +34284883,Your own studio in the heart of Chelsea,258844868,Victor,Manhattan,Chelsea,40.74577,-74.0022,Entire home/apt,129,1,19,2019-06-22,8.38,1,5 +34285156,Master Bed Decatur 3F Room#1,258248138,Fanny,Brooklyn,Bushwick,40.68754,-73.90975,Private room,70,1,5,2019-06-27,2.54,2,179 +34285226,Central Park Strawberry Fields*2 Bed*Elevator*,258848718,Jossy,Manhattan,Upper West Side,40.77796,-73.98191,Entire home/apt,230,30,0,,,1,36 +34285510,Perfect 1 Bedroom in Nolita,23831365,Danielle,Manhattan,NoHo,40.72492,-73.99496,Entire home/apt,250,10,1,2019-06-01,0.79,1,18 +34285600,Homely ROOM IN BROOKLYN,218417875,Patrice,Queens,Ridgewood,40.70173,-73.9073,Private room,60,1,10,2019-06-23,4.41,1,365 +34285612,Cozy Bushwich Decatur 3F Room #4,258248138,Fanny,Brooklyn,Bushwick,40.68678,-73.90769,Private room,50,1,4,2019-06-25,1.88,2,160 +34286519,Sonder | Upper East Side | Chic 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76447,-73.96509,Entire home/apt,150,29,0,,,327,221 +34286555,Comfortable Futon Couch in Brooklyn,10714931,Nick,Brooklyn,Crown Heights,40.67326,-73.95367,Shared room,24,5,7,2019-07-01,3.33,4,14 +34286793,Private bedroom in Brooklyn near A/C train,132065326,Soffia,Brooklyn,Bedford-Stuyvesant,40.68066,-73.9457,Private room,79,3,1,2019-06-29,1,1,83 +34286828,Cosy luxury studio for sublet on upper west side,101856518,Dearna,Manhattan,Upper West Side,40.77904,-73.98786,Entire home/apt,180,3,0,,,1,0 +34287159,Modern 1500sf Loft Home: 3 Bedroom + 2 Full Baths,64487276,Jesse,Manhattan,East Harlem,40.79619,-73.93653,Entire home/apt,359,5,4,2019-07-03,3.33,1,193 +34288305,Sonder | 116 John | Vibrant 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70767,-74.00495,Entire home/apt,179,29,0,,,327,340 +34289101,Perfect Studio in LES Hot Spot - best Location!,256921050,Ellen,Manhattan,Chinatown,40.71508,-73.99112,Entire home/apt,135,6,3,2019-06-26,2.20,2,333 +34289331,Sonder | 11th Ave | Sunny 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7607,-73.9961,Entire home/apt,189,29,0,,,327,324 +34289867,"Amazing 2 BR Ap,10min walk 2 Empire state building",258892159,Flora,Manhattan,Kips Bay,40.74357,-73.97647,Entire home/apt,299,1,0,,,1,20 +34291583,Sonder | 116 John | Relaxed Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70838,-74.00694,Entire home/apt,100,29,0,,,327,351 +34299690,Cosy shiny bedroom close to Manhattan 25min,254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68316,-73.9287,Private room,70,2,12,2019-07-07,5.54,3,349 +34301284,Beautiful apartment in Manhattan!,257813708,Polina,Manhattan,East Village,40.72859,-73.97977,Entire home/apt,250,3,6,2019-06-23,3.27,1,162 +34301415,Elegant Top Floor 3BD/2 Bath in Chelsea,257897148,Avery,Manhattan,Chelsea,40.74287,-73.99785,Entire home/apt,499,5,6,2019-06-19,3.46,1,132 +34301679,Amazing luxury apartment in Manahttan!,258753303,Tim,Manhattan,Financial District,40.70441,-74.00637,Entire home/apt,300,3,7,2019-07-01,3.89,1,231 +34302031,500 sq ft Studio with Private Bathroom,133588507,Joanne,Queens,Jamaica,40.7084,-73.78882,Entire home/apt,64,3,6,2019-07-05,3.05,1,37 +34302049,"Bright, cozy 1 bedroom near Central Park",17831516,Rebecca,Manhattan,East Harlem,40.78728,-73.9471,Entire home/apt,35,30,0,,,1,235 +34302570,"COSY BEDROOM CLOSE TO MANHATTAN, Brooklyn",254104585,Mila,Brooklyn,Bedford-Stuyvesant,40.68449,-73.92881,Private room,59,1,22,2019-07-06,10.31,3,347 +34303799,Magical space in prime Williamsburg,116674915,Virginia,Brooklyn,Williamsburg,40.71417,-73.95867,Private room,69,6,2,2019-06-10,1.46,1,4 +34303993,1st floor loft space with beautiful yard,258978893,Ron,Brooklyn,Crown Heights,40.6707,-73.93944,Entire home/apt,120,4,4,2019-06-25,2.50,1,64 +34304190,Stunning Chelsea/West Vill. Floor Thru LOFT 4BEDs,257674218,Jordi,Manhattan,Chelsea,40.74334,-74.0025,Entire home/apt,349,6,5,2019-07-07,5,1,41 +34304576,Stunning NYC World Trade Center Dreamstyle studio,17655984,Janey,Manhattan,Financial District,40.70965,-74.01388,Entire home/apt,168,4,0,,,1,29 +34305085,Splendid LOFT 6BED/3BATH - steps to Central PARK,258249038,Joseph Luis,Manhattan,Upper West Side,40.79641,-73.96253,Entire home/apt,589,5,4,2019-06-26,4,1,109 +34305492,"Clean, Modern Sun-filled 2BD Home in Midtown East",258001528,Dane,Manhattan,Midtown,40.75607,-73.96768,Entire home/apt,325,4,4,2019-07-02,2.79,1,157 +34305767,"Big Bed brooklyn, convenient close trains",92204575,Penelope,Brooklyn,Bedford-Stuyvesant,40.69862,-73.94046,Private room,63,1,1,2019-05-27,0.70,1,0 +34306257,Luxury 2 Bed / 2 Bath River and City View.,131647128,Emily,Manhattan,Hell's Kitchen,40.76775,-73.98869,Entire home/apt,265,30,0,,,25,290 +34306554,Amazing room in heart of East Village,33036193,Clara,Manhattan,East Village,40.72693,-73.98374,Private room,100,3,0,,,2,52 +34306772,Posh East Village 1BR in Walk Up Building near Subway by Blueground,107434423,Blueground,Manhattan,East Village,40.73059,-73.98511,Entire home/apt,271,30,0,,,232,323 +34306797,Bright & Beautiful Park Slope One-Bedroom,258251034,Julie,Brooklyn,South Slope,40.66678,-73.98822,Entire home/apt,175,2,2,2019-05-27,1.15,1,14 +34306801,"Dapper East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.72995,-73.98453,Entire home/apt,271,30,0,,,232,334 +34306827,"Gorgeous East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.73137,-73.98504,Entire home/apt,285,30,0,,,232,43 +34307310,St Marks PL,20500770,Ofer,Manhattan,East Village,40.72712,-73.98402,Entire home/apt,200,3,4,2019-06-30,1.97,1,4 +34308485,Delightful 3 Bedroom in Central Midtown Location,94111558,Lia And Patrick,Manhattan,Hell's Kitchen,40.76324,-73.98985,Entire home/apt,449,5,5,2019-06-27,3.26,1,222 +34308774,Cozy apartment in Midtown!,258800798,Zana,Manhattan,Hell's Kitchen,40.75533,-73.99781,Entire home/apt,200,1,9,2019-07-01,4.58,1,190 +34309096,BIG SPACIOUS 1 BED IN BROOKLYN HIGH CEILINGS,31367619,Nneka,Brooklyn,Bedford-Stuyvesant,40.6921,-73.9391,Private room,100,3,0,,,1,89 +34309557,"Snazzy East Village 1BR in Walk Up Building near Subway, by Blueground",107434423,Blueground,Manhattan,East Village,40.73002,-73.98356,Entire home/apt,298,30,0,,,232,301 +34309941,Relaxing bohemian space in Bushwick,206094855,Eva,Brooklyn,Bushwick,40.68538,-73.90878,Private room,75,10,0,,,1,69 +34310607,Large private Room nearly JFK 8 mins,222049462,Jose,Queens,Rosedale,40.65919,-73.73412,Private room,60,1,14,2019-07-01,6.46,2,88 +34311549,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.76106,-73.98647,Entire home/apt,699,29,0,,,327,333 +34312163,Queen Room,95570540,Eileen,Staten Island,Oakwood,40.56033,-74.11953,Private room,65,1,1,2019-06-28,1,3,179 +34312239,Cozy Private Room - Only 25 mins to Manhattan ;),22070428,Fernando,Queens,Elmhurst,40.7442,-73.87698,Private room,55,1,1,2019-05-10,0.50,1,35 +34312320,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75969,-73.98732,Entire home/apt,699,29,0,,,327,220 +34312985,Luxury 2 bdr/2 bath prime Williamburg,544721,Marta,Brooklyn,Williamsburg,40.71312,-73.9453,Entire home/apt,192,1,0,,,1,8 +34313143,Superior 1BR in FiDi by Sonder,219517861,Sonder (NYC),Manhattan,Financial District,40.70724,-74.00614,Entire home/apt,699,29,0,,,327,337 +34313601,Large 1 BR *** Featured on This Old House,29659188,Kevin And Karen,Brooklyn,Prospect Heights,40.6774,-73.96864,Entire home/apt,279,2,11,2019-07-06,5.69,1,112 +34313928,South Bronx Suite Two,19903807,Carol,Bronx,Mott Haven,40.81245,-73.91648,Entire home/apt,120,3,1,2019-06-15,1,3,45 +34313960,Lovely Studio in FiDi by Sonder,219517861,Sonder (NYC),Manhattan,Financial District,40.70844,-74.00615,Entire home/apt,699,29,0,,,327,333 +34314231,Perfect West Village apt - best location in NYC!,70155821,Matt,Manhattan,West Village,40.73551,-74.00167,Entire home/apt,350,3,1,2019-06-02,0.81,1,12 +34315235,Pleasant 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75572,-73.98331,Entire home/apt,217,29,0,,,327,343 +34315546,Hell's Kitchen Luxury (East Room),50597569,Michael,Manhattan,Hell's Kitchen,40.76215,-73.99589,Private room,112,2,7,2019-06-22,3.39,1,1 +34315737,Studio Apartment in BoroPark Brooklyn NY,259063599,Yehudit,Brooklyn,Borough Park,40.63302,-73.9837,Entire home/apt,120,1,3,2019-07-03,1.29,1,177 +34315945,Full 2 bedroom apartment in East Village by Marios,259066380,Marios,Manhattan,East Village,40.72715,-73.97757,Entire home/apt,173,12,0,,,1,0 +34316575,#4 ROOM 4FAMILY (4 guests) Train 3 Kingston Ave,256235740,Levi,Brooklyn,Crown Heights,40.66878,-73.93888,Shared room,45,2,0,,,3,365 +34316644,Yellow ButterFly,145878384,Denise,Brooklyn,East Flatbush,40.65607,-73.92942,Private room,110,3,0,,,7,320 +34316785,La Greka (Couch Surfing),109843377,Rubi,Brooklyn,Bedford-Stuyvesant,40.67981,-73.91022,Shared room,25,7,0,,,2,88 +34316788,Central Park West: 3 Bedroom + 2 Bath Jewel-box,258159396,Nick,Manhattan,Upper West Side,40.8,-73.96026,Entire home/apt,438,5,6,2019-07-05,3.10,1,136 +34316911,Large Private Room with Courtyard,259076960,Monica,Brooklyn,Williamsburg,40.71296,-73.93688,Private room,49,2,2,2019-06-04,1.40,1,16 +34316984,Lavidaloca plc,219548549,Kennedy,Brooklyn,Crown Heights,40.66996,-73.92264,Private room,99,1,3,2019-06-30,1.34,2,365 +34317148,Beautiful house in Jamaica near JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71573,-73.76897,Private room,175,1,0,,,3,89 +34317924,Sonder | The Biltmore | Bright 1BR + Workspace,219517861,Sonder (NYC),Manhattan,Theater District,40.76118,-73.98628,Entire home/apt,154,29,0,,,327,343 +34318100,TIMES SQUARE-4 BEDROOM- DELUX-ART APARTMENT,259087876,Dennis,Manhattan,Theater District,40.75747,-73.98226,Entire home/apt,650,1,3,2019-07-02,1.58,7,126 +34318362,Live Brooklyn II - 2 Bedroom Apt 5 Min to Subway!,120804342,David,Brooklyn,Bedford-Stuyvesant,40.69503,-73.9449,Entire home/apt,247,2,6,2019-07-01,3.53,2,346 +34318710,Tremendous East Village Apt!,21010752,Zach,Manhattan,East Village,40.72132,-73.9804,Private room,140,4,0,,,2,8 +34318915,Apartment in the Heart Of Brooklyn,114828297,Diana,Brooklyn,Bedford-Stuyvesant,40.67944,-73.91635,Private room,125,1,1,2019-05-05,0.45,1,5 +34319441,Amazing Place - ASTORIA,46081317,Fabiana,Queens,Astoria,40.75663,-73.9143,Private room,55,25,0,,,3,199 +34320238,Manhattan Private Luxury Bedroom!!!!!,224317184,Luke,Manhattan,Inwood,40.86234,-73.92705,Private room,90,3,0,,,8,255 +34320465,Holiday VILLA EXCLUSIVE,234274506,Chioma,Brooklyn,Cypress Hills,40.68138,-73.87736,Private room,35,1,7,2019-07-01,3.62,1,158 +34320892,Splendid Upper E. Side LOFT Central Park 4BEDs/2BA,257869899,Juanit,Manhattan,Upper East Side,40.77566,-73.9484,Entire home/apt,380,6,3,2019-06-07,2.05,1,123 +34321146,Gorgeous Duplex LOFT 1.5BATH 4BEDs - East Village,257876445,Clemiro,Manhattan,East Village,40.73077,-73.98322,Entire home/apt,299,6,0,,,1,140 +34321295,Heart of Williamsburg living for 1-5 msg!,3270796,Jess,Brooklyn,Williamsburg,40.71038,-73.96094,Private room,70,2,7,2019-06-28,3.62,2,55 +34321465,Two bed apartment in the heart of Williamsburg,3270796,Jess,Brooklyn,Williamsburg,40.71108,-73.95988,Entire home/apt,180,2,0,,,2,10 +34323565,Sonder | 21 Chelsea | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74229,-73.9959,Entire home/apt,209,29,0,,,327,365 +34323571,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75963,-73.98764,Entire home/apt,159,29,0,,,327,220 +34323636,Sonder | Stock Exchange | Incredible 3BR + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70597,-74.01258,Entire home/apt,463,2,0,,,327,289 +34323638,Sonder | The Biltmore | Spacious 1BR + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75988,-73.98667,Entire home/apt,220,29,0,,,327,333 +34323686,Lovely 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76169,-73.99626,Entire home/apt,187,29,0,,,327,331 +34323697,Sonder | The Biltmore | Bright 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75965,-73.98652,Entire home/apt,215,29,0,,,327,338 +34323711,Sonder | The Biltmore | Stunning 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Theater District,40.75975,-73.98586,Entire home/apt,159,29,0,,,327,221 +34323730,Sonder | 116 John | Comfortable 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.00674,Entire home/apt,130,29,0,,,327,337 +34324284,Comfy room with WiFi. Mins to Central Park!,137358866,Kazuya,Manhattan,East Harlem,40.79395,-73.94153,Private room,38,30,0,,,103,0 +34327434,Bushwick Art Collective: Bedroom C (sub-level),3635302,Adam,Brooklyn,Bushwick,40.70434,-73.9177,Private room,90,3,1,2019-05-20,0.60,3,1 +34329708,"Luxury apt with East River views in Greenpoint, NY",9811865,Paul,Brooklyn,Greenpoint,40.73033,-73.95799,Entire home/apt,200,2,1,2019-06-17,1,1,0 +34330345,Full-renovated my own 1 bedroom apartment,218511760,Зіна,Brooklyn,Gravesend,40.59662,-73.99113,Entire home/apt,140,1,0,,,1,0 +34330817,"Bright, Sunny and Budget friendly rental",240239465,Okhela,Queens,St. Albans,40.70099,-73.75497,Private room,40,2,0,,,2,84 +34331364,Captivating Central Park TownHouse 3Bed/2BA,258250399,Annette,Manhattan,Upper East Side,40.78402,-73.95201,Entire home/apt,399,5,3,2019-06-26,3,1,135 +34331687,Bayside Room,252440873,Luisa,Queens,Bayside,40.76176,-73.76511,Private room,40,31,0,,,1,69 +34331925,Entire Flat in Perfect Location (Nolita),2463994,Kiarash,Manhattan,Nolita,40.72223,-73.99544,Entire home/apt,200,1,1,2019-05-14,0.54,1,0 +34332734,Renovated Apartment in Brooklyn - Steps to G Train,1478269,Ben,Brooklyn,Bedford-Stuyvesant,40.6888,-73.95665,Entire home/apt,90,6,1,2019-06-21,1,2,0 +34334035,South Bronx Gathering Place,19903807,Carol,Bronx,Mott Haven,40.81132,-73.91715,Entire home/apt,145,3,1,2019-05-23,0.64,3,48 +34334524,Gorgeous room near the heart of Times Square,236425271,Shanae,Manhattan,Hell's Kitchen,40.76343,-73.99134,Entire home/apt,190,1,6,2019-06-29,2.95,1,299 +34334609,ROOM # 6 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68797,-73.83351,Private room,58,1,12,2019-07-03,5.45,7,179 +34335188,✴ Brand New & Quiet ✴ East Village ✴ 2BR Apt,221634296,Gabby,Manhattan,East Village,40.7265,-73.9822,Entire home/apt,341,2,4,2019-06-19,2.31,1,274 +34335356,The Sunshine Palace 2,236018119,Lucy,Queens,Queens Village,40.70842,-73.73843,Entire home/apt,175,1,0,,,3,0 +34336004,BEAUTIFUL Cozy 2 BEDS APT Upper East Side,51027036,Roe,Manhattan,Upper East Side,40.78016,-73.95029,Entire home/apt,280,3,0,,,1,45 +34336086,ROOM # 4 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68981,-73.83198,Private room,58,1,6,2019-07-07,2.73,7,176 +34336135,SHANEL'S 2 BR Apt 5 mins from JFK,259207391,Pauline,Queens,Jamaica,40.67626,-73.79809,Private room,150,1,4,2019-07-04,2.26,3,356 +34336147,Bright & Sunny Bushwick room w/ Rooftop & Balcony,8500390,Alida,Brooklyn,Bushwick,40.68927,-73.92062,Private room,90,2,3,2019-06-23,1.80,1,0 +34336194,ROOM # 7 Near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68782,-73.83348,Private room,53,1,12,2019-07-06,5.37,7,180 +34336328,Gorgeous Central Park Penthouse,78312516,Monica,Manhattan,Harlem,40.80036,-73.95598,Entire home/apt,299,4,2,2019-07-03,0.91,1,4 +34336417,ROOM # 8 near to JFK & LGA airport,258589420,Diego,Queens,Richmond Hill,40.68921,-73.83159,Private room,53,1,11,2019-06-26,4.93,7,176 +34336740,Upper West 1 Bedroom / 1 Bath. Lincoln Center,131647128,Emily,Manhattan,Upper West Side,40.77567,-73.988,Entire home/apt,190,30,2,2019-06-15,1.36,25,322 +34336812,"2 BR Apt close to LGA, JFK & Midtown (2A)",259229690,Rina,Queens,Woodside,40.74553,-73.89212,Entire home/apt,179,1,5,2019-06-30,2.59,4,23 +34337032,1 Bed/ 1 Bath / Columbus Circle/ Balcony,131647128,Emily,Manhattan,Upper West Side,40.77076,-73.98671,Entire home/apt,190,30,0,,,25,181 +34337151,STUNNING 2BR ON MCCARREN PARK WITH PARKING SPOT!,62014210,Sara,Brooklyn,Greenpoint,40.72155,-73.94671,Entire home/apt,700,15,0,,,1,24 +34337153,Bay windows/Huge room FULLY FURNISHED,34209884,Leul,Brooklyn,Bushwick,40.68746,-73.91254,Private room,49,3,1,2019-05-31,0.75,1,158 +34337267,Beautiful Studio Steps from Subway (BLUE),29582232,Lee And Teri,Brooklyn,Flatbush,40.64051,-73.96427,Entire home/apt,85,3,5,2019-06-30,5,5,113 +34337319,1 Bed/ 1 Bath / Columbus Circle/ High Floor,131647128,Emily,Manhattan,Upper West Side,40.77033,-73.98521,Entire home/apt,190,30,1,2019-05-13,0.53,25,189 +34337574,Cozy Room in the Upper East Side,157068054,Tim & Cecilia,Manhattan,East Harlem,40.79252,-73.94055,Private room,49,3,8,2019-07-05,4.07,1,16 +34337649,Charming And Cozy Extra Large Private Room+Parking,70528858,Meital,Brooklyn,Sheepshead Bay,40.60111,-73.95702,Private room,50,2,7,2019-06-21,3.82,1,124 +34337805,Ridgewood Love,7505535,Magnificent Mohamad,Queens,Ridgewood,40.70513,-73.901,Private room,149,1,0,,,1,180 +34337953,MASTER ROOM # 1 near To JFK & LaGuardia airport,258589420,Diego,Queens,Richmond Hill,40.68929,-73.83221,Private room,80,1,11,2019-07-07,5.00,7,179 +34338645,MASSIVE zen garden Master BR in Chelsea,233270180,Sam,Manhattan,Chelsea,40.74386,-73.99344,Private room,85,30,1,2019-05-07,0.48,1,69 +34338806,"Sunny, convenient and comfortable!",18270302,Ameera,Manhattan,Upper East Side,40.77633,-73.95266,Private room,94,4,2,2019-06-10,1.30,2,77 +34339330,"Gorgeus Double Room, Hell's Kitchen!",250689404,Xavier,Manhattan,Hell's Kitchen,40.76183,-73.99281,Private room,95,3,9,2019-07-06,4.58,1,94 +34339714,Simply but comfy,246887851,Yuvraj,Queens,Elmhurst,40.74184,-73.88393,Private room,42,2,6,2019-06-29,2.77,1,292 +34340299,Spacious 1 bed apartment with private terrace,41213523,Mathieu,Manhattan,East Village,40.72925,-73.98005,Entire home/apt,250,2,4,2019-05-08,1.88,1,0 +34340357,Cozy private Studio Suite,4852748,Michelle,Manhattan,Harlem,40.80497,-73.94592,Private room,145,3,1,2019-05-22,0.63,6,365 +34340593,Beaut room 10min away from the city with Prkg Avbl,247092108,Jackie,Queens,Astoria,40.76701,-73.91208,Private room,79,1,2,2019-05-22,1.05,3,281 +34340758,Stunning views - prime Gramercy/Flatiron location!,257406510,Jayelle,Manhattan,Flatiron District,40.74054,-73.98681,Entire home/apt,389,4,4,2019-07-01,2.26,1,65 +34340833,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71702,-73.76761,Private room,50,1,5,2019-06-30,3.00,3,89 +34340887,Clean and comfortable place,259261655,Kay,Queens,Astoria,40.77098,-73.91952,Entire home/apt,150,1,7,2019-06-16,3.18,1,25 +34341008,Large room min away from city/Prkg available,247092108,Jackie,Queens,Astoria,40.76807,-73.91341,Private room,110,1,0,,,3,0 +34341449,SINGLE ROOM AVAILABLE IN JAMAICA NEAR JFK & LGA,259078758,Moolchand,Queens,Hollis,40.71606,-73.76777,Private room,50,1,4,2019-06-30,1.76,3,89 +34341588,*Charismatic 1 BR Apartment in Heart of Chelsea*,5588820,Teddy,Manhattan,Chelsea,40.74392,-74.00301,Entire home/apt,159,3,4,2019-07-01,2.93,1,1 +34341669,Sonder | 116 John | Relaxed 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70673,-74.0051,Entire home/apt,130,29,0,,,327,361 +34341721,"5mins Waterfront, McCarren, 25mins to Times Sq",23436595,Greem,Brooklyn,Greenpoint,40.73002,-73.95636,Private room,61,1,5,2019-06-15,3.06,2,138 +34341994,Sonder | 116 John | Polished 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70781,-74.00525,Entire home/apt,179,29,1,2019-06-24,1,327,339 +34343028,Cozy Bronx Apartment Near Yankee Stadium!!!,259282634,Dametria,Bronx,Morris Heights,40.84752,-73.92293,Private room,130,1,0,,,1,180 +34343208,Convenient room in Hell’s Kitchen,34689714,Maria,Manhattan,Hell's Kitchen,40.76595,-73.98643,Private room,120,1,10,2019-06-23,4.76,5,357 +34343752,GORGEOUS WEST CHELSEA TWO BEDROOM with roof deck!,5007316,David,Manhattan,Chelsea,40.74781,-74.00084,Entire home/apt,195,1,6,2019-06-29,2.77,1,2 +34343990,Charming Private Bedroom in the Trees,7931702,Gregory,Brooklyn,Williamsburg,40.71238,-73.94848,Private room,70,1,2,2019-06-18,1.20,1,0 +34344713,Cozy spacious 1 be avail for June,164907052,Elise,Manhattan,East Harlem,40.78599,-73.94256,Private room,45,14,0,,,1,2 +34345079,Queen size room suitable for family of 4,251859047,Errol,Brooklyn,Crown Heights,40.67592,-73.92341,Private room,75,2,2,2019-06-18,2,3,158 +34345206,Huge room w/ king size bed in coop brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.67957,-73.95548,Private room,75,2,3,2019-07-02,1.84,4,22 +34345469,Sunny Private Room close to Manhattan (purple),259307063,Jian F,Brooklyn,Bushwick,40.69745,-73.92887,Private room,76,2,11,2019-07-04,6.23,1,102 +34345750,"Luxurious apartment, accessible 2 transportations",134762059,Renee,Brooklyn,Canarsie,40.63149,-73.90797,Private room,50,1,2,2019-06-11,0.88,2,365 +34345976,Luxury 2 Bedroom Apartment,175166282,Zhanhong,Manhattan,Financial District,40.70896,-74.00695,Entire home/apt,220,30,0,,,1,49 +34346014,Cosy crisp clean pad in Williamsburg,3203693,David,Brooklyn,Williamsburg,40.70996,-73.95121,Entire home/apt,100,6,1,2019-07-03,1,1,7 +34350718,cute comfortable & furnished heart of times square,207795404,Ros,Manhattan,Hell's Kitchen,40.75966,-73.98928,Entire home/apt,141,30,0,,,2,115 +34352766,*PRIVATE* Bedroom near Central Park,259357065,Clement,Manhattan,Midtown,40.76381,-73.97314,Private room,175,3,0,,,1,0 +34353572,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,255697979,Heleen,Brooklyn,DUMBO,40.70412,-73.99194,Entire home/apt,200,30,0,,,2,365 +34353944,SPECTACULAR LOFT OVERLOOKING THE MANHATTAN SKYLINE,255697979,Heleen,Brooklyn,DUMBO,40.70254,-73.99189,Entire home/apt,200,30,0,,,2,334 +34356012,Entire Apartment -the best for relax and enjoy NYC,30686388,Giovanni,Manhattan,Midtown,40.75568,-73.96675,Entire home/apt,240,4,1,2019-06-18,1,1,19 +34356642,Hamilton Heights is fancy!,259380331,Rene,Manhattan,Harlem,40.83052,-73.95014,Private room,100,3,8,2019-06-25,3.87,1,359 +34356850,Huge One Bedroom Haven In The Heart Of Manhattan,1413085,Rosie,Manhattan,Gramercy,40.73525,-73.98074,Entire home/apt,150,14,0,,,1,0 +34357913,The Brooklyn Nook Beautiful furnished private room,6600505,Jami,Brooklyn,Bedford-Stuyvesant,40.69319,-73.95473,Private room,60,6,0,,,2,67 +34358402,A little Gem in the heart of Boerum Hill Brooklyn.,259393574,Sandee,Brooklyn,Boerum Hill,40.68656,-73.98842,Entire home/apt,182,4,0,,,1,70 +34358866,Harlem Residence 3,19201987,Kayser,Manhattan,Washington Heights,40.83416,-73.94327,Private room,55,2,2,2019-07-02,2,1,86 +34360431,Cozy and humble room in a great neighborhood!,65770853,Adriana,Brooklyn,Clinton Hill,40.68822,-73.96018,Private room,55,2,1,2019-05-12,0.51,1,11 +34361793,2 BR apt close to LGA / JFK / Midtown (2B),259229690,Rina,Queens,Woodside,40.74494,-73.89255,Entire home/apt,150,1,4,2019-05-27,2.07,4,56 +34362400,Duplex great stay City center,234623462,Alan,Queens,Flushing,40.75565,-73.83361,Entire home/apt,688,3,0,,,1,365 +34363827,LIC 1BR Large Living Room - Great View Summer Apt,34741551,Liane,Queens,Long Island City,40.74702,-73.95676,Entire home/apt,123,30,0,,,1,0 +34363955,Lower East Side with a View,10166570,Nachi,Manhattan,East Village,40.72246,-73.98455,Entire home/apt,230,1,1,2019-05-10,0.50,1,0 +34364713,"2 BR Apt close to LGA,JFK & Midtown (3A)",259229690,Rina,Queens,Woodside,40.74479,-73.89199,Entire home/apt,179,1,5,2019-07-07,2.54,4,76 +34364716,La Kings Highway unwinding,2123674,Rabi & Soukaina,Brooklyn,Sheepshead Bay,40.60939,-73.95475,Private room,70,3,0,,,1,83 +34365364,"Warm, Comfortable, and Joyful Loft in Brooklyn",68869481,Geraldine,Brooklyn,Gowanus,40.67152,-73.98991,Entire home/apt,180,10,3,2019-06-23,2.09,1,5 +34365445,"2 BR Apt close to LGA, JFK & Midtown (3B)",259229690,Rina,Queens,Woodside,40.74632,-73.89382,Entire home/apt,179,1,4,2019-07-05,2.22,4,75 +34366331,Large 1-bed in a beautiful doorman condo,87573942,Dipika,Manhattan,Upper East Side,40.7636,-73.96201,Entire home/apt,150,7,1,2019-07-05,1,1,93 +34367165,"Stylish, Dog-friendly Williamsburg One-Bedroom",259459612,Egle,Brooklyn,Williamsburg,40.70809,-73.9661,Entire home/apt,240,2,2,2019-06-19,1.40,1,0 +34368051,Home Away from Home,95570540,Eileen,Staten Island,Oakwood,40.56054,-74.12004,Entire home/apt,130,1,1,2019-06-26,1,3,363 +34368310,NEW ! Chic Designer Blue,259468466,Jack,Manhattan,Lower East Side,40.71329,-73.98787,Private room,89,4,12,2019-07-03,6.67,2,168 +34368412,Your Sanctuary next to Times Square New York,259087876,Dennis,Manhattan,Midtown,40.75721,-73.98013,Private room,150,1,8,2019-06-23,4.21,7,50 +34368774,Cozy one bed room 15 minutes' away from Manhattan,42916011,Yang,Queens,Sunnyside,40.74368,-73.92421,Private room,88,8,0,,,2,363 +34368927,Full floor of our gorgeous Harlem brownstone,20906077,Jordon,Manhattan,Harlem,40.81155,-73.94339,Entire home/apt,165,4,3,2019-06-01,1.55,1,0 +34369031,Heart of Times Square modern apartment,205386178,Ruby,Manhattan,Theater District,40.75977,-73.98245,Entire home/apt,160,2,1,2019-06-11,1,1,4 +34369458,SUMMER SALE! Huge 3 Bedroom/ 2Bath Full-Floor LOFT,61924400,Alex,Manhattan,East Harlem,40.79805,-73.93399,Entire home/apt,379,4,5,2019-07-07,3.06,1,219 +34369607,Lovely and affordable place in the Bronx,178924110,Roukayatou,Bronx,Hunts Point,40.81415,-73.88671,Private room,36,1,9,2019-06-21,4.09,2,97 +34369689,Pat's Place2,256743247,Patricia,Queens,Bayside,40.7712,-73.78189,Private room,32,2,7,2019-07-05,5.68,2,302 +34370061,Your New York Retreat next to Times Square,259087876,Dennis,Manhattan,Theater District,40.75861,-73.98231,Private room,200,1,5,2019-06-06,2.42,7,51 +34370217,Room w/washer dryer updated apt. near Whole Foods,62066342,Rafaelo,Manhattan,Harlem,40.80885,-73.95022,Private room,98,1,2,2019-06-05,0.94,2,1 +34370296,Ideal Bedroom in a Friendly Neighborhood,89599593,Fernando,Staten Island,South Beach,40.59318,-74.08594,Private room,99,1,2,2019-06-30,2,1,176 +34370336,Sunny room in brownstone coop,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.68076,-73.95667,Private room,65,3,1,2019-05-11,0.50,4,31 +34370526,Private Studio Suite,4852748,Michelle,Manhattan,Harlem,40.80625,-73.94694,Private room,115,3,0,,,6,365 +34370542,Four points by Sheraton NY Downtown,38216858,Silver,Manhattan,Financial District,40.70877,-74.01466,Private room,270,1,0,,,4,362 +34370821,Spacious room 2mins from 52st-Woodside 7 train!,137358866,Kazuya,Queens,Woodside,40.74341,-73.91064,Private room,54,30,0,,,103,10 +34371018,"1 Bedroom , Beautiful Spacious Brownstone + Apt",85165113,LaTasha,Brooklyn,Bedford-Stuyvesant,40.6818,-73.91813,Entire home/apt,100,3,3,2019-06-01,1.73,2,120 +34371021,Comfy pad,259491984,Alexandra,Brooklyn,Brighton Beach,40.57543,-73.97565,Private room,100,1,0,,,1,362 +34371113,Big studio in Luxury building downtown Manhattan,231727934,Sky,Manhattan,Financial District,40.70708,-74.00992,Entire home/apt,230,5,1,2019-05-24,0.65,1,43 +34371447,AC New York Downtown AC Hotel by Marriott,38216858,Silver,Manhattan,Financial District,40.70796,-74.00288,Private room,270,1,0,,,4,365 +34371913,Brand New Luxury Apartment by Prospect Park,6080024,Jessica,Brooklyn,Flatbush,40.65365,-73.95592,Private room,75,1,3,2019-06-11,1.64,1,0 +34372376,Sunny and spacious room in South Williamsburg,259505436,Yaz,Brooklyn,Williamsburg,40.70153,-73.94709,Private room,85,2,3,2019-06-16,1.53,1,83 +34372753,Spacious Manhattan Apartment,40038018,Yves,Manhattan,Midtown,40.76152,-73.97176,Entire home/apt,449,5,2,2019-06-09,1.00,1,132 +34373538,Sophisticated Central Park LOFT - 4BEDs/2BATHs,258580215,Misael,Manhattan,Upper East Side,40.76956,-73.95632,Entire home/apt,399,6,3,2019-06-25,2.50,1,93 +34373985,Peaceful loft ‘2’,34643568,Dave,Manhattan,East Harlem,40.79072,-73.93972,Private room,85,3,4,2019-07-02,3.00,6,90 +34374201,Large clean 2 bdroom/ 1 bath apt near manh,87020760,Crystal,Brooklyn,Bushwick,40.68291,-73.90756,Entire home/apt,100,3,4,2019-06-14,2.22,1,26 +34375381,Some of the Best Food in all New York City,179857032,Nicholas,Brooklyn,Sunset Park,40.6394,-74.01655,Entire home/apt,82,3,2,2019-06-09,1.11,1,0 +34378303,A Home Away from Home!,259544961,Miata,Manhattan,Harlem,40.81791,-73.94246,Private room,65,3,3,2019-07-02,1.80,1,56 +34378941,纽约曼哈顿中城临近高校舒适公寓-仅限女性入住,76679800,Windy,Manhattan,Kips Bay,40.74141,-73.97684,Private room,100,28,1,2019-05-05,0.46,2,51 +34383329,"A private bedroom in Chelsea , Manhattan.",53254710,Aamito,Manhattan,Chelsea,40.73957,-74.00082,Private room,85,2,4,2019-06-30,1.90,1,76 +34383611,Spacious Room in a charming brownstone apartment,877452,Rebecca,Brooklyn,Park Slope,40.68182,-73.97954,Private room,95,5,0,,,1,0 +34384453,#1 NY Perfect Destination . Hells' kitchen!!,259262728,Naomi,Manhattan,Hell's Kitchen,40.76059,-73.9965,Entire home/apt,290,3,4,2019-07-01,2.45,1,23 +34384580,Brownstone Oasis with Garden Perfect For a Family,48859528,Gabriella,Brooklyn,Bedford-Stuyvesant,40.68189,-73.93799,Entire home/apt,190,3,2,2019-07-01,1.43,1,0 +34384645,The BEAUTY & the EAST/free street parking & WIFI,219738858,Joe,Manhattan,East Village,40.7307,-73.98299,Entire home/apt,120,365,4,2019-05-17,1.90,5,305 +34384745,*20%OFF-Amazing Heart of NYC! Steps to subway!,104084124,Jeanne,Manhattan,Upper East Side,40.76154,-73.95797,Entire home/apt,161,2,9,2019-06-28,4.15,1,317 +34384911,"Ideal Tribeca Studio w/ Gym, W/D, Doorman, Pool, View by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71634,-74.00694,Entire home/apt,305,30,0,,,232,309 +34384950,"Gorgeous Tribeca Studio w/ Gym, W/D, Doorman, Pool, View, by Blueground",107434423,Blueground,Manhattan,Tribeca,40.71663,-74.00647,Entire home/apt,269,30,0,,,232,235 +34384958,Spacious and welcoming studio apartment,57412032,John,Manhattan,Upper East Side,40.77984,-73.95231,Entire home/apt,113,30,0,,,1,192 +34385166,"Dream-nest with elements of class and ""flavor""!!",91263364,Agatha,Manhattan,Harlem,40.81662,-73.94209,Private room,135,4,0,,,1,66 +34386648,"""In The Heights"" Luxurious triplex in historic TH",27973267,Gus,Manhattan,Washington Heights,40.84956,-73.93271,Entire home/apt,595,2,4,2019-06-01,2.35,5,39 +34387952,"Your Luxury Manhattan Mansion! Quiet, Near it all.",244229787,Natalia,Manhattan,West Village,40.73916,-74.00511,Entire home/apt,250,2,1,2019-06-05,0.88,1,61 +34387993,Modern 2BED/2BATH In Midtown East - 3BEDs,257867265,Asher,Manhattan,Upper East Side,40.76173,-73.96216,Entire home/apt,299,5,3,2019-06-26,1.91,1,119 +34388266,Williamsburg Spacious room w/ Balcony and Bathroom,35645401,Adam,Brooklyn,Williamsburg,40.71926,-73.95485,Private room,69,3,1,2019-05-12,0.52,1,0 +34388360,Penthouse with Manhattan Views,191407795,Ariana,Queens,Maspeth,40.72807,-73.89826,Entire home/apt,149,2,0,,,1,327 +34388788,Gracious Loft in Perfect Midtown Location,257999371,Nikoulas & Julie,Manhattan,Upper East Side,40.76193,-73.95895,Entire home/apt,199,5,9,2019-07-01,4.66,1,164 +34389381,"Striking 1,500sf Full-Floor 3BD Loft in Flatiron",259474660,Fabio & Angie,Manhattan,Gramercy,40.73745,-73.98168,Entire home/apt,399,5,6,2019-07-01,3.27,1,182 +34389680,Beautiful bedroom is Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.70056,-73.9184,Private room,50,1,1,2019-05-05,0.45,5,328 +34389896,Sumptin' Simple on Sumpter,258035043,Sofia,Brooklyn,Bedford-Stuyvesant,40.68079,-73.91893,Private room,48,1,14,2019-06-30,6.36,2,249 +34389997,"Fantastic 2 bedroom Apt near Subway, Cafes & More",258577680,Francisco,Manhattan,Upper East Side,40.77146,-73.95482,Entire home/apt,365,6,2,2019-05-27,1.33,1,101 +34390308,"""In the Heights"" King Size Br w/shared baths.",27973267,Gus,Manhattan,Washington Heights,40.8509,-73.93345,Private room,75,1,9,2019-07-02,5.19,5,84 +34390645,"""In the Heights"" Love: 2 Queen beds. beautiful br.",27973267,Gus,Manhattan,Washington Heights,40.85115,-73.93223,Private room,150,1,4,2019-06-22,2.31,5,160 +34390686,Large sunny bedroom 5 mins from SI ferry,185401573,Akil,Staten Island,Stapleton,40.63443,-74.07573,Private room,50,1,10,2019-07-05,5.00,1,179 +34390910,"""In The Heights"" King Br w/on-suite shared bath.",27973267,Gus,Manhattan,Washington Heights,40.85078,-73.93195,Private room,150,1,7,2019-06-21,5.12,5,185 +34390993,Big one bed room-upper east side,259623238,Tom,Manhattan,Upper East Side,40.7765,-73.95458,Entire home/apt,200,3,0,,,1,0 +34391029,Splendid 2BED/2BATH Midtown EAST LOFT,258221896,Ariel,Manhattan,Upper East Side,40.76256,-73.96389,Entire home/apt,250,6,7,2019-06-22,3.56,1,100 +34391036,"""In The Heights"" 2 Queen Beds in Huge Private Br.",27973267,Gus,Manhattan,Washington Heights,40.84942,-73.93223,Private room,150,1,9,2019-06-29,5.19,5,188 +34391119,Private bedroom located in the heart of Harlem,259623647,Asta,Manhattan,Harlem,40.8036,-73.95308,Private room,150,4,0,,,1,88 +34391530,Astonishing 2 Bd Apartment in the Upper East Side,23458616,Erick,Manhattan,Upper East Side,40.76711,-73.95916,Private room,350,4,4,2019-06-15,2.67,1,143 +34391964,Fabulous 2Bedroom/1.5Baths Duplex near Broadway,257837216,Allan,Manhattan,Upper West Side,40.80249,-73.96588,Entire home/apt,335,5,5,2019-06-24,3.19,1,221 +34392044,Lovely and affordable place in the Bronx,178924110,Roukayatou,Bronx,Hunts Point,40.81258,-73.88566,Private room,40,1,11,2019-06-20,5.08,2,121 +34392073,Designer 4 Bedroom + 2Bath Duplex Condo in Midtown,166700941,Peter & Giulia,Manhattan,Midtown,40.75785,-73.96905,Entire home/apt,399,5,8,2019-07-01,3.81,1,145 +34392081,Hello! This is a very cozy space in Williamsburg.,259630588,Alina,Brooklyn,Williamsburg,40.71863,-73.9498,Private room,100,1,28,2019-06-26,14.00,2,20 +34392407,Beautiful three bedroom on Wall Street!,258754678,Egon,Manhattan,Financial District,40.70581,-74.00784,Entire home/apt,320,2,7,2019-07-04,4.20,1,189 +34392437,"Quiet, Convenient 1-Bedroom in Morningside Heights",259447786,Jacob,Manhattan,Morningside Heights,40.80735,-73.95938,Entire home/apt,150,2,4,2019-06-23,2.55,1,101 +34392767,Amazing Studio at the Time square area/51B,48146336,Irina,Manhattan,Hell's Kitchen,40.76121,-73.99333,Entire home/apt,120,30,1,2019-06-11,1,20,340 +34393554,Mini Casa,247013511,Frank,Queens,Jackson Heights,40.75231,-73.8756,Entire home/apt,69,2,3,2019-05-19,1.50,6,36 +34393812,Spacious Modern 2bd Whole Flat @ Heart of Brooklyn,95688223,Ethan,Brooklyn,Prospect Heights,40.67436,-73.96704,Entire home/apt,250,4,6,2019-06-28,5.29,1,92 +34393891,Sunny Private Sanctuary w High Ceilings,234270791,April G,Brooklyn,Bushwick,40.6961,-73.9307,Private room,64,3,1,2019-05-22,0.63,3,178 +34393999,Amazing apartment on Wall Street!,258783968,Baktiar,Manhattan,Financial District,40.70532,-74.00681,Entire home/apt,340,2,1,2019-06-24,1,1,302 +34394253,Private bedroom#2 for female in shared housing,233831164,Maki,Brooklyn,Prospect-Lefferts Gardens,40.66005,-73.94216,Private room,40,3,0,,,1,11 +34394888,Room w/ lots of Natural Light. Near 69st 7 train.,137358866,Kazuya,Queens,Woodside,40.743,-73.89444,Private room,47,30,0,,,103,246 +34396019,Cozy and bright bedroom next to the train station,259483928,Lizbeth,Queens,Glendale,40.70502,-73.89547,Private room,49,1,1,2019-06-02,0.79,1,70 +34396219,"Private Modern Studio in South Slope, Brooklyn!",3414140,Fanny + Matthew,Brooklyn,South Slope,40.66329,-73.98527,Entire home/apt,119,3,6,2019-06-27,4.86,1,45 +34396674,Cozy sun-fillled Astoria RM near Broadway station.,137358866,Kazuya,Queens,Astoria,40.76571,-73.92758,Private room,48,30,0,,,103,242 +34396747,Double Room,95570540,Eileen,Staten Island,Oakwood,40.55908,-74.11992,Private room,65,1,1,2019-06-14,1,3,364 +34396858,"LUXURY Brownstone, 13 ft ceilings, exposed brick",37149108,Steve,Manhattan,Midtown,40.74534,-73.98108,Entire home/apt,250,3,0,,,1,364 +34397198,Tranquility on Times Square VIP Room King Bed,259087876,Dennis,Manhattan,Midtown,40.75845,-73.98026,Private room,325,1,6,2019-06-28,3.21,7,67 +34397351,Unique 3Bedroom apartment 2block from Times Square,15546865,Dmitriy & Amy,Manhattan,Hell's Kitchen,40.7622,-73.99119,Entire home/apt,485,5,2,2019-06-12,1.46,1,240 +34397646,Charming Bedstuy Brownstone,257035928,Kyle,Brooklyn,Bedford-Stuyvesant,40.68426,-73.91937,Entire home/apt,110,3,4,2019-07-07,4,1,252 +34397915,A sunlit spacious room in Soho,69720852,Yana,Manhattan,SoHo,40.72159,-74.00022,Private room,115,7,1,2019-07-02,1,3,59 +34398878,"Large, Bright & Cozy Retreat-2 in B'klyn",221275418,Rufina,Brooklyn,Bedford-Stuyvesant,40.67918,-73.93727,Private room,55,2,7,2019-06-23,3.44,3,360 +34399142,Cozy Studio! Easy Access to Train to Manhattan!,259683532,Jacob,Queens,Ridgewood,40.70576,-73.89808,Entire home/apt,99,3,10,2019-07-02,5.26,1,152 +34399221,Spacious 1 BDRM w/ Backyard of DREAMS in Manhattan,6279234,Marissa,Manhattan,Harlem,40.80948,-73.95514,Entire home/apt,148,4,1,2019-07-08,1,1,8 +34399801,Fabulous gut renovated apt 15 minutes to Midtown,21040187,Maja,Manhattan,Washington Heights,40.84367,-73.93728,Entire home/apt,95,7,1,2019-05-31,0.77,1,25 +34399874,Chelsea gem in the middle of Manhattan.,241322481,Robert,Manhattan,Chelsea,40.74566,-73.99579,Entire home/apt,300,3,6,2019-06-29,3.40,1,180 +34399984,Two private rooms,259690766,Souadou,Bronx,Belmont,40.85648,-73.88501,Private room,95,2,4,2019-07-01,2.35,1,325 +34400497,An ideal place for your peace of mind,259694336,Joseph,Queens,Springfield Gardens,40.66899,-73.76163,Private room,70,4,3,2019-06-10,1.76,1,69 +34401135,Awesome Private Room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68063,-73.91375,Private room,50,2,1,2019-05-05,0.45,10,361 +34401334,Beautiful Room in BK!,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68022,-73.91423,Private room,40,2,4,2019-06-12,1.82,10,350 +34401906,New York Modern Apartment,34075689,Zhen Zhen,Queens,Maspeth,40.72167,-73.90095,Entire home/apt,145,7,2,2019-05-29,1.22,3,38 +34402039,Bedstuy Brownstone apartment with a backyard,1237632,Melaney,Brooklyn,Bedford-Stuyvesant,40.68965,-73.9288,Private room,65,7,0,,,1,0 +34402760,Midtown East Amazing 2BR Prime Area,256569979,Candice,Manhattan,Upper East Side,40.76163,-73.96523,Entire home/apt,149,30,1,2019-05-28,0.71,1,0 +34403759,( GREEN ROOM) Private in a Beautiful Town House,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68447,-73.9396,Private room,42,2,9,2019-07-01,4.91,3,64 +34404561,Prime Midtown!Steps to Grand Central!,256573368,Nathan,Manhattan,Midtown,40.75436,-73.97254,Entire home/apt,89,3,1,2019-05-17,0.57,1,186 +34410542,Cozy Beautiful 2 bedrooms apartment.,253448038,Ramon,Manhattan,Hell's Kitchen,40.7561,-73.99097,Entire home/apt,300,3,12,2019-06-25,6.92,2,61 +34411020,Super Spacious room in Brooklyn,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.6788,-73.92722,Private room,43,1,4,2019-06-10,2.00,3,343 +34411728,Villa in Astoria,17622034,Omar,Queens,Astoria,40.7708,-73.93084,Private room,78,3,0,,,1,5 +34413436,"Bed only ladys, near LaGuardia & Manhattan",223087887,Jess & Ana,Queens,Corona,40.74262,-73.86674,Shared room,25,1,12,2019-07-07,6.00,8,351 +34413482,1 Bed in the Living Room Shared Stay for Male,172369331,Abby,Brooklyn,Coney Island,40.57607,-73.9833,Shared room,25,5,1,2019-05-31,0.75,10,129 +34413765,Donat Apartment,117364815,Donat,Queens,Astoria,40.75978,-73.90851,Private room,103,30,0,,,1,359 +34414240,DELIGHTFUL 3Bed Upper East Side LOFT ~CENTRAL PARK,258254263,Tyler,Manhattan,Upper East Side,40.78323,-73.95094,Entire home/apt,349,5,4,2019-06-22,2.67,1,93 +34414462,1 BEDROOM BASEMENT APARTMENT NEXT TO ASTORIA PARK,86181642,Grace,Queens,Astoria,40.77352,-73.92836,Entire home/apt,150,1,5,2019-06-16,2.38,1,24 +34415309,"Cozy, Furnished Room in Prime UWS W70s/Columbus",816014,Ljubica,Manhattan,Upper West Side,40.78032,-73.97812,Private room,55,90,0,,,1,193 +34415315,Very charming apartment in Carroll Gardens,4617977,Clau,Brooklyn,Carroll Gardens,40.67967,-73.99665,Entire home/apt,157,20,0,,,1,12 +34415448,Wall St - FiDi - Art Deco Luxury Apartment,2126138,Alwin,Manhattan,Financial District,40.70471,-74.0087,Entire home/apt,160,2,3,2019-06-23,2.00,1,8 +34415489,Gracious 5 Bedroom/2Bath Home by Central Park West,258003068,Hugo & Amelia,Manhattan,Upper West Side,40.79939,-73.96229,Entire home/apt,479,5,5,2019-06-18,2.68,1,159 +34415580,Chelsea one bedroom with private terrace,17477908,Mat,Manhattan,Chelsea,40.74557,-74.00825,Entire home/apt,280,30,0,,,10,365 +34415643,Bright & Meditative room in Williamsburg!,22553147,Michael H.Y.,Brooklyn,Williamsburg,40.71143,-73.94189,Private room,69,1,9,2019-07-04,8.18,3,318 +34415755,Gorgeous 7-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75297,-73.93698,Entire home/apt,499,1,0,,,10,341 +34415817,"""The quick get a way""",241454071,Leyland,Bronx,Hunts Point,40.81892,-73.8859,Private room,35,2,4,2019-07-04,4,2,27 +34416046,Private Loft Room w/Bathroom,212171922,Cha,Brooklyn,Bedford-Stuyvesant,40.68623,-73.92231,Private room,60,1,9,2019-06-19,4.35,1,147 +34416169,Big private room at Brooklyn close to the subway,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.6776,-73.91404,Private room,58,2,4,2019-06-16,2.35,5,168 +34416233,"Sunny two-bedroom apt in Jackson Heights, Queens",33229910,Angele,Queens,Jackson Heights,40.75312,-73.8812,Entire home/apt,120,7,0,,,1,58 +34416461,Amazing room at Brooklyn close to subway station,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67853,-73.91262,Private room,58,2,3,2019-07-08,1.48,5,167 +34416547,Gorgeous 4-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75509,-73.93703,Entire home/apt,299,1,2,2019-07-05,1.62,10,341 +34416741,Gorgeous 3-bed-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75334,-73.93631,Entire home/apt,299,1,3,2019-06-10,2.05,10,357 +34416762,Great room at Brooklyn close to the subway station,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.6792,-73.91411,Private room,58,2,4,2019-06-30,2.14,5,164 +34416958,Comfortable room at Brooklyn close to the subway,251311623,Vitória,Brooklyn,Bedford-Stuyvesant,40.67757,-73.91314,Private room,58,2,8,2019-07-04,6.67,5,171 +34417476,Gorgeous LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.7546,-73.93506,Private room,99,1,9,2019-06-20,4.15,10,360 +34417565,Friend Hostel,93598122,Evgen,Brooklyn,Brighton Beach,40.58002,-73.96596,Private room,100,2,7,2019-06-23,3.44,1,31 +34417762,Cozy LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75386,-73.93677,Private room,79,1,15,2019-07-03,7.26,10,348 +34417846,Fantastic Duplex LOFT 2BED/1.5BATH by Metro,258629654,Joseph,Manhattan,Kips Bay,40.7447,-73.97959,Entire home/apt,299,6,8,2019-07-05,4.36,1,158 +34418059,Cozy studio - heart of Manhattan!,6710372,Arantza,Manhattan,Hell's Kitchen,40.7633,-73.9878,Entire home/apt,200,2,2,2019-06-02,1.36,1,5 +34418130,Room in NyCs Local Fave Neighborhood,259816232,Rachel,Manhattan,Lower East Side,40.71977,-73.98423,Private room,128,1,0,,,2,365 +34418565,"NYC 3 bed, full frnshd Apt, city 5 mins - Monthly",251229393,Rafu,Queens,Sunnyside,40.74546,-73.93341,Entire home/apt,149,4,2,2019-06-12,1.11,2,298 +34418592,Best private room A in Brooklyn close to Subways,243129380,Nubia,Brooklyn,Bushwick,40.68581,-73.90838,Private room,58,2,6,2019-06-21,3.05,4,122 +34419094,Lovely LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75314,-73.93644,Private room,89,1,9,2019-06-23,4.50,10,357 +34419243,Beautiful LIC-Lush garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75317,-73.93502,Private room,99,1,7,2019-06-01,3.44,10,352 +34419244,Cute LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75502,-73.9349,Private room,79,1,8,2019-07-07,4.14,10,360 +34419247,Cutest LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75411,-73.93634,Private room,89,1,9,2019-06-16,6.28,10,358 +34419439,Spacious bright classic apt in Ridgewood,189421403,Stefan,Queens,Ridgewood,40.70539,-73.90857,Entire home/apt,155,2,2,2019-06-10,1.00,3,59 +34419562,AMAZING ONE MONTH SUBLET IN WILLIAMSBURG!,259826953,Yaron,Brooklyn,Williamsburg,40.71741,-73.95691,Private room,99,3,4,2019-06-04,2.26,2,180 +34419723,420 + Sunny! Private room w/balcony,34356520,Jacquelyn,Queens,Ridgewood,40.71104,-73.90303,Private room,65,2,7,2019-06-16,4.04,1,104 +34419753,Budget LIC-Beautiful garden-Midtown1stop-Breakfast,259796664,Santi,Queens,Long Island City,40.75358,-73.93703,Private room,79,1,15,2019-07-03,7.14,10,350 +34419834,Gorgeous Midtown West LOFT 3BEDS/1.5BATH XL,258073534,Roberto,Manhattan,Hell's Kitchen,40.76557,-73.98399,Entire home/apt,399,6,5,2019-06-16,2.59,1,105 +34419922,Hippie vibe spot,211941129,Katarzyna,Brooklyn,Greenpoint,40.7261,-73.95842,Private room,70,1,0,,,2,0 +34420067,"IDEAL location in Brooklyn, Cozy private room",163012750,Alexis,Brooklyn,Park Slope,40.68234,-73.97677,Private room,80,6,0,,,1,44 +34420423,Quirky 1 BR / Studio in Heart of East Village,19509387,Greg,Manhattan,East Village,40.72592,-73.98701,Entire home/apt,600,2,1,2019-05-26,0.68,1,0 +34420441,SUNNY PRIVATE ROOM & BACKYARD in ♥︎ WILLIAMSBURG,246680134,Anastasiia,Brooklyn,Williamsburg,40.71879,-73.95993,Private room,90,1,11,2019-07-07,5.59,2,58 +34420574,Cozy home away from home,259838485,Jenn And Mike,Bronx,Parkchester,40.83792,-73.85526,Entire home/apt,100,1,8,2019-06-23,4.71,1,51 +34420605,Great Apartment spacious quiet neighborhood 2BedR,178689185,Shem,Brooklyn,Prospect-Lefferts Gardens,40.66371,-73.94351,Entire home/apt,125,4,3,2019-05-27,1.64,1,145 +34420814,Beautiful Room + Private Bath Same St As Subway!,219727469,Marcelo,Brooklyn,Bedford-Stuyvesant,40.67903,-73.91037,Private room,60,1,2,2019-05-21,1.05,4,9 +34421245,Comfort in Quaint Jewel of Hudson Heights,840868,Ric,Manhattan,Washington Heights,40.85112,-73.93851,Entire home/apt,91,4,0,,,2,67 +34421507,Private bedroom in high-rise at Times Square,259846443,Charlie,Manhattan,Theater District,40.76127,-73.98579,Private room,130,2,10,2019-06-25,5.00,1,24 +34421663,2 Bedroom the NYs Most Poppin Neighborhood,259816232,Rachel,Manhattan,Lower East Side,40.71911,-73.98414,Entire home/apt,250,1,0,,,2,179 +34422468,Sunny West Village Artist Loft,7633037,Jesse,Manhattan,West Village,40.73731,-74.00929,Entire home/apt,140,25,0,,,2,73 +34422726,Home away from home,234422924,Arlene,Bronx,City Island,40.8439,-73.78792,Private room,29,1,2,2019-06-16,1.43,1,18 +34423018,cozy and extremely convenient apartment,187611907,Echo,Manhattan,Kips Bay,40.74079,-73.97965,Entire home/apt,134,30,0,,,1,90 +34424598,Bedroom in NYC - Minutes to Central Park!!!,140830391,Jay,Manhattan,Inwood,40.86191,-73.92726,Private room,125,2,1,2019-06-24,1,9,335 +34425422,★ ❤ 1 Sunny apartment for family and friends ★ ❤ ♛,259880452,Malik,Queens,Flushing,40.75502,-73.81582,Entire home/apt,119,2,4,2019-06-24,2.35,2,311 +34427740,小房间,48978249,QianWen,Queens,Flushing,40.75549,-73.82243,Shared room,200,1,0,,,2,72 +34428476,Huge and Bright Apartment on Wall Street,257802323,Dennis,Manhattan,Financial District,40.70485,-74.00752,Entire home/apt,360,3,3,2019-07-06,2.05,1,243 +34429111,Central Manhattan Shared Ladies Apartment,247453895,Kamila,Manhattan,Murray Hill,40.74532,-73.97534,Shared room,43,2,2,2019-06-01,1.43,3,358 +34429703,Amazing three bedroom apartment in Manhattan!,259376960,Simon,Manhattan,East Harlem,40.80068,-73.94072,Entire home/apt,280,2,6,2019-07-01,3.53,1,192 +34432701,THE STUDIO LODGE NYC,20012998,Víctor,Brooklyn,Bedford-Stuyvesant,40.68087,-73.92061,Private room,60,3,3,2019-06-30,2.31,2,322 +34433240,Use entire space 3 level home just redone 35%off,193835968,Angel,Bronx,Wakefield,40.89338,-73.84785,Entire home/apt,309,2,10,2019-06-30,5.56,1,173 +34435500,"1 bedroom in the heart of Chelsea, Highline",259945322,Arturo,Manhattan,Chelsea,40.74493,-74.00195,Entire home/apt,215,3,2,2019-06-08,0.97,1,45 +34436245,"Big, Sunny Room with Rooftop View-Midtown West",186302609,Bini,Manhattan,Hell's Kitchen,40.77157,-73.99309,Private room,150,9,0,,,1,141 +34438157,"Cozy, Brooklyn Room in the ""Middle of Everything!""",10568305,Gpa,Brooklyn,Crown Heights,40.66975,-73.92878,Private room,49,1,2,2019-06-24,2,1,325 +34438417,Beautiful Apartment in Hamilton Heights,145319773,Angel,Manhattan,Harlem,40.8212,-73.95479,Entire home/apt,115,6,3,2019-06-20,3,1,279 +34439098,FULLY RENOVATED APARTMENT - BRAND NEW,20025889,Fatri,Brooklyn,Gravesend,40.59846,-73.99175,Entire home/apt,85,60,0,,,2,87 +34439212,"Beautiful, large West Village apartment",4056392,David,Manhattan,West Village,40.73563,-73.99846,Entire home/apt,500,4,1,2019-05-27,0.70,1,0 +34439328,FULLY RENOVATED SECOND FLOOR FRONT VIEW APARTMENT,20025889,Fatri,Brooklyn,Gravesend,40.59935,-73.99053,Entire home/apt,85,60,0,,,2,87 +34440093,1 bedroom in lovely 2 bdr apartment (Manhattan),73195328,Uta,Manhattan,Harlem,40.8299,-73.94361,Private room,69,7,2,2019-06-26,1.71,1,30 +34441627,little heaven,259968030,Rosa,Brooklyn,Flatbush,40.64568,-73.96256,Private room,70,3,1,2019-05-14,0.53,1,105 +34441659,Brand new apartment. 2 month sublet,210800523,Gabo,Brooklyn,Bedford-Stuyvesant,40.68102,-73.91039,Private room,40,4,0,,,1,0 +34442975,BRKLYN SIMPLE ROOM,237729032,Samuel,Brooklyn,Cypress Hills,40.68603,-73.8782,Private room,40,1,1,2019-06-10,1,2,340 +34443205,"""Hop and Skip to NYC""",35819327,Annette,Staten Island,Rosebank,40.61471,-74.06679,Entire home/apt,135,2,1,2019-07-02,1,1,0 +34443679,The Logan’s Oasis - 8 min. to JFK & 20 min. to LGA,260009677,Heather,Queens,Jamaica,40.69242,-73.79673,Entire home/apt,90,2,14,2019-07-06,7.92,1,354 +34444336,Mott Haven Dorm-Bed G,174785358,Rem,Bronx,Port Morris,40.80816,-73.93176,Shared room,28,1,4,2019-06-14,2.07,7,64 +34444744,Large Private room queen bed near kitchen,147762665,Jose,Bronx,Wakefield,40.88649,-73.85889,Private room,37,1,12,2019-06-24,6.21,3,315 +34444939,Luxurious Apartment in Brooklyn,260021770,Mariana,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92335,Entire home/apt,150,2,7,2019-07-04,4.12,1,4 +34446024,Charming studio near Columbus Circle,4365051,Daria,Manhattan,Hell's Kitchen,40.77024,-73.99213,Entire home/apt,170,2,1,2019-06-30,1,1,0 +34446327,2 BR/2.5 BTH W/ 12 FT. CEILINGS NEAR CENTRAL PARK!,140823633,Clement,Manhattan,Midtown,40.76208,-73.97172,Entire home/apt,750,2,4,2019-07-03,2.22,1,263 +34446644,Double room in UPW minutes from Central Park,77220567,Chantal,Manhattan,Upper West Side,40.79727,-73.96865,Private room,85,3,1,2019-06-29,1,1,67 +34446664,Home away from home,260038086,Kimberly,Queens,Laurelton,40.6688,-73.74384,Entire home/apt,254,3,2,2019-06-03,1.46,1,24 +34446800,Sunlit Brooklyn Bedroom perfect for Summer,117187237,Patrick,Brooklyn,Bushwick,40.70371,-73.92877,Private room,50,14,6,2019-06-19,5.00,1,0 +34446898,Mott Haven Dorm-Bed H,174785358,Rem,Bronx,Port Morris,40.80856,-73.93055,Shared room,28,1,4,2019-06-22,2.03,7,71 +34446902,★Spacious bedroom in Midtown | Centrally Located★,164051353,Warren,Manhattan,Chelsea,40.74443,-73.99166,Private room,140,1,7,2019-06-28,3.75,3,87 +34447284,No Stairs 2BR near Times Square - very private!!,50868008,June And Eunice,Manhattan,Hell's Kitchen,40.76486,-73.99316,Entire home/apt,367,2,1,2019-06-21,1,1,229 +34447510,Prime apt in the heart of the LES,16212805,Helee,Manhattan,Lower East Side,40.71967,-73.9853,Entire home/apt,130,5,0,,,1,0 +34447529,Cozy UWS Studio Near Riverside Park,260046126,Morad,Manhattan,Upper West Side,40.78958,-73.9794,Entire home/apt,165,1,2,2019-06-30,1.33,1,346 +34448753,Madinina 2,116874533,Bertin,Manhattan,Harlem,40.81454,-73.94424,Private room,55,2,8,2019-07-02,4.44,2,330 +34449001,Serene + Spacious Bushwick Oasis,260062581,Hunter,Brooklyn,Bushwick,40.69619,-73.92973,Private room,45,5,3,2019-06-23,2.73,1,0 +34449070,15 min to Manhattan ENTIRE 1 big Br. APARTMENT,133398247,Patricia,Queens,Jackson Heights,40.74701,-73.89395,Entire home/apt,96,1,8,2019-06-24,4.44,1,157 +34449441,Stay in a Brownstone coop,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.67972,-73.9567,Private room,70,3,6,2019-07-01,2.90,4,20 +34449879,Large Room Summer Sublease - Astoria NYC,20810804,Ahmed,Queens,Ditmars Steinway,40.77922,-73.90752,Private room,35,85,0,,,1,228 +34450013,Cozy/Simple Private Room#1 in Broadway AVE,120875818,Rock,Brooklyn,Bushwick,40.69155,-73.92518,Private room,60,1,6,2019-06-29,3.91,2,167 +34451049,Charming East Village 1 Bedroom Apt close to all,54678020,Steven,Manhattan,East Village,40.72791,-73.98485,Entire home/apt,150,2,8,2019-06-24,4.36,1,67 +34451494,Stunning Time Square NYC Home Manhattan!!,258431072,Luzia,Manhattan,Hell's Kitchen,40.76326,-73.98612,Entire home/apt,345,3,2,2019-06-09,1.67,1,212 +34453822,Quiet Room Next to Times Square and Bryant Park,260191397,Hotel Mela,Manhattan,Theater District,40.75745,-73.98596,Private room,100,1,7,2019-06-17,4.04,7,296 +34453823,Comfort of a home!! Quiet Suite in Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75588,-73.987,Private room,100,1,0,,,7,293 +34453824,"Near Times Square, Rockefeller, Bryant Park, &more",260191397,Hotel Mela,Manhattan,Theater District,40.75575,-73.98736,Private room,100,1,0,,,7,294 +34453826,Spacious Room near Rockefeller Ctr & Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.7575,-73.98728,Private room,100,1,0,,,7,300 +34453828,Perfect Spot Between Bryant Park and Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75679,-73.98726,Private room,100,1,2,2019-06-15,2,7,300 +34453829,Spacious Private Queen in Heart of New York City!,260191397,Hotel Mela,Manhattan,Theater District,40.7559,-73.98562,Private room,100,1,2,2019-06-03,1.36,7,298 +34453830,Quiet Room * Family Friendly * Near Times Square,260191397,Hotel Mela,Manhattan,Theater District,40.75612,-73.98622,Private room,100,1,0,,,7,256 +34461661,Bright and Spacious Bushwick Room,53105192,Shawana,Brooklyn,Bushwick,40.69628,-73.92627,Private room,65,1,8,2019-06-12,3.87,1,3 +34462649,Private bedroom Cozy and Warm for girls ONLY,176899233,Vicky,Brooklyn,Kensington,40.64196,-73.97088,Shared room,65,1,0,,,2,27 +34464380,Williamsburg 2 Bed Condo-Sleeps 7,260159741,Yoel,Brooklyn,Williamsburg,40.71083,-73.96736,Entire home/apt,259,1,9,2019-06-22,6.00,1,202 +34464505,TIMES SQUARE Cozy private room,8033432,Tom,Manhattan,Hell's Kitchen,40.75865,-73.99,Private room,100,1,6,2019-06-23,3.40,4,116 +34465119,Large Studio Loft Centrally Located,6167891,Josh,Brooklyn,Williamsburg,40.70171,-73.94547,Entire home/apt,78,4,2,2019-07-02,2,1,14 +34465167,Stylish apartment in the heart of New York,22146650,Marion,Manhattan,Harlem,40.81257,-73.94444,Entire home/apt,178,2,2,2019-06-15,1.36,1,52 +34465289,Brand New PRIVATE garden level- Close to airport,20537772,Talia,Brooklyn,Cypress Hills,40.6819,-73.89097,Entire home/apt,135,2,3,2019-06-29,3,1,43 +34466803,Sunny spacious room full of good energy,1752807,Nilbia,Brooklyn,Bedford-Stuyvesant,40.69295,-73.94387,Private room,45,1,3,2019-07-02,1.58,2,0 +34467399,Sunny Quiet Bedroom Two Express Stops to Manhattan,27493716,Monica,Brooklyn,Sunset Park,40.64836,-74.00076,Private room,70,1,2,2019-07-02,1.30,2,361 +34468427,Gorgeous Midtown West LOFT - 4BEDs/2BATHs,257654201,Charles,Manhattan,Hell's Kitchen,40.76313,-73.99081,Entire home/apt,265,6,4,2019-07-01,2.26,1,45 +34468721,J & G Comfort Cove: Feel of luxury and tranquility,259776956,Gladwyn,Brooklyn,Canarsie,40.63031,-73.89618,Entire home/apt,140,1,5,2019-06-23,4.41,5,365 +34470040,"Brand new 2 bedroom, Steps To Manhattan",190869074,Marshall,Brooklyn,Sunset Park,40.6475,-74.01428,Entire home/apt,130,10,1,2019-05-25,0.65,1,90 +34470862,Beautiful brand new studio/1BR,75566080,Bar,Brooklyn,Williamsburg,40.71645,-73.95194,Entire home/apt,175,4,2,2019-06-24,2,1,71 +34470949,Chelsea Pines Inn - Single,255234351,Ejaz,Manhattan,Chelsea,40.74129,-74.00457,Private room,109,1,0,,,4,326 +34470950,Chelsea Pines Inn - One Bedroom Suite,255234351,Ejaz,Manhattan,Chelsea,40.74052,-74.0031,Private room,199,1,0,,,4,355 +34470953,Chelsea Pines Inn - Hide Away Suite,255234351,Ejaz,Manhattan,West Village,40.73968,-74.00455,Private room,299,1,0,,,4,269 +34470954,Chelsea Pines Inn - Superior Queen,255234351,Ejaz,Manhattan,Chelsea,40.74006,-74.00248,Private room,159,1,0,,,4,362 +34471524,Brand New & Clean Lower East Side 2BR Apt,159014432,Kevin,Manhattan,Lower East Side,40.71422,-73.9896,Entire home/apt,341,2,2,2019-06-11,1.76,1,245 +34472646,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Jackson Heights,40.75015,-73.86899,Entire home/apt,153,4,0,,,3,135 +34473196,Bright & Cozy 3BR Apartment in Wall Street,258741560,Lasse,Manhattan,Financial District,40.70562,-74.00712,Entire home/apt,320,3,5,2019-07-01,3.26,1,212 +34473487,Sophisticated 3 Bedroom/ 2Bath in Union Square NYC,231548638,Emile,Manhattan,East Village,40.73081,-73.98876,Entire home/apt,549,5,8,2019-06-26,4.29,1,155 +34473786,Entire Third floor 3 bedroom,229060975,Aubrey,Brooklyn,Bedford-Stuyvesant,40.68185,-73.92339,Entire home/apt,60,14,0,,,1,329 +34473821,Whole-floor 2Bdrm Apt in NYC’s Theater District,79461666,Stephen,Manhattan,Hell's Kitchen,40.76421,-73.99132,Entire home/apt,290,3,2,2019-07-01,1.13,3,8 +34474349,3BR Loft near Times Square! Best Location!,256533375,Karl Andrei,Manhattan,Hell's Kitchen,40.75634,-73.99332,Entire home/apt,149,31,1,2019-05-31,0.77,1,182 +34475000,Quiet & Peaceful Duplex Garden Apartment,220847379,Lorraine,Brooklyn,Crown Heights,40.67898,-73.95725,Entire home/apt,150,3,3,2019-07-01,2.43,1,345 +34475551,Downtown Brooklyn Luxury Studio,332521,Rajat,Brooklyn,Prospect Heights,40.68305,-73.97503,Entire home/apt,150,4,0,,,1,5 +34475553,"Cozy and Sunny apartment in Bed-Stuy, Brooklyn",6913402,Rana,Brooklyn,Bedford-Stuyvesant,40.68435,-73.92027,Private room,59,1,0,,,1,55 +34476591,Cozy Bushwick apartment in a great location,81133553,Zachary,Brooklyn,Williamsburg,40.70612,-73.9264,Private room,90,3,0,,,1,156 +34477538,Brooklyn's Finest - UL,50364039,Cathy,Brooklyn,Williamsburg,40.71815,-73.96412,Entire home/apt,165,2,0,,,3,314 +34477772,"cosy room, high ceiling and private bathroom",22577148,Diana,Brooklyn,Bedford-Stuyvesant,40.69621,-73.93467,Private room,130,1,3,2019-06-16,1.53,7,136 +34477790,Penn room 14,244817841,Aminul,Brooklyn,East New York,40.66814,-73.8953,Private room,38,7,2,2019-06-01,1.20,13,258 +34478107,NYC- Cozy and Quiet 2 bedroom apt,109847539,Lila,Manhattan,Roosevelt Island,40.75732,-73.95314,Entire home/apt,255,7,0,,,2,73 +34478114,Spacious East Village 1 BR Apartment,26483902,Corey,Manhattan,East Village,40.72923,-73.98735,Entire home/apt,175,2,0,,,1,157 +34478311,"room in sunny, charming, vintage style apartment",3250169,Juliette,Brooklyn,Carroll Gardens,40.68184,-73.99359,Private room,95,3,3,2019-06-02,1.76,1,66 +34478598,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Flushing,40.75098,-73.84695,Entire home/apt,110,3,0,,,3,153 +34478718,Luxury Sky Loft: 2 Bedroom/ 2 Baths on Madison Ave,257642062,Michel,Manhattan,Midtown,40.76094,-73.97318,Entire home/apt,599,5,4,2019-07-06,4,1,135 +34478719,Spacious brownstone apartment and garden,52796837,John,Manhattan,Harlem,40.81396,-73.94488,Entire home/apt,160,6,8,2019-07-05,5.22,1,43 +34478766,Penn room 13,244817841,Aminul,Brooklyn,East New York,40.66983,-73.89411,Private room,38,7,3,2019-06-14,1.70,13,296 +34479102,Williamsburg studio- view of downtown Manhattan,69516382,Kelly,Brooklyn,Williamsburg,40.71032,-73.9614,Entire home/apt,200,1,4,2019-06-23,2.45,1,50 +34479640,Sunny Greenwich Village Studio with Piano,89309763,Rebecca,Manhattan,Greenwich Village,40.73098,-73.99361,Entire home/apt,175,20,0,,,1,79 +34479995,Penn room 12,244817841,Aminul,Brooklyn,East New York,40.66929,-73.89421,Private room,38,7,4,2019-06-29,2.35,13,282 +34480144,Penn room 11,244817841,Aminul,Brooklyn,East New York,40.66816,-73.89577,Private room,38,7,3,2019-06-07,1.61,13,239 +34481124,Charming Cobble Hill Brownstone Apartment,144522384,Amanda,Brooklyn,Carroll Gardens,40.68574,-73.99421,Entire home/apt,250,2,0,,,1,0 +34482823,apartment for 6ppl in SOHO,260186993,Me,Manhattan,Lower East Side,40.71955,-73.99115,Entire home/apt,243,2,1,2019-06-24,1,1,97 +34482998,My Comfy Condo,260299060,Kristina,Queens,Rego Park,40.72654,-73.86077,Entire home/apt,100,1,7,2019-07-01,4.04,1,2 +34483343,Steps to Central Park,260425153,Park Lane,Manhattan,Midtown,40.7647,-73.97452,Private room,100,1,0,,,14,365 +34483424,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76393,-73.97594,Private room,400,1,0,,,14,245 +34483425,Steps to Times Square,260425153,Park Lane,Manhattan,Midtown,40.76443,-73.97588,Private room,350,1,2,2019-06-30,2,14,365 +34483426,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76425,-73.97642,Private room,475,1,0,,,14,343 +34483427,Mesmerizing Central Park View Awaits You!,260425153,Park Lane,Manhattan,Midtown,40.76471,-73.97454,Private room,475,1,0,,,14,361 +34483430,Stunning View of Central Park,260425153,Park Lane,Manhattan,Midtown,40.76535,-73.97556,Private room,425,1,0,,,14,351 +34483431,Heart of Midtown Manhattan,260425153,Park Lane,Manhattan,Midtown,40.76395,-73.97622,Private room,450,1,3,2019-06-16,2.43,14,365 +34483432,Manhattan Accommodation Across Central Park,260425153,Park Lane,Manhattan,Midtown,40.76427,-73.97618,Private room,375,1,1,2019-06-30,1,14,349 +34483433,Staycation Next to Central Park,260425153,Park Lane,Manhattan,Midtown,40.7649,-73.97602,Private room,450,1,0,,,14,350 +34483434,Luxuriate in Captivating Beauty of Central Park,260425153,Park Lane,Manhattan,Midtown,40.76476,-73.9762,Private room,500,1,0,,,14,362 +34483436,Steps to Fifth Avenue Shopping Area,260425153,Park Lane,Manhattan,Midtown,40.76459,-73.97416,Private room,425,1,1,2019-06-15,1,14,357 +34483439,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76393,-73.9758,Private room,450,1,0,,,14,355 +34483440,Fall in Love with Central Park Again and Again,260425153,Park Lane,Manhattan,Midtown,40.76443,-73.97478,Private room,450,1,0,,,14,336 +34483443,Are You Ready for Central Park State of Mind?,260425153,Park Lane,Manhattan,Midtown,40.76559,-73.97632,Private room,425,1,1,2019-06-08,1,14,340 +34485281,"Corner Studio w abundance of natural light, SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72243,-74.0043,Private room,100,1,0,,,7,276 +34485282,"Accessible Queen room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72372,-74.00408,Private room,100,1,1,2019-06-16,1,7,328 +34485283,"High floor king bed, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72172,-74.00436,Private room,100,1,1,2019-06-26,1,7,270 +34485284,"King modern room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72174,-74.00354,Private room,100,1,0,,,7,266 +34485285,"Queen modern room, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.72324,-74.00401,Private room,100,1,1,2019-07-01,1,7,292 +34485286,"King Suite with sofa bed, your sanctuary in SoHo",260861596,The James New York - SoHo,Manhattan,SoHo,40.7239,-74.00379,Private room,100,1,0,,,7,325 +34485289,High floor Corner King w panoramic views of SoHo,260861596,The James New York - SoHo,Manhattan,SoHo,40.72353,-74.00409,Private room,100,1,0,,,7,331 +34485317,Modern Luxury Queen Room Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76476,-73.98246,Private room,100,1,0,,,6,297 +34485694,Luxury King Room Near Central Park,261761719,WestHouse,Manhattan,Hell's Kitchen,40.76555,-73.98478,Private room,100,1,0,,,6,299 +34485697,Modern One Bedroom Suite Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76413,-73.98431,Private room,100,1,0,,,6,290 +34485698,Modern Private King Room Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76352,-73.9828,Private room,100,1,0,,,6,294 +34485699,Modern Two Queen Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76479,-73.98307,Private room,100,1,0,,,6,299 +34485702,Modern King Bed roll-in shower Near Central Park,261761719,WestHouse,Manhattan,Midtown,40.76413,-73.98435,Private room,100,1,0,,,6,271 +34485737,Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75625,-73.98434,Private room,100,1,0,,,9,307 +34485738,Large Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75466,-73.98487,Private room,100,1,0,,,9,283 +34485739,Midtown Manhattan Private Alcove Suite,261632622,Royalton,Manhattan,Theater District,40.75481,-73.9856,Private room,100,1,0,,,9,317 +34485740,Midtown Manhattan Penthouse,261632622,Royalton,Manhattan,Theater District,40.75597,-73.98395,Private room,100,1,0,,,9,301 +34485741,Midtown Manhattan Stunner - Private Suite,261632622,Royalton,Manhattan,Theater District,40.75645,-73.985,Private room,100,1,1,2019-06-08,0.94,9,317 +34485742,Midtown Manhattan - Private room,261632622,Royalton,Manhattan,Theater District,40.75628,-73.98356,Private room,100,1,4,2019-06-24,3.00,9,309 +34485745,Midtown Manhattan Stunner - Private room,261632622,Royalton,Manhattan,Theater District,40.75491,-73.98507,Private room,100,1,3,2019-06-16,3,9,318 +34485746,Midtown Manhattan upscale residences,261632622,Royalton,Manhattan,Theater District,40.75631,-73.98383,Private room,100,1,1,2019-06-12,1,9,317 +34485747,Midtown Manhattan Room for up to 4 guests,261632622,Royalton,Manhattan,Theater District,40.75623,-73.98356,Private room,100,1,0,,,9,311 +34486925,Nobel Expereices - Central Park & Carnegie Hall,261761196,Park Central,Manhattan,Midtown,40.76581,-73.9835,Private room,100,1,0,,,8,309 +34487108,Delue Expereinces around Central Park with Family,261761196,Park Central,Manhattan,Midtown,40.76555,-73.98272,Private room,100,1,0,,,8,321 +34487247,Premier King Room close to Central Park & 5th Ave,261761196,Park Central,Manhattan,Midtown,40.76574,-73.98201,Private room,100,1,0,,,8,318 +34487373,Luxury ADA King Room close to Central Park,261761196,Park Central,Manhattan,Midtown,40.76547,-73.98252,Private room,100,1,0,,,8,319 +34487491,Spacious Luxuary Kind Bed in Prime Central Park,261761196,Park Central,Manhattan,Midtown,40.76368,-73.98225,Private room,100,1,0,,,8,311 +34489385,Steps from Times Square and Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76156,-73.98471,Private room,100,1,2,2019-07-03,2,15,349 +34489569,Cozy 1bd Apartment in Upper East Side,260251845,Pau,Manhattan,Upper East Side,40.77424,-73.95322,Entire home/apt,211,3,4,2019-06-14,2.50,1,63 +34489715,Room with Two Beds in Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76251,-73.98455,Private room,300,1,5,2019-07-03,5,15,304 +34489717,Broadway Facing Room on High Floor,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76248,-73.98584,Private room,100,1,0,,,15,358 +34489718,Comfortable 280 sq ft guest room on floors 19-22,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76237,-73.98442,Private room,100,1,0,,,15,359 +34489721,Room with Two Double Beds on Floors 19-22,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76246,-73.98396,Private room,100,1,0,,,15,336 +34489723,Luxury Room with Two Queen Beds,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76179,-73.98589,Private room,100,1,0,,,15,296 +34489725,Luxury Room between Times Square and Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76179,-73.98399,Private room,100,1,1,2019-06-16,1,15,351 +34489727,Large Room with Pull-out Sofa and Balcony,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76187,-73.98413,Private room,100,1,0,,,15,349 +34489729,One Bedroom Suite,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76134,-73.98456,Private room,100,1,0,,,15,232 +34490350,Spacious One King Bed Junior Suite in Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75608,-73.98915,Private room,100,1,0,,,13,356 +34490351,Large King Studio steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75633,-73.98922,Private room,100,1,0,,,13,335 +34490353,Luxury 2 Queen beds studio with city view,260618374,The Knickerbocker,Manhattan,Theater District,40.75612,-73.98864,Private room,100,1,0,,,13,351 +34490354,Large 2 Queen beds steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75513,-73.98772,Private room,100,1,0,,,13,341 +34490356,Corner Junior Suite Room with One King Bed,260618374,The Knickerbocker,Manhattan,Theater District,40.75615,-73.98803,Private room,100,1,0,,,13,353 +34490357,Spacious 2 Queen beds steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75609,-73.98724,Private room,100,1,0,,,13,343 +34490359,One Bedroom Penthouse Suite in Times Square,260618374,The Knickerbocker,Manhattan,Midtown,40.75449,-73.98737,Private room,100,1,0,,,13,312 +34490360,Spacious Studio-Style Junior Suite Two Queen beds,260618374,The Knickerbocker,Manhattan,Theater District,40.75657,-73.9881,Private room,100,1,0,,,13,351 +34490361,Deluxe King Bed Mobility Accessible Roll-in Shower,260618374,The Knickerbocker,Manhattan,Midtown,40.75471,-73.98781,Private room,100,1,0,,,13,352 +34490362,Junior Suite 2 Queen Beds Mobility Accessible Tub,260618374,The Knickerbocker,Manhattan,Theater District,40.75513,-73.98784,Private room,100,1,0,,,13,344 +34490363,Deluxe King Room steps away from Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75661,-73.98757,Private room,100,1,0,,,13,358 +34490364,Luxury City View Studio with one King bed,260618374,The Knickerbocker,Manhattan,Midtown,40.75507,-73.98883,Private room,100,1,0,,,13,364 +34490368,Tribute Suite in the heart of Times Square,260618374,The Knickerbocker,Manhattan,Theater District,40.75569,-73.98933,Private room,100,1,0,,,13,362 +34490371,Corner Suite between Central Park and Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76275,-73.98429,Private room,100,1,0,,,15,201 +34490373,"Enormous Suite near Central Park, Times Square",260639745,Manhattan At Times Square,Manhattan,Theater District,40.76175,-73.9857,Private room,300,1,0,,,15,359 +34490375,Renovated Executive Suite near Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76267,-73.9839,Private room,100,1,0,,,15,328 +34490376,Accessible between Times Square & Central Park,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76267,-73.98557,Private room,100,1,2,2019-07-03,2,15,359 +34490377,"Accessible room with Roll-In Shower, Times Square",260639745,Manhattan At Times Square,Manhattan,Theater District,40.7627,-73.98437,Private room,100,1,4,2019-07-07,4,15,359 +34490379,Large Accessible Suite in Times Square,260639745,Manhattan At Times Square,Manhattan,Theater District,40.76251,-73.98392,Private room,100,1,0,,,15,292 +34491611,Spacious 450 sq ft King Room near Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76097,-73.98181,Private room,100,1,2,2019-07-07,2,7,0 +34491852,550 Square Feet Suite near Central Park,261750091,The Michelangelo,Manhattan,Theater District,40.76112,-73.98377,Private room,100,1,1,2019-06-30,1,7,320 +34491871,Perfect Suite Retreat in Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76245,-73.98339,Private room,100,1,0,,,7,320 +34491883,A Studio fit for a King,261750091,The Michelangelo,Manhattan,Theater District,40.76262,-73.98305,Private room,100,1,0,,,7,319 +34491885,Family Room to fit all of YOU!,261750091,The Michelangelo,Manhattan,Theater District,40.76203,-73.98191,Private room,100,1,0,,,7,230 +34491916,Ultimate 800 sqf Grand Suite in Times Square,261750091,The Michelangelo,Manhattan,Theater District,40.76113,-73.9818,Private room,100,1,0,,,7,315 +34491918,ADA Compliant Studio Room near Central Park,261750091,The Michelangelo,Manhattan,Theater District,40.76055,-73.98362,Private room,100,1,0,,,7,262 +34492121,Beautiful 3 bedroom in Manhattan!,259391287,Sondre,Manhattan,East Harlem,40.79957,-73.94212,Entire home/apt,290,2,11,2019-06-30,6.11,1,268 +34492605,Brand new huge 3 bedroom apartment.,260352154,Ranjit,Queens,South Ozone Park,40.67072,-73.79534,Entire home/apt,400,1,1,2019-06-05,0.86,1,281 +34493247,Central Park Condo,257396181,Steven,Manhattan,Midtown,40.76547,-73.97952,Entire home/apt,250,30,1,2019-06-21,1,1,342 +34493353,"5★ clean, 150ft² bedroom, 10min to Union Square",28371926,John,Brooklyn,Williamsburg,40.70973,-73.94521,Private room,60,2,9,2019-06-25,4.82,1,87 +34495013,Enjoy Yourself in Classic East Village 1BR,66266373,Corey,Manhattan,East Village,40.72709,-73.98582,Entire home/apt,150,1,8,2019-07-07,4.90,1,15 +34495704,FURNISHED 2 BEDROOM HUDSON HEIGHTS 6/15 - 8/15,160349432,Jeffrey,Manhattan,Washington Heights,40.85747,-73.93439,Entire home/apt,100,30,0,,,1,8 +34498121,Gorgeous Bushwick Townhome,260379800,Joshua,Brooklyn,Bushwick,40.68792,-73.90993,Entire home/apt,425,3,0,,,1,112 +34498360,Modern One Bedroom in the Hudson Yards,26413356,Charity,Manhattan,Hell's Kitchen,40.75562,-73.99459,Entire home/apt,175,36,0,,,1,0 +34498482,Large 1 Bedroom Apartment in Chelsea,6397405,Matt,Manhattan,Chelsea,40.74484,-73.99688,Entire home/apt,275,2,2,2019-06-09,1.76,1,15 +34498765,Huge Family Apt in Times Square - private elevator,260383024,Inieta,Manhattan,Midtown,40.75546,-73.99095,Entire home/apt,945,2,11,2019-07-03,7.02,1,264 +34498925,Quaint Private Room in Vibrant Bronx Neighborhood,7087084,Laura,Bronx,Fordham,40.86003,-73.89314,Private room,47,1,2,2019-05-27,1.36,1,236 +34499063,Minimalist House,247013511,Frank,Queens,Jackson Heights,40.75246,-73.87505,Entire home/apt,79,2,8,2019-06-23,4.36,6,336 +34500224,Welcoming you to my comfy & New Yorkish studio,253727905,David,Manhattan,Hell's Kitchen,40.76297,-73.98951,Entire home/apt,179,4,4,2019-06-27,2.26,1,260 +34500384,Modern and perfectly located 1BD (East Village),14758945,Magda,Manhattan,East Village,40.72859,-73.98008,Entire home/apt,150,4,2,2019-06-23,1.36,1,3 +34501274,Cute Bushwick One-Bedroom with Great Backyard,1486824,Samantha,Brooklyn,Bushwick,40.69402,-73.92378,Entire home/apt,154,2,2,2019-06-02,1.40,1,0 +34501332,450 West,74514078,Michele,Manhattan,Washington Heights,40.8362,-73.94063,Private room,65,3,5,2019-06-26,3.00,1,33 +34501531,Sun-Drenched Williamsburg Artist Loft,11389064,Talia,Brooklyn,Williamsburg,40.71369,-73.96626,Entire home/apt,109,3,2,2019-07-01,0.98,1,5 +34501725,Light-filled loft with greenhouse and terrace,16903474,Deborah,Manhattan,Chelsea,40.74894,-73.99466,Entire home/apt,280,21,0,,,1,219 +34501825,Bushwick penthouse,40707667,Horacio,Brooklyn,Bushwick,40.70191,-73.91952,Private room,60,1,12,2019-07-04,5.90,1,27 +34502284,Bushwickian Paradise,18263672,Andrew,Brooklyn,Bushwick,40.69243,-73.90741,Entire home/apt,100,2,3,2019-06-16,1.73,1,35 +34502763,Newly renovated Spacious 4 bedroom flat!,260411862,Shamsur,Brooklyn,Cypress Hills,40.67815,-73.86584,Entire home/apt,500,1,2,2019-07-01,2,1,363 +34502889,NEW Sunny Light filled 1BR Apartment in Brooklyn!,260413032,David,Brooklyn,Bedford-Stuyvesant,40.69241,-73.95793,Entire home/apt,149,2,3,2019-07-02,3,1,268 +34504058,♕ Historic Modern Designer SoHo Sun Drenched Home!,260420558,Shelesa,Manhattan,SoHo,40.71988,-74.00062,Entire home/apt,620,2,4,2019-06-21,2.22,1,169 +34504385,Private room in Premium-Luxury apartment,260045150,Nadezhda,Manhattan,Financial District,40.70472,-74.00763,Private room,210,2,5,2019-06-16,2.83,1,0 +34504407,"Large UES studio Central Park close, 1 bk to Q sub",9910595,Deep,Manhattan,Upper East Side,40.76703,-73.95556,Entire home/apt,155,2,0,,,1,113 +34504929,Luxury Boutique Private One-bedroom Apartment,109389069,Victoria,Brooklyn,Bushwick,40.69414,-73.92477,Entire home/apt,98,2,7,2019-07-03,3.33,1,4 +34504997,"Clean room, 10 min away from the city. PRKG AVBL",252646618,Michael,Queens,Astoria,40.7644,-73.91208,Private room,65,1,2,2019-06-24,2,2,0 +34507958,UES Beautiful 1 Bed Blocks from Central Park w/ AC,225659989,Gabriella,Manhattan,Upper East Side,40.76622,-73.95295,Entire home/apt,200,1,10,2019-07-06,5.08,1,280 +34508048,Bedstuy On 4th.,63554174,Sharon,Brooklyn,Bedford-Stuyvesant,40.69091,-73.94514,Entire home/apt,115,30,4,2019-06-10,2.35,1,133 +34508183,"Quiet, Top Floor Apt in West Village Townhouse",214187963,Amanda,Manhattan,West Village,40.73011,-74.00401,Entire home/apt,285,30,1,2019-06-30,1,2,179 +34508565,"Large renovated apartment, brand new furniture.",14171579,Mark,Queens,Astoria,40.76335,-73.92769,Entire home/apt,140,3,5,2019-07-07,5,1,254 +34508577,1 bdroom available in Williamsburg,260452146,Margaux,Brooklyn,Williamsburg,40.71462,-73.95883,Private room,72,1,0,,,1,0 +34508939,Nice bedroom with comfy Simmons bed -1min to train,5889721,Maco,Brooklyn,Bay Ridge,40.6347,-74.02268,Private room,54,1,8,2019-06-30,4.21,2,339 +34509302,Perfect room for road warrior 20mins to Manhattan,7832790,Michael,Queens,Astoria,40.76269,-73.91232,Private room,90,1,2,2019-06-03,1.25,2,90 +34509379,Full brownstone on gorgeous Brooklyn Heights block,614026,Alana,Brooklyn,Brooklyn Heights,40.69043,-73.99365,Entire home/apt,500,8,0,,,1,72 +34509926,Beautiful One Bedroom in Stunning Luxury High-Rise,121861644,Kathleen,Manhattan,Financial District,40.70719,-74.00664,Entire home/apt,215,3,2,2019-05-24,0.98,1,14 +34510970,Close to LGA/Manhattan. Spacious Apartment in JH.,121378704,Edgar,Queens,Jackson Heights,40.75353,-73.87688,Entire home/apt,86,1,1,2019-06-16,1,1,125 +34510977,"Hip, lofty apt in historic townhouse w backyard",831185,Andrew,Brooklyn,Crown Heights,40.67958,-73.96227,Entire home/apt,305,2,1,2019-06-24,1,3,179 +34511012,Only 20 mins. to manhattan via N & W trains,914386,Anna,Queens,Ditmars Steinway,40.77046,-73.9137,Entire home/apt,99,2,2,2019-06-02,1.18,2,139 +34511326,Fabulous 2Bed 2Bath- Gym-Drman-Roof-Playr-High end,236572440,David,Manhattan,Midtown,40.75535,-73.96469,Entire home/apt,340,30,0,,,2,297 +34511422,Exquisite 2 Bed/2Bath all modern and High end Furn,236572440,David,Manhattan,Midtown,40.75697,-73.96312,Entire home/apt,340,30,0,,,2,365 +34511584,Fifth Avenue Ultra Luxurious Large 3 Bed- Gym/Dorm,65388010,John,Manhattan,Midtown,40.76261,-73.9768,Entire home/apt,560,30,0,,,1,337 +34511726,One Bedroom Apartment Near Prospect Park,260475429,Zahira,Brooklyn,Kensington,40.64221,-73.98126,Entire home/apt,125,2,1,2019-06-09,1,1,74 +34511920,Amazing House in Brooklyn ! Best deal in the area,129468527,Sally,Brooklyn,Gravesend,40.59997,-73.97804,Entire home/apt,90,30,0,,,1,80 +34512123,Bedroom in central Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.69958,-73.91979,Private room,50,1,3,2019-06-15,1.80,5,62 +34513343,Small back room 420friendly & breakfast,218116366,Yankee,Bronx,Longwood,40.82756,-73.8871,Private room,70,1,6,2019-06-23,2.95,2,89 +34513724,Quiet and Clean,260496218,Veronica,Queens,Bellerose,40.73138,-73.74122,Private room,100,1,1,2019-06-02,0.79,2,342 +34514860,Gorgeous Well-Lit Home 5 Min To Grand Central,221718743,Sunny,Manhattan,Midtown,40.74611,-73.98228,Entire home/apt,350,2,4,2019-07-01,2.79,1,86 +34515538,Sunny Private Bedroom in Uptown Manhattan,141426597,Lester,Manhattan,Washington Heights,40.85762,-73.93175,Private room,115,3,3,2019-06-30,2.05,3,179 +34515896,Look at that Suite City View!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70669,-74.0165,Private room,100,1,0,,,7,348 +34516167,Private Bedroom in Sunny Manhattan Apartment,141426597,Lester,Manhattan,Washington Heights,40.85768,-73.93247,Private room,105,3,4,2019-06-08,2.40,3,180 +34516181,Harbor View for Two!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70497,-74.01721,Private room,100,1,0,,,7,348 +34516182,Enjoy the Suite Life with a Harbor View!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70622,-74.01651,Private room,100,1,0,,,7,359 +34516185,Magnificent View of the Statue of Liberty!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70486,-74.01799,Private room,100,1,0,,,7,360 +34516186,Harbor View for a King!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70515,-74.01851,Private room,100,1,0,,,7,361 +34516187,Lower Manhattan for the Family!,260609528,The Wagner Hotel,Manhattan,Battery Park City,40.7068,-74.01775,Private room,100,1,1,2019-06-16,1,7,339 +34516188,"The City That Never Sleep, with a View!",260609528,The Wagner Hotel,Manhattan,Battery Park City,40.70494,-74.01692,Private room,100,1,0,,,7,360 +34516657,Private Sunny Uptown Manhattan Bedroom,141426597,Lester,Manhattan,Washington Heights,40.85584,-73.93364,Private room,105,3,3,2019-06-11,1.61,3,180 +34516874,( BLUE ROOM ) Private in Beautiful Town House,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68473,-73.93976,Private room,100,2,4,2019-06-27,2.67,3,63 +34517087,Large Queen Room Near Flatiron Building & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74365,-73.98717,Private room,350,1,0,,,10,363 +34517384,Penthouse room in Williamsburg with ensuite toilet,21306,Lucy,Brooklyn,Williamsburg,40.70966,-73.95129,Private room,73,21,2,2019-06-01,1.18,1,36 +34517657,Large King Room Near Flatiron Building & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74478,-73.98618,Private room,300,1,0,,,10,360 +34517660,2 Queen Bed Spacious Room near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74366,-73.98607,Private room,250,1,0,,,10,361 +34517661,370 sq ft King Room near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74343,-73.9857,Private room,500,1,0,,,10,363 +34517663,Grand Deluxe King with Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74433,-73.98555,Private room,250,1,0,,,10,10 +34517666,700 sqft Manhattan Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74476,-73.98551,Private room,350,1,0,,,10,327 +34517667,775 sqft Park Ave. Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74311,-73.98675,Private room,300,1,0,,,10,362 +34517668,980 sqft Royalton Suite near Flatiron & Union Sq,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74501,-73.98668,Private room,350,1,0,,,10,361 +34518079,Park Avenue Suite with Large Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74291,-73.9868,Private room,400,1,0,,,10,330 +34518082,980 sqft Royalton Suite with Large Outdoor Terrace,260577152,Royalton Park Avenue,Manhattan,Midtown,40.74312,-73.98589,Private room,350,1,0,,,10,345 +34519905,Luxury condo 10 mins from Times Sq NY!,247335568,Evelyn,Queens,Long Island City,40.74885,-73.9526,Entire home/apt,150,3,1,2019-06-02,0.81,7,23 +34527143,Modern and Spacious,14911623,Nicholas,Manhattan,Harlem,40.81816,-73.93932,Private room,150,1,0,,,2,88 +34527330,Luxe Sunny Balcony Views*NoHo,260578637,Kris -,Manhattan,East Village,40.72381,-73.9905,Entire home/apt,325,30,0,,,1,79 +34527987,Light-filled duplex brownstone close to subway,7259859,Olivia,Brooklyn,Bedford-Stuyvesant,40.6851,-73.93092,Entire home/apt,100,3,0,,,1,0 +34529200,"Huge Apt in Luxury Building - LIC, Queens",103485354,Samantha,Queens,Long Island City,40.74551,-73.94131,Entire home/apt,185,2,2,2019-07-07,1.36,1,41 +34530998,Apartment around the park,260589412,Dorcas,Bronx,Parkchester,40.83588,-73.85819,Entire home/apt,69,5,0,,,1,55 +34532307,"Beautiful, Quiet, Private Bedroom in West Midtown",79461666,Stephen,Manhattan,Hell's Kitchen,40.76412,-73.99141,Private room,140,3,2,2019-06-16,1.25,3,85 +34532377,Nice Room,213604995,Doreen,Brooklyn,Bedford-Stuyvesant,40.68296,-73.93165,Private room,85,2,9,2019-06-26,4.58,2,319 +34534332,Gorgeous Brand New 3 Bed/2 Bath in Prime NYC!,244171850,Jocelyn,Queens,Ridgewood,40.70078,-73.9075,Entire home/apt,140,30,0,,,10,365 +34534845,Cozy/Simple Private Room#2 in Bushwick Broadway,120875818,Rock,Brooklyn,Bushwick,40.69299,-73.92524,Private room,60,1,9,2019-06-25,4.66,2,174 +34535182,J & G Comfort Cove: Serenity Queen Room,259776956,Gladwyn,Brooklyn,Canarsie,40.6307,-73.89567,Private room,120,1,3,2019-07-06,1.76,5,365 +34535938,Art and Plant filled 2 BR APT near L Train.,4202557,Johan,Queens,Glendale,40.69437,-73.89883,Entire home/apt,150,2,3,2019-07-05,3,1,146 +34536944,Fort Greene -- Urban Oasis With Patio,1355112,Jean,Brooklyn,Clinton Hill,40.6903,-73.96764,Entire home/apt,150,3,5,2019-06-23,3.57,2,159 +34537321,Pleasant & comfortable furnished studio apartment,83786650,Bridge,Manhattan,Upper East Side,40.75972,-73.96147,Entire home/apt,110,30,0,,,8,331 +34538701,Perfect Harlem home for couples/small families,21334989,Reyna,Manhattan,East Harlem,40.81142,-73.93748,Entire home/apt,120,5,0,,,1,0 +34538751,Contemporary Designer 2BD/2Bath Duplex by Cen Park,112338663,James & Shannon,Manhattan,Upper West Side,40.80058,-73.96287,Entire home/apt,400,5,11,2019-07-01,6.23,1,125 +34539085,Master BR in luxury building - BROOKLYN,128601689,Todd,Brooklyn,Bushwick,40.70036,-73.92847,Private room,50,3,2,2019-06-07,1.71,1,39 +34539406,Joy & Gladness double room,259776956,Gladwyn,Brooklyn,Canarsie,40.63106,-73.89759,Private room,100,1,1,2019-06-30,1,5,365 +34539781,Just Renovated home. Heart of Manhattan.,260649642,Lane,Manhattan,Murray Hill,40.75236,-73.9793,Entire home/apt,250,2,0,,,1,1 +34542125,2nd bedrm in duplex apt. ground floor! no stairs,258243498,Ben,Brooklyn,Williamsburg,40.70517,-73.94288,Private room,125,1,2,2019-06-02,1.00,3,89 +34542878,J & G Comfort Cove Luxurious King Room,259776956,Gladwyn,Brooklyn,Canarsie,40.63043,-73.89553,Private room,130,1,0,,,5,365 +34543201,Luxurious Superior Two Bedroom Apt Gym Lincoln C,232596712,Jessica,Manhattan,Upper West Side,40.77728,-73.98062,Entire home/apt,299,30,0,,,6,365 +34543513,"Spectacular Duplex 4Bdr 3Bath Lincoln C 2,000 Sqft",232596712,Jessica,Manhattan,Upper West Side,40.77808,-73.9806,Entire home/apt,950,30,0,,,6,339 +34543610,"Designer luxurious 3Bed/2Bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77667,-73.97945,Entire home/apt,580,30,0,,,6,337 +34543674,"Luxurious Penthouse 3bed/2bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77731,-73.97954,Entire home/apt,583,30,1,2019-06-24,1,6,334 +34543734,Luxurious Doorman Building-2 Bedroom-Lincoln C-Gym,232596712,Jessica,Manhattan,Upper West Side,40.77791,-73.98043,Entire home/apt,275,30,0,,,6,301 +34543762,LYRIC - Hotel Deluxe Studio Suite with Kitchen,197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70571,-74.00784,Entire home/apt,299,1,8,2019-07-07,8,8,312 +34543905,"LYRIC - 2 Bedroom Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70719,-74.00698,Entire home/apt,650,1,0,,,8,323 +34544052,"LYRIC - 1 Bedroom Executive Suite, 2 Bath, Kitchen",197053492,Lyric At 70 Pine,Manhattan,Financial District,40.70512,-74.00719,Entire home/apt,309,1,0,,,8,325 +34544304,Artistic Home Near Metro with Backyard/Balcony,23878336,Armando,Bronx,Fordham,40.86952,-73.89447,Entire home/apt,223,3,0,,,10,315 +34544599,"XL Quiet Top Floor Harborview 5m to Ferry, RUMC",9263105,Wj,Staten Island,New Brighton,40.64535,-74.09255,Private room,55,3,1,2019-06-26,1,2,10 +34545014,"Bright, modern, cozy 1 bed with amazing view",27381412,Enoch,Brooklyn,Williamsburg,40.71595,-73.96467,Entire home/apt,200,1,4,2019-07-01,3.08,1,72 +34545274,Cozy Two-Bedroom - Close To Manhattan,256448235,Jay,Brooklyn,Bedford-Stuyvesant,40.68558,-73.93746,Entire home/apt,140,2,1,2019-05-13,0.52,1,81 +34545655,Beautiful & Comfortable Manhattan Rooms,260668537,Anne,Manhattan,Harlem,40.81507,-73.94419,Private room,65,3,0,,,1,362 +34545793,Your edgy Residence in LES!,260693405,Denise,Manhattan,Lower East Side,40.71952,-73.98546,Entire home/apt,250,7,3,2019-06-18,1.76,1,254 +34545869,Peaceful loft “3”,34643568,Dave,Manhattan,East Harlem,40.79155,-73.94141,Private room,85,3,3,2019-06-26,3,6,90 +34545971,Lofty living in Greenpoint,20952448,Myriah,Brooklyn,Greenpoint,40.73219,-73.95563,Entire home/apt,275,2,4,2019-06-30,2.67,1,27 +34546035,Amazing one bedroom near transportation.,115817634,Maria,Manhattan,Washington Heights,40.83326,-73.94314,Private room,55,2,1,2019-05-19,0.59,1,10 +34546192,"Large, Sunny, Quiet Room in Harlem, New York City",1542506,Ritty,Manhattan,Harlem,40.81721,-73.94593,Private room,49,1,0,,,1,2 +34546265,Cozy Two Bedroom Apartment in Bedstuy (Whole Apt),68422715,Dominique,Brooklyn,Bedford-Stuyvesant,40.68826,-73.93714,Entire home/apt,94,3,5,2019-07-07,3.13,1,1 +34547269,Peaceful Private Room in Huge Brooklyn Apartment,68467026,Jahziel,Brooklyn,Crown Heights,40.67058,-73.93526,Private room,70,5,1,2019-06-09,1,1,282 +34547439,Summer spot!,157666408,Semika,Brooklyn,East Flatbush,40.64268,-73.95132,Private room,70,4,0,,,1,16 +34547543,Bedroom Near Queens Center Mall,120746245,Yvon,Queens,Elmhurst,40.73209,-73.88142,Private room,34,1,0,,,1,0 +34547780,Imperial 2,249479517,Imperial,Bronx,Soundview,40.82776,-73.87643,Private room,45,1,7,2019-07-06,3.50,2,365 +34549093,Trendy Apartment In Soho / LES Neighborhood,123068098,Dan,Manhattan,SoHo,40.72406,-73.9965,Entire home/apt,390,2,9,2019-06-30,5.00,1,79 +34549395,"Small NYC Apt near Flushing, Walk to 7 Train",172168328,Chris,Queens,Jackson Heights,40.75557,-73.87958,Entire home/apt,129,4,1,2019-05-13,0.53,1,361 +34550196,Cozy Home in Safe Neighborhood Near Times Square,157208948,Jane,Manhattan,Hell's Kitchen,40.76761,-73.99208,Entire home/apt,310,2,5,2019-06-23,3.13,1,101 +34552276,Comfy apt. Mid Manhattan - Female ONLY!,76679800,Windy,Manhattan,Kips Bay,40.74286,-73.9768,Private room,78,12,3,2019-06-02,1.73,2,41 +34555635,One of a Kind Williamsburg Artist Studio Loft,128810972,Vlasta,Brooklyn,Williamsburg,40.71639,-73.96696,Private room,200,1,8,2019-06-22,4.21,2,0 +34560998,Brand new luxury apartment near Yankee Stadium,2068673,Brent,Bronx,Highbridge,40.83176,-73.9298,Entire home/apt,115,14,0,,,1,0 +34561332,Sun-drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67182,-73.95985,Entire home/apt,275,3,0,,,2,0 +34562155,"Shakti House!FLATIRON, UNION SQ PARK,WEST VILLAGE.",50442154,Alena Devi,Manhattan,Greenwich Village,40.73512,-73.99445,Entire home/apt,170,3,2,2019-06-22,1.62,1,9 +34562857,Top-Floor Duplex 2Bedroom/2Bath on charming street,257895306,Robert And Carrie,Manhattan,Upper East Side,40.77707,-73.95405,Entire home/apt,349,5,4,2019-07-04,4,1,52 +34563256,Cozy bedroom with Comfy Simmons bed -1min to train,5889721,Maco,Brooklyn,Bay Ridge,40.63459,-74.02257,Private room,48,1,4,2019-06-30,2.22,2,96 +34565485,West 80's Private Bedroom Walk to Central Park,21930989,Mark,Manhattan,Upper West Side,40.78996,-73.97561,Private room,97,1,5,2019-06-23,4.17,2,117 +34565716,Mid-century-bricks exposed in Manhattan/ 2 beds,56889786,Pierre,Manhattan,East Harlem,40.79238,-73.94402,Entire home/apt,120,2,0,,,1,34 +34566104,Sonder | Stock Exchange | Warm Studio + Lounge,219517861,Sonder (NYC),Manhattan,Financial District,40.70598,-74.01069,Entire home/apt,222,2,1,2019-05-29,0.73,327,315 +34566144,On Top Of The Ridge (Wood),260821048,Saba,Queens,Ridgewood,40.70922,-73.91017,Private room,48,1,12,2019-07-04,6.10,2,264 +34566798,Great bright room in Brooklyn,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.67853,-73.92697,Private room,43,2,1,2019-06-02,0.79,3,341 +34568097,Iconic West 57 Street/Central park/Junior 1Bedroom,7679270,Ika,Manhattan,Hell's Kitchen,40.76739,-73.98504,Entire home/apt,150,2,2,2019-07-01,2,1,146 +34568205,Private 1br Apartment for Your Brooklyn Experience,646592,Damien,Brooklyn,Bedford-Stuyvesant,40.68758,-73.9195,Entire home/apt,94,4,3,2019-06-28,1.80,1,9 +34568807,Private Condo Room w Ground Level Entrance,136840462,Sharlene,Bronx,Longwood,40.81963,-73.90956,Private room,55,1,10,2019-05-31,5.26,1,310 +34569023,The Feel Good in Ridgewood,260821048,Saba,Queens,Ridgewood,40.70732,-73.90896,Private room,48,1,20,2019-07-06,10.17,2,258 +34569042,4 Rooms 3 Bedroom Pre War Central Park West Condo.,26935678,Zach,Manhattan,Upper West Side,40.80032,-73.95998,Entire home/apt,285,1,9,2019-07-01,5.09,1,229 +34569454,Surf-N-Sleep By the Sea Studio,260842282,Andy,Queens,Arverne,40.59269,-73.79635,Entire home/apt,95,2,6,2019-07-01,3.46,1,348 +34569621,Sonder | 116 John | Welcoming 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70671,-74.00471,Entire home/apt,179,29,0,,,327,333 +34569686,Sonder | 116 John | Dashing Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70714,-74.00525,Entire home/apt,100,29,0,,,327,342 +34569757,Sonder | Theater District | Warm Studio + Kitchen,219517861,Sonder (NYC),Manhattan,Theater District,40.75933,-73.98751,Entire home/apt,164,29,0,,,327,336 +34569801,Sonder | The Nash | Sleek 2BR + Fitness Center,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74871,-73.97413,Entire home/apt,302,29,0,,,327,325 +34569918,Комната на Bay Pway,260844992,Ineza,Brooklyn,Bensonhurst,40.60783,-73.98445,Private room,75,3,0,,,1,89 +34570002,Sonder | 116 John | Ideal Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70658,-74.00684,Entire home/apt,100,29,0,,,327,342 +34570070,Newly Renovated Convenient Real 2 Bedrm Queen beds,260846055,Alex,Manhattan,Gramercy,40.73358,-73.98443,Entire home/apt,325,2,0,,,1,194 +34570512,Sonder | 116 John | Lovely Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70713,-74.00483,Entire home/apt,100,29,0,,,327,342 +34570764,Sonder | 116 John | Sun-Filled 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.7078,-74.00675,Entire home/apt,130,29,0,,,327,349 +34570816,Sonder | 116 John | Relaxed 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70798,-74.00498,Entire home/apt,130,29,1,2019-06-10,1,327,361 +34570839,Sonder | 21 Chelsea | Quaint 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74305,-73.99415,Entire home/apt,254,29,0,,,327,365 +34570862,Sonder | 116 John | Warm Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70643,-74.00519,Entire home/apt,100,29,0,,,327,345 +34571306,"Beautiful, Gut-Renovated Central Park 1BR",36712407,Dean,Manhattan,Upper West Side,40.77702,-73.98052,Entire home/apt,224,2,2,2019-07-07,2,1,16 +34572976,Empire CIty - King Lux King Room,224414117,Gabriel,Manhattan,Hell's Kitchen,40.75688,-73.99862,Private room,999,1,5,2019-07-02,4.17,30,348 +34574809,Large Private room - Convenient and safe location,252636577,Jean,Queens,Flushing,40.75862,-73.82606,Shared room,35,2,1,2019-05-18,0.57,2,90 +34574929,Magnificent 1Bedroom in the Lower East Side,260879160,Safia,Manhattan,Lower East Side,40.7202,-73.9891,Entire home/apt,160,14,3,2019-07-07,2.14,1,288 +34575770,15 mins to the City,57007752,Dinneal,Queens,Long Island City,40.75742,-73.9447,Entire home/apt,69,2,0,,,2,5 +34575860,Super Cute Studio with Amazing View of Manhattan,10469103,Jess,Queens,Long Island City,40.74664,-73.95522,Entire home/apt,220,10,3,2019-05-23,1.55,1,45 +34575931,Summer home in NYC 5-Bedroom Private House,163565274,Carrie,Queens,Flushing,40.72453,-73.79847,Entire home/apt,189,2,6,2019-07-03,5.00,1,8 +34575989,The Clifton Place,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.68762,-73.95332,Private room,120,2,2,2019-06-25,1.58,2,88 +34576062,Beautiful 2 Bedroom with Large Private Terrace,5962328,Alan,Queens,Flushing,40.76067,-73.82389,Entire home/apt,140,30,0,,,15,323 +34577268,The duplex of city center,257474717,Kim,Queens,Flushing,40.75498,-73.83423,Entire home/apt,15,2,0,,,1,361 +34578233,Peaceful Apartment in Lefferts Gardens,158123420,Jane,Brooklyn,Prospect-Lefferts Gardens,40.65596,-73.95679,Private room,250,5,0,,,1,23 +34578823,Beautiful new 2 bed in East Williamsburg,256341094,David,Brooklyn,Bushwick,40.6996,-73.9289,Entire home/apt,249,6,2,2019-06-13,1.30,2,161 +34579204,Lovely Ensuite Room with own entrance,212874794,Michael,Brooklyn,Park Slope,40.68018,-73.98052,Private room,49,31,0,,,1,42 +34582016,New York City!!! Luxury Bedroom!!,224317184,Luke,Manhattan,Harlem,40.81775,-73.94931,Private room,75,4,1,2019-05-17,0.57,8,340 +34587796,Spacious One Bedroom in Hell’s Kitchen,457838,Bobby,Manhattan,Hell's Kitchen,40.76239,-73.99003,Entire home/apt,300,2,1,2019-05-20,0.60,1,0 +34588996,Entire gorgeous sunny 1 bd/1 bath apt in Astoria,68275154,Haneef,Queens,Astoria,40.77101,-73.92932,Entire home/apt,200,3,2,2019-05-27,1.20,1,0 +34592851,Beautiful Brooklyn Brownstone Production Space,19867664,Cheryl,Brooklyn,Crown Heights,40.67015,-73.94782,Entire home/apt,2500,1,1,2019-06-08,0.94,2,168 +34592979,"Dreamy Nolita 1BR w/ W/D, Heated Bathroom, above SoHo cafe, by Blueground",107434423,Blueground,Manhattan,Nolita,40.72399,-73.99426,Entire home/apt,314,30,0,,,232,341 +34592997,Close to the city and Bronx Lebanon hospital,13664245,Denise,Bronx,Claremont Village,40.84353,-73.91108,Private room,43,3,0,,,2,341 +34593016,"Expansive Upper West Side 2BR w/ W/D, near Central Park, by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.78222,-73.97676,Entire home/apt,381,30,0,,,232,334 +34593055,"Spacious Upper West Side 2BR w/ W/D, near Central Park, by Blueground",107434423,Blueground,Manhattan,Upper West Side,40.7816,-73.97548,Entire home/apt,377,30,0,,,232,334 +34593079,Lovely Newly Renovated 2 Bdrm-Union Sq & E Village,96222872,Nc,Manhattan,Gramercy,40.73388,-73.98311,Entire home/apt,299,2,11,2019-06-29,5.79,1,194 +34593096,"Dapper East Village 1BR w/ Gym, W/D, Doorman, near Subway, by Blueground",107434423,Blueground,Manhattan,NoHo,40.72517,-73.99274,Entire home/apt,306,30,0,,,232,333 +34593686,Heart of Queens NY. Close to Midtown. Lots of room,145333094,Donald,Queens,Jackson Heights,40.75574,-73.87867,Private room,120,7,0,,,1,0 +34593987,Manhattan Beach Condo,260997528,Jermaine,Brooklyn,Sheepshead Bay,40.58495,-73.93278,Entire home/apt,150,1,10,2019-07-07,7.89,1,354 +34594081,Large room in fantastic Williamsburg location!,26552242,Bríet,Brooklyn,Williamsburg,40.71054,-73.95908,Private room,85,2,2,2019-06-03,1.25,1,19 +34594922,Amazing 1 bdr in Upper East Side,19915612,Zarrar,Manhattan,Upper East Side,40.76718,-73.95748,Entire home/apt,180,2,1,2019-05-19,0.59,1,0 +34595255,BRIGHT DESIGNER FLAT heart of Greenwich Village,254509494,Alex,Manhattan,Greenwich Village,40.73301,-73.99819,Entire home/apt,420,3,6,2019-07-01,3.10,1,144 +34595441,Best Midtown Location! 5 Bedrooms!,2571687,Kam,Manhattan,Flatiron District,40.74191,-73.99011,Entire home/apt,299,1,7,2019-07-01,4.12,1,347 +34595632,Charming Garden Flat in the Heart of Chelsea,261008318,Holly,Manhattan,Chelsea,40.74411,-74.00166,Entire home/apt,245,3,4,2019-06-30,2.55,1,152 +34596809,SUMMER RENTAL 1BDR ON THE OCEAN IN BROOKLYN $3200,261012432,Elena,Brooklyn,Brighton Beach,40.57885,-73.95376,Entire home/apt,110,7,0,,,1,267 +34597644,Romantic Garden Studio near Manhattan!,4999887,Christina,Queens,Ditmars Steinway,40.78071,-73.9149,Entire home/apt,135,2,0,,,1,226 +34598372,Simple Comforts,74290720,Melinda,Brooklyn,Carroll Gardens,40.6832,-73.99322,Private room,65,2,6,2019-07-02,3.67,1,145 +34598389,"3Bdrm home w/Parking! 10min Manhattan,5min Airport",261028352,Young,Queens,Woodside,40.74268,-73.90022,Entire home/apt,146,2,7,2019-06-30,5.00,2,89 +34598639,Comfy and Classic Brooklyn Brownstone 1 Bedroom!,1354539,Eve,Brooklyn,Bedford-Stuyvesant,40.68541,-73.95298,Entire home/apt,125,3,4,2019-06-18,4,1,155 +34599215,New 2 Bedrooms Apt Right in Times Square,1015345,Tom,Manhattan,Theater District,40.76125,-73.98167,Entire home/apt,400,3,4,2019-06-23,2.50,1,3 +34600024,My NYC Dream Home II,261036755,Sandra,Brooklyn,Bedford-Stuyvesant,40.69023,-73.92746,Entire home/apt,175,3,2,2019-07-01,2,1,329 +34600508,Artist's Loft! A+ Location! Central Park/5th ave!,256610768,John Ghaddie,Manhattan,Upper East Side,40.76414,-73.96728,Entire home/apt,159,31,4,2019-06-16,2.45,1,244 +34601499,Sun-drenched private room in 1BR Harlem apt,53638710,Kay,Manhattan,Harlem,40.823,-73.93966,Private room,49,2,1,2019-05-27,0.70,1,23 +34601569,Shared Room 4 FEMALE Guests 30mins to Manhattan-1,172369331,Abby,Brooklyn,Sheepshead Bay,40.59842,-73.95667,Shared room,20,2,1,2019-06-01,0.77,10,342 +34602077,Spacious 1 bedroom apartment 15min from Manhattan,261055465,Regan,Queens,Astoria,40.76424,-73.92351,Entire home/apt,125,3,1,2019-05-24,0.65,1,13 +34602480,Clean big private room in new apartment building,38431080,Javier,Brooklyn,Bedford-Stuyvesant,40.69136,-73.94761,Private room,64,2,3,2019-06-15,2.65,1,0 +34602589,Prime Location near Central Park and Museum Mile.,232863817,Higuemota,Manhattan,Upper East Side,40.7804,-73.94556,Private room,99,2,0,,,1,146 +34602779,Cozy music lovers cat house right above the Train,46559599,Amy,Brooklyn,Williamsburg,40.71512,-73.95093,Private room,88,1,1,2019-05-19,0.59,1,0 +34603173,Beautiful apartment in the heart of Brooklyn.,155812868,Milana,Brooklyn,Brighton Beach,40.57835,-73.96407,Entire home/apt,119,1,0,,,2,136 +34604195,Cozy 2 Bedroom Condominium,260895008,Sammy,Manhattan,Kips Bay,40.74412,-73.97609,Entire home/apt,199,1,5,2019-06-21,2.83,1,85 +34605017,LOVELY 1 BED APT,197178016,Oscar,Queens,Astoria,40.76452,-73.9251,Entire home/apt,115,2,2,2019-07-01,1.18,1,80 +34605049,Furnished room for girl in Astoria-15mins to city,194571019,Michaela,Queens,Astoria,40.76371,-73.91784,Private room,36,2,3,2019-06-09,1.96,1,4 +34605801,Comfortable Studio! Easy Access to Manhattan!,261090883,Zack,Queens,Ridgewood,40.70791,-73.8959,Entire home/apt,99,2,9,2019-06-23,5.40,1,164 +34606202,Entire 1 bedroom apt in the heart of Queens by JFK,74050784,Eva Dilruba,Queens,Ozone Park,40.6827,-73.84274,Entire home/apt,100,2,0,,,1,149 +34607249,Studio for a couple visiting New York City,126161542,Luis,Manhattan,Harlem,40.81942,-73.95796,Entire home/apt,99,2,5,2019-06-22,2.88,1,0 +34607651,Comfortable home for all your needs!!!,173311396,Lyuba,Manhattan,East Harlem,40.80013,-73.93742,Entire home/apt,150,1,5,2019-06-23,2.88,1,21 +34607764,Spacious Manhattan room mins to Central Park!,137358866,Kazuya,Manhattan,East Harlem,40.79466,-73.94032,Private room,34,30,0,,,103,216 +34608937,Heart of Manhattan! 3BR Near Time Square!,256726587,Rolando,Manhattan,Hell's Kitchen,40.75546,-73.99416,Entire home/apt,199,30,1,2019-05-25,0.67,1,176 +34613254,Amazing One Bedroom at the Time Square Area/72B,48146336,Irina,Manhattan,Hell's Kitchen,40.76134,-73.99299,Entire home/apt,150,30,0,,,20,332 +34614782,Cozy & Charming Oasis in Williamsburg Brooklyn,107069094,Jimmo And Ames,Brooklyn,Williamsburg,40.71912,-73.95727,Entire home/apt,240,3,3,2019-07-01,2.00,1,85 +34615705,Lincln Ctr alcove studio w terrace and great views,1336171,Maureen,Manhattan,Upper West Side,40.77212,-73.98641,Entire home/apt,175,2,6,2019-06-23,4.29,1,1 +34616078,靠近机场交通方便双人房#3,107272884,Lynn L,Queens,Richmond Hill,40.69587,-73.84798,Private room,45,1,2,2019-06-07,1.40,4,176 +34617093,New 4 bedroom Sunny Boutique Apt Steps from Train,39808438,Easton,Brooklyn,Bushwick,40.68899,-73.91616,Entire home/apt,350,2,0,,,5,358 +34617886,Great room in creative Bushwick,261016031,Sylvia,Brooklyn,Bushwick,40.6966,-73.91934,Private room,70,3,2,2019-06-18,1.05,1,189 +34618352,King's Airbnb,261167972,Roger,Brooklyn,Bedford-Stuyvesant,40.68366,-73.92011,Entire home/apt,180,2,9,2019-07-07,5.40,1,330 +34619743,Massive One Bedroom with Office /Yoga Room /Yard,10099608,Alexa,Brooklyn,Greenpoint,40.72455,-73.94633,Entire home/apt,149,3,2,2019-06-19,2,1,6 +34620162,Queens Village Morden 93,163603458,Qing,Queens,Queens Village,40.72052,-73.73628,Entire home/apt,69,1,15,2019-06-24,7.63,2,46 +34620353,Boutique Studio Apt,261183419,Crystal,Manhattan,Washington Heights,40.85833,-73.93402,Entire home/apt,70,30,0,,,1,83 +34620781,Balcony Private Room with Private Bath En-suite,261187437,Shasha,Brooklyn,Borough Park,40.63313,-74.00598,Private room,35,1,7,2019-06-24,4.04,6,364 +34620880,Private room with Central Park view,261188287,Stella,Manhattan,Upper West Side,40.77221,-73.98085,Private room,92,10,0,,,1,0 +34621137,New 4-P Family Rm w/ Private Bath Close to Subway,261187437,Shasha,Brooklyn,Borough Park,40.63531,-74.00522,Private room,75,1,1,2019-06-30,1,6,360 +34621157,Comfortable Private Room & Bathroom En-suite,261187437,Shasha,Brooklyn,Borough Park,40.6354,-74.00576,Private room,75,1,2,2019-05-23,1.07,6,151 +34621385,2 Bedroom in the heart of Bushwick,3899139,David,Brooklyn,Bushwick,40.70296,-73.92662,Entire home/apt,125,5,4,2019-06-24,2.40,1,18 +34622133,Newly Renovated Place 47 Buffalo 1F Room#1,260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67771,-73.92356,Private room,60,1,6,2019-07-07,3.53,2,77 +34622597,Sun-filled gem near the water and transportation,24482415,Karuna,Brooklyn,Bay Ridge,40.63275,-74.02946,Private room,35,7,2,2019-06-29,1.40,1,1 +34623269,Loft/apartment in Soho,39782325,Mike,Manhattan,SoHo,40.72176,-74.00448,Entire home/apt,107,3,0,,,1,6 +34623352,"Amazing big apartment in UWS Manhattan, 2 bdr",25699447,Zeina,Manhattan,Upper West Side,40.77706,-73.98383,Entire home/apt,250,15,0,,,1,23 +34624240,Sharing Bunk Beds with Backpacking and Couchsurfer,38483415,Florentino,Manhattan,East Harlem,40.79905,-73.94453,Shared room,75,1,1,2019-05-18,0.58,4,365 +34625721,Beautiful Bright Room in Brooklyn,261226696,Pelin,Brooklyn,Bedford-Stuyvesant,40.67939,-73.94187,Private room,62,1,5,2019-05-29,2.73,1,66 +34625967,BROOKLYN GROUP ROOM,50052968,Mike,Brooklyn,Bedford-Stuyvesant,40.68633,-73.93805,Private room,100,2,6,2019-06-09,3.60,3,365 +34626069,Beautiful studio next to Manhattan NY!,247335568,Evelyn,Queens,Long Island City,40.74923,-73.94847,Entire home/apt,150,3,2,2019-06-24,2,7,34 +34626927,1976 Chris Craft “Hudson”,14564591,Gina,Queens,Arverne,40.59495,-73.78869,Entire home/apt,130,1,5,2019-07-07,5,1,350 +34628898,Modern 4 Bedroom & 2 Bath! EZ Access to Manhattan!,261256418,Noah,Queens,Glendale,40.70603,-73.89562,Entire home/apt,299,3,6,2019-06-18,3.60,1,155 +34629490,Studio step away from Time square/53D,48146336,Irina,Manhattan,Hell's Kitchen,40.76283,-73.99168,Entire home/apt,130,30,0,,,20,310 +34629692,Lower East Side Gem,778213,Jessica,Manhattan,Lower East Side,40.71761,-73.98233,Entire home/apt,250,2,0,,,1,107 +34629887,"Sunlight filled, large one-bedroom, apartment.",52347236,Alex,Bronx,Bronxdale,40.85374,-73.86416,Entire home/apt,70,1,8,2019-06-29,4.62,1,96 +34638258,Cozy Private Apartment in Historic Harlem,261306701,David,Manhattan,Harlem,40.82369,-73.94018,Entire home/apt,92,31,0,,,1,342 +34638990,Private furnished room with skylight,236073353,Jennifer,Brooklyn,Clinton Hill,40.68587,-73.96434,Private room,60,1,1,2019-07-05,1,1,97 +34639878,Charming room in Fort Greene prewar apt. building.,3997038,Zankhana,Brooklyn,Fort Greene,40.68736,-73.97639,Private room,100,1,7,2019-06-30,3.96,1,45 +34640201,Awsome room with private door to the deck!,4297106,Franck And Joshua,Brooklyn,Bushwick,40.6924,-73.91448,Private room,44,31,0,,,2,365 +34640995,Far West Village loft,792823,Andrew,Manhattan,West Village,40.73437,-74.00739,Entire home/apt,175,30,0,,,1,0 +34641120,TIME SQUARE 2 bedroom apartment,8033432,Tom,Manhattan,Hell's Kitchen,40.75893,-73.99,Entire home/apt,350,3,0,,,4,0 +34641992,Sunny and Luxurious Penthouse Loft in West Harlem,23407300,Clara,Manhattan,Harlem,40.80553,-73.94928,Entire home/apt,290,1,2,2019-06-28,2,1,161 +34642119,Cozy 2 Bedroom in the East Village,4516135,Andriy,Manhattan,East Village,40.72877,-73.98848,Entire home/apt,200,1,13,2019-07-08,7.96,1,69 +34643618,Cozy Bedroom NYC,109847539,Lila,Manhattan,Roosevelt Island,40.76215,-73.95056,Private room,94,5,1,2019-07-05,1,2,61 +34643695,1B. Studio & Stay 30 minutes to Midtown Manhattan,37678939,Chantal,Bronx,Claremont Village,40.83513,-73.91093,Private room,50,2,11,2019-07-07,6.73,2,88 +34644063,Luxurious Smart Home in Gramercy Park,55560532,Maxim,Manhattan,Gramercy,40.73825,-73.98184,Entire home/apt,690,2,0,,,1,66 +34644152,Home sweet Home,152246149,Catherine,Bronx,Throgs Neck,40.83123,-73.82784,Private room,60,1,2,2019-06-24,1.71,5,180 +34644243,"Large, clean and tasteful apartment in Gramercy",10170046,Jenny-Lynne,Manhattan,Gramercy,40.73676,-73.98685,Entire home/apt,250,1,2,2019-06-30,2,1,171 +34645029,Fabolous 1bd Apartment in Upper East Side New York,259728610,Victor,Manhattan,Upper East Side,40.76762,-73.95693,Entire home/apt,210,3,3,2019-06-13,1.70,1,52 +34645293,STUNNING 4 BEDROOM DUPLEX LUXURY BUILD. ROOF & GYM,261368719,Javier,Brooklyn,Bushwick,40.70065,-73.92446,Entire home/apt,400,3,2,2019-06-22,1.71,1,308 +34645572,Reliable vacation Home,152246149,Catherine,Bronx,Throgs Neck,40.83144,-73.82791,Private room,60,1,5,2019-06-24,3.75,5,179 +34646105,STYLISH 2 BEDROOM IN LUXURY BUILDING ROOF & GYM,261376215,Carmen,Brooklyn,Bushwick,40.7007,-73.92491,Entire home/apt,300,3,3,2019-06-24,1.88,1,355 +34646217,Beautiful Duplex North of Chelsea (Penn Station),5258749,Bani,Manhattan,Chelsea,40.749,-73.99579,Entire home/apt,300,5,5,2019-06-29,3.33,2,59 +34646244,Room in 4 bed 2 bath by J train with Queen bed,10387090,Luis Enrique,Brooklyn,Bedford-Stuyvesant,40.68296,-73.91255,Private room,36,15,1,2019-05-13,0.52,5,343 +34646398,Artsy bedroom w/garden & private bathroom .,1179779,Sandrine,Brooklyn,Bedford-Stuyvesant,40.69026,-73.93235,Private room,119,2,0,,,1,58 +34646805,MODERN AND NEWLY 4 BEDS / 2 BATHS IN LUXURY BUILD.,233879443,Kate,Brooklyn,Bushwick,40.6999,-73.92441,Entire home/apt,300,4,2,2019-06-07,1.40,1,355 +34647032,Your Dreamaker on Times Square NYC,259087876,Dennis,Manhattan,Theater District,40.75896,-73.98216,Private room,91,1,5,2019-07-01,3.49,7,63 +34647478,Cozy/quiet home amongst hippest NYC neighborhoods,6895430,Beth,Queens,Ridgewood,40.70372,-73.9067,Entire home/apt,200,2,1,2019-06-02,0.79,1,11 +34647648,Shared Apartment 1 bed in the living room Qsubway,172369331,Abby,Brooklyn,Sheepshead Bay,40.59932,-73.95936,Shared room,20,7,0,,,10,281 +34647727,Your Haven on Times Square in NYC,259087876,Dennis,Manhattan,Midtown,40.7573,-73.98043,Private room,150,1,8,2019-07-01,4.62,7,52 +34648133,"Awesome, Large, Sunny +Three Bedroom House!!!",758655,Allison,Brooklyn,Bedford-Stuyvesant,40.67759,-73.91856,Entire home/apt,350,3,3,2019-06-28,2.00,1,22 +34648330,2br Apartment 30min from Manhattan,260874869,Rute,Queens,Ridgewood,40.70239,-73.90381,Entire home/apt,87,20,0,,,1,75 +34648504,Sweet Sunshine,20851517,Maggie,Manhattan,Hell's Kitchen,40.76767,-73.98914,Private room,98,3,0,,,3,7 +34649031,"Leafy, Quiet One Bedroom, W. Village",214187963,Amanda,Manhattan,West Village,40.7317,-74.00395,Entire home/apt,150,30,1,2019-06-30,1,2,103 +34649628,Super private room and bath with private entrance,40632179,Valentina,Manhattan,Harlem,40.8303,-73.9407,Private room,60,1,0,,,3,278 +34649950,"Neat, luxury apartment bedroom for rent!",46344957,Siyi,Manhattan,Midtown,40.74798,-73.98751,Private room,86,7,0,,,1,0 +34650619,A HOME GROWS AND AWAIT'S YOU IN BROOKLYN,261412334,Spice,Brooklyn,Canarsie,40.62886,-73.89225,Entire home/apt,240,1,2,2019-06-22,2,1,154 +34650667,Unique Home Besides Times Square!! NYC!!!,261375719,Vivian,Manhattan,Hell's Kitchen,40.76383,-73.98704,Entire home/apt,255,3,2,2019-06-03,1.40,1,188 +34650966,PARK VIEW ROOM W DOUBLE CLOSET,1190978,Linden & Bah,Manhattan,Harlem,40.82414,-73.95393,Private room,40,30,0,,,2,322 +34651712,"Artsy 1BR loft style in East Village (IT, PT, EN)",4264648,Andy,Manhattan,East Village,40.72472,-73.98251,Entire home/apt,180,5,3,2019-06-02,1.58,1,19 +34651745,Beautiful private room 20-25 min from Times Square,40632179,Valentina,Manhattan,Harlem,40.8285,-73.94219,Private room,55,1,2,2019-06-28,2,3,325 +34651960,BIG ROOM GREAT LOCATION,255618027,Cc,Brooklyn,Bushwick,40.70312,-73.92071,Private room,75,2,4,2019-06-29,2.35,1,76 +34652342,Beautiful Room in Manhattan,40632179,Valentina,Manhattan,Harlem,40.82978,-73.94022,Private room,60,1,1,2019-05-16,0.56,3,268 +34652720,Adorable cozy apartment near access to all #3,175116422,Karilyn,Staten Island,Grant City,40.57825,-74.10902,Entire home/apt,75,3,0,,,3,318 +34652761,Entire 1 Bedroom Apartment with Rooftop Access,37426897,Rosie,Brooklyn,Clinton Hill,40.69474,-73.96655,Entire home/apt,100,1,6,2019-06-24,4.19,1,80 +34653238,Bedroom with a Backyard,4027507,Bubby,Brooklyn,Clinton Hill,40.68661,-73.96717,Private room,70,3,1,2019-06-01,0.77,1,4 +34653507,Perfect Manhattan apartment,72977337,Sara,Manhattan,Gramercy,40.73624,-73.97966,Entire home/apt,250,4,0,,,1,4 +34653572,Bright room in newly renovated duplex apartment,3042136,Jenni,Brooklyn,Red Hook,40.67634,-74.01009,Private room,99,2,1,2019-06-30,1,3,8 +34653695,"Cozy, renovated Upper East Side apartment",5120563,Cristina,Manhattan,Upper East Side,40.76436,-73.95669,Entire home/apt,210,2,2,2019-07-05,1.62,1,138 +34654078,Nice room,261448151,Bilhal,Bronx,Longwood,40.82285,-73.90198,Private room,55,2,5,2019-06-28,3.33,1,351 +34654811,"JUST 4.5 MILES FROM MANHATTAN, NEAR THE TRAIN",132786535,Carlos,Queens,Middle Village,40.7125,-73.87703,Entire home/apt,169,2,4,2019-06-15,2.79,2,155 +34655267,"NEW-Amazing 1 Bed. Apt., 10 Mins. to Manhattan!",78733280,Randy,Queens,Woodside,40.74661,-73.90301,Entire home/apt,89,30,0,,,1,333 +34656064,Cozy Storefront Loft (with shag rug),121083075,Sampson,Queens,Maspeth,40.7154,-73.91148,Shared room,40,1,5,2019-07-06,2.68,1,89 +34656150,Private Room in prime Brooklyn,96379433,Satish,Brooklyn,Sunset Park,40.66064,-73.99888,Private room,40,1,4,2019-05-20,2.14,2,250 +34656363,Loft-style Designer Studio,9914596,Oren,Manhattan,Upper West Side,40.78673,-73.97304,Entire home/apt,130,30,0,,,1,280 +34658339,Beautiful apartment on UWS for couple or single!,34331,Eveline,Manhattan,Upper West Side,40.79056,-73.97306,Entire home/apt,150,30,0,,,1,36 +34659522,Private area for comfortable and pleasant stay.,204928236,Anup,Bronx,Parkchester,40.83717,-73.85738,Shared room,36,1,0,,,1,71 +34659944,Five-star luxury Apt in Chelsea !,152747338,Paola,Manhattan,Chelsea,40.74674,-74.00316,Entire home/apt,333,1,4,2019-06-30,2.35,1,365 +34664546,private room w/ separate entrance in quiet area,4259761,Kiwa,Queens,Flushing,40.77257,-73.80125,Private room,45,30,0,,,1,326 +34665010,Entire Newly Renovated 2 Bedroom Private Home,52577963,Mark,Queens,Woodhaven,40.69101,-73.8486,Entire home/apt,199,5,2,2019-06-29,1.20,6,338 +34665824,New York sleeping share Couchsurfer & Backpacking,38483415,Florentino,Manhattan,East Harlem,40.79952,-73.94592,Shared room,75,1,0,,,4,365 +34666999,Charming studio steps from Brooklyn Bridge!,21263506,Vikki,Brooklyn,Vinegar Hill,40.70358,-73.98316,Entire home/apt,200,2,0,,,1,1 +34668348,Huge 1 Bedroom in LES,106538072,Erin,Manhattan,Lower East Side,40.71713,-73.98541,Entire home/apt,200,2,3,2019-06-30,2.05,1,13 +34670157,B-COZY ROOM DORM STYLE 1 GIRL NEEDED TO SHARE NICE,213208277,Darry,Brooklyn,Borough Park,40.6431,-73.99175,Shared room,30,5,0,,,8,365 +34670295,Mini mansion,257320771,Ramie,Brooklyn,Bay Ridge,40.62094,-74.02422,Entire home/apt,100,1,8,2019-07-02,4.44,1,329 +34670423,Newly Renovated Modern Home,259426283,Keymi,Manhattan,Inwood,40.86284,-73.92704,Private room,60,1,2,2019-05-28,1.18,1,326 +34670547,J- COZY ROOM FOR 1 FEMALE FREE WIFI & COFFEE,213208277,Darry,Queens,South Ozone Park,40.67332,-73.79682,Shared room,30,5,1,2019-06-09,1,8,365 +34670672,Beach Front Escape - Rockaway Surf Beach!,8893700,John,Queens,Arverne,40.58817,-73.79513,Entire home/apt,275,2,0,,,2,69 +34671704,"Modern and fun 2 bdrm in Williamsburg, Brooklyn",95015886,Gali,Brooklyn,Williamsburg,40.71373,-73.96743,Entire home/apt,275,2,0,,,1,16 +34672846,Lux Apt in Heart of Downtown *GREAT LOCATION,252836607,Alexis,Manhattan,Financial District,40.70757,-74.00788,Entire home/apt,255,2,2,2019-06-22,1.36,1,12 +34673353,30day min High flr apt in the center of Manhattan,261560877,Edit,Manhattan,Theater District,40.76103,-73.97996,Entire home/apt,250,25,0,,,1,261 +34673695,Home SWEET Home for a day or 2,261563626,Jacqueline,Queens,St. Albans,40.68993,-73.75695,Private room,50,1,23,2019-07-08,12.11,1,356 +34673706,Wonderful Williamsburg,253843480,Yus,Brooklyn,Williamsburg,40.71801,-73.95244,Private room,43,1,2,2019-06-01,1.09,1,249 +34674199,"Bright, sunny, home in Clinton Hill w/amazing roof",5441056,Elissa,Brooklyn,Bedford-Stuyvesant,40.68746,-73.9576,Private room,85,2,4,2019-07-03,2.31,1,67 +34675072,Bright and beautiful One bedroom apt in Soho.,261559275,Deb,Manhattan,SoHo,40.72646,-74.00213,Entire home/apt,250,2,1,2019-05-14,0.54,1,173 +34675093,Pann Station \ Javits Center Apartment,3736053,Nyelli,Manhattan,Chelsea,40.7545,-73.99954,Entire home/apt,100,2,2,2019-06-14,1.67,1,32 +34676486,Luxury Manhattan Suite & uninterrupted views,261581535,Alex,Manhattan,Hell's Kitchen,40.76465,-73.98812,Entire home/apt,449,1,6,2019-07-04,3.21,1,346 +34677950,Brooklyn brownstone 1st floor studio apt.,258006547,Eli,Brooklyn,Bedford-Stuyvesant,40.6845,-73.92454,Entire home/apt,150,2,1,2019-07-07,1,1,22 +34677972,Kings Highway Cozy House,167043905,DeAnn,Brooklyn,Flatlands,40.62281,-73.93446,Private room,200,1,3,2019-06-02,2.05,1,87 +34678207,"Live on Ludlow. Renovated, comfortable apartment",25189614,Liliana,Manhattan,Lower East Side,40.72162,-73.98732,Entire home/apt,350,29,0,,,1,269 +34678628,Stay Near the Williamsburg Bridge!,261597311,Emiliano,Brooklyn,Williamsburg,40.71145,-73.96749,Entire home/apt,500,3,3,2019-06-23,2.25,1,347 +34678758,"Spacious Studio in the East Village, NYC",261589968,Carmen,Manhattan,East Village,40.72757,-73.98336,Entire home/apt,150,31,0,,,1,365 +34678944,"Cozy room at Downtown Manhattan, Chinatown, Soho",250825715,Cherry,Manhattan,Chinatown,40.7176,-73.99728,Private room,85,1,3,2019-06-09,2.73,3,55 +34679559,Stunning Luxury Apartment,261605025,Shlomi,Queens,Kew Gardens Hills,40.72617,-73.81178,Entire home/apt,110,2,0,,,1,76 +34679833,Beautiful Brownstone apt in Crown Heights Brooklyn,128452734,Paul,Brooklyn,Crown Heights,40.67759,-73.94991,Entire home/apt,120,2,1,2019-06-29,1,1,14 +34679993,Garden + Sunroom Townhouse Near Central Park!,258066921,Nathalie + Nick,Manhattan,Upper East Side,40.762,-73.9634,Entire home/apt,300,3,4,2019-06-21,2.61,1,258 +34680877,Cozy bedroom in a spacious apt with a backyard,55026020,Jelena,Brooklyn,Gowanus,40.66694,-73.99405,Private room,50,15,0,,,1,0 +34680900,Massive 3 BR/2 BR + Dinning Room Prime Manhattan,146001596,Joel,Manhattan,Midtown,40.75706,-73.96679,Entire home/apt,585,30,1,2019-05-14,0.54,1,139 +34681035,Renovated with your own bathroom next to Columbia!,25182524,Paola,Manhattan,Harlem,40.80672,-73.95712,Private room,73,1,4,2019-07-04,4,2,24 +34681488,"Private area Smoking/non smoking, great area",261604139,Brandi,Bronx,Williamsbridge,40.87874,-73.84746,Private room,40,1,0,,,1,89 +34681597,One Bedroom 12/3 & 12/4 -Rockefeller Tree Lighting,45733814,Lisa,Manhattan,Midtown,40.76387,-73.9809,Private room,150,2,0,,,1,0 +34681778,Huge Morden Ultra Luxurious Loft,220762164,Sherley,Brooklyn,Bushwick,40.68952,-73.90919,Entire home/apt,349,2,1,2019-05-19,0.58,4,365 +34683256,Sunny bedroom in Chinatown !,33758870,Janko,Manhattan,Two Bridges,40.71098,-73.99426,Private room,80,1,9,2019-07-08,5.51,1,42 +34683938,Luxury 1 bedroom w/ Comfy Casper Mattress,261632991,Sideem,Queens,Astoria,40.76832,-73.93576,Entire home/apt,84,1,0,,,1,90 +34684535,The Penthouse on Tompkin Sq Park,22336945,Andrew,Manhattan,East Village,40.72545,-73.98212,Entire home/apt,200,2,1,2019-06-09,1,1,0 +34684755,Easy Breezy Beautiful Crown Heights One Bedroom,261427783,Meeks,Brooklyn,Crown Heights,40.67385,-73.94639,Private room,85,1,15,2019-07-06,11.84,1,81 +34684980,Sonder | 116 John | Cozy Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70721,-74.00559,Entire home/apt,100,29,0,,,327,332 +34685343,Clean and comfortable private room,16597509,Sally,Brooklyn,Greenpoint,40.72566,-73.93972,Private room,55,7,1,2019-06-01,0.79,1,28 +34685997,Romantic Brand New Oceanfront Studio in Arverne,261647593,Kosta,Queens,Arverne,40.58927,-73.79514,Private room,100,2,10,2019-07-04,6.82,1,67 +34686108,Modern Upperwest Side Condo,259952789,David,Manhattan,Harlem,40.80317,-73.95559,Entire home/apt,350,1,2,2019-07-06,1.22,1,85 +34686293,"Inviting , Cozy and Clean and room like home.",131234868,Salome,Manhattan,Washington Heights,40.85658,-73.93021,Private room,125,3,1,2019-07-03,1,1,81 +34686619,Quiet Private Room near Subway,261654878,Kathryn,Brooklyn,Bensonhurst,40.61753,-74.00221,Private room,35,3,4,2019-06-27,3.16,1,18 +34686718,Clean and Sunny room in Astoria,248555214,Michelle,Queens,Astoria,40.76417,-73.92898,Private room,75,2,4,2019-06-22,4,2,8 +34687035,Hotel-like Small PrivateRoom Single Bed 25 Min NYC,48684597,David,Queens,Maspeth,40.73759,-73.89704,Private room,35,1,8,2019-07-01,4.44,4,234 +34687140,Bensonhurst,261651359,Suraye,Brooklyn,Bensonhurst,40.60475,-73.99213,Private room,60,3,0,,,1,178 +34687192,Sanctuary Studio in Long Island City,183818356,Sylvia,Queens,Astoria,40.75722,-73.92716,Entire home/apt,83,2,1,2019-06-04,0.86,1,16 +34687393,Cozy bedroom in the hearth of NYC!,43359332,Veronica,Manhattan,Midtown,40.74493,-73.98484,Private room,130,5,2,2019-07-05,2,1,74 +34688096,BEAUTIFUL 4BEDS / 2 BATHS - ROOF & GYM,261669663,Brenda,Brooklyn,Bushwick,40.69854,-73.92642,Entire home/apt,275,3,7,2019-07-05,4.04,1,339 +34688471,Sleep comfort,156505456,John,Brooklyn,East New York,40.66646,-73.8734,Private room,54,3,1,2019-05-20,0.59,13,365 +34688735,步行9分钟到缅街中心的独立电梯房,151810361,Jungyen,Queens,Flushing,40.76402,-73.81976,Private room,99,1,2,2019-06-24,2,6,90 +34688764,COZY APARTMENT IN LUXURY BUILDING,261675838,Jordan,Brooklyn,Bushwick,40.69847,-73.92478,Entire home/apt,225,3,7,2019-06-29,4.38,1,359 +34690202,Simple,231858639,Sterling,Brooklyn,Prospect-Lefferts Gardens,40.65973,-73.96102,Entire home/apt,120,5,0,,,1,325 +34690725,"15分钟到纽约城市广场,下楼即是地铁站",83680039,Evelyn,Queens,Long Island City,40.74771,-73.93684,Private room,86,8,0,,,1,6 +34692728,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76364,-73.82292,Private room,59,1,9,2019-07-07,4.82,6,362 +34698543,Harlem Roots Chic Apt,261728099,Jade,Manhattan,Harlem,40.82639,-73.93894,Entire home/apt,75,28,0,,,1,41 +34702046,No.3,257683179,H Ai,Queens,Flushing,40.75019,-73.81435,Private room,45,1,1,2019-07-06,1,6,83 +34702516,Confortable studio,253304582,Iris,Queens,Corona,40.73844,-73.86302,Entire home/apt,90,4,1,2019-06-12,1,2,50 +34704536,Large Family Room/ parking available,252646618,Michael,Queens,Astoria,40.76425,-73.90981,Private room,110,1,0,,,2,310 +34705150,Bright & Modern Brooklyn Apartment,57399783,Desiree,Brooklyn,Crown Heights,40.67693,-73.9369,Entire home/apt,100,3,2,2019-05-29,1.18,1,0 +34705589,Washington Square Park Studio,13352650,Anthony,Manhattan,Greenwich Village,40.72904,-74.00119,Entire home/apt,250,1,0,,,1,111 +34705719,Huge Bedroom w/bathroom next to Columbia U!,25182524,Paola,Manhattan,Harlem,40.80641,-73.95518,Private room,80,1,1,2019-06-01,0.79,2,194 +34706349,Clean and Bright Classic Manhattan!,10032016,Eliana,Manhattan,Morningside Heights,40.80977,-73.95813,Entire home/apt,250,15,1,2019-06-05,0.88,1,34 +34706620,Trendy open concept Williamsburg loft apartment,261768544,Kori,Brooklyn,Williamsburg,40.71125,-73.96116,Entire home/apt,300,2,5,2019-07-01,2.94,1,57 +34706742,Cozy bedroom in East Village apt!,14253187,Gabi,Manhattan,Gramercy,40.73283,-73.98228,Private room,65,1,4,2019-06-08,2.35,1,104 +34707625,Dikeman comfort is a very special Airbnb !!!!,261779182,Torrey,Brooklyn,Red Hook,40.67522,-74.01139,Shared room,38,1,1,2019-06-26,1,2,179 +34708585,Spacious Greenpoint Loft,5665583,Sergio,Brooklyn,Greenpoint,40.73308,-73.95704,Entire home/apt,150,3,0,,,1,0 +34708657,Duplex 4 bed apt fantastic place for 10,261779847,Ben,Manhattan,East Harlem,40.79803,-73.94185,Entire home/apt,350,3,8,2019-06-30,5.11,1,231 +34708692,One Bedroom Williamsburg Apartment,2513252,Stephanie,Brooklyn,Williamsburg,40.7099,-73.9649,Entire home/apt,250,3,1,2019-06-10,1,1,2 +34709658,Hudson Yards 2 bedrooms apartment- 4-5 ppl,240099532,Luiggi,Manhattan,Hell's Kitchen,40.75445,-73.99707,Entire home/apt,269,2,8,2019-06-26,5.45,1,252 +34710643,Digital Nomad Artist Studio (Cat Lovers Only),8207362,Karina,Brooklyn,Bedford-Stuyvesant,40.68847,-73.93897,Private room,85,2,1,2019-05-18,0.57,2,54 +34710645,Furnished Room available in New Building with AC,82187372,David,Brooklyn,Williamsburg,40.71469,-73.95401,Private room,250,10,0,,,1,78 +34710747,BRIGHT ROOMY studio in the heart of East Village!,121767590,Samantha,Manhattan,East Village,40.72861,-73.98252,Entire home/apt,315,2,0,,,1,55 +34711204,Spacious Deluxe Accommodation in the heart of NYC!,260193759,Nyma,Manhattan,Midtown,40.74822,-73.98555,Private room,100,1,0,,,5,274 +34711249,Sonder | 116 John | Dashing 1 BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70679,-74.00689,Entire home/apt,130,29,0,,,327,332 +34711272,Double bed in living room - heart of Manhattan,261802105,Michael,Manhattan,East Village,40.72486,-73.98121,Shared room,70,1,4,2019-06-25,4,1,55 +34711540,SOHO Industrial Chic Apartment with balcony,248335189,Patrick,Manhattan,Little Italy,40.7203,-73.99679,Entire home/apt,139,3,2,2019-07-01,2,1,10 +34711823,COZY PRIVATE STUDIO WITH GARDEN CLOSE TO MANHATTAN,71668793,Stacey & Patrice,Brooklyn,Crown Heights,40.67379,-73.95726,Entire home/apt,149,3,7,2019-07-04,4.20,1,299 +34714078,Sonder | 116 John | Vibrant Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70826,-74.00475,Entire home/apt,110,29,0,,,327,343 +34714207,"sunny quiet apartment, right next to subway",2468616,Arika,Brooklyn,Crown Heights,40.66873,-73.95243,Entire home/apt,120,2,0,,,2,311 +34714231,Exclusive Modern Deluxe Room in the heart of NYC!,260193759,Nyma,Manhattan,Midtown,40.74674,-73.98735,Private room,100,1,3,2019-07-01,3,5,269 +34714305,Sonder | 116 John | Vibrant Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70863,-74.00541,Entire home/apt,110,29,0,,,327,357 +34714579,Private bedroom with private bathroom in Brooklyn,57189210,Fernanda,Brooklyn,Crown Heights,40.67493,-73.94828,Private room,90,3,1,2019-06-11,1,1,56 +34715542,Bay Ridge private house,257034143,Sophia,Brooklyn,Bay Ridge,40.62987,-74.02655,Entire home/apt,200,2,1,2019-07-07,1,2,179 +34715931,Mott Haven Dorm AA,30509656,Orit,Bronx,Port Morris,40.80852,-73.9306,Shared room,28,1,5,2019-06-17,2.94,8,60 +34716310,Charming Artists Apartment near Central Park UES,79653673,Ben,Manhattan,Upper East Side,40.7768,-73.95166,Entire home/apt,125,7,0,,,1,24 +34716458,Art-Gallery Penthouse: 3BD Home in Midtown East,261852969,Yves,Manhattan,Midtown,40.75613,-73.96904,Entire home/apt,499,5,5,2019-06-17,3.19,1,189 +34716516,BIG SUNNY PRIVATE ROOM in BOHEMIAN WILLIAMSBURG,246680134,Anastasiia,Brooklyn,Williamsburg,40.71872,-73.95949,Private room,92,1,6,2019-07-01,3.40,2,16 +34717211,Mott Haven Dorm BB,30509656,Orit,Bronx,Port Morris,40.80869,-73.9317,Shared room,28,1,1,2019-05-25,0.67,8,73 +34717395,Cozy room in Elmhurst,261857310,Carlos,Queens,Elmhurst,40.74545,-73.86927,Private room,59,1,1,2019-05-26,0.68,1,24 +34717733,TheGreystone,239661123,Shantell,Queens,Queens Village,40.72774,-73.73462,Entire home/apt,99,1,6,2019-07-07,4.86,1,15 +34718010,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room2,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67755,-73.91598,Private room,39,30,0,,,5,221 +34718143,Charming & Cozy Bedroom in Manhattan,19638778,Synclaire,Manhattan,Inwood,40.86592,-73.9217,Private room,100,2,0,,,1,89 +34718342,★Pvt Room in 4BR House ★ Backyard ★Laundry ★Room 3,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67745,-73.91474,Private room,43,30,0,,,5,221 +34718463,Mott Haven Dorm DD,30509656,Orit,Bronx,Port Morris,40.80996,-73.93172,Shared room,28,1,2,2019-05-21,1.15,8,365 +34718504,Luxury Private Bedroom + Private Bathroom,6674394,Eri,Manhattan,Upper West Side,40.79419,-73.9735,Private room,180,2,1,2019-06-25,1,1,342 +34718633,Mott Haven Dorm CC,30509656,Orit,Bronx,Port Morris,40.80838,-73.93091,Shared room,28,1,3,2019-06-03,1.70,8,363 +34719445,Beautiful Maison In the Heart of MANHATTAN,221213143,David,Manhattan,Kips Bay,40.74125,-73.98297,Entire home/apt,460,1,2,2019-07-03,1.33,9,287 +34719841,Bohemian Artist in Ridgewood,2432475,Douglas,Queens,Ridgewood,40.7063,-73.89884,Private room,50,1,2,2019-07-07,2,1,35 +34721719,Chez vous en famille,261891944,Rosine,Bronx,Fordham,40.85368,-73.90172,Private room,75,1,1,2019-06-17,1,1,363 +34721879,prime central park location - 2 mins to subway,261894786,Ariana,Manhattan,East Harlem,40.79247,-73.94892,Entire home/apt,109,1,8,2019-06-28,5.11,1,233 +34721935,哥伦比亚大学附近步行3分钟高档公寓主卧暑期降价转租,261895213,Ing,Manhattan,Morningside Heights,40.80902,-73.96716,Private room,65,3,1,2019-06-22,1,1,188 +34722659,NEW! Chic Designer Vanilla,259468466,Jack,Manhattan,Lower East Side,40.71461,-73.98755,Private room,89,4,4,2019-07-07,2.86,2,182 +34723111,Modern 3 Bedroom! Easy Access to Manhattan!,261904019,Pete,Queens,Ridgewood,40.70631,-73.89698,Entire home/apt,199,3,5,2019-07-01,3.13,1,145 +34723124,little sweet room(4),255641440,Li,Queens,Flushing,40.76134,-73.80776,Private room,42,1,1,2019-05-18,0.57,7,331 +34723211,"Quiet, luxury 1BR--15minutes to Manhattan!",12898160,Sapna,Bronx,Riverdale,40.88523,-73.91231,Entire home/apt,90,30,0,,,1,55 +34723946,Suit3,257683179,H Ai,Queens,Flushing,40.76296,-73.80724,Private room,42,1,7,2019-06-21,5.00,6,207 +34727487,Prime Williamsburg,9761047,Anika,Brooklyn,Williamsburg,40.71527,-73.96037,Private room,65,3,2,2019-05-25,1.22,3,0 +34737337,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76187,-73.82169,Private room,69,1,9,2019-06-28,4.91,6,365 +34737386,Great Duplex in Gramercy (private bedroom + bath),15690228,Nicolas,Manhattan,Gramercy,40.73676,-73.9842,Private room,1900,7,0,,,1,332 +34737998,Beautiful Studio Steps from Subway (ORANGE),29582232,Lee And Teri,Brooklyn,Flatbush,40.64163,-73.9655,Entire home/apt,85,3,0,,,5,125 +34738463,Private Group Studio Apartment,4852748,Michelle,Manhattan,Morningside Heights,40.81304,-73.96131,Entire home/apt,195,2,1,2019-06-09,1,6,358 +34741362,M's Place,260639656,Medina,Queens,Long Island City,40.74775,-73.94747,Entire home/apt,320,2,5,2019-07-05,5,1,54 +34741536,2 Mins Walking Distance to Empire State Building!,260193759,Nyma,Manhattan,Midtown,40.74829,-73.98715,Private room,100,1,12,2019-06-16,7.66,5,287 +34741742,Enjoy the view of Empire State Building!,260193759,Nyma,Manhattan,Midtown,40.74677,-73.9866,Private room,100,1,13,2019-07-04,11.14,5,268 +34741897,"A+ 700 sqft. 1BR! Walk to Col. Cir., Central Park",3236741,Eric,Manhattan,Hell's Kitchen,40.77111,-73.99128,Entire home/apt,172,2,5,2019-06-25,3.19,1,4 +34741976,Charming Studio in Meatpacking District/Chelsea,262011998,Elizabeth,Manhattan,West Village,40.74024,-74.00484,Entire home/apt,220,2,3,2019-06-23,3,1,58 +34741981,Ins Style Duplex Apt bedroom w/ private bathroom,20474743,Yahan,Queens,Flushing,40.76274,-73.82089,Private room,55,1,9,2019-07-06,6.43,1,59 +34742133,Sun-drenched 2BR Oasis in Williamsburg/Greenpoint,1709876,Michael & Olivier,Brooklyn,Greenpoint,40.72128,-73.94663,Entire home/apt,185,4,0,,,1,176 +34742586,Bright and Sunny Urban Getaway,85521952,Gregory,Manhattan,Inwood,40.86858,-73.92042,Entire home/apt,200,2,1,2019-06-30,1,1,234 +34742861,Beautiful Studio Steps from Subway (GREEN),29582232,Lee And Teri,Brooklyn,Flatbush,40.64017,-73.96417,Entire home/apt,85,3,3,2019-06-29,3,5,86 +34743257,"Quiet, Warm Room 47 Buffalo 1F Room#3",260072882,Sammy,Brooklyn,Bedford-Stuyvesant,40.67792,-73.92347,Private room,50,2,6,2019-07-02,3.91,2,83 +34743365,Modern and new Duplex next to A train,26319385,Ariadna,Brooklyn,Bedford-Stuyvesant,40.67982,-73.94978,Entire home/apt,175,4,0,,,1,17 +34743695,Spacious 2 br Apartment with Home Office,5993014,Jazmín,Brooklyn,Crown Heights,40.67266,-73.95856,Entire home/apt,75,15,0,,,1,6 +34743708,New Studio on Historic Street,220762164,Sherley,Brooklyn,Bushwick,40.68937,-73.90903,Private room,95,2,1,2019-05-27,0.68,4,354 +34744587,"HARLEM: Renovated, Cozy. 15min train to Times Sq",260599513,Lewis,Manhattan,Harlem,40.81151,-73.94159,Private room,57,2,1,2019-07-05,1,1,34 +34744834,Brooklyns own by nyc 2nd biggest: prospect park,90695775,Jimmy,Brooklyn,Prospect-Lefferts Gardens,40.65556,-73.95674,Entire home/apt,120,2,6,2019-07-01,4.09,1,152 +34745490,Cozy one bedroom apartment with modern touch!,262035496,Omwattie,Brooklyn,East Flatbush,40.65472,-73.93683,Entire home/apt,115,2,7,2019-06-18,5.83,1,123 +34745979,Sun-drenched Brooklyn town home large 3 bedroom,9450360,Rick,Brooklyn,Crown Heights,40.67772,-73.95564,Entire home/apt,278,2,7,2019-07-06,4.12,1,328 +34745985,Spacious Park Slope Apartment,183817011,Yasmeen,Brooklyn,Sunset Park,40.66138,-73.99632,Entire home/apt,190,3,3,2019-06-01,1.80,1,365 +34746555,The Little Italian Manor,139871943,Patrick,Manhattan,Little Italy,40.71889,-73.99716,Private room,100,30,0,,,3,327 +34748562,Prospect Park gem! Charming & chic 2 bedroom apt!,52562602,Talia,Brooklyn,Flatbush,40.64176,-73.9615,Entire home/apt,190,7,0,,,1,16 +34748987,Beautiful 1 Bedroom in the heart of Williamsburg,8305133,Jessica,Brooklyn,Williamsburg,40.71642,-73.96244,Entire home/apt,150,5,0,,,1,49 +34749200,Brand new in the heart of Bushwick,54736855,Britt & Greg,Brooklyn,Bushwick,40.70505,-73.91848,Entire home/apt,140,1,16,2019-07-07,11.16,1,143 +34749210,Sobro,262047205,Adriana,Bronx,Mott Haven,40.80689,-73.91437,Entire home/apt,100,3,4,2019-07-01,2.79,1,330 +34749214,Sunny days in the West Village!,17392429,Marie,Manhattan,West Village,40.73501,-74.00835,Entire home/apt,180,30,0,,,1,329 +34749431,Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69055,-73.91035,Private room,80,1,1,2019-06-02,0.79,2,314 +34750234,Central Park West private room and bathroom,51420334,Joyee,Manhattan,Upper West Side,40.78747,-73.96844,Private room,59,1,0,,,1,0 +34751113,Spacious East Village/Alphabet City Apt,58484199,Julia,Manhattan,East Village,40.72196,-73.98063,Private room,98,3,1,2019-06-11,1,1,158 +34751224,*Family Friendly* Room I Rooftop BAR I Near Macys,260193759,Nyma,Manhattan,Midtown,40.74708,-73.98513,Private room,100,1,8,2019-07-05,6.67,5,236 +34751491,Cozy private room,262079510,Karmelle,Brooklyn,Bedford-Stuyvesant,40.68939,-73.92564,Private room,80,2,5,2019-06-20,2.88,1,83 +34752945,Comfortable Bushwick bedroom,262091506,Christian,Brooklyn,Bushwick,40.68569,-73.90857,Private room,50,3,2,2019-07-04,2,1,97 +34753028,Single room (2),255641440,Li,Queens,Flushing,40.76108,-73.80736,Private room,32,1,3,2019-05-26,1.76,7,285 +34753373,Heart of the city,262094761,Home,Manhattan,Hell's Kitchen,40.76494,-73.98983,Private room,110,2,6,2019-06-28,3.46,1,83 +34753379,Stylish Room in Swanky Bushwick Apartment,60235514,James,Brooklyn,Bushwick,40.7036,-73.92496,Private room,51,1,4,2019-06-02,2.31,1,71 +34753453,Extra room 420friendly & breakfast,218116366,Yankee,Bronx,East Morrisania,40.82831,-73.88746,Private room,80,1,3,2019-07-01,3,2,89 +34754084,Cozy One Bedroom Apartment,135710202,Christina,Brooklyn,Bedford-Stuyvesant,40.69446,-73.94694,Entire home/apt,68,1,0,,,1,255 +34754120,"Luxury 1 bedroom, 1 bathroom in Manhattan",2126399,Crystal,Manhattan,Harlem,40.80508,-73.95088,Entire home/apt,150,5,0,,,1,7 +34754241,Charming Hell’s Kitchen Studio,46588955,Emily,Manhattan,Hell's Kitchen,40.7659,-73.98764,Entire home/apt,289,2,0,,,1,8 +34755449,A friendly place to stay,57230304,Imanuelly,Queens,Elmhurst,40.73156,-73.88551,Private room,90,7,2,2019-06-30,1.58,3,337 +34755841,"Your own private, fully furnished large room.",262116941,Paul,Manhattan,East Harlem,40.7963,-73.93087,Private room,65,7,0,,,1,151 +34756040,(= RENT ME RENT ME =),262118049,Aaron,Manhattan,Chinatown,40.71384,-73.99278,Entire home/apt,212,1,1,2019-06-26,1,1,0 +34756976,Gigi’s Room,74633496,Justine,Bronx,University Heights,40.85689,-73.9091,Private room,40,5,0,,,5,362 +34757500,UN Artists Full Floor Loft - 3 Bedroom/2 Bath,101109383,Will AND Kelly,Manhattan,Midtown,40.75487,-73.96898,Entire home/apt,500,3,1,2019-06-08,1,1,257 +34759503,Sunny Private Room in Huge Manhattan Apartment,252356839,Leo,Manhattan,Harlem,40.82802,-73.94482,Private room,65,2,2,2019-07-04,1.36,2,2 +34770571,Private room in heart of crown heights,28295132,Keira,Brooklyn,Crown Heights,40.67369,-73.94931,Private room,60,3,1,2019-05-21,0.61,1,0 +34771161,"步行9分钟到法拉盛缅街中心的电梯房,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76268,-73.82252,Private room,99,1,10,2019-07-01,5.77,6,365 +34771521,Upper East Side 1Br - Near Central Park,262196496,Ulysse,Manhattan,East Harlem,40.78592,-73.94837,Private room,82,4,0,,,1,45 +34772058,"Entire home in Crown Heights, Brooklyn",30873439,Margarita,Brooklyn,Crown Heights,40.66752,-73.95466,Entire home/apt,90,2,5,2019-06-22,5,1,22 +34773215,Spacious Bedroom in Brooklyn Very Close to Subway,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68676,-73.94593,Private room,51,1,4,2019-06-23,2.86,3,0 +34773903,Great room for 2 or 3 people close to the trains,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68727,-73.94736,Private room,56,1,5,2019-06-23,3.06,3,1 +34774305,"Eclectic, Colorful, Trendy Williamsburg Studio",261584195,Ozzie,Brooklyn,Williamsburg,40.71497,-73.96433,Entire home/apt,265,2,1,2019-06-13,1,1,3 +34774436,Beautiful private bedroom in Brooklyn,210799153,Brandon,Brooklyn,Bedford-Stuyvesant,40.68718,-73.94797,Private room,56,1,2,2019-06-17,1.58,3,0 +34774681,Hidden gem! Private home in heart of NY village,259283179,John,Manhattan,East Village,40.7281,-73.98354,Entire home/apt,219,2,7,2019-07-01,4.20,1,316 +34776151,Bedroom + den + bath w/ sep. entry in Bed Stuy!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68602,-73.94844,Private room,68,1,8,2019-07-02,6.32,2,36 +34777870,Cosy 2-bedroom apartment on UES/East Harlem,41348157,Petra,Manhattan,East Harlem,40.7927,-73.94033,Entire home/apt,300,3,0,,,3,17 +34777979,"The Red Brick Abode, in the heart of Williamsburg",15010925,Carlos,Brooklyn,Williamsburg,40.71317,-73.96066,Entire home/apt,160,1,13,2019-07-01,7.96,1,120 +34778518,"Cozy Studio in Manhattan, Upper East Side",262244457,Marie,Manhattan,Upper East Side,40.77064,-73.95606,Entire home/apt,250,1,7,2019-06-30,4.47,1,188 +34778953,Cozy and bright room with a spectacular view,136953596,Fabio,Brooklyn,Fort Greene,40.69491,-73.98244,Private room,125,5,1,2019-06-08,0.94,1,172 +34779259,3 Bedrooms Entire House for Rent,44539889,Lc,Queens,Middle Village,40.71685,-73.87507,Entire home/apt,199,31,0,,,1,83 +34780437,Great Private Room with 2 Beds Near Metro,222252623,Lisa And Julian,Brooklyn,Bedford-Stuyvesant,40.69418,-73.94409,Private room,68,2,2,2019-06-23,1.28,3,0 +34780613,Large Two Floor Apartment in Hip Bushwick Area,31239719,Daniel,Brooklyn,Bushwick,40.70433,-73.92488,Entire home/apt,120,4,0,,,1,10 +34781680,"A lovely place of Zen, sunny, clean & comfortable.",41926423,Rl,Bronx,Longwood,40.81795,-73.91178,Shared room,85,1,0,,,1,77 +34782691,Mott Haven Dorm EE,30509656,Orit,Bronx,Port Morris,40.80868,-73.93015,Shared room,28,1,3,2019-06-21,2.65,8,362 +34783461,West Village Garden Studio-,5264588,Trey,Manhattan,West Village,40.73526,-74.0002,Entire home/apt,175,2,7,2019-06-26,4.88,1,341 +34783503,Uptown Experience on Central Park,262279497,Britt,Manhattan,East Harlem,40.79614,-73.94838,Entire home/apt,123,1,5,2019-06-17,3.95,1,327 +34783887,Charming 1br in Morningside Heights,3138868,Wenfei,Manhattan,Morningside Heights,40.80535,-73.96307,Entire home/apt,140,4,1,2019-05-26,0.68,1,9 +34784469,"Premier room in Downtown NYC, Spacious and Private",250825715,Cherry,Manhattan,Chinatown,40.71716,-73.99716,Private room,90,1,1,2019-06-21,1,3,39 +34784621,Modern renovated private Apt/Washer & dryer.,35253342,Tee,Brooklyn,Bay Ridge,40.63321,-74.02463,Entire home/apt,120,21,0,,,3,67 +34784681,Brooklyn Home,262287464,Daniel,Brooklyn,Boerum Hill,40.68713,-73.98592,Private room,250,1,1,2019-05-20,0.59,1,365 +34785319,Modern elegant Studio in ❤ of West Village,11211827,Vitalika,Manhattan,West Village,40.73682,-74.00406,Entire home/apt,250,2,2,2019-07-02,2,1,98 +34785397,"Artist Room, Cozy Crown Heights",230698955,Victoria,Brooklyn,Crown Heights,40.67146,-73.93483,Private room,29,5,1,2019-05-31,0.75,2,0 +34785509,Room in 3-BR NY Apt near Central Park,74211590,Thelma,Manhattan,Harlem,40.80015,-73.95387,Private room,50,14,1,2019-05-17,0.57,1,0 +34785850,New! Modern Midtown East Sanctury,229486123,Manvi,Manhattan,Midtown,40.76066,-73.96639,Entire home/apt,479,2,4,2019-06-09,2.73,1,286 +34785861,Bohemian private space in Brooklyn's heart,2327518,Giulio,Brooklyn,Bedford-Stuyvesant,40.68511,-73.95283,Private room,75,2,7,2019-06-24,4.20,1,0 +34787483,"Shiny, comfy room, 10 minutes to Downtown Flushing",221739176,Suping,Queens,Kew Gardens Hills,40.72619,-73.82886,Private room,50,2,2,2019-06-24,1.62,1,89 +34787546,Chic One Bedroom apartment,252445373,S,Manhattan,Washington Heights,40.85798,-73.92855,Entire home/apt,85,7,0,,,1,67 +34788703,Clean comfortable room,260902999,Debera,Manhattan,Harlem,40.81737,-73.93781,Private room,150,5,0,,,1,269 +34788798,The Secret Garden,41672509,Na'ama,Manhattan,Washington Heights,40.84433,-73.93948,Private room,60,1,13,2019-06-24,7.50,1,316 +34788810,Amazing location apt in NYC part2 Women only!,22700616,Estrella Y.,Manhattan,Midtown,40.74713,-73.98489,Private room,110,3,2,2019-06-16,1.36,1,12 +34788893,A little oasis in the big city!,39831146,George And Laura,Brooklyn,Carroll Gardens,40.68026,-74.00078,Entire home/apt,225,4,0,,,1,317 +34790340,Clean Two Bedroom Apt in Lower East Side/Chinatown,1103131,Andrew,Manhattan,Lower East Side,40.71482,-73.98911,Entire home/apt,175,4,2,2019-07-04,2,2,0 +34790450,Village: Cozy Spacious Condo.,24064346,Gabriel,Manhattan,West Village,40.73458,-74.00361,Entire home/apt,500,3,11,2019-07-07,6.73,1,318 +34790625,Sublet in the upper west side,249325265,Abdulla,Manhattan,Upper West Side,40.79632,-73.969,Private room,79,1,7,2019-06-21,5.00,1,42 +34790702,Spacious 3 br/2bath balcony views in heart of NYC,170464089,Allison,Manhattan,Murray Hill,40.7458,-73.97744,Entire home/apt,490,2,4,2019-07-01,3.33,1,248 +34791292,"NY Oasis With Patio. Near Park, Dining & More!",4924477,Adelaida,Manhattan,East Village,40.726,-73.97861,Private room,94,5,5,2019-06-30,5,1,47 +34791422,"2 bedrooms-Apartment @ Brooklyn, Near D Subway",258118351,Artie,Brooklyn,Borough Park,40.63896,-73.99689,Entire home/apt,140,9,1,2019-07-06,1,2,73 +34791645,Mott Haven Dorm FF,30509656,Orit,Bronx,Port Morris,40.80858,-73.93164,Shared room,28,1,10,2019-06-23,6.82,8,351 +34791952,Master Suite in Brooklyn Art Cove,60434059,Samantha,Brooklyn,Bushwick,40.69056,-73.91185,Private room,80,1,1,2019-05-27,0.68,2,74 +34792347,Cozy Private Room in Prime Location,233755743,Jany,Queens,Elmhurst,40.73291,-73.87561,Private room,40,2,2,2019-06-08,1.82,2,346 +34793874,Upper East Side! Studio Near Museum Mile!,256718270,Tara,Manhattan,Upper East Side,40.77932,-73.95343,Entire home/apt,109,30,2,2019-06-01,1.43,1,197 +34796261,Shared room in Hell's Kitchen near Times Square 1,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76403,-73.98913,Shared room,75,1,7,2019-06-30,4.04,6,363 +34801106,Private Lrg bedroom shared aprtmnt 12mins from NYC,217484432,Dion,Queens,Ditmars Steinway,40.7754,-73.90787,Private room,115,1,2,2019-05-19,1.15,2,304 +34801761,Bushwick Brand new 3 bed 3 baths,49130598,Joanne,Brooklyn,Bushwick,40.69718,-73.92843,Entire home/apt,328,2,3,2019-06-27,2.81,1,19 +34803200,"Home away from home, cozy and amenable.",23819362,Rene,Brooklyn,Canarsie,40.63993,-73.902,Entire home/apt,114,4,4,2019-06-23,2.79,1,284 +34803347,Yu,197052947,Yu,Manhattan,Roosevelt Island,40.76417,-73.94865,Shared room,55,7,0,,,1,38 +34804749,Cozy East Village Studio - Backyard Space,81351940,Rick,Manhattan,East Village,40.72387,-73.97845,Entire home/apt,166,2,4,2019-06-30,2.79,1,75 +34804794,Central park North Two Bedroom,181287271,Nina,Manhattan,Harlem,40.79966,-73.9539,Entire home/apt,325,3,14,2019-07-05,8.24,1,126 +34805393,Stylish 2 bedrooms Downtown Manhattan Chinatown,14156628,Bruno,Manhattan,Lower East Side,40.71255,-73.99147,Entire home/apt,200,2,4,2019-07-01,4,1,233 +34805487,Hostal Home - Welcome Home,261854722,Jasmina,Queens,Jamaica,40.70091,-73.81359,Private room,80,1,5,2019-06-23,3.00,1,54 +34805654,BEST LOCATION IN MANHATTAN!! COZY ONE BEDROOM!!,91437526,Israel,Manhattan,Hell's Kitchen,40.75435,-73.99801,Entire home/apt,499,3,6,2019-07-05,4.86,1,176 +34806115,AMAZING 2 BEDROOMS IN HEART OF CHELSEA!!!,148374046,Isra,Manhattan,Chelsea,40.74437,-74.00007,Entire home/apt,499,3,5,2019-06-25,4.05,1,199 +34806449,Designer New Apartment in Nomad / Flatiron,43226402,Eugene,Manhattan,Midtown,40.74305,-73.98368,Entire home/apt,250,30,0,,,1,95 +34808422,Vibrant Spacious Artist Friendly Apt in Brooklyn!,7952814,Imani,Brooklyn,Bedford-Stuyvesant,40.69064,-73.95664,Entire home/apt,100,1,3,2019-06-23,2.65,1,43 +34809450,Fantastic Apartment in Greenpoint,2157562,Athena,Brooklyn,Greenpoint,40.72235,-73.94533,Entire home/apt,120,3,4,2019-06-22,3.33,1,181 +34809791,Bright Private room in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63649,-74.01247,Private room,58,1,0,,,4,264 +34809828,Cuarto con ambiente Familiar solo adultos,262436389,Edmea Valeria,Queens,Maspeth,40.73453,-73.89477,Private room,50,1,4,2019-07-02,3.64,1,219 +34810052,Cozy & clean place - 15min from Manhattan,262394284,Klara,Queens,Astoria,40.75936,-73.9258,Private room,52,2,8,2019-06-23,5.33,1,22 +34810330,Subway M/R<2min>& 7 Line<5min> Quiet neighborhood,19303369,Hiroki,Queens,Woodside,40.74637,-73.89933,Private room,33,28,0,,,37,41 +34810928,Spacious Washington Heights Oasis with Laundry,7313602,Amy,Manhattan,Washington Heights,40.85374,-73.93198,Entire home/apt,90,3,1,2019-06-03,0.83,1,12 +34811838,Experience the cozy #VanLife in NYC/East Village!,262452748,Nancy,Manhattan,East Village,40.72609,-73.98354,Entire home/apt,89,1,10,2019-06-24,5.88,2,173 +34812124,Sunny New York Apartment w/ 2 Spacious Bedrooms!,131103134,Daniel,Manhattan,Upper East Side,40.77388,-73.9568,Entire home/apt,217,3,2,2019-06-19,1.67,1,235 +34812586,cozy manhattan hideaway,222201467,Alfie,Manhattan,Upper East Side,40.77176,-73.94903,Entire home/apt,150,2,3,2019-05-31,1.96,1,66 +34812878,"Beauty, Shared Room Near Central Park 4",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76586,-73.98721,Shared room,76,1,6,2019-06-11,3.46,6,365 +34813137,East Village Room,262461078,Sofi,Manhattan,East Village,40.72504,-73.97908,Private room,70,4,3,2019-06-30,3,1,346 +34813189,Shared apt by Central Park Near Times Square 2,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76579,-73.98932,Shared room,75,1,8,2019-07-01,4.62,6,365 +34813344,AWESOME LOCATION!! NEWLY REMODELED APARTMENT!!,262434396,Angeline,Brooklyn,Williamsburg,40.71597,-73.96107,Entire home/apt,650,3,1,2019-06-17,1,1,352 +34813479,"Cozy apartment ,Shared Room Heart of Manhattan 5",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76612,-73.98749,Shared room,75,1,4,2019-06-23,2.35,6,365 +34813770,AMAZING ONE MONTH SUBLET IN WILLIAMSBURG!!!,259826953,Yaron,Brooklyn,Williamsburg,40.71771,-73.95831,Private room,99,3,2,2019-06-09,1.67,2,179 +34813879,Times Square & Central Park Plus Design,480943,Ro,Manhattan,Hell's Kitchen,40.76714,-73.98784,Entire home/apt,249,2,4,2019-07-02,2.55,2,336 +34813915,"Beauty Apt ,Shared Room in Hell's Kitchen 6",262360035,Kuzey,Manhattan,Hell's Kitchen,40.76558,-73.98785,Shared room,75,1,3,2019-06-30,1.76,6,365 +34813955,Gateway to Harlem Luxury,35100060,Jessica,Manhattan,Harlem,40.80126,-73.95037,Private room,70,5,0,,,2,0 +34814184,Shared Room By Times Square near Central Park 3,262360035,Kuzey,Manhattan,Hell's Kitchen,40.76391,-73.98892,Shared room,75,1,3,2019-06-24,2.20,6,365 +34815163,Glamp In a Cozy Spacious Camper Van In NYC!,262452748,Nancy,Manhattan,East Village,40.72611,-73.98208,Entire home/apt,85,1,6,2019-06-24,3.53,2,170 +34815569,"Cozy apartment, new and super clean!",258651643,Marcia,Queens,Long Island City,40.75291,-73.92305,Private room,75,3,4,2019-06-15,2.35,1,144 +34815717,Fantastic West Harlem Brownstone,243189296,T. Reginald,Manhattan,Harlem,40.80859,-73.95132,Entire home/apt,90,3,0,,,1,3 +34816480,MASSIVE loft in the Lower East Side,819674,Andrew,Manhattan,Chinatown,40.71409,-73.9918,Entire home/apt,450,3,0,,,1,4 +34816483,Home in Washington Height's Historic District,54415933,Laura,Manhattan,Washington Heights,40.83468,-73.93714,Entire home/apt,300,3,0,,,1,88 +34816747,Steps away from Columbia University/ Morningside P,206758177,Miguel,Manhattan,Harlem,40.80526,-73.95522,Entire home/apt,195,1,11,2019-06-25,7.50,3,33 +34817032,Fantastic Midtown Elegance,94101463,Jessica,Manhattan,Midtown,40.75316,-73.97099,Entire home/apt,300,3,15,2019-07-06,8.82,1,357 +34817571,Prime location - 2 Bedroom Penthouse Views,22953090,David,Manhattan,Upper East Side,40.7724,-73.95762,Entire home/apt,500,1,2,2019-06-20,1.46,1,151 +34817616,5 min walk to Times Square! Sleeps 5. Very clean.,251535441,Nick,Manhattan,Hell's Kitchen,40.76047,-73.99202,Entire home/apt,199,7,6,2019-07-01,3.46,1,102 +34818201,Whole floor(2bedroom) for group in safe Area,41326856,Jeerathinan,Queens,Elmhurst,40.74464,-73.8791,Entire home/apt,145,1,0,,,5,110 +34818674,Heights VI,9130040,Candace,Brooklyn,East Flatbush,40.66319,-73.93434,Private room,99,1,0,,,6,365 +34819184,Home McDonald,156850005,Sharon,Queens,Jackson Heights,40.756,-73.87756,Private room,77,1,1,2019-05-29,0.73,2,355 +34819514,Comfortable double room with balcony(舒适双人房带阳台),257683179,H Ai,Queens,Flushing,40.76153,-73.80726,Private room,55,1,0,,,6,62 +34819702,Private Pristine Studio in Brooklyn,10700780,Rose,Brooklyn,Windsor Terrace,40.64932,-73.98018,Entire home/apt,90,1,11,2019-06-23,7.17,1,3 +34822061,NYC Ocean Front Suburb,262528929,Alfonso,Bronx,Throgs Neck,40.828,-73.81275,Entire home/apt,100,3,1,2019-06-22,1,1,336 +34825113,Amazing 2 BDRM in Heart of SOHO/LITTLE ITALY,62745,Roberto,Manhattan,Little Italy,40.7185,-73.99824,Entire home/apt,175,30,0,,,1,198 +34830282,Clarkson Loft the gem of east Flatbush,262534951,Sandra,Brooklyn,East Flatbush,40.65904,-73.92334,Private room,60,1,2,2019-06-09,1.58,2,179 +34830629,"Large, luxury, one bedroom with veranda & garden",37170601,Petros,Brooklyn,Flatlands,40.61401,-73.92112,Entire home/apt,125,3,0,,,1,42 +34830893,Sun-drenched 1 bedroom in Clinton Hill/Bed-Stuy,10273046,Irene,Brooklyn,Bedford-Stuyvesant,40.69021,-73.95058,Entire home/apt,120,14,0,,,1,53 +34832415,Gay friendly,6503950,Rob,Brooklyn,Bushwick,40.69339,-73.90588,Private room,50,1,6,2019-06-30,4.74,2,311 +34833931,2BR LUXARY DUPLEX LOFT Downtown Brooklyn (4+ Days),48194192,Allen,Brooklyn,Clinton Hill,40.69526,-73.96321,Entire home/apt,395,4,1,2019-06-22,1,4,22 +34834104,Heights II,9130040,Candace,Brooklyn,East Flatbush,40.66189,-73.93309,Private room,99,1,1,2019-05-19,0.59,6,365 +34834383,High View of the River,61396454,Ash,Manhattan,Midtown,40.75534,-73.96446,Entire home/apt,200,30,0,,,14,365 +34834494,"Big Sunny Room in the heart of Greenpoint, BK",9943690,Lisha,Brooklyn,Greenpoint,40.72618,-73.94971,Private room,55,5,0,,,1,136 +34834531,Cozy 2 Bed 1 Bath- Sutton place,61396454,Ash,Manhattan,Midtown,40.75406,-73.96436,Entire home/apt,225,30,0,,,14,343 +34834620,Fully Renovated 1 Bedroom- Washer Dryer,61396454,Ash,Manhattan,Midtown,40.7554,-73.96474,Entire home/apt,200,30,1,2019-06-14,1,14,289 +34834789,The Bulls Horn's,61396454,Ash,Manhattan,Midtown,40.75523,-73.96342,Entire home/apt,300,30,0,,,14,339 +34834869,Gorgeous 2 Bed 1 Bath - Sutton Place,61396454,Ash,Manhattan,Midtown,40.75494,-73.96522,Entire home/apt,220,30,0,,,14,332 +34834953,The Bridge View- Sutton Place,61396454,Ash,Manhattan,Midtown,40.75568,-73.96474,Entire home/apt,300,30,0,,,14,333 +34835013,Fully Renovated One Bedroom- Sutton place,61396454,Ash,Manhattan,Midtown,40.75379,-73.96433,Entire home/apt,190,30,1,2019-06-21,1,14,302 +34835072,High End Renovated Apartment - Sutton place,61396454,Ash,Manhattan,Midtown,40.75669,-73.96199,Entire home/apt,300,30,0,,,14,329 +34835303,Renovated Sutton Place Apartment- Free Gym,61396454,Ash,Manhattan,Midtown,40.75643,-73.96375,Entire home/apt,300,30,1,2019-06-12,1,14,333 +34835501,The River View- Sutton Place,61396454,Ash,Manhattan,Midtown,40.75451,-73.96348,Entire home/apt,190,30,0,,,14,365 +34835522,Beautiful 2 Bedrooms in upper East #5,1786901,Shai,Manhattan,Upper East Side,40.78345,-73.94751,Entire home/apt,200,3,0,,,9,29 +34835762,Central Hall Colonial with Free Parking Bus EXP NY,252051657,Anastasios,Staten Island,Prince's Bay,40.53076,-74.20295,Entire home/apt,1250,14,0,,,1,23 +34836661,Become a New Yorker in Bushwick!,6605565,Samantha,Brooklyn,Bushwick,40.69941,-73.91186,Private room,70,3,3,2019-07-01,3,1,27 +34836737,Spacious Harlem Home in Manhattan!,9486614,Roberto,Manhattan,Harlem,40.81157,-73.94654,Entire home/apt,799,3,0,,,1,51 +34837017,AMAZING 3 BEDROOM APT IN BROOKLYN NY,262469851,Jay,Brooklyn,Williamsburg,40.71853,-73.94808,Entire home/apt,659,4,4,2019-06-06,3.00,1,334 +34837784,Stylish One Bedroom Apartment!!,262470176,Jason,Brooklyn,Williamsburg,40.7192,-73.94805,Entire home/apt,650,3,4,2019-06-16,3.64,1,359 +34837940,SPACIOUS 3 BEDROOM APARTMENT In BROOKLYN!!,262634390,Melissa,Brooklyn,Greenpoint,40.72235,-73.94176,Entire home/apt,650,3,2,2019-06-20,2,1,346 +34838079,Great Location in Chinatown and Little Italy,259968021,Che,Manhattan,Chinatown,40.71837,-73.99633,Entire home/apt,260,2,5,2019-07-01,3.41,1,235 +34838171,"Gorgeous, stylish 3 Bedroom Apt in Greenpoint, BK",294307,Swetha,Brooklyn,Greenpoint,40.73735,-73.95532,Entire home/apt,250,3,0,,,1,114 +34838351,Stunning 2Bed/2BA + 300sqft deck by the river!,931058,Nadine,Brooklyn,Williamsburg,40.7215,-73.96,Entire home/apt,399,1,1,2019-07-02,1,1,41 +34839277,Cozy & Comfortable Private Room,40085320,Alaa,Brooklyn,Prospect-Lefferts Gardens,40.66261,-73.94399,Private room,55,2,11,2019-07-07,9.17,2,44 +34840034,Long Island City for Dreamers,243194565,Greg,Queens,Long Island City,40.74705,-73.9472,Private room,130,5,0,,,1,179 +34840050,金城发双人房 suit2 queens size bed,255641440,Li,Queens,Flushing,40.75,-73.81489,Private room,43,1,0,,,7,339 +34840495,Newly Renovated 5 Bed 2 Bath Spacious Apartment.,262657892,Philip,Brooklyn,Crown Heights,40.66473,-73.93134,Entire home/apt,475,3,2,2019-06-30,2,3,219 +34840894,Modern Loft in East Williamsburg (Morgan Ave),1306620,Mia,Brooklyn,Bushwick,40.70473,-73.92867,Entire home/apt,200,3,1,2019-07-01,1,1,46 +34841457,Charming Private Bedroom,40085320,Alaa,Brooklyn,Prospect-Lefferts Gardens,40.66064,-73.94315,Private room,55,2,8,2019-06-30,6.49,2,22 +34842320,☆ ❣ Cozy 2 ideal location| private entrance ☆ ❣,259880452,Malik,Queens,Flushing,40.75652,-73.81368,Entire home/apt,99,1,3,2019-07-07,3,2,357 +34843532,✰ RARE FIND ✰ PRIVATE PATIO ✰,229506961,Alex,Manhattan,Midtown,40.75935,-73.96471,Entire home/apt,289,2,3,2019-07-04,3,1,309 +34843761,AMAZING TWO BDRM IN MIDTOWN MANHATTAN!!,262570325,Javier,Manhattan,Hell's Kitchen,40.75967,-73.99219,Entire home/apt,499,3,6,2019-07-06,4.62,1,361 +34844071,SWEET STUDIO 4 BLOCKS FROM THE BEACH! 15min to NYC,56306339,Al,Staten Island,Midland Beach,40.57503,-74.09523,Entire home/apt,61,5,0,,,1,290 +34844175,Room with a private bathroom in modern BK building,25701819,Gorkem,Brooklyn,Bedford-Stuyvesant,40.68961,-73.9232,Private room,55,16,0,,,1,0 +34844239,❀ Bright and cozy townhouse | Ideal for families ❀,154268909,Malik,Queens,Bellerose,40.74027,-73.71829,Entire home/apt,180,2,0,,,2,281 +34844630,Beautiful apartment in Gravesend(Girls share room),261338177,Diana,Brooklyn,Gravesend,40.58941,-73.97116,Shared room,25,7,0,,,6,321 +34844773,PureVia (Girls shared room only),261338177,Diana,Brooklyn,Gravesend,40.59087,-73.97275,Shared room,25,7,1,2019-05-26,0.67,6,313 +34844961,The Pineapple tree (Girls shared room only),261338177,Diana,Brooklyn,Gravesend,40.58972,-73.97172,Shared room,25,7,0,,,6,343 +34848236,My available bedroom,229450463,Frank,Bronx,Pelham Bay,40.85251,-73.83254,Private room,55,2,0,,,1,89 +34851748,X,184750740,Juice,Bronx,Morrisania,40.82504,-73.90918,Shared room,80,1,0,,,4,365 +34853099,Private Roof with Great View of NYC,67046604,Jackie,Brooklyn,Park Slope,40.66713,-73.98196,Private room,60,15,0,,,1,53 +34855302,West Village GEM on Charles St!,262767899,Paola,Manhattan,West Village,40.73559,-73.99959,Entire home/apt,299,2,1,2019-06-19,1,1,118 +34856733,Large spacious room,20110967,Maria,Manhattan,Inwood,40.86025,-73.92647,Private room,24,10,0,,,1,145 +34857004,Sunny 1BR in the Heart of the Lower East Side,13738322,Gordy,Manhattan,Lower East Side,40.72183,-73.98803,Entire home/apt,125,1,4,2019-06-23,2.55,1,0 +34857809,Artistic Studio on the Upper East Side,69433846,Isabelle,Manhattan,Upper East Side,40.77621,-73.9616,Entire home/apt,180,2,0,,,1,0 +34858021,Entire sunlit Little Italy apartment,136025561,Alexandra,Manhattan,Little Italy,40.71758,-73.99792,Entire home/apt,95,2,2,2019-07-01,1.33,2,0 +34858480,"Beautiful 1BR, water view next to Madison Square",23046080,Zyad,Manhattan,Chelsea,40.75295,-73.9955,Entire home/apt,250,6,1,2019-07-05,1,1,3 +34858641,"Minimalist, Designer Apt Flooded with Sun & Views",26023166,Tiffany,Brooklyn,Clinton Hill,40.68182,-73.959,Entire home/apt,200,3,1,2019-05-30,0.73,1,50 +34858865,"Private home next to beach,transport,parking",32162495,Mostafa,Staten Island,Eltingville,40.53939,-74.15389,Entire home/apt,299,10,0,,,3,30 +34859742,Elegant 2 Bed.-10 min to Manhattan,10513282,Daniel,Queens,Ditmars Steinway,40.7753,-73.90994,Entire home/apt,93,2,1,2019-06-02,0.81,1,361 +34859794,Beautiful Luxury Brownstone Apt in Brooklyn,36082598,Genevieve,Brooklyn,Bedford-Stuyvesant,40.68315,-73.95222,Entire home/apt,225,2,6,2019-06-30,3.83,2,273 +34859801,Enjoy NY under the lights of the Empire State.,45433836,Michelle,Manhattan,Chelsea,40.74473,-73.99213,Entire home/apt,310,7,0,,,1,81 +34859949,Amazing Townhouse Experience with Private Garden,262800168,Jennifer,Manhattan,Midtown,40.7431,-73.98233,Entire home/apt,1000,2,6,2019-06-30,5.29,1,231 +34860021,"Spacious sunny 1 bedroom, steps away from subway",262803937,Roddison,Brooklyn,Prospect-Lefferts Gardens,40.66288,-73.95277,Entire home/apt,90,2,4,2019-06-24,2.73,1,73 +34860207,Spacious 2 Bedroom - Quiet and Easily Accessible,90463984,Isabelle,Queens,Richmond Hill,40.69838,-73.84228,Entire home/apt,120,7,0,,,3,122 +34860502,Sunny bedroom in Brooklyn,73869612,Rebecca,Brooklyn,Crown Heights,40.67562,-73.95319,Private room,90,7,0,,,1,5 +34860549,1 room for a cozy night or 2,209915988,Ashley,Bronx,Unionport,40.82936,-73.84854,Private room,75,1,1,2019-05-26,0.68,1,365 +34861069,Hideaway in Morning-side Heights,18682781,Dimitri,Manhattan,Harlem,40.82509,-73.9522,Private room,75,1,4,2019-06-30,2.55,1,90 +34862591,Spacey Bushwick Loft! Perfect location! Big Room!,2201963,Violeta,Brooklyn,Williamsburg,40.70631,-73.93338,Private room,64,21,0,,,1,5 +34862827,Exceptional Upper West Side Oasis,4185618,Michael,Manhattan,Upper West Side,40.77629,-73.98017,Entire home/apt,249,3,3,2019-07-07,2.73,1,118 +34863318,Private room: One Cherry,25867795,Vin,Brooklyn,Sunset Park,40.63957,-74.01717,Private room,44,1,8,2019-07-01,5.11,1,74 +34863999,New Hotel-Like Private Room KING Bed 25 min NYC,48684597,David,Queens,Maspeth,40.73829,-73.89586,Private room,50,1,12,2019-07-06,9.47,4,233 +34864348,阳台大双人房 (queens size room with balcony ),255641440,Li,Queens,Flushing,40.76316,-73.80869,Private room,55,1,0,,,7,329 +34864369,dumbo gem with garden sleeps 3.,121080979,Jason,Brooklyn,DUMBO,40.70378,-73.99278,Private room,400,3,0,,,1,136 +34865230,Cool studio in Brooklyn Heights,3415882,Matthew,Brooklyn,Brooklyn Heights,40.69015,-73.99271,Entire home/apt,150,5,2,2019-07-03,2,1,10 +34865775,Lovely LES apartment,137949496,Dolev,Manhattan,Lower East Side,40.72081,-73.99069,Entire home/apt,110,7,2,2019-06-23,2,1,0 +34866413,Cozy and convenient studio in Chelsea,61882349,Janet,Manhattan,Chelsea,40.7483,-74.0008,Entire home/apt,93,5,2,2019-06-16,2,1,0 +34866447,Newly Renovated 4 Bed 2 Bath Spacious Apartment,262657892,Philip,Brooklyn,Crown Heights,40.66682,-73.93022,Entire home/apt,370,3,3,2019-06-24,1.80,3,220 +34866647,COSY KINGDOM IN UPTOWN,257839699,Mauricio,Manhattan,Washington Heights,40.85423,-73.93215,Private room,129,1,0,,,1,5 +34866682,New 9 Bed 4 Full Bath 3000 SF Spacious Apartment,262657892,Philip,Brooklyn,Crown Heights,40.66678,-73.93035,Entire home/apt,830,3,0,,,3,213 +34866737,amazing 3 BR 1 Bath in Hanover sq.,115771987,Yuki,Manhattan,Financial District,40.7075,-74.00853,Entire home/apt,196,30,0,,,6,222 +34866786,Amazing 2 Bed 2 Bath with Gym in the UWS #6104,116305897,Laura,Manhattan,Upper West Side,40.78932,-73.97359,Entire home/apt,250,30,0,,,9,312 +34866897,Bedroom + Private Bath + Backyard in Bedstuy,20086738,Kristin Page,Brooklyn,Bedford-Stuyvesant,40.68098,-73.91608,Private room,90,2,2,2019-06-18,2,2,1 +34867034,“Epic” The highest apartment in New York,184506477,Ieong,Manhattan,Chelsea,40.74743,-73.99136,Entire home/apt,440,2,1,2019-05-21,0.61,1,2 +34867106,Light filled room in Bushwick for the summer!,10430261,Britta,Brooklyn,Bushwick,40.6999,-73.92417,Private room,52,14,0,,,1,31 +34867166,Gorgeous 1 bedroom apt in Williamsburg Brooklyn,108079367,Alex,Brooklyn,Williamsburg,40.71097,-73.94164,Entire home/apt,105,14,0,,,1,40 +34867398,Sunset Park Rustic Bed Room for 2 W/AC,38119047,Wu,Brooklyn,Sunset Park,40.64613,-74.00736,Private room,40,1,8,2019-07-08,5.45,2,89 +34867574,Grand Central/United Nations-New 2Beds2Baths,25157246,Cindy,Manhattan,Midtown,40.75216,-73.96912,Entire home/apt,159,90,0,,,2,330 +34868182,➖PRIVATE ROOFTOP ➖ LUXURY LIVING IN NEW YORK CITY!,229498124,Rajeev,Manhattan,Midtown,40.75978,-73.96629,Entire home/apt,489,2,2,2019-06-17,1.67,1,320 +34868325,Airbnb on the Bruckner in the Bronx.,34655986,Curtis,Bronx,Port Morris,40.80464,-73.92575,Entire home/apt,125,14,0,,,1,365 +34868859,Spectacular 2 bed 2 bath with W/D in the APT #6117,35098529,David,Manhattan,Kips Bay,40.74409,-73.97605,Entire home/apt,310,30,0,,,5,214 +34868954,3 Bedroom Williamsburg Duplex 15 min to Manhattan!,262883761,Bill,Brooklyn,Williamsburg,40.71359,-73.94875,Entire home/apt,203,3,4,2019-07-01,3.53,1,254 +34869169,1 Super Cozy Bedroom in Downtown Manhattan,25794110,Zeeshan,Manhattan,Civic Center,40.71292,-73.99819,Private room,165,2,0,,,1,89 +34869197,Chic Sunlit Williamsburg Apartment w/Private Patio,262884890,Cam,Brooklyn,Williamsburg,40.70708,-73.94168,Entire home/apt,154,3,5,2019-07-04,4.05,1,269 +34869203,Sunset House,107234799,睿,Brooklyn,Sunset Park,40.64943,-74.01018,Private room,27,15,1,2019-07-01,1,1,0 +34869328,Whole house next to 2/5 trains- 30min to Manhattan,293911,Sergios & Fani,Brooklyn,East Flatbush,40.64521,-73.94452,Entire home/apt,220,5,0,,,1,75 +34870313,Upper East Side Spacious STUDIO,2374185,Amapola,Manhattan,Upper East Side,40.77374,-73.95153,Entire home/apt,300,30,0,,,1,348 +34870382,2 bedroom apt in Wburg near Grand St,49906311,Selina,Brooklyn,Williamsburg,40.71146,-73.94217,Entire home/apt,150,4,0,,,1,0 +34870577,Happy Home 3,158178970,Raquel,Staten Island,Randall Manor,40.63136,-74.12559,Shared room,13,1,9,2019-07-05,5.51,3,8 +34871854,Most wonderful 2 BR Apartment in Lower Manhattan,261898854,Layla,Manhattan,East Village,40.72128,-73.97899,Entire home/apt,200,14,2,2019-06-21,1.50,1,233 +34885475,Your Hide-A-Way in New York City-Times Square,259087876,Dennis,Manhattan,Theater District,40.7585,-73.98221,Private room,300,1,12,2019-07-07,7.83,7,50 +34885877,Private Master Bedroom with Private Bathroom,262804930,John,Brooklyn,Prospect-Lefferts Gardens,40.65986,-73.94277,Private room,89,1,5,2019-07-04,3.49,1,97 +34886804,Entire 1 bedroom Suite All yours!!,43252773,Karim,Manhattan,Harlem,40.81103,-73.94813,Entire home/apt,289,1,0,,,2,301 +34887720,Gorgeous 4 Bedroom 4 Bath Apt at West Village,132777237,Hannah,Manhattan,West Village,40.73473,-74.00135,Entire home/apt,650,30,0,,,1,277 +34888503,Charming town of Tottenville right outside NYC,962249,Dora,Staten Island,Tottenville,40.50943,-74.24442,Entire home/apt,70,3,1,2019-07-01,1,1,128 +34889154,HUGE 3 BEDROOMS IN BEST PART OF BROOKLYN!!,262435950,Miguel Angel,Brooklyn,Bushwick,40.69551,-73.91697,Entire home/apt,399,3,7,2019-07-02,5.25,1,358 +34890465,Magical Duplex in the Heart of Manhattan!,262990767,Alfonso,Manhattan,Midtown,40.74381,-73.98492,Entire home/apt,590,1,0,,,1,365 +34890712,Bushwick Enclave with Backyard - ByCrochet,192890383,Evan,Brooklyn,Bushwick,40.6909,-73.91198,Private room,110,1,0,,,1,0 +34892732,Affordable 2 bedroom in hell's kitchen,42222090,Kita,Manhattan,Hell's Kitchen,40.76885,-73.98611,Entire home/apt,289,3,3,2019-07-06,3,2,125 +34893564,Gramercy Park Studio Apartment (Max 2 people),226519844,Lidiya,Manhattan,Gramercy,40.73684,-73.9842,Entire home/apt,117,1,3,2019-06-20,2.43,1,233 +34894405,Luxurious apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79328,-73.96817,Entire home/apt,250,31,0,,,3,347 +34894549,PentHouse In FiDi,263013038,Rohan,Manhattan,Financial District,40.7067,-74.00546,Private room,150,3,0,,,1,0 +34894797,Upper Eastside Brownstone on E89th,263007016,Ed,Manhattan,Upper East Side,40.77838,-73.94792,Private room,125,1,0,,,1,0 +34894939,Beautiful Bedroom in Bushwick,221645033,Afrah,Brooklyn,Bushwick,40.69867,-73.91968,Private room,50,1,0,,,5,329 +34894968,Cosy two-bedroom Prospect Park Apartment,263013451,Julia,Brooklyn,Flatbush,40.64522,-73.95816,Entire home/apt,160,3,0,,,1,125 +34895344,"West 55th street, Lux 1bd Serviced Apartment",22541573,Ken,Manhattan,Hell's Kitchen,40.76957,-73.99292,Entire home/apt,229,30,0,,,87,115 +34895399,Luxury 2 Beds in Midtown with Amazing Views #6111,129589071,Laure,Manhattan,Murray Hill,40.7483,-73.97444,Entire home/apt,265,30,0,,,1,351 +34895585,Amazing apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79482,-73.96639,Entire home/apt,200,31,0,,,3,316 +34895693,Gem of east Flatbush,262534951,Sandra,Brooklyn,East Flatbush,40.65724,-73.9245,Private room,7500,1,8,2019-07-07,6.15,2,179 +34896039,Gorgeous apartment by Columbus square,105634248,Joe,Manhattan,Upper West Side,40.79355,-73.96752,Entire home/apt,200,31,0,,,3,333 +34896977,Home away from Home.,261995854,Indira,Queens,Richmond Hill,40.68243,-73.82668,Entire home/apt,120,2,5,2019-07-06,5,1,356 +34898461,Amazing midtown apartment near Times square,105626720,Bosi,Manhattan,Theater District,40.76234,-73.98605,Entire home/apt,200,31,0,,,5,341 +34898663,Summer stay in Brooklyn,7028001,Pat,Brooklyn,Bedford-Stuyvesant,40.69474,-73.94963,Private room,50,4,0,,,1,9 +34899120,Gorgeous midtown apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76189,-73.98765,Entire home/apt,200,31,0,,,5,341 +34899507,Cozy Studio Apartment on the Upper East Side,133449862,Stella,Manhattan,Upper East Side,40.76735,-73.95433,Entire home/apt,130,5,0,,,1,188 +34899759,"Luxury High Rise, Water Front View with Balcony",73678055,Yoon,Brooklyn,Williamsburg,40.71988,-73.96381,Entire home/apt,188,5,5,2019-07-01,3.33,1,101 +34900746,Oriana - Luxury High Rise,253361623,Shradha,Manhattan,Midtown,40.75671,-73.96228,Shared room,150,1,2,2019-05-28,1.25,1,67 +34900957,Awesome midtown apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76377,-73.9873,Entire home/apt,200,31,0,,,5,329 +34901323,Incredible Industrial Loft 1BR in Williamsburg,238328671,Brady,Brooklyn,Williamsburg,40.71706,-73.95988,Entire home/apt,375,1,3,2019-07-04,3,1,43 +34901699,R1 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.7276,-73.86569,Private room,85,1,1,2019-06-24,1,10,106 +34902183,Calming & Bright 1 BR Apt in Upper West Side,263054681,Carmen,Manhattan,Harlem,40.81982,-73.94481,Entire home/apt,93,30,0,,,1,325 +34902713,Cozy Lenox Hill Studio,68398714,Farah,Manhattan,Upper East Side,40.76233,-73.96193,Entire home/apt,175,2,1,2019-06-30,1,1,83 +34903478,Roomy & Spacious Modern Bedroom near J train,5680111,Timothy,Brooklyn,Bushwick,40.68757,-73.91343,Private room,65,5,2,2019-06-13,1.71,7,139 +34903658,"""Treehouse"" in the East Village with Private Patio",80573606,Alex,Manhattan,East Village,40.72649,-73.98433,Entire home/apt,275,2,3,2019-06-16,2.05,1,12 +34903861,"Get up and Go, Small comfy Studio in the Bronx",126614438,Jada,Bronx,Westchester Square,40.83616,-73.84638,Entire home/apt,75,1,5,2019-06-24,3.95,1,355 +34904143,R2 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72582,-73.86572,Private room,85,1,3,2019-07-05,3,10,112 +34904836,Ft. Greene Loft,4267864,Heidi,Brooklyn,Fort Greene,40.69234,-73.97219,Entire home/apt,150,3,4,2019-06-30,3.64,1,1 +34905447,R3 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72662,-73.86645,Private room,68,1,1,2019-06-29,1,10,136 +34905935,Gorgeous Chelsea apartment,47431634,Hellen,Manhattan,Chelsea,40.74156,-73.99677,Shared room,450,1,0,,,1,89 +34906695,Brooklyn's Finest,47399487,Malik,Brooklyn,Flatbush,40.64208,-73.95574,Entire home/apt,150,2,2,2019-07-05,2,1,113 +34907049,"Cozy Private Bedroom in Brownstone, Bed-Stuy",75034279,Irina,Brooklyn,Bedford-Stuyvesant,40.69521,-73.95173,Private room,63,2,0,,,2,83 +34907095,Gorgeous Apartment in a Historic Brownstone,13874881,Marina,Brooklyn,Crown Heights,40.67672,-73.94856,Entire home/apt,90,3,4,2019-06-28,4,1,18 +34907354,You can find everything in the neighborhood.,246351353,Erica,Brooklyn,Prospect-Lefferts Gardens,40.66197,-73.95952,Private room,42,2,12,2019-07-08,9.47,1,53 +34907385,Cozy Home Away from Home,263090455,Ny,Queens,Bellerose,40.7261,-73.72173,Private room,75,1,0,,,1,365 +34907479,Home in Harlem,26597048,M. Elizabeth,Manhattan,Harlem,40.80497,-73.94152,Entire home/apt,106,3,7,2019-07-05,6.00,2,5 +34907584,Nice 1 Bedroom in Washington Heights,232410,Lynne,Manhattan,Washington Heights,40.83903,-73.94588,Entire home/apt,125,2,2,2019-06-02,1.40,1,321 +34908120,Comfy room close to M train. 18mins to Manhattan,66959637,Carmen,Queens,Ridgewood,40.70358,-73.90864,Private room,50,7,0,,,2,281 +34908245,Cute and Modern Luxury Apartment in Times Square,263084604,Marissa,Manhattan,Hell's Kitchen,40.75951,-73.98898,Entire home/apt,199,1,7,2019-07-06,4.57,1,148 +34908806,Large one bedroom in the heart of Williamsburg,558101,Ailee,Brooklyn,Williamsburg,40.7132,-73.96441,Entire home/apt,155,4,1,2019-06-29,1,1,0 +34908810,"Spacious, modern, clean, rooftop, near all subways",9880282,Duncan,Brooklyn,Boerum Hill,40.68475,-73.9871,Entire home/apt,175,14,3,2019-06-30,2.25,1,0 +34909035,"Gorgeous 2bed 2bath on 26flr, 10m from Time Square",10174929,Supin,Queens,Long Island City,40.74836,-73.93866,Entire home/apt,199,10,0,,,1,0 +34909275,Sunny Room in Williamsburg Loft,3383356,Bernadette,Brooklyn,Williamsburg,40.71703,-73.9635,Private room,120,2,0,,,1,22 +34909594,Spacious Brooklyn Apt with Garden Oasis - Gowanus,8092286,Sharmila,Brooklyn,Gowanus,40.66916,-73.9914,Entire home/apt,135,2,3,2019-07-01,2.09,1,37 +34910158,Spacious Private Studio- 15 min ride to Manhattan!,2492400,Fernando,Queens,Sunnyside,40.74807,-73.91343,Entire home/apt,101,3,4,2019-06-23,2.79,1,110 +34910222,SUPER COZY APARTMENT IN HEART OF SOHO!!!,43810674,Olimpia,Manhattan,Greenwich Village,40.72748,-74.0008,Entire home/apt,299,3,3,2019-06-14,2.09,2,178 +34910439,AMAZING TWO BEDROOMS IN BEST PART OF SoHo!!,43810674,Olimpia,Manhattan,SoHo,40.72599,-74.00249,Entire home/apt,268,3,1,2019-06-13,1,2,178 +34910477,Spacious 2BR duplex in charming brownstone,263113162,Andrew,Manhattan,Harlem,40.8287,-73.94687,Entire home/apt,120,30,0,,,1,94 +34911014,Great apartment minutes away from Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76359,-73.98608,Entire home/apt,200,31,0,,,5,354 +34911913,River View Studio!,263122683,Andrea,Brooklyn,Williamsburg,40.7201,-73.96373,Entire home/apt,150,3,1,2019-06-02,0.81,1,74 +34912300,Beautiful Large Room in Uptown Manhattan,141169081,Michael,Manhattan,Washington Heights,40.84721,-73.93321,Private room,55,2,5,2019-06-17,3.19,1,53 +34912334,Sunny Private 1BR Suite w/Kitchen/Bath @A/C Lines,81325020,Matt & Crutch,Brooklyn,Bedford-Stuyvesant,40.67916,-73.92559,Entire home/apt,85,3,3,2019-06-22,2.05,3,43 +34914606,Cozy Sunset Park Private Bed Room for 2 w/AC,38119047,Wu,Brooklyn,Sunset Park,40.64739,-74.00549,Private room,45,1,7,2019-07-07,4.77,2,50 +34915860,Times Square 3BR Loft! Amazing Location!,256496159,Aleksey,Manhattan,Hell's Kitchen,40.75535,-73.99502,Entire home/apt,2500,70,0,,,3,191 +34922682,"Massive & Convenient 2 Bedroom, 1.5 bath Central",244030009,Ben,Manhattan,Midtown,40.74324,-73.98329,Entire home/apt,550,1,0,,,1,48 +34926055,New Studio in the UES with Gym and Pool #6126,130270076,Keren,Manhattan,East Harlem,40.78645,-73.94873,Entire home/apt,150,30,0,,,2,311 +34928299,"Great views, great location, great apartment!",1668747,Guido,Manhattan,Hell's Kitchen,40.76022,-74.00117,Entire home/apt,194,3,2,2019-07-02,2,1,44 +34928988,✨Modern NYC bedroom │5 minutes to Empire State✨,173417532,Ed,Manhattan,Midtown,40.75175,-73.97382,Private room,140,1,3,2019-07-01,3,3,85 +34929016,Private Living Room in the Heart of Chelsea,25408903,Jaclyn,Manhattan,Chelsea,40.74125,-73.99926,Private room,89,1,5,2019-06-29,5,1,296 +34929338,Beautiful Summer Home in the East Village!,6887469,Petra,Manhattan,East Village,40.72605,-73.98269,Entire home/apt,175,30,0,,,1,326 +34930138,"Stylish, Spacious Cobble Hill 1-bedroom, nr trains",5761174,Sally,Brooklyn,Boerum Hill,40.68993,-73.99204,Entire home/apt,151,7,1,2019-06-03,0.81,1,14 +34930659,Sunny Fresh Hamilton Heights Bedroom,22118412,Brigitte,Manhattan,Harlem,40.82862,-73.94938,Private room,54,3,0,,,1,19 +34931085,Casual Boho Chic 1 Bed Apt in NYC's Midtown East,234975196,Toni,Manhattan,Midtown,40.75583,-73.96836,Entire home/apt,120,2,0,,,1,0 +34931431,Cozy Room in Gorgeous Home in Bronx Little Italy,153376583,Joseph,Bronx,Belmont,40.85413,-73.88387,Private room,55,1,0,,,1,236 +34932465,Bright Bedstuy Bedroom,263228548,Alea,Brooklyn,Bedford-Stuyvesant,40.68716,-73.923,Private room,50,1,3,2019-06-09,2.73,1,0 +34932971,Sonder | 116 John | Airy 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70641,-74.00532,Entire home/apt,137,29,0,,,327,361 +34933454,Sonder | 116 John | Relaxed 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70644,-74.00515,Entire home/apt,137,29,0,,,327,333 +34933559,R4 Private Queen Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.7258,-73.86715,Private room,70,1,2,2019-06-27,2,10,127 +34933648,Sonder | 116 John | Bright 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70782,-74.00616,Entire home/apt,137,29,0,,,327,341 +34933815,R5 Private King Room LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72721,-73.86589,Private room,65,1,2,2019-06-14,1.87,10,134 +34933891,Beautiful Brooklyn Vintage Townhouse Apartment,35514248,Jessica,Brooklyn,Bedford-Stuyvesant,40.68327,-73.91797,Entire home/apt,120,1,8,2019-07-08,6.86,1,272 +34933929,Sonder | 116 John | Cozy Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70722,-74.00482,Entire home/apt,117,29,0,,,327,345 +34934005,Spacious Bushwick/Bed-stuy Apartment w/ Backyard,1094258,Felix,Brooklyn,Bedford-Stuyvesant,40.68337,-73.9227,Entire home/apt,90,15,1,2019-06-04,0.83,1,118 +34934160,Beautiful Private Master Bedroom in West Midtown,79461666,Stephen,Manhattan,Hell's Kitchen,40.7646,-73.99045,Private room,150,2,0,,,3,7 +34934218,Sonder | 116 John | Stylish 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70659,-74.00632,Entire home/apt,137,29,0,,,327,318 +34934431,Magnificent mid town apartment near Times square,105626720,Bosi,Manhattan,Hell's Kitchen,40.76233,-73.98707,Entire home/apt,250,31,0,,,5,322 +34934473,R6 Private Studio LGA JFK Manhattan 15 min!,263053182,Fmny,Queens,Rego Park,40.72719,-73.86671,Private room,99,1,0,,,10,131 +34934744,Beautiful studio in Elmhurst Apt close to train!,170624318,Ernesto Arauz & Flory Lopez,Queens,Elmhurst,40.74769,-73.87203,Private room,75,1,1,2019-06-01,0.79,1,359 +34934854,(A) Private Twin Single Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72577,-73.86509,Private room,55,1,0,,,10,106 +34935098,Bright & cozy room in Brooklyn Brownstone,1155164,Orlando Benjamin,Brooklyn,Bedford-Stuyvesant,40.68036,-73.91621,Private room,40,2,4,2019-06-22,4,1,2 +34935124,Meyers inn,263245967,Chris,Manhattan,Hell's Kitchen,40.76106,-73.99733,Entire home/apt,250,1,5,2019-07-05,3.49,1,311 +34935198,"Modern Studio- Midtown, Hell’s Kitchen",47187850,Matthew,Manhattan,Hell's Kitchen,40.76113,-73.99504,Entire home/apt,200,3,1,2019-07-01,1,1,0 +34935216,"Spacious, bright & charming 1-bedroom in East Vil.",2982441,Maher,Manhattan,East Village,40.7319,-73.98658,Entire home/apt,180,8,1,2019-06-17,1,1,188 +34935477,Private Oasis in the heart of the East Village,65814872,Parisa,Manhattan,East Village,40.72916,-73.98228,Entire home/apt,250,30,0,,,1,90 +34935699,Sunny minimalistic loft in Clinton Hill!,263230696,Jay,Brooklyn,Clinton Hill,40.69054,-73.96063,Entire home/apt,200,3,1,2019-06-13,1,1,357 +34936459,East village charming 1 bedroom,15537429,Walid,Manhattan,East Village,40.7281,-73.97807,Entire home/apt,152,2,0,,,3,69 +34936509,NEAR 5th AVE RENOVATED STUDIO IN BROOKLYN,188212054,Joanna,Brooklyn,Bay Ridge,40.62061,-74.02331,Entire home/apt,245,3,2,2019-06-27,2,2,255 +34937078,July/Aug Sublet Available Huge Sunny Room,10834322,Melissa,Brooklyn,Clinton Hill,40.68954,-73.96561,Private room,40,31,0,,,1,54 +34937287,4Bed Penthouse! Terrace! Location! 5th Ave,133996326,Grant,Manhattan,Flatiron District,40.74312,-73.98977,Entire home/apt,459,1,5,2019-07-07,4.29,1,354 +34937685,New Apartment in Manhattan - New York City,221213143,David,Manhattan,Kips Bay,40.74257,-73.98146,Entire home/apt,350,1,6,2019-06-30,3.83,9,333 +34937986,(B) Private Single Twin Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72718,-73.86541,Private room,55,1,3,2019-06-19,2.57,10,120 +34938166,(C) Private Single Room Twin LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.7274,-73.86537,Private room,55,1,0,,,10,95 +34938245,Luxury Duplex in the Heart of New York City,221213143,David,Manhattan,Kips Bay,40.74155,-73.98138,Entire home/apt,650,1,0,,,9,298 +34938410,(E) Private Queen Room LGA JFK Manhattan 15m,263053182,Fmny,Queens,Rego Park,40.72655,-73.86697,Private room,70,1,0,,,10,112 +34938631,LUX dope PRIME Williamsburg w/ Roof & Gym Sleeps 5,3068045,Charles,Brooklyn,Williamsburg,40.71743,-73.9538,Entire home/apt,350,2,2,2019-06-30,1.36,1,26 +34938932,Homey 4 Bedroom Just Minutes to Midtown Manhattan,263272705,Helen,Queens,Long Island City,40.75659,-73.93108,Entire home/apt,275,2,1,2019-07-04,1,1,266 +34939305,Sunny East Village Room Across from the Subway,126012313,Madison,Manhattan,East Village,40.72276,-73.98741,Private room,78,2,7,2019-07-06,5.38,1,1 +34940451,Cozy bedrooms in Manhattan 18mins from Time Square,161057073,Stella,Manhattan,Lower East Side,40.72104,-73.98845,Private room,105,2,0,,,4,56 +34940602,Perfect peace private room in Brooklyn,263282580,Caritas,Brooklyn,Bedford-Stuyvesant,40.69593,-73.93503,Private room,60,2,2,2019-05-26,1.25,2,171 +34940756,Hello! This is a very cozy space in Williamsburg!!,259630588,Alina,Brooklyn,Williamsburg,40.71867,-73.94884,Private room,149,2,1,2019-05-26,0.68,2,0 +34940796,LOW PRICED HOME AWAY FROM HOME,102796618,Isaac,Bronx,Wakefield,40.88798,-73.86474,Private room,35,1,5,2019-07-04,3.13,1,62 +34941479,Place to be Private room 2,263266237,Amoyiem,Bronx,Allerton,40.86997,-73.84867,Private room,36,2,2,2019-06-21,2,4,81 +34941499,Private room 1,263266237,Amoyiem,Bronx,Allerton,40.86958,-73.84872,Private room,38,2,1,2019-06-23,1,4,90 +34941506,Place to be( 3bedroom apartment),263266237,Amoyiem,Bronx,Allerton,40.8688,-73.84726,Private room,120,2,0,,,4,84 +34943129,Small bedroom in cozy Inwood top floor apartment!,55040763,Jenn And Dan,Manhattan,Washington Heights,40.85911,-73.93087,Private room,50,2,6,2019-06-30,5.00,1,29 +34943881,Private Room in Inwood!,53105633,Savannah,Manhattan,Washington Heights,40.85873,-73.92937,Private room,32,7,0,,,1,0 +34943903,Private room in Upper East Side #5,1786901,Shai,Manhattan,Upper East Side,40.78298,-73.94671,Private room,95,3,0,,,9,29 +34943918,Enjoy Brooklyn... visit Manhattan,41131304,Salomé,Brooklyn,Bedford-Stuyvesant,40.68337,-73.93718,Entire home/apt,150,2,4,2019-06-23,3.16,1,66 +34944130,Beach Haven,263301212,Mikhail,Brooklyn,Gravesend,40.58518,-73.96846,Private room,100,2,0,,,1,87 +34944309,FLATIRON LOFT 5 STAR,44179601,Tela,Manhattan,Gramercy,40.73817,-73.98903,Entire home/apt,850,1,3,2019-06-24,3,1,341 +34944389,Cozy & Convenient 1bed/bath in Crown Heights BK,13463015,Cyrus,Brooklyn,Crown Heights,40.67068,-73.95464,Entire home/apt,145,1,0,,,1,66 +34944655,Large 7 Bed minutes from Midtown Manhattan!,263311126,Mary,Queens,Long Island City,40.75693,-73.93044,Entire home/apt,650,2,0,,,1,233 +34944843,"Renovated 2bedroom apt by Grand Central, sleeps 6!",263312564,Shir,Manhattan,Midtown,40.75235,-73.97077,Private room,175,1,4,2019-06-20,4,1,203 +34944997,Cozy 1bd apartment in Midtown,202369622,Aleksandr,Manhattan,Hell's Kitchen,40.76814,-73.99148,Entire home/apt,190,2,0,,,1,8 +34945250,Home w/ Huge Backyard Near Prospect Park,12128527,Andy,Brooklyn,Windsor Terrace,40.65118,-73.9788,Entire home/apt,140,10,0,,,2,49 +34945599,Stunning Townhouse Studio by Bloomingdales,263126029,Dila,Manhattan,Upper East Side,40.76383,-73.9687,Entire home/apt,169,2,3,2019-06-21,2.65,1,7 +34945827,Best Street in Soho! Awesome Sunny Private Room,263322673,Sofia,Manhattan,SoHo,40.72627,-74.00104,Private room,85,14,3,2019-06-23,3,2,126 +34945914,"""Dave's Island Suite""",258232863,David,Staten Island,New Springville,40.58647,-74.15954,Entire home/apt,68,2,8,2019-06-30,5.33,1,4 +34946538,clean + cute room in williamsburg,14818218,Ashley,Brooklyn,Williamsburg,40.70877,-73.95064,Private room,80,2,3,2019-07-01,3,1,84 +34946772,Beyond the Valley of the Doll House,263331130,Vanessa,Brooklyn,Bushwick,40.69969,-73.9199,Private room,65,1,7,2019-06-25,4.77,1,79 +34946870,Railway large one bedroom gem on upper east side.,250583732,Nile C,Manhattan,Upper East Side,40.77581,-73.96285,Entire home/apt,210,1,0,,,1,135 +34947011,Luxury 4bed/2bath in Prime Upper West,195303599,Jack,Manhattan,Upper West Side,40.77652,-73.98151,Entire home/apt,699,4,4,2019-06-30,4,1,301 +34947418,"Quiet room with private bath, gorgeous backyard",951909,Alex,Brooklyn,Kensington,40.64501,-73.97859,Private room,79,7,1,2019-06-01,0.77,1,22 +34948460,Private Bedroom from Modern House.,259013161,Jisoo,Queens,Woodside,40.74465,-73.90336,Private room,89,1,0,,,2,70 +34948476,Stylish and Modern basement near LaGuardia Airport,194673800,Jonathan,Queens,East Elmhurst,40.7655,-73.88217,Entire home/apt,80,1,8,2019-07-02,5.45,1,49 +34948758,Charming and Cozy Studio Apartment!!,103628289,Kathleen,Manhattan,East Village,40.7283,-73.98589,Entire home/apt,130,3,1,2019-06-23,1,1,4 +34948812,Private Room in Heart of Williamsburg!,30590073,Michael,Brooklyn,Williamsburg,40.71839,-73.95876,Private room,70,2,0,,,2,98 +34948941,Huge window bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63721,-74.01229,Private room,60,1,0,,,4,353 +34949052,Three windows Bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63814,-74.01288,Private room,58,1,1,2019-05-27,0.68,4,360 +34949054,One bedroom in Murray Hill,263351102,Eliza,Manhattan,Murray Hill,40.74561,-73.97784,Entire home/apt,135,14,1,2019-07-05,1,1,2 +34949120,Modern house (2 BR Apt) • 30 Mins from Time Square,259013161,Jisoo,Queens,Woodside,40.74302,-73.90287,Entire home/apt,150,1,3,2019-06-15,1.91,2,155 +34949208,Comfy Bedroom in Brooklyn Chinatown,171495922,Stanley,Brooklyn,Sunset Park,40.63698,-74.01139,Private room,58,1,0,,,4,360 +34949542,Private room 1 min away from subway!,263352389,Yekta,Brooklyn,Flatbush,40.64856,-73.96358,Private room,40,7,1,2019-06-26,1,1,11 +34949698,Spacious sunny condo with private yard,15820708,Arlene,Brooklyn,Williamsburg,40.70939,-73.94055,Entire home/apt,300,3,1,2019-07-02,1,2,113 +34949851,Spacious & Quaint 1 Bed in Midtown,30485701,Daniela,Manhattan,Midtown,40.7584,-73.97075,Entire home/apt,245,2,7,2019-06-30,4.57,1,257 +34951077,Private room with Queen Size Bed and Work Space,263365570,Xun,Brooklyn,Bedford-Stuyvesant,40.69152,-73.96037,Private room,35,3,2,2019-06-16,2,1,20 +34952279,=== HAPPY TRAVELS / Near Columbia University ===,256877591,Mike,Manhattan,Harlem,40.81376,-73.9525,Private room,59,25,0,,,1,1 +34953317,3Bed/2Bath-LowerEastSide With Elevator!,263301624,June,Manhattan,Lower East Side,40.71872,-73.98174,Entire home/apt,600,3,6,2019-07-02,4.50,1,343 +34953750,Quiet apartment 501 Upper east side/Manhattan,71630660,Kosjenka,Manhattan,Upper East Side,40.77086,-73.95131,Entire home/apt,150,3,0,,,1,273 +34954639,"Private Bedroom Stylish, Cozy Apartment- Gramercy",263383528,Irina,Manhattan,Gramercy,40.73712,-73.98844,Private room,245,1,2,2019-07-02,2,1,179 +34954790,"Private apartment535 +REVIEWS ON PROFILE/Manhattan",149564593,Robert,Manhattan,Upper East Side,40.76989,-73.94961,Entire home/apt,145,2,1,2019-06-09,1,1,100 +34956249,"Heart of upper east 83 +Manhattan/Great location",48965038,Darko,Manhattan,Upper East Side,40.77697,-73.95272,Entire home/apt,145,3,2,2019-06-23,2,1,70 +34956747,"Beautiful studio 96 +Walk to Central Park/Manhattan",49292376,Melissa,Manhattan,East Harlem,40.78707,-73.95121,Entire home/apt,145,2,1,2019-06-09,1,1,94 +34958857,Private studio 79REVIEWS-CHECK PROFILEManhattan,48817598,Preeti,Manhattan,Upper East Side,40.77045,-73.94959,Entire home/apt,145,2,2,2019-06-29,2,1,37 +34959292,Sunfilled upper west side 1BD apt near park/subway,263408737,Rachael,Manhattan,Upper West Side,40.79582,-73.96711,Entire home/apt,158,2,1,2019-05-27,0.70,1,8 +34959441,"studio519 with bathroom +MaNHTAn +Reviews on profile",184407284,Ann,Manhattan,Upper East Side,40.77031,-73.95007,Entire home/apt,145,1,1,2019-06-15,1,1,110 +34959442,Spacious Home - 10 minutes from Central Park,1692055,Dayne,Manhattan,East Harlem,40.79512,-73.94454,Shared room,50,1,1,2019-06-10,1,1,81 +34960314,White Cove Williamsburg,262281120,Rosa,Brooklyn,Williamsburg,40.71765,-73.95914,Entire home/apt,165,30,0,,,1,59 +34960545,Cozy 2 bedroom in the heart of Astoria,3954840,Laura,Queens,Ditmars Steinway,40.77558,-73.90506,Entire home/apt,174,2,1,2019-07-01,1,1,5 +34962230,"Private studio 539 +Manhattan/Reviews-check profile",183571032,Igor,Manhattan,Upper East Side,40.76805,-73.94929,Entire home/apt,150,1,2,2019-06-17,2,1,83 +34962946,"Luxury, Gorgeous 1-Bed Apt in Hell's Kitchen",4385683,Nikki,Manhattan,Hell's Kitchen,40.76615,-73.98882,Entire home/apt,239,2,7,2019-07-07,7,1,22 +34962979,Cozy 1bedroom apt/Manhattan/East side,48950686,Lili,Manhattan,Upper East Side,40.77821,-73.95504,Entire home/apt,150,2,3,2019-06-30,3,1,164 +34964114,Cute Nest in the Heart of Bushwick artist hood,54618020,Sophie,Brooklyn,Bushwick,40.70267,-73.92271,Private room,80,2,1,2019-05-27,0.70,1,62 +34964342,"Clean, Modern, Rustic LIC APT",8616787,Iris,Queens,Long Island City,40.75181,-73.93702,Entire home/apt,200,2,1,2019-06-18,1,1,9 +34964711,Bedroom W/ Private Bathroom in the heart of SOHO,132202485,Dylon,Manhattan,Nolita,40.72222,-73.99443,Private room,100,3,2,2019-06-05,1.62,1,55 +34966406,Awesome location,30613046,Debbie,Brooklyn,Park Slope,40.67957,-73.97928,Private room,69,3,0,,,2,65 +34966969,"Great located 1bd apartment 59 +Manhattan/East side",32162806,Bozo,Manhattan,Midtown,40.7604,-73.96451,Entire home/apt,150,2,3,2019-06-16,2.81,1,78 +34967524,Private bedroom 5 minutes to La Guardia airport,259422076,David Y,Queens,Jackson Heights,40.75277,-73.88356,Private room,60,20,0,,,1,175 +34967678,Luxury 3/2 in Prime Lower East with Elevator!,8014888,Joel And Marie,Manhattan,Chinatown,40.71801,-73.9943,Entire home/apt,499,4,6,2019-06-27,4.62,1,299 +34967770,Charming townhouse,1849974,Laura,Manhattan,Harlem,40.81872,-73.94363,Entire home/apt,300,7,1,2019-05-24,0.65,2,150 +34968153,Comfy Cozy,256485515,Joseph,Brooklyn,Fort Hamilton,40.61822,-74.03538,Private room,55,1,1,2019-06-23,1,1,322 +34968639,Charming E. Village 2 Bedroom: Steps to the Park!,263427276,Helene,Manhattan,East Village,40.72564,-73.9803,Entire home/apt,300,4,0,,,1,297 +34969461,Duplex apartment,1849974,Laura,Manhattan,Harlem,40.81981,-73.94523,Entire home/apt,200,7,0,,,2,153 +34970126,Urban Zen in Historic Stuyvesant Heights,70773274,Micah,Brooklyn,Bedford-Stuyvesant,40.68414,-73.93538,Entire home/apt,140,6,0,,,1,252 +34970373,Amazing 4 Bedrooms 4 Bathrooms sleeps 9,199147185,Lou,Brooklyn,Sunset Park,40.66468,-73.99785,Entire home/apt,399,1,0,,,5,359 +34970848,Spectacular 2 bed 2 bath with W/D in the APT #6116,35098529,David,Manhattan,Murray Hill,40.74577,-73.97587,Entire home/apt,310,30,0,,,5,311 +34971155,Lovely 2Bed Apt Heart of Downtown! Steps to Train!,374557,Ohene,Manhattan,East Village,40.72376,-73.98623,Entire home/apt,250,4,0,,,1,141 +34971332,Upscale Studio in Brooklyn,1241548,Andrew,Brooklyn,Bedford-Stuyvesant,40.68991,-73.95345,Entire home/apt,110,3,0,,,1,18 +34971337,Spacious 2 Bed on Park with Washer/Dryer #6113,113723310,Joe,Manhattan,Murray Hill,40.74751,-73.98051,Entire home/apt,300,30,0,,,8,355 +34971449,Amazing 1 bed 1 bath in full service bld #6118,35098529,David,Manhattan,Kips Bay,40.74536,-73.97799,Entire home/apt,180,30,0,,,5,327 +34972072,Magic★★Flat close to Brooklyn Bridge ★★,263488433,Alex,Manhattan,Lower East Side,40.71323,-73.99063,Entire home/apt,250,1,13,2019-06-30,8.48,1,213 +34972213,"Charming KING Room w Backyard, Trains Williamsburg",242344309,Pete And Chloe,Brooklyn,Williamsburg,40.70671,-73.94774,Private room,79,1,6,2019-07-01,6,4,0 +34972355,2 bedroom on Chinatown,263490281,Juan,Manhattan,Chinatown,40.71693,-73.99075,Entire home/apt,200,1,3,2019-06-12,2.43,1,157 +34972591,Spectacular 2 Bed 2 Bath on Park Avenue #6112,113723310,Joe,Manhattan,Murray Hill,40.74876,-73.98143,Entire home/apt,300,30,0,,,8,347 +34972828,Sunnyside Gardens Historic Home - Sweet and Green,13077418,Richard,Queens,Sunnyside,40.7475,-73.9161,Entire home/apt,200,2,4,2019-07-01,4,1,57 +34972982,Spectacular 1 bed 1 bath in full service bld #6119,35098529,David,Manhattan,Kips Bay,40.74385,-73.97789,Entire home/apt,190,30,0,,,5,365 +34973988,Cute studio in heart of LES. F train 3 mins away.,12642973,Christian,Manhattan,Lower East Side,40.72049,-73.98816,Entire home/apt,120,2,2,2019-06-23,1.36,1,67 +34974103,Amazing Furnished Studio in Midtown East #6120,113723310,Joe,Manhattan,Murray Hill,40.74882,-73.98041,Entire home/apt,150,30,0,,,8,342 +34974184,3BR Whole Apt In Mill Basin. Private Entrance,263502980,Almog,Brooklyn,Mill Basin,40.61058,-73.90971,Entire home/apt,299,3,3,2019-06-14,2.25,1,339 +34974475,#8 Hotel-Like 1 Bedroom Apartment KINGBed near JFK,263504959,David,Queens,Woodhaven,40.69114,-73.86459,Entire home/apt,48,1,8,2019-07-05,6.32,8,305 +34974525,Amazing Furnished 2 Bed on Park Ave with Gym #6110,113723310,Joe,Manhattan,Murray Hill,40.74812,-73.98046,Entire home/apt,300,30,0,,,8,342 +34974562,Stylish Studios near Central Park,263505830,Elizabeth,Manhattan,Upper West Side,40.77927,-73.97649,Private room,100,28,0,,,1,166 +34974705,Awesome Renovated Room in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.69118,-73.93476,Private room,68,1,5,2019-07-07,3.13,3,16 +34974799,Stylish 1 bd apartment in the heart of NYC,49225732,Lisa,Manhattan,Hell's Kitchen,40.76537,-73.98487,Entire home/apt,173,1,4,2019-06-17,4,1,120 +34975056,Beautiful Renovated Modern Townhouse,263506027,Marco,Manhattan,Midtown,40.74399,-73.98398,Entire home/apt,850,1,0,,,1,0 +34975296,Clean and quiet Room in brand new 2 BR apartment,263509965,Sebastian,Brooklyn,Bushwick,40.69707,-73.93201,Private room,50,1,9,2019-07-07,6.43,1,60 +34975527,3bdrm 1fl home w/parking!Close to ManhattanAirport,261028352,Young,Queens,Woodside,40.74305,-73.9007,Entire home/apt,169,2,0,,,2,91 +34975845,Bright One Bdr Apartment in Center of Manhattan,263448448,Conny,Manhattan,Upper East Side,40.76129,-73.96178,Private room,85,1,9,2019-07-02,7.30,1,29 +34975935,Brooklyn Escape,3472623,Melissa,Brooklyn,Prospect Heights,40.67834,-73.96598,Entire home/apt,175,2,8,2019-06-23,5.45,1,3 +34976037,Stunning Studio in Lux Building in the UWS #6115,116305897,Laura,Manhattan,Upper West Side,40.79058,-73.97246,Entire home/apt,150,30,0,,,9,266 +34976038,Entire floor in historic Harlem brownstone,2896601,Liz,Manhattan,Harlem,40.81582,-73.94267,Entire home/apt,118,2,3,2019-06-28,2.00,1,17 +34976056,Heaven on Bedford- Truly 3bd/2bath with backyard,263506630,Shir,Brooklyn,Williamsburg,40.71736,-73.95845,Entire home/apt,399,2,5,2019-07-05,4.55,1,131 +34976241,Cozy Apartment perfect for NYC vacation,254119216,Zeyna,Queens,Woodside,40.74479,-73.91193,Entire home/apt,108,2,2,2019-06-23,2,1,5 +34976735,Bright Private Apt in Ideal Location Manhattan,115167208,Taylor,Manhattan,Gramercy,40.73866,-73.98322,Entire home/apt,160,3,0,,,1,5 +34976973,JFK park view,245457246,Nurul,Queens,South Ozone Park,40.67101,-73.78943,Entire home/apt,248,2,2,2019-06-23,1.30,1,354 +34977297,"Williamsburg Gem, 2 bed/2bath",119273,Aimee,Brooklyn,Williamsburg,40.7194,-73.96346,Entire home/apt,160,31,0,,,1,54 +34977363,Cozy Studio Midtown East,49646933,Ines,Manhattan,Midtown,40.75375,-73.97416,Entire home/apt,190,3,1,2019-07-01,1,1,165 +34977766,Bright One Bdr Apartment in Center of Manhattan,263527800,Cornelia,Manhattan,Upper East Side,40.76139,-73.96048,Entire home/apt,130,1,0,,,1,28 +34978082,"3 bedroom, 2 baths duplex apt w/all new furniture",164701861,Brenda,Brooklyn,East New York,40.67337,-73.88846,Entire home/apt,225,3,3,2019-06-30,3,2,136 +34978133,Spacious 1 bed in the heart of Manhattan,263533090,Vin,Manhattan,East Village,40.7266,-73.9875,Entire home/apt,175,20,2,2019-05-24,1.30,1,27 +34978307,Park Slope Sweet Home 1 Bedroom August Rental,84642468,Xiaohui,Brooklyn,Gowanus,40.66714,-73.99279,Private room,80,14,0,,,1,192 +34978674,"Private Room and Bathroom - Gym, Laundry, Roof",165883882,Swanny,Brooklyn,Greenpoint,40.73456,-73.95328,Private room,130,2,2,2019-06-19,2,1,47 +34978738,Pvt studio with pvt entrance&pvt bathroom near JFK,199578818,Safain,Queens,Ozone Park,40.67565,-73.84677,Entire home/apt,60,3,4,2019-06-30,3.43,1,170 +34979429,Not so Ordinary Lexington Pied-à-terre,187981396,Milton,Manhattan,Midtown,40.74329,-73.98253,Private room,102,1,1,2019-07-01,1,1,353 +34980223,"""ADORABLE CENTRAL 1BD LITTLE ITALY/SOHO""",76192815,Sam,Manhattan,Little Italy,40.71805,-73.99714,Entire home/apt,129,33,0,,,5,333 +34980397,True Entire One Bedroom Apartment in Manhattan,82182158,Jason,Manhattan,East Village,40.72657,-73.98796,Entire home/apt,131,7,1,2019-05-23,0.64,1,1 +34980912,Cosy room in the heart of Bushwick!,10787323,Natalie,Brooklyn,Bushwick,40.70113,-73.92175,Private room,80,3,3,2019-06-08,2.14,1,0 +34981344,Bowery Loft with Private Deck,263563066,Dan,Manhattan,Lower East Side,40.72049,-73.99348,Private room,100,3,0,,,1,23 +34981452,The Sahara,10415735,Angie,Queens,Howard Beach,40.66162,-73.85598,Entire home/apt,200,1,2,2019-06-24,2,2,365 +34981466,Lex Penthouse with Private Roof Top Terrace,263564835,Steffan Per,Manhattan,Midtown,40.74383,-73.98286,Private room,975,30,0,,,1,363 +34981637,bay ridge & sunset park furnished apartment,263564234,Nony,Brooklyn,Bay Ridge,40.63087,-74.02006,Entire home/apt,4200,60,0,,,1,90 +34981661,"Your Home In The Heart Of Bedstuy, Brooklyn!",263566379,Lawrence,Brooklyn,Bedford-Stuyvesant,40.68096,-73.92512,Entire home/apt,80,1,6,2019-07-06,6,1,12 +34983299,Amazing duplex - 5bed/4bath in prime Williamsburg,238800808,Frederick,Brooklyn,Williamsburg,40.70893,-73.9572,Entire home/apt,895,2,1,2019-07-01,1,1,28 +34986604,Apartment near JFK and Manhattan,150285098,Ahsan,Queens,Howard Beach,40.66238,-73.83628,Private room,150,1,0,,,1,89 +34993569,Amazing 2 Bed in Luxury Building with Gym #6105,116305897,Laura,Manhattan,Upper West Side,40.78948,-73.97228,Entire home/apt,290,30,0,,,9,338 +34993824,New Luxury 1 Bed in UWS Building with Gym #6128,116305897,Laura,Manhattan,Upper West Side,40.79058,-73.97435,Entire home/apt,170,30,0,,,9,353 +34994129,New Lux 1 Bed in UWS steps to Central Park #6124,116305897,Laura,Manhattan,Upper West Side,40.7894,-73.97381,Entire home/apt,170,30,0,,,9,342 +34995166,Charming apartment next to the bridge,263439936,Kayla,Brooklyn,Williamsburg,40.71114,-73.96153,Private room,70,14,0,,,1,139 +34995443,AMAZING 3 BDRM IN MEATPACKING/CHELSEA/HIGHLINE!!,91268177,Beatriz,Manhattan,Chelsea,40.74344,-74.00747,Entire home/apt,499,3,2,2019-06-13,1.50,4,177 +34995534,Penthouse rooftop room 20Min To Manhattan!!,18260299,Ota,Brooklyn,Bushwick,40.69457,-73.90753,Private room,37,4,0,,,6,36 +34995803,AMAZING 5 BEDS CHELSEA/MEATPACKING. BEST LOCATION!,91268177,Beatriz,Manhattan,Chelsea,40.74436,-74.00729,Entire home/apt,447,3,3,2019-06-19,2.05,4,157 +34996046,A 29 units apt building...In a middle class area .,262312329,Alexander,Brooklyn,Fort Hamilton,40.61637,-74.02943,Private room,35,10,0,,,1,329 +34996136,AMAZING 2 BEDS IN MEATPACKING/CHELSEA MARKET!!,91268177,Beatriz,Manhattan,Chelsea,40.74372,-74.00601,Entire home/apt,447,3,3,2019-06-14,2.20,4,179 +34996955,Large 3Bed/2Bath: Elevator + Wash/Dryer!,263635162,Justin,Manhattan,Lower East Side,40.71736,-73.9827,Entire home/apt,600,4,3,2019-06-03,2.25,1,315 +34997003,Modern Skyline Penthouse Room & 20min to NYC!,18260299,Ota,Brooklyn,Bushwick,40.69316,-73.90741,Private room,37,4,0,,,6,29 +34997245,SoHo- 1BD Apt- Incredible Location! With Rooftop,9525999,Jackie,Manhattan,Little Italy,40.71978,-73.99681,Entire home/apt,255,3,1,2019-06-15,1,1,233 +34997345,Cozy 2Bed in the Heart of East Village!,263545490,Grace,Manhattan,East Village,40.725,-73.97903,Entire home/apt,320,3,3,2019-06-30,3,1,0 +34997360,MODERN TOWN-HOME 8BR/5BA + TERRACE Williamsburg,99410435,Joshua,Brooklyn,Williamsburg,40.71399,-73.94683,Entire home/apt,795,2,1,2019-06-14,1,3,298 +34997420,Your own room in Manhattan!,116272237,Amalia,Manhattan,Harlem,40.80676,-73.94884,Private room,65,11,0,,,1,48 +34997446,ENTIRE Home! 10BR/6BA + Private Garden SLEEPS 20+,16625273,Richard,Brooklyn,Williamsburg,40.71398,-73.94605,Entire home/apt,995,2,0,,,3,272 +34997666,BEAUTIFUL BUDGET STAY IN BROOKLYN 25MINS TO D/TOWN,88113848,Bunmi,Brooklyn,Borough Park,40.64172,-73.99265,Private room,56,1,4,2019-06-09,2.55,2,282 +34997773,AMAZING! 7bd/4ba TownHome + PATIO - 10 Mins To NYC,16625273,Richard,Brooklyn,Williamsburg,40.71495,-73.94726,Entire home/apt,695,2,1,2019-07-02,1,3,282 +34997828,Full Service 3 Bedroom Apartment-Washer Dryer,221200420,Adam,Manhattan,Murray Hill,40.74334,-73.97213,Entire home/apt,300,30,0,,,23,249 +34997863,Brand New Furnished Studio on Park Avenue #6121,113723310,Joe,Manhattan,Murray Hill,40.749,-73.98052,Entire home/apt,150,30,0,,,8,267 +34997894,entire apartment for rent,263670476,Algerchaabi,Brooklyn,Bay Ridge,40.6336,-74.02884,Entire home/apt,1800,30,0,,,1,335 +34997929,Amazing 3bd/2ba Town-Home In Prime Williamsburg,16625273,Richard,Brooklyn,Williamsburg,40.7149,-73.94585,Entire home/apt,295,2,2,2019-06-25,2,3,298 +34997985,Comfort and Safe Stay IN Brooklyn 25mins to D/Town,88113848,Bunmi,Brooklyn,Borough Park,40.64061,-73.99216,Private room,56,2,8,2019-07-06,5.45,2,365 +34998610,Amazing duplex - 5bed/4bath in prime Williamsburg,99410435,Joshua,Brooklyn,Williamsburg,40.7155,-73.94656,Entire home/apt,595,2,0,,,3,313 +34998614,Luxury 3 Bed 2 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.7444,-73.97297,Entire home/apt,300,30,0,,,23,319 +34998736,Room steps away from TIMES SQUARE,263676349,Hanna,Manhattan,Murray Hill,40.74616,-73.97522,Private room,119,3,1,2019-07-03,1,2,10 +34998820,Murray Hill SPacious 2 Bedroom-river View,221200420,Adam,Manhattan,Murray Hill,40.744,-73.97359,Entire home/apt,300,30,0,,,23,327 +34998955,Newly Renovated Cozy Studio on Park Avenue #6130,113723310,Joe,Manhattan,Murray Hill,40.74757,-73.98187,Entire home/apt,150,30,0,,,8,342 +34999128,Nice and cozy ✌ holiday apartment✿,255222056,Alex,Manhattan,Midtown,40.75869,-73.96725,Entire home/apt,195,5,12,2019-07-01,7.83,1,6 +34999260,The City View- 2 Bed 2 Bath,221200420,Adam,Manhattan,Murray Hill,40.7443,-73.97277,Entire home/apt,300,30,0,,,23,358 +34999415,DUPLUXURY Apartment 5 Star Duplex,67249971,Sayonara,Manhattan,Chelsea,40.75064,-73.99566,Entire home/apt,900,1,0,,,1,355 +34999606,2 Bedroom 1 Bathroom Marry Hill,221200420,Adam,Manhattan,Murray Hill,40.74457,-73.97168,Entire home/apt,210,30,0,,,23,343 +34999688,Modern Home 3 bed/1 bath 10 minutes to Manhattan,99410435,Joshua,Brooklyn,Williamsburg,40.71344,-73.94612,Entire home/apt,295,2,1,2019-06-16,1,3,321 +34999766,Converted 2 Bed 1 Bath Murry Hill,221200420,Adam,Manhattan,Murray Hill,40.74442,-73.9717,Entire home/apt,225,30,0,,,23,343 +34999950,Luxury studio in Manhattan,220400948,Laura,Manhattan,Harlem,40.81508,-73.93742,Entire home/apt,120,30,0,,,1,0 +35000008,East River View- 2 Bed 1 Bath,221200420,Adam,Manhattan,Murray Hill,40.74463,-73.97307,Entire home/apt,250,30,0,,,23,311 +35000157,Luxury 3 Bed in The Big Apple,263684024,Walid,Manhattan,Murray Hill,40.74459,-73.97436,Entire home/apt,600,4,5,2019-07-01,4.69,1,167 +35000294,2 Bed 1 Bath Cozy Apartment,221200420,Adam,Manhattan,Murray Hill,40.74425,-73.97137,Entire home/apt,220,30,0,,,23,325 +35000403,Central Park 4 Bed Steps to Train + Ground floor!,2133558,Felipe,Manhattan,Upper West Side,40.7983,-73.96115,Entire home/apt,450,4,4,2019-07-01,3.08,1,345 +35000464,New Amazing Studio on Park Avenue #6123,113723310,Joe,Manhattan,Murray Hill,40.74886,-73.98184,Entire home/apt,150,30,0,,,8,281 +35000509,SPACIOUS 1 BED AMAZING VIEW,221200420,Adam,Manhattan,Murray Hill,40.7442,-73.97176,Entire home/apt,200,30,0,,,23,330 +35000596,Sun-Splashed Midtown 3BED Penthouse LOFT,259645972,Maria,Manhattan,Midtown,40.75661,-73.97186,Entire home/apt,399,6,1,2019-06-21,1,1,149 +35000600,Luxurious one bed high floor,221200420,Adam,Manhattan,Kips Bay,40.74322,-73.9722,Entire home/apt,200,30,0,,,23,353 +35000795,Cozy 2-Bedroom Loft Blocks away to Apollo Theater,102866746,Neh,Manhattan,Harlem,40.80529,-73.94718,Entire home/apt,300,2,1,2019-06-23,1,1,179 +35000978,Photo Studio Loft with a Terrace,263690856,Lilian,Queens,Long Island City,40.7473,-73.93914,Private room,389,1,0,,,1,296 +35000981,Amazing 6bd/2ba Duplex w/ Patio 5 mins to NYC,219908197,Anthony,Brooklyn,Williamsburg,40.71779,-73.94232,Entire home/apt,495,2,1,2019-06-13,1,3,341 +35001013,1 Bedroom 1 Bathroom Murray Hill,221200420,Adam,Manhattan,Murray Hill,40.74458,-73.97146,Entire home/apt,200,30,0,,,23,339 +35001278,"COUCH, ONLY LADYS, cerca a Manhattan",223087887,Jess & Ana,Queens,Corona,40.74206,-73.86628,Shared room,28,1,0,,,8,357 +35001433,High End One Bed One Bath Murry Hill,221200420,Adam,Manhattan,Kips Bay,40.7431,-73.9719,Entire home/apt,200,30,0,,,23,342 +35001663,Bedroom for sublet with GREAT VIEW in prime area,77477955,John,Manhattan,Stuyvesant Town,40.73159,-73.97472,Private room,72,14,0,,,1,128 +35001709,High end one Bedroom Apatment,221200420,Adam,Manhattan,Murray Hill,40.74455,-73.97296,Entire home/apt,200,30,0,,,23,342 +35002204,Spacious Room in a Renovated Apt in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.69237,-73.93446,Private room,75,1,2,2019-06-19,2,3,0 +35002311,Brand New One Bedroom Apartment in Bushwick,36564046,Jacinta,Brooklyn,Bushwick,40.6884,-73.91373,Entire home/apt,160,3,2,2019-06-29,2,1,23 +35002617,Nature Sanctuary,15285681,Alison,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92836,Private room,85,5,1,2019-06-09,1,1,35 +35003048,"In the heart of Bronx, Fordham University, Bx Zoo",109671307,Samita,Bronx,Norwood,40.8718,-73.87699,Private room,73,1,0,,,1,180 +35003080,"Spacious, Sunny, Beautiful: 142/Brdway (Long-term)",17621913,Christine,Manhattan,Harlem,40.82578,-73.95397,Entire home/apt,100,70,0,,,1,239 +35003154,Beautiful Brooklyn Vacation Home!,3371859,Jenny & Jose,Brooklyn,Crown Heights,40.67307,-73.93917,Entire home/apt,88,2,4,2019-06-30,3.53,2,31 +35003827,Spacious Room in the heart of Manhattan,263712096,Nacho,Manhattan,Murray Hill,40.74833,-73.98162,Private room,150,1,2,2019-06-26,2,3,73 +35004123,Quiet LES private room with private half bathroom,262114182,Charlton And Marcia,Manhattan,Lower East Side,40.71549,-73.97951,Private room,125,2,0,,,1,296 +35004646,Comfy Sofa Bed in shared space (girls only),197368927,Cebile,Brooklyn,Sheepshead Bay,40.60753,-73.95389,Shared room,30,2,2,2019-07-05,1.43,8,28 +35004930,Furnished Apartment in Queens,236530772,Maria,Queens,Jamaica Estates,40.72101,-73.79395,Entire home/apt,75,7,1,2019-06-07,0.91,2,14 +35005134,Sonder | 116 John | Sleek Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70799,-74.00627,Entire home/apt,100,29,0,,,327,326 +35005171,Sonder | 116 John | Quaint Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70673,-74.00565,Entire home/apt,100,29,0,,,327,347 +35005183,Sonder | 116 John | Comfortable Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70811,-74.00616,Entire home/apt,100,29,0,,,327,333 +35005197,Sonder | 180 Water | Pleasant 2BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70575,-74.00621,Entire home/apt,302,29,0,,,327,190 +35005222,Large 2bed/2bath Steps to Central Park!,159336075,Samm,Manhattan,Upper West Side,40.79837,-73.96061,Entire home/apt,400,4,3,2019-06-23,2.37,1,275 +35005234,Airy 1BR in Hell's Kitchen by Sonder,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.76067,-73.99771,Entire home/apt,180,29,0,,,327,302 +35005258,Sonder | 11th Ave | Lovely 1BR + Gym,219517861,Sonder (NYC),Manhattan,Hell's Kitchen,40.7622,-73.99673,Entire home/apt,189,29,0,,,327,332 +35005343,Sonder | 180 Water | Bold Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70745,-74.00613,Entire home/apt,175,29,0,,,327,37 +35005367,"Beautiful 3 bedroom close to Times Square, NYC",263721494,Tasmia,Queens,Woodside,40.74357,-73.90894,Entire home/apt,189,1,2,2019-07-05,2,1,212 +35005368,Large Private Room next Empire State Building,263712096,Nacho,Manhattan,Midtown,40.74808,-73.9834,Private room,145,1,0,,,3,68 +35005373,Amazing 3 Bed on Park Ave with Washer/Dryer #6114,113723310,Joe,Manhattan,Murray Hill,40.74892,-73.98155,Entire home/apt,350,30,0,,,8,312 +35005473,Awesome Renovated Studio in Brooklyn NYC,4361579,Emmanuelle,Brooklyn,Bedford-Stuyvesant,40.6904,-73.93463,Entire home/apt,92,1,9,2019-07-01,6.59,3,21 +35005489,Exquisite Park Slope Paradise,229604812,Jake,Brooklyn,Windsor Terrace,40.65863,-73.98495,Entire home/apt,300,3,0,,,1,335 +35005499,Cozy Corner next to the Empire State Building,263712096,Nacho,Manhattan,Midtown,40.74673,-73.98305,Shared room,60,1,0,,,3,43 +35005526,Exceptional 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Theater District,40.75708,-73.98283,Entire home/apt,177,29,0,,,327,343 +35005563,Charming 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.756,-73.98195,Entire home/apt,230,29,0,,,327,354 +35005592,Superior 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Midtown,40.75547,-73.98245,Entire home/apt,177,29,0,,,327,336 +35005637,Sonder | Upper East Side | Stylish 1BR + Sofa Bed,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76277,-73.96317,Entire home/apt,160,29,0,,,327,311 +35005670,Sonder | Upper East Side | Lovely 1BR + Gym,219517861,Sonder (NYC),Manhattan,Upper East Side,40.76307,-73.96295,Entire home/apt,184,29,0,,,327,335 +35005701,Sonder | The Nash | Playful 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.7473,-73.97603,Entire home/apt,194,29,0,,,327,329 +35005774,Brand new 2 BEDROOMS BROOKLYN,48605276,Maria Y Diego,Brooklyn,Greenpoint,40.72006,-73.9462,Entire home/apt,400,4,0,,,1,355 +35005793,Sonder | The Nash | Bold 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74899,-73.97541,Entire home/apt,200,29,0,,,327,360 +35005797,Luxury 5BR/2Bath Steps to Central Park!,198836713,Chloe,Manhattan,Upper West Side,40.80154,-73.96106,Entire home/apt,550,3,5,2019-06-22,3.85,1,320 +35005829,Sonder | The Nash | Vibrant 1BR + Grilling Area,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74725,-73.97607,Entire home/apt,202,29,0,,,327,365 +35005862,Sonder | 21 Chelsea | Classic 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74288,-73.99438,Entire home/apt,275,29,0,,,327,365 +35005877,Sonder | 21 Chelsea | Sophisticated 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Chelsea,40.74295,-73.99521,Entire home/apt,277,29,0,,,327,311 +35005936,Intimate 1BR in Midtown East by Sonder,219517861,Sonder (NYC),Manhattan,Murray Hill,40.74451,-73.9727,Entire home/apt,162,29,0,,,327,341 +35005963,Sonder | Theater District | Bright 1BR + City View,219517861,Sonder (NYC),Manhattan,Theater District,40.75954,-73.98604,Entire home/apt,217,29,0,,,327,357 +35006072,"UWS brownstone with Grdn, Guest Bdrm, 2 bthrms",90206857,Judy,Manhattan,Upper West Side,40.78263,-73.97623,Entire home/apt,180,2,6,2019-07-04,5.00,1,7 +35006121,Best Value ❤️Memorable Vacation,155313109,Alex,Manhattan,Midtown,40.76383,-73.98368,Entire home/apt,149,1,15,2019-07-01,9.78,1,121 +35006426,Cozy private room by the 7 train,263732662,Kwenhi,Queens,Sunnyside,40.73935,-73.92096,Private room,50,2,4,2019-07-01,2.73,1,180 +35007081,Amazing 3 bedroom in Williamsburg,3005203,Elnadiv,Brooklyn,Williamsburg,40.71697,-73.94227,Entire home/apt,295,2,1,2019-06-16,1,3,318 +35007111,Cozy room close to the airport.,48771484,Grace,Brooklyn,East New York,40.67109,-73.86841,Private room,70,1,1,2019-06-16,1,1,75 +35007140,Amazing 3bd/2ba Apt w/ Roofdeck 5 mins to NYC,3005203,Elnadiv,Brooklyn,Williamsburg,40.71701,-73.94082,Entire home/apt,295,2,1,2019-06-08,1,3,337 +35007203,Amazing 6 bedrooms on two floors in Williamsburg,3005203,Elnadiv,Brooklyn,Williamsburg,40.71574,-73.9414,Entire home/apt,495,2,0,,,3,282 +35007240,7BR Lux Townhouse w/ Patio! Best Village Location!,254624988,Matt,Manhattan,Greenwich Village,40.73655,-73.99618,Entire home/apt,1099,31,3,2019-06-14,2.31,1,193 +35007394,Gorgeous newly renovated 2 bedroom apartment,259669775,Sal,Brooklyn,Sheepshead Bay,40.60858,-73.9516,Entire home/apt,129,2,6,2019-07-07,6,2,86 +35008478,3 Bedroom Apt in Times Square,263744711,Jennifer,Manhattan,Hell's Kitchen,40.76299,-73.99478,Entire home/apt,400,3,1,2019-06-25,1,1,278 +35008548,Times Square room With Access to a Terrance,206451695,Vanessa,Manhattan,Hell's Kitchen,40.75949,-73.99567,Private room,181,2,0,,,3,362 +35008790,Luxurious 3 BEDROOM IN THE HEART OF TimeSqaure,263744321,Marcela,Manhattan,Hell's Kitchen,40.76275,-73.99271,Entire home/apt,428,3,1,2019-07-01,1,1,244 +35009512,"One bedroom in Williamsburg, Brooklyn",31607477,Sophie,Brooklyn,Williamsburg,40.70838,-73.95366,Entire home/apt,123,2,2,2019-06-30,2,1,1 +35009677,Lucky journey 幸运旅程,192895513,Vivi,Queens,Flushing,40.7562,-73.83071,Private room,88,3,1,2019-06-16,1,3,336 +35009785,Shared room sofa bed (girls only),197368927,Cebile,Brooklyn,Sheepshead Bay,40.60911,-73.95257,Shared room,20,2,0,,,8,32 +35010022,New! Entire private luxury apt near 3 trains!,263760960,Bella,Brooklyn,Bushwick,40.69605,-73.92423,Entire home/apt,89,1,8,2019-07-01,5.58,1,305 +35010066,Hidden Oasis steps from stadium minutes from City,263760411,Jasmine And Isaac,Bronx,Concourse,40.83207,-73.92068,Private room,42,2,0,,,1,326 +35010433,温馨旅店(2),263740985,Yongqiu,Queens,Flushing,40.75291,-73.83135,Private room,80,1,2,2019-06-06,1.76,3,359 +35010481,Cozy Room in Charming Sunny Loft,2449047,Jen,Brooklyn,Williamsburg,40.70625,-73.92815,Private room,150,2,0,,,1,176 +35010988,Bright Top Floor Tower - Two Blocks from Q Train,80593865,Abbott,Manhattan,Upper East Side,40.78012,-73.95079,Entire home/apt,111,2,4,2019-06-25,3.33,1,12 +35011803,"❤️A Private Studio On Roof, Private bath + Deck",228473476,Mia,Brooklyn,Bushwick,40.69469,-73.92475,Private room,90,5,7,2019-07-04,5.12,1,133 +35012326,Your own apartment in Lower Manhattan,263777041,Chuck,Manhattan,Two Bridges,40.71089,-73.99671,Entire home/apt,109,1,9,2019-06-13,6.00,1,6 +35012500,NEWLY RENOVATED!!! LUCAS 1BR APT NEAR JFK/LGA,137890627,Willie,Queens,Rosedale,40.65535,-73.74449,Entire home/apt,68,2,5,2019-06-30,3.95,1,95 +35013529,Cozy Room 4 Min Walk From Train,236853675,Jojo,Brooklyn,Crown Heights,40.67145,-73.93355,Private room,38,1,1,2019-05-28,0.70,1,88 +35013796,Small Private Room in Upper East Side #5,1786901,Shai,Manhattan,Upper East Side,40.78307,-73.94578,Private room,69,4,0,,,9,17 +35021821,Amazing 2 bedrooms apt close to Central Park,180384868,Manuel,Manhattan,Upper West Side,40.77081,-73.99036,Entire home/apt,360,2,2,2019-06-23,2,1,89 +35023304,The best home away from home!,263843788,Diana,Queens,Sunnyside,40.74143,-73.9229,Entire home/apt,145,2,7,2019-07-01,5.68,1,14 +35023313,Joyful,263843486,Joe,Queens,Richmond Hill,40.70053,-73.82372,Entire home/apt,120,2,2,2019-07-05,2,1,336 +35023464,4 Bedrooms 4 Baths at Midtown East Manhattan,146005201,Aaron Paul,Manhattan,Midtown,40.75821,-73.96313,Entire home/apt,650,30,0,,,1,310 +35025129,Greenpoint Williamsburg only min to the city,312722,Kristian & Di,Brooklyn,Greenpoint,40.72572,-73.95664,Private room,250,29,0,,,4,157 +35025851,HUGE & COZY 3 BEDROOMS IN HEART OF MANHATTAN!!,226119185,Jay,Manhattan,Hell's Kitchen,40.76796,-73.98891,Entire home/apt,599,3,6,2019-07-03,4.74,1,199 +35025881,Luxury studio in Manhattan New York,17984804,Randy & Judy,Manhattan,Hell's Kitchen,40.76089,-74.0003,Entire home/apt,200,7,0,,,1,308 +35025921,New Studio in UWS steps from Central Park #6122,116305897,Laura,Manhattan,Upper West Side,40.78873,-73.97381,Entire home/apt,150,30,0,,,9,200 +35026069,Small Studio/Private Room - Heart of East Village,121909760,Brian,Manhattan,East Village,40.72657,-73.98757,Private room,100,2,3,2019-06-23,3,1,0 +35026159,New! Modern 2/1 Steps to Central Park!,263853262,Jason,Manhattan,Upper West Side,40.7997,-73.95946,Entire home/apt,330,4,5,2019-07-06,3.85,1,325 +35026161,Cozy Studio in UWS Luxury Building with Gym #6107,116305897,Laura,Manhattan,Upper West Side,40.78908,-73.97231,Entire home/apt,150,30,0,,,9,311 +35026452,Spacious Midtown East Studio,78290016,Nadia,Manhattan,Midtown,40.7601,-73.97042,Entire home/apt,179,2,3,2019-07-01,3,1,128 +35026962,Beautiful Studio in the heart of Midtown,98673234,Anna,Manhattan,Upper East Side,40.76365,-73.96187,Entire home/apt,185,2,7,2019-07-01,6.56,1,107 +35028223,Cozy Central Park Studio!: 2Min to Train,263641050,Daniel,Manhattan,East Harlem,40.7988,-73.94339,Entire home/apt,200,4,5,2019-06-30,3.95,1,303 +35028448,Renovated Private Bedroom in Upper Manhattan,20352964,Pantelis,Manhattan,Washington Heights,40.84732,-73.93747,Private room,50,15,0,,,1,8 +35028480,4 Bedrooms 4 Bathrooms at Sutton Place Manhattan,156295223,Abigael,Manhattan,Midtown,40.75939,-73.96177,Entire home/apt,650,30,0,,,1,303 +35029487,Beautiful Studio APT in the heart of K-TOWN,76971491,Kyeng Tae,Manhattan,Midtown,40.7482,-73.98599,Entire home/apt,180,1,3,2019-06-19,3,1,259 +35029537,Beautiful Shared apt in Times Square 3,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76514,-73.98775,Shared room,75,1,2,2019-06-13,1.82,7,362 +35029551,3000 sq. ft. Designer Loft in the heart of NYC,29001886,Ella,Manhattan,East Village,40.73256,-73.99102,Entire home/apt,700,6,0,,,1,9 +35029677,The Sutton Place 2 Bedroom Apartment,61396454,Ash,Manhattan,Midtown,40.75547,-73.96248,Entire home/apt,300,30,0,,,14,0 +35029871,Central Cozy Cobble Hill Gem,263883589,Zach,Brooklyn,Boerum Hill,40.68873,-73.98929,Entire home/apt,220,30,2,2019-07-07,2,2,82 +35030427,Lovely Studio APT in the center of K-TOWN,76981930,Werner,Manhattan,Midtown,40.74848,-73.98631,Entire home/apt,180,1,4,2019-06-22,4,1,262 +35030460,BEAUTIFUL ROOM WITH GARDEN VIEW!,10975951,Ayla Silvia,Brooklyn,Bedford-Stuyvesant,40.69348,-73.94499,Private room,60,2,2,2019-06-23,1.67,1,1 +35030571,Bohemian bed & breakfast in the heart of Astoria!,49292377,Hannah,Queens,Ditmars Steinway,40.77132,-73.90474,Private room,75,1,5,2019-06-30,4.17,1,167 +35030589,Family Place in❤️of Manhattan,216939636,Alex,Manhattan,Hell's Kitchen,40.76392,-73.98805,Entire home/apt,155,1,11,2019-07-05,7.33,1,163 +35030835,Wonderful Studio Apt in the middle of K-TOWN,65801035,Doil,Manhattan,Midtown,40.74646,-73.9863,Entire home/apt,180,1,2,2019-06-24,2,1,254 +35031082,Gorgeous Studio Apt in the area of K-TOWN,150319226,Olivia,Manhattan,Midtown,40.74669,-73.98749,Entire home/apt,180,1,7,2019-06-23,7,1,249 +35031409,Cozy & Clean Studio Apt in K-TOWN,123936733,Ara,Manhattan,Midtown,40.74847,-73.98629,Entire home/apt,180,1,5,2019-06-19,3.41,1,260 +35031778,#GorgeousLowerEast2BedroomGem! #3minWalktoTrain!,263886728,Anslo,Manhattan,Lower East Side,40.71949,-73.98607,Entire home/apt,400,4,5,2019-06-30,3.75,1,327 +35031939,"BIG APARTMENT. NEW AC ROOM, HUDSON RIVER. COMFY.",263896559,Moises,Manhattan,Harlem,40.82204,-73.95566,Private room,60,1,4,2019-07-06,3.24,3,211 +35032636,Private Room w/a Patio in Center of Manhattan!,263901573,Maria,Manhattan,Midtown,40.75476,-73.97118,Private room,135,1,4,2019-06-18,4,3,29 +35032803,"Cozy,Shared Place in Heart of Manhattan WEST 4",263880607,Ahmet,Manhattan,Hell's Kitchen,40.76501,-73.98892,Shared room,79,1,2,2019-06-04,1.58,7,365 +35033070,Sunny Apt on Treelined Street 2 blocks from trains,1274264,Kristen,Brooklyn,Sunset Park,40.64918,-74.00756,Entire home/apt,100,7,0,,,1,66 +35033521,Shared room in Midtown Near Times Square 5,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76356,-73.98814,Shared room,77,1,2,2019-06-23,1.62,7,362 +35033674,Cozy 1 Bedroom Apartment near Yankee Stadium,18506733,Michelle,Bronx,Melrose,40.82374,-73.91555,Entire home/apt,59,2,2,2019-06-17,2,1,0 +35033921,"Shared,Cozy Room İn Times Square 6",263880607,Ahmet,Manhattan,Hell's Kitchen,40.76509,-73.98795,Shared room,77,1,3,2019-07-01,2.00,7,365 +35034032,Sonder | 116 John | Vibrant 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70861,-74.00479,Entire home/apt,137,29,0,,,327,347 +35034410,Heart of the East Village Apartment,144582127,Ted,Manhattan,East Village,40.72764,-73.98712,Private room,100,3,1,2019-06-11,1,1,67 +35034543,Shared Apt by Central Park in Hell's Kitchen 7,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76424,-73.98916,Shared room,69,1,8,2019-06-21,6.32,7,357 +35034773,Private Room near Times Square 1,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76404,-73.98973,Private room,120,1,5,2019-07-01,3.33,7,352 +35035202,"Bronx, Little Italy, Arthur Ave, Fordham, Yanks.",256683560,Jorge,Bronx,Belmont,40.85539,-73.88769,Private room,69,1,3,2019-06-30,3,2,359 +35035291,Private Room İn Hell's Kitchen 2,263880607,Ahmet,Manhattan,Hell's Kitchen,40.76487,-73.98912,Private room,120,1,1,2019-06-09,1,7,198 +35035847,TimeSquare High-level modern apartment 1BDR!,42174219,Zack,Manhattan,Theater District,40.76113,-73.98557,Private room,180,2,1,2019-06-01,0.77,1,31 +35036056,Beautiful Spacious Apartment! Comfortable Place.,263896559,Moises,Manhattan,Harlem,40.82172,-73.95618,Private room,60,1,4,2019-07-01,4,3,209 +35036124,Awesome Apt 7 Beds Sleeps 12 in Brooklyn By Train,220152135,Peter,Brooklyn,Bedford-Stuyvesant,40.68957,-73.92659,Private room,200,2,2,2019-06-16,1.40,1,334 +35037136,10 Beds Sleeps 15 Laundry in Apt in Williamsburg,120111937,Madea And Julian,Brooklyn,Williamsburg,40.70865,-73.96673,Entire home/apt,549,30,5,2019-06-23,3.33,1,333 +35037457,COZY PRIVATE ROOM / PRIVATE BATHROOM IN BROOKLYN,36712060,Charlotte,Brooklyn,Bedford-Stuyvesant,40.69634,-73.93445,Private room,50,2,4,2019-07-02,4,1,0 +35037586,Spacious home with views of Gramercy Park,72686340,Anne-Marie,Manhattan,Gramercy,40.73891,-73.98657,Entire home/apt,136,4,0,,,1,148 +35037973,Summer in ny,50400614,Kobi,Manhattan,Washington Heights,40.84176,-73.93738,Private room,65,3,0,,,1,0 +35037976,Midtown Steal by Rockefeller Center,263901573,Maria,Manhattan,Midtown,40.75455,-73.9695,Private room,125,1,8,2019-07-03,8,3,123 +35038031,❤❤❤ Luxe 3bdrm + Parking 10 mins to Manhattan,71082276,Jean,Queens,Long Island City,40.75823,-73.93114,Entire home/apt,295,3,4,2019-06-24,4,1,302 +35038048,Modern Luxury near Gramercy Park: 3 Bed/2 Bath,263901827,Lidia,Manhattan,Murray Hill,40.74525,-73.97225,Entire home/apt,385,3,3,2019-06-25,3,1,311 +35038124,Gorgeous Downtown Flat With Huge Rooftop Terrace,99246264,Jeremy,Manhattan,Midtown,40.75911,-73.97011,Entire home/apt,479,2,3,2019-07-02,3,1,120 +35038269,"Comfy Space in Living Room, Midtown Manhattan",263901573,Maria,Manhattan,Midtown,40.75624,-73.97171,Shared room,99,1,9,2019-07-03,7.50,3,15 +35038426,Private 2 beds Studio w/sofa Near ESB,211549023,Studioplus,Manhattan,Midtown,40.74781,-73.98769,Entire home/apt,260,2,2,2019-06-22,2,13,292 +35038658,"LGA,TimeSquare,JFK,Queens PrivateBD,BHroom",263945896,Alin,Queens,Elmhurst,40.74696,-73.87912,Private room,45,2,3,2019-07-01,2.14,1,64 +35039302,Charming 1 Bedroom Apartment In The Heart of NYC,76168072,Paul,Manhattan,Midtown,40.75974,-73.97067,Entire home/apt,235,2,4,2019-07-02,4,1,129 +35039831,Habitacion confortable. Entrada independiente...,263955551,Raul,Queens,College Point,40.78714,-73.84378,Entire home/apt,87,2,0,,,1,358 +35039936,New 1 bedroom apartment in luxury building,263957584,Sara,Brooklyn,Bushwick,40.69971,-73.93068,Entire home/apt,198,9,4,2019-07-01,3.33,2,159 +35040055,★★Cute flat in ❤ of Manhattan★★,258639206,Alex,Manhattan,Hell's Kitchen,40.75484,-73.9939,Entire home/apt,275,1,13,2019-07-05,8.86,1,189 +35040098,Trendy One Bedroom Apartment in UES,62560525,Saud,Manhattan,East Harlem,40.78766,-73.9423,Entire home/apt,134,3,2,2019-06-20,2,1,26 +35040805,Amazing Location! 1 Bedroom Apartment Downtown,57291971,Regina,Manhattan,Midtown,40.76044,-73.97012,Entire home/apt,199,2,3,2019-07-01,3,1,67 +35040813,Lucky's Sunshine Fabulous Hideaway,263494912,Avelino,Queens,Long Island City,40.76263,-73.93547,Private room,59,1,2,2019-06-04,1.54,1,349 +35041121,Luxury new East Williamsburg 1 bedroom apartment.,263957584,Sara,Brooklyn,Bushwick,40.69824,-73.92888,Entire home/apt,198,30,3,2019-07-03,2.65,2,114 +35042058,"Big one bedroom apt, new and beautiful.",19342,Rivka,Manhattan,Upper West Side,40.799,-73.96315,Entire home/apt,11,7,0,,,1,273 +35042440,NYC 25 min from Staten IS Ferry Cozy 1br house,218955580,Yuriy,Staten Island,Mariners Harbor,40.6357,-74.15478,Entire home/apt,80,1,4,2019-07-07,4,1,140 +35042474,法拉盛中心地段单身客房,263742622,Nan,Queens,Flushing,40.76377,-73.82692,Private room,50,1,6,2019-06-30,5.45,1,74 +35043094,Comfy Home ~ 2nd Floor,263984220,Joyann,Queens,Springfield Gardens,40.66316,-73.74804,Entire home/apt,150,3,1,2019-06-30,1,1,365 +35044394,Monica’s cozy room,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.68538,-73.94637,Private room,140,1,0,,,3,364 +35044981,Home away from Home (2 Bedroom Apartment),263999712,Juan,Manhattan,Kips Bay,40.74392,-73.97741,Entire home/apt,181,1,2,2019-06-23,2,1,167 +35050872,"Cozy 4BR in FIDI, next to Wall St & One World Trad",260154981,Mats,Manhattan,Financial District,40.71055,-74.00623,Entire home/apt,395,3,5,2019-06-19,4.55,1,65 +35054863,"Summer in a sunny, top floor twin",229386490,Tj,Brooklyn,Bedford-Stuyvesant,40.68425,-73.92503,Private room,45,2,5,2019-06-26,4.29,3,257 +35055076,Balcony with Room! Close to LGA and JFK.,256290334,Aisling,Queens,Richmond Hill,40.70254,-73.8322,Private room,65,1,17,2019-07-05,13.42,1,157 +35055437,NYC Prime Location! Beautiful Big Apartment! Enjoy,263896559,Moises,Manhattan,Harlem,40.82132,-73.95441,Private room,57,1,3,2019-07-05,3,3,249 +35056385,Cozy Brooklyn getaway,85946234,Dina,Brooklyn,Flatbush,40.64669,-73.95921,Private room,65,1,1,2019-06-02,0.79,1,80 +35056734,Three Blocks to Times Square & Central Park,178164173,Ale,Manhattan,Hell's Kitchen,40.76394,-73.99466,Shared room,400,1,0,,,1,44 +35057815,"LUXURY 2ND FL,4BR/2 FUL BTH,SLEEP 8+,15MIN-JFK/LGA",215385823,Az,Queens,Jamaica Hills,40.71209,-73.80151,Entire home/apt,325,2,4,2019-07-08,4,2,124 +35058541,"Clean, Cozy, Private Bath & Bedroom Apartment",264088176,Cecilia,Bronx,Throgs Neck,40.81869,-73.82233,Entire home/apt,99,2,3,2019-07-05,3,1,120 +35059067,Gorgeous Large private room near LGA (#5),264092618,Ajmol,Queens,East Elmhurst,40.76444,-73.87238,Private room,90,1,7,2019-06-27,5.38,5,73 +35059177,3 Bedroom Apartment near Central Park,10689761,Hannah,Manhattan,Upper West Side,40.79599,-73.96659,Entire home/apt,600,30,0,,,1,319 +35059538,Large private room with a queen bed near LGA (#4),264092618,Ajmol,Queens,East Elmhurst,40.76411,-73.87373,Private room,70,1,13,2019-07-07,9.07,5,88 +35059681,Private small room with a queen bed near LGA (#03),264092618,Ajmol,Queens,East Elmhurst,40.76481,-73.87242,Private room,60,1,15,2019-07-07,10.23,5,89 +35059840,Coote Luxe Suite - Modern and Comfortable APT,263969450,Damiso,Brooklyn,Canarsie,40.64127,-73.89119,Entire home/apt,100,2,11,2019-07-05,7.50,1,167 +35060103,Bushwick Gardens apt,132709847,Gabby,Brooklyn,Bushwick,40.69214,-73.92379,Entire home/apt,89,1,0,,,1,0 +35060288,"Beautiful, Spacious, Sunny 1 Bed apt. with Rooftop",264101088,Roza,Manhattan,East Village,40.72604,-73.98843,Entire home/apt,255,5,2,2019-06-29,2,1,11 +35060675,HUGE triplex with rooftop and private garden,14703729,Benoit,Brooklyn,Crown Heights,40.67623,-73.93642,Entire home/apt,350,3,2,2019-07-01,2,1,46 +35060992,Beautiful Apartment in Brooklyn,945144,Tome,Brooklyn,Crown Heights,40.66701,-73.93861,Entire home/apt,88,10,0,,,1,6 +35061907,"Sunny Apt by Park, Blvd , BK Museum & Library",264113441,Rob,Brooklyn,Crown Heights,40.67463,-73.9606,Private room,65,31,0,,,1,328 +35062211,New Cozy Suite in Private home on quiet street .,30267389,Chandraki,Bronx,Wakefield,40.89323,-73.85215,Private room,160,2,0,,,1,364 +35062294,Sunny Studio by Central Park!,263711950,Phyllis,Manhattan,East Harlem,40.80098,-73.94261,Entire home/apt,180,3,3,2019-06-25,2.37,1,308 +35062731,⋆ Luxury FiDi Terrace Apt w/ Brooklyn Bridge views,180141907,Jose,Manhattan,Financial District,40.70659,-74.00501,Entire home/apt,299,4,0,,,1,83 +35062818,UES loft near hospitals,16259898,Moni,Manhattan,Upper East Side,40.76329,-73.96235,Entire home/apt,250,7,0,,,1,11 +35063045,Cozy 2BDR on mulberry st little italy/china town,61990664,Sonny,Manhattan,Little Italy,40.71837,-73.99768,Entire home/apt,190,5,2,2019-06-22,1.67,1,300 +35063377,"Bright, loft-style room in prime Williamsburg",10400953,Antje,Brooklyn,Williamsburg,40.71544,-73.96003,Private room,100,5,0,,,1,12 +35064014,Peaceful.,264128458,Nathaniel,Brooklyn,Fort Greene,40.69026,-73.97074,Private room,50,1,4,2019-06-24,3.08,1,336 +35064019,Divine Harlem Getaway,212263525,SamariSankofa,Manhattan,Harlem,40.81149,-73.94024,Entire home/apt,150,1,6,2019-07-01,4.09,3,352 +35064196,Theater District / Times Sq / Central Park - 1 BDR,228715959,Riki,Manhattan,Hell's Kitchen,40.76284,-73.99003,Entire home/apt,160,1,2,2019-06-23,2,1,55 +35064738,Hudge Appartment in Manhattan,35276933,Mohamed,Manhattan,Washington Heights,40.85638,-73.92921,Entire home/apt,80,70,0,,,1,37 +35064797,Prime location West Village private room,10445838,Simon,Manhattan,West Village,40.73435,-74.00392,Private room,150,3,2,2019-06-22,2,1,34 +35065083,Best views in the city is here,3398621,Nikita,Brooklyn,Brooklyn Heights,40.69664,-73.99467,Entire home/apt,140,2,1,2019-06-10,1,1,0 +35065348,MASTER ROOM # 2 Near from JFK & LGA Airport.,214738765,Lucio,Queens,Richmond Hill,40.6944,-73.83192,Private room,75,1,5,2019-07-05,4.05,3,365 +35065615,downtown brooklyn dream stay,90112329,Sandra,Brooklyn,Downtown Brooklyn,40.69791,-73.98381,Entire home/apt,279,4,1,2019-06-24,1,1,23 +35066003,Brooklyn's Gorgeous Garden Apt. 25' to Downtown.,47532,Tika,Brooklyn,Bedford-Stuyvesant,40.68463,-73.92617,Entire home/apt,169,4,0,,,1,6 +35066396,Center of Hipster Astoria 4bd 2bath 2blocks Subway,263694567,Juka,Queens,Astoria,40.76238,-73.91721,Private room,395,1,1,2019-06-30,1,1,333 +35066800,Highly nice area beautiful place too visit,264156969,Neal,Queens,Arverne,40.59279,-73.79993,Private room,80,1,1,2019-07-06,1,1,90 +35067259,Comfort,264157833,Margo,Brooklyn,Bedford-Stuyvesant,40.68406,-73.93967,Entire home/apt,300,2,0,,,1,87 +35067483,Quiet modern 2BR in Hells Kitchen with elevator,245013643,Daria,Manhattan,Hell's Kitchen,40.76506,-73.98507,Entire home/apt,285,30,0,,,2,336 +35069416,005 Comfy and Pleasant Shared Room,137999892,Simranjeet,Staten Island,Concord,40.60625,-74.089,Shared room,30,4,1,2019-06-01,0.77,7,68 +35069663,Apartamento compartido NYC.,264182618,Jesus A,Bronx,Fordham,40.85743,-73.90233,Shared room,22,1,1,2019-06-03,0.83,1,11 +35069936,Gorgeous Apartment near Time Square,263896143,Valeria,Manhattan,Hell's Kitchen,40.76256,-73.9904,Entire home/apt,390,3,3,2019-06-19,2.57,1,43 +35070555,Gorgeous Apt close to ❤️Times Square❤️,264144069,Alex,Manhattan,Hell's Kitchen,40.76512,-73.98726,Entire home/apt,500,1,11,2019-06-30,7.86,1,180 +35071302,Superb apartment in❤of Manhattan★,264143491,Alex,Manhattan,Greenwich Village,40.73108,-74.00114,Entire home/apt,500,1,7,2019-07-01,5.12,1,185 +35075812,Private Room in 2BD near Grand Central,52319188,Nick,Manhattan,Murray Hill,40.7472,-73.97278,Private room,500,2,0,,,1,43 +35076834,"Designer owned, newly renovated Bed Stuy flat",6788279,Brad,Brooklyn,Bedford-Stuyvesant,40.68295,-73.91553,Entire home/apt,97,1,2,2019-06-26,2,1,92 +35079012,Amazing Williamsburg Apartment,1722490,Dom,Brooklyn,Williamsburg,40.72096,-73.95528,Entire home/apt,150,5,0,,,1,0 +35079670,Entire one-bedroom apartment in heart of Harlem!,9524788,Nicole,Manhattan,East Harlem,40.80619,-73.94174,Entire home/apt,125,2,1,2019-07-03,1,1,1 +35080347,Downtown Manhattan apartment,117317499,Sophie,Manhattan,Lower East Side,40.71345,-73.98678,Entire home/apt,200,5,0,,,1,32 +35080969,Gorgeous 2BR Apartment in Manhattan Center,263206972,Raquel,Manhattan,Kips Bay,40.74125,-73.98125,Entire home/apt,294,3,5,2019-07-04,4.41,1,64 +35081477,West Village Gem! Like Paris,196890,Siobhan,Manhattan,West Village,40.72905,-74.00294,Entire home/apt,165,2,2,2019-06-23,1.62,1,21 +35081665,#2 Hotel-like Private Room KING Bed near JFK,263504959,David,Queens,Woodhaven,40.6929,-73.86378,Private room,50,1,10,2019-07-04,10,8,273 +35082055,NY style 2 Bedroom apartment,253308587,Stef,Manhattan,Chinatown,40.71752,-73.99387,Entire home/apt,295,4,3,2019-06-14,2.73,1,169 +35082227,The aqua roon or the peach room,264267484,Natasha,Brooklyn,East New York,40.6613,-73.88756,Private room,100,2,1,2019-06-24,1,1,270 +35082332,"SPACIOUS, bright 3BD apartment",248056954,Isabelle,Brooklyn,Williamsburg,40.71018,-73.95377,Entire home/apt,180,4,0,,,1,23 +35082713,The Glamper Van,10407935,Meng,Manhattan,SoHo,40.72765,-74.00213,Entire home/apt,89,1,6,2019-06-30,4.74,8,70 +35084043,Cozy Private Studio near Times Square,191976506,Vivian,Manhattan,Hell's Kitchen,40.76831,-73.98515,Entire home/apt,199,3,0,,,2,361 +35084260,Gorgeous Private Studio near Central Park,191976506,Vivian,Manhattan,Hell's Kitchen,40.76795,-73.98381,Entire home/apt,199,3,0,,,2,365 +35085042,"Gorgeous, spacious Brooklyn Studio",189994854,Ethan,Brooklyn,Gowanus,40.67753,-73.99084,Entire home/apt,110,30,1,2019-07-01,1,1,1 +35085643,Huge light & plant-filled Williamsburg condo,1040374,Eric,Brooklyn,Williamsburg,40.71909,-73.95408,Entire home/apt,250,3,4,2019-06-25,4,1,0 +35085802,Huge bedroom with private access to backyard.,201987117,Gershon,Queens,Ridgewood,40.70629,-73.91281,Private room,70,1,1,2019-05-27,0.68,1,0 +35085826,A Simple Studio.,264149311,Geralde,Queens,St. Albans,40.69362,-73.76953,Entire home/apt,99,2,9,2019-07-03,7.94,1,167 +35085934,Greenpoint / East Williamsburg Oasis,264294681,Caity,Brooklyn,Williamsburg,40.72035,-73.94117,Entire home/apt,125,6,0,,,1,0 +35086171,3 rooms apartment in Downtown Flushing!,264296595,Hyunsung,Queens,Flushing,40.75837,-73.82529,Entire home/apt,90,1,3,2019-06-27,3,3,104 +35086252,Modern Spacious Apartment,99642772,Anna,Brooklyn,Downtown Brooklyn,40.69561,-73.9878,Entire home/apt,210,5,0,,,1,0 +35088621,Nice quiet room available in manhattan,218259081,Monisha,Manhattan,Harlem,40.82622,-73.93489,Private room,50,1,0,,,1,365 +35088935,"Cozy, Charming and Accessible UES Apartment",37037135,John,Manhattan,Upper East Side,40.77166,-73.94665,Entire home/apt,150,2,2,2019-06-29,2,1,4 +35089556,"Large, Cozy Escape in B'klyn.",221275418,Rufina,Brooklyn,Crown Heights,40.67653,-73.93556,Private room,55,2,3,2019-07-06,3,3,174 +35090082,Williamsburg Railroad Apartment,12313907,William,Brooklyn,Williamsburg,40.72027,-73.9588,Entire home/apt,200,3,5,2019-06-23,3.57,1,163 +35090364,Bay Ridge comfortabel house,78109201,Yong,Brooklyn,Fort Hamilton,40.61735,-74.03,Entire home/apt,150,5,0,,,1,162 +35090587,Girls only,264327510,Yaren,Queens,Sunnyside,40.74351,-73.92281,Private room,50,3,4,2019-06-28,4,1,0 +35091010,Luxurious cozy private room near LGA (#02),264092618,Ajmol,Queens,East Elmhurst,40.76625,-73.87347,Private room,60,1,12,2019-07-04,8.18,5,87 +35091116,Luxurious Large private room near LGA (#01),264092618,Ajmol,Queens,East Elmhurst,40.76566,-73.87215,Private room,70,1,11,2019-07-05,7.50,5,78 +35092409,Great bedroom near yankee stadium,232652308,Hector,Bronx,Claremont Village,40.83894,-73.91158,Private room,34,2,0,,,1,9 +35092433,Down town Flushing facing botanical garden,264150720,Steven,Queens,Flushing,40.7482,-73.83113,Private room,50,1,4,2019-07-01,3.16,1,333 +35092820,Fantastic 2 Bedroom Apt Near Times Square,263753140,Neal,Manhattan,Hell's Kitchen,40.76194,-73.99074,Entire home/apt,350,1,2,2019-06-22,2,1,304 +35093378,Exclusive renovated 1bd apt in Hell's Kitchen,68561893,Sean,Manhattan,Hell's Kitchen,40.76568,-73.98636,Entire home/apt,225,3,0,,,1,151 +35093823,Quiet garden suite w/ kitchenette & backyard patio,264360482,Steve & Stephanie,Brooklyn,Crown Heights,40.67165,-73.95644,Entire home/apt,130,3,3,2019-06-16,2.43,1,74 +35096173,Like Warm Apple Pie!,264109370,Gabriel&Anais,Manhattan,East Harlem,40.78891,-73.94399,Entire home/apt,151,3,2,2019-06-24,2,1,11 +35096397,Cozy Studio apartment,257623201,Hank,Brooklyn,Flatlands,40.6261,-73.94578,Entire home/apt,75,1,8,2019-06-26,5.58,1,149 +35096744,Evergreen Modern | ♥ Lovely Room for 2 ♥,252641757,Jess,Brooklyn,Bedford-Stuyvesant,40.68526,-73.92693,Private room,65,1,6,2019-07-07,5.45,1,180 +35096805,Spacious Bushwick Home w/ Zen Garden & Yoga Loft,5273020,Stéphen,Brooklyn,Bushwick,40.69388,-73.92564,Private room,100,3,1,2019-06-30,1,1,40 +35097415,2-bedroom Queens apartment with backyard,2883347,Paul,Queens,Glendale,40.70506,-73.87073,Entire home/apt,150,2,2,2019-06-23,2,1,45 +35097684,"Cute, clean, quiet room in trendy east village",12259864,Alessandra,Manhattan,Stuyvesant Town,40.73232,-73.97784,Private room,68,3,1,2019-06-16,1,1,22 +35098251,Rare Spacious City Apartment - WIFI & GYM,28464830,Sam,Manhattan,Murray Hill,40.74653,-73.97891,Entire home/apt,650,3,2,2019-07-01,1.71,1,84 +35100775,Luxury & Stylish 2BR in Manhattan next to Time Sq,260157173,Sindre,Manhattan,Hell's Kitchen,40.76077,-73.99427,Entire home/apt,425,3,3,2019-06-30,3,1,54 +35108156,"Luxury & Bright 2BR, Midtown Manhattan",180960990,Ethan,Manhattan,Hell's Kitchen,40.75971,-73.99256,Entire home/apt,445,2,1,2019-06-09,1,1,60 +35109246,Bedroom in heart of Cobble Hill BK w/ private roof,88988332,Dorothea,Brooklyn,Cobble Hill,40.68929,-73.99656,Private room,1750,30,0,,,1,179 +35112957,Modern 2BR Apartment in Financial District,264447713,Louis,Manhattan,Financial District,40.70624,-74.01006,Entire home/apt,225,3,3,2019-06-23,2.50,1,68 +35114189,2 Bedroom modern Apt in Upper West Side,1788010,Justyna,Manhattan,Upper West Side,40.77198,-73.98931,Entire home/apt,220,30,0,,,1,31 +35114837,This adorable one bedroom on West 21st St/Chelsea,224489730,Rachel,Manhattan,Chelsea,40.74506,-73.99935,Entire home/apt,154,30,0,,,2,0 +35115408,Gorgeous Room Private Bathroom in Luxury Apartment,32207206,Ian,Brooklyn,Bushwick,40.70034,-73.92869,Private room,98,2,2,2019-06-11,2,1,55 +35115612,Quiet Manhattan Apartment,264495166,Jordania,Manhattan,Morningside Heights,40.8019,-73.95924,Private room,210,1,1,2019-06-20,1,3,86 +35115893,Beautiful and comfortable Upper East Side location,2429094,Petra,Manhattan,Upper East Side,40.76063,-73.95938,Entire home/apt,140,3,1,2019-07-06,1,1,0 +35117050,Room for rent. WiFi included. Near shopping center,84260385,Samantha,Queens,Corona,40.73505,-73.86144,Private room,70,1,0,,,1,179 +35117522,Coolest affordable room in Williamsburg!,79723533,Matías,Brooklyn,Williamsburg,40.70552,-73.94223,Private room,52,3,3,2019-07-01,3,1,68 +35117804,Outstanding 2BR apartment 5 min from Javits,260383802,Sebastian,Manhattan,Hell's Kitchen,40.75526,-73.99876,Entire home/apt,295,3,5,2019-07-02,4.29,1,204 +35118554,Huge 2x Bedroom Apt in Premium Upper West Side :),264516826,Sandra,Manhattan,Upper West Side,40.78373,-73.97182,Entire home/apt,339,3,4,2019-07-06,4,1,304 +35119736,The Academy - walk to subway + tons of culture!,16424639,Andy,Manhattan,Inwood,40.86353,-73.92349,Entire home/apt,87,4,1,2019-07-03,1,1,13 +35119931,Private room with shared bathroom and kitchen,120169401,Mejbah,Queens,Holliswood,40.72343,-73.77435,Private room,100,1,0,,,1,0 +35120093,"Stylish and cosy, newly renovated apartment.",31121418,Ekin,Brooklyn,Bedford-Stuyvesant,40.69636,-73.94638,Entire home/apt,160,7,0,,,1,56 +35120222,New Large home away from home 15 min from midtown,264527995,Brahmadutta,Queens,Long Island City,40.7609,-73.93203,Entire home/apt,250,3,1,2019-06-30,1,1,164 +35120985,Beautiful 25th Floor Room,20539689,Beau,Manhattan,Washington Heights,40.84709,-73.93525,Private room,65,10,0,,,1,229 +35121319,Boho escape in Upper Manhattan,35491006,Lisa,Manhattan,Harlem,40.8305,-73.94824,Entire home/apt,135,4,1,2019-07-07,1,1,0 +35121524,Williamsburg Modern Designer Loft on L Train,997334,James,Brooklyn,Williamsburg,40.71516,-73.94754,Entire home/apt,300,2,2,2019-06-30,2,1,77 +35121742,"Sunny, roomy one-bedroom across from Prospect Park",13583451,K,Brooklyn,Prospect-Lefferts Gardens,40.6573,-73.96134,Entire home/apt,94,4,1,2019-06-05,0.88,1,7 +35122826,Luxury & Cozy Penthouse in Manhattan,187544628,Kaito,Manhattan,Hell's Kitchen,40.76142,-73.99431,Entire home/apt,390,3,1,2019-06-22,1,1,5 +35122841,Room by Prospect Park,124902025,Aprill,Brooklyn,Prospect-Lefferts Gardens,40.66234,-73.95777,Private room,50,3,0,,,1,92 +35123753,"Bright & Cozy 3BR, Midtown Manhattan,",260383546,Andre,Manhattan,Hell's Kitchen,40.76024,-74.00046,Entire home/apt,450,3,6,2019-07-05,6,1,226 +35124153,Cozy and clean 2BR apt in Chelsea,256437293,Jack,Manhattan,Chelsea,40.75048,-74.00281,Entire home/apt,289,3,2,2019-06-21,2,1,129 +35124747,Quiet & Cozy East Village Studio with Work Space!,118715803,Ezzy,Manhattan,Lower East Side,40.72059,-73.985,Entire home/apt,175,6,0,,,1,0 +35125511,Wow Fabulous Hell's Kitchen Place,223833249,Diane,Manhattan,Hell's Kitchen,40.76277,-73.99594,Entire home/apt,300,3,3,2019-07-04,3,1,325 +35125528,FANTASTIC Large 1 Bedroom near Columbus Circle.,264568970,Mark,Manhattan,Midtown,40.76449,-73.98445,Entire home/apt,400,2,0,,,1,47 +35125636,5MinTrainSmallSmallCozyRoomIndustryCityLutheranH,264569855,Leidi,Brooklyn,Sunset Park,40.64899,-74.0125,Shared room,30,1,4,2019-06-25,4,1,342 +35125696,Cozy 1 bedroom w/twin bed & futon in Park Slope,14518163,Pedro & Jeff,Brooklyn,South Slope,40.66154,-73.98685,Private room,49,3,2,2019-06-29,1.62,1,30 +35127234,Quaint Ground Floor Midtown 1 Bed | Outdoor Patio,255432077,Nick,Manhattan,Upper East Side,40.76102,-73.96431,Entire home/apt,210,5,3,2019-06-27,3,1,136 +35127246,Brooklyn Live Style. The way Adults live in NY...,2582255,Kervin,Brooklyn,Fort Greene,40.68855,-73.97282,Entire home/apt,150,3,4,2019-07-06,4,1,15 +35127308,PVT room w/ mini fridge 20 mins from NYC airports,34880938,Abe,Queens,Jamaica,40.70642,-73.78298,Private room,40,2,4,2019-07-05,3.64,1,55 +35127865,Luxury Apartment in Manhattan,70715527,Robert,Manhattan,Upper West Side,40.77367,-73.98879,Entire home/apt,191,1,2,2019-07-02,2,1,10 +35128367,Magnificent Fort Greene Home- 3 Floors,11742777,Inbar,Brooklyn,Fort Greene,40.68647,-73.96959,Entire home/apt,550,2,1,2019-06-16,1,1,43 +35129021,Spacious 1 Bedroom in the Heart of Greenpoint,86210707,Paul,Brooklyn,Greenpoint,40.72859,-73.95905,Entire home/apt,110,2,2,2019-06-22,2,1,0 +35129203,"Spare Room Available.. Bedstuy, 20 mins to City!",30532557,Eibhlin,Brooklyn,Bedford-Stuyvesant,40.68763,-73.92694,Private room,39,30,0,,,5,247 +35129411,Beautiful Carrol Gardens Apartment,61162003,Jeffrey,Brooklyn,Columbia St,40.68446,-74.00142,Entire home/apt,250,3,1,2019-07-07,1,1,13 +35129774,"STUNNING 2 bed apartment in Greenpoint,BK",263539175,John,Brooklyn,Greenpoint,40.73479,-73.95224,Entire home/apt,225,1,6,2019-07-04,4.86,1,177 +35130273,Big Spacious Bedroom 20 mins from Time Square.,91646104,Pao,Queens,Woodside,40.74237,-73.91112,Private room,65,3,0,,,3,65 +35131138,Cozy 1 Bed in Midtown East,64024615,Michael And Aaron,Manhattan,Midtown,40.75871,-73.96948,Entire home/apt,235,2,4,2019-07-01,4,1,171 +35131221,Apartment in Riverdale NY,264618293,Zlatan,Bronx,Fieldston,40.89701,-73.89778,Entire home/apt,109,2,1,2019-07-01,1,1,192 +35131393,At Home in the Big City! *New York*,185396542,Edward,Manhattan,Midtown,40.7534,-73.97283,Private room,300,5,0,,,1,6 +35132016,Luxury 3BR in Upper West Side with swimming pool,60136891,Bo Hee,Manhattan,Upper West Side,40.78578,-73.97678,Entire home/apt,590,7,0,,,1,38 +35132345,Beautiful Apartment close to Time Square,264458360,Luis,Manhattan,Hell's Kitchen,40.76127,-73.99234,Entire home/apt,171,3,6,2019-06-30,5.29,1,0 +35132775,⚡Stylish Apt in Trendy Location!! ⭐,52071286,Sito,Manhattan,Chelsea,40.73847,-73.99835,Entire home/apt,249,2,6,2019-07-07,6,1,225 +35136523,"PRIVATE, NEWLY RENOVATED BEDROOM, 10 MINS FROM JFK",107915864,Mina,Queens,Howard Beach,40.66799,-73.85135,Private room,65,1,16,2019-07-04,11.71,4,295 +35136809,"PRIVATE, NEWLY RENOVATED BEDROOM, 10 MINS FROM JFK",107915864,Mina,Queens,Howard Beach,40.66635,-73.85258,Private room,49,1,3,2019-07-06,2.14,4,329 +35141620,Sweet Astoria Home,129936757,Vivian,Queens,Ditmars Steinway,40.77377,-73.89837,Private room,100,1,0,,,1,343 +35144024,Terrific Beach Front Condominium - Rockaway Beach,2065662,Cesar,Queens,Arverne,40.5875,-73.79427,Entire home/apt,96,2,4,2019-07-05,4,1,9 +35144255,"ENTIRE FLOOR,huge bedrooms,near SOHO,Chinatown,LES",27831147,Sissy,Manhattan,Lower East Side,40.7154,-73.98301,Entire home/apt,585,2,1,2019-06-30,1,1,97 +35145200,Dope Bushwick Bedroom,210191736,Lue,Brooklyn,Bushwick,40.69521,-73.92011,Private room,40,1,3,2019-06-09,2.31,1,0 +35145314,"Only Ladys, twin bed, near La Guardia&Manhattan",223087887,Jess & Ana,Queens,Corona,40.74132,-73.86683,Shared room,25,2,1,2019-06-15,1,8,346 +35145342,"Habitación compartida(Only Women), cerca Manhattan",223087887,Jess & Ana,Queens,Corona,40.74255,-73.86659,Shared room,29,1,1,2019-06-19,1,8,343 +35146846,Sunny one bedroom for July-Aug,264706625,Miriam,Manhattan,Harlem,40.82693,-73.95142,Entire home/apt,80,60,0,,,1,311 +35147355,Financial Dis 2 BR 1 Bath luxury apartment,115771987,Yuki,Manhattan,Financial District,40.70751,-74.01025,Entire home/apt,200,30,0,,,6,292 +35147457,Luxury 2BR Dumbo Brooklyn. Amazing Views!!,264689880,Paul,Brooklyn,Vinegar Hill,40.70344,-73.9839,Entire home/apt,350,3,0,,,1,51 +35150643,ONLY LADYS/ 3 CAMAS PARA MUJERES EN QUEENS.,223087887,Jess & Ana,Queens,Corona,40.74119,-73.86748,Shared room,25,1,2,2019-06-20,2,8,351 +35151658,Sunny Williamsburg Room w/ Access to Garden!,34667377,Misha,Brooklyn,Williamsburg,40.71124,-73.96069,Private room,75,2,5,2019-06-26,4.69,1,72 +35152601,Soho 2 Bedroom Apartment,264728394,Alex,Manhattan,SoHo,40.72363,-73.99832,Entire home/apt,350,4,4,2019-06-12,3.64,1,135 +35152749,My Premium 1 bedroom Home in the Upper East Side,264744190,Josie,Manhattan,Upper East Side,40.77585,-73.95881,Entire home/apt,179,3,4,2019-06-30,4,1,138 +35153060,Bushwick gem one block from the train Citibike,200182757,Rosie,Brooklyn,Bushwick,40.70685,-73.92149,Private room,50,4,3,2019-06-16,2.50,2,5 +35153229,Luxury Apartment in Cambria Heights,264746707,Oscar,Queens,Cambria Heights,40.68959,-73.73733,Entire home/apt,160,2,5,2019-07-07,4.17,1,151 +35153334,Apartment in Centre of New York City,36938850,Luke,Manhattan,Hell's Kitchen,40.76591,-73.99155,Entire home/apt,150,30,1,2019-06-21,1,1,15 +35153702,Very spacious 1 bed with dishwasher & free laundry,53298578,Mesude,Manhattan,East Harlem,40.78834,-73.94781,Entire home/apt,99,30,0,,,1,265 +35153758,温馨旅店(1),263740985,Yongqiu,Queens,Flushing,40.75419,-73.83082,Private room,80,1,0,,,3,363 +35154253,Peaceful East Village Apartment,46231814,Amber,Manhattan,East Village,40.72612,-73.98946,Private room,110,3,0,,,3,12 +35154411,Affordable Suite Steps from Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.76593,-73.98087,Private room,399,1,3,2019-06-30,3,4,0 +35154533,"Outstanding & Luxury 2BR in Manhattan, next to TS",258742885,Catarina,Manhattan,Hell's Kitchen,40.7622,-73.99625,Entire home/apt,425,3,5,2019-07-05,5,1,0 +35154571,Beautiful 2BR APT in Hell's Kitchen!,147810492,Harold Huengue,Manhattan,Hell's Kitchen,40.76183,-73.9916,Entire home/apt,250,2,3,2019-06-23,3,1,212 +35154668,Studio - Steps from Central Park and Times Square,231281049,The Manhattan Club,Manhattan,Midtown,40.76386,-73.98222,Private room,399,1,2,2019-07-05,2,4,356 +35154803,Modern City Suites - Near Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.7655,-73.98237,Private room,399,1,1,2019-06-22,1,4,346 +35154913,Two Bathroom Suite steps from Central Park,231281049,The Manhattan Club,Manhattan,Midtown,40.7642,-73.98035,Private room,399,1,6,2019-07-07,6,4,346 +35155176,2BEDROOM APARTMENT NY CITY,264758587,Vanessa,Brooklyn,Williamsburg,40.71986,-73.95891,Entire home/apt,500,3,3,2019-06-16,2.37,1,353 +35155188,My Lovely and Spacious Home in the West Village :),264761028,Melissa,Manhattan,West Village,40.73128,-74.00475,Entire home/apt,179,3,5,2019-06-28,5,1,164 +35155272,Spacious and stylish 2BR in NoMad - brand new,46389451,Martin,Manhattan,Chelsea,40.74546,-73.99099,Entire home/apt,299,3,0,,,3,140 +35155320,Sonder | 116 John | Modern Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.7079,-74.00491,Entire home/apt,124,29,0,,,327,344 +35155541,Sonder | 116 John | Lovely Studio + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70797,-74.00534,Entire home/apt,124,29,0,,,327,354 +35155925,Amazing 3BR 2B Apt in Times Square,158501551,Leslie,Manhattan,Hell's Kitchen,40.7632,-73.98712,Entire home/apt,420,3,2,2019-06-28,2,1,270 +35156210,Charming Pre War Apartment in the Lower East Side,225608965,Emmanuella,Manhattan,Lower East Side,40.7172,-73.9889,Entire home/apt,109,4,0,,,1,2 +35156223,Peaceful Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68734,-73.93255,Private room,42,30,0,,,27,248 +35156439,Our lovely 3 Bedroom in the Upper East Side :),264769862,Johselyn,Manhattan,Upper East Side,40.77242,-73.95452,Entire home/apt,279,3,5,2019-07-03,5,1,138 +35156906,Sunny Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68739,-73.93208,Private room,42,30,0,,,27,0 +35156995,Charming Brooklyn Brownstone,264774047,Traylor,Brooklyn,Fort Greene,40.68495,-73.97039,Private room,125,2,1,2019-06-14,1,1,87 +35157163,Private bedroom near EVERYTHING,222549093,Anna Laura,Manhattan,Harlem,40.81557,-73.95702,Private room,60,5,0,,,3,21 +35157419,Modern Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68717,-73.93113,Private room,42,30,0,,,27,249 +35158358,"UWS beauty, quaint, Central Park is 1 block",25136124,Doug,Manhattan,Upper West Side,40.78373,-73.97321,Entire home/apt,150,1,7,2019-07-06,7,1,2 +35158573,Modern peaceful room in lively East Williamsburg,59188298,John,Brooklyn,Williamsburg,40.71118,-73.94561,Private room,75,2,0,,,1,144 +35158765,Spacious + Modern 2 BR 1.5 Bath in premium UES,264786463,Justen,Manhattan,Upper East Side,40.77625,-73.9558,Entire home/apt,229,3,3,2019-07-01,3,1,150 +35159849,温馨旅店(3),263740985,Yongqiu,Queens,Flushing,40.75746,-73.83069,Private room,110,1,0,,,3,358 +35160399,2 bedroom house 15 min from Jfk,157011614,Gulshan,Brooklyn,Cypress Hills,40.68254,-73.88724,Entire home/apt,99,1,2,2019-06-03,1.58,1,145 +35160406,Quaint Essential,264797492,Kamara,Brooklyn,East Flatbush,40.63344,-73.94068,Entire home/apt,86,1,2,2019-06-08,1.58,1,360 +35160490,"Closed to any kind of restaurant, mall",264798401,Kristina,Queens,Rego Park,40.73213,-73.85717,Private room,90,7,1,2019-06-22,1,1,365 +35160692,Beautiful Room in 2Br Apartment near Prospect Park,25810180,Freddy,Brooklyn,Flatbush,40.65176,-73.95458,Private room,46,3,0,,,1,9 +35160771,Luxury 1 bedroom apt closet to Central park.,120464331,Soner,Manhattan,East Harlem,40.79496,-73.94838,Entire home/apt,140,2,4,2019-06-24,3.64,1,79 +35160909,Beautiful Ditmas Park,5597411,Misha,Brooklyn,Kensington,40.6358,-73.97127,Entire home/apt,99,14,0,,,2,33 +35161225,⭐ Oversized 4BR Loft In Prime Location!,264776021,Eduardo,Manhattan,Chelsea,40.73863,-73.99965,Entire home/apt,499,2,1,2019-06-20,1,1,115 +35161717,Sunset Suite in Spectacular E. Village Penthouse!,4765305,Haffro,Manhattan,East Village,40.72291,-73.98447,Private room,125,2,1,2019-06-10,1,4,338 +35162122,Clean and Cozy,264811416,Tasia,Queens,St. Albans,40.69464,-73.75184,Entire home/apt,47,3,0,,,1,3 +35162306,"Private Sunny Room in Williamsburg, Brooklyn - NY",30054890,Gary,Brooklyn,Williamsburg,40.70706,-73.95048,Private room,60,3,2,2019-06-29,2,2,0 +35162513,YAYA's COZY One-Bedroom in a Beautiful Brownstone,264814648,Princess,Brooklyn,Bedford-Stuyvesant,40.68005,-73.94661,Entire home/apt,110,3,3,2019-06-29,2.65,1,227 +35162591,Master bedroom in Bed-Stuy,55601522,Will,Brooklyn,Bedford-Stuyvesant,40.67948,-73.94388,Private room,50,2,0,,,1,31 +35163045,Cozy Brooklyn Bedroom in Art-Filled Apartment,124040560,Shelley,Brooklyn,Windsor Terrace,40.65039,-73.97254,Private room,66,1,1,2019-06-25,1,1,0 +35163190,Big 1 bedroom apartment 15 minutes from Manhattan!,16590533,Emily,Queens,Ditmars Steinway,40.77122,-73.90944,Entire home/apt,130,2,2,2019-07-01,2,1,26 +35163290,The Manhattan Club Luxury Junior Suite,16830841,Mara,Manhattan,Midtown,40.76401,-73.98051,Private room,365,1,1,2019-07-01,1,5,342 +35163461,Beautiful 3bd Village Home,264773781,Emiliano,Manhattan,East Village,40.7228,-73.98035,Entire home/apt,319,2,1,2019-06-09,1,1,163 +35163692,Massive NYC Getaway 20 mins to time square with AC,264824216,Peter,Manhattan,Harlem,40.82187,-73.95562,Private room,57,1,2,2019-06-22,1.71,3,54 +35164003,Stylish SoHo Apartment,42261215,Daniel,Manhattan,SoHo,40.7245,-74.00444,Private room,150,4,0,,,1,42 +35164652,Summer Retreat In New Modern Apartment,76583399,Kinga,Staten Island,Arrochar,40.59125,-74.08047,Entire home/apt,195,3,1,2019-06-24,1,1,119 +35164694,Beautiful 1BR apt in the heart of East Village!,92899052,Brett,Manhattan,East Village,40.72725,-73.98549,Entire home/apt,120,17,0,,,1,21 +35164876,Studio apartment - Harlem heart,27562515,Olivier,Manhattan,Harlem,40.81024,-73.94362,Entire home/apt,99,2,0,,,1,18 +35165258,3 Bedroom by MSG + Empire State,264837278,Kate And Jason,Manhattan,Chelsea,40.75055,-73.99237,Entire home/apt,500,3,4,2019-07-05,4,1,313 +35165581,Home of the Yankees,264840662,Arian,Bronx,Morrisania,40.82888,-73.9045,Private room,70,2,1,2019-06-30,1,1,90 +35166290,"OCEAN Room only for “1 lady” +Solo Travelers !!!!!",264823783,Wada,Manhattan,Harlem,40.81979,-73.95297,Private room,55,7,3,2019-06-20,2.81,2,182 +35166495,Gorgeous & Spacious Tribeca Loft Style Apartment,158059664,Ej,Manhattan,Tribeca,40.71306,-74.00836,Entire home/apt,600,1,2,2019-06-28,2,1,80 +35166514,One bedroom Apt with Balcony located close to JFK,157331617,Danny,Queens,Howard Beach,40.66299,-73.85491,Entire home/apt,150,3,1,2019-07-01,1,1,78 +35166637,east williamsburg cozy chill lofted space,83040886,Bochun,Brooklyn,Williamsburg,40.70483,-73.93426,Private room,100,5,0,,,1,43 +35166718,PRIME NOMAD: MASSIVE ROOM IN BOHEMIAN ART LOFT,220574429,Juliana,Manhattan,Chelsea,40.74566,-73.99092,Private room,120,21,2,2019-06-02,1.54,3,332 +35166913,City Outside! Tranquility Inside +Private Terrace,229492192,Vineet,Manhattan,Midtown,40.76022,-73.96607,Entire home/apt,229,1,2,2019-06-15,1.62,1,356 +35166942,Airy Bedroom in Spacious Brooklyn Brownstone,24952041,Valerie,Brooklyn,Bedford-Stuyvesant,40.68179,-73.95235,Private room,67,30,0,,,1,43 +35167097,Big Room w Private Entrance in Bohemian Art Loft,220574429,Juliana,Manhattan,Flatiron District,40.74421,-73.99093,Private room,125,21,1,2019-06-01,0.79,3,70 +35167332,Luxury Apt very close to public transport,44785902,Darlene,Manhattan,East Harlem,40.80173,-73.93347,Private room,100,5,0,,,1,0 +35167554,Cozy and private room close to LGA.,264854526,David,Queens,East Elmhurst,40.75829,-73.88013,Private room,55,1,12,2019-07-01,9.73,1,0 +35167683,Great Studio in Hells Kitchen Next to Times Square,158635893,Alexey,Manhattan,Hell's Kitchen,40.76366,-73.9888,Entire home/apt,209,1,4,2019-06-23,3.43,1,177 +35167707,"New Spacious Condo! Near all, 7Mins to Midtown!",53044777,Marie,Queens,Long Island City,40.74298,-73.95804,Entire home/apt,290,5,0,,,1,270 +35168463,Grace and Peace,264862581,Dianne,Queens,Rosedale,40.68205,-73.72581,Private room,75,1,2,2019-06-30,2,3,90 +35168757,Stunning Gramercy Studio,24674100,Grace,Manhattan,Kips Bay,40.74221,-73.97997,Entire home/apt,100,25,0,,,1,54 +35169758,Mott Haven Dorm GG,30509656,Orit,Bronx,Port Morris,40.80828,-73.9319,Shared room,28,1,2,2019-06-16,2,8,88 +35170169,across from crotona Park pool down the block,195028276,Joan,Bronx,Claremont Village,40.83466,-73.90278,Private room,100,3,0,,,1,365 +35170369,Luxury Living in Greenpoint,264873774,Chris,Brooklyn,Greenpoint,40.72792,-73.9591,Entire home/apt,250,10,0,,,1,155 +35170961,Mott Haven Private Dorm AA,30509656,Orit,Bronx,Port Morris,40.80844,-73.9316,Shared room,60,1,0,,,8,89 +35172393,"Brooklyn room 4mins to 2,5,3,4 trains to Manhattan",182989977,Sasha,Brooklyn,East Flatbush,40.65406,-73.94011,Private room,89,3,0,,,5,365 +35172821,"For business or pleasure 4 mins to 2,5,3,4 trains",182989977,Sasha,Brooklyn,East Flatbush,40.6541,-73.93834,Private room,69,3,0,,,5,365 +35172841,"Nights and weekends 4 mins to 2,5,3,4, trains",182989977,Sasha,Brooklyn,East Flatbush,40.65551,-73.93942,Private room,79,3,0,,,5,365 +35175462,Blue Room,260496218,Veronica,Queens,Bellerose,40.73176,-73.73872,Private room,60,1,0,,,2,157 +35175500,Fantastic Apartment in Manhattan Center,264693056,Rachel,Manhattan,Hell's Kitchen,40.75518,-73.99904,Entire home/apt,210,3,2,2019-06-21,1.58,1,73 +35177453,Charming One Bedroom on the Upper East Side,10593026,Lauren,Manhattan,Upper East Side,40.77134,-73.94832,Entire home/apt,170,2,1,2019-06-23,1,1,88 +35179345,gorgeous apartment in financial district,115771987,Yuki,Manhattan,Financial District,40.7069,-74.0092,Entire home/apt,227,30,0,,,6,332 +35181903,Stunning Park Slope Duplex (15 Mins to Manhattan!),264934283,Susan,Brooklyn,Windsor Terrace,40.65957,-73.98376,Entire home/apt,450,3,3,2019-07-01,3,2,302 +35182164,Big Ole Bed in BK,246623234,Camille-Bettina,Brooklyn,Prospect-Lefferts Gardens,40.66232,-73.95251,Private room,51,2,1,2019-06-13,1,1,0 +35182202,Perfect 4b4b place for groups in dawntawn,127805063,Monika,Manhattan,Midtown,40.75778,-73.96186,Entire home/apt,500,4,0,,,2,302 +35182511,Expansive and Bright Loft in Williamsburg,65610,Herman,Brooklyn,Williamsburg,40.71611,-73.95616,Entire home/apt,175,30,0,,,1,320 +35182672,Steps to Yankee Stadium ⚾ Minutes to Times Square,8187861,Tom,Bronx,Concourse,40.82788,-73.92604,Entire home/apt,88,3,3,2019-06-30,3,1,241 +35183070,Designer Brooklyn townhouse with private yard,5453550,Christine & James,Brooklyn,Bedford-Stuyvesant,40.69394,-73.95693,Entire home/apt,500,30,0,,,3,141 +35183293,Park Slope Studio w/3 beds (15 Mins to Manhattan!),264934283,Susan,Brooklyn,South Slope,40.6611,-73.98446,Entire home/apt,165,3,2,2019-07-01,2,2,346 +35183442,2 Big Rooms in Brooklyn NY 1 block from Subway!,63866600,David,Brooklyn,Bay Ridge,40.62937,-74.03001,Private room,100,1,6,2019-07-04,6,3,365 +35184104,Bedroom in Penthouse Apartment,49132405,Abshan,Manhattan,East Harlem,40.79908,-73.93291,Private room,140,2,1,2019-06-10,1,1,21 +35185015,Whole apartment for your stay.,73124477,Alexander,Brooklyn,Crown Heights,40.67493,-73.94081,Entire home/apt,80,5,0,,,2,0 +35185863,Bright Park Slope 2 Bed (15 Minutes to Manhattan!),264963423,Eleanor,Brooklyn,South Slope,40.66956,-73.98922,Entire home/apt,195,2,4,2019-06-30,4,1,345 +35185876,PRIME Chelsea Modern Luxury Home *****,205909,Nikki,Manhattan,Chelsea,40.74042,-73.99883,Entire home/apt,225,1,0,,,1,228 +35186244,Relax in our Modern & Cozily renovated Urban Oasis,227818501,Jenna,Bronx,Williamsbridge,40.87846,-73.86311,Entire home/apt,140,2,4,2019-07-02,4,2,358 +35186258,Nice and cozy Studio in Midtown Manhattan,264965107,Adriana,Manhattan,Kips Bay,40.742,-73.98154,Entire home/apt,131,2,2,2019-06-30,2,1,11 +35186445,AMAZING 1 BEDROOM !!! NEAR TIMES SQUARE,80003178,Mike,Manhattan,Hell's Kitchen,40.76433,-73.98932,Entire home/apt,163,1,3,2019-06-23,3,1,155 +35187654,WEST VILLAGE Duplex Diamond,151937146,Anya,Manhattan,West Village,40.73705,-74.00966,Entire home/apt,995,1,3,2019-07-05,3,1,344 +35187770,"LUXURY LOFT 20 MIN TO MANHATTAN - GYM,ROOF&LAUNDRY",264975454,Bryan,Brooklyn,Bushwick,40.69857,-73.9261,Entire home/apt,275,3,3,2019-07-05,3,1,351 +35187772,"Sunny private bedroom in Brooklyn, 20min to Mnhttn",128300825,Anton,Brooklyn,Bedford-Stuyvesant,40.69216,-73.92915,Private room,70,3,0,,,2,43 +35187992,Cozy Airy w/Plenty of Sunlight Decatur 3FL RM#3,258213198,Joanne,Brooklyn,Bushwick,40.68682,-73.90831,Private room,70,1,3,2019-07-07,3,1,163 +35188017,Gorgeous 2BR Apartment in East Village,264708433,Rachel,Manhattan,East Village,40.72608,-73.98161,Entire home/apt,348,3,5,2019-07-02,4.41,1,26 +35188430,"Spacious Bushwick Room, 5 min walk to L & M Train",220845471,Alyssa,Brooklyn,Bushwick,40.70117,-73.91755,Private room,60,1,2,2019-06-05,1.67,1,0 +35188790,Spacious & Sunny Decatur 2F Room#3,262033253,Jenny,Brooklyn,Bushwick,40.68675,-73.909,Private room,60,1,3,2019-07-05,3,2,178 +35189052,Beautiful Brooklyn Brownstone next to Park,26620387,Louise,Brooklyn,Park Slope,40.66737,-73.9747,Entire home/apt,945,4,0,,,1,19 +35189086,Warm Cozy Decatur 2F bedroom #4,262033253,Jenny,Brooklyn,Bushwick,40.68747,-73.90977,Private room,70,1,2,2019-06-24,2,2,172 +35189297,Bright 2BR in Bed-Stuy (20 Minutes to Manhattan!),264983168,Ian,Brooklyn,Bedford-Stuyvesant,40.68366,-73.9192,Entire home/apt,159,2,1,2019-06-23,1,1,341 +35189318,Centralized fun in Harlem,22630533,Carl,Manhattan,Harlem,40.81675,-73.93696,Private room,159,3,0,,,1,87 +35189403,Modern Cozy UES apartment,56341179,Eric,Manhattan,Upper East Side,40.76738,-73.95556,Entire home/apt,125,31,0,,,1,280 +35189446,Spacious And Sunny Luxurious 1 Bedroom Apartment,132699715,Ed,Manhattan,Hell's Kitchen,40.76645,-73.99101,Entire home/apt,200,1,2,2019-06-23,2,1,81 +35189906,Unique Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68777,-73.93067,Private room,42,30,0,,,27,250 +35189990,"Spacious 5 BED, 2 Full BATH (15 mins to Manhattan)",264990100,Yonaton,Brooklyn,Crown Heights,40.66566,-73.93282,Entire home/apt,395,3,1,2019-06-16,1,1,301 +35190108,Authentic Style Private BR in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68778,-73.9319,Private room,42,30,0,,,27,240 +35190131,BIG 1 BDR Apartment -close to Times Square,5708821,Valentin,Manhattan,Hell's Kitchen,40.76157,-73.99278,Entire home/apt,150,1,4,2019-06-28,4,1,16 +35190355,Brooklyn Style 5 BR Apt in Bedstuy Madison,226410657,Nina,Brooklyn,Bedford-Stuyvesant,40.68753,-73.93072,Entire home/apt,208,30,0,,,27,239 +35190467,Decent room for rent,253969143,Kelly,Queens,Elmhurst,40.74283,-73.88899,Private room,110,2,0,,,1,179 +35191797,High End Upper East Stunner,61391963,Corporate Housing,Manhattan,Upper East Side,40.77957,-73.95475,Entire home/apt,142,30,0,,,91,245 +35191909,HUGE Manhattan Apt. right next to Central Park,241258373,Margaret,Manhattan,Harlem,40.80346,-73.95702,Entire home/apt,198,2,2,2019-06-02,1.58,2,154 +35192077,Lovely studio in the heart of East Village,201074848,Moun,Manhattan,East Village,40.72702,-73.9798,Entire home/apt,165,4,2,2019-06-28,2,1,0 +35192314,Born to Be ALIVE in Hell's Kitchen,220447646,Anthony,Manhattan,Hell's Kitchen,40.76235,-73.99485,Entire home/apt,500,3,3,2019-07-03,3,1,328 +35193203,Entire Apartment in Bushwick w/ Private Backyard,264514482,Mathieu,Brooklyn,Bushwick,40.7005,-73.92412,Entire home/apt,100,4,0,,,1,5 +35193872,Cozy room,248731701,Claudia,Queens,Bayside,40.75982,-73.78312,Private room,130,5,0,,,1,177 +35193964,Breathtaking Balcony Views in the Big Apple,1461161,Sherwin,Manhattan,Murray Hill,40.74424,-73.9733,Entire home/apt,500,4,6,2019-07-07,5.62,1,138 +35195090,"Charming, bright one-bedroom",17151691,Sara,Brooklyn,Clinton Hill,40.69143,-73.968,Entire home/apt,110,4,0,,,1,0 +35195180,Sweet Home Vacation,126415353,Alessandro,Manhattan,Harlem,40.81393,-73.94365,Private room,35,2,0,,,1,124 +35195580,Modern Oversized 3bedroom Home,265029608,Merche,Manhattan,East Harlem,40.79901,-73.94334,Entire home/apt,319,2,2,2019-06-09,1.87,1,138 +35195898,Modern one-bedroom in heart of Manhattan,265034334,Rawan,Manhattan,Hell's Kitchen,40.7555,-73.99399,Entire home/apt,150,7,2,2019-07-03,2,1,61 +35195915,Chelsea HIGHLINE Prime Location,244131674,Alexis,Manhattan,Chelsea,40.749,-74.00244,Entire home/apt,300,2,3,2019-07-07,3,1,365 +35196057,Beautiful Renovated Duplex in Historic Townhouse,187671321,Alan,Manhattan,Harlem,40.81868,-73.94417,Entire home/apt,295,2,1,2019-06-26,1,1,123 +35196099,Ornate cozy Victorian studio at Central Park,118013873,Frances,Manhattan,Upper West Side,40.80103,-73.9706,Entire home/apt,150,6,2,2019-07-07,2,1,69 +35196447,Private Duplex with the BEST views of Manhattan,265020897,Ben,Brooklyn,Bushwick,40.7004,-73.92766,Entire home/apt,369,6,1,2019-07-01,1,2,29 +35196648,"Gigantic room 1 block to train with AC, fast WIFI",264824216,Peter,Manhattan,Harlem,40.822,-73.95582,Private room,59,1,1,2019-06-14,1,3,61 +35196787,Great Astoria Apartment,40436170,Robert,Queens,Astoria,40.76728,-73.90781,Entire home/apt,95,1,5,2019-07-07,5,1,65 +35196872,LES Dream,228132014,Camille,Manhattan,Lower East Side,40.71814,-73.98357,Private room,74,2,0,,,1,0 +35196873,"HUGE, Bright Private Room NEXT TO CENTRAL PARK!",241258373,Margaret,Manhattan,Harlem,40.80176,-73.95663,Private room,100,1,0,,,2,39 +35197041,The Cobble Hill Experience 3 Bedroom,263883589,Zach,Brooklyn,Boerum Hill,40.68906,-73.98983,Entire home/apt,329,30,1,2019-06-25,1,2,63 +35197107,***Entire Apartment 5 mins to JFK***,265043054,Lovlee,Queens,Jamaica,40.67289,-73.76699,Entire home/apt,100,1,4,2019-07-01,4,1,78 +35197207,Spacious bedroom w/ private bathroom! TRULY LOVELY,257586719,Marilena,Brooklyn,Bath Beach,40.60551,-74.00129,Private room,100,1,2,2019-06-26,2,1,90 +35197271,Gorgeous Bright Chic NYC 2Bath in Chelsea,195389383,Maria & Sam,Manhattan,Chelsea,40.74318,-73.99987,Entire home/apt,444,1,2,2019-06-22,2,1,325 +35197281,BEAUTIFUL APARTMENT IN THE CENTER OF WEST VILLAGE,131083549,Brian,Manhattan,Greenwich Village,40.73359,-73.99772,Entire home/apt,250,3,2,2019-06-23,2,1,32 +35197500,Spacious 1 BR W/ adjustable Queen bed. Comfy!,121851703,Mo,Queens,Queens Village,40.72048,-73.73478,Entire home/apt,150,2,4,2019-07-08,4,2,19 +35197505,twin bed in hostel style shared room,201813482,Nick,Brooklyn,Bushwick,40.70513,-73.91576,Shared room,25,4,0,,,5,340 +35198287,Light-filled Williamsburg Loft,24643940,Lucy,Brooklyn,Williamsburg,40.70726,-73.96657,Entire home/apt,550,2,2,2019-07-05,2,1,81 +35199464,"Penthouse on the beach 3 floors of art, fun,surf,",125320407,Sata,Queens,Far Rockaway,40.59636,-73.7413,Entire home/apt,900,2,0,,,5,365 +35199871,Yellow Room,63790926,Mehmet,Brooklyn,Bedford-Stuyvesant,40.6847,-73.93494,Private room,50,1,4,2019-06-25,3.75,1,349 +35200165,Twin bed in hostel with other guests,201813482,Nick,Brooklyn,Bushwick,40.70508,-73.91577,Shared room,25,4,0,,,5,346 +35201987,"★2,200sq Duplex w/Backyard near Fort Greene Park★",7305915,Flavia,Brooklyn,Fort Greene,40.69447,-73.97296,Entire home/apt,220,6,0,,,1,43 +35202508,Stylish Home Near Hells Kitchen,247795760,Jonathan,Manhattan,Hell's Kitchen,40.76312,-73.99394,Entire home/apt,200,2,6,2019-07-02,5.45,1,151 +35202605,Modern Manhattan 2 bedroom apartment,78201197,Maggie,Manhattan,East Harlem,40.7923,-73.94613,Entire home/apt,250,2,4,2019-06-30,3.75,1,44 +35204821,Spacious for big family or groups. Well located,127805063,Monika,Manhattan,Midtown,40.75803,-73.96224,Entire home/apt,350,30,0,,,2,283 +35206134,Outstanding 2 bedrooms close to Times Square,204537864,David,Manhattan,Hell's Kitchen,40.76097,-73.99973,Entire home/apt,375,2,1,2019-06-16,1,1,45 +35212471,Bright & stylish 2BR in Manhattan,202805108,Ignacio,Manhattan,Hell's Kitchen,40.76028,-73.99665,Entire home/apt,395,3,3,2019-06-29,3,1,102 +35215551,Charming East Village 1 Bedroom!,263707859,Sharon,Manhattan,East Village,40.72404,-73.98219,Entire home/apt,150,2,0,,,1,0 +35215644,Stylish 2 BR Apartment in downtown Manhattan,260156883,Elena,Manhattan,Financial District,40.71083,-74.00803,Entire home/apt,280,3,3,2019-07-06,3,1,199 +35217588,•Bright and Cozy room in an elegant apartment•,258441018,Jaison,Bronx,Claremont Village,40.84268,-73.91007,Private room,40,1,0,,,1,188 +35217816,"Modern 3 BR, 2 BATH Triplex (Washer/Dryer)",265171569,Caroline,Brooklyn,Bedford-Stuyvesant,40.68882,-73.94784,Entire home/apt,300,3,1,2019-06-30,1,1,282 +35217833,"My Home is your Home, cozy East Village",50591290,Carol & Ashley,Manhattan,East Village,40.72842,-73.98097,Entire home/apt,225,1,2,2019-06-26,2,1,344 +35217858,"comfortable, clean, sweet, conveniently located",41471153,Rina,Queens,Long Island City,40.7646,-73.93085,Private room,58,2,0,,,1,133 +35219177,"Young adults getaway 20mins to time square,AC room",264824216,Peter,Manhattan,Harlem,40.82136,-73.95606,Private room,59,1,2,2019-06-23,2,3,41 +35219812,"Cute Brooklyn Nook on Quiet, Tree-lined Street",13715158,Fiona,Brooklyn,Crown Heights,40.67542,-73.9495,Private room,45,4,2,2019-06-28,2,1,3 +35220162,Private Cozy Studio in Flushing(5K),246272839,Northern Star Realty,Queens,Flushing,40.765,-73.81875,Entire home/apt,96,1,12,2019-07-03,10.91,4,159 +35220477,"Bright, Crown Heights 2BR (15 Mins to Manhattan!)",265188674,Yehoshua,Brooklyn,Crown Heights,40.66819,-73.93783,Entire home/apt,275,2,2,2019-06-30,2,1,356 +35220744,Amazing Views in The Heart of Time Square,265192385,Liz,Manhattan,Hell's Kitchen,40.75917,-73.99785,Entire home/apt,305,2,4,2019-06-30,4,1,44 +35220898,Cozy and bright room in Williamsburg,17950129,Pauline,Brooklyn,Williamsburg,40.7192,-73.94354,Private room,71,6,1,2019-06-10,1,1,20 +35220970,Quiet and cosy room in Midtown Manhattan,5752329,Florian,Manhattan,Midtown,40.75258,-73.99311,Private room,90,1,9,2019-06-28,7.11,1,0 +35220992,"Lovely Fam hse, one lg quest private BR on 2nd fl",161906388,Imelda,Queens,Woodhaven,40.68794,-73.85566,Private room,45,1,4,2019-06-30,4,1,3 +35221421,Indépendant space in charming Williamsburg.,203946076,Harun,Brooklyn,Williamsburg,40.71651,-73.94213,Entire home/apt,50,3,2,2019-06-17,2,1,152 +35221845,Talk about a great location! Close to everything!,98841235,Salma,Manhattan,Harlem,40.82128,-73.93909,Entire home/apt,114,1,2,2019-06-23,2,1,104 +35222002,Home away home in NY,265200119,Ayse,Queens,Maspeth,40.73802,-73.9009,Entire home/apt,100,31,0,,,1,322 +35222046,Bushwick garden just a block to L train.,7780845,Liset,Brooklyn,Bushwick,40.70098,-73.9193,Entire home/apt,120,3,0,,,3,77 +35222233,Beautiful room in beautiful apartment super clean,67665882,Nitzan,Brooklyn,Bedford-Stuyvesant,40.67903,-73.94183,Private room,130,10,0,,,1,0 +35222567,The Shunammite Room - 2 Kings 4:10,259776956,Gladwyn,Brooklyn,Canarsie,40.62903,-73.89762,Private room,110,1,4,2019-06-29,4,5,365 +35222909,"Bright, quiet EV 1br w/ courtyard- perfect loca!",23090343,Kailyn,Manhattan,East Village,40.72375,-73.98949,Entire home/apt,175,5,1,2019-07-01,1,1,8 +35223189,"Spacious, Crown Heights 3BR (15 mins to Manhattan)",265204049,Albert,Brooklyn,Crown Heights,40.66765,-73.93928,Entire home/apt,260,2,1,2019-07-01,1,1,343 +35223869,"Fort Greene Park Hideaway! Quiet, Sunny, and Cozy",265213112,Harrison,Brooklyn,Fort Greene,40.68934,-73.96959,Entire home/apt,209,2,3,2019-06-24,2.37,1,79 +35224304,Spacious Home Away from Home,43099837,Crystal,Staten Island,Grymes Hill,40.61569,-74.08957,Entire home/apt,125,2,1,2019-06-28,1,1,44 +35224490,Brand New 2 Bedroom Apartment Next To Times Square,94092661,Mendy,Manhattan,Theater District,40.76187,-73.98599,Entire home/apt,249,1,3,2019-06-25,3,1,127 +35224560,Amanecer espectacular con terraza privada,163421878,Any,Queens,Sunnyside,40.7439,-73.91409,Private room,55,1,1,2019-06-02,0.81,3,302 +35224736,Room in Lower East Side -- deck access!,38005727,Arshiya,Manhattan,Lower East Side,40.71929,-73.98826,Private room,130,1,0,,,1,0 +35225375,One Of The Kind Loft 《Williamsburg》,6465781,Hanya,Brooklyn,Williamsburg,40.71151,-73.95937,Entire home/apt,490,1,1,2019-06-17,1,2,1 +35225838,Cozy room in an apartment in Bushwick!,43283271,Lizzie,Brooklyn,Bushwick,40.70137,-73.92028,Private room,45,2,1,2019-07-01,1,1,1 +35226357,Burnett comfy home away from home,120297125,Arlene,Queens,Rosedale,40.65101,-73.73721,Private room,60,1,0,,,1,180 +35226897,2 bedroom family residence in Gramercy!,11065010,Jacqueline,Manhattan,Chelsea,40.74117,-73.99951,Entire home/apt,300,4,0,,,1,16 +35226973,Stunning UWS Apartment,23753533,Maria Rosario,Manhattan,Upper West Side,40.78192,-73.97959,Entire home/apt,900,3,1,2019-07-07,1,1,57 +35227165,Huge 1br/studio in the heart of Williamsburg,15313500,Seymur,Brooklyn,Williamsburg,40.71534,-73.95692,Entire home/apt,225,1,2,2019-07-04,2,1,71 +35228252,LARGE PERFECT 1 bedroom Clean and Chic w/ JACUZZI,98442821,Darlene & Richard,Manhattan,East Village,40.7267,-73.97965,Entire home/apt,205,1,1,2019-06-02,0.81,1,349 +35228596,LUX Big Apple Apartment near the UN w/ WasherDryer,153458126,Fabiana & Christopher,Manhattan,Murray Hill,40.74791,-73.97957,Entire home/apt,400,1,0,,,2,365 +35228797,Great 2 bedrooms close to Central Park,191119982,Marietta,Manhattan,Upper West Side,40.77101,-73.98941,Entire home/apt,360,2,5,2019-06-23,4.29,1,94 +35228840,UN Dream Apt NYC,153458126,Fabiana & Christopher,Manhattan,Murray Hill,40.74682,-73.97983,Entire home/apt,307,1,0,,,2,364 +35228980,Luxury Private Home NYC Connection,215430503,Paulo & Emma,Manhattan,Chelsea,40.75393,-73.99992,Entire home/apt,199,1,0,,,1,362 +35229075,Amazing 2 bedrooms in the heart of the Upper East,228545931,Ralph,Manhattan,Upper East Side,40.76768,-73.95455,Entire home/apt,320,2,1,2019-06-25,1,1,57 +35229201,Beautiful Shared Place in Hell's Kitchen,253906467,Erik,Manhattan,Hell's Kitchen,40.76578,-73.99101,Shared room,85,1,6,2019-06-28,5.62,9,175 +35229312,Sunny Spacious NYC Location,41484943,Melissa,Brooklyn,Kensington,40.63506,-73.9744,Private room,55,1,2,2019-06-30,2,2,18 +35229609,Prime Trendy Hells Kitchen Cozy Studio,264970269,Denis,Manhattan,Hell's Kitchen,40.76272,-73.99054,Entire home/apt,189,1,4,2019-07-01,4,1,156 +35229657,Center of NYC*Dream in your dream Apt*6beds,135223584,Lina & Josh,Manhattan,Hell's Kitchen,40.75654,-73.99425,Entire home/apt,920,1,0,,,1,180 +35230465,East Village Gem 2/2,109533480,Jessica,Manhattan,East Village,40.72803,-73.98112,Entire home/apt,500,1,1,2019-06-22,1,1,365 +35230828,Tri-Level Apartment W/ Balcony Empire State Views,60113180,Austin,Manhattan,Kips Bay,40.74442,-73.98047,Entire home/apt,225,1,1,2019-06-30,1,1,221 +35230999,Marvelous apartment in KipsB,224867349,Nazarena,Manhattan,Kips Bay,40.74094,-73.9799,Entire home/apt,400,3,3,2019-06-25,2.81,1,261 +35231242,ONE HOTEL STYLE DUPLEX - 5 STARS,70490424,Julie & Brian,Manhattan,Chelsea,40.75348,-73.9986,Entire home/apt,900,1,2,2019-07-05,2,1,360 +35231621,Union Square 1 Bedroom Quiet & Clean,135596644,Ann,Manhattan,East Village,40.73258,-73.98648,Entire home/apt,225,2,0,,,1,310 +35231663,Room in a Luxury Apartment + Gym + AC + Laundry,14332697,Guillard,Brooklyn,Bushwick,40.70078,-73.92803,Private room,89,6,1,2019-06-14,1,1,27 +35231903,Times Square area - Cute 1 Bedroom Apartment,218612882,Ani,Manhattan,Hell's Kitchen,40.76169,-73.9907,Entire home/apt,170,1,5,2019-07-01,5,1,26 +35231916,Stay in LIC- Only 10 Minutes From Midtown!,15574,Joy,Queens,Long Island City,40.75367,-73.9289,Private room,65,5,1,2019-06-23,1,1,49 +35232437,JavitsCenter Private Oasis 7beds 2bath,153568512,Thais & Daniel,Manhattan,Hell's Kitchen,40.75748,-73.99477,Entire home/apt,800,1,0,,,1,360 +35232920,AMAZING CHELSEA Apartment HUGE space,28357796,Lilli,Manhattan,Chelsea,40.75347,-73.99883,Entire home/apt,210,1,0,,,1,337 +35232958,Coziest & magical beds behind living room curtains,265273671,Henri,Bronx,Parkchester,40.83898,-73.86492,Shared room,55,1,0,,,1,364 +35233037,Cozy and Bright 2 bedroom 2 full bathroom apt,89161588,Emm & Gabe,Manhattan,East Village,40.72697,-73.9805,Private room,390,1,0,,,1,365 +35233074,Spacious Duplex Family Home | 10 min to Midtown,264142178,Thiago,Queens,Long Island City,40.76383,-73.9297,Entire home/apt,275,1,3,2019-07-01,3,1,339 +35233128,West Village Amazing Living 2 Baths,164704496,Christiane,Manhattan,West Village,40.73591,-74.0101,Entire home/apt,750,1,0,,,1,365 +35233606,Heart and Soul of East Village,159357000,Otavio & Ashley,Manhattan,Murray Hill,40.74814,-73.97955,Entire home/apt,450,1,0,,,1,215 +35233649,Casa Renovare (Recycle House) Crown Heights 4BR,265273935,Noor,Brooklyn,Crown Heights,40.67385,-73.92071,Entire home/apt,295,3,3,2019-07-02,3,1,356 +35233704,Roberta's New York Paradise,265277264,Roberta,Queens,Astoria,40.75813,-73.92152,Private room,50,1,2,2019-07-06,2,1,341 +35233735,CENTER of the WORLD NYC--LargeGroups--SPACE--6beds,211018651,Thiago & Larissa,Manhattan,Hell's Kitchen,40.75501,-73.99376,Entire home/apt,930,1,0,,,1,360 +35233790,1 Bedroom in Luxury Williamsburg building,265280713,Lucas,Brooklyn,Williamsburg,40.70696,-73.94377,Private room,75,1,3,2019-06-22,2.65,1,0 +35233799,Elmhurst Front Bedroom,219333557,Rafael,Queens,East Elmhurst,40.76251,-73.86722,Private room,49,1,3,2019-06-29,3,7,0 +35233865,"it is a warm, quiet environment to relaxation al",138782186,Hannah M,Queens,Rosedale,40.65902,-73.73783,Private room,70,1,0,,,2,365 +35233897,Private room in the Financial District!,72112652,Lauren,Manhattan,Financial District,40.70473,-74.01582,Private room,90,2,1,2019-06-23,1,2,5 +35233962,Beautiful 1BR Apt. by Times Square and Bryant Park,264950723,Lenny,Manhattan,Midtown,40.75287,-73.98631,Entire home/apt,350,4,1,2019-06-09,1,1,2 +35233998,"Spacious & Bright 3BRs Near Subways, Parks, Shops",146858939,Angela,Brooklyn,Cobble Hill,40.69041,-73.99777,Entire home/apt,599,1,2,2019-06-16,2,1,39 +35235212,Feel like a home & few steps walking to City Mall.,265288059,Masum,Queens,Corona,40.73611,-73.86401,Private room,36,1,2,2019-06-30,1.76,2,62 +35235326,New private studio & separate entry for adults,96659533,Angelica,Brooklyn,Bushwick,40.69447,-73.91364,Private room,70,2,5,2019-07-02,4.17,2,301 +35235379,"Feel Like a Home,Shopping Mall Walking Distance !!",265288059,Masum,Queens,Corona,40.7363,-73.86316,Private room,36,1,5,2019-07-07,3.85,2,337 +35235701,Room for travel and work,263721921,Carlos,Queens,Flushing,40.75728,-73.80072,Private room,70,2,2,2019-06-08,1.58,1,315 +35236040,Relaxing Stylish Room Near Train and Attractions 2,265289882,Jorge,Manhattan,Chelsea,40.74614,-74.00168,Private room,150,5,0,,,1,79 +35236345,"Cozy house in Woodside, comfortable are!!",200239515,Shogo,Queens,Woodside,40.74239,-73.89454,Private room,35,29,0,,,15,5 +35236534,Cozy Room& Area in Queens♪,200239515,Shogo,Queens,Woodside,40.74258,-73.89315,Private room,40,30,0,,,15,40 +35236795,Spacious Apartment in the heart of Williamsburg,7982677,Zara,Brooklyn,Williamsburg,40.71419,-73.95967,Entire home/apt,230,2,1,2019-06-16,1,1,15 +35237543,The Place to be private room 3,263266237,Amoyiem,Bronx,Allerton,40.86871,-73.8474,Private room,40,2,0,,,4,90 +35237894,"Stunning & Unique 2-Bed, 2-Bath Downtown Apartment",264489766,Jailita,Manhattan,Midtown,40.75392,-73.96862,Entire home/apt,459,2,0,,,1,136 +35238264,Gorgeous Two Bedroom Apartment Columbias Campus,59268420,Tomer,Manhattan,Morningside Heights,40.8127,-73.96163,Private room,100,1,1,2019-06-02,0.81,1,365 +35238691,Sunnny & Huge bedroom with Plants,76273640,Dani,Brooklyn,Williamsburg,40.70478,-73.93851,Private room,95,7,1,2019-06-08,1,1,97 +35238986,Grand opening 25%off 3 floors all for your self,265322739,Angel,Bronx,Wakefield,40.89147,-73.84747,Entire home/apt,196,2,0,,,1,173 +35240782,1-3 months term NEW 1BR in a great bldg w rooftop,9224491,Tamara,Manhattan,East Village,40.72685,-73.98349,Entire home/apt,110,30,0,,,1,0 +35240989,Gorgeous One Bedroom Apartment With Private Garden,265169106,Austin,Manhattan,Harlem,40.80618,-73.94618,Entire home/apt,179,2,3,2019-06-10,3,1,187 +35247268,☕Perfect 2-bdr close to Times Square ✨,265271198,Alex,Manhattan,Hell's Kitchen,40.76495,-73.98784,Entire home/apt,330,1,13,2019-07-04,10.54,1,164 +35247808,Sunny 1 bedroom at EAST VILLAGE( L train -1st Ave),48770990,Viola,Manhattan,East Village,40.72993,-73.98319,Private room,78,15,0,,,1,22 +35249301,Spacious 2Bedroom Village Home,265248832,Noe,Manhattan,Greenwich Village,40.72757,-74.00059,Entire home/apt,349,2,2,2019-06-13,2,1,186 +35249458,Light-filled comfortable entire apartment,264809787,Kurt,Bronx,Concourse Village,40.82778,-73.91516,Entire home/apt,75,3,2,2019-06-21,2,1,253 +35249610,Luxury condo walking distance from Times Square,182410092,Joseph,Manhattan,Hell's Kitchen,40.76605,-73.99193,Entire home/apt,700,2,0,,,1,304 +35249977,Sunny charming room right by Classon av G,10284594,Elise,Brooklyn,Bedford-Stuyvesant,40.68559,-73.95478,Private room,38,30,0,,,1,1 +35250139,Brand New Renovated East Williamsburg quiet apt,265020897,Ben,Brooklyn,Bushwick,40.70149,-73.92768,Entire home/apt,177,7,0,,,2,55 +35250568,COMFORT & CONVENIENCE IN THE BEST ASTORIA LOCATION,126538085,Lina,Queens,Astoria,40.76542,-73.92607,Entire home/apt,140,7,1,2019-06-15,1,1,82 +35251282,Great Space and Location,25161307,Devi,Manhattan,East Harlem,40.79523,-73.94956,Private room,50,14,0,,,1,0 +35251947,Light-Filled Apartment with Beach Views,248880851,Sam,Queens,Rockaway Beach,40.58485,-73.81482,Entire home/apt,200,2,2,2019-07-06,2,1,152 +35252356,Classy and CLEAN Designer Home in NYC 2bath,135838665,Lely & Gary,Manhattan,Flatiron District,40.73927,-73.98774,Entire home/apt,950,1,0,,,1,365 +35252509,CHELSEA CENTRAL LUXURY 2BATHS,184520918,Danilo & Larissa,Manhattan,Chelsea,40.74575,-74.01052,Entire home/apt,332,1,0,,,1,361 +35252737,Tulum Oasis 2 baths Washer Dryer in Unit,210956993,Werley & Maria,Manhattan,Murray Hill,40.74832,-73.98126,Entire home/apt,416,1,0,,,1,365 +35253003,Beautiful sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.74854,-73.94908,Private room,75,20,0,,,2,66 +35253668,Room/house nearby JFK airport Spri,264043510,Ken,Queens,Springfield Gardens,40.6624,-73.76348,Private room,60,1,2,2019-06-26,2,6,179 +35255732,Entire Beautiful Modern Apartment!,256403429,Brenda,Queens,Glendale,40.70012,-73.89451,Entire home/apt,126,1,0,,,5,21 +35256322,"Basic Brooklyn +Safe/Clean/Easy +Accomadations",3199313,A Tree Grows In Brooklyn,Brooklyn,Prospect-Lefferts Gardens,40.66459,-73.96629,Private room,86,2,0,,,1,179 +35257081,Private Room in Manhattan 15 min. from Midtown!,265424495,Benat,Manhattan,Harlem,40.80486,-73.94754,Private room,50,1,7,2019-06-30,5.83,2,267 +35257168,Stunning Views in the heart of Brooklyn,967133,Candice,Brooklyn,Bedford-Stuyvesant,40.68213,-73.9538,Private room,75,4,0,,,1,38 +35257699,Hell's Kitchen /Times Sq - Comfortable 2 BDR Flat,264962468,Milica,Manhattan,Hell's Kitchen,40.76273,-73.99028,Entire home/apt,255,2,2,2019-07-01,2,1,55 +35257756,Perfect Room in the heart of the West Village,39541218,Frankie,Manhattan,West Village,40.73129,-74.00661,Private room,100,14,3,2019-06-12,2.43,1,31 +35258971,3 Bedroom duplex in 2 Family House Brooklyn,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68543,-73.92068,Entire home/apt,170,1,5,2019-07-07,5,3,237 +35259405,"Furnished Apartment in Queens, NY",236530772,Maria,Queens,Jamaica Estates,40.72085,-73.79179,Entire home/apt,65,2,0,,,2,19 +35259569,Huge Private Suite in shared apt,76186812,Ula,Brooklyn,Bedford-Stuyvesant,40.68027,-73.94358,Private room,59,4,1,2019-06-12,1,2,15 +35260351,One Bedroom Apartment in a Doorman Building,262078431,Darling,Manhattan,Upper West Side,40.79164,-73.97361,Entire home/apt,169,1,0,,,1,22 +35260483,Cozy Apartment minutes to Central Park,24237725,Jacopo,Manhattan,Hell's Kitchen,40.76476,-73.98871,Entire home/apt,145,7,0,,,1,5 +35260885,Modern Apt with Beautiful Views in Manhattan,264742656,Ignacio,Manhattan,Financial District,40.70912,-74.00671,Entire home/apt,249,3,4,2019-07-03,4,1,86 +35260994,"Beautiful / Sunny One Bedroom, Heart of NoLita",36960740,Athena,Manhattan,Nolita,40.72435,-73.99419,Entire home/apt,500,1,0,,,1,9 +35261255,Long Island City Luxury Studio for Rent,110001541,Shihui,Queens,Long Island City,40.74833,-73.93682,Entire home/apt,80,3,1,2019-06-08,1,1,0 +35261651,Furnished large room in 2br apt for Female on UES,265466931,Irma,Manhattan,Upper East Side,40.76671,-73.95286,Private room,99,10,1,2019-06-19,1,1,34 +35261660,"Crown Heights 3BR, 2 BATH (15 mins to Manhattan!)",265463203,Alesh,Brooklyn,Crown Heights,40.67038,-73.92962,Entire home/apt,245,2,1,2019-07-01,1,3,326 +35262025,Comfy & Quiet 1 Bedroom,137872939,Eloise & Mario,Staten Island,Emerson Hill,40.60585,-74.13331,Private room,49,2,0,,,1,144 +35262429,Cute Bright 1 Bedroom apartment in Bushwick,94422691,Omar,Brooklyn,Bushwick,40.69694,-73.90766,Entire home/apt,67,2,1,2019-07-03,1,1,0 +35262444,Room in Minimalist Apartment,446512,Héctor,Manhattan,Washington Heights,40.85457,-73.92778,Private room,66,1,5,2019-07-06,4.69,1,130 +35262475,"Bright 3BR, 2 FULL BATH (15 MINS to MANHATTAN!)",265463203,Alesh,Brooklyn,Crown Heights,40.67132,-73.93003,Entire home/apt,250,2,5,2019-07-01,5,3,309 +35262993,"6BR, 4 Bath (2 Separate Apts) 15 Mins to Manhattan",265463203,Alesh,Brooklyn,Crown Heights,40.67144,-73.93182,Entire home/apt,475,2,0,,,3,308 +35263166,★Long-term★Discount★NYC Blue Room Garden View,21153954,Michael,Brooklyn,Bedford-Stuyvesant,40.69134,-73.92768,Private room,42,30,0,,,1,334 +35263416,Spend Thanksgiving in New York City,157834976,Jessica,Manhattan,Midtown,40.75152,-73.97313,Private room,750,4,0,,,1,193 +35263825,Lush apartment with space and charm.,90817506,Mark,Bronx,Mott Haven,40.81203,-73.90779,Private room,50,2,3,2019-06-30,3,1,8 +35263872,Lovely private bedroom by Columbia University,28836096,George,Manhattan,Morningside Heights,40.81494,-73.96041,Private room,109,1,5,2019-06-22,4.29,2,148 +35264260,2BR LUXARY DUPLEX LOFT Downtown (Monthly),48194192,Allen,Brooklyn,Clinton Hill,40.69367,-73.96424,Entire home/apt,350,28,0,,,4,138 +35264702,Cozy Private Bedroom By Columbia University,28836096,George,Manhattan,Morningside Heights,40.81489,-73.95842,Private room,109,1,10,2019-07-07,10,2,143 +35265039,vacation New York,265499023,Jenny,Bronx,Mount Hope,40.84607,-73.9071,Private room,55,91,0,,,1,364 +35265786,Cozy bedroom in Long Island City,265506523,Leila,Queens,Astoria,40.756,-73.91589,Private room,80,2,1,2019-07-01,1,1,87 +35265962,Sunny & Clean Apartment,81093086,Carlos,Manhattan,Harlem,40.82155,-73.93927,Private room,50,2,4,2019-06-27,3.33,1,0 +35266157,"Spacious 2BR+Kitchenette Near Parks, Cafes, Subway",265452743,Gregory,Brooklyn,Cobble Hill,40.68896,-73.99734,Entire home/apt,289,1,5,2019-07-07,5,1,77 +35266422,Lovely Room with Deck Window Near Pratt,43902262,Victoria,Brooklyn,Bedford-Stuyvesant,40.6905,-73.93877,Private room,65,3,0,,,1,68 +35266495,Cozy 1 bedroom apt in Manhattan,42316597,Helen,Manhattan,Upper East Side,40.76179,-73.96427,Entire home/apt,210,1,1,2019-06-10,1,1,331 +35266709,A room in 3-bedroom apartment,264296595,Hyunsung,Queens,Flushing,40.75926,-73.82641,Shared room,75,1,1,2019-07-08,1,3,349 +35267090,Spacious Apartment perfect to relax and enjoy .,127831150,Carena,Brooklyn,Crown Heights,40.67768,-73.94332,Entire home/apt,125,5,1,2019-07-01,1,2,321 +35267137,Close to Manhattan! Comfortable area to stay♪,200239515,Shogo,Queens,Sunnyside,40.73872,-73.92696,Private room,37,30,0,,,15,38 +35267420,Baisley Best - 4 minutes from JFK Airport,265065371,Ian,Queens,Jamaica,40.67621,-73.78279,Entire home/apt,160,3,0,,,1,77 +35267761,Casa Luna LGA Airport,265420923,Luna,Queens,East Elmhurst,40.76774,-73.87358,Private room,70,2,2,2019-06-30,1.87,1,266 +35268203,"Super Jackpot +Central Park, 6 and Q Train!Takeit",265527861,Anthony,Manhattan,Upper East Side,40.78481,-73.95303,Private room,78,3,0,,,1,322 +35268366,Leverich 102,19303369,Hiroki,Queens,Jackson Heights,40.75049,-73.89368,Private room,50,30,0,,,37,0 +35268488,Woodside61 201,19303369,Hiroki,Queens,Woodside,40.74434,-73.90347,Private room,41,30,0,,,37,0 +35268573,Kihazi 001,19303369,Hiroki,Queens,Woodside,40.74283,-73.90303,Private room,43,30,0,,,37,0 +35268637,Kz65st d,19303369,Hiroki,Queens,Woodside,40.74615,-73.89953,Private room,33,30,0,,,37,0 +35268673,43ave c,19303369,Hiroki,Queens,Elmhurst,40.74171,-73.87645,Private room,33,30,0,,,37,0 +35268730,87st 302,19303369,Hiroki,Queens,Elmhurst,40.74066,-73.87755,Private room,32,30,0,,,37,0 +35268845,Your perfect getaway with a friendly hostess!,265534664,Maria,Queens,Long Island City,40.75365,-73.92247,Private room,48,6,0,,,1,313 +35268861,87st 204,19303369,Hiroki,Queens,Elmhurst,40.74,-73.87734,Private room,34,30,0,,,37,0 +35268953,87st304,19303369,Hiroki,Queens,Elmhurst,40.74045,-73.87776,Private room,30,30,0,,,37,0 +35269041,87st 203,19303369,Hiroki,Queens,Elmhurst,40.73847,-73.8775,Private room,32,30,0,,,37,0 +35269083,Large and bright one bedroom in bedstuy,44321906,Julie,Brooklyn,Bedford-Stuyvesant,40.69174,-73.93094,Entire home/apt,120,4,1,2019-06-25,1,1,10 +35269107,2部屋でのシェア 10畳 駅から徒歩3分 ブルックリンの大人気エリア:ウィリアムズバーグから3駅,19303369,Hiroki,Brooklyn,Bedford-Stuyvesant,40.68833,-73.95055,Private room,28,30,0,,,37,54 +35269147,2部屋でのシェア ブルックリンの大人気エリアのウィリアムズバーグから3駅 駅から徒歩3分の好立地 ,19303369,Hiroki,Brooklyn,Bedford-Stuyvesant,40.68787,-73.94973,Private room,33,29,0,,,37,0 +35275242,Sunny room in prime location,24027781,Yasmeen,Queens,Long Island City,40.74774,-73.94757,Private room,80,2,0,,,2,4 +35275591,"Entire Loft, Sunny 2 BR in Brooklyn Navy Yard",51179270,Jirka,Brooklyn,Clinton Hill,40.69704,-73.96704,Entire home/apt,78,7,0,,,1,17 +35275920,Cozy summer relaxation,265576141,Luke,Queens,Rockaway Beach,40.58825,-73.81208,Private room,75,1,2,2019-06-30,2,1,5 +35277302,Elegant Room in Upper Manhattan-18min Time Square,6057887,Mutaz,Manhattan,Washington Heights,40.84853,-73.93805,Private room,79,4,2,2019-06-10,1.87,5,16 +35278838,Private room in 2bed apt by subway & Prospect Park,3644678,Cindy,Brooklyn,Borough Park,40.64184,-73.99102,Private room,30,30,0,,,1,251 +35280902,Spacious Studio,196681978,Amelia,Manhattan,Financial District,40.70736,-74.00965,Entire home/apt,130,30,0,,,1,146 +35281242,Magical Room In the heart of Greenwich Village,141425524,Nickolas,Manhattan,Greenwich Village,40.73081,-74.00089,Private room,200,7,0,,,1,15 +35281731,Brooklyn Heights Oasis,106436589,Wendy,Brooklyn,Brooklyn Heights,40.69852,-73.99606,Entire home/apt,399,14,0,,,2,67 +35281795,Cute place,81295676,Vasiliki,Queens,Astoria,40.76411,-73.92076,Private room,55,3,0,,,1,43 +35282511,2 Bedroom Apartment Rental in Upper West Side,10746551,Glenn,Manhattan,Upper West Side,40.78085,-73.97508,Entire home/apt,153,30,0,,,1,38 +35282577,Springfield Room rental,264043510,Ken,Queens,Springfield Gardens,40.66277,-73.76336,Private room,50,1,2,2019-06-12,2,6,365 +35282883,Mesmerizing city views Financial District/Wall st,180368029,Brandon And Emily,Manhattan,Financial District,40.70694,-74.007,Entire home/apt,250,3,10,2019-07-03,8.33,1,335 +35283406,"Artist Charming 1Bedroom in Ft Greene, by park",5153401,Danielle,Brooklyn,Fort Greene,40.68739,-73.97212,Entire home/apt,160,30,1,2019-06-18,1,1,86 +35283631,"1 room available in Manhattan 3, A, B, C, D trains",24047681,Kevin,Manhattan,Harlem,40.82512,-73.93817,Private room,80,1,2,2019-06-23,2,1,356 +35283648,Luxury 3 bedroom home close to LaGuardia 8 guests,228634418,Joseph,Queens,East Elmhurst,40.75946,-73.89019,Entire home/apt,235,2,10,2019-07-07,8.33,1,321 +35283981,PRIVATE suite / luxury building / west Chelsea,54481883,Camille,Manhattan,Chelsea,40.74469,-74.00535,Entire home/apt,250,4,0,,,2,0 +35284044,An Amazing Creative Loft ,6465781,Hanya,Brooklyn,Williamsburg,40.71346,-73.95884,Private room,190,2,0,,,2,64 +35284206,"SunCatCoffeeRest Fort, Under Trees & Reggae",265644639,Nate,Brooklyn,Flatbush,40.64224,-73.95824,Private room,52,1,0,,,1,70 +35284472,Cozy bedroom,220159422,Lorand,Queens,Ridgewood,40.70161,-73.90484,Private room,42,2,3,2019-06-08,2.65,1,0 +35284533,City Gem 15 minutes from Midtown Manhattan,265647188,Sonydelane,Queens,Long Island City,40.75837,-73.93429,Entire home/apt,250,3,1,2019-06-29,1,1,353 +35284618,Beautiful & huge apartment in great location,265648986,Claire & Adrien,Brooklyn,Bedford-Stuyvesant,40.69044,-73.95893,Entire home/apt,115,4,0,,,1,36 +35285031,Luxury and stylish 2-BR condo clsoe to LGA Airport,187264773,Mark,Queens,East Elmhurst,40.76011,-73.88833,Entire home/apt,149,2,7,2019-07-01,5.83,1,341 +35285908,SUNNY GREEN OAISIS IN BEDSTUY/CLINTON HILL,118375910,David,Brooklyn,Bedford-Stuyvesant,40.6821,-73.95279,Private room,80,7,0,,,1,0 +35286246,Decorator's Apt in Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76928,-73.96675,Entire home/apt,250,14,0,,,3,344 +35287089,Upper East Side Luxury Mansion Off 5th Ave,265662009,Maria,Manhattan,Upper East Side,40.76918,-73.9667,Entire home/apt,225,14,0,,,3,340 +35287395,Room # 5 Near from JFK & LGA Diner 7/24 open,258589420,Diego,Queens,Richmond Hill,40.68936,-73.83357,Shared room,60,1,4,2019-07-07,4,7,365 +35287808,Room in Upper East - Central Park,222077787,Betty&Sam,Manhattan,Upper East Side,40.76615,-73.95639,Private room,85,1,0,,,2,7 +35288297,Cool Flex Room in Luxury apartment.,264462124,Asim,Brooklyn,Downtown Brooklyn,40.69722,-73.98467,Private room,39,1,0,,,1,16 +35288505,Trendy & Modern Bushwick Brooklyn Apartment,44021873,Daniel,Brooklyn,Bedford-Stuyvesant,40.6946,-73.93448,Private room,95,4,2,2019-06-28,2,1,28 +35288933,HUGE LGBT Townhouse w KingBed & Backyard @Bushwick,135563904,Michael,Queens,Ridgewood,40.70528,-73.90896,Entire home/apt,350,1,7,2019-07-01,7,3,64 +35289004,BEST LOCATION IN SUNNYSIDE-15 MINUTES TO MANHATTAN,119846581,Annmarie,Queens,Sunnyside,40.74338,-73.92191,Entire home/apt,78,2,7,2019-06-22,6.56,1,129 +35289022,Enchanted Harlem Gem,129041590,Wendy,Manhattan,East Harlem,40.80224,-73.94231,Entire home/apt,382,3,0,,,1,22 +35289875,JUST 4.4 MILES FROM MANHATTAN NEAR TRAIN,132786535,Carlos,Queens,Middle Village,40.71357,-73.8794,Entire home/apt,124,2,1,2019-06-23,1,2,161 +35290565,Private bedroom with private bathroom!,265703830,Noah,Brooklyn,Bedford-Stuyvesant,40.69423,-73.94627,Private room,150,1,0,,,1,365 +35290739,EXPERIENCE LUXURY IN AIRBNB,166463538,Jude,Manhattan,Financial District,40.70785,-74.00645,Shared room,150,1,1,2019-06-22,1,1,179 +35290892,Harlem Summer Cottage,11160340,Jerome,Manhattan,Harlem,40.80224,-73.95168,Entire home/apt,90,7,0,,,2,9 +35291681,"COZY Private Room, Queens/Jackson Heights/Elmhurst",29731292,Fenny,Queens,Elmhurst,40.74329,-73.8787,Private room,60,2,2,2019-06-21,2,1,0 +35292625,Room-cabin in Hell's kitchen,137191484,Maria,Manhattan,Hell's Kitchen,40.76479,-73.98667,Private room,86,1,1,2019-06-05,0.88,5,0 +35297214,Amazing Chelsea 4BR Loft!,256649546,Viberlyn,Manhattan,Chelsea,40.73999,-73.99806,Entire home/apt,2995,30,1,2019-06-24,1,1,214 +35301609,Brownstone Brooklyn Private Room with a View,158200817,Beka And Strat,Brooklyn,Prospect-Lefferts Gardens,40.65842,-73.96044,Private room,69,2,1,2019-06-07,0.91,2,89 +35301999,Cozy NYC Studio in Hell’s Kitchen/ Midtown West,159593024,Heather,Manhattan,Hell's Kitchen,40.7665,-73.98673,Entire home/apt,145,2,1,2019-06-20,1,1,35 +35303893,Modern sunlit luxury studio in Chelsea/Flatiron,14034161,Chris,Manhattan,Chelsea,40.7455,-73.99714,Entire home/apt,249,4,0,,,1,45 +35304260,"Light Airy, Private Bath, Oasis 15 min to Midtown",59392167,Judith,Queens,Sunnyside,40.74793,-73.92034,Private room,55,4,0,,,1,69 +35304831,COZY 2BR AT TIMES SQUARE - IN HEART OF MANHATTAN,195650078,Angie,Manhattan,Hell's Kitchen,40.75949,-73.98825,Entire home/apt,125,3,2,2019-06-15,2,1,219 +35304884,Prime Modern 2 BR East Village Apt nearby Subway,5569222,John,Manhattan,NoHo,40.72896,-73.99201,Entire home/apt,199,2,3,2019-06-27,3,1,36 +35305083,Charming English Basement Studio,199466039,Sydney,Manhattan,Upper East Side,40.77574,-73.95331,Entire home/apt,229,1,1,2019-06-24,1,3,266 +35305338,Quiet neighborhood near many stores,265812351,Siyen,Queens,Kew Gardens Hills,40.72608,-73.82038,Entire home/apt,199,1,0,,,1,364 +35306652,Private Studio Non Shared Pvt Washer/Dryer,264593697,Domi,Manhattan,East Harlem,40.79798,-73.93972,Entire home/apt,50,1,0,,,1,16 +35308120,2 Floor Minimalist Loft located in Lower Chelsea!,4374467,Rudy,Manhattan,Chelsea,40.74505,-74.00298,Entire home/apt,225,2,0,,,1,9 +35309370,SUNNY Entire Apartment in Williamsburg BROOKLYN,1678322,Chris,Brooklyn,Williamsburg,40.71004,-73.95577,Entire home/apt,180,2,2,2019-06-15,1.87,1,23 +35310307,Close to manhattan but way out of the hustle,114372992,Nick,Queens,Long Island City,40.76228,-73.94272,Private room,62,5,2,2019-06-16,2,1,43 +35310394,Beautifu 3 BR in Times Sq: Best Location in NYC,265621853,John Ari,Manhattan,Theater District,40.75606,-73.98871,Entire home/apt,480,3,3,2019-07-06,3,1,265 +35310420,Cute 2 bedroom apt. -ferry ride to Manhattan,471024,Christina,Staten Island,St. George,40.63911,-74.08376,Entire home/apt,48,2,0,,,1,25 +35311422,Entire luxury apartment for rent. Sleeps 4 or five,243540233,Simona,Queens,Astoria,40.77545,-73.92704,Entire home/apt,250,5,0,,,1,22 +35311495,Manhattan Best Location Comfortable Space -1~2p,179336958,Ruby,Manhattan,Midtown,40.74667,-73.98513,Private room,120,3,1,2019-06-22,1,6,364 +35312653,Beautiful Astoria Studio,24162718,Joe,Queens,Long Island City,40.76043,-73.93104,Entire home/apt,125,3,0,,,1,36 +35313119,Beautiful light and airy 2 bed in luxury building,265866685,Mindy,Brooklyn,Bushwick,40.69888,-73.93075,Entire home/apt,249,7,2,2019-07-01,2,2,179 +35313296,Amazing Charm 1 bedroom Convertible 2 bedroom,265871484,Juan,Manhattan,Hell's Kitchen,40.76457,-73.98796,Entire home/apt,300,1,7,2019-07-07,7,1,346 +35313576,Sun filled gem in the heart of Williamsburg,26961393,Josh,Brooklyn,Williamsburg,40.71599,-73.96159,Entire home/apt,198,4,3,2019-07-07,3,1,11 +35314165,MODERN 3 BEDROOM APARTMENT NEAR CENTRAL PARK,166208155,Stanislaw,Manhattan,Hell's Kitchen,40.76828,-73.98755,Entire home/apt,250,3,3,2019-07-02,3,1,42 +35314242,"A Private and Comfy, Bohemian Room",161829611,Gabrielle,Manhattan,Washington Heights,40.8564,-73.92703,Private room,66,1,2,2019-06-30,2,1,60 +35314580,Fabulous 3BR in Prime Times Square,264620263,Sheryl,Manhattan,Hell's Kitchen,40.76235,-73.98995,Entire home/apt,335,3,3,2019-06-26,3,1,144 +35314647,"Near JFK and LIRR, Room",264043510,Ken,Queens,Springfield Gardens,40.66199,-73.76345,Private room,95,1,2,2019-06-12,2,6,365 +35314884,Modern Family Home w/ Patio | 10 min to Manhattan,263440435,Lucas,Queens,Astoria,40.7592,-73.92155,Entire home/apt,300,3,3,2019-06-30,3,1,320 +35315156,Luxury 2 BR Home in Hudson Yards,250765233,Christy,Manhattan,Chelsea,40.74972,-73.99655,Entire home/apt,330,3,2,2019-06-21,2,1,281 +35315271,Design haven with private backyard & greenhouse,19689128,Billy,Brooklyn,Williamsburg,40.71413,-73.93701,Entire home/apt,131,3,2,2019-06-23,2,1,137 +35315339,Sleep in large quiet bedroom with sunny garden,220865756,Joe,Brooklyn,Bay Ridge,40.63331,-74.01975,Private room,99,5,0,,,2,37 +35315368,"Private Room in Bronx, close to everything!",265888743,Ruth,Bronx,Norwood,40.87066,-73.88227,Private room,56,2,0,,,1,53 +35315486,Amazing 2 Bedroom Apt in Prime Chelsea,250767748,Ana,Manhattan,Chelsea,40.74625,-74.0,Entire home/apt,305,3,2,2019-07-04,2,1,242 +35315680,Beautiful Chelsea Entire Two Bedroom Apartment,150199731,David,Manhattan,Chelsea,40.74006,-74.00071,Entire home/apt,195,3,0,,,1,252 +35315865,Classy Gramercy Apartment,8197805,Kasia,Manhattan,Gramercy,40.73735,-73.98425,Entire home/apt,250,2,1,2019-06-22,1,1,10 +35315907,Clean minimal 2 bedroom top floor apartment,224614531,Amhalise,Brooklyn,Bedford-Stuyvesant,40.69161,-73.94703,Entire home/apt,200,2,1,2019-06-30,1,2,5 +35315974,Cozy Spacious Studio One stop from Manhattan NY!,247335568,Evelyn,Queens,Long Island City,40.74922,-73.94048,Entire home/apt,150,3,0,,,7,19 +35316337,B- BEAUTIFUL CLASSIC SHARED ROOM DOORM STYLE WIFI,213208277,Darry,Brooklyn,Borough Park,40.64212,-73.99361,Shared room,30,5,2,2019-06-27,2,8,333 +35317010,Brownstone Duplex in Heart of Community,258467515,Arva,Manhattan,Harlem,40.81051,-73.948,Entire home/apt,250,2,1,2019-07-01,1,1,70 +35317128,Tea Factory,242262000,Howard,Brooklyn,Williamsburg,40.7204,-73.94115,Entire home/apt,500,1,0,,,1,365 +35317854,Lincoln Center Luxury River View High Rise Condo,265917688,Wenying,Manhattan,Upper West Side,40.77618,-73.98395,Entire home/apt,165,8,1,2019-06-23,1,1,62 +35318634,Boho Chic Apartment short walk from Central Park!,7933261,Angie,Manhattan,Upper East Side,40.76786,-73.95639,Entire home/apt,260,7,1,2019-06-21,1,1,43 +35318863,Amazing apartment Times Square,265068881,Omer,Manhattan,Hell's Kitchen,40.7635,-73.9878,Entire home/apt,145,4,2,2019-06-26,2,1,92 +35318942,Spacious room in Manhattan Upper East Size,226927431,Tina,Manhattan,Upper East Side,40.76665,-73.95398,Private room,140,4,2,2019-06-12,2,2,42 +35319394,Luxury Brooklyn apartment private clean,48189481,Ajamu,Brooklyn,Prospect-Lefferts Gardens,40.65877,-73.9447,Entire home/apt,150,2,1,2019-07-02,1,1,25 +35319436,jungle oasis loft in red hook,8835932,Brandi,Brooklyn,Red Hook,40.6774,-74.00304,Entire home/apt,199,2,0,,,1,11 +35319902,Room in queens,264043510,Ken,Queens,Springfield Gardens,40.66292,-73.76242,Private room,70,1,5,2019-07-07,4.29,6,365 +35320280,Room for jfk passengers,264043510,Ken,Queens,Springfield Gardens,40.66222,-73.76324,Private room,41,2,1,2019-06-29,1,6,365 +35321064,A Peaceful getaway for individuals or couples.,182121197,Katherine,Bronx,Kingsbridge,40.86493,-73.90315,Private room,69,2,2,2019-06-23,2,1,86 +35321365,Prime Bushwick Spacious Studio,49058105,William,Brooklyn,Bushwick,40.68936,-73.92071,Entire home/apt,119,7,2,2019-06-30,2,1,15 +35324178,Sleep in quiet bedroom with sunny garden,220865756,Joe,Brooklyn,Bay Ridge,40.63486,-74.02122,Private room,75,5,0,,,2,15 +35328951,Lower East Side 2 Bedroom,45378115,Lianne,Manhattan,Lower East Side,40.72247,-73.98838,Entire home/apt,185,3,1,2019-06-12,1,1,1 +35329913,Charming Brooklyn Garden apt - historic Macdonough,46724430,Mariana,Brooklyn,Bedford-Stuyvesant,40.68364,-73.92307,Entire home/apt,125,3,1,2019-07-01,1,1,0 +35330887,"Large Studio near Time Square, UN, and much more!",23853826,Janee,Manhattan,Midtown,40.75144,-73.9709,Entire home/apt,220,3,1,2019-07-01,1,1,334 +35330965,Luxury 360 City views in Manhattan close to T Sq,170150338,Michael,Manhattan,Hell's Kitchen,40.76088,-73.9923,Entire home/apt,550,3,2,2019-06-29,2,1,147 +35332679,Brownstone apartment in cozy Brooklyn neighborhood,6832892,Peter,Brooklyn,Bedford-Stuyvesant,40.6818,-73.93879,Entire home/apt,100,2,1,2019-06-16,1,1,11 +35334017,Cosy Apartment with great amenities in lux bl,6470112,Eleonora,Brooklyn,Fort Greene,40.69343,-73.98171,Entire home/apt,150,15,0,,,1,283 +35334485,NEW LUXURY BUSHWICK BUILDING,266025070,371,Brooklyn,Bushwick,40.70574,-73.91737,Entire home/apt,225,1,8,2019-07-04,7.27,1,141 +35335248,"Spacious, bright and modern private room for two.",24802029,Joshua,Manhattan,Harlem,40.82238,-73.95476,Private room,86,2,1,2019-06-23,1,1,90 +35335762,West Village Loft on the water,6645403,Noah,Manhattan,West Village,40.73207,-74.01087,Entire home/apt,270,4,1,2019-06-14,1,1,50 +35336447,Sunny and homey private room with bathroom,266035174,Pam And Dali,Brooklyn,Flatbush,40.65377,-73.95927,Private room,69,2,3,2019-06-30,3,1,2 +35336938,Room in queens house for rent,264043510,Ken,Queens,Springfield Gardens,40.6626,-73.76349,Private room,90,1,1,2019-06-23,1,6,365 +35336972,Sun-filled Plant Oasis Bedroom w/ Private Bathroom,253943547,Nia,Brooklyn,Bedford-Stuyvesant,40.6966,-73.94339,Private room,63,1,4,2019-06-27,4,1,20 +35337180,"3BR/1.5BA East Harlem - Families, Space , Quiet!",20179690,G,Manhattan,East Harlem,40.80211,-73.94365,Entire home/apt,350,1,1,2019-06-24,1,1,17 +35337525,Charming One Bedroom in Central Williamsburg,18826598,Holly,Brooklyn,Williamsburg,40.71413,-73.96075,Entire home/apt,121,3,7,2019-07-06,6.00,1,6 +35338703,The Stonewall Room at Incentra Village House,241889662,Incentra,Manhattan,West Village,40.73766,-74.00448,Private room,999,1,2,2019-07-05,2,5,321 +35339100,Renovated Master Bedroom 47 Buffalo 3F Room#1,260688089,Hui,Brooklyn,Bedford-Stuyvesant,40.67815,-73.92534,Private room,60,1,1,2019-06-30,1,2,147 +35339627,Newly Renovated Apartment 47 Buffalo 3F Room#2,260688089,Hui,Brooklyn,Bedford-Stuyvesant,40.67864,-73.92362,Private room,60,1,4,2019-06-30,4,2,166 +35341044,New Stunning 1 Bed in Midtown East #6133,129739088,Alexie,Manhattan,Midtown,40.75596,-73.96581,Entire home/apt,180,30,0,,,1,176 +35341419,"Cozy Room, kitchen bathroom & Patio Brooklyn NY",63866600,David,Brooklyn,Bay Ridge,40.6297,-74.0302,Private room,80,1,2,2019-07-01,2,3,344 +35341842,"2 Rooms in Brooklyn NY, 1 block from Subway!",63866600,David,Brooklyn,Bay Ridge,40.63066,-74.03136,Private room,80,1,5,2019-07-06,4.69,3,361 +35341959,The dream,265025516,Adina,Manhattan,Midtown,40.75088,-73.971,Entire home/apt,500,4,0,,,1,100 +35342701,Cozy Quiet Bedroom 47 Buffalo 3F Room#3,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67816,-73.92368,Private room,60,1,4,2019-06-28,4,2,173 +35342841,Alcove Studio in the Heart of Chelsea!,22412963,Anne,Manhattan,Chelsea,40.74216,-73.99363,Entire home/apt,180,1,1,2019-06-25,1,3,210 +35342886,Clean Private Room HELL'S KITCHEN A/C TV,226060825,Kenneth,Manhattan,Hell's Kitchen,40.76243,-73.98978,Private room,90,1,1,2019-06-19,1,1,138 +35343097,Modern Royal Suite in Manhattan - New York City!,221213143,David,Manhattan,Midtown,40.74217,-73.98398,Entire home/apt,299,1,0,,,9,339 +35343102,Loft in the Village,42063010,Christy,Manhattan,East Village,40.72832,-73.98984,Private room,180,1,0,,,1,177 +35343610,*New* Modern 2 Bedroom in Brooklyn Sleeps up to 8,133005440,Alex,Brooklyn,Clinton Hill,40.68253,-73.96599,Entire home/apt,125,2,6,2019-07-05,6,2,241 +35344056,Massive 3 BR home near LGA Airport and Manhattan,107211000,Kamilla And John,Queens,East Elmhurst,40.76001,-73.88865,Entire home/apt,225,2,5,2019-06-24,4.29,1,337 +35344126,Newly Renovated Apartment 47 Buffalo 3F Room#4,264732469,Longfang,Brooklyn,Bedford-Stuyvesant,40.67838,-73.92349,Private room,60,1,3,2019-06-24,3,2,176 +35344294,"Magnificent place, clean and comfy",266090689,Harris,Queens,Astoria,40.77018,-73.92108,Entire home/apt,125,2,2,2019-06-24,2,1,22 +35344556,Two Bedroom Apartment with Kitchen and Four Beds.,266092932,Blanca,Manhattan,Hell's Kitchen,40.75606,-73.99374,Entire home/apt,279,2,3,2019-07-07,3,2,221 +35345097,"Eclectic, one of a kind West Village apartment",266062621,Beckett,Manhattan,West Village,40.73006,-74.00713,Entire home/apt,250,1,1,2019-06-16,1,1,27 +35345358,Northside Williamsburg Stunner,956324,Alex,Brooklyn,Williamsburg,40.71705,-73.9647,Entire home/apt,4500,30,0,,,1,365 +35345370,EXCLUSIVE Apartment ~ NEW LUXURY boutique building,211595859,Emily,Manhattan,Midtown,40.74488,-73.98245,Entire home/apt,300,30,5,2019-06-23,4.55,1,90 +35345694,Sunlit LGBTQ+ Cozy Private Queen Room @Bushwick,135563904,Michael,Queens,Ridgewood,40.70527,-73.91075,Private room,180,1,0,,,3,76 +35346075,Private room in NYC!! Walking to Central Park!!,130617332,Haley,Manhattan,Harlem,40.81144,-73.94386,Private room,85,3,0,,,3,244 +35346788,15 min to Manhattan! 6-20 July discountprice 1200,16562278,Александрина,Queens,Astoria,40.75998,-73.926,Entire home/apt,150,1,1,2019-07-03,1,1,5 +35346820,Private Room in Luxury Penthouse Apartment,3241323,Victor,Brooklyn,East Flatbush,40.65539,-73.94961,Private room,175,1,3,2019-06-30,3,1,87 +35346826,Private studio in Central Harlem brownstone,38499797,Musya,Manhattan,East Harlem,40.80474,-73.94118,Entire home/apt,110,3,3,2019-07-01,3,1,3 +35347096,Massive 2 Bedrooms 2 Bath Private Elevator,62664257,Shei,Manhattan,East Village,40.72671,-73.97986,Entire home/apt,450,1,0,,,1,365 +35347616,Entire Midwood Brooklyn apartment newly renovated!,259669775,Sal,Brooklyn,Sheepshead Bay,40.60795,-73.95218,Entire home/apt,120,2,3,2019-06-27,3,2,103 +35348683,Central Park/Times Square Luxury Suite,16830841,Mara,Manhattan,Midtown,40.76372,-73.98182,Private room,358,1,2,2019-07-01,2,5,322 +35348877,Billion Dollar View Luxury Apt in Hudson Yard,39147579,Sandy,Manhattan,Chelsea,40.75217,-73.99828,Entire home/apt,235,3,1,2019-06-11,1,1,196 +35348968,Light filled private apartment in bed-stuy!,25127792,Té,Brooklyn,Bedford-Stuyvesant,40.69006,-73.95127,Entire home/apt,200,2,1,2019-06-25,1,1,21 +35349073,More Comfy Bushwick,96664487,Hupeto,Brooklyn,Bushwick,40.68864,-73.91614,Entire home/apt,175,3,1,2019-06-16,1,3,358 +35349137,Sunny Practical Apt in Williamsburg BK!!!,265585349,Maria,Brooklyn,Williamsburg,40.711,-73.96147,Entire home/apt,139,2,3,2019-06-28,3,1,184 +35349443,曼哈顿奢侈公寓次卧Manhattan luxury apartment second bedroom,266128085,Wanfang,Manhattan,Midtown,40.748,-73.98831,Private room,55,30,0,,,1,41 +35350124,2 BEDROOM APT HEART OF WILLIAMSBURG,5976443,Gonzalo,Brooklyn,Williamsburg,40.71071,-73.96049,Entire home/apt,150,2,6,2019-07-06,6,1,137 +35350827,4BD Newly Renovated Home in NY- TIME SQUARE,16107580,Aden,Manhattan,Hell's Kitchen,40.7616,-73.98936,Entire home/apt,700,4,2,2019-06-22,2,1,130 +35351599,Amazing 2 bedroom Times Square,206451695,Vanessa,Manhattan,Hell's Kitchen,40.76124,-73.99611,Entire home/apt,450,2,0,,,3,365 +35352171,Gorgeous 3BR townhouse+backyard! Close to subway!,10664416,Ben,Brooklyn,Bedford-Stuyvesant,40.68598,-73.91997,Entire home/apt,200,3,0,,,2,41 +35352188,10 minutes from JFK airport & Belmont Stakes,69700229,Shatese,Queens,Jamaica,40.68158,-73.7755,Private room,75,1,0,,,3,364 +35352430,Get Together/ Small party space,69700229,Shatese,Queens,Jamaica,40.68144,-73.77739,Entire home/apt,250,1,0,,,3,22 +35352621,washer/dryer private room 20 min from time square,256321373,JessDoinMe,Manhattan,Harlem,40.82168,-73.93855,Private room,50,1,1,2019-06-09,1,1,116 +35352786,Original Artists Loft in Williamsburg,43706661,Nora,Brooklyn,Williamsburg,40.7103,-73.96631,Entire home/apt,230,3,1,2019-06-30,1,1,16 +35352800,Raz and Jesse's Ridgewood Apartment,3084472,Jesse,Queens,Ridgewood,40.70196,-73.90578,Entire home/apt,71,2,0,,,1,41 +35352999,"Bright, minimalist studio in charming Clinton Hill",1324150,Panthea,Brooklyn,Clinton Hill,40.6853,-73.96692,Entire home/apt,140,7,2,2019-06-29,2,1,29 +35353172,"Luxury apartment in the heart of Bedstuy, Brooklyn",78432713,Inna,Brooklyn,Bedford-Stuyvesant,40.69004,-73.95224,Private room,42,7,1,2019-06-04,0.83,1,21 +35353585,1 BR apt next to Washington Sq (Manhattan),192784843,Adam,Manhattan,Greenwich Village,40.73125,-73.99933,Entire home/apt,300,5,0,,,1,9 +35353949,Spacious Two Bedroom-Prime Manhattan Midtown Loc,17689167,Steph,Manhattan,Midtown,40.75124,-73.98451,Entire home/apt,342,3,2,2019-06-23,2,1,40 +35354079,Cozy and luxurious apt in heart of Upper East Side,50484258,Daniel,Manhattan,Upper East Side,40.76299,-73.961,Entire home/apt,290,1,0,,,1,0 +35354567,Garden Room_1,265057419,Dameon,Brooklyn,East New York,40.67201,-73.86944,Private room,70,3,0,,,2,363 +35355147,Charming 3BR Apt in Downtown Manhattan,264842412,Ysabel,Manhattan,Financial District,40.70757,-74.01386,Entire home/apt,321,3,4,2019-06-30,4,1,65 +35356745,New York City - Walking from Central Park,153434419,Rachel,Manhattan,Harlem,40.81433,-73.94255,Private room,75,5,1,2019-06-14,1,3,246 +35357079,New York City!! Walking to Central Park!!,153434419,Rachel,Manhattan,Harlem,40.81369,-73.94239,Private room,95,5,0,,,3,265 +35357271,New York City!! Walking to Central Park LOCATION!!,153434419,Rachel,Manhattan,Harlem,40.81389,-73.94239,Private room,100,5,1,2019-06-18,1,3,260 +35361159,Your Next Stay Should be Here...Cute Stylish Condo,266212681,Charisse,Manhattan,Harlem,40.80778,-73.94561,Entire home/apt,200,1,4,2019-07-06,4,1,139 +35365315,A huge studio by the Fulton Station,265362077,Heeju,Manhattan,Civic Center,40.71262,-74.00698,Entire home/apt,175,30,0,,,1,346 +35367758,"Area is family oriented, public transportation",266246187,Boneskelatone,Brooklyn,Flatbush,40.63053,-73.96227,Shared room,150,15,0,,,1,180 +35367799,Gallery,3871108,Mark,Queens,Astoria,40.75596,-73.91637,Entire home/apt,75,20,0,,,1,344 +35368172,Stylish Spacious 1 bedroom in Amazing Location,266158631,Dani,Manhattan,Hell's Kitchen,40.76194,-73.99006,Entire home/apt,189,1,4,2019-06-30,4,1,180 +35368609,Dazzling Large 3 Bedroom Just Minutes To Manhattan,266261548,Theo,Queens,Astoria,40.75875,-73.92048,Entire home/apt,275,2,2,2019-07-01,2,1,279 +35368749,"Visiting New York City? +Stay in Da Bronx!",64969440,Tersila,Bronx,Pelham Gardens,40.86093,-73.85185,Entire home/apt,75,2,2,2019-07-05,2,1,160 +35369372,Spacious & Sunny 1 BR Apartment In Midtown W Patio,113464126,Zach,Manhattan,Hell's Kitchen,40.76285,-73.98609,Entire home/apt,189,1,3,2019-07-02,3,1,122 +35369883,An Astorians cozy room for you :),144866025,Rory,Queens,Ditmars Steinway,40.77746,-73.9184,Private room,50,14,0,,,1,68 +35370678,Cozy Spacious Near TIMES SQUARE,141778215,Sandy,Manhattan,Chelsea,40.74814,-73.99416,Entire home/apt,269,1,2,2019-06-12,2,1,238 +35371114,August 25-28 Manhatten! Total suite sleeps 4 or 5.,96019,Ruth,Manhattan,Midtown,40.76527,-73.98139,Private room,299,3,0,,,1,3 +35371155,1 bedroom for 2 in a stunning Manhattan apartment,12833650,Georges,Manhattan,Murray Hill,40.7485,-73.97419,Private room,150,4,0,,,1,46 +35371996,AMAZING BIG BRIGHT LOFT APARTMENT IN BROOKLYN,180160926,Antia,Brooklyn,Bedford-Stuyvesant,40.68725,-73.95086,Entire home/apt,190,4,1,2019-06-30,1,1,303 +35372810,Luxury apartment with private roof access,75017049,Dylan,Brooklyn,South Slope,40.66509,-73.98325,Private room,100,31,0,,,2,119 +35373350,1 BR w/ PRIVATE GARDEN and BBQ GRILL!!! in BK,91176276,Carolyn,Brooklyn,Boerum Hill,40.6889,-73.9871,Entire home/apt,250,2,3,2019-07-07,2.73,1,10 +35373956,Fun 3 Bedroom Just Minutes to Manhattan!!,266299609,Nick,Queens,Astoria,40.75883,-73.9216,Entire home/apt,250,2,0,,,1,282 +35374230,Charming 2BR Apartment in Midtown Manhattan,264851724,Jose,Manhattan,Midtown,40.75508,-73.96707,Entire home/apt,347,3,4,2019-07-03,4,1,157 +35374299,Cozy South Williamsburg Room- Best Location in BK,9843389,Lawrence,Brooklyn,Williamsburg,40.70929,-73.95523,Private room,75,1,2,2019-06-13,1.82,2,260 +35375569,Alphabet City Summer!,266310389,Kirk,Manhattan,East Village,40.72837,-73.98171,Private room,50,30,0,,,1,97 +35376063,Bright and Airy Williamsburg Apartment,25352847,Rachel,Brooklyn,Williamsburg,40.71452,-73.9534,Entire home/apt,250,1,1,2019-06-16,1,2,64 +35376213,Renovated huge 1bd 1ba 10 minutes from Manhattan,266315426,Sayem,Brooklyn,Williamsburg,40.70741,-73.94233,Entire home/apt,120,2,0,,,1,27 +35376285,Brand New Couples Brooklyn Apartment,201884425,Hoover,Brooklyn,Cypress Hills,40.68207,-73.87358,Entire home/apt,82,5,1,2019-06-26,1,3,29 +35376427,"Close to Jamaica Hosp, Train F,E, Airtrain,JFK",23217966,Sandra,Queens,Briarwood,40.70587,-73.81342,Private room,45,2,4,2019-07-03,4,2,76 +35376453,Bright & Sunny 1Bed in Prime Williamsburg Location,234383668,Federica,Brooklyn,Williamsburg,40.71509,-73.9565,Entire home/apt,140,15,1,2019-06-04,0.86,1,29 +35376476,Corona's Gem,266316634,Francisco,Queens,Jackson Heights,40.75755,-73.86199,Entire home/apt,250,2,2,2019-06-30,2,1,338 +35376755,Walk To Columbia Uni & Central Park- 1Min To Train,145067304,Amber,Manhattan,Harlem,40.80438,-73.95284,Entire home/apt,220,2,1,2019-06-21,1,1,214 +35377489,"""HAPPYNEST"" CANARSIE",266322736,Fernella,Brooklyn,Canarsie,40.64746,-73.90848,Entire home/apt,110,2,2,2019-06-30,2,1,87 +35378514,Cozy 2 bedrooms apt in Times Square 4-5ppl,265372312,Carmen,Manhattan,Hell's Kitchen,40.76015,-73.99341,Entire home/apt,275,1,5,2019-06-26,5,1,124 +35378679,"Bright, Spacious, Royal Luxury Escape",266333619,Yvonne,Manhattan,Washington Heights,40.85609,-73.93166,Entire home/apt,160,1,3,2019-06-25,3,1,75 +35378917,Fabulous 3 bedroom apartment 10 Min from Manhattan,266335518,Panagiotis,Queens,Astoria,40.76444,-73.9157,Entire home/apt,225,2,1,2019-06-30,1,1,270 +35379061,"3 Bed/2Bath - Fresh and clean,central Manhattan",266291058,Raul,Manhattan,Kips Bay,40.74344,-73.97821,Entire home/apt,500,2,0,,,1,264 +35379267,Beautiful apartment in the heart of West Village!,265178222,Ibrahim Ali,Manhattan,West Village,40.73168,-74.00195,Entire home/apt,295,3,2,2019-06-28,2,1,195 +35379530,Live like a local!,266339498,Valentina,Brooklyn,Bay Ridge,40.63919,-74.02526,Entire home/apt,190,2,0,,,1,119 +35379623,"Amazing place, 15 minutes from Manhattan",266340106,Christos,Queens,Astoria,40.77069,-73.91977,Entire home/apt,125,2,5,2019-07-03,5,1,24 +35379882,Central Park West Apartment King,266341812,Sophia,Manhattan,Upper West Side,40.79147,-73.96644,Private room,99,14,0,,,1,87 +35379899,The Emerald Suite (A Gem In A Historic Mansion),7728754,Malika,Brooklyn,Crown Heights,40.67575,-73.94299,Entire home/apt,100,3,0,,,4,278 +35380023,Owners duplex in beautiful bed stuy brownstone,413316,Laurel,Brooklyn,Bedford-Stuyvesant,40.67866,-73.94759,Entire home/apt,225,4,0,,,1,9 +35380648,Luxury High Rise-Corner View-Walk to Times Square,266346965,Robert,Manhattan,Hell's Kitchen,40.75842,-73.99281,Entire home/apt,350,4,4,2019-06-29,3.64,1,107 +35380876,12th Floor Harlem Apartment w/ Sunlight and View,36793330,Romel,Manhattan,Harlem,40.81852,-73.9381,Private room,120,1,0,,,1,89 +35381538,The Sunshine Suite in a Brooklyn Mansion,7728754,Malika,Brooklyn,Crown Heights,40.67125,-73.94006,Entire home/apt,90,3,0,,,4,256 +35382875,Beautiful room w/ private bathroom in Williamsburg,29387731,Valerie,Brooklyn,Williamsburg,40.71203,-73.95241,Private room,65,4,1,2019-06-27,1,1,5 +35383920,Sunny Room in Heart Of Bushwick Jefferson L train,266371525,Ignacio,Brooklyn,Bushwick,40.70695,-73.92295,Private room,67,15,0,,,1,176 +35384013,Gorgeous apartment in heart of Manhattan,235054437,Jakob,Manhattan,Hell's Kitchen,40.75994,-73.99591,Entire home/apt,295,4,0,,,1,10 +35384123,Botanical Home,266360944,Olga,Queens,Springfield Gardens,40.66104,-73.76251,Private room,70,1,1,2019-06-16,1,1,89 +35384172,Extremely Large 2 Bedroom Midtown Apartment,266157648,Kraja,Manhattan,Kips Bay,40.74363,-73.9773,Entire home/apt,299,1,4,2019-07-06,4,1,348 +35384238,Private room 20mins away from the Big Apple,246434428,Bryan,Queens,Glendale,40.69488,-73.89649,Private room,40,2,1,2019-06-17,1,1,90 +35384544,Gorgeous 1 BDR Apartment- 2 blocks to Times Sq.,219303510,Guido,Manhattan,Hell's Kitchen,40.76212,-73.99265,Entire home/apt,190,1,4,2019-07-07,4,1,36 +35384734,Studio Apartment in the heart of Chelsea,266380288,Valerie,Manhattan,Chelsea,40.74114,-74.00358,Entire home/apt,198,30,0,,,1,125 +35384842,Artistic Private Attic w/Backyard/Near Metro,23878336,Armando,Bronx,Fordham,40.8703,-73.89313,Entire home/apt,168,3,0,,,10,337 +35384851,Modern 2BD in Astoria-10 min to Central Park,11866880,Juan,Queens,Astoria,40.76358,-73.92399,Entire home/apt,289,3,0,,,1,253 +35385167,Luxurious living in heart of Astoria,266384408,Maria,Queens,Astoria,40.76438,-73.91419,Entire home/apt,225,2,1,2019-07-03,1,1,279 +35385249,☀SOHO☀ Sunny & Spacious ➽ Sleeps 3 ⊹,739539,Robert,Manhattan,SoHo,40.72317,-74.00245,Entire home/apt,171,2,5,2019-07-06,5,1,8 +35385949,Private room 25 min to Manhattan,263778743,Pavel,Brooklyn,Flatbush,40.64621,-73.96208,Private room,60,14,0,,,1,76 +35386161,Prime Williamsburg Bedroom For You,9208470,Erika,Brooklyn,Williamsburg,40.71257,-73.96326,Private room,66,1,4,2019-06-21,4,1,36 +35386373,Great private outdoor space near LES skate park,5971983,Nate,Manhattan,Two Bridges,40.71192,-73.99539,Private room,77,1,2,2019-06-23,2,1,161 +35386835,"Sunny and Spacious in East Village, Alphabet City.",4464764,Aaron,Manhattan,East Village,40.72952,-73.98229,Entire home/apt,125,3,2,2019-06-24,2,1,18 +35386912,Pink,261462340,Luis,Queens,Fresh Meadows,40.73979,-73.77752,Entire home/apt,50,1,1,2019-06-30,1,1,178 +35386935,"Gay friendly private room, 20 minutes to Manhattan",16950644,Bojan,Queens,Jackson Heights,40.75103,-73.8913,Private room,85,1,2,2019-07-07,2,1,42 +35386983,Big 3 Bedroom Apartment in Prime Midtown Manhatten,266398080,Endrit,Manhattan,Kips Bay,40.74535,-73.97753,Entire home/apt,349,1,4,2019-07-01,4,1,265 +35387029,Spectacular Room available in Luxury Soho Apt,212910330,Stephanie,Manhattan,SoHo,40.72273,-74.00352,Private room,400,4,2,2019-07-01,2,1,60 +35387629,The Crown Spacious Apartment,258374626,Beverley,Brooklyn,Crown Heights,40.66397,-73.93353,Entire home/apt,140,2,1,2019-07-07,1,1,87 +35388353,Brooklyn Brownstone Charm,1903663,Rachel,Brooklyn,Bedford-Stuyvesant,40.68805,-73.95954,Private room,125,3,1,2019-06-27,1,2,365 +35388899,Cool Summer Vibes UWS Pent House w/ rooftop,266417731,Charo,Manhattan,Upper West Side,40.78021,-73.98115,Entire home/apt,1200,3,0,,,1,51 +35388921,Stay good stay cheap in Manhattan,109231531,Sophia,Manhattan,Washington Heights,40.84274,-73.94219,Private room,90,1,0,,,2,179 +35389003,Live good live cheap in Manhattan,109231531,Sophia,Manhattan,Washington Heights,40.84414,-73.94099,Private room,90,1,0,,,2,179 +35389856,Spacious Studio ⭐in the heart of NYC,266413128,Dan,Manhattan,West Village,40.73194,-74.00369,Entire home/apt,220,2,3,2019-06-24,3,1,176 +35397690,Cozy 3 bedroom apt / Lower East Side,251918661,Alex,Manhattan,Chinatown,40.71678,-73.99492,Entire home/apt,400,4,3,2019-06-13,2.73,1,57 +35402354,The perfect 3BR apartment,115771987,Yuki,Manhattan,Financial District,40.70723,-74.01045,Entire home/apt,215,30,0,,,6,299 +35402920,Sun drenched apartment in the heart of Brooklyn,12276549,Carolin,Brooklyn,Crown Heights,40.67376,-73.95816,Entire home/apt,250,3,0,,,2,8 +35406064,perfect 2BR Apt near wall st,115771987,Yuki,Manhattan,Financial District,40.70678,-74.0091,Entire home/apt,170,30,0,,,6,221 +35406411,"Quiet, private room in Hell's Kitchen (Midtown)",28808740,Robert,Manhattan,Hell's Kitchen,40.76426,-73.98945,Private room,94,3,1,2019-07-02,1,2,20 +35406694,Spacious Duplex - Straight ride from JFK,5541374,Hassan And Patti,Brooklyn,Bushwick,40.68635,-73.91482,Private room,195,4,0,,,5,274 +35406921,2 BR apartment in the financial dis.,115771987,Yuki,Manhattan,Financial District,40.70569,-74.00974,Entire home/apt,175,30,0,,,6,317 +35407072,Brooklyn Apartment/ Guaranteed Perfect Stay,106168229,Daniel,Brooklyn,Crown Heights,40.67585,-73.91808,Private room,30,1,1,2019-06-06,0.88,1,34 +35408266,Harlem 1 bedroom in a 2bedrooms long stay only,266502082,Emmanuelle,Manhattan,Harlem,40.82521,-73.93811,Private room,40,30,0,,,1,6 +35408369,2 Family house in Brooklyn sleeps up to 23,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68624,-73.92109,Entire home/apt,400,2,0,,,3,226 +35408455,1 lovely bedroom in the heart of Midtown Manhattan,68832366,Guillaume,Manhattan,Midtown,40.76329,-73.97543,Private room,100,6,4,2019-06-30,4,1,191 +35408591,Stylish studio by Fulton station,107724585,Jessie,Manhattan,Civic Center,40.71232,-74.00689,Entire home/apt,185,30,0,,,2,58 +35409062,"FREE Private Parking, HOME AWAY FROM HOME",266505967,Dean,Bronx,Fordham,40.86066,-73.89883,Private room,149,1,0,,,1,363 +35409488,Modern 2 Bedroom Apartment East Village,266507520,Elizabeth,Manhattan,East Village,40.72699,-73.98576,Entire home/apt,226,2,3,2019-06-19,3,1,163 +35409565,Two Bedroom in 2 Family House in Brooklyn,256544529,Dem,Brooklyn,Bedford-Stuyvesant,40.68722,-73.91962,Entire home/apt,150,1,3,2019-07-07,3,3,312 +35410832,Kips Bay Manhattan 2 Bedroom Huge Apartment,265005813,Brandon,Manhattan,Kips Bay,40.74122,-73.98274,Entire home/apt,214,2,1,2019-06-20,1,1,185 +35411781,Prime Bed-Stuy Brownstone with Private Backyard,1922762,Caitlin,Brooklyn,Bedford-Stuyvesant,40.68197,-73.93618,Private room,45,2,1,2019-06-28,1,1,154 +35412521,Brand new artist 2 Bedroom lots of Natural light!,266519114,Joseph,Brooklyn,Bushwick,40.70241,-73.92744,Entire home/apt,177,30,2,2019-06-29,2,1,32 +35412871,2 Bedroom Apartment East Village Amazing Location,265183076,Molly,Manhattan,East Village,40.72697,-73.98373,Entire home/apt,250,2,4,2019-07-01,4,1,183 +35412877,Spacious Full Floor Loft near Hudson Yards,260267559,Anila,Manhattan,Midtown,40.75426,-73.98968,Entire home/apt,489,3,1,2019-06-25,1,1,259 +35413859,2 Bedroom Times Square/Central Park |LOCATION|,265487571,Sammie,Manhattan,Hell's Kitchen,40.75949,-73.99367,Entire home/apt,250,2,3,2019-07-06,3,1,190 +35413988,MidCentury Triplex near Times Square/Hells Kitchen,265439369,Yess,Manhattan,Hell's Kitchen,40.7592,-73.98894,Entire home/apt,650,3,3,2019-06-26,3,1,232 +35414687,Lower East Side 2 Bedroom Apartment,265598777,Ashley,Manhattan,Lower East Side,40.72016,-73.98968,Entire home/apt,250,2,5,2019-07-01,5,1,188 +35415121,Beautiful huge studio blocks from Central Park!,1453801,Simon,Manhattan,Hell's Kitchen,40.7682,-73.98598,Entire home/apt,150,30,0,,,1,66 +35415247,CRASH PAD IN NYC,21216008,Jose,Queens,Jackson Heights,40.75009,-73.87799,Shared room,30,1,3,2019-06-20,3,4,350 +35415489,2 Bedroom Apartment Amazing Location,265413630,Charlette,Manhattan,Gramercy,40.73265,-73.98435,Entire home/apt,250,2,4,2019-07-06,4,1,160 +35415829,2 BEDROOMS best Brooklyn area,176463632,Laura,Brooklyn,Greenpoint,40.72025,-73.94658,Entire home/apt,400,4,0,,,1,348 +35416249,AMAZING 3 BEDROOMS BROOKLYN,217803692,Shelby,Brooklyn,Greenpoint,40.72194,-73.94332,Entire home/apt,400,3,0,,,1,358 +35416343,2 BEDROOMS BROOKLYN BRAND NEW!,218260240,Katie,Brooklyn,Williamsburg,40.72047,-73.94504,Entire home/apt,350,3,2,2019-06-21,2,1,363 +35416507,Amazing 3 BEDROOMS Brooklyn,217807790,Jessica,Brooklyn,Williamsburg,40.71647,-73.94657,Entire home/apt,500,3,0,,,1,354 +35416674,Luxury 2BR/2Bath in Times SQ,252886317,Wanda,Manhattan,Theater District,40.75962,-73.98512,Entire home/apt,489,3,4,2019-07-02,4,1,167 +35416858,LUX Studio 10 mins to Central Park!!,189382679,Sasha,Manhattan,Harlem,40.81658,-73.938,Entire home/apt,78,2,1,2019-06-21,1,1,208 +35416869,Marie's Cottage,38363932,Marie,Queens,Briarwood,40.7143,-73.81834,Shared room,99,2,0,,,1,365 +35416914,Scandanavian Loft in Gramercy Park,102854098,Michael,Manhattan,Kips Bay,40.74052,-73.98188,Entire home/apt,450,3,1,2019-07-01,1,1,263 +35417083,A SWEET TASTE OF THE SUMMER IN BROOKLYN,229726240,Yenni,Brooklyn,Williamsburg,40.71518,-73.94146,Entire home/apt,300,3,0,,,1,359 +35417147,STUNNING 3 BEDROOMS DUPLEX,249973556,Adriana,Brooklyn,Williamsburg,40.71511,-73.96236,Entire home/apt,500,3,2,2019-06-15,2,1,332 +35417570,Cozy Boerum Hill,11437322,Andrea,Brooklyn,Boerum Hill,40.68752,-73.98549,Entire home/apt,200,4,0,,,1,45 +35417968,BROOKLYN 2 BEDROOMS,253493647,Karina,Brooklyn,Williamsburg,40.71962,-73.9605,Entire home/apt,500,3,1,2019-06-16,1,1,357 +35418634,"Cosy space,10mins from Manhattan!!",266561095,Vlada,Queens,Astoria,40.75566,-73.91742,Entire home/apt,85,1,1,2019-06-23,1,1,27 +35419046,"Bright, New & Quiet Bushwick Apt close subway L/J",539364,Vered,Brooklyn,Bushwick,40.68743,-73.91048,Entire home/apt,129,3,0,,,1,51 +35419996,Brand New 2BR in Times Square**WALK EVERYWHERE,225731818,Mengyuan,Manhattan,Theater District,40.75672,-73.98653,Entire home/apt,385,2,1,2019-06-23,1,1,28 +35420233,Room steps away from TIME SQUARE,263676349,Hanna,Manhattan,Hell's Kitchen,40.75711,-73.99674,Private room,119,3,1,2019-07-07,1,2,30 +35420277,World Trade Center NYC Loft,17215584,NoHo,Manhattan,Financial District,40.70886,-74.00885,Entire home/apt,189,3,2,2019-06-30,2,1,339 +35420482,"Chic, modern Studio with balcony access",17349726,Gillian,Brooklyn,Bushwick,40.69424,-73.92652,Entire home/apt,89,1,8,2019-07-03,7.50,1,88 +35422253,"Bright, sunlit modern place in trendy neighborhood",152518136,Linda,Queens,Ridgewood,40.70633,-73.91344,Private room,100,1,2,2019-06-23,2,1,63 +35422599,TRANQUIL HAVEN W/PRIVATE BATH-8 MINS TO JFK RM.#1,178272943,Sharon,Queens,Jamaica,40.67162,-73.77919,Private room,65,1,0,,,4,74 +35422824,The Skylight Suite in a Historic Brooklyn Mansion,5241234,Malika,Brooklyn,Crown Heights,40.67432,-73.94255,Entire home/apt,100,3,0,,,1,247 +35422845,Bright and cozy studio - separate kitchen in UES,266590338,Antonella,Manhattan,Upper East Side,40.77401,-73.94993,Entire home/apt,220,5,0,,,1,77 +35423325,Pretty 1 BDR Apt in Times SQ / Theater District,2534058,Fuda,Manhattan,Hell's Kitchen,40.76269,-73.98928,Entire home/apt,190,2,4,2019-07-03,4,1,29 +35424212,Amazing Getaway on The Upper East Side,266600351,Raquel,Manhattan,East Harlem,40.78658,-73.94989,Entire home/apt,200,4,0,,,1,121 +35424310,Speakeasy Vibes Above a Bar in Popular Bushwick,35244614,Mick,Brooklyn,Bushwick,40.70155,-73.92628,Entire home/apt,125,2,2,2019-07-01,2,1,7 +35424418,Sunny Northern Nook,23455550,Kyle,Manhattan,Inwood,40.86542,-73.92092,Entire home/apt,100,1,0,,,1,0 +35424717,"2Br Apartment in Soho - Enough said, right?!",9883499,Emily,Manhattan,SoHo,40.72358,-74.00397,Entire home/apt,230,1,1,2019-06-06,0.91,1,6 +35425001,"cute, quite, one bedroom Gramercy apartment",65960619,Andrea,Manhattan,Gramercy,40.73523,-73.98142,Entire home/apt,160,1,0,,,1,14 +35425032,Beautiful 2 Bedroom Apt Near Times Square,266601642,Liz,Manhattan,Hell's Kitchen,40.75431,-73.99459,Entire home/apt,185,3,1,2019-06-20,1,1,267 +35425034,Stylish studio by Fulton station,107724585,Jessie,Manhattan,Financial District,40.71035,-74.00734,Entire home/apt,185,30,0,,,2,346 +35425128,Luminous bedroom in Williamsburg,18549793,Charlotte,Brooklyn,Williamsburg,40.70985,-73.94462,Private room,80,2,1,2019-06-25,1,1,10 +35425429,Entire Floor 3Br/2Ba Times Sq Apt,231484830,Ernest & Carol,Manhattan,Theater District,40.76308,-73.98482,Entire home/apt,450,3,0,,,1,161 +35425436,World luxury,266609191,Yvette,Brooklyn,Bedford-Stuyvesant,40.68451,-73.92753,Private room,70,1,2,2019-06-15,2,1,161 +35425596,Trendy 3Bd City Apartment next to the Park! ❤️,266595097,Evelyn,Manhattan,East Village,40.72434,-73.98047,Entire home/apt,340,2,0,,,1,180 +35425638,Modern 2 BEDROOM PRIME Upper East Side APT.,27181542,Jt,Manhattan,Upper East Side,40.77474,-73.94943,Entire home/apt,249,30,0,,,1,325 +35425682,** Location~Location~Location in Time Square **,266477120,Mary,Manhattan,Hell's Kitchen,40.76125,-73.98848,Entire home/apt,120,3,2,2019-07-05,2,1,203 +35427155,"Very close to Subway, Jamaica Hosp, Airtrain, JFK",23217966,Sandra,Queens,Jamaica,40.70415,-73.81558,Private room,35,2,6,2019-06-27,6,2,38 +35428184,Private Room in Manhattan near Central Park,59392910,Tara,Manhattan,Upper East Side,40.76462,-73.95842,Private room,108,1,4,2019-07-07,4,1,113 +35428298,NYC Diamond New 5 star 2nd floor Loft 5beds 2baths,266627618,Charlene,Bronx,Wakefield,40.9026,-73.84806,Entire home/apt,288,2,0,,,1,346 +35428765,Very cosy apartment in uptown Manhattan,44452858,Taner,Manhattan,Inwood,40.86639,-73.92369,Entire home/apt,150,7,0,,,1,8 +35429053,1.5 Bedroom Penthouse with Private Garden & Office,6457972,James,Manhattan,Kips Bay,40.7409,-73.98085,Entire home/apt,199,2,0,,,1,49 +35430128,Upper West Side Sweet&Cozy STUDIO,266641882,Katie J,Manhattan,Upper West Side,40.79836,-73.96784,Entire home/apt,135,1,7,2019-06-28,7,1,94 +35430378,Enchanted room 5 mins from JFK/ LGA 15 mins away,266645207,Michael,Queens,Springfield Gardens,40.66206,-73.74962,Private room,75,1,0,,,2,180 +35430525,Stunning Apartment near Time Square,264817559,Claudio,Manhattan,Hell's Kitchen,40.76288,-73.9915,Entire home/apt,223,3,3,2019-07-03,3,1,25 +35431400,Wonderful 1 Bedroom Apartment (NYU CAMPUS),266651586,Mike,Manhattan,Greenwich Village,40.72812,-73.99963,Entire home/apt,150,30,0,,,1,180 +35431739,Cozy and nice apartment in Upper East Side,31043699,Nikki,Manhattan,Upper East Side,40.78037,-73.94657,Entire home/apt,120,5,1,2019-06-23,1,1,23 +35432326,Beautiful Luxury Studio on Wall St- Sleeps up to 4,63941116,Folami,Manhattan,Financial District,40.70606,-74.00899,Entire home/apt,199,1,3,2019-06-20,3,1,324 +35442636,The perfect summer NYC gem,266699294,Tiffany,Manhattan,East Harlem,40.79136,-73.93979,Entire home/apt,300,2,1,2019-06-24,1,1,365 +35446198,COMFORTABLE PRIVATE ROOM in Williamsburg,8119817,Mila,Brooklyn,Williamsburg,40.71601,-73.9413,Private room,80,1,1,2019-06-30,1,2,23 +35446948,Modern cozy stay,134378909,Roger,Brooklyn,Bedford-Stuyvesant,40.67846,-73.90803,Private room,60,3,0,,,1,9 +35447651,Bright Lusurious 2 BedRoom 3 BED Apartment in NY,266725339,Jake&Aden,Manhattan,Hell's Kitchen,40.76276,-73.9895,Entire home/apt,450,4,8,2019-06-21,8,1,66 +35447708,Amazing private room!!!near subway & Central Park2,266726110,Sergii,Manhattan,Harlem,40.80463,-73.95655,Private room,88,30,0,,,7,360 +35447709,Spacious private room near Columbia University 2,266726110,Sergii,Manhattan,Harlem,40.80348,-73.95671,Private room,89,30,0,,,7,360 +35448360,Oversized Studio in the Heart of Midtown,207897448,Thom,Manhattan,Midtown,40.7575,-73.9643,Entire home/apt,185,2,3,2019-06-26,3,1,43 +35448444,1BEAUTIFUL ROOM WITH AIR CONDITION SHEEPSHEAD BAY,102292061,Roman,Brooklyn,Sheepshead Bay,40.58625,-73.94591,Private room,50,1,8,2019-07-05,7.27,3,75 +35448514,Nice private room. Central Park. Near subway2,266726110,Sergii,Manhattan,Harlem,40.80485,-73.9581,Private room,88,30,0,,,7,364 +35448516,Modern designed room in Manhattan! near B/C train2,266726110,Sergii,Manhattan,Harlem,40.80494,-73.95588,Private room,89,30,2,2019-06-23,2,7,361 +35448841,"Bright, Airy, Downtown Oasis :)",5236664,Madeline,Manhattan,Lower East Side,40.71871,-73.99058,Entire home/apt,300,2,1,2019-07-02,1,1,284 +35451163,❤️$7 MILLION TOWNHOME--MINUTES TO TIMES SQUARE❤️,242405832,Sam,Manhattan,Harlem,40.82318,-73.94424,Entire home/apt,575,2,0,,,1,287 +35451608,3 BEDROOMS IN BROOKLYN,260447969,Eddie,Brooklyn,Greenpoint,40.72019,-73.94648,Entire home/apt,600,3,1,2019-06-23,1,1,351 +35451636,Newly renovated private room close to Central Park,266726110,Sergii,Manhattan,Harlem,40.80315,-73.95616,Private room,88,30,0,,,7,364 +35451637,Amazing private room near central park and subway2,266726110,Sergii,Manhattan,Harlem,40.80445,-73.9567,Private room,88,30,0,,,7,360 +35453591,Cozy Home Just Minutes From Midtown Manhattan,266754587,Mela,Queens,Long Island City,40.75734,-73.9324,Entire home/apt,225,2,1,2019-06-23,1,1,261 +35454095,Beautiful Townhouse - Center of NYC 4br/2ba,177188159,Anna + Brad,Manhattan,Upper East Side,40.76254,-73.96223,Entire home/apt,800,3,0,,,1,277 +35454285,"Sunny, spacious Brooklyn apt - solo woman only",17224232,Alva,Brooklyn,Flatbush,40.64635,-73.95474,Shared room,30,3,3,2019-07-07,3,1,46 +35454551,Spacious RM in Home w/Backyard/Balcony/Near Metro,23878336,Armando,Bronx,Fordham,40.86963,-73.89465,Private room,79,3,0,,,10,69 +35454756,Fully furnished APT located close to Manhattan,39275815,Sena,Queens,Long Island City,40.76435,-73.93537,Entire home/apt,220,5,1,2019-06-21,1,1,63 +35455445,Sunny Unit. New ! Quiet. Near the UN,266762890,Bel,Manhattan,Civic Center,40.71301,-74.00481,Entire home/apt,172,30,0,,,1,331 +35455986,Newly renovated 1 bedroom apartment!,63227531,Marwa,Staten Island,Randall Manor,40.62845,-74.12294,Entire home/apt,99,2,1,2019-06-20,1,2,342 +35456139,Charming Attic RM with Backyard/Porch/Near Metro,23878336,Armando,Bronx,Fordham,40.87085,-73.89318,Private room,58,3,0,,,10,75 +35456208,Spacious private room Central Park & Columbia2,266726110,Sergii,Manhattan,Harlem,40.80322,-73.95673,Private room,89,30,0,,,7,305 +35456322,Brand New Spacious 2 Bedroom Apt Near Times Square,266762041,Rivka,Manhattan,Hell's Kitchen,40.75259,-73.9942,Entire home/apt,220,1,3,2019-06-22,3,1,52 +35456622,4 Bedroom apartment in 2 family house in Brooklyn,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68919,-73.92553,Entire home/apt,190,1,3,2019-07-01,3,2,269 +35457028,Cozy Attic RM in Home w/Backyard/Patio/Near Metro,23878336,Armando,Bronx,Fordham,40.86947,-73.89389,Private room,55,3,0,,,10,86 +35457664,Cute Attic RM with Backyard/Patio/Near Metro,23878336,Armando,Bronx,Fordham,40.87066,-73.89317,Private room,55,3,0,,,10,89 +35458291,Geraldine's 1 BR APT 5 min from JFK,259207391,Pauline,Queens,Jamaica,40.67634,-73.79687,Private room,65,1,3,2019-07-02,3,3,357 +35458547,Charming Apartment a few steps from Soho!,266769677,Carme,Manhattan,Chinatown,40.71654,-73.99485,Entire home/apt,202,3,2,2019-07-06,2,1,215 +35458699,Cute house close to manhattan,257879526,Israel,Brooklyn,East Flatbush,40.65926,-73.93468,Private room,60,2,1,2019-07-07,1,2,343 +35459319,Luxury and Relaxation in Midtown East,266773830,Christopher,Manhattan,Kips Bay,40.74402,-73.97477,Entire home/apt,475,4,2,2019-07-01,2,1,157 +35459328,Best Views of Times Square,266780775,Margarita,Manhattan,Hell's Kitchen,40.76021,-73.99976,Entire home/apt,305,1,2,2019-06-19,2,1,133 +35459465,Spacious Private Room for 2ppl-Close to Manhattan,13954138,Clarissa,Brooklyn,Bushwick,40.6949,-73.91636,Private room,60,7,0,,,2,15 +35459480,Riverside Domino Park-LARGE 2 & a 1/2 :-) Bedroom,266774171,Gage,Brooklyn,Williamsburg,40.71334,-73.96717,Entire home/apt,262,2,5,2019-07-07,5,1,118 +35459559,Flushing - downtown,46672441,Vivian,Queens,Flushing,40.7488,-73.82191,Private room,70,3,0,,,1,90 +35459644,Fort Greene Duplex- Live and Work Space,1355112,Jean,Brooklyn,Clinton Hill,40.68875,-73.96725,Entire home/apt,300,5,0,,,2,209 +35460496,"1 room in the coolest neighborhood, good lighting",6291714,Ava,Manhattan,Little Italy,40.71703,-73.998,Private room,74,4,0,,,1,44 +35460630,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69757,-73.97557,Private room,48,30,0,,,25,347 +35460924,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69611,-73.97542,Private room,48,30,0,,,25,333 +35460949,Sweet Home,69683180,Shuhua,Manhattan,Hell's Kitchen,40.76198,-74.00033,Entire home/apt,200,1,0,,,1,3 +35461013,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69747,-73.97506,Private room,48,30,0,,,25,310 +35461095,Sunny Private BR Apt in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69632,-73.97396,Private room,48,30,0,,,25,68 +35461209,Freshly furnished private room - GREAT Location!,230192510,Zach,Brooklyn,Fort Greene,40.69696,-73.97496,Private room,48,30,0,,,25,219 +35461302,"Your Private Oasis In A Shared Apt, Near 3 Trains!",230192510,Zach,Brooklyn,Fort Greene,40.69698,-73.97412,Private room,48,30,0,,,25,340 +35461373,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69617,-73.97532,Private room,48,30,0,,,25,341 +35461466,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69749,-73.97551,Private room,48,30,0,,,25,257 +35461527,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69634,-73.97393,Private room,48,30,0,,,25,342 +35461620,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.6971,-73.97523,Private room,48,30,0,,,25,305 +35461700,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69774,-73.97502,Private room,48,30,0,,,25,341 +35461818,Zen East Williamsburg w/ yard,2428014,Kristen,Brooklyn,Williamsburg,40.7128,-73.94342,Entire home/apt,199,7,0,,,1,33 +35461822,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.974,Private room,48,30,0,,,25,67 +35461885,Stylish Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69768,-73.97564,Private room,48,30,0,,,25,337 +35461960,Artsy Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69633,-73.97361,Private room,48,30,0,,,25,334 +35462054,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69693,-73.97396,Private room,48,30,0,,,25,66 +35462128,Airy Private BR In Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69632,-73.97553,Private room,48,30,0,,,25,342 +35462273,Modern Private BR in Fort Greene Cumberland,230192510,Zach,Brooklyn,Fort Greene,40.69706,-73.97498,Private room,48,30,0,,,25,189 +35463373,"1BR Loft in Williamsburg, High Ceilings",17346516,John,Brooklyn,Williamsburg,40.71926,-73.96035,Entire home/apt,200,2,0,,,1,10 +35463466,Cozy Studio ⭐ Premium Location in the Village!,266800773,Ximena,Manhattan,Greenwich Village,40.72973,-74.00166,Entire home/apt,249,2,2,2019-06-30,2,1,177 +35463471,West 15th Street Cozy Chelsea 1bd Serviced Apt,22541573,Ken,Manhattan,West Village,40.74,-74.004,Entire home/apt,209,30,0,,,87,364 +35463686,"Rento mi sofá cama , en mi apartamento. Vivo solo",57201275,Jesús,Queens,Astoria,40.75942,-73.92601,Shared room,45,2,1,2019-06-22,1,1,84 +35463900,Large Full Floor Apartment in Heart of Times Sqr!!,253482129,Ilir,Manhattan,Hell's Kitchen,40.76437,-73.99184,Entire home/apt,210,2,1,2019-06-30,1,1,32 +35463996,Spacious Upper West Side Bedroom,19639667,Sara,Manhattan,Upper West Side,40.80092,-73.96195,Private room,100,1,0,,,1,293 +35464309,Historic Manhattan Home to make your stay special!,38458421,Jonalee,Manhattan,Kips Bay,40.74501,-73.97774,Entire home/apt,900,2,0,,,1,245 +35464315,Apartment with basement private entrance,14717052,Lora,Brooklyn,Greenpoint,40.72329,-73.93758,Entire home/apt,180,1,2,2019-06-30,2,1,365 +35464448,Modern Loft in Times Square/Hells Kitchen District,227805996,Jessie,Manhattan,Hell's Kitchen,40.75332,-73.99539,Entire home/apt,300,3,1,2019-06-28,1,1,53 +35464492,Cozy Nights In The Village,266818709,Nat,Manhattan,East Village,40.72175,-73.98259,Entire home/apt,400,3,3,2019-07-07,3,1,128 +35464510,Cozy super affordable room,259427246,Nelly,Brooklyn,Bedford-Stuyvesant,40.67813,-73.92904,Private room,38,5,1,2019-06-14,1,3,356 +35464594,Charming large 2 bedroom + 2 bath Ditmas park apt,29929166,Yvette,Brooklyn,Flatbush,40.62958,-73.96137,Entire home/apt,150,20,0,,,1,35 +35464662,BEAUTIFUL MADISON AVE STUDIO -- EXPERIENCED HOST!,25012594,Shane,Manhattan,Upper East Side,40.76801,-73.96896,Entire home/apt,140,2,2,2019-06-22,2,1,105 +35464719,Designer 1 Bedroom in Serviced Doorman Building,107987935,Tommy,Manhattan,Financial District,40.70701,-74.01007,Entire home/apt,175,30,0,,,1,311 +35464920,I have private bathrooms i have a lovely dresser,266823254,Temi,Queens,Bayswater,40.60825,-73.75695,Private room,60,1,0,,,1,342 +35464959,"1 bedroom, shared apartment/living.",266823933,Natalie,Bronx,Van Nest,40.8455,-73.86217,Private room,35,3,1,2019-06-17,1,1,342 +35465106,Explore NYC in Stylish Contemporary Studio,265666981,Lenny,Manhattan,Hell's Kitchen,40.76397,-73.99078,Entire home/apt,219,1,5,2019-07-01,5,1,173 +35465165,Design XL large one bedroom apartment in Chelsea,19593305,Cyril,Manhattan,Chelsea,40.74942,-74.00335,Private room,350,8,0,,,1,78 +35465343,BedStuyBeauty,266826469,Lisa,Brooklyn,Bedford-Stuyvesant,40.6815,-73.93408,Entire home/apt,85,28,0,,,1,74 +35465452,Mid-Century Modern near Madison Square Park,239758048,Shelly,Manhattan,Flatiron District,40.74055,-73.98522,Entire home/apt,450,3,3,2019-07-02,3,1,101 +35465579,Be happy in New York,194804585,Ines,Queens,Jackson Heights,40.75268,-73.88595,Private room,55,1,4,2019-06-27,4,2,308 +35465766,NYC Beach House with Yard.,6227706,Michael,Queens,Arverne,40.58817,-73.79914,Private room,99,3,1,2019-06-29,1,1,95 +35465967,Cozy room in the heart of SoHo,266829739,Peel,Manhattan,SoHo,40.72208,-74.00389,Private room,70,30,0,,,1,96 +35466184,Beautiful large master bedroom suite,266834909,Fred,Brooklyn,South Slope,40.66512,-73.99084,Private room,60,14,1,2019-07-08,1,1,26 +35466744,Riverdales finest!,105190318,Samuel,Bronx,Riverdale,40.88452,-73.91065,Entire home/apt,99,3,2,2019-06-12,2,1,52 +35466745,Elegant 2bdrm apt in the Center of NYC,265617965,Yan,Manhattan,Flatiron District,40.74032,-73.98801,Entire home/apt,300,3,4,2019-07-01,4,1,161 +35466749,Brand New One bedroom UpperEastSide,199466039,Sydney,Manhattan,Upper East Side,40.77664,-73.95481,Entire home/apt,349,1,0,,,3,346 +35466764,"Classic Williamsburg 2 bedroom loft, with rooftop!",50996583,Justin,Brooklyn,Williamsburg,40.71216,-73.9623,Entire home/apt,264,2,5,2019-06-30,5,1,327 +35466919,Astoria 2nd Floor,59553953,Sam,Queens,Long Island City,40.76117,-73.93038,Entire home/apt,149,4,0,,,1,39 +35467129,Gorgeous Luxury Studio!!,205510323,Dave,Manhattan,Hell's Kitchen,40.77044,-73.99126,Entire home/apt,220,3,0,,,1,29 +35467286,Beautiful studio basement in Bushwick,14763957,Giuliana,Brooklyn,Bushwick,40.70364,-73.92679,Private room,58,2,0,,,1,57 +35467615,I LOVE NYC STUDIO .,241985816,Carlos,Queens,Astoria,40.76842,-73.90633,Private room,100,1,2,2019-06-25,2,3,179 +35467651,AMAZING TWO BEDROOMS IN THE BEST PART OF BROOKLYN!,260445684,Giovany,Brooklyn,Williamsburg,40.70599,-73.94817,Entire home/apt,299,3,3,2019-07-07,3,1,195 +35467734,2 BEDROOM RIGHT IN THE MIDDLE OF MANHATTAN!!,266826700,Maria De La Encarnacion,Manhattan,Kips Bay,40.74399,-73.97753,Entire home/apt,299,3,2,2019-06-16,2,1,350 +35467947,Harmonious Bright Bedroom,4107600,Valentina,Brooklyn,Bushwick,40.70385,-73.91694,Private room,55,2,0,,,3,314 +35468220,Forest Hills Charming 1 bdrm apartment!,7599704,Sasha,Queens,Forest Hills,40.72085,-73.84088,Entire home/apt,75,1,0,,,1,7 +35468369,4BR/3BA Triplex w/ Patio (Empire State Building!),266364277,Emilia & Jonathan,Manhattan,Kips Bay,40.74337,-73.97726,Entire home/apt,850,3,0,,,1,19 +35468870,Sunny. Free Parking available on street.,266860944,Rohon,Queens,Rosedale,40.65792,-73.73945,Private room,44,7,1,2019-06-30,1,1,227 +35468906,Gorgeous 1BR Upper West Side *NEW LISTING *,266860871,Georgia,Manhattan,Upper West Side,40.787,-73.97237,Entire home/apt,200,2,1,2019-07-03,1,1,265 +35469069,La Guardia Aiport My Place 1,259289556,Emely,Queens,East Elmhurst,40.76227,-73.86451,Private room,49,1,1,2019-06-16,1,1,48 +35470543,"Brooklyn - Bushwick/ Pool, Gym, Sauna, Rooftop.",27668092,Aponte & Tat,Brooklyn,Bushwick,40.69339,-73.90647,Private room,60,3,1,2019-06-21,1,3,72 +35471285,gorgeous boho soho apartment!,52137386,Camille,Manhattan,Nolita,40.72087,-73.99647,Entire home/apt,203,2,0,,,1,88 +35474470,Cute Apartment steps from Time Square,264805208,Mariel,Manhattan,Hell's Kitchen,40.75765,-73.99247,Entire home/apt,211,3,4,2019-06-28,4,1,56 +35474830,Huge room in Brooklyn for rent,147228245,Evelyn,Brooklyn,Sunset Park,40.64658,-74.00986,Private room,38,10,0,,,1,67 +35475475,Beautiful place in❤️of Manhattan ⌚Times Square,266828407,Alex,Manhattan,Hell's Kitchen,40.76183,-73.98948,Entire home/apt,350,1,10,2019-06-28,10,1,163 +35477828,Spacious Modern Studio in Brooklyn Close to Subway,33861246,Ivo,Brooklyn,Bedford-Stuyvesant,40.68209,-73.91323,Entire home/apt,100,2,4,2019-07-05,4,1,64 +35479956,Airy and bright artist’s loft space in Fort Greene,602359,Mutale,Brooklyn,Fort Greene,40.6938,-73.97404,Entire home/apt,150,3,1,2019-06-16,1,2,107 +35480817,★★★Chic place in center of Manhattan★★★,266828681,Alex,Manhattan,Hell's Kitchen,40.75493,-73.99458,Entire home/apt,320,1,12,2019-07-02,12,1,189 +35481276,NIGHT CRAS PAD,153371127,Nancy,Queens,Jackson Heights,40.74908,-73.87961,Shared room,28,1,0,,,2,341 +35481361,Prospect Park Hostel- Male Long Term Stay-3,179478172,Elizabeth,Brooklyn,Flatbush,40.65175,-73.96208,Shared room,25,10,1,2019-06-15,1,3,299 +35481807,Male Shared room 1 bed in the bedroom long term,179478172,Elizabeth,Brooklyn,Flatbush,40.65022,-73.96281,Shared room,25,4,1,2019-06-26,1,3,334 +35481836,Duplex Residence with Breathtaking NYC View!,232557023,NuAve,Manhattan,Flatiron District,40.73942,-73.98648,Entire home/apt,1750,7,0,,,1,178 +35481930,Prospect Park Hostel- Male Long Term Stay-1,179478172,Elizabeth,Brooklyn,Flatbush,40.64946,-73.96041,Shared room,25,10,0,,,3,341 +35482322,⚡Quiet Home in Center of Village,266797970,Javi,Manhattan,Greenwich Village,40.72938,-73.99955,Entire home/apt,249,2,1,2019-06-24,1,1,146 +35482487,"Private studio and backyard, 12 mins drive to JFK",55450195,Francis,Brooklyn,Cypress Hills,40.68224,-73.86806,Entire home/apt,60,3,6,2019-07-08,6,1,21 +35482897,Great Flat in Chelsea:),117484717,Gerado,Manhattan,Chelsea,40.74637,-74.0002,Entire home/apt,240,3,2,2019-06-23,2,1,35 +35483304,"Chelsea Condo - Near Restaurants, Shops, & Trains!",74250362,Molly,Manhattan,Chelsea,40.74509,-73.99135,Entire home/apt,325,2,4,2019-06-28,4,1,197 +35483321,1 bedroom apt 35min away from the city.,254622508,Stephanie,Bronx,Kingsbridge,40.87256,-73.89978,Entire home/apt,95,1,4,2019-07-01,4,1,84 +35483911,Lux 2BR apt City View:),191009021,Matt,Manhattan,Upper West Side,40.77119,-73.98769,Entire home/apt,250,3,1,2019-06-20,1,1,14 +35484268,Best CoLiving next to Bushwick! 2,133802988,Sergii,Queens,Ridgewood,40.7046,-73.90215,Shared room,38,30,0,,,6,358 +35484401,Newly renovated shared room in great neighborhood2,248161322,Sergii,Brooklyn,Bushwick,40.7003,-73.9406,Shared room,35,30,0,,,14,320 +35484662,Cozy bedroom in Astoria next to subway,243367528,Lucca & Paula,Queens,Astoria,40.76599,-73.91225,Private room,100,1,9,2019-07-01,9,7,253 +35484875,Luxury apt with Statue of Liberty view,266966503,Nyc,Manhattan,Financial District,40.70629,-74.01535,Entire home/apt,200,1,1,2019-06-27,1,1,326 +35485080,GOOD VYBZ BROOKLYN,237729032,Samuel,Brooklyn,East New York,40.67807,-73.8794,Private room,60,3,0,,,2,365 +35485220,A Comfy room in 3-bedroom apartment,264296595,Hyunsung,Queens,Flushing,40.75811,-73.82504,Shared room,69,1,2,2019-06-23,2,3,355 +35485306,MODERN LOFT STUDIO IN CENTRE MANHATTAN (SLEEP 4)!,266800860,Marco,Manhattan,Murray Hill,40.74612,-73.97417,Entire home/apt,159,1,0,,,1,201 +35486014,Executive private room with full size bed-M train2,248161322,Sergii,Brooklyn,Bushwick,40.69935,-73.93889,Private room,63,30,0,,,14,311 +35486841,Amazing private room!!! near subway & Broadway2,248161322,Sergii,Brooklyn,Bushwick,40.70024,-73.9392,Private room,64,30,0,,,14,343 +35486871,The Hot Spot,208230311,Jordan,Manhattan,Washington Heights,40.83833,-73.94539,Private room,34,1,2,2019-06-21,2,1,278 +35487169,Lavish Private Room with Bathroom/Williamsburg2,248161322,Sergii,Brooklyn,Bushwick,40.70109,-73.93952,Private room,79,30,0,,,14,365 +35487203,Sweet-room,266983536,Nawa,Bronx,Longwood,40.82794,-73.90412,Private room,45,2,1,2019-06-24,1,1,364 +35487783,Lovely Private 1 bed + 1 bath in my shared duplex,15163034,Gonzalo,Manhattan,Upper East Side,40.77005,-73.95926,Entire home/apt,119,3,3,2019-07-02,3,1,174 +35487942,Artist apartment in the heart of two bridges,1616218,Liza,Manhattan,Lower East Side,40.7132,-73.99103,Entire home/apt,165,3,0,,,1,71 +35488159,Spread Love it's Brooklyn,242361272,Alicia,Brooklyn,East New York,40.66192,-73.88213,Entire home/apt,80,1,0,,,1,297 +35488376,Entire Apartment Near Times Square & Central Park,157430725,Fiona,Manhattan,Hell's Kitchen,40.76581,-73.98867,Entire home/apt,150,1,6,2019-07-01,6,3,222 +35489384,Cozy Apartment,236186921,Iveth,Staten Island,Tottenville,40.50641,-74.23059,Entire home/apt,75,1,1,2019-06-28,1,1,299 +35490477,"Rooms in the new hipster area of Brooklyn, NYC 1",266998393,Hector,Brooklyn,Bushwick,40.69424,-73.91847,Private room,35,3,0,,,3,275 +35490616,Williamsburg Oasis: 2BR with Washer-Dryer!,180966626,Jonathan,Brooklyn,Williamsburg,40.71336,-73.95914,Entire home/apt,259,2,4,2019-07-01,4,1,345 +35490736,Brownstone BK heaven,2954749,Anna,Brooklyn,Fort Greene,40.69216,-73.97455,Private room,100,30,0,,,1,64 +35490739,Times Square Studio -- Central location yet quiet,206222230,Neil,Manhattan,Theater District,40.7572,-73.98628,Entire home/apt,180,10,1,2019-06-13,1,1,17 +35490967,WEST VILLAGE Bohemian flat in neo-Tudor town house,27636707,Gaia&Pietro,Manhattan,West Village,40.73325,-74.00583,Entire home/apt,200,3,0,,,5,294 +35491013,Cozy Apartment Located in Midtown/Times Square,267009547,Jerry,Manhattan,Hell's Kitchen,40.7643,-73.9876,Entire home/apt,395,3,2,2019-07-07,2,1,152 +35491409,Sunny Spacious Room in UWS near Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80155,-73.96732,Private room,150,1,7,2019-07-07,7,3,135 +35491909,Glorious Garden Apt Getaway,267015745,MacKenzie,Brooklyn,East New York,40.67228,-73.89194,Entire home/apt,97,2,0,,,1,324 +35492112,"Spacious Bushwick 3BR, 2.5 Bath (Steps to Subway!)",266531875,Willy,Brooklyn,Bushwick,40.69403,-73.91991,Entire home/apt,475,2,3,2019-07-01,3,3,343 +35492191,Budget-Friendly 1 Bedroom 1 Bath near Wall St,71577601,Gensing,Manhattan,Financial District,40.70595,-74.00974,Entire home/apt,250,2,2,2019-06-21,2,1,335 +35492664,Modern Bushwick 2BR (15 Minutes to Manhattan!),266531875,Willy,Brooklyn,Bushwick,40.69222,-73.91971,Entire home/apt,200,2,2,2019-07-02,2,3,351 +35492876,"Spacious Bushwick 5BR, 3.5 BATH (Steps to Subway!)",266531875,Willy,Brooklyn,Bushwick,40.69383,-73.91878,Entire home/apt,650,2,1,2019-06-16,1,3,338 +35493162,Luxury Apartment in Amazing Williamsburg! Sleeps 7,259662705,Elay,Brooklyn,Williamsburg,40.71324,-73.94271,Entire home/apt,184,3,1,2019-06-11,1,1,217 +35493691,Apartment for rent in Spanish Harlem,16334409,Lisa,Manhattan,East Harlem,40.79495,-73.93335,Entire home/apt,89,24,0,,,2,36 +35493937,"1 bdrm condo/ rooftop pool, jacuzzi, water views!",10811427,David,Manhattan,Murray Hill,40.74536,-73.97222,Entire home/apt,189,2,1,2019-06-23,1,1,69 +35494744,37th Floor Apt w/ Views in Prime Brooklyn Location,11814933,Puja,Brooklyn,Fort Greene,40.69171,-73.98145,Entire home/apt,198,2,2,2019-07-05,2,1,11 +35495374,"Bedroom in Hell’s Kitchen, Queen sized.",42761912,Dale,Manhattan,Hell's Kitchen,40.76333,-73.99141,Private room,125,1,0,,,1,207 +35495582,★ AMAZING★ TIME SQUARE/ 2 Bedroom 3 Bed Apartment,266992480,Sam,Manhattan,Hell's Kitchen,40.76573,-73.98897,Entire home/apt,500,3,14,2019-07-07,14,2,45 +35496484,Sophisticated Midtown/Hell's Kitchen Apartment,267046022,Jacquelyn,Manhattan,Hell's Kitchen,40.76369,-73.991,Entire home/apt,275,4,0,,,1,59 +35496676,Cozy Private Bedroom in Upper West Side,266522456,Aaron,Manhattan,Upper West Side,40.8014,-73.96563,Private room,130,1,9,2019-07-07,9,3,79 +35496813,"Malls, Resturants, Parks, Beaches, Musems, Gyms",224558991,Gerry Elizabeth,Brooklyn,East New York,40.65681,-73.87854,Private room,31,1,0,,,1,105 +35496842,"Private, cozy, comfortable, it feels like home",127836236,Segun,Bronx,Williamsbridge,40.88125,-73.84922,Entire home/apt,85,1,6,2019-07-04,6,1,362 +35497728,"Upper West, cozy and clean appartment",24587566,Kasia,Manhattan,Washington Heights,40.85681,-73.92655,Private room,50,1,0,,,1,87 +35497792,Chelsea room near Highline,267068278,Sara,Manhattan,Chelsea,40.74704,-74.00239,Private room,105,1,1,2019-06-30,1,1,21 +35499352,A luxury Bronx living,170071460,Inas,Bronx,Kingsbridge,40.88531,-73.90008,Private room,100,3,0,,,1,88 +35505287,Large and Quiet Home with Nice Cats,267113508,Matilde,Manhattan,Upper West Side,40.80069,-73.96431,Shared room,300,7,0,,,1,39 +35507112,Lovely Park Slope House with Beautiful Garden,15131634,Rebecca,Brooklyn,South Slope,40.66731,-73.98547,Entire home/apt,275,5,0,,,1,9 +35507424,Spacious 1 Bedroom in the heart of Chelsea,229706010,Tony,Manhattan,Chelsea,40.7428,-73.9956,Entire home/apt,290,2,1,2019-06-14,1,1,25 +35507713,Beautiful Ground Floor Upper East Side Apartment,80164857,Nicole,Manhattan,Upper East Side,40.76453,-73.95867,Entire home/apt,160,4,1,2019-06-17,1,1,243 +35507844,Art and Adventure Steps from Central Park,1237426,Corder,Manhattan,Hell's Kitchen,40.7665,-73.98578,Entire home/apt,178,3,2,2019-06-28,2,1,22 +35507981,Experience the Passion of Hospitality,267033835,Eva,Brooklyn,East New York,40.66302,-73.86082,Entire home/apt,60,3,1,2019-06-17,1,1,94 +35508218,Garden Flat,155137506,Dandey,Queens,Laurelton,40.68129,-73.74745,Entire home/apt,85,1,8,2019-07-06,8,1,166 +35508864,Architect Designed Industrial Oasis in Greenpoint,3830566,Tom,Brooklyn,Greenpoint,40.72105,-73.93933,Entire home/apt,200,1,2,2019-06-13,2,1,316 +35509087,A sunny room within a catering studio’s loft space,602359,Mutale,Brooklyn,Fort Greene,40.69235,-73.97369,Private room,95,2,2,2019-06-26,2,2,164 +35509152,"Charming 1BR apt, Penn Station:)",192505058,Celine,Manhattan,Chelsea,40.75117,-73.99783,Entire home/apt,220,3,2,2019-07-02,2,1,54 +35509472,Master Room in FiDi - Private Bathroom,267144101,Olivia,Manhattan,Financial District,40.70612,-74.00464,Private room,145,1,0,,,2,83 +35510673,Clean Cozy Home,256502464,Paul,Manhattan,Harlem,40.82817,-73.94598,Private room,55,1,1,2019-06-23,1,3,35 +35510795,"离缅街步行9分钟的电梯独立房间,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76316,-73.82337,Private room,99,1,4,2019-07-06,4,6,364 +35510968,Cute & Cozy studio in Prospect Park,54332560,Jacqueline,Brooklyn,Park Slope,40.66993,-73.97709,Entire home/apt,97,11,0,,,1,25 +35512005,Hotel like stay in beautiful Brooklyn,742949,Adam,Brooklyn,Prospect Heights,40.67977,-73.96882,Entire home/apt,249,3,1,2019-07-06,1,1,89 +35512438,Private Room in Ground Floor Apt w/Backyard access,13678557,Eb,Manhattan,East Harlem,40.80857,-73.93951,Private room,90,1,0,,,1,102 +35512965,Quiet Cozy Clean Home,256502464,Paul,Manhattan,Harlem,40.82784,-73.94559,Private room,55,1,0,,,3,21 +35513883,Cozy room in Brooklyn,204915695,Jian,Brooklyn,Sunset Park,40.63851,-74.00843,Private room,50,3,0,,,2,158 +35515382,Extra Large Posh Prime Soho Apartment 1 Bedroom,62001,Rany,Manhattan,SoHo,40.72438,-74.00114,Entire home/apt,249,3,0,,,1,176 +35515415,COZY APT CLOSE TO LGA & JFK AND TRANSPORTATION,267193767,Jenny,Queens,East Elmhurst,40.75558,-73.89316,Entire home/apt,200,2,4,2019-07-05,4,1,365 +35515733,"Family-Friendly 3BR Luxury in Tribeca, (1900 sqft)",2116342,David,Manhattan,Civic Center,40.71625,-74.00316,Entire home/apt,950,3,0,,,1,69 +35515780,30-min to Manhattan Quiet Big House in Great Neck,31859704,Vincent,Queens,Little Neck,40.77444,-73.73373,Entire home/apt,149,3,0,,,1,3 +35515910,Perfect location in Soho!,19407918,Jamie,Manhattan,SoHo,40.72367,-74.00229,Entire home/apt,180,4,0,,,1,5 +35516587,3 bedroom house on a beach & 50 min to Manhattan,153561136,Irene,Staten Island,New Dorp Beach,40.56153,-74.10047,Entire home/apt,109,5,0,,,1,46 +35516704,SUPER BRIGHT & SPACIOUS BROOKLYN GEM,81127692,Rauf,Brooklyn,Flatbush,40.64434,-73.95288,Private room,50,3,0,,,2,311 +35517557,2 NICE ROMANTIC ROOM WITH AIR CONDITION BROOKLYN,102292061,Roman,Brooklyn,Sheepshead Bay,40.58567,-73.94501,Private room,50,1,6,2019-07-04,6,3,83 +35518055,Modern room in the heart of Brooklyn,26071530,Olman,Brooklyn,Crown Heights,40.67711,-73.95,Private room,100,2,0,,,2,20 +35518708,EMPIRE STATE BUILDING,241985816,Carlos,Queens,Astoria,40.76822,-73.90783,Private room,85,1,1,2019-06-17,1,3,60 +35518765,Nolita Gem 2 bedroom One bath,11134859,Anthony,Manhattan,Nolita,40.72037,-73.99454,Entire home/apt,179,2,0,,,1,311 +35518805,FLATBUSH PLACE TO STAY AND GO attractions nearby,267223765,Jarmel,Brooklyn,Flatbush,40.64685,-73.96102,Private room,50,1,3,2019-06-26,3,3,348 +35519038,3 Bedroom house in 2 family house.,266749340,Venessa,Brooklyn,Bedford-Stuyvesant,40.68971,-73.92527,Entire home/apt,190,1,1,2019-06-16,1,2,311 +35519175,Brooklyn’s Delight nearJFK & LGA,16608415,Smidty,Brooklyn,East New York,40.66524,-73.89052,Private room,120,1,0,,,3,103 +35520115,"Kew Gardens/Flushing ""Pet Friendly"" avail Fr 6/13",266779292,Eileen,Queens,Kew Gardens Hills,40.71913,-73.816,Private room,90,1,2,2019-06-30,2,1,90 +35520176,New Luxury Manhattan Apartment,217625111,Sonja,Manhattan,Harlem,40.80621,-73.94877,Entire home/apt,750,3,0,,,1,13 +35520479,Charming Moroccan style Rooms on Upper West Side,260895286,Hajar,Manhattan,Upper West Side,40.78642,-73.97723,Private room,90,3,0,,,2,112 +35520721,A Treasure by The Water,26543881,Walt & Daisy,Queens,Rockaway Beach,40.58447,-73.81704,Entire home/apt,200,3,2,2019-06-30,2,1,261 +35521170,Small cozy bedroom in the heart of Manhattan.,254015746,Niki,Manhattan,Midtown,40.7459,-73.98663,Private room,280,2,1,2019-06-15,1,1,363 +35521820,Bright & beautiful loft - heart of Williamsburg!,10160373,Mj,Brooklyn,Williamsburg,40.71144,-73.96488,Entire home/apt,200,2,0,,,1,4 +35521916,Beautiful One Bedroom with Huge Private Terrace,180754298,Bowen,Brooklyn,Williamsburg,40.71431,-73.9532,Entire home/apt,130,2,1,2019-06-23,1,1,13 +35522281,"Kajou1, 100% privacy, 100% independent.",185199487,Ralph,Brooklyn,Clinton Hill,40.68965,-73.96742,Private room,65,6,1,2019-06-22,1,1,19 +35522357,Bright Bohemian Gem in the Lower East Side,13483820,Marc,Manhattan,Chinatown,40.71496,-73.99063,Entire home/apt,120,1,0,,,1,160 +35522946,Stylish 1BR by East River,18550483,Emily,Manhattan,Murray Hill,40.744,-73.97364,Entire home/apt,197,30,0,,,1,158 +35524274,Master Room 315-B,267272502,Orfelina,Bronx,Claremont Village,40.84308,-73.90652,Private room,67,3,0,,,2,113 +35526392,Charming 1.5 Bed Apartment Upper East Side,129443696,Andrea,Manhattan,Upper East Side,40.7739,-73.94803,Entire home/apt,250,7,0,,,1,44 +35531168,NEW Bedroom w/Private Toilet (Great Study Space),7167290,Rasheda,Brooklyn,Midwood,40.62382,-73.94683,Private room,35,30,0,,,1,44 +35533434,Upscale Deluxe Queen Hotel Room in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.7207,-74.00034,Private room,100,1,0,,,4,353 +35533850,Your Own Private Hideaway Junior Suite in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72109,-73.99972,Private room,100,1,0,,,4,350 +35533939,Private Deluxe Queen Room with Patio View in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72085,-73.99966,Private room,100,1,0,,,4,352 +35534087,Your own Penthouse with Private Terrace in Soho!,264478123,The Broome Hotel,Manhattan,SoHo,40.72254,-73.99985,Private room,100,1,0,,,4,293 +35535750,New Gorgeous 2 BED apt Lower East Side,264752722,Anna,Manhattan,Lower East Side,40.72232,-73.99256,Entire home/apt,350,4,3,2019-07-01,3,1,129 +35535989,Peace home in Bedford Stuyvesant Brooklyn,107085019,Azuri,Brooklyn,Bedford-Stuyvesant,40.68557,-73.93023,Private room,65,3,1,2019-06-11,1,1,348 +35536266,Private quiet studio,107716952,Michael,Queens,Jamaica,40.69128,-73.80864,Entire home/apt,50,1,4,2019-07-04,4,2,119 +35536969,Lofty spacious sun drenched home,40275,Yael,Brooklyn,Bedford-Stuyvesant,40.69312,-73.96051,Entire home/apt,250,2,1,2019-06-16,1,1,66 +35539005,Private room in a clean two bedroom apartment,266117120,Adedayo,Brooklyn,Brownsville,40.65944,-73.91489,Private room,55,1,0,,,1,86 +35539036,Two-Bedroom Apartment in Meatpacking District,262501312,Micah,Manhattan,Chelsea,40.74441,-74.00765,Entire home/apt,299,2,0,,,1,74 +35539920,#1 Hotel-Like Private Room King Bed Near JFK,263504959,David,Queens,Woodhaven,40.69158,-73.86578,Private room,50,1,6,2019-07-06,6,8,273 +35540614,"Central Park Area Luxury Condo, BEST CITY VIEW",182505049,Trinity,Manhattan,Upper West Side,40.77122,-73.99111,Entire home/apt,499,3,0,,,1,34 +35540673,Beautiful Sunny & Bright Brooklyn Apartment.,119908176,Claudia,Brooklyn,Bedford-Stuyvesant,40.68603,-73.92006,Entire home/apt,120,3,1,2019-06-29,1,1,9 +35540740,Private Single Room 4 min walk to subway,175771113,Victoria,Brooklyn,East Flatbush,40.64575,-73.94654,Private room,36,15,1,2019-06-22,1,1,46 +35540762,驿站,239139334,Fang,Queens,Bayside,40.76883,-73.78707,Private room,49,1,4,2019-07-08,4,3,345 +35541835,Lower East Side Gem - Perfect location,65346107,Jonathan,Manhattan,Lower East Side,40.72076,-73.9885,Entire home/apt,170,5,1,2019-06-14,1,1,4 +35542412,Private Patio Williamsburg 2BD/2BA Next to Subway!,267396936,Amy,Brooklyn,Williamsburg,40.71418,-73.93837,Entire home/apt,465,3,3,2019-07-02,3,1,250 +35542686,"Quaint cozy room in Flushing Queens, in big apt",24423571,Ronny,Queens,Flushing,40.75283,-73.82561,Private room,46,1,1,2019-06-23,1,1,365 +35542830,North Williamsburg Retreat,1646818,Sara,Brooklyn,Williamsburg,40.71884,-73.9502,Entire home/apt,120,30,1,2019-07-06,1,1,286 +35543031,Amazingly lit with views over entire manhattan.,4602926,Michael,Brooklyn,Clinton Hill,40.69325,-73.96732,Entire home/apt,175,2,0,,,1,6 +35543132,1 Bedroom Park Slope Apartment w/ Private Patio,35299064,Rachel,Brooklyn,Park Slope,40.67606,-73.98251,Entire home/apt,150,3,0,,,1,232 +35543291,Room for rent for 2 Free parking pets welcomed,267414692,Carlos,Queens,Flushing,40.75932,-73.79859,Private room,70,1,2,2019-06-30,2,1,365 +35543560,Sun filled 1br in the heart of Bushwick,13500337,Ian,Brooklyn,East New York,40.6666,-73.89112,Private room,55,2,0,,,2,179 +35545031,Clean and cozy,85400172,Joy,Brooklyn,Crown Heights,40.6752,-73.94851,Private room,95,3,1,2019-06-30,1,2,360 +35545082,"Subway 1 min , Manhattan 10 min. Modern & Cozy",253571094,Jesus,Queens,Astoria,40.75809,-73.91271,Private room,50,2,3,2019-07-01,3,2,330 +35545626,Large quite apartment across from beautiful park,7271522,Mordechai,Manhattan,Morningside Heights,40.80695,-73.9654,Entire home/apt,250,7,0,,,1,10 +35546298,★Official & Only 6★Star Airbnb w/ TempurPedic Bed,52062343,Ronald,Bronx,Bronxdale,40.856,-73.86705,Shared room,57,1,4,2019-06-30,4,1,340 +35546352,"Zen-Oasis, Entire Apartment Only 8 min from JFK!!",103336088,Tiyanna,Queens,Jamaica,40.6748,-73.79242,Entire home/apt,85,1,5,2019-07-07,5,1,62 +35546843,Náser's on Lexington Ave 3bds /2ba,7309232,London,Manhattan,East Harlem,40.80391,-73.9361,Entire home/apt,300,3,1,2019-07-01,1,3,302 +35547124,Cozy room in family home near subway,173794097,Jessica,Queens,Jackson Heights,40.75304,-73.87661,Private room,40,2,2,2019-06-21,2,1,3 +35547909,舒适单人房(Comfort single room),257683179,H Ai,Queens,Flushing,40.76135,-73.80724,Private room,35,1,0,,,6,7 +35548551,"Bright, Clean and Spacious 2 bdrm top floor!",11397354,Regine,Brooklyn,Flatbush,40.64225,-73.96425,Entire home/apt,89,2,1,2019-06-27,1,1,4 +35548672,Private room in the heart of the Heights,210800401,Jasmine,Manhattan,Washington Heights,40.84655,-73.93332,Private room,60,3,0,,,2,81 +35548721,Elissa's Private Room/clean/quiet,119155499,Julio,Brooklyn,Bushwick,40.69405,-73.92642,Private room,49,5,0,,,4,134 +35549378,A dreamy stay,267476000,Xanthi,Manhattan,Hell's Kitchen,40.76369,-73.98891,Private room,100,1,0,,,1,167 +35558366,"离缅街步行9分钟的电梯单间,提供免费矿泉水可乐",151810361,Jungyen,Queens,Flushing,40.76313,-73.8234,Private room,99,1,4,2019-07-01,4,6,365 +35561531,"Spacious and bright room, with easy commute in nyc",6048765,Raz,Manhattan,Harlem,40.81868,-73.93937,Private room,67,3,0,,,2,88 +35563249,Perfectly Located Apartment in Gramercy,46094733,Mafer,Manhattan,Flatiron District,40.73975,-73.98511,Entire home/apt,100,2,3,2019-06-27,3,1,6 +35563781,"FLATBUSH PLACE TO COME AND GO +1 out of 2 listing",267223765,Jarmel,Brooklyn,Flatbush,40.64936,-73.96061,Private room,50,1,2,2019-07-01,2,3,342 +35564919,"King bed, doorman, mod, new & pristine in Brooklyn",4344188,Joseph,Brooklyn,Bushwick,40.70013,-73.93502,Entire home/apt,159,4,2,2019-07-02,2,1,28 +35565108,Beautiful New Entire Parkview 3bed 2.5bath,257647514,Juhyun,Brooklyn,Bushwick,40.69175,-73.90932,Entire home/apt,250,2,1,2019-06-26,1,2,9 +35565616,West Village Sanctuary,72674364,Leslie,Manhattan,West Village,40.73234,-74.00543,Entire home/apt,240,1,1,2019-06-22,1,1,75 +35566070,Small One Bedroom in Manhattan,5665090,Silvia,Manhattan,Upper East Side,40.77842,-73.95026,Entire home/apt,135,3,1,2019-07-01,1,1,15 +35566162,Cozy one bedroom apartment in the Bronx,185355022,Vivi,Bronx,Concourse,40.8315,-73.92277,Entire home/apt,60,3,1,2019-06-22,1,1,20 +35567048,Entire 3 bedroom apartment in beautiful Harlem,18042477,Madeline,Manhattan,Washington Heights,40.83329,-73.94056,Entire home/apt,160,14,0,,,1,59 +35567269,Private Studio Upper East Side,60117043,Ray,Manhattan,Upper East Side,40.76209,-73.96181,Entire home/apt,125,5,0,,,1,58 +35567504,Private room in big house in Bushwick,13064420,Nicolás,Brooklyn,Bushwick,40.69014,-73.91531,Private room,50,7,0,,,1,6 +35568112,Perfect Large Apt for your NYC Stay!,247094998,Bennett,Manhattan,Upper West Side,40.77719,-73.98312,Entire home/apt,800,2,0,,,1,225 +35569130,Spacious Room_2,265057419,Dameon,Brooklyn,East New York,40.67072,-73.86947,Private room,68,3,0,,,2,363 +35569189,Bright & Cozy Studio next to Columbia University,265156761,Demir,Manhattan,Harlem,40.80434,-73.95515,Entire home/apt,165,3,2,2019-07-07,2,1,207 +35569456,"2 BR Modern Apt, Extra Lofted Bed, BK Heights",267621090,Shameika,Brooklyn,Brooklyn Heights,40.69934,-73.99635,Entire home/apt,600,3,4,2019-07-06,4,1,323 +35569459,Luxury Full Floor SoHo Loft | 3 Bed/2 Bath,163029687,Anna + Jason,Manhattan,SoHo,40.72434,-73.99945,Entire home/apt,900,3,1,2019-07-06,1,1,292 +35569626,Giant One-Bedroom In Heart Of Historic Area,245166170,Meg,Brooklyn,Flatbush,40.642,-73.95979,Entire home/apt,80,1,0,,,1,12 +35570396,Big Room (up to 3 people),166984137,Piergiorgio,Manhattan,Harlem,40.8129,-73.94391,Private room,90,5,0,,,1,193 +35570498,Stunning Midtown Apt near U.N. and Central Park,267627839,Hagar,Manhattan,Midtown,40.75563,-73.96621,Entire home/apt,175,28,0,,,1,340 +35570515,Unique Furnished Apt in UES Mansion Off 5th,265662009,Maria,Manhattan,Upper East Side,40.77065,-73.96675,Entire home/apt,180,7,0,,,3,270 +35570674,Quiet Apartment for Large Groups,49658508,Kate,Manhattan,Kips Bay,40.74244,-73.97872,Entire home/apt,600,2,1,2019-07-02,1,1,226 +35570995,Clean warm.peaceful.joyful.respectful,231378604,S.,Manhattan,East Harlem,40.78986,-73.94783,Private room,65,14,0,,,1,319 +35571189,Comfy Apt - heart of Williamsburg. 10min to city,16963619,Sebastian,Brooklyn,Williamsburg,40.71139,-73.96208,Entire home/apt,139,2,0,,,1,134 +35572261,"20 minutes to Manhattan, spacious apt in Ridgewood",267405973,Peter,Queens,Ridgewood,40.70126,-73.90292,Entire home/apt,110,20,0,,,2,161 +35572377,Spacious shared room in modern Bed-Stuy 2,159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69483,-73.94059,Shared room,32,30,0,,,10,324 +35572559,Small Room in FiDi,267144101,Olivia,Manhattan,Financial District,40.70737,-74.00622,Private room,145,1,0,,,2,35 +35573040,Summer sublet in south slope,16354887,Sonya,Brooklyn,Sunset Park,40.66154,-73.99158,Entire home/apt,109,9,0,,,1,16 +35573043,"TIMES SQUARE! Minutes Away, Studio Apartment",257348210,J,Manhattan,Midtown,40.75372,-73.97232,Entire home/apt,350,3,0,,,1,51 +35573815,Private Single Room in UWS near to Central Park,266522456,Aaron,Manhattan,Upper West Side,40.80102,-73.96669,Private room,60,1,3,2019-07-02,3,3,130 +35573971,The Garden Apartment,60541281,Ebony,Brooklyn,Crown Heights,40.67037,-73.92764,Entire home/apt,95,4,2,2019-07-05,2,1,84 +35574349,SoHo SoHo SoHo,159112181,Zachary And Ashley,Manhattan,SoHo,40.72683,-74.00222,Entire home/apt,275,1,1,2019-07-01,1,1,308 +35575060,Brand New Modern 3 Bedroom Greenpoint apartment!,267632589,Jon,Brooklyn,Greenpoint,40.72775,-73.94944,Entire home/apt,187,3,1,2019-06-15,1,1,256 +35575853,"Great view, 1 BR right next to Central Park!",35965489,Meygan,Manhattan,East Harlem,40.79755,-73.94797,Private room,100,2,0,,,1,7 +35575867,Modern & Charming Lower East Side Apartment,74819532,Julie,Manhattan,Lower East Side,40.71982,-73.98849,Entire home/apt,250,2,0,,,1,170 +35575973,Luxury Building one stop from midtown Manhattan !!,265422938,泽宇,Queens,Long Island City,40.74887,-73.93829,Private room,149,2,0,,,2,53 +35576264,"Spacious private room, subway on same block",50278442,Francesco,Manhattan,Morningside Heights,40.80478,-73.96665,Private room,70,30,0,,,3,225 +35576552,Private Room For The Night,155529225,Alejandro,Queens,Corona,40.74415,-73.86545,Private room,80,1,0,,,1,365 +35576863,JAVITS Beautiful Stay for your NYC Vacation *****,83819376,Ryan & Mary,Manhattan,Hell's Kitchen,40.75438,-73.99378,Entire home/apt,843,1,4,2019-07-04,4,1,358 +35577620,Large Crownheights Apartment Sublet,21400616,LeKethia,Brooklyn,Crown Heights,40.67718,-73.93524,Entire home/apt,67,1,0,,,2,300 +35577642,Luxury building close to Yankees stadium,265153176,Jose,Bronx,Morris Heights,40.84631,-73.91641,Entire home/apt,150,1,3,2019-07-05,3,1,65 +35577716,Cozy & Super Clean 2 Bedrooms Private,83132880,Alyandry,Queens,Maspeth,40.73877,-73.8946,Private room,129,2,0,,,4,316 +35577810,Francesco’s Manhattan Bedroom w/Private Bathroom,50278442,Francesco,Manhattan,Morningside Heights,40.80482,-73.96493,Private room,70,30,0,,,3,339 +35577860,Convenient Center of Times Square 3 Bedroom Apt!!!,2196491,Sophia,Manhattan,Theater District,40.75692,-73.98373,Entire home/apt,140,30,0,,,3,116 +35577986,Cozy Brooklyn bedroom close to Manhattan et al,73066515,Nick,Brooklyn,Bedford-Stuyvesant,40.69463,-73.94546,Private room,46,3,1,2019-06-19,1,3,81 +35578345,CLEAN CHIC CHELSEA NYC,146603340,Maria & Tom,Manhattan,Chelsea,40.74783,-73.99978,Entire home/apt,213,1,1,2019-07-08,1,1,336 +35578522,"Huge, private bedroom next to train and PARK!",1394543,Jennifer,Brooklyn,Flatbush,40.6524,-73.96314,Private room,59,1,1,2019-07-02,1,2,24 +35578616,Bayridge Brooklyn NYC!Beautiful Space,258880426,Kheira,Brooklyn,Bay Ridge,40.63646,-74.02396,Private room,65,3,0,,,1,327 +35578766,"Comfort, Safety, Style, Right by L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.70545,-73.93273,Private room,75,3,3,2019-06-30,3,3,13 +35578913,Luxury Studio-Wall Street Awesome View & King Bed,267678892,Sang,Manhattan,Financial District,40.7061,-74.00936,Entire home/apt,225,1,1,2019-06-20,1,1,82 +35579143,"Eastnest, amazing couch for your stay.",26364534,Mauricio,Manhattan,Upper East Side,40.76418,-73.9555,Shared room,66,1,1,2019-07-05,1,1,70 +35579436,The Artist's Loft,194369832,Adam,Manhattan,East Village,40.72347,-73.97792,Entire home/apt,200,2,1,2019-06-26,1,1,43 +35579504,Sunny 4 br 2 bath duplex in the heart of Manhattan,267698769,Chase,Manhattan,Midtown,40.74512,-73.98212,Entire home/apt,395,1,4,2019-06-29,4,1,296 +35579856,Time square Hell’s Kitchen 2bedroom,245518352,John,Manhattan,Hell's Kitchen,40.76135,-73.99343,Entire home/apt,400,3,0,,,1,161 +35580305,Beautiful studio loft on Wall St for 4,267702003,Tracie,Manhattan,Financial District,40.70517,-74.00907,Entire home/apt,215,1,4,2019-06-23,4,1,246 +35580335,Modern townhouse convenient to everything,3562596,Sheethal,Brooklyn,Boerum Hill,40.68615,-73.98056,Entire home/apt,500,3,0,,,1,28 +35580805,"Private, Cozy, Safe, Two Blocks from L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.70519,-73.93418,Private room,75,3,1,2019-06-17,1,3,13 +35581246,"Minimal, Private Loft Two Blocks from L Train",893308,Simrit Atma,Brooklyn,Williamsburg,40.7055,-73.93437,Entire home/apt,145,5,1,2019-06-11,1,3,17 +35581315,7minutesSubway. Maimonides&IndustryCity,163625145,Steven,Brooklyn,Borough Park,40.64265,-73.99138,Private room,46,2,1,2019-06-22,1,3,163 +35582464,Union Square/East Village Flat,267728008,Ross,Manhattan,East Village,40.7316,-73.98576,Entire home/apt,179,5,3,2019-06-17,3,1,76 +35582765,Charming 1 Bedroom Apartment (Discounted),267253127,Donna,Manhattan,Kips Bay,40.74496,-73.97678,Entire home/apt,132,1,2,2019-06-28,2,1,46 +35583012,Private Bedroom Shared Kitchen and Bath #2,28891151,Kimesha,Brooklyn,East New York,40.67054,-73.89002,Private room,79,2,1,2019-06-30,1,4,90 +35583150,Beautiful Brownstone Entire Apartment In Manhattan,265424495,Benat,Manhattan,Harlem,40.80369,-73.94764,Entire home/apt,150,1,0,,,2,14 +35583579,A large room in 2br apartment,167025338,Ameer,Manhattan,Upper East Side,40.773,-73.94759,Private room,90,8,0,,,2,77 +35583886,Artsy Parisian Apt in Greenwich Village,255626808,Oli,Manhattan,Greenwich Village,40.73313,-73.9971,Entire home/apt,450,1,1,2019-06-26,1,1,156 +35584234,Your PRIME 2 Bedroom Apartment in best Area LES,267739313,Tim,Manhattan,Lower East Side,40.72056,-73.98894,Entire home/apt,210,7,1,2019-06-22,1,1,306 +35584546,Downtown Bronx Studio 15 min ride to Manhattan,267744284,Andre,Bronx,Melrose,40.82231,-73.91696,Entire home/apt,69,7,0,,,1,254 +35590205,Beautiful apartment in the heart of Harlem,208570396,Mamadou,Manhattan,East Harlem,40.80837,-73.93937,Entire home/apt,120,5,4,2019-07-06,4,1,285 +35593963,Great Apartment close to Time Square,264833923,Sharoom,Manhattan,Hell's Kitchen,40.75612,-73.99263,Entire home/apt,209,3,1,2019-06-27,1,1,68 +35595716,Our slice of the Big Apple - good for large groups,266569093,Irma,Manhattan,Midtown,40.75519,-73.97011,Entire home/apt,800,30,0,,,1,266 +35595727,Loft Studio Apartment - Bushwick - Jefferson L,11583998,Carolanne,Brooklyn,Bushwick,40.70816,-73.9222,Entire home/apt,128,5,0,,,1,152 +35596905,CONEY ISLAND BEACH close to Manhattan New York,29622548,Solvita,Brooklyn,Coney Island,40.58101,-73.98514,Entire home/apt,149,6,0,,,1,297 +35596923,3 Bedroom NEAR SUBWAY & SOHO A+ LOCATION,216786331,Alex,Manhattan,SoHo,40.71891,-74.00024,Entire home/apt,429,5,2,2019-07-03,2,1,152 +35597268,Beautiful Manhattan Bdwy Apt Close to Columbia!,255259069,Jonah,Manhattan,Harlem,40.82623,-73.95271,Entire home/apt,135,31,2,2019-06-25,2,2,184 +35597348,MODERN APARTMENT MINUTES AWAY FROM MANHATTAN,196255493,Elizabeth,Bronx,Kingsbridge,40.87277,-73.90268,Entire home/apt,95,2,0,,,1,47 +35597782,Luxurious Studio High rise Condo Near Manhattan!,247335568,Evelyn,Queens,Long Island City,40.74762,-73.94278,Entire home/apt,160,3,0,,,7,23 +35597932,Beautiful NYC Broadway Apartment next to Subway!,255259069,Jonah,Manhattan,Harlem,40.82586,-73.95296,Entire home/apt,130,31,0,,,2,333 +35598116,Best Value ❤ Memorable Vacation in NYC,267678006,Alex,Manhattan,Midtown,40.76537,-73.98375,Entire home/apt,320,1,7,2019-06-28,7,1,121 +35598253,2 bedroom kitchen/ bath/1 block from #3& L train,180793066,Shari,Brooklyn,East New York,40.66537,-73.88569,Entire home/apt,87,2,1,2019-06-30,1,1,90 +35598472,Clean Affordable Luxury Studio on Wall St,267818706,Jonathan,Manhattan,Financial District,40.70611,-74.00773,Entire home/apt,205,1,3,2019-06-23,3,1,45 +35598561,Beautiful charming 3 bedroom apt off broadway,201914956,Angelo,Manhattan,Upper West Side,40.80099,-73.96514,Entire home/apt,305,30,3,2019-06-29,3,1,311 +35598818,Charming manhattan 1 bedrooms in the city,243660343,Dan,Manhattan,Harlem,40.82593,-73.95075,Entire home/apt,144,30,1,2019-06-21,1,2,223 +35599003,Cozy 2 bedroom apartment near JFK,267015438,Jairo,Queens,Ozone Park,40.67299,-73.845,Entire home/apt,167,5,1,2019-07-01,1,1,94 +35599237,Spacious Williamsburg Apartment (PERFECT location),3078929,Sonia,Brooklyn,Williamsburg,40.70919,-73.95755,Entire home/apt,100,30,0,,,1,235 +35599954,AMAZING LOCATION IN WILLIASMBURG,206722794,Martin,Brooklyn,Williamsburg,40.70823,-73.95702,Entire home/apt,168,2,4,2019-07-06,4,1,154 +35600813,"Luxurious Penthouse Mid Manhattan, next to Times S",265157006,Orjan,Manhattan,Hell's Kitchen,40.76199,-73.99884,Entire home/apt,425,3,0,,,1,135 +35600829,"Charming 1 Bedroom On Broadway, next to subway!",243660343,Dan,Manhattan,Harlem,40.82549,-73.95133,Entire home/apt,115,30,0,,,2,211 +35600877,7MinutesSubway.Maimonides&IndustryCityRoom,163625145,Steven,Brooklyn,Borough Park,40.64468,-73.99026,Private room,46,2,2,2019-06-23,2,3,180 +35601251,7minutesToSubway.NearMaimonidesSmallRoom,163625145,Steven,Brooklyn,Borough Park,40.64405,-73.99125,Private room,38,2,0,,,3,171 +35601334,Large Private Room with Modern amenities,5971264,Marco,Bronx,Kingsbridge,40.86429,-73.90204,Private room,60,1,0,,,1,83 +35601555,The High Rise Apartment,61396454,Ash,Manhattan,Midtown,40.75424,-73.96416,Entire home/apt,300,30,0,,,14,338 +35601668,Modern Sunny Studio in Lower East Side,136438670,Ken,Manhattan,East Village,40.72304,-73.98372,Entire home/apt,159,1,5,2019-06-28,5,1,170 +35602964,"Cozy/Comfortable/Clean, 3 Bedroom/2 Bathroom",267849738,Oriana,Manhattan,Kips Bay,40.74293,-73.97923,Entire home/apt,600,2,0,,,1,267 +35602997,Large 2bed apt Southside Williamsburg walkup,267849472,George,Brooklyn,Williamsburg,40.71269,-73.95902,Entire home/apt,185,1,2,2019-07-01,2,1,130 +35603341,Cozy studio in the UES (30 days min),159598333,Sol,Manhattan,Upper East Side,40.78166,-73.94593,Entire home/apt,99,30,0,,,5,344 +35603512,Great 1 Bedroom Loft in Cool SoBro Area,2548258,Dakota,Bronx,Port Morris,40.80807,-73.92811,Entire home/apt,140,4,0,,,1,103 +35603798,Effortlessly Tasteful 1BR in Prime East Village,263049454,Conor & Rose,Manhattan,East Village,40.7294,-73.98664,Entire home/apt,290,1,0,,,1,355 +35603885,AMAZING 2 BEDROOM SPTEPS FROM SUBWAY,230403448,Francisco,Brooklyn,Williamsburg,40.71006,-73.95716,Entire home/apt,180,2,0,,,1,260 +35603965,Charming Sunny and Quiet Designer Suite,267651337,Leo,Manhattan,Midtown,40.7569,-73.96623,Entire home/apt,170,30,0,,,1,332 +35604423,Battery Park Studio with a View,241551759,Artemis,Manhattan,Financial District,40.70417,-74.01511,Entire home/apt,200,9,0,,,1,15 +35604447,Empire State Studio Apt,267860635,Jey,Manhattan,Midtown,40.74307,-73.98386,Entire home/apt,170,1,3,2019-06-23,3,1,270 +35604874,the Horizon View,221200420,Adam,Manhattan,Murray Hill,40.74385,-73.97219,Entire home/apt,400,30,0,,,23,211 +35605010,Captivatingly Cozy 2 Bedroom Apartment,267864516,Madison,Brooklyn,East New York,40.65905,-73.88273,Entire home/apt,99,2,1,2019-06-21,1,1,144 +35605729,ULTRA LUXURIOUS 5 STAR DUPLEX -- EXPERIENCED HOST!,267191710,Robert,Manhattan,Upper East Side,40.76769,-73.96692,Entire home/apt,425,2,0,,,1,162 +35605837,Hudson Yards 1 Bedroom (LGBT friendly),51020118,Ben,Manhattan,Hell's Kitchen,40.75351,-73.99523,Entire home/apt,175,4,0,,,1,89 +35606165,Luggage storage only No Beds Available.,267872829,Sonya,Brooklyn,Fort Hamilton,40.61819,-74.03296,Shared room,20,1,1,2019-06-27,1,1,353 +35606381,The City Horizon,221200420,Adam,Manhattan,Murray Hill,40.74422,-73.97261,Entire home/apt,350,30,0,,,23,331 +35606417,Modern 2 Bed! Easy Access to Manhattan!,267875219,Ridge,Queens,Ridgewood,40.70762,-73.89784,Entire home/apt,149,3,0,,,1,169 +35606542,Nicely Orgonized Three Bedrrom Apartment,221200420,Adam,Manhattan,Murray Hill,40.74336,-73.97143,Entire home/apt,350,30,0,,,23,327 +35606565,STUDIO LOFT WITH GARDEN CENTER OF WILLIAMSBURG,130030703,Margarita,Brooklyn,Williamsburg,40.71421,-73.96259,Entire home/apt,220,2,0,,,1,244 +35607369,Fully Renovated One Bedroom,221200420,Adam,Manhattan,Murray Hill,40.74399,-73.97204,Entire home/apt,200,30,0,,,23,365 +35607523,"Bright, Spacious & Charming 1-bed Brownstone Apt",6768659,Leonie,Brooklyn,Park Slope,40.66678,-73.97709,Entire home/apt,170,4,0,,,1,199 +35607568,High Floor One Bedroom Apartment,221200420,Adam,Manhattan,Murray Hill,40.74405,-73.97349,Entire home/apt,200,30,0,,,23,365 +35607797,High Floor One Bedroom,221200420,Adam,Manhattan,Murray Hill,40.74419,-73.97195,Entire home/apt,175,30,0,,,23,353 +35607893,BRAND NEW APT CLOSE TO SUBWAY WILLIAMSBURG,223917190,Annette,Brooklyn,Williamsburg,40.70779,-73.96254,Entire home/apt,161,2,2,2019-07-05,2,1,288 +35607907,Astoria Modern 3 Bedroom near Steinway,1348312,Lindsay,Queens,Astoria,40.76151,-73.90964,Entire home/apt,300,4,0,,,1,26 +35607932,LGBT welcome for Pride Greenwich Village,265901814,Evette,Manhattan,West Village,40.73613,-73.9987,Private room,125,1,0,,,2,75 +35608098,Spacious room with balcony near downtown Manhattan,267886811,Stu,Manhattan,Washington Heights,40.8462,-73.93498,Private room,80,3,1,2019-06-30,1,1,112 +35608108,"BEST LOCATION IN WILLIAMSBURG, CLOSE TO SUBWAY",75395247,Ramiro,Brooklyn,Williamsburg,40.71243,-73.9604,Entire home/apt,160,2,3,2019-07-01,3,1,309 +35608298,High Floor two Bed One Bath,221200420,Adam,Manhattan,Murray Hill,40.74424,-73.97272,Entire home/apt,190,30,0,,,23,343 +35608471,Welcome Palace!!!,182954454,Thaddeus,Queens,Jamaica,40.66969,-73.77464,Private room,75,2,0,,,2,90 +35608603,New Luxury NYC Two-Bedroom with Perfect Views,267590902,Sophie,Manhattan,Financial District,40.70423,-74.00909,Entire home/apt,365,2,0,,,1,18 +35608677,"BRAND NEW , STEPS FROM SUBWAY, 5 MIN TO MANHATTAN",25970549,Ramiro,Brooklyn,Williamsburg,40.70769,-73.96257,Entire home/apt,150,2,0,,,1,235 +35608964,"Private Furnished Room, Cozy, Quiet & Perfect",154077074,Anderson,Queens,Flushing,40.74511,-73.82909,Private room,55,1,0,,,1,59 +35609328,Central Park/ Times Square -Bright and Quiet 1 BDR,267175603,Sonia,Manhattan,Midtown,40.76551,-73.98217,Entire home/apt,190,3,2,2019-06-23,2,1,23 +35609562,Shared Apartment in a cool neighborhood,53432601,Jill,Manhattan,East Harlem,40.7885,-73.95093,Private room,80,2,2,2019-07-01,2,1,11 +35609955,Spacious modern apartment in the heart of Astoria,267624351,Mohamad,Queens,Astoria,40.76332,-73.91166,Entire home/apt,75,2,0,,,1,14 +35610163,Charming Modern Entire One Bedroom!,267902045,Maiya,Queens,Elmhurst,40.74696,-73.87104,Entire home/apt,130,1,2,2019-06-30,2,1,148 +35610220,"Laid back and homey, roof access, bidet, vibes af",21649183,Shane,Brooklyn,Bushwick,40.69644,-73.91995,Private room,78,2,0,,,1,28 +35610360,Charming Moroccan-style Rooms on Upper West Side,260895286,Hajar,Manhattan,Upper West Side,40.7846,-73.97636,Private room,90,3,0,,,2,24 +35610591,Private Queen Bedroom with WiFi near Central Park!,82406306,Marc,Manhattan,East Harlem,40.79879,-73.94202,Private room,85,2,1,2019-07-02,1,2,36 +35611637,Beautiful big room. Women only,267912902,Shira,Brooklyn,Borough Park,40.62317,-73.98873,Private room,39,3,0,,,2,179 +35611781,Peace and Comfort,264862581,Dianne,Queens,Rosedale,40.68036,-73.72716,Private room,75,1,3,2019-07-07,3,3,90 +35612199,Designer large studio in Brooklyn Heights,213432040,Naomi,Brooklyn,Brooklyn Heights,40.69924,-73.99296,Entire home/apt,150,2,0,,,1,74 +35612963,"Bright Spacious CrashPad , NextDoor To Subway",21261408,Jay,Brooklyn,Clinton Hill,40.68981,-73.9604,Shared room,37,1,4,2019-06-29,4,6,344 +35612982,Luggage drop off ONLY! Close to LGA & JFK,108512889,Syed,Queens,Sunnyside,40.73954,-73.92095,Shared room,12,1,0,,,1,359 +35613002,Manhattan ☯ Brooklyn | Best of Both❤️,267680159,Alex,Manhattan,Lower East Side,40.71261,-73.98857,Entire home/apt,300,1,8,2019-06-30,8,1,213 +35613103,Stylish / Unique Greenpoint Studio,11971910,Madeleine,Brooklyn,Greenpoint,40.72685,-73.94433,Entire home/apt,110,30,0,,,1,104 +35613104,Queen Bed Artist Apt by Bushwick w/ Piano & Guitar,251969263,Eunice,Queens,Ridgewood,40.70022,-73.89597,Private room,54,1,0,,,2,29 +35613598,nice room in bedstuy E,6885157,Randy,Brooklyn,Bedford-Stuyvesant,40.68382,-73.95022,Private room,45,1,3,2019-07-04,3,15,188 +35613707,Cozy One BR near Manhattan!- 15min to Time Square.,267928032,Chhong,Queens,Flushing,40.72899,-73.79578,Entire home/apt,119,1,0,,,1,179 +35614155,"""The quick get Away #2""",241454071,Leyland,Bronx,Hunts Point,40.81879,-73.88646,Private room,35,2,1,2019-06-26,1,2,59 +35614263,"Luxury, Cozy & Modern apartment in Brooklyn",193961455,Gerald,Brooklyn,Williamsburg,40.7191,-73.94494,Entire home/apt,190,1,7,2019-07-06,7,1,210 +35614490,Luxury Wall Street Apartment,62271274,Kayla,Manhattan,Financial District,40.70537,-74.00784,Entire home/apt,220,2,1,2019-06-12,1,1,10 +35614638,"Center of Manhattan, 24hrs security doorman. Wi-Fi",71653051,Eady,Manhattan,West Village,40.73894,-74.00087,Private room,99,2,2,2019-07-01,2,1,63 +35614773,Beautiful 1 bedroom steps from Central Park!,267936314,Jahni,Manhattan,Upper West Side,40.79976,-73.96549,Entire home/apt,200,1,2,2019-06-30,2,1,37 +35614888,"Beautiful peacefull +Calm",267938006,Francoise X,Bronx,Concourse Village,40.82759,-73.92081,Private room,65,1,2,2019-06-23,2,1,364 +35615010,Cozy Private Room in Brooklyn!,103716352,Luanny,Brooklyn,Sunset Park,40.64699,-74.0156,Private room,50,1,0,,,1,28 +35615611,Recording Studio,267940629,Kettly,Brooklyn,Flatlands,40.61994,-73.93967,Private room,60,1,0,,,1,365 +35615652,Room in a cozy Brooklyn apartment,19017210,Karl,Brooklyn,Bedford-Stuyvesant,40.67897,-73.94192,Private room,41,3,1,2019-07-02,1,1,57 +35615687,Duplex Apartment 3 bedroom 2 bath (6 guest),145082728,Jason & Kelly,Brooklyn,Bedford-Stuyvesant,40.68091,-73.95006,Entire home/apt,350,2,1,2019-06-30,1,2,0 +35616144,NYC Apt. By the Beach,11378117,Sonya,Brooklyn,Coney Island,40.57534,-73.98664,Entire home/apt,70,21,0,,,1,195 +35616292,Nice house 35 min subway to manhattan,257879526,Israel,Brooklyn,East Flatbush,40.65982,-73.93468,Private room,54,2,0,,,2,336 +35616402,Cozy room for NYC summer rental,152132335,Ursula,Queens,Woodside,40.74164,-73.90289,Private room,100,5,0,,,1,197 +35616470,"Great place, safety lovely convenient location",267933377,ゆりあ & Fredy,Manhattan,Upper East Side,40.78015,-73.94571,Private room,100,2,0,,,1,89 +35616482,Comfortable and spacious room with private rooftop,121705027,Salome,Brooklyn,Bedford-Stuyvesant,40.69229,-73.94116,Private room,90,2,1,2019-06-17,1,1,5 +35616750,2 bedrooms/1.5 bath East Village Cozy Apartment,267953852,Kyle,Manhattan,Greenwich Village,40.72815,-73.99693,Entire home/apt,196,2,1,2019-06-18,1,1,149 +35616793,"CozySuite near F Train & LIRR +Min 2 guests",153141476,Franz,Queens,Briarwood,40.70762,-73.81453,Entire home/apt,78,1,5,2019-07-06,5,3,326 +35617028,Huge room @ a Gorgeous apt + beautiful back yard,6997690,Gregg,Brooklyn,Greenpoint,40.73259,-73.95611,Private room,100,3,1,2019-06-23,1,1,65 +35617075,Fantastic 2BRM - 2 Minute Walk to Times Square,266925045,Ivana,Manhattan,Hell's Kitchen,40.7607,-73.99033,Entire home/apt,320,3,3,2019-07-01,3,1,160 +35617353,Lovely Stylish Trendy Studio,267937666,Russell,Manhattan,Hell's Kitchen,40.76286,-73.99113,Entire home/apt,129,1,4,2019-07-05,4,1,186 +35617505,Walking to Central Park!!! Private bedroom!!,130617332,Haley,Manhattan,Harlem,40.81173,-73.94213,Private room,80,3,0,,,3,170 +35617875,The New York House,125170095,João,Queens,Astoria,40.76408,-73.91979,Private room,85,3,1,2019-06-24,1,1,341 +35618095,LARGE ROOM WITH PRIVATE ENTRANCE IN RIDGEWOOD,161346189,Patrick,Queens,Ridgewood,40.70771,-73.90486,Private room,40,14,0,,,1,342 +35618225,Huge studio in a doorman bld in midtown manhattan,4481028,Sanket,Manhattan,Midtown,40.75249,-73.9689,Entire home/apt,140,3,1,2019-06-20,1,1,5 +35618798,Private room!,175276860,Hae Li,Queens,Jamaica Hills,40.71512,-73.79391,Private room,100,3,0,,,1,179 +35618939,NYC private room super clean and cozy,83132880,Alyandry,Queens,Maspeth,40.73953,-73.89499,Private room,56,1,0,,,4,304 +35619073,"Ferry to Manhattan, private, newly renovated",256966373,Amir,Staten Island,St. George,40.64332,-74.07812,Entire home/apt,100,3,1,2019-06-20,1,1,201 +35619385,2 bd 2 bath Penthouse Apartment Manhattan,32159799,Chike,Manhattan,East Harlem,40.80144,-73.94463,Private room,180,2,3,2019-07-05,3,1,327 +35619415,Gorgeous Central Park Sanctuary,267980502,Yinelda,Manhattan,Upper West Side,40.78544,-73.97062,Entire home/apt,150,4,0,,,1,317 +35619694,Lovely New Private Room in Brooklyn!,92936093,Kenny,Brooklyn,Flatbush,40.64898,-73.95502,Private room,65,1,4,2019-07-01,4,1,109 +35619784,Patty Home,267951770,Patricia,Queens,Ozone Park,40.68761,-73.84241,Entire home/apt,100,1,0,,,1,189 +35620506,Private room Shared Kitchen and Bath #1,28891151,Kimesha,Brooklyn,East New York,40.66772,-73.88813,Private room,75,2,2,2019-07-06,2,4,349 +35628011,Peaceful Studio,6428897,Negin,Brooklyn,Williamsburg,40.70677,-73.94196,Entire home/apt,95,3,1,2019-06-20,1,1,5 +35633100,Zebra Room,258053084,Carlos,Manhattan,Harlem,40.80386,-73.95065,Private room,65,2,3,2019-07-01,3,1,76 +35633408,Impeccable Private one&half bedroom and full bath,83132880,Alyandry,Queens,Maspeth,40.73859,-73.89534,Private room,49,2,0,,,4,307 +35633930,"Stunning, clean and quiet studio in Little Italy!",70082582,Anna,Manhattan,Chinatown,40.7189,-73.99627,Entire home/apt,120,5,0,,,1,27 +35634364,Large Bushwick Bedroom in Newly Renovated Aprtment,51985960,Jonathan,Brooklyn,Williamsburg,40.70748,-73.92835,Private room,40,3,0,,,2,34 +35634704,WOODSIDE COMFORTABLE ROOM 15 MINUTES FROM THE CITY,266792224,Alex,Queens,Woodside,40.74833,-73.90827,Private room,90,2,1,2019-07-01,1,1,365 +35634901,Prime Midtown 2 Bdrm apt near Central Park & 5 Ave,102373033,Marjorie,Manhattan,Midtown,40.76355,-73.98102,Entire home/apt,249,3,1,2019-06-30,1,1,149 +35635711,Clean & Modern 3BR - Incredible Midtown Location !,263550606,Justin,Manhattan,Kips Bay,40.74509,-73.97894,Entire home/apt,300,4,0,,,1,77 +35635841,A Very Special Apt - Lots of Light and Space,267989178,Seza,Manhattan,Kips Bay,40.74318,-73.97916,Entire home/apt,800,2,0,,,1,254 +35638345,Heart of the Big Apple Close to Broadway,263229425,Dylan,Manhattan,Hell's Kitchen,40.76617,-73.99169,Shared room,400,2,0,,,1,26 +35638944,☀Bright & sunny townhouse | Perfect for families ☀,154268909,Malik,Queens,Bellerose,40.74006,-73.7169,Entire home/apt,240,2,0,,,2,159 +35639073,Modern Studio Few Steps From Times Square,260807399,John,Manhattan,Hell's Kitchen,40.76536,-73.98866,Shared room,400,2,0,,,1,23 +35639950,Perfect place to stay in Bushwick in a shared room,268110281,Sergii,Brooklyn,Bushwick,40.69172,-73.9113,Shared room,49,30,0,,,3,365 +35640448,"3 bedroom beautiful, cozy apt close to Times Sq.",267989700,Nusrat,Queens,Sunnyside,40.74174,-73.90817,Entire home/apt,179,1,1,2019-06-22,1,1,321 +35640594,!!Renovated shared room in great neighborhood!!,268122129,Sergii,Brooklyn,Williamsburg,40.70087,-73.94075,Shared room,35,30,0,,,5,341 +35641231,Steps to Times Square Modern Apt ♥,260805765,Paul,Manhattan,Hell's Kitchen,40.75882,-73.9903,Shared room,400,2,0,,,1,166 +35642392,Entire apt in the hearth of EAST VILLAGE!,146623639,Fabiola,Manhattan,East Village,40.72478,-73.98297,Entire home/apt,250,4,0,,,1,4 +35642402,1-Bedroom Sweet Spot in Carroll Gardens!,8093028,Jordana,Brooklyn,Carroll Gardens,40.67867,-73.9969,Entire home/apt,129,3,1,2019-07-06,1,1,21 +35642484,"Huge Bushwick 4BR apt w/private baths, sleeps 12!",268135013,Noel,Brooklyn,Bushwick,40.69463,-73.92707,Entire home/apt,475,1,1,2019-06-23,1,6,9 +35642823,"Quiet home, near Columbia Presbyterian & trains!",268137256,Germania,Manhattan,Washington Heights,40.8433,-73.93616,Private room,35,2,1,2019-06-30,1,1,359 +35642891,Beautiful room in Bushwick,268138154,Julio,Brooklyn,Bushwick,40.6964,-73.91898,Private room,10,1,2,2019-06-18,2,1,0 +35643772,"Delightful, Spacious Ditmas Park One Bedroom",21918321,Lily,Brooklyn,Flatbush,40.64151,-73.96104,Entire home/apt,90,2,0,,,1,10 +35643807,Harlem 1 bedroom Private Room - Modern,181673933,Andres,Manhattan,Harlem,40.80033,-73.95382,Private room,100,1,0,,,1,341 +35644433,***Cozy artist loft in heart of Williamsburg***,268150010,Jessica,Brooklyn,Williamsburg,40.71918,-73.95591,Entire home/apt,200,2,0,,,1,14 +35644555,Amazing Luxury on Striver’s Row,268149303,Tarvatta,Manhattan,Harlem,40.81858,-73.94524,Private room,125,2,0,,,1,125 +35644795,Bed in a shared dormitory next to Brooklyn bridge,11182145,Kateryna,Brooklyn,Fort Greene,40.69334,-73.98179,Shared room,50,1,0,,,1,347 +35645630,Cute 1 bdr in UWS & Morningside Heights,13175303,Sasha,Manhattan,Morningside Heights,40.80491,-73.96339,Entire home/apt,135,1,1,2019-06-14,1,1,3 +35645833,Brooklyn Botanical Hideaway,100981446,David,Brooklyn,Crown Heights,40.67437,-73.96177,Entire home/apt,199,6,1,2019-07-01,1,1,156 +35646056,Gorgeous East Village 2BR / 2BA & Patio,268162851,Sam,Manhattan,East Village,40.73035,-73.9845,Entire home/apt,295,5,0,,,1,268 +35646375,Large Private Chic and Cosy Room in Hells Kitchen,247628698,Gloria,Manhattan,Hell's Kitchen,40.76073,-73.99032,Private room,140,4,1,2019-06-16,1,2,34 +35646392,Luxury Junior Suite - Manhattan Club Near Park,16830841,Mara,Manhattan,Midtown,40.76391,-73.98028,Private room,358,1,0,,,5,349 +35646472,Sunny Summer Sublet entire Gorgeous Studio,268165286,Andrea,Manhattan,Upper West Side,40.79213,-73.9704,Entire home/apt,89,10,0,,,1,53 +35646539,Manhattan Club Luxury Junior Suite - Best Location,16830841,Mara,Manhattan,Midtown,40.76553,-73.98148,Private room,358,1,0,,,5,353 +35646737,"Private Cabins @ Chelsea, Manhattan",117365574,Maria,Manhattan,Chelsea,40.74946,-73.99627,Private room,85,1,1,2019-06-22,1,5,261 +35646747,Sweet and Simple,34450489,K,Brooklyn,Downtown Brooklyn,40.69691,-73.98237,Private room,111,2,2,2019-07-07,2,1,6 +35647681,Fabulous 1-bedroom apartment in Clinton Hill,268173853,Kim,Brooklyn,Clinton Hill,40.6853,-73.96662,Entire home/apt,100,5,1,2019-06-29,1,1,243 +35647761,Charming 2 Bedroom (Converted) Loft -Wall St for 5,267818779,Jonathan,Manhattan,Financial District,40.70567,-74.00566,Entire home/apt,265,1,2,2019-06-24,2,1,246 +35647951,*Prime 2BR* in Central East Village +Free Laundry,268177002,Li,Manhattan,East Village,40.72716,-73.98436,Entire home/apt,295,5,1,2019-06-16,1,1,141 +35648056,High Ceiling 5 BEDS up to 10 people in Times Sq.!,11066012,Mike And Narimá,Manhattan,Hell's Kitchen,40.76164,-73.99218,Entire home/apt,417,3,1,2019-07-01,1,1,219 +35648435,Suzy ville,244116720,Carsandra,Bronx,Throgs Neck,40.82754,-73.82124,Private room,65,1,1,2019-06-18,1,1,365 +35649754,Perfect Times Square Apartment,78896912,Courtney,Manhattan,Hell's Kitchen,40.7637,-73.99184,Entire home/apt,150,1,0,,,1,2 +35650240,1 Private bedroom in a spacious Wburg Apartment,8518298,Sanket,Brooklyn,Williamsburg,40.70924,-73.95208,Private room,57,2,3,2019-07-04,3,1,29 +35650326,안전하고 조용한 숙소,40971988,Hyunje,Manhattan,Upper East Side,40.76954,-73.94959,Private room,75,1,4,2019-07-01,4,1,9 +35651376,Bright & Peaceful Loft in Park Slope/Greenwood,15200548,Maria Fernanda,Brooklyn,Sunset Park,40.66008,-73.99684,Entire home/apt,180,4,0,,,1,12 +35651982,Modern Manhattan Apartment,72015429,Julian,Manhattan,Inwood,40.86114,-73.92717,Private room,59,1,0,,,1,357 +35652031,Comfortable private bedroom in Apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.69524,-73.93234,Private room,54,4,2,2019-06-24,2,3,330 +35652334,"Rooms in the new hipster area of Brooklyn, NYC 2",266998393,Hector,Brooklyn,Bushwick,40.69423,-73.91945,Private room,40,3,1,2019-07-02,1,3,96 +35653043,"Steps from Central Park, private bdrm, 2 full bath",93533725,Christine,Manhattan,Midtown,40.76465,-73.98155,Private room,350,2,0,,,1,38 +35653330,Heart of Bushwick home,20514946,Jennifer,Brooklyn,Bushwick,40.70056,-73.92162,Entire home/apt,230,2,2,2019-06-24,2,1,274 +35653871,Room with a View,268230638,Ilka,Manhattan,Kips Bay,40.73775,-73.97368,Private room,95,15,0,,,1,89 +35654692,Modern 3BED LOFT Near Metro & Madison Sq.Park,258376648,Samuel,Manhattan,Murray Hill,40.74673,-73.9792,Entire home/apt,299,6,0,,,1,57 +35654798,AUC Stay Room 315-3,267272502,Orfelina,Bronx,Claremont Village,40.84346,-73.90554,Private room,55,3,0,,,2,140 +35655420,Midtown 2 Bedroom w King bed near Madison Ave,2883788,Steven,Manhattan,Murray Hill,40.74825,-73.98101,Entire home/apt,239,3,3,2019-07-03,3,1,158 +35655547,"NEW!! Hip spot in the Heightz, MANHATTAN",268240039,Rafael,Manhattan,Washington Heights,40.83747,-73.94123,Private room,51,1,1,2019-07-01,1,1,84 +35655950,Gorgeous Super Clean Guest Suite,80443454,Kathryn,Queens,Kew Gardens Hills,40.71708,-73.82411,Private room,74,1,10,2019-07-07,10,1,160 +35656431,Private big bedroom w/ access to kitchen- Flushing,128681436,Angel,Queens,Flushing,40.75938,-73.80124,Private room,40,1,1,2019-07-01,1,1,66 +35656689,Jackson Heights stay near everything,133130957,Meya,Queens,Elmhurst,40.74509,-73.88492,Entire home/apt,120,1,1,2019-06-25,1,1,331 +35657486,AMAZING APARTMENT BROWNSTONE CONFI AND BIG!,86724810,Antia,Brooklyn,Bedford-Stuyvesant,40.69252,-73.93787,Entire home/apt,200,1,1,2019-06-21,1,1,344 +35657662,"GREAT APARTMENT, VERY COMFORTABLE, 5 mins to SOHO!",135127305,M. Alejandro,Manhattan,Chinatown,40.71821,-73.99506,Entire home/apt,200,1,0,,,1,312 +35658004,"CHARM APT IN LOWER EAST SIDE, WALKING EVERYWHERE",7768807,Antina,Manhattan,Lower East Side,40.7195,-73.98558,Entire home/apt,200,1,1,2019-07-01,1,1,270 +35658458,"GREAT LOFT STYLE APT, HEART OF LOWER EAST SIDE",11608565,Matt,Manhattan,Lower East Side,40.71694,-73.98218,Entire home/apt,200,3,0,,,1,270 +35658677,Manhattan Lux ♔,268266826,Max,Manhattan,Hell's Kitchen,40.76413,-73.99466,Entire home/apt,450,1,1,2019-06-26,1,1,337 +35660065,Beautiful shared room in 20 min to Manhattan,268110281,Sergii,Brooklyn,Bushwick,40.69258,-73.91168,Shared room,32,30,0,,,3,330 +35661889,Wonderful private room with entire ameneties,268110281,Sergii,Brooklyn,Bushwick,40.69208,-73.91296,Private room,58,30,0,,,3,340 +35662019,Cheap price near Timesquare,79269209,소정,Manhattan,Hell's Kitchen,40.75625,-73.99357,Private room,63,31,0,,,1,250 +35664876,Amazing twin room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.6997,-73.93944,Shared room,45,30,0,,,5,302 +35665927,AMAZING MANHATTAN SKYLINE VIEW,13813923,Maria,Queens,Long Island City,40.74383,-73.951,Private room,55,1,2,2019-06-28,2,2,293 +35666988,Best place to stay ⚓⚓⚓ with friends,268118262,Alex,Manhattan,East Harlem,40.80775,-73.93767,Private room,210,1,3,2019-07-03,3,1,7 +35667379,Renovated apartment near 1 train ( & Columbia),222549093,Anna Laura,Manhattan,Harlem,40.81668,-73.9569,Private room,65,1,1,2019-07-06,1,3,17 +35667738,Fully equipped room that's 3 mins from L train!2,101970559,Sergii,Brooklyn,Bushwick,40.6922,-73.90563,Shared room,31,30,0,,,6,333 +35668212,Bright shared room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.69965,-73.93909,Shared room,35,30,0,,,5,357 +35669284,Cozy private room in newly renovated house,268122129,Sergii,Brooklyn,Bushwick,40.70125,-73.93915,Private room,72,30,0,,,5,341 +35669345,"Spacious shared room in modern Bed-Stuy/ M,J,Z,G",159811367,Sergii,Brooklyn,Bedford-Stuyvesant,40.69485,-73.94005,Shared room,34,30,0,,,10,341 +35669735,Charming Stylish Apartment in Soho/Nolita,130906690,Nadiel,Manhattan,Nolita,40.72098,-73.9972,Entire home/apt,225,4,1,2019-07-03,1,1,225 +35669975,Diamond place ✿✿ to rest in NYC center,268119713,Alex,Manhattan,Midtown,40.75855,-73.96661,Entire home/apt,300,30,0,,,1,155 +35670657,Charming and quiet 2 bedroom on Washington Ave,18392694,Yamini,Brooklyn,Crown Heights,40.67976,-73.9633,Entire home/apt,100,7,0,,,1,146 +35670919,Amazing private room with private bathroom,268122129,Sergii,Brooklyn,Bushwick,40.70105,-73.93954,Private room,80,30,0,,,5,343 +35671265,Cozy Studio on Upper East,42730216,Tatjana,Manhattan,Upper East Side,40.76569,-73.95829,Entire home/apt,130,3,0,,,2,42 +35671794,My comfy room,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.6871,-73.94651,Private room,100,1,0,,,3,178 +35671998,Spectacular Apartment in the Heart of NYC,261295185,Laila,Queens,Jamaica Estates,40.71213,-73.78778,Entire home/apt,219,2,0,,,1,359 +35672353,Room in Luxury Building by Yankee Stadium.,289271,Damian,Bronx,Highbridge,40.83351,-73.93033,Private room,65,2,0,,,1,296 +35672714,perfect location to experience the Big Apple,38580398,Lisa,Queens,South Ozone Park,40.6765,-73.81947,Entire home/apt,150,3,3,2019-07-06,3,1,327 +35672777,**SUMMER OFFER**Healers LOFT: Tranquil and Light,2010787,Amma,Manhattan,Lower East Side,40.7144,-73.98201,Entire home/apt,297,20,0,,,1,276 +35672836,Times Square NYC,241985816,Carlos,Queens,Astoria,40.76847,-73.90852,Private room,100,1,1,2019-06-27,1,3,89 +35673061,Luxury Central Park Apartment,268352337,Logan,Manhattan,Hell's Kitchen,40.76374,-73.98844,Entire home/apt,450,1,1,2019-06-27,1,2,360 +35674837,Shared big room in a duplex apartment,213719157,Denis,Manhattan,East Harlem,40.79833,-73.93781,Shared room,60,1,5,2019-07-07,5,1,1 +35675069,Newly Renovated Apartment (47 Buffalo 1F Room #2),268358454,Devin,Brooklyn,Bedford-Stuyvesant,40.67825,-73.92346,Private room,60,1,0,,,1,171 +35675859,Affordable Luxury & Comfort in Manhattan. For 5.,71276635,Joe,Manhattan,Washington Heights,40.84143,-73.94569,Entire home/apt,235,1,0,,,5,338 +35676024,"Private bedroom with lovely, spacious shared area",177507494,Evan,Brooklyn,Kensington,40.64264,-73.97855,Private room,67,1,0,,,1,31 +35676174,HOTEL ROOM STYLE STUDIO IN THE EAST VILLAGE,2860131,Kodi,Manhattan,East Village,40.72488,-73.98317,Entire home/apt,120,2,1,2019-06-24,1,1,6 +35676573,Beautiful 3 bedroom apartment in East Williamsburg,268377412,Nancis,Brooklyn,Williamsburg,40.70522,-73.94243,Entire home/apt,226,2,0,,,1,328 +35676738,Comfortable Private Room,264362310,Lens,Brooklyn,Sheepshead Bay,40.60724,-73.95219,Private room,25,1,0,,,1,178 +35677001,Large Times Sq/Midtown/Broadway Luxury High-rise,11908795,Ryan,Manhattan,Hell's Kitchen,40.7615,-73.99546,Entire home/apt,350,5,0,,,1,87 +35677349,No Sleep Till Brooklyn!,222069293,Mariela,Brooklyn,Williamsburg,40.71556,-73.94245,Entire home/apt,275,3,0,,,1,362 +35678147,Artist Bedroom in BUSHWICK NEXT to L and M Train,4077292,Unue,Brooklyn,Bushwick,40.69698,-73.90774,Private room,65,3,0,,,2,364 +35678273,Fordham University Bronx Get Away #4,35783912,Pi & Leo,Bronx,Fordham,40.86269,-73.89073,Private room,39,3,0,,,8,170 +35678627,Private Large Bedroom Apt w/ Bathroom (NO KITCHEN),88171838,Kimi,Brooklyn,Bay Ridge,40.6346,-74.03022,Private room,99,2,1,2019-06-23,1,4,169 +35679309,A unique cozy 2 bedroom apartment,268396733,Hirsh,Brooklyn,Kensington,40.64353,-73.9845,Entire home/apt,100,1,1,2019-06-28,1,1,96 +35679614,Private BR in Eco-Friendly East Village Apt,1764739,Bobby,Manhattan,East Village,40.72352,-73.97493,Private room,85,1,0,,,1,23 +35679813,Studio Style Basement in Shared Apartment,63356650,Rochelle,Brooklyn,Crown Heights,40.6771,-73.96007,Private room,60,20,0,,,1,38 +35679935,Casa de Marko,33555400,Marko,Queens,Briarwood,40.71288,-73.81368,Entire home/apt,300,2,0,,,1,12 +35680065,Room 1: Spacious Queen w/ Closet & Light breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.69134,-73.93288,Private room,75,1,2,2019-07-06,2,3,139 +35680174,Gorgeous 2 Bedroom apartment in Bushwick...,268405137,Maria,Brooklyn,Bushwick,40.69284,-73.91248,Entire home/apt,140,2,4,2019-07-03,4,1,359 +35680258,spacious sun-lit brooklyn apt by water,7073540,Nico,Brooklyn,Red Hook,40.68002,-74.0055,Entire home/apt,130,2,0,,,1,79 +35680818,Best Block in Soho Peaceful Private Room,263322673,Sofia,Manhattan,SoHo,40.72546,-74.0008,Private room,75,14,0,,,2,133 +35681056,"Elegant Times Square Apartment, with City Views!!!",268392801,Marisa,Manhattan,Hell's Kitchen,40.75597,-73.99457,Entire home/apt,251,3,3,2019-07-04,3,1,258 +35681112,Old world oasis of calm nestled in a vibrant hood,4363908,James Abordo,Brooklyn,Bedford-Stuyvesant,40.68479,-73.94416,Private room,75,2,0,,,1,14 +35681163,Comfy room in South Williamsburg- Big Screen TV,9843389,Lawrence,Brooklyn,Williamsburg,40.70816,-73.95591,Private room,100,1,1,2019-06-23,1,2,27 +35681619,Modern Bright 3bd/2ba (10 mins to NYC) w Roof Deck,69356879,Lacy,Brooklyn,Williamsburg,40.71668,-73.94252,Entire home/apt,295,2,0,,,1,300 +35681857,Stunning Brownstone Apt in Historic Fort Greene,12166612,Dana,Brooklyn,Fort Greene,40.68884,-73.9733,Entire home/apt,310,3,1,2019-07-05,1,1,5 +35682178,Comfy King-size Bedroom in NYC,268135013,Noel,Brooklyn,Bushwick,40.6944,-73.92531,Private room,69,1,1,2019-07-01,1,6,170 +35682486,1 pvt room w bath in fully furnished luxuary 2BHK,127821506,Arpit,Manhattan,Upper East Side,40.76814,-73.96088,Private room,125,1,0,,,1,20 +35682527,Friendly hosts,35620036,Temo,Manhattan,Harlem,40.82178,-73.93946,Private room,51,1,1,2019-07-03,1,1,45 +35682665,Big sunny room for women only,267912902,Shira,Brooklyn,Borough Park,40.62434,-73.98821,Private room,80,3,1,2019-06-25,1,2,179 +35682980,ENTIRE Home! 5BR/2BA + Private Garden Williamsburg,10353677,Dan,Brooklyn,Williamsburg,40.71283,-73.94278,Entire home/apt,395,2,0,,,1,351 +35683012,3 BEDROOMS IN BROOKLYN,219459418,Right,Brooklyn,Williamsburg,40.70905,-73.95484,Entire home/apt,450,2,0,,,1,345 +35683489,Brand new 2 BEDROOMS BROOKLYN,218666938,Casey,Brooklyn,Williamsburg,40.71011,-73.95782,Entire home/apt,500,3,0,,,1,362 +35683518,Sun-drenched Loft,3590361,L,Brooklyn,Boerum Hill,40.68612,-73.99024,Private room,99,1,1,2019-07-02,1,1,264 +35683776,"Cozy 1 BR by St. George Ferry., 2nd Floor apt.",268430876,Edilma,Staten Island,St. George,40.63772,-74.08315,Private room,42,1,0,,,1,87 +35684442,ROOM in safe clean apt NEAR SUBWAY,1100494,Mike&Mavi,Manhattan,Harlem,40.82292,-73.95598,Private room,50,30,0,,,3,338 +35684457,Brand new one bedroom UpperEastSide,268438637,Kenneth,Manhattan,Upper East Side,40.76938,-73.95143,Entire home/apt,249,1,1,2019-07-06,1,1,359 +35684596,Homey & Cozy room in queens!,83132880,Alyandry,Queens,Maspeth,40.73888,-73.89486,Private room,49,1,0,,,4,321 +35685857,NEW! CHARMING 2 BEDROOM APARTMENT IN MANHATTAN,78424147,Catherine,Manhattan,Washington Heights,40.84344,-73.93967,Entire home/apt,210,5,2,2019-07-01,2,1,354 +35686069,Perfect Two Bed Railroad Style Apartment,254422852,Ben,Manhattan,East Harlem,40.79522,-73.93918,Entire home/apt,225,4,2,2019-06-29,2,1,289 +35686533,The Outback Private's Escape,175730239,Baboucarr,Queens,Sunnyside,40.73902,-73.92686,Private room,59,3,2,2019-06-24,2,12,353 +35686575,Bright clean near metro,268149976,Lulu,Queens,Elmhurst,40.7315,-73.87931,Private room,35,1,2,2019-06-18,2,1,23 +35686594,Brownstone apt 2 bedrooms rent the entire apt,96608840,Jerry,Brooklyn,Bushwick,40.68434,-73.9064,Entire home/apt,90,3,1,2019-07-02,1,1,329 +35686679,Beautiful and spacious house in Forest Hills NY,141211593,Tamar,Queens,Forest Hills,40.71655,-73.85219,Entire home/apt,250,5,0,,,1,53 +35686816,Clinton Hill Dupex,50506922,Asli,Brooklyn,Clinton Hill,40.68927,-73.96542,Entire home/apt,125,3,0,,,1,31 +35687199,Nice Suite in Astoria 20min to Manhattan,1172202,Funda,Queens,Ditmars Steinway,40.77012,-73.90919,Private room,80,1,0,,,5,19 +35687862,Beautiful 3 bedroom apartment in East Williamsburg,268465931,Sumergida,Brooklyn,Williamsburg,40.7043,-73.94285,Entire home/apt,200,2,1,2019-07-01,1,1,338 +35688219,Brooklyn Home I,268468020,Tylor,Brooklyn,East Flatbush,40.641,-73.93467,Entire home/apt,98,1,0,,,2,88 +35688424,Bedroom + Ensuite Bath + Backyard in Bedstuy,20086738,Kristin Page,Brooklyn,Bedford-Stuyvesant,40.68028,-73.91829,Private room,105,2,0,,,2,17 +35691113,Brand NEW 2br/2bath in Lower Manhattan,268491219,Stas,Manhattan,Two Bridges,40.71143,-73.99557,Entire home/apt,285,2,0,,,1,338 +35691215,Spacious ROOM in Luxury Condo with Gym & BBQ,5028297,Charles,Brooklyn,Fort Greene,40.69416,-73.9809,Private room,159,2,1,2019-07-01,1,1,327 +35692073,Prime location! 5BR with 3BA Townhouse + Patio!,268207118,Rosaline,Manhattan,Midtown,40.75959,-73.96473,Entire home/apt,279,3,2,2019-06-22,2,1,244 +35693860,Spacious Private Room on Quiet Tree-Lined Street,38209756,Jay,Brooklyn,Clinton Hill,40.69382,-73.96644,Private room,60,1,0,,,1,9 +35699079,Harlem Retreat,57627694,Olga,Manhattan,Harlem,40.82339,-73.95106,Entire home/apt,91,1,0,,,1,50 +35699567,studio type large next to LGA/JFK/Manhattan20 min,268537798,Liz,Queens,Jackson Heights,40.7486,-73.88469,Private room,99,2,0,,,1,90 +35700408,Cute and convenient near Central Park,67433858,Peter,Manhattan,East Harlem,40.78991,-73.94816,Entire home/apt,130,3,0,,,1,38 +35700700,Private clean studio for adults *,96659533,Angelica,Brooklyn,Bushwick,40.69429,-73.91385,Private room,70,2,2,2019-07-07,2,2,331 +35702066,Private Bedroom in cozy apartment,13830544,Renee,Brooklyn,Bedford-Stuyvesant,40.69386,-73.93256,Private room,52,4,1,2019-06-22,1,3,325 +35702658,Bedroom in a Loft 12 minutes from Soho,22382915,Alessandro,Brooklyn,Bedford-Stuyvesant,40.69207,-73.93833,Private room,69,2,0,,,1,0 +35702864,LOVELY separate apartment in Bedstuy brownstone,6712411,John,Brooklyn,Bedford-Stuyvesant,40.68273,-73.9193,Entire home/apt,118,2,3,2019-07-01,3,1,101 +35703509,Luxury;Threes Company's Shared Room,175730239,Baboucarr,Queens,Sunnyside,40.74083,-73.92821,Shared room,30,3,0,,,12,360 +35703583,Prospect Park /Park Slope Huge Apartment,17426621,Claudia,Brooklyn,South Slope,40.66438,-73.97931,Entire home/apt,195,4,0,,,1,39 +35704185,Cute studio with adorable cat,4205261,Stephanie,Brooklyn,Clinton Hill,40.68729,-73.96766,Entire home/apt,125,2,0,,,2,37 +35704764,Spacious modern room close to Manhattan!!,268572259,Sergii,Brooklyn,Bushwick,40.70322,-73.92718,Private room,79,30,1,2019-06-26,1,3,297 +35704999,Comfortable 2BR Apartment in City Center ♛,238324936,Marcel,Manhattan,Hell's Kitchen,40.765,-73.98737,Entire home/apt,300,1,0,,,3,334 +35705257,International Shared Wiggle Room BEST for Groups,175730239,Baboucarr,Queens,Sunnyside,40.73996,-73.92829,Shared room,30,3,2,2019-07-01,2,12,354 +35705482,Private room close to Manhattan (L and M train),268572259,Sergii,Brooklyn,Bushwick,40.70483,-73.92565,Private room,79,30,1,2019-06-26,1,3,365 +35705568,Trendy Queen Bed room w/private Bath in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69624,-73.92554,Private room,59,1,4,2019-07-06,4,6,160 +35706068,wait until later,35741633,Chen,Queens,Long Island City,40.74869,-73.94294,Entire home/apt,2000,1,0,,,1,365 +35706150,Shared Spaces in Candlelight;Quiescence w Relaxing,175730239,Baboucarr,Queens,Sunnyside,40.74064,-73.92871,Shared room,30,3,0,,,12,351 +35706482,Trendy Williamsburg Apartment,16342788,Carlos,Brooklyn,Williamsburg,40.7069,-73.94521,Private room,79,1,0,,,2,342 +35706862,Prime Williamsburg - 2BR - 10 min to Manhattan!,268585880,Angelica,Brooklyn,Williamsburg,40.71564,-73.94497,Entire home/apt,80,1,0,,,2,2 +35706957,Room in Central Harlem Close to Everything!!,89862690,Idara,Manhattan,Harlem,40.81395,-73.94199,Private room,75,1,1,2019-06-21,1,1,65 +35707070,Nice Room with Water Views,22071068,Max,Brooklyn,Williamsburg,40.70929,-73.96889,Private room,115,1,0,,,1,90 +35707097,A Shared Space in a Shared Room,175730239,Baboucarr,Queens,Sunnyside,40.74088,-73.92726,Shared room,30,3,1,2019-06-29,1,12,358 +35707367,Great studio located in Heart of Chelsea,266833571,Ezequiel,Manhattan,Chelsea,40.7503,-73.99746,Entire home/apt,175,3,3,2019-06-30,3,1,49 +35707474,Backyard Sleeping,175730239,Baboucarr,Queens,Sunnyside,40.7389,-73.92792,Private room,89,1,0,,,12,365 +35707595,NYC Lower Eastside loft room,36649618,Emilio,Manhattan,Lower East Side,40.71722,-73.98388,Private room,150,1,2,2019-07-01,2,1,58 +35707776,Share Room;Relaxing Guaranteed;Or REFUND !!,175730239,Baboucarr,Queens,Sunnyside,40.739,-73.92796,Shared room,30,3,0,,,12,360 +35707820,"Beautiful Midtown Apt by Grand Central, Sleeps 5!",141059668,Tom,Manhattan,Midtown,40.75237,-73.97092,Entire home/apt,150,1,0,,,1,223 +35707944,Private Yard / Williamsburg / 10 min to Manhattan,268585880,Angelica,Brooklyn,Williamsburg,40.71659,-73.94397,Entire home/apt,80,1,0,,,2,1 +35707945,The Heartbeat of Harlem,104151293,Jacqueline,Manhattan,East Harlem,40.80921,-73.94019,Entire home/apt,160,1,1,2019-06-30,1,1,26 +35708459,ROOM 1,6270968,Ryan,Brooklyn,Bedford-Stuyvesant,40.68364,-73.94067,Private room,43,3,0,,,2,320 +35708807,NEW ENTIRE HOME BEAUTIFUL 3BED/2.5BATH DUPLEX,12549759,Koen,Brooklyn,Bedford-Stuyvesant,40.68575,-73.92046,Entire home/apt,260,2,1,2019-07-01,1,2,36 +35709113,Centrally Located Private 2BR Residence ♛,224731704,Andrew,Manhattan,Hell's Kitchen,40.7655,-73.98871,Entire home/apt,300,1,0,,,3,350 +35709161,"Beautiful Midtown Apt by Grand Central, Sleeps 4!",41833764,Lior,Manhattan,Midtown,40.75174,-73.9706,Entire home/apt,145,1,1,2019-06-30,1,1,277 +35709450,"Best SOHO LOCATION, 2 BEDROOMS",253334687,Emma,Manhattan,Nolita,40.72226,-73.99351,Entire home/apt,400,3,3,2019-06-26,3,1,312 +35709682,"Shared Spaces;Safe,Great Location 15 to Times Sq",175730239,Baboucarr,Queens,Sunnyside,40.73883,-73.92698,Shared room,30,3,2,2019-06-24,2,12,327 +35709724,Private Studio steps from Herald Square ☆,218335154,Nelson,Manhattan,Midtown,40.74339,-73.98205,Entire home/apt,250,1,0,,,2,360 +35709825,Studio w Laundry Minutes from Major Attractions ☆,218335154,Nelson,Manhattan,Midtown,40.74335,-73.98287,Entire home/apt,250,1,3,2019-07-01,3,2,360 +35709849,Palace of Perhaps (Bushwick/Ridgewood),24294179,Alexander,Queens,Ridgewood,40.70084,-73.90843,Private room,48,1,2,2019-07-07,2,1,17 +35709875,BRAND NEW! Brooklyn 2 bedrooms,229725669,Sofia,Brooklyn,Williamsburg,40.7113,-73.9576,Entire home/apt,400,3,0,,,1,359 +35709924,"❥❥❥NYC apt: 4min/subway, 25m/city, 20m/LGA,JFK❥❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.6935,-73.86837,Entire home/apt,145,3,0,,,6,8 +35710204,The N residence,136408243,David,Brooklyn,Midwood,40.61354,-73.96316,Private room,140,1,0,,,1,364 +35710560,"❥❥1*NYC Cozy: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69343,-73.86745,Private room,60,3,0,,,6,50 +35710684,"Large Midtown Apartment by Grand Central, Sleeps 4",143959643,Gispan,Manhattan,Midtown,40.75284,-73.97088,Entire home/apt,145,1,0,,,1,310 +35710697,Prime East Village *Sunny & Spacious* 2BR Flat,268614079,Andrew,Manhattan,East Village,40.72513,-73.9839,Entire home/apt,315,5,2,2019-07-01,2,1,160 +35710939,Midtown 2 BR Private Apt for Urban Dwellers ✧,112799848,Arthur,Manhattan,Hell's Kitchen,40.76433,-73.993,Entire home/apt,300,1,0,,,3,342 +35710965,Charming Authentic NYC Home 12 min to Manhattan,10061222,Rob,Queens,Astoria,40.75909,-73.92227,Private room,95,1,0,,,1,355 +35711228,Trendy East Village apt for 4! Street level apt,4210130,Zachary,Manhattan,East Village,40.72438,-73.98901,Entire home/apt,199,3,6,2019-07-06,6,1,98 +35711402,Amazing Brooklyn 1Bd with Private Balcony,12061757,Taaj,Brooklyn,Brownsville,40.67511,-73.90836,Entire home/apt,100,2,0,,,1,53 +35711535,"❥❥2*NYC Cozy: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69482,-73.86747,Private room,60,3,0,,,6,41 +35711784,Private 1BR Apt 3min from Times Square,268352337,Logan,Manhattan,Hell's Kitchen,40.76494,-73.98874,Entire home/apt,250,1,0,,,2,360 +35711828,Cosy Bedroom in CITY CENTER,268276813,Andy,Manhattan,Hell's Kitchen,40.76565,-73.99392,Private room,150,1,0,,,3,365 +35712132,NEW MODERN & CLASSIC ENTIRE 2BED PRIVATE ENTRANCE,12549759,Koen,Brooklyn,Bedford-Stuyvesant,40.68656,-73.91921,Entire home/apt,160,4,2,2019-06-20,2,2,34 +35712515,PAULINE'S PLACE 1 BR APT 5 Min from JFK,259207391,Pauline,Queens,Jamaica,40.67632,-73.79856,Private room,70,1,3,2019-07-01,3,3,174 +35712642,PRIVATE BR 5min to TIMES SQ,268276813,Andy,Manhattan,Hell's Kitchen,40.7639,-73.99542,Private room,150,1,0,,,3,362 +35712883,Lovely Spacious Studio in Bedstuy,268627924,Alison,Brooklyn,Bedford-Stuyvesant,40.68242,-73.95348,Shared room,90,3,0,,,1,38 +35713130,Private 2BR apartment in Historic Hell’s Kitchen,268276813,Andy,Manhattan,Hell's Kitchen,40.7645,-73.99434,Entire home/apt,300,1,0,,,3,362 +35713184,"Prospect Park Historic 1BR near 2,5,Q, B, S trains",11503187,A,Brooklyn,Prospect-Lefferts Gardens,40.66085,-73.95586,Entire home/apt,1400,10,1,2019-07-02,1,1,17 +35713272,Bright & Modern East Village Apartment,268631641,Harris,Manhattan,East Village,40.72198,-73.97678,Private room,97,1,1,2019-06-20,1,1,1 +35713295,Apartment Walking Distance to Central Park,75285802,Lauren,Manhattan,East Harlem,40.78861,-73.94523,Entire home/apt,150,4,0,,,2,35 +35713310,Premier Two Queens close to Central Park,261761196,Park Central,Manhattan,Midtown,40.76542,-73.98192,Private room,300,1,0,,,8,321 +35713334,Two Doubles in Historical Central Park Hotel,261761196,Park Central,Manhattan,Midtown,40.76523,-73.98049,Private room,250,1,0,,,8,306 +35713354,Carnegie Hall Two Queens with Corner View,261761196,Park Central,Manhattan,Midtown,40.76546,-73.9806,Private room,300,1,0,,,8,317 +35713596,"Spacious 2 Bed, 2 Bath in Vibrant East Village",268634598,James,Manhattan,East Village,40.72632,-73.9846,Entire home/apt,325,5,1,2019-06-27,1,1,163 +35714753,The Jamaica Experience,46662635,DuVall,Queens,Jamaica,40.70477,-73.80335,Entire home/apt,44,1,3,2019-07-03,3,1,330 +35715071,Shared Spaces;15 m to Times SQ;Safest Area in NY,175730239,Baboucarr,Queens,Sunnyside,40.73864,-73.92728,Shared room,30,3,2,2019-07-01,2,12,361 +35715171,Host yr PARTY in style -Manhattan ROOF TOP for 25,71276635,Joe,Manhattan,Washington Heights,40.83571,-73.94179,Entire home/apt,750,1,1,2019-07-07,1,5,364 +35715382,Nice thing,208559533,Mechel,Brooklyn,Bedford-Stuyvesant,40.69528,-73.95603,Shared room,115,1,0,,,1,89 +35715791,Elegant private bedroom in sunny modern home #1,101771985,Yudis,Manhattan,Harlem,40.8076,-73.94886,Private room,80,1,0,,,3,127 +35716058,Lux 23rd Fl. Wall St. Apartment,7169907,Nikki,Manhattan,Financial District,40.70424,-74.00789,Entire home/apt,135,2,2,2019-07-05,2,1,2 +35716084,Private rooms And Matchless Location,233050530,Suleyman,Queens,Woodside,40.74568,-73.90844,Private room,49,2,0,,,1,177 +35716310,Cool palce ✌✌✌ for 2 people,268657406,Alex,Manhattan,East Harlem,40.80935,-73.93812,Private room,270,1,3,2019-06-29,3,1,30 +35716452,big studio loft with private rooftop,17601262,Enrico,Brooklyn,East Flatbush,40.6509,-73.95108,Entire home/apt,200,3,0,,,2,324 +35717310,Apartment in Williamsburg,10086230,Ksenia,Brooklyn,Williamsburg,40.7113,-73.95395,Entire home/apt,200,10,0,,,1,27 +35717406,"マンハッタン、駅から徒歩4分でどこに行くのにも便利な場所!女性の方希望,キレイなお部屋。",63513465,Mika,Manhattan,East Harlem,40.80347,-73.93522,Private room,70,1,0,,,1,314 +35717409,Share Room;Cozy;Silent and Safe 15 m to Times Sq,175730239,Baboucarr,Queens,Sunnyside,40.73913,-73.92692,Shared room,30,3,0,,,12,359 +35717460,Comfortable Stay near Yankee Stadium,264676469,Diane,Bronx,Highbridge,40.83163,-73.93077,Private room,80,1,1,2019-06-21,1,1,2 +35717508,PRIME SOHO / Nolita 2 bedroom apartment,5678260,Louise,Manhattan,Nolita,40.72165,-73.99584,Entire home/apt,249,3,0,,,1,85 +35717719,"Location is Everything, plus all this! NYC Luxury",257033785,Amy,Manhattan,Upper West Side,40.77219,-73.98991,Entire home/apt,400,2,0,,,1,15 +35717735,AMAZING ONE BED IN MEATPACKING/CHELSEA MARKET!!,268271871,Miguel,Manhattan,Chelsea,40.74499,-74.00704,Entire home/apt,399,3,1,2019-06-23,1,1,179 +35717846,Share;Almost Heart of Manhattan;Safe and Silent !!,175730239,Baboucarr,Queens,Sunnyside,40.73997,-73.92655,Shared room,30,3,1,2019-06-20,1,12,345 +35718061,"Share Spaces;Almost Manhattan #1 Safety,Silent !!",175730239,Baboucarr,Queens,Sunnyside,40.74033,-73.92646,Shared room,30,3,2,2019-06-19,2,12,350 +35718147,New room! Cute & clean. Close to train. Wood floor,128843123,Ashley,Brooklyn,East New York,40.66784,-73.88575,Private room,45,1,0,,,2,365 +35718438,"Sunny, Spacious, Beautiful Apt",76407060,Sammie,Manhattan,East Village,40.72503,-73.98546,Entire home/apt,295,1,1,2019-06-30,1,1,11 +35718516,Luxury High Rise Condominium 2 Bedroom,267483864,Henry,Manhattan,Murray Hill,40.74457,-73.97493,Entire home/apt,449,1,1,2019-07-04,1,1,216 +35718849,PRIVACY CHELSEA BEAUTY WITH PRIVATE ENTRANCE,14563616,Anna/Phillip,Manhattan,Chelsea,40.73724,-73.99429,Entire home/apt,249,1,5,2019-07-01,5,2,125 +35719112,King bed. New room! Wood floors. Train is close,128843123,Ashley,Brooklyn,East New York,40.66588,-73.891,Private room,48,1,1,2019-06-24,1,2,334 +35719162,2 Bedroom Apartment in SoHo,1221359,Aleksei,Manhattan,Lower East Side,40.72076,-73.98843,Entire home/apt,400,5,0,,,1,173 +35720262,Best manhattan view and 5 min into manhattan,265422938,泽宇,Queens,Long Island City,40.74639,-73.9435,Private room,149,2,0,,,2,23 +35720329,Amazing Location in Williamsburg with 4 Bedrooms,222287033,Francis,Brooklyn,Williamsburg,40.71151,-73.96515,Entire home/apt,350,3,2,2019-06-20,2,5,347 +35721596,Homey and modern 1BR,21942647,Langston,Queens,Long Island City,40.75777,-73.93509,Private room,125,1,0,,,1,358 +35726476,Queen Sized Bedroom with Frontal Ocean View,26935419,Nikki,Brooklyn,Brighton Beach,40.5771,-73.96499,Private room,120,1,0,,,1,252 +35726877,Manhattan Apartment Near it All!,11490581,Pedro,Manhattan,Hell's Kitchen,40.75292,-73.99487,Entire home/apt,249,2,1,2019-06-23,1,1,7 +35727309,Prime Midtown West! Spacious & Renovated 3BR!,268294305,Karissa,Manhattan,Hell's Kitchen,40.75499,-73.99437,Entire home/apt,299,3,0,,,1,237 +35728246,Massive Victorian Home with Parking!,122178596,Elana,Brooklyn,Flatlands,40.62948,-73.94088,Entire home/apt,195,2,0,,,3,80 +35728640,Brooklyn Home II,268468020,Tylor,Brooklyn,East Flatbush,40.64262,-73.93621,Private room,101,1,0,,,2,116 +35729594,Rose's Brooklyn Oasis - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.6456,-73.95065,Private room,40,1,1,2019-06-30,1,2,151 +35729630,Elegant private bedroom in sunny modern home #2,101771985,Yudis,Manhattan,Harlem,40.80609,-73.9484,Private room,90,1,0,,,3,121 +35732634,Rose's Brooklyn Oasis 2 - Close to Subway!,268757078,Vinette,Brooklyn,East Flatbush,40.64457,-73.94915,Private room,35,1,3,2019-07-07,3,2,171 +35732847,A lovely room in a great house close to RUMC.,102263916,John,Staten Island,Tompkinsville,40.63281,-74.09132,Private room,50,1,4,2019-07-07,4,2,84 +35733228,Relax comfortably 1BR w/AC in the Heart of Queens1,268784513,Amit,Queens,East Elmhurst,40.75938,-73.88219,Private room,70,1,8,2019-07-07,8,3,342 +35734363,2 Bed/2 Bath Upper East Manhattan Luxury Doorman,83934468,B,Manhattan,Upper East Side,40.78149,-73.95168,Entire home/apt,400,14,0,,,1,25 +35734937,Deluxe bedroom w/ 2 beds - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75267,-73.93111,Private room,59,1,0,,,5,351 +35735657,A Stylist's entire apt (2BDs) in heart of NYC!!,28580275,Sommy,Manhattan,Midtown,40.75823,-73.96509,Entire home/apt,290,1,0,,,4,286 +35735822,"Great Room! Great Price! +Can wait to see you !",268198789,Davica,Brooklyn,Cypress Hills,40.67804,-73.86761,Private room,48,2,1,2019-07-02,1,2,348 +35736396,Private Cozy Apartment,220125576,Yogi,Queens,Ozone Park,40.6726,-73.84567,Entire home/apt,85,3,1,2019-07-08,1,3,52 +35736648,Cozy private Apartment in great area 30min to NYC,110644265,Ahmad,Queens,Rego Park,40.72733,-73.86047,Entire home/apt,75,1,2,2019-06-23,2,1,1 +35736834,Gorgeous Room in Chic Apartment! PRIVATE BACKYARD,10690947,Melody,Brooklyn,Bushwick,40.68787,-73.90601,Private room,60,2,0,,,1,20 +35737107,"BEAUTIFUL MINI GYM, ELEVATOR, QUEEN SIZE BEDROOM",245781620,Amina,Bronx,Kingsbridge,40.88587,-73.89865,Private room,80,4,0,,,1,87 +35737368,Cozy Room w/ Private Lounge Nolita,26781753,Burtay,Manhattan,Nolita,40.72247,-73.99473,Private room,95,7,0,,,1,125 +35738384,Fully equipped 2 bedroom/Heart of Bushwick.,9510645,Rylan,Brooklyn,Bushwick,40.70205,-73.92798,Entire home/apt,225,2,0,,,2,161 +35738942,Spacious apartment with amazing natural light,3741794,Jason,Queens,Sunnyside,40.74709,-73.9138,Entire home/apt,150,5,0,,,1,359 +35738953,Bedroom in Downtown Brooklyn Near Manhattan,268832581,Gregory,Brooklyn,Downtown Brooklyn,40.69733,-73.98427,Private room,90,1,0,,,1,189 +35739486,Cozy Home in the suburbs,140665873,Rehat,Queens,Jamaica Estates,40.71797,-73.78478,Private room,50,1,3,2019-06-30,3,1,179 +35739927,"Charming ""Library"" Apt, Heart of Greenwich Village",4129805,Evelyn,Manhattan,West Village,40.73286,-74.00244,Entire home/apt,175,2,2,2019-06-21,2,5,79 +35740337,"CENTRAL PARK APARTMENT +BEST LOCATION IN NYC",4955986,Michael,Manhattan,Midtown,40.76364,-73.97589,Entire home/apt,249,2,0,,,1,253 +35740429,Affordable 3 beds / 2 baths Grand central gem,268838097,Larisa,Manhattan,Murray Hill,40.74889,-73.9747,Entire home/apt,399,5,0,,,1,208 +35740468,Studio at Hilton Club Residence - Manhattan's Best,6524762,Armstrong,Manhattan,Midtown,40.76303,-73.97896,Entire home/apt,380,1,0,,,3,364 +35740661,Brickwall 3BR 5bed 10pl - Prime location Times Sq.,268847927,Dae,Manhattan,Hell's Kitchen,40.762,-73.99158,Entire home/apt,399,3,0,,,1,218 +35740716,"Home Away, JFK Apartment",145406361,Ken & Janelle,Queens,Jamaica,40.68474,-73.79197,Entire home/apt,79,1,0,,,1,167 +35740944,Great affordable space for large groups up to 30,122178596,Elana,Brooklyn,Flatlands,40.62806,-73.94137,Entire home/apt,649,1,0,,,3,64 +35741117,Rare Spacious 2 Bedroom apartment with yard...,268852377,Wanderson,Brooklyn,Bedford-Stuyvesant,40.69819,-73.94719,Entire home/apt,160,2,1,2019-07-01,1,1,347 +35741268,Studio at Hilton Club Residence - Manhattan's Best,6524762,Armstrong,Manhattan,Midtown,40.76218,-73.98002,Entire home/apt,380,2,0,,,3,2 +35742470,⍟Times Square | The Feeling of Home in Manhattan⍟,181773256,Laura,Manhattan,Midtown,40.7509,-73.98557,Entire home/apt,450,1,0,,,1,65 +35742633,Luxury new 1 bed apartment in East Williamsburg,265866685,Mindy,Brooklyn,Bushwick,40.69796,-73.92915,Entire home/apt,198,30,0,,,2,179 +35742909,The waterview quiet area and just everything,268868462,Duane,Brooklyn,Greenpoint,40.7309,-73.95969,Private room,200,4,0,,,1,365 +35743508,"20 Min to Manhattan, Big 3 bed RM Apt in Ridgewood",267405973,Peter,Queens,Ridgewood,40.70141,-73.90415,Entire home/apt,195,18,0,,,2,347 +35744074,Sparkling 3BR near subway/beach - with a yard!,73670512,Monika,Brooklyn,Gravesend,40.59301,-73.975,Entire home/apt,140,3,3,2019-07-07,3,2,222 +35744269,Single Professional Room with Private Bath,261187437,Shasha,Brooklyn,Borough Park,40.63524,-74.0039,Private room,55,1,1,2019-06-23,1,6,358 +35744524,Comfy house close to Central Brooklyn,258885293,Gedalia,Brooklyn,East Flatbush,40.65937,-73.9348,Private room,59,1,3,2019-07-06,3,1,343 +35744751,LIC Jackson park luxury apartment Queen Plaza,245830692,Ruijia,Queens,Long Island City,40.74776,-73.93869,Private room,65,2,3,2019-06-29,3,1,26 +35745348,Private room in Greenwich Village,265901814,Evette,Manhattan,West Village,40.73638,-74.00057,Private room,125,2,0,,,2,180 +35745881,Large room in a cozy and very clean apt,129797713,Rosa,Queens,Astoria,40.76375,-73.91061,Private room,70,7,0,,,1,222 +35747359,"Lovely*Bright Place in Brooklyn/ Nearby L, G train",22134437,Grace,Brooklyn,Greenpoint,40.72256,-73.94889,Private room,85,2,2,2019-06-30,2,1,103 +35752161,Private Balcony & Rooftop Deck in New Building,15020878,Vallery,Manhattan,East Harlem,40.80622,-73.93875,Entire home/apt,115,2,0,,,1,3 +35753330,Cozy bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67442,-73.92949,Private room,50,1,4,2019-07-06,4,3,364 +35754234,Sunny and clean bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67615,-73.93046,Private room,50,1,5,2019-07-05,5,3,361 +35754565,Bright private bedroom 25 min from Manhattan,127927020,Dmitry And Anya,Brooklyn,Crown Heights,40.67631,-73.92912,Private room,58,1,2,2019-06-18,2,3,363 +35754614,Chelsea Sunroof,180237401,Jarrod,Manhattan,Chelsea,40.74443,-73.9967,Entire home/apt,200,4,0,,,1,31 +35756536,Beautiful apt with prime LES location,2351947,Caroline,Manhattan,Lower East Side,40.72065,-73.98733,Entire home/apt,280,2,0,,,1,17 +35757257,2 BATHROOMS Times Sq. Duplex for upto 8 people,18288234,Lisa And Mike,Manhattan,Hell's Kitchen,40.76035,-73.99039,Entire home/apt,379,3,0,,,1,333 +35757611,TriBeCa / Fidi in the sky,181143,Michael,Manhattan,Financial District,40.71013,-74.00511,Entire home/apt,200,4,1,2019-07-01,1,1,108 +35758732,"The Gallery Bed & Breakfast in Bed-Stuy, Brooklyn",21299191,The Gallery BnB,Brooklyn,Bedford-Stuyvesant,40.68794,-73.93626,Private room,175,2,3,2019-07-07,3,1,358 +35760845,Cozy UWS Only two blocks away from Central Park!,261451511,Valeria,Manhattan,Upper West Side,40.78527,-73.97623,Private room,150,2,3,2019-06-30,3,1,21 +35762030,Francesco’s Manhattan Private Room w/private bath,50278442,Francesco,Manhattan,Morningside Heights,40.80528,-73.96547,Private room,70,30,0,,,3,328 +35762202,Basement apartment in single family home,122178596,Elana,Brooklyn,Flatlands,40.62987,-73.94267,Entire home/apt,80,2,0,,,3,65 +35763026,Beautiful location for enjoy in NYC,188498431,Han,Queens,Sunnyside,40.7388,-73.92282,Private room,65,2,3,2019-07-06,3,6,347 +35763126,Charming & Stylish Home in Chelsea,44138549,Jonathan,Manhattan,Chelsea,40.74357,-73.99751,Entire home/apt,260,5,0,,,1,17 +35765145,Big comfortable private bedroom in Upper Manhattan,266770733,Eduardo,Manhattan,Inwood,40.85988,-73.92703,Private room,50,2,1,2019-06-24,1,1,11 +35766124,"Sunlit Fabulous ""Treehouse"" in Greenwich Village",269055881,Allen,Manhattan,West Village,40.73243,-74.00333,Private room,160,3,1,2019-06-26,1,1,52 +35766431,Urban Oasis Apartment for Fam or Friends,433917,Daniela,Brooklyn,Bedford-Stuyvesant,40.67913,-73.94872,Entire home/apt,100,3,0,,,1,28 +35766933,Great place,94214493,Dadrine,Brooklyn,East Flatbush,40.65643,-73.91875,Private room,80,7,0,,,9,365 +35767325,one privet bedroom cheap price perfect for singel,148004680,Matanel,Brooklyn,Midwood,40.62245,-73.9696,Private room,35,1,1,2019-07-01,1,1,50 +35767582,Modern double bed in large duplex (in Gramercy),7761295,Macha,Manhattan,Gramercy,40.73808,-73.98325,Private room,85,2,0,,,1,12 +35767632,Brooklyn Apt: Redhook,269070501,Erich,Brooklyn,Red Hook,40.67887,-74.00582,Entire home/apt,100,1,0,,,1,43 +35767995,The Clifton Eastern Room,260891097,Earl,Brooklyn,Bedford-Stuyvesant,40.6898,-73.95333,Private room,75,2,0,,,2,88 +35768121,Murray Hill studio,2448443,Alex,Manhattan,Murray Hill,40.74849,-73.97708,Entire home/apt,140,3,1,2019-06-17,1,1,3 +35768150,"Stunning, Renovated 2bed/1.5bath Apt in Prime LES!",268205314,Vanessa,Manhattan,Chinatown,40.71598,-73.99549,Entire home/apt,299,1,2,2019-06-28,2,1,334 +35768266,Private bedroom in a PENTHOUSE apartment,269078087,Aditya,Manhattan,East Harlem,40.79846,-73.93359,Private room,62,1,4,2019-06-28,4,1,7 +35768324,Private Affordable room in the heart of Harlem NYC,268896283,Khady,Manhattan,Harlem,40.81566,-73.94174,Private room,45,1,1,2019-07-01,1,2,73 +35768335,Room with private bathroom in Brooklyn,238908845,Thibault,Brooklyn,Bushwick,40.69328,-73.92085,Private room,55,2,0,,,1,5 +35768373,Entire Luxurious Spacious Studio! NYC!,41829977,Sonam,Queens,Elmhurst,40.74638,-73.87353,Private room,99,1,0,,,2,161 +35768735,"Large Bright Studio,Sleeps 5 w/2 Queen Beds&Futon",21261408,Jay,Brooklyn,Clinton Hill,40.68991,-73.96132,Private room,130,1,2,2019-07-01,2,6,345 +35768873,Brand new 3 BD apartment a minute from G train,251817531,Kieu,Brooklyn,Bedford-Stuyvesant,40.68793,-73.95457,Entire home/apt,300,2,0,,,4,275 +35769795,Carlos apartment,269095308,Juan,Manhattan,East Harlem,40.79234,-73.94592,Private room,75,4,1,2019-06-23,1,1,24 +35770104,Townhouse in Bed Stuy with beautiful garden,18142449,Mara,Brooklyn,Bedford-Stuyvesant,40.68743,-73.95257,Entire home/apt,350,5,0,,,1,22 +35770530,"Spacious, Luxury Duplex with Outside Deck",37888781,Fran,Brooklyn,Bedford-Stuyvesant,40.67884,-73.92611,Entire home/apt,195,2,1,2019-06-17,1,1,71 +35770687,Bright & quiet room 25 min from Downtown Manhattan,178036911,Kate And Alex,Brooklyn,Bedford-Stuyvesant,40.68298,-73.9298,Private room,60,1,4,2019-07-07,4,2,354 +35770783,"Cozy, sun-drenched, 1st floor apt in Astoria / LIC",269105402,Jennifer,Queens,Long Island City,40.76049,-73.9288,Entire home/apt,110,2,2,2019-07-07,2,1,21 +35771605,Master Bedroom with Private Bathroom,121917249,Yijun,Brooklyn,Clinton Hill,40.6941,-73.96295,Private room,70,3,0,,,2,25 +35771730,Cozy bedroom close to Manhattan,178036911,Kate And Alex,Brooklyn,Bedford-Stuyvesant,40.68293,-73.92924,Private room,50,1,5,2019-07-05,5,2,359 +35771989,Bedroom with Private bathroom,121917249,Yijun,Brooklyn,Clinton Hill,40.69333,-73.965,Private room,80,7,0,,,2,37 +35772228,Medical Student Apartment D-Shared,146776990,Rosemarie,Brooklyn,East Flatbush,40.65465,-73.93383,Shared room,33,31,0,,,4,41 +35772374,Luxury Brooklyn Condo only 30 min to NYC,264272029,Amer,Brooklyn,East Flatbush,40.63673,-73.94988,Entire home/apt,399,2,2,2019-06-30,2,1,161 +35772999,Luxury Penthouse – Chelsea – Manhattan,20049684,Booking,Manhattan,Chelsea,40.74887,-74.00498,Entire home/apt,350,3,0,,,1,328 +35773859,Spacious Room Steps to Prospect Park (built 2017),269121359,Azure,Brooklyn,Prospect-Lefferts Gardens,40.65603,-73.95832,Private room,100,10,0,,,1,59 +35774669,Serene modern space in the heart of greenpoint!,25490213,Tony,Brooklyn,Greenpoint,40.72549,-73.94912,Private room,95,2,1,2019-06-24,1,1,67 +35776956,"luxury apt in long lsland city +1min to subway",221012726,Lyn,Queens,Long Island City,40.74786,-73.93889,Private room,46,1,0,,,1,6 +35777392,SPACIOUS STUDIO FLAT In Tree-Lined Neighborhood,117987098,Tam,Brooklyn,Kensington,40.63293,-73.97117,Private room,86,2,0,,,1,365 +35783252,Feel like home room in Manhattan,98662265,Yana,Manhattan,Midtown,40.75061,-73.97233,Private room,85,1,1,2019-06-20,1,1,43 +35783942,Cozy one bedroom in the city!!,37140959,Cindy,Manhattan,East Village,40.72281,-73.98099,Private room,66,3,0,,,1,9 +35784049,Perfect NYC crib for Explorers & Travelers,269193265,Ana,Manhattan,Murray Hill,40.74611,-73.974,Private room,105,1,1,2019-06-30,1,1,38 +35785973,Custom home by lake and NYC,20024538,Liza,Staten Island,Arrochar,40.5949,-74.07084,Entire home/apt,199,1,1,2019-06-30,1,1,81 +35788042,☕ ✈Fantastic Room ⚡⚡ ✈,269075374,Alex,Manhattan,East Harlem,40.80911,-73.93698,Private room,150,1,0,,,1,7 +35788732,Cozy 2 Bedroom apartment next to Manhattan!!,163360671,Jenny,Queens,Astoria,40.75732,-73.91557,Entire home/apt,135,3,0,,,1,227 +35789093,Renovated 2 Bedroom next to Manhattan!!!,258094448,Anna,Queens,Astoria,40.75916,-73.92541,Entire home/apt,120,3,0,,,1,105 +35789987,Brand new fully furnished studio apartment!,59521234,Krysta,Brooklyn,Crown Heights,40.66986,-73.95598,Entire home/apt,120,1,0,,,1,14 +35790090,Authentic Chelsea Studio Loft,89629761,Juan,Manhattan,Chelsea,40.74913,-73.99575,Entire home/apt,89,2,0,,,1,37 +35790417,Cozy 1 Bedroom Apartment next to Manhattan!!!,258089128,Evelina,Queens,Astoria,40.76019,-73.92489,Entire home/apt,135,3,0,,,1,109 +35791289,Renta de Habitación a una cuadra de Central Park,29340158,Enrique,Manhattan,Upper West Side,40.79618,-73.96312,Private room,43,10,0,,,1,128 +35791325,Stunning Full Floor Apartment in the Village,1238383,Dave,Manhattan,Greenwich Village,40.72935,-73.99934,Entire home/apt,500,4,0,,,1,74 +35792068,"Entire Apartment. One block to Bars, Coop, Qtrain.",198020385,Margaret,Brooklyn,Flatbush,40.63704,-73.96693,Entire home/apt,130,3,2,2019-07-06,2,1,33 +35792968,Spacious 3 Bedroom 5 mins way from Manhattan!!!,257680857,Daniella,Queens,Long Island City,40.7537,-73.93505,Entire home/apt,139,3,0,,,1,105 +35793455,Massive Sun Filled East Village Bedroom with Roof,28103718,Patrick,Manhattan,East Village,40.7319,-73.98981,Private room,150,3,1,2019-06-30,1,1,209 +35793693,Sonder | 116 John | Cozy Studio + Laundry,219517861,Sonder (NYC),Manhattan,Financial District,40.70831,-74.00642,Entire home/apt,180,29,0,,,327,342 +35793784,Sonder | 116 John | Tasteful 2BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70833,-74.00497,Entire home/apt,270,29,0,,,327,350 +35793925,Private studio. Near Bars & Q-train. Gay friendly,189808492,Mary Beth,Brooklyn,Flatbush,40.63771,-73.9672,Private room,70,3,0,,,1,38 +35794273,Hope Garden,106798652,Timbrooke,Brooklyn,Bushwick,40.69554,-73.92511,Private room,130,1,0,,,2,365 +35794314,Penthouse Apartment with *Private* Rooftop,23715245,Sara,Manhattan,Lower East Side,40.71976,-73.98397,Entire home/apt,275,2,1,2019-06-23,1,1,12 +35794415,Magnificent Royal Townhouse in NEW YORK CITY!,221213143,David,Manhattan,Kips Bay,40.74297,-73.98195,Entire home/apt,650,1,0,,,9,302 +35794618,2 TWIN BEDS (OR 1 KING BED) IN A BOUTIQUE HOTEL,33213436,Alec,Brooklyn,Gowanus,40.68019,-73.98408,Private room,160,1,1,2019-06-23,1,8,364 +35795510,Cozy 2/1 apartment in Heart of Brooklyn,81957771,Gabs,Brooklyn,Bushwick,40.70318,-73.92636,Entire home/apt,120,3,0,,,1,177 +35795817,Newly Furnished 2 Bed 1 Bath,61396454,Ash,Manhattan,Midtown,40.75508,-73.96379,Entire home/apt,220,30,0,,,14,343 +35795970,Sutton Place High Rise,61396454,Ash,Manhattan,Midtown,40.75518,-73.96306,Entire home/apt,190,30,0,,,14,365 +35796073,Newly renovated and modern apartment in Manhattan,149334307,Julie,Manhattan,Washington Heights,40.83901,-73.93943,Private room,61,1,1,2019-06-23,1,1,268 +35796194,"Super Nice Flat in Nolita, NYC",33144953,Carly,Manhattan,Nolita,40.72206,-73.99695,Entire home/apt,189,4,0,,,1,317 +35796952,Ginger Home,2113042,Ly,Brooklyn,Bedford-Stuyvesant,40.69414,-73.94073,Private room,70,3,1,2019-07-01,1,1,65 +35797061,Affordable Midtown East 2 bedrooms/2 bathrooms,269264973,Dima,Manhattan,Midtown,40.75903,-73.96669,Entire home/apt,199,7,0,,,1,134 +35798549,"concrete jungle, dreams are made, Studio nextdoor",216289751,Cierra,Manhattan,Midtown,40.7518,-73.97158,Entire home/apt,145,3,0,,,1,62 +35798611,Recording Studio Overnight Stays. Downton Bklyn,37424221,Trevor,Brooklyn,Downtown Brooklyn,40.69677,-73.98155,Private room,100,2,0,,,1,365 +35798701,Charming 2 bed's in Midtown East Near U.N,51589519,Asi,Manhattan,Midtown,40.75726,-73.96671,Entire home/apt,180,28,0,,,1,338 +35799445,Clinton Midtwon WesT,243288727,Matt,Manhattan,Hell's Kitchen,40.76965,-73.99001,Entire home/apt,190,30,0,,,7,353 +35799708,THE HEART OF MIDTOWN WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76783,-73.98847,Entire home/apt,190,30,0,,,7,267 +35799984,The Brooklyn Plaza,57888148,Abosede,Brooklyn,East Flatbush,40.66242,-73.92833,Private room,70,1,0,,,1,325 +35800046,Sunny 5Br 4Ba - Townhouse on Upper East Side,268680530,Oliver,Manhattan,Upper East Side,40.77587,-73.95308,Entire home/apt,1100,4,0,,,1,270 +35800182,LUXIRIOUS ONE BEDROOM MIDTWON WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76896,-73.98908,Entire home/apt,190,30,0,,,7,348 +35800352,"close to LGA, JFK LIRR , (private parking)",26802715,Wu,Queens,Flushing,40.7664,-73.8227,Private room,49,4,0,,,2,63 +35800448,LUXUARY 2 BEDROOM APARTMENT,243288727,Matt,Manhattan,Hell's Kitchen,40.76793,-73.9882,Entire home/apt,190,30,0,,,7,354 +35800600,1BD SAFE & AFFORDABLE WITH TV FULLY RENOVATED,73676969,Meezy,Bronx,Williamsbridge,40.87852,-73.85003,Private room,36,2,2,2019-07-05,2,3,47 +35800764,Amazing 2 Br 2bath upper east side prime location,269312373,Noura,Manhattan,Upper East Side,40.76074,-73.96015,Entire home/apt,340,30,0,,,2,332 +35800768,THE HEART OF THE WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76285,-73.98653,Entire home/apt,300,30,0,,,7,310 +35800903,MIDTOWN WEST APARTMENT,243288727,Matt,Manhattan,Hell's Kitchen,40.76364,-73.98694,Entire home/apt,300,30,0,,,7,310 +35801208,Comfy 2 bedroom Close To Manhattan,256911412,Taylor,Brooklyn,Williamsburg,40.70469,-73.9369,Entire home/apt,101,4,0,,,1,27 +35801421,HIGHR RISE IN MIDTOWN WEST,243288727,Matt,Manhattan,Hell's Kitchen,40.76192,-73.98696,Entire home/apt,190,30,0,,,7,311 +35803121,Private room with a sofa bed in Greenpoint BK,138150256,Alejandro,Brooklyn,Greenpoint,40.73171,-73.95374,Private room,50,3,0,,,2,0 +35803274,PrivateRoom Queens 1block7train 15minManhattan LGA,119110280,Maria,Queens,Sunnyside,40.74175,-73.91409,Private room,50,1,4,2019-07-01,4,1,82 +35803557,Sunny room in a 2 bedroom shared apartment,77196523,Ninett,Manhattan,Harlem,40.82936,-73.9493,Private room,80,2,0,,,1,15 +35803559,*NEW* Bright Spacious Brooklyn 2 Bedroom Sleeps 9,133005440,Alex,Brooklyn,Bedford-Stuyvesant,40.6811,-73.95823,Entire home/apt,125,2,1,2019-06-23,1,2,342 +35803621,TRANQUIL HAVEN-8 MINS TO JFK/LIRR/AIRTRAIN RM#2.,178272943,Sharon,Queens,Jamaica,40.67207,-73.78094,Private room,60,1,2,2019-07-08,2,4,79 +35803740,Special 1 Bedroom in Prime Location Upper East,269312373,Noura,Manhattan,Upper East Side,40.76139,-73.9625,Entire home/apt,200,30,0,,,2,365 +35804219,Cozy room available in Brooklyn for July,35616021,Begum,Brooklyn,Bedford-Stuyvesant,40.68477,-73.9509,Private room,40,2,1,2019-06-29,1,1,1 +35804587,1BD WITH PRIVATE BATHROOM - VERY COZY & 42 INCH TV,73676969,Meezy,Bronx,Williamsbridge,40.87877,-73.85044,Private room,55,2,0,,,3,35 +35804589,Heart of Astoria,5825467,Michael,Queens,Astoria,40.76215,-73.91973,Shared room,110,1,1,2019-06-20,1,1,21 +35804885,Cozy Classic Convenient Apartment Near The Park,269345151,Marlene,Brooklyn,Crown Heights,40.67221,-73.94847,Entire home/apt,100,2,0,,,1,87 +35805037,Lovely & Spacious 2 Bedroom Apartment,269345069,Joyce,Brooklyn,Vinegar Hill,40.70112,-73.98402,Entire home/apt,225,2,1,2019-06-27,1,1,303 +35805094,Artist’s Live/Work Space,44245355,Sarah,Brooklyn,Bushwick,40.68898,-73.91358,Private room,60,7,0,,,1,24 +35805262,Discounted! Quiet 1 BR next to Times Square,10745276,Kortney William,Manhattan,Hell's Kitchen,40.75993,-73.99074,Entire home/apt,225,2,0,,,1,270 +35805474,Industrial artsy loft in Williamsburg,269297229,Юлия,Brooklyn,Williamsburg,40.71394,-73.96301,Entire home/apt,199,5,0,,,1,213 +35807159,"Cozy, sunny entire two bedroom Bed-Stuy apartment",23196609,Emma,Brooklyn,Bedford-Stuyvesant,40.69386,-73.94192,Entire home/apt,100,4,0,,,2,0 +35807376,E Z Living In Harlem,244536777,Chester,Manhattan,Harlem,40.81745,-73.94441,Entire home/apt,225,3,0,,,2,235 +35807411,Beautiful private room in 3br apartment!,2367604,Sagi,Queens,Ridgewood,40.70694,-73.91552,Private room,50,1,0,,,1,67 +35807543,Beautiful beach apartment,25544585,Mary,Queens,Rockaway Beach,40.5847,-73.81387,Entire home/apt,250,2,0,,,1,52 +35808103,Cozy 2 Bd Apartment in Near Central Park New York,269372955,Pol,Manhattan,Upper West Side,40.7875,-73.97511,Entire home/apt,350,4,0,,,1,324 +35808316,Water View in Battery Park near Statue of Liberty,76572037,Lisa,Manhattan,Battery Park City,40.70964,-74.01798,Entire home/apt,199,1,0,,,1,43 +35808498,2 bd 2 bathroom Apartment in Upper East Side,269377869,Jordi,Manhattan,Upper East Side,40.77223,-73.95082,Entire home/apt,350,4,0,,,1,337 +35808578,"Sunny, Comfortably Cozy, Private Room",269375490,Rena,Brooklyn,Canarsie,40.64567,-73.89091,Private room,45,1,7,2019-07-06,7,1,68 +35808986,Private room overlooking backyard in Bushwick,24342773,Chris,Brooklyn,Bushwick,40.70534,-73.92357,Private room,65,1,1,2019-06-23,1,1,188 +35809169,Triplex loft in Williamsburg/MacCarren Park,242152267,Andris,Brooklyn,Greenpoint,40.7199,-73.95085,Entire home/apt,199,14,0,,,1,21 +35809258,Cozy and Modern 3BR for upto 6 ppl - 4min to metro,269220629,Isidro M.,Brooklyn,Crown Heights,40.67671,-73.93991,Entire home/apt,169,4,0,,,1,324 +35809289,3 COZY LIGHT ROOM BROOKLYN,102292061,Roman,Brooklyn,Sheepshead Bay,40.58624,-73.9448,Private room,50,1,5,2019-07-05,5,3,85 +35810926,Stylish and Comfortable 3 Bedrooms in Williamsburg,185968630,Eli,Brooklyn,Williamsburg,40.71115,-73.94371,Entire home/apt,210,3,1,2019-06-27,1,1,254 +35811237,Centrally located spacious 1-bedroom apartment,269401661,Nick,Manhattan,Murray Hill,40.74942,-73.9817,Entire home/apt,95,1,7,2019-06-29,7,1,54 +35812122,Room with Private Bathroom near Times Square,211196034,Sam,Manhattan,Hell's Kitchen,40.75895,-73.99509,Private room,189,4,1,2019-07-02,1,1,8 +35816788,Artists cave,226970380,Tunie,Manhattan,East Village,40.72555,-73.98198,Entire home/apt,145,1,3,2019-07-02,3,1,84 +35817430,Bright Designer's Flat in E Williamsburg,104905299,Ben,Brooklyn,Williamsburg,40.7069,-73.9436,Entire home/apt,159,14,0,,,1,345 +35819469,Best Location! Massive 5BR Townhouse w/ Deck!,255306962,Roman,Manhattan,Midtown,40.7624,-73.9693,Entire home/apt,299,30,2,2019-06-26,2,1,248 +35821347,TWO BEDROOM IN BEST PART OF BROOKLYN!! SLEEPS 6!!,262583834,Isabel,Brooklyn,Bedford-Stuyvesant,40.69069,-73.9298,Entire home/apt,399,3,3,2019-07-07,3,1,235 +35822763,Quiet space in Brooklyn,3599030,Julianna,Brooklyn,Crown Heights,40.67555,-73.95298,Private room,85,2,0,,,1,363 +35823101,SO CHILL!! Very spacious and cozy bk apartment !!,269470349,Jim,Brooklyn,Bushwick,40.70146,-73.91932,Entire home/apt,75,2,3,2019-06-28,3,1,163 +35823611,Cute East village one bedroom apartment for 3,240141402,Kaspars,Manhattan,East Village,40.72607,-73.97622,Entire home/apt,145,4,0,,,1,26 +35825111,Comfortable and modern one bedroom in Midtown West,269308830,Сергей,Manhattan,Hell's Kitchen,40.75395,-73.99593,Entire home/apt,168,5,0,,,1,50 +35826493,NEW Modern Entire 2Bed Parkview Unforgettable,257647514,Juhyun,Brooklyn,Bushwick,40.69185,-73.91073,Entire home/apt,150,3,1,2019-06-27,1,2,21 +35826544,Gorgeous 3 bedroom close to Manhattan,138729500,John & Leni,Queens,Astoria,40.76067,-73.9198,Entire home/apt,225,2,2,2019-06-30,2,1,277 +35826827,1 bedroom apt close to Times Square,213156539,Javier,Manhattan,Hell's Kitchen,40.76171,-73.98728,Entire home/apt,177,2,1,2019-06-24,1,1,125 +35827321,West village gem with private backyard,217852396,Evgeniy,Manhattan,West Village,40.73895,-74.00268,Entire home/apt,199,5,0,,,1,122 +35827378,Luxury Spacious Up To 5 Bedroom House in Brooklyn,269499114,Ramin,Brooklyn,Sheepshead Bay,40.60467,-73.94243,Entire home/apt,139,1,5,2019-07-07,5,1,162 +35827600,Amazing apartment half block away from the subway,64185868,Adriana,Brooklyn,Bedford-Stuyvesant,40.67822,-73.90938,Private room,50,5,1,2019-06-19,1,1,32 +35828713,MIDTOWN EAST 2 BEDROOM,221200420,Adam,Manhattan,Murray Hill,40.74554,-73.97368,Entire home/apt,300,30,0,,,23,349 +35828913,MURRAY HILL LUXURY 2 BEDROOMS,221200420,Adam,Manhattan,Murray Hill,40.74833,-73.97253,Entire home/apt,280,30,0,,,23,336 +35829338,Bright 3bd/1ba Apartment in the heart of Brooklyn,219908197,Anthony,Brooklyn,Williamsburg,40.71693,-73.94267,Entire home/apt,295,2,1,2019-06-23,1,3,354 +35829544,MURRAY HILL LUXURY APARTMENT,221200420,Adam,Manhattan,Murray Hill,40.74964,-73.97203,Entire home/apt,280,30,0,,,23,336 +35829570,★ Easy Access to the Best of Brooklyn - Tree Top ★,393473,Bobby,Brooklyn,Bedford-Stuyvesant,40.69221,-73.95168,Entire home/apt,116,2,4,2019-07-02,4,2,156 +35830404,Beautiful Designed Studio Right of Grand Central!!,263205756,Matan,Manhattan,Midtown,40.75229,-73.96953,Entire home/apt,155,1,2,2019-06-30,2,1,300 +35830870,Large 2Bedroom Apartment right off Grand Central!!,20053314,Noa,Manhattan,Midtown,40.75161,-73.97025,Entire home/apt,175,1,0,,,1,250 +35830892,"Open floor plan, 1,000 Sq ft in Bed-Stuy",6346488,S,Brooklyn,Bedford-Stuyvesant,40.68218,-73.92129,Private room,120,2,1,2019-06-23,1,1,97 +35830998,Private Bathroom Bedroom Close to Subway,256479489,Amy,Brooklyn,Bath Beach,40.60544,-74.00137,Private room,59,1,0,,,2,364 +35831203,Beautiful 2 bedroom by Grand Central and the UN!!!,79008205,Josh,Manhattan,Midtown,40.75109,-73.97086,Entire home/apt,155,1,0,,,2,244 +35831474,"Large Apt with Patio, walking to Times Square!!!!!",79008205,Josh,Manhattan,Midtown,40.75225,-73.97107,Entire home/apt,165,1,0,,,2,330 +35831503,Stunning Duplex in prime Park Slope!,116535992,Jaclyn,Brooklyn,Park Slope,40.67853,-73.97749,Entire home/apt,250,5,0,,,1,14 +35831833,"Large Apartment with Patio, Walk to Times Square!!",142408357,Rotem,Manhattan,Midtown,40.75209,-73.96944,Entire home/apt,165,1,0,,,1,341 +35832547,Big 1 Bedroom located in Union Square,95000637,Mike,Manhattan,Gramercy,40.73592,-73.98993,Entire home/apt,295,2,1,2019-07-01,1,1,0 +35832561,Spacious room in beautiful Manhattan apartment!,20788222,Thirsa,Manhattan,Harlem,40.81216,-73.95036,Private room,150,1,1,2019-06-23,1,1,59 +35833041,Luxury 5 Bedroom | 3 Bathroom South Street Seaport,268445572,Gabrielle And Steven,Manhattan,Financial District,40.70662,-74.00258,Entire home/apt,750,3,0,,,1,352 +35833383,Spacious Williamsburg Loft/Apartment,5900670,Natalie,Brooklyn,Williamsburg,40.71401,-73.96572,Entire home/apt,140,4,0,,,1,24 +35833554,Bohemian Garden Apartment,359692,Hue,Brooklyn,Clinton Hill,40.69229,-73.96774,Entire home/apt,115,2,1,2019-06-30,1,1,26 +35834284,Charming Studio in the heart of the West Village,35733814,Margaret,Manhattan,West Village,40.73559,-73.99985,Entire home/apt,199,30,0,,,1,340 +35834935,Williamsburg Apartment,82674375,Meg,Brooklyn,Williamsburg,40.70898,-73.94885,Entire home/apt,140,500,0,,,1,331 +35835601,Sunny spacious quiet bedroom with a full bath.,47131399,Ben,Brooklyn,Bedford-Stuyvesant,40.67925,-73.94286,Private room,80,1,1,2019-07-06,1,1,22 +35835936,BEAUTIFUL WEST VILLAGE APARTMENT,22550881,Graham,Manhattan,West Village,40.73895,-74.00393,Entire home/apt,151,1,1,2019-07-05,1,1,8 +35836163,Brooklyn @ Bedford,24933402,Megan,Brooklyn,Williamsburg,40.71582,-73.9573,Private room,75,9,0,,,1,310 +35836317,Gorgeous Duplex 2BED/1.5BA Modern,269242923,John,Manhattan,Kips Bay,40.7449,-73.97888,Entire home/apt,288,5,2,2019-06-30,2,1,74 +35836471,Cozy Large Sunny Artist Retreat 10min to Manhattan,269114687,Felicia,Brooklyn,Williamsburg,40.71799,-73.95826,Entire home/apt,188,5,1,2019-06-30,1,1,51 +35837250,Oversize Brooklyn duplex with backyard!,73612539,Rebecca,Brooklyn,Bedford-Stuyvesant,40.68616,-73.94969,Entire home/apt,195,2,0,,,2,7 +35837998,Large 2-bedroom 2-bath Apt by Central Park,8066407,Vladimir,Manhattan,Harlem,40.79981,-73.95436,Entire home/apt,250,4,0,,,1,13 +35838750,Beautiful apartment. Coolest area of Bed-Stuy!,23831257,Nicole,Brooklyn,Bedford-Stuyvesant,40.68269,-73.92931,Private room,50,7,0,,,2,214 +35839059,Light filled studio apt with expansive city view,106823925,Kyle,Brooklyn,Downtown Brooklyn,40.68886,-73.98303,Entire home/apt,100,2,0,,,1,69 +35839537,Empire State Jazz! Superb location!,269585762,Teri,Manhattan,Midtown,40.74894,-73.98788,Entire home/apt,99,1,2,2019-06-22,2,1,264 +35839702,Brooklyn's Best Location ~ Kingsland Paradise,27007200,Lili,Brooklyn,Williamsburg,40.7193,-73.93993,Entire home/apt,125,7,0,,,1,29 +35839810,Private Bedroom in Bushwick Townhouse,6237789,Pierrick,Brooklyn,Bushwick,40.69209,-73.91882,Private room,50,7,1,2019-06-29,1,1,18 +35840369,"Layton Apt. Is Only 20 Min Ride into Manhattan, NY",269592097,Selma,Staten Island,St. George,40.64244,-74.08494,Entire home/apt,78,2,0,,,1,342 +35840564,Cozy 2 bedroom apt in Astoria / Long Island City,201153591,Sadat,Queens,Astoria,40.76595,-73.92656,Entire home/apt,215,2,2,2019-07-07,2,2,153 +35841083,*Nice and Cozy private Bedroom*,13059803,Marie,Queens,Jackson Heights,40.7574,-73.85825,Private room,60,2,2,2019-07-01,2,1,326 +35841291,Large bedroom in super large elevator building,153313824,Jeffrey,Manhattan,Inwood,40.86471,-73.92474,Private room,100,1,0,,,1,365 +35841507,Scandinavian style 1Br with city view,103125301,Jessica,Brooklyn,Williamsburg,40.71043,-73.95963,Entire home/apt,175,30,0,,,1,154 +35842224,Private floor in historic Bed Stuy next to subway,110026,George,Brooklyn,Bedford-Stuyvesant,40.68034,-73.93991,Entire home/apt,87,1,0,,,1,9 +35842254,Santa’s Party House,269606659,Steve,Brooklyn,Bushwick,40.69874,-73.92969,Entire home/apt,150,2,0,,,1,365 +35842268,A Modern Studio in the heart of Midtown West,188338351,Janette,Manhattan,Hell's Kitchen,40.75654,-74.00012,Entire home/apt,177,1,5,2019-06-30,5,1,86 +35842456,"spacious room, subway, LIRR &private parking",26802715,Wu,Queens,Flushing,40.76731,-73.8222,Private room,54,4,0,,,2,68 +35842545,Cozy perfection in the middle of everything,2880794,Brandy,Brooklyn,Park Slope,40.67757,-73.98037,Entire home/apt,115,3,1,2019-07-02,1,1,29 +35842576,"Sunny, quiet 2 BR apt in the heart of Manhattan",200782217,Tara,Manhattan,Chelsea,40.74325,-73.99528,Entire home/apt,223,3,0,,,1,169 +35842999,Clean Quiet 1BR in lovely doorman FiDi building,5339419,Catherine,Manhattan,Financial District,40.71133,-74.00676,Entire home/apt,220,4,0,,,1,6 +35843422,"private room & bathroom, 500 ft away from beach.",5334994,Urmat,Queens,Arverne,40.58921,-73.79967,Private room,75,2,3,2019-06-30,3,1,79 +35843964,Luxury 3 Stops to Times Square,13107477,Henry,Manhattan,Harlem,40.82024,-73.94362,Entire home/apt,125,2,1,2019-07-05,1,1,266 +35844248,LUXURY apartment in the upper east side .,233756380,Andrea,Manhattan,Upper East Side,40.77098,-73.9524,Entire home/apt,115,2,1,2019-06-24,1,1,234 +35844386,Brooklyn.,67302443,Madina,Brooklyn,Crown Heights,40.66603,-73.92925,Shared room,50,1,0,,,1,314 +35844745,Entire apartment 3BDR 2BR,493545,Jennifer,Brooklyn,Crown Heights,40.67398,-73.94669,Entire home/apt,250,1,0,,,2,22 +35845267,"Modern Astoria ""Crib""",269635110,Niko,Queens,Long Island City,40.75527,-73.93125,Entire home/apt,125,2,1,2019-06-23,1,1,346 +35845453,bushwick dream,161467377,Sam,Brooklyn,Bushwick,40.69689,-73.92566,Entire home/apt,189,2,1,2019-06-30,1,1,24 +35845476,Modern & Hip Building - Quiet Room - Elevator!,4239407,Steve,Manhattan,Chinatown,40.71658,-73.99065,Private room,89,2,0,,,2,10 +35846059,★ AMAZING★ TIME SQUARE/ 2 Bedroom 3 Bed APT,266992480,Sam,Manhattan,Hell's Kitchen,40.76558,-73.98855,Entire home/apt,500,1,4,2019-07-06,4,2,2 +35847458,"Spacious, cozy and bright bedroom in Sunset Park",39259484,Clarissa,Brooklyn,Sunset Park,40.64458,-74.02001,Private room,50,2,0,,,1,20 +35847646,south bronx luxury amenities building,269656657,Dev,Bronx,Port Morris,40.80855,-73.92948,Entire home/apt,220,30,0,,,1,180 +35848679,Private Room in Ridgewood 25 mins from Manhattan!!,269664482,Jacqueline,Queens,Ridgewood,40.70774,-73.90929,Private room,60,3,0,,,1,365 +35850605,Convenient Private Master Room Prime Time Square!,2196491,Sophia,Manhattan,Theater District,40.75696,-73.98323,Private room,65,14,0,,,3,85 +35850990,Convenient Private Room in Middle of Times Square!,2196491,Sophia,Manhattan,Theater District,40.75675,-73.98514,Private room,70,14,0,,,3,35 +35855199,Beautiful bedroom in NYC! Minutes to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80143,-73.93916,Private room,80,3,0,,,3,205 +35855969,Stunning bedroom!! Walking to Central Park!!!,130617332,Haley,Manhattan,Harlem,40.81226,-73.94349,Private room,80,3,0,,,3,187 +35856471,GRAND OPENING 3 levels tons of sunlights 25%off,269707834,Angel,Bronx,Wakefield,40.89198,-73.84779,Entire home/apt,309,2,0,,,1,168 +35856599,Awesome private room with queen-size bed,268572259,Sergii,Brooklyn,Bushwick,40.70489,-73.92558,Private room,78,30,0,,,3,325 +35858194,The Foodie Pad,269718824,Ndeye Anta,Manhattan,Harlem,40.81436,-73.95399,Private room,119,3,0,,,1,5 +35859800,Spectacular Sunny 3Br | 2Ba,268612146,Sharon & Henry,Manhattan,Financial District,40.70762,-74.00233,Entire home/apt,600,3,0,,,1,355 +35860327,Dreamy bright Nook,4107600,Valentina,Brooklyn,Bushwick,40.70379,-73.91708,Private room,50,2,0,,,3,77 +35860350,"Cute, Tidy Room in the Best Part of Crown Heights!",37678089,Katie,Brooklyn,Crown Heights,40.67459,-73.9576,Private room,65,1,0,,,1,342 +35860425,Amazing West Village ✌ Location is ♕NYC,269076400,Alex,Manhattan,Greenwich Village,40.73054,-74.00061,Entire home/apt,323,1,5,2019-07-05,5,1,185 +35860626,"Backyard in BK, Modern Reno, Sleeps 6, Walk 2train",53648985,Cristina,Brooklyn,Crown Heights,40.67612,-73.93722,Entire home/apt,300,2,1,2019-07-01,1,1,58 +35862574,2bdrms lrg prime Williamsburg apt in townhouse,269652307,Gabriel,Brooklyn,Williamsburg,40.71325,-73.95874,Entire home/apt,170,1,1,2019-06-28,1,1,77 +35863145,Cozy and Clean entire home,23533897,Fatou,Brooklyn,Crown Heights,40.6758,-73.95091,Entire home/apt,1500,2,0,,,7,267 +35863336,STUNNING SPACIOUS KING SIZE -BEDROOM NEAR COLUMBIA,2542371,Leonidas,Manhattan,Upper West Side,40.79829,-73.97266,Entire home/apt,174,30,0,,,1,1 +35863730,Cozy Private Room in Ditmars Astoria,15678733,Melisa,Queens,Ditmars Steinway,40.77379,-73.91291,Private room,56,4,0,,,1,350 +35864796,Trendy&Fun Family Home|15min to Midtown Manhattan,91926697,Jan,Queens,Long Island City,40.75943,-73.92901,Entire home/apt,350,2,2,2019-07-04,2,1,330 +35864932,Best Location in NYC | 2 Bedroom Gem!,268066785,Yael & Graham,Manhattan,Midtown,40.75549,-73.96938,Entire home/apt,350,3,0,,,1,280 +35865346,Spacious Modern Apt. Near JFK Airport and Trains,269763887,Sharon,Queens,Jamaica,40.68636,-73.78866,Entire home/apt,129,2,3,2019-07-07,3,1,348 +35865788,Brand new 1Bedroom apartment with private terrace,81957246,Kasper,Queens,Long Island City,40.75041,-73.93761,Entire home/apt,175,7,1,2019-06-23,1,1,17 +35866148,Luxury 2 bed in Crown Heights.,267593494,Matthew,Brooklyn,Crown Heights,40.67532,-73.90891,Entire home/apt,150,3,0,,,1,73 +35866165,A Place to stay in Brooklyn,269334919,Mord,Brooklyn,Borough Park,40.63979,-73.98633,Entire home/apt,150,1,2,2019-07-01,2,1,44 +35866719,THE WHITE HOUSE BEDROOM 1,269775225,Dennis,Bronx,Port Morris,40.80146,-73.91673,Private room,125,3,0,,,2,365 +35867138,New Cozy Studio on the UES with Gym and Pool #6127,130270076,Keren,Manhattan,East Harlem,40.78672,-73.9488,Entire home/apt,180,30,0,,,2,341 +35867271,Empire State Building Area,269579151,Freedom,Manhattan,Midtown,40.74801,-73.98592,Entire home/apt,229,3,0,,,1,65 +35867917,"Updated Studio apartment, clean and fresh",158458681,Sadie,Brooklyn,Bushwick,40.69406,-73.9255,Entire home/apt,99,1,5,2019-07-05,5,1,57 +35867923,Room in a lovely loft with waterfront view,258654859,Mailys,Brooklyn,Williamsburg,40.71735,-73.96441,Private room,80,8,1,2019-06-24,1,1,157 +35868549,Brand New 1 Bed in Full Service Building #6125,35098529,David,Manhattan,Kips Bay,40.7441,-73.97683,Entire home/apt,170,30,0,,,5,213 +35868596,LOFTED BED IN CONVERTED FACTORY LOFT NEAR 2 METROS,35606248,Blake And Madia,Brooklyn,Bushwick,40.70301,-73.92552,Private room,63,2,0,,,5,358 +35869234,Sonder | 116 John | Classic 1BR + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70852,-74.0051,Entire home/apt,198,29,0,,,327,345 +35869466,Sonder | 116 John | Classic Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70802,-74.00642,Entire home/apt,180,29,0,,,327,338 +35870390,NYC West Village Charming 2 Bedroom APT,269799543,Darlene,Manhattan,West Village,40.73558,-74.00492,Entire home/apt,550,3,0,,,1,353 +35871036,Huge 1 bedroom w/ a backyard near the heart of nyc,226414996,John,Queens,Ditmars Steinway,40.7717,-73.90799,Entire home/apt,90,3,0,,,2,21 +35871317,LOVELY 1 BR APARTMENT IN THE HEART OF GREENPOINT,5564361,Cecile,Brooklyn,Greenpoint,40.73109,-73.95267,Entire home/apt,130,3,1,2019-06-27,1,1,43 +35871510,Sonder | 116 John | Vibrant Studio + Fitness Room,219517861,Sonder (NYC),Manhattan,Financial District,40.70818,-74.00631,Entire home/apt,135,29,0,,,327,339 +35871511,Sonder | 116 John | Vibrant 1BR + Fitness Room,219517861,Sonder (NYC),Manhattan,Financial District,40.70691,-74.00682,Entire home/apt,165,29,0,,,327,342 +35871515,Sonder | 116 John | Stunning 1BR + Rooftop,219517861,Sonder (NYC),Manhattan,Financial District,40.70772,-74.00673,Entire home/apt,165,29,0,,,327,347 +35871541,Exquisite 3Br 2Ba Gem in UES,268623761,Julia & Todd,Manhattan,Upper East Side,40.76891,-73.95289,Entire home/apt,600,3,0,,,1,357 +35872009,Charming Room 1 with 2 Beds Close to 2 Metros,72957132,Niko,Brooklyn,Bedford-Stuyvesant,40.68698,-73.95514,Private room,70,2,0,,,3,291 +35872024,"Full size bedroom in a duplex, private garden view",4521174,Caroline,Brooklyn,Crown Heights,40.67032,-73.93957,Private room,65,7,0,,,3,63 +35872972,TOTALLY RENOVATED LARGE APT. MINUTES TO MANHATTAN,269818817,Mark,Queens,Ridgewood,40.70305,-73.89614,Entire home/apt,230,4,0,,,2,142 +35873124,Bright and Spacious Apartment in East Williamsburg,269818165,Michael,Brooklyn,Williamsburg,40.71171,-73.9454,Private room,60,3,0,,,1,0 +35873317,Cozy and beautiful studio near Times Square,269822898,Jenny,Manhattan,Hell's Kitchen,40.76097,-74.00026,Entire home/apt,135,1,1,2019-07-01,1,1,9 +35874052,Cozy room with Queen Bed close to Columbia Uni,41434577,Nino,Manhattan,Morningside Heights,40.80413,-73.96556,Private room,49,30,0,,,1,32 +35874420,HUGE Brick studio apartment SECONDS from subway!,55190776,Josh,Manhattan,Upper East Side,40.78539,-73.95062,Entire home/apt,156,1,0,,,1,7 +35874530,2 Bedroom w/ King Bed in Greenpoint BK,146636596,Lala,Brooklyn,Greenpoint,40.72845,-73.95791,Entire home/apt,300,2,1,2019-06-23,1,1,24 +35874763,Cozy & Modern Chelsea Studio,141760353,Carlos,Manhattan,Chelsea,40.74526,-74.00605,Entire home/apt,269,1,4,2019-07-05,4,1,122 +35874901,JFKQueensComfort. Private Room -Welcome Long Stays,105444832,Angie,Queens,Woodhaven,40.68931,-73.85485,Private room,35,9,0,,,1,246 +35875111,Dikeman comfort,261779182,Torrey,Brooklyn,Red Hook,40.67568,-74.00997,Entire home/apt,125,2,1,2019-06-21,1,2,325 +35875206,3 Bedroom Apartment in Forest Hills. Sleeps 8.,269836191,Gabriel,Queens,Forest Hills,40.73352,-73.84721,Entire home/apt,250,2,0,,,1,160 +35875685,"Harlem Hidden Gem,Clean, Affordable and Convenient",269838822,Asya,Manhattan,Harlem,40.80549,-73.95136,Private room,80,2,0,,,1,352 +35875858,#3 Hotel-Like LOFT Private Room KING Bed Near JFK,263504959,David,Queens,Woodhaven,40.69298,-73.86396,Private room,50,1,6,2019-07-04,6,8,288 +35876030,Cozy 3bdr Brooklyn Home in East Flatbush,269840768,Dionne,Brooklyn,Flatlands,40.62585,-73.9392,Entire home/apt,300,4,0,,,1,163 +35876147,A wonderfull suite in Brooklyn,269342470,Bracha,Brooklyn,Borough Park,40.64116,-73.98589,Entire home/apt,67,1,1,2019-06-27,1,2,48 +35876236,Three Bedroom Apartment Steps from Union Square,269233466,Chris,Manhattan,East Village,40.72936,-73.98298,Entire home/apt,400,3,2,2019-07-07,2,1,336 +35876561,Modern house (2 BR Apt) • 30Mins from Time Square1,76360760,Christopher,Queens,Woodside,40.744,-73.90185,Entire home/apt,169,1,0,,,1,60 +35876621,Modern Cozy Apartment in the heart of Willamsburg,21364757,Shiran,Brooklyn,Williamsburg,40.71775,-73.96211,Entire home/apt,75,2,0,,,1,174 +35876721,Home away from home,269840781,Rosemary,Queens,Maspeth,40.71673,-73.90009,Private room,140,1,0,,,1,88 +35876805,Tropical Bushwick Paradise,269266449,Andrea,Brooklyn,Bushwick,40.70266,-73.91723,Private room,50,7,1,2019-06-28,1,1,310 +35877559,Cozy Private Room Near Fordham University Bronx #5,35783912,Pi & Leo,Bronx,Fordham,40.86249,-73.89234,Private room,39,3,1,2019-07-07,1,8,180 +35877681,Get away Private Bedroom in New York City #6,35783912,Pi & Leo,Bronx,Fordham,40.86427,-73.89215,Private room,39,2,1,2019-07-01,1,8,175 +35877755,Best Memories in ❤️ NYC,269757415,Alex,Manhattan,Hell's Kitchen,40.76516,-73.98817,Entire home/apt,350,1,4,2019-06-29,4,1,164 +35877927,Private apartment in bronx ##2,35783912,Pi & Leo,Bronx,Fordham,40.86294,-73.89242,Entire home/apt,99,2,0,,,8,343 +35878332,Newly Renovated Apartment in a Brooklyn Brownstone,269860794,Amy,Brooklyn,Bedford-Stuyvesant,40.69305,-73.93748,Entire home/apt,275,2,0,,,1,365 +35878473,"Eclectic Love Boat, ""VACILANDA"" Far Rockaway",110721237,Kathryn,Queens,Arverne,40.59549,-73.78857,Entire home/apt,120,1,0,,,1,81 +35878481,"Home Away Home,NextDoor To Subway, Accommodates 10",21261408,Jay,Brooklyn,Bedford-Stuyvesant,40.68988,-73.95936,Entire home/apt,282,1,1,2019-06-25,1,6,342 +35878775,Spread Love its the Brooklyn Way!,269867427,Grace,Brooklyn,Park Slope,40.67567,-73.97683,Entire home/apt,185,1,0,,,1,43 +35878814,"3BR, 1.5 Bath in Bushwick (10 Mins to Manhattan!)",269865501,Adela,Brooklyn,Bushwick,40.69297,-73.92111,Entire home/apt,275,2,0,,,3,360 +35879296,A Harlem Haven,6908132,Alonzo,Manhattan,Harlem,40.80245,-73.9583,Private room,110,1,1,2019-06-30,1,1,157 +35879563,sweet Bushwick spot with backyard,10920759,Jamie,Brooklyn,Bushwick,40.69397,-73.91139,Entire home/apt,90,5,0,,,1,12 +35879684,McCarren Park 3 Bed/2 Bath with private terrace,179237742,R David,Brooklyn,Williamsburg,40.71698,-73.95003,Entire home/apt,299,2,2,2019-06-30,2,1,298 +35880079,Cozy apartment in the heart of Williamsburg,36426894,Vera Lucía,Brooklyn,Williamsburg,40.7142,-73.96161,Private room,75,2,0,,,1,282 +35880571,Enchanting Studio with Amenities,5910667,Edward,Manhattan,Upper West Side,40.78549,-73.97188,Entire home/apt,168,2,0,,,1,46 +35880602,Large Sunlit Private Queen Bed Room Crown Heights,78113383,Sara,Brooklyn,Crown Heights,40.67244,-73.92267,Private room,30,7,0,,,3,44 +35880719,Modern Boho Lux 2 Bed 2 Bath Haven + Quiet Garden,269885851,Sharon,Manhattan,Lower East Side,40.72057,-73.99343,Entire home/apt,495,3,1,2019-07-06,1,1,264 +35880886,*Modern Upper East Side Studio *,74031703,Tanpreet,Manhattan,Upper East Side,40.76868,-73.95166,Entire home/apt,100,1,1,2019-06-20,1,1,134 +35881157,Large Bright Private Queen bedroom Crown Heights!,78113383,Sara,Brooklyn,Crown Heights,40.67305,-73.92279,Private room,30,7,0,,,3,44 +35881328,Cozy room at heart of Astoria ...,45232769,Nadir,Queens,Astoria,40.7668,-73.91917,Private room,79,4,0,,,3,2 +35881347,gorgeous bedroom near Yankee Stadium,263317402,Cynthia Vanessa,Bronx,Concourse Village,40.82964,-73.91833,Private room,53,3,0,,,1,162 +35881797,Luxury Hi-End Brooklyn Brownstone with backyard,269893009,Ek,Brooklyn,Bay Ridge,40.63294,-74.0273,Entire home/apt,595,1,4,2019-07-07,4,1,57 +35882372,"Welcome to the best area of Williamsburg, NY",20536889,Edwin,Brooklyn,Williamsburg,40.71131,-73.96562,Entire home/apt,500,4,0,,,1,358 +35882973,Large studio - Heart of Union Square for 3-5 ppl!,28580275,Sommy,Manhattan,Midtown,40.75795,-73.96567,Entire home/apt,189,1,0,,,4,351 +35883107,Unbeatable & Massive Midtown 3 Bedroom Apt,269215864,Shivam,Manhattan,Hell's Kitchen,40.76405,-73.99004,Entire home/apt,299,4,0,,,1,95 +35883990,Smart Bedroom in Artistic Williamsburg Apartment,89919417,T. & Marnie,Brooklyn,Williamsburg,40.71019,-73.95739,Private room,70,1,1,2019-06-30,1,1,46 +35884220,Luxury apartment in Manhattan midtown!,128175450,Howell,Manhattan,Hell's Kitchen,40.77122,-73.99356,Entire home/apt,350,2,0,,,1,179 +35884299,Waterside Studio,193256713,Katharine,Manhattan,Kips Bay,40.73763,-73.97368,Entire home/apt,80,1,0,,,1,1 +35886159,Ozone Park Tudor Village,269901856,Akm,Queens,Ozone Park,40.67405,-73.85402,Private room,80,15,0,,,1,61 +35891506,THE WHITE HOUSE BEDROOM 2,269775225,Dennis,Bronx,Port Morris,40.80087,-73.91635,Private room,100,3,0,,,2,365 +35892874,3 Bedroom Loft Like Triplex 2.5 Bath with Garden.,269970642,Rita,Manhattan,Harlem,40.80778,-73.94762,Entire home/apt,200,120,0,,,1,365 +35893569,Cozy nest in the East Village,170566147,P,Manhattan,East Village,40.72573,-73.98414,Entire home/apt,180,3,2,2019-07-01,2,1,291 +35896695,Private basement studio with backyard access.,1576926,Michael,Brooklyn,Bedford-Stuyvesant,40.6906,-73.94986,Private room,45,3,1,2019-07-01,1,1,116 +35898307,1 bedroom overlooking STONEWALL - PRIDE WEEKEND.,133372725,Andrew,Manhattan,West Village,40.73421,-74.00321,Entire home/apt,750,1,0,,,1,5 +35898731,#4 Hotel-Like LOFT Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69311,-73.86526,Private room,50,1,4,2019-07-07,4,8,283 +35899414,"Rise & Shine: Home in Ditmas, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.6392,-73.96499,Entire home/apt,75,2,1,2019-06-30,1,2,32 +35899551,"Clean, Elegant luxury and close to everything!",259226302,Karen,Brooklyn,Flatbush,40.63378,-73.95867,Private room,135,3,0,,,1,248 +35899864,Spacious 1 Bedroom Apt in East Williamsburg,132342992,Nicole,Brooklyn,Williamsburg,40.71245,-73.94064,Entire home/apt,150,3,0,,,1,12 +35900132,Prospect ave moments from Yankee Stadium,13221575,Lorie,Bronx,Longwood,40.82519,-73.90101,Entire home/apt,150,1,0,,,1,88 +35900353,Splendid 4Br 2Ba | Steps From Midtown!,268452805,Marsha & Jakob,Manhattan,Kips Bay,40.73985,-73.98074,Entire home/apt,600,3,0,,,1,355 +35900875,Private Bedroom en-suite Bathroom - Manhattan,270029540,Aamir,Manhattan,Harlem,40.81561,-73.94823,Private room,99,1,1,2019-06-30,1,1,256 +35900993,Private Bed n Bath w/ Breakfast and Taxi!,270030033,Anna-Kay,Brooklyn,East Flatbush,40.63971,-73.94377,Private room,85,1,1,2019-07-01,1,1,167 +35901040,Private Cozy Three Bedroom apartment for 8,92493393,Eddie & Lois,Staten Island,West Brighton,40.63207,-74.11406,Entire home/apt,190,1,0,,,5,342 +35901703,LES Living in Bohemian Inspired Studio,7273116,Gwendolyn,Manhattan,Lower East Side,40.72131,-73.98902,Entire home/apt,129,2,0,,,1,15 +35901922,Charming one-bedroom apartment in Williamsburg,29569974,Raphaël,Brooklyn,Williamsburg,40.70558,-73.9418,Entire home/apt,89,2,1,2019-06-20,1,1,266 +35902528,Trendy4BR 2Baths Family Home| 10 min to Midtown,141716782,Nicholas,Queens,Long Island City,40.75283,-73.92504,Private room,375,2,0,,,1,356 +35903152,Cozy studio in the Heart of Bedstuy. Modern design,7074749,Clara,Brooklyn,Bedford-Stuyvesant,40.68506,-73.94776,Entire home/apt,90,14,0,,,1,85 +35903155,Modern Chic 2Br 2Ba | Lux Elevator Building,268856904,Louis,Manhattan,East Village,40.72123,-73.97884,Entire home/apt,450,3,0,,,1,361 +35903262,Luxury 2 bed 2 bath with outdoor space (5D),202757964,Mayan,Brooklyn,Williamsburg,40.71749,-73.96362,Entire home/apt,220,30,0,,,6,211 +35903391,1 Bedroom in a Washington Heights Apartment,129301317,Natalie,Manhattan,Washington Heights,40.84191,-73.93705,Private room,50,2,1,2019-06-30,1,1,26 +35904221,Penthouse duplex 2 BR with private rooftop (7E),202757964,Mayan,Brooklyn,Williamsburg,40.71863,-73.96358,Entire home/apt,220,30,0,,,6,205 +35904308,Cozy NYC room 25min to Times Square,1272625,Noel & Rachel,Queens,Astoria,40.76598,-73.9162,Private room,60,30,0,,,1,43 +35904454,Luxury Penthouse in Union Square / East Village,270057532,Luke,Manhattan,East Village,40.73303,-73.98955,Entire home/apt,225,3,0,,,1,7 +35904939,Queen Room near Flushing and Arthur Ashe Stadium- Breakfast Included,261007573,Adria Hotel & Conference Center,Queens,Bayside,40.76179,-73.76013,Private room,100,1,0,,,2,358 +35906345,beautiful 2 bedroom skylight apt,270072182,Vel,Brooklyn,Crown Heights,40.66711,-73.9375,Entire home/apt,100,7,0,,,1,44 +35907127,Huge 1 Bedroom Apt +balcony,265498730,Tatiana,Manhattan,Hell's Kitchen,40.76212,-73.99771,Entire home/apt,280,3,2,2019-07-01,2,1,341 +35907197,Master Bedroom in Your Cozy Queens Getaway,142871086,Emily,Queens,East Elmhurst,40.75637,-73.89729,Private room,65,1,0,,,1,36 +35907244,Bright Breezy Sleeping Pad NextdoorTo Subway/Pratt,21261408,Jay,Brooklyn,Clinton Hill,40.68853,-73.96089,Shared room,45,1,0,,,6,345 +35907389,Private studio in Crown Heights triplex townhouse,191800,Jose,Brooklyn,Crown Heights,40.67069,-73.94343,Private room,62,3,0,,,1,22 +35907876,Gorgeous 2BR / 2BA & Patio in Prime East Village,269825284,Sam,Manhattan,East Village,40.73085,-73.9837,Entire home/apt,315,5,2,2019-07-03,2,1,249 +35908075,Large 6 bedroom 15 minutes to Manhattan,141742656,Lorenna,Queens,Astoria,40.76614,-73.91371,Entire home/apt,500,2,0,,,1,157 +35909458,Stylish duplex in Midtown East /UN w/ terrace,269845683,Lee,Manhattan,Midtown,40.75304,-73.96658,Entire home/apt,399,3,0,,,1,148 +35909488,"Sunny , spacious, luxury building off Bedford Ave.",28500137,Penelope,Brooklyn,Greenpoint,40.71895,-73.95332,Entire home/apt,164,4,0,,,1,7 +35911322,Dope Yurt in Brooklyn,1648806,Maraliz,Brooklyn,Williamsburg,40.71358,-73.94092,Private room,60,1,0,,,2,173 +35912030,Get Inspired in Soho | 1 Bedroom,18464253,Ravid,Manhattan,NoHo,40.72727,-73.99322,Entire home/apt,180,5,0,,,1,317 +35912059,Luxury 2BR loft near Empire State Building,270054787,Emily,Manhattan,Midtown,40.74904,-73.98312,Entire home/apt,499,3,0,,,1,144 +35912471,King Bay Area,270119171,Val,Brooklyn,Sheepshead Bay,40.5908,-73.94693,Private room,35,2,2,2019-06-30,2,1,250 +35913114,Cozy Budget 2 Bedroom Apt in Times Square,270074042,Kirk,Manhattan,Hell's Kitchen,40.76123,-73.99084,Entire home/apt,229,3,1,2019-07-01,1,1,150 +35913850,Private room for rent,270132300,Rahul,Queens,Flushing,40.74793,-73.81782,Private room,50,7,0,,,1,89 +35914333,"Room near NYU, New School, Union Square, Chelsea",4915341,Son,Manhattan,West Village,40.73691,-73.99715,Private room,79,28,0,,,3,70 +35914591,**Central Park* UWS Luxury 4 Bed/2 Bath Sleeps 8!!,270139900,Norman,Manhattan,Upper West Side,40.78439,-73.97746,Entire home/apt,307,4,0,,,1,344 +35914632,Bright Chelsea Entire 2 Bedroom Apartment,269987340,Nicolas,Manhattan,Chelsea,40.74315,-73.99591,Entire home/apt,225,3,0,,,1,87 +35915030,Lovely North Park Slope Private Garden Apartment,270144441,Carla & Ken,Brooklyn,Park Slope,40.67817,-73.97603,Entire home/apt,145,6,0,,,1,14 +35915753,Sunny huge Apartment,167819022,Nell,Queens,Briarwood,40.71316,-73.81953,Entire home/apt,85,5,1,2019-06-22,1,1,54 +35915754,Prime Williamsburg Apt with Tons of Natural Light,11403548,Lauren,Brooklyn,Williamsburg,40.71422,-73.95697,Entire home/apt,110,2,0,,,1,30 +35916310,Nice house private room,230720704,Pp,Bronx,North Riverdale,40.91234,-73.89417,Private room,40,1,1,2019-06-30,1,3,179 +35916489,Sun-drenched LGBT Cozy Private QueenRoom @Bushwick,135563904,Michael,Queens,Ridgewood,40.7055,-73.9096,Private room,180,1,2,2019-07-01,2,3,78 +35916694,New Sophisticated 4BR/2.5BA NYC Midtown Apt,115180259,Leslie,Manhattan,Murray Hill,40.74865,-73.98158,Entire home/apt,299,3,1,2019-06-29,1,1,187 +35916778,1 Bed Just off the J,15624547,Steve,Brooklyn,Bushwick,40.6929,-73.92643,Private room,60,1,0,,,1,97 +35916821,New Glamorous 4 Bedroom/3 BA Duplex in Murray Hill,118373535,Noah,Manhattan,Murray Hill,40.74839,-73.98087,Entire home/apt,199,3,0,,,1,208 +35916913,New Massive 4BR/3.5BA Townhouse near Park Ave,144813834,Dominic,Manhattan,Upper East Side,40.7609,-73.96147,Entire home/apt,299,3,0,,,1,177 +35920784,Stunning Bedroom in NYC!! Walking to Central Park!,268807394,Dean,Manhattan,East Harlem,40.80321,-73.93781,Private room,80,3,1,2019-07-03,1,3,213 +35921065,Stunning Bedroom NYC!! Walking to Central Park!!,268807394,Dean,Manhattan,East Harlem,40.803,-73.93913,Private room,80,3,2,2019-07-07,2,3,242 +35929061,★ Retreat to a Stylish 4BR in NYC ★,268834081,Frankie,Manhattan,East Harlem,40.78661,-73.94273,Entire home/apt,450,3,0,,,1,358 +35931169,Great Room Great Location Williamsburg,35082637,Ollya,Brooklyn,Williamsburg,40.71655,-73.96416,Shared room,115,3,1,2019-07-02,1,2,66 +35931422,Bed Stuy Brooklyn Room AVail,230230732,Kashoya,Brooklyn,Bedford-Stuyvesant,40.69387,-73.93885,Private room,100,1,0,,,1,87 +35932913,Huge bedroom in Morningside Heights townhouse,73964015,Austin,Manhattan,Harlem,40.80494,-73.95463,Private room,150,1,0,,,1,8 +35933715,"Private, cozy room in Astoria!!!",270277478,Marina,Queens,Long Island City,40.7564,-73.92101,Private room,85,3,0,,,1,250 +35933956,2BR Getaway in Modern Luxury Building,268630107,Justice & Ellie,Manhattan,East Village,40.7206,-73.97913,Entire home/apt,375,3,0,,,1,357 +35934018,Home In Briarwood Queens NYC | Near Subway & JFK,270280544,Meital,Queens,Briarwood,40.70577,-73.81539,Entire home/apt,105,1,4,2019-07-04,4,1,208 +35934191,Luxury apartment in Midtown Manhattan!,8285778,Gaddi,Manhattan,Hell's Kitchen,40.7687,-73.98927,Entire home/apt,179,2,0,,,1,12 +35934279,My Vintage Brooklyn Hideaway (Williamsburg),507966,Colleen,Brooklyn,Williamsburg,40.71606,-73.94367,Entire home/apt,250,5,0,,,1,318 +35934299,Penthouse large 1 BR with huge terrace (7C),202757964,Mayan,Brooklyn,Williamsburg,40.71792,-73.96266,Entire home/apt,195,30,0,,,6,200 +35934686,2BR Midtown Times Square!,269164383,Tristan Mark,Manhattan,Hell's Kitchen,40.76274,-73.99118,Entire home/apt,189,31,0,,,1,237 +35935010,Penthouse duplex with 2 balconies! (7D),202757964,Mayan,Brooklyn,Williamsburg,40.71936,-73.96436,Entire home/apt,195,30,0,,,6,239 +35935104,Cozy Central Park West Residence,270284621,Kate,Manhattan,Upper West Side,40.77485,-73.97827,Entire home/apt,150,4,0,,,1,63 +35935180,Room with Two Beds near Flushing and Arthur Ashe Stadium-Breakfast Included!,261007573,Adria Hotel & Conference Center,Queens,Bayside,40.76321,-73.7608,Private room,100,1,0,,,2,351 +35935675,Spacious Room w/Kitchen in Prime Manhattan,436365,Jessica M.,Manhattan,Upper East Side,40.76924,-73.95323,Private room,100,3,0,,,3,37 +35935711,Spacious room near Bed- Stuy,270293762,Ruben,Brooklyn,Bedford-Stuyvesant,40.68789,-73.95596,Private room,55,1,0,,,1,312 +35936418,Sonder | 116 John | Polished Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.7084,-74.00518,Entire home/apt,699,29,0,,,327,327 +35936469,Livingroom near Columbia University in Manhattan,224900105,文清,Manhattan,Harlem,40.81908,-73.95718,Shared room,30,7,0,,,1,83 +35936654,True 1-Bedroom in Waterfront Luxury Building,9618786,Natalia,Brooklyn,Williamsburg,40.72003,-73.96242,Entire home/apt,350,4,0,,,1,9 +35936791,Amazing Apartment in Upper East near Guggenheim,270301946,Carlos,Manhattan,Upper East Side,40.77961,-73.95181,Entire home/apt,230,3,0,,,1,324 +35937183,Cozy 2Bd apartment in Little Italy New York,270306505,Sonia,Manhattan,Little Italy,40.71717,-73.99817,Entire home/apt,350,4,0,,,1,334 +35937316,Private Room in heart of East Village,7109410,Bobby & Ana,Manhattan,East Village,40.72653,-73.97949,Private room,100,1,0,,,1,188 +35937388,Cat Lover's Room in Bushwick w/Queen Bed,268135013,Noel,Brooklyn,Bushwick,40.69627,-73.92705,Private room,49,1,1,2019-07-01,1,6,7 +35937891,Sonder | 116 John | Simple Studio + Gym,219517861,Sonder (NYC),Manhattan,Financial District,40.70707,-74.00557,Entire home/apt,699,29,0,,,327,341 +35938183,"Immaculate, Grand, Clean Apartment Near the Subway",270314733,H.,Brooklyn,Crown Heights,40.67268,-73.94895,Entire home/apt,190,2,0,,,1,128 +35938640,The Moses Suite 2,270314994,Nicole/Jason,Brooklyn,Canarsie,40.64078,-73.90575,Entire home/apt,110,2,1,2019-07-01,1,1,360 +35939197,"Rooms in the new hipster area of Brooklyn, NYC 3",266998393,Hector,Brooklyn,Bushwick,40.69427,-73.91995,Private room,30,3,0,,,3,100 +35939513,★NYC Place with Private Garden★sleep 4★,270077888,Jane,Brooklyn,Bushwick,40.69266,-73.92684,Private room,99,3,3,2019-07-03,3,2,17 +35939585,舒适的带空调单间,270327975,文静,Manhattan,Morningside Heights,40.80701,-73.96619,Private room,63,10,0,,,2,83 +35939805,Chill & Cozy bedroom in the heart of Brooklyn.,104423008,Mimi & Elen,Brooklyn,Bedford-Stuyvesant,40.68715,-73.94232,Private room,45,2,1,2019-06-29,1,1,6 +35940079,House of Monkey playful space for kids and family,65591,Lalo,Brooklyn,Williamsburg,40.71199,-73.96479,Entire home/apt,220,4,1,2019-06-23,1,1,25 +35940153,Cute modern one bedroom apartment near Gramercy,269762668,Ekaterina,Manhattan,Kips Bay,40.73853,-73.97982,Entire home/apt,179,5,0,,,1,236 +35941038,Times Square modern and contemporary studio,269837702,Андрей,Manhattan,Theater District,40.761,-73.98217,Entire home/apt,249,5,0,,,1,117 +35941134,Comfortable Living Space,270340525,Marcelia,Brooklyn,East New York,40.66548,-73.86935,Private room,60,1,1,2019-06-24,1,1,361 +35941376,舒适的阳光朝南单间-与哥大咫尺之遥,270327975,文静,Manhattan,Morningside Heights,40.80498,-73.9664,Private room,250,1,0,,,2,17 +35941870,Modern abode in Bedsty BK,120551798,Dacia,Brooklyn,Bedford-Stuyvesant,40.68975,-73.92598,Entire home/apt,200,2,0,,,1,71 +35941974,Unheard real 2 bedrooms apartment on Park avenue,269822492,Оксана,Manhattan,Midtown,40.74497,-73.9844,Entire home/apt,290,7,0,,,1,199 +35942603,"Trip to NYC, US OPEN, Comfort, Clean and Close all",201667999,Lily2R,Queens,Elmhurst,40.7391,-73.86944,Entire home/apt,88,1,0,,,2,50 +35943320,Lovely 2 bed 2 bath home - Upper East Side,270358676,Michael,Manhattan,Upper East Side,40.7789,-73.95554,Entire home/apt,199,4,1,2019-07-02,1,1,314 +35943489,Prime Nolita/Soho/Little Italy studio apt,23495753,Teresa,Manhattan,Little Italy,40.71807,-73.99843,Entire home/apt,125,3,0,,,1,11 +35943602,$79.00 per night in the safest neighborhood in NYC,267710728,James,Bronx,Pelham Gardens,40.86143,-73.84556,Entire home/apt,79,2,2,2019-07-06,2,2,169 +35943648,Spacious 6BR in Bushwick (10 Mins to Manhattan!),269865501,Adela,Brooklyn,Bushwick,40.69445,-73.92235,Entire home/apt,550,2,0,,,3,354 +35943649,SoHa Bliss - Central Park North 2 Bed / 1 Bath,270288786,Aidas,Manhattan,Harlem,40.79965,-73.95157,Entire home/apt,300,3,2,2019-07-01,2,1,349 +35944364,E Z Living In Harlem 2,244536777,Chester,Manhattan,Harlem,40.81615,-73.94359,Entire home/apt,225,3,0,,,2,170 +35944768,nO placE likE iT-2 Beds & Loft Room @McCarren Park,113583961,Alina,Brooklyn,Greenpoint,40.71982,-73.94742,Entire home/apt,260,2,1,2019-06-30,1,1,245 +35944866,Sweet Sunny Apt in prime Park Slope Location,270372514,Jo-Ann,Brooklyn,Park Slope,40.67441,-73.98258,Entire home/apt,185,3,1,2019-06-29,1,1,117 +35944908,3BR Duplex in Bushwick (10 Minutes to Manhattan!),269865501,Adela,Brooklyn,Bushwick,40.69457,-73.92109,Entire home/apt,280,2,0,,,3,356 +35945025,"LGBTQIA+ friendly 2 br in queer, artsy Bushwick",13750109,Michael,Brooklyn,Bushwick,40.70281,-73.93188,Entire home/apt,249,2,1,2019-07-01,1,1,17 +35945192,Very cozy private bedroom The heart of Astoria,270374596,Loubna,Queens,Astoria,40.76591,-73.90934,Private room,90,3,0,,,1,78 +35945228,Affordable Private Room in the Heart of Harlem NYC,268896283,Khady,Manhattan,Harlem,40.81524,-73.94168,Private room,47,1,0,,,2,115 +35945256,Penn House~~~~5 mins from JFK,269113892,Penn,Queens,Jamaica,40.68248,-73.79417,Entire home/apt,128,1,5,2019-07-01,5,1,176 +35945823,PLUSH RENOVATED APARTMENT CLOSE TO MANHATTAN!,269818817,Mark,Queens,Ridgewood,40.7032,-73.89571,Entire home/apt,220,4,2,2019-07-08,2,2,146 +35945859,纽约的家,98455047,Jessica,Queens,Bay Terrace,40.77415,-73.79218,Entire home/apt,258,1,0,,,1,362 +35945923,Cozy Private Studio in Queens New York,19407201,Freddy,Queens,East Elmhurst,40.75971,-73.86607,Entire home/apt,90,2,2,2019-07-04,2,1,135 +35946646,Stunning Private Room in Heart of NYC with Jacuzzi,270096906,Marcos,Manhattan,Kips Bay,40.74316,-73.98038,Private room,400,2,0,,,1,365 +35946652,Calming Place,264862581,Dianne,Queens,Rosedale,40.68263,-73.72597,Private room,79,1,3,2019-07-01,3,3,89 +35946773,中央公园旁的单间,270382544,Maggie,Manhattan,Upper West Side,40.80158,-73.96182,Private room,100,1,1,2019-06-27,1,1,1 +35946932,Very Clean Private Room Near Buses & Restaurants!!,118405437,PengYu,Queens,Woodhaven,40.69405,-73.86693,Private room,66,2,2,2019-07-05,2,2,364 +35947579,Urban Oasis w/3br in the Middle of Manhattan,128898379,Davis,Manhattan,Midtown,40.75736,-73.96665,Entire home/apt,425,5,0,,,1,40 +35947912,Comfortable 3 bedroom in Heart of Manhattan,135718152,Danny,Manhattan,Midtown,40.75827,-73.97092,Entire home/apt,425,3,0,,,1,24 +35948011,"Classic, Urban with a splash of Glam! Near Metro",269165235,Jessie,Manhattan,East Village,40.72546,-73.98703,Entire home/apt,235,3,1,2019-06-29,1,1,326 +35948933,"Lovely Private Room, 5 mins to Yankee Stadium!",270414511,Christopher,Manhattan,Washington Heights,40.83325,-73.94034,Private room,84,1,0,,,1,39 +35948934,Fully Furnished Studio Apartment Midtown East,270414459,Kevin,Manhattan,Midtown,40.75836,-73.96289,Entire home/apt,135,30,0,,,1,99 +35949012,Modern apartment - 5mins walk to Grand Central,164692592,Nuoya,Manhattan,Midtown,40.75205,-73.97076,Private room,100,1,1,2019-06-27,1,1,1 +35954294,"5 Star Modern Hotel, With Beautiful Midtown Views!",166195455,Charles,Manhattan,Murray Hill,40.74864,-73.971,Entire home/apt,346,1,0,,,1,364 +35954804,Luxury private bed and huge bath With amenities !,270456105,Emily,Brooklyn,Williamsburg,40.71711,-73.94804,Private room,80,3,0,,,1,351 +35957263,Perfect apartments for living in❤️Manhattan,270119750,Alex,Manhattan,Midtown,40.75655,-73.96552,Entire home/apt,200,30,0,,,1,155 +35958528,East Harlem Studio Sleeps 3,56731026,Danyelle,Manhattan,Harlem,40.81709,-73.93866,Entire home/apt,125,1,0,,,1,69 +35960702,Marvelous Studio Available 5mins from Times SQ NY!,247335568,Evelyn,Queens,Long Island City,40.74753,-73.94054,Entire home/apt,170,3,0,,,7,16 +35961207,Bright Row House with Garden by Prospect Park,7487973,Rachel,Brooklyn,South Slope,40.66076,-73.98475,Entire home/apt,125,2,2,2019-07-07,2,1,9 +35962449,Budget Friendly Private Room with NYC Locals,81763793,Danae And Mike,Manhattan,East Harlem,40.79752,-73.93287,Private room,65,3,0,,,1,173 +35962668,Private Townhome in Midtown East near UN,270294045,Christian,Manhattan,Midtown,40.7542,-73.96815,Entire home/apt,1600,3,0,,,1,365 +35962803,Best Looking Townhouse in Brooklyn-GQ Magazine,5099333,Robert,Brooklyn,Fort Greene,40.68893,-73.97016,Entire home/apt,800,3,0,,,1,37 +35963599,SMH's Abode,26127333,Angie,Manhattan,Hell's Kitchen,40.76125,-73.99506,Entire home/apt,200,3,1,2019-06-23,1,1,39 +35963736,BedStuy/Clinton Hill 2-Story Apt 1 Block to Subway,33814070,Carolyn,Brooklyn,Bedford-Stuyvesant,40.6877,-73.95449,Entire home/apt,100,11,0,,,1,25 +35965362,Stunning 2 Bed 15 min from Midtown w/ Backyard,269599664,Linda,Queens,Astoria,40.75741,-73.91665,Entire home/apt,250,2,0,,,1,354 +35965985,My comfy space,263994272,Morales,Brooklyn,Bedford-Stuyvesant,40.68708,-73.94657,Entire home/apt,44,1,0,,,3,179 +35966154,Only August. 14 ft Ceiling Loft in Williamsburg.,30671432,Susana,Brooklyn,Williamsburg,40.70986,-73.95125,Entire home/apt,112,31,0,,,1,195 +35966653,"Bright, contemporary and best location",24232061,Tracy,Manhattan,Upper East Side,40.77297,-73.9553,Private room,122,10,0,,,3,306 +35966672,Iconic Tribeca Loft,87007791,Dion,Manhattan,Tribeca,40.71878,-74.00491,Entire home/apt,380,5,0,,,1,73 +35966895,Gorgeous Harlem Hideout | Close to Everything,103503018,Carlos,Manhattan,Harlem,40.83029,-73.94191,Private room,60,1,3,2019-07-06,3,2,49 +35967057,Williamsburg loft less than one block from L,80901802,Samuel,Brooklyn,Williamsburg,40.71335,-73.94453,Private room,90,1,0,,,1,179 +35967094,"Rise & Shine: Treetop Apartment, Brooklyn!",40299079,Natalia,Brooklyn,Flatbush,40.63926,-73.96416,Entire home/apt,100,2,0,,,2,71 +35967171,Private Room in Luxury Apt Building - NYC,19445589,Nicole,Manhattan,Hell's Kitchen,40.75707,-73.99764,Private room,225,2,0,,,1,20 +35967222,Spacious 1BR Flat near King’s Theatre,9872248,Shanna,Brooklyn,Flatbush,40.63415,-73.95208,Entire home/apt,120,4,0,,,1,65 +35967471,"Beautiful, spacious apartment in great location",22658749,Ari,Manhattan,East Harlem,40.80505,-73.93964,Private room,95,1,1,2019-07-01,1,1,8 +35968049,Single Room on the Upper West Side,16486125,Hj,Manhattan,Upper West Side,40.79906,-73.96517,Private room,60,1,0,,,1,7 +35968392,"50% off! Trendy Wburg, private yard",3360618,Tc,Brooklyn,Williamsburg,40.71186,-73.9399,Private room,59,2,2,2019-07-01,2,3,74 +35968862,Noho Modern 2 +2 Living,19433714,Jeff,Manhattan,Greenwich Village,40.72782,-73.99759,Entire home/apt,420,4,0,,,3,22 +35968923,Spacious and Modern Hideout | Close to Everything,103503018,Carlos,Manhattan,Harlem,40.82856,-73.94021,Private room,60,1,2,2019-06-27,2,2,33 +35969545,Townhouse Apt. w/Backyard-20 min train to City!,7660014,Vanessa,Brooklyn,Bedford-Stuyvesant,40.6825,-73.91596,Entire home/apt,150,1,3,2019-06-28,3,1,228 +35969818,Newly Renovated Bright Studio In the East Village,2795371,Natalia,Manhattan,East Village,40.72715,-73.98327,Entire home/apt,140,10,0,,,2,264 +35970385,Williamsburg Domino Park Prime Location 2 bedroom,11612418,Yulia,Brooklyn,Williamsburg,40.71812,-73.96404,Entire home/apt,285,7,0,,,1,6 +35970386,Brooklyn 3BD family oasis w/ walk to Prospect Park,4336488,Francesca,Brooklyn,Prospect-Lefferts Gardens,40.66365,-73.94611,Entire home/apt,135,3,0,,,1,9 +35970902,Stunning High Ceiling 2 Bedroom Apt!,145210031,Jesus,Brooklyn,Bushwick,40.69965,-73.92837,Entire home/apt,199,6,0,,,1,85 +35971141,2 Twin Beds Room,261187437,Shasha,Brooklyn,Borough Park,40.63314,-74.006,Private room,69,1,0,,,6,365 +35971244,Cobble Hill 2 Bedroom Garden Apartment Near Subway,76783729,Danny,Brooklyn,Cobble Hill,40.68732,-73.99096,Entire home/apt,289,30,0,,,1,105 +35971401,Spread Love it's the Brooklyn Way x 2,40846857,Kaylin,Brooklyn,Crown Heights,40.67327,-73.94951,Private room,70,4,0,,,2,17 +35971673,Quiet Bedroom in Modern Chelsea Apartment,261627898,Brett,Manhattan,Chelsea,40.74755,-74.00394,Private room,105,1,1,2019-06-25,1,2,31 +35971792,Newly Renovated Bright Studio In The East Village,2795371,Natalia,Manhattan,East Village,40.72878,-73.98478,Entire home/apt,129,20,0,,,2,180 +35971885,Private Room + Outdoor Space in Modern Chelsea Apt,261627898,Brett,Manhattan,Chelsea,40.74672,-74.00431,Private room,105,1,2,2019-07-06,2,2,31 +35972171,Vibrant Private Room in Greenwich Village,50724816,Glenn,Manhattan,Greenwich Village,40.72902,-74.00152,Private room,116,1,0,,,1,105 +35972361,Top Floor Fort Greene Park Manhattan Views!,270592883,Zori,Brooklyn,Fort Greene,40.688,-73.97008,Entire home/apt,199,2,1,2019-07-07,1,1,68 +35972538,3bedroom First Floor apt in prime Williamsburg,3068092,Marc,Brooklyn,Williamsburg,40.71449,-73.9569,Entire home/apt,196,1,0,,,1,95 +35972633,New Boutique Sunny Luxury Williamsburg Condo,269112262,Sam,Brooklyn,Williamsburg,40.71443,-73.9527,Entire home/apt,175,2,0,,,1,81 +35972860,Brooklyn family apartment,16056444,Charlotte,Brooklyn,Greenpoint,40.72229,-73.94846,Entire home/apt,128,30,0,,,1,312 +35973248,★Large Full Floor Apartment in Heart of Times Sqr★,269854098,Bledar,Manhattan,Hell's Kitchen,40.76246,-73.99193,Entire home/apt,250,2,0,,,1,32 +35973556,Beautiful Aptin heart of williamsburg .Sleeps 4,268815831,Andres,Brooklyn,Williamsburg,40.71109,-73.96191,Entire home/apt,100,2,1,2019-06-30,1,1,296 +35974123,Downtown NYC - Across From the Freedom Tower!,73986440,Daniel,Manhattan,Financial District,40.71047,-74.00761,Entire home/apt,150,30,1,2019-07-03,1,1,53 +35974526,A Private Room in a Unique Apartment in Bushwick!,133138724,Stephanie,Brooklyn,Bushwick,40.68726,-73.91421,Private room,60,1,0,,,1,179 +35975000,"2beds Room steps to LGA, CitiField, JFK Manhattan",217463199,Marvy,Queens,Flushing,40.74345,-73.82721,Private room,80,3,0,,,4,358 +35975257,Spacious & clean room 25 minutes from Manhattan,31044879,Ara,Queens,Sunnyside,40.73681,-73.92024,Private room,80,2,2,2019-07-01,2,2,188 +35975325,"50% off! Futon, yard access, trendy wburg",3360618,Tc,Brooklyn,Williamsburg,40.71246,-73.94014,Private room,57,2,1,2019-07-01,1,3,16 +35975528,"50% off! Sliding door yard access, trendy wburg",3360618,Tc,Brooklyn,Williamsburg,40.71329,-73.93993,Private room,59,2,2,2019-07-04,2,3,15 +35975589,Huge room on the Upper West Side!!!,270631254,Peter,Manhattan,Upper West Side,40.799,-73.97012,Private room,130,2,0,,,1,71 +35977480,The Empress den,270651073,Nazesta,Queens,Edgemere,40.5954,-73.7764,Private room,50,3,0,,,1,363 +35978071,Urban Heaven in the City! Near Yankee Stdm/Harlem,30873670,Jay,Bronx,Longwood,40.82101,-73.90919,Entire home/apt,75,3,0,,,1,0 +35984474,Perfect Weekend Stay,229739739,John,Brooklyn,Flatbush,40.64726,-73.95455,Private room,85,14,0,,,2,176 +35985735,One Bedroom Oasis in the Heart of Brooklyn,70538107,Claire,Brooklyn,Bushwick,40.68834,-73.90714,Private room,45,1,0,,,1,16 +35985851,PERFECT CHIC DOWNTOWN APARTMENT,11306615,Matt,Manhattan,Chinatown,40.71767,-73.9997,Entire home/apt,350,2,0,,,2,12 +35986504,Private Comfortable Room near Subway,164648188,Sonia,Brooklyn,East New York,40.67595,-73.87964,Private room,50,3,0,,,2,23 +35988369,"Spacious, light studio in heart of Alphabet City",6230673,Malin,Manhattan,East Village,40.72304,-73.9791,Entire home/apt,119,12,0,,,1,247 +35989097,Large Cozy Newly Renovated 1 Bedroom Private Apt,200927536,Manu,Brooklyn,Bushwick,40.70517,-73.91703,Entire home/apt,120,2,0,,,3,155 +35989395,"Greatest view in nyc , biggest room also!",189081814,Shenav,Manhattan,Kips Bay,40.74476,-73.97622,Private room,200,1,0,,,1,89 +35990312,3 Bed Astoria Dream By N/W Train | Street Parking,253839975,J,Queens,Ditmars Steinway,40.77674,-73.91031,Entire home/apt,190,4,0,,,1,152 +35991170,"Heart of NYC! - Large, Spacious, Bright 1 Bedroom!",1386697,Andreas,Manhattan,Midtown,40.75913,-73.96487,Entire home/apt,133,30,0,,,1,246 +35991399,Half rental fee the first month in Brooklyn!,89264510,Xueming,Brooklyn,Bushwick,40.69399,-73.92609,Private room,50,1,1,2019-06-30,1,1,365 +35991548,Serenity,266981597,Loves,Brooklyn,Flatbush,40.65087,-73.95566,Entire home/apt,123,1,0,,,1,365 +35991606,CHARMING THREE BEDROOM APARTMENT IN MANHATTAN,270578453,Alvin,Manhattan,Washington Heights,40.84154,-73.93766,Entire home/apt,260,5,0,,,1,260 +35991985,Penthouse Lofts + Private Terrace!,270590027,Amanda,Brooklyn,Williamsburg,40.70907,-73.95054,Entire home/apt,599,2,1,2019-07-05,1,1,346 +35992301,Waterfront 1 BR 2 Bath w/ Pool Prime Williamsburg,1325958,Blake,Brooklyn,Williamsburg,40.72013,-73.96299,Entire home/apt,300,14,0,,,1,38 +35992337,Private 1 bedroom studio bed and breakfast,145140746,Regina,Brooklyn,Bedford-Stuyvesant,40.68735,-73.9277,Private room,250,2,0,,,1,350 +35992447,"Amazing Bedroom , two stops from Times Square! LIC",218986739,Mary,Queens,Long Island City,40.74586,-73.94553,Private room,79,2,0,,,2,279 +35994335,Riverside Drive Apartment,59181407,Pierre-Marc,Manhattan,Washington Heights,40.83573,-73.94895,Entire home/apt,129,31,0,,,1,306 +35994356,River views in the heart of NYC,9790846,Katie,Manhattan,Murray Hill,40.74686,-73.97361,Private room,185,1,0,,,1,310 +35994980,Beautiful Bedroom steps away from Central Park,270790446,Aaron,Manhattan,East Harlem,40.79584,-73.94747,Private room,75,5,1,2019-06-25,1,1,291 +35995074,Amazing*Quiet*Sunny*Bedroom*PrivateLivingRm*Charm*,4128829,Sara,Queens,Ditmars Steinway,40.77292,-73.90101,Private room,62,9,0,,,2,365 +35995089,Private Cozy Room near Subway,164648188,Sonia,Brooklyn,East New York,40.67407,-73.88179,Private room,49,3,0,,,2,23 +35995460,"Comfortable place to stay, downtown Manhattan, NYC",33205064,Patrick,Manhattan,Financial District,40.70372,-74.01002,Shared room,65,1,0,,,1,357 +35996222,Stylish 2 Beds Apartment with Private Parking,270796745,Sonia,Bronx,Allerton,40.86886,-73.84915,Entire home/apt,140,2,1,2019-06-30,1,1,175 +35997412,"Bright, airy & cute Single Bedroom in Williamsburg",1857457,Sarah,Brooklyn,Williamsburg,40.7137,-73.94331,Entire home/apt,180,2,0,,,1,6 +35998183,Sunny 1 Bedroom in Historic Lower East Side,70682660,Andi,Manhattan,Lower East Side,40.72037,-73.9872,Entire home/apt,143,4,0,,,1,343 +35998302,Sunny and Spacious room near CUMC,269078124,铀 Yuli,Manhattan,Washington Heights,40.84251,-73.94105,Private room,52,1,0,,,3,33 +35998402,Comfy room near Columbia Uni medical school,269078124,铀 Yuli,Manhattan,Washington Heights,40.84288,-73.94201,Private room,54,1,0,,,3,6 +35998467,Private room like studio in shared APT,269078124,铀 Yuli,Manhattan,Washington Heights,40.84365,-73.94069,Private room,60,20,0,,,3,180 +35998531,Beautiful Sheepshead Bay experience.,9484127,Ken,Brooklyn,Sheepshead Bay,40.58387,-73.93957,Entire home/apt,300,3,0,,,1,364 +35999182,Comfortable room in Brooklyn 30 min to Manhattan,270823235,Matias,Brooklyn,Flatbush,40.65168,-73.96269,Private room,50,2,3,2019-07-07,3,1,3 +35999335,Cozy private bedroom in Chinatown/Lower East Side,60441049,Kelly,Manhattan,Chinatown,40.71409,-73.99427,Private room,71,1,0,,,1,259 +35999509,Amazing One Bedroom near Times Square,270829995,Ashley,Manhattan,Murray Hill,40.74811,-73.97718,Entire home/apt,168,3,0,,,1,341 +35999656,Cosy LES Apartment,270829432,Andrea,Manhattan,East Village,40.72309,-73.98519,Entire home/apt,195,1,0,,,1,25 +35999735,Bedroom in Astoria 20min to Manhattan,259683021,Jucimara,Queens,Astoria,40.77441,-73.93641,Private room,50,2,1,2019-07-06,1,1,1 +36000224,Brand New Hamilton Heights Apartment,38576999,Maureen,Manhattan,Harlem,40.82806,-73.94537,Private room,50,20,0,,,1,42 +36000376,★★ 4Br 2Ba Getaway in Chelsea ★★,268449136,Alexandra & William,Manhattan,Chelsea,40.74263,-74.00234,Entire home/apt,800,3,1,2019-07-01,1,1,345 +36000864,Grand and Bright Home in Historic Park Slope,185212,Marc,Brooklyn,Park Slope,40.67091,-73.97479,Entire home/apt,168,5,0,,,1,23 +36000993,SHANGRI-LUZ: Urban Oasis,50224626,Luz,Queens,Ridgewood,40.70491,-73.91024,Private room,45,2,1,2019-07-07,1,1,133 +36001142,Clinton Hill CrashPad Near Subway/Citibike/Pratt,21261408,Jay,Brooklyn,Clinton Hill,40.68783,-73.96061,Shared room,40,1,3,2019-07-06,3,6,350 +36001307,1 Large Apartment in Williamsburg,270845109,Sarah,Brooklyn,Williamsburg,40.71336,-73.95865,Entire home/apt,150,5,1,2019-06-28,1,1,327 +36001548,Home Away From Home in the Bronx,270852954,Jasmine,Bronx,Westchester Square,40.83671,-73.84677,Private room,75,1,0,,,1,363 +36001552,NYC Traveler’s dream,197551920,Mehek,Manhattan,Theater District,40.76122,-73.98655,Private room,70,1,2,2019-07-07,2,1,39 +36001911,Spectacular Views of NYC - 54th Floor Corner Apt,89394733,Alan And Beckie,Manhattan,Chelsea,40.75003,-74.01455,Entire home/apt,250,90,0,,,1,244 +36001938,Spacious 2BR Manhattan/NYC apt. Mins. to time sq.,55711801,Le,Manhattan,Harlem,40.82297,-73.94882,Entire home/apt,139,1,0,,,1,29 +36002044,Comfortable luxury apartment with Manhattan views,24266846,Jurgen,Brooklyn,Williamsburg,40.71329,-73.9653,Entire home/apt,345,6,0,,,1,22 +36002325,Modern and Charming Greenpoint by the Park,185352365,Megan,Brooklyn,Greenpoint,40.72214,-73.94566,Entire home/apt,220,2,0,,,1,12 +36002707,"Unique 4bed/2Bath Place Close to Subway, Food&MORE",258091747,Vilma Mathew,Manhattan,Upper West Side,40.79577,-73.97377,Entire home/apt,399,4,0,,,1,248 +36002857,Soho Comfort,91111113,Javier,Manhattan,SoHo,40.72236,-74.00255,Entire home/apt,125,3,1,2019-07-03,1,1,77 +36003288,Apartment in Kensington area of Brooklyn,161196794,Pearl,Brooklyn,Kensington,40.64126,-73.97797,Entire home/apt,169,1,2,2019-06-30,2,1,53 +36003336,Gorgeous Views in a Shared Space,43726295,Ess,Manhattan,Financial District,40.70815,-74.00619,Shared room,105,6,0,,,1,87 +36003858,★Premier Queen Room with Balcony ★,270874051,Hotel Vetiver,Queens,Long Island City,40.75436,-73.93483,Private room,99,1,0,,,8,319 +36004196,24+Day Stay:1000 sq Bsmt Apartment Great Living,270878146,Pachito,Queens,Maspeth,40.72205,-73.91024,Entire home/apt,70,24,0,,,1,52 +36004542,Cosy Bedroom in the Heart of Manhattan,30461045,Dayana,Manhattan,Midtown,40.76384,-73.98248,Private room,125,1,6,2019-07-01,6,1,142 +36004612,637 Hawthorne Street,270871567,Veronica,Brooklyn,East Flatbush,40.65855,-73.93794,Entire home/apt,150,5,0,,,1,365 +36004912,"Cozy ,quiet with lots of attractions near by",85518583,Matany,Brooklyn,Williamsburg,40.7191,-73.95685,Entire home/apt,151,14,0,,,1,25 +36006640,Bright and Cozy Room - Renovated Williamsburg Apt,22883314,Tzvetomir,Brooklyn,Williamsburg,40.71073,-73.96208,Private room,80,2,2,2019-07-01,2,1,42 +36006715,Room in cozy Brooklyn apartment,1639684,Tyler,Brooklyn,Williamsburg,40.70757,-73.94247,Private room,49,5,0,,,1,4 +36007006,Centrally Located 1BDR With Furnished Patio,270906714,Jennifer,Manhattan,Hell's Kitchen,40.75654,-73.99173,Entire home/apt,320,3,0,,,1,341 +36008082,"Luxury Spacious Cityview Studio, Lots of Sunshine!",82650642,Praise,Queens,Long Island City,40.74818,-73.94123,Entire home/apt,116,90,0,,,1,131 +36018376,Beautiful Rooftop Home -Upper East Side -,39021367,Christelle,Manhattan,Upper East Side,40.77097,-73.95245,Entire home/apt,149,6,0,,,1,82 +36018750,Spacious private room - minutes to Manhattan train,22534862,Christina,Queens,Rego Park,40.72364,-73.85605,Private room,100,1,0,,,1,341 +36019067,Cozy Sunlit Brooklyn Apt (GREEN ROOM),119051571,Sou,Brooklyn,Bedford-Stuyvesant,40.69346,-73.96064,Private room,90,1,1,2019-06-29,1,2,321 +36019688,"Good Bedroom close to the Subways L,J,A,C and Z",175103962,Jay,Brooklyn,Bedford-Stuyvesant,40.68058,-73.90702,Private room,60,1,0,,,6,152 +36021253,Bushwicks Finest!! Enjoy a long weekend or week!!!,181075211,Mario,Brooklyn,Bedford-Stuyvesant,40.69107,-73.92638,Private room,56,2,1,2019-07-05,1,1,179 +36022650,Charming entire apartment in Hell's Kitchen,2967377,Aude,Manhattan,Hell's Kitchen,40.76279,-73.99463,Entire home/apt,15,2,0,,,1,139 +36023315,Be our guest!,40188920,Robin,Queens,Maspeth,40.72201,-73.90822,Private room,40,1,0,,,1,82 +36023925,Cozy and Renovated Private Studio,44355774,Marco,Brooklyn,Prospect-Lefferts Gardens,40.66116,-73.96156,Entire home/apt,82,14,0,,,1,30 +36024736,Trendy and Modern Apartment in New York City,221213143,David,Manhattan,Kips Bay,40.74164,-73.982,Entire home/apt,350,1,0,,,9,337 +36024957,New Spacious 3BR/1BA Apt mins to Columbia University,221201482,Ron,Manhattan,Harlem,40.80927,-73.9472,Entire home/apt,99,2,0,,,1,189 +36025215,Gorgeous sunny room in fabulous Brooklyn duplex,3103656,Laurel,Brooklyn,Bushwick,40.69184,-73.90924,Private room,99,3,0,,,2,150 +36025515,Private Spacious Artist’s Bedroom In Manhattan,271029539,Dominique,Manhattan,Harlem,40.82165,-73.95423,Private room,48,1,1,2019-07-06,1,4,128 +36025798,Beautiful and light-filled Park Slope studio,23384343,Chloe,Brooklyn,Park Slope,40.68258,-73.97771,Entire home/apt,100,5,0,,,1,8 +36025938,Cute & Clean Chinatown 1 bedroom!,271030049,Joy,Manhattan,Chinatown,40.71554,-73.9982,Entire home/apt,146,4,0,,,1,36 +36025970,LUXRY SPACE IN WILLIAMSBURG - 10 MIN TO CITY,270881069,Java,Brooklyn,Williamsburg,40.71797,-73.94948,Private room,150,3,0,,,1,344 +36026259,1 bdr in heart of Harlem,6150742,Anna,Manhattan,Harlem,40.81761,-73.94434,Private room,80,1,1,2019-07-07,1,1,86 +36026771,A cute guest unit in Brooklyn,270309212,Abe,Brooklyn,Borough Park,40.64137,-73.98654,Entire home/apt,67,1,1,2019-07-02,1,1,49 +36027346,Live in style @ the BEST LOCATION in MANHATTAN,10117927,Noa,Manhattan,Gramercy,40.73708,-73.98826,Entire home/apt,180,3,0,,,1,4 +36027436,Comfortable 2 bedroom apartment in HK 4-5ppl,268332955,Iustin,Manhattan,Hell's Kitchen,40.76577,-73.98482,Entire home/apt,269,3,0,,,1,329 +36027598,Manhatten dream apt thats just like home.,1967818,Debra,Manhattan,Hell's Kitchen,40.76769,-73.99129,Private room,110,30,0,,,1,105 +36029624,Lovely Two Bedroom Next to Central Park,218969291,Danielle,Manhattan,Upper West Side,40.78635,-73.97636,Entire home/apt,279,5,2,2019-07-02,2,1,346 +36029691,GRAMERCY + WIGWAM = FUN!!!,270620369,Bryan,Manhattan,Midtown,40.74188,-73.98419,Entire home/apt,650,3,0,,,1,337 +36029952,Sun Filled | Grand | Studio in Heart of SoHo,237189890,Dante,Manhattan,SoHo,40.72088,-74.00318,Entire home/apt,150,30,0,,,1,32 +36030151,Cozy Room in the heart of Williamsburg!,153713033,Annalisa,Brooklyn,Williamsburg,40.71432,-73.94805,Private room,48,7,1,2019-06-29,1,1,13 +36031121,Home Away From Home,271069449,Tristan,Queens,Arverne,40.59125,-73.79683,Entire home/apt,129,2,1,2019-06-30,1,1,362 +36031234,Luxury 2 bed in great neighborhood,271070664,Albert,Brooklyn,East Flatbush,40.65394,-73.92777,Entire home/apt,150,6,0,,,1,62 +36031282,"Luxury, Doorman, Steps From United Nations,",52950465,Gal,Manhattan,Midtown,40.75258,-73.97111,Private room,134,30,0,,,12,365 +36031639,Sunlit Room in Cozy Apartment,89830146,Max,Brooklyn,Crown Heights,40.66801,-73.94863,Private room,50,2,0,,,1,29 +36032098,2 Bedroom Fits 4 In Downtown NYC,267458545,Robin,Manhattan,Nolita,40.7223,-73.99508,Entire home/apt,225,7,1,2019-07-03,1,1,76 +36032523,Awesome comfy 1st fl walk up across from subway,743321,Michael,Manhattan,Midtown,40.75747,-73.96892,Entire home/apt,125,7,0,,,1,34 +36032998,Spacious Sunny Private Bedroom with Windows,2355573,Sarah,Brooklyn,Williamsburg,40.71808,-73.94261,Private room,44,5,1,2019-07-08,1,2,40 +36034181,Best in Greenwood 1min walk 15min Manhattan,27922303,Aprilene,Brooklyn,Sunset Park,40.65625,-74.0038,Private room,75,2,1,2019-07-01,1,2,311 +36034580,Cozy Apartment in the Historic Village of FiDi!,32990881,Alicia,Manhattan,Financial District,40.70328,-74.01099,Entire home/apt,180,2,2,2019-06-30,2,1,295 +36035142,"Large 1 Bedroom Apartment, Steps to Central Park!!",263336381,Tanya,Manhattan,Upper West Side,40.7836,-73.97511,Entire home/apt,135,30,0,,,1,44 +36035471,Breezy Plant Filled Oasis w/ Warm Miminalism,23436595,Greem,Brooklyn,Greenpoint,40.72803,-73.95557,Entire home/apt,180,3,0,,,2,262 +36036585,Full Service amenities Designer Modern New Studio,117953124,Sergio,Manhattan,Financial District,40.70534,-74.00631,Entire home/apt,180,30,0,,,1,333 +36036692,"Views, modern layout, elevator, sweet LES.",1316936,Carlo,Manhattan,Chinatown,40.71688,-73.9904,Private room,125,31,0,,,1,179 +36036850,Spacious room in historic brownstone,60404912,Ira,Brooklyn,Flatbush,40.64235,-73.95227,Private room,50,2,1,2019-07-07,1,1,7 +36037081,Great deal-private-NON shared apt in Chelsea,271114286,Deemy,Manhattan,Chelsea,40.74169,-73.99723,Entire home/apt,240,2,0,,,1,6 +36037105,Private Room Dumbo,113058525,Alfredo,Brooklyn,Vinegar Hill,40.70089,-73.98253,Private room,75,1,0,,,1,7 +36037506,The blue house,56602710,Auilda,Bronx,Melrose,40.82093,-73.91279,Entire home/apt,125,2,0,,,1,207 +36037692,Charming and Spacious 2 Bedroom Midtown Apt,270309706,Axay,Manhattan,Hell's Kitchen,40.76496,-73.98928,Entire home/apt,244,3,0,,,1,167 +36037836,Amazing Wiliamsburg Private Room,222287033,Francis,Brooklyn,Williamsburg,40.71096,-73.96575,Private room,95,2,0,,,5,211 +36037899,Beautiful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.71259,-73.96669,Private room,95,2,0,,,5,193 +36037964,Charming room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.71129,-73.96555,Private room,90,2,0,,,5,211 +36038003,Modern & Hip Building-Lower East Side- Elevator!,4239407,Steve,Manhattan,Lower East Side,40.71467,-73.98985,Entire home/apt,209,3,0,,,2,5 +36038012,Delightful room in Williamsburg,222287033,Francis,Brooklyn,Williamsburg,40.7122,-73.96667,Private room,90,2,0,,,5,211 +36038070,✨Superb Room- 2 Queen Beds ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75255,-73.93324,Private room,149,1,0,,,8,316 +36038093,Comfortable & independent apartment in Queens NY,234010972,Kevin,Queens,East Elmhurst,40.75888,-73.87889,Entire home/apt,120,1,0,,,1,264 +36038200,Spacious Sunny Apartment (July 4 to 7),204301604,Funmi,Manhattan,Midtown,40.75669,-73.96848,Private room,100,2,0,,,1,89 +36038287,"Huge, Clean & Quiet room in a 2 BR Apt",167769983,Sara,Manhattan,Stuyvesant Town,40.73221,-73.97941,Private room,77,21,2,2019-06-25,2,1,321 +36039490,"A clean, comfortable private room near Bowne park",215128544,Sherry,Queens,Flushing,40.76987,-73.80451,Private room,48,1,3,2019-07-04,3,2,166 +36039574,★Premier Queen Room with Balcony ★,270874051,Hotel Vetiver,Queens,Long Island City,40.753,-73.93485,Private room,99,1,0,,,8,319 +36040430,RARE | Entire 2-bed apt ♥ 0 min to M/L train,227206998,Jessica,Brooklyn,Bushwick,40.69975,-73.91202,Entire home/apt,150,1,0,,,1,41 +36040477,"The clean, cozy room next to a beautiful park.",215128544,Sherry,Queens,Flushing,40.76986,-73.80515,Private room,49,1,2,2019-07-07,2,2,168 +36040561,Nice room to rent 1,230720704,Pp,Bronx,North Riverdale,40.91306,-73.89389,Private room,40,1,1,2019-07-06,1,3,175 +36040924,Cozy entire apt in Queens near St. John's Univ,271146927,Chooyou,Queens,Jamaica Estates,40.72124,-73.80072,Entire home/apt,68,2,2,2019-07-07,2,1,43 +36041065,Large bedroom with private bathroom is suit,225118276,Alex And Mila,Brooklyn,Bedford-Stuyvesant,40.6838,-73.92854,Private room,75,1,7,2019-07-06,7,1,326 +36041096,Luxury building Brand new Apartment in Chelsea!,271151866,Shelly,Manhattan,Chelsea,40.74438,-73.997,Entire home/apt,250,5,0,,,1,60 +36041232,Nice house room 2 near van cortlandt park,230720704,Pp,Bronx,North Riverdale,40.91167,-73.89566,Private room,40,1,1,2019-07-06,1,3,174 +36041377,Newly Renovated 1 BD w/ AC & Netflix in Queens (2),268784513,Amit,Queens,East Elmhurst,40.75755,-73.88199,Private room,50,1,3,2019-07-05,3,3,359 +36041578,✨Superb Room- 2 Queen Beds and Balcony ✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75368,-73.93298,Private room,159,1,0,,,8,318 +36042251,LARGE COZY ROOM FOR 2people +1(child)+AMENITIES ),271162941,Anna,Brooklyn,Midwood,40.62351,-73.95509,Private room,120,1,2,2019-06-30,2,3,330 +36042368,Colorful + Comfortable Downtown NYC Apartment,32768394,Andrea,Manhattan,East Village,40.72338,-73.9851,Entire home/apt,180,3,0,,,1,17 +36042727,Lovely Private Corner Room in Bushwick,249235228,Bora,Brooklyn,Bedford-Stuyvesant,40.68996,-73.92669,Private room,55,3,0,,,1,84 +36043079,Beachside Serenity,36380968,Alex,Brooklyn,Brighton Beach,40.57759,-73.96218,Private room,75,1,2,2019-07-02,2,2,353 +36043243,Small Private Room in Upper East Side #8,1786901,Shai,Manhattan,Upper East Side,40.78189,-73.9455,Private room,69,3,0,,,9,30 +36044645,"Cozy, perfect located, Room in the middle of NYC",271170087,Ricardo,Manhattan,Hell's Kitchen,40.76557,-73.9909,Private room,185,4,1,2019-06-30,1,1,50 +36044819,Cozy single room in Manhattan,3773866,Megumi & Nathan,Manhattan,Harlem,40.81842,-73.9391,Private room,42,2,0,,,2,14 +36056808,Luxury TriBeCa Apartment at an amazing price,271248669,Jenny,Manhattan,Tribeca,40.71206,-74.00999,Entire home/apt,6500,180,0,,,1,365 +36057923,"Cozy room in Brooklyn, Park Slope",52587835,Lorrayne,Brooklyn,Sunset Park,40.65989,-73.99336,Private room,42,3,0,,,1,24 +36057961,"Cozy apartment, amazing location!",271094569,Weronika,Manhattan,Lower East Side,40.71895,-73.98813,Entire home/apt,99,2,1,2019-06-26,1,1,333 +36059155,Charming prewar 1 bedroom in vibrant Midtown East,271264403,Arthur,Manhattan,Murray Hill,40.7472,-73.97337,Entire home/apt,229,1,0,,,1,176 +36060344,"BEAUTIFUL ONE BEDROOM, PRIVATE BACKYARD. Manhattan",269609725,Cristina,Manhattan,Lower East Side,40.71276,-73.98488,Entire home/apt,200,2,0,,,1,361 +36060576,4FE Chelsea Studio Exclusively Yours,271275048,Isaac,Manhattan,Chelsea,40.74638,-73.99094,Entire home/apt,125,30,0,,,2,245 +36060652,"Private room w/ Loft Bed, Desk, Quick Ride to City",271275248,Nikolas,Brooklyn,Bushwick,40.69057,-73.90671,Private room,50,2,1,2019-06-30,1,1,15 +36061406,Chelsea Loft Living - Perfect for LARGE groups,63492343,Lenore,Manhattan,Chelsea,40.73971,-73.99611,Entire home/apt,1050,2,0,,,1,365 +36061459,"Spectacular 2 Bedroom, 2 1/2 Bath",6960348,Elizabeth,Brooklyn,Williamsburg,40.71537,-73.94601,Entire home/apt,385,2,0,,,1,80 +36061719,Private Studio-Bedroom in Duplex in Williamsburg,271282883,Terence,Brooklyn,Greenpoint,40.72779,-73.94081,Private room,99,6,0,,,2,54 +36062007,"Private room in a spacious, clean, cozy apartment.",11123552,Paola,Brooklyn,Bushwick,40.70187,-73.92389,Private room,50,1,1,2019-07-01,1,2,11 +36062014,"Chic room, excellent location!",14844084,Patricia,Manhattan,Harlem,40.82625,-73.94791,Private room,75,4,0,,,1,113 +36062088,Williamsburg 2nd Fl 2bed Floor thru Apt townhouse,269568546,Di,Brooklyn,Williamsburg,40.7144,-73.95757,Entire home/apt,155,1,2,2019-07-05,2,1,88 +36062221,SHORT TERM STAY,9037589,Rahib,Queens,Woodside,40.74367,-73.91247,Private room,90,1,0,,,1,179 +36062290,"True 1 bedroom, with add'l pull out couch",9483525,Gail,Manhattan,West Village,40.73669,-74.001,Entire home/apt,300,2,1,2019-07-01,1,1,28 +36062578,"Sunlit, cozy and tranquil one bedroom in Brooklyn",39724060,Jaime,Brooklyn,Bedford-Stuyvesant,40.68932,-73.93494,Entire home/apt,115,7,0,,,1,79 +36063144,"Airy, light-filled, charming and zen duplex",4073971,Adena,Brooklyn,Bedford-Stuyvesant,40.68899,-73.94988,Entire home/apt,210,5,0,,,1,80 +36064435,Great Room; by Park / River; 15 min to Manhattan,161031033,Jav,Queens,Ditmars Steinway,40.78316,-73.91804,Private room,70,5,0,,,1,30 +36064676,Trendy and Tranquil Brooklyn Duplex,271300364,Your Fave,Brooklyn,Bushwick,40.69599,-73.93154,Entire home/apt,172,1,0,,,1,88 +36065361,Artist Luxe Loft Prime Williamsburg,271035656,Josh,Brooklyn,Williamsburg,40.70835,-73.95368,Entire home/apt,270,2,1,2019-07-05,1,1,308 +36065368,"NYC Trip! Safe,Walk to train, 20 min toTime Square",105579614,Kim,Queens,Ridgewood,40.70869,-73.90835,Private room,80,1,0,,,1,72 +36066113,"Stylish bedroom, two stops from Times Square! LIC",218986739,Mary,Queens,Long Island City,40.74575,-73.9449,Private room,79,1,0,,,2,346 +36066155,Comfy Private Room Shared Bath/Kitchen,28891151,Kimesha,Brooklyn,East New York,40.66802,-73.88724,Private room,75,2,0,,,4,90 +36066526,Convenient family friendly entire 2br in Bushwick.,5178414,Jen,Brooklyn,Bushwick,40.69859,-73.91398,Entire home/apt,250,7,0,,,1,32 +36067108,In the heart of the LES a sunny and charming room!,271321622,Rafaela,Manhattan,Lower East Side,40.71968,-73.98453,Private room,120,1,0,,,1,352 +36068351,The Emperors Den,252897042,Oza,Bronx,Bronxdale,40.85247,-73.86418,Entire home/apt,60,4,2,2019-07-07,2,1,194 +36069295,Private Rock and roll room 1blk from train,95886123,Melissa,Queens,Astoria,40.76621,-73.92274,Private room,100,2,0,,,2,357 +36069466,Luxury 800sq ft loft in the heart of Little Italy!,17869274,Nick,Manhattan,Little Italy,40.71878,-73.99808,Entire home/apt,202,1,0,,,1,23 +36069486,Private room in Central Park North,264495166,Jordania,Manhattan,Harlem,40.80199,-73.95779,Private room,90,2,1,2019-07-03,1,3,46 +36070717,Private Room in Lower East Side,30797242,Allison,Manhattan,Lower East Side,40.72285,-73.98895,Private room,75,3,0,,,1,21 +36071215,An inspiring loft in Williamsburg,2206491,Paola,Brooklyn,Williamsburg,40.71483,-73.95243,Entire home/apt,110,5,0,,,1,303 +36071685,Cosy Sunny room near Prospect Park,121127613,Amanda,Brooklyn,Flatbush,40.65205,-73.96311,Private room,50,1,0,,,1,265 +36071960,"Great Apartment only $79 per night +Great area",267710728,James,Bronx,Pelham Gardens,40.86143,-73.84573,Entire home/apt,79,2,1,2019-06-26,1,2,354 +36072301,Large private room in the heart of Williamsburg,271350187,Elena,Brooklyn,Williamsburg,40.71814,-73.95041,Private room,109,1,0,,,3,304 +36072357,Charming suite on Historic block,271354975,Frances,Brooklyn,Bedford-Stuyvesant,40.68323,-73.94694,Private room,170,2,0,,,1,164 +36073384,Private Room In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.82682,-73.95157,Private room,70,2,0,,,2,312 +36073776,"Amazing Room! Awesome Price! +Can’t wait to meet U!",268198789,Davica,Brooklyn,Cypress Hills,40.67877,-73.86722,Private room,68,2,0,,,2,315 +36074198,Luxury apartment 2 min to times square,203565865,Vinícius,Manhattan,SoHo,40.7206,-74.00023,Entire home/apt,1308,2,0,,,1,179 +36074873,"Cosy Private room, weekly cleaner",15057355,Benjamin,Manhattan,Two Bridges,40.71155,-73.99712,Private room,70,3,0,,,1,62 +36075020,Apartment In Hamilton Heights Manhattan,23773167,Ashley,Manhattan,Harlem,40.8233,-73.95122,Entire home/apt,125,3,0,,,2,326 +36075404,Shared BR for Overnight Sleep,217595343,Jack,Manhattan,East Harlem,40.7982,-73.94422,Shared room,65,1,2,2019-06-30,2,2,170 +36075606,Luxury One Bedroom Apartment on Wall Street 3 Beds,271379777,Kimhue,Manhattan,Financial District,40.70411,-74.00909,Entire home/apt,255,1,0,,,1,9 +36076098,Beautiful place walking distance from Central Park,271384163,Edward,Manhattan,Harlem,40.80446,-73.9455,Entire home/apt,320,1,0,,,1,322 +36076181,3 Bedroom Penthouse minutes from JFK and Manhattan,34023353,Angelo,Queens,Woodhaven,40.69855,-73.85279,Private room,130,1,0,,,1,89 +36076335,★ Premier Room with 2 Queen Beds ★,270874051,Hotel Vetiver,Queens,Long Island City,40.75258,-73.93475,Private room,119,1,0,,,8,333 +36076338,Comfortable King Size Bed-Block away from D Train,25667666,Elias,Brooklyn,Borough Park,40.64018,-73.99157,Private room,50,2,1,2019-07-07,1,1,25 +36076577,Luxury Private One Bedroom in the Upper East Side,271391063,Bryan,Manhattan,Upper East Side,40.76943,-73.95608,Entire home/apt,165,1,1,2019-06-30,1,1,5 +36076594,Beautiful Private Room in Sunny Greenpoint,94510125,Nathalie,Brooklyn,Greenpoint,40.72923,-73.95693,Private room,75,2,0,,,1,73 +36076758,"Sunny, Comfortable Room in Historic Heights!",271391825,Gloria,Manhattan,Washington Heights,40.84638,-73.93846,Private room,46,2,0,,,1,121 +36076807,cozy apt in midtown,271393608,Michael,Manhattan,Hell's Kitchen,40.76725,-73.98669,Shared room,70,1,3,2019-06-30,3,6,24 +36077160,Beautiful One Bedroom in Astoria,17330506,Oli,Queens,Astoria,40.77472,-73.92825,Private room,75,3,0,,,1,43 +36077537,"Clean, quiet, lux BR in Midtown",10287553,Marie,Manhattan,Hell's Kitchen,40.76843,-73.9894,Private room,147,2,1,2019-07-01,1,1,27 +36077664,"Cozy Shared BR in East Side +(Female Guests Only)",271401156,Abraham,Manhattan,Upper East Side,40.77324,-73.95969,Shared room,69,1,0,,,1,164 +36077745,AMAZING LARGE ONE BEDROOM IN WILLIAMSBURG!!,266752544,Haily,Brooklyn,Williamsburg,40.71527,-73.93852,Entire home/apt,299,3,2,2019-07-03,2,1,178 +36078121,Large Sunny Apartment-By Subway-Lower East Side,40058915,Kevin,Manhattan,Lower East Side,40.71755,-73.98967,Entire home/apt,164,1,1,2019-07-06,1,1,163 +36078765,Bright Bushwick room with view of park,3567433,Wesley,Brooklyn,Bushwick,40.69069,-73.90836,Private room,55,3,0,,,2,23 +36078798,Great Greenpoint location!,1422618,Nicole,Brooklyn,Greenpoint,40.73395,-73.9538,Private room,85,1,0,,,1,341 +36078939,Cosy room Bushwick,235745868,Mari,Brooklyn,Bushwick,40.69324,-73.9094,Private room,37,29,0,,,1,340 +36079246,Spacious Clinton Hill Apartment,34774173,Natalie,Brooklyn,Bedford-Stuyvesant,40.69198,-73.96008,Entire home/apt,95,2,0,,,1,5 +36080023,The Game Room,188453457,Denise,Bronx,Claremont Village,40.84218,-73.90969,Entire home/apt,390,2,0,,,2,348 +36080238,Brand new cozy 1 bedroom apartment in Brooklyn,164701861,Brenda,Brooklyn,East New York,40.67451,-73.88806,Entire home/apt,100,3,0,,,2,112 +36081181,Private Room in the most convenient location!,93551842,Farhath,Manhattan,Murray Hill,40.74605,-73.9773,Private room,80,1,1,2019-06-26,1,1,2 +36081186,"Central location, Manhattan. 1-bed Apt",150518920,Val,Manhattan,Murray Hill,40.74666,-73.97358,Entire home/apt,185,1,0,,,1,192 +36082032,An Urban Oasis in Brooklyn,14515065,Vanessa,Brooklyn,Bushwick,40.69845,-73.93591,Entire home/apt,148,1,0,,,2,349 +36082127,Stylish apartment near Central Park!,113344533,Alina,Manhattan,East Harlem,40.79446,-73.94455,Entire home/apt,170,1,1,2019-07-03,1,1,20 +36082371,Amazing big East Village apt with vintage details,42687204,Ricardo,Manhattan,East Village,40.73034,-73.98725,Entire home/apt,197,1,0,,,1,33 +36082721,Upper Court Room,57023844,Karlene,Queens,Jamaica,40.68588,-73.77823,Private room,69,3,0,,,2,365 +36083269,"Serene Storefront Studio, a private cozy hideaway",3358348,Jennifer,Brooklyn,Crown Heights,40.67497,-73.94973,Entire home/apt,97,1,0,,,1,63 +36085870,The Game Room Place,188453457,Denise,Bronx,Claremont Village,40.84037,-73.8998,Private room,122,1,0,,,2,166 +36087720,PRIVATE TIMES SQUARE TOWNHOUSE,269235140,Ronnie,Manhattan,Hell's Kitchen,40.76437,-73.99044,Entire home/apt,560,1,0,,,1,32 +36087897,Plush And Spacious 2 Bedroom Flat In Manhattan,269235465,Jolien,Manhattan,Harlem,40.80618,-73.94587,Entire home/apt,315,1,0,,,1,5 +36088017,2 Bed 1 Bath Manhattan Apartment,269236041,Marquita,Manhattan,Harlem,40.80629,-73.95001,Entire home/apt,222,6,0,,,1,18 +36095313,New York City escape,25279755,Stacey,Manhattan,Kips Bay,40.74413,-73.97993,Private room,90,2,0,,,1,17 +36095625,Comfortable cosy room,115939890,Ant,Manhattan,Stuyvesant Town,40.73143,-73.97549,Shared room,56,1,0,,,1,3 +36097705,Like a Cottage in the Sky!,271528362,Terri,Staten Island,Grymes Hill,40.61674,-74.10169,Entire home/apt,175,1,0,,,1,350 +36097970,Astonishing Nomad Apt in the Center Of Manhattan,270292053,Teufik,Manhattan,Chelsea,40.7469,-73.99038,Entire home/apt,350,3,3,2019-07-03,3,1,345 +36099118,"Luxury Penthouse 3bed/2bath Apt w/Gym, Doorman",232596712,Jessica,Manhattan,Upper West Side,40.77574,-73.98917,Entire home/apt,583,30,0,,,6,343 +36099301,Amazing 2 Bedroom in the Village!,256090291,Dan,Manhattan,Greenwich Village,40.72897,-74.00167,Entire home/apt,200,30,0,,,1,363 +36100102,"Central Harlem Lux, near to all major restaurants.",271432195,Mohamed,Manhattan,East Harlem,40.80605,-73.94208,Entire home/apt,175,1,1,2019-07-05,1,1,307 +36100457,Trendy King Bedroom w/private Bath in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69485,-73.92759,Private room,69,1,1,2019-06-30,1,6,103 +36100744,Penthouse with Skyline View & Terrace,52115380,Erika,Queens,Glendale,40.69784,-73.89427,Entire home/apt,125,7,0,,,1,39 +36100855,Lovely Studio near Franklin Ave,2390913,Peter,Brooklyn,Crown Heights,40.6756,-73.95644,Entire home/apt,85,4,0,,,1,50 +36100930,Garden Apartment in Artist’s Historical Brownstone,8094859,Elizabeth,Brooklyn,Boerum Hill,40.686,-73.98794,Entire home/apt,190,1,0,,,1,148 +36101190,Flushing Hideout,30839692,Stavros,Queens,Flushing,40.75406,-73.80613,Shared room,25,1,1,2019-06-30,1,3,86 +36101396,7 minutes away from JFK,83974928,Danica,Queens,Laurelton,40.66992,-73.74518,Private room,34,1,3,2019-07-08,3,1,70 +36102578,***New*** Explore the NYC in this Brooklyn Oasis,271568898,Gabriel & Aquanna,Brooklyn,Cypress Hills,40.67814,-73.89286,Entire home/apt,150,1,0,,,1,9 +36102590,金城发大床房 Suit1,255641440,Li,Queens,Flushing,40.75181,-73.81356,Private room,55,1,0,,,7,79 +36103059,Lovely room with full size bed(suit3),255641440,Li,Queens,Flushing,40.76393,-73.80895,Private room,42,1,0,,,7,4 +36103759,East 60s NYC. Heart of midtown manhattan,134749416,Amir,Manhattan,Upper East Side,40.76059,-73.9616,Shared room,209,3,0,,,1,30 +36104174,Stunning ! All new near U.N. & Central Park,271581236,Amir,Manhattan,Midtown,40.7572,-73.96464,Entire home/apt,179,30,0,,,1,242 +36104262,Great soho Designer furniture modern home,269556381,Yolanda,Manhattan,Greenwich Village,40.72785,-74.00145,Entire home/apt,300,4,0,,,1,336 +36105607,NYC apartment located in Midtown Manhattan,271591823,Rob,Manhattan,Kips Bay,40.73835,-73.98121,Private room,150,2,0,,,1,31 +36105765,"Bright, spacious 1br in Harlem | Near 4/5/6 train",13231566,Jordan,Manhattan,East Harlem,40.8019,-73.93829,Entire home/apt,100,14,0,,,1,52 +36105777,Nice central bushwick room with backyard,114413305,Bryant,Brooklyn,Bushwick,40.6949,-73.90954,Private room,45,1,1,2019-07-07,1,1,30 +36106800,LUXE LOFT NYC's BEST NEIGHBORHOOD,270041172,Madison,Manhattan,Greenwich Village,40.73486,-73.99843,Entire home/apt,350,1,0,,,1,363 +36106887,Simple + Cute + Spacious Studio (Perfect for 1-2),102848162,Daniel,Manhattan,Upper West Side,40.78627,-73.97995,Entire home/apt,149,1,1,2019-07-03,1,1,189 +36107133,Charming Area! Private Room!,192951036,Jasmine,Manhattan,Greenwich Village,40.728,-74.00032,Private room,99,1,0,,,10,226 +36107361,Luxury Furnished Apartment in Heart of Astoria,128629269,Cristina,Queens,Astoria,40.76686,-73.9239,Private room,100,30,0,,,1,328 +36107501,Huge New Basement w/Queen Bed in Bushwick,268135013,Noel,Brooklyn,Bushwick,40.69617,-73.92588,Shared room,39,1,0,,,6,28 +36107803,"Dreamy brownstone with cozy room, big closet, bike",57919043,Garrison,Brooklyn,Park Slope,40.67918,-73.97659,Private room,49,24,0,,,1,44 +36108523,Luxury Private Bedroom and bathroom in Midtown,245843084,Dany,Manhattan,Hell's Kitchen,40.75957,-73.99535,Private room,129,3,0,,,1,5 +36108534,Luxury 1 bed in UWS Finest Building with Gym #6109,116305897,Laura,Manhattan,Upper West Side,40.78935,-73.97389,Entire home/apt,180,30,0,,,9,311 +36108714,Williamsburg Waterfront Apartment,212865,Waad,Brooklyn,Williamsburg,40.72045,-73.96313,Entire home/apt,150,90,0,,,1,91 +36108811,Bright and Sunny home away from home.,271616449,Raiysa,Bronx,Parkchester,40.8349,-73.85259,Private room,40,3,1,2019-06-28,1,1,68 +36108975,Very Cozy Van,10407935,Meng,Manhattan,SoHo,40.72427,-73.99849,Entire home/apt,89,1,0,,,8,71 +36109087,ROSE QUARTZ 1 BEDROOM,9093418,Abbey,Manhattan,Chelsea,40.75073,-73.99549,Private room,300,1,0,,,1,365 +36109132,"Private large room, 15 minutes to Times Square.",23835825,Adam,Queens,Sunnyside,40.74608,-73.92179,Private room,59,7,0,,,1,0 +36109290,Very Comfy Van,10407935,Meng,Manhattan,West Village,40.73635,-74.00223,Entire home/apt,89,1,0,,,8,72 +36109452,Cozy Camper Van,10407935,Meng,Manhattan,West Village,40.73295,-74.00365,Entire home/apt,89,1,0,,,8,72 +36109625,"THE BEST 1 bedroom apt in Astoria, seriously, best",93723961,Kevin,Queens,Astoria,40.76769,-73.91994,Entire home/apt,99,2,0,,,1,94 +36109658,Comfy 2 bedroom apartment in Brooklyn,55363509,Eli,Brooklyn,Gravesend,40.60829,-73.97009,Entire home/apt,150,3,0,,,1,172 +36109691,Modern and Beautiful Riverdale Apartment,118853924,Sayar,Bronx,North Riverdale,40.90527,-73.89707,Entire home/apt,150,30,0,,,1,89 +36109805,Amazing Studio in the UWS with Gym #6108,116305897,Laura,Manhattan,Upper West Side,40.79098,-73.97384,Entire home/apt,150,30,0,,,9,343 +36112291,Fire Escape Bedroom in Artist Loft.,101618737,Sihan,Brooklyn,Bushwick,40.69191,-73.90807,Private room,80,3,0,,,2,13 +36112415,Family-Friendly 2BR Apt. in Beautiful Fort Greene,61784887,Landon,Brooklyn,Fort Greene,40.69101,-73.97197,Entire home/apt,250,2,0,,,1,46 +36112469,"Perfect location, beautiful apartment in the City",44183725,Neelam,Manhattan,Chelsea,40.75095,-73.99542,Entire home/apt,185,3,1,2019-07-01,1,1,7 +36112665,1BR steps away from Time Square,250126499,Jeff,Manhattan,Hell's Kitchen,40.75871,-73.99659,Entire home/apt,250,1,0,,,1,8 +36112704,Bright & Cozy Brooklyn Apartment,713116,June,Brooklyn,Prospect-Lefferts Gardens,40.65633,-73.95722,Entire home/apt,145,4,0,,,1,41 +36112923,Lovely 1BR Apartment Central Park/ Columbus Circle,35652410,Kate,Manhattan,Upper West Side,40.77568,-73.98019,Entire home/apt,170,4,0,,,1,30 +36113110,Beautiful unique artist loft!,18594883,Reece,Brooklyn,Bedford-Stuyvesant,40.6924,-73.95927,Private room,51,1,2,2019-07-07,2,1,23 +36113226,Room in Charming Williamsburg Townhouse,28752285,Mirro,Brooklyn,Williamsburg,40.71268,-73.95855,Private room,90,2,0,,,1,347 +36113257,WaHi Walk Up,22528598,Jennifer,Manhattan,Washington Heights,40.85269,-73.93616,Private room,80,1,1,2019-06-29,1,1,68 +36113332,Large room(Brooklyn) - 20 min to Manhattan+comfort,271162941,Anna,Brooklyn,Midwood,40.62486,-73.95458,Private room,80,1,0,,,3,330 +36113697,Elegant private bedroom in sunny modern home #3,101771985,Yudis,Manhattan,Harlem,40.80624,-73.9502,Private room,90,1,1,2019-06-30,1,3,179 +36114015,Spacious Private Room in Williamsburg,197119374,Chenoa,Brooklyn,Williamsburg,40.70982,-73.95831,Private room,55,1,0,,,1,2 +36114202,Private Room in Central Park North #2,264495166,Jordania,Manhattan,Harlem,40.80079,-73.95783,Private room,85,2,0,,,3,11 +36114258,Luxury Chelsea Studio,47334774,Sally,Manhattan,Chelsea,40.75223,-74.00816,Entire home/apt,300,2,0,,,1,168 +36114840,Stunning Penthouse Over the High Line,3868762,Fabio,Manhattan,Chelsea,40.75218,-74.00241,Entire home/apt,550,4,0,,,1,34 +36115183,Cozy warm,271667012,Dilenny,Bronx,Pelham Bay,40.85234,-73.82969,Entire home/apt,55,7,0,,,1,179 +36115258,Sunlit Design Loft 2bdroom,271663737,Jesse,Brooklyn,Williamsburg,40.70612,-73.95549,Entire home/apt,99,1,0,,,1,297 +36115461,Private Room In a Beautiful Tree-Lined Brownstone,24633205,Joshua,Brooklyn,Bedford-Stuyvesant,40.6887,-73.93982,Private room,50,1,1,2019-06-30,1,1,27 +36116045,Cristina's place,95007110,Rosa,Manhattan,Washington Heights,40.84773,-73.94015,Private room,60,2,0,,,1,343 +36116336,Very Large/Spacious Private Bedroom in Manhattan,118892550,Jona,Manhattan,Upper East Side,40.78269,-73.95452,Private room,85,2,0,,,1,30 +36116772,"Sunny room in Brooklyn, Sunset Park",271681014,Ying Hua,Brooklyn,Borough Park,40.64531,-73.99757,Private room,45,2,0,,,3,139 +36117025,"Cool Studio in SoHo, Manhattan",217692384,Gabriel,Manhattan,SoHo,40.72552,-74.00101,Entire home/apt,240,2,0,,,1,90 +36117267,convenient 5min away from jfk 20 min lga airport,129654782,Kevon,Queens,Richmond Hill,40.68978,-73.81468,Entire home/apt,150,3,0,,,1,179 +36117552,Quiet 1BR Apt in West Village/NYU,1196848,Kim,Manhattan,West Village,40.73564,-74.00997,Entire home/apt,229,2,0,,,1,10 +36117652,"In the heart of the Upper East Side, Manhattan",7464960,Charlie,Manhattan,Upper East Side,40.77247,-73.95792,Entire home/apt,200,2,0,,,1,47 +36118677,Modern room with balcony,271350187,Elena,Brooklyn,Williamsburg,40.71731,-73.94907,Private room,135,1,2,2019-07-05,2,3,353 +36118872,A Cozy Bed Dream in Manhattan,178720348,Mingmei,Manhattan,Harlem,40.81851,-73.9567,Shared room,75,1,0,,,2,34 +36120293,Spacious Studio Near Manhattan -15 min to Time SQ!,41829977,Sonam,Queens,Elmhurst,40.7479,-73.87496,Private room,115,1,0,,,2,170 +36120857,Rare Find - 9bd/3ba Duplex - 15 mins to Manhattan,219908197,Anthony,Brooklyn,Williamsburg,40.71632,-73.94295,Entire home/apt,595,2,0,,,3,340 +36127750,Lovely 3 bedroom w/ 4beds & 2 bathroom in Queens,261953214,Kumar,Queens,Jamaica Estates,40.71572,-73.78204,Entire home/apt,280,1,0,,,1,330 +36128584,SOHO One bedroom Good vibes Perfect location,1312063,Carla,Manhattan,SoHo,40.72548,-74.0021,Private room,200,1,1,2019-07-01,1,1,203 +36129014,Semi-Private Brooklyn Quiet Sundrenched Apartment,271749110,Ed,Brooklyn,Crown Heights,40.67333,-73.91614,Private room,150,1,0,,,1,177 +36129923,Space to breath in Crown Heights,6322527,Emily,Brooklyn,Crown Heights,40.67122,-73.94093,Private room,75,2,2,2019-06-30,2,1,89 +36130876,Kosy apt w modern new furniture in the heart of NY,7441368,Chris And Jamie,Manhattan,Hell's Kitchen,40.75584,-73.99304,Entire home/apt,175,1,0,,,2,270 +36130946,Sunset Park Upgraded Apartment,268119922,Francisco,Brooklyn,Sunset Park,40.64534,-74.01992,Entire home/apt,200,2,0,,,1,322 +36131210,Luxury new private studio one stop to Manhattan4,53620244,Chiara,Queens,Long Island City,40.74812,-73.93875,Entire home/apt,180,1,1,2019-07-04,1,1,334 +36131784,Entire 3 Bedroom apt next to Barclay’s center,229381517,Pavel,Brooklyn,Prospect Heights,40.68077,-73.97489,Entire home/apt,250,1,0,,,2,175 +36133191,Spacious and Sunny Bushwick Artist's Loft,153616576,Erica,Brooklyn,Bushwick,40.70795,-73.92039,Entire home/apt,250,1,0,,,1,188 +36133997,Refreshing apt in the heart of downtown,8415945,Dennis,Manhattan,Greenwich Village,40.72968,-74.00195,Entire home/apt,157,3,1,2019-06-28,1,1,169 +36134580,COSY 2BR APARTMENT IN LOWER EAST SIDE,55814811,Doni,Manhattan,Lower East Side,40.71989,-73.98459,Entire home/apt,198,3,0,,,1,5 +36134670,Amazing and clean apartment-15 min to Central Park,271784048,Deruchett,Manhattan,Harlem,40.82601,-73.93795,Private room,60,3,0,,,1,229 +36135376,"Private and cozy room, steps to LGA and Manhattan",216297714,Alex,Queens,Elmhurst,40.746,-73.87506,Private room,78,14,0,,,1,0 +36136048,Manhattan ♥ 2BR apartment,270307751,Charles,Manhattan,Lower East Side,40.71877,-73.99055,Entire home/apt,320,4,0,,,1,160 +36136548,Amazing Condo In Amazing Part of an Amazing City-2,258762273,Andrew,Queens,Richmond Hill,40.6984,-73.84921,Private room,50,1,0,,,1,308 +36137064,BEAUTIFUL 2 BEDROOM APARTMENT BY TIMES SQUARE,271015294,Natalia,Manhattan,Hell's Kitchen,40.76116,-73.99031,Entire home/apt,250,3,0,,,1,259 +36137531,NYC oasis in Gramercy,14499116,Michal,Manhattan,Stuyvesant Town,40.73549,-73.97707,Entire home/apt,250,20,0,,,1,30 +36137613,Modern and Hip Brooklyn Brownstone!,206115,Christian,Brooklyn,Bedford-Stuyvesant,40.68605,-73.92436,Entire home/apt,110,2,0,,,1,182 +36137740,Cozy Kips Bay Apartment,30933227,Dipti,Manhattan,Kips Bay,40.74133,-73.97706,Entire home/apt,130,30,1,2019-06-28,1,1,54 +36138394,"Free Cleaning & WiFi, Quick Walk to Metro-Modern!",114394986,Charlotte & Brad,Brooklyn,Bedford-Stuyvesant,40.68444,-73.95547,Private room,35,30,0,,,1,43 +36138789,Room with Amazing location in Manhattan,31846499,Veronika,Manhattan,East Harlem,40.78774,-73.94627,Private room,73,180,0,,,1,0 +36139701,Cozy place by Times Square,271393608,Michael,Manhattan,Hell's Kitchen,40.76658,-73.98566,Shared room,69,1,0,,,6,23 +36139806,"30 mins to Times Square!! 15 mins LGA, 25mins JFK!",260209224,Lotay,Queens,Jackson Heights,40.75077,-73.8702,Entire home/apt,67,2,0,,,3,134 +36139906,NYC full spacious apartment.,34274867,Sarah,Manhattan,Washington Heights,40.85453,-73.93562,Entire home/apt,300,4,0,,,1,319 +36139954,Best location in ny,271393608,Michael,Manhattan,Hell's Kitchen,40.76802,-73.98721,Shared room,69,1,1,2019-06-30,1,6,24 +36139960,Master bedroom in luxury building,61993016,Daniel,Manhattan,Hell's Kitchen,40.76054,-73.99936,Private room,150,2,0,,,1,11 +36140236,Beautiful room near central park,271393608,Michael,Manhattan,Hell's Kitchen,40.7664,-73.98586,Shared room,69,1,1,2019-06-30,1,6,24 +36140542,Wonderful Summer Vacation Getaways For Weekenders,229739739,John,Brooklyn,Flatbush,40.646,-73.95455,Private room,85,7,0,,,2,176 +36140620,Cozy room in Nyc,271393608,Michael,Manhattan,Hell's Kitchen,40.76824,-73.98538,Shared room,69,1,0,,,6,19 +36140801,Stylish room in midtown,271393608,Michael,Manhattan,Hell's Kitchen,40.76759,-73.98697,Shared room,69,1,1,2019-06-30,1,6,24 +36141106,Honest clean living,13605253,Kerrey,Queens,Springfield Gardens,40.67136,-73.76248,Entire home/apt,95,2,0,,,1,81 +36142215,SUMMER RENTAL IN SUNNY SPACIOUS ROOM,41484943,Melissa,Brooklyn,Kensington,40.63676,-73.97448,Private room,54,7,0,,,2,225 +36142219,Beautiful 2 bedroom Apartment on Prime Upper East!,47785320,Cristina,Manhattan,Upper East Side,40.77352,-73.94693,Entire home/apt,150,30,0,,,1,66 +36142241,Cozy room in Brooklyn Bushwick,226718475,Marion,Brooklyn,Bushwick,40.6938,-73.9091,Private room,39,15,0,,,1,354 +36142296,July sublet in Bushwick,26794324,Quinten,Brooklyn,Bushwick,40.70269,-73.92833,Private room,45,7,0,,,1,10 +36142537,2 Bedroom Home away from home,62154352,Emily,Manhattan,Harlem,40.81427,-73.95141,Entire home/apt,150,2,0,,,1,40 +36142853,Bright and cozy room in Greenpoint with loft,6900478,Rebecca,Brooklyn,Greenpoint,40.73201,-73.95299,Private room,85,1,0,,,2,83 +36143087,"Beautiful, Spacious room in prime Williamsburg!",226520484,Mika,Brooklyn,Williamsburg,40.7154,-73.95438,Private room,70,5,1,2019-07-01,1,1,7 +36143214,Cute 1 Bedroom Bungalow-Steps to Beach&Subway,271844440,Timothy,Queens,Rockaway Beach,40.59087,-73.81143,Entire home/apt,139,1,0,,,3,166 +36144863,Amazing 2 bed 2 bath in Williamsburg,14098199,Lucas,Brooklyn,Williamsburg,40.71413,-73.95685,Entire home/apt,250,5,0,,,1,209 +36144903,Harlem Hot Spot,240367821,Javon,Manhattan,Harlem,40.81121,-73.94124,Entire home/apt,132,2,0,,,1,199 +36144933,BEST DEAL 2 BR APT IN MANHATTAN! 6 BEDS AVAILABLE!,270583057,Reccie M.,Manhattan,Washington Heights,40.84366,-73.94018,Entire home/apt,195,5,0,,,1,270 +36145134,"HUGE Tribeca/SOHO Loft - 2,200 Square Feet!!",271863165,Johanna,Manhattan,Tribeca,40.71888,-74.00431,Private room,500,5,0,,,1,252 +36145317,1910 Original Rockaway Bungalow,63389796,Diana,Queens,Rockaway Beach,40.58947,-73.81435,Entire home/apt,150,1,5,2019-07-07,5,1,79 +36145564,The place is a brand new gut renovated apartment.,24304607,Scott,Bronx,Kingsbridge,40.87997,-73.90135,Private room,100,1,0,,,1,115 +36145727,Park side Apt in front of Forest Park,271867677,Erwin,Queens,Woodhaven,40.69658,-73.85615,Private room,50,1,2,2019-07-06,2,1,359 +36146653,Beautiful bedroom in traditional NYC apt!,40984551,Felix,Brooklyn,Bushwick,40.70567,-73.92359,Private room,70,2,0,,,1,5 +36146672,Veneta New York suite,266037277,Gianluigi,Manhattan,Hell's Kitchen,40.76687,-73.98644,Private room,561,1,0,,,1,364 +36146761,Gorgeous 1 family home in Astoria; 2 floors,44032493,Veronica,Queens,Ditmars Steinway,40.77333,-73.9071,Entire home/apt,200,4,0,,,1,117 +36147589,"Cozy private room with ensuite, 25min to Manhattan",18924861,Vincent,Queens,Sunnyside,40.73769,-73.92441,Private room,60,28,0,,,1,330 +36147750,*TIMES SQ CENTRAL*,21515253,Jenny,Manhattan,Hell's Kitchen,40.76141,-73.99213,Entire home/apt,209,1,1,2019-06-30,1,2,32 +36148359,Spacious and light-filled 2.5 bedroom in Ridgewood,201361410,Jonah,Queens,Ridgewood,40.70657,-73.90448,Entire home/apt,55,20,0,,,1,28 +36148417,1 Bedroom Bungalow-Rockaway-By Beach&Subway,271885652,Elizabeth,Queens,Rockaway Beach,40.58681,-73.8128,Entire home/apt,159,1,0,,,4,166 +36148509,Classy East Village Enclave,60811527,Mariana,Manhattan,East Village,40.72595,-73.98971,Entire home/apt,220,15,0,,,1,61 +36148594,Beautiful Brooklyn,91813899,Tássia,Brooklyn,Crown Heights,40.67331,-73.93212,Private room,115,1,0,,,1,58 +36148925,Cozy Brooklyn Home on a Tree-lined Block,8084384,Kara,Brooklyn,Fort Greene,40.6853,-73.9722,Entire home/apt,220,2,0,,,1,3 +36149019,Cozy Studio near JFK and LaGuardia Newly Renovated,267016512,Alexis,Queens,Hollis,40.71309,-73.77171,Entire home/apt,99,1,0,,,1,139 +36149148,Bushwick Michael,271896011,Jeremy,Brooklyn,Bushwick,40.68936,-73.90879,Private room,75,1,0,,,1,175 +36149281,My Cozy Two Bedroom Apt in Soho - Very Conve,1387341,Dan,Manhattan,SoHo,40.72403,-73.997,Entire home/apt,250,2,0,,,1,247 +36149658,Bedstuy Home of The Greats (Stuyvesant Heights),271901058,Fernando,Brooklyn,Bedford-Stuyvesant,40.68795,-73.9374,Private room,65,1,1,2019-06-29,1,1,335 +36149911,"Financial District,wall street,PV ROOM,FEMALE ONLY",87827436,Camelia,Manhattan,Financial District,40.704,-74.00646,Private room,90,24,0,,,1,362 +36150121,AMAZING 3 BEDROOM APARTMENT NEAR UNION SQUARE,271349926,Monika,Manhattan,East Village,40.72833,-73.98482,Entire home/apt,250,3,0,,,1,220 +36150599,The most convenient place in Brooklyn,229381517,Pavel,Brooklyn,Prospect Heights,40.68017,-73.97352,Entire home/apt,250,1,0,,,2,158 +36151001,Crown Heights Haven,209921907,Erma,Brooklyn,Crown Heights,40.66997,-73.92696,Private room,38,2,0,,,1,179 +36151482,Luxury apartment in the “heart of queens”,271916367,Celina,Queens,East Elmhurst,40.75899,-73.85605,Private room,65,2,0,,,1,176 +36151576,~TIMES SQ CENTRAL~,21515253,Jenny,Manhattan,Hell's Kitchen,40.76062,-73.99349,Entire home/apt,209,1,0,,,2,112 +36152646,"Peace, Love and Sunshine",44929652,Lawanne,Brooklyn,East Flatbush,40.64431,-73.94867,Entire home/apt,200,3,1,2019-07-06,1,4,357 +36152878,Cozy Apartment in Midtown West,271928929,Asil,Manhattan,Hell's Kitchen,40.75402,-73.99318,Entire home/apt,75,1,4,2019-07-05,4,1,98 +36153727,Ridgewood Deal,271925782,Stephane,Queens,Ridgewood,40.70062,-73.90796,Shared room,35,1,0,,,1,72 +36154148,"Private and cozy bedroom, for rent.",214483712,Christina,Staten Island,Bull's Head,40.59436,-74.16345,Private room,50,30,0,,,3,179 +36154590,Private and Cozy Bedroom.,214483712,Christina,Staten Island,Bull's Head,40.59475,-74.1637,Private room,50,30,0,,,3,364 +36163803,A luxury one-bedroom apartment,242376689,Xiuzhen,Queens,Long Island City,40.74693,-73.94175,Entire home/apt,150,5,0,,,1,15 +36164019,Home near the park,139897963,Vanisha-Arleen,Brooklyn,Prospect-Lefferts Gardens,40.65694,-73.95374,Private room,33,7,0,,,1,159 +36164059,Spacious room near Brooklyn Botanic Gardens,3833262,Sara,Brooklyn,Crown Heights,40.66929,-73.96222,Private room,46,2,0,,,1,136 +36164533,Summer Oasis Brooklyn Apartment,29535980,Tiffany,Brooklyn,Williamsburg,40.70671,-73.95076,Private room,65,7,0,,,1,210 +36166946,Spacious decorated 2 BR minutes from Central Park.,21802668,Domenica,Manhattan,East Harlem,40.80208,-73.94415,Entire home/apt,250,17,0,,,1,46 +36168631,The coziest garden apartment in Harlem!!,4169722,Jophiel,Manhattan,Harlem,40.80637,-73.94282,Entire home/apt,100,2,0,,,1,11 +36168735,Cozy Two Bedroom Apartment in the East Village,270613726,Benjamin,Manhattan,East Village,40.72567,-73.98635,Entire home/apt,225,3,0,,,1,231 +36168746,"I promise you ,you'll never want to leave!",272022688,Natanel,Brooklyn,Sheepshead Bay,40.58713,-73.95349,Private room,89,2,0,,,1,59 +36169764,Studio (200 sq ft.) near Times Square!,78501032,Eileen,Manhattan,Hell's Kitchen,40.76066,-73.99011,Entire home/apt,134,1,0,,,1,0 +36169832,"Tiny Room only for “1 lady” :) +Solo Travelers !!!!",264823783,Wada,Manhattan,Harlem,40.81922,-73.95287,Private room,50,7,0,,,2,53 +36170293,Convenient and Spacious Sugar Hill Apartment,272034378,Cristian,Manhattan,Harlem,40.82808,-73.94126,Private room,45,3,0,,,1,10 +36170749,Luxury 1 BD Full Bed w/ AC & Netflix in Queens (3),268784513,Amit,Queens,East Elmhurst,40.75815,-73.88323,Private room,55,1,2,2019-07-06,2,3,358 +36172164,Sleeping Easy on the East Side! 1 Bed/1 Bath,270629822,Jasson,Manhattan,East Harlem,40.78586,-73.94475,Entire home/apt,199,3,3,2019-07-02,3,1,349 +36172246,Pirate's den,272049968,Samuel,Queens,Arverne,40.59389,-73.7906,Entire home/apt,90,1,0,,,1,39 +36172249,Premier room in Downtown Manhattan,253552326,Grace,Manhattan,Chinatown,40.71368,-73.99635,Private room,98,1,0,,,4,87 +36172519,"Cozy, Spacious and private apartment in NYC",219573002,Camille,Manhattan,Washington Heights,40.85488,-73.93194,Entire home/apt,125,2,0,,,1,2 +36172912,Stylish 1 Bedroom in the Heart of the LES,44995980,Ann,Manhattan,Lower East Side,40.72007,-73.98873,Entire home/apt,179,10,0,,,1,313 +36174744,an L.E.S. Jewel-in-the-Crown of Chinatown!,2344295,Yoav,Manhattan,Lower East Side,40.71752,-73.99147,Private room,260,2,0,,,1,23 +36175342,South Park Slope 2 BR Garden-Level - Brand New!,48164151,Todd,Brooklyn,Sunset Park,40.66294,-73.99146,Entire home/apt,250,3,0,,,1,85 +36175552,Large Apartment by Central Park with an Elevator!!,139995595,Eli,Manhattan,Upper West Side,40.78331,-73.9747,Entire home/apt,115,30,0,,,1,103 +36175721,Historic Beach Bungalow-Steps to train- By Beach,271844440,Timothy,Queens,Rockaway Beach,40.58967,-73.81351,Entire home/apt,129,1,0,,,3,172 +36176125,2 Bedroom 10 Minutes from JFK on the 1st floor,52997121,Iwona,Queens,Jamaica,40.67606,-73.78288,Entire home/apt,250,1,0,,,4,90 +36176586,BRAND NEW KING 2br Airports& Times Sq MINUTES away,272080566,Sarah,Queens,Elmhurst,40.7348,-73.86906,Entire home/apt,199,2,0,,,1,157 +36176688,Quaint Little Reader’s Retreat in Hudson Heights.,272081051,Isabelle,Manhattan,Washington Heights,40.85342,-73.93714,Entire home/apt,99,3,0,,,1,34 +36176909,Large Apartment by Union Sqaure with an Elevator!!,183950711,Livne,Manhattan,Gramercy,40.73275,-73.98242,Entire home/apt,125,30,0,,,1,119 +36177135,Historic Rockaway Beach Bungalow-By Subway & Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.58818,-73.81302,Entire home/apt,139,1,1,2019-07-05,1,4,171 +36177241,VJ'S 5 HOUR YACHT TOUR,23732730,Buddy,Bronx,City Island,40.84443,-73.78497,Entire home/apt,1000,1,0,,,4,90 +36177711,Moroccan Lounge*,58629935,Saida,Brooklyn,Bushwick,40.6986,-73.91914,Private room,95,2,1,2019-07-01,1,2,65 +36177747,* Brooklyn's Prospect Park Perfection *,13422723,Zoē,Brooklyn,Flatbush,40.65296,-73.95724,Entire home/apt,90,4,1,2019-07-03,1,1,14 +36178444,Your relaxing escape - studio apartment in NYC,1134155,Hadeel,Manhattan,Morningside Heights,40.80739,-73.96068,Entire home/apt,150,2,0,,,1,33 +36178893,♥~Cutest apartment in the East Village~♥,222487531,Andi,Manhattan,East Village,40.73061,-73.98409,Entire home/apt,215,2,0,,,1,109 +36180341,VIP Pristine Luxury 2BED Prime Midtown west,84749340,Pierre,Manhattan,Upper West Side,40.76836,-73.98419,Entire home/apt,245,1,0,,,1,287 +36180667,Pristine Bedroom in Historic Harlem Neighborhood,33362434,Melani,Manhattan,Harlem,40.81795,-73.94099,Private room,100,2,0,,,1,15 +36180945,✰ Manhattan Bridge ✰ STUDIO / w. Private Backyard,272118165,Feliks,Manhattan,Chinatown,40.71387,-73.99427,Entire home/apt,155,5,0,,,1,165 +36181000,Charming brownstone in the heart of Brooklyn!,30730392,Vlada,Brooklyn,Clinton Hill,40.6898,-73.96731,Entire home/apt,122,4,1,2019-06-29,1,1,31 +36181391,Woman Flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64493,-73.99597,Shared room,35,1,0,,,4,362 +36182083,Comfortable apartment in BUSHWICK by GATES stop(J),272127488,Jim&Daniela,Brooklyn,Bushwick,40.69206,-73.92282,Entire home/apt,80,1,0,,,2,13 +36182136,House by the beach side,234781729,Nikky,Queens,Edgemere,40.59309,-73.77958,Private room,65,1,2,2019-07-06,2,1,363 +36182317,"Sunny room in Sunset Park, Brooklyn",271681014,Ying Hua,Brooklyn,Borough Park,40.6466,-73.99751,Private room,45,1,0,,,3,151 +36182715,Connected rooms with single twin bed per room,271681014,Ying Hua,Brooklyn,Borough Park,40.64452,-73.99699,Private room,45,1,0,,,3,179 +36182794,"Two Bedrooms with Four Beds, Bathroom, Kitchenette",266092932,Blanca,Manhattan,Hell's Kitchen,40.75732,-73.99312,Entire home/apt,229,2,0,,,2,335 +36182819,Luxurious Studio One Stop To Manhattan!,247335568,Evelyn,Queens,Long Island City,40.74717,-73.94254,Entire home/apt,200,1,0,,,7,5 +36183003,Private bedroom withWiFi minutes from Central Park,82406306,Marc,Manhattan,East Harlem,40.80128,-73.93991,Private room,78,1,0,,,2,13 +36185385,Comfy Artistic Private Studio in Brooklyn,193345547,Victorine,Brooklyn,Bushwick,40.69953,-73.92154,Entire home/apt,110,1,1,2019-07-07,1,2,353 +36186519,The Perfume Lab Inspiration Duplex of Brooklyn,193345547,Victorine,Brooklyn,Bushwick,40.69987,-73.92203,Entire home/apt,135,1,0,,,2,331 +36186719,Private Bedroom in the Heart of Chelsea!,268920555,Terrence Jake,Manhattan,Chelsea,40.74531,-73.99454,Private room,999,30,0,,,1,270 +36188287,Available for 4th July to 6th July,129250918,Manthan,Brooklyn,Fort Greene,40.68781,-73.98012,Shared room,200,1,0,,,1,9 +36188485,Lovely Room in Williamsburg,47604405,Mariana,Brooklyn,Williamsburg,40.70957,-73.94995,Entire home/apt,50,28,0,,,1,274 +36189195,Next to Times Square/Javits/MSG! Amazing 1BR!,270214015,Rogelio,Manhattan,Hell's Kitchen,40.75533,-73.99866,Entire home/apt,2999,30,0,,,1,222 +36189257,2BR Near Museum Mile! Upper East Side!,272166348,Mary Rotsen,Manhattan,Upper East Side,40.78132,-73.95262,Entire home/apt,1999,30,0,,,1,270 +36196038,Room in Artsy Loft in the Upper West Side,73056987,Oscar,Manhattan,Upper West Side,40.7988,-73.97277,Private room,200,3,0,,,1,114 +36197063,Small private room 2 windows,2793778,Fernando,Queens,Forest Hills,40.71716,-73.83452,Private room,50,4,0,,,5,55 +36198430,Spacious Modern Apt Steinway Piano Lincoln Center,42104268,Izzy,Manhattan,Upper West Side,40.77649,-73.988,Private room,195,1,1,2019-06-30,1,1,36 +36198599,Book a room with views!,272241217,Anthony,Manhattan,Lower East Side,40.71197,-73.99019,Private room,70,1,1,2019-06-30,1,1,50 +36199090,ROMANTIC SUNSET YACHT CRUISE & FIREWORKS,23732730,Buddy,Bronx,City Island,40.84295,-73.78433,Entire home/apt,600,1,0,,,4,44 +36199092,Green flat with patio in New York artistic best,167024334,Mani,Brooklyn,Bushwick,40.701,-73.9243,Entire home/apt,150,2,0,,,2,331 +36199363,Furnished room for rent in Bronx SINGLE FEMALE,272247972,Kadeen,Bronx,Olinville,40.88116,-73.86547,Shared room,25,90,0,,,1,190 +36200103,Quite boutique type time share,272243990,Victoria,Manhattan,Midtown,40.76358,-73.97825,Entire home/apt,180,1,0,,,1,57 +36200256,"Light, airy, spacious room in the heart of BK!",18911497,Maryam,Brooklyn,Boerum Hill,40.68784,-73.98579,Private room,80,20,0,,,1,40 +36200527,"Calm, quiet space with natural creations.",11386608,Shaun,Brooklyn,Bedford-Stuyvesant,40.69265,-73.93201,Private room,35,9,0,,,1,179 +36200778,Cozy bedroom in BUSHWICK by GATES stop J Train!!!,272127488,Jim&Daniela,Brooklyn,Bushwick,40.69048,-73.92258,Private room,55,1,0,,,2,276 +36201203,Quiet Studio in the UWS by Central Park,84163854,Martha,Manhattan,Upper West Side,40.77883,-73.98146,Entire home/apt,162,2,0,,,1,12 +36201233,Comfortable Main Bedroom in Brooklyn,48018277,Alejandro,Brooklyn,Bedford-Stuyvesant,40.69361,-73.94089,Private room,95,2,0,,,2,47 +36201685,"Cozy, serene sanctuary for one",26325723,Suzana,Manhattan,Upper East Side,40.77365,-73.94961,Private room,80,1,0,,,1,56 +36201798,A specious and bright 1 bedroom in hart of Queens,272267421,Darkhan,Queens,Maspeth,40.73455,-73.88899,Private room,50,1,0,,,3,73 +36202006,Stream-Pressed Paradise (Laundry Room Setup),43392243,Rita,Staten Island,Concord,40.6011,-74.0783,Shared room,30,2,0,,,4,82 +36202550,Beautiful 1-br with Spectacular View,144606000,Tiffany,Manhattan,Upper West Side,40.80064,-73.96778,Entire home/apt,250,14,0,,,1,34 +36203757,Classic Brooklyn Apartment,29590865,Colleen,Brooklyn,Bay Ridge,40.6327,-74.03145,Entire home/apt,125,5,0,,,1,15 +36203812,Spacious 2 story home in the heart of Manhattan,3061951,Wissam,Manhattan,Midtown,40.74422,-73.98172,Entire home/apt,190,5,0,,,1,10 +36204103,$2000 / Huge 1br - Cobble Hill | 8/1 start,95054582,Saba,Brooklyn,Cobble Hill,40.68719,-73.99515,Private room,70,60,0,,,1,156 +36204465,"Bushwick Central Avenue, between L and J train.",272265146,Alexander,Brooklyn,Bushwick,40.68822,-73.90979,Private room,50,1,0,,,1,19 +36204503,Private studio in New York most artistic Bushwick,167024334,Mani,Brooklyn,Bushwick,40.70286,-73.92697,Entire home/apt,120,1,0,,,2,339 +36204696,Perfect room in Brooklyn,263282580,Caritas,Brooklyn,Bedford-Stuyvesant,40.69567,-73.93431,Private room,45,1,1,2019-07-01,1,2,362 +36204725,Beautiful Bushwick bedroom w/backyard balcony!,10004428,Larena,Brooklyn,Bushwick,40.69128,-73.92078,Private room,75,4,0,,,1,6 +36205494,bensonhurst area,60456157,Muhammad Tahir Khan,Brooklyn,Gravesend,40.59671,-73.98741,Private room,85,7,0,,,1,365 +36205674,Large Sunny Room Available,328898,Damion,Manhattan,East Harlem,40.80041,-73.94615,Private room,59,1,1,2019-07-07,1,1,42 +36205697,Room with private bathroom,261187437,Shasha,Brooklyn,Borough Park,40.63392,-74.00505,Private room,69,1,0,,,6,180 +36205851,Entire Spacious Apartment in UWS near Central Park,140997060,Amy,Manhattan,Upper West Side,40.77824,-73.98325,Entire home/apt,275,3,0,,,2,24 +36206001,Light Filled 1-BDR Apartment Bed-Stuy / Bushwick,2485019,Vera,Brooklyn,Bedford-Stuyvesant,40.68301,-73.9138,Entire home/apt,95,4,0,,,1,14 +36206021,The Perfect Upper East Side Apartment,6754647,Daniel,Manhattan,Upper East Side,40.76163,-73.96319,Entire home/apt,161,1,0,,,1,22 +36206222,Ladies Flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64283,-73.99416,Shared room,30,1,0,,,4,365 +36206264,New Unit w/ Private Gym in Bushwick (10% off!),141718825,Richard,Brooklyn,Bushwick,40.69341,-73.9215,Private room,125,1,0,,,1,351 +36206540,Beautiful Sun-Drenched Private Room South Slope,2981481,Bridge & Samanta,Brooklyn,Sunset Park,40.661,-73.99618,Private room,80,2,0,,,1,61 +36206655,Sunny & Spacious apartment in Crown Heights,177067211,Ian,Brooklyn,Crown Heights,40.67556,-73.94418,Entire home/apt,99,15,0,,,1,34 +36206788,Best 1 bedroom apartment in NYC,272308792,Takeshia,Bronx,Longwood,40.81629,-73.90945,Entire home/apt,85,1,1,2019-07-06,1,1,14 +36206792,Woman Flower (only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64426,-73.99385,Shared room,35,1,0,,,4,365 +36206797,Violet. flower Youth Hostel(only for girls ),67567916,Bamboo,Brooklyn,Borough Park,40.64335,-73.9956,Shared room,35,1,0,,,4,174 +36207223,"Sunny, Spacious 2-bd Chelsea Apt",5723770,Olive,Manhattan,Chelsea,40.74921,-73.99777,Entire home/apt,750,1,0,,,1,89 +36207244,Super Cool & Friendly Pad in Prime AreaofBushwick,272314085,Biagio,Brooklyn,Bushwick,40.69718,-73.92328,Private room,44,1,2,2019-07-05,2,1,55 +36207527,Bright and Cozy Uptown Retreat,43388555,Kristen,Manhattan,Washington Heights,40.85139,-73.92952,Entire home/apt,120,2,0,,,1,37 +36207556,Beautiful apartment steps away from Central Park,192572987,Stewart,Manhattan,Upper West Side,40.79617,-73.96228,Entire home/apt,125,2,0,,,1,0 +36207836,Big Room close to LGA Airport. Cuarto Grande.,157053317,Jey,Queens,East Elmhurst,40.76263,-73.88999,Private room,40,1,0,,,1,318 +36208138,Best Location! 3BR / 1 BA Chelsea! Steps to Penn!,266149167,Jhon Carlos,Manhattan,Chelsea,40.74995,-73.99711,Entire home/apt,234,2,0,,,1,19 +36208160,PVT spacious room in queens near airports,272324119,Abe,Queens,Jamaica,40.70642,-73.78365,Private room,39,2,0,,,1,54 +36208936,3min to subway - Modern 3BR with walk-in closet,160895899,Patty,Brooklyn,Crown Heights,40.67644,-73.94005,Entire home/apt,167,3,0,,,1,166 +36209003,A homey home.,272327753,Robert,Brooklyn,Bay Ridge,40.62373,-74.02676,Entire home/apt,200,1,2,2019-07-08,2,1,356 +36209463,New Studio Great Location in NYC,268248281,Jimmy,Manhattan,Chelsea,40.75264,-73.99785,Entire home/apt,225,3,0,,,1,80 +36210527,Room with a private bathroom,270849897,Helen,Manhattan,Washington Heights,40.83958,-73.94323,Private room,70,1,0,,,2,90 +36210603,Large River view room with king size bed,270849897,Helen,Manhattan,Washington Heights,40.83967,-73.94189,Private room,70,1,0,,,2,165 +36210670,little Oasis in New York artistic best Bushwick,272342845,Marc,Brooklyn,Bushwick,40.70181,-73.92541,Entire home/apt,120,30,0,,,2,338 +36210915,Beautiful apartment in old-style Brooklyn,60983246,Carlos,Brooklyn,Borough Park,40.63032,-73.9936,Entire home/apt,103,6,0,,,1,18 +36211538,Spacious getaway room in the heart of Bedstuy,139171543,Garth,Brooklyn,Bedford-Stuyvesant,40.68294,-73.9258,Private room,66,3,0,,,1,174 +36212415,Beautiful studio in far rockaway,272365275,Abimbola,Queens,Bayswater,40.59947,-73.76468,Private room,55,1,0,,,1,170 +36213323,✨Executive Room One King Bed and Kitchenette✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75237,-73.93342,Private room,89,1,0,,,8,298 +36214351,Authentic Williamsburg Loft,9676462,Iris,Brooklyn,Williamsburg,40.71127,-73.96465,Entire home/apt,200,30,0,,,1,62 +36216103,✨Marvelous Room One Queen and One Full Bed✨,270874051,Hotel Vetiver,Queens,Long Island City,40.75428,-73.93461,Private room,89,1,0,,,8,321 +36221298,Bohemian studio in Midtown,5288346,Lauren,Manhattan,Upper East Side,40.7603,-73.96225,Entire home/apt,120,1,1,2019-07-01,1,1,1 +36221523,"1 bedroom in beautiful, bohemian East Village apt",126974091,Hayley,Manhattan,East Village,40.72823,-73.97967,Private room,100,5,0,,,1,11 +36222367,Garden flat in most artistic New York Bushwick,272342845,Marc,Brooklyn,Bushwick,40.70157,-73.92542,Entire home/apt,160,2,0,,,2,359 +36223123,Fantastic Location in Brooklyn,1409706,Dasi,Brooklyn,Fort Greene,40.68739,-73.97792,Private room,135,6,0,,,2,26 +36223408,Private queen bedroom next to Empire State Bldg,167228202,Sarina,Manhattan,Chelsea,40.74991,-73.98854,Private room,150,3,0,,,1,9 +36224443,Best luxury deal in Manhattan.,158718264,Hoda,Manhattan,Hell's Kitchen,40.76399,-73.98639,Entire home/apt,199,1,0,,,1,36 +36224509,HUGE BEDROOM WITH PATIO ON HISTORIC LENOX AVE!!!,735287,Taprena,Manhattan,Harlem,40.81458,-73.93696,Private room,150,60,0,,,1,215 +36224668,Private BR in Two-Floor Hip Bushwick Apartment,204048342,Alixandra,Brooklyn,Bushwick,40.70428,-73.92439,Private room,70,1,0,,,1,1 +36224876,Upper East Side Apt By The Water,46232598,Caitlin,Manhattan,Upper East Side,40.77001,-73.94915,Entire home/apt,150,1,1,2019-07-01,1,1,130 +36226035,Entire cozy apartment with Manhattan views,127388906,Carrie,Queens,Astoria,40.759,-73.9159,Entire home/apt,120,3,0,,,1,32 +36227045,Three Bedroom - Newly Renovated- Close to all!,90929344,Caroline,Queens,Astoria,40.75831,-73.9263,Entire home/apt,200,1,0,,,1,2 +36227447,"Minimal Rockaway Beach Studio-By Subway,JFK&Beach",271844440,Timothy,Queens,Rockaway Beach,40.59029,-73.81277,Entire home/apt,99,1,1,2019-07-04,1,3,176 +36227884,New York Guest House Private Shared Room,272477673,Jin,Manhattan,Chelsea,40.74714,-73.99117,Shared room,67,1,0,,,3,323 +36228485,Prospect Park Gem! One Room One Block from Park!,3678447,Lauren,Brooklyn,Prospect-Lefferts Gardens,40.65494,-73.9603,Private room,150,2,0,,,1,27 +36228538,Great location. Great view. Brand new Apartment,12776694,Oren,Manhattan,Upper East Side,40.76135,-73.96139,Entire home/apt,250,8,0,,,1,39 +36228780,REAL 1BR+ Entire Apt+ Pet ok+ Amazing location!!,211353297,Kiko,Manhattan,East Harlem,40.80396,-73.94038,Entire home/apt,125,3,0,,,1,25 +36228909,Sunny SoHo Penthouse w/ Pvt. Terrace!,272485928,Michael,Manhattan,SoHo,40.72336,-74.00465,Entire home/apt,600,3,0,,,1,179 +36229225,NYC Cozy Apt,272485617,Jean-Joseph,Bronx,Port Morris,40.80626,-73.92815,Entire home/apt,117,4,0,,,1,290 +36229420,Older 1st Floor in Rockaway House-By Subway&Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.5879,-73.81269,Entire home/apt,99,1,1,2019-07-06,1,4,162 +36229615,Deluxe Private Unit in Spacious Bedstuy Apartment,53243644,Omri,Brooklyn,Bedford-Stuyvesant,40.69242,-73.94133,Private room,60,1,0,,,2,20 +36230800,Queens room,234224181,Tafari,Queens,Rosedale,40.65933,-73.73993,Private room,34,1,0,,,1,89 +36231329,Large Designer One Bedroom on West 72nd,43461100,Keren,Manhattan,Upper West Side,40.77735,-73.98072,Entire home/apt,240,7,0,,,1,35 +36231580,"Great space, very large room, excellent location",1409706,Dasi,Brooklyn,Fort Greene,40.68889,-73.97632,Private room,130,6,1,2019-07-02,1,2,29 +36232432,Room in furnished & light-filled BRKLYN apartment,242573197,Emily,Brooklyn,Flatbush,40.64428,-73.96988,Private room,50,3,0,,,1,11 +36232835,Spacious 3 bedroom in the heart of Brooklyn,67670026,Deb,Brooklyn,Bedford-Stuyvesant,40.69286,-73.94195,Entire home/apt,85,2,0,,,1,17 +36233091,1 room in bushwick,258998574,Emily,Brooklyn,Bushwick,40.70384,-73.92232,Private room,40,2,1,2019-07-03,1,1,16 +36233195,Welcome home buddies in NYC,121399223,Weifeng,Staten Island,Tompkinsville,40.6283,-74.08645,Private room,60,1,0,,,1,88 +36233578,"✨Spacious bedroom│walkable to UN, Empire State✨",173417532,Ed,Manhattan,Murray Hill,40.74943,-73.97173,Private room,150,1,0,,,3,82 +36234373,Designer duplex in historic Brooklyn Brownstone,8986298,Amory,Brooklyn,Bedford-Stuyvesant,40.68463,-73.95161,Entire home/apt,150,5,0,,,1,43 +36235150,Sky View beautiful apt in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,1,2019-07-07,1,3,340 +36235154,Top on Manhattan,3850264,Jason,Manhattan,Harlem,40.80658,-73.95736,Private room,138,3,1,2019-07-03,1,2,65 +36235186,Walk to Times SQ! Simple room in heart of NYC,62241191,Jonathan,Manhattan,Hell's Kitchen,40.75512,-73.99437,Private room,85,1,0,,,1,6 +36236013,READY BED GO the goal is to make u feel at home,256197494,Emanuel,Brooklyn,Cypress Hills,40.68042,-73.88978,Private room,75,1,1,2019-07-05,1,1,82 +36236367,金城发suit3. (single room with twin bed),255641440,Li,Queens,Flushing,40.75138,-73.81515,Private room,35,1,0,,,7,358 +36236389,Large room(Brooklyn) - 20 min to the beach+comfort,271162941,Anna,Brooklyn,Midwood,40.62477,-73.95517,Private room,100,1,0,,,3,330 +36236515,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN#3.,178272943,Sharon,Queens,Jamaica,40.67189,-73.78008,Private room,50,1,0,,,4,70 +36236767,Small Comfy space,104028121,Diana,Manhattan,Washington Heights,40.85044,-73.93042,Private room,41,1,0,,,1,38 +36236981,~MANHATTAN CENTRAL~,268598775,Al,Manhattan,Lower East Side,40.71984,-73.9865,Entire home/apt,249,3,0,,,1,91 +36237507,Amazing private bedroom next to Central Pk & Sub,272557714,Eva,Manhattan,Upper West Side,40.79993,-73.96475,Private room,137,3,0,,,1,44 +36237529,"Beautiful Cozy Room, 20mn to FREE ferry",272557707,Marouene,Staten Island,Rosebank,40.6075,-74.07979,Private room,65,1,1,2019-07-05,1,1,179 +36237913,Spacious Soho Loft,49346143,Nicole,Manhattan,Nolita,40.72309,-73.99412,Entire home/apt,270,3,0,,,1,152 +36237967,Gorgeous 5th FL Walk-up Historic Harlem Sugar Hill,1687367,Mike,Manhattan,Harlem,40.82913,-73.94484,Entire home/apt,199,2,0,,,1,71 +36238485,Chic Room in Williamsburg + Backyard +Washer Dryer,22157126,Ryan,Brooklyn,Williamsburg,40.71773,-73.94159,Private room,91,2,1,2019-07-04,1,1,344 +36238864,Home away from home 2BDR apartment,272571748,Maurissa,Brooklyn,Canarsie,40.63836,-73.89387,Entire home/apt,160,2,0,,,1,349 +36239107,Exposed brickwall flat in the heart of Greenpoint,15550310,Oda,Brooklyn,Greenpoint,40.72931,-73.95515,Entire home/apt,115,3,0,,,1,8 +36239113,Greenwich Village Private Room and shared Bath,177402508,Jahlyn,Manhattan,West Village,40.73495,-74.00583,Private room,200,2,0,,,1,32 +36239436,★Pvt Room in 4BR House ★ Backyard ★Laundry ★ Room4,49164956,Abena,Brooklyn,Bedford-Stuyvesant,40.67762,-73.91565,Private room,46,30,0,,,5,246 +36241283,Enjoy your friendly stay at my place,267943725,Lana,Brooklyn,Midwood,40.62555,-73.95724,Private room,50,1,1,2019-07-02,1,1,86 +36241782,Classic Brooklyn Loft (East Williamsburg/Bushwick),12091973,Ap,Brooklyn,Williamsburg,40.70518,-73.93794,Private room,100,1,1,2019-07-06,1,1,1 +36241854,Union Square Private Apt,272596313,David Bruce,Manhattan,Gramercy,40.7358,-73.99074,Entire home/apt,150,7,0,,,1,29 +36241914,"❥❥❥*NYC Room: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69342,-73.8684,Private room,55,4,0,,,6,150 +36242888,Upper East Site Luxury 2 Bed rooms,12579773,Jean-Nicolas,Manhattan,Upper East Side,40.76996,-73.95117,Private room,220,4,1,2019-07-03,1,1,15 +36243050,spacious space privated room #1,35783912,Pi & Leo,Bronx,Fordham,40.86355,-73.89234,Private room,39,2,0,,,8,58 +36243129,Brand New Private 5 bedrooms apartment ##5,35783912,Pi & Leo,Bronx,Fordham,40.86265,-73.89263,Entire home/apt,178,2,0,,,8,89 +36243183,Spacious private room #2,35783912,Pi & Leo,Bronx,Fordham,40.86264,-73.89139,Private room,29,2,0,,,8,81 +36243240,spacious private room #3,35783912,Pi & Leo,Bronx,Fordham,40.86263,-73.89088,Private room,33,2,0,,,8,84 +36243744,"Single bed step to Citi Field, LGA, JFK,Manhattan",217463199,Marvy,Queens,Flushing,40.74344,-73.82642,Private room,45,3,0,,,4,365 +36243764,"2bed bedroom step to LGA, JFK bus to Manhattan",217463199,Marvy,Queens,Flushing,40.74407,-73.82645,Private room,75,3,0,,,4,362 +36244479,Private Room: Have your own and share some comm,272609175,Avi,Brooklyn,Flatlands,40.61813,-73.94253,Private room,70,2,0,,,1,365 +36253150,Quaint And Cozy Beach House Close To All!!,43282809,Sue Ellen,Queens,Rockaway Beach,40.58954,-73.81361,Entire home/apt,125,1,0,,,1,67 +36254789,Huge 3 bdrm apartment on the beach paradise,105620188,Michail,Queens,Belle Harbor,40.57762,-73.84462,Entire home/apt,350,3,0,,,1,41 +36255515,Chill in Style - A Music Producer's Dream Pad,66486652,Micah,Manhattan,Upper East Side,40.77439,-73.95047,Entire home/apt,242,3,0,,,1,17 +36256460,Great room in an amazing loft - style apartment,59513442,Hannah,Manhattan,Gramercy,40.73619,-73.98022,Private room,88,18,0,,,1,33 +36259636,2 Bedroom Family Apartment in a Quiet Neighborhood,85261578,Ted,Brooklyn,Flatbush,40.64105,-73.9595,Entire home/apt,195,5,0,,,1,6 +36260895,Midtown 34th st 1 Br apt with patio!,24856484,Mike,Manhattan,Murray Hill,40.74506,-73.97362,Entire home/apt,400,2,0,,,1,66 +36262579,Amazing bedroom with Backyard close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69576,-73.94314,Private room,77,2,0,,,7,153 +36262925,Amazing 1BR Apartment near Columbia University,6186588,Julio,Manhattan,Morningside Heights,40.81546,-73.95823,Entire home/apt,150,2,0,,,1,10 +36264087,Sun filled apartment in SoHo/Nolita,23780133,Justine,Manhattan,Nolita,40.72349,-73.99322,Entire home/apt,180,3,0,,,1,14 +36264980,Times Square River View,272747534,Ali,Manhattan,Hell's Kitchen,40.75987,-73.99615,Private room,125,2,0,,,1,41 +36265137,"Cozy, modern room close to Manhattan for 2 guests",272748063,Rosana,Queens,Woodside,40.75496,-73.90685,Private room,50,7,0,,,1,0 +36265549,Perfect Location - Midtown Manhattan Modern 2BD!,272747109,Lynn,Manhattan,Kips Bay,40.74612,-73.9796,Entire home/apt,220,4,0,,,1,78 +36265557,"Lovely 2 bedroom on Prospect Park, near subway",23905369,Shadi,Brooklyn,Prospect-Lefferts Gardens,40.66148,-73.96248,Entire home/apt,100,3,0,,,1,165 +36265677,Best Brooklyn room w/ bathroom close to Manhattan,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69563,-73.94197,Private room,77,2,0,,,7,165 +36265970,Comfortable Brooklyn room close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69549,-73.9416,Private room,77,2,0,,,7,150 +36266227,LaGuardia airport hub and very close to Manhattan,116027328,Aymen,Queens,East Elmhurst,40.76565,-73.88278,Private room,45,1,0,,,1,45 +36266639,Small and Cozy room only 4 stations to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69685,-73.94372,Private room,77,2,0,,,7,169 +36266960,Cozy bedroom in a great Apartment,19797950,Shepherd,Brooklyn,Gowanus,40.66662,-73.9936,Private room,51,1,0,,,3,333 +36267023,Humble Hutch in the Heights,10002937,Cameron,Manhattan,Washington Heights,40.84267,-73.93816,Entire home/apt,85,1,0,,,1,1 +36267230,Spacious bedroom only 4 stations to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.6963,-73.94365,Private room,77,2,0,,,7,170 +36267546,A Home Away From Home,233485864,Jeannie,Staten Island,New Dorp Beach,40.56506,-74.1024,Private room,40,1,0,,,2,341 +36267904,Gorgeous bedroom in Brooklyn close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69684,-73.94257,Private room,77,2,0,,,7,168 +36268101,Adorable apartment decorated with local art.,95143048,Jeffree,Manhattan,East Village,40.72384,-73.98791,Entire home/apt,200,2,0,,,2,314 +36268350,Beautiful Brooklyn room close to Manhattan!,242573463,Filipe,Brooklyn,Bedford-Stuyvesant,40.69653,-73.94213,Private room,77,2,0,,,7,147 +36268615,"Small Bedroom, simple & clean. Nice apt. Yard.",19797950,Shepherd,Brooklyn,Gowanus,40.66684,-73.99333,Private room,51,1,0,,,3,333 +36270376,"Beautiful home on Staten Island, walk to ferry",444904,Janine,Staten Island,St. George,40.64005,-74.07987,Entire home/apt,100,365,0,,,1,342 +36270530,Heart of Harlem Studio,272787571,Rj,Manhattan,Harlem,40.81374,-73.9439,Entire home/apt,125,4,0,,,1,158 +36270538,big nice warm place in Stuytown,70343342,Veco,Manhattan,Stuyvesant Town,40.73258,-73.98039,Private room,99,5,0,,,1,12 +36270801,One Bedroom Walk to Central Park or Times Square!,159239228,Touie,Manhattan,Hell's Kitchen,40.76595,-73.98661,Entire home/apt,190,4,0,,,1,158 +36270864,Luxury one bedroom in Fort Green,6077516,Juliana,Brooklyn,Downtown Brooklyn,40.69751,-73.98536,Entire home/apt,200,3,0,,,1,0 +36271603,Big Beautiful Apartment on Flatbush ave near Park,272796645,Toby,Brooklyn,Prospect-Lefferts Gardens,40.65567,-73.96125,Entire home/apt,199,2,0,,,1,141 +36272531,Charming TriBeCa Loft - Avail for Summer,194377959,Natasha,Manhattan,Tribeca,40.72262,-74.00861,Entire home/apt,250,21,0,,,1,66 +36272851,Private Bedroom in a Prewar Gramercy Building!*,19962052,Thikshan,Manhattan,Kips Bay,40.73929,-73.98183,Private room,135,2,1,2019-07-07,1,3,41 +36273046,Elegant Spacious UES private room,267839371,Celine,Manhattan,Upper East Side,40.77551,-73.95404,Private room,120,1,1,2019-07-06,1,2,358 +36273876,Manhattan cute sofa bed,267839371,Celine,Manhattan,Upper East Side,40.77574,-73.95324,Shared room,100,1,0,,,2,360 +36273985,Luxury new private studio one stop to Manhattan,272815283,Chen,Queens,Long Island City,40.74893,-73.93755,Entire home/apt,180,1,0,,,1,60 +36274037,Cozy Wall Street Studio,272816114,Schmid,Manhattan,Financial District,40.70583,-74.01038,Entire home/apt,170,1,1,2019-07-06,1,1,323 +36274279,"10 Mins to Manhattan - 3 Bdr, Duplex Entire House",179256587,Ali,Queens,Sunnyside,40.74907,-73.91892,Entire home/apt,95,5,0,,,1,42 +36274721,Nyc Beach Getaway(20 mins from airport),159382205,Rhonda,Queens,Arverne,40.59291,-73.78708,Shared room,39,1,0,,,2,43 +36275438,Private 1 bedroom apartment,137094460,Adesola,Queens,Springfield Gardens,40.66015,-73.7528,Entire home/apt,100,2,0,,,1,13 +36275631,❤️Ever best located cozy flat❤️,271624892,Alex,Manhattan,Hell's Kitchen,40.76356,-73.98823,Entire home/apt,330,1,0,,,1,180 +36275781,Private Bedroom in Duplex in Williamsburg,271282883,Terence,Brooklyn,Greenpoint,40.72613,-73.9426,Private room,109,6,0,,,2,54 +36275809,Cozy 1BR Apartment in Upper East Side New York,272829356,David,Manhattan,Upper East Side,40.77469,-73.95181,Entire home/apt,230,3,0,,,1,350 +36276166,"room in 3-bedroom house , Central Brooklyn",144107218,Israel,Brooklyn,East Flatbush,40.65823,-73.93459,Private room,55,1,0,,,1,316 +36276355,"Modern, Spacious Brooklyn Museum Home",199696316,Joanna,Brooklyn,Crown Heights,40.66709,-73.96095,Entire home/apt,150,2,0,,,1,6 +36276474,Modern Luxury in Brooklyn's Premier Neighborhood,494507,Elizabeth,Brooklyn,Gowanus,40.67587,-73.98418,Private room,100,5,0,,,1,91 +36276575,Prime West Village One Bedroom,6432439,Annie,Manhattan,West Village,40.73477,-74.00246,Entire home/apt,299,3,0,,,1,107 +36276859,NYC STYLE - SUBWAY AREA 10 MINUTES TO TIMES SQUARE,24187843,Lucy,Queens,Astoria,40.76462,-73.91039,Entire home/apt,180,2,0,,,1,365 +36276938,FUNKY FLATBUSH FLAT,179384567,Isa,Brooklyn,East Flatbush,40.64165,-73.9282,Entire home/apt,159,7,0,,,1,343 +36276943,Brand New & Cozy Private Bedroom w/ Full Bed !!,272838881,Isabella,Brooklyn,Bushwick,40.69027,-73.91376,Private room,60,2,0,,,1,74 +36277331,Gossip Girl Pied-à-terre @ Central Park and Plaza,272842040,Aly,Manhattan,Upper East Side,40.76703,-73.96979,Entire home/apt,225,2,0,,,1,39 +36277545,On the Waterfront Is Yours!,7460932,Wylie,Brooklyn,Columbia St,40.68174,-74.00483,Entire home/apt,94,5,0,,,1,5 +36277571,FANTASTIC APT IN THE HEART OF THE EAST VILLAGE,261612429,Peter,Manhattan,East Village,40.72627,-73.98543,Entire home/apt,207,30,0,,,1,55 +36277598,Hell's Kitchen Heaven,272317337,Boris,Manhattan,Hell's Kitchen,40.76294,-73.99167,Entire home/apt,170,3,0,,,1,188 +36277784,Quiet crash pad in Bushwick,52371107,Joe,Brooklyn,Bushwick,40.69212,-73.92521,Private room,40,1,0,,,1,33 +36278431,Furnished Bedroom in FiDi Apt for Sublet,17728651,Steph,Manhattan,Financial District,40.70847,-74.00498,Private room,57,1,0,,,1,7 +36278924,"Clean & Spacious 2 BR in DwnTwn NYC, Walk to UNSQ!",272856249,Alex,Manhattan,Gramercy,40.73258,-73.9819,Entire home/apt,300,10,0,,,1,33 +36278959,"Bright and sunny clean, cute Upper East side oasis",29570399,Sean,Manhattan,Upper East Side,40.77488,-73.94934,Entire home/apt,210,2,0,,,1,106 +36278966,Cozy bright room with half bath and bunk beds,38858002,Phillip,Manhattan,Washington Heights,40.84467,-73.94289,Private room,90,1,0,,,1,12 +36279030,Good-looking Room,272602584,Cherry,Manhattan,Kips Bay,40.7401,-73.98256,Private room,70,20,0,,,1,314 +36279099,"PRIME LOCATION, Private 2BR in UNION SQUARE",264621546,Marcelo,Manhattan,East Village,40.73123,-73.98896,Entire home/apt,400,2,0,,,1,90 +36279106,This is your Happy Place in Brooklyn NYC,172693570,Leodelys,Brooklyn,Bushwick,40.69196,-73.91143,Private room,45,1,0,,,1,8 +36279375,"Cozy, bohemian vibe private room",220991097,Jessica,Brooklyn,East New York,40.67303,-73.88621,Private room,50,1,0,,,1,166 +36279837,Art and View authentic Williamsburg Loft,272865451,Roberto,Brooklyn,Williamsburg,40.71299,-73.96559,Entire home/apt,280,2,0,,,1,318 +36280357,"Bright and sunny top floor, spacious apartment",49037454,Nicole,Manhattan,Chelsea,40.74218,-73.99813,Entire home/apt,150,5,0,,,1,4 +36280646,"Cable and wfi, L/G included.",272872092,Chris,Queens,Forest Hills,40.73657,-73.85088,Entire home/apt,16,9,1,2019-07-07,1,1,322 +36280703,Open light loft in the heart of Manhattan,99927578,Maria,Manhattan,Hell's Kitchen,40.75906,-73.99049,Entire home/apt,300,5,0,,,1,83 +36280858,"【Brooklyn N, R地铁口 45街阳光主卧7月短租】限女生,Only girls",122963021,莹,Brooklyn,Sunset Park,40.65012,-74.00867,Private room,30,7,0,,,1,190 +36281050,"Beautiful, Sunny Loft Studio in Heart of Chelsea",15439713,Javier,Manhattan,Chelsea,40.73916,-74.0006,Entire home/apt,181,1,0,,,1,4 +36281099,Room on the garden in co-op brownstone,6556741,Thomas,Brooklyn,Bedford-Stuyvesant,40.68041,-73.95579,Private room,58,4,0,,,4,29 +36281984,No-frills master bedroom in spacious Bushwick flat,45909314,Andrew,Brooklyn,Bushwick,40.69807,-73.93466,Private room,55,1,0,,,1,14 +36282009,Private Room in a beautiful 2 BR apartment,213428885,Anas,Manhattan,Harlem,40.80707,-73.95242,Private room,40,20,0,,,1,273 +36282108,Great apartment in downtown NYC for August,45623497,Kristy,Manhattan,Battery Park City,40.70974,-74.01774,Entire home/apt,105,30,0,,,1,31 +36282337,Sunny Jr 1 Bed in Clinton Hill,17211451,Jamila,Brooklyn,Clinton Hill,40.68316,-73.96289,Entire home/apt,84,30,0,,,1,39 +36282795,Brooklyn hot party place with jaccuzi,270554496,Marie,Brooklyn,Bedford-Stuyvesant,40.69246,-73.93427,Private room,450,1,0,,,1,179 +36283398,Dream House,174496733,Francis,Bronx,Clason Point,40.80655,-73.85093,Entire home/apt,379,3,0,,,1,167 +36284725,Gorgeous Room in Manhattan-20mins to Times Square,6057887,Mutaz,Manhattan,Washington Heights,40.84905,-73.93951,Private room,79,3,0,,,5,18 +36285236,Enormous Sunlit Manhattan Room-18m Times Sqr,6057887,Mutaz,Manhattan,Washington Heights,40.84817,-73.93848,Private room,95,3,0,,,5,18 +36285623,Cozy Tiny Room with Prvate Toilet-18m to Times Sqr,6057887,Mutaz,Manhattan,Washington Heights,40.84762,-73.93898,Private room,45,4,0,,,5,7 +36286545,Spacious room near subway,174811960,Heidi,Queens,Ridgewood,40.70864,-73.90034,Private room,55,1,0,,,1,165 +36287314,NYC/ 1st Floor ✰ Prime Duplex ✰ w/ Movie Theatre,235530740,Ana,Brooklyn,Bedford-Stuyvesant,40.68196,-73.94463,Entire home/apt,165,3,0,,,3,152 +36297217,Bedroom + Private Bathroom. 20 min. to Manhattan,45919617,Ingrid,Queens,Maspeth,40.73792,-73.89201,Private room,65,1,0,,,1,177 +36298737,Fresh & Bright Private Room near J train,5680111,Timothy,Brooklyn,Bushwick,40.6878,-73.91506,Private room,65,4,0,,,7,149 +36299344,Light-filled loft full of happy plants,272994721,Sloane,Brooklyn,Williamsburg,40.70497,-73.9375,Private room,60,5,0,,,1,15 +36301030,Cozy two bedroom nestled in trendy Gramercy,66404497,Gabbie,Manhattan,Gramercy,40.73776,-73.98418,Entire home/apt,250,7,0,,,1,12 +36301344,New Renovated Cozy Private 1 Bedroom Apartment,200927536,Manu,Brooklyn,Bushwick,40.70598,-73.91618,Entire home/apt,129,5,0,,,3,351 +36302523,(2RW) Chic Chelsea Studio Just for You,271275048,Isaac,Manhattan,Chelsea,40.74767,-73.99256,Entire home/apt,109,30,0,,,2,363 +36302780,Beautiful Prospect Heights Brooklyn Townhouse,55108207,Angela,Brooklyn,Prospect Heights,40.67928,-73.97069,Entire home/apt,450,3,0,,,1,31 +36303421,3 Bedroom Apartment in Upper West Side Manhattan,217362657,Josua,Manhattan,Upper West Side,40.79469,-73.96687,Entire home/apt,520,30,0,,,1,310 +36304117,Gorgeous 4 BR Apt in the Heart of Nolita!,273024325,Margaret,Manhattan,Nolita,40.72349,-73.99457,Entire home/apt,316,30,0,,,1,310 +36304817,HugeHipHome 5BR 2 Bath w/ Yard 15 min to Midtown!,143725634,Jennifer,Queens,Long Island City,40.76001,-73.93031,Entire home/apt,450,2,0,,,1,321 +36304897,Cozy Sunnyside Apartment,214095681,Pavel And Sarah,Queens,Sunnyside,40.74583,-73.92268,Entire home/apt,74,15,0,,,2,22 +36305071,Eclectic and Peaceful Suite with Private Bathroom,22200018,Lucia,Brooklyn,Bedford-Stuyvesant,40.68437,-73.93508,Private room,75,2,0,,,2,115 +36305634,Home Away From Home,159382205,Rhonda,Queens,Arverne,40.59173,-73.78668,Shared room,37,1,0,,,2,148 +36305881,Manhattan On The Hill,273038911,Denise,Manhattan,Inwood,40.8683,-73.92161,Entire home/apt,349,2,0,,,1,365 +36305966,Wonderful studio apartment by the ocean line,219987377,Iryna,Brooklyn,Brighton Beach,40.57936,-73.95388,Entire home/apt,150,7,0,,,1,7 +36306938,"Simple, Safe, Clean",23191854,Akiva,Brooklyn,Midwood,40.61231,-73.95448,Private room,44,2,0,,,1,7 +36307792,Private room in spacious East Village oasis,41698272,Rachel,Manhattan,East Village,40.72797,-73.98155,Private room,72,3,0,,,1,170 +36307882,Adorable TriBeCa neighborhood easy subway access!,111768943,Kristin,Manhattan,Tribeca,40.71918,-74.00786,Entire home/apt,169,6,0,,,1,55 +36307890,BEAUTIFUL BEDROOM IN NICE AREA UPTOWN NYC!,139296591,David,Manhattan,Washington Heights,40.83851,-73.94579,Private room,120,3,0,,,1,344 +36308266,A large bedroom with a king size bed in Queens.,272267421,Darkhan,Queens,Maspeth,40.73452,-73.88795,Private room,70,1,0,,,3,75 +36308459,Sunny Spacious Long Island City Apartment,273059367,Efsun,Queens,Long Island City,40.74356,-73.95314,Entire home/apt,250,2,0,,,1,76 +36308562,"Tasteful & Trendy Brooklyn Brownstone, near Train",217732163,Sandy,Brooklyn,Bedford-Stuyvesant,40.68767,-73.95805,Entire home/apt,1369,1,0,,,1,349 +36308600,Cozy and Beautiful Park Slope One Bedroom,74773867,Kailey,Brooklyn,Park Slope,40.67455,-73.98477,Entire home/apt,150,1,1,2019-07-05,1,1,8 +36308658,Room 2: Sunny Queen W Private Bathroom & Breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.68994,-73.93345,Private room,75,1,0,,,3,137 +36309284,"Private Room Near JFK, St John's Hospital, & Beach",234090781,Phoenix,Queens,Bayswater,40.60804,-73.75829,Private room,45,3,1,2019-07-04,1,2,90 +36309296,2bed Home on Quiet Block Right by The Action,273057459,Lutfu,Manhattan,Chelsea,40.7404,-73.99853,Entire home/apt,299,2,0,,,1,157 +36309780,LIC Family Apt w/ Plenty of Sleeping Space,143730512,Stephen,Queens,Long Island City,40.75419,-73.93445,Entire home/apt,350,2,0,,,1,312 +36309944,Lavish 1br apartment in New York's Upper East Side,30283594,Kara,Manhattan,Upper East Side,40.76288,-73.95828,Entire home/apt,269,30,0,,,121,333 +36309947,Spacious Upper East Side 1BR apt near attractions,30283594,Kara,Manhattan,Upper East Side,40.76302,-73.95769,Entire home/apt,269,30,0,,,121,318 +36310247,Spacious 1 Bedroom With Private Garden,25498509,Michael,Brooklyn,Clinton Hill,40.68183,-73.96464,Entire home/apt,100,1,0,,,1,6 +36310268,Full size room,171482981,Alejandro,Queens,Maspeth,40.71327,-73.90982,Private room,65,2,1,2019-07-06,1,1,21 +36310353,Staten Island Resort minutes from ferry! Amazing!!,28586423,Danielle,Staten Island,Stapleton,40.62878,-74.07301,Entire home/apt,450,5,0,,,1,88 +36310855,Room 3: Cozy Room w Large Closet & Light Breakfast,268394581,Rehana,Brooklyn,Bedford-Stuyvesant,40.68969,-73.93285,Private room,68,1,1,2019-07-06,1,3,127 +36311055,"Stunning & Stylish Brooklyn Luxury, near Train",245712163,Urvashi,Brooklyn,Bedford-Stuyvesant,40.68245,-73.93417,Entire home/apt,1749,1,0,,,1,303 +36311265,Bright sunny large BK room in shared space,97633452,Noelani,Brooklyn,Williamsburg,40.71437,-73.9437,Private room,150,10,0,,,1,91 +36311334,Amazing 2 Bedrooms with a HUGE living room!!,25585857,Lukas,Manhattan,Upper East Side,40.78324,-73.94734,Entire home/apt,275,6,0,,,1,73 +36311599,Your 1B1B Home in Midtown Clean Cozy & Comfy,180397183,Xiao,Manhattan,Hell's Kitchen,40.76806,-73.99254,Entire home/apt,320,1,0,,,1,90 +36311694,A sunny and huge 1 bedroom in a big private house,272267421,Darkhan,Queens,Maspeth,40.73283,-73.8892,Private room,60,1,0,,,3,90 +36311866,Best location in Bay Ridge. Cozy and private room.,256634262,Jean,Brooklyn,Bay Ridge,40.63107,-74.0255,Private room,46,1,0,,,1,131 +36312088,"Welcoming, Cozy 2 bedroom Home.",273086651,Andres,Queens,Richmond Hill,40.69203,-73.83012,Entire home/apt,185,3,0,,,1,32 +36312324,Great apartment Times Square-Bryant Park,264971021,Raul,Manhattan,Midtown,40.75167,-73.98585,Entire home/apt,325,2,0,,,1,324 +36312522,Modern Room in Heart of Harlem,84333525,Aaron,Manhattan,Harlem,40.81758,-73.94008,Private room,75,2,0,,,1,49 +36312602,A Brooklyn totally private guest unit,269342470,Bracha,Brooklyn,Windsor Terrace,40.64921,-73.97971,Entire home/apt,100,1,0,,,2,11 +36312667,"My Cozy Apartment! +My apartment has the best view!",272870209,Edna,Manhattan,East Village,40.72413,-73.97277,Private room,75,2,0,,,1,365 +36312752,Spacious 1 bedroom Open Concept Apt in E Flatbush.,45631198,Arturo,Brooklyn,East Flatbush,40.63845,-73.94365,Entire home/apt,63,1,0,,,1,19 +36312899,Sunny Loft top location in Bushwick / Ridgewood,5958193,Majo,Queens,Ridgewood,40.69326,-73.90316,Entire home/apt,140,2,0,,,1,62 +36312994,Cosy and quiet studio near Columbia University,2019485,Maria,Manhattan,Morningside Heights,40.8075,-73.96679,Entire home/apt,103,3,0,,,1,40 +36312999,Perfect Place to stay in Manhattan,86813128,Tiffany,Manhattan,East Harlem,40.81488,-73.93458,Private room,65,4,0,,,1,10 +36313048,Sunny room with private entrance in shared home,16883913,Tiffany,Queens,Ridgewood,40.69919,-73.89902,Private room,45,1,0,,,1,0 +36313671,July Steal! Up to one month sublet,19510896,Stephanie,Manhattan,Harlem,40.82539,-73.9488,Private room,70,1,0,,,1,5 +36314110,"Quiet, cozy and clean walkup in Greenpoint",17522037,David,Brooklyn,Greenpoint,40.72673,-73.95223,Private room,75,3,0,,,1,23 +36314262,Lg and Lovely 2 bedroom in Astoria. Sleeps up to 8,273101976,Jp,Queens,Astoria,40.75825,-73.90959,Entire home/apt,169,3,0,,,1,151 +36314672,Cute Bedroom in the heart of Bushwick,115168723,Geoffrey,Brooklyn,Bushwick,40.70469,-73.92458,Private room,43,7,0,,,1,12 +36315143,TRANQUIL HAVEN -8MINS TO JFK/LIRR/AIRTRAIN.,178272943,Sharon,Queens,Jamaica,40.671,-73.77911,Entire home/apt,250,1,0,,,4,69 +36315267,"Great Soho Apartment "" Renovated & Clean """,138379336,Karin,Manhattan,SoHo,40.72654,-74.00201,Entire home/apt,285,5,0,,,1,365 +36315326,Co-working Professional Respite UWS,28966357,Dorothy,Manhattan,Upper West Side,40.79485,-73.96243,Private room,100,28,0,,,3,337 +36315537,Luxurious Apartment in a Brooklyn Brownstone,273108831,RoseMarie,Brooklyn,Bedford-Stuyvesant,40.6915,-73.9359,Entire home/apt,275,3,0,,,1,365 +36315540,"Cheery 1BR in Chelsea w/Gym, Doorman, great Rooftop views by Blueground",107434423,Blueground,Manhattan,Flatiron District,40.74395,-73.99109,Entire home/apt,321,30,0,,,232,330 +36315612,"Convenient Midtown 1BR w/ Gym, W/D, Doorman, Baclony, by Blueground",107434423,Blueground,Manhattan,Theater District,40.76111,-73.98511,Entire home/apt,303,30,0,,,232,318 +36315657,"Ample SoHo 2BR w/ W/D, View of Kemare Sq., near Subway, by Blueground",107434423,Blueground,Manhattan,SoHo,40.72229,-73.99888,Entire home/apt,466,30,0,,,232,354 +36315692,"Premium Chelsea 1BR w/ Gym, W/D, Doorman, Sundeck, Cinema, by Blueground",107434423,Blueground,Manhattan,Midtown,40.7453,-73.99063,Entire home/apt,338,30,0,,,232,325 +36315721,"Stunning Chelsea 1BR w/ Gym, W/D, Doorman, Sundeck, Cinema, by Blueground",107434423,Blueground,Manhattan,Midtown,40.74444,-73.99015,Entire home/apt,343,30,0,,,232,324 +36315759,"Quaint Tribeca Studio w/ Gym, W/D, Doorman, Garage, Valet, by Blueground",107434423,Blueground,Manhattan,Tribeca,40.713,-74.00991,Entire home/apt,269,30,0,,,232,193 +36315794,Elegant Chelsea 2BR w/ Elevator,107434423,Blueground,Manhattan,Chelsea,40.74451,-73.99939,Entire home/apt,421,30,0,,,232,292 +36315828,Lux Tribeca Studio w/ Pool + Gym + View near City Hall by Blueground,107434423,Blueground,Manhattan,Tribeca,40.71495,-74.00701,Entire home/apt,314,30,0,,,232,299 +36315904,Your Private Duplex Mansion in the HEART of NYC!,269146714,Clinton,Manhattan,West Village,40.7367,-74.00105,Entire home/apt,333,2,0,,,1,336 +36316537,Nice and cozy apartment,35343897,Tatyanna,Brooklyn,Sheepshead Bay,40.60853,-73.96044,Private room,38,12,0,,,1,156 +36316748,Modern Room in the Jungles (15 min to Downtown),31422161,Pavel,Brooklyn,Bedford-Stuyvesant,40.68983,-73.92775,Private room,75,1,0,,,1,76 +36316884,Photography Rooftop for Creatives :),62659791,Chiz,Brooklyn,Crown Heights,40.67833,-73.95349,Shared room,80,1,0,,,2,365 +36316944,3Bed - Spanish Harlem Getaway 2 blocks to 1 train,167089974,Elise,Manhattan,Harlem,40.81893,-73.95417,Entire home/apt,202,3,0,,,1,205 +36317097,"Clinton Hill Oasis, Next To Subway/Citibike,",21261408,Jay,Brooklyn,Clinton Hill,40.68971,-73.96073,Shared room,35,1,0,,,6,345 +36317597,"Alphabet City Cul de Sac, 3 roommates",130159651,Theo,Manhattan,East Village,40.72327,-73.98027,Shared room,40,7,0,,,1,42 +36317980,Cosy 1 bedroom NYC apartment close to Manhattan.,86365675,Aoife,Queens,Astoria,40.76483,-73.91897,Entire home/apt,150,5,0,,,1,348 +36318339,Private Bedroom in Newly Renovated Apartment,273139430,Ethan,Brooklyn,Crown Heights,40.67322,-73.95581,Private room,39,1,0,,,1,14 +36318560,Luxury Sun-filled Private Room near Time Square,52917571,Linda Lou,Manhattan,Midtown,40.75286,-73.99297,Private room,120,2,1,2019-07-06,1,1,7 +36318625,Cozy Private Room in Crown Heights,50213173,Maryam,Brooklyn,Crown Heights,40.67733,-73.94878,Private room,45,30,0,,,1,31 +36318711,Nice and Comfy room with a Queen Size Bed!!,273142559,Nila,Queens,Glendale,40.70428,-73.85726,Private room,40,1,0,,,1,149 +36318764,"Modern, Artistic, Cheap & Chic",21357175,Tomy,Manhattan,Washington Heights,40.8415,-73.93661,Entire home/apt,107,4,0,,,1,9 +36318888,Cute bedroom in ideal location in Williamsburg,14598000,Daniel,Brooklyn,Williamsburg,40.70928,-73.94066,Private room,59,4,0,,,2,297 +36319036,Brooklyn Soul,22566268,Maria,Brooklyn,Bedford-Stuyvesant,40.68858,-73.95675,Private room,110,1,0,,,1,45 +36319154,Nice and large room to rent in a 2 beds apt,221179834,Uri,Brooklyn,Sheepshead Bay,40.60146,-73.94673,Private room,40,2,0,,,1,89 +36319687,Amazing and very large bedroom,167092099,Gili,Manhattan,Upper East Side,40.76887,-73.95894,Entire home/apt,188,1,0,,,1,179 +36319887,Room at cool flat at the coolest place Brooklyn,3247267,Vincenza,Brooklyn,Greenpoint,40.73625,-73.95444,Private room,70,1,0,,,1,70 +36319984,Spacious 1BR 5 min from JFK international Airport,177402890,Brandon,Queens,Cambria Heights,40.69053,-73.73203,Private room,60,1,0,,,1,83 +36320933,Newyork guest house,272477673,Jin,Manhattan,Chelsea,40.74753,-73.9908,Shared room,75,2,0,,,3,336 +36321224,Private bedroom & bathroom in Greenpoint BK,100427647,Denise,Brooklyn,Greenpoint,40.73261,-73.95157,Private room,195,1,0,,,1,160 +36321385,"Quiet Brooklyn Room: Gym, Pool, Sauna, Hot Tub",140433148,Lauren,Brooklyn,Bushwick,40.69283,-73.90481,Private room,55,29,0,,,3,66 +36321453,Your family in NYC,259645305,Daniel,Brooklyn,Crown Heights,40.66531,-73.93887,Private room,35,1,0,,,1,56 +36321920,Central Park Hidden Gem 5*,273078104,Luli,Manhattan,Upper East Side,40.76966,-73.96688,Entire home/apt,239,1,0,,,1,15 +36321994,Private room in Williamsburg,273170125,Lipaz,Brooklyn,Williamsburg,40.7128,-73.93984,Private room,99,1,0,,,1,90 +36322141,Charming and Spacious Harlem Nest,54634154,Qai,Manhattan,Harlem,40.8026,-73.95373,Private room,75,3,0,,,1,29 +36322148,Welcome Palace 2 !!!,182954454,Thaddeus,Queens,Jamaica,40.67105,-73.77308,Private room,75,2,0,,,2,88 +36323065,Lovely Home Away,273177557,Veronica,Queens,Jamaica,40.66806,-73.77658,Private room,200,1,0,,,1,168 +36329299,Central Park European 2 Bedroom 2 bath duplex,6524294,Natascha,Manhattan,Upper East Side,40.78439,-73.95762,Entire home/apt,400,5,0,,,2,363 +36332335,Manhattan Rooms by Central Park & 6 green train,97640457,Mel,Manhattan,East Harlem,40.79913,-73.94226,Private room,90,2,0,,,1,171 +36333565,Great room in ⚓NYC⚓,271627222,Alex,Manhattan,East Harlem,40.80995,-73.93801,Private room,215,1,0,,,1,30 +36334586,4min walk to Times Square! Cozy and very clean!,262999899,Eduard,Manhattan,Hell's Kitchen,40.75941,-73.99179,Entire home/apt,239,7,0,,,1,77 +36334813,Sunny Room in the heart of Williamsburg,17379828,Caterina,Brooklyn,Williamsburg,40.70906,-73.95544,Private room,75,3,0,,,1,7 +36335028,Quiet and safe neighborhood close to the bus,235465195,Monica,Queens,Flushing,40.74761,-73.8138,Private room,100,1,0,,,1,177 +36335990,Sunny Studio steps from Wall Street,269870940,Farina,Manhattan,Financial District,40.70603,-74.01084,Entire home/apt,75,1,1,2019-07-03,1,1,181 +36336560,Spacious Bushwick Room w/ Window and Central Air,236187116,Shawana,Brooklyn,Bushwick,40.69757,-73.92611,Private room,65,1,0,,,2,19 +36338430,Zen Room in Creative Apt- <3 of Williamsburg,10184022,Elisa,Brooklyn,Williamsburg,40.72078,-73.95892,Private room,115,2,0,,,1,54 +36338659,Simple Clean Single Room in Bushwick,234635363,Linghsiu,Brooklyn,Bushwick,40.69922,-73.9313,Private room,50,1,0,,,1,12 +36339403,Private bedroom near the water and Columbia,222549093,Anna Laura,Manhattan,Morningside Heights,40.81486,-73.95795,Private room,59,3,0,,,3,5 +36339442,Spacious Sun-Filled Artist Oasis,236187116,Shawana,Brooklyn,Bushwick,40.6978,-73.92589,Private room,75,1,0,,,2,18 +36339521,Suite in NY's new Movie Studio Land,5498979,Alan,Queens,Ditmars Steinway,40.7772,-73.90258,Private room,79,2,0,,,1,8 +36340028,Cozy Private Budget room,226339724,David And Annette,Brooklyn,Bedford-Stuyvesant,40.68111,-73.91294,Private room,40,5,0,,,10,356 +36341047,Studio close to Manhattan,273288629,Hailey,Queens,Astoria,40.76799,-73.91559,Entire home/apt,150,2,0,,,1,359 +36341389,Spoon's Mom's House,59333822,Odehyah,Brooklyn,Bedford-Stuyvesant,40.68471,-73.92627,Private room,75,2,0,,,1,356 +36341843,"It's up to you, New York, NEW YORK!",17682620,Michel,Manhattan,Hell's Kitchen,40.75896,-73.99153,Entire home/apt,300,5,0,,,1,34 +36343069,Private Room In Renovated Brooklyn Brownstone!,27560165,Amanda,Brooklyn,Crown Heights,40.67764,-73.94991,Private room,45,1,0,,,1,176 +36343547,Gorgeous 3 BR with backyard 15 minutes from Soho,271799,Emmanuel,Brooklyn,Bedford-Stuyvesant,40.69378,-73.93932,Entire home/apt,200,3,0,,,2,316 +36343588,"Beautiful 2 BR apt, UWS",264810896,Christine,Manhattan,Upper West Side,40.7715,-73.9877,Entire home/apt,240,3,0,,,1,58 +36344079,The Little Castle in Astoria,3867848,Prince,Queens,Astoria,40.76887,-73.91128,Private room,150,1,1,2019-07-04,1,1,165 +36344347,Beautiful apartment /1 min walk from Time Square,119005168,Noah,Manhattan,Theater District,40.75982,-73.98662,Entire home/apt,400,2,0,,,1,3 +36345151,Home Away from Home,273316025,Cristian,Queens,Rego Park,40.72614,-73.8594,Private room,80,1,0,,,1,123 +36345653,Vegan/cruelty free home,58956100,Diane,Brooklyn,Bedford-Stuyvesant,40.68671,-73.93044,Private room,80,7,0,,,1,61 +36345739,Your Finest room in Gramercy,111020505,Maja,Manhattan,Kips Bay,40.74049,-73.98184,Private room,57,30,0,,,1,253 +36345911,SUPER COZY 2 BEDS IN BEST PART OF CHELSEA!!,91268177,Beatriz,Manhattan,Chelsea,40.7448,-74.00761,Entire home/apt,299,3,0,,,4,220 +36346454,Queen Bed in Queens **Amazing Astoria Location**,27589350,Adam,Queens,Astoria,40.76575,-73.92307,Private room,55,1,0,,,1,13 +36347051,Beautiful Large Bedroom in the Heart of Harlem,273101668,Betty,Manhattan,Harlem,40.83225,-73.94496,Private room,60,2,0,,,1,72 +36348332,Private bedroom in a townhouse,23254491,Klara,Manhattan,East Harlem,40.80109,-73.94364,Private room,150,1,0,,,2,26 +36348535,Gorgeous large 3 bedroom apartment in Williamsburg,14598000,Daniel,Brooklyn,Williamsburg,40.70802,-73.94053,Entire home/apt,200,4,0,,,2,315 +36348763,Large NEW 2 bedroom in Brooklyn,273344288,Ann,Brooklyn,Midwood,40.61693,-73.95354,Entire home/apt,180,1,0,,,1,57 +36349092,Beautiful duplex with terrace. Up to 6 people.,273347409,Alex,Manhattan,Financial District,40.70485,-74.00822,Entire home/apt,430,3,0,,,1,42 +36350007,Spacious brand new 2 bedrooms apartment ##2,273354185,Lee & Luffy,Bronx,Castle Hill,40.81576,-73.84653,Entire home/apt,98,3,0,,,7,169 +36350210,"Cozy brand new 3 bedrooms apartment, HugeSpace ##3",273354185,Lee & Luffy,Bronx,Castle Hill,40.81733,-73.84807,Entire home/apt,128,2,0,,,7,167 +36350460,Cozy Spacious Queens Private Room #1,273354185,Lee & Luffy,Bronx,Castle Hill,40.8154,-73.84657,Private room,38,3,0,,,7,177 +36350612,Get Away NYC Queens Bedroom #2,273354185,Lee & Luffy,Bronx,Castle Hill,40.81727,-73.84588,Private room,38,2,0,,,7,177 +36350749,NYC Traveler Get Away Private ROOM #3,273354185,Lee & Luffy,Bronx,Castle Hill,40.81572,-73.84592,Private room,39,2,0,,,7,177 +36350871,Spacious brand new room getaway traveler NYC #4,273354185,Lee & Luffy,Bronx,Castle Hill,40.81539,-73.84669,Private room,39,2,0,,,7,177 +36351030,Brand New Privated Room for NYC Traveler,273354185,Lee & Luffy,Bronx,Castle Hill,40.81709,-73.84811,Private room,39,2,0,,,7,177 +36351128,"One bedroom without roomies, close to everything",273361532,David & Amy,Manhattan,Upper West Side,40.80281,-73.9655,Entire home/apt,110,3,2,2019-07-05,2,1,15 +36351333,Stunning Luxury Loft in NYC's Best Neighborhood,12268556,Carlos,Manhattan,Tribeca,40.71877,-74.0026,Entire home/apt,349,3,0,,,1,11 +36351543,2-MONTH SUBLEASE (WITH EARLY MOVE-IN),52984497,Friday,Brooklyn,Bedford-Stuyvesant,40.68914,-73.92408,Private room,33,30,2,2019-07-06,2,1,87 +36351709,Fidi 1 Bedroom,28983064,Joseph,Manhattan,Financial District,40.70664,-74.01258,Private room,57,30,0,,,1,66 +36351985,Duplex studio renovated new bathroom own entrance,36205885,Eddy,Queens,Ridgewood,40.70688,-73.90981,Entire home/apt,80,1,0,,,3,163 +36352170,Spacious room in a two bathroom apartment.,55038786,Guillermo,Brooklyn,Bensonhurst,40.62056,-74.00225,Private room,50,30,0,,,1,98 +36352377,★Long-term★Discount★Sunny NYC Room Near Subway,270077888,Jane,Brooklyn,Bushwick,40.69266,-73.92589,Private room,47,30,0,,,2,162 +36352604,Large 1 bedroom with backyard grill,54706499,Eberly,Manhattan,Upper East Side,40.77792,-73.94476,Entire home/apt,250,2,0,,,1,16 +36352893,Bright & modern West Village unit w/ elevator,15870918,Sofia,Manhattan,West Village,40.72964,-74.0031,Entire home/apt,200,2,0,,,1,6 +36353482,EAST VILLAGE Apt. (ABC City) w/awesome Roof Deck,44024684,Zack,Manhattan,East Village,40.72597,-73.97645,Private room,85,1,0,,,1,15 +36353835,"✨Marvelous Room One Queen,One Full Bed and Balcony",270874051,Hotel Vetiver,Queens,Long Island City,40.75285,-73.93428,Private room,139,1,0,,,8,359 +36353849,Hip Neighborhood/Private Bedroom in Modern Duplex,81345246,Franco,Brooklyn,Bedford-Stuyvesant,40.69053,-73.92635,Private room,85,4,0,,,1,89 +36354043,"Super Modern, Clean, Quiet Apartment in Flatlands!",270278177,Victoria,Brooklyn,Flatlands,40.63236,-73.93214,Entire home/apt,78,1,0,,,1,86 +36354776,Cozy bedroom in diverse neighborhood near JFK,273393150,Liza,Queens,Richmond Hill,40.68639,-73.81847,Private room,28,2,0,,,1,24 +36354796,"✨Superb King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75716,-73.94222,Private room,101,1,0,,,3,365 +36355110,PRIVATE ROOM IN STATEN ISLAND -FOR LADIES ONLY,201187671,Tuana,Staten Island,Shore Acres,40.61283,-74.06625,Private room,54,4,0,,,1,89 +36356416,[Female Only]Private Room near Columbia University,118767681,Sunny,Manhattan,Upper West Side,40.80243,-73.96637,Private room,49,1,0,,,1,14 +36356804,Bright quiet and Comfortable,222559543,Carmen,Brooklyn,East New York,40.6618,-73.87908,Private room,48,2,0,,,2,329 +36356906,Spacious,108355692,Christopher,Queens,Flushing,40.75825,-73.83369,Private room,57,30,0,,,1,87 +36357112,"Sunny, adorable 1BR apartment in Greenpoint",251802585,Kay,Brooklyn,Greenpoint,40.73192,-73.95839,Private room,115,5,0,,,1,10 +36357591,Harlem lounge,268242223,K,Manhattan,Harlem,40.81954,-73.94277,Private room,40,2,0,,,1,363 +36358848,Old World Charm Meets Modern Brooklyn,273424772,Cyrus,Brooklyn,Prospect-Lefferts Gardens,40.65784,-73.94484,Entire home/apt,200,5,0,,,1,156 +36358910,"Bright, quiet railroad style apartment",160175680,Chiara,Queens,Ridgewood,40.70617,-73.90503,Entire home/apt,75,15,0,,,1,22 +36359394,Madeline’s Place,135363269,Hal,Brooklyn,Sunset Park,40.64372,-74.00656,Entire home/apt,120,3,0,,,1,320 +36361813,Relax with simplicity!,111001956,Deborah,Brooklyn,East New York,40.65698,-73.89212,Private room,45,1,0,,,1,363 +36368048,"Luxury appartment, special edition for musicians.",253681134,Azamat,Manhattan,Washington Heights,40.83423,-73.94723,Private room,74,3,0,,,1,3 +36368998,Queen size bedroom close to Columbia,3850264,Jason,Manhattan,Harlem,40.80656,-73.95593,Private room,60,3,0,,,2,86 +36371082,845 Bushwick Ave.,258391290,Nuci,Brooklyn,Bushwick,40.69342,-73.92679,Private room,45,7,0,,,1,14 +36372006,Very Clean Private Room Near Buses & Restaurants!!,118405437,PengYu,Queens,Woodhaven,40.69411,-73.86877,Private room,66,1,0,,,2,365 +36372104,Exposed Brick,32303395,Roderick,Brooklyn,Bedford-Stuyvesant,40.6858,-73.92899,Private room,120,2,0,,,1,6 +36373544,Large studio with tall ceiling near Central Park,35141789,Janey,Manhattan,Upper East Side,40.78332,-73.95155,Entire home/apt,100,10,0,,,1,21 +36374141,Sunny Bedroom with renovated rooftop + balcony!,37872024,Jeano,Brooklyn,Crown Heights,40.67011,-73.9243,Private room,30,10,0,,,1,32 +36374510,Shh!@Belindas,271336460,Belinda,Brooklyn,East New York,40.6625,-73.88081,Shared room,200,7,0,,,1,365 +36375840,Perfectly Located Studio in FiDi has all you need!,273524881,Shannon,Manhattan,Financial District,40.70787,-74.0078,Entire home/apt,158,7,0,,,1,70 +36378818,Clean One Bedroom,3449848,V,Manhattan,Chelsea,40.73896,-73.99935,Entire home/apt,350,3,0,,,1,8 +36378891,Harman st Loft,273546395,Allen,Brooklyn,Bushwick,40.6998,-73.91913,Entire home/apt,165,3,0,,,1,364 +36379279,"Amazing ,quiet, cozy, 1 bedroom on Union Square E",273519401,Geraldo,Manhattan,Gramercy,40.73684,-73.98797,Entire home/apt,299,1,0,,,1,168 +36379292,Little Italy Studio in Soho - Sleeps up to 4!,273544738,Jane,Manhattan,Nolita,40.72132,-73.99586,Entire home/apt,176,2,0,,,1,324 +36379536,Comfy room 15 mins to JFK near lots of good food,273551058,Andra,Queens,Ozone Park,40.68432,-73.85862,Private room,55,1,0,,,1,129 +36379540,Gorgeous brand new Studio Apt 5 min from Manhattan,48434623,Mariana,Queens,Long Island City,40.75267,-73.93028,Entire home/apt,85,20,0,,,1,51 +36379669,Shared living space in the Bronx!,44378432,Bryan,Bronx,Pelham Bay,40.84735,-73.83095,Shared room,50,1,0,,,1,88 +36379995,**Bright Luxury Apt in Financial District+Balcony,90870599,Claris,Manhattan,Financial District,40.70822,-74.01418,Entire home/apt,225,4,0,,,1,79 +36380964,Cozy bedroom in East Village apt!,271590063,Mariel,Manhattan,Stuyvesant Town,40.7338,-73.97972,Private room,70,1,0,,,1,270 +36381008,Comfort home,266211707,Yan,Brooklyn,Sunset Park,40.64454,-74.0201,Private room,185,1,0,,,2,175 +36381795,"Lovely one-bedroom; +Brooklyn Heights",289823,Ben,Brooklyn,Brooklyn Heights,40.69383,-73.99328,Entire home/apt,115,14,0,,,1,17 +36381819,Wonderful Oasis in the heart of New York city,273560024,Thea,Manhattan,Hell's Kitchen,40.76443,-73.98516,Private room,88,3,0,,,1,7 +36382093,Chelsea Corner Unit Overlooking the Highline,1256264,Michelle,Manhattan,Chelsea,40.75113,-74.00231,Entire home/apt,450,5,0,,,1,167 +36382148,Lower East Side 1-Bedroom,273568164,Doug,Manhattan,Lower East Side,40.71958,-73.98741,Entire home/apt,198,30,0,,,1,152 +36382381,Spacious studio in the heart of downtown Astoria,273570019,Khaled,Queens,Astoria,40.76349,-73.92577,Private room,75,1,0,,,1,359 +36382761,Magical Brooklyn Brownstone,6948761,Angela,Brooklyn,Clinton Hill,40.68807,-73.96572,Entire home/apt,400,5,0,,,1,13 +36382847,Comfort home,266211707,Yan,Brooklyn,Sunset Park,40.64439,-74.01816,Private room,185,1,0,,,2,177 +36383565,Spacious Astoria Apartment in a Prime Location!,14258377,Tracy,Queens,Astoria,40.76389,-73.91963,Private room,50,4,0,,,1,38 +36383943,15 mins to LOVE NYC in a NEW Elegant NY Style 1BR,185936267,Serena,Manhattan,Lower East Side,40.72129,-73.98585,Entire home/apt,200,3,0,,,1,89 +36384346,"✨Superior King Room , Manhattan View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75615,-73.94121,Private room,101,1,0,,,3,365 +36384487,Peace in NYC,108640056,Osi,Manhattan,Lower East Side,40.71421,-73.97853,Entire home/apt,350,1,0,,,1,131 +36384760,CHELSEA BEAUTY Prime location,14563616,Anna/Phillip,Manhattan,Chelsea,40.74271,-73.99554,Entire home/apt,215,1,0,,,2,127 +36384956,Amazing True Loft/ Bed-Stuy/ Full Weekly Cleaning.,2628658,Marc-Antoine,Brooklyn,Bedford-Stuyvesant,40.68194,-73.93567,Entire home/apt,120,30,0,,,2,45 +36385310,Piano duplex in New York artistic best Bushwick,273547720,Cedric,Brooklyn,Bushwick,40.69982,-73.92321,Entire home/apt,170,30,0,,,1,360 +36386298,Spacious 3 Bedroom Duplex w/ Huge Backyard,273596828,Enoma,Brooklyn,Bedford-Stuyvesant,40.67959,-73.94987,Entire home/apt,180,3,0,,,1,133 +36387296,Cozy basement studio in Brooklyn,24726785,Claudia,Brooklyn,Bedford-Stuyvesant,40.69093,-73.9471,Private room,80,1,0,,,1,30 +36387416,"Incredibly large room, excellent location!",6570630,Marisol,Brooklyn,Bushwick,40.7018,-73.93282,Private room,60,4,0,,,2,47 +36387905,Manhattan Apartment Private Close to Subway,273613106,Jose L.,Manhattan,East Harlem,40.79031,-73.94269,Entire home/apt,139,1,0,,,1,354 +36388492,"✨Premier King Room , City View✨",273392981,Giorgio Residence,Queens,Long Island City,40.75559,-73.94106,Private room,101,1,0,,,3,361 +36388720,HUGE LUXURY CONDO – INCREDIBLE WATER VIEWS,273619215,Layla,Manhattan,Upper West Side,40.77665,-73.98867,Entire home/apt,750,4,0,,,1,174 +36388748,Private Times Square Room with Pool/Gym,217557021,Jas,Manhattan,Hell's Kitchen,40.7617,-73.99815,Private room,180,3,0,,,1,365 +36388807,seagate pravite house 5 mins away from beach,273619304,Tural,Brooklyn,Sea Gate,40.57531,-74.00518,Entire home/apt,99,4,0,,,1,19 +36389944,Family Friendly Apt in Midtown East,224309949,Efrat,Manhattan,Midtown,40.75988,-73.96591,Entire home/apt,325,5,0,,,1,298 +36390226,Comfortable clean Bedstuy private room,267932490,Angela,Brooklyn,Bedford-Stuyvesant,40.69551,-73.93951,Private room,45,1,2,2019-07-08,2,1,14 +36390301,"3 Bedroom Apt in Ridgewood, 20 Min to Manhattan",273632292,Pete,Queens,Ridgewood,40.70268,-73.90353,Entire home/apt,110,24,0,,,1,183 +36390829,Rockaway Beach Apartment Blocks from Ocean,68862521,Megan,Queens,Rockaway Beach,40.58837,-73.81654,Entire home/apt,150,1,0,,,1,88 +36391474,Wonderful apartment close to Metro,273025497,Richard,Brooklyn,Fort Greene,40.68868,-73.97671,Entire home/apt,107,1,0,,,1,49 +36391615,Hidden gem! Cozy home in heart of Lower East Side,70653354,John,Manhattan,Lower East Side,40.72013,-73.98769,Entire home/apt,235,1,0,,,1,349 +36391866,"Clean, modern, and comfy 1bd apt Manhattan-Harlem",273644177,Merce,Manhattan,Harlem,40.80078,-73.95079,Entire home/apt,137,1,0,,,1,35 +36392015,Room W/private bathroom.3 min to park and subway,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66289,-73.96165,Private room,70,1,0,,,6,189 +36392607,A shared room in Manhattan,178720348,Mingmei,Manhattan,Harlem,40.81991,-73.9575,Shared room,60,1,0,,,2,86 +36393539,Cozy Nice Spot for ladies. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66067,-73.96094,Shared room,39,1,0,,,6,207 +36394726,1 bed available in a 2bd/1ba Bushwick Gem,239638986,Marné,Brooklyn,Bushwick,40.69287,-73.92289,Private room,125,1,0,,,1,175 +36395052,Premium Spot for female. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96162,Shared room,40,1,0,,,6,211 +36395366,Deluxe Bedroom w/ 2 Beds - 3 stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75415,-73.93144,Private room,89,1,0,,,5,358 +36395484,Lovely spot for female. Close to subway & Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66079,-73.96181,Shared room,40,1,0,,,6,224 +36395677,Cozy 4 Bedrooms Apt - 3 stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75388,-73.92957,Entire home/apt,396,3,0,,,5,351 +36395954,Cozy bedroom - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75366,-73.9311,Private room,89,1,0,,,5,359 +36395973,Homely spot for female. Close to subway &Park,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.66049,-73.96064,Shared room,40,1,0,,,6,245 +36396082,LUXURY RENTAL NYC - Hell’s Kitchen,237217643,Yakir,Manhattan,Hell's Kitchen,40.76142,-73.99865,Entire home/apt,220,28,0,,,1,167 +36396086,Nice bedroom - 3 Stops to Times Square,268796947,Derreck,Queens,Long Island City,40.75255,-73.93128,Private room,89,1,0,,,5,359 +36396394,Modern private room with great location!,156114168,Kateryna,Brooklyn,Prospect-Lefferts Gardens,40.6613,-73.96155,Private room,62,1,0,,,6,229 +36399640,Queen size bed in long island city,32392762,奕竹,Queens,Long Island City,40.74723,-73.94098,Shared room,45,1,0,,,1,15 +36402818,SMALL STUDIO IN EXCELLENT GREENPOINT LOCATION!,1568269,Skylar,Brooklyn,Greenpoint,40.73149,-73.95041,Entire home/apt,85,8,0,,,1,10 +36404568,Sharp Upper East Side 2BR w/ Gym + W/D near the MET by Blueground,107434423,Blueground,Manhattan,Upper East Side,40.77739,-73.94916,Entire home/apt,393,30,0,,,232,307 +36404684,Smart Nolita 1BR w/ W/D near famous cafes by Blueground,107434423,Blueground,Manhattan,Nolita,40.72283,-73.99472,Entire home/apt,316,30,0,,,232,325 +36404784,Dapper Hell's Kitchen 2BR w/ Gym + W/D + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76082,-73.99709,Entire home/apt,385,30,0,,,232,338 +36404815,Trendy Hell's Kitchen 1BR w/ Gym + W/D + Doorman by Blueground,107434423,Blueground,Manhattan,Hell's Kitchen,40.76083,-73.99727,Entire home/apt,267,30,0,,,232,228 +36404936,Beautiful Williamsburg 2BR w/ Skyline views + Gym by Blueground,107434423,Blueground,Brooklyn,Williamsburg,40.71493,-73.96365,Entire home/apt,278,30,0,,,232,188 +36404972,"Hip East Village 1BR w/ Gym, W/D, Doorman, near Union Sq., by Blueground",107434423,Blueground,Manhattan,East Village,40.73206,-73.98776,Entire home/apt,365,30,0,,,232,295 +36407969,"1 BDRM SPACIOUS ,QUIET, EAST VILLAGE ARTIST OASIS",273741577,Lynn,Manhattan,East Village,40.72388,-73.98354,Entire home/apt,178,1,0,,,1,35 +36409084,newyork guest house shared room,272477673,Jin,Manhattan,Chelsea,40.74643,-73.99105,Shared room,75,1,0,,,3,352 +36409903,Near the city,273536212,Marjorie,Queens,Cambria Heights,40.69973,-73.74592,Private room,50,1,0,,,1,339 +36410519,Sunlight charming apt. in the heart of Brooklyn,121384174,Luciana Paula,Brooklyn,Park Slope,40.66716,-73.98101,Entire home/apt,111,8,0,,,1,0 +36411407,Brand new 1 bedroom steps from Soho!,33917435,Mike,Manhattan,Lower East Side,40.71825,-73.99019,Entire home/apt,150,4,1,2019-07-06,1,1,13 +36412355,Diamond in the Rough,2716800,Leona,Queens,Forest Hills,40.71935,-73.84362,Private room,50,2,0,,,1,13 +36412410,Cozy 1 bedroom in East Williamsburg,62763569,Yuting,Brooklyn,Williamsburg,40.70266,-73.94284,Entire home/apt,99,3,0,,,1,14 +36412461,"Sunny, Cozy, Private Room In The Heart of Bushwick",147515897,Flávia,Brooklyn,Bushwick,40.70366,-73.92728,Private room,84,3,0,,,1,28 +36412880,Massive Master Bedroom w Private Bathroom,3427758,Phil,Manhattan,Harlem,40.81274,-73.94357,Private room,110,3,0,,,1,199 +36413114,Studio on West 14th Street and 7th Avenue,273772372,Richard,Manhattan,West Village,40.73713,-73.9987,Entire home/apt,144,1,0,,,1,110 +36413327,CHEAP AND COZY ROOM JUST 20 MIN AWAY FROM TIMES SQ,255476470,Maria,Manhattan,Washington Heights,40.83331,-73.94547,Private room,50,5,0,,,1,51 +36413532,Little hideaway at the East Village!,48685332,Carissa,Manhattan,East Village,40.72146,-73.98279,Private room,100,1,0,,,1,1 +36413632,Spacious 2BR in Beautiful Brooklyn Heights,6608220,Matt,Brooklyn,Brooklyn Heights,40.69827,-73.99649,Entire home/apt,550,3,1,2019-07-07,1,1,230 +36413779,Sunny & spacious room in a 3 Br - Williamsburg,2449230,Itamar,Brooklyn,Williamsburg,40.71812,-73.95495,Private room,80,5,0,,,1,38 +36414101,New York cutest studio,23899462,Florencia,Manhattan,Harlem,40.80505,-73.94894,Entire home/apt,90,7,0,,,1,23 +36414576,Room in Beautiful Bed-Stuy Apartment,45397566,Meru,Brooklyn,Bedford-Stuyvesant,40.69012,-73.93631,Private room,60,1,0,,,1,29 +36415840,A BEAUTIFUL SPACE IN HEART OF WILLIAMSBURG,223715460,Simon And Julian,Brooklyn,Williamsburg,40.71091,-73.9656,Entire home/apt,499,30,0,,,1,365 +36415915,Two bedroom cute apartment in the lower east side,246222122,Anna,Manhattan,East Village,40.72874,-73.98344,Entire home/apt,198,2,0,,,2,344 +36416632,Nice studio 4 people next to Times Square.,266294029,Carolina,Manhattan,Midtown,40.75354,-73.98377,Entire home/apt,245,2,0,,,1,79 +36416759,LIC Garden House Top Floor | 10 Min to Manhattan,53602261,Ray,Queens,Long Island City,40.75432,-73.93521,Entire home/apt,375,2,0,,,1,364 +36417250,US Open special 2-bed luxury condo,133288905,Cherie,Manhattan,Midtown,40.75174,-73.97343,Entire home/apt,369,4,0,,,3,4 +36417643,Luxury private room apt near Central Park (UES),49796302,Natasha,Manhattan,East Harlem,40.79339,-73.93784,Private room,150,1,0,,,1,265 +36417651,Mid-century Modern Studio on UWS,11270687,Lauren,Manhattan,Upper West Side,40.79873,-73.96938,Entire home/apt,150,2,0,,,1,74 +36417725,Ocenfront Glamping in Queens,273672846,Hectavious,Queens,Breezy Point,40.56546,-73.86968,Private room,250,1,0,,,1,82 +36417926,"Room in Beautiful Duplex 4BR 2BA Nostrand av (A,C)",272504878,Lana,Brooklyn,Bedford-Stuyvesant,40.67905,-73.95014,Private room,45,32,0,,,1,85 +36418759,"Spacious Room w/ AC, Laundry, WiFi + Free Cleaning",154980356,Joanne & Robert,Brooklyn,Bedford-Stuyvesant,40.686,-73.93,Private room,32,30,0,,,1,10 +36419115,Room for rent - Right by Bedford ave L train,27089410,Nagui,Brooklyn,Williamsburg,40.71775,-73.95767,Private room,60,1,0,,,1,54 +36419291,Wyndham Midtown 45 New York City 1 Bedroom Deluxe,273812306,Kelly,Manhattan,Midtown,40.75288,-73.97269,Private room,380,3,0,,,1,3 +36419441,Murray Hill Masterpiece,273824202,David,Manhattan,Murray Hill,40.74404,-73.97239,Entire home/apt,129,2,0,,,1,0 +36419574,Luxury & Spacious 1500 ft² MANHATTAN Townhouse,11454384,Ellen,Manhattan,Tribeca,40.71815,-74.01145,Entire home/apt,700,3,0,,,1,37 +36420289,"Rustic Garden House Apt, 2 stops from Manhattan",73211393,LaGabrell,Queens,Long Island City,40.75508,-73.93258,Entire home/apt,350,2,0,,,1,364 +36420404,Home Sweet Home,273656890,Liana,Manhattan,East Harlem,40.79266,-73.9474,Private room,50,1,0,,,1,81 +36420725,"Sunnyside, Queens 15 Mins to Midtown Clean & Comfy",19990280,Brandon,Queens,Sunnyside,40.74719,-73.91919,Private room,46,1,0,,,1,0 +36420855,1900s 1 Bed Rockaway Beach Bungalow-ByMTA&Beach,271885652,Elizabeth,Queens,Rockaway Beach,40.58893,-73.81347,Entire home/apt,89,1,0,,,4,175 +36421287,Nice & Lovely room in LIC.5 stops to Times Square,203866020,Karma,Queens,Sunnyside,40.73799,-73.92749,Private room,60,1,0,,,1,34 +36421390,House feeling in Caroll Garden,3827238,Tarek,Brooklyn,Carroll Gardens,40.67666,-73.99981,Entire home/apt,170,30,0,,,1,64 +36421786,Luxury | Private room |Balcony|Parking included,211500809,Stefania,Queens,Jackson Heights,40.74765,-73.89445,Private room,110,2,0,,,1,85 +36421796,Cozy Room with Private Bathroom,273843157,Matheus,Brooklyn,Greenpoint,40.73164,-73.95187,Private room,105,1,0,,,1,199 +36422456,3 Br ✰ Prime Williamsburg ✰ | 5 min to Manhattan ✰,255815505,Feliks,Brooklyn,Williamsburg,40.70626,-73.94699,Entire home/apt,245,4,0,,,1,156 +36422573,Romantic studio in New York artistic best Bushwick,273849259,Alexander,Brooklyn,Bushwick,40.69958,-73.92772,Entire home/apt,120,1,0,,,1,363 +36423090,Private room in beautiful Williamsburg loft!,43297161,Perry,Brooklyn,Williamsburg,40.70538,-73.94314,Private room,65,2,0,,,1,6 +36423179,Williamsburg: private bright bedroom - cosy appt,130906452,Pierre,Brooklyn,Williamsburg,40.71175,-73.96197,Private room,70,6,0,,,1,18 +36423704,"City and water views, 1 BR w/ private terrace!",1338608,Dan,Manhattan,Murray Hill,40.74604,-73.97228,Entire home/apt,250,5,0,,,1,233 +36423944,Modern room in luxury apartment,271350187,Elena,Brooklyn,Greenpoint,40.71918,-73.94853,Private room,130,1,0,,,3,360 +36424129,Bright & Cheerful! Modern w/ Laundry + Fast WiFi,107407045,Brett & Megan,Brooklyn,Bedford-Stuyvesant,40.69217,-73.93191,Private room,35,30,0,,,1,44 +36424133,Huge Room,52565041,Sopho,Brooklyn,Sheepshead Bay,40.59174,-73.95816,Private room,46,4,0,,,1,60 +36424334,Laundry + Central AC - Modern Style - Near Metro,155298656,Brad & Rachel,Queens,Ridgewood,40.70585,-73.91298,Private room,35,30,0,,,1,44 +36424465,Private Room 10 mins away from Central Park,157728550,Kem,Manhattan,East Harlem,40.80268,-73.94244,Private room,100,1,0,,,2,343 +36424509,Brooklyn Loft : Comfort & Sunset City Views,8411075,Ramiro,Brooklyn,Bushwick,40.69608,-73.9121,Entire home/apt,119,2,0,,,1,5 +36424520,Comfortable bedroom to enjoy your visit in NYC!,115415245,Alejandro,Brooklyn,Bushwick,40.69799,-73.92833,Private room,60,2,0,,,1,67 +36424660,5min to Metro - Tons of Restaurants! Free Cleaning,107263278,Erin At Bedly,Manhattan,East Harlem,40.79268,-73.94577,Private room,40,30,0,,,1,46 +36424776,Queen size bedroom in two bed apt with great light,13384464,Hollie,Brooklyn,Bedford-Stuyvesant,40.69617,-73.94198,Private room,50,3,0,,,1,0 +36425157,Cozy Private Bedroom Just For You,273870123,Tim,Brooklyn,East Flatbush,40.65229,-73.95139,Private room,55,1,0,,,1,178 +36425639,Sunny private bedroom in Bushwick (Halsey street),2182412,Sofiya,Brooklyn,Bushwick,40.68932,-73.91374,Private room,80,1,0,,,1,17 +36425863,Lovely Privet Bedroom with Privet Restroom,83554966,Rusaa,Manhattan,Upper East Side,40.78099,-73.95366,Private room,129,1,1,2019-07-07,1,1,147 +36426093,Best room in nyc,273877318,Jay,Bronx,Claremont Village,40.83926,-73.91173,Private room,140,1,0,,,1,90 +36426319,"Duplex penthouse with terrace, prime UES location",46876102,Philippe,Manhattan,Upper East Side,40.7784,-73.9567,Entire home/apt,250,45,0,,,1,83 +36426720,Crash at a sofabed.Unique apt In the heart of NYC,67738361,Julie,Manhattan,Hell's Kitchen,40.75579,-73.99094,Shared room,260,1,0,,,2,168 +36426788,Serene Room 5 mins from JFK / 15 mins from LGA,266645207,Michael,Queens,Laurelton,40.67025,-73.74548,Private room,75,1,0,,,2,180 +36427094,Beautiful Sunny Space in Crown Heights Brooklyn.,82576590,Raheem,Brooklyn,Crown Heights,40.67285,-73.95133,Private room,41,1,0,,,1,66 +36427098,Downtown NYC Convenient Private Room,105447387,Xiao,Manhattan,Lower East Side,40.71466,-73.98676,Private room,80,1,0,,,1,323 +36427393,"Luxury large studio in Chelsea, at the Highline!",71473447,Andrea,Manhattan,Chelsea,40.74954,-74.00466,Entire home/apt,225,7,0,,,1,20 +36427429,No.2 with queen size bed,257683179,H Ai,Queens,Flushing,40.75104,-73.81459,Private room,45,1,1,2019-07-07,1,6,339 +36427922,Home away from home,238163900,Lucy,Queens,Cambria Heights,40.68557,-73.72731,Private room,50,3,0,,,1,176 +36428186,Private house Apartment,141511069,Carolina,Bronx,Morrisania,40.83146,-73.89666,Entire home/apt,80,7,0,,,1,71 +36428210,Beverley Road - Close to subway Q and B.,128305726,Pujan,Brooklyn,Flatbush,40.64538,-73.96239,Private room,43,2,0,,,1,21 +36428255,Skyscraper Ultimate Luxury at the Heart of BKLYN.,148289089,Elmar,Brooklyn,Boerum Hill,40.6878,-73.98145,Entire home/apt,235,10,0,,,1,64 +36429652,Cute double room for the perfect Yankee fan,58222366,Dominique,Bronx,Claremont Village,40.83502,-73.91058,Private room,125,2,0,,,1,364 +36435986,1A. Studio & Stay. 30 minutes to Midtown Manhattan,37678939,Chantal,Bronx,Concourse Village,40.83372,-73.91187,Private room,70,2,0,,,2,81 +36437317,private room in Astoria,122204600,Mohammed,Queens,Astoria,40.76431,-73.90992,Private room,49,15,0,,,1,341 +36438110,Location! View! X- Large Studio w/ Washer/Dryer!,96079975,Karen,Manhattan,Upper East Side,40.78411,-73.9487,Entire home/apt,140,7,0,,,1,158 +36438336,Seas The Moment,211644523,Ben,Staten Island,Great Kills,40.54179,-74.14275,Private room,235,1,1,2019-07-07,1,1,87 +36439512,The Bushwick Backhouse Loft.,180336853,Dash,Brooklyn,Bushwick,40.7047,-73.9225,Private room,70,2,0,,,1,255 +36439761,Hudson Yards 1 BR / 1 Bath,112300256,Ken,Manhattan,Chelsea,40.75343,-74.00208,Entire home/apt,155,30,0,,,1,171 +36441134,Brooklyn Loft with great train views,3054124,Derek,Brooklyn,Williamsburg,40.70997,-73.96289,Entire home/apt,150,7,0,,,1,11 +36441808,Hell's Kitchen charming apartment,24680496,Miriam,Manhattan,Hell's Kitchen,40.76911,-73.99248,Entire home/apt,145,1,0,,,1,10 +36441908,Amazing flex room in financial district with view,112024431,Dariné,Manhattan,Financial District,40.70597,-74.01562,Private room,99,4,0,,,1,22 +36442252,1B-1B apartment near by Metro,273841667,Blaine,Bronx,Mott Haven,40.80787,-73.924,Entire home/apt,100,1,2,2019-07-07,2,1,40 +36442487,Endless Elegance in Brooklyn,199213364,Eeman,Brooklyn,Sheepshead Bay,40.59731,-73.93381,Entire home/apt,140,7,0,,,2,171 +36444457,My Minimalist Sanctuary - Harlem Living,19580888,Lola,Manhattan,Harlem,40.81589,-73.95346,Entire home/apt,100,4,0,,,1,20 +36444527,Bright & Cheerful! Near Metro + Bars & Cafes,140961117,Christine & Ben,Manhattan,Harlem,40.81697,-73.94225,Private room,39,30,0,,,1,44 +36444734,Sunny Upper West Side Apt. 3mins from Central Park,32987938,Alex,Manhattan,Upper West Side,40.77889,-73.97668,Entire home/apt,143,3,0,,,1,10 +36445121,UWS Spacious Master Bedroom Sublet,274014453,Dagmara,Manhattan,Upper West Side,40.79952,-73.96003,Private room,75,30,0,,,1,90 +36445224,Big & Beautiful room with 2 beds!,274012871,Stefan,Queens,Long Island City,40.76807,-73.93799,Private room,95,2,0,,,2,168 +36445280,"Spacious, simple, private bath",62784258,Eliana,Manhattan,Harlem,40.81951,-73.94161,Private room,50,1,0,,,1,21 +36446225,"2 bedroom apt, 10 mins from JFK, Subway, & Beach!",115751294,Taneisha,Queens,Bayswater,40.61113,-73.76546,Entire home/apt,80,2,0,,,1,87 +36446437,Midtown bedroom in Manhattan,867516,Grace,Manhattan,Murray Hill,40.74757,-73.98118,Private room,200,1,0,,,1,34 +36446514,"Sunny, quiet, and cool bedroom in a two bedroom.",274025920,Oliver,Brooklyn,Crown Heights,40.66921,-73.93521,Private room,59,2,0,,,1,16 +36447054,Entire first floor apartment in Park Slope,71142174,Toniann,Brooklyn,Sunset Park,40.66266,-73.98908,Entire home/apt,100,4,0,,,1,6 +36447683,2B2B/3 beds entire place in luxury building,24680832,Angela,Queens,Long Island City,40.74754,-73.94194,Entire home/apt,180,3,0,,,1,13 +36447795,Beautiful studio Apt. in Harlem (near Red Rooster),274035866,Aurellia,Manhattan,East Harlem,40.8078,-73.93837,Entire home/apt,110,2,0,,,1,25 +36448215,Welcome to Quite Cozy,274040642,Ms. Tou,Queens,Cambria Heights,40.69,-73.73098,Private room,50,1,0,,,1,175 +36448400,Central East Village Apartment,16030422,Brandon,Manhattan,East Village,40.72626,-73.98729,Private room,80,3,0,,,1,18 +36448559,Stuyvesant comfort (Private bathroom),272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68676,-73.93788,Private room,50,1,0,,,2,144 +36448708,Entire 3 Bedroom Astoria Apartment,183211776,Rafael,Queens,Astoria,40.76491,-73.90959,Entire home/apt,169,1,0,,,4,28 +36449052,Lovely private room in the heart of Williamsburg,173021064,Katie,Brooklyn,Williamsburg,40.71052,-73.95149,Private room,60,2,0,,,2,134 +36449345,"Private Room in Brooklyn, 5minutes from Subway",115528632,Rachel & Alex,Brooklyn,Bedford-Stuyvesant,40.69171,-73.95418,Private room,80,1,0,,,1,43 +36449668,Stuyvesant Luxury,272265577,Yetunde,Brooklyn,Bedford-Stuyvesant,40.68927,-73.93665,Private room,50,1,0,,,2,134 +36449743,Brooklyn's finest,66084717,Tim,Brooklyn,East Flatbush,40.6517,-73.9258,Entire home/apt,200,3,0,,,2,206 +36449938,Huge Private 3 Bedroom Art Apartment in Manhattan,271029539,Dominique,Manhattan,Harlem,40.82179,-73.95522,Entire home/apt,170,1,0,,,4,78 +36449941,2BRs on Spacious Apt. in Bushwick,161456818,Juan,Brooklyn,Bushwick,40.68884,-73.91969,Private room,50,1,0,,,1,165 +36450283,Cozy SunDrenched 1 BR close to Transportation!,53360631,Ashley,Manhattan,Washington Heights,40.83734,-73.94326,Entire home/apt,90,4,0,,,1,83 +36450318,"LUXURY, PRIVATE APT ACROSS FROM EMPIRE STATE",151831356,Michael,Manhattan,Midtown,40.74607,-73.98599,Entire home/apt,199,1,0,,,1,14 +36450435,Sunny Modern Studio Apartment in Williamsburg,29393413,Pirro,Brooklyn,Williamsburg,40.71391,-73.94431,Entire home/apt,225,1,0,,,1,84 +36450814,FLATBUSH HANG OUT AND GO,267223765,Jarmel,Brooklyn,Flatbush,40.64922,-73.96078,Shared room,20,1,0,,,3,363 +36450896,Brand New 3-Bed Apt in the Best Location of FiDi,29741813,Yue,Manhattan,Financial District,40.70605,-74.01042,Entire home/apt,475,2,0,,,1,64 +36451138,Cozy Private Room with Rooftop Space on Top Floor,211831610,Vanessa,Queens,Elmhurst,40.7371,-73.88086,Private room,50,1,0,,,1,239 +36451212,Sunny and Spacious Private Bedroom in Manhattan,271029539,Dominique,Manhattan,Harlem,40.82258,-73.95464,Private room,60,1,0,,,4,80 +36451362,Cozy Queen bed in Quiet Bedstuy!,154095549,Wa,Brooklyn,Bedford-Stuyvesant,40.69195,-73.94225,Private room,47,2,0,,,2,48 +36451481,Feels Like Home,31244206,Pedro,Manhattan,Harlem,40.82385,-73.93947,Private room,80,3,0,,,1,70 +36451653,Massive Master Bedroom in Manhattan Apartment,271029539,Dominique,Manhattan,Harlem,40.82126,-73.95458,Private room,70,1,0,,,4,90 +36452721,Massage Spa. Stay overnight. Authors Artist dream.,274079964,Richard,Brooklyn,Sheepshead Bay,40.59866,-73.95661,Private room,800,1,0,,,1,23 +36452965,"❥❥NYC Apt: 4min/subway, 25m/city, 20m/LGA,JFK❥❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69389,-73.86823,Entire home/apt,140,3,0,,,6,232 +36453030,Astoria Luxury Studio Aprtment near Broadway,8655014,Anton,Queens,Astoria,40.76267,-73.9261,Entire home/apt,210,7,0,,,1,12 +36453160,LUXURY MANHATTAN PENTHOUSE+HUDSON RIVER+EMPIRE BLD,224171371,LuxuryApartmentsByAmber,Manhattan,Chelsea,40.75204,-74.00292,Entire home/apt,350,1,0,,,1,9 +36453642,"☆ HUGE, SUNLIT Room - 3 min walk from Train !",53966115,Nora,Brooklyn,Bedford-Stuyvesant,40.69635,-73.93743,Private room,45,29,0,,,2,341 +36453952,West Village Studio on quiet cobblestone street,115491896,Will,Manhattan,West Village,40.7362,-74.00827,Entire home/apt,205,1,0,,,1,365 +36454025,Private 5 star room,261338177,Diana,Brooklyn,Gravesend,40.59131,-73.97114,Private room,33,2,0,,,6,318 +36454717,#5 New Hotel-Like Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69185,-73.86431,Private room,37,1,0,,,8,352 +36455321,#6 New Hotel-Like Private Room QUEEN Bed near JFK,263504959,David,Queens,Woodhaven,40.69183,-73.86523,Private room,34,1,0,,,8,320 +36455402,Cute plant friendly studio in hip Brooklyn area!,184501278,Em,Brooklyn,Crown Heights,40.67198,-73.95329,Entire home/apt,180,1,0,,,1,165 +36455579,Studio in Manhattan(独立出入),257261595,Xiaolan,Manhattan,Harlem,40.80951,-73.95347,Entire home/apt,65,1,0,,,1,32 +36455584,Large studio at Union Square! for 3-5 ppl,50812891,Molo,Manhattan,East Village,40.73231,-73.98689,Entire home/apt,159,1,0,,,1,166 +36455649,#7 New Hotel-Like Private Room KING bed near JFK,263504959,David,Queens,Woodhaven,40.69137,-73.86591,Private room,35,1,0,,,8,341 +36455809,"Cozy Private Room in Bushwick, Brooklyn",74162901,Christine,Brooklyn,Bushwick,40.69805,-73.92801,Private room,30,1,1,2019-07-08,1,1,1 +36455917,Sunny&quiet paradise in the WV with open views,274103383,Jennifer,Manhattan,West Village,40.73444,-74.00335,Private room,202,2,0,,,1,84 +36456548,Gorgeous Brooklyn Penthouse Apartment w/City Views,13108199,Jeffrey,Brooklyn,Greenpoint,40.72781,-73.94947,Private room,150,4,0,,,1,267 +36456829,Perfectly Located Organic Getaway,6677425,Isabel,Manhattan,Upper West Side,40.79753,-73.96155,Shared room,55,2,0,,,2,49 +36457700,"Large 3 bed, 2 bath , garden , bbq , all you need",66993395,Thomas,Brooklyn,Bedford-Stuyvesant,40.68886,-73.92879,Entire home/apt,345,4,0,,,3,354 +36457832,"❥NYC Apt: 4min/subway, 25m/city, 20m/LGA,JFK❥",63272360,Annie Lawrence,Queens,Woodhaven,40.69482,-73.86618,Entire home/apt,85,3,0,,,6,300 +36458668,"2beds Private Room Step to LGA, CitiFiled, Midtown",217463199,Marvy,Queens,Flushing,40.74387,-73.82556,Private room,68,3,0,,,4,362 +36468375,"two girls room , I speak Chinese and English",274188386,Qizhi,Manhattan,East Village,40.73197,-73.98674,Private room,93,7,0,,,1,173 +36468386,纽约罗岛Roosevelt Island整租或合租 窗外美景 设施全 家具新 到曼哈顿方便 性价比高,228268650,Yan,Manhattan,Roosevelt Island,40.76688,-73.94688,Entire home/apt,145,1,0,,,1,30 +36468409,One bedroom Manhattan Upper East Side Apartment,57502664,Omar,Manhattan,Upper East Side,40.76628,-73.95795,Entire home/apt,120,1,0,,,1,1 +36468880,Private room in a nice Brooklyn apartment,274195458,Abayomi,Brooklyn,Bushwick,40.69308,-73.91025,Private room,130,1,0,,,1,83 +36469741,Comfortable & Big room with 2 beds!,274012871,Stefan,Queens,Long Island City,40.76726,-73.93936,Private room,93,2,0,,,2,14 +36471896,Private Bedroom & PRIVATE BATHROOM in Manhattan,23548340,Sarah,Manhattan,Upper East Side,40.77192,-73.95369,Private room,95,1,0,,,1,2 +36472171,1 bedroom in sunlit apartment,99144947,Brenda,Manhattan,Inwood,40.86845,-73.92449,Private room,80,1,0,,,1,79 +36472710,CozyHideAway Suite,274225617,Alberth,Queens,Briarwood,40.70786,-73.81448,Entire home/apt,58,1,0,,,1,159 +36473044,The place you were dreaming for.(only for guys),261338177,Diana,Brooklyn,Gravesend,40.5908,-73.97116,Shared room,25,1,0,,,6,338 +36473253,Heaven for you(only for guy),261338177,Diana,Brooklyn,Gravesend,40.59118,-73.97119,Shared room,25,7,0,,,6,365 +36474023,"Cozy, Sunny Brooklyn Escape",1550580,Julia,Brooklyn,Bedford-Stuyvesant,40.68759,-73.95705,Private room,45,4,0,,,1,7 +36474911,"Cozy, clean Williamsburg 1- bedroom apartment",1273444,Tanja,Brooklyn,Williamsburg,40.71197,-73.94946,Entire home/apt,99,4,0,,,1,22 +36475746,A LARGE ROOM - 1 MONTH MINIMUM - WASHER&DRYER,144008701,Ozzy Ciao,Manhattan,Harlem,40.82233,-73.94687,Private room,35,29,0,,,2,31 +36476675,Nycity-MyHome,8636072,Ben,Manhattan,Hell's Kitchen,40.76236,-73.99255,Entire home/apt,260,3,0,,,1,9 +36477307,Brooklyn paradise,241945355,Clement & Rose,Brooklyn,Flatlands,40.63116,-73.92616,Entire home/apt,170,1,0,,,2,363 +36477588,Short Term Rental in East Harlem,214535893,Jeffrey,Manhattan,East Harlem,40.7976,-73.93947,Private room,50,7,0,,,1,22 +36478343,Welcome all as family,274273284,Anastasia,Manhattan,East Harlem,40.78749,-73.94749,Private room,140,1,0,,,1,180 +36478357,"Cozy, Air-Conditioned Private Bedroom in Harlem",177932088,Joseph,Manhattan,Harlem,40.80953,-73.9541,Private room,60,1,0,,,1,26 +36479230,Studio sized room with beautiful light,65767720,Melanie,Brooklyn,Bushwick,40.70418,-73.91471,Private room,42,7,0,,,1,16 +36479723,Room for rest,41326856,Jeerathinan,Queens,Elmhurst,40.74477,-73.87727,Private room,45,1,0,,,5,172 +36480292,Gorgeous 1.5 Bdr with a private yard- Williamsburg,540335,Lee,Brooklyn,Williamsburg,40.71728,-73.94394,Entire home/apt,120,20,0,,,1,22 +36481315,The Raccoon Artist Studio in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,120,1,0,,,3,365 +36481615,"Peaceful space in Greenpoint, BK",274298453,Adrien,Brooklyn,Greenpoint,40.72585,-73.94001,Private room,54,6,0,,,1,15 +36482231,Bushwick _ Myrtle-Wyckoff,66058896,Luisa,Brooklyn,Bushwick,40.69652,-73.91079,Private room,40,20,0,,,1,31 +36482416,Sunny Bedroom NYC! Walking to Central Park!!,131529729,Kendall,Manhattan,East Harlem,40.79755,-73.93614,Private room,75,2,0,,,2,364 +36482783,Brooklyn Oasis in the heart of Williamsburg,274307600,Jonathan,Brooklyn,Williamsburg,40.7179,-73.96238,Private room,190,7,0,,,1,341 +36482809,Stunning Bedroom NYC! Walking to Central Park!!,131529729,Kendall,Manhattan,East Harlem,40.79633,-73.93605,Private room,75,2,0,,,2,353 +36483010,Comfy 1 Bedroom in Midtown East,274311461,Scott,Manhattan,Midtown,40.75561,-73.96723,Entire home/apt,200,6,0,,,1,176 +36483152,Garden Jewel Apartment in Williamsburg New York,208514239,Melki,Brooklyn,Williamsburg,40.71232,-73.9422,Entire home/apt,170,1,0,,,3,365 +36484087,"Spacious Room w/ Private Rooftop, Central location",274321313,Kat,Manhattan,Hell's Kitchen,40.76392,-73.99183,Private room,125,4,0,,,1,31 +36484363,QUIT PRIVATE HOUSE,107716952,Michael,Queens,Jamaica,40.69137,-73.80844,Private room,65,1,0,,,2,163 +36484665,Charming one bedroom - newly renovated rowhouse,8232441,Sabrina,Brooklyn,Bedford-Stuyvesant,40.67853,-73.94995,Private room,70,2,0,,,2,9 +36485057,Affordable room in Bushwick/East Williamsburg,6570630,Marisol,Brooklyn,Bushwick,40.70184,-73.93317,Private room,40,4,0,,,2,36 +36485431,Sunny Studio at Historical Neighborhood,23492952,Ilgar & Aysel,Manhattan,Harlem,40.81475,-73.94867,Entire home/apt,115,10,0,,,1,27 +36485609,43rd St. Time Square-cozy single bed,30985759,Taz,Manhattan,Hell's Kitchen,40.75751,-73.99112,Shared room,55,1,0,,,6,2 +36487245,Trendy duplex in the very heart of Hell's Kitchen,68119814,Christophe,Manhattan,Hell's Kitchen,40.76404,-73.98933,Private room,90,7,0,,,1,23 diff --git a/jupyter_nb/Demo_abb.ipynb b/jupyter_nb/Demo_abb.ipynb new file mode 100644 index 00000000..b03c65ae --- /dev/null +++ b/jupyter_nb/Demo_abb.ipynb @@ -0,0 +1,170 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "1d0a3602", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import sqlite3" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "2d757356", + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv('city.csv')\n", + "df = df.astype(str)\n", + "conn = sqlite3.connect('example.db')\n", + "c = conn.cursor()\n", + "df.to_sql('test_table', conn, if_exists='append', index=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "8157d8b1", + "metadata": {}, + "outputs": [], + "source": [ + "test = c.execute(\"SELECT * FROM test_table \\\n", + " WHERE name LIKE 'B%' LIMIT 5;\")" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "d5152722", + "metadata": {}, + "outputs": [], + "source": [ + "def sql_query_to_pddf(sql_query, *argv):\n", + " sql_query = [row for row in sql_query]\n", + " sql_query = pd.DataFrame.from_records(sql_query)\n", + " sql_query.columns = [[*argv]]\n", + " return sql_query" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "42ecf419", + "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", + "
NamePopulation
0Bakersfield247057
1Baltimore651154
2Baton Rouge227818
3Beaumont113866
4Bellevue109569
\n", + "
" + ], + "text/plain": [ + " Name Population\n", + "0 Bakersfield 247057\n", + "1 Baltimore 651154\n", + "2 Baton Rouge 227818\n", + "3 Beaumont 113866\n", + "4 Bellevue 109569" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sql_query_to_pddf(test, 'Name', 'Population')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "d2febe57", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "98fbd00c", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.5.6" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/jupyter_nb/New_York_City_.png b/jupyter_nb/New_York_City_.png new file mode 100644 index 00000000..912021cc Binary files /dev/null and b/jupyter_nb/New_York_City_.png differ diff --git a/jupyter_nb/city.csv b/jupyter_nb/city.csv new file mode 100644 index 00000000..5d99cff8 --- /dev/null +++ b/jupyter_nb/city.csv @@ -0,0 +1,275 @@ +name,population +Abilene,115930 +Akron,217074 +Albany,93994 +Albuquerque,448607 +Alexandria,128283 +Allentown,106632 +Amarillo,173627 +Anaheim,328014 +Anchorage,260283 +Ann Arbor,114024 +Arden-Arcade,92040 +Arlington,332969 +Arlington,174838 +Arvada,102153 +Athens-Clarke County,101489 +Atlanta,416474 +Augusta-Richmond County,199775 +Aurora,276393 +Aurora,142990 +Austin,656562 +Bakersfield,247057 +Baltimore,651154 +Baton Rouge,227818 +Beaumont,113866 +Bellevue,109569 +Berkeley,102743 +Billings,92988 +Birmingham,242820 +Boise City,185787 +Boston,589141 +Boulder,91238 +Bridgeport,139529 +Brockton,93653 +Brownsville,139722 +Buffalo,292648 +Burbank,100316 +Cambridge,101355 +Cape Coral,102286 +Carrollton,109576 +Carson,89089 +Cary,91213 +Cedar Rapids,120758 +Chandler,176581 +Charleston,89063 +Charlotte,540828 +Chattanooga,155554 +Chesapeake,199184 +Chicago,2896016 +Chula Vista,173556 +Cincinnati,331285 +Citrus Heights,103455 +Clarksville,108787 +Clearwater,99936 +Cleveland,478403 +Colorado Springs,360890 +Columbia,116278 +Columbus,711470 +Columbus,186291 +Compton,92864 +Concord,121780 +Coral Springs,117549 +Corona,124966 +Corpus Christi,277454 +Costa Mesa,108724 +Dallas,1188580 +Daly City,103621 +Davenport,98256 +Dayton,166179 +Denver,554636 +Des Moines,198682 +Detroit,951270 +Downey,107323 +Durham,187035 +East Los Angeles,126379 +El Cajon,94578 +El Monte,115965 +El Paso,563662 +Elgin,89408 +Elizabeth,120568 +Erie,103717 +Escondido,133559 +Eugene,137893 +Evansville,121582 +Fairfield,92256 +Fall River,90555 +Fayetteville,121015 +Flint,124943 +Fontana,128929 +Fort Collins,118652 +Fort Lauderdale,152397 +Fort Wayne,205727 +Fort Worth,534694 +Fremont,203413 +Fresno,427652 +Fullerton,126003 +Gainesville,92291 +Garden Grove,165196 +Garland,215768 +Gary,102746 +Gilbert,109697 +Glendale,218812 +Glendale,194973 +Grand Prairie,127427 +Grand Rapids,197800 +Green Bay,102313 +Greensboro,223891 +Hampton,146437 +Hartford,121578 +Hayward,140030 +Henderson,175381 +Hialeah,226419 +Hollywood,139357 +Honolulu,371657 +Houston,1953631 +Huntington Beach,189594 +Huntsville,158216 +Independence,113288 +Indianapolis,791926 +Inglewood,112580 +Irvine,143072 +Irving,191615 +Jackson,184256 +Jacksonville,735167 +Jersey City,240055 +Joliet,106221 +Kansas City,441545 +Kansas City,146866 +Kenosha,89447 +Knoxville,173890 +Lafayette,110257 +Lakewood,144126 +Lancaster,118718 +Lansing,119128 +Laredo,176576 +Las Vegas,478434 +Lexington-Fayette,260512 +Lincoln,225581 +Little Rock,183133 +Livonia,100545 +Long Beach,461522 +Los Angeles,3694820 +Louisville,256231 +Lowell,105167 +Lubbock,199564 +Macon,113336 +Madison,208054 +Manchester,107006 +McAllen,106414 +Memphis,650100 +Mesa,396375 +Mesquite,124523 +Metairie,149428 +Miami,362470 +Miami Beach,97855 +Midland,98293 +Milwaukee,596974 +Minneapolis,382618 +Mission Viejo,98049 +Mobile,198915 +Modesto,188856 +Montgomery,201568 +Moreno Valley,142381 +Naperville,128358 +Nashville-Davidson,569891 +New Bedford,94780 +New Haven,123626 +New Orleans,484674 +New York,8008278 +Newark,273546 +Newport News,180150 +Norfolk,234403 +Norman,94193 +North Las Vegas,115488 +Norwalk,103298 +Oakland,399484 +Oceanside,161029 +Odessa,89293 +Oklahoma City,506132 +Omaha,390007 +Ontario,158007 +Orange,128821 +Orlando,185951 +Overland Park,149080 +Oxnard,170358 +Palmdale,116670 +Paradise,124682 +Pasadena,141674 +Pasadena,133936 +Paterson,149222 +Pembroke Pines,137427 +Peoria,112936 +Peoria,108364 +Philadelphia,1517550 +Phoenix,1321045 +Pittsburgh,334563 +Plano,222030 +Pomona,149473 +Portland,529121 +Portsmouth,100565 +Providence,173618 +Provo,105166 +Pueblo,102121 +Raleigh,276093 +Rancho Cucamonga,127743 +Reno,180480 +Richmond,197790 +Richmond,94100 +Riverside,255166 +Roanoke,93357 +Rochester,219773 +Rockford,150115 +Sacramento,407018 +Saint Louis,348189 +Saint Paul,287151 +Saint Petersburg,248232 +Salem,136924 +Salinas,151060 +Salt Lake City,181743 +San Antonio,1144646 +San Bernardino,185401 +San Buenaventura,100916 +San Diego,1223400 +San Francisco,776733 +San Jose,894943 +San Mateo,91799 +Sandy,101853 +Santa Ana,337977 +Santa Clara,102361 +Santa Clarita,151088 +Santa Monica,91084 +Santa Rosa,147595 +Savannah,131510 +Scottsdale,202705 +Seattle,563374 +Shreveport,200145 +Simi Valley,111351 +Sioux Falls,123975 +South Bend,107789 +Spokane,195629 +Springfield,152082 +Springfield,151580 +Springfield,111454 +Stamford,117083 +Sterling Heights,124471 +Stockton,243771 +Sunnyvale,131760 +Sunrise Manor,95362 +Syracuse,147306 +Tacoma,193556 +Tallahassee,150624 +Tampa,303447 +Tempe,158625 +Thousand Oaks,117005 +Toledo,313619 +Topeka,122377 +Torrance,137946 +Tucson,486699 +Tulsa,393049 +Vallejo,116760 +Vancouver,143560 +Virginia Beach,425257 +Visalia,91762 +Waco,113726 +Warren,138247 +Washington,572059 +Waterbury,107271 +West Covina,105080 +West Valley City,108896 +Westminster,100940 +Wichita,344284 +Wichita Falls,104197 +Winston-Salem,185776 +Worcester,172648 +Yonkers,196086 diff --git a/jupyter_nb/example.db b/jupyter_nb/example.db new file mode 100644 index 00000000..58a9c625 Binary files /dev/null and b/jupyter_nb/example.db differ diff --git a/jupyter_nb/nyc_abb_vis.ipynb b/jupyter_nb/nyc_abb_vis.ipynb new file mode 100644 index 00000000..e76f36f0 --- /dev/null +++ b/jupyter_nb/nyc_abb_vis.ipynb @@ -0,0 +1,2873 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: numpy in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (1.18.3)\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install numpy" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pandas in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (0.24.2)\n", + "Requirement already satisfied: numpy>=1.12.0 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from pandas) (1.16.4)\n", + "Requirement already satisfied: pytz>=2011k in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from pandas) (2019.3)\n", + "Requirement already satisfied: python-dateutil>=2.5.0 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from pandas) (2.8.0)\n", + "Requirement already satisfied: six>=1.5 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from python-dateutil>=2.5.0->pandas) (1.12.0)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: matplotlib in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (3.1.3)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib) (2.8.0)\n", + "Requirement already satisfied: numpy>=1.11 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib) (1.16.4)\n", + "Requirement already satisfied: cycler>=0.10 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib) (0.10.0)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib) (1.1.0)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib) (2.4.2)\n", + "Requirement already satisfied: six>=1.5 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from python-dateutil>=2.1->matplotlib) (1.12.0)\n", + "Requirement already satisfied: setuptools in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from kiwisolver>=1.0.1->matplotlib) (41.4.0)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install matplotlib" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: seaborn in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (0.9.0)\n", + "Requirement already satisfied: matplotlib>=1.4.3 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from seaborn) (3.1.3)\n", + "Requirement already satisfied: scipy>=0.14.0 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from seaborn) (1.3.1)\n", + "Requirement already satisfied: pandas>=0.15.2 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from seaborn) (0.24.2)\n", + "Requirement already satisfied: numpy>=1.9.3 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from seaborn) (1.16.4)\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib>=1.4.3->seaborn) (1.1.0)\n", + "Requirement already satisfied: cycler>=0.10 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib>=1.4.3->seaborn) (0.10.0)\n", + "Requirement already satisfied: python-dateutil>=2.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib>=1.4.3->seaborn) (2.8.0)\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from matplotlib>=1.4.3->seaborn) (2.4.2)\n", + "Requirement already satisfied: pytz>=2011k in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from pandas>=0.15.2->seaborn) (2019.3)\n", + "Requirement already satisfied: setuptools in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from kiwisolver>=1.0.1->matplotlib>=1.4.3->seaborn) (41.4.0)\n", + "Requirement already satisfied: six in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (from cycler>=0.10->matplotlib>=1.4.3->seaborn) (1.12.0)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install seaborn" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Collecting PyMySQL\n", + " Using cached https://files.pythonhosted.org/packages/ed/39/15045ae46f2a123019aa968dfcba0396c161c20f855f11dea6796bcaae95/PyMySQL-0.9.3-py2.py3-none-any.whl\n", + "Installing collected packages: PyMySQL\n", + "Successfully installed PyMySQL-0.9.3\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install PyMySQL" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: sqlalchemy in /Users/nli/opt/anaconda3/lib/python3.7/site-packages (1.3.9)\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install sqlalchemy" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "import os\n", + "from sqlalchemy import create_engine\n", + "import pymysql\n", + "from brokenaxes import brokenaxes" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "engine = create_engine(\"mysql+pymysql://root:\" + os.environ.get(\"mysql_key\") + '@localhost:3306/airflow_project')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "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", + "
indexUnnamed: 0host_idboroughneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewsreviews_per_monthcalculated_host_listings_countavailability_365
0002787BrooklynKensington40.64749-73.97237Private room149190.216365
1112845ManhattanMidtown40.75362-73.98377Entire home/apt2251450.382355
2224632ManhattanHarlem40.80902-73.94190Private room15030NaN1365
3334869BrooklynClinton Hill40.68514-73.95976Entire home/apt8912704.641194
4447192ManhattanEast Harlem40.79851-73.94399Entire home/apt801090.1010
\n", + "
" + ], + "text/plain": [ + " index Unnamed: 0 host_id borough neighbourhood latitude longitude \\\n", + "0 0 0 2787 Brooklyn Kensington 40.64749 -73.97237 \n", + "1 1 1 2845 Manhattan Midtown 40.75362 -73.98377 \n", + "2 2 2 4632 Manhattan Harlem 40.80902 -73.94190 \n", + "3 3 3 4869 Brooklyn Clinton Hill 40.68514 -73.95976 \n", + "4 4 4 7192 Manhattan East Harlem 40.79851 -73.94399 \n", + "\n", + " room_type price minimum_nights number_of_reviews \\\n", + "0 Private room 149 1 9 \n", + "1 Entire home/apt 225 1 45 \n", + "2 Private room 150 3 0 \n", + "3 Entire home/apt 89 1 270 \n", + "4 Entire home/apt 80 10 9 \n", + "\n", + " reviews_per_month calculated_host_listings_count availability_365 \n", + "0 0.21 6 365 \n", + "1 0.38 2 355 \n", + "2 NaN 1 365 \n", + "3 4.64 1 194 \n", + "4 0.10 1 0 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df = pd.read_sql('select * from airflow_project.nyc_abb', con=engine)\n", + "abb_vis_df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### more detail data cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df.loc[abb_vis_df['reviews_per_month'].isnull(), 'reviews_per_month'] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df.loc[:, ~ abb_vis_df.columns.str.contains('^Unnamed')]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df[abb_vis_df['price']>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df[abb_vis_df['minimum_nights']<=365]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df.set_index('host_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "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", + "
boroughneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewsreviews_per_monthcalculated_host_listings_countavailability_365
host_id
2787BrooklynKensington40.64749-73.97237Private room149190.216365
2845ManhattanMidtown40.75362-73.98377Entire home/apt2251450.382355
4632ManhattanHarlem40.80902-73.94190Private room150300.001365
4869BrooklynClinton Hill40.68514-73.95976Entire home/apt8912704.641194
7192ManhattanEast Harlem40.79851-73.94399Entire home/apt801090.1010
\n", + "
" + ], + "text/plain": [ + " borough neighbourhood latitude longitude room_type price \\\n", + "host_id \n", + "2787 Brooklyn Kensington 40.64749 -73.97237 Private room 149 \n", + "2845 Manhattan Midtown 40.75362 -73.98377 Entire home/apt 225 \n", + "4632 Manhattan Harlem 40.80902 -73.94190 Private room 150 \n", + "4869 Brooklyn Clinton Hill 40.68514 -73.95976 Entire home/apt 89 \n", + "7192 Manhattan East Harlem 40.79851 -73.94399 Entire home/apt 80 \n", + "\n", + " minimum_nights number_of_reviews reviews_per_month \\\n", + "host_id \n", + "2787 1 9 0.21 \n", + "2845 1 45 0.38 \n", + "4632 3 0 0.00 \n", + "4869 1 270 4.64 \n", + "7192 10 9 0.10 \n", + "\n", + " calculated_host_listings_count availability_365 \n", + "host_id \n", + "2787 6 365 \n", + "2845 2 355 \n", + "4632 1 365 \n", + "4869 1 194 \n", + "7192 1 0 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.drop(columns=['index']).head()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(48870, 12)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index int64\n", + "borough object\n", + "neighbourhood object\n", + "latitude float64\n", + "longitude float64\n", + "room_type object\n", + "price int64\n", + "minimum_nights int64\n", + "number_of_reviews int64\n", + "reviews_per_month float64\n", + "calculated_host_listings_count int64\n", + "availability_365 int64\n", + "dtype: object" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index 0\n", + "borough 0\n", + "neighbourhood 0\n", + "latitude 0\n", + "longitude 0\n", + "room_type 0\n", + "price 0\n", + "minimum_nights 0\n", + "number_of_reviews 0\n", + "reviews_per_month 0\n", + "calculated_host_listings_count 0\n", + "availability_365 0\n", + "dtype: int64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example using SQL query to pull out data" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# More Visualization from SQL query\n", + "connection = engine.connect()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night\n", + "avg_abb_price = connection.execute('SELECT AVG(price) FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019
0152.7207
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019\n", + "0 152.7207" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price = [row for row in avg_abb_price]\n", + "df_avg_abb_price = pd.DataFrame.from_records(data_avg_abb_price)\n", + "df_avg_abb_price.columns = ['Average price/night of Airbnb in NYC 2019']\n", + "df_avg_abb_price" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Manhattan) \n", + "avg_abb_price_M = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb \\\n", + " WHERE borough = \"Manhattan\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Manhattan)
0196.8758
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Manhattan)\n", + "0 196.8758 " + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_M = [row for row in avg_abb_price_M]\n", + "df_avg_abb_price_M = pd.DataFrame.from_records(data_avg_abb_price_M)\n", + "df_avg_abb_price_M.columns = ['Average price/night of Airbnb in NYC 2019 (Manhattan)']\n", + "df_avg_abb_price_M" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Queens) \n", + "avg_abb_price_Q = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb\\\n", + " WHERE borough = \"Queens\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Queens)
099.5176
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Queens)\n", + "0 99.5176" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_Q = [row for row in avg_abb_price_Q]\n", + "df_avg_abb_price_Q = pd.DataFrame.from_records(data_avg_abb_price_Q)\n", + "df_avg_abb_price_Q.columns = ['Average price/night of Airbnb in NYC 2019 (Queens)']\n", + "df_avg_abb_price_Q" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "#Total Number of review\n", + "sum_abb_reviews = connection.execute('SELECT SUM(number_of_reviews)\\\n", + " FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Total nunber of reviews for Airbnb housing in NYC 2019
01138005
\n", + "
" + ], + "text/plain": [ + " Total nunber of reviews for Airbnb housing in NYC 2019\n", + "0 1138005 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_sum_abb_reviews = [row for row in sum_abb_reviews]\n", + "df_sum_abb_reviews = pd.DataFrame.from_records(data_sum_abb_reviews)\n", + "df_sum_abb_reviews.columns = ['Total nunber of reviews for Airbnb housing in NYC 2019']\n", + "df_sum_abb_reviews" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Next, we will look at the price distribution by the different boroughs" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Brooklyn', 'Manhattan', 'Queens', 'Staten Island', 'Bronx'],\n", + " dtype=object)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.borough.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Bronx', 'Brooklyn', 'Manhattan', 'Queens', 'Staten Island'}" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "set(abb_vis_df['borough'])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "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", + "
countmeanstdmin25%50%75%max
borough
Bronx1090.087.58106.7310.045.065.099.02500.0
Brooklyn20089.0124.45186.9210.060.090.0150.010000.0
Manhattan21654.0196.89291.4210.095.0150.0220.010000.0
Queens5664.099.49167.1310.050.075.0110.010000.0
Staten Island373.0114.81277.6213.050.075.0110.05000.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "borough \n", + "Bronx 1090.0 87.58 106.73 10.0 45.0 65.0 99.0 2500.0\n", + "Brooklyn 20089.0 124.45 186.92 10.0 60.0 90.0 150.0 10000.0\n", + "Manhattan 21654.0 196.89 291.42 10.0 95.0 150.0 220.0 10000.0\n", + "Queens 5664.0 99.49 167.13 10.0 50.0 75.0 110.0 10000.0\n", + "Staten Island 373.0 114.81 277.62 13.0 50.0 75.0 110.0 5000.0" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#The price/night for each borough\n", + "abb_vis_df.groupby('borough')['price'].describe().round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "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", + "
countmeanstdmin25%50%75%max
borough
Bronx1090.04.56330315.6387751.01.02.03.0365.0
Brooklyn20089.05.89456914.5333851.02.03.05.0365.0
Manhattan21654.08.34561718.8241701.01.03.06.0365.0
Queens5664.05.01024011.9526361.01.02.03.0365.0
Staten Island373.04.83109919.7276051.01.02.03.0365.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "borough \n", + "Bronx 1090.0 4.563303 15.638775 1.0 1.0 2.0 3.0 365.0\n", + "Brooklyn 20089.0 5.894569 14.533385 1.0 2.0 3.0 5.0 365.0\n", + "Manhattan 21654.0 8.345617 18.824170 1.0 1.0 3.0 6.0 365.0\n", + "Queens 5664.0 5.010240 11.952636 1.0 1.0 2.0 3.0 365.0\n", + "Staten Island 373.0 4.831099 19.727605 1.0 1.0 2.0 3.0 365.0" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#The minimum nights for each borough\n", + "abb_vis_df.groupby('borough')['minimum_nights'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "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", + "
room_typeEntire home/aptPrivate roomShared room
borough
Bronx127.5166.8959.80
Brooklyn178.3676.5550.77
Manhattan249.28116.7888.93
Queens147.0371.7669.02
Staten Island173.8562.2957.44
\n", + "
" + ], + "text/plain": [ + "room_type Entire home/apt Private room Shared room\n", + "borough \n", + "Bronx 127.51 66.89 59.80\n", + "Brooklyn 178.36 76.55 50.77\n", + "Manhattan 249.28 116.78 88.93\n", + "Queens 147.03 71.76 69.02\n", + "Staten Island 173.85 62.29 57.44" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Pivot table, five boroughs\n", + "abb_vis_df_pt = abb_vis_df.pivot_table(index='borough', columns='room_type', values='price', aggfunc='mean')\n", + "abb_vis_df_pt.round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Now, let's combine dataset by counting data from five boroughs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Airbnb Housing Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 1090\n", + "Brooklyn 20089\n", + "Manhattan 21654\n", + "Queens 5664\n", + "Staten Island 373\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_borough_count = abb_vis_df.groupby('borough').borough.count()\n", + "abb_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Park Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "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", + "
indexboroughacrestypecategowaterfront
00R20.907Neighborhood ParkYes
11Q0.061Triangle/PlazaNo
22B1.130PlaygroundNo
33X2.160Neighborhood ParkNo
44X1.104Jointly Operated PlaygroundNo
\n", + "
" + ], + "text/plain": [ + " index borough acres typecatego waterfront\n", + "0 0 R 20.907 Neighborhood Park Yes\n", + "1 1 Q 0.061 Triangle/Plaza No\n", + "2 2 B 1.130 Playground No\n", + "3 3 X 2.160 Neighborhood Park No\n", + "4 4 X 1.104 Jointly Operated Playground No" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_park_vis_df = pd.read_sql('select * from airflow_project.nyc_park', con=engine)\n", + "nyc_park_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "#Rename B = Broonlyn, X = Bronx, M = Manhattan, Q = Queens,R = Staten Island,\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'B', 'borough'] = 'Brooklyn'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'X', 'borough'] = 'Bronx'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'M', 'borough'] = 'Manhattan'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'Q', 'borough'] = 'Queens'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'R', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "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", + "
indexboroughacrestypecategowaterfront
00Staten Island20.907Neighborhood ParkYes
11Queens0.061Triangle/PlazaNo
22Brooklyn1.130PlaygroundNo
33Bronx2.160Neighborhood ParkNo
44Bronx1.104Jointly Operated PlaygroundNo
\n", + "
" + ], + "text/plain": [ + " index borough acres typecatego waterfront\n", + "0 0 Staten Island 20.907 Neighborhood Park Yes\n", + "1 1 Queens 0.061 Triangle/Plaza No\n", + "2 2 Brooklyn 1.130 Playground No\n", + "3 3 Bronx 2.160 Neighborhood Park No\n", + "4 4 Bronx 1.104 Jointly Operated Playground No" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_park_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 390\n", + "Brooklyn 610\n", + "Manhattan 386\n", + "Queens 469\n", + "Staten Island 160\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "park_borough_count = nyc_park_vis_df.groupby('borough').borough.count()\n", + "park_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Hot Spot Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "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", + "
indextypeproviderlatitudelongitudecityactivatedborough_codeborough
00FreeLinkNYC - Citybridge40.684061-73.870537Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
11FreeLinkNYC - Citybridge40.684625-73.868975Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
22FreeLinkNYC - Citybridge40.684702-73.868309Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
33FreeLinkNYC - Citybridge40.685131-73.866777Brooklyn12/20/2017 12:00:00 AM +00003Brooklyn
44FreeLinkNYC - Citybridge40.676475-73.897167Brooklyn02/06/2018 12:00:00 AM +00003Brooklyn
\n", + "
" + ], + "text/plain": [ + " index type provider latitude longitude city \\\n", + "0 0 Free LinkNYC - Citybridge 40.684061 -73.870537 Brooklyn \n", + "1 1 Free LinkNYC - Citybridge 40.684625 -73.868975 Brooklyn \n", + "2 2 Free LinkNYC - Citybridge 40.684702 -73.868309 Brooklyn \n", + "3 3 Free LinkNYC - Citybridge 40.685131 -73.866777 Brooklyn \n", + "4 4 Free LinkNYC - Citybridge 40.676475 -73.897167 Brooklyn \n", + "\n", + " activated borough_code borough \n", + "0 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "1 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "2 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "3 12/20/2017 12:00:00 AM +0000 3 Brooklyn \n", + "4 02/06/2018 12:00:00 AM +0000 3 Brooklyn " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hot_spot_df = pd.read_sql('select * from airflow_project.nyc_hot_spot', con=engine)\n", + "nyc_hot_spot_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 316\n", + "Brooklyn 700\n", + "Manhattan 1672\n", + "Queens 531\n", + "Staten Island 100\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hot_spot_borough_count = nyc_hot_spot_df.groupby('borough').borough.count()\n", + "hot_spot_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Hotel Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "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", + "
indexpostcodeboroughlatitudelongitude
0010004MANHATTAN40.703235-74.012421
1110004MANHATTAN40.702744-74.012201
2210004MANHATTAN40.704025-74.012638
3310004MANHATTAN40.704039-74.012317
4410282MANHATTAN40.714812-74.016153
\n", + "
" + ], + "text/plain": [ + " index postcode borough latitude longitude\n", + "0 0 10004 MANHATTAN 40.703235 -74.012421\n", + "1 1 10004 MANHATTAN 40.702744 -74.012201\n", + "2 2 10004 MANHATTAN 40.704025 -74.012638\n", + "3 3 10004 MANHATTAN 40.704039 -74.012317\n", + "4 4 10282 MANHATTAN 40.714812 -74.016153" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hotel_vis_df = pd.read_sql('select * from airflow_project.nyc_hotel', con=engine)\n", + "nyc_hotel_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [], + "source": [ + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'BROOKLYN', 'borough'] = 'Brooklyn'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'BRONX', 'borough'] = 'Bronx'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'MANHATTAN', 'borough'] = 'Manhattan'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'QUEENS', 'borough'] = 'Queens'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'STATEN IS', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "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", + "
indexpostcodeboroughlatitudelongitude
0010004Manhattan40.703235-74.012421
1110004Manhattan40.702744-74.012201
2210004Manhattan40.704025-74.012638
3310004Manhattan40.704039-74.012317
4410282Manhattan40.714812-74.016153
\n", + "
" + ], + "text/plain": [ + " index postcode borough latitude longitude\n", + "0 0 10004 Manhattan 40.703235 -74.012421\n", + "1 1 10004 Manhattan 40.702744 -74.012201\n", + "2 2 10004 Manhattan 40.704025 -74.012638\n", + "3 3 10004 Manhattan 40.704039 -74.012317\n", + "4 4 10282 Manhattan 40.714812 -74.016153" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hotel_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 73\n", + "Brooklyn 177\n", + "Manhattan 2250\n", + "Queens 209\n", + "Staten Island 17\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hotel_borough_count = nyc_hotel_vis_df.groupby('borough').borough.count()\n", + "hotel_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Shooting Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "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", + "
indexoccur_dateoccur_timeboroughprecinctvic_sexlatitudelongitude
0012/31/201923:15:00MANHATTAN28M40.800244-73.953390
1112/31/201920:14:00BROOKLYN73M40.660527-73.917156
2212/30/201921:29:00BROOKLYN71M40.656923-73.939647
3312/30/201903:17:00BROOKLYN81M40.686815-73.919370
4412/30/201903:17:00BROOKLYN81M40.686815-73.919370
\n", + "
" + ], + "text/plain": [ + " index occur_date occur_time borough precinct vic_sex latitude \\\n", + "0 0 12/31/2019 23:15:00 MANHATTAN 28 M 40.800244 \n", + "1 1 12/31/2019 20:14:00 BROOKLYN 73 M 40.660527 \n", + "2 2 12/30/2019 21:29:00 BROOKLYN 71 M 40.656923 \n", + "3 3 12/30/2019 03:17:00 BROOKLYN 81 M 40.686815 \n", + "4 4 12/30/2019 03:17:00 BROOKLYN 81 M 40.686815 \n", + "\n", + " longitude \n", + "0 -73.953390 \n", + "1 -73.917156 \n", + "2 -73.939647 \n", + "3 -73.919370 \n", + "4 -73.919370 " + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_shooting_vis_df = pd.read_sql('select * from airflow_project.nyc_shooting', con=engine)\n", + "nyc_shooting_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'BROOKLYN', 'borough'] = 'Brooklyn'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'BRONX', 'borough'] = 'Bronx'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'MANHATTAN', 'borough'] = 'Manhattan'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'QUEENS', 'borough'] = 'Queens'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'STATEN ISLAND', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 266\n", + "Brooklyn 372\n", + "Manhattan 145\n", + "Queens 158\n", + "Staten Island 26\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "shooting_borough_count = nyc_shooting_vis_df.groupby('borough').borough.count()\n", + "shooting_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Public Housing Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "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", + "
indexproject_idboroughextremely_low_income_unitsvery_low_income_unitslow_income_unitsmoderate_income_unitsmiddle_income_unitsother_income_unitstotal_units
0068894Bronx004400044
1167286Queens2492114001231
2267286Queens8344300085
3367693Manhattan498210060
4467693Manhattan368340152
\n", + "
" + ], + "text/plain": [ + " index project_id borough extremely_low_income_units \\\n", + "0 0 68894 Bronx 0 \n", + "1 1 67286 Queens 24 \n", + "2 2 67286 Queens 8 \n", + "3 3 67693 Manhattan 49 \n", + "4 4 67693 Manhattan 36 \n", + "\n", + " very_low_income_units low_income_units moderate_income_units \\\n", + "0 0 44 0 \n", + "1 92 114 0 \n", + "2 34 43 0 \n", + "3 8 2 1 \n", + "4 8 3 4 \n", + "\n", + " middle_income_units other_income_units total_units \n", + "0 0 0 44 \n", + "1 0 1 231 \n", + "2 0 0 85 \n", + "3 0 0 60 \n", + "4 0 1 52 " + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pb_houing_vis_df = pd.read_sql('select * from airflow_project.nyc_housing', con=engine)\n", + "pb_houing_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 1008\n", + "Brooklyn 1862\n", + "Manhattan 802\n", + "Queens 491\n", + "Staten Island 221\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pb_houing_borough_count = pb_houing_vis_df.groupby('borough').borough.count()\n", + "pb_houing_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "count_sum_df = pd.concat([abb_borough_count, park_borough_count,hot_spot_borough_count,\n", + " hotel_borough_count,shooting_borough_count,pb_houing_borough_count], axis = 1 )" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "count_sum_df.columns= ['airbnb', 'park', 'hot spot', 'hotel', 'shooting', 'public housing']" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "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", + "
airbnbparkhot spothotelshootingpublic housing
borough
Bronx1090390316732661008
Brooklyn200896107001773721862
Manhattan2165438616722250145802
Queens5664469531209158491
Staten Island3731601001726221
\n", + "
" + ], + "text/plain": [ + " airbnb park hot spot hotel shooting public housing\n", + "borough \n", + "Bronx 1090 390 316 73 266 1008\n", + "Brooklyn 20089 610 700 177 372 1862\n", + "Manhattan 21654 386 1672 2250 145 802\n", + "Queens 5664 469 531 209 158 491\n", + "Staten Island 373 160 100 17 26 221" + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "count_sum_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Data visulization" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+wAAAFICAYAAADKy3RZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdebhVddn4//cdomAimvSkqIWZAzKWqJSaYvbL1DITK9MUfbJwSK2cKn1ELYfqKdM0ylLMNO1R0ywbVMQhKQVkUvSr5nEIZwQZ1ATv3x9rHdwe9jlncziHvZH367r2tfZe67M+615rH66Le3+myEwkSZIkSVJjeUe9A5AkSZIkScsyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJajgRsSAi3t9JdX07In5Zvu8XERkRa3RS3e8tY+3WGfW1qLvDzyAi9o2IJ8s6PhgR90fErp0cX6c+y65UxvmBeschScvLhF2StFqJiKaIeC4i3lmx78sRMSEKd0TEaS3OOTgiHo2ItSNi3Yg4LyKeKJOhR8vPfVq5XkTECRHxcES8Up53dkSs1dX3WiWW5gRrQfl6NiL+GBEfX446RkXEXSsQw64R8UZFDE9FxO8iYrvKcpm5Tmb+q4a6nmrvmpl5VmZ+uaMxt7hmU0TsXlH3E2WsSzqj/kq1PIM2/BA4uqzjvswckJkTOjE8SdJKYMIuSVoddQOObbkzMxP4MvD1iBgAEBHvBv633L8YuBUYAOwBrAt8GHgR2L6Va50PfAU4GOgFfBL4GPC7zrud5bZeZq4DDAFuBn4fEaNW4vVnl9fvBQwHHgTujIiPdfaFVoXW3y7yPuD+egdRq9X4e5KkNpmwS5JWRz8Ajo+I9VoeyMz/B3wP+FVEvIMi4b42M2+jSLrfC+ybmQ9k5huZ+VxmnpmZN7WsKyK2AI4EDszMiZm5ODPvB/YD9oiI3cpy4yJibETcHBHzI+L2iHhfRT1bl8fmRMRDEfG5imPjIuLCiPhTee4/I2LzWh5CZj6TmT8BxgDnlvdLRJxc9hyYHxEPRMS+5f7+wFjgw2Xr+Nxy/14RcV9EvFx2wx5T4/UzM5/KzP8BfgmcW3FfS7swR8SeZRzzI+LfEXF82UPiz0Dfitb6vhExJiKuiYjfRMTLwKhy329aXP6wiJgdEU9HxPEtnud3Kz4vbcWPiMspvv8by+ud2LJbeBnDH8rv6pGIOLyirjFlb4Jfl/dyf0QMa+35tHgGNX3PEbFWRCyg+FFqWkQ8Wu5viojdy/heiYh3VZzzwYh4ISK6l58Pi4hZEfFSRPy18m+xFa09y7Wi6H0yu3ydF2XPkubnGhEnRcQzwKXtlF+mZ0eL57NBRNxY/g3eGxHfbVke2D2Kni5zy2cZ5bkfKP/NzSufw9Xt3K8krTQm7JKk1dEkYAJwfCvHfwQEcA2wI3BCuX934C+ZuaDG63wMeCoz76ncmZlPAv8AKruiHwicCfQBpgJXAJSJ6c3AlcB/AV8ALoqIbSrO/QJwOrA+8AjFDw7L47qy7q3Kz48COwO9y3p/ExEbZeYsYDQwsexq3fyDx0KKHzPWA/YCjoiIz3Qghg9FxVCFCr8CvpqZvYCBwPjMXEjRW2F2Gcs6mTm7LL8PxXe3HuVzrGIEsAXw/wEnRUU399Zk5peAJ4BPldf7fpViVwFPAX2BkcBZUf4wU/p0WWY94A/AT9u7boV2v+fMfK3svQAwJDM3b3F8NjCR4kejZl8ErsnM1yNiH+DbwGeBdwN3Ar9tJ67WnuV3KHpQDKXozbE9cErFeRsC76LoDfCVGsq35UKKv8MNgUPKV0t7A9sBg4HPAZ8o958J/I3iuW4CXFDjNSWpy5mwS5JWV/8DfC2KLu9vUY5HPgzYF/haZs4vD20APL0c1+jTRvmny+PN/pSZd2TmaxSJy4cjYlOKJKMpMy8tW+jvA64F9q849/eZeU9mLqZIUIcuR4wAzYnuuwAy8/8yc3bZg+Bq4GFa7/JPZk7IzBll+ekUCd4uHYghKBLZll4HtomIdTPzpcyc0k5dEzPz+jKeV1opc3pmLszMGcClwAHLGe8yyu9rR+CkzHw1M6dS9Bw4uKLYXZl5U/k3djlFYlqrFf2em11Jeb9lK/MXyn1Q/CBzdmbOKq9zFjC0nVb21p7lgcAZZS+U5yl+bPhSxXlvAKeVPzK8UkP5qqKY8G+/sq5FmfkAcFmVoudk5tzMfAK4jTef3+sUPxr0Lb+3Ds/RIEmdzYRdkrRaysyZwB+Bk1s53jz+t3Ic8IvARstxmRfaKL9RebzZkxXXXgDMoWilfR+wQ9mNd24U3dAPpGhJbPZMxftFwDosn43L7RxYOsne1IrrDeStPy68RUTsEBG3RcTzETGPIulrtXwbMSQwt8qx/YA9gcfLrssfbqeuJ9s53rLM4xTPekX1BeZU/MDTXPfGFZ9bflc9ovbx2yv6PTe7luIHoY2Aj1IkzneWx94H/KTiu59D8UPKxlVrKrT2LPuWn6sdA3g+M1+t+Nxe+da8G1ijRRzV/gZae34nUtzjPeUwhcNquKYkrRQm7JKk1dlpwOG0nYxUugX4RCvdtqsZD2waEW9pnS5bYodTTGDXbNOK4+tQtHbPpkg8bs/M9Spe62TmETXGUIt9geeAh8qW1IuBo4ENym7vMykSGiiS6paupOjevWlm9qYY5x5VyrUXw5Syq/tbZOa9mbkPRbf963lzwr5qsbS1v9KmFe/fy5u9DBYCa1ccq/xhpL26ZwPvioheLer+dw3xrDSZ+RJFF/DPU3SHv6qccBGKv7evtvh765mZd7dRZWvPcjbFDwDVjsGyz7Kt8m/5XiKi8nt5nmJCyE1aialN5VwOh2dmX+CrFENOXAJOUkMwYZckrbYy8xHgauCYGk+5nCKhuTaKieDeUU529e2I2LNK/f+PInm9IiKGR0S3KGafvxa4JTNvqSi+Z0TsFBFrUoyp/Uc51v2PwJYR8aWI6F6+totiArgVEhHviYijKX64+FZmvgG8kyKRer4scyhFC3uzZ4FNyjib9aJoWX61/HHiizVePyJi4yiW0fsyxdjplmXWjIgDI6J3Zr4OvEzRItwcywYR0Xs5brvZqVEs0zcAOJTi7wCK+QP2jIh3lUnhcS3OexaoujZ6+X3dDZwdET0iYjDw30DLCe8awZUUXfVH8mZ3eCj+Xr8Vb66S0Dsi9q9yfqXWnuVvgVMi4t1RLHv4P7T9LNoqPw0YEBFDI6IHxUSJwNIhLNcBY8o4tuatwxDaFBH7R0Rzsv8Sxd//G22cIkkrjQm7JGl1dwZFktqucnz57hTLkN1MkTzeQ9H9+5+tnHY0xTjm3wALgL9QTHi3X4tyV1IkznOAbYGDymvOp5jM6wsUrY3PUMymviLruM+NiIXADIqu5vtn5iXl9R6gWMZuIkVyOgj4e8W54ymGCTwTEc1d+o8EzoiI+RRJVntL1vWNYibzBcC95TV2zcy/tVL+S0BTFLO+j6YYEkBmPkiR5P2r7MK9PN3ab6eYuO1W4IcV176cIjlsomiFbjlj+NkUSeXcqJgRvcIBQD+K7+r3FOOqb6lSrt7+QDFR3DOZOa15Z2b+nuLv66ryec+kmNyvLa09y+9STPA4neJvbUq5rzWtli9//DqDopfLw0DLceZHU0yS+AzFd/hb4LV24m62HfDP8m/yD8CxmfmvGs+VpC4Vb/aAkiRJ9RAR4yhmk691RmxJbYiIc4ENM7PabPGStMqwhV2SJEmrtHKIyuBymMX2FEMRfl/vuCRpRdU6K6kkSZLUqHpRdIPvSzGU43+BG+oakSR1ArvES5IkSZLUgOwSL0mSJElSAzJhlyRJkiSpATmGXXXVp0+f7NevX73DkCRJkqS6mDx58guZ+e5qx0zYVVf9+vVj0qRJ9Q5DkiRJkuoiIh5v7Zhd4iVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpBj2CVJkiRpFfT666/z1FNP8eqrr9Y7FNWgR48ebLLJJnTv3r3mc0zYJUmSJGkV9NRTT9GrVy/69etHRNQ7HLUhM3nxxRd56qmn2GyzzWo+zy7xkiRJkrQKevXVV9lggw1M1lcBEcEGG2yw3L0hTNglSZIkaRVlsr7q6Mh3ZcIuSZIkSaqLUaNGcc0119Q7jIblGHZJkiRJehvod/KfOrW+pnP26tT6Wlq8eHGX1v92YAu7JEmSJKlDmpqa2HrrrTnwwAPp378/I0eOZNGiRZxxxhlst912DBw4kK985StkJgC77rorxx13HMOGDeMnP/nJW+o69dRTGTVqFEuWLKnHrTQkE3ZJkiRJUoc99NBDHHnkkcyaNYt1112Xiy66iKOPPpp7772XmTNn8sorr/DHP/5xafn//Oc/TJo0iW9+85tL951wwgk8//zzXHrppXTr1q0et9GQTNglSZIkSR226aabsuOOOwJw0EEHcdddd3Hbbbexww47MGjQIMaPH8/999+/tPznP//5t5x/5plnMm/ePMaOHeskei04hl119dzj87lw9Ph6h7FKOmrsbvUOQZIkSVomyY4IjjzySCZNmsSmm27KmDFj3rKc2Tvf+c63lN9uu+2YPHkyc+bM4V3vetdKiXlVYQu7JEmSJKnDnnjiCSZOnAjAlVdeyU477QRAnz59WLBgQbuzwO+xxx6cfPLJ7LXXXsyfP7/L412V2MIuSZIkSeqwrbbaigsvvJDDDjuMbbbZhiOOOIKXXnqJgQMHsuGGG7Lddtu1W8f+++/P/Pnz+fSnP81NN91Ez549V0LkjS+aZ+uT6uG9794qT9rvZ/UOY5Vkl3hJkqTV26xZs+jfv39dY2hqamLvvfdm5syZdY1jVVHtO4uIyZk5rFp5u8RLkiRJktSA7BKvulp3/hPsNuGodsv1f3DWSohGkiRJ0vLo16+fretdyBb2VVhEjIqIjIhR9Y6lUkSMKePatd6xSJIkSdKqqksT9ojoFhGHR8TtETEnIl6PiOciYnpE/DIiPt2ifKcmoBHRr6xvXGfU19kiYlwjJtySJEmSpPrrsi7xEdEN+COwBzAX+BPwFLAmMAD4IrA18IeuikGSJEmSpFVVV45hP4AiWZ8G7JKZ8yoPRsTawA5deH1JkiRJklZZXdkl/iPldlzLZB0gMxdl5m3NnyNiAnBp+fHSsqt486tfWaZvRPxPRPw9Ip6JiP9ExOyIuDIitqmsPyLGAI+VHw9pUd+oFmU/ERE3RcQLEfFaRDwaET+IiPVaxh0RTeXrnWWZJ8pzHomIkyIiOvKwWlzj/RHxi7LOV8rhBDMiYmxEbFDD+SPK8x+IiJfLOmZGxGkR0aNK+aVjziNiZETcExGLyuteFREbt3KdbSPiLxExv7zOLRHx4eW510c3gs99a41lXv0fnPWWlyRJkqTG0tTUxMCBA5frnHHjxjF79uwuiqiI6corr+yy+le2rmxhf7Hcbllj+XEUXef3AW4AplYcm1tuPwqcDNwGXAssALYARgKfjogdM3NaWXYCsB5wLEUr//UV9S2tOyJOA8YAcyi68D8HDAaOB/aMiA9n5sstYu0O/BXoC/wZWAx8BjgH6AGcXuM9LyMiNgLuBdYFbirvswewGfAl4Ke8+WxbcxLFcIO7KYYi9AB2LO9z14jYPTOXVDnvSODTFMMUbqfoAfF5YEhEDM3M1yri/AhwC8UQh+uAR4ChFM99/HLetiRJkqQVNaZ3J9e3TLvrChs3bhwDBw6kb9++nV43vJmwf/GLX+yS+le2rkzYr6NIHEdHRC/g98DkzHy8WuHMHFc2Tu8DXJ+Z46oUGw+8JzPnV+6MiCHA3ykS5k+W9U2IiCaKhH1qZo5pWVlEjKBIYicCe2bm3Ipjoyha/E8Hvt7i1L4UPwJ8PDNfKcufDvw/4OsRcVZmvl7tPmswEngXcFxm/qRFvO8E3qihjiOBxzIzW5x/JnBKeY2rq5y3B7BdZs6oOOdKiuEN+wC/K/cFcAnQE/hMZt5QUf5Y4LwaYpQkSZK0iluyZAmHH344d999NxtvvDE33HADPXv2ZOrUqYwePZpFixax+eabc8kll3DrrbcyadIkDjzwQHr27MnEiRPp2bPn0rrOP/98xo4dyxprrME222zDVVddxZgxY3j00Ud55JFHeOGFFzjxxBM5/PDDyUxOPPFE/vznPxMRnHLKKXz+85/n5JNPZtasWQwdOpRDDjmEr3+9ZSq3aumyLvGZeR9wEPBsub0WaIqIFyPi9xHxqQ7U+VzLZL3cP40imR8REd2Xo8pjyu3hlcl6Wec4ipb4A1s7tzlZb46NomdAb2Cr5YihNa+03JGZCyuv2ZrM/FfLZL3043L7iVZOPb8yWS9dXG63r9j3EYp7vKMyWS/9FHi0rfgi4isRMSkiJi2ZX62hX5IkSdKq4OGHH+aoo47i/vvvZ7311uPaa68F4OCDD+bcc89l+vTpDBo0iNNPP52RI0cybNgwrrjiCqZOnfqWZB3gnHPO4b777mP69OmMHTt26f7p06czfvx4Jk6cyBlnnMHs2bO57rrrmDp1KtOmTeOWW27hhBNO4Omnn+acc85h5513ZurUqat8sg5dvKxbZv4OeC9FgngmRZfzd1B0H/9DRFy2vGO+I2KviLgxIp4ul4nLiEjgU8BaQJ/lqO7DwOvA/uU47re8KLp7v7vKuPF5mflIlfqeLLfrL889tfAHiq7+F0bEtWVyO2B5nlM5vv7bEXFvRMyLiDfKZ9Tclb7qmHRgUpV91e7pQ+X29paFy672d7UVX2b+IjOHZeawbr26tVVUkiRJUgPbbLPNGDp0KADbbrstTU1NzJs3j7lz57LLLrsAcMghh3DHHXe0W9fgwYM58MAD+c1vfsMaa7zZGXyfffahZ8+e9OnThxEjRnDPPfdw1113ccABB9CtWzfe8573sMsuu3Dvvfd2zU3WUVd2iQeg7Br+t/LVvNzbfhRdqg+m6Cp/fasVVKjobv0ScDPwBLAISIofAYZQJO212oDiGZzWTrl1eOu48bmtlFtcbjuchWbm4xGxPUVX/T2Az5aHnoyIH2bm+W2dX/YwGE/RIj6Touv78xQ/TEBxr609o2r3Ve2emgfHPNtKPc+0FaMkSZKkt4e11noztejWrRuvvNJuh+BW/elPf+KOO+7gxhtv5Hvf+x4zZhSdf1u2XXbCPN+rjC5P2FsqW2B/FxGDKMZT70YNCXtErEGRxD4DfCgzn25xfLlmJy/NA96Rme/qwLldJjNnAZ8v73kIsDvwNeAnEbEwM3/Vxun7UCTr4zLz0MoD5YR27f04UYvm2Sfe08rxDWutaMBr/2HSY08se6CzJ8yoVRdMrCFJkiStTnr37s3666/PnXfeyc4778zll1++tLW9V69ezJ+/zChn3njjDZ588klGjBjBTjvtxFVXXcWCBQsAuOGGG/jWt77FwoULmTBhAueccw5Llizh5z//OYcccghz5szhjjvu4Ac/+AH//ve/q9a/qlrpCXuF5qdY+fNI84Dmai3UfShmfb+uSrK+Dm92067UVn0A/wD2iogBmXl/TVGvRJm5GJgMTI6Iu4E7KHoStJWwf6DcXlfl2C6dFNqU1uore1Ds1EnXkSRJkrQKuuyyy5ZOOvf+97+fSy8tVvAeNWoUo0ePXmbSuSVLlnDQQQcxb948MpNjjjmG9dYrVtkePHgwI0aM4IUXXuDUU0+lb9++7LvvvkycOJEhQ4YQEXz/+99nww03ZIMNNqBbt24MGTKEUaNGrfLj2LssYY+IA4AXgFsz840WxzYEDi8/Vg5maO52/t4qVT5H0f1924hYJzMXlHV1B35C9bHrL1F0l69WHxSTsO0FXBwRIzPzLQsClrOyD8rMf7RyfqeLiG2BR6qsXd/cmr2onSqayu2uwI0V9b4fOLcTQoRiubiHgI9GxD4tJp47Gti8k64jSZIkqVYrubdov379mDlz5tLPxx9//NL3Q4cO5R//WDaN2m+//dhvv/2W2d+9e3fuuqv6VFiDBw/m17/+9Vv2RQQ/+MEP+MEPfrBMPePHv31Wme7KFvYdKJZUeyYi7gIeK/dvRpEk96SYVf2ainMmUiSkx5UTvTWPhb4gM+dFxPkU67DPiIgbKCaFG0GxDNpt5fulMnNBRPwT2DkirqBYdm0J8IfMnJ6Zt0bEycDZwMMRcVMZ5zrA+yhakO+iGEu+snwJ+Gr5zB6l+NFhc4pJ9V6j/SXTbqRYE/0b5bCD+yh+sNibYk321n68qFlmZkT8N8U8AtdGROU67B8D/sLKfWaSJEmS9LbTlQn7/wIPU4y/HkwxU3wPilb0CcCVwJWVy49l5ksRsR/FOOtRwDvLQ7+hGDd9KsUEal8Gvlruu5liLPzprcTxJYqW9D0o1hMP4ClgennNcyPi7xRLvO1EMQZ8HvBv4BdlnCvTbykmhfsIsC3FDxv/Bq4C/jczZ7ZxLpm5MCJ2o1iTfldgZ+BfFLP0/wj4fGcEmZl/j4idge8Bnyx3/7O85icwYZckSZK0gsaMGVPvEOoqqi/XLa0ca220RW50SHudBlZtTefsVe8QJEmS9DY0a9Ys+vfvX+8wtByqfWcRMTkzh1Ur36XrsEuSJEmSpI4xYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJHdLU1MTAgQNrLj9u3Dhmz57dbrlRo0ZxzTXXtFvu7a4rZ4mXJEmSJK0kgy4b1Kn1zThkRqfWB0XCPnDgQPr27dvpdb8dmbCrrgZt3JtJzqIuSZIkrbKWLFnC4Ycfzt13383GG2/MDTfcwEMPPcTo0aNZtGgRm2++OZdccgm33norkyZN4sADD6Rnz55MnDiRBx54gG984xssWLCAPn36MG7cODbaaKN631LDsEu8JEmSJKnDHn74YY466ijuv/9+1ltvPa699loOPvhgzj33XKZPn86gQYM4/fTTGTlyJMOGDeOKK65g6tSprLHGGnzta1/jmmuuYfLkyRx22GF85zvfqfftNBRb2CVJkiRJHbbZZpsxdOhQALbddlseffRR5s6dyy677ALAIYccwv7777/MeQ899BAzZ87k4x//OFC01Nu6/lYm7JIkSZKkDltrrbWWvu/WrRtz586t6bzMZMCAAUycOLGrQlvl2SVekiRJktRpevfuzfrrr8+dd94JwOWXX760tb1Xr17Mnz8fgK222ornn39+acL++uuvc//999cn6AZlC7skSZIkqVNddtllSyede//738+ll14KFMu1jR49eumkc9dccw3HHHMM8+bNY/HixRx33HEMGDCgztE3jsjMeseg1diwYcNy0qRJ9Q5DkiRJWuXMmjWL/v371zsMLYdq31lETM7MYdXK2yVekiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJUqfp168fL7zwwgrXM2HCBO6+++6ln8eOHcuvf/3rFa53VbJGvQOQJEmSJK24WVt37prs/R+c1an1La8JEyawzjrr8JGPfASA0aNH1zWeerCFXZIkSZLUIQsXLmSvvfZiyJAhDBw4kKuvvhqACy64gA996EMMGjSIBx98EIA5c+bwmc98hsGDBzN8+HCmT5/e6v6mpibGjh3Lj3/8Y4YOHcqdd97JmDFj+OEPfwjArrvuykknncT222/PlltuyZ133gnAokWL+NznPsc222zDvvvuyw477MCkSZPq8GQ6hwm7JEmSJKlD/vKXv9C3b1+mTZvGzJkz2WOPPQDo06cPU6ZM4YgjjliaZJ922ml88IMfZPr06Zx11lkcfPDBre7v168fo0eP5utf/zpTp05l5513Xubaixcv5p577uG8887j9NNPB+Ciiy5i/fXX54EHHuDMM89k8uTJK+lJdA0TdkmSJElShwwaNIibb76Zk046iTvvvJPevXsD8NnPfhaAbbfdlqamJgDuuusuvvSlLwGw22678eKLL/Lyyy+3ur89rV3jC1/4AgADBw5k8ODBnXav9eAYdkmSJElSh2y55ZZMmTKFm266iVNOOYWPfexjAKy11loAdOvWjcWLF3fJtVfGNerNFnZJkiRJUofMnj2btddem4MOOogTTjiBKVOmtFp255135oorrgCKCeX69OnDuuuu2+r+Xr16MX/+/OWKZ8cdd+R3v/sdAA888AAzZszo4J01BlvYJUmSJEkdMmPGDE444QTe8Y530L17d372s58xcuTIqmXHjBnDYYcdxuDBg1l77bW57LLL2tz/qU99ipEjR3LDDTdwwQUX1BTPkUceySGHHMI222zD1ltvzYABA5Z2018VRWbWOwatxoYNG5ar8qyNkiRJUr3MmjWL/v07dym3Vd2SJUt4/fXX6dGjB48++ii77747Dz30EGuuuWa9QwOqf2cRMTkzh1Urbwu7JEmSJOltYdGiRYwYMYLXX3+dzOSiiy5qmGS9I0zYJUmSJElvC7169Vql111vyUnnJEmSJElqQCbskiRJkiQ1IBN2SZIkSZIakGPYVVfPPT6fC0ePr3cY0nI5auxu9Q5BkiRJqwFb2CVJkiRJK8WYMWP44Q9/uMz+pqYmBg4cCMCkSZM45phjaq6zX79+vPDCC50WY0tf/vKXeeCBB7qs/rbYwi5JkiRJbwOd3XO1Xr0Khw0bxrBhVZclr4tf/vKXdbu2LeySJEmSpOXW1NTE1ltvzYEHHkj//v0ZOXIkixYtAt7a6j1p0iR23XXXpedNmzaND3/4w2yxxRZcfPHFy9Q7YcIE9t57bwAWLFjAoYceyqBBgxg8eDDXXntt1VguuOACPvShDzFo0CAefPBBAObMmcNnPvMZBg8ezPDhw5k+fTqwbCv/wIEDaWpqYuHChey1114MGTKEgQMHcvXVVwOw6667Ll0qbp111uE73/kOQ4YMYfjw4Tz77LMAPProowwfPpxBgwZxyimnsM4663T4uVYyYZckSZIkdchDDz3EkUceyaxZs1h33XW56KKL2j1n+vTpjB8/nokTJ3LGGWcwe/bsVsueeeaZ9O7dmxkzZjB9+nR22616q3+fPn2YMmUKRxxxxNJk/LTTTuODH/wg06dP56yzzuLgg9OVDuEAACAASURBVA9uM66//OUv9O3bl2nTpjFz5kz22GOPZcosXLiQ4cOHM23aND760Y8u/cHh2GOP5dhjj2XGjBlssskm7T6DWtklXnW17vwn2G3CUfUOo8v0f3BWvUOQJEmSusymm27KjjvuCMBBBx3E+eefz/HHH9/mOfvssw89e/akZ8+ejBgxgnvuuYehQ4dWLXvLLbdw1VVXLf28/vrrVy332c9+FoBtt92W6667DoC77rpraYv8brvtxosvvsjLL7/calyDBg3im9/8JieddBJ77703O++88zJl1lxzzaWt/9tuuy0333wzABMnTuT6668H4Itf/GK7z6BWtrBLkiRJkjokIqp+XmONNXjjjTcAePXVV2s6Z0WstdZaAHTr1o3Fixe3WbYytsr4ttxyS6ZMmbK0W/sZZ5yxzLndu3dfGm8t11pRJuySJEmSpA554oknmDhxIgBXXnklO+20E1CMYZ88eTLAMuPOb7jhBl599VVefPFFJkyYwHbbbddq/R//+Me58MILl35+6aWXao5t55135oorrgCKcfF9+vRh3XXXpV+/fkyZMgWAKVOm8NhjjwEwe/Zs1l57bQ466CBOOOGEpWVqMXz48KX3WdkjYEWZsHeCiBgWEZdGxL8i4pWIeDkipkXEuRGxYb3jkyRJkqSusNVWW3HhhRfSv39/XnrpJY444gigGD9+7LHHMmzYMLp16/aWcwYPHsyIESMYPnw4p556Kn379m21/lNOOYWXXnqJgQMHMmTIEG677baaYxszZgyTJ09m8ODBnHzyyVx22WUA7LfffsyZM4cBAwbw05/+lC233BKAGTNmsP322zN06FBOP/10TjnllJqvdd555/GjH/2IwYMH88gjj9C7d++az21LZGanVLQ6iqIvxDnAicBi4GZgBrAm8BFge2ABcEBm/rFecTaygT165v/161fvMLqMY9glSZLUVWbNmkX//v3rdv2mpib23ntvZs6cWbcYGsWiRYvo2bMnEcFVV13Fb3/7W2644YZlylX7ziJicmZWXcfOSedWzKkUyXoTsHdm3l95MCL2A34DXBcRO2fmP1d+iJIkSZKkrjR58mSOPvpoMpP11luPSy65pFPqtYW9gyKiH/AwkMC2mTmjlXKjgZ8BUzPzg+W+McBpwIjMnFCl3seAyzJzVItjawPHAp8HtiivPQM4PzN/28r1P1Gesz3QC3gKuA74XmbObVG2qXw7ABhTXuc9wJPAxcD3s8UfTER8uqx/G+BdwIvlc7k6M9td06HnZj3zA2M+0F6x1d6MQ6r+eUmSJGk1Vu8Wdi2/5W1hdwx7xx1K0UPh960l66VfAk8DQyNieEcvFhHrAXcBZwFLgEuAy4B3A1dGxHernHMa8BdgB+BPwPnAI8DxwN8jYt0ql+oO/BXYD/hzGX9Piq7//9Oi/q8AN1Ak6zcC/wvcVJY/tKP3KkmSJEmyS/yK2Knc3tJWocxcHBG3AV8EPgr8o4PXOw/4IHBSZn6/eWdE9ACuB74dEddk5tRy/wiKVvKJwJ6VrekRMQq4FDgd+HqL6/QFpgEfz8xXyvKnA/8P+HpEnJWZr5dlvwr8BxiSmc9VVhIRfTp4n5IkSZJqlJmdsiyaul5Herfbwt5xG5XbJ2so21xmk45cKCI2AA4CJlUm6wCZ+SpwEhAUPwo0O6bcHt6y63tmjgOmAge2csljmpP1svxzFC3pvYGtWpRdDLzeYh+Z+UIb9/OViJgUEZOWzF/SWjFJkiRJbejRowcvvvhihxJBrVyZyYsvvkiPHj2W6zxb2Feu5ft23rQd0A3Icvx7S93LbeVgiA9TJNL7R8T+Vc5ZE3h3RGyQmS9W7J+XmY9UKd/8o8P6FfuuoOgG/0BEXAXcDvw9M59v62Yy8xfAL6AYw95WWUmSJEnVbbLJJjz11FM8/3yb//1Wg+jRowebbLJ8bbgm7B33DEWCvGkNZZvLdPRf0gbldrvy1Zp1WpyzBsXkdm1Zh2KiuGZzWym3uNwuXUQxM38UES8AR1K06B9H8aPC7cAJmTmpnWsz4LX/MOmxJ9orpjGds46j6mzMvHpHIEmS3ka6d+/OZpttVu8w1IXsEt9xd5Xb3dsqFBHdgF3Lj5PL7RvlttoPJutV2df8v/wfZ2a08RrR4pyX2ikfmfl4u3fahsz8dWYOp/iBYC/gVxRj9f8aEe9ekbolSZIkaXVmwt5xl1K0Ou8bEQPaKHcYxURucyhmbAd4qdxWa52vNp3/PRRJ/s7LEd8/gPXbia3TZObczLwpMw8HxlEs8fbRlXFtSZIkSXo7MmHvoMx8DPguxfjxP0TENi3LRMRngJ+UH0/KzEXl+3vK7aERsUZF+U1psXRaea3nKMaLD4uIU8tW+5bX2jwiKvvD/LjcXhwRfauUf+eKLDNX1jEiqk9J+V/ldlGVY5IkSZKkGjiGfcWcAbwTOAGYFhF/Be6nSOI/QrH+OcD3M/OXzSdl5j8j4g6KFuh7ImI88B7gUxRroFdreT8a2KK85pci4i7gWYrW+/4UY9sPAB4rr3FrRJwMnA08HBE3lcfWAd4H7ELRrX+PFbj/3wMLIuIfQBPFTPU7l7FMpp0l7yRJkiRJrTNhXwFZrJ9wYkT8H3AURRK8O7BWWeRp4ODMrJa47gP8oNx+DXgYOBH4G/C5Ktd6OSJ2Ab5CsXzbfhSzzj9bnvt14OYW55wbEX+nmBBup/Ja84B/U8zSfmVH7710MvAJ4EPAnsCrwOMUy8z9rGK9dkmSJEnScgrX7Ot8EdGLovV6G2D/zLy+ziE1rLU22iI3OuS8eochvUXTOXvVOwRJkiStJiJicmZWm8vMMexdITPnA3tTLON2dUSsSLdzSZIkSdJqyIS9i2Tmk8AnKcaQD46INesckiRJkiRpFeIY9i6UmdOAafWOQ5IkSZK06rGFXZIkSZKkBmQLu+pq0Ma9meQEX5IkSZK0DFvYJUmSJElqQCbskiRJkiQ1IBN2SZIkSZIakAm7JEmSJEkNyIRdkiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSA1qj1oIR8RGgX+U5mfnrLohJkiRJkqTVXk0Je0RcDmwOTAWWlLsTMGGXJEmSJKkL1NrCPgzYJjOzK4ORJEmSJEmFWsewzwQ27MpAJEmSJEnSm9psYY+IGym6vvcCHoiIe4DXmo9n5qe7Njy93T33+HwuHD2+3mFIWg0cNXa3eocgSZK0XNrrEv/DlRKFJEmSJEl6izYT9sy8fWUFIkmSJEmS3lTrLPHzKbrGV5oHTAK+mZn/6uzAJEmSJElandU6S/x5wFPAlUAAX6BY5m0KcAmwa1cEJ0mSJEnS6qrWWeI/nZk/z8z5mflyZv4C+ERmXg2s34XxSZIkSZK0Wqq1hX1RRHwOuKb8PBJ4tXzv2uzqsHXnP8FuE46qdxidpv+Ds+odgiRJkqS3iVpb2A8EvgQ8Bzxbvj8oInoCR3dRbG8bETEuIjIi+tU7FkmSJEnSqqGmhD0z/5WZn8rMPpn57vL9I5n5Smbe1dVBtqZMgjMi3oiIzdsod1tF2VErMcSVJiLGlPe3ayvH/dFAkiRJklYhtc4SfylVur5n5mGdHtHyW0xxH/8NfLvlwYjYgmJSvOZykiRJkiQ1vFq7xP8R+FP5uhVYF1jQVUEtp2cplpc7NCKqJeRfLrc3rryQJEmSJElaMTW1OGfmtZWfI+K3QN26wldxMfBzYG/g+uadEdEdGAXcDTwA7NvyxIjYFjiYohV+U2Bt4EngD8B3M/OlFuVHAZcChwKPA6cB21L0QLgTOD4zW515LCK+SjHufwuKtexvAE7IzHktyo0ADgB2AjYBugOPAv8HnJuZr1aUbQLeV368LSKW1pOZERGVvSMeqzj+eGb2q8dzaPboRvC5b72NOj5cNqjeEUiSJEmqMOOQGfUOocM6miltAfxXZwaygn4L/IiiNf36iv2fpojzJOADrZx7OEUifztwC0Wvg22BbwCfjIgdMnN+lfP2BvYB/gyMBbYB9gS2i4htMvOFKud8H/gERWv/34AR5fU/AOzWouxJwNYUPzb8CegB7AiMAXaNiN0zc0lZ9jzgM8AuwGVAU4u6Ti+PDwF+Aswt98+tKLMyn4MkSZIkqR21jmGfT9FyGuX2GYqEsiFk5vyIuAoYFRGbZOZT5aHDgZeB31FlfHvpbOCoiuQXgIj4b+CXwJHAuVXO+wzFWvS3VpxzNnAycBhFct7ScGBQZj5Rll8DGA+MiIjtM/OeirJHAo9l5lvmDoiIM4FTKJbWu7q8//MiYj2KhH1cZk6oPCczx5STzQ0BzsvMpjo/B0mSJElSO2qdJb5XZq5bsd2yZTf5BnAx0I0iSSQi3gd8HLgiMxe1dlJmPt4ySS1dQpHsf6KVU6+qTFJLvyi327dyzhnNyXp57cUU3cqXOaecmb/aGvc/LretxdUhK/M5RMRXImJSRExaMr/aJSVJkiRJtU46R0R8OiJ+WL727sqgOiIz/wnMAA6LiHdQdI9/B0Ui36qI6B4RR0fEXRExJyKWlGO+36CYXG/jVk6dVGXfk+V2/RU9JyLeGRHfjoh7I2JeuXRdAi+WRVqLq0NW5nPIzF9k5rDMHNatV7cVD16SJEmS3oZq7RJ/DrAdcEW569iI+EhmttbNvF4uBs4HPkkxGdrkzLyvnXOuphi7/S+KCeCeAV4rjx0HrNXKeXNb7sjMxeWEbq1locucQ7Hc3FvOKSfLG0/RQj2zjPF54PWyyGltxNVRK/M5SJIkSZLaUeukc3sCQzPzDYCIuAy4j9bHhdfL5RTjrMdStAif0VbhiBhGkaTeAnyy7KLefOwdwIldF2qb9qFI1sdl5qGVByJiI4qEvdPU8zkMeO0/THrsifYLSpIk6U1j5rVfRtIqr+Yu8cB6Fe97d3YgnSEz5wLXUCyDtpBi9vi2NM8c/4fKJLW0PdCzcyOsWXNc11U5tksr5zQPBm+tVbut4436HCRJkiRptVVrwn4WcF9EjCtb1ycD3+u6sFbIKRStxZ9oZRmySk3ldtfKnRHxX8CFnR5Z7ZrK7a6VOyPi/VSfqR3eHNv+3g4cb+169X4OkiRJkrTaardLfNkl+g2KJcm2K3eflJnPdGVgHVXOwl5rH+t7gb8Dn42Iu4G7gPdQjIF/CJjdJUG270bgEeAbETGIYvjBeynWPP8T1ZPu2yi+p7MjYiDwEkBmfrc8fitwAnBxRFwLzAfmZuZPadznIEmSJEmrrXZb2Mtx6ydm5tOZ+Yfy1ZDJ+vIqlzH7NPAzoC9wDLATxbrjn+DNSd5WdlwLgd2AK4EBZVyDgTOBg1o5ZxZwCMVkcUeWZc+sOP5X4JsU93Rceez48lhDPgdJkiRJWp1F9aW+WxQqZol/gWIm8YXN+zNzTteFptXBWhttkRsdcl69w1ADazpnr3qHIEmSJHWZiJicmcOqHat1lvjPl9ujKvYl8P4VCUySJEmSJFVXU8KemZt1dSCSJEmSJOlNNSXsEdEdOAL4aLlrAvDzzHRssyRJkiRJXaDWLvE/A7oDF5Wfv1Tu+3JXBCVJkiRJ0uqu1oR9u8wcUvF5fERM64qAtHoZtHFvJjmpmCRJkiQto91l3UpLImLz5g8R8X5gSdeEJEmSJEmSam1hPwG4LSL+VX7uBxzaJRFJkiRJkqSaW9j/DvwceAOYU76f2FVBSZIkSZK0uqs1Yf81sBlwJnABxfrrl3dVUJIkSZIkre5q7RI/MDO3qfh8W0Q80BUBSZIkSZKk2lvYp0TE8OYPEbEDMKlrQpIkSZIkSW22sEfEDCAp1mC/OyKeKD+/D3iw68OTJEmSJGn11F6X+L1XShSSJEmSJOkt2kzYM/PxlRWIJEmSJEl6U61j2CVJkiRJ0kpkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5IkSZLUgEzYJUmSJElqQCbskiRJkiQ1IBN2SZIkSZIakAm7JEmSJEkNyIRdkiRJkqQGZMIuSZIkSVIDWqPeAWj19tzj87lw9Ph6hyFJkqRV1FFjd6t3CFKXsYVdkiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSAnHROdbXu/CfYbcJR9Q5DDaL/g7PqHYIkSZLUMGxhfxuIiIyICTWWHVWWH9W1UUmSJEmSVoQJe4UykW35ei0imiLisojoX+8YJUmSJEmrB7vEV3d6xfvewPbAwcB+EbFTZk6tT1iSJEmSpNWFCXsVmTmm5b6IuAA4GjgOGLWSQ5IkSZIkrWbsEl+7v5Xbd1furBwTHhF7RMSEiJgXEVlRpndEnB0RD0XEqxHxUkT8NSJ2r3ahiHhHRIyOiHsjYkFELCzfHxERNX9nEXFCRLwREX+PiHe1UqZbRDwZES9HxDqtlLmgvMeRFfuyvNc+EfGLiHi6HD5wf0QcWmuMkiRJkqTqbGGvXXNyPamV4yOBPYA/A2OB9wFExHrA34FtgHuB84A+wOeAv0XEEZn58xZ1XQ58EXgS+CWQwL7ARcBOwIFtBVom9ecBXwOuAw7MzFerlc3MJRFxMcUwgAOAi1vU1RM4CHgGuKHF6c339h/gGmAtYH/gkoh4IzMvaytOgEc3gs99a/X8M5xxyIx6hyBJkiSpga2emVI7ImJMxcd1ge2AHYE/Aj9s5bQ9gT0z8y8t9p9Lkaz/AhidmVle41yK5P/8iPhrZjaV+w+gSNbvAz6amQvK/acAtwNfjIg/ZeaVrcTeA7gC+CzwU+DYzHyjnVu+GDgV+CotEnbg8xSJ+VmZ+XqLY0OAXwFfzcwl5fXPA6YDJwHtJuySJEmSpOrsEl/daRWvr1O0as8CfpuZ81s554aWyXpErEnROr0A+FZzsg6QmQ8D5wNrUkxo1+ywcntyc7Jell9IkQQDfLlaAGW391soWuNPysyv1ZCsk5lPA9cD20bEti0OfxV4g2UTeYBFwDeak/WyrgcoWt37t9HF/isRMSkiJi2Zv6RaEUmSJEla7ZmwV5GZ0fwC1gF2AJ4FroiI77Vy2j1V9m0FrA1My8w5VY6PL7cfrNj3IYoEeUKV8rcDS1qUb/YeikR5O+CgzPx+K3G25qJy+9XmHRExCBgOLO0B0MLDmflylf1Pltv1q10oM3+RmcMyc1i3Xt2WM0xJkiRJWj2YsLcjMxdm5j0UXcwXAidGxKZVij5TZV/vcvt0K9U371+vxTlzMvM/VWJZDLxQUW+lDYEtyzjuauV6rcrM2yh6ERwQEb3K3V8pty3H2Deb28r+xeXWbFySJEmSOsgx7DXKzLkR8RBFC/iHeLMVeWmRKqfNK7cbtlLtRi3KNb9/V0R0bzlmPCLWoJiwrlqr9jSKCerGAXdExG6Z+a9WrtuascBPgAMj4jKK7vz/phi73yUGvPYfJj32RFdV39jGVPvdRXobGTOv/TKSJElqlS3sy6e5i3etz+0hinHeQ8rZ4lsaUW6nVOy7r6z/o1XKf5Si1XpKlWNk5m+ALwB9KZL2LWuMs9llZbxf4c3J5n5VOUZdkiRJkrRymLDXKCI+A2wGvA7cXcs5Zbf2K4BewJkt6tscOKas7/KKQ5eU27MjYu2K8msD55Qff9XGNa+hWGKuD3B7RAyoJdby3HnAlRRj5L9LMV6+2mRzkiRJkqQuZpf4Klos6/ZOimXZPll+/nZmPrsc1Z0M7AwcHRHbAbfx5jrsvYCjM/Ox5sKZeWVE7FMevz8irqfobt/8g8HVmXlFWxfMzD+UdfwemBARu2fmtBrjvYhiFvqNgRsz86nluFdJkiRJUicxYa/utIr3S4DngRuBn2bmzctTUWbOiYgPA9+imLjuG8ArFLPK/yAz/1bltAMoZoQ/jDdnbZ8F/C/wsxqv+9eI2LOM+7aI+ERm3lvDefdFxFRgKK1PNidJkiRJ6mJRsTS4RDlD/GxgDrBZLeu4r4i1NtoiNzrkvK68hLTaajpnr3qHIEmSpHZExOTMHFbtmGPY1dIRFGvPX9TVybokSZIkqXV2iRcR0ZsiUd8YOJxiffiL6hqUJEmSJK3mTNgFxXJ1ZwOvAZOBr2Xm/PqGJEmSJEmrNxN2kZlNQNQ7DkmSJEnSmxzDLkmSJElSA7KFXXU1aOPeTHIma0mSJElahi3skiRJkiQ1IBN2SZIkSZIakAm7JEmSJEkNyIRdkiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5IkSZLUgEzYJUmSJElqQCbskiRJkiQ1IBN2SZIkSZIa0Br1DkCrt+cen8+Fo8fXOwxJEnDU2N3qHYIkSapgC7skSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQE56Zzqat35T7DbhKPqHcZqqf+Ds+odgiRJkqQ22MIuSZIkSVIDMmFvABGRVV6vRURTRFwWEf3rHaMkSZIkaeWyS3xjOb3ifW9ge+BgYL+I2Ckzp9YnLEmSJEnSymbC3kAyc0zLfRFxAXA0cBwwaiWHJEmSJEmqE7vEN76/ldt3V+6MiFFl1/lREbFHREyIiHkRkRVlekfE2RHxUES8GhEvRcRfI2L3lheJiF3L+sZExNCI+FNEzI2IRRFxe8T/3979B8tVlgcc/z6GgZQAISgWFCVIKbb+oLWhllAEZOov0CJEwCmaWhmBDqCoo8JgjVo6OAWlgIqMQ5kRCtp02hQHREeCWNIKqQPCIAGUK8UCkUQoJCFAfPrH+95xXXbvr71399y738/MOyf7nvOe8+7m2Xfvs2fPeWNp2/b71PUbI2LvtnULIuLHEbEtIg6bvpdCkiRJkoaHZ9ibbzS5Xttl/TLgLcD1wKXA3gARsStwC/D7wG3AhcCLgOOAb0fEqZn5lQ77WwJ8DPhP4KvAy4Fjge9GxB9k5jqAzHwgIk4C/hn4p4g4NDOfq/v4EvBKYEVm3jTWk/vJnnDcWTMfhncuv3PGjyFJkiRJ08mEvUEiYkXLw12AA4GDgW8C53dp9jbgbZn5rbb6z1GS9cuAUzIz6zE+R0n+L4qIGzJzpK3dkcD7MvOKln6dTPky4IPAX4/WZ+bKiPgycCrwWeCsiFhOue5+da2TJEmSJE2BCXuzfKpD3d3A1Zn5ZJc2q9qT9YjYHjgReAo4azRZB8jM+yLiIuAcSmL9mbb93dKarFeXA5dQboLX7sPAUuDjEfFz4DzgF8BfZOavuvRZkiRJkjQOr2FvkMyM0QLsBLweeBS4KiLO7dLs1g51+wM7Andk5sYO62+syz/ssO55P73PzGdrPxZ1WPc0cDywCbi4Hve9mflwl/4SER+IiLURsXbbk9u6bSZJkiRJQ82EvaEyc1Nm3gocQ0mGPxYRL+uw6SMd6hbWZbekebR+1w7rHu/S5jlgXpd19wI/qv++m1/fKK+jzLwsM5dk5pJ5O3fbpSRJkiQNN38S33CZ+XhErANeV8v/tG/SodkTdblHl93u2bZdrz5B+Vn8Y8CrgLOAbr8I+A2v2voMax94cJq6MYYVC8ffRpO3YrpCSJIkSVI7z7DPDqM/RZ/o/9c6YDNwQL1bfLvD6/KHvXasTvf2mXrMV9flpyPiT3vdtyRJkiQNMxP2houIo4F9gGeBNRNpk5nPAFcBO9N2p/aI2Bc4o+7vaz32bRFwNbANOCEzH6Vcz/4cZaq33XrZvyRJkiQNM38S3yBt07otoEzL9tb6+OyaEE/UJ4BDgNMi4kDKNGuj87DvDJyWmQ/02OXLKfO0n5GZtwNk5h0R8RHKXeWvAN7R4zEkSZIkaSiZsDdL67Ru2yjTo10LXJKZ35nMjjJzY0QcRLme/BjK9GtbKHeV//vMHPPGcOOJiNOBo4F/z8yL2479xYg4AnhnRJyZmV/o5ViSJEmSNIyiZYpuqe+WvGRerv3AToPuhqbKm85JkiRJPYmI/87MJR3XmbBrkHbYc7/cc/mFg+6GGm7kvCMH3QVJkiRpRoyVsHvTOUmSJEmSGsiEXZIkSZKkBjJhlyRJkiSpgUzYJUmSJElqIKd100C95qULWesNxSRJkiTpeTzDLkmSJElSA5mwS5IkSZLUQCbskiRJkiQ1kAm7JEmSJEkNZMIuSZIkSVIDmbBLkiRJktRAJuySJEmSJDWQCbskSZIkSQ1kwi5JkiRJUgOZsEuSJEmS1EAm7JIkSZIkNZAJuyRJkiRJDWTCLkmSJElSA0VmDroPGmIR8SSwbtD9kHrwIuCxQXdC6pFxrNnOGNZsZwwPt70zc/dOK7brd0+kNusyc8mgOyFNVUSsNYY12xnHmu2MYc12xrC68SfxkiRJkiQ1kAm7JEmSJEkNZMKuQbts0B2QemQMay4wjjXbGcOa7YxhdeRN5yRJkiRJaiDPsEuSJEmS1EAm7JIkSZIkNZAJu/ouIvaKiMsj4n8jYmtEjETEhRGxaNB90/Cp8ZddyiNd2iyNiOsiYmNEbImIH0XEhyJi3hjHOSoiboqIJyLiqYj4QUQsn7lnprkkIpZFxMUR8f2I+L8an1eO06YvcRoRyyPi1rr9E7X9UVN9rpqbJhPDEeAn+AAAB3tJREFUEbF4jHE5I+KaMY4zqXiMiHkRcWZ9f2yp75frImLpdDxvzR0R8cKIOCki/jUi7q/x8kRE/EdEvD8iOuZVjsXqldewq68iYl9gDfBiYBVwD/DHwOHAOuDgzNwwuB5q2ETECLArcGGH1U9l5vlt2/858C/A08DXgY3A24H9gZWZ+a4OxzgNuBjYUNs8AywD9gIuyMyPTtfz0dwUEbcDBwBPAQ8BrwSuyswTu2zflziNiPOBj9Q+rQS2B04AdgNOz8xLpv6sNZdMJoYjYjHwAHAH8G8ddndXZq7s0G5S8RgRAXyDEufrgGvrtscD84FjM3PV5J+t5qKIOAX4MvAwsBp4EPht4BhgIWXMfVe2JFeOxZoWmWmx9K0ANwBJGTxa6z9f6y8ddB8tw1WAEWBkgtvuAqwHtgJLWurnU76ISuCEtjaLKR/UG4DFLfWLgPtrm4MG/TpYml0oX2ruBwRwWI2bK7ts25c4BZbW+vuBRW372lD3t7iX522ZO2WSMby4rr9iEvufdDwC765tbgHmt9QfWN8/64GdB/3aWZpRgDdSku0XtNXvQUnek/Ilz2i9Y7FlWoo/iVff1LPrb6IkSF9sW/0pYBPwnohY0OeuSRO1DNgduCYz145WZubTwDn14altbf4K2AG4JDNHWtr8Evi7+vCUmeqw5obMXJ2Z92X9K2wc/YrT0cfn1u1G24xQxvgdgPdNoL8aApOM4amYSjyOvg/Oqe+P0Ta3Uc5s7k55P0lk5o2ZeW1m/qqt/hHg0vrwsJZVjsWaFibs6qfD6/LbHQa7JynfcO8I/Em/O6aht0NEnBgRZ0fEByPi8C7Xlr2xLr/VYd3NwGZgaUTsMME217dtI02HfsWpsa2Z9pKIOLmOzSdHxGvH2HZS8RgR8ylnJjcD359IG2kMz9blcy11jsWaFibs6qf96/LeLuvvq8vf7UNfpFZ7AF8DzqVcy34jcF9EHNq2XdcYzsznKNdcbge8YoJtHqb8smSviNixlycgtZjxOK2/hHop5T4PD3fog+O5psOfUc5cnluXd0TE6oh4eetGU4zHfYF5wE/r+2IibaTniYjtgPfWh61Js2OxpoUJu/ppYV0+0WX9aP2ufeiLNOofgSMoSfsC4DXAVyjXfl0fEQe0bDuVGJ5om4Vd1kuT1Y84dTzXTNoMfBb4I8q1u4uAQyk3+joM+G7b5XMzGfPGsMZzHvBq4LrMvKGl3rFY08KEXdJQy8xP1+vSHs3MzZl5V2aeQrkR4m8BKwbbQ0kaLpm5PjP/JjN/mJmP13Iz5T44PwB+BzhpsL2UICLOoNyd/R7gPQPujuYoE3b103hnEkfrH+9DX6TxjN5A5g0tdVOJ4Ym26fbtuDRZ/YhTx3P1Xf0Z8Vfrw36NzcawOqrTr/0DcDdweGZubNvEsVjTwoRd/bSuLrtdR7NfXXa7xl3qp1/UZevPLrvGcL2GbR/KDWd+OsE2e9b9P5SZm3vtsFTNeJxm5ibg58BOdX07x3PNlOeNzVOMx58A24BX1PfFRNpIAETEhyhzpd9FSdYf6bCZY7GmhQm7+ml1Xb4pIn4j9iJiZ+BgynVr/9XvjkkdjM5W0PpBemNdvqXD9m+gzHKwJjO3TrDNW9u2kaZDv+LU2NYgdBqbYZLxWKfWWkN5PxwykTYSQER8HPgCcDslWV/fZVPHYk2PQU8EbxmuAtwAJHB6W/3na/2lg+6jZXgK8HvAgg71iyl3Vk3g7Jb6XShnd7YCS1rq51P+8EvghLZ97QM8DWwAFrfULwLur20OGvRrYZk9hXLTrQSu7LK+L3FKmRIr6/pFLfWL636ebt2XxTJaJhDDrwNe0KH+iBpXCSxtWzfpeATeXdvcAsxvqT+wvn/WA7sM+vWyNKcAn6wxsxbYbZxtHYst01Ki/odKfRER+1IGqRcDq4AfA6+nzNF+L+UDeMPgeqhhEhErKDeLuRn4GfAkZaqfIykfqNcB78zMZ1raHA2spHwAXgNsBN5BmYplJXBctg2sEXE6cBHlg/PrwDPAMmAv4ILM/OiMPUnNCTXujq4P9wDeTDnDODp/9GOtcdSvOI2IC4APAw/V/W4PHA+8kPLF7CW9PnfNDZOJ4Yi4ifJT3jWU2AJ4Lb+eS/qTmfm3HY4xqXiMiAC+QYnze4Br67bHUz4Djs3MVb08b80dEbEcuIJyKcXFdL73zEhmXtHSxrFYvRv0NwaW4SvAyyhTaT1MGYR+Rpn7etGg+2YZrkKZJuhqyh9qjwPPUr4N/w5lTtXo0u5gSjL/S2ALcCdwJjBvjGO9Hfge5UuBTcBtwPJBvwaW2VEosxXkGGWkQ5u+xCnwl3W7TbXd94CjBv2aWZpVJhPDwPuBbwIjwFOUM5QPUpKXQ8Y5zqTikTIP9pn1/bGlvl+uo+0MvsUygRhO4KYO7RyLLT0Vz7BLkiRJktRA3nROkiRJkqQGMmGXJEmSJKmBTNglSZIkSWogE3ZJkiRJkhrIhF2SJEmSpAYyYZckSZIkqYFM2CVJkiRJaiATdkmSJEmSGsiEXZIkSZKkBjJhlyRJkiSpgf4f3dPEiUBHGcIAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "count_sum_df.drop('airbnb', axis=1).plot(kind = 'barh', legend = True, style = 'ggplot',figsize=(15,5), fontsize= 20, title='NYC Open Data Distribution in five boroughs')" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'NYC - Public Housing')" + ] + }, + "execution_count": 50, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA2oAAALYCAYAAAANXgHBAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdeZyVdfn/8dc1ZxaG7bApO4y7qLiBC6hgpmVp9U0rWzTSXFIsc8v5ZdrJ0kwtzdS01FzSLFMznRbNBUFFxY1hU0EQEFERHBhghplzrt8f9z16GAdmBs459zln3s/H437MzLm39xllzrnOZzN3R0RERERERPJHSdQBREREREREZGMq1ERERERERPKMCjUREREREZE8o0JNREREREQkz6hQExERERERyTMq1ERERERERPKMCjUpCmb2YzO7eTP7q8zMzax0C6+/yMwO3/KEIiIikk/M7DYz+0XUOUQ2RYWatCksTN4zsx5pj51sZk9a4Ckz+2mrc75tZgvMrLuZ9Taza8xssZnVh49fY2YDtjLXbWbWbGaD0x9398vc/eStubaIiIhsLN/eD4T3bQivtcLM7m/9nkCkWKhQk82JAWe1ftCDVdJPBs42s90BzGwb4Nfh483AY8DuwJFAb2Ac8AGw/5aGCV8kjgXqgOM7cd4WtaKJiIgIkGfvB4Az3b0nsDPQB7i6sxcws9hW3F8kJ1SoyeZcCZxnZn1a73D314FLgVvMrAS4FrjP3Z8Avg2MAL7s7nPcPeXu77n7z939X1uR51jgQ+ASYFL6DjNLmNmfw+9bujl+18wWA4+nHXqSmS0zs3fM7LxW5//NzO4wszVmNtvMxra6/35mNsfMVpnZn8ys21Y8FxERkUKRb+8HWu69ErgP2APAzO41s+VmVhe29O3ecmzYI+f3ZvYvM1sLfCr9WmbWy8yeMLNrzcy2NptIJqhQk82ZATwJnLeJ/b8BDPg7cBBwfvj44cB/3L0+w3kmAX8B7gF2NbMx7Rw/ERgFfDbtsU8BOwGfAS5oNe7si+G1+wD/BK5rdb1vhdfageBTvJ9s2dMQEREpKPn2fgCAsPvkscDL4UP/JniN3xZ4Cbir1SnfJCgqewHT0q7Tn6Dl72l3/0HYUigSORVq0p6Lge+HXRk24u5J4CTgy8D33X1NuKs/8E4mQ5jZCIIi6253f5fgD+q32zkt4e5r3X192mM/Cx+rBf4EfCNt3zR3/1f4vO4E9mp1vevcfUn4Cd6lrc4VEREpZnnxfiB0rZl9CLwaXv+cMMet7r7G3RuBBLCXmcXTznvQ3Z8OW/YawseGAFOAe91dH8BKXlGhJpvl7rOAh4HqTeyfHX47O+3hD4AOD+wNZ2ysD7cbN3HYCcBcd38l/Pku4JtmVraZSy9p57G3CP5At1ie9v06oFur8W2bO1dERKRo5dH7AYAfuHsfdx/q7t9y9/fNLGZml4eTlawGFoXHpk9a0tb7gqOASmBz9xOJhAo16YifAqcAQzt4/P+Az6bPELU54YyNPcPte5s47NvA9mHf8+UE3SwGAJ/f3KXbeGx42vcjgGUdyZiBc0VERApdPrwf2JRvAl8i6G4ZB6rCx9PHm7X1vuCPwH+Af3U0p0iuqFCTdrn7fOCvwA86eMqdBJ9a3Wdmu5pZiZn1Dz8p21xh1SYzG0cwLmx/YO9w2wO4m/a7P7Z2UThd8O7AiQTPq6Mmm9kwM+sHXNjJc0VERApa1O8H2tELaCRoxesOXNaJc88EXgMeMrPKDOcS2WIq1KSjLgE6+olYI8EnWvOAR4HVwPMELWDPbcG9JxH0K6919+UtG/Bb4OiwcOqoKcB8gjFuV7n7I504927gEeBNYAGgRTJFRKSrifL9wObcQTAs4W1gDjC9oyeGk4ecCiwFHtSszpIvTBPbiIiIiIiI5Be1qImIiIiIiOQZFWoiIiIiIiJ5RoWaiIiIiIhInlGhJiIiIiIikmdUqImIiIiIiOQZFWoiIiIiIiJ5RoWaiIiIiIhInlGhJiIiIiIikmdUqImIiIiIiOQZFWoiIiIiIiJ5RoWaiIiIiIhInlGhJiIiIiIikmdUqIlkmZndZmYPb2b/d8ysPpeZRERERCS/qVCTLiEsljxtW2FmD5vZrlFnExERERFpTYWadCX/AwaH22eASuCBTR1sZmU5yiUiIiIishEVatKVNLr78nB7Cbga2NXMKs2sKmxp+4aZPW5m64HTzKzEzC4ysyVm1mhmtWb2pfSLmtloM/ufma03s5Vh6118UyHMbC8ze8fMLm1jX5WZpcxsbKvHTwlbAcvN7NAw66fN7DkzW2dmM8xs3wz9nkREREQkYirUpEsys17AcUCtu69P2/VL4AZgN+AfwFnA+cAFwGiCFrj7zWzv8Do9gP8C9cD+wJeB8cCtm7jvIcCTwBXufmHr/e6+CHgUOKnVrpOAO919Q6us1cC+wAfAXWZmHfoFiIiIiEheK406gEgOHZk2aUcPYAnw+VbH/M7d/97yg5mdB1zl7neHD11sZhOA84DjgW+G1zrB3deE55wKPGFmO7r7/LRrHQ3cDZzp7ndsJucfgT+a2Tnu3mBmo4ADgVNaHXeRuz8RXvsSYBowFFjakV+GiIiIiOQvtahJV/IUsHe47Q88BjxiZsPTjpnR8o2Z9QaGAE+3us40ghY3gFHAzJYiLfQMkEo7BmAMQWvcd9sp0gAeBDYAx4Q/nwQ87+6zWh03M+37ZeHXbdu5toiIiIgUABVq0pWsc/f54fYCcDLQGzg17Zi1HbyWd/KYhcAc4EQzq9jsSe5NwB3ASWZWCpwA3NLGoU1t3Ev/pkVERESKgN7USVfmBC1f3dvc6b6aoKXqoFa7DiYougDmAqPDMW8txhP825qb9thK4NMEXRMfaK9YA24GPgWcAfQC7mnvyYiIiIhI8VChJl1JhZkNCrdRwO+AnsBDmznnSuC8cDbIncOxYIcAV4X77wLWAXeEsz9OAG4C7k8fnwbg7isIirVhBBOSbLJYc/fXCLpYXgn8PSwaRURERKSLUKEmXcnhwDvh9hywH/BVd39yM+dcS1AsXQHMIpjV8Vh3fxXA3dcBnyXoQvk8wfiyZ/nkrI2Ex68ADgOGA/e107J2C1BO290eRURERKSImXtHhtqISK6Z2QUEk4/sHHUWEREREcktTc8vkmfMrCcwkmANt08sii0iIiIixU9dH0Xyz3XASwTLAtwUcRYRERERiYC6Pkq0EvFuBDMhDkn7Ophgko/yNrZSgin069rYVhEs9ryIRN17OX0eIiIisnmJeE9gBMFrfcvW8poPYK2+tn6sHlgCLA63t4BlJOqS2Q0uEg0VapIbiXhvYC+Cxab3CrcdgL5ZuuNaYAHwWrjNAZ4jUfdmlu4nIiKCmd0GDHD3ozex/zvAde7es639RSER708wQ/IewI7ATuHXbbNwt2aCpXQWp23zgGkk6hZk4X4iOaNCTbIjEd8TOIJgDbK9gSo2/oQsKu8C04FnCGZnnEGibn20kUREJJPCYmlS2kMfEPztP8/d5+Xg3l2rUEvEBwETgQnh193Ij9f8ZcBU4Knw6ywSdXrjKwVDhZpkRiI+hGD6+8+EXwdGG6jDmgim1f8n8A8Sda9HnEdERLZSWCwNBU4IHxpCsNTKEHcftYlzyty9KUP3Lu5CLREfTlCQtWw7RRuow1YSjP9uKd5eJFHXHG0kkU1ToSZbLhGvAr4FHAeMjjZMxswjWAvtHwRdJfUPRESkwLRVLJnZ0cBDQHeCDxMXAt8ETgHGAecDNwAXAqcSdNN7HfiJuz+Ydp3RwNUEPUbWE3zQd5a717V1bzPbC/gPcKu7X5heqJlZFfAmsL+7z0i7xynALwkKzPHAEwQfgl5G8Ho7BzjV3V/KxO+rQ4JWs+MJWir3yNl9s2sF8HfgL8BUveZLvlGhJp2TiPcDvkbwx3o8+dG1IVveAe4C/kCi7o2ow4iISMe0USz1IijC9nL3PcMCaSHBZBTnAS8S9LD4KvAz4HvADILXuguBMe7+ipn1AN4g6IlxEdAP+CNQ6+7Htr63mR1CUMhd4u5Xh/u/Q1qLmpn9F1jg7mek5X8WmO7uZ5vZoQSF2gvABQSvTb8lmJRjN8/mG7lEvBz4EvAd4LNALGv3it7SZi+5e8fGP9+16PKjZkYdRgRUqElHJOIGfJ7gU8fPEcy+2JU48CTBVPkPkKjbEG0cERHZnLBYOh5oCB/qQTBb4OfdfVZaoXaeu/867by3gZvc/ZK0x54Elrr78WFL11XAMHdfE+4/lKCQ2snd57cUasCNwN3Ame5+R9r1vsPGhdpXCIq9we7eYGajCFrMRodZW65/pLv/NzznIGAaMNzdl2bid7aRRHw/guLs6wTFaJew1Ac8f3DjtfsTFO63An9edPlRqyOOJV2YFryWTUvEKwj6958DtNmnv4sw4FPh9j6J+G3A70nULYw0lYiIbM5TBF0YIZhh+AzgETM7IO2Y9O6GvQm6Gj7d6jrTCD6shOC1cGZLkRZ6BkgRTKAxP3xsDPAA8E13v7ednA8C1wPHEBR2JwHPu/usVselt/IsC79uS7AszdYLps4/Nbz/7hm5ZoG5ofmLqfDbMeH2y6rqmpuAaxZdftSyTZ8pkh1a8Fo+KRHvRyL+E4IuIX+kaxdprW1DMI7hdRLxP5GI7xB1IBERadM6d58fbi8AJwO9+bh4g2Apl47oSPej9GMWErSKnWhmFZs9KZjA5A7gJDMrJfiA9JY2Dk2f6KTlXlv/Pi4RryQRPy/M/Gu6aJGWclt5b/LQfVs93JvgNX9hVXXNrVXVNXo/JDmlQk0+lohvSyJ+DUH3kJ9TODM3RqGUoFvIPBLx21SwiYjkPSdo+ere5k731QQtVQe12nUwQdEFMBcYHY55azGe4P3U3LTHVgKfJph58oH2ijXgZoJeG2cAvYB72nsyWy0RLycRn0yw5uiVBN01u6wZvnNtE6WbGtpRDpwIzK6qrvlnVXVN64JOJCtUqEnQ3SERTxD8sT6LTbyISZtKCWbAUsEmIpJfKsxsULiNAn4H9CSY+XFTrgTOM7NvmNnOZnYJwcLNV4X77wLWAXeY2Wgzm0Awfvl+d5+ffiF3X0FQrA0D7t9cseburxF0sbwS+HtYNGZHIh4jEf8uwYyW1wGDs3avAnJV09e26cBhBnwBmFFVXXNnVXXN8CzHki5OhVpXloiXkIifTNCn/qcEL2CyZVoKtjkk4r8kEVexKyISrcMJZkh8B3gO2A/4qrs/uZlzriUolq4AZgFfBo5191cB3H0dweyHvQlmfnwQeJZgXNcnhMXaYcBw4L52WtZuIWi5aavb49YLXvO/SdDydzMwMiv3KUANXrbgeR+1WydOMYLJal6rqq65rKq6pld7J4hsCc362FUl4hMIpvfdO+ooRWoxcDaJuvujDiIiIvnPzC4AvuvuO2f84on4QcDvKZ41TzPqb80Tp/yo+bSJW3GJ9wg+8P7DosuPSrV3sEhHqVDraoJZna4ETqO410DLF/8Bvk+ibn67R4qISJdjZj0JWrceBS519+szdvHgNf+XwGT0mt8md1IHNV777jIGZKIL6NPAdxddftRrGbiWiAq1LiURP4ygS0VVxEm6mkbgMuBSEnXJqMOIiEj+CNdd+wbBwtjfcPfmjFw4Ef8M8AfUxXGz3vP4i/s3/n5MBi/ZAFwM/GbR5UfpNV+2igq1riD4RO0K4HvoE7UoPQN8i0TdoqiDiIhIkQrGSF/NxssQyCZc1vTNp/+QPLr1TJ+Z8Dxw0qLLj5qdhWtLF6FCrdgFY9FuR61o+aIOOJ1E3V+iDiIiIkUmER9DMDPlLlFHKQTurB7V+KeyBioqs3SLDcAFiy4/6posXV+KnAq1YpaInwv8CohFHUU+4U5gMom6NVEHERGRApeIlwAXAD8DyiJOUzBmpaqmHb3hsoNzcKt7CVrX6nNwLykiKtSKUSLeg2As2nFRR5HNWgAcQ6JuZtRBRESkQAXDG/4KfD7qKIXmpA3nvfp4at+9cnS7ecCxiy4/ak67R4qEtI5asUnEdyRY00VFWv7bAXiaRPzoqIOIiEgBSsSHAFNRkdZpTR5b8nhqnz1zeMtdgeerqmu+nsN7SoFToVZMEvGjgBfQOimFpCfwIIn4D6MOIiIiBSQRHw1MR+uhbpFHUmMXgOV6grUewF+qqmuuqKqu0eRu0i51fSwWifhpwA2o+C5kvwd+QKIuM1Mzi4hIcUrEjwD+DvSOOkohcscP23DVkoU+ZESEMf5MMG6tKcIMkuf0pr4YJOI/Bm5E/z0L3elADYm4XnhFRKRtifiJwL9QkbbF6uhRG3GRBnA88FBVdU2PiHNIHtMb+0KXiF8JXBp1DMmYzwBPkoj3jzqIiIjkmUT858CtQGnUUQrZnckj6qLOEPos8ERVdc02UQeR/KSuj4UqEY8BNwHfjTqKZEUtcDiJuveiDiIiIhFLxEuBPxG0wshWcGf96Mabm+rpnk8tkm8Ahy+6/KjFUQeR/KIWtUIU/MH+KyrSitlogpa1gVEHERGRCCXiRtCKpiItAxb4kJfzrEgD2Al4rKq6ZlDUQSS/qFArNB//wT426iiSdaOAx0jEB0QdREREInMFcELUIYrFb5uPKY86wybsCPyvqrpGQx/kIyrUCs+v0R/srmR34H8k4v2iDiIiIjmWiJ8LnBd1jGKRdFtekzpw36hzbMbuwH+rqmu2qsXPzG4zM0/bVpjZw2a2a4ZySo6oUCskifj/A86OOobk3F7AP0jE8/VTQBERybRE/ATgyqhjFJOpqdGvpSjJ9/e+Y4Caquqa7lt5nf8Bg8PtM0Al8MCmDjazsq28n2RBvv/PKi0S8ZOBy6KOIZE5BLg56hAiIpIDifjnCIY5aFHkDLqy+bihUWfooIOB+6qqa2JbcY1Gd18ebi8BVwO7mlmlmVWFLW3fMLPHzWw9cJqZlZjZRWa2xMwazazWzL7UcsG08441s0fNbJ2ZzTGzI9KOucjMlpvZtmmP/cXMXjIzfeDcSSrUCkEi/n8E66RJ13YCifhFUYcQEZEsSsQPAO5FU/Bn1FrvNne2b7dj1Dk64Ugy1KJqZr2A44Bad1+ftuuXwA3AbsA/gLOA84ELCCY1ewC438z2bnXJS4FrCXr8vADcY2Y9w32XEcxieWt4728DXwK+6e4bMvF8uhIVavkuER8F3AlszacqUjx+RiJ+XNQhREQkCxLxXYEaQIsgZ9hfk4cW4nI3Z1dV10zawnOPNLN6M6sHVgMTgW+2OuZ37v53d1/o7ksJxkNe5e53u/vr7n4xMJVPjpO82t0fcvc3gB8D/YC9Adw9STBD6cFmdgVwHXCuu8/bwufRpalQy2eJeC/gfqBne4dKl2HAbSTiB0YdREREMigR7wP8G9CsfxnmTtN1zV/aI+ocW+imquqaLXnNf4qgeNob2B94DHjEzIanHTOj5Rsz6w0MAZ5udZ1pBC1u6Wamfb8s/PpRV0d3f4uPW+eecvffb0F+QYVavrsV0Aw90lo3gslFtMaaiEjxuAmoijpEMXqbAS+vJF6oBXAFcH9Vdc2QTp63zt3nh9sLwMlAb+DUtGPWdvBa3urnpo92uLfsa11TTACSwHAzq+h4bEmnQi1fJeLnAF+JOobkrYEELWsaaC4iUugS8UnA16KOUaxuaP5iKuoMW2kw8EBVdc3WzMzoQApoczZJd19N0Dp2UKtdBwNzOnMjMzsG+BZwGBAnGAsnW0CFWj5KxA8BfhV1DMl7RwI/jDqEiIhshUR8e+B3UccoVim3lfcmD83ntdM6an/g5504vsLMBoXbKIL/x3oCD23mnCuB88LZIHc2s0sIZp2+qqM3NbOhwB+BH7v7UwRr/37fzA7vRHYJqVDLN4l4X+AeNNuTdMzlJOKtZ2MSEZFCkIiXAncBvaKOUqxm+M61TZQWy7Tw51dV13yqg8ceDrwTbs8B+wFfdfcnN3POtQTF2hXALODLwLHu/mpHbmhmwTh6eJlgOQDcfSpwOXC7mRVq99PI2MddSyUvJOK3AVs6w490TfOAMSTq1kUdREREOiER/xlwcdQxitnXGi+a87yPaj0ZRiFbCuyx6PKj6qIOItmnFrV8kogfiYo06bxdCT+5EhGRApGIjwcujDpGMWvwsgVFVqQBDAN+G3UIyQ0VavkimIr/D1HHkIJ1Kon4xKhDiIhIByTivYE/ozVSs+qfyXFLos6QJZOqqmu+EHUIyT4VavnjSmB4u0eJbNr14XgHERHJb9cC20Udopi5k7qm+Su7RJ0ji66rqq5pcwZHKR4q1PJBIv4pNl7XQmRL7E6wwKSIiOSroMujhjlk2fvEX17GgMFR58iiEUB11CEku1SoRS0RjwHXA1oPSzIhQSI+NOoQIiLShmDtS40vyoGbm49qiDpDDpxfVV2jltkipkIteicBo6IOIUWjJ/CbqEOIiEibvg2MjTpEsXNn9R3JI4ph7bT2dEOv+UVNhVqUEvHuwM+ijiFF52sk4p+OOoSIiKRJxHsAl0UdoyuY7VUzG6iojDpHjvxfVXXNZ6IOIdmhQi1a5wLF3H9aoqM3AyIi+eUcYEjUIbqC3zR/pastIH5NVXWN3tMXIf1HjUoivi1wftQxpGjtTyL++ahDiIgIkIj3JfhwVrKsyWNLHk/ts2fUOXJsFHBc1CEk81SoRedioKt94iO59dOoA4iICAA/AuJRh+gKHkmNXQDWFSdo+0lVdU1XfN5FTYVaFBLx4Wg6fsm+/UnEPxd1CBGRLi0RHwj8IOoYXYE7flXzV7ePOkdEdgOOjTqEZJYKtWicDZRFHUK6BLWqiYhEqxrQwsQ5UEeP2oU+ZETUOSKkVrUio0It1xLxPsApUceQLuMAEvEjow4hItIlBbM7nxR1jK7izuQRdVFniNhewBejDiGZo0Itx748dNDxd/buVZuEZNRZpMs4J+oAIiJd1NeB3lGH6ArcWX9T89F7RZ0jD1RHHUAyR4VaDo2+fXRsfnn5+Vf07ztuTNXwdy7p33fKGrPVUeeSonc4ifgOUYcQEemCNB49Rxb4kJfr6a6iGA6sqq5RwVokVKjl1peAEQBJs2H39u41cfzIYfbdQdtOWVxaujTibFK8DHW3FRHJrUR8L+CAqGN0Fb9tPqY86gx5RB8QFAkVarl15iceMev1fGW3iUcNGzz488MGP/tMZbdZEeSS4nciibgmsBERyR29Wc6RpNvymtSB+0SdI498q6q6RhPYFAEVajky+vbRI4BDN3mAWWxJWdm40wZtu8e4kcNm/bl3z2c1jk0yaFvgmKhDiIh0CcEkIt+KOkZXMS01el6KkljUOfJInGB8pBQ4FWq5cxxBF7R21ZeU7PGr/v3Gjaka/s7PNY5NMue0qAOIiHQRx6EFrnPmiubjhkWdIQ+pRbcIqFDLnU5/spE0G/Y3jWOTzPkUifh2UYcQEekC9CY5R9Z6t7mzfbsdo86Rhw6oqq7ZLeoQsnVUqOXA6NtH7wTsu8UX2Hgc2/Tp3So0jk221P9FHUBEpKgl4qOBA6OO0VX8NXnoe1FnyGMa8lDgVKjlRmb6CQfj2A48ZfDAPcaNHDbrrt49p2scm3SSCjURkez6RtQBugp3mq5r/tIeUefIY3rNL3Aq1HIj4wM660tK9ri8f78Dx1QNf+cX/ftOqTdbk+l7SFE6iER8QNQhRESK2BFRB+gq3mbAyyuJ9486Rx4bU1Vdo/F7BUyFWpaNvn30HkDW+ggnzYb9tXevieNGDvNTBm0zZWlp7O1s3UuKQgw4OuoQIiJFKRHvx9YMdZBOuaH5i6moMxQAtaoVMBVq2fe5nNzFrPf0ysqJnxs2ZNDRwwY/+1y3itk5ua8UIv3RFhHJjsPQe6ucSLmtvDd5qIri9n056gCy5fTHJPsOzendzGJvlZWNO3nwwN3Hjxg26y+9NI5NPuEz4Ro/IiKSWYdHHaCrmOE71zZRWh51jgIwoaq6pk/UIWTLqFDLotG3j44BB0d1/zWxkj0uG9DvwLFVw5dd2r/vUxrHJqFKYFzUIUREipDGp+XIVU1f2ybqDAWiFBgfdQjZMirUsmsfoHfUIZrNht/Tu9eEcSOHpU4dqHFsAuiPtohIZgXrVG4fdYyuoMHLFjzvo7RGWMdF1mggW0eFWnYdGnWAjZjFn+1eOfFzw4YM/MLQwc++0K1iTtSRJDIq1EREMkvdHnPkn8lxS6LOUGAOijqAbBkVatl1aNQB2mRWuqi8bNxJgwfuNn7EsJn39Oo5PQWaOalrOZBE3KIOISJSRNTtMQfcSV3T/JVdos5RYParqq7ReL4CpEItS6Ien9ZRa2Ile146oN+BY6qGL72sX9+n1prVR51JcqIPMCrqECIiRSH44OuwqGN0Be8Tf3kZAwZHnaPAVAJjog4hnadCLXt2BuJRh+ioZrMRf4n3mnDgyGHJ0wZuM+Xt0tiyqDNJ1qn7o4hIZmwHaOHlHLi5+aiGqDMUKHV/LEAq1LKnMFsrzOLPdK+ceOSwIdt+YejgZzSOrahp5kcRkczYKeoAXYE7a+5IHqG107bM3lEHkM5ToZY9u0YdYKsE49jGnzR44G4HjRg686+9ej6ncWxFZ4+oA4iIFIkdow7QFcz2qlcaqKiMOkeB0ri+AqRCLXsKs0WtDatjsT1/MaDfAWOqhi/5pcaxFRP90RYRyQy1qOXAb5q/EvmSRwVMr/kFSIVa9hR2i1obms1G3h2OY/vewG2mLCuNvRN1JtkqcRJxDcgWEdl6KtSyrMljSx5P7bNn1DkKWK+q6pohUYeQzimNOkAxGn37aKMIC7WPmMWf7l458bOVQ5q3a2p+5uIPVvYZ29CohSfzmDvNTcSWraLX+4t94No5qRHU+vaVr6Z22P5R6FDBbWa3AZPSHvoAmA6c5+7zshBbRKRQqOtjlj2SGrsAbHjUOQrcLoAmiysgKtSyYxjQM+oQWWdWurC8bPyJgwfSO5mcedaquvVfWVO/X4laaiPhTlMTpUs/oNeKt3zQ+jmpkcxMbd99lldts8gHDWmmdAQwotVpOwJPd+I2/wNOCL8fAlwJPMAmuvqaWZm7N3XyqYiIFI5EPEYw66Nk0VXNX90+6gxFYBfgiahDSJAUIuAAACAASURBVMepUMuOLvfJ2upYbM+fD+jHL/v3fevrq9e89f1VdWO6u/eIOlexcadxA2VLV9D7g0WpQetne5W9mtqhx2wfOXCxDxycomQ7OveGobNvLhrdfXn4/XIzuxp4yMwqgYHAQuCbwCkEs0qeb2Y3ABcCpwLbAq8DP3H3BwHMrCo87yvA9wimEF4EnOXuj4bHXARMBvZ09/fCx/5C8KJzoLtv6OTzEBHJlCqgLOoQxexD7zFzoQ9Rt8et1+XenxY6FWrZsU3UAaLSbDbyz/HeI+/q3evDg9Y3TLl4xcqdByeTGgfVCe6sa6Ds7fe9zwdv+uDG2b5dyczU9r3m+Mhtl/qAQU7JDsAOGbpd6xa2DjOzXsBxQK27rzezll2/BM4Dvgs0AWcB5xMUYTOA44H7zWyMu7+SdslLw+POAH4C3GNmI929HrgM+AxwK3C0mX0b+BKwr4o0EYmY3vxm2Z3JI+qizlAkuuz700KlQi07+kUdIGpu1mda98qJnxk+pGn7puZnLl6xsu+YxsaimQlza7lTv56Kt9/zPqsW+JDGWV4Vm5navtfc1MiBy+g/EGwncjM4vbN/tI+0j2f97AEsAT7f6pjfufvfW34ws/OAq9z97vChi81sAkExd3zaeVe7+0PhOT8Gvk2w7ss0d0+a2fHAq2Z2BUHRd67GxolIHtBEIlnkzvqbmo/eK+ocRWJA1AGkc1SoZUeXL9Q+Ylb2ZnnZ+O8MGUg8mXz1hys/bDimfm2XGMfmTt1aui171/t+ON+HbJiV2q50pm/fe25qxKD36LcN+TFVbmcLtacIujAC9CVo/XrEzA5IO2ZGyzdm1ptgLFvrcXDT+GSBNzPt+5bBztu2PODub5nZWcBtQI27/76T2UVEskEz6WXRAh/ycj3dx0edo0j0jzqAdI4KtexQodaGulhsr59t059LB/R76xur17x1ZhGMY0s5q9ZSuWy596t7w4c21aa2K53pO8TnpkYMWUnvfkA86ozt6Owf7XXuPr/lBzM7GagjKN5uCR9e28FreaufP5p0xN097ErZuqCfACSB4WZW4e6NncguIpINBf06lu9+23xMedQZioha1AqMCrXsUKG2Gc1mI++M9x755969Pjx4fcOUi/J8HFvKbUU9lcuXef+6131Y08zU9uW1qe36zPMRQ+ro2ZegZalQbW0h6UAK6N7mTvfVZraMYIKQx9J2HQzM6cyNzOwY4FvAYcAdBGPhztmCzCIimaRCLUuSbstrUgfuE3WOIqJCrcCoUMsOFWod4GZ9pobj2HZoanrm4hUr++7buCGScWxJt3dX0/3dZT5g9Ws+PBkWY31f8+FD6uk+gOL949bZQq3CzAaF3/cFziRYiuKhzZxzJXCJmb0BvEgwLu0QYN+O3tTMhgJ/BH7s7k+Z2QnA42b2L3f/XyefQ6eE68cNcPejs3yfscALwHbuviib9xKRjFKhliXTUqPnpSgZ1P6R0kHxquqa0kWXH9UcdRDpGBVq2VHILSy5Z1a2oLx8/KQhg+iTTL569soPG79cv3Y/A2v/5I5xx5OULF9Nj3eX+oA181IjUrW+fUVtart+r/uwoevoNpBgevmuprwTf7QrgMP5eIFsB9YAP3f3J8Np9iEoxGaknXct0Au4guB3/BpwrLu/2ur65xPMIrkRC/pA3ga8DFwN4O5Tzexy4HYz29PdP+hA/pbrVREsB7Cfu8/Y/NEiIu1SoZYlVzQfNyzqDEWokuC1WwqACrXs0HoqW+jDWGyvn27Tn18M6Lfom6vXLJ68qm5spXub3epacyeVpOSdD+n53hLftn5uakSq1rernJnavt98HzqskfLBQN52sYxQDOhIoTaUoEXsAmA+wUQfE4GlAO6+yMzeavm5hbungJ+H2yeE500B3m/1eHqhfkQb510EXNSB3CIiWXPoiKGrG81mx9yTMUiWuidLnVQpnixz9zInVebu5S0bToVDRcopd6fC3bq5W0WwlVR4yrq5xyrcSypSXlLuxCrcY+XupRXB46Xl7mXl4dcyvKzcKS93Ly+mibrWere5s307zRadebGoA0jHqVDLDjUpb6Ums6rb472r7ujda9Uh6xteuGjFyl0GJZOD3Ek2E3t7FT3fX+wD185JjfSZvn33WantBizwIUObKB1KUFBIx7X7R9vM+hB0VzzC3VvGmr1F0FWv5ZgngZHAlWZ2JQTFlpn1B64Lz+8PvEkwXf+fwvNuIyj4JprZ5PBy24UF3G4EXScnAOsJxrmd3bLodku3ROBR4EcEY+X+AUx293Ud/QWY2cUE674NAlYBj7j7tzdx7JEEC3jvQdCq+ALwQ3efG+6vop0FvNOucw3BYrkvAJrFUqQAfRCLDQF2jzoHAMEHYxuADQZN4dZcAk0l7s0lkIxBc8w9WQrJWFhUluGpMvdUmeMbFZVBIZm+WcVGRaWXdEsFX8MiMpZWTJYGX2kpLMvKgq/lZVDWXq+ZvyYPfQ9QoZZ5eu9fQPQfKztUqGWIm/V9qnvlxCOGD2k6+cmSh/d/tdfghrJeG5rKejRtKOvR3LOsZ/N+Zb5+77J3VzSVrpnbVNbdkrFKS5Z2i6VKKmKpWFmpl5SVY6VlWEkFmP6fb2VNiXeki2l9uH3RzKa5e0MbxxwDvEqwKHV60dENeAn4FbCaoPvkTWa2OCz6zgJ2BuYBPw7Ped/MBhMsB3ALwZprZQSLYj9oZuPCljoICsB3wusOB/4GvE4w2Ui7zOzY8PrfAGoJWgoP3MwpPQgKrJkEXUh+AjxkZru1Wnx7kwt4m9lwgoLyj8D1wJ7AbzqSV0TyTv60UJiVEPzN7eZ8PLVuMtgXVaq2uTcTFJVNBk0lH39t7taUWv+Tu3zDWTvbs5RUaDhJBq2KeesZlyWP6U1rdqhQyzSzsps/5UcPfHfVlL0Wrpy4pZdJlpQ2JmPd1jaXdlvXXNp9fXNp98am0u6NTWU9mptLuzc3lXVPNpf28KbSSpKllTSXditJxrqVJkvKS1OxsrKUlXZLlZRWuJVUgnUHeoYvjAWrf8ra/aPt7s1m9h2CwuJUM3uZYG20e939ufCYlWaWBNa0tHiFj79N0CrW4g9mdhhBYfSYu9eZ2QaCqf8/Os/MTgdedfcL0h77NrASGAs8Hz68GvieuyeBuWZ2L/BpOlioEbQCvkPQitYELGbjMXatfxf3pf9sZieGGfYnWB+uxSYX8AZOD+/zA3d3YJ6Z7cwmuoeKSF7TG98tYVZK+D7UCYvJ0Odn2NNVy2uPGP7eBQ2v7/T16e8MOnAfzPJ9uZuCMDBpeo9aQFSoZYf+EWTJpV+PTfzRvcknx873Q7fk/FiquSKWqq8ob6rP2MycyZLy9c2xivqg8KtsaC6tbGgq69HUXNq9KSz8mpvKutNc2p3m0kqaY91iyVhFLBkrL0uVlJWlSkq7ucW6hcVfD6A7ltOPPju0Fpm732dmNQQtWOOAI4FzzexCd79sU+eZWQyoJpgoZCjBpCTlwJPt3HIMMMHM6tvYtwMfF2pzwiKtxTLggE+eskn3ErTqLTSz/wL/Af65qTXazGwHgoLqAIIFw0vCbUSrQze3gPcoYHpYpLV4thOZRSR/dHTtSOmgL01PxQFiqeZuo17786E7vPnAytm7fXfKqj47j8NM66ptnab2D5F8oUItO1SoZdEVX40deu79ySkHvOZb3LKWSbHUhspYakNlRVNmJlFy8GSsor451m1dsrRyfXNpZUNTaff04q85aPXr7s2llTSXVpIs7VaajFXEkiXlpamSsoqw1a+l+OuJWeUmbpecfONhyU3s+2S2oMvjo+F2iZndDCTM7KpW3f7SnQecS1AM1RJ0obyMj4uWTSkBasLzW3s37fvWLzpOJwbUu/sSM9uFoBXucODXwE/N7AB3b+sN2MMEE6acBrxN8O99DkHxma4jC3iLSOHTDHoZtNPb/lqPRvZIf6y8aW2/fV69duK6ym2WzNzjtMXrug8an+MPNIvJpl6rJQ+pUMsOFWpZ9utjYhPP+kdyykFz86NYyyQDK0029ixNNvZkQ11GrulYKhmrqG8urVzXHBR/jU2l3RuaS7vXBetHb7E5BH9HuhEOYOeT4zUOBh5y9zvho+n2dwY+TDumrfNeAr4GvBV2ScyasACtAWrCaf+XE0wC8kj6ceHEKLsCZ7j7E+Fj+9L5v6VzgWPNzNJa1TY3Lk5E8tfqqAMUkxMfTb4H7NLWvu7r3x9+4Au/GP5h7+3n1u5x6vqm8l4dXo9TApNvPEzvUQuICrXsUDeIHPjt/8UmNseST06ctWXdILsSw0tKkw29S5MNvWlclb7rrQ6dHxQo9xJMFDKT4BPksQQzLT7m7i1vVBYBh5jZn4FGd19BMLHHcWZ2MLAC+D6wHcG6aKSdt384Y2I9wTi064FTgL+a2a8Ipu/fnqB4O9fdM/Ipdjj2rhR4Lrz3cQStYW+0cfiq8DmcYmZLCLpyXknnP5y5kaCV8RozuwEYTTBDpIgUHrWoZUhlg6/e4R3aLb76rH5z1CHPVLN827EvztvlW71SsfKdc5GvCLQ1EZjkMXXDyY7l7R8imXD9F2KH/m8vmxJ1jgL2YfuHAEEBM52g++IUYDZB98W72XiR6osJZl5cwMfrov2CYDzZvwlmcVwL3NXq+lcRtKrNCc8b4e7LCFq1UgTjxmYTFG+NdHBcXQd9SDA1/1RgFnAscIy7L2x9YDjT5HEEszTOCvNc1Nk87r6YYJbMIwlmyjybYByfiBQetahlyNempV62TiwgPui9GWMmTj1nx+3ffOhpPLms/TO6vKXtHyL5xFyzdGbc6NtH/xC4OuocXclJ/01OOfKl4usGmQNPjpo391NRhxARKVSjbx99NlpeIyP+fEXzgvIkO2zJucmS0obXdzruuXcGjdtbM0Ru0v8m33jYEVGHkI5Ti1p26FOdHLv1s7GJD+9nT7mmSe6s96IOICJS4NSLJgPGvJF6ZUuLNGiZIfKuiYc8fUGq78p5U9jEzL1d3KKoA0jnqFDLjrejDtAV3XF4bMKDB9pUFWudsiDqACIiBe4T3aSl8054PLU+E9cpa17bd5+Zv5s47rnE+z3WvvMM6jqWblHUAaRzVKhlh1rUInL3p2IT7jvIpnkwrknaNz/qACIiBU6F2lbqu8bfG7ySsZm8ZmXDimEHvPCL8fu+/OvXyjasfimT1y5gi6IOIJ2jQi07VKhF6G8TYofcM6HkGRVrHaJCTURkK9ROqn0XyEhrUFd1/BOpOQZl2bh2n9ULdz3kmf+37+6zb32xJNn4WjbuUUAWRR1AOkeFWhbUTqptJJjCWyLywEElB//5UyXPOnR4MecuSl0fRUS23qKoAxSqkpQnx8/xnbJ9n4Hvvzhm4tRzdt7+zQeftlSyqw5RWRR1AOkcFWrZMzvqAF3dQweWHHTb4SXPuxYg35R1qPVXRCQT1P1xC02s9RdjztBc3MvAqhY/ctDEqecMGLJs2hTcO7pETTHYgF7zC44Ktex5uf1DJNv+vV/JuFs+UzLDgwWMZWNvjpo3V4OsRUS23utRByhUX5+SiuX6niXeXLHr63+ZeMjTP6LfyjldZYbIxZNvPEyv+QVGhVr2qFDLE4+MKTnwps+VvOTBp0nyMY1PExHJjBejDlCIhnzgb/VZy75R3b+seV2fvWdeH8wQWb/sadyLeWz7oqgDSOepUMsezTCURx7fu+SAG44uedWhK3xq1lGvRB1ARKRIzIg6QCH6zqOphQYWdY7KhhXDDphx6UFjXv71G+WNdcVadM+JOoB0ngq17JkHNEQdQj42ZXTJfr/7Ykmt679Li2lRBxARKRKvAaujDlFIypq9Yc+FvmfUOdLFVy/c5eBnfzxmj9k3v1SSbJwXdZ4MezrqAPnKzG4zs4dzcJ+xZuZmVtXRc1SoZUntpNpmoDbqHLKxabuXjL3m/0pmu6ZSbgamRx1CRKQY1E6qddT9sVOOet5fLIF+Uedoy7bvv7zvxKnn7LLDgn88Y6nk0qjzZEi7hZqZbWNmN5jZIjNrNLN3zewxMzsi7ZhFZnZeZ29uZk+a2XWdPW9LmFlVWBBldG2+KKhQyy6NU8tDz44qGXPVMSXzHNZGnSVCr4yaN7crP38RkUxT98dO+NL0VDzqDJtjYCOXPDp+4tRzthmybOoU3FdFnWkrLJp842EdWZLgPmB/4LvAzsDRwL+B/lnMJpuhQi27no06gLTthV1K9rn8qyXzHeqjzhIRdXsUEcms56IOUCh2ettf69HIHlHn6Ihghsh7Jh7y9Pkl/T6YPQX3Qhw+0e5rvpn1AQ4Bqt39MXd/y91fcPer3P2e8JgngZHAlWGLlYeP9zezv5jZUjNbb2azzezEtGvfBkwEJrec19L9z8x2M7MaM1tjZu+F1xmUfq6ZPWxmZ5nZ22a2ysz+ZGbdO/MLMLOLzeytsKVwuZndsZljjzSzqeG9VprZf81sVNr+lha7Y83sUTNbZ2Zz0lse064zz8wazGwqQfHbKSrUsuvRqAPIpr28Y8lelx5XstBhTdRZIqBCTUQks54AklGHKAQnPpp8L+oMnVXWvD6+d+0NE8c9d/HKnvVLpxXYDJFTO3BMfbh90cy6beKYY4ClwCXA4HAD6EYwid7RwO7Ab4GbzOzT4f6zCBov/pR23hIzGww8BcwiaMk7HOgJPGhm6TXKIcAe4f7jgC+H1+wQMzsWOA84A9gpzPn8Zk7pAVwTZjoUqAMeMrPyVsddClwL7AW8ANxjZj3Dew4H/kFQC+wN/A64oqOZW6hQy6LaSbVvA3OjziGbNnP7ktE//0bJYg/+EXYlKtRERDKodlLtSjb/5k+AygZfvcM70U3Jv7UqG1YO2X/GLw8e+9KV88sbPyyU7q6PtHeAuzcD3wGOBz40s2fN7CozOyDtmJUEH0ascffl7r48fPxtd7/S3V9x9zfd/Q/A/cA3wv11BEskrWs5z92TwOnAq+5+gbvPdfeZwLcJCqT08WWrge+FxzwC3At8mo4bCbwDPOLui919hrtvcrycu98Xbm+EmU4Etgtzpbva3R9y9zeAHxOMudw73Hc6sBj4gbvPc/e/ATd2IjOgQi0X2v3HIdGaVVWye+JbsbcdPow6S468Pmre3HejDiEiUoT+HXWAfPe1aamXLWixKGi917y188HPXjh2j1l/fCmWbMznD+Vfn3zjYYs6cqC73wcMAb5A8P/yeGC6mf14c+eZWczMLjSzmWb2gZnVE7S+jWjnlmOACWZW37IBS8J9O6QdNycs7FosA7btyHMK3UvQ6rfQzG4xs6+aWcVmns8OZna3mS0ws9XAuwQ1U+vnM7NVJtJyjQKmu3v6IuOdHhKlQi37/hV1AGnf3BG220UnxJanYGXUWXLggagDiIgUKRVq7TjiJR8WdYZM2nbFK/tOmHrOrjssuD9fZ4j8b2cOdvcGd3/U3S9x9/HALUCijW5/6c4DzgWuJGjp2pug29/mzoGgDqkJj0/fdgLSp8tvah2TTtQw7r4E2AU4jaB17tfAi2a2qQ8MHga2CY8/ANiHYLbs1s/no1xpBVlGaysVatn3JF1zDFTBeX2Y7XrhpNiKFKyIOkuW/S3qACIiRepFoODGX+XKmDdSr5QnN2opKQrBDJGPjZ849exth779VL7NELm1PbvmAKUELVIQdGGMtTrmYOAhd7/T3V8BFvDJiTPaOu8lgjFtb7n7/FZbRt87hwVojbufDewX3veg1seZWX9gV+Ayd/+fu88FehH8DjpjLnCAmaUv6H5gZ3OrUMuy2km1G1D3x4KxYIjt/P9OjH2YMt6POkuWvDlq3tyXog4hIlKMwvXU/hN1jnx1wuOpdVFnyKYST5bv8sZfJx4y7fyS/h/MyocZIhsIJrlpVzhz4+NmdryZ7Wlm25nZV4EfAY+5e8uC7ouAQ8xsqJkNCB97Hfi0mR1sZrsC1xGM6Uq3CNg/nDFxQDhZyPVAHPirmR1gZtub2eFm9gcz67U1T7zVc/uOmZ1sZqPNbDuCMWdNwBttHL6K4AP7U8xsRzObSDC2rLmTt70RqAKuMbNdzOwrwPc6m12FWm7cH3UA6biFg2zHC06MrU5ZUX4qem/UAUREipx6LbShT72/P3gl+0WdIxfKkuvje9X+fuK46Rev6rkm0hki/z75xsM6umZqPTCdYDbFKcBs4DLgboKZFltcDAwnaDVr+VD7FwQT6fybYBbHtcBdra5/FUGr2pzwvBHuvoygVStF8AHHbILirTHcMuVDgrXhphLMMHkscIy7L2x9oAf/rY4D9gyPvR64qLN53H0xwTi9I4FXgbOB6s4Gt43HuEk2jL59dCXBbDN5vbijbGzY+77wyluS3WL+0fSzxWDsqHlzX4w6hIhIsRp9++hSginMB0adJZ98/5/JJw+Z7YdGnSMKq3uNeGPmHqfVbajoM7b9ozNq4uQbD3sqx/eUDFKLWg7UTqpdD9wTdQ7pnKXb2HbnnhLbkLSPZvIpdG+qSBMRya7aSbXNwF+izpFPSlKeHD/Hd4o6R1R6r1m808HPXjh29KybXo41N+RqhsjXVaQVPhVquXNr1AGk85b1t5FnnxpLJkvIx5mcOkvdHkVEcuOOqAPkk4m1/mLMGRp1jqhts2LmPhOmnbvrjvPve8ZSySXtn7FVbs7y9SUHVKjlSO2k2ucJ+t5KgVnez4b/8NQYzSUsjjrLVro96gAiIl1B7aTal4HaqHPki+OeSun9ZsjARix9fPzEqWcPHLr0ySkEi0hnWhN6zS8K+oeTW3+KOoBsmXf72rAffC9W1lzCW1Fn2UKPj5o3N58X5BQRKTZqVQMGf+CL+9YzJuoc+abEk+W7zL934iHTzo/1X1H7JO7rM3j5f06+8bBinBCty1Ghllt38slF+6RArIjb4O+fHqtoivGJWYIKwPUdOSicbvcPZrbUzDaY2dtm9kczK6oFSkVEcuBPQFFPR98RJz6aetPA2j+yaypLro/vNevGQ8dPv+jDnmuWTM3QDJHq9lgkVKjlUO2k2veAB6LOIVvug9426MzTYz02xFgQdZZOWAI82N5B4doiM4A9gEnAjsDxBItCvmBmVdmLKCJSXGon1X5AF+9JU9bsDXsu9D2jzlEIujWuGrz/i5cfMvbFXy2oaFj1wlZc6i20fm/RUKGWe5dFHUC2zqpetu3kM2K9G0vbXCgxH/121Ly5yQ4cdz3BWiaHu/tj7r7Y3Z8ADg8fvx7AzJ40s+vSTzSz28zs4bSfzcx+ZGYLzGy9mdWa2fGtzhlqZveY2apwqzGzndL2J8xslpl9PbzOGjP7R9oCm4SLVz5mZqvNrN7MXjWzT23JL0lEJAt+A3Tk729ROup5f7EE+kWdo5D0rl+y00HTf7Lf6NqbXok1N8zZgkvcOvnGw6Jat00yTIVajtVOqn0VeCjqHLJ16nraNpPPiPVrLOW1qLO0ow74Q3sHmVk/gkUZr3f3jbrqhD/fAHzOzPp28L6/IFhccjKwG/BL4CYzOyq8X3fgCaABmAiMI1hr8H/hvhZVBAtPfhn4DLAPcGna/rvD8/YH9gYS4TVFRCJXO6n2TbpwT5ovTU/1jjpDodrmg5l7T5h27qid5v/9WUs1d3QysyY0y3hRUaEWjV9EHUC23uoe1v/0ybFtG8rI50k6/jBq3tw1HThuJ4IxBJt6LnPC/e2ug2NmPYBzgJPd/T/uvtDd7wb+SFC4AXw9vN6J7j7T3ecBpwE9gaPTLlcKfCc85lmCovPTaftHAo+6+zx3n+/uD4THiYjkiyujDhCFnd7213o0MjrqHIXMwIYvfWLcxKlnDx629Imn8NQH7Zxyy+QbDyuG5YQkpEItAuFU/Y9GnUO2Xn1363v65NiQ9eVsSfeEbFsLXJ3ha27owDG7Ad2A/4TdEevNrB44HdghPGYMsB2wJm1/HdA37RiAt9y9Lu3nZcC2aT//BrjZzB43swvNbNcte1oiItkRvuZPiTpHrp34aFKzDmZIiafKdp7/9wkTpp1fNmDFzCm06vkSakANAUVHhVp09I+pSKyttPjpk2ND11YwK+osrfx61Ly573Tw2DcAJyiy2rIb0AwsJBiv1noGr7K071v+rnyBoDtiy7Y7QffFlmNeabV/b2Bn4Ka0a7WeJdXTro+7J8Js/wDGAzPN7KRNPksRkWj8OOoAuVTZ4Kt3eId9o85RbEqTDb33nHXTxPHTf7K615rF03BPH/94w+QbD3s7snCSFSrUIlI7qfYp4Kmoc0hmrOtm8TMmx0bWVzAz6iyhd+lEdxsPFtz8D3BGqzFiLePJJgMPhK1b7wODW11ir7Tv5wCNwMiwO2L61rIO3UsEs0quaOOYTi3+6e5vuPu17n4UcAtwcmfOFxHJttpJtc8A90edI1e+Ni31skGPqHMUq26NHw7a78VfHbzfi5cvqmhY+TxQD1wedS7JPBVq0aomaCGQIrC+wnqdcWZs+zXdeDXqLMBPR82bW9/JcyYDMYIJPQ4zs+FmdihBN90m4AfhcY8TTCzyRTPbxcx+AwxvuYi7rwGuAq4ys5PMbEcz29vMvmdmp4aH3UVQTD5oZhPNbDszm2Bmv06f+XFzzKzSzK43s0PNrMrMDgAOhrzshioiUk0XWUv1iJdca2/mQK/6pTscNP2i/fd9+TeXTL7xsPejziOZp0ItQrWTap8Fbo86h2ROQ7n1PP3M2E513Xk5whhz2YLFLt19ITAWmE2wOPsigpkZU8De7r48PPTWtO1pYA2fnNXsIoIZGM8Lr/cocCxB18mWmSQnAG8C9wLzCP4t9AVWdTByMjz+NuC1MMOzBBOZiIjkldpJtW+wcdfuojTmjdSr5cmNxhpLdi3rU7fghqhDSHaYuxp0ojT69tHbErzJ7BN1Fsmc8iZff93vk3P6rGVMBLf/4qh5czOyBISZnQn8Gviqu/8zE9cUEemqRt8+ehtgPlC009Zfc1PzAJzz9wAAIABJREFUM0NWMj7qHF3ISaPmze3SC6sXM7WoRax2Uu17wMVR55DM2lBmlZPPiO2+siczcnzrKZkq0gDc/TrgBGB3M6vM1HVFRLqi2km177PxWpBFpU+9vz94JftFnaMLeQn1zCpqKtTyww2QF+OaJIOaSq3bmafHRq/oxfM5umUjH69TljHu/jd3/6W7r8/0tUVEOiIch+pmNjbqLBnwG8ibiacy6oTHU7Nt41mAJXuagJNHzZubijqIZI8KtTxQO6k2CZwZdQ7JvOZSq/j+6bF93ovzXA5u99NR8+bOzsF9RKSLM7PbwsLpljb2/Src93AU2TYnzP1wq8dyWgTWTqptBk4hGP9bNMw9NX6Od2gyKMmIy0bNmxvleHjJARVqeaJ2Uu00gskZpMgkY1b2g+/Fxizvw7NZvM10gpkWRURyZQnwNTP7aBp2MysFvg0sjixVAQgXwb4m6hyZdOhMnxFzhkado4t4mSLuQisfU6GWX84iGGQsRSZVYqU/PC2237J+PJOFy68HvjNq3tzk/2fvvsPkqss2jn+f3U0jZRN6NaFnI4cOSsdOE5WiosAgAvJawAKKSFlRFOkCooCUAVFUUBFBJZQAAQkdDrJLEdJ7QjZ9N7vzvH/8zsKwbLIlM3tmZu/Pdc2VzZx2J5A585xf63JPEZHCeQl4Hfh83nuHAiuBCe1vmNkeZna/mc03s8VmNtHM9so/UdKidYqZ/dnMlpnZm2Z2bCfXHG1m481suZm9YmafyDtHtZndaGZvmdkKM3vdzL5vZlXJ9nogAxyaXM+TJUjeSk7xdPLehCLk7sw5wGvd3LfkfeHRnL5T9o0Wwj2/Xyz10N/pH1UJiTPxUuAY+sk6K/1Nrspqvnty9Yemrc/jBT71j+oaG14t8DlFRLrjRuDEvN+fCNzMe9cIHU5Y8mM/YE/gBeA+M1uvw7nOA+4GdgL+CNxkZh/osM+FwFXJPk8Dd5jZsGRbFTCDUDjWAT8Czga+kmy/FPgT8ACwSfJ6IskEcFDy3hFFyP0+cSZeAZxAWGqkrG2ywKeOWprKLMf90U/qGhsqcoyjvJ8KtRITZ+JnCE/ZpALlqqz6jJOq95q8IRMLdMrHgF8W6FwiIj31e2B3M9vWzDYmFDu35O/g7g+5+23u3uDujcC3CK1uB3c4123u/jt3f4OwFmMrYb3FfFe4+z3u/jqhCFsX2Dm5zip3P8/dn3b3ye7+J+A3hAeguPtSQg+EZnefnbxagPaFghck7y0sQu5OJeupnt+dfUvZV8bn3jSwtHP0A88CF6UdQvqOCrXSdAnhiZ9UIDer+v6J1fv8b2MeW8tTNRG6P1TUgHQRKR/u/jZhsfkTCd0KJ7j7e8anmdmGZnadmb1mZk3AEmBDoGOr0zutBO7eSiigNlzdPsDM5Nd39jGzU83sGTObZ2ZLge90cp1uKXDuNfkZcF9vMpaCmlZv3vEtj9LO0Q8sAY6ra2xoTTuI9B0VaiUozsROGIw9P+0sUiRm9sMTqvd9bVMe7eUZcsAxdY0NbxYylohIL9xEuGedSOeTYmWBPQhF096EFrDpwMAO+3Xs9u+8/3vKO/u4e3v3yvYxaF8gTNBxC/Cp5DrXdnKd7ipk7tVK7vnHAVN6mTNVhz3lz1RBx+6gUlgOHFvX2NCQdhDpWyrUSlSciWcRbnxqLalUZnZOpmb/hs15pBdHn1XX2PDPgmcSEem5BwkTHKwP/K2T7fsCV7v7ve7+X0LLwCZFyLEvMMndr3H355KuiFt32KcFqO7kPTp5v69yE2fihcDReVnKxmeezI1IO0M/cH5dY8Pf0w4hfU+FWgmLM/E/CU/ypIKdf1zNAfFo60mxdltdY8MlRQskItIDScvWjsCW7t7cyS6vAcea2Tgz2wO4g+IUJK8Bu5rZwcmYuXOBAzrsMxnYwcy2N7P1zWwAMJcwdu1TZraRmdX2cW4A4kz8NGV2z992hr86tBl1eyyuO4Gfph1C0qFCrcTFmfgqwgxXUsF+8qXqA57fKkwJ3YWngVOKHEdEpEfcfYm7L17N5hOBYYSJEO4gdI+cXIQY1xFmdfw94bNyDHBZh31uABqAZwhjyfZJxpWdBpxEGPd2dx/nfkecia8FflXMaxTSV8a3zU07Q4V7iTAW3bvcUyqSvdvFW0pVlI2qCIO1D087ixTXmXe2TdjjdT9wNZtnAbvXNTbMXM12EREpc8k9/07gc2lnWZMhK33xLVe0VRsM7Xpv6YUFhHv+5LSDSHrUolYG4kycA75EeKonFeySo6oPfHL7TrtBLgc+pyJNRKSy5d3zC7WMS1EcPTH3goq0olkBHKEiTVSolYk4Ey8DDgOmdrWvlLfLj6g+YOK493SDbAY+W9fYMCmlSCIi0ofiTLyS0IumZGf5++RzvlnaGSpUM/CZusaG3s4KLRVEhVoZiTPxbOCTvLt2jFSoqz5TfeDDkU0gTPv8+brGhvEpRxIRkT4UZ+K3CQuIz0g7S0e7vZ57cWDb+2bUlLXXQmhJ0z1fABVqZSfOxK8SZrGalnYWKa5fH1a93x/2rzpKU/KKiPRPcSaeChxIifWmOe6h3LK0M1SgVcDRdY0NZbv4uRSeCrUyFGfiNwjF2uSUo0jxtALHXHD9f1WkiYj0Y8k9f3/gf2lnARi51OdtspA90s5RYVqBY/RgVjpSoVam4kz8FuGD+420s0jBtQJfjDPxn9MOIiIi6Ysz8RTCPb8x7SzHPpR7xWBA2jkqSBtwfF1jw11pB5HSo0KtjMWZeBqhZS31D24pmMXAYXEm1ge2iIi8I87EMwn3/JfSymDuuX1e8W3Sun4FWkaY0fkPaQeR0qRCrcwlH9wHApoRsPxNAfaJM/G/0w4iIiKlJ87Ec4GPAJ0t41J0B77kz1Q7mu2xMGYA+9U1NtyTdhApXSrUKkCciecQnrLdmnYW6bWngA/FmfjltIOIiEjpijPxQuATwA19fe0vPJrT98bCeB74UF1jw/NpB5HSZu6edgYpoCgbfRe4GKhOO4t0213AcXEmXpF2EBERKR9RNjoNuJw+uOdvssCnXnl92xYGVuxrVbi/A1+qa2zQzJnSJT0ZqTBxJr4cOARYlHYW6ZZfAEerSBMRkZ6KM/FVwMH0wT3/hAdyb6lIW2tXEsakqUiTblGLWoWKstG2hKc2Y9POIp1aAJwUZ+K/pR1ERETKW5SNtgP+BOxUjPPXtHrz7y5pW1oF6xXj/P1AE/B/mjREekotahUqzsSvA3sC2bSzyPs8AEQq0kREpBDiTPwa4Z5/GVDwJ/CHPeXPqEjrtUeBHVWkSW+oRa0fiLLRkcB16EM2bS3Aj4DL4kysf3giIlJwUTb6OOEh7aaFOufNl7fGQ5uJCnW+fmIVcB5wcV1jQy7tMFKeVKj1E1E22oRQrH067Sz9VCPwpTgTa4YnEREpqigbrQtcDxy5tufaZoa/+rNb27Zf+1T9yqvAl+saG55NO4iUN3V97IKZjTEzN7Pd086yNuJMPCvOxIcDxwIL087Tj7QQZuHcTUWaiIj0hTgTL4wz8VHAMcDMtTnXV8a3zS1Mqn6hDbgG2FVFmhRC2RVqZnZLUjjd2Mm2XyTb/pFGtjVJcv+jw3t9XgTGmfh2YBxwM6Cm+OL6F2Es2g/iTLw87TAiItK/xJn4DsKkYpcBrT09fshKX7zNLHYteLDK9DCwS11jw7fqGht0z5eCKLtCLTEN+LyZDW1/w8xqgOOBqamlKhNxJp4TZ+ITgd2AB9POU4HeBA6PM/HByQBvERGRVMSZeEmcic8AdgYm9OTYoyfmXjAY2vWe/dpbwFF1jQ0frWtsiNMOI5WlXAu1l4DXgc/nvXcosJK8DyEz28PM7jez+Wa22Mwmmtle+SdKWrROMbM/m9kyM3vTzI7t5JqjzWy8mS03s1fM7BN556g2sxvN7C0zW2Fmr5vZ982sKtleD2SAQ5PruZkdSPjHDfB08t6EIuRerTgTvxBn4o8Txq019uRY6dRy4BxgXJyJ70k7jIiISLs4E/83zsQfIXSHfKM7x3zyOd+suKnK2jKSe35dY8NdaYeRylSuhRrAjcCJeb8/kdCdL392lOHAbcB+hGlrXwDuM7OOsx+eB9xNWH/kj8BNZvaBDvtcCFyV7PM0cIeZDUu2VQEzCIVjHWFmv7OBryTbLyWsb/IAsEnyeiLJBHBQ8t4RRcjdpTgT/wOIgG8A83p6vLCU8N94mzgTXxhn4ua0A4mIiHQm6Q5ZR/iO8ubq9tv19dyLA9vYus+ClY9m4AZgu7rGhgvrGhtWph1IKlfZzfpoZrcA6wPHEQbI7ggsAaYA2wIXAOu7+2GdHGvJMWe6+++S9xy4yN1/mPy+BlgMnOLuvzOzMYSWr1Pd/bpkn82A6cB+7j5xNTkvAnZ394/n587PlXfuPdz9mTX8mXuce7V/gV2IstFQwof3d4CtenuefuJt4Grgl3Em1gQtIiJSVqJs1D5s5Bxgy/xtV17X+p9NF7JXpwf2T03Ab4Bf1jU2zEo7jPQPNWkH6C13f9vM/kpoSVsETHD3qaGmCcxsQ+AnwEeAjYBqYAjQsdXppbzztprZPGDD1e3DuzMovbOPmZ0KnASMTq4xgFA89liBc/dInImXAddE2eha4LPAGaAP6g7mAJcDv44z8ZK0w4iIiPRGnIlbgZuibHQr4QH46cBOI5f6vE0WUtazXRfQDOBK4Lq6xgbd86VPlW2hlriJsKjjUkI3wI6yhELnO8BkQnP1g8DADvut6vB75/3dQt/Zx909KQjbx6B9gfCP+AxCl8bFhG6En+vhn6cYuXslzsQ54C/AX6JstBfwPcKfp5y7y66tiYTutb+PM7G6OoiISEVICrabgZujbLTfEY/nDjc4Le1cKXuZ8FD29rrGhpa0w0j/VO6F2oOEdarWB/7WyfZ9gdPc/V4AM9uIMBas0PYFJrn7Ne1vmFnHft0thJaxju/Ryft9lbtb4kz8H+CoKBttDnwB+BL0m+l6pwK3ArfEmfh/aYcREREppjgTP0aGxxrG1l1M6BZ5EmGK//5gIfAH4Ja6xobVDkkR6StlXaglLVs7EsbadTaBw2vAsWY2iTC97MW8WxwV0mvACWZ2MGEmpS8CBxDGMLWbDBxsZtsDCwh9necCK4BPmdlkYKW7N/Vh7h6JM/F0wlosl0XZaDtCwXYMsF2qwQpvGaHwvxl4KM7E5TWQU0REZC3VNTbMI7nnN4yt2wP4TPLaIdVghbcEuIcw6ds/1XompaSsCzUAd19Tf+ETgeuBZwnjyuqBDYoQ4zrC+iS/Bwy4i/Dhlj8r5Q3AgcAzwDDgI+4+wcxOI3TbPB94LNmnr3L3WrI+WD1QH2Wj3YCjgI8S1mbr2EJYDmLCAtX/AibGmVgf1CIiIkBdY8PThBmvz2kYW7cVcDihaNuP8rznv0FYoPpfwH2auVFKVdnN+iilLcpGI4D9CROhfISwdEApjmubDzwE/Bv4V5yJZ3axv4iIiORpGFu3LnAIsA9hOaGIMJlaqZlMKMweBh6ua2yYnm4cke5RoSZFFWWjUYQnbjsC45LX9sDgPozxFvA8YT26F4AX4kw8rQ+vLyIiUvEaxtYNJvQw2jPvtQ2ht1FfaCPc8xuARsKEII/WNTZM7u0JkyWZzicUpBsS1pu9D/ixu6vgk6JSoSZ9LspGVYQ12toLt80JE8Ks1+HXId043QrCWL95ya/TCROATCN8WL8UZ+KmAv8RREREpBsaxtYNJSwvlP/aIu/n9YFByWtNBd1ywtj//NdCwqLdjYTi7PW6xobO5izoFTPbkjCb91vAucDrwNbAhYR15/Zy98mFup5IRyrUpGRF2WgIUAvkCE/J2l/v/D7OxB2XKBAREZEy1DC2roawFNGgvF9XAovSmOTDzO4jDOHY1t2X572/DqFoe8HdDzWzCcDL7v7NvH1uAdZ398OS3xtwJvA1YFPCOLlfuPvv8o7ZjDDHwaeSt54Avu3uryfb6wlzAvyUUCxuSJgB/SR3n5/sExGWjNqDMPTkf8k5Hi7YX4z0mbKfTEQqV5yJVxBazERERKTC1TU2tAKthNazVJnZusBBwDn5RRqAuy83s2uBn5jZqG6e8qeEIusbwKvAXsANZva2u9+bFH8PE4qzAwizfZ8BPGBmdXkZxhCWSvocYWbwOwhF29eS7b8HXiR0O20ljBvUZCllSoWaiIiIiMh7bUvoitmwmu2vJNu37epEZjYU+C7wSXd/LHn7LTPbk1C43UtY2smAr3jS3c3MvkYY1nEYYfkACN/dT0iWc8LMrge+kne50cCl7t6Y/P6Nrv+oUqpUqImIiIiI9E53umSOI0yi9i8zyx9zNIAwIyWE5Y22BJaEXpLvWIcwLq7dlPYiLTGT0AWy3eXAb80sQ+gWeVde0SZlRoWaiIiIiMh7vQ44ocj6ayfbxxG6Fr5FGDvfcSKU/GUK2pcp+jRhwrN8q/L2eYHQstbRwk72b+d558fd683sduBgwli3883sVHe/qZPzSolToSYiIiIiksfdF5rZv4Cvm9kVnUwm8g3gr+7eZGbzgE06nGIn3m0tewVoBka7+0OrueRzwDHAfHdftJbZXycUmleZ2a+BkwAVamWoFBciFhERERFJ2zeAasKEHh81sy3M7EBgPKFl67Rkv4eAg83scDPb3swuJyxBAIC7LwEuBS41sxPNbBsz29nMTjWzU5LdbgfmAHeb2QFmtqWZ7W9ml5lZl+PgAMxsiJn9yswONLMxZvYhYF9CoShlSIWaiIiIiEgH7v4WsDvwX+A2QgvZw4Sujju7++xk15vyXo8DS3h/d8lzgXrCTI7/JRR7RxK6TpK02O1PWBfuz4S14bLAKMKacd3Rlux/C2Fmyb8C/yFMZCJlSOuoiYiIiIh0g5l9k7DW2dHu/ve080hlU6EmIiIiItJNZvZ5wkyMV7q71nuVolGhJiIiIiIiUmI0Rk1ERERERKTEqFATEREREREpMSrURERERERESowKNRERERERkRKjQk1ERERERKTEqFATEREREREpMSrURERERERESowKNRERERERkRKjQk1ERERERKTEqFATEREREREpMSrURERERERESowKNRERERERkRKjQk1ERERERKTEqFATEREREREpMSrURERERERESowKNRERERERkRKjQk1ERERERKTEqFATEREREREpMSrURERERERESowKNRERERERkRKjQk1ERERERKTEqFATEREREREpMSrUREREREQSZnaCmU1MO4eICrV+zswmm9lcMxua995JZjbBgkfN7PwOxxxvZv8zs3XMbISZXWlmU81safL+lWa2fi/zTDCzkzq8d6CZTe/m8fVm9rsu9tnXzJ4wsyYzW2hmj5vZHr3J29Nri4iIlLr++N1ApBSpUBOAauD0jm+6uwMnAd8xsw8CmNkGwGXJ+63Ag8AHgYOAEcBewAJgzz5J3kNmNgL4B3A1sC6wGfBjoDnNXCIiIiWm33w3EClVKtQE4BLgDDMb2XGDu78GXAjcaGZVwFXAXe7+MHA88AHgc+7+irvn3H2uu//E3e8rVlgz29TM/p60hr1hZicn7x8EnA18IXmC92Inh2+X/Ln+4O5t7r7C3e9395eSc5yQtLBdk7S4NZrZxwp0bRERkXJR0d8NzKzWzG40s1lmNsPMfmpm1cXKJ9IbNWkHkJLwDDABOAM4p5PtlwNHAXcCuxOekgF8HPiXuy/tg4z57gBeBjYFxgLjzex/7v4vM/sZsI27H7uaY18D2swsm5znSXd/u8M+HyL8WdcHjgD+YmZbuvvCtby2iIhIuaj07wa3AHOBbYChhN4204Dr+jS1yBqoRU3anQd8K+m+8B7u3gacCHwO+Ja7L0k2rQfMKkKWq8xsUfuL8OEJgJltAewD/MDdV7r7C8BvCU/wuuTui4F9AQduAOYlT+A2ytttLnClu69y9z8CrwKHru21RUREykxFfjdI7vmHAN9292XuPhe4AvhiEXKL9JoKNQHA3V8mfOidtZrt/01+/G/e2wuATbp7DTM7O+l2sNTMfrOGXU9z95HtL+CwvG2bAgvzbggAUwhjzbrF3Rvc/QR33xzYITnnlXm7zEj64Oeff9NCXFtERKRcVPB3g9HAAGBWXuF3HbBhd3OL9AUVapLvfOBkul94PAB8Kn9WqDVx95+5+7DkdWovM84E1jWz4XnvfQCY0X6ZnpzM3RsJ3R92yHt7MzOzDuefWehri4iIlIFK/G4wjTCJ2Pp5xd8Id/8gIiVEhZq8w93fAP4InNbNQ24jfNjdZWZjzazKzNZLno4dUqSM04AngJ+b2WAz2xH4KtA+7e4cYEwyuPl9kpzfM7PNk99vARwDPJm324bAaWY2wMyOBuqA+9b22iIiIuWmEr8buPss4H7gsmQpgSoz29rMDihGPpHe0hdK6egCwqDaLrl7M2HQcCMwHlgMPEWYhGNSsQISCqsxhCdofwXOd/cHkm1/Tn5dYGbPdXLsEsJkIZPMbBmhQHsZ+F7ePpOAbYH5hFmtjnL3BQW4toiISDmqxO8GxwMDgVeAtwmTonS7y6ZIX7D3DsUR6d/M7ATgJHffN+0sIiIiItJ/qUVNRERERESkxKhQExERERERKTHq+igiIiIiIlJi1KImIiIiIiJSYlSoiYiIiIiIlBgVaiIiIiIiIiVGhZqIiIiIiEiJUaEmIiIiIiJSYlSoiYiIiIiIlBgVaiIiIiIiIiVGhZqIiIiIiEiJUaEmIiIiIiJSYlSoiYiIiIiIlBgVaiIiIiIiIiVGhZqIiIiIiEiJUaEmUsLM7BYz+8catp9gZkv7MpOIiIiIFJ8KNZEuJMWS573mm9k/zGxs2tlEREREpDKpUBPpngeATZLXJ4EhwF9Xt7OZDeijXCIiIiJSgVSoiXRPs7vPTl7PAVcAY81siJmNSVrajjGzh8xsBfA1M6sys3PNbJqZNZtZbGafyT+pmUVm9oCZrTCzhUnrXe3qQpjZTmY2y8wu7GTbGDPLmdnuHd4/OWkFHGhmByZZP2Zmk8xsuZk9Y2a7FujvSUREREQKQIWaSA+Z2XDgC0Ds7ivyNv0cuBYYB/wNOB04E/gBEBFa4P5iZjsn5xkK/BtYCuwJfA7YG7hpNdfdD5gAXOzuP+q43d0nA+OBEztsOhG4zd1bOmQ9C9gVWADcbmbWrb8AERERESm6mrQDiJSJg/Im7RgKTAMO6bDP1e5+Z/tvzOwM4FJ3/33y1nlmtj9wBnAs8KXkXMe5+5LkmFOAh81sG3d/I+9chwG/B77p7reuIecNwA1m9l13X2lmdcCHgZM77Heuuz+cnPsCYCKwGTC9O38ZIiIiIlJcalET6Z5HgZ2T157Ag8D9ZrZF3j7PtP9gZiOATYHHO5xnIqHFDaAOeKm9SEs8AeTy9gHYjdAa99UuijSAu4EW4Ijk9ycCT7n7yx32eynv55nJrxt2cW4RERER6SMq1ES6Z7m7v5G8ngZOAkYAp+Tts6yb5/Ie7vMW8ArwFTMbtMaD3FcBtwInmlkNcBxwYye7rurkWvo8EBERESkR+mIm0jtOaPlap9ON7osJLVX7dNi0L6HoAmgAomTMW7u9Cf8uG/LeWwh8jNA18a9dFWvAb4GPAF8HhgN3dPWHEREREZHSokJNpHsGmdnGyasOuBoYBtyzhmMuAc5IZoPcLhkLth9wabL9dmA5cGsy++P+wHXAX/LHpwG4+3xCsbY5YUKS1RZr7v4qoYvlJcCdSdEoIiIiImVEk4lI6aqvrQEGJK+BeT+vBBZR39SyhqML7ePArOTnJUAjcLS7TzCzMas55ipCi9bFwEbAq8CR7v4igLsvN7NPAVcCTxH+XHcTZot8H3efb2YfBR4C7jKzI9eQ90Zgfzrv9igiIlJSomxUBdQS7ptG6LWSI4y7XgGsiDNxW3oJRfqeuXdnuIxIAdXXDgY+CIwhdOfbjDDxRvvPmxBaq7qaLj4UbOHVBLwNzABez3u9QX3TitWeoUKZ2Q8Ik49sl3YWERHpv6JsVAOMBrbJe20FrE8ozNpf3bnvNwOzCUMLZhLu+e2/TgVejjPxwsL/KUTSoUJNiqu+dj3enS1xl+TX7em71lzn3eLtecIsjI9T3zSnj67fp8xsGOGGOB640N1/lXIkERHpJ6JsNIQwM/JehKVhPki4Jw3owxjTgBfyXi8Cb8aZWF94peyoUJPCqq8dAXwU+BTwCWDrdAOt1v8I47jaC7dXuti/LJjZLcAxwN+BY9y9Nd1EIiJSqaJstBFh8qq9CcXZTvRtUdZdCwjL6owH7o8z8dSU84h0iwo1WTv1tVWEdb4+SSjO9qI8xz5OJ0wM8nfgoT4e/yYiIlIWomy0C3A4cBjh/t9Vd8VS9BpwP6FweyDOxMtTziPSKRVq0jv1tbsBXwK+SBhfVkkWEwq2PwH/VtEmIiL9WZSN9gSOBo4Etkw5TqEtIzyovQP4Z5yJdc+XkqFCTbot6eKQ2X/5it1/NWfe0Wnn6SOLgNuAa6lvakw7jIiISF+IstFI4Djga4SxZv3BQkLBdnOciZ9JO4yICjVZoygbGXAwcApwKFBj7gufmTxt2MAwZX5/8hBwLXA39U0a+yUiIhUnykYfJhRnXwCGpBwnTS8Rls+5Xa1skhYVatKpZD2To4CzCYOD3+Pc+QsnfX7J0g/1ebDSMAO4AbiO+qbZaYcRERFZG8kU+scC36aTe34/NxO4GvhNnIkXpR1G+hcVavIeyYf1l4AfAmNXt9+mq1on/Xv6zP5aqLVbQWhhu4j6pvlphxEREemJ5J5/HPAjSneW5lKxFPgtcIVmjZS+okJNAIiy0UAgA5xFWIhyzdxbHp06Y+moXG7dYmcrA0uBXwKXUt+kp20iIlLSVKCtlVZCwXZ+nInnph1GKpsKtX4uGYOWAS4AtujJscc1LX70+wsX7V+UYOXpbeAy4JfUNy1NO4xUJs2CAAAgAElEQVSIiEhHUTb6EuGerwJt7SwBLgIujzPxyrTDSGVSodaPRdloB+DXwL69OX5oLvfKk1OmjytsqoowB/ge9U23px1EREQEIMpGHwR+BRyQdpYKM40wnv/2OBPrS7UUlAq1fijKRkOB84HvsJaLU985fdab269a1XVXyf5pPPB/1Df9L+0gIiLSP0XZaBjhnn86MCDlOJXsWeBUTesvhaRCrZ+JstFnCeOpPlCI8x2wfPkj18yZr6dzq7cS+ClwMfVNq9IOIyIi/UeUjY4CrgA2TztLP9EKXAz8WFP6SyGoUOsnomw0GrgGOKyQ5612n/nc5GkbV0FVIc9bgV4BTqG+6fG0g4iISGWLstGGwI0U+J4v3fYycEKciZ9NO4iUNxVq/UDSinYzMLIY5798zrznP7F8xS7FOHeFyQE/AS6gvimXdhgREak8UTb6NGFWwg3TztLPtQK/AC5Q65r0lgq1ChZlowGED4nvFPM627a0PP6XGbP3KeY1KszDwJepb5qVdhAREakMUTYaBFwOfD3tLPIeMfD5OBM3ph1Eyo8KtQoVZaPNgT8Cexf9Yu5LJ02Zbuu4Dy36tSrHXOBY6pvGpx1ERETKW5SNtgX+BOycdhbp1FLgq3Em/lPaQaS8qFCrQFE2Ogi4DVi/r655+sJFj5/UtFitaj2TA34OnE99U1vaYUREpPxE2ehw4HfA8LSzSJeuBM6MM3Fr2kGkPKhQqyBRNqoGfkxYz8P68trrtrU998jUGbv25TUryHjgSOqblqQdREREykeUjb4NXIYm9ConDxK6Qi5MO4iUPhVqFSLKRkMIXR0/nUoA99y/p8+cs2lr2yapXL/8vQAconFrIiLSleTB7FVoPFq5ehP4dJyJX0k7iJQ2PYGpAFE2WpfwhCadIg3ArOrakbWvpXb98rcz8CT1tePSDiIiIqUrykbDgX+gIq2cbQU8GmWjPdIOIqVNhVqZi7LRFsBEYK+0s/xz6FAtqLl2PgBMpL52/7SDiIhI6UkmCnscOCjtLLLW1gMejLLRR9IOIqVLhVoZi7LRNoQirS7tLAAtVbb1M4MGNaSdo8yNAu6nvvbotIOIiEjpSB7MPgJEaWeRghkO3JdMCCPyPirUylSUjcYBjxJaYUrGNaNq56adoQIMAv5Afe1RaQcREZH0JS1pEwhd5qSyDAbuirLRsWkHkdKjQq0MRdloJ8JTtZKbuOO5wYN2WAWr0s5RAaqB31Nfe1jaQUREJD0q0vqFGuDWKBudnHYQKS0q1MpMlI22BP5NH66R1hNutt7fhw19Pu0cFWIAcCf1tR9PO4iIiPS9KBttBjwMbJ12Fik6A34TZaMj0g4ipUOFWhlJZnf8J7BR2lnW5LcjR+TSzlBBBgF3U1+7b9pBRESk70TZaBNCS9o2KUeRvlMF/D7KRgemHURKgwq1MhFlo8HA34Ht087Slek1Nbs2VVUtSjtHBVkHuJf6Wk3jKyLSD0TZaB3gHlSk9UeDgLujbLRz2kEkfSrUykCUjaqA24F90s7SLWYDf1s7Ik47RoUZAfyD+tot0g4iIiLFE2UjA24Ddks7i6RmBPDPKBtpXGI/p0KtPFwJlFWf5TtHDBuVdoYKtCHwN+prh6QdREREiuZnlNk9X4piY+D+KBuV5JwE0jdUqJW4KBudAXwr7Rw9tbSqaoc3Bgx4K+0cFWhX4Ma0Q4iISOFF2egE4Ky0c0jJ2Bq4PelZJf2Q/sOXsCgbHQRcnHaO3rpqVO3UtDNUqGOor/1+2iFERKRwomy0P3Bd2jmk5HwSOD/tEJIOc/e0M0gnomy0EfASobtbWap2n/785GmbWZhyVgorBxxGfdM/0w4iIiJrJ5nh8QXK+J4vReXAoXEm1j2/n1GLWglKBhLfQpl/YLeZbT5hnSEvpZ2jQlURFsTWQGMRkTKWdGu7jTK/50tRGfC7KBuNTjuI9C0VaqXp28BBaYcohGtH1i5JO0MFGwncRn1tddpBRESk184CPpZ2CCl56wJ3RtloUNpBpO+oUCsxyboZF6Wdo1AaBw7YaYXZ8rRzVLC9gR+mHUJERHouykZ7AD9OO4eUjd0Js4JKP6FCrYQkC1z+ARiYdpaCMRv+hxHDXkg7RiVb5oOO2fWsP+ySdg4REem+5J7/O6Am7SxSVr4dZaPyWFdX1poKtdJyJTA27RCFdtuIEWqmLwJ32sa37Tph5+YbtlnIiOyYs+6tnAJfRKTy/QLYLu0QUnaqgJujbKQ1VfsBFWolIspGHwVOTjtHMcyvrtp5dnX17LRzVJJmr3nry6vObjx51RkHrqJmIBAB56adS0REupZ0efx62jmkDLkv//ziJTOff2uq7vn9gKbnLwFRNqoGnid82a5IRyxZOuHH8xcemHaOcueOP5mre/Qrq76/50oGdXya1gpEky86tDGNbCIi0rVklscngT3SziLlZVRb2/O3zpyz3pjW1g8Q7vm7Ud+k2bUrmFrUSsOpVHCRBnDv0HU2TztDuWv1qumnrPrui8esOveAToo0COMcrujrXCIi0iNfRUWa9IR708mLmh57dOqMXZIiDcI9/zrqa/VdvoLpP27Komy0LnBB2jmKrbmqapvnBw1US08vxbktJ+7UfEPt+NzuO3ex60Fjzrr30D4JJSIiPZLc83+edg4pHxu3tj51/7SZy097u2m/TjZ/GPhaX2eSvqNCLX0XENbGqHhXjxo5N+0M5abNbc73Wk59+tMtF+67jCHDu3nY5WPOundAUYOJiEhv/AxYL+0QUvrMff6ZC95+Yvy0mXtu0ta2yRp2PZ/62nX6LJj0KRVqKYqyUUTo9tgvPDN4UF1r6FMt3fC/3Cb/2a35NwPvyu3f0y4y2wGnFSOTiIj0TpSNdqVCJw2TwtqqZdUTE6bOsOMXL9m7G7tvBHyz2JkkHSrU0nUlUJ12iL7iZhv8Y9jQ59LOUepybgt/vOq4/3ys5bK9FjF8VC9Pc+6Ys+5dv6DBRERkbVyAvnfJGlS5z/rJvAVP3T1j1t7r5nI9aXn9PvW13e11UzLM7BYz+8catp9gZkv7MlOp0QdGSqJsdBjw0bRz9LXrR47IpZ2hlM30dZ/aq/nq1pvbDt5rLU9VC3ynEJlERGTtRNloN0Djh6Vz7h6tbH5s4pTpQz+7dNmevTjDesC3e3PppFjyvNd8M/uHmVXcur7lSIVaes5JO0AaptXU7NJUZU1p5yg17iy+YtWRE/duvmbPOay7YYFO+40xZ91bW6BziYhI752XdgApTTXuU345d/6Lv581Z7/h7iPW4lTfo762t71wHgA2SV6fBIYAf13dzmamcfB9RIVaCpLFrT+Udo5UmA26uXaE1vzIs8CHP79/y5VLftl25L4FPnUt8K0Cn1NERHogykY7A4ennUNKjHvb3stXPPKfKdM3/OjyFV3N6NwdtcD3enlss7vPTl7PEZb6GWtmQ8xsTNLSdoyZPWRmK4CvmVmVmZ1rZtPMrNnMYjP7TP5JzSwyswfMbIWZLUxa71b7ANnMdjKzWWZ2YSfbxphZzsx27/D+yUkr4EAzOzDJ+jEzm2Rmy83sGTPbtZd/L6lToZaOs9MOkKY/DR8+Mu0MpcCd5Te2HvzIbs2/2Xmab7hZkS7z7TFn3Tu0SOcWEZGuqTVN3mNQLvf6TbPnvnrdnHkHDHbvbF3U3jqd+tq1Gp9uZsOBLwCxu6/I2/Rz4FpgHPA34HTgTOAHhLWA/wr8xcx2Ts4zFPg3sBTYE/gcsDdw02quux8wAbjY3X/Ucbu7TwbGAyd22HQicJu7t3TIehawK7AAuN3MrFt/ASVGhVofS2Z9+ljaOdK0pLoqenNAzZS0c6Rpsa8Tf7Ll4rk/aT3uACjqh8d6aI0VEZFUJLM7fzbtHFIi3FsOWrrskf9MmT5mj5XN44pwhWH0rlXtIDNbmkzcsRg4APhSh32udvc73f0td58OnAFc6u6/d/fX3P084LHkfZLjhwLHuXvs7o8ApwBHmNk2+Sc2s8OAe4HT3f2KNeS8ATjGzAYnx9UR1pK7scN+57r7w+7eSJjEZyxQrAfiRaVCre/1arBnpbl61MjJaWdIgzstf27d/5Gdm68f97pvPqaPLvu9MWfdW9NH1xIRkXedDpTlk3wprKG53H//OHP21EvmLThgABRzjNfJ1NcO7uExjwI7J689gQeB+81si7x9nmn/wcxGAJsCj3c4z0RCixtAHfCSuy/J2/4EkMvbB2A3QmvcV9391i5y3g20AEckvz8ReMrdX+6wX/4Qm5nJr4Ua/9+nVKj1oSgbbUxoTu73JqwzZCsHTztHX1rug179TMtPppzZeuoBOar6clmGTYFP9/QgzQQlItJ7UTYaDnwx7RySMvflX1i85JEnpkyvG9eyapuuD1hr6wFH9/CY5e7+RvJ6GjgJGEFoAWu3rJvn6s53u/x93gJeAb5iZoPWeJD7KuBW4EQzqwGO4/2taQCrOrlWWdY8ZRm6jP0fMDDtEKWg1WyLR4cMjtPO0Rfcaft32+4Tdmy+YauXfOttU4pxUi+P00xQIiK90971S/qpUW1tz98zfdb8cxa8fUBV337n/r+1PN4JLV/rdLrRfTGhpWqfDpv2JRRdAA1AlIx5a7c34e+hIe+9hYQhQZsBf+2qWAN+C3wE+DowHLijqz9MOVOh1keibFRF778sV6RrR9UuTjtDsTV7zZvHrPpR49dWfffAVmrSLGIOGnPWvZv34riCzwSVd9yRZjY+mZXpFTP7RN4+55rZbDPbMO+9P5jZc2amhx0iUg5OTjuApMS96ZS3myY+OnXGLmNaWz+QQoK9qK/dsQf7DzKzjZNXHXA1YbzbPWs45hLgjOQ7wHZmdgGwH3Bpsv12YDlwazL74/7AdcBf3P2N/BO5+3xCsbY5YUKS1RZr7v4qoYvlJcCdSdFYsVSo9Z19CV3QJPHKwIE7Nhsr085RDO74E23jHtmp+YZNnsx98INp5yH8W+84U1KPFGomqDwXAlcBOwFPA3eY2bBk28+A10lmhzKz44HPAF/qMLOTiEjJSSYO2y3tHNL3NmltfWr8tJkrvrWoqdBL7vTUCT3Y9+PArOQ1CdgDONrdJ6zhmKsIxdLFwMuEWR2PdPcXAdx9OfApQhfKpwjjy/7Dar6LJMXaR4EtgLu6aFm7kdBDrbNujxXF3PvVMKHURNnoV4RmWslz5oK3nzh+8ZK9085RSKu8evqpq749/8HcboVYF6WQpgBbTb7o0Fx3djazW4Bj4Z1ieigwDTjE3V82szGEvuVnuPtlecfNAK5z9wvy3psATHf3Y/OOO9Xdr0u2bwZMB/Zz94nJe6OBF4HrgVOBH7j7r3vzBxcR6UtRNvo14XNL+glzn3fmwkVvHLd4yV5pZ0nMBTajvqk17SCFZmY/IEw+sl3aWYpNLWp9IMpG1cBRaecoRbfUDq+obmwv5rZ6bOfm60eWYJEGMJrwtKonijETVLs1zsrk7lN4t3XuURVpIlIOomw0iPdPbS4VbOuWlicemTqjuoSKNAj304PSDlFIZjbMzD5I+G7wy7Tz9AUVan3jI5TptKDFNq+6epe51dVz086xttrcZn+75evPfKblp/stY8iwro9ITU8fGBRzJqh3ZmXyd5v2O34m7Q+0AVt0Y4CxiEgp+AThc1IqXLX7zAvnzX/6bzNm7z0ql1s37TydOD7tAAV2DfAc4WHwdSln6RMq1PqGpuRfHbPq34wc0dD1jqXr9dymj+/afN3gv+X23T3tLN3w2TFn3bs2/+4LMRNUt5jZEcCXCa2AtYSxcCIipe6IrneRsubuO65sfnTilOnDD1+6fI+046zBp6ivrZh1VN39BHcf5O5Hu3vFdensTMX8xytVUTYagD601+ieYUM3OW/B22nH6LGc24L61uNfu7XtUx2LklK2EWF63Ind3H+QmW2c/DwK+CbdmwnqAjN7HXiWMM5tP2DX7oZMxqzdAJzt7o+a2XHAQ2Z2n7s/0N3ziIj0pWSow+Fp55DiqXGfcsXc+W8fuHzF/mln6YYRwF7AY2kHkd5RoVZ8HwdKsTm8ZKysqtrupUEDX92xuWX7tLN01wxf76nPNV+w5VxGlVJ/9O46jO4Xau0zQQEsARpJZoJKJgXpzFWEtU0uJhSGr5I3E1RXzMyAW4DnCcsB4O6PmdlFQNbMdnT3Bd3MLyLSl/YiLDgslca9bZ8VKx+7cu78Dw12H512nB74FCrUypZmfSwyzfzUPR9asfKR386ee0DaObriTtNlrUfH17R9Lu1pd9fGfydfdOgOaYcQEak0UTb6OXBW2jmksAbncq/9es681t1XNnecFKscPE19055ph5De0Ri14ivnL/R95qnBg8a1hUkjStZ8H/Hcfi2/XFbmRRrAB8ecdW8aC3CKiFS6Q9IOIAXk3nLw0mUTnpgyfcsyLdIAdqO+Vq28ZUqFWhFF2WgkUAqLHZc8N9vgvmHrPJ92js64s/yG1kMe3b3517tM9w0qZdHy/dIOICJSSaJstD6wY9o5pDCG5XIv/2nm7GkXz1tw4AAYkHaetVBFmIlUypAKteLaB7C0Q5SL62trV3W9V99q8nXij7dcMu/C1mP3B6uk/5YVtci4iEgJ+HDaAaQA3Jd/cfGSRx6fMn1cXcuqrdOOUyCfSjuA9I4mEymucpoNMHWTB9TssrjKmkbkvDbtLO40/6ntgP+c1Xry/k5VJT7Q0P+bIiKFpUKtzK3b1vbcrTPnbDC6tbXkx8z30CfTDiC9U4lfQEtJuY9l6ltmg2+pHfFS2jGW+6DGw1t+OvUHrV87sEKLNIAdxpx17/C0Q4iIVJAPpR1Aesm96WtvNz32yNQZu45ubd0i7ThFsCn1tdukHUJ6rlK/hKYuykYDgVJeBLEk/XH4sNRa09xp/WfbHo/s2HzD1rFvtW1aOfpINfpSISJSEFE2qgI0s14Z2mRV66Tx02au+Oaipkofu71z2gGk59T1sXh2AwanHaLcLK6qiibX1Ewd09rap7MSNvuA/x3f8oPmST6u0ro7rMk+gBaPFhFZe3WExYWlTJj7vO8vXPTGsYuXlON6qL2xM3Bn2iGkZ9SiVjxqregNM7tmVO1bfXU5d3KPte3wyI7NN2w2yceV69S7vRWlHUBEpELonl9GtmlpefyRqTOq+1GRBmpRK0tqUSueSu86VzQPDl1nDPMWFP06q7x62tdWfWfhQ7ld+1MrWr7t0w4gIlIhtBRPGah2n3nB/AUzDl+6vF9MqOVO8woGTpnuG8x7KlfXemzagaTHzN3TzlCRomx0H3Bw2jnK1bWz58b7rVhZtBafF3JbP/bllrN3WcaQYcW6RhlYCQydfNGhubSDiIiUsygb/RX4bNo5ZDXcfafmlsd+M3vuLsPcK24iLXdWNTNgykxfb97LvmXzpFzdkKdz22/4hm/2gRxV1e27ASMmX3To0u6c08xuATJ5by0AngTOcPfGgv4BZLXUolY8W6UdoJxdO6p20X4rVhb8vG1eNevbq74+457c3pU+aLg7BgMfACannENEpNxVynpbFWeA++Qr5sxrOmDFyv3TzrK23GlbRc3U2T5q7is+ZsVTubGDJuXGbvCqbzG6lZptgDXN7GiEnjTP9uCSDwDHJT9vClwC/JUwJvP9FzAb4O4ltyZuOVOhVgRRNjJgTNo5ytnLAwfu2GysHOSFm5DltdxmTxzVcv4HFzNs90KdswJshwo1EZG1pYezpca9bd8VKydeOXfehwZ5eX0nc8dbqZ4+j5GzG3IfWPZ0bvuBk3J1673io0c3M3BLYMtennosPSvUmt19dvLzbDO7ArjHzIYAGwFvAV8CTgb2As40s2uBHwGnABsCrwHnuPvdAGY2JjnuKOBUwsRmk4HT3X18ss+5wDeAHd19bvLeHwiF5ofdvaU3f/hypEKtODYFBqUdoqyZ1f55+LD/HLt46VoP9M25zT+/NfPGbW2f3LsQ0SrM9sD9aYcQESlXUTbaGBiadg551+Bc7rXfzJ7Xtltzc8mPQW/1qlkLGDHztdwWS5/ObVc9KVe3buxbjV7O4C2AQq/pNqa3B5rZcOALQOzuK8ysfdPPgTOArwKrgNOBMwlF2DPAscBfzGw3d38h75QXJvt9HTgHuMPMRrv7UuBnhEW6bwIOM7Pjgc8Au/anIg1UqBVLb590SJ5bakfUHLu4W12pV2tabv1Jn2u5YKv5jPxwgWJVmjFpBxARKXNqTSsV7i2HLFv+xE/nLdhnAAxIO06+Nrd5bzN8+hu+2eJnc9tVPZmrG/lCbusPLGHoJsAmfRSjp9c5yMzav4gNBaYBh3TY52p3f2fafzM7A7jU3X+fvHWeme1PKOby5zO5wt3vSY45GzieMDPlRHdvM7NjgRfN7GJC0fe9/jg2ToVacehDuwDmVFfvMq+6at4GbbkNenqsO02XtH7h5WvbPtMvZnZaC+ulHUBEpMzpnl8ChuVyL980a86QupZVB6aZI+e83cTQaW/6pouey23Lk7m6Ec/nttliIbUbAD3+PlNgPS3UHiV0YQQYRWj9ut/M8pejeKb9BzMbQehV9niH80zk/QXeS3k/z0x+3bD9DXefYmanA7cA97r7r3uYvSKoUCsOtagVglnNdSNrXzlnwds96rowz2uf/WzzBZvOYAMVaV1bP+0AIiJlTp+jaXJf9sUlS5/94YK3963qw/WB3Vm8hCFTJ/vGbz+f28Yn5cYNeza37eZzWHdDQlFTinpaqC139zfaf2NmJwFNhOLtxuTtZd08V8dp5t+ZdMTdPelK2fG/3/5AG7CFmQ1y9+YeZK8IKtSKQx/aBfL3YUM3PmfB293a151l17cd+uzPW79c9jM79SG1qImIrJ2Km+69XKzb1vbcrTPnbDC6tbVo9313li9j8JRpvuGCF3Nbtz2Zqxv6rG+36TTfcFNgh2Jdt0jW9p7vQA5Yp9ON7ovNbCZhgpAH8zbtC7zSkwuZ2RHAl4GPArcSxsJ9txeZy5oKteLoz2tzFdSKqqrtXx448PUdWlrWuID4Ih/60hEtP6590zdVkdYzKtRERNbOiLQD9DvuTacuWhx/Y1HTvoU7Jc0rGThluq8/L/atWp/M1Q15Jrf9xm/5xps7VZ1OR1+G1u3h/oPMbOPk51HANwnfce9ZwzGXABeY2euEGSaPBfYDdu3uRc1sM+AG4Gx3f9TMjgMeMrP73P2BHv4ZypoKteLQ07UCunpU7czr5szrtFBzp/mOto88eXbrV/dzqvqsy0MFUaEmIrJ2VKj1oU1XtU66ddacMRu1tfWqSHOntYUBU2b6unP/61u2TMqNHfR0buxGr/nmH8hRtR1h2ZpKNWrMWffa5IsO7dgNcXU+DsxKfl4CNAJHu/uEZJr9zlxF+B58MWEK/1eBI939xe5c0EIfyFuA54ErANz9MTO7CMia2Y7uvqCb+XssWeh7fXc/rFjXSK6zO/A0sKW7T17dfirUikMtagX05JDBY9ugrRqq899f5oMbjm45b+ArPqbkp98tYT390BYR6bG8tZP2cPdn1rx32dHD2T5g7vO+v/DtN7q7bI87uVVUT5vjo2a/4qNXPpWrG/B0bvsNGnz06FXUbE3/XKS8GhgCLO/Gvmcm+x1CGNu2glCsLQZw98lmNgU4kLwJRdw9B/wkeb1PctwjwAkdjrO83T7RyXHnAud2I/d7lPtnjwq14ijYIs0CObON/jV0nWcPXbZ8NwhPw+7Lfejx01Z9c582qvX/8NoxwufAqq52FJHKkTw1zgA3uftXO2z7BfB9wkxrRX2q3FOdPe0ugS9ialErsm1aWh6/edbccSNzufcVacni0DPmUzurMbfF8qdzY2sm5cau918fM3olg0YDo1OIXMq6+73pLsJYtK8CbxBmZDwA9cTpU/qSWxwltXZHJbhuZG3zocuWs9IH/O+4lh+2PO1j1YpWONWoUBPpj6YBnzez09x9GYCZ1RDWM5qaarLyol40RVLtPvOn8xbMPGzZ8n0A2rxq1gKGz3wtt8XSZ3y76idzdaPi3FajlzFkc2DzlOOWiy6/+5vZSMK4sk+4e/ukIFMIXfXa95lAKIIvMbNLILSKmdl6wDXJ8esBbxLWVbs5Oe4WQsF3gJl9IzndlklL2zjCGLf9CS14DwLfcffZeceuD4wnPExaB/gb8A13704rYXv28wgF6MbA28D97n78avY9CPgRYeIYT/4Ovu3uDcn2MYQHRUcR1nvbB5gMnO7u4zuc50rC+rVPA91abkCFWnFUd72L9MRbA2p2eXTxDvedX/WDzVsYMHCz0E9aCqDFXGP7RPqnlwhrHn0euDl571BgJWH9pPUAzGwP4ELCZAADk+POdPf/tJ/IzBz4GqHL0iHAHOA8d/9dh2uONrOf08mXGTOrBq4nzPK2MTCdMKHApe6eM7N6Qitg+/UAPgI8nPz8dDLF9yPufmCBc6+Jdb2L9FTdbJvw3WmDls+s2tfPsXHjn68au+6i6pHrEBZeHtq+30iYPjK9mGVnFd265y9NXoeb2UR3X9nJPkcALwI38d6iYzDwHPALQjfJjwPXmdnUpOg7nTAOsBE4OzlmnpltQvjcuZGwOPYAwr/fu81sr6RLJYQCcFZy3i2APwGvEWaF7JKZHZmc/xggJrQUfngNhwwlFFgvEbqNngPcY2bj3L0lb78LCd1Fv57sc4eZjXb3pWa2BaGgvAH4FbAjcHl38qpQKw79vRaa2ZBFLywc9su59aMX1W771sJ165oW1W5Ts2LI+hvlqgZsSbjBS+9ofJpI/3UjcCLvFmrtP+cv4jwcuI3wBcsJM7/dZ2bbdBjUfx5wFvBDwtPqm8zsUXfPb51b7ZcZwhpKMwiF4zxgT0LhtiDJeSlQR5i57rjkfAuT/Z4CDiJ8cWz/8lTI3GvS1s39pAem1eZ2nvbg8pc+OPXlvep4ecCXAcdybdUDV7RVDVzRVj2oua1m8Mq26kpAVNcAACAASURBVMEtrdWDV7XWDF7VWjOkta16cFtrzZC21prB3lo9ONdWM8TaqgfRVj2oqq16YFVb1YDqXNWAmlxVzQC3mgFu1YPcqga52WCwwcA6mFXyA8wuHyy4e6uZnUAoLE4xs+cJi1j/2d0nJfssNLM2YEl7i1fy/gxCq1i7683so4TC6EF3bzKzFsIabe8cZ2b/B7zo7j/Ie+94wr/x3Qn/xiEUf6e6exvQYGZ/Bj5GNws1QivgLEIr2ipC74HVdpl297vyf29mX0ky7ElYyLvdFe5+T7LP2YSeCTsn+/xfcp3T3N2BRjPbjtWM48ungqI49MW3CG77aPUGF/xuRe0GC17aeYMF7y5o31Y1YMXiEWPeXLDuuAWLRm7LsnU2Xq+tevBW/D97dx4fV1X/f/z1maS0pcu0pZRCaZuyNoVA2WVtQVSwbshPUVECuIAC+hVQIwqOuFUBUQQ3BKksIougEEXWgqyyCReaSIGmtFBo6b6mTfL5/XFu2iEkbZaZ3JnJ+/l4zKPJ3HPv/Qy0c+/nnnM+x2xgguEWk6akAxCRxNwAXGxmuxIKBRwDnAVc2NrA3e/P3sHMzgKOB44Fsnuerm3tiTKz8wkJ0hFt2nR4MxPfNF2Q1bbBzPYl3OBdFT+ZXgs0trnBWxT/uLjNDWMu494cfYfmwaqBNuzCE8uOGLvQ55z3l+a3t1nFAYanypsbB5U3Nw5iw8q8nbvFytc3l221trms/9rmsv6NTWUDGpvLNyaETc3lA5uaQkLY0lQ+oKW5bKA1hWTQmsv6p1rKtioLCWF5P0+V92uxsq3cyrZyS7UmgwMx65+3D7B5nXqw4O63mlktoQfrYMJ3wzlm9h13/3FH+8U94zXACcAYoD+hR3vmFk65H3CEma1qZ9vObErUZsVJWqs3gIO2/Ik2upnwb3yOmf0LuAv4e0eLaZvZzoSE6iBgW8IDpRQwrk3T57N+fiP+c1T8ZyXweJyktXqMTlCilh/Lkw6gFNWPtcp1/agfsIGJ2e+XtWwYOHzZ7D2GL5u98T3HmlcN3vHlJcMnvrVk+MSmVYPHDN3Qb/BOmKV7PfDCp5uMDhRamV6RXHP3pWZ2G6EnbRkw091fi4cQAmBmowg3KkcSym23Vo7r8EYlfiK/iE03Ku9qw7tvZjCz04EvEJ56DyQMf5rbnc+W47g3p90bPMmNeaNswpfPKp9w2IstT51e2zJ8q+b8V2tMedNWqaamrfo1rcnbPUPXegcHtjSVDaC5fAA56B3s9N/XeMjjPfHrQjP7A5Axs4vbDPvLdi5wDiEZighDKH/Mlv9NpYDaeP+23sr6ue2ceo/37RR3n2dmuxN64Y4GLgG+Z2YHtc7VbeNOwjDs0wg9/k2Exbu3atNuY1weJuu1fqYeUaKWH0uSDqBU3b2vLfzIEz5xS+0MLxuyat4uQ1bN22X8vI1zOVkzcOT8pcMmzl8yonLdiiHjt27snx6LpbbPa9CFreWM3x61xR5gM9sW+D6byvQuA14ApmfNL2kALnf3i7sSQDwh+QV3P7NroXddAVSHEylEVwMzCDdUF7SzfQYh0fk6YV5ZI2GSf4c3KrH2bqA6vJkxsxMIc0HOBR4lDC86Aziui58nH3Fvztpuxidd8PAeqf0frbSm6ntbHjzmad/boKinpiXUO7j2rVH7rgnTQLtlFiF3GEAYYryed9dlOAy4w92vhY3rou1GuG9o1d5+zxCGPc+Ne9fzJk5Aa4HaeH22NwnzZu/ObhcXRpkIfMXdH4jf25eu5091wPFmZlm9apubF7eRErX8WJp0AKXq1kNSkz/8RPMaC5V+umzrtW/vuPXah3ccs2DTsOLGfkMWLRu+22uLR0xauXzoTv3XDRixvVvZeLIfKZeuFZ1spzK9IqXrPsKN00jChPe2DiPMragFMLPtCA9scu0w4Al3v7z1jXjYUbb2bvBan+y3d8PYG3G39xRe8qAlZeV/fH/ZlFsO8yXfuLX5od3nc6ipgNtmtekdXDHtrks683B2G8IQwasJPc4rCfPEvkmYZ9Z679AAHG5m1xGGJL9NKOxxgpkdBrxNGEo9gbCANVn7HRg/PF1F6OC4Avgi8Jd4iZBFhLmynwTOcfecZLPx3Lty4In43CcQHtbMbqf50vgzfNHM5hGGcl5E10ci/ZbQy/gLM/s1UEWoELlFpTxZMklK1PJk7QAbOncUz+TymP03rNx2u4VP7zep/tqpB//n+wcf+dDXKo54+JxVez9/xfM7zn/gwcEr5z2cam78H3l+wpOQRVtqkFWmt8bd73P3ue7+pLtf7O43xm1msqlMr7dWZDOzbczsz2Y238zWmtmL8UTc1mNfQ0j4zmjdL/7ixswmmVmtma00s4XxcUZn72tmd5rZ18zsdTNbamZ/NLMuJfFmdoGZzTWzRjN708z+tJm2x5jZv+NzLTGzf5lZZdb2ivgzHG9m95jZGjObZWbva+c49Wa2zsz+TXjaKJKI+AnvXoSht+0Ni3oJ+Gz8b/IA4EY2JUe59BKwr5kda2a7xvPF2i7F0gDsaWa7m9lIM+sHLCT0an3AzLazTUPceyvu9ubUSB6t3NpGXPC58iNqTimbs3QQTycdTxHp7NScVcDjhOGLDwIvEoYv3kBIbFpdQKi8+Aqb7id+SJhP9k9CFcfVwPVtjn8x4d/irHi/ce7+BqFXq4Uwb+xFQvLWSG6HFy8jPHT+N2Fk0PHAx919TtuGcaXJEwjfjy/E8Zzf1XjiwkQfZ1PBo68T5vFtkXrU8kNDH/PouiNTw777l5YtN+yB8ubGIdssmbXXNktmbXyvxcrWrxgyrn7JiMpFS4ft3rJ60A7Dm8oH7oRZMa+h83Yn2qhM7yaJlukVyZctPK0+lVB98WnCvLIMYVJ9rv2OUFjkBkJlulsJ80dOzWpzJTCVUKVtMHCku880s68Sbhq/R7gBm9qLcb+15SaSD3NG2y6nfbWcqc+3/OeLd7Vs26+ZCUnHVOA6lajFD2zOY9N1uaN2jwN7t3lvKeGeYHP7vUQoUNL2/dmE9cg62u/kdt7LEP5td7RPA1mVLt39dtofOdDuOeKiRHu2aTY4a/s7jp/1vrX5vZYw3DJb2wT2XeydBUgkF6pmVH2RcHGQPLnuoqaXt2pil6TjcKxl9daj5y4ZMXHB0uET168cPHbI+q2GjMdSI5OOrZPuOOO3R31kS43ihOZKwvDHd5Xpjds00Ik5amZ2I7DK3b8Q/z6TNnPUzOxC4FB3f2/We8MJD0EOcvf/xL1x7wUqWitAmdmVhF6Bozs4dwVZc9TM7GzCBOE92xsTv6ViImY2iJCATnH3h7OOf7q7/y5uM4YwEfnwuM2PCRei3VvHqpvZdwlFD1RMRKTIVM2oOplNyxtIQsqafcMp97Q8+r5nfbKBCoe175HK+rrDkg5COk89avmhoY95dt/e9vqxT3viiZrhqcFrFkwYvGbBhHHzH9j4/rr+wxcsHb77vMXDK9esGFoxsLH/8DGeKtsxwVA7sqAzjVSmN7CEy/SKSEGan3QAAs1l1u8Px5RNuflwf/ubtzQ/tMsbmr/Wji1Od5DCokQtPxZvuYn0xM2HpfY65unmRgs3/gVnQOPS7bd/8/Htt3/z8Y3vbSgftHTpsF0aloyYtGJZeufydQNGjm5JlVckvFh3p28wVKYXSLhMr4gUJCVqBWT5IBv5neryI3Z+w1/69k3Nq4euZZ+kYyog9UkHIF2jRC0/3jUhUXJr1dY2/PVteGTHxRyadCyd1a9p9fBRbz83fNTbz218rznVb+3yoRNeXTJi0uKlw3a1NVuP3qa5rP9OmA3opbB6coOhMr29XKZXRAqSErUC9MoOttsX/q+co59teeLUu1tGl7cwPumYCkBd0gFI1yhRy4+5hCo3g5IOpJTdMDU16Ju35reoSL6VtWwYOGLZS3uMWPbSxvdaLNW0atCY2UtGVC5cOnxi06pBY9Ib+g2akKfFuudtqYHK9G6UeJleESk8UXW0qmpG1XI0L6og3btP6qCZVdb4hX+1zDzyed/PYEjSMSVIiVqRUaKWB1F15FUzqmYBByQdSyl7arfU5A2ploZ+LVQkHUsupbylfOiqebsOXTVv14rXNnXqrBm47bwlwye+vmT4xHUrh4wf1Ng/PQ5LbdfD07WXkLSVXaZ3F8Jw09cJldl+mNXuAkLVtlfiNhZvn0Ao07sWuIZQ5WhS1n4XExamnUWopDjB3RvM7FBC9ca7CL12rxF6uXJdpvdbcQz94hg6LNNrYUHeywhlel8mJFy3duWE7v6amX2cUOnxNEJFuhrguh58DhFJ1lxCBVcpQE3l1v+308qm3jjFF9Xc3PzfCW9yqPW94eiOErWio6qPeVI1o+qPwMlJx1HqTq9tfvCo573tOjt9RuNWQxctHbbb3CUjJq1aPnRC/3UDRuzgVjauk4t1rzjjt0fpCbCISA9Vzai6Djgx6Tikc3ab7/Xfurm5cci6d5aWL3HzKuvr2ha+kgKnHrX8eTHpAPqCP09JTTry+eYNFnpD+pz+61dsO3rhU9uOXvjUxveaygasWJbeec6SEZOWLRu2S9magdtu25LaaifCwrDZXujdaEVEStazKFErGi/taBM///Vyjnmq5fGT7mvZsbyFQqzKnGvqTStCStTyR4laL1g+2LZ9axiPjV727oUT+6ry5nVDRy55ce+RSzb9FWyx8sYVQ8bVLRlR+fbS4bv76q23H95S1u/pBMMUESklz265iRSau/ZPvee+ybbutH+0zDz8Rd/fshYyLkFK1IqQErX8UaLWS26cktrq//5W3EVF8i3lTf2HrXi1ctiKV6GhtvXty/W9LSKSE0rUitSGchtw+UfKpt4w1d/69s3N/x23kEMtzLEuNbOSDkC6rq9NpOw1UXX0GqE6nuTZo5W2b1NK5ZG74YmkAxARKQVRdbSUUFBEitSSobbdNz5fftj3P1NWt7o/UdLx5IGezBYhJWr59UzSAfQJZvb4RHs56TCKzBo0R01EJJfUq1YCZo23SaecXV71p6NSjzYbbyQdT444GulVlJSo5dc9SQfQV1w/NbW7Q3PScRSRpyvr6/TfS0Qkd55MOgDJnTsPSh1SfU7Z8EcqbaaHh5vFLKqsr1uSdBDSdUrU8uvuLTeRXFictu3fHoqKY3Sehj2KiOSWHs6WmPX9bOAvP1Y29YyvlC2fN5JHPPRMFaN7kw5AukeJWn49DegJRi+5+XD9de6Ch5IOQESkxDwNvJ10EJJ7b6dt+3O+WH7oDz+VenHNVkU5hLDTiZqZjTGz35vZfDNbb2avm9mVZtYXljAoOLqzzaOoOmoB7ks6jr7ioT1tv2ZjQdJxFIGV6MmviEhOxdd8fbeWsGhCas+Tzy6bdMOU1CPNxptJx9NJ6+nkw1kzmwA8BewJVAO7AJ8F9gCeNLOK/IQoHVGiln/60u4lLSkre2pX+1/ScRSB2sr6unVJByEiUoL+lXQAkmdmdvshqUNPPrtsyBO72UyHtUmHtAWPVtbXre5k2yuAFuBod7/P3V9z9weAo+P3rwAws5lmdnn2jmZ2jZndmfW7mdk3zewVM1trZpGZfbbNPmPM7EYzWxq/as1s16ztGTN7wcw+FR9npZndbmYjs9pUmdl9ZrbCzFaZ2XNmdmRX/yMVKiVq+ad5ar3ouqNSu3j4MpGO3Zp0ACIiJUrX/D6icSsbdMnxZVPP+nLZkjdG8GjS8WzGHZ1pZGYjgGOAK9z9HcVT4t9/DRxrZsM7ed4fAp8HzgAmAT8Bfmdm0+LzbQ08AKwDpgAHAwuAe+NtrSqAE4DjgPcD+wA/ytp+Q7zfgcBkIBMfsyQoUcuzqDqaC7yUdBx9xVvDbcdlg7QswmasAf6RdBAiIqUoqo4WAM8nHYf0noXDbMz/nVZ+yI8/mXp+bb+CXKvs9k6225Ww0HdHn2FWvH3XDrZvZGaDgLOBL7j7Xe4+x91vAK4kJG4An4qPd4q7P+/u9cBpwGDgQ1mHKwdOjts8BvweeG/W9vHAPe5e7+4vu/ttcbuSoEStd+jGuBfdemiqKekYCthdlfV1xV5mWESkkP0t6QCk9/1359ReJ59TtvtNh6UebjEWJh1P7IXK+rpXc3zM9Z1oMwkYANwVD0dcZWargC8DO8dt9gMmACuzti8Hhme1AZjr7suzfn8DGJX1+8+BP5jZ/Wb2HTOb2L2PVZgKMlEzswozczPbP+lYcuSGpAPoS+6bbPu1GIuSjqNA3ZJ0ACIiJU7X/D7KzVK3HJ467JSvlw18emeb6dCYcEhdeWgwm7D8wKQOtk8CmoA5hCkm1mZ7v6yfW/OLDxOGI7a+9iAMX2xt89822ycDuwG/yzrWhjbn8azj4+6ZOLbbgUOA583s1A4/ZZHpVKIWTxB0M7uqnW0/jbfd2d6+SWo7sTF+r9eTwKg6ehJQkYte0lxm/f67kxVj+dx8awQK7t+piEgpiaqjesINqPRRa/vbkJ9+smzq104rW/jmMB5PMJROz0l39yXAXcBX2swRa51PdgZwW9y7tQjYvs0h9s76eRbhnmN8PBwx+zU3bvMMoark2+206dLSVu4+290vc/dpwFXAF7qyfyHrSo/aPOCT8bhTAMysHDgJeC3XgZWg65IOoC+59qjUhCJemDJf7q6sr1uZdBAiIn2ArvnCmyNs7Fe/XP6enx2f+m9jea8/sP9PZX3ds13c5wygjFDQ4ygzG2tmUwkVzDcAX43b3U8oLPIRM9vdzH4OjG09iLuvBC4GLjazU81sFzObbGanm9mX4mbXA28BfzOzKWY2wcyOMLNLsis/bo6ZDTSzK8xsatwRcxBwGCFRLAldSdSeJ3SLfjLrvWmEyiozW98wswPM7G4zezsulfmwmR2cfaC4R+tLZnazma02s1fbluyMjTeze8xsjZnNMrP3ZR2jzMyuMrM5cdnP2XEZ0FS8PUNYA2JafD6P/7LNiQ/xZPzezDzE3Z5rUTXCXvP6SBu/cqCeaLahao8iIr3jWsIwMRGe2i01+aRzy3b96yH2716cmvGrru7g7nOA/YEXCX+HGwiVGVuAye7eunbc1VmvRwjrs97W5nDnEyownhsf7x7geOL78LiS5BHAq8DNQD0wgzBHbWknQ26O219DGLl2G/AYoZBJSTD3LXc6mNk1wEjgn8Cn3P3w+P2/AU8DOwEj3f1DZnYUMIawYJ4DZwInAru4++J4PwdeB2qAxwnlO8+J27xmYUG9OYT/6N8g/M/7LqEKzHh3X2Vm/Qh/Ce4gdMEeSKgEc467X2VmgwndnyOAz8UfZQmha/Y/hBKkzwHr3X1JLuLe0n/HqhlVdwEf2OJ/cMmJDz3R8uhJ97ccknQcBWItMKayvq6zX34iItIDVTOqbgc+mnQcUlgGrvMVZ9/e8uxec/xgg63ydJqFwNjK+rrOFP7YLDM7E7gE+IS7/73HkUmXdLWYyA3A/ma2q5mNJiQ712Q3cPf73f1ad6+LS22eReh1O7bNsa519+vc/WVCwtVEyKyzXerud7j7bOA8QtI1OT7PBne/wN2fdPcGd78J+C3w6Xj7KsLNaaO7vxm/1sPGJxmL4/eW5CHujvxuy00kV+7az/ZrCcm5wNVK0kREetW75vWLrB1gQ3/0qbIpZ3+xbMGiofwnT6f5fS6SNAB3v5zQ4bGHmQ3MxTGl87qUqLn7UkK34qmEYYUz2/YkmdkoM/udmb1kZssJ3aGjgHFtDrdxnRF3byIkUKM6akMox0l2m3is61Nmtigu6/n1ds7TKTmOuyN3EBblk17QVG79Z423KOk4CkATcFHSQYiI9DG1aB1V6cDrI238GWeUH/jzj6WeaSxndg4P3UTouMgZd7/J3X/i7mtzeVzZsu6U57+aUEDk1PjntmYABxCSpkMIPWDzeXf37mbLbbZt45vGaLbOQTsB+AWhR+8D8Xl+3c55OiuXcbcrqo5y/o9HNu9PR6V2TDqGAvDnyvq6uVtuJiIiuRJVRy2EggoiHXq8MrVv9TllO/39IHuoBRbn4JC3V9bXvZ6D40gB6E6idh9hsbuRtL/a+WHAr9y91t1fJPRMtS3hmQuHAU+4++Xu/kw8FHHnNm3WE6rXtH2Pdt7vrbgvIyzoJ72gYbTtvLo/fblXzYHpSQchItJH/Ql4c4utpE9rSVnZdUeVHfH5/ysrf2G8Pejv7hToii4XEZHC1eVELe7Z2guY4O7tLeT3EvBZM5tkZgcAN9K5Vcy76iVgXzM7Np4zdz4wpU2bBmDPuHToyLgAyULC3LUPmNl2Zpbuzbij6mgZ8MtcH1c6dsdBqb6cGN9RWV9XMmVqRUSKSVQdNaJrvnTS6oGWvvAzZVPO/XzZ/MWDebIbh3i+sr7uoZwHJonpTo8a7r7S3Vd0sPlUYDChGuSNhOGRDd2KbvN+B9xEKHDyJFBBqEqT7UqgjlDJcRFwaDyv7KuExfDeYNOq7b0VN8ClqFet19x5oO3rffe/90+SDkBEpI/7DWGUjkinzBtlE758VvkBl30k9dT6Ml7pwq5X5C0oSUSnyvNL7lXNqPo+cEHScfQVP/hT00O7v97p6pylYmZlfd2RSQchItLXVc2ouoiwnpRIl6RavOmk+1oeOfYp39tg2GaavgbsXllft663YpP861aPmuSEetV60Z/eW7Zd0jEkQL1pIiKF4SKgo5FIIh1qSVn5Ne8rm/L5r5V53Y486B0vpH6+krTSo0QtIZqr1rtmj7Hd125FX5qr9Uxlfd3dSQchIiIQVUcLgR8nHYcUr1Vb2/Dvfa58yrdOKZu7dBBPt9n8X+C6JOKS/FKiliz1qvWiu/azXJS9LRbnJx2AiIi8wy+AOUkHIcWtYbTtfNpXy/f79bTUfzaUbfz79K3K+rqWRAOTvNActYRVzaj6P0LCJnk2sNFXXvPzZrNQNKaU3VRZX3dC0kGIiMg7Vc2o+iTwl6TjkNJQ1uwbPnt/y1XnXjfry0nHIvmhHrXkXUaoSil5tra/DXl1NM8mHUeeLSVUNRURkQITVUc3AY8mHYeUhuYyY8b7yjSNpoQpUUtYVB21AF8CmpOOpS+47qjUiKRjyLNvVNbXvZV0ECIi0qGvAxrOJLnwy6g6qk86CMkfJWoFIKqOniWMXZc8e3F8ao/Gcl5KOo48mVlZX3dV0kGIiEjHouroP4S1YEV64nXgwqSDkPxSolY4vkf+FtiWLPfuYwuSjiEP1gGnJR2EiIh0yjdQYRHpmVOj6kgLqZc4JWoFIqqOVgNfSTqOvuCWQ1OTHdYmHUeO/aiyvq5UewpFREpKVB2tAk5BQyCle34TVUdagqcPUKJWQKLq6J+oGlTerR5o6Xnb8kzSceTQC8BPkw5CREQ6L6qOHiQUFBPpipeBc5MOQnqHErXCcxYwP+kgSt31U1NDko4hR1qAL1bW121IOhAREemyb0PJzpuW3GsGToqqozVJByK9Q4lagYmqo0XAJ4D1ScdSyp7dJbXX+jJeSTqOHLi0sr7u8aSDEBGRrouqo7XAyajys3TOz6Lq6LGkg5Deo0StAEXV0ePA2UnHUepm7mXF3nM5E6hJOggREem++Mb7vKTjkIL3OJBJOgjpXUrUClRUHV0BXJ90HKXspsNTe3rx9lzOAz5ZWV/XlHQgIiLSM1F19DPgr0nHIQXrDeDjUXVUrPcs0k1K1Arbl4Ao6SBK1YpBts2CETyVdBzdsA74eGV93aKkAxERkZw5GdDixdLWOuC4qDoqxaWFZAuUqBWweLLo8cDypGMpVX+ekhqQdAzd8OXK+rpiTDBFRKQD8ZpYHwGWJh2LFJQvxYukSx+kRK3ARdXRbMJTNq21kgdP7G77NKV4Lek4uuAnlfV113SmoZmNMbPfm9l8M1tvZq+b2ZVmtmOeYxQRkW6Ir/knoOIiElwaVUfXJh2EJEeJWhGIqqPbUXGR/DCzRybZnKTD6KQbge90pqGZTQCeAvYEqoFdgM8CewBPmllFfkIUEZGeiKqje4AvJx2HJO5fwDeSDkKSpUStSETV0S+AHycdRym6YWqq0qHQi3I8ApxcWV/X2Z7VKwhrrB3t7ve5+2vu/gBwdPz+FQBmNtPMLs/e0cyuMbM7s343M/ummb1iZmvNLDKzz7bZZ4yZ3WhmS+NXrZntmrU9Y2YvmNmn4uOsNLPbzWxkVpsqM7vPzFaY2Soze87MjuzifycRkaIXVUdXokWN+7JHgOOj6kg9q32cErUiElVH3wF+n3QcpWbpEBu1MF3QRUVeAj5aWV/X2JnGZjYCOAa4wt3fsShm/PuvgWPNbHgnz/9D4PPAGcAk4CfA78xsWny+rYEHCBOepwAHAwuAe+NtrSoIQ3qOA94P7AP8KGv7DfF+BwKTCWWI13UyRhGRkhJVR5cAP0g6Dul1TwEfjKqj1UkHIslTolZ8vozK9ufcTUekypOOoQPPA0dU1tct7sI+uwIG1HWwfVa8fdcOtm9kZoMIw26/4O53ufscd78BuJKQuAF8Kj7eKe7+vLvXA6cBg4EPZR2uHDg5bvMY4aHDe7O2jwfucfd6d3/Z3W+L24mI9ElRdXQB8Iuk45BeEwEfiKqjFUkHIoVBiVqRiaqjFsKcoxuTjqWUPLyH7dtsvJ50HG08BkyprK97K0/H78x6LJOAAcBd8XDEVWa2ivDAYOe4zX7ABGBl1vblwPCsNgBz3T27gukbwKis338O/MHM7jez75jZxO59LBGRknI2cFXSQUje/Q94X1QdLUk6ECkcStSKUDxm+bPAzUnHUircLPXE7jY76Tiy3Au8r7K+blk39p1NqBI6qYPtkwhz8uYQ5qtZm+39sn5u/Y74MGE4YutrD8LwxdY2/22zfTKwG/C7rGNtaHMezzo+7p6JY7sdOAR43sxO7fBTioj0AVF15IR1Vf+YdCySN68CR0fVUb4ezEqRUqJWpOJk7TNozlrOXH9kajcPiUvSbgM+VFlf163xscAJDAAAIABJREFU6e6+BLgL+EqbOWKt88nOAG6Le7cWAdu3OcTeWT/PAhqB8fFwxOzX3LjNM4Sqkm+306ZLTwbdfba7X+bu0whPkL/Qlf1FREpRVB21RNXRqYQ5wlJangMOjaqj+UkHIoVHiVoRi6qjpqg6Og2oQeus9diiYbbDkiE8nXAYM4BPdLZwyGacAZQRCnocZWZjzWwqcA+hZ+urcbv7CYVFPmJmu5vZz4GxrQdx95XAxcDFZnaqme1iZpPN7HQz+1Lc7HrgLeBvZjbFzCaY2RFmdkl25cfNMbOBZnaFmU01swozOwg4jJAoiogIEFVH5xG+vwvhoaL03IPAlKg6ejPpQKQwKVErAVF19FNCNT1VyOuhmw9LJXnxuww4pbK+rsfleN19DrA/8CJwLdBAqMzYAkx299aLwtVZr0eAlYQevWznEyownhsf7x7geMLQydZKkkcQhm7cDNQTEs7hwNJOhtwct7+GME7/NsIcPa0fKCKSJaqOfgV8mjDaQYrXTcAxUXW0fIstpc8yd3XElIqqGVUHA38Dtk06lmKVavGmG37WvDjlbNfLp76wsr7ue/k8gZmdCVwCfMLd/57Pc4mISH5Vzag6kjCnd2jSsUiXTQfOi+cfinRIPWolJKqOHgPeQ+iRkG5oSVn507tYR2Xt82ElcFK+kzQAd78c+Bywh5kNzPf5REQkf6Lq6AHCupMvJB2LdNpa4JSoOvq2kjTpDPWolaCqGVXDgb8A70s6lmK0/WJ/7Re/bx5r766GmGtPAZ+urK97Oc/nERGRElU1o2pr4NeEpXukcNUDn4iqIyXW0mnqUStBUXW0FPgAcA4aw95lC7axccu35tk8nsKBi4BDlKSJiEhPRNXRmqg6OplQJVdz1QvT9cABStKkq9SjVuKqZlRVEb4gqpKOpZgc+2TLY6fc23JwHg79JmGo4z15OLaIiPRhVTOq9gZuISyZIslbB3w1qo6uTDoQKU7qUStxUXUUAQcAl6IS/p12z762XwsszvFh/wnspSRNRETyIaqOngP2I6xDKcmKgIOUpElPqEetD6maUfVeQtn0MUnHUgy+c2Pzg3vP8Sk5ONR64FvALyvr6/QPTkRE8q5qRtX7gT+QtTam9Iq1wIXAJVF1tCHpYKS4KVHrY+JCIz8nTDrOd7GMojZ2oc+55KrmCT08zGPAGZX1dfmc8yYiIvIuVTOqhgA/BM5Eo6h6w73A6VF19ErSgUhpUKLWR1XNqNqXkLDloseoZF11adNzQ9axdzd2nQ18u7K+7tZcxyQiItIVVTOq9gN+RxgWKbn3NnBOVB39KelApLTo6UofFVVHz0TV0VTg44Ce/HTg7+9JreriLouAs4A9lKSJiEghiKqjpwlrrp0ENCQbTUlpBC4DKpWkST6oR02omlG1FWFYxPnAsITDKSj9mnzddRc1r7Mt/3dZSyjY8tPK+roVvRCaiIhIl8XX/NOB7wLbJhxOsWomzPn/flQdvZZ0MFK6lKjJRlUzqrYBLgC+CAxMOJyCkbmu6cFJ8zocItpC+LI+v7K+7vVeDEtERKTbqmZUDSast3oOMCThcIqFAzcDF0TV0f+SDkZKnxI1eZeqGVXbEobvnQGMSDicxO28wGf/5JrmXdu83QLcAVxQWV/3fAJhiYiI9Fh8zf8K8GVgu4TDKVTNwO3Aj6LqSMXBpNcoUZMOVc2oGgScShgWuVvC4STqmkuaXtx6PXsQJgxfBfy2sr6uIdmoREREciMeEnkC8DVUdKTVCsISB7+KqqOGhGORPkiJmmxR1YwqA95HSNim0QeL0Hzk8ZbrPvtAy73AXyrr69YlHY+IiEi+VM2oOpSQsB0HlCccThKeBX4D3BBVR6uTDkb6LiVq0iVVM6p2BI4H/h9wCKWdtC0ArgWuiaqjuqSDERER6U1VM6pGEa75JwCHU9rX/AbgFuAvUXX0VMKxiABK1KQHqmZUjSaU9/9/wBFAWbIR5UQd8M/49UBUHTUnHI+IiEjiqmZU7UC43p8AHAxYshHlxBxCcZCblZxJIVKiJjkRT0b+WPw6hOIp878KuJ84OYuqo7kJxyMiIlLQqmZUjQU+CBwNHEXxFB5bCzwGPATcGa8vJ1KwlKhJzsVz2iYSnri9J/5zEoUxZOJN4HnC+PO7gYej6mh9siGJiIgUp6oZVSlgL8LQyMOBQ4EdEg1qk5XAo8CDhOTsSV3zpZgoUZNeUTWjaihwIHAQsDswDhgPjAH65eGU64BZhKRs4yuqjhbl4VwiIiISi9dl3aPNaxIwKk+nXAnUE6YvZL9e0RQGKWZK1CRR8ZO47QlJW2vyNpqw4HbrawChNy57PPxyQqn8t4FF7f2pL2cREZHCUTWjajjhGj8K2Db+s/XnEWy61re+iP9sAZbFr6WE6/xb8Wt+VB293nufQqT3KFETEREREREpMIUwZ0hERERERESyKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNRERERERkQKjRE1ERERERKTAKFETEREREREpMErURERERERECowSNSkaZjbVzOb30rlONLO7e+NcIiIifcGWruNmdo2Z/TD++XAz+1/vRdczxRavFAclan2cmTWY2UIzG5T13hfMbKYFD5nZ99rsc5KZvWJmW5vZUDP7hZm9Zmar4vd/YWYjuxnPHmZ2t5ktMbNlZva0mX2wp59zC+esMDM3s/LW99z9end/fz7PKyIi0hkFeK2eaWbr4mO9bWZ/NbPte/o5s7n7v919927EljGz69p5381sl9xE927djVdkc5SoCUAZ8LW2b7q7A18Avm5mewCY2bbAJfH7TcB9wB7AMcBQ4GBgMXBgN2O5A7gHGA2MAr4KrOjmsUREREpFIV2rAc5098HAbsAw4NIeHEtE2qFETQAuAs41s2FtN7j7S8CPgKvMLAVcBtzq7g8AJwHjgOPcfZa7t7j7Qnf/gbv/o6tBxE/2JgBXuvv6+PWIuz/cpt058ZPFBWZ2Stb7aTP7k5ktMrO5ZvbdOGbMLBX/Pjfe909mlo53fSj+c1n8dPBgMzvZzB7OOrab2elmNjvu6bvCzCzeVmZml8RPFeeY2Zlte+hERER6qCCu1e2cewlwK7AnvLvnKns4Y9Z758XXzAYzO7G947YdJmlmY+Oeu0VmttjMLu9uzGbWP+5RfCN+/cLM+sfb3nH9b/uZzOyDZjbLzFaa2etmdm4H8TaY2blm9ryZLTezv5jZgKzt34zvY96Ie0fz2uMnxUmJmgA8BcwEzu1g+88BA24BDgW+Eb9/NHCXu6/KURyLgZeB68zsY2a2XTttRgNpYAzweeAKMxseb/tVvG0nYArh4tSayJ0cv46Mtw8GWr/kj4j/HObug939sQ7i+xBwALAX8EngA/H7XwSOBSYD+wIf6/QnFhER6ZxCuVa/Q/yQ9Xjg2U7uMhoYSbiOVwO/N7PNDhk0szLgTmAuUBHve2M3Qwb4DvAewnV7b0LP4nc7ue9VwGnuPoSQnN6/mbafJPRiTiDcO5wMYGbHAGcT/t/sAkzt6geQvkGJmrS6ADgrHi7xDu7eDJwKHAec5e4r403bAAtyFUA8fONIoIEwZGNBPO5+16xmG4AL3X1D/CRwFbB7/CX+KeDb7r7S3VuP8bl4vxOBn7v7q/HF6tvAp7rY6zXd3Ze5+2vAA4QveAhfxL909/nuvhSY3vVPLyIiskWJX6uzXGZmy4Dn4uOf3YV9z3f3Rnd/EKglXEc350BgB+Ab7r7a3de1HW3Txifj0S8bX222n0i4l1jo7ouA77PpfmFLNgCTzGyouy9192c20/Yyd38j7nW8g3feN/zR3V909zVAppPnlj5GiZoA4O4vEJ5W1XSw/cX4xxez3l4MdHrycDzUYVX8+m0H55nv7me6+87AeGA18Kfsc7p7U9bvawi9YyOBfoSnba3mEp66QfiCb7utHGiv164jb7Zz3tZjz8valv2ziIhIThTKtTr2VXcf5u5j3P3EOOHpjKXuvjrr97mE6+jmjAXmtrn+b85NcWwbX222t3dPsKUYWh0PfBCYa2YPmtnBm2mr+wbpESVqku17hGF8Y7bUMHYv8AHLqkK1Oe7+43ho4WB3P70T7ecBVxCPe9+CtwlPucZnvTcOeD3++Y12tjUBbwHeieNvzgJgx6zfx/bweCIiIh0pqGt1O9YAW2f9PrrN9uFtYhlHuEZvzjxgXA7nfrd3T9Aaw2qy4jezd8Tv7k+6+0cJBc9uB27qxvl13yCdokRNNnL3l4G/ECotdsa1hC/PW81sYlywY5v4aVyXS+qb2XAz+76Z7RIfayRhGMfjnYi9mfBl+SMzG2Jm4wnDMFpL9P6ZUBFrgpkNBn4M/CV+OrcIaCHMXeuOm4CvmdmYeJL3t7p5HBERkc1K+lrdCf8FPhMX2jqGMGe8re+b2VZmdjhh/vfNWzjmfwjJzXQzG2RmA8zs0B7E+Gfgu2a2bXyvcQGb7heeA/Yws8lx8Y9M605xzCeaWdrdNxCqUrd04/w3AaeYWaWZbQ2c34PPIiVMiZq0dSHQ2adujYSJsPWEkvorCF+mI4EnunHu9YRJwvfGx3oBaCSefNsJZxGehL0KPAzcAFwdb7uacLF6CJgDrIvbE48P/xHwSDyW/T1djPtK4G7gecJk6n8Qeuuau3gcERGRzkjyWr0lXwM+DCwjzAW7vc32N4GlhB6s64HT3b1+cweMH8Z+mFB44zVgPnBCD2L8IaE4y/NABDwTv9daQfNCwr3IbML9RLbPAQ1mtgI4nfAZu8Td/0mozPkAoYha6wPpxq4eS0qbhfoNIpIrZnYs8Ft3H7/FxiIiItKnmVkl4eF0/y7Mw5M+QD1qIj1kZgPjdVXKzWwMYf7AbUnHJSIiIoXJzI6L13MbDvwUuENJmrSlRE2k54xQ2ncpYehjHWG8u4iIiEh7TgMWAq8Qpkp8OdlwpBBp6KOIiIiIiEiBUY+aiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBQYJWoiIiIiIiIFRomaiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBQYJWoiIiIiIiIFRomaiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBQYJWoiIiIiIiIFRomaiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBQYJWoiIiIiIiIFRomaiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBQYJWoiIiIiIiIFRomaiIiIiIhIgVGiJiIiIiIiUmCUqImIiIiIiBSY8qQDEKmoqS0DtgeGAoOBIfGr7c8DgdXACmB5B69lDdOnrevljyAiIiKdlUkPBSYA2wKD4tfWbf4sA9bEr9VZrzWE6/3rwBtkljf1dvgivcXcPekYpK/IpLcD9nygee/xp2z41r7ALsDOwHigXw7PtAB4se2rYfq05Tk8h4iIiHQkk04D+wN7ABXxa0L857AcnaW52VP/27nxuiXAy/FrNvBsw/Rps3N0DpHEKFGT/Miky4F9gMOBw4BDgO0AVvuAuj0ar65MIKrX2ZS4PQbc3zB92uIE4hARESkdmXR/YDJwIHBA/OdugOX71Ku9f/0ejX+c2M6mt4EngMcJ1/z/NEyftjLf8YjkkhI1yZ1M+gDgGOAI4D2E4Yrv4s7qCY3Xbw2W9y/wLXDgv8B9wD3AzIbp09YnG5KIiEgRyKR3Az4MfIjwMHarJMJ4rWXU40es/8V7OtG0hfCg9t/A3wkPazfkNTiRHlKiJt2XSZcResyOAz4GjOvsroc1/vKN+b7tDvkKrZtWAXcDdwC1DdOnLUo4HhERkcIQRsocTkjMPgzsmmxAwb+b93zwcxvOm9KNXZcDtcBfgbsapk9bndvIRHpOiZp0XSZ9JPBZ4CPAyO4c4sz1Zz19Z8vB++U0rtxqAf4F/A64s2H6tOaE4xEREel9mfT+wBeAE8jd3LKcubrpmIcubDrpiB4eZi1hZM1fgVuUtEmhUKImnZNJjwBOBr4E7N7Tw13T9P6HMk0n9/SLtbfMB64C/tAwfdr8pIMRERHJq0x6GHAiIUGbnHA0m3XuhtP+c0vzlANzeMjlwAzg1w3Tp/0vh8cV6TIlarJ5mfShwOnA/wMG5Oqwz7Ts8tDH119YLIlaq2bgH4Retn82TJ/WknA8IiIiubPpmn88YUmcgvehxh++/ILvtEseDu2EOeyXo5E1khAlatK+THoacD5wUD4Ov9QH/3efxt8X9FO6LXgN+C1wmYZIiIhIUcuk3wtcQCgGVlQmrbt69RoGDMrzaeYSrvm/0VI/0puUqMk7ZdIfISRo++fzNC1ub+/UeH235rcVmLeAHwC/z2f1KDO7BqjOemsxoeTwue5en6/ziohICcukjyFc8w9JOpTuaHFbvFPj9dv04imXAD8FftUwfdraXjyv9FFK1CTIpD9GeJq2T2+dcu91v1+2nMEFNzG5m14lXOz+3DB9Ws7/UcWJ2hjgc/FbOwAXATu4e7tr0plZP3dX6WEREXmnMGrmAsJ6Z0VrlQ+YtWfj1ZMSOPXrwIXA1Q3TpzUlcH7pI1JJByAJy6SryKQfBG6jF5M0gL1Sr87rzfPl2U7A9cAzFTW1x+bpHI3u/mb8ega4FJhoZgPNrMLM3Mw+bWb3m9la4DQzS5nZ+WY2z8wazSwys4+2HjBrv+PN7B4zW2Nms8zsfVltzjezN81sVNZ7fzazZ8wskXVzRESkGzLpvcmkZwJ3UuRJGsAiH5bUMMQxhPnqsypqak+oqKlNel1YKVFK1PqqTHoYmfSvgGdJaEz6/qn/leI478nAPypqamdW1NTmZX4fgJkNIZRKjtw9e/jFT4BfA5OA24GvAd8AvgVUERLyv5pZ2/mBPwIuA/YGngRuNLPWBct/DMwGro7PfRLwUeAz7q4FwkVECl0mPYJM+jfA00B31hwrSA2+XWPCIewK3Ag8WVFTm9cpI9I3KVHrazJpI5P+PPAScCZQllQo+9jLpVxBaQrwWEVN7aUVNbW5qpZ5jJmtMrNVwIr4HJ9p0+ZX7n6Lu89x9/nAucDF7n6Du7/k7hcA/47fz3apu9/h7rOB84ARxCWZ3b2ZsG7eYWb2M0IFrHM0N05EpAhk0icB9YRqjold8/PhJR9bKJ9nP+DxipraiypqaouiWqYUByVqfUkmvTPhJv0PwLYJR8Ouqde3TjqGPDPg/4BnK2pqD8jB8R4iJE+TCUNW7gPuNrOxWW2e2nhys6GEuWyPtDnOw4Qet2zPZ/38RvznxqGO7j6XTb1zD7n7b7r/MUREJO8y6Z3JpO8nrAmW+DU/H+paxhVSUlRGeAj6XEVNbdFVz5TCpEStrwi9aP8FDk06lFYjWb5d0jH0konAoxU1tT+oqKnt14PjrHH3l+PXk4SFSIcSFiFv1dmlAtoWPNlYdMQ3VRhq+/1wBGEtubFm1r/zYYuISK/KpKsJ1/wjkw4ln+p93IikY2jHrsDMipra31TU1A5JOhgpbkrUSl0mvS2Z9O2EXrTBW2rem8pp3rE/69clHUcvKQe+CzxRUVO7Z46O6UAL0G7PpLuvIPSOtU3ODwNmdeVEZvZx4ETgKCBNmAsnIiKFJJMeSiZ9A3ANBXbNz4cG326HpGPogBGGmr5YUVN7VNLBSPFSolbKMukPAhGh8EPBMSM10V57Lek4etk+wNMVNbXfqqip7eq/v/5mNjp+VQK/IlyI79jMPhcB58bVIHczswuBw4GLO3tSMxsDXAmc5+4PEZYIOMvMju5i/CIiki+Z9HsIvWifTjqU3tDstnAd/XM1BzxfxgJ3V9TUfivpQKQ4KVErRaFgyPcJ5XcLenjhfqnZi5OOIQFbAdOBeypqarsybONoYEH8egI4APiEu8/czD6XEZK1nwEvAMcBx7v7c505oZkZ4cnss4TlAHD3f8fxzzCz3lxoVERE2sqkU2TS3yXMQZ+QdDi9ZTUDFiYdQyeVAdMrampvyeVQSDO7Jl5ep/X1tpndaWYTc3UOSZ4WvC41mfQg4E/Ax5MOpTPubD5o5pkbvjY16TgS9ArwkYbp07o0FFFERIRMemvCGp4fSzqU3vZyyw6PHr3+4kOSjqOL6oDjGqZP+19PD2Rm1xDWc/tc/NYOhAezO7h7ZQf79HP3De1tk8KkHrVSkklXAI9SJEkawCR7ra8vmLwzoaTvh5IOREREikgmvT3wIH0wSQNo8NHFmHBUEtZcOy5Hx2t09zfj1zOEkS8TzWygmVXEPW2fNrP7zWwtcJqZpczsfDObZ2aNZhaZ2cYpMln7HW9m95jZGjObZWbvy2pzvpm9aWajst77s5k9Y2Z9/b4up5SolYpMegphoeK9kg6lK7a3xSOTjqEADAH+VlFT+9WkAxERkSKQSVcRhsD32UWW631ssd7DDgFuraipvSCXBzWzIcAJQOTua7M2/QT4NWFZntvZtNTOt4Aq4Dbgr2Y2uc0hf0SYPrE34f7yRjNrLVDzY2A2cHV87pMI9RA+4+7rc/m5+rpi/Usu2TLpE4B7gKJLegawfpzR0pJ0HAUgBfwyXizTkg5GREQKVCZ9DGF9zLFbalrK6lrGD0o6hh4w4PsVNbU/7+FxjjGzVWa2ClgBTAE+06bNr9z9Fnef4+7zCWu9XezuN7j7S+5+AWF+47lt9rvU3e9w99nAecAIwjquuHsz8FngMDP7GXA5cI671/fw80gbStSKXSZ9GnAD0JP1uRJjxoAKe3N+0nEUkHOB6ytqajV0QERE3imsiXonoVemT6v3saVQzOrrFTW1V3ajCnSrhwjJ02TgQOA+4G4zy07in2r9wcyGEuayPdLmOA8TetyyPZ/18xvxnxuHOrr7XDb1zj3k7r/p5meQzVCiVswy6XOB31Lk/x/3sZffSjqGAvNpwlBIJWsiIhJk0l8kLJVSlnQoSXOn5TXfbvuk48iRLxAe0Hbngfsad385fj0ZH2so8KWsNqs7eay21QU3zgH0TZUH295vHgE0A2PNrH/nw5bOKuob/D4tkz6PUN2n6O2femlN0jEUoGMIX9x9/oIsItLnZdKnAL8jDJnr81pILdxAeSk9zPwU8NeKmtqergvnQAuwdbsb3VcQescObbPpMKBL1afN7OPAicBRQJowF05yTIlaMcqkv0OY5FkSqlKv6u9h+/4fcKXmrImI9GGZ9EnAH1CSttFKBhbLGmpd8SGgtqKmtt0kqwP9zWx0/KoEfgUMBu7YzD4XAefG1SB3M7MLgcOBizt7UjMbQ+jdPc/dHyIsEXCWmR3dhdilE3SDXGwy6S8BP0w6jFwaZwuHJR1DATsF+EXSQYiISAIy6ROBP6L7tXd4y4evTDqGPDkKuLmipra8k+2PBhbEryeAA4BPuPvMzexzGSFZ+xnwAnAccLy7P9eZE5qZAdcAzxKWA8Dd/w1MB2aYWSnMHSwYWvC6mGTSHwVupcTGp7c4S3dqvGF40nEUuB82TJ92ftJBiIhIL8mkPwH8mRK75ufCXc0HzDx9w9enJh1HHv0JOLlh+jTdpPdxekJTLDLpQ4EbKcEv7JQxfCTLFiUdR4H7bkVNbdvSuSIiUooy6fcQbtZL7pqfC/U+trM9TsXqJOCnSQchyVOiVgwy6T0I4417Osm0YO2deuWNLbfq8y6qqKn90pabiYhI0cqkxxEWJi7Za35PzSruNdQ66xsVNbWnJR2EJEuJWqHLpEcB/wRKemjg/qmXlicdQ5H4dUVN7RFJByEiInmQSQ8C/g5sl3Qohewl33HbpGPoJZdX1NS+P+kgJDlK1ApZJl1GGJ8+dktNi91ke1njsDunDPhzRU3tqC22FBGR4pFJG3AdsHfSoRQyd5rn+ajRScfRS8oJxUUqkw5EkqFErbD9gFABqOTtnHpjcNIxFJEdCGus6d+viEjp+DHwsaSDKHTNpN5spqzU56hlGwr8JQdrrEkR0o1eocqkPwzUJB1GbxnByr7ydCxXjgZUBVJEpBSEqs595prfEysY1BeLj1UBlyQdhPQ+JWqFKJPeiVDtqc8sbllGyw5bs2510nEUmQsqamrfm3QQIiLSA5n0aMKC1tIJC3zEqqRjSMhXKmpqj0s6COldStQKTSbdD7gF6FOLQJthe1jDa0nHUWRSwA0VNbXbJx2IiIh029XAyKSDKBZzfPvmpGNI0FUVNbXjkg5Ceo8StcJzHrBP0kEkYb/US0uTjqEIjQJurKip1Vo7IiLFJpM+Ezg26TCKSV3LuL58vRtOmKPel/8b9ClK1ApJJl0FfCfpMJKyb2r2+qRjKFJHAN9OOggREemCTLoS+FnSYRSbOh83NOkYEnYY8L2kg5DeoUStUGTS5cAfgX5Jh5KUiTZPFY2677yKmtqKpIMQEZFOCNMcrgcGJh1KsXnJx2qYKHy7oqZ2z6SDkPxTolY4vgHsl3QQSdrOlvaVBSzzYSDwi6SDEBGRTvk6fXSaQ0+4s+F130ZVosP6alckHYTknxK1QpBJT0Td2GzFhnFlNDclHUcR+2hFTe0Hkw5CREQ2I5PeHvhu0mEUoybK3nBSuncNjqioqf1s0kFIfukve2G4DOifdBBJM6PfLvb6vKTjKHKXVdTU9vm/SyIiBeynwJCkgyhGyxm0JOkYCsxFFTW1fX3OXklTopa0TPoY4H1Jh1Eo9k3N7osLWebSzsA3kw6H7LUFAAAgAElEQVRCRETakUkfDKgXpJve8G366hpqHRkNfD/pICR/lKglKZMuAy5KOoxCsl9q9pqkYygB31ZhERGRApNJpwgjaCzpUIrVK75DS9IxFKAzK2pqq5IOQvJDiVqyTgFUtSfLnjanPOkYSoAKi4iIFJ5Tgf2TDqKY1bWM1z3Cu5UTHgBICVKilpRMehBwYdJhFJodbdGIpGMoER+tqKk9MukgRER6g5ldY2Z3bmb7yWaW3LC5TLo/uub3WJ2PSycdQ4GaWlFTOyXpICT3lKgl52xg+6SDKDSDWLdj0jGUEFUVE5FeEydLnvV628zuNLOJScdWAE5F1/wee7lljJbx6Ziu+SVIiVoSMumtga8lHUYhMmPoDry9IOk4SsRRFTW1BycdhIj0KfcSEpLtgfcThmLf1lFjM+vXS3ElJ5MuR0WeesyddQsYMSrpOArY0RU1tQclHYTklhK1ZHwe2CbpIArV3qlX3kw6hhKiJ2wi0psa3f3N+PUMcCkw0cwGmllF3NP2aTO738zWAqeZWcrMzjezeWbWaGaRmX00+6BmVmVm95rZWjNbEvfedTgMzsz2NrMFZvajdrZVmFmLme3f5v0vxr2AW5nZ1DjW95rZE2a2xsyeMrN9u/Hf5DNARTf2kywbKF8ApkIsm6drfolRotbbQqXHs5MOo5Dtn3ppRdIxlJAPVtTU7p10ECLS95jZEOAEIHL3tVmbfgL8GpgE3E4YYfIN4FtAFaEH7q9mNjk+ziDgX8Aq4EDgOOAQ4OoOzns4MBP4mbt/p+12d28A7iEMR8x2KnCtu69vE2sNsC+wGLjerAvJQqj0+O1Ot5cOLWPw4qRjKAIfqqipnZx0EJI7StR63yfRk7XN2jv1ip6Y5dbXkw5ARPqMY8xsVVy4YwUwhdCjlO1X7n6Lu89x9/nAucDF7n6Du7/k7hcA/47fJ95/EPA5d4/c/UHgS8DHzWyX7AOb2YeAWuBr7n7pZuK8Evi0mQ2I96v8/+3dd3hb5fn/8fcteduxEscz01kQJRhCCCOQkDDa0kV/hVIKHYzS0kJbOmibDviqUFpaaGmBFmgLJFAoZZaRAoVAICHsAHGIRPbew7Kd4aXn98eRQRg7lm0dPZJ8v67rXMHSo3M+CYmk+zwLOA64vUO7K4wxzxtjQjiLgYwHhvbgz+Pz0deoPtpkSvd330oBH7k5odKXFmrJ92PbAVLdKNlSbDtDhjmnetbcCtshlFL9wovApOhxDDAP+J+IDI9p80b7f4hIMTAEeKnDeRbi9LgB+IElxpiGmOcXAZGYNgBH4fTGfd0Yc1c3OR8FmoEzoj9fCLxmjFnaod2SmP/eHP21J/OktDctQVZEhrTZzpAmzqieNXec7RAqMbRQS6aA7yTgSNsxUt1AGnVlrMTKAS6xHUIp1S/sM8asjB6vAxcBxTg9YO32xnku08M2a4BlwAUiknvQFxnTAtwFXCgiWcBX+WhvGkBLJ9eK77tTwHc0TvGoEiBkRh70/6l6nwdnn16VAbRQSy79hxMHr5iKAewN286RYb5dPWtuju0QSql+x+D0fBV0+qQx9Tg9VSd0eGoaTtEFEARqonPe2h2P8x0mGPPYbuAUnKGJj3RXrAH/AE7CuZE1ALivu99MD30jwefr15aZETraJn5frZ41V7/jZwD9n5gsAV8RHwyxUN043LNmo+0MGaYM+ITtEEqpjJcrIpXRww/cBBQBjx/kNdcBl0dXgzxERK4CpgPXR5+/B9gH3BVd/fFE4DbgYWPMytgTGWN24hRrw3AWJOmyWDPGvIczxPI64MFo0ZgYzmf+OQk7n2JlZKgO4Y/fMOBjtkOovtNCLXm+gDMZWsXhKFm+x3aGDPRF2wGUUhnvVGBL9HgVOBo4yxgz/yCvuRGnWPo9sBRnAY4zjTHvABhj9uHcaCoGXsOZX/YyH121kWj7ncDJwHDgoW561m7HGR7e2bDHvvgCToGqEsAY9u1kYKntHGlGR3FlADEmniHgqs8CvueBmbZjpIvn246Yf0HLT2fazpFh6oHytdd+usl2EKWUSgUi8lOcxUcOSeiJA755OMWiSoADJnvV+KY5Y2znSDNNQOXaaz9dZzuI6j3tUUuGgK8aZ4liFadDPBs7nc+g+qQYHf6olFKISJGITMTZw+3PCT15wDcUvTGbUHso2m07QxrKRYffpj0t1JLjXED3BuuBMsI9Wf5YxU+HPyqlFNwMLMbZFuC2BJ/7i+j3q4TaaMp0D7XeOd92ANU3+kaSHKfbDpBusmkdnkOLDtFLvNOrZ83Nsx1CKaVsMsacb4zJNcacZYxpTfDpP53g8/V7KyLDdJ5O7xxdPWuu3vhOYxlTqInIbBF54iDPny8ijcnMBEDAV4ozmVr1gAjeQ2TDBts5MtAA4DTbIZRSKiM5qz1Otx0j0wTNCN1DrXcEnfKQ1hJaqEWLJRNz7BSRJ0RkfCKvk2ZOI4MK4mSa7Fmxw3aGDKXDH5VSyh2n4KwiqRIoFBkx0HaGNKaFWhpzo4B4FqiKHh8H8oFHumosItkuZEgln7QdIF1N8SzXoY/u+Gz1rLlZtkMopVQG0s98F6wwuodaH3y8etZcXSchTblRqDUZY7ZGj8XADcB4EckXkepoT9s5IvKciOwHLhYRj4hcISIbRKRJRGpF5HOxJ41ucvmsiOwXkd3R3jtfVyFE5AgR2SIi13TyXLWIRERkSofHvxHtBcwRkZnRrKeIyKsisk9E3hCRyXH/SQR8HvRORq9NkHV6V9IdRcARtkMopVQG0kItwYyhvo4Bg2znSGNlwJG2Q6jecXVInogMAM4Gao0xsSv2/Bb4KzAB+A/O8rg/Bn4K1OD0wD0sIpOi5ykEngYagWNwNsM8Hriji+tOB+YDvzfG/KLj88aYtcAzfHSzzAuBu40xzR2yzgImA7uAe0Qk3jsTxwCD42yrOhgiu0psZ8hgx9kOoJRSGSXgmwiMsB0j0xwgZ6vtDBlAOw3SlBuF2mki0hhduKMeZ/+wczu0uckY86AxZo0xZiNwOXC9MeZeY8xyY8yVwILo40RfXwh81RhTa4x5AfgmcIaIjI09sYh8BpgLXGaMueEgOf8OnCMiedHX+XG+vN7eod0VxpjnjTEh4CpgPDA0zj+LE+NspzqRT9MI0B3ZXaKFmlJKJZZucO2CXRTrhs19p4VamnKjUHsRmBQ9jgHmAf8TkeExbd5o/w8RKQaG4OxlEmshTo8bgB9YYoxpiHl+ERCJaQNwFE5v3NeNMXd1k/NRoBk4I/rzhcBrxpilHdotifnvzdFf413qVL8M94EIBSNl2+buW6pemGo7gFJKZZgp3TdRPbXRlB2wnSEDTK2eNTfT14TISG4UavuMMSujx+vARUAxTg9Yu71xniue3pTYNmuAZcAFInLQpVyNMS3AXcCFIpIFfJWP9qYBtHRyrXj/3LRQ66NJsmqL7QwZakz1rLmltkMopVQGiX8Ou4rbct1DLRFycEaEqTSTjGXjDU7PV0GnTxpTj9NTdUKHp6bhFF0AQaAmOuet3fE4+YMxj+3GWRp3KPBId8Ua8A/gJOASnP2l7uvuNxO3gG8YzsqXqg+meN6Lt6hXPac3EpRSKhECvnyc0T8qwYJmRL7tDBlCFxFLQ24UarkiUhk9/MBNOKvMPX6Q11wHXB5dDfIQEbkKZ8PI66PP3wPsA+6Krv54InAb8LAxZmXsiYwxO3GKtWE4C5J0WawZY97DGWJ5HfBgtGhMFF1hJwEO96zWPejco8MflVIqMY4AvLZDZKJgZGSXK3yrHtFCLQ258SX4VGBL9HgVOBo4yxgz/yCvuRGnWPo9sBRnVcczjTHvABhj9uFMhCwGXsOZX/YyH121kWj7nTiTeocDD3XTs3Y7TpdwZ8Me+0KHQCTASNlWbDtDBtMeNaWUSoyjbAfIVKtMVaXtDBlCC7U0lNBNb40x5wPnH+T5tcBHlrY3xkSAq6NHV6+txekpO9i1Y3/eCRwe89Ds6NFRFbDCGPNih9fP75i1q/xdmBhnO3UQxewbZjtDBtOJ70oplRh6c9YFEUNdA4UDbefIEFqopaF+O6xMRIpEZCLOHm5/duESo104Z7/jETO4hPrdtnNkqOLqWXN1E1GllOq7w2wHyET7ydU91BKnvHrWXO2dTDP9tlADbgYW42wLcJsL5x/lwjn7pcM9qzfazpDBtMdSKaX6Tje6dsEu49M91BJLe9XSTL8t1Iwx5xtjco0xZxljWhN68oCvGChJ6Dn7sSme98K2M2QwLdSUUqovAr4coMJ2jEy0zpQ32c6QYYZ330Slkn5bqLlMe9MS6EhZGbGdIYNpoaaUUn0zlPjnr6seWG60rkgwvaGQZrRQc4cWagk0xrO50HaGDKaFmlJK9Y2+j7okaEZ0ugev6jWdo5ZmtFBzx0jbATLJYOr1jcU9Q20HUEqpNKfdPi4JRYbrgleJpT1qaUYLNXfo/LQEyqJtaB5N+23nyFB6J1gppfpGCzWXrDZDqmxnyDB64zvNaKHmDt2kOYFEEL+sX287R4bSQk0ppfpGv/y6IGJk1z7ydOpDYmmPWprRQs0dA2wHyDRTPMt32c6QoXToo1JK9U2+7QCZaB+522xnyEBaqKUZLdTcoT1qCTbZs7zFdoYMpXcrlVKqb3JtB8hEO8xA3Zon8XzVs+Zm2w6h4qeFmju0UEuw8bI+x3aGDJVlO4BSSqW5PNsBMtFaU6F7qLlDv0+lES3U3KGFWoJVye5S2xkylFTPmuu1HUIppdKY9qi5YLkZrp9N7tAbtGlECzV36D+CBMulZYSHSJvtHBlKh0EopVTvaY+aC5ZFRurcP3fod9Q0ov+z3KHzqRJsr0eaf/DeP59ukfHeet8YackvzxfJ0r+/CbDdGxHbGZRSKo1pj1qC7RPZW7Fp4/qvZdXviOSVFdnOk0l2efQzP53oF113NNsOkGkurSxbPCm/1vfJxUtmABgksq+gfEOdb+y2uoHj9jcMGJ59ILekLOLJrkZEe4h6oKrNY2xnUEqpNKbfpRLs4sryN+tzF9f8dvbroxoLh65bP+JjG3eUHlEV8eYcYjtbutPP/PSiby7u0B61BHolL3fp4tzc6SumU/eJxW1NArmC8RTu2zaycN+2kUO3vPR+24h4WvYWDllV5xu7vW7g2OaGouG5TbkDK4x4RyCi4907p0NKuyAis4FSY8xnXL7OFOB1YJQxZq2b11JKJdxe2wEyyf8K8he/nZsznSqRd0bJ/ElrNs2cGJw9BmBvQeXadSM+tm5H6aSKtqy88bazpqlW2wFU/LRQc4f2qCVIC7R8p6IsFxFPQwElmwezaOguju+qvcdEsgc0bhwzoHHjmOGb5r//eJsn60Bj0fCVdb6xu+oGjm1pLBya35xTPMSIZygi/X0YQLdv2iJSBvwK+BRQBdQBS4FrjTHPRNusBW42xlzfk4uLyHxgqTHmOz2L3XMiUg2sAY42xrzh9vWUUv1Cg+0AmaLeI+Efl5dWtX8u/+EMz9Gz/9i2yWucPT8L922tnhC6uxruZl9+2Yb1wz+2elv55NI2b94E/SyPm96cTSNaqLlDC7UEuaJs8EtNHs/M9p/vneHJ//HDkR6fxxtpzfPVrznUV7+GkRueef/xVm9uY8OAEev2DBy3J+wb07a3oKqoOWfAUMRTmYj8aeDApbeeHM8wiIeAAuDrwEqgHJgBDHYxm1JKpYN62wEyxflVFbURkWntPzflSOE/PuFZevFTkaEd2xbs3zF8/PJ7h49ffi/780o2rx9+6spt5UcPas3KP0yLti61oj3AaUULNXccsB0gE6zMzl4zt7Bgauxjrx8ik1o9rMuKMDIR18hqayoaVLdi4qC6FR96vCWroK6+uHr9noHjwuHi0WZfYaWvJatgGOLJtMJkd3cNRGQgMB34mDFmXvThdThD9drbzAdGAteJyHUAxhgRkcHAzdHXDwZWA9cbY+6Mvm42TsE3Q0QujZ5ulDFmrYhMAK4DTgT2A/OAHxhjtsa8thR4BvgJTiH5H+BSY8y+eP8ARORKnAK0EtgD/M8Y87Uu2p4G/AI4DDDRP4PvG2OC0eercXrsvgB8CzgBWAtc1t7zGHOePwHV0XPcEm9epVTK0UItAR4YUPjqipycaR0fn3ek59gzX4q8VtrAMV29Nv/A7iGHrrh/yKEr7udA7sCtG4adsnxr5TG+lqzCGkR0hfMP7I7z5qxKEVqouWO77QDpzoA5v6o8jMioDz0hIgsnypqZtSYhhVpXslv3DRy8e9nAwbuXfejxppzineHi0RvqBo6rDxdXe/YXlA9q9eaPQCRd987bFUebxuhxuogsNMZ0diPiDOAd4A4+XHTkAYuB3+F8mTkVuE1E1keLvsuAQ4AQ8PPoa3aISBXwInA7cDnOFgLXAI+KyFRjTHu36nRgS/S8w4H7geXAb+P4fSEiZ0bPfw5Qi9NTeNxBXlKIU2AtAfKBXwKPi8gEY0xsT/o1wI+BS6Jt7hORkcaYRhEZjlNQ/h34C3A48Md48iqlUpIWan20y+PZefXgktFdPf+rc71DbrytbZ84N+QOKq+prnLcqocqx616iKac4h0bhp0U2lJ5XFFL9oAaRPr7994dtgOonunvf2HdssV2gHR380DfwrDXO72z5/41wzNhRm1bq1j4+5vbXF9avvPt0vKdb3/o8f15JVvCxaM31Q0ct7e+uDprf17poDZvbjUi3X6oWNZtoWaMaRWR83EKi2+KyFvAS8ADxphXo212i0gb0NDe4xV9fBNOr1i7v4nIyTiF0TxjTFhEmoF9sa8TkW8D7xhjfhrz2NdwegCnAK9FH64HvmWMaQOCIvIAcApxFmo4vYBbcHrRWoD1QJdz14wxD8X+LCIXRDMcAyyMeeoGY8zj0TY/B74GTIq2+Xb0Ot8zxhggJCKHAFfHmVkplVp0jloffWVI5Uoj0uVNsm0lMuzFw2T+jKVmZk/Om9tcXzZ29aNlY1c/SnN20a6NQ2cs21x1fH5zju+IfrpC9E7bAVTPaKHmDi3U+mC717v9bwOLD+/q+T0DpHy7j1cqwgft+Uiq/AO7q/IP7K6q3P7Bd3yDRPbll68PDxyzdY9v7L6GASNzDuSVlEU82SMRybEYN9a2eBoZYx4Skbk4PVhTgdOAH4nIL4wxv+nqdeKstDkLOBsYirPfUA4wv5tLHgWcKCKNnTw3hg8KtWXRIq3dZuDY7n9H73sAp1dvjYg8DTwFPGaMaeqssYiMwSmojgXKAE/0GNGh6ZIOmcDprQPwA69Ei7R2L/cgs1IqteyxHSCd3e4rfmljdtYJ3bW79VOeE6YG21bltDGmN9fJaWkcPHrt3Omj186lJSs/vGnIjKWbhpyQ05Q76HBE+steeFqopRkt1NyhhVofXFBVvgqRqQdrc/+JnqzvPt7zRUWSSTCewv3bRhTu3zZiyJZF7z8eEU/r3oKq1XUDx26v84090DhgeN6B3IEVRrJsbCGwufsmjuiQx2eix1Ui8g8gICLXdxj2F+ty4Ec4xVAtzhDK3/BB0dIVDzA3+vqOYovLjlthmOhr42KM2SAih+L0wp0K/AH4PxE51hjT2YTrJ4CNwMXAJpyJ2ctwis9Y7+cyzmS99t+TUirzrLMdIF1tzvJu+dMg32HxtG3zSvYNn/c0/PTBvn/2Z7fu91Wvf+qE6vVP0erNq980ZNqbm4ZM9x7IG3wEInl9vkDq0qGPXUjV7Xi0UHOHFmq99EhR4Wvrs7MPWqQBLJwoky95gveX7E0nHhPJGrB30+gBezeNHr7phfcfj0hWU0PRsFV1A8furPONbW4sGlrQnOOrMuIZ5uIKVn35u7oM5z0kD2el02agY6E5DXjcGHM3gDi/j0Nwlvdv19nrFgNfBNZFhyS6JlqAzgXmisi1wFacRUD+F9suujDKeOASY8zz0ccm0/P30SBwpohITK9ayvQOK6V6bJXtAOnqy1WVmxE5Kt72b47zTFpXFlk4cgcfWXSkt7LaDhSP3PDs8SM3PEurN7dxS9XxL28ccqLszy+rQaQwUddJEd2uoaDb8aQWLdTcoYVaLzSKNARKS4bH09aIeF47VFZODZm0K9S64jGtub6GtYf4GtYeMnLDs+8/3ubJ2Vs/YMS6uoHjdtf5xrTtLRySyC0ENnTXIFqgPICzUMgSnPkYU3BWWpxnjGmfSL8WmC4i/wSajDE7cRb2OFuc5ZZ3At8FRgFvxVxiLXBM9E21EWce2l+AbwD/FpHf4dwFHI1TvP3IGJOQOSHRuXdZwKvRa5+N0xu2opPme6K/h2+IyAacoZzX0fPNQ2/F6WX8k4j8FajBWSFSKZWeNuDccEqVIe1p4Q+DBi7YmdX5XPSD+fU53vF/u7GtTmBgojNltTUVDd/4/NThG5+nzZO9f0vlca9uHDqzbV9BRQ0iAxJ9PQtWx9FGt+NJIToUxw2B8C4+3GOg4nBpZdniiLPaX1zuOckz1kBqj39MAG+kuXBQeOWEUeuenHbkkptnTHv550ed/MJ3K6cvvDx8xDs3145c9/SCgXUrXshubngbE+np+PP34mjTCLyCM3zxBeBdnOGL9+IUNu2uxFl5cRUfDK/4Nc58sidxVnHcC9zT4fzX43zJWRZ93QhjzGacXq0Izryxd3GKt6bokSh1OB9GC3DuGJ4JnGGMWdOxYXSlybNxVmlcGs1zRU/zGGPW46ySeRrOSpk/wJnHp5RKR4FwBOfOvYrTmuysdbN9Ayb35rXhQil99DhZ0n3LvvFGWvKHbV5w7HGvX338zBe/nzM+9M/XChs3vYQxYbev7aLlB3syZjueWcaYecaYdcaY140x1xtj7ou2mc8H2/EYETHRxweLyL9EZKOI7BeRd6MLbrWfezZOwXdp++uiN2gRkQkiMldEGkRke/Q8lbGvFZEnROQyEdkkIntE5E7p4YJtInKliKwTkSYR2Soidx2k7WkisiB6rd0i8rSI+GOer47+Hs4UkWdEZJ+ILBORj3VynpCIHBCRBTijiuLP/OH57CphAr4FkLiu+Uz3Sl7u0m9Ulk/o6X4nt97U+kZJI1PcypWOmrMH7Az7Rm3cM3BcfX3xKPblVwxqzcofgYivQ1MDFF1668lx7zmmlFKqEwHfXJyhYqobEYhMHzF0ab3X2+WiYd0yxsz+Y9uygmYmJjBaXCLibd5WftSSDcNOPtBYNGwiIoOSnaEPyi699eQub+iKs33BHuBO4CedbccjIiV02I7HGLNVRIYC5+LMY2/fjudm4JPGmHnifAd5kg7b8eD02NXibMczmw+24ykHphpjItEi7/M4W/D8kQ+24/mdMabTVZ47Dn2MbsdzJx224zHG3BxtP5uYOWrR9vDh7XgmAxOMMc0x538PZzueULTNZ4DY7XhW8NHteIaic9Ssq0ULtbi0QMt3Kspye7Mp5YMneFq/+XTGd6r1SE5LQ2nZziWlZTs/fMPxQO6gLWHf6M17Bo5rrB9Q7T2QN6jt4ttP1yJNKaX6bqXtAOniV6UlL9Z7vTP7dBIRueZL3qxf39XWJh+d4+wqj2nLqdr22pSqba8REU/rjtJJi9cPP2Vvw4ARfsRTmswsPbTjYEUa6HY8Hf4sUmI7Hi3U3LPUdoB08cuywS81eTwze/Pa5ybJlIv+x3aP6XYVwX4vr2lPVd72N6sqtr/Z/tATcLrNSEoplSm0UIvDspzslQ8XFXa7YFg8VgyVQ5eNkBcmrjczEnG+3vCYSFbFjsWTK3YsxiBtO0tr3l4//NT6cPGo8Ygn1b6XxPW9VLfjcaTKdjxaqLmn1naAdLA8O3vNfwsLev2mHfFI1lujZdlRq0yqvSGmg8W2AyilVIZI21XlkqUFWs6vqmhJ5J5lv/+CZ/IdN7Rt9RoSsbhWnwjGW7ZzyaSynUswSGRXyYQl60ecWlfnGzMO8cY9/95FcXcg6HY8QIpsx6OFmnu0UOuGAXNhVXk9IqP6cp67T/GMmryqzQi4tYR9pnqr+yZKKaXi8CbOwkL9ZePkHvtJeelL+3s5eqYr+3NlwF2neJZe8GzEeqEWSzCe0t3vHl66+10MmD2Dxi9dN/xju+oGjhtjPN5hlmL15TNft+OxtB2PrvrolkC4DmfZcdWFmwb5Foa93iP6ep7Ng2VkQz7vJCJTP6M9akoplQiBcDP6ntqlN/Jylz1bkO/KvP0nj/ZM3VPIm923tENASvaEDjtyyU0zTnrxe8OOfOuGZYN3LZ0vkdZkb5S+oLsG0ZUbnxORr4jI4SIySkTOouvteIaKSPu8vOXAKSIyTUTG4ywk0vFG/Fqi2/GISKk4axP8BfDhbMdzrIiMFpFTReRvksAtEUTkfBG5SERqxOkguID4tuMZKyIzcLbW6c12PNU42/EcKiJfoIfb8Wih5q4Xum/SP233erf/3Vfc+xWfOvjPVI8uitEzu/yh4HrbIZRSKoMssh0gFTUJBy6uKM/FWVHQFVed6y018JEVClPRoPDKCUfU3jLzpBcvG3nU4uuWl+545wWJtLi9vcPmS289OZ55lLodD6m1HY8uz++mgO88nKVGVQefGlb18obs7IRMKAbIajVN/7yuba8HShJ1zgw31x8KfsZ2CKWUyhgB35nAg7ZjpJqLKstfeDU/z/UFP77/SNv840NmptvXcUt90fCV60d8fNPOwYcNjXhzxib49P++9NaTv5Tgc6ok0Dlq7nredoBU9HBR4WuJLNIAWrMkd9lIeeWwdfZWf0ozj9sOoJRSGUZ71Dp4IT/vnVfzcqcn41o3f9Yz9ejlbWuzI1Qn43qJVty4Yexhy24fC9BYOGT1uhEf37Cj9PCqiDe3Rxskd+HFBJxDWaBDH90UCK8HVtuOkUoaRRp+VVoy3I1z33Wyx9YE3XRjgMdsh1BKqYwSCG9B56a/b69I4/crykp6s0dqb7RmSe7Np3t2JeNabivau3n0xODsGTMX/PCQY1+7anWTN6UAABwUSURBVF3Vlpfne1sPLOvDKbVQS1NaqLlPe9ViXFJZ9lZExJVlatdWypi9ubraZhze8IeCW2yHUEqpDPS07QCp4utV5W+1irhyY7YrL/s9R20qyayezcJ920b63/vnzBkLfzThuFf/b+OQzQte8LbuX0r8c5d24cz7UmlICzX3PWc7QKpYlJdX+1ZuriurPrWbe4wn7Ob5M8SjtgMopVSG0mHlwGNFBa+/m5ucIY8dXX2Od4yB+u5bpp+C/TuHjV9+34wZCy8/bOorV24dtnH+i1kte5fgLH7Rlf9deuvJuiBFmtJCzX1zcVa46deaofl7FaX5bg+BeOxYmZypb9AJpMMelVLKHfOAfr0KcZ3Hs+eK0sEjbF1/d7FUPDlFMn6f0Pym3VWHrHzgxBNf+snhx7/8yx3DN8x7Mbu58W2MaevQ9BErAVVCaKHmtkA4TIeN9PqjX5YNXtTk8SR6FaOPaM6WghVDeNvt66SxNf5QUIeHKqWUGwLhA/Tzz/yvVVUEIyIVNjPcdYpn2oFsgjYzJFNec13FuFUPnzh90U8nTVv0sz0j1z29IKe5fjHGNOIsl6/SlBZqyXG/7QA2vZedvfrJwoKErvJ4MHef7C1L1rXSkPamKaWUu/rtEv33FBe9vCYn+3jbOSIe8V57ltcYZ2+ufiWnpaF0zJrHpk9b9LPJ01/68ZOX3npyo+1Mqve0UEuOR0nspn1pw4C5sKq8AZHcZF3zveHi70930npI56cppZS7HqcffuZv93q3/65k0KG2c7RbNlImLB/KQts5bMpu3f8f2xlU32ihlgyBcD39dCWoGwf5FtZ7vUck+7pPHyU7kn3NNLAHWGA7hFJKZTTnM/8p2zGS7ctDKtYakRLbOWJde5b3iIjQX78P7ENvzqY9LdSS59+2AyTbNq932z98xYfbuPbDUz2TTD+f0N2J//pDwVbbIZRSqh/4u+0AyXTLwOKFW7OyjrGdo6O9+eL71wzPcts5LHnCHwrutR1C9Y0WasnzCE6PRr9xflX5GkR8Nq69P0+K15Wz2Ma1U9ittgMopVQ/8ST9ZPPrDVlZG/860Gflpmw8Hp3qOaE+n4xfBbIT+pmfAbRQS5ZAeD9wl+0YyfJgUeGrG7Ozj7OZ4Z8neawUiSnqFX8o2K/H6iulVNIEwhH6Qa+aAfPlIRU7ECm2neVgrjrX6zP9a6ukpf5Q8HnbIVTfaaGWXP3i7kajSMPVpSXW9lBpt2S0p6bZyyrbOVLEH2wHUEqpfuZ2oMV2CDddWzLoxT1e75G2c3RnfbmMfmOcLLKdI4lush1AJYYWaskUCIeAZ2zHcNsllWVvRUSqbOcAeO4I2Wg7QwpYDTxsO4RSSvUrgfA2Mvi9d2V29pp7i4tSbl5aV/78Oc+xrR422M6RBHuAf9oOoRJDC7Xk+5PtAG5alJdX+1Zu7jTbOdo9MN1TY/rhMskd3OAPBfvdXjJKKZUCbrEdwA1t0PaVIRX7EMm3nSVezdmSf9unPFtt50iC2/2hoC6mliG0UEu+J4H3bIdwQzM0f6+iNB+RlPl71VAgJZsH86btHBbtBu6wHUIppfqlQPgFyLyFLH5ZNnjBXo9nou0cPfVCjefobT5etZ3DRRHgL7ZDqMRJmS/U/UYgbIBrbMdwwy/LBi9q8njG2s7R0b9meApsZ7DoFr2zppRSVv2f7QCJtCQ3570nCguOt52jt371Ze8IA422c7jkMX8ouNZ2CJU4WqjZcQ8QtB0ikd7Lzl79ZGHBVNs5OvPaIXJEq4d1tnNY0IROKFZKKbsC4ceB123HSIRmaL6wstyDSI7tLL210ydVz06STBxpEyHDbgooLdTscJbtzZh/TAbMhVXlDYjk2s7SKRFZOFHW2I5hwT/9oeA22yGUUkpxpe0AifCDirKXmzyecbZz9NXtn/Cc0JTFCts5Euwefyi4xHYIlVhaqNnzIPCO7RCJcOMg38J6r/cI2zkO5l8zPBMMtNrOkUQGXZJfKaVSQyD8FJDWy8MvysurfTE/L2UWC+uLiEeyrjvTc8A4n5WZoAm4wnYIlXhaqNnizFVL+zts27zebf/wFR9uO0d39gyQ8u0+3rCdI4n+5g8FM2p4rVJKpbm0/czfL7LvO5VlAxDx2s6SKEtGe2rWVLLQdo4EucUfCvbHKR4ZTws1mwLhx4BXbMfoi/Orytcg4rOdIx73n+jJsp0hSbYBs2yHUEopFSMQngc8ZztGb3yrsuz1FpFq2zkS7ZqzvRMjzurI6ayeDF2kTmmhlgouBdpsh+iNB4sKX92YnX2c7RzxWjhRJrcJm23nSIIf+UPBOtshlFJKfcR3gRbbIXrimYL8xYtzc0+0ncMNDQVS8tA0edd2jj66zh8K7rQdQrlDCzXbAuHFwF9tx+ipBpH6q0tLRtjO0RNGxPPaobLcdg6XzfOHgvfYDqGUUqoTgfAy4HrbMeLVIFL/4/LSCkTEdha3PDDNM60xl3RdhGM9cIPtEMo9Wqilhl8CW2yH6IlLKsvfjohU2c7RU/ec5BlnnCVsM1ETcIntEEoppQ7qamC17RDxuKCqYkmbyFDbOVwlItec481P0wXHvuEPBffaDqHco4VaKgiE64Ef2I4Rr5fy82rfzs2ZbjtHb2wfKEP3FLHYdg6XXOsPBTO9x1AppdJbILwfZ9pDSnu4qPC193JzMmKVx+6sqpJxS0bJS7Zz9NCd/lDwf7ZDKHdpoZYqAuF/Ayn/D64Zmr9XXlaQzsMgHjzBk453zbqzAvit7RBKKaXi4CzX/4DtGF3Z7fHsCpSWjLKdI5muP8MzJY3msW8Gfmg7hHKfFmqp5WIgbDvEwfyibPCiZo+MsZ2jL56bJFMiwnbbORLsEn8o2GQ7hFJKqbhdBqTkwk9fHlKxwoiU2c6RTE05Unj7xz3rbeeI07d10bD+QQu1VBIIrwW+ZTtGV97Lzl79VGHBVNs5+irikay3Rssy2zkS6F/+UPBZ2yGUUkr1QCC8BbjIdoyO7vQNeCmdVnROpGcne47bNYDXbefoxn3+UPAx2yFUcmihlmoC4fuA2bZjdGTAXFhV3ohIru0sifDPkz2jDBjbORJgE85dWaWUUukmEH6IFFr5eavXu/WGQQMn2s5hU+Bcb5WB/bZzdGEbzhYPqp/QQi01fRdIqUUh/jTIt6De6z3cdo5E2VQqIxvyedt2jj5qAc7yh4I7bAdRSinVaz+E1Pg8OndIxUYjMtB2Dpu2lciwFw+TV23n6EQbcK7umda/aKGWigLhRuAcoNl2FHDusN3hKz7Cdo5E+89UT6reMYvXj/yh4Mu2QyillOqDQLgJOBtotBnjhkG+F3dkZU2xmSFV3PopzwnNXlbZztHBlf5Q8DnbIVRyaaGWqpyNsC+3HQPggqqKtYj4bOdItKeOkqMisNt2jl661x8K3mQ7hFJKqQQIhJdjcY762qys9Xf4iifbun6qafNK9p/+n6fBdo4YT6ArO/dLWqilskD4JuAWmxEeGFD46sbsrIycVNyaJbnLRkqt7Ry9UAt803YIpZRSCRQI3wPcmuzLRiDy5SEVexApSva1U9kbh3gmrS8jFfZWCwFf8YeC3c6rF5GhIvI3EdkoIs0isklE/i4iw5KQU7lAC7XU9z3gGRsXbhCp//XgkpE2rp0sd53sSbc3r23AZ/yh4N7uGuobtlJKpZ3vAv9N5gWvHjxoQb3Xm3HTGxLh6i95DzF2t1AIA5/zh4Ldbt0kIqOAN4DDgPOAscBXgInA6yJS7V5M5RYt1FJdINwKnAUEk33pb1eWvx0RqUz2dZNpbaWM2ZvLUts54nQA5w27231e9A1bKaXSkPOZ/0XgzWRcLpiTverBAUUZOWomEcJFUvbYcbLE0uVbgS/5Q8F4F5f7CxABTjXGzDPGrDfGPA+cGn38LwAiMl9Ebo59oYjMFpEnYn4WEfmJiKwSkf0iUisiX+nwmqEicp+I7Ikec0VkXMzzARFZKiJfip6nQUT+IyKlMW1qRGSeiNSLSKOIvCMiJ/XwzymjaaGWDgLhMPAZIGkr/SzMz1vyTm7O9GRdz6a5R3vSYdNIA5znDwXjXYlK37CVUiodBcJ7gU8Da928TCu0nl9V0Zwp2+645d6Znmn7cng3yZeN4HzmPxVPYxEpAU4D/mKM2Rf7XPTnvwKfFJFBcV7/18DXgUuBCTjz424TkU9Hr1cAPI9zA3kGMBXYAjwbfa5dNc5COZ8HPg4cCVwT8/y90dcdA0wCAtFzqigt1NJFILwaOJ0krArVDM2XlZcVIiJuXysVPHacTDZQbztHN67wh4L3x9NQ37CVUirNBcLbgE/i4oJXs8oGL9zn8fjdOn+mMCKe35zt9RpnefxkucQfCt7bg/bjAKHr0VfLos+P6+L594lIIc6WERcZY54yxqwxxtwL/B3newDAl6Lnu8AYs8QYEwIuBopwOhbaZQHnR9u8DPwNOCXm+ZHAM8aYkDFmpTHmkWg7FaWFWjoJhF8GPgV0Oz+pL35eNnhRs0fGuHmNVNKcLQUrhqTGHjZduNIfCl7TfbP36Ru2Ukqlu0A4BHwOF25YvZmbG3y6sGBaos+bqZYPk/HLhrMwSZf7sT8UvM2lc8ez7dMEIA94Kjq6pVFEGoFvA+3fDY8CRgENMc+HgUExbQDWGWNi59dtBspjfv4j8A8ReU5EfiEi43v328pcWqilm0B4AfBZwJU9wEI52aueLiw43o1zp7K7T/aW2c7QhR/6Q8GrXTq3vmErpVQqC4QX4gyDTNgN2ibhwDcry3MQyUrUOfuD33/Be2RE2ObyZX7tDwWv78XrVuBMkZjQxfMTcOa8rcEZVtlxxFR2zH+31wafxRnd0n5MxBkN097m7Q7PTwIOAWKLzJYO1zEx58cYE4hm+w9wPLBERC7s8nfZD2mhlo4C4edxhkEm9C6bAXNhZcVeRHISed508N5w8R/ITv6CLQcRAb7pDwVv6MVr9Q1bKaUyRSD8HPAJEjRE/7sVZa/2p1EzibI/T4rvOtnj5ibYN/pDwSt680JjzG7gKeCSDlMO2qcnXAo8Er1ZugOo6nCK2FU/lwFNwMjo6JbYY120zWKcRcp2dtKmR8N1jTErjDE3GmM+DdwOXNST12c6LdTSVSD8LPD/cP4xJcQNgwYuaPB6Dk/U+dLN05MlaYu1dKMVZ8+Uv/fmxfqGrZRSGSYQfglnMag9fTnNi/l577ycl9cvFgpzw3+P8RxfV+jKipzXA9/v4zkuBbw488NPFpHhIjITZ4unFpztngCew5mnfrqIHCoifwSGt5/EGNMQzXO9iFwoImNFZJKIfEtE2vdwvQdnu6BHRWSGiIwSkRNF5A+xC4kdjIjki8hfRGSmiFSLyLHANJzvHSpKC7V0Fgg/DXyMPr5xA2z1erfe6Rswqe+h0tfDx3uOMLCv+5auagK+4A8F/9XH8+gbtlJKZZJA+HXgJJwbbD22V6TxsoqyQYjod78+uOoc72CTuJvkEeAyfyj443g2tD4YY8waYArwLnA3zqqhz0evMckYszXa9I6Y4yWgAXikw+muwFnQ6/Lo+Z4BzsQZidO+MNmJwGrgAZxNuefgTHmI9ztpW7T9bOC9aIaXcebFqygxpk9/L1QqCPjGA0/irKrXK6cNG/LqpuysYxOWKU39/vbWhdXbsTXBeh/w//yhYEI2OBdnY+v/w1mAphLnxsxC4HRjzJ5om2zgTzirMYKzbP9IoNQY85loGwG+wwfz0upxhjr+3hjzTLRNBXAtzlwKH878s+eBnxhjdopIAPiCMeawmHznAzcbY4rEGW47G2fIYxWwC3gCuNwYk+orciqlVPIEfH6cL85De/Kyc6sqXqzNyz3RnVD9yw8eaXthasjM6ONpDgBf9YeCDyYiU2dE5DvAH4CzjDGPuXUd5R4t1DJFwFeB88V2Sk9f+sCAwlevKh3c74s0gMNXR2p/+e9IjYVL1wOf9oeCrq0qpW/YSimVIQK+KuBhIK7NqucWFrwxq7y0x98PVOeyWk3TnD+0bcmO9PoG+R7gc/5QcEECY3VKRL6Ic5P1T8YYVxaiU+7R7u9M4ey5MhN4vCcvaxCp//XgkpGuZEpDS0Z7apq9uDlZuDNrgZPcLNIAjDE3A18FJopIvpvXUkop5aJAeAvOZ/6d3TUNezx1Py8bPMz1TP1Ia5bk3ny6Z1cvX74emJaMIg3AGHO/Mea3WqSlJy3UMkkgvBdnM+FrcVbU69a3K8vfjohUuporzTx3hGxM4uXuByb5Q8HFybiYvmErpVSGCISbCIQvxFmEorWrZl+rqlimn/OJ97Lfc9TmEhb18GXzgGP9oaDOv1Zx0UIt0wTCbQTCP8OZK3TQVQwX5ucteSc3R1d/6uCB6Z6aBE4U7sp+nOX3z/aHguFuWyullFKdCYT/DJwGfGSV3fsGFL2yOie73+2NmixXneMdY+LbNqENuBL4uD8U3NpdY6XaaaGWqQLhJ3H2sup0OF0zNF9WXlaIs1CEitFQICWbS1xZfrfdUmBKb5ffV0oppT4kEJ6HM0f95faHdng9O34zeFBcK++q3tldLBVPHSVvddNsE3CyPxS82h8KRpKRS2UOLdQyWSC8CWcM+2/pMBTy52WDF+mGl13710yPW3O4bgWO1mEPSimlEioQXgNMx1lWvfXLQyrXGJHBdkNlvjmneqYdyCbUxdP/xZne8GIyM6nMoas+9hcB30nAP4DRoZzsVWcNqRyOsyS66owx5t7ft63PipCohVbqgIv8oeBDCTqfUkop1amHrh9yVKBs8D3Aobaz9AcT10XevfLeiF8+6AA5gLMX2R/6uj+a6t+0R62/CISfB2qAG75eWd6gRVo3RGThRFmToLMtwrmjpkWaUkop1515+eY3caY/XI+z4bFy0bsjPRNXDHl/qsnzwOH+UPB6LdJUX2mPWj9UM6fmKOAW4GjbWVLZoAaz/dab20oEsnp5ivXAL4B79M1aKaWUDTVzaiYDNwG6qIiLivab1X+7se2qmmXBObazqMyhhVo/VTOnxgN8E/gNMMhynJR1019bX6kIx7ehaIwwzrzAP/tDwQMuxFJKKaV6pGZOzbnA74GhtrNkmAhwG/DL2vNqP7LyplJ9oYVaP1czp6YMuBq4ANDhkB1Mr4288d0nIlPibN6C01N5tT8UPOjWCEoppVSy1cypKQR+BvwIyLMcJxP8F/hF7Xm1b9sOojKTFmoKgJo5NcOAHwPfANxa8TDtiDGRe3/XttVrGNJN0weBn/lDwZXJyKWUUkr1Vs2cmpHAz4Hz0Zu0vfE8Tg9aTze8VqpHtFBTH1Izp6Yc+CFwCTDAcpyU8INH2uZPDZmZXTz9MnC5PxTUN2ullFJppWZOzXDgp8BFQK7lOOngFZwCbZ7tIKp/0EJNdapmTs0g4LvAZUCJ5ThWldeZTTfd0lYVs+yuAZ4GbvKHgv+1GE0ppZTqs5o5NVU4o2ouBgosx0k1EeBx4Mba82qfsx1G9S9aqKmDqplTUwR8G6eXrdJyHGtuvan1jZJGxgB3ArfoEEellFKZpmZOjQ/4Kk7BdpjlOLbVAXcAN9eeV5uo7XqU6hEt1FRcaubUZAGnAF8CPg/47CZKGgMsOOHdyK2XPRZ51B8K7rMdSCmllHJbzZya44FvAWfRvxYeeQWYA9xde17tXtthVP+mhZrqsZo5NbnAaThF22eBQruJXLEauAu4S++kKaWU6q9q5tSUAGdEj1PIzMVHaoF/AffpZ75KJVqoqT6pmVNTgFOsfQn4JOk7GXk/sBCYBzwLLK49r1b/cSillFJR0aGRnwHOBD5B+s5niwBvAk8B/649r/Zdy3mU6pQWaiphom/gM4DjgGOBo0ndlSPbgNdxCrN5wKLa82qb7EZSSiml0kP0Ru3xwIk4n/3Hkto3a1cDz0SP52rPq91jOY9S3dJCTbmmZk6NB5jAB4XbcdGfPQd7nUu2AiuBt3B6zF6oPa82bCGHUkoplXFq5tTk4XzWnwgcCUwExgBeC3G24XzeL44eb9aeV7vWQg6l+kQLNZVUNXNqBuD0tB0KjIgew6O/VtL7u3EG2IRTjHU8VtWeV9vYt+RKKaWU6olo8TYeZwXJicBIoArn876K3i9MZoAtwDpgffTXdcAa4J3a82o39y25UqlBCzWVUmrm1BQCpcDg6K85QAvQHD1aOvza/t97as+r3W8js1JKKaV6rmZOTT5O0TYIyMeZ85YDZOH0xEWAxpijIfprfe15tS02MiuVTFqoKaWUUkoppVSKsTFXSLlIRKpFxIjIFNtZlFJKKWWHfh9QKv1poeYyEZkdfaO8vZPnfhd97gkb2Q4mmvuJDo/pm75SSinVC/p9QCnVU1qoJccG4Isi8v7G0CKSBXwNZxKsUkoppTKffh9QSsVNC7XkWAKsAL4Y89ingQPA/PYHRORoEfmfiOwUkXoRWSgiU2NPFL2D9U0ReUBE9orIahH5SifXHCkiz4jIPhFZJiIfizmHV0RuF5E1IrJfRFaIyE9ExBN9PgCcB3w6ej0jIjNxVlMCeD362HwXciullFKZSr8P6PcBpeKmhVry3A5cGPPzhcCdOEvMthsA3A1MB44B3gb+KyKDO5zrSuBR4Ajg38AdIjKiQ5trgBujbV4H7hORouhzHpyl7L8I+IFfAD8HLog+fz1wP85+Y1XRY1E0E8Bp0cfOcCG3Ukoplcn0+4B+H1AqPsYYPVw8gNnAEzhLz+4HxuEsRduEs3fYbOCJLl4rOPuEfCXmMQP8NubnLGBfexugOtrm4pg2Q6OPTTtIzmuBZzvm7tCm/dxTuvk99zi3HnrooYceemTyod8H4suthx56fHBkfbR0U24wxuwRkUdw7pzVAfONMetF5P02IlIOXA2cBFTg7CGSj/MGHmtJzHlbRWQHUN5VG6B948f324jIt4CLcDafzAeycTaL7LEE51ZKKaUyln4fiDu3Uv2eFmrJdQcwB2ezxis7eX4OzhvbD4C1OHfZ5uFs/hir4yaPho8OY32/jTHGRD8A2secnw38CbgcZwhDPXAp8Pke/n7cyK2UUkplOv0+0H1upfo9LdSSax7QDJQC/+nk+WnA94wxcwFEpAJn7HeiTQNeNcbc3P6AiIzp0KYZ505Yx8fo5PFk5VZKKaUygX4fUEp1S+9eJJExxgCHA6OMMU2dNFkOfEVEJojI0cB9fPBmmEjLgcki8kkRGSciVwAzOrRZCxwmIoeKSKmIZAPbccbVf0JEKkTEl+TcSimlVNrT7wNKqXhooZZkxpgGY0x9F09fCBQBb+K8ud2B8waZaLfhrOJ0L84KUNXAHzq0+TsQBN4AdgAnGGNage/hjGXfjLNiUzJzK6WUUhlBvw8opbojzk0dpZRSSimllFKpQnvUlFJKKaWUUirFaKGmlFJKKaWUUilGCzWllFJKKaWUSjFaqCmllFJKKaVUitFCTSmllFJKKaVSjBZqSimllFJKKZVitFBTSimllFJKqRSjhZpSSimllFJKpRgt1JRSSimllFIqxWihppRSSimllFIpRgs1pZRSSimllEoxWqgppZRSSimlVIrRQk0ppZRSSimlUowWakoppZRSSimVYrRQU0oppZRSSqkU8/8BEYtQnRe8c8cAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# subplot\n", + "import matplotlib as mpl\n", + "\n", + "fig,ax=plt.subplots(3,2, figsize=(14, 10), constrained_layout=True)\n", + "\n", + "\n", + "ax[0,0].pie(count_sum_df['airbnb'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'], \n", + " textprops={'fontsize': 14})\n", + "ax[0,0].set_title('NYC - Airbnb')\n", + "\n", + "\n", + "ax[0,1].pie(count_sum_df['park'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 14})\n", + "ax[0,1].set_title('NYC - Park')\n", + "\n", + "ax[1,0].pie(count_sum_df['hot spot'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 14})\n", + "ax[1,0].set_title('NYC - Hot Spot')\n", + "\n", + "ax[1,1].pie(count_sum_df['hotel'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 14})\n", + "ax[1,1].set_title('NYC - Hotel')\n", + "\n", + "ax[2,0].pie(count_sum_df['shooting'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 14})\n", + "ax[2,0].set_title('NYC - Shooting')\n", + "\n", + "ax[2,1].pie(count_sum_df['public housing'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 14})\n", + "ax[2,1].set_title('NYC - Public Housing')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 169, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 169, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+wAAAFSCAYAAABohlWkAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdd1QVx9vA8S+9CIq9YEHQiwWx94piL7HF3kvs5mcsSdSoscWY2FuiMSY2rNh7C7aAXbAgiKCAvSC9XNj3D9678YaLYgXN8znHk8PuzOzs7izh2Z1ipCiKghBCCCGEEEIIIbIU48yugBBCCCGEEEIIIdKSgF0IIYQQQgghhMiCJGAXQgghhBBCCCGyIAnYhRBCCCGEEEKILEgCdiGEEEIIIYQQIguSgF0IIYQQQgghhMiCTDO7AkIIIT4tYWFhNGrUyOA+IyMjzM3NsbOzo2zZsnTo0AF3d/fXKt/T05Nvv/2WsmXL4unp+S6qnKlCQ0P54YcfOH/+PPHx8eTJk4cdO3ZgY2OT2VXLcqKjo4mJiSF//vyZXZW38uIzcuHCBbJly/bejvX777/z448/vjTNwYMHKVas2CvLatiwIeHh4fzyyy+4ubm9qyp+cnx8fOjVqxd2dnb4+PhkdnWEEB85CdiFEEK8Ny4uLpibm6s/K4pCYmIiYWFhHD16lKNHj9KtWzcmT56cibXMPFqtlgEDBhASEoKVlRVOTk6Ym5tLsG7A7t27mTVrFtOmTfvoA/YPKSAgAAAnJydy5MhhMI2lpeWHrJIQQojXIAG7EEKI92bBggUULlw4zfakpCQWL17ML7/8wvr166lbty4NGzbMUJmNGzemfPnyn0SQ4e/vT0hICMbGxnh6euLo6JjZVcqy5s6dy6NHjzK7Gu9E/vz52bt3LwDW1tbv9Vg3btwAYPbs2bi4uLzXYwkhhHj3ZAy7EEKID87MzIxRo0ZRsWJFANavX5/hvLa2tjg5OWFvb/++qvfBPH36FIDcuXNLsP4fYmZmhpOTE05OThgZGb234yQnJxMUFISRkRFOTk7v7ThCCCHeHwnYhRBCZBrdOFg/P79MrknmSE5OBtAbNiDEuxISEkJCQgKFCxfGysoqs6sjhBDiDUjALoQQItPoxmrHxMSo2xYtWoSzszMrV65Uu8u7urrSqlUrbt++jaenJ87OzrRv3z5NedHR0Sxfvpx27dpRqVIlKlSoQIcOHVi/fj0pKSlp0icmJvLHH3/QoUMHKlasSIUKFWjXrh0rV64kISHhtc8nMjKSRYsW0bp1a8qXL0/FihVp3749v/32G/Hx8Wq6sLAwnJ2dGTx4MADh4eE4Ozvj7Oz8ykmqXnV9dK5evcro0aOpW7cuLi4u1KhRg8GDB3P69Ol0y3748CGzZs2iadOmlCtXjsqVK9O1a1c2bdqEVqtNk75hw4Y4OzsTGRnJ3r176dSpExUqVKB69eqMGDFCrU9oaCijR4+mRo0alCtXjjZt2rBjx44MXVPd/Q4PDwdg8ODBODs74+npyaxZs3B2dmbQoEHp5v/2229xdnZmyZIletdv+fLlBAUFMXjwYKpWrUqVKlXo1q0b+/fvT7es6OhoFi9erN7fSpUq0aVLFzZt2qS+fMkI3f13dnbWa/s9e/bE2dkZPz8/fHx86N+/P9WqVaN8+fK0a9eOdevWGWzH6dF1hy9RokSG82TUjh07aNeuHa6urtSuXZsxY8YQFBSUbnpvb2+GDRtGrVq1cHFxoU6dOowaNcrgyzrdPZ86dSoHDx6kcePGlCtXjiZNmnD+/Hk1XUhICJMmTaJhw4a4uLhQrVo1+vbty759+9KUmd411wkICFD3/1tycjKbN2+mY8eOVKpUiWrVqjF8+HACAwPV9rRo0SKD5x0TE8OCBQvUZ6pOnTqMHTuWO3fupEmrKAqbN2+mW7duVKpUCRcXFxo0aMDo0aPx9fVN99oKIT5tMoZdCCFEptH90VqwYME0+w4ePMilS5ewt7fH3t6e2NhYihQpovcH+4vCw8MZOHAgQUFBmJiY4OTkRFJSEleuXOHKlStcvnxZb7bsiIgIBg4ciK+vL8bGxhQpUgRLS0tu3LjBtWvX2LNnDytXriRnzpwZOpeQkBD69u3L3bt3MTExoWTJkqSkpHDt2jWuXr3Kzp07WblyJXnz5sXCwoJKlSoRGRnJzZs3MTc3V8cX29raZuh46V0fgHXr1jFjxgySk5PJkSMHpUqV4v79+xw7doxjx47Rv39/xo0bp1fexYsXGTx4MBEREZibm1OyZEliYmK4cOECFy5cYM+ePSxdutTgjOZz587Fw8ODPHnyUKxYMYKCgjh48CAXL15k3rx5DBkyhISEBIoXL86jR4+4ceOGevzPPvvspeeZO3duKlWqxJUrV0hMTKREiRJkz56d3Llz07ZtW1atWsWpU6eIiIjAzs5OL29CQgIHDx7EyMgozXECAwP59ddfiYmJQaPREB0dzfnz5zl//jy9e/dm/PjxeunDwsLo168ft2/fxtTUFAcHB1JSUrh48SIXL17k4MGDLF269J30ltixYwdr167FwsICBwcHnjx5wrVr15g6dSrBwcFMnDgxQ+W8OOHcoUOHOHLkCHfv3sXOzo4aNWrQoUMHLCwsXrt+K1as4Pz589ja2lKyZElu377Nrl27OHjwIMuWLaN27dp66efMmcPy5csByJMnD6VKlSI0NJS9e/eyf/9+JkyYQI8ePdIc59KlS2zcuBE7OzscHBzUF1sAhw8fZvTo0cTHx2NtbY2zszPPnj3j9OnTnD59msOHDzN79mxMTExe+/xelJSUxOjRozlw4AAAjo6OmJqacvjwYU6cOEHlypXTzZuYmEi3bt3w9/fH3t4eBwcHgoOD2blzJ8eOHWPbtm3qMwswefJkNm7ciJGREcWKFSNbtmyEhYWxe/du9u3bx8KFC197VQ0hxCdAEUIIId6h0NBQRaPRKBqNRgkNDU03XUREhFKjRg1Fo9Eo06ZNU7cvXLhQzT9jxgwlJSVFURRFefLkiaIoirJ161ZFo9Eo7dq10yuvR48eikajUTp16qSEhYWp2318fJQKFSooGo1G2bFjh7p90KBBikajUTp37qzcvn1b3X737l2lW7duikajUYYMGZKhc05MTFSaNm2qaDQapUePHsq9e/fUfbdu3VJat26taDQapVu3bnr5jh49qmg0GsXNzS1Dx1GUV18fb29vxdnZWXF2dlZ++eUXJSkpSVEURUlJSVG2bdumuLi4KBqNRtm0aZNa5rNnz5Rq1aopGo1GGTlypPLs2TN13+XLl5X69esrGo1GGTNmjF5d3Nzc1LosX75c0Wq1iqIoys2bN9VrXqpUKaVv375q/RITE5Vhw4YpGo1Gadu2bYbPW3eso0eP6m3XXVsPD480efbu3Zvmur94/dzc3JQbN26o+3bt2qWULVtW0Wg0ypEjR9TtWq1Wadu2raLRaJTBgwcrjx49UvcFBgYqzZs3VzQajTJ9+vQMncuLz0h0dLS6XdeGNRqN8u233ypRUVHq8WfNmqVoNBqldOnSyoMHDzJ0nCFDhigajUa9F//+17hxY+XWrVsZKktR9O/3+PHjlbi4OEVRFCU2NlYZO3asotFolJo1ayqRkZFqnm3btikajUYpW7assnnzZrW9arVaZfny5WpbPXnypJpH94xrNBplxIgRSmJioqIo/7TxW7duKeXKlVN/d8TGxqp5vby8lCpVqigajUaZN2/eK6+5zo0bN9T9L/rtt98UjUajVK9eXTl37pxeend3dzXPwoUL1X3e3t7q9mrVqileXl7qvqCgIKV27dqKRqNRJk2apG4PCAhQNBqNUqNGDSUgIEDdnpCQoEyZMkXRaDRKo0aNXnp/hBCfJukSL4QQ4oNRFIXIyEiOHz/OgAEDePr0Kba2tvTv3z9NWjMzM7788kt1Uq5cuXKlW+6FCxc4c+YM1tbWLF26VG9COl33VUDthu3n58exY8fImTMnS5cupWjRomr6ggULsnDhQqytrTly5Aj+/v6vPK89e/YQHBxMnjx5WLp0KQUKFFD3FS9enOXLl2Ntbc25c+fw8vJ6ZXkZkd71Wbp0KYqi0LlzZwYNGoSpaWpnOiMjI9q2bcvo0aMBWLhwodqNe926dURERKDRaJgzZ47el2pXV1eWLl2KkZERu3bt4ubNm2nqUqtWLQYOHKh+zXRyclJn/Tc3N2fevHlq/czMzOjTpw+Q2mVbUZS3ug5t27YFUu/Bv+3cuRMw/BXfyMiIJUuWoNFo1G2tWrXiiy++AFC/CAMcOnSIa9euUbx4cebPn0+ePHnUfSVKlGD+/PkYGxvj4eHBkydP3up8dGXOmDFDHTJiYmLCqFGjsLS0JDk5OcNzPui6xFtYWDBjxgy8vb25fPkyv//+OxqNhtu3bzNw4ECio6Nfq36urq5MmzZNXanBysqKmTNn4ujoyJMnT9i+fbuadvHixQCMHDmSjh07qu3VxMSEgQMH0rNnTxRFYf78+QaPNWrUKMzMzIB/2viKFStISEigbt26TJw4UW98fr169fjhhx8AWLVqFc+ePXutc3uRVqtV28GMGTP0vqZrNBoWLVr0ykkDv/32W+rVq6f+7OjoSO/evYHUXi06ut4QFStWpGTJkup2c3Nzxo0bR+3atalRo4bB7vxCiE+bBOxCCCHem0aNGqnjQp2dnSlVqhRVq1ZVu6LrAmZDXeI1Go3B7teG6IJgNzc3cufOnWZ/586d2bNnD8uWLQPgyJEjANSsWdPgi4DcuXNTs2ZNAI4fP57h47du3dpgl/YCBQrQuHFjAP76668MnNGrGbo+MTExnDt3DoBu3boZzNe5c2fMzc15+PAhV69e1at/p06d1AD/RWXKlKFy5cooimKw/i8GJDq6lyYuLi5p1v/WBbzJycnExcW97DRfqXXr1piYmHDu3DkePHigbo+IiODEiROYm5vTrFmzNPmqVq1K6dKl02zv1KkTAJcvX1Zn8de1F3d3d4NdyDUaDRqNhqSkJLy9vd/qfADq1q2bJhA0NzdXl0jMaID92Wef0bp1a9asWUPHjh3JmTMnlpaW1K5dm3Xr1lGgQAFCQ0Nfa5UGSG1Dxsb6f0KamprSpk0bAE6cOAFAUFAQoaGhGBsb06VLF4Nl9erVCwBfX980Lzvs7OwoXrx4mjy6ZzK9Nu7u7k6hQoWIj49/q/tx8eJFIiIiyJs3r8FlJ0uVKvXSLvG6uvybbk6BiIgIdZuua7yXlxe//fabXlu2srLi999/Z/r06Rn+nSiE+HTIGHYhhBDvjYuLi96YXmNjY6ytrcmfPz8VK1akefPm6a5DnTdv3gwfRzcW/sUvUy+ysbHRm3hLNznWuXPn6Nq1q8E8YWFhAAQHB7/y+CEhIQAGA0CdMmXKsGPHDjXt2zJ0fUJDQ9FqtZiZmaV7LaysrHB0dFTXgHd1dc1w/c+dO2ew/vnz50+z7d9fRV/04kuBt/3CnjdvXmrVqsWJEyfYs2cP/fr1A2Dfvn0kJSXRtGlTsmfPniZfemuSFyhQAFtbW6KioggLCyNXrlxqe9m/f3+6cyjcv38fyFh7eRVD1xNQXxZkdOK5kSNHprsve/bsdOvWjblz53L06FG1Z0FGpNdOdG1Odw10baVw4cIG7wGkBqq66x0SEqL3ws1QG4+OjubRo0dAapt8WR3v3r37Vs+b7r5rNJp0v6SXLl1afUn2b9bW1moviX9vB/QmtnR1daVx48YcOnSIn376iZ9++glnZ2fq1KmDm5sblStXTvOSRAjx3yABuxBCiPdmwYIF6lfB1/U6k2HpvlSlF/z/m+4L5cOHD3n48OFL00ZFRb2yPF031Zd9/dLte1ddWg1dH13ZVlZWL/3jXneddOl1/zUUXKSX50UvWzLsfa4zrtO2bVtOnDjB7t271YD9Zd3hgXQDSEi9V1FRUeq917WX0NBQQkNDX1qXjLSXV9G97EjP277k0ClVqhQAd+/efa186T1nuu26XhMZeS50+aKiotK0LUMT+L2Y5mXlvqy9ZpTu98rL2vfL6vC6ExAuWLAADw8PNm/ejL+/Pzdu3ODGjRusXLkSe3t7xo8fL5POCfEfJAG7EEKIj55uLG1Gu1fr/gAfN26cwfHzr0sXHLysq7IukMvoS4U3oQse4uLiSElJSTdo19VTVxdra2siIyNfWv9/58lK3N3dsbGx4erVq4SEhGBhYcHFixexs7Mz2F0f0Ftm799056pbIUDXXhYsWGCwe31WFh8frz4f6XnVC4J/S+850wXHupchGXku4PWejRfTREdHp7uqwsvaq6EXHobag+6+vyzof5djyk1MTOjRowc9evTg3r17/P3335w6dYq//vqL8PBwRo4cyaZNm9LtHSKE+DRJ3xohhBAfPQcHBwCDE6IBPHnyhI4dO/LVV1+h1WopVqwYALdu3Uq3zGvXrnH9+vUMjRfWjbO9fv16uml048VfnODuXStSpAgmJiYkJSWpk1j9W2xsrNplWXcddPW/du1aumXr6q/Lk5VYWlrStGlTIHW8+dGjR1EUhZYtW6YbjKbXVsLCwoiOjsbMzEy9VxlpLxcvXiQgIOClLwI+pGPHjuHq6krNmjVJTEw0mEbXXp2cnF6r7PS6mevK0w0/0bWr8PBwIiMjDeYJDg4mNjYWyFjbsrW1VbvKp9deFUVR9+nKfHEYhqHrYainje48AgMD0+3VEBgY+Mo6Z0R0dDS+vr6Eh4cDqZNftm/fnjlz5vDXX3+h0WhITk42OLmiEOLTJgG7EEKIj17dunWB1Andnj9/nmb/oUOH8PPzIygoCFNTUxo0aACkrmWum1jsRVFRUfTp04e2bduyb9++Vx6/fv36AOzevdtgl+j79++rE5fVqVMnw+f1urJly0bVqlUB8PDwMJhm06ZNJCUlYWdnR9myZYF/6r9582a0Wm2aPFeuXOHSpUsAadbY/lB0XevTC5x0s8UfPXpUnUTvZWu8nzp1Sh0L/aLNmzcDqRMS6oYI6NrL9u3b9cYd64SGhtKjRw9at26tN/N3ZipTpgxJSUnExsZy6NChNPtjYmLYtGkTwGv3GnhxFnid+Ph4dbubmxuQ+iKgaNGipKSksGHDBoNlrVu3DkgdJ57ReSt0vSbSa+OHDx/mwYMHmJmZUb16dUB/CISheQaOHj2aZluVKlWws7Pj8ePHBiefvHPnDmfPns1QnV9l9uzZfP755/z6669p9tna2qpf1TM6f4EQ4tMhAbsQQoiPXs2aNSlfvjxRUVGMGDFCLxA7c+YMc+bMAaBv374AVK9enapVqxIZGcmgQYO4ffu2mv7BgwcMHTqU58+fkzdvXlq3bv3K47do0YLixYvz+PFjhg4dqk5ABqnBwRdffEFcXBwVK1akUaNG7+q0DRo6dCjGxsZs3LiR5cuXqwG4oihs375dvRYjR45Uvz537dqVXLlyERAQwJgxY/Rmr/b19WXEiBEoikKzZs3UIP9D03VtTm+8ddWqVbG3t+fixYt4e3vj4OBA+fLl0y0vLi6OESNG6H1Z3bZtGytXrsTY2JgRI0ao21u1aoWDgwO3b99O075CQkIYOnQoWq2W0qVLq6sLZLb8+fPTqlUrAKZOnYqPj4+67+HDhwwdOpTw8HBKly6doTb+Ii8vLxYsWKC2raioKL766ivCw8MpXrw4LVu2VNMOGzYMSF1GcOvWreoLl+TkZH777TfWrl0LoC43mBH9+/fH0tKSEydOMH36dL0u+sePH2fChAlA6gz0uhUJrK2tcXZ2BmDu3LnqizWtVsvq1avZtm1bmuNYWFioQ2YmTJjA5cuX1X137txh2LBh6tKIb0t3D7Zs2cKOHTv0XkydOXOG/fv3A4ZXZBBCfNpkDLsQQoiPnpGREfPmzaNPnz74+Pjg5uZGyZIliYqKUicJ69ixo/oVFmDOnDn0798fX19fmjZtSokSJTA2NubWrVskJSVhY2PDihUrXjn+F1Inl1qyZAkDBgzgzJkzNGrUiBIlSpCSkqJ2p3V2dmbevHnqWuXvS/Xq1ZkwYQIzZsxgzpw5rFy5kqJFi3Lv3j010Ozduzfdu3dX8+TKlYvFixczZMgQ9u3bx5EjRyhZsiQxMTFq9+fq1aszbdq091r3l3F2diYgIIBZs2bh6elJjx49aN++vbrfyMiINm3asGzZMpKTk9UlxtJTtGhRrl69SsOGDdFoNDx79oy7d+9ibGzM+PHjcXV1VdPq7m///v3x8vKiQYMGlChRgqSkJEJCQkhOTqZAgQIsXbr0vZ3/m5g0aRLBwcH4+fnRq1cv7O3tyZEjB4GBgSQlJVG0aFGWLVv22mPYGzduzNKlS9mwYQOFChXi1q1bxMbGkjdvXhYtWqQ32Vrbtm0JCAhg5cqVjB8/nnnz5qnLyUVERGBiYsLYsWPVXgwZ4eTkxE8//cSYMWNYs2YNW7duxcnJiadPn6pdyps3b86oUaP08o0cOZIRI0Zw7tw56tevj4ODA/fu3ePp06f07t0bT0/PND1k+vXrx7lz5/Dy8qJTp044Ojpibm5OYGAg1tbWFCtWjNu3b7/1c121alX69u3LqlWrGDduHD/++CMFCxbk2bNn6jl17tw503q4CCEyj3xhF0II8Umwt7fH09OTYcOGUaxYMYKCgnjy5AmVKlXi559/ZsaMGXrp8+fPz+bNmxk7dixly5YlPDycW7dukS9fPjp37syOHTteuszZvzk5ObF9+3aGDBlC8eLFCQkJ4d69e5QrV47x48ezefNmg+vNvw89evRg48aN6hju69evY2xsTNOmTfnjjz8YP358mjyVK1dm165d9OrVi4IFCxIYGEhERARVq1Zl5syZ/PHHHy+dWf19++abb2jUqBHm5uYEBwcb7Nas6wKvC95fpnTp0qxfv57q1asTHBxMfHw8bm5urFmzhp49e6ZJX6JECXbs2MGQIUNwdHQkJCSEO3fuULRoUfr168e2bdsoVKjQuznZd8TW1pb169fzzTffULZsWZ4+fUpwcDAODg4MHz6c7du3v1GbHDNmDJMmTSJnzpzcuHEDW1tbunbtyrZt2wwuJzhu3DhWrVqFm5sbWq0Wf39/smXLRtu2bdm0aZPa8+V1NGnShO3bt9OxY0fs7Ozw9/cnISGBunXrsmjRIubPn5/mRYS7uzt//vkndevWVV/OFS5cmNmzZxt8JiB17PvSpUv59ttvcXZ25u7du9y7d4/GjRuzZcsWdf30jLzYe5Wvv/6aWbNmUa1aNZKTk/H39yc2Npa6deuycOFCpk6d+tbHEEJ8fIyUd7U2iBBCCCFEJvLx8aFXr15UqVJFHRv9b4sWLWLx4sU0bdqUhQsXfuAaik/N559/jq+vLz/99NMrXxIJIcSbkC/sQgghhPgkeHp6AtChQ4dMron4FMTExFC3bl169uxpcCm7R48eqTPjlylT5kNXTwjxHyEBuxBCCCE+Wv7+/oSHh7N69Wp27txJrly59CY9E+JNZcuWjRw5cnDmzBnmz5+vt0LA/fv3GTVqFElJSVSpUkVdAk4IId41mXROCCGEEB+t7777Dl9fX/Xnr7/+GgsLi0yskfiUjB8/nkGDBvHHH3+wdetWihYtSlxcHHfu3EGr1VKsWDF+/PHHzK6mEOITJgG7EEIIIT5aFStW5MaNG+TJk4eBAwfqrQQgxNuqVasWe/bs4ffff+fs2bMEBwdjYmJCyZIladKkCT179sTW1jazqymE+ITJpHNCCCGEEEIIIUQWJGPYhRBCCCGEEEKILEi6xItM9+xZDCkp0tFDfHi5c9vw5El0ZldD/EdJ+xOZSdqfyEzS/kRmymrtz9jYiJw5s6W7XwJ2kelSUhQJ2EWmkbYnMpO0P5GZpP2JzCTtT2Smj6n9SZd4IYQQQgghhBAiC5KAXQghhBBCCCGEyIIkYBdCCCGEEEIIIbIgCdiFEEIIIYQQQogsSAJ2IYQQQgghhBAiC5KAXQghhBBCCCGEyIIkYBdCCCGEEEIIIbIgCdiFEEIIIYQQQogsyDSzKyCEEEIIIYR4PVptEjExkSQkxJGSkpzZ1XktDx8ak5KSktnVEP9R77P9GRubYGFhRbZs2TE1NXsnZUrALoQQQgghxEdEq03i6dMHWFvbkitXAUxMTDAyMsrsamWYqakxWq0E7CJzvK/2pygKycnJxMfH8PTpA3Llyv9OgnYJ2EWmy53bJrOrIP7D8ua1fW9lxyclEhWR8N7KF0II8d8UExOJtbUtNjY5MrsqQoj/Z2RkhKmpqfpcxsREkiNH7rcuVwJ2kemG7ZrAo9inmV0NId65TZ2XEYUE7EIIId6thIQ4cuUqkNnVEEKkw9IyG0+f3n8nZcmkc0IIIYQQQnxEUlKSMTExyexqCCHSYWJi8s7mlpCAXQghhBBCiI/MxzRmXYj/mnf5fErALoQQQgghhBBCZEESsAshhBBCCCGEEFmQBOxCCCGEEEIIIUQWlCUD9iNHjjBo0CBq1qyJi4sLderUYciQIRw5csRg+ocPH7J169a3OubJkyfx9fV9qzLelrOzMw0bNnztfGFhYTg7OzN06ND3UKuM++yzz3B2ds7UOgghhBBCCPFfER4ehlarzexqiPcoywXs06ZNY+jQoQQGBtKoUSP69u1LrVq1uHDhAkOHDuW7777TS//kyROaNWuWbjCfEevXr6d///48fPjwbasvhBBCCCGEEO+VVqtlxYpl9OzZicTExMyujniPstQ67D4+Pqxdu5amTZsyd+5cTE3/qV5UVBS9evVi06ZN1K9fH3d3dwDi4uKIiYl5q+M+efLkrfKLt7Ok9YzMroIQ70VichJ589q+UV5tYgLPnsv/gIUQQgiR1qNHD/nzz5WZXQ3xAWSpgP2vv/4CoHv37nrBOoCtrS2jR4+mf//+HDp0SA3YxcfvzuLBaJ8/yuxqCJGlOE7YCkjALoQQQgjxX5alusQnJSUBEBAQYHB/lSpVmD9/Pn369AHA09OTRo0aAanj3p2dnfH09FTTHzt2jAEDBlCjRg3Kli1LjRo1GDp0KNevX1fT9OzZk8WLFwMwbNiwNGOw9+3bR5cuXahYsSKVKlWid+/eeHt766XRjSFftGgRR44coYqzjBwAACAASURBVGPHjri6ulKzZk0mTpzI06dP3/ia3L59my+//BI3NzdcXFxo2LAhU6ZM4dGjVwe44eHhTJ48GXd3d8qVK0fFihVp3749Hh4eeuk8PT1xdnbm77//ZuXKlTRp0gQXFxfc3d1ZtmwZycnJeunj4+OZO3cuDRs2xNXVlU6dOnH27Nk3PkchhBBCCCGEEGllqS/stWvXZs2aNfz444+EhITQqlUrXF1dMTExAcDS0pLmzZur6UuXLk2vXr1YvXo1xYsXp2XLlpQuXRqAtWvXMm3aNIoWLUqrVq0wMzPDz8+PI0eO4O3tzf79+8mXLx/t2rUD4MyZM7Ro0QJHR0e1/AULFrB06VLs7e1p164dRkZG7N+/n759+zJr1iw+++wzvfofO3aMpUuX0qBBA6pXr86pU6fYvHkzN2/eZMOGDa99PZ4+fUqfPn149uwZTZs2JV++fNy4cQMPDw98fHzYuXMnZmZmBvOGhYXRsWNH4uLiaNy4MQULFuTBgwccOHCAKVOmkJycTI8ePfTy/PTTTwQHB9OsWTPc3NzYs2cP8+fPJz4+nlGjRgGQkpLCwIEDOXPmDK6urjRu3Bg/Pz/69euHlZXVa5+jEEIIIYQQGbFy5a+sWrWCoUO/xMrKij//XElkZCT29vb88MMcChcuwo0b/mzYsJaLF88TEfEMGxsbypYtR8eOXahatbrBch8/foyHxxpOnz7Bgwf3MTMzw9GxBM2bt6JFi9Zpev527Nia+/fvsW/fMc6c+ZuNG9dz69ZNLCwsqFChEkOGjKRw4SKEh4exYsUyzp3zITY2liJFitGtW0+aNm3xVtdhxowp7Nu3W/25SZN6AGzevJMJE8YREODP0KFf0q1bT4P5O3X6jLt3w1myZAXly1dk+PAvuHTpAr/8sornzyP488+V3Lp1k2zZsuHi4krPnv0oVaq0wbLu3g1n7do/OHvWh8ePH2FtbU3ZsuXo1KkbVapUe6vzFKmyVMDu5uZG165d8fDwYO3ataxduxYbGxsqV65MrVq1aNasGQUKFFDTly5dmt69e7N69WocHR0ZMWIEAImJicybNw8HBwe2bduGtbW1mmfKlCl4eHhw7NgxOnfuTPv27QkPD+fMmTO0bNlS7Wrv6+vLsmXLqFatGsuXL1eD0eHDh9O5c2cmT55M3bp1yZUrl1r21atXmT9/vvpS4X//+x/t2rXj4sWLBAUF4eTk9FrXY+/evdy9e5eZM2fSoUMHdfvUqVNZt24dp06dokGDBgbzLl++nGfPnrFq1Spq1aqlbu/Roweff/45u3fvThOw37lzh+3bt1OsWDEgtfdBs2bN2LJlixqwb9u2jTNnztChQwemT5+OsXFqJ43Zs2ezcqWMoxFCCCGEEO+Xl9dRrl71o0CBghQsWJC4uDgKFbLH03MzCxb8THJyMra22SlZUsPDhw85deoEp06doFu3ngwd+qVeWVeu+DJu3CgiI59jbm6Og4MjcXGx+Pldxs/vMkeOHOSHH+boxRM6v/66hO3bt5ArV24KFy7K7dvBeHkd48oVX77//ge++eYrEhMTKVKkGPCYoKBApk2bBPBWQXuRIkUpVaoM/v7XAHBxccXIyAhzc3OaNWtJQIA/hw8fMBiw+/ld5u7dcAoWtMfVtYLevgMH9rJ9+xb1Ojx4cA8vr2OcOnWCSZOm07Ch/pBkH5+/mThxHHFxcVhaWlK8uCMRERGcPn2S06dP0q/fF/Tr98Ubn6dIlaUCdkgNqBs0aMDatWvx9vYmOjoaLy8vvLy8+Omnn+jXrx+jRo1SA0VDkpOTmTZtGvny5UvzcFWrVg0PD49XTjS3ZcsWFEVh3Lhxel+Oc+bMycCBA5k4cSL79u2je/fu6r4iRYro9QAwMzOjZs2aBAYGEh4e/toBe0pKCpD6IqBt27ZqT4NRo0YxZMgQ8ubNm27eNm3aUL58eb1gHcDV1RVLS0uD59+kSRM1WAcoXLgwTk5O+Pv7k5CQgIWFBXv27MHIyIjRo0fr3YP//e9/bNq0iaioqNc6RyFE+t50wjrx8ZB7LDKTtL+P18OHxpiaZqmRra/tTepvbGwEwNWrfnTp0o0vvxyNkZERERHP8PO7xLx5swEYMmQ43bv3wtTUFEVR2LdvD7NmTWf9+jU4OBSnTZu2ADx//pyvv/6KyMjnNGrUmHHjxpMjRw4Arl27yrffjuX8+bPMnTuLKVOmp6nP9u1bGDZsJN269cTExISQkGD69u3BkydPGDlyMFWqVOP772eQM2dOtNokJkz4Bi+vY2zcuJ6WLVu96aWjX78BNGvWgvbtU8tYuHCpGvM0b96CJUsWEBDgT3j4HYoVc9DLe/jwfjWdmVlqbGFklHpdt23bTI0aNfn++xnkyGGHVpvE4sUL2bBhHbNmTaVSpYrkyZMaf9y9e5dJk74lLi6Ofv0G0rfvALXn7/HjXnz//Xf8/vtynJ2dqV/f7Y3P9X35EM+PsbHxO/k9m+UCdoAGDRrQoEEDYmJiOHfuHH///TdHjx7l9u3bLF++nJSUFMaOHZtufisrK1q0SH1rFRwcTFBQEHfu3CEwMJC///4b+CcYTs/Vq1cBOHjwoDoZns79+/cB9MbCAzg4OKQpx9Y29Sa9yXILTZs2ZcmSJaxbt469e/dSp04d6tWrR/369V8arEPqeP8qVaoQERHB9evXuXPnDsHBwVy6dImEhIQ049IzUn8LCwv8/f0pVKgQuXPn1ktnbm5O2bJl04zvF0K8uUeP5AXYpyxvXlu5xyLTSPv7uKWkpKDVvvxv2azM1NT4jeqfkqIAqR/F+vUbTHKyAijY2OTg999XoCgKbdt2oHv3PgDqMZo0aUFERAQLF85l+fJlNG3aEhMTEzZv3sjz5xE4OZXgu++mYWpqqubRaErzww8/079/Tw4c2Ef37n0oXtxRrz5VqlSja9deKErqsQoXLkadOvU5dGg/ZmZmTJkyE1vb7P9fpgmdOnXHy+sYQUGBJCUlq4Hym0hO/uf6abX/tAdb2xxUr16T06dPsH//Pvr3H/RCOi1HjhwCwN29mZpHUVKva758+Zk2bTZWVlZqnYcPH4W//3UuXbrAxo0bGDRoGABr1/5JTEw0zZq1pF+/QXrXu1atugwePJw5c2bx22+/Urt2/Tc+z/fhTdvf60pJScnQ71ljYyNy57ZJf/+7rNS7li1bNurXr88333zDgQMHmD59OkZGRqxdu5a4uLiX5j179izt27enWbNmDBs2jPnz5xMUFETZsmWBfxpmenRfipcvX87ixYv1/m3ZsgVIfSv3InNz8zTlvM2DmD9/frZs2UKHDh1QFIVdu3YxduxYateuzaRJk176EuD58+d888031KlThz59+jB58mQOHTqEk5OTwXq+qv666xUZGUm2bNkM5te9kRRCCCGEEOJ9KV7cSa8XbWxsLJcuXQCgXbvPDeZp06Y95ubmPH78iIAAfwBOnz4JQOvWbdOMUwfQaErh6loBRVH4+++TafbXqFErzbYCBQoCUKpUGbJnz663TzeUNjk5mfj4+Fee55tq1qwlAIcPH9Db7uPzNxEREZQp40LRosXS5GvZso3BOalat07tkXD69Al128mTxwFwd29qsA6NGjXByMiIwMAAnjx5/GYnIoAs9IU9Ojqa9u3bU7x4cX799dc0+42MjPj888/Zv38/J0+e5P79+xQvXtxgWeHh4QwYMABLS0umTZtG5cqVcXBwwMTEhL1793L48OFX1sfa2hoTExMuX76c7sRuH0KRIkWYOXMmycnJXLlyhRMnTuDp6cnGjRuxtbVNt6fB2LFj8fLyokuXLnz22WdoNBpsbFLf3OzateuN65M9e/Z0u73Hxsa+cblCCCGEEEJkRJ48efR+vns3nOTkZExNTdN8BdextLSkaFEHbt4MIDT0DqVLlyU09A4AJUuWSvdYGk0pLl++qKZ9Ud68+dJs0wX+dnZ26e6DV388fBt16tTDxsaW0NA7+PtfVyeMO3hwL5D++PlSpcoY3O7omDqsNywsFIDY2BgePnwAwPLlS9JdD97Y2Jjk5GTu3LlN7tx5DKYRr5ZlAnYbGxuioqI4ffo0jx8/TvMgvih1PEBql3BDX7APHz5MfHw848aNo1OnTnr7goKCAP2HxFAZzs7OXL9+nevXr+Pq6qq379KlSxw+fJgGDRpQpUqVjJ/kazpy5AgnTpxgzJgx2NjYUL58ecqXL0+HDh1o0KAB58+fN5gvMjISLy8vXFxc+P777/X2hYWFkZCQ8Ma/JMqWLcvx48e5e/cuhQoVUrcnJyenGSKQUUWH//JG+YT4lKVoE2V86X+A3GORmaT9ZVx8gpaoyJf37hQfzr97hcbGxgBgaWn10nmudF+Pdel1/zU0oVx6eV5kaZn+Cklv08v2bZmbm9OwoTs7d27j0KH9lCpVmtjYGE6ePI6pqSmNGjUxmE83FPbfrK1Te9cmJCSg1WqJifnnWgQE3HhlfWJiot/gLIROlgnYAbp3786iRYsYOXIk8+fPJ18+/bdWR44c4fTp0zRu3Fj9Wqx7U6Vbwx3AwsICSF2i4UX+/v6sXr0aSB3DoaMr48Uu5u3atWP79u3MnDmT3377TT1edHQ0U6ZM4fr169StW/ednHd6bt26hYeHB/b29gwcOFDdHh4eDqAXML/IzMwMY2NjIiMjSUxMVH+pxcfHM23aNED/er2Odu3acfz4cWbNmsWcOXPU3gcrV65Mc70zqv/0gzx8Jv8TFEIIIUTWtGvOZ8iI/6zLyio14I6PjyMlJSXdoF0XOOrSW1lZEx0dZTAYTy/Px6JZs5bs3LmNY8cOM3z4/zhxwouEhATq1Kln8Os/QEKC4W76umuQLVs2TE1N9V5U7N59ON3yxLuRpQL2wYMHExAQwIEDB2jSpAl16tTBwcEBrVbL5cuXuXDhAo6OjkyZMkXNkzNnTszNzfHx8eGHH36gcePGuLm5MWfOHH799Vdu3bpF0aJFuX37NseOHVPfHEVERKhl5M+fH4Bly5Zx/fp1hg8fTo0aNejZsydr1qyhZcuW1K9fH3Nzcw4fPsy9e/fo0qUL1asbXsvxXenUqRObNm3i559/5syZMzg7O/PkyRP279+PtbU1X3xheJkEKysrGjduzIEDB/j888+pXbs2sbGxHDt2jMePH5MjRw6ioqJe+gstPS1atODAgQPs37+f4OBgatasyc2bN/H29sbe3l59mSCEEEIIIcSHYG9fGBMTE7RaLbduBVGiRMk0aeLi4rhz5/b/py8CQNGixbh27QoBATcoX76iwbJv3PDXy/OxcHWtgL19YcLDw7hx47o65vxly8kFBwdTtWqNNNtv3gwEwMEhdbiBra0tdnY5iYh4xu3bIdjZVUiTJzk5mQsXzlGwYCEKFiykrnYlXl+WmnTO1NSUhQsXsnjxYurWrYufnx+rV69m8+bNJCQkMHr0aLZt26a39rm5uTmTJk0iR44crF+/Hm9vb/Lnz8+qVauoUaMG3t7erF+/nuDgYHr27Mm+ffuws7PjxIkTarfwFi1a0Lx5c0JDQ1m/fr0adE6cOJHZs2dTsGBBdu7cybZt28iTJw8zZ85k8uTJ7/165MiRg7Vr19K1a1dCQkL4888/+euvv6hXrx6bNm2iVKn0x9vMnDmT3r17ExUVxdq1azlx4gTlypXDw8ODtm3bEh8fj4+PzxvVa+7cuYwZM4bExEQ8PDx49OgRixcvfml9hBBCCCGEeB+sra2pUKESkLrUmiE7d3qi1WrJkSOHOqa7Vq06AOzevV2v962Ov/91rl71A6BatbSBbGYyMnoxjDM81FUXnHt5HePsWW9sbGypXbteumUeOLA3zbBZRVHYvXsHAPXqNVC316xZG4AdO7YaLOvgwX2MGjWMvn27vXKycPFyRsr7nPFAiAyQLvFCCCGEyMp2zfksSy2Dd//+bQoUSDvL98fiTZfVWrnyV1atWkGDBg2ZPn223r4LF87xv/8NRVEUvvhiGF279lDXYT9wYC+zZ88gMTGRr776mvbtU2eSj4iIoEePz4mIeEbDho0ZM+YbsmdPXfXo+vWrTJz4NQ8e3MfNzZ1p02apx+rYsTX379/jxx/nUbu2/hDZl9Xx3r27fP55GwAOHjz+0rHzrxIZ+ZwWLRoBsHr1BhwdS6RJEx4eRpcu7bC0tCQuLo7Wrdvx9dcT0qQbPvwLdZb9tm07MGLEV1hYWJCYmMiSJfPZunUTuXPnYf36LWTLljpMODj4Fv379yQxMYGePfvSp88AdViyj8/ffPfdN8TGxtCpU1dGjhz9xuf5PnyoZd0y+py+alm3LNUlXgghhBBCCCFeV6VKVfjyy9EsWDCHX39djIfHGuztC/Pw4QN1WbFOnbqqwTqkzuQ+c+ZPfP31Vxw9eoiTJ70oXtyJ2NgYdVb4SpWqMG5c2iA3s2XPnoN8+fLz8OEDhg37Anv7wowfP1md0R1ShwqUK1ceX99LADRrln53eIDixR3Zvn0rhw8fpEiRIoSFhREVFYmtbXamTv1BDdZ1aSdO/J7p0yexZs0qtm7dRNGixYiIeMb9+/eA1HXqhwwZ+R7O/r9FAnYhhBBCCCHER69Dh86UKePChg3ruHTpAoGBN8iZMxcNGjSkXbvPqVy5apo8rq4VWL16A+vXr+Hvv08SHByElZUVFSpUonnzVjRv3uq153z6UKZN+5H582cTFBREeHgYd++G6QXskNot3tf3EgULFsLVNe1Y8xe1bduB7NlzsH79aoKCgsiZMycNG7rTo0cfChZMO9l1w4buODmVwMNjDefOnSEoKBBTU1NKly5D48bNad/+c4Pr24vXI13iRaaTLvFCCCGEyMqkS/y79aG6JIt/uuj36TOAAQMGG0yj6xI/atRYOnTo/IFr+OF9bF3is+brIiGEEEIIIYQQbywlJYX9+/diZGRE8+atMrs64g1JHwWR6VZObJLZVRBCCCGESFd8QtoZxIXIihITE7l9OwQrKytWr/6de/fCqV27Lvb2hTO7auINScAuMt2TJ9GkpMjIDPHh5c1rm6W6OIr/Fml/IjNJ+xMi882bN5uAgBuvnW/UqLFoNIaXU1aUFPr27ab+bGFhwbBhX75xHUXmk4BdCCGEEEIIIT6woKCb+Pldfu180dHR6e6zsLCkVKky3Lp1EwcHR0aO/IqiRR3eopYis8mkcyLTyRd2kVnkC5PITNL+RGaS9vdxk0nnhHhzMumcEEIIIYQQQggh3poE7EIIIYQQQgghRBYkAbsQQgghhBBCCJEFScAuhBBCCCGEEEJkQRKwCyGEEEIIIYQQWZAE7EIIIYQQQgghRBYkAbsQQgghhBBCCJEFScAuhBBCCCGEEEJkQRKwCyGEEEIIIYQQWZAE7EIIIYQQQgjxhhRFyewqiA8gs+6zaaYcVQghhBBCCPFe2Ga3wtLi4/kzPz5BS1Rk3Dsp68KFc4wcOTjD6Tdv3knBgoXe6FjJycls376V8PBQRo4crW5fufJXVq1awYABg+nTZ8Ablf2mOnZszf379/D03EO+fPk/6LE/pJ49O5EvXwHmzFn4QY7n73+NOXN+ZMWKPz/I8V708TzJQgghhBBCiFeytDCl9egdmV2NDNs15zOi3nGZVlZW1K3bIAPprN/4GEeOHGLevNk0b97qjcsQr+/Bg/sEB9+iTZv2H+yYgwf3Q6vVfrDjvUgCdiGEEEIIIcQnJUcOOyZNmvZej6EoKQa3d+jQGXf3ptjZ2b3X4/9XeXufBqBGjVof7JiZOexBAnYhhBBCCCGEeEfs7OwkWH+PvL1PU6iQPUWKFM3sqnwQErALIYQQQggh/vM6dmxNXFwsnp57+OOPlRw+fIDHjx+RJ09e3N2b0qtXP6ysrAAYPvwLLl26AMC+fbvZt283ffsOpH//QQbHsM+YMYV9+3azePFyPDzWcPbsGbJly8bgwcNp2bINALdvh7B69UrOnTtLZORzcufOQ5069ejduz85c+Z6rXNJSEjgt99+4eDBfTx69JCcOXNRv35DBgwYRLZsNmnSHziwlx07PLl5MxCtVkuRIkVwd29Kp05dsbCwVNPp5gjo3r037u5NWbFiKZcvX8TIyIjy5SsycuRo7O0L4+V1jLVrV3HrVhC5cuWhXr0GDBw4BEtLS73jRkZGsnbtHxw/foyHDx9gbW1NhQqV6N17ACVLatLUU6vVcv78WZo1a6G3/eHDB2zYsJYzZ7x58OA+ycnJ5M6dl+rVa9C7d3/y5s2npl2x4hdWrlzOzJk/Ex8fz9q1qwgLCyN37jy4uTWkR4++ZM+eHYC9e3cxc+b3at46dapQoEBBtmzZ9Vr3423ILPFCCCGEEEIIASQnpzBmzJds3LiOAgUKUrVqdZ48ecKaNauYMmW8mq5q1eqUK+cKQKFC9jRp0pwSJUq+svwff5yOn58vNWrUwtLSSg1Kz5zxpn//Hhw4sI+cOXNRu3ZdzM3N2bJlI/379yQ8POy1zuObb75izZpVFCxYiCpVqhEVFcXmzR6MHj2SlJR/uvKnpKQwZcoEpk2bhL//dVxcylG9ek0eP37Er78uYciQAURFpZ1hwN//GoMG9SU4OJjKlauRLZsNp06dYOTIwXh4rGXChLEAVKtWg4iIZ2zcuI4ZM6bolXH//n0GDOjJ+vWr0Wq1VK9ei8KFi+LldYxBg/pw6tSJNMf19b1EbGwMNWrUVrcFB9+ib99ubNrkgYmJCdWr16RcuQpERDxl+/atDB7cj9jYmDRl7dmzg6lTJ5KSkkKtWrVJSkpk/fo1DB8+kMjI5wDY2xemSZPmGBkZAdCkSXPq1WvwWvfibckXdiGEEEIIIYQAoqOjuHfvLn/8sZ6iRR0AuHXrJgMG9ObUqRPcvh1CsWIO9O7dnwIFCuLn50v58hWZMGFKhsp/9uwpf/65gfz5C5CSkoKxsTHPnj1j8uTxJCUlMWPGT9Sv7wakjptevfp3VqxYxrRpk/jll99f6zxWrVqHo2MJAMLDw+jTpxtXrvhy5Yovrq4VANi6dROHDx+gSJGizJ27WJ0xPzY2hilTJnD69El+/nkm33//g17558+fpUWL1nz99URMTEyIjY2lV6/O3L9/jyVL5jNlygzc3ZsCqQF1nz5d8fI6SmTkc7JnzwHA1KkTuXs3nO7de/PFF0MxMTEB4OxZb77+ejTTpn2Hh4enXu8Cb+9TmJubU6lSFXXb0qULeP78OSNHjqZTp65613rw4H6Eh4dx8uRxmjRprncOp06doGvXngwdOhIjIyMSEuKZOPFr/v77FL/99gtfffU15ctXpHz5ihw5cpDk5OT3Pi+CIfKFXQghhBBCCPFJuX//HnXqVHnpvwUL5hjM27t3fzVYB3B0LEGFCpUACA4Oeqt61avnRv78BQAwNk4NxXbv3kFUVCQdO3ZWg3UAIyMjevfuT6lSZdRAO6P69h2oBuuQ+qVYV3ZQ0E11+6ZN6wGYMGGK3vJ21tbZmDRpOjY2Nhw9epj79+/rlW9iYsKIEV+pQba1tTU1a9YBoGLFymqwDlC8uCMODo6kpKRw9244AFeu+OHrewmNphSDBw9XywGoWrUGHTp0Ijo6mt279Vc78PY+TfnyFfW61ufPX5D69d3o2LGzXtqcOXNRr17qOT94oF9/ACenEgwZMkL9em5hYcn48ZMxMzNj377dJCYmGriyH558YRdCCCGEEEJ8UjKyrFupUqUNbi9TxiXNtty5cwMQF/d268Ub6jZ/8eI5ACpWrJJmH6R2K/f3v8bFixdwcXHN0HFcXMqn2aZblz06OrWL+4MH97l37y758uU3WK6NjQ3Vq9fiyJGDXL58gQIF/hk3XqyYA7a2tnrpdRPtGRp7rkubkJAaBP9zzpXVgPlF1arVwMNjDRcvXqBnz75A6jj1W7eC1DH/OmPGfJMm/+PHjwkM9Ccw8AYASUlJadK4ubmrL010cubMRdmy5bh06QL+/tfUngiZSQJ2IYQQQgghxCflbZZ1s7FJOymb7gvw2y7vZWubPc22hw8fAKnjzl9Gly4jbGxs02zTnUNycjKQGtQCFChQMN1yChWyB+DJkyd623Xd2g152T6dBw9Sz2XjxnVs3Lgu3XQvnvM/y7nVTpMuMPAGnp5buH79KuHhoeqLFd3LAEP3rXDhIgaPmT9/6osN3fXJbBKwCyGEEEIIIcT/M/TF91359xdd+CeArlu3PlZW1unmzcikdv8c59XnkJGXD7q6mZub6W03MXm7MDIlJbXcsmXLYW9fON10Ly6P5+19moIFC1GsmINemrVr/+CXXxYDqd3c69Vzw8HBkbJlXbhw4Rx//PGbwbKNjU0MbtddFhOTrDF6XAJ2IYQQQgghhMgkuXPnITT0Dl269KR8+Q/XBTtPnrwA3Lt3N900ujHnOXPmfqfHzp07DwA1a9ZWl757Ga1Wy7lzZ2jSpFma+i1fvpTs2XMwZ85CSpcuq7ff0EzzOo8fPzS4/f79e8A/QwgyW9Z4bSCEEEIIIYQQH5F39SVeN6Gdt/cpg/tnzvyeAQN6cfKk1zs5nk6BAgUoUKAgjx49NDihXXR0NGfPemNsbEyFChXf6bF15+zjc9rgl/7t27fSs2cn9ev4P8u51dJLd/36NVJSUqhatXqaYD0lJYXz588ChnsT/P132uv95Mljrl27gp2dHRpNqTc7uXdMvrCLTJc7d9pxQkJ8KHnzph3j9SmLT0okKiIhs6shhBBCfPTMzc2B1MD2bbRp044NG9ayYcNaSpUqozdT/N69u9i3bzdmZmYGJ8N7W506dWPhwjnMmDHlX8u6xTJ16nfExMTg5uaufhF/VypVqkKJEhr8/HxZvnwp/fsPwtQ0NTQNCPBn+fKlREY+x8kpdaZ7b+/TmJmZUalSVb1ydOPN/fwu6y0Zl5CQwKJF87h5MwCAxMS0f/ucPevDzp3baNOmHZA6oeCMGd+j1Wpp376T+0/4RAAAIABJREFU3sz15uYWxMXFEh0dbXCOg/dJAnaR6YbtmsCj2KeZXQ0h/hM2dV5GFBKwCyGE+LQ9fx7B1KnfvTJd/fpu1K/f8I2OUbhwUQBOnTrO11+Polatunz2WfvXLidfvvyMHz+FqVMnMmHCWBwdnShSpChhYWEEBQVibGzMxIlTyZXr3XZLB+jYsTNXrvhy9Oghunf/nAoVKmFpaYmv70UiIiLQaJwNzsL+toyMjPj++5mMHDmYNWtWceDAXjQaZ6Kjo/H1vURKSgodO3ZRZ/r38TmNq2tFrK31x/iXLl2WcuVc8fPzpUuX9ri6liclJQU/P1+ioiJxcHAkJORWmknzIPW6z549g127tpE/fwF8fS/z9OkTKleuRo8effTSFilShICAGwwf/gXFizsyefL0d35N0iMBuxBCCCGEEJ+Q+AQtu+Z8ltnVyLD4BO07LzMuLo6DB/e9Ml3q+uRvFrCXKFGSQYOGs2WLB2fP+mBrm/2NAnaAhg3dKVKkCOvWrebixXOEht4hV67cNGjQkB49+qa7BN3bMjY25vvvZ1KjRi127dqGn99lQKFIkaJ0796HDh06qT0J3rVixRxYtWod69b9yalTJzhzxpts2Wxwda3w/2vSp96Xhw8fEBR0k6FDv0xThomJCT/+OI/ff1/B6dMn8PY+jaWlFSVKlKRNm/ZUr16DVq0a4+NzGq1Wq37Fh9SeDXZ2Odm4cR1BQacoVMieLl160KlTV710AP/H3n2HVVn/fxx/MgREEBRxJKK4cCvulTgxLffMkaRlaqZmWpaZOyyzHA1Tc2vmLsy9tRy4V6gpOBEURQEFBM7vD36crydQ8YiC8npcl9cV9/059/2+DzfE69yfMXToZ3z99XiCg4O4ceO6ydP8Z83C8LRrE4g8JT1hF3l+lnb6ievXIzO6DCFpOIa+F5JRdP+92K5du0D+/IUzugyzWVtbEh+fmNFlSBY1Z84MfvllBu+80ydNE96ZK60/p5aWFo8cIqxJ50REREREREQyIQV2ERERERERkUxIgV1EREREREQkE9KkcyIiIiIiIpIlvPtuH95+u3dGl5FmCuzPwKlTp1i8eDEHDx4kJCSEHDlyULhwYVq2bEmrVq3Inj17RpcoIiIiIiIimZy6xKejxMREJk+eTNu2bfH396dYsWJ069aNhg0bcv36dUaOHEnr1q05d+5cRpcqIiIiIiIimZyesKejqVOn8tNPP+Hl5cXkyZPJnz+/cV9CQgILFizgq6++okuXLvz555/kyZMnA6vNPH5oMT6jSxDJMuIS7uPq6vjINvFxsdy6HfecKhIRERGRh1FgTyeBgYHMmDGDQoUKMWvWLBwcTNfSs7KywtfXl3v37jF58mTGjh3LlClTMqjazOXi932Iv309o8sQkf9XdPgKQIFdREREJKOpS3w6Wbp0KQkJCfTp0ydFWH9Qr169cHFxYdOmTdy4cYPLly/j6elJv379UrSdNm0anp6ebN682WT7hQsXGDJkCLVr16ZcuXI0a9aMn3/+mfv376c4xvXr1xk1ahT16tWjXLlyNGzYkIkTJxIVFWXSbtiwYXh6enL79m1GjhxJnTp1KF++PG3btmXDhg0pjrtgwQLatm2Ll5cXlStXpkuXLqxbty6tb5eIiIiIiIg8hgJ7OtmyZQsADRo0eGQ7GxsbvL29SUhIYNu2bU98npMnT9KuXTvWr19PzZo18fX1xcnJiW+//Za+ffuSkJBgbHv16lXat2/PkiVLKFu2LL6+vnh4eDBr1iy6d+/O3bt3Uxz/7bffZteuXTRr1owWLVpw9uxZBg4cyO7du41tZsyYwbhx4wDo3Lkzbdu25eLFiwwaNIjVq1c/8TWJiIiIiIhISuoSnw7i4uIIDQ0lZ86cuLi4PLa9h4cHAJcvX36i8xgMBoYNG0ZcXBxLliyhXLlyxn1+fn7MnTuXJUuW0LVrVwBGjRpFaGgo06dPp379+sa28+fPZ/z48Xz//fd8/PHHJuewsrJizZo12NvbA1CrVi2GDBnCihUrqFu3LgC//PIL7u7uLF26FGvrpFvonXfeoUmTJixYsIDWrVs/0XWJSObzuHHukj70PktG0v334goLs8Ta+sV+7vai1y8vtudx/1laWqbL71kF9nQQERGBwWAwhtzHcXZ2BuDWrVtPdJ6jR49y5swZunbtahLWAQYOHMiiRYtYuXIlXbt2JSwsjJ07d+Lt7W0S1gG6devG7NmzWbVqVYrA3rVrV5Pr8Pb2BuDKlSvGbQaDgZs3b3Lp0iXjhw/58+dn3bp1uLq6PtE1iUjmdP16ZEaX8NJzdXXU+ywZRvffiy0xMZH4+MSMLsNs1taWL3T98mJ7XvdfYmJimn7PWlpa4OLy8CHVCuzpwNnZGQsLC6Kjo9PUPrldjhw5nug8J0+eBODixYtMmzYtxf4cOXJw+vRpDAYDp06dwmAwEBERkWrbbNmyERISQmhoKPny5TNuTw7gyRwdkz4Viov73wRUnTp1YsaMGTRv3pzy5ctTr149vL29KV++/BNdj4iIiIiIiDycAns6sLGxIW/evISGhnL9+vXHPmVOXofd3d39ic5z584dAHbt2sWuXbse2i46OtrY9siRIxw5cuShbSMiIkwCu42Njcl+CwsLIOmperLBgwdTuHBhlixZwrFjxzh69CjTpk3Dw8ODkSNHUqtWrSe6LhERERERSclgMBj/HpesSYE9nTRu3JhFixaxdetWOnXqZLIvNjYWW1tbAOLj441hu06dOsYfwMTElN0y7t27Z/J1clf18ePH0759+0fWk9y2X79+DBw40IwrejgLCwvat29P+/btCQ8P5++//2bTpk1s3LiRvn37snXrVnLnzp2u5xQRERGRtMnlZIO1jW1Gl5Fm8XGx3LqdPsuJHjp0gAED+qS6z9raGgcHBzw8itG4cVPeeKMVVlZWaTru2rX+fPnlaN54oxXDho1Il1ofJzDwFJMmfcXMmfOey/kkc1JgTycdO3bkt99+4+eff+b11183Lu0WHx9Pw4YNqVatGkOHDmXTpk1cu3aNBg0a4O7uTlhYGJAynANcunTJ5GtPT08ATpw4kSKw379/n0mTJlGwYEG6d+9u0jY1U6dOxc7ODl9f3xRP1R/l1q1bLFy4EDc3N9q0aYOLiwstWrSgRYsWfPbZZ6xYsYJTp04ZJ6hLC/f+09PcVkSevcT4OE1G9ZzofZb0FhMbT+SdlH9TSNZibWPL+fHtMrqMNCs6fAWQPoE9Wfbs2Xn11fom2+Lj44mIuMXRo4c5fPggAQF7GTfu63Q9b3rq06cn8fHxGV2GZDAF9nRSqlQpevfuzY8//sg777zD5MmTyZ8/P3FxcXTu3Jn58+ezc+dOYmNjcXZ25rPPPgPAxcUFJycnjh07Rnh4uHGW+VOnTrF9+3aTc1SrVg03NzeWL19Oq1at8PLyMu6bMWMGc+bMoU2bNgAUKlSIatWqsXPnTtavX89rr71mbLt69Wp++OEHqlevTu/evZ/oOnPkyMH8+fPJnj07DRo0ME6gB0nLyAG88sorT3TMXuM2EnZLf1yIiIg8Lf9JrdBUciLg5OTMF1+MTXXf2bOn6d+/N9u3b2XHjm14ez96WWaAevUaULZseeNDuefhwSGpknUpsKejAQMGkJiYyPTp02natCn16tWjSJEiREdH4+TkZHxi/sorrxh/AK2srGjXrh2zZ8+mQ4cONG3alJs3b7J+/XoqVKjAgQMHjMe3srLiq6++4t1336Vbt240atSIQoUKceLECfbu3YubmxuDBw82th8zZgxdu3Zl4MCB1KtXjxIlShAUFMT27dtxdnZm5MiRT3yNNjY2DBgwgHHjxvHGG2/QpEkT7OzsCAgI4Pjx47Rq1YqiRYs+5TspIiIiIvJslCjhSYsWbViyZCE7d25NU2B3cHB4rmFdJJkCezqysLDgww8/pEmTJixatIhDhw6xY8cOHBwccHd3p1u3bjg6OvL111/zxhtv0KNHD4YMGcLgwYPJnj07q1evZsGCBRQpUoQRI0bg7OxsEtgBqlatyrJly/jpp5/Ys2cP27ZtI3/+/HTv3p0+ffqQJ08eY9uiRYuycuVKfvzxR3bs2MGePXvImzcvrVq14v3336dQoUJmXWf37t1xcXFh/vz5rF27lnv37lGkSBE+/fRTunXr9lTvoYiIiIjIs/bKKwUB02WW27dvwb17d5k8+UfGjx/NhQtB5MmTFz+/bzhzJtBkDPvKlcv49tuvaN68BZ99lvIh2F9/7eKTTz6kbt16TJjwLQAxMTGsXLmU7du3cvHiBWJi7pEzpxPlylWgW7celCmTtGxz8nj5ZHXrViV//gIsX+5v3HbhQjDz5//CgQMB3LlzGxeXPNStW48ePXqRK1fa5pKqW7cqnp6l6dv3A775xo+wsFAKFHiFadN+JnfupF6/Gzas5fffV/Lvv2eJj4+nUKFCNG7clI4d38TW1i7FMY8fP8rixQs4fvwIUVFR5MnjSs2adXjrrbfJmzdfivOXKVOOr7+ezIwZP7B7907u3o3Gw6MYvXv3pVq1mpw79y/Tp0/j2LEj2NjYUqFCRT74YDD58xdI0zW+DBTYn4Fy5crh5+f30P0NGjRgzpw5ODk5AUlLrA0YMIABAwakaHv69OkU24oXL86kSZPSVEuBAgUYOzb17kAPmjBhAhMmTEh1X2o1NG/enObNm6epBhERERGRzCQo6DwA+fLlN9keFxfH0KGDsLPLTs2atQkKCqJIEQ/OnAk0adeoUROmTp3Ezp3bGTr0M7Jly2ayf/PmDQD4+CT9vRwbG8P777/L6dP/kDdvPipV8iIxMZHTpwPZuXMbe/bs5qeffqFUqTIULOiGj08zNm1aj8FgwMenmckw1P379/LZZ0OIiYmhePGSlC9fgfPnz7F8+W/s3LmdadN+pmBBtzS9DzduXOfTT4dQsKAbVavW4PbtCHLndiExMZExY0awefMGbGxsqVTJC1tbO44dO8zPP//Atm1bmDLlJ+MS0AArVixlypRvSExMpGzZ8ri65uXff8+wevVytm/fzKRJ3+PpWcrk/FFRkbz3ni+3b9/Gy6syoaHX+OefkwwZMpChQz9l8uRvcHHJQ5Uq1QkMPMWOHdsIDPyHxYtXGCf1ftkpsGeA3Llz89FHH2V0GSIiIiIiWc7hwwdZs2Y1AI0bNzXZd+/ePTw8ivHjj7OwtrYmMTERS0vLFMdwcnKmVq067Nq1g/3791KnzqvGfbGxMezevRMHBwfj9hUrlnL69D/Ur9+IUaPGY22dFMPi4uIYM2YE27dv4fffV1KqVBkqVvSiYkUvtmzZSEJCgslY/Fu3bjFy5Gfcv3+f8eMnGrvzGwwG5s+fzcyZPzF27BdMnz47Te9FePgNvL0bMG7c11hYWBhXrlqxYimbN2+gUCF3vv32ewoUSJqj6u7daEaNGs7ff+/mm2++ZPTopIeUZ84EMmXKN9jY2ODnN4lq1WoASSthzZ07i9mzZzB8+FAWL15hMuH1xYsXKF68JDNnziNnTicMBgMjRnzC9u1bmTBhHG3adGDQoCFYWVlx9+5devXqxqVLF9m3bw/16tVP0zW+6FLefSIiIiIiIi+w27cjGDNmhMm/zz//hB493uSDD97j/v37tGvXkSpVqqV4bZs27Y2BOrWwnszHpxkAW7duNNm+e/cu7t27S/36jYxPgW1tbalVqw59+vQ3HhuS5odq3rwFAKGh1x57XWvW/E5k5B3at+9kMvbewsKCHj16UapUGU6cOMaJE8cee6xk7dt3Ni41nXy9S5cuBmD48FHGsA5gb5+DL74Yh4ODA1u3bubataSaly//jcTERHr06GUM68nH69mzN15eVbh2LYStWzelOH/v3v3ImdPJeB0NG/oAkD27PX37fmBces/e3p4aNWoDcPnypRTHeVnpCbuIiIiIiLxU7t27x8aN60y22djY4Oycizp1XqV58xZ4ezdM9bXFi5dI0znq1KmHg4Mju3YlrQSVHM63bEkK8MmBHqBdu060a9fJ5PWRkZGcP3+OvXv/ApKWaX6cw4eT5rfy8qqa6v7q1WsSGHiKw4cPUa5chTRdR/HiJU2+Dg29RkjIVfLmzZfqMRwcHKhRozZbtmzk6NFD5M/fnCNHDgHQsGGTVM/RqJEPhw8f5MiRQ7z22usm+8qWLWfydXL3fzc3N+zt7U32JXfBj4uLTdO1vQwU2EVERERE5KXy30nanoSjo1Oa2tnY2NCgQWP8/Vexd+/feHs3IDo6ir17/yJv3nx4eVUxaX/jxg1WrlzK4cMHuHjxArdv3wYwPt1OyzJuYWGhAAwbNjhN7R7H0tLSZBx6cp3AIyd2S560Lzw8PE2vSW5/82a4yXYLCwscHXOm+pqcOZ1T3Z7VKLBLhvvlc5+MLkFEROSlEBMbn9EliLzwLC0t0ty2adNm+PuvYuvWTXh7N2Dnzu3ExcXh49PMGMQBDh06wMcfDyImJoZ8+fJTqVJlChf2wNOzNNbW1nzyyYdpOl9CQgIAr77qTfbs9g9tl9ZeAg/WmCwtHxwk12FjkzzZ3qNfk9z+v5PzWVpaPnLYgTxlYL9x4wZHjhwhIiKC2NhHd0vo2rXr05xKXmLh4VEkJj7+F4NIenN1deT69ciMLkOyKN1/IiIvvooVvcifvwB//72LuLi4VLvDGwwGJkwYS0xMDMOGfc4bb7Q2Ocbu3TvTfD4XlzxcunSRzp27U7FipfS5iP/Ik8cVgJCQqw9tc/XqFQBy5XL5/7pcCQm5QkjIVdzcUi4d/d/2knZmB/bx48ezaNGiNH0CAwrsIiIiIiLycrGwsMDHpxnz589mx46tHDiwnxIlSlK0aDFjm4iIW1y9egUXF5cUYR0gIGAvkLYn25UqVebIkUPs3ftXqoH9yy9Hc/78OXx9e1G3rrdZ15Q/f37y5y/AtWshnDhxLMU49qioKAIC9mJpaUmlSl7/X5cXISFX2LZtM927v53imNu2bQZIMUxAHs+s/gdLlixhwYIFJCYm4ujoSJkyZahateoj/4mIiIiIiLxsmjZNWmv9p5+mER8fb/w6Wc6cTtja2nLz5k1Onjxh3G4wGPjzzz9YvXoFkHIiNRubpEnsoqKijNtatmyDnZ0dS5YsZMeObSbt1671Z926NZw//y9lyphO5PakOnbsAsD48aNMnrTfvXuXMWNGEB0djbd3Q1xc8gBJk+pZWVkxb94vHDiw3+Qa58yZyZEjh8ifv4DJ8neSNmY9YV+6dCkWFhb07NmTQYMGpRiLICIiIiIikhUULlyEUqXKEBh4CisrKxo3fs1kv5WVFe3bd2bRonm8//47eHlVIXt2e86ePUNIyBWKFPHgwoVg4wRuyQoVKsSZM6fp3783Hh5FGTlyHHnz5uOzz0YxZsznDB8+lKJFi1GokDuXL1/m3LmzWFpa8vnnY8id++m6nrdv34kTJ46xdesmunbtQKVKlbGzs+PYscNERERQsqQnQ4YMM7YvVao0H3zwIVOmTGLQoH6UK1cBV9e8nD17hsuXL+LsnIsxY/yws7N7qrqyIrMCe1BQEC4uLgwdOjS96xERERERkacQHxdL0eErMrqMNIt/CZboatq0OYGBp6hcuSp58uRJsf/dd/vi4pKHNWtWc/z4UQAKFizEu+/2pXPnrvTu/Tbnzp3l7NkzlCiRtMza0KGf8fXX4wkODuLGjevcuXObnDmdaNiwMYUKFWLRovkcPnyAS5cukju3C/XrN6Rbt7cpVar0U1+PpaUlo0d/Sc2atfH3X/X/NRsoVMidrl19adeuIzY2Niavad++MyVKeLJ48XxOnDjGmTOB5M2bj06duvDmm92NY+PlyVgY0joI/QHVq1fHzc2NlStXPouaJIvRpHOSUTTpl2Qk3X+SkXT/vdiuXbtA/vyFM7oMs1lbWxIfn5jRZUgW9bzuv7T+nFpaWuDi4vDw/eacvGLFigQFBZmMpxARERERERGR9GNWYH/vvfeIiYlh7NixJCbq0zERERERERGR9PbYMeyLFi1KdXvFihX5448/OHbsGPXr1ydfvnyPnHxOy7qJiIiIiIiIpN1jA/vYsWOxsLBIdZ/BYCAoKIjg4ODHnkiBXURERERERCTtHhvYq1Wr9jzqEBEREREREZEHPDawL1iw4HnUISIiIiIiIiIPMGvSORERERERERF5thTYRURERERERDKhx3aJT03p0qXT3NbKygpbW1vy5MlDmTJl6Ny5MzVq1DDntCIiIiIiIiJZhllP2A0GQ5r/xcfHEx0dzYULF1i3bh2+vr5Mnz49va9DRERERERE5KViVmA/deoUDRs2BMDHx4e5c+eyf/9+Tp48yf79+1m4cCGtW7fGwsKC8uXLs3jxYmbMmEG3bt2wsrJi6tSpBAQEpOuFiIiIiIiIiLxMzOoSP2/ePLZt20bfvn0ZOHCgyb6cOXNStWpVqlatSokSJfjmm28IDAykS5cu1KtXj7Jly/Lpp5+yePFiLRknIiIiIiIi8hBmPWFfvnw5zs7O9O/f/5HtevbsSe7cufn111+N21q3bk3u3Lk5evSoOacWERERERERyRLMCuyXL1/Gzc0NKyurR7azsLDglVde4cKFCybbChQoQHh4uDmnFhEREREREckSzOoS7+LiwoULF4iLi8PGxuah7eLi4ggODsbR0dFke1RUFM7OzuacWkREREREHsHR2Ra7bA//Gz2zibkfR2REbLoe8/btCJYu/ZU9e3Zz9eoV4uLicHbORblyFXjttdepXbtuite0b9+Ca9dCWLnyT/LmzZeu9TxvAwf24+DB/UydOp3KlatmdDnyFMwK7DVq1GD16tWMGzeOMWPGPLSdn58fUVFRNGvWzLgtMDCQCxcuUL16dXNOLSIiIiIij2CXzYaOv/XN6DLSbGmnn4gk/QJ7YOA/fPjh+0RG3iF//gKULVsBW1tbrl0LYdu2zWzdugkfn2Z8/vloLC3N6nAs8tyYFdjfe+89Nm7cyLJly/jnn39o3749np6eZM+enejoaM6cOcOqVas4duwYtra2vP/++wAsW7aMqVOnYmFhQceOHdP1QkREREREJGuLj49nxIhhREVF8sknn/P66y1NQvnZs2f45JMP2bhxHaVKlaZjxy4ZWK3I45kV2IsUKcJPP/3E4MGDOX78OCdOnEjRxmAwkCdPHr755huKFSsGwIIFC7h+/Tp16tShefPmT1e5iIiIiIjIA44dO0JIyBWqVatBixatU+wvUaIkgwd/wrBhg/njj1UK7JLpmRXYAapXr87GjRtZunQp27Zt49y5c0RERGBvb0+xYsVo1KgRnTp1Mhm/3qhRI95//318fHywsLBIlwsQEREREREBuHXrFsAjs0a1atVp3LgpuXLlTnV/bGwss2ZNZ+PGdVy/HkauXLnx9m7IO++8R44cDiZt79y5zW+/Lebvv3dx5coV7t9PGitfuXIVevTohbt7EWPbX375mTlzZjJ27AT27PmLrVs3YWNjS6dOXejRoxcAYWGhzJ8/mz17/uLmzXBy5nSievWavP32u7zySsEUtQYHBzFnzkwOHz7IvXt3KVu2PP36DXii92z8+FGsW7eG77+fwa+/LiAgYD85cuSgT5/+vP56SwDOnz/HokVzOXAggNu3I3B2zkWVKtV4662eFC5cJMUxb9+OYNGieezcuYPQ0BDs7LJTunRZOnXqQo0atVI9/6JFyzly5BArVvzG5cuXcXZ2pnnzFrz99rvEx9/nl19msHnzBiIj71CoUGF69OiFt3eDJ7rWF5HZgR3A3t4eX19ffH1909T+v2u2i4iIiIiIpJfixUsAsH//XubPn027dh1ThGxbWztGjRr/0GMMGzaYy5cvUalSZQoXLsKRI4dZtuxX/vnnJD/+OMvYxf7mzXDee68nISFXcHMrRNWq1YmJiSEw8BQbNqzjr792MW/eEvLly29y/BkzfuT69TCqVavBpUuXKFKkKABnzgQyeHB/IiIicHcvTO3adQkJucq6dWvYtWsH3333PaVLlzUe59SpEwwe3J+oqChKlizFK68U5OTJ47z//rs4OT35BN9ffTWO27dvU7Nmbc6ePUOJEiUB2LlzO6NGfUZcXBzFi5ekQoVKXLx4gQ0b1rJjx1bGjfuamjVrG49z5cpl+vfvzfXrYeTNm486dV4lIiKCgwf3s3//Hnr27E3Pnr1TnP/7779j796/qVChEpUrV+HQoYPMnTuLqKgozpwJ5N9/z1K+fEXu3o3m+PGjDB8+lIkTJ1OrVsoJBF8mTxXYRdKDi4vD4xuJPCOuro6PbyQvjWcxE7GIiGQehQsXoXnzFqxd68+MGT8yd+4sKlb0olKlylSqVIWyZcthbf3oCBQVFcmcOYsoWrQ4kBRAfX27cOLEMU6cOEaFCpUAmDNnFiEhV+jUqQv9+39ofKp/9240H300gOPHj7J+/Z/Gp+fJrl69wsyZ8yhZshQAiYmJ3L9/n88//4SIiAg+/HAo7dp1MrZft24NX345mi+++JTFi1eQLVs2EhMT+eqrcURFRTFgwEd07PgmkNQ7YPToz9m5c9sTv3e3bt00fsCQmJiIpaUlN27cYMyYz/9/boAxNG36v2HNa9b8zldfjWPUqM9YvHgFuXO7YDAYGDFiGNevh9G2bQcGDPjI+H7/889JhgwZwOzZMyhTppxJyIekD1kmTZpG9eo1Adi9eyfDhg1m+fIlFCzoxsKFS42z9//88w8sWDCHP/5YpcCemu+///6J2ltYWBgnnhP5r/f9h3P97s2MLkNEsoD0nolYREQyn48/Hk7+/AVYvHg+MTExBATsIyBgHwD29jl49VVvevbsTcGCbqm+/u233zWGdYCCBd3w9m7A+vV/cu7cv8bA7uzsTI0atenZs7dJF3x7+xw0btyU48ePEhp6LcXxK1SoZAzrAJaWlmzduonmQQ4IAAAgAElEQVSrV69Qr14Dk7AO0KzZG/z11y62b9/C9u1baNLkNY4fP8a5c/9SrlwFY1gHsLW1ZdiwEezb9zexsU/2/7t69RoYewMk9yL444+VxMTE0LJlG5OwDvDGG604duwIa9f688cfq/D1fYcjRw5x5kwgRYp4MHDgEKysrIztS5cuS//+HzJ+/Ch+/XVBisD+6qv1jWEdoG7demTPnp179+7h6/uOyVJ7DRo0YsGCOVy+fOmJrvFFZHZgT+sYdIPBoMAuIiIiIiLPhbW1NT179qZTpy789dduAgL2cuTIIUJCrnL3bjQbNqxl27YtjBnzJXXreqd4fblyFVNsSw6LUVGRxm29er2Xot2tW7c4d+4sx44dBpJmrf+v4sVLpth26NABACpXrpLqNdWoUYvt27dw5MghmjR5jSNHDgKkCL0AOXPmpGJFL/bv35vqsR4meTjBg44eTbqOhg2bpPqaRo18WLvWn8OHD+Hr+7/23t4NTcJ6sgYNGjNhwliOHz9KQkKCSZuyZcunci1O3Lt3L8V75uCQ1EMyLi4ubRf3AjMrsPv4+Dx0X0xMDNevX+f06dMYDAa6du2Ku7u72QWKiIiIiIg8qRw5HPDxeQ0fn9cACAm5yt9/72LJksWEhFxh9OjPWbbMH2dn0/HeyWHwQcnBMiEhwWT7lSuXWbHiN44fP8rFixeIjo4G/jfpncFgSHGsnDlzptgWFhYKwOTJ3zB58jcPvabkdjdu3AAgTx7XVNvlz1/gocd4GEfHlHXduHEdgAIFXkn1Ncnbb9688Z/2qZ/fzs4OZ+dchIffIDIy0uS9T+19SX4fnZycUt2eFZgV2KdOnfrYNpcvX2bAgAGsX7+e1atXm3MaERERERGRNDt//hzh4TeoXLlqiie8BQq8Qrt2nWja9HXeeectLl++yO7dO3jjjVYm7Swt0xYGN25cz/jxI0lISMDNzZ2aNWtTpEhRSpUqQ1hYKBMnfpnq61ILm4mJiQBUrVqd3LldHnrOIkU8/v8Yj67NyurJY96D69UnS+0Dhwcl150tm02a2j/4GhubbCbbHze3QFb1zN4VNzc3Jk+eTLNmzZg2bRpjxox5VqcSERERERFh+PChXLp0kdmzF5qME3+Qg4MD9es3ZOHCudy5c8es89y9e5dvvvHD0tKSCRO+pVatOib7ly9f8kTHc3HJAySNV//vWPHUuLrmBUh1jDxAePiNJzr/w+TJ48rFixe4evVKqmP+r169AkDu3LmN7ZO2X031eHfvRhMRcQtbW1vs7XOkS40vu5Qfo6Qjd3d3ihYtyvbt25/laURERERERChXrgIAK1cue2S7ixcvAODhUdSs8wQHn+fu3WhKliyVIqwD7N+fNMld8tPkx6lY0QuAPXv+SnX/zJk/4evbhT/+WAUkPYkH2L17R4qn2jExMRw+fDBtF5LGurZt25zq/q1bNwHg5VXFpP3OndtSDB9IOs4WDAaDsb083jMN7JA0EUBERMSzPs1jTZs2DU9PTzw9Pfnxxx8f2XbcuHHGtpcvX36mdXXv3h1PT0+zP917lLCwMFasWJFi+5o1a7h06eWfUVFEREREspYuXd7CxsaWNWt+Z8qUSURFRZnsj4+PZ8GCuezatR0Pj6LUqFHLrPPkzZs0m/r58+e4cuV/eSEhIYF5837h7793AWmfFK1x46a4uLiwefOGFB827Nu3h19/XcC5c2cpXboMkDTjevnyFTh79gyzZk03hvb4+HgmTZpAZGT6ZIuWLduQPXt21qz5nY0b15ns+/PPP9iwYS0ODg7GXgFeXlUoWdKT4OAgpkz5xmTSvcDAf/jxxykAtG3bMV3qywqe6UCBjRs3cuHCBQoXLvwsT/PENm3aRL9+/VLdZzAY2Lhx43OuKP2Fh4fz2muvUbNmTdq1a2fcPnHiRGbNmqV5BURERETkpePhUZRx475izJjPWbbsV37/fQVlypQjd24XoqOj+eefk9y5c5tXXinIV199l+q47bTIkycPjRo1YcuWTfTo0RkvrypYW1tz6tRJwsNvUKRIUYKDz3PzZniajmdnZ8eYMRP4+ONBfPvtVyxduhgPj2LcvBnOyZPHAejffxAlSngaX/PppyP54IP3mDfvF3bs2IaHR1ECA09x48Z1Spb05MyZ02Zd24NcXfPy+eejGTVqOGPGjODXXxfg5ubOpUsX+fffM2TPnp0RI8Yau8JbWFgwatSXDBzYl5Url7F7907KlCnH7dsRHDt2hISEBHx936F27Zd77fT0ZFZg//rrrx+6z2AwcP/+fYKCgti7dy8WFhY0b/74cRjPi6urK6dOneLy5cu4uaUch3H48GFCQ0Oxt7fn7t27GVBh+rh3755xlsoHhYen7ZfG8/RDi/EZXYKIZBFxCfdxdU05+29GyUy1pJf4uFhu3X75l9kRycxi7sextNNPGV1GmsXcT9/fGbVr1+XXX1eycuUyAgL2ceFCMCdOHMPePgfu7oXx9m5I27btsbW1e6rzfPrpSNzdi7Bly0YOHgzA2jobhQsX5q23etKyZRtatmzKiRPHiIiISDETfWoqVvRi9uxFLFw4l3379rB37184OTlTs2ZtOnfuZuwGn8zdvTAzZ85jzpxZ7Nmzm7/+2kXJkp589tlINmxYmy6BHZKWaJs5cz4LF87l0KEDBAcH4eKShxYtWvPmm91xdzd9OOvuXpjZsxeycOE8du/ewV9/7cTBwZGaNWvTocObKa5DHs3CkJap/P6jVKlSj51KP/mwFSpUYN68eWTPnt28CtPJtGnT+P777+ncuTNLlizh008/xdfXN0U7Pz8/VqxYgZeXFzt37mTLli2pBvv00r17d/bv309AQECqSxmY6/LlyzRq1IhGjRqZDAEYNmwYq1atYvXq1ZQuXTrdzvc0Ln7fh/jb1zO6DBERSQdFh6/g+vXIxzeUDOXq6qjv0wvs2rUL5M+fuXqwPglra0vi49M2tlskvT2v+y+tP6eWlha4uDg8dL9ZT9hbt279yMBuZWVFzpw5qVy5Mg0bNjS7q8mzULNmTdauXcvGjRtTDewbN26kYcOGKca7AKxevZoVK1YQGBjIvXv3cHZ2pkaNGgwaNIhChQoZ2zVs2JCCBQsyatQoJk6cSEBAAImJiVStWpWPPvqIUqVSzlgZGhrKuHHj2LFjB7GxsZQuXZoBAwZQq5bpuJorV64wY8YM/vrrL0JDQ7G2tsbDw4MOHTrw5ptvArBy5Uo+/fRTALZs2YKnpyd+fn58//33XLmSNJNj69atKViwIFu3bgXg5s2bzJw5k+3btxtndXRzc6NFixa88847xmUW9u3bx1tvvYWfnx+JiYnMmzeP4OBgcuXKxeuvv86AAQMy/MMZERERERGRl4FZgX3ChAnpXcdzky1bNho2bMgff/zBjRs3yJMnj3HfsWPHuHr1Kq+99hrLly83ed1XX33F7NmzKVWqFG3atMHCwoKAgADWrFnDwYMHWb9+PXZ2/+tWExISQufOnSlSpAgdO3YkKCiIbdu2ceTIETZs2GBc+iBZjx49cHZ2pm3btoSFhbFu3Tp69erFsmXLKFu2LJD01Lx9+/bcu3ePJk2aUKBAAUJDQ9mwYQOjRo0iISGBbt26Ubp0ad566y3mz5+Ph4cHr7/+unHbqlWrCAwMpFOnThQtmjQrZmRkJB07diQkJISGDRvSuHFjbt68yaZNm/juu++4ffs2n3zyiUm9Cxcu5MyZM/j4+PDqq6+yadMmZs+eTVhYGJMmTUrX75mIiIiIiEhWlK6TzsXFxWFjY5Oeh3wmfHx8WL16NVu2bKFTp07G7evXr8fBwYG6deuaBPbQ0FDmzp1LtWrVmDdvHlZWVsZ9vXv3ZseOHRw4cIC6df83ecKlS5fo2rUrI0aMMPZGGDFiBEuXLmXDhg3Gp+HJypUrxw8//EC2bNkAKF++PH5+fqxatcoY2GfMmMGtW7eYM2cOtWvXNr62W7dudOjQgTVr1hgDe48ePZg/fz5Fixblgw8+AKB06dIEBgYSGBjIm2++aewS/+uvv3Lp0iXGjRtHhw4djMft378/Pj4++Pv7pwjsgYGBLFq0CC+vpKUb+vbti4+PD+vXr2fMmDHkyKF1FUVEsqqXcWz+y0jfpxdXWJgl1taZpwerOV70+uXF9jzuP0tLy3T5PftUgT08PJy5c+eyfft2goODiY+Px8rKCnd3d+rWrUuvXr3Ily/fUxeZ3urWrYu9vT0bN240CezJ3eH/+6GDjY0NX3/9NcWLFzcJ6wDVqlVjx44dqU7m9u6775oMHfD29mbp0qXGbukP6t27tzGsQ1K3ej8/P5Nl5Vq2bEnFihVNwjokzRNgZ2dn9oRydevWJWfOnLRu3dpke4ECBShUqBDBwcEpXlOtWjVjWAdwdHTEy8uLLVu2cO3aNYoVK2ZWLSIi8uLT2OjMT2PYX2yJiYkv9BhwjWGXjPS87r/ExMQ0/Z59JmPYAQ4ePMgHH3zArVu3eHDeuvj4eM6fP09QUBB//PEHU6dOpXr1zDUToK2tLfXr12fTpk1ERkbi6OjIyZMnuXTpknHs94Ny5cpFixYtSExM5MyZM5w7d45Lly5x+vRp/v77byDpG/LfcxQoUMBkm4ND0jcitfUY/7v0XfJMkg/O9F61alWqVq1KREQE//zzDxcvXiQoKIgjR44QGxtLQkKCGe8GlClThjJlyhAdHc3Ro0e5cOECwcHBHD9+nAsXLqR63CJFiqTY5uiY9AnS/fv3zapDRERERERE/seswB4WFka/fv24ffs2ZcuWpUuXLpQtWxZ7e3siIyM5efIkS5Ys4dSpUwwaNIjVq1eTN2/e9K79qfj4+LB27Vq2bdtGy5Yt2bBhAzly5ODVV19Ntf3GjRuZNGmS8Wmzvb095cqVo1SpUvz999/8d7L91IYGJD9tT21ifltb28fWfPv2bfz8/FizZg3379/HwsKCggULUrNmTU6dOvXY1z9MbGws3377Lb/99hv37t0DIF++fFSrVo1cuXJx/XrKGdyf9PpERERERETkyZgV2GfNmsXt27d5/fXXmThxYopZ4MuWLUv79u0ZMmQI69atY9GiRXz44YfpUnB68fb2xs7Ojk2bNhkDe4MGDVINokePHmXgwIHkz5+fb7/9lvLly1OoUCEsLCyYMWOG8Sn7szZ06FB27NhB586dadWqFSVLljQ+tff39zf7uBMmTGDx4sU0bdqUrl274unpaXzC36xZs1QDu4iIiIiIiDxbZgX2HTt2YGdnx+jRox+6ZJulpSWjR49my5YtbN68OdMFdnt7e+rWrcuuXbs4duwYwcHBDB06NNW2f/75J4mJiYwcOZL69eub7Dt//jzw7J8q37lzhx07dlCuXDlGjx5tsu/y5cvExsaa1PCwZfdS275mzRpcXFyYMmWKyf6YmBjjEm8Gg+GRS/k9Dff+05/JcUVE5PlLjI/TZGYvCH2fXlxhYZZYWVk8s7/NngdNOifPU2KigcTE59cLOD2zoVmBPSQkxOTp7sM4OjpSvHhxY6jNbHx8fNi8eTPjx4/H3t7+od3hk7ur37hxw2T7nj17WLNmDZA0dv9ZypYtG5aWlty5c8dkNv6YmBjGjh0LmI4dT143/b/jyVPbbmtry71797hz5w5OTk4AJCQkMH78eGJiYoztn9UKAL3GbSTs1r1ncmwRERGRl02/1wtwN/4mWFg9vrGIULyQ83MN7AkJCVhaps/Pp1mB3cbGhsjItM0sGhUVZQyJmU3Dhg3Jli0bR44c4Y033njoOPLmzZszZ84cRo8eTUBAAK6urpw+fZrdu3eTK1cuwsPDiYiIeKa1Zs+enSZNmrBhwwY6dOhAnTp1uHv3Ltu2bePGjRs4OTkRGRlJYmIilpaW5MqVCxsbG/bt24efnx9NmjShatWqxln7J0yYQO3atenfvz8tWrRg9uzZtGvXjsaNGxMfH8/u3bsJCgoid+7c3Lx5k4iIiEw3D4GIiIhIVnTmyl1ccsViYWWf0aWISCpiYqKxtc2eLscyqy+Kp6cnFy9e5NixY49slzzjeMmSJc0q7llzdHSkVq1aADRt2vSh7UqXLs2MGTMoW7YsmzdvZunSpdy4cYMBAwbw+++/Y2lpyY4dO555vV9++SU9evQgMjKShQsXsmvXLsqXL8+vv/5K69atiYmJYd++fUDShypffPEFTk5OLF68mL179wLQpUsX6tSpw4kTJ1iwYAHR0dF8+OGHfPDBB1haWrJ48WI2b95MwYIF+eWXX+jTpw/Ac7k+EREREXm8A2ejuHHrFoaEu2BIAE34K5LhDAYD8fHxREXd5u7dSHLkyJkux7UwmNHBfvny5Xz++ecUKFCAqVOnUr58+RRtjh07xoABAwgNDWXMmDF06NAhXQqWl4+6xIuIiIg8GeccVlQt4UDJgvbY2Wg8uMij5M1lb1yG29LSMsWS3OnF0tIKW9vs5MiRE2vrbGl8zaPXYTcrsBsMBnx9fdm3bx8WFhbGdbxz5MhBVFQUp06d4p9//sFgMFCzZk1mz5790MnpRBTYRURERETkWfGf1Irr15OGdLu6Ohr/OzN4XGA3a3B58nJmo0aN4vfff+fkyZOcPHkSCwsL44x4lpaWtGnThhEjRiisi4iIiIiIiDwhs2eDs7W1xc/Pj/79+7Nr1y6Cg4OJjo7G3t4eDw8PXn31VQoWLJietYqIiIiIiIhkGWYF9mHDhlGwYEF69uxJwYIF6dy5c3rXJSIiIiIiIpKlmTWGvXr16lhbW7Nr1y6srLT+o4iIiIiIiGROMbHxRN5JmjMrS4xhv3//Pm5ubgrrki7Cw6NITNRyJPL8ZbZf2JK16P6TjKT7TzKS7j+RtDNrNrj69etz5syZx67DLiIiIiIiIiLmMesJ++DBgwkJCaF79+40adIELy8vXF1dsbW1fehrvL29zS5SREREREREJKsxK7D7+PgASeux//nnn/z555+PbG9hYcGpU6fMOZWIiIiIiIhIlmRWYC9QoEB61yEiIiIiIiIiDzArsG/dujW96xARERERERGRB5g16ZyIiIiIiIiIPFtmPWF/0K5du9i+fTvBwcFER0djb2+Pu7s7devWpVGjRlhYWKRHnSIiIiIiIiJZitmBPTw8nEGDBnHgwAEgaQK6ZHv27OG3337Dy8uL7777jnz58j19pSIiIiIiIiJZiFmBPTY2lp49e3L69GmyZ8+Oj48PZcqUwd7enqioKE6cOMHWrVs5dOgQffr04bfffsPGxia9axcRERERERF5aZkV2BcuXMjp06cpVaoUP//8c6pP0K9du0bv3r0JDAxk6dKldOvW7amLFREREREREckqzJp07s8//8TS0pIpU6Y8tLt7/vz5mTJlCgD+/v7mVygiIiIiIiKSBZkV2IOCgihevDiFCxd+ZDsPDw+KFy9OUFCQWcWJiIiIiIiIZFVmBXaDwYCVlVWa2lpZWXH//n1zTiMiIiIiIiKSZZkV2N3d3Tl79ixhYWGPbBcaGsq///6Lm5ubWcWJiIiIiIiIZFVmBfYmTZoQHx/P0KFDiYqKSrVNVFQUQ4cOJSEhgSZNmjxVkSIiIiIiIiJZjVmzxPv6+rJy5Ur279/Pa6+9RosWLShTpgw5cuQgKiqKf/75B39/f27cuMErr7zC22+/nd51i4iIiIiIiLzUzArsjo6OzJkzhz59+hAcHMzcuXNTtDEYDHh4ePDDDz/g6Oj4tHWKiIiIiIiIZClmBXaAIkWKsGbNGtasWcPOnTsJDg4mOjoae3t7PDw88Pb2pnnz5mTLli096xURERERERHJEswO7ADW1ta0bNnSuHRbTEwMjo6OlChRgmLFiqVXjSIiIiIiIiJZjtmBPSEhgdmzZzNv3jzCw8NT7C9UqBD9+vWjdevWT1WgiIiIiIiISFZkVmBPSEigb9++7Nq1C4PBQPbs2SlcuDD29vZER0cTFBTExYsX+fTTTzl58iTDhw9P77pFREREREREXmpmBfYlS5awc+dOnJycGD58OM2aNTMZqx4bG8vy5cv55ptvWLhwIVWrVqVp06bpVrSIiIiIiIjIy86sddhXrFiBhYUFP/74Iy1btkwxsZytrS1du3blu+++w2AwMH/+/HQpVkRERERERCSrMCuwnz9/nmLFilGlSpVHtqtfvz6FCxfm1KlTZhUnIiIiIiIiklWZFdjt7e3T3NbOzg4bGxtzTiMiIiIiIiKSZZk1hr1evXr8/vvvHD16lIoVKz603blz5zh79ixNmjQxu0B5+bm4OGR0CZKFubo6AhBzP47IiNgMrkZERERE5H/MCuwfffQR+/bto1+/fvj5+VGvXr0UbY4fP87gwYPJlSsXH3/88VMXKi+v9/2Hc/3uzYwuQ7K4pZ1+IhIFdhERERHJPB4b2Nu3b5/qdktLS8LDw3nvvfcoUKAApUqVwt7ennv37hEcHMz58+cBqFKlClOnTuWrr75K38pFREREREREXmKPDewnTpx45H6DwcDVq1e5evVqqvsPHDjAwYMHFdhFREREREREnsBjA7ufn9/zqENEREREREREHvDYwN6mTZvnUYeIiIiIiIiIPMCsZd1ERERERERE5NlSYE+jadOm4enpmeJf5cqVad26NTNnzuT+/fsZWuO+ffvw9PRk/Pjx6dJOREREREREMo5Zy7plZY0aNaJ06dIAJCQkEBUVxYEDB/jmm284cuQIP/zwQwZXKCIiIiIiIi8DBfYn1LhxY9q2bWuyzWAw0LdvXzZv3syePXuoVatWBlX3YvqhhZ70S8aLS7iPq6tjRpfxwouPi+XW7biMLkNERETkpaDAng4sLCxo27Yt27ZtIyAgQIH9CV38vg/xt69ndBkikg6KDl8BKLCLiIiIpAeNYU8nVlZWANjY2AD/Gye+ePFiBg8eTIUKFahbty4HDx4EIDIykq+//prGjRtTrlw5ateuzUcffURQUFCKY8fFxTF9+nSaN29OuXLlqFGjBn379uX48eOPrSsuLo5evXrh6enJ5MmTU23zww8/4OnpybJly1Lsu3LlCqVKleKjjz4CYNiwYXh6enL79m1GjhxJnTp1KF++PG3btmXDhg1pe7NERERERETksRTY04HBYGDVqlVYWVnRuHFjk30//PADx48fp1u3bpQpU4ayZcty69YtOnTowC+//IKLiwtdu3alUqVKrF27lvbt23P06FHj62NjY/H19eW7777DysqKN998k9q1a7N7927efPNNNm/e/NC6EhMTGTp0KLt37+add95h0KBBqbZr1aoVFhYW+Pv7p9jn7++PwWCgdevWJtvffvttdu3aRbNmzWjRogVnz55l4MCB7N69+0neOhEREREREXkIdYl/Qps3b+bKlStAUlCPjo5m//79nD17lhEjRlC8eHGT9tHR0axevRpXV1fjtjFjxhAUFETfvn1NQvSOHTt47733+Pjjj1m7di1WVlbMmjWLgwcP0rZtW8aOHYu1ddK37OTJk3Tp0oVPP/2UmjVr4uDgkKLWL774gvXr1/PWW28xdOjQh16Tm5sbVatWJSAggLCwMPLmzWvc5+/vj6urK7Vr1zZ5jZWVFWvWrMHe3h6AWrVqMWTIEFasWEHdunXT+naKiIiIiIjIQyiwP6EtW7awZcuWFNudnJy4c+cOCQkJxu7xAJUrVzYJ63Fxcfz5558ULFiQAQMGmBzD29sbHx8fNmzYwIEDB6hRowarVq0ie/bsDB8+3BjWAcqWLUuXLl2YPXs2GzduTDER3sSJE1m2bBlvvvkmw4cPf+x1tW7dmoCAANauXYuvry8Ap06d4t9//+Xtt982uSaArl27GsN6cu2A8cMMEcm6NHlf2um9koyk+08yku4/yUgv0v2nwP6E/Pz8TMLx3bt3OX/+PFOnTuXbb78lODgYPz8/4343NzeT1wcFBRETE0PlypWxtEw5IqFKlSps2LCBwMBAypYty6VLl6hcuXKqT9CrVKnC7NmzCQwMNNm+fv16wsLCgP8F6cd57bXXGDt2LP7+/sbAntxFvlWrVinae3h4mHzt6Jh008fFabIpkazu+vXIjC7hheDq6qj3SjKM7j/JSLr/JCNltvvP0tICF5eUWc+4/znW8lKyt7enXLlyfP/99+TLl4+VK1dy/vx5435bW1uT9lFRUcD/Au5/JXdHj4mJITo6Os1tHxQWFsarr75KtmzZGDt2LHfv3n3sdTg4ONC4cWNOnDjBhQsXSExMZM2aNZQsWdK47vyDkifXS2ZhYQEkDRMQERERERGRp6fAnk5sbGzw8vIC4PTp0w9tlyNHDgBCQ0NT3X/nzh0AnJ2dn6jtg2rUqMH06dPp1asXV65cYcqUKWm6huSJ5datW8fBgwcJCwtL9em6iIiIiIiIPHvqEp+OkgP0w56IAxQtWhRbW1uOHz9OXFxciifVAQEBABQvXhwHBwfc3NwIDg7m5s2b5M6d+6FtH+Tp6Ym1tTV9+/bF39+fBQsW0LJlS8qWLfvI+mvXro2rqyvbtm3jzp07WFpa0qJFi7Rd/FNw7z/9mZ9DRJ6PxPi4F2pcWEbTeyUZSfff8xETG0/knXsZXYaIvKAU2NPJ0aNH2b9/P05OTlStWtVkabYH2djY8Prrr7Ny5UqmTp3KkCFDjPt27tzJunXrKFy4MJUrVwagTZs2TJs2jS+//JIJEyaYzBK/cOFCcubMScOGDVM9l52dHcOHD6dfv36MGDGCZcuWpZg87kFWVla0aNGCuXPnEhoaSs2aNcmXL5+5b0ma9Rq3kbBb+h+ZiIiIvHz8J7Ui84yWFZEXjQL7E3pwWTeAhIQE/v33X7Zv305CQgKfffYZdnZ2jzzG0KFDOXToEDNnziQgIAAvLy8uXbrE1q1byZEjBxMnTjSOCX/33XfZvXs3/v7+nD59mpo1axIeHs7mzZsxGAx89913qU5Il6xRo0Y0aNCAbdu2sdYyDMEAABUISURBVGDBAuOEcg/Tpk0bZs+eTUhIyEPXbRcREREREZFnT4H9Cf13Wbds2bKRO3duGjRoQPfu3alevfpjj5E7d26WLl3K9OnT2bBhAwsXLiR37ty0bt2avn374u7ubmxra2vL3Llz+eWXX/D39+fXX38lZ86cNGjQgPfee48yZco89nyff/45e/bsYcqUKfj4+DyybcmSJSlWrBhXr16lSZMmjz22iIiIiIiIPBsWBk3rLQ+IjIykTp06NG3alIkTJz6Xc6pLvIiIiLys/Ce1ylRLSGUGmW1ZLclaMtv9p2Xd5InMnDmT2NhYOnbsmNGliIiIiIiIZGnqEi8AdO3alYiICP79919q1qxJtWrVMrokERERERGRLE1P2AUAJycnLl++TJ06dZg0aVJGlyMiIiIiIpLl6Qm7APDjjz9mdAkiIiIiIiLyAAV2yXC/fP7ometFREREXlQxsfEZXYKIvMAU2CXDhYdHkZioxQrk+ctss4RK1qL7TzKS7j8RkReDxrCLiIiIiIiIZEIK7CIiIiIiIiKZkAK7iIiIiIiISCakwC4iIiIiIiKSCSmwi4iIiIiIiGRCCuwiIiIiIiIimZACu4iIiIiIiEgmpMAuIiIiIiIikgkpsIuIiIiIiIhkQgrsIiIiIiIiIpmQAruIiIiIiIhIJqTALiIiIiIiIpIJKbCLiIiIiIiIZEIK7CIiIiIiIiKZkAK7iIiIiIiISCakwC4iIiIiIiKSCSmwi4iIiIiIiGRCCuwiIiIiIiIimZACu8j/tXf/UVnW9x/HX0De2EA0DC1RxHS3ZRwT7oFzbmtMZ67yxyyi0tKto/gDPdmqM+hrbVZjO5U/CIqyHDOzqYmclnps6Kh2jgsoozaHPwKP4pLvfVQENH7c3Nf3Dw/31ztAuJX7vq8bn49zPEc/18eL9w0vPoc393V9LgAAAAAwIRp2AAAAAABMiIYdAAAAAAATomEHAAAAAMCEaNgBAAAAADAhGnYAAAAAAEyIhh0AAAAAABOiYQcAAAAAwISu8XcBwMCB4f4uAVexqKh+fvm4jS3Nqq9t8svHBgAAQGCgYYffLfnrU7KfP+3vMgCf2pL6qupFww4AAIDOcUk8AAAAAAAmRMMOAAAAAIAJ0bADAAAAAGBCNOwAAAAAAJgQm86ZzMsvv6ycnJx242FhYYqJidFdd92lefPmqU+fPn6oDgAAAADgKzTsJjVp0iTdcsstkqTW1lY1NDSorKxML774oj7//HPl5ub6uUIAAAAAgDfRsJvU5MmTNWvWLLcxwzC0aNEiFRUVad++fZowYYKfqgMAAAAAeBsNewAJCgrSrFmz9Pe//12lpaW9pmHPnfa8v0sAfK65tUVRUf28cm5Hc5POnG32yrkBAADgOzTsASYkJESSZLFYJEmffPKJHn74YT3zzDMqKytTUVGRIiIitHbtWtlsNtXX1+vVV1/VBx98oJMnTyoiIkITJkxQenq6RowY4TpvQUGBMjIylJ+frwMHDmjz5s3673//qxtuuEH33HOPFixYoJCQEDU3N2vWrFk6fPiwcnNzNXnyZNc58vLytHr1aqWkpOi5557r9ms6lrNQjrP2HvoMAbjpqW2SaNgBAAACHbvEBxDDMLR9+3aFhIS4NcqSlJubqy+//FJz5szRmDFjdOutt+rMmTNKSUnRm2++qYEDB2r27NkaN26cdu7cqXvvvVfl5eXtPsYLL7ygnJwc2Ww2zZ49W42NjVqzZo2ys7MlXfhFwe9//3uFhITo+eef1/nz5yVJBw8eVE5OjoYNG6aMjAzvfzIAAAAAoJfjHXaTKioq0okTJyRdaNTPnTunkpISHT58WCtWrNCoUaPc5p87d06FhYWKiopyja1cuVJVVVVatGiRHn30Udf4hx9+qLS0ND355JPauXOn6117STp27JgKCws1fPhwSdJDDz2kqVOn6t1339Xy5cslSWPHjtWvfvUrrVu3Tjk5OXrsscf0m9/8Rq2trfrjH/+osLAwr31eAAAAAOBqQcNuUnv27NGePXvajffv3191dXVqbW11a7QTEhLcmvXm5mbt2LFD0dHRWrZsmds5br/9dk2ZMkW7d+9WWVmZxo8f7zo2ZcoUV7MuSUOHDtXIkSNVUVGhpqYmhYaGSpKWLl2qPXv2aMOGDaqtrdWBAwe0YMEC2Wy2HvscALh83ro/Hj2LrxP8ifzBn8gf/CmQ8kfDblJZWVluu8SfP39elZWVys7O1qpVq3T06FFlZWW5jg8dOtTt/1dVVamxsVEJCQkKDm5/54PNZtPu3btVUVHh1rDHxsa2m9uv34VANzc3uxr20NBQZWVl6YEHHtC2bdt08803a+nSpVf0mgH0HLu93t8loAtRUf34OsFvyB/8ifzBn8yWv+DgIA0cGN75cR/Wgivwne98R3FxccrJydHgwYNVUFCgyspK1/G2RrpNQ0ODpP9vtr9t0KBBkqTGxka38bbN7C4WFBQk6cKl+Re79dZbFR0dLUmKi4vr8P8CAAAAAC4PDXuAsVgsio+Pl3Rho7fOtN1HXlNT0+Hxuro6SdKAAQMuu5a8vDwdP35cAwYM0LZt2/TPf/7zss8FAAAAAHBHwx6A2prtzt49l6SbbrpJoaGh+vLLL9Xc3P7xTqWlpZLUbvO67qqoqNBrr70mq9WqTZs2yWKx6KmnnnLtGg8AAAAAuDLcwx5gysvLVVJSov79++t73/teh49mky68E3/XXXepoKBA2dnZevzxx13HPvroI+3atUvDhw9XQkKCxzU4HA5lZGTI4XBo5cqVGjlypNLS0pSdna2XXnpJK1as8Oh8Mel5HtcAoHNOR3NAbaZyNePr5D2NTQ7V133j7zIAALgiNOwmdfFj3SSptbVVR44cUXFxsVpbW5WZmam+ffte8hxPPPGEPvvsM61bt06lpaWKj4/X8ePHtXfvXoWFhemFF15w3Z/uiby8PB04cECpqamuy/Pnz5+vHTt26O2339bUqVOVmJjY7fM98twH+t8z/FAFAOg5f31phsyzpRAAAJeHht2kvv1Ytz59+igyMlLJycl66KGHlJSU1OU5IiMjtWXLFuXl5Wn37t3auHGjIiMjNXPmTC1atEgxMTEe13Xw4EHl5eUpKirK7V17i8WilStXas6cOcrMzNR7772na6+91uPzAwAAAAAuCDK+vfU34GO8ww4A6Gl/fWmGqR7bYzZme6wRri7kD/5ktvzxWDcAAAAAAAIQDTsAAAAAACZEww4AAAAAgAnRsAMAAAAAYEI07AAAAAAAmBCPdYPfvfk/U/xdAgCgl2lscvi7BAAArhgNO/zu1KkGOZ08XRC+Z7bHeuDqQv4AAEBXuCQeAAAAAAATomEHAAAAAMCEaNgBAAAAADAhGnYAAAAAAEyIhh0AAAAAABOiYQcAAAAAwIRo2AEAAAAAMCEadgAAAAAATIiGHQAAAAAAE6JhBwAAAADAhK7xdwFAcHCQv0vAVYz8wZ/IH/yJ/MGfyB/8yUz566qWIMMwDB/VAgAAAAAAuolL4gEAAAAAMCEadgAAAAAATIiGHQAAAAAAE6JhBwAAAADAhGjYAQAAAAAwIRp2AAAAAABMiIYdAAAAAAATomEHAAAAAMCEaNgBAAAAADAhGnYAAAAAAEyIhh1+4XA4lJ+frzvvvFNjx47VpEmTlJubq5aWFn+Xhl5kzZo1Gj16dId/li9f7ja3sLBQM2fO1Lhx4/TjH/9YWVlZOnfunJ8qRyCqqamRzWZTfn5+h8c9yVhxcbFSU1MVHx+vCRMmKDMzU6dOnfJi9Qh0l8rf1q1bO10L77vvvnbzyR+6y2636+mnn9btt9+uuLg4TZw4UY8//riOHz/ebi5rIHpad/MX6GvgNX77yLiqrVy5Ups3b5bNZtNPf/pTffbZZ8rOztbBgweVnZ3t7/LQS1RUVMhisWjBggXtjn33u991/f21117TqlWrNHr0aM2ZM0eHDh1Sfn6+ysvLtWHDBlksFl+WjQB07tw5LV26VA0NDR0e9yRj77//vn79619r2LBheuCBB/T1119r+/btKi0t1bZt2xQREeGrl4UA0VX+Dh48KEmaP3++QkND3Y7dcMMNbv8mf+guu92ulJQUff3115o4caLuvPNOVVVV6f3339fHH3+szZs3KzY2VhJrIHqeJ/kL+DXQAHzs008/NaxWq7F06VLD6XQahmEYTqfTePLJJw2r1Wrs3bvXzxWit0hOTjZmzpx5yTnV1dXGmDFjjNTUVKO5udk1vmbNGsNqtRpvvfWWt8tEgKuurjZ+8YtfGFar1bBarcaf/vSndse7m7GGhgYjMTHRmDRpklFfX+8a37p1q2G1Wo0//OEPXn89CCxd5c8wDGPOnDlGUlJSl+cif/DEihUrDKvVaqxfv95tvLCw0LBarUZaWpphGKyB8I7u5s8wAn8N5JJ4+Nzbb78tSUpPT1dQUJAkKSgoSI899piCgoK0detWf5aHXqKhoUEnTpzQ6NGjLzlvy5YtcjgcSktLU58+fVzjCxcuVHh4OHnEJeXn52vatGmqqKjQ97///Q7neJKxHTt26OzZs5o3b57Cw8Nd4/fee69GjBihgoICtba2eu8FIaB0J3+SdOjQIVmt1i7PR/7giaKiIkVGRmru3Llu4zNmzFBMTIz+8Y9/yOl0sgbCK7qbPynw10AadvhcWVmZrrvuunbfOIMHD1ZsbKxKS0v9VBl6k4qKCknqsmFvy1tSUpLbeGhoqMaNG6eKigrV19d7p0gEvA0bNig6OlobN27UjBkzOpzjScba5o4fP77deZKSklRbW6vDhw/35EtAAOtO/k6ePKna2tou10KJ/KH7WltblZaWpvT0dAUHt28nLBaLWlpa5HA4WAPR4zzJX29YA2nY4VPNzc06efKkYmJiOjweHR2turo6nT592seVobdpu1/p9OnT+uUvf6nExEQlJiZq2bJlqqysdM07duyYrr/+eoWFhbU7R3R0tCSpqqrKN0Uj4Pzud79TYWGhEhISOp3jScbaNsoZNmxYu7lDhw51mwt0J39ta2FLS4sWL16sCRMmKD4+Xo888oi++OILt7nkD90VEhKiuXPnavbs2e2OffXVV6qsrFRMTIwsFgtrIHqcJ/nrDWsgDTt8qra2VpLUr1+/Do+3jfOOJq5U2wK9fv16hYeHKyUlRWPHjtXu3bt133336T//+Y+kC5nsKo+dbeQE/OhHP1JISMgl53iSsTNnzshisahv377t5rZdnkce0aY7+WtbC//yl7+oqalJs2bN0sSJE7Vv3z49+OCD+vjjj11zyR+ulNPp1LPPPiun0+nafZs1EL7SUf56wxrILvHwKYfDIUmd7rrdNt7U1OSzmtA7hYSEKDo6WllZWW6XNr333nt64oknlJmZqe3bt8vhcJBHeJUnGSOP6GlOp1PR0dF69NFHNX36dNd4SUmJ5s2bp4yMDO3Zs0ehoaHkD1fEMAw9/fTT2rdvn+Li4lz3FrMGwhc6y19vWAN5hx0+1fYbq86et97c3CxJuvbaa31WE3qnZ555Rnv37m13H9L06dOVmJioAwcOqLKyUn379iWP8CpPMkYe0dMWLlyovXv3uv2gKl24H3PatGmy2+0qKSmRRP5w+RwOhzIzM7V161YNGzZMr7zyiqvBYQ2Et10qf71hDaRhh0+Fh4crODi408tJ2i6F7+zSKaAnjBkzRpJUXV2tiIiITm/BII/oCZ5kLCIiQk1NTa4fDC7Wtm6SR/SUi9dCifzh8nzzzTdavHixCgoKFBsbqw0bNmjw4MGu46yB8Kau8ncpgbIG0rDDpywWi4YMGeL6xvi26upqRUZGasCAAT6uDL2Jw+HQF198ofLy8g6PNzY2SrqwQ21sbKxOnTrlGrvYiRMnFBwcrOHDh3u1XvRunmQsNjZWkjpcI9vGRowY4b1i0ev8+9//7vTpK22XdoaGhkoif/Dc2bNnNXfuXH344YcaM2aMNm3apCFDhrjNYQ2Et3Qnf71hDaRhh8/ZbDbZ7fZ2uyzW1NTo6NGjuu222/xUGXoLp9OpBx98UPPnz2/3vEzDMLR//35dc801uuWWW2Sz2eR0OlVWVuY2r6mpSZ9//rlGjRrl9ixOwFOeZMxms0lShz9cfPLJJ+rXr59Gjhzp/aLRayxZskQPP/xwh09f+fTTTyVJcXFxksgfPNPU1KS0tDSVl5crKSlJb731lgYOHNhuHmsgvKG7+esNayANO3xu5syZkqTVq1fL6XRKutBErVq1SpKUmprqt9rQO1gsFiUnJ+vs2bN6/fXX3Y6tX79ehw4d0t13362IiAjdfffdCgkJUU5OjtslUHl5eWpoaCCPuGKeZGzy5MkKCwvTG2+84XqqhiS9++67Onr0qFJSUjp85izQmalTp8rpdGr16tUyDMM1vmvXLhUXFysxMVFWq1US+YNnVq1apf379ys+Pl7r1q3r9JfbrIHwhu7mrzesgUHGxZUDPrJ8+XLt3LlTY8eO1fjx47V//36VlZXpjjvu0Nq1axUUFOTvEhHgqqurdf/998tut+sHP/iBbr75Zv3rX/9SSUmJRo0apY0bN+q6666TJL344otat26dRo4cqeTkZB05ckTFxcVKSEjQn//85053DAUuVlBQoIyMDGVkZGjevHluxzzJ2DvvvKPf/va3uvHGG/Xzn/9cNTU12rVrl2JiYrR582ZuGUKHOstfXV2d7r//fn311Ve67bbbZLPZVFVVpeLiYl1//fV655133J45TP7QHXa7XcnJyWppadE999yjG2+8scN5CxYsUGhoKGsgepQn+Wtqagr4NZCGHX7R0tKi119/Xdu3b1dNTY2GDBmi6dOna/78+TRH6DE1NTVau3atPvroI9XW1mrQoEG64447tHjxYrdNQwzD0KZNm7Rp0yYdO3ZMUVFR+tnPfqb09HQ2t0G3Xaph9zRjO3fu1BtvvKEjR46of//++uEPf6jly5dr0KBBPno1CDSXyl9dXZ1ycnL0t7/9TXa7XQMGDNBPfvITLVu2rMNMkT90paioSEuWLOlyXmlpqSIiIlgD0aM8zV+gr4E07AAAAAAAmBA3gQAAAAAAYEI07AAAAAAAmBANOwAAAAAAJkTDDgAAAACACdGwAwAAAABgQjTsAAAAAACYEA07AAAAAAAmRMMOAAAAAIAJ0bADAAAAAGBC/wdUhSKCmur2JQAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "abb_vis_df_pt.plot(kind = 'barh', legend = True, style = 'ggplot',figsize=(15,5), fontsize= 20, title='Price of room type in 5 boroughs')" + ] + }, + { + "cell_type": "code", + "execution_count": 170, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAaIAAAEgCAYAAAD2c3e8AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdeVzU1f748dcMMOwIKCDuGg6aiIqiWKmUWlmS5e9buWRBeUuzzSy9amVXK6+talqWWN40zcylTDO3XFKzcl9RlMUVEBDZh5n5/P6gmUT2D8MSvJ+P68Pr55w5n/fMh+bNOZ/zOUejKIqCEEIIUUu0tR2AEEKIhk0SkRBCiFoliUgIIUStkkQkhBCiVkkiEkIIUaskEQkhhKhVkoiEEELUKvvaDqA0e/bsYcGCBcTExFBQUECnTp14+umn6dOnT4XbyMnJITo6mp9++okLFy7g7OxMSEgI48aNo3PnzpWOKT09G7O5ao9dNW7sRmpqVpXaELYn16XukmtTN1Xkumi1Gry8XMttS1MXH2hdvXo1kydPRqfTERYWhtlsZt++fRQUFDB9+nQeffTRctu4du0ajz/+ODExMfj5+REcHExiYiIxMTHodDq+/vprgoODKxVXampWlRORj487KSmZVWpD2J5cl7pLrk3dVJHrotVqaNzYrdy26lwiSk5Opn///jg6OrJs2TL0ej0AR44cISoqioKCAjZv3oyfn1+Z7UyaNIm1a9dy//3389///hedTgfAokWLePfddwkMDOSHH36oVGySiOovuS51l1ybusmWiajO3SNaunQpBoOByMhIaxICCA4OZvTo0eTn57NixYoy27h06RLff/89LVu2LJKEAJ566ik6depEbm4uaWlp1fY+hBBCVEydS0S7du0CYMCAAcXKBg4cCMDOnTvLbGPTpk0oisLIkSOLJCGL1atXs3nzZry9vW0QsRBCiKqoU5MVFEUhNjYWrVZLu3btipW3adMGrVZLbGwsiqKg0WhKbOfEiRMAdO7cmezsbDZs2MCxY8ewt7end+/e9O/fv9TXCiGEqFl1KhFlZGRgMBjw9vYusSdjb2+Pl5cXqampZGdn4+ZW8thjYmIiUDhhISIigosXL1rLli5dSu/evZk3b16prxdCCFFzbD40l5yczLJly1i6dClxcXGVem1ubi4Azs7OpdZxcnICIDs7u9Q6mZmFN9AmT56Mp6cn33zzDfv372fZsmUEBgayd+9epk2bVqnYhBBCVA/VPaIjR47w0Ucf0b59e6ZMmQLAgQMHGD16tDWhaLVaXnrpJf71r39VqE2ttvy8WJFJfvn5+QA4ODiwePFiPDw8AOjevTuLFi3innvu4ccff+S5556jbdu2FYoNqNDsj4rw8XG3STvCtuS61F1ybeomW10XVYno3LlzPPHEE+Tl5RVJHtOmTSMnJ4cmTZpwyy23sH//fj788EO6dOlCz549y23XxcUF+DuRlMRSVlavyVI2ePBgaxKy8PHx4a677mLdunX88ccflUpEtpi+7eTqSGpa8d6co4M99nVu6kjDIVOE6y65NnWTLadvq0pEX375Jbm5uQwYMIDJkycDcOzYMc6cOYOTkxOrV6/G19eXn376ifHjx7N06dIKJSI3NzdcXFxIT0/HaDRib180PKPRSHp6Oo6OjsUSzI0ss+GaN29eYrnleHp6eoXery3l5hn542RSseOhHf2wd6xTt+yEEKJGqPod/LfffsPV1ZV3333X+qX+yy+/ANCnTx98fX0BGDRoEL6+vhw8eLBC7Wo0GgICAjCZTMTHxxcrj4uLw2w2F3m+qCSW8uTk5BLLU1JSAGT6thBC1AGqElFycjKtW7e2DqUB/Prrr2g0Gm6//fYidX19fSvV87CsJbdly5ZiZZZj/fr1K7ONvn37WusbjcYiZQaDgX379gGF94yEEELULlWJyNXVFYPBYP13RkYGR48eBaB3795F6l69erXM+zk3Gzp0KI6OjixcuJBjx45Zjx89epTo6GicnJwYMWKE9XhiYiJnz561zpQDuO222+jQoQPx8fG88847mEwmAMxmM++++y4XLlzg9ttvL/FZJSGEEDVL1U2J1q1bc/ToUZKTk/H19WXTpk2YzWZat25N69atrfV2797NlStX6Nq1a4XbbtGiBZMmTWL69OkMGzaMsLAwFEVh3759GI1GZs2aRePGja31IyMjuXjxIjNnzmTo0KEA2NnZ8eGHH/LEE0/w9ddfs337djp27Mjp06dJTEzE39+f6dOnq3nrQgghbExVIrr77rs5ePAgkZGR9OnTh1WrVqHRaHjooYcASEtLY9WqVSxYsACNRsPgwYMr1f7IkSNp1qwZ0dHR7N+/H51OR0hICGPHji3W4yrNLbfcwtq1a1mwYAHbtm1jx44d+Pj4MHLkSMaOHYuPj0+l37cQQgjbU7X6dkFBAePGjSuy5luXLl1YsmQJOp2OAwcOWIfP7rnnHj788EPs7OxsF3UtscX0bcXOjh37E4sdD+3oh6vMmqs1MkW47pJrUzfV+vRtBwcHPv/8c3bs2EFMTAytWrWif//+ODg4ANCuXTvuuOMOBg8ezIMPPqjmFEIIIRqIKv0K3q9fvxJnsHl6ehIdHV2VpoUQQjQQ8iy/EEKIWlVuj8iyckJVaDQa3nnnnSq3I4QQov4pNxGtWbMGjUZT4mKjlj19yiuTRCSEEKI05SaiqKioEo8fOHCAw4cP4+HhwYABAwgMDMTDw4O8vDzOnj3Lzz//TEpKCuHh4YSHh9s6biGEEPVEuYlo0qRJxY4dOXKEJUuWEBYWxpw5c2jUqFGxOhMmTGD8+PHs3LmTUaNG2SZaIYQQ9Y6qyQpz5syxrl5QUhKCwq0Y3n33XRwdHZk/f36VghRCCFF/qUpEhw4don379uWuXu3h4cEtt9zCyZMnVQUnhBCi/lOViHQ6nXUrhbKYTCYuX76Mq6urmtMIIYRoAFQlok6dOpGcnMzXX39dZr1PPvmE1NRUevTooSo4IYQQ9Z+qlRX+9a9/sXv3bt5++22OHz9OREQEAQEBODs7k5OTw8mTJ/nuu+/YsmULjo6OjBkzxtZxCyGEqCdUJaJevXrx2muvMXPmTNasWcOaNWuK1VEUxTphoUOHDlUOVAghRP2keomfkSNHsnbtWh588EGaNGmCoijWP02bNuWxxx5jw4YNDBw40JbxCiGEqGdU9YjOnz9Py5YtCQgIYObMmQDk5eVx/fp1PD090el0Ng1SCCFE/aWqR/Tss88yYMAArl27Zj3m5OSEr6+vJCEhhBCVoioRJSYm4ujoiKenp63jEUII0cCoSkSNGjUiNzfX1rEIIYRogFQlojFjxnDp0iVmzZolCUkIIUSVqJqskJ+fT9euXVm8eDFff/017du3x8fHB0dHxxLrazQaZs+eXaVAhRBC1E+qEtGsWbOsexQZDAaOHz9eZn3L3kRCCCHEzVQlonHjxklyEUIIYROqEtHzzz9v6ziEEEI0UKoS0c0URSElJYXs7GxcXFzw8/OzRbNCCCEagColotjYWD755BN27txJdna29biTkxO33XYbzz//vKwzJ4QQokyq15rbvHkz//d//8dPP/1EVlZWkbXmcnNz2bp1K4888ggbNmywZbxCCCHqGVU9ovj4eF555RXy8/Pp378/o0aNolOnTri4uJCZmcnx48dZunQpv/zyC1OnTqVTp060bt3a1rELIYSoB1T1iBYuXEh+fj5RUVHMnz+fsLAw3N3dsbOzw9PTk9tvv51PP/2UJ554gtzcXJYsWWLruIUQQtQTqhLR3r17cXNzY/z48WXWmzBhAq6uruzatUtVcEIIIeo/VYkoJSWFtm3blrvStk6no127dly5ckVVcEIIIeo/VYnIxcWF1NTUCtVNTU3FyclJzWmEEEI0AKoSUVBQEJcvX2bHjh1l1tuxYweXLl0iKChIVXBCCCHqP1WJ6NFHH0VRFF599VU2btxYYp2ffvqJV155BY1Gw8MPP1ylIIUQQtRfqqZv33333QwePJgff/yR8ePHM2PGDAIDA3F1dSUrK4uYmBjS09NRFIX777+fe++919ZxCyGEqCdUr6zw3nvv0aZNG7788ktSU1PZs2dPkXI3NzeioqIYO3ZslYMUQghRf6lORBqNhueee46nnnqKP//8k/j4eOtac23btqV79+64uLjYMlYhhBD1UJUXPc3KyqJPnz706dPHeuzPP/8kMTFR1pkTQghRLtVrzSUlJfHkk08SHh7O9evXi5QtXLiQhx56iKioKHmGSAghRJlUP9D6yCOPsGfPHjQaDcnJyUXK/fz8cHJyYu/evYwaNYrMzEybBCuEEKL+UZWI5s+fT1JSEmFhYfzyyy8EBAQUKZ8+fTq//PILt99+OxcuXODzzz+3SbBCCCHqH1WJaOfOnTg7OzN79mx8fHxKrOPp6cl7772HTqdj06ZNVQpSCCFE/VWlteY8PT3LrOft7U3btm25dOmSquCEEELUf6oSkaenJ+np6RWqm5WVJdO4hRBClEpVIrr11lu5cuUKW7ZsKbPe7t27uXDhAp06dVIVnBBCiPpPVSIaPnw4iqIwceJEVqxYQV5eXpFyg8HA6tWrGT9+PBqNhuHDh9skWCGEEPWPqgdaw8PDGT58OMuXL+fNN99kxowZNG/eHFdXV3Jycrhw4QImkwlFUXjkkUcYOHCgreMWQghRT6heWWHatGl07tyZzz77jISEBBISEoqU+/v78/TTT0tvSAghRJmqtMTP0KFDGTp0KAkJCSQmJnLt2jWcnZ1p06ZNsWeLhBBCiJJUea05gNatW9O6dWtbNCWEEKKBqXIiiomJYefOncTFxZGVlcXcuXPJzs5m48aNREREoNPpbBGnEEKIekp1IsrIyGDq1Kls3boVAEVR0Gg0AJw/f56pU6cyd+5cPv/8cwIDA20TrRBCiHpH1fRtg8HAk08+yZYtW3BxceGuu+7C19fXWq4oCh4eHiQlJTFq1ChZWUEIIUSpVCWipUuXcvz4cUJDQ9m8eTPz58+nRYsW1vKOHTuybds2QkNDyczMZOHChTYLWAghRP2iKhH9+OOP2Nvb8/777+Pt7V1iHTc3N95//33s7e3ZtWtXpc+xZ88eHn/8cXr16kVISAijRo1S1c6NRo8eTWBgIPv27atSO0IIIWxHVSKKi4sjICAAPz+/Muv5+fnRrl07kpKSKtX+6tWriYqK4uDBgwQHB9OtWzcOHjzI6NGjWbFihZqQWbZsWZUTmRBCCNtTNVlBo9GQm5tbobpms7lSM+eSk5OZNm0a7u7uLFu2DL1eD8CRI0eIiori7bffJjw8vNwkeKPExETee++9CtcXQghRc1T1iNq2bcuFCxe4cOFCmfUSExOJjY2lXbt2FW576dKlGAwGIiMjrUkIIDg4mNGjR5Ofn1+pXpHZbGbixIk4ODjQvn37Cr9OCCFEzVCViCIiIjCZTEyaNIlr166VWOfatWu88sorAAwaNKjCbVuGzwYMGFCszLJm3c6dOyvc3sKFCzl48CCvv/46TZo0qfDrhBBC1AxVQ3MjRoxg/fr17N+/n0GDBnHbbbdZe0eLFy/m7NmzbNq0iYyMDNq3b8/IkSMr1K6iKMTGxqLVakvsRbVp0watVktsbGyR55ZKc+rUKT7++GPuueceIiIiWLVqVeXfrBBCiGqlqkek0+mIjo4mPDyc9PR01q9fT3JyMoqiMGvWLFauXElGRgahoaEsWrQIR0fHCrWbkZGBwWDA09OzxPtK9vb2eHl5kZubS3Z2dpltGQwGJk6ciIeHB2+++aaatymEEKIGqF5ZoVGjRixYsIBjx46xdetWzp49S1ZWFs7OzrRu3Zrw8HB69uxZqTYtEyCcnZ1LrePk5ARAdnY2bm5updabM2cOMTExzJ8/v9Qp5pXVuHHp56uo5LQc3N2cih13cXHEx1t2sq1NPj7utR2CKIVcm7rJVtdFVSL6+uuvueWWWwgLCyMoKIigoCCbBKPVlt9BUxSl3Dr79+/niy++4IEHHijxXpNaqalZmM3ln79MdnZkZuUVO5yTk0+KyVS1toVqPj7upKRk1nYYogRybeqmilwXrVZToV/gVSWiBQsWkJWVxY4dO/Dw8FDTRIlcXAp7BPn5+aXWsZSV1mvKycnh3//+Nz4+Prz++us2i00IIUT1UJWIMjIyCAgIsGkSgsLVGFxcXEhPT8doNGJvXzQ8o9FIeno6jo6OpZ57+fLlJCYmEhgYyPTp04uUxcbGAoWJdOXKlQwbNowePXrY9D0IIYSoHFWJqGPHjsTGxpKeno6Xl5fNgtFoNAQEBHDkyBHi4+OLba4XFxeH2Wwu8nzRzXJycoDC7SliYmJKrLNnzx4AbrvtNklEQghRy1TNmnvnnXdwd3dn+PDhrFy5kjNnznDt2jVyc3NL/VNRffr0AWDLli3FyizH+vXrV+rrn3/+eWsSuvlP7969Afjqq6+IiYlh6NChlXnbQgghqoGqHtFLL72ERqMhISGBN954o9z6Go2GEydOVKjtoUOHEh0dzcKFC7njjjusEyGOHj1KdHQ0Tk5OjBgxwlo/MTGRgoICfH19cXeXmTVCCPFPoyoRnTlzplL1KzLTzaJFixZMmjSJ6dOnM2zYMMLCwlAUhX379mE0Gpk1axaNGze21o+MjOTixYvMnDlTejhCCPEPpCoRWXZlrS4jR46kWbNmREdHs3//fnQ6HSEhIYwdO9Y6vCaEEKJ+0CiV6a7YyGeffUZ8fDwzZ86s6VNXiS2eI1Ls7NixP7HY8dCOfrg6qn6+WFSRPKtSd8m1qZts+RyRqskKVbVjxw7Wrl1bG6cWQghRx9RKIhJCCCEsJBEJIYSoVZKIhBBC1CpJREIIIWqVJCIhhBC1ShKREEKIWiWJSAghRK2SRCSEEKJWSSISQghRqyQRCSGEqFWSiIQQQtSqchPR9OnTiY6OtulJa2GdVSGEEHVUuYlo/fr1bNy4scix/v37M378eNUnHTt2LO+8847q1wshhKg/yt13ID8/n9TUVBRFQaPRAHDx4kWaNm2q+qR9+/ZV/VohhBD1S7mJqE2bNsTExPD4448TEhKCg4MDAJcvX2bevHkVPtFzzz2nPkohhBD1Vrkb423YsIGXX365sPJfPaLKsPSkTp48qS7COkQ2xqu/ZPO1ukuuTd1ky43xyv3mu++++/D19WXjxo2kpaVhNBrZtGkTXl5ehIaGVjxqIYQQogQV+hW8R48e9OjRw/rvDh060K5dO+bOnVttgQkhhGgYVI0FPffcc/j7+9s6FiGEEA2Q6kRkoSgKx48fJz4+nuzsbFxcXGjdujWdOnXCzs7OZoEKIYSon6p0d3zVqlXMnTuX5OTkYmWenp68+OKLDBs2rCqnEEIIUc+pTkTvvfceX3zxBYqioNPpaNeuHS4uLmRmZhIXF0d6ejr/+c9/SEhIYNKkSbaMWQghRD2iKhHt3buXRYsWodPpmDBhAo8++ihOTk7W8tzcXFasWMGHH37I4sWLufPOO+nZs6fNghZCCFF/qFr09KuvvkKj0TBjxgyeeOKJIkkIwNnZmcjISKZPn46iKCxbtswmwQohhKh/VCWiQ4cO4ePjw5AhQ8qs9+CDD+Lj48OhQ4dUBSeEEKL+U5WIMjMzK7zWnL+/P6mpqWpOI4QQogFQlYi8vb1JSEjAbDaXWc9kMpGQkICXl5eq4IQQQtR/qhJRaGgo169fZ9GiRWXWW7RoERkZGbIUkBBCiFKpmjX31FNPsXHjRj766CMuX77M8OHDad++vbX89OnTLF++nBUrVmBnZ0dUVJTNAhZCCFG/qEpEt956K1OmTOGtt95i+fLlLF++HHt7e1xcXMjJycFoNAKFq3VPmTKFoKAgmwYthBCi/lA1NAcwcuRIFi9eTM+ePbGzs6OgoICMjAwKCgqws7OjV69eLF68mJEjR9oyXiGEEPVMlZb46dWrF7169SInJ4fz589b15pr1aoVLi4upb7u1KlTZGZmyr0jIYQQVUtEFi4uLgQGBla4/vTp0zl06BAnTpywxemFEEL8g6kemquqcjaGFUII0UDUWiISQgghQBKREEKIWiaJSAghRK2SRCSEEKJWSSISQghRqyQRCSGEqFWSiIQQQtQqSURCCCFqlSQiIYQQtUoSkRBCiFoliUgIIUStUrXo6b///W+aN2/Ok08+iaura6Vf37FjR+zs7NScWgghRD2jKhFt27YNe3t7nn32WVUnff3111W9TgghRP2jamiuoKCApk2bSq9GCCFElalKROHh4Zw+fZojR47YOh4hhBANjKqhuZdffpnLly8zatQoBg4cSLdu3fDx8cHR0bHU1/Tr1091kEIIIeovVYno7rvvBgo3t1u/fj3r168vs75Go5HdWEtgMpnZffQK3fRNajsUIYSoNaoSkb+/v63jKGbPnj0sWLCAmJgYCgoK6NSpE08//TR9+vSpcBs7duzgq6++4ujRo+Tk5ODj40OfPn149tlnadq0aTVGXzEZ2Qbir2Ti39iltkMRQohao3rWXHVavXo1kydPRqfTERYWhtlsZt++fYwePZrp06fz6KOPltvG559/zgcffIBWqyU4OJjGjRtz8uRJVqxYwebNm1m6dCm33HJLtb6P8hgKzIV/G821GocQQtQmVYmoOiUnJzNt2jTc3d1ZtmwZer0egCNHjhAVFcXbb79NeHg4fn5+pbYRGxvL7NmzcXFx4YsvvqBbt25A4Wy/d955h2XLljFlyhRWrFhRI++pNPkFpsK4JBEJIRqwKq+skJaWxoYNG5g/fz6zZs0CID8/n99++01Ve0uXLsVgMBAZGWlNQgDBwcGMHj2a/Pz8chPI999/j8lkIioqypqEABwcHJgyZQre3t4cOnSIixcvqorRVgxGU5G/hRCiIVKdiAoKCpg5cybh4eFMmDCBefPmsXjxYgASExOJiopi6NChJCUlVardXbt2ATBgwIBiZQMHDgRg586dZbbh4OBAYGAgoaGhJZa1aNECKOx91ab8v4bmCgqkRySEaLhUJSKz2cy4ceP46quvMBqNBAYG0qhRI2t5dnY2Wq2WEydOMHz4cNLT0yvUrqIoxMbGotVqadeuXbHyNm3aoNVqiY2NRVGUUtt54YUX+OGHH+jdu3exspycHGJjYwFqfcKCocDSI5JEJIRouFQlolWrVrFz507atWvHDz/8wNq1a4skjq5du7Jx40bat2/P5cuXWbRoUYXazcjIwGAw4OnpiU6nK1Zub2+Pl5cXubm5ZGdnqwmdhQsXkpOTQ+fOnWtk9l9ZDHKPSAgh1CcijUbD3LlzCQgIKLFOy5Yt+fjjj9FqtRWeZZebmwuAs7NzqXWcnJwAVCWiHTt28Nlnn6HVann11Vcr/Xpby7fOmpN7REKIhkvVrLkzZ87Qrl27cqc/t2nThjZt2nD+/PkKtavVlp8XyxqSK8v27dt54YUXMJlMTJgwgV69elW6jcaN3VSd+0bJaTm4uxUmU7O58L0YTQouLo74eMvzRLXJx8e9tkMQpZBrUzfZ6rqoSkQmk6lCSQMKJwdUdHFUF5fCL+L8/PxS61jKyuo13ey7775j2rRpGI1Gxo0bx9NPP13h194oNTXLmjxUs7MjMysPgJw8IwD5BhM5OfmkmKRnVFt8fNxJScms7TBECeTa1E0VuS5araZCv8CrSkQtW7YkLi6OtLQ0vL29S6139epVYmNjS5x4UBI3NzdcXFxIT0/HaDRib180PKPRSHp6Oo6Ojnh4eFSozdmzZ/Ppp5+i0WiYPHkykZGRFXpdTcgv+Hv6ttqenhBC/NOpukd0zz33YDQaeeONNygoKCixjsFgYOrUqZhMphKnYpdEo9EQEBCAyWQiPj6+WHlcXBxms7nI80WlURSFqVOn8umnn6LT6fjwww/rVBKCv+8NKYpMWBBCNFyqekRRUVH88MMPbN26lSFDhjBgwABSUlIA2LJlC7GxsaxZs4aEhAT8/f0rlQD69OnDkSNH2LJlS7GJEFu2bAEqtpL3f//7X7777jvc3Nz49NNP6dmzZ8XfYA1QFAVDgRknnR15BhO5+Ua83EpfvVwIIeorVT0iV1dXvvzySzp06MC5c+dYuHAhFy5cAOD5559nzpw5JCQk0Lp1a6Kjoys8jAYwdOhQHB0dWbhwIceOHbMeP3r0KNHR0Tg5OTFixAjr8cTERM6ePUtm5t9jlTt37mTx4sXY29vz2Wef1bkkBH8/O+Tq7ABArkHuDwkhGibVa801b96cVatWsWnTJrZt20ZsbCzZ2dk4OzvTunVrwsPDuf/++0t8HqgsLVq0YNKkSUyfPp1hw4YRFhaGoijs27cPo9HIrFmzaNy4sbV+ZGQkFy9eZObMmQwdOhSAefPmAdC4cWO++eYbvvnmmxLPNXbs2Fpb+NTyDJGbswOpGXnk5RtrJQ4hhKhtVVr0VKvVcu+993LvvffaKh4ARo4cSbNmzYiOjmb//v3odDpCQkIYO3Zsiasl3Cg3N5ejR48CkJSUxLp160qt+/DDD9daIrI8Q+Rm7RFJIhJCNEw2WX07LS2N+Ph48vLycHd3p127dri6ulapzTvvvJM777yz3Ho3Pyzr7OzMyZMnq3TumnBjjwggN0+G5oQQDVOVEtGGDRtYtGhRsd1XtVotoaGhjBs3rsSFR0UJiUh6REKIBkr16tuvvfYaEyZM4Pjx4yiKgpubG76+vri6umIymfjtt9944oknrCtyi6JuHpqTe0RCiIZKVY9o3bp1fPfdd+h0OsaOHcvQoUOLbFR34cIFli1bxv/+9z9mzZpFhw4dCAsLs1nQ9YGlR+TqXHgJZNacEKKhUtUjWr58ORqNhg8++ICxY8cW2y21RYsWTJw4kTfffBNFUVi4cKFNgq1P8gtM2Gk12NtpcbDXSo9ICNFgqUpEp06domXLltaN6krz8MMP4+/vz+HDh1UFV58ZjGZ0DoUfv85eS64kIiFEA6UqEdnb21sXKC2Pl5eXrKNWAkOBCUeHwsVgHey1MjQnhGiwVCWinj17cubMGeLi4sqsl5SUxJkzZwgJCVEVXH2WX2BC91ci0jnYydCcEKLBUpWIJkyYgIuLC2PGjEnOCnsAACAASURBVLFuu32zpKQkxo0bh729PRMmTKhSkPWRocCMzv6GoTnpEQkhGqhyZ829+OKLJR5v2rQpZ86c4YEHHqB79+506NABFxcXcnNziY+PZ9++fRgMBvr06cOmTZvo0KGDzYP/JzMUmPB2L1zk1MFey/XsklcxF0KI+q7cRPTzzz+XWW42m/njjz/4448/SizfuXMnu3bt4oUXXlAXYT1189BcriG3liMSQojaUW4ieu6552oijgbFbFYwmhTrrDnL9G1FUdBoNLUcnRBC1CxJRLXAsjOrZdaczl6LWSm8b+Soq9i26kIIUV+oXuJHqGf4a3kfnXX6duHfOTJzTgjRAFVp0dPr169z+vRpsrOzy61bkV1VGwrLFuE3PtAKFO7S6i67tAohGhZVichoNPKf//yHNWvWYDKVP+1Yo9EUW6G7Ibt5aM7B4e9EJIQQDY2qRDRv3jxWrlwJgE6nw9PTE3t7m2xt1CBYh+bs/75HBJKIhBANk6rs8cMPP6DRaJg0aRKjRo3Czk5usFeGZeXtv4fm5B6REKLhUpWIUlJSaNWqFZGRkTYOp2GQoTkhhPibqllzPj4+aLUy4U4tQ4EZezsNWm3hM0M39oiOnE3lpY9/5Xq2oTZDFEKIGqMqmwwaNIjExEROnTpl63gahAKj2TplG8DeToNGAzl5Rr7bfpbr2QbOXbpeixEKIUTNUZWInnvuOW655Raee+45du/ejdEoQ0qVYTCarBMUoHBWoZPOnt9PJnEhJQuA83/9LYQQ9Z2qe0TOzs688sorjBkzhtGjR2NnZ4ebm1upy9NoNBr27NlTpUDrk8IeUdHfAZwd7Ui5loePpxMms0L8lUyy8404OthjL6OgQoh6TFUi2r17N88++yyKoqAoCkajkWvXrpVaX9ZPK6qkRGRZ2kff0pPEpCzOXczgj5NJhHb0w95RpsYLIeovVd9w8+fPx2g0cuuttzJ8+HCaNWuGg4ODrWOrtwqMZlydi35eHi46slwKaOvvQWZOAReSszCazLUUoRBC1BxViejUqVN4eHiwZMkSXF1dbR1TvWcwmor1iB7p354TcalotRq83B1RgIwsmTknhKj/VCUiBwcHmjdvLklIpQKjuchkBQBPd0dcnQp7SZb15tIz82s8NiGEqGmqboN369aNhISECi12Kooymc0YTUqxHtGN3FwcsNNqJBEJIRoE1dO38/Pzee2118jJybF1TPVabn7hqgplJSKtRoOnuyPpWZKIhBD1n6qhuaSkJB566CFWrlzJnj176N69O35+fjg7O5dYX6PR8Oqrr1Yp0PrCsoyPzr7s9fm83B05n5SFoig1EZYQQtQaVYlo3Lhx1inZGRkZbNu2rdQp2pbtryURFcr7KxGV1SMC8HJzJPZCBpk5Bbg5yYxEIUT9pSoRPfjgg/JskEo5FU1Ef01YuHg1C39vl2qPSwghaouqRPTf//7X1nE0GJYekWULiNJ4/pWI1u6MY+fBSzT3ceXRu9pXe3xCCFHTZPGYGma5R+RQzh5OTjo72vi7A3AlLYeffz9P2vW8ao9PCCFqmiSiGpaTV7EeEUDfLs2YPKo7L/y/YACOx6VVa2xCCFEbVA3NdezYsVL1NRoNJ06cUHOqeifPULF7RDdq7uNKIzcdx+LS6NOlWXWFJoQQtUJVIqrMlGJ3d3c1p6i3cvONaDRgp63YZA+NVkOOwURgKy+OnU0lM7cArVYjq3ILIeoNVYlo3bp1pZbl5uaSkpLC1q1bWbt2Lf/v//0//v3vf6sOsL7JzTeis7er8KzD/AITh0+n4GivJSffyMZ9Cfh4Osuq3EKIekPVN1n79uXP3urfvz8dOnRg5syZBAUFMXjwYDWnqndy842VGpaz8G9SOIX70tVsfDxLfnBYCCH+iap1cGfkyJF4eXmxZMmS6jzNP0punrpE5KSzp7GHE5euyvp+Qoj6pVoTkZ2dHf7+/pw+fbo6T/OPkmswFlt5u6KaNXHhakYehgKTjaMSQojaU62JKCsri/j4eNk07wZqe0QAzXxcURSIOV/6brhCCPFPo+oeUW5ubqlliqJgMBiIi4vjww8/JCcnhz59+qgOsL7JNZjwcFGXmH09nWnl58bB01c5pL/K7UFNbRydEELUPFWJKCQkpEL1FEXBzs6Op59+Ws1p6qXcfCONPRxVvVaj0XBHsD+bfj/PVz+doqmXM7c0b2TjCIUQomapGiNSFKVCfwIDA5k7dy49evSwddz/SIqiVGloDsDeTstd3ZvTyE3Hwh9PYDKbbRihEELUPFU9oq1bt5bdqL09Hh4epe5P1FAZjGbMiqJ6soKFk86eh/q1Y+EPJ9h7LIk7gv1tFKEQQtQ8VYmoefPmto6jQcit4BYQFdG5XWNa+7nzw+44wjr5YW8nyywIIf6ZVD+an5WVxbfffsuhQ4fIysrCZDKVuvSPRqPhf//7n+og64u/E1HZK29XhNZOy71hrfjs++P8cvAit3Uu7BXJ0j9CiH8aVYkoJSWFYcOGcenSpQqtOyeb6BXKzS98/qeqQ3NQuPRPTl4BTRo58cOvcUBhT0uW/hFC/NOo+saaP38+Fy9exNnZmfvvv5+2bdvi5ORk69jqHVsOzUFhgg/R+7D5j/NsP3iRu7rLkKkQ4p9HVSLavn07Go2GL7/8kq5du9o6pnort4K7s1ZG08YuhAU1Ze+xK+w6fJnQjvJskRDin0XVN2JqaioBAQGShCqporuzVlb7Fo3o0cGHxKQs1u48Z9O2hRCiuqlKRE2aNCEvT7atrqxcQ+E9Igcb9ogsbm3jTWArT7YfvMjRc6k2b18IIaqLqm/EO++8k4sXL3Lq1Clbx1Ov2foe0c16BPrg39iFRetPcj3bUC3nEEIIW1P1jfj888/j5+fH+PHjOXr0qK1jAmDPnj08/vjj9OrVi5CQEEaNGsWuXbsq1UZcXBwvv/wy/fr1o0uXLkRERLB06VLMtbQaQW6+EUcHO7TVNIvQzk5L5H0dyckz8tkPx8nMkWQkhKj7VM+aCwoKYvPmzTzyyCM0atQIPz+/UlfZ1mg0rFy5ssLtr169msmTJ6PT6QgLC8NsNrNv3z5Gjx7N9OnTefTRR8tt49SpU4wcOZKsrCxCQkLo3Lkz+/btY8aMGRw6dIj333+/wvHYSm6+Eedqnlrd3NeNR/sH8M2WM0xduI//u/MWQvQ+OOkc5PkiIUSdpOpbcenSpdZngxRF4dq1a1y7VvrWBJV5jig5OZlp06bh7u7OsmXL0Ov1ABw5coSoqCjefvttwsPD8fPzK7UNRVGYOHEiWVlZvPvuuwwZMgSAtLQ0IiMjWbduHQMHDuSee+6pcFy2UBOJKL/AhJ1Ww329W7Pn2BUWbzjF1j8v8MyQTjRr7Fqt5xZCCDVUfSvOnDnT1nFYLV26FIPBwDPPPGNNQgDBwcGMHj2a2bNns2LFCl544YVS29i9ezcxMTH07NnTmoQAvL29mTZtGiNGjGDJkiU1n4gMpmpPRBZe7o4MCmvFyfh0Dp25yttf/UnEbW25I9gfN2fZH0oIUXeo+lZ86KGHbB2HleU+0IABA4qVDRw4kNmzZ7Nz584yE1FZbXTv3p3GjRuzf/9+srKycHNzs1Hk5cvNN+LsVHNJQKvR0KmtNy193TgRn863v8SyeudZugQ0oUMrLwKaN6KJpxPOjvbVdt9KCCHKU6fWglEUhdjYWLRaLe3atStW3qZNG7RaLbGxsSiKUuqQX2xsLECRHtWN2rZtS2pqKmfPnqVLly62ewMlMBSY2B+TQsc2XuTmG/HyqPkVKDxcdbzwSBcuJmex99gVDpxOYX9MirVcA3h5OBLY0pPAVl40buSEu7MDHq463JwdrAuqlvWZCyGEWnUqEWVkZGAwGPD29kan0xUrt7e3x8vLi9TUVLKzs0vtzSQnJwPg4+NTYrnl+NWrVysVn1Zb+S/hjJwCftgTx4974wFo6u2CSwm9Ins7bbUeN5kV0jPz6dDai8BWnuTmG0m7nkfjRs7k5Bm5mpFL/JVMzl66Xuy1Ogc7TGYFk8mMi6M9nm6OODvaYTSD2WzG1dkBDxcdDnZaDMbCxW8dHOzQ2duhKApGkxkNGhwd7XC015KbbyIrrwCtRoObswOODlqMZgWTSUGrBQc7LRqNBpPZjMmsYKfVYKfVoigKBSYzZgXs7TTYa7WgAUUBFAVFAYXCv81/JU0NoNGABk3h34X/QIMGBYW//oezswO5OQbKWjqxzBz8V2GRKhrLX38fVbjhBEqRv7j55MrN5Tefsqy4bjpYrIrm5n+W/bOt3BxF2f8sUYlnqEAcLi6pZOfkl3rCIueu4AXU3PR/SrxGZVyfm0+jueFiaP5q1/IzZvn5BDArRc5Q+HNpeb3157Xo627+uYbC0Y4bf675698oWP+70f713w38dcykWOMs7b8NjUZDgdFEdp6R/ILCWwluTvaEdvQrcUi/vO/Ein5n1qlEZNmCvKx9jCxr2pWViCztlLb+neV4Tk5OpeLz8qr8zf7Gjd2Innp3heq2a+FVK8eFEEKNxo1tc2ujTk3o1WrLD6ciq31b2iltGMnSRkXaEkIIUb3qVCJycXEBID8/v9Q6lrKyek2WdkpbhsjShqWeEEKI2lOnEpGbmxsuLi6kp6djNBqLlRuNRtLT03F0dMTDw6PUdnx9fYHS7wGlpBTeqC/tHpIQQoiaU6cSkUajISAgAJPJRHx8fLHyuLg4zGZzqbPhLNq3bw/8PXvuRoqicO7cOezs7LjllltsErcQQgj16lQiAujTpw8AW7ZsKVZmOdavX78KtbF169ZiZQcOHCAtLY3u3bvX6DNEQgghSlbnEtHQoUNxdHRk4cKFHDt2zHr86NGjREdH4+TkxIgRI6zHExMTOXv2LJmZmdZjPXv2pH379uzevZtvv/3WejwtLY3//Oc/AERFRdXAuxFCCFEejVIHp459/fXXTJ8+HQcHB8LCwlAUhX379mE0Gpk1a1aRZXvuuusuLl68yMyZMxk6dKj1+JEjR3jiiSfIycmhS5cu+Pr68vvvv5ORkcEjjzzCjBkzauOtCSGEuEmdeo7IYuTIkTRr1ozo6Gj279+PTqcjJCSEsWPH0rt37wq1ERwczMqVK5k7dy779u3jzJkztG7dmpdffpmHH364mt+BEEKIiqqTPSIhhBANR53sEdU3e/bsYcGCBcTExFBQUECnTp14+umnrZMqRPUymUwsX76cNWvWcO7cOUwmEy1btuS+++5j9OjRODo6Fql/9OhR5s+fz9GjR8nJySEgIIDHH3+ciIiIWnoHDcO1a9cYPHgwKSkpxMTEFCuPi4vj448/Zv/+/Vy7do1WrVrx6KOPMmLEiAo9DC8q5+LFi8yfP59ff/2VtLQ0vLy8CA8P54UXXij26EtVr430iKpZaZv8FRQUVHiTP6GeyWTi2WefZfv27bi4uNClSxfs7e05fPgw169fp0uXLvzvf/+zPiC9e/dunnnmGcxmM6GhoTg7O7N3717y8vIYM2YM48ePr+V3VH+NHz+eDRs2ABRLRDdvdNm4cWP27dvH9evXiYiIqJWNLuuzo0ePEhUVRWZmJnq9nlatWnHs2DGuXLlCq1at+O6772jUqBFgo2ujiGqTlJSkBAUFKd27d1diYmKsxw8fPqyEhIQonTt3Vq5cuVKLEdZ/y5cvV/R6vRIREVHks05NTVUeffRRRa/XK++//76iKIqSm5ur9O7dW+nUqZOyd+9ea92EhASlb9++il6vV44ePVrj76EhWLdunaLX661/bmQ2m5WIiAhFr9cra9eutR5PTU21Ht+4cWNNh1xv5efnK3fffbei1+uVr776yno8Ly9Pef755xW9Xq/MmDFDURTbXRvpz1YjyyZ/kZGRJW7yl5+fz4oVK2oxwvpvzZo1AEyZMqXIrr7e3t68+eabAKxfvx6A77//ntTUVCIiIggLC7PWbdWqFRMmTABgyZIlNRR5w5GUlMSMGTPo1q0bdnZ2xcrL2+gS5LrY0oYNG4iPjyciIoJRo0ZZjzs6OjJ58mSaNGlCXFwcYLtrI4moGpW3yR/Azp07azSmhsbLy4t27doRHBxcrKxNmzbA39uGWK5X//79i9W96667sLOzk+tVDaZOnUp+fj6zZs0qsbwyG12Kqtu0aRNQ8rOW/v7+7N69m0WLFgG2uzYyWaGaKDba5E9UzYIFC0otO3r0KABNmzYF4MyZM0DJGyq6ubnh6+vL5cuXuXr1Kk2aNKmGaBueZcuWsWvXLl5//XVat25dYp26tNFlQ3DixAkcHBzo0KEDly9fZt26dSQmJuLp6cndd99d5Jc6W10bSUTVxFab/InqoSgKc+fOBeDuuwv3iypvMVwfHx9JRDaUmJjIe++9R1hYGCNHjiy1XnVtdCmKMxgMXL58maZNm7Jx40amTp1q3d8NYOHChTz11FNMnDgRsN21kaG5alLZTf5Ezfrwww/5/fffadKkCaNHjwaqb0NFUZzJZGLixIloNBpmzpxZ5oiAXJeaYxlCy8jIYNKkSQwYMICNGzfyxx9/8NFHH+Hp6cmiRYus97ZtdW0kEVUTW23yJ2xvzpw5fP755+h0OmbPno23tzcAdnZ21u2SS6LIhoo2Ex0dzcGDB5k8eTLNmjUrs65sdFlzLHu15ebm0qtXL95//33atm2Lh4cH9913n/U+3vz581EUxWbXRhJRNbHVJn/CdoxGI2+88QaffPIJjo6OzJs3j9DQUGu5s7MziqKUes1kQ0XbOHXqFB9//DH9+vWr0HJbstFlzbnxu2j48OHFysPDw/Hz8yMpKYmEhASbXRu5R1RNbt7kz96+6Edd0U3+hG1kZ2fz4osvsmvXLjw8PPjkk0+KJCEo3FDx+vXrpKSk0KJFi2JtyIaKtvHRRx9RUFCA0WjklVdeKVJmNpsBrMenTJmCr68vJ0+e5OrVqyXuISbXxXbc3d1xcHCgoKCgxP8GAJo1a0ZSUhLp6ek2uzbSI6omttrkT1RdRkYGo0aNYteuXfj7+/P1118XS0Lw94aKZ8+eLVaWlZVFcnIy3t7eMlGhiiz3C3bv3s26deuK/LEM4Vj+nZOTIxtd1qAbP8ekpKQS61gmHnh7e9vs2kgiqka22ORPVI3BYODpp5/m+PHjBAQE8M0335Sa/Mu6Xtu2bcNkMsn1soElS5YQExNT4h/LA62Wf7do0UI2uqxhffv2BWDjxo3Fys6dO8fFixfx9fWlZcuWNrs2koiqUWU3+RO2N3fuXA4dOoS/vz9LliyxPjNUknvuuYfGjRuzZs0aduzYYT1+/vx5PvjgAzQaDZGRkTUQtbiRbHRZs4YNG4aLiwtr165l3bp11uMZGRm89tprmM1mRo4ciVartdm1kUVPq1llNvkTtnXt2jX69etHXl4enTp1KvHBYgvLwoxbt27lhRdewGQyERoaiqurK7/99hu5ubmMHz+eMWPG1FT4DdKtt96KyWQqtuipbHRZszZs2MCrr76K0WikU6dO+Pr6cujQIdLT0wkLCyM6OhoHBwfANtdGElEN+OWXX4iOjubEiRPodDoCAwMrtcmfUGfnzp3861//qlDdG7/4Dhw4wPz58zl8+DCKohAQEEBkZCSDBg2qrlDFX0pLRFB4H8Ky0aXBYKB169YMGzaMhx9+uMQ16kTVnDx5kk8//ZTff/+dnJwcWrZsyZAhQ4iKirImIYuqXhtJREIIIWqV3CMSQghRqyQRCSGEqFWSiIQQQtQqSURCCCFqlSQiIYQQtUoSkRBCiFoliUgIIUStkkQk/jECAwMJDAzk9OnTtR2KaEBKWgRXfhZtSxKREEKUICUlhZdeesm6LbaoPrIfkfjH2LBhAwAtW7as5UhEQ7Br1y5++uknOnXqVNuh1HuSiMQ/huw3I0T9JENzQgghapUkIlEhH3/8MYGBgSxatIhly5bRt29fgoODGTx4MAkJCUDhvj1vvPEGd911F0FBQfTq1YtnnnmGvXv3Fmnr/PnzBAYGcuutt5Kamlri+X777TcCAwO54447MJlMQNk3iP/44w/GjRvHbbfdRlBQEP369WPKlCnW2CxefvllAgMDmTt3brE2vv76awIDAwkKCiIvL69ImaIo9O7dm8DAQC5fvmw9tnLlSkaNGsUdd9xB586dCQ8PZ8KECRw5cqSCn2zZLJ/7559/ztmzZxkzZgyhoaGEhoYyYsSIEjcvs8jKymLevHlERETQpUsXQkJCGDZsGN9++631M73RXXfdRWBgIImJiYwfP56uXbsSGhpapXskq1evJjAwkLfffpurV6/yxhtvcMcddxAcHMx9993HkiVLgMLP8ptvvuGBBx4gODiYsLAwXnnlFZKTk0tsNz4+vsjPWs+ePYmKiuKnn34qsX5gYCDdunWzXrOhQ4fStWtXunfvTlRUFLt37y72WUyePBmA48ePExgYyF133VWsXUVR+O677/i///s/unbtSs+ePXnyySeL/cyLskkiEpWyadMm/vOf/2BnZ0fz5s2ty8Pv2rWLBx54gBUrVpCWlkb79u1xcnJi+/btREZGMm/ePGsbLVu2JCQkBJPJVOoX6fr16wGIiIgodxn5Tz75hMcee4wtW7ZYt1/Pyclh1apVDBkypMgmd5YdVvfs2VOsnX379gFQUFDAwYMHi5QdPXqUtLQ0OnTogL+/PwDTpk3jtdde448//sDV1ZX27duTk5PDjz/+yLBhw0rc6VWtM2fO8Mgjj7B9+3b8/f1xd3dn//79vPjii7zzzjvF6l+4cIGhQ4fy8ccfc+7cOVq0aIGfnx8HDx7k9ddf55lnnsFgMJR4rldffZWff/6ZNm3aYGdnR7Nmzaoc/6VLl3jwwQdZtWoV3t7eNGrUiLNnz/LWW2/x+eefM2XKFKZNm0ZaWhpt27YlIyODdevWERkZSUFBQZG2tmzZwpAhQ1ixYgXp6ekEBgbi5ubGnj17eOmll5gwYUKJiRbg9ddf57XXXuPChQu0a9cOs9nMnj17eOqpp9i0aZO1XlBQEG3atAHAxcWFkJAQgoKCirX35ptvMnXqVC5cuEDbtm0pKChg9+7dREVFlflLgriJIkQFzJ07V9Hr9Yper1fefvttxWw2K4qiKKmpqcr58+eVkJAQRa/XK7Nnz1by8/Otr9uyZYu1bPPmzdbjy5cvV/R6vTJ8+PBi5zIYDErPnj0VvV6vnDhxwnrccv6YmBjrsZ9//lnR6/VKSEiIsn79+iJtzJ8/31p28eJFa7wdOnRQbr31ViUzM9Na32QyWc+p1+uVOXPmFIlp3rx5il6vVz788ENFURTl9OnTil6vV8LCwpTTp09b6+Xn5ytvvvmmotfrlf79+1fuQy7BjZ/7nXfeWeS9r1u3TunUqZOi1+uVrVu3Wo8bjUblwQcfVPR6vTJmzBglJSXFWnbmzBll0KBBil6vV956660i57rzzjsVvV6vBAUFKQcOHFAUpfBzvPFzqqxVq1ZZ4x80aJCSkJCgKIqimM1mZerUqYper1c6dOigBAUFFbl+Bw4csL63LVu2WI+fO3dO6dy5s6LX65UZM2YoOTk51rIdO3YoPXr0UPR6vfLRRx8VicMSQ8eOHZUlS5YoJpNJURRFyczMVB577DFFr9cr9913X4mxP/TQQ8Xel6W9Dh06KF988YVSUFCgKIqiXL9+XRk1apSi1+uVe++9V/Xn1tBIj0hUioODAy+++CIajQYAb29vFi1aRFZWFg8++CAvvvgiOp3OWr9///5MmDABoEivaNCgQeh0Og4cOMCVK1eKnGPXrl1cu3YNvV5Px44dy4xnzpw5AEyZMoX77ruvSJzPPvssgwYNIisri8WLF1vj7dKlC0ajkT/++MNa/+TJk1y7do2QkBCAImWWmADr8IxleLBbt260b9/eWk+n0zFx4kRuv/12wsLCyM7OLjP+itJoNMyfPx+9Xm89NnjwYJ5++mkAPv/8c+vxTZs2ceLECdq0acPs2bNp0qSJtSwgIIDZs2ej1WpZvnx5iUOjd999N926dQMKP0c3NzebvIcZM2bQqlUr6/sZPXo0AGazmSeeeKLI9evWrRs9evQACq+NxcKFC8nPz6dPnz689tprODs7W8v69u3LzJkzAfjyyy9JT08vFsPDDz/MY489hlZb+NXn5ubGiy++CBRu7paVlVWp9/TQQw8RFRWFvX3hvC93d3deeeUVAM6dO0dGRkal2muoJBGJStHr9bi6uhY59ssvvwBw//33l/ia+++/H41Gw8mTJ61j/o0aNSI8PBxFUazTsi0sw3IPPPBAmbEkJiYSGxuLVqst8iV2o8GDBwOFu7Va9O3bFyg6PGcZ0x82bBhubm4cPnzYOnSVkZHBkSNHaNKkCcHBwcDfU8h37NhBdHQ0SUlJ1racnZ354osveOutt4p9VmqFhoaWmJQfeeQRAA4fPkxaWhoA27ZtA2DgwIE4OjoWe41er0ev11NQUMBvv/1WrLxr1642iflG7u7u1iRvceOQ3+23317sNY0bNwYokswt13HEiBElnmfAgAE0a9aMvLy8Et+bZWj2RjduIV/ZRDRgwIBix26c3Xnt2rVKtddQyfRtUSk+Pj5F/p2VlWW9ef/RRx/x6aeflvg6Ozs7jEYj8fHx+Pr6AjBkyBA2bdrE+vXrefLJJwHIyclh27ZtaLVaIiIiyowlNjYWAK1Wa339zSyTDhISElAUBY1GQ3h4OHPmzClyQ9nypRUWFkbXrl359ddfOXz4MKGhoezevRuTyUTfvn2tPcHg4GAGDhzI5s2bee+993jvvfeskyvuvPNOunfvbv2t2xZKuj8B0LRpU9zd3cnMzOTChQt4e3tbVwLYuHEj+/fvL/F1ll5oXFxcsbKbr7Et+Pj4WD87ixt7zt7e3sVec/N21FlZWaSkpACFW4qXpmPHjly6dIn4+PhiZX5+fsWO3ZisS7u3VBrLz/KNbvzlqY+KBQAABwBJREFUIz8/v1LtNVSSiESl3Pwb9o2/rZ44caLc12dmZlr/f79+/fD09OTYsWMkJibSqlUrtm3bRk5ODmFhYTRt2rTMtiy/vRqNRg4cOFBmXbPZTHZ2Nm5ubtx66634+vpy5swZUlJS8PT0ZP/+/bRt2xY/Pz969erFr7/+yu+//05oaGixYTmLOXPmsHz5clauXMmpU6eIiYkhJiaGRYsW0bx5c6ZMmVLib8xqeHh4lFrm6upKZmam9bO1fC7nz5/n/PnzZbZ74/WwKKkXVVU3DqGV5OYkVZIbf9bK6mm6uLgUq29xc3K7maIo5cZxoxuTqVBPEpGokhu/YH777Te8vLwq/FoHBwfuu+8+li1bxoYNGxgzZgw//vgjUP6wHPz9haPX61m3bl2l4u7Xrx8rV65k7969NGvWjJycHHr16gVg/fv3339n3Lhx7Nq1C51Ox2233VakDTs7Ox577DEee+wxLl++zN69e9m9ezfbt2/n4sWLvPDCC3z77bel9mYq4+bp5DeyJB7LZ2+5JnPnzuWee+6p8rnrCsv1hsL37O7uXmI9y+dxY31Rt8k9IlElHh4e1mGVkhaHhMLhjj179pCQkFBs6GPIkCEAbN68mczMTH799VecnJwq9AXaunVroPA3/9KmIl+9epU///yzyD0c+Ptewd69e60TEywJKCgoCFdXVw4dOsThw4dJSUmhZ8+eRX4Lz8rK4siRI1y8eBEAf39/hg4dygcffMD27dvR6/WYTCbr/a6qsgxD3uzChQtkZWXh4OBgnQhg+VxKux4ABw8e5PTp02UmuLrG3d3dOmxYWu9bURRrmeVzEHWfJCJRZZYv9W+++abE8nXr1hEVFcWDDz5ITk5OkbKuXbvSpk0bjh8/zooVKygoKKB///4VmqkVEBBA8+bNyc3N5fvvvy+xzgcffMDIkSMZP358keO33XYbDg4O/Pbbb/z5558A9OzZEyjs6fTo0YO8vDzrTL+bh+XeffddHn74YT777LNi53R3d7f2gsxmc7nvoyJ2795tvT9yo5UrVwLQu3dv62cWHh4OwNq1a0u8R3H+/Hkee+wxIiIiij0vVddZJposX768xPItW7aQlJSEvb299RcLtWx5j0+UTT5pUWWjR4/G0dGRdevW8dFHHxX58vv111+ZPn06UDh1tqThlAceeABFUZg/f7713xWh0Wh49tlnAXjnnXeK9D6MRiPR0dGsXr0aoNhkBldXV0JDQ7l06RL79u0jICCgyDTnsLAw4O9ZWpYvdwvLRIrvvvuO77//vsi9hd9//936MKPli7OqcnNzef7554usNLBmzRoWLVqEVqvlueeesx4fPHgwbdq0ISEhgeeff75IAouPj+fZZ5/FaDTSsWNHevfubZP4aspTTz2Fk5MTu3bt4q233iI3N9datnPnTqZOnQrAE088UeR6qmEZ2ktOTi61xy1sQ+4RiSoLCAhg1qxZTJw4kQULFrBkyZL/3879u6QWh3Ecf9vgWrRkBIJpgkM0VRBG6ZC4NAlNDdYUgUNEkdBUUNESnXIIokBoi+pPaOkvKDjVkFC0GJ1NArF7h4uHfpxu1rVOXD6vTTwHPYcDj8/Xz/chEAhgWZa9dNXX12fvr3hpeHgYwzAolUo0NzcTjUZr/uxUKsXl5SW7u7tMTU2xtLRES0sLNzc3dnR2cnLSMTQwMDDAyckJ5XL51a/np6/D4TBtbW3P3u/u7iadTrOzs8PMzAwrKyu0trY+u+aRkRHHWPJn+P1+zs7OiMfjhMNhLMvi9vaWhoYGstksXV1d9rFer5fNzU3Gx8c5Pj5mcHCQUChEuVymUChQqVTw+Xzkcrm6fLfvFAwGWV1dZXp6mnw+z/7+PsFgkPv7e/u+J5PJVx3wZ3R0dODxeCgWiyQSCXw+35udmPwbdURSF8lkksPDQ1KpFE1NTZyfn2NZFp2dnWSzWba2tt5MGFVH/sCfPUfVzYG1mpubY3t7m3g8zuPjI6ZpAhCNRsnlcmQyGcfznnY51WW5qkgkQmNjIwCxWMzx/NnZWZaXl+np6aFSqWCaJqVSif7+ftbX1+1OsB4ikQh7e3v09vZydXXFw8MDsViMfD7P6Ojoq+NDoRBHR0dMTEzQ3t5OoVCwk4ljY2McHBzUZXSPG4aGhp49a6Zp2ptcDcNgbW3t3XRcLQKBAIuLi/j9forFItfX19zd3dXhCuQlz6+P5hVF5NsYhsHGxgaJRMJxUKvI/0AdkYiIuEqFSEREXKWwgsgXy2QyjtHr9/yUpbiFhYWapma8ND8//9dRPCJVKkQiX+z09NROdH3ET5lTdnFx8e4IJSdO44NEnCisICIirtJ/RCIi4ioVIhERcZUKkYiIuEqFSEREXKVCJCIirlIhEhERV/0GNAuxkDygGuwAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#All houses get few reviews per month\n", + "sns.distplot(abb_vis_df['reviews_per_month'])\n", + "plt.ylabel('number_of_records')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 174, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 174, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAn0AAAJiCAYAAACy83SDAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdeXiNd/7/8VcWiUTQklA0OiESjZCKxlYqUsuYmZR2ai8SRU0UNdZRxj6dmrYTVMu3VQatJaatmq6joYhUNZiqJXYTS4ggkUSQ5Pz+8DtnmiYhiaw+z8d19TLu+31OPjnHyNM5930fO4vFYhEAAADua/blvQAAAACUPqIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADOBY3gvA3SUnpyknhyvrAACAO/PwqF7gPl7pAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGMCxvBcAmOTBmk5ydHIu72XcN7Ju3tCVlJvlvQwAqBSIPqAMOTo5K27+sPJexn2j1aT3JBF9AFAYvL0LAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADOBY3gvIT3Z2ttasWaOPP/5YJ06cUHZ2tjw9PfWb3/xGw4YNk7Ozc675/fv3a/Hixdq/f78yMjLk7e2twYMHKzQ0NN/7P3nypBYtWqS4uDhdvXpVDRs2VN++fTVgwADZ2+ft4AsXLmjx4sWKiYlRUlKS6tWrp6efflrDhw+Xk5NTnvnU1FQtXbpUmzdv1vnz5+Xu7q5u3brppZdekpubW8k8SAAAAEVgZ7FYLOW9iJ/Lzs5WRESEtm7dKldXVwUEBMjR0VH/+c9/lJqaqoCAAP3jH/+Qi4uLJCkmJkYvvviicnJyFBQUJBcXF8XGxiozM1MjR47UuHHjct3/4cOHNXDgQKWlpSkwMFC1a9fWrl27lJqaqtDQUL3++uu55hMTE9W3b18lJibKz89Pnp6e2rNnj5KSktS6dWu9//77qlKlim0+LS1NAwYMUHx8vLy8vOTj46MDBw7ozJkz8vb21tq1a1W9evUiPSbJyWnKyalQTxOKycOjuuLmDyvvZdw3Wk16T0lJ18p7GQBQYXh4FNwYFe6VvqioKG3dulW+vr569913VbduXUnS5cuXFRERob179+rtt9/W+PHjlZmZqYkTJ0qS3n//fbVt21aS9N///leDBg3SkiVL1LVrV/n7+0uSLBaLJk2apLS0NM2fP189e/a03XdYWJg2bdqkrl27qnv37rb1zJw5U4mJiRo7dqwiIiIkSRkZGRo1apR27typVatWaejQobb5yMhIxcfHq0+fPpo1a5bs7e2VlZWlqVOnauPGjYqMjNT06dNL/4EEAAD4mQp3TN/HH38sSZo6daot+CSpVq1amjlzpiTps88+kyRt3LhRycnJCg0NtQWfJDVs2FDjx4+XJK1atcq2PSYmRvHx8WrdurUt+Kz3PWPGjDzzJ06c0NatW9WwYUONHDnStt3V1VXz5s2Tg4ODVq9ebduempqqqKgoubm5afLkyba3ih0dHTVjxgzVrFlTGzZsUEZGxr09SAAAAEVU4aLvwQcfVKNGjdSiRYs8+371q19Jki5evChJ2r59uyTpqaeeyjMbEhIiBwcHbdu2zbbNOt+lS5c8861atVLt2rUVFxentLQ0SdKOHTtksVjUuXPnPMf61a9fX35+fjp79qyOHTsmSdq9e7cyMzPVtm3bPMfuVatWTe3atVNmZqZ2795dqMcCAACgpFS4t3eXLFlS4L79+/dLkh566CFJ0tGjRyVJPj4+eWbd3NxUp04dnT9/XpcuXZK7u7stzvKblyQvLy8lJyfr+PHjCggIsM03adIk3/lGjRpp//79OnLkiLy9vQs1L0nx8fHq1KlTgd9ncVWvUVVVnavcfRCFknnjlq6lZpb3MgAAKBEVLvoKYrFYtHDhQklSt27dJElJSUmSJA8Pj3xv4+HhkSv6rK8Q3mleki5duiTpf68o1qlTp1DzhVmPJCUnJ+e7/15Vda6iAZM+KJX7NtGH8wfqmog+AMD9ocK9vVuQN998U99//73c3d01bNjtsx+vX78uSapatWq+t7Futx5DV9rz1l+tZxbfbR4AAKCsVIpX+hYsWKD/+7//k5OTkyIjI1WrVi1JkoODgywWi+zs7PK9nfVqNNZfrcflVZT5wqpdm2v7lZc7nfqOioHnCAAKp0JHX1ZWlmbPnq1169bJ2dlZixYtUlBQkG2/i4uLUlNTdePGjTwXbJakGzduSLp9tu3Pf83MzP8tu+LOW1/ZK+p8YRX2On388Ct5JX0NOJ6jksd1+gDgf+70c6bCvr2bnp6ukSNHat26dapRo4aWLVuW5+QH67F21mPpfumXx9hZ563H4JXUvHWuqPcPAABQVipk9KWkpGjQoEHavn276tWrpw8++CDXK3xW1rNkjx8/nmdfWlqaLl68qFq1asnd3T3XvPUs25+zWCw6ceKEHBwc1Lhx47vO//zrWs8GLuy8r69vvvsBAABKS4WLvps3b2rEiBE6cOCA7WPLCrrESseOHSVJmzdvzrMvOjpa2dnZuV4dtM5/8803eeb37Nmjy5cvq1WrVrZr7Fnno6OjlZOTk2v+3LlzOnTokBo0aCBvb29JUlBQkKpWrarY2Ng8J2ukp6crNjZWrq6uatWqVaEeCwAAgJJS4aJv4cKF2rdvn+rVq6dVq1bZrsmXn+7du6t27dr6+OOP9e2339q2JyQk6I033pCdnZ3CwsJs21u3bq0mTZooJiZG69evt22/fPmyZs2aJUkKDw+3bff09FTHjh118uRJLViwwLY9IyND06ZNU3Z2dq55V1dX9erVSykpKZo1a5aysrIk/e/YxNTUVPXt2zfPhZsBAABKm52lqKeSlqKrV6+qU6dOyszMVLNmzWwXM87P66+/Lun2q3ZjxoxRdna2goKCVK1aNX333Xe6fv26xo0bl+vj0yTpxx9/1JAhQ5SRkaGAgADVqVNH33//vVJSUtSnTx/NmTMn13xCQoL69++vpKQk+fj4yMvLS3v27FFSUpKefPJJvfPOO3J0/N/5MFevXlW/fv108uRJeXp6ys/PTwcPHlRCQoL8/Py0evVqVatWrUiPS1FO5OA6fSXnw/kDS+VEjrj5w0r0Pk3WatJ7nMgBAD9zpxM5KlT0bdu2TcOHDy/UbHx8vO1/79mzR4sXL9Z//vMfWSwWeXt7KywsTD169Mj3tseOHdPChQu1a9cu3bx5U4888oj69eun3r17y8HBIc/8+fPntXDhQm3btk3Xrl2Tp6enevbsqSFDhuR71vDVq1f11ltvafPmzUpOTla9evXUtWtXjRw5UtWrF/3sTaKvfBB9FR/RBwC5VZroQ/6IvvJB9FV8RB8A5FYpL9kCAACAkkP0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAEcy3sBhfHRRx/pT3/6kz744AM9/vjjufadP39ewcHBBd42MDBQa9asybXtwoULWrx4sWJiYpSUlKR69erp6aef1vDhw+Xk5JTnPlJTU7V06VJt3rxZ58+fl7u7u7p166aXXnpJbm5ueeYzMzP1j3/8Q59++qnOnDmj6tWrKzg4WGPGjFGdOnWK9yAAAADcgwoffXv37tWcOXMK3H/w4EFJkq+vr3x8fPLs9/LyyvX7xMRE9e3bV4mJifLz81OzZs20Z88eLVy4UN99953ef/99ValSxTaflpam559/XvHx8fLy8lJwcLAOHDig5cuXa/v27Vq7dq2qV69um79165YiIiIUExOjevXqqVOnTjpx4oSioqK0detWrV+/XvXr17/XhwUAAKBIKnT0ff3115oyZYoyMjIKnDl06JAkadiwYXr66afvep8zZ85UYmKixo4dq4iICElSRkaGRo0apZ07d2rVqlUaOnSobT4yMlLx8fHq06ePZs2aJXt7e2VlZWnq1KnauHGjIiMjNX36dNv86tWrFRMTo+DgYC1atMj2yuHf//53LVmyRLNnz9aSJUuK9XgAAAAUV4U8pi8xMVGTJk3S6NGjlZOTI3d39wJnra/0NWvW7K73e+LECW3dulUNGzbUyJEjbdtdXV01b948OTg4aPXq1bbtqampioqKkpubmyZPnix7+9sPl6Ojo2bMmKGaNWtqw4YNtii1WCxavny57OzsNH369FxvFY8dO1ZeXl7asmWLEhISivaAAAAA3KMKGX2RkZHauHGj/P39tW7dOjVq1KjA2UOHDsnV1TXP27j52bFjhywWizp37mwLOKv69evLz89PZ8+e1bFjxyRJu3fvVmZmptq2bZvn2L1q1aqpXbt2yszM1O7duyVJ8fHxunDhgpo2baqHH34417y9vb1CQkIkSdu2bbv7gwAAAFCCKmT0NWrUSK+99pqioqLk6+tb4NzVq1d17tw5eXl5afny5Xr66acVEBCgDh06aPr06bpw4UKueWvMNWnSpMCvK0lHjhwp0nx8fHyx7h8AAKCsVMhj+kaMGFGoOevxfAcOHNCRI0cUFBSkhx56SPv379f69eu1ZcsWrVy50hZbFy9elKQCz6D18PCQJF26dEmSlJSUlGt7QfPJycnFmgcAACgrFTL6Cst6PF+TJk30zjvvyNPTU9LtEzOmT5+uf/3rX5owYYI++ugjSdL169clSVWrVs33/qzbrcfoWX91cXEplfnCql0772VhUDY8PKrffQjliucIAAqnUkdfWFiYunXrpmrVqqlWrVq27a6urpo7d652796tAwcOaN++fXrsscdsx/HZ2dnle38WiyXXr6U9X1jJyWnKybn7bfjhV/KSkq6V6P3xHJW8kn6OAKAyu9PPmQp5TF9hOTg4yNPTM1fwWbm4uKht27aSbr/9K92OQen2xZPzc+PGDdtty2IeAACgrFTq6Lsb66VerG/rWo/lsx6z90vWY/Ksc4Wdtx6rV9R5AACAslKpo++tt97SmDFjbGfP/tKZM2ckSQ899JCk/51Vaz3L9peOHz8uSbZP9ijsvPUMY+vtCnv/AAAAZaVSR198fLy++uorffHFF3n2JScnKyYmRlWqVFGbNm0kSR07dpQkRUdHKycnJ9f8uXPndOjQITVo0EDe3t6SpKCgIFWtWlWxsbF5Tr5IT09XbGysXF1d1apVK0lS48aN1aBBAx08eFDnz5/PNZ+Tk6Po6GjZ2dnZ1gEAAFBWKnX09e3bV5K0fPlyxcXF2banp6dr6tSpSktL03PPPWd7O9XT01MdO3bUyZMntWDBAtt8RkaGpk2bpuzsbIWHh9u2u7q6qlevXkpJSdGsWbOUlZUlScrKytLs2bOVmpqqvn375rpwc79+/ZSdna1XXnklVyguWLBAp06dUteuXdWwYcPSeUAAAAAKUKnP3u3QoYPCw8O1fPlyPf/88woMDNSDDz6oH374QVeuXNHjjz+uyZMn57rNjBkz1L9/fy1ZskTR0dHy8vLSnj17lJSUpCeffFL9+/fPNT9u3Djt2rVLn3zyieLi4uTn56eDBw8qISFBfn5+Gj16dK75sLAwbd26VTExMerWrZsCAwN18uRJHTlyRPXr18/1Ob0AAABlpVK/0idJU6ZMUWRkpAIDA3Xw4EFt375dHh4emjhxolasWJHnTFlPT09FRUXp2Wef1eXLl7V161bVrFlT48eP11tvvSVHx9wd/MADD2jt2rUaNGiQsrKytGXLFtnb22vYsGFauXKlqlWrlmveyclJy5YtU0REhFxcXLRlyxalp6erb9++WrduXYEXhgYAAChNdpaiXjQOZa4o1+kbMOmDMliRGT6cP7BUrtMXN39Yid6nyVpNeo/r9AHAz9y31+kDAABA4RB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxQ5+s6dO6fk5ORCzR4/flxbtmwp8qIAAABQshyLeoOQkBA9/vjjWr169V1nJ0+erDNnzui7774r1uIAAABQMu4YfdnZ2bp586bt9xaLxbY9MzPT9vtfslgsOnfunBISEnTjxo0SXC4AAACK447Rd+7cOf32t7/VrVu3bNvs7Oy0b98+tWzZslBfoHnz5ve2QgAAANyzOx7T5+npqaFDh8pisdj+k5Tr93f6r27dupo2bVqZfCMAAAAo2F2P6XvppZfUu3dvSbdjr0uXLmrevLkiIyMLvI29vb1cXV1Vs2bNklspAAAAiu2u0efo6KgGDRrYfv/MM8/Iy8sr1zYAAABUbEU+e/fVV18tjXUAAACgFBU5+qySk5P1448/Ki0tTdnZ2Xec7dWrV3G/DAAAAEpAkaPPYrHo1Vdf1YcffnjX2LMi+gAAAMpXkaNvzZo1WrlypSTJxcVFDRo0kLOzc4kvDAAAACWnyNG3YcMG2dnZaejQoXr55ZdVpUqV0lgXAAAASlCRo+/EiRNyd3fXhAkTZGdnVxprAgAAQAm748WZ8+Ps7Cx3d3eCDwAAoBIpcvT5+/vr1KlTSk9PL431AAAAoBQUOfpGjBihzMxM/fWvfy2N9QAAAKAUFPmYPjc3Nw0cOFAffPCB9u3bpw4dOqhu3bp3PKFj4MCB97RIAAAA3JsiR9/vf/972dnZyWKx6OjRozp27Nhdb0P0AQAAlK8iR19QUFBprAMAAAClqMjRt2rVqtJYBwAAAEpRkU/kAAAAQOVD9AEAABigyG/vPvXUU0Wat7Oz0+bNm4v6ZQAAAFCCihx9Z8+eLdSc9QxfAAAAlL8iR9+SJUsK3Hf9+nUlJSXpm2++0a5duzR69GgNHjz4nhYIAACAe1fk6AsODr7rzODBg/XGG2/orbfeUkBAgDp06FCctQEAAKCElNqJHKNHj5abm5vee++90voSAAAAKKRSiz4nJyc1bNhQP/30U2l9CQAAABRSqUXfzZs3debMGU7mAAAAqABKJfouXLigKVOmKCUlRX5+fqXxJQAAAFAERT6Ro127dgXus1gsunnzpq5fvy7p9mVbhgwZUvzVAQAAoEQUOfquXLlSqLmaNWtq9OjR6tKlS5EXBQAAgJJV5OhbuXLlHfc7ODioZs2aatSokezt+ZQ3AACAiqDI0de6devSWAcAAABKUZGj7+csFosOHDigU6dOKT09Xa6urnrkkUfUrFkzOTg4lNQaAQAAcI+KHX3//Oc/tXDhQl28eDHPvgceeEBjx45Vv3797mlxAAAAKBnFir7XX39dy5Ytk8VikZOTkxo1aiRXV1ddu3ZNJ0+e1JUrVzRr1iydPn1akydPLuk1AwAAoIiKHH2xsbF677335OTkpPHjx6tv376qWrWqbf/169e1bt06vfnmm1qxYoU6d+7McYAAAADlrMin165cuVJ2dnaaM2eOhgwZkiv4JMnFxUVhYWGaPXu2LBaLPvzwwxJbLAAAAIqnyNG3b98+eXh4qGfPnnec69Wrlzw8PLRv375iLw4AAAAlo8jRd+3aNT300EOFmq1Xr56Sk5OLvCgAAACUrCJHX61atXT69Gnl5OTccS47O1unT5/Wgw8+WOzFAQAAoGQUOfqCgoKUmpqqZcuW3XFu2bJlSklJUVBQULEXBwAAgJJR5LN3X3jhBX355Zf6+9//rvPnz6t///5q0qSJbf+RI0e0Zs0arVu3Tg4ODgoPDy/RBQMAAKDoihx9fn5+mjp1qubOnas1a9ZozZo1cnR0lKurqzIyMpSVlSWLxSJ7e3tNnTpV/v7+pbFuAAAAFEGR396VpIEDB2rFihVq06aNHBwcdOvWLaWkpOjWrVtycHBQ27ZttWLFCg0cOLCk1wsAAIBiKPbHsAUEBKhPnz56++23lZCQYPvs3bi4OGVnZ6tp06YluU4AAADcg2K90rdz50516tRJEyZM0LVr1+Tr66vAwEA1bdpU//73v/Xqq6/q17/+tWJjY0t6vQAAACiGIkffjz/+qBEjRiglJUXe3t66detWrv2/+c1vFBAQoMuXLysiIkInTpwoscUCAACgeIocfe+++66ysrIUHh6uTz/9VA8//HCu/X369NHatWs1bNgwXb9+XUuXLi2xxQIAAKB4ihx9cXFxqlWrliZMmHDHuZdfflk1a9bUzp07i704AAAAlIxifQxb/fr15eDgcMc5R0dHeXp66urVq8VeHAAAAEpGkaOvTp06SkhIUHZ29h3ncnJydPbsWT3wwAPFXhwAAABKRpGjr23btkpNTdU777xzx7nly5frypUrat26dbEXZ/XRRx/J19dXP/zwQ777T548qT/+8Y/q1KmTAgICFBoaqtWrVxf4+cAXLlzQn//8Zz311FNq0aKFunfvrsWLF+vmzZv5zqempupvf/ubunfvrhYtWigkJER//etflZaWlu98Zmamli5dqt/+9rcKCAhQhw4dNG3aNF28eLF4DwAAAMA9KnL0DRkyRFWqVNHixYs1fvx4xcTE6OLFi0pLS1NSUpJiY2M1ZcoUvfHGG3J0dNSwYcPuaYF79+7VnDlzCtx/+PBhPffcc/rss89Uv359dezYUYmJiZozZ44mTZqUZz4xMVF9+vTRunXrVKNGDQUHBys9PV0LFy7UCy+8kOds5LS0ND3//PN67733ZGdnp+DgYNnZ2Wn58uXq27evrl27lmv+1q1bioiI0Jtvvqn09HR16tRJDzzwgKKiovTss8/q3Llz9/R4AAAAFEeRL87s4+Oj2bNn689//rM+++wzff7553lmLBaLHB0dNWfOHD366KPFXtzXX3+tKVOmKCMjI9/9FotFkyZNUlpamubPn6+ePXtKki5fvqywsDBt2rRJXbt2Vffu3W23mTlzphITEzV27FhFRERIkjIyMjRq1Cjt3LlTq1at0tChQ23zkZGRio+PV58+fTRr1izZ29srKytLU6dO1caNGxUZGanp06fb5levXq2YmBgFBwdr0aJFcnJykiT9/e9/15IlSzR79mwtWbKk2I8JAABAcRTr4sy9evXSxo0b1bt3b3l4eMhisdj+e+CBBxQaGqoNGzbomWeeKdaiEhMTNWnSJI0ePVo5OTlyd3fPdy4mJkbx8fFq3bq1LfgkqVatWpoxY4YkadWqVbbtJ06c0NatW9WwYUONHDnStt3V1VXz5s2Tg4ODVq9ebduempqqqKgoubm5afLkybK3v/1wOTo6asaMGapZs6Y2bNhgi1KLxaLly5fLzs5O06dPtwWfJI0dO1ZeXl7asmWLEhISivW4AAAAFFexok+SvLy8NGfOHG3btk0//vijvv32W33//feKjY3V3/72t3v6GLbIyEht3LhR/v7+WrdunRo1apTv3Pbt2yVJXbp0ybOvVatWql27tuLi4mzH3u3YsUMWi0WdO3e2BZxV/fr15efnp7Nnz+rYsWOSpN27dyszM1Nt27aVm5tbrvlq1aqpXbt2yszM1O7duyVJ8fHxunDhgpo2bZrn+oX29vYKCQmRJG3btq2oDwkAAMA9KXb0/ZyTk5Pq1q2rGjVqlMTdqVGjRnrttdcUFRUlX1/fAuescebj45Pvfi8vL+Xk5Oj48eO55ps0aVLg15WkI0eOFGk+Pj6+WPcPAABQVop8TF9ZGDFiRKHmrGfDenh45Lvfuv3SpUu55uvUqVOo+aSkpELdf3JycrHmAQAAykqFjL7Cut8j+RUAACAASURBVH79uiSpatWq+e63brcec1fUeeuvLi4upTJfWLVru919CKXCw6N6eS8Bd8FzBACFU6mjz3pcnp2dXb77LRZLrl8r2nxhJSenKSfn7rfhh1/JS0q6dvehIuA5Knkl/RwBQGV2p58zJXJMX3lxdXWVdPtiyPm5ceNGrrnCzltfqSvteQAAgLJSqaPPemye9Ri8X/rlMXaFnbfOldb9F3TMHwAAQGmp1NFnPUvWetbsz1ksFp04cUIODg5q3LjxXecl2c7ytZ4NXNh56xnG1tsV9v4BAADKSqWOvo4dO0qSvvnmmzz79uzZo8uXL6tVq1a2a+xZ56Ojo/N8Lu+5c+d06NAhNWjQQN7e3pKkoKAgVa1aVbGxsXlOvkhPT1dsbKxcXV3VqlUrSVLjxo3VoEEDHTx4UOfPn881n5OTo+joaNnZ2dnWAQAAUFYqdfS1bt1aTZo0UUxMjNavX2/bfvnyZc2aNUuSFB4ebtvu6empjh076uTJk1qwYIFte0ZGhqZNm6bs7Oxc866ururVq5dSUlI0a9YsZWVlSZKysrI0e/Zspaamqm/fvrku3NyvXz9lZ2frlVdeyRWKCxYs0KlTp9S1a1c1bNiw5B8MAACAO6j0Z+/+5S9/0ZAhQzR9+nRt2LBBderU0ffff6+UlBT16dPH9ikYVjNmzFD//v21ZMkSRUdHy8vLS3v27FFSUpKefPJJ9e/fP9f8uHHjtGvXLn3yySeKi4uTn5+fDh48qISEBPn5+Wn06NG55sPCwrR161bFxMSoW7duCgwM1MmTJ3XkyBHVr18/1+f0AgAAlJVK/UqfJLVo0UJRUVHq3r27Tp8+rZiYGNWvX1+zZs3SzJkz88x7enoqKipKzz77rC5fvqytW7eqZs2aGj9+vN566y05Oubu4AceeEBr167VoEGDlJWVpS1btsje3l7Dhg3TypUrVa1atVzzTk5OWrZsmSIiIuTi4qItW7YoPT1dffv21bp16wq8MDQAAEBpsrMU9aJxKHNFuU7fgEkflMGKzPDh/IGlcp2+uPnDSvQ+TdZq0ntcpw8Afua+vU4fAAAACofoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAARzLewEAUJHUqOksZyen8l7GfePGzZtKTblR3ssAIKIPAHJxdnJS2PKx5b2M+8aK8AWSiD6gIuDtXQAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGCA++KSLZ988okmT55c4P6RI0dq3Lhxtt/v379fixcv1v79+5WRkSFvb28NHjxYoaGh+d7+5MmTWrRokeLi4nT16lU1bNhQffv21YABA2Rvn7ebL1y4oMWLFysmJkZJSUmqV6+enn76aQ0fPlxOXP8LAACUg/si+g4dOiRJeuKJJ1SrVq08+x999FHb/46JidGLL76onJwcBQUFycXFRbGxsZowYYKOHTuWKw4l6fDhwxo4cKDS0tIUGBio5s2ba9euXZozZ4727dun119/Pdd8YmKi+vbtq8TERPn5+alZs2bas2ePFi5cqO+++07vv/++qlSpUgqPAgAAQMHui+g7ePCgJOnVV19V3bp1C5zLzMzUxIkTJUnvv/++2rZtK0n673//q0GDBmnJkiXq2rWr/P39JUkWi0WTJk1SWlqa5s+fr549e0qSLl++rLCwMG3atEldu3ZV9+7dbV9j5syZSkxM1NixYxURESFJysjI0KhRo7Rz506tWrVKQ4cOLfkHAQAA4A7ui2P6Dh8+LHd39zsGnyRt3LhRycnJCg0NtQWfJDVs2FDjx4+XJK1atcq2PSYmRvHx8WrdurUt+CSpVq1amjFjRp75EydOaOvWrWrYsKFGjhxp2+7q6qp58+bJwcFBq1evvrdvFgAAoBgqffQlJCQoNTVVzZo1u+vs9u3bJUlPPfVUnn0hISFycHDQtm3b8sx36dIlz3yrVq1Uu3ZtxcXFKS0tTZK0Y8cOWSwWde7cOc+xfvXr15efn5/Onj2rY8eOFf4bBAAAKAGVPvqsx/PVrl1bc+bMUdeuXdW8eXN1795dixcv1o0b//vMx6NHj0qSfHx88tyPm5ub6tSpo8uXL+vSpUuSZIuz/OYlycvLSzk5OTp+/Hiu+SZNmuQ736hRI0nSkSNHivx9AgAA3ItKH33W4/k++ugjbdq0Sd7e3goICNCFCxe0cOFCDRkyRJmZmZKkpKQkSZKHh0e+92Xdbo2+ixcvFmu+Tp06hZoHAAAoK5U++qyv9PXo0UNbt27VO++8o9WrV+tf//qXmjZtqr179yoyMlKSdP36dUlS1apV870v6/aMjIwymQcAACgrlf7s3YULFyohIUENGzbMdQ28hx9+WH/961/1zDPPaN26dRo/frwcHBxksVhkZ2eX731ZLJZcv1qPyyut+cKqXdutSPMoOR4e1ct7CbgLnqOKj+cIqBgqffQ5OzvL29s7332PPvqoHnroIZ0/f16nTp2Si4uLUlNTdePGDTk7O+eZtx7/5+rqmutX69vDJTXv4uJSqO/NKjk5TTk5dw9F/mIteUlJ10r0/niOSh7PUcVX0s8RgILd6e+wSv/27t24u7tLuv3Wq/VYO+uxfb/0y2P+rPMFHYNX3PmCjvkDAAAoLZU6+tLS0jR9+nSNGTNGWVlZ+c6cOXNGklS3bl3bWbXWs21/eV8XL15UrVq1bKFonc/vEisWi0UnTpyQg4ODGjdufNf5n3/dgs4GBgAAKC2VOvqqVaumf//73/rqq6+0e/fuPPu3bdumK1euyMfHR3Xr1lXHjh0lSZs3b84zGx0drezsbHXq1Mm2zTr/zTff5Jnfs2ePLl++rFatWsnNzS3XfHR0tHJycnLNnzt3TocOHVKDBg0KfDsaAACgtFTq6LOzs1OfPn0kSXPmzNGFCxds+/773/9q1qxZkqQ//OEPkqTu3burdu3a+vjjj/Xtt9/aZhMSEvTGG2/Izs5OYWFhtu2tW7dWkyZNFBMTo/Xr19u2X7582Xbf4eHhtu2enp7q2LGjTp48qQULFti2Z2RkaNq0acrOzs41DwAAUFYq/YkcERER+uGHHxQXF6df//rXatWqlSRp165dunnzpsLDw/Wb3/xG0u0LMM+ZM0djxozRiy++qKCgIFWrVk3fffedrl+/rnHjxqlp06a2+7a3t9df/vIXDRkyRNOnT9eGDRtUp04dff/990pJSVGfPn0UEhKSaz0zZsxQ//79tWTJEkVHR8vLy0t79uxRUlKSnnzySfXv37/sHhwAAID/r9JHX9WqVbVixQqtWLFCmzZt0q5du+Tk5KTHHntMgwYNUrdu3XLNP/XUU1q1apUWL16s//znP7JYLPL19VVYWJh69OiR5/5btGihqKgoLVy4ULt27dLRo0f1yCOP6I9//KN69+6dZ97T09M2v23bNp0+fVqenp4aPHiwhgwZIkfHSv+QAwCASui+KBAnJyeNGDFCI0aMKNR8YGCgli1bVuj79/b21sKFCws9X69ePb366quFngcAAChtlfqYPgAAABQO0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABiD6AAAADED0AQAAGIDoAwAAMADRBwAAYACiDwAAwABEHwAAgAGIPgAAAAMQfQAAAAYg+gAAAAxA9AEAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAI7lvQAAAHD/qVnDRU7OZEZJuXkjSymp1+/pPng2AABAiXNydtRfXtlQ3su4b0yd99w93wdv7wIAABiA6AMAADAA0QcAAGAAog8AAMAARB8AAIABiD4AAAADEH0AAAAGIPoAAAAMQPQBAAAYgOgDAAAwANEHAABgAKIPAADAAEQfAACAAYg+AAAAAxB9AAAABnAs7wUAAFBUD1R3UpWqzuW9jPvGrcwbunrtZnkvA6WM6AMAVDpVqjrr88Hh5b2M+8ZvVi6XiL77Hm/vlqKdO3dq8ODBatOmjQIDAzVo0CBt3769vJcFAAAMRPSVko8++kjh4eHau3evWrRooZYtW2rv3r0aNmyY1q1bV97LAwAAhuHt3VJw8eJFzZgxQ9WrV9eHH34oHx8fSdKPP/6o8PBwzZs3T8HBwapbt245rxQAAJiCV/pKwerVq3Xz5k2FhYXZgk+SWrRooWHDhunGjRu82gcAAMoU0VcKrMftdenSJc++rl27SpK2bdtWpmsCAABmI/pKmMVi0bFjx2Rvb69GjRrl2f+rX/1K9vb2OnbsmCwWSzmsEAAAmIhj+kpYSkqKbt68qVq1asnJySnPfkdHRz344INKTk5Wenq63Nzc7nqf9vZ2hf767g9WK9J6cWdFeewLy6lG7RK/T5OVxnPk7larxO/TZKXxHEmSizv/XypJpfE81XzAtcTv02T3+hzZWXi5qUSdP39ewcHBatCggaKjo/OdCQkJ0dmzZ7Vt2zZO5gAAAGWCt3dLmL393R9SOhsAAJQ1oq+Eubrefin7xo0bBc5Y97m4uJTJmgAAAIi+Eubm5iZXV1dduXJFWVlZefZnZWXpypUrcnZ2Vo0aNcphhQAAwEREXwmzs7OTt7e3srOzderUqTz7T548qZycnFzX7wMAAChtRF8p6NixoyRp8+bNefZZt3Xq1KlM1wQAAMxG9JWCZ599Vs7Oznr33Xf1008/2bbv379f7733nqpWraoBAwaU4woBAIBpuGRLKfnggw80e/ZsValSRW3btpXFYtGuXbuUlZWl1157TT179izvJQIAAIMQfaVoy5Yteu+993Tw4EE5OTnJ19dXf/jDH9SuXbvyXhoAADAM0Qeg1FgsFtnZ5b2CfEHbgYKU1J8Z/uzBZBzTd5/56KOP5Ovrm+e/Rx99VG3atFH//v21Zs0a5eTklPdSc/H19ZWfn1+Jz5a1nz/+HTp0uOvj/OWXX9rmp0yZUkarvP2pML6+vkpMTCy1rxETE6Nhw4bl2b5//3716dOn1L4uKq4rV64oMjJSzzzzjB5//HE1b95cwcHBevnll7V169Z8b3Pt2jXNnTtXn3766T197ezsbH3wwQd69dVX7+l+StKiRYvu+f/7Fe3vw7ffflu+vr5atGjRPd1PZf1ZVtHx2bv3qdq1a6t9+/a239+8eVNXr17VTz/9pJkzZ+q7775TZGQk/+ItRUlJSYqLi1NQUFCBM1988UUZrqjsXLhwQUOHDlWDBg3y7Ovfv79u3bpVDqsqGTdu3NAXX3yhTz/9VKdOndLFixdVrVo1+fr6qkePHrYTuZDbgQMHFB4erpSUFDVo0EABAQFycXHRuXPn9OWXX+qLL75QaGio5s+fn+uTjebPn6/169ffc6x9/vnnmj17tp555pl7/VZQhvhZVrKIvvtU48aN9frrr+fZfuXKFQ0cOFBffvmlNm/erK5du5bD6u5/NWrUUGpqqr766qsCoy8jI0PffvutqlSpUqkjKD93OmqkMv/LPD4+XqNHj9bp06fl7OysgIAA+fv76+LFi9q7d6927dqlFStW6O2331bjxo3Le7kVRlZWlsaMGaPU1FTNnTtXv//973OF3eHDh/Xiiy9q06ZN8vf3V1hYmG1fSf15qcx/7kzGz7KSxdu7hnnwwQcVHh4uSfr3v/9dzqu5f3Xo0EHOzs76+uuvCwygLVu26Pr167brOqJiO378uPr166fTp08rLCxMO3fu1KpVq7Rw4UKtXbtW0dHR6t27t06dOqXnnntOx48fL+8lVxhxcXE6c+aM2rdvr969e+f5jPKmTZtqxowZkqT169eXxxJRyfCzrHiIPgPVrVtXkpSenm7b5uvrq2effVaxsbHq1q2bmjdvrh49eujSpUu2mY0bN2rAgAEKDAxUixYtFBoaqqVLlyozMzPfr7Nnzx6NGjVKbdu2lb+/v0JCQjRz5sxCH0d25coV/e53v5Ovr6/mzp2b78zNmzfVpk0bNW3aVGfPns13pmfPnmratKkSEhJyfa8pKSmaNWuWOnbsaPt+33333Xw/Pq+oXF1d9eSTT+rChQvau3dvvjOff/65XF1dFRwcnGdfVlaW1q5dq0GDBqlNmzZq1qyZ2rRpoxdeeEHbt2/PNXvmzBn5+vpqzJgxOn/+vCZOnKh27dqpRYsW6tWrl6KiogpcZ2ZmphYsWKAuXbrI399fwcHBmjdvntLS0vLMXr16VZGRkerVq5cCAwPl7++vJ598UhMnTtSJEydsc4sWLbJdfPzs2bPy9fXVoEGDbMfoZGdnS7r9PISEhOR5TF544QW1a9dO/v7+CgoK0vPPP69//etfedZTFs+jVVZWliZOnKiMjAyNHz9ef/rTn+Tm5pZrxsPDQ3PnztULL7ygjIwMTZw4sUTXUJklJydL0h3fgnviiSf0u9/9Tk888YRtm6+vrzZs2CBJ+tOf/iRfX1/t2rXLtv/48eOaNm2aunbtqoCAAAUEBOjXv/615s+fr9TUVNvcoEGDNGnSJEnSxx9/nO8xZ5s2bbL9/fbYY4/pueeeU1RUVJ5/tFn/HK9evVo//PCDwsLC1KpVK7Vs2VJhYWHavXt3MR+l/7lx44beeust9erVSy1btlRgYKD69OmjVatWFfrP1I4dOzRq1Ch16NBB/v7+CgwM1HPPPafVq1fnedUzJCREbdq0UWZmpt58802FhITY/s5+8803lZGRkef+U1JS9NprrykkJEQtWrRQz5499fnnn9/z914Upf2zbNeuXfL19dVrr72mo0ePKiIiQq1bt9Zjjz2mfv365fkAhpEjR8rX11cjR47Ms9Zp06YVuK8sEX0GOnDggCQpICAg1/aLFy8qIiJCLi4ueuKJJ1SjRg25u7srJydH48eP16RJk/TTTz+pZcuW6tixoy5evKg333xTAwYMyPUXrHT7OoUDBw7U5s2b9cgjjygkJESOjo5as2aNevXqZVtDQdLS0jRs2DAdPXpU/fv317Rp0/Kdc3JyUmhoqCwWizZt2pRnf3x8vA4fPqygoCB5enratqenp6t///765JNP5OPjo6CgIJ0+fVqvv/663njjjUI9jnfTo0cPSdJXX32V7/e3fft2hYSEqGrVqrn2WSwWjRo1SjNmzNDRo0cVEBCgTp06yc3NTTt27NDw4cPz/bSXxMRE9e7dW9u2bVOLFi3k7++vw4cPa9q0aVq9enW+a/zDH/6gpUuXqkGDBmrfvr1SUlK0cuVKDRs2LNcPhkuXLun3v/+93nnnHWVkZKh9+/Zq06aNbty4oU8//VR9+vTR+fPnJd3+S9f6Vourq6tCQ0PVvn17NWzYUKGhobYf/KGhoerSpYvta8ycOVPjxo3Tnj175Ofnp86dO8vDw0O7d+/W+PHjtXLlyjzrL4vnUZK2b9+uAwcOyMfHR8OHD7/j7Msvv6yHH35YBw4cyBXo1oP233777Ty3+eGHH2xx/EvHjx/XxIkTbT+8Q0JCNHfuXFtI/VJiYqJmzJihzp07y9/fXx06dNCUKVNs/+j5ueL8sP/kk080cOBAtW3bVgEBAerRo4f+9re/6cqVKwU+Jr6+vpJuh8iSJUvy/UeFs7Oz3njjDb3yyiu2baGhoWrYsKEkqWXLlgoNDZW7u7sk6fvvv9ezzz6rqKgo1axZU506dVKLFi105swZLVu2TOHh4bY/w+3bt1fLli0lSZ6engoNDbWtSZJeeeUVTZgwQYcOHVLz5s3Vtm1bnTx5UtOmTdPEiRPzfbV+x44dGjx4sM6cOaN27dqpXr16io2NVXh4uA4ePFjgY3E3FotFEyZM0KJFi3T16lW1b99ejz/+uI4cOaK5c+cW+Hfhz7377rt64YUX9O2338rb21shISH61a9+pf3792vOnDl67bXX8twmJydHw4cP1/Lly9WgQQM98cQTunTpkpYuXZrnRBPrW6vvv/++LBaLgoODZbFYNG7cOH322WfF/t6Lqix+lkm3Dz/o06eP9u/fr1atWqlRo0bau3evRo0apejoaNvc7NmzVbNmTW3ZskVff/21bfu2bdsUFRWl2rVra968eaX0aBSSBfeVf/7znxYfHx/L888/n2t7VlaW5dKlS5b169dbWrRoYXnqqacsKSkptv0+Pj4WHx8fy0svvWTJycmxWCwWS3Z2tsVisVj+8Y9/WHx8fCzdunWzJCQk2G5z7do1y4gRIyw+Pj6Wl19+2bb9wIEDlqZNm1oCAgIsMTExtu3Z2f+vvTuPq6LcHzj+YdNQNncxElAYFkXEtc0FTdwiFDM3bDWVHy5pGi7ZFc3dlOt6zTRLvZrJYioCKWpAmXLTVCQXFpFFQxAXFFnO/P7gNXM5nHMQ97o+79fLVzHzzMwz+/c825TLK1eulCVJkr29veW7d+9qbd/NzU2WZVkuLi6WAwICZEmS5BkzZqj50ZdWlmX5zJkzsiRJcp8+fXSOx8KFC2VJkuTw8HCdfR04cKB8+fJldXpCQoIsSZLs5eUlFxUVVXeYDVKO/4wZM+Rbt27Jbdq0kbt3766TLiIiQpYkSf7xxx/lyMhIWZIkOTg4WJZlWY6KipIlSZKHDBki37lzR12mvLxcnjdvnixJkvzuu++q0y9duqTu0wcffKB1Xnfs2CFLkiS/9tprWtv39vaWJUmSX3nlFfns2bPq9MzMTLlt27ayJElyUlKSOn327NmyJEny/Pnztc7HzZs35aFDh8qSJMlr1qxRp+fm5qrnuSo3NzdZkiStab///rssSZLcq1cvOT8/X2ve119/rc6r7HGex6omT54sS5Ikb9iwoUbply9fLkuSJE+ePFmdtmLFClmSJHn16tU66Y8dO6b3vo2Pj5c9PT1lSZLkN954Qx4/frzcu3dvWZIkuVu3bnJmZqZW+uTkZLlz586yJEly79695XHjxskDBgyQJUmSO3ToIP/+++9a6b29veUOHTrIAQEBcuvWreWAgAB59OjRsoeHhyxJkjx+/Hit9MqzwMvLSx41apQcFBQkv/rqq+r9V1xcbPCYTJs2TT1nrVu3lt977z15zZo18rFjx+SSkhKDy82YMUOWJEkOCwvTmt6/f3/1Hqrs4sWLcseOHXWu4ar3mUK5R/z8/OScnBx1en5+vjx48GBZkiR5+/bt6nTlHpckSV62bJlcVlYmy7IsazQaeerUqbIkSfL06dMN7k9lyjVROU+Vr4XS0lJ1elZWlnpuK5/3qs/Dy5cvy61atZI7d+4sX7x4UWt7MTExsiRJsqenp9YxV54H3t7ecmpqqjr97NmzsoeHh+zq6qr17A8JCZElSZInTpyo9Rxft26demxWrFhRo2NgyF/hXXbkyBF1fdOmTdO6vpctWyZLkiS//fbbWvlTrrMuXbrIN2/elK9fvy536dJFliRJPnDgwEMdk0dBlPT9jzp69KhWN3d3d3defvllPv30UywtLdm0aRNWVlY6y40cOVItiVHa3WzatAmAhQsXYmdnp6a1sLBg6dKlWFpasm/fPnJycgDYvHkzGo2GwMBArV5XxsbGjBs3jk6dOpGdna23KqC0tJQJEyZw9OhRBg4cyNy5c+/ZK8vNzQ03NzfS0tK0PntXXl7O7t27qVOnDr1799ZZbsqUKWr1AFRULzk6OlJUVKRVXfmg6tatS9euXcnJyeHkyZNa8/bt24elpSVdu3bVWU6j0dCjRw+mTJmiVQpobGzM4MGDAdRjXdWsWbO0zqu/vz/m5uZkZmbqLYkJCgpCkiT17xdeeAEfHx+gopRUUa9ePbp06cL48eO11CqaAQAAHUZJREFUzoeFhQWvv/46gFrS9yBu3bqFj48PkyZNon79+lrzlOFdDO3z4z6PgFpy06ZNmxql79SpEwApKSkPvM2CggImT55MaWkpq1atYteuXaxYsYJ9+/bx0UcfqVX5ipKSEiZMmMC1a9eYNWsW0dHRrFy5koiICBYtWsTNmzf56KOPKCkp0drOjRs3yM7OZteuXWzevJl169axc+dOateuzY8//khWVpa6/mXLlmFjY0NMTAzr169n1apVHDhwgA4dOpCWllZtKc/cuXMZP3485ubmlJSUkJiYSGhoKCNGjKBz58588sknZGZm1ujY3Lp1i9atW/PWW29plRYDNG/enBdffBGo2TW5YcMGoOL5Zmtrq06vX7++WiqzceNGneVsbW2ZOHEiJiYmQEXVtfJ5zVOnTtVoP/T5888/gYrmAqam/+1r+fzzzzN//nwWL15M3bp1DS6fn59Pr169GDdunFpKqvDx8aFevXrcuXNH7/MgMDCQFi1aqH8rpecajUYtVSspKSEiIoLnnnuOOXPmUKtWLTX96NGjdUrdHtbTfJcpateuzcyZM7V65QcEBADoPNv9/Pzo2bMnV65cYdWqVcyfP58rV64wZMgQneYsT4MI+v5HNWjQAF9fX/Xf66+/Trdu3WjSpAl5eXkMHTpU52KFigbVleXm5pKdnU3Tpk3V6pHKlMBFlmW1LYvyX6V6s6r+/ftrpassODiYQ4cOYWtry7x583QafBsyaNAgoKKthiIhIYG8vDz69OlDnTp1dJbR9wJv1KgRAHfu3KnRdu9FOQbR0dHqtOvXr5OYmMhrr72m9cBU9O/fn7Vr19KhQwd12u3btzl58qRaVayvt6+1tTX29vZa00xMTNQgSt8+6TunTZs2BSrGR1NMmDCBr776SqsdW0FBAb/88gtJSUkG81RTL7/8MitXrtS6Zu7evUtKSgqRkZEYGRkZXP+TOI9XrlwBKoLfmlC2ryz3IHbu3Mn169cJCAjQ6ploZGREYGAgHh4eHD9+XG0z+uOPP3Lp0iV69eqlvpAUAwYMwMfHh+zsbK1qJ0VNXvY3b97kzp07mJubY2Njo6atVasWM2fOZO7cudW+8E1NTRk3bhwJCQksXbqUgQMHqkP6FBUVsWvXLl5//XUOHDhwz2NjYWHBwoULmTt3rjpNlmWys7PV4wD3vib//PNP0tPTsbGx0Xn2ATg7O9OkSRMyMjLIy8vTmufh4aHzfFKqnvVVi9eUl5cXZmZm7N27lzFjxhAWFqYGgj169MDPz0/nh1Fl7u7uLF++XOsaKC0t5cKFC4SFhaltavUdm5rcS6dOneL27du0bdtWb7DVs2fP+9jbe3ua7zKFk5OTThvehg0bYmRkpPcZExISgo2NDd9++y0RERHY29s/0XFYqyOGbPkfZaibu0ajYf369SxbtowxY8awf/9+9VejsbGxzk2sPGz0jbemUH4xKQ1l77VM1fSK8vJy9u7di6mpKbm5uezevZsBAwbcc18BdXyvvXv3EhwcjKmpKZGRkQB6x+UyNjbWuYkB9Vf7oxreoXv37jz33HPExsaqDcl//PFHSktL6devn8Hlbty4wfbt24mPjyctLU09VtWVeup7AEP1+6RvGaV0QXk5KDIzM9myZQu//fYb6enparssJU/yQ37cp7i4mLCwMOLi4rhw4QJXrlxRv55gaN1P6jwqajoWmJKu6jG8H0qHhc6dO+ud/8orr3Dq1CmOHTuGl5fXPdN36dKFmJgYjh49qpbOKmrysm/QoAEtWrQgLS2NwYMH4+vrS7du3XBycsLd3b3GAwRbWFioL3Co6Ih06NAhNm7cSHZ2NlOmTOHAgQPVBjaKY8eOsWPHDs6cOUNmZqZailnTa1LpVFZYWKjVxk+f3Nxc9ZhARZBQlXLvPMy9YGtry4IFC/jss884dOiQOmi1m5sbffr0YejQoVpBtz5lZWVERUURFRXF+fPnyc3NVa/F6o6NvudB1XtJeb5XLl2vrLp3xYN4mu8yhb5zbWRkhLGxsd57vFGjRkyZMkVtf/npp5/qLXh4GkTQ94wxNjZmzJgx7Nmzh3PnzhEXF6c+fA19LsvQPIVy0SulVvd64FVNX5m3tzcBAQF88MEHLFiwgK5du9bo4W9jY0OPHj2Ijo7m559/pl27dsTFxWFnZ6d3nLwnNZBnnTp16NatGzExMSQnJ9OqVSv27duHjY2NVtV3ZefOneOdd96hoKCAhg0b4uHhQcuWLXF3d8fe3l4t1azqQfappiWpu3fvJjg4mPLychwcHOjatSstW7bEw8ODy5cv89lnn933tiu7cuUKAQEBZGZmYmVlRZs2bejTpw+urq68+OKL9OzZU+/D9UmdxyZNmpCWlkZ+fr5WiZghykujJteuIUrVZGBgYI3SKf/9/PPPDfZ2B/T2nq/Jyx5g+fLlBAUFkZKSQkpKCosXL6ZZs2b07NmT4cOHGzw258+fJy8vj86dO6vrVdjZ2REQEICfnx9vvvkmGRkZxMXF8eabb1a737Nnz2bbtm2YmJjg5uaGr68vzs7OeHl58d133xEeHl7t8vDfZ1HVAYD1qVql+jivPV9fX7p27cr+/fs5fPgwv/76q3rMN2/ezPbt27U6plV2+/ZtRo4cyenTp6lTp47aK1+SJDp16sSHH36ot1PPo9qnquf3cXkS7zLFgxyXhIQE9f8jIiL0NuV5GkTQ94xycnLi3Llz92zz0rhxYwCDD4nK8xo0aKAuk5WVRVZWlk51I6C2EVLSK0xMTFixYgW1atXCz8+PXbt2MW/evBr3wvT39yc6OprY2Fhu3bpFcXExAwcOfOojtffp04eYmBhiY2Np1qwZR44cYdCgQVrtdSqbO3cuBQUFBAUF6bShq9zO7kkpKiriH//4B8bGxqxdu1YdjkWxefPmh95GaGgomZmZDBo0iJCQEMzMzNR5t27deqgSs0fB3d2dtLQ0Tpw4Ue0XVhQnTpwAKqoAa0JfiaSyzz179qy2lECpxqrcU7XqvVWZk5OTzrSa3iOurq5ER0cTHx/PwYMH+eWXX7h06ZIaiISGhuq0sQMYN24cGRkZREREGCwRtLS0xMfHhy+//JLr169Xm4+jR4+ybds27Ozs2LBhAw4ODlrzlXZ696KU3NWtW1dvadLTZG1tzaBBgxg0aBCyLHPixAkWLlzIiRMnWL9+PXPmzNG73MaNGzl9+jRdu3Zl+fLlOiXhlZttPAil+YehNrZVq8Eft8f5LntQ+/btIzo6GmdnZ2RZJioqij59+uhtW/6kiaDvGXXx4kUArYbL+jRr1oznn3+e7Oxsjh8/rtMW4ubNmyQmJmJsbKy2QevYsSNZWVlER0czZswYnXUqnx5TGrtXpvzCCg4O5uDBg+zZswc/P78a/Urq0qULTZo0IS4ujlu3bmFkZFTj6uHHydvbG3Nzc2JiYnjhhRcoKysz2N4R/tsweOzYsTov48TERODJfl0gNTWVoqIi2rZtqxPwGcpTdUGEvnm///47AKNGjdIK+CqvX9lGTUsnHyVfX1/27NlDREQEH3zwgVYeysrKiI2NVdtolpeXExERAaAVAFVX5atvmIjGjRuTkZHB+++/r9W+0xAlgBkwYAB+fn73t4P3wczMjB49eqiN0i9evMi//vUvwsPDWbp0qd6gz8vLi4yMDLZu3VrtkBXp6emAdmBa3fXSr18/nYDvzp07/Pbbb8C9r0k7OztsbW3JysoiNTVV5ysq+fn5jBgxgqZNm7J69epqO1A8Kt988w2bNm1i0qRJvPHGG2revby8CAwMZMyYMdUGOMqxefvtt3UCvtOnT1NYWAg8eBV069atsbKy4sSJE1y9elVtx6g4fPjwA633QT3Od9mDKCgoYM6cORgZGTF37lw0Gg0jRoxg9uzZdOzY8aFK/x8F0ZHjGSPLMlu3biU5ORkrKyu9AwNX9c477wAwbdo0tZQOKkqApk6dqva8VH5JBQQEYGJiwtq1a/nll1+0tr1q1SqOHTvG888/j7e3t8FtNmjQgMmTJwMV1Tg1aRhtbGzMgAEDyM/PVz9/VrmH1tNibm5O165dSU9PZ8OGDTRs2NBguyv47y/pqg3aDx06pA4oe/fu3ceXYQP5OXfunNav5PLyctauXcvBgwd18qQE70VFRTovF2Ve5RIH5YFdecwrqCgxq9xY/0nud2VdunShdevWpKam6oyzd/ToUSZNmkT37t2Jiopi1apVZGRk4OjoqNVuUwkY9JWEKC/qypQXz08//aQ3T9OnT2fQoEHqdXKv9KGhofj5+T3wFy+SkpLo27evTlW+vb09s2bNAgz3lh01ahS1a9dm586dfP755zqlTaWlpXz55Zfs378fZ2dnra/UKD0m9V0viYmJWtfEzZs3mTJlilq9XnmevvVAxfNNo9EwdepUrdKrO3fuMH36dNLT06lbt+4TCfigovdxTk4Oa9as0RqLsby8XP3BXF0JsnJslPtSkZaWptXb+0HvJTMzM4YPH05paSnBwcFaz+YdO3ZoVWs+Tk/iXfYgZs+eTUFBAcOGDcPLy4v27dszePBgCgoKCAkJeeD1PiqipO9/VGpqKlOmTNGaVlpayqlTp8jOzsbExISQkBC9DVSrGjlyJMePH2ffvn3069ePjh07Ym5uTlJSEteuXcPd3Z3Zs2er6Vu3bs306dOZN28e7777Ll5eXjRp0oQ//viDjIwM6tevT2hoKObm5tVud8iQIYSHh3Py5En++c9/Mn369Hvm1d/fn3Xr1qHRaPD3979n+ielb9++xMTEkJaWRkBAQLWlVe+++646UPGWLVto0KABqampXLhwAVtbW4yMjLhx4wYlJSV620U+ao0bN6Zfv35ERUXh6+tLp06dMDU15eTJk+Tl5eHk5MSFCxe0Gj/b2NhgY2NDYWEhw4YNw8PDQx1018HBgTNnzhAQEICTkxNffPEFb7/9NgkJCSxZsoTo6GiaNWtGVlYWycnJWFtb06hRI/Ly8rh69arBtkyPk4mJCUuWLGHw4MHqoLkTJ07E0tIST09PFi1axOrVq5k0aRJQ0ZYzNDRUq32TMjRObGwsQUFBakP448ePs3XrVp1tDhkyhK+//pqNGzfi4eGh1YM3PDyciIgIzMzM1B6z/fv3JzQ0lD179tCuXTtGjBihpo+Pj2fDhg2UlpbWuMq5KmdnZy5dukROTg7+/v60bdtWnacM1WJo3U5OTqxYsYIpU6awefNmvvvuOzw9PWnYsCG3bt3i1KlTFBYW0rx5c9auXat1fyhNRFavXs1//vMf3nnnHby9vWnevDnJycm89tpreHp6qiV8t2/f1ntNKuuJi4tj7NixeHt7M2TIEN555x2OHz9OTEwM/fr1w8PDAwsLC06cOEFBQQH29vZP9GXdvXt3fHx81NLjdu3aYW5uTkpKCllZWbRo0UINXvQZPnw44eHhbN26laNHj9KiRQvy8vI4ceIEZmZm2NnZkZWVpd67DyIwMJCkpCQSEhLo1asX7du3Jycnh1OnTtG2bVu1ecOj8DTfZfcrKiqKmJgYGjduzMcff6xOnzp1KnFxcURHRxMVFVVtJ77HTZT0/Y/Kz89n9+7dWv8OHTqEmZkZgwYNIiwsrMYXnrGxMcuXL2fBggW4u7vz22+/kZiYiK2tLcHBwXz33Xc6Q1mMHDmSLVu24O3tTXp6OnFxcciyzLvvvktkZGSNxjszNjYmJCQEExMTNm/erLdbflUODg40bNjQ4Nh8T0v37t3Vdln3Ou7Dhg1j8eLFuLu7k5KSwpEjRzA1NWXUqFFERkbSuXNnysrKDJboPA7z589n3LhxNG3alCNHjnDy5Ens7Oz47LPPiIiIwNraWn1JQkV11OLFi3F0dOT06dNapQ4hISG4ubmRmprKzz//TGFhId26dePLL7+kffv2ZGZmkpiYSGlpKcOGDWPXrl306dMH0C0JfJJatGjBjh07cHR0ZPPmzbzyyiuMHDmSmTNnEhYWptVBonbt2pw7d05r+RdffBF3d3euXbtG//79CQoKYsSIEQwbNkxvlWjTpk1ZsGABUNEmztfXl/Hjx/PGG28wffp09Rgr1Wvm5uaEhoZiYWHBnDlz8PHxISgoiCFDhjBq1ChKSkoIDg7Gzc3tgfbf2tqaTz75hOLiYoYNG8awYcOYMGEC/v7+au/E4OBgg8t3796dmJgYxo0bR6tWrUhLS2P//v2cOnUKR0dHgoOD2b17t05Q/9Zbb/HGG29QVlZGfHw858+fp27dumzevJmBAwdiamrKTz/9RHp6Oh06dGD9+vUsWbIE0C7tcnV15eOPP6ZBgwYkJiaqVcDGxsaEhoYyf/58XF1dSU5O5siRIzRs2JDAwEC+//57nSrMx8nIyIgvvviCyZMn88ILL5CUlMRPP/2EmZkZY8aMYceOHVhbWxtc3tXVlS1btvDqq6+Sn59PfHw8hYWF+Pr6Eh4ern71pWpJ4P147rnn2LBhAxMnTsTCwoKDBw9y8+ZNZs+erY5V+Kg87XfZ/eRTaWf52WefaVWtW1lZMWPGDKDiqx2GvqbzJBjJDzvOgiD8hSQlJTFixAgGDx5cbQ9GQXhQd+/eJSwsjOjoaP744w9u375NgwYNcHBwoG/fvtjb2zNnzhzS0tJwdXVl3bp1ahV5YWEhK1euJDY2lmvXrtG8eXOGDh3KW2+9haenJ506ddLpGJOSksJXX33Fr7/+SmFhIY0aNcLDw4PRo0fTunVrnfxdunSJdevWkZCQwNWrV6lXrx6urq68//77vPTSS1ppe/ToQXZ2NocPH1bzqJg5cyY7d+5kwYIFWqXme/fuZfv27aSkpFBcXEz9+vV5+eWXGTt2rE77OkEQ/lpE0Cf87ZWUlGBqakphYSEffvghp0+frraXoCA8bnfv3mX79u3Exsby7bffPrFhLARBEKojgj7hby8+Pp7AwEDKy8vRaDT069eP5cuXP+1sCYIgCMJfimjTJ/zt2dvb06hRI8zNzfHz86t2SAhBEARBeFaJkj5BEARBEIRngCjpEwRBEARBeAaIoE8QBEEQBOEZIII+QRAEQRCEZ4AI+gRBECoJDw/HxcXlL/VFl7+ikSNH4uLiwpYtW552VgRBqCER9AmCIAiCIDwDRNAnCIIgCILwDBBBnyAIgiAIwjNABH2CIAiCIAjPABH0CYIgGPDnn38ybdo0XnrpJTw9PfH392fLli2UlZXppL1x4wYrV67E19cXT09PvLy88Pf356uvvqK4uFgnfY8ePXBxcSEzM5NJkybRtm1bOnbsyCeffKKm0Wg07Ny5kxEjRtC+fXs8PDzw8fFh3rx5XLlyRWed06ZNw8XFhUWLFundnwkTJuDi4sLKlSt15qWnpzN9+nR69OhBmzZt6NevHxs3bqSsrAwXFxdcXFwMHqekpCQ+/PBDOnbsqO73tm3bEGP/C8Jfi+nTzoAgCMJfUWFhIW+99Ra5ubm0aNGCevXqkZycTHJyMocOHWLt2rWYmZkBkJGRwXvvvUdOTg4mJiY4Ozuj0Wg4c+YMycnJ/PDDD2zYsIFGjRrpbGfq1KmcOnUKSZK4fPkyzZo1A6C4uJgxY8Zw5MgRoOJzgxYWFly4cIFvv/2WXbt2sWbNGjp06PDQ+3r06FHGjh1LUVERlpaWODs7k5WVxaJFi0hKSqp22T179jBv3jxq166No6MjV65cUY9Tamoqn3766UPnTxCER0OU9AmCIOiRnZ1NcXEx27ZtY9++fURFRbF161asra2Jj4/n66+/BqC0tJSxY8eSk5NDp06diIuLY9euXezevZt9+/bh4uLC2bNn+eijj/Ru58yZM2zdupXIyEji4+MZNWoUACEhIRw5coQmTZrw3XffERsbS3h4OAkJCfTv35/r168zbtw48vLyHmo/i4qKmDx5MkVFRbz55pskJCQQFhZGQkICY8eO5cCBA9Uuf/z4cfr3789PP/1EREQECQkJvP/++wBs2bKFP//886HyJwjCoyOCPkEQBAMWLlxIu3bt1L87dOjAzJkzAfjmm28oKytj7969pKen07BhQ9asWUPTpk3V9I6Ojnz55ZfUqVOHpKQkDh8+rLMNHx8fvLy8ADAzM8PCwoKsrCwiIyMBWLlyJW3btlXTW1lZsWTJElq1asW1a9fYtGnTQ+3j999/T15eHq1atWLu3Lk899xzal4mTZpE7969q13ewcGBhQsXYmVlBYCxsTGTJk3CysoKWZb5/fffHyp/giA8OiLoEwRB0MPW1pbu3bvrTO/bty/m5uZcvXqVM2fOqIGcr68vlpaWOumbNm1Kr169ADh06JDO/MoBnSI+Ph6NRkOrVq3w9PTUmW9iYsLw4cMNrvN+xMXFATB48GCMjXVfCcOGDat2eW9vb0xNtVsK1apVixdeeAGoqCYXBOGvQQR9giAIeri6uuqdXqtWLezt7YGKzg8ZGRkAuLm5GVyXu7s7gJq2Mn3t/GqyzlatWhlc5/1IS0sDMNhRQ8m7IY0bN9Y7vW7dugDcvXv3IXInCMKjJII+QRAEPZSgRZ86deoAFZ0tioqK7plemaekrax27do602qyTiUPZWVlDxVYKSVxyvqqqi4PUBEEC4Lw9yCCPkEQBD1u375tcJ4SlFlaWqrB0q1btwymv3nzJmA4sKrqftZpamqqEzgaGirlzp07OtPMzc2r3Za+QFUQhL8nEfQJgiDoYajatLi4mPT0dACcnZ1xdHQEICUlxeC6kpOTAWjevHmNtn0/61TazkFFWz+AkpISvcvo6+nbsmVLAM6dO6d3mfPnz9cgx4Ig/B2IoE8QBEGPtLQ0Tp48qTM9LCyMkpIS7OzscHJyolu3bkDFeHVK6Vtlly9fVoc9efXVV2u07S5dumBsbMyZM2c4ceKEzvzy8nK2b9+us06lB60SlFaWlZXF2bNndab37NkTgIiICL0lhDt37qxRngVB+OsTQZ8gCIIBkydPJjU1Vf370KFDLF26FICgoCCMjIzo168fjo6OXL16lf/7v//j8uXLavr09HRGjx7NnTt38PLyUgOse7Gzs2PAgAEATJw4USvwu3HjBlOnTuXMmTNYW1ur4/oB6vAyR44cISYmRp2emZnJhAkT0Gg0OtsaMmQIDRs25OTJk4SEhKjtAzUaDRs2bFCHjhEE4e9PfJFDEARBj/bt25Oens7rr7+Os7Mzd+/eVat8AwIC8Pf3Byo6MqxevZpRo0Zx9OhRevbsiZOTExqNhvPnzyPLMi4uLixfvlytfq2JWbNmkZ2dza+//sqQIUNwcHCgbt26XLhwgbt372JjY0NoaKjWuIDKJ9ROnjzJhAkTcHBwoFatWqSmpmJtbc3w4cP597//rbUdKysrli5dypgxY9i2bRt79uzBwcGBnJwc8vPzad26NadPn76vvAuC8NckSvoEQRD0aNasGTt27KBXr17k5uZy5coVvLy8WL58ObNmzdJK27JlSyIjIwkMDMTR0ZGMjAxyc3Px8PBgxowZfP/999ja2t7X9uvUqcPGjRuZM2cO7dq14+rVq6SmpvL888/z4Ycf8sMPP/DSSy9pLWNiYsKmTZsYO3Ys9vb2ZGdnc+3aNQYOHEhkZKQ61ExVL730EmFhYfTt2xczMzP++OMP6tWrx6xZs5gxYwagv5exIAh/L0ay+CK2IAiCYMDhw4cZPXo09vb2xMbGPu3sCILwEERJnyAIwjMsNDQUX19fduzYoXd+fHw8UP1A0YIg/D2IoE8QBOEZ5urqyrlz51ixYgV//PGHOl2j0RAREcG2bdsAGDp06NPKoiAIj4io3hUEQXiGaTQaRo0aRWJiIgD29vZYWlqSk5NDQUEBRkZGjB8/nqCgoKecU0EQHpYI+gRBEJ5xZWVlREVF8f3335ORkUFhYSENGjSgTZs2DB8+nBdffPFpZ1EQhEdABH2CIAiCIAjPANGmTxAEQRAE4Rkggj5BEARBEIRngAj6BEEQBEEQngEi6BMEQRAEQXgGiKBPEARBEAThGSCCPkEQBEEQhGfA/wN9PsBRKws1awAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Airbnb Location by Borough Vis\n", + "sns.catplot('borough', data=abb_vis_df, kind = 'count', height =9, aspect = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 149, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 149, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAjUAAAIaCAYAAADY77x7AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde1wVdf7H8TcXUY6YiYAhQaEohSQpeQ/F+9auaRdBJRONXNcyazMsV9dbbmU3RE0tzQpNTX+5Zm2rmZhGZoaW5gVDtPCCIigIiAic3x8+ztlOXAQEwfH1fDx8GN/5zMyXYTi+m/l+Z+zMZrNZAAAA1zn72u4AAABAdSDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQ3Cs7Q7gyjIyclRczMx7AADc3RuVuYwrNQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAINQAAwBAca7sDpSkqKtKKFSu0du1apaSkqKioSN7e3rr//vsVFRWl+vXrW2t/+OEHRURElLmtAQMG6PXXX7dpO3LkiObOnavExESdO3dOPj4+CgsLU0REhOztS+a8U6dOaf78+UpISFB6ero8PT31wAMP6IknnpCTk1OJ+uzsbC1atEibNm3SyZMn5ebmpn79+umpp56Si4vLVRwZAABQFjuz2Wyu7U78XlFRkcaOHastW7bIZDIpKChIjo6O+umnn5Sdna2goCB98MEHcnZ2liR9+OGHmjVrltq1a6dbb721xPbat2+vYcOGWb8+ePCgIiIilJOTo/bt26tp06basWOHsrOzSw1AaWlpCg8PV1pamgICAuTt7a1du3YpPT1dHTt21Hvvvad69epZ63NycjRs2DAlJSXJ19dXrVu31r59+3Ts2DH5+flp5cqVatSoUaWOSUZGjoqL69SPCVCTxk5ydKp/5UJctwoLLupsVkFtdwOw4e5e9r+hde5KzerVq7Vlyxb5+/vr3XffVbNmzSRJmZmZGjt2rHbv3q23335bzz33nCTpwIEDkqTnn39ewcHB5W7bbDYrOjpaOTk5mj17tgYOHGjddmRkpNavX6++ffuqf//+1nWmTZumtLQ0jR8/XmPHjpUk5eXl6cknn9S3336ruLg4jRo1ylofExOjpKQkhYWFafr06bK3t1dhYaEmTZqkdevWKSYmRlOmTKm+AwbUEken+kqcHVXb3UANCo5eLIlQg+tHnRtTs3btWknSpEmTrIFGklxdXTVt2jRJ0ueff25t379/v+zt7XXnnXdecdsJCQlKSkpSx44drYHmj9uOi4uztqekpGjLli3y8fHRmDFjrO0mk0mzZs2Sg4ODli1bZm3Pzs7W6tWr5eLiookTJ1pvZTk6Omrq1Klq3Lix1qxZo7y8vEocEQAAUBF1LtQ0adJELVq0UNu2bUssu/322yVJp0+fliQVFBTo8OHDatGihUwm0xW3vW3bNklSnz59Siyz3IpKTExUTk6OJOmbb76R2WxWz549S4y1ad68uQICAnT8+HElJydLknbu3Kn8/Hx17ty5xNiZhg0bqkuXLsrPz9fOnTuv2FcAAFA5dS7ULFy4UF988UWpIWXv3r2SpFtuuUWS9Msvv+jSpUvy8vLSW2+9pfvuu09t27ZVr1699Oqrryo7O9tmfUv4aN26dan79vX1VXFxsQ4fPmxT36pVq1LrW7RoIUk6dOhQpeqTkpJKXQ4AAKquzoWaspjNZs2ZM0eS1K9fP0mXbz1J0tdff60PP/xQ3t7eCg4OVnZ2tt577z0NHjxYmZmZ1m1YrvC4u7uXug9L+5kzZ2zqPTw8KlSfnp5eoe1nZGRc8fsFAACVc92EmjfffFM7d+6Um5uboqIuD060DBLu2LGjvvrqK73zzjtaunSpNm7cqC5duujo0aOaOnWqdRsXLlyQJDVo0KDUfVjaLWNeKltv+dsyM+tK9QAAoPrUudlPpZkzZ47eeecdOTk5KSYmRq6urpKkF198UcOHD5e7u7vNGBZXV1e9+uqr+tOf/qQvv/xSp0+floeHhxwcHCRJdnZ25e6vuLhYkmq8vqKaNuXZNgBqR3nTZ4G6pk6HmsLCQs2YMUOrVq1S/fr1NXfuXHXo0MG6vF69evL19S113WbNmikgIEA//PCD9u/fLw8PD+sVlPz8/FLXsbQ3bNhQkipcbxn/U9n6iuI5NaiL+MfuxpCefr62uwDYKO+zp87efsrNzdWYMWO0atUq3XTTTVqyZIl69OhRqW24ublJ+t9tJMvYGMsYmD/645iYitZb6iq7fQAAUH3qZKjJysrS8OHDtW3bNnl6emr58uU2V2gsZs6cqSeffLLMgbfHjh2T9L/ZUpZZSZZZSr9nNpuVkpIiBwcHtWzZ8or1kqyzpCyzqSpa7+/vX+pyAABQdXUu1BQUFGj06NHat2+f9bUCZU3B3r17tzZt2qTNmzeXWHbo0CEdOHBAN998s9q0aSNJCgkJkSR99dVXJep37dqlzMxMBQcHW8fnWOrj4+NLjIM5ceKEDhw4IC8vL/n5+UmSOnTooAYNGmj79u0lBgPn5uZq+/btMplMV3zyMQAAqLw6F2piY2P1448/ytPTU3FxcdarLKUJDw+XJL311lvWqyDS5dcevPjiiyoqKlJUVJT1pZMdO3ZUq1atlJCQoI8//timfvr06ZKkkSNHWtu9vb0VEhKilJQU63Ry6fLspcmTJ6uoqMim3mQyadCgQcrKytL06dNVWFgo6X9jg7KzsxUeHs5LLQEAqAF16oWWZ8+eVWhoqPLz89WmTRvrw+pK8/rrr6u4uFjPPPOMNmzYoHr16umee+6Rs7OzduzYodzcXN1333164403rLOSJGnPnj0aMWKE8vLyFBQUJA8PD33//ffKyspSWFiYZs6cabOf1NRUDR06VOnp6WrdurV8fX2tL7Ts3r27FixYIEfH/423PnfunIYMGaIjR47I29tbAQEB2r9/v1JTU9WmTRvFxcVZByJXFAOFURe5uzfi3U8GFxy9mIHCqHPKGyhcp0LNxo0bNW7cuArVWp7KazabtWrVKq1evVrJycmyt7eXn5+fwsLC9Mgjj5Q6vTo5OVmxsbHasWOHCgoKdNttt2nIkCEaPHiwTQCyOHnypGJjY7V161adP39e3t7eGjhwoEaMGKH69Uu+pfjcuXOaN2+eNm3apIyMDHl6eqpv374aM2ZMpd/QLRFqUDcRaoyPUIO66LoJNSgdoQZ1EaHG+Ag1qIuuyyndAAAAlUGoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhkCoAQAAhuBY2x1AzWp0UwM1qF+vtruBGpR/8ZLOZ+fXdjcAoNYRagyuQf16Gha9vLa7gRr00ewInRehBgC4/QQAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAyBUAMAAAzBsbY7UJqioiKtWLFCa9euVUpKioqKiuTt7a37779fUVFRql+/vk393r17NX/+fO3du1d5eXny8/PTY489pgEDBpS6/SNHjmju3LlKTEzUuXPn5OPjo7CwMEVERMjevmTOO3XqlObPn6+EhASlp6fL09NTDzzwgJ544gk5OTmVqM/OztaiRYu0adMmnTx5Um5uburXr5+eeuopubi4VM9BAgAANurclZqioiKNHTtWM2fOVEpKioKCgtSxY0edPn1asbGxGj58uC5cuGCtT0hI0NChQ7V161b5+fmpU6dOOnTokCZMmKC33nqrxPYPHjyoRx55RJ9//rmaN2+ukJAQpaWl6aWXXlJ0dHSJ+rS0NIWFhWnVqlW66aabFBoaqtzcXMXGxurxxx/XpUuXbOpzcnL06KOPavHixbKzs1NoaKjs7Oy0dOlShYeH6/z589V/0AAAQN27UrN69Wpt2bJF/v7+evfdd9WsWTNJUmZmpsaOHavdu3fr7bff1nPPPaf8/Hw9//zzkqT33ntPnTt3liT99ttvGj58uBYuXKi+ffsqMDBQkmQ2mxUdHa2cnBzNnj1bAwcOtG47MjJS69evV9++fdW/f39rf6ZNm6a0tDSNHz9eY8eOlSTl5eXpySef1Lfffqu4uDiNGjXKWh8TE6OkpCSFhYVp+vTpsre3V2FhoSZNmqR169YpJiZGU6ZMqfkDCQDADabOXalZu3atJGnSpEnWQCNJrq6umjZtmiTp888/lyStW7dOGRkZGjBggDXQSJKPj48mTJggSYqLi7O2JyQkKCkpSR07drQGmj9u+/f1KSkp2rJli3x8fDRmzBhru8lk0qxZs+Tg4KBly5ZZ27Ozs7V69Wq5uLho4sSJ1ltZjo6Omjp1qho3bqw1a9YoLy/vqo4RAAAoqc6FmiZNmqhFixZq27ZtiWW33367JOn06dOSpG3btkmSevfuXaK2Z8+ecnBw0NatW61tlvo+ffqUqG/fvr2aNm2qxMRE5eTkSJK++eYbmc1m9ezZs8RYm+bNmysgIEDHjx9XcnKyJGnnzp3Kz89X586dS4ydadiwobp06aL8/Hzt3LmzQscCAABUXJ0LNQsXLtQXX3whk8lUYtnevXslSbfccosk6ZdffpEktW7dukSti4uLPDw8lJmZqTNnzkiSNXyUVi9Jvr6+Ki4u1uHDh23qW7VqVWp9ixYtJEmHDh2qVH1SUlKpywEAQNXVuVBTFrPZrDlz5kiS+vXrJ0lKT0+XJLm7u5e6jqXdEmosV3gqW+/h4VGh+or2JyMjo9TlAACg6q6bUPPmm29q586dcnNzU1RUlCRZZ0E1aNCg1HUs7ZYxLDVdb/nb2dm5QvUAAKD61LnZT6WZM2eO3nnnHTk5OSkmJkaurq6SJAcHB5nNZtnZ2ZW7fnFxsbVeUp2pr6imTXm2Dcrn7t6otrsAg+LcwvWkToeawsJCzZgxQ6tWrVL9+vU1d+5cdejQwbrc2dlZ2dnZunjxYokH8klSfn6+pMuDdC31v2+vrnrL+J/K1ldURkaOiovNlVrHgg+kG0N6+rV//hHn1o2hNs4toDzlffbU2dtPubm5GjNmjPWhd0uWLFGPHj1saixjXSxjWf7oj2NcLPWWMTDVVW+pq+z2AQBA9amToSYrK0vDhw/Xtm3b5OnpqeXLl9tcobGwzDKyzFb6vZycHJ0+fVqurq5yc3OzqbfMUvo9s9mslJQUOTg4qGXLlles//1+LbOpKlrv7+9f6nIAAFB1dS7UFBQUaPTo0dq3b5/8/Py0cuXKMqdgh4SESJI2bdpUYtnmzZtVVFRkc3XHUv/VV1+VqN+1a5cyMzMVHBxsfcaMpT4+Pr7EOJgTJ07owIED8vLykp+fnySpQ4cOatCggbZv315iMHBubq62b98uk8mk4ODgCh0LAABQcXUu1MTGxurHH3+Up6en4uLirM+kKU3//v3VtGlTrV27Vl9//bW1PTU1VW+88Ybs7OwUGRlpbe/YsaNatWqlhIQEffzxx9b2zMxMTZ8+XZI0cuRIa7u3t7dCQkKUkpJinU4uXZ69NHnyZBUVFdnUm0wmDRo0SFlZWZo+fboKCwsl/W9sUHZ2tsLDw3mpJQAANcDObDZXbQRqDTh79qxCQ0OVn5+vNm3aWB9WV5rXX39d0uWrLk8//bSKiorUoUMHNWzYUN99950uXLigZ5991ub1BpK0Z88ejRgxQnl5eQoKCpKHh4e+//57ZWVlKSwsTDNnzrSpT01N1dChQ5Wenq7WrVvL19dXu3btUnp6urp3764FCxbI0fF/463PnTunIUOG6MiRI/L29lZAQID279+v1NRUtWnTRnFxcdaByBV1tQOFh0Uvr9K6uD58NDui1gYKJ86Ouub7xbUTHL2YgcKoc8obKFynQs3GjRs1bty4CtX+/qm8u3bt0vz58/XTTz/JbDbLz89PkZGRuu+++0pdNzk5WbGxsdqxY4cKCgp02223aciQIRo8eLB1WvbvnTx5UrGxsdq6davOnz8vb29vDRw4UCNGjCh11tW5c+c0b948bdq0SRkZGfL09FTfvn01ZswYNWpU+RkjhBqUh1CDmkKoQV103YQalI5Qg/IQalBTCDWoi67LKd0AAACVQagBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACGQKgBAACG4FjbHaiITz75RC+++KKWL1+ue+65x2bZyZMnFRoaWua67du314oVK2zaTp06pfnz5yshIUHp6eny9PTUAw88oCeeeEJOTk4ltpGdna1FixZp06ZNOnnypNzc3NSvXz899dRTcnFxKVGfn5+vDz74QJ9++qmOHTumRo0aKTQ0VE8//bQ8PDyqdhAAAEC56nyo2b17t2bOnFnm8v3790uS/P391bp16xLLfX19bb5OS0tTeHi40tLSFBAQoDZt2mjXrl2KjY3Vd999p/fee0/16tWz1ufk5OjRRx9VUlKSfH19FRoaqn379mnp0qXatm2bVq5cqUaNGlnrL126pLFjxyohIUGenp7q0aOHUlJStHr1am3ZskUff/yxmjdvfrWHBQAA/EGdDjUbNmzQiy++qLy8vDJrDhw4IEmKiorSAw88cMVtTps2TWlpaRo/frzGjh0rScrLy9OTTz6pb7/9VnFxcRo1apS1PiYmRklJSQoLC9P06dNlb2+vwsJCTZo0SevWrVNMTIymTJlirV+2bJkSEhIUGhqquXPnysnJSWazWW+99ZYWLVqkGTNmaOHChVU9JAAAoAx1ckxNWlqaoqOj9fTTT6u4uFhubm5l1lqu1LRp0+aK201JSdGWLVvk4+OjMWPGWNtNJpNmzZolBwcHLVu2zNqenZ2t1atXy8XFRRMnTpS9/eXD5ejoqKlTp6px48Zas2aNNXQVFxdr6dKlsrOz05QpU6y3suzs7PTMM8/I19dX8fHxSk1NrfxBAQAA5aqToSYmJkbr1q1TYGCgVq1apRYtWpRZe+DAAZlMphK3mUrzzTffyGw2q2fPntaAYtG8eXMFBATo+PHjSk5OliTt3LlT+fn56ty5c4mxMw0bNlSXLl2Un5+vnTt3SpIOHTqkU6dO6Y477tCtt95qU29vb69evXpJkrZu3XrlgwAAACqlToaaFi1a6NVXX9Xq1avl7+9fZt25c+d04sQJ+fr6aunSpXrggQcUFBSke++9V1OmTNGpU6ds6i1hpVWrVmXuV7ocTipTn5SUVKXtAwCA6lMnx9SMHj26QnWW8TT79u3ToUOH1KFDB91yyy3au3evPv74Y8XHx+vDDz+0honTp09LUpkzkNzd3SVJZ86ckSSlp6fbtJdVn5GRUaV6AABQfepkqKkoy3ia1q1b6+2335a3t7ekywN/p0yZos8++0wTJkzQJ598Ikm6cOGCJKlBgwalbs/SbhkjY/nb2dm5RuorqmnTktPGgd9zd2905SKgCji3cD25rkNNZGSk+vXrp4YNG8rV1dXabjKZ9NJLL2nnzp3at2+ffvzxR919991ycHCQdHngbnmKi4slqcbrKyojI0fFxeZKrWPBB9KNIT39/DXfJ+fWjaE2zi2gPOV99lR6TM2JEycqfPvk8OHDio+Pr+wuKszBwUHe3t42gcbC2dlZnTt3lnT59pSlTbr8cLzSWNpNJtM1qQcAANWn0ldqevXqpXvuucdm6nNZJk6cqGPHjum7776rUueulmUquOW2k2UsjWXMzB9ZxsRY6ipabxkrU9l6AABQfcoNNUVFRSooKLB+bTabre35+fnWr//IbDbrxIkTSk1N1cWLF6uxu7bmzZunQ4cO6cknnyx1ltSxY8ckSbfccouk/81KssxS+qPDhw9LkvXJxBWtt+zbsl5Ftw8AAKpPuaHmxIkT+vOf/6xLly5Z2+zs7PTjjz+qXbt2FdrBXXfddXU9LEdSUpI2btyoFi1alAg1GRkZSkhIUL169dSpUydJUkhIiCQpPj5eEyZMsHlWzYkTJ3TgwAF5eXnJz89PktShQwc1aNBA27dvV15ens1to9zcXG3fvl0mk0nBwcGSpJYtW8rLy0v79+/XyZMn5enpaa0vLi7W5s2bZWdnZ+0HAACoPuWOqfH29taoUaNkNputfyTZfF3en2bNmmny5Mk11vnw8HBJ0tKlS5WYmGhtz83N1aRJk5STk6NHHnnEervH29tbISEhSklJ0Zw5c6z1eXl5mjx5soqKijRy5Ehru8lk0qBBg5SVlaXp06ersLBQklRYWKgZM2YoOztb4eHhNg/mGzJkiIqKivSPf/zDZpbTnDlzdPToUfXt21c+Pj41c0AAALiBXXFMzVNPPaXBgwdLuhxm+vTpo7vuuksxMTFlrmNvby+TyaTGjRtXX09Lce+992rkyJFaunSpHn30UbVv315NmjTRDz/8oLNnz+qee+7RxIkTbdaZOnWqhg4dqoULF2rz5s3y9fXVrl27lJ6eru7du2vo0KE29c8++6x27Nihf//730pMTFRAQID279+v1NRUtWnTRuPGjbOpj4yM1JYtW5SQkKB+/fqpffv2OnLkiA4dOiQvLy+b90QBAIDqc8VQ4+joKC8vL+vXDz74oHx9fW3aatMLL7ygoKAgLVu2TPv371dxcbF8fHwUFRWlESNG2LxxW7p8tWb16tWKjY3V1q1b9euvv8rb21uPPfaYRowYIUdH20Ny8803a+XKlZo3b542bdqk+Ph4eXp6KioqSmPGjFHDhg1t6p2cnLRkyRK98847+uyzzxQfHy93d3eFh4frqaeeKvPBfwAA4OrYmcsa7Ys642qfUzMsenk19wh1yUezI2rtOTWJs6Ou+X5x7QRHL+Y5NahzyntOTZUfvnfmzBnt3btXOTk5KioqKrd20KBBVd0NAABAhVQ61JjNZr388sv66KOPrhhmLAg1AACgplU61KxYsUIffvihpMvvMrr11ltVv379au8YAABAZVQ61KxZs0Z2dnYaNWqUnnnmmRIDcQEAAGpDpUNNSkqK3NzcNGHChCu+uBEAAOBaqfQLLevXry83NzcCDQAAqFMqHWoCAwN19OhRm6flAgAA1LZKh5rRo0crPz9fL7/8ck30BwAAoEoqPabGxcVFERERWr58uX788Ufde++9atasWbkDhiMiIq6qkwAAAFdS6VDz8MMPy87OTmazWb/88ouSk5OvuA6hBgAA1LRKh5oOHTrURD8AAACuSqVDTVxcXE30AwAA4KpUeqAwAABAXUSoAQAAhlDp20+9e/euVL2dnZ02bdpU2d0AAABUSqVDzfHjxytUZ5khBQAAcC1UOtQsXLiwzGUXLlxQenq6vvrqK+3YsUPjxo3TY489dlUdBAAAqIhKh5rQ0NAr1jz22GN64403NG/ePAUFBenee++tSt8AAAAqrMYGCo8bN04uLi5avHhxTe0CAADAqsZCjZOTk3x8fPTzzz/X1C4AAACsaizUFBQU6NixYwwWBgAA10SNhJpTp07phRdeUFZWlgICAmpiFwAAADYqPVC4S5cuZS4zm80qKCjQhQsXJF2e1j1ixIiq9w4AAKCCKh1qzp49W6G6xo0ba9y4cerTp0+lOwUAAFBZlQ41H374YbnLHRwc1LhxY7Vo0UL29ryFAQAAXBuVDjUdO3asiX4AAABclUqHmt8zm83at2+fjh49qtzcXJlMJt12221q06aNHBwcqquPAAAAV1TlUPN///d/io2N1enTp0ssu/nmmzV+/HgNGTLkqjoHAABQUVUKNa+//rqWLFkis9ksJycntWjRQiaTSefPn9eRI0d09uxZTZ8+Xb/++qsmTpxY3X0GAAAoodKhZvv27Vq8eLGcnJz03HPPKTw8XA0aNLAuv3DhglatWqU333xT77//vnr27Mk4HAAAUOMqPT3pww8/lJ2dnWbOnKkRI0bYBBpJcnZ2VmRkpGbMmCGz2ayPPvqo2joLAABQlkqHmh9//FHu7u4aOHBguXWDBg2Su7u7fvzxxyp3DgAAoKIqHWrOnz+vW265pUK1np6eysjIqHSnAAAAKqvSocbV1VW//vqriouLy60rKirSr7/+qiZNmlS5cwAAABVV6VDToUMHZWdna8mSJeXWLVmyRFlZWerQoUOVOwcAAFBRlZ799BJC5Z0AACAASURBVPjjj+u///2v3nrrLZ08eVJDhw5Vq1atrMsPHTqkFStWaNWqVXJwcNDIkSOrtcMAAAClqXSoCQgI0KRJk/TSSy9pxYoVWrFihRwdHWUymZSXl6fCwkKZzWbZ29tr0qRJCgwMrIl+AwAA2KjSGycjIiL0/vvvq1OnTnJwcNClS5eUlZWlS5cuyd7eXp07d9b777+viIiI6u4vAABAqar8moSgoCCFhYXp7bffVmpqqvXdT4mJiSoqKtIdd9xRnf0EAAAoV5Wu1Hz77bfq0aOHJkyYoPPnz8vf31/t27fXHXfcoS+//FIvv/yy/vSnP2n79u3V3V8AAIBSVTrU7NmzR6NHj1ZWVpb8/Px06dIlm+X333+/goKClJmZqbFjxyolJaXaOgsAAFCWSoead999V4WFhRo5cqQ+/fRT3XrrrTbLw8LCtHLlSkVFRenChQtatGhRtXUWAACgLJUONYmJiXJ1ddWECRPKrXvmmWfUuHFjffvtt1XuHAAAQEVV6TUJzZs3l4ODQ7l1jo6O8vb21rlz56rcOQAAgIqqdKjx8PBQamqqioqKyq0rLi7W8ePHdfPNN1e5cwAAABVV6VDTqVMnZWdna8GCBeXWLV26VGfPnlXHjh2r3DkAAICKqvRzaiIjI/XZZ59p/vz5OnLkiB566CG1atVKJpNJFy5cUHJystatW6dPP/1Ujo6OioqKqol+AwAA2Kh0qGndurVmzJihf/7zn/r888/1n//8p0SN2WyWo6OjZs6cqTvvvLNaOgoAAFCeKj18b9CgQVq3bp0GDx4sd3d3mc1m65+bb75ZAwYM0Jo1a/Tggw9Wd38BAABKVeXXJPj6+mrmzJmSpIKCAp09e1bOzs666aabqq1zAAAAFVXlUPN7Tk5OatasWXVsCgAAoEqqdPsJAACgriHUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQyDUAAAAQ7guQs0nn3wif39//fDDD6UuP3LkiP7+97+rR48eCgoK0oABAxQXF6fi4uJS60+dOqV//vOf6t27t9q2bav+/ftr/vz5KigoKLU+Oztbr732mvr376+2bduqV69eeuWVV5STk1NqfX5+vhYtWqQ///nPCgoK0r333qvJkyfr9OnTVTsAAADgiup8qNm9e7dmzpxZ5vKDBw/qkUce0eeff67mzZsrJCREaWlpeumllxQdHV2iPi0tTWFhYVq1apVuuukmhYaGKjc3V7GxsXr88cd16dIlm/qcnBw9+uijWrx4sezs7BQaGio7OzstXbpU4eHhOn/+vE39pUuXNHbsWL355pvKzc1Vjx49dPPNN2v16tV66KGHdOLEieo5MAAAwEadDjUbNmzQ448/rry8vFKXm81mRUdHKycnR7Nnz9aKFSs0b948bdiwQf7+/lq/fr02bNhgs860adOUlpam8ePHa+3atYqNjdXGjRvVtWtXff/994qLi7Opj4mJUVJSksLCwvSf//xHsbGx2rBhgwYOHKjk5GTFxMTY1C9btkwJCQkKDQ3Vxo0bFRsbq/Xr1+uvf/2r0tPTNWPGjOo9SAAAQFIdDTVpaWmKjo7W008/reLiYrm5uZVal5CQoKSkJHXs2FEDBw60tru6umratGmSZBNSUlJStGXLFvn4+GjMmDHWdpPJpFmzZsnBwUHLli2ztmdnZ2v16tVycXHRxIkTZW9/+XA5Ojpq6tSpaty4sdasWWMNXcXFxVq6dKns7Ow0ZcoUOTk5SZLs7Oz0zDPPyNfXV/Hx8UpNTa2eAwUAAKzqZKiJiYnRunXrFBgYqFWrVqlFixal1m3btk2S1KdPnxLL2rdvr6ZNmyoxMdE69uWbb76R2WxWz549rQHFonnz5goICNDx48eVnJwsSdq5c6fy8/PVuXNnubi42NQ3bNhQXbp0UX5+vnbu3ClJOnTokE6dOqU77rhDt956q029vb29evXqJUnaunVrZQ8JAAC4gjoZalq0aKFXX31Vq1evlr+/f5l1lvDRunXrUpf7+vqquLhYhw8ftqlv1apVmfuVLoeTytQnJSVVafsAAKD6ONZ2B0ozevToCtVZZhO5u7uXutzSfubMGZt6Dw+PCtWnp6dXaPsZGRlVqgcAANWnTl6pqagLFy5Ikho0aFDqcku7ZcxLZestfzs7O9dIPQAAqD518kpNRTk4OEi6PBC3PJbn1dS1+opq2tTlykW4obm7N6rtLsCgOLdwPbmuQ43likh+fn6pyy3tDRs2rFS9yWS6JvUVlZGRo+Jic6XWseAD6caQnn7+ykXVjHPrxlAb5xZQnvI+e67r20+WsTGWMTB/9McxLhWtt9TV1PbLGnMDAACq7roONZZZRpZZR79nNpuVkpIiBwcHtWzZ8or1kqyzpCyzqSpab5mhZVmvotsHAADV57oONSEhIZKkr776qsSyXbt2KTMzU8HBwdZnzFjq4+PjS4xrOXHihA4cOCAvLy/5+flJkjp06KAGDRpo+/btJQb35ubmavv27TKZTAoODpYktWzZUl5eXtq/f79OnjxpU19cXKzNmzfLzs7O2g8AAFB9rutQ07FjR7Vq1UoJCQn6+OOPre2ZmZmaPn26JGnkyJHWdm9vb4WEhCglJUVz5syxtufl5Wny5MkqKiqyqTeZTBo0aJCysrI0ffp0FRYWSpIKCws1Y8YMZWdnKzw83ObBfEOGDFFRUZH+8Y9/2AShOXPm6OjRo+rbt698fHyq/2AAAHCDu64HCtvb2+tf//qXRowYoSlTpmjNmjXy8PDQ999/r6ysLIWFhVmf4msxdepUDR06VAsXLtTmzZvl6+urXbt2KT09Xd27d9fQoUNt6p999lnt2LFD//73v5WYmKiAgADt379fqampatOmjcaNG2dTHxkZqS1btighIUH9+vVT+/btdeTIER06dEheXl6aMmVKjR8XAABuRNf1lRpJatu2rVavXq3+/fvr119/VUJCgpo3b67p06db3//0e97e3tY3ZmdmZmrLli1q3LixnnvuOc2bN0+OjrY57+abb9bKlSs1fPhwFRYWKj4+Xvb29oqKitIHH3xgnVll4eTkpCVLlmjs2LFydnZWfHy8cnNzFR4erpUrV5b54D8AAHB17Mxmc9XmCuOaudop3cOil1dzj1CXfDQ7otamdCfOjrrm+8W1Exy9mCndqHMMO6UbAADAglADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMwbG2O1Ad/v3vf2vixIllLh8zZoyeffZZ69d79+7V/PnztXfvXuXl5cnPz0+PPfaYBgwYUOr6R44c0dy5c5WYmKhz587Jx8dHYWFhioiIkL19yVx46tQpzZ8/XwkJCUpPT5enp6ceeOABPfHEE3Jycrr6bxgAAJRgiFBz4MABSVK3bt3k6upaYvmdd95p/e+EhAT99a9/VXFxsTp06CBnZ2dt375dEyZMUHJysk34kaSDBw8qIiJCOTk5at++ve666y7t2LFDL730kn766Se9/vrrNvVpaWkKDw9XWlqaAgIC1KZNG+3atUuxsbH67rvv9N5776levXo1cBQAALixGSLU7N+/X5L08ssvq1mzZmXW5efn6/nnn5ckvffee+rcubMk6bffftPw4cO1cOFC9e3bV4GBgZIks9ms6Oho5eTkaPbs2Ro4cKAkKTMzU5GRkVq/fr369u2r/v37W/cxbdo0paWlafz48Ro7dqwkKS8vT08++aS+/fZbxcXFadSoUdV/EAAAuMEZYkzNwYMH5ebmVm6gkaR169YpIyNDAwYMsAYaSfLx8dGECRMkSXFxcdb2hIQEJSUlqWPHjtZAI0murq6aNm1aifqUlBRt2bJFPj4+GjNmjLXdZDJp1qxZcnBw0LJly67qewUAAKW77kNNamqqsrOz1aZNmyvWbtu2TZLUu3fvEst69uwpBwcHbd26tUR9nz59StS3b99eTZs2VWJionJyciRJ33zzjcxms3r27FlirE3z5s0VEBCg48ePKzk5ueLfIAAAqJDrPtRYxtM0bdpUM2fOVN++fXXXXXepf//+mj9/vi5evGit/eWXXyRJrVu3LrEdFxcXeXh4KDMzU2fOnJEka/gorV6SfH19VVxcrMOHD9vUt2rVqtT6Fi1aSJIOHTpU6e8TAACU77oPNZbxNJ988ok+++wz+fn5KSgoSKdOnVJsbKxGjBih/Px8SVJ6erokyd3dvdRtWdotoeb06dNVqvfw8KhQPQAAqD7XfaixXKm57777FB8frwULFmjZsmX67LPPdMcdd2j37t2KiYmRJF24cEGS1KBBg1K3ZWnPy8u7JvUAAKD6XPezn2JjY5WamiofHx+bZ8DceuuteuWVV/Tggw9q1apVeu655+Tg4CCz2Sw7O7tyt1lcXCxJcnBwkKQaq6+opk1dKlWPG4+7e6Pa7gIMinML15PrPtTUr19ffn5+pS678847dcstt+jkyZM6evSonJ2dlZ2drYsXL6p+/fol6i23qRo2bChJcnZ2tmmvrnqTyVSh780iIyNHxcXmSq1jwQfSjSE9/fw13yfn1o2hNs4toDzlffZc97efrsTNzU3S5VtDlrEulrE1f/THMTeW+rLGwFS1vqwxNwAAoOqu61CTk5OjKVOm6Omnn1ZhYWGpNceOHZMk3XLLLdZZSZbZSn/c1unTp+Xq6moNQpb60qZgm81mpaSkyMHBQS1btrxi/e/3W9ZsKgAAUHXXdahp2LChvvzyS23YsEE7d+4ssfzrr7/W2bNn1bp1a3l4eCgkJESStGnTphK1mzdvVlFRkXr06GFts9R/9dVXJep37dqlzMxMBQcHy8XFxaY+Pj6+xLiZEydO6MCBA/Ly8irzdhkAAKi66zrU2NnZKSwsTJI0c+ZMnTp1yrrst99+04wZMyRJf/vb3yRJ/fv3V9OmTbV27Vp9/fXX1trU1FS98cYbsrOzU2RkpLW9Y8eOatWqlRISEvTxxx9b2zMzMzV9+nRJ0siRI63t3t7eCgkJUUpKiubMmWNtz8vL0+TJk1VUVGRTDwAAqo+d2Wyu2gjUOiI/P1+jRo1SYmKiTCaTgoODJUk7duxQQUGBRo0aZfMG76+++kpPP/20ioqK1KFDBzVs2FDfffedLly4oGeffdbm9QaStGfPHo0YMUJ5eXkKCgqSh4eHvv/+e2VlZSksLEwzZ860qU9NTdXQoUOVnp6u1q1by9fXV7t27VJ6erq6d++uBQsWyNGxcuOzr3ag8LDo5VVaF9eHj2ZH1NpA4cTZUdd8v7h2gqMXM1AYdU55A4Wv+1AjSQUFBXr//fe1fv16HT16VE5OTgoICNDw4cPVr1+/EvW7du3S/Pnz9dNPP8lsNsvPz0+RkZG67777St1+cnKyYmNjrUHptttu05AhQzR48GDrNO7fO3nypGJjY7V161adP39e3t7eGjhwoEaMGFHqrKsrIdSgPIQa1BRCDeoiw4caoyPUoDyEGtQUQg3qoht6SjcAALgxEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhEGoAAIAhONZ2BwAA+L2bGtdXfSen2u4GatDFggJlZ12s9u0SagAAdUp9JydFLh1f291ADXp/5BxJ1R9quP0EAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVADAAAMgVBTg7799ls99thj6tSpk9q3b6/hw4dr69attd0tAAAMiVBTQz755BONHDlSu3fvVtu2bdWuXTvt3r1bTzzxhFatWlXb3QMAwHB4S3cNOHXqlKZOnapGjRrpo48+UuvWrSVJe/bs0ciRIzVr1iyFhoaqWbNmtdxTAACMgys1NWD58uUqKChQZGSkNdBIUtu2bfXEE0/o4sWLXK0BAKCaEWpqwLZt2yRJffr0KbHM0sbYGgAAqhehppqZzWYlJyfL3t5eLVq0KLH89ttvl729vZKTk2U2m2uhhwAAGBNjaqpZVlaWCgoK5OrqKicnpxLLHR0d1aRJE2VkZCg3N1cuLi5X3Ka9vd1V9cmtScOrWh9139WeI1XldFPTWtkvrp3aOrfcXFxrZb+4dmri3LIzc7mgWp08eVKhoaHy8vLS5s2bS63p1auXjh8/rq1btzJYGACAasLtp2pmb1/xQ0qeBACg+hBqqpnJZJIkXbx4scya/Px8m1oAAHD1CDXVzMXFRSaTSWfPnlVhYWGJ5YWFhTp79qzq16+vm266qRZ6CACAMRFqqpmdnZ38/PxUVFSko0ePllh+5MgRFRcX2zy/BgAAXD1CTQ0ICQmRJG3atKnEMktbjx49rmmfAAAwOkJNDXjooYdUv359vfvuu/r555+t7Xv37tXixYvVoEEDDRs2rBZ7CACA8TClu4YsX75cM2bMUL169dSpUydJ0o4dO1RYWKhXX31VAwcOrOUeAgBgLISaGhQfH6/Fixdr//79cnJykr+/v/72t7+pS5cutd01AAAMh1CD64bZbJadXe083RTVg5/hjYGfM2oLY2oMbMeOHfL39y/1T2BgoDp37qzhw4dr1apVKioqqvB2P/nkE/n7++sf//hHDfbe1t69exUWFnbN9ncjKO/8KO3PsWPHqryvoqIiLV++XC+//LJN+9y5c+Xv76+33377ar+dSuvVq5f8/f2VlpZ2zfd9Lf3lL39RVFTUNdtfdfyunj17VjExMXrwwQd1zz336K677lJoaKieeeYZbdmypdR1jPTzjIyMlL+/v3bs2FHbXbnu8O6nG4DJZFLv3r1t2goLC5WZmanExER9//33SkhIUGxsbC318MqGDh2qS5cu1XY3DKm086Osuqr6z3/+oxkzZujBBx+s8jZQeSdPntQvv/xyTf+H4Gp/V3/++WeNGjVKWVlZ8vLy0t13360GDRroxIkT+u9//6svvvhCAwYM0OzZsyv1BHfcGAg1N4AmTZro9ddfL3XZgQMH9Oijj2rDhg368ssv1bdv3ytur2/fvgoKCrqmDw8sLi6+Zvu60ZR3flSXsn5+ERERuv/+++XqyssLa8LWrVslSd27d79m+7ya39XCwkKNHz9e2dnZeumll/Twww/bBJeDBw/qr3/9q9avX6/AwEBFRkZWQ49hJMTcG9ydd95p/b+4jRs3VmidRo0aqWXLlnJ3d6/JruEG4OrqqpYtW6pJkya13RVD2rp1q7y9vXX77bfXdlcqJDExUceOHVPXrl01ePDgEldi7rjjDk2dOlWS9PHHH9dGF1HHEWqgW2+9VZKUmZlpbevVq5c6deqkAwcOaODAgQoMDFTv3r118ODBEmNqli9fLn9/f7344oulbj8+Pt4688viwoULWrx4scLCwtShQwcFBgaqW7dueuqpp7Rnzx5rnWVfljE//v7+6tWrl832Dx8+rOeff1733nuvAgMD1atXL7300kvKyMio8DHw9/fXQw89pO3bt6tfv3666667dN999+nMmTPWmnXr1mnYsGFq37692rZtqwEDBmjRokXWd3n90a5du/Tkk0+qc+fO1n5Nmzat1Hv+/v7+CgsLU2Zmpv75z3+qW7duuvvuuzV48GAlJCRIkpKSkjR69GgFBwera9euGjdunI4fP17h77E6Wc6P/Px8vfnmm+rVq5f1e3zzzTeVl5dnrR0+fLiio6MlSWvXrpW/v7/mzp0rqfQxNS+88IL8/f21c+dOjRkzRm3btlXXrl31f//3f9aa6viZW+Tn52vOnDnq06ePAgMDFRoaqlmzZiknJ6fU+oqeB5YxS6+//rr1CkNwcLDuuecejRkzRr/99psk6csvv9QjjzyioKAg9e7dW6+88oouXLhQYr9ZWVl67bXXrOdn586d9fTTT+vgwYOl9vPSpUvavn17ias0aWlp+te//qX7779f7dq101133aXevXtr6tSpOnXqlE2t5eezadMmrV+/XgMGDFDbtm3Vu3dvzZ49W1lZWdbaivyuXonl51feIOOuXbvqL3/5i7p161bq8sr8PM+dO6eYmBgNGjRI7du3V2BgoLp3767nn39eKSkppR6L//73v3rxxRd19913q1OnTlqwYIG1Ji0tTVOnTlXPnj0VGBioe++9Vy+88IJSU1NL7evhw4f197//Xd26dVO7du00cuRI7d+//4rH6fcq8vvyyy+/2Py+hISEKDo6WocPHy51m2fPntXs2bPVv39/BQYGqmPHjnr88ce1bdu2Mvd/+PBhrVq1ynqOhIaGas6cOSoqKlJ+fr5ee+019ejRQ+3atdNDDz2kL7/8slLfZ0URaqDk5GRJkqenp017QUGBRo8erfz8fHXv3l2Ojo5q2bJlifXvv/9+1atXT5s2bVJBQUGJ5Z999pkk6YEHHpB0+UMnIiJCr732mk6dOqV77rlH3bp1k52dnb788ksNGzZMe/fulST5+PhowIAB1g+5AQMGqE+fPtZtf/PNN3r44Yf16aefqmnTpurVq5ecnJwUFxenhx9+uMwPk9KcPn1aY8eOlbOzs7p166abbrpJbm5uKi4u1nPPPafo6Gj9/PPPateunUJCQnT69Gm9+eabGjZsmLKzs222tXz5ckVERGjTpk267bbb1KtXLzk6OmrFihUaNGiQ9u3bV2L/2dnZCg8P1xdffKGgoCD5+vpqz549Gj16tFavXq3w8HAdOXJEXbp0kZOTkzZu3KhHH3203Jen1qTi4mI98cQTWrp0qby8vNStWzedOXNGixYt0t///ndrXdeuXdWuXTtJkre3twYMGCB/f/8rbn/y5MnavXu3unfvLmdnZ915552SqvdnLkl/+9vftGjRInl5ealr167KysrShx9+qKioKJtbKVU5D6T/DZxNTk5Wly5d1KhRI8XHx2vEiBF677339NRTT0mSunXrpszMTC1dulQvvPCCzTZOnDihhx9+WIsXL1ZhYaG6d++u22+/XRs3btTgwYMVHx9fYr+JiYnKzc21CTXJyckaOHCgPvjgAzk4OCgkJETBwcHKzMzUypUrNWTIkFL/8V+zZo0mTJigoqIihYaGqqCgQEuWLNGjjz6qc+fOSbry72pFWM6Lb775RgsXLiy1Lw0aNNAbb7xR5kSFiv48z5w5o4cfflgLFixQXl6eunbtqk6dOunixYv69NNPFRYWppMnT5bY/ltvvaUvvvhCXbt2lZubm/z8/CRJ+/fv16BBg7Ry5UrVr19fPXv2lLu7u9auXauHHnrI5n/WJGnPnj0KDw/X55//f3t3HldF1T9w/AMIiitSroQbMCACLihauYQLaq6ZSiZk+pSJifY8Ymo9FpW4VAaPmhrmUqYpWUiaVgTuS4pABimIioKpoIKxynZ+f/Cbieu9ICCunffr5Qvv3DPLmTMz98yZ7znzA82aNaNXr16cOXOG8ePHaxXeqijvfPnll18YNWqUdr7069ePxo0bExYWxvPPP689olRduHCBESNGsGbNGvLz87UA7MOHD/PKK6+wfPlyg+tfvHgx7777Lg0bNqR79+5cv36dFStWsHDhQiZNmsTXX3+NnZ0dDg4OxMfHM23aNPbu3VvlfN6WkB5ZR44cEYqiCHd393LT/Prrr6JDhw5CURRx6NAhbbq7u7tQFEWMGTNGFBQUCCGEKC4uFkII8e233wpFUcRbb72lpffx8RGKoojIyEid5efl5YlOnToJV1dXkZ+fL4QQYvXq1UJRFOHr6ysKCwu1tDdv3hS+vr5CURTx9ttv6yynffv2QlEUnWnXrl0T3bp1E46OjuLnn3/WppeUlIgVK1YIRVGEp6dnpfaVoihCURQxbdo0UVJSopPfL774QiiKIjw8PERKSoo2T1ZWlpg8ebJQFEW88cYb2vT4+Hjh4OAgOnbsKA4ePKhNLy4uFsuWLdPK5ObNm3rrHz58uMjIyNDyoe4PRVGEv7+/KCoqnXvJLQAAG7ZJREFUEkIIkZ2dLTw8PISiKCI8PLxSebxVZY6P8qjHh7u7uzhz5ow2PSEhQTg7OwtFUURSUpI2fdu2bUJRFDF79myd5SxdulQoiiI+/fRTbdrs2bOFoijC1dVV/Pnnn0KIv8uiJstczcPTTz8tEhIStOkXLlwQnTp1EoqiiKioKG16VY8Ddf8qiiLmzJmjU3bquhVFETt27NDmOX36tHB0dBQODg7acSCEEOPGjROKooiPPvpIW44QQhw4cEA4OzsLV1dXcfXqVZ38LV68WDg5OYnc3Fxt2quvvioURRHr16/XSXv16lXRv39/oSiKCAsL06ar5aMoili0aJF2buTl5WnLeu+993SWZehcrYo5c+Zo63RychITJ04UK1asEMeOHdOuRYZUtTz9/f2FoihiwYIFWr6EKC3PF154QSiKIlasWKG3L9q3by/i4+O16cXFxeLmzZuiX79+QlEUsWHDBp3tCg0NFfb29jrnfHFxsRg6dKheWeTn54vXX39dy/+RI0duu78qOl+uXLkiOnbsKBwcHMS2bdt05vvmm2+Evb29cHV1Fenp6UKI0vPoueee08q17P7+7bffhJubm1AURezdu1dv/e3btxf79+/XpkdERGj56N+/v7h06ZL23SeffCIURRE+Pj63zV9VyZaaf4CMjAz8/Px0/k2fPp3hw4fj7e1NYWEhXl5eBgcFHDduHKampgAV9jRQW2F27typMz0yMpLc3FwGDhxI7dq1gdI7rT59+jBz5kxq1fo7Vt3MzIxRo0YBGLxDutXWrVu5ceMGXl5eOgHORkZG+Pj44OTkRExMDDExMbddlsrb21u701Tzu379egAWLVqkPaqD0jeyf/zxxzRo0IBdu3bx559/ArBhwwZKSkrw8fHhqaee0tIbGxszbdo03NzcuHjxot6+Avj3v/+NhYWFlo/BgwcDpT2P/Pz8MDExAaBevXraO8bOnz9f6fwZcvHixdt25w4ICDA4r4+PD+3atdM+K4pCt27dgL9bAKtrwIABWuuhWhZ3o8xff/11nRfMWltb4+HhAZQ+8lNV9ThQ1apVi7lz5+qUnfruNzc3N4YMGaKltbW1xcbGhpKSEq3FKTY2luPHj9OhQwdmzpypLQdKW3fGjx9PVlYWW7du1Vnv/v376datG+bm5tq0li1b4uHhgbe3t07axx57TGtVMXTuKYrCrFmztHOjTp06LFy4EFNTU0JDQw220FbXBx98gK+vL+bm5hQUFHDw4EGCgoIYP3483bt3580336ywJaOy5dm4cWN69eqFr6+vzuOu+vXrM3ToUMDwvnB1dcXR0VH7bGxsTHh4OCkpKQwYMAAvLy+d9CNHjsTDw4OLFy9qcYvR0dEkJibSuXNnJkyYoKWtXbs2AQEB1KlTp1L7qixD50tISAh5eXmMGTNGbxT70aNH89xzz5GVlcWWLVsAOHbsGPHx8djY2PD2229r134AFxcXrQVxzZo1euvv378/PXv21D737dtX6zE5depUmjdvrn03cOBAgGq1SN2OrNT8A+Tm5rJ9+3adf7t37+bGjRu4u7uzbNky5s2bZ3BeBweHSq2jb9++NGzYkIiICJ3HIeoPt1rpAfDy8iI4OJjWrVtr0/766y+ioqK0ptDKXCTVMRzU11DcSj3Bjh07Vqk8gH5+L126xMWLF2nevLn2CKWsBg0a0Lt3b4QQ2nrUv2qF5Fbqj5ih7erYsaPOZzWAtnXr1tSrV0/nO7X32Z0+fqpbty7Dhg2r8J+Tk5PBeV1cXPSmqQHkhuJCqsLQI6q7UeaGylW9AGdlZQHVOw5U7dq10+spqJar+oigrFvLVc2zm5ubwVgTtXJ79OhRbdrly5dJTEzUi6fx9/dn2bJlOjcoaWlp7N27V4vNMdQde/DgwXo3NY899hidO3cmNzdXe1xcE2rVqsW0adM4cOAAH3/8Mc899xxWVlYA5OTkEBYWxtChQ4mIiDA4f2XKE2D69Ol8/vnn1K9fX5t2/fp1Dh8+TFRUFGB4Xxi6Jt7uuLy1jNRjRJ1eVqNGjejatavB5VTE0Plyu2vRs88+q5NO/evh4aFTeVYNGjQIExMToqOj9cY269Spk1569Qbt1uO8QYMGwJ1fuwyRXbr/AaysrIiMjKzWvI0aNapUOjMzMwYNGkRISAj79u1jwIABZGdns3fvXlq0aIGbm5tO+rS0NDZu3Mivv/7KuXPntOfyVRmFVL2LKhuAXFG62zE2Ntb78UlLSwPQLqqGqHftalDx7ea5Nb3KyMhIb3+r+0O9OBj67k7dSZduQ9361YvhnXbDN5Tnmi5zMJwHtQVRvXBX5zhQGTqHqlKual7WrVvHunXryl1/2QB09ebA0I/myZMn2bRpEydOnODChQtaULe6XmFgkPmyNyBlqZUFdf/UpPr162uVaoDU1FT27NnDunXrSE1Nxc/Pj4iICL3hACpTnqoLFy7w1VdfER0dzblz57QYnor2haHyVMto/vz5zJ8/v9w8qWWk7q9mzZoZTFfRcVYeQ8dSVa9Ft0tvbm6OpaUl6enp3LhxQ2ffV+U4v5ujTctKjVShqgxuNXz4cEJCQti1axcDBgwgPDycgoICneBBgCNHjjBlyhTy8vJo2bIlbm5utGvXDicnJ2rVqsWUKVMqtT71AtWvX78KB4arbGuToRPN0EWtvO0wMzOr1Dy3plcZGxs/dIOJ3c2Lk6Fl13SZQ+WO8eocB6qyj1irQ60cdurUCWtr63LTlf2B2bdvH1ZWVnqB/cHBwSxZsgQofaQ0YMAAbG1tcXFx4ddffy13ZOfy9pG6Xwzd1VfH6dOnSU9Pp3v37nrLfOKJJ/Dy8mLEiBGMHj2a5ORkIiMjGT16dKW29Vbbt29n9uzZFBcX06ZNG3r37o2NjQ3Ozs5cvnyZd955x+B8hpavltFTTz3FY489Vu461aDi25031dmf1bl+qdtd2WuXoXlUd3qc15QHYyukR0LXrl2xsrJi9+7dFBQUGHz0JITgv//9L3l5ecyfP58xY8boLKMqLUpNmzYlOTmZSZMmVau5trLrACp8RYAa+6BezJo2bUpqaiqpqakG73DVZVV08ZMMuxdlXt56oWrHQU1RH+f16dOHqVOn3jZ9YWEhhw4d0lo4ym5fYGAgFhYWrF69Wu/RYXmvHwD0unqr1PihsvESd2LatGkkJycTGhqqE7dSVoMGDfDw8CA4OFinS3lV5OTk8O6772JsbMzKlSu1GCfVhg0bqrQ8tYxGjhypF7tiiNpCc2v8lSo9Pb1K6y9P06ZNOXfuHKmpqbRq1Urve0PXLij/OM/Ozub69evUqVNH57Hdg+Thui2UHmhGRkYMGzaM3Nxcfv75Zw4fPkz79u2xs7PT0ly/fp2UlBSaNGmiV6EBtDFZbn10YeguRP1Ru7VLomru3Lk8//zz5T57r4yWLVtiZWXFlStXDAafZmVlcfDgQYyNjbUAWfXvjz/+aHCZu3btAtB7JPcoq6kWnXtR5oZU5zioKWXzbOhOevPmzQwdOpRPP/0UKA1CvbUrN5R2LS8pKeHpp5/Wq9CUlJRw+PBh7f+3MrS/09PTOXHiBI0bN6ZDhw7a9DspazUeZuPGjRWmO3fuHPB3y0dVnTlzhpycHDp06KBXoYHyr0Plud1xGRQUxIgRI7QBA9VOGZGRkXplmpeXpxMfdSeqei1S04eHhxt8H+BPP/2EEOKBvnbJSo1Uo9RWmY8++ojCwkK9uxYLCwvq1KnD1atX+e2337TpQgi+/fZbvv76a0A/gExt6iwb6Ofp6Ym5uTlr167VG8jpu+++IzQ0lMTERL3g26pSeyfMmTNH5w4mJyeHWbNmkZ2djYeHh3a35uXlhYmJCStXrtR+KNQ8Ll++nGPHjmFlZYW7u/sdbdfDRO35Vrb8quNelbkhVT0OakqPHj1wcHAgJiaGwMBAioqKtO/++OMPAgMDOX36tBYoum/fPkxNTenRo4fOctSeMdHR0VoMG5Sea++//74WKGwoePPgwYM6I/jm5uYyZ84credk2cclhs7VynrllVeoXbs2W7duJSAgQG8ZhYWFBAcH88svv2BnZ2cwZqgy1JalxMREnXGNiouLWblypTbuT2UDWYcMGUKTJk3YsWOHXoVs//79rFmzhoSEBJydnYHSAPvOnTtz8uRJ/ve//2kVm8LCQt57771qt0DdauzYsdStW5dvvvmG77//Xue7b7/9lrCwMBo0aKBdt93c3HB0dOTMmTMEBAToBErHxcXx4YcfAqWvN3lQycdPUo2ysbHBycmJuLg4TExMdLqrQumzYm9vb1avXs348eNxc3Ojbt26nDx5ktTUVGxsbDh79qxesGWbNm34448/8PLywtbWliVLltC8eXMWLlzIrFmzmDZtGoqi0KZNG86fP09CQgLGxsZ8+OGHPP7443eUJ29vb2JiYti1axfPPvus1k02KiqKjIwMHB0d8ff319I7OTkxd+5cAgICePnll+ncuTPNmjXj1KlTJCcnY2lpSVBQkE5X2/tJ7fJ/Ox4eHlrX2KpSH8NFRkYyZcoU3N3d8fT0rPJy7lWZG1LV46CmGBkZ8cknnzBhwgQ+++wzwsLCcHR0JDs7m6ioKEpKSvD29ta6ZO/bt4+uXbvq9ZZTf0hjYmIYOHAgXbp0oaSkhJiYGG7cuIGtrS1JSUl65x6U7vd58+YREhJCy5YtOX78OFevXuXJJ59k8uTJOmkNnauVZWtry9KlS/Hz8+PLL79k8+bNdOzYkccff5zs7Gx+//13MjMzsba2ZuXKldWOQWvatCnPPvssO3fuZNiwYbi5uVGrVi1OnDhBenp6hfvCEHNzc4KCgnjttdd4//33+eKLL7Czs+Pq1avExsYCpZXhsr2AFi5ciLe3NytXriQ8PBxbW1t+//130tLScHR0rPLIwoY0a9aMxYsX85///IdZs2axdu1aWrduTXJyMqdOnaJu3bp89NFH2uOwssfaxo0biYyMxMXFhYyMDI4fP05xcTFTp07lmWeeueNtu1tkpUaqcSNGjCAuLo4ePXpoz2jLeuONN2jSpAlbt24lOjoaKB2N9I033mDixImMHTuWhIQETp06pQV8vvfee7zzzjskJSWRlpZGZmYmFhYWDB48mDZt2vD5559rPamaNGnCwIEDmTx5crldkavC2NiYwMBAevfuTUhIiLbNbdq0YfLkyXh5eekFzXl7e9O+fXs+//xzYmJiiI+Pp0WLFrz88stMmjSp3F4P94Pa5f92WrduXe1KjYODAzNnzuTLL7/k4MGDNGrUqFqVGuCelLkh1TkOaoqNjQ3btm1j9erV7N69mwMHDtCgQQO6du2Kl5eXVi5qV271tRRlmZiYsGrVKpYvX86ePXvYv38/5ubm2Nvb4+npSc+ePXnyySfZt28fRUVFOoGfnp6eWFpasm7dOvbs2YO1tTWTJk3ipZde0hnLBMo/VyvrmWee4aeffmLTpk0cPHiQs2fPEhsbS7169Wjbti0eHh68+OKL1RrLpawFCxbQrl07fvjhBw4fPoypqSnt2rXDx8eHMWPG0LNnT2JjY7l+/XqlXrjatWtXtm3bxmeffcaBAwfYu3cvjRs3pnfv3kyaNElvHLC2bduydetWPv30U/bs2cPu3btxdHRk0aJFhIWF1UilBkpvRrZu3crq1as5cuQISUlJNG3alDFjxvCvf/2Ltm3b6m1XaGgoq1evJiIigsjISBo2bEjv3r2ZMGGCwfHMHiRGojLhzpIkSdI/zrJly1i+fDkzZsyoVJCyJN1vMqZGkiRJkqRHgqzUSJIkSZL0SJCVGkmSJEmSHgkypkaSJEmSpEeCbKmRJEmSJOmRICs1kiRJkiQ9EmSlRpIkSZKkR4Ks1EiSJN1FFy5c0BluXpKku0dWaiRJku6CwsJCgoKCGDJkCAUFBfd7cyTpH0G+JkGSJOkuuHLlCitXrrzfmyFJ/yiypUaSJEmSpEeCrNRIkiRJkvRIkJUaSZJqzLJly7C3t2fNmjVs2rSJXr164eLiwtChQzl//jwA8fHxzJw5k169euHk5ESPHj2YMmUKhw4dKne5aWlpLFq0iIEDB+Ls7Iyrqyvjxo0jJCSEoqIivfR9+/bF3t6ev/76i507dzJ27Fg6depE9+7d8fX11bYlJSWFmTNn0qNHD5ydnRk+fDhhYWF3vB/mzJlDv379tM9dunTB3t6e1NRURo0ape2j8vTv3x97e3uioqKA0re+29vbExsby+7du7X89OzZE19fX+Li4spdVkpKCu+88w59+/bFycmJ7t2789prr3H48OE7zqckPWhM/P39/e/3RkiS9Gg4evQoR48eJScnhy1btmBhYUHjxo3Jz8/H19eXTZs24evrS0JCArVq1cLGxobc3Fzi4+MJCwsjLy+Pp59+WmeZMTExjB8/niNHjpCbm4udnR2mpqacPHmS3bt3Ex0djYeHB2ZmZto8X3zxBVlZWWRnZ/Pxxx9TXFxMy5YtuXLlCqdPn+bHH3/E2dkZb29vEhMTeeKJJygqKiI1NZXw8HBatWqFg4NDtfdDUlIS2dnZpKWlAdC5c2datmzJsGHDMDExYf/+/WRmZuLp6ak3b3R0NGvXruWJJ55gzpw5GBkZERoaysWLFzEzM2PRokVkZmZiY2PDjRs3iI+PJzQ0lLZt22JnZ6ezrP379/PSSy8RGxtLUVERNjY2FBYWEhcXx7Zt2zAyMsLNza3a+ZSkB46QJEmqIUuXLhWKoghFUURAQIAoKSkRQghx7do1ceTIEWFvby/s7e3FqlWrRGFhoRBCiJKSEhEaGiqcnJyEoigiJCREW15GRoZwc3MTiqKI6dOni4yMDO273377TfTp00coiiL8/Px0tsPd3V3bjuDgYFFUVCSEECIpKUl06tRJKIoiHBwcxMSJE8W1a9eEEEIUFBSI119/XSiKIkaOHHnH+yIlJUXbhuzsbG36tWvXhKOjo1AURZw5c0ZvPn9/f6EoiggKCtKmeXl5acuaNGmSuH79urbNCxYsEIqiiE6dOokrV67orL9Lly7asm7evKl998svv2jfhYeH33FeJelBIR8/SZJU40xNTZkxYwZGRkYAWFpasmLFCoQQeHp68tprr1GrVmnnSyMjI0aOHMnMmTMBWLp0KcXFxQBs3LiRzMxMFEVhyZIlWFhYaOtwcXFhxYoVGBkZsX37dpKSkvS246mnnuLVV1/FxMQEABsbG/r27QuAmZkZgYGBWFpaatv88ssvA5CQkIC4S6/Fs7S0pFevXgD88MMPOt8VFhaya9cuAIYPH643b4sWLVi2bBmNGzfWtnnu3Lm4ubmRm5vLV199paVdu3Yt2dnZjBw5khkzZui0ZPXr10/b38uXL6/ZDErSfSQrNZIk1ThFUahXr572OScnR4sPefHFFw3O4+npiZmZGWlpacTHxwOwd+9eAMaOHatVgspydHTE1dUVIQR79uzR+753795606ysrABwcnKiUaNGOt89/vjjABQXF5OXl3e7bFbbiBEjANixY4fO9AMHDpCRkUHHjh1p27at3nzPP/88devW1Zs+evRoAHbv3q1Ni4yMBGDIkCEGt2HIkCEYGRlx8uRJ0tPTq5cRSXrAyHFqJEmqcU2aNNH5nJKSQlFREaampnpxHypzc3PatWvHqVOnSE5OxsXFheTkZADat29f7rocHR2JiorS0pbVrFkzvWmmpqYAWgtNWWUrTnerpQZKW0oaNmxIcnIycXFxODk5AfD9998Df1d6bqWmu5WiKEDp6MUA2dnZXLp0CYDAwMByx8sxMTGhqKiIc+fO6ZWZJD2MZKVGkqQaV7t2bZ3POTk5QGnFxdi4/AZitRVCTa/+rV+/fqXnKcvc3Lzc+dRHY/eDmZkZgwcPZsuWLezYsQMnJyeys7OJjIzE1NSUwYMHG5yvYcOGBqerrWL5+fkUFhbq7Is//vjjttuTlZVVjVxI0oNHVmokSbrr1B/dvLw8SkpKyq3YZGdnA39XVOrWrctff/2lTa/MPA+LESNGsGXLFnbt2sXs2bOJiIggPz+fvn37GmxFgtJKiyHqPqhfvz6mpqY6lbnDhw+XuzxJetTImBpJku46a2trTExMKCwsJDEx0WCa3Nxczp07B0Dr1q0BtLiSilob1PgbdZ6HhaurK61ateLy5cvExcVpMTDlPXoCDAZDA5w6dQoAW1tboLRFR63InD171uA8xcXFHDp0iPPnz2uB2ZL0sJOVGkmS7rp69erRrVs3AL7++muDaUJCQigsLMTCwoIOHToA0KdPHwC++eYbg4PsxcXFERsbC6A3vs39VrY1qrz4HLUCEx4ezsGDB2nYsKHWO8uQsLAwvWUJIdi6dStQOmifSt13mzdvNris7du3M3HiREaOHElubm4lciRJDz5ZqZEk6Z6YOnUqxsbGbNmyheDgYK2SIoRg27ZtLFmyBIDp06drwbzjxo3D0tKSxMRE/Pz8yMzM1JZ34sQJfH19EUIwaNAgrSL0oCj7OOzPP/80mGbEiBEYGRmxYcMGsrKyGDRokE7X61vFx8fj7+/PzZs3ASgoKGD+/PkcP36cJk2aMG7cOC3tK6+8Qu3atdm+fTuBgYHaPFA6KN/7778PwJgxY2jQoMEd5VWSHhQypkaSpHuie/fuvP322wQEBLBkyRLWrFlDq1atuHTpktaleMKECYwfP16bx9LSkuXLl+Pj48OuXbuIiIjAzs6OnJwcrbdT9+7d+eCDD+5HlipkYWFB8+bNuXz5Ml5eXlhbW7No0SKd3l/W1tZ06dKF48ePAxU/egKws7Nj8+bN7Ny5k9atW3PhwgVu3LhBo0aNCAoK0gmotrW1ZfHixbz55pusWrWKDRs20LZtWzIyMrh48SJQOo6Pn5/fXci9JN0fsqVGkqR7xsvLiy1btjBkyBDtVQfGxsYMHDiQ9evX89Zbb+nN4+rqyvbt23nppZdo0aIFp0+fJjMzk27durFgwQLWr19fbq+g+23p0qU4OzuTn59PSkqK1uW6LLUiY2Vlhaura4XLe+GFF1iyZAlWVlYkJiZSr149PD09+e677+jatate+sGDB7Nt2zZGjx6NhYUFCQkJZGRk4OzszFtvvUVwcHCFLUOS9LAxEndzMAZJkiSpQsuWLWP58uVMnTqVGTNmGEzj7e3N0aNHmTdvHl5eXvd4CyXp4SFbaiRJku6TkpIS7cWSo0aNut+bI0kPPRlTI0mSdA8VFBRw9uxZzM3NWbVqFampqbi7u2NtbX2/N02SHnqyUiNJklSODz74oFIj8t5q3rx5ODo6GvyupKREJyC4Tp06vPnmm9XeRkmS/iYrNZIkSeVITEwkOjq6yvNV9NqBOnXq4OTkRGJiInZ2dsydO5d27drdyWZKkvT/ZKCwJEmSJEmPBBkoLEmSJEnSI0FWaiRJkiRJeiTISo0kSZIkSY8EWamRJEmSJOmRICs1kiRJkiQ9EmSlRpIkSZKkR8L/AWlAHrgMrNIEAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "sns.catplot('room_type', data=abb_vis_df, kind = 'count', height =8, aspect = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 140, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 140, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAArQAAAGDCAYAAADaqYNSAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde9xv5Zz/8de7A5XSQZh2xU6DhNrsLSYyicFEwoTIIX6UGeeZjAxjZ4zRzBhmiCGGHKJoHMrZmNJBqr1rV7tIqKSMFNLuRPX5/bGuW999uw/ffbgP675fz8fjfnzXuq5rXeuzru+99/7s63ut9U1VIUmSJPXVBjMdgCRJkrQuTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0nzUJK9k/x0puMASPJ3ST48ZNsjknxygvrLkzxh/UU3YSzHJPnHaTjPrHmvpNnKhFbSvNYSoN8m2XZU+XlJKsnCdey/kvzxuvQx11XVP1XVS2c6Dkn9ZUIrSXAZ8NyRnSQPBTabuXBmtyQbzXQMM80xkGYXE1pJgk8ALxzYfxHw8cEGSbZM8vEkv0hyRZI3J9mg1f1xkm8nuT7JtUmOb+WntsPPT7IqyXNGnzjJwUnOSHJUO/77SR4/UL8gyYlJfpnkh0leNlB3RJITkhyf5IYk5ybZfaB+tdnhiT4iT3J4kh+1fi5O8owxYnx3kuuAI8Y4/ogkn2ljdEOSi5IsGXUd/93G77Ikrx517CcH9l/Yxvi6JH8/xjKCu4x3nuYR7Rp+leSjSTYZ6PtlbRx/2cZ1QStf2MZro4G2pyR56SRjsHWSL7dYzkqy88DxeyY5p72v5yTZc9R4jPe+btreq18luRh4xFjvmaQ7mdBKEnwXuHuSByXZEDgQGL1O873AlsD9gD+lS4Bf3OreBnwD2BrYobWlqh7b6nevqs2r6vhxzv9I4EfAtsBS4HNJtml1xwE/BRYABwD/lGSfgWP3Bz4LbAN8CvhCko3X7PKhnX+vdo1vBT6ZZLtRMf4YuDfw9nH6eFqLdyvgROAogJb4nwScD2wPPB54bZInje4gya7A+4GDgO1aPNsPc54BBwFPAnYGHgC8ufW9D/AO4Nmt7ytaP8MaawwOpBuvrYEfjpS39+/LwHuAewDvAr6c5B7tuIne16Ut9p3bdbxoDWKU5iUTWknqjMzS/hnwPeCqkYqBJPeNVXVDVV0O/Bvwgtbkd8B9gQVVdUtVnb6G574G+Peq+l1Lei8BnpJkR+DRwBtavyuAD7P6bPLyqjqhqn5HlzRtAjxqDc9PVX22qq6uqjtaDJcCeww0ubqq3ltVt1XVzeN0c3pVfaWqbqcbz5HZ4kcA96yqf6iq31bVj4EP0Y3paAcAJ1XV6VX1W+AtQA15nhFHVdWVVfVLugRzZDnJQcBHqurcqroVeCPwJ2uwTnqsMfh8VZ1dVbcBxwKLWvlTgEur6hOt/aeB7wP7DfG+Pht4e1X9sqqupEuKJU3AhFaSOp8AngcczKjlBnQzpxvTzeiNuII7Zw7/FghwdvsI/CVreO6rqmowabuCbuZuAfDLqrphnPMCXDmyUVV3cOes3xppH/OvSPLrJL8GHkJ33X9wngn838D2TcAm7SP8+wILRvpu/f8d3UznaAtY/ZpuAq4b8jxjxToyliN9//49rKpVre/RM8DjGWsMRsey+VjnGohleyZ/X1cbgzH6kTSKCa0kAVV1Bd3NYfsCnxtVfS13zsKOuA9tFreq/q+qXlZVC4BDgfdnzZ5ssH2SjOr76vazTZItxjpvs+PIRvtof4d2HHQJ1uDNbX801smT3JduxvSVwD2qaitgJV2SPmL0LOmauBK4rKq2GvjZoqr2HaPtz9o1jMS2Kd1H9mtix4HtkbGkvf7+PUxyt9b3VcCNrXii8VqTMVjtXAOxXMXk7+vPxrgGSRMwoZWkO/0/YJ+qunGwsH20/Rng7Um2aAngX9PW2SZ5VpKRJOxXdInPHW3/53TrbidyL+DVSTZO8izgQcBX2sfN3wHekWSTJLu1GAfX9y5O8sw2Q/la4Fa6NcEAK4DnJdkwyZPp1v6O5W4t5l+063kx3Qzt+nI2cEOSN7QbnjZM8pAkY93sdALdx/J7JrkL3c1XGaPdRF6RZIe2jvVNwMja5U8DL06yKMldgX8Czqqqy6vqF3QJ5fNbfC+hW8O6tr4CPCDJ85JslO6GwF2BLw3xvn4GeGOSrdvv1avWIQ5pXjChlaSmqn5UVcvGqX4V3Szej4HT6W7A+kirewRwVpJVdDcpvaatE4UuIftY+6j92eP0fRZwf7qZ4LcDB1TVyMfszwUW0s3qfR5YWlX/M3DsF4Hn0CXSLwCe2dbTArwG2A/4Nd360S+Mc90X060JPpMuAX8ocMY4sa6x9h+Cp9KtL72M7jo/THfD1+i2F9GN9XF0M5Wr6NYY37oGp/wU3U16P6a72e0fW9//A/w98N+t751ZfR3vy4DX0y1DeDBd0rlW2vv3VOBvWn9/Czy1qq5tTSZ6X99Kt8zgsnYdn1jbOKT5Iqsv25IkTackBwMvrarHrMWxRwB/XFXPX99xzRZJNqdLyO9fVZfNdDySZidnaCVJs0qS/ZJs1ta4vhO4ELh8ZqOSNJuZ0EqSZpv9ufOmuPsDB5YfJ0qagEsOJEmS1GvO0EqSJKnXTGglSZLUaxtN3kRz1bbbblsLFy6c6TAkSZImtXz58mur6p5j1ZnQzmMLFy5k2bLxHrkpSZI0eyQZ92ugXXIgSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvmdBKkiSp10xoJUmS1GupqpmOQTMkC1IcOtNRSJKkPqul05NLJlleVUvGqnOGVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNRNaSZIk9ZoJrSRJknptTie0Sd6d5LUD+19P8uGB/X9L8pYkh7f9I5Ic1raPSXJA2/5wkl2nMM5VU9W3JEnSXDenE1rgDGBPgCQbANsCDx6o3xP4RlUdOVEnVfXSqrp4yqJcB0k2mukYJEmSZtJcT2i/A/xJ234wsBK4IcnWSe4KPAjYLclRE3WS5JQkS9r2fyZZluSiJG8daHN5knckWdHqH95mhH+U5OWtzXZJTm1tVibZa+D4d7c+v5XknmOcd9skl7ftg5OcmOR/gW8l2SzJZ5JcnOTzSc4aOU6SJGmum9MJbVVdDdyW5D50s7FnAmfRJblLgAuB365ht29q3yO8G/CnSXYbqPtJVS0CTgOOAQ4AHgWMJL7PA77e2uwOrGjldwOWVdWDgW8DS4eI4+HAAVX1p8BfAb+qql2BvwcWr+E1SZIk9dZ8+Lj6O3TJ7J7Au4Dt2/b1dEsS1tSzkxxCN3bbAbsCF7S6E9vrhcDmVXUD3YzwrUm2As4BPpJkY+ALVTWS0N4BHN+2Pwl8bog4vllVv2zbjwH+A6CqVia5YLyDWuyHALDlEGeRJEma5eb0DG0zso72oXRLDr5LN0O7J12yO7QkOwGHAY+vqt2ALwObDDS5tb3eMbA9sr9RVZ0KPBa4CjgmyQvHOVW119u48z3aZFSbG9ck9t93XHV0VS2pqiVstjY9SJIkzS7zIaH9DvBU4JdVdXub1dyKLqldo4QWuDtdInl9knsDf74mBye5L/DzqvoQ8GG6ZQPQvQ8HtO3nAae37cu5c/nASP1YzgCe3c6xK13yLkmSNC/MhyUHF9I93eBTo8o2r6prkwzdUVWdn+Q84PvAlaz5koW9gdcn+R2wChiZob0R2CPJm4FrgOe08ncCn2nLBL48Qb/vBz6W5OIW20V0SyokSZLmvFTV5K00qyXZENi4qm5JsjPwP8ADq2rCG96yIMWh0xKiJEmao2rp9OSSSZa3G/P/wHyYoZ0PNgNObjebBfiryZJZSZKkucKEdg5oT1PwubOSJGlemg83hUmSJGkOM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNZ9yMI8tXrCYZUuXzXQYkiRJ68QZWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvpapmOgbNkCxIcehMRyFJktaXWjp387oky6tqyVh1ztBKkiSp10xoJUmS1GsmtJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqRem7KENsntSVYkOT/JuUn2XMPjj0hyWNvepfV1XpKd1zKe3/c3Rt2bklyU5IJ2nke28tcm2WxtzjeTkvzdTMcgSZI0XaZyhvbmqlpUVbsDbwTesQ59PR04oaoeVlU/mqxxOkNdW5I/AZ4KPLyqdgOeAFzZql8L9C6hBUxoJUnSvDFdSw7uDvxqZCfJ65Oc02ZE3zpQ/qYkP0hyOvDAVrYvXWL5l0lObmV/nWRl+3ltK1uY5JIkHwdWAjuO1d8YtgOurapbAarq2qq6OsmrgQXAyQPnXTUQ6wFJjkmyRZLLkmzcyu/e9h+a5OyB9guTXNi2Fyf5dpLlSb6eZLtW/uokF7dxOa6V7ZHkzDY7/Z0kI+NycJLPJflakkuT/EsrPxLYtM00H7s2b5YkSVKfbDSFfW+aZAWwCV3SuA9AkicC9wf2AAKcmOSxwI3AgcCiFte5wPKq+kqSDwCrquqdSRYDLwYe2Y4/K8m36RLm+wMvqqrvtnZ/0N8YcX4DeEuSHwD/AxxfVd+uqvck+WvgcVV17XgXWVU3JDkFeArwhXbOz1XVhUnukmSnqroMeA5wfEt83wvsX1W/SPIc4O3AS4DDgZ2q6tYkW7VTfB/Yq6puS/IE4J+Av2h1i4CHAbcClyR5b1UdnuSVVbVo4rdHkiRpbpiOJQe7AE8GPp4kwBPbz3l0SeYudInoXsDnq+qmqvoNcOI4/T6mtbuxqlYBn2vHAlxRVd9t20P11/pYDBwC/IIu6Tx4Da/1w3RJNu31o237M3SJLO31eLqZ4ocA32wJ/5uBHVqbC4BjkzwfuK2VbQl8NslK4N3AgwfO+62qur6qbgEuBu47WaBJDkmyLMkyblrDq5QkSZqFpmXJQVWdCWwL3JNuVvUdLdldVFV/XFX/tZ5OdeNkDZLs2D6OX5Hk5S2+26vqlKpaCrySO2dA/+BSBrY3+X1h1RnAwiR7AxtW1cpWdTzw7CQP6JrVpXTXf9HA9T+0qp7Y2j8FeB/wcOCcJBsBbwNOrqqHAPsNnpduZnbE7Qwx415VR1fVkqpa0svVwZIkSaNMS0KbZBdgQ+A64OvAS5Js3uq2T3Iv4FTg6Uk2TbIFXfI2ltNau82S3A14Risbbcz+qurKgWTyA0kemOT+A8ctAq5o2zcAWwzU/TzJg9oNZ88Ydb6PA5/iztlZ2g1stwN/T5fcAlwC3LPdjEaSjZM8uPW5Y1WdDLyBbmZ28/Z6VTv24HHGZLTfjazplSRJmuumYw0tdLOSL6qq24FvJHkQcGa3AoFVwPOr6twkxwPnA9cA54zVaWt3DDByw9WHq+q8JAvHaDdpf3RJ43vbmtXbgB/SLT8AOBr4WpKrq+pxdGtcv0S3NGFZO3bEscA/Ap8e1f/xwL8CO7W4fpvkAOA9Sbakew/+HfgB8MlWFuA9VfXrdrPXx5K8GfjyONcw2tHABUnOraqDhjxGkiSpl1JVk7fSpFqSun9VvWCmYxlWFqQ4dKajkCRJ60stnbt5XZLlVbVkrLqpnKGdN5K8F/hzYN+ZjkWSJGm+MaFdD6rqVTMdgyRJ0nw1XV+sIEmSJE0JE1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqRe8ykH89jiBYtZtnTZTIchSZK0TpyhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPVaqmqmY9AMyYIUh850FJKksdRS/32WBiVZXlVLxqpzhlaSJEm9ZkIrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYR2CiRZNWr/4CRHrWEfeyf50vqNTJIkae4xoZ2Fkmw00zFIkiT1hYnTNEuyH/Bm4C7AdcBBVfXzJEcAOwP3A34CfHDgmLsB7wUeAmwMHFFVX0xyMPB04G7A/YF3tn5fANwK7FtVv5yeK5MkSZoZztBOjU2TrBj5Af5hoO504FFV9TDgOOBvB+p2BZ5QVc8d1d+bgP+tqj2AxwH/2pJc6JLcZwKPAN4O3NT6PhN44ejAkhySZFmSZdy07hcqSZI005yhnRo3V9WikZ02k7qk7e4AHJ9kO7rZ1MsGjjuxqm4eo78nAk9Lcljb3wS4T9s+uapuAG5Icj1wUiu/ENhtdEdVdTRwNEAWpNbi2iRJkmYVZ2in33uBo6rqocChdMnpiBvHOSbAX1TVovZzn6r6Xqu7daDdHQP7d+B/WCRJ0jxgQjv9tgSuatsvGvKYrwOvShKAJA+bisAkSZL6yIR2+h0BfDbJcuDaIY95G93NYBckuajtS5IkCUiVyyjnqyxIcehMRyFJGkst9d9naVCS5VW1ZKw6Z2glSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF7zm6TmscULFrNs6bKZDkOSJGmdOEMrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6rVU1UzHoBmSBSkOnekoJKk/aqn/ZkozJcnyqloyVp0ztJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqdc2GrZhknsBm4zsV9VPpiQiSZIkaQ1MOkOb5GlJLgUuA74NXA58dYrjmnWS3J5kRZLzk5ybZM+17OeYJAes5bHfmaT+lCRjPnBYkiRprhpmycHbgEcBP6iqnYDHA9+d0qhmp5uralFV7Q68EXjHdAdQVWuVREuSJM1lwyS0v6uq64ANkmxQVScD830W8O7ArwCS7J3kSyMVSY5KcnDbPjLJxUkuSPLOgeMfm+Q7SX48Mlub5H1Jnta2P5/kI237JUne3rZXDZznDUkubDPGRw4Gl2SDNhP8j1Ny9ZIkSbPIMGtof51kc+A04Ngk1wA3Tm1Ys9KmSVbQrSPeDthnosZJ7gE8A9ilqirJVgPV2wGPAXYBTgROoBvfvdr+9q0Nrey4UX3/ObA/8MiquinJNgPVGwHHAiur6u1jxHUIcAgAW05+0ZIkSbPdMDO0+wM3Aa8Fvgb8CNhvKoOapUaWHOwCPBn4eJJM0P564Bbgv5I8k24MR3yhqu6oqouBe7ey04C9kuwKXAz8PMl2wJ8Ao9fOPgH4aFXdBFBVvxyo+yDjJLOt7dFVtaSqlrDZMJctSZI0u02a0FbVjcCOwN5V9THgw8Bvpzqw2ayqzgS2Be4J3Mbq47hJa3MbsAfd7OtT6f4zMOLWge209lcBW9Ely6fSJbjPBlZV1Q1rEN53gMcl2WTSlpIkSXPAME85eBldUvbBVrQ98IWpDGq2S7ILsCFwHXAFsGuSu7ZlBY9vbTYHtqyqrwCvA3Yfouvv0s2EjyS0h7XX0b4JvDjJZu1cg0sO/gv4CvCZJEM/lk2SJKmvhkl4XkE303gWQFVd2p5JO9+MrKGFblb1RVV1O3Blks8AK+kebXZea7MF8MU2Uxrgr4c4x2nAE6vqh0muALZhjIS2qr6WZBGwLMlv6RLYvxuof1eSLYFPJDmoqu5YmwuWJEnqg1TVxA2Ss6rqkUnOq6qHtVm/c6tqt+kJUVMlC1IcOtNRSFJ/1NKJ/82UNHWSLK+qMZ+0NcxNYd9O8nd0M5R/BnwWOGl9BihJkiStrWES2jcAvwAuBA6l+3j7zVMZlCRJkjSsCdfQJtkQuKg9qupD0xOSJEmSNLwJZ2jbTU+XJLnPNMUjSZIkrZFhnnKwNXBRkrMZ+IawqnralEUlSZIkDWmYhPbvpzwKSZIkaS1N+tguzV1LliypZcuWzXQYkiRJk1qnx3YleVSSc5KsSvLbJLcn+c36D1OSJElac8M8tuso4LnApcCmwEuB901lUJIkSdKwhkloqaofAhtW1e1V9VHgyVMbliRJkjScYW4KuynJXYAVSf4F+BlDJsKSJEnSVBsmMX1Ba/dKusd27Qj8xVQGJUmSJA3LpxzMY1mQ4tCZjkJSH9RS/62QNLPW6SkHkiRJ0mxmQitJkqReM6GVJElSr437lIMkJwHjLpqqqqdNSUSSJEnSGpjosV3vbK/PBP4I+GTbfy7w86kMSpIkSRrWuAltVX0bIMm/jbqj7KQky6Y8MkmSJGkIw6yhvVuS+43sJNkJuNvUhSRJkiQNb5hvCnsdcEqSHwMB7gscMqVRSZIkSUOadIa2qr4G3B94DfBq4IFV9Y2pDizJwiQrR5UdkeSwqT73wPn2T/KFgf03JvnhwP5+SU5cwz4XJnneOHUbJHlPkpVJLkxyTpsRJ8lXkmw1xjHTOiaSJEmzzaQztEk2Bg4FHtuKTknywar63ZRGNgOShO7b0+5oRd8BPjjQ5E+A3yS5V1VdA+zZ2qyJhcDzgE+NUfccYAGwW1XdkWQHuq8bpqr2XcPzSJIkzQvDrKH9T2Ax8P72s7iVzagkpyT5jyQr2ozmHq38iCSfSHJmkkuTvGzgmNe3Wc8Lkry1lS1MckmSjwMrgR1H2lfVL+gS2D9uRdsD/02XyNJez0hyzyT/3fo+J8mjW99/2uJbkeS8JFsARwJ7tbLXjbqs7YCfjSTUVfXTqvpV6+vyJNu27Tcl+UGS04EHDlzfzkm+lmR5ktOS7LIehlqSJGlWG2YN7SOqaveB/f9Ncv5UBbSGNquqRUkeC3wEeEgr3w14FN3Na+cl+XKruz+wB91a4BPbcT9p5S+qqu+OcY4zgD2TbAhcCnwXeFKSLwG7A+e0c7+7qk5Pch/g68CDgMOAV1TVGUk2B24BDgcOq6qnjnGuzwCnJ9kL+Bbwyao6b7BBksXAgcAiuvfvXGB5qz4aeHlVXZrkkXT/AdlnqJGUJEnqqWES2tuT7FxVPwJoTzy4fWrDAsb/UofB8k8DVNWpSe4+sMb0i1V1M3BzkpPpktjHAE8ERhLEzekS2Z8AV4yTzEK3pGBPYEPgTOBs4C3Aw4DvV9UtSZ4A7NqtWADg7i2BPQN4V5Jjgc9V1U8H2vzhhXX1D6RLQvcBvpXkWVX1rYFmewGfr6qbAEbW8Lbz7Ql8duAcdx19jiSHMHJT35bjhiJJktQbwyS0rwdOHvWUgxdPaVSd64CtR5VtA1w2sD866a0JygO8o6oG18SSZCFtneo4zgBeRZfQfqiqbkiyCbA3d66f3QB4VFXdMurYI9vs8L50SxOeNMF5ukCrbgW+Cnw1yc+Bp9PN1k5mA+DXVbVokv6PppvJJQsy7jfBSZIk9cUwTzn4Ft1M5qvpErsHVtXJUx1YVa0CfpZkH4Ak2wBPBk4faPacVvcY4Pqqur6V759kkyT3oEs8z6FbBvCSNpNJku2T3GuIUL5Hd6PWY7hzdncF8HK6ZBfgG3RjQ+t7UXvduaourKp/bjHsAtwAbDHWiZI8PMmCtr0B3dKJK0Y1OxV4epJN25rc/QCq6jfAZUme1Y5Pkt2RJEma42b7Uw5eCLwvybva/ltHlj40tyQ5D9gYeMlA+QXAycC2wNuq6mrg6iQPAs5sH8mvAp7PJMsnqqqSnAVsOXDNZ9J9bD8yQ/vqFucFdGN6Kl3C+9okjwPuAC6im3m9g24Zx/nAMVX17oHT3Qv4UJKRpQJnA0eNiufcJMcD5wPX0CXKIw4C/jPJm9uYHNfaSZIkzVmpmvhT5yQfpkuOPtaKXgDcXlUvneLYJpTkFLqbq5aNKj8CWFVV75yJuPokC1IcOtNRSOqDWuoKJUkzK8nyqloyVl3fn3IgSZKkeW42P+VgQlW19zjlR0xvJJIkSZpJs/kpB5IkSdKkJk1oq+pbSe7Pnd9IdUl7tJQkSZI044aZoYXu624XtvaLklBVH5+yqCRJkqQhDfPYrk8AO9M9e3Vk7WwBJrSSJEmaccPM0C4Bdq3Jnu8lSZIkzYBhEtqVwB8BP5viWDTNFi9YzLKlyyZvKEmSNIuNm9AmOYluacEWwMVJzgZ+fzNYVT1t6sOTJEmSJjbRDO3IN20V3eO6JEmSpFln3IS2qr6dZEPgoqraZRpjkiRJkoa2wUSVVXU7cEmS+0xTPJIkSdIaGeamsK2Bi9oa2htHCl1DK0mSpNkgkz2NK8mfjlVeVd+ekog0bbIgxaEzHYWk2ayW+sRGSbNDkuVVtWSsumG++tbEVZIkSbPWMN8UdgPdkw4A7gJsDNxYVXefysAkSZKkYQwzQ7vFyHaSAPsDj5rKoCRJkqRhTfiUg9Gq8wXgSVMUjyRJkrRGhlly8MyB3Q2AJcAtUxaRJEmStAaGeWzXfgPbtwGX0y07kCRJkmbcMGtoXzwdgUiSJElrY9I1tEl2SPL5JNe0n/9OssN0BLe2kqwatX9wkqMmOeb3bZIckeSwtn1Mkr2HPO9gHxsk+ViSj6TzlSRbtZ+/GqKvU5KM+aw1SZIk3WmYm8I+CpwILGg/J7UyjaM9DeIDdI84e2m7mW7fqvo1sBUwaUIrSZKk4QyT0N6zqj5aVbe1n2OAe05xXFMmyT3bLPM57efRkxxyPfDbduyRSS5OckGSd05wzHuAewAvrKo72rGXJ9kWOBLYOcmKJP/a6t6Q5MIk5yc5cqCfZyU5O8kPkuzV2m6Y5F9b7BckObSV791mdU9I8v0kx7bEWpIkaU4b5qaw65I8H/h0238ucN3UhbRebJpkxcD+NnSzzAD/Aby7qk5Pch/g68CDxuuoql4DkOQewDOAXaqqkmw1ziHPA74H7F1Vt41RfzjwkKpa1Pr9c7qb7B5ZVTcl2Wag7UZVtUeSfYGlwBOA/wdcX1WPSHJX4Iwk32jtHwY8GLgaOAN4NHD6eNcmSZI0FwyT0L4EeC/w7rZ/BjDbbxS7eSRhhG5tK93jxqBLCncdmLy8e5LNh+jzerrHlf1Xki8BXxqn3bnALsAedGM1mScAH62qmwCq6pcDdZ9rr8uBhW37icBuSQ5o+1sC96ebRT67qn4K0BL6hYxKaJMcAhzy+yMlST3LbyEAAB9CSURBVJJ6bpinHFwBPG0aYpkuGwCPqqrVnqU72afzVXVbkj2AxwMHAK8E9hmj6feBtwCfSfKkqrpoHWK9tb3ezp3vVYBXVdXXBxu2G9duHSgaPGbwOo4GjgbIgtToekmSpL4Z5ikH90tyUpJftKccfDHJ/aYjuCnyDeBVIztJFk3Q9vfaLO6WVfUV4HXA7uO1rarvAH8JfKktaxh0A7DFwP43gRcn2aydZxsm9nXgL5Ns3No/IMndhrkGSZKkuWiYJQefAt5Ht34U4EC69bSPnKqgptirgfcluYDu+k8FXj7EcVsAX0yyCd0s6V9P1LiqTmo3gX1t5IauVn5dkjOSrAS+WlWvb0n1siS/Bb4C/N0EXX+YbinBue2mr18ATx8ifkmSpDkpVRN/6pzkgqrabVTZ+VU17gyl+iELUhw601FIms1qqSuTJM0OSZZX1ZjP6B93hnbgo++vJjkcOA4o4Dl0s4iSJEnSjJtoycFyugR25G6pwbm8At44VUFJkiRJwxo3oa2qnaYzEEmSJGltDHNTGEn2pLsR6fftq+rjUxSTJEmSNLRJE9oknwB2BlbQPdsUuiUHJrSSJEmaccPM0C4Bdq3JHocgSZIkzYBJv1gBWAn80VQHIkmSJK2NiR7bdRLd0oItgIuTnM3AV6tW1Vz6Otx5afGCxSxbumymw5AkSVonEy05eOe0RSFJkiStpYke2/Xt6QxEkiRJWhvDPOXgBrqlB4OuB5YBf1NVP56KwCRJkqRhDPOUg38Hfgp8iu5bww6ke4zXucBHgL2nKjhJkiRpMsM85eBpVfXBqrqhqn5TVUcDT6qq44Gtpzg+SZIkaULDzNDelOTZwAlt/wDglrbts2l7bPnVy8lbM9NhSJoGtdS/riXNXcPM0B4EvAC4Bvh5235+kk2BV05hbJIkSdKkJp2hbTd97TdO9enrNxxJkiRpzUz0xQp/W1X/kuS9jLG0oKpePaWRSZIkSUOYaIb2e+3Vr5KSJEnSrDXRFyuc1F4/BpBks6q6aboCkyRJkoYx6U1hSf4kycXA99v+7kneP+WRSZIkSUMY5ikH/w48CbgOoKrOBx47lUFJkiRJwxomoaWqrhxVdPsUxCJJkiStsWES2iuT7AlUko2THMadN4z1WpLbk6wY+Dl8LfrYu43P6PKFSX6aZINR5SuSPDLJh5Ps2souT7Jt2161ttcjSZI0Hw3zTWEvB/4D2B64CvgG8IqpDGoa3VxVi9axj72BVcB3Bgur6vIkPwH2Ar4NkGQXYIuqOgs4ax3PK0mSJIaYoa2qa6vqoKq6d1Xdq6qeX1XXTUdwMyXJW5Kck2RlkqOTpJW/OsnFSS5IclyShXQJ/+vazOteo7r6NHDgwP6BwHGtr1OSLJkghs2TfCvJuUkuTLL/QN3fJ7kkyelJPt1mzUmyc5KvJVme5LSWQEuSJM1pE32xwlsmOK6q6m1TEM902zTJioH9d1TV8cBRVfUPAEk+ATwVOAk4HNipqm5NslVV/TrJB4BVVfXOMfr/DLAiyauq6jbgOcCzhoztFuAZVfWbthzhu0lOBJYAfwHsDmwMnAssb8ccDby8qi5N8kjg/cA+g50mOQQ4BIAth4xEkiRpFptoycGNY5TdDfh/wD2AuZDQjrfk4HFJ/hbYDNgGuIguob0AODbJF4AvTNZ5Vf08yUrg8Ul+DtxWVSuHjC3APyV5LHAH3ZKPewOPBr5YVbcAtyQ5CboZXWBP4LNtQhngrmPEdDRd4ksW5A++AU6SJKlvJvpihX8b2U6yBfAa4MV0H5n/23jH9V2STehmNpdU1ZVJjgA2adVPoXtk2X7Am5I8dIguR5Yd/LxtD+sg4J7A4qr6XZLLB+IYywbAr9fDmmBJkqRemXANbZJtkvwj3czkRsDDq+oNVXXNtEQ3M0aSxmvbrOcBAO1pBTtW1cnAG+g+sN8cuAHYYoL+PgfsS7fc4Lg1iGNL4JqWzD4OuG8rPwPYL8kmLb6nAlTVb4DLkjyrxZsku6/B+SRJknppojW0/wo8k+7j6YdW1Vx8nNToNbRfq6rDk3wIWAn8H3BOq9sQ+GSSLemWA7ynraE9CTih3bT1qqo6bfAErc2ZwB9V1Y/XILZjgZOSXAgso31TW1Wd09bSXkA363shcH075iDgP5O8mW597XHA+WtwTkmSpN5J1djLKJPcAdwK3AYMNgrdTWF3n/rwNJYkm1fVqiSbAacCh1TVuWvcz4IUh67/+CTNPrXUJfOS+i3J8qoa8wlRE62hHepbxDQjjm5fyrAJ8LG1SWYlSZLmimG+WEGzTFU9b6ZjkCRJmi2chZUkSVKvmdBKkiSp10xoJUmS1GsmtJIkSeo1bwqbxxYvWMyypctmOgxJkqR14gytJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddSVTMdg2ZIFqQ4dKajkLQ+1FL/Lpc0tyVZXlVLxqpzhlaSJEm9ZkIrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6rRcJbZKFSVaOKjsiyWHTHMcpSS5JsqL9nLAWfSxM8rxx6jZI8p4kK5NcmOScJDu1uq8k2WqMY6Z9HCRJkmaTjWY6gNkqSei+Se2OUVUHVdWydeh6IfA84FNj1D0HWADsVlV3JNkBuBGgqvZdh3NKkiTNWb2YoZ1Mmzn9jzZrujLJHq38iCSfSHJmkkuTvGzgmNe3GdALkry1lS1sM7AfB1YCOw55/v2SnJXkvCT/k+TerfxPB2Zzz0uyBXAksFcre92orrYDfjaSRFfVT6vqV62vy5Ns27bflOQHSU4HHjgQx85JvpZkeZLTkuyyVgMqSZLUI3NphnazqlqU5LHAR4CHtPLdgEcBdwPOS/LlVnd/YA8gwIntuJ+08hdV1XfHOc+xSW5u29+sqtcDpwOPqqpK8lLgb4G/AQ4DXlFVZyTZHLgFOBw4rKqeOkbfnwFOT7IX8C3gk1V13mCDJIuBA4FFdO/fucDyVn008PKqujTJI4H3A/uMOv4Q4BAAthznCiVJknqkLwltDVH+aYCqOjXJ3QfWm36xqm4Gbk5yMl0S+xjgicBIsrg5XSL7E+CKCZJZGHvJwQ7A8Um2A+4CXNbKzwDeleRY4HNV9dNuJcM4F9PVP5AuCd0H+FaSZ1XVtwaa7QV8vqpuAkhyYnvdHNgT+OzAOe46xjmOpkt8yYKMN66SJEm90ZeE9jpg61Fl23Bn4gh/mPTWBOUB3lFVHxysSLKQtmZ1Db0XeFdVnZhkb+AIgKo6ss0I7wuckeRJk3VUVbcCXwW+muTnwNPpZmsnswHw66patBbxS5Ik9VYv1tBW1SrgZ0n2AUiyDfBkuo/6Rzyn1T0GuL6qrm/l+yfZJMk9gL2Bc4CvAy9ps5ok2T7JvdYhxC2Bq9r2i0YKk+xcVRdW1T+38+4C3ABsMVYnSR6eZEHb3oBuucQVo5qdCjw9yaZtTe5+AFX1G+CyJM9qxyfJ7utwTZIkSb3QlxlagBcC70vyrrb/1qr60UD9LUnOAzYGXjJQfgFwMrAt8Laquhq4OsmDgDPbx/OrgOcDtw8Rx+Aa2mur6gl0M7KfTfIr4H+BnVr9a5M8DrgDuIhu5vUO4PYk5wPHVNW7B/q+F/ChJCNLBc4Gjho8eVWdm+R44HzgGrpEecRBwH8meXMbh+NaO0mSpDkrVf1fRpnkFLobrZaNKj8CWFVV75yJuGa7LEhx6ExHIWl9qKX9/7tckiaSZHlVLRmrrhdLDiRJkqTx9GnJwbiqau9xyo+Y3kgkSZI03ZyhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6rU5cVOY1s7iBYtZtnT0t/hKkiT1izO0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvpapmOgbNkCxIcehMRyHNDbXUv0slaSolWV5VS8aqc4ZWkiRJvWZCK0mSpF4zoZUkSVKvmdBKkiSp10xoJUmS1GsmtJIkSeo1E1pJkiT1Wu8T2iR/lOS4JD9KsjzJV5I8YAbiOCbJAaPKVg1x3HeGaHN5km3HKN87yZ5rFqkkSdLc0uuENkmAzwOnVNXOVbUYeCNw71HtNpqJ+IZRVeuSkO4NmNBKkqR5rdcJLfA44HdV9YGRgqo6v6pOa7OXpyU5Ebg4ySZJPprkwiTnJXkcQJIvJ9mtbZ+X5C1t+x+SvKz1c0qSE5J8P8mxLZFeI0len+ScJBckeetA+ar2ukGS97dzfLPNNA/O+L4qybkt/l2SLAReDrwuyYokeyV5VpKVSc5Pcuoaj6YkSVIPzdqZyyE9BFg+Qf3DgYdU1WVJ/gaoqnpokl2Ab7SlCacBeyW5ArgNeHQ7di+6hHE74GHAg4GrgTNam9PHON+/Jnnz6MIkTwTuD+wBBDgxyWOrajDpfCawENgVuBfwPeAjA/XXVtXDk/wVcFhVvTTJB4BVVfXOdp4LgSdV1VVJtppgXCRJkuaMvs/QTubsqrqsbT8G+CRAVX0fuAIYSWgfS5ekfhnYPMlmwE5VdclAPz+tqjuAFXSJ51heX1WLRn4Gyp/Yfs4DzgV2oUtwBz0G+GxV3VFV/wecPKr+c+11+QTnPwM4JsnLgA3HapDkkCTLkizjpnF6kSRJ6pG+z9BeBBwwQf2NQ/RxDrAE+DHwTWBb4GWsPvN768D27az5uAV4R1V9cA2PGzQSw7jnr6qXJ3kk8BRgeZLFVXXdqDZHA0cDZEFqHeKRJEmaFfo+Q/u/wF2THDJSkGS3JHuN0fY04KDW5gHAfYBLquq3wJXAs4AzW7vDgPW5BvXrwEuSbN7Ov32Se41qcwbwF20t7b3pbviazA3AFiM7SXauqrOq6i3AL4Ad10v0kiRJs1ivE9qqKuAZwBPaY7suAt4B/N8Yzd8PbNDWmR4PHFxVI7OepwHXVNXNbXuH9rq+4vwG8CngzHb+ExhIRJv/Bn4KXEy3NOJc4PpJuj4JeMbITWF0a3gvTLIS+A5w/vq6BkmSpNkqXU6o2SDJ5lW1Ksk9gLOBR7f1tFNzvgUpDp2q3qX5pZb6d6kkTaUky6tqyVh1fV9DO9d8qT2d4C7A26YymZUkSZorTGhnkarae6ZjkCRJ6pter6GVJEmSTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zacczGOLFyxm2dJlMx2GJEnSOnGGVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrqaqZjkEzJAtSHDrTUUj9Vkv9O1SSpkOS5VW1ZKw6Z2glSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvmdCugySV5JMD+xsl+UWSL7X9pyU5fJxjV7XXhUmeNz0RS5IkzT0mtOvmRuAhSTZt+38GXDVSWVUnVtWRk/SxEDChlSRJWksmtOvuK8BT2vZzgU+PVCQ5OMlRbXunJGcmuTDJPw4cfySwV5IVSV6XZJMkH23tzkvyuHb8l5Ps1rbPS/KWtv0PSV6WZO8kpyQ5Icn3kxybJNNw/ZIkSTPKhHbdHQccmGQTYDfgrHHa/Qfwn1X1UOBnA+WHA6dV1aKqejfwCqBau+cCH2t9n0aX+G4J3AY8uh2/F3Bq234Y8FpgV+B+A20kSZLmLBPadVRVF9AtG3gu3WzteB7NnbO3n5ig3WOAT7a+vw9cATyALqF9bOvny8DmSTYDdqqqS9qxZ1fVT6vqDmBFi2s1SQ5JsizJMm4a6hIlSZJmtY1mOoA54kTgncDewD0maFfrcI5zgCXAj4FvAtsCLwOWD7S5dWD7dsZ4f6vqaOBogCzIusQjSZI0KzhDu358BHhrVV04QZszgAPb9kED5TcAWwzsnzZSn+QBwH2AS6rqt8CVwLOAM1u7w7hzuYEkSdK8ZEK7HrSP+d8zSbPXAK9IciGw/UD5BcDtSc5P8jrg/cAGrd3xwMFVNTLzehpwTVXd3LZ3aK+SJEnzVqr81Hm+yoIUh850FFK/1VL/DpWk6ZBkeVUtGavOGVpJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrfvXtPLZ4wWKWLV0202FIkiStE2doJUmS1GsmtJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNRNaSZIk9ZoJrSRJknrNhFaSJEm9ZkIrSZKkXktVzXQMmiFJbgAumek4ZpFtgWtnOohZxPFYneOxOsfjTo7F6hyP1Tkeq1uX8bhvVd1zrIqN1j4ezQGXVNWSmQ5itkiyzPG4k+OxOsdjdY7HnRyL1Tkeq3M8VjdV4+GSA0mSJPWaCa0kSZJ6zYR2fjt6pgOYZRyP1Tkeq3M8Vud43MmxWJ3jsTrHY3VTMh7eFCZJkqRec4ZWkiRJvWZCO08leXKSS5L8MMnhMx3PdEhyeZILk6xIsqyVbZPkm0kuba9bt/IkeU8bnwuSPHxmo193ST6S5JokKwfK1vj6k7yotb80yYtm4lrWh3HG44gkV7XfkRVJ9h2oe2Mbj0uSPGmgfE78WUqyY5KTk1yc5KIkr2nl8/J3ZILxmHe/I0k2SXJ2kvPbWLy1le+U5Kx2XccnuUsrv2vb/2GrXzjQ15hj1CcTjMcxSS4b+N1Y1Mrn9J+VEUk2THJeki+1/en9/agqf+bZD7Ah8CPgfsBdgPOBXWc6rmm47suBbUeV/QtweNs+HPjntr0v8FUgwKOAs2Y6/vVw/Y8FHg6sXNvrB7YBftxet27bW8/0ta3H8TgCOGyMtru2Pyd3BXZqf342nEt/loDtgIe37S2AH7Trnpe/IxOMx7z7HWnv8eZte2PgrPaefwY4sJV/APjLtv1XwAfa9oHA8RON0Uxf33ocj2OAA8ZoP6f/rAxc518DnwK+1Pan9ffDGdr5aQ/gh1X146r6LXAcsP8MxzRT9gc+1rY/Bjx9oPzj1fkusFWS7WYiwPWlqk4FfjmqeE2v/0nAN6vql1X1K+CbwJOnPvr1b5zxGM/+wHFVdWtVXQb8kO7P0Zz5s1RVP6uqc9v2DcD3gO2Zp78jE4zHeObs70h7j1e13Y3bTwH7ACe08tG/GyO/MycAj08Sxh+jXplgPMYzp/+sACTZAXgK8OG2H6b598OEdn7aHrhyYP+nTPwX9VxRwDeSLE9ySCu7d1X9rG3/H3Dvtj1fxmhNr38+jMsr28eCHxn5eJ15Nh7tI8CH0c08zfvfkVHjAfPwd6R9nLwCuIYu8foR8Ouquq01Gbyu319zq78euAdzZCzgD8ejqkZ+N97efjfeneSu/7+9cw+2uqri+OcrIshDboJjmugFomFKiQJnNFHBKUpNqcBGQ8HHlGQD4QylZqM4Tg7qqKiTlvgalXI0SdBIKgFj8MGby5WHOnhzRgnKErJJAu/qj70O98fpnHvugcu9c85Zn5nfnP3be//2Y/3WuXf91l6/sz2vqnXDmQX8GGj28750sH6EQRvUEiPN7IvA2cAPJJ2RLbS05lGzP/tR6/N37gcGAcOArcAdnTucjkdSL+AZYJqZ7cyW1aKOFJBHTeqImX1sZsOA40hesyGdPKROJV8ekk4EriPJ5WRSGME1nTjEDkPS14HtZraqM8cRBm1t8i7QP3N+nOdVNWb2rn9uB35L+qO8LRdK4J/bvXqtyKjc+Ve1XMxsm/+jagZm07LcVRPykNSVZLzNMbO5nl2zOlJIHrWuI2b2AbAYOJW0dH6oF2XntXfOXt4HeJ8qkwXsI4+veZiKmdku4BFqRzdOA86X1EQKqTkLuJsO1o8waGuTFcBgfwPxMFJQ9vxOHtNBRVJPSb1zaWAM0Eiad+7N0knAPE/PByb626mnADsyy67VRLnzXwiMkfQJX2od43lVQV6c9DdJOgJJHhf627kDgMHAcqrou+QxbA8BG83szkxRTepIMXnUoo5IOkpSnacPB75CiileDIz3avm6kdOZ8cAi9+4Xk1FFUUQemzIPfiLFi2Z1o2q/K2Z2nZkdZ2b1JP1eZGYT6Gj9aOvbY3FU10F66/INUhzU9Z09ng6Y70DS25PrgNdzcybF7bwIvAn8CTjS8wX83OWzHhjR2XNoBxn8mrREupsUm3TF/swfuJwUrP8WcFlnz6ud5fG4z7fB/7gek6l/vctjM3B2Jr8qvkvASFI4QQOw1o9zalVHWpFHzekIMBRY43NuBG7w/IEkg+Mt4Gmgm+d39/O3vHxgKRlV0tGKPBa5bjQCT9DySwhV/V3Jk80oWn7loEP1I3YKC4IgCIIgCCqaCDkIgiAIgiAIKpowaIMgCIIgCIKKJgzaIAiCIAiCoKIJgzYIgiAIgiCoaMKgDYIgCIIgCCqaMGiDIKgKJJmkOzLn0yXNaKe2H5U0vnTNA+7nAkkbJS0+2H3l9Vsn6aoDuP7D0rUODElNkvodYBv1kr5TpOxYSb8pVNZKe9Mk9cicF5SDpMmSJpY32iAIyiEM2iAIqoVdwLcO1OhpbzI75bSFK4DvmtnogzWeItQB+23QVhD1QEGD1szeM7NyH1qmAT1KVTKzX5jZY2W2XZQydSoIaoIwaIMgqBb2AA8AV+cX5HtYc540SaMkvSRpnqQtkmZKmiBpuaT1kgZlmvmypJWS3vC9y5HURdLtklZIapB0ZabdpZLmAxsKjOcib79R0q2edwPpx/wfknR7Xv1DJN0naZOkP0pakJtP1nMpaYSkJZ7uKelhn8saSWM9/3Oet9bHPBiYCQzyvPy+fyRpqqfvkrTI02dJmpOp9zNJ6yS9Kuloz6uXtMj7eVHS8Zn7cb/X3eLyeti904+2co+nSFrtshvibR0p6Vnv41VJQz3/TJ/PWp9/b5/n6Z63j574WBs9famkuZJekPSmpNsK3MOpwLHA4qxHvYgcZkianrtO0gYf75MF2q133Vntx5c8fx+dakX3ermsc3Ia24o8g6B66OxdJeKII4442uMAPgSOAJpIe4NPB2Z42aPA+Gxd/xwFfAAcA3Qj7Rt+k5f9EJiVuf4FkhNgMGlnse7A94Cfep1uwEpggLf7b2BAgXEeC7wDHAUcStpd6BtetoQCu9KRtodc4P1/Evhnbj4+336eHgEs8fQtwMWeriPtVNUTuBeY4PmHAYeTPJeNReR6CvC0p5eSdvbpCtwIXOn5Bpzn6dsyMnkOmOTpy4FnM/J8krSD0lhgJ3CSz28VMKzAOJqAKZ6+CnjQ0/cCN3r6LGBtpu/TPN3LZT0K38WoQPt7ZQBcCmwh6VF34C9A/yJj6pc5LyaHGcB0T79Hy45JdQXa7AF09/RgYGVGV/fqFMV171DgCM/vR9qNSZ39/YwjjoN9hIc2CIKqwcx2Ao8BU8u4bIWZbTWzXaQtF//g+etJRk6Op8ys2czeJBk7Q0h7r0+UtBZ4jbRN7GCvv9zM3i7Q38kko/NvZrYHmAOcUWKMI0lGZbOZ/ZW0R3opxgDX+tiWkAyz44FXgJ9IugY4wcz+U6KdVcBwSUeQwjpeIRnOp5MMXID/As9n6td7+lTgV55+3OeR4zkzM5Kct5nZejNrJm1NXU9h5hboY6S3jZktAvr6WJcBd7ontc5lXQ4vmtkOM/uI5GU/oQ3XFJNDlgZgjqSLSasK+XQFZktaT9oe9LOZsqxOFdM9AbdIaiBtVfwp4Og2jD0IKpqIwwmCoNqYBawGHsnk7cFDrCQdQvJM5tiVSTdnzpvZ929k/j7hRjIeppjZwmyBpFEkb1pHsHduJKN17zCAcWa2Oa/+RkmvAecCC3ypekuxxs1st6S3SV7Ll0kG2Wjg08BGr7bbjVOAj2nb/5asnPPvQbHrc/VK9mFmMyX9DjgHWCbpq20YU6G+2tSf0xY5nEt6gDkPuF7SSXnG9tXANuDzpPv6UaYsq1PFdO9Skvd/uN+7JvbViyCoSsJDGwRBVWFm/wCeIr1glaMJGO7p80lesHK5wGNZBwEDgc3AQuD7kroCSPqMpJ4l2lkOnCmpn6QuwEXASyWuWQaM8/6PJi0/52iiZW7jMvkLSTGn8rF9wT8HAlvM7B5gHjAU+BfQu5X+l5JCOP7s6cnAmozxVoyXgQs9PYEWj257stTbzj1I/N3Mdkoa5F7fW4EVJI96qXmWS1nt+cNUfzNbDFxDCmnolVetD7DVvdWXAF2KNFdM9/oA292YHU3bPMtBUPGEQRsEQTVyByl+MMdskhG5jrQMvj/e03dIxujvgcm+FP0gaTl6tb9Q9EtKew63AteSwgbWAavMbF6Jvp8hxe1uAJ4geaB3eNlNwN2SVpK8gjluJhnuDZJe93OAbwONvlR9IvCYmb1P8mI25r8U5iwlxRm/YmbbSF7DthinU4DLfPn7ElJccnszgxQS0UB66WuS50/z+TQAu0n3rQH42F/a+r+XB/eDB4AX1PafWesCPOHhBGuAe8zsg7w69wGTXFeHUFxXi+neHGCE9zER2FTOhIKgUlHpB+wgCIKgs5HUy8w+lNSXZFif5vG0QRAENU/E0AZBEFQGz0uqI8X/3hzGbBAEQQvhoQ2CIAiCIAgqmoihDYIgCIIgCCqaMGiDIAiCIAiCiiYM2iAIgiAIgqCiCYM2CIIgCIIgqGjCoA2CIAiCIAgqmjBogyAIgiAIgormf+2niCAQGMM3AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#The most popular neigbourhood\n", + "data = abb_vis_df.neighbourhood.value_counts()[:10]\n", + "plt.figure(figsize=(10,6))\n", + "x = list(data.index)\n", + "y = list(data.values)\n", + "x.reverse()\n", + "y.reverse()\n", + "\n", + "plt.title(\"Most popular neighbourhood\")\n", + "plt.xlabel(\"Number of guest whom host in this area\")\n", + "plt.ylabel(\"Neighbourhood area\")\n", + "\n", + "plt.barh(x, y, color = 'green')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 141, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 141, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABUcAAANqCAYAAACuPfooAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzddVxV5x/A8Q+XBiWUEgQDEBM7Zs7uWVO3qVNnN27+pgvnQqfOmB1TN2NuxhTddHN2OxPswkTCIKTz8vvjAoJc8BJXLvJ9v168Xnrie+I59znnfu9znkcvJSUlBSGEEEIIIYQQQgghhChmFIW9A0IIIYQQQgghhBBCCFEYJDkqhBBCCCGEEEIIIYQoliQ5KoQQQgghhBBCCCGEKJYkOSqEEEIIIYQQQgghhCiWJDkqhBBCCCGEEEIIIYQoliQ5KoQQQgghhBBCCCGEKJYkOSqEEEIIIYQQQgghhCgQ27dvx8PDg3PnzuVqvcePH/PVV1/RunVrPD09ad++PUuXLiUhIUFLe6oiyVEhhBBCCCGEEEIIIUS++fj48N133+V6veDgYPr06cPmzZuxsLDg7bffJjo6mkWLFjFkyBASExO1sLcqkhwVQgghhBBCCCGEEELky7///suQIUOIiYnJ9bpff/01wcHBTJgwAW9vbxYtWsTevXtp3LgxZ86cYcOGDVrYYxVJjgohhBBCCCGEEEIIIfIkODiYTz/9lPHjx6NUKrGxscnV+nfv3uXw4cO4uLgwcuTI9OlmZmbMmDEDfX19fv3114Le7XSSHBVCCCGEEEIIIYQQQuTJggUL2LlzJ9WrV2fz5s1UrFgxV+sfP36clJQUWrZsiUKROVXp6OhI1apVCQgIwM/PryB3O50kR4UQQgghhBBCCCGEEHlSsWJFZs+ezdatW/Hw8Mj1+mlJT3d392zjA9y6dSvvO5kDA61EFUIIIYQQQgghhBBCvPGGDx+er/WfPHkCgJ2dndr5tra2ADx79ixf28mOJEeFEEIIIYQQQgghhBAAREREEBERkWW6hYUFFhYWBb692NhYAExMTNTOT5uel4GeNCHJUSFEsZD47G5h74JI9VHdSYW9CyKVi576hw/x+gWRUNi7IDJISFEW9i6IVJuCThf2LohUS+xbFvYuiFTh0jmezojUk/uFLplx/7fC3gWtep3fadf9vpslS5ZkmT527FjGjRtX4NvT19cHQE9PL8fllErtfOYkOSqEEEIIIYQQQgghhABg4MCB9OjRI8t0bbQaBTA1NQUgLi5O7fy06WZmZlrZviRHhRBCCCGEEEIIIYQQgPZen89OWl+j2fUp+vTp00zLFTRJjgohhBBCCCGEEEIIocuUyYW9B1qTNkp92qj1L7tz5w4AlSpV0sr2pbcSIYQQQgghhBBCCCFEoWjWrBkAhw4dytKvaGBgINevX8fJyQk3NzetbF+So0IIIYQQQgghhBBC6LIU5ev706LAwEDu3LlDaGho+jRnZ2eaNWvG3bt3WbhwYfr0mJgYvvzyS5KTkxk8eLDW9kmSo0IIIYQQQgghhBBCCK2bPHkynTp1YuPGjZmmT5s2DVtbW1asWEHXrl0ZP3487dq148SJEzRv3pz3339fa/skfY4KIYQQQgghhBBCCKHLlNpt0VnYnJ2d2bp1K4sWLeLo0aM8ePAAZ2dnPvzwQwYOHIiBgfZSmJIcFUIIIYQQQgghhBBCFIgNGzbkaV6ZMmWYOXOmNnYpR5IcFUIIIYQQQgghhBBCh6VouS/Q4kz6HBVCCCGEEEIIIYQQQhRL0nJUCCGEEEIIIYQQQghd9ob3OVqYpOWoEEIIIYQQQgghhBCiWJKWo0IIIYQQQgghhBBC6DLpc1RrpOWoEEIIIYQQQgghhBCiWJKWo0IIIYQQQgghhBBC6DJlcmHvwRtLWo4KIYQQQgghhBBCCCGKJUmOCiGEEEIIIYQQQgghiiV5rV4IIYQQQgghhBBCCF0mAzJpjSRHhRCiCFEqlfQb8TH+AUEc/3tzYe+OTjCzMKeHV1/qtW+IlZ0VEaERXD7ig/fCrYQEPH1t8Zr0fJu2AzviXNmFxPgkHl67xz+r/8Jn/9ls16nerCbtBnXCtVYlzCzMiAqP4vaFm/zz005un7+pdp2VlzdgZmGebcwT3kdY4bVQ8wPWEhMLc1p59aRqu3qUtLMmJjSCW0cucmiRN+EBz15LPD2FHg37t6XOu82xdXME4NndIHy2H+O/dXtRJqt/wPRoVZvGH3XEybMCeujx5E4A534/hM/2YyiTil5fT2YW5nTz6k3tdqprOjI0gitHfPlz0VZC8lAWBRGv1Ycd6P/tUBZ+NJOLB89nu1z9zm/R6sMOuFStgEJfweP7QZz+8wT7ft5FUkJSrve9sJhZmNPzpXrlUj7rqbzEa5pNPXUhh3qqVqu6dBjShQo13NDTg0C/AA5t2sfxbYdJfunz8OPxFdg622l0DDP6TuX6f1c1O+BCZmVlydQvP6Z7tw6UKWPH06ch/Lv3MNNn/MjDhwG5jle3jieTJ4+laZOGWFiUICAgmN1/72fO3GUEBT1Wu46JiQnjxn7Eu+92pZJ7RQwM9HnwMIBdu/YyZ+4yQkLC8nuYOsvI0ox6Xj2p0KEeZnZWxIVG8PDwJc4v8CYqICR/wfX06LFzGhbl7FlXc1T2iyn0qDqgDR59mmGdej8JvxPMrW3HuLJ2HynZ3E/eNMYWZjT16kml9vUoYWdFTGgEd49c4sRCbyIKoCw+9J6GVTl7FtXOviyMS5rSaFRXPDrWx8LJhvjIGIIu3uXcL/9y/9iV/O1DEaILz1mGpsY0G96ZGl0aYe1sR3RoJP4+fhxb8ScBl+/l9xCFeK30UlJSUgp7J4QQQtsSn90t7F0oEAtWrGX1hs1YWVoU2eToR3UnFVgsMwtzvvKeiZNbWWIjYwi6F4idiz0lrEoS/TyKGX2m4n/jgdbj9Zncn66je6JUKgm45Y+hsSEOFVRfnv6Y9zs7F23Nss67k96n27jeAEQ/j+LpoyfYOdtjZmGOMjmZ9V+t5sCv/2Zax6asLT+eWElcdCwPrt1XewyXj/qq3Z46LnomGi2XWyYW5ozY/jV2bk7ERcYQci8Yaxc7zKxKEPs8mlV9v+XxDX+txlPoK+i38mMqt6kDQMiDxyiTkildwQGFQsHto5dY/9GcLMnOdpPfo8WodwCIevac8IBn2Lk7YWRmgt+xy2wcMZ+EmPh8nqGsgkgo8JiguqY/3z4Dx9Rr+vG9IGxc7NKv6dl9p/Eol5+R/MZzqVaBKZu/xaSEaY7J0Xen9KfTyO4AhAQ8JTYyBvsKjhgaG+J//T6z+n5FbESM5icjFxIKsGWGmYU503KoV6bnoZ7KS7y+r6indqipN9LWAXj+7DkhAU9xdC+LiZkJl49dZMHw2cTHxKUvP27ZJKzsrLPdd1tnO0o5lCYhLoHP2nnx+EHwK493U9DpVy6jTVZWlhw7upMqld2JiIjk1u27VKzgQqlS1oSFhdOqzbtcvnxd43hdOrflj62rMTAwICQkjAcPH+FasRyWlhaEhobRsdMHnL9wKdM61tZW7N+3lZqeVVEqlTx48Ii4+HjcXMtjaGjIw4cBtG3fhzt37hfw0We2xL6lVuOrY2RpRg/vaVi7O5EQGUv4vSAsXOwwsSpBfHg0O3tPJzQX95OXNZjchzpj3yE2NDLb5KievoL2q7wo31Z1P3n+4DEpSUosK9ijp1Dgf+QS/wya91p/PAsvhM7xjC3MGOA9DRs3J+IjYwm9F4SVix2mViWIex7Nxj7TeZqPsmj+vz40HvsOMaGR2SZHjS3M+ND7a0q7OZKckETI3SCMS5hiWdYGgBOLdnBs3h953oe8iNR7/YlxXXjOMi9twUe/fo5DFRcAntx+BICde1mUyUp2TVvL6V/3F9xBa2jG/d9e+zZfp4S7Z17btowqNnht29IF0nJUCCGKgJSUFJb9vJHVG4pmQlRbhswejZNbWXwPnmfp2HnERcdhaGzIoOkjaN6nFWOWfMxn7SaSotTswTUv8Wq1qkvX0T2JDItkzoffce+SHwB12tZnzJJP6DmxL9dOXub2uRvp63i+XZtu43qTlJjEhmmrObhxL6BK6L0zphe9PnmfAd8Mxc/3Ng+uvEjsO1cuD8D1U1eYP2Rmfk+f1vSYNRQ7NyduHvRh07jFJETHYWBsyDvTP6Ju7xa8t3gci9pPJkWp2e+zeYnXoH8bKrepQ1xkDL8On8+9U9cAcKnjzoA1k3Bv7knzEV04vHRn+jrVOzdMT4zum7uFI8t2kqJMwcTCnD4LRuPRqjbdZw5ly4SlBXi2tGvQrJE4upXl4sHzrBz3I3Gp5+7D6cNo2rsVIxd7MbX9Jxp/RvIbr0JNNyas+QyTEqY5bqdWm3p0GtmdxPgElo+Zj+/+cwBYlynNuJWfUt7TlX7ThrD6k8W5OyGFYGiGemVJhnplcGq9MnbJx0zJRT2Vl3gv11N3M9RTY1Prqasv1VMNOzdOT4xunfsbfy7dTopSiZmFOaMXelGrVV2GzBrJsvEL0tdZPHputvtdwroks/aqll079SeNEqO6YOWKOVSp7M7ffx/gg/6jiIqKxtjYmKVLZjJoYF82/rqMWrVbo9Sg/JycyrBu7SIMDAyYPuNHvpv+I8nJyZiamrB40fcMGtiX339bQeWqTTPFW7pkJjU9q3L9xm3e/2AkV66oysnZ2ZFf1y+lSZMG/LZxOQ0bddTaeSgsLWYPxdrdiQcHfNk/ZgmJ0XHoGxvS7PvBVO7TnDZLx7K17RSN7ycZ1ZvYkzpj33nlctUGtKZ82zokRMayZ8h8Ak+pkuH2dd3p+MvHOLfwpNaozlxY/Geu96Eo6Th7KDZuTvgd9OXPsUtISC2L9tMH49mnOd2WjGVNu7yVRVOvnjTWoCw6zRlGaTdHAn388B61iMigUADc29ah+7LxNBnfnYenrvHg5LVc70NRogvPWb3mjsShiguRT8L4dfh8HvneAVTPWf1XfcI70z8i5MFj/I5d1so5EKKgyYBMQhRTixcvxsPDg2XLlhV47ODgYDw8PGjVqlWBxy6OnoWEMuGz71j+88bC3hWdUsbViXodGhIbFcsKr4XERataLyXGJ7J68jICbvvj5O5MvQ4NtRrvnbG9ANgya0N6YhTgwr6z7Fi4BYVCkZ5gSNNxqOoLwP51/6QnRgGUyUp2LNrKmd0n0TfQp93ATpnWc66s+nX+0a28t8zQNhtXR6p2qE98VCxbJy4jIfU8JsUn4j35J57cfoSde1mqtq+v1Xi1ezQD4MiynemJUYCHF26zf76qVUntXs0zrdNyXA8Azm06xOElO9K/BMRFRLPFaxkx4VHU7NaEsjVdc3taCoWDqyN1OjQkLiqW1RMXp1/TSfGJ/DJ5BYG3/XF0d6ZOe81aBuQnnp5CQeuBHZmy5VssbCxfua2W/dsDsHuZd3piFCAsKIT1X/wEQIOujTEyMdJo3wtLxnpl+Uv1yqp81lO5iZdWT22etSE9MQqqeso7tZ5656V6qvt4Vcv2w5v2s3PxH+nJ1piIaJZNWEBUeCSNuzWnYk03jfZ9yKxRWNlZc+afUxzdclCjdQqbh4crPbp3JDIyioGDxxMVFQ1AfHw8w0dM4tr1W1StUonu3TVLSn7wfg8sLS04fPgkX38zl+RkVUvD2Ng4Ro+ZQkhIGBUrlqNVyybp6zg5leHdXl1ITk7mww/HpidGAfz9A+nz3nAiI6OoW8eT5s0aFeDRFz4r1zJU7FiPhKhYDnotJzH1ek+OT+TI/1YReiuAUpWcqNChXq7imtpa0n61F/U+7vnqhYFKvZoCcGHJn+mJUYDH529zdt421TLvNsvVPhQ1pVzL4NGhHvFRsezyWp5+L06OT+Sfyat4djsAG3cnKuWyLMxtLen5kxdNJ766LMztrHBvWxdlspKd45amJ0YBbu+7gO/vqnrFs2+LXO1DUaMLz1mO1crj0bIWAL+PXpSeGAXVc9Y/36u+s3SaOqBAjlm8kJKifG1/xY0kR4UQQoedOH2ezu8N5eCxU9iUtsZr5ODC3iWd0aRHcxQKBT4HzhL9PCrTvBSlkqNbVQ/Jjbo0Ubd6gcSzK+eAe93KJCUkcmrnsSwxj2w+AECNZjUxszADVEmiSvUrA3Dmn1Nq98XngCoZVL56xUzTnT3KARCgw8nRWt2boFAouHHgArHPozPNS1GmcH7rUQBqdHlLq/EsHFSv9qp7rSzwiqofLEun0unTStpa4ZCafD6+aneWdeIiorm08yQANbtrdk0Vtre6q65p3wPn1F7Tx7ceAqCBhp+RvMYzMDZk2q7Z9PtmCPqGBuxcuIVnj57kuK37l+5w6dAFzvx1Isu8R7cequIaGWJpa6XRvhcWXain7Ms5UCmX9ZSVnTXOlVX1zd+rdmZZJyYimpOpsZp0b55l/svqtKlP/Q6NiImIZv1XqzU5VJ3Q74NeKBQKdu3eR1hYeKZ5SqWSdetUb3P06f3qFm8AgUGP+WPbLlat+TXLvISEBPz8VHVT2bKO6dObN2+EQqHg7t2H+Phm7U/x8eOnnD+veg2/du0amh1YEeHeswl6CgUP9vsQH561/r+5RVX/u3bVPClctnl13j8ylwrt6xH9OJz/Zr76jRzz1PuJutf3n15SlVkJx9JZ5r1JqvVQlYXfAR/i1NyLL6Xei6t00bwsyjerzvBDc6nUvh5RT8I5PCvnsjCxMOPipsNc2XaM5/5Z+1Z+elP1WrdFmTe7LHThOcuthScA/r5+PDiXtY983+3HiYuMwb5SWcpUK6f5wQlRiOS1eiGKqX79+tGpUydKlSpV2LsicnD3/kNiYuPo2qE1k8cP55aW+xMrSlxrVQLIduAivwu3AKhUv4rW4rnVVq3z8MYD4mOz9kMZEfKcxw+CsS/ngGttDy4f8UFPDxaO+IHSjrY8uvlQ7baMzVR9gSoMMv+G6VxF9YD56LbuJkeda6lakT08f1vtfH8f1fTyDTy0Gu95cCgWDqUoU7UcNw/5Zppn515WtUyGwSPSEqUJsfE8vROodlvP7qteAy4qLUcr1nIHwC+ba/pO6rmr1KCyVuMZGhviUrUCAbf82fDlT9w6c50mvd7OcVve8zdlOy/tR4P4mDjCnuj2IDSa1iseBVxPZYznmot6yq22B5eO+FDaUdV/X3xsPIF+6gccenwvCHhxXWRHT6Gg75T+AOxc8gfhOl5mGTWoXxuAU6fOqZ1/+vQFAJo20az19caN29i4cZvaeWZmplSqpLq2M/YdevTof/R5b3iOr+2bm6u6qTAw0NdoP4oK+1qqujb4nPr6/7GPqhV0GQ3vJwDW7k4Ymhtz849jnPxmI6UrO79ynaigUMwdSmFTzYWHBzPfT0pVUt1PogLzORiRjnNMLYuAbO7FgRdUZVG2vuZlYePuhJG5MVe2HWP/txuxe0VZhPgF8u/nP2c736FGBQDCHqgf1OxNoQvPWVap94jAK/fVrpOSkkLowyc4VitP2ZquBF3VvF9t8QoadsEjck+So0IUU6VKlZLEaBFQvaoHW39eTOVKRSMZ8zrZl3cA4Km/+hZoaSM2W9lZY2xmkmnQkIKKZ19Otc6zbNZJW8++nAP25R24fET16vylwz457kudtqpXlwJTO7cHMDAywL58GZTJycRHx9J9fG9ca1dC30CfoDsBHP3jUKb+SQtLqfL2AIRlc07SRjwtaWuFkZnxKwc3ymu8c5sO4VzLjWYju3L/3E3un1a9ilqmWjnaTlK9Lnz6131Z4ukp9NDT00PdeJX6qYkHKyebHPdZV9iVz/n6TLumLW01+4zkNV5SfBKrJi7i9J/HUeZzROcqjWswaNZIAPau2UVSfGK+4mnbq+qVZwVcT6mLl1ZPZbdO2npp9RRHXkzX08vh82Co+hph42Sb4z636NMKJ3dnQoNC+PeXrK2ydZmra3kA7t9X/4PUg4eqOtrBwQ5zczOio/M2QJiHhysL5n+HtbUVJ06c4djxF4NQBQQEsX179ufNxcUJT8+qAFy/rj65UVRZpNb/kWpaCQJEPVLV/2Z2VhiYGZOkwWB5T3zv8kfHLwm5pv7HSXVu/H4Y+9pu1BrVlaCztwj6T3U/KV2tHPX/p7qfXF3/+geeeZ2sU8tCXYtNgIjUe3EJOysMzYxJ1KAsgi7e5ZfOX/IkF2WhjqGZMXUHtsOzTwsS4xI4u/qffMXTdbrynAWqvvKz8+KZKed7hBC6QpKjQhRTixcvZsmSJUyYMIHRo0en/3/FihUkJyezevVqbt68iYGBAfXr12f8+PFUrpy1ddFff/3F+vXr8fPzw9zcnM6dO9OnT59stxscHMzy5cs5evQoT58+xcrKiqZNmzJmzBicnV/8Yjx9+nQ2bNhAlSpV2LZtG/r6L1pDLF++nAULFlCtWjU2b96MoaFhwZ4cHVK7RtXC3gWdVbKUBQBRYZFq50eFR2VYtuQrkw55iVeytGqdyGzWybheSWuLHLefpkaL2ni2ULVWOrnjaPp0R7eyGBgakJSYxIw98zEyMX6xTvNatBnYkb+WbuOPub9rtB1tMU89jzHhUWrnx2aYblaq5Csf2vMa79ymQ5QobUGLsd0Z8vuXhD18QnJSMjYVypAYl8C+OZs5+fOe9HXDUr/wGRobUbpiGZ6paT1q5+4EgKmleY77rCvSr+lw9ddndIZzVyI3n5FcxkuMT+CU91G162hq/OoplPd0xcrOmqTEJP5e7s2O+bo/QJ1FqZzriNzWU3mJl1ZPZVe3wYuyS6un0hKpRiZGOFR0JOhO1tajTqktsM1f8XnoOEz1yvmen3eRlJCU47K6xtZW1aI8JER9a9fQ0Bev2tvYlMp1cnTqlxPp3+9dKlRwQaFQ8Odf/zJ02Ce5ijHz+y8wNjYmOPgJBw4ez9W6us409dqNy+bajctwvZuWKkmkBgm5x9m0jsvJ9d8PY2pjQe1x3Xhn8+dEPHyKMjEJy4plSI5L4MwPW7i85t9cxy1KzFLrnthsyuLle/FzDcoiu1aomnKoUYFOPwzFqrw9RmYmPH/0jL8/XZX+ev2bShees9ISqfbZtPY1MDbE2sUOKDrPTEVGMewL9HWRPkeFEJls3bqVMWPGEBkZSdOmTSlZsiQHDhygX79+PHqU+WFj3rx5TJo0iZs3b1K/fn08PDzYuHEj48ePVxv72rVrdO/enU2bNmFsbEzLli2xtbXF29ubnj17cunSpfRlP/nkE1xcXLh+/Trr169Pn37jxg2WLl2KiYkJc+bMeaMToyJnaQOxJMYlqJ2fkGG6JoO25CXeq9ZRrRev8T44VHRk5I+qz8+N/65yfu+Z9HlpI9UbGBrge+A8X3T8mMHuffB6azg7Fm2FlBS6jetNmw87vHI72mT4inOScbqh8avPSX7iPbsXTJj/UxQKBaXLO2Dn5oRCX0F8VGyWLwHRIRHpAwq0HNs9y3YsHUvj+U5j4EWLOV2Xq2tag7Io6Hia0tPTo3qLWljZqfr9MzA0oFz1ijh5uBTYNrRFl+qpBA3qqbTPW0TIc+74qhIX3ce9m2X50o42vPWOapAagxw+D9Wb1sTJrSzRz6M59NvebJfTVaamqi5OYuPUJ61jY+OyLJsbzZu9hatreRQK1VcyV9fytGihWT+BAB9PHEHfPt0A+HLqLOLjX52QKkr0U6/H5Dj1LcSTM1zT+loenC38bjCRD5+ip1BgWd4ea3fV/SQhKpa4MPVJpTeJQer5TcqmLJIylIXBaxooz8bdCbuq5TBK7YrIxNIct1a10DcqGvfovNKF56ybB1VvQLnUdse1SfUs6zQa2B4jU9WP+PqGb1Z3H+LNJclRIUQmBw4c4Ouvv2b37t0sXryYPXv20KhRI6Kioti06UUfcJcuXWLVqlXY2NiwY8cOfvrpJ9asWcP27dsJDQ3NEjchIYHx48cTFhbG1KlT2bNnD4sXL8bb25vZs2cTGRmJl5cXCQmqG7CpqSnff/89enp6LFq0iKCgIBITE5kyZQqJiYn873//w9VVXjUvzl71eq5CoZf+bzVvhBZIPE1eEU770qvutdSMHCo68tlv32BR2pLwJ2Esm7Ag0/ynD4PZt+5vvBdsZvHouTy8dp+khCRCAp+xbd7vbJq5AYBen7yv0cOwtrzqnOgpXjx6aFAseY7XyqsX7y+bgLl1STaNXcQ31T7i2xpD2Dx+CQp9Bd1mDKHjl/0zxdo3fytKpZJaPZrS9ZtBWDqWRt9Qn/INKjPwl09JTO2vMTmpaLR+y9U1rUFpFHQ8jenp8dnbYxlZ+QO+6zaF66euUK1ZTSZv/gb7CmUKbjtaUFTqqfTPUYad+GPe7yiVSpr0aMGH3w6ltKMN+oYGeDSoyqS1XxIfq7pfJyUmZxs37ceaw5v3ExsV+8r90DVpo8lnR5Gx/tGkAF8ydPjHmJesSNXqzVm67BeqVHZn8+8r6a3BAE9jRg/mh9lfAfDrxm2sXaf7LalzKyUX9b9GH6A8qjexJ+1WjMekVEn2jV7MmspD+bnqMPaPW4pCX0HzmR/x1lf9tLZ9XZCbssjLZyEv7h65xI/Vh7Gw9ij+8lpOckIi9Yd2pMdKr9ey/cKiC89ZT24H4LtDNWDie0vG4flOY4zMjDGxMOetQe1p+0lvYlJbGSuTcq5HRS4pk1/fXzEjyVEhRCZ16tTh/fffT/+/kZFR+mvyfn5+6dM3b95MSkoK48ePp2LFFyNqV6pUSW3L0X379uHv70/btm3p3z9zQqJ79+60a9eOgIAA9u590bKkfv36DBgwgJiYGL7//ntWrFjB9evXadq0Kf36vdkPoeLV0gYWMTRW33rYwOjF9JxaTOUnXnxMzutkXC+n1qUVPN2YunUGpcqUJjI0gh8GfEtYcObBHW6du8H6r1az/Uf1X4D3rv2b2MgYSliV1HhwF21ISyAaZHseX7ToSNKgXPISz8bVkZbjeqBMVvLriPlc3vUfCdFxxEfGcunPk/wyYCbJiUk0HdoJhyovWh/6Hb3ErmnrSE5KptHAdnx6cjHf3t7AsC1fYWBsiPcU1Sjb8ZFFI8nz4ppWnyzPeE3ndH1qK56mUpRKQgKekRCXwL2Lfszt9y33L9/B3LIEXcdmbYVSZbsAACAASURBVNWoS4pKPWWYul7Gfbh81Jf101aTnJRMu4GdWHjqJ9b5bWHq1ukYGRuyZsoygGyTnsamxuldhJzwPqJ2GV2X9pq8ibGx2vnGGT4LGVuRaurBg0fEx8dz69YdJnh9yZKlP6NQKPh++meZEq8vm/rlRBYumA7A7t37GTY8d6/iFxVpfYjqZ3PtKnJ5P8kLK9cy1JnQHWWykn+H/sidv06TGB1HQmQsfjtOseuD2SQnJlFzWEdKV9H91ux5lXYvzq4s9F9DWbwsJiSC+MhYYkMjuep9gi0D56BMSsatVS3KNX5zu6XShecsgJ2fr8bv+BXMrEvSd9FYpl37hamXVtHl64Fc+uskF7YdAyCuiDwzCfFmtzkXQuRazZo1s0yzsVENPhIT86IvrbNnzwLQvHnzLMu3bt2ar7/+OtO006dVgws0bNhQ7XabNWvGv//+y5kzZ+jSpUv69I8//pgjR46wd+9eDhw4gJWVFTNnzkRPT09tHPHmKFetAgO+Gap23oZpq4kKi8TcsgTmViXULlPCumT6vyNDnr9ye3mJl9b3orlVSbXrqNZTxYsIjVA7v2bLOoxbNgljMxPCn4Qxu/832Y5in5PkxCQC/R7hWrsSpcsWXuf3MWGRmFqaY5bNeTTLcB6jQ9Sfk/zGq9q+Hgp9BXdOXMH/QtY+zYKvP+T6/gtU79iA6p0aEnz9xfk+vWEf98/coN57LbFzcyI+Opa7p65xYeuR9FHqI5+GZ4mpi159Tb+YHqlBWRR0vLxKUSr5d9WfjFg0kUoNC/cLcLlqFfgwm3pqvY7VUyU0qKciX6qn9q/fw43T12j5flsc3coSFx3LtVNXOLrlIK6pIxxnN/p8jea1MDIxIuhOAA+v3X/lsRWGWrWqsfDH6WrnTZj4JSEhYVhbW1GqlJXaZUqXtk7/99On+R+t/Ic5Sxk/bigVKrjg4uKUZSAohULBsqWzGDpE9QOx946/+aDfaBITdXtgsryKC4/C2MocYyv1fRaaZKhz4kKy71M3Pyp0UN1PHh2/yuMLflnmh1x/yIN9F6jYqQEVuzQg5Hr+BhfSVbFhUZhYmmOaTVmYZiiLGC2VxasEX77H/RNXqdjCE+eGlXlw8lqh7Ie26cJzFkBCTDxrB8ykRtdGVGlbDzPrkoQHPOXSn6e4c+IK784bBRSdZ6YiQ/oc1RpJjgohMilZMuuXp7TBkDK+JvPkSWpH3Pb2WZa3s7PL0hdoUFAQoBpoafp09V9EQDVgU0ampqZ88803DBo0iOTkZLy8vLCzs9PwaERRZlrSLNsWkKYlzQi8E4B9+TLYllV/PaSNoBz2OFSjFll5iReYOkiJbQ7JyLT1Ht8PyjKvcffmDJs7FgNDAx4/COaH/t/w5OHjbGPpKRQoFHokZ/eKUuqPBoU56MnTO4GULu+AVTbnJG2k94jHYRq1LsxLPOvUaU/VDKqUJuReUKb1M3p805/d36zPMr1MtfKp84vGYA/BdwKxL18m22R56dRrM1zDz0hBx8uJlZ01pRxtuOurfsCOx/dU9wpLW8t8bSe/zHKop8x0rJ6y0aCeClZTTz26+ZANX6/JMr1cNdVbI49uqU8G1WpdF4DTf5/MdruFzdLCgiZNGmQ77+bNO7i5VaBcOfWDjpRzUQ1KFRgYrFHLUSsrS9xcy3Pt+i1iYrK2pgoOfkJUVDQlSphjb2ebKTlqZGTEbxuX0b1bRwB+/uV3Ro76FKXyzf2iHO4XiGV5e0o6q792S5ZV1d/Rj8O01lqxROo9IjyH+0n4XVV9VFLN/eRNEXInEOvy9lhmU49Yph57pBbLQmGoj5WzHcqkZMIfqh9ZPex+MLTwxNymcO8N2qQLz1lpUlJSuPTnKS79eSrLemWqlQNUz1RCFAXyWr0QIhNNW2SmLZddv0IGBpl/e0l7eG/cuDFdu3bN9q9OnTpZYh07diz93zt37nyjvwiIF278d5UB5Xqq/bvx31XuXVINnuNau5La9d1Sp9/x0Ww01LzEu3dJ1YrEuUp5ta+sWpS2xM7FAWVyMncvZm5xUq9DQ4bPG4eBoQEPrt7ju16f55gYnbrte9be2UKn4d3Uztc3NMDRLfWLul/hJe8CLt8DwLm2m9r5adMf+WZtgVNQ8dJe4Sppp761F7x42I/P8Epwja5v0Xz0O5injpD8ssqtVa8I3/uvaLRGuX8552u6Yur07BKQ2o6XHfsKZZh/ZhWfb59ByVLqy8LKoRQA4Y/Vt1p8Xa7/d5X+5Xqq/bueoZ5yK+B6Kjfx0uopl1zWU426NqHr6J5YlFafZKidmvy8fuqK2vnudTxS51/N8ZgK05GjpzAwclL7d+ToKc5fuAhAw4ZZn00yTj9z1kej7V3yPch/p/6mQ4dWaudbWVliZmYKQGDQix+LFQoFG9YvSU+M/jBnCcNHTHrjn4eeXlLV//bZ1P9p05/43NHaPiSm3iPMcrifpCVpE4pgv7qaCk4tC8dsyiJtepAWy6KpVy+GH5pDm68HZLtMSXvVvSGqkO8N2qQLz1klbC1pOKAt9d/Ppi5zssGhsgtJ8Ylq3+AR+aBUvr6/YkaSo0KIPElrvRkYmPWX9MjISGJjMz8g2tqqfo3s3r07c+fOzfZv5MiRmdbz9fXll19+wcbGhgYNGuDj48PatWu1c1CiSDm35z8A6rZrgLll5leB9BQKmvVuCcCJHZr1dZeXeM8ePeX+lbsYmRjRuEeLLDFbvNcGgIuHLhATEZ0+3cndmVELvdA30OeOzy2+f28qz1/x2pH/jQcoFAre6tYMfYOsI3+26tcO0xKmPH4QnJ7EKgxX95wBoGrbephaZn79Tk+hR513VV1x+Hof11q8e/9dB8C9uScW9ta8zLy0Be7NPVXLnr6ePr1W9ya0//Q9qnWon2WdsrVcqfhWNWLCIrm86z+N9r2wnd+j6s6kdtv6aq/ppu++DcAp76OFEi87T+4HExr4DIVCQbP3WqtdptUA1UA/Fw+ez9e2tO3sK+qV5rmsp/ISL2M91URNPfV2aj3l+1I91aRHC/pO7k+9Dlm7w3Gt5U7Vt2oQGRbJ6V0nssw3MjGiTEVHAO5fuavRseki7x3/ANDtnfZYW2dOjikUCj78UNUn+8bftmsU7/ARVSvaoR99oHb+6FGDUCgUXL5yHX//F89X0776hF49OwOqUek//2Jm7g6kiLr7j6oLp/Lt62Z5tV5PoUel3qr6/9b2rNdgQQk8pbpHOLeogblD1vuJSWkLnFvUACDovxta24/CdnOPqizc29XFRM29uEZqWVzdob2yeHhK9cNkhWY1sHAqnWW+lYsdFd9W3dv9DvpqbT8Kmy48ZymTlXT5ZiCdv/4QEwuzLDGbj+yavk5Cat/BQug6SY4KIfKkcePGgGp0+5cdPZr1i3G9evWynQewYMECunXrxpYtW9KnxcfHM2XKFJRKJV988QUzZszA2NiYBQsWcPdu0f2yJQqG/40H+Bw4h5mFOeNX/I8SqX0lGRobMnT2aJzcnQn0e5Se0ElTwrokZVydsHOxL5B4fy7dBsAHXwykcqNq6dNrt6lP9/G9USqV7FrunWmdj2aNwsjEmLDHocwfMpOYiBheZe8vu0hKSMS5cjmGzBqFsZlJ+rwmPVrw3mcfArB51obXNlKsOo9v+HPjwAVMLMx4f7kXpqnn0cDYkB6zh2PnXpandwK59u+5TOuZWZfExtWRUi52+Y5367AvAZfuYmRmwoA1k7Cp+GJEc6uyNvRbOREz65I8vunPtdQvfEB60rP1xHex93jxGq1TjQq8v3QCAEeW/5Wptakue3TjARcPnMfMwpzRyz9J76fSwNiQwbNH4ujuTNCdAC78eybTeiWsS+Lg6ojtS5+RvMbLrZSUFP5evgOAd8a/S8N3mqTPMzYz4cPvh1O9eU2iwiLTl9NVOdUrwzLUK+cKoJ7KKd7ODPVUlQz1VJ0c6qn//lIlOXp9/D5lPV4MNFOhhivjlk0CYNfy7WoHZCrr4YJCX5/wJ2FEP4/S/ITpmMuXr7N7934sLS3YsuknSpVSJceMjY35aeVcqlapxI2bfuxITaKmKV3aGg8PVypWLJdp+tx5y0lKSqJdu7eZ+f3nGBmpBnTS09Nj+LABTP1yIkqlks8//z59ncqV3Zj86VgA1vz8G7NmL9bmIeuU0Bv+PNjvg7GFGe1WjMc49XrXNzakxZxhlKrkRJhfIPf2ZL6fmFiXwMq1DBbl8t8N08NDF3ly6S6GZiZ0+PkTLDPcT0qWtaHDKi9MrEsSetM/PZn7Jnp6wx+/Az6YWJjRY8V4TDKURcfZw7BxdyLEL5CbL5WFqXUJSrmWwcol/2Vx//gVAn3voG9kQI8VE7Aq96J+tPUoS+9fJmFgYsS1P0/x+Mr9fG9PV+nCc1ZMaCT3Tl3D0NiI7jOHYWiqGrROoa+gydBONBzQlvjoOA4v0e17tBAZSZ+jQog8+eCDD9i6dStLly6lbt261Kih+tXc39+fOXPmZFm+c+fOLFiwgF27dlGnTp1Mo80fO3aMNWvWkJiYmB4HVAnTe/fu0aJFCzp16gTA6NGj+fHHH/nss8/4/fffcxzNVbz5fvl8JWX/cKFq4xosOPUTAX6PsHOxp4RVSaKfR7NwxOwsicK2AzvRc2Jfnvo/4eOmI/Md7+zfpziyeT8t+rbhi83f8ejWQ/QNDNJbTW35YSO3zr1oTeJauxKV6lUGIEWZwviVn2Z7fM+fhLF49FwAAv0CWD15OUN/GE2z3q1o0LkxQXcDsbCxpJRD6fRtnf07a79Pr9vOL37G3sMZ18bV+PTkIp76BWLtYoeZVQliI6LZOHx+lvPYaGA7Wnv1IuzRU+Y2nZDveL+NWsDgXz/HsXoFJuyfw7M7gegpFJQu74BCX0Howyf8OmweyuQXrw35eh+nSrt6VO/YgDG7v1eto6/Azs0JgDO/HeD4T7u0dNa0Y/0XK/nMYzpVGtdg7skVBPkFYONiRwmrksRERLNk+A9Zzl3rgR3p5tWHZ4+e8GnT0fmOlxcHN+zBuWp5WrzfhhGLJtL3i4GEBYdSxs0JE3NTosIiWTxsNuGPQ/O9LW1Lq1eqpdYrgS/VKwvU1CvtMtRTE7Opp3IT7+zfpzi8eT9va1hPgWqE+brtG9Cg41vM+HsegXcCUOgrcErtvuPgxr3sXrlT7TFb2amSiEU5MZpm9NgpHKnmTcuWTbh35wzXb9ymYgUXSpWyJjz8Oe/2HpLlfI8ZPZivpn7C/fv+uFVqlD790qVrjBj5P1Ys/4H/TRrD8GEDuO13D+eyjtjb25KUlITXxKn8s+dg+jrjxg5N76qoVq3qHDmUOYmd0S9rN7F23eYCPgOF6+hnv9DdoyxOTarR//QCwvwCsXCxw8SqBPHPo/l32AJ46fxXH9SOeh/3JNL/KRsbT8z3PuwdvpCuv3+GbY3yvHdoNmF+Qegp9LCsoLqfRDx4wp4hP5KS/Ga/hvrv579g+0dZyjWuxuhTCwjxC8TKxQ5TqxLEPY9m+4isZVF3YDuaTuzJc/+nLG+a/7LYMXoR7//+OWU8KzL84A+E3A1CT0+P0q5l0FMouH/iKv9MXp3v7eg6XXjO2j75J8bs+p4anRvi1qw6ofcfY+lYmhI2liTGJfDrsHmEPXqq9XNR7MiATFojyVEhRJ64u7szefJkZsyYwXvvvUejRo0wNDTk1KlTuLu78/hx5r4TTU1NWbBgASNGjODbb79l3bp1uLu78+zZM3x9Va++TJkyhSpVVANbXLhwgbVr12JmZsa0adPS4wwZMoRdu3bh6+vLmjVrGDZs2Os7aKFzwoJD+KrLJLpP6EOdtg1wqVyOmIgYTu48yvb5m9UOgqSNeKs/XcbNszdo3a+dqoWVnh63z99g7y+701tfpck4eEupMqUpVSbrq2FpnvpnHnDgxPbDPLr5gE4julGlUXXKVnImJiKG8/+eZs+av7hxWjf6wowIDmVply9oNaEnVdrWxb6yC3ER0VzceYIDP24j5H7wq4PkM154wDOWdf2Cxh91oFrHBpQu7wDAU78Aru45y4k1fxOnpsXu5nGL8f+oI7V7NqV0BQeUSUrunb7OmY0HuPSn7g4sk52w4FC+6fIp70zoTe229Slb2YWYiBj+23mMHT9u5kkuy6Kg4+Vk3WcruHrsIi37t6Nc9YqUrVyO0MBnHD14gD0rd2Y7SrquCQ0OYWqXSfTIUK9Ep9Yr2/JQT+U13upPl3Hr7A1apdZTenp63MqmnkqzdOx87gzpQtOeb2NfvgzK5GRunL7KgY17ObXzmNp1QNXyFSAm8tWt4nVdQEAQDRp15MsvvHina3s8a1QhPDyC3zd588238/Dzu5ereOvWb+Hy5ev8739jaN6sEZ41qvDsWSibNu9g/vwVXPC5nGn5Jk1edPNRt45njrEPHMy+TIqq6OBQ/ug0lXpePSjfrg6lK7uQEBHN7R0nOTdvG8/vZ99Xd0GJCgjhj05T8RzSngqd6mNZQXU/CfcL4O4/57i06h8SNHgDpKiLDA7lly5TaTqhB+5t62CXei++uvMkx+dvI+w1lEVEQAhru0ylwfBOeHSsj7WLHcmJyTw6f5srfxzj0pYjpCgL7+2Z10UnnrMePWNZly9o5dUT9+aeOFRxISYsEp/txziydGeOg2IKoYv0Ugrz3TshRKFZvHgxS5YsYcKECYwePTrL/zM6d+4c/fr1o0GDBmzYsCHTvKNHj7Jq1SquXr2KoaEhrVq1YvLkyTRu3BgHBwcOHjyYaXl/f39WrlzJ8ePHefbsGdbW1lSuXJmPPvqIt956C4C4uDi6devG/fv3+eyzzxg0aFCmGBcuXOCDDz7A0NCQHTt24Orq+srjTXwmr+Hrio/qTirsXRCpXPRMXr2QeC2C0M7oviJvEqRlhs7YFHT61QuJ12KJfcvC3gWRKlxenNIZkXpyv9AlM+7/Vti7oFXxl/59bdsy9mz/2ralCyQ5KoQoFiQ5qjskOao7JDmqOyQ5qlskOao7JDmqOyQ5qjskOao7JDmqWyQ5WnCKW3JUXqsXQgghhBBCCCGEEEKHpaQkF/YuvLHkNychhBBCCCGEEEIIIUSxJC1HhRBCCCGEEEIIIYTQZdLtj9ZIy1EhhBBCCCGEEEIIIUSxJC1HhRBCCCGEEEIIIYTQZUppOaot0nJUCCGEEEIIIYQQQghRLEnLUSGEEEIIIYQQQgghdJn0Oao10nJUCCGEEEIIIYQQQghRLEnLUSGEEEIIIYQQQgghdJkyubD34I0lLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl0mfo1ojLUeFEEIIIYQQQgghhBDFkiRHhRBCCCGEEEIIIYQQxZK8Vi+EEEIIIYQQQgghhC5Tymv12iItR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXyYBMWiMtR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXSZ+jWiMtR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXSctRrZGWo0IIIYQQQgghhBBCiGJJWo4KIYqFj+pOKuxdEKl+Pj+3sHdBpPqq3peFvQsilbH8Xq1TDPX0CnsXRKo+ZRoU9i6IVEeIKuxdEKnM9eRrvK6ISUku7F0QxUiKXG9aI0/iQgghhBBCCCGEEEKIYkl+chJCCCGEEEIIIYQQQpdJn6NaIy1HhRBCCCGEEEIIIYQQxZK0HBVCCCGEEEIIIYQQQpelSMtRbZGWo0IIIYQQQgghhBBCiGJJWo4KIYQQQgghhBBCCKHLpM9RrZGWo0IIIYQQQgghhBBCiGJJkqNCCCGEEEIIIYQQQohiSV6rF0IIIYQQQgghhBBCl8mATFojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl8mATFojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl0mfo1ojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl+l4n6MnT55kxYoV3Lx5k8TERKpVq8awYcNo3ry5xjF8fX1Zvnw5Pj4+xMTE4ODgQKtWrRgzZgyWlpZa23dpOSqEEEIIIYQQQgghhMiT7du3M3jwYHx8fPD09KR27dr4+PgwbNgwNm/erFGM/fv3069fPw4fPkz58uVp3rw58fHxrFu3jt69exMaGqq1/ZeWo0IIIYQQQgghhBBC6DIdbTn6+PFjpk2bRsmSJfntt9+oVKkSAJcuXWLw4MHMmDGDt99+G3t7+2xjJCUlMW3aNJRKJYsXL6Zdu3YAxMfHM2HCBA4dOsTSpUuZOnWqVo5BWo4KIYQQQgghhBBCCCFybePGjSQkJDBo0KD0xCiAp6cnw4YNIz4+/pWtR2/evMmzZ8+oXLlyemIUwNjYmNGjRwNw9uxZ7RwA0nJUCCHyxMzCnB5efanXviFWdlZEhEZw+YgP3gu3EhLw9LXFa9LzbdoO7IhzZRcS45N4eO0e/6z+C5/92d84qjerSbtBnXCtVQkzCzOiwqO4feEm//y0k9vnb6pdZ+XlDZhZmGcb84T3EVZ4LdT8gN8ASqWSfiM+xj8giON/a/aqSHFiYmFOG6+eVG1Xj5J21kSHRnDryEUOLvImPODZa4mnp9CjUf+21Hm3OXZujgA8vRuEz/ZjnFq3F2Vy1l/fq3WoT/8VE3Pcl9X9vufOiSu5PobCZGZhTmevd6nZrgGWdtZEhUZw9Ygvfy/6g9A8lEde4pmUNKX9qO7U7tCQUk62xEXGcP+iH4fW/sP1Y5c03na7Ud3oMbkfp/44zPpJy3K977rKzMKcLl69qZV6TiNTz+nuRVvzXEa5jWdS0owOo7pTJ7WMYlPL6ODav3NVRkWVuYU5PVPvxdZ21kSERnDxiA/eC7fwLA/39oKI125gRwZ9O5w5g2fgc/Cc2mXqd2zExBWTc4zz/QfTuHKi6JShuYU5vbzey3Luti/cnOeyyG+8dgM7Mfjb4fwweHq2ZQFQu1U9Og7pSsUabujpQYDfIw5u2sexbYdITkrO9b7rEjMLc7p69aZOu4ZY2lkRGRrBlSO+/JWPeiq38QyNjWg9uBP1O7+FfQVHFAYKQgKecXHfWfas3ElUWGR+D1OnFdV6Ko2enh7feM/CvpwDI2oPzPX+Fns6Olr9sWPHAGjTpk2WeW3atOHHH3/k6NGjjB8/PtsYCoWq7WZISAhJSUkYGLxIV4aFhQFotc9RvZSUlBStRRdCCB0xoFzPAotlZmHOV94zcXIrS2xkDEH3ArFzsaeEVUmin0cxo89U/G880Hq8PpP703V0T5RKJQG3/DE0NsShgioB9Me839m5aGuWdd6d9D7dxvUGIPp5FE8fPcHO2R4zC3OUycms/2o1B379N9M6NmVt+fHESuKiY3lw7b7aY7h81Fft9tT5+fxcjZbTdQtWrGX1hs1YWVoU2eToV/W+1EpcEwtzRm3/Gjs3J+IiY3h2L5hSLnaYWZUg9nk0P/X9luAb/lqNp9BX0H/lx1RpUweAkAePUSYlU7qCAwqFgltHL7HuozkoX/qi2tqrF228ehHy4DGRT8LV7s+ub9cTcPleLs9KzsJJKtB4GZlZmDNp+3eUSa1jntwLwsbFHnOrEsQ8j2J+368JuPFQq/FMLcz41HsGDq5OJCUk8fhuICYlTCld1haAvxdt46/5r/4c2Vcsw+d/z8HIxEiryVElr/fx2MzCnE+3T1d7TqOfRzGv77Rcl1Fu45lamDHF+/tsy2j3oj/4U4MyKmiRKdr7bGRkbmHO196zcHIrS0xkDMEv3Yu/7fNlru7tBRGvfPWKTN08HdMSpjkmHXp59aXXxPd4/CCY8CdhapdZ/80a7l2+o/H+q5Pymj4X5hbmfOM9Cyc35yznLup5FN/1+YKHuSyL/MYrX70iX22egWkJ0xyTo+9NHkC30b0AeP4snGcBT3Fyd8bEzITLx3yZN3wW8TFxmp+M7I5J7/W3cTKzMOez7TPS65XH94KwdbHDPPWantN3Go9y+fyb23jmliWYtOlrnKuUR6lUEhLwlKT4RGzLOWBgaEBIwFPmffANTx4EF/ThZysm5fUlvItyPZWm7//60W3su0SGRmglOfrbA+8Cj6lLYnfNf23bMu3ysUbLpaSk4OnpSVJSEhcvXsTIyCjT/KSkJGrUqIGxsTE+Pj7o6empjZOYmEjbtm0JCgqic+fOeHl5YWtri6+vL1988QVBQUEsXbqUVq1a5fvY1JGWo0IIkUtDZo/Gya0svgfPs3TsPOKi4zA0NmTQ9BE079OKMUs+5rN2E0nRsE+YvMSr1aouXUf3JDIskjkffse9S34A1GlbnzFLPqHnxL5cO3mZ2+dupK/j+XZtuo3rTVJiEhumrebgxr2AKon0zphe9PrkfQZ8MxQ/39s8uHI3fT3nyuUBuH7qCvOHzMzv6SvyUlJSWPbzRlZvKJoJ0deh56yh2Lk5ceOgD7+PW0xCdBwGxoZ0m/4R9Xq34L3F41jYfjIpSs2+aOclXsP+bajSpg5xkTFsGD6fu6euAeBSx52BayZRqbknzUd04fDSnZm25VDZGYB/Zv7G1T3ae3Xndeo3awRl3Mpy+eAF1oxbQHzq+Xt/+lAa927JkMVefNf+E43LIy/xBvwwCgdXJ+753mbVqPmEBYUA4Nm2HsOWfkyn8b24deoKN09dzXa7enp6DPhhFEYmRtkuU1T1nzUy/ZyuGvdj+jntN30YjXu3ZOjiiXzb/hON7yt5iTfwh9HpZbRy1Lz0MqrZth7Dl35C5/HvcvPUVW6eKlqtpjU1NPVe7HPwHIsz3Is/mj6CFn1aM27JJ0xu56VxGeQ3nmtNdyb9/AWmJUxfuS3nKuUB+G3mOs7+85/Gx6yrhs0eg5ObMz4Hz7Fo7NwM524kb/dpzbglk/i03QSNyyK/8VxruvM/DcqiUecm6YnRLXM3BbD4BAAAIABJREFUsmPpNlKUSswtzBmzcCK1W9Vj2KzRLBn/+pIbBenD1Hrl0sHzrMxQrwyYPowmvVsxfLEX03JRT+UlXv8Zw3CuUp4gv0esGDOfgJuqH3lKOdowbOEE3OtXYcSSiXzXNeeW1EVVUa6nQPVDTrex72p8vEKN19jnaEREBBEREVmmW1hYYGFhkf7/58+fk5CQQKlSpbIkRgEMDAywtrYmJCSE6OhoSpQooXZ7hoaGLFq0iLFjx7J79252796dPs/Ozo7Vq1fTpEmTAjgy9aTPUSGKodw0GJfG5ZmVcXWiXoeGxEbFssJrIXHRql//E+MTWT15GQG3/XFyd6Zeh4ZajffO2NSH71kb0hOjABf2nWXHwi0oFAq6js7cWrbj0HcA2L/un/TEKIAyWcmORVs5s/sk+gb6tBvYKdN6zpVdAHh0S/OWfm+qZyGhTPjsO5b/vLGwd0Vn2bo6Uq1DfeKjYtkycRkJqdd0Unwi2yf/xOPbj7B3L0u19vW1Gq92j2YAHF62Mz0xCvDwwm32zf8DgLq9mmfZnoOH6np/cjsgl0eum+xdHanVoQFxUbGsnbiY+Azn79fJKwi6/Ygy7mWp1b6B1uJZ2FpRs219lMlK1oxdkJ50A7i07xzHf98PQOO+ObcEeHtQB1zrVSYhNj5X50DX2bs6Ujv1nP780jldP3kFgbcf4eheltq5KKPcxstYRqteKqOL+85xLLWMmryijIoqR1cn6ndoRGxULMteuhf/NHkZj277U9bdmfoa3tvzE09PoaDdoE5M3TIdSxvNXh90Sa23At6A+3TGc7fUa8FL525pvsoit/H0FAraD+rMV1tmYGlj9cpt9RjfB4CDm/bhvXhrekIpOiKapRN+JCo8kibdmuNa012jfdclDq6O1OnQkLioWNa8VK+snbyCwNv+OLo7U0fDeiov8awdSlG301sok5NZNWFhemIUIDTwGctHzyMuKpZyNVyp1LBqAR69bijK9ZSlrRUf/zSFXhPfy8URi8K2bt06WrduneVv3bp1mZaLjY0FwNQ0+yS5iYkJANHR0Tlu08XFha5du6Kvr4+npyctW7bE1taWJ0+esHr1asLD1b/VVRAkOSpEETJlyhQ8PDzYuXPnqxfOxu7du5k0aVKmadu3b8fDw4Mvvvgi0/QTJ04wdOjQPG9LE23btsXDw4NHjx5pdTsFpUmP5igUCnwOnCX6eVSmeSlKJUe3HgSgURfNftXKSzy7cg64161MUkIip3YeyxLzyOYDANRoVhMzCzNA9RBTqX5lAM78c0rtvvgcUL0GU756xUzTnT3KAW/Gl678OHH6PJ3fG8rBY6ewKW2N18jBhb1LOqlW9yYoFAquH7hA7PPMD0ApyhTObz0KgGeXt7Qaz8LBGkDt6/sBV1SvxFs6lc403dDk/+zdd1zV1f/A8ReXpSAb2SAKiAsVxL1S05y5cmVqqTnKUsvSsvKXWqaZNr45Ki2zoVmWZWblzL0HDhyIAxBkT9n8/rgXBO+9cFlyr76fjwePh97P5/O+h3Mu53zu+Zxhhr2XE7lZOcRff3BT8qpT20GdUSgUhOw8QYaG/Du0aTcArfp3qLZ4FtaWHNi4k8O/7CU+Qn39sihV3WLn6qB2rJCjpxNPzhpF3M0YDv28R6e0Gop2g5TtwNmdJ8jQ0A4U5mmwjmVUkXgW1pbs37iTQ7/sIT7ijlrMqMuq0VmllJEh6zi4KwqFgpNltMXt+3eq1nim5qa8t3Upz777PCZmJvzy8UZib6mXR3Fmtcxw8nImJyuH6Ou3dUqfPutURt7t3aS8x9G1LCoaz9TclPe3flSsLDaUWha2TnZ4NVLeL/35pfp9enpKOge2KNurjoPUH8zpu8J65czO4xrz8YCqXmmt4/1vReI1bNsUhUJB7M073DyvvrRNSmwS11VLR9S77172YWCo9VRA5xZ8tPtzgp9oS+KdBH78YL1O6RNaFOQ/sJ9x48axc+dOtZ9x40ouh1C4VqhOyS9l4FViYiKjRo3ixx9/5Ouvv2bTpk2sWrWKXbt2MWzYMA4ePMi0adMqnHVlkWn1QjxCTp48ySuvvEKbNmU/1Y2JiWH8+PG4u7s/gJQZDp+Wyt33tG1cdPXkZQAatm5cbfF8A5XX3Ay9QZaGEVQp8cnE3IjGuZ4LPoH+hOw9hZERfDJ5CQ5udYm4pHndOnML5RM9hUnJBs6zsfJmP+LKo905eu36TTLuZjKgdw9mvzyJy2HXazpJesmzpS8AN09c0Xj81inl695t/Ks1Xkp0AjYu9rg2qcel3adLHHP28wAgOTK+5Ov+niiMFcRcjtC4WZMh8m6pHKEUpqWOCVfln28b3eqsisSLDovkhze/1BrTS/UlNvZGjNZzRn8wmVqWtVg96UOadG2pU1oNRVl5eu2Ush2oqjLSFC86LJLv3/xCa8zCMnqQ6/g9SL6qPLtyIlTj8SsnlXnpr2PbXtF4puameDetT8Tlm6ydu5rQoxfoMrRbqe/l6V8PhbExEZdvPRT1lq/qvuiy1rxTfn4btdZtZGBF45mamxWVxZq5q1RloX3ktIObIwBZd7OIuqr5gX90uLLz2qel4Y0cbaBK81Wt9Yqy7vdr06ja4l0+cp6VU5eWugSMeW1zQLlk1MPGUOspdz9PalnWYt8vu1k//+uiGWlC/90/fV4bCwvlYJysLO0zezIzM0ucq8maNWu4du0ar732Gm3b3huxbGZmxrx58zh+/DjHjh3j+PHjBAcH6/pr6Ew6R4V4hORrWaOkZ8+etGjRokTlJ9PpNXP2dgHQ+oS0cGd5Wyc7zC1qlbnofkXiOddTXhNXylPa+MhYnOu54OztQshe5dT5s3tOlZqWoJ7KaclRV+7d1JuYmeDs7Up+Xh5Z6XcZ9PIwfAIbYmxizO2wSP77eXeJ9UkfZs2a+LNp7Wc0auhT00nRaw7ezgAkaPl8Jqp2n7Wqa4uZhTnZGaVPka5ovGMbduPZ0peuUwZw4/glwo8ob/5dm9aj5yzlpmSHv/u3RCwXf+V6o3euRNCgfRNaDOiAfT0nsjMyuX70Esc27iYzJaP0DNAzdVV1THwZdYxNXVvMLczJKqM8qjKeuYU5Xcf1psPwbmRnZrNzzVaN53Ua1YNGHQM4+NNuQg+EPHSdo07epdfp8arPuDJPy25XqjKeuUUtHhvXm47Du5Odmc2ONX9qPdeQOXu7AnBHS57Flbttr1i8nKxcVsz4mIO/79O5o7P40jdNOgTQYUAnnOq5kJmeyaVjF9i94V8yDKjeKsy72FuaH5bERSrztLxlUd54OVk5fD7jYw7+/l+5Op2NjIwwMjLSeB9tbGoMQF13J53j6Yu6ZdYrhXW/buVSkXiJ0QmcKGVNXXt3RzxU6+8Wv5d9WBhqPRV25gpz+72qdVNXYfjq1KmDhYUFiYmJarvMg3JDpsTERMzNzUvtbD169CiAxnVFTU1N6dChA+Hh4Vy4cEE6R4UQ1cPKygorK6uaToZBsLJXVuhpiakaj6clpRU716rMG5OKxLNyUF6TquWa4tdZ2ZX9tA8goGsgzbsGAnDwt/+KXnfz9cDE1ITcnFze274Ms1rm967p0pLHx/Xhj89/4eelP+r0PoYsMODhW7+qOliqPtMZSWkaj98t9rqFvVWZnaMVjXdsw24sHazpNm0QE398i8Sbd8jLzcOxvis5mdn8/eFGDqzdXiJW4WZMjboH0uLJklOYm/QMpvOk/nw3eRk3T2oexaqP6qjyL11L/hXPV0t7a7Iy1Ke9V3U8r4AGjFkyhbr1XDC3qEV8RCzfzV5F1CX10em2LvYMeWMMybFJ/LLw21LTZqju5anmOr14ntbRoV2pinj1AhowZslUnIqV0bezVxKlZeaBobOu4ra9ovFysrLZ/+te3RPOvaVvAnsE02Fg5xLHgnu1of+kQSyb9EHRKDB9V5h32u5xSuadtc5lUd54yrLYo3O6Cx9ym9Uyw7WBG1Fh6utWe/gp2xhLG0ud4+oLqzLqlfRy1lNVHQ/gqTljMDU3JTk2kYsHQ8o839AYaj2lbXacqKAHuCGTroyMjPD19eXs2bNcv34dX1/fEsfDw8PJz8+nYcOGpcYp3PzJ2NhY4/HC13Nycqog1eoevvHmQjxioqOjef/99+nbty+BgYEEBATQo0cP5s2bR0zMvafkc+bMYfTo0YDyqYy/vz9z5swB1Ncc/eyzz+jatSsAkZGR+Pv7M2bMGI3n3p8Wf39/undXn3Z05swZJk+eTNu2bWnVqhXTpk3j1i3t07QzMzNZtWoVAwYMoHnz5rRu3ZqJEycWPVGqKYW7JOdkZms8nl3sdV12VK5IvLKuUV6XpXMaXBq4MWX5ywCEHj7PiX/u5XHhTvUmpiac3nmCuX1e4Tm/4cxoP4nfPt0EBQUMfGkYj4/tXeb7iEeDaRmfz+Kvm5qX/fmsTLy48GgSb8WiUChw8HbBydcdhbGCrLS7GjtbXVQjsIwURvy54Dveaz2VtxqOZeWQeVw7fAGrujaMWzMLG1f7MtOtLwrrgGxd6hgdyqMq4rn6eeDR2LtoKQ8LG0uadQ/CxEz9mf3T70+itrUFG99ZQ0ZK6Yv4G6rytAO6/M1URTxXPw887yujAC1l9DAo1+e62EPCBxWvNF6qkXJGCiO+W/A1U4OfY6zfMOYNnsOFQ+ewqWvLrLVzDWa92PLlXRXXWTrE0yYlPpmrp5VT9Ae/NEztuIObIx2eVHZem5ga3t+RPrYlxfV6/knaDFCONtu85Edys6qn86QmGXI9JR5+nTsr67cdO3aoHSt8rbB/QZsGDZRL+Ozdq975npeXx+HDypHjjRrptnxHeUnnqBAG7OrVqwwcOJB169ZhbGxM586dadWqFQkJCWzYsIGRI0eSlqbsAAgMDKRTJ+WC2g4ODgwYMIDAwECNcf39/enZsyegXBdkwIABdOig20YQmuzatYvRo0ezZ88efHx8aN++PceOHWPkyJFFT4iKS0lJ4emnn2b58uUkJCTQoUMHGjduzKFDhxg7diwbNmyocFoqq6zpIwqFUdG/dVmZoCLxdJnCUrgwdlnLI7g0cOONH97F2sGGpDuJrJj+cYnjsTej+XfdNn79eCOfvbCUmxeuk5udS3xUHL989CMbFikXVR/66iidvrSLh19Zn0+jcizaXpl4PWYMZfSK6VjYWfHDtE+Z13Q8/xcwgQ0v/w+FsYLB702g31vPlLjmwr8nOPnLf6ybsJT9a7aRFptMXnYuN09eYe2YRUSGhGNhZ0W3aYPK9TvUpPLkXwFlV1pVEe/C3tPMDBjHa0ET+HrGZ+Rm59JjQj8mrSq5WWCbwZ0J6B7E6b+PcuqvI2WmzVCVnafF2oEqKaOy453fe5rpAeN4NWgCa2d8Sm52Lo9P6M+UVa+V+f6GqDxtsS6Ne1XHK82Jf47y38+7WTr+PbZ99TvJsUnkZudy5eQlFo15l/CQMKzsrBg0Tb3DTh8Zclls+ugH8vPz6TT4MZ6d/zwObo4Ym5rQqE0TZn/zdtE68bk5eZV6n5pQrvvVKqinyhOv+7g+DJ87FoBDm/dyQLWR0MPGkP82RBV6gBsylceQIUMwNzfnyy+/5Ny5c0Wvh4SE8NVXX1GrVi2efvrpotdv3rxJWFgYqan3Ri6PGDECgFWrVnHixImi13Nzc1myZAmXL1/Gz8+Pdu3aVTT3SmV4j62EEEWWLFlCUlISb775Zold4+Lj4xk5ciQ3b95k165dPPnkk4wYMQIfHx/279+Pj48PS5cu1Rq3V69eNG/enH///Rc7O7tSzy1Leno6b7/9Nnl5eXz22Wf06tULUHaATpo0iVOn1NfBXLBgAefPn2fgwIHMnz+fWrWUI1cuXLjA+PHjWbhwIa1atcLP78EvaJ91NwsTM1NMzU01Hjcxu/e6tiexlY1XuIaftmuKX1fa6NL6zX2Z9fVcrB1tSE1IYcmY+SRGl9yg5vLxUC4f17xQO8A/32xj8PTh1LG1wr91Y87tP6P1XPFoyLmbhYmZSSmf6Xu3HqV9PisTr66PG91fGkx+Xr7aNPgzvx8k5koE035fSKeJfTnxy39EX1ROFT74dclp9sXl5eSx78utjPz0JRr1CIK5a8tMuz7IvpuJiVkdrflnWs7yqIp4qfH3Hood/W0f0WGRvP7rewR0D8K/fVMuHTqPlaMNw955loyUdDa8vabMdBmyLFWemmjN03uv61JGVRGveBkdUZXR7F/fV5VRMy4dOqfxOkOlD217RW3/WvNavQB5Obls/eI3XvrsVYIeD2at+qQfvZN5N4s6VZh3VR2vNGf/O803875k3LyJPDGuH0+M61d0LPr6bb6cs4JXVs/hbprhrAFb6N5nWvOD8Ir/jVQu3oDpwxg4U9mhcmbnCb6ZvbLM9zZUhlxPiYefh4cHs2fPZv78+YwcObJoQ6UjR46Qm5vL4sWLcXC4N4Ph2WefJTIykkWLFjFkyBBAObJ00qRJfPHFF4wePZqWLVtib2/PxYsXiYqKwtHRkY8//ljrtPvKks5RIQyYm5sbvXr1KpryXsjBwYHHH3+ctWvXcvv27RpKndKOHTuIi4ujf//+RR2joNz97r333qNv374lzo+JieHPP//EycmpRMcoQJMmTXjppZeYP38+69evZ/78+VWe3npN6zPm3Ykaj62f9xVpialY2tTB0raOxnPq2N1buzU1PrnM96tIvDTV+kyWttrXia1jp4yXkqA+MhegRbcgXloxC3OLWiTdSWTxM+9q3cW+NHk5uURdjcAnsCEOHnXLfb14+GQkplLbxpLaWj7TFsU+0+nxmj+flY3X5IlgFMYKrh44p3F90OiLN7m44yTN+rQhoG/bos7RskSdvwGAjYs9ChNj8nP1f/RPWmIaFqXUMZYl6piyy6Oq4wHcDLnGpYMhNOnSEr92Tbh06Dwj50+gjp0V37+xmuQ7iTrFMVTpiWmltgOWdvde1yVPqzoewI2Qa4QeDKFpl5Y0bNfE4DpH6zWtz7PvPq/x2DfzviRV1RbX0dKuWhX7XKfo0LZXdbzKKNwExd7FAWMTY/JquN7yblqfcVrKYt28L0lLTKVOFeZdVccry7/f/kXokQt0H9UTd18P7qbf5cKhc+z5aWfR7uBJBlinpZdxv1q8XknTqZ6qXDwjhYIx702iy6jHATi5/QirX1pOXk5ume+trx7lekqUgx6uOVpo9OjRuLm58dVXX3Hy5EnMzMwICgpi6tSptG/fXqcYr776KkFBQaxfv56QkBDOnTuHk5MTzzzzDJMnT8bJqfo2tJPOUSEM2P/93/+pvXbnzh0uXrxIaKhytF91LVisq2PHjgH31iEpzsfHB29vb65fv17i/Ly8PFq2bFmiY7RQ4dIA1bX2aG0rC/xbN9Z6LCosEmdvV+p6aK6YHd2VHYSJMQk6PWWtSLzCRf7rltIZWXhdzHX1zvEOg7rw/NJpmJiaEHMjmiXPvMudm5p3cQXlDahCYaT9C5WRctpNbrbh3pCKqhMbFoWDtwt2Wj6ftu6OAKTEJOo0Cq4i8exUr8WGRWmNGxd+u8S5hUzMTbWuVWak+qzn5eYZRMcoQExYJE7eLlofXtir6oqkmASdyqMi8YxNjXH0dCIvN584LXXNnfBomnQBK0dbAIL6KqdMjV40mdGLJmu8pv1Tj9H+qceIj7jDW52mlZl2fRVdlKea2wGHcpZRReIZm5qoyiiv1DJq2gWsHG3KTIO+sSilbbdQte0u3q5a29WKtO1VGa8spuZm5GRpjqOqtsjLzavxjlGA2laWNGqteYPD2laWRIVFqPKuqu6zqjaeLm5dusG6//tK7XXvpsr19G5dNryNzW6HReHk7Yqjls908XpFl3ysTDwTMxMmfTaToCeUI9P2bdzJt2+spkCPO4108bDXU+LR0K1bN7p161bmebt2aV/+QtcYVU3WHBXCwF28eJG3336bgQMHEhgYSOfOnZk0aRKHDh0Cyl5zsrrduaPcvdPZ2VnjcQ8PjxL/Lxzp+s8//+Dv76/2Uzj6NDo6ulrSG3r4PGPqDdH4E3r4POFnwwDwCdS8256v6vWwU7rtZl2ReOFnrwLg2dhb41QYawcbnLxcyM/L49qZqyWOBfduy6SPXsLE1IQb58NZMPTNUjtG3/7lfb4J+4m+kwZqPG5saoKbr7IMo65GaI0jHh0RIeEAeAX6ajxe+Pqt01c1Hq+KeJmpdwGwcrLVGrewUzUzTXmuS2Mv/u/8WhZcWqf1Otcmyl2h467V7Ij88rgRcg2A+lrqmPqBypFM13Usj4rE6z9jOP+36xOGz3tWa1xbF+UmV8kxCQBcPRaq9SfxtnL5j5TYJK4eC+X6mTCd0q6vboQo098gUPNSMYV5Gq5zGZU/3oAZw5i/6xNGzHtOa9x7ZWR4o94uHj7P0/UGa/y5ePh8UbvqG+iv8frCtvjqqcs6vV9Vx9PGq7E3ay/8wLrLG7F1stN4Tr0m9QG4fU199/SacPHwOUbVG6Tx5+Lhc1xT3Rf5aalj/FR5qmveVXW80rQf0ImBLwzF2kHzA4TAHsEAXDSwkddQvF7RnI+F97HXTut2/1vReEYKBRM/nl7UMfrXyl9ZN3ulwXeMwsNbT4kqlp//4H4eMdI5KoQB++KLLxg0aBA//fQT+fn59OzZk1dffZV169YxderUB56evDz1EQmFI620uX/NkHxVRdywYUMGDBig9adww6gH7fh25S55rXq1wdKm5FQgI4WCzsOUT7kO/Ka+y15VxYuLiOX6uWuY1TKjw2D1Xf+6jlROMTqz+2SJ3Z3d/TyZ+skMjE2MCTt1mfdHvk1ybFKp6bsVegOFQkH7gZ0xNlFf36X76F7UrlObmBvRXA8x7A4KUTXOb1eO6m7SM5jaNpYljhkpjAh6qgsAp37dX23xwg9fBKBhl+ZYO6t3GFg6WNOwS3PluUeU58aGRZGvqsOChqqPdDdSGNFxfG8AQrYZzuZAp7cr09qiZ2ssNORf+6ceA+Dor/uqLV7hFOzGnVtgf99IXQBHL2eaPtYSgHO7TgLw0bB3tP4c/+MgoNw06KNh7/DVi8t1Sru+OqXK05Y922ChoR1o/5SyHTjy63/VFu/SofMANCmljJqpyihEVUYPk6OqtjhYS1vcZVh3APbr2LZXdTxtosIiyMtV3jd1Hqo+ysZIoaD3c/0BOPLnwUq914NybLvy4X5wr7ZVkndVHa80nQZ3ZeTsMbTprb5ZiE9LP5q2DyA1MYVDW3Vr//TJyaJ6pbXGfOygqvsP61hPVTTekzOGE9xXOT1385If+GXx9+X6PQyZodZTQhgK6RwVwkDdunWL5cuXY2try6ZNm/jjjz9YsmQJkyZNol27dty9e7da3rdwF3RNHaHFd5srVDhiNCpK8/TW2NjYEv+vW1c5haN58+YsXbpU68+HH35Yqd+jom6F3uDUzuNYWFvy8qrXqKNaK8nU3JSJi1/A3c+TqKsRnNhesvOkjp0Vrj7uOHk5V0m83z//BYCn546jUbumRa8HPt6aQS8PIz8/n60rfy1xzfgPpmJWy5zEmASWTVhERkrZGwL88/VWcrNz8GxUjwkfTMXc4t5SBx0Hd2XkG8rdQTd+sL7GRykL/RAdeovQnSepZW3B6JUzsFB9pk3MTRmyeBLOfh7cCYviwt/HS1xnYWdFXR837L2cKh3v0p7TRJy9hplFLcaumYVjA9eiY7YejjyzeiYWdlZEX7rF+e3KpT/ysnM59M0/gHKn+2Z92hRdY25Vm+HLX8CzpS/Jt+PZv2ZbFeZY9YoMvUnIzhPUtrZg0spXi9Z3MzE35ZnFU3D18yA6LJLTf5dcqsTSzgpnHzcc76uzKhIvdH8I109fVU6FXPkqdevdi+nm78mLX8/B1NyM438c4Oa58OrKCr0VGXqTs6o8nXxfno5dPAW3CpRReeNd3H+WcFUZTVk5i7r1XIqOufl78dLXb2BqbsaxPw5w89y16sqKGnMr9AYnVW3xjFWvF63BZ2puyqTFL+ChaouP39cWW9lZ4ebjjpOXS5XEK6/c7Fz+WfcnAENnjKBN33trutW2suCFj6fjG9iQ+NtxbFvzR6Xe60G5GXqDkzuPYWFtyUy1vHsRDz9PIq9GcEzVsVNIW1lUNF5FHPrjAABPvTIKT/96Ra83CPBhxorXAfh95WbuplXPPXp1igi9wZmdJ7CwtmTKffXKs4un4Obnye2wSE7dV0/VsbPCxceNuvfVUxWJ5+rjTt8XBgOwb8MOtq3YXJ2/st4x1HpKVLGCggf384iRNUeFMFAhISHk5+fTsWNHmjdvXuJYfn5+0bT6/GJD4ssaxVmctnMtLCwA9U5NgNOnT6u91r59ezZu3MiOHTsYOnRoiWPR0dFcunSpxGvBwcopR4cPHyYrKwtzc/MSx/fu3cuiRYto166dxjVXH4Sv31yNx89eNOkQwMeHviDyagROXs7UsbUiPTmdTyYvVuso7DmuL0NmjiD21h1e6TSl0vGObTvE3o076DriceZuXEDE5ZsYm5jg2sANgJ+WfF9il3mfwIY0DG4EQEF+AS+vfl3r75d8J5HPXlgKQNTVSL6avZKJS16g87DutOnXgdvXorB2tMHexaHovY5tO1TB3BQPo1/nrmWKvyc+HZoy++Cn3Lkahb2XExa2dbibks53k5apfabbj+vF4zOGkhgRy5JO0ysd7/upHzPhuzdxb1afmTs+JDYsCiOFAkdvFxTGChJu3mH98x+Rn3evjtz56WbcmtajUY8gRq+cQXJ0Aql3knDyc8estjlp8Sl889wSslIN64vtD3O/ZJa/J/4dmvHewRVEX43E0csZS9s6ZKSks3rSUrX8e2xcb/rPGKZxPc+KxPvyxWXM+OEd6jX3Yd7Oj4m5FoWRkRHOPm4oFApCD4Tw3exV1Z4X+ur7uV/g5r+ARh2asejgSrU8XTnpQ7U87TauNwNmDCdTXHMdAAAgAElEQVQu4g5zO71Y6XhfvPgRr/wwj3rNfXhXVUYYGeFSrIzWP8RltPbNVXj+/D5NOwTw6aEviLqvLV6moS3uNa4vQ2eOJPbWHaZ3mlzpeBWx+ZOfqNe0AUE9gpmx8nUSouNJupOIu58n5rXNSYlPZsmzC7mbajg7pK95cxWeP9ejaYfmfHboSw1594GGsujHU6qyeLnTpErHq4j9v+4h+Im2tO3TnkXblhEVFoHCWIG7rycAO77/m62rf6v0+9SU7+auxt1/IY07BLDk4CpuX42krpcTlrZWZKSks2LSErV87D6uD0+q6qk5nV6oVLwe4/sVzWLyalqf2ZsWaE3r/p92c2CT9jUNDZWh1lNCGALpHBXCQLm6KkdCnTx5kqSkJGxtlWvkZWVlsWjRoqINmbKysoquKexo1DTC835mZmYApKenU1BQUNRZ2rChcv2ZI0eOcOnSJfz9levUXLt2jRUrVqjF6d69O56enuzatYtNmzYxbNgwADIyMnjzzTfVRqB6eXnRrVs3du/ezbx585g3bx61a9cGICIignfffZfIyEhGjRqlSzZVi8ToeN7pP4tB04cT1LMNXo3qkZGSwcEt/7F52UaNmyBVR7yvXl/BpWOh9BjdCw9/LzAy4sqJUP75+k8Oq0YvFCq+wLu9qwP2rg5a0xN7606J/x/YvIeISzfoO3kgjds1w6OhJxkpGZz4+wjb1/xB6JEL5fp9xcMvJTqB//WfS/fpQ2jSsxUujbzITEnn9JYD7Fj+C/HXy7dmcEXiJUXG8b8Bc+k4vjfN+rTBwVs5YuLO1UjObz/G/jXbyLxv9HR+bh7fTvyIVsO60mpYV1waeWLh70FyVAKhO0+yZ8UW0hPKrj/1TVJ0Aov6z6Hv9Kdo0TMY90b1uJuSzrEt+/lj+U/ElrM8KhIvITKORQPm0PP5AbTs05a69ZzJzc7l2onLHP5lLwd/2kVB/qP7BSwpOoH3+8+m3/RhRXmakZLO0S37+WP5Ru5UoIzKGy8hMo73Bsym1/NPEnhfGR36ZQ8Hftr9UKzrp01CdDxz+89iyPThtFK1xekpGRzY8h+/LNtAdDnb9qqOp01ebh4fTXifrsO703VYDzwb1cOjoRUJt+M4ufM4Wz7/hdSEsncP1ycJ0fG82f9VhkwfTnDPtqq8S+fAlv/4edmPFSqLqoxXms+mLeXqhAF0HtINF29X8vPyuHjkPDu+/5uDW3Sbcq6vEqMTWND/dQZMH0bLnq3xaORFRkoGR7bsY0sF6qnyxvNTPeQHqBfgU2rsiwdCypUWQ2Go9ZSoQg9xO1zTjArkUYAQBmPOnDn8+uuvLFmyhP79+zN69GhOnTqFra0tQUFB5Ofnc+rUKZKTk/H19eXq1asMHDiQJUuWAJCUlETHjh3Jzc2lY8eOtG7dmqlTp7J582beeOMNnnrqKd577z1AuZFTu3btSEpKIjAwkICAAObOnQvAlClT2L17N+bm5nTo0IHs7GyOHj1Ku3btOHfuHBYWFiV2oDt58iTPP/88aWlpNGvWDHd3d06cOEF2djYODg6Eh4ezc+fOos2Z4uLiGDNmDNeuXcPe3p6AgADy8vI4evQo2dnZ9OzZk08++URtvdLSjKk3pKqKQVTS2hNLazoJQuWd4LdqOglCJYncmk6CKCYfuT3WF6kF8rehLwrk70JvWBrJGCd9kVGgvtSYqDk/3Pi17JMM2N0f5z2w96o96t0H9l76QNYcFcJAGRsbs2rVKsaMGYOVlRX79u3j5MmTNGzYkKVLl/Ldd99hZGTEf//9R26u8ouFra0tCxYswN3dnaNHj3LwoPbF+Y2MjFiyZAn169fn3Llz7N69u+jY8uXLmTJlCnXr1mX//v3cuHGDKVOmsGLFCo0dlkFBQfz000/07duX27dvs2/fPho2bMj69etxcXFRO9/R0ZFNmzYxbdo0HBwcOHz4MOfOnaNx48YsXLiQjz/+uFwdo0IIIYQQQgghhEGT3eqrjYwcFUI8EmTkqP6QkaP6Q0aO6g8ZOapfZOSo/pCRo/pDRo7qDxk5qj9k5Kh+eehHjn7/9gN7r9qjta/r+zCSWlUIIYQQQgghhBBCCH1W8OiN6HxQZFq9EEIIIYQQQgghhBDikSQjR4UQQgghhBBCCCGE0GeP4FqgD4qMHBVCCCGEEEIIIYQQQjySpHNUCCGEEEIIIYQQQgjxSJJp9UIIIYQQQgghhBBC6LOCgppOwUNLRo4KIYQQQgghhBBCCCEeSTJyVAghhBBCCCGEEEIIfSYbMlUbGTkqhBBCCCGEEEIIIYR4JMnIUSGEEEIIIYQQQggh9JmMHK02MnJUCCGEEEIIIYQQQgjxSJKRo0IIIYQQQgghhBBC6LMCGTlaXWTkqBBCCCGEEEIIIYQQ4pEkI0eFEEIIIYQQQgghhNBjBfkFNZ2Eh5aMHBVCCCGEEEIIIYQQQjySZOSoEEIIIYQQQgghhBD6THarrzYyclQIIYQQQgghhBBCCPFIkpGjQgghhBBCCCGEEELoM9mtvtrIyFEhhBBCCCGEEEIIIcQjSUaOCiGEEEIIIYQQQgihz2S3+mojnaNCiEeCl1Gtmk6CUHkn+K2aToJQmX98YU0nQai0aTamppMginEyta7pJAiVJsY2NZ0EoeJaIF8d9cWWnKiaToJQ6WLqUtNJEEJUAZlWL4QQQgghhBBCCCGEeCTJ4z8hhBBCCCGEEEIIIfRZvmzIVF1k5KgQQgghhBBCCCGEEOKRJCNHhRBCCCGEEEIIIYTQZzJytNrIyFEhhBBCCCGEEEIIIcQjSUaOCiGEEEIIIYQQQgihzwoKajoFDy0ZOSqEEEIIIYQQQgghhHgkychRIYQQQgghhBBCCCH0maw5Wm1k5KgQQgghhBBCCCGEEOKRJCNHhRBCCCGEEEIIIYTQZ/my5mh1kZGjQgghhBBCCCGEEEKIR5KMHBVCCCGEEEIIIYQQQp8VyJqj1UVGjgohhBBCCCGEEEIIIR5JMnJUCCGEEEIIIYQQQgh9JmuOVhsZOSqEEEIIIYQQQgghhHgkychRIYQQQgghhBBCCCH0WEG+rDlaXWTkqBBCCCGEEEIIIYQQ4pEknaNCCCGEEEIIIYQQQohHkkyrF0IIIYQQQgghhBBCn8mGTNVGOkeFEKKSallb0n3GEJr0CsbKyY6MhBQu7z3D7k9/JSky7oHEM1IY0faZngQ91YW6vm4AxF27zanN+zi87h/y8zSvT+PfPZAO4/vg3rw+RhhxJyyS4z/u5tTmfeTn5pU77TWtlrUljxfLu3RV3u2qRFmUN56Rwoh2qrJwUpVFrKosDmkpi6a9W/PMqpmlpuWr0e8TduBcuX+HR0F+fj6jJ7/Crcjb7N+2saaTY9CsbKyY/Op4uvftgqOTA4nxSRzcfZgvln3N7YiYSsU2MjJi3Z+r8ajnTvem/bSe9/G3i+naq5PW4zFRd+gdNLhSadEXdWzq8MyM0XTo3R57J3uSE5I5vucE33/8A3ci71RrvGdmjmbMK8/oFPefTf/y0SvLSj1n+AvDmPDGeJ3O1Re1rS15YsZQAnq1xtrJjrSEFEL3nuGfT38hsQJtRkXiTfzqNZo+3kprzKTb8bzb/kW111sP7UL7px/H1d+TvJxcbl+6xb5vtnN2+9Fyp1vfmVtb0HHGEPyeCKaOky0ZCSmE7z3LwU9+JSUyvnLBjYx45td52NZz5n+BU3W+TGFizNitC3Bq7MWPI97j1uGLlUuHAbOyqcP4V8bRpXcnHJzsSYpP5vCeo3y9fD0xkZVvN1b//j/cvd3oF1B2ve/bpAFrtq3ipzWb+XzBqkq9tz4w1PtagIB+bWk3thduTeqhMFYQdz2aM78f4sDav8jLzi132oWobtI5KoQQlVDL2pLJm/8PJ193MlMziAm9iZ2XE8EjutG0dxu+HDGfmNBb1RpPYaxg9OpXaPR4EADxN2LIz83DpUk9+jWrT8PHWvLt+A/VOjt7zR5J16lPApAWl0xSZBwu/p4MWTKJ5gPa8/3kZWRnZFUyhx6cWtaWTC2Wd9GhN7H3cqL1iG40692GL0bMJ7qcZVHeeApjBc+sfoXG95WFa5N6uKvKYp2GsnBp5FV0fuqdJI3pyUxJL092PFI+/eJbQi5cwtbGuqaTYtCsbKz45o9VNGjoTVpqOlcuhuHu5cagpwfQvW9XJg6expWLYRWO/+KcSQQENSUxXvNnvJBfYx8Azh4/R16e+kOahLjSrzcUdWzqsPzXj/Dy8yI9NYPw0HBcvVzpPfIJOvbuwGvDXic89Hq1xbsTFcu5o+e1xjOvbY5fgC8At2/cLvW9PRq488zM0TqnVR/UtrZk+ub5OKvq+NuhN7D3cqbdiG40792a/42Yz+3Qm9Uez1VV/18/eVljJ0NafEqJ/xsZGTH642m0GtgRgMSoeNLik/EOaohvuyYc37yPH19bqbXDwtCYW1vwzK/zcPB1Jyv1LrGhN7HxcqL5iMdo2Ls1Pw5fSGw52vb7dZ41DLdAXzISUst1XftpA3Fq7FXh931YWNnUYdWWz/D2q0d6ajphF6/h5uXKgFF96dqnM9OemknYxWsVjj9p9niaBjUmKSFZp7TM+2wuJqYPRxeHId/X9p4zkq5TlN8xkiLjyEzNwMnHnT5zRtFyYAe+GLGAzJSMSubQI6rg4ajb9dHDUXMIIapVQUEBRkZGNZ0MvTT4g4k4+bpzadcpNrz0GdnpmZiYm/LkwvG0GtaVkZ+9xKdPzKZAxykQFYnX5pnHafR4EJmpGXw3aRnhhy4A4BXkx5g1s/Dr0pwuk/uz5/MtRdc069e2qGP036U/sXfFFgryC6hlbcnwj1/Av3sggxZN5Kfpn1dhblWvIaq8C911ih+L5d3AheMJVuXdJ+Uoi4rEa/vM4zRWlcX6Scu4Vqwsxq2ZRUMNZQHg0sgTgL8W/cD57ceqKEcefgUFBaxY+z1frZfRolXhnY9m06ChN/t2HGTO5HlkpGdgZm7Gm4tnMXBkPz5Y/S7DHhtLfgV2Sp08azwTpo8t8zzLOha4ebqSlprOuP6TK/JrGIwZi6fj5efFkZ1HWfTiB9xNv4upuSkvvz+NXsN78cbnbzCl51Sd87u88f7Z+A//bPxHe7wl0/EL8OXMwTNs+Ez735iRkRGvLJ2JeS3z8mVADRvxwSScfd25sOsk3770KVmqOv6phRNoO+wxxn72MkueeE3nNqMi8czr1Mbeoy6ZqRl8MuQdnd6n26T+tBrYkbycXDbNXcORn3YDYONsx3OrXyV4SGcSb8ez7cMN5c8UPdR78UQcfN0J23WaP6b9j+z0TIzNTem18DkChndhwP+m8XWvOTqXU3EdZwyh/bQny32do78H7V4s/3UPo9kfvoq3Xz0O7jzMvKkLyEi/i5m5KbMWzaTfiN68u+ItxvaYWKF2Y/wr4xj7km4PXewc7Vj89UIaNKpf7vfRV4Z6X9v48SC6TnmSnKxsfnzxUy7uOAmAjas9z6x+BY/mDRgwbxybXl1ZhbklROXJhkxCPABz5szB39+fLVu2lH1yDenevTv+/v5ER0cXvZaamsrChQv5/fffq+19t2zZgr+/P3PmzKm296gujj5uNOndmqy0u2yauYLs9EwAcrNy+HX2F9y5EoGTnwdNnmhdrfECB3cGYO+KLUUdowA3T15hx7KflecM7VLimm4vKacmHd+wmz3/+63oRigzJZ2fZqwgIymNFgM74tHCp7zZUiPq+rjRVJV3P92Xd5tnf0HMlQic/TxoqmNZVDReYVnsWbGl6AYSlGXxr6osWt1XFgAu/srRJ3euRJbzN390xcUnMP2NBaxc+31NJ+Wh4O3rRfe+XUlPy+CtafPJSFeO6MjOymb+Kx9w7XI4DRrWp3tf9c9vaRzq2rPs60VMmTVBp/N9VaNGr12+Xq73MTSePh507NOBjLQMPpzxIXfT7wKQk5XD8tc+4cblm9Rr6EWH3h1qJF77Xu3oM6o3aclpfDhjaakdGwOfe5KmrZuSeTdTp9j6wMnHjYDerclMu8v3Mz8nq1gdv3H2aqKvRODi50HzJ9pUazw3f+WDseirutX9ChNjuqtGY/39yS9FHaMAyTGJfDf9M3Kzc3lsYl9sXR10iqnP7H1cadg7mOy0u/w5Y2VRW5yXlcP22V8SdyUSRz93/HoHlyuuZV0bBn8xg44zh5Q7TUYKI/p8OAmMeOSnBnv5eNK1T2cy0jKY//IiMlT1TnZWDh/MWkr45evUb+hNlz7al0nRxL6uHYvWzGfCq+N0Oj+4cxBrt6+iaVDjcv8O+sqQ72vbPvM4AHtX/F7UMQqQfDuB3+auAaD5gPaY1jLTOT9EMfkFD+7nESOdo0IIrZYsWcL69es1TmsU0HJQRxQKBaE7T3I3ueSU54L8Ak5s+g+AgP7tqzWetYsdgMbp+1HnwgGwcb/3Jcmqrm3RNO79X/6pdk1mSjpntxwEoMWgjjqlvaYV5t3FMvKueTnLorzxCstC0zSnSA1lAWBaywx7Lydys3KIvx6tdp1Qd+DICfqNnMiufYdwdLBjxpTnajpJBq/v0CdQKBT8989+UpJKTi/Nz89ny4ZtAPQa2EPnmO26tuG3gxvo1qcLsTFxfLqw7FEihVPqr12q+DRMQ9B9SHcUCgVHdhwhNSmtxLH8/Hz++Uk5orPrAN06o6synlktM15cqFzj8usl3xB7W/u6di5eLjz7+jhu37jNv5t26JRWfdBqUCcUCgXnd54kQ0Mdf3TTHgBa6thmVDRe4ZT66MsROr2PZ/MGWNpZkZudy3/fbFc7Hncjhkv7zmJqbkaLvm11iqnPmgzuiJFCwdWdp8jUkK/nVG1xo/7tdI7p3bkZE3cvxe+JYNLuJLH3g/LNPGg9qR+uLRpw7Mu/yEq7W65rHzZPDO2JQqFg/7+HSNXQbmzb+DcAPZ7spnPMNl2C2bDvW7r07kRcTDwr3/+y1PNfWzyTTzYsxcm1Lvv/PcTuP/eW/xfRQ4Z8Xxt5NpxLu09z5o9DatfEqOo6EzMT6tS11SntQjwo0jkqhADgm2++Ydu2bTg6Oha9VpEpMI8Sz5bKtdhunrii8fitU8rXvdv4V2u85OgEAFyb1FO7xsnPQ3lOsQ0LCm9isu9mERsWpfG94lSddIYyclRfyiKllLJw1lAWAM7+niiMFcReu/3QrBFX3a5dv0nG3UwG9O7Bb+tX0bxpo5pOksELCGoKwJnjmjf9CjmhXJsysG0LnWM2aOiNhWVttm76i2GPjeHsSe3rWxbya6Ksc8Iuhev8PoaoUUtl3XHhuOZNXEJPhQLQrE3TBx5vyMTB1HV15NrFcP5cv63Uc2csnk5ty9p8MudTsu4azhrV9VR1/PUTlzUev3HqKgAN2uhWt1Q03r3OUd3WDbRzU96jxd+M0doxV9h+exlI+10at5bK3yFSS1scdVKZrx6tdWvbARz83DGzNOfcL/tY23MOUaqy0YVdfRc6zhxCwrXbHPh4s87XPayaBio/z+eOa67bz59UjjRs0SZA55jeDetR27I2f/38D2N6TCiKoT0NyvVIF7/+EbOfnVs0at7QGfJ97b/LNvHNc0uIu6a+VrV7M+WyB9kZmaTeSdQp7eI++fkP7ucRI2uOCiEA8PKSReXLy97bGYDEW5p3FC7c9dGqri1mFuZlbm5U0XjHN+zGs6UvnacM4PrxS1w/ovwS7Nq0Hj1nDQPgyHf/qsUzUhhhZGREQYH6tAljE2MAbN0d1Y7pIwdV3iVoybvEcpZFReMdU5VF1ykDuHH8EuEayuLwfWXhoppWeedKBA3aN6HFgA7Y13MiOyOT60cvcWzjblm0/j7Nmvizae1nNGpo+F/+9YVnfXcAIm9qfmByO0LZ4eLo5EBti9rczSj7C+j5UxcY1XM8l89r/jKmiW8jH9X7xTBs3CDadA7GysaKO7dj2fXnHvb8vV/nWPrMzVu542/0Lc2jxWMilHWPvZM9tSxqkZlR+pT1qopnZVuH4VOVddU3i7/R2D4U6vN0HwI7teTvjf9wav9pgh8r39TmmuTo7QJor+MTImMBsNaxzahoPDfVkiqJkXF0eKYnDTs0o7aNJcnR8ZzdfpRz/57QGE9hrH18i0LVftu51y01zYbAVtUWJ9+K1Xg8WdUW13GyxdTCnBwdNpG8feYa6/q9xZ0Lum+2Vaj3kucxMTPh7zlryMvKKff1Dxt3b2W7EXVL84Zt0RHKneodnOypbVGLu2XUYwAXTocyvvdkrpzXbfO/H1Zu5ODOw6Q9ZJtWGvJ9rTY+HZoy5IPnAdi/5i9y5W9I6BnpHBWihuTm5rJhwwY2b97MtWvXMDIywsfHh8GDBzNixAhMTO79eW7evJk33niDt99+m0aNGvG///2PkJAQ8vPzadGiBS+++CKtW6uvOXPixAlWrVpFSEgIWVlZBAUFMXPmTH788Ud+/vlndu7ciYeH8qlf9+7diYyMZO/evbi4uODvf+/J4RtvvMEbb7zBt99+S9u2bdXOLW7u3Ln8/PPPLFq0iCFD7q3llJWVxZo1a/j999+JiorC1dWVsWPHYmlpqTWPzpw5wxdffMGJEydIT0/Hzc2N3r178/zzz1OnTp0K531VsbRX7oydcd8UxkJ3i71uYW9V5o1LReMd37CbOg7WdJ02iAk/vkXizTvk5ebhWN+VnMxs/v1wIwfX3pt+l6j6kmFqboZDA1fiNIwedfJT3vDWttFePvpEX8ri2IbdWDpY023aICZqKIu/P9zIgbUlp0IWbsbUqHsgLZ4suR5gk57BdJ7Un+8mL+PmSd07mB52gQFNajoJDx07B+X0tuSEFI3HkxPvvW7rYKNT56i2Uail8VVtpvHuJ3OxrGNR4tiA4X3Yv/MQrz//tk7vr89sHGwASEnUvEN28SmqNvbWZXaOVlW8Pk/3wdLakvDQcI7sPKr1/RxdHHl+7gQS7iTwxYLSp73qozqqOj49SXN+Fa/7Le2tyc7Q3DlX2Xgu/sp7sFFLp1KrTu0S17Qe2pULu0+x7sWPi9qYwo4Ne08nzGqbk61htK6Lqv22MJD2uzQWqny9q+VznVksX2vbW+nUORqlZeRcWYKe7YVnG39Of7+LW6oOokedrardSEnU3G6kJN173cbeRqfOUW2jULX559ed5TrfUBjyfe39xn41C/fm9bF2siMvJ5c9K38v2hNBVMAjuBbogyLT6oWoAVlZWTz33HMsWLCA69ev065dO9q2bUtYWBjz589n8uTJZGdnq123f/9+xo4dS0REBO3bt8fV1ZVDhw7x3HPPcfr06RLn/vXXX4wdO5Z9+/bh4+NDx44dOXfuHE8//TQhISFlpnHAgAFFo0kDAwMZMGBAiSn35ZGdnc3EiRP55JNPSE5O5rHHHsPW1pb58+fz5Zeav1Rt3ryZUaNGsWvXLjw9PenWrRtZWVmsWrWKUaNGkZSUVKG0VKXChcRzMtXL6v7XTc3LXnS8MvHiwqNJvBWLQqHAwdsFJ193FMYKstLuqt0IpcenEHFa+US+27RBau9j4+ZAc1UnnbGpYTxDM9SyAIrWfzVSGPHngu94r/VU3mo4lpVD5nHt8AWs6towbs0sbFzty0y3EBVVuNN4VqbmL1jFX69VTbuSu7g7Y22r/AIXcT2SqSNm0r5BD7o26s07098jKSGZTj3a8+4nb1bL+z9IZqo6JltLfmcXq2PMdMjvqoinUCjoP6YfAD+vLn3K8MsfvISltSWfv72StGTNX7b1WfnqeNNqiWfr5oCFjfJBb/zNGFaNeZ/Zjccxt8UEfpi1kvTEVJp0C2TUh1OLro04F05yTALGJsb0eGGg2vt4tfDBr0MzwHDa79KYqPI1N1PzCLPcYvlqUo2bu1h7ONLl9eGkRiewZ9GP1fY+hsZclefa243sYudWT7vxsDLk+9rijIyMaNi1OdZOyrVLjU1NcG9WH2fVgyEh9Inht5pCGKBly5Zx9OhRAgMDWbFiBfb2yk6P+Ph4Jk+ezP79+/n000+ZNWtWiet2797NlClTePnllzE2NqagoIDZs2ezZcsW1q1bR8uWLQFITEzknXfewcjIiNWrV9O1a1cAUlJSmDx5MidPnqQsS5cuZe7cudy8eZPhw4eXGAVaXuvXr+fo0aMEBwezevXqolGfW7duVfsdAcLCwnjnnXewsLBg9erVtGrVCoCcnBwWLFjAxo0bWbBgAR999FGF01QV8vPyS53aZqS4d0yXZ3wVjdd9xlB6zBhKWmwyG6Z9yqXdpzFSGOHfLZB+74xh4HsTcKjvyl8Lvyu65t9lmxj3zeu0HNyJzJQM/lv9B2mxSXgG+vHkgufIuZuFaS0z8nINYyfW8uRddcbrMWMoj88YSmpsMj8UK4tG3QLp/84YBr83gbr1XfmzWFlc+PcEybfjOfHzf2o7ga4ds4ipm+fjHlCfbtMG8dvcteX6PYTQVX5ePsbGxlqPKxRGRf8ubap1pdKQn8+6FT9gY2vFkrc+KRodmpmRyR8bt3Htcjjrtq6m54DuBARtIESHNUz1VVn5bVQsv9Ehv6siXtuebXH2cCY+Jp7dv+3WeA5AjyHdadujDQe2H2T/NsNc5kAf2oyC/AJ2rf4DC9s6/PruN0UjtbLvZnHs573EXIlg+uYFtOzXjj1f+XLj1FXy8/LZvvxnRnwwicdfGEReTi4Hf9hJZmoGDTsGMOy9CaQnpmJpZ2Uw7XdpCvLyQdd8raZ6CaD3BxMws6zF1ukryE417FHrVak89U51tRsPK32oo6Bi97UlA8PSx14hPT4FZ39Pes8ZiV/nACZtfIcVg94mLlw2Ii23gkdvLdAHRUaOCvGAZWZmsmHDBkxMTFi+fHlRxyiAg4MDy5cvx9jYmO+//56srJJPYl1dXZk+fXrRjYiRkRFPP/00AFev3ltQfsuWLaSkpDBq1KiijlEAa2trli5dWuqNTHXYuFG5E+iCBQtKTN1KutgAACAASURBVIfv378/ffr0UTt/3bp15OTk8PLLLxd1jAKYmpry1ltv4ezszLZt24iJian+xJciRzWdzUTLqBITs3vPn3K1PKmtbDxHHze6vTSY/Lx8vpu8jJCth8lOzyQr9S5nfz/I12MWkZeTS6eJfXFpfG9d2av/nWXrvHXk5ebRblwvXj/4GfOvrOf5n97BxNyUX+d8BUCWgXwJKMw7bSN8iuedtqfmlY1X18eN7lrK4szvB1mjpSwOfr2dTa+uKtExWigvJ499X24FoFGPoDLTLURFFXZEmmkZgWJqdu91baOEKuvO7Vg+nv85777ygcZp8+dPXeTIf8cB6NKrY7Wk4UEpnNaubcSPqdm9uidLhzqrKuJ17tsJgP/+2Edebp7Gc2wdbZnyf5NJS07jf299Xma69FX2XWV+mWjJr/K2GRWJlxydwB+Lvmfj7NUap8TePBPG5QPKmT5Ne9y7Fzq8YRc7V25BYaygzyvDWXB8NR9eWs/za18nNTaJ39//HoBMA2m/S1PWfZFxOe+zKqL5yMfw7hxA6NYjXP237MEFj5LCafLa2g2zctZj4h5Dvq8triC/gKTIOHIys4k4E8aa0e8TGRJObRtLuk0bXGa6hXiQZOSoEA/YuXPnyMzMpFWrVri6uqod9/T0JCAggNOnTxMSEkJw8L0NDgICAlDc92SvcKp7Rsa9DVsOHjwIQM+ePdXiu7u7F8V/EGJiYrhx4waenp40aNBA7XiPHj3Ytq3kbrhHjhwBoG3btmrnm5mZ0aZNG/744w+OHz9Ov379qifhOshITKW2jSUWtprXP7Wwsyr6d3q85vWYKhuvyRPBKIwVhB04xy0Na1JGX7zJxR0nadanDc36tiX64r0NCI6s/5frR0MJHtkNJ193stLvcu3QBU5u2lu0S31qbM0vX6CLwryrXcVlUZ54hWVx9cA5jeuDFi+LgPvKojRR528AYONij8LEmHwtnRZClMa/mR+z35up8djiuctJSkzB2tYaGztrjefY2t97PTG+5uqFS+ev0KFbW1w9XMo+uQb5NPXhhflTNR5b8c5KUpNSsbK1wsrWSuM51sXKITk+ucz3q2w8hUJB627K+43/tv6n9X2mLXwRaztrPp79KQkxCWWmS1+lJ6ZhYVNHa3trWayOT9OhzajqeIUiL9ygUZcW2N23OeLWxT9yfscJWg/tioOXE+lJaVzcc5oTv+0neHBnAFIMpP0uzd3ENGrZWFLLVvP6qbXt7uV3RrzmdUkro46zHY+9OYq7SWnsmLeuyuPrO7+mvsxc+JLGY8vf+oyUxBSsba2KlkO5n7WdTdG/k2qw3TBED+t9bUF+Afu+3MrIT1+ifttGZZ4vNJA1R6uNdI4K8YDduaNcTN/d3V3rOR4eHpw+fZq4uLgSr1tZqX/pKdy4qfh0ldu3lbtGaup8LXzvB9k5CuDs7Kw1LfeLjlZOsXjyySdLjV34e9aU2LAoHLxdsPXQvCNs4U7vKTGJOj3VrUi8wi9MsRo2VSoUH367xPXFxVy6xZ/vfqv2umtTb9XxiDLTrQ8K886uisuiPPF0KYs4VVnc/0XXxNxU666dRkbKaWl5uXnSMSoqrI51HQLbttB67PrVG3jV98DNU3OnY2FnZGx0HJkaNoGpSqZmpuRkl/73kJOj37vcWlpZ0KxNU63Hbl29hZu3Gy6emttGJw8nAOJj4nUaqVvZeE2CG2NtZ01sVCwXTlzU+j6d+ylHl85Y/DIzFr+s8Zxew3rSa1hPom/FMK7Ds2WmvSbcCYuirrcL9lrq+MI6OjkmQac2ozLxjM1MyMvWPAW+cFJyXo768fATlwk/cVntdQ9V+x196VaZ6dZ3CWFR2Hk7Y6MlX61V+ZoWk1gtI0e9Ozejlmpjq2knVmg9b9TGuQAcWL6ZAx+Xvl6vIaljbUmLNgFaj90Iu4lHfXdctLQbLh7K+iguOq7aZhw8rAz5vtbKyRZbNwduqfY3UL9G+T2vTl0bjceFqCnSOSrEA6bLmjt5ecoOEDOzktNUCr8UlqXwS6O296rOdX/y80uug1JWmjVN8S/8/fv371/q9fXq1atACqtOZEg4jXoE4Rnoy9Hvdqgd9wz0BSDi9FW1Y1UVr3DanJWTrda4hTc8WWn3ptgFDGiPnWddTmzco/GJc6MegQCEH1af6q2PIlR55xXoyxENeeelyrtbOpZFReKVpywyVWXh0tiLKT//H+aWtXi/zQuk3lEfWeHaRPk5j7tWsw8DhGE7cfAUgS7ap6IHdwikS8+OBLRqxqZ1v6kdD2il7OirznU+X547hWemjOLY/hO8OOoVjef4N/UDIPzKjWpLR1U4eziEJzzVl40p1Lx9c9o+3pZGgY3Yuv5PteONA5UjakJPXdLp/S6fvVKpeI2DGheluzTnjmovf2dPZ+q6OpIYm0hkeBQJd/R3ZOmtkGs07RGEd6AvB7/7V+24d6Dyc3ZDxzajIvH6zx7FYxP7ceXQeVaPXaQxrnsTbwBirkYWvdZ2RDes69qya/Xv5OWoPzBr3E3Zfl81kPa7NNFnw/HpEYhboC+nv1PfldxN1RZHndLcCVNZ6XHJRBzT/jfo2tIHY1MTYkNvkZWaQUpUnNZzDdGpQ2fo6N5d6/HA9i3p+Hh7mgU15rdvf1c73lRVr5w/FVptaXxYGep9rWN9F17dvYz8/HzeD55KeoL6iG5rF+WScqkxMpq4IgryZc3R6iKdo0I8YE5OytEbERHaR+TduqV82l/R3eFdXFwIDw8nKiqqaMf54io74rKwwzJXw2L/KSklO9oKR4xGRWl+6hgbG6v2mpOTE5GRkbz22mu4uOjv1Mnz24/SY8ZQmvQMZpuNJXeT04uOGSmMCHqqCwCnf9Vtw4qKxAs/fJEuUwbg16U51s52pMQklohp6WCNX5fmynOP3BsN1HJQRxr1CCIzOZ2j35f8wuHR0ocG7ZuSkZhKyNbDOqW9pp3ffpTHVXlXu5S8O1WOsihvvPDDF+k6ZQANSymLhveVRWxYFPmqhwFBQzuzd+UfJa4xUhjRcXxvAEK2HdEp7UJUxK4/9zJl1gQe690Za1srUpLufaFRKBQ8OaIvANt++afa0nDp3BVMTU1o1b4lrh7O3I4oua50wya+tOnciry8PHZu3VNt6XgQDvx1gDGvPEOHJ9pjZVuH1GI7/ioUCnoOUy6Ls2vzrgcSz6eZcimVq+dK/6L96lD1TRQLPf/WRJ6aPJRje47z0SvLdEp3TTm7/Si9ZzxFs56tsbD5loz76vjWTynXaz+hY5tRkXiRF65jbGqCT9vG2Lk7khhZsmPNrbEXfh2bkZ+Xz9m/jha93nV8X1z9PbkVco3QvWdKXNOyXzsc6zkTExbJlYPndMwN/XV5+zE6zhyCX69W1LKxJPO+fG02TNkWX/jtQLW8f/ies4TvOav1+LRTK7Gwt2LHvG+5dVj7iOuH1d6/9jHh1XF0fqIjVrZWpN7XbvQd/gQA/2xWf2AgSmeo97Xx12NIiorH1s2B4JHd2LtCvdO8/RhlexS665ROaRfiQZENmYR4wJo1a0bt2rU5e/asxg7DmzdvcuHCBaysrGjUqGJrsRSu1blnzx61Y3FxcZw7p9sNs7ZRmxYWFkWxisvLyyMkpOSoEycnJ3x9fYmKiuLCBfVRDHv37lV7rXCdVU3HACZMmMCIESM4e1b7DeuDEBN6i9CdJ6llbcGolTOK1vExMTdl8OJJOPl5EBsWxYW/j5e4zsLOCkcfN+y9nCod7/Ke00SevYaZRS3GrJmFY4N7SynYejgyevVMLOysiLl0iwvbjxUdK+z07DHzKZz9PYtedw+oz6jPpwOwd+UfJUab6rPoYnk3euWMonXfTMxNGbJ4Es5+HtzRUhZ1NZRFReJd2nOaCFVZjNVQFs+oyiL60i3Oq8oiLzuXQ98oO5t6zBhKsz5tiq4xt6rN8OUv4NnSl+Tb8exfU3JtXiGq0pWLYfz37wGsrOvw4VfvFa09amZuxjvL5tCg4f+zd99RUR1tGMAflt6rdBGkqdgQe++i0SR2EwuW2BILGo2iURPzGXtDjb2XaOzGFruJFUXsIqIgUqVXqcv3xy4IsgtLX+T5nbPnJHvvvnd2rrwLs+/M2CDg1VtcOZs/L+sZ6MLazgqWtaQvFSOrK+f+RVBAMFTVVLF82yKYW338GarXuA7W7FkKRUVFHN59AiFB0qf5VQUBvoG4e+kuNHU08fOmublrhSqrKmPa8qmo5WCFd/7vcPP8rXyv09HXQU1bS5jVMiuTeDlq1xWtCf7WT74rcstKmG8Qnl1+AHUdDYzcOC1fjh+8dDxM7S0R8ToET/65l+91mvraMLY1h6GVSanjPf7nHiIDw6GsqoKRf0zLNyW/ZsPaGLN1JgSKAtzcdxHR797nHvM5fRsA8PX8Efmmsjq2b4iBv38HADi/6jCyP4N16SJ93+H1ZR+o6mjgq01ToCbuV0VVZbguHQsjewtE+4fC73z+z3Z1fS0Y2JpB75PPdipbr1+8wc1Lt6Glo4VFW37JXdtYRVUZs1fMgI2DNd76B+H6ufwDeLr6OrCyrQmLWuaV0ewqoar+XpudnY3rG0UDol2m9EOjL1vlvkZFQxVf/z4G9u0bIiU2Mfc8InnBylGiCqauro5BgwZh9+7dmD59OjZu3Ah9fX0AQExMDKZPnw6hUIhBgwYVmFYvq/79+2PLli3Yv38/2rdvj9atWwMQbdrk4eGRO+2+qCnvqqqqAIDExPxTIhwcHODn54e9e/eiUaNGUFBQgFAoxKpVqyTuIO/m5oZ58+Zhzpw52LFjBwwMRNMprl+/jqNHjxY4f/jw4fj777+xatUq2Nra5g6WZmdnY8OGDbhx4waMjIxKPHhclk7O3QETx5qwbe2En255ItI/FPpWxtDQ08KHhGTsH7eqwDIGLd26o4t7f8QGR2JF26mljndg4hqM2jcH5vVtMPXSckS9DoWCQABDa1MIFAWICXqPfWNXQpj1cRrGw+M3ULd7U9Tv2Rw/nPld9BpFAYztRAMcXgcu48aW0+XUa+Xj+NwdmCDuu1m3PPHePxQGefpun4S+a+XWHV3F92LZJ/eiJPH2T1yDMfvmwKK+DaZdWo5I8b0wynMv9n5yLy57HoO5Uy3U6dIEQze6Iz48Bonv42BsbwEVdVUkRSdg16hlSPsMdh4m+bbop+WwO1Ubzdu64Jz3MQS8egsLK3Po6usgMT4RP472KPBvfvDo/pgwYwxC34Xhi2YDSnX9jPQMzBwzFxv/WgOnxnVx4uZBBL15B4FAABt70fIS1y/cwMoFnqW6jrzw9FiPlY7WaNymMfbd3YMg/yCYWZlBW08bSfFJ+HXsbwX6+8uRfTB8+jCJ63mWJF4OA2PR7yFJ8UkSj3+ODs/dBjPHX2Hfuj7m31qP9/4hMLAygaY4x+8Yt7JAf7V16wFX9wGICY7Eb20nlypeVnomdk1chQl758KqkS3mXF2NyIAwKCgKYGIr+ix+dskbJ/+Xf13wyxtPol5nZ1g722POldWIeBMKNU213AHbM8sO4uGZqjHrQxb/zNmJoUcsUau1EybcXoMY/1DoWhlDXU8LqfHJOD5+DfDJfWri1h1tpvVD/LtIbG4reSM6KhvLZ69G7eM2cGnjjGNef+LtqyCYW5lBR18HifFJ8Bgzv8DPUf9RfTHmRzeEvQvHgJbfVlLL5V9V/b32zt6LMKtXC82/6YwhnpPRa+4wJITHoIadBVQ11ZASm4g9Y1cVqEQlGX0GX3zJKw6OElWC6dOn4/nz57h37x66du2KZs2aAQC8vLyQnJyMtm3bwt3dvcTxjY2NsWDBAsyePRujR49G06ZNYWBgAG9vb6SkpMDQ0BDR0dG5mzlJk7Om54YNG+Dt7Q03Nze4uLhg+PDh+Oeff3D69Gm8ePECdnZ2ePbsGSIiItCzZ0+cO3cuX5yBAwfi5s2bOH/+PLp3746WLVsiLi4O9+/fR6NGjQpsDtWgQQPMmjULS5YswbBhw1CvXj1YWFjAz88PgYGBUFNTw9q1a0s8eFyWEsJjsKH3XHSe2g91u7nApI4VUhOS8ejkTVxefRTRgeHlHi8uJAp/9JmL1qNd4dSzOQytxRun+Ifg2fl7uLn9LFITUgq87tDkdXg3uiec+7WFoY0phJlCBNx9Aa/9l/H4lOTqInmWEB6D9eK+q9fNBabivnt48iYulfBeFDdeXEgU1veZizajXVE/z714L74XNyTcC2FmFvZ8txIuAzvAZWAHmNapCQ1HS8SHxsD38gNc++OkxDWbiMra+7BIfNt9NMZNH4WOru1gX9cWiQlJOHfsAjYt346ggPLfoM3vuT8GdRqBkT8MRfvubVDT2gJpqWl4cOcRTh48jVMHP58K6qjwKEzqNRlD3b9Fq+6tYFPHBskJybh64ir2rNyH0MDiVceWNJ5AIICmjmjTmeSEZInnfI7iw2OwsrcHekztj/rdmsKsTi18SEiG98mbOL/6MKKK+ZlRknihL4KwvOdP6Dz+Szh1aQKjWqbISEvHGy9f3D18FV6HC86gEWZmYePQ/6Hr91+jUa+WMLG1QEZqGnz/fYTrO87B91rFbLhZUZLCY7C79zy0ntoX9t2aoIb4s/j5yVu4ueooYgMLfilPFScyLAqje07AKPfhaNejDWzr1kZSQhIuHL+M7St3ITggpOggJFFV/b0WAI57bMOr/56g5bCusKhvA9M6VogLjca9Kw/w7+bTEtfYp8/DrVu3sGnTJrx8+RIZGRlwcnLC2LFj0b59e5ljJCcnY/v27Th37hyCg4Ohrq6OJk2a4IcffkCDBpI3iSsLCtnluTMLEQEAZs+ejePHj2PZsmX46quvAADp6ek4cOAATp06hdevX0NZWRl2dnbo378/+vfvD4Hg46oXx44dg4eHBwYMGIBFixblix0eHo4OHTrAwsICV67kX0vs5s2b2Lx5c+5UdxcXF8yYMQMeHh54/vw5fHx8cqfId+7cGSEhIbh+/XruOp+pqamYN28eLl++jOzsbMyaNQtDhgwBAHh7e2PDhg3w8fGBgoICnJ2dMXXqVDx79gy//PILFi9ejH79+uW2RSgU4sCBAzh06BDevn0LIyMjDBgwAE2bNsXw4cPRt29fLFmyJF/7vby8sHPnTvj4+CA5ORmmpqZwcXHB+PHjYWNjU6x7MNea30zLCy4jLj8W3v9fZTeBxJrXH17ZTaA8jJV1KrsJJFZPkTsaywuzbNbVyIuTmVV7aZHPSXtl+d0foTpaHHigsptQrpJm9q2wa2ktP16s83PGLFRUVNCyZUsIhULcvXsXGRkZWLhwIQYPHlxkjLi4OIwYMQIvX76EiYkJGjZsiKCgILx8+RIqKirYv38/GjZsWNK3VCgOjhJ9hkJDQ5Geng5zc/MC1ZWZmZlo06YNlJSUcPNm+SxgL484OCo/ODgqPzg4Kj84OCpfODgqPzg4Kj84OCo/ODgqPzg4Kl84OFp2ijM4GhERga5du0JVVRUHDhyAg4MDAODx48cYNWoUMjIycPHixdzNmqWZNWsWTpw4gS+++AJLlizJHcvYvn07li1bBkdHR5w6VT7r1XJDJqLP0PXr19GjRw/Mnj0739ox2dnZWL9+PeLi4tC1a9dKbCERERERERERySxbWHGPYti/fz/S09MxcuTI3IFRAGjYsCHGjh2LtLQ0HDp0qNAYoaGhOHnyJGrWrJlvYBQQbcjs5OSEDx8+ICYmpnh9JiN+/Uf0GerVqxe2bNmCM2fOwMfHB3Xr1gUA+Pr6IiQkBLa2tpg+fXolt5KIiIiIiIiIqrL//vsPACQWYHXt2hWrV6/Gv//+iylTpkiNceHCBWRnZ2Po0KES9xY5duxY2TVYAg6OEn2GdHV1ceTIEezduxeXLl3CnTt3kJ2dDUtLS0yePBmjR4/OXWuUiIiIiIiIiOScHO5Wn52dDX9/fwgEAtSuXbvAcWtrawgEAvj7+yM7OxsKCgoS4zx//hyAaHPm5ORknD17Fk+fPoWSkhJatWqFLl26SH1tWeDgKNFnytDQEO7u7qXa9Z6IiIiIiIiISJL4+Hikp6fDwMBAYsWnkpIS9PX1ER0djeTkZGhpaUmMExQUBEC0KVOfPn0QEhKSe2zfvn1o1aoV1q9fL/X1pcU1R4mIiIiIiIiIiORYtjC7wh4JCQkIDg4u8EhISMjXpg8fPgAA1NXVpbZbTU0NAJCcnCz1nMTERACAh4cH9PT0cPDgQXh7e+PAgQNwdHTE7du3sWDBgtJ2oVQcHCUiIiIiIiIiIiIAwO7du9GlS5cCj927d+c7TyCQfVgx72bRn0pPTwcAKCsrY9euXXB2doaWlhZcXFywfft2aGpq4syZMwgICCjZGyoCp9UTERERERERERHJswpcc9TNzQ19+/Yt8LyOjk6+/8/ZyyQtLU1qrNTU1HznSpJTXdq7d+8C16hRowY6d+6Mv//+G15eXrCxsZHtTRQDB0eJiIiIiIiIiIgIgGgQ9NNBSkm0tLSgoaGB2NhYZGZmQkkp/zBjZmYmYmNjoaqqWmg8AwMDAICFhYXE4znPx8bGyvoWioXT6omIiIiIiIiIiOSZUFhxDxkpKCjAzs4OWVlZCAwMLHA8ICAAQqEQDg4OhcbJOf7+/XuJxyMjIwGINp4uDxwcJSIiIiIiIiIiomJr164dAODSpUsFjuU816FDh0JjtG/fPvf8zMzMfMfS09Nx9+5dAICLi0up2ysJB0eJiIiIiIiIiIjkmTC74h7F0K9fP6iqqmLr1q14+vRp7vNPnjzBtm3boKamhm+//Tb3+aCgILx+/Tp3h3oAaN26NerUqYPAwED8/vvvyMrKEr1loRDLli1DcHAw2rRpg9q1a5eyEyXjmqNERERERERERERUbJaWlpg1axYWLlyIIUOGoEWLFgCAu3fvIjMzE0uXLs03HX7kyJEICQnB4sWL0a9fPwCAoqIiVq1aBTc3N+zfvx/Xrl1D3bp14efnh6CgIJiZmWHhwoXl9h5YOUpEREREREREREQlMnToUGzatAmNGjXCgwcP8PTpUzRp0gQ7d+7EV199JVMMW1tbnDhxAsOHDwcAXL9+HZmZmRg6dCgOHz4MS0vLcms/K0eJiIiIiIiIiIjkWTGnu1e0Tp06oVOnTkWed+XKFanHjIyM8PPPP+Pnn38uy6YViZWjREREREREREREVC2xcpSIiIiIiIiIiEiOZWfLd+VoVcbKUSIiIiIiIiIiIqqWWDlKREREREREREQkz+R8zdGqjJWjREREREREREREVC2xcpSIiIiIiIiIiEiesXK03LBylIiIiIiIiIiIiKolVo4SUbUQhvTKbgKJqfJ7ObnRvP7wym4CiXk93VvZTaA8ZjSdU9lNILE3wqTKbgKJvansBlCu5srGld0EEhOClXxUcbJZOVpu+BcqERERERERERERVUusHCUiIiIiIiIiIpJnrBwtN6wcJSIiIiIiIiIiomqJlaNERERERERERETyTFjZDfh8sXKUiIiIiIiIiIiIqiVWjhIREREREREREckx7lZfflg5SkRERERERERERNUSB0eJiIiIiIiIiIioWuK0eiIiIiIiIiIiInnGafXlhpWjREREREREREREVC2xcpSIiIiIiIiIiEieCSu7AZ8vVo4SERERERERERFRtcTKUSIiIiIiIiIiIjmWzTVHyw0rR4mIiIiIiIiIiKhaYuUoERERERERERGRPOOao+WGlaNERERERERERERULbFylIiIiIiIiIiISI5xzdHyw8pRIiIiIiIiIiIiqpZYOUpEVEoaOpr4yn0gnLu3gJ6xHhJjEvD0+kOc8jyM6JCoSonXeYQrhi38DmtHL8ajK95Sz2v2RSt0HuEKq3o2ECgKEBEYhrunbuLijtPITM8sdtsrm4aOJr5wH4BG3ZtD11gfSTEJeHb9Ic56HkFMCe9FceOpaaujx8Sv4ezaAgYWNZCamILAR/64uuscXvz3WOZrd5/4FfrOGorbR65hz4w/it32qkRbVxvjfxyNzr3aw8jYELHRcbh19Q62rNqJsOCIUsVWUFDA7jObYVnLAp2dvpB63po9S9Ghe1upxyNC38O1Sd9StaU6EAqFGDp+Ot6FhOHG2UOV3Ry5pK6jCVf3/mjYvRl0xHnF9/ojnPc8itgS5KmSxBu7bSbqd3WRGjMuLBoLWv1Q5LUHLRqDNkO74dyaIzi/5kix2y5vNHU1McT9W7Ts0Qr6xvpIiEnAg2veOLT2T0SGRFZKPEUlRaw6swbWdW0wd5AHnt55IvE85w5N8NXYr2HfyAGqaqqICovE3Qt3cWTDYSTGJhS77ZVNHu7F3B3z0bxrc6kxo8KiMKbFyEKva13XBitPr8bfO05h16IdxW53ZVDX0UQP9/5o8ElOuVCKHFXceN9tmwmnInLUr+IcZduyHiYdnC9TW2KCI/Fb28nFfg+VRV1HE13d+8Ope1NoG+sjOSYBftcf4ZLnMcSV8F4UN56CQAEth3VD0wEdYGxnDgCIfBOGB8f+w63d/0CYJXkRTPt2DdDarQesGttBTUcTH+KT8NbbD/9uOY23D14Vu+0kxjVHyw0HR4mISkFDRxNzji2CuZ0lPiSmINg3CEZWxmg3uAuauLbA0sELEOz7tkLjWTnZYMBPQ4u81oDZw9BrwtcAgOiQSHxITIGZrSUGzh6Gll+1xZLB8/EhIUXmtlc2DR1NzDj2G8zEfRfi+xZGViZoM7gznF2bY9XgXxDiG1Su8dR1NPDT8UUwtbVAZnomIt6EQk1LHQ26uKBBFxec9TyKv1cVPWBkUtsMX0wdWOw+qIq0dbWx6+9NqO1gjaTEZLx68RoWVub4+ts+6NyrA77rOwmvXrwucfwfZo9DgyZOiI2OK/Q8+7q2AIDH958iKyurwPGYqMJfTyKeW/bgyfOX0NPVqeymyCV1HU24H1sIUzsLrdV3rAAAIABJREFUpCamINT3LQytTNBycCc0dG2GdYMXIrQYeaqk8czqWAEAAh74IVvCH7aJ0UUPptm1qodW33SRua3yTlNXE0uPrUBN+5pISUzBW99AmFiZotuQ7mjVszXmDJyNt76BFR5v4OTBsK5rU+g5/Sb2h5vHKABAXGQsokIjYVHbEl+P64vWvdrAY8AsRIUWf0CxssjLvajlWAsA4OvtC6Gw4OdCfFR8kded7jkDSspV509udR1NTD22ECbinBLm+xYGeXLK+sELEVbMHFWSeDk5KvCBn8TBt6Q8OSo1MQVv7vkW2o5aje2gqKyEqLel+8K1IqnraOL7Y7/CWNx34b5BMLAyRrPBneDk2gybB/+G8GLei+LGEygKMHzzdNQTD1RHv42AMDMLZvVqoU99Gzh2bISdo5dDmJn/56P7j4PQZbLoC+WU+CREvAqGYU1j1HdtjnrdmuLkgp24s+9SKXuIqGxVnUxNRCSHRi6ZAHM7Szy64o3Nk1cjNTkVSqrKGPG/sWg7sDMmrHPHvB4/Ilso29d8pY1n08gOU7d7QE1LvdDrNO7aFL0mfI2MtHRs/GEVHl66DwDQNzPE5M0/wbqhLYYuGINtP64rXodUoqFLxsPMzhJPrjzA9slrkCbuu2/+9x1aD+yEMevc8VuPH2Veq6ck8YYvmwhTWwsEPHyFrRNXITYsGgDQsFtTjN0wHb2m9Iff7ad4efuZ1OsqKChg+LKJUFFTKV2HVBHzV85CbQdr/HfpFmaPX4CU5BSoqKpgztIZ+GrIF1iy+VcM7DgCQhl/hvIaP2M0xkwdUeR5mloaMK9phqTEZLj1Hl+St1HtZWdn448d+7FtL6tFCzNkyTiY2lng2ZUH2D3ZMzevDPrfGLQY2BFu66ZgSY+ZMuepksRT1VKHoaWoqn1NP9mqrT6lrKaCIYvHQSD4fFbomrR0Cmra18T9y/ewYtIyfEj+AGVVZUxc9D26DOqGmRt+wpRuk2TORWURr5ZjLQz4ofAvyqzr2mD4LDcAwI7ftuPk1uMAAENTQ3hsnQv7Rg6YvHwKFgydJ2NPVD55uBfqWuowqWmClMQUzOo7o9jvQddIDz9vn5c7wFpVDF4yDiZ2Fnh+5QH25MkpA8Q5ZcS6KVhWjBxVkniqWuowEOeotTLkqJBngVg38Bepx12+bovazeogMTIO+93Xy9RuedB/yVgY21ngxRUfHJjsiXRx3/X932g0HdgR366bjNU9fpL5XpQkXsth3VCvqwtSE1Owe9xKvLn9HABQq4k93LbPhEP7Rugwvg+ubjiR+xrHjo3QZXJfZGVk4uQvu3F3v2gQVKAoQKcfvkb36QPx5S8jEeTjj9BngWXXYdVENitHy83n8xsNEVEFM7U1RxPXFkhN+oBt09YhNTkVAJCZloGdszYh9NU7mNvXRJMe0qdklVU8BYEAXdx6YvZfC6FjpFvktToN6wEAOPPH8dyBUQCIDYvGnrlbAADN+7SuMgN0JrbmaOzaHKlJH7Br2jqk5em7fbM2IexVMMzsLdFYxntRkng6NfTQqFszCLOE2D5pTe7AKAA8vngfN/4U/XLYenDnQq/dcaQrbJvWQfqHtGL1QVVkbWeFzr06IDkpBT9PWoiUZFGlcnpaOhZOX4I3fgGo7WCDzr3aFyuuYQ0DrNq5GBNmjJHpfDtx1egbv8BiXYdEoqJjMNXjN2zcsb+ymyLXjG3N0dC1GVKTPmDftA358sqfszYj/FUwTO0t0VDGPFXSeOaONQEA4f4hJX4vvWcOQQ1r088mT1nYWqKlayt8SErBaveV+JD8AQCQkZaB9T+tw7tXQahpb4WWrq0qLJ5AIMDkFVOhoKCAjPQMqed16NsRAoEAD6555w6MAkB0eDTW/rgGANC4nTMMTAxlantlk5d7UauONQDg3SvZK/NyNGrbCKvOrIGDs2OxX1uZjG3N0UCcU/Z/klMOlTBHlSReWeSoHHrmhui/UFRVfWj2FiREVo1ZIDVszeHk2gxpSR9waNoGpOfpuyOztiDiVTBM7C1Rv0ezco3XpK9ouaGrf5zMHRgFgLcPXuHiqsMAAJf++X9HazdGtITRrT0XcgdGAUCYJcRlz2N4fOYOFJUU0WZkj+J0CVG54+AoEZWLzp07w9HREeHh4ZXdlHLT6uv2EAgEeHj5PpLjk/IdyxYKcePwVQBA895tyjWekqoyFpxeiqG/joGishJOrv0LUcHvC71W4OPXeHz1Abz+vlngWLCf6A8BJRVl6NbQk6ntla3F1+0gEAjw5LI3UuKT8x3LFmbjtrjvXHq3Lrd4GjqauHnoMu4cvY7o4ILTF0P93gEQVedKY1TTGF/O+AZRQRG4feSaTG2tynr17wGBQIB/L9xAQlxivmNCoRAnD54FAHT/Svapuy07NMeJWwfRqWd7REZEwfN/G4t8Tc6U+jcv3xSj9QQAN+9644sh3+HKf7dhZKgP9wmjKrtJcqvp120hEAjw7PIDiXnl7uFrAADn3rIN+pQ0nrl4umq4X3AJ3gVg3cQe7Ue6IsDbDy+uPypRDHnTUTzA6HXJC0mffP4KhUJc/kv0B37bPu0qLN7X4/vCvpEDTm49jg9J0pe4MRQPekqaFv7OLwhpqaIBbCNzI5naXtnk5V5YiwdHg/yKNzg6cfEPWHhgEYzMjOB1yQu3zhb8PUteuRSRU7zEOaWxjDmqpPHMSpmj8uo73w3qOpp4ePo2nl1+UOp4FcVZ3HfPLz/ABwl9d//wdQBAQxnvRUnj6ZgaAADCfd8ViBnyNAAAoGfx8fdaBYECrJuJvhR4cvauxLa8uOIDADCvX/hyISSFsAIf1QwHR4mISqh2Y3sAgL/3S4nHX/uIFht3aF6nXOMpqyrDqp4NQvzeYdmQBTi5+q8ir3V81UGsGfU7wt+EFjhmXb82ACAtJRWx72Nlantlsxb33WspfRcg7ju75nXLLV746xAcmLMVe3+SPBhnJe7XyELWuxq6ZDzUNNWw32ML0j+ky9TWqqxBEycAwKP7TyUef+ItWn7AuUUjmWPWdrCGhqY6Th8+h4Edh+PxA+lLGOSwrycaHH39MkDm65DIm8AgpHxIRR/XLjixdxMaOsmW76oj68Z2AIAAbz+JxwN9/AEAtjJ+ZpQ0Xs7gaJhfwT92i6KoooRvlo6HMDMLf87aLPN0TnmXU+Hn6y153cKXPqLPgnrNnCoknrmNOYZM+xYhb0Lw5+oDhV4rKly0iYqNU+0Cx0xrmUJVTVV0XmjxN2+pDPJyL2qVcHDUobEjEmLisWH2OiwavTC3UrUqqCXOKYFScspbcU6pLWOOKmm8j4Ojxc9ReVk3cUBD1+ZIT03Hyd/3lSpWRbMS991bKX0XJP491EbGe1HSePHhMQAAs3oFl4cwsbcEAMSFfJwppaCggL0TVuHYnG2IkHL/VNRFOUlRUVGmthNVFK45SkTlYteuXcjIyICRUdWoVCgJY2tTAEDUO8lVmtHi3U91a+hDVUMNaSmp5RIvMy0TW6d54u6pG1J3jJRV3dYNMHLJBADAhe2nkZkmfSqfPKkh7rvoIvtOD6oaqkhLKXwqaFnGU9VQRQc3V7Qe1Anpqem4vP20xPPaftMFddo0wK2/rsL35hPU69C40DZ+DmraWAAAQoIKDtIDQFiwqPLcyNgQ6hrq+JBS9B+Zz3ye45tuo+H3TPadUO3q2IqvF4GBbl+jebum0NbVxvuwSFw5cw3X/rkhc6zqpn49RxzesQ51HGwruylyz6iIvBIrzis6NfSgoqGK9CLyVEnjmTlaiY9Hoc2wbnBoXR8aupqIC4/Go/NeeHrRW+o1e04dAFN7S5xd9RciymDKq7wwq2UGAIh4J3m2y3vxbAx9Y32oaaghtYjP89LGm7R8KpRVlLFh1jpkFPE5fPXIZXw55is0bueM3qO/xOkdpwAAuoa6mLLCHQBw55/biImILiyM3JCXe5EzOBoZ8h6uw3qiUdvG0NTVQnRYFG6fuwWvi5Kr4k5sPob7V+4hOSFZ4nF5lpNTYqTklJgS5qjixjPPk6Nai3OUuq4m4sOj8biIHJVXH49vAQA391xAXGjV+Pefw9DaBAAQ+07yRmo5O8try3gvShrv3sGrsGpsh44T+iDw/ksE3H0BADB3skb3GYMAAHf2XcyNI8wS4uW1wmcUOHUXbe4U8ar0lcFEZYmDo0RULqysrCq7CeVO20C0G3PSJ9OBcyTHfZy+pWWgXeTgaEnjZaSl4/bxf2VvuARTts2GdUNb6BnrIzMjE2c3HscJGXZVlxda4r7L20d5peR5XtNAB2kphe/aWxbxrBrUxvBlE1CjlilUNdQQHRyJfbM2IfRlwW/S9UwN0M9jOOIj43D0f3sKbdvnRN9QtGxDfIzknbHjYz8+r2eoK9PgqLQq1MLY1RFN7fp17VxoamnkO9ZnUE/cuHwbP42dJ9P1qxvnBvUquwlVxse8IkuO10GMzHmqePHMHEXVPt+umFhg877m/Tvg+VUf7PxhTYE/ti2drNF5XG+E+gbh4h8nC21bVaNjKFqrOzFWcl/m/VzWMdApckCuNPF6j+oDp+ZOOL//HJ7dLTqfvXv1DkvG/47vF0/C2F/GYcD3AxEbGQsLWwsoqyjj+vFr+MOj6mxCIy/3Imcjpakr3aH+yedC5wFdcP/KfSz/fkmB618/ca3Q9sizonLKp7/7pJcyR0mLZyrOUd9IyFHNxDlqt4QclVctZzvUblYHmWkZuLbtTKHtlEea4r5LkanvtIscHC1pPK+DV6BpqIPOk77GuD9/RkzQewgzs2BkY4aM1HScX34IN3ack/l9OXRoBIf2otlAPierzpIT8oQbMpUfTqsnolzr1q2Do6MjLl26hL///ht9+vRBw4YN0aVLFyxbtgzx8fG55x47dgyOjo7Yu3cvli1bBhcXF7i4uGDBggUApK85mpCQgLVr16JXr15o1KgROnTogClTpuDly4LTl+Pj47F8+XJ0794dDRo0QMuWLTFlyhT4+kqeGlXRcjYrykiVPP05Pc/zKqpFb2xU1vFkpaCggPodGkPPWB8AoKSshFr1a8PCseoMcOf0XXoZ34vSxDOzt4RlXWuoaqgBADR0NVG/cxMoqRT8XvLb38dBXUcDh+ZvR0oVrDYpqZzpnjlr4n0q7/Nq4nPLmqmFCXT0RH80BAeGYOLgaWhVuws61HHF/KmLEBcTj7ZdWuHXtXPK5fpUfSgXkePzPq+sqlwu8fTNDaGhqwUAiAqKwB/Df8fMum7waDQG+2dsRHJsIup1csa3yyfmiyVQFOCb5ROgIBDg4OwtEGZmFdm+qqRYOV+GjQpLGs/Y0hjDfhqB6PBo7P59Z9ENF4uLjEXAc9GyIPrG+qjtVBuqaqrISM9AdEQ0FBQUZI5V2eThXhiZ14CW+Ock7G04Fgydh0GO/TG0wRCsnb4aCbEJaNq5KaasdJfhHVUd8pCj9PLkqOigCGwa/jtm1XXD3EZjcCBPjvrmkxz1qXZurgAA71M3kVBFlojKq3h9V/TPQWniRQWEIfZdJAQCAYysTWFsZwGBogBpSR/yDaoWxai2GQav+h4A8ObuCzy/cL+IVxBVLFaOElEBR44cwdWrV2Fra4uOHTvCx8cH27dvx3///Ye9e/dCT+/jJj379u1DcHAw2rZti6ioKNjYSF9cOywsDCNHjkRgYCBMTEzQoUMHRERE4J9//sHVq1exZ88eODs7AwBCQ0MxYsQIvHv3DhYWFmjfvj2io6Nx4cIFXL16FZ6enujUqVO590VhhFlCCApZL0cg+PjHSDaKXpetrOPJTEEBHh0nITE6ARaOVhgwexic2jXCrEO/4n9feyAiIKzsrlVORH0n/fs+BcHHY7Lfi9LFe379IaY1cIOSshLqtW+MAfPc0GXMFzC2McMfo5fknte8bzs06NwED//xgs85ydP0PlfCLGGha07l+zefXT5rGwqFQuz+4wB09bSx7Oe1udWhqSmp+PvQWbzxC8Du05vRrU9nNGhyEE9kWMOUSJLi5ZXyiScUZuPy5r+hqaeFo7/uyq0OSv+QBq8j1xH+KhjTjv0G5y9a4uo2u9w1Abt+/zUs61nj2vazePvQX4bWVS1F5SKFfLmo/OL9sHQy1DXVsWrKCqQkSt+EKS/n9k0wZ9vPECgKsGfpblz+6yKS4pPg6FwHo+d/h34T+qOOSx0s+HYe0tPkfy1rebgX2UIhjm86Ci09bWz7ZUtudWjahzRcOXIZ7169w9ITy9Hmi7ZwcHaEn4/k9cmrmuLklPKKly3MxpXNf0NDTwvHP8lR945cR8SrYEw99hsaf9ES1/LkqLy0DHXQqFdLAMC1rZKXMpJ38vB5AQBd3fujm/sAJEbGY/+ktfC9+hACgQLqdHJGn/kj0G/RGNSwMcXp/xW+pqtRbTOM2z8XWoY6SHgfi4NTq041u9xh5Wi5YeUoERVw9epVjB49GmfOnIGnpycuXryIDh06wM/PD56envnODQwMhKenJzZv3oyjR49ixIgRUuP++uuvCAwMxMCBA3H58mV4enri0KFDWLJkCdLT0zFnzsfKrBkzZuDdu3cYO3YsLl68iA0bNuDgwYPYvn07FBQUMHPmTERHV+76QWkfRL+wSfvGVknl47fq0r6pLc94ssoWChEdEoX01HQEPPLHiqELEfjkNTR1tdBn0oAyu055Sv8g+sNFWiWDcp5qTVn6riziJUYnIDXxA5JiEuF14j+sH/k7sjKz0KBzEzi2Em38oG2ki4HzRyIlIRkH520vsl2fm5yBSGnVt8oqH5+XVl1aWu/DIrFm4Qb8On2JxGnzz3xe4O6/ouqG9t3blEsbqHr4mFek5fiS5inZ48WHx+DU4v34c9ZmidMwgx69xsubTwAA9buI1oUztbdEj0l9Ef3uPc6sqDrLrRRHzuevitSc//H5dBlyUUnidfumBxq3c8aN0/9JXc/yU4pKipi4+AeoqKlg/4q9OLrhMOIi45CZnolnd5/i50EeCAsMRb1mTug+1FWmmJVNHu5FdHg0dv2+E+t/8pQ4bf/VIz88viFaV7F51+ZFtqGqyMkpSmWco4oTLz48Bn8v3o9DheQoP3GOchLnqE85dXWBkooSQp4HlsmO95XhY99J/ndb8nshe7watuboMrkfhFlC7Bm/Eo9P30F6cipSEz/g4alb2Db8d2RlZKLdd1/ArK702WaWDWtj4l8LoGtmiOSYRGwfsSR3oyciecLKUSIqwMHBATNnzsydhqWmpobFixejQ4cOOH78OGbPnp17roWFBbp06ZL7/wIp3ypHRETg6tWrqFGjBubPnw9l5Y8fzn379sXp06eRnJyMqKgoBAcHw9vbG05OTvjxxx/zTQdr06YNhg4dih07duDIkSMYP358Wb99mSXFJkJTVwuaeloSj2vpf3w+MVrymorlGa+ksoVC/LP1FMZ7ToNDi6qxnmBSbBI0Cuk7TX3t3P+W7V6UbTwACHryBi9vPUG99o1h37IeXt5+hiELx0BLXxv7PTYjvgpO+yqKY317zFo0TeKxpXNXIy42ATp6OtDV15F4jp7Bx+djo+PKpY2yePnsFVp3agEzS9NKawNVfcnivKIhQ15JkiGvlHW8HCHP36Ju+0YwsDCCgkAB3yyfACVVZRyasw3pH8rnS4ryZuNUG+MWSv59Ycv8zUiMTYCWrha09LQlnqOdpy/jZejL4sYzMDHEyDmjkBiXiC3zNxcZP4ddQ3uY1DRBWmoaTm49UeD4h+QP+HvHKYxbOAFtvmiTu1lTZZL3eyGrN8/fwLlDE9SwMJb5NfKuKuWoOu0bQd9C8qavTl1Fg6YPT9+ROaa8SSmi7zTy9F2yDH1XknhOPZpBoCiA/82nCHpQcJPLsBdBeH7JGw16tkCDXi0R9iKowDmOHRtj2B9ToaKhhsTIOGwb9jvCJay9T7LjmqPlh4OjRFRAz549CwxyGhoawtnZGV5eXnjy5Enu83Xq1JEp5t27oiqIdu3aQUWl4DfI27d/rJo7evQoAKB58+YS18lq164dduzYAS8vr0odHA1/HQoTazMYWtaQeNzQQvR8XESM1LWuyjNeYfSM9WFgboQ3DyXv6B0RIForVreGbqmuU1EiXofA2NpUat8Z5Ok7Wb5hL0k8RWVFGNU0RlamEFFBERJf9z4gHPXaA9pGoqUpmoinfQ1dPB5DF0v+t9xqQEe0GtAR0cHv8XPbSUW2XZ5o6WjBuUUjqccC/d/CysYS5jUlDzrmDEZGhkchtZwHZZRVlJGRLnlX6Jw8lJFR+K7RRIV5/zoUNaxNYSA1r4j+0I+XMU+VJp6iihKy0jMlvi7nUzczIxP65kawbmwHAPh+r/R1d3u6D0BP9wF4dec51g9ZWGTbK5qmtibqNXOSeiz4dTDMrM1hbCl5oCtnACwmIlqmasXixmvcu23uGpd7Hkifnrror8UAgD9XH8DB1QdgLI4TERSOLCnrwIa+CQWA3HMrm7zfi7yUVJSQKe3nRPy5kJkh+XhVVFRO0S/jHFVYPFlyVJaEvldUUYJDm/oAgIdnbhfZRnkV+ToURtam0C+i7xIiYmW6FyWJl/Pc+9ehUuNGif9ekDRQ3firNhi0YgIUlZUQ/TYC24b/jpig90W2laiycFo9ERVQq1Ytic+bmooGKt6///jBpqsr2+BZZGRkvhiFCQsTrXG5c+dOODo6FniMGjUKAAps9lTRAp+8BgDYOjtIPF5b/Ly0AcjyjieNiY0ZVnltxZxji6BtIKViz9QAABAXUTWqGd8+eQMAsJHSdzbO9gCAQBnXyitJvN7ug/DLlbUYtGCk1Lg5/RofIZpO5H/PV+ojNky0bERCZBz87/ki8NFrmdouT7xv+cDZtI3Eh/ctHzx/JNpcrYFLfYmvb+Ai+gO6PNf5nDJ3ArzeXcea3UulnuPoJLrfAa/ells76PMXJM4r1s52Eo/XEucVWdf0LEm8PrO+wapX+zB220ypcS3qWQMAIvxDkJGWjjf3fKU+kmJEFUaxIVF4c88XYb4FK4fkwdM7T/CVVW+Jj6d3nsD/saiPHJtI/sI353k/Hz+ZrlfceHFRcXh+75nUR84AXKBvIJ7fe4bIENHvVClJonVJ9Yz0pG66VEM8GJJzbmWT93sBACNmu+Ho6xP4eft8qXFt6onW2A/2/3yq4N4VkVOsi5mjShKv96xvsOLVPnwnY44qcKxuLahqqCEuLBpRbyV/UV0VBIv7zkrcR5/KeT5IxntRknipiaKlhnSM9SS+BgD0xIOiqUn5lyVy6tEMg1ZOhKKyEkKfB+KPAQs4MFpGsoUV96huWDlKRAVImxqfsyFK3oXtpZ37qaws2Xe2FQpF2bhx48aoWbOm1PMMDAxkjlkevM/fxVfug+DcrRk0dbWQHP9xx0YFgQBtB3QEANw+/m+lxJPmfWA4YkKjYGBuhHZDuuDsH8cLnNN5uGhtskdXvEt1rYry8Pxd9HYfiEbdmkFDVxMp8R93fFcQKKCVuO+8jv9XbvFe3n4K1x/6om470XTUmJCofDGNrEzg1LExAODplQcAgJUDpf/h1W/OcHQb1wfPrj/Enhl/yNTuqubKmeuYMGMMOrq2g46eNhLiEnOPCQQCfDm4FwDg7NEL5daGl09fQVlZCS6tGsPM0gRhwfn/mHKoZ4fm7VyQlZWFy6evlVs76PP3+LwXeroPQINuzaChu6dAXmkxoAMA4P7xG+UWL/h5IBSVlWDXoi70LYwQ+0meMq9rBYc29SHMEuLROS8kRsZj7cBfpLZh1B/T0LhXC9w5fA3n1xyRqd3y6Pa5W/hm2rdo0b0ltHS1kJTn81cgEKDLQNHyQdeOXy2XeA+ueePBNemft3sf7oeOgS62zt+Mp3c+zt7x9X6BjLQM6Bjoonm3Frh7oeA04o59RZtXPr3zVKa2V7bKvhcAEPAsAErKSnBqUR81LGrkDkbnsK5rg4ZtGiErKwu3zt0s8XuVN4/Pe8HVfQDqS8kpzcQ5xbsYOaq48ULEOcq2kBxlL85Rj895FbimhZM1ACD4aYBsb1pOPT1/D93cB8CpW1Oo62riwyd95zKgPQDAR8Z7UZJ4b+48R8cJfeDQviF0TPSR8EnBhKahDhzaNwQABNx9kfu8ib0lvlk7CYpKigh66I/tIxYjNUE+vpwhKgwrR4mogIgIyd+0hoaKplXIUv35KSMj0TeL0qo97927h1OnTiEiIgI1aoiqHDp06IAVK1ZIfeTdwKkyBPu+xaPL3tDQ0cT3G3/MXZ9SSVUZo5ZOgLl9TYS9DsGDf/L/8qalrw1TW3PUsDIpk3jFlZ2djbMbRWuTfTllAFp8+XGTGVUNNYz4fRzqt2+EpNjE3PPkXYhvEJ5c9oa6jgbGfdJ3w5ZOgJm9JcJfh+DhJ32nqa8NE1tzGH1yL0oSz/fGEwQ+9IeSihLGbfwRNWp9jGnuWBM/7JwNZVUV3P/7JoKq+C/tZeXVi9f49+JNaOtoYfm2Rblrj6qoqmD+qtmo7WCDgFdvceXs9Xyv0zPQhbWdFSxrWZS6DVfO/YuggGCoqqli+bZFMLcyyz1Wr3EdrNmzFIqKiji8+wRCgqRPLSMqSqhvEJ5dfgB1HQ2M2jgtd+03JVVlfLN0PEztLRHxOgSP/7mX73Wa+towtjWH4Sd5qiTxHv9zD5GB4VBWVcHoP6blm+5q1bA2xm6dCYGiADf2XUT0u+pT5fPWNxD3LntBU0cTszZ5QFu8PqWyqjImLZuMmvZWCPZ/hzvn80/T1dbXgYWtJUxrmZZJvOJKTkjG2T1nAIh2um/S8eMGNarqqvh+ySQ4taiP1JRUnNxa8ItQeSQP9+L2P7cQFhgKFTUVzNrkAeOaH3/27BraY+72eVBUVMT5vecQIWUZnaooLE9OGflJThmcJ6c8kTFHlSRe3hw18pMcVbNhbYwR56ibUnKUeV3R7LfwV1VzI6Yc4b5BeHH5AdR0NDCRy6WnAAAgAElEQVTsk74bsHQcTOwt8f51CJ59ci809LVRw9YcBlbGpY738tpDBD9+AxUNNYzcPhNGtT/+fqRvaYQRm6dDU18b4S/f4en5j78P91v8HZTVVJAQEYtdY5ZzYLSMsXK0/LBylIgK+PfffzFy5Mh8z0VGRuLx48fQ19eHk5MT/P1lm8aRw9nZGQBw+/ZtZGZmQkkpf/rx9PSEl5cXDh8+jKZNm+a2Y+LEiQWmih08eBD79u1Dz5498cMPPxTz3ZWtPXM3w8Pxf6jbugFW3NqEMP8QGFkZQ0tPGykJyVg/blluxW2OLm498ZX7IEQFv8dPbb8vdbySuLL3PGrWs0aHb7pivOc0DJ7rhtjwGJjZWUBNUx1JsYlYN3Yp4iKqzm6SB+ZuxQzHmnBsXR+Lbv2BcP8QGFmZQFNPCykJydg8bkWBvuvo5ore7gMlrudZknhbf1gF9wPzUauhLRZcXoOIN6FQUFCAia05BAIBfG8+wb5Zm8q9L6qSRT8th92p2mje1gXnvI8h4NVbWFiZQ1dfB4nxifhxtEeBfh48uj8mzBiD0Hdh+KLZgFJdPyM9AzPHzMXGv9bAqXFdnLh5EEFv3kEgEMDGXvRH1vULN7BygWeprkMEAIfmbsNUx1/h0Lo+frm1HhH+ITDMk1e2j1tZ4N97O7ce6Ok+ANHBkVjYdnKp4mWlZ2LHxFX4fu9cWDWyxc9XV+N9QBgEigKY2Iq+bHh6yRsn/ren/DtDzmz02ACro7XQsE0jbLuzE8H+72BiZQptPW0kxSdh8bhFBe7NFyN745tp3yLiXQTGtRlT6nglsWfJLpjXNkezLs2xYM+viAx5j8S4JFjYWkBVTRWpKalYMWkZwt9W7lJExVHZ9yIzPRNLxi/Gr/t/g30jB2y8thmhASEQCASwtBPNaPK65IUdv20r/86oYIfnboOZ46+wb10f82+tx3v/EBiIc8qHhGTskJCj2rr1gKv7AMQER+K3T3JUceNlpWdi18RVmCDOUXOurkZkQBgU8uSoZ5e8cVJKjsqZAp63MrKqOj53O0wca8KutRM8bq3De/9QGFgZQ0Pcd3vHrSpwL1q7dUc38b1Y2nZKqePtnbgaY/fNgUV9G/x4aQUiX4dCQaAAI2szCBQFiA6KwO6xKyDMEo2kWTnbwbqpIwDRBq/DN0nelBMAEt/HYf8Pa8uiq4jKBCtHiaiAmzdv4q+//sr9/5SUFMyePRsZGRkYNmxYvmn1srKxsUGbNm0QFhaGpUuX5ptmf+LECXh5ecHGxgYNGjRAy5YtUadOHfj4+GD16tXIzPy44Prz58+xevVqvHr1Co6OjqV7o2UgNjwGv/b+CRd3nkFiTAIs61hBmCnEnZP/YeGXsxD2uuB6SBUZrzC7PTbhj+9X4sWtJ1BRV4VlnVqIfx+HC9tPY36P6Xh137fMrlUR4sJjsLj3bFzZeRZJMQmwqFMLwsws3Dt5A0u+9EB4MfuuJPFiQqKwuM9snFt3FO8Dw1Cjlgn0TA3wxtsP+2Zvhufw/yEtpWru9lxe3odF4tvuo3Fg61+IjY6DfV1bZGVl4dyxCxjm+l2FrPPp99wfgzqNwL5NBxH2Lgw1rS1gZGyAB3ceYYH7IriPmPVZbbpBlSc+PAYrenvg+s5zSIpJhLk4r3ifvIlVX85FRCEbX5RVvNAXQVja8ydc3XYGMcGRqFHLFNo19PDayxcHZm7E1u+WIytD9qVwPhfR4dH48Qt3/L3jFOKj41GrjjWyMrNw/cQ1zOgzHcH+xatEK+t40mRmZGLR6N+wdvpqPL3zBOpaGqhpXxNxkXG48Oc/mNZzCu5dKt2Mk4omD/ci8EUApvaYhJNbT+B98HuY1TKHXg19PPN6Bs8f12DR6IWf5edCfHgMVvb2wL87zyE5JhFmn+SUwjbnKat4oS+CsLznT7gmzlFGtUyhU0MPb7x88efMjdhWSI7SFFcGf0is+tWK8eExWNd7Dm6I87tpHSsIM7Pgc/Im1n35c4nuRXHjxYVEwbPPXFxYdRjhL99B37IG9MyN8N4/BJfWHoVn7zn51hLNGRgFAF0zQ9g0qyP1YdnItuSdU51lK1Tco5pRyC6LryyJ6LOwbt06rF+/HqampggPD0eDBg1gbm4Ob29vREVFoVWrVtiyZQtUVFRw7NgxeHh4YMCAAVi0aFGBWJ07d0ZISAiuX7+eOw0/NDQUQ4cORWhoKCwtLeHk5ISQkBA8ffoU6urqOHjwIOrUES2M//r1a7i5uSEyMhKmpqaoV68ekpKScP/+fQiFQgwfPhw///yzzO9ttHXpqsuo7Kjyezm5cSe17AbbqXS8nu6t7CZQHjOaVu6yLfRRoDCp6JOIqpnaAq3KbgKJqaD6DSLJs6WBf1Z2E8pVRMeOFXYtk2vXKuxa8oDT6omogMGDB8PAwAA7d+7EtWvXULNmTYwePRojRoyAsrJyieOam5vj6NGj2Lx5My5duoQrV65AU1MTrq6umDRpEuztP+6gaGtrixMnTmDr1q24evUqbty4AW1tbTRt2hTDhg1D9+7dy+KtEhEREREREcm96rgWaEVh5SgR5cqpHJ06dSq+//77ol9QhbByVH6wclR+sHJUfrByVL6wclR+sHKUqCBWjsoPVo7Kl8+9cjS8fccKu5bpv9cq7FrygJWjREREREREREREcixbyMH48sLyHSIiIiIiIiIiIqqWODhKRERERERERERE1RKn1RNRrsmTJ2Py5MmV3QwiIiIiIiIiyoMbMpUfVo4SERERERERERFRtcTKUSIiIiIiIiIiIjmWnc0NmcoLK0eJiIiIiIiIiIioWmLlKBERERERERERkRzjmqPlh5WjREREREREREREVC2xcpSIiIiIiIiIiEiOZQu55mh5YeUoERERERERERERVUusHCUiIiIiIiIiIpJj2dmV3YLPFytHiYiIiIiIiIiIqFpi5SgREREREREREZEc45qj5YeVo0RERERERERERFQtsXKUiIiIiIiIiIhIjrFytPywcpSIiIiIiIiIiIiqJVaOEhERERERERERyTHuVl9+WDlKREREREREREREJXbr1i2MGDECLVq0QJMmTTB8+HD8+++/pYr53XffwdHREXfv3i2jVkrGwVEiIiIiIiIiIiIqkWPHjmHUqFHw8fFBw4YN4ezsDB8fH4wdOxaHDh0qUcwDBw7gv//+K+OWSsZp9URULaRnCyu7CSSmrMCFxOWFsbJOZTeBxGY0nVPZTaA8Vtz/vbKbQGLdG4+v7CaQWHzWh8puAol1VdKr7CYQUSWQ1w2ZIiIisGDBAmhra+PAgQNwcHAAADx+/BijRo3CokWL0LFjR5iYmMgc8+3bt1i+fHl5NbkAVo4SERERERERERFRse3fvx/p6ekYOXJk7sAoADRs2BBjx45FWlpasapHs7KyMGvWLCgrK+eLV544OEpERERERERERCTHsrMVKuxRHDlT37t27VrgWM5zxVl7dNu2bfDx8cG8efNgaGhYrLaUFAdHiYiIiIiIiIiIqFiys7Ph7+8PgUCA2rVrFzhubW0NgUAAf39/ZGdnFxnP19cX69atQ48ePdCnT5/yaLJEXHOUiIiIiIiIiIhIjsnjNhrx8fFIT0+HgYEBVFRUChxXUlKCvr4+oqOjkZycDC0tLamx0tPTMXPmTOjo6OCXX34px1YXxMFRIiIiIiIiIiIiAgAkJCQgISGhwPM6OjrQ0fm4qeuHD6LN+tTV1aXGUlNTA4AiB0fXrl0LPz8/bNiwAQYGBiVteolwcJSIiIiIiIiIiEiOCYu5Fmhp7N69G+vXry/w/KRJkzB58uTc/xcIZF+ts7Bp9d7e3tixYwe+/PJLiWuXljcOjhIREREREREREREAwM3NDX379i3wfN6qUQDQ0NAAAKSlpUmNlZqamu/cT6WkpGD27NmoUaMG5s2bV9ImlwoHR4mIiIiIiIiIiORYcXeRL41Pp89Lo6WlBQ0NDcTGxiIzMxNKSvmHGTMzMxEbGwtVVVWp8f78808EBQXB0dERCxcuzHfM398fALBp0yYcPnwYQ4YMQdOmTUv4rqTj4CgREREREREREREVi4KCAuzs7PD48WMEBgbCzs4u3/GAgAAIhUI4ODhIjZGSkgIAePnyJV6+fCnxnFu3bgEAWrduzcFRIiIiIiIiIiKi6iZbWHGVo8XRrl07PH78GJcuXSowOHrp0iUAQIcOHaS+fvLkyfnWMc1r5MiRuH37Nvbs2YMWLVqUXaM/IfvKqURERERERERERERi/fr1g6qqKrZu3YqnT5/mPv/kyRNs27YNampq+Pbbb3OfDwoKwuvXr5GYmFgZzZWIlaNERERERERERERyrJDN3iuVpaUlZs2ahYULF2LIkCG5FZ53795FZmYmli5dCkNDw9zzR44ciZCQECxevBj9+vWrrGbnw8FRIiIiIiIiIiIiKpGhQ4fC3Nwc27Ztw4MHD6CiooImTZpg4sSJaNWqVWU3r0gcHCUiIiIiIiIiIpJj8rrmaI5OnTqhU6dORZ535coVmWPu2rWrFC2SHdccJSIiIiIiIiIiomqJg6NERERERERERERULXFaPRERERERERERkRwTZsv3tPqqjJWjREREREREREREVC2xcpSIiIiIiIiIiEiOZbNytNxwcJSIqAQ0dDTRz30wmvZoAT1jPSTEJODxdR8cX3sY0SGRFRavbb+O6ObWEzXrWCEjLRNBzwNwbtvfeHDpntTXNO7sAtcxvWHTwA4KCkCofwiuHryIG0evISszK9+5q29sQo2axjK9h0WD5+HFnWeyveFKoKGjid7uA9G4e3PoGusjMSYBz64/xBnPw4gJiaqQeGraGnCd+DWauLaAgUUNfEhMQeAjf1zZdRYv/ntc2rco17R0tTDMfShau7aCgbEB4mPicf+aN/avOYD3Ie/LNd6waUMxfPowmeJeOHwRK6evKvScQd8PxBiP0TKdKy/UdTTh6t4fDbs3g46xPpJiEuB7/RHOex5FbAn+/Zck3thtM1G/q4vUmHFh0VjQ6ocirz1o0Ri0GdoN59Ycwfk1R4rd9upEKBRi6PjpeBcShhtnD1V2c+Selq4W3KYNR1vXNjA0NkBcTDzuXbuHPav3IaKEeaq48dTU1TBowgB06tMRZlamiI+Jx/MHvvjzj0Pwe+wn8TUDxw3A9/PHF9qWoW3dEBoYWuz3II+0dbUx/sdR6NSzPYyMDREb/X/27ju+pvsN4PgnN3sPRHYi295qj5AQo0at6q9GSwdqdFBUh1WzqNmtihZFValdq/ZeCYJIZCEhe5Cb3x83CWnuTW4SkYTn/Xrl1TrjOd/7Peeee+5zv+MBh/85xnfzfyLqdkyJYuvo6LDir29wcnOgfc2uGrdb8PMsWge00Lg+JvIOgQ17lags5ZGhpQlNxvTCvVMjTG2tSI1L4Na+85xYsInEiNiSBdfRoc/mz7B0rcr3dd8tcNMqtd1o+G5XHJr4YmRtRsq9eEL3nOX4gk2k3HlQsnJUEHIuhHi6JDkqhBBFZGJhymebvsTR04nUxBTCgm9h61KVtv060LhTU6b1nUx48K1Sj9dv/P/oNrwXSqWSiKvh6BvqU71ZLao3q8Xv837lj6/Xa9wHIP5ePLERd3HydWHY7BE07daSBW/NIj0lLXf7G+dDiIvW/IBVxdkWG7tKZKRlEBdVwgexUmRiYcq4jdOwz67jiOBbVHapSst+ftTv1IR5/T4jIjisVOMZW5jw8aYZ2Hk48ijjETE3IjEyM6ZO+4bUad+QrV//zp9fPZ/JCzNLM+ZvmoeLlwvJiSncDL6JvYs9nfp3pEWn5nzUZxw3g0NLLd6dyLtcPK45cW9obIhXbU8Aom5FFXhsJ3dH/jf2Na3LWh4YW5gyZuMU7DwdSUtMITL4FpVcqtK0XzvqdGrMon5TiCzC9V/cePa+LgDcPH2VrExlvvWJsQmFHtuzWQ2avdpe67K+6L7+diUXLl/BytKirItS7plZmrH4j4W4ermQnJjMjaCb2Lva0bl/IK06tWRMnw+4EXSzVONZVbJi7m+z8KjuDkDoVdVnf9uurWkV2IJFk5eweeWWfMdy962Wu33ig0S15clIS9e67OWZuaU5K7Yso5qXG0mJyVwLuo6jiwM9BnTFr3MbhvUaybWg68WOP+LjYdRuUIP7cQUndTyzz9H5kxfJVOa/n92/d7/YZSivDC1N6L3pM2y8HMlITOVecBiWLrbU7N8Wj06N2dhnGrHB4cWO32xcH+zqe5Iap/4azlGjXxvazXwDhZ4uyTEPuH89EmsPB2q/3h73gIb83usLEsKK3lChIpFz8eLKyirrEjy/JDkqhCgXsrKy0NGpGN0Ehs4ajqOnE2f3nmLxyHmkJaehb6jPkGlv07qvHyMXv8/HAWPJUvOw/LTi1fNrSLfhvUi8n8icgVO5cT4EgAb+jRm5+AN6je3HpcMXuHYyOHefl7o0z02Mrp+7hj+XbCRLqcTEwpThC8dQz68hb858h6WjFuTus2j4XI3lNrM2Z+ZO1bYrJn9LzK1o7SvxGfvfzHew93Tiwt7TfPfefNKT09Az1Oe1acNo3qcdQxeNZUrHD7Q+Z8WJN2j2cOw8HLl59hrfvDuP+9nJ5Lr+jXhryQd0GdWbK0cuceXIxVKpg7I0ZtZoXLxcOLbnOF+OmElqcir6hvqMmjGSgL4BTFgygXf830WpZf0XNd7OtTvZuXan5nizR+NV25Nzh8/x2yLNCWodHR3enzsWQyPDolVAGes/8y3sPB25tPc0P7/3de712nfam7zUpy2DFo1iZsePyFJq98RdnHiGZsZUcqpCWmIKC3p9WqzXoW9kQP8v30KhkCHzC5OVlcXSH1fz/S/P5w8upeHD2WNx9XLh6J5jTBk+Pfe+MnbGaAL7dWTykkm82eEtre9TxYk3fv5HeFR3JzYmlslDPyfojOozvGbDGkz78QvGzBhFRGgkJw+cynMs9+qq5OiXo2dx9cK1p1Mh5dTkueOo5uXGwd2HmfDOZ6Qkp2JgaMDEmR/wcv8ufLn8c/q2G6T1eXrS2x+8wRujBha6namZCQ7O9iQlJjO42zvFeRkVkt+sodh4ORK65yzbRyzmYXIauob6tJ0xhBp9W9NpyUjW+H+s9WfJk5qM7UWjkS8Xul2V2m60m/UmOjpw4PNfOPfjTsjKwrSqFYHLR2HfyBu/mW/yx4CZxXmJFYacCyGePnm6FOXG7du38fHxwd/fv0Rx/Pz88PHxITq6/CZqyqONGzfi4+PDpEmTih2jOOcwPT2dxYsX8/333xf7uM+SvYcjjTq9RGpSKsvGLCQtWdXK8mH6Q74bv5SIa+E4ejnTqNNLpRrv5ZGvALB25i+5iVGA07tOsGnhOhQKBS8Pz9udq8eoPgDs+203mxf9npu4S0lIZunoBSQ9SKR599a41/XUquxvznwXK1trjv99hAPr9mq1T1mo6uFA/U5NSEtK5cexi0jPruNH6Q9ZOX45kddu4+DlRP2OTUotnkUVK+r6N0aZqeS7kQtyE6MA53ad5OCvuwFo0c/vab3scsPZw4kWgc1JSUphzpg5pCanAqprfP5HC7l1NQxXbxead2peJvGaBTQl8NVOJMUnMWfM3AK/UHcf8jI1G9ckLTVN4zblja2HA3U6NSYtKZVVY5fkuV5/Hf8N0dduY+flRB0tr//ixnPwcQYgOiSi2K+l60f9qeJmR0bq89ECrrTci41j9ISpLPtxdVkXpcJw9nCmVWBLUpJSmDF6Vp77ytyPviL06i3cvF1pGai5G3VJ43nV8qSpn+p98/k7U3MTowCXTl1m+dRvARjxWd5knEKhwNXLBaVSya1r2rcAr4jcPF3w69yG5KQUJr83lZTses1Iz2DKB7O4cfUm7t7VaBfYukhxK1WxYd5PM3j7wze02t6zugcAN6+GFuk4FZm1hz0egY3ISEpl55hlPMy+92emP2TvR98RdzUCG29H3Ds1KlJckyqWdPl+DC+9r90QBC0/GYBCV8GppX9x7ocduc3okmMesHP0MrKUSpxb1cLcsVLRXmAFIufixabM0nlmfy8aSY4KIcrUTz/9xKJFi0hLqxjJhhY9W6NQKDiz5wTJ8Ul51mUplRxYr0oSNu2q3Reo4sSr6mqHd0NfHmU85Mjmg/li7l+7B4DarepiYmECgJWtNc6+rgBs+25zvn1SEpI5nB2rRY/Cv1Q06NCYxp2akpKQzMpPy3diu2kPVR2f33OKFDV1fGT9PwA06qpdMq048UwsTDm0dg9HNuwj9nb+ceYir6q+0NrYP38PkH69/FAoFBzbfYzEB3nrS6lUsnOdqkVnm27afZl9mvEMjAwYMU01xuVPs1dwN0rz2Jt2LnYMHjeIqFtR7Fq/W6uylgeNerREoVBwac9pUuKT86zLUmZxbP0+AOp3bVaq8Ryyu9RHX71djFcBbg28aD24EzdPXSVo/7lixXgR/HvsFF36D2XvwSNUrmTNmHeGlHWRKgT/Xu1RKBQc2X00X7d0pVLJ9nU7AGjXrW2pxWvcRpXICDoTxMUT+YcB2blhN8mJybj5uOFZ0yN3uWM1RwyNDIkKiyb9Oek6r0nnVzqiUCg4sPNfEtTU65+/bQMgoLv2Q280bdOYTf/+SrtOrbkbc4+vpy8vdJ+cLvXXr2g/zEJF59OrBToKBTd3nyH9Qf57/+V1BwDw6tZU65jOrWvx+v65uHdsRHLMAw5/WXBLd1M7Gxyb+pKRmMrJxX/mW58QdpeDX6xm/+SfUf5nDP3niZwLIUqHdKsX5UbVqlXZtm0bBgYGJYqzYsUKHj58SOXKlZ9SyV4M/v7+1K1bFwuLZzsuWXG6PZUlj3reAFw7dUXt+pDTqskSfBpXL7V4HvVV+4QF3yJdTQuqhNh4Ym5FU9XVDs/6Ppzff4ZKDqr3Q3pqOpEaWm7F3FSNtehez6vAMusoFPT7WDW5zebFv/PgTvkeV8st+/Vc11DHN86o6tiziXbnrDjxoq9HsHritxpjutRSfdG6U46HJigu33o+AFw+GaR2fXB266haTWo+83i9hvakin1lbgTdZOsv2wrcdsys0RibGvPF0Ck0alu01hhlya2eqiX4zVPqJ3IJPaNqee7RxLdU4+UkR6OuFn0MNF0DPV6d9TbKR5n8Ov4bOr/ft8gxXhQ3QsNISU2jW6f2jB/1Flevh5Z1kSqE6vVV1+vFk5fVrr98WnW/qdOkVqnFs3VUTX549UKI2n2ysrKIvBWFVy1PqtfzJeSSalxNj+qPxxt93tWqXwOA8ycvqF1/4bQqqVz/pTpax3T3dsPE1Ji/1m9n3mdf4+nrUeg+XtVV98HrV1+c5GjVeqp6iT6pftiGmOx7v0MTH61j2ng5om9qSPDvBzn4xWoq+ToXuL1zixroKBTcPnwpt7Xkf537cYfWx6+o5Fy82GS2+tIjyVFRbujr6+PhUfgDSWFcXFyeQmlePObm5pibm5d1Mcq9qm52ANwNVz/L7L3smeWtbK0xNDHKM7nR04pX1bXgfXL2q+pqp4q///FyHR0ddHR0yFIzmreuvuojobJjlQLL3KavH45ezsRFxbLjp60Fblse2GbX8T0N9RWbPbO2ZRUrrc7Z04xnaGJE20GdaNHXj4y0DHb/UP7rs6gc3BwAiA5Xn/iNyW5Ja2Nrg5GJEWmF1P/TimduZUbfd1VDTayYtULteyJH4IBA6resx461Ozlz6GyFSo5Wzr5eYzVcr/ez7zEWVawwMDEkI6XglmfFjWfv45K9/h4t/uePd/NamFia8iA6lnPbj3Nx1ym18QACR/fGzsuJbV+tI6YE3fJfBLVq+LD+x0X4epf8eepF4phzXwlTPyFbTPYM6Nrep0oST1dPV2Ncvex1VZ2q5i6rlj0ZU1hIGC07taBFQHNsHauQ+CCR04fO8Pe6HTxMf1hgeSsK52qOAERoqNecmeor21bC2MSY1JTUQmNePBPEgIA3uHpJfVJaHa/slqNRt6PpPbAHTVo1xMLSnJiou+zdtp/9Ow5pHauisHRTXXMJ4eon10m4rXr2MbW1Qt/EkIeFfJYAxJy9wW+Bn3DvsnbDQdj4OAEQdy0SANd2dfHs0gRzh0qkxiVy/e8ThGw9rlWsikzOhRClQ5Kj4qlYtGgRixcv5rvvviMtLY1vv/2Wa9euYW5uTkBAAB999BEGBgb88MMP/P7778TExODs7Mzrr79Ov379ANV4le3bt8fFxYVdu3blWdaxY0cmTJjAV199xaFDh0hOTsbd3Z3XXnuNPn365CmLn58fERER7N+/Hzs7u9xl6enp7N69m8WLF7N161bi4uJwdXXl7bffpmvXrkRGRjJnzhwOHz4MQK1atRg3bhw+Po9/dfv444/ZtGkTs2fPpnv37nmOu3nzZsaNG0fPnj2ZOVM18PSxY8cYOHAgw4YNo2vXrsyfP5+TJ0+io6NDo0aNmDhxYu7r/eabb7h27RqVK1fG39+f0aNHY2xsXOxzklPWLVu2cP78eVatWsWNGzcwMTGhVatWjB49Gicnp9ztN27cyIQJE+jduzfTp0/PE+uPP/5g1apVXL9+HUNDQ9q1a8f777/PgAEDyMzMZO/e/ONNRkVF8fXXX7N//36SkpJwcXGhT58+DBw4MHfipZxzBbB48WIWL17Ml19+Sa9evXKPu379eq5fv05KSgqOjo74+fkxdOhQrK2ti103JWFho2pZm3hf/eyNSU908zW3MS800VaceOaVVPskadgHIDl7P3Nr1bY5iVQDIwPs3B2Iup4/weDopboeTC1NCyxz4DDVIO3bf/yLRxmPCty2PDDLruNkDTP4pjxRx2ZanLOnEc+1tjuvz34XW1c7DE2MiL19l5XjlxF55fkbL86ykiUACRqu1ye7nFraWBSadHha8QIHBGJqYcrN4Jsc26P5Ab6yXWWGTXqTuDtxfDv1uwLLVh4VdvJ62cIAACAASURBVL0m57leLYhLKXhW2eLGs8/+IjVg7rsYmeX9bGvyShsu/3OGn0YsyJecdarpht9bXYkMDmPX0vxDgoi86teuUdZFqJCsKlkBEK/huk7Ic1+xLPQ+VZx4OT/45Mw8/1/6hvrYu9oDYGZplrs8Z/vuA7vx6vB+efZp06U1fd7qzYSBk7h9s+L/sGCdU6/3E9Suf3K5lY2lVsnR8yeLPgmih48qOfrFgkmYmpnkWdetbyCH9hxh/FufanX8isI4+9kzVcNnb/oT934jG3OtEnLRp4o2eVjO2JUZSal0/m4MHv8ZU9O7ezNC957l77e/5lFaRpFiVyRyLl5sMlt96ZExR8VTtWrVKt577z2ysrJo1qwZqamprF69mvHjx/PBBx+wePFiHBwcaNCgAdevX+fTTz9l9erCJwyIjo6mT58+HDhwgDp16lCrVi2Cg4P55JNP+Omnn7Qq26NHjxg8eDCrVq3C19eXmjVrcvXqVT744ANWr15N7969OXXqFA0bNsTKyopDhw4xYMAA7t4t+IuiNi5cuEDfvn0JCQmhWbNmmJub888//zBo0CB+/PFHRo4cCUCLFi2Ii4vjp59+4uOPPy7xcQEWLlzIpEmTUCgUtG7dGl1dXf78808GDBhAUlJSoftPmzaN8ePHc+3aNZo0aULNmjXZsmUL/fv317h/fHw8vXv3ZufOndStW5c6deoQEhLCjBkzmDv38eznHTp0wNdX1fXM29ubbt265bb8XblyJePHjycoKIjatWvTunVrkpKS+P777xkwYADp6WUzrpaBkWrYh4caPugznlies+3Tjpfz34wCHjYysscd08/eNiE2nutnVQ8+Pd7rnW/7Sg6VafZySwD09DX/blarZV0cPZ1Ijk/mnzWaZ/8uT4pSx/qGT/ecaYpn7+WEc3U3DE2MADCxNKW2XwP0DJ6/3ywfX6/q37N5r/HCZ4F/GvEUCgVdX+8CwO/fbCzweKNmvoephSlLJi8jKb7we2Z5o1/I9fowz/WqXyrxrB0qYZKdzLkXFsPS12fwUfVBTKj7Jqs/XEby/URqtKvPgDnv5oml0FXw6px30FEo+O3jb2XcMlFqcu8rGib7evK+YliU+1QR4h3dcwyAGg2q06Bl/Xz79BrSAyNj1WeG/hOfFe7ZrRgz0jOY/cFcutfqRUfPLnz46niuB93AqZojM3+ZgbFp8X9wLy9y6ipNw/3/yTFXjYwLP0/FYedYFQsrVU+r26ERDO8/lubuHWhbPZDPRk/nQVw8Lds34/MFE0vl+GVFL/uazkxT3wr5yQSYnhbPv8VhkH0N1x8WiFv7ehz+ci3f1xvOMq83+Pudr0mNTcDNrx5tpg8uleOXF3IuhCgdkhwVT9X+/fuZPn06GzZsYPny5axevRodHR127NjB4cOH2bhxIytWrOCnn37iiy++AGDdunWFxj137hy+vr65LSzXrFnD1KlTAfjhhx+0KtuDBw+IiYlh69atLF++nF9//ZUhQ1QTFUyZMoX69euza9culi5dytatW2ncuDFJSUls3Vrybq5Hjx6lS5cu7Ny5k8WLF/PXX3/h6OhIZGQks2bN4quvvuL3339n6dKlrF+/Hj09PXbu3MmDBw9KfOz9+/ezbNkyNm7cyOLFi9mxYweenp7ExMSwZcuWAvc9cuQIv/zyCw4ODmzZsoVvvvmGH374gY0bN5KWlkZcXJza/eLj43Fzc2Pv3r0sW7aMVatWMX/+fADWrFlDRobqQ3vixIl07NgRgICAAObOnUujRo3IyMjgq6++wsrKih07dvDdd9+xePFi9uzZQ6NGjbhx48ZTOS/FocwseIxUheLxODDa/LJXnHiF7QOqcUH/W4jf5/2KUqmkRc82DJwylEoOldHV18OnSQ0+XPEJ6amq8/LooeYERIeBnQDYt3Y3qUkVo0VEYfWl82QdU/hJexrxLu0/y+jag/igwZv8OOZrHmU8osObXXln+UeFHr+iKUp9afOmeRrxXvJ/iapOVYmNieWfP/7RGKt9Lz9eat+Ef7cf5tC2itlNsvD6evwoqE1jhOLEUyqz2PPNFo6u/YeFvT/jysHzZKSmkxKfzPHf97N88EyUmUrqd2mKa33P3P07DO+BUw03DqzYzq2z2nd5FaKoinRff8r3qZx4oVdvsXuTakLFT5d9Qvse7TAyMcLM0oxeb/TgjY8G57aMfPJzetfG3ezauJuxfT7k77U7SHiQSEZaBqcOnmb0K+9zJ/IOjm4O9Bj8cqHlLu+K9sxUOs2rlEolK5eu4Y81f/FG9+Ec3X+CtNQ0Eh4ksmXd37z32odkZmbi360dtRtoN5Z2RZBVhHt/aTVt083+wc24kgVH5/zOqaVbSI1N4FFaBiFbj7Nj5BIAqvduibWnQ6mUoTyQc/Fik9nqS48kR8VTVatWLXr3ftwqzdfXN3cc0YEDB+Lp+fhLT05SLCxMu26kkydPzjNZUK9evTA2Nubu3bvcv6/dhDDDhg3L05W8c+fOuf8/ceJEDA1VvzLr6enRoUOHIpWvIHp6ekyYMAFdXdVYUaamprRp0waAJk2a0KVLl9xtPT098fDwQKlUEh5e9Ikr/qtTp074+fnl/tvMzCx3SICQkIK/bK5cuRKASZMm5RnL1dvbm3HjxhW475QpU7C0tMz9d2BgIA4ODqSkpBT6uhITE0lNTcXY2BgrK6vc5QYGBkyaNImpU6dSt27dAmOUlpwJkDS1sNIzeLy8oJadJYmXnlLwPgD62fs9WYYLB86y8rPvyXyUScCgziw88i0/h6xj8vppGBjq88PHSwE0Jj0NjQ2p00bVmuXfTfvVblMepaequj/qaagv/SfqWFNruKcdLzE2gbTEFJLiEjj2x0EWDZ5O5qNMavs1wKeZdhN+VBQ53U81taJ9sr7Staj/pxGvVWdVK+kDWw6SqaE1olVlK975/G2S4pNY/MmSQstVXmWkFlxfT7ZW1ub6L068+Og4/vxyNb+O/0btmKZh565z5V/VBCu12jcEwM7LiY4jexIbfoetcwueNVeIksq5r2jq8aGf57O48J4rxY03b/wCTh08jaW1BZ8snsjfV7ew5dIm3psygr2b97FzvarHRkrS4xmqV8xbyYxRs9ROyJSckMzmn1U/hDfv0KzQcpd3qdn1aqjx/v94eboW56k47kTdZcHUpUz5YKbabvOXzgZx/OBJAFoHtCiVMpSFnK7ZuhqefXSfuPeXVjfqnLgZSamc/f7vfOvDD10i5ux1dBQK3Nrnb339vJBzIUTpeP7674kyVa9evXzLcsaGzOk+nSMn0alN92grKytcXV3zLNPV1cXGxoaIiAhSU1O1GoPyvwm1nH0sLCxwdHTMsy5ncqKn0X3b3d093yzwOceuXj3/DNlFqZvCqEsiVq6smrk8JSVF435ZWVkcPXoUfX19WrdunW99QEAAEyZMULuvpaWl2sm17OzsiIyMJCFB/VhROSpVqoS7uzs3btygT58+dOvWjTZt2uDp6UmNGjWoUaP0xlRzrVmNgV8MVbtu5Wffk3Q/EVNLM0ytzNRuY2b9eFKrxNj4Qo9XnHhJ2WOVmVlpnkDLzFoVLzEub13vXrmd4GOXafeqPw6eTqQlp3L5yEUOrNuLR/Ys1Jpmn6/duh4GRgZEXY8g7HJooa+tvEi+n1RgHZtaP16eGFvwtVka8QBuXbhB8OEL1GxdD++mNbhypOhjoJUVj5oeDJ/yrtp1Sz9dRuKDRMytzDHXcL1aWD++N8Zr8Z4paTyFQkHjdqqxsQ78dUDjcUZOG4GFtQULxn9NXIz6VvIVQfL9JEwszTDReL0+rsckLa//pxkvR8TlW1RvXRcbx8roKHR4dc476Bnqs3bi9xq7JguhLc+aHoyaOlLtuq8nLybhQUKB9xXLJ+4rD7S4TxU3XlpKGh8N+Jh2L7elRUAzLG0siYmIYc8f/3D60BkmLFD9MB1bhHtSyGXVrPZVnWy13qes+NTyYtz0sWrXzZ40n/j78VhYmee5zz/Jyubx8vuxJe99VVxXLobQrO1L2D8xcVZFl/YgCSMrU4ys1I9Lb/TEs09qrOYx8UsiPUH1veX+9SiUGno5xV6NoGo9DyxcCp5ctCKTc/Fik9nqS48kR8VT9WRLwRw5k+882QLwyeXa0DSLek5LTKWy8G7G6sqnqWxFLV9Rj/ssj62u7nLqraAuRw8ePCAlJQUHBwcMDPL/Qm9sbIyNjY3WxwRVC1qAzMzCx42bP38+I0aMICgoiKCgIGbPno2DgwPt27dnwIABuLu7FxqjOEzMTfBpnD9hnbMu8noEVd3sqaLhS0bOTO/3Y+K0ajlanHiR2ZMpVXbS/LCRs190aP4ZXW9fCeOXz/MPR+FaU1Wnt6+qby1dL7tF17FthzUetzyKvh6BrZsdlTTUcaXsunoQE6dVy7nixNPV16Oysy2ZjzK5Fxajdr87N6Op2RrMK+e/X5RnpuYm1GqivuugqbkJ4SHhOLg5YOes/kuibXY9xsbEatXSp6TxajSqjoW1BXcj73L5VJDG47TqompdOmbWKMbMGqV2m4A+/gT08Sc6PIZBzQcXWvaycOd6JFXc7LDRcL+wcVT9WBav5fVfkni6BnpkapjELedT79HDR1g7VMYt+8ea4b9oHrcvcExvAsf05trRyyzuP6XQsosXl6mFKbWbqG+Vb2phSlhIOI5ujthpSGblzA5/L1q7+1RJ4mVlZbF38z/s3Zx/yA/PWqr3xc0roXmWGxgZaHzmyHmmfFgRJlA0N6N+kzoa14WG3MK5mhMOTnZqt7HPXn43+h5ppfyjir6BPg8z1I/5mPMYXxHqXFv3QyKxcquKubP6e7+5k+renxRzv9RaKz64kf+Z9r+ysr8TakrYPQ/kXAhROqRbvXiqcpJfT9vTShbq6xc+2URxFZSgLa160UZx6+7RI9UDXUGvS1NyVaEo+a3F19eX7du3s2zZMvr27YuzszORkZH88ssvvPzyy+zevbvEx1An6Ogl/ufaS+1f0NFL3DyvaoHhWd9b7f45y6+f0W7Wx+LEu3leNRyCS3U3tV3rLSpZYutihzIzkxvnHg+d0LRbC7oN74VFJfXJt/rZyc8gDa0WvRr4ZK+/VOBrKm9uXVDVsXt9L7Xrq2Uvv6nlmIbFiddtTB+m7F1Iv8+GaIxrZaf6sSE+RrthQsqL80cv0NE5UO3f+aMXuHpede361vdVu3/17OXBZ65odbySxqveoHpuuQty8fgljX93o+4BcP/ufS4ev8TVc1e1KntZCLtwAwC3J8byfJJr9vWq7ZiexYnXbfyrfHVtFcO+1zymrmMNNwBiQiJ4mJ7BjRPBGv+SslvE34+4x40TwUQFl3z4G/F8O3fkPO2c/NX+nTtynivnVe/hGg3U/ziaszzorOYfVJ5UnHjWVazpMehlur7WWe0+VR1tcfetRkZ6BpdOXQagafuX2B7yF5vOrtc4maJnDVVPnrCQ8v8+OXXkDA3sW6r9O3XkDJfPqe7rtRuq/0EuZ4zPC2cul1oZ35v4DsfC9rHg55kat/Gulf0ccC201MrxrN05fxMAOw33/pzlMWeul1oZYs6qYtt4OaBrpP47nVU1VYI8IexOqZWjrMm5eLHJmKOlR5KjQhRBTqJRXcvHwrqKVzTW1tYYGhoSGxubO4HSk9LT07Ue67W49PX18fPzY+rUqezevZudO3fSq1cvHj58mGfW+2fpxPajADQMaIKpZd5upToKBa37tAPg3z+0G5OzOPHu3b5L6MUbGBgZ0KJnm3wx2/ZXjZd79p/TpCQ8HpesRc829Bv/Pxp1einfPh71vKjRrDaJ9xM59te/+dYbGBlg764aUD304g2tXlt5cWa7agbgev5NcmfMzqGjUNCst6qOj23S3MW6pPGuZCeUa7Sqm9uy7kmVXapSq61qWJILe09rVY6K4t+/VddT847NMP9PV2yFQoF/H38A9m7c+0ziedRSJQpCLhacDPzglQ81/u3/U/V+PLHvJB+88iHT352hVdnLwvntxwGo7d8YE8u8XfB0FDq81Ft1Dzm5SbsJp4oT7/blUHT19fB8qTrWaq5/h+oueLeohTJTybm/j5N4N56FfT7X+BdyVJVQOrp+Hwv7fM6Gz1doVXYhNDn4t+p6bdGxRb6u8AqFgo59AgDYvXFPqcVTZip5b+oI3vtiBKYW+bvLvjq8HwC7Nu7JHdP02sUQ9PT1MDEzoVVgy3z7GJkY5SZb9xUwjEhFsXeb6t7btlOr3BnjcygUCrr1CwRg24YdpVaGK5euoa+vR4Om9dR2m/eq4UmTlg3JzMxkz9aKMz57Ya7/fQIA944NMbTKf++v3kc1BNeVjfmfIZ+W8EOXSI1NQN/EiFoD/PKtr1zdBYfG3mQpldzYcbLUylHW5FwIUTokOSpEEZiaqj6A7t27l2/duXPnnnVxSpWenh4NGzbk4cOHHDqU/0vz/v37teoeXxh1LVtPnjxJYGAgn376aZ7lrq6uTJ48GYCoqMK7c5SG8OBbnNlzEhMLU0Yt/wiz7OSMvqE+w2YNx9HLmciQ25zMTqDlMLM2x97DEVuXqk8l3uYlGwAYMGkQ1Zs+bkHRoENjeozqg1Kp5K9lm/Lsc3SL6iHplfdfxcnn8QRb1Wp78N7SDwH4a9lGtRMyOfm4oNDV5cGd+yTHJ2lfYeVARHAY5/ecwtjChLeXfZA7VqieoT4DZ72Dg5cT0dcjOLvjeJ79TK3NqerhQOX/nLPixAs6dJ6bZ0PQM9DjnWUfUsX1cZdABx8X3vtpAvqGBpzY8i9hFSz5XJibwaEc230MUwtTPlk+KTdRoG+oz9g5o3H1diE8JJx/t+cdrsHC2gJnDyfsXe2fSrwc7tVVw0fcUjN5yfMoMjiMS3tOY2xhwpBlY3PHCtUz1OfVWW9j5+VEzPUIzu84kWc/U2tzbD0cqPSf67848c7vOMHd0Gj0DQ14Y+nYPF3yXeq4M+y7j1DoKji0ahex4dLCRDx7N4JucmT3UcwsTPn8m8m5iTd9Q30+nPM+bt6uhIWEcfDvvMkG1X3KGYf/3KeKEy8+Lp6zh89hYGTAh7Pfx8jYCACFroI+b/Wm+6CXSU1OZdXXa3L3iY2JZc8fqu73o6eNpG6zx13SbWxtmP7jFOyc7bh2MYTdm7RL7JZn14Kuc3DXv5hbmDHnu2m5Y7caGBrw6bzxuHtX42bILf7ZljcRbGVjiZunC06uJZ81+5+/DxB+8zaGRobM/m4aDs6Pz32Nur4s+Hkmurq6/P7zH0SERZb4eOVFbHA4N3efwdDChMDlozDKvvfrGurjN2cYNt6O3A+J5Pr2vIkwI2szrD3ssXAt+Zi3WZlKjs79HYDmE/rh3ePxJGPmjpXwX/A2OgoFVzb+S2JEbImPV17JuRCidMiYo0IUgbe3qovzxo0bGTBgAGZmqg+j3bt3s3379rIsWqkYOHAghw8fZsaMGfj4+OROWhUeHs7MmZq7ExWFoaEhoJqhPoeXlxfh4eFERkbSq1evPBN9bd26FYDatWs/leMXx08Tv8HpdxdqNq/NgiPfEhlyG1uXqphZmZMcn8yCt2flG3IgYFBneo3tx93wO4xt+U6J453YdoR9a3fTtl8HJq2dyu2rYejq6eW27lw3ezVXTwbn2effTftp2LEJTQKbMX3bPCKvR6DQVeDo6QTA3tU72frNZrWv2cpWNYFYRUuM5lg96VscfKbi27wWXx5eRnRIBJVdqmJqZUZKQjLL3pqTr47bDepEtzF9uXf7DpNajihxvG9HzOP9NZ/hWseDL/YsIOZGJOjoYOfhgEKhIPjfC/wyfnmp10VZ+HrCYub5uFGvRT1WHVtJWEgY9i72mFuZkxSfxBfDpuarr5cHd+P19/+ndjzP4sTLYZN9LSdV0Gu5ONZO+p7RPl/g3bwWnx9eTExIBJWeuF5/eGtevvpqNagjgWN6E3v7LlNavleieJkZj/jx3a8Y/sskXOp68Mk/87lzMwqFroKqHqrPlYu7T/HHtJWlXxlCaPDVhIUs8nGjQYv6/HZ8NWHXwrF3tcPCyoKk+CQmD/0i3/uk55DuDH5/INHh0bza7PUSx5v94Ty+3b6Utl1b06hVAyJCI7F1rIJ1ZWvS09L55I3PiA6PzrPP158swtnDier1fFmwfh5RYVEkxidRzccNfQN9IkIjmDTkUzIfPR/j/k0fP5cffd1p3LIh205u4Oa1Wzi6OGBpbUFifCIfvjExX732G/IKb3/4BpHhUXRt0qdEx3+Y8ZAPh37CsrXzqVmvOpv+/ZWwG+EodBVU81RNHntg57/M+3xRiY5THv0z4Scq+Tjh3KImg48tIC4kEksXW4yszEiPT2brsAXwn7qvMziAl97vRUL4XX5urn6yraK4uGovNl6O1H2jIx0XjaD5hP6kxiZSydcJXX09Ys5e58Dnv5T4OOWdnIsXl+YZQ0RJSXJUiCLo3LkzS5Ys4ebNm3Ts2JEGDRoQGRnJxYsX6d69O5s3q08sVVTt2rXjlVdeYcOGDXTp0oWXXnqJrKwsjh07hq2t6lfHko7j6uqqepBcu3YtkZGRdO/eHX9/f8aNG8f06dN59dVXqVevHlWqVOH27dtcunQJExMTxo8fX+LXV1xx0bFM7vohPUf3pYF/E1x8XUlOSOHw5gNs+GotMWomQSqNeN+PW8rVE8H4vRaAk48LOjo6XD0VzM6ftua2Ev2vJSO/4vqbXWnZqy1V3exRZmYSfOwSe1bv5MjmgxrLaJY9A3VKYkqRXlt58SA6jhldx9NldB/q+jfC0deVlIRkjm8+xJb5a7kTGl14kBLGi4u4x/Ru4wkY9jL1A1+iimtVHmU84sapqxzZsI9/1/2TO3j98+Ze9D1Gdn6P18YMoFlAM6r5ViM5IZl//viHlfNWERlatNY1xY2nUChyu6smPzHkxPMuPjqOuV0n0Gn0K9Tyb4SDryupCcmc2vwvf89fz90iXv/FiRcZFMaswHG0f/tlarVvQBVXOzLSM7h+PJhj6//h2Prnp/upqJjuRd3j7cDhDBz7Oi0CmuFevRpJCUns+WMvP81bScTNiFKPF3M7hrcDRzBo7Os0btMQjxruxMfFs3PDblYv+lXtuKHJiSmM7vU+PQa9TPsefrh4OWNV2YrbN26zf9tB1i5fn9sN/3lwJ+our3V8k2HvD6Ftx5Z4VfcgMSGJvzfuYvncHwi/ebvUy3Dtcgj9/AYxaMQAWvu3wNnNkfS0dM4cO8fmX7fy59ptpV6GspAcHcfazpNpPKYn7gENqOzrQnpCMlf+OMyxeRuID1U/4eTTduCzXwg7cIE6QwKoWtcdIytT7l+P4srGfzn30w4y09RPlPU8kXMhxNOnk1XQdNVCaGnRokUsXryY0aNHM3z48DzrXn/9dY4fP87q1atp1KhRnnU+Pj7o6upy+fJlbt++Tfv27XFxcWHXrl0Aapc9yd/fn7CwMPbs2YOTk6r1m5+fHxEREezfvx87OzuNywqLv3HjRiZMmEDv3r2ZPn167vLIyEgWLlzIgQMHSE5OxtPTkyFDhlCjRg06d+5Mz549c1tVHjt2jIEDB9KsWTNWrFjxVOpMWx9//DGbNm1i9uzZdO/ePc+6zZs3M27cuDxl1fR6lUolv/76K2vXriU0NBQTExP8/f0ZNmwY/v7+1KpViw0bNhRan5pel1Kp5Msvv+TPP/8kNTWVIUOGMHas6tfMrVu38ttvvxEUFERaWho2NjY0b96cd999Nzepqq3/ufYq0vai9Jjq6JZ1EUS20MwXp/Vkeeerq36iNFE25p4sv+PIvmgC6r1d1kUQ2eIz8w+7I8rGED23si6CEOXSe+GryroIpeqw/SvP7FjNozY8s2OVB5IcFUJoFBISgomJCfb29vnGBr18+TI9e/akc+fOzJ8/v4xKqD1JjpYfkhwtPyQ5Wn5IcrR8keRo+SHJ0fJDkqPlhyRHhVBPkqNPz4uWHJUJmYQQGi1ZsoR27drx66+/5lmempqaO1u8v79/WRRNCCGEEEIIIYR4YWRl6TyzvxeNjDkqRDm3bNkyrl+/XqR9Jk6ciI2NTYmP/frrr7N7926++OIL1q5di6urK6mpqZw9e5aEhAS6dOlC586dS3wcIYQQQgghhBBCiLIgyVEhyrnDhw9z/PjxIu0zZsyYp5IcbdCgARs2bGDFihWcOHGCffv2YWxsjJeXF6+88gq9eklXdSGEEEIIIYQQorQ9n1O3lg+SHBWinPvll1/K9Pje3t7MmCFjrwkhhBBCCCGEEOL5I8lRIYQQQgghhBBCCCHKsSxevLFAnxWZkEkIIYQQQgghhBBCCPFCkpajQgghhBBCCCGEEEKUY8qssi7B80tajgohhBBCCCGEEEIIIV5I0nJUCCGEEEIIIYQQQohyTCljjpYaaTkqhBBCCCGEEEIIIYR4IUnLUSGEEEIIIYQQQgghyjGZrb70SMtRIYQQQgghhBBCCCHEC0mSo0IIIYQQQgghhBBCiBeSdKsXQgghhBBCCCGEEKIcU5Z1AZ5j0nJUCCGEEEIIIYQQQgjxQpKWo0IIIYQQQgghhBBClGMyIVPpkZajQgghhBBCCCGEEEKIF5K0HBVCCCGEEEIIIYQQohyTMUdLj7QcFUIIIYQQQgghhBBCvJCk5agQQgghhBBCCCGEEOWYtBwtPdJyVAghhBBCCCGEEEII8UKSlqNCiBfCb1HHyroIIltf+yZlXQSRrYauZVkXQWS7oUwq6yKIJwTUe7usiyCy7Tz7TVkXQWRL+3xkWRdBZOu7ObasiyCydaNSWRdBvEBktvrSIy1HhRBCCCGEEEIIIYQQLyRpOSqEEEIIIYQQQgghRDmmlIajpUZajgohhBBCCCGEEEIIIV5I0nJUCCGEEEIIIYQQQohyTCljjpYaaTkqhBBCCCGEEEIIIYR4IUnLUSGEEEIIIYQQQgghyrGssi7AhkgF7QAAIABJREFUc0xajgohhBBCCCGEEEIIIV5IkhwVQgghhBBCCCGEEEK8kKRbvRBCCCGEEEIIIYQQ5ZiyrAvwHJOWo0IIIYQQQgghhBBCiBeStBwVQgghhBBCCCGEEKIcU+rolHURnlvSclQIIYQQQgghhBBCCPFCkpajQgghhBBCCCGEEEKUY1llXYDnmLQcFUIIIYQQQgghhBBCvJCk5agQQgghhBBCCCGEEOWYzFZfeqTlqBBCCCGEEEIIIYQQ4oUkLUeFEEIIIYQQQgghhCjHlDJZfamRlqNCCCGEEEIIIYQQQogXkrQcFUKIZ8TKypLJn7xPj+6dsLe35e7dWHbs3Me06fMJC4socryGDeowfvxIWrZ4CQsLMyIiotm6bTdz5i4lKipG7T5GRka8N/INevfuhreXO3p6utwKi+Cvv3YyZ+5SYmPvl/RlliumFqb0GtOPRh1fwtrWmoS4BM7tP8Omheu4F3G3TOIFDApk8JS3mDNkOmf2nlS7TePApoxdPr7AODMGfMbFf88X+TU8K8YWpnQc8wq1AxpjYWtNUlwCwfvPsfPrDdyPuPdM4g39/iNqdmioMeaDqFi+aDYi3/LGr7Sm2YAO2Ps4k/nwEVFXwjm4Yjvntx8vcrnLI1NLU/qPGUDTjs1yr+PT+06xduGv3C3O++IpxNPV0+WrrQtwq16NSX0ncPHoBbXb1W/TgO7DeuBV1xtDI0PuRd3l2M5j/L5kPYn3E4pc9vLAzNKMQWNfp2WnFlSyteFBXDwn9p1g5fxVxETceSbxjIyN6PtOb9p1a4u9ix3xcfFcPh3Mr0vXcvX8VbX79HmrN8M/fbvAsrzWchCRoZFFfg3PI6VSyWtvv094RBSHtq0t6+JULMZmGHYegF7d5uhYWJOVFM+jy6fI+PtXsu4X8T1iao75rILrP337b2T8tTLPMh1TCwwC+qJXpxk6VpXIio8lM+Qi6TvXkXWn6M9wFYmZpRmvjXmNZp2aYWNrQ3xcPKf2nWLNgjXcKeY9Stt4r419jf+9/z+t4u5av4uv3v8qz7IGrRvw8uCX8anvg6mFKYkPEgk6FcSGbzYQdCqoyGUvTwwtTWg0phfunRphYmtFalwC4fvOc2LBJpIiYksWXEeHVzZ/hoVrVX6q+26+1Y3H9qLx+720ChW8/gB73/+2ZOURuZRI09HSIslRIYR4BqysLDl4YDPVfb1ISEjk/IUg3Ku58MaQV+nZIxC/Dr25cEH7h7SuXfz5ff336OnpERt7n8tB1/Bwd2XUe0P532uvENh5AKdO502cWVtbsXvXeurWqYFSqeTWrdukpafj6eHGhx8Mp2+f7vh37Mv166FP+dWXDVMLUz7fNBNHTydSElMIC76FrUtV2vXrQJNOTZnS9xPCg28903hutdzpN+71Qo/l4uMKQMytaB7cUZ+wTk5I1rrsz5qxhSmjN06hqqcjaYkpRAXfwsalKk37taNOp8Ys7jeFqOCwUo9n7+sCQOjpqygz8w9hnxSbN5mmo6PDawtG0rB7CwDuR8aSFBuPWwNvPJvW4OTGg/z60TK1sSoKU0tTZm2ci7OXMymJKdwKDqWqix3+/QNoFticiX0+5lZw6DOP1+e9frhVr1bgNr3efYVBE4YA8ODufe5F3sXR3Ykeb/WkeecWTOg9nnuRRU/uliUzSzMW/7EQVy8XkhOTuRF0E3tXOzr3D6RVp5aM6fMBN4Julmo8q0pWzP1tFh7V3QEIvaq6j7Xt2ppWgS1YNHkJm1duyXcsd99qudsnPkhUW56MtHSty/68+/rblVy4fAUrS4uyLkrFYmyGyQdz0bVzISs1BWVkKIpKdhg074h+veakLBiPMjJU63C6Dm4AKJPiUcbcVrtNVlzeH5h1bB0xGTkdhY0tWcpMlJGh6Bgao9/UH70GrUlbMZtH548U9xWWa2aWZszbNA8XLxdSElO4GXwTexd7OvbvSPNOzRnXZxyhRfjMKGq8u5F3uXT8ksZ4hsaGeNb2BCDqVlSedQM/Gsiro14FIPFBImFXw7BzsaNFYAuaBjRl2eRlbP1lq/aVUY4YWprQa9NnWHs5kpGYSmxwGBYutlTv35ZqnRqzuc80YoPDix3/pXF9qFrfk9Q49ff2xMh7RB2/onF/PWNDqtR2AyD+VtET6KLiOnz4MMuXL+fKlSs8fPiQmjVrMmzYMFq3bq11jP3797Ny5UouXLhASkoKVapUoVWrVgwfPhw7O7tSK7skR4UQ4hn4Zvkcqvt6sW3bHgb8712SkpIxNDRkyeIvGTyoH6tXLaVe/fYolYUnXRwd7fl5xdfo6ekxbfp8pk6bT2ZmJsbGRiz6egaDB/Xj1zXL8a3RMk+8JYu/pG6dGgQFX+PVAe9w8WIwAM7ODqxauYQWLZqwZvUyXmoaWGr18CwNnTUcR08nzuw9yaKR80hLTkPfUJ83pr1Nm77teW/xB4wPGEOWFnX+NOJ51PXiwx8nYWxmXOixnKu7AbDmy5858fdRrV9zedFv5ltU9XTk8t7TrHzva9KT09Az1Kf3tDd5qU9bBi4axeyOH5GlzCq1eIZmxtg4VSEtMYWFvT7V6jjt3upKw+4tyHz4iPWTfuDYun8AsKxqzZBvPqBRr1bcj4pl25zfil4p5cTIWaNw9nLm5J4TzB05m9TkVPQN9Xl3+nDa9/XnoyXjGOU/Uqt70dOK5+rjSu8RfQo8jlv1arw+fhAAP079gc3fbQKgkl0lJnw3Ca+63rw3ZxSfvTZZy5ooHz6cPRZXLxeO7jnGlOHTc+tv7IzRBPbryOQlk3izw1tan4/ixBs//yM8qrsTGxPL5KGfE3RG9dlQs2ENpv34BWNmjCIiNJKTB07lOZZ7djL7y9GzuHrh2tOpkOdQVlYWS39czfe/SGvR4jAaMApdOxceXTxO6k+zID0V9PQx6j8S/ab+GA35mJQZwyFLu/eIwkF13T46tZ/09csL30FHgfHQSShsbMmMDiP126m5LUX1ajfFaMg4jN6cQMqXI1BGFz8ZVV6NnjUaFy8Xju85zswRM3PvKSNnjCSgbwATlkzgXf93tb5HFTXezrU72bl2p+Z4s0fjWduTc4fPsXbR4/dYo7aNeHXUqzx6+Ihlny5j26ptACh0FfQf2Z/XP3ydd6e8S/CZYK5fvF6CGiobbWcNxdrLkVt7zrJzxGIeJqeha6hP6xlDqN63Nf5LRrLW/2Otn7Oe1HhsLxqOfLnAbYLXHiB47QHN5Zs9lCq13Yg4fJnTizYXuQxCs6Kf0Wdn48aNTJgwAQMDA5o2bYpSqeTYsWMMGzaMKVOm0K9fv0JjfPvtt8ybNw+FQkGdOnWoVKkSQUFBrF27ll27drFq1So8PDxKpfwy5qh45j7++GN8fHzYvPn5vVFGR0czcuRImjRpQu3atQkICND6oaE82LhxIz4+PkyaNKmsi/Jc8PHxoGePQBITkxg0ZBRJSaoWf+np6bz19odcDrpKjere9OihXVJywKs9sbS0YN++w3z+xVwyMzMBSE1NY/iIj4mNvY+7uyt+7Vrk7uPoaE/vV7qSmZnJwIEjcxOjAOHhkfTt/xaJiUk0bFCH1q2aPsVXXzYcPBxp3KkpqUmpLB2zkLTkNAAepj/k2/FLuX0tHCcvZxp3eqnU4+koFAQM7szkddOwrGyp1fFcfFQtHiOuVrwvWrYeDtTu1Ji0pFRWj11CenZdPUp/yNrx3xB97TZ2Xk7U6dikVOM5+DgDEB2iXXdHhZ4ufu+ovgzsWLghNzEKEB9zn1WjF/Eo4xFth3bGyr6SVjHLG0cPJ5p2akZqUgrzx8wjNTkVUF3Hi8ctIvxaGM5eLjTt1OyZxVMoFLw3dzQ6Ojo8zHiocbs2PduiUCg4ve9UbmIUIDY6loUfLACgXqv62FStOOfG2cOZVoEtSUlKYcboWXnqb+5HXxF69RZu3q60DGxRSKTix/Oq5UlTP9V75/N3puYmRgEunbrM8qmqrpAjPnsnz7EUCgWuXi6qXgjXtG8F/qK5FxvH6AlTWfbj6rIuSoWkqOqEXt3mZKWlkLpyrioxCvDoIWmrF5IZFYauvQt6dbW7ZwEoclqORml33erVbYaugxtZDzNIXf55ni70jy4cJWPX7+jo6mHYc6jWZagonDycaB7YnJSkFOaMmZPnnrLwo4WEXQ3DxduF5p2al0m8pgFN6fRqJ5Lik5g7Zm6e71o9h/UEYMvPW3ITowDKTCVrFq7h4F8H0dXT5eUhBScByyMrD3vcAxuRkZTK7jHLeJj9XJSZ/pB9H31H3NUIbLwdqdapUZHiGlexpNP3Y7TuLq+JW0ADarzalvT4ZPaMWV6sBK2oeGJiYvjss88wNzdnw4YNfPfdd/zwww+sWbMGMzMzpk+fTkyM+mHfcoSEhDB//nxMTExYs2YNa9euZenSpezcuZMBAwYQFxfHxIkTS+01SHJUiFIwbtw4du3ahZmZGX5+fjRt2hSFQt5uL6rXBryCQqHgr627uH//QZ51SqWSn39W/dLdt492D2iRUTH8vuEvvvthVb51GRkZhISoukw6OTnkLm/dWnUN3rgRxpmzF/PtFxNzl1OnVN3w69evrd0LK8da9GyjSqTsOUFyfFKedVlKJQfW7wWgWdeWpRpP31Cf6X/NZfAXw9Az0GPDgrXcDS+4e5GBkQG2LlV5mP6Q6NCoArctjxr2aIlCoeDSntOkxOft+p+lzOL4+n0A1Ouq3ZfZ4sbL6VIffVV9t8n/cq7jjqm1OY8yHnFgxfZ86+/diuHKwfPoGxpQt7N2SfXypm12gvH47uMk/ec6ViqV7Fm3G4CW3Vo9s3g93u6JV11vNn+3idSkFI3bVcpOeqrroh9+NYz07O7blR0qa1X28sC/V3sUCgVHdh/N1y1dqVSyfd0OANp1a1tq8Rq3UX15DjoTxMUT+buu7tywm+TEZNx83PCs+bilhmM1RwyNDIkKi86te5HXv8dO0aX/UPYePELlStaMeWdIWRepwtFr7IeOQsGji8chJe89hiwlD4/uUm3XQPvumrnd6qO0G1ZH17c+AI/OHyXrXnS+9Q8P/KXarnoDdEyfryET/Hr5oVAoOLb7GEkP8t/jd65Ttehs3U27+n+a8QyMDBgxTTVm+IrZK7gX9XjscYVCQc0mNQE4tPWQ2v2P71GNIe5Zy1Orspcn3r1aoKNQELr7DOkP8j8XBa9Ttej07KZ9Ywfn1rV4bf9c3Ds2IjnmAUe+LF5Ld10jfVpPGwzA0dnrSYqKK1YcoZlS59n9FcXq1avJyMhg8ODBeHt75y6vU6cOw4YNIz09nbVrC76uNm/ejFKpZMiQIdSvXz93ub6+PhMnTsTGxoazZ88SEVE64zxLt3ohSsH586ok0+rVq7G3ty/j0hSdv78/devWxcLi+XrIKytNGqtu7keOqJ9859ix0wC0bKFdS7rVqzewevUGtetMTIzx9laNG/fk2KEHDhylb/+Cu2aamqq6e+vp6WpVjvLMs54XANdOBatdf+20apwkn8bVSzWevqE+bjWrcftqGD9O+obg45dp/Uq7Ao/l7OOKQleX21fDK+TYlq71VF80Qk+pn8Tl1pkQANyb+JZqvMfJUe1a31pnJ9Viw2JIT0pVu829UNUXY5e6pdOdp7R51/cBIFjDdXzljOo6rtG45jOJ51DNgf5jBxBxI4Jf56/Bv3+AxmPdi1Z98a1W0z3fOjtXOwyNDFXbRRZ9sq+yUr2+6pq9ePKy2vWXT6vGoa7TpFapxbN1tAXg6oUQtftkZWUReSsKr1qeVK/nS8glVfdTj+qPxxsV6t0IDSMlNY1undozftRbXH1OxvN+lnTdVPeYzBvqr2llqOreo+up3T0LQOGgGtM7U8vkqMJa9R5Rhmt4jyQnkJWSiI6JOQoXTzKDTmtdlvLOp56q/oNOqh8TPzhnCI4m2tX/04zXc2hPKttX5mbQTbb9si3vSh2YNmwaVRyrEHolVO3+hiaqzwxd3Yr3zFu1nuoZJPqk+uFMYrKfixya+Ggd09rLEX1TQ678fpBDX6ymkq9zscpWd2ggZvY2xAaFcemXPcWKISqmgwcPAtChQ4d86zp06MD8+fM5cOAAo0aN0hhDX18fHx8fGjdurHadk5MTcXFx3LlzB0dHx6dX+GySHBWiFGRkZABUyMQogLm5Oebm5mVdjOeGh4cbAKGh6pM0t8JULdvs7GwxNTUhOVlz66mC+Ph4sOCrqVhbW/Hvv8c5eOhY7rqIiCg2btQ86LyLiyN16tQAICio4o8dV9VN9d67o6GVZs7M8la21hiaGJGeklYq8R6mP2LpmAUc/vOg1olO5+yk3u2r4dRoXpvm3Vpi62pHWnIaV05c5p/fdpGSULxr5Fmo7KYaKD1OQ13FZdeVRRUrDEwMyUgpuNVZceM5ZA9NcD/iHs3/549381oYW5oSHx3L+e3HubjrlNp4Cl3NrfwV2T8cWDtWKbDM5ZW9q+o6jgnP3/oJ4M5tVR1b21pjZGJEWiHvi5LGGzlnNPoG+iwZv4iH6Zq71AP88/seXn6zO/Va1afrGy/z149/AmBZyZJRc8cAcHTHEeJiSjhD7zPk6KZq3R8dpr6FeMxtVfczG1sbrc5HSeLpFvCjWM4PZlWdquYuq5Y9GVNYSBgtO7WgRUBzbB2rkPggkdOHzvD3uh2FntPnXa0aPqz/cRG+3hXzx5TyQFFZdY9RxqrviqmMU91jFBY2YGAEGQW/R3Qq26FjaIwyPg6FuRV6HXqj6+wBWVlkRtzk4eEdZN2NVL9zQUk0hWqdwsaWzEJeU0XikHNPKeQer+096mnFM7Myo8+7qnGqV8xaQVZW3m7bykwlJ/epb5CQo1mAqrdJWAUcFsTSTXUvTgxXPwFh4m3Vj4QmtlbomRjyqJDnLIA7Z2+wLvATYi8Xvz4MrUyp/25XAI7OWgdZ0p3+RZGVlUVISAgKhQJ39/w/Yru5/Z+9+w6v8XwDOP49J3tPCUlEiIiRIJFYUYTapbWV2kWNWkWLtFqlRbXa0lqt1VI/tCgtWntvam+xEySyd05+f5wkEudEThLhhPtzXa6rfcfzPufNO5/3fu7HA6VSyZUrV8jIyECh0B6WOnz48DwbTxMSErhyRd3wX1yDMkk/35fI7Nmz8fb2ZseOHWzdupVu3brh5+dHYGAgQ4YM4cKFx5EdT8spGRYWhre3N02aNMk13dvbmy5duhAZGcknn3xCUFAQNWvWpHPnzuzbtw+AixcvMnDgQGrVqkX9+vV5//338wx7zsjIYNmyZbRo0QJfX19atGjBnDlzSErSfiPcvXs3/fr1IzAwkOrVq9O2bVt+/vnn7IbIJ3/bL7/8wowZM6hVqxa1atVi0qRJBdqfOaWlpfHrr7/SoUMHatasiZ+fH506dWL58uWkpaVlL5eVTzUrB6S3tzfe3t4cOnQor6Kfytvbmw4dOnDgwAGaN2+Or68vrVq14uHDx5ExGzZsoHv37vj7+1OzZk06derE6tWrcz0oLF++HG9vb8aPH691Ozt27MDb25vBgwcDTz8+dPk7TJ8+HW9vb5YsWaKxflBQEN7e3mzZsiXX9JiYGKpWrUrbtm2zp504cYLBgwfTuHFjfHx8aNSoEePGjcu+MJYUpUqpu4NGRGgfdTwy8nFXe0dH+wKX/3HIKC6e38fp/3bSrFkj/tywhfYd+xWojC+/mIiJiQlhYffZtl17F6SSxNpeHfUc90j7KJs5u3NZ2ef/IaCw5aUmp7B37a4CRYCWzRyp3q9pACG/TaZJ9+b4BFUnoHltekzsw9fbf8DLX/dogOfNMnNfxecxenVCjn1lYZ9/dHphyyvt7QbA2zMH03lKf2q0rkOlIB8COzai/8KxDFj8IcaZkSPwuPHVvqwTxmaPp+dU2kv9ldrcxiLfeusjawd1ztvYPI/jx9OtdfjbFKW8N/q2pVrtavzz2xbOHtJM9fGkW5dvMW3QF0SERTDg04EsOfoLszZ9z8IDi6gSWJVda3cya8TX+ZajT2wdbAGIzuPYjskx3cY+/3zFhSkvq5Eia+T5JxmZGGU3glvaWGZPz1r+zV5t+fynT2nZpTn+QX40atOQUV+OYNHWhbiVf/ZRHSWJn29VaRgtIoWV+jjNiI/ROj8j/vExrbDM/5plkDkYk8LMHPMJczFp3gXDKrUwrBqASbPOWEyci1FQ7vzvqgj1OZKVq1SjjnalUJiaZ5ZrqXWZksomn2t8bAHvGc+qvFbdW2FhbcH1C9ezu8cXRK3GtajVqBYAO9btyGdp/WPmoN43SXnsx6Qcz0VmOjzjAoQdu1ykhlGAqt2bYGJtTsSFW9zYdrJIZYm8qZ7jP11FR0eTkpKCra0txsbGGvMNDQ2xs7MjMTGR+Ph4LSXkb+HChSQkJODr61tsAWjSOPoSWr16NUOHDiU2NpYGDRpgZWXFtm3b6NGjB7dv65Z7LS8xMTF07dqVTZs2UaNGDcqXL8+pU6cYOHAgq1evpmvXrly/fp169ephbGzMP//8wzvvvENysuYXq/nz5zN16lSsra1p3Lgx0dHRzJ49m379+mk0eP7www8MGDCAw4cP4+XlRcOGDXn48CEzZszg3Xff1Vge4Ndff2Xp0qUEBATg4eFB+fLaH/zzk5ycTN++ffn8888JDQ2lbt261KlTh6tXrzJ58mQGDRqUvX0/Pz/atm2b/TWkbdu2tG3bFkfHwudAu3//PkOGDMHMzIygoCCsra2zy5s4cSJjxozh/Pnz+Pr6UrduXa5fv05ISAhjx47NbiBt3bo1RkZGbN26Veu+2rhRnS+pXbun57zU9e/QuHFjAA4cOJBr/UuXLmU37B45ciTXvH379pGenk5wsLrL8cmTJ+nTpw87d+7Ezc2NJk2aYGVlxfr16+ncuTOXLmnvYquPzMxMAUjMo+E/MTFJY9mCaPhaPTw9PbLz2np6etCoke6DE4weNYiuXd4EIOTjaVrP15LG2FR9Y05J0jzen5xubKq9Iaw4y3sa98yR6hVKBb9+vpjBAX3p5dWZSe0/4tyBM9iUsmXMoonY6+mgQEaZ+yo1j32Vc7qRiVGxlGfr4oB5ZkNOxM1w5vX8gg+r9GZijf6sGDOX+EexVA324+2vBmeve/vMdaLDIzEwNKDpkDc1tuNewxOv+uruyAZGJbPjTcGOY82H22dVnpObE++M60VEWARLv1icf8UzRT14xPVz6pzKdk52VKhWARNTE1JTUokIj8gzEkFfZe+/RO3X3Jz7z6Qg16kClHdwm/rjbVX/Kvg38NNYp0PftzDNvC8ZGT8+7itUUUeGpCSnMOODmbzp04EWFdsw5u0PuXr+Gm7lXZn2yxeYZaZrEaJQjDKvG6narzE5pyuM8j9Hsho4FcampO7fTNzkAcSOaEfcZ++SsvdvFIZGmHQdioHP4zRHaWfUjW+GNeqjdNbsamzcrPPj/zHM/55WkmRdU/LKK1zYa1RRylMqlbTp2QaAP+b/ke82n+RawZWx344F4PTB0xzYciCfNfSPQeZ+TEvSHp2fnmM/GupwL38WFEoFPj2bAnBy/t/5LC1KipiYGG7fvq3xLyYm9werxER1Oiozs7zv+aam6meJwjSO7tq1i/nz56NUKhk7dmyB19dVyXy6F0+1bds2Pv30U95++21A3cV7wIABHDx4kJUrVzJmzJhCl339+nUqV67M6tWrsbW1JSMjgxEjRrBlyxZCQkLo3r07ISEhGBgYEB8fT4cOHQgNDWXPnj0a+SeuXbvGlClT6NxZ/VARExPDgAEDOHbsGEuWLGHgwIEA7N+/n++//x4XFxcWLFiAl5c6919CQgIffPAB27dvZ86cOYwePTpX+aGhofz44480baq+UBd2tPhvvvmGw4cP4+fnx48//oi9vTqyLyIigkGDBrF3716+//57xowZQ9euXenatSt///036enpzJw5s1DbzOnBgwc0b96c77//HoVCkf07Vq9ezZo1a6hSpQpz587N/oISGRnJe++9x4YNGwgMDKRr167Y2dnRsGFDtm3bxr59+7IbIAGSkpLYvn07VlZWGtHCORXk71CrVi2srKw4cuQIaWlpGBqqLzVZjaUGBgYajaO7d6uTh2c1rM6aNYukpCQWL15M/fqPR6386quv+Omnn1i0aBHTpk0ryq59btLT05+a0yjnYF1Pdg3SxbsDRxMW9oBy5dwYOqQvg9/rzf9+m0+PnkNZvfrPp647dEhfZkz/BIBfl//OkqWFS8Cub1TpKpRP3ec5GlF02OfPurynOfbPYSLuPmT3mu2cO/A4ou7y8Yt82fMzJq+dRnlfT94a1plFE+cVaVvFQb2v8v72qijg4HSFKS9DlcH2+Rswt7Vk7WdLsrvapyQmc2TNLsIv32bEH59Ts01ddv5UkRsnrqBKV7F51hq6ThvI60PeIj01jf0rtpEUm0ClIF86T+1P/KNYLOysSM/RY6AkUaWrnnotUuQ4jnU5jAtb3tDp72NmYcY3w2eSEKtbigi/hv5M+CkEpYGSZdOXsm3Vv8RFx+HtV5l+n7xLh/c6UrlWZSZ1/5iU5DwaUvRMwfafbtepgpYXeukGW9du4/X2TflkbgizP57Dvn8OYGhkSPOOr9NvbB+iH8VgY2dNWurjDsP//rEVl3JlWDFnZa68o8f2HGdEx9Es2roAVw8X3urTjt9+eDnuK+IFUKmyu6xrleuDSP7nSPrtq6Ts/RvV3dDsgZQAMh7cJXnlHEhPw7hRO0ze6k9CZqNo+rmjpF09i6FnNcyGTCZp1Y+kXzyJwswCo4ZvYNSgNRnxMerBmNJL5r0hL/pwjXpSnWZ1cHZzJiI8osBRn64VXJm2cho2DjZEhkcy4/0ZBVpfX2Skq0DH56LCvFcUhkczf6zcHIkPf8TldfufyzZfVc8zWcHSpUuZM2eOxvRhw4bx/vvvZ/9/QQaeLugxuXPnToYPH056ejoffPABdep6dFgbAAAgAElEQVQU36CoEjn6EvL3989uGAUwNjamS5cuAM+kO/KoUaOwtVV33VIoFLRqpe5+Ym5uzpgxY7JvehYWFrz2mnqE2hs3NJOeBwUFZTeMAlhbWzNlyhQAVqxYkT39559/BiAkJCS7QS5re1OnTsXU1DR7dLScXF1dsxtGoWAnbZakpCRWrlyJoaEhs2bNym4YBXBwcGDWrFkYGBiwfPnyYo2269mzZ3ZETNbvyNov06ZNyxVabm9vz9SpUwFYtGhR9vSsqNC//879NW/79u0kJCTQokULTEzy/upbkL+DoaEh9evXJz4+PntwKoCDBw9iZWVF/fr1uXTpUq6vTnv37sXOzo6aNWsC6kZh0MwpMmDAAEJCQujYsWPeO0zPZOUQNc1j/5qYPP6qmzOKVFc3btwmOTmZS5euMmJkCHN+WIRSqeSLKeOfetx/HDKK775Vn3N//bWVAQM/KPC29VVyZuRUXpGJhsaPp+cV9Vac5T3N5sUbmffB97kaRrOkp6axccE6APxfDyjSdopLSuYxbGiiPVrBMEf0WV7RoEUtLzoskg1fLud/H87XmtP05n9XubTvNADVmtbKnn5w5Xa2zV2P0kBJq9Fd+PzofL66+AsDFo0j9kEUf36xHICkWO0DNum7rOPYOI/j2CjXcZz/Pa0w5TV7uwU1X/Nj78Y9HP5Xt5QzBoYGDP5yKMamxiyf+Qu//7CaqAdRpKWkcfbQGUK6jOde6F2qBlajeY+WOpWpD7Ly6eUVpVvQv0dhy/v6w285tuc4NnbWhMyZwKZLG9hwdi3vTx7K9vU7+We1egTphLjH0R5Lvl7GF8Onax2QKT4mnvVLNwBQ/3XdezEIoSErh6hhHtFvOSI1M7T0jHpS+pnDJK+ck6thNNfmtqgb8g1Kl0VRyiV7etJPX5B++ypKB2fMB3+G1bfrsfxyBcYtupHyzyrSLqmfdTOS9DcfeGFkX1PyuP8aFfDZ51mU16B1AwD2bNhDepruGV4r1ajEzN9n4ljGkejIaCa+MzF7oL+SJjXzucYgj3uvMsdzUVoRn0l15dlaHW19ZcMhVAX4uwj91rt3b7Zt26bxr3fv3rmWMzdXpxZ5WntIVurErGV1sWbNGoYOHUpycjLDhg3LDp4rLhI5+hKqUaOGxrSsbtgJCUW/aT9Zvp2dHQDlypXDwiJ3Hras0c61nSht2rTRmObl5YWrqyt37tzhzp07lC5dmqNH1Qm1tX0lsLe3p2rVqhw/fpxz585lN6wBVK6s20jIT3PmzBmSkpKoVauW1twWZcuWxdfXl5MnT3L69GkCAoqnseLJ33L//n2uX7+Ora2t1t/p5eWFs7MzoaGhPHjwgFKlStGkSROsra3Ztm0bycnJ2Q2hWY2lT+tSn56eXuC/Q+PGjdmyZQsHDhzA39+f9PR0jhw5Qq1atahRowZ79uzh6NGjNGnShAsXLnD//n3efPPN7Ma8gIAArl69Sq9evWjfvj2NGjWiZs2a2Nra0rNnz8LtyGJSs2Y1vps1Reu8EaNCiIh4hJ2dLfb2tlqXcXCwy/7vBw+KPpjIjK9+YPj771K+vDvu7q4aA0EplUp+/GEa7/bvAcDadX/TvccQUlNLzuAZ5aqVp89nA7TOWzJpIbGPYrGwscTSVnuuJSu7x9NjIqLz3d6zLq8obpwLBcC+tAMGhgYFejl4HuIfxWFuY4m5rfbcaxY59lVchPY8csVZXpY7525QuWEN7Fxzpz3ZOP03zm49RmDHRji4OxEfFcf5nSc5tm4vAe3VH/xiHkRpK/KFK1+tAgMnD9I6b8En84l9FIOljsdxtA77sqDl2Ts70GdCX2KjYlnwyfx8y89SsboXzmWdSU5KZv3CdRrzE+MT2bDoTwZOfo+gNkHZgzW9aBWreTL882Fa533/8RxiomKwsrXCKo/9Z2P3OOdelA7XlcKWl5SQxNjuHxHcrjFBzethY29D+J1wtq3bwfG9Jxj/7TgAIsIj861Dlivn1KPaO7s56byOEE/KiFePAq+w0H5MKyweH9MZcUW/92bEPEIV8wiltZ16cKXMwZkyYh+R8NUojOq+jkGVWihMzVHdv0Pqoa2oblzCbKQ6AjEjWvdzRB94VvNk8OTBWufN/WQusVGxT72mWOe4pkTr8ixVxPKUSiUBwep3rd0bd+e7vSyBwYFMmDcBU3NTIu9HMrHHREIvhOq8vr5JjorD1NYCU1vt+c9N7R4/LyVFaM9L+iwplArcg6sDcHVj4cbZELpTPccMQtbW1tntOU9jaWmJubk5jx49ytVrNEtaWhqPHj3CxMREp/JA3Yt03rx5KBQKxo8fT58+fQrzEwpEGkdfQtpGGc+K5ixqaL1CocDGxkZjGpAdTaptnjaurtoT9ZcuXZo7d+5w//59TE1Ns78y1KpVS+vyWe7du5ercfTJehbG/fv3n1pXADc3N06ePJlrkKRnSalUalxEwsLUyeGjoqLw9n76wCz37t2jVKlSGBsb07JlS1atWsXu3btp1qwZcXFx7Nq1izJlylC7du08y4iKiirw36Fhw4YoFAoOHjzI0KFDOXv2LLGxsdSuXRtfX19AnXe0SZMmGl3qAcaOHcuNGzc4ePAgCxYsYMGCBVhZWdGoUSM6depEvXr6E41iY21NUJD2/Wdjbc3Fi1epWLE85cpp5qoCKOeuHjjm7t0wnSJHbW1tqOjpwbnzl0hI0IxgCwu7T1xcPJaWFjg7lcrVOGpsbMyK5T/y1pvqiO9Fi3/jvcHjCp124kUxtzLHO7BKnvPuXr1DaY8ylHLTPqq4Y+Zo44/CI3WKdnjW5eXHyMSY1Dy6BmddVtPT0vWuYRTg/tW7lPIojX0e+yqrMTI6PFKnyNGilGdgbEh6ivZujll3p/RUzfnXj13i+jHNvMZu1TwACLt4S2OePrCwsqBqYLU8592+epsyHi445dFgVcpVPT0yPEKnSMWCllfzjQbZg/osO/5rnuVOXfUlAL/NWsHKWStwyiwn/GZYnsf83WvqRoysZfWBhbUFvrV98px388otXD1cKZ1jFPicskaHfxgWkWeOvpyKUl5GRgbb1+9g+3rNbqoVfSoCcP1iaK7pxqbGeV7vsp7/UvM4/4TQhSr8NspSLnmOAq+0V5/vqugISNWxB5fSQJ3nIyOP556sm+yT6VPS00jdt5nUfZs1ljfIzGWafk8zklqfmVuZU6229nuGuZU5t67cwsXDBeey2q8pWdf+iHDdrlFFLa9KQBWs7ax5cPcB54+dz3d7AMFvBTP6m9EYGhly78Y9JvaYyL0b93RaV189unIXGw9nrMpqfy6yclM/F8WHP3oukaOlAyphamdF3N0Iwo5dLvbtCf2jUCioWLEip06dIjQ0lIoVK+aaf/36dVQqFZUqVcq3rIyMDEJCQlizZg3GxsZMnz6d1q1bF1fVc5HG0ZdQUQckyBppXRulUlmo7unaZCXlzYuhoWF2XczMzDRylj6pVKncN4hnUU9dGpOz6qhtZLZnQdvfM2ubDg4OufJxapMzmrddu3asWrWKTZs20axZM/79919SUlJyDSKlTWH+Do6OjlSrVo0TJ06QmJiYnW+0du3aeHt7Y2Jikp13dM+ePRgZGWWnYQB1I//SpUv577//+Pfff9m/fz/nz59n48aNbNy4kf79+zNu3Lin1uV52bX7AIbGeTegN2pUjzZtXqdOHX/mL1imMb9OHX8ADh85odP2Tp3cjotLabp0G8gff/ylMd/W1gZzc3VC7Lv3wrKnK5VKflk2J7thdMZXc5gw8Uudtqlvzh88S/dy7fOcX7WuD/5NA6jo583WX7dozK/op745Xzmh28Be109deabl5cW9igef/v4FphZmDAnsR9T9RxrLlKuqHlzu3rU7RdpWcbl1+hrVmvrj4VeR/b/+qzHfw0+dluPGSd3SvBSmvDc+fJvG77bh8oGzzO+l/Rh3reoBQPiVx/uxTtdgrEvZsn3+n6Snat4LqwSrB6y5cvCcTnV/3s4cPM2b7m/kOd+nni+BTWvj7V+Zzb9u0pjv7a/uiXBJx+P4yqkrBSov6mEU546czbO8SjW9MTQyJPRCKAmx8Ty4o06vkhCn7vVi62iLQqHQem/O+nCRtaw++O/AKYLdmuU5v2a9GtR7vS5V/avw5y+a3Xyr+qs/AJ0/qVsjwMVTlwpcnl0pOxq1fo20tDQ2LtccRMPZ1YkKlcuTkpzC2WPq475u0zp8Ov9j0tPSedO3I2laPjBUrKoepf3mlaKNfixebek3L2PoUxuD8pVJ3at5fBqUV19j0kMv6lSexedLUdqVInHxdNKO7dKYr7CxR2mlDvZQhauPXYVjGQyrBZARE0XaiT2adfCshsLcEtWjh2RkRpqWFKcPnqZV2VZ5zq9erzp1Xq9DZb/K/PWL5vNmZT/1/r94Qrf9f/nU5SKVVyXzGnb64Gmdtle/ZX0+mPUBBoYGXD17lY97fsyjB5rPVSXNg1PX8XjdD2e/ipz9ZZvGfGc/dcNU+Imrz6U+zv7q7d09eOG5bO9Vp6/hLK+99hqnTp1i69atGo2jW7duBaBRo0b5ljNt2jTWrFmDpaUlc+fOfWoA17MmjaOvqKyGQ20NobGxxR9+D4+jMp905476RbV06dLY2NhgZGREWloa06dPf2oS7+Lg5KT+gnn79u08l7l1Sx1BVJQR6QsqqwHSwsKiQIM+BQQE4Orqyo4dO0hJSdGpSz2oo4IL83do3LgxZ86c4ejRoxw+fBgrKyuqVq2KgYEBNWvW5OjRo4SHh3PixAn8/f21Rj3XqFEjO5VDZGQk69atY+bMmSxevJjevXvj7Kz967M+WbtuE598/AFvtmuBnZ0tjx497pKrVCrp1UudE3j5Ct1G3dy5az/d3+7Au/26a20cHTK4D0qlktNnznPr1uMH9UmffEDHDup0FiEfT2Pa9NlF+Vl67fDmg3Qc1Y2A5rWxsLEkPjoue55CqaRhZ/XgY3vXab4cPY/y8nL36m3S09SPPa91DGbD3NzHhEKppGVfdePXob/0M+H9qc2HaTmyEz7NAjG3WUZC9OM8hQqlgsBO6gejY2v3Flt5d86FYmBkiGedKti5OvLoTu7Ifpcq7ngF+aBKV3Fq0+Hs6Y36taaMd1lunb7GhV3/5VqnZpu6OJZzJvzqHS7v18wHWxIc2LSft0d1p07zuljaWBKX4zhWKpU07azO071zrW6DXBS0vOM7j3F857E8y/vl5HKs7W1Y+Ml8zuR4+b1w7DypyalY29tQu1kdDv1zUGPdxu3VAw2eOVhy/jZ7Nu2lz+heBLUIwsp2HrFRj5+/lEolLTo3B2DrH5ovv8+qPFW6ivc/H0paSho7NuwiPib3KLJvD+kKwL9/bMvOF3j5zBUMjQwxMTXhtVYN2PHnzlzrmJqb8kYPdZTHzgJ0fRXiSWkn92HSugeG1euBuSUkPL7GoFBiWEf9wT7tiG7XLNW9GyjtSmFUu6nWxlHjJh3U5V0+RUacOrWIwtwS086DUT16SNp/+9SDROVc5/VOAFobb0u6fZv28c7od6jXoh6WtpbEReW+xjfrrP74s/2P7c+lPE8f9UeXK2fy/7jqXsmdcbPHYWBowIUTFwh5J0Tj+lZSXdt0hMDRHSjfohYmthYkR+V+LqrcuSEAl/7Y91zqU8rHA4AHZ0Kfy/aEfurQoQM//fQTCxcupEGDBvj4qHvOnD59mp9++glTU1O6d++evfzNmzdJTU3Fyckpuw1g9+7dLFmyBENDQ+bPn19sKQvzIgMyvaKyEuFmDXqT08mTJ59LHfbt07xgnzp1irCwMMqXL5/dFbxGjRqkpqZmRx7mlJKSQocOHejevftTGzALy8fHBzMzM06dOsXdu5pfg2/evMm5c+ewsrJ6JjlOdeXm5kaZMmW4ffs2V69qfhWMiIigRYsW9OnTh/j4HDdMhYK2bduSkJDAP//8w4EDB6hSpUquAZa0KezfIevr0N69ezlx4gS1atXKblitXbs26enpzJkzh9TUVIKDg7PXi4uLo2PHjrRt2zbXduzt7enXrx9VqlRBpVIRHh6uw9568U6fPs9ff23FxsaaVSsXYG+vzjFqYmLCgvkzqVqlEhcuXmHdutyRVw4Odnh7e1KhQrlc02d+PZe0tDSaN2/Ml19MyI5aVigUDBzQk49DRqFSqZgw4YvsdSpXrsiH49S5735etOKlbhgFuHXhBse3HcXc2oKR88Zl50Q0MjFi4PQhuHmV5e6V2xzdnDs3kpWdFS6erji5l34m5RVUWkoa/yxVN3h3HNmV2q0fp48wszJnyLcjqOhXiYh7D/n75w1F2lZxuXfhJme3HcfM2pw+c0dl5wo1NDGi6/RBlPZyI/zqHU5vOZJrPQs7K5w8XXBwdy5yeae2HOFBaBhGJsb0+XFUri75ZatXoP/CsSgNlOz79V8ibj3+UHdio/r69tYnvXLlIvVuWJ3OX7wLwOZvVpOhep5jhT47Ny6EcmTbYSysLfhw3vjsvG9GJkYMm/E+Zb3cuX3lFgc3577OW9lZ4+rpRulypZ9JeQUVHxPP38vU58XQ6e/j3/hxehcTMxOGTBtGtTo+JCUksX7h2iJt63m6dv46B7YexNLagk/nf4x1jv035qvReFQqx80rN9mzKffzkrWdNWU9y+JSrkyRy4uOjObk/v8wNjVmzIzRmJqpe/UoDZR0HtiJN3u3IzE+kV+/fzxQZkR4BNsyR4keMWUYNepVz55n72TP1EWTKV22NJfPXGHrWt0adoXQRnU3lLQzh1GYWWDWfyJk5R41NMK0xwgMyriTHnaLtP9yfyxUWFijdHZD4Zj7mpWyTf3B0bBaAMbt+oBBZpyQQolR0w4YBb9FRno6yesWP67Dzcuo7t9BaeeISYcB6m75mXUwaf8uhj61UUVHkrJrfbHsgxcp9EIoh7YewsLagonzJua6xo/4agTuldy5deUW+zfn3v/Wdta4ebpR5olrVGHLy1KhSgUAbmgZCO5Jw6cNx8TUhIjwCD7t++lL0zAKEHHhFqFbT2BibU6LecMxyXwuMjAxovFXA7Cv5MqjK3e5tvlorvVM7Syx9SyDdblnm37GoYo7AJGXnv27uNCkeo7/CsLNzY0PP/yQuLg4unXrRv/+/enfvz9vv/028fHxTJ48GQcHh+zl+/TpQ+vWrfn338e9wr7//ntA3Tt25cqVjBkzRus/be0fz4JEjr6isvI9HDp0iIsXL2bnrbx27Ro//vjjc6nDmjVraNKkSXYD2sOHD5k4cSJArhHQevfuzdGjR5k0aRJz587NrntaWhqff/45Z8+epUqVKri5uT3zOpqZmdGlSxeWLl3K6NGjmTt3bvYAVJGRkYwePRqVSkWXLl2KrVt9Xnr37s20adMYO3Ysc+bMwcVFPapmYmIi48ePz8738eQgWe3atWPevHl89dVXpKam8uabb+q8vYL+HXx9fXFwcOD3338nPj4+V1h83bp1mT17Nn/8oX5QzZlv1NLSkoyMDC5dusSyZcvo1atX9rwLFy5w5coVzM3NqVChQsF22gs0ZNhH7Kq2luDgIK5fPcz5C5epUN4de3s7oqKi6dS5v0ZX0aFD+vLJxx8QGnqLipXqZk8/deocg94by7y5Mxg7ZigDB/Tk8pXrlHVzwdm5FGlpaYwc9TGbNj/+8v7+sHezk2PXrOnDrh15NyAsXrKSJUv/94z3wPO3aMI8yq75gmr1ffn+wALuXrmNk7szlrZWxEfH882g6Rr7vHnv1nQc1Y0Ht+4zosGgIpdXGH98t4py1Srg3zSAkXPHERkWQdT9R7h6lcXEzISYiGhm9JlCYqz+dB9+0uqJP1HG+zO86vvwyf453L9yB3t3ZyxsLUmMiWfRwK819lWD3i1oObITkbcf8HmD94tUXnpKGksGf8N7v0zEvYYnE3bM4sH1eygMlDh7qlNgnN16jPVTcqe52DZ3PVWb+OHh58WE7bMIv3YXUwvT7Abbv2as5ORfmlGLJcnc8T/g/ns5qgfV4KeDi7l95RbO7qWxsrUiLjqOLwdO1fjbtOnzBm+P6k74rXAGBvUvcnmFsWzaElwquBDYtDaTln3Ggzv3iY2Kw9XTFRNTE5ISkpg5bAZhN8LyL0yPfDP+O2Z7e+Af5MfKw8u5efkWZcqVxtrWmrjoOD5+9zON/de+75v0Gd2LsFthvF2vZ5HLmzHmaxZs/pHGbzQk4DV/7oTexcm1FHaOdiQnJRPSbxJht3Lv1+9DZlPW040qNSvz7eqvuXfzHrHRcZT39sDI2Ig7oXeY2PcTvcyLLEqWpJWzMR81E0PvGlhOXooq/BZKh9IoLKzISIgjaeEUdQ7RHIwatcWkdQ9UEeHET+qbPT394kmS/1yCSbs+mDTvgnGD1qge3kNh54TSyoaM9DSSln+L6kbubt2JS2ZgPuorjBu/iWGtxmQ8uo/SsQwKc0sy4mNI/CEEkjRzwL8M5oyfg4e3BzWDarLs0DJuXrlJGfcy2df4zwd8rnFNadunLe+MfofwW+H0qd+nyOVlsXNSv4Pl7KWgTWW/ylTLzL+docrg4wUf57ls5P1Ivhj8RZ7z9dWu8Yux93bDLagavQ59y6Mrd7F2d8LU1pLk6Hg2D/hW47zw7dOcwNEdiLn1gF/rj3pmdTF3UqeiSI5+eRqgReH06NEDFxcXfvrpJ44fP46xsTH+/v4MHjw43/FCoqKiOH1a3WsoPDycDRvyDgLp3Lkznp6ez7TuII2jrywPDw+Cg4PZsWMHnTt3pn79+qSkpHD48GHq1q1LSkrxJ2/28fFh0KBBBAQEYGNjw6FDh4iNjaVVq1Z069Yte7nmzZvTu3dvli5dSocOHfDx8cHR0ZEzZ85w79497O3t+eabb4qtnqNHj+bcuXMcOXKE119/ncDAQAAOHz5MfHw8DRo0YOTIkcW2/bz07t2bEydOsGXLFlq3bo2vry+WlpacPHmSyMhIPDw8+OyzzzTW8/T0xMfHhzNnzmBgYECbNm102l5h/g4KhYKGDRuydq26IS5n42j16tWzB9zy8PCgfPnyudb99NNPeeedd5g6dSqrVq2iQoUKREVFcezYMdLS0pg0aRKWltpHr9ZHd+7co3bdVoRMHEm7ti2o7luFqKgYflu5ls8mf82VK9cLVN7SZas4ffo8Y8cOpeFrdanuW4WHDyNZ+b91fPPNPI6fyJ2PKSgoMPu/a/lXf7K4XLZt18ypVRJFhkUw8Y0xdBjRhVrNauNeuRzxMQnsW7+b379ZSVhowRLyP+vy8pKels7X/b+gUZcmNOrclLKVy+FWyYrIew85vu0o63/4ndhI3UdlfxGiwyL5+o3xtBjREZ9mAZSpXI7EmHiOrd/H5lmreRhasAaswpR39/xNvmo1jiaD2lGtqT+O5UqTmpzCtcMXOLR6B4dXa3apVKWlM7fHFF4f8hY1WtfF2dOV1KRkLuz+j12LNnFh5/PpWVGcIsIi+KDNSLqOfJvazepQrrIH8THx7Fq3k9++WcG90ILlzHvW5eUlLTWNqf0+J7hjE5p2eR2PKuWxLWVHZHgk/+09ydp5v3P3esnK9wfw8N5DBrUaQq9RPQlqXo8KVcoTFxPHtnXbWfz1Mu5cL1hu4cKUF347nEGthtJ7VE8CG9XCs2oFoiOj+ef3rSyf/ZvWvKHxsQmM6DCat3q3o+lbTXD3Koutoy23r91m1997+N+81dnd8IUoioyoCOJnDMekZXcMq9dF6eJBRmI8aUd3kvzXrwXO85nyzyrSr1/AKPhNDMpXVZcXF03qkR2kbF2D6o7m85jq5mUSZo7CuOXbGFT0RelanozoSFKP7SJly0oyoiKe1c/VOw/DHvJ+6/fpPrI79ZrXo3zl8sTHxLNj3Q5+/fpX7hbwGl/Y8pRKJRbW6oCP/KJAcw4y5VjGEccyeac+C79VMnqhPSk+LJLVrT8mcGR7PJr741DZneSYeC6t28+Rr38nOvT5/C6FUoGJtXqcg5SYl/MDgb7JeI6j1RdGcHBwrh6hedm+PXf6DFtbWy5e1C1/cXFRZDyLz/lCL8yePZs5c+YwYsQIhgwZkmve0aNH6dGjB7Vr1+aXX34B1BGG8+bNY+PGjYSHh+Ps7Ez79u0ZOHAgwcHBmJiY5Dpovb29MTAw4Ny53ANRHDp0iF69elGvXj2WLFmSb50++ugj1q5dy4oVKzh8+DCrVq3iwYMHeHh40LVrV3r06KF1MKWtW7eyfPlyzpw5Q3JyMi4uLjRo0IABAwbkyjv5xx9/MH78eDp16sTUqVOLtE+zpKSksGLFCv7880+uXr2KkZERFStWpGPHjnTs2FGjvlWrViU9Pb3IJ3he+zyLSqVi7dq1rFmzhosXL5KRkYGbmxtNmzalb9++2NjYaF1v2bJlTJ06laCgIBYtWqQx/2n7UNe/Q5ZNmzYxcuRIrKysOHToUK58pX369OHAgQP06dOH8ePHa6x76tQpFi5cyPHjx4mKisLS0pLq1avTt2/ffAeietLTBkwSz1eXMs8vsbZ4OmeFyYuugsh0TfX0SBjxfMWodBz5WhS7f07Of9FVEJmSPh32oqsgMnVZL6/w+qItDvkvJJ6bIbd+fdFVKFbzyr7z3Lb13ku+L58kjaNCiFeCNI7qD2kc1R/SOKo/pHFUv0jjqP6QxlH9IY2j+kMaR/WHNI7ql5e9cfTH59g4+rLvyyfJgExCCCGEEEIIIYQQQohXkuQcFa+MuXPnFnhkswkTJmBvb1/kbY8ZM6ZAy9vb2zNhwoQib1cIIYQQQgghhBAlX0FHkRe6k8ZR8crYv38/hw8fLtA6I0eOfCaNo08bbU0bV1dXaRwVQgghhBBCCCGEKGbSOCpeGVkDUb0IL3rkNSGEEEIIIYQQQgihSRpHhRBCCCGEEEIIIYTQYzIUW/GRAZmEEEIIIYQQQgghhBCvJIkcFUIIIYQQQgghhBBCj6kUL9hMjMYAACAASURBVLoGLy+JHBVCCCGEEEIIIYQQQrySJHJUCCGEEEIIIYQQQgg9pnrRFXiJSeSoEEIIIYQQQgghhBDilSSRo0IIIYQQQgghhBBC6DGJHC0+EjkqhBBCCCGEEEIIIYR4JUnkqBBCCCGEEEIIIYQQeizjRVfgJSaRo0IIIYQQQgghhBBCiFeSRI4KIYQQQgghhBBCCKHHVIoXXYOXl0SOCiGEEEIIIYQQQgghXkkSOSqEEEIIIYQQQgghhB6T0eqLj0SOCiGEEEIIIYQQQgghXkkSOSqEEEIIIYQQQgghhB6T0eqLj0SOCiGEEEIIIYQQQgghXknSOCqEEEIIIYQQQgghhHglSbd6IcQrYY5z8Iuugsi0i7gXXQWRqUyGPAboi2svugIil+j0xBddBZEp6dNhL7oKIpPpp3NedBVEJuM/h7/oKohM6dLPWTxHKulYX2wkclQIIYQQQgghhBBCCPFKkpARIYQQQgghhBBCCCH0mOpFV+AlJpGjQgghhBBCCCGEEEKIV5JEjgohhBBCCCGEEEIIocck42jxkchRIYQQQgghhBBCCCHEK0kiR4UQQgghhBBCCCGE0GOSc7T4SOSoEEIIIYQQQgghhBDilSSRo0IIIYQQQgghhBBC6DGV4kXX4OUlkaNCCCGEEEIIIYQQQohXkkSOCiGEEEIIIYQQQgihx1QyXn2xkchRIYQQQgghhBBCCCHEK0kiR4UQQgghhBBCCCGE0GMSN1p8JHJUCCGEEEIIIYQQQgjxSpLIUSGEEEIIIYQQQggh9JjqRVfgJSaRo0IIIYQQQgghhBBCiFeSNI4KIYQQQgghhBBCCCFeSdKtXgghhBBCCCGEEEIIPaaSIZmKjUSOCiGEEEIIIYQQQgghXkkSOSqEEMXI2MacgJEdKN8yAHMnW5IiY7i58xTHvl1L3J2IohWuUNB+/SSsyzmztMbgvBdTKqja83W8u7yGXUUXAKKuhnHp9z2cWfIvGekvb2pvC2sLOo7sRkCLOtg52RETGcN/u07wx3f/4+GdBy+kvOa9W9N38kBm9J3Cie1H81zOr0kArfq3pYJvRRQKuHPlNttX/sue33eQnpZe4LrrExNrc4JGdsCrRQCWTrYkRMZwfdcp9n+3lphncF68s3YStuWcmeOX93nxJKWhAb02fo5TFXd+6zqVWwfPF60eeszCxoJuI7tTt0W97OP4+M5j/O+733hQmPOiEOVNXPQJtV+vnWeZD+89pH+dPk/drkeV8ny9cRYbFv3JkqmLClxvfWdlY8WgD/oS3Kohjk4OPIqIYv+OQyyctZh7t8OLVLZCoWDJxvm4ebjQtNobeS737dLpNGwelOf88Lv3aVWrQ5HqorfMLDFp3R3DGvVRWNuRERdN2rljpGz6jYxH9wtWloUVVtP/99RFkjevJGXjslzTFBbWGDfvgmH1eihsHciIjiD9yhmS/1lFxv07Bf1FIpNKpaLHoNHcunOPvX8//e8i9OOe8SQDQwO++etbPKqUZ2KX8Zw5eDp7nk9dX6au+lKncsJvhTMwqH+Bf4M+MLExp/bIDlRoGYCFky2JkTHc2HmKI9+uJfYZPEt1Xj8Jm3LO/PSUdwyAUr4e1Br8Bi61K2NqZ0nCw2hCt53k8LdrSbgfVbR6CA0SN1p8pHFUCCGKibGNOe3XTsLOy5WU2EQiLtzE2t2JKt0aU6FlIOs7TyHywq1Cl197XGec/SqSGBmb5zIKAyUtFo7Eo5k/ANE3wslIU+FYzZ1Svj1xD67Bpj5foyrhjW3aWFhb8NnaabhWLEtCbAI3L9zAyd2Z4K6vE9iyLp93mcjNCzeea3kePhXoNq5nvtvq9mFP3hzSEYDoh1E8vPOAspXLMWjGMOq3bcDXA6eRnJCkc931iYm1Oe+snYRDRVeSYxN5cOEmNu5OVO/amEotA/mtyxQeFOG8eG1MZ1z8KpLwlPNCm3rD3sSpinuht1tSWNhYMP2PmZT1Uh/HNy6E4uxemmbdmlOvVX0mdP6IGxdCi728ct7lALhw7AIqleb1J/phdL7bHf39GAyNXs5HWSsbK5ZsmEt5Lw/iYuO5fP4qru4uvNX9DZq0bsSADsO4fP5qocsf+tEAfP2r8ijy6S+uFatUAODU0TOkqzQ/pD16+KjQddBrZpaYfzATg9LuZCQmoLobitKhNMb1W2BUsz4J336I6m6ozsUZuHgAoIqLRhV+W+syGZG5G7wVTq6YD5uK0t6JDFU6qruhKEzMMKrbDEP/hiQtmUHaqQOF/YWvtO8XLOP0uYvY2li/6KroPX25Zzyp8/td8ahSXuu8+Nh4zh05+9T1K9X0xtDIkLCbYTrXXZ+Y2JjTae0k7DPfMR5mPktV69YYz5aB/NF5ChFFeJaqN64zpfN5xwCo2rURwdP6oTQ0ID48ikdX72Ln6YJvz6ZUaF6LNR0+I+ZmwRvQhXgRXs4nSiGE0AONpr+LnZcrN7adZOvQOaTGJ2FgYsRrX/SlcpeGvP7DMFY3+4gMVcG/AQaM6oD/sHb5LletZ1M8mvmTEpvI5v7fcPeAOhrOuZYXrRaPpmyj6tQc3Ibjs/8scB303YDpQ3GtWJYT24/y/bCZJMUnYWRiRL8p79G4S1PenzOGcc1HkKHlhb84yvOs4cXYRRMxszR76nbqtgnKbhhdNXM56374nQyVCgtrC4Z+Nwq/JgEMmDaEOcO/KdgO0RMtp7+LQ0VXrm4/yYZhc0jJPC+aT+mLb5eGtJ0zjMXNC3deBI3sQD0dzosnOXq7UXdowdcriYZNH05Zr7Ic3XaEmcNmkBifiJGJEYOnDqFpl2aM/WEcw5sNQ6XjeVGY8swszXAu60xCbAIfth9T4N9g42hLyM8fZzewvow+njmO8l4e7Nm6n/HvTSIhPhFjE2MmTPuAdt3a8OW8T+kS3Fvnv1NOgz7oR7/hvfJdzsLSHJeyZYiLjadP2/cK8zNKLNPuwzEo7U7amcMkLp4OyYlgaIRpt2EY1W2Gad+PSPhiCGTotv+VLupGnLRju0hePS//FRRKzN6diNLeifSwmyQu+Dw7UtTQty6mfcdh2n88CV8ORRVW+AaQV01GRgY/LlrOT79ItKiu9OGe8aRy3uXoNLRznvOvn73G+I4f5jm/UfvGVA2sRtSDR8waMVOneuubJtPfxd7LldBtJ9mc4x2j8Rd9qdqlIS1/GMaKQr5j1B7VgQAdnqVK+XoQPL0/CgXs/vQX/lv0D2RkYOFsS6t5wykTUIkm0/qzrvu0wvxEkYeXt7/fiyc5R4UQL1xGxsvXQcDWswwVWgWQEpfI9pFzSY1XR/mlJ6eya+xCIi/dwb6SK+VbBhSoXLNSNrT4aSQBo3XrxlipYwMAjs/5M7thFCD82GWOfP27eplOrxWoDiWBi6crgS3rkhiXyA8jvyUpc/+nJqey4MMfuH35Fm5eZQlsWafYy1MolbTo04ZPVk3FxtE23221H94FgO0r/2Xt7NXZja3xMfH8MGIWcVGxBL3ZEM8aXjrVXZ/Ye5ahUkv1efHXyLmk5DgvNn+4kIeX7+Do5YpXAc8Li1I2tF8wkqBRBe/eq1AqaPXVQFBAekpagdcvSVw93ajbsh6JcQnMGvk1ifGJgPo4njNuNrcu36Sslzt1W9Yr1vLKVfYA4NblmwX+DTUa1OCbv76lkp93gdctKTwqutOkdSPi4xL4+P3PScjcrynJKUz+YDrXLl2nQqXyBLdqWKByHUrZ8/XiLxg0pp9Oy1es4gnA9UuhBdpOSad0dsOwRn0ykhJIXDZT3TAKkJZK0vLvSL93E4My7hjW0O08AVBmRY7e0+2YN6xRDwMXDzJSU0ic92muLvRppw+S8u8aFAaGmLR/V+c6vOoeRkQyYvznzF20/EVXpcTQl3tGTkqlkvdnjkChUJCaklrg3+ToUoqBk9Ufe+Z8OJtH90te9LudZxk8M98x/nniHWN7jneMCgV8ljIvZUObn0ZSR8d3jAYh3VEaKDn240b++3kLZL7PxYdH8c+IuWSoVJR9zQcrV4eC/UAhXhBpHBVF5u3tTdWqVV90NUQJFBsby5QpU/jzz9xRiz179sTb25ujR/POx6jvvDoEoVAqubH1BMlR8bnmZagyuLhqNwCebevqXKZbQx/e3jWT8i0CiA+P4uCX+Uc+WJS2A9Daff/BqesAWLq8fA8tDdo3QqlUcnzbEeKj43LNy1Cp2LV6GwD13mhQrOUZmRjxxcav6fPZAAyNDfn925U8uJV3rjpbJzvcK6uj4f5auF5jfnxMPPvWq4+doLcK1jCiD6q2V58XV7adICla87w4s1r92yq/oft54fGaD+/umIlXiwDi7kexa1rBIoICB7ahTI0KHFm4ieS4xAKtW9I0bt8YpVLJ4a2HiXviOFapVGxbtRWABm11+2BS2PI8MhtHb14qWOPo4C+HMnnFVBzLOHJ462H2/72vQOuXFK07tkCpVLL7n33EROXu0qhSqfhz5d8ANH+zqc5l1m0UyNp9vxHcsiEPwh/y/dT8oxezutRfvXi9ALUv+QwDm6BQKkk7cxgSch/XZKhIPfivejl/3a/B2d3q7+mWysWgsh8AaacOkvFQs9tv6u6N6uWq+KOwkK7h+dl36Bhtur3L9j0HcHSwY+R7fV90lUoEfbln5PTWoPZ41ajE+oVrSYxLKMjPAeDdSQOwtLFk78Y9HNl6uMDr6wPvzHeM63m8Y5zLfMfwKsA7RtmGPvTcNZMKme8Y+/N5x7AobY9r3cqkxCZydI5m77OYmw/Y89lydn289KVM3fUiqch4bv9eNdI4KoR4YWbMmMEvv/xCevrLd9N0rqmOuAk7elnr/PATVwAoU1v36Cc7L1eMLEy4uGYPq17/iPvHr+S7Tty9SAAcq2nmUrSv5KZe5m4Rk7broYo1KwFw6dgFrfMvH78EQOVA3T7sFLY8IxNjPKqV5/alm3zeNYQ1s1Y+dTsOLo4AJCcmc/eK9rx0YdfvAeBZs+RFjrpknhd3jmk/L+5mHtNugbqfFw5erhhbmHDm9z0savYRd0/kf15ksStfmqBRHYi8do993/6h83olVVa05YU8juOLJy4CUDWwWrGWV66QjaOVanoTExnNDx/NZmq/ydlRRy8bHz/1deTU0dNa558+rs6l51enus5lVqjkgbmFGRtXb6ZLcC9OH3t6Pj4AryoVAbh66dVqHDXwUB/X6dfOaZ2vClUf7wYVdTtPAJQu6o9e6To2jirtnNTbuqX9epYRH0NGQiwKpQFK94o61+NVdS30JgmJSbRt2ZR1v8yjerXKL7pKJYK+3DOyuJR3oduo7ty5doffZq3QaZs5Va5VmXqt6pOclMziKSV3ED9d3zFcCvCOYZ/5jnFhzR5WvP4RYfm8Y5QNqopCqeT2/rPZkatP+m/RFk4t+Zf4cBmUSZQMknNUFNnff/+NQqF40dUQJVBhcqWVFNYezgDE3tKehDzu9kMAzJ1sMTQ3IS0hOd8y75+8xppWIUSc071B4cJvO3H2q0jNwW25d+QS9w6qH0gdqpUjcKw6X9PZZVt1Lq+kcPYoA8CDW9pHdH54Rx29aetkh4m5ab6DGxW2vNTkVH4Y+S37/9yNKl33412hUKBQKLSmnDAwMgCglKuTzuXpC9vM8yI6j/Mi+o76vLB0ssXI3IRUHc6Le/9dY2mbEO4X4LzI0nKGOqJ3y0c/k55c8O55JU2ZcurjOPyW9gEo7t9WH8d2TnaYmpuSlM95UdjyshpHH9y5T8t3WlGjQU0sbCyJuPeQA5v2c/jfQ1rLWzf/D45uP0J8TLzW+S+LsuVdAbhz857W+Vkj1Ts6OWBmbkZiQv6NxGdOnKd7835cOqv7xwOvzMjRe7fD6NTrLWq/VgtrGyvC7z1g+9+72LVlr85llSRKR/VxrYrQfr1XRaqPa6W1PRibQsrTzxOFY2kUJmaooiNRWtli+HonDMp6QkYG6Xeuk7p/CxkP7mpf2cDgKRVVz1PaO/HyfWJ+tnyqerN60WwqV/J80VUpUfTlnpFl2FcjMDI24ocPZ5NaiHt27wnqiOG/l/7Fw7sld5Agm8xnqZg8nqViMt8xLArwLBV+8horW4XwUMdnKXtvdYBF5GX1tatccA0qtqmNlYsDiZGxXN10hCt/lczIXH336sVzPj/SOCqKzNNTHjSEeJKZg7qbW9Ij7aM8JkU97k5kZm9FrC4PLnlE2z3N+d92YuZojd/7b9LufxOIufkAVWoaNhXKkJ6UwuEZqzj985YCl6vvrO3V+z82j/0fl2P/W9lb59s4WtjyUpNT2Lt2p871zupyb2xqTJkKLty9ekdjGTevsoB6xNeSxjxzPybqeF7o8kB/txDnBYB/n+aUre3NyeXbuXVIexTLy8bawQZ42nH8eLq1vXW+L7qFLS9rIKURX4/EzNI81zpNOjXl6PajfDVkmsb2d63b+dT6vCzsHNS5iaMfxWidn3O6rb2NTo2jp46eKXA9PL3VjaOffTsRiyf+Tm27tGLvtgN8OPATnbZfkiis1Md1Rrz2/Z8R//i4VlhakxH59PPEIHMwJoWZOeYT5qLI0eBpWDUA4+C3SF49j9R9m7KnqyLUjUdZuUo16mhXCoWpeWa5lvn8IuHnK+m/CkNf7hkAb/RtS7Xa1di8fBNnDxX8elbJz5uqgdVITU7lz5/WFXh9fZL1jpHXs1RyjmcpUx2fpcIK+CyVlUc0JS6R1gtH4vlEftNKb9YjdPtJNg36nrSklAKVLcSLIt3qXyIfffQR3t7eHDlyhPfee4/q1atTv359fv9dPejK1atXGTt2LA0aNMDHx4cmTZowZcoUIiIed6mNjo7G19cXPz8/EhM1H3bT09MJCgqiWrVq2evllXM0LCyMSZMmERwcjI+PDw0aNOCjjz7i1q3HuQ8vX76Mt7c37dppjoj31Vdf4e3tzXvvaY6QOnz4cLy9vTl7Vt0tLCYmhi+//JI2bdpQo0YNAgMD6dmzJ+vXa+bsK6is/JeRkZF89913NGrUiBo1atC2bVuWL1+eZ/Tjhg0b6N69O/7+/tSsWZNOnTqxevVqjUiw2bNn4+3tzebNmxk/fjw1a9akTp06zJ07t0j1jY+PZ8GCBTRv3hxfX1+aN2/OsmXLAIiKiuKTTz4hKCgIf39/3n777Tzze+7atYv+/fsTGBiIr68vLVq0YObMmURHR+da7vbt23h7ezN8+HDu3bvH2LFjqVevHtWrV+ett95i9erVuZb39vZmzZo1AIwfPx5vb28OHcodLaRSqViyZAlt2rTB19eXBg0aMH78eB480P+vvQamxgCkJ2n/sp2e40Eha9niEnUtjNibD1Aoldh4OGPn5YrSQElKXCJJj+LyL6AEMs7cpyl5PJDlnG6sw/5/1uXlJSYimisn1V3027+vORKrg4sj9dupc3EZGpW875uGmfsmLY/zIucDtGExnhfWbo40HNeF2LBIdn75W7FtR9/ow3nh6FIKSxt1Y869G2FM6vExXbw70sO3G9+NnkXMoxgCmgQw/OuROvyil5OJqQkASUnaX2iTc0w3NTMpljqUdnXG2tYKgNuhdxjSbRT1K7xO4yqtmDRiKlGR0TRoWo9Pv51QLNt/oYwyj/3UPF7oc0xXGOW//7MaOBXGpqTu30zc5AHEjmhH3GfvkrL3bxSGRph0HYqBT+3sddLOqCOuDGvUR+lcVqNM42Y57g+GRvnWQYjC0Id7BoCTmxPvjOtFRFgES79YnH/FtXijT1sAdq/fSWR4ZKHK0BeG+bxjPI9nKWMLMwD8BrTCo2lN9n/5P36qOYS5Xv3Y9N73JEbE4NGkJo2m9imW7b/KVM/x36tGGkdfQiEhIZw4cYKGDRtiZmZGlSpV2Lt3Lx07duTPP//EwcGBJk2aYGxszC+//ELHjh2zGyxtbGxo3LgxCQkJ7Ny5U6PsgwcP8vDhQ4KCgnBwyHsQl3PnzvHWW2+xcuVKTExMCA4OplSpUqxdu5YOHTpw6tQpALy8vHB1deXSpUtERua+UR04cACAY8eO5WqATEtLY//+/Tg5OVGtWjWSk5MZOHAgS5YsIS0tjYYNG+Lj48OJEycYN24cs2fPLuouBWDChAn8+OOPuLm5Ub9+fW7fvs3kyZMZO3asxrITJ05kzJgxnD9/Hl9fX+rWrcv169cJCQlh7NixWrvKzpo1i02bNlG/fn0cHR2pWLFoOaRGjRrFd999h5ubGwEBAdy6dYupU6fy448/0q1bN/755x98fX1xd3fn+PHj9O7dmwsXckdPzZw5k4EDB3LgwAEqV65McHAwiYmJLFy4kA4dOnD7tmZOxLCwMDp37szu3bupXr06Pj4+XLhwgZCQEBYvfvxA07ZtW9zd1Xkw/fz8aNu2LY6OjrnKmjRpEtOmTcPKyoqgoCBSU1P5448/ePvtt0lIKHgS9ucpI58u1ApljsuvluPhWQkY1YHm84Zjam/Fv0Nm83Pld1lUdQBb3/8BpYGShl/2o94nPYpt+y9Kfl3YlcocqUB02P/PurynWf31ClQqFQ3aN6bP5AE4uDhiYGRI5dpV+XDJxyQnqhtG0lJLXkdKfTkvWk7rj7GFKf+GLCEl9uWKenua/I5jRY7jWJfdX5jyMlQq1s77nX9X/sP4juM4uecEyYnJxEXHsX3NNib3+lT9IbZNg5d6RPqnKcj1RtvzxDOpg0rFsh9XsG7FRvq9OYSDu46QlJhETFQsG1Zt4v0eY0hPT6dZ22B8/XXPvVki5JfyJ1cqqfz3f/rtq6Ts/ZukVT+S/L8f1CPPp6eR8eAuySvnkLLrTxRKJSZv9X+8zrmjpF09i8LQCLMhkzGo9n/27js8irJr4PAvm15IhUAKECAhdEilF8HQQeWVJkhRoyJFqoBYkSLlUxQUlCKKKAhSpEkvoSUBQq+hpdDSe998f2yyELMhm0YSOPd75XplZvbMM7Oz++yceYoX6OmjU8USg15D0W/X83HL1qzMYhykEIWrCHUGwOh5YzE2NWbZjB9JTij6738LGwva9GoLwJafK3erUagYv6V0DVUPZYxtzDm5YCOnf9xGSlQ8manpBO8IYPeYHwBo+Ho7rJzty6QMQpS2ytfsRBQqKiqKbdu2YWdnh1KpJDY2lhEjRpCRkcGSJUvw8fEBVD+oly1bxqJFi5gyZQrr1qkmCnnllVfYs2cPu3btokePHnli79ixA0BjS89c6enpjBs3jpiYGD799FOGDh2qXrdlyxamTZvG+PHj+ffffzEwMKBjx4788ccfnDx5kp49ewKqFqxXrlxBV1eX+Ph4rl27RsOGDQEICgoiISFBXbZdu3YRFBRE3759mT9/vnr808uXLzNw4EBWrFiBr68vRkZGJTqvfn5+ec5feHg4b775Jtu3b8fHx4fu3bsDsGHDBjZu3EjDhg1ZunQpdnaq8XWio6N5//332bZtG15eXgwcODBP/NDQUDZu3KhuhVvS8ThPnz6tLgfAmjVrmDVrFt999x0tWrRg/fr1WFiourdMmjSJ7du38/fffzNjxgwA9u/fz/Lly7GxsWHlypXqOOnp6cycOZMNGzYwadIk1q/PO5vhuXPnaN++Pd988w3m5ubqc/LJJ5+wcuVKRo5UjfezcOFCZsyYQUhICAMGDKBfv375juHBgwesWbMGLy8v9TnMTebv27fvqddhectMTkPXQE/94+G/FAaPv37LqruJZT073D98FWWWkt3vfMvDJwZXD95ygphr4fTbMZPmvj24vsGPqCtFH7OxokpNScPMQB/9As6/nsHj5QW1YCjLeE9z/shZVn++nOGfv0O34b3oNryXet2DO/dZPu1HJv40rViztJa3jBTV50KvgPOo+ww+F80GdcKpfVOubvcneO+ZMtlHRZWWkoa+gT4GBZx//TzXceHd8IoTL+pBFKuf0vLnxrnrnD96DreO7ni/7M31nAk6XiQpyanoG+hjaKi5xY++wePlaVq8T8Xx6H4Ei776scD1l85eIcDvFK07taRD17bqSaKeC+mpqtaYegW0uHqipWZ2euHfU1kXA8i6WPDYe+m712PQsS+6NWqiU81ePf5o6oo5GI+eia5jPUxGffl4n0ol6Xv+QlHdEX23dmSnVr66QFQOFaHO8BncjRbt3Ti63a/A8agL4+3TEn0DfW5dukXIde0mRavIMgq5x3gWv6Vy46YnpnB2xa5860OPXuLh2ZtUb1EPpy5uxAQXMK6yKLJsGXW0zEhy9Dnk4+OjTsgpFAo2btxIXFwcI0aMUCf2QDXhx6hRo9i3bx9BQUEEBQXh5uZGhw4dsLS05PDhwyQlJWFqqhrXLj09nb1792JqasrLL79c4P737t1LaGgoPj4+eRKjAK+++ioHDhxg9+7d7Nmzh969e6uToydOnFAnRwMCAlAqlfTs2ZOdO3cSGBioTs75+fkB0KlTJwB1F+saNWrkmRiqUaNGzJkzB4VCUSoT/wwcODDP+XNwcODjjz9m9OjRrFu3Tp0cXblyJQBff/21+n0AsLa2Zvbs2fTu3ZtVq1blS456eHjkGZ5AoShZw+4BAwaozxlAr169mDVrFqBKhuYmRgG6d+/O9u3bCQl5nBxbvXo1oGox+2QcAwMDvvjiCwIDAzl79iynTp3C0zPvODOffvqpOjEK0K9fP2bPnk1ERAQxMTFYWVlpdQxDhgxRJ0ZBdQ5fe+01fvjhB65dq9g3zKmxiRhammJoqXlcSCOrx2OEpUZpHjOopOp090ShqyDs6KU8idFcUVdCuLv3DHV7elO3t3elSo46Na7D8C99Na779fPlJMYkYGZhhllOt9D/qmL1eHl8VJzGbZ5U2vEKs/e3XVz1v0znwT44ODuSkpTC5RMXOfTXfpxzZqmPfRRT4v08aykxiRhZmGJUwOfC+InPRXIZfC7MqlvR6ePBpMQmsu/zX0s9fnmr07gu7858T+O6nz/7iYSYeK2v47gozeMtp3YdKQAAIABJREFUPqm04+W6dfkWbh3dK+WkY9pwbeLCR7MnaFw3f8a3xMXEYW5ZBXMrc43bWFo/Xh4TVX6zAF+7GEzrTi2xc6xebmUoC9lJCeiYVEHHVPN1rWP6+PxnJ5b8+z47PgZlfAwKcyvV5Eo5ydHshBiSF0xAv9XL6Db0QMfIBOWjcDL896G8ex3j8fNV28VV7i7CovxU9DrDuroNIz4eSUJsAj9/9lOh8Qvi9bJqyIpj2/2KHaMiSY1NxMiy4N9ST95jpJTRPUZavOqhTMzN+ygL6MkUdT2c6i3qYV6rWpmUQYjSJsnR55Cra95uaLnjOLZs2VLj9u3atePixYsEBgbi5uaGgYEB3bt3Z926dRw4cIA+fVRjtPj5+REfH89rr7321FaYhe2vffv27N69m4CAAHr37k2rVq0wMjJSd6MHVZd6HR0dfH191cnRYcOGAXDkyBEMDQ1p06YNgDp5tnLlSsLDw+nSpQtt27bF0tJSXfbSkJu4fVKHDh3Q19fn1KlTKJVKIiMjuX37NpaWljRo0CDf9i4uLlSvXp07d+4QERFBtWqPKwtN25dEixYt8vz7yYTkk8lOgCpVVD9G0tJyuutmZhIUFISenl6ehHAuPT09unbtys8//0xAQECe5KilpSW1a9fOs72uri7W1taEh4eTkpKidXLUzc0t37LchHNCQtlU9qUlNvgeFk7VqVJT8w+CKo6qIQSSHsaU2VNdMwfVPmJvFvy0NvaWatKHKg5VC9ymIjKuYkoDL80TLBhXMeXezTBqONlRzVFzcqWqg+p9iXkYrVVLz9KOp43Qa3f59YsV+ZY7NVZNkhJ6vfIks3NF37yHlVN1LBw1fy7Mc67DxDL6XDi1b4JRzkRWY04X3Cpu8HpVC/pj327i2KJNpV6OsmJaxZRGXpq7OJtWMSXsZhh2TvbYFnAd5yYjox9GadUKqCTx9Az0yEzX3B0490FnZsbz2V3YrIoZbt7NClx3J/guNes4Yu9YQ+M2djnLIx5EkppSNi1Hc+kb6JORrnlcu9zn0RkFvI+VlfJhGIpq9gXOAq+wVl3XyrgoyNDy/Ct0Vd1bswt4WJ97MjP/cy6zMsk49i8Zx/7Nt71uzlimWfcrf0s4UT4qep3Ronc79RjVv535vcC4s/+aC8Cf3/7Bum//yLNOz0CP5u1U90RHtx8ttIyVQUzwPSy1uMcoq99SALG37he6TXZO46SCkqeieF7EsUCfFUmOPocsLS3z/Pv+fdWX16hRo576utztQNW1ft26dezcuVOdYNSmS/2TcWbNmqVuqajJgweqpIyRkREtW7bk8OHDhIWF4ejoyMmTJ3F2dqZRo0Y4ODioJwuKiIjg6tWrtG/fHmNj1UDQLVq0YOrUqXzzzTfs2LGDHTt2oFAoaN68OT179qR///7qbUvivwk/ULWitLGx4cGDB8TGxqqPKTY2Nl+S+r/u37+fJzn6ZEvO0vDfeLk3m7q6uupk6H/X5YqNjSUjI4MaNWpgaKh5sgFHR0cAIiMj8yz/b+xcujmzsxalFe+TrU//Gycrq2JXtBHnb1P7ZTequzlzec3+fOuru6nGlH0UdLPMypCRqBpL0cTWssBtcn9ApSdWrnEXr5y8yODarxa4vlGrJrh38cLFrT77fv8333qXnLEMg4Oua7W/W+dvlmq8p2ndpx22NatzcP0+ja1Q3bqoHkZcOVH02VrL24Pzt6nXxQ17N2fO/p7/c2Gf87m4V0afi6TIOMICC251bteiHrr6ekRcDSUtIZn4e5EFblsRXTx5gVdq9S5wfZPWTfHq4o2rewP+/T1/NzhXd9VDuutaXsfB54OLHG/YtOG84vsaF46f54s3P9MYt04j1ezeYcGhGtdXdqdPBOFu167A9Z5t3Gjv05amHo3Z+Fv+8fFyx/i8EHS5zMo49uP3Gfr+IE4dO83owZM0blO/iaoV++0bd8qsHOUhK+QGek280a3TgIyjO/Ot162juq6z7mjXg8X0q19RWFUj5Zd5ZJ4+nG+9joU1iiqqelr5UPXQS6eqHXqNPcmOjyUzKH9rN916jdExMUMZE6nuhi9EUVX0OiM2MpbLgQUP2VG/hSt6+nrcuXqH5IQkIsLzT9hap2FdjEyMiLwfyYO7hSf0KoNH529T52U3arg5c1HDPUaNnN9SD8vwHuPhWVVsaxd7dI30NU4OZVlH9SAvPuRRmZVDiNIkydHn0H8TXblJpC5dumBiYlLg655sueju7k7NmjU5evQoiYmJ6OrqcvDgQapXr06rVq2euv/c5FebNm2eOmnTkxMOdezYkcOHD3PixAk6duzIzZs3GTJENUlMy5Yt2bRpE8HBwZw/f57s7Gx1l/pcb731Fn369GHPnj34+fkREBCgHirgjz/+YN26dfmSxkWVm5T7r9zJEBQKhfpc29jYqFu2FiR3uIJcJe1G/196esX/eGszwUPusRoY5B2T67/XX0mUZqxn7dauQDwn9sOpmweGlqakxSap1+kodKjfvwMA1zcdK7My3DtxhRajelOzY1NMa1iR9CBvN2wjG3NqdmwKwP2TVzWFqLQC/z3B6xMG4dm1JaYWZiTFJarX6SgUdOjfGYCjW/LfqD6LeE/T7rWOuHfxIikukX1rd+dZV6+FC41bNyUhJp4TlbAFxPV/A2k7oR8uXT0wsjAlNS7v56JJzufi8pay+VzcPnSe24fOF7h+TNBSTKyrsO/z3wg9eaVMylCeTuw6zuAJb9CyayvMLMxIfOI6VigUdOnfBYBDmw+WWbzbl26jp69H45ZNqOZQLd/NrFPDOjRr25ysrCyO7yq778eK7MDOw7w3+S06dW+PuWUV4mMf95RQKBT0Gagac33n37sLClFi1y7dQF9fD/dWLbBzrM79sId51rs0csa7nQdZWVns31Hy772KJPPsMQx7DkGvWWswMYPkx9c1Ogr0WqqGlsoM1O5zorx/F4VVNfS9u2hMjhp0Vo25nnnjPNmJqq7JOiZmGPUfhTImksxzx/JNEmXw8usAGpO3QpSW8q4zzhw6zZlDpwuMt+bsWsytLVj+2U9cPHlB4zZ1m6h629y6WHaJwmft5q5AWk7sR90C7jEa5vyWulaG9xihRy+REhWPsY05Td7ozLlVeeujqg1rYe9Vn2ylklu7T5VZOYQoTZIcfQHY2tpy584d3nrrrXxjQz5N3759+eGHH9i/fz/6+vokJyczaNCgQpN4ua0hX331VV555RWt9tWxY0dA1Z0+t5Wnt7dqfJjc5Ki/v7+6BelLL72kcb9DhgxhyJAhZGZm4u/vz8yZM7l9+zZ//fUX7777rnYHXoCHDx9ibW2dZ1l6ejpRUVGYmJhgaWmpPnZTU1MWLlxYov2VJ0tLS/T19YmMjCQtLU1j69HQUFWLnqclwF9k0VdDubsviNovu9F12Tj2vL+YtNhEdA31aT9nJNb1HYgJvsftf/P+YDCyMsPIugrKzCzi75bsSWvIwXM8On8L22Z16b5qEvvG/EBcTjeYKo5V6fL9BxhZVSH6Wii3dgWWaF8VTcjVu5zZH4h7Fy8mLPuIRaMWkBibgL6hPm/Neh9Hl5qEB4cR+O/JPK+rYlWFKtbmZGZk8SjkQYnjFceJbcdw7+LF6xMHc+3UVUKvqbpM1m1aj/E/fgTAP0s3kVLJWvsCRFwN5eb+IOp1ceOVZePYOmoxqTmfi66zRlLVxYGo4Htc/8/nwtjKDGPrKigzsoiVFgjFdvfqHQL3B+DVxZupy6Yzf9TXJORcx6Nmf0BNl1qEBYdy8t8TeV5Xxcocc2tzsjIzeXD3QYnindh9nPt37mHnZK96zQfzeBSqSrw5N3Nh6rLp6OrqsmP1dh6G5E3IvShuXLmJ395jtPdpy4Lls/jo3U+Ji4nHwNCAj7+eRN36dbgdfJeDO4/keZ2ltQWW1hZkZmQSdrdkrQkP7jpC6O0watZxZP7yWUx99zPuharqj0bNG7BgxSx0dXVZv+pvwkOer5aLynt3yLwYgF4Tb4zfnkHKqjmQlAB6+hgNGoOuXS2yHoSSee54ntfpmJqjY2ZOdlYm2ZGPPyfp+zeh18gTvcaeGPQdQfqO31UzzOso0O/8KvovvUp2VhZpWx5PVKYMuYHyUTgKWwcM+/mStmkFKLNATx/DPsPRa+KNMi6a9MNbn9l5ES+eilBnlJRTQ1VPhJBKOBRRQaKuhnJ7XxB1Xnajx7Jx/Pv+499SnZ64x7ip4R7D2LoKWaVwj5GdpeTkwo28NPct2kwfSEp0PNe3qN63Kg42+Cx6Dx2Fgqsb/UgIjyrRvkReSpmQqcxIcvQF4OnpSUBAAEeOHNGYHJ0+fTrXr1/ngw8+oEuXLurlucnRgwcfPw3UJtnp6enJ5s2bOXLkiMbtFy1axMGDBxkyZAgDBgwAVF20nZ2dOXnyJObm5ujo6KiTo7n/f/LkSQICAqhfvz729vbqeAsWLGDr1q0sWrRIfXx6enq0bduWYcOGMXPmTO7dK/kP98OHD+cbq/PQoUNkZmaqW7I6OjpiZ2dHWFgYN2/epF69enm2j4qK4o033sDOzo4ffvghX+vRikJfXx83NzcCAgLYu3cvvXvn7XKTmZnJvn37gILHltVGZW4Zqo0j03/hVVdHHNo2Zqj/ImKC72FeyxYjSzPS4pLY7btINQbZE5qM6IrnxH4khEawto3mCTuKYs+739Hnz+lUa+rEoIPziAm+j45CB4s6NVDoKoi/+4h/3/6W7KznbwSblR8vo+bG2jRu04zFJ5ZzLzgM21rVMbOsQlJcEt+893W+VtJdh/fi9QmDiAh9xLh275Y4XnEc3XwIz24tadmjNXN3fsO9m2EodBU4ONcEYN/a3Wz/KX9X28pi98e/MGSjI7XbNOb9E4uIDr6HRS1bjC3NSI1LYvN7+T8X7sO70nZCP+JCI/ipXck/Fy+ypdN/oNbftWnWtjkrTv5CWHAo1WvVoIplFRLjEpn77ux813GvEb0ZPOENHoY+5N22b5coXmZ6Jl+/N5cv136FS/P6LD30E/duh6NQKHDMucYD9gWw6qv84+2+SGZPXciqBnXxaufBzlN/c/vGXRxq2WNhZU5CXAKT3/o43/s0cOT/eG/yW9wLvU9v7/4l2n9GegaT3/mEpeu/pXGLhmw+9icht0JR6Cqo46waZujInmP83xeLS7Sfiip13WJMJixEz7U5ZjN/RfkwFIVNDXRMq5CdnEjq8ln5vqf0O/bBsOcQlFEPSfp8pHp51rWzpP2zGsO+IzDsOgCDdj1RRt5Hx8oWRRULsrMySV27COXdvN30U1bPx2TCAgw6vYKeRyeyYx6hqGqHjokZ2UnxpPzwCaRWvodkonIp7zqjpKxtVQ1bnmyl+jw4OP0XbFwdqdm2MSP8H/+Wyr3H2KHhHqPZiK60nNiP+NAIfi2Fe4yLvx/A2sWB5m91o9vi0bSZPoiUqARsGjiiq6/Hw7M3OfLFmhLvR4hnpXT78YoKaeDAgRgbG7Nq1Sr27t2bZ92mTZvYvHkz169fp3nz5nnWOTk50bx5c/z8/PDz86N+/fpaTRrUq1cvqlWrxvbt21m7dm2edX5+fqxcuZJr167RtGnTPOs6dOhAVFQU27dvx9nZWd1K097enpo1a3LgwAFiY2PztRq1s7MjIiKCRYsWkZT0uFtBeno6e/bsAci3r+JYvnw5Fy8+HuMvNDSUuXNVA4DnThYFMHz4cJRKJVOmTMmTlE1JSWH69OncuXMHU1PTCpsYzTV8+HAA5syZw5Urj7uXZmRk8OWXXxISEkLTpk1p1kzzpBLayG2RWtEnVyqupAfRbOz5KRdW7iY1KgGbBrXIzszixpbjbOr9GbHBZd/aJjE8io09PyVw4UairoZSpWZVzBxsiA0O59SizWzs+UmJnx5XVNEPovi49yR2rdpGQlQ8tRrUJiszi2Nbj/BJ38ncCw4r13hPs3jMQtbOWU14cBjVa9thY1eVK/6XWDzuG1Z+vLTU9lMeEh9E82vvTzm1ajcpUQlUa1ALZWYWl7ceZ03fz4h+Bp+LF1nUgygm9RrPtlX/EBcVR+0GTmRlZnF4yyEm95lIWBGv4+LEu3PlNh92G8PW5Vt4FPYIu9r2WFaz4lLAJb6ftIjZb818bidj0taj+xEM6fY2f6zYQExULC4N65GVlcWuTXsZ2sOX2zfKfhKeG5eDGdh5OL//tI77ofep6eRA1WrWBPmf44vxcxg/fOpz+z5lx0aRNH8c6Qe3kp0Yh8LeiWxlFhmnDpG0YDzKh0UbDzd9z18kfzeNjPMnyM7KQmHvBFkZZAQeJHn+h2QGHMj3GmXIDZIXTiAjSDWEisKhDtmpyaT77SBp7miU9+6UwpEK8XQVoc4oiSpWqrkQkhOSCtmyckl6EM36np9ydqXqt1TVnN9S17YcZ33vz4h5Rr+ljny+hm0jFnL38Hn0TQyxqleDmJv3OTZnHX/3n0VaXPIzKceLJPsZ/r1odLJL89GMKFfTpk1j8+bNzJ8/P1+LzV27djFlyhQyMjKoX78+Tk5O3L17l2vXrqFQKPjmm2/o0aNHvphr165l5syZAEyePBlfX99827i6uqKrq8vly48nBjh16hTvvfceiYmJ1K5dGxcXFyIjIzl79qy6rCNHjswTx9/fX51kHDJkCJ999niiho8//pi///4bgD///BN3d3f1uvT0dN58803Onj2LpaUlzZs3R1dXlwsXLhAREYGnpye//PJLvrExtfXmm28SEBBAjRo1iIyMpFWrVujr63PixAlSU1N5//33mTDh8dM3pVLJ+PHj2b17N8bGxjRt2hQzMzPOnj1LdHQ0Tk5OrF27lqpVVRPhLF68mCVLlvDhhx/ywQcfFKuMmsq7du3afC2FNb1X8Pjct27dmtWrV6uXz5s3j1WrVqGrq4unpyeWlpacO3eOBw8eULNmTVatWkWtWrUACAsLo0uXLtSqVStfEh7Ax8eHkJAQ9u/fr57M6bfffmP27NlYWFjQqlUrhg8fjoeHx1OPYdOmTUyfPp3XX3+d2bNna31eltUcqvW2omwdVjxfT+8rMzfMyrsIIsex7NjyLoJ4QmiGvB8VxeH/5Z+cUZQPoy+WlHcRRI7X3ceVdxFEjpezSzavhShdY0N/L+8ilKlRTgOe2b6W3vnrme2rIpCWoy+IHj16sGHDBnr37k1MTAwHDx4kISGBbt26sWHDBo2J0dzX6evrqyYAyJm1Xhuenp5s2bKF/v37k56ezuHDh7l37x4dOnRg9erV+RKjAB4eHuqZznO70ufK7bptZWVFixYt8qwzMDBgxYoV+Pr6YmVlxYkTJzhx4gQ2NjZMmjSpRInRJ82ePZthw4Zx9epV/P39adSoEUuWLMmTGAXVgOKLFi1izpw5NGzYkEuXLnHy5EmqVq3KqFGj+Ouvv9SJ0Ypu6tSp/PDDD3h7e3P58mUOHz6MmZkZo0ePZtOmTerEaHENGDCAvn37kpmZiZ+fHzdu3CilkgshhBBCCCGEEM8PJdnP7O9FIy1HhSjE01oxispDWo5WHNJytOKQlqMVh7QcrVik5WjFIS1HKw5pOVpxSMvRikNajlYsz3vL0fecSjameFH8dGfDM9tXRSATMgkhhBBCCCGEEEIIUYE9f1PoVhySHBUvjDlz5hAdHV2k1yxcuLCMSlO4ylZeIYQQQgghhBBCiMpGkqPihbFv3z7Cw8OL9JryTDZWtvIKIYQQQgghhBCibGRX8LFAjx8/zrJly7h27RoZGRk0btwYX19fOnTooHWM27dvs3jxYk6fPk1sbCy1atViwIABDBkyBIWi7KZNkuSoeGEcOHCgWK9bs2ZNKZdEO8UtrxBCCCGEEEIIIcSzsmnTJqZPn46BgQGtWrVCqVTi7++Pr68vM2fOZODAgYXGuHr1KkOGDCExMRF3d3eaNm2Kv78/s2bN4ty5c2XaGEySo0IIIYQQQgghhBBCVGAVdczRhw8f8vnnn1OlShX++OMP6tevD8D58+cZOXIks2fPplOnTlSvXr3AGNnZ2Xz00UckJiYyf/58XnnlFQCio6MZMWIE27Ztw8fHh27dupXJMZRdm1QhhBBCCCGEEEIIIcRza+3ataSnpzNixAh1YhSgWbNm+Pr6kpaWxvr1658a49ixY1y7dg1vb291YhTA2tqaL774AijbXr2SHBVCCCGEEEIIIYQQogLLfob/Kwo/Pz8AXn755XzrcpcdOXKk2DHc3d2xsbHh9OnTJCYmFqls2pLkqBBCCCGEEEIIIYQQokiys7MJDg5GoVBQt27dfOudnJxQKBQEBweTnV1w0jU4OBggT8vTJ9WpUwelUsnNmzdLp+D/IclRIYQQQgghhBBCCCEqMOUz/NNWXFwc6enpWFpaYmBgkG+9np4eVlZWpKSkkJSUVGCcR48eAVCtWjWN63OXR0ZGFqF02pMJmYQQQgghhBBCCCGEEADEx8cTHx+fb7m5uTnm5ubqf6ekpABgbGxcYCwjIyMAkpKSMDMz07hNbpzcbQuKkZycrEXpi06So0IIIYQQQgghhBBCCAB+/fVXlixZkm/5mDFjGDt2rPrfCoX2HdKf1q1eV1cXAB0dnafGUCqL0q5Ve5IcFUIIIYQQQgghhBCiAlM+JblY2oYPH85rr72Wb/mTrUYBTExMAEhLSyswVmpqap5tNclteZq7bUExTE1Nn1Lq4pPkqBBCCCGEEEIIIYQQAsjffb4gZmZmmJiYEBMTQ2ZmJnp6edOMmZmZxMTEYGho+NR4tra2XLlyhcjISOrVq5dvfUREBFDwmKQlJRMyCSGEEEIIIYQQQghRgWU/wz9t6ejo4OzsTFZWFnfu3Mm3/vbt2yiVygJnoc/l4uICPJ61Ps9xZ2dz69YtdHV1NSZOS4MkR4UQQgghhBBCCCGEEEXWvn17APbt25dvXe6yjh07ahVj//79+dadOXOG6OhoPDw8CpzQqaQkOSqEEEIIIYQQQgghRAWmJPuZ/RVFv379MDQ0ZPny5Vy8eFG9/MKFC6xYsQIjIyPeeOMN9fKQkBBu3rxJQkKCepm3tzcuLi4cO3aMv/76S708OjqaL7/8EoCRI0cW99QVSsYcFUIIIYQQQgghhBBCFJmjoyNTp05l5syZDBo0iJYtWwLg7+9PZmYm8+bNw8bGRr39iBEjCA8PZ+7cufTr1w9QzXo/Z84chg8fzqeffsrGjRuxtbUlICCAuLg4BgwYQOfOncvsGCQ5KoQQQgghhBBCCCFEBZZdxBadz9KQIUOwt7dnxYoVnDlzBgMDA9zd3Rk1ahStW7fWKkazZs3YsGED33//Pf7+/ty4cYPatWszceJE+vfvX6bll+SoEEIIIYQQQgghhBCi2F566SVeeumlQrc7cOBAgeucnZ35/vvvS7NYWpHkqBBCCCGEEEIIIYQQFZiyvAvwHJPkqBDihRAr089VGKY6UvVUFFsz7pV3EUQOb33b8i6CeMLLepblXQSRY8DWqPIugshh8M+48i6CyLHxzLNvVSU029js0/IughCiFMgdqhBCCCGEEEIIIYQQFVhRZ5EX2pO2VEIIIYQQQgghhBBCiBeStBwVQgghhBBCCCGEEKICq8iz1Vd20nJUCCGEEEIIIYQQQgjxQpKWo0IIIYQQQgghhBBCVGAyW33ZkZajQgghhBBCCCGEEEKIF5IkR4UQQgghhBBCCCGEEC8k6VYvhBBCCCGEEEIIIUQFlp0tEzKVFWk5KoQQQgghhBBCCCGEeCFJy1EhhBBCCCGEEEIIISowJdJytKxIy1EhhBBCCCGEEEIIIcQLSVqOCiGEEEIIIYQQQghRgSnLuwDPMWk5KoQQQgghhBBCCCGEeCFJy1EhhBBCCCGEEEIIISqwbBlztMxIy1EhhBBCCCGEEEIIIcQLSVqOCiGEEEIIIYQQQghRgcls9WVHWo4KIYQQQgghhBBCCCFeSNJyVAghhBBCCCGEEEKICiw7W1qOlhVpOSqEEEIIIYQQQgghhHghSctRIYQoQ4bmJrQb34/63Twxs7UkOTqeW4fPc+y7zcSHR5UsuI4OwzZ/jmXt6nzvNqrgMlQxptWoPrj28MLcoSppCcncP3eLU7/s5o7fxZKVoRIxMTelz/j+uHdtiYWtJQnR8Vw8fJZt328gOjzymcTTNzSgy8ieePVqTfU69ij0FESFR3JubyD//rSVxJiEkh5mpVXFwoy3Jg6nQ/d22NhaExsVx8lDAfzy7Roehj8sUWwdHR1++mcJDk729Gr6WqHbOzeqy8qdy/hr5SZ++GpZifZdURibm9Jt/P9o2tULc1srEqPjuXr4HHu+/5uYYlz/xYn3zoopNH7Zo8CYsfej+LL1aADqtWrEmHWfaVWW6LAIvmo3tsjHUNEYWpjgPb4fdbt7YmprSUp0PHcPnSdw0WYSSqG+6L/1cyxqV2dF84LrC4BqTZ3wGNUbe+8GGFmZkRwZx539ZwlYtJnkR7ElK0cFZ2ZhxpDxQ2jdvTXWttbERcdx+tBp/lj0B4/CH5VpvCEThjB04lCt4u7dsJdvJn6TZ5l7B3f6juiLq5srpuamJMQmcOX0Ff7+6W+unL5S5LKXN1MLUwaNf4NW3VpjZWtFfHQ8Zw6dZv13fxIRHlEu8XT1dPlmxyKcGtZhxoDpXDx5Qb2uSaumzP5rrlZxHoY+5N22bxf5GJ5HSqWSIe9NJDT8Pkd3ri/v4lQq+hYmNJ3YD8ceXhjZWpIWFc/9Q+e5+M1mkotRr1dxtqPRB72xbdsYY1tLslLTib0cws0/DnHn76Oay1DFmEZj+uLY0wtTx6pkJCQTFXSL66t28+DwBY2vESWjLO8CPMckOSqEEGXE0NyENzd/TlVnB9ISUnh0NQTLWrY0H9gJ1+5erB0wi4irocWO32Fyf+zdnEmOLjihZmhuwrDNX2DjbE9WeiZRt+5jaGaMcxc3nLu4cez7Lfj938Zil6GyMDE3Zfp4fNcYAAAgAElEQVSm2dg5O5KSkEzY1RCq1bKl/cAuuHdvyYKBnxN29W6ZxjO1MGPyui+o2dAJpVJJVHgEmWkZVKtdg+7vv4pXn7b83xtf8ujug9I+/AqvioUZy7YuxsmlNkkJSdy8cgv7Wnb0GdyTjj3aM+b1Cdy8cqvY8d+d+haN3RsSGx2nVVk+XzwDPf3n5yeSsbkpH26aSXVnB1ITkrl/9S7WtarTauBLNOvuxZKBM7l/NaTM49k1qAXAnTPXUWbl/3mfGBWv/u/UhGRuBV59ajlqt3BGV1+PyLslS55XBIYWJry++XOsXRxIT0gh8moIFrVsaTyoE/W6e7Gp/yyiSlBftP6oPzXcnEl5Sn0B0GhgR176+i0UerokPYwl5uY9rOrZ0/TNLtTt6sHGfl8SH1L0xFRlYGZhxv9t/j9qudQiOSGZ21dvY1fLjm6DutGmexs+6v8Rd67eKbN4EfciuBRwqcB4hsaGODd1BuD+3ft51g2bMozB4wYDkBCbQMj1EGrUqkHbHm1p1bUVSz9dyo41O7Q/GeXM1MKUeZsWUtOlJskJydy9eofqtWrgM6grrXu04eP+07hbhPeitOL1HzsQp4Z1NK5LSkjicmDB7x9A/Rau6Onr8SDkxavnC/L9z79x4fI1LC3My7solYq+hQk+/3yBhYsDGQkpxF4JwayWLfUGd6JmDy/2/+8rYq9oX2fY+7jRdtk49IwNyExJJz74HkbVLLBt3RDb1g2xe6kZJ8b8mLcM5iZ03f4l5jn3GAk376NfxRgHHzccfNy4+O1mLix4/u8xxPPj+fnl/4xlZ2ejo6NT3sWolCryuavIZRN5VYb3qse8d6jq7EDwgbP8M2YJ6Ump6Brq023WSJoN6MArS8awsus0spVFHzum3fh+tBnTt9Dtei7wxcbZnntBwWwe9T0J96MBcPFx59Ufx9F23KuEnLjM3eOXi1yGymTY1+9j5+zI+QOn+Wnst6QlpaJnqM+bs3xp278z7y4ez+fdJpGt1O55bHHiDZ3tS82GTtwPDmPZ6G8Iv6ZKHlnbV8X3uw9x8WrIe0sm8FWfqWVyDiqyqQsm4eRSm+P7T/L5qK9ITkrBwFCfyXMn0Gtgd7788ROGdXkHpZbvz5PemjicYWOHaLWtVVUr5v0yi7oNNN/8VlYDv36X6s4OXD5wht/Gfq++Xl+f9TYt+3di2OJxzO82RevvouLEMzQzxtqxGqkJyXzXr/AWoeGX7rC4/xcFrvd4tR11vRqQEBHL2vFLtCp3RdZ53jtYuzhwZ/9Z/h29hIyc+qLTnJE0GtCB7j+M4Q+f4tUX3hP64alFfVGtqRMvzXsbHR048sUazq3aA9nZmFa3pMeycdh51qfz12+z5Y2vi3OIFd6H8z6klkstAvYH8PXor0lJSkHfUJ8xc8bQdUBXpv8wnVE+o7T+HipqvD3r97Bn/Z6C483/EOemzpw7fo71ix+3sPPs5MngcYPJzMhk6WdL2fn7TgAUugoGjRnEm5PfZNTMUVwNusrNizdLcIaenTHzxlHTpSan9geycMx89bkbNfsDugzwYcoPHzHOZ4zW70VpxKvtWpvXR/cvcP3tS7eY/r+C6++Or3WikVdjYiNi+PbDhVqV+3mWnZ3Nj6vWsmKNtBYtDu8Fvli4OBC+L4jjo5aQmZSKwlAfr69HUndgR9osHcuuzlO1qjOMqprTZslo9IwNCP79AGc+X0NWSjoADt09aP3dKJz6tSUq6CbXV+5Wv67lN+9i7mxP5Jlgjr37Hcn3VPcYDt08aPvTOJpMeI1Hxy/z8NjzfY/xrGXLbPVlplzHHF28eDGurq78+OOPhW9cCjZt2oSrqyszZswoUZwLFy4wYMCAUiqVZj4+Pri6uhIWFlbsGM/6/BYmISGBWbNm8c8//5QozrRp03B1dWXr1q1PXVYUWVlZrF27lrlz83aHqWjnUMCjR4+YNGkSgYGB5V2Up7KuZ4drd0/SElPYPn4p6UmpAGSlZbBr6nIib4RT1cWB+t09ixTXtJoF/X4eT7sJ/Qrf1tYSFx8PlFlKto79QZ0YBbix9wxn/zwAQLOBHYtUhsqmRj173Lu3JDUxhZUTFpOW815kpmWweuoy7t0Ixd6lJu7dvMssnlUNazx6tkaZlcXyD79TJ0YBou9FsvSD/yM1MYXaTetRv2WjUjz6iq9WvZp07NGe5MRkZo6bS3JSCgDpaRl8PXkht6/foU59Jzr0aFekuNbVrJi7ciZvTxqu1fae7d1Z9e8yGrs3LPIxVGS29exp2t2L1MQU1k74Ic/1un7qTzy4EUYNF0eaaXn9FzeevWtNAB4Eh5f4mCztbfjfzJEArJ/2M/ERlburt1U9O+r18CQ9MYU945eS8UR9cWDKcqKvh2Nd34G6RawvTKpZ0GvFeFpOLLy+AGj3yRsodBWc/nE751buhpxJH5IexrLnw6VkK5XUbN+EKg42RTvASsCxniNterQhOTGZBeMXkJLzPZSRlsF3U74j5HoIterXok33NuUSr1XXVnQf3J3EuEQWjl+YJ4n3mq9qqJBtv25TJ0YBlFlK/vjuD/y2+6Grp0vfkYUnyCsCh3qOtOrempTEZL4d/395zt2SjxYTeiOEmi61aNW99TOLp1AoGLvwQ3R0dMhIzyjyMVW1r8a7M98HYMnUxcQ8iilyjOdJZFQ0H07/iqWr1pZ3USqlKs521OzpSUZiCifHLSUzp85QpmUQMGk5cdfDsajvgGMPL63i1X3jJfSrGBN9/jaBU1epE6MA4f+e5txcVQLb1be7ermRrSUO3VT3GMdHLVEnRgHCd5/m5lrVPUbdwZ1KerhCPDMyIVMxDB48mPPnz5d3MSqd+fPns2bNGrKyssq7KPns3LmTmTNnEh8fX/jGolxNmzaN7du3V/iZ+hq/1hYdhYLg/UGkxiXlWZetzOb8hiMANOzdSuuYTu2b8O7BhdTv5knio1gOff30p+1G5iacW3eIi3/7EReavxtkxDXVwxdzu+fvRvdJrV7tgEKh4Nz+UyTFJeZZl61UcmzDQQC8ercts3j1WzZGoVAQEfKIkEu388WMj4jlzgVVi57aTepqf3DPgW7/80GhUHB07wkSYvN2+VUqlexcr2ql0KXvS1rH9O7gyTq/3+jQvR2RD6NYOmf5U7efMm8C361biK1dNY7uPcHBHYeLfiAVlMer7VAoFFzaf4ZkDd9FARsOAdCit3aJhuLGy+1S/+B68R/65nrts+EYm5tydvsJLu0/U+J45c21n6q+uL0viLTY/Of08l+q+sKlj/b1Rc0OTXjz8ELqdvMk6WEsx+c+vb4wrWGNQ6sGpCekcGpJ/ofY8SER+H25lsOf/ooys+L9jiupzv06o1Ao8N/nT2Js3u91pVLJnr9ULTo79OnwzOMZGBkwepZqLN7V81cTef/xWIIKhYLG3o0BOLpD85iAAfsDAHBu4qxV2ctbp9c6oVAoCNgXQGJc/nO3/699ALTr0/6ZxXv1vddwaV6frcs3k5KYXJTDAeCdz30xszDj6HY/AvcFFPn1z5Nj/qfpNegdDvidoKqNFePfH1neRap0nPq1Q0ehIHxvEOka6oxb61W/YWr11a7OqN5G9VA4dGeg+qHYk8L3BgFgVssWfQsTAAzMTbj1x0HubDhCkoZ7jLirqrrexP75vscoD0qyn9nfi0a61RdDcbr1ibI9bxMnTsTX15fq1asX6/UFlW3IkCH07NkTa2vrkhRPlKLK8vmzb1EPgPDTNzSuv3cmGABHL1etY1Z1ccDA1JCLf/uxb+ZabBvUfOr2UcH32P3xqgLX12iq6joc8xyM1/c0dVu4ABB8+prG9beCVO+Ri3eDMot33f8SS0ctfGr3JkNjQ0DVFfJF0thNdZ4untI8VtulM6ruWM29m2od06l+bYxNjdm1cQ/ff/Ej9QrpJt/YTTUe6U9fr+CftTuY8e1HWu+roqvdQpUQuXP6usb1d4NU30V1tbz+ixvvcXK0+ONmAji516dZd2/SU9PZOuf3EsWqKKrn1BcPTmmuLx7mnFN7b+3rC2sXB/RNDbm60Q+/L9diU0h9UbNtI3QUCsKOX1K3XP2vc6t2a1z+PHBtoTq3V05pnrjoapBq/NvcROSzjPfaO69R1a4qt6/cZueanXlX6sAs31lUc6jGnWt3NL7e0ERVt+jq6mpV9vJW30117q6e1jzm8LUgVd3byEu796Kk8ezr2DNowhuE3wrnz2//wGdQV632m6uBRwNa92hDWmoav8wq+DfZi+LWnRCSU1Lp070LU8e9y/Wbd8q7SJVOVXdVnRF5SnM9HHVaVWdUa6ldnXF+/kbu/H2MqHOax3bXy/kOAVDkfI/EB98jcGrB17NVM9XvrsQ7Mr6uqDwkOSqeC7a2ttja2pZ6XGtra0mMimKxclIl6jW12ASIz5lF0szWEn0TQzKS0wqNef/cLX7p9QmPLms/cYom+iaGeAzvSrMBHclITSdwxa4SxavoqjnVACAyVPNMw1E5s9RaVLPC0MSItGTNiYGSxIt5EM3pXScLjGntUBXHhk4A3LtR8pZ1lYmDkwMA90Lva1z/IEyVvLextcbYxIiUQt4fgMtnr/JW9/e4cUm78fX+WLqe4/tPkhifVPjGlUzVnOs1uoDrNTrnejWvZomBiSHphXwXFTeevasqORoTHkmboT7Ub9MEYwtT4h5Ecf7fAC7uPa3V8fSZ/gYAx37bQ+y9Es7gXkFY5NQX8QXVF2Gq+sK0CPXFw7O3WNfjEyK1rC+sXR0BiL5xD4DaLzXHuZc3VextSIlO4OauQIJ3PL8t3uyd7AF4EKr5Rv5RmOp6t7a1xsjEiNRCvodKK56ZpRn9R6nGuVw9b3W+XjPKLCWnDp16allad1W14g65UbLfDs+KXW07AB4Wcu6sbK20ei9KGm/Mgg/RN9Dnh6mLyUgrepf64R+rWkbu/HUHkfeez8nMiqJJI1c2rFpMg/r1yrsolZZZTp2RVMDkeEk59xjGtpbomRiSWUidEXUmmKicRhuaOHbzACA1Mo60Qib10zMxxOWtrtQd1JHMlHSu/vzvU7cXoiIpUvOUXbt2MWzYMFq2bImnpyf9+/dny5YteVpyxcbGsmjRIl599VXc3d1p0qQJHTp0YMqUKdy6pf1Ms9rs62njTG7duhVXV1emTZtW6L5SUlJYsWIFAwYMwMvLiyZNmtC2bVvGjBmTp/t87pilud3CXV1d6dy5c55YN2/eZMqUKbRr144mTZrQuXNnZs2aRVSU5h/w586d47333qNly5Z4eHgwZswYQkNL1qpCk4MHDzJ48GBatGiBl5cXb7/9NufOndO47Y0bN/IcQ/v27fnoo4+4eTP/TWZaWhpLlizh1Vdfxc3NDXd3dwYMGMCaNWvIzMxUb+fq6srGjarZ6qZPn46rqyv+/v6ldnwFXQtbtmxhyJAhtGrVimbNmtGjRw8WLFhATMzjsX7efPNNPvpI1Upo8+bNuLq6snjxYkDzmKO5yw4ePMi+ffsYNGgQbm5ueHl58cEHH3D1quYn0wcPHmTo0KF4enri5eXFuHHjuHv3LiNGjMDVNe+Tvfj4eObOnUuvXr1o3rw5Xl5evPnmm8UeU/W/0tPTWblypfp9a9euHe+88w6nTuX/gZ2SksKPP/5Inz59aNasGe7u7gwZMoTt27fn27aon0l/f39cXV2ZN28eN27c4IMPPsDb25vmzZszaNAg9u3bp942LCwMV1dXTpw4AcCwYcNKPC5vWTKxVs26mRKj+UdEyhPd7Eysq2gVM/z0jRIlRms0rcNbu2Yz9vQPdJo2kIT70Wx86//U3eufV1Vy3oukWM3vRdIT74WZFu9FaccDeH3am+gb6hMXEcOV4xe0es3zwtLGEoD4GM3DmsTHPl5uYW2hVcyLpy5pnRgF2LN5/3OZGAUwK+R6TX7iejW1Lny24OLGq5GTfBu8cBT9Z71N854tqd+2CV7/68jby6fg+8tUDJ5onaJJbTdn6no1IDMtg0MrKs/M24Uxtnl6fZH2xDk10vI75cHpG1onRgH1OKLpiSn0XD6evr9NodHAjtRs34T6r7Smx7Jx9Pl1MnpGBlrHrEwsbFTfLQkFvAdPDvlhrsXnpLTi9XijB6bmpty+elvdPb4oPDp54NFRldg4uOVgkV9fHswLOXeJRXwvShKv98g+NPZuzJ4/d3PJ/2Kh+/qv+m6uNPJqTEZaBv+s2FLk1z+P3Jo2ksRoCRnm1BlpMYka16c/sdxQyzqjIEbVLGj4QW8A7m4+XuB21s3q0H3vHF47/yMtPh5Eyv1ojoxYSNzV0s9rvOiys7Of2d+LRuuWo5999hnr16/HwMAAb29v9PX18ff3Z+rUqVy8eJFPPvmEyMhIBg4cSFhYGLVr16ZNmzakpKRw8eJF/vnnHw4ePMi2bduws7Mr8b5KS2pqKkOGDOHSpUvUqFEDT09PlEolly5dYu/evRw6dIg///yTpk2bUqtWLfr06aMe77BPnz55WhUePXqUMWPGkJKSQoMGDXB3d+f69eusWbOGffv2sWbNGmrWfNyt6cCBA4wbN46MjAw8PDywtrYmMDCQQYMG5UksltS2bdv47rvvqFu3Lu3atePatWscPXoUf39/Nm7cSIMGj7u+7du3jwkTJpCenk6DBg3w8PDg9u3bbN26lT179vD999/ToYNqfKTs7GwmT57Mnj17sLOzo02bNmRkZBAQEMCsWbO4dOkSX3+tmtG0T58+nDt3jpCQENzc3HB0dKRq1aqldoya/Pbbb8yePRtTU1M8PDwwNDTk3LlzrFixggMHDrBlyxYMDQ3V5Q4KCqJmzZq0aNEiX7JSkw0bNrB//36cnZ1p164dly5dYv/+/fj7+7N161YcHR3V265evZq5c+eip6eHt7c3hoaG+Pn54e/vj4VF3pv9tLQ03n33XYKCgnBycqJDhw4kJiYSGBhIQEAAISEhjB07ttjnJTExkREjRnDhwgUsLS1p06YNCQkJHDt2jKNHj/Ldd9/RrVs3AKKjoxk2bBg3btzAysqK9u3bk5qaSkBAAKdOneLYsWP5JrEqjqtXrzJgwADMzMzw8PDg4cOHBAUFMXr0aL7//nu6deuGiYkJffr04eTJk0RERNCmTRtsbGwwMTEp8f7LQu4NZGaq5lYGmanp+bYta1VdHLBtVFv9byMLU5w7tyAs8BpZ6aX3nVPRGOSc3/QnzvmTnlxuYFj4e1Ha8br69sW7j2p80k3z/ySzGC1TKjPDnPOZlqq5ZUPaE+fT0OjpyTORn37O+c0o4Hp9crm+oX6ZxLO0t8HEwgyAqJCHbJv7B7dPXUPPQI/GPp68MmMojV5yY/CCUfw6elGB+24/XDUZxOl/jhH/HE1oklsHZJVjfWFgagyAm28PDMxNOD53PZfXHyYjKRWnLi3oNHsETp1b0HH2CPZP+rlMylCeDAr5Hkov4vdQacRTKBT0erMXAJt+2lToPv/Loa4DUxZNAeDCyQuc2H2iyDHKQ5HqWC0+D8WNZ+toy9CPhhH1IIpf5/xSeME16D2iDwBHth4i+mF0IVsLoR1ddZ2h+Zp+crluCeoMXWND2q+aiIGlKalR8VxeXPCkyub1HbBq/Pgew8DCFPsubkT4X0P5HN9jiOeLVsnRPXv2sH79ehwdHVm9erU6wffgwQMGDhzImjVr6NOnD1u2bCEsLIwRI0Ywbdo0dHR0AFUyxtfXlzNnzrBlyxZGjRpV4n01b968pMcOwO+//86lS5fo1q0b33zzDXp6qlOSnp7O5MmT2b17N+vXr6dp06Z4enri6enJzp07ycrKYuHCheo40dHRTJw4kYyMDJYsWYKPjw+gSiAuW7aMRYsWMWXKFNatWwdAUlISn376KVlZWSxevJiuXVXj18THx6sTY6Xl1q1bTJs2jZEjVd06MjMzGTt2LAcOHOD3339n1qxZgGoW8MmTJ5OZmcn8+fN55ZVX1DE2btzIJ598wsSJE/n333+pWrUqp0+fZs+ePXh7e/PLL7+oz114eDj/+9//2Lx5M6NHj6ZmzZosXLiQGTNmEBISwoABA+jXT7uZU4srPT2db775BktLS7Zv3061atXUy0eOHMmpU6fYsWMH/fr1Y9SoUdjb2xMUFISnp6c6oVuY/fv388UXXzB48GB1bF9fX06ePMm6deuYPHkyoGpNvGDBAszNzVm1ahVNm6rGzXvw4AEjRozg9u28k7Ps2rWLoKAg+vbty/z589Wfo8uXLzNw4EBWrFiBr68vRkZGxTo3ixYt4sKFC3Ts2JFvv/0WU1NTAI4fP46vry+ffPIJL730EgYGBnz22WfcuHEDHx8f5s+fr05E3r17l7fffptNmzbRrFkz9TkoruPHj9OvXz+++OILDA0N1eVcunQpK1eupFu3blhbW7Nw4UJGjBhBREQE77//Pi1btizRfstSdpYSnjJ2pI7i8bpn9WTu1uHzfNvEF4W+HnU7NqPLp0PweqcHVnXt2DhyYeEBKillllI9RpImCoWO+r+ztRh8vDTjdR7egwEzhgFwYtNhjm04UOj+nzfKLOVTx8LTefJ8voBPsUtKdb1q911UVvGyldkc+GkbJpZmbP5ytbqrfXpKGoEbD/PwRhgfbvqKFr1acWiFs3rc0ieZ2ZjTvKdqcolDy/P3XKjMilJfaJosozTo5iSyjW3MOTZnHWeWPj7HwTsCSItL4tU/p9Pw9XacWbqdmOB7ZVKO8lLa30OlEa+lT0uqO1Yn6mFUkVt9OtR14Ot1X2NhY0H0w2jmj51fpNeXp6Kdu7KLN3reWIxNjflm3EKSE4o+CZOFjQVteqkefG75WVqNitJTWJ3Bk/cYxZxUR8/EkA6/TqaqhzPKzCxOjPmR1MiCJy6+f/A8G13fQaGvh12nZrh9OZQG7/agSt0aHBn2/N5jlIcXcaKkZ0WrX8R//vknAJ988kmelo81atRg9OjR1K9fn9u3b6tblo0dO1ad0AEwMzOjd29Vc+z79zWPKVbUfZUWIyMjOnbsyKRJk9TJPQADAwN1Aq+wMoMqeRgXF8fQoUPViVEAHR0dRo0aRZMmTQgKClInPfft20dkZCQ9e/ZUJ0YBzM3NmT17dmkdHgDNmzdXJ0YB9PT0GD58OADXrj2eUOSvv/4iJSWF/v3750mMArz++uu89tprJCQksH69asbTR49UY/RUq1Ytz7lzcHBgzpw5zJ8/X514e9YSEhJISUnB2NgYS0tL9XIDAwNmzJjBV199VeIEu7u7e56koIGBAQMGDAAgOPjxjd2ff/5JZmYmo0ePVidGQXVN5yamnxQREaFe/+TnqFGjRsyZM4c5c+YUe1Ki9PR0/v77bwwMDPj666/zvD9t2rThlVdeoXbt2ty6dYuwsDD27t2LpaUl8+bNy9NCs3bt2syZMweAlStXFqssTzI0NGTGjBnqxCioJsMC1TAPlVFGiurmX7eAlli6Bo8/M5kFPPktbclR8aQlpJASncClzcf4a/gClJlZOHduQe02jZ5JGcpDWs57oV9AK049g8fvUUEtS8oiXp8P+/PGl28DcG7/aVZPXVrovp9HuWOIFtTK1uCJ85n2jD4rz5P0FNX51Svwen38XVRQa9CSxot7EM22uWtZP/UnjWOahpy7yfVjquEkGnfx0Bi38cse6BnoEX75TqnMeF+R5I4hWp71RW7c9MQUzmoYhzr06CUenr2JjkKBUxe3MilDeUot5HtIv4j1RGnEa9ezHQB+2/zIyswqdJ+56jevz8K/F1LVripx0XHMGDqDyAeRhb+wgsitYw0K+DzkPXeFj79bnHg+g7vRor0bR7f7EbC3eMOAefu0RN9An1uXbhFy/W6xYgihSVYR6oyslKL3RjK0rsJLf31M9baNUGYp8Z/wMw8OP33Ip7SoeDISUkiLTuDOpmMcHjIfZWYWDi+7Ub3t83uPIZ4vhbYczc7OJjAwEH19fdq1a5dv/YABA9QJIU2io6O5du2aeizDjIyCP6Al3VdxDB06lKFDh+ZZFh8fz/Xr1zly5AigSigVJnf8zIJasrVr146LFy8SGBiIm5sbgYGBALRv3z7ftvXq1cPJyYk7d+4U5VAK5OaW/0ds7tAG8fGPnwDllqlHjx4a4/Ts2ZNNmzapt3Nzc0NfX58dO3aQlJRE165dad++Pba2tvnGYn3WbGxsqFu3Lrdu3aJ///706dOHjh074uzsTKNGjWjUqORf0pqSq7lDBSQnP37CnDtG5pNJ81yenp5Uq1ZNnRAF8PLyAlRJx/DwcLp06ULbtm2xtLSkT58+JSrzhQsXSE5OxtvbW+NEU7kJz/9n777DoyrWAA7/sum9kB4IJQ1IaKFJkd4FlKoUL9gQFRRERBSsqAgoShEpglgpSpXeO4j0DgkJpJNCei/3j03WhOySTV/C996H5/Ge8p3ZmbN7NrMz34AyXytAp06d1HZyt2nTBgcHB0JCQoiMjMTZ2bnM5fL09MTCwqLINnt7e/T09EhLSytz3OqUdj8ZE2tzTG3U/0Bgavvf602NfXhy88oSeSmI4GNXaNC5KXXaNuTO8avVUo7KlnI/CXNrC8xtLNTuNy/UFsmxmn8Vr6h4egoFz38+jk4jegBwducplk6cT05WzZx25OXryeRZ6lOBzJ+xkMT7iVjZWGJloz53nJXtf6lH4mPjK6WMNVnK/WTMrC0w03i//pePTLv7v2LjFQi7eoeGnZph66Y+5Y5vD2Wn6fm/NS9s9qhKj0/GxMYcEw3PC5NCnylplfS8yEhUfm+5HxhBbpb6jrjYm2E4NffAyt2hUspQmTx8PXjtU/Uz15Z8uISk+CQsbSyxtFGfn8/K9r/Pp4TYhBKvV954CoWCVl1bAXD478MlXq9A666tef+H9zExMyHuXhwfjPqA4OvBWp9fFer7NmDcp6+q3bfsw6Uk3U/EwtoCCw11Z1noMyZBi8+Y0sazc1cbQ+oAACAASURBVKrF2PdfICk+iWUfLi0xviate7QB4NjfR8ocQwh1Mu4nYWRjjpGG57BRoXs6I0775zCAubsDXf94D8v6zuRmZXPyrR+4s6n0KTniLgYRdfQKLl2a4tCuEVHHaubfGNWhrKOBRclK7By9f/8+WVlZuLi4YGhYci6qu3fv8uuvv3L27FmCgoJITlYmBC4YAfewqSilvVZFuXfvHr/99hunTp0iKCiI+HjlH1+FR+2VpGB06cNSBhQ+rmDUpZOTk9rjateuXWGdo5aWxb8MFEwvKTwCsaBMbm5uGssEEBOj/PXZxcWFL7/8kg8//JCDBw9y8OBBABo1akSfPn147rnniozarGrz58/njTfe4Nq1a1y7do05c+bg6upK9+7dGTlyJA0aNChX/IfVa+H7PDxcOfVMU65dNze3Ip2jzZs3Z9q0aXzzzTds27aNbdu2oVAoaNasGf369WPYsGGYmpqWqcwF1ykp7y+UfD+A8p6Ijo4mOjq6XJ2j6upST08PhUKhWgDtURMbGI5tPSesa6v/I9I6vwMgKep+pY0EUhjqY1PHkdzsHOLvql9Z+n5wJHRuirm9dgvdPIoiAsNxrOeCvYa2qOWm3B4fFafViKDyxDMwMmDcwsn491b+kHZk7T5+nr6UvDKOBn8UWFiZ06xNE4377gTepXZ9N5zrqP8Mca6tfE7GRMZozN8nNLsXGI5DPWfsNNyvBZ2RCVFxWo0cLU88fSMDjfmNC75xqfuRQN/IAO8OfgCc3/Zo5E0sjfsB4djUc8Kyjvo6taytrNPkSnxexN8ueZZUweeUps5TXWZmaYZvG1+N+0ICQnCt54pTHfXfyx1rOwIQGxWr1edQeeM1atUIK1srosOjuXbmWonXA+j6TFfe/uZtDAwNiLgTwQejPiDiTsntWtXMLc1p3Fp9W5hbmhMaGIpLPVdVHT3IwU25PS4qVquRo6WN17x/RyzycyT/fPZXjXE/X6fMuf/H/N9ZM//3IvsMjAxo1rE5AEf/PlpiGYUojcSACCzrO2NeR/2Pieb5z4zUyPvkpGn/zLBpVIcuv0/D1MmW7NR0jo5bQMR+9Qs4Kwz1MXd3JC87h+Q76v/GSAqKxKVLU0xq8N8YomYpsXO0NB0TW7duZdq0aeTk5KgWkvHw8KBJkyZERkby4YcfVti1SqLttOOTJ08yfvx40tLScHV1pU2bNjRo0AA/Pz8MDAwYP368VnEKyt69e/eHLhBTsPhRSR2vD8uNU1oKLfOJlZRDqaBOjYz+myI0YMAAOnXqxN69ezl06BCnTp1SdUb+8ssvrFmzpkh6hKrUsGFDdu7cyZEjRzhw4AAnTpwgJCREVa5vv/2WHj16lDm+tp3nBYtraapfddtffPFFBgwYwO7duzly5Aj//POPKi3D77//zpo1a8rU8VzRHY0F8QrfE5o87D1Zmh8iHhWRF4Pw7N4C1xaenPt1X7H9ri08AYg4p/2K2qXVcdIQ2k8YSMC+c/z54tdqj7F0Uo4gTo6qOYubPOjOpUCadW9JgxbeHPx1d7H9Hi28Abh9XrsUDmWNp6dQ8PK3b6k6Rncs2chfX/1WqtfyKDp34gId3DTPJmjRrjkderTDz78Rm34unuzf178RAFfOXa+0MtZkIZdu49vdn3otPDn+655i++u18ALgzvnieT4rKl7/aSPo8vJT3DpxhaX/U7+In1vjegBEBYQV39eoLsZmJsRHxBJzJ0qrcj5K7l0Mon6PFji38OTyL8WfF875z4uoSnxeRJ1XxrbzckXfxFDt4lA29ZU/YCRq+LFNl106eYm+ddTPjAJo2q4pbXu0pWGLhmz7ZVux/Q1bKL+/3zh3o9g+dW5dvFWueI3yP/cunXz4VNYC7fu0Z8r8Kegb6BN4JZCZz8/kfrRuPtcvn7zE0+79Ne73a9eE1t3b4OPfkJ2/Fk/x4OOvrLub525qdb2AiwGlihcfE8/V01c0xvNu7oOBoQHB14NJTUohOiy62DH1GzXAxMyEmIgYInWwg1o82uIu3satZwvs/T0J+Ln4M8O+pfKZEasmf7cmFvWd6LpmOiYO1mTcT+bQ/+YSe0bz+X5ThuD75tOE7TnH4THqc4qaOtsCkFaD/8aoDrmSf7/SlNg5am1tjaGhITExMWRnZxfJLQnK0Z67du3C09OTjz76CIVCwZIlS+jcuXOR43755ZcSC6PttXx8fGjRooWqQ0Vdh0/h6eKa5OXlMWPGDNLS0pg1axbDhg0rsn//fu0XxnB0dCQ4OJgXX3yRVq1alXh8wYjRglGFDyo8krCqODo6EhQURGhoKO7u7sX2h4SEAMop64VZW1szZMgQhgwZQl5eHufPn2f27NmcP3+e5cuX8+mnn1ZJ+dUxNDSkW7duqmn+d+7c4YcffmDDhg3MmzevXJ2j2nJ2dubu3buEh4er7SjWlNPWwcGBUaNGMWrUKLKzszl16hSffvopQUFBrFu3jnHjxpW6LAXT/iMjI9Xuv3btGtevX8ff3x9HR+Uv6aGhmnO7FewriFve92RNcmPnaTpOHoxXr5aYWJuTnpCi2qen0KPJsE4AXNl0rNLKcPfEVdpPGEj9J5tg5VaLxLDYIvtt3B1p0KUpAAH7z1daOarb2Z2nGDhpOM17tsbc2oKUhGTVPj2FgvZDuwBwcqN2UxfLGm/gpOG06tcOgA1zfmf796VffbgmOrTjCC9NGcOTvTtgaWNJUvx/04YVCgX9hvcGYPeG4h1xomQXd/5Dn0lD8evZGjPrn0l94LOo9VDl97UzG7Ub3VSWeGFXg9E3NMCjbSNs3ey5H1Y0/6FrI3e8OviRm5PLxR3/FLumm289AEIvV1zOeV0SuOM0bd8eTIPeLTG2MScjvmidNsp/XtzYUHnPi5CjV0iLTcS0lhV+I7txYeWuIvvtG7nj2tqbvNxcbu/6t9LKUV2O7TjG6LdH0653OyxsLEiO/+9zXaFQ0HOYMjXS/g3a/W1Q3ngefh4ABFwuuXPD3duddxe+i76BPtfPXWfG6BmkJKaUeJ6uOrHjOCMmj6RtryewsLYgOaFo3XUf1h2Agxu1W6SqtPHOHjzD2YNnNMb75fxvWNlZs/zDpVzW0HndwE85O+325cr7QUM8vkK3n6bJlCG49WmFkc2vZD7wzKg/XPnMCP5Lu2eGvqkRnVe/g4mDNemxiRwY/gXx10Iees6941fxffNpnDs3wczNntQHnusWdR1x7apMQRe+t+IWmhaiMpU4pNDIyAg/Pz+ysrJUuRMLO3jwIB999BE//PADKSkp+Pr6FusYBTh2TPnmfNjoMW2vtWWLcmRJQR7EgmnehV24oH4IeGFxcXGEhITg4OBQrGP0YWVWN8qtoEO0IE/pg6ZPn86QIUPYt0/56067dso/kPfu3Vvs2MjIyCILJVWVglyXO3fuVLt/xw7lr61t2ihz6KxevZquXbuyefNm1TF6enq0aNFClV6gcMdfVY4O/Pfff+nbt2+x0cp169Zl5syZVVq2gjy0BWkHCrty5Ypq+nqBuXPn0rFjR1WeXlAuotWhQwf+9z/lqtaaOtVL4uvri5GRERcuXFDbWfnzzz/z3nvvcfXqVVq2bImenh5HjhwhJaX4l+yTJ08SFxeHh4eHqsO8vO9JbTwqo0yjr4cQsO8cJlZmDPrhTUzy8wLpGxvS96tXsPdyIzYgnBs7i/6RaWprgZ2HCzbu6qd/lUbw0cuEnw9E38iAQT+8hU3d/6b3OfjUZtiqdzAwMeLqlhNEXQ4u9/V0Vej1O1zYdwYzK3PGL5miyhVqYGzI2K/G4+pVh4jAMM7tKtopY2FribOHKw7uTuWO5+LhRr/XBwFwZM1e6RgtJPDabY7tPYGFlQWfL/tYlYvPyNiQ9+a9Q33vetwJuMuhHUU776xtrXD3qINbXdfqKPYjI+L6Xa7sO4uplRljl0xW5Qo1MDbk2a9exdmrNlGBYVzadbrIeea2ljh6uFLrgfu/LPEu7jpNdHAkhsZGjP1+cpEp+XWaNuCl5VNR6Cs49useYkOKj0p0bVQXgMhbNWshpgKx10MI2nsOYysz+j7wvOg29xXsvN24HxBO4APPCxNbC2w9XLCqW/7nRV5OLifn/QlA++nP4v1MO9U+S7da9Pz2VfQUCm5sOEbSAz+01QTB14M5tfcU5lbmfPDDB6pcoYbGhrw19y3cvd0JCQjh+M7jRc6zsrWitkdtXOq6VEi8Ag0aKTvX7mixkM+bs9/E2MSY2KhYPn7h40e6YxTgzvVgTu/7B3Mrc6b9ML1I3U2YM5E6Xu6EBoRwcmfRvxUtba1w86iNc13nColXHvUa1Qfg7s27FRZTiALx10II23MOIyszOi57C6P8vNQKY0PafP0K1t5uJAaEE7qj6DPDyM4CS08XLB54Zvi++TRWnq7k5uRybNyCEjtGASIPXyb2nPJvjI4r3sKi3n/fFawb1qHzL1PRNzHizuYT3L8UXP4XLVTyqvDf46bEkaOgXDX63LlzfP7556xevVo16jEyMpIFCxaoVmQ/cuQIN2/eJCQkRDVCLicnh2XLlnHggPLXuIyMh+eG0eZaBYvSeHsrpy5u2LCBkSNHqhZ02bt3r8YOvsJsbGwwMTEhJiaGCxcuqBbYycvLY8OGDfzxxx9qy2xkZER2djZJSUmqXInPPvssq1atYuXKlTRp0qTI4jsbNmxg48aNGBoaqq7RrVs36tSpw/79+1m/fr2qczY1NZX333+/WvIsDh8+nJUrV7J+/XpatWrFwIEDVfv++usvNm/ejKWlpWq7u7s74eHhLFmyhI4dO6o6yHJyclQdqYVXZy9YiTwpqfIXn/Hy8iIkJITw8HAGDx5M8+bNVfu2bdtWpWUbPXo0f/31F4sWLaJ169aq1ApxcXGqjtrCXFxciI6O5ttvv2Xp0qWqDsfMzEx2795drOylYWFhwTPPPMO6deuYMWMGc+fOVb32EydOsGXLFmxsbFSLMHXv3p29e/cybdo05syZo0oZERISwowZM4D/VpWH8r8ntVGV91F57Xp/FQ5/1qZue19eP/EtsQHh2Lg7YmpjQXpCChte/RYemBrRckwvOk4eTEJINEs6Ti53GTa9voARf7yPS9MGjNs/h9jbEejp6VHLwwU9hYLgY1fYMW1Fua+j6379YCluPrNo1L4Jc47/QERAGA7ujpjbWJKamML34+YUS3HRbUxfBk4aTkzoPd7r+Hq54nV/8Sn0DZTpUtx96zNt/Wcay3p03QGOrdd+5kJNMPe9+TTYWJ+WHVqw4Z8/uHPrLq7uLljZWpGUkMz0lz4s1j5DXhjES1PGEBESydAnRlZTyR8N6z9YgYvPJ3i19+PD44u4FxCGnbsT5jYWpCWmsHLc18Xqt+OY3vSZNJS40Gg+6zixXPFyMrP56bVvGP/LB7g38+D9A/OJDopAT1+Bk4cyr/WVvWfYPOtnteW3clSmkUlLeLQ7fR7mwPRV1PKpTZ0Ovow99S1xAeFYuztiYmNBRkIK214p/rxoOrYXbd8eTGJINKvbl/95cfnX/dh5udHsxd70XvgG7ac/R1psErUa1kbf0ICo84Ec/rjkmWCPqkXTF1HPpx7NOzTn51M/czfgLi7uLljaWJKckMxnr3xW7H0yYOwARr89mqiQKMa2H1vueAVsHZXTUQuPclSnYYuG+Obn78zLzWPmsuLfKwvE3Yvji9e+0LhflyyZvhj3v+rStEMzVpxcRWhACE7uzqq6+3Lc58Xq7qmx/RkxeSRRIVGM6/BSueOVh51jfsqiEtpPiLI6/d5KrBt+iFNHX54+/R0Jt8KxcHfE2NaCzIQUjrw4v9gzw/uFXjSZMoTkkGi2tp0EgMLIAK+xyn6LnLQMmk4rPmCssKOvfEd6tHIRuaPjFtBt/fvUataApw7PJSkwAvT0sPJU/o0ReeQy/0xZXgmvXojKoVXn6IABAzh+/DgbNmygT58+tGnThpycHM6cOUNqairjx4+nZcuW9OvXj+3btzNgwADatGmDgYEBFy9eJDo6Gk9PTwICAtSOKCvttfz9/QHl6umLFy8mKCiI3r174+/vT3h4OJcvX+bpp58uMqJRHX19fZ5//nmWL1/OqFGjaNOmDWZmZly7do3Q0FA8PDy4fft2sTLXq1ePq1evMnr0aDw9Pfn6669xdnbmyy+/ZOrUqUyYMAFvb2/q1avHnTt3uHHjBgqFgjlz5qimHxsbGzNnzhxeeeUVZsyYwZo1a3Bzc+PMmTNkZmZSv359goKqdvqYk5MTX331FW+//TZTp05l5cqV1K1bl+DgYK5fv46ZmRlz585VdVh36dKFXr16sXv3bnr06IG/vz+mpqaq+mvQoAFjxoxRxa9bVznyY/HixZw5c4YxY8bQsmXLSnkt1tbWvPvuu3z++eeMGDGC5s2b4+DgQGhoKFeuXMHMzIxp06YVK9v+/fsZP348Xbt25dlnn62QsjRs2JCJEyfy3XffMXToUNq0aYOpqSmnTp3CxMQEU1NTVV5SUHZSb926ldOnT9OtWzeaNWuGvr4+ly5dIjo6mlatWpVr1fp3332XixcvsmvXLs6ePYu/vz+xsbGcOXMGhULBvHnzVB2yn376KcHBwezZs4du3brRqlUr0tLS+Oeff8jMzGTQoEGMHPlfp0R535PaKGirTz75hC1btjBlyhTVNl2TFBnHqv4z6fjWILx6+uPY0J30xBSubD7O0W/+4n5w5efOSwyL5af+M2kzrh8+fVtj6+5ITlYOoWducfnPI1xcd4i83Jr/2+D9yDg+6/8uA94aRvOerand0J3UxFRObT7C5vlruResPtVERcXzatVQ9d91m3g8NPa1Y9rlmKtJoiNieLHveF6Y9DxP9u6AR6MGJCcms3vjPn78+idCg4rnoRTaS4iM4+v+0+n91hD8erbCpWFd0hJTOLP5GDvnryemlPd/WeKFX7vL3L7v0u3Vgfh298e+rjNZGZnc/uc6p9Yf4J/1hzRezzx/pFdaUmrpXvgjJCUyjrX9ZtJ60iAa9PLHvqE7GYkp3Nh0nFNf/0VCFTwvAA5/9At3D1+i6Qu9cGrWABMbc+4HRnBjwzEurNqlNhdpTRETGcPEfhMZOWkk7Xq1o37D+qQkpnBg0wF+/fpXwoNLN2unrPEUCgXmVsrvYSWNAi28yJS9iz32LuoXaAGICnl08vXGRsYy5alJPDtpBG16tqVuw3qkJKZwaNNB/vjmdyJK2RYVHa8klvmrhacm1dwfdET1SouIY1efGfhNHoRb75bYNHInKzGF4I3HuTTvT5KDtHu/2zSsg5G18vPG0MIUhzY+Dz1e3/i/RbNTw2LY1WcGDcc/RZ2nWmNR15HcrBxi/r1F0Loj3F5z8LH4G6Oq5T6WYzqrhl6elj+T5eXlsWnTJtauXcuNGzfIycnB29ub0aNH88wzzwCQlpbGihUr2LZtG2FhYRgaGtKgQQMGDRrEsGHD6NixIykpKRw5cgQ7OzsWLlzIokWLeOutt3j99ddLda0C4eHhfPfddxw+fJiUlBQ8PT154YUXaNy4Mf369WPQoEHMnj0bUI5mmz59OkOHDuXzzz8HlIvl/Pbbb/z555+qnJru7u707duXF154geHDh3Pjxg02b96sGvF38eJFPvzwQwICArC0tGTHjh2qxXGuXbvGihUrOHXqFPHx8Tg4ONCkSRPGjRuHn59fsXoNDAxk0aJFnDp1irS0NNVK5bNnz+bEiRPs27dPtUp8aWmqX1DmiuzevTvu7u7s2VM0j9v169dZvnw5J0+eJCEhAUdHR9q3b89LL71E/fr1ixybmZnJqlWr2LZtG3fu3CEvLw9XV1d69erFK6+8UmQV8vT0dGbOnMm+ffvIy8tj2rRpPPfcc6V+Xe+99x4bN25kzpw5PP300xq3gXKU6Jo1a7h27Rrp6enY2dnRvn17XnvttWIdasuWLePnn38mISGBfv368dVXX6mtw4fV67///qvqaH8wz+62bdtYvXo1N2/exMDAgI4dO/LOO+8wePBgFAoFJ0+eVB2blJTE0qVL2bt3L2FhYejr61O3bl2eeuopxo4dq9UCSA+TkpKiarfQ0FCMjIzw9/fntddeU/34UCA5OZmffvqJHTt2EBISgqmpKY0aNeK5556jT58+xWKX5j156tQp/ve//9GuXTt++umnYrEaN25MTk5OkTQTcXFxTJ8+nVOnTqGvr88333yjNpXHg2bXHV3KWhKVJUAvvbqLIPJdy4qr7iKIfG0Myz81WlScBjlajR8QVWA7NW8a/6PKSK/iFowV5fPn2QXVXQSR78+mmkdsi6o3IrxmL3b6sEVOK9qxsMdrJpvWnaNCiLK5c+cOCoUCV1dX9PWLfqmMj4/niSeeoGnTpqxbt66aSvh4kM5R3SGdo7pDOkd1h3SO6hbpHNUd0jmqO6RzVHdI56jukM5R3VLTO0fbuXWtsmudCNNu4buaosQFmYQQ5bN+/Xp69OjB/Pnzi2zPzs5m9uzZ5OXl0aNHj2oqnRBCCCGEEEIIIcTjS34WfwSsXbuW06dPl3xgIa+99hoeHg/Pa1fdaurretDw4cNZu3Yty5cvZ8+ePXh7e5OVlcXly5dVOUTHjh1b6rhffPEFcXGlG/U1b968Ul9HCCGEEEIIIYQQ1Usmflce6Rx9BJw7d46tW7eW6pxhw4bpfCdiTX1dD3J3d2fjxo389NNPHD16lKNHj6pyiL788suMHj0aA4PSvxUL8pGWhnSOCiGEEEIIIYQQQvxHco4KIR4LknNUd0jOUd0hOUd1h+Qc1S2Sc1R3SM5R3SE5R3WH5BzVHZJzVLfU9JyjT7h2qbJrnQw/WGXX0gXyzU8IIYQQQgghhBBCCB2Wi4xtrCyyIJMQQgghhBBCCCGEEOKxJCNHhRBCCCGEEEIIIYTQYXkycrTSyMhRIYQQQgghhBBCCCHEY0lGjgohhBBCCCGEEEIIocNkPfXKIyNHhRBCCCGEEEIIIYQQjyUZOSqEEEIIIYQQQgghhA6T1eorj4wcFUIIIYQQQgghhBBCPJZk5KgQQgghhBBCCCGEEDpMco5WHhk5KoQQQgghhBBCCCGEeCzJyFEhhBBCCCGEEEIIIXSY5BytPDJyVAghhBBCCCGEEEII8ViSkaNCCCGEEEIIIYQQQuiwPBk5Wmlk5KgQQgghhBBCCCGEEOKxJCNHhRBCCCGEEEIIIYTQYbmyWn2lkZGjQgghhBBCCCGEEEKIx5J0jgohhBBCCCGEEEIIIR5LMq1eCPFYSNLLre4iiHypeTnVXQSRr5Ohc3UXQeTLlQT7Qqg1gFrVXQSRL0c+pnTGn01nVncRRL6hFz+r7iKIx4gsyFR5ZOSoEEIIIYQQQgghhBDisSQjR4UQQgghhBBCCCGE0GGyIFPlkc5RIYQQQgghhBBCCCFEldm+fTurV68mICAAfX19WrRowRtvvEHTpk1LFWfLli2sXbuW69evk5GRgaurK927d2f8+PFYW1trFUOm1QshhBBCCCGEEEIIocPyqvB/lW3hwoVMnjyZW7du0bZtW7y9vTl06BAjRozg0KFDWsf58MMPmTp1KhcvXqRhw4Z07NiRlJQUVq5cydChQ4mJidEqjowcFUIIIYQQQgghhBBCVLrLly+zaNEi3Nzc+OOPP3BycgLg4MGDvPHGG7z//vvs3bsXU1PTh8Y5cuQIa9euxcnJiVWrVuHh4QFAamoqU6dOZe/evXzxxRd88803JZZJRo4KIYQQQgghhBBCCKHDcvPyquxfZVq1ahUAEydOVHWMAnTp0oXBgwcTExPD9u3bS4yzceNGAN566y1VxyiAmZkZn3/+OQqFgj179pCZmVliLOkcFUIIIYQQQgghhBBCVLojR46gp6dHt27diu3r0aMHAIcPHy4xjrm5OV5eXrRo0aLYPhsbG2xtbcnMzCQ+Pr7EWDKtXgghhBBCCCGEEEIIHVYVuUAr271790hISMDZ2VntYkkNGjQA4ObNmyXG+uyzzzTuCw8PJzY2FmNjY2xtbUuMJSNHhRBCCCGEEEIIIYQQlSo6OhoABwcHtfsLtsfGxpbrOt9++y0AXbt2xdDQsMTjZeSoEEIIIYQQQgghhBA6rLJzgRaWmJhIYmJise1WVlZYWVkV2TZlyhSuXLlSYsyePXvSuXNnAI2LLRkbGwPKRZXKas2aNWzevBlTU1PefPNNrc6RzlEhhBBCCCGEEEIIIQQAq1evZtGiRcW2T5gwgYkTJxbZFh4eTlBQUIkxo6OjUSi0m8Cem5urXUEfsG7dOj755BP09PT4/PPPiyzU9DDSOSqEEEIIIYQQQgghhA6rypyjY8aMYdCgQcW2PzhqFOCPP/7QOu7169cByMjIULu/YLuZmZnWMQssWrSIhQsXolAo+Oyzz3jqqae0Plc6R4UQQgghhBBCCCGEEID66fMVwdHREYCYmBi1+0vKSapOdnY2M2fOZMOGDRgZGTFnzhz69u1bqnJJ56gQQgghhBBCCCGEEDosL69sU811iZ2dHbVq1SIyMpLk5GQsLCyK7A8MDATA29tbq3iZmZm88cYbHD58GCsrKxYvXkybNm1KXS5ZrV4IIYQQQgghhBBCCFHpnnzySXJycjhw4ECxfXv37gVQLdxUkilTpnD48GEcHR357bffytQxCtI5KoQQQgghhBBCCCGEqAIjRoxAT0+PefPmERISotp+8OBBNm7ciIODA/379y9yTmBgIIGBgaSlpam2/fHHH+zevRsLCwt+/vlnrUebqiPT6oUQQgghhBBCCCGE0GG5VbggU2Vq3rw5L730EitWrGDAgAE88cQTpKSkcPr0aQwMDJg3bx5GRkZFzunXrx8AP//8M23btiU7O5vvv/8eUOYnXbx4scbrvf/++9jZ2T20TNI5KoQQQgghhBBCCCGEqBJTp07F09OTX375hRMnTmBubk6XLl2YOHEivr6+JZ5/48YNviDtLQAAIABJREFU7t27B0BQUBBBQUEaj500aZJ0jgohRHUysTKn26TBNO7VCktHW1LjErl56AIHFmwkPkz9Cn0VHc/Q1Jgnxz1Fk/5PYFvHkZS4JELOBXDkhy2EXdL8EKkpzK3MGTzpWVr1boutoy2JcYlcOHSOjd+tIyYsulri9RrTl7GfjmPuC59zbv+/Dz1WT0+PTzbOxqmuM6+2GFPq8lYXEytzehS6V1Py79X95bj3SxtPT6HHE6N74j+0E46ergBE347g3IYjnFi9m9wc9UntmzzVlif+1wvXxnVR6CuICY7kwpYTHFu5g5zM7FKXvbqZWpnTY9IQfB+ou70LNpSpLcoSr6AtWg3tXKQtzm44wvHVuzS2hdeTTWg/pjfuzT0xsTInLSGZO2ducnjZ39w5e6vUZddlxtZmtJk0mAZ9WmHuaENaXCJ3Dl7k9LcbSQqLLV9wPT2Gbf4I67pOrGj22kMPdWhSj5av9ce1TUNMbC1IjUkgeN95/vl2I6n34stXjkeIsbUZrfLbwyy/PULy2yO5AtpjyOaPsKrrxCo17dF68mBavz1Yq1DX1x9m/9vLylceHSfvDd1haG1Gk7cHU7tva0wcbciITSTi4EUuf7OR1DI8Tyw9XWj8en8cO/hi6mhDTnom8VfvEvj7QYL/Oqq+DJamNJ4wkNr9WmNe256spFRiz93m5spdRB66VM5X+PjKzc1l1KtvExIWwdHta6u7OEKDvLyaMXK0wKBBgxg0aJBWx964caPI//f19S22rTz08mpa7QohhBof1BtZ5dc0sTLn1Q0f4+jpRnpSKrFBkdi6O2JmY0FaQgrLn/2UqOshJQcqRzzzWla8+Ov7ODdyB+DerVAAHL1qk5uTy98f/cSpX/dW3IvWQlBeWskHVRBzK3M+3jgbN8/apCalEhkUjqO7ExY2lqQkJPPp8BmEXL9TpfHq+TVg5tpZmFqYatU5+uzUUTw9YShJcYkV3jlaV8+0QuMVMLEy57VC92pMUCR2he7VZc9+SmQp7/3SxlPoKxi99G0a9fAHIPZOFLnZOdSq74xCoeDm4YusfnEuudk5Rc7r895zdB4/EID4sBjSk1Kxr++CgbEhEdfusOzZz0hPTC1nDRVXWdOkTK3MeX3DJ2rrLjUhmaXPfkbk9buVGk+hr+D5pW/TuEdLQF1bXGCVmrboNWU43ScqvzCnJiRzPzSGWnUcMbEyIzcnl80freJkJX1+1c7Rr5S4mhhbmzF040fYebmRmZTG/aAIrN0dMbGxID0+hQ3DZhFbivfMg9pNG06rCQNJi0t6aAdQ42c703X2iygM9EmJiictLhFbD1f0jQxIiYrnz8GfkHi39D8qlUfVtoSSsbUZgzd+hG1+e8QHRWBVqD02l7M92k4bTsv89lDXOdrw2U40Gq55IQoDU2McmtQD4NS8Pznz3aYyl6U0cko+pMLJe0M9+5yq/xPe0NqMnls+xtrLjaykNBJvR2Dh7oixrQWZ8SnsG/IZ8de0bwvXni3o8MObGJgakZ2WSdLtCEwcrDF1tAEgeMMxTkz4vmgZrMzo9fcnWHm6kpOZTVJgBIaWppjXtgfg8vyNXJr7Z8W9aC0MvfhZlV6vsnz7w0+s+GUtNtZWj3TnqKF9g+ouQqVyt2tSZde6G/d4/dggI0eFEKKSDJr9Mo6ebtzYf441ExeSmZKOgbEhA2e9SMthnXlu4UQW9J5GXq52X3DLEm/IvPE4N3In6d59fh33DaHnAwFw9/di9PIpDJz1IrF3ogg4UjMffi9/9TpunrU5t/9fFk74mvSUdAyNDXlx1qt0Ht6diYumMK3XJPJy1Y9aq+h4Hs28eGflB5haaNcpOWTSszw9YajWr1dXDM6/V6/vP8cfhe7Vp2e9SKv8e/W7Utz7ZYnXdnQPGvXwJz0plV/GfcPtE1cB5b0/5sd38O7UlE6v9ufg4s2qcxr18Kfz+IFkZWTyxxsLuLb3LADWLnaMXvo2tZs2YMBHY1g/ZUkF1lblGjL7FRw93bi2/xy/T1ygqrtBs16k1bAujFw4kfm939W6LcoS74nRPWncoyXpSamsHve1qi3q+nsx5sepeHdqRudXB3Bg8X8dPD5dmtF94iBysrLZ/PFqTv2m7ARV6Cvo+sYz9Hp7GAM/HsvdcwGEXwmuuAqrJt2+ehk7LzeC951n5xuLyEpJR9/YkC5fvEDj4Z3os3gCv/d8T+t2KqzN5MG0mjCwxOMcmtSj61cvoacHhz/+hQsrd0NeHuZONvT94U1cWnnTbfZLbBo5uywv8ZHS5auXsfVy486+8+wu1B6dvniBRsM70XPxBNaWsT1aTx5MyxLa4/raw1xfe1hz+ea8jEOTeoQdv8rZhZs1HlcTyHtDd7SZ+wrWXm6E7T3H8dcWkZ2SjsLYkNazX6DBs51pv2QiO7pp92w3sbei/aI3MDA1IuDX/Zz96Bdy0jIBcOvTknbfvUa9wR2IPRfIzR93qc5r+804rDxdiTkbwLFx35EaHqc8p3dLOix9E7/Jg7h3/CpRx65WTiXUQHl5eXy/8jdW/PLodog+TmpKzlFdJKvVC1FDyCBw3WLv4UrjPq3JSE5j/eTvyUxJByA7I4uN05Zx71Yojl61ady7daXFc/Wth0/X5gD88foCVccowN2zt9jxxW8A9Jv5fIW8Zl3j6uFG6z5PkJacxveTviM9v86yMrJYNu17Qm+FUNurDq37tK30eHoKBb3G9mPmullY21uXeC1rBxveXvYeQyY/V4pXrBscPFzxzb9X1z1wr26YtoyoW6E4edXGV8t7v6zxWgx6EoCD329WdcaB8t7f841yVEnLIZ2KnNN2dA8ADn2/RdUxCpAQEcemD34EoOmAdhiaFE0Qr6sK193ayYuL1N2fherOrwxtUZp4/oM6AnDggba4c/YWe75ZDxRviydfegqA4z/vVnWMAuTm5LJvwQYubjuJvoE+Hcb2Lk2V6CRbDxc8+rYiMzmN3ZOWkJVfrzkZWeyfupy4m2HYebvRoE+rUsU1c7DmqRWTaKvl9OyOM0ai0Fdw5vu/ufDjLsj/XpESFc/ut5aQl5tLnSf9sHSrVboX+Iix8XChQX577H2gPQ4Wao/6pWwPUwdr+qyYpPV0eU3q9fKn8YguZCSksG/SD2XqFHxUyHtDd1h6ulCnXyuyktM4+eYSsvPbIjcji3+mLCfhZhjW3m7U7qvd86TByK4YWpoSdzGI09NWqjpGAcJ2nuHCl8qOOp9X+qi2mzja4Na7Jbk5uRx/bZGqYxQgbNcZAn/br4w9okt5X+5jIyY2jremf8aSlb9Vd1GEqHbSOSoeW6dOncLHx4exY8eqtm3YsAEfHx8++OCDCo1bEh8fHxo3bqz6/6Ghofj4+NCzZ8+HbgMIDg7mpZdeIiwsrMxlLouEhAS+/PJLunXrhp+fHx07dmTKlCkEBARoPCcsLIz333+fTp064efnx5NPPsnMmTOJji4+DSkiIgIfHx+N/0aMGFGZL6/cmj/TAYVCwfV9Z0lLSCmyLy83jzPrlSNCmvRvV2nxPDs3BSDkfAB3/i2ej+X8hqOkJ6Xi5F0bF9+62r+4R0SHQZ1RKBSc3XealITkIvvycnM5vF75Jbpd/46VGs/Q2JDP/57H2E9ewcDIgL++XUt0yD2N12nyZDO+PrCYVr3bcv9eHH/M/kWr8umKgnv1Wgn3atNS3vuljWflbAugdvp+2GVlrl3rB/6QDbsYxI0D57mw9USxc6JuKlNSGBgZYOFgo1XZq1uLZzqiUCi4qqHu/l1/CNC+Lcoaz8pZmQD/YW1hU6gt9BR61GvtA8Cl7afUluXa/nMAuPrV16rsusxncAf0FAqC9p4jI754vV5dp7zHvQY8oXXMOp38eP7QPBr0bkVKVDzHv3z4iCBzZzvcnmhIZlIa/y7aUmx/4t1ojnzyG4dmri6W/qCm8c5vj2AN7XE9vz08S9keowq1x4kS2kMTfRNDOs0aC8DJOetJjoh7+AmPOHlv6I56gzuip1AQtuccmWra4vZa5ee/+0Dt2sKpfSMAQrafVnU2Fxa2R/kZb+HuiKG1GQBGVmbc/v0AwesPkxJS/G+HhOvK57SZa83tpK5Ix06d4annXmb/kRPY17Jl0vgXqrtIQgt5eXlV9u9xI9PqhXjEvfrqqwQHB1fpNZOTkxk5ciQBAQE4OzvTuXNnoqKi+Pvvv9m1axfLly+nXbuifxxfunSJF154gaSkJLy9vWnSpAmXL19m3bp1nDx5kj///BNr6/9G1F29qhxd5OPjg7e3d7Ey1K+v238Q12nuCcDdM+oXDAk5p9xer41PpcWzcVXmXwq/HKz2nLy8POLu3sPVtx61m3kQcUX73JuPAs/mXgDcOnNd7f5bZ5Udxj6tG1VqPENjQ+r51if05l1WfrCU6/9cpdOQrhqv4+ZVBxNzE478dYBfPl1FnYbuWpVPV+jCvQ+QGBmHtbMdLo3rcuPA+SL7nLxqA5DwwEIeBaMY1XHL74TLTE0n6d59rcpe3dzz6+7OmZtq99/Nr7v6bRpWaryEQm1x/cC5IvsK2iK+UFvo6enxy/hvsHG1J+qm+vx1RqbGAOjrV0dGyorl1NwDgMh/1d/jUeeUPzq6avmeAbDzcsPQ3Jjrfx7hyCe/UathnYceX6dDY/QUCkKPX1GNznvQhZW71G6vaSqjPWzz2+PGn0c4qkV7aNLs5b5YuNgRe+0uV37ZV6YYjxJ5b+gOe39lW8T8q/7zP/aMsi0c2mrXFhfn/EnwX8eIvXBb7X4DM2PVfyvyP+cTA8I5PW2lxpi2TZXP6eTgSK3K8Li7HXyX1LR0BvTpzrQ3x3EzMLi6iyREtZLOUfHYatq0Kdu3b8fMzKy6i8L27dvR09N76DFOTk5s374dI6Oi0zlztcyVWJHmzZtHQEAA/fr146uvvlKVafPmzbz77rt88MEH7NmzR/VHa2ZmJu+88w5JSUnMmDGD559XTuPOyMhg6tSp7Nq1i4ULFzJjxgzVNa5duwbAyy+/zMCBJeeD0jV29ZwAuK9hhGDBis6WDjYYmRmTmZpRafEU+ponCegbKNvIxs3hodd/FDnVcwHgnoY6K1hZ3sbRFmMzEzJS1f/RU954WRnZfD/pW45vOaJxRe7CAi/c4oOnpnDnanCJx+qiWvn3apyGerpfynu/rPFOrzlAneaedB4/gDv/3iDolLJT28W3Lj3fGQbAyV/3aPWaPNr7Mnj2KwAc/XEH2RlZWp1X3WqpPjfULxJS2s+hssY7veYA7s096TJ+AMH/3iDolPLz3dW3Hr3eGQ4UbYvcnFxuHLzw0LL49lIu7hSVv8jco8w6v14TNdRrYqiyXs0dbTA0MyarhHYCiDp/mzV9ZxBzVbvFtux8lJ3UcbfCAajbtRmeT7XB0rUWaXFJBO44TcC2f7SK9agraI8kDe2RlN8eZo42GJgZk61Fe9w7f5t1fWcQq2V7qGNsY06L1/oDcPKrdWpH29U08t7QHRb5bZGiYdGplPzPf1Mt3xexZwOIPat5tlnt3srP+PSYBDLikh4ay8DMGK8Xe9Hguc5kp2VyfdnOhx4vlPwa+7B+5UIaentUd1FEKeQ+Bp/91UU6R8Vjy9TUFA8P3XgYaFMOQ0NDnShvdnY2O3bsQF9fn5kzZxbprH366adZtmwZAQEB3L59Gy8v5Ui77du3ExwczIABA1QdowDGxsZMnz6dM2fOEBQUVOQ6BSNHfX19q+BVVTxzOysAUuOT1e5PK7TdzM6yxE6JssQr6Eh10jAqwsDYEFt3RwBMrc0fev1HkVV+nSXfV/+lOrlQnVnaWZbYOVrWeFkZmRzdeEjrct86UzwFwqNEF+59UHbImdeyouuEZ3j5jxncv3uPnOwc7Ou7kJWeya65azm28uF/QP1vxTu4Na2PlaMtOVnZHFyyhb3fVO0quOXxX92pv2cL16l5qdqidPH+WbMf81pWdJvwDOP+mEHc3XvkFmqLnXPXcnTlDq1fl3fnZnh3agbAuc3HtD5PV5nWUtZrmobPloxC9WpiZ6lVB1CkhpHWmhTkSsxMTqPf8kl4PJDD0fvpdgTvP8+OVxeQnZ6pLkSNUdAe6RraI71Qe5jaWZJUCe2hTuOR3TC2MiP2egh39p0v+YQaQN4busM4vy0y7qt/FmcW2m5sZ6nVjwaamDhY0+h15Q8BdzYe13icXdP6tPn6FSzrO2FgZkJKaAynpiwjQU0KF1FciyaNSz5IiMeI5BwV1SI+Pp5vv/2WZ555Bn9/f/z8/OjUqRNTp07l9m3l9IrffvsNHx8fpk+frjbGgQMH8PHx4bXXXlNtS0tLY8WKFQwfPpzWrVvj5+dHhw4dmDBhAhcvXixyfmlyg5YmbmGXL19mzJgxNG/enLZt2zJ58mQCAwOLHfdgzlF1Hsw5WlD+u3eVv3x3794dHx8fMjMzadu2LQ0bNtSYh/SZZ56hYcOGhISU/suDgYEB+/btY9OmTdjZ2RXbn5KizENUeKrj7t27AXjhheK5bFxcXDh27Bg//vhjke3Xrl3DzMxM56fPa1KwYEuWhi/KhbcbGpe8uEtZ4t3Iz8nn3sILjw5+xc55Ykzv/6amGj76U1MfZJRfZ5ka6qzwdiMTY7XHVGa8mkoX7v0CMUGR3A+JRqFQUKueM46ebij0FWQkp2nsbC2gp6eHd+emWDkqc5fqGxrg5lcfp/xRRI8C3WqLCFVb2JeyLQqzb+DCs9+8DsDtU9e4uvtfrc/VVQb59ZqTrn5EcuEOF4NKWgzMyNwUgBav9KVe9+Yc/3ItK5q/zhKvF9kxfgFpsYnU69aczp+PrZTr6xL9/DrO1tAeOVXQHg/SU+jh93x3AM4v3V4l19QF8t7QHfqqtlD/+V94u3452kLf1JgnV76NkY056bGJXF1YPM9rAStvN2x962JgZgKAkbU5rt1boDCS8V+i5sqrwv89bqRzVFS5mJgYhgwZwpIlS0hNTaV9+/a0bduWjIwMtmzZwvDhw4mIiKBfv34YGhqyd+9eMjOLP4j//vtvANWU6/T0dEaNGsXcuXOJioqiVatWdOjQAT09Pfbs2cPIkSO5dOlSqctb1rjBwcGMHj2awMBAOnXqhIuLC9u3b2fo0KEP7VDVlr29PQMGDFClBejRowcDBgzAyMiIAQMGkJeXx9atW4udd+PGDa5du0br1q2pU6dsOa8sLCyK5QHNzs5m0aJFRERE0KRJExo0aKDad/XqVQwNDWnYsCEREREsW7aMGTNmMG/ePLV1ER8fT3h4OPXr12fVqlUMHDiQZs2a0bFjR2bOnElUVFSZyl2VSpo+raf47+NXm0dPWeLduxXG+U3KUVXPLZpI04HtMTIzxsTKnHZje9NzyjBS80dj1MRFBEqqM4WiUCoLLaaoVHS8mqo092plxus+aQijvn8LM1tLfp+wgI98X+TjJi+x5s1FKPQVDPr8JZ6aMfohgWFel7f5sOFYFj89k8ATV/B6sgnj1n6IfX3nUr2G6qILn0MAPSYNYfT3kzCzteS3Cd8x0/cFPmryIn+8uRCFvoLBn79E/4e1RT77Bi6M++0DLGpZkXjvPmveWqRFqXVfXmnu8Ur6bNE3NgSUI/VOzv2TM99vJS02kez0TAK2/cOuCYsBaDS0I7aerpVSBl1RmvaoqgUr6vX0x7K2PSlR97m1SfNIuppG3hu6o6S2oMjnf9nawsDMmM4/v4N9S09ys3M4MeF70mMSNR4fceAif/q8zAa/8ZyY8D05mVk0HNeXjismlen6QojHm3SOiiq3ePFiQkNDGTt2LLt27WLRokX8+OOP7Nu3D39/f5KSkti0aRO2trZ06tSJxMREjh0rOm0uPT2d/fv3Y2lpSbdu3QD49ddfuXLlCr1792bfvn0sWbKEpUuXsn//fnr37k1WVhZr15Z+ddCyxo2IiKBly5bs2bOHBQsWsGnTJqZMmUJqairvvfdeub9Qe3h4MG/ePOztlYvuTJ8+nXnz5gEwZMgQALZsKf5r66ZNmwAYPHhwua5f4MqVK4wfP54uXbqwcOFC/P39Wbx4sWp/ZmYmERER1KpVi507d9K3b1++/vpr1q9fz/Llyxk2bBhz5swpErMg3+iVK1eYP38+tWrVom3btuTk5LBu3TqGDBmiGmGsq7LSlNOJDPK/VD/IoNCv2tpMwyprvM3vryDg6GXMbC15dsEEPrq6ipkXl9P/4zFc3Hqcs38dASA9Ka3EMjxqMvLrzFBjnf23XdNo0MqMV1NllVhP/92rmkYgljeeg4cr3SYOIjcnl19f/YZLf58kMyWdjKQ0Lmw5zo/Pf0lOVjYdX+6HcyP1C17l5eYRHxZDVnomoRcC+XHUF4RdCsLU2pyuEwaVWG5dkJmmTO2gzeeGNm1RlngOHq50nziY3Jxcfn71ay7mt0V6UhrntxxnxfNfkJOVzZMvP4WLhrYAqN20Aa+t+whrl1qkxCXx4/9mkxBZM1bqLpgKrK+hXvVL+bwoi4K4mclpnF9RPMVByNErRJ0PRE+hoF73FpVSBl1RUnsoqqA9HuTRrw0AAVtP1cgfMzWR94buyClFW+SklT4vt7GdJV3XvY9Th8bk5uRyavIyIg89fFBLRmwiWUlpZMQlEbzhGIdGzSE3Owe3Hi1w6iBTxkXNJKvVVx7pHBVVztbWlieffJKJEycWWYTIwsKC/v2V+WUiIiKA/0aFbt9edArR/v37SU1NpXfv3hgbK6evmpiY0LlzZ6ZMmYKBwX8PaCMjI1VHYEHc0ihrXENDQz799FNMTU1V28aNG4efnx+BgYGcPHmy1GXRVqNGjWjUqBGBgYFcvnxZtT0nJ4etW7diZmZG7969K+Raly5d4sCBA0RHKxO0Z2VlFUkdkJysnC6ZkJDAtGnT6NGjBzt37uT06dPMnz8fGxsbfvzxxyIdzAX5Rr29vdmxYwerVq1i2bJl7Nu3j/79+xMdHc0777xTIeWvLAUjMs1sLNTuN7O1VP13SqzmX8XLGy8zNYOfnv+StW8u5OLWEwQcvcy/aw+wctQX/PXOUszzz0uKji+xDLqmrm99PvrzC7X/6vrWJym/zixsLNWeb1mozhJjE0q8XkXHq6kK7lXTCr73SxOvce9WKPQV3D55lbtni+eXi7x2l2t7zwLQpF/bEssAys7SI8uVMxbqt9VudffqlpqfA67iPodKH8+3d+uHtkXEtbtc3XsGgCb9nlAb16dLc15dMxMLe2uSouNZNuIzIq+XfWEbXVOQw9LERn3uZxPb/+o7LfbhC5OUVUZiKgD3AyPIzVLf+RZ7U5mqx8q95i3gV1hGKdojvZLaozA9hR7uXZsCEPj3qUq/ni6R94buyMh/Fhtp+Pw3KvT5nxFX8vOkMHN3B3pu/Rh7f09ys7I5OfF7gv86Wuoyxl0MIuroFQAc2jUq9flCiMebJOQQVe7NN98sti0uLo4bN27w77/K3GFZWcpfHLt164aVlRX79u0jIyND1RFa0FlaeBXz0aNHM3p00Wl5iYmJ3Lx5k8OHDwOonZ5fkrLGbd68OW5ubsW2d+3alcuXL3PmzBnatWtX6vJoa8iQIcyaNYvNmzfj56fMN3n06FGio6MZPHiwajp+efXq1Yunn36ahIQEtmzZwoIFCxg3bhw//fQTrVq1UtVNWloaHTt2VI1uBejXrx9mZma8+uqrLF68mOHDh6Onp8fYsWPp1asX5ubmRfKampmZMWvWLE6fPs2VK1c4f/48zZs3r5DXUdGiA8OpVc8Zm9rqvyjbuClH/CZG3ddqxFZ54uXl5XFxywkubjlR7DwX37oARN149JLXm1ma4dNa/ZdfM0szwgPDcK7ngoOGOrN3U26/HxWn1UjPio5XUxXcq7YVfO+XJp5t/rbowHCNcWOCIoocC2DpaIONay1CzhfPDa08JxIACwfrEsutC6IDw7F/SN3ZlqEtShuvYNu9h7ZFZJFjC2v+dAeGzxuPvqEBsXeiWPH8F8TdvVdiWR8l9wPCsannhGUd9fVqWVtZL8lR9yttdFz87ZJ/PM7LVU6r1dRBVFPcDwjHWov2SKnE9ijMuZU3JraWJIfHVsjCTo8SeW/ojsSACCzrO2Nep/jnNIB5flukRt4nJ037trBpVIcuv0/D1MmW7NR0jo5bQMT+C2qPVRjqY+7uSF52Dsl31D8HkoIicenSFBP7R+M5LURp5T6GuUCriowcFdXi7t27fPHFFwwdOpSWLVvSrl07xo4dy44dyukqBcO4jYyM6NOnDykpKaqOyOTkZA4dOoSLiwtt2rQpEvfevXvMnz+f5557jrZt29K6dWtGjRrF77//Xq7yliWuuo5RACcnJ1XMytS/f38MDQ3Ztm0bOTnKL2sFU+oHDaq4KaF2dnaYmpri7OzMuHHjeOutt8jKymLJkiWAcuRtgREjRhQ7v0uXLjg5OREVFUVwcDCgXMypTp06ahd8MjU15YknlKOLrly5UmGvo6KFXQoCoE4LT7X7C7aHng+otHgWDta0fb4nrUd0U3uOjZs9zg3dyc7IIkTNiC5dd+3kFUbWHaT237WTVwi6qKwLzxY+as/3bKHMmxtw7qZW16voeDVVaP696q7hXi3YHqLlvV+WeAVpIiwdbTTGLehUTU9WHmtf35n3//me8Rs+wdxO/ehgK2flZ1JS1KMx0jr0kjL9iHsLL7X7C7bf1botSh+voC2sStEWBXx7t2b416+hb2hA+NVgvh/6UY3rGAW4d1F5jztruMcLtkedU99pXxGi8n8QsPNyRd9E/bRZm/xcu4k1sA0Ki85vDycN7eFUBe1R5Hr+yuuFn7xeJdfTJfLe0B1xF5Wf//b+6tvCvqVye+w57Z4nABb1nei6ZjqmTrZk3E9m/7NfauwYBfCbMoT+R+bh/+n/NB5j6qxcRDEt6r7W5RBCCJDOUVENtm7dSp8+fVi9ejVJSUl06tSJiRMnsmzZMj755JMZ73r5AAAgAElEQVRixxeMDi3oON2zZw+ZmZkMGDCgyLT8kydP0qtXL3744QeioqJo06YN48ePZ9GiRaqOurIoa9yCUa6aFJ6iXxlsbW3p3r07sbGxHDt2jOTkZPbv30+dOnVo3bp1pV23oL0KpsZbWlpiaKj8Mlm7tvpVnl1dlQns79/X7otMQZ7VtDTdzZN5Zec/ADTu2QpT66LTwfQUevgP7QTA+Y3aTRsqS7zcnFz6fzKGpz7+HyZWxUcKdxo/QHVOZn4uqZrkn53K1BWterXB3LroNDA9hYJOw5Sdxkc3HaqWeDWVtvfquQq+9wvHCzqpzFvs3akpVk62xWKa17LCu5NymmrQKeWxscFRxIfHolAoaPVcV7Vlafd8TwCu7z+nVdmr2+WdpwHw1VB3LUvZFmWJd/tkfpqUUrQFgJNXbUZ8NwF9A33ung9g6XOfkRxdM9NVBO5Q1muD3i0xtiler42GKev1xoZjxc6tKCFHr5AWm4ihmQl+I4v/oGbfyB3X1t7k5eZye9e/lVYOXXA7vz3qa2iPhvntcbMS26MwB796AERfDq6S6+kSeW/ojtDtyrZw69MKIzVtUX+4si2C/9KuLfRNjei8+h1MHKxJj01k/9BZxJ55eMfqvePK54lz5yaYqZlpYFHXEdeuzQAI3/toPKeFELpDOkdFlUpJSeGjjz5CoVCwbNkydu3axfz585kwYQKdO3dWOz29VatWuLm5ceDAATIzM9VOqc/Ly2PGjBmkpaUxa9YsDhw4wMKFC5k8eTI9e/Ysc0Lh8sTVNDI0LEyZl8jZufJXOy7Iibp7924OHz5Meno6zzzzTJFO5dIKDQ3ls88+Y/78+Wr3F3SEZmdnA8pRoB4eHgAaV5mPiYkBoFatWgAsWrSIN998kxs3bmgsA1RNHZZV1PUQru87i4mVGSOWTFLlSzQwNmTQV+Nw9KpNdGA4Vx/4Im1ma4m9hyt27o7ljpcal0TQiasYGhvxzJevYGiq7LBX6Cvo8HI/2j7fk4yUdA4u2lSZVVFtQq7f4ey+fzGzMmfSD++qcoUaGhsy7qvXqe1Vh/CAUP7dWTSHm6WtJa4ebji6O1dIvMdNZKF7ddSSSar8lAbGhgz+ahxOXrW5p+Hed1Bz75cl3o2D5wm9eBsjMxP+9+M72DdwUe2zqW3P6KWTMbO1JPJGCFfyO/zy8vI4tES5iF33NwfTbOB/aU+MzIx55ouX8OrUlNT7SarjdF3k9btcy6+70UsmF6m7oaq6C+PKrtNFztPcFqWPV7gtxv44tUhb2Na2539L38Y8vy0u53eEw//Zu/e4HO//D+Cvq7MoUSmFnLZyDCWnKGfLSs7mNIdhDmP7Ocx5mDXGMIfxncxxZiSZ0yhWTncUiiSROXSkkg5Kdd/X74/pnlbRpvu+7nW/no+Hx8N9XZ/79nJfdXf3vj+fzxsY8PVH0DcyQGbKU+wYvwp5L/f9q4zSYh7hj6BrMDQ1xntbpsPo5fOqa6iPbqsmoOa7tnh6NxFxvxX/njGqUQ01GtWGqV2t0h72HxHlCoSu9gMAdJw3FO96//X1b2Jrjp7rJkHQ0cFt/wvISkh7639Pk6XFPML9l9ej95bpMHzleri/cj3ulXI9zCroerzK/GWjsvTY+Ap93P8Cfm9ojoxbj5AQeA0GpsZw/WEGDF7u96pjqA+Xbyeg+ru2yLybiPgTxa+FQc1qMGlcG9X+di2aTe8H08Y2UMgVuDBxPTJuvXl7p+SzUUi7FgddAz24+s5AtfpWynPVHerCbfds6BoZ4MFhGZ7euP/2/2kiDcSGTKrDPUdJreLi4pCTk4NWrVrBzc2txPmirvSKl3v3AIAgCPD09MSWLVtw6tQpyGQyNGnSBO+889eyvvT0dDx69AiWlpYYPHhwuR63PN7mca9du4a8vLxiy8oVCgWCgoIAoMSWAP/W6wqdrq6usLKywpkzZ5CdnQ1BEODt7f1W/56+vj5++ukn6OvrY+zYsTAzK75Usmj7g6ZN/+oS2aVLF8TExOC3334rcd3v3buHhIQE1KpVC3Xr1gUA3L59G6dOnULDhg1hb198CXPRTFh9fX20a1e+RipSObzgR1jZ10Wjjs0w5+J6PLmbiBr1asHYrBpyM3Pw08Q1JX7wtP+wF7p/OhBP459gteuMt348/89/wNSjPmjRtx0ad26O9PspqG5jjmoW1VGQl489E77F0/gnKn8upPLj/C2o6+eDZh1bYL3sByTejUetelaoZmaCnGc5WDNpZYnnrNeHHhj42TA8efQYM1wnvfXjaaNDC37Exy+/Vj+/uB6P7yai5itfq3tK+Vrt8GEv9Hj5tf/N3772/83j/TR5HcbvmQ/b5g3wWdAqPIlLhKCjA4v61tDR1UH6w8fYPeFbKOR/vX6H7g5E7aZ2cPmgG4at/wQeC0YiMzkdlo1tYVjVCM+fZmHXhDXI/A8t1zu0YBus7OuiccdmmHdxQ4nnbncpz13HD3uh56eDkB7/BCtdp7/14+2evBYTXl6LmUGrX14LARb1a0NHVwdpD1Owc8Jq5bWo17ox6jv/+dovKhQYteWzMv9/WY8z8NPU7yriqZLU7/O2w9y+Dup2aoYxl9Yh/W4iqterBSOzanjxLAfHJqwD/va8thzTC+3+bwAyHz3Bzo5lP0flFbXnDGq+YwvHcb3Re8NUdJw3DLlpWTB3qANdfT2kRMTh7JLdb/3v/BeEzNuOmvZ1UKdTM4y+tA5P7ybC9JXr8Vsp16PFmF5o+/J67KmA61HE+OWWFC+e5VTYY/6X8HtDc4TN/RHVHRbDyrUZ+oV9h2d3ElGtXi0Y1qiG/Gc5ODdubYlr8e7YXmgxcyCyHz3BkXafAgB0DPTwzpg/V2LIc1+g5eclf8d61fkJ3yHv5cqB8xPXo9uB+TB3bIi+Z1chKy4JEASYNq4NQUcHyeeicHnmVhX874mosuPMUVKropl+sbGxePTor08I5XI5Nm/ejN9//x0A8OJF8SW+RbNEV61ahYKCAvTr16/YeTMzMxgZGSE1NRWRkX/tVSOKIg4ePIiff/651Md9k7d53IyMDCxevFg5g1IURXz77be4c+cOWrVqVWGNhIqW7xd1hX+Vrq4uvL29kZaWhpMnT6Jt27ZlLm0vLysrK+Us3wULFiAvL095LiIiAitWrAAAjBs3Tnl82LBhMDY2RkBAAI4cOaI8/uzZMyxcuBAKhQIjRoyAjs6fL0lDhw4FAGzfvh1XrlxRjs/JycH8+fORnZ2NQYMGwdJSs7uCZianY9P7C3Bx+2/ISc+ClUM9KArliDx8AZu9Fr22WUxFPV5GfCq+f38BrvqFoDAvH9ZN6kFUKHDN/xw29Z2Pexc1d9/WipCenIYF78/Cbz8eRVZaJuo52EFeqMCFw2exyGs2Eu/+s5k4Ff14lVVmcjo2vr8AF15+rVq//FqNOHwBm/7l1/4/fbyMhFRs9FyAwDUHkHL7EWrUsYSZjTke303A6e/8seH9+aXuX3loni9+mvId4i7ehEEVQ1g71EPW4wyc33Yc63p/jgfhpc9o11TPktOx4f35OL/9BLJfee6uHb6ADV4LX9soqaIeLyMhFes9F+DUmgNIVl4LCzy+m4Cg7w5i/d+uRVFhFACq1zZHg7YOZf6p49jo3z85GiQnOR2/eCxCxLaTyE3LgsXL5/V2wEX88v5iPL37z67Tv3X2i904MmY1HoRch76xIWo0ssbTuCRc8NmHg4OX48WzyjuD91U5yek44LEI119eD/OX1yM24CL81Hg9BB0BhqZVAAD5mZq7lZAq8XtDc+QmpeNkn4W47fsb8tKyYNakHkS5HPcPXcRJj0XILOe1MHOoC4OXW7PoV6sCSxf71/7RNfxrr9fnCak42WchotYFIOuPZFSzqwXj2jWRGn4Hl2f5IviDFSishFtFERVRiKLa/mgbQeQUF1Kzzz77DMePH0eVKlXg4uICPT09XL9+HU+ePEHjxo1x9+5dODs746effip2v4EDByIqKgq6uroIDg5GrVrFl2esXr0aW7duhb6+PlxcXGBsbIxbt24hPj4ejRo1wr1792BtbY3g4GAAwKVLlzB69Gh06NABO3bsAAD4+/tj3rx5GDRoEL766qu3etxmzZohNjYWVlZWaNasGe7evYu4uDjUqlULe/bsgZ2dnTK7vb09dHV1lft0xsfHo3v37qhXrx4CAwPLPAYA06ZNQ2BgIOzs7ODg4AAfHx9Uq/bXfoj3799H7969AQArVqyokGZMKSkpGD58OOLj42FpaYmWLVsiNTUVN27cgEKhwIwZMzBlypRi9zl+/Dhmz56NwsJCNGvWDLVq1UJERASePn2K9u3bw9fXV7kkvyjr9u3boaOjgzZt2qBGjRoIDw/H06dP4ezsDF9fX1SpUqXcmRfUH/7W/2+qGH+I2vkLniayE8r/PUSqxe6jmqWOXFfqCPQSr4TmqLy92P97LOT8maEpBl3/UuoI9Ap9i4ZSR1CpmialN8VUhfSs/17D3rfBmaOkdj4+Ppg2bRqsra0hk8kQGhoKa2trLF68GIcOHUL16tURERGB9PT0Yvcrmi3avn37EoVRAPj0008xf/58NGjQAFevXsX58+dRtWpVfPrpp/D398e7776LpKQkxMT8s26f//Zxmzdvjh9//BEWFhYIDg5GRkYGBg4cCD8/v2KF0bc1Z84cODk5ITk5GaGhocr9OIvUr18fFhYWMDY2VhZJ35aVlRUOHjyIcePGwcjICGfPnsX9+/fh6uqKHTt2lCiMAoCHhwf8/PzQu3dvJCUl4eLFizA3N8fMmTNLFEYBYO7cuVi3bh3atGmD6OhonDt3DpaWlpg9ezZ27NjxjwqjRERERERERP9l3HNUdThzlKiSCw8Px4gRIzB48GAsX75c6jiS4cxRzcGZo5qDM0c1B2eOahbOHNUcvBKagzNHNQdnjmoOzhzVLJV95miNao3V9m89zb6rtn9LE7AhE1EllJ+fDz09PWRkZODrr78GAAwfzuIgERERERER0X8RP0xXHRZHiSqhS5cuYfLkyZDL5VAoFPDw8CjWPb6Ij49Pie0L3mT16tUVFZOIiIiIiIiISFIsjhJVQnZ2djA1NUVeXh569OiBJUuWlDouKCgICQkJ/+ixWRwlIiIiIiIiUi/uiqk6LI4SVUL16tXDxYsX3zjuzJkzakhDRERERERERKSZWBwlIiIiIiIiIiLSYArOHFUZHakDEBEREREREREREUmBM0eJiIiIiIiIiIg0mMhu9SrDmaNERERERERERESklThzlIiIiIiIiIiISINxz1HV4cxRIiIiIiIiIiIi0kosjhIREREREREREZFW4rJ6IiIiIiIiIiIiDSZyWb3KcOYoERERERERERERaSXOHCUiIiIiIiIiItJgIjhzVFU4c5SIiIiIiIiIiIi0EmeOEhERERERERERaTDuOao6nDlKREREREREREREWokzR4mIiIiIiIiIiDQYZ46qDmeOEhERERERERERkVbizFEiIiIiIiIiIiINxnmjqsOZo0RERERERERERKSVBJGbFhAREREREREREZEW4sxRIiIiIiIiIiIi0kosjhIREREREREREZFWYnGUiIiIiIiIiIiItBKLo0RERERERERERKSVWBwlIiIiIiIiIiIircTiKBEREREREREREWklFkeJiIiIiIiIiIhIK7E4SkRERERERERERFqJxVEiIiIiIiIiIiLSSiyOEhERERERERERkVZicZSIiIiIiIiIVCIxMREZGRlvHPfo0SOcPXtWDYmIiIoTRFEUpQ5BRETFyeVy6OrqlmvsvXv30LBhQxUnIiIiorfx+PFjpKSkoFGjRjA2NpY6DpHaNGnSBF5eXli5cuVrx02fPh0ymQxhYWFqSkbXr19HVFQU8vLyYG1tjXbt2sHc3FzqWERqpyd1ACIiKmnIkCFYvXo1GjRo8Npxvr6+2LBhAyIjI9WUTLvFxcVh165dCAsLQ1JSEnr37o0VK1Zg2bJlaNiwIUaMGAFBEKSOqTUeP36M8PBwJCcno169eujRowdu3LgBBwcH6OvrSx1Pa6Snp8PPzw9hYWFITk6Gq6srPv/8c2zevBn29vbo1q2b1BG1Qn5+Po4fPw5HR0flz44zZ85g9erVSEpKQosWLTB37lw0bdpU4qSV3927d7Ft2zYMHDgQzs7OAIDVq1dj+/btUCgUMDY2xpw5czB06FCJk2qHvLw8BAUF4fbt28jMzIRCoSh1nCAIWLZsmZrTVU7h4eF4dQ6WKIpITU19bdEzKysLERERKCwsVEdErTFixAi4urpi8uTJxY7fv38fs2bNws2bN4sd19PTw5AhQzBnzhwYGhqqMyqRpFgcJSLSQDdv3sSAAQMwe/ZsDB8+vMT5+/fvY+7cuYiMjGQxTk3279+PL7/8EgUFBcpjRb9gyWQy/Pzzz7h8+TLWrVsHHR3uWqNKmZmZWLZsGU6cOKG8Bp6enujRowe++uorJCQkYP369WjdurXESSu/kJAQzJ49G1lZWRBFEYIgoEmTJgCA48ePY/369Rg9ejTmzZsncdLKLSMjA8OHD8cff/yBZcuWoUGDBvjjjz8wffp0ZaHh8uXLGDVqFAICAlC3bl2JE1decXFxGDJkCHJzc9G8eXM4OztDJpPB19cXurq6aNasGe7evYslS5bAzs4O7du3lzpypZaamorhw4fj0aNHeNOCSRZHK86+fftw7Ngx5W1BEHDx4kVcvHjxtfcTRRHu7u4qTqddrly5Altb22LHHj9+jJEjRyI1NRVWVlZo3749LCwsEB8fjwsXLmDv3r2IjY3Fjh07yr2Sjei/jsVRIiINNGPGDHz//ff48ssvERwcDB8fH1hYWAAAduzYgXXr1iEvLw/vvPMO38irQVhYGL744guYmZlh2rRpcHV1Re/evZXn586di6VLlyIwMBABAQEYMGCAhGkrt5ycHIwaNQq3b9+GlZUVXFxccOTIEeX5qlWr4smTJxg3bhwCAgJgZ2cnYdrKLSYmBp988gkEQcDYsWPh6uqKcePGKc+PGDECa9euxa5du9C2bVv06NFDwrSVm6+vL+7duwdnZ2e0aNECALB3714UFhZi4MCBWLhwIY4ePYpFixZh8+bN8PHxkThx5fXDDz/g+fPn+Oijj+Dp6QkA8PPzgyAImD17NsaMGYOYmBgMGjQIO3bsYHFUxb799ls8fPgQNjY26N+/P6ytraGnx1+BVe3zzz9Henq6siAtk8lgaWmJxo0blzpeEAQYGBigfv36mDhxojqjaqWNGzciNTUV77//PpYvXw4jIyPlufT0dMybNw9nz57Frl27MHbsWAmTEqkP9xwlItJQMTExmDt3LmJiYlCzZk3MmDEDhw8fxtWrV2FoaIgpU6Zg/PjxfJOvBhMmTIBMJoOfnx8cHBwAAA4ODvDy8sI333wDAIiPj4eHhweaNm2Kffv2SRm3Ulu3bh22bNmCoUOHYsGCBTAwMChxLTZu3IiNGzdiwIABLAKp0PTp0xEUFIRt27ahQ4cOAEp+X0RHR2PQoEFo27Ytdu7cKWXcSs3DwwM5OTkICgpSbinRrVs3JCUl4dSpU8qZogMGDEB6ejqCg4MlTFu5ubu7w8TERPmhjVwuR/v27fH8+XNcuHABZmZmAIAPP/wQsbGxkMlkUsat9FxdXSGXy3HixAnlc0/q9/efDaQ+pT33nTt3hkKhwOnTp4sVRos8f/4c3bt3R61atXD48GF1xiWSDNf9ERFpKAcHB/j5+WHatGl49uwZlixZgmvXrsHFxQVHjx7FpEmTWBhVk8jISDg7OysLo6WpU6cO2rZti/v376svmBY6ceIEbGxssHjxYhgYGJQ6Ztq0abCzs8OVK1fUnE67hIWFwdHRUVkYLU3Tpk3h5OSEuLg4NSbTPgkJCXB0dFQWRuPi4pCYmIi6desWW0Jft25dpKWlSRVTK6SlpaFRo0bK2xEREcjKykKTJk2KFeeqV6+OrKwsKSJqlczMTLRu3ZqFUYmdPn2a26tokKysLLRo0aLUwigAGBsbw9nZGQ8fPlRzMiLpsDhKRKTB0tLSEBsbC7lcDlEUIYoi7t27V2LzdFKtFy9eoEqVKm8cp6enh7y8PDUk0l5FjWXetAeWvb09kpOT1ZRKO+Xk5Ci3+3gdExMTFoFUzNjYGC9evFDeDgkJAYASS7afPHlSrtcy+vcsLCyKFaBDQkIgCAI6duxYbNwff/zBgp0a1KtXDxkZGVLH0Hq2traoUaOG1DHoJTs7u2J76Jfm6dOn3EOftAq/2omINJAoitixYwc8PDxw6tQp2NnZYfv27Rg3bhzS09Px2Wef4eOPP0ZSUpLUUbVCvXr1cOPGDeTn55c5Ji8vDzdu3GCjExWrWrVquYqeCQkJqFq1qhoSaa/atWsjOjr6tU1O5HI5oqOjYW1trcZk2qdhw4a4cuUK0tPTIZfLceTIEQiCgG7duinHREZGIiIi4rUz4OntOTg44OrVqwgNDcX9+/dx6NAhACi25+7u3btx584dtGnTRqqYWmPQoEGIiIjgSgINEBgYiGHDhsHJyQlNmzZFkyZNSv3TtGlTqaNWOrGxsTh27Bj++OMPAEC/fv1w+fJlJCYmljr+6tWruHr1Kq8FaRWuxyQi0kADBw7ErVu3AACjR4/G//3f/8HIyAgdOnRAr169MHfuXAQHB+Py5cv49NNPMXr0aIkTV259+/bFunXr8MUXX2Dp0qUllnPn5+dj6dKlePr0KYYPHy5RSu3Qpk0bBAcHIyIiAq1atSp1THh4OKKjo4sVhqji9ejRAz/++CPWrVuHzz77rNQx69evR0pKCsaMGaPecFpm8ODBmDt3Lvr27YsqVaool9R37twZALBkyRIcPnwYoihi2LBhEqet3CZOnAiZTKZsYiKKIjp06ICWLVsC+LMoERsbCyMjIzaeUYGrV68Wu928eXPUr18fEyZMwKhRo9CqVSuYmJiUOSOOBWvVCAoKwvTp05UfpgmCwFmJahQTE4NZs2YB+HOlQf369VFQUIDJkydj586dylnsd+7cwYkTJ7B9+3aIooiRI0dKGZtIrdiQiYhIAzk4OKBevXrw8fGBs7NzifP5+flYu3Ytdu7cCVEUlYVUUo0XL17ggw8+QHR0NKysrODo6IhTp07B3t4eLVu2RGhoKB49eoRGjRph//79nLGoQpGRkRg+fDiqVq2KGTNmwMXFBZ6envD09MSsWbNw9uxZfPvtt8jMzMSuXbtK/f6hipGZmYkBAwYgISEBzZo1Q9u2bbF9+3a0atUK7u7uOHv2LK5duwZLS0sEBASgZs2aUkeu1Hbt2oW1a9ciNzcXDRs2xJo1a5SzRD08PPDw4UN8/vnnGDVqlMRJK7+IiAisXbsWqampcHZ2xuzZs1GtWjUAf374CQBffPGFsmBKFcfBwQGCIJQ4LopiqcdfJQgCoqOjVRVNqw0bNgwRERGYPHkyRowYUa4tWahiJCcnIzo6GtHR0bh16xZu3bqlnDEqCAKCgoJga2sL4M9Gi6dOnQIAjB07Fp9//rlkuYnUjcVRIiINtHz5csyaNavMjdKLXL16FfPnz8dvv/2mpmTaKysrC8uWLcPx48chl8tLnO/atSuWL18Oc3NzCdJpF39/f3zxxRcoLCws9bwgCPj888/x4YcfqjmZ9klKSsLMmTNLzNYq4uDggDVr1qBhw4ZqTqad8vPzkZ2dXaIQHR4ejnfffRempqYSJaMi2dnZykIpVby3Lf7v3r27gpLQq1q1aoXGjRvDz89P6igE4NmzZ8pi6dixY5UfHGzcuBGxsbEYOnQoOnXqJHFKIvVicZSI6D/uxYsXMDQ0lDqG1khJSUF4eDiSkpKgUChgaWkJZ2dn7jWqZnFxcdi5cycuX76M5ORkyOVyWFpaom3bthg1ahSaN28udUStEhkZiUuXLiEpKQlyuRy1atWCs7NziYZApBoBAQGoW7cunJycXjsuKCgIN2/exIwZM9SUTPv069cPXbt2RdeuXeHo6Ch1HCKN0K5dOzg7O2PTpk1SRyEiKhWLo0REGqywsBCnTp1SFoDatGmDiRMn4sCBA2jRogUbaxCRRkhPTy82WzElJQVPnjxhkVpNHBwc0K9fP6xcufK14z755BOcO3cOERERakqmfZo2bQqFQgFBEFCjRg24ubnBzc0Nrq6unDEqgbCwMJibm79x9vq1a9dw584dDBkyRE3JtMuUKVNw8+ZNBAYGlti3naT34MEDPH36FObm5vywn7QWi6NERBoqKioKn376KRISEpR7ZXl6euKbb76Bt7c3YmNjuXRYRcrq3lleNjY2FZSESLNFRkZi/vz5MDMzw08//aQ8fuTIEcyZMwcNGzbE2rVr8e6770qYsvLZtm0bcnNzlbc3btwIe3t79OzZs8z7ZGdnY9++fTAyMkJoaKg6YmqlrKwsXLhwASEhIbhw4QIeP34MQRCgp6cHZ2dnuLm5oWvXrrCzs5M6qlYo7wcH06dPx/nz58vcIoTezt27dzF48GB4eHhgwYIFMDY2ljqSVsnKysKGDRtw//59/PDDD8rjBw4cwKZNm5CSkqI8VqtWLYwYMQLjx4+Hrq6uFHGJJMFu9UREGig+Ph7jxo1DVlYWevXqBVdXVyxatEh53t3dHffu3cOKFSvg4OCAdu3aSZi28unWrdsbGzeUhQ0dKta8efP+9X0FQYCPj08FpqFXxcbGYtSoUcjPz1d2RS9Su3ZtODs7IywsDMOGDcOBAwfQqFEjiZJWPnl5edi4cSMEQVB+eBYbG4vbt2+/8b5Dhw5VQ0LtZWJigj59+qBPnz4A/uwSffbsWZw7dw5hYWGQyWRYuXIl7Ozs0LVrVzY8qWBHjhwpsS/4w4cPERAQUOZ9srKycOnSJXZPVyF/f3+0bt0a/v7+OHbsGBo1agRTU9NS32sJgoBt297BkKAAACAASURBVLZJkLJySk1NxYgRI/DgwYNijbBWr16Nbdu2QRRFWFlZwcbGBqmpqUhISMDatWsRGhqKrVu3skBKWoMzR4mINNC8efMQEBCAFStWoF+/fgD+nP3g5eWFb775BgBw7tw5TJgwAe7u7tiyZYuUcSudnj17lnjDnpmZiYyMDABA/fr1YWtrCz09PTx58gS3b9+GXC5HgwYNYG1tje3bt0sRu1IqbeuIV69NaW9jXi0Y3bp1S6X5tFlRV9sVK1bA29u71DEBAQGYO3cuPDw8sGbNGjUnrLzy8/Oxfft2KBQKiKKI9evXo0mTJujVq1ep4wVBgKGhobIg928//KG3k5KSgk2bNsHf3x+FhYV8jVKB5cuXY8+ePf/4a1wUxXLNMKV/559sA8Xvi4q1ePFi7N+/H7169cL8+fNhbW2NGzduYPDgwahRowZWrFgBNzc35fh79+5h4cKFuHbtGmbNmoXx48dLmJ5IfThzlIhIA50/fx5NmjRRFkZL07lzZ7Rq1YpvIFUgMDCw2O1Hjx7hgw8+QOvWrfHVV1+V2LssOTkZ8+fPx82bN/Hdd9+pM2qlV/RhQBFRFLF161bExcXhvffeQ/fu3WFrawtdXV08efIEwcHB8Pf3R/PmzTFr1iyJUmuH69evo1WrVmUWRgHA29sbe/bsgUwmU2Oyys/AwACTJk1S3vbz80O7du0wefJkCVPR32VnZyM8PBxhYWEICwtDdHQ05HI5RFGEkZERWrduLXXESufTTz/FixcvlB+c+fn5wc7ODm3bti11/KsfHHC/UdXZtWuX1BG0VnBwMGrXro3Vq1cr93s9deoUBEHA4sWLixVGAaBhw4bYvHkz+vTpg4CAABZHSWuwOEpEpIEyMjLK9UuThYUFl3CrwTfffIPCwkJs3bq11IYa1tbW2LhxI3r16oWVK1dyOVgF8vLyKnZ77969iIuLw7fffgsPD48S47t164bu3bvj448/xpUrV+Ds7KyuqFonIyOjXN24bW1ty7Xcm/69M2fOSB2BXgoMDFQWQ2NjY5Wzew0NDeHk5AQXFxe0a9cOjo6O0NfXlzpupVOtWjV8+eWXytt+fn5wdHTE8uXLJUxFLi4uUkfQWunp6ejatWuxRlhFK6H+viVOkerVq6NVq1b8YJO0CoujREQayNLSEnfv3n3juDt37hTbP4hUQyaToWPHjq/tNGxsbAwnJyecO3dOjcm0z65du+Do6FhqYbSIm5sbnJ2dsX///mKz66hi2draIjIyEnK5vMw9yRQKBW7evAlra2s1p9NOhYWFePjwIbKyskrsu/iqNm3aqDGVdvnkk08gCAJ0dXXRqVMntG7dGs7OznB0dGSXbgnExMRIHYFIUubm5nj48GGxY0Ud6dPT08t8b5uSkoKqVauqPB+RpmBxlIhIA3Xu3Bn79+/H3r17MXz48FLH7N27Fw8ePOAyMDXQ09NDenr6G8clJCSwA6uKJSUlwd7e/o3jzMzMcOPGDTUk0l69evXC5s2bsXTpUixevBh6esXfVioUCqxYsQIJCQkYM2aMNCG1yLfffouffvqpWBf70rBpnGqZm5sjLS0NhYWFiIiIgI6ODoyMjFC1alU0adKE+71K6NmzZ8jNzYVCoShzjI2NjRoTaY9/0lyRzRQrVqdOnXDo0CH89NNPGDFiBADA09MTmzdvxqZNm0rdZ/fo0aOIjo5G79691R2XSDIsjhIRaaApU6bg5MmT+PLLLxEaGqrsRp+WloYjR44gJCQEx44dg4mJCSZOnChx2srP0dERZ8+eRVBQEHr06FHqmAMHDiAqKgp9+/ZVczrtYmNjg/DwcDx//rzMQnR6ejpCQ0NhZ2en5nTaZdy4cTh+/DgOHDiA4OBguLq6onbt2gD+3IdXJpMhKSkJtWvX5gxeFdu1axe2bt0K4M/vEWtra3YYlsiFCxdw584dyGQyhIaGIiwsDMHBwRAEASYmJmjTpg3atWsHFxcXNG3alMVSNdixYwe2bduG1NTU147jBweqc+jQodeeL/o+KGqmyOJoxZk2bRpOnTqF5cuX4/r16xg7dizs7e3x1VdfYc6cOUhPT8cHH3wAW1tbPH78GCdOnMDhw4ehp6fHfaxJq7BbPRGRhoqOjsb06dMRHx9frPs28OebRwsLC6xbt457KqpBZGQkRo4cCYVCAQ8PD3Tu3BlWVlYAgMTERAQFBeHMmTOoVq0afvnllxINm6jifP/991i/fj3atm2L5cuXlyiAxsTEYP78+bh16xYWLlyonCVBqpGcnIwlS5YgODi41POdOnXC8uXLlUVTUg1PT0/ExcVh7dq1nOmjYRQKBaKioiCTyXD58mVERETg+fPnAABTU1NcunRJ4oSV24EDB7Bo0SIAQJUqVVCjRo0Ss9xfderUKXVF0yq//vprqccVCgUyMzMRERGBkydPwtPTExMnTuT7qAp248YNzJo1Cw8ePIAgCNDX14e5uTkyMjKQl5dXbKwoiqhSpQp8fHzw3nvvSZSYSP1YHCUi0mAFBQUIDAxEaGgokpOTIZfLUatWLTg7O6Nv374wMjKSOqLWOHPmDBYtWoS0tLQSM31EUUTdunXxzTffsPuwiuXn52P8+PEICwuDIAioW7euslCdkJCApKQkiKKI9957D2vXrpU4rfZISUnB5cuX8eTJExQWFsLS0hKtW7dG/fr1pY6mFRwdHdGyZUvs3r1b6ihUhhcvXiA8PBznzp3DwYMHkZWVBUEQcOvWLamjVWr9+/fH7du38eWXX6J///7Q0dGROhKVISgoCJ988kmZDRfp7eTn5+P48eM4deoUbt26haSkpGLn9fX10ahRI3Tp0gXDhg3jFhOkdVgcJSIiKqfnz58jKCgIYWFhePz4MQRBQK1atdCxY0d069aNzTbUpKCgALt27cIvv/xSoslA48aN8eGHH2Lw4MESpSNSv06dOqFVq1bYtGmT1FHoJYVCgevXr0Mmk0EmkyEiIgIFBQUQRRHm5ubo0qUL3Nzc0KdPH6mjVmqOjo5o0aIF9uzZI3UUKodBgwZBFEUcPHhQ6iiVXn5+PrKzs1FQUAAjIyOYmJjwwwPSatxzlIiIqJyMjY3h5eUFLy8vqaNoNX19fYwfPx7jx49HSkqKslBtZWUFS0tLqeNVWikpKQAAS0tL6OjoKG+XV9EMX6p4Xbp0QVBQELKzs8vsPEzqsXPnTshkMoSHhyMnJ0e5JU6zZs3g7u4ONzc3tGjRQuqYWqNq1ar8nvgPsbGxwdmzZ6WOoRUMDAxQs2ZNqWMQaQzOHCUi0gDdu3f/1/cVBAFBQUEVmIaIqCQHBwfo6Ojg2LFjaNCgARwcHMrdTIaNTlQrOTkZgwYNQoMGDfDll19yOwMJOTg4AABMTEzQsWNHuLu7o0uXLjA3N5c4mXaaPXs2zp8/j8DAQBZJNVx2djb69OkDURRx4cIFqeNUOqIo4t69e9DV1S32M+LKlSvYvHkzbt26hcLCQjRr1gxjx45F586dpQtLJAHOHCUi0gAJCQlvHKOvrw89PT3k5uYqj+no6LDTrRr8k+I1i9WqFRAQ8I/Ge3t7qyiJ9inaf6yomQn3I5NOaU2XCgoKEB4ejvfeew+mpqYwNTUtc4nkyZMnVR1Ra40bNw7u7u5wcnKCrq6u1HG03syZMyGTyTBz5kwsXLgQdevWlTqSVjpy5EiZ5+RyOZ48eYJDhw4hLS2NP7dVIDQ0FAsXLlT+vtGyZUts2LABcXFxmDhxIgoKCpRjL168CJlMhk8//RSTJk2SKjKR2nHmKBGRBvj78tScnBxMnz4d6enpmD59Orp3765cLpydnY2QkBCsXr0alpaW8PX1hampqRSxtUbRTKDXEQQBZmZm0NXVxfnz59WQSjuVd7Zi0VJWNjuhyqg8r0ll4feF+hQUFCgbn1hYWMDJyQmJiYn8YEGNZsyYgZSUFERGRgIAqlevDlNT0zJ/jvCDA9Uoz89uURRhbW2Nffv2wdraWk3JKr+4uDh4e3ujoKAAjRs3Rk5ODpKSkuDk5KR8jZoxYwY8PT1hYGCAkJAQrFixAs+ePcOOHTvQrl07qf8LRGrBmaNERBrg73vxrVixAg8fPoS/vz8aN25c7Fy1atXQt29ftGzZEp6enli5ciW++uordcbVOiEhIaUel8vlyMzMREREBDZv3gx7e3t8//33ak6nXQYOHFjqL1hyuRxZWVm4ceMGUlJS4OHhARcXFwkSao+lS5eiYcOGGDVqlNRRtM7p06eljkCvUVBQgI0bN2Lv3r3Izs4GAHh6esLJyQmzZ89Gbm4u1q5dCzs7O4mTVn5/L3ZmZGQgIyOj1LFciaM63t7eZT6/giDA2NgY9vb2eO+997j9QQXbvHkzCgsLsWrVKnh6egIANm7ciI0bN0IQBMycORMfffSRcry3tzfq16+P4cOHY/v27SyOktbgzFEiIg3k6uqKJk2aYOvWra8d9/HHHyMyMhIymUxNyags9+7dg5eXF6ZMmYIpU6ZIHUdrKRQKfPvtt9i1axd+/vlnNG/eXOpIlZazszMaNGiAAwcOSB2FSGMUFBRgwoQJuHTpEgwNDdG0aVNcvXoVXl5e+OabbzBgwABER0fDwsIC/v7+qFWrltSRK7XybFv0KltbWxUlIZKGq6srbGxssH//fuUxuVwOd3d3pKamIjg4uNSGiUOHDsX9+/dx6dIldcYlkkzpGxEREZGknj9/Xq69ygoKCortE0TSadiwIdq1a4dDhw5JHUWr6ejoYNasWbCyssJ3330ndZxKj01miIrbvXs3QkND0bVrV5w5cwZ79+4tdn7fvn0YPHgwUlNT4evrK1FK7WFra/uP/pB6pKSk4ObNm7hz5w7S09OljlOpZWRklCh+6urqolmzZgAAMzOzUu9nYWGB58+fqzwfkabgsnoiIg3UqFEjhIaG4sGDB2Uuu4uKisKlS5fQpk0bNaejsujr65fYP5bUTxAENG3aFBcvXpQ6SqU2ZMgQ7Nq1C8HBwXB3d5c6jlYrT9M4QRCgp6cHExMT1KtXDz179kSfPn3UkE67BAQEwNzcHGvWrIGRkVGJ8wYGBliyZAnOnz/P/anV7MqVKwgLC0Nqair09fVhYWEBFxcXtGjRQupoWuOXX37Btm3b8OjRo2LHGzdujBEjRmDYsGESJau8rKysEBUVhYKCAujr6yuPT58+HV27dkVubi4MDQ2L3efFixeIjIxE7dq11R2XSDIsjhIRaaDRo0dj9uzZGDlyJKZPn44uXbrAysoKoigiMTERQUFB+P7776FQKDBx4kSp4xKA2NhYyGSyUpcmkfrFxcWBOweplo2NDerUqYPJkyfD1tYWDg4OqF69eqkd0gVBwLJlyyRIqR10dHSQk5OjnIGlq6uLGjVqAACePn0KuVxebPyNGzdw/PhxBAUFYfXq1WrPW5k9ePAAbm5upRZGi+jq6qJ58+Y4d+6cGpNpr8TERPzf//2fsilT0c+Goj0wW7ZsidWrV7OTvYotWLAA/v7+EEURFhYWqFOnDhQKBeLj43Hnzh0sXboU169fh4+Pj9RRK5UePXpg586dmDt3LhYtWqScKdq0aVM0bdq0xPjMzEwsWLAAaWlp8PLyUndcIsmwOEpEpIE8PT0RGxsLX19fLF68uNQxurq6mD9/PlxdXdWcTvssWrSozHOFhYVITU3FpUuXUFBQgPfff1+NybTP62bmyuVypKamYvfu3bh37x46duyoxmTaZ/ny5cq/x8fHIz4+vsyxLI6q1s8//4xhw4ZBR0cHc+bMQa9evZTFufz8fAQHB2PFihXQ19eHr68vsrKysHr1ahw7dgyurq7w9vaW+H9QeRgaGpZrmfCTJ09KzNaiipeZmYnRo0cjPj4ednZ26N27N+rUqQO5XI5Hjx4hKCgIkZGR+Oijj3Dw4EE2A1KRY8eO4eDBg6hbty58fHzQtm3bYudDQ0OxcOFCHDp0CF27dkXPnj0lSlr5TJ06FefPn8exY8dw8uRJBAQElGj2WmTdunXYvn07Xrx4gbp16+Ljjz9Wc1oi6bA4SkSkoWbOnImePXvil19+QXh4OB4/fgzgz+UxHTt2xPDhw8t8c0MVq7wNZ7p27co3kirm5ub2xo7CoihCT08P06ZNU1Mq7fT1119LHYFeWrNmDR4/fgx/f/8SPxcMDAzQq1cvNGnSBJ6envD19cXSpUuxadMmuLm5wc/Pj8XRCtS8eXOEh4cjLi4OjRo1KnXMnTt3EBUVxS7QarB161bEx8djyJAh+OKLL0rs5z5z5kwsWbIEBw4cwI4dO/hzQ0V+/vlnGBoa4scffyx1hm779u2xfft29O3bF/v27WNxtAKZmppi//79WLVqFU6cOAEbG5syx2ZnZyM/Px/u7u5YunQpTE1N1ZiUSFrsVk9ERPQGr2uyJAgCqlatinfffbfM/WGp4nTr1q3Mczo6OjA2Nsa7776LUaNGwdHRUY3JtFtBQQGioqLw+PFj6OrqwtraGs2aNXtjIZsqRocOHdCsWbM3NviZNGkSbty4odyPd+LEibh+/TpCQ0PVEVMrnD17FhMnToStrS0WLVoEFxcXtGnTBl5eXli5ciVkMhm++OILxMfHY+PGjeXaL5b+vd69e+PFixcICgqCnl7p84IKCwvRo0cPmJiY4MiRI2pOqB2cnJzQunXrN75GffTRR4iKiuJrkorI5fLXNnxNSEiAnp4et4gircSZo0RERG/Qv39/qSPQS2fOnJE6Ar0iMzMT69evh7+/P3Jzc4udq1mzJkaMGIEJEyYUawJBFe/FixdlFn5eJQhCse7DVapUQV5eniqjaZ0uXbrgk08+wYYNGzB58mQAfz7vgYGB+O2331BQUABRFDFmzBgWRtUgKSkJXbt2fe33h56eHhwdHXH27Fk1JtMuhYWFqFKlyhvH8TVJtV5XGAUAW1vbMs/Nnj0bx44dQ3R0dEXHItIILI4SEWmoxMRE7Nu3D3fu3EFubi4UCkWp4wRBwM6dO9WcTruMHj0anTp1wqRJk147zsfHByEhITh58qSakmmfsLAwmJubo2HDhq8dd+3aNdy5cwdDhgxRUzLtk5mZiZEjR+LOnTvQ09ODs7MzateurWwcFxkZiQ0bNuDKlSv44Ycf3vhLGf17DRs2xKVLlxAfH486deqUOiYxMRGXLl1C/fr1lccePHjAGUIqMHXqVLRu3Rrbtm3DlStXkJeXh9zcXOjp6cHJyQkffvghlw2riZGRETIyMt44LiMjgx/iqFC9evWU3wtlNSvLzc1FeHg4G2NpMC46psqMxVEiIg10+/ZtjBw5EtnZ2W98I8Jlq6p3+fJlWFtbv3HcjRs3kJSUpIZE2mvUqFHo168fVq5c+dpx27dvx/nz51kcVaH//e9/iI2NhZubG77++mvUrFmz2PnU1FR8/vnnuHjxInbv3o0xY8ZIE1QLjBw5EnPnzsWHH36IBQsWoEuXLsqZcoWFhTh//jx8fHyQl5eHoUOHAvhzD8Dbt29j4MCBUkavtDp27IiOHTtCoVAgIyMDcrkcZmZmLMCpWYsWLXDp0iXcvn0b9vb2pY6JiYlBeHg494BVoffeew/r16/HnDlzsHLlyhKzSHNzczFnzhxkZGRg5MiREqUkIm3G4igRkQZav349srKy0L59ewwZMgQWFhacdaVGH330Ef74449ix4KCgl67BDInJwfPnj1DgwYNVB1Pqxw5cgRyubzYsYcPHyIgIKDM+2RlZeHSpUvQ0dFRdTytdvLkSVhZWWHDhg0wMDAocd7CwgIbN25Ez549cfDgQRZHVcjb2xtRUVHYs2cPpk6dCn19fVhYWEAURaSmpqKwsBCiKGLgwIH44IMPkJSUhKVLl8LQ0JDXRcV0dHRKfHBA6jN69GhcuHAB48ePx/z589GjRw/l61V+fj6CgoLg4+MDhULBopwKjRs3DsePH8epU6dw+fJluLm5KZdwx8fH4+zZs8jIyMA777yDsWPHSpyWiLQRi6NERBooLCwMderUga+vb7n2kaOKNXbsWIwfP155u2ifvlf36itN9erVMXfuXFXH0yqRkZHYs2ePcoa0IAiIiIhARETEa+8niiL69eunjoha68mTJ3B3dy+1MFqkSpUqaNOmDffyU4OFCxeie/fu2LVrF0JDQ5GYmAgAMDQ0RIcOHTB69Gi4u7sDAJ4/fw4PDw+MGjWqRHd7+mcWLVoEQRAwY8YMmJubY9GiReW+ryAIWLZsmQrTkZubGz766CP4+vpi5syZ0NXVhaWlJYA/X8PkcjlEUcT48eNf2/CP3o6RkRF2796NRYsWISgoCIcPHy52XhAE9OjRA8uWLYOxsbFEKYlIm7FbPRGRBmrdujU6d+6M9evXSx1Faz1+/BiiKEIURbi7u6NXr15YsGBBmeMNDQ1hZmamxoTaITs7GytXrlRuL+Hn5wc7Ozu0bdu21PGCIMDQ0BB2dnYYMmQIDA0N1RlXq3h6ekIURRw9evS14wYPHozs7GycOHFCTckI+HMPxcLCQtSoUYMrD1TIwcEBgiDg+PHjaNCgARwcHMp9X0EQcOvWLRWmoyKnT5/Gjh07EBERgYKCAgCAvr4+WrVqhQ8//BA9evSQOKH2SEhIQHh4uPJ9Vq1ateDs7FzmfsmkGWbPno2jR4/yNYsqLU5HIiLSQPb29iWWdZN61apVS/n3adOmwd7eno1LJFCtWjV8+eWXytt+fn5wdHTE8uXLJUxFADBx4kTMnj0bq1evxqxZs0odc+DAAURFRWHp0qVqTkf8sEY9vv76awBQzkYsuk2apXv37ujevTvkcjkyMjIgiiLMzMy4OkfNCgoKkJOTU2xlx8OHD3Hz5k2Ym5uXq6M9EZEqcOYoEZEGCgoKwrRp07Bs2TI2lCEijXT69Gn4+fkhODgY9vb26NOnD+rVqwddXV2kpKQgJCQEFy9ehLW1tbIJ0Ks+/vhjCVJXDlzKTUT/NYGBgVi4cCHs7Oywf/9+5fGAgADMnTsXNWvWxOrVq9GxY0cJU1JZOHOUKjsWR4mINFBISAj279+PM2fOoE2bNmjZsiVMTU3L7EzPIkPFYuFBc6SkpAD4c1aWjo6O8nZ5cbav6hQtJy56K/n316dX32K+ek4URS4nfktcyq25pk6din79+r1xP15Sn9jYWBw8eBAPHjxAfn5+meMEQcC2bdvUmEx7XLlyBSNHjoSuri68vb2Lrf6IiYnBzp07ceTIEQDATz/9BEdHR6miUhlYHKXKjsVRIiIN9PeiA1Cy8ACwyKAqLDxoDgcHB+jo6ODYsWPKa1HWhwR/JwgCoqOjVZxQe23YsKHc16I006ZNq8A02uXQoUMAgJ49e6JatWrK2+XVv39/VcQi/PXzw8TEBH369IGnp2eZeyST6oWHh2PMmDHKxkuvw5/fqjNhwgRcvHgRvr6+6NChQ6ljZDIZxo0bBzc3N2zZskXNCelNWBylyo6brBARaaCpU6e+VdGB3g73kNMcNjY2AKDcF67oNknvk08+kTqC1vp7cZPFTs2xefNmHD16FL///jv279+PAwcOoHbt2vD09ISXlxcaNWokdUStsmbNGhQWFuL9999Hnz59YGJiwvdXErh16xbatm1bZmEUADp06AAnJydcuXJFjcmIiP7EmaNEREREREQV6MWLFzh9+jSOHz+Os2fPIj8/H4IgoEmTJujXrx/69u0LCwsLqWNWek5OTrCzs4O/v7/UUbRa69at4erqig0bNrx23PTp0xESEoLIyEg1JaPy4sxRquw4c5SISAMULR/64IMPUL169X+0nEgQBEyaNElV0QjAvHnz0KZNGwwePPi147Zs2YLQ0FDs2LFDPcGIiF7KycnB0aNHcefOHeTm5kKhUJQ6ThAE+Pj4qDmd9jE0NISHhwc8PDyQnZ2NwMBAHD9+HDKZDCtWrMCqVavQvn17+Pr6Sh21UqtSpQr3ntYA9evXR3h4OHJzc8vsSJ+fn49r166hTp06ak6nXRISEmBra/uP71ejRg3Url1bBYmINANnjhIRaYDS9rj8+56jf1d0nntkqZ6DgwO8vLzwzTffvHbc+PHjERYWhuvXr6spmfZJTEx84xhBEKCnpwcTExMYGRmpIRWRtBISEjBixAikpKRwX0UNVlBQgFOnTmHVqlVITk7mtVCDxYsXIygoCKdOnUK1atWkjqO1tm3bhlWrVsHd3R0rVqyAmZlZsfPZ2dlYuHAhTp48iWnTpmHq1KkSJa38mjZtChcXF/Tv3x+9e/fm+ySil1gcJSLSAEWNTUaOHAkzM7N/3OiEjU0q1qxZs/D48WPl7cuXL8PCwgINGzYs8z7Z2dm4desWbGxscPr0aXXE1Er/pCETAJibm6NXr1747LPPYGJiosJkRNKZM2cOfv31VzRu3BheXl6wtLSErq5umeO9vLzUmE675efn4+zZszhx4gR+//135ObmQhRFNG/eHP369cOoUaOkjlipPXv2DMOGDYOZmRlmzpwJBwcHFkklkJ+fj+HDhyMqKgqGhoZo1aqVchZicnIyIiMjkZubiyZNmmDv3r1lzi6lt+ft7Y2YmBgIggBjY2P06dMH/fv3h7Ozs9TRiCTF4igREdHfHDt2DDNnzlTeftMs3iJ6enpYvnw5vL29VRlPqy1YsABRUVG4ffs2dHV10aJFC9ja2kIURSQlJeHGjRsoLCyEubk5rKyskJiYiIyMDLzzzjs4cOAAZ0hQpdShQwfo6uri5MmTqFq1qtRxtF5hYSEuXLiA48eP4/Tp08jJyYEoirCxsYGXlxe8vLxe+2EbVazNmzfju+++U36w9roPDqKiotQVS+tkZ2dj3bp18Pf3x/Pnz4udMzAwgLe3N+bMmcPitRrExsbi0KFDOHLkCFJTUyEIAurWrQtvb294e3uz+SVpJRZHiYiISnHt2jUoFAqIooiRI0fC1dUVkydPLnWsIAgwNDREnTp1UL16b3+vawAAIABJREFUdTUn1S43b97E8OHD0bx5c6xatarEG/i0tDTMnTsXV69exc8//4xGjRphw4YN2LJlC6ZPn44pU6ZIlJxIdRwdHeHm5ob169dLHUXrzZ8/H6dPn0ZmZiZEUYSpqSn69OkDLy8vzsySwO7du+Hj41OuDzgBICYmRsWJKD8/H1FRUXjy5AnkcjksLCzQrFkzfrAjAYVCgXPnziEgIAC///478vLyoKOjg7Zt22LAgAFcdk9ahcVRIiKiNyhvQyZSvfHjx+PmzZsICgoqc3ZJbm4uevbsiWbNmuF///sfAKB79+6oWrUqfv31V3XGJVKL/v37Q1dXF35+flJH0XoODg7Q09ODm5sbvLy80LVrVxgYGEgdS2v17t0b8fHxmDdvHjw8PFCzZk2pI9E/MHv2bBw7dgzR0dFSR6n0cnJyEBISgsDAQJw8eRKiKMLY2Bh9+/bF8OHD4eDgIHVEIpXSkToAERGRpvv666/LXRgtq0M0VYxr167BxcXltcvuqlSpgjZt2iAsLEx5zMHBAQkJCeqISKR2I0aMQFRUFEJCQqSOovUWL16M8+fPY9OmTejduzcLoxJLSkpC+/btMXLkSBZG/6M4l0v1RFHEtWvXEBoairCwMOXKqSpVqmD//v3o378/Zs6ciby8PKmjEqmMntQBiIiI/gueP3+OM2fOIDExEQUFBcXerIuiiBcvXiA1NRXnzp3DhQsXJExauRkaGuLp06dvHPf06dMSjZv+SSMnov+SVq1aoUePHpg2bRo8PDzQsmVLmJiYlPk17+npqeaE2mP48OHFbqelpSEpKQlVq1ZFgwYNkJuby2YzalTU9IeISoqOjsbhw4dx7NgxpKWlQRRFWFlZYdKkSRgwYADs7OwQHh6Or7/+GsePH4eBgQG+/vprqWMTqQSLo0RERG+QkpKCDz74AElJScWOi6JYrPjw99tU8Zo3b44LFy7g3Llz6Ny5c6ljZDIZwsPD0a5dO+WxW7du8ZdkqrTef/99ZeO4w4cPv3H7CBZHVe/AgQP48ccfcf/+fQCAl5cXVq5cialTp6JatWpYsmQJZzKqwcCBA7F+/Xrcvn0b9vb2UschklxSUhKOHDmCX3/9FXFxcRBFEfr6+ujduzcGDBgAV1dX6Oj8tcDY2dkZW7duhaurKwIDA1kcpUqLxVEiIqI32Lx5MxITE1GvXj306NEDMTExCA0NxeTJk5GbmwuZTIaYmBi888472LNnj9RxK7WPP/4YMpkMU6ZMwYgRI9CjRw/Url0bCoUCSUlJ+P3337F3714IgoBJkyahoKAAc+fORVJSUpkNtYj+67y9vfnBjAaZM2cOjhw5opyFlZKSolxtkJCQgAcPHuDOnTvYv38/TExMJE5buY0aNQpXrlzByJEjMXToUDg6OqJ69erQ0yv91+A2bdqoOSGRenXv3h2iKEIURTRp0gQDBw7E+++/DzMzszLvU6NGDejo6LA5E1VqLI4SERG9wfnz52FsbIx9+/ahZs2aCAkJgUwmQ/v27eHi4gJRFLF06VL88ssvuHDhAjw8PKSOXGk5OTlh1apVWLx4MXbs2IGdO3cWO1/UQGDp0qXo0KEDHjx4gGPHjsHGxgYjR46UKDWRaq1YseJf3S8jIwPPnz+HjY1NBSfSXgcOHMCvv/4KR0dH+Pj4oFGjRsUamezduxfz5s3DuXPnsGPHDnzyyScSpq38ioqdoihi27Ztrx0rCAIb/1ClZ2JiAk9PTwwaNKjcTZYKCgqwZcsW2NnZqTgdkXRYHCUiInqDx48fw9nZWbkEsmnTphBFEZGRkXBxcYEgCJg/fz5OnDiBn3/+mcVRFXvvvffQoUMHBAQEQCaTITExEYWFhbC2tka7du0wcOBAWFpaAgAMDAywZMkSeHh4wNTUVOLkRJrlq6++YifoClY0G/R///tfqTOxzM3NsX79enTr1g2BgYEsjqqYs7Oz1BGINMqFCxfKnDn9qpycHCQkJODdd9+FgYEBXF1d1ZCOSDosjhIREb2Brq5usaWPlpaWqFKlCuLi4pTHDAwM0Lp1a1y7dk2KiFrHzMwMY8aMwZgxY147rnbt2hg2bJh6QhH9B7ETdMW6e/cuOnTo8NolqkZGRmjVqhVCQ0PVmEw77d69W+oIRBqlRYsWyj2QX2fevHm4fPkyX6dIa7A4SkRE9AY2NjbKphpF7OzscOvWrWLHdHR08Pz5czUmIyIiTaKjo4Pc3Nw3jsvKyirW9IQ0y+zZszmrmiqFxMTEYrdFUcTz589LHH9VVlYWbt++jby8PFXHI9IYLI4SERG9QadOnbB7927s2bNHuW9lixYt4Ofnh5s3b6LZ/7N359E13fv/x187khAhiTHGElpCEUMztKWGGtqomBqqprZKqamotqjb1lCqOlzVUqUDrimGtkiLmGOOIYYYSxEJEqmEhozn94ev8xNi6L3J2ZLzfKzVteyz38d6rUZIXvnsz+fxx5WYmKjdu3dzIroN7N+/Xz/99JOOHz+ua9euKTMzM9s5wzAUFhZm43QA7Fn16tUVGRmpCxcuyNPTM9uZ2NhYHTx4UDVr1rRxOvwTrKpGfvCvf/1LW7ZssV7f/Nrofl8fWSwWtqWAXaEcBQDgPnr16qVffvlF48eP165du/Tvf/9bL7/8skJCQtSrVy89/fTT2rt3r5KSktS2bVuz4+ZrERERevXVV5Wenn7fb1w5vRuArXXp0kXDhw9Xv3799Mknn+ixxx7Lcv/kyZN65513dP36db344osmpQRgL95//3298cYb1q+Zzp49KxcXF5UsWTLbecMw5OzsrMqVK+udd96xZVTAVJSjAADch6enp/7zn/9o0qRJ1kOZatSooaFDh+rLL7/UypUrJUn16tXTgAEDzIya73399ddKS0tT27Zt9fLLL6tkyZIPdLAAANhCmzZttH37di1ZskRBQUFyd3eXYRjaunWrWrVqpejoaGVkZKhVq1Zq37692XEB5HOVK1fWqlWrrNfe3t5q3ry5Jk2aZGIq4OHDdxMAADyARx99VDNmzMjyWp8+fRQYGKgDBw6obNmyqlOnDnvI5bLIyEg9+uij9z1IAADMMn78eNWtW1ezZs2y7lcdHx+v+Ph4lS1bVj179lTPnj3NDQnkAcWKFWO7ohw2e/ZslShRwuwYwEOHchQAgNssX778H7/n7NmzOnv2rKQbK4eQOxwcHFSlShWzYwBAthISElS8eHEFBwcrODhYcXFxio2NVWZmpkqVKqXy5cubHREwTWpqqjIzM1WoUCFJUlJSkhYuXKjY2FjVqVNHL7zwQpanQUaOHKmRI0eaFTdf8vPzMzsC8FCiHAUA4DbDhw//n/arpBzNPbVq1dKRI0dksVjYUxTAQ6dbt25yd3fX/PnzJUmlSpVSqVKlTE4FmG/q1KmaNWuWxo8fr8DAQF2/fl2dO3fWn3/+KYvFovnz52vJkiX6/vvv5eTkZHbcfKNVq1aSpFmzZqlChQrW6wd16yP5QH5GOQoAwG3atWtH8faQGjhwoHr06KGvvvpKgwYNMjsOAGQRHR2tSpUqmR0DeKj8+uuvmjp1qpydna0HA4WEhOjUqVOqXLmyunfvrtWrV2vnzp2aPXu2evXqZXLi/OP06dMyDENpaWnW6wfF18KwJ5SjAADcZuLEiWZHwF0cOXJEjRo10rRp0/Tzzz+rVq1acnNzy/YLeMMwNGbMGBNSArBXZcqU0fnz582OATxUQkJC5OTkpEWLFsnb21uSFBoaKsMw9MEHH+jJJ59UcHCwmjVrphUrVlCO5qC1a9dKunG46K3XALKiHAUAAHnG2LFjZRiGLBaLYmJiFBMTc9dZylEAtvbRRx+pf//+Gjx4sLp37y5vb28VKVLE7FiAqY4ePSo/Pz9rMZqYmKjIyEi5urrK399fkuTs7Kw6depo27ZtZkbNd27f55h9j4HsUY4CAIA8Y8KECWZHAPKNqlWr6oknnjA7Rr7y2WefqUiRIlq9erVWr14t6cZBcnd7PPXgwYO2jAeYIjU1Va6urtbrLVu2KDMzU76+vnJwcLC+npGRoczMTDMiArBzlKMAACDPaN++vdkRgIdWUlKSzp49q5SUlHvO1a9fX5LUt29f9e3b1xbR7EZ2ZWdGRoYJSYCHR4UKFXTs2DHr9dq1a2UYhho1amR9LTk5WZGRkaxszGH/9ACm23EgE+wF5SgAAMiTUlNTdfDgQcXHx8vZ2VklSpRQjRo15OjIlzewL9evX9eIESO0evXq+666MgxDUVFRNkpmf44cOWJ2BNzi22+/VdWqVdW8efN/9L5ixYqpbNmyuZTK/jz99NOaPXu23nvvPXl6eur333+Xo6OjtbjbvXu3vvzySyUmJqpTp04mp81f/skBTLfjQCbYE8Ny87g4AACAPCA9PV1TpkzR3Llzde3atSz3ihYtqs6dO2vQoEFycnIyKSFgW5988ol++OEHOTo6qmrVqnJzc7vn/Jw5c2yUDA9qwoQJWrt2rcLCwsyOkq/4+/urdOnSWr58udlR7NqVK1fUu3dv7du3z/rau+++q1dffVWS1LBhQ8XHx6tu3bqaOXMm+/TmoHPnzv1P72clL+wFSysAAECekZGRoX79+ik8PFwODg7y8fFR+fLllZmZqbNnzyoqKkozZ87UkSNH9N1335kdF7CJNWvWyNXVVYsWLVLVqlXNjoP/QkJCwv9cYuBOqampqlSpktkx7F7RokU1e/Zs/fbbb4qLi5Ovr698fHys99u1a6eyZcsqODhYzs7OJibNfyg3gQdDOQoAAPKMhQsXavPmzapdu7Y+//xzVaxYMcv9M2fOaOjQoQoPD9eSJUvUsWNHk5ICthMfH6+GDRtSjAK3ee655/T777/ryJEj1pPSYQ5nZ2e1bds223tvv/22jdMAQFaUowAAIM9YtmyZXF1d9e2336p48eJ33H/kkUc0Y8YMtWjRQosXL6YchV147LHHdPHiRbNjAA+dJk2aaO/evXrxxRfVoEEDeXt7y93dPcsJ6bfigDLkN7Vq1ZIkrVixQpUrV7ZeP6jsDpkD8iPKUQAAkGecOHFCAQEB2RajNxUvXlx+fn7avXu3DZMB5unTp48GDhyo3377Tc8//7zZcYCHxuDBg2UYhiwWi3bs2KEdO3ZIuvOgGYvFIsMwKEdzibe39wMd7uPo6KiiRYvqkUceUYsWLdSzZ08OWfwfpaenS7rxZ/zWawBZ8TcNAADIl9LS0syOANhEixYt9O6772ro0KFauHChvL295eHhcdd5CiDYi/79+3Pi9kMgICBAsbGx1pPTS5YsqQoVKshisSg2Nta68t3R0VEZGRmKjIxUZGSkNmzYoJ9++umuK31xf0eOHLnnNYAbKEcBAECe4eXlpV27dikxMVHu7u7Zzly+fFm7du1SlSpVbJwOMMfZs2c1Z84cWSwWbd++Xdu3b8+2EGJ1HOzNwIEDzY4ASWPGjFFwcLC8vLw0btw4NWjQIMv9Q4cOafTo0YqLi9PChQvl6uqqCRMm6JdfftHcuXPVo0cPk5IDsBeUowAAIM/o0KGDxo0bpzfffFOff/65PD09s9w/f/68hg4dqr///vuuBz8A+c3HH3+smJgYlStXTk2aNFGxYsVYLQdk49KlS4qNjZWrq6u8vLx07do1ubi4mB0r35s8ebLS0tL0448/3vHvtiQ9/vjjmjlzplq1aqXPPvtMn332mcaPH6/w8HAtX76ccjSX7NixQxEREbp48aKcnJzk6ekpf39/1alTx+xogM1RjgIAgDyjS5cuWrVqlXbt2qVnn31WdevWVfny5SVJ0dHRioyMVHp6unx9ffXyyy+bnBawjYiICJUrV04rVqxQ4cKFzY4DPHRCQkL0/fff688//5QkBQUF6ZNPPtGbb76pokWL6sMPP7znXtb432zfvl0BAQHZFqM3FS9eXP7+/tq8ebMkqUCBAqpVq5b27Nljq5h248CBAxoxYoT++OMPSf9/P9KbP1SrW7euJk2apIoVK5qWEbA1ylEAAJBnFChQQLNmzdJnn32mhQsXKiIiQhEREdb7Li4u6tq1q4YOHcohDrAbFotFtWrVohgFsvHOO+9o+fLlslgs8vT01IULF6xlUExMjE6fPq3jx49r0aJFKlq0qMlp8yeLxaKUlJT7zl27di3LfuHOzs4cIJTDTp48qZ49eyo5OVm1atVSkyZNVKZMGUnSuXPntGbNGu3du1fdu3dXSEiISpUqZXJiwDb4rgEAAOQpzs7OGjFihIYOHaoDBw5YD3IoXbq0atWqpUKFCpmcELCtBg0a6PDhw9Y9RQHcEBISol9//VU+Pj76+OOPVbVqVXl7e1vvz5s3TyNGjNDmzZv1448/skdpLqlevbp27NihqKgo1axZM9uZI0eOaMeOHapVq5b1tWPHjlmLO+SMqVOnKjk5WW+//bZef/31O+4PGjRIkydP1qxZszRlyhSNHTvWhJSA7VGOAgCAh9by5csfeDY2NlaxsbFZXmvTpk1ORwIeOkOGDFHnzp31/vvva8SIESpSpIjZkYCHws3VoN9++608PDzuuF+iRAlNmTJFzZo105o1ayhHc0mvXr3Ur18/vfrqqxowYICaN2+usmXLymKxKCYmRhs2bNBXX32ljIwM9ejRQ5mZmfriiy90+vRpde/e3ez4+crWrVtVs2bNbItR6caj9cOHD9eGDRu0fv16G6cDzEM5CgAAHlrDhw//n1bCUY7CHoSGhqpevXpaunSpfvnlF1WpUkXu7u5ycnK6Y9YwDM2aNcuElPlTq1at9NRTT+mDDz6QJO3atUslSpRQlSpV/tHvY7FYrI96I+ecOHFCTz75ZLbF6E2FChVS3bp1tX37dhsmsy9NmzbVe++9p8mTJ+vjjz/Wxx9/fMeMYRgaNGiQAgMDdfbsWX333Xdyd3fXK6+8YvvA+VhKSsoD7SX66KOPauPGjTZIBDwcKEcBAMBDq127djwmDNzHjBkzrL9OT0/XsWPH7jrL51POio2N1eXLl63X3bt3V1BQkCZNmvSPfp/Jkydr8uTJOR3P7jk4OOjatWv3nbty5YocHBxskMh+vfLKK3rmmWc0b948bd++XTExMUpPT1eZMmXk7++vrl27Wrc8sFgs6t27tzp16qRy5cqZnDx/qVOnjvbs2aOUlBQVLFgw25mMjAwdOnQoyxYUQH5HOQoAAB5aEydONDsC8NCbPXu22RHslouLi/bv368LFy7c8yRumKN69eqKjIy858cnNjZWBw8evOtemMg5VapU0fvvv3/fuUceeUTDhg2zQSL7884776hbt24aOHCgxowZc8eerqmpqRo9erQuXLjA12CwK5SjAAAAQB7m5+dndgS75evrq7CwMDVp0kTSjZW5y5cvf6D9kg3DUFRUVC4ntG9dunTR8OHD1a9fP33yySd67LHHstw/efKk3nnnHV2/fl0vvviiSSmB3PPaa6/d8ZqHh4c2b96sFi1aqG7duqpQoYIKFiyoixcvas+ePUpMTFTNmjW1cuVKPfHEEyakBmzPsLC5DQAAAAD8YxcuXNDw4cN14MABpaamKjMzU5Ie+BHtQ4cO5WY8SBo1apSWLFkiwzDk7u6uxMRElShRQq6uroqOjlZGRoZatWqlf//732ZHzddiYmK0YMECHT9+XNeuXbN+rtzOMAz99NNPNk6Xf/0vj8YbhqHDhw/nYBrg4UU5CgAAAORhI0aMeOBZwzCyPQwFOcPb2/u/2nMUuSskJESzZs3Sn3/+meX1smXLqmfPnurZsyf78eaio0ePqlu3brp69ep9Dx6jkMtZO3fu/J/ez5MJsBeUowAAAEAedr+VQTdLH4vFQvGQy0aMGKH69esrODjY7CjIRlxcnGJjY5WZmalSpUqpfPnyZkeyC/3799fatWsVEBCgTp06qWTJkipQoMBd5xs0aGDDdABAOQoAAADkab/++mu2r2dmZiopKUn79u3TqlWr1KZNG/Xp00dVqlSxcUL7lJqaqoMHDyo+Pl7Ozs4qUaKEatSoIUdHjn0w019//aUCBQrIzc3N7Ch2w8/PT25ubvr999/585+HHD16VNWrVzc7BmAT/M0EAAAA5GFBQUH3vN+jRw+FhYVp4MCBeuaZZyhHc1l6erqmTJmiuXPn6tq1a1nuFS1aVJ07d9agQYPk5ORkUkL7s3r1ai1YsEARERFKS0uTJLm4uKhhw4bq0aMHh87ksrS0NNWsWZNi9CFx6NAhLVy4UDExMUpLS8uy1YHFYlFKSori4+N1/vx5Do2D3WDlKAAAAGAHXnzxRVksFi1ZssTsKPlWRkaG+vbtq/DwcDk4OKh27doqX768MjMzdfbsWUVFRclisahhw4b67rvvzI6b71ksFr3zzjtasWKFLBaLHB0dVbJkSVksFl26dEnp6ekyDEP9+vXToEGDzI6bb7300kv6+++/tXz5crOj2L39+/erW7duWUpRwzCyFKQ3t2KpVq2afvnlF1NyArbGj24AAAAAO1CuXDlt2rTJ7Bj52sKFC7V582bVrl1bn3/+uSpWrJjl/pkzZzR06FCFh4dryZIl6tixo0lJ7cO8efO0fPlylS9fXiNHjtQzzzxjXbGbmpqqDRs2aMKECZo2bZoef/xxPfvssyYnzp9ef/11DRgwQIsWLVKnTp3MjmPXvvvuO6WmpqpVq1bq0KGDNm7cqAULFmj69OnKzMxUeHi4FixYIC8vL4WEhJgdF7AZVo4CAAAA+dzVq1f13HPPyWKxaMuWLWbHybeCg4N18uRJrVmzRsWLF892JiEhQS1atFC1atU0f/58Gye0L0FBQYqOjtbKlStVtmzZbGfOnj2rNm3aqFatWpo7d66NE9qHjRs3atGiRVq3bp3q16+vOnXqyM3NzbpC8XZ9+/a1cUL70bBhQzk4OGjt2rVycnLS7t271bVrV02dOlXNmzeXJC1ZskSjRo3S0KFD1adPH5MTA7bBylEAAAAgD7vXo6oZGRmKi4vTsmXLdOnSJbVr186GyezPiRMnFBAQcNdiVJKKFy8uPz8/7d6924bJ7NOZM2f09NNP37UYlaSKFSsqICBAu3btsmEy+/LGG29YH93evXu3du/enW0xarFYZBgG5Wguunz5sho2bGhdQV2tWjVJN/YhvVmOduzYUdOmTVNoaCjlKOwG5SgAAACQhw0fPvyuK7BuslgsKlOmjAYPHmyjVLifmwcDIfd4eHgoKSnpvnNpaWlycXGxQSL71L9///v+HQXbKFy4sAoUKGC9Llq0qDw8PPTHH39kmatRo4bCw8NtHQ8wDeUoAAAAkIe1a9fursWDYRgqXLiwqlevrueff15FihSxcTr74uXlpV27dikxMVHu7u7Zzly+fFm7du1SlSpVbJzO/rRv317Tp0/X2rVr77qf6KFDh7Rjxw716NHDxunsx8CBA82OgP/j5eWlqKgoZWZmysHBwfrawYMHs8wlJyebEQ8wDeUoAAAAkIdNnDjR7Aj4Px06dNC4ceP05ptv6vPPP5enp2eW++fPn9fQoUP1999/q23btialtB89evTQkSNHNHjwYL300ksKDAxUpUqV5ODgoAsXLmjTpk367rvvVKpUKTVs2FB79uzJ8v769eublBzIHS1atNDkyZM1bNgwDR06VBUrVpSfn59mzJihpUuXqkOHDtq/f7927NjBD3BgVziQCQAAAAByQEZGhl555RXt2rVLjo6Oqlu3rsqXLy9Jio6OVmRkpNLT0+Xr66sffvhBjo6sVclN3t7e1r0u77a6+m73DMNQVFRUbkfMl6ZPny5J6tKli9zd3a3XD4o9R3PP9evX9fLLLysqKkpNmjTR9OnTFRcXp5YtW+r69esqWbKkLl26JIvFopEjR6p79+5mRwZsgnIUAAAAyOMuXbqklStX6syZM0pJSbnrnGEYGjNmjA2T2Z/U1FR99tlnWrhwoa5fv57lnouLizp16qShQ4eqYMGCJiW0H/9rsTNnzpwcSmJfbpbSoaGh8vLysl7fz82i+vDhwzZIab9SUlI0d+5cFSpUSF27dpUkbd++Xe+//76io6NVqFAhde/eXUOGDLE+eg/kd5SjAAAAQB527Ngxde3aVVevXtX9vrSneLCdlJQUHThwQBcvXpQklS5dWrVq1VKhQoXumL18+bKSk5NVrlw5W8cEctxXX30lwzDUrVs3eXh4WK8f1IABA3IxHe4lISFBHh4elKKwO5SjAAAAQB7Wq1cvbdmyRb6+vnr22Wfl5uZ2zyKiffv2NkyHBzF8+HCtXLmSx7gfEnw8AMC+sMkNAAAAkIcdPHhQXl5e+umnn1jtk4exZuXhwscj50ydOlXe3t5q3rz5PecWLVqkvXv3asKECTZKlv+NHj36v34v27DAnlCOAgAAAHlc1apVKUYBPJSmTp2qtm3b3rccXb9+vbZu3Uo5moNCQkL+6/dSjsKeUI4CAAAAedhTTz2lvXv3KjU1Vc7OzmbHAWDnJkyYoKSkpCyv7d27VyNGjLjre65evaqNGzeqRIkSuR3PrlA0Aw+GchQAAADIw4YPH67g4GC9/fbbGjlypMqUKWN2JAB27JFHHtHYsWOt14Zh6MyZMzpz5sx939ujR4/cjGZ32GMaeDCUowAAAEAeVq5cOb355psaO3as1qxZIzc3N3l4eNx1ftWqVTZMB8DedOnSRe7u7srMzJTFYtG7776r+vXr66WXXsp23jAMFSxYUJUqVVL16tVtnBYAKEcBAACAPG3lypUaN26cpBuHyCQmJioxMTHb2XudYg8AOcHBwUEvvPCC9Xrx4sVq2LChgoKCTExln1577TUZhqGPP/5Ynp6eeu211x74vYZhaNasWbmYDnh4UI4CAAAAedi3334ri8WiV199VYGBgSpWrBglKICHxpw5c8yOYLe2bt0qwzCUnJxsvX5Q/DsCe0I5CgAAAORhp0+fVoMGDfTuu++aHQVjN+psAAAgAElEQVQAspWamqrQ0FD5+PjIy8tLkrRu3TpNnjxZsbGxql27tt577z3VrFnT5KT5y+zZsyXd2H7l1msAWVGOAgAAAHlY8eLF5ebmZnYMAMjW5cuX9fLLL+vUqVMaM2aMvLy8dOrUKQ0aNEjp6emSpJ07d6p79+76+eefVbFiRZMT5x9+fn73vAZwg4PZAQAAAAD89wIDA7V9+3bFxsaaHQUA7jBz5kydPHlSDRo0UO3atSVJ8+bNU3p6ujp27Ki9e/dq7Nix+vvvvzVt2jST0+Kmo0ePmh0BsBlWjgIAAAB52MCBA7V792517dpVvXv3lo+Pj9zd3eXomP2X+p6enjZOCMCerVu3Tp6envrhhx/k5OQkSVq7dq0Mw1Dfvn3l4uKi4OBgzZ8//x/tiYn/zqFDh7Rw4ULFxMQoLS1NFovFes9isSglJUXx8fE6f/68oqKiTEwK2A7lKAAAAJCHNW/eXOnp6bp8+bLGjBlzz1nDMPhmNxd99NFH8vLyUo8ePf7R+6pWraonnngil1LhnypWrJjKli1rdox849y5c2rcuLG1GP3jjz8UExOjRx55JMsj9BUrVtTx48fNimkX9u/fr27dumUpRQ3DyFKQ3jyIqVq1aqZkBMxAOQoAAADkYc7OznJ2dlbhwoXNjmL3li9f/l+Vo3379lXfvn1zKRVSU1OVmZmpQoUKSZKSkpK0cOFCxcbGqk6dOnrhhReyrLQeOXKkRo4caVbcfKdw4cJKSUmxXm/cuFGSFBAQkGUuLi5OLi4uNs1mb7777julpqaqVatW6tChgzZu3KgFCxZo+vTpyszMVHh4uBYsWCAvLy+FhISYHRewGcpRAAAAIA9bt26d2RFwixIlSpgdAbeYOnWqZs2apfHjxyswMFDXr19X586d9eeff8pisWj+/PlasmSJvv/+e+vKRuSsKlWqaPfu3UpISJC7u7uWL18uwzDUrFkz60xkZKT27dvHCupctnfvXpUuXVqTJ0+Wk5OTihQponnz5iktLU3NmzdX06ZNVbNmTY0aNUo//vij+vTpY3ZkwCY4kAkAAAAAckCnTp0UHh6uDRs2mB0Fkn799VdNnTpVGRkZ1seGQ0JCdOrUKVWqVEmjR4+Wn5+fIiIiNHv2bJPT5l/BwcG6evWqWrdurRYtWujw4cOqUKGCGjVqJEn68MMP9corr8hiseill14yOW3+dvnyZdWsWdP6g4Cbj84fOnTIOtOxY0dVqFBBoaGhpmQEzMDKUQAAACAPuXDhgiSpVKlScnBwsF4/KA5kyj3lypVThQoV1K9fP5UvX17e3t5yd3eXg8Oda1IMw7jvHrH434SEhMjJyUmLFi2St7e3JCk0NFSGYeiDDz7Qk08+qeDgYDVr1kwrVqxQr169TE6cP7Vr105JSUn64osv9Ndff6lKlSr6/PPPVaBAAUnSzp07lZaWplGjRikwMNDktPlb4cKFrf/fJalo0aLy8PDQH3/8kWWuRo0aCg8Pt3U8wDSUowAAAEAe0rhxYzk4OGjlypXy8vJS48aNrQdo3A8HMuWucePGWX8dHR2t6Ojou85Sjua+o0ePys/Pz1qMJiYmKjIyUq6urvL395d0Y8/eOnXqaNu2bWZGzfd69Oihl156SVevXlXx4sWz3BszZoyqVasmNzc3k9LZDy8vL0VFRSkzM9P6QxsvLy8dPHgwy1xycrIZ8QDTUI4CAAAAeUi5cuUkyXqAzM1rmG/ChAlmR8AtUlNT5erqar3esmWLMjMz5evrm2U1b0ZGhjIzM82IaFecnZ3vKEYlsc+oDbVo0UKTJ0/WsGHDNHToUFWsWFF+fn6aMWOGli5dqg4dOmj//v3asWOHqlSpYnZcwGYoRwEAAIA85PYDmDiQ6eHRvn17syPgFhUqVNCxY8es12vXrpVhGNa9LqUbK+QiIyNVvnx5MyLmS8uXL5ckNWvWTK6urtbrB9WmTZvciAVJ3bp1U2hoqH777Tddu3ZN06dPV7du3TR79myNGjVKX3zxhS5duiSLxaLg4GCz4wI2Y1hu7kwNAAAAAMgRaWlpOnz4sGJjY1WyZEk1aNBAMTExrPS1oQkTJmj27Nlq27atPD09NXPmTDk4OGjDhg0qUaKEdu/erS+//FIRERHq3bu3hg4danbkfMHb21uGYSg0NFReXl7W6wd1+PDhXEyHlJQUzZ07V4UKFVLXrl0lSdu3b9f777+v6OhoFSpUSN27d9eQIUOy3S8ZyI9YOQoAAADkE4mJibp27do9HxGmnMtdaWlpmjp1qubNm6erV69KurESrkGDBho+fLiuXbumL774QpUqVTI5af43YMAARUZG6ueff7a+9vbbb6tEiRKSpMGDBys+Pl5169ZVnz59zIqZ77Rr106GYaho0aJZrvFwKFiw4B2HjwUEBCgsLEwJCQny8PCgFIXdYeUoAAAAkMf9+OOPmjVrluLj4+85x4FMuSstLU29e/fWjh07VLBgQdWsWVN79uxRUFCQJk2apA4dOigqKkolS5bU0qVLVbp0abMj53upqakKDQ1VfHy8fH195ePjY703efJklS1bVsHBwXJ2djYxJWAb/fv3V9u2bdWkSRP+zAO3oBwFAAAA8rCQkBCNHj1akuTi4qJixYpZD2vKzurVq20Vze58//33mjRpkpo1a6Zx48apePHi8vb2tpajqampGjt2rEJCQtSjRw+NHDnS7Mj52uHDh1WjRg2zYwAPjZtbHBQtWlTPPfec2rRpI19fX7NjAaajHAUAAADysPbt2+vo0aMaO3as2rdvz+OQJgoKCtKlS5e0du1aFSpUSJKylKPSjZPRmzdvLhcXF4WGhpoZN9/z9vZWmTJl1LhxYzVt2lRPPvmkChYsaHasfO+fHsB0Ow5kyj3r16/XihUrtH79eiUnJ8swDJUtW1Zt2rRRUFCQqlatanZEwBSUowAAAEAe5uPjo9q1a2vu3LlmR7F7Pj4+aty4saZMmWJ97fZyVJIGDhyozZs3a9++fWbEtBuDBg3Stm3bdOXKFRmGoYIFCyogIEBNmjRRkyZNVKZMGbMj5kv/9ACm23EgU+5LSUnR2rVrFRoaqk2bNik1NVWGYahGjRpq27atWrdurZIlS5odE7AZDmQCAAAA8jBXV1cVKVLE7BjQjYNOEhIS7jsXFxfHCkYbmDJlijIyMrR3715t2rRJmzZt0saNG7VhwwYZhqFq1aqpSZMmatq0qerWrWt23HyDA5gefgULFlRgYKACAwN19epVrVmzRqGhodq2bZsmTpyoTz/9VAEBAZo5c6bZUQGbYOUoAAAAkIcNHz5c4eHhWrNmDSWpyV577TVFRERo2bJl1sdTb185evz4cbVv317+/v6aNWuWmXHtUnx8vDZt2qTw8HBt3bpViYmJkqTixYtry5YtJqfDrU6ePKlLly6xJ6aNpKWlafXq1fr00091/vx5GYbBKl7YDTYkAgAAAPKwYcOGqUCBAho2bJjOnj1rdhy79sorryg1NVV9+vTRhg0blJycbL1nsVi0detWvfnmm8rIyNDLL79sYlL7VbJkSfn4+MjX11d+fn4qUKCALBbLA634hW1NmzZNPXr0MDtGvpaamqqwsDANGzZM/v7+evvtt3X+/HnVqlWLA+NgV1g5CgAAAORhgwcP1oULFxQZGSlJcnd3l5ub210fa121apUt49mdr7/+Wl999VWW//+FChVSRkaG0tLSZLFY9Morr+i9994zMaV9OXLkiCIiIrRz507t3r3bWoRaLBZVrFhRfn5+8vf3V1BQkMlJcavhw4drxYoVrF7MYenp6dqyZYtCQ0O1du1a/f3337JYLCpXrpyCgoIUFBSkKlWqmB0TsCn2HAUAAADysNvLzsuXL+vy5cvZzrIPYO7r37+/6tWrp1mzZmn37t26fv26rl27JkdHRzVo0EA9e/ZUixYtzI5pF/r166c9e/YoKSlJ0o0ytHz58mrXrp38/f3l7++vsmXLmpwSsJ2RI0dq7dq1SkpKksVikZubm4KDgxUUFKQnnnjC7HiAaShHAQAAgDxs7dq1ZkfAbZ566ik99dRTyszM1OXLl5WRkSEPDw85OTmZHc2urF+/XpLk6OioVq1aqXfv3vL29jY5FWCepUuXytHRUc2aNVNQUJCaNm0qZ2dns2MBpqMcBQAAAPKw8uXLmx0Bd3HhwgVdvHhRjo6OcnBwUIkSJcyOZFd69eql7du36/Dhw1q5cqV+++03Pfroo9bH6J944gkVK1bM7JiAzfzrX/9SYGCgPDw87jt7+fLlB5oD8gP2HAUAAACAHJKenq4ffvhB8+fPV2xsbJZ7VapUUc+ePdWpUyeT0tmnpKQk7dy5U1u3btWOHTv0xx9/SJIcHBxUtWpV+fv7y8/PTy1btjQ5KW7FnqO548KFC/r5558VExNj3Qf5JovFopSUFMXHx2vfvn06cOCAiUkB26EcBQAAAPKQVq1aSZJmzZqlChUqWK8fFAcy5Z6UlBT16tVLu3fvtu5vWaZMGUnSuXPndP78eRmGocDAQH322Wcmp7VfcXFx2rlzpyIiIrRixQpdvXpVhmEoKirK7Gi4BeVozjt16pQ6d+6sK1euWEtRwzCy/Fq6UZK6u7trx44dpmUFbInH6gEAAIA85PTp0zIMQ2lpadbrB8WBTLlr5syZioiIUN26dTVu3Dg9+uijWe7v379fo0aNUmhoqOrXr6+uXbualNR+xcTEaNu2bdZVpFeuXJEkFSlSxORkQO6bNm2akpKSVL9+fbVu3Vq7d+/W77//ro8++kipqakKDw/Xhg0b9Nhjj2nZsmVmxwVshpWjAAAAQB5y7tw5SZKnp6ccHR2t1w+KPUpzT6tWrXTlyhWtXr36rmVbfHy8nn/+eZUpU0bLly+3cUL789dff2n79u3atm2btm/frrNnz0q6sTLu0Ucf1TPPPKMmTZqoQYMGKlCggMlpcStWjua8xo0bKyUlRevWrVPhwoW1bds2vfbaa5oxY4YaNWok6UaBOmXKFP3rX/9Sly5dTE4M2AYrRwEAAIA85PZyk7Lz4REbG6smTZrccxViyZIl5e/vr02bNtkwmX1q166djh07JovFIovFokKFCumZZ56xFqJ87sDeJCQkKCAgQIULF5YkVa9eXRaLRQcOHLCWo2+88YbmzZunZcuWUY7CblCOAgAAAHnc/PnztWjRIp0+fVqpqan3nD148KCNUtmfsmXL6sKFC/edS0xMVMmSJW2QyL4dOXJE5cqVU5MmTdS4cWMFBASoYMGCZscCTOPs7CwXFxfrdfHixVWkSBHrIWXSjYPK6tSpw36jsCuUowAAAEAetmjRIo0ZM0bslmW+rl27asKECVq6dKk6dOiQ7czGjRsVERGht956y8bp7M+KFSvu2PcVsGePPPKIjh49muU1Ly8vHTp0KMtr6enp1n2tAXtAOQoAAADkYXPmzJGDg4M+/PBDtWrVSm5ubmZHshu37xnq4eEhLy8v66FLrVu3Vvny5VWoUCFdvHhRW7ZsUUhIiHx8fOTn52dSavtxsxhNT0/X6tWrtXPnTp0/f17169dXnz59FBISotq1a8vb29vkpPnbrl27VKJECVWpUuWec3v37tXx48fVqVMnSZKvr68cHaksclLjxo317bff6pNPPtGAAQPk6uqqevXqac6cOQoPD1fDhg119uxZ7dy5k20nYFc4kAkAAADIw+rWrasGDRpo1qxZZkexO97e3jIMI8trt357dfu9W+87ODgoKioqdwNCBw8e1FtvvaVz587JYrHIMAy1adNGkyZNsu5J+u6776pnz55mR823vL291bZtW33yySf3nBs0aJDCw8O1Z88eGyWzP4mJierQoYNiYmLUqFEjzZgxQ2fOnNHzzz+vAgUKqGbNmjp+/LiSk5PVv39/DRgwwOzIgE3wYxgAAAAgD/P09OSRepO0a9cu2wIUD4fo6Gi99tprunLlilq2bKmGDRtq9OjR1vtNmjTRyZMnNXHiRHl7e8vf39/EtPnH8uXLlZGRkeW1M2fO6Oeff77re65cuaIdO3bIwcEht+PZNXd3dy1atEhTp05V8eLFJd141H7ixIn64IMPtG/fPklSYGCgevfubWZUwKZYOQoAAADkYTNmzNA333yjpUuX3vexVcCejBgxQj///LMmTpyotm3bSrqxijEoKEiTJk2SJG3evFm9e/dWkyZNNH36dDPj5hvjxo3T3Llz//EPDiwWywOtMEXuSE5O1okTJ1S2bFmVKlXK7DiATbFyFAAAAMjDXn/9dR0+fFhdunRRz5495e3tLQ8Pj7vO169f34bpAPOEh4erRo0a1mI0O40aNVLdunV1+PBhGybL39566y2lpKRYV7QvXrxYlSpVkq+vb7bzhmGoYMGCqlSpknW/Udhe4cKFVadOHbNjAKagHAUAAADysLS0NGVmZioxMVFfffXVPWcNw2Cfy1yWmpqqzZs368yZM0pJSbnnbN++fW2Uyj5dvnxZ9erVu+9cyZIl+bzIQUWKFNHYsWOt14sXL5aPj4/GjRtnYioAuDvKUQAAACAPmzRpklatWiXDMFS1alUVK1bM7Eh2KyYmRt26dVNsbOw9524eDEQ5mrtKlSqlEydO3Hfu+PHjKlmypA0S2acjR46YHQEA7olyFAAAAMjDVq1apaJFi2rOnDny9vY2O45dmzhxomJiYlS5cmU1atRIbm5uHNhkokaNGmnRokWaN2+eXn755Wxn5s2bp9OnT/M4tw2cO3dOrq6u1m0/oqOjNXPmTMXGxqp27drq2bOnihYtanJKAPaIA5kAAACAPKxu3bp66qmn9M0335gdxe49/fTTKliwoFauXCkXFxez49i9CxcuqG3btkpMTFSLFi3k7++vsWPH6umnn1a7du20ceNGrVy5UkWKFNGyZctUoUIFsyPnSxkZGXr//ff1888/a9KkSWrTpo0SExPVunVrXbp0ybqSumrVqlqwYIGKFClidmQAdsbB7AAAAAAA/nuPPvqo4uLizI4BSSkpKapVqxbF6EPC09NT33//vcqXL6/Vq1db97zcunWr3nnnHa1YsUIlSpTQtGnTKEZz0fz587Vs2TJ5eHhYV4YuWLBA8fHx8vHx0bfffqugoCCdOHFCM2fONDktAHvEylEAAAAgD1u9erUGDRqkCRMmqH379mbHsWt9+vTR6dOn9fvvv/M4/UMkLS1Na9as0fbt23X+/HllZGSodOnSeuKJJ9S6dWsVKlTI7Ij5WufOnXXs2DGFhoaqbNmykqT27dvryJEjWrBggXx8fJSZmamWLVvK2dlZoaGhJicGYG8oRwEAAIA8LDw8XHPmzNGmTZtUq1Yt+fj4yMPDQ46O2R8vwCFAuefo0aN66aWX1LFjRw0bNowVpICkBg0ayNfXV9OnT5ckxcXFqVGjRipWrJi2bdtmnRs4cKA2b96sffv2mRUVgJ3iQCYAAAAgD3v99ddlGIYsFosOHDigAwcOSNIdKxc5IT33Va9eXaNGjdL777+vZcuWqVKlStbDZ25nGIZmzZpl44SA7VksFjk5OVmvN2/eLEny9/fPMpecnMyKawCmoBwFAAAA8rD+/ftTKDwktm7dqg8//FCS9PfffysqKuqus3zMcl6tWrUkSStWrFDlypWt1w/q4MGDuRHL7lWqVEmHDh2y/oBm9erVMgxDjRs3ts4kJCRoz549qlSpkolJAdgrylEAAAAgDxs4cKDZEfB/vvzyS6Wnp6tly5YKDAxUsWLFKEFtKD09XdKNlYq3XsNczz77rKZOnapXX31VJUqU0IYNG+Tq6qrmzZtLkpYvX65p06bp+vXrCgwMNDktAHvEnqMAAAAAkAPq1asnLy8vLV261OwowEMjNTVVw4YN05o1ayRJjo6Omjhxol544QVJUrNmzRQTE6OWLVvqs88+y/IIPgDYAitHAQAAACAHuLq6qly5cmbHwP9JSEhQ8eLFzY5h95ydnfXVV18pIiJCcXFxqlevnsqUKWO9/8orr+iRRx5RkyZNzAsJwK6xchQAAAAAcsC//vUvrVq1SmFhYSpatKjZcexerVq11LBhQwUFBal58+ZydnY2OxIA4CFEOQoAAAAAOeCvv/5S586d5erqqiFDhsjHx0fu7u5mx7JbTz/9tC5duiTDMOTq6qqWLVsqKChIAQEBZkezSwkJCVq4cKF27dqluLg4OTs7q2TJkvL391ebNm1UqlQpsyMCsFOUowAAAACQA1566SUlJSXp1KlT1tcMw5CDg0O285yOnrsyMzO1fft2rVixQmFhYUpKSpJhGPL09NQLL7ygNm3aqHr16mbHtAvh4eEaOnSorly5otsrCMMw5ObmpkmTJmU5wR4AbIVyFAAAAABygLe39z+aP3LkSC4lwe3S0tK0adMmrVy5UuvXr9e1a9dkGIaqVaumtm3bqnXr1vL09DQ7Zr508uRJdezYUdevX1e7du3UunVrVahQQRkZGYqOjlZoaKh+/fVXubi4aNmyZapUqZLZkQHYGcpRAAAAAIDduH79utavX6/Vq1dr8+bN+vvvv1WgQAFW8uaSd999V7/++qvGjx+vDh06ZDuzZMkSjRo1Sp06ddKYMWNsnBCAvcv++Q4AAAAAAPKhjIwMpaenyzAMSbrjMW/krG3btql69ep3LUYlqWPHjvL29taWLVtsmAwAbnA0OwAAAAAAALnp2rVrWrdunUJDQxUeHq7U1FRZLBb5+PgoKChIgYGBZkfMtxISEtSgQYP7zlWuXFnr1q2zQSIAyIpyFAAAAABywLPPPvvAs4ZhKCwsLBfTICUlRRs2bFBoaKg2bdqk69evy2KxqGLFigoKClJQUBD7W9pAsWLF9Oeff9537vTp03Jzc8v9QABwG8pRAAAAAMgB586du++MYRjy8PBQgQIFbJDIvj355JO6du2aLBaL3N3d1bZtW7Vt21b16tUzO5pdCQgI0IoVK7RixQq98MIL2c4sX75chw8fvut9AMhNHMgEAAAAADngwoUL2b6ekZGhpKQk7du3T9OmTVP16tX1zTffyNGRtSq5qXbt2mratKmCgoLUuHFjOTk5mR3JLp04cUIdOnRQRkaGgoOD9dxzz6l8+fKSpOjoaP3+++9avHixChQooMWLF6tatWomJwZgbyhHAQAAAMBGTp48qaCgIL355pt68803zY6TryUlJfGY9kMiLCxMb7/9tq5fv249COsmi8UiFxcXTZo0SS1atDApIQB7RjkKAAAAADbUq1cvnTlzRmvWrDE7it2IjIzUzp07df78eXl7eys4OFjr16+Xj4+PihcvbnY8uxAXF6eFCxcqIiJCFy9elMViUenSpeXr66vg4GB5enqaHRGAneI5DgAAAACwIScnp7s+go+cFR0dreHDh2vfvn3W19q0aaPg4GB9/fXXOn78uD799FO1bNnSxJT2oVSpUhowYIDZMQDgDg5mBwAAAAAAe3Hs2DFt27aNVXI2kJCQoO7du2vv3r16/PHH9cYbb+jWBycfe+wxpaamasiQIYqKijIxKQDATKwcBQAAAIAcMHr06LveS09PV3x8vHbs2KG0tDRO5baBb775RrGxsRoyZIjeeOMNSdL06dOt9ydMmCBfX1+NHDlSM2bM0JdffmlW1Hzv6NGj+s9//qOjR48qKSlJmZmZd51dtWqVDZMBAOUoAAAAAOSIkJCQB5pr2rSp+vbtm8tpsG7dOlWpUsVajGanQ4cO+umnn7R//34bJrMv+/fvV7du3ZSWlqb7HXly+2FNAGALlKMAAAAAkAMmTJhw13uGYcjV1VXVqlVTpUqVbJjKfsXFxalZs2b3natUqZI2bNiQ+4Hs1JQpU5SamqpmzZqpZ8+eKlu2rAoUKGB2LACwohwFAAAAgBzQvn17syPgFh4eHjpz5sx9506dOiV3d3cbJLJP+/fvV6VKlTR16lQ5OHDsCYCHD+UoAAAAAOSQmJgYLViwQMePH9e1a9fuureiYRj66aefbJzOvgQEBGjFihVau3atnn322WxnwsLCdPz4cfaAzUVpaWmqXr06xSiAhxblKAAAAADkgKNHj6pbt266evUqeys+BPr166c1a9Zo8ODB6t69u/z9/SVJycnJ2rNnjzZu3KgffvhBTk5Oev31101Om395e3vrjz/+MDsGANyVYbnfv9oAAAAAgPvq37+/1q5dq4CAAHXq1EklS5a8596KDRo0sGE6+xQeHq6hQ4cqKSnpjkLaYrHIxcVFEyZM0HPPPWdSwvxvw4YN6tu3r0aMGKGePXuaHQcA7kA5CgAAAAA5wM/PT25ubvr999/l6MhDemZbtmyZatSoodKlS2vx4sXasWOHzp8/r4yMDJUqVUq+vr7q3LmzPD09zY6ar0yfPv2O13799VedOnVKPj4+qlevnooWLXrXx+z79u2b2xEBIAvKUQAAAADIAfXq1VOjRo00ZcoUs6NA0tNPP63ChQtrzZo1ZkexK97e3tmu0r1ddjOGYejw4cO5mg8AbsePMwEAAAAgB1SvXl2nTp0yOwb+z9WrV9m6wAT9+/dnT10AeQorRwEAAAAgB4SFhWnAgAEaM2aMOnXqZHYcu9e3b1/t27dPv/zyC4/O50EnT57UpUuX5Ovra3YUAPkc5SgAAAAA5ICNGzdq0aJFWrdunerXr686derIzc3trqvo2Fsxd0VEROj9999XQkKCmjdvLm9vb7m7u991r8s2bdrYOCHuZfjw4VqxYgWP2QPIdZSjAAAAAJADbu61eOu3WNkVo+ytaBu3fzzu96g3H4+HC+UoAFthz1EAAAAAyAHstfhwadeuHR8PAMB9UY4CAAAAQA4YOHCg2RFwi4kTJ5odAQCQB2S/2QoAAAAAAAAA5HOUowAAAAAAAADsEuUoAAAAAAAAALtEOQoAAAAAAADALlGOAgAAAAAAALBLlKMAAAAAAAAA7BLlKAAAAAAAAOy4/K8AAA6sSURBVAC7RDkKAAAAAAAAwC45mh0AAAAAAADgVr6+vnJ0pLIAkPsMi8ViMTsEAAAAAADI+2JiYv6n95crVy6HkgDAg6EcBQAAAAAAOcLb21uGYfxX7zUMQ1FRUTmcCADujTXqAAAAAAAgR1SsWPGOcjQpKUmXL1+WJFWuXFnly5eXo6Oj4uLidPToUWVkZMjLy0tlypQxIzIAO8fKUQAAAAAAkCvOnj2rLl26qGLFiho/fryqVKmS5f758+c1cuRIHTp0SHPmzFG1atVMSgrAXlGOAgAAAACAXDFw4EDt2rVLYWFhKlKkSLYzycnJatmypapXr65Zs2bZOCEAe+dgdgAAAAAAAJA/bdu2TX5+fnctRiWpcOHCatCggfbu3WvDZABwA+UoAAAAAADIFY6OjkpISLjv3Llz51S4cGEbJAKArChHAQAAAABArvDx8dHu3bsVFhZ215mQkBAdPHhQ/v7+NkwGADew5ygAAAAAAMgVkZGR6tatmzIzMxUYGKhGjRrJ09NTkhQTE6OwsDCtW7dORYoU0cKFC+84sAkAchvlKAAAAAAAyDXr1q3T6NGjdenSJRmGkeWexWJRxYoVNWnSJNWrV8+khADsGeUoAAAAAADIVcnJyVqzZo0iIiJ08eJFGYah0qVL66mnnlKzZs3k7OxsdkQAdopyFAAAAAAAAIBdcjQ7AAAAAAAAyP8iIyO1c+dOnT9/Xt7e3goODtb69evl4+Oj4sWLmx0PgJ2iHAUAAAAAALkmOjpaw4cP1759+2SxWGQYhtq0aaPg4GB9/fXXOn78uD799FO1bNnS7KgA7JCD2QEAAAAAAED+lJCQoO7du2vv3r16/PHH1bdvX926u99jjz2m1NRUDRkyRFFRUSYmBWCvKEcBAAAAAECu+OabbxQbG6shQ4Zo8eLFeuutt7LcnzBhgsaPH6+MjAzNmDHDpJQA7BnlKAAAAAAAyBXr1q1TlSpV9MYbb9x1pkOHDqpevbr2799vw2QAcAPlKAAAAAAAyBVxcXF67LHH7jtXqVIlxcfH2yARAGRFOQoAAAAAAHKFh4eHzpw5c9+5U6dOyd3d3QaJACArylEAAAAAAJArAgICdOTIEa1du/auM2FhYTp+/Lj8/f1tmAwAbnA0OwAAAAAAAMif+vXrp7CwMA0ePFjdu3e3FqDJycnas2ePNm7cqB9++EFOTk56/fXXTU4LwB4ZFovFYnYIAAAAAACQP4WHh2vo0KFKSkqSYRhZ7lksFrm4uGjChAl67rnnTEoIwJ5RjgIAAAAAgFyVkJCgxYsXa8eOHTp//rwyMjJUqlQp+fr6qnPnzvL09DQ7IgA7RTkKAAAAAABMl5SUJDc3N7NjALAzHMgEAAAAAAByxbPPPqtPPvnkvnNvv/22AgMDbZAIALKiHAUAAAAAALni3LlzunTp0j1nrl69qhMnTigpKclGqQDg/+OxegAAAAAAkCM6deqkAwcO/FfvrVGjhpYuXZrDiQDg3lg5CgAAAAAAcsTo0aNVoEABOTg4yMHh/1cON69v/69AgQJycXFRjRo19NFHH5mYHIC9YuUoAAAAAADIFd7e3goKCtKkSZPMjgIA2XI0OwAAAAAAAMifJkyYoIoVK5odAwDuipWjAAAAAADAdEePHlX16tXNjgHAzrByFAAAAAAA5JpDhw5p4cKFiomJUVpamm5do2WxWJSSkqL4+HidP39eUVFRJiYFYI8oRwEAAAAAQK7Yv3+/unXrlqUUNQwjS0FqGIYkqVq1aqZkBGDfKEcBAAAAAECu+O6775SamqpWrVqpQ4cO2rhxoxYsWKDp06crMzNT4eHhWrBggby8vBQSEmJ2XAB2yMHsAAAAAAAAIH/au3evSpcurcmTJ6tx48Zq3bq1MjMzlZaWpqZNm2r06NEaM2aMTpw4oR9//NHsuADsEOUoAAAAAADIFZcvX1bNmjXl5OQk6f8/On/o0CHrTMeOHVWhQgWFhoaakhH/r737C+2y7P8A/v5uLsyMSQy2igKDnAUKhngWdVKyshApx1o72EH/sIjoqCihf1oHnXiiiGcZplGmgZR0kKHQ0mJZKaOWqfkP/5WlbK3tfg4EecaTP5+nn9/d0P16HW3Xdd3wPvoevPnc9wXVphwFAAAA6mLKlClpbGy88P/VV1+dadOmZXBwcNy5W265Jfv375/oeADKUQAAAKA+pk+fnj179mRsbGzc2rfffjvu3Llz5yY6GkAS5SgAAABQJ3fddVeOHDmSZ599NgcPHkySzJs3L0eOHMn777+f5PyN9n19fbnhhhvKjApUVK0oiqLsEAAAAMA/z9DQUB566KHs2bMnd955Z1atWpXjx4/n7rvvztDQUFpaWnLy5MkURZHnn38+PT09ZUcGKkY5CgAAANTN8PBw1q5dm8mTJ6e7uztJ8vnnn+eFF17Izz//nMmTJ6enpyfPPPNMGhq84ApMLOUoAAAAUIpTp05l2rRpSlGgNMpRAAAAAKCSJpUdAAAAAPhnePHFF//2s7VaLS+//PJlTANwaSZHAQAAgMti5syZf/vZWq2WvXv3XsY0AJdmchQAAAC4LJYvX152BID/iclRAAAAAKCSXAcHAAAAAFSS1+oBAACAunjuuef+67O1Wi3Lli2rYxqA/+S1egAAAKAuLnVBU61WS5IUReFCJqAUylEAAACgLjZv3vyX62NjYzlz5kz6+/vz8ccf57777sujjz6am266aYITAlWnHAUAAABK88knn+Spp57Km2++mXvuuafsOEDFKEcBAACAUj3wwAMpiiLvvfde2VGAinFbPQAAAFCq6667LoODg2XHACpIOQoAAACU5vfff89XX32Vq666quwoQAVNKjsAAAAA8M/04YcfXnRvdHQ0x48fz8aNG3Py5MksXLhwApMBnOebowAAAEBdzJw5M7Va7f88UxRF2tra8s4776StrW2CkgGcZ3IUAAAAqIuFCxdetByt1WqZMmVK2tvb09HRkalTp05wOgCTowAAAABARbmQCQAAAKir3bt3Z/PmzePW+vv788orr+Trr78uKRWAchQAAACok6Io8uqrr6azszNr1qwZtzcwMJC33347XV1dWbFiRUkJgapTjgIAAAB1sWnTpqxduzatra3p6ekZtzd//vwsX748ra2tWbly5X9MlgJMBN8cBQAAAOpi8eLFGRwczJYtW9La2vqXZ44ePZqOjo7MmDEj69evn+CEQNWZHAUAAADqYt++fZk3b95Fi9EkaWtry9y5czMwMDCByQDOU44CAAAAddHQ0JCRkZFLnmtsbExDg4oCmHh+eQAAAIC6aG9vz86dO3Po0KGLnjl27Fj6+vrS3t4+gckAzlOOAgAAAHXR1dWV4eHh9Pb2Ztu2bRkdHb2wNzY2lh07dqS3tzdDQ0Pp7OwsMSlQVS5kAgAAAOpm6dKl2bBhQ2q1WpqamtLS0pIkOXHiREZGRlIURRYtWpRly5aVnBSoIuUoAAAAUFdbt27NunXrsmvXrgvfIJ00aVJmzZqV7u7uLFiwoOSEQFUpRwEAAIAJc/r06YyOjqa5uTlNTU1lxwEqTjkKAAAAAFTSpLIDAAAAAP8Mq1at+n89//jjj1+mJAD/HZOjAAAAwGUxc+bM1Gq1//m5oihSq9Wyd+/eOqQCuDiTowAAAMBlsWTJkr9VjgKUxeQoAAAAAFBJDWUHAAAAAPjll1/KjgBUkNfqAQAAgLo5duxYPvjggxw+fDgjIyP59xdYi6LI8PBwTpw4kf7+/nzzzTclJgWqSDkKAAAA1MW+ffvS2dmZ33777UIpWqvVxv2dnC9Jm5ubS8sJVJdyFAAAAKiLlStX5syZM7ntttty77335ssvv8xHH32Ul156KX/88Ue2b9+eTz/9NDfffHM2btxYdlyggnxzFAAAAKiLvr6+TJs2LWvWrEl3d3cefPDBFEWRa6+9Ng8//HBWrVqVp59+Oj/88EPefffdsuMCFaQcBQAAAOri1KlTmTVrVqZMmZIkaW9vT1EU474t+thjj6WlpcXkKFAK5SgAAABQF1dccUWuvPLKC/9fc801mTp1agYHBy+sNTQ0ZPbs2fnxxx/LiAhUnHIUAAAAqIsbb7wxAwMD49amT5+e7777btzan3/+mZGRkYmMBpBEOQoAAADUyR133JEDBw7kjTfeyNmzZ5Mkc+bMyf79+7N9+/YkycGDB/PFF1/k+uuvLzMqUFG1oiiKskMAAAAA/zy//vprFi1alMOHD+f222/P6tWrc+DAgXR0dKSxsTG33nprvv/++5w7dy5LlizJk08+WXZkoGJMjgIAAAB10dzcnA0bNqSrqyuzZ89Ocv5V+9dffz1NTU3p7+/P2bNn09HRkUceeaTktEAVmRwFAAAA6mr37t356aefcv/9919Y27VrV1avXp0nnngic+bMKTEdUGUmRwEAAIC6KIoir732Wjo7O7NmzZpxe4ODg/nss8/S3d2dFStWlJQQqDrlKAAAAFAXmzZtyltvvZXW1tb09PSM25s/f36WL1+e1tbWrFy5Mps3by4pJVBlXqsHAAAA6mLx4sUZHBzMli1b0tra+pdnjh49mo6OjsyYMSPr16+f4IRA1ZkcBQAAAOpi3759mTdv3kWL0SRpa2vL3LlzMzAwMIHJAM5TjgIAAAB10dDQkJGRkUuea2xsTEODigKYeH55AAAAgLpob2/Pzp07c+jQoYueOXbsWPr6+tLe3j6ByQDOU44CAAAAddHV1ZXh4eH09vZm27ZtGR0dvbA3NjaWHTt2pLe3N0NDQ+ns7CwxKVBVLmQCAAAA6mbp0qXZsGFDarVampqa0tLSkiQ5ceJERkZGUhRFFi1alGXLlpWcFKgi5SgAAABQV1u3bs26deuya9euC98gnTRpUmbNmpXu7u4sWLCg5IRAVSlHAQAAgAlz+vTpjI6Oprm5OU1NTWXHASpOOQoAAAAAVJILmQAAAACASlKOAgAAAACVpBwFAAAAACpJOQoAAAAAVJJyFAAAAACopH8BewpvSRfLwccAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Corrlation matric\n", + "sns.set(font_scale =2)\n", + "plt.figure(figsize =(20, 10))\n", + "sns.heatmap(abb_vis_df.corr(), annot=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 150, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 150, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxEAAAHwCAYAAADZ4OJoAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjMsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+AADFEAAAgAElEQVR4nOzdd3yN5//H8VcSCUJKkBqRRIxzzNpiRlF7U4qiRo2apVqjtKjZUiNW7Zo1a6vUt2aJUVV7RIxYsWkESeT8/vA4989phhwrjb6fj4eH5L7u+7que5yT+3Nf43awWCwWREREREREEskxqSsgIiIiIiLJi4IIERERERGxi4IIERERERGxi4IIERERERGxi4IIERERERGxi4IIERERERGxi4IIEfnPCAsLY+LEiTRp0oTixYtToEABypYtS/v27Vm1ahWPHz9O6iq+kICAAMxmMz169HhpeZ45cybWMrPZjNls5tSpUy+tnH+ThPbvdRyPVq1aGXnG9a9AgQKUKVOGli1bsnjxYmJiYl5KufLyDBkyBLPZTPXq1RO9zciRIzGbzbRo0eIV1gz8/f0xm81s3779hfI5f/68cU0+evTotZcvSS9FUldAROR1WLZsGd988w2PHj3C0dGRzJkz4+3tzaVLl9i5cyc7d+5k3rx5TJkyhSxZsiR1dZPc9evXGT58OKGhoaxYsSKpq5PkkuJ4ZM2alaxZs8Za/vDhQ86dO8e+ffvYt28f27ZtY8qUKTg66rngv0XDhg1ZtGgR586d48iRIxQsWDDB9WNiYtiwYYOxrUhyoCBCRN543333HTNnzsTZ2ZkOHTrQrl07MmTIYKRv27aN4cOHc/ToUT766COWL1+Om5tbEtY46e3YsYONGzdSoECBWGnWmx0vL6/XXa3XIq79S+h4vCqNGzeme/fucaY9evSIadOmMWXKFLZs2cLy5ctp2rTpa6ubJOydd94hZ86chISEsGHDhmcGEXv27OHatWukSpWKmjVrvtK6LViwgKioqDgDVBF76LGFiLzRdu7cyaxZs3BycmLMmDH06dPHJoAAqFixIvPnz8fd3Z1z584REBCQRLVNHnLlykWuXLlwcXFJ6qq8Eslh/1KmTEnPnj0pU6YM8KSlTf5dGjRoAMAvv/yCxWJJcN01a9YAULVqVdKmTftK6+Xt7U2uXLlwdXV9peXIm09BhIi8sWJiYhgyZAgWi4WGDRtSo0aNeNfNnDkzHTt2BJ7ckEVERLyuaoo8twoVKgBxj9WQpFW/fn0cHR25dOkSBw8ejHe9R48eERgYCECjRo1eV/VEXpi6M4nIG2vv3r1cuHABgHbt2j1z/YYNG5IhQwZKlSoV6yndvXv3+PHHHwkMDOTChQs4Ojri6+tLrVq1aNmyJalSpbJZv3Llyly6dIlff/2VcePGsWXLFpydnalUqRLffvvtM9OtNm/ezOLFizly5AgRERFkzpyZd999l44dO/L2228n+liEhoYyb948goKCuHTpEpGRkaRPn57ChQvTqlUrSpcuHavuAEePHsVsNuPp6clvv/0GPBlIDLB27VpMJpNNOYGBgSxZsoTDhw8TERGBh4cHZcqUoUOHDvj6+tqsu3LlSvr378+HH35It27dmDRpEr/99hs3btwgY8aMvPvuu3Tt2jVR+/nBBx9w8OBBRowYQePGjW3Svv32W2bNmkXWrFnZunWrTdq9e/coXbo0Li4u7Nmzh5QpU8bav2cdDyuLxcLy5cv56aefCA4OxsXFhYIFC9KhQwejxeBlc3BwMMqOy759+5g7dy5//vkn9+7dI2PGjJQrV45OnTrh4+MTa/2bN28yffp0goKCuHDhAg4ODnh5eVGpUiXatGlD+vTpjXX37NlD69atKV++POPHj2fs2LFs3ryZ8PBwvLy8aNCgAS1btiRlypSxynn06BGLFi1i/fr1nDlzhpiYGLy8vHjvvfdo27Yt6dKls1m/X79+/Pzzz0yYMIEcOXIwefJk9u3bx/379/H29qZu3bq0a9cuVuuRPfvz9DYzZ87kt99+48qVK6RMmZL8+fPTvHnzBB9E/FOWLFnw8/Nj9+7drF+/nqJFi8a53pYtWwgPDydr1qw2n0Orffv28dNPP/Hnn39y48YNHBwcePvttylTpgwff/wx3t7exrrR0dEUKFAANzc31q1bR//+/fnjjz9IkyYNH3zwAZ9++in+/v6EhYUxY8YM/P39jW0fP37M2rVrWb9+PceOHePu3bu4uLjg7e3Ne++9R5s2beJtJXn06BFTp05lzZo1XL9+nSxZslC9enU6duzIW2+9lehjduHCBWbMmMHvv//OtWvXSJs2LUWKFKFt27b4+fklOh95PdQSISJvrKCgIAA8PDzIlSvXM9d3d3enQYMGZMuWzWb5uXPnqF+/PpMmTeLMmTPkyJGD7Nmzc+zYMb777juaNm3K9evX48zz888/Z9OmTeTIkQMnJ6dYeceXbrFYGDRoEF27dmXnzp04OzuTJ08ebt68yfz586lXrx6HDx9O1HHYuXMnderUYd68eVy5cgVvb2+8vLy4c+cOmzdvpk2bNqxbt85Yv2DBguTIkQMAV1dXihUrlqiBoX369KF79+7s3LkTV1dXzGYzd+/eZcWKFdSvX9942vpP165do1GjRixatAgnJydy5MjB1atX+emnn2jWrBn37t175j5WrFgRgF27dsVKs14HV65cITQ01Cbt999/5/Hjx5QtWzbOm11I/PEYPHgwX375JRcvXsTX15eoqCh+//132rZtyy+//PLMfXgev/76KwCFChWKlTZlyhRatmzJ5s2biYmJwWQyERERYZyPbdu22ax/8+ZN3n//febOnUtoaCg+Pj5ky5aN4OBgpk6dStOmTbl7926sciIiIoyZolKlSoWXlxenT5/m22+/pV27doSHh9usf+vWLZo0acKoUaM4cuQIWbNmxdfXl7NnzzJ16lQaNGgQb8tKUFAQ77//Plu2bMHDw4NMmTIRHBzMuHHj6Nmz5wvvz9GjR6lbty6zZ8/m8uXL5MiRg/Tp0xMUFETPnj3p37//M7smPe3pLk3xzaK1du1a4P9bLp4WEBBAy5YtWbduHVFRUeTJk4eMGTMSGhrKkiVLaNy4MefPn4+V5+PHj+nQoQP79+8nV65cREZGxhk0WkVGRtKhQwf69u3Ljh07SJMmDSaTiVSpUnH8+HECAgJo1aoVUVFRcW7fuXNnpk6dyuPHj8mdOzeXL19mxowZNGrUiLCwsEQdq23btlGvXj2WLl3K7du3yZMnDy4uLmzZsoXWrVszZcqUROUjr5FFROQN1b17d4vJZLK0bdv2ufOIjIy0VK9e3WIymSwtW7a0XLlyxUgLCQmx1K1b12IymSwtWrSw2a5SpUoWk8lkKViwoOXAgQNGXn///Xei0mfPnm0xmUyW8uXLW3bt2mXke//+fcvgwYMtJpPJUrFiRWN9i8VimThxosVkMlm6d+9uLHv06JGlfPnyFpPJZBkxYoTl0aNHRtr169ctbdq0sZhMJkvNmjVt6r9ixQqLyWSyNGzYMNYxMZlMFpPJZDl58qSxLCAgwGIymSzFixe3/Pbbb8byBw8eWEaMGGExmUyWQoUK2WxjLcNkMlmqVatmOXLkiJH2xx9/WAoXLmwxmUyWGTNmxD4x/3D06FGLyWSylC1b1mb5nTt3LHnz5jXKWb58uU16//79LSaTybJ06dIE9y8xxyNv3ryW2bNnW6KioiwWi8Vy7949S6tWrSwmk8lSo0aNZ+6DVcuWLS0mk8kyceLEeNe5d++e5euvvzbK3r59u036pk2bLCaTyVKsWDHL+vXrjeWRkZGWyZMnG2mXLl0y0kaNGmUxmUyWHj16WO7fv28sv3DhgqVq1aoWk8lkmTRpkrE8KCjIKL9QoUKWjRs3GmnHjx+3VKhQwWIymSwjR460qVvr1q0tJpPJUqdOHUtwcLCx/OrVq0ZatWrVLA8fPjTS+vbta5TVsWNHy/Xr1420H3/80Uj766+/nnt/7t27Z6lYsaLFZDJZvvzyS5vP1v79+43P0Zw5c+I5K7Hdv3/fUqRIEYvJZLIEBQXFSr9z546lQIECFpPJZAkJCbFJO3LkiMVsNlvy589vcw4tFovl2LFjlnLlyllMJpPlm2++MZZHRUUZx6JMmTKW8+fPWywWiyU8PNz47FvPy7Zt24zt5syZYzGZTJZy5crZXPcWi8Wybt064zO0adMmY/m5c+eMsvLly2fzGbp48aKlXr16xvl6WlzlX7hwwThOAQEBlsjISCMtMDDQSHv6u0WSnloiROSN9ffffwPE2WUhsdavX8/Zs2fJlClTrOlffX19mT59Oq6uruzfvz/Wk12AatWqGd0YnJ2dY3UHiCvdOvMOPJlZ6umuMK6urnz99dcULlyYK1euPHO60ae7QX3xxRc23T0yZcpE165dATh79uxzv28gIiKC2bNnAzB06FAqVapkpKVKlYr+/ftTpUoVHj16FO/TxG+//dZm5qNixYpRu3ZtgAT7k1vlz5+ft99+mxs3bti8r2HPnj3ExMRQrFgx4EnXkKft3LkTBwcHoyXjRTRs2JC2bduSIsWTnsJubm706dMHgJCQkDif4idkxYoVNG/e3ObfBx98QM2aNfHz82Px4sU4OzszaNAgY2yE1YQJEwAYMGAAtWrVMpY7OzvTpUsXatasSXh4OHPnzjXSrMetbt26Nt35vLy86NOnD5UrV8bd3T3Ouvbp08emq0/evHmNbnkLFiwwWiP2799PUFAQKVOmZNq0aTYthJkzZ2by5MlkyZKFc+fOxXltp0+fngkTJpApUyZjWevWrY0uPU9fK/buz5IlS7hy5QqlSpXim2++sfmsFi9enGHDhgEwffr0eJ/I/5Orq6vxroj169fHSt+0aRNRUVEULVo0Vne/33//HWdnZ2rVqmVzDgHy5cvHBx98AEBwcHCcZX/wwQfGcUmTJk2CEwUEBQXh6OhIz549Y3VRrF27NiVKlEiwrPbt29OkSRPjd09PTyZOnIiTkxNbt2595pidGTNmEBERQePGjenWrRvOzs5GWtWqVenduzcAkyZNSjAfeb0URIjIG8s6TiE6Ovq587AGBnXr1o1z2tcsWbJQtWpVgFj97QGKFCmSYP5xpR84cIA7d+6QKVOmOPtIA8ZNxbNe2FSsWDH++OMPAgMDcXJyipWeOnVq4El3JHteGPW0/fv3c//+fTJkyBBvn/FWrVoZ9f3nS/2sYzP+yXpT9c/uMPGx9u9+ukvT7t27Afj444+BJ+NkrE6cOEFYWBgFCxa0a3xJfN57771Yy56+Sb5z545d+V25coUDBw7Y/Dt48CAhISHkzZuXLl26sHHjRlq2bGmz3YULFwgODsbR0THWzadVnTp1ANvrx3rDOWbMGLZt20ZkZKSRVq1aNaZOnRrni9BSpUplcwNpVbp0aby9vYmKijLOifUzUrFiRTw9PWNtkzZtWmNwcVyfp1KlSsUafwRxXyv27o91jEutWrWMsSZP8/f3J126dNy8eZOjR4/GSo+PtUtTYGBgrO8ia1emuAZUd+zYkUOHDjF8+PA487Ueh4cPH8aZ/qzvnqdNmzaNQ4cOxVmPx48fkyZNmgTLat68eaxlPj4+FC9eHHgyRXJCrMfeel3+k/WBwpEjR7h161aCecnro4HVIvLG8vDwAOD27dvPnce5c+eAJ0/+4pM/f35Wr15trBtXHZ5Vx6dZn/ZFRETE+ccZMJ5qnz17NsH8rVKlSsXRo0c5duwYFy5c4MKFC5w6dcpm++dtibDut9lsjveFZ9ZWhvv373Pjxg0yZ85spMV3A2+9SUrsm8Tfffddli9fzu7du2nTpg3w5Amrq6sr/v7+5MiRg3PnznH58mWyZctm3Ni8++67icr/WeLaD+vNF2B3kNatWzfjPRExMTGcP3+egIAA1q9fz7Vr1yhZsmSc7+qwXj+Ojo7xTihgvRk8f/48FosFBwcH2rVrx4YNGzh79iwdO3YkderUlChRggoVKlClShWyZ88eZ165cuUygtF/ypMnDxcuXDD67Sfm82S9VuL6PD193TzNeq08fQ3buz/Wp+Xz5883plz9J2sLxNmzZxN9k+7n54enpyeXLl1i9+7dRqvR1atX2bdvX4LvhrAGM7t37+b06dOEhoZy/vx5jh07ZozDiu9za29g7OzszJ07d9i/fz8hISFcvHiRs2fPcuzYMSM4i6usdOnSxRrrZZUnTx727t1LSEhIvOXevXvX2JcxY8bEOzbJycmJx48fc/bs2VjTdEvSUBAhIm8s62BYe6a/PHnyJDlz5jSa0+/fvw/Y3gz+kzXNuu7T4vuDmFC69Q92REQEBw4cSHD7xDyl37dvHyNHjrR5eurg4ICPjw9169aN94YpsRJzjJ7uThIeHm5zM/h014UXUbZsWZydndm7dy/R0dHcvHmTkJAQypcvj7OzM35+fpw7d469e/fSoEED4yl85cqVX0r5r/K9EtbZwL7//nucnZ1ZtWoVnTt3Zs6cOcbTXivrNREdHf3M6ycmJob79++TNm1avLy8WL16NVOmTCEwMJDbt2+zY8cOduzYwYgRI6hYsSLffPNNrBv5f86k9DTrNWGtkz3XSlyfp2ddK5anBj3buz/WOibm+8LaVTIxHBwcqFu3LtOmTWPDhg1GELF27VosFgvvvfdevC+3XLRoEVOnTuXatWvGMmdnZ/Lnz4/ZbGbnzp3xlmvP9fjw4UPGjh3LsmXLePDggbE8TZo0FCtWjLCwMJtugk9L6H0T1rT4WjDA9jssMS08iW2ZlFdPQYSIvLEqVqzI6NGjuXnzJidPnjSm7ozP/fv3ady4Mc7OzkycOJEKFSoYfwQT+sNlvaF4WS9vsj7VrVSpkjE24nmdOnWKdu3aERkZSYkSJahfvz5ms5lcuXKRNm1azp49+8JBhD3HCBK+gXwRadKkoWTJkuzatYu//vqLixcvAhhTQ5YuXZolS5awd+9e3nvvPf78808yZ85M/vz5X0l9XpXBgwfz119/cfbsWXr16sWaNWtsxv1Yz4fJZDK6yyRWlixZGDp0KIMHD+bw4cPs3r2b7du3c+DAAbZt20bnzp1ZuXKlTXefp286/8l6TVjHHrzuz5M9+5M6dWr+/vtvVqxY8czZyOzVsGFDpk2bxubNmxkyZAguLi7GuWnYsGGc2yxatIghQ4YY6/j7+5M7d25y5MiBi4sLCxcuTDCIsEe/fv3YuHEjrq6udO7cmSJFipA7d26yZ8+Og4MDPXv2jDeISOj8WwPBhKZ5fboVa//+/fEGVPLvozERIvLGypUrF7lz5wawGUAan59//pmoqChjrnX4/77Wx48fj3c769Ozp+drfxGJaUG5ePEiBw8e5ObNmwnmNX/+fCIjIylTpgzz5s2jadOmFC5c2Bg0evXq1Reur/UYnTx5Mt6uFdZjlDp16pcy/iA+1gHSu3fvNgZRW4MI6/979+4lKCiIqKiol9aV6XVKnTo1w4cPx8HBgbCwMEaMGGGTbp3KMzQ01GYcwNNu3LjB/v37babfvHLlCrt27cJiseDo6EjhwoXp3LkzixYtYs6cOQAcO3Ys1uDahAblnzx5Evj/sSGv8/Nk7/5Yj1tCn7s9e/Zw5syZeI9rfHLkyEHRokW5d+8eu3fv5uzZs5w8eZLMmTNTtmzZOLeZNWsWAJ9++imjRo2iVq1amEwmo4UhsVOnPsvly5fZuHEjADNnzqRXr15UqlQJLy8vI1hMqKw7d+7EO07Bep6t38NxcXd3N4Lg+I59dHQ0u3bt4sKFC4nu3iivnoIIEXmjWWcfWrVqFf/73//iXS80NJSAgAAAmjZtavS5td6Urlu3Ls4uDFevXjXyLV++/Eupc4kSJXB1deXChQtxvvcA4Msvv+SDDz5g1KhRCeZlfUma2WyOc2D18uXLjZ+f/uMc39iGuBQvXpy0adNy+/bteN+HsHDhQuBJa4A9edvr6SBi//79pEmTxggIM2bMSO7cuY059iHxXZleZZ2fR/HixY3ZeVavXs2ePXuMtNy5c+Pp6cmDBw9YvXp1nNuPHTuWDz/8kF69egFP3hNQp04d2rZty19//RVr/RIlShhdif55E3fnzh22bNkSa5tdu3Zx6dIl3NzcjADOGrRt27bNuDafFh4ezqpVq4AX+zw9z/5Y67Z06dI43wWxf/9+WrduTe3atbl8+bLddapfvz4A//vf/4z3e8T1bggraxlxtZQ9ePDAmO3pRSaOAGzOQ1xlnTp1ikOHDgHxj0+KqzXzxIkTHDx4ECcnp1izhz3NwcHBSP/pp5/iXGfVqlW0bduWBg0aJNjyIa/Xv+tbUUTkJatVqxZ16tQhJiaG7t27M2HCBJunZjExMQQGBtK8eXPu3LlDjhw5jBsr6/a+vr7cuHGDLl262Dy5tw7YfPDgAUWLFqVKlSovpc5p06Y1Bgb36dPHJpB4+PAhI0aMICgoCCcnJz766KME87K2amzYsMHmpVR3795lxIgRNi+Ze3rgr7UrybVr15751DVNmjS0bdsWgK+++spmVp1Hjx4xcuRIfvvtN5ydnenRo0eCeb0oX19ffHx8OHjwIGfPnqVEiRLGlKuAMdvV9u3bSZUqVbyzX/2TPcfjdendu7cR7A4ePNiol4ODA126dAFgxIgRNlOLRkdHM3PmTFauXAn8/5vcXVxcqFatGgADBw60GXAfGRnJ999/T1RUFJ6ennE+Vf7qq69sbtYPHz7MF198AcAnn3xiPD0vUaIEfn5+REZG0rlzZ5snz2FhYXTt2pWwsDC8vLzinPEpsZ5nf1q0aIG7uzv79+9nwIABNg8NDh8+bHwvVKlSxfhc2aN27dq4uLjw22+/sXnzZiD+rkzw/y0j8+bNs+n+df78eTp27Gh013vR69Hb29tocfjhhx9sWpV2795Np06djOAhvskBxo0bZxNInjlzhh49emCxWGjYsGGcM3E9rUOHDri4uBhvJX96n7Zt22bMUPXBBx/E+9Zsef00JkJE3ngjR44kVapULF++nClTpjB9+nQ8PT1xc3MjNDTUmOnonXfeYdKkSTZ/pFxcXJg8eTIff/wxe/fupUqVKuTOnZuYmBhOnz6NxWLBbDYzbty4OJ/0P6+uXbsSEhLCL7/8Qtu2bfH09CR9+vScP3/euKEYMmTIM/tut23blrVr13Lt2jVq1apFzpw5gScz30RGRpI3b16uXr3KnTt3uHbtmjFbVJ48eXBwcOD69etUr16dLFmysHjx4njL+eSTTwgJCWH9+vV06tSJbNmykTFjRkJCQrh//z6pU6dm2LBhr2X8QcWKFZk3bx7w/12YrPz8/FiwYAEAZcqUiXO60LjYezxeh3Tp0tGnTx8GDBhASEgIs2bN4pNPPgHg/fff5/Tp08ydO5fevXszcuRIMmfOzMWLF42pZrt27WozLW3fvn35448/OH36NLVr18bLy4s0adIQGhrKvXv3SJkyJSNGjLAJyuBJgJUyZUqaNm1K7ty5cXBw4PTp08CTKTv/GeiOHTuWdu3acerUKWrXrk2uXLlwdnbm9OnTREdH4+npGetz+Dzs3Z+MGTMSEBBAly5dWLlyJevXryd37tyEh4cbAbjZbGbkyJHPVZ+33nqLypUr88svv3D9+nWKFClifB7j0qNHD3r16sXOnTuN2cXu379vzKhVunRpgoKCuH79ujHD1vPInDkzzZs3NwZxL1u2jCxZsnDt2jWuXbtGihQpKFGiBPv377cZ4G3l4eGBp6cnnTt3xtvbG1dXV06dOkVMTAzFixdnwIABz6yD2Wxm1KhR9O3blylTpjBv3jxy5MjBrVu3jBaZ8uXLG++LkH8HtUSIyBvPxcWF4cOHs2TJEpo0aYK3tzfXr1/nxIkTODs7U7FiRcaMGcNPP/0U5xSSuXLlYtWqVXzyySf4+vpy7tw5rly5QqFChRgwYADLli0ja9asL7XOKVKkYPz48YwbN45y5cpx//59Tp48ScqUKalatSoLFy5M1JNaLy8vVq1aRcOGDcmaNStnz57lypUr5M2bl/79+7Ns2TLKlSsHYPMk0dfXl2HDhhnHKjQ0lBs3bsRbjpOTE2PHjmXcuHGULVvWqG/GjBlp0aIFP//8c7xzwL9sT49zKFWqlE1aqVKljJutp1+K9yz2Ho/XpVGjRsaL9KZNm0ZoaKiR1r9/f2bNmkXlypWJiYnhxIkTwJObsSlTpsRqFUqfPj0//fQT7dq1w9fXl6tXr3L69GneeustmjZtytq1a+NsuXFxcWHJkiU0atSIGzducPnyZYoWLcro0aMZM2ZMrKDDw8ODpUuX8vnnn5M/f34uX77M+fPnyZUrFz179uTnn38mb968L3xsnmd/SpYsydq1a2ndujVZs2YlODiYq1evYjKZ6N69O4sXL05wkPCzPN3ykFArBDxpBV24cCHly5fH1dWVkydP8vfff1O+fHkmT57M3LlzyZgxI3fu3HnmLFzPMmjQIEaOHEmhQoWIjIzk5MmTODs7U69ePZYtW8bgwYOBJ2NCIiIibLZ1cXFh9uzZtG7dmocPHxISEoKvry99+vRh7ty5iZ5IoXbt2qxatYrGjRuTLl06Tp48yZ07d3jnnXcYOHAg06ZNe2kzucnL4WCJq+OfiIiISAL27NlD69atSZ8+vc2YDBH5b1BLhIiIiIiI2EVBhIiIiIiI2EVBhIiIiIiI2EVBhIiIiIiI2EUDq0VERERExC56T4TIa3b79n1iYl5d7J4xY1pu3gx/9oryr6LzlvzonCVPOm/Jj85Z0nB0dMDdPf4pehVEiLxmMTGWVxpEWMuQ5EfnLfnROUuedN6SH52zfx+NiRAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbukSOoKiIiIiLwukVGP8fBwS+pqiJ10zmJ7+Ciav+89SLLyFUSIiIjIf4aLsxN1P1ud1NUQeWFrx9bn7yQsX92ZRERERETELgoiRERERETELgoiRERERETELgoiREjiZeIAACAASURBVERERETELgoiRERERETELgoiRERERETELgoiRERERETELgoiJBaz2czq1U/m0O7Xrx9t2rR5rm3j8nR+e/bswWw2c/XqVQAqV67MlClTAIiOjmbu3LnPVf/4LF++nJo1a1KoUCFq1arFihUrbNIjIyMZNWoU5cqVo1ixYnTs2JHQ0FAjPSIigrx582I2m23+JbS/IiIiIm8ivWxOYtm5cydvvfXWK8n7yy+/JCYmJs605cuXkypVKgA2bNjAyJEj7QpgErJp0yYGDx7M0KFDKVmyJEFBQQwaNIj06dNTpUoVAL7++mt27drFmDFjyJgxI8OGDaNLly6sWbMGBwcHTp8+DcDmzZuNegKv7FiJiIiI/FspiJBYPDw8Xlnebm7xv7Y+Q4YMxs8Wi+Wllnvr1i26d+9Oo0aNAPDy8mLhwoXs3r2bKlWqEBoaysqVK5k7dy5lypQBYPDgwbRv354LFy7g4+PDqVOnyJo1K15eXi+1biIiIiLJjbozJVMnTpygQ4cOlChRgoIFC1K9enVWrVrFihUrKFq0KBEREca6kZGRlCxZkmXLlgFPnso3btyYd955h8KFC9OsWTMOHTpkrJ9QF51nbQsQHBxMkyZNKFiwIPXr1+fgwYNGWkLdo6zdmfbs2cMXX3xh1GXp0qWULl2amTNn2qw/fvx4GjRokKjj1bx5czp16gQ86Sq1ceNGzpw5Q7ly5YAnrS8ZMmQwAgiAnDlzsmXLFnx8fAA4ffo0OXPmTFR5IiIiIm8yBRHJUEREBO3atePtt99m6dKlrF69mpIlSzJw4EBKly6NxWLht99+M9bfvn07kZGR1KhRg0OHDvHpp5/SqFEjNmzYwPz58wEYNGjQM8tN7Lbz5s2jWbNmrF69muLFi9O6dWtj3ENiFC1alK+++gp4cnNfr1496tSpw5o1a4x1LBYLa9euTXQQYXX48GHeeecdPv30U+rXr8+7774LwLlz5/Dy8mLt2rXUq1eP8uXL06NHD5t6nz59moiICFq1akXZsmVp1qwZ27Zts6t8ERERkTeBujMlQw8ePKBNmza0atWK1KlTA9CpUyeWLVvGlStXqFq1KuvWraNOnToArFmzhipVquDm5oazszNff/01zZo1AyB79uw0adKEgQMHPrPcxG7bqlUrGjduDMDAgQPZsWMHixcvplevXonaPxcXF9KmTQv8f9eqRo0aMX/+fE6ePInZbOaPP/7g6tWr1KtXL1F5WmXPnp0VK1Zw7Ngxhg8fTsaMGenVqxfh4eGEhIQwZ84c+vfvj4uLC99//z0fffQRa9asIWXKlJw+fZq0adMycOBA3N3dWbduHZ06dWLOnDk2LRjPkjFjWrvq/Dw8POLvNib/XjpvyY/OmYgkpaT8DlIQkQxlzJiRFi1asGrVKo4fP865c+c4ceIEAI8fP6Zhw4Z07NiRu3fv4uTkxNatW5k0aRIA+fLlw83NjR9++IHg4GDOnz/P8ePH4x3s/LTEblu0aFHjZ0dHR/Lnz28MSn5e+fPnJ2/evKxZs4bPP/+cNWvW4O/vbzOOIjHc3d1xd3cnX7583Lx5k8mTJ9OjRw9SpEjB33//zYQJE4wxDxMnTqR8+fJs27aNatWq8euvvwIYgVuBAgU4ffo0P/74o11BxM2b4cTEvNwxH0/z8HDj+vW/X1n+8mrovCU/OmfJkwI/eZO8yu8gR0eHBB98qjtTMnTt2jXq1q3L6tWr8fT0pE2bNsyePdtIL126NJkyZSIwMJDAwEDeeusto+9/UFAQNWvW5Pjx4xQqVIjevXvz5ZdfJqrcxG7r5ORk87vFYsHFxeUF9viJhg0bsn79eiIjI9m4caMxSDox9u7dy/Hjx22Wmc1mHj58yN27d8mcOTOurq42g6YzZsxI+vTpuXjxIvAkeLAGEFYmk4krV668wF6JiIiIJD8KIpKhX3/9lfv377Nw4UI6depE5cqVuX37NvDkht3R0ZF69eqxadMmNm7cSN26dY0b+0WLFlGuXDnGjx9P69atKV26NJcuXTK2TUhitz127Jjxc1RUFIcPHyZ37tx27aODg0OsZfXq1ePGjRvMnj0bR0dHKlasmOj8ZsyYwfjx422WHTp0iIwZM+Lu7k6JEiWIiIjgzJkzRvr169e5ffs23t7e3Lx5kxIlShAYGGiTx5EjR+zeNxEREZHkTt2ZkiF3d3fCw8PZtGkThQsX5sSJEwwfPhx4MhMTQIMGDZgzZw4Wi4U+ffoY22bIkIFt27Zx8OBBMmbMyNatW/nxxx+NbVOmTBlvuYnddubMmXh7e5MvXz5mzJhBeHg4LVq0sGsf06RJAzwZCJ0zZ07SpElDhgwZqFChAlOnTqVJkyZ2tW60adOG9u3bM3PmTKpWrcrevXuZOXMm/fr1w8HBgZIlS1KiRAk+++wzvv76a1KnTs2IESPw9fXF398fFxcXihYtyujRo3FzcyNz5swsX76cP//8k5UrV9q1byIiIiLJnVoikqGaNWvy0UcfMWzYMGrXrs2ECRPo0qULPj4+HD58GHgyPWm+fPnInTs3ZrPZ2LZHjx7ky5eP9u3b07hxYwIDAxk1ahSAsW18Erttly5dmDFjBvXr1+fs2bPMmjXL7rELfn5+lCpViubNm7N06VJjeYMGDXj48KHdszKVK1eOiRMnsmbNGurWrcvMmTMZOHAgzZs3B560fEydOpUCBQrQqVMnmjdvjpubG3PmzDGClbFjx1KhQgW++OIL6tevz4EDB5gzZw558uSxqy4iIiIiyZ2D5WW/1UvkFVqwYAFLlixh7dq1SV2V56aB1RIXnbfkR+csefLwcKPuZ3G/C0kkOVk7tn6SDqxWdyZJFo4cOcKZM2eYNm0aPXr0SOrqiIiIiPynKYiQZOHAgQOMHTuWGjVq8P777xvLw8LCqFGjRoLb1qpVyxgzIiIiIiIvTkGEJAutW7emdevWsZZnypSJVatWJbitdZC2iIiIiLwcCiIkWXNycsLHxyepqyEiIiLyn6LZmURERERExC4KIkRERERExC7qziQiIiL/GZFRj1k7tn5SV0PkhT18FJ2k5SuIEBERkf8MF2cnvd8jmdE7Wf6d1J1JRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETsoiBCRERERETskiKpKyAiIiLyukRGPcbDwy2pqyF2epFz9vBRNH/fe/ASayOgIEJERET+Q1ycnaj72eqkroa8RmvH1ufvpK7EG0jdmURERERExC4KIkRERERExC4KIkRERERExC4KIkRERERExC4KIkRERERExC4KIkRERERExC4KIkRERERExC6vNIjYs2cPZrOZq1evvpT8zGYzq1cnbm5ni8XCqlWruHnz5guVmT9/flauXJmodS9evIjZbGb//v0vVGZCgoOD2bp1a6LXDwgIoGrVqoD99du6dSvBwcHPte1/wYMHD1i4cGFSV0NERETktXtjWyIOHDhA3759efDgzXpDYZcuXTh8+PBzbZs1a1Z27txJ4cKFn7luWFgYnTp1MoIwe7b9r5g7dy6zZs1K6mqIiIiIvHZv7BurLRZLUlfhlXiR/XJycsLDw+O5yrFn2/+KN/UaExEREXmWRLVEhIeHM2TIEMqWLUvRokVp3749ISEhxMTEMGXKFKpVq0bBggUpUaIE3bt359atW3HmExUVxbhx46hYsSJFihShWbNmHDx4EICVK1eSP39+m/XjWmb16NEjRo4cSaVKlShYsCClS5emf//+PHjwgIsXL/Lhhx8CUKVKFQICAgA4deoU7du3p3Dhwvj7+/PVV19x7949I887d+7w2WefUbx4ccqXL8/PP/+cmMMTy4EDB2jUqBEFCxakZs2abNmyxUiLjo5mxowZVKtWjUKFClG3bl02bNhgpN+4cYNu3brh5+dHkSJFaNOmDcePHwegVatWXLhwgUmTJlG5cmW76/XPLkkHDx6kWbNmFClSBD8/Pz7//HPu3LkDQMWKFQFo3bo1/fr1i7Vtq1atGDt2LJ9//jnFihXD39+fb775hujoaKO8bdu2Ua9ePQoVKkSjRo2YO3cuZrPZSF+5ciU1a9akYMGCVKpUiYkTJxITE5Po/blx4wafffYZpUqVomTJkvTo0YNr164Z6cuXL6dOnTq88847VK1alQULFtiU/azrzWw2s3z5cj788EPeeecdatSowZIlS4x1J0yYwKVLlzCbzezZsyfR9RYRERFJ7hIVRHz66afs3r2bsWPHsmLFClxdXfn444+ZPXs28+bNY+DAgWzatImxY8fyxx9/MHXq1DjzGTZsGCtWrGDQoEGsXr2afPny8fHHH8cbdCRk9OjRbNmyhe+++45ffvmFr776ivXr17NkyRKyZs3KlClTAFi2bBnt2rUjLCyMVq1aYTKZ+Pnnn5k4cSLBwcF069bNyLNnz56cOnWKmTNnMmXKFBYsWMDjx4/trtuCBQvo1asX69atI0+ePPTu3dvoVjVq1ChmzZpF7969WbNmDbVr16Z3795s2rQJgCFDhhAdHc2iRYtYuXIladKkoXv37sCT8Q2enp60a9eO5cuX212vpz1+/JhPPvmEMmXKsG7dOqZPn87hw4cZPXo0gBFABQQE8OWXX8aZx5w5c/D19WXFihV06tSJhQsXsn79egCOHTvGJ598QuXKlVmzZg3Nmzdn3LhxxrYnTpzgq6++olevXgQGBjJgwABmzZrFmjVrElX/6Oho2rVrx8WLF5k+fToLFizgxo0b9OjRw6jbN998w0cffcSaNWto37493377LbNnz7brOI0ZM4YPP/yQn3/+mRIlSjB48GAuXbpErVq16NChA1myZGHnzp0ULVrUrnxFREREkrNndmcKCQlhx44dzJs3Dz8/PwCGDh3KDz/8QKZMmRg9ejT+/v4AeHp6UqFCBU6dOhUrn/DwcFasWMHQoUN57733APjyyy9JlSqV8fTbHoULF6Z27doUL14cgOzZs7No0SJOnTqFk5MT6dKlAyBDhgykSZOG6dOnkz17dvr27WvkMW7cOPz9/fnzzz956623CAoKYuHChcYN4ejRo6ldu7bddevWrRsVKlQAoHPnzmzatImQkBB8fHxYvHgxX331FTVq1DDST5w4wfTp06levTrnz5/HbDaTPXt2UqZMydChQwkODiYmJob06dPj5OSEq6srGTJksLteT/v777+5ffs2mTJlwtPTk+zZszN58mSioqKM4waQLl063NzcuHv3bqw88uXLR5cuXQDw9fVl6dKlHDx4kPr16/Pjjz9StGhRPv30UyM9JCTEuIkPDQ3FwcGBbNmyGf/mzJlDlixZElX/3bt3c/LkSTZv3oyXlxfwJEhduXIlDx8+ZObMmXz00Uc0adIEgBw5chAaGsqMGTNo27Ztoo9T48aNqVWrFgBffPEFy5Yt49ChQ9SsWRNXV9fn6uaVMWNau9Z/Hh4ebq+8DHn5dN6SH50zkeRBn9WX75lBhDUgeOedd4xl7u7u9OvXD4A///yTcePGcfbsWUJCQjhz5gwlSpSIlc/Zs2eJioqyySdFihTGTb21W1Ni1a9fn507d/Ltt99y7tw5goODuXDhAtmzZ49z/ePHj3P8+PE4nxifOXOGNGnSAFCgQAFjee7cuY3l9siRI4fx81tvvQXAw4cPCQkJITo6mmLFitmsX7JkSX777TfgycDpvn37EhgYSMmSJfH396dBgwY4Or7cMfDp06enbdu2DB06lICAAMqVK0elSpWoWbNmovN4ej/hyb5ag5Bjx44ZwaVV8eLFjSCiQoUKFC5cmMaNG+Pj40P58uWpVasW2bJlS1TZp06dIkOGDEYAAZAzZ0769OnDzZs3uXHjRpzHeebMmXbN2BXXubTu4/O6eTOcmJhXN57Cw8ON69f/fmX5y6uh85b86JwlT7qZ/G/SZ9V+jo4OCT74fOadaYoU8ccZU6dOpV27doSHh1OhQgVGjx5NvXr14lzX2dk5EdW1lVBXooEDB9KnTx8sFgvVqlVj8uTJlCxZMt71nZ2dKVeuHKtWrbL5FxgYSPXq1XFwcABiD5Z9nnrHdcNvsVhwcXGJc/3Hjx8bx7lGjRrs2LGDYcOG4eHhwZQpU2jQoAE3btywux7P0rdvX/73v//RvXt3IiIi6N+/P5988kmit49rf6zHz8nJKcHxDalSpWLBggUsX76c+vXrc+zYMVq2bMmMGTMSVXZC12XKlCnjXG69nuLbNq7rLaF9FBEREfmvemYQkStXLgCOHDliLAsPD6dMmTKMHz+eHj16MGjQIJo0aUKBAgU4f/58nDdZ3t7epEiRwiafmJgYqlevzvr163F2dubx48c2U7KeO3cuzjo93TWqb9++NGjQAF9fX0JDQ42yrUGBVe7cuTlz5gzZsmXDx8cHHx8fHB0dGTFiBFeuXCFfvnzAk5YVq4sXLz5XV6v45MiRA2dnZ/744w+b5X/88Qe5c+cmOjqa0aNHc+nSJerWrcvIkSNZv349ly5dYu/evXHu1/O6cOECX3/9NR4eHnz44YdMnTqV0aNHs23bNm7evPnC5ZjNZg4dOmSz7K+//jJ+/v3335k8eTKFChWia9eu/PTTTzRr1izRg9lz5crFrVu3uHTpkrHszJkzlC5dmjt37pAlS5Y4j7OHhwfp0qWz63qLz8s6FyIiIiLJzTO7M/n6+lKlShWGDBnC4MGDcXd3Z/z48bi5uZE+fXp27tyJv78/MTExLF68mD///DPOdwm4urrSokULxo0bh7u7Oz4+PsydO5e7d+/i5+fHgwcPcHBwYOLEiXz44YccOnQo3hvKlClT4urqyv/+9z/y5s1LeHg4P/zwA1euXCEyMhLA6IZ0/Phx0qVLR8uWLVm4cCH9+vWjY8eOREZGMnToUO7du0eOHDlwcXEx9nPYsGG4ubkxbNiwl9qNKFWqVLRt25bx48eTPn168ubNS2BgIIGBgXz//fekSJGCo0ePsn//fgYOHEiGDBlYu3Ytzs7ORjerNGnScO7cOcLCwsicOfNz18Xd3Z2NGzcSGRnJxx9/DMDGjRvx9vbG3d2diIgIAE6ePInJZLI7/7Zt29KwYUMCAgKoW7cuBw8eZP78+Ua6s7MzkydPxs3NjUqVKnHjxg327NlDkSJFEpV/2bJlKVCgAH379qVfv36kSJGCoUOHkitXLrJnz84nn3zCyJEj8fb2plSpUuzZs4cFCxbQo0cPHBwcKFKkSKKvt/ikSZOGu3fvEhISgqenZ7wtICIiIiJvmkTdIY8aNYpChQrRpUsXmjZtSlRUFDNnzuTbb7/l3r17NGzYkLZt2xpTpAYHB8f5krfPP/+cmjVrMmDAABo0aMCZM2eYNWsWmTJlwsvLi8GDB7Np0yZq1qzJ0qVL+eKLL+Ksj7OzM+PHj+fo0aPUqVOHLl26kC5dOtq1a2e0dOTOnZvq1avTq1cvJk6ciIeHB3PmzOHGjRs0bdqUjz/+mKxZszJnzhyjy8qYMWPw8/Oja9eutGnThkqVKr30dyP07NmTDz74gBEjRhjTu37//ffGWISxY8eSPXt2OnXqRK1atdi8eTOTJ0/Gx8cHgDZt2rB9+3bq1atn13So/+Tm5saMGTMIDQ2ladOmvP/++zx69Ijp06fj6OhI2rRpadWqFWPGjGHgwIF25583b14mTJjA+vXrqVOnDgsXLqRZs2ZG97BSpUoxYsQIli5dSu3atenatSslS5aMdyaof3J0dGTKlCm4u7vTqlUrPvroI7JmzcrEiRMBaNasGb169eKHH36gdu3azJkzh379+hkBkz3XW3yqV6+Op6cn9erVs+st4iIiIiLJnYNFHbzlFTh06BAuLi7kzZvXWDZ9+nSWLl3K5s2bk7BmSU8DqyUuOm/Jj85Z8uTh4Ubdz1YndTXkNVo7tr4+q8/hhQdWizyPY8eO8dFHH7F9+3YuX77M1q1b+fHHH+MdeC8iIiIiycczx0TIE507d37mW4n379+Pk5PTa6lPWFiY8a6J+NSqVYvhw4e/lvr8U9OmTbl27RqDBw/m2rVrvP3227Ro0YJOnTo9c9t/27EWEREREVvqzpRIYWFhPHz4MMF1rOMWXofHjx9z8eLFBNdJkyYNmTJlek01enn+bcf6ZVN3JomLzlvyo3OWPKk703+PujM9n2d1Z1JLRCK9yExIr4KTk1OyvpFOyL/tWIuIiIiILY2JEBERERERuyiIEBERERERuyiIEBERERERu2hMhIiIiPxnREY9Zu3Y+kldDXmNHj6KTuoqvJEURIiIiMh/houzk2bqSWY0E9q/k7oziYiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXRREiIiIiIiIXVIkdQVERESSG7e3UgPg4eGWxDURe0VGPU7qKoi8ERREiIiI2ClVyhTU/Wx1UldDnsPasfWTugoibwR1ZxIREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiBAREREREbsoiPiXuXjxImazmf379yd1Vf7ztm7dSnBwMKDzIiIiIvI0BRH/MlmzZmXnzp0ULlw4qavynxYWFkanTp24efNmUldFRERE5F9Hb6z+l3FycsLDwyOpq/GfZ7FYkroKIiIiIv9aaol4QWazmQkTJuDv74+/vz/Xr1/n7t279O/fHz8/P0qVKkWHDh0ICQkBICgoCLPZTGhoqE0+tWvXZty4cbG6zcTExDBt2jQqVapEkSJFaNy4Mdu2bQPgxIkTmM1mzpw5Y+Tz4YcfUq1aNeP3mzdvkjdvXo4fP86NGzfo1q0bfn5+FClShDZt2nD8+PFE72u/fv3o27cvgwYNomjRopQvX55JkybZ3HCfOnWK9u3bU7hwYfz9/fnqq6+4d++ekV65cmVGjx5N9erVKV26NEePHn1muQEBAbRv354ZM2ZQpkwZihYtyuDBg7l8+TIdOnSgcOHCVK9ene3btxvbPHjwgDFjxlC5cmUKFSpEkyZN2L17t82+DBgwgGHDhuHn50eZMmXo06cP4eHhAFSsWBGA1q1b069fP2O7AwcO0KhRIwoWLEjNmjXZsmVLoo+fiIiIyJtCLREvwbJly5gxYwZRUVFkypSJZs2akTZtWmbOnEnq1KmZP38+LVq0YOPGjfj5+eHp6cmGDRvo1KkTAMePHyc4OJhJkybFynvs2LH8+uuvDB06FG9vb3bs2EG3bt2YOXMmfn5+ZM2ald9//51cuXIRERHBX3/9RVRUFGFhYWTOnJkdO3aQNWtW8uXLR/fu3YmOjmbRokU4ODgwduxYunfvzubNmxO9r+vXr6datWosW7aMEydOMGjQIJydnenUqRNhYWG0atWKRo0a8eWXX3Lv3j2+/fZbunXrxrx584w8Fi9ezPTp00mZMiX58uVLVLl79uzB3d2dRYsWceDAAQYMGMDmzZv54osv6NevH9999x39+/fn999/B6BXr16cPn2aIUOGkC1bNhYvXszHH3/MokWLjK5ia9asoUmTJixevJgTJ07Qt29fcubMSZcuXfj5559p2LAhAQEBlClThrt37wKwYMEChg8fjpeXF99//z29e/dm165dpE6dOtHHMGPGtIle93l5eLi98jLk5dN5E3k99FlLfnTO/n0URLwEDRs2NG6Gd+3axeHDh9m7dy9p0z65WRwyZAhBQUEsXbqUTp06Ua9ePdatW2cEEWvWrKFIkSL4+vpy8eJFI9/79+8zb948AgICqFChAgA+Pj6cOHGC6dOn4+fnR8WKFdm1axetW7dm37595MiRg0ePHrF3717q1q3L9u3bqVSpEgDnz5/HbDaTPXt2UqZMydChQwkODiYmJgZHx8Q1Srm7uzNq1ChcXFzInTs3Z86cYf78+XTs2JFFixaRPXt2+vbta6w/btw4/P39+fPPPylatCjwpDWiVKlSdh/noUOH4urqiq+vL9999x3lypWjXr16ADRv3pwtW7Zw69Ytbt26xZYtW5g1axbly5cHYODAgRw6dIhZs2YxceJEANKnT8/AgQNxcnIiZ86crFu3joMHDwKQIUMGANKlS4ebm5sRRHTr1s04F507d2bTpk2EhIRQoECBRO/HzZvhxMS8uu5SHh5uXL/+9yvLX14NnbfkRTc0yZs+a8mLvh+ThqOjQ4IPPhVEvAReXl7Gz8eOHePx48fGjabVo0ePjG5HDRs2ZOrUqZw+fZpcuXKxYcMGOnfuHCvfM2fOEBkZSc+ePW1u8q0tHgCVKlWid+/eREdHExQUhJ+fH/fv32fv3r3UqlWL33//nbFjxwLQpUsX+vbtS2BgICVLlsTf358GDRokOoAAKFy4MC4uLsbvRYoUYcqUKdy+fZvjx49z/PhxI1j4575Ylz99vBLLw8MDV1dX43dXV1ebfFKlSgVAZGQkp06dAqBYsWI2eRQvXpytW7cav3t7e+Pk5GT8/tZbbxEWRGMzvAAAIABJREFUFpZgPXLkyGGzPsDDhw/t2xkRERGRZE5BxEuQMmVK42dnZ2fSp0/P0qVLY61nvQn28fGhaNGirFu3jrJly3Lr1i1q1aoVa33rzXpAQAA+Pj42adYb/zJlyhATE8PBgwfZvXs3Xbt25f79+0ydOtXo2mR96l+jRg3Kli3Ltm3b2LVrF1OmTGHu3LksXbrUCEqeJUUK20vm8ePHRn2cnZ0pV64cAwcOjLWd9ck+2B6vxPpnudYy42LN/5+Do2NiYmzyeToYsnrWgOq4ytQgbBEREfmv0cDqlyxPnjzcuXMHeBIs+Pj4kD17dsaPH8++ffuM9Ro2bEhgYCAbN26kUqVKpEuXLlZePj4+ODs7ExYWZuTl4+PD2rVrWblyJfDkhrl06dJs3LiR06dPU6pUKcqUKcO5c+dYsmQJFSpUwMXFhejoaEaPHs2lS5eoW7cuI0eOZP369Vy6dIm9e/cmev+OHz9OTEyM8ftff/1FtmzZSJ8+vdG9KVu2bEZdHR0dGTFiBFeuXHneQ2q3PHnyAE8GQT/twIED5M6dO1F5ODg4vPR6iYiIiLwpFES8ZGXKlKFIkSJ8+umn7N+/n7Nnz/5fe3ceH9O9/3H8PYmxRVAaa0gXMq3aEnupJa4tKrZaWqVqvXVVLS25pGrXlFxLUOu1FEVTRNDb20Vbem3BLbG0EkWofSnxI+v5/eFhrqmUHCYmy+v5eHg8Zs75zvd8znxzYt453zNHISEh2rJli3x9fe3tAgMDdfr0aW3YsEHt2rVLt68CBQqoZ8+eCgsL0+bNmxUfH69ly5Zp9uzZDlN5GjdurDVr1sjX11dFihRRyZIl9fTTT2vDhg0KCAiQdPsv+QcPHtTo0aP1008/KT4+XqtXr5bVajU1n//48eOaNGmSjh07psjISC1btky9e/eWJL3++uu6du2agoOD9fPPP+vAgQMaOnSojh8/7jANKLOVL19erVu31pgxY7Rt2zbFxcVp8uTJOnjwoHr06JGhPjw8PCRJP//8s65cuZKZ5QIAAGQ7hAgns1gsmj17tipUqKABAwaoffv2On78uBYuXOjwV3BPT081bdpU+fLlU8OGDf+0v8GDB+vVV1/VRx99pFatWunTTz/VuHHj1KFDB3ubJk2aKCkpSXXr1rUvq1evniwWi/2rSqXb3/Tk7e2t/v37KzAwUF9//bVmz559z1Sp+/H399f//d//qUOHDpoxY4aGDBmi119/XdLt6xYWL16sixcvqnPnzurTp49Kly6txYsXpzt1KDONHz9eL730kt577z116NBBP/30kxYtWpTu9RrpKVSokLp3766pU6emOz0LAAAgN7MYTOhGBgUHB+vs2bNasmSJq0vJ1vh2JqSHcctevLw81WZYpKvLwEOICmvLsZbN8PvRNR707UyciQAAAABgCt/OBO3bt0+9evW6b5s+ffo4fbvnzp1Ty5Yt79smMDBQEydOdPq2AQAA8PAIEVClSpW0fv36+7YpUqSIihYt6tTtPvnkkw/c7p0LnAEAAJB1ECKgfPnymbq42lnc3d1dsl0AAAA8Gq6JAAAAAGAKIQIAAACAKUxnAgDApFuJKYoKa+vqMvAQkpJTXV0CkCMQIgAAMOn6tZvKz3fXZ0teXp6uLgHIEZjOBAAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMCUPK4uAACAnMKzcAHlz8d/rVlZUnKqq0sAcgR+0wEA4CT58+VRm2GRri4D9xEV1tbVJQA5AtOZAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYSIbCg4OFg9e/Z0dRnpWr9+vRo0aKBq1arpq6++ckkN3bt316hRo1yybQAAgNyAm83BqT788EM1adJEAwcOVLFixVxSQ3h4uPLk4UcbAAAgs/BJC051/fp11axZU2XLlnVZDUWLFnXZtgEAAHIDpjM9IpvNpoiICHXr1k1Vq1ZVy5YttXr1avv69KYe3b1s586dqlKlin744Qe1aNFCVatWVc+ePXX27FmNGzdONWrU0Isvvqj58+c79JGSkqLRo0fLz89P9evX19y5c2UYhn39L7/8ot69e6tatWpq2LChRo8erWvXrtnXBwQEKDQ0VC1atFDdunV18ODBDO3vN998ow4dOqhatWpq3LixwsPDlZKSolOnTslmsyklJUUjR45UQEBAhvoLDg7W4MGD1b17d9WoUUMrV66UJK1Zs8b+frRp00br1q2TJBmGoYCAAIWHhzv0s2DBAjVu3FhpaWn3TGeKjo5W165dVbVqVTVt2lRhYWFKTEyUJLVr105Tpkyxt42IiJDNZtOePXvsy/r166eJEydKkubPn6+mTZuqcuXKatGihVasWJGh/QQAAMhJCBFOMHXqVHXr1k3r1q1TzZo1NWbMGJ0+fTrDr09OTtbMmTM1depULV26VIcOHVJQUJAKFiyoiIgIdenSRWFhYYqNjbW/Zvfu3bp165YiIiIUEhKiBQsW6J///Kck6dy5c+revbt8fX21bt06zZw5U7GxsRo4cKDDdj/99FONHz9e8+bN0/PPP//AOv/973/r7bffVqtWrbR+/XoNHz5cn3zyiSZPnqzSpUtr27Ztcnd318iRIxUREZHh/f/iiy/UrFkzrVmzRs2aNdPKlSs1bdo0DRkyRBs3blSfPn00ceJErVu3ThaLRW3bttXGjRsd+ti4caPatm0rNzfHH+nDhw+rd+/eatasmaKiojRhwgRt2bJFY8aMkSQ1btxY//nPf+ztt2/fLovFol27dkmSEhMTtWvXLgUEBOjbb7/VokWLNGHCBH355Zfq06ePxo8fr927d2d4XwEAAHICpjM5QceOHRUYGChJGj58uD777DPt378/w1N6DMPQkCFDVKVKFUlS3bp1FRMTo2HDhslisah///6aM2eOjh49qgoVKkiSSpUqpQkTJihv3rx69tlnFRcXp6VLl6p3795auXKlvL29NWLECPs2pk2bpoYNG2rfvn3y8/OTdPtsRO3atTO8n/Pnz1erVq3Ut29fSdLTTz+tq1evauLEiRo8eLC8vLwkSZ6enqauh/Dy8lKPHj3sz+fOnauBAweqZcuWkqTy5cvrt99+09y5c9W+fXu1b99ec+bM0cGDB/XCCy/o6NGjOnLkiKZNm3ZP34sWLVKjRo3Uu3dvSZKPj4/Gjh2r1157TUOGDFGTJk00d+5cXb58WcWKFdPOnTsVEBCg3bt366233tKuXbtktVpVq1YtLV++XFarVWXKlFHZsmXVqVMneXt765lnnsnwvkpS8eKFTLV/GF5enpm+DTgf45b9MGbZE+OW/TBmWQ8hwgmeeuop++PChQtLun12wYzy5cvbHxcsWFDe3t6yWCySpPz580uSkpKS7G2qVKmivHnzOjwPDw/XtWvXdPjwYR0+fNgeFu4WFxdnX16uXDlTNR49elTt27d3WFarVi2lpKTo2LFjqlatmqn+7vD29rY/vnz5ss6dO6fQ0FBNnTrVvjwlJUWpqalKSkpS+fLl5e/vr40bN+qFF15QVFSUqlWrlu6H+cOHD+vEiRMO78WdaV9xcXGqW7euihcvrh07dqhChQq6deuWunfvrgEDBig5OVnff/+9GjZsqDx58qhNmzaKiIhQ8+bN5evrqwYNGigoKEjFixc3tb+XLiUoLc14cMOH5OXlqQsXrmda/8gcjFv2k96Y8UEne+BYy174/egabm6W+/7hkxDhBHd/mL/j7usT/iglJeWeZVar1eH5H6fl/NEf16elpdn7sVqtql+/vkJCQu553d1nCPLly3ffbfzRnTBzt9TUVEl6pG9DurvfO+/D+++/n+5Zkjvbad++vWbPnq333ntPGzdutJ9p+COr1ap27drZz57czcvLSxaLRQ0bNtSPP/6oCxcuqFatWqpRo4bS0tJ04MABbd26VYMGDZIkFS9eXBs2bNCePXu0bds2ff/991q6dKlCQ0PVpk2bh95/AACA7IZrIjKZ1WpVQkKCw7ITJ048cr9HjhxxCCp79+6Vt7e3ChQooAoVKiguLk5lypSRj4+PfHx85ObmpkmTJunMmTMPvc1nn33W4YJjSdqzZ4+sVqvDmZRH4enpqZIlS+rUqVP22n18fPSf//xHixYtsoenVq1a6erVq1qxYoXOnz+v1q1bp9vfnffi7r4uX76s0NBQ3bhxQ9L/rovYuXOn6tatq7x588rf319r1qzR6dOn1bBhQ0nS5s2b9emnn6pWrVoaMmSI1q9fr/r162vDhg1O2XcAAIDsghCRyapXr65Dhw5p06ZNio+P16xZs/TLL788cr/x8fH64IMPFBsbq/Xr1+uTTz7RX//6V0nS66+/rmvXrik4OFg///yzDhw4oKFDh+r48eMOU6/Meuutt/TFF19owYIFOn78uL744gvNnDlTnTp1kqen807hv/XWW1qyZIlWr16tkydPKioqSh9++KH9mgvpdtho2rSppk2bpiZNmvzp17r27dtX+/fv1+TJkxUXF6ddu3ZpxIgRun79ur2/+vXr68KFC9q6davq1KkjSapXr54iIyNVs2ZN+74lJSUpNDRUGzZs0OnTp7V9+3YdOnTooadxAQAAZFdMZ8pkQUFBOnz4sMaOHauUlBS1atVKb7zxhvbv3/9I/TZr1kyJiYnq2LGjihQpokGDBqlTp06Sbk/TWbx4saZOnarOnTsrf/78qlOnjmbMmJHu1KuMeumllxQaGqp58+ZpxowZKlGihHr06KH+/fs/0r780auvvqqkpCQtWrRI48ePV8mSJTVgwAD169fPoV27du20adMmtW3b9k/7stls9npXrlwpT09PNWnSRMOHD7e3KVSokGrXrq1Dhw7JZrNJun1xe1pamsNX1bZr106XLl1SeHi4zpw5o+LFi6tDhw728AYAAJBbWIz7Td4H4HRcWI30MG7Zz59dWN1mWKSLKkJGRIW15VjLZvj96BoPurCa6UwAAAAATGE6E3Tu3Dn7PRn+TGBgoP2uzRmxb98+9erV675t+vTpo7/97W8Z7hMAAABZAyECevLJJ7V+/fr7tvHw8DDVZ6VKlR7YZ5EiRUz1CQAAgKyBEAG5u7vLx8fHqX3my5fP6X0CAAAga+CaCAAAAACmECIAAAAAmMJ0JgAAnORWYoqiwv783jVwvaTkVFeXAOQIhAgAAJzk+rWb4tvsszYvL09XlwDkCExnAgAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGBKHlcXAAAA8LgkJafKy8vT1WXApPuN2a3EFF2/dvMxVgOJEAEAAHKRvFZ3tRkW6eoy4ERRYW113dVF5EJMZwIAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQInKItWvXqlKlShluHxwcrJ49e2ZeQS4SEBCgOXPmZKjtqVOnZLPZFB0d/adtrl69qoiICGeVBwAAkCNws7kcIjAwUA0bNsxw+1GjRiktLS0TK3KNiIgI5c+f32n9TZ06VSdOnNArr7zitD4BAACyO0JEDpE/f35TH549Pf/89vHZWbFixZzan2EYTu0PAAAgJ2A6UxZls9m0ceNGvfrqq6pSpYoCAwP13//+VytXrlSjRo1Uo0YNDR06VElJSZLunc5ks9kUERGhbt26qWrVqmrZsqVWr15tX3/3dKadO3eqSpUq+uGHH9SiRQtVrVpVPXv21NmzZzVu3DjVqFFDL774oubPn5/u653V54Pc6fPrr79Wy5YtVb16dXXu3NlhOtIfpzOtW7fOvv0ePXpo1qxZCggIcOh379696tChgypXrqxWrVppy5YtkqTw8HBFRERo165dstlsOnXqlI4dO6ZevXrJ399fNWrU0IABA3Tq1KkM7wMAAEBOQIjIwiZPnqy+ffsqMjJShQoVUr9+/fTtt99qwYIFmjRpkv7973/fd77+1KlT1a1bN61bt041a9bUmDFjdPr06XTbJicna+bMmZo6daqWLl2qQ4cOKSgoSAULFlRERIS6dOmisLAwxcbGZrj+zOpz1qxZmjBhglauXClJGjlyZLpnDL755huFhISoW7duioyMVIMGDTR79ux72i1fvlxDhgzRxo0bVbFiRQ0dOlQ3b95Ur1699PLLL8vPz0/btm1T6dKl9e6776pMmTJat26dVqxYoStXrmjkyJEZrh8AACAnYDpTFvbKK6/Y/2retm1bjRs3Th988IHKlSsnX19fLVy4UEePHv3T13fs2FGBgYGSpOHDh+uzzz7T/v37VbZs2XvaGoahIUOGqEqVKpKkunXrKiYmRsOGDZPFYlH//v01Z84cHT16VBUqVMhQ/ZnZZ82aNSVJ/fr109/+9jdduXLlnqlMixcvVuvWrdWjRw9725iYGMXExDi0GzhwoF566SVJ0l//+ld9+eWXOnbsmF544QXlz59fVqtVXl5ekqQTJ06ofv36Klu2rPLkyaMpU6bo4sWLGar9juLFC5lq/zC8vHLmdLWcjnHLfhgzIGvgWHz8CBFZWPny5e2PCxQoIDc3N3l7e9uX5c+f3z6dKT1PPfWU/XHhwoUl3f5Lfka2V7BgQXl7e8tisdi3Jem+23tcfT799NP2x3eu7Uhvvw4ePGgPUXf4+/vfEyLSe59u3bqV7rbfeecdhYaGauXKlapbt64aN26sNm3amKr/0qUEpaVl3rUWXl6eunDheqb1j8zBuGU/jFn2xIfNnIlj0fnc3Cz3/cMn05mysDx5HDOexWKxfwDPiLx5896z7H4XClutVofnbm7mfjxSUlKc3md6MrpfefLkydCF0enV9Gev69Gjh77//nsFBwcrb968mjx5sl599VXTQQgAACA7I0TgoVitViUkJDgsO3HihIuqSZ/NZtNPP/3ksGz//v2m+rg7tF25ckXjx49XSkqKOnXqpGnTpmnJkiU6dOiQjhw54pSaAQAAsgNCBB5K9erVdejQIW3atEnx8fGaNWuWfvnlF1eX5aBPnz7atGmTVqxYoePHj2vp0qX64osvTPXh4eGhc+fOKT4+Xh4eHvrhhx80evRoHTlyRCdOnNDatWtVuHBhhylWAAAAOR0hAg8lKChIr732msaOHau2bdvqzJkzeuONN1xdloPGjRsrJCREixYt0ssvv6wtW7aoffv290yxup8OHTooNTVVgYGBOnLkiObNmydJ6t69u4KCghQbG6tFixbl2PtuAAAApMdicDct5FC7d+9WiRIl5OPjY182evRonThxQkuXLnVZXVxYjfQwbtkPY5Y9eXl5qs2wSFeXASeKCmvLsZgJuLAaudYPP/ygvn37Kjo6WqdPn1ZUVJSioqIUFBTk6tIAAACyNb7iFVlCUFCQ4uPj/3R9iRIl9OWXX5rqc+DAgbpx44YGDx6sq1evqly5cnr33XfVsWPHRy0XAAAgVyNEIEuYO3fufe9h4e7ubrrPfPnyafTo0Ro9evSjlAYAAIA/IEQgSyhTpoyrSwAAAEAGcU0EAAAAAFMIEQAAAABMIUQAAAAAMIVrIgAAQK6RlJyqqLC2ri4DTnQrMcXVJeRKhAgAAJBr5LW6c2OybIYbO2ZNTGcCAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYEoeVxcAwPk8CxdQ/nwc3tmNl5enq0uASYxZ9pOUnOrqEoAcgU8ZQA6UP18etRkW6eoyACDLiQpr6+oSgByB6UwAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQyjc1mU2Tk47tXQXBwsHr27Gl//t133yk2NvaR+mzWrJnCw8MfsTIAAICchRCBHGPUqFGaMWOGJOncuXPq37+/Ll265OKqAAAAch7uWI0cw9PT0/7YMAwXVgIAAJCzcSYCj01ERIRefvllVa1aVc2aNdPy5cvt69auXauWLVtq9erVCggIkJ+fn3r06KG4uDh7m4sXL+rtt9+Wv7+/GjRooIULF6pZs2Zau3atJMfpTI0aNZIk9ejRQ8HBwTp16pRsNpuio6Pt/f1xWWJiosaNG6c6deqodu3amj9//j37EB0dra5du6pq1apq2rSpwsLClJiY6PT3CgAAICvjTAQei8WLF2v69OkKCQlRrVq1tGPHDk2aNElJSUnq1auXpNsf6qOiojRz5kwlJyfrvffe0/jx47VkyRKlpaWpf//+cnd319KlS5WSkqIxY8YoPj4+3e2tW7dO7du3V3h4uOrVq6fff//9gTWOHTtWP/74o/7xj3/oySef1JQpU3Ty5En7+sOHD6t3794aNGiQQkND9dtvv2nixIm6ePGiJk+enOH3onjxQhluCwBwPi8vzwc3QpbCmGU9hAhkOsMwtHDhQr3xxhvq1KmTJOmpp55SfHy8FixYoDfffFOSlJycrLFjx+rZZ5+VJL3++uuaPn26JGnXrl2KiYnR119/rXLlykmSpkyZojZt2qS7zWLFikmSihQpIk9PzweGiISEBG3YsEETJkxQ/fr17f03btzY3mbRokVq1KiRevfuLUny8fHR2LFj9dprr2nIkCEqUaJEht6PS5cSlJaWedOt+EULAPd34cJ1V5cAE7y8PBkzF3Bzs9z3D5+ECGS6y5cv6+LFi/L393dYXqtWLS1cuNB+8bPFYpGPj499feHChZWcnCxJOnTokIoXL24PEJLk6+urwoULO6XGY8eOKTk5WZUrV7Yve+KJJ1S+fHn788OHD+vEiRPy8/OzL7tz7UVcXFyGQwQAAEB2R4hApsuXL1+6y1NTUyVJefLc/jF0c3OzP77jzod0d3d3paWl3dPHo1xAfWf70u0Ak15/VqvV4XG7du3Ut2/fe/ry8vJ66DoAAACyGy6sRqYrVKiQSpUqpT179jgs37Nnj7y8vFSkSJEH9mGz2XTlyhWHaxSOHTum69fTP715JxTccScM3Lhxw77s+PHj9sfPPPOM8ubNq3379tmXJSQkOLSpUKGC4uLi5OPjY/93+fJlhYaGOvQLAACQ0xEi8Fi89dZbWrZsmT777DOdOHFCa9as0fLly9WzZ897PvCnp27duqpSpYqGDx+umJgY7d+/X8OHD5d0b2CQJA8PD0nSzz//rCtXrqhEiRIqW7aslixZomPHjik6OlrTp0+3v9bDw0Ndu3bV9OnT9e233yo2NlYjR47UrVu37H327dtX+/fv1+TJkxUXF6ddu3ZpxIgRun79OmciAABArkKIwGPRtWtXDRkyRPPmzVPr1q21ePFiBQcHq0+fPhnuIzw8XEWLFlW3bt00YMAABQUFyWKxOEw5uqNQoULq3r27pk6dqpCQEFksFn300Uf6/fffFRQUpA8++EDDhg2Tm9v/DoERI0aoY8eOGjVqlDp37qzSpUuratWq9vU2m03z5s3T3r171a5dOw0ePFi1atXSrFmzHu3NAQAAyGYsBnflQjZw+fJl7d+/Xy+99JLc3d0lSRcuXFCDBg20YsUK1axZ08UVZtzj+namNsMiM20bAJBdRYW15Zt+shm+nck1+HYm5Aju7u5655131LNnT73yyiu6ceOGZsyYIR8fH1WrVs3V5QEAAOQqTGdCtlCkSBHNnTtXO3bsUJs2bdS9e3flyZNH//znP9OdzgQAAIDMw5kIZBv16tVTvXr1XF0GAABArseZCAAAAACmECIAAAAAmEKIAAAAAGAK10QAOdCtxBRFhbV1dRkAkOUkJae6ugQgRyBEADnQ9Ws3xTdqZy98D3r2w5hlT3fupQPg0TCdCQAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIApeVxdAAAAwOOSlJwqLy9PV5eR5d1KTNH1azddXQayMEIEAADINfJa3dVmWKSry8jyosLa6rqri0CWxnQmAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECWYbNZlNkZMa+u9swDK1fv16XLl2SJO3cuVM2m01nz56VJJ05c0abNm16pHrmzJmjgICAR+oDAAAgJyJEIFvau3evRowYoZs3b99N08/PT9u2bVOJEiUkSSNHjtTWrVtdWSIAAECOxR2rkS0ZhuHwPG/evPLy8vrciMqyAAATdElEQVTT9QAAAHAezkQgS0pMTNTkyZPVpEkTVa5cWXXr1tXf//533bx5U6dOnVK3bt0kSU2bNlV4eLjDdKbg4GBt375d69atk81mkyR1795do0aNctjGH5dt3rxZrVq1UtWqVdWnTx9duXLFof3vv/+uv//976pTp45q166tvn376tixY5n8TgAAAGQ9hAhkSaGhodqyZYumTJmif/3rXxo9erQ2bdqk1atXq3Tp0pozZ44k6bPPPlOvXr0cXjtq1CjVrFlTrVq10rZt2zK0vd27d2vo0KFq3769IiMj1aBBA61YscK+3jAM9evXT+fPn9fChQu1cuVKlSlTRq+99to9YQMAACCnYzoTsqRq1aqpdevWqlGjhiTJ29tbK1eu1C+//CJ3d3cVKVJEklSsWDF5eHg4vNbT01NWq1X58+d3mOJ0PytWrFCdOnXUr18/SdLTTz+tffv26cCBA5Kk7du368CBA9q1a5cKFSokSRo7dqx27NihNWvWqH///hnet+LFC2W47cPy8vLM9G3A+Ri37IcxQ06WlX6+s1ItuI0QgSypbdu22rZtmz766CMdP35csbGxOnnypLy9vTNle0ePHlWjRo0cllWvXt0eIg4dOqTU1FS99NJLDm0SExMVFxdnaluXLiUoLS3zrtnw8vLUhQvXM61/ZA7GLfthzLInPoxmXFb5+eZYcw03N8t9//BJiECWFBISoq+//lrt27dX8+bNNWTIEI0bN86p20hJSbE/tlgs91yMbbVaHR4XLVpUa9asuaefggULOrUuAACArI4QgSwnISFBn3/+uWbMmKHmzZtLuv2BPz4+XmXKlJF0+0P//fxxvdVqVUJCgv15Wlqa4uPj9cwzz0iSnnvuOe3bt8/hNTExMfbHFStW1NWrVyVJPj4+kqTU1FS9++67atasmQIDAx9mVwEAALIlLqxGlpMvXz4VLFhQ33zzjU6ePKlDhw5p2LBhOnPmjJKSkiTJfh3E4cOHdf36vac4PTw8dOrUKZ0+fVrS7alJW7du1datW3X8+HGNHTtW165ds7d/4403dODAAU2bNk2//vqrVq1apc2bN9vX16tXT9WrV9fgwYMVHR2tX3/9VSEhIdqyZYt8fX0z8+0AAADIcggRyHKsVqumT5+ugwcP6uWXX9aAAQNUpEgR9erVy352oEKFCmrRooWGDBmimTNn3tNHt27d9OuvvyowMFAXLlxQr169FBAQoEGDBqlLly4qVKiQWrdubW9fpUoVffzxx/ruu+8UFBSkyMhIvfnmm/b1FotFs2fPVoUKFTRgwAC1b99ex48f18KFC1WhQoXMf1MAAACyEIvBXbmAx4oLq5Eexi37YcyyJy8vT7UZFunqMrK8qLC2Webnm2PNNR50YTVnIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCnesBgAAuUZScqqiwtq6uows71ZiiqtLQBZHiAAAALlGXqs79xwAnIDpTAAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMCWPqwsAAAB4XJKSU+Xl5flYtnUrMUXXr918LNsCHjdCBAAAyDXyWt3VZljkY9lWVFhbXX8sWwIeP6YzAQAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgSyNZvNpsjIh/+qvsjISNlsNidWBAAAkPNxnwhka9u2bVPhwoVdXQYAAECuQohAtubl5eXqEgAAAHIdpjMhW7t7OlNwcLBGjhypCRMmqE6dOqpXr57effddJSQk2Ntv375dHTp0UNWqVdWlSxedOnXKob+kpCR9+OGHatCggfz9/fX666/rv//9ryQpOTlZ7dq1U5cuXZSWliZJ2r17t55//nn961//ekx7DAAA4HqECOQoGzZsUGpqqj799FO9//77+vLLL7Vs2TJJ0okTJ9SvXz/5+/tr/fr16tq1qxYsWODw+uHDh2v37t2aPn26Pv/8c9WtW1c9evTQr7/+KqvVqtDQUB08eFDLly9XQkKCRowYofbt26tly5au2F0AAACXYDoTcpSiRYsqJCRE7u7ueuaZZ7Rx40b7mYQ1a9aodOnSGjlypNzc3PTMM8/o6NGjWrRokaTbIeOLL77Qxo0bVbFiRUnSwIEDtWfPHi1evFjjxo2TzWbToEGDNH36dO3atUtWq1WjRo0yVWPx4oWcu9Pp8PLyzPRtwPkYt+yHMcOD8DPiHLyPWQ8hAjlK+fLl5e7ubn9euHBhnTt3TpJ09OhRPf/883Jz+98JuOrVq9sfHzp0SJLUuXNnhz6TkpKUlJRkf96nTx999dVX+uqrr7Rq1Sp5eHiYqvHSpQSlpRmmXmOGl5enLly4nmn9I3MwbtkPY5Y9Pe4Po/yMPDqONddwc7Pc9w+fhAjkKHnz5r1nmWHc/sBusVjsj++wWq33PF61apXy58//p/1evXpVp0+flru7u3788Uf5+fk5rX4AAIDsgGsikGs899xziomJUUpKin1ZTEyM/fGdKUyXLl2Sj4+P/d+SJUv0zTff2NuNHj1aJUuWVGhoqD7++GOHPgAAAHIDQgRyja5du+rq1asaPXq04uLitHnzZn3yySf29T4+PgoMDNT777+v77//XidPntS0adO0atUqPfvss5Kk9evXa8uWLZo4caLatGmjl156SSNGjHCY7gQAAJDTESKQa5QuXVpLlizRsWPH1L59e82dO1d9+/Z1aDNhwgQ1atRII0eO1Msvv6wffvhB4eHhqlevns6ePauJEyeqV69eqlSpkiRpzJgxOnPmjKZNm+aKXQIAAHAJi/HHSeIAMhUXViM9jFv2w5hlT15enmozLPKxbCsqrC0/I07AseYaD7qwmjMRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAlDyuLgAAAOBxSUpOVVRY28eyrVuJKY9lO4ArECIAAECukdfqzo3LACdgOhMAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMyePqAoDcxs3NkiO2Aedj3LIfxix7YtyyH8bs8XvQe24xDMN4TLUAAAAAyAGYzgQAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBFANnLp0iW98847qlmzpurVq6cpU6YoJSUlQ6/duHGjmjVrds/y0NBQ2Ww2h3/ptcPDy4xxO3HihHr37i0/Pz81atRICxcudHbZudrDjNmGDRvUokULVa1aVZ07d9b+/fsd1nOsOV9qaqrCwsLUoEED+fn5adCgQbp48eKftj9w4IC6du2qatWqqXnz5lq/fr3D+ps3b+r9999XnTp1VLNmTYWEhOjGjRuZvRu5irPH7LvvvrvnuLLZbDp79mxm7woMANnGq6++arz22mvG4cOHje+++86oW7eu8Y9//OOBr/v222+NqlWrGn/5y1/uWde7d29j7Nixxvnz5+3/Ll26lBnl51rOHrfExETjL3/5i/H2228bR48eNTZs2GBUq1bNWL16dWbtQq5jdsx+/PFH44UXXjBWrVplxMbGGqNGjTJq1qzpcCxxrDnftGnTjPr16xvbtm0zYmJijE6dOhldu3ZNt+2lS5eM2rVrG+PGjTNiY2ONZcuWGZUqVTK2bt1qb/Puu+8arVq1Mvbt22fs3r3baNasmTF06NDHtTu5grPHbN68eUa7du0cjqvz588bqampj2uXci1CBJBN7N271/D19TVOnjxpX7Z27VrDz8/PSExMTPc1N2/eNEJCQowXXnjBaNOmTbohomHDhkZERESm1Z3bZca4RUVFGdWrVzcSEhLsy8LDw43mzZtnzk7kMg8zZr169TJGjBhhf56ammo0bdrU+Pjjj+3LONacKzEx0fDz8zM+//xz+7L4+HjD19fX2LNnzz3t586dawQEBDh8uAwODjbefPNNwzAM4+zZs8Zzzz1n7Nixw75+586dhs1mM86ePZuJe5J7OHvMDON28Bs+fHjmFo50MZ0JyCaio6NVtmxZlStXzr6sdu3aunHjhg4fPpzuay5duqSTJ09q1apV6U6buH79us6ePatnn3020+rO7TJj3KKjo1W5cmV5eHg49Hn8+PH7TgtAxpgds7S0NO3du1e1a9e2L3Nzc1OtWrUUHR0tiWMtMxw5ckQ3btxweN+9vb1VtmxZ+/t+t+joaNWqVUtubv/76FO7dm3t3btXaWlp2rNnj9zc3OTv729f7+/vL3d3d+3ZsydzdyaXcPaYSdLRo0c5rlyEEAFkE+fOnVOJEiUclt15fubMmXRfU7ZsWS1dulSVK1dOd/0vv/wiSVq7dq2aNm2qpk2bauzYsbp+/boTK8/dMmPczp49a7pPZJzZMbt27Zr+7//+TyVLlrznNXfmZXOsOd+d9/Z+7/sf26fX9ubNm7p69arOnTunYsWKyWq12tfnyZNHxYoV47hyEmePWWpqqo4dO6aYmBgFBQWpQYMGeuutt3Ts2LHM2wnY5XF1AQBuO3XqlJo2bZruurx58yooKEj58uVzWG61WmWxWJSYmPhQ24yNjZUkFS1aVHPmzNGpU6cUGhqq2NhYLVu2TBaL5aH6zU1cMW63bt1SsWLF7tmWpIfuMzdx9pjdunVLktJ9zZ32HGvOd/PmTbm5uTl86Jduj+GfjdOd4+TutpKUlJSkmzdv3jOG9+sP5jl7zE6ePKnExEQlJSVpwoQJSkpK0scff6xu3bpp48aNKl68eObtDAgRQFZRsmRJbd68Od11bm5uWr58uZKSkhyWJycnyzAMFSxY8KG22blzZzVr1sz+gdRms+nJJ59U586ddfDgwT/9Szj+xxXjlj9//nv6vPP8YfvMTZw9Znc+eKb3mgIFCkjiWMsM+fPnV1pamlJSUpQnz/8+ziQlJdnf9z+2/7PjpkCBAumuv9OG48o5nD1mpUqV0o4dO1SkSBH7lKdZs2apcePGioyMVK9evTJxb0CIALIIq9V633mdpUqV0vfff++w7Pz585LuPTWcURaL5Z6/aPv6+kq6fRqZDzYP5opxK1WqlH799Ven9pmbOHvMihYtqoIFC9rb3P2aO+051pyvdOnSkqQLFy7YH0uO7/vdSpUqpQsXLjgsO3/+vAoWLChPT0+VKlVKly9fVmpqqtzd3SVJKSkpunz58j3T2/BwnD1mkvTEE084rC9QoIDKlSvHFLTHgGsigGyiRo0aio+Pd/jFuHPnTnl4eOi55557qD5DQ0PVoUMHh2UxMTGSxIVqTpIZ41ajRg3FxMTo5s2bDn0+/fTTnL53ArNjZrFY5Ofnp927d9uXpaWlaffu3apVq5YkjrXM8Nxzz8nDw0O7du2yLzt16pROnz5tf9/vVqNGDUVHR8swDPuynTt3yt/fX25ubqpRo4ZSUlK0b98++/o9e/YoLS1NNWrUyNydySWcPWZff/21/Pz8dPnyZfv6hIQEHT9+XBUrVszcnYHcx4wZM8bVRQB4sFKlSmnbtm368ssv9fzzz+vw4cMaP368unfvrhdffFGSdOPGDf3+++8O39pzx65du/Tzzz+rR48e9mUFCxbU/PnzdePGDXl7eysmJkajR49Ww4YN1aVLl8e2bzlZZoybj4+PPv/8c+3du1cVK1bU9u3bFRYWpqFDh+r5559/bPuWUz3MmD3xxBMKCwtT0aJF5eHhoWnTpunw4cOaNGmSChQowLGWCdzd3XX9+nUtWrRIFStWVEJCgkaOHCkfHx8NGDBASUlJunz5sqxWq9zd3fXUU09pwYIFOn36tMqXL69NmzZp8eLFGjNmjMqVK6dChQopLi5Oq1evVqVKlfTbb78pJCRETZo0Ubt27Vy9uzmCs8esePHiioiI0N69e2Wz2XTu3Dl98MEHSkpK0rhx4xymTCETuPQLZgGYcv78eWPAgAFGtWrVjBdffNEICwtz+P7smTNnGr6+vum+dubMmeneJ+K7774zOnbsaO9z0qRJxq1btzJtH3KjzBi3uLg4o3v37kaVKlWMxo0bG0uWLMm0+nOjhxmziIgIIyAgwKhSpYrRpUsXIyYmxmE9x5rzJScnG5MnTzZq165t+Pv7G++88479Bn47duwwfH19He77sG/fPqNjx45G5cqVjebNmxsbN2506C8hIcEIDg42/P39jdq1axvvv/++cfPmzce6Tzmds8csNjbW6N+/v1GrVi3Dz8/PGDhwoHH69OnHuk+5lcUw7jpHBAAAAAAPwDURAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFP+H0D0c+zf8t2ZAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#All other feature correlation with price\n", + "abb_vis_df.drop('price', axis=1).corrwith(abb_vis_df.price).plot.barh(figsize=(10, 8),\n", + " title='Correlation with Response Variable', fontsize=15, grid=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/jupyter_nb/nyc_abb_vis2020-04-24.ipynb b/jupyter_nb/nyc_abb_vis2020-04-24.ipynb new file mode 100644 index 00000000..7b876eb6 --- /dev/null +++ b/jupyter_nb/nyc_abb_vis2020-04-24.ipynb @@ -0,0 +1,2883 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: numpy in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (1.18.3)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install numpy" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: pandas in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (1.0.3)\r\n", + "Requirement already satisfied: python-dateutil>=2.6.1 in /Users/nli/Library/Python/3.8/lib/python/site-packages (from pandas) (2.8.1)\r\n", + "Requirement already satisfied: pytz>=2017.2 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from pandas) (2019.3)\r\n", + "Requirement already satisfied: numpy>=1.13.3 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from pandas) (1.18.3)\r\n", + "Requirement already satisfied: six>=1.5 in /Users/nli/Library/Python/3.8/lib/python/site-packages (from python-dateutil>=2.6.1->pandas) (1.14.0)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install pandas" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: matplotlib in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (3.2.1)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib) (1.2.0)\r\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib) (2.4.7)\r\n", + "Requirement already satisfied: numpy>=1.11 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib) (1.18.3)\r\n", + "Requirement already satisfied: cycler>=0.10 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib) (0.10.0)\r\n", + "Requirement already satisfied: python-dateutil>=2.1 in /Users/nli/Library/Python/3.8/lib/python/site-packages (from matplotlib) (2.8.1)\r\n", + "Requirement already satisfied: six in /Users/nli/Library/Python/3.8/lib/python/site-packages (from cycler>=0.10->matplotlib) (1.14.0)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install matplotlib" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: seaborn in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (0.10.0)\r\n", + "Requirement already satisfied: matplotlib>=2.1.2 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from seaborn) (3.2.1)\r\n", + "Requirement already satisfied: scipy>=1.0.1 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from seaborn) (1.4.1)\r\n", + "Requirement already satisfied: numpy>=1.13.3 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from seaborn) (1.18.3)\r\n", + "Requirement already satisfied: pandas>=0.22.0 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from seaborn) (1.0.3)\r\n", + "Requirement already satisfied: python-dateutil>=2.1 in /Users/nli/Library/Python/3.8/lib/python/site-packages (from matplotlib>=2.1.2->seaborn) (2.8.1)\r\n", + "Requirement already satisfied: kiwisolver>=1.0.1 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib>=2.1.2->seaborn) (1.2.0)\r\n", + "Requirement already satisfied: cycler>=0.10 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib>=2.1.2->seaborn) (0.10.0)\r\n", + "Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from matplotlib>=2.1.2->seaborn) (2.4.7)\r\n", + "Requirement already satisfied: pytz>=2017.2 in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (from pandas>=0.22.0->seaborn) (2019.3)\r\n", + "Requirement already satisfied: six>=1.5 in /Users/nli/Library/Python/3.8/lib/python/site-packages (from python-dateutil>=2.1->matplotlib>=2.1.2->seaborn) (1.14.0)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install seaborn" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: PyMySQL in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (0.9.3)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install PyMySQL" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Requirement already satisfied: sqlalchemy in /Library/Frameworks/Python.framework/Versions/3.8/lib/python3.8/site-packages (1.3.16)\r\n", + "\u001b[33mWARNING: You are using pip version 19.2.3, however version 20.0.2 is available.\r\n", + "You should consider upgrading via the 'pip install --upgrade pip' command.\u001b[0m\r\n", + "Note: you may need to restart the kernel to use updated packages.\n" + ] + } + ], + "source": [ + "pip install sqlalchemy" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "import os\n", + "from sqlalchemy import create_engine\n", + "import pymysql\n", + "from brokenaxes import brokenaxes" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "engine = create_engine(\"mysql+pymysql://root:\" + os.environ.get(\"mysql_key\") + '@localhost:3306/airflow_project')" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "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", + "
indexUnnamed: 0host_idboroughneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewsreviews_per_monthcalculated_host_listings_countavailability_365
0002787BrooklynKensington40.64749-73.97237Private room149190.216365
1112845ManhattanMidtown40.75362-73.98377Entire home/apt2251450.382355
2224632ManhattanHarlem40.80902-73.94190Private room15030NaN1365
3334869BrooklynClinton Hill40.68514-73.95976Entire home/apt8912704.641194
4447192ManhattanEast Harlem40.79851-73.94399Entire home/apt801090.1010
\n", + "
" + ], + "text/plain": [ + " index Unnamed: 0 host_id borough neighbourhood latitude longitude \\\n", + "0 0 0 2787 Brooklyn Kensington 40.64749 -73.97237 \n", + "1 1 1 2845 Manhattan Midtown 40.75362 -73.98377 \n", + "2 2 2 4632 Manhattan Harlem 40.80902 -73.94190 \n", + "3 3 3 4869 Brooklyn Clinton Hill 40.68514 -73.95976 \n", + "4 4 4 7192 Manhattan East Harlem 40.79851 -73.94399 \n", + "\n", + " room_type price minimum_nights number_of_reviews \\\n", + "0 Private room 149 1 9 \n", + "1 Entire home/apt 225 1 45 \n", + "2 Private room 150 3 0 \n", + "3 Entire home/apt 89 1 270 \n", + "4 Entire home/apt 80 10 9 \n", + "\n", + " reviews_per_month calculated_host_listings_count availability_365 \n", + "0 0.21 6 365 \n", + "1 0.38 2 355 \n", + "2 NaN 1 365 \n", + "3 4.64 1 194 \n", + "4 0.10 1 0 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df = pd.read_sql('select * from airflow_project.nyc_abb', con=engine)\n", + "abb_vis_df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### more detail data cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df.loc[abb_vis_df['reviews_per_month'].isnull(), 'reviews_per_month'] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df.loc[:, ~ abb_vis_df.columns.str.contains('^Unnamed')]" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df[abb_vis_df['price']>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df[abb_vis_df['minimum_nights']<=365]" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "abb_vis_df = abb_vis_df.set_index('host_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "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", + "
boroughneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewsreviews_per_monthcalculated_host_listings_countavailability_365
host_id
2787BrooklynKensington40.64749-73.97237Private room149190.216365
2845ManhattanMidtown40.75362-73.98377Entire home/apt2251450.382355
4632ManhattanHarlem40.80902-73.94190Private room150300.001365
4869BrooklynClinton Hill40.68514-73.95976Entire home/apt8912704.641194
7192ManhattanEast Harlem40.79851-73.94399Entire home/apt801090.1010
\n", + "
" + ], + "text/plain": [ + " borough neighbourhood latitude longitude room_type price \\\n", + "host_id \n", + "2787 Brooklyn Kensington 40.64749 -73.97237 Private room 149 \n", + "2845 Manhattan Midtown 40.75362 -73.98377 Entire home/apt 225 \n", + "4632 Manhattan Harlem 40.80902 -73.94190 Private room 150 \n", + "4869 Brooklyn Clinton Hill 40.68514 -73.95976 Entire home/apt 89 \n", + "7192 Manhattan East Harlem 40.79851 -73.94399 Entire home/apt 80 \n", + "\n", + " minimum_nights number_of_reviews reviews_per_month \\\n", + "host_id \n", + "2787 1 9 0.21 \n", + "2845 1 45 0.38 \n", + "4632 3 0 0.00 \n", + "4869 1 270 4.64 \n", + "7192 10 9 0.10 \n", + "\n", + " calculated_host_listings_count availability_365 \n", + "host_id \n", + "2787 6 365 \n", + "2845 2 355 \n", + "4632 1 365 \n", + "4869 1 194 \n", + "7192 1 0 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.drop(columns=['index']).head()" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(48870, 12)" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index int64\n", + "borough object\n", + "neighbourhood object\n", + "latitude float64\n", + "longitude float64\n", + "room_type object\n", + "price int64\n", + "minimum_nights int64\n", + "number_of_reviews int64\n", + "reviews_per_month float64\n", + "calculated_host_listings_count int64\n", + "availability_365 int64\n", + "dtype: object" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index 0\n", + "borough 0\n", + "neighbourhood 0\n", + "latitude 0\n", + "longitude 0\n", + "room_type 0\n", + "price 0\n", + "minimum_nights 0\n", + "number_of_reviews 0\n", + "reviews_per_month 0\n", + "calculated_host_listings_count 0\n", + "availability_365 0\n", + "dtype: int64" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example using SQL query to pull out data" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# More Visualization from SQL query\n", + "connection = engine.connect()" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night\n", + "avg_abb_price = connection.execute('SELECT AVG(price) FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019
0152.7207
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019\n", + "0 152.7207" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price = [row for row in avg_abb_price]\n", + "df_avg_abb_price = pd.DataFrame.from_records(data_avg_abb_price)\n", + "df_avg_abb_price.columns = ['Average price/night of Airbnb in NYC 2019']\n", + "df_avg_abb_price" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Manhattan) \n", + "avg_abb_price_M = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb \\\n", + " WHERE borough = \"Manhattan\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Manhattan)
0196.8758
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Manhattan)\n", + "0 196.8758 " + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_M = [row for row in avg_abb_price_M]\n", + "df_avg_abb_price_M = pd.DataFrame.from_records(data_avg_abb_price_M)\n", + "df_avg_abb_price_M.columns = ['Average price/night of Airbnb in NYC 2019 (Manhattan)']\n", + "df_avg_abb_price_M" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Queens) \n", + "avg_abb_price_Q = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb\\\n", + " WHERE borough = \"Queens\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Queens)
099.5176
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Queens)\n", + "0 99.5176" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_Q = [row for row in avg_abb_price_Q]\n", + "df_avg_abb_price_Q = pd.DataFrame.from_records(data_avg_abb_price_Q)\n", + "df_avg_abb_price_Q.columns = ['Average price/night of Airbnb in NYC 2019 (Queens)']\n", + "df_avg_abb_price_Q" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "#Total Number of review\n", + "sum_abb_reviews = connection.execute('SELECT SUM(number_of_reviews)\\\n", + " FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Total nunber of reviews for Airbnb housing in NYC 2019
01138005
\n", + "
" + ], + "text/plain": [ + " Total nunber of reviews for Airbnb housing in NYC 2019\n", + "0 1138005 " + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_sum_abb_reviews = [row for row in sum_abb_reviews]\n", + "df_sum_abb_reviews = pd.DataFrame.from_records(data_sum_abb_reviews)\n", + "df_sum_abb_reviews.columns = ['Total nunber of reviews for Airbnb housing in NYC 2019']\n", + "df_sum_abb_reviews" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Next, we will look at the price distribution by the different boroughs" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Brooklyn', 'Manhattan', 'Queens', 'Staten Island', 'Bronx'],\n", + " dtype=object)" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.borough.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Bronx', 'Brooklyn', 'Manhattan', 'Queens', 'Staten Island'}" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "set(abb_vis_df['borough'])" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "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", + "
countmeanstdmin25%50%75%max
borough
Bronx1090.087.58106.7310.045.065.099.02500.0
Brooklyn20089.0124.45186.9210.060.090.0150.010000.0
Manhattan21654.0196.89291.4210.095.0150.0220.010000.0
Queens5664.099.49167.1310.050.075.0110.010000.0
Staten Island373.0114.81277.6213.050.075.0110.05000.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "borough \n", + "Bronx 1090.0 87.58 106.73 10.0 45.0 65.0 99.0 2500.0\n", + "Brooklyn 20089.0 124.45 186.92 10.0 60.0 90.0 150.0 10000.0\n", + "Manhattan 21654.0 196.89 291.42 10.0 95.0 150.0 220.0 10000.0\n", + "Queens 5664.0 99.49 167.13 10.0 50.0 75.0 110.0 10000.0\n", + "Staten Island 373.0 114.81 277.62 13.0 50.0 75.0 110.0 5000.0" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_vis_df.groupby('borough')['price'].describe().round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "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", + "
countmeanstdmin25%50%75%max
borough
Bronx1090.04.56330315.6387751.01.02.03.0365.0
Brooklyn20089.05.89456914.5333851.02.03.05.0365.0
Manhattan21654.08.34561718.8241701.01.03.06.0365.0
Queens5664.05.01024011.9526361.01.02.03.0365.0
Staten Island373.04.83109919.7276051.01.02.03.0365.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "borough \n", + "Bronx 1090.0 4.563303 15.638775 1.0 1.0 2.0 3.0 365.0\n", + "Brooklyn 20089.0 5.894569 14.533385 1.0 2.0 3.0 5.0 365.0\n", + "Manhattan 21654.0 8.345617 18.824170 1.0 1.0 3.0 6.0 365.0\n", + "Queens 5664.0 5.010240 11.952636 1.0 1.0 2.0 3.0 365.0\n", + "Staten Island 373.0 4.831099 19.727605 1.0 1.0 2.0 3.0 365.0" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#The minimum nights for each borough\n", + "abb_vis_df.groupby('borough')['minimum_nights'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "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", + "
room_typeEntire home/aptPrivate roomShared room
borough
Bronx127.5166.8959.80
Brooklyn178.3676.5550.77
Manhattan249.28116.7888.93
Queens147.0371.7669.02
Staten Island173.8562.2957.44
\n", + "
" + ], + "text/plain": [ + "room_type Entire home/apt Private room Shared room\n", + "borough \n", + "Bronx 127.51 66.89 59.80\n", + "Brooklyn 178.36 76.55 50.77\n", + "Manhattan 249.28 116.78 88.93\n", + "Queens 147.03 71.76 69.02\n", + "Staten Island 173.85 62.29 57.44" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Pivot table, 5 boroughs\n", + "abb_vis_df_pt = abb_vis_df.pivot_table(index='borough', columns='room_type', values='price', aggfunc='mean')\n", + "abb_vis_df_pt.round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Now, let's do simle combing dataset set by couting data from 5 boroughs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Airbnb Housing Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 1090\n", + "Brooklyn 20089\n", + "Manhattan 21654\n", + "Queens 5664\n", + "Staten Island 373\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_borough_count = abb_vis_df.groupby('borough').borough.count()\n", + "abb_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Park Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "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", + "
indexboroughacrestypecategowaterfront
00R20.907Neighborhood ParkYes
11Q0.061Triangle/PlazaNo
22B1.130PlaygroundNo
33X2.160Neighborhood ParkNo
44X1.104Jointly Operated PlaygroundNo
\n", + "
" + ], + "text/plain": [ + " index borough acres typecatego waterfront\n", + "0 0 R 20.907 Neighborhood Park Yes\n", + "1 1 Q 0.061 Triangle/Plaza No\n", + "2 2 B 1.130 Playground No\n", + "3 3 X 2.160 Neighborhood Park No\n", + "4 4 X 1.104 Jointly Operated Playground No" + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_park_vis_df = pd.read_sql('select * from airflow_project.nyc_park', con=engine)\n", + "nyc_park_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "#Rename B = Broonlyn, X = Bronx, M = Manhattan, Q = Queens,R = Staten Island,\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'B', 'borough'] = 'Brooklyn'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'X', 'borough'] = 'Bronx'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'M', 'borough'] = 'Manhattan'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'Q', 'borough'] = 'Queens'\n", + "nyc_park_vis_df.loc[nyc_park_vis_df.borough == 'R', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "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", + "
indexboroughacrestypecategowaterfront
00Staten Island20.907Neighborhood ParkYes
11Queens0.061Triangle/PlazaNo
22Brooklyn1.130PlaygroundNo
33Bronx2.160Neighborhood ParkNo
44Bronx1.104Jointly Operated PlaygroundNo
\n", + "
" + ], + "text/plain": [ + " index borough acres typecatego waterfront\n", + "0 0 Staten Island 20.907 Neighborhood Park Yes\n", + "1 1 Queens 0.061 Triangle/Plaza No\n", + "2 2 Brooklyn 1.130 Playground No\n", + "3 3 Bronx 2.160 Neighborhood Park No\n", + "4 4 Bronx 1.104 Jointly Operated Playground No" + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_park_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 390\n", + "Brooklyn 610\n", + "Manhattan 386\n", + "Queens 469\n", + "Staten Island 160\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "park_borough_count = nyc_park_vis_df.groupby('borough').borough.count()\n", + "park_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Hot Spot Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "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", + "
indextypeproviderlatitudelongitudecityactivatedborough_codeborough
00FreeLinkNYC - Citybridge40.684061-73.870537Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
11FreeLinkNYC - Citybridge40.684625-73.868975Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
22FreeLinkNYC - Citybridge40.684702-73.868309Brooklyn11/21/2017 12:00:00 AM +00003Brooklyn
33FreeLinkNYC - Citybridge40.685131-73.866777Brooklyn12/20/2017 12:00:00 AM +00003Brooklyn
44FreeLinkNYC - Citybridge40.676475-73.897167Brooklyn02/06/2018 12:00:00 AM +00003Brooklyn
\n", + "
" + ], + "text/plain": [ + " index type provider latitude longitude city \\\n", + "0 0 Free LinkNYC - Citybridge 40.684061 -73.870537 Brooklyn \n", + "1 1 Free LinkNYC - Citybridge 40.684625 -73.868975 Brooklyn \n", + "2 2 Free LinkNYC - Citybridge 40.684702 -73.868309 Brooklyn \n", + "3 3 Free LinkNYC - Citybridge 40.685131 -73.866777 Brooklyn \n", + "4 4 Free LinkNYC - Citybridge 40.676475 -73.897167 Brooklyn \n", + "\n", + " activated borough_code borough \n", + "0 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "1 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "2 11/21/2017 12:00:00 AM +0000 3 Brooklyn \n", + "3 12/20/2017 12:00:00 AM +0000 3 Brooklyn \n", + "4 02/06/2018 12:00:00 AM +0000 3 Brooklyn " + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hot_spot_df = pd.read_sql('select * from airflow_project.nyc_hot_spot', con=engine)\n", + "nyc_hot_spot_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 316\n", + "Brooklyn 700\n", + "Manhattan 1672\n", + "Queens 531\n", + "Staten Island 100\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hot_spot_borough_count = nyc_hot_spot_df.groupby('borough').borough.count()\n", + "hot_spot_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Hotel Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "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", + "
indexpostcodeboroughlatitudelongitude
0010004MANHATTAN40.703235-74.012421
1110004MANHATTAN40.702744-74.012201
2210004MANHATTAN40.704025-74.012638
3310004MANHATTAN40.704039-74.012317
4410282MANHATTAN40.714812-74.016153
\n", + "
" + ], + "text/plain": [ + " index postcode borough latitude longitude\n", + "0 0 10004 MANHATTAN 40.703235 -74.012421\n", + "1 1 10004 MANHATTAN 40.702744 -74.012201\n", + "2 2 10004 MANHATTAN 40.704025 -74.012638\n", + "3 3 10004 MANHATTAN 40.704039 -74.012317\n", + "4 4 10282 MANHATTAN 40.714812 -74.016153" + ] + }, + "execution_count": 40, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hotel_vis_df = pd.read_sql('select * from airflow_project.nyc_hotel', con=engine)\n", + "nyc_hotel_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'BROOKLYN', 'borough'] = 'Brooklyn'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'BRONX', 'borough'] = 'Bronx'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'MANHATTAN', 'borough'] = 'Manhattan'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'QUEENS', 'borough'] = 'Queens'\n", + "nyc_hotel_vis_df.loc[nyc_hotel_vis_df.borough == 'STATEN IS', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "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", + "
indexpostcodeboroughlatitudelongitude
0010004Manhattan40.703235-74.012421
1110004Manhattan40.702744-74.012201
2210004Manhattan40.704025-74.012638
3310004Manhattan40.704039-74.012317
4410282Manhattan40.714812-74.016153
\n", + "
" + ], + "text/plain": [ + " index postcode borough latitude longitude\n", + "0 0 10004 Manhattan 40.703235 -74.012421\n", + "1 1 10004 Manhattan 40.702744 -74.012201\n", + "2 2 10004 Manhattan 40.704025 -74.012638\n", + "3 3 10004 Manhattan 40.704039 -74.012317\n", + "4 4 10282 Manhattan 40.714812 -74.016153" + ] + }, + "execution_count": 42, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_hotel_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 73\n", + "Brooklyn 177\n", + "Manhattan 2250\n", + "Queens 209\n", + "Staten Island 17\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "hotel_borough_count = nyc_hotel_vis_df.groupby('borough').borough.count()\n", + "hotel_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Shooting Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "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", + "
indexoccur_dateoccur_timeboroughprecinctvic_sexlatitudelongitude
0012/31/201923:15:00MANHATTAN28M40.800244-73.953390
1112/31/201920:14:00BROOKLYN73M40.660527-73.917156
2212/30/201921:29:00BROOKLYN71M40.656923-73.939647
3312/30/201903:17:00BROOKLYN81M40.686815-73.919370
4412/30/201903:17:00BROOKLYN81M40.686815-73.919370
\n", + "
" + ], + "text/plain": [ + " index occur_date occur_time borough precinct vic_sex latitude \\\n", + "0 0 12/31/2019 23:15:00 MANHATTAN 28 M 40.800244 \n", + "1 1 12/31/2019 20:14:00 BROOKLYN 73 M 40.660527 \n", + "2 2 12/30/2019 21:29:00 BROOKLYN 71 M 40.656923 \n", + "3 3 12/30/2019 03:17:00 BROOKLYN 81 M 40.686815 \n", + "4 4 12/30/2019 03:17:00 BROOKLYN 81 M 40.686815 \n", + "\n", + " longitude \n", + "0 -73.953390 \n", + "1 -73.917156 \n", + "2 -73.939647 \n", + "3 -73.919370 \n", + "4 -73.919370 " + ] + }, + "execution_count": 44, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nyc_shooting_vis_df = pd.read_sql('select * from airflow_project.nyc_shooting', con=engine)\n", + "nyc_shooting_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [], + "source": [ + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'BROOKLYN', 'borough'] = 'Brooklyn'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'BRONX', 'borough'] = 'Bronx'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'MANHATTAN', 'borough'] = 'Manhattan'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'QUEENS', 'borough'] = 'Queens'\n", + "nyc_shooting_vis_df.loc[nyc_shooting_vis_df.borough == 'STATEN ISLAND', 'borough'] = 'Staten Island'" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 266\n", + "Brooklyn 372\n", + "Manhattan 145\n", + "Queens 158\n", + "Staten Island 26\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "shooting_borough_count = nyc_shooting_vis_df.groupby('borough').borough.count()\n", + "shooting_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Publica Housing Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "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", + "
indexproject_idboroughextremely_low_income_unitsvery_low_income_unitslow_income_unitsmoderate_income_unitsmiddle_income_unitsother_income_unitstotal_units
0068894Bronx004400044
1167286Queens2492114001231
2267286Queens8344300085
3367693Manhattan498210060
4467693Manhattan368340152
\n", + "
" + ], + "text/plain": [ + " index project_id borough extremely_low_income_units \\\n", + "0 0 68894 Bronx 0 \n", + "1 1 67286 Queens 24 \n", + "2 2 67286 Queens 8 \n", + "3 3 67693 Manhattan 49 \n", + "4 4 67693 Manhattan 36 \n", + "\n", + " very_low_income_units low_income_units moderate_income_units \\\n", + "0 0 44 0 \n", + "1 92 114 0 \n", + "2 34 43 0 \n", + "3 8 2 1 \n", + "4 8 3 4 \n", + "\n", + " middle_income_units other_income_units total_units \n", + "0 0 0 44 \n", + "1 0 1 231 \n", + "2 0 0 85 \n", + "3 0 0 60 \n", + "4 0 1 52 " + ] + }, + "execution_count": 47, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pb_houing_vis_df = pd.read_sql('select * from airflow_project.nyc_housing', con=engine)\n", + "pb_houing_vis_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "borough\n", + "Bronx 1008\n", + "Brooklyn 1862\n", + "Manhattan 802\n", + "Queens 491\n", + "Staten Island 221\n", + "Name: borough, dtype: int64" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pb_houing_borough_count = pb_houing_vis_df.groupby('borough').borough.count()\n", + "pb_houing_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "count_sum_df = pd.concat([abb_borough_count, park_borough_count,hot_spot_borough_count,\n", + " hotel_borough_count,shooting_borough_count,pb_houing_borough_count], axis = 1 )" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "count_sum_df.columns= ['airbnb', 'park', 'hot spot', 'hotel', 'shooting', 'public housing']" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "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", + "
airbnbparkhot spothotelshootingpublic housing
borough
Bronx1090390316732661008
Brooklyn200896107001773721862
Manhattan2165438616722250145802
Queens5664469531209158491
Staten Island3731601001726221
\n", + "
" + ], + "text/plain": [ + " airbnb park hot spot hotel shooting public housing\n", + "borough \n", + "Bronx 1090 390 316 73 266 1008\n", + "Brooklyn 20089 610 700 177 372 1862\n", + "Manhattan 21654 386 1672 2250 145 802\n", + "Queens 5664 469 531 209 158 491\n", + "Staten Island 373 160 100 17 26 221" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "count_sum_df" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+wAAAFICAYAAADKy3RZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde9zfc/348cezGZvMyPrGUJMcZscyrBCTfgmlMpWI8U3NIVROFV9DiY4iWikmEX0RKR0wc8iKbe3E+CKXQ3OezQ7I5vn74/2+5rNrn+u6Prt2Xft8Zo/77fa5va/P+/16v97P9/szt5vn+3WKzESSJEmSJDWWt9Q7AEmSJEmStDwTdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5Kk1UpELIiId3dSXd+IiF+Uf/eLiIyItTqp7neWsXbrjPpa1N1pz+DNovzt3lPvOCSpM5mwS5JUioimiHg2It5ase8LETEhCndExOktzjkkIh6JiHUjYv2IOC8iHi8TqkfK731auV5ExIkR8VBEvFye952IWKer77VKLM3J6oLy80xE/CEiPrwCdYyKiLtWIobdI+L1ihiejIjfRsQOleUyc73M/FcNdT3Z3jUz8+zM/EJHY25xzaaI2LOi7sfLWJd0Rv2VankGrSl/54UVz/kXbZSdEBGvlOXmlf8NDOp45JKkFWHCLknSsroBx7XcmZkJfAH4SkQMAIiItwM/KPcvBm4FBgB7AesD7wdeAHZs5VrnA18EDgF6AR8FPgT8tvNuZ4VtkJnrAUOAm4HfRcSoVXj92eX1ewHDgQeAOyPiQ519oc5qSV9NDSmT/vVqeGFxTPmbvA2YAFzekQuu4c9bkjrEhF2SpGV9DzghIjZoeSAz/w/4NvDLiHgLRcJ9bWbeRpF0vxP4ZGben5mvZ+azmXlWZt7Usq6I2Ao4CjgoMydm5uLMvA/YH9grIvYoy42LiLERcXNEzI+I2yPiXRX1bFsemxMRD0bEpyuOjYuICyPij+W5/4iILWt5CJn5dGb+GBgDnFveLxFxStlzYH5E3B8Rnyz39wfGAu8vW2Pnlvv3iYh/RsRLEfFERIyp8fqZmU9m5v8AvwDOrbivpV2fI2LvMo75EfHviDih7CHxJ6BvRSty34gYExHXRMSvI+IlYFS579ctLn94RMyOiKci4oQWz/NbFd+XtuJHxOUUv/+N5fVOihZd7MsYfl/+Vg9HxBEVdY0pexP8qryX+yJiWGvPp8Uz6PDvvCLKngJXAdtVxLFOFL1IZpef85p7iDQ/n4g4OSKeBi5tp/xyPTRa3OdGEXFj+W/p3oj4VsvywJ5R9FiZWz6TKM99T/nfzryIeD4iru7s5yNJXcGEXZKkZU2iaEU8oZXjPwQCuAbYGTix3L8n8OfMXFDjdT4EPJmZ91TuzMwngL8DlV3RDwLOAvoAU4ErAMrE9GbgSuC/gM8CF0XEdhXnfhY4A9gQeJjihcOKuK6se5vy+yPArkDvst5fR8QmmTkLGA1MLFttm194LKR4mbEBsA9wZER8ogMxvC8qhipU+CXwpczsBQwExmfmQoreCrMrWpFnl+X3o/jtNqB8jlWMALYC/h9wclR0c29NZn4eeBz4WHm971YpdhXwJNAXGAmc3fxipvTxsswGwO+Bn7R33Qor+jvfERFPR8R1EdGvlgtExNoU/xb/XrH7mxQ9IYZS9MrYETi14vjGFC3z76LoTdJe+bZcSPHvaWPg0PLT0r7ADsBg4NPAR8r9ZwF/pXg+mwEX1HhNSaorE3ZJkpb3P8CXo+jyvoyylfFw4JPAlzNzfnloI+CpFbhGnzbKP1Ueb/bHzLwjM1+lSHjeHxGbUyQnTZl5adlC/0/gWuCAinN/l5n3ZOZiigR16ArECNCc6L4NIDP/NzNnlz0IrgYeovUu/2TmhMycUZafDvwG2K0DMQRFItvSa8B2EbF+Zr6YmVPaqWtiZl5fxvNyK2XOyMyFmTkDuBQ4cAXjXU75e+0MnJyZr2TmVIqeA4dUFLsrM28q/41dTpHQ1mpFfufdgH7AthTP9g/Rdnf188seE/OBYyheDDQ7CDiz7E3yXHns8xXHXwdOz8xXy+fdXvmqopi4b/+yrkWZeT9wWZWi52Tm3Mx8HLiNN57DaxQvDfqWz7/Dcy1I0qpkwi5JUguZORP4A3BKK8fvK/+8r2L3C8AmK3CZ59sov0l5vNkTFddeAMyhaKV9F7BT2f13bplUHUTRAtns6Yq/FwHrrUCMAJuW2zmwdJK9qRXXG8iyLxeWERE7RcRtEfFcRMyjaIVvtXwbMSQwt8qx/YG9gcfKLs/vb6euJ9o53rLMYxTPemX1BeZUvOBprnvTiu8tf6se7STSlWr+ncuXP//JzLkU8zVsAfRvo+5jyx4TPSleEl0TEYPLY33L+2jW8nk9l5mvVHxvr3xr3g6sxbK/TbXfsrXncBLFS597yuEGh9dwTUmqOxN2SZKqOx04gmUTqrbcAnyklW7b1YwHNo+IZVqny5bY4RQT2DXbvOJ48+RfsykSltszc4OKz3qZeWSNMdTik8CzwINRjJ2/mKKVdaMyiZtJkQhBkVS3dCVF9+7NM7M3xTj3qFKuvRimlF3dl5GZ92bmfhTd9q/njQn7qsXS1v5Km1f8/U7e6GWwEFi34ljli5H26p4NvC0ierWo+981xNPVkhp+k7JXwp0UXe7/X7l7NsWLo2aVz6u57kptlV/m+UZE5fN9jmJix80q9lX+Tu3F/nRmHpGZfYEvUQwdcQk4SQ3PhF2SpCoy82HgauDYGk+5nCKBvjaKieDeUk6S9Y2I2LtK/f9HkbxeERHDI6JbFLPPXwvckpm3VBTfOyJ2KccQnwX8vRzr/gdg64j4fER0Lz87RDEB3EqJiHdExDEULy6+npmvA2+lSMCeK8scRtHC3uwZYLMyzma9KFqWXylfTnyuxutHRGwaxTJ6XwC+UaXM2hFxUET0zszXgJcoumA3x7JRRPRegdtudloUy/QNAA6j+HcAxfwBe0fE28pk8vgW5z0DVF0bvfy97ga+ExE9yhbq/wZaTnjXpSJiQEQMLf+9rUexysG/gVk1nv9+iknnmnuX/AY4NSLeHsXyhf9D2/fUVvlpQHN8PSgmPASWDkW5DhhT/jbbsuxwgvbiPiAimpP9Fyn+Hb/eximS1BBM2CVJat2ZFElqu8rx5XtSLEN2M0XyeA9F9+9/tHLaMRTjmH8NLAD+TDHh3f4tyl1JkTjPAbYHDi6vOZ+ipfOzFK2UT1PMpr4y67jPjYiFwAyKruYHZOYl5fXup0jwJlIkp4OAv1WcO54ikXs6Ipq79B8FnBkR8ymSs/aWrOsbEQsonse95TV2z8y/tlL+80BTFLO+j6YYEkBmPkCRHP6r7L6/It3ab6doRb4V+H7FtS+nSCqbKCYwaznT+HcoktG5UTG7fIUDKcaOzwZ+RzEe+5Yq5brSOyjifgn4VxnPvuULj9b8JMrZ9imewamZ+afy2LcoJmqcTvFvZkq5rzWtli9fYp1J0VvlIaDlOPNjKCY7fLqM4zfAq+3ecWEH4B/lPfweOC47uI69JK1KkVlLzzBJklQPETGOYjb5WmfSltYIEXEusHFmVpstXpLeFGxhlyRJUsMrh5oMLodL7EgxpOB39Y5LkrpSrTOPSpIkSfXUi6IbfF+KIRk/AG6oa0SS1MXsEi9JkiRJUgOyS7wkSZIkSQ3IhF2SJEmSpAbkGHbVVZ8+fbJfv371DkOSJEmS6mLy5MnPZ+bbqx0zYVdd9evXj0mTJtU7DEmSJEmqi4h4rLVjdomXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAjmGXJEmSpNXQa6+9xpNPPskrr7xS71BUgx49erDZZpvRvXv3ms8xYZckSZKk1dCTTz5Jr1696NevHxFR73DUhszkhRde4Mknn2SLLbao+Ty7xEuSJEnSauiVV15ho402MllfDUQEG2200Qr3hjBhlyRJkqTVlMn66qMjv5UJuyRJkiSpLkaNGsU111xT7zAalmPYJUmSJOlNoN8pf+zU+prO2adT62tp8eLFXVr/m4Et7JIkSZKkDmlqamLbbbfloIMOon///owcOZJFixZx5plnssMOOzBw4EC++MUvkpkA7L777hx//PEMGzaMH//4x8vUddpppzFq1CiWLFlSj1tpSCbskiRJkqQOe/DBBznqqKOYNWsW66+/PhdddBHHHHMM9957LzNnzuTll1/mD3/4w9Ly//nPf5g0aRJf+9rXlu478cQTee6557j00kvp1q1bPW6jIZmwS5IkSZI6bPPNN2fnnXcG4OCDD+auu+7itttuY6eddmLQoEGMHz+e++67b2n5z3zmM8ucf9ZZZzFv3jzGjh3rJHotOIZddfXsY/O5cPT4eoexWjp67B71DkGSJElaLsmOCI466igmTZrE5ptvzpgxY5ZZzuytb33rMuV32GEHJk+ezJw5c3jb2962SmJeXdjCLkmSJEnqsMcff5yJEycCcOWVV7LLLrsA0KdPHxYsWNDuLPB77bUXp5xyCvvssw/z58/v8nhXJ7awS5IkSZI6bJtttuHCCy/k8MMPZ7vttuPII4/kxRdfZODAgWy88cbssMMO7dZxwAEHMH/+fD7+8Y9z00030bNnz1UQeeOL5tn6pHp459u3yZP3/2m9w1gt2SVekiRpzTZr1iz69+9f1xiamprYd999mTlzZl3jWF1U+80iYnJmDqtW3i7xkiRJkiQ1ILvEq67Wn/84e0w4ut1y/R+YtQqikSRJkrQi+vXrZ+t6F7KFfTUWEaMiIiNiVL1jqRQRY8q4dq93LJIkSZK0uurShD0iukXEERFxe0TMiYjXIuLZiJgeEb+IiI+3KN+pCWhE9CvrG9cZ9XW2iBjXiAm3JEmSJKn+uqxLfER0A/4A7AXMBf4IPAmsDQwAPgdsC/y+q2KQJEmSJGl11ZVj2A+kSNanAbtl5rzKgxGxLrBTF15fkiRJkqTVVld2if9AuR3XMlkHyMxFmXlb8/eImABcWn69tOwq3vzpV5bpGxH/ExF/i4inI+I/ETE7Iq6MiO0q64+IMcCj5ddDW9Q3qkXZj0TETRHxfES8GhGPRMT3ImKDlnFHRFP5eWtZ5vHynIcj4uSIiI48rBbXeHdE/Lys8+VyOMGMiBgbERvVcP6I8vz7I+Klso6ZEXF6RPSoUn7pmPOIGBkR90TEovK6V0XEpq1cZ/uI+HNEzC+vc0tEvH9F7vWRTeDTX19ruU//B2Yt85EkSZLUWJqamhg4cOAKnTNu3Dhmz57dRREVMV155ZVdVv+q1pUt7C+U261rLD+Oouv8fsANwNSKY3PL7QeBU4DbgGuBBcBWwEjg4xGxc2ZOK8tOADYAjqNo5b++or6ldUfE6cAYYA5FF/5ngcHACcDeEfH+zHypRazdgb8AfYE/AYuBTwDnAD2AM2q85+VExCbAvcD6wE3lffYAtgA+D/yEN55ta06mGG5wN8VQhB7AzuV97h4Re2bmkirnHQV8nGKYwu0UPSA+AwyJiKGZ+WpFnB8AbqEY4nAd8DAwlOK5j1/B25YkSZK0ssb07uT6lmt3XWnjxo1j4MCB9O3bt9PrhjcS9s997nNdUv+q1pUJ+3UUiePoiOgF/A6YnJmPVSucmePKxun9gOszc1yVYuOBd2Tm/MqdETEE+BtFwvzRsr4JEdFEkbBPzcwxLSuLiBEUSexEYO/MnFtxbBRFi/8ZwFdanNqX4iXAhzPz5bL8GcD/AV+JiLMz87Vq91mDkcDbgOMz88ct4n0r8HoNdRwFPJqZ2eL8s4BTy2tcXeW8vYAdMnNGxTlXUgxv2A/4bbkvgEuAnsAnMvOGivLHAefVEKMkSZKk1dySJUs44ogjuPvuu9l000254YYb6NmzJ1OnTmX06NEsWrSILbfckksuuYRbb72VSZMmcdBBB9GzZ08mTpxIz549l9Z1/vnnM3bsWNZaay222247rrrqKsaMGcMjjzzCww8/zPPPP89JJ53EEUccQWZy0kkn8ac//YmI4NRTT+Uzn/kMp5xyCrNmzWLo0KEceuihfOUrLVO51UuXdYnPzH8CBwPPlNtrgaaIeCEifhcRH+tAnc+2TNbL/dMokvkREdF9Bao8ttweUZmsl3WOo2iJP6i1c5uT9ebYKHoG9Aa2WYEYWvNyyx2ZubDymq3JzH+1TNZLPyq3H2nl1PMrk/XSxeV2x4p9H6C4xzsqk/XST4BH2oovIr4YEZMiYtKS+dUa+iVJkiStDh566CGOPvpo7rvvPjbYYAOuvfZaAA455BDOPfdcpk+fzqBBgzjjjDMYOXIkw4YN44orrmDq1KnLJOsA55xzDv/85z+ZPn06Y8eOXbp/+vTpjB8/nokTJ3LmmWcye/ZsrrvuOqZOncq0adO45ZZbOPHEE3nqqac455xz2HXXXZk6depqn6xDFy/rlpm/Bd5JkSCeRdHl/C0U3cd/HxGXreiY74jYJyJujIinymXiMiIS+BiwDtBnBap7P/AacEA5jnuZD0V377dXGTc+LzMfrlLfE+V2wxW5pxZ+T9HV/8KIuLZMbgesyHMqx9d/IyLujYh5EfF6+Yyau9JXHZMOTKqyr9o9va/c3t6ycNnV/q624svMn2fmsMwc1q1Xt7aKSpIkSWpgW2yxBUOHDgVg++23p6mpiXnz5jF37lx22203AA499FDuuOOOdusaPHgwBx10EL/+9a9Za603OoPvt99+9OzZkz59+jBixAjuuece7rrrLg488EC6devGO97xDnbbbTfuvfferrnJOurKLvEAlF3D/1p+mpd725+iS/UhFF3lr2+1ggoV3a1fBG4GHgcWAUnxEmAIRdJeq40onsHp7ZRbj2XHjc9tpdzictvhLDQzH4uIHSm66u8FfKo89EREfD8zz2/r/LKHwXiKFvGZFF3fn6N4MQHFvbb2jKrdV7V7ah4c80wr9TzdVoySJEmS3hzWWeeN1KJbt268/HK7HYJb9cc//pE77riDG2+8kW9/+9vMmFF0/m3ZdtkJ83yvNro8YW+pbIH9bUQMohhPvQc1JOwRsRZFEvs08L7MfKrF8RWanbw0D3hLZr6tA+d2mcycBXymvOchwJ7Al4EfR8TCzPxlG6fvR5Gsj8vMwyoPlBPatfdyohbNs0+8o5XjG9da0YBX/8OkRx9f/kBnT5hRqy6YWEOSJElak/Tu3ZsNN9yQO++8k1133ZXLL798aWt7r169mD9/uVHOvP766zzxxBOMGDGCXXbZhauuuooFCxYAcMMNN/D1r3+dhQsXMmHCBM455xyWLFnCz372Mw499FDmzJnDHXfcwfe+9z3+/e9/V61/dbXKE/YKzU+x8vVI84Dmai3UfShmfb+uSrK+Hm90067UVn0Afwf2iYgBmXlfTVGvQpm5GJgMTI6Iu4E7KHoStJWwv6fcXlfl2G6dFNqU1uore1Ds0knXkSRJkrQauuyyy5ZOOvfud7+bSy8tVvAeNWoUo0ePXm7SuSVLlnDwwQczb948MpNjjz2WDTYoVtkePHgwI0aM4Pnnn+e0006jb9++fPKTn2TixIkMGTKEiOC73/0uG2+8MRtttBHdunVjyJAhjBo1arUfx95lCXtEHAg8D9yama+3OLYxcET5tXIwQ3O383dWqfJZiu7v20fEepm5oKyrO/Bjqo9df5Giu3y1+qCYhG0f4OKIGJmZyywIWM7KPigz/97K+Z0uIrYHHq6ydn1za/aidqpoKre7AzdW1Ptu4NxOCBGK5eIeBD4YEfu1mHjuGGDLTrqOJEmSpFqt4t6i/fr1Y+bMmUu/n3DCCUv/Hjp0KH//+/Jp1P7778/++++/3P7u3btz113Vp8IaPHgwv/rVr5bZFxF873vf43vf+95y9Ywf/+ZZZborW9h3olhS7emIuAt4tNy/BUWS3JNiVvVrKs6ZSJGQHl9O9NY8FvqCzJwXEedTrMM+IyJuoJgUbgTFMmi3lX8vlZkLIuIfwK4RcQXFsmtLgN9n5vTMvDUiTgG+AzwUETeVca4HvIuiBfkuirHkq8rngS+Vz+wRipcOW1JMqvcq7S+ZdiPFmuhfLYcd/JPihcW+FGuyt/byomaZmRHx3xTzCFwbEZXrsH8I+DOr9plJkiRJ0ptOVybsPwAeohh/PZhipvgeFK3oE4ArgSsrlx/LzBcjYn+KcdajgLeWh35NMW76NIoJ1L4AfKncdzPFWPgzWonj8xQt6XtRrCcewJPA9PKa50bE3yiWeNuFYgz4PODfwM/LOFel31BMCvcBYHuKFxv/Bq4CfpCZM9s4l8xcGBF7UKxJvzuwK/Aviln6fwh8pjOCzMy/RcSuwLeBj5a7/1Fe8yOYsEuSJElaSWPGjKl3CHUV1ZfrllaNdTbZKjc5tL1OA6u3pnP2qXcIkiRJehOaNWsW/fv3r3cYWgHVfrOImJyZw6qV79J12CVJkiRJUseYsEuSJEmS1IBM2CVJkiRJakAm7JIkSZKkDmlqamLgwIE1lx83bhyzZ89ut9yoUaO45ppr2i33ZteVs8RLkiRJklaRQZcN6tT6Zhw6o1PrgyJhHzhwIH379u30ut+MTNhVV4M27c0kZ1GXJEmSVltLlizhiCOO4O6772bTTTflhhtu4MEHH2T06NEsWrSILbfckksuuYRbb72VSZMmcdBBB9GzZ08mTpzI/fffz1e/+lUWLFhAnz59GDduHJtsskm9b6lh2CVekiRJktRhDz30EEcffTT33XcfG2ywAddeey2HHHII5557LtOnT2fQoEGcccYZjBw5kmHDhnHFFVcwdepU1lprLb785S9zzTXXMHnyZA4//HC++c1v1vt2Goot7JIkSZKkDttiiy0YOnQoANtvvz2PPPIIc+fOZbfddgPg0EMP5YADDljuvAcffJCZM2fy4Q9/GCha6m1dX5YJuyRJkiSpw9ZZZ52lf3fr1o25c+fWdF5mMmDAACZOnNhVoa327BIvSZIkSeo0vXv3ZsMNN+TOO+8E4PLLL1/a2t6rVy/mz58PwDbbbMNzzz23NGF/7bXXuO++++oTdIOyhV2SJEmS1Kkuu+yypZPOvfvd7+bSSy8FiuXaRo8evXTSuWuuuYZjjz2WefPmsXjxYo4//ngGDBhQ5+gbR2RmvWPQGmzYsGE5adKkeochSZIkrXZmzZpF//796x2GVkC13ywiJmfmsGrl7RIvSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkqdP069eP559/fqXrmTBhAnfffffS72PHjuVXv/rVSte7Olmr3gFIkiRJklberG07d032/g/M6tT6VtSECRNYb731+MAHPgDA6NGj6xpPPdjCLkmSJEnqkIULF7LPPvswZMgQBg4cyNVXXw3ABRdcwPve9z4GDRrEAw88AMCcOXP4xCc+weDBgxk+fDjTp09vdX9TUxNjx47lRz/6EUOHDuXOO+9kzJgxfP/73wdg99135+STT2bHHXdk66235s477wRg0aJFfPrTn2a77bbjk5/8JDvttBOTJk2qw5PpHCbskiRJkqQO+fOf/0zfvn2ZNm0aM2fOZK+99gKgT58+TJkyhSOPPHJpkn366afz3ve+l+nTp3P22WdzyCGHtLq/X79+jB49mq985StMnTqVXXfddblrL168mHvuuYfzzjuPM844A4CLLrqIDTfckPvvv5+zzjqLyZMnr6In0TVM2CVJkiRJHTJo0CBuvvlmTj75ZO6880569+4NwKc+9SkAtt9+e5qamgC46667+PznPw/AHnvswQsvvMBLL73U6v72tHaNz372swAMHDiQwYMHd9q91oNj2CVJkiRJHbL11lszZcoUbrrpJk499VQ+9KEPAbDOOusA0K1bNxYvXtwl114V16g3W9glSZIkSR0ye/Zs1l13XQ4++GBOPPFEpkyZ0mrZXXfdlSuuuAIoJpTr06cP66+/fqv7e/Xqxfz581conp133pnf/va3ANx///3MmDGjg3fWGGxhlyRJkiR1yIwZMzjxxBN5y1veQvfu3fnpT3/KyJEjq5YdM2YMhx9+OIMHD2bdddflsssua3P/xz72MUaOHMkNN9zABRdcUFM8Rx11FIceeijbbbcd2267LQMGDFjaTX91FJlZ7xi0Bhs2bFiuzrM2SpIkSfUya9Ys+vfv3KXcVndLlizhtddeo0ePHjzyyCPsueeePPjgg6y99tr1Dg2o/ptFxOTMHFatvC3skiRJkqQ3hUWLFjFixAhee+01MpOLLrqoYZL1jjBhlyRJkiS9KfTq1Wu1Xne9JSedkyRJkiSpAZmwS5IkSZLUgEzYJUmSJElqQI5hV109+9h8Lhw9vt5hSCvk6LF71DsESZIkrQFsYZckSZIkrRJjxozh+9///nL7m5qaGDhwIACTJk3i2GOPrbnOfv368fzzz3dajC194Qtf4P777++y+ttiC7skSZIkvQl0ds/VevUqHDZsGMOGVV2WvC5+8Ytf1O3atrBLkiRJklZYU1MT2267LQcddBD9+/dn5MiRLFq0CFi21XvSpEnsvvvuS8+bNm0a73//+9lqq624+OKLl6t3woQJ7LvvvgAsWLCAww47jEGDBjF48GCuvfbaqrFccMEFvO9972PQoEE88MADAMyZM4dPfOITDB48mOHDhzN9+nRg+Vb+gQMH0tTUxMKFC9lnn30YMmQIAwcO5OqrrwZg9913X7pU3Hrrrcc3v/lNhgwZwvDhw3nmmWcAeOSRRxg+fDiDBg3i1FNPZb311uvwc61kwi5JkiRJ6pAHH3yQo446ilmzZrH++utz0UUXtXvO9OnTGT9+PBMnTuTMM89k9uzZrZY966yz6N27NzNmzGD69OnssUf1Vv8+ffowZcoUjjzyyKXJ+Omnn8573/tepk+fztlnn80hhxzSZlx//vOf6du3L9OmTWPmzJnstddey5VZuHAhw4cPZ9q0aXzwgx9c+sLhuOOO47jjjmPGjBlsttlm7T6DWtklXnW1/vzH2WPC0fUOo8v0f2BWvUOQJEmSuszmm2byeDwAACAASURBVG/OzjvvDMDBBx/M+eefzwknnNDmOfvttx89e/akZ8+ejBgxgnvuuYehQ4dWLXvLLbdw1VVXLf2+4YYbVi33qU99CoDtt9+e6667DoC77rpraYv8HnvswQsvvMBLL73UalyDBg3ia1/7GieffDL77rsvu+6663Jl1l577aWt/9tvvz0333wzABMnTuT6668H4HOf+1y7z6BWtrBLkiRJkjokIqp+X2uttXj99dcBeOWVV2o6Z2Wss846AHTr1o3Fixe3WbYytsr4tt56a6ZMmbK0W/uZZ5653Lndu3dfGm8t11pZJuySJEmSpA55/PHHmThxIgBXXnklu+yyC1CMYZ88eTLAcuPOb7jhBl555RVeeOEFJkyYwA477NBq/R/+8Ie58MILl35/8cUXa45t11135YorrgCKcfF9+vRh/fXXp1+/fkyZMgWAKVOm8OijjwIwe/Zs1l13XQ4++GBOPPHEpWVqMXz48KX3WdkjYGWZsHeCiBgWEZdGxL8i4uWIeCkipkXEuRGxcb3jkyRJkqSusM0223DhhRfSv39/XnzxRY488kigGD9+3HHHMWzYMLp167bMOYMHD2bEiBEMHz6c0047jb59+7Za/6mnnsqLL77IwIEDGTJkCLfddlvNsY0ZM4bJkyczePBgTjnlFC677DIA9t9/f+bMmcOAAQP4yU9+wtZbbw3AjBkz2HHHHRk6dChnnHEGp556as3XOu+88/jhD3/I4MGDefjhh+ndu3fN57YlMrNTKloTRdEX4hzgJGAxcDMwA1gb+ACwI7AAODAz/1CvOBvZwB4983/79at3GF3GMeySJEnqKrNmzaJ///51u35TUxP77rsvM2fOrFsMjWLRokX07NmTiOCqq67iN7/5DTfccMNy5ar9ZhExOTOrrmPnpHMr5zSKZL0J2Dcz76s8GBH7A78GrouIXTPzH6s+REmSJElSV5o8eTLHHHMMmckGG2zAJZdc0in12sLeQRHRD3gISGD7zJzRSrnRwE+BqZn53nLfGOB0YERmTqhS76PAZZk5qsWxdYHjgM8AW5XXngGcn5m/aeX6HynP2RHoBTwJXAd8OzPntijbVP45ABhTXucdwBPAxcB3s8U/mIj4eFn/dsDbgBfK53J1Zra7pkPPLXrme8a8p71ia7wZh1b95yVJkqQ1WL1b2LXiVrSF3THsHXcYRQ+F37WWrJd+ATwFDI2I4R29WERsANwFnA0sAS4BLgPeDlwZEd+qcs7pwJ+BnYA/AucDDwMnAH+LiPWrXKo78Bdgf+BPZfw9Kbr+/0+L+r8I3ECRrN8I/AC4qSx/WEfvVZIkSZJkl/iVsUu5vaWtQpm5OCJuAz4HfBD4ewevdx7wXuDkzPxu886I6AFcD3wjIq7JzKnl/hEUreQTgb0rW9MjYhRwKXAG8JUW1+kLTAM+nJkvl+XPAP4P+EpEnJ2Zr5VlvwT8BxiSmc9WVhIRfTp4n5IkSZJqlJmdsiyaul5Herfbwt5xm5TbJ2oo21xms45cKCI2Ag4GJlUm6wCZ+QpwMhAULwWaHVtuj2jZ9T0zxwFTgYNaueSxzcl6Wf5Zipb03sA2LcouBl5rsY/MfL6N+/liREyKiElL5i9prZgkSZKkNvTo0YMXXnihQ4mgVq3M5IUXXqBHjx4rdJ4t7KvWiv06b9gB6AZkOf69pe7ltnIwxPspEukDIuKAKuesDbw9IjbKzBcq9s/LzIerlG9+6bBhxb4rKLrB3x8RVwG3A3/LzOfaupnM/DnwcyjGsLdVVpIkSVJ1m222GU8++STPPdfm/36rQfTo0YPNNluxNlwT9o57miJB3ryGss1lOvpf0kbldofy05r1WpyzFsXkdm1Zj2KiuGZzWym3uNwuXUQxM38YEc8DR1G06B9P8VLhduDEzJzUzrUZ8Op/mPTo4+0V05jOWcdRdTZmXr0jkCRJbyLdu3dniy22qHcY6kJ2ie+4u8rtnm0ViohuwO7l18nl9vVyW+2FyQZV9jX/X/6PMjPa+Ixocc6L7ZSPzHys3TttQ2b+KjOHU7wg2Af4JcVY/b9ExNtXpm5JkiRJWpOZsHfcpRStzp+MiAFtlDucYiK3ORQztgO8WG6rtc5Xm87/Hookf9cViO/vwIbtxNZpMnNuZt6UmUcA4yiWePvgqri2JEmSJL0ZmbB3UGY+CnyLYvz47yNiu5ZlIuITwI/Lrydn5qLy73vK7WERsVZF+c1psXRaea1nKcaLD4uI08pW+5bX2jIiKvvD/KjcXhwRfauUf+vKLDNX1jEiqk9J+V/ldlGVY5IkSZKkGjiGfeWcCbwVOBGYFhF/Ae6jSOI/QLH+OcB3M/MXzSdl5j8i4g6KFuh7ImI88A7gYxRroFdreT8G2Kq85ucj4i7gGYrW+/4UY9sPBB4tr3FrRJwCfAd4KCJuKo+tB7wL2I2iW/9eK3H/vwMWRMTfgSaKmep3LWOZTDtL3kmSJEmSWmfCvhKyWD/hpIj4X+BoiiR4T2CdsshTwCGZWS1x3Q/4Xrn9MvAQcBLwV+DTVa71UkTsBnyRYvm2/SlmnX+mPPcrwM0tzjk3Iv5GMSHcLuW15gH/ppil/cqO3nvpFOAjwPuAvYFXgMcolpn7acV67ZIkSZKkFRSu2df5IqIXRev1dsABmXl9nUNqWOtsslVucuh59Q5DWkbTOfvUOwRJkiStISJicmZWm8vMMexdITPnA/tSLON2dUSsTLdzSZIkSdIayIS9i2TmE8BHKcaQD46ItesckiRJkiRpNeIY9i6UmdOAafWOQ5IkSZK0+rGFXZIkSZKkBmQLu+pq0Ka9meQEX5IkSZK0HFvYJUmSJElqQCbskiRJkiQ1IBN2SZIkSZIakAm7JEmSJEkNyIRdkiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSA1qr1oIR8QGgX+U5mfmrLohJkiRJkqQ1Xk0Je0RcDmwJTAWWlLsTMGGXJEmSJKkL1NrCPgzYLjOzK4ORJEmSJEmFWsewzwQ27spAJEmSJEnSG9psYY+IGym6vvcC7o+Ie4BXm49n5se7Njy92T372HwuHD2+3mFIWgMcPXaPeocgSZK0QtrrEv/9VRKFJEmSJElaRpsJe2bevqoCkSRJkiRJb6h1lvj5FF3jK80DJgFfy8x/dXZgkiRJkiStyWqdJf484EngSiCAz1Is8zYFuATYvSuCkyRJkiRpTVXrLPEfz8yfZeb8zHwpM38OfCQzrwY27ML4JEmSJElaI9Xawr4oIj4NXFN+Hwm8Uv7t2uzqsPXnP84eE46udxidpv8Ds+odgiRJkqQ3iVpb2A8CPg88CzxT/n1wRPQEjumi2N40ImJcRGRE9Kt3LJIkSZKk1UNNCXtm/iszP5aZfTLz7eXfD2fmy5l5V1cH2ZoyCc6IeD0itmyj3G0VZUetwhBXmYgYU97f7q0c96WBJEmSJK1Gap0l/lKqdH3PzMM7PaIVt5jiPv4b+EbLgxGxFcWkeM3lJEmSJElqeLV2if8D8MfycyuwPrCgq4JaQc9QLC93WERUS8i/UG5vXHUhSZIkSZK0cmpqcc7Mayu/R8RvgLp1ha/iYuBnwL7A9c07I6I7MAq4G7gf+GTLEyNie+AQilb4zYF1gSeA3wPfyswXW5QfBVwKHAY8BpwObE/RA+FO4ITMbHXmsYj4EsW4/60o1rK/ATgxM+e1KDcCOBDYBdgM6A48AvwvcG5mvlJRtgl4V/n1tohYWk9mRkRU9o54tOL4Y5nZrx7Podkjm8Cnv/4m6vhw2aB6RyBJkiSpwoxDZ9Q7hA7raKa0FfBfnRnISvoN8EOK1vTrK/Z/nCLOk4H3tHLuERSJ/O3ALRS9DrYHvgp8NCJ2ysz5Vc7bF9gP+BMwFtgO2BvYISK2y8znq5zzXeAjFK39fwVGlNd/D7BHi7InA9tSvGz4I9AD2BkYA+weEXtm5pKy7HnAJ4DdgMuAphZ1nVEeHwL8GJhb7p9bUWZVPgdJkiRJUjtqHcM+n6LlNMrt0xQJZUPIzPkRcRUwKiI2y8wny0NHAC8Bv6XK+PbSd4CjK5JfACLiv4FfAEcB51Y57xMUa9HfWnHOd4BTgMMpkvOWhgODMvPxsvxawHhgRETsmJn3VJQ9Cng0M5eZOyAizgJOpVha7+ry/s+LiA0oEvZxmTmh8pzMHFNONjcEOC8zm+r8HCRJkiRJ7ah1lvhembl+xXbrlt3kG8DFQDeKJJGIeBfwYeCKzFzU2kmZ+VjLJLV0CUWy/5FWTr2qMkkt/bzc7tjKOWc2J+vltRdTdCtf7pxyZv5qa9z/qNy2FleHrMrnEBFfjIhJETFpyfxql5QkSZIk1TrpHBHx8Yj4fvnZtyuD6ojM/AcwAzg8It5C0T3+LRSJfKsiontEHBMRd0XEnIhYUo75fp1icr1NWzl1UpV9T5TbDVf2nIh4a0R8IyLujYh55dJ1CbxQFmktrg5Zlc8hM3+emcMyc1i3Xt1WPnhJkiRJehOqtUv8OcAOwBXlruMi4gOZ2Vo383q5GDgf+CjFZGiTM/Of7ZxzNcXY7X9RTAD3NPBqeex4YJ1WzpvbckdmLi4ndGstC13uHIrl5pY5p5wsbzxFC/XMMsbngNfKIqe3EVdHrcrnIEmSJElqR62Tzu0NDM3M1wEi4jLgn7Q+LrxeLqcYZz2WokX4zLYKR8QwiiT1FuCjZRf15mNvAU7qulDbtB9Fsj4uMw+rPBARm1Ak7J2mns9hwKv/YdKjj7dfUJIkSW8YM6/9MpJWezV3iQc2qPi7d2cH0hkycy5wDcUyaAspZo9vS/PM8b+vTFJLOwI9OzfCmjXHdV2VY7u1ck7zYPDWWrXbOt6oz0GSJEmS1li1JuxnA/+MiHFl6/pk4NtdF9ZKOZWitfgjrSxDVqmp3O5euTMi/gu4sNMjq11Tud29cmdEvJvqM7XDG2Pb39mB461dr97PQZIkSZLWWO12iS+7RL9OsSTZDuXukzPz6a4MrKPKWdhr7WN9L/A34FMRcTdwF/AOijHwDwKzuyTI9t0IPAx8NSIGUQw/eCfFmud/pHrSfRvF7/SdiBgIvAiQmd8qj98KnAhcHBHXAvOBuZn5Exr3OUiSJEnSGqvdFvZy3PpJmflUZv6+/DRksr6iymXMPg78FOgLHAvsQrHu+Ed4Y5K3VR3XQmAP4EpgQBnXYOAs4OBWzpkFHEoxWdxRZdmzKo7/BfgaxT0dXx47oTzWkM9BkiRJktZkUX2p7xaFilnin6eYSXxh8/7MnNN1oWlNsM4mW+Umh55X7zDUwJrO2afeIUiSJEldJiImZ+awasdqnSX+M+X26Ip9Cbx7ZQKTJEmSJEnV1ZSwZ+YWXR2IJEmSJEl6Q00Je0R0B44EPljumgD8LDMd2yxJkiRJUheotUv8T4HuwEXl98+X+77QFUFJkiRJkrSmqzVh3yEzh1R8Hx8R07oiIK1ZBm3am0lOKiZJkiRJy2l3WbfSkojYsvlLRLwbWNI1IUmSJEmSpFpb2E8EbouIf5Xf+wGHdUlEkiRJkiSp5hb2vwE/A14H5pR/T+yqoCRJkiRJWtPVmrD/CtgCOAu4gGL99cu7KihJkiRJktZ0tXaJH5iZ21V8vy0i7u+KgCRJkiRJUu0t7FMiYnjzl4jYCZjUNSFJkiRJkqQ2W9gjYgaQFGuw3x0Rj5ff3wU80PXhSZIkSZK0ZmqvS/y+qyQKSZIkSZK0jDYT9sx8bFUFIkmSJEmS3lDrGHZJkiRJkrQKmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5IkSZLUgNaqdwBasz372HwuHD2+3mFIkiRpNXX02D3qHYLUZWxhlyRJkiSpAZmwS5IkSZLUgEzYJUmSJElqQCbskiRJkiQ1ICedU12tP/9x9phwdL3DUIPo/8CseocgSZIkNQxb2N8EIiIjYkKNZUeV5Ud1bVSSJEmSpJVhwl6hTGRbfl6NiKaIuCwi+tc7RkmSJEnSmsEu8dWdUfF3b2BH4BBg/4jYJTOn1icsSZIkSdKawoS9iswc03JfRFwAHAMcD4xaxSFJkiRJktYwdomv3V/L7dsrd1aOCY+IvSJiQkTMi4isKNM7Ir4TEQ9GxCsR8WJE/CUi9qx2oYh4S0SMjoh7I2JBRCws/z4yImr+zSLixIh4PSL+FhFva6VMt4h4IiJeioj1WilzQXmPIyv2ZXmvfSLi5xHxVDl84L6IOKzWGCVJkiRJ1dnCXrvm5HpSK8dHAnsBfwLGAu8CiIgNgL8B2wH3AucBfYBPA3+NiCMz82ct6roc+BzwBPALIIFPAhcBuwAHtRVomdSfB3wZuA44KDNfqVY2M5dExMUUwwAOBC5uUVdP4GDgaeCGFqc339t/gGuAdYADgEsi4vXMvKytOAEe2QQ+/fU185/hjENn1DsESZIkSQ1szcyU2hERYyq+rg/sAOwM/AH4fiun7Q3snZl/brH/XIpk/efA6MzM8hrnUiT/50fEXzKzqdx/IEWy/k/gg5m5oNx/KnA78LmI+GNmXtlK7D2AK4BPAT8BjsvM19u55YuB04Av0SJhBz5DkZifnZmvtTg2BPgl8KXMXFJe/zxgOnAy0G7CLkmSJEmqzi7x1Z1e8fkKRav2LOA3mTm/lXNuaJmsR8TaFK3TC4CvNyfrAJn5EHA+sDbFhHbNDi+3pzQn62X5hRRJMMAXqgVQdnu/haI1/uTM/HINyTqZ+RRwPbB9RGzf4vCXgNdZPpEHWAR8tTlZL+u6n6LVvX8bXey/GBGTImLSkvlLqhWRJEmSpDWeCXsVmRnNH2A9YCfgGeCKiPh2K6fdU2XfNsC6wLTMnFPl+Phy+96Kfe+jSJAnVCl/O7CkRflm76BIlHcADs7M77YSZ2suKrdfat4REYOA4cDSHgAtPJSZL1XZ/0S53bDahTLz55k5LDOHdevVbQXDlCRJkqQ1gwl7OzJzYWbeQ9HFfCFwUkRsXqXo01X29S63T7VSffP+DVqcMycz/1MllsXA8xX1VtoY2LqM465WrteqzLyNohfBgRHRq9z9xXLbcox9s7mt7F9cbs3GJUmSJKmDHMNeo8ycGxEPUrSAv483WpGXFqly2rxyu3Er1W7Solzz32+LiO4tx4xHxFoUE9ZVa9WeRjFB3TjgjojYIzP/1cp1WzMW+DFwUERcRtGd/98UY/e7xIBX/8OkRx/vquob25hq712kN5Ex89ovI0mSpFbZwr5imrt41/rcHqQY5z2knC2+pRHldkrFvn+W9X+wSvkPUrRaT6lyjMz8NfBZoC9F0r51jXE2u6yM94u8MdncLyvHqEuSJEmSVg0T9hpFxCeALYDXgLtrOafs1n4F0As4q0V9WwLHlvVdXnHoknL7nYhYt6L8usA55ddftnHNayiWmOsD3B4RA2qJtTx3HnAlxRj5b1GMl6822ZwkSZIkqYvZJb6KFsu6vZViWbaPlt+/kZnPrEB1pwC7AsdExA7AbbyxDnsv4JjMfLS5cGZeGRH7lcfvi4jrKbrbN78wuDozr2jrgpn5+7KO3wETImLPzJxWY7wXUcxCvylwY2Y+uQL3KkmSJEnqJCbs1Z1e8fcS4DngRuAnmXnzilSUmXMi4v3A1ykmrvsq8DLFrPLfy8y/VjntQIoZ4Q/njVnbZwE/AH5a43X/EhF7l3HfFhEfycx7azjvnxExFRhK65PNSZIkSZK6WFQsDS5RzhA/G5gDbFHLOu4rY51NtspNDj2vKy8hrbGaztmn3iFIkiSpHRExOTOHVTvmGHa1dCTF2vMXdXWyLkmSJElqnV3iRUT0pkjUNwWOoFgf/qK6BiVJkiRJazgTdkGxXN13gFeBycCXM3N+fUOSJEmSpDWbCbvIzCYg6h2HJEmSJOkNjmGXJEmSJKkB2cKuuhq0aW8mOZO1JEmSJC3HFnZJkiRJkhqQCbskSZIkSQ3IhF2SJEmSpAZkwi5JkiRJUgMyYZckSZIkqQGZsEuSJEmS1IBM2CVJkiRJakAm7JIkSZIkNSATdkmSJEmSGpAJuyRJkiRJDciEXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5IkSZLUgEzYJUmSJElqQCbskiRJkiQ1IBN2SZIkSZIakAm7JEmSJEkNyIRdkiRJkqQGZMIuSZIkSVIDMmGXJEmSJKkBmbBLkiRJktSATNglSZIkSWpAJuySJEmSJDUgE3ZJkiRJkhqQCbskSZIkSQ1orXoHoDXbs4/N58LR4+sdhiQJOHrsHvUOQZIkVbCFXZIkSZKkBmTCLkmSJElSAzJhlyRJkiSpAZmwS5IkSZLUgJx0TnW1/vzH2WPC0fUOY43U/4FZ9Q5BkiRJUhtsYZckSZIkqQGZsDeAiMgqn1cjoikiLouI/vWOUZIkSZK0atklvrGcUfF3b2BH4BBg/4jYJTOn1icsSZIkSdKqZsLeQDJzTMt9EXEBcAxwPDBqFYckSZIkSaoTu8Q3vr+W27dX7oyIUWXX+VERsVdETIiIeRGRFWV6R8R3IuLBiHglIl6MiL9ExJ4tLxIRu5f1jYmIoRHxx4iYGxGLIuL2iPhAi/JblMfnRMS7Whx7a0TMioglEbF75z0KSZIkSVpz2MLe+JqT60mtHB8J7AX8CRgLvAsgIjYA/gZsB9wLnAf0AT4N/DUijszMn1Wpbxj/v727D7arKg8w/ryGISkQQrBYomiDlGLHD1obaglFiEytCloEFJyiqZUR7ACKOioM1qilgyMoJbEi49DMCAVtOm2KE6WOBLGkFVMHhKEEUK4UG4gkJs13SHz7x1p3PB7Oud/3nJ17n9/Mms1Ze6+917m8Z528Z38s+AjwH8CXgZcAZwPfjojfzcx1AJn5eERcAPwj8A8RcUpm7q37+DvgZcCSzLxrqDf3o3nw9ssnPwwfWPzApB9DkiRJkiaSCXuDRMSSlpeHAicAJwFfB67p0uxNwJsy85tt9Z+hJOs3AhdlZtZjfIaS/F8fEXdk5kBbu9OBd2fm8pZ+XUj5MeD9wF8O1mfmioj4IvA+4NPA5RGxmHLf/epaJ0mSJEkaAxP2ZvlEh7qHgFszc2uXNivbk/WIOBA4H9gGXD6YrANk5qMRcT1wJSWx/lTb/u5pTdarm4BllIfgtfsgsBD4aET8FLga+BnwZ5n5iy59liRJkiQNw3vYGyQzY7AAhwCvAZ4GbomIq7o0u7dD3XHAQcD9mbmpw/o76/L3Oqx7zqX3mfls7cfcDut2AecC24Gl9bjvysz1XfpLRLw3ItZGxNp9W/d120ySJEmSpjUT9obKzO2ZeS9wFiUZ/khEvLjDpk91qJtTl92S5sH6wzqs29ylzV5gRpd1jwA/rP/9EL98UF5HmXljZi7IzAUzZnfbpSRJkiRNb14S33CZuTki1gGvruV/2jfp0GxLXR7ZZbfz2rYbr49RLot/Bng5cDnQ7YqAX/Hy3XtY+/gTE9SNISyZM/w2Gr0lExVCkiRJktp5hn3/MHgp+kj/f60DdgDH16fFt1tUlz8Yb8fqdG+fqsd8RV1+MiL+aLz7liRJkqTpzIS94SLiTOBo4FlgzUjaZOYe4BZgNm1Pao+IY4BL6/6+Ms6+zQVuBfYB52Xm05T72fdSpno7fDz7lyRJkqTpzEviG6RtWreDKdOyvbG+vqImxCP1MeBk4OKIOIEyzdrgPOyzgYsz8/Fxdvkmyjztl2bmfQCZeX9EfIjyVPnlwFvGeQxJkiRJmpZM2JuldVq3fZTp0W4HlmXmt0azo8zcFBEnUu4nP4sy/dpOylPlP5uZQz4YbjgRcQlwJvCvmbm07dhfiIjTgLdGxGWZ+fnxHEuSJEmSpqNomaJb6rkFL5yRa997SL+7obHyoXOSJEnSuETEf2Xmgo7rTNjVTzPnHZvzFl/X726o4QauPr3fXZAkSZImxVAJuw+dkyRJkiSpgUzYJUmSJElqIBN2SZIkSZIayIRdkiRJkqQGclo39dUrXzSHtT5QTJIkSZKewzPskiRJkiQ1kAm7JEmSJEkNZMIuSZIkSVIDmbBLkiRJktRAJuySJEmSJDWQCbskSZIkSQ1kwi5JkiRJUgOZsEuSJEmS1EAm7JIkSZIkNZAJuyRJkiRJDWTCLkmSJElSA5mwS5IkSZLUQCbskiRJkiQ1UGRmv/ugaSwitgLr+t0PaRx+HXim352Qxsk41v7OGNb+zhie3n4zM4/otOKAXvdEarMuMxf0uxPSWEXEWmNY+zvjWPs7Y1j7O2NY3XhJvCRJkiRJDWTCLkmSJElSA5mwq99u7HcHpHEyhjUVGMfa3xnD2t8Zw+rIh85JkiRJktRAnmGXJEmSJKmBTNglSZIkSWogE3b1XEQcFRE3RcT/RsTuiBiIiOsiYm6/+6bpp8ZfdilPdWmzMCJWRcSmiNgZET+MiA9ExIwhjnNGRNwVEVsiYltEfC8iFk/eO9NUEhHnRMTSiPhuRPxfjc+bh2nTkziNiMURcW/dfkttf8ZY36umptHEcETMH2Jczoi4bYjjjCoeI2JGRFxWPx876+dlVUQsnIj3rakjIp4fERdExD9HxGM1XrZExL9HxHsiomNe5Vis8fIedvVURBwDrAFeAKwEHgb+AFgErANOysyN/euh/Q2neAAABx5JREFUppuIGAAOA67rsHpbZl7Ttv2fAv8E7AK+CmwC3gwcB6zIzLd1OMbFwFJgY22zBzgHOAq4NjM/PFHvR1NTRNwHHA9sA54EXgbckpnnd9m+J3EaEdcAH6p9WgEcCJwHHA5ckpnLxv6uNZWMJoYjYj7wOHA/8C8ddvdgZq7o0G5U8RgRAXyNEufrgNvrtucCs4CzM3Pl6N+tpqKIuAj4IrAeWA08AfwGcBYwhzLmvi1bkivHYk2IzLRYelaAO4CkDB6t9Z+r9Tf0u4+W6VWAAWBghNseCmwAdgMLWupnUX6ISuC8tjbzKV/UG4H5LfVzgcdqmxP7/XewNLtQftQ8Fgjg1Bo3N3fZtidxCiys9Y8Bc9v2tbHub/543rdl6pRRxvD8un75KPY/6ngE3lHb3APMaqk/oX5+NgCz+/23szSjAK+jJNvPa6s/kpK8J+VHnsF6x2LLhBQviVfP1LPrr6ckSF9oW/0JYDvwzog4uMddk0bqHOAI4LbMXDtYmZm7gCvry/e1tfkLYCawLDMHWtr8HPib+vKiyeqwpobMXJ2Zj2b9V9gwehWng6+vqtsNthmgjPEzgXePoL+aBkYZw2Mxlngc/BxcWT8fg22+TzmzeQTl8ySRmXdm5u2Z+Yu2+qeAG+rLU1tWORZrQpiwq5cW1eW/dRjstlJ+4T4I+MNed0zT3syIOD8iroiI90fEoi73lr2uLr/ZYd3dwA5gYUTMHGGbb7RtI02EXsWpsa3J9sKIuLCOzRdGxKuG2HZU8RgRsyhnJncA3x1JG2kIz9bl3pY6x2JNCBN29dJxdflIl/WP1uVv96AvUqsjga8AV1HuZb8TeDQiTmnbrmsMZ+Zeyj2XBwAvHWGb9ZQrS46KiIPG8wakFpMep/VKqBdRnvOwvkMfHM81Ef6Ycubyqrq8PyJWR8RLWjcaYzweA8wAflw/FyNpIz1HRBwAvKu+bE2aHYs1IUzY1Utz6nJLl/WD9Yf1oC/SoL8HTqMk7QcDrwS+RLn36xsRcXzLtmOJ4ZG2mdNlvTRavYhTx3NNph3Ap4Hfp9y7Oxc4hfKgr1OBb7fdPjeZMW8MazhXA68AVmXmHS31jsWaECbskqa1zPxkvS/t6czckZkPZuZFlAch/hqwpL89lKTpJTM3ZOZfZeYPMnNzLXdTnoPzPeC3gAv620sJIuJSytPZHwbe2efuaIoyYVcvDXcmcbB+cw/6Ig1n8AEyr22pG0sMj7RNt1/HpdHqRZw6nqvn6mXEX64vezU2G8PqqE6/9rfAQ8CizNzUtoljsSaECbt6aV1ddruP5ti67HaPu9RLP6vL1ssuu8ZwvYftaMoDZ348wjbz6v6fzMwd4+2wVE16nGbmduCnwCF1fTvHc02W54zNY4zHHwH7gJfWz8VI2kgARMQHKHOlP0hJ1p/qsJljsSaECbt6aXVdvj4ifiX2ImI2cBLlvrX/7HXHpA4GZyto/SK9sy7f0GH711JmOViTmbtH2OaNbdtIE6FXcWpsqx86jc0wynisU2utoXweTh5JGwkgIj4KfB64j5Ksb+iyqWOxJka/J4K3TK8C3AEkcElb/edq/Q397qNl+hTgd4CDO9TPpzxZNYErWuoPpZzd2Q0saKmfRfmHXwLnte3raGAXsBGY31I/F3istjmx338Ly/5TKA/dSuDmLut7EqeUKbGyrp/bUj+/7mdX674slsEyghh+NfC8DvWn1bhKYGHbulHHI/CO2uYeYFZL/Qn187MBOLTffy9Lcwrw8Roza4HDh9nWsdgyISXq/1CpJyLiGMog9QJgJfDfwGsoc7Q/QvkC3ti/Hmo6iYgllIfF3A38BNhKmerndMoX6irgrZm5p6XNmcAKyhfgbcAm4C2UqVhWAG/PtoE1Ii4Brqd8cX4V2AOcAxwFXJuZH560N6kpocbdmfXlkcCfUM4wDs4f/UxrHPUqTiPiWuCDwJN1vwcC5wLPp/wwu2y8711Tw2hiOCLuolzKu4YSWwCv4pdzSX88M/+6wzFGFY8REcDXKHH+MHB73fZcynfA2Zm5cjzvW1NHRCwGllNupVhK52fPDGTm8pY2jsUav37/YmCZfgV4MWUqrfWUQegnlLmv5/a7b5bpVSjTBN1K+YfaZuBZyq/h36LMqRpd2p1ESeZ/DuwEHgAuA2YMcaw3A9+h/CiwHfg+sLjffwPL/lEosxXkEGWgQ5uexCnw53W77bXdd4Az+v03szSrjCaGgfcAXwcGgG2UM5RPUJKXk4c5zqjikTIP9mX187Gzfl5W0XYG32IZQQwncFeHdo7FlnEVz7BLkiRJktRAPnROkiRJkqQGMmGXJEmSJKmBTNglSZIkSWogE3ZJkiRJkhrIhF2SJEmSpAYyYZckSZIkqYFM2CVJkiRJaiATdkmSJEmSGsiEXZIkSZKkBjJhlyRJkiSpgf4fYhqMrweBV/QAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "count_sum_df.drop('airbnb', axis=1).plot(kind = 'barh', legend = True, style = 'ggplot',figsize=(15,5), fontsize= 20, title='NYC Open Data Distribution in 5 Boroughs')" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Text(0.5, 1.0, 'NYC - Public Housing')" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA5kAAALYCAYAAAD2JTZbAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdeXyU1fXH8c/JQiCAgwKyQwBREYMrtq4gLq1i3VurreL2s1Zbq7+60NplajfU2tVftdpWUau1uwvauoJLXeoeZRHRuCEqW0CWkMyc3x/3iU7HhEzCJE9m8n2/XuMkz9znPmdiyMyZe++55u6IiIiIiIiI5ENJ3AGIiIiIiIhI8VCSKSIiIiIiInmjJFNERERERETyRkmmiIiIiIiI5I2STBEREREREckbJZkiIiIiIiKSN0oyRTbBzL5pZr/dxONVZuZmVtbO/mvN7MD2RygiIiJdhZldb2Y/iDsOkbgpyZROFSVV75lZ74xjp5vZHAseMrPvZp1zkpktNrNKM9vCzH5uZm+Y2QfR8Z+b2YDNjOt6M2s0syGZx939R+5++ub0LSIiIh/pau8FoutuiPpaZmZ/y34/ICJtoyRT4lAKfC37oLs7cDpwnplNADCzgcAV0fFG4H5gAvBpYAtgT2A5sEd7g4le5I4B6oAvtuG8do1eioiISNd6LwB8xd37ANsC/YCftbUDMyvdjOuLFBUlmRKHy4Hzzaxf9gPu/jLwQ+B3ZlYC/BL4q7s/CJwEjASOcvd57p529/fc/fvuftdmxHMMsAq4BJie+YCZJc3spujrpqmxp5nZG8ADGU1PNbMlZvaOmZ2fdf6fzOwGM1tjZi+Z2e5Z159kZvPMbKWZXWdmPTfjuYiIiBSCrvZeoOnaK4C/AjsCmNmfzWypmdVFI6wTmtpGs6CuMrO7zGwtsH9mX2bW18weNLNfmpltbmwihURJpsThKWAOcH4Lj/8UMOAvwN7ABdHxA4F/uvsHeY5nOnAL8EdgezPbrZX2k4HxwKcyju0PjAMOBi7KWmd5eNR3P+B24Mqs/r4Q9TWW8Anqt9r3NERERApGV3svAEA05fYY4Nno0N2E1/etgWeAP2SdcgIhIe4LPJLRT3/CiOuj7n5ONEIr0m0oyZS4fAf4ajQF5r+4ewo4FTgK+Kq7r4ke6g+8k88gzGwkIUG82d3fJbwgnNTKaUl3X+vu6zOOfS86VgNcBxyf8dgj7n5X9LxuBHbK6u9Kd38z+vT0h1nnioiIFKsu8V4g8kszWwU8H/X/v1Ecv3f3Ne5eDySBncwskXHebe7+aDSiuiE6NhSYC/zZ3fXBsXRLSjIlFu7+InAnMKOFx1+Kvnwp4/ByIOeF+FFl2A+i29UtNDsRmO/uz0Xf/wE4wczKN9H1m60ce53wAtNkacbX64CeWes5N3WuiIhIUepC7wUAznH3fu4+zN2/4O7vm1mpmc2MCgutBmqjtpkFhpp7TzAN6AVs6noiRU1JpsTpu8D/AMNybH8f8KnManSbElWG7RPdzmyh2UnAmGi9xVLC9JwBwKGb6rqZYyMyvh4JLMklxjycKyIiUsi6wnuBlpwAHEGYopsAqqLjmesrm3tPcC3wT+CuXOMUKTZKMiU27v4KcCtwTo6n3Ej4xPCvZra9mZWYWf/oU8pNJYXNMrM9Cesg9wB2jm47AjfT+pTZbN+OyqpPAE4hPK9cnW1mw81sK+DiNp4rIiJSsOJ+L9CKvkA9YfS0EvhRG879CrAQuMPMeuU5LpEuT0mmxO0SINdPI+sJnyYuAO4FVgNPEkYen2jHtacT1lLUuPvSphvwC+CwKOnL1VzgFcKazp+4+z1tOPdm4B7gVWAxoE2cRUSkO4nzvcCm3EBYxvI2MA94PNcTo0I/ZwBvAbepcrx0N6ZiVyIiIiIiIpIvGskUERERERGRvFGSKSIiIiIiInmjJFNERERERETyRkmmiIiIiIiI5I2STBEREREREckbJZkiIiIiIiKSN0oyRUREREREJG+UZIqIiIiIiEjeKMkUERERERGRvFGSKSIiIiIiInmjJFOkiJmZm9n1ObRLRm2rOjwoERERESlqSjJF2snMpkSJWeZtg5m9ambXmdn4uGMUEREREelsZXEHIFIEbgHuir7uBUwETgeOMbNqd389tshERERERDqZkkyRzfeMu9+UecDMFgG/AI4GftbSiWbW193XdHB8IiIiIiKdRtNlRTrGkuh+I4CZVUXTaZNmdpyZPW1m64FfNZ1gZqeb2TNmtt7M6szsHjPbp7nO29K2mXN3NbOlZjbPzEa20Oa8KN6DmnmswsyWm9kDGcdqzWyOmW1vZrPNbE0U11/MbHAucYmIiIhIcVCSKbL5Ks1sQHQbYWaHAD8ElgF/zWp7JHAV8E/gHOBuADO7FLgWaAC+CVwB7AA8aGaHZnbQlrbZzOxTwFxgMbCPu7/RQtMbgHrg1GYeOwrYCvht1vFhwBzgDeAC4GbCSO4Nm4pJRERERIqLpsuKbL7vRbdM84B93X1p1vEJwER3n990wMy2IyRljwJT3b1p9PO3UT+/NrOx7p5qS9vsIM3sROB3hPWjx7v7+paekLsvN7O/AUeb2VbuviLj4dOAlcDfsk7bBjjO3f+Ucc00cJaZbefuC1u6noiIiIgUD41kimy+a4CDottngIuAAcBdZjYqq+3szAQzcgRgwGVNSSOAuy8BrgNGAbu0o+2HzGwGMAv4PXDMphLMrOdVAXwho58q4ADgD+6+Iav9kswEM9I0pXZcDtcTERERkSKgJFNk8y1y9/ui253ufhlwODAauDSr7cvNnD86un+pmceajo1pR9smRwM/Bn7r7mc2N8rZHHefE8V7WsbhUwhJbvZUWYBXmzm2PLrvn8s1RURERKTwKckU6QDu/gRQB0zNemhdDOE8SViDeayZ7d7Gc68FdjKz3cysBDgZeMrdn2+m7aaSV2vjdUVERESkQCnJFOk4ZUDfHNo1jQBOaOaxHbLatKVtk7eAycD7wH1m9skcYmpyPaFC7mmE6cAjCes6RURERESapSRTpANEW3/0Bp7OofntgAMXmFl5Rh9DCNNTXweebUfbD7n724REcwlwj5ntncvzcPdlwD+AE4CvEEZib87lXBERERHpnlRdVmTz7WpmX4y+riCMMp5B2GLkW62d7O4Lzexy4ELgITO7lTACegbQB/hC0zrKtrRt5jpLzWwKcB/wTzM7zN3n5vD8rgE+BxwGzHL31TmcIyIiIiLdlJJMkc13fHQDSBOK3dwD/Njd/5NLB+5+kZm9ApwFzCRMUX0COMHdH25v22au856Z7U9INO8ys8Pd/f5WwnsAeIWwRYmmyoqIiIjIJpm7xx2DiHRxZvYSUOru28cdi4iIiIh0bVqTKSKbZGZTCUWFro07FhGRYmVmbmbX59AuGbWt6vCgRETaSdNlpfgkEyXAIGAoMCzjfkvCmskeGbfy6L6RsOVIc7elQC3wBsm6xk58JrGKksuxwDcIlWmVZIpIQYrWoz+YdbieUAxtLnCZu8/v7LgkD5KJMmA44bU+89afjwZTbBP3jYTfgzcybq+TrItjyzGRoqEkUwpXeGHZDtgZ2Cm6Hw8MpmN+t1MkE28CLwMLgQXAM8AzJOs2dsD14vYdYB9gHjBdBX9EpAjcAtwVfd0LmAicDhxjZtXu/npskcmmJRPlwCRgd2AcoU7ANkAVHfGan0ws578Tz9cI9Q/+Q7KuIe/XEykySjKlcCQTA4EDgf2BXQlVXHt2YgSlhBezKuDgjOP1JBNPA48B/wYeI1n3TifG1SHcfUrcMYiI5Nkz7n5T5gEzWwT8Ajga+FlLJ5pZX3df08HxSZNkoifwCcL2W5OBTwKVnRhB/+i2S9bx9SQTTwAPAQ8TXvPXdmJcIgVBSaZ0XeEFZl/goOi2Ex9NcelKKoC9otvXAUgmXiN8Wn4bMEefeoqIdFlLovuNANFax9eA7wHzCVtG7QDcCpwctTmdUOF7PB9V+L7E3R/J7rwtbZs5d1fCa8kK4NPu/kYzbc4Dfgoc7O73Zj1WET2/5919anSslrAE5EzgCmA/QmX0e4GvuPvS1uLqEMlEb8Lr6H6EpHIPwutrV9MLmBLdABpJJp4hJJwh8UzWrYwnNJGuQ9VlpWtJJnoBRwInEEYtO3OksqOsAu4G/gHcTbJOn4SLiHSijDWZ3wV+HR3uBewI/BzYCqiO9hOuIiSZzwMjgasISdlqd7/VzC4lJJ5PAn/ko72KBwFHuHvTdFza2NYJexGfHH3/KeAvwAvAZ9x9RXQ8GT2P0e5ea2b9gbeBv7t703ZaTX1+njBF+AvufnN0rJawj3Nf4O/R89wJ+BJwn7tnztTpWGEK7GHAdOBQQp2EQpcC7if83P9Gsk5LTaRbUpIp8QuFeg4AvggcRXjhK1YbgX8C1xASznTM8YiIFL0WCv80mQcc4+4LorZVhCSzEZiYWRDIzLYjjG7+G5jq7k2jn0OjflYBY9091Za20fEPk0wzO5GwL/FdwPHuvj4jhiQZSWZ07GbCdN+hTclodPxeYLfo+IboWC0wCjjO3f+U0fb/CCOu27v7wlx+ru2WTOwMnEL4QHlAh14rXvXAXZc1fO53v04deW/tzGnFWL9BpFnawkTik0yMIZn4CfAWcA9wEsWdYEKoZHs4cCfwGsnEd0gmhsUck4hId3ENHy3B+AxwESHJucvMRmW1nd1MxdkjCMs2LmtKGgHcfQlwHSF526UdbT9kZjOAWcDvCcnv+uw2LTyvCuALGf1UET7A/UNTgplhSWaCGXkguh+Xw/XaLpkYSDJxHsnEc8CzwDkUd4IJUOHOYbem9r8eeLtqxuyfVc2YvUPcQYl0Bq3JlM6XTHwCuIAwatmdP+gYSVjz8x2SiTuBq0nW/TPmmEREitkid78v4/s7zWwu8DhwKfD5jMdebub80dH9S8081nRsDPBUG9s2OZrwYeu17n5mS08im7vPMbOXgdOAX0WHTyEkub9t5pRXmzm2PLrvn+t1c5JMfBr4MnAIxTEdtk2W0P/Z5ST2iL49Fzi3asbsu4HLamdOmxNfZCIdS0mmdI4wJfZw4Hxg75ij6WpKCZ94HxEVD7iEZN1tMcckItItuPsTZlYHTM16KI59Ep8kVDA/1syucfenWmmf6VrgcjPbjTBSeDLwlLs/30zb1Cb6yU+BvWRiKvADYM+89Fegrmo8vLllMYcAh1TNmP0kcDnwt9qZ07R8RopKdx5Fks6QTJSQTEwnrEv5O0owW7Mr8A+SiWdIJo6MOxgRkW6ijNyWazSNAE5o5rEdstq0pW2TtwiVVd8H7jOzT+YQU5PrCev+TyNMBx5JWNfZuZKJPUkmHiAUv+nWCWbaWXlrav9dN9FkD+DPwMKqGbNPr5oxu7STQhPpcEoypeMkE4cRqtZdD2wbbzAFZxfg70o2RUQ6lpkdBPQGns6h+e2AAxeY2YdTP81sCGF66uuEUcS2tv2Qu79NSDSXAPeYWU4fzrr7MkIV8xOArxBGYm/O5dy8SCZ2IZmYTSh0tH+nXbcLe9q3rWmgrEcOTbchjEQ/XzVj9qEdHJZIp9B0Wcm/UDXuZ3y0h5S0X1OyORc4m2Rdc2t7REQkN7ua2RejrysIo4xnELb0+FZrJ7v7QjO7nLAtyUNmdisfbUvSh7BVSKqtbZu5ztKoIu59wD/N7DB3n5vD87sG+BxhW5BZ7t7x22ckExOASwh1FrriXtax+UnD59pa2GgCMLtqxuz7gPNrZ05rbqqzSEFQkin5k0wMBH4EnIpGyfNtMvAcycQvgCTJug/iDkhEpAAdH90A0oRiN/cAP3b3/+TSgbtfZGavELb7mEmYovoEcIK7P9zets1c5z0z25+QaN5lZoe7+/2thPcA8AphZKxjp8omE1sBPyHscanX/Cz1Xr74Cd+hvZVkDwSeqZox+wbgG7Uzpy3NY2ginUL7ZEp+JBPHAVdS/OXIu4K3gfNJ1v0x7kBERKRrMbOXgFJ3377DLpJMfJZQxXZQh12jwP0ltd+c8xvOnJKHrlYA59XOnHZDHvoS6TRKMmXzhNHLq4Bj4g6lG7ofOJVk3RtxByIiIvEzs6mE14bz3f2KvF8gmRgM/JowNVZa4E567/pfvruEAUPy2O1s4Eu1M6e9ncc+RTqMpjdI+yUTnwPmoQQzLgcAz0f/H0REpJsys6lm9j+EPTHfJxSRya8wejkPJZitWkbi2TwnmADTgJeqZsw+Lc/9inQIjWRK24V1GL8Bjo07FPnQ9cBXtVZTRKT7MbM5wD6EJPDs1tZ7tkky0ZcwNXZ63voscj9uOP7R36Q+05Fbtt0NnFg7c9ryDryGyGZRkiltEyrH/g0YHXco8jGLgBNI1rVl824REZHmJRN7AjcBY+IOpVC4s2aH+utK11NR2cGXegM4tnbmtJwKVol0Nk2XldwlE18k7H+lBLNrGgf8m2Ti3LgDERGRApdMnAE8hBLMNpnno57vhAQTYCTwSNWM2V/uhGuJtJlGMqV1yUQ58FPC5s5SGK4FziJZ1xh3ICIiUkCSCSNst3Jh3KEUotM2fv25+9O77dzJl70ROLN25rR1nXxdkRYpyZRNC5Xk/gTsG3co0mb3A8eSrFsVdyAiIlIAkokKYBZwXNyhFKIGL31rXP0Nw8Ashss/DxxaO3PakhiuLfIxmi4rLUsmxgGPowSzUB0APEYyoalOIiKyaclEf+A+lGC2273p3V6JKcEE2An4d9WM2dvFdH2R/6IkU5oXCvw8AoyKOxTZLNsDT5BM7BN3ICIi0kUlE2MJNRf0WrEZftL4ubhrVowCHq2aMfsTMcchoiRTmhESkjnA1jFHIvkxALiXZOKQuAMREZEuJpn4JPAYsG3coRSyOq984VUf2hU+mO8PPFA1Y/ahcQci3ZuSTPlvycShwD1AIu5QJK96Av8gmTgi7kBERKSLSCaOAh4EBsYdSqG7MXVQXdwxZKgEbquaMfvEuAOR7ktJpnwkmfgc8A+gV9yhSIfoAfyZZOKYuAMREZGYJROfBm4lfAgpm8GdDb9pPGxi3HFkKQOur5oxO29rbM1sipl51m2Dmb1qZteZ2fh8XUsKn5JMCcJUypuA8rhDkQ5VDtxCMnF43IGIiEhMkok9gL+g1/y8eNWHPLOG3l1xBlgJcGPVjNmH5bnfW4ATo9tXgdnA54EnzKwrTBmWLkBJpkAysSd6selOygkjmlqjKSLS3SQT2xGSgt5xh1Isftl4dI+4Y9iEcuDPVTNmH5DHPp9x95ui27Xu/lXgIqAvcPSmTjSzvnmMQ7owJZndXTIxgfBiUxl3KNKpegB/IZnYLe5ARESkkyQTw4B/EQrCSR6k3N69I73nLnHH0YqehDWae3XgNZr259wIYGZV0XTapJkdZ2ZPm9l64FdNJ5jZ6Wb2jJmtN7M6M7vHzD5W4Tjq53oz29PM5prZWjNbbma/NbM+Ge2GR8dfNLNeWX38wczSZnZgxzx9yaYksztLJkYRXmy2jDsUiUUlcAfJxPC4AxERkQ6WTPQD/om2JsurR9M7LkhTUhp3HDnoDdxVNWP2hDz0VWlmA6LbCDM7BPghsAz4a1bbI4GrCL975wB3A5jZpcC1QAPwTeAKYAfgQTNrrjLuzsCdwH+A/yUUqTwN+GlTA3d/CzgFmAD8vOm4mZ0KnABc6u73bd5Tl1yZu8cdg8QhbLr8KKBNe+V5YB+SdR/EHYiIiHSAZKIncC/aBzPvPlP/g0U1PmZc3HG0wWJgj9qZ01a09UQzm0KoRtycecAx7r4galsFvAY0AhPdfX5GP9sB8wl7s05196bRz6FRP6uAse6eio474MCe7v5ERj+zgYOBLd39g4zjvySsFf0s8CLwNPACsK+7N7b1eUv7aCSzO0omSgiLtpVgCsBOhGJA+nsgIlJskolS4I8owcy7tV4xv8ASTICxwK1VM2ZvzujrNcBB0e0zhPWYA4C7min8MzszwYwcARhwWVOCCeDuS4DrCKPt2VOQH8tMMCMPEKroVmUdvwB4ljBS+hfCaOnxSjA7l95Udk+XEP4wiDQ5jIwpJyIiUjSuILyplzz7U2rKe3HH0E4HEn4v2muRu98X3e5098uAw4HRwKVZbV9u5vzR0f1LzTzWdGxM1vFXm2m7PLrvn3nQ3euB4wmFiCYAZ7l7bXNPRDqOkszuJpn4DGHuu0i2r5FMTI87CBERyZNQRfxrcYdRjNxpuLLxyHysb4zL16pmzD4lX51Fo4x1wNSsh9bl6RKpTTxmzRybBjSN1nb1wkxFSUlmd5JMjAVuoPl/jCIAV5JMFNrUHxERyZZMbE2YeigdYAn9n11OotCr9F5dNWP2pDz2V0YYPWxN06hkc0n6Dllt2szMdgN+TFiHfAvwdTM7uL39SfsoyewukolehIpf/eIORbq0PsDNJBPaM1VEpLD9HhgUdxDF6qrGw9Nxx5AHPYBbqmbM7tNqy1aY2UGECrZP59D8dkIhnwvM7MP3G2Y2hFAd9nXCmsr2xNGHsAZ5JXAicCahANENZrZ1e/qU9lGS2X1cQSjwItKa3YEfxB2EiIi0UzJxNmG6oHSAtLPy1tT+u8YdR56MJWPvyhztamZfjG6nmdlPgb8TCux8q7WT3X0hcDmhGNVDZnaumX0beJLwYfdZTZVl2+EqwnM6yd3fdffVhPWZWwGzzEyz+TqJkszuIJnYn/BJjkiuLiCZOCDuIEREpI2SiR0Ib+Clgzzt29Y0UNYj7jjy6OSqGbOPaUP744Ebo9s1wBcJ+1bu7e5zcunA3S8CzgB6AjMJFWEXELY0uasNsXzIzE6KYrnc3e/JuNaTwMXApwl7bEon0D6ZxS6ZqARq+HiVLpHWvANUk6xb3mpLERGJXzLRgzAapJlLHejzGy+e93h6wg6ttywo7wMTamdOez/uQKQ4aCSz+P0IJZjSPkPQp+EiIoXkxyjB7FD1XvZqESaYAAOBq+MOQoqHksxilkzsBXw17jCkoJ0c/R6JiEhXlkxMBc6LO4xid0d6rzfijqEDHV01Y/ZhcQchxUHTZYtVMlEBPAdsH3coUvCeB3YjWdfeRfgiItKRkokywt/qYhxh6zLcSe9d/8t3lzBgSNyxdKBXgB1rZ06rjzsQKWwaySxeX0cJpuTHTsDZcQchIiItOhMlmB1uGYlnizzBBNgGFceRPFCSWYySiQHARXGHIUXlEpKJwXEHISIiWZKJLYHvxR1Gd/DbxkM3xB1DJ7m4asbsYXEHIYVNSWZx+jawRdxBSFFJAJfFHYSIiHxMkrAHoHQgd9bckDp4l7jj6CS9UeE/2UxKMotNMjEW+HLcYUhR+iLJxIS4gxARkUgyMQa95neKeT7q+fVUVMYdRyc6vmrGbBX+k3ZTkll8fgSUxx2EFCUDvht3ECIi8qEkes3vFD9tPLZP3DHEQK/50m6qLltMkolJwBOEZECkIzhQTbLupbgDERHp1pKJHYAaNGDQ4Rq89K1x9TcMA+uO768+WTtz2hNxByGFR3+YisslKMGUjmXAd+IOQkREuAS9j+sU96Z3e6WbJpgQ6nyItJlGMotFMjGRsEeWSEdLAxM1mikiEpNkYmfgGfTBcqeYWv+T11/1oaPijiNGu9XOnPZM3EFIYdEnYMXjwrgDkG6jBH2yKSISp6+gBLNT1HnlC908wQS95ks7KMksAtWzqoefu/WAIe+XlrwfdyzSbRxLMjEi7iBERLqdZKIv8Pm4w+gubkwdVBd3DF3AEVUzZo+POwgpLEoyi8OX7+9dOXXqiGFbfHbo4Ede6tFjUdwBSdErBU6POwgRkW7oC4R9DKWDubPhN42HTYw7ji7AgDPiDkIKi9ZkFrjqWdUVwJvAwMzj/RtTz1ywYqVPW7tut3gik27gbWAUybpU3IGIiHQbycSzwM5xh9EdLE4P+fcBG6/QXpHBCmBo7cxp9XEHIoVBI5mF7ziyEkyA5WWlu87YesBuu48a/sqv+iUerjc2xBCbFLdhwGFxByEi0m2ErcqUYHaSXzUe1SPuGLqQrYBj4w5CCoeSzMI3fVMP1peUbHPNlol9J40a8cH/bj1g7jKt25T8OjPuAEREuhFNWewkKbd3b0/vtUvccXQxX4o7ACkcmi5bwKpnVQ8mTFnM/cMC9/rxGxv+k1y2fPAOGxu26bDgpLtIA2NJ1tXGHYiISFELBX+WAH3iDqU7eChVPfekhm9MjjuOLmh87cxpC+IOQro+jWQWts/S1v+HZhXzK3rsc9ywIdvsP2LY03f1rny6Y0KTbqIEODnuIEREuoETUILZaS5vPG5o3DF0UafGHYAUBiWZhW2zSpgvKyvd7aJo3eb/9Us8shG0mFva46i4AxAR6QY0VbaTrPWK+TU+ZlzccXRRes2XnCjJLFDVs6pHAnvmo6/6kpJtrt4ysc/uVSNWnz+w/5zlJSXL8tGvdBsTSSZGxx2EiEjRSia2BXaNO4zu4k+pKe/FHUMXtk3VjNk7xh2EdH1KMgvXcYR9i/LGzQb+q0/vKVNGDutz3NBBj8zvUb44n/1LUTsy7gBERIrYQXEH0F2403Bl45ET4o6ji9NrvrRKSWbhOq7DejbrOa+iYp/PDR08Zv8Rw57+Z+/KZzrsWlIsjog7ABGRInZg3AF0F0vo/+xyEgPijqOLU5IprVJ12QJUPat6INCpUzkq0ulFp9ateff0VXWTekBFZ15bCkIKGESybnncgYiIFJVkohRYDiTiDqU7+FbDKY/flDrok3HHUQBG1s6c9mbcQUjXpZHMwjSlsy9YX1Iy7qpo3eYFWrcpH1cKfCbuIEREitAklGB2irSz8tbU/lr7mpvD4w5AujYlmYUptn2b3GzgP6N1m58fOujhBVq3KR85IO4ARESKkNZjdpKnfduaBsp6xB1HgdAeorJJSjIL05S4A8Cs50sVFft+dujgMVNHDH3qX1q3KbBX3AGIiBQhrcfsJFc0flZrMXO3d9wBSNemNZkFJlqP+S55riybDxXp9KLT6la/e9qq1Xv0AH0S2D0NJln3btxBiIgUhWSiN7ACvaZ2uHove3W7+hvGxB1HgRlTO3Paa3EHIV2TRjILz2S6YIIJYd3mr7fst8+kqhGrLhzYf+6KkhIVgVnbxV8AACAASURBVOl+8rJ3q4iIAOE1XwlmJ7gjvdcbccdQgPaJOwDpupRkFp4pcQfQmrTZ1nf36T158shhlccPHfTwwvLyV+OOSTqNpsyKiOSPpsp2AnfSP204dru44yhASjKlRUoyC8+kuAPImVmvFysq9j122ODRB4wY+tQ9lb2ejTsk6XBKMkVE8mf3uAPoDpaReHYJA4bEHUcB0rpMaZGSzMKzfdwBtJmZvVdWtvvXBw3cZdKo4S9f3W+LRzfCxrjDkg6xG8lEedxBiIgUiXFxB9Ad/K7xkPq4YyhQ46tmzNbe6dIsJZkFpHpW9VBgi7jj2BwbSkq2/b8t++09qWrEqosG9p+7sqRkRdwxSV71BLaJOwgRkYKXTPQBBscdRrFzZ82s1Kd2jjuOAlWCXvOlBUoyC8v4uAPIl7TZ1nf16T15v5HDep0wZNBDWrdZVNo02m5mU8zMs24bzOxVM7vOzIrm915EpA305r0TzPNRz6+nojLuOApY4c2wk05RFncA0ibF9w/ZrFdNz4r9jh022LdOpf4zY/nKsoPWrd8l7rBks7T39/QW4K7o617AROB04Bgzq3b31/MRnIhIgdBU2U7w08Zj+8QdQ4FTwSRplpLMwlK8Izph3eak/x00kJ7p9MLTV61edkrd6knab7NrS7st+4BeS5d4/7qXfXjji+nR5c+lx/b/U/u6e8bdb8o8YGaLgF8ARwM/a+lEM+vr7mvad1kRkS5JI5kdrMFL37o/vetOccdR4JRkSrOUZBaW4k0yM2woKdnuyq36bffrLRPvHrJ23YKLlq+s3jKd3iruuLqrlNt7a6hc+rYPWL3QR6ReSI/pUZMeveVCHzH0AyoHAAOyTslnUaclmX2aWRXwGvA9YD5wIbADcCtwctTmdOAswr+XjcATwCXu/khmx2bmwCzgN8BMQhXHDcDfgXPd/YOo3XDgeeAdYJK7r8/o4w/A8cDB7n5fHp+3iIhGMjvYfeldF4MNjzuOAqckU5qlJLOwdKtPNdNmg2b36T1odu/KdRPrNz78vWUrhm/T0DA67riKjTueomTpanq/+5YPWLMgPTJd42MqatKjt3rZhw9bR8+tga3b0GV7/x9VmllTwtoL2BH4IbAM+GtW2yOBc4CrgKuB1QBmdikh8XwS+CbQFzgDeNDMjnD3u7L62Rm4E7gOuJmwD+1pQDo6D3d/y8xOAW4Dfg58KbrWqcAJwEwlmCLSAZRkdrCfNH6uKu4YikC3em8quTN3jzsGyVH1rOp1hDff3ZO7DwrrNnscuG69KsG1gTvpFCXvrKLPe2/61h/MT49M1/joXjXp0Vu94sOGbaAin79XKaC8dua0nP64mNkU4MEWHp4HHOPuC6K2VYSRzEZgorvPz+hnO8Lo5r+Bqe7eNPo5NOpnFTDW3VPRcQcc2NPdn8joZzZwMLBl02hmdPyXwFeBzwIvAk8DLwD7untjLs9VRCRnycQ7qLpsh6nzyhd2qv/txLjjKAJOeM1PxR2IdC0aySwQ1bOqe9KdE0wAM3u3rGyP86J1m2esWr3s5LrVe5SD9mUE3Ek1Uvr2Svq8/4YPWjs/PdKf97G9XkyPHrjYhw5roGwYMKwTQikFtgKWt/G8a4A/R1/3JEyD/Tpwl5ntn1X4Z3Zmghk5AjDgsqYEE8Ddl5jZdcC5wC7AUxnnPJaZYEYeAA4FqgjJZJMLgH2Aa4G3gQbgeCWYIpJ3yURflGB2qBtTB9XFHUORMMJr/vtxByJdi5LMwqE1iRk2lJRs98ut+m135ZaJpdM+WLfwwhUrJ/ZLp7eMO66O5k5DA2Vvr6DvslofvHZeepS9kB5T+aJXDaz1wUMbKRsJjIw7TmAgbU8yF2VNO73TzOYCjwOXAp/PeOzlZs5vmqb7UjOPNR0bw38nmc1tndMUd//Mg+5eb2bHR31NAL7g7rXNnC8isrmGxB1AMXNnw28aD9MoZv70R0mmZFGSWTiUZDYjbTb4jr69B9/Rp3jWbbpTv5Hyt5axxfLa9OD1L3mVvZAe0+clrxr4ug8amqakijDK1pX1b71J69z9CTOrA6ZmPbQuH/0Tpva2xJo5No0wUgthVPTmPMXRLmZWC9S6+xTFIVJUescdQDF71Yc8s4bee8UdRxHJLgAooiSzgCjJ3BSzyhd6Vux71LDBPjis2yw/oAuv23Rn/QbK31rm/Va86kM2vORVJS+kx/SZ56O2ftMHDnFKxgJj445zMyTa0LbpE/sLzewSoB5YSijecz3h71RF1ObcTfTTNCo5AVic9dgOmW3MbFP9NMvMdgN+DNxLKEb0dTO7193vaWtfWf0mge8SKtc+1UpzEekelGR2oF81HqXt0fJLSaZ8jJLMwqEkMxdmtrSsbNK5gwbSK51ecMaq1cunx7Ru050P1tNjyfveb8ViH1r/oleVPp8e22d+etTgJfQfBFbMlQNzSjLNbHfg99G3C4GbCGuPxxGK7/QjvNl6NGrztU10dzthWu0FZna3uzdE1xgCnAK8DjwbtW1TkmlmfYA/AiuBE4H1wCeAG8xsoru/15b+RERaoSSzg6Tc3r09vdcuccdRZPIye0mKi5LMwlH06w3zbX1Jyfa/2Kofv9oysfSwD9YuvHDFqp0S6XS/fF7DndXrqFjyrm+58hUfVl+THl3+go/ZYn565OD32GogsG0+r1dAcn2D9F1CkR+AN4G10W0NYUTzS4QCO99qrSN3X2hmlxO2MHnIzG7loy1M+hDWULa3+t1VhJHlT7v7uwDR+sxHgFlmdqirVLeI5I+SzA7yaHrHBWlKJscdR5GpjDsA6XqUZBYOVVBtp7TZ4Nv79hl8e5/ea3eu3/hQctnykWMbGqtyPt9ZtZZeby/1reoW+bCGmvToshofk5ifHjlkOYn+wBYdF33BKm29CRBGLFcTfobHRzcI+1QuB/5FmKL6frTlSJPvmtl3AdzdAMzsOGA8sIIwyvhJwlYnTwEnuPvDUbvMfqab2fTo69FZhXy+b2bjCaOyZcDDhMqzRNd90szeBD4NJM1s2+jriqjtV929uQJFrTKznsCM6OcxAthISML/6e4XtHLuwYS9PicRpiLXE6Ye/9Dd52a1nUNY37sXcEVr8ZvZiKjdpwhrVufSxlFhEWndtOFDSpeXls4rdU+VQqrUSZXhqXL3dJmTLsO9h3u63PEe7t7DnQp3mu6jm1W4W0XaS3qGr0sq3Esz7ptuZT3cy6L78nCjvNy9vNy9R3mRvVe8vPG4oXHHUIRyfc2XbqSo/nAUOW2TsLnMej/Xs2K/I4cNSQ9JpZ785vKVPaZE6zbTbss+oNfSJd6/7mUf3vhienT5Cz6634L0yKGr6NuPMG1TcpfrC85iYDvCXph/a6mRmfUmTFO9kZAAXdNMs68QEtOfEdZ0jiWMYu4Yfd/kxKjNMuCHGcffz7jfSJiifgUhad0zOu8Wwj6ZTd4kJMhfIFTB/Sahyu3XgNvMbMd2jp7+H3AqcAPwU8Lf6nF8vABSc06OYr8BeIuwbc3pwP3RVjAPZ7XvDTzUWvxm1i9qNwK4mrD36GTCHqfde3slkTx7o7y8Fx+tJY9XmKXRAGw0aGi6lUCjOY2leGMJNDYlxGXuqTJIl4UkOF3uni539x4hMfYezn8nxOmQDPdsSopDElzSsykZTodkuEe4NSXDISHGy8rde0RJcY+yVl571nrF/BofM75zfnDdivIJ+Rj9UhQOJZn5YlbyTlnZHl8dNJBRy9JPfesPvRs2lvQt2Vjeu2Fjee+GdHmf1LjynhtGla+u+3T5a7WNZb2ssaySVGnP0nRpRWm6tEdpuqRHOSVlPbCSCigpp/lKpN3W2hKvz7HpD4CDgL+a2SLC9NP/AHMy98F097XATWZ2I/Cqu9/UTF+fjtp9yMxuAJ4DzgPOivq6ycx+ALyb3U80gvg74AlgasYemL8xs+eBn5rZFHefk3HaAOByd78so5/3gcuAAwmjsW11FHC3u09vteXH/U8zP4erCVuvfIOQpGfKNf4LCaOep7r7ddGxX5vZz9n0WlkRabuuMzJkZkAPoIcDTVNBwqdPH/6na3BP8/GEuLEEGkrcG8+9re+iC/sue6O+9/CRdKnAC9u6El8fdwzS9SjJLBxKMjvA6wNKdv/VZ9bWXHzrmlHWzmmvaStpTJVWrEuV9lrXWNZzfUNZ5frG8sqNDWWVDY1lvRsaynunGsoq043lld5Y1ssaS3uWpMp6lqRKKspSpeU90iXlPdxKK9xKe7mVVAK9MSvoync90lbReitw98eiqq1fBw4hFOg5BcDMHgZOdvfm9rJsrq+10XlGWIvZgzAquZAwfTYXBwGDCMlYv9DVh+4ijCoeDMzJOJ4GfpnVT9O02nG0L8msAyZEI4kvtuXEzAQzKlhUQXg/+ARhCnG2XOM/EniXMEKa6VKUZIrkm9Z4t4dZCeFvXkV2QlzRwNpdF9Rtbczc4r0BOz8zf/xJvVKlFRrVzIMeaVM+IR+jX4rCoSSzg7wwpqT6+8fz0rdvSQ+3tm29AUCJp8tKGtdvUd64fgtyHb9rRdpKGlKlvdY2lvVc11jWa31DWeWGxrLKjSF57Z1qKK9MNZZVphvKKr2xrNJSZT1LGksrSlKlFeXpkihxLSmtSFtJJXyYuHbmv/ecfxLuXkOY4omZjSJMwTwd2JcwZXM3d9/YWj9mtgvwfWAKHy+a8VqO4TS94fj9JtoMyvp+ibtvyDq2PLpvb8W9cwlTg2vM7FXClNQ7gDs8fFLfIjMbS5gG/Ck+Ps27uTeuucY/BvhP9vRfd3/HzFZtKiYRabO1rTeRtjjm0fQzFl5X2HrZc7sOfPg5f2PEAf9+dfQRI72kdHjc8RW4hrgDkK5HSWbhUJLZgV6sKpnw3S/a/O/dlHLrAusvSzxdXtK4tl9549q8xZIqKatPlfZc21jac31jWa91jeW96xvKKjc2llVujEZbU43llemGskpLlfUijLhWlKZKKsrTpeU90lbWI11S1tOtpBdYJdAn+tS4Oe1Kt939dcK2IE1rL/cG9iBMo22RmY0krBdcTUg0FxLepDnwc0J12Vw0DV1eQJhm25wlWd9vas1lu6ZjufttZlYFHEpIug8kFPN52MwObCnpjkYuHyIk2T8HagiVetOE0dnm1nTmPX4R2Wxr4g6g2BzylG+d+b2BjXrz/r1GvDVn46Jtjp379tB9J2KmSv7t0+oHwdL9KMksHEoyO9iCETb+2yeWLrjkxlS6pAj3JS1NN1aUpj+o6NHwQd76TJX0WN9YWrE2VdZrXRht7VXfWF650bHludWoaZ67u5k9QUgyh+VwylGERPJwd38w8wEz68/Hk96WpqItiu7Xuvt9bQg579x9BWHf0JuiKcAzCesijwD+3MJpBwBD+e91kwBE61A3x6vAODMrzRzNjPYhjf2DGZEiszruAIrJxFfTL1Y0smNzj5V4qsd2i26dPObV2+vm7XDy3OVbTfgEYX2+5E4jmfIxLY1CSNejqTOd4OXhtv3F00uXpUPlUWlFaXpjr4qGNQMq1783MrGmdtv+K+dXD3rv6d0Gv/dUTkUAzOwga2Yar5n1Iqx9hFDFtMkHNP8BQFPS818jb2b2P8DgZtq31M+/gPeAGWb2scfNrJeZ9W3mvLwxs9KokuuHoj04n42+3dQHIC39HA4m93WpLbmNMFX4pKzjF21mvyLycRrJzKPp96frWmtTnlqf2Knmqsl7Pv6dlX3WvPUIrSxNkP+SveRCRCOZBWRp600kHxYPtW2/cUrpKz++PuUlzsC44ylQua7R+xnQ38xuJ0ztXEfYIuMEYFvghmjNZpPHgQPN7CLgDUL+9Ufg7ujcG83sSmAlYRT0UMI2Kdl/6x4HTjOz7wPzCdNJ73D3tWZ2EvAPYKGZ/R54hTBStz1wNGHUdE6uP4h26Au8E/1MniUkvaOBL0fP645NnPsI4W/FFdF027eAnQnbr9QA1ZsR12WE/y/XRsWaXiKsf90TfSgjkm8aycyTLdb68uHL2D3X9r3qVwzZ4+kfD1ndd+SiF3b8Ut3Gin45n9uNvRV3ANL1KMksHG/HHUB38tpg2+bCU0tfvez3qXSJf6zQi7RuZY7t/pcw/XMf4BhCMlcHvECoWnp9VvuzCHtIXkxIxgD+6O6LzewQ4EeEvR5TwKOE9YxXErbeyHQxYUTw7OiaRkjk1rr7v8xsEjAD+CIwMHo+iwnVZV/I8bm11zrCesoDCGsx+wDvALcDP3b37DWhH3L3VWb2KUJC+FXC3/inCcn2aWxGkunuK81sX8LPoGk0cy6wP3B/e/sVkWYpycyTE+akX7TwWtAmW6x5Y9w+j13M+wMmPjtv++k9U2U9VYm2ZbVxByBdj4VZWFIIqmdVrwUq446jOxn+vr92+e9SPUudIXHHUmB6j18wf13cQYiIFKLqWdVG+MBJawM3h7vffFnqzbI0IzerG/A3h099bPGYI0d4SemIfIVXJDYCPc++eqoSCvkvWpNZWFocwZCO8dZAG/31/yndmDL97NvgHSWYIiLtVzO9xoHX446j0O3zkj+9uQkmhEq0I996YK/JD583aNhbc+YSCrNJ8IYSTGmOkszCokQnBkv626jzzihNpUq05iBHr8QdgIhIEch1f19pwQlz03kt3lPiqR7bvfLnyfs+ckFp/2U1c3DPqchdkauNOwDpmpRkFhYlmTFZupWN+NqXSq2xhDfijqUAKMkUEdl8tXEHUMi2XuVv91+de8GftihPrU/s9OLVU/Z6/Nur+qx58+FuXom2Nu4ApGtSkllYNJIWo/f62bBzziwtbyjRH9RWLI47ABGRIqCRzM0w/b70K9bB73N71q8cssfTM/fd/elLF1dsWPmfjrxWF1YbdwDSNSnJLCwvxR1Ad7csYUPO+XJpz4ZSvfhvgkYyRUQ2n15n2qk05Q27veI7dNb1tvjgzXF7P/6tSdU1v3mutHHDvNbPKCq1cQcgXZOSzMLybOtNpKMt38IGf+XLpb03lmrErgVKMkVENt/LcQdQqD79tD8Vxz7XA5e/sPN+j3x9/LhX/vKYpRu7y/Ka2rgDkK5JSWZhmQfUxx2EwMq+tvXZZ5VuUV/Gorhj6YKUZIqIbL6XgA1xB1GIjn40Hdt2bwY24q0H95z88HlDhr/14EN4enlcsXSS2rgDKGZmVmtmcwoxDiWZBaRmek0D8GLccUhQ18cGnn1W6Vb1ZSyMO5YupHb8gvl1cQchIlLoaqbXNALPxx1HoRm91F/pu4Gd4o6jxNPl277yl/32e+SC8gHLXpiLezFu7bWKHIpSmtkYM7vGzBaY2TozW2lm881slpntn9U2aWZHbm5gZnaumZ28uf3kQ/Sc3Mw6pBBVV6Uks/BoymwXsrq39f/y2aVbbyhnftyxdBGPxB2AiEgR6a7FZNrt5HtTXaoSf1lqwxYTX/zN5L0e/9bqvmveeAT3VNwx5dFjre2RGSVWNcDngHuA84DvAQ8AewHHZJ3yXWCzk0zgXODkPPQj7VQWdwDSZkoyu5gPKm3LL59dWvLrX6fm9dpIpxUa6KKUZIqI5I+SzDao2Ohrt3+LneOOozk961cNnvT0pYPX9Bm++IUdv7SivudWk+KOKQ8ezaHNd4FKYGd3/9jIvJkNzntU0iVoJLPwKMnsgtb2ssSXzy4dtrai209nVpIpIpI/T8UdQCE55tH0MwZbxB3HpvT94K2xez/+7UkTa656vrRxfaHvGpDLa/44YHlzCSaAuy8FMLMqM2saFZ0eTS/1jGOY2XFmdruZvWFm9Wa2zMz+YWYTM/uMzhkFTM7sx8yqMtrsbmZ/j/qoN7OFZnaxmZVl9TUnWo841Mxuiab6rjOzf5nZtjk8/2aZWc9oGu3CqL9VZlZjZpfncO7BZnarmb1qZuujc+8xs8nNtG1T/GY2wsz+ZGZ1ZrbazO4ws7HteY5KMgvPs6gQQJe0rqclzjq7dNQHPXkh7lhisoJQnEpERPJjAbA67iAKxSFP+dZxx5CrActf3GnyI+dPGLfoT49ZuvH1uONphwbgyRzaLQb6m9nRrbR7Hzgx+vrh6OsTM44BfAVIA9cAZwPXAvsCj5rZuIx2JwLLCP9+Mvt5H8DMphFGYbcFrgDOAR4DLgFuaSa23sBDQAr4JnAlMAW4zcxKW3leLfk/wijv44QpxBcD9wNTczj3ZGAr4Abgq8DPgPHA/Wa2b3vjN7N+UbujgRuBGcA64MGojzYx901OpZYuqHpW9b3AgXHHIc2r2Ohrf/3r1KK+67vmlJ0OdOf4BfM/E3cQIiLFpHpW9d/Jzxq1olb9Wrrm239MV8cdR3ukraRh8Zij/v3m8CkTsJIBcceTo8fOvnrqXq01MrM9gblAObCIMPr5H2COu3+snkU0CjnL3U9u5rHe7r4269h44Dngd+5+VsbxWqDW3adkte9JqIj7MjDV3RszHjsP+Cmwv7vPiY7NASYDF7n7ZRltLwAuAz7t7v9q5WeQJCSUk9z9qejYCuBxdz+0lXM/9jxa+DkMIlSkfjKzz7bEb2Y/Ar4BnOru12W0/TnwNWBu9s9zUzSSWZjujTsAaVl9D+v95bNLt62r7HZTmzVVVkQk/+6OO4BCMP2+dMGO+JZ4unzc4r9O3u+R8ysGvP/cnAKpRHtPLo3c/TFgN2AWkABOAX4NzDOzh8xsTK4XbEqsLNjCzAYQRicXAp/IsZuDgEHAdUA/MxvQdAPuitocnHVOGvhl1rEHovtxtE8dMMHMdmzriZkJppn1MbP+hFHKJ2j+55Br/EcC7xJGSDNd2tYYQUlmocrpH7bEZ2O5VZ59Vun2K3vzdNyxdKKH4g5ARKQIKclsxRZrffmIZRT89hBlqfq+E1+6dspej31rTd/VtQ938Uq0mxy9y+TuNe5+srsPAqqA6YQpsfsSpmz2yKUfM9vFzO4E1hCStPejWzWwZY7hjI/uf59xftNtQfTYoKxzlrh79lK1pv1P++d43WznEmKuMbPFZvZbMzvCzFrNzcxsrJn90cxWEn4Wy6L4D6X5n0Ou8Y8BFnnW7527v0PYrqZNlGQWpufJYV8iidfGcut19lmlO67o0y0KNywhfIImIiJ5VDO95k3CNDhpwQlz0i8aVMQdR7703Lhq0KRnLt930lM/rq3YsCKXdY+dbRW5rcf8GHd/3d1vIEzhfBTYEdijtfPMbCThw+xdgO8DRxFGHA8i/PvINaex6P6C6NzmbldknbOpZN828ViL3P02QsJ9ImFU8QDgH8CcTSXdZtaH8HP4NPAL4FjgU1HcD7QQT97jz4W2MClANdNrvHpW9Z3AGXHHIpvWWGYVXzmrdOIvr049OWB1639EC9hfxy+Yn447CBGRInU3MCHuILokd9/vRR8ddxgdoe/at8fu/fi3xy7basLzL+1wSlmqrFdX+R24/+yrp27WKKu7u5k9AewNDMvhlKOAPsDh7v5g5gPRdNH67Eu00M+i6H6tu9/XhpDzzt1XADcBN5mZATOBC4EjgD+3cNoBwFCy1k0CmNkPNjOkV4FxZlaaOZppZkOAfm3tTCOZheuOuAOQ3DSWWo+vnlm6y3uJoh7pa+mPoYiIbL67Wm/SPe0zz58uSzMy7jg60oAVL+00+ZHzJ2z78q2PW7qxNu54aMPvo5kdlL0tSHS8Fx+tfcysTP8BoXJqtqak579G3szsf4Dm9tpsqZ9/Ae8BM8zsY4+bWS8z69vMeXljZqVRJdcPeajE2lTLo7m4m7T0cziY3NeltuQ2wlThk7KOX9SezjSSWbjuI5Q179L7QUmQKrXyc84s3e3nv0k9NngVe8YdT569Q24bMouISPs8BCyl+TfT3drxc9LdZhbN8CUPfXLoO480Lh5z5ENvDt9/PFYyMIYw1tK2D5Z/RtjC5HaghrAlxgjgBMIWIje4e01G+8eBA83sIuANQv71R8Jo/jrgRjO7ElhJGAU9lLBNSnZO8zhwmpl9H5hPKH5zh7uvNbOTCFNTF5rZ74FXCCN12xO27zgKmNOG59hWfYF3op/Js4SkdzTw5eh5bWog6RHC34Iron0/3wJ2Jky7rSGsT22vywj/X641s90I05CnAHsS1n22iUYyC1TN9JoNwK1xxyG5S5dY2blfKp309lb8O+5Y8kxTZUVEOlDN9JoUcHPccXQ1W6/ytwesLvyCP21R4umycYv/tt9+j5zfc+D7z84hayuLTvCns6+euqYN7f8X+BvwSSBJ2OPyHEIth9MI1WYznUVIpC4m/M7fAuDui4FDgNcIez3OJIz4TSYkWtkuBv5O2E/zpqifgVFf/wImEUY1v0jYs/J8QlGgn0KH73e+Dvg5IbG8ALiKkCTeDnzC3Vusu+LuqwhrMJ8g7JF5BbADIdl+ZnOCcveVhGJM/yCMZl4KVAL7Ez5caBPtk1nAqmdVf5KweawUkJK0py7/XerxEcvYO+5Y8mTy+AXzVVlWRKQDVc+q3omwH6BELvhLau6kRT457jjiVN8j8V7NjmcsXN131F6YlXbCJfc+++qpxfZhuXQAJZkFrnpW9Tw+KscsBcLc05f+PvXvqvfYJ+5YNtM7wPDWRjLNbAvCRr5HEfZkKiVshnwn8BN3f6+D4xQRKXjVs6qfBybGHUdXUJryhj9cnlpV4sQxZbTL+aD30FdfqD5z2Yae/TuyyOC8s6+e2lWKD0kXp+myhe+61ptIV+NmJReeWrr34sE8HHcsm+mGHBLMbQnb7nyPULlsBmF/qMej+5fMbHMXq4uIdAfZm6R3W5962v+jBPMjfdYuGbPX49/ZY6fnr3yhrHFdTetntMtvO6hfKUJKMgvfDUBj3EFIO5jZN04u3WfhMAp1qmkauHpTDcyskrCAfRjwGXc/1t3/z92vcfdTgb2AcuB2M9u6wyMWESlsf2DTe951G8c8mu4ddwxdUf+V8yfu98gF1du+/MfHLd34Wh67rkcfckgbKMkscDXTa95F9Xlo2wAAIABJREFUpc0Ll5l9+6Sy/eaNYG7cobTD7PEL5te20uY0QvW4n7v77OwH3f0pwgL+rQmL3wEws5PNzM1sSvY5ZjbHzD52XTPb3cz+bmbLzKzezBaa2cUtlE4fZ2Y3mtk7ZrbRzGrN7HIz653V7voojoSZXWVm75nZBjN7NHv01cxKzOxcM3vBzNaY2eooht+ZWXkrPycRkVbVTK9ZCvwl7jjiNnqpv9J3AzvFHUdXNnzJw5+c/PB5I0a+ce/DePr9PHT5j7Ovnro8D/1IN6EkszhscjRJur7kF8sm14yyQks0r8yhzbHR/TWbaHM90AAc095AzGwaYRuVbQmV1s4hFMW6hKgyXUbb3YCngP2A3xAqz90ZnXNvCwnhv4DhUX8//n/27jtOrrLs//jn2lRIyIbeIfQseOidQCAqICASwAdBcagK2BBBAX108VFAEEE6UgeRorSfEpSiJECAUEI5wC49IYUSAtmQkGTb9fvjPovDsH1n5uzMft+v17w2OXOfc74DSWauuRvwBWBS3l5aPycs1T6DsKfUaYSV7XYBhvX2tYmI5Dk/7QBpO+qBlg5X35T/qvLWwRu/effuezx66nKrvT99Cu6L+nC5qwsWTAYELfxTIaJsNB3YJu0c0jdn3NYyeZs3fc+0c3RDXFNf1+XiE2Y2Hxji7p3u52pmLxD2dlrB3ReZ2VGE+cZ7ufvkvLaTgTHuPib5/XBCYfcqMMHdm3Pa/piwHPmn1zGz5wlF3w7u/nFO24mEZdaPdvcbkmM3ABngCnc/Kaft14G/Aie4+1XJsenAcHffvKv/LiIifRFlo4cI+9cNOMMaffGNF7S0mPYJ77FlQ0fNi7c4vn7hqA12oZ1RPp14E9j4e1dOUNEg3aaezMrxm7QDSN+dc9igPZ/axCannaMbLuhmu1FAQzfaLUx+rtBpq/Z9GVidUJSONrNV2h78dyj53gBmFhFWZrwZGJbX9lHCPlB7t3OPC/N+/5/k5yY5xxqAtc2s3FcMFpH+7/dpB0jLwY+1TleB2TvDGheuuv2zF+y+49Nnzxq+5IMnenDqVSowpadUZFaOu4CX0g4hfXf+oYP2fHxsvx46O4fubwq+kO59GBhFWEjog17kadvC5zpgXt6jPnlu9by2Z7XT9n1gRE7bXG/m/sbd2+alrJxz+ExgKfCImc0xs7+Y2RFmNrQXr0lEpDP3Ai+nHSIN+z3lWiSuj0YunrvBrtN+tfNWz18aD27qciXaecDlpcgllUVFZoWIM7EDZ6edQwrjwomDxj+yRb/t0Tyvpr6uqZttXwRGmdnGHTVIVqAdC8x097brdvaNaf4QH0t+nkbo1WzvcUFe2ws6afvT/Bu6e0erOVpOm8eBjQjzUO8CtiasBPmcma3UyesREemR5D1/wM3NjN5qjYc1s1naOSrFyh/VRXtMPS3a7JWbp1lrU0cr0Z77vSsn9GUupwxQPRmPLf3fbUAtnx3CJ2XqkgMH7dlc1TJ5r7hfzdF8HbiiB+1vJyywcxxhf8z2fJuwjclNOcc+TH62V5xtQFgoqM1ryc/F7v5gF3na2rZ0o22PeVhU4Y7kgZmdBFxGWGV3wH0gFJGi+jPhS7GarhpWisyDrQu7biU9tfY7U3da893Hm9/c4KsPv73ul8ZiVW29xXNQL6b0knoyK0iciVsIK19KhbjigEF73r9Nvxo6e0YPejEBriUsyHOKme2b/6SZbUv4M/sOoRhr82ry80t57Q8H1sq7zH2Eoa6nt9djaGbL5awC+yyhd/UEM9uwnbaDe9vrmMzrzDc9+ameTBEpqOQ9/2dp5yiVUYt9/rofsH3aOSpVWIn2/+0x/pGfjFjt/WcmJyvR/uZ7V05YmnY2KU9aXbbCRNloMOGD9BfSziKFc/T9LVO+8oyPTznG4zX1dbv29CQz2wz4F7AeoYdvMtAM7AgcCXwEHJDsmZl73gPABML2J88Rhp9OBD4mrFg7JqftPsDdwCLC3MzXgdGEYbgHAxNzVpfdmrBwz9Ck7UvA8sDGSdsz8leXdfdPh8Xm3NOBrLsflfx+HvAEMA2YC6wJfAdYA9jR3Z/v4X86EZEuRdloMpD2+0PRfffelslffL5fjeypaEuHjn7qsV1/u9v3rpzQky+WRT6lIrMCRdloPOGDvFSQb/2n5eGvTvPdLWceYIntVlNf91hvTjSzUcCPCEXcJoQFdiAUeOPcfUE756wBXALsQxh18QhwCmG47pjcIjNp/wXCkNy9gFUJxesbwD+By9z9w5y26wNnAPsSekY/JmyDcj9wubvPStrdQPeLzNOB/QiFbTWhd/UJ4Bx3n55/vohIIUTZaHvgSdJ7byg+d7/5vJZZg1tZL+0oA8jBNfV1d6UdQsqXiswKFWWjm4HD084hhfWNKS2PTHzMx6VQaN5ZU193SKEuZmF/rr8BBwGnuHv+FiEiIj3S2f66lS7KRrcA30g7R7GMe6n16R/+vVVDZUtnSk193Z5ph5DypjmZletUQu+MVJBbxw/a/W/jqqZ62O6jVJroeNGeXnH3ZuAwwjL8fzCzEwt5fREpLjPb08w8eVzaQZvVzKwxaTO5xBELysxOTorYHj1XQmcAn6ScoWgOn9xayve8ga6VMGpIpE9UZFaoOBPPBX6ddg4pvNt3rxp3y/iqxx062laj0M6rqa97retmPePuje6+v7ubu/dkxVoR6T+WAkeY2bB2njuSMOqiubSRiuJk4KhePFcScSaeQdj/t+KstsDnrLJQC/6U0IU19XWa4iF9piKzsv0RqEs7hBTe3btW7fbnCVXTSlBovoC+rBCRjt0FrAh8rZ3njiaMVlhW0kQD1x8Ii6RVlMyDra+ZPq+WSj3wi7RDSGXQX9oKFmfiJuBESju0Ukrknp2qdr3+y1VPevF6CZqATE19XWORri8i5W864cuoo3MPmtmOwBaEOZLkPbe3md1mZm+a2RIzW2Bm95vZ51ZINbPJZjbDzNYys1vM7CMz+8TM7jOzTTvIVGVmp5rZG2a2zMxeNbNMO9c+zMz+bmZvJ+0+MLO7zWzLvHYOrA+Mzxki7GY2prPnSvRaPxVn4mbCnryV0HMMwKAWb9rudd8i7RwDRAtwVE19nbYskYJQkVnh4kw8BW0CX7H+tX3VLtfsU/W0h4Kw0H5TU19Xcd+Ki0jBXQfsbWZr5xw7hrDC8j3ttD+KsHfsjcAPgAuBGuDfZrZ7O+1HAA8TPgSfCVwK7An8PzMb1E77swlDda8Cfkr4ovUGM9str933k+f+BHwPuBrYHZhqZpvktDsS+IDQy3NkzmNeF8+V4rV+RpyJp1NB+2Xv84w/VeWsmnaOAeL3NfV109IOIZVjcNoBpCT+l7Df4A5pB5HCe2Dbqp2bB/HkCfe2bm1h78dCeIbwQU1EpCs3AecBGeBsM1uOsNLpNe7ebPa5xbCPd/fFuQfM7ErClkZnELYryrUKcL67n5fTfl5yzy8B9+W1Hwbs4O6NSdvbgTcJReXUnHb7tpPjRsKQ0x8DJwG4+01m9hvgPXe/Kf+1d/JcKV5re/4POBDYqhtt+7VDpraO6LqVFMBLwK/SDiGVRT2ZA0AybPZwtNpsxXpoq6odLzug6nkvzNynZYRhshUz5EpEisfd5wN/57+L3xxM2Cv2ug7af1p0mdlIM1uZ0HM3DdipnVNagYvzjv0n+bkJn3d5W4GZ3G8O8Gp+27YcFowys1UIPZCvdJCjx0rwWj8nec//BrCox4H7kQ3e9ddXWFr+hXIZaCYMk9XcaSkoFZkDRJyJ3yAMB5IK9XBUtcMfv1b1oofVHvvi5zX1dS8VJJSIDBTXA5uY2TjCUNkn3f3l9hqa2UZmdquZfUT48vMDQnG3H2ERoXxz3T3/37X5yc+V22n/ZjvH5ue3NbNtzOyeJENDkmEeEHWQo8dK8FrbFWfieuC4XkTuN456oGVO2hkGiLNq6uueTjuEVB4VmQNInIn/DPwl7RxSPI9tXrXdHyZWvey93y/t5pr6ugsKGkpEBoL7gDmEIXd70UEvppmNJMw53JewAvqhwD7Alwk9dp8bW0vnq2j3pP2nbc1svSTHNoThpROBvZMcL1GAz0cleq0dijPxbYQ5nWVnWKMvHjubbdLOMQDcDvw27RBSmTQnc+A5Edge2CztIFIc08ZWbXveoTz309tbN7GwiER3PU2Zf/MtIulw95ZkPuMZwBLglg6afhFYCzjG3T+z8mwyt7FUJgIjgQPd/aG8HCvz+akH3sm1OnquP7zWnxDWYyjI8N9SOfix1ukWFmGS4nmBMEy2sz/bIr2mnswBJs7EHwP7E4bsSIV6ZpOqrc/5n6o3vPvzcN8FDqqpr1tSzFwiUtGuBM4CTnD3hR20aeup+0yvnJntTWkLoY5yHA+s0U77RYRVYtvT0XOpv9Y4EzcCX+e/Q27Lwn5P+WppZ6hw84Gv1dTXLe6ypUgvqcgcgJL5mQfS97l70o89t1HVlr/5RtUMh44+7LVZBhxcU1+n+S8i0mvu/ra717r7jZ00e5TwpdYFZvZrM/uOmV0O3AHEJQka/JMwreDPZnaGmZ1gZn8GzgXeaKf9E8AXzOz/zOwIM/uGmY3o4rl+8VrjTDyL0HNbFu/50Vut8bBmjbYqombg6zX1dTPSDiKVTUXmABVn4seBb9P5ECApc/EGVdGvj6ia5WFRi46cWFNf93jJQonIgOXuCwjzEqcR9o28ANicsBDO9BLmeAP4CvAWYT/Kcwm9keOB2e2c8nPgLsICejcRhgOv2tlz/eW1AsSZ+BHgW4TVa/u1zL9bu/piVPrmlJr6uoe6bibSN+auGmMgi7LRzwhvrlLBxs7yurNualnDPr+a4QU19XWnphJKRERKKspG3wcuSTtHR1b4xD+85o8tIyzsdSqFd3lNfZ12GpCSUE/mABdn4t8BV6edQ4qrfl2r+cW3B73f+tl5OdcCp6WVSURESivOxJcCv0s7R0eOmNz6ggrMorkW+H7aIWTgUJEpACcBt6UdQorrtbVts58fNejD1rDo063Ad7SqnIjIgHMG0Nm82XS4+/jYN0w7RoW6Eb3nS4mpyBTiTNwMfJMwl0Qq2Btr2ia/yAy6Cziypr6u38/NERGRwoozsQPHAH9OO0uucS/7M4NbWS/tHBXoFuBovedLqanIFADiTNwCZIDru2orZe2O19eyk2rq65rTDiIiIunIec//U9pZ2hw+uVVFUOHdDnxbBaakQQv/yGdE2ciAy4ET0s4iBfc34Iik51pERIQoG10E/CjNDKst8DmXXNGyhsGgNHNUmP9H2KqkKe0gMjCpJ1M+I87EHmfiE4GL084iBXU5cLgKTBERyRVn4pNJeZX5zIOtr6nALKhrUYEpKVNPpnQoyka1wC8BSzmK9F4r8JM4E1+UdhAREem/omx0KmHl2ZJ2QAxq8aa/nN+yoMo/3XdUes+BM2rq6/rtCsIycKgnUzoUZ+Ja4H+AxSlHkd5ZDBykAlNERLoSZ+LfA18DPi7lffd5xp9SgVkQSwi9lyowpV9QkSmdijPx7cBuwMy0s0iPzAF2jzPxP9IOIiIi5SHOxPcAuwBvleqehzzWunyp7lXB3gXG19TX3ZF2EJE2KjKlS3Emfh7YAXg47SzSLc8CO8WZ+Nm0g4iISHmJM/FLwI7AlGLfa8y7/sYKS9i62PepcC8CO9XU1z2VdhCRXCoypVviTDwP+BJwZdpZpFOXAbvGmXhO2kFERKQ8xZn4A+DLwCXFvM/RD7TMLub1B4DrgF1q6uveTjuISD4t/CM9FmWjbwGXAtVpZ5FPzQOOjjPxpLSDiIhI5Yiy0VcIe2ivXsjrDmv0xTde0NJiMKqQ1x0gPgSOr6mvuzPtICIdUU9mAZjZUWbmZrZn2llKIc7ENwFboeGz/cW/gEgFpoiIFFqcif8JRMA9hbzuwY+1TleB2SsPApEKTOnvyq7INLM9k4LOzezSDtqsZmaNSZvJJY5YUGZ2spkd1dPnii3OxDOBvYBTCSuaSektA04G9osz8XtphxERkcoUZ+J5cSb+KnAi8EkhrvmVp321QlxnAFkGnALsXVNfNzftMCJdKbsiM8dS4AgzG9bOc0cS9nashI3nTwaO6sVzRRdn4tY4E19A6NV8NK0cA9TDwPZxJv5jnIk15l1ERIouzsRXAlsD9/XlOtFbrS8Ob2KzwqQaEJ4Bdqypr7uwpr5O7/lSFsq5yLwLWJGwp1O+o4F7Cd/6SJHFmfg1YA/gBOD9lONUujnAEXEmHh9n4hfTDiMiIgNLnIlfizPxvsChwKzeXCPz79aGwqaqWO8BxwI71NTXvZB2GJGeKOciczrwAqGg/JSZ7QhsQZikTt5ze5vZbWb2ppktMbMFZna/mY1vp+1kM5thZmuZ2S1m9pGZfWJm95nZph1kqjKzU83sDTNbZmavmlmmnWsfZmZ/N7O3k3YfmNndZrZlXjsH1gfG5wwRdjMb09lzJXqtnxFnYo8z8VXAJsC5hJ5mKZxG4BxgszgT35J2GBERGdjiTHwHMJbwnt/Y3fNW+MQ/XHce2xctWGVoBM4HNq2pr7tOvZdSjspuddlkcZ2HgNOAJuAPwHruPid5/kpgIrA2sAB42t33TJ67GVgVmArMTtocB6wJ7OXuj+TcZzKhWG0AnkjO2QD4EfAm8AV3b0naHkUoaqcBywF/IfSinghsBoxz96k5134EmA88TdhAdyPgO8BQYFt3fy1p9y3gQuAD4Lc5/xnuSl5ju8+5++JivdbuirLR+sDZwOGEocvSe5OAk+NM/HraQURERPJF2WhTQrF5EF2853/33pbJX3w+fC6Tdv0DOKWmvk7v+VLWyr3IvB6YC5zl7meb2XLAO8A17n6qmS3is0XmCHdfnHe91YGXgCfdfb+c45OB8cDP3P28nOOnAecB+7r7fcmxo5IszwE7uXtjcnxtQpF2p7sfnnON9nLUJOdf6+4n5RyfAcxoew1553T2XFFea09F2WhH4AJgXG/OH+DuB86OM3HRN8QWERHpqygbbQP8ivanMoG733xey9uDW1m/pMHKwzTglzX1dfenHUSkEMp5uCzuPh/4O/9d/OZgwt6N13XQ/tOiy8xGmtnKQAvhL/ZO7ZzSClycd+w/yc9N2ml/eVuBmdxvDvBqftu2HBaMMrNVCPscvtJBjh4rwWvtljgTPxln4t2BCYQeufL6VqP0HLgb2CHOxPuowBQRkXIRZ+Jn40x8ELAdoUfuM3Z72aerwPwMJ3w2Gl9TX7ezCkypJIPTDlAA1wOTzGwccAyhl+7l9hqa2UaEoaX7AKPznm6v+Jnr7vlzC+cnP1dup/2b7RybD5/9B9XMtgH+D9gTGJHX/q12rtFjJXitPRJn4oeAh6JsVAP8mLAC8PC+XreCtAC3AufEmfiltMOIiIj0VpyJpwMHRtloe+AnwCHAkCMmt/Zo6k0FawJuAc6vqa/TIn5SkSqhyLyPsOLmrwj7Np7YXiMzG0nY9mEEcBEQAx8TevDOIPS05evsH8P25hx01P7Ttma2XpJjIaHQfAVYTCj8LgJGdnLPbinRa+2VOBPXAd+JstEvgO8BJwGrFOr6ZWgOcCNwTZyJ2/uSQkREpCzFmfhp4PAoG605cokfs8pCvpN2ppQ1ANcCF9bU181OO4xIMZV9kenuLWZ2I6F4WkL4Zqg9XwTWAo5x98+sPGtmvyluys+YSCgkD3T3h/JyrMznt13pbHhpR8/1l9faoTgTvw/8KspGZwP7ExYIOoCB0bu5lDAk9gbggTgTt6YbR0REpHjiTPwO8Nu6i2rOBfYDjk9+Dko1WGm0AA8AWeDumvo6rb4vA0LZF5mJKwnLPb/p7gs7aNPWU/eZXjkz25sCzYPspo5yHA+sAczMa78IWKmDa3X0XH95rV2KM/Ey4E7gzigbjSKsTHcEoVCulD+fEL4QmEZ4k7k1zsQLUs4jIiJSUjX1dS2EuZr/qBtbswZwIGGRoC8Cw9LMVmBOWK3/NuBvNfV1c1POI1JyFfEh3t3fBmq7aPYoYbuQC5K9JGcDWxPmBsZAVLyEn/FP4BPgz2Z2KfARsBvhG703+Pz/kyeAY83s/4A6wpDXfyQL+7T7HP3ntfZInIkXEoaO3hhlo1WBrxPmlO7B5+eVloMPCCvE/gu4P87E76WcR0REpF+oqa97F/gT8Ke6sTUjCe/3XyOMburoy/X+rAF4BHgQuLOmvm5WZ43NbBRhq7iJhAUWBwEzgHuA37v7+0VNK1JkFVFkdoe7LzCzfQhbcvyA8NqfIRR3x1Kiwsvd3zCzrxD2kDyT0Os4lbCFyKXAmLxTfk74x/Z7hELLCHtYLu7oOXef0R9ea1/EmXgecDlweZSNqoBtCHNuJwC7U4C5q0XQCDxFmCf8L+AZDYUVERHpXE193SLgDuCOurE1gwjbnn0J2BHYAVgxxXgdWUQoKh9KHs8mPbVdMrNNCZ8V1ieM5rqWsBjQzsDJwNFmdoC7TytGcJFSKLt9MkWibDQY2D55bJ7zWLWEMRYAzwPPEvY3fQ54Oc7ETSXMICIiUvHqxtZsTCg424rObYDlShhhHlBPGDVWRxhJ9nRNfV1zTy9kZssTPjtsAEx090l5z29P6A1dBkTq0ZRypSJTKkaUjVbhvwXnxoRVa1chbMHS9rOtx7czLYShrvOA94G5wKycx4txJp5R+FcgIiIiXUl6O9cG1kse6+b8er3kueWAoXQ+aq+ZMG0p/zGX/xaV9TX1dfM7vEIPmdkPCPuSn+/uP+2gzUnAZYRhs6clx44ibNu3l7tPzms/GRjj7mPyjm9PGPW2O7ACYTjujcDv3L05r+0mwC8JPcgrE/4b/A2ozdt7/QYgQ/g8dS5he5pRhBFzp+T2vppZFfBDwhaDGxDmqr5DmNZ1grvri/kKpiJTBpQoGw0iDLsZRCgm2x6tOb9uijOx/mKIiIiUubqxNVWEYnMoYXGhoYQvmxckw3RLysymENaa2MTdX++gzfKEEVOz3X3D5NhR9KDINLP9CUNxXwduAj4EdiGsz3Gnu389p+12wH+Se15P2F5tK8IqwM8A49sKwpwicxrhy/j7CEXpKYQhvxu4+8dJ2/8Ffk1YL+RfhM9YGxAWfNrR3Uv+319KR0WmiIiIiEgJmNl8YIi7j+qi3QuENTRWcPdFPSkyzWw4odfyVWBCbq+lmf0Y+EPudczseUIBvkNbgZgcn0goVI929xuSYzcQiswr3P2knLZfB/5K6KG8Kjk2HRju7pt397+PVI6qtAOIiIiIiAwQowgr0XalbUu+FXpxjy8DqxOK0tFmtkrbA7g3abM3gJlFwJbAzcCwvLaPEhaa3Lude1yY9/v/JD83yTnWAKxtZuN68RqkzA2Y1WVFRERERFK2kFBodmUUYSrPB724R03y87pO2qye1/as5NFZ21xv5v7G3eebGYShs23OBO4GHjGzucBkYBJwu7s3dpJNKoCKTBERERGR0ngR2MPMNu5iTuZYYGbO4jidzW/L/zzftsDhaYTV79szN6/tBYR5k+35KP+Au3e0XYvltHnczDYi7IG6V/I4AviFmY1z9w87uIZUABWZIiIiIiKlcTth4Z/jgNM7aPNtYAhhwZ42bQXZSu2034Cw6E6b15Kfi939wS7ytLVt6UbbHksW97kjeeSunHsscH6h7yf9h+ZkioiIiIiUxrWEBXlOMbN98580s22BcwhbfVyW89Sryc8v5bU/HFgr7zL3EbZgO93MPleUmtlyZtY21/NZQu/qCWa2YTttB7d3je5I5nXmm5787NU1pXyoJ1NEREREpATc/RMzO5AwNHWSmd1BmKvYDOxI2GLkI+BAd38v57xXzOxB4LsWJj8+B2wNTCRsUzIkp+1iM/s2YT7kK2Z2XdJmNGEY7sHJeZPd3c3sSMLCPS8kbV8ClifsOX4wcAZwQy9ebp2ZPUHY7mQusCbwHaARuLUX15Myoi1MRERERERKyMxGAT8iFHGbACOSp14Cxrn7gnbOWQO4hDDHsQp4hLA/5RXk7ZOZtP8CYUjuXsCqhOL1DeCfwGW5cyLNbH1CMbkvoWf0Y8I2KPcDl7v7rKTdDUDG3T+de5lzDQey7n5U8vvTgf0IhW01oXf1CeAcd5+ef75UFhWZIiIiIiIpMrPBwN+Ag4BT3D1/ixCRsqIiU0REREQkZWY2FLiL0Pt3krtfkXIkkV5TkSkiIiIiIiIFo9VlRUREREREpGBUZIqIiIiIiEjBqMgUERERERGRglGRKSIiIiIiIgWjIlNEREREREQKRkWmiIiIiIiIFIyKTBERERERESkYFZkiIiIiIiJSMCoyRUREREREpGBUZIqIiIiIiEjBqMgUERERERGRglGRKSIiIiIiIgWjIlNEREREREQKRkWmiIiIiIiIFIyKTBERERERESkYFZkiIiIiIiJSMCoyRUREREREpGBUZIqIiIiIiEjBqMgUERERERGRglGRKSIiIiIiIgWjIlNEREREREQKRkWmiIiIiEiRmdlRZvZo2jlESkFFphScmc0ws/fNbETOsePMbLIFD5vZr/LO+baZvWFmy5vZKDO7yMzeNrNFyfGLzGyVXuaZbGbH5R3b08xmd/P8WjO7qYs248zsMTNrMLMPzWyqme3Qm7w9vbeIiEg5GIifD0QGKhWZUiyDgB/lH3R3B44DfmxmWwCY2arABcnxZuDfwBbAvsAoYBdgPrBjSZL3kJmNAu4BLgFWAtYGzgKWpZlLRESkHxownw9EBjIVmVIs5wOnmtno/Cfc/VXgt8C1ZlYFXAzc4e4PAd8G1gMmuvvL7t7q7u+7+/+5+73FCmtma5nZ35NeyNfN7Pjk+L7AmcBhybemz7dz+qbJ67rF3VvcfYm73+/uLyTXOCrp2bw06emsN7MvFujeIiIi5aSiPx+YWbWZXWtm75jZHDP7jZkNKlY+kf5qcNoBpGI9DUwGTgV+0c7zfwAOBW4i9GpTAAAgAElEQVQHtid8MwnwJeBf7r6oBBlz3Qq8CKwFjAUeMLM33P1fZnY2sLG7f6uDc18FWswsm1znCXf/KK/NToTXugpwMHCnmW3g7h/28d4iIiLlpNI/H9wAvA9sDIwgjHSaBVxV0tQiKVNPphTTL4EfJMNdPsPdW4BjgInAD9z94+SplYF3ipDlYjNb0PYg/KMPgJmtC+wG/Mzdl7r7c8A1hG9Nu+TuC4FxgANXA/OSbz1Xz2n2PnCRuze5+23AK8D+fb23iIhIGarIzwfJ+/5+wMnuvtjd3wcuBL5RhNwi/ZqKTCkad3+R8I/16R08/1Lyy5dyDs8H1uzuPczszGSYyiIzu7KTpj9099FtD+CAnOfWAj7MeSMDmEmYW9kt7l7n7ke5+zrAF5JrXpTTZE4y3yT3+msV4t4iIiLlpII/H6wPDAHeySlarwJW625ukUqhIlOK7VfA8XS/aHoQ2Cd35bnOuPvZ7j4yeZzQy4xzgZXMbIWcY+sBc9pu05OLuXs9YbjMF3IOr21mlnf9uYW+t4iISJmoxM8HswiL/q2SU7iOcvctEBlgVGRKUbn768BtwA+7ecqfCf9I32FmY82sysxWTr6R3K9IGWcBjwHnmNlwM9sSOBZoW5b8PWBMsgjB5yQ5f2Jm6yS/Xxc4HHgip9lqwA/NbIiZfR2oAe7t671FRETKUSV+PnD3d4D7gQuS7VaqzGwjMxtfjHwi/Zk+uEop/Jow+b1L7r6MMLm/HngAWAg8SVgwZ1qxAhKKwjGEby3vAn7l7g8mz/0t+TnfzKa3c+7HhIV9ppnZYkJx+SLwk5w204BNgA8IK+cd6u7zC3BvERGRclWJnw++DQwFXgY+Iixg1O1hviKVwj47TUxECs3MjgKOc/dxaWcRERERESk29WSKiIiIiIhIwajIFBERERERkYLRcFkREREREREpGPVkioiIiIiISMGoyBQREREREZGCUZEpIiIiIiIiBaMiU0RERERERApGRaaIiIiIiIgUjIpMERERERERKRgVmSIiIiIiIlIwKjJFRERERESkYFRkioiIiIiISMGoyBQREREREZGCUZEpIh0yMzezG7rRrjZpO6booURERESkX1ORKZISM9szKcxyH0vN7E0zu97MatLOKCIiIiLSU4PTDiAi3ALcm/x6OWBL4DjgEDOL3H1maslERERERHpIRaZI+qa7+025B8zsNeCPwMHAhR2daGYruPvHRc4nIiIiItJtGi4r0j/NTX42ApjZmGQ4ba2ZHWZmz5jZEuCSthPM7Dgzm25mS8yswczuN7Nx7V28J23bOXdbM3vXzF42s/U6aPPjJO+X23lumJnNN7P/5BybYWaTzWysmU0ys4+TXLeb2RrdySUiIiIi/YOKTJH0LW9mqySPdc3sK8BvgQ+AO/LaHgRcAfwL+CHwTwAz+x1wNdAEnAlcAGwOPGRm++VeoCdt85nZPsAU4A1gnLu/3UHTG4FlwDHtPDcRWAm4Ju/42sBk4G3gNOBmQk/ujZ1lEhEREZH+RcNlRdJ3VvLI9TKwu7u/m3d8C2BLd69rO2BmmxGKsqnABHdv6/28JrnO5Wa2kbu39KRtfkgzOxK4ljB/9HB3X9LRC3L3+WZ2J3Cwma3k7h/mPH0s8BFwZ95pGwOHuftfc+7ZCpxkZpu5+ysd3U9ERERE+g/1ZIqk70/Al5PHV4GfAasA95rZ+nltJ+UWmImvAQac11Y0Arj7XOB6YH1gm160/ZSZnQ5kgeuAQzorMPNe1zDgmznXGQN8EfiLuy/Naz83t8BMtA2p3aQb9xMRERGRfkBFpkj6XnP3B5PHPe5+HnAgsAHwu7y2r7Zz/gbJz5faea7t2Ia9aNvmYOAc4Bp3P6G9Xs72uPvkJO+xOYePJhS5+UNlAd5s59j85OfK3bmniIiIiKRPRaZIP+Tu04AGYELeU5+kEOdJwhzMQ81s+x6eezWwlZltZ2ZVwFHA0+7+fDttOyterYf3FREREZGUqMgU6b8GAyt0o11bD+AW7Ty3eV6bnrRtMxsYD8wDHjSznbuRqc0NhBVyjyUMB16PMK9TRERERCqUikyRfijZ+mME8Ew3mv8dcOA0MxuSc401CcNTZwLP9qLtp9x9DqHQnAvcb2a7ded1uPsHwN3AEcD3CT2xN3fnXBEREREpT1pdVgaW2moDhgJDcn4OIRReDdQ2LEoh1bZm9q3k18MIvYzfIWwx8ouuTnb3V8zsfOCnwMNmdhuhB/Q7wEjgm23zKHvStp37vGtmewIPAv8yswPcfUo3Xt+fgP8BDgCy7r6wG+eIiIj0WZSNRgDVhPf81uTRDCwBlsSZuLGT00Wkl1RkSmUIxeMGwGaE/RbXBtbK+/VKdPVnvra6GVgILCDMiVwAvE+Yk/jap4/ahvcLmP7w5AHhzW8+cD9wjrs/1Z0LuPvPzOx14CTgXMIQ1WnAEe7+SG/btnOf981sL0Khea+ZHeju/+4i3n+A1wlblGiorIiI9FmUjVYjvK/kPtYERhOKympgFF2870fZqAX4kDBSZy4wJ+fnHOAV4I04E3tRXohIhTJ3/Z2RMlNbPZTQ27c1YbuNrYEtCW8opdJAKJxeBh4j7Dv5ErUNrSXMUDbM7CVgkLuPTTuLiIiUjygbGTAW2BXYhfC+vzGhgCyVj4EXgOeSx/NAHGfi/K24RCShIlP6v9rqKmA7YJ/ksRNhiGt/0wA8Tig4HwWmUdvQnf0kK5qZTQD+DZzq7heknUdERPqvKBsNBXZLHrsCOwMrphqqfc3AE8ADhNFHT8WZuFtbfIkMBCoypX+qrV6L/xaVX6I890lcQiiu/g78g9qGd1POU1JJcbkRcAZhvufGmo8pIiL5omy0KmF/6P0JK5GPTDdRrywgTA95APhnnIlnppxHJFUqMqX/qK1eFTiMsBLpLimnKTQn9HD+Fbid2oZ3Us5TdGY2GRhHGFL8va7me4qIyMARZaM1gEOBQ4DdgUHpJiq4J4FbgL/GmXhu2mFESk1FpqQqykZDgAMGu39z2oxZ+w4N23ZUulbCwjmXA/dQ26DhNSIiUvGS+ZVfBk4AvsrAWICy7T3/euBuzeOUgUJFpqQiykYbAicC3wZWA/j5Bx8+8Y2PF+2carDSe5uwxcfVBV6xVkREpF9IVoI9Bjge2DDlOGlaAFwHXBRn4llphxEpJhWZUlJRNqoBziRs2fGZoTFrNjc/ef+suTumEix9jcCdwKXUNkxNO4yIiEhfRdloG+B0YCL9c8G+tDQRps+cH2fi59MOI1IMKjKlJKJstBXwC+BgoKrdRu5NU96es3Cl1tZyXOSnkP4D/ILahsfTDiIiItJTSXFZS1jMRzr3IKHYvD/tICKFpCJTiirKRjsC/wsc0J3232xYOOX0DxeML26qsnEvodh8Nu0gIiIiXVFx2SdPAz+JM/HDaQcRKQQVmVIUUTbaAvgDsHdPzlu+tbVu2szZNcVJVZYcuAv4X2obXk47jIiISL4oG40FzgEOSjtLBbgb+GmciV9LO4hIX6jIlIKKstEI4FfAj+nlqnF/nfPOGzWNTRsVNFj5awWuAs6gtqEh7TAiIiJRNlqeMFrpFGBoynEqSRNwJXBWnInnpx1GpDdUZErBRNnoa8DFwHp9uc7unyyZcvl78zRktn3vAidT23Bb2kFERGTgirLRROBCYP20s1SwBYQv7i+NM3Fr2mFEekJFpvRZlI3WBy4h7HnVZ1Xu7zw7Y9bqVR0tECQA/wROorZhRtpBRERk4Ei2ILsE2C/tLAPIo8DRcSZ+Pe0gIt2lIlN6LcpGg4FTCUNlli/ktS94b970vT9Zsm0hr1mBPgF+DVxAbUNz2mFERKRyRdnIgJOBs4HhKccZiD4hbAF3cZyJ9eFd+j31FEmvRNloHWAKYaJ/QQtMgCtWrF5S6GtWoOWBc4HJ1Favk3YYERGpTFE2Wht4gLCgnwrMdCwPXARMibKR1q2Qfk9FpvRYlI32Bp4Fdi3WPV4fMmTrxWaLinX9CrMb8By11funHURERCpLst7CC8AX084iAOwOvBBlo+PTDiLSGQ2XlW6LslEVYf+rn1OCLyi+/+GCqd9tWLhbse9TQRy4gLACrYbPiohIr0XZaChwHvCjtLNIh24AToozsUZ/Sb+jIlO6JcpGqwM3AxNKdc8VW1qeffjtOduU6n4V5AngMGob3k47iIiIlJ8oG61B2K9xp7SzSJdeACbGmfjNtIOI5NJwWelSlI32IAyPLVmBCfBRVdVWcwYPmlvKe1aInYHp1FYXbTiziIhUpigbfQGYhgrMcrEl8GSUjUr6GU2kKyoypVNRNjoK+DewZslvblZ12ejRr5X8vpVhZeDf1FYfnHYQEREpD1E22geYSh/3u5aSWxm4L8pG30s7iEgbFZnSoSgbnQlcDwxOK8N9I5dfN617V4DhwN+orf5B2kFERKR/i7LRCcAkYFTaWaRXBgOXRtno12kHEQHNyZR2JHth/RHoF8XJte+89/KOS5dtnnaOMvd74KfUNugvvIiIfCp5z/89cEraWaRgLgF+pP00JU3qyZTPiLLRICBLPykwAS5dsfqDtDNUgFOBm6mtHpp2EBER6R+SAvMqVGBWmh8A2SgbpTYSTURFpnwqykZDgFuBI9POkuu5YcO+0AiNaeeoAN8AbqG2elDaQUREJF1JgXkloP0WK9ORwO1RNhqWdhAZmFRkCvDpflh3AoemnSWfm6109wojn007R4U4GMhSW62/+yIiA1RSYF4OfCftLFJUXwPuUaEpadAHTWl7s8kCB6SdpSPXVmsdggL6JnAltdWWdhARESmt5D3/MuCEtLNISXwJ+EuUjfSZX0pKf+AE4DzCUMp+a+7gQdt8VFX1Ydo5KsjxwEVphxARkZK7GDgx7RBSUocQeq5FSkZF5gAXZaMfEBaF6d/Mhl4zetSLaceoMD+ktvqctEOIiEhpRNnop8D3084hqfhulI3OSjuEDBzawmQAi7LRwcDfKJMvG0a0tr70xMzZW6SdowKdQG3DVWmHEBGR4omy0UTgDkBTJQa278eZ+LK0Q0jlK4viQgovyka7An+hjP4MLK6q2uLVIUPeSjtHBbqE2upxaYcQEZHiiLLRtsBNqMAUuDjpZBApqrIpMKRwomy0GfB3YHjaWXrq4pWq3047QwUaAtxBbfW6aQcREZHCirLR2sA/gOXTziL9QhVhD82xaQeRyqYic4CJstFIwpvNymln6Y1Hl1tuEweN8S681YC7qK1eLu0gIiJSGFE2GkH4UnmttLNIvzISuCP58yFSFCoyB55LgU3SDtFbLWZr/Xv55Z5PO0eF2g64Ju0QIiJSMFcC26YdQvqlzYGr0w4hlUtF5gASZaNvAJm0c/TVFaOrF6edoYIdQW31KWmHEBGRvomyUQb4Vto5pF87PNllQKTgtLrsABFlozHAc0B1ylH6zn3RtJmzbXl3DfMojkZgR2ob1GMsIlKGomy0KTAd0PukdKUJ2CPOxE+kHUQqi3oyB4AoGw0irCRb/gUmgNnIm0et8FzaMSrYUOAmaqvLbmEoEZGBLspGQ4CbUYEp3TMEuDXKRiukHUQqi4rMgeFXwK5phyikm6pX0AI1ReTOBr9v+rqGzYqIlJ9fEubYi3TX+sD5aYeQyqLhshUuyka7Aw8Bg9LOUlDurffPmvvemi0ta6YdpdI0+PIvTGz8dfWbvta6wB4zzt1/atqZRESka1E22gmYSqW950upfDnOxA+mHUIqg3oyK1iUjYYC11GJbzZmVZevWP1q2jEqiTvLbm3ea8rWy/70hTd9rfUJ/z5cN+b0Seo1FhHp55KpMVdRie/5UnRrNjVP++esOWdTW639VKUgVGRWtpOBjdMOUSz3jhixTtoZKsViH1Z3QONvZ53efPx4pyr334VNgTPTyiUiIt12IrBV2iGkvJj7vJ/N/+jx+2fP3Wmd5pYdCFOsRPpMw2UrVJSN1gBeBSp6Ivf1c9+r237Zspq0c5Qrd5rvbd3p0R82fX9cC4MGd9BsKTB2xrn7zyxlNhER6Z4oG60GvAKMTjuLlI+NGhunXv/O+zUrtraulHO4GdiO2oYX0sollUE9mZXrXCq8wAS4dMXqeWlnKFdLfcgb/9P4y9e+1/SjPTspMAGGA78vVS4REemxc1GBKd00yH3ub+d98NTdc97dLa/ABBgMXEVttaWRTSqHiswKFGWjHYFvp52jFKYPH7Z5U9jjSbrJndZHWqIpWy27eu2nfGx3e4EPHXP6pPFFDSYiIj0WZaNdgKPSziFlwN23XLrskUdnzl7hwEWf7NBJy52Bg0sVKw1m5mZ2Qzfa1SZtxxQ9VIVRkVlhomxkwMXAgPgGys1W+cfIEc+mnaNcNPmgt49pOi0+sumM8csY2tN9MP845vRJ+jdDRKSfSN7zL2WAvOdL7w1xn3Hpe/Ne+Ms77+0+0r07I93Oora6V+/5ZrZnUpjlPpaa2Ztmdr2ZaZrTAKAPjJXnSGCntEOU0tWjR7WmnaEcTG/d+JGtll298kOt2/R2YYitgGMLmUlERPrkEGDbtENIP+bestsnS6Y8NnP26uOXLO3J+/8WwDf6ePdbCJ9LjwR+AExKrjnNzNbv47Wln1ORWUGibDQMOCftHKU2e/DgbRuqqhaknaO/avGqd77f+INnDm789e6fMHxEHy/38zGnT+ps/qaIiJRA0ov5v2nnkP5reGvrqze88/6rV743b/xw995sR/Yraqv7siXOdHe/KXlc7e4/AH5GWDOk0+G4Zlbx64pUOhWZleUYYK20Q5Sc2dBrqkfFacfoj15pXWfqNsuuXP6e1l22K9Al1we+VaBriYhI7x0EbJl2COmH3Bu/smjxlMdmzt5gu76twL8phV/jY27ysxHAzMYkw2lrzewwM3vGzJYAl7SdYGbHmdl0M1tiZg1mdr+ZjWvv4j1p286525rZu2b2spmt10GbHyd5v9zOc8PMbL6Z/Sfn2Awzm2xmY81skpl9nOS63czW6E6ucqUis0IkmzCflnaOtNw+auSKaWfoT1rdPjiz6Zgn9mk8b7eFjKwu8OXP0NxMEZHUqRdTPmdka+uLf5377qzz5s0fPwSGFOCSv6S2urfXWd7MVkke65rZV4DfAh8Ad+S1PQi4AvgX8EPgnwBm9jvgasIij2cCFwCbAw+Z2X65F+hJ23xmtg8wBXgDGOfub3fQ9EZgGaFjJ99EYCXgmrzjawOTgbcJn9VvJvTk3thZpnKnYW+V43Bgg7RDpGVRVdUX3hgyeMZGTc1j0s6StrdbV31iYuOvN55P9c5FusWmwNeB24p0fRER6USUjQ4Etkk7h/Qj7ou/8fGiZ86Y/9G4qsJ2Io0hFFRX9eLcs5JHrpeB3d393bzjWwBbuntd2wEz24xQlE0FJrh7W+/nNcl1Ljezjdy9pSdt80Oa2ZHAtcC9wOHuvqSjF+Tu883sTuBgM1vJ3T/MefpY4CPgzrzTNgYOc/e/5tyzFTjJzDZz91c6ul85U29E5fhp2gHSdvGKo2eknSFN7jT8rumwqXs0/nHn+VSvUuTbnTnm9Em9Ws1Qq86JiPSZejHlUyu1tEy/Z/Y7H/58/kd7FLjAbPMLaqt70zH1J+DLyeOrhPmYqwD3trPwz6TcAjPxNcLKyee1FY0A7j4XuJ4whWebXrT9lJmdDmSB64BDOisw817XMOCbOdcZA3wR+Iu7L81rPze3wEy0DandpBv3K0vqyawAUTaaAERp50jblOWX29jBbQAu5f6+j376oGW/Xnsuq+xWoltuCXyF8K1fb92Sc/5yyTWPAw4xs8jdZ/YtoohI5Ymy0Thg+7RzSD/g3nDCgoXx9xY0dGvOYR+sQxjOensPz3vN3R/M+f09ZjYFeAL4HZ9dvfbVds5vG6H3UjvPtR3bEHi6h23bHExYhOhqdz+hoxeRz90nm9mrhJ7LtrmjRxM+f+YPlQV4s51j85OfK3f3vuVGPZmV4UdpB+gPWszWmbz8ci+knaOU3Fl8RfNXH9lx2eXbz2WVNUt8++/28XytOici0nPHpx1A0rdWU/O0B2fNXVqCArPNiYW4iLtPAxqACXlPfVKI6/fQk4Q5mIeaWU+/uLka2MrMtjOzKuAo4Gl3f76dtp8bopujYjtGVGSWuSgbbQQckHaO/uLy0dUfp52hVBb4iOcnNP5+/u+aD989pQj7jTl9UqEL26KtOpdc5wYz28XMppjZ4mQVuGvMbGROu3WS4y+a2XJ51/iLmbWa2ZcK/LpFRLoUZaPRhDnxMkCZ+7yfzf/w8ftmz91p9ZaW1Ut46wnUVm9WoGsNJnyh3JW2HsAt2nlu87w2PWnbZjYwHpgHPGhmPVnL4gbCZ5VjCcOB1yPM65SEiszydxz6//ip+qFDtloaipCK5c6ym5snTNlm2VXRW75Wu0tsl8hgwvCQ3irpqnOJrYF7gKeAU4D7CW8Qf2hr4O6zk9e1BXBR23EzOwY4Avhd3vAfEZFS+RZheoEMQBs3Nk59+O05g7+1cNEuKUXo6wgmkq0/RgDPdKP53wEHTjOzT1e4NbM1Ce/TM4Fne9H2U+4+h1BozgXuN7NuTTty9w+AuwmfC75P6Im9uTvnDhSak1n+Dks7QL9itsIto0Y+dnTDx7umHaUYFvvwuq83/nLoyz5mfNpZEseOOX3SOTPO3d97cW7JVp3Luc6WwC7JcB2Aq8xsFHC0mZ3i7osA3P3vZnYJ8AMzewB4kdB7+gRacENE0qOhsgPQIPe5v5k3f+4Biz8p1boLHfkmtdU/pbahuZvttzWztr21hxHey79D+GL4F12d7O6vmNn5hMUtHzaz2wg9oN8BRgLfbHuP70nbdu7zrpntCTwI/MvMDnD3Kd14fX8C/ocwojDr7gu7cc6AoR6wMhZlox0YwNuWdOTGUaOGpp2h0Nxpuqdl5ylbLrt6k5d9zEZp58mxIZ+fV9FdpVx1rs3jOQVmm/8QvnAbk3f8NMK3nlcTFjtoIixt3t03VxGRgomy0U6EL8pkoHD3rZcue/jRmbNXOGDxJ/1hsafVCIv+ddfhwJ+Tx58IPfH3A7u5++TuXMDdf0YoFIcD5xLem+sJXy7f29u27dznfWAv4HXC55AvdiPef5L2oKGyn6OezPL2ja6bDDwfDKra5t1Bg95do6VljbSzFMJSH/L6txrPbHraN+svvZf5jgb+3YvzSrnqXJtur/Dm7svM7PDkWlsQvgWd0c75IiKl0JfpCVJmhri/ddF78xbusWTpHmlnyZMB/tFZg6SA7NaCNsn7aqdt3f1qwhe+3blet9q6++fu6e7zyfty2t1rgdoOruFm1gi84u6PdNBmTAfHJ1PBi/6AejLLVpSNjNBFL/nMBl2xYnXZb2zrTuuUli0nb7nsmnWf9s36896RXx1z+qSC9B6XYNW5nq7wtj8wKPm1Nj4XkVRE2agKmJh2DikB95bdP1ky+fGZs9bcY8nSrdKO046vUlu9Ytoh+gMzm0BYB6JbBfBAoyKzfO1K2LdI2jFpxPJrpZ2hL5p80MxM089ezDSdvmcjQ4alnacLowhDXgulGKvO9ZiZbQecAzxA2NPzJ2a2d2+vJyLSB+MIQxWlgg1vbX3lhnfef/Xy9+btOcwZnnaeDgylsO/5ZcfMJpjZ8YQ9MeehIrNdKjLLlxb86cSyqqpNnhs2tOx6M93xp1s3fXirZVev8nDrVuU096Yg37AXcdW5nuYYCdwKfAQcCZwAvAXcaGb6oCcipaZezErmvmy/RYunPDZz9obbLVvWn0cutdkn7QAp+yVhxftFwCFa8Kd9mpNZhpJhM4emnaO/u2TF0e9e++77hdrTqeiaveqdHzV9f+6k1p372/yL7th/zOmTrIerzJZs1bleuALYCNjX3d8DSOZnPgpkzWw/d+/NiroiIr3x1bQDSHGMbGmNr3/3veXHNjb113UX2jOgR/W4+55pZygH6sksTzsAa6Ydor97aviwzZuhLFYCrWtdd+o2y65aflLrztulnaWX1gB6mr2kq851l5l9O8lyvrvfn3OvJ4GfA/sS9tgUESm6KBttRvjSSyqJ++LDGz5+eOrbs7cY29hUbv9/16G2evOum8lApp7M8jQu7QDlwM1WvWfkiKcOWrR4h7SzdKTVbd6Zzce+eWvLhLT3viqE/fjsSq7tSmvVufZWkkuO3wDckPP7G4EbO2h7PnB+V/cSESmg/dIOIIW1UkvL9Bvnvrfq+s3N5Thyqc0+hD2pRdqlnszypCKzm64eParf9mTObF3tie2XXV51a8uEndLOUiC7px1ARKQC9XYvYulv3BtO/Kjh0Slvz9l2/ebmddOO00cDfV6mdEFFZnmqhF6vknh78OBtGqqsIe0cuVqdBec0Hf7Y+MaLdv6Q6pW7PqNs7DTm9EmDum4mIiI9sHPaAaTv1mpqnvbgrLlLT1rQUCkdBXtQW91fV8CVfkBFZpmJstGmwKpp5ygbZsNvqB71Qtox2rzno5/ebdklS69q+equaWcpghWAKO0QIiKVIspGGwOrpJ1Des/c550+/8Mn7ps9d6fVW1pWTztPAS0HlPNwXykyFZnlp1K+ASuZ21ZYYXTaGdxZdFnz1x7Zadnl27/DymuknaeIKrF4FhFJS6VMpxiQNmlsnPrw23MGf3PhokrtjVaRKR3Swj/lR0VmD308qCp6a8jgmRs0Na+fxv0/8pHPT2w8a6UZvuZAmLO4K3B52iFERCpEpRYnFW2Q+5zfzpv/zv6LP6n06U1bpx1A+i/1ZJafSv8HqyguWXH0jFLf052lNzV/ccq2y66MZvia5T7Bv7v051NEpHBUZJYTd9966bKHH505e9T+iz/ZPu04JaAiUzpk2k+8fETZaEXgw7RzlKPB7rOmz5i1jnVz64y+WuTDXz60sXZ4va+3YSnu18+MmnHu/h+nHUJEpJxF2Wg4sBAYknYW6doQ97cuem/ewmYyzY4AACAASURBVD2WLN0q7Swltiq1DR90p6GZ7Qk8lHd4GTAXmAKc5+51hY0nadFw2fKycdoBylWz2bqPLDf8+WL/4+9O099bd3nslKaTdmth0ED9+7Up8EzaIUREytwmqMDs/9ybd1+ydOqF78/baZizQdpxis0db6Fq7jxGz61vXfeTf7Tssvkf4OEeXuYW4N7k18sBWwLHAYeYWeTuMwuZWdIxUD8El6uK/8ermC5bsfrjPZYsLdr1l/qQ145o/HnLdN90fNFuUh5UZIqI9N1AHAlTVoa3tr5y1bvvt267rLEi3/dbvOrd+aww57XWdRY95ZtVTWutWemF1g3XX8xyawNrJ82iXhSZ0939ptwDZvYa8EfgYODCjk40sxXcXaOlyoCKzPKiN5w+eHno0C2XGUuHOQXd18md1odat374u02n7NrE4KGFvHaZ2iztACIiFWCjtANIB9yX7b/4kyd+M2/+boMr4LN0q9sHH/1/9u47PrKq/OP455nJ9pIttGVhC7DsBhgERPiBlAVRkLWA+rOAEooFRBFBpFkW66o/BAsCKiUUaSooTYqyNOl1gISeZVm2sb0mm5nn98e5gWF2kkySmdxk8n2/XvOazZ1z7zyT3Z17n3vOeQ7D577qW656Irs9D2drRj+V3W7CSoZvAXRUEX9aicJ4K3puBjCzScDrwDlAPfBdYAfgOuDoqM2Xga8DNdF+jwA/cvcHcg9sZg7UARcDs4DdgfXAjcDJ7r46arcV8AwwH/iAu6/LOcbVwBeAj7j73SX6zBWtz//H6GfUk9kdZiOvGzHioaNWrtqrVIds9uScYzd8d+UD2dT0Uh2zAmwfdwAiIhVASWYvNCKTTV82f+GwqRs29Lney6yzfCXD3njdx614Mjsl+0i2pvqJ7JStllC9CV1fj7UrSeZQM2t9vyHATsBPgbeBv+W1PQw4CbgQuIgwTxkz+wUh8XwUOIuwVvdXgXvM7JPuflvecXYBbgEuA/4CTAeOA7LRfrj7m2Z2DPAP4Hzga9F7HQscAcxSglk8JZl9i3oyu6muesSAo1Z2f5SFO/64T73/qOYzdl/HoFiWRunF1JMpItJ9SjJ7E/c1R6xc/cTpS5ftk+jlqzO4s2o1Q96Y45sveyq7XeaRbM2IJ7Lbbxmt013qtcMndWGfc6JHrheAfd19Qd72HYGdcwsCmdlU4DTgQeBAd2/t/fxzdJw/mNm27p7JOc7OwF7u/kj088VmNhI4xsxOae3NdPd/mtnvgG+a2V3Ac8DvgIeB73fhs/ZbSjL7FvVkdtOiZHLXRcnkos0ymc26eowWT8z7xoZvLvxXdk8tQlzYpLgDEBGpALqx3EuMbck8ccX8hZtPaGnpVed9d9atZVDjXN9s6TPZbTY8kq0Z9rhPHfeGbzYebMceCmNcF/b5I3BD9OfBhGGwpwK3mdkBeYV/bi1QcfaThNUCftmaYAK4+1tmdhlwMrAr8HjOPg/lJJit/gMcSrhueS5n+2mEden/BMwDNgBfcPeWzn7Q/kxJZh+RqkslgQlxx9HnmSUvGjWy/gdLlnUpyXwhO+GBzzb/YOfVDB3fcet+a9SkM25NNM6akY07EBGRvihVl0qgG3bxc1/x9eUr0icsX7lPvGHQvJ6Bc+b52MVp36b50ey0oY9mp23+mo/b2knUxBkbMGzSGbeO6OTSZS/nDTu9xczuJfQW/gL4fM5rLxXYv7XT5fkCr7Vu24b3JpmvFWi7JHoem7vR3ZvM7AvRsXYEjnT3xgL7SzuUZPYdW6FS5iVx8/Bh436wZFmn9sm4LT6z5cuvX585INYTTR+RAMYQ5laIiEjnjUTn/FiN39DycN38hZM3z2R67LzvTkszVW/M97ELn/dJTY9mpw1+NDtt05d8q4kZklMIy9r0RuOAbs1FcvdHzGwFcGDeS2u7c9wcmXZeK7SG+gwgGf15V8I8TukEJZl9R1cnZEue9YnE9s8OGvjSzk3NRRWoeT27+UOfaj5n6jJG7lHu2CrIWJRkioh01Yi4A+ivzH3xGUuWvXLEqtUlKxKYz53sBpJvLmL0/PrsxPWPZqcNeDQ7bdMXfOLEDVRtQ98bKj224yZFqQIGFdGutVdyR+DVvNd2yGvTaWb2fuDnwF2Ea5lTzewud7+zq8csBTNrBBrdfXpfiENJZt8xPO4AKsnvRlfP/9OCxe0mmVln+c9bjnzhT5kZe/dUXBWkVCccEelHzOxoQvXHA9x9drzRxGpk3AH0R1Oamx+8dP6iHUZlsyVLMFs8Me9tqt9qyG699rHstOSj2WmbpH3yxPUMmkDlTIMa08n2n4mWH5kANAELgLnAMEIxn1yFqtf+kzCs9jQzu93dNwCY2TjgGGAO8FTePtsVE5iZDQeuBZYBXwLWAXsCV5jZzu6+qJjjtHP8mcAPCUukPN5B8z5NSWbfobuaJfTo4ME1Gcgk3x0K8R4LfPRjhzX9eMICxijB7BolmSK9nJlNB+6JfrzA3b9RoM1mwJuEoZv3xn0HvTvM7GRgubtf3pnXYqIkswcl3ef9dPGS+TPWrP1gV4+RcVu4lJFvvpwdv/oxn5p4NFsz5unsthPWMGQ8UOl1HIpNMlurz+9G+O55EBhKWOfyIMJyIt/L22ejJNPdXzSzXxGWMLnPzK7j3SVMhhPmUOYPjy0qySQslbItcIi7LwSI5mc+ANSZ2aHu7kUeq19Tktl3qCezhLJmm90+bOjjH1uzdvfc7e6s+n3msKfPbfnsvnHFViE6e1dTROKzHjjCzE5196a8175EmK9UCVUVTwYagcs7+VocdGO5J7j7rk1N91+4YPFuw9yLSgSzbkuWM3zuq77lyieyU3gkWzPqyeyUCSsYvjmweZkj7q2K/fdaGz0PAD4S/TlLKMBzE/DHYkcwuPvpZvYK8HVgFtAMPAIc4e73FxnPe5jZUcAXCVVr3xka6+6PmtnZwC+BU4Bzu3L8/kZJZt8xOO4AKs3Fo6o3fGzNu/PJl/qIpw9vPmeTOb6FEszuGxh3ACJStBuBLxCWBbg+77VjgNuAD/V0UP2cejLLbID7679ZuHjVvuvWF1yWxJ0VKxk653Uft+LJ7JTsI9ma6ieyU8a/zahN0WidfMXmE2OAJe7ebp0RM5sEvB79+D4ze6fn0N0tavM54OOEvwsjJJlrgBV5x2rdd/Pc4wCTo5ELl5vZ7mZ2I7BvdJzDzGwl8IvWZUvc/VdmNoOwfuY1hETzEMIc0vuBb7p7oUq4HTKzwcAZhO/hraMY5gL/cvfTOtj3I8BxwAcIBZiagEeBn7r7vXltZxOqVu9dTPxmtnXU7mDC7/hewg25oijJ7DtUZa7EGgdU7boyYStGZHzgFZkPP/bDlqP3BStUYUw6r+AwZBHplZ4kFNA4hpwk08z2iLZ/j7wks5wXNpGEmX0HOIFQXX1OdOy6vGN/DjgS2IXQi7SKMKztB+7+bE671ovLifkXmrx7MbvRa+7e2AOftRCNXioX95b91q1/8NeLFu85yJnszurVDJnzhm+27KnsdplHsjXDn8huv+VbbDIO2DnucPuIYvOJV4GpZvYpd/97O+0WE0ZRXEn4v/PHAm2+QegB/SNhTue2hOGyD5rZbu7+ctTuS8B5hAI+P817D6LE8e/AK4T/s0uBvYAfEb5X/jfvfYcB9xGWWzmL8B3yLeAfZrZTgWG6xbgAOBa4Avg14fc5hY0r7RZyNCF5v4IwtWE88GXg39Gao/m9ukXFb2ajonZbAxcBLwD7E4Y5DynmQynJ7Dt00V5qZoN/VzX+7teWnziiITF58/HwYtwhVYoMYRK+iPQZlwK/NrPx7j4v2nYssAi4pUD7oynDhU2OnxEuZC4mJHUnEHocXnH33MIgpbjQbPcitAc+ayG64VkGQ9f73NPqBzw5tmXLARcmDr3nicQOI15LbjUaSybJqeJvsGJ8Xo+YtC2DNxfZ9CfAh4G/mdnLhBtCjwGz3b2+tZG7rwGuMrMrgdfc/aoCxzokavcOM7sCeBr4NmEYLe5+lZn9BFiYf5yoB/ESwjDbA1t7LYGLzewZwnfi9LwhvJsAv3L3X+YcZzFhKO1BwB1F/i5yHQ7c7u61Hbbc2FcK/B4uIqzxeSYhSc9VbPzfJdwwO9bdL4u2/cHMzid8n3VISWbfob+rMni+mUln337B1NXDt359yZiaRctGTc2sHj5+VEvV0MmYabhS12m4bA/oa+XMpVe7inCRUQv8zMyGEBZE/7O7t9jGgzzKdWHTahCh+mJz1PavhCUJvsF7q092+0KTcDHb1ms98VkL6UpviHRg7WDb+onm5rlH3jN30sE+d8uDuQuATKKqKZsYtC6THLS+JTlofaZqUHNLckhTS9WQDZmqwS0tycEtLVVDsi1Vg7OZ5BBvSQ4mUzWITHKQZRKDEpnkgGQ2MaAqPKoGuCUHuiUGuSUGgQ0BhmBWyefFonq23P2haHmQU4GPEkZPHANgZvcDR7t7UUuPtP6ftPDlNIJw3bGY0GGwZ5Fxf5gwAuJMYFTe99xthF7FjwCzc7Zngd/mHec/0fMUupZkrgB2jG5CPdeZHXO/m6LKuIMI3x+PAP9TYJdi4z8MWEi4uZbrFyjJrDiqZFUG6cmJnTYkW14euWrO9iNXzdl+8px/AeDga4dsPmfZmKlvLR1d07RyxIThzQNHTsASm8Uccl9RdJEQM9uGMBdhP95bzvxR4HJ3vyen7UzgaXe/qTvB9aZKkv2pnLn0Xu6+xMz+Sei1+xnwKaCa0MNZqH25Lmxa/aE1wYzeb56ZvUTeYvQlutBsVw981kIqodBSr3TLnom979zN1p1wa3b23vW+h8HQZLZlUDLbMmhAy5qOD9BFjmUyyYHrMslB68NjcFNLcnBTS9XgDS1VQzZkQiKbaakanG1JDslmqgbTkhxEJjnYMsmBlk0OSmYSrcls1QC35ABPJAc6icFulpvMJsr2IdpW9E0Rd08Tvmcws4mEIZhfJsyH/IeZvT/3/35bzGxX4MfAdMLogVyvb7RDYTXRc8HvuUh+Mae33H193rYl0XNX5+qeTBganDaz1whDUm8Gbnb3bHs7mtm2hBEYBwOj8l4ulDsUG/82wGP5Iy/cfb6ZLW8vplZKMvsODdsok/+8z9766BP+ngsXAxu2buHEYfMWTtxq3n3vbF8/sHrRstFT5ywdU7Nm5cjJg9cPGr2lJ6oqZZ2rUirqAsnMdidMJN9AuFv2POGO6BTC3cNVvLvEAoRkrI5Qha47elslSZHe4DLgVjPbhzBU9lF3f6FQwzJe2LQq1JuxBJiYF0cpLjTb1QOftZD8Kr9SQs0DbMhvDktOv/oAn3/m9Zmntnqbva3MQ5QNT1ZlmoZXZZrKOt82r1d2XaZqcHNLcnBzmXtlu/Tv1d3nENafbJ17+UFgD8Iw2jaZ2QTCkPSVhP//LxKK/jhwPsXPaW79Oz+NMPqhkLfyfm4voe7SvyF3/0dU7OhQQtJ9EGEe+P1mdlBbSXd00+s+wnff+UCacN2UJfTOFprTWfL426Iks+9YGncAleqGfRPvO+SJzHorooLv4OYVm41b+Ohm4xY++s62DckhK5aP2u71pWNqViyv3i65bsimm2cTAyZj1p//fxV7F/6HhDWydnH3Z/JfNLMtShqViLTnDmAe4f/lAYR5kBvpoQubttq/07aEF5ptBxbfRdy6ToQpXfR2tY079StV41KvZ5879e9ZG9rMjnHH1F0x9MquyyYGLC+uRk0bx3N3M3uEkGQWs5TM4YT/35/IHe0EYGZj2TjpbWs0YOuc7TXufncnQi45d19KmLZwVTQyYxZhXuQngRva2O1DwJa8d94kANEUgO54DZhiZsnc3kwzG8fGN9sK6s8XwX3NsrgDqFSrh9ioNzfhwa3fpkuLMA/IrKvedEl6l02XpN/ZlklUrV85YtJLS8fULFk2antfM2zcmExy8DaYDS1Z4L3byiLbTSGUM98owQRw9wWwUTnzWjOrzWmTW868W1Um3b0xarM7cDZh+M4IQq/nFeSUM4/azaY0lSTfo1LLmUvv5u6ZaD7jmYQk55o2mpbzwqYzSnWh2d5rcX3W8mUIspH05MROR59ifthD/uDn7stum3R0g7MdBXpl17a7Q+t+Zh8G7sk9j0bbh/Duupm5oydWU3jd7dak5z03bczsK8AWhGrUudo6zh2E4mZnmNl1UaKXH1eVu69q80N1k5klgRHu/s4Q1Cjpfir6sb11x9v6PXyE7k8X+AfhOuQowiiXVqcXewAlmX2Hkswy+sv0xLDT/9rusPdOSWZbBo9e8coOo1e88s42xzKrh2356tIxNQuWjZ7asmr41iM2DBg+GbPRJXvj3mNxx00AlTNvS0WWM5c+4SLCTY3X3L2tm0XlvLDpjFJdaLb3WlyfdXUZjy2FmNlNe9sHb9/d1nzj5uzsPV7yPU3fbcUqdkrXecDYaP53mpCcbg0cAWwPXBHN2Wz1MHCQmZ0OvEHIv64Fbo/2vdLMfk+4Rv4gYbjpq2yc3zwMHGdmPwbqCSMRbnb3NWZ2FGEKzotmdinh3D8KmEaYm3447y38U2ojgPnR7+QpQtI7mTCSZBlhbmZbHiBc75wb3Yx/k3Cd8iXC7zfVjbh+Sfh7+VNUrOl5wrSEvQjXTx1Sktl3aLhsGT0xJbHLhmT29QEZJpfrPQxPjlgzb9sRa+ZtO3Huu6My1g0eO2/p6Gnzlo6pWbtyxMShTYOqt8aS48oVRw8p6gsIlTNvS0WWM5fez93fAGZ20KycFzadUbILzbZeI77PurBMx5UONA20Yed+Ojl9s+U+76zrMnO2XMreccfUBxSbZJ5CGP65D/BpQjK3AniWULX08rz2XyfcdD2bkIwBXOvur5rZRwlFys4i3Ax6kHDj8/eEc1Wuswk3kU6M3tMIidwad7/DzD5A6LX7IrAp4bvkVcJN3mcpr7WEofgfIpxzhwPzgX8CP3f3/Dmh73D35WZ2MOF8/U3Cd94ThO/A4+jG95O7LzOzfQm/g6OizfcSplL8u5hjKMnsO9STWWb37mRvHPSMly3JbMuQ9UvGj5//4Pjx89+tyt88YPiSZaO2b1w6pmbViuptBq4bPHacW9XEmKrGdUVRSabKmbepIsuZS2Uo54VNJ+Mo2YVmW6+5e2NMn3V+9Hm0RnZMFo2y8Sd/rWr8Lq9mn/32jdkBQza8U4lUNlZUkunudwJ3FnvQaATSR9p47T5CsppveoG2iwhJbVvv8xwhwewono2OHW1vpMj51u4+k5wbeVFRnzOL3HdSgW3PEqa65LufqIpvTtvpbRy3kQLxRzcdP1Ngl43iKMTctTJGX5GqS61m4+p5UiLVa/ztP/42M9J66RqPmcTANcurt31t6ZiaZctHTbG1QzffJJMYuG0vXHur6cSLDuywiFIhBcqZPwe8U848mkNZ5+5HF9i33SqT7r5NTttGCqzraGbfJSRN7bnU3Y+L2s8GtnX3rfOOM4kwh3Smu5/T3sEKLWFiZp8kDA0eQZh8X7CceaHP0VElTHdP5LQtOn4zW08oZ75vgc+wDHimrROYiHReqi7VOtxd4ubun3nAH/zMg9ntE46WMtvYqJqGeq2CIO+hnsy+ZQlKMstmxTDbZMFoHhq3jL3ijqWQZLZ52Nhl9amxy94ZRUrWEhtWDZ/w4tIxNYuXjZ6aWT1sy1EtVUO3wWxEO4cqt3ld3VHlzINKLWcuIp2iJLO3MLO/7mv73LKnrT7pH9nZ73/F97IwSkRggRJMKURJZt/yOmGxeimTa/dPDPz2TaUrAFRuCc8OqF7VOLV6VePUyXNuB8DB1w7donHp6Gnzl46Z1rRq+IThzQNHTMQSm/ZQWG929wAqZ16Z5cxFpFPepGcLKUkH1g+04b/83+T0LZb63LOuy8zbYnnBKQj9TX3HTaQ/UpLZtzxP6NWQMnlomu32zQRzq7Js3XHr3snAhq1dMGnY2gWTtp43+53t6weNWrBs1NS5S8fUrFkxcvLgpkGjx3siWY7PObfoWFXOfCOVXM5cRDql2zfspDwWjLGtTzqhauvdX8o+fdI/s0MGb2Bq3DHFSEmmFKQks295Pu4AKp6ZPVRjr+77vPfZJLMtg5uWbzFu4SNbjFv4yDvbNlQNWbG8esrrS8fUrFhevV3VuiGbbJZNDNiGkOh01csdN3mHyplvrGLLmYtIp+TfHJNe5vHtE7vUnmrZz92Xvf+wh3xawumpEUO9yQsdN5H+SElm36Ikswf8ZXpi2j7PZ1qsH/z/GNCyrnrTJc/usumSdyt0ZxJV61eOmPzi0jE1S5aN2t7XDNtibCY5eBtCL14x0h03eYfKmW+sYsuZi0indOa7VGLiZolr90/u+489feW3b8re+77Xfa/eWkCwTNSTKQWpumwfkqpLbULxi9xLN1xwQcsjm67UXJhWjmVWD9+qcenoaQuWjp7Wsnr4+JEbBgyfjFmhuXjbn3jRgZ3pzRQRkTyputRYNEqgzxn/ts8567rMgn50DbFlTUP9/LiDkN5HSWYfk6pLLQSVzy63/dPZx068JfuBuOPo7dYO2eTNZaOmvbl0TM36lSMmDm0eOHJTTyS3O/GiA/tO9SQRkV4qVZd6A/pujYD+7H/qs0+eeEt2xKAWpsQdSxktr2moHx13ENI7VfxwwAr0PEoyy+7+HW23429lftIZF3csvdnQdW9vNXTdA1uNn//OCiMP1TTUK8EUESmNp1CS2Sc9XJPY7dGpljlidva+jz3iOyZgbNwxlYGGykqbEh03kV5G8zJ7QDZhyce2txfjjqMPeqTjJiIiUqSnOm4ivVU2YcmrDkzud9zJyarnJtq9DhvijqnElGRKm5Rk9j1PxB1Af3HVgYkpHqqOSvEejTsAEZEKoiSzAqwZYtU/OiK5/3eOS765ZASPxR1PCT1XTCMzG2lm3zezJ81slZmtNbMXzOyXZqbReRVKSWbfc1fcAfQXi0bZ+GXDeTLuOPoY9WSKiJROJSUk/d7czWzyCd+o+sBvPpF4vDnJq3HHUwKzO2pgZtsDzwDnAK8RKrefTFhK7GTgeTPrL0WS+hUV/umDUnWp54Ed4o6jP/jwk9lHvnJHVl9+xXm7pqG+P64RJiJSNjrnV6ZE1luO+nf2wY8+7u+zsJRWX/M2sFlNQ32biYSZDSX0xk8GDnf3W/Ne3x24G2gCUu6+qIzxSg9TT2bfpN7MHvLvXez9WUNfesW5L+4AREQq0L/iDkBKL5uwqss/nNz/uG8lvX4r7nVoiTumTvpPewlm5Dhge+D8/AQTwN0fJ6xtvRlwWut2MzvazNzMpufvY2azzayxwPbdzexGM3vbzJrM7EUzO9vMNipyamZTzOxKM5tvZs1m1mhmvzKzYXntLo/iqDazC81skZmtN7MH83tfzSxhZieb2bPRkOCVUQyXmNmADn5PFUlJZt90Z9wB9BfZhFU9tY29EHccfcTf4w5ARKQC3RF3AFI+q4fa6B9+qWr/049Jzlk2jMfjjqcT7i6izWei5z+20+ZyQkGkT3c1EDObATxISGjPBU4CHgJ+BFyT1/b9wOPAfsDFwInALdE+d7WREN4BbBUd7+fATsCtZjYip83ZwHlAI3A6IWm+EdgLGNTVz9aXaQmTvuleoBkYGHcg/cGVH0pM3u3VjBtY3LH0Ys3AzXEHISJSge4D1gFD4g5EyqdxC9v2aydVsX86+9hXb89uMiDD5Lhj6kAxo+p2Ala5+yttNXD3tWbWAKTMbLi7r+5MEGY2GLiEUBPiQHdv7RG+2MyeAX5tZtPdfXa0/VJgPvABd1+Vc5x/E26WH0lIfHM96e5fz2n7AnA9cAQhUQU4HKh390/k7XtGZz5PJVFPZh+Urk2vAf4bdxz9xVtjbeLKoTwddxy93F01DfUr4w5CRKTSpGvT69F0hH7j3lTiA0edmtzqjl3tXocVccfThnRNQ31jEe1GUtxnaL1+GNFuq8I+DGwOXAaMMrNNWh/AbVGbjwCYWQrYGfgLMCiv7QPAmta2ec7L+/k/0fOUnG0rgPFmtk8XPkNF6rNJZnvjtfsJDZntQTftlVgXdwy93F/jDkBEpIJpyGw/kknagEsOSe7/lZOSLS9tyX0OmbhjynNTke1WEhLNjowkLBn3dhdiqYmeLwUW5z0aotc2z2t7ToG2i4BhOW1zvZb7g7svif44NmfzWcB64H4zm2dmV5vZEWbWb0cdFpVkmtn0KKFzM/t9G202iybPupnNLmmUPSyauHt0Z1/rYbd13ERK5Y7d7P1ZWBp3HL3UBuAfcQchIlLB/hl3ANLzVg6zsd+rrdrvrKOTr60Y2qvWTC32nP8cMNLMtmurQVSBdhowx903RJvbKyiUP9WvdSrTaYRezUKPc/PanttO2+/mv6G7t5XkW06bh4BtCfNQbwR2Aa4GnjazMe18norV2Z7M9cARZlZoAuuXCL/svlYdq5CTgaO78FqPSdemnwFUkKaHtFTZoOcnWjruOHqpe2oa6pfFHYSISKVK16ZfBR6NOw6Jx6vjbMpXvlW168WHJB5pSTAn5nDerGmof6LItq2jnL7cTpujgAHAVTnbWm/qF0rO8ueqvhw9r3H3u9t4vJDXNtNO22I/20bcfbW7/83dv+HuOxKKCtUQquz2O51NMm8ERgOfLPDaMYTetabuBiVFuzLuAPqTuoMSW8cdQy/1t7gDEBHpB/4SdwASr3/vmtjzqO8kx/37fTbb353H2NM6U0n+EuAl4BQzOyT/RTPbjVCtdT5wQc5LL0XPB+W1/wKwZd5h7iAMdT2jUI+hmQ3JqQL7FKF39Xgz26ZA26qu9jpG8zrzPRk9qyezCE8CzxISyneY2R7AjoRJt+S99hEzu87MXjOzdWa23MzuNLP9C7SdHa1Vs6WZXWNmy8xsrZndYWbbt/UZzOw7ZvZqtC7OS2ZWW+DYnzOzf5rZG1G7t83sJjPbOa+dAxOBMyXtBQAAIABJREFU/XOGCLuZTWrvtR76rPmupv0hBVJCb2xm26wezLNxx9HLZAg3n0REpLyupTJGi0k3tCRt4MWHJqd/7ZvJple34H4Pcxl70kXFNnT3tcAngHmEJT+uN7Ovm9lXzezPhGVGmoBPuPvCnP1eJCyR8rVofcqvmdmFhAI8r+S9xxpCb+hmwItm9gsz+4qZnWZmlwBvAe+P2jph5GUGeNbMfhsd+9tmdgEwN4q3K+rN7GYz+56ZHWtmZwPXEarvX9vFY/ZpFn7fHTQKxXXuIYx33gD8Gpjg7vOi1y8ilO4dDywHHnf36dFrfwE2Jaxf82bU5svAOOAAd78/531mE5LVFcDD0T6TgW8RJt3u1DouOpoXeRmhZPEQQsLVBJwATAX2cfcHc459P7CEsDbOAsK46a8SlgHZzd1fjtp9kfCP+G3gpzm/hhujz1jwNXdfU67P2p5UXerfwIEdtZPSOPzB7ANfuC+rymHvml3TUH9A3EGIiPQHqbrUP4GPxx2H9B7bv+kNp9+QaRqxnvf1wNv9u6ah/qCOm72XmY0kXN9+ilCRdVj00vOE6/XlBfbZAvgdcDChU+x+4BTgQmCSu0/Ka78TYbmQAwjX4suAV4HbgQvcfWlO24nAmcAhhJ7RVYT1Le8E/uDuc6N2lwO17r7REnZRx1Odux8d/XwGcChhfmk1oXf1YeDn7v5k/v79QVeSzMsIdwXOcfefmdkQQjf3n939O2a2mvcmmcOiuwy5x9uc8A/rUXc/NGf7bGB/4HR3/2XO9tOAXwKHuPsd0bajo1ieBvZ09+Zo+3hCkvZ3d/9CzjEKxVET7X9J3vo3jUBj62fI26e918ryWduTqkt9nryFZqV8Bm7wdVf+X6bZwheIwPE1DfUXd9xMRES6K1WXOgyNHpECDn48+1Dtv7NbV2XZqoxvc3hNQ32xlWXbZGZVwA3AYcAp7p6/RIhUgE4vYRKV7f0n7xa/+RThgvvSNtq/k3SZ2XAzG0vopn4E2LPALlngt3nbCq1H0+oPrQlm9H7zCGO539O2NQ4LRkZjpxcDL7YRR6f1wGct5O+EzyE9oHmADXlxK56JO45eYjFwRdxBiIj0I7cCCztsJf3OHbsn9qo9NbnJvTvZvQ6ry/AWc4CbS3Egd28BPkeo5fJrMzuhFMeV3qWr62ReBkyxsODosYReuoKVTs1sWzO71syWEbqj3yZcnB5KKCKU7y13X5+3rdB6NK1eK7BtSX5bM9vVzG6JYljBu+vipNqIo9N64LNuJF2bbgYu71rE0hVXHJgstIZSf/SbmoZ6rR8qItJD0rXpDYQhhCIb2VBlgy/4eHL/E05MrmncjAe8tHU7LqxpqC/Zep3u3uzuM9zd3P3CUh1Xeo/8tWaKdQdhEu8PCWOfC96BMLPhwH2EsdfnA2lC8pUljIUuNJewvX/AG42Jbqf9O23NbEIUx0rgx4TeyzWE/3znA8Pbec+i9NBnbctFhHHqyU7sI130ynibum4gLwxpZoe4Y4nRKt5bCU5ERHrGHwhzz7p97SKVaelI2/y7x1VtXvOGv3DaXzMtw5vYueO92rUe+HMpYpP+o0s9mVFBmisIpYXX0/acwA8RJtR+291nRmvH3Onud/PupN+ecDjhy/iL7v4Ld7/J3e+K4ijUY9jenZ+2Xovts6Zr068RCh9JD7l9d1vScauKdmFNQ/1GE/VFRKS80rXpZcCf4o5Der/6CbbDsadU7Vz3ocR/M8Zb3TjUNTUN9f39ukc6qavDZSH0np0DHO/uba3V09pT955eOTP7CCWaB1mktuL4CrBFgfaraXtNm7Zei/uz/pj2e0alhG7aK7FrmeY89AVNhCrLIiISj/MI1f5FOnTrHom9a09Njn6wxmY7rO3CITREWzqty0mmu78R9di1V/jjAcJyIeea2Y+idXH+QFi8Pd3V9+6C2wn/qa40szPN7HgzuxKYRShvnO9hYCcz+7GZHWFmnzezYR28FutnTdemX0G9mT1m/UAb/uo4noo7jphcXtNQvyDuIERE+qt0bXou/XTtPema5gE25DeHJaef+PXkirmb8N9OzNd8qKahvr9e70g3dKcns0PRujcHE6qrfhM4F9iBUAinx9aMcfdXgY8CrwNnEZLLMYQlRN4ssMvZhBLhJwJXEYYDb9rea73ks6o3swdddUCyqOJMFSZDWGJHRETi9UtKW9hF+oG3q23cqV+p2vvHX0i8sHYgzxexy0/KHpRUpKLWyZS+I1WXqgOOijuO/uLKX7W8OKiFqXHH0YOuqWmoPyLuIEREBFJ1qWuAz8cdh/RR7v7Jh/2/n783u03SGVegxX9qGuo/1ONxSUUoa0+mxEK9mT3orl2tv61XNivuAERE5B1nEAowinSemf1jr8QHjz4lOfKR7W22Q+6yZA58N67QpO9TkllhNDezZ/3tg4n35X0pV7Ibahrqn407CBERCdK16TmoEJt0U9NAG3bup5PTv3lCculbY/hvtPnamob6J2INTPo0JZmV6WzCOoZSZmuGWPUbm/bc/OIYLQdOijsIERHZyM+B/jaqRspg0Sgbf/LXqvb++f8mHt+Q5My445G+TUlmBUrXpt8Evhd3HP3FVQckRsQdQw84XRVlRUR6n3RtehXwg7jjkMrx1HaJf+38fP2cuOOQvk1JZuX6PfBY3EH0B89sm9i5OVlwKZxKcR9a+FtEpDe7hJ5dGk4q1xvAz+IOQvo+JZkVKl2bzgJfBVrijqU/uGdnK7QUTiVoAr5W01CvMtQiIr1UujadAY4HsnHHIn3et9O16f5Sa0LKSElmBUvXpp8Gzo87jv7g+v0SKQ8JWaX5WU1DfUPcQYiISPvSten/EtboFumqa9K16b/HHYRUBiWZle+HQGPcQVS6VUNtzFtjqLQqbC+gJUtERPqS7xO+u0U6ax5wYtxBSOVQklnh0rXptcAJccfRH1wzPTEk7hhKyIGv1jTUN8cdiIiIFCddm24CatFUGem8Y9O16WVxByGVQ0lmP5CuTf8L+GPccVS6R7e3XVoSVEo1totqGuofjDsIERHpnHRt+nE0CkU658J0bfrOuIOQyqIks/84CXg87iAqmpndv6O9HncYJfAacEbcQYiISJf9CHg67iCkT3gF+E7cQUjlUZLZT0RDaD4NLIk7lkp2zfTEjg4b4o6jG9YCh9c01K+MOxAREemadG16A/BZYEXcsUiv1gQcEU2tEikpJZn9SLo2/QZwBCpxXjbLh9umi0b16QJAx9U01D8bdxAiItI96dr0y8DRhDn2IoV8NV2b1prqUhZKMvuZaMz9zLjjqGTX7ZeoijuGLjq3pqH+2vYamNlIM/u+mT1pZqvMbK2ZvWBmvzSzzXoqUBER6Vi6Nn0T8PO445Be6bx0bfqKuIOQyqUks3/6CXBr3EFUqgd3sN0yCd6MO45O+jdwensNzGx74BngHN6dt3ky8HD0/LyZ7VnmOEVEpHO+D9wcdxDSq9wFnBZ3EFLZzF2jKPqjVF1qNKEQ0DZxx1KJvnVTZvYH63163HEUqR7Yu6ahfnlbDcxsKPAUMBk43N1vzXt9d+BuwvyOlLsvKmO8IiLSCam61Ajgv8BOcccisXsV+ICWK5FyU09mPxV9uRwCLI47lkp09QGJqQ6ZuOMowkLg0PYSzMhxwPbA+fkJJoC7Pw6cBWxGzt1RMzvazNzMpufvY2azzayxwPbdzexGM3vbzJrM7EUzO9vMNhqGbGZTzOxKM5tvZs1m1mhmvzKzYXntLo/iqDazC81skZmtN7MH83tfzSxhZieb2bPRkOCVUQyXmNmADn5PIiK9Tro2vQr4ODAv7lgkViuATyjBlJ6gJLMfi4oCHAKsijuWSvN2tY1bMqLXFwBaC3y8pqG+sYi2n4me21tv9XJCZd1PdzUgM5sBPEhIaM8lLL3zEKEc/zV5bd9P6I3fD7gYOBG4JdrnrjYSwjuAraLj/ZxwV/9WMxuR0+Zs4DygkTCE+DTgRmAvYFBXP5uISJzStelG4MPo5nJ/tQY4NF2bfiHuQKR/0HBZIVWXOgC4HV1Al9QBz2QfPeG27B5xx9GGDPCZmob6m4ppbGZLgAHuPrKDds8CKWCEu682s6OBy4AD3H12XtvZwCR3nxT9PJiQ2L0EHOjuLTltvw38Ovc4ZvYM4d/sB9x9VU7bw4G/A8e4++XRtsuBWuBCd/96Ttv/Ba4Hjnf3i6NtTwKD3X2HYn43IiJ9SaoutStwD1AddyzSY9YDM9K16f/EHYj0H+rJFNK16XsIPVXNccdSSe5N2fszxoK44yigiU4kmJGRFLfeWuv6miPabVXYh4HNCUnpKDPbpPUB3Ba1+QiAmaWAnYG/AIPy2j5AuGP7kQLvcV7ez60n3Ck521YA481sny58BhGRXi1dm34KOJTwPSmVbwPwGSWY0tOUZAoA6dr0LcDnCF9GUgLZhCWf3M4a4o4jz2pgRicTTAjJY7u9mJGRhHVY3+5sYEBN9HwpYThX7qP197h5XttzCrRdBAzLaZvrtdwf3H1J9MexOZvPItz1vd/M5pnZ1WZ2hJkN7MJnEhHpddK16f8ChxFuOkrlygBHpGvTWlFAelxfXc9PyiBdm74pVZf6AnAt+rdRElcemNh295czbmBxxwIsIxT5ebgL+z4H7Gdm27n7K4UaRBVopwFz3L31ZkV74/Hz/421/o5OA55uY5+38tqeC/yrjbYbFTZw97aKMVlOm4fMbFvgYOCA6HEE8D0z28fdl7ZxDBGRPiNdm747VZf6NHADMCTueKTkMsAx6dr0X+MORPon9WTKe6Rr038DPkno8ZJuWjDGtl4xjCfjjgNYAOzfxQQToPUk9eV22hwFDACuytnWmpCNKdB+ct7PL0fPa9z97jYeL+S1zbTTtsuFl9x9tbv/zd2/4e47EooK1RCq7IqIVISoh+sg3v2ulsqwHvjfdG36yrgDkf5LSaZsJF2bvg3Yl3d7jaQb/r53Iu4hyHOAfWsa6tPdOMYlhII8p5jZIfkvmtluhGqt84ELcl56KXo+KK/9F4At8w5zB2Go6xlmtlFSamZDcqrAPkXoXT3ezDZa69XMqgodoxjRvM58rTcKunRMEZHeKho6uw8wN+5YpCRWAIeka9M3xh2I9G+qLittStWltgJuJRRYkS5KZnzD1b/KLE84m8bw9vXAh2sa6ru9NpqZTSUMTZ0A/A2YDbQAewBfIgxP/Vi0ZmbufncBBxKWP3ka2AU4nLB0zoDW6rJR24OBmwg96ZcCrwCjCMNwPwUcnlNddhdC4Z6BUdvngaHAdlHbM/Ory7r7RsOWzcyBOnc/Ovp5MfAw8AjhRss44KvAFsAe7v5MJ391IiK9XqouNZ7wHb9T3LFIl80lVJHtzk1lkZJQkintStWlRgDXAR+NO5a+7KxrM7N3ed2n9/DbPgEcUtNQ35UiPAWZ2UjgW4QkbgqhwA6EBG8fd19eYJ8tgN8R5jgmgPuBU4ALyVnCJKf9TsAZhLmQmxKS11cJy+xckDsn0swmAmcS1nvdkpC4NgJ3An9w97lRu8spPsk8g1B5cRqhxP8iQtL5c3fvDUOfRUTKIlWXGgX8kzCaSfqWp4CPpWvTGoUmvYKSTOlQqi6VBH4PHB93LH3VVov99V//OZM/B7GcrgJOqGmoL+vcWjOrIhSNOAw4xd3zlwgREZE+JFWXGkhYl/jEuGORot0AHJuuTauehvQaSjKlaKm61LeBXxCKu0gnXXJ+y9Mj1rFLmd9mFfD1mob6qzpsWSLR0h43Enr/vu7uF/bUe4uISHmk6lKfA/4MDI87FmlTE3BqujZ9QYctRXqYkkzplFRdandCL9nUuGPpaz7xcPbBL96T/WAZ3+Ix4As1DfWvlvE9RESkn0jVpaYSqotrnmbv8xrw2XRtusuV1EXKSdVlpVPStenHgd2Ai+KOpa+5fXd7v8NGcxZLwIFfAh9UgikiIqWSrk2/COwJXBF3LPIefwN2U4IpvZl6MqXLUnWpGYSqnpvFHUtf8cOrWu7dcS77l/CQC4Cjahrq7yrhMUVERN4jVZc6EvgtWsopTmuA0zU8VvoC9WRKl0WLOKeAm+OOpa+48kPJ/LUhu+M2YGclmCIiUm7p2vTVwI7AP+KOpZ+6DdhRCab0FerJlJJI1aWOA2YBhRaylxyX/bolPayJVDcOsQT4AXBhTUO9/gOLiEiPStWl/hf4DWEdYSmvhcC30rXp6+IORKQz1JMpJZGuTV8CbAf8H9Acczi92q0fSKzo4q7rCYn8tjUN9X9QgikiInFI16ZvIKwlfAGQjTmcSuXAn4BpSjClL1JPppRcqi61DaEQzafjjqU3GrjB1175f5kWg5FF7pIlVPT9Xk1D/dwyhiYiItIpqbrUTsDPgI/HHUsFeYAw9/K/cQci0lVKMqVsUnWpfQkLOu8edyy9zU/qWu7b/i32K6LpXcB3axrqny53TCIiIl2VqkvtQxhtU86luirdU8DZ6dr07XEHItJdSjKlrFJ1KQO+CMwEtok3mt5j6lyv//FVmZp2mjxLSC7v6KmYREREuitVl/oYoWezO7UH+psGQq2Fv6Zr07owl4qgJFN6RKoulSQMn/0u8P6Yw+kVrvi/lvrBG8hPNF8Cfg5cUdNQr3kuIiLS56TqUgnCOf9bqGezPS8Qallcka5NZ+IORqSUlGRKj0vVpQ4knHg+Rj8uPnXkPZn7P/mw7wtkgFsIBRTuVkEfERGpFKm61O7AScDngIExh9MbOHAncF66Nq3RSlKxlGRKbFJ1qUnACcBxwNh4o+l5Q9f7K5eel7k+AX+saaifE3c8IiIi5ZKqS20BHB89No85nDgsBS4DLk7Xpl+OOxiRclOSKbFL1aUGAwcDnyFUp6uON6Kyaib0Wl4O3J6uTbfEG46IiEjPSdWlBgAHEXo2D6Oyz/lrgVuBG4Cb07Xp9THHI9JjlGRKr5KqSw0EPkyYy/FJYEy8EZXEMkKV2NsJJ5klMccjIiISu+icfzAh4fwEMCLeiEpiDe8mlrela9NrY45HJBZKMqXXStWlqoADCQnngcB28UZUNAeeJCSVtwOPaEK/iIhI26JRTQcRbjQfBOwQb0RFc6AeuBe4G/iXEksRJZnSh6TqUpsA/wPsFT3vAQyPNahgLfA8YdmR+4A70rXphfGGJCIi0nel6lLjgP2AfYB9gZ2AZKxBBVnePd/fC9yfrk0vjjckkd5HSab0WdGyKDsSks73AROBCdFzOYbcONBIOLnkPl5J16a13IiIiEiZpOpSg4CphPN+62MHYFvKk3xmgFcJvZT1hLUs64H6dG16VRneT6SiKMmUipSqS43i3YRzArA1oddzKDAkelRFzS16rAfeBha38bwoXZte13OfQkRERNoTJZ9bApsBmxZ4HkQ4x8O75/vWn9cQ6iYsB5YAC4EF0eP1dG26uWc+hUjlUZIpIiIiIiIiJZOIOwARERERERGpHEoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMkoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMkoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMkoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTOnXzGy6mb3ZQ+91pJnd2RPvJSIi0h90dB43s8vN7CfRn/c1sxd7Lrru6WvxiuRSkiklZ2aNZrbIzIblbPuymc224D4z+2HePkeZ2atmNtTMRprZ+Wb2hpmtjrafb2abdDGeHc3sTjNbambLzewJMzu0u5+zg/ecZGZuZlWt29z9anf/SDnfV0REpBi98Fw928zWR8d628z+bmbjuvs5c7n7/e4+tQuxzTSzqwpsdzPbrjTRbayr8Yr0BkoypVySwLfyN7q7A18Gvm1mOwKY2abAudH2FuDfwI7AIcBIYC9gCbBHF2O5GbgL2ALYDDgJWNnFY4mIiFSK3nSuBviGuw8HtgdGAed141giEiMlmVIuvwK+Y2aj8l9w95eAnwKXmFkC+C3wN3e/BzgKmAAc7u4vuHvW3Re5+4/d/bbOBhHdUZ0M/Mndm6PHg+7+QF67U6M7uvPN7Jic7dVmdoWZLTazOWb2vShmzCwR/Twn2vcKM6uOdr0vel4e3ZXdy8yONrMHco7tZna8mb0c9bBeYGYWvZY0s3Oju7mvm9k38ntGRUREuqlXnKsLvPdS4G/ATrBxj2HuENicbWdF58xGMzuy0HHzh9aa2dZRj+liM1tiZr/vasxmNijqyX0repxvZoOi195z/s//TGZ2qJm9YGarzGyemX2njXgbzew7Zvasma0ws+vMbHDO69+NrmPeinqly9rTKtIeJZlSLo8Ds4HvtPH6rwED/gp8EDgt2n4Q8C93X12iOJYArwBXmdlhZrZ5gTZbANXAeOA44AIzGx299rvotW2A/Qkn1tYk9OjocUD0+nCg9QS1X/Q8yt2Hu/tDbcT3MeADwM7AZ4GDo+1fAT4K7ALsBhxW9CcWEREpTm85V79HdIP408BTRe6yBbAJ4TxeC/zRzNodZmpmSeAWYA4wKdr32i6GDHA28D+E8/b7CD263yty30uAr7n7CEJi/Z922n6W0Hs8mXDtcDSAmR0CnEL4u9kOmN7ZDyBSSkoypZx+AHwzGmLzHu6eAY4FDge+6e6ropfGAvNLFUA05OcAoJEwzGd+NM9kSk6zDcCP3H1DdAd2NTA1OgF9HjjT3Ve5e+sxvhTtdyTwa3d/LTrRngl8vpO9jbPcfbm7vwHcQzg5QTiJ/Mbd33T3ZcCszn96ERGRDsV+rs7xWzNbDjwTHf+UTuz7fXdvcvd7gVsJ59H27AFsCZzm7mvcfX3+KKc8n41GHb3zyHv9SMK1xCJ3Xwycw7vXCx3ZAOxgZiPdfZm7P9lO29+6+1tRb+/NvPe64TJ3f97d1wIzi3xvkbJQkill4+7PEe4SntHG689Hf3w+Z/MSoOiJ/tHwmNXR46I23udNd/+Gu28LTATWAFfkvqe7t+T8vJbQK7kJMIBwl7PVHMLdTggnp/zXqoBCvaVtWVDgfVuPPTfntdw/i4iIlERvOVdHTnL3Ue4+3t2PjJK1Yixz9zU5P88hnEfbszUwJ+/8357ro9jeeeS9XuiaoKMYWn0aOBSYY2b3mtle7bTVdYP0CUoypdx+SBj6Ob6jhpG7gYMtp9pde9z9Z9Fw1OHufnwR7ecCFxDN8+jA24S7ixNztk0A5kV/fqvAay3AQsCLOH575gNb5fy8dTePJyIi0pZeda4uYC0wNOfnLfJeH50XywTCObo9c4EJJax1UOiaoDWGNeTEb2bvid/dH3P3TxKKE94EXN+F99d1g/QqSjKlrNz9FeA6QkXXYlxJ+OL/m5lNi4rrjI3ugnZ62REzG21m55jZdtGxNiEM/Xm4iNgzhC/6n5rZCDObSBi601rG/BpC5b3JZjYc+BlwXXRXdDGQJczV7IrrgW+Z2fioIMPpXTyOiIhIu+I+VxfhaeCIqCjeIYQaCfnOMbOBZrYvod7BDR0c81FCYjbLzIaZ2WAz+2A3YrwG+J6ZbRpda/yAd68XngF2NLNdokI9M1t3imI+0syq3X0Dofp9tgvvfz1wjJnVmNlQ4Pvd+Cwi3aYkU3rCj4Bi73Y2ESatNxCWHVlJOBFsAjzShfduJkzovzs61nNAE9FE+SJ8k3AH8jXgAeAvwKXRa5cSTrT3Aa8D66P2RPMhfgo8GM3d+J9Oxv0n4E7gWULhg9sIvaSZTh5HRESkGHGeqzvyLeDjwHLC3Meb8l5fACwj9BxeDRzv7g3tHTC6kfxxQpGcN4A3gc91I8afEAopPQukgSejba2Ven9EuBZ5mXA9ketLQKOZrQSOJ3zGTnH32wkVgO8hFDxsvZne1NljiZSChbooItKbmdlHgYvcfWKHjUVERKRfM7Mawo31QZ2YdypSMurJFOmFzGxItG5WlZmNJ8yXuTHuuERERKR3MrPDo/U6RwO/AG5WgilxUZIp0jsZofz5MsJw2XrC/A4RERGRQr4GLAJeJUyvOSHecKQ/03BZERERERERKRn1ZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMkoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMkoyRUREREREpGSUZIqIiIiIiEjJKMkUERERERGRklGSKSIiIiIiIiWjJFNERERERERKRkmmiIiIiIiIlIySTBERERERESkZJZkiIiIiIiJSMlVxByBSLpPOuHUsMAYYAQyPngv9uQVYUeCxMvfPjbNmeA9/BBERESnGzOoBwARgPOH8PgwYmvc8GGgC1gJrch5rgdXAQmAuM1es7unwRSqNueu6WfqwmdWDgR2AnXZYf+l2axk8DdgO2BYYWcJ3WgPUA8/nPd5Q8ikiItIDZlYngRSwC7ANMAmYHD1vSelG6C3/zoav3f3XzP4J4GXgFcI5/8nGWTOaSvQeIhVNSab0LTOrJwD7Ro99gBqik8rHm37yctq3mdLDEa0GXiCcfJ4C/tM4a8bzPRyDiIhI5ZlZvS3wAWCP6LEroVey7D7Z9OOXn/Ft868pmoGO9eNBAAAgAElEQVSngYeBh4CHG2fNaOyJeET6GiWZ0rvNrN4C+BgwnZBYTmir6Q831D5clzn4f3oosvbMB/4D3A38q3HWjAUxxyMiItL7zayuBg4GPh49bxpXKDuuv2TVGoaMKKLpAkLC+S/gH42zZiwsb2QifYOSTOl9ZlZPBj4FHA7sRZHDX/6Z2Wv2SRu+Ob2MkXWFA48DNwM3N86a8XTM8YiIiPQeobfy49FjX2BAvAFB1lm2TdNfRndlV+C/wI3AjY2zZrxe2shE+g4lmdI7zKzeGqgFPgO8ryuHeCW75X8Pav6/vUsaV+m9AvwRuLxx1ozFcQcjIiLS42ZWb0I45x8D7BhzNBtZ44Madmy6bFoJDvU0IeG8pnHWjJdLcDyRPkNJpsRnZnUC+ChwfPSc7M7h1vqgF3doumxqKULrAc3A34GLG2fNmB1zLCIiIuU1s9qADwNfBj4JDIw3oLbNyW728P7N55dy+o0TptD8HrilcdaMbAmPLdIrKcmUnhfmWX45ekws1WHdWTu56eohYFaqY/aQFwm9m3WNs2Ys6ck3NrPpwD15m5uAt4B7gV+6e31PxiQiIhUknPO/AhxLqALb692XSd171IYz9y/T4RuBi4BLGmfNeLtM7yESOyWZ0nNmVk8CziIMkSnLHcz9m3795hzfYqtyHLsHNAE3AD9vnDXjhZ54w5wk8xrgtmjzEGBnwk2ADUDK3ef0RDwiIlIhZlaPB04nJJiDY46mU/7ccuh9P2n54n5lfpv1wPXAearXIJWoKu4ApB+YWb0NcDbwJco8oX9Xe2VBH04yBwFfBL4w6YxbrwR+2Dhrxhs99N5PuvtVuRvM7GXgN4QiTOe1taOZjXD3VWWOT0RE+oKw1NgZhJ7LQTFH0yUvZCcM6YG3GQwcBXxp0hm33gB8T/M2pZKUatFakY3NrN6WmdWXEYaDHksPVIx7f+KlNeV+jx6QBI4GXpp0xq3nTjrj1rExxfFW9NwMYGaTzMzNbKaZfc7MnjCzdcDvWncwsy+b2ZNmts7MVpjZnWa2T/6Bo+NcbmZ7mdm9ZrbGzJaY2Z/NbHhOu62i7c+Z2ZC8Y1xtZlkzO6g8H19ERIo2s3oSM6v/SChwdwJ9NMEEaPAJY3rw7Qz4LPDCpDNuvXjSGbdu2YPvLVI2Gi4rpTezejjwfeBkenhi/zPZbe7/f/buPD7Oulr8+OdMkiZt0k66pGm6TmkLBCiFlp0CBURREBWuV+Gisigqy72olx8REQc3FkW9KosUZVdcABUCgggFipStCAWS7gvd10z3JZnz++M7wel0kswkM/nOct6v17wKz3yf5zlJ0zxznuf7PecTu79/Qm+esxdsBn6Em1KT0SQ6brrsd4DbYpv7AocAPwMG4abLrhaRELAYeAvXr/R23NqSzar6exG5Cfh/wKvAQ0B/4BKgFviEqrZPx0VENHacUcDdwHxcL9TPAtNV9ZK4sWcBfwHuVNUvx7ZdBPwauFFVv5nBb4kxxph0hIP9gWvxcM3Plvqdd2/fQXk/T6ffgSsQdMOSG8/Y5CkGY3rMkkyTWeHgebiEyMuduBatfPuwXdMP9XHuXrAa+D6uIm1rJg7YQeGfdu8B56hqc2xsCJdktgKHxhcEEpEDgCZcf7BTVLX96efw2HFagHGq2hbbrrhqe8eq6itxx2kEPgwMVNWtcdt/DlwBfBp4B3gDeBs4QVUz8r0wxhiTpnDw88BNwDDfoWRKVGXdfrserPEdBxDB3QD+hVWjNfnIpsuazAgHJxIOPg88iKcEE2AA20f4OncvGIa7u/lyqKGxPsPHvhNXWv40XEPsq4EhwBMiklgBuDFJxdlP4Kb83NyeYAKo6krck8oxwOEJ+7wcn2DGPItbKx5K2H4V8CYwHfgTriDRuZZgGmOMB+Fgfeyafy8FlGACbKNire8YYoK4GUUzs3DNNybrLMk0PRMOlhEO/hCXAGS7EluXAqKDBxHp1TYgHhwBzA41NH4j1NCYqX/D81X1mdjrcVW9GTgLGIu7Sx1vXpL9x8b+fDfJe+3b9kvYvijJ2Pa/u73WoarqLuBc3BTcg4FLVXVJsi/EGGNMlrhr/veAf5ED1/xsWKfBzb5jSHAs8GaoofHaUEOjFew0ecOSTNN94WA9MAv4Jq5YTU6YFFi0wncMvaAC+DHwXKihMTF5y4jYU8YIcErCW9szdIq2Tt5L1uv0DP79c5b4VNQYY0w2hYMTgJdx6y8LYu1lMkt02C7fMSRRDnwPeD3U0DjZdzDGpMKSTJO+cFAIB6/ArYvLuV92UwLzIr5j6EUnAm+FGhq/nKXjl+KeHnal/ankwUneOyhhTNpEZApwA/B3XE/Pb4jIh7t7PGOMMWkIBy8EZgNTfIeSbXN1VM7cNE9iEvBKqKHxB6GGxqzEKSLTYhXg4187RWSRiNwtIjZ116TEkkyTnnCwDvgb8HNcFdKcc7gsKLYF8lXAHaGGxiczWfpcRE4DKnE3E7ryV1whn6tE5INWNSJSB1wILMVNqe5OHFW4arWbcL1Wv4IrQHSfiAztzjGNMcakIBwMEg4+BPwGd60peO9Fx+TkZ5s4pcA1wN9DDY3ZLFD0O9w193O4wnuNuArwrySp1WDMPizJNKkLB4/F3cnM6SdI4wMrKn3H4MnpwJxQQ2Pi9NZUTBaR82Ovi0XkJ8CjuAI713a1s6rOxVUVngq8ICJXisi3ce1MqnBrKDubHtuZ24FxwOdVdY2qbsatzxwE3CsiyabWGmOM6Ylw8Dhcq6nP+A6lN83Tkb56U6frZFx9hqOydPzZqvpA7DVdVa/AFQXsD5zd2Y4iksoMKFPgLMk0qQkHL8C1usj5KnKD2JLzMWbRIOCpUEPj5Wnudy5wf+x1J3A+8DRwvKrOSOUAqno1ri9mBXAjriJsM66lyROd7dsREfl8LJYfqerTced6FfgWLrH+eneObYwxpgPumj8DVxm8aKiii7XOW4X8bhgJvBBqaLyky5GZsTL2Z3ubslBsOm1YRD4jIm+IyA7gF+07iMgXRWS2iOwQkYiIPC0iUxMPHDvOPSJyrIg8LyLbRGSDiNwVm9HUPm5kbPs7ItI34RgPikhURD6UnS/fpMP6ZJrOhYMluAIzV/oOJVWq6EG77t7hsZFyrrgTuHzJjWfs8R2IMcaYPBAOCq7AzLd8h+JDm8qacbserPUdRzf9GrhsyY1n9KhwUVz/7O8At8U29wUOwbVUGQRMVNXVcf2z3wJG42YeLQE2q+rvReQm4P/hZjU9hHsKeglQC3wi/gZ0rH/2W8AoXOuz+cA03BTd6ap6SdzYs4C/AHeq6pdj2y6KfQ9uVNVv9uR7YDLDkkzTsXBwIO6XQk5Pj03m7F3hubN1/wN8x5EDngU+teTGM3KtJLsxxphcEg5W4D7cf9Z3KL5EtN+cSbvumug7jh54FThjyY1nrO/uAeKSzGTeA85R1ebY2BAuyWwFDo3voS0iBwBNwD9xM5ran34Ojx2nBRjXvpQmlmQqcGx8D20RacR9Dh2oqlvjtv8ct1b008A7uPoRbwMnWA/t3GDTZU1y4eAIYCZ5mGACTAnML/Remak6BXgx1NA4wncgxhhjclQ4WAP8gyJOMAHW6sAtvmPooaOA5zNUBPBO4LTY6+O49ZhDgCeSFP5pjE8wYz6Ba0d2c3uCCaCqK3E3M8awbzuyl+MTzJhnccWOQgnbr8IVFJwO/AlXQ+JcSzBzhyWZZl/h4HjgJf7deiLvTAnM2931qKJxKPByqKExWXsRY4wxxSwc3A/X8/o436H4tliHFcJnh4NwN5dDPTzOfFV9JvZ6XFVvBs4CxgI3JYydl2T/sbE/303yXvu2xD7fyVqdtT802Ksgk6ruwtWT6I9rn3apqi5J9oUYPyzJNHsLBw/GPcHM68X+B8qyCt8x5JhRuIvOob4DMcYYkyPCwbG4Aj+JH/aLUrOOKvUdQ4bsB8wMNTQemMmDxp4yRnCzpOJtz9ApOqtCn6yS/BlAe7/QxKeixjNLMs2/hYOTcBebfF30/oFhsjFfSpD3poHA06GGxgm+AzHGGONZODgGt/ZulO9QckVTdEwhtUAbgas8e1iGj1uKe3rYlfankslmUR2UMCZtIjIFuAH4O66n5zdEJC+XeBUqSzKNEw4eipv3PsR3KJlQzp4xAaLd7ctYyGqBZ0INjaN9B2KMMcaTcHA0LsHM61lLmTZXRw3yHUOG1QDPhRoaj8nEwUTkNKASV2SnK3/FFfK5SkTK4o5RB1wILMWtqexOHFW4wpSbgM8BX8EVILpPRIZ255gm8yzJNO13M/+GK0tdEETos5+sXO47jhw1Gpdo5v0Ta2OMMWkKB0fibiqP7WpoMVElukyH5lOPzFRVA090oy7DZBE5P/a6WER+AjyKK7BzbVc7q+pc4EfAVOAFEblSRL6Nq4BbhVtD2d2HAbcD44DPq+oaVd2MW585CLhXRJJNrTW9zJLMYhcODgGeAup8h5JphwcWrPEdQw6bgJs6O9B3IMYYY3pJOFiLe4I5zncouaaNwOpWSsu6HpmXBgJPpTmL6Vzg/tjrTuB84GngeFWdkcoBVPVqXF/MCuBGXEXYZlxLkyc627cjIvL5WCw/UtWn4871Kq6/6+nA17tzbJNZ1iezmIWD/XB3M4/2HUo2/L71pBlXt355mu84ctwrwIeW3HjG1i5HGmOMyV+uD+ZzQEamThaaTVr59uG7phd6cby5wHFLbjxjo+9ATOGzJ5nFKhwsBf5IgSaYAIcElhRKlbhsOhr4a6ih0arxGmNMYfs1lmB2aI0O2uw7hl5wAPBoqKGxj+9ATOGzJLN4/RL4mO8gsmmUrK32HUOeOBn4ue8gjDHGZEk4eC1wnu8wctkirSuWYoEnAnf5DsIUPksyi1E4eAHwZd9hZFt/dlhZ9tR9KdTQeL7vIIwxxmRYOHg28F3fYeS65ujokq5HFYzPhRoar/EdhClslmQWG9cL8zbfYfQGEYK1bFzrO448ckeoobHedxDGGGMyJBw8HFe4xaptduE9HZ1K78dC8t1QQ+OJvoMwhcuSzGISDgaBh4G+vkPpLZMCC1f4jiGPVAJ/DDU09vMdiDHGmB4KBwcAjwD2Oz0F83TUYN8x9LIS4MFQQ2PBtK8zucWSzGIRDgpwH0VWtvyIwNwtvmPIMwfj+k8ZY4zJb7cCId9B5ANVWpdrTcG1ckvBSOA3voMwhcmSzOLxdeAs30H0tsMCC61HT/o+H2povNh3EMYYY7opHPwMrpegSUErJaujBIppTWa8T4QaGi/3HYQpPJZkFoNw8ADg+77D8GE/WTXAdwx56hehhsZC7xdmjDGFJxwcBdzhO4x8spl+63zH4NmPQw2Nk3wHYQqLJZmFLhwM4KZCFGUfxIFsHeY7hjzVF3go1NBY5jsQY4wxKXJLY+4FrIVXGlbroG2+Y/CsHHfNt/W7JmMsySx8/w0c5zsIX0okWlfF9mJosJwN9bhp1sYYY/LD13G9j00aFurwVt8x5IADget8B2EKhyWZhSwcHAf8wHcYvh0SWLzcdwx57NuhhsaRvoMwxhjThXBwDPA932Hko6boaJu143w91NB4oO8gTGGwJLNQuSkzd2Gly5ki8zf6jiGPVQI/8R2EMcaYLt1CEbUoy6QmHVNsPTI7Ugb8wncQpjBYklm4zgWm+Q4iF0wOzLdpMD3z6VBD46m+gzDGGNOBcPAU4BzfYeSr+dERQ33HkEM+FGpo/E/fQZj8Z0lmIQoHy4Ef+g4jVxwQeL/on+ZmwC+tCJAxxuSgcLAU+D/fYeQrVXavZLAlmXu7JdTQWOk7CJPfLMksTP8DjPEdRK6ooaXGdwwF4ECsCJAxpsCIiIrIPSmMC8fGhrIeVPouBQ7xHUS+2kPJKiVgn4f3NhIrAmR6yP5RFZpwcDBwje8wckkfWkeV0rrHdxwFwIoAGWNSJiLTYolZ/GuniCwSkbtFpN53jHkvHBwCXO87jHwWoWq97xhy1NdCDY0TfAdh8pclmYXnO0DQdxC5RITS/WX5Mt9xFIBKrFqxMSZ9vwM+F3tdATQCnwVeERGbddMz12A9MXtkpQ7e7juGHFWGPbQwPWBJZiEJB/cDvuI7jFw0OTB/ne8YCsR5oYbGsb6DMMbkldmq+kDsNV1VrwCuBvoDZ3e2o4hY1c+OuKeYX/YdRr5bqMOjvmPIYeeHGhrtRpDpFksyC8tVuDtPJsGUwLydvmMoEKVAg+8gjDF5b2Xsz90AIhKKTacNi8hnROQNEdlBXDsFEfmiiMwWkR0iEhGRp0VkarKDpzM2yb6TRWS1iLwnIqM7GPO1WLynJXmvXEQ2iMizcduWiMgMETlQRBpFZEssrj+JyLBU4kriSqxNWY81RcfY56aO2TXfdJslmYUiHBwKXOA7jFx1sCzp4zuGAnJBqKFxhO8gjDF5o5+IDIm9RonIR3FT79cDDyeM/SRwO/A34L+BJwFE5CZgOrAHN4XvFuAg4DkR+Vj8AdIZm0hEPgI8DywEpqpqR0st7gN2ARclee9TwCBcr+p4I4AZwDLcTeHf4p7k3tdZTEmFgwOAy9Lez+yjSUcP8B1Djrsw1NA43HcQJv+U+g7AZMwVQIXvIHLVCNkw0HcMBaQP8L/A13wHYozJC9ezb3Ga94ATVHV1wvaDgUNVtal9g4gcgEvKXgJOUdX2p593xY5zm4iMU9W2dMYmBikinwN+DTwBnKuqOzr6glR1g4g8ApwtIoNUdWPc2xcDm4BHEnYbD3xGVf8Qd84ocKmIHKCqczs6XxKXYWsxM8J6ZHapHPdvyq75Ji32JLMQhIOVuBLmpgP92DkaVH3HUUAuDjU02t1fY0wq7gROi70+jluPOQR4Iknhn8b4BDPmE4AAN7cnjQCquhK4G9ey6/BujP2AiDQA9wK/Ac7pLMFM+LrKgf+KO04IOBV4UFUTl2msjE8wY9qn1KZexTMc7IubKmt6SJWdaxhoSWbXLgk1NFo7OJMWSzILwxdxU3NMB0SoHCXrVvmOo4D0x92tN8aYrsxX1Wdir8dV9WbgLGAscFPC2HlJ9m8vNvZukvfat+3XjbHtzgZuAO5S1a8ke8qZjKrOiMUb/7vwQlySmzhVFmBRkm0bYn8OTuWcMRcBlhhlwG5KV7q/LtOFfrjp68akzJLMfBcOCnZHMyWTZKElmZl1Raih0X6HGGPSpqqvABHglIS3fLSTeBW3BvM/ROSINPedDkwSkSkiEsDVRnhdVd9KMraz5DWdTOeraYw1nWihamPXo0zMBXbNN+mwH5b8dzIQ8h1EPjgyMHer7xgKzFjc1DRjjOmOUtysiK60PwE8OMl7ByWMSWdsu+XAScA64BkROSaFmNrdg6uQezFuOvBo3LrO7AgHjyP512a6YbnWWI/M1I0EPuQ7CJM/LMnMf1/wHUC+ODSwyH7eM+983wEYY/JPrPVHJfBGCsP/CihwlYh80G5CROpw01OXAm92Y+wHVHUFLtFcCTwtIsen8nWo6nrgz8B5wOW4J7G/TWXfbvpSFo9ddBZER1ithvRc6DsAkz/sQ3c+CwergHN8h5EvQrLamnpn3kdDDY1VvoMwxuS0ySJyfux1sYj8BHgU12Lk2q52jlVd/REwFXhBRK4UkW/jprlWAZe2r6NMZ2yS86wGpgFLgL+JyEkpfn13AkHgTOCPqro5xf3S44r8fTorxy5STTra2pul55OhhkaramxSYklmfjsHdyfYpCDINuvtmHl9cR+sjDGmI+cC98ded+JmQDwNHB8rntMlVb0auATXqutGXEuFZlybkie6OzbJedbilqEswFW/PTWF8J6NjYdsTpV1BYrsmp9BTdHRQd8x5JkK3L9nY7pkfTLzm02VTUNAtKaaLZta6G89MzPrP4GHfAdhjMktsQQypYI2qrqkq7GqOh1XaCeV46U0VlX3OaeqbiChzYmqhoFwB8dQEdkNzFXVFzsYE+pg+wxSL/pjyxMybIGOqPUdQx66ALjddxAm9xX9k0wRURG5J4Vx4djYUNaDSkU4OBI3rcekYWJg8XLfMRQgmzJrjClaInIKrqhQSglwt4SDQ3D9N02GqLJtA8F0WscY56hQQ2O97yBM7stqkiki02KJWfxrp4gsEpG7RcR+SLvvTKy5U9qOCMxt8R1DAarA9bwzxpiiISKniMiXcD0x15HNJBNOB0qyePyis4sya2vWfbZMxnSpt55k/g74XOx1BdAIfBZ4RUTG9FIMheZjvgPIR4fLgqjvGArUf/oOwBhjetl1uGmDW4Fzslbwx/loFo9dlDbS33pkdt/pvgMwua+3kszZqvpA7DVdVa8Arsb1xzq7sx1FxCqCJgoHy9m3gbVJwYTAin6+YyhQp4caGu3fqjGmaKjqNFUtVdVDO1qLmRHhYAD4SNaOX6SWa81O3zHksamhhkYrQmU65XNN5srYn7sBRCQUm04bFpHPiMgbIrID+EX7DiLyRRGZLSI7RCQiIk+LyNRkB09nbJJ9J4vIahF5T0RGdzDma7F4T0vyXrmIbBCRZ+O2LRGRGSJyoIg0isiWWFx/EpFhqcQV50Sswly3DCFii/yzoxx7um6MMdlwFGBrBzNsXnSk9cjsvj5YXRDThd5KMvuJyJDYa5SIfBT4AbAeeDhh7Cdx00/+Bvw38CSAiNyEW++wB7gGuAW30P45Ednrw206YxOJyEeA54GFwFRVXdbB0PuAXcBFSd77FDAIt04j3ghgBrAMV1L9t7gnufd1FlMS9mG+m0ppG1nObrt7mR0p3cQxxhiTFrvmZ0GTjqnwHUOes6frplO91cLk+tgr3nvACbHmx/EOBg5V1ab2DSJyAC4pewnX56r96eddsePcJiLjVLUtnbGJQYrI53A9rp4AzlXVHR19Qaq6QUQeAc4WkUGqGj+3/2JgE/BIwm7jgc+o6h/izhkFLhWRA2JNpFNhazO6SYTAgbJs2Vs6fn/fsRSgY3wHYIwxBciu+VlgPTJ7zJJM06neepJ5J3Ba7PVx3HrMIbhGx4mFfxrjE8yYT+Aqqd7cnjQCqOpK4G5gDP/uaZXO2A+ISANwL/Ab3AL+DhPMhK+rHPivuOOEcGXGH1TVxCdmK+MTzJj2KbUTUjgfhINDgQNSGmuSmhKYv953DAVqUqihsa/vIIwxpmCEg0Fgiu8wCtFCHV7nO4Y8t3+ooTHkOwiTu3oryZyvqs/EXo+r6s24lgdjgZsSxs5Lsv/Y2J/vJnmvfdt+3Rjb7mzgBuAuVf1KsqecycSaKM/DPblsdyEuyU2cKguwKMm2DbE/U11vYU+LemhKYN4e3zEUqDLsw5AxxmTSZKxdWcapEolQZU8ye+5E3wGY3OWt8I+qvgJE2LdK6nYP4byKW4P5HyJyRJr7TgcmicgUEQkAFwCvq+pbScZ2lrymehGxJLOH6mVZme8YCpj9fBpjTOZM9h1AIdpBn8SlWqZ7JvkOwOQun9Vlwa0JTaXtQfsTwIOTvHdQwph0xrZbDpyEa6b8jIik80H5HlyF3Itx04FH49Z1ZstRWTx2UaiTDUN8x1DALMk0xpjMsdkhWbCRARHfMRQISzJNh7wlmbHWH5XAGykM/yugwFUi8sFTKBGpw01PXQq82Y2xH1DVFbhEcyXwtIgcn8rXoarrgT8D5wGX457E/jaVfbtpn/WkJj0V7B4tRKO+4yhQx/oOwBhjCog9ycyCZdGhqdTdMF2zJNN0qLeSzMkicn7sdbGI/AR4FNdi5Nqudo5VXf0RrkXCCyJypYh8GzfNtQq4tH0dZTpjk5xnNa7vzxLgbyJyUopf351AEDgT+KOqbk5xv/SEg2NwrVFMD4hQEZLVy33HUaCGhxoaR/kOwhhj8l442B+wSuhZME9H2jrXzBgSamgc7jsIk5t6q4XJubEXQBRX7OZp4AZVfS2VA6jq1SKyALgUuBE3RfUV4DxVfbG7Y5OcZ62InAw8g6t+e5aq/qOL8J4FFuBalGRzqmyyKcCmGybLgjWLdfho33EUqCOB930HYYwxee4wrOhPVrxnPTIzaRJuFqAxe8lqkhmrvprSL0hVXdLVWFWdjiu0k8rxUhqrqvucU1U3kDAtVVXDQLiDY6iI7AbmdpTEqmqog+0zSP0iklgV13TTlMC87Q9HrShaliS2JTLGGJO+Q3wHUKjmRkcP9B1DAZkEPOk7CJN7fBf+KQgicgquqFBKCXAPjO16iEnFxMAi+9nPnpG+AzDGmAJgs22yZIEOH+Y7hgJi6zJNUr01XbYgxZLLccA3cZVpLcnME6NlbbXvGAqYJZnGGNNztr49C6LKpm30tSeZmWM/pyYpe5rTM9cBtwNbgXOyVvDn3yzJzJD+bLdEKHvse2uMMT1nH96zYAcV1iMzs2p9B2Bykz3J7AFVndbLp7QkM0MCwsAhtKxbT3WN71gKkCWZxhjTc/a7NAvWq/XIzDCbemySsieZ+SIcDOLapJgMmRRYuMJ3DAWqLtTQaBURjTGmu8JBwZLMrFiqtbt8x1BgqkINjf18B2FyjyWZ+cP6Y2bYEYF5W3zHUKDKsOkzxhjTE0OBPr6DKETzdJTdBM08e5pp9mFJZv4Y4DuAQnOYLIj6jqGA2R14Y4zpPvvQniXvRUf39R1DAbIby2YflmTmj/6+Ayg04wIrq3zHUMBG+A7AGGPymCVCWdKso21mWOZZkmn2YUlm/rAnmRk2iC11vmMoYJW+AzDGmDxW7juAQrVY6+zan3lWRNHsw5LM/GFJZoaVEK3rx85tvuMoUFa52hhjuq/CdwCFKKqybgflVqQm82z9sNmHJZn5w5LMDBNBDpYly3zHUaDKfAdgjDF5zJ5kZsE2Ktb6jqFA2Y1lsw9LMvOH/QPOgimBeZt8x1CgLMk0xpjusyeZWbBOq61HZnbYZ1SzD/uhyB97fAdQiEIbZ6++elnFkxsGHhjdWTWiDyX97MKeAZFAdKfvGIqBiCwBlqjqNHvRK34AACAASURBVIvDmIJiTzKzYObOfmu/vHxB47bq+kokUOI7nkKxOaC29Mjsw5LM/LHbdwCF5tWK8ndvPXj71F899/RA4ekygN1lVRsiA8Yub6meEIkMGCvb+9UGW0v7jUak2ne8+aSuLfDbVMeKyH5AA3AiMBrYBawGXgXuUdXn4saGgX+p6p97Ep+IXAm0qOo9PTlOJsS+pu8AR6rq657DMcbkBvt8lmGzKsrf+dGYXWfe/dQdTX3a+o5eMfzEd1YMn1q2q3zgJEQsqe+Bujb+4jsGk3vsl1j+sCeZGdQKrZfV1pTtDASGrqmOvjyshWMB+uzZOrhmw5zBNRvm7DV+Z3n1msiA/Va0VE/YEhkQKtnRt2ZgW0nFGESsDUpybakMEpEjgOdxP9/3Ae/iSvdPAD4MbAGei9vlO8C9QI+STOBKYAlwTw+PY4wx2WBPhjJoh8j2S4cNrUSk9PuflfIf3rujMrTsqeNDy56itaR8y8q6499YPuLEwM6KIZMQsfYx6Wv1HYDJPZZk5g97kplB3xkyaObOQGAawEMnBfpc+Zdop+MrdrXUVqybXVu7bvYH2xR0R8WQFZHqcStbghO2bR4wpmxHxeAh0UCfMYgU+7TbVC843wH6AYep6luJb4qINSQ3xhSjLb4DKCRfra15bY/ISQALh8v+c0Ly/KFL9CSA0rZd/Ucvf/a40cufpS3QZ9vKumNnLR9xku7oO/RQRKwdV2pSurFsioslmfnDkswMWVRWuvSvVZXHtP//P+tl8uWPsbw0ysh0jiMg/XauH9Fv9foRdatf+WC7Im3b+g1b0lI9fk1LcPyOLf1Hle8qHzQ0GigdjUixFMTZnuK4CcCGZAkmgKquBhCRELA4tvkLIvKFuDESG/MZ4L+Aw3CNobcAM4HrVPXt9vEiorH/HBP33wBjVXVJbMwRwLeAE4D+uKee9wE3qWpr3LFmACHgOOAW4HTcWqoXgStUdV6K34e9iLtJ0QCcC4zC/ft/H/ibql7Vxb4fBi4GjgTqcNOPXwV+oKrPJ4xNK34RGRUb9xFAcE+hr+zO12iM6dRm3wEUimf69X3zjYryE+O3/ficwJS7f9K2qkTZq2dmSXR35agVzx8zasXztAXKdqyuPfqV90dOa9veb9ghiFiV/45ZQSWzD0sy84cVUsmQC+pqNyIy5oMNIjLrQFk49T1NK8nsiKAlVdtXhaq2rwqNXPniB9ujEtiztXLEgpbqCetaguN2ba0a2XdXefUwlZJRiBRapeeNKY5bCBwgImer6iOdjFsHfA64H5cA3ZlkzOXAhth7q4FxwCXASyIyWVXnx8Z9DvgpsB74QcI5EJEzgEeABbiEaiNwLPBdXAL76YTzVgIvALOAa4CxwP8AfxGRQ1S1O3d4bwUuwiW2P8H9rp4AnJLCvhcAg2L7LgdGAF8E/iEiJ6vqiwnjU4pf3LrkF3BJ7x3Ae8BJuOnMNr3MmMyyJDMDtohs/t+hQ4YiIvHbd/aRqrtPC7zzxaejdR3tWxLd03fEqplHj1g1k6iU7lpTe8Sr7488ec/WyhEHW52Gfaz3HYDJPZZk5g/r7ZQBt1cPmLmppGRq4vYHpwX2P/69tjaBrFWbC2i0bMDW98cP2Pr++NHLn/1ge1ugbMeWqlFLW6onbGgJjtuzrWp45e6yAcM1UDIiW7H0gg0pjvs+cBrwsIjMxz15fA2YoapN7YNUdRvwgIjcDyxS1QeSHOv02LgPiMh9wL+ArwGXxo71gIh8H1iTeJzYE8RfA68Ap8Q9tfyViLwF/EREpqnqjLjdhgA/UtWb446zDrgZ+BDwVIrfi3ifAp5U1S90OXJfX0ryfbgDt971m7gkPV6q8f8/3FPPi1T17ti220TkZ7ik1BiTOZZkZsCFdbVvt4nsc80HeHpK4Jiz/xl9fdBWjujqOAFtLa9bPeuoutWziEpgz9qayW+8P+rUHVuqRh2EyKDMR5531vkOwOQeSzLzxyrfAeS79SWBdbdXBw9O9t6GoNRt6M+rQ7ZwVG/HVRLd07d686IDqzcv2mt7a0n5ls39Q8taqidsagnu17atsq7/nrKqkUhgaG/H2A0pJZmq+rKITAG+AXwUuDD2QkReBC5Q1UWdHCL+WNti+wluimsf3IVvLnB0inGfhptq+02gOuHm9xO4p4ofBmbEbY8CP084TvtdhAl0L8mMAAfHniS+k86O8QmmuMJU5bj1Mq8AxyTZJdX4PwmswT0hjXcTlmQak2m2JrOHHq2qfHVueZ+kCWa7688rGfqzO9t2SBqzMQIaLRu29vUpw9a+TlQCreuHTHpz2ahTt27uP+ZAJFDT88jzkj3JzLJcaRWWThyWZOaPdbgPitbXqZsuHFY7X0WO6+j9P54Q4KtPdF4AqDeVtu3qP6hl7sGDWubutX1PaeWmyICx72+qntASCe5HXJuVgZ5CTWZNqgNVdQ5uiifipjGfhJveeQJuyuYUVe1yTbKIHA58D5iGmwIab/E+OyRXH/vzN52MqU34/5WqmjidvT3JHpzieRNdiZsaPEdEFuGmpD4GPKaqnf6Qisg43DTgjwCJU7p03z1Sjn8/4LXE6b+qukpEWjqLyRiTtgjuBlChLaXoFRsDgQ3fGTJobFfjVg2W0TMPkudPeM8VAUpXQKOlQ9e9efjQdW+iSHT94EPeWjbqQ5FIcL8DkEDitaKQpZRkWsuy4mpZZklmvghHooSDa4DhvkPJR3+t6vfakj5lHSaYAM9PlCmXPMnqEiWnK5qWtW4bOGTjOwOHbNz7AdfOPsG1m4P7Ld9UPWHr5gFjA9v71lTH2qz07+UQN112xyndWkOsqkuB+2LTYl8EjgeOwk2j7ZCIjMatF9yMSzTn4loAKPAzINVWM+2PLq/CTbNNZmXC/3e25lI6ea9DqvqXWLGjj+GS7g/hivm8KCIf6ijpjj25fAGXZP8MmIN7IhLFPZ1NtqYz4/EbY3ooHGkjHFyBWwNt0nT+8Np5KnJsKmNvPzNw7DFz2xaVtbFfT84paKBmw5xJNRvmoKAbB9a/vWz0aZs2VY+fgJQU8me3nZfdccrWrgZZy7LiY0lmflmFJZlp2yay9bohg7v8vkUDUjJ7vDQfOV9zOsnsSMXuyNCKdW8OHbruzb2276gYsqIluN/KluoJ2zf3H1O6s++QQW2BPqEs9gLr8dRuVVUReQWXZKayNvVTuETyrPg7oQAiMhh3t3SvU3RwnPbiQNtU9Zk0Qs44Vd0IPIBbiyrAjbh1kZ8A/tjBbqfifkfEr5sEILYOtScWARNEpCT+aaaI1LHvE1NjTM8txJLMtN0d7P/S+2Vlx6c6vrVE+vzsE4HIVY9kbiaTgAze1HTo4E1NKOim6v3fXTb6tPWbqg/YTwMlhfZ3mmrNEGtZVmQsycwvti6zG66orXmjLdYfqyv3nxIYd8T8NpUCeoLTd+f6EX13rh9Rt+bVD7YpEt3er3ZpS3Dc6pbqCTu39B/dZ2f5wCHRQFkoA21W3k91oIicBjwX3xYktr0v7s4muCqm7bbiKqcmak969vp7E5EvAcOApQnjOzrOU7gLZoOI/D6W6CXGVaqqWVsvJSIlQH9V/WAKaizpbr970FmRiY6+Dx8m9XWpHfkLbprT54H4BPbqHh7XGJPcQtz0f5Oi1SUlq386sDpp7YXOvHZA4PD3h0RfGrWelJPTVAnIoJZ5Bw9qcR2hWoLjmpeOOm3NxkH1YzRQGsr0+TxIqW4C1rIsqUJuWWZJZn5Z6DuAfPNqRfm7r1WUn5Dq+NWDZFSkH7OrtzM5m3H5JmigcvvqMZXbV48ZseqlD7ZHJbBnW+WIhS3BcWtbqsfv3lI1qmJXefVQlZLRuOQnFXO7HvKBnwKDReSvuKmd23G/ZM8D9gfui63ZbDcL+JCIXA0sw+VfDwFPxva9X0R+CWzCPQX9GO7fTeLvulnAxSLyPaAJN530MVXdJiKfx03PmSsiv8G1MqkGDgTOxj01nZHG15iu/sCq2PfkTVzSOxb4auzreqyTfWfi1rfcErtQL8ddhD+H+/5O7EFcN+P+XqbHijW9i/sAfCxW9MGYbFjgO4B8c97w2uXqkoa0fe/ckv1/9Yu2iEAw03HFq44sPLA6svBAgEj/0Lylo09btXHwwSOjgbJx2TxvFqWaXFnLsuQKtmWZJZn5ZU7XQ0y7Vmi9rLamLN0elI8eF9h14TO5UwCoNwU0WtZ/6/vj+m99f9yoFTM+2N4WKN25tWrUgpbg+PUt1eNbt1aO6Le7z4A6lcCIxP5jQHMap/w6bvrnVOAcXDIXAd7GVS29J2H8pbhfyN/CJWMAD6nqQhH5KPBD3C/ONuAl3C/FX+Lu3sX7Fu4X82Wxcwrul+02VX1KRI7E3Vk8H6jBJXcLcReAt8mu7bj1lKfi1mJW4WYx/BW4QVUT14R+QFVbROQjuITwCtzv+DdwyfbF9CDJVNVNInIC7nvw+djm54GTgX9097jGmA7ZjeU0/N/A4IvrSktTvqmcqKVKah4/Sl74+Kt6Yibj6kxwy5L9D313+v4AW6pGLlw66rTl64ccOjxa0mdCb8WQAfO7HgJYy7KOFGzLMlHtaGmSyTnh4FG4fwwmBdcMGTTjsf5V09Ldr7RNdz9wc9uWQPcrgxaN1pLyrZv7j1naUj1+YyQ4Lrqtcnh/VL/+pbs/9XzXextjjOlQOHg4MNt3GPlgSWnpso+PrBuEK37WbaIavecnbc19d3NQpmLrjq396hYvG33asrU1h9VGS8oP9BlLCs687I5TGlMZKCIT+XfLsvh2bPu0LItNb71XVS/o5HjxLcvAtd/ao6pT4sYsIUnLDRH5OO7m7UXsO0NoMO6G+Q2qek1s/AzclNrK+IrssZk9r+OmnP6yi68/TEJ1WRFZjKsifUZnLcu6ah0S17JMcAWTjlHVwXHvpxy/iLyHuxE/IkkNhpXA89bCpPC8iytYUjDrBbNlYVnpkseqKpP1BOxSa4n0mROSdyYt6V5J82JS2rarKn6tScw77sacMcaYHrDpsimIQvT84bWbcFXGe0RFAjf8Z4lc/0BbVDy2j6navmrsQc33jT2o+T629x26bOno0xavrZlc01Za4TX57UDKs+ysZVlSBduyzJLMfBKObCMcXAw9K7NdDC6sq92EW5PWLfefGhg16dfdmVpf9JbVNzdt6HqYMcaYToUjWwgH5+HWp5sOfH/wwBcjJSUZuyncPErqm0fyfP1ycuJGc78da0fXz31wdP3cB9lRMXjF0lGnLVg7dMqg1tK+hyRZrtLbNl92xynLurOjtSxzCrllmSWZ+WcOlmR26tbq4IubSkq6vS4DYNlQ2W9LBW/138mkTMVVJN7seogxxpgU/RNLMjvU1Kds4R/7V/W0cvY+bvp0yWG/+Vnb2oDuNaXTu747N4w4cP5DIw6c/xA7yweuWjbqlPmra48KtpZWTky3/kSGdJScpcxalhVuyzJvUwFMt9mH+E6sKwms+1X1gJ5U0PzA40cHumwubPZh64eMMSZzXvYdQK5qhdYL6mp34wq4ZNT2Cgk+cHIgp6crV+zaVLf/godPPPGlqycd//I1G0Yv+/uLZbu3vEn3Kpx2V2JhmQ6JyGkiss/DrSy0LEuUSsuyfd4Xkb4i0n/f3TJHREpilVw/oK5YTi60LKvl30X+2qXVssyeZOYfK6jSiQvraueryHGZOFbjkTL5s8+T9XLmBcZughhjTOb803cAuaqhZvDM7YHAtGwd//GjA8edNSuaFy3Nyndvrhm/6M814xf9md1lVRveH3nye6uGHdtvd58Bk0iS2GXQC2mMtZZl+yrolmWWZOafl4GdQMbv3OW7v1RVvra0rCwjCSbA7jLpO3ckrx24nF4rZ57nolj1Y2OMyaT3cG2d7GZnnNnlfZqequw3Ndvn+e55JQNvuattl7iqnXmhz56tg8ctfuyEcYsfY09p5ablI058d2Xd8eW7yqsnIdKn6yOkrJX0boJYy7J9FXTLMmthko/CwWdxf9EmZpvI1uPHjNzcJjI8k8cdv0Ln/vC+tgMyecwCNqu+uelY30EYY0xBCQef4t/TCYvebth13JiR7+8KBMb3xvm+8XDbjKPndd2uIdftKekbWTl86rsrRpxQurN80KEZmGb82mV3nHJURoIzBcnWZOan57oeUlwur615I9MJJsCCEXLAjj57rREwHfuL7wCMMaYA2ZTZOFfU1szqrQQT4OefCBzTGmBpb50vW8radgTHvP/3446bdd1RJ878Ruv4BQ+/3HfHulmobu/mIdOZKmuKkCWZ+cmSzDivVJS/+3pFeY+qyXbmySPEWnKk5q++AzDGmAL0lO8AcsULfSve+mffiqxd75PZUyoVt54ZWNeb58y20rZdVaOXP3vssa+Ejznpxa+z/7zfz+q3fc3LqKZT8NCSTNMpmy6bj8LBPsBG9m1AW3T2wJ5jx4xcsisQmJCtc1Ts1q333tKGpN57qRgtqG9uytrfgTHGFK1wMIBbp5VT7TR62zaRrVPHjNzY6vok9rr/u6P15bpNFPSSkLZA6c41tUe99f7Ik1u39as7BJGO1gLvAmouu+OULb0Zn8kv9iQzH4Uju4FG32HkgutqBr+UzQQTYGcfqVo8zKqmdsGeYhpjTDaEI1HgCd9h+PalYUPf9JVgAnz3vJKx6prdF6ySaGvF8FX/PPro135w/LQX/qdvfdN9r1VtWT4T1ZaEof+wBNN0xZLM/PUH3wH4trCsdMnjlf2O6Y1zPXByoLNeRcbWYxpjTDb92XcAPj1R2e/1OVlcFpOKDQNk2FOTpWh6QQe0rU/dmleOPOqNG6ZOe+G/Kw9+7zdv9N+89EU0uoEi/3k0qbEWJvnrCVyD2aKcwqmgF9TVtuB6A2XdO6HAwbtKo/PLW7EpofvagCsfbowxJjuewj1Fy2pz+FwUCUjkmzWDR/iOA+Ce0wJTp81pm1uxh6KqOh/QaFnt2jem1K59A0V2ra05/FE4xXdYJsfZk8x8FY7sAB73HYYvt1YHZ7aUlBzWm+f8x2HSYb+iItdY39zU5jsIY4wpWOHITop0mcwX6oa9ExWp8x0HQDQgJT86J7BHoWgLmgj6wrQXH1zvOw6T+yzJzG9FOWV2XUlg3Z3VA7rdZLa7/jQ1MElhZ2+fNw/YekxjjMm+3/sOoLc91L9q1sI+Zcf7jiPenLGBQxbWMdN3HB495DsAkx8sycxvT1Lgi9CTubCudoGKVPf2ebf2lerlQyia9Rgp2omV1zfGmN7wOK7KbFFYXxJY98PBA3NyicoPP1MyMQrF+DRvF/CI7yBMfrAkM5+56TO/9R1Gb/pzVeWrS8vKvJUQ/+20QD9f585RD9Y3N6XTV8sYY0x3hCOtwF2+w+gt59UNW6Qig33HkczWvlL9hxMDzb7j8OD39c1NiZVmjUnKksz8d4fvAHrLVpEt4SGDRvqM4Y0JgcP2lLDYZww5RIFbfAdhjDFFZDpQ8Gvgf1U9YOaqstKjfcfRmUeOD0zdUsFbvuPoZb/wHYDJH5Zk5rtw5F/ALN9h9IbLa2vebBMZ7juOFw6Rpb5jyBFP1Dc3NfkOwhhjikY48j4FXgBoRWnJyl9WB3u97kJ3fO/ckiqFPb7j6CUv1zc3ve47CJM/LMksDAV/Z+mVivJ336gon+o7DoCHTgwcXEQXlc782HcAxhhThG73HUC2KOh5w4etRiToO5ZULBkm494cJ8XSwqvgP2uazLIkszD8EVjhO4hs2QN7Lqut6YNITvy8RqqkZk01xX437/X65qYZvoMwxpgi9BSwyHcQ2fDjQdUvbiwpmew7jnT85FOBo9oCLPcdR5atBP7kOwiTX3LiQ7vpoXBkD3Cr7zCy5bqawS/tCgRyqsLcQycF+viOwTNbi2mMMT6EIwr83HcYmbawrHTJfQP6H+E7jnTtLpN+vzo9UOh9tO+ob26yGVwmLZZkFo7bgI2+g8i0hWWlSx6v7HeM7zgS/bNeJrcW/p3LjizFPT03xhjjx68ooBlMbdB2ft2wLYjkZQX3GZMCR60bwCu+48iSncCdvoMw+ceSzEIRjkQosDVyCnpBXW0LIhW+Y9mHiMw6UBb4DsOTn9U3NxV8dUNjjMlZroXZDb7DyJTrhgx6cWtJIC+K/XTk+v8qGamwzXccWXBrfXPTGt9BmPxjSWZh+Tmw1ncQmXJrdXBmS0nJYb7j6MiD0wIHaBGUkk/QQhH1aTPGmBw2HVjmO4ieeqdPn/l/rao8znccPbW2WkY8d6i85juODIsAP/QdhMlPlmQWknBkG3CT7zAyYV1JYN2d1QNy+q7mhqDUbejPG77j6GV31Dc3bfUdhDHGFL1wZDfwfd9h9MQe2HNh3dAoIgVR52D66YHjd5dSSLOcbqpvbiq4pVimd1iSWXhuw1UBy2sX1tUuUJFq33F05Y8nFNU/oTXAjb6DMMYY84G7yeNKs98YOuSlnYHAAb7jyJS2Eim75VOBbQrqO5YMWAn8zHcQJn8V1SfkouDWaXzXdxg98eeqyleXlpUd6zuOVDw/Uaa0Cat9x9FLvlbf3BTxHYQxxpiYcKQVuN53GN3xSkX5u8/163uC7zgy7c3xgUlLh1IIvTOvr29u2uE7CJO/LMksTNMhP6dxbhXZEh4yaKTvOFIVDUjJ7PEy13ccveDv9c1Nv/MdhDHGmH3cD8z0HUQ6dors+Oqwof0QKfEdSzZ8/7Ml9QqbfMfRA3OBX/sOwuQ3SzILUTgSBb4CRH2Hkq7La2tmt4kM9x1HOh44OTC2QKbGdGQncKnvIIwxxiTh+mZ+BcibPoaX1ta8ukdkrO84smVzpQx+9Dh5x3ccPfC/VkXe9JQlmYUqHHkduN13GOmYVVH+zhsV5Xk3dWbVYBkd6cebvuPIohvrm5sKqZCBMcYUlnDkXeAW32Gk4h/9+r75WkX5ib7jyLaHTgxM3VbOHN9xdMPv6pubHvcdhMl/lmQWtm9BfqwX3AN7Lq+tKUckL38mHz0usMt3DFkyDyv2Y4wx+eC7wGLfQXRmi8jmbwwdUoOI+I4l60TkB58p6ZNnrc7WAlf4DsIUhrz8QG9SFI5EgK/7DiMV364Z/NKuQGCC7zi66++TZUoUNviOIwu+Wt/cVKgJtDHGFI5wZAdwme8wOnNxXe1bbSJ5U3ehpxaMkAPeGSP5tF72ivrmpkL8LGM8sCSz0IUjvwP+4juMziwoK1vcWNkvL6rJdqS1RPrMCeX1+otkHqxvbnrWdxDGGGNSFI48CfzBdxjJ/Lmq8tWm8j55tySmp358TmBKm7DKdxwpeLS+uSknf3ZMfrIkszhcDKzwHUQyCnpB3dAIIuW+Y+mp+08NjPIdQwa1kCdPwY0xxuzlK8Ay30HE2xQIbPzOkEEh33H4sKNcqu75UGCJ7zi6sAkr8GcyzJLMYhCObAA+Rw5Wm/1ldXBmpKTkMN9xZMKyobLf1gre9h1HhlxW39y01ncQxhhj0hSObAI+C7T6DqXd54bXzo2KDPUdhy9PHRE4dmMVr/uOoxP/U9/clBc1PEz+sCSzWIQjzwE3+Q4j3tqSkrV3Vg841HccmfTYUYHNvmPIgFvrm5t+6zsIY4wx3RSOvAxc6zsMgPsG9P/n0rKyvF4SkwnXn1cyVGGH7ziSuLu+uen+zgaIyAAR+baIzBaRLSKyXUTeE5GbpYhvHpjOWZJZXK4DZvkOot2FdUMXIhL0HUcmNR4lUxQivuPogVl0MU3WLjbGGJMXbgae8hnAmpKSNT8eVF3vM4ZcsWqwjH7pIHnFdxwJ3qKLYlEisn9s3PXAIqABuBL3eeFK4F0ROTrLcZo8JKqF3EPe7CMcDAGvAUN8hvFoVeWr19UMPspnDNny3ftbXzhwOfnYA2wdMLm+uWl5RwNiF5ungDHAI8BzuAbgxwDn4xLsM1U11y6kxhhTfMLBGlyCUOfj9KeOGv7a2tLSI32cOxeVtunue29pW1HWxljfseCu10d01gdbRPoBbwJjgU+pamPC+0cAzwC7gImqastszAfsSWaxCUeWAGcDu32FsFVkS3jIoEIqkrOX+04pqfUdQze0Ap/tIsHsBzwGjAA+rqr/oaq3quqdqnoRcBxQBvzVnmgaY0wOCEfW4dZn9vo1/xfVwRctwdxba4n0+b9PBFp8x4Gr0XFuZwlmzMXA/sDPEhNMAFV9HbgGGApc1b5dRC4QERWRaYn7iMgMEVmSZPsRIvKoiKwXkV0iMldEviUipUnGThCR+0VklYjsFpElIvIjEalMGHdPLI6giNwuImtFZKeIvJT49FVEAiJypYi8HZultTkWw69FpKyL75NJwpLMYhSOvAhc4uv0lw2rmR0V8XJXtTcsGCEH7OjDe77jSNPlKbQrsYuNXWyMMfkmHHkBuBDotalry0pLl99ZPaAgivpl2qsHBA5fPpiXPIdxTX1z05MpjPuP2J93djLmHtyMpnO6G4yInAG8hPuMcQvw38DLwHeB3yWMnQK8DpwI/Ao33ffx2D5/7+Aa/RQwMna8G4BDgEYR6R835lvAT4ElwNW4zzGPAscCed8BwQdLMotVOHIvcGNvn3ZWRfk7s8vLC75P1t+mSD41M/5pfXPTr1IYZxcbu9gYY/JROPJb3E3ArFPQ84bXrmfv36kmznfPK9nfY/2GB+qbm1ItBHkIsEVVO3ziqarbgWZgrIhUpRuMiFQAvwZeASap6g2q+itVvQD4X+A/Em5S/wZYBRyiqmFVna6ql+Oe2B8L/FeS08xW1Y+r6i9V9Xrgi8Bg4Ly4MZ8CmlT1LFW9LRZDg6oepKpb0/26jCWZxe4a4OHeOtke2HN5bU05IgX/c/fnYwOHKWzzHUcKHsP9Ek+FXWzsYmOMyVfhyI3AHdk+zQ8GD3yhUFqTZUtLldQ0HilveTj147in2qkaQGrJcHtl/e7cWDgNqAXuBqpFZEj7C3giNubDACIyETgU+C1QnjB2Ju5zG1+aagAAEXdJREFU14eTnOOnCf/fPnNrQty2CDBCRKZ242swSRT8h33TiXBEcf0zZ/bG6a6tGfzSrkBgQtcj89+Ocum/eBizfcfRhX8B59U3N6XaP9UuNsYYk98ux91czIq5ZWWLft+/yiqNpuD+UwNTe3lpzXPAp+ubm9Lpn7oZd+3vygDcOs/13Yirvfrwb3AFCONfzbH3ahPGXp9k7FqgMm5svEXx/6Oq7bPNBsdtvgbYCbwoIitE5EEROU9E+nTjazJYkmnCkR3AR4F/ZvM088rKFj9R2a+o+mQ9cHJgkO8YOvEacGp9c1M6T+XsYmMXG2NMPgtH2nAzPV7N9KFbofULw2t34makmC6oSODGT5eIuutltr0CnFXf3LQzzf3eAQaIyPiOBsSKAh4ILFXVPbHNna3/TaytILE/r8LdaE72uiVh7C2djP1/iSdU1baOwo8b8zIwDrc06FHgMOBB4F8iksuf53LWPkU0TBEKR7YSDn4UeBrI+B1IBb2obuhmRHKhZHeveScUOHhXaXR+eSu59vT2ReCM+uamLWnu9w5wooiM72jKbIYvNv/qYJ+VCWNvAf7WwdhNiRtSvdiIyDjgI8DJsdd5wLUiMlVVN3ZwDGOMyW3hyHbCwQ8DT+KWFWTENTWDZ24LBKZl6njFoGm01M8dSbbbnr0NfDTNm8rt/oSrefBFXH/MZD6Pqyz/QNy29mtksuRsLK52Q7v5sT+3qeozXcTTPrYthbFpiy2HeTj2QkQuBW7FFT78UabPV+jsSaZxwpHNuA/Ur2f60L8YGJwZKSmZlOnj5oN/HCYrux7Vq54CTu9GggnuYgPuYtOR7lxs4u11seng9V7C2LZOxr6R4te2D1XdqqoPq+rlqnowrqhQPe5iY4wx+SscieCWEzyficPNLu/T9GRlv+Mzcaxic+OnSyZFhWz1l5wPfLi+uWmfG64p+jUwD/i6iJye+KaITMYV0FuFS8bazYv9+aGE8ecCwxMO8xRu9lFDsieGItI3rjDfm7gb3l8Rkf2SjC3t7lPH2FKbRO3LnuxJZjdYkmn+7d8XnTczdci1JSVrpwcHHJqp4+WbP00NTFI37TIXPIqbLrO9m/vbxcaxi40xJv+FI1txy2We7slhdsOuS4YNLcXaO3XL9goJPjgtML/rkWl7Gzi5vrlpTXcPECvmdxawAleF/Q8icqmIXCIid+Eqv+8CzlLVNXH7zQWeAb4caxn2ZRG5HVcTYUHCObbhblAPBeaKyE0i8iURuUpEfo2bvTQlNra9lkgb8LaI/Dx27K+JyK3A+7F4u6NJRB4TkWtF5CIR+Rbwe1yP2Ye6ecyiJu7vy5g44WAQeAQ4paeH+tjIupffLysrqrWYiW6Z3vrSqPX4vsP7IHBBmgv+9yEiB+Cmpo7GTSeZAbQCR+F+8W8Czoz1zIzf7++4n6c7cdNgD8NVcN0ClKlqKG7sR4A/A1txazMXANW4abhnA59S1RmxsYfhCvf0iY19F+gHjI+N/aaq3hMbew/wBVX9YFps3DkVuDdWxRYRWQfMwq1jWQnU4XrLDgOOUlUfVQGNMSbzwsFy4I/Ax7uz+1dra2bM7Nd3WkZjKkLT/691dnA7kzN0uGeBT9U3N23ucmQKRGQA8D+46+oEXM0DcNfcqarakmSfYcAvcLPkArilOl8HbgdC8df92PhDcFNyTwZqcJ8nFuKmdd8av0xFRMYA3wROx92s3oJrOfY0cJuqvh8bdw+pX/cbgI/hPmsEcTe8ZwE3qGquF3LMSZZkmuTCwTLgLtzdpW55pKry1e/UDD4qc0Hlpynzo/+6+k9Rn+XcfwVcmkYV2U7ZxcYuNsaYAuOu+fcDn0lnt5l9K97+am3NIcXQmizbRq7Txbfc1TZcet6L+Xe4m8q7MxFXMiJSirsx8Ung66qaWLXdGEsyTRfCwe8C3053t60iW44fM3JrVKQuC1HlnQdvbl1c1rbP+sPecEt9c1OqfTC7xS42xhhTAMJBAb4DXEdcIbSObBfZdvyYketb3Y0+kwHfeLhtxtHzdFoPDvEj4Or65qasf7iPVVt/FHdD9lJVvT3b5zT5xZJM07Vw8CLc07CUqxF/oW7o87MrKk7KXlD55ctPtM049a0eXTjS1QpcU9/c1CvV0OxiY4wxBSIcPBu4F6jqbNj5dbUvvFVRns2qqEWnrFV33ntL25rSKOkm7lHga/XNTT/PRlzGdIdNbzBdC0d+gysIlNLi8VkV5e/MLi8/IbtB5ZeHTgwcrHuX7M6mJcCJvZVgAqjqblU9Q1XFEkxjjMlj4cgjwHHA4o6GPFnZ7w1LMDNvT6lU3HZmYF2au60HzrQE0+QaSzJNasKR54BJwD86G7YH9lxeW1Nu6zP2FqmSmjXVmW8Pk8SfgMPrm5te7oVzGWOMKUThyBzgSFwBmb1EAhJpqBmcWBncZMjMgwNHrK4m1Wv4C8Bh9c1NT2YzJmO6wxIBk7pwZA3uiWYYNzVjH9fWDH5pVyAwoTfDyhcPnRTok8XD7wC+XN/c9On65qZ9Cu8YY4wxaQlHNuCKtd1A3DX/grrad6zeQnZdf15JSF0Ru45Ege8Bp9Q3N63opbCMSYutyTTdEw6eDPwW19IBgHllZYvPGTFsOCI9rYxWkEQ1+tub21aWRBmZ4UO/C3ymvrnp3Qwf1xhjjIFw8ETgvj/0r1r1vSGDjvEdTjG4+G9tz3/kTU1W22I18F/1zU37PGU2JpfYk0zTPW767KG4RrUo6EV1QzdbgtkxFQm8fKAs6HpkWu4EjrQE0xhjTNaEIy8Ak346qNpaOPWSuz8cmLqrlLkJm58EJlmCafKBPck0PRcOfvInA6svvrt6wJm+Q8l1gyO66rbb2oYKlPTwUC3AJfXNTX/MRFzGGGNMKibeO/EM3A1OW5eZZRMXR+dc+1D0EIF1wJX1zU2/8x2TMamyJ5mm58KRP99dPeB84BdAm+9wctmGoNRt6M8bPTjEHuDnwARLMI0xxvS2OV+Y0wgcBPyE3quaXpTmjA0c8sZ4uQGotwTT5Bt7kmkyauK9Ew8HbgeO9h1Lrjr5reirX30ielQ3dn0YaKhvbsr0lFtjjDEmbRPvnXgg8FPgdN+xFKDZwGVzvjBnlu9AjOkOSzJNxk28d6IAFwPXAaM8h5NzAlFte/DmtnUl+u+iSV14Gfjf+uamf2YzLmOMMaY7Jt478UxcsjnedywFYCnwXeCeOV+Yk7SSvzH5wJJMkzUT751YBnweaMAuPHu56k9tM46cr9O6GLYA9+Ty4V4IyRhjjOm2ifdO7AN8EXfNtxvM6VsF/ACYPucLc3b7DsaYnrIk02TdxHsnlgD/CVwDHOI5nJxQt0GX/ezO/9/evcXKVZUBHP9/BSTYBtEit0YuEmoqbIJEKfHWgoYGHyRoIkZDpi2iMWLkAU2AB01QE40omkIqJtCBh+qLKCqCFChqI2osxm04bW1raVohSqH2TqVdPqwNnQ5zyjl0zt5zpv9fsnLOWWvNnm+nzez17Vlrr31vC4gezc+R72IunrVqxPUukqRJo0o2W8CNwFkNhzMZbAG+BSwqW+XupoOR+sUkU7WpptFeAdwMvLvhcBp35/dfWnnCLi7sqFpPXs/6o1mrRv7bUFiSJB22ol0cDXyafIN5ZsPhDKLVwCLytNgdTQcj9ZtJphpRtIt55GTzA03H0pTL/7z/DwuW7b+YvO/V7cCDs1aNuP5CkjQ0qhvMHwY+R77RfHSzETUqAQ+SnxL/UNkqHYRraJlkqlFFu5gJfLIqsxoOp06bjt2bltx7674ls1aNrGs6GEmSJlrRLk4FFgLXAmc0HE6dngF+DCwuW+WapoOR6mCSqYFRtIvzycnmVcDbGw5nIuwCfgq0gUd9apwk6UhUtIspwKXAx4ErgZObjWhCPE/eemwp8LjXfB1pTDI1kIp2cRE54fwEMKPhcA7H34FHqvKY6y4kSTqgSjjfy4GEczJ/w7kJeBi4D3iwbJU+vE9HLJNMDbRqLcdF5AvQbOBiBvsCtBFYRk4qHy1b5bMNxyNJ0qRRtIvzgDlV+SCD/S3ndmA5ObF8uGyVq5oNRxocJpmadIp2cQoHEs7ZwHuAaQ2EshNYB4yQLzLLyla5toE4JEkaSkW7eAc54ZxN3gbtnTRzzd8D/A14ElhZlb+WrfKlBmKRBp5Jpia9aqrNucAF5G85TydvBH06eartmw7j8NuAtb1K2SqfOYzjSpKkcapmOJ1BTjjPBc4BTu0oJwFTXufhtwFPV2Vjx+9PASMmlNLYmWQegSJiPnA3cElKaXmz0Uy8ol0cA0yvyonA8cBLwF7gf9XPXr/vKlvl803ELEnSRBvG8UDRLo4C3kpONt8IHFeVo8jbp0whP4hvO7Cjo2wvW+XOJmKWhtGRvFdRLSJiLvBY9eftKaXrevQ5ibxY/Bjg8ZTS3NoC7LOIuB7YmlJaMp62iVQtvH+2KpIk1c7xwNjaDlfZKvfhNV9q3OudTqDx2wN8KiKO7dF2NRDkb9cmu+uB+a+jTZKkI4HjAccD0tAzyazPfcCbgSt6tC0AHgBerDUiSZJUN8cDkoaeSWZ9VpKfSragszIiLiIvXL+7+wURcVlE/CQi1kfE7ojYGhG/iYg5Pfouj4gNEXFaRCyNiBciYldEPBQRM0eJaUpE3BAR6yLixYhYExGtHse+KiLuj4iNVb/nIuJnEXF+V79EXow/JyJSRznzUG01naskSYPA8YDjAWnouSazXncB342IGSmlzVXdQuDfwC979J8PvAW4h7xGYwbwGeCRiLgkpfS7rv5Tgd8CTwA3AWcBXwJ+HhHnpZT2dfX/Jnkx/A/Jd00/DyyJiLUppRUd/a4DtgB3ktc4nA18FlgRERemlP5R9bsa+B7wHPCNjtf/5zXa6jhXSZIGheMBxwPScEspWSawAHOBBNxAfrrpi8BNVdtxwFbgO9XfO4DlHa+d2uN4J5M/mB/oql9evc9Xuuq/XNXP66ibX9U9Cbyho35GFd/SrmP0imNW1feOrvoNnecwjrYJOVeLxWKxWAahOB4Yc5vjAYtlCIrTZWuUUtoC3M+Bxe4fI+/heNco/V95lHZETIuI6cA+4I/kTYm77Qd+0FX3aPXznB7970gp7e14v83Amu6+L8cR2fERcSL5juPqUeIYtxrOVZKkgeB4YHSOB6Th4HTZ+t0N/Coi3k+eGvOnlNJTvTpGxNnkqSTzgBO6mnttcPqvlNKerrot1c/pPfqv71G3hbxWojOOdwG3kO/CTu3q/88exxi3Gs5VkqRB4nigB8cD0nAwyazfQ8Bm4KvAJeR1D68SEdPIawymArcBJXnj4P3AjcClPV52qHUHMY7+r/SNiNOrOLaRLyyrgZ3kD/rbgGmHeM8xqelcJUkaJI4Hut/M8YA0NEwya5ZS2hcR95A/LHcDS0fp+iHgNGBhSumgJ81FxNcnNsqDXEm+cHw0pfRYZ0M1haX7Meu97jK+VtugnKskSbVwPNDToJyrpMNkktmMxcBeYH1KadsofV6+M3fQXbiIuIw+rXsYo9HiuBY4BXi6q/8O8lPhehmtbVDOVZKkOjkeGNt7OB6QJhmTzAaklDYCX3uNbr8nPx781mrvqE3ABeRHf5dAMXERHuTXwC7g3ohYBLwAvA/4CLCOV/8fegK4JiJuAUbIU1x+US3k79nG4JyrJEm1cTzgeEAaViaZAyqltDUi5gHfBr5I/rf6C/nD/Bpq+qBNKa2LiMvJe2jdRL7LuAKYAywCzux6yc3ku5NfIC/YD/KeVTtHa0spbRiEc5UkadA4HnA8IE1GkdKhpsxLkiRJkjR27pMpSZIkSeobk0xJkiRJUt+YZEqSJEmS+sYkU5IkSZLUNyaZkiRJkqS+McmUJEmSJPWNSaYkSZIkqW9MMiVJkiRJfWOSKUmSJEnqG5NMSZIkSVLfmGRKkiRJkvrGJFOSJEmS1DcmmZIkSZKkvjHJlCRJkiT1zf8Br733zJ+XG3YAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# subplot\n", + "import matplotlib as mpl\n", + "\n", + "fig,ax=plt.subplots(3,2, figsize=(14, 10), constrained_layout=True)\n", + "\n", + "\n", + "ax[0,0].pie(count_sum_df['airbnb'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'], \n", + " textprops={'fontsize': 18})\n", + "ax[0,0].set_title('NYC - Airbnb')\n", + "\n", + "\n", + "ax[0,1].pie(count_sum_df['park'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 18})\n", + "ax[0,1].set_title('NYC - Park')\n", + "\n", + "ax[1,0].pie(count_sum_df['hot spot'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 18})\n", + "ax[1,0].set_title('NYC - Hot Spot')\n", + "\n", + "ax[1,1].pie(count_sum_df['hotel'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 18})\n", + "ax[1,1].set_title('NYC - Hotel')\n", + "\n", + "ax[2,0].pie(count_sum_df['shooting'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 18})\n", + "ax[2,0].set_title('NYC - Shooting')\n", + "\n", + "ax[2,1].pie(count_sum_df['public housing'], labels = ['Bronx', 'Brooklyn', \"Manhattan\", 'Queens', 'Staten Island'],\n", + " textprops={'fontsize': 18})\n", + "ax[2,1].set_title('NYC - Public Housing')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### Data visulization" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": { + "scrolled": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+wAAAFICAYAAADKy3RZAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde5hWZbn48e8NIiCYJZii7USsDGEAOaUmglagpaKpW81SNDto5aHfRu1gYmWZ2fa0d5IdBE2L0jTT2pkpKopxUAgRDa1JTTPURMETh/v3x1ozvg7vDMNhmBf5fq5rrjXvWs/zrHut4bLu9zlFZiJJkiRJkmpLh/YOQJIkSZIkrcqEXZIkSZKkGmTCLkmSJElSDTJhlyRJkiSpBpmwS5IkSZJUg0zYJUmSJEmqQSbskiRtRCJiSUT02YD36xoRv4mIxRHxyw11341NRMyPiFEb4D6TIuKbbX2fdRUREyLip+0dhyRt7DZr7wAkSdqURUQ9sC2wAlgK/A74fGYuqVY+M7tvuOgAOIwivh6ZuXwD33uNRMQk4InM/OqGvndm9lvbuk3+DQDck5mj10dckqSNmz3skiS1vwPLRHwwMBRYJeGMiPb6kn1H4C+tTdbbMc6N3YGZ2b38afNkPQr+/0BJqnH+h1qSpBqRmf+g6GHvDxARGRGfi4iFwMKKc+8qf+8aEd+LiL+XQ9anRUTX8truEXFPRDwfEXNbGq4dEX0jYmpZdn5EHFSePwf4GnBEORT/k1XqToiIayPipxHxAjAuIraPiBsj4rmIeCQiPlVRvnNEXBQRT5Y/F0VE5/LaqIh4IiJOj4h/RcRTEXFwRHw4Iv5StvflZp7h08DRwOllrL+JiPERcV2TcpdExMXl71Mj4tsRMSMiXoiIX0fE1hVl1+Qd1kfEByveyS8i4sqIeLF8p0Obq7sWekbEH8q274iIHSvi2DMiZpb/HmZGxJ4V16ZGxLkRcTfwEtBnNeUbn6niuX5a8fmY8t/esxFxVtPywObNvYOIOCMi/lFeezgiPrAe348kvWmYsEuSVCMi4j+ADwP3V5w+GHgfsGuVKhcAQ4A9ga2B04GVEbEDcDPwzfL8fwHXRcQ2Ve7ZCfgNcAvwduALwNURsUtmng18C5hS9vz+uJnQxwLXAm8FrgZ+DjwBbE8xpP5bEbFvWfYrwO7AIGAgMJw3jijYDugC7EDxZcEPgY+XzzkCOCsidmoaQGZeXt77/DLWA4GfAvtFxFvLZ90MOBK4sqLqMcDxQC9gOXBJWbbV77AZB5Xv4a3AjcD/rKb81RGxKCJuiYiBqyl7NPANoCcwh+K5Kb9suLl8hh7AfwM3R0SPirqfAD4NbAm82IryVUXErsD3y1h6AVtR/M0qVX0HEbEL8HlgWGZuCYwB6ld3T0naFJmwS5LU/m6IiOeBacAdFElyg29n5nOZ+XJlhSiGMx8PnJKZ/8jMFZl5T2a+SpHg/jYzf5uZKzPzD8Asii8Dmtod6A6cl5mvZeZtwE3AUWsQ//TMvCEzV1Ikke8HzsjMVzJzDvAjisQYigTv65n5r8xcBJxDkUQ2WAacm5nLKJK9nsDFmfliZs4HHqRI9FcrM58C7gQOL0/tBzyTmbMril2VmQ9k5lLgLOA/I6Ija/YOq5lW1l0BXLWamI8GelNMP7gd+H3DlwzNuDkz7yz/1l8B9ii/7PkIsDAzr8rM5Zn5M+Ah4MCKupMyc345xWF0K8o35zDgN5k5LTNfo/hyJVv5DlYAnYFdI6JTZtZn5qOtuKckbXJM2CVJan8HZ+ZbM3PHzDypSXL+eDN1elL0RFdLdHYEDi+Hcj9ffhmwF0VPaFPbA4+XyXaDv7Nqb2lLKmPcHnguM19spr3ty8+V17av+PxsmeABNLyHpyuuv0zxBUNrTaZIvimPV7UQ+9+BThTvdk3eYTX/rPj9JaBLNDO/PzPvzsyXM/OlzPw28DzFaILmNMZcLk74HMU7bPpuG56p8m/Z9G+1uvLN2b5JHC8BzzYpU/UdZOYjwKnABOBfEfHziNgeSdIqTNglSaptTXstGzwDvALsXOXa4xQ9x2+t+OmWmedVKfsk8B/xxgXI3gn8Yy1jfBLYOiK2bKa9JymS4cprT67BvVobR4MbgAER0R84gHL4eIX/aBLLMop3uybvcH1LIFq43hhzRHSnGLL/JKu+W1j1b9n0b9VS+aXAFhXXtqv4/SngHRVxdKUYVt8qmXlNZu5V3j+B77S2riRtSkzYJUnaCJU94j8B/rtc5K1jROxRLuD2U+DAiBhTnu9SLuj2jipN/Ymi9/P0iOhULqx2IMVw9LWJ63HgHuDb5X0HAJ8sYwL4GfDViNgmInpSDKVeX/t1Pw28YY/6zHyFYn79NcCMzHysSZ2PR8SuEbEF8HXg2rKHf03e4VqLiHdGxPsjYvPyHuMpevjvbqHahyNir4jYnGIu+73le/8t8J6I+FhEbBYRR1CsfXBTM+2srvwc4Mjy38VQimHwDa6leD97lnFMoOUvGSqfeZeI2Lf8t/oKxaiJlaupJkmbJBN2SZI2Xv8FzANmUgyL/g7QoUzexgJfBhZR9BaPp8r/7pfzjw8E9qfoWf4+cExmPrQOcR1FMSf7SeB64OzMvLW89k2KueB/LmO/rzy3PvyYYl708xFxQ8X5yUAdqw6Hpzw3iWL4dhfgZGj84qFV73AdbQlcBvybomd7P2D/zGw6vLzSNcDZFH/zIZRD/ss6BwD/j2J4+unAAZn5TLVGWlH+LIoRHP+mWGvgmoq68ykWKPw5RW/7EuBfwKuteObOwHkU/97+SbHY4ZdaUU+SNjmR2dxIO0mSpI1fRLyTYjG17TLzhYrzU4GfZuaP2iu2N4tyaP7zwLsz82/tHY8kvVnYwy5Jkt60yrn5XwR+Xpmsa91FxIERsUVEdKPYYnAebs8mSetV1dVKJUmSNnZlIvk0xcrn+7VzOG9GYymmFATFNIcj06GbkrReOSRekiRJkqQa5JB4SZIkSZJqkAm7JEmSJEk1yDnsalc9e/bM3r17t3cYkiRJktQuZs+e/UxmblPtmgm72lXv3r2ZNWtWe4chSZIkSe0iIv7e3DWHxEuSJEmSVINM2CVJkiRJqkEm7JIkSZIk1SDnsEuSJElSjVq2bBlPPPEEr7zySnuHonXUpUsX3vGOd9CpU6dW1zFhlyRJkqQa9cQTT7DlllvSu3dvIqK9w9FaykyeffZZnnjiCXbaaadW13NIvCRJkiTVqFdeeYUePXqYrG/kIoIePXqs8UgJE3ZJkiRJqmEm628Oa/N3NGGXJEmSJNWcG264gQcffLC9w2hXJuySJEmSpFbJTFauXLlB7mXCbsIuSZIkSWpBfX09u+yyC8cccwz9+/fnk5/8JP3796euro4pU6YARSI/fvz4Vc5PnTqVkSNHMnbsWPr06cOZZ57J1VdfzfDhw6mrq+PRRx+tes977rmHG2+8kfHjxzNo0CAeffRRBg8e3Hh94cKFjZ979+7N6aefTl1dHcOHD+eRRx4BYNGiRRx66KEMGzaMYcOGcffdd7fla2oTrhIvSZIkSWrRwoULmTx5Mv/4xz+YOHEic+fO5ZlnnmHYsGHsvffe3HPPPcyZM2eV8wBz585lwYIFbL311vTp04cTTjiBGTNmcPHFF3PppZdy0UUXrXK/Pffck4MOOogDDjiAww47DICtttqKOXPmMGjQIK644gqOO+64xvJbbbUV8+bN48orr+TUU0/lpptu4pRTTuG0005jr7324rHHHmPMmDEsWLBgw7yw9cQedkmSJElSi3bccUd23313pk2bxlFHHUXHjh3ZdtttGTlyJDNnzmz2PMCwYcPo1asXnTt3Zuedd2b06NEA1NXVUV9f3+oYTjjhBK644gpWrFjBlClT+NjHPtZ47aijjmo8Tp8+HYBbb72Vz3/+8wwaNIiDDjqIF154gSVLlqynN7Jh2MOudjX/2fnUTa5r7zCkNjHv2HntHYIkSdJ60a1bt7Wu27lz58bfO3To0Pi5Q4cOLF++vNXtHHrooZxzzjnsu+++DBkyhB49ejReq1yBveH3lStXcu+999KlS5e1jr292cMuSZIkSWqVESNGMGXKFFasWMGiRYu48847GT58eLPn18WWW27Jiy++2Pi5S5cujBkzhhNPPPENw+GBxjnzU6ZMYY899gBg9OjRXHrppY1l5syZs07xtAcTdkmSJElSqxxyyCEMGDCAgQMHsu+++3L++eez3XbbNXt+XRx55JF897vfZbfddmtcnO7oo4+mQ4cOjcPqG/z73/9mwIABXHzxxVx44YUAXHLJJcyaNYsBAwaw6667MnHixHWKpz1EZrZ3DNqEdd2pa75rwrvaOwypTTgkXpIkrasFCxbQt2/f9g6jZlxwwQUsXryYb3zjG43nevfuzaxZs+jZs2c7RtY61f6eETE7M4dWK+8cdkmSJElSzTvkkEN49NFHue2229o7lA3GhF2SJEmS1G7OPfdcfvnLX77h3OGHH85XvvKVN5y7/vrrq9Zfk5XmNzYm7BuxiBgHXAEcl5mT2jea10XEBOBsYJ/MnNq+0UiSJEmqZV/5yldWSc5VaNNF5yKiY0R8KiLuiIjnImJZRPwrIv4cET+KiIOalB8XEVkmouvj/r3L9iatj/bWt4iYtD6fV5IkSZL05tFmPewR0RG4CdgPeB64GXgC2BzoB3wMeC9wY1vFIEmSJEnSxqoth8QfRZGszwVGZubiyosRsQXwvja8vzYC/V59jVl/e6y9w5DaxoSt1rH+4tWXkSRJ0ptWWw6J37M8TmqarANk5kuZeXvD54iYSjEfG+CKcqh4w0/vssz2EfG1iLg7Iv4ZEa9FxJMRcU1E7FrZfjmP+m/lx2ObtDeuSdkxEfHbiHgmIl6NiEcj4rsR8damcUdEffnTrSzzWFnnkYg4IyJibV5Wk3v0iYjLyzZfLqcTzIuIiRHRoxX19ynrPxgRL5RtPBARZ0dElyrlJ5TvZVREHBYRMyLipfK+P4+IHZq5z5CI+L+IeLG8z60Rsce6Pr8kSZIkqW172J8tj+9pZflJFEPnxwK/BuZUXHu+PO4NnAncDlwHLAHeDRwGHBQR78/MuWXZqcBbgVMoevlvqGivse2IOBuYADxHMYT/X8AA4L+AD0fEHpn5QpNYOwG/B7YHfgcsBw4GzgO6AOe08plXERG9gJnAW4Dfls/ZBdgJ+ATwP7z+bptzBsV0g3sopiJ0Ad5fPueoiPhgZq6oUu8k4CCKaQp3UIyAOAIYGBGDMvPVijj3BG6lmOLwK+ARYBDFe9909lmQJEmS3uQ6duxIXV1d4+cjjzySM888s9nyU6dOZfPNN2fPPYs+3IkTJ7LFFltwzDHHrNX9x40bxwEHHMBhhx22VvXXxrJly3jf+97Hfffdt8Z1J02axOjRo9l+++3XOY62TNh/RZE4fjYitgSuB2Zn5t+rFc7MSWXn9FjghmZWPb8N2DYzX6w8GREDgbspEub9y/amRkQ9RcI+JzMnNG0sIvahSGKnAx/OzOcrro2j6PE/BzitSdXtKb4E+FBmvlyWPwf4C3BaRHwrM5dVe85WOAzYGjg1My9uEm83YGUr2jgJ+FtmZpP63wC+Wt5jSpV6+wHDMnNeRZ1rKKY3jAV+UZ4L4CdAV+DgzPx1RflTgItaEaMkSZKkNdT7zJvXa3v1531ktWW6du3KnDlzVluuwdSpU+nevXtjwv7Zz362arnly5ez2Wa1uXHZtGnTeP/7379WdSdNmkT//v3XS8LeZkPiM/N+4OPA0+XxOqA+Ip6NiOsj4sC1aPNfTZP18vxcimR+n4jotAZNnlweP1WZrJdtTqLoiT+6uboNyXpDbBQjA7YCdlmDGJrzctMTmbm08p7Nycy/Nk3WSxeWxzHNVL2kMlkv/bA8Dq84tyfFM95ZmayX/gd4tKX4IuLTETErImYteqlamJIkSZJqXe/evTn77LMZPHgwdXV1PPTQQ9TX1zNx4kQuvPBCBg0axF133cWECRO44IILABg1ahSnnnoqQ4cO5eKLL2b27NmMHDmSIUOGMGbMGJ566qmq97rzzjvZc8896dOnD9deey0Amcn48ePp378/dXV1TJlS9ElOnTqVkSNHMnbsWPr06cOZZ57J1VdfzfDhw6mrq+PRR4t0ZdGiRRx66KEMGzaMYcOGcffddzfe7//+7//Yf//9ATj44IMZMmQI/fr14/LLL28s0717d0477TT69evHBz7wARYtWsS1117LrFmzOProoxk0aBAvv7za9K1FbbqtW2b+AngnRYL4DYoh5x0oho/fGBGT13TOd0R8JCJ+ExFPldvEZUQkcCDQGei5Bs3tASwDDi/ncb/hh2K49zZV5o0vzsxHqrT3eHl825o8UxM3Ugz1/9+IuK5MbvutyXsq59d/OSJmRsTiiFhZvqOGofRV56QDs6qcq/ZMg8vjHU0Ll0Ptp7UUX2ZenplDM3PoNlus85R/SZIkSW3o5ZdfZtCgQY0/DYkxQM+ePbnvvvs48cQTueCCC+jduzef/exnOe2005gzZw4jRoxYpb3XXnuNWbNmcfLJJ/OFL3yBa6+9ltmzZ3P88cc3ux/7U089xbRp07jpppsah+P/6le/Ys6cOcydO5dbb72V8ePHNyb8c+fOZeLEiSxYsICrrrqKv/zlL8yYMYMTTjiBSy+9FIBTTjmF0047jZkzZ3LddddxwgknNN7v9ttvZ9SoUQD85Cc/Yfbs2cyaNYtLLrmEZ58t0qqlS5cydOhQ5s+fz8iRIznnnHM47LDDGDp0KFdffTVz5syha9eu6/Tu23z8QTk0/Jbyp2G7t0MphlQfQzFU/oZmG6hQMdz638AfgMeAl4Ck+BJgIEXS3lo9KN7B2asp1503zht/vplyy8tjxzWI4Q0y8+8RMZxiqP5+wEfLS49HxAWZeUlL9csRBrdR9Ig/QDH0fRHFFxNQPGtz76jac1V7poalr59upp1/thSjJEmSpI1HS0PiP/rRIl0ZMmQIv/rVr1rV3hFHHAHAww8/zAMPPMCHPvQhAFasWEGvXr2q1jn44IPp0KEDu+66K08/XaQh06ZN46ijjqJjx45su+22jBw5kpkzZ/KWt7yFYcOGNba18847M3r0aADq6uq4/fZi7fNbb72VBx98sPEeL7zwAkuWLGHx4sVsvfXWbLHFFgBccsklXH/99QA8/vjjLFy4kB49etChQ4fGZ/n4xz/e+C7Wpw0+YaDsgf1FRNRRzKfel1Yk7BGxGUUS+09gcGY+1eT62qxOvhjokJlbr0XdNpOZC4AjymceCHwQ+AJwcUQszcwft1B9LEWyPikzj6u8UC5ot7ovJ1qjYdX/bZu5vt16uIckSZKkGte5c9EX2LFjR5YvX76a0oVu3boBxZD2fv36MX369Fbfp6HempTv0KFD4+cOHTo0xrly5UruvfdeunR540ZaU6ZMYcyYYhbx1KlTufXWW5k+fTpbbLEFo0aN4pVXXql6z/WwYdgq2nRI/Go0zEWvfKqGlcur9VD3pFj1/Z4qyXp3Xh+mXaml9gDuBd4WEf1aFfEGlpnLM3N2Zn6HYuE3KEYStORd5bHa11sj11NoDUslrtJeOYJir/V0H0mSJEkbmS233JIXX1xl6bFV7LLLLixatKgxYV+2bBnz589v9X1GjBjBlClTWLFiBYsWLeLOO+9k+PDhq69YGj16dOPweKBxFEHl/PXFixfztre9jS222IKHHnqIe++9t7H8ypUrG+fTX3PNNey1V5EGtfb5W6PNetgj4ijgGeCPmbmyybXtgE+VH++suNQw7PydVZr8F8Xw9yER0T0zl5RtdQIupvrc9X9TDJev1h4Ui7B9BPhhRByWmU82ibMbUJeZ91at3QYiYgjwSJW96xt6s19aTRP15XEU8JuKdvsA31kPIUKxXdzDwN4RMbbJwnOfB3ZubUPzsg+9X3FReamq9bwKrCRp7bRmFW3pzaxhDnuD/fbbj/POO6/Z8gceeCCHHXYYv/71r9+QEDe1+eabc+2113LyySezePFili9fzqmnnkq/fq3rTz3kkEOYPn06AwcOJCI4//zz2W677XjooYdaVf+SSy7hc5/7HAMGDGD58uXsvffe/O///i+PPPII733vexufdeLEifTt25dddtmF3XffvbF+t27dmDFjBt/85jd5+9vf3ji3f9y4cXz2s5+la9euTJ8+fZ3msUdrhhOsVcMRF1FsqfZPikXI/lZe2okiSe5Ksar6IQ0rmkfE24AnKOZNX8Xrc6EvzczFEfFtin3Y68u6mwP7UGyDNr/8fafMrK+IYzrFfuI/o9h2bQVwY2b+ubx+BvBtilXZf1vG2R3YkaIHeVpm7lfRXj1AZvau8swTKIac75OZU1vxjiYBxwLHNWxjV763z5Tv7FGKLx12plhUL8q2p5dlx1FsPVdZvxvF6vbvopjnfz/FFxYHUOzJfgRwR2aOak3cEdG7fCeTM3Ncxfn3l+033Yf9AxRz6PdrzXvo3Ovd2etYE3ZJklS7TNjVnhYsWEDfvn3bO4xNxrRp0/jpT3/KxIkTV1u2e/fuLFmyZI3ar/b3jIjZmTm0Wvm2nMP+PWAhxfzrARQrxXeh6EWfClwDXFO5/Vhm/jsiDqVIHscB3cpLP6WYN30WxQJqJ1AktYspksavUuyXXs0nKHrS96MYVh4UXwr8ubzndyLiboot3vaimAO+GPgHcHkZ54b0M4pF4fYEhlB8sfEP4OfA9zLzgZYqZ+bSiNiXYk/6UcAI4K8Uq/T/N0XCvs4y8+6IGAGcC+xfnv5Tec8xFO9bkiRJkjYae+21V+PQ9lrQZj3sUmvYwy5JkmqdPexqT/awv7msaQ97ey46J0mSJEmSmmHCLkmSJElSDTJhlyRJkiSpBpmwS5IkSZJUg0zYJUmSJEnN6tixI4MGDaJ///4cfvjhvPTSS1XL7bnnnmvVfn19Pddcs6E359o4tOW2btJq1e2wFbNceVWSJElqnQlbref2Fq+2SNeuXZkzZw4ARx99NBMnTuSLX/xi4/Xly5ez2Wabcc8996xVCA0J+8c+9rG1qp+ZZCYdOrz5+qPffE8kSZIkSWoTI0aM4JFHHmHq1KmMGDGCgw46iF133RWA7t27A3DkkUdy8803N9YZN24c1157LfX19YwYMYLBgwczePDgxgT/zDPP5K677mLQoEFceOGFrFixgvHjxzNs2DAGDBjAD37wg1XiqK+vZ5ddduGYY46hf//+PP7444wfP57+/ftTV1fHlClTgCKZr3Z+6tSpjBw5krFjx9KnTx/OPPNMrr76aoYPH05dXR2PPvpom77H1rKHXZIkSZK0WsuXL+d3v/sd++23HwD33XcfDzzwADvttNMbyh1xxBH84he/4CMf+QivvfYaf/zjH7nsssvITP7whz/QpUsXFi5cyFFHHcWsWbM477zzuOCCC7jpppsAuPzyy9lqq62YOXMmr776Ku9///sZPXr0KvdZuHAhkydPZvfdd+e6665jzpw5zJ07l2eeeYZhw4ax9957c88991Q9DzB37lwWLFjA1ltvTZ8+fTjhhBOYMWMGF198MZdeeikXXXTRBnirLbOHXZIkSZLUrJdffplBgwYxdOhQ3vnOd/LJT34SgOHDh6+SRAPsv//+3H777bz66qv87ne/Y++996Zr164sW7aMT33qU9TV1XH44Yfz4IMPVr3fLbfcwpVXXsmgQYN43/vex7PPPsvChQtXKbfjjjuy++67AzBt2jSOOuooOnbsyLbbbsvIkSOZOXNms+cBhg0bRq9evejcuTM777wzo0ePBqCuro76+vr18erWmT3skiRJkqRmVc5hr9StW7eq5bt06cKoUaP4/e9/z5QpUzjyyCMBuPDCC9l2222ZO3cuK1eupEuXLlXrZyaXXnopY8aMaTGu5u7fWp07d278vUOHDo2fO3TowPLly9ep7fXFHnZJkiRJ0np1xBFHcMUVV3DXXXc1DqFfvHgxvXr1okOHDlx11VWsWLECgC233JIXX3yxse6YMWO47LLLWLZsGQB/+ctfWLp0aYv3GzFiBFOmTGHFihUsWrSIO++8k+HDhzd7fmNhD7skSZIkab0aPXo0n/jEJxg7diybb745ACeddBKHHnooV155Jfvtt19jD/mAAQPo2LEjAwcOZNy4cZxyyinU19czePBgMpNtttmGG264ocX7HXLIIUyfPp2BAwcSEZx//vlst912zZ5/6KGH2vwdrA+Rme0dgzZhQ4cOzVmzZrV3GJIkSVJNWrBgAX379m3vMLSeVPt7RsTszBxarbxD4iVJkiRJqkEm7JIkSZIk1SATdkmSJEmSapAJuyRJkiRJNciEXZIkSZKkGmTCLkmSJElSDTJhlyRJkiQ169xzz6Vfv34MGDCAQYMG8ac//QmA3r1788wzz7T5/UeNGsWmuhX0Zu0dgCRJkiSpdeom163X9uYdO6/F69OnT+emm27ivvvuo3PnzjzzzDO89tpr63zf5cuXs9lm6y8dXbFiBR07dlxv7dUKe9glSZIkSVU99dRT9OzZk86dOwPQs2dPtt9++8brl156KYMHD6auro6HHnoIgBkzZrDHHnuw2267seeee/Lwww8DMGnSJA466CD23XdfPvCBD7B06VKOP/54hg8fzm677cavf/1rAF5++WWOPPJI+vbtyyGHHMLLL79cNbbevXtzxhlnMHjwYH75y1/ys5/9jLq6Ovr3788ZZ5zRWK658927d2f8+PH069ePD37wg8yYMYNRo0bRp08fbrzxxvX7IteSCbskSZIkqarRo0fz+OOP8573vIeTTjqJO+644w3Xe/bsyX333ceJJ57IBRdcAMB73/te7rrrLu6//36+/vWv8+Uvf7mx/H333ce1117LHXfcwbnnnsu+++7LjBkzuP322xk/fjxLly7lsssuY4sttmDBggWcc845zJ49u9n4evTowX333cfee+/NGWecwW233cacOXOYOXMmN9xwA08++WTV8wBLly5l3333Zf78+Wy55ZZ89atf5Q9/+APXX389X/va19rgba45h8RLkiRJkqrq3r07s2fP5q677uL222/niCOO4H4J1BkAACAASURBVLzzzmPcuHEAfPSjHwVgyJAh/OpXvwJg8eLFHHvssSxcuJCIYNmyZY3tfehDH2LrrbcG4JZbbuHGG29sTPRfeeUVHnvsMe68805OPvlkAAYMGMCAAQOaje+II44AYObMmYwaNYptttkGgKOPPpo777yTiKh6/uCDD2bzzTdnv/32A6Curo7OnTvTqVMn6urqqK+vXx+vb52ZsEuSJEmSmtWxY0dGjRrFqFGjqKurY/LkyY0Je8NQ+Y4dO7J8+XIAzjrrLPbZZx+uv/566uvrGTVqVGNb3bp1a/w9M7nuuuvYZZdd1jq2yvbWVKdOnYgIADp06ND4LB06dGh8lvbmkHhJkiRJUlUPP/wwCxcubPw8Z84cdtxxxxbrLF68mB122AEo5q03Z8yYMVx66aVkJgD3338/AHvvvTfXXHMNAA888AB//vOfVxvn8OHDueOOO3jmmWdYsWIFP/vZzxg5cmSz5zcWJuySJEmSpKqWLFnCsccey6677sqAAQN48MEHmTBhQot1Tj/9dL70pS+x2267tdhTfdZZZ7Fs2TIGDBhAv379OOusswA48cQTWbJkCX379uVrX/saQ4YMWW2cvXr14rzzzmOfffZh4MCBDBkyhLFjxzZ7fmMRDd9mSO1h6NChuanuqShJkiStzoIFC+jbt297h6H1pNrfMyJmZ+bQauXtYZckSZIkqQaZsEuSJEmSVINM2CVJkiRJqkEm7JIkSZJUw1x37M1hbf6O7sOudjX/2fnUTa5r7zCkTca8Y+e1dwiSJGkNdOnShWeffZYePXo07hmujU9m8uyzz9KlS5c1qmfCLkmSJEk16h3veAdPPPEEixYtau9QtI66dOnCO97xjjWqY8IuSZIkSTWqU6dO7LTTTu0dhtqJc9glSZIkSapBJuySJEmSJNUgE3ZJkiRJkmqQCbskSZIkSTXIhF2SJEmSpBpkwr4eRMTQiLgiIv4aES9HxAsRMTcivhMR27V3fJIkSZKkjU9kZnvHsNGKiADOA04HlgN/AOYBmwN7AsOBJcBRmXlTe8VZy4Zu3zFnfbp7e4chqdKExe0dgSRJ0iYjImZn5tBq19yHfd2cRZGs1wMHZOb8yosRcSjwU+BXETEiM/+04UOUJEmSJG2MHBK/liKiN0XCvgw4qGmyDpCZ1wGnAZ2AiRV1J0RERsSoau2W1yZVubZFRHwpIuZExNKIWBIR0yPiqBbiHBMRv42IZyLi1Yh4NCK+GxFvrVK2vvzpVpZ5rKzzSEScUY4oaFrnoIj4Y0Q8VZZ9MiLuiIiTmotJkiRJkrR6Juxr7ziKEQrXZ+a8Fsr9CHgKGBQRu6/tzcoEexrwLWAF8BNgMrANcE1EfLNKnbOB/wPeB9wMXAI8AvwXcHdEvKXKrToBvwcOBX5Xxt+VYuj/15q0/2ng18CuwG+A7wG/Lcsft7bPKkmSJElySPy62Ks83tpSocxcHhG3Ax8D9gbuXcv7XQTsBpyRmec3nIyILsANwJcj4trMnFOe3weYAEwHPpyZz1fUGQdcAZxDMQKg0vbAXOBDmflyWf4c4C/AaRHxrcxcVpb9DPAaMDAz/1XZSET0XMvnlCRJkiRhD/u66FUeH29F2YYy71ibG0VED+DjwKzKZB0gM18BzgCC4kuBBieXx09VJutlnUnAHODoZm55ckOyXpb/F0VP+lbALk3KLqeYFvAGmflMC8/z6YiYFRGzFr3kooeSJEmSVI097BtWl7WsNwzoCGRETKhyvVN57Ftxbg+KRPrwiDi8Sp3NgW0iokdmPltxfnFmPlKlfMOXDm+rOHc1xTD4ByPi58AdwN2Zuailh8nMy4HLoVglvqWykiRJkrSpMmFfe/+kSJD/oxVlG8q0mMi2oEd5HFb+NKdyf7QeFH/fs1fTdnegMmF/vplyy8tjx4YTmfnfEfEMcBJFj/6pFF8q3AGMz8xZq7m3JEmSJKkZDolfe9PK4wdbKhQRHYFR5cfZ5XFleaz2hckqq7cDDZsiX5iZ0cLPPk3q/Hs15SMz/77aJ21BZl6ZmbtTfEHwEeDHFHP1fx8R26xL25IkSZK0KbOHfe1dAXwJOCQi+lXb1q10PMVCbs9RrNgO8O/yWK13fmiVczMokvwRaxDfvcBHVhPbelPOk/8t8NuI6EDx3HsD17VUb172ofcrF7V1eJLWxJk3t3cEktZB/Xkfae8QJEnriT3saykz/wZ8k2L++I0RsWvTMhFxMHBx+fGMzHyp/H1GeTwuIjarKP8fNNk6rbzXvyjmiw+NiLPKXvum99o5InaqOHVhefxhRGxfpXy3ddlmrmxjn2p7swNvL48vVbkmSZIkSWoFe9jXzdeBbsB4YG5E/B6YT5HE70mx/znA+Zn5o4ZKmfmniLiTogd6RkTcBmwLHEixB3q1nvfPA+8u7/mJiJgGPE3Re9+XYm77UcDfynv8MSLOBL4NLIyI35bXugM7AiMphvXvtw7Pfz2wJCLuBeopVqofUcYym9VseSdJkiRJap4J+zrIzAROj4hfAp+jSII/CHQuizwFHJOZ1RLXscB3y+MXgIXA6cAtwH9WudcLETES+DTF9m2HUqw6/3RZ9zTgD03qfCci7qZYEG6v8l6LgX9QrNJ+zdo+e+lMYAwwGPgw8Arwd4pt5i6r2K9dkiRJkrSGosg5tT5FxJYUvde7Aodn5g3tHFLN6tzr3dnrWOewS5K0vjiHXZI2LhExOzOrrWXmHPa2kJkvAgdQbOM2JSLWZdi5JEmSJGkTZMLeRjLzcWB/ijnkAyJi83YOSZIkSZK0EXEOexvKzLnA3PaOQ5IkSZK08bGHXZIkSZKkGmQPu9pV3Q5bMcvFcSRJkiRpFfawS5IkSZJUg0zYJUmSJEmqQSbskiRJkiTVIBN2SZIkSZJqkAm7JEmSJEk1yIRdkiRJkqQaZMIuSZIkSVINMmGXJEmSJKkGmbBLkiRJklSDTNglSZIkSapBJuySJEmSJNUgE3ZJkiRJkmqQCbskSZIkSTXIhF2SJEmSpBpkwi5JkiRJUg0yYZckSZIkqQaZsEuSJEmSVINM2CVJkiRJqkEm7JIkSZIk1SATdkmSJEmSapAJuyRJkiRJNciEXZIkSZKkGrRZawtGxJ5A78o6mXllG8QkSZIkSdImr1UJe0RcBewMzAFWlKcTMGGXJEmSJKkNtLaHfSiwa2ZmWwYjSZIkSZIKrZ3D/gCwXVsGIkmSJEmSXtdiD3tE/IZi6PuWwIMRMQN4teF6Zh7UtuHpzW7+s/Opm1zX3mFI2kTMO3Zee4cgSZLUaqsbEn/BBolCkiRJkiS9QYsJe2besaECkSRJkiRJr2vtKvEvUgyNr7QYmAX8v8z86/oOTJIkSZKkTVlrV4m/CHgCuAYI4EiKbd7uA34CjGqL4CRJkiRJ2lS1dpX4gzLzB5n5Yma+kJmXA2MycwrwtjaMT5IkSZKkTVJrE/aXIuI/I6JD+fOfwCvlNfdmlyRJkiRpPWttwn408AngX8DT5e8fj4iuwOfbKLY3jYiYFBEZEb3bOxZJkiRJ0sahVQl7Zv41Mw/MzJ6ZuU35+yOZ+XJmTmvrIJtTJsEZESsjYucWyt1eUXbcBgxxg4mICeXzjWrmul8aSJIkSdJGpLWrxF9BlaHvmXn8eo9ozS2neI5PAl9uejEi3k2xKF5DOdWQfq++xqy/PdbeYUjaVEzYqr0jePObsLi9I5Ak6U2jtUPibwJuLn/+CLwFWNJWQa2hpym2lzsuIqol5CeUx99suJAkSZIkSVo3rR0Sf13Fz9XAfwJD2za0NfJDYDvggMqTEdEJGAfcAzxYrWJEDImIiyNibkQ8FxGvRMTCiPheRKyyAn5EjGsYWh8R+0TE1Ih4MSJeiIibI6JvS4FGxGciYl55n6cj4vKIWKXLp2z78oh4sGz75Yh4ICLOjoguTcrWA2eXHyuH/2d5PYFjy+t/q7he317vQZIkSZLUsrUdIv5u4O3rM5B19DPgvyl602+oOH8QRZxnAO9qpu6ngEOAO4BbKb7EGAJ8Edg/It6XmS9WqXcAMBb4HTAR2BX4MDAsInbNzGeq1DkfGEPR238LsE95/3cB+zYpewbwXoovG24GugDvByYAoyLig5m5oix7EXAwMBKYDNQ3aeuc8vpA4GLg+fL88xVlNuR7kCRJkiStRmvnsL9IMYc9yuM/KRLKmpCZL0bEz4FxEfGOzHyivPQp4AXgF1SZ3176NvC5iuQXgIj4JPAj4CTgO1XqHUyxF/0fK+p8GzgTOJ4iOW9qd6AuMx8ry28G3AbsExHDM3NGRdmTgL9l5hvWDoiIbwBfBQ4DppTPf1FEvJUiYZ+UmVMr62TmhHKxuYHARZlZ387vQZIkSZK0Gq0dEr9lZr6l4viezLyurYNbQz8EOlIkiUTEjsCHgKsz86XmKmXm35smqaWfUCT7Y5qp+vPKJLV0eXkc3kydrzck6+W9lwNXVKtTrsxfbY/7C8tjc3GtlQ35HiLi0xExKyJmLXqp2iNKkiRJklq76BwRcVBEXFD+HLD6GhtWZv4JmAccHxEdKIbHd6BI5JsVEZ0i4vMRMa2cu72inPO9kmJxvR2aqTqryrnHy+Mqc77XtE5EdIuIL0fEzIhYXG5dl8CzZZHm4lorG/I9ZOblmTk0M4dus0Wse/CSJEmS9CbU2iHx5wHDgKvLU6dExJ6Z2dww8/byQ+ASYH/gOGB2Zt6/mjpTKOZu/xX4NcVw/1fLa6cCnZup93zTE5m5PCKg6OlvVR2K7ebeUKdcLO82ih7qB8oYFwHLyiJntxDX2tqQ70GSJEmStBqtXXTuw8CgzFwJEBGTgftpfl54e7mKYp71RIoe4a+3VDgihlIkqbcC+5dD1BuudQBOb7tQWzSWIlmflJnHVV6IiF68viL8elHD70GSJEmSNllrskr8W4Hnyt9X2YasFmTm8xFxLfAJYCnF6vEtaVg5/sbKJLU0HOi6nkNsrYa4flXl2shm6jTMP2+uV7ul6+32HuZlH3q/clFbNS9J2tDOvLm9I5Ak6Q3qz/tIe4ew1lo7h/1bwP0RMansXZ8NnNt2Ya2Tr1L0Fo9pZhuySvXlcVTlyYh4O/C/6z2y1qsvj6MqT0ZEH6qv1A6vz21/51pcb+5+7f0eJEmSJGmTtdoe9nJI9EqKLcmGlafPyMx/tmVga6tchf2x1RYszATuBj4aEfcA04BtKebAPww82SZBrt5vgEeAL0ZEHcX0g3dS7Hl+M9WT7tsp/k7fjoj+wL8BMvOb5fU/AuOBH0bEdcCLwPOZ+T/U7nuQJEmSpE3WanvYy3nrp2fmU5l5Y/lTk8n6miq3MTsIuAzYHjgZ2Iti3/ExvL7I24aOaymwL3AN0K+MawDwDeDjzdRZABxLsVjcSWXZb1Rc/z3w/yie6dTy2n+V12ryPUiSJEnSpiyqb/XdpFCxSvwzFCuJL204n5nPNVtJaoXOvd6dvY51DrskSZKktlHrc9gjYnZmDq12rbWLzh1RHj9XcS6BPusSmCRJkiRJqq5VCXtm7tTWgUiSJEmSpNe1KmGPiE7AicDe5ampwA8y07nNkiRJkiS1gdYOib8M6AR8v/z8ifLcCW0RlCRJkiRJm7rWJuzDMnNgxefbImJuWwSkTUvdDlsxq8YXgZAkSZKk9rDabd1KKyJi54YPEdEHWNE2IUmSJEmSpNb2sI8Hbo+Iv5afewPHtUlEkiRJkiSp1T3sdwM/AFYCz5W/T2+roCRJkiRJ2tS1NmG/EtgJ+AZwKcX+61e1VVCSJEmSJG3qWjskvn9m7lrx+faIeLAtApIkSZIkSa3vYb8vInZv+BAR7wNmtU1IkiRJkiSpxR72iJgHJMUe7PdExGPl5x2Bh9o+PEmSJEmSNk2rGxJ/wAaJQpIkSZIkvUGLCXtm/n1DBSJJkiRJkl7X2jnskiRJkiRpAzJhlyRJkiSpBpmwS5IkSZJUg0zYJUmSJEmqQSbskiRJkiTVIBN2SZIkSZJqkAm7JEmSJEk1yIRdkiRJkqQaZMIuSZIkSVINMmGXJEmSJKkGmbBLkiRJklSDTNglSZIkSapBJuySJEmSJNUgE3ZJkiRJkmqQCbskSZIkSTXIhF2SJEmSpBpkwi5JkiRJUg0yYZckSZIkqQZt1t4BaNM2/9n51E2ua+8wJOYdO6+9Q5AkSZLewB52SZIkSZJqkAm7JEmSJEk1yIRdkiRJkqQaZMIuSZIkSVINMmGXJEmSJKkGmbC/CURERsTUVpYdV5Yf17ZRSZIkSZLWhQl7hTKRbfrzakTUR8TkiOjb3jFKkiRJkjYN7sNe3TkVv28FDAeOAQ6NiL0yc077hCVJkiRJ2lSYsFeRmROanouIS4HPA6cC4zZwSG9a/V59jVl/e6y9w5BgwlbtHcGbw4TF7R2BJEnSm4ZD4lvvlvK4TeXJyjnhEbFfREyNiMURkRVltoqIb0fEwxHxSkT8OyJ+HxEfrHajiOgQEZ+NiJkRsSQilpa/nxgRrf6bRcT4iFgZEXdHxNbNlOkYEY9HxAsR0b2ZMpeWz3hYxbksn7VnRFweEU+V0wfmR8RxrY1RkiRJklSdCXvrNSTXs5q5fhhwE/AiMBGYAhARbwXuAc4EFgMXAdcBewC3RMRnqrR1FXAZsC3wI+Byii8Kvl9ea1GZ8F8CnA9cD3wgM5+rVjYzVwA/BLYEjqrSVlfg48A/gV83ufxW4O7yWa4FJgPbAz+JiGNXF6ckSZIkqXkOia8iIiZUfHwLMAx4P0VCfkEz1T4MfDgz/6/J+e8Au1Ik3Z/NzCzv8R2K5P+SiPh9ZtaX548CPgbcD+ydmUvK818F7gA+FhE3Z+Y1zcTeBbga+CjwP8ApmblyNY/8Q+As4DPl75WOoEjMv5WZy5pcGwj8GPhMmfgTERcBfwbOoEjgJUmSJElrwR726s6u+DkN2AtYAPwsM19sps6vmybrEbE5Re/0EuBLDck6QGYuBC4BNqdY0K7B8eXxzIZkvSy/lCIJBjihWgDlsPdbgUOAMzLzC61I1snMp4AbgCERMaTJ5c8AK1k1kQd4CfhiQ7JetvUgRa973xaG2H86ImZFxKxFL2W1IpIkSZK0yTNhryIzo+EH6A68D3gauDoizm2m2owq53YBtgDmNjMk/bbyuFvFucEUCfLUKuXvAFY0Kd9gW4pEeRjw8cw8v5k4m/P98tg4RD8i6oDdgcYRAE0szMwXqpx/vDy+rdqNMvPyzByamUO32SLWMExJkiRJ2jSYsK9GZi7NzBkUQ8yXAqdHxH9UKfrPKucalp1+qpnmG86/tUmd5zLztSqxLAeeqWi30nbAe8o4pjVzv2Zl5u0UowiOiogty9OfLo8/aKba882cX14eO65pHJIkSZKkggl7K2Xm88DDFPP+B1crUuVcw/5G2zXTbK8m5Rp+3zoiOjUtHBGbAT2Bar3ac4FjgR2AOyOiTzP3bMlEihEFR1csNvcPirn7kiRJkqQNyIR9zTQM8W7te3uYYp73wHK1+Kb2KY/3VZy7v2x/7yrl96botb6vyjUy86fAkRQrtd8ZEe9pZZwNJpfxfprXF5v7ceUcdUmSJEnShuEq8a0UEQcDOwHLKLZpW63MfC0irgY+BXwD+EJFezsDJ5ftVW7V9hPgA8C3I2JUZr5Ult8COK8s8+MW7nltRLwG/AK4IyI+mJnzWxnv4oi4hmJRu29SzJevttjcejMv+9D7lYva8haSNqQzb27vCCSpptSf95H2DkHSRsyEvYom27p1o9iWbf/y85cz8+k1aO5MYATw+YgYBtxOMaz9Pyn2Pv98Zv6toXBmXhMRY8vr8yPiBorh9g1fGEzJzKtbumFm3li2cT0wtUza57Yy3u9TJOw7AL/JzCfW4FklSZIkSeuJCXt1Z1f8vgJYBPwG+J/M/MOaNJSZz0XEHsCXKBau+yLwMsWq8t/NzFuqVDuKYkX443l91fYFwPeAy1p5399HxIfLuG+PiDGZObMV9e6PiDnAIJpfbE6SJEmS1MaiYmtwiXKF+CeB54CdWrOP+7ro3Ovd2etYh8RLkqQ3J4fES1qdiJidmUOrXXPROTV1IsVK8d9v62RdkiRJktQ8h8SLiNiKIlHfgWKBvKco5rJLkiRJktqJCbug2K7u28CrwGzgC5n5YvuGJEmSJEmbNhN2kZn1QLR3HJIkSZKk1zmHXZIkSZKkGmQPu9pV3Q5bMcvVUyVJkiRpFfawS5IkSZJUg0zYJUmSJEmqQSbskiRJkiTVIBN2SZIkSZJqkAm7JEmSJEk1yIRdkiRJkqQaZMIuSZIkSVINMmGXJEmSJKkGmbBLkiRJklSDTNglSZIkSapBJuySJEmSJNUgE3ZJkiRJkmqQCbskSZIkSTXIhF2SJEmSpBpkwi5JkiRJUg0yYZckSZIkqQaZsEuSJEmSVINM2CVJkiRJqkEm7JIkSZIk1SATdkmSJEmSapAJuyRJkiRJNciEXZIkSZKkGmTCLkmSJElSDTJhlyRJkiSpBpmwS5IkSZJUg0zYJUmSJEmqQZu1dwDatM1/dj51k+vaOwypXcw7dl57hyBJkqQaZg+7JEmSJEk1yIRdkiRJkqQaZMIuSZIkSVINMmGXJEmSJKkGmbBLkiRJklSDTNglSZIkSapBJuw1ICKyys+rEVEfEZMjom97xyhJkiRJ2rDch722nFPx+1bAcOAY4NCI2Csz57RPWJIkSZKkDS0ys71j2ORFRAJkZlS5dinweWByZo7bwKG1uaHbd8xZn+7+/9u7+yDJqvKO499fNEBAhS3AQMS4SBCjIkrWGMAoSGJA1AABoSrqQiQBE158oSKghhdjgqUGAmsgxEJSYIQqLENQFFK8RxIooMRQKC8Jq4XhfdkNsPL+5I97RzpN9+zOzE73nZnvp+rWpc89597Tw7Nn5um+95xxd0OaX05YNe4eSJIkaS0luamqlgw65i3x3XdZu9+8tzDJQe2t8wcl2SPJVUlWTST/bZ2Nk/x1ktuTPJHkkSSXJvmd/osk2bU93wlJ3pTk20lWJlmd5OokO/fV37o9viLJq/qObZTkh0meTbLruvtRSJIkSdLCYcLefRPJ9Y1Dju8HfAt4FDgTuAAgySbAdcAxwCrgVOAbwE7AZUkOHXK+JW27DYCvtOd+G3B5ku0mKlXV3cAhwCLgn5L0Pl7xd8BrgZOq6qopvFdJkiRJUstn2DskyQk9L18GvAXYhSZp/uKQZu8G3l1V3+0r/zzwOuAs4LBqn31I8nma5P+0JJdW1fK+dnsBB1fVOT39OpTmw4CjgD+dKK+qC5OcAXwE+CxwbJKlNM/dX9mWSZIkSZKmwYS9W44fUHYb8PWqenRIm4v6k/Uk6wEfAB4Djq2eiQqq6s4kpwGfpkmsT+o73/d6k/XW2cAymknw+n0c2Bn4ZJKfAicDDwJ/WFXPDemzJEmSJGkNvCW+Q6oqExvwEuCtwP3A15J8bkizGwaUbQdsCNxSVSsGHL+i3b95wLEX3HpfVU+3/Vg04NgTwAHA48Dp7XU/VFX3DukvSf4kyY1JbnxwtZMeSpIkSdIgJuwdVVWPV9UNwL40yfCfJ3nlgKr3DSjbuN0PS5onyjcZcGzlkDbPAC8acuwO4Aftf9/G8xPlDVRVZ1XVkqpasvmGL5gYX5IkSZKECXvnVdVK4Haaxxd2HFRlQNnEmk5bDDntln31ZuoYmtviHwJeDxy7js4rSZIkSQuWCfvcMHEr+tr+/7odWA3s0M4W32+3dn/zTDvWLvd2UnvNN7T7E5O8babnliRJkqSFzEnnOi7J3sDWwNM0y62tUVU9leRrwB/TzNR+RM/5tgGObM937gz7tgj4OvAscGBV3Z/kAOB6mqXe3jTkGfqf+896NYufOHUm3ZDU75hvj7sH0tgtP3mvcXdBkqQZM2HvkL5l3TaiWZZtz/b1cVV1/xROdwzw28DhSd5Cs8zaZsD7gZcCh7drqc/E2cCvAkdW1fcBquqWJJ+gmVX+HOB9M7yGJEmSJC1IJuzd0rus27M0y6NdDCyrqn+dyomqakWSnWieJ9+XZvm1n9HMKv+Fqpp0Yrg1SXIEsDfwL1V1et+1v5xkd2CfJB+rqlNmci1JkiRJWojSs0S3NHLrb7ltbbnUW+IlSeuWt8RLkuaKJDdV1ZJBx5x0TpIkSZKkDjJhlyRJkiSpg0zYJUmSJEnqIBN2SZIkSZI6yIRdkiRJkqQOclk3jdX2r9iYG53JV5IkSZJewG/YJUmSJEnqIBN2SZIkSZI6yIRdkiRJkqQOMmGXJEmSJKmDTNglSZIkSeogE3ZJkiRJkjrIhF2SJEmSpA4yYZckSZIkqYNM2CVJkiRJ6iATdkmSJEmSOsiEXZIkSZKkDjJhlyRJkiSpg0zYJUmSJEnqoFTVuPugBSzJo8Dt4+6HFqzNgIfG3QktWMafxsn40zgZfxqnLsbfq6pq80EHXjzqnkh9bq+qJePuhBamJDcafxoX40/jZPxpnIw/jdNciz9viZckSZIkqYNM2CVJkiRJ6iATdo3bWePugBY040/jZPxpnIw/jZPxp3GaU/HnpHOSJEmSJHWQ37BLkiRJktRBJuySJEmSJHWQCbtGLslWSc5O8j9JnkyyPMmpSRaNu2+aH9qYqiHbfUPa7JzkkiQrkvwsyQ+SfDTJi0bdf3Vfkv2SnJ7k2iT/28bWeWtoM+UYS/KeJFclWZXksSTXJ1m67t+R5pKpxF+SxZOMh5Xk/EmuszTJDW3srWpj8T2z987UdUk2TXJIkm8muasdy1Yl+bckH04yMLdw/NO6MNX4my/jn+uwa6SSbANcB7wcuAj4EfCbwFHAHkl2qaqHx9hFzR+rgFMHlD/WX5Dk94FvAE8AFwArgPcCpwC7APvPXjc1R30a2IEmnu4BXjtZ5enEWJLDgdOBh4HzgKeA/YBzkmxfVUevqzejOWdK8de6BfjnAeW3Dqqc5IvAJ9rzjdgBowAABm9JREFU/wOwHnAgcHGSI6pq2TT6rblvf+AM4F7gSuAnwC8D+wJfAfZMsn/1TJLl+Kd1aMrx15rb419VubmNbAMuBQo4oq/8b9ryM8fdR7e5vwHLgeVrWfdlwAPAk8CSnvINaD5cKuDAcb8nt25twG7AtkCAXds4OW9I3SnHGLCY5o/bh4HFPeWLgLvaNjuN++fgNp5tivG3uD1+zhTOv3Pb5i5gUd+5Hm5jc/G4fw5uo9+Ad9Ik27/QV74FTfJUwB/0lDv+ua2zbRrxNy/GP2+J18i0366/iyaZ+nLf4eOBx4EPJtloxF3TwrYfsDlwflXdOFFYVU/QfIsF8JFxdEzdVVVXVtWd1f4WX4PpxNgfAesDy6pqeU+bR4C/al8eNs3ua46bYvxNx0Rsfa6NuYnrLqf5/b0+cPAsXVsdVlVXVNXFVfVcX/l9wJnty117Djn+aZ2ZRvxNR+fGPxN2jdJu7f6yAf/QHgW+B2wI/NaoO6Z5af0kH0hyXJKjkuw25Fm5d7b77w44dg2wGtg5yfqz1lPNd9OJscnafKevjrQ2fiXJoe2YeGiSN05S1/jTdDzd7p/pKXP806gMir8Jc3r88xl2jdJ27f6OIcfvpPkG/jXA5SPpkeazLYBz+8ruTnJwVV3dUzY0LqvqmSR3A68HXg38cFZ6qvluOjE2WZt7kzwObJVkw6paPQt91vzzu+32c0muApZW1U96yjYCXgE8VlX3DjjPne3+NbPUT81BSV4MfKh92ZvoOP5p1k0SfxPm9PjnN+wapY3b/aohxyfKNxlBXzS/fRXYnSZp3wjYHvh7muePvpNkh566xqVm23RibG3bbDzkuDRhNfBZ4DdongFeBLyDZsKmXYHL+x5Fc0zUdJwMvAG4pKou7Sl3/NMoDIu/eTH+mbBLmneq6sT2Oaf7q2p1Vd1aVYfRTG74S8AJ4+2hJI1GVT1QVX9RVTdX1cp2u4bmjrbrgV8DDhlvLzWXJTmSZkbtHwEfHHN3tMBMFn/zZfwzYdcorekT0YnylSPoixamiQlJ3t5TZlxqtk0nxta2zbBvAaRJVdUzNMsggWOipqldfu1vgduA3apqRV8Vxz/NmrWIv4Hm2vhnwq5Rur3dD3vuY9t2P+wZd2mmHmz3vbc/DY3L9pmorWkmMPnv2e2a5rHpxNhkbbakieF7fH5TM/SCMbGqHgd+CrykjbV+/q4WAEk+SrNW+q00ydJ9A6o5/mlWrGX8TWbOjH8m7BqlK9v9u5L8v9hL8lJgF5pnTf5j1B3TgjGxAkHvHwZXtPs9BtR/O83KBddV1ZOz2THNa9OJscna7NlXR5quQWMiGH9agySfBE4Bvk+TLD0wpKrjn9a5KcTfZObM+GfCrpGpqv8CLqOZ+OvP+g6fSPMJ17ntp1vStCT59b4JRCbKFwPL2pfn9Ry6EHgIODDJkp76GwB/2b48Y1Y6q4ViOjH2VeBJ4PA2difaLAKOa1+eibQGSXbs/5C8Ld8d+Fj78ry+wxOx9ak25ibaLKb5/f0kTYxqAUryGZpJvm4Cdq+qhyap7vindWoq8Tdfxr9U1SivpwUuyTbAdcDLgYtolvB4K80a7XcAO1fVw+Proea6JCfQTD5yDfBj4FFgG2AvYAPgEmCfqnqqp83eNH9UPAGcD6wA3keztMyFwPvLwVI92pjZu325BfB7NJ/SX9uWPVRVR/fVn1KMJTkCOA14GLgAeArYD9gK+FLv+bWwTCX+2qWLtqX53XtPe/yNPL+O8GeqaiJx6r3Gl4CPt20uBNYDDgA2BY6oqmX9bTT/JVkKnAM8S3M78qDnyJdX1Tk9bRz/tE5MNf7my/hnwq6RS/JK4CSaW002Be4FvgmcWFWPjLNvmvuSvAM4DHgzzy/rtpLmtqlzae7ieMHAl2QX4FPATjSJ/V3A2cBpVfXsaHqvuaL9YOj4Sar8uKoW97WZcowleS9wNLAjzV1xtwHLquofZ/gWNIdNJf6SfBjYh2bJo82AXwTuB/6dJpauHXaSJAfRfKP0OuA54GbgC1X1rRm/Cc1JaxF7AFdX1a597Rz/NGNTjb/5Mv6ZsEuSJEmS1EE+wy5JkiRJUgeZsEuSJEmS1EEm7JIkSZIkdZAJuyRJkiRJHWTCLkmSJElSB5mwS5IkSZLUQSbskiRJkiR1kAm7JEmSJEkdZMIuSZIkSVIHmbBLkiRJktRB/wcp1uGWxAaQXAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "abb_vis_df_pt.plot(kind = 'barh', legend = True, style = 'ggplot',figsize=(15,5), fontsize= 20, title='Price of room type in 5 boroughs')" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYIAAAEHCAYAAACjh0HiAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3deZhcdZ3v8fenqjsLZGNJWBIwGQmjkZ0QQHFcBgSZK+iILK4oV64z4nJdrvg4owxXr8PwjI6OjAPu4oKCys0VFAVBHIFAWIQkiIZAJAFNwCSEQJaq+t4/zqlOpdJJ90n6dHXl93k9Tz9V59Q5Vd8fVPrbv10RgZmZpavS6QDMzKyznAjMzBLnRGBmljgnAjOzxDkRmJklrqfTAeyIvffeO6ZPn97pMMzMusrdd9/9ZERMbj/flYlg+vTpzJ8/v9NhmJl1FUlL+zvvpiEzs8Q5EZiZJc6JwMwscU4EZmaJcyIwM0ucE4GZWeKcCMzMEudEYGaWuGQTwS0PreCNX7qDRsP7MZhZ2pJNBPcvW8NtDz/Fhlqj06GYmXVUsomgltcENjWcCMwsbckmgnqeAGp1Nw2ZWdqSTQR9NYK6awRmlrZkE0G97kRgZgYpJ4LIEoGbhswsdekmAjcNmZkBCSeCzX0ErhGYWdqSTQTNPoKah4+aWeKSTQQeNWRmlkk2ETTnEbhpyMxSl24iyH//e9SQmaUu3UTQVyNw05CZpS3ZRFDzhDIzMyDhRNCcR1DzMtRmlrhkE4FHDZmZZZJNBHVPKDMzA5wIqLlGYGaJSz4RuGnIzFKXbCKoeUKZmRmQcCLYPGrINQIzS1uyicCrj5qZZZJNBO4jMDPLOBE4EZhZ4pJPBF50zsxSl2wicB+BmVkm2UTgpiEzs0yyiaA5bNTDR80sdckmgmZFwE1DZpa60hOBpFMkPSRpsaQL+3n9QEk3S7pX0v2STi07JvDGNGZmTaUmAklV4DLg1cAs4BxJs9ou+wfg+xFxJHA28B9lxtRU86ghMzOg/BrBHGBxRCyJiI3AVcDpbdcEMCF/PhF4vOSYAHcWm5k1lZ0IpgKPtRwvy8+1ugh4s6RlwPXAe/p7I0nnS5ovaf7KlSt3OjBvTGNmlhkJncXnAF+PiGnAqcCVkraKKyKuiIjZETF78uTJO/2h3qrSzCxTdiJYDhzQcjwtP9fqPOD7ABFxOzAG2LvMoCLCTUNmZrmyE8FdwExJMySNIusMntt2zR+AvwaQ9EKyRLDzbT/b0VoJ8PBRM0tdqYkgImrABcANwINko4MWSrpY0mn5ZR8E3inpN8B3gXMjotTfzq2TyLxVpZmlrqfsD4iI68k6gVvPfbzl+SLgJWXH0areUiVwjcDMUjcSOouHXW2LROAagZmlLclEUG+pBXjUkJmlLs1EEK4RmJk1pZkI3DRkZtYnyUTQbA4aVa14rSEzS16SiaDZRzC6t+IagZklL8lE0JxHMKa36uGjZpa8JBNBI+8sHtNb8Q5lZpa8JBNBs49gbF4jKHkis5nZiJZmIqg3awTV7NhzCcwsYUkmgubw0TE9eSJwP4GZJSzJRNCsAYzuzYq/yf0EZpawJBNBX40gbxraVHMiMLN0JZ0IxrqPwMws7UQwptk05EllZpawHUoEkiqSJgx1MMOldUIZeE8CM0vboBOBpO9ImiBpd2ABsEjSh8sLrTztfQTepczMUlakRjArIp4GXgv8BJgBvKWUqEpW6xs+mhV/oxOBmSWsSCLoldRLlgjmRsQmoCvbVOp9w0c9j8DMrEgiuBx4FNgduFXS84CnywiqbFuPGnKNwMzSNejN6yPi88DnW04tlfSKoQ+pfO19BBtrrhGYWboGTASSPjDAJZ8ZoliGTa1t+KhrBGaWssHUCMbnj38JHAPMzY9fA9xZRlBlq7cNH3UfgZmlbMBEEBH/BCDpVuCoiFibH18EXFdqdCVprxF41JCZpaxIZ/E+wMaW4435ua7j1UfNzDYbdGcx8E3gTkk/yo9fC3x9yCMaBn2JYJRHDZmZDSoRSBJZIvgJ8NL89Nsj4t6yAitTe41go1cfNbOEDSoRRERIuj4iDgXuKTmm0m09ashNQ2aWriJ9BPdIOqa0SIaR1xoyM9usSB/BscCbJC0F1gEiqywcVkpkJWrfs3ijO4vNLGFFEsHJpUUxzOqRrzWULzrnGoGZpWzQTUMRsRSYRDaR7DXApPxc16k3GvRURG/VfQRmZkX2I3gf8G1gSv7zLUnvKSuwMtUaQbUieqsCPGrIzNJWpGnoPODYiFgHIOkS4Hbg38sIrEz1etBTEZKoVuR5BGaWtCKjhgTUW47r+bmuU2sElUoWem9VnllsZkkrkgi+BsyTdFG+ztAdwFcGuknSKZIekrRY0oXbuOZMSYskLZT0nQIx7ZB6I6sRAPRWKl5ryMySVmQ/gs9IugU4IT814MxiSVXgMuAkYBlwl6S5EbGo5ZqZwEeBl0TEKklTCpahsHoE1UqWA3tcIzCzxA06EUg6DlgYEffkxxMkHRsR87Zz2xxgcUQsye+5CjgdWNRyzTuByyJiFUBErChYhsKafQQAvdWK+wjMLGlFmoa+CDzTcvxMfm57pgKPtRwvy8+1Ohg4WNKvJd0h6ZT+3kjS+ZLmS5q/cuXKAmFvrTlqCLJE4B3KzCxlRUYNKSL6fmNGRENSkfu3F8NM4OXANLL9kA+NiNWtF0XEFcAVALNnz96p39z1RoNqRXxn3h94blOdxSvW8p15f+h7/Y3HHrgzb29m1lWK1AiWSHqvpN78533AkgHuWQ4c0HI8LT/XahkwNyI2RcQjwO/IEkNpai2dxdWKcBeBmaWsSCJ4F/Bisl/ky8jWHjp/gHvuAmZKmiFpFHA2m7e6bLqWrDaApL3JmooGSjA7pd7SNFSV+hahMzNLUZFRQyvIfpEPWkTUJF0A3ABUga9GxEJJFwPzI2Ju/tqrJC0im5vw4Yh4qsjnFLVFIqiIhhOBmSWsyKihg8k6h/eJiEMkHQacFhGf3N59EXE9cH3buY+3PA/gA/nPsKg3gp5qa9OQE4GZpatI09CXyMb7bwKIiPspWEMYKbJRQ1nRK24aMrPEFUkEu0XEnW3nakMZzHCpN4K8QkC1ghOBmSWtSCJ4UtLzgQCQdAbwRClRlazWaNCT1wiqFdFw05CZJazIPIB3k43jf4Gk5cAjwJtKiapk2VpDeSJw05CZJW5QiSBfM+jvI+JESbsDlYhYW25o5ak3gjG9WdtQpeJEYGZpG1QiiIi6pBPy5+vKDal87cNHnQjMLGVFmobulTQXuJps83oAIuKHQx5VybaYWSwPHzWztBVJBGOAp4BXtpwLoOsSQb0RVOQJZWZmUGxm8du397qkj0bEp3c+pPLV2iaUefN6M0tZkeGjA3nDEL5XqeqtE8o8fNTMEjeUiaBr9i+ut/cRuEZgZgkbykTQNb9NPWrIzGyzJGsE2czils7igHDzkJklasBEIOmS/HGgPoCrhySiYVBvBJU8ETRHD7lSYGapGkyN4FRJIlt5dJsi4v8MTUjla51H0Hx085CZpWoww0d/CqwCxkl6mqwJKJqPETGhxPhK0dpHUHEiMLPEDVgjiIgPR8Qk4LqImBAR41sfhyHGIbflqKH8nPsIzCxRRSaUnS5pH+CY/NS8iFhZTljlat2YpvnoGoGZpWrQo4byzuI7ySaOnQncme9J0HW2qBHk/wW8zISZparIWkP/AByTb2KPpMnAjcA1ZQRWlojod9SQm4bMLFVF5hFUmkkg91TB+0eEZhNQ6zyC1vNmZqkpUiP4qaQbgO/mx2cB1w99SOVq/uVfdSIwMwOKdRZ/WNLfAifkp66IiB+VE1Z5tlUj8MJzZpaqIjWC5iY0/e4/IOn2iDh+SKIqUXPJ6WrLonPgGoGZpWso2/jHDOF7laZe3zIReEKZmaUuudVHa21NQ31LTLhpyMwS1XWjfnZWva9pKN+Yxk1DZpa45Jahbv7lv1VnsROBmSVqUIlAUlXSzQNc9pYhiKd07X0EfcNHnQfMLFGDSgQRUQcakiZu55oFQxZViWqNBsDmzev7moYaHYvJzKyTigwffQZ4QNLPgXXNkxHx3iGPqkTNvoBm38DmUUMdC8nMrKOKJIJtziHoJu2jhtxHYGapKzKz+BuSxgIHRsRDJcZUqnr7hLL8sebho2aWqCLLUL8GuI9sxzIkHSFpblmBlaVviYm2PgLXCMwsVUWGj14EzAFWA0TEfcBfDHSTpFMkPSRpsaQLt3Pd6yWFpNkFYiqs1jaPwIvOmVnqiiSCTRGxpu3cdrtYJVWBy4BXA7OAcyTN6ue68cD7gHkF4tkh7YvO5fnAM4vNLFlFEsFCSW8EqpJmSvp34LYB7pkDLI6IJRGxEbgKOL2f6/43cAmwvkA8O6Q5fLQ5asiLzplZ6ookgvcALwI2kO1J8DTw/gHumQo81nK8LD/XR9JRwAERcV2BWHZYex+BJCpyIjCzdBUZNfQs8DFJl2SHsXZnP1xSBfgMcO4grj0fOB/gwAMP3OHPbB811HzuzmIzS1WRUUPHSHoAuJ9sYtlvJB09wG3LgQNajqfl55rGA4cAt0h6FDgOmNtfh3FEXBERsyNi9uTJkwcb9lba+wggayZyH4GZpapI09BXgL+PiOkRMR14N/C1Ae65C5gpaYakUcDZQN+Q04hYExF7t7znHcBpETG/SCGKaN+YpvncTUNmlqoiiaAeEb9qHkTEfwG17d0QETXgAuAG4EHg+xGxUNLFkk7bkYB31uYaweaiOxGYWcoG7CPIO3MBfinpcrKO4iDbvP6Wge6PiOtp2+Q+Ij6+jWtfPtD77azNNYLN56qS9yw2s2QNprP4X9uOP9HyvOt+ezZXGa221QhqrhGYWaIGTAQR8YrhCGS4NFcZ3aKz2KOGzCxhgx4+KmkS8FZgeut93bcMdbNG0NJZLHljGjNLVpFlqK8nG9XzAAMsLTGStS9DDc3O4q4tkpnZTimSCMZExAdKi2SYbHtCWaciMjPrrCLDR6+U9E5J+0nas/lTWmQlqdW3TgSeUGZmKStSI9gIXAp8jM2jhYJBLEU9kvRXI+ipiI3eq9LMElUkEXwQOCginiwrmOHQ/Mu/dUJZpQL1Ta4RmFmaijQNLQaeLSuQ4dJvH4EnlJlZworUCNYB90m6mWwpaqD7ho82+wjaRw15QpmZpapIIrg2/+lq9UYDKZtE1uQJZWaWsiL7EXyjzECGS60RfbuSNVU9asjMElZkZvEj9LO2UER03aih1v4B8OqjZpa2Ik1DrZvFjAHeAHTdPIJ6I7boHwAnAjNL26BHDUXEUy0/yyPi34C/KTG2UtT6qRFUKh41ZGbpKtI0dFTLYYWshlCkRjEi1BtBT3XL/Ncj1wjMLF1FfpH/K5v7CGrAo2TNQ12l1ggq2rpG4ERgZqkqkgheDbyeLZehPhu4eIhjKlW90ei3j6AREBGoLUmYme3qis4jWA3cA6wvJ5zy1Rv0O2oIsuUnepwIzCwxRRLBtIg4pbRIhkm90aCnuvU8AiBbirrIohtmZruAIr/2bpN0aGmRDJNtjRoC3E9gZkkqUiM4ATg3n1i2ARAQEXFYKZGVZFvzCADPLjazJBXtLO56/Y0aGt2TVYzWb6wzbnTXjYg1M9spRdYaWlpmIMMlm0ewZSKYOLYXgDXrN7H3+NGdCMvMrGOS6xrN1hrasth9ieDZTZ0Iycyso5JMBO19BM1EsPo5JwIzS09yiaDWaGw1aqi3WmG3UVXWOBGYWYKSSwT91QgAJo3tZc1zGzsQkZlZZyWXCPqbRwBZ89DTz9U6EJGZWWcllwj625gGYOJuvax2jcDMEpRkIuivaWji2FGs39RgQ63egajMzDonyUTQf9NQNqXCQ0jNLDXJJYJaI+ipbF3siWNHAXjkkJklJ7lEsO0aQT6pzInAzBKTXCLobx4BwISxPQhPKjOz9JSeCCSdIukhSYslXdjP6x+QtEjS/ZJukvS8MuOp1/uvEfRUKowb3cPTTgRmlphSE4GkKnAZ2cqls4BzJM1qu+xeYHa+nPU1wL+UGVM9+h81BNkQUjcNmVlqyq4RzAEWR8SSiNgIXAWc3npBRNwcEc/mh3cA08oMaFt9BJD1E7hpyMxSU3YimAo81nK8LD+3LecBP+nvBUnnS5ovaf7KlSt3OKDaNuYRAEwYm9UIwhvUmFlCRkxnsaQ3A7OBS/t7PSKuiIjZETF78uTJO/w5WR9B/8WeNLaXjbUGT6/3UhNmlo6yE8Fy4ICW42n5uS1IOhH4GHBaRGwoM6BsraH+X2sOIX1izXNlhmBmNqKUnQjuAmZKmiFpFHA2MLf1AklHApeTJYEVJcfT78Y0TZsTwfqywzAzGzFKTQQRUQMuAG4AHgS+HxELJV0s6bT8skuBccDVku6TNHcbbzcktjtqqJkIVjsRmFk6St+pPSKuB65vO/fxlucnlh1Dy2dtd9TQ+DG9CDcNmVlaRkxn8XCoN7LRQNuqEVQrYsLYXh53jcDMEpJUIqjliaCyjUQAMGFMj2sEZpaUpBLBQDUCgIm7jXJnsZklJa1EkE8U21YfAWRzCR5f/ZwnlZlZMtJKBPVB1AjG9rKh1mC1N6gxs0QklQiafQTVbc0oA/baPdug5oHla4YlJjOzTksqEQymj+D5U8YxYUwPP7xn2XCFZWbWUUklglqjAUBV204EvdUKpx2xPz9Z8EeeXu/mITPb9SWVCJo1gu11FgOccfQBbKg1uO7+J4YjLDOzjkoyEfRUt58IDp82kYOmjOOau908ZGa7viQTwUA1Akm84ehp3L10FQ+vfGY4QjMz65ikEkFtEJ3FTa87cirViviBawVmtotLKhFsrhEMXOwpE8bwsoMn88N7lvfdZ2a2Kyp99dGRpG8ewQB54Dvz/gDAvhPG8IvfruAfr13AIVMn8sZjDyw7RDOzYZdYjSAfPjqIGgHAC/ebwORxo/n5g39yrcDMdlmJJYLscTB9BJB1Kp80ax9Wrt3AfY+tKjEyM7POSSoR9E0oG2QiAHjR/hOYtsdYbnxwBes31csKzcysY5JKBINZYqKdJE5+0b6seW4T3877DszMdiVJJYLaIOcRtHv+5HEcNGUcl9282MtOmNkuJ6lE0FyGumgiADh51r6sfnYjb/3Knaxat3GoQzMz65ikEsGO1ggApu4xli+++WgWPfE0Z/znbSxf7e0szWzXkFQiaESzj2DHin3yi/blynfMYcXaDZzxxdv4w1PPDmV4ZmYdkVQi2JkaAWQTzR5euY5zXzydVc9u5Lxv3MW371g6lCGamQ27pBJBc0JZkVFD/dlv4lhOfOE+/H7FMzz4xNqhCM3MrGOSSgS1negsbnfsjL2YMn401z3wuOcXmFlXSyoRDHYZ6sGoVsRrDt+fVc9u4ku3Ltnp9zMz65S0EkEUn1C2Pc+fPI5Dpk7kslsWs2yVO47NrDullQiGsEbQdOoh+1KReNOX57HEm9iYWRdKKhE0+wh2dPhofybtNopv/fdjWbu+xuu/eBt3L/3zkL23mdlwSCoR9NUIBtizuKjfPrGWt794OhWJsy6/g4/84P6+PQ3MzEa6pBJBka0qi9pr3Gje9bLnM3WPsXzvrsf46YInvIeBmXWFpBJBcx5BRUOfCAB2H93DeSfMYM6MPbn1909y7tfuZPWzXpfIzEa2xBJB9lhGjaCpp1LhtUdM5XVHTmXekj/zN5//L+Y/6n4DMxu5EksEDSSolJgImo6ZvidXv+t4eqrizMtv53M3/t5NRWY2IiWVCGqNKLU20G7h40/ztuOnc9i0SXz2xt9xzKdu5E1fuoPbFj/Jpmb1xMysw3rK/gBJpwCfA6rAlyPin9teHw18EzgaeAo4KyIeLSOWeiOGdA7BYIzprXLm7AN44X4TuHvpn5n3yJ/59cPzmDCmh1e+YAonzdqXOTP2ZM/dRw17bGZmUHIikFQFLgNOApYBd0maGxGLWi47D1gVEQdJOhu4BDirjHhqjaBaUkfxQA6dOpFDp05kQ63OwyueYdETa/nZoj9x7X2PAyBgz91Hsde4UUwZP4YpE0YzZfwYJo8fzZTxo9lr91H0VCtUK6K3Kkb3VBndU2F0b4XeavYzqlqhtyp6qklV9MxsJ5VdI5gDLI6IJQCSrgJOB1oTwenARfnza4AvSFJEDHmD+luOex4nzdpnqN+2kNE9VWbtP5FZ+0+kEcHSp57liTXPsW5DnXUbazyzvsbSp9axYPka1q6v9S2LUURF0JsnjaqElO293FStiJ78pxGwqd5gY72BgFE9WVLZ1siq7L0GjkFsvmhb1zdPN0vYXtTmff2dH850vr34XIezMgTZ9y3Y/KVr/pv65GsP4a8Onjykn1d2IpgKPNZyvAw4dlvXRERN0hpgL+DJ1osknQ+cnx8+I+mhIYhv7/bP6WIuy8jksoxMXVuWl31kq1NFyvK8/k6W3kcwVCLiCuCKoXxPSfMjYvZQvmenuCwjk8syMrksWyq7MXk5cEDL8bT8XL/XSOoBJpJ1GpuZ2TAoOxHcBcyUNEPSKOBsYG7bNXOBt+XPzwB+UUb/gJmZ9a/UpqG8zf8C4Aay4aNfjYiFki4G5kfEXOArwJWSFgN/JksWw2VIm5o6zGUZmVyWkcllaSH/8W1mljYPODczS5wTgZlZ4pJNBJJOkfSQpMWSLux0PEVI+qqkFZIWtJzbU9LPJf0+f9yjkzEOlqQDJN0saZGkhZLel5/vuvJIGiPpTkm/ycvyT/n5GZLm5d+17+UDJ0Y8SVVJ90r6cX7cleUAkPSopAck3Sdpfn6u675jAJImSbpG0m8lPSjp+J0tS5KJoGXpi1cDs4BzJM3qbFSFfB04pe3chcBNETETuCk/7gY14IMRMQs4Dnh3/v+iG8uzAXhlRBwOHAGcIuk4smVTPhsRBwGryJZV6QbvAx5sOe7WcjS9IiKOaBlz343fMcjWbvtpRLwAOJzs/9HOlSUikvsBjgduaDn+KPDRTsdVsAzTgQUtxw8B++XP9wMe6nSMO1iu/0u2NlVXlwfYDbiHbCb9k0BPfn6L795I/SGb83MT8Ergx2SraXRdOVrK8yiwd9u5rvuOkc2zeoR8oM9QlSXJGgH9L30xtUOxDJV9IuKJ/Pkfgc4uqrQDJE0HjgTm0aXlyZtT7gNWAD8HHgZWR0Qtv6Rbvmv/BvwvoLle+l50ZzmaAviZpLvz5WqgO79jM4CVwNfyZrsvS9qdnSxLqolglxbZnwVdNS5Y0jjgB8D7I+Lp1te6qTwRUY+II8j+op4DvKDDIRUm6b8BKyLi7k7HMoROiIijyJqD3y3pr1pf7KLvWA9wFPDFiDgSWEdbM9COlCXVRDCYpS+6zZ8k7QeQP67ocDyDJqmXLAl8OyJ+mJ/u2vIARMRq4GayJpRJ+fIp0B3ftZcAp0l6FLiKrHnoc3RfOfpExPL8cQXwI7Ik3Y3fsWXAsoiYlx9fQ5YYdqosqSaCwSx90W1al+p4G1lb+4inbH3srwAPRsRnWl7quvJImixpUv58LFlfx4NkCeGM/LIRX5aI+GhETIuI6WT/Nn4REW+iy8rRJGl3SeObz4FXAQvowu9YRPwReEzSX+an/ppsWf+dK0unOz862OlyKvA7sjbcj3U6noKxfxd4AthE9hfCeWRtuDcBvwduBPbsdJyDLMsJZNXY+4H78p9Tu7E8wGHAvXlZFgAfz8//BXAnsBi4Ghjd6VgLlOnlwI+7uRx53L/JfxY2/71343csj/sIYH7+PbsW2GNny+IlJszMEpdq05CZmeWcCMzMEudEYGaWOCcCM7PEORGYmSXOicDMLHFOBLZLkbS/pGs6HcdIJOkISae2HF8k6UOdjMlGBicCG9GUGfT3NCIej4gzBr6y81qWaxguR5BN1jPbghOBjTiSpuebBn2TbIbuP0q6S9L9LZu9/LOkd7fcc5GkD+X3LsjPVSVd2nLv/8jPXybptPz5jyR9NX/+DkmfypckuC7fYGaBpLO2E+ujkv4l3/TkTkkH5ecnS/pB/tl3SXpJS5xXSvo1cOU23vNcSdfmG4w8KukCSR/IV5u8Q9Ke+XVH5Mf35+XYIz9/i6RL8nh+J+ml+VIqFwNnKducpVmmWfn1SyS9d0f/n1l3cyKwkWom8B/A/yRb7ngO2V+0R+crR34POLPl+jPzc63OA9ZExDHAMcA7Jc0AfgW8NL9mKtnmROTnbiXb9OfxiDg8Ig4BfjpArGsi4lDgC2TLN0O2SNtn889+PfDllutnASdGxDnbec9DgL/N4/4U8Gxkq03eDrw1v+abwEci4jDgAeATLff3RMQc4P3AJyJiI/Bx4HuRbc7S/G/1AuBksv++n8gXALTEOBHYSLU0Iu4gWyDsVWRr+NxD9otrZkTcC0zJ+wQOB1ZFxGNt7/Eq4K35/gDzyNZjmUmeCPKd0BaxeeXG44HbyH6pnpT/Vf3SiFgzQKzfbXk8Pn9+IvCF/LPnAhPypbYB5kbEcwO8580RsTYiVgJrgP+Xn38AmC5pIjApIn6Zn/8G0Lq0cnMV17vJNjHalusiYkNEPEm2YmU3rMlvQ2y42yjNBmtd/ijg0xFxeT/XXE22Gua+bF0baN77noi4YasXslVCTyGrAexJVqN4JiLWAmslHUXWnv5JSTdFxMXbiTX6eV4BjouI9W2f21q27dnQ8rzRctxgcP9um9fXB7i+9XMGutZ2Ua4R2Eh3A/CO5l/TkqZKmpK/9j2yZZLPIEsK/d37d83mDkkH58sQA9xB1mxyK1kN4UP5I5L2J2uK+RZwKdl679tzVsvj7fnznwHvaV4g6YhBlXaQ8lrKKknNJq63AL/czi0Aa4HxQxmH7Rqc/W1Ei4ifSXohcHv+1/QzwJvJdtBamK8zvzw2b9PX6stkzSL35PserARem7/2K+BVEbFY0lKyWsGv8tcOBS6V1CBb6vvvBghzD0n3k/113Wz3fy9wWX6+hyzhvKtY6Qf0NuA/Je0GLAHePsD1NwMX5s1Vnx7iWKyLeRlqs52gbBev2Xkbu1lXctOQmVni3DRkNgiSfgTMaDv9kci2c9zR9zwZuKTt9CMR8bodfU+zHeGmITOzxLlpyMwscU4EZmaJcyIwM4bAv/kAAAANSURBVEucE4GZWeL+P2otm2hO7ut9AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#All houses get few reviews per month\n", + "sns.distplot(abb_vis_df['reviews_per_month'])\n", + "plt.ylabel('number_of_records')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 56, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAo4AAAKACAYAAAASBPmQAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nO3df7j0dV3n8ddbbklNUQyWTCgMSSMyElLLStJCtDW0zGRLwCzaTWrp1xVtW/7epLIukXTXCoENf/9INJKIC7U1UW8QARGDRQxYlBsxzDJN/Owf871zOJ375s19nznn3Pd5PK5rrvOdz3xn5jNnzpl5nu/M90yNMQIAAHflHms9AQAAdg3CEQCAFuEIAECLcAQAoEU4AgDQsmmtJ7Dajj766PGud71rracBALCe1XKDG26L46233rrWUwAA2CVtuHAEAGDHCEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALZvWegKw2v7+hd++1lPYkL7xt69Y6ykAsJNscQQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAloWFY1UdUFUXVdVVVfXRqvqv0/gDq+qCqrpm+rr3NF5VdVpVXVtVl1fVI+cu6/hp/Wuq6vi58cOr6orpPKdVVS3q9gAAbHSbFnjZX07yK2OMS6vqfkkuqaoLkpyQ5MIxxkur6pQkpyT59SRPSnLwdHh0klcleXRVPTDJ85IckWRMl3PuGOOz0zo/m+QDSc5LcnSSv1ypG3D4r529UhfF3XTJ7x231lMAAJZY2BbHMcbNY4xLp+V/TPKxJA9OckySs6bVzkry1Gn5mCRnj5mLkzygqh6U5IlJLhhj3DbF4gVJjp5O22uMcfEYYyQ5e+6yAABYYavyHseqOjDJd2a2ZXC/McbN00mfSrLftPzgJDfMne3GaWx74zcuM77c9Z9YVZuravOWLVt26rYAAGxUCw/HqrpvkrckOXmM8bn506YthWPRcxhjvHqMccQY44h999130VcHALBbWmg4VtU9M4vGc8YYb52GPz29zJzp6y3T+E1JDpg7+/7T2PbG919mHACABVjkXtWV5E+TfGyM8QdzJ52bZOue0ccnefvc+HHT3tWPSXL79JL2+UmOqqq9pz2wj0py/nTa56rqMdN1HTd3WQAArLBF7lX92CTPSnJFVV02jf23JC9N8saqek6STyZ5xnTaeUmenOTaJP+c5NlJMsa4rapelORD03ovHGPcNi3/fJIzk9w7s72pV2yPagAA7mxh4TjG+D9JtvV/FZ+wzPojyXO3cVlnJDljmfHNSQ7diWkCANDkk2MAAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtCwsHKvqjKq6paqunBt7flXdVFWXTYcnz532G1V1bVV9vKqeODd+9DR2bVWdMjf+kKr6wDT+hqrac1G3BQCAxW5xPDPJ0cuM/+EY47DpcF6SVNUhSZ6Z5Num87yyqvaoqj2S/FGSJyU5JMmx07pJcup0WQ9N8tkkz1ngbQEA2PAWFo5jjPcmua25+jFJXj/G+OIY4xNJrk3yqOlw7RjjujHGl5K8PskxVVVJHp/kzdP5z0ry1BW9AQAA3MlavMfxpKq6fHope+9p7MFJbphb58ZpbFvjX5fkH8YYX14yvqyqOrGqNlfV5i1btqzU7QAA2FBWOxxfleSgJIcluTnJy1bjSscYrx5jHDHGOGLfffddjasEANjtbFrNKxtjfHrrclX9cZJ3TkdvSnLA3Kr7T2PZxvhnkjygqjZNWx3n1wcAYAFWdYtjVT1o7ujTkmzd4/rcJM+sqq+pqockOTjJB5N8KMnB0x7Ue2a2A825Y4yR5KIkT5/Of3ySt6/GbQAA2KgWtsWxql6X5Mgk+1TVjUmel+TIqjosyUhyfZKfS5Ixxker6o1Jrkry5STPHWPcMV3OSUnOT7JHkjPGGB+druLXk7y+ql6c5MNJ/nRRtwUAgAWG4xjj2GWGtxl3Y4yXJHnJMuPnJTlvmfHrMtvrGgCAVeCTYwAAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQEsrHKvqws4YAAC7r03bO7Gq7pXkPkn2qaq9k9R00l5JHrzguQEAsI5sNxyT/FySk5N8Q5JL8tVw/FyS0xc4LwAA1pnthuMY4+VJXl5VvzDGeMUqzQkAgHXorrY4JknGGK+oqu9JcuD8ecYYZy9oXgAArDOtcKyq/53koCSXJbljGh5JhCMAwAbRCsckRyQ5ZIwxFjkZAADWr+7/cbwyydcvciIAAKxv3S2O+yS5qqo+mOSLWwfHGD+ykFkBALDudMPx+YucBAAA6193r+r3LHoiAACsb929qv8xs72ok2TPJPdM8k9jjL0WNTEAANaX7hbH+21drqpKckySxyxqUgAArD/dvar/zZj58yRPXMB8AABYp7ovVf/o3NF7ZPZ/Hf9lITMCAGBd6u5V/ZS55S8nuT6zl6sBANgguu9xfPaiJwIAwPrWeo9jVe1fVW+rqlumw1uqav9FTw4AgPWju3PMa5Kcm+QbpsM7pjEAADaIbjjuO8Z4zRjjy9PhzCT7LnBeAACsM91w/ExV/VRV7TEdfirJZxY5MQAA1pduOP50kmck+VSSm5M8PckJC5oTAADrUPff8bwwyfFjjM8mSVU9MMnvZxaUAABsAN0tjo/YGo1JMsa4Lcl3LmZKAACsR91wvEdV7b31yLTFsbu1EgCA3UA3/l6W5P1V9abp+I8neclipgQAwHrU/eSYs6tqc5LHT0M/Osa4anHTAgBgvWm/3DyFolgEANiguu9xBABggxOOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANCysHCsqjOq6paqunJu7IFVdUFVXTN93Xsar6o6raqurarLq+qRc+c5flr/mqo6fm788Kq6YjrPaVVVi7otAAAsdovjmUmOXjJ2SpILxxgHJ7lwOp4kT0py8HQ4McmrklloJnlekkcneVSS522NzWmdn50739LrAgBgBS0sHMcY701y25LhY5KcNS2fleSpc+Nnj5mLkzygqh6U5IlJLhhj3DbG+GySC5IcPZ221xjj4jHGSHL23GUBALAAq/0ex/3GGDdPy59Kst+0/OAkN8ytd+M0tr3xG5cZX1ZVnVhVm6tq85YtW3buFgAAbFBrtnPMtKVwrNJ1vXqMccQY44h99913Na4SAGC3s9rh+OnpZeZMX2+Zxm9KcsDcevtPY9sb33+ZcQAAFmS1w/HcJFv3jD4+ydvnxo+b9q5+TJLbp5e0z09yVFXtPe0Uc1SS86fTPldVj5n2pj5u7rIAAFiATYu64Kp6XZIjk+xTVTdmtnf0S5O8saqek+STSZ4xrX5ekicnuTbJPyd5dpKMMW6rqhcl+dC03gvHGFt3uPn5zPbcvneSv5wOAAAsyMLCcYxx7DZOesIy644kz93G5ZyR5IxlxjcnOXRn5ggAQJ9PjgEAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGjZtNYTAFgJj33FY9d6ChvS+37hfWs9BWAV2eIIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABa1iQcq+r6qrqiqi6rqs3T2AOr6oKqumb6uvc0XlV1WlVdW1WXV9Uj5y7n+Gn9a6rq+LW4LQAAG8VabnH8gTHGYWOMI6bjpyS5cIxxcJILp+NJ8qQkB0+HE5O8KpmFZpLnJXl0kkcled7W2AQAYOWtp5eqj0ly1rR8VpKnzo2fPWYuTvKAqnpQkicmuWCMcdsY47NJLkhy9GpPGgBgo1ircBxJ/qqqLqmqE6ex/cYYN0/Ln0qy37T84CQ3zJ33xmlsW+P/TlWdWFWbq2rzli1bVuo2AABsKJvW6Hq/d4xxU1X9hyQXVNXV8yeOMUZVjZW6sjHGq5O8OkmOOOKIFbtcAICNZE22OI4xbpq+3pLkbZm9R/HT00vQmb7eMq1+U5ID5s6+/zS2rXEAABZg1cOxqr62qu63dTnJUUmuTHJukq17Rh+f5O3T8rlJjpv2rn5Mktunl7TPT3JUVe097RRz1DQGAMACrMVL1fsleVtVbb3+144x3lVVH0ryxqp6TpJPJnnGtP55SZ6c5Nok/5zk2Ukyxritql6U5EPTei8cY9y2ejcDAGBjWfVwHGNcl+Q7lhn/TJInLDM+kjx3G5d1RpIzVnqOAAD8e+vp3/EAALCOCUcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaBGOAAC0CEcAAFqEIwAALcIRAIAW4QgAQItwBACgRTgCANAiHAEAaNm01hMAADaO03/lHWs9hQ3ppJc9ZUUuxxZHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC3CEQCAFuEIAECLcAQAoEU4AgDQIhwBAGgRjgAAtAhHAABahCMAAC2b1noCALCc93z/49Z6ChvS4977nrWeAuuYLY4AALQIRwAAWoQjAAAtwhEAgBbhCABAi3AEAKBllw/Hqjq6qj5eVddW1SlrPR8AgN3VLh2OVbVHkj9K8qQkhyQ5tqoOWdtZAQDsnnbpcEzyqCTXjjGuG2N8KcnrkxyzxnMCANgt1Rhjreeww6rq6UmOHmP8zHT8WUkePcY4acl6JyY5cTr6sCQfX9WJro19kty61pNgxblfd0/u192P+3T3tJHu11vHGEcvHdwQHzk4xnh1klev9TxWU1VtHmMcsdbzYGW5X3dP7tfdj/t09+R+3fVfqr4pyQFzx/efxgAAWGG7ejh+KMnBVfWQqtozyTOTnLvGcwIA2C3t0i9VjzG+XFUnJTk/yR5JzhhjfHSNp7VebKiX5jcQ9+vuyf26+3Gf7p42/P26S+8cAwDA6tnVX6oGAGCVCEcAAFqE4zpRVXdU1WVV9ZGqurSqvmeFLveEqjp9mfHnV9WvrsR1kFTVqKo/mzu+qaq2VNU7d+IyP3831z9y/uemqp7qk5QWq6r2r6q3V9U1VXVdVZ1eVV+z1vMiqarfrKqPVtXl02Pro6fxk6vqPo3zt9ZrzuXI7T0WVNWBVXXlalwXM4t6zt0IhOP68YUxxmFjjO9I8htJfmfpClW1S+/MtJv7pySHVtW9p+M/lNX/11BHJpl/8HtqZh/FyQJUVSV5a5I/H2McnOTgJPdO8rtrOjFSVd+d5D8meeQY4xFJfjDJDdPJJyfpBGF3PXZNnnN3kHBcn/ZK8tnk3/56/JuqOjfJVVV1r6p6TVVdUVUfrqofmNZbdnxeVf1wVb2/qvaZGzuoqi6dO37w1uNVdX1VvWD6a+yKqnr4om/4Lu68JD88LR+b5HVbT6iqR03f+w9X1d9W1cOm8ROq6q1V9a5pq9WdoqOqXjL9RXxxVe03jT2lqj4wXdZfV9V+VXVgkv+c5Jemv6Ifl+RHkvzedPygqvrZqvrQdHlv2bo1parOrKrTpnldN30iE3ft8Un+ZYzxmiQZY9yR5JeSHFdVJ81v6a+qd1bVkdPyUdPPwqVV9aaquu80fnhVvaeqLqmq86vqQdP4u6vq1Kr6YFX9XVV93zT+bdPYZdNWtYNX9+avaw/K7FMvvpgkY4xbxxj/r6p+Mck3JLmoqi5Kkqp6VVVtnrZOvmAaW269bd1vd+txsqoeN91nl02/w/dbcvqB02P+pfNbwqbngndX1Zur6uqqOmf64yVVdfQ0dmmSH125b+OGsSPPucs+dlfVN03H96mqe0yXddTa3bQFGGM4rINDkjuSXJbk6iS3Jzl8Gj8ys61ZD5mO/0pm/3YoSR6e5O+T3Gs74yckOT3J05L8TZK9p3Wen+RXp+WLkhw2Lf+PJL8wLV8/t/zzSf5krb9P6/WQ5PNJHpHkzdP3/bLpvnvndPpeSTZNyz+Y5C3T8glJrkty/+l8n0xywHTaSPKUafl3k/z3aXnvfPU/IvxMkpctvU+n42cmefrc8a+bW37x3H17ZpI3ZfaH5CGZff77mn9P1/shyS8m+cNlxj+c2daq0+fG3jn9POyT5L1JvnYa//Ukv53knkn+Nsm+0/hPzP0+v3vuPn5ykr+ell+R5Cen5T2T3Hutvyfr5ZDkvtPv4N8leWWSx82ddn2SfeaOP3D6usf0vX7E0vW2db/Nrbfdx8kljwXvSPLYuXluSnJgkiunsfskude0fHCSzXOXcXtmH3RxjyTvT/K9mT1u3DCtW0neuPW6HLb7M7Kzz7knZNuP3T+T2WPqryX5X2t9W1f6YDPs+vGFMcZhyb+9zHJ2VR06nfbBMcYnpuXvzewJI2OMq6vqk0m+ZTvjyWzLyBFJjhpjfG6Z6/6TJM+uql/O7AnrUXOnvXX6ekn8JbtdY4zLpy1/x2a29XHe/ZOcNW0VGpmFwlYXjjFuT5KquirJN2X2RPClzIIjmX3/f2ha3j/JG6YtUnsm+UR6Dq2qFyd5QGZPWOfPnfbnY4yvZPYX9n7Ny+Pue0xmcf6+aWPRnpkFwMOSHJrkgml8jyQ3z51v/vfwwGn5/Ul+s6r2T/LWMcY1i578rmKM8fmqOjzJ9yX5gcx+X04ZY5y5zOrPqKoTMwu4B2V2/1y+ZJ1t3W9b3Z3Hyfcl+YOqOiez++3G6TK3umeS06vqsMzi5lvmTvvgGOPGJKmqyzL7Wfh8kk9svf9r9l7rE+9iDuz8c26yjcfuMcafVNWPZ/Yq0GGrc3NWj5eq16Exxvsz+wt332non3byIv9vkvvlzg9A896S5EmZvSfokjHGZ+ZO++L09Y7s4v8wfpWcm+T3M/cy9eRFSS4aYxya5CmZ/YW61Rfnlue/z/86pj9fl4y/IrOtWd+e5OeWXNb2nJnkpOl8L9jOHO70LMY2XZXk8PmBqtorydcn+Uzu/Pi69XtdSS4Ys/dWHTbGOGSM8Zxp/KNz498+xph/eevf/R6OMV6b2dsRvpDkvKp6/Arfvl3aGOOOMca7xxjPS3JSkh9buk5VPSTJryZ5wpi9F/Ivsvzv07but63aj5NjjJdmtkXq3pmF6NKXtn8pyaeTfEdmf/Dvucz1tK6Lnp14zl32/pjeBrT/NH7flZjjeiIc16HpgWSPzJ58lvqbJD85rfctSb4xyce3M57MNqH/WGZ/UX3b0gscY/xLZlufXpXkNSt5WzagM5K8YIxxxZLx++erO8ucsJPXMX9Zx8+N/2NmfyBs6/j9ktxcVffM9LPCTrkwyX2q6rgkqao9krwss7eGfCLJYdN7nA7IV7fiX5zksVX10Ok8Xzv9vn48yb7Tlo9U1T2X+12dV1XfnOS6McZpSd6e2VslSFJVD1vyns/DMnscTO78e7FXZpFw+7Sl/Ulz55lfb1v3247M7aAxxhVjjFMz+9jcpeF4/yQ3T68APCuz54LtuTrJgVV10HT82B2Z10a2g8+523NqknMyexvKH6/cTNcH4bh+3HvrG6aTvCHJ8WP2ZvulXpnkHlV1xbTeCWP2BvBtjSeZbWLP7If/TXMPMPPOSfKVJH+1ordqgxlj3Dg9kS/1u0l+p6o+nJ3fSvD8zO7HS5LcOjf+jiRPm36Ovi/J65P82vSG7oOS/FaSD2T2UtnVOzmHDW/aGvy0JE+vqmsye9L5yhjjJZl9jz+R2VbJ05JcOp1nS2Z/OLyuqi7P7OXOh48xvpTk6UlOraqPZPbeq7v69yDPSHLl9JhxaJKzV/YW7tLum9lbQ66avs+HZPZ7k8w+Mu5dVXXRGOMjmb0n9eokr83sfssy6y17v+3g3E6uqiuny/nXJH+55PRXJjl++jl4eO5i69f0h/+JSf5i2jnmlh2c10azs8+5y6rZjonfleTUMcY5Sb5UVc9ewPzXjI8cJElSs//peP8xxm+t9VxgVzTt/fq6JE8bY1x6V+sD7IqEI6mqtyU5KMnjxxi33tX6AMDGJBwBAGjxHkcAAFqEIwAALcIRAIAW4QhwN02fJ3zlOpjHkVX1zrteE2BlCEeAVTT9o3CAXZJwBNgxm6rqnKr6WFW9uaruU1VPmP7h+hVVdUZVfU2SVNX1VXXq9A+af7yqjp3WubKqTt16gVX1+bnlp1fVmdPyQVV18XSeF8+vl+S+0/VfPc3HR0YCCyMcAXbMw5K8cozxrUk+l+SXM/s88J+YPg98U5L/Mrf+Z8YYj0zy3sw+kuzxmX0U3ndV1VPv4rpenuTl0+XeuOS070xycmafjvLNSR67MzcKYHuEI8COuWGMsfUj6v4syROSfGKM8XfT2FlJvn9u/TdMX78rybvHGFvGGF/O7OM+5wGGxYsAAAEkSURBVNdbzncnedO0/Nolp31w+qjLr2T2UYUH3u1bAtAkHAF2zNJPT/iHu1h/u585vMxl3qs5j/nPzb0jO/9Z6ADbJBwBdsw3VtV3T8v/KcnmJAdW1UOnsWclec8y5/tgksdV1T7TjjLHzq336ar61qq6R5KnzZ3n4iQ/Ni0/cyVvBMDdIRwBdszHkzy3qj6WZO8kf5jk2UneVFVXJPlKkv+59ExjjJuTnJLkoiQfSXLJGOPt08mnJHlnkr9NcvPc2U5O8stVdXmShya5fSG3COAu+KxqgHWuqu6T5AtjjFFVz0xy7BjjmLWeF7DxeC8MwPp3eJLTp3+18w9JfnqN5wNsULY4AgDQ4j2OAAC0CEcAAFqEIwAALcIRAIAW4QgAQMv/B0QjZwYKMN8RAAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "# Airbnb Location by Borough Vis\n", + "sns.catplot('borough', data=abb_vis_df, kind = 'count', height =9, aspect = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAkYAAAI4CAYAAACP9SbdAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAfLUlEQVR4nO3df9yldV3n8fdHRvxFKsYsi0APfOhkTVaoE5K/IuuBg9sKlvmjktF1QwtN3X5R7YZp7mpumWbaUiKwa6JmCPlAkUj8kSEMSvzMdSJMWMQBzJ+Jgd/943xuPY73PdzMzLnP3DPP5+NxHvd1vue6znWd4bpvXuc61zmnxhgBACC527w3AABgdyGMAACaMAIAaMIIAKAJIwCAtmbeG7DSNm7cON773vfOezMAgPmqxQb3uiNGN99887w3AQDYTe11YQQAsBRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEATRgAATRgBADRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEBbM+8NAGbrn1/2/fPeBHZz3/XbV8x7E2C34YgRAEATRgAATRgBADRhBADQZhZGVXVoVb2/qq6uqquq6kU9/tKquqGqLuvLk6aW+Y2q2lJVn6iqJ06Nb+yxLVV10tT4g6rqoz3+tqrad1aPBwDY883yiNHtSX55jLE+yZFJTqyq9X3ba8YYh/fl3CTp256R5PuSbEzyhqrap6r2SfLHSY5Jsj7JM6fu51V9Xw9J8rkkz53h4wEA9nAzC6Mxxo1jjI/19BeTXJPk4O0scmySM8cYt40x/inJliRH9GXLGOPaMcbXkpyZ5NiqqiRPSPIXvfzpSY6bzaMBAPYGK3KOUVUdluThST7aQy+oqsur6tSq2r/HDk7y6anFru+xpca/M8m/jDFu32Z8sfWfUFWbq2rz1q1bd8EjAgD2RDMPo6raL8k7k7x4jPGFJG9M8uAkhye5Mcnvz3obxhinjDE2jDE2rF27dtarAwBWqZl+8nVV3T2TKHrLGOMvk2SMcdPU7X+a5N199YYkh04tfkiPZYnxW5Lcv6rW9FGj6fkBAO6yWb4rrZK8Kck1Y4w/mBo/aGq2pyS5sqfPSfKMqrpHVT0oybokFye5JMm6fgfavpmcoH3OGGMkeX+Sp/bym5KcPavHAwDs+WZ5xOgxSZ6V5IqquqzHfjOTd5UdnmQkuS7J85JkjHFVVb09ydWZvKPtxDHGHUlSVS9Icl6SfZKcOsa4qu/v15OcWVW/m+TjmYQYAMAOmVkYjTE+nKQWuenc7SzziiSvWGT83MWWG2Ncm8m71gAAdppPvgYAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgLZm3huwGj3yV8+Y9yawm7v01cfPexMA2AGOGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEATRgAATRgBADRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEATRgAATRgBADRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEATRgAATRgBADRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQC0mYVRVR1aVe+vqqur6qqqelGPP6Cqzq+qT/bP/Xu8qup1VbWlqi6vqkdM3demnv+TVbVpavyRVXVFL/O6qqpZPR4AYM83yyNGtyf55THG+iRHJjmxqtYnOSnJBWOMdUku6OtJckySdX05Ickbk0lIJTk5yaOSHJHk5IWY6nl+fmq5jTN8PADAHm5mYTTGuHGM8bGe/mKSa5IcnOTYJKf3bKcnOa6nj01yxpi4KMn9q+qgJE9Mcv4Y49YxxueSnJ9kY9923zHGRWOMkeSMqfsCALjLVuQco6o6LMnDk3w0yYFjjBv7ps8kObCnD07y6anFru+x7Y1fv8j4Yus/oao2V9XmrVu37tRjAQD2XDMPo6raL8k7k7x4jPGF6dv6SM+Y9TaMMU4ZY2wYY2xYu3btrFcHAKxSMw2jqrp7JlH0ljHGX/bwTf0yWPrnZ3v8hiSHTi1+SI9tb/yQRcYBAHbILN+VVknelOSaMcYfTN10TpKFd5ZtSnL21Pjx/e60I5N8vl9yOy/J0VW1f590fXSS8/q2L1TVkb2u46fuCwDgLlszw/t+TJJnJbmiqi7rsd9M8sokb6+q5yb5VJKn9W3nJnlSki1JvpLkOUkyxri1ql6e5JKe72VjjFt7+heTnJbkXkne0xcAgB0yszAaY3w4yVKfK/Rji8w/kpy4xH2dmuTURcY3J3nYTmwmAMA3+ORrAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgDazMKqqU6vqs1V15dTYS6vqhqq6rC9PmrrtN6pqS1V9oqqeODW+sce2VNVJU+MPqqqP9vjbqmrfWT0WAGDvMMsjRqcl2bjI+GvGGIf35dwkqar1SZ6R5Pt6mTdU1T5VtU+SP05yTJL1SZ7Z8ybJq/q+HpLkc0meO8PHAgDsBWYWRmOMDya5dZmzH5vkzDHGbWOMf0qyJckRfdkyxrh2jPG1JGcmObaqKskTkvxFL396kuN26QMAAPY68zjH6AVVdXm/1LZ/jx2c5NNT81zfY0uNf2eSfxlj3L7N+KKq6oSq2lxVm7du3bqrHgcAsIdZ6TB6Y5IHJzk8yY1Jfn8lVjrGOGWMsWGMsWHt2rUrsUoAYBVas5IrG2PctDBdVX+a5N199YYkh07NekiPZYnxW5Lcv6rW9FGj6fkBAHbIih4xqqqDpq4+JcnCO9bOSfKMqrpHVT0oybokFye5JMm6fgfavpmcoH3OGGMkeX+Sp/bym5KcvRKPAQDYc83siFFVvTXJUUkOqKrrk5yc5KiqOjzJSHJdkuclyRjjqqp6e5Krk9ye5MQxxh19Py9Icl6SfZKcOsa4qlfx60nOrKrfTfLxJG+a1WMBAPYOMwujMcYzFxleMl7GGK9I8opFxs9Ncu4i49dm8q41AIBdwidfAwA0YQQA0IQRAEATRgAATRgBADRhBADQhBEAQBNGAABNGAEANGEEANCEEQBAE0YAAE0YAQA0YQQA0IQRAEATRgAAbVlhVFUXLGcMAGA1W7O9G6vqnknuneSAqto/SfVN901y8Iy3DQBgRW03jJI8L8mLkzwwyaX5Zhh9IcnrZ7hdAAArbrthNMZ4bZLXVtULxxh/tELbBAAwF3d2xChJMsb4o6p6dJLDppcZY5wxo+0CAFhxywqjqvrfSR6c5LIkd/TwSCKMAIA9xrLCKMmGJOvHGGOWGwMAME/L/RyjK5P8+1luCADAvC33iNEBSa6uqouT3LYwOMZ48ky2CgBgDpYbRi+d5UYAAOwOlvuutA/MekMAAOZtue9K+2Im70JLkn2T3D3Jl8cY953VhgEArLTlHjH6joXpqqokxyY5clYbBQAwD8t9V9o3jIl3JXniDLYHAGBulvtS2k9OXb1bJp9r9NWZbBEAwJws911p/3Fq+vYk12XychoAwB5juecYPWfWGwIAMG/LOseoqg6pqrOq6rN9eWdVHTLrjQMAWEnLPfn6zUnOSfLAvvxVjwEA7DGWG0ZrxxhvHmPc3pfTkqyd4XYBAKy45YbRLVX1c1W1T19+Lskts9wwAICVttww+k9JnpbkM0luTPLUJM+e0TYBAMzFct+u/7Ikm8YYn0uSqnpAkv+ZSTABAOwRlnvE6AcWoihJxhi3Jnn4bDYJAGA+lhtGd6uq/Reu9BGj5R5tAgBYFZYbN7+f5O+q6h19/aeTvGI2mwQAMB/L/eTrM6pqc5In9NBPjjGunt1mAQCsvGW/HNYhJIYAgD3Wcs8xAgDY4wkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKDNLIyq6tSq+mxVXTk19oCqOr+qPtk/9+/xqqrXVdWWqrq8qh4xtcymnv+TVbVpavyRVXVFL/O6qqpZPRYAYO8wyyNGpyXZuM3YSUkuGGOsS3JBX0+SY5Ks68sJSd6YTEIqyclJHpXkiCQnL8RUz/PzU8ttuy4AgLtkZmE0xvhgklu3GT42yek9fXqS46bGzxgTFyW5f1UdlOSJSc4fY9w6xvhckvOTbOzb7jvGuGiMMZKcMXVfAAA7ZKXPMTpwjHFjT38myYE9fXCST0/Nd32PbW/8+kXGF1VVJ1TV5qravHXr1p17BADAHmtuJ1/3kZ6xQus6ZYyxYYyxYe3atSuxSgBgFVrpMLqpXwZL//xsj9+Q5NCp+Q7pse2NH7LIOADADlvpMDonycI7yzYlOXtq/Ph+d9qRST7fL7mdl+Toqtq/T7o+Osl5fdsXqurIfjfa8VP3BQCwQ9bM6o6r6q1JjkpyQFVdn8m7y16Z5O1V9dwkn0rytJ793CRPSrIlyVeSPCdJxhi3VtXLk1zS871sjLFwQvcvZvLOt3sleU9fAAB22MzCaIzxzCVu+rFF5h1JTlzifk5Ncuoi45uTPGxnthEAYJpPvgYAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBocwmjqrquqq6oqsuqanOPPaCqzq+qT/bP/Xu8qup1VbWlqi6vqkdM3c+mnv+TVbVpHo8FANhzzPOI0Y+OMQ4fY2zo6ycluWCMsS7JBX09SY5Jsq4vJyR5YzIJqSQnJ3lUkiOSnLwQUwAAO2J3eint2CSn9/TpSY6bGj9jTFyU5P5VdVCSJyY5f4xx6xjjc0nOT7JxpTcaANhzzCuMRpL3VdWlVXVCjx04xrixpz+T5MCePjjJp6eWvb7Hlhr/NlV1QlVtrqrNW7du3VWPAQDYw6yZ03ofO8a4oar+XZLzq+ofpm8cY4yqGrtqZWOMU5KckiQbNmzYZfcLAOxZ5nLEaIxxQ//8bJKzMjlH6KZ+iSz987M9+w1JDp1a/JAeW2ocAGCHrHgYVdV9quo7FqaTHJ3kyiTnJFl4Z9mmJGf39DlJju93px2Z5PP9ktt5SY6uqv37pOujewwAYIfM46W0A5OcVVUL6//zMcZ7q+qSJG+vqucm+VSSp/X85yZ5UpItSb6S5DlJMsa4tapenuSSnu9lY4xbV+5hAAB7mhUPozHGtUl+cJHxW5L82CLjI8mJS9zXqUlO3dXbCADsnXant+sDAMyVMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGhr5r0BALDgMX/0mHlvAru5v33h3870/h0xAgBowggAoAkjAIAmjAAAmjACAGjCCACgCSMAgCaMAACaMAIAaMIIAKAJIwCAJowAAJowAgBowggAoAkjAIAmjAAAmjACAGjCCACgrfowqqqNVfWJqtpSVSfNe3sAgNVrVYdRVe2T5I+THJNkfZJnVtX6+W4VALBareowSnJEki1jjGvHGF9LcmaSY+e8TQDAKlVjjHlvww6rqqcm2TjG+M99/VlJHjXGeME2852Q5IS++tAkn1jRDd07HJDk5nlvBCyT/ZXVxP46GzePMTZuO7hmHluy0sYYpyQ5Zd7bsSerqs1jjA3z3g5YDvsrq4n9dWWt9pfSbkhy6NT1Q3oMAOAuW+1hdEmSdVX1oKraN8kzkpwz520CAFapVf1S2hjj9qp6QZLzkuyT5NQxxlVz3qy9lZcqWU3sr6wm9tcVtKpPvgYA2JVW+0tpAAC7jDACAGjCaA9SVXdU1WVVdWVVvaOq7r3EfB/Zwfs/rKp+Zue2kr3F1P64cNnuV/ZU1VFV9eip68+vquN3Yv2n9WedrZiquntVfWwHl312VT1wV28Tu0ZV/VZVXVVVl/f+/Kgev66qDliB9V9YVd6yvwJW9cnXfJt/HWMcniRV9ZYkz0/yBws3VtWaMcbtY4xHL3UHd+KwJD+T5M93ZOGqqkzOa/v6Dq6f1eUb++MyHZXkS0k+kiRjjD9ZbKaF/XjnN28mHpvkb3dw2WcnuTLJ/9tlW8MuUVU/nOQnkjxijHFbh9C+u+B+d+m+XFX7jDHu2FX3t7dyxGjP9aEkD+ln4R+qqnOSXJ0kVfWl/nlmVf2HhQUWnmH3kaEPVdXH+rIQUq9M8rh+tvSSqtqnql5dVZf0s6jnbbsRfV+fqKozMvmjf2gvc2VVXVFVT+/5aonxo6rqA1V1dlVdW1WvrKqfraqLe74Hz/IfkV2vn2H/Tu9bV1TV91TVYZmE/Et6/3pcVb20qn6ll7mwqv6wqjYneVFVPbL3i0ur6ryqOmiJ1T2+qj7S+85T+752al+rqrVV9c7e7y+pqsdMrW9jkvf0fO/q7buqJp++v/D4v1RVr+nxC/r+nppkQ5K39OO/1678N2enHZTJpyTfliRjjJvHGNMB+8Lp/TlJquqIqvq7qvp474MP7fFnV9U5VfU3SS6oqvtU1am9n328qo7t+e7Vf6Ovqaqzkiy6T/Tv06tqcqTyp6vqmb0dV1bVq6bmW2r8S/37cFVV/XVv94X9O/DkXfzvuDqMMVz2kEuSL/XPNUnOTvILmTwL/3KSBy0y31OSnN7T+yb5dCa/fPdOcs8eX5dkc08fleTdU/dzQpL/2tP3SLJ5ej09fliSryc5sq//VJLzM/l4hQOT/HMmf3SWGj8qyb/09D0y+QDP3+n7elGSP5z3v7vLkvvjHUkum7o8vcevS/LCnv7FJH/W0y9N8itTy3/jepILk7yhp++eyVGltX396Zl8VMe26z8tyTsyeQK4PpPvVdzePrisfS2TI6aP7envSnLN1DovTnLvnn5A/7xXJk8KvrOvjyQ/29O/neT1U49xw7z/u7ksui/v1/vw/03yhiQ/MnXbUvvzfZOs6ekfT/LOnn52kuun9o//nuTnevr+vY77JPkvC/t1kh9Icvti+0ev/9d6+oG9P6/N5P8Df5PkuKXGp/bHY3r6rCTv69+xH0xy2bz/7edx8VLanuVeVXVZT38oyZuSPDrJxWOMf1pk/vckeW1V3SOTZ7ofHGP8a1XdL8nrq+rwTP7n9t1LrO/oJD9Q3zyP436ZhNS26/rUGOOinn5skreOyeHem6rqA0l+aDvjX0hyyRjjxiSpqn/M5Bc3Sa5I8qN3/s/CnGzvpbS/7J+XJvnJZd7f2/rnQ5M8LMn5VZVMAufGJZZ515i8dHt1VR3YYzu7r/14kvW97iS5b1Xtl8n+f+sY4ys9/ktV9ZSePjST341bMnmisPBY/s/UvwW7qTHGl6rqkUkel8l+8LaqOmmMcVrPstj+fL8kp1fVukzi4+5Td3n+GOPWnj46yZMXjo4muWcmwf34JK/r9V9eVZdvZxMX9qcfSnLhGGNr8o1TKh7f619s/F1Jvpbkvb38FUluG2P8W1VdkckT272OMNqzfNv/iPqP95cXm3mM8dWqujDJEzN51n1m3/SSJDdl8ozhbkm+usT6KpNnSufdyXYtuv674Lap6a9PXf967MOr1cJ/wzuy/P+GC/tRJblqjPHDd2E9C8vdlfmX2tfulskR0G/5veiX5M7r6aMyCagfHmN8pX/P7rnEOn2Y3CrQIX1hkgs7GjZlclQyWXx/fnmS948xntIvFV84dXfTfxMryU+NMb7ly82nwns5duZv7L+NPlyUqX1+jPH1qtor/746x4i3JXlOJs+EFp413C/Jjf1M+1mZPCNPki8m+Y6pZc9L8gtVdfckqarvrqr73Mn6PpTk6TU5P2ltJs9aLt7OOHuPbfevpXwiydqanBC78E6w77sL69nZfe19SV64cKWPrCZT5xdl8jv0uY6i70ly5NTyd0uycJT1Z5J8uKeX+/hZYVX10D7ys+DwJJ+6k8Xul29+d+eztzPfeZmco1S9rof3+Acz2T9SVQ/L5OW0O3Nxkh+pqgOqap8kz0zyge2MswhhxPuS/EiSvx5jfK3H3pBkU1X9fZLvyTefjVye5I6q+vuqekmSP8vkhO6PVdWVSf5X7vzZ/1l9P3+fyevcvzbG+Mx2xlm97lXf+nb9V97J/H+V5Ck97+OWmqn306cmeVXvo5dl8pLxcu3svvZLSTbU5A0HVyd5fv/P5iFjjH/oed6bZE1VXZPJmxYumlr+y0mO6N+ZJyR5WY+fluRPnHy9W9ovk5fFru6XtNZncg7c9vxekv9RVR/P9v8uvjyTl9kur6qr+nqSvDHJfr0PvSyTl+m2q18GPinJ+zPZvy8dY5y91Pid3d/eyleCAOykqnpsJifQPn8Z835pjLHfCmwWsAOEEcAKEkawexNGAADNOUYAAE0YAQA0YQQA0IQRsNerquOqav28twOYP2EE7JZqYqX+Rh2XyWfTAHs5YQTsNqrqsKr6RFWdkckXr76pvw38iv7KjYVgevUi40dV1Qeq6uz+ZvBXVtXP1uRby6+oqgcvsc5HJ3lyklf3hys+uCbfVL5w+7qF6zX5JvPf6/u7uKoe0uNrq+qdVXVJXx4z238pYFb2yu9BAXZr6zL5HqqDkzw/k+/sOyDJJVX1wUw+5frwRcbTY9+b5NYk12byTedHVNWLMvkajxdvu7Ixxkeq6pwk7x5j/EWSVNXnq+rwMcZlmXxlzpunFvn8GOP7q+r4JH+Y5CeSvDbJa8YYH66q78rkax6+d9f9kwArxREjYHfzqTHGRUkem+StY4w7xhg3ZfLdTj+0nfEkuWSMceMY47Yk/5jJV94kk28NP+wubMOfJXlOf9XH05P8+dRtb536ufBFtj+e5PVVdVmSc5Lct6p8iCOsQo4YAbubnfmm8Numpr8+df3ruWt/796Z5ORMvkvt0jHGLVO3jUWm75bkyDHGV+/a5gK7G0eMgN3Vh5I8var2qaq1SR6fybeELzW+M77lm+07cM7L5Is837zNvE+f+vl3Pf2+TF6qS5JU1eE7uT3AnAgjYHd1VpLLM/k28L9J8mtjjM9sZ3xnnJnkV6vq41Mnab8lkyNN79tm3v37G9ZflOQlPfZLSTZU1eVVdXUm50YBq5DvSgNYRFX9SpL7jTH+29TYdUk2jDFuntuGATPlHCOAbVTVWUkenOQJ894WYGU5YgTsNarqt5L89DbD7xhjvGIe2wPsfoQRAEBz8jUAQBNGAABNGAEANGEEANCEEQBA+/9Mkh9iaL0mpwAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.catplot('room_type', data=abb_vis_df, kind = 'count', height =8, aspect = 1)" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAArQAAAGDCAYAAADaqYNSAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzde9xv5Zz/8de7A5XSQZh2xU6DhNrsLSYyicFEwoTIIX6UGeeZjAxjZ4zRzBhmiCGGHKJoHMrZmNJBqr1rV7tIqKSMFNLuRPX5/bGuW999uw/ffbgP675fz8fjfnzXuq5rXeuzru+99/7s63ut9U1VIUmSJPXVBjMdgCRJkrQuTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0nzUJK9k/x0puMASPJ3ST48ZNsjknxygvrLkzxh/UU3YSzHJPnHaTjPrHmvpNnKhFbSvNYSoN8m2XZU+XlJKsnCdey/kvzxuvQx11XVP1XVS2c6Dkn9ZUIrSXAZ8NyRnSQPBTabuXBmtyQbzXQMM80xkGYXE1pJgk8ALxzYfxHw8cEGSbZM8vEkv0hyRZI3J9mg1f1xkm8nuT7JtUmOb+WntsPPT7IqyXNGnzjJwUnOSHJUO/77SR4/UL8gyYlJfpnkh0leNlB3RJITkhyf5IYk5ybZfaB+tdnhiT4iT3J4kh+1fi5O8owxYnx3kuuAI8Y4/ogkn2ljdEOSi5IsGXUd/93G77Ikrx517CcH9l/Yxvi6JH8/xjKCu4x3nuYR7Rp+leSjSTYZ6PtlbRx/2cZ1QStf2MZro4G2pyR56SRjsHWSL7dYzkqy88DxeyY5p72v5yTZc9R4jPe+btreq18luRh4xFjvmaQ7mdBKEnwXuHuSByXZEDgQGL1O873AlsD9gD+lS4Bf3OreBnwD2BrYobWlqh7b6nevqs2r6vhxzv9I4EfAtsBS4HNJtml1xwE/BRYABwD/lGSfgWP3Bz4LbAN8CvhCko3X7PKhnX+vdo1vBT6ZZLtRMf4YuDfw9nH6eFqLdyvgROAogJb4nwScD2wPPB54bZInje4gya7A+4GDgO1aPNsPc54BBwFPAnYGHgC8ufW9D/AO4Nmt7ytaP8MaawwOpBuvrYEfjpS39+/LwHuAewDvAr6c5B7tuIne16Ut9p3bdbxoDWKU5iUTWknqjMzS/hnwPeCqkYqBJPeNVXVDVV0O/Bvwgtbkd8B9gQVVdUtVnb6G574G+Peq+l1Lei8BnpJkR+DRwBtavyuAD7P6bPLyqjqhqn5HlzRtAjxqDc9PVX22qq6uqjtaDJcCeww0ubqq3ltVt1XVzeN0c3pVfaWqbqcbz5HZ4kcA96yqf6iq31bVj4EP0Y3paAcAJ1XV6VX1W+AtQA15nhFHVdWVVfVLugRzZDnJQcBHqurcqroVeCPwJ2uwTnqsMfh8VZ1dVbcBxwKLWvlTgEur6hOt/aeB7wP7DfG+Pht4e1X9sqqupEuKJU3AhFaSOp8AngcczKjlBnQzpxvTzeiNuII7Zw7/FghwdvsI/CVreO6rqmowabuCbuZuAfDLqrphnPMCXDmyUVV3cOes3xppH/OvSPLrJL8GHkJ33X9wngn838D2TcAm7SP8+wILRvpu/f8d3UznaAtY/ZpuAq4b8jxjxToyliN9//49rKpVre/RM8DjGWsMRsey+VjnGohleyZ/X1cbgzH6kTSKCa0kAVV1Bd3NYfsCnxtVfS13zsKOuA9tFreq/q+qXlZVC4BDgfdnzZ5ssH2SjOr76vazTZItxjpvs+PIRvtof4d2HHQJ1uDNbX801smT3JduxvSVwD2qaitgJV2SPmL0LOmauBK4rKq2GvjZoqr2HaPtz9o1jMS2Kd1H9mtix4HtkbGkvf7+PUxyt9b3VcCNrXii8VqTMVjtXAOxXMXk7+vPxrgGSRMwoZWkO/0/YJ+qunGwsH20/Rng7Um2aAngX9PW2SZ5VpKRJOxXdInPHW3/53TrbidyL+DVSTZO8izgQcBX2sfN3wHekWSTJLu1GAfX9y5O8sw2Q/la4Fa6NcEAK4DnJdkwyZPp1v6O5W4t5l+063kx3Qzt+nI2cEOSN7QbnjZM8pAkY93sdALdx/J7JrkL3c1XGaPdRF6RZIe2jvVNwMja5U8DL06yKMldgX8Czqqqy6vqF3QJ5fNbfC+hW8O6tr4CPCDJ85JslO6GwF2BLw3xvn4GeGOSrdvv1avWIQ5pXjChlaSmqn5UVcvGqX4V3Szej4HT6W7A+kirewRwVpJVdDcpvaatE4UuIftY+6j92eP0fRZwf7qZ4LcDB1TVyMfszwUW0s3qfR5YWlX/M3DsF4Hn0CXSLwCe2dbTArwG2A/4Nd360S+Mc90X060JPpMuAX8ocMY4sa6x9h+Cp9KtL72M7jo/THfD1+i2F9GN9XF0M5Wr6NYY37oGp/wU3U16P6a72e0fW9//A/w98N+t751ZfR3vy4DX0y1DeDBd0rlW2vv3VOBvWn9/Czy1qq5tTSZ6X99Kt8zgsnYdn1jbOKT5Iqsv25IkTackBwMvrarHrMWxRwB/XFXPX99xzRZJNqdLyO9fVZfNdDySZidnaCVJs0qS/ZJs1ta4vhO4ELh8ZqOSNJuZ0EqSZpv9ufOmuPsDB5YfJ0qagEsOJEmS1GvO0EqSJKnXTGglSZLUaxtN3kRz1bbbblsLFy6c6TAkSZImtXz58mur6p5j1ZnQzmMLFy5k2bLxHrkpSZI0eyQZ92ugXXIgSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvmdBKkiSp10xoJUmS1GupqpmOQTMkC1IcOtNRSJKkPqul05NLJlleVUvGqnOGVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNRNaSZIk9ZoJrSRJknptTie0Sd6d5LUD+19P8uGB/X9L8pYkh7f9I5Ic1raPSXJA2/5wkl2nMM5VU9W3JEnSXDenE1rgDGBPgCQbANsCDx6o3xP4RlUdOVEnVfXSqrp4yqJcB0k2mukYJEmSZtJcT2i/A/xJ234wsBK4IcnWSe4KPAjYLclRE3WS5JQkS9r2fyZZluSiJG8daHN5knckWdHqH95mhH+U5OWtzXZJTm1tVibZa+D4d7c+v5XknmOcd9skl7ftg5OcmOR/gW8l2SzJZ5JcnOTzSc4aOU6SJGmum9MJbVVdDdyW5D50s7FnAmfRJblLgAuB365ht29q3yO8G/CnSXYbqPtJVS0CTgOOAQ4AHgWMJL7PA77e2uwOrGjldwOWVdWDgW8DS4eI4+HAAVX1p8BfAb+qql2BvwcWr+E1SZIk9dZ8+Lj6O3TJ7J7Au4Dt2/b1dEsS1tSzkxxCN3bbAbsCF7S6E9vrhcDmVXUD3YzwrUm2As4BPpJkY+ALVTWS0N4BHN+2Pwl8bog4vllVv2zbjwH+A6CqVia5YLyDWuyHALDlEGeRJEma5eb0DG0zso72oXRLDr5LN0O7J12yO7QkOwGHAY+vqt2ALwObDDS5tb3eMbA9sr9RVZ0KPBa4CjgmyQvHOVW119u48z3aZFSbG9ck9t93XHV0VS2pqiVstjY9SJIkzS7zIaH9DvBU4JdVdXub1dyKLqldo4QWuDtdInl9knsDf74mBye5L/DzqvoQ8GG6ZQPQvQ8HtO3nAae37cu5c/nASP1YzgCe3c6xK13yLkmSNC/MhyUHF9I93eBTo8o2r6prkwzdUVWdn+Q84PvAlaz5koW9gdcn+R2wChiZob0R2CPJm4FrgOe08ncCn2nLBL48Qb/vBz6W5OIW20V0SyokSZLmvFTV5K00qyXZENi4qm5JsjPwP8ADq2rCG96yIMWh0xKiJEmao2rp9OSSSZa3G/P/wHyYoZ0PNgNObjebBfiryZJZSZKkucKEdg5oT1PwubOSJGlemg83hUmSJGkOM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNZ9yMI8tXrCYZUuXzXQYkiRJ68QZWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvpapmOgbNkCxIcehMRyFJktaXWjp387oky6tqyVh1ztBKkiSp10xoJUmS1GsmtJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqRem7KENsntSVYkOT/JuUn2XMPjj0hyWNvepfV1XpKd1zKe3/c3Rt2bklyU5IJ2nke28tcm2WxtzjeTkvzdTMcgSZI0XaZyhvbmqlpUVbsDbwTesQ59PR04oaoeVlU/mqxxOkNdW5I/AZ4KPLyqdgOeAFzZql8L9C6hBUxoJUnSvDFdSw7uDvxqZCfJ65Oc02ZE3zpQ/qYkP0hyOvDAVrYvXWL5l0lObmV/nWRl+3ltK1uY5JIkHwdWAjuO1d8YtgOurapbAarq2qq6OsmrgQXAyQPnXTUQ6wFJjkmyRZLLkmzcyu/e9h+a5OyB9guTXNi2Fyf5dpLlSb6eZLtW/uokF7dxOa6V7ZHkzDY7/Z0kI+NycJLPJflakkuT/EsrPxLYtM00H7s2b5YkSVKfbDSFfW+aZAWwCV3SuA9AkicC9wf2AAKcmOSxwI3AgcCiFte5wPKq+kqSDwCrquqdSRYDLwYe2Y4/K8m36RLm+wMvqqrvtnZ/0N8YcX4DeEuSHwD/AxxfVd+uqvck+WvgcVV17XgXWVU3JDkFeArwhXbOz1XVhUnukmSnqroMeA5wfEt83wvsX1W/SPIc4O3AS4DDgZ2q6tYkW7VTfB/Yq6puS/IE4J+Av2h1i4CHAbcClyR5b1UdnuSVVbVo4rdHkiRpbpiOJQe7AE8GPp4kwBPbz3l0SeYudInoXsDnq+qmqvoNcOI4/T6mtbuxqlYBn2vHAlxRVd9t20P11/pYDBwC/IIu6Tx4Da/1w3RJNu31o237M3SJLO31eLqZ4ocA32wJ/5uBHVqbC4BjkzwfuK2VbQl8NslK4N3AgwfO+62qur6qbgEuBu47WaBJDkmyLMkyblrDq5QkSZqFpmXJQVWdCWwL3JNuVvUdLdldVFV/XFX/tZ5OdeNkDZLs2D6OX5Hk5S2+26vqlKpaCrySO2dA/+BSBrY3+X1h1RnAwiR7AxtW1cpWdTzw7CQP6JrVpXTXf9HA9T+0qp7Y2j8FeB/wcOCcJBsBbwNOrqqHAPsNnpduZnbE7Qwx415VR1fVkqpa0svVwZIkSaNMS0KbZBdgQ+A64OvAS5Js3uq2T3Iv4FTg6Uk2TbIFXfI2ltNau82S3A14Risbbcz+qurKgWTyA0kemOT+A8ctAq5o2zcAWwzU/TzJg9oNZ88Ydb6PA5/iztlZ2g1stwN/T5fcAlwC3LPdjEaSjZM8uPW5Y1WdDLyBbmZ28/Z6VTv24HHGZLTfjazplSRJmuumYw0tdLOSL6qq24FvJHkQcGa3AoFVwPOr6twkxwPnA9cA54zVaWt3DDByw9WHq+q8JAvHaDdpf3RJ43vbmtXbgB/SLT8AOBr4WpKrq+pxdGtcv0S3NGFZO3bEscA/Ap8e1f/xwL8CO7W4fpvkAOA9Sbakew/+HfgB8MlWFuA9VfXrdrPXx5K8GfjyONcw2tHABUnOraqDhjxGkiSpl1JVk7fSpFqSun9VvWCmYxlWFqQ4dKajkCRJ60stnbt5XZLlVbVkrLqpnKGdN5K8F/hzYN+ZjkWSJGm+MaFdD6rqVTMdgyRJ0nw1XV+sIEmSJE0JE1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqRe8ykH89jiBYtZtnTZTIchSZK0TpyhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPVaqmqmY9AMyYIUh850FJKksdRS/32WBiVZXlVLxqpzhlaSJEm9ZkIrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYR2CiRZNWr/4CRHrWEfeyf50vqNTJIkae4xoZ2Fkmw00zFIkiT1hYnTNEuyH/Bm4C7AdcBBVfXzJEcAOwP3A34CfHDgmLsB7wUeAmwMHFFVX0xyMPB04G7A/YF3tn5fANwK7FtVv5yeK5MkSZoZztBOjU2TrBj5Af5hoO504FFV9TDgOOBvB+p2BZ5QVc8d1d+bgP+tqj2AxwH/2pJc6JLcZwKPAN4O3NT6PhN44ejAkhySZFmSZdy07hcqSZI005yhnRo3V9WikZ02k7qk7e4AHJ9kO7rZ1MsGjjuxqm4eo78nAk9Lcljb3wS4T9s+uapuAG5Icj1wUiu/ENhtdEdVdTRwNEAWpNbi2iRJkmYVZ2in33uBo6rqocChdMnpiBvHOSbAX1TVovZzn6r6Xqu7daDdHQP7d+B/WCRJ0jxgQjv9tgSuatsvGvKYrwOvShKAJA+bisAkSZL6yIR2+h0BfDbJcuDaIY95G93NYBckuajtS5IkCUiVyyjnqyxIcehMRyFJGkst9d9naVCS5VW1ZKw6Z2glSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF7zm6TmscULFrNs6bKZDkOSJGmdOEMrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6rVU1UzHoBmSBSkOnekoJKk/aqn/ZkozJcnyqloyVp0ztJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqdc2GrZhknsBm4zsV9VPpiQiSZIkaQ1MOkOb5GlJLgUuA74NXA58dYrjmnWS3J5kRZLzk5ybZM+17OeYJAes5bHfmaT+lCRjPnBYkiRprhpmycHbgEcBP6iqnYDHA9+d0qhmp5uralFV7Q68EXjHdAdQVWuVREuSJM1lwyS0v6uq64ANkmxQVScD830W8O7ArwCS7J3kSyMVSY5KcnDbPjLJxUkuSPLOgeMfm+Q7SX48Mlub5H1Jnta2P5/kI237JUne3rZXDZznDUkubDPGRw4Gl2SDNhP8j1Ny9ZIkSbPIMGtof51kc+A04Ngk1wA3Tm1Ys9KmSVbQrSPeDthnosZJ7gE8A9ilqirJVgPV2wGPAXYBTgROoBvfvdr+9q0Nrey4UX3/ObA/8MiquinJNgPVGwHHAiur6u1jxHUIcAgAW05+0ZIkSbPdMDO0+wM3Aa8Fvgb8CNhvKoOapUaWHOwCPBn4eJJM0P564Bbgv5I8k24MR3yhqu6oqouBe7ey04C9kuwKXAz8PMl2wJ8Ao9fOPgH4aFXdBFBVvxyo+yDjJLOt7dFVtaSqlrDZMJctSZI0u02a0FbVjcCOwN5V9THgw8Bvpzqw2ayqzgS2Be4J3Mbq47hJa3MbsAfd7OtT6f4zMOLWge209lcBW9Ely6fSJbjPBlZV1Q1rEN53gMcl2WTSlpIkSXPAME85eBldUvbBVrQ98IWpDGq2S7ILsCFwHXAFsGuSu7ZlBY9vbTYHtqyqrwCvA3Yfouvv0s2EjyS0h7XX0b4JvDjJZu1cg0sO/gv4CvCZJEM/lk2SJKmvhkl4XkE303gWQFVd2p5JO9+MrKGFblb1RVV1O3Blks8AK+kebXZea7MF8MU2Uxrgr4c4x2nAE6vqh0muALZhjIS2qr6WZBGwLMlv6RLYvxuof1eSLYFPJDmoqu5YmwuWJEnqg1TVxA2Ss6rqkUnOq6qHtVm/c6tqt+kJUVMlC1IcOtNRSFJ/1NKJ/82UNHWSLK+qMZ+0NcxNYd9O8nd0M5R/BnwWOGl9BihJkiStrWES2jcAvwAuBA6l+3j7zVMZlCRJkjSsCdfQJtkQuKg9qupD0xOSJEmSNLwJZ2jbTU+XJLnPNMUjSZIkrZFhnnKwNXBRkrMZ+IawqnralEUlSZIkDWmYhPbvpzwKSZIkaS1N+tguzV1LliypZcuWzXQYkiRJk1qnx3YleVSSc5KsSvLbJLcn+c36D1OSJElac8M8tuso4LnApcCmwEuB901lUJIkSdKwhkloqaofAhtW1e1V9VHgyVMbliRJkjScYW4KuynJXYAVSf4F+BlDJsKSJEnSVBsmMX1Ba/dKusd27Qj8xVQGJUmSJA3LpxzMY1mQ4tCZjkJSH9RS/62QNLPW6SkHkiRJ0mxmQitJkqReM6GVJElSr437lIMkJwHjLpqqqqdNSUSSJEnSGpjosV3vbK/PBP4I+GTbfy7w86kMSpIkSRrWuAltVX0bIMm/jbqj7KQky6Y8MkmSJGkIw6yhvVuS+43sJNkJuNvUhSRJkiQNb5hvCnsdcEqSHwMB7gscMqVRSZIkSUOadIa2qr4G3B94DfBq4IFV9Y2pDizJwiQrR5UdkeSwqT73wPn2T/KFgf03JvnhwP5+SU5cwz4XJnneOHUbJHlPkpVJLkxyTpsRJ8lXkmw1xjHTOiaSJEmzzaQztEk2Bg4FHtuKTknywar63ZRGNgOShO7b0+5oRd8BPjjQ5E+A3yS5V1VdA+zZ2qyJhcDzgE+NUfccYAGwW1XdkWQHuq8bpqr2XcPzSJIkzQvDrKH9T2Ax8P72s7iVzagkpyT5jyQr2ozmHq38iCSfSHJmkkuTvGzgmNe3Wc8Lkry1lS1MckmSjwMrgR1H2lfVL+gS2D9uRdsD/02XyNJez0hyzyT/3fo+J8mjW99/2uJbkeS8JFsARwJ7tbLXjbqs7YCfjSTUVfXTqvpV6+vyJNu27Tcl+UGS04EHDlzfzkm+lmR5ktOS7LIehlqSJGlWG2YN7SOqaveB/f9Ncv5UBbSGNquqRUkeC3wEeEgr3w14FN3Na+cl+XKruz+wB91a4BPbcT9p5S+qqu+OcY4zgD2TbAhcCnwXeFKSLwG7A+e0c7+7qk5Pch/g68CDgMOAV1TVGUk2B24BDgcOq6qnjnGuzwCnJ9kL+Bbwyao6b7BBksXAgcAiuvfvXGB5qz4aeHlVXZrkkXT/AdlnqJGUJEnqqWES2tuT7FxVPwJoTzy4fWrDAsb/UofB8k8DVNWpSe4+sMb0i1V1M3BzkpPpktjHAE8ERhLEzekS2Z8AV4yTzEK3pGBPYEPgTOBs4C3Aw4DvV9UtSZ4A7NqtWADg7i2BPQN4V5Jjgc9V1U8H2vzhhXX1D6RLQvcBvpXkWVX1rYFmewGfr6qbAEbW8Lbz7Ql8duAcdx19jiSHMHJT35bjhiJJktQbwyS0rwdOHvWUgxdPaVSd64CtR5VtA1w2sD866a0JygO8o6oG18SSZCFtneo4zgBeRZfQfqiqbkiyCbA3d66f3QB4VFXdMurYI9vs8L50SxOeNMF5ukCrbgW+Cnw1yc+Bp9PN1k5mA+DXVbVokv6PppvJJQsy7jfBSZIk9cUwTzn4Ft1M5qvpErsHVtXJUx1YVa0CfpZkH4Ak2wBPBk4faPacVvcY4Pqqur6V759kkyT3oEs8z6FbBvCSNpNJku2T3GuIUL5Hd6PWY7hzdncF8HK6ZBfgG3RjQ+t7UXvduaourKp/bjHsAtwAbDHWiZI8PMmCtr0B3dKJK0Y1OxV4epJN25rc/QCq6jfAZUme1Y5Pkt2RJEma42b7Uw5eCLwvybva/ltHlj40tyQ5D9gYeMlA+QXAycC2wNuq6mrg6iQPAs5sH8mvAp7PJMsnqqqSnAVsOXDNZ9J9bD8yQ/vqFucFdGN6Kl3C+9okjwPuAC6im3m9g24Zx/nAMVX17oHT3Qv4UJKRpQJnA0eNiufcJMcD5wPX0CXKIw4C/jPJm9uYHNfaSZIkzVmpmvhT5yQfpkuOPtaKXgDcXlUvneLYJpTkFLqbq5aNKj8CWFVV75yJuPokC1IcOtNRSOqDWuoKJUkzK8nyqloyVl3fn3IgSZKkeW42P+VgQlW19zjlR0xvJJIkSZpJs/kpB5IkSdKkJk1oq+pbSe7Pnd9IdUl7tJQkSZI044aZoYXu624XtvaLklBVH5+yqCRJkqQhDfPYrk8AO9M9e3Vk7WwBJrSSJEmaccPM0C4Bdq3Jnu8lSZIkzYBhEtqVwB8BP5viWDTNFi9YzLKlyyZvKEmSNIuNm9AmOYluacEWwMVJzgZ+fzNYVT1t6sOTJEmSJjbRDO3IN20V3eO6JEmSpFln3IS2qr6dZEPgoqraZRpjkiRJkoa2wUSVVXU7cEmS+0xTPJIkSdIaGeamsK2Bi9oa2htHCl1DK0mSpNkgkz2NK8mfjlVeVd+ekog0bbIgxaEzHYWk2ayW+sRGSbNDkuVVtWSsumG++tbEVZIkSbPWMN8UdgPdkw4A7gJsDNxYVXefysAkSZKkYQwzQ7vFyHaSAPsDj5rKoCRJkqRhTfiUg9Gq8wXgSVMUjyRJkrRGhlly8MyB3Q2AJcAtUxaRJEmStAaGeWzXfgPbtwGX0y07kCRJkmbcMGtoXzwdgUiSJElrY9I1tEl2SPL5JNe0n/9OssN0BLe2kqwatX9wkqMmOeb3bZIckeSwtn1Mkr2HPO9gHxsk+ViSj6TzlSRbtZ+/GqKvU5KM+aw1SZIk3WmYm8I+CpwILGg/J7UyjaM9DeIDdI84e2m7mW7fqvo1sBUwaUIrSZKk4QyT0N6zqj5aVbe1n2OAe05xXFMmyT3bLPM57efRkxxyPfDbduyRSS5OckGSd05wzHuAewAvrKo72rGXJ9kWOBLYOcmKJP/a6t6Q5MIk5yc5cqCfZyU5O8kPkuzV2m6Y5F9b7BckObSV791mdU9I8v0kx7bEWpIkaU4b5qaw65I8H/h0238ucN3UhbRebJpkxcD+NnSzzAD/Aby7qk5Pch/g68CDxuuoql4DkOQewDOAXaqqkmw1ziHPA74H7F1Vt41RfzjwkKpa1Pr9c7qb7B5ZVTcl2Wag7UZVtUeSfYGlwBOA/wdcX1WPSHJX4Iwk32jtHwY8GLgaOAN4NHD6eNcmSZI0FwyT0L4EeC/w7rZ/BjDbbxS7eSRhhG5tK93jxqBLCncdmLy8e5LNh+jzerrHlf1Xki8BXxqn3bnALsAedGM1mScAH62qmwCq6pcDdZ9rr8uBhW37icBuSQ5o+1sC96ebRT67qn4K0BL6hYxKaJMcAhzy+yMlST3LbyEAAB9CSURBVJJ6bpinHFwBPG0aYpkuGwCPqqrVnqU72afzVXVbkj2AxwMHAK8E9hmj6feBtwCfSfKkqrpoHWK9tb3ezp3vVYBXVdXXBxu2G9duHSgaPGbwOo4GjgbIgtToekmSpL4Z5ikH90tyUpJftKccfDHJ/aYjuCnyDeBVIztJFk3Q9vfaLO6WVfUV4HXA7uO1rarvAH8JfKktaxh0A7DFwP43gRcn2aydZxsm9nXgL5Ns3No/IMndhrkGSZKkuWiYJQefAt5Ht34U4EC69bSPnKqgptirgfcluYDu+k8FXj7EcVsAX0yyCd0s6V9P1LiqTmo3gX1t5IauVn5dkjOSrAS+WlWvb0n1siS/Bb4C/N0EXX+YbinBue2mr18ATx8ifkmSpDkpVRN/6pzkgqrabVTZ+VU17gyl+iELUhw601FIms1qqSuTJM0OSZZX1ZjP6B93hnbgo++vJjkcOA4o4Dl0s4iSJEnSjJtoycFyugR25G6pwbm8At44VUFJkiRJwxo3oa2qnaYzEEmSJGltDHNTGEn2pLsR6fftq+rjUxSTJEmSNLRJE9oknwB2BlbQPdsUuiUHJrSSJEmaccPM0C4Bdq3JHocgSZIkzYBJv1gBWAn80VQHIkmSJK2NiR7bdRLd0oItgIuTnM3AV6tW1Vz6Otx5afGCxSxbumymw5AkSVonEy05eOe0RSFJkiStpYke2/Xt6QxEkiRJWhvDPOXgBrqlB4OuB5YBf1NVP56KwCRJkqRhDPOUg38Hfgp8iu5bww6ke4zXucBHgL2nKjhJkiRpMsM85eBpVfXBqrqhqn5TVUcDT6qq44Gtpzg+SZIkaULDzNDelOTZwAlt/wDglrbts2l7bPnVy8lbM9NhSJoGtdS/riXNXcPM0B4EvAC4Bvh5235+kk2BV05hbJIkSdKkJp2hbTd97TdO9enrNxxJkiRpzUz0xQp/W1X/kuS9jLG0oKpePaWRSZIkSUOYaIb2e+3Vr5KSJEnSrDXRFyuc1F4/BpBks6q6aboCkyRJkoYx6U1hSf4kycXA99v+7kneP+WRSZIkSUMY5ikH/w48CbgOoKrOBx47lUFJkiRJwxomoaWqrhxVdPsUxCJJkiStsWES2iuT7AlUko2THMadN4z1WpLbk6wY+Dl8LfrYu43P6PKFSX6aZINR5SuSPDLJh5Ps2souT7Jt2161ttcjSZI0Hw3zTWEvB/4D2B64CvgG8IqpDGoa3VxVi9axj72BVcB3Bgur6vIkPwH2Ar4NkGQXYIuqOgs4ax3PK0mSJIaYoa2qa6vqoKq6d1Xdq6qeX1XXTUdwMyXJW5Kck2RlkqOTpJW/OsnFSS5IclyShXQJ/+vazOteo7r6NHDgwP6BwHGtr1OSLJkghs2TfCvJuUkuTLL/QN3fJ7kkyelJPt1mzUmyc5KvJVme5LSWQEuSJM1pE32xwlsmOK6q6m1TEM902zTJioH9d1TV8cBRVfUPAEk+ATwVOAk4HNipqm5NslVV/TrJB4BVVfXOMfr/DLAiyauq6jbgOcCzhoztFuAZVfWbthzhu0lOBJYAfwHsDmwMnAssb8ccDby8qi5N8kjg/cA+g50mOQQ4BIAth4xEkiRpFptoycGNY5TdDfh/wD2AuZDQjrfk4HFJ/hbYDNgGuIguob0AODbJF4AvTNZ5Vf08yUrg8Ul+DtxWVSuHjC3APyV5LHAH3ZKPewOPBr5YVbcAtyQ5CboZXWBP4LNtQhngrmPEdDRd4ksW5A++AU6SJKlvJvpihX8b2U6yBfAa4MV0H5n/23jH9V2STehmNpdU1ZVJjgA2adVPoXtk2X7Am5I8dIguR5Yd/LxtD+sg4J7A4qr6XZLLB+IYywbAr9fDmmBJkqRemXANbZJtkvwj3czkRsDDq+oNVXXNtEQ3M0aSxmvbrOcBAO1pBTtW1cnAG+g+sN8cuAHYYoL+PgfsS7fc4Lg1iGNL4JqWzD4OuG8rPwPYL8kmLb6nAlTVb4DLkjyrxZsku6/B+SRJknppojW0/wo8k+7j6YdW1Vx8nNToNbRfq6rDk3wIWAn8H3BOq9sQ+GSSLemWA7ynraE9CTih3bT1qqo6bfAErc2ZwB9V1Y/XILZjgZOSXAgso31TW1Wd09bSXkA363shcH075iDgP5O8mW597XHA+WtwTkmSpN5J1djLKJPcAdwK3AYMNgrdTWF3n/rwNJYkm1fVqiSbAacCh1TVuWvcz4IUh67/+CTNPrXUJfOS+i3J8qoa8wlRE62hHepbxDQjjm5fyrAJ8LG1SWYlSZLmimG+WEGzTFU9b6ZjkCRJmi2chZUkSVKvmdBKkiSp10xoJUmS1GsmtJIkSeo1bwqbxxYvWMyypctmOgxJkqR14gytJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddSVTMdg2ZIFqQ4dKajkLQ+1FL/Lpc0tyVZXlVLxqpzhlaSJEm9ZkIrSZKkXjOhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6rRcJbZKFSVaOKjsiyWHTHMcpSS5JsqL9nLAWfSxM8rxx6jZI8p4kK5NcmOScJDu1uq8k2WqMY6Z9HCRJkmaTjWY6gNkqSei+Se2OUVUHVdWydeh6IfA84FNj1D0HWADsVlV3JNkBuBGgqvZdh3NKkiTNWb2YoZ1Mmzn9jzZrujLJHq38iCSfSHJmkkuTvGzgmNe3GdALkry1lS1sM7AfB1YCOw55/v2SnJXkvCT/k+TerfxPB2Zzz0uyBXAksFcre92orrYDfjaSRFfVT6vqV62vy5Ns27bflOQHSU4HHjgQx85JvpZkeZLTkuyyVgMqSZLUI3NphnazqlqU5LHAR4CHtPLdgEcBdwPOS/LlVnd/YA8gwIntuJ+08hdV1XfHOc+xSW5u29+sqtcDpwOPqqpK8lLgb4G/AQ4DXlFVZyTZHLgFOBw4rKqeOkbfnwFOT7IX8C3gk1V13mCDJIuBA4FFdO/fucDyVn008PKqujTJI4H3A/uMOv4Q4BAAthznCiVJknqkLwltDVH+aYCqOjXJ3QfWm36xqm4Gbk5yMl0S+xjgicBIsrg5XSL7E+CKCZJZGHvJwQ7A8Um2A+4CXNbKzwDeleRY4HNV9dNuJcM4F9PVP5AuCd0H+FaSZ1XVtwaa7QV8vqpuAkhyYnvdHNgT+OzAOe46xjmOpkt8yYKMN66SJEm90ZeE9jpg61Fl23Bn4gh/mPTWBOUB3lFVHxysSLKQtmZ1Db0XeFdVnZhkb+AIgKo6ss0I7wuckeRJk3VUVbcCXwW+muTnwNPpZmsnswHw66patBbxS5Ik9VYv1tBW1SrgZ0n2AUiyDfBkuo/6Rzyn1T0GuL6qrm/l+yfZJMk9gL2Bc4CvAy9ps5ok2T7JvdYhxC2Bq9r2i0YKk+xcVRdW1T+38+4C3ABsMVYnSR6eZEHb3oBuucQVo5qdCjw9yaZtTe5+AFX1G+CyJM9qxyfJ7utwTZIkSb3QlxlagBcC70vyrrb/1qr60UD9LUnOAzYGXjJQfgFwMrAt8Laquhq4OsmDgDPbx/OrgOcDtw8Rx+Aa2mur6gl0M7KfTfIr4H+BnVr9a5M8DrgDuIhu5vUO4PYk5wPHVNW7B/q+F/ChJCNLBc4Gjho8eVWdm+R44HzgGrpEecRBwH8meXMbh+NaO0mSpDkrVf1fRpnkFLobrZaNKj8CWFVV75yJuGa7LEhx6ExHIWl9qKX9/7tckiaSZHlVLRmrrhdLDiRJkqTx9GnJwbiqau9xyo+Y3kgkSZI03ZyhlSRJUq+Z0EqSJKnXTGglSZLUaya0kiRJ6rU5cVOY1s7iBYtZtnT0t/hKkiT1izO0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvpapmOgbNkCxIcehMRyHNDbXUv0slaSolWV5VS8aqc4ZWkiRJvWZCK0mSpF4zoZUkSVKvmdBKkiSp10xoJUmS1GsmtJIkSeo1E1pJkiT1Wu8T2iR/lOS4JD9KsjzJV5I8YAbiOCbJAaPKVg1x3HeGaHN5km3HKN87yZ5rFqkkSdLc0uuENkmAzwOnVNXOVbUYeCNw71HtNpqJ+IZRVeuSkO4NmNBKkqR5rdcJLfA44HdV9YGRgqo6v6pOa7OXpyU5Ebg4ySZJPprkwiTnJXkcQJIvJ9mtbZ+X5C1t+x+SvKz1c0qSE5J8P8mxLZFeI0len+ScJBckeetA+ar2ukGS97dzfLPNNA/O+L4qybkt/l2SLAReDrwuyYokeyV5VpKVSc5Pcuoaj6YkSVIPzdqZyyE9BFg+Qf3DgYdU1WVJ/gaoqnpokl2Ab7SlCacBeyW5ArgNeHQ7di+6hHE74GHAg4GrgTNam9PHON+/Jnnz6MIkTwTuD+wBBDgxyWOrajDpfCawENgVuBfwPeAjA/XXVtXDk/wVcFhVvTTJB4BVVfXOdp4LgSdV1VVJtppgXCRJkuaMvs/QTubsqrqsbT8G+CRAVX0fuAIYSWgfS5ekfhnYPMlmwE5VdclAPz+tqjuAFXSJ51heX1WLRn4Gyp/Yfs4DzgV2oUtwBz0G+GxV3VFV/wecPKr+c+11+QTnPwM4JsnLgA3HapDkkCTLkizjpnF6kSRJ6pG+z9BeBBwwQf2NQ/RxDrAE+DHwTWBb4GWsPvN768D27az5uAV4R1V9cA2PGzQSw7jnr6qXJ3kk8BRgeZLFVXXdqDZHA0cDZEFqHeKRJEmaFfo+Q/u/wF2THDJSkGS3JHuN0fY04KDW5gHAfYBLquq3wJXAs4AzW7vDgPW5BvXrwEuSbN7Ov32Se41qcwbwF20t7b3pbviazA3AFiM7SXauqrOq6i3AL4Ad10v0kiRJs1ivE9qqKuAZwBPaY7suAt4B/N8Yzd8PbNDWmR4PHFxVI7OepwHXVNXNbXuH9rq+4vwG8CngzHb+ExhIRJv/Bn4KXEy3NOJc4PpJuj4JeMbITWF0a3gvTLIS+A5w/vq6BkmSpNkqXU6o2SDJ5lW1Ksk9gLOBR7f1tFNzvgUpDp2q3qX5pZb6d6kkTaUky6tqyVh1fV9DO9d8qT2d4C7A26YymZUkSZorTGhnkarae6ZjkCRJ6pter6GVJEmSTGglSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zacczGOLFyxm2dJlMx2GJEnSOnGGVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrqaqZjkEzJAtSHDrTUUj9Vkv9O1SSpkOS5VW1ZKw6Z2glSZLUaya0kiRJ6jUTWkmSJPWaCa0kSZJ6zYRWkiRJvWZCK0mSpF4zoZUkSVKvmdCugySV5JMD+xsl+UWSL7X9pyU5fJxjV7XXhUmeNz0RS5IkzT0mtOvmRuAhSTZt+38GXDVSWVUnVtWRk/SxEDChlSRJWksmtOvuK8BT2vZzgU+PVCQ5OMlRbXunJGcmuTDJPw4cfySwV5IVSV6XZJMkH23tzkvyuHb8l5Ps1rbPS/KWtv0PSV6WZO8kpyQ5Icn3kxybJNNw/ZIkSTPKhHbdHQccmGQTYDfgrHHa/Qfwn1X1UOBnA+WHA6dV1aKqejfwCqBau+cCH2t9n0aX+G4J3AY8uh2/F3Bq234Y8FpgV+B+A20kSZLmLBPadVRVF9AtG3gu3WzteB7NnbO3n5ig3WOAT7a+vw9cATyALqF9bOvny8DmSTYDdqqqS9qxZ1fVT6vqDmBFi2s1SQ5JsizJMm4a6hIlSZJmtY1mOoA54kTgncDewD0maFfrcI5zgCXAj4FvAtsCLwOWD7S5dWD7dsZ4f6vqaOBogCzIusQjSZI0KzhDu358BHhrVV04QZszgAPb9kED5TcAWwzsnzZSn+QBwH2AS6rqt8CVwLOAM1u7w7hzuYEkSdK8ZEK7HrSP+d8zSbPXAK9IciGw/UD5BcDtSc5P8jrg/cAGrd3xwMFVNTLzehpwTVXd3LZ3aK+SJEnzVqr81Hm+yoIUh850FFK/1VL/DpWk6ZBkeVUtGavOGVpJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrfvXtPLZ4wWKWLV0202FIkiStE2doJUmS1GsmtJIkSeo1E1pJkiT1mgmtJEmSes2EVpIkSb1mQitJkqReM6GVJElSr5nQSpIkqddMaCVJktRrJrSSJEnqNRNaSZIk9ZoJrSRJknrNhFaSJEm9ZkIrSZKkXktVzXQMmiFJbgAumek4ZpFtgWtnOohZxPFYneOxOsfjTo7F6hyP1Tkeq1uX8bhvVd1zrIqN1j4ezQGXVNWSmQ5itkiyzPG4k+OxOsdjdY7HnRyL1Tkeq3M8VjdV4+GSA0mSJPWaCa0kSZJ6zYR2fjt6pgOYZRyP1Tkeq3M8Vud43MmxWJ3jsTrHY3VTMh7eFCZJkqRec4ZWkiRJvWZCO08leXKSS5L8MMnhMx3PdEhyeZILk6xIsqyVbZPkm0kuba9bt/IkeU8bnwuSPHxmo193ST6S5JokKwfK1vj6k7yotb80yYtm4lrWh3HG44gkV7XfkRVJ9h2oe2Mbj0uSPGmgfE78WUqyY5KTk1yc5KIkr2nl8/J3ZILxmHe/I0k2SXJ2kvPbWLy1le+U5Kx2XccnuUsrv2vb/2GrXzjQ15hj1CcTjMcxSS4b+N1Y1Mrn9J+VEUk2THJeki+1/en9/agqf+bZD7Ah8CPgfsBdgPOBXWc6rmm47suBbUeV/QtweNs+HPjntr0v8FUgwKOAs2Y6/vVw/Y8FHg6sXNvrB7YBftxet27bW8/0ta3H8TgCOGyMtru2Pyd3BXZqf342nEt/loDtgIe37S2AH7Trnpe/IxOMx7z7HWnv8eZte2PgrPaefwY4sJV/APjLtv1XwAfa9oHA8RON0Uxf33ocj2OAA8ZoP6f/rAxc518DnwK+1Pan9ffDGdr5aQ/gh1X146r6LXAcsP8MxzRT9gc+1rY/Bjx9oPzj1fkusFWS7WYiwPWlqk4FfjmqeE2v/0nAN6vql1X1K+CbwJOnPvr1b5zxGM/+wHFVdWtVXQb8kO7P0Zz5s1RVP6uqc9v2DcD3gO2Zp78jE4zHeObs70h7j1e13Y3bTwH7ACe08tG/GyO/MycAj08Sxh+jXplgPMYzp/+sACTZAXgK8OG2H6b598OEdn7aHrhyYP+nTPwX9VxRwDeSLE9ySCu7d1X9rG3/H3Dvtj1fxmhNr38+jMsr28eCHxn5eJ15Nh7tI8CH0c08zfvfkVHjAfPwd6R9nLwCuIYu8foR8Ouquq01Gbyu319zq78euAdzZCzgD8ejqkZ+N97efjfeneSu/7+9cw+2uqri+OcrIshDboJjmugFomFKiQJnNFHBKUpNqcBGQ8HHlGQD4QylZqM4Tg7qqKiTlvgalXI0SdBIKgFj8MGby5WHOnhzRgnKErJJAu/qj70O98fpnHvugcu9c85Zn5nfnP3be//2Y/3WuXf91l6/sz2vqnXDmQX8GGj28750sH6EQRvUEiPN7IvA2cAPJJ2RLbS05lGzP/tR6/N37gcGAcOArcAdnTucjkdSL+AZYJqZ7cyW1aKOFJBHTeqImX1sZsOA40hesyGdPKROJV8ekk4EriPJ5WRSGME1nTjEDkPS14HtZraqM8cRBm1t8i7QP3N+nOdVNWb2rn9uB35L+qO8LRdK4J/bvXqtyKjc+Ve1XMxsm/+jagZm07LcVRPykNSVZLzNMbO5nl2zOlJIHrWuI2b2AbAYOJW0dH6oF2XntXfOXt4HeJ8qkwXsI4+veZiKmdku4BFqRzdOA86X1EQKqTkLuJsO1o8waGuTFcBgfwPxMFJQ9vxOHtNBRVJPSb1zaWAM0Eiad+7N0knAPE/PByb626mnADsyy67VRLnzXwiMkfQJX2od43lVQV6c9DdJOgJJHhf627kDgMHAcqrou+QxbA8BG83szkxRTepIMXnUoo5IOkpSnacPB75CiileDIz3avm6kdOZ8cAi9+4Xk1FFUUQemzIPfiLFi2Z1o2q/K2Z2nZkdZ2b1JP1eZGYT6Gj9aOvbY3FU10F66/INUhzU9Z09ng6Y70DS25PrgNdzcybF7bwIvAn8CTjS8wX83OWzHhjR2XNoBxn8mrREupsUm3TF/swfuJwUrP8WcFlnz6ud5fG4z7fB/7gek6l/vctjM3B2Jr8qvkvASFI4QQOw1o9zalVHWpFHzekIMBRY43NuBG7w/IEkg+Mt4Gmgm+d39/O3vHxgKRlV0tGKPBa5bjQCT9DySwhV/V3Jk80oWn7loEP1I3YKC4IgCIIgCCqaCDkIgiAIgiAIKpowaIMgCIIgCIKKJgzaIAiCIAiCoKIJgzYIgiAIgiCoaMKgDYIgCIIgCCqaMGiDIKgKJJmkOzLn0yXNaKe2H5U0vnTNA+7nAkkbJS0+2H3l9Vsn6aoDuP7D0rUODElNkvodYBv1kr5TpOxYSb8pVNZKe9Mk9cicF5SDpMmSJpY32iAIyiEM2iAIqoVdwLcO1OhpbzI75bSFK4DvmtnogzWeItQB+23QVhD1QEGD1szeM7NyH1qmAT1KVTKzX5jZY2W2XZQydSoIaoIwaIMgqBb2AA8AV+cX5HtYc540SaMkvSRpnqQtkmZKmiBpuaT1kgZlmvmypJWS3vC9y5HURdLtklZIapB0ZabdpZLmAxsKjOcib79R0q2edwPpx/wfknR7Xv1DJN0naZOkP0pakJtP1nMpaYSkJZ7uKelhn8saSWM9/3Oet9bHPBiYCQzyvPy+fyRpqqfvkrTI02dJmpOp9zNJ6yS9Kuloz6uXtMj7eVHS8Zn7cb/X3eLyeti904+2co+nSFrtshvibR0p6Vnv41VJQz3/TJ/PWp9/b5/n6Z63j574WBs9famkuZJekPSmpNsK3MOpwLHA4qxHvYgcZkianrtO0gYf75MF2q133Vntx5c8fx+dakX3ermsc3Ia24o8g6B66OxdJeKII4442uMAPgSOAJpIe4NPB2Z42aPA+Gxd/xwFfAAcA3Qj7Rt+k5f9EJiVuf4FkhNgMGlnse7A94Cfep1uwEpggLf7b2BAgXEeC7wDHAUcStpd6BtetoQCu9KRtodc4P1/Evhnbj4+336eHgEs8fQtwMWeriPtVNUTuBeY4PmHAYeTPJeNReR6CvC0p5eSdvbpCtwIXOn5Bpzn6dsyMnkOmOTpy4FnM/J8krSD0lhgJ3CSz28VMKzAOJqAKZ6+CnjQ0/cCN3r6LGBtpu/TPN3LZT0K38WoQPt7ZQBcCmwh6VF34C9A/yJj6pc5LyaHGcB0T79Hy45JdQXa7AF09/RgYGVGV/fqFMV171DgCM/vR9qNSZ39/YwjjoN9hIc2CIKqwcx2Ao8BU8u4bIWZbTWzXaQtF//g+etJRk6Op8ys2czeJBk7Q0h7r0+UtBZ4jbRN7GCvv9zM3i7Q38kko/NvZrYHmAOcUWKMI0lGZbOZ/ZW0R3opxgDX+tiWkAyz44FXgJ9IugY4wcz+U6KdVcBwSUeQwjpeIRnOp5MMXID/As9n6td7+lTgV55+3OeR4zkzM5Kct5nZejNrJm1NXU9h5hboY6S3jZktAvr6WJcBd7ontc5lXQ4vmtkOM/uI5GU/oQ3XFJNDlgZgjqSLSasK+XQFZktaT9oe9LOZsqxOFdM9AbdIaiBtVfwp4Og2jD0IKpqIwwmCoNqYBawGHsnk7cFDrCQdQvJM5tiVSTdnzpvZ929k/j7hRjIeppjZwmyBpFEkb1pHsHduJKN17zCAcWa2Oa/+RkmvAecCC3ypekuxxs1st6S3SV7Ll0kG2Wjg08BGr7bbjVOAj2nb/5asnPPvQbHrc/VK9mFmMyX9DjgHWCbpq20YU6G+2tSf0xY5nEt6gDkPuF7SSXnG9tXANuDzpPv6UaYsq1PFdO9Skvd/uN+7JvbViyCoSsJDGwRBVWFm/wCeIr1glaMJGO7p80lesHK5wGNZBwEDgc3AQuD7kroCSPqMpJ4l2lkOnCmpn6QuwEXASyWuWQaM8/6PJi0/52iiZW7jMvkLSTGn8rF9wT8HAlvM7B5gHjAU+BfQu5X+l5JCOP7s6cnAmozxVoyXgQs9PYEWj257stTbzj1I/N3Mdkoa5F7fW4EVJI96qXmWS1nt+cNUfzNbDFxDCmnolVetD7DVvdWXAF2KNFdM9/oA292YHU3bPMtBUPGEQRsEQTVyByl+MMdskhG5jrQMvj/e03dIxujvgcm+FP0gaTl6tb9Q9EtKew63AteSwgbWAavMbF6Jvp8hxe1uAJ4geaB3eNlNwN2SVpK8gjluJhnuDZJe93OAbwONvlR9IvCYmb1P8mI25r8U5iwlxRm/YmbbSF7DthinU4DLfPn7ElJccnszgxQS0UB66WuS50/z+TQAu0n3rQH42F/a+r+XB/eDB4AX1PafWesCPOHhBGuAe8zsg7w69wGTXFeHUFxXi+neHGCE9zER2FTOhIKgUlHpB+wgCIKgs5HUy8w+lNSXZFif5vG0QRAENU/E0AZBEFQGz0uqI8X/3hzGbBAEQQvhoQ2CIAiCIAgqmoihDYIgCIIgCCqaMGiDIAiCIAiCiiYM2iAIgiAIgqCiCYM2CIIgCIIgqGjCoA2CIAiCIAgqmjBogyAIgiAIgormf+2niCAQGMM3AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "#The most popular neigbourhood\n", + "data = abb_vis_df.neighbourhood.value_counts()[:10]\n", + "plt.figure(figsize=(10,6))\n", + "x = list(data.index)\n", + "y = list(data.values)\n", + "x.reverse()\n", + "y.reverse()\n", + "\n", + "plt.title(\"Most popular neighbourhood\")\n", + "plt.xlabel(\"Number of guest whom host in this area\")\n", + "plt.ylabel(\"Neighbourhood area\")\n", + "\n", + "plt.barh(x, y, color = 'green')\n" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABUcAAANqCAYAAACuPfooAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzddVxV5x/A8Q+XBiWUEgQDEBM7Zs7uWVO3qVNnN27+pgvnQqfOmB1TN2NuxhTddHN2OxPswkTCIKTz8vvjAoJc8BJXLvJ9v168Xnrie+I59znnfu9znkcvJSUlBSGEEEIIIYQQQgghhChmFIW9A0IIIYQQQgghhBBCCFEYJDkqhBBCCCGEEEIIIYQoliQ5KoQQQgghhBBCCCGEKJYkOSqEEEIIIYQQQgghhCiWJDkqhBBCCCGEEEIIIYQoliQ5KoQQQgghhBBCCCGEKJYkOSqEEEIIIYQQQgghhCgQ27dvx8PDg3PnzuVqvcePH/PVV1/RunVrPD09ad++PUuXLiUhIUFLe6oiyVEhhBBCCCGEEEIIIUS++fj48N133+V6veDgYPr06cPmzZuxsLDg7bffJjo6mkWLFjFkyBASExO1sLcqkhwVQgghhBBCCCGEEELky7///suQIUOIiYnJ9bpff/01wcHBTJgwAW9vbxYtWsTevXtp3LgxZ86cYcOGDVrYYxVJjgohhBBCCCGEEEIIIfIkODiYTz/9lPHjx6NUKrGxscnV+nfv3uXw4cO4uLgwcuTI9OlmZmbMmDEDfX19fv3114Le7XSSHBVCCCGEEEIIIYQQQuTJggUL2LlzJ9WrV2fz5s1UrFgxV+sfP36clJQUWrZsiUKROVXp6OhI1apVCQgIwM/PryB3O50kR4UQQgghhBBCCCGEEHlSsWJFZs+ezdatW/Hw8Mj1+mlJT3d392zjA9y6dSvvO5kDA61EFUIIIYQQQgghhBBCvPGGDx+er/WfPHkCgJ2dndr5tra2ADx79ixf28mOJEeFEEIIIYQQQgghhBAAREREEBERkWW6hYUFFhYWBb692NhYAExMTNTOT5uel4GeNCHJUSFEsZD47G5h74JI9VHdSYW9CyKVi576hw/x+gWRUNi7IDJISFEW9i6IVJuCThf2LohUS+xbFvYuiFTh0jmezojUk/uFLplx/7fC3gWtep3fadf9vpslS5ZkmT527FjGjRtX4NvT19cHQE9PL8fllErtfOYkOSqEEEIIIYQQQgghhABg4MCB9OjRI8t0bbQaBTA1NQUgLi5O7fy06WZmZlrZviRHhRBCCCGEEEIIIYQQgPZen89OWl+j2fUp+vTp00zLFTRJjgohhBBCCCGEEEIIocuUyYW9B1qTNkp92qj1L7tz5w4AlSpV0sr2pbcSIYQQQgghhBBCCCFEoWjWrBkAhw4dytKvaGBgINevX8fJyQk3NzetbF+So0IIIYQQQgghhBBC6LIU5ev706LAwEDu3LlDaGho+jRnZ2eaNWvG3bt3WbhwYfr0mJgYvvzyS5KTkxk8eLDW9kmSo0IIIYQQQgghhBBCCK2bPHkynTp1YuPGjZmmT5s2DVtbW1asWEHXrl0ZP3487dq148SJEzRv3pz3339fa/skfY4KIYQQQgghhBBCCKHLlNpt0VnYnJ2d2bp1K4sWLeLo0aM8ePAAZ2dnPvzwQwYOHIiBgfZSmJIcFUIIIYQQQgghhBBCFIgNGzbkaV6ZMmWYOXOmNnYpR5IcFUIIIYQQQgghhBBCh6VouS/Q4kz6HBVCCCGEEEIIIYQQQhRL0nJUCCGEEEIIIYQQQghd9ob3OVqYpOWoEEIIIYQQQgghhBCiWJKWo0IIIYQQQgghhBBC6DLpc1RrpOWoEEIIIYQQQgghhBCiWJKWo0IIIYQQQgghhBBC6DJlcmHvwRtLWo4KIYQQQgghhBBCCCGKJUmOCiGEEEIIIYQQQgghiiV5rV4IIYQQQgghhBBCCF0mAzJpjSRHhRCiCFEqlfQb8TH+AUEc/3tzYe+OTjCzMKeHV1/qtW+IlZ0VEaERXD7ig/fCrYQEPH1t8Zr0fJu2AzviXNmFxPgkHl67xz+r/8Jn/9ls16nerCbtBnXCtVYlzCzMiAqP4vaFm/zz005un7+pdp2VlzdgZmGebcwT3kdY4bVQ8wPWEhMLc1p59aRqu3qUtLMmJjSCW0cucmiRN+EBz15LPD2FHg37t6XOu82xdXME4NndIHy2H+O/dXtRJqt/wPRoVZvGH3XEybMCeujx5E4A534/hM/2YyiTil5fT2YW5nTz6k3tdqprOjI0gitHfPlz0VZC8lAWBRGv1Ycd6P/tUBZ+NJOLB89nu1z9zm/R6sMOuFStgEJfweP7QZz+8wT7ft5FUkJSrve9sJhZmNPzpXrlUj7rqbzEa5pNPXUhh3qqVqu6dBjShQo13NDTg0C/AA5t2sfxbYdJfunz8OPxFdg622l0DDP6TuX6f1c1O+BCZmVlydQvP6Z7tw6UKWPH06ch/Lv3MNNn/MjDhwG5jle3jieTJ4+laZOGWFiUICAgmN1/72fO3GUEBT1Wu46JiQnjxn7Eu+92pZJ7RQwM9HnwMIBdu/YyZ+4yQkLC8nuYOsvI0ox6Xj2p0KEeZnZWxIVG8PDwJc4v8CYqICR/wfX06LFzGhbl7FlXc1T2iyn0qDqgDR59mmGdej8JvxPMrW3HuLJ2HynZ3E/eNMYWZjT16kml9vUoYWdFTGgEd49c4sRCbyIKoCw+9J6GVTl7FtXOviyMS5rSaFRXPDrWx8LJhvjIGIIu3uXcL/9y/9iV/O1DEaILz1mGpsY0G96ZGl0aYe1sR3RoJP4+fhxb8ScBl+/l9xCFeK30UlJSUgp7J4QQQtsSn90t7F0oEAtWrGX1hs1YWVoU2eToR3UnFVgsMwtzvvKeiZNbWWIjYwi6F4idiz0lrEoS/TyKGX2m4n/jgdbj9Zncn66je6JUKgm45Y+hsSEOFVRfnv6Y9zs7F23Nss67k96n27jeAEQ/j+LpoyfYOdtjZmGOMjmZ9V+t5sCv/2Zax6asLT+eWElcdCwPrt1XewyXj/qq3Z46LnomGi2XWyYW5ozY/jV2bk7ERcYQci8Yaxc7zKxKEPs8mlV9v+XxDX+txlPoK+i38mMqt6kDQMiDxyiTkildwQGFQsHto5dY/9GcLMnOdpPfo8WodwCIevac8IBn2Lk7YWRmgt+xy2wcMZ+EmPh8nqGsgkgo8JiguqY/3z4Dx9Rr+vG9IGxc7NKv6dl9p/Eol5+R/MZzqVaBKZu/xaSEaY7J0Xen9KfTyO4AhAQ8JTYyBvsKjhgaG+J//T6z+n5FbESM5icjFxIKsGWGmYU503KoV6bnoZ7KS7y+r6indqipN9LWAXj+7DkhAU9xdC+LiZkJl49dZMHw2cTHxKUvP27ZJKzsrLPdd1tnO0o5lCYhLoHP2nnx+EHwK493U9DpVy6jTVZWlhw7upMqld2JiIjk1u27VKzgQqlS1oSFhdOqzbtcvnxd43hdOrflj62rMTAwICQkjAcPH+FasRyWlhaEhobRsdMHnL9wKdM61tZW7N+3lZqeVVEqlTx48Ii4+HjcXMtjaGjIw4cBtG3fhzt37hfw0We2xL6lVuOrY2RpRg/vaVi7O5EQGUv4vSAsXOwwsSpBfHg0O3tPJzQX95OXNZjchzpj3yE2NDLb5KievoL2q7wo31Z1P3n+4DEpSUosK9ijp1Dgf+QS/wya91p/PAsvhM7xjC3MGOA9DRs3J+IjYwm9F4SVix2mViWIex7Nxj7TeZqPsmj+vz40HvsOMaGR2SZHjS3M+ND7a0q7OZKckETI3SCMS5hiWdYGgBOLdnBs3h953oe8iNR7/YlxXXjOMi9twUe/fo5DFRcAntx+BICde1mUyUp2TVvL6V/3F9xBa2jG/d9e+zZfp4S7Z17btowqNnht29IF0nJUCCGKgJSUFJb9vJHVG4pmQlRbhswejZNbWXwPnmfp2HnERcdhaGzIoOkjaN6nFWOWfMxn7SaSotTswTUv8Wq1qkvX0T2JDItkzoffce+SHwB12tZnzJJP6DmxL9dOXub2uRvp63i+XZtu43qTlJjEhmmrObhxL6BK6L0zphe9PnmfAd8Mxc/3Ng+uvEjsO1cuD8D1U1eYP2Rmfk+f1vSYNRQ7NyduHvRh07jFJETHYWBsyDvTP6Ju7xa8t3gci9pPJkWp2e+zeYnXoH8bKrepQ1xkDL8On8+9U9cAcKnjzoA1k3Bv7knzEV04vHRn+jrVOzdMT4zum7uFI8t2kqJMwcTCnD4LRuPRqjbdZw5ly4SlBXi2tGvQrJE4upXl4sHzrBz3I3Gp5+7D6cNo2rsVIxd7MbX9Jxp/RvIbr0JNNyas+QyTEqY5bqdWm3p0GtmdxPgElo+Zj+/+cwBYlynNuJWfUt7TlX7ThrD6k8W5OyGFYGiGemVJhnplcGq9MnbJx0zJRT2Vl3gv11N3M9RTY1Prqasv1VMNOzdOT4xunfsbfy7dTopSiZmFOaMXelGrVV2GzBrJsvEL0tdZPHputvtdwroks/aqll079SeNEqO6YOWKOVSp7M7ffx/gg/6jiIqKxtjYmKVLZjJoYF82/rqMWrVbo9Sg/JycyrBu7SIMDAyYPuNHvpv+I8nJyZiamrB40fcMGtiX339bQeWqTTPFW7pkJjU9q3L9xm3e/2AkV66oysnZ2ZFf1y+lSZMG/LZxOQ0bddTaeSgsLWYPxdrdiQcHfNk/ZgmJ0XHoGxvS7PvBVO7TnDZLx7K17RSN7ycZ1ZvYkzpj33nlctUGtKZ82zokRMayZ8h8Ak+pkuH2dd3p+MvHOLfwpNaozlxY/Geu96Eo6Th7KDZuTvgd9OXPsUtISC2L9tMH49mnOd2WjGVNu7yVRVOvnjTWoCw6zRlGaTdHAn388B61iMigUADc29ah+7LxNBnfnYenrvHg5LVc70NRogvPWb3mjsShiguRT8L4dfh8HvneAVTPWf1XfcI70z8i5MFj/I5d1so5EKKgyYBMQhRTixcvxsPDg2XLlhV47ODgYDw8PGjVqlWBxy6OnoWEMuGz71j+88bC3hWdUsbViXodGhIbFcsKr4XERataLyXGJ7J68jICbvvj5O5MvQ4NtRrvnbG9ANgya0N6YhTgwr6z7Fi4BYVCkZ5gSNNxqOoLwP51/6QnRgGUyUp2LNrKmd0n0TfQp93ATpnWc66s+nX+0a28t8zQNhtXR6p2qE98VCxbJy4jIfU8JsUn4j35J57cfoSde1mqtq+v1Xi1ezQD4MiynemJUYCHF26zf76qVUntXs0zrdNyXA8Azm06xOElO9K/BMRFRLPFaxkx4VHU7NaEsjVdc3taCoWDqyN1OjQkLiqW1RMXp1/TSfGJ/DJ5BYG3/XF0d6ZOe81aBuQnnp5CQeuBHZmy5VssbCxfua2W/dsDsHuZd3piFCAsKIT1X/wEQIOujTEyMdJo3wtLxnpl+Uv1yqp81lO5iZdWT22etSE9MQqqeso7tZ5656V6qvt4Vcv2w5v2s3PxH+nJ1piIaJZNWEBUeCSNuzWnYk03jfZ9yKxRWNlZc+afUxzdclCjdQqbh4crPbp3JDIyioGDxxMVFQ1AfHw8w0dM4tr1W1StUonu3TVLSn7wfg8sLS04fPgkX38zl+RkVUvD2Ng4Ro+ZQkhIGBUrlqNVyybp6zg5leHdXl1ITk7mww/HpidGAfz9A+nz3nAiI6OoW8eT5s0aFeDRFz4r1zJU7FiPhKhYDnotJzH1ek+OT+TI/1YReiuAUpWcqNChXq7imtpa0n61F/U+7vnqhYFKvZoCcGHJn+mJUYDH529zdt421TLvNsvVPhQ1pVzL4NGhHvFRsezyWp5+L06OT+Sfyat4djsAG3cnKuWyLMxtLen5kxdNJ766LMztrHBvWxdlspKd45amJ0YBbu+7gO/vqnrFs2+LXO1DUaMLz1mO1crj0bIWAL+PXpSeGAXVc9Y/36u+s3SaOqBAjlm8kJKifG1/xY0kR4UQQoedOH2ezu8N5eCxU9iUtsZr5ODC3iWd0aRHcxQKBT4HzhL9PCrTvBSlkqNbVQ/Jjbo0Ubd6gcSzK+eAe93KJCUkcmrnsSwxj2w+AECNZjUxszADVEmiSvUrA3Dmn1Nq98XngCoZVL56xUzTnT3KARCgw8nRWt2boFAouHHgArHPozPNS1GmcH7rUQBqdHlLq/EsHFSv9qp7rSzwiqofLEun0unTStpa4ZCafD6+aneWdeIiorm08yQANbtrdk0Vtre6q65p3wPn1F7Tx7ceAqCBhp+RvMYzMDZk2q7Z9PtmCPqGBuxcuIVnj57kuK37l+5w6dAFzvx1Isu8R7cequIaGWJpa6XRvhcWXain7Ms5UCmX9ZSVnTXOlVX1zd+rdmZZJyYimpOpsZp0b55l/svqtKlP/Q6NiImIZv1XqzU5VJ3Q74NeKBQKdu3eR1hYeKZ5SqWSdetUb3P06f3qFm8AgUGP+WPbLlat+TXLvISEBPz8VHVT2bKO6dObN2+EQqHg7t2H+Phm7U/x8eOnnD+veg2/du0amh1YEeHeswl6CgUP9vsQH561/r+5RVX/u3bVPClctnl13j8ylwrt6xH9OJz/Zr76jRzz1PuJutf3n15SlVkJx9JZ5r1JqvVQlYXfAR/i1NyLL6Xei6t00bwsyjerzvBDc6nUvh5RT8I5PCvnsjCxMOPipsNc2XaM5/5Z+1Z+elP1WrdFmTe7LHThOcuthScA/r5+PDiXtY983+3HiYuMwb5SWcpUK6f5wQlRiOS1eiGKqX79+tGpUydKlSpV2LsicnD3/kNiYuPo2qE1k8cP55aW+xMrSlxrVQLIduAivwu3AKhUv4rW4rnVVq3z8MYD4mOz9kMZEfKcxw+CsS/ngGttDy4f8UFPDxaO+IHSjrY8uvlQ7baMzVR9gSoMMv+G6VxF9YD56LbuJkeda6lakT08f1vtfH8f1fTyDTy0Gu95cCgWDqUoU7UcNw/5Zppn515WtUyGwSPSEqUJsfE8vROodlvP7qteAy4qLUcr1nIHwC+ba/pO6rmr1KCyVuMZGhviUrUCAbf82fDlT9w6c50mvd7OcVve8zdlOy/tR4P4mDjCnuj2IDSa1iseBVxPZYznmot6yq22B5eO+FDaUdV/X3xsPIF+6gccenwvCHhxXWRHT6Gg75T+AOxc8gfhOl5mGTWoXxuAU6fOqZ1/+vQFAJo20az19caN29i4cZvaeWZmplSqpLq2M/YdevTof/R5b3iOr+2bm6u6qTAw0NdoP4oK+1qqujb4nPr6/7GPqhV0GQ3vJwDW7k4Ymhtz849jnPxmI6UrO79ynaigUMwdSmFTzYWHBzPfT0pVUt1PogLzORiRjnNMLYuAbO7FgRdUZVG2vuZlYePuhJG5MVe2HWP/txuxe0VZhPgF8u/nP2c736FGBQDCHqgf1OxNoQvPWVap94jAK/fVrpOSkkLowyc4VitP2ZquBF3VvF9t8QoadsEjck+So0IUU6VKlZLEaBFQvaoHW39eTOVKRSMZ8zrZl3cA4Km/+hZoaSM2W9lZY2xmkmnQkIKKZ19Otc6zbNZJW8++nAP25R24fET16vylwz457kudtqpXlwJTO7cHMDAywL58GZTJycRHx9J9fG9ca1dC30CfoDsBHP3jUKb+SQtLqfL2AIRlc07SRjwtaWuFkZnxKwc3ymu8c5sO4VzLjWYju3L/3E3un1a9ilqmWjnaTlK9Lnz6131Z4ukp9NDT00PdeJX6qYkHKyebHPdZV9iVz/n6TLumLW01+4zkNV5SfBKrJi7i9J/HUeZzROcqjWswaNZIAPau2UVSfGK+4mnbq+qVZwVcT6mLl1ZPZbdO2npp9RRHXkzX08vh82Co+hph42Sb4z636NMKJ3dnQoNC+PeXrK2ydZmra3kA7t9X/4PUg4eqOtrBwQ5zczOio/M2QJiHhysL5n+HtbUVJ06c4djxF4NQBQQEsX179ufNxcUJT8+qAFy/rj65UVRZpNb/kWpaCQJEPVLV/2Z2VhiYGZOkwWB5T3zv8kfHLwm5pv7HSXVu/H4Y+9pu1BrVlaCztwj6T3U/KV2tHPX/p7qfXF3/+geeeZ2sU8tCXYtNgIjUe3EJOysMzYxJ1KAsgi7e5ZfOX/IkF2WhjqGZMXUHtsOzTwsS4xI4u/qffMXTdbrynAWqvvKz8+KZKed7hBC6QpKjQhRTixcvZsmSJUyYMIHRo0en/3/FihUkJyezevVqbt68iYGBAfXr12f8+PFUrpy1ddFff/3F+vXr8fPzw9zcnM6dO9OnT59stxscHMzy5cs5evQoT58+xcrKiqZNmzJmzBicnV/8Yjx9+nQ2bNhAlSpV2LZtG/r6L1pDLF++nAULFlCtWjU2b96MoaFhwZ4cHVK7RtXC3gWdVbKUBQBRYZFq50eFR2VYtuQrkw55iVeytGqdyGzWybheSWuLHLefpkaL2ni2ULVWOrnjaPp0R7eyGBgakJSYxIw98zEyMX6xTvNatBnYkb+WbuOPub9rtB1tMU89jzHhUWrnx2aYblaq5Csf2vMa79ymQ5QobUGLsd0Z8vuXhD18QnJSMjYVypAYl8C+OZs5+fOe9HXDUr/wGRobUbpiGZ6paT1q5+4EgKmleY77rCvSr+lw9ddndIZzVyI3n5FcxkuMT+CU91G162hq/OoplPd0xcrOmqTEJP5e7s2O+bo/QJ1FqZzriNzWU3mJl1ZPZVe3wYuyS6un0hKpRiZGOFR0JOhO1tajTqktsM1f8XnoOEz1yvmen3eRlJCU47K6xtZW1aI8JER9a9fQ0Bev2tvYlMp1cnTqlxPp3+9dKlRwQaFQ8Odf/zJ02Ce5ijHz+y8wNjYmOPgJBw4ez9W6us409dqNy+bajctwvZuWKkmkBgm5x9m0jsvJ9d8PY2pjQe1x3Xhn8+dEPHyKMjEJy4plSI5L4MwPW7i85t9cxy1KzFLrnthsyuLle/FzDcoiu1aomnKoUYFOPwzFqrw9RmYmPH/0jL8/XZX+ev2bShees9ISqfbZtPY1MDbE2sUOKDrPTEVGMewL9HWRPkeFEJls3bqVMWPGEBkZSdOmTSlZsiQHDhygX79+PHqU+WFj3rx5TJo0iZs3b1K/fn08PDzYuHEj48ePVxv72rVrdO/enU2bNmFsbEzLli2xtbXF29ubnj17cunSpfRlP/nkE1xcXLh+/Trr169Pn37jxg2WLl2KiYkJc+bMeaMToyJnaQOxJMYlqJ2fkGG6JoO25CXeq9ZRrRev8T44VHRk5I+qz8+N/65yfu+Z9HlpI9UbGBrge+A8X3T8mMHuffB6azg7Fm2FlBS6jetNmw87vHI72mT4inOScbqh8avPSX7iPbsXTJj/UxQKBaXLO2Dn5oRCX0F8VGyWLwHRIRHpAwq0HNs9y3YsHUvj+U5j4EWLOV2Xq2tag7Io6Hia0tPTo3qLWljZqfr9MzA0oFz1ijh5uBTYNrRFl+qpBA3qqbTPW0TIc+74qhIX3ce9m2X50o42vPWOapAagxw+D9Wb1sTJrSzRz6M59NvebJfTVaamqi5OYuPUJ61jY+OyLJsbzZu9hatreRQK1VcyV9fytGihWT+BAB9PHEHfPt0A+HLqLOLjX52QKkr0U6/H5Dj1LcSTM1zT+loenC38bjCRD5+ip1BgWd4ea3fV/SQhKpa4MPVJpTeJQer5TcqmLJIylIXBaxooz8bdCbuq5TBK7YrIxNIct1a10DcqGvfovNKF56ybB1VvQLnUdse1SfUs6zQa2B4jU9WP+PqGb1Z3H+LNJclRIUQmBw4c4Ouvv2b37t0sXryYPXv20KhRI6Kioti06UUfcJcuXWLVqlXY2NiwY8cOfvrpJ9asWcP27dsJDQ3NEjchIYHx48cTFhbG1KlT2bNnD4sXL8bb25vZs2cTGRmJl5cXCQmqG7CpqSnff/89enp6LFq0iKCgIBITE5kyZQqJiYn873//w9VVXjUvzl71eq5CoZf+bzVvhBZIPE1eEU770qvutdSMHCo68tlv32BR2pLwJ2Esm7Ag0/ynD4PZt+5vvBdsZvHouTy8dp+khCRCAp+xbd7vbJq5AYBen7yv0cOwtrzqnOgpXjx6aFAseY7XyqsX7y+bgLl1STaNXcQ31T7i2xpD2Dx+CQp9Bd1mDKHjl/0zxdo3fytKpZJaPZrS9ZtBWDqWRt9Qn/INKjPwl09JTO2vMTmpaLR+y9U1rUFpFHQ8jenp8dnbYxlZ+QO+6zaF66euUK1ZTSZv/gb7CmUKbjtaUFTqqfTPUYad+GPe7yiVSpr0aMGH3w6ltKMN+oYGeDSoyqS1XxIfq7pfJyUmZxs37ceaw5v3ExsV+8r90DVpo8lnR5Gx/tGkAF8ydPjHmJesSNXqzVm67BeqVHZn8+8r6a3BAE9jRg/mh9lfAfDrxm2sXaf7LalzKyUX9b9GH6A8qjexJ+1WjMekVEn2jV7MmspD+bnqMPaPW4pCX0HzmR/x1lf9tLZ9XZCbssjLZyEv7h65xI/Vh7Gw9ij+8lpOckIi9Yd2pMdKr9ey/cKiC89ZT24H4LtDNWDie0vG4flOY4zMjDGxMOetQe1p+0lvYlJbGSuTcq5HRS4pk1/fXzEjyVEhRCZ16tTh/fffT/+/kZFR+mvyfn5+6dM3b95MSkoK48ePp2LFFyNqV6pUSW3L0X379uHv70/btm3p3z9zQqJ79+60a9eOgIAA9u590bKkfv36DBgwgJiYGL7//ntWrFjB9evXadq0Kf36vdkPoeLV0gYWMTRW33rYwOjF9JxaTOUnXnxMzutkXC+n1qUVPN2YunUGpcqUJjI0gh8GfEtYcObBHW6du8H6r1az/Uf1X4D3rv2b2MgYSliV1HhwF21ISyAaZHseX7ToSNKgXPISz8bVkZbjeqBMVvLriPlc3vUfCdFxxEfGcunPk/wyYCbJiUk0HdoJhyovWh/6Hb3ErmnrSE5KptHAdnx6cjHf3t7AsC1fYWBsiPcU1Sjb8ZFFI8nz4ppWnyzPeE3ndH1qK56mUpRKQgKekRCXwL2Lfszt9y33L9/B3LIEXcdmbYVSZbsAACAASURBVNWoS4pKPWWYul7Gfbh81Jf101aTnJRMu4GdWHjqJ9b5bWHq1ukYGRuyZsoygGyTnsamxuldhJzwPqJ2GV2X9pq8ibGx2vnGGT4LGVuRaurBg0fEx8dz69YdJnh9yZKlP6NQKPh++meZEq8vm/rlRBYumA7A7t37GTY8d6/iFxVpfYjqZ3PtKnJ5P8kLK9cy1JnQHWWykn+H/sidv06TGB1HQmQsfjtOseuD2SQnJlFzWEdKV9H91ux5lXYvzq4s9F9DWbwsJiSC+MhYYkMjuep9gi0D56BMSsatVS3KNX5zu6XShecsgJ2fr8bv+BXMrEvSd9FYpl37hamXVtHl64Fc+uskF7YdAyCuiDwzCfFmtzkXQuRazZo1s0yzsVENPhIT86IvrbNnzwLQvHnzLMu3bt2ar7/+OtO006dVgws0bNhQ7XabNWvGv//+y5kzZ+jSpUv69I8//pgjR46wd+9eDhw4gJWVFTNnzkRPT09tHPHmKFetAgO+Gap23oZpq4kKi8TcsgTmViXULlPCumT6vyNDnr9ye3mJl9b3orlVSbXrqNZTxYsIjVA7v2bLOoxbNgljMxPCn4Qxu/832Y5in5PkxCQC/R7hWrsSpcsWXuf3MWGRmFqaY5bNeTTLcB6jQ9Sfk/zGq9q+Hgp9BXdOXMH/QtY+zYKvP+T6/gtU79iA6p0aEnz9xfk+vWEf98/coN57LbFzcyI+Opa7p65xYeuR9FHqI5+GZ4mpi159Tb+YHqlBWRR0vLxKUSr5d9WfjFg0kUoNC/cLcLlqFfgwm3pqvY7VUyU0qKciX6qn9q/fw43T12j5flsc3coSFx3LtVNXOLrlIK6pIxxnN/p8jea1MDIxIuhOAA+v3X/lsRWGWrWqsfDH6WrnTZj4JSEhYVhbW1GqlJXaZUqXtk7/99On+R+t/Ic5Sxk/bigVKrjg4uKUZSAohULBsqWzGDpE9QOx946/+aDfaBITdXtgsryKC4/C2MocYyv1fRaaZKhz4kKy71M3Pyp0UN1PHh2/yuMLflnmh1x/yIN9F6jYqQEVuzQg5Hr+BhfSVbFhUZhYmmOaTVmYZiiLGC2VxasEX77H/RNXqdjCE+eGlXlw8lqh7Ie26cJzFkBCTDxrB8ykRtdGVGlbDzPrkoQHPOXSn6e4c+IK784bBRSdZ6YiQ/oc1RpJjgohMilZMuuXp7TBkDK+JvPkSWpH3Pb2WZa3s7PL0hdoUFAQoBpoafp09V9EQDVgU0ampqZ88803DBo0iOTkZLy8vLCzs9PwaERRZlrSLNsWkKYlzQi8E4B9+TLYllV/PaSNoBz2OFSjFll5iReYOkiJbQ7JyLT1Ht8PyjKvcffmDJs7FgNDAx4/COaH/t/w5OHjbGPpKRQoFHokZ/eKUuqPBoU56MnTO4GULu+AVTbnJG2k94jHYRq1LsxLPOvUaU/VDKqUJuReUKb1M3p805/d36zPMr1MtfKp84vGYA/BdwKxL18m22R56dRrM1zDz0hBx8uJlZ01pRxtuOurfsCOx/dU9wpLW8t8bSe/zHKop8x0rJ6y0aCeClZTTz26+ZANX6/JMr1cNdVbI49uqU8G1WpdF4DTf5/MdruFzdLCgiZNGmQ77+bNO7i5VaBcOfWDjpRzUQ1KFRgYrFHLUSsrS9xcy3Pt+i1iYrK2pgoOfkJUVDQlSphjb2ebKTlqZGTEbxuX0b1bRwB+/uV3Ro76FKXyzf2iHO4XiGV5e0o6q792S5ZV1d/Rj8O01lqxROo9IjyH+0n4XVV9VFLN/eRNEXInEOvy9lhmU49Yph57pBbLQmGoj5WzHcqkZMIfqh9ZPex+MLTwxNymcO8N2qQLz1lpUlJSuPTnKS79eSrLemWqlQNUz1RCFAXyWr0QIhNNW2SmLZddv0IGBpl/e0l7eG/cuDFdu3bN9q9OnTpZYh07diz93zt37nyjvwiIF278d5UB5Xqq/bvx31XuXVINnuNau5La9d1Sp9/x0Ww01LzEu3dJ1YrEuUp5ta+sWpS2xM7FAWVyMncvZm5xUq9DQ4bPG4eBoQEPrt7ju16f55gYnbrte9be2UKn4d3Uztc3NMDRLfWLul/hJe8CLt8DwLm2m9r5adMf+WZtgVNQ8dJe4Sppp761F7x42I/P8Epwja5v0Xz0O5injpD8ssqtVa8I3/uvaLRGuX8552u6Yur07BKQ2o6XHfsKZZh/ZhWfb59ByVLqy8LKoRQA4Y/Vt1p8Xa7/d5X+5Xqq/bueoZ5yK+B6Kjfx0uopl1zWU426NqHr6J5YlFafZKidmvy8fuqK2vnudTxS51/N8ZgK05GjpzAwclL7d+ToKc5fuAhAw4ZZn00yTj9z1kej7V3yPch/p/6mQ4dWaudbWVliZmYKQGDQix+LFQoFG9YvSU+M/jBnCcNHTHrjn4eeXlLV//bZ1P9p05/43NHaPiSm3iPMcrifpCVpE4pgv7qaCk4tC8dsyiJtepAWy6KpVy+GH5pDm68HZLtMSXvVvSGqkO8N2qQLz1klbC1pOKAt9d/Ppi5zssGhsgtJ8Ylq3+AR+aBUvr6/YkaSo0KIPElrvRkYmPWX9MjISGJjMz8g2tqqfo3s3r07c+fOzfZv5MiRmdbz9fXll19+wcbGhgYNGuDj48PatWu1c1CiSDm35z8A6rZrgLll5leB9BQKmvVuCcCJHZr1dZeXeM8ePeX+lbsYmRjRuEeLLDFbvNcGgIuHLhATEZ0+3cndmVELvdA30OeOzy2+f28qz1/x2pH/jQcoFAre6tYMfYOsI3+26tcO0xKmPH4QnJ7EKgxX95wBoGrbephaZn79Tk+hR513VV1x+Hof11q8e/9dB8C9uScW9ta8zLy0Be7NPVXLnr6ePr1W9ya0//Q9qnWon2WdsrVcqfhWNWLCIrm86z+N9r2wnd+j6s6kdtv6aq/ppu++DcAp76OFEi87T+4HExr4DIVCQbP3WqtdptUA1UA/Fw+ez9e2tO3sK+qV5rmsp/ISL2M91URNPfV2aj3l+1I91aRHC/pO7k+9Dlm7w3Gt5U7Vt2oQGRbJ6V0nssw3MjGiTEVHAO5fuavRseki7x3/ANDtnfZYW2dOjikUCj78UNUn+8bftmsU7/ARVSvaoR99oHb+6FGDUCgUXL5yHX//F89X0776hF49OwOqUek//2Jm7g6kiLr7j6oLp/Lt62Z5tV5PoUel3qr6/9b2rNdgQQk8pbpHOLeogblD1vuJSWkLnFvUACDovxta24/CdnOPqizc29XFRM29uEZqWVzdob2yeHhK9cNkhWY1sHAqnWW+lYsdFd9W3dv9DvpqbT8Kmy48ZymTlXT5ZiCdv/4QEwuzLDGbj+yavk5Cat/BQug6SY4KIfKkcePGgGp0+5cdPZr1i3G9evWynQewYMECunXrxpYtW9KnxcfHM2XKFJRKJV988QUzZszA2NiYBQsWcPdu0f2yJQqG/40H+Bw4h5mFOeNX/I8SqX0lGRobMnT2aJzcnQn0e5Se0ElTwrokZVydsHOxL5B4fy7dBsAHXwykcqNq6dNrt6lP9/G9USqV7FrunWmdj2aNwsjEmLDHocwfMpOYiBheZe8vu0hKSMS5cjmGzBqFsZlJ+rwmPVrw3mcfArB51obXNlKsOo9v+HPjwAVMLMx4f7kXpqnn0cDYkB6zh2PnXpandwK59u+5TOuZWZfExtWRUi52+Y5367AvAZfuYmRmwoA1k7Cp+GJEc6uyNvRbOREz65I8vunPtdQvfEB60rP1xHex93jxGq1TjQq8v3QCAEeW/5Wptakue3TjARcPnMfMwpzRyz9J76fSwNiQwbNH4ujuTNCdAC78eybTeiWsS+Lg6ojtS5+RvMbLrZSUFP5evgOAd8a/S8N3mqTPMzYz4cPvh1O9eU2iwiLTl9NVOdUrwzLUK+cKoJ7KKd7ODPVUlQz1VJ0c6qn//lIlOXp9/D5lPV4MNFOhhivjlk0CYNfy7WoHZCrr4YJCX5/wJ2FEP4/S/ITpmMuXr7N7934sLS3YsuknSpVSJceMjY35aeVcqlapxI2bfuxITaKmKV3aGg8PVypWLJdp+tx5y0lKSqJdu7eZ+f3nGBmpBnTS09Nj+LABTP1yIkqlks8//z59ncqV3Zj86VgA1vz8G7NmL9bmIeuU0Bv+PNjvg7GFGe1WjMc49XrXNzakxZxhlKrkRJhfIPf2ZL6fmFiXwMq1DBbl8t8N08NDF3ly6S6GZiZ0+PkTLDPcT0qWtaHDKi9MrEsSetM/PZn7Jnp6wx+/Az6YWJjRY8V4TDKURcfZw7BxdyLEL5CbL5WFqXUJSrmWwcol/2Vx//gVAn3voG9kQI8VE7Aq96J+tPUoS+9fJmFgYsS1P0/x+Mr9fG9PV+nCc1ZMaCT3Tl3D0NiI7jOHYWiqGrROoa+gydBONBzQlvjoOA4v0e17tBAZSZ+jQog8+eCDD9i6dStLly6lbt261Kih+tXc39+fOXPmZFm+c+fOLFiwgF27dlGnTp1Mo80fO3aMNWvWkJiYmB4HVAnTe/fu0aJFCzp16gTA6NGj+fHHH/nss8/4/fffcxzNVbz5fvl8JWX/cKFq4xosOPUTAX6PsHOxp4RVSaKfR7NwxOwsicK2AzvRc2Jfnvo/4eOmI/Md7+zfpziyeT8t+rbhi83f8ejWQ/QNDNJbTW35YSO3zr1oTeJauxKV6lUGIEWZwviVn2Z7fM+fhLF49FwAAv0CWD15OUN/GE2z3q1o0LkxQXcDsbCxpJRD6fRtnf07a79Pr9vOL37G3sMZ18bV+PTkIp76BWLtYoeZVQliI6LZOHx+lvPYaGA7Wnv1IuzRU+Y2nZDveL+NWsDgXz/HsXoFJuyfw7M7gegpFJQu74BCX0Howyf8OmweyuQXrw35eh+nSrt6VO/YgDG7v1eto6/Azs0JgDO/HeD4T7u0dNa0Y/0XK/nMYzpVGtdg7skVBPkFYONiRwmrksRERLNk+A9Zzl3rgR3p5tWHZ4+e8GnT0fmOlxcHN+zBuWp5WrzfhhGLJtL3i4GEBYdSxs0JE3NTosIiWTxsNuGPQ/O9LW1Lq1eqpdYrgS/VKwvU1CvtMtRTE7Opp3IT7+zfpzi8eT9va1hPgWqE+brtG9Cg41vM+HsegXcCUOgrcErtvuPgxr3sXrlT7TFb2amSiEU5MZpm9NgpHKnmTcuWTbh35wzXb9ymYgUXSpWyJjz8Oe/2HpLlfI8ZPZivpn7C/fv+uFVqlD790qVrjBj5P1Ys/4H/TRrD8GEDuO13D+eyjtjb25KUlITXxKn8s+dg+jrjxg5N76qoVq3qHDmUOYmd0S9rN7F23eYCPgOF6+hnv9DdoyxOTarR//QCwvwCsXCxw8SqBPHPo/l32AJ46fxXH9SOeh/3JNL/KRsbT8z3PuwdvpCuv3+GbY3yvHdoNmF+Qegp9LCsoLqfRDx4wp4hP5KS/Ga/hvrv579g+0dZyjWuxuhTCwjxC8TKxQ5TqxLEPY9m+4isZVF3YDuaTuzJc/+nLG+a/7LYMXoR7//+OWU8KzL84A+E3A1CT0+P0q5l0FMouH/iKv9MXp3v7eg6XXjO2j75J8bs+p4anRvi1qw6ofcfY+lYmhI2liTGJfDrsHmEPXqq9XNR7MiATFojyVEhRJ64u7szefJkZsyYwXvvvUejRo0wNDTk1KlTuLu78/hx5r4TTU1NWbBgASNGjODbb79l3bp1uLu78+zZM3x9Va++TJkyhSpVVANbXLhwgbVr12JmZsa0adPS4wwZMoRdu3bh6+vLmjVrGDZs2Os7aKFzwoJD+KrLJLpP6EOdtg1wqVyOmIgYTu48yvb5m9UOgqSNeKs/XcbNszdo3a+dqoWVnh63z99g7y+701tfpck4eEupMqUpVSbrq2FpnvpnHnDgxPbDPLr5gE4julGlUXXKVnImJiKG8/+eZs+av7hxWjf6wowIDmVply9oNaEnVdrWxb6yC3ER0VzceYIDP24j5H7wq4PkM154wDOWdf2Cxh91oFrHBpQu7wDAU78Aru45y4k1fxOnpsXu5nGL8f+oI7V7NqV0BQeUSUrunb7OmY0HuPSn7g4sk52w4FC+6fIp70zoTe229Slb2YWYiBj+23mMHT9u5kkuy6Kg4+Vk3WcruHrsIi37t6Nc9YqUrVyO0MBnHD14gD0rd2Y7SrquCQ0OYWqXSfTIUK9Ep9Yr2/JQT+U13upPl3Hr7A1apdZTenp63MqmnkqzdOx87gzpQtOeb2NfvgzK5GRunL7KgY17ObXzmNp1QNXyFSAm8tWt4nVdQEAQDRp15MsvvHina3s8a1QhPDyC3zd588238/Dzu5ereOvWb+Hy5ev8739jaN6sEZ41qvDsWSibNu9g/vwVXPC5nGn5Jk1edPNRt45njrEPHMy+TIqq6OBQ/ug0lXpePSjfrg6lK7uQEBHN7R0nOTdvG8/vZ99Xd0GJCgjhj05T8RzSngqd6mNZQXU/CfcL4O4/57i06h8SNHgDpKiLDA7lly5TaTqhB+5t62CXei++uvMkx+dvI+w1lEVEQAhru0ylwfBOeHSsj7WLHcmJyTw6f5srfxzj0pYjpCgL7+2Z10UnnrMePWNZly9o5dUT9+aeOFRxISYsEp/txziydGeOg2IKoYv0Ugrz3TshRKFZvHgxS5YsYcKECYwePTrL/zM6d+4c/fr1o0GDBmzYsCHTvKNHj7Jq1SquXr2KoaEhrVq1YvLkyTRu3BgHBwcOHjyYaXl/f39WrlzJ8ePHefbsGdbW1lSuXJmPPvqIt956C4C4uDi6devG/fv3+eyzzxg0aFCmGBcuXOCDDz7A0NCQHTt24Orq+srjTXwmr+Hrio/qTirsXRCpXPRMXr2QeC2C0M7oviJvEqRlhs7YFHT61QuJ12KJfcvC3gWRKlxenNIZkXpyv9AlM+7/Vti7oFXxl/59bdsy9mz/2ralCyQ5KoQoFiQ5qjskOao7JDmqOyQ5qlskOao7JDmqOyQ5qjskOao7JDmqWyQ5WnCKW3JUXqsXQgghhBBCCCGEEEKHpaQkF/YuvLHkNychhBBCCCGEEEIIIUSxJC1HhRBCCCGEEEIIIYTQZdLtj9ZIy1EhhBBCCCGEEEIIIUSxJC1HhRBCCCGEEEIIIYTQZUppOaot0nJUCCGEEEIIIYQQQghRLEnLUSGEEEIIIYQQQgghdJn0Oao10nJUCCGEEEIIIYQQQghRLEnLUSGEEEIIIYQQQgghdJkyubD34I0lLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl0mfo1ojLUeFEEIIIYQQQgghhBDFkiRHhRBCCCGEEEIIIYQQxZK8Vi+EEEIIIYQQQgghhC5Tymv12iItR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXyYBMWiMtR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXSZ+jWiMtR4UQQgghhBBCCCGEEMWStBwVQgghhBBCCCGEEEKXSctRrZGWo0IIIYQQQgghhBBCiGJJWo4KIYqFj+pOKuxdEKl+Pj+3sHdBpPqq3peFvQsilbH8Xq1TDPX0CnsXRKo+ZRoU9i6IVEeIKuxdEKnM9eRrvK6ISUku7F0QxUiKXG9aI0/iQgghhBBCCCGEEEKIYkl+chJCCCGEEEIIIYQQQpdJn6NaIy1HhRBCCCGEEEIIIYQQxZK0HBVCCCGEEEIIIYQQQpelSMtRbZGWo0IIIYQQQgghhBBCiGJJWo4KIYQQQgghhBBCCKHLpM9RrZGWo0IIIYQQQgghhBBCiGJJkqNCCCGEEEIIIYQQQohiSV6rF0IIIYQQQgghhBBCl8mATFojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl8mATFojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl0mfo1ojLUeFEEIIIYQQQgghhBDFkrQcFUIIIYQQQgghhBBCl+l4n6MnT55kxYoV3Lx5k8TERKpVq8awYcNo3ry5xjF8fX1Zvnw5Pj4+xMTE4ODgQKtWrRgzZgyWlpZa23dpOSqEEEIIIYQQQgghhMiT7du3M3jwYHx8fPD09KR27dr4+PgwbNgwNm/erFGM/fv3069fPw4fPkz58uVp3rw58fHxrFu3jt69exMaGqq1/ZeWo0IIIYQQQgghhBBC6DIdbTn6+PFjpk2bRsmSJfntt9+oVKkSAJcuXWLw4MHMmDGDt99+G3t7+2xjJCUlMW3aNJRKJYsXL6Zdu3YAxMfHM2HCBA4dOsTSpUuZOnWqVo5BWo4KIYQQQgghhBBCCCFybePGjSQkJDBo0KD0xCiAp6cnw4YNIz4+/pWtR2/evMmzZ8+oXLlyemIUwNjYmNGjRwNw9uxZ7RwA0nJUCCHyxMzCnB5efanXviFWdlZEhEZw+YgP3gu3EhLw9LXFa9LzbdoO7IhzZRcS45N4eO0e/6z+C5/92d84qjerSbtBnXCtVQkzCzOiwqO4feEm//y0k9vnb6pdZ+XlDZhZmGcb84T3EVZ4LdT8gN8ASqWSfiM+xj8giON/a/aqSHFiYmFOG6+eVG1Xj5J21kSHRnDryEUOLvImPODZa4mnp9CjUf+21Hm3OXZujgA8vRuEz/ZjnFq3F2Vy1l/fq3WoT/8VE3Pcl9X9vufOiSu5PobCZGZhTmevd6nZrgGWdtZEhUZw9Ygvfy/6g9A8lEde4pmUNKX9qO7U7tCQUk62xEXGcP+iH4fW/sP1Y5c03na7Ud3oMbkfp/44zPpJy3K977rKzMKcLl69qZV6TiNTz+nuRVvzXEa5jWdS0owOo7pTJ7WMYlPL6ODav3NVRkWVuYU5PVPvxdZ21kSERnDxiA/eC7fwLA/39oKI125gRwZ9O5w5g2fgc/Cc2mXqd2zExBWTc4zz/QfTuHKi6JShuYU5vbzey3Luti/cnOeyyG+8dgM7Mfjb4fwweHq2ZQFQu1U9Og7pSsUabujpQYDfIw5u2sexbYdITkrO9b7rEjMLc7p69aZOu4ZY2lkRGRrBlSO+/JWPeiq38QyNjWg9uBP1O7+FfQVHFAYKQgKecXHfWfas3ElUWGR+D1OnFdV6Ko2enh7feM/CvpwDI2oPzPX+Fns6Olr9sWPHAGjTpk2WeW3atOHHH3/k6NGjjB8/PtsYCoWq7WZISAhJSUkYGLxIV4aFhQFotc9RvZSUlBStRRdCCB0xoFzPAotlZmHOV94zcXIrS2xkDEH3ArFzsaeEVUmin0cxo89U/G880Hq8PpP703V0T5RKJQG3/DE0NsShgioB9Me839m5aGuWdd6d9D7dxvUGIPp5FE8fPcHO2R4zC3OUycms/2o1B379N9M6NmVt+fHESuKiY3lw7b7aY7h81Fft9tT5+fxcjZbTdQtWrGX1hs1YWVoU2eToV/W+1EpcEwtzRm3/Gjs3J+IiY3h2L5hSLnaYWZUg9nk0P/X9luAb/lqNp9BX0H/lx1RpUweAkAePUSYlU7qCAwqFgltHL7HuozkoX/qi2tqrF228ehHy4DGRT8LV7s+ub9cTcPleLs9KzsJJKtB4GZlZmDNp+3eUSa1jntwLwsbFHnOrEsQ8j2J+368JuPFQq/FMLcz41HsGDq5OJCUk8fhuICYlTCld1haAvxdt46/5r/4c2Vcsw+d/z8HIxEiryVElr/fx2MzCnE+3T1d7TqOfRzGv77Rcl1Fu45lamDHF+/tsy2j3oj/4U4MyKmiRKdr7bGRkbmHO196zcHIrS0xkDMEv3Yu/7fNlru7tBRGvfPWKTN08HdMSpjkmHXp59aXXxPd4/CCY8CdhapdZ/80a7l2+o/H+q5Pymj4X5hbmfOM9Cyc35yznLup5FN/1+YKHuSyL/MYrX70iX22egWkJ0xyTo+9NHkC30b0AeP4snGcBT3Fyd8bEzITLx3yZN3wW8TFxmp+M7I5J7/W3cTKzMOez7TPS65XH94KwdbHDPPWantN3Go9y+fyb23jmliWYtOlrnKuUR6lUEhLwlKT4RGzLOWBgaEBIwFPmffANTx4EF/ThZysm5fUlvItyPZWm7//60W3su0SGRmglOfrbA+8Cj6lLYnfNf23bMu3ysUbLpaSk4OnpSVJSEhcvXsTIyCjT/KSkJGrUqIGxsTE+Pj7o6empjZOYmEjbtm0JCgqic+fOeHl5YWtri6+vL1988QVBQUEsXbqUVq1a5fvY1JGWo0IIkUtDZo/Gya0svgfPs3TsPOKi4zA0NmTQ9BE079OKMUs+5rN2E0nRsE+YvMSr1aouXUf3JDIskjkffse9S34A1GlbnzFLPqHnxL5cO3mZ2+dupK/j+XZtuo3rTVJiEhumrebgxr2AKon0zphe9PrkfQZ8MxQ/39s8uHI3fT3nyuUBuH7qCvOHzMzv6SvyUlJSWPbzRlZvKJoJ0deh56yh2Lk5ceOgD7+PW0xCdBwGxoZ0m/4R9Xq34L3F41jYfjIpSs2+aOclXsP+bajSpg5xkTFsGD6fu6euAeBSx52BayZRqbknzUd04fDSnZm25VDZGYB/Zv7G1T3ae3Xndeo3awRl3Mpy+eAF1oxbQHzq+Xt/+lAa927JkMVefNf+E43LIy/xBvwwCgdXJ+753mbVqPmEBYUA4Nm2HsOWfkyn8b24deoKN09dzXa7enp6DPhhFEYmRtkuU1T1nzUy/ZyuGvdj+jntN30YjXu3ZOjiiXzb/hON7yt5iTfwh9HpZbRy1Lz0MqrZth7Dl35C5/HvcvPUVW6eKlqtpjU1NPVe7HPwHIsz3Is/mj6CFn1aM27JJ0xu56VxGeQ3nmtNdyb9/AWmJUxfuS3nKuUB+G3mOs7+85/Gx6yrhs0eg5ObMz4Hz7Fo7NwM524kb/dpzbglk/i03QSNyyK/8VxruvM/DcqiUecm6YnRLXM3BbD4BAAAIABJREFUsmPpNlKUSswtzBmzcCK1W9Vj2KzRLBn/+pIbBenD1Hrl0sHzrMxQrwyYPowmvVsxfLEX03JRT+UlXv8Zw3CuUp4gv0esGDOfgJuqH3lKOdowbOEE3OtXYcSSiXzXNeeW1EVVUa6nQPVDTrex72p8vEKN19jnaEREBBEREVmmW1hYYGFhkf7/58+fk5CQQKlSpbIkRgEMDAywtrYmJCSE6OhoSpQooXZ7hoaGLFq0iLFjx7J79252796dPs/Ozo7Vq1fTpEmTAjgy9aTPUSGKodw0GJfG5ZmVcXWiXoeGxEbFssJrIXHRql//E+MTWT15GQG3/XFyd6Zeh4ZajffO2NSH71kb0hOjABf2nWXHwi0oFAq6js7cWrbj0HcA2L/un/TEKIAyWcmORVs5s/sk+gb6tBvYKdN6zpVdAHh0S/OWfm+qZyGhTPjsO5b/vLGwd0Vn2bo6Uq1DfeKjYtkycRkJqdd0Unwi2yf/xOPbj7B3L0u19vW1Gq92j2YAHF62Mz0xCvDwwm32zf8DgLq9mmfZnoOH6np/cjsgl0eum+xdHanVoQFxUbGsnbiY+Azn79fJKwi6/Ygy7mWp1b6B1uJZ2FpRs219lMlK1oxdkJ50A7i07xzHf98PQOO+ObcEeHtQB1zrVSYhNj5X50DX2bs6Ujv1nP780jldP3kFgbcf4eheltq5KKPcxstYRqteKqOL+85xLLWMmryijIoqR1cn6ndoRGxULMteuhf/NHkZj277U9bdmfoa3tvzE09PoaDdoE5M3TIdSxvNXh90Sa23At6A+3TGc7fUa8FL525pvsoit/H0FAraD+rMV1tmYGlj9cpt9RjfB4CDm/bhvXhrekIpOiKapRN+JCo8kibdmuNa012jfdclDq6O1OnQkLioWNa8VK+snbyCwNv+OLo7U0fDeiov8awdSlG301sok5NZNWFhemIUIDTwGctHzyMuKpZyNVyp1LBqAR69bijK9ZSlrRUf/zSFXhPfy8URi8K2bt06WrduneVv3bp1mZaLjY0FwNQ0+yS5iYkJANHR0Tlu08XFha5du6Kvr4+npyctW7bE1taWJ0+esHr1asLD1b/VVRAkOSpEETJlyhQ8PDzYuXPnqxfOxu7du5k0aVKmadu3b8fDw4Mvvvgi0/QTJ04wdOjQPG9LE23btsXDw4NHjx5pdTsFpUmP5igUCnwOnCX6eVSmeSlKJUe3HgSgURfNftXKSzy7cg64161MUkIip3YeyxLzyOYDANRoVhMzCzNA9RBTqX5lAM78c0rtvvgcUL0GU756xUzTnT3KAW/Gl678OHH6PJ3fG8rBY6ewKW2N18jBhb1LOqlW9yYoFAquH7hA7PPMD0ApyhTObz0KgGeXt7Qaz8LBGkDt6/sBV1SvxFs6lc403dDk/+zdd1zV1f/A8ReXpSAb2SAKiAsVxL1S05y5cmVqqTnKUsvSsvKXWqaZNr45Ki2zoVmWZWblzL0HDhyIAxBkT9n8/rgXBO+9cFlyr76fjwePh97P5/O+h3Mu53zu+Zxhhr2XE7lZOcRff3BT8qpT20GdUSgUhOw8QYaG/Du0aTcArfp3qLZ4FtaWHNi4k8O/7CU+Qn39sihV3WLn6qB2rJCjpxNPzhpF3M0YDv28R6e0Gop2g5TtwNmdJ8jQ0A4U5mmwjmVUkXgW1pbs37iTQ7/sIT7ijlrMqMuq0VmllJEh6zi4KwqFgpNltMXt+3eq1nim5qa8t3Upz777PCZmJvzy8UZib6mXR3Fmtcxw8nImJyuH6Ou3dUqfPutURt7t3aS8x9G1LCoaz9TclPe3flSsLDaUWha2TnZ4NVLeL/35pfp9enpKOge2KNurjoPUH8zpu8J65czO4xrz8YCqXmmt4/1vReI1bNsUhUJB7M073DyvvrRNSmwS11VLR9S77172YWCo9VRA5xZ8tPtzgp9oS+KdBH78YL1O6RNaFOQ/sJ9x48axc+dOtZ9x40ouh1C4VqhOyS9l4FViYiKjRo3ixx9/5Ouvv2bTpk2sWrWKXbt2MWzYMA4ePMi0adMqnHVlkWn1QjxCTp48ySuvvEKbNmU/1Y2JiWH8+PG4u7s/gJQZDp+Wyt33tG1cdPXkZQAatm5cbfF8A5XX3Ay9QZaGEVQp8cnE3IjGuZ4LPoH+hOw9hZERfDJ5CQ5udYm4pHndOnML5RM9hUnJBs6zsfJmP+LKo905eu36TTLuZjKgdw9mvzyJy2HXazpJesmzpS8AN09c0Xj81inl695t/Ks1Xkp0AjYu9rg2qcel3adLHHP28wAgOTK+5Ov+niiMFcRcjtC4WZMh8m6pHKEUpqWOCVfln28b3eqsisSLDovkhze/1BrTS/UlNvZGjNZzRn8wmVqWtVg96UOadG2pU1oNRVl5eu2Ush2oqjLSFC86LJLv3/xCa8zCMnqQ6/g9SL6qPLtyIlTj8SsnlXnpr2PbXtF4puameDetT8Tlm6ydu5rQoxfoMrRbqe/l6V8PhbExEZdvPRT1lq/qvuiy1rxTfn4btdZtZGBF45mamxWVxZq5q1RloX3ktIObIwBZd7OIuqr5gX90uLLz2qel4Y0cbaBK81Wt9Yqy7vdr06ja4l0+cp6VU5eWugSMeW1zQLlk1MPGUOspdz9PalnWYt8vu1k//+uiGWlC/90/fV4bCwvlYJysLO0zezIzM0ucq8maNWu4du0ar732Gm3b3huxbGZmxrx58zh+/DjHjh3j+PHjBAcH6/pr6Ew6R4V4hORrWaOkZ8+etGjRokTlJ9PpNXP2dgHQ+oS0cGd5Wyc7zC1qlbnofkXiOddTXhNXylPa+MhYnOu54OztQshe5dT5s3tOlZqWoJ7KaclRV+7d1JuYmeDs7Up+Xh5Z6XcZ9PIwfAIbYmxizO2wSP77eXeJ9UkfZs2a+LNp7Wc0auhT00nRaw7ezgAkaPl8Jqp2n7Wqa4uZhTnZGaVPka5ovGMbduPZ0peuUwZw4/glwo8ob/5dm9aj5yzlpmSHv/u3RCwXf+V6o3euRNCgfRNaDOiAfT0nsjMyuX70Esc27iYzJaP0DNAzdVV1THwZdYxNXVvMLczJKqM8qjKeuYU5Xcf1psPwbmRnZrNzzVaN53Ua1YNGHQM4+NNuQg+EPHSdo07epdfp8arPuDJPy25XqjKeuUUtHhvXm47Du5Odmc2ONX9qPdeQOXu7AnBHS57Flbttr1i8nKxcVsz4mIO/79O5o7P40jdNOgTQYUAnnOq5kJmeyaVjF9i94V8yDKjeKsy72FuaH5bERSrztLxlUd54OVk5fD7jYw7+/l+5Op2NjIwwMjLSeB9tbGoMQF13J53j6Yu6ZdYrhXW/buVSkXiJ0QmcKGVNXXt3RzxU6+8Wv5d9WBhqPRV25gpz+72qdVNXYfjq1KmDhYUFiYmJarvMg3JDpsTERMzNzUvtbD169CiAxnVFTU1N6dChA+Hh4Vy4cEE6R4UQ1cPKygorK6uaToZBsLJXVuhpiakaj6clpRU716rMG5OKxLNyUF6TquWa4tdZ2ZX9tA8goGsgzbsGAnDwt/+KXnfz9cDE1ITcnFze274Ms1rm967p0pLHx/Xhj89/4eelP+r0PoYsMODhW7+qOliqPtMZSWkaj98t9rqFvVWZnaMVjXdsw24sHazpNm0QE398i8Sbd8jLzcOxvis5mdn8/eFGDqzdXiJW4WZMjboH0uLJklOYm/QMpvOk/nw3eRk3T2oexaqP6qjyL11L/hXPV0t7a7Iy1Ke9V3U8r4AGjFkyhbr1XDC3qEV8RCzfzV5F1CX10em2LvYMeWMMybFJ/LLw21LTZqju5anmOr14ntbRoV2pinj1AhowZslUnIqV0bezVxKlZeaBobOu4ra9ovFysrLZ/+te3RPOvaVvAnsE02Fg5xLHgnu1of+kQSyb9EHRKDB9V5h32u5xSuadtc5lUd54yrLYo3O6Cx9ym9Uyw7WBG1Fh6utWe/gp2xhLG0ud4+oLqzLqlfRy1lNVHQ/gqTljMDU3JTk2kYsHQ8o839AYaj2lbXacqKAHuCGTroyMjPD19eXs2bNcv34dX1/fEsfDw8PJz8+nYcOGpcYp3PzJ2NhY4/HC13Nycqog1eoevvHmQjxioqOjef/99+nbty+BgYEEBATQo0cP5s2bR0zMvafkc+bMYfTo0YDyqYy/vz9z5swB1Ncc/eyzz+jatSsAkZGR+Pv7M2bMGI3n3p8Wf39/undXn3Z05swZJk+eTNu2bWnVqhXTpk3j1i3t07QzMzNZtWoVAwYMoHnz5rRu3ZqJEycWPVGqKYW7JOdkZms8nl3sdV12VK5IvLKuUV6XpXMaXBq4MWX5ywCEHj7PiX/u5XHhTvUmpiac3nmCuX1e4Tm/4cxoP4nfPt0EBQUMfGkYj4/tXeb7iEeDaRmfz+Kvm5qX/fmsTLy48GgSb8WiUChw8HbBydcdhbGCrLS7GjtbXVQjsIwURvy54Dveaz2VtxqOZeWQeVw7fAGrujaMWzMLG1f7MtOtLwrrgGxd6hgdyqMq4rn6eeDR2LtoKQ8LG0uadQ/CxEz9mf3T70+itrUFG99ZQ0ZK6Yv4G6rytAO6/M1URTxXPw887yujAC1l9DAo1+e62EPCBxWvNF6qkXJGCiO+W/A1U4OfY6zfMOYNnsOFQ+ewqWvLrLVzDWa92PLlXRXXWTrE0yYlPpmrp5VT9Ae/NEztuIObIx2eVHZem5ga3t+RPrYlxfV6/knaDFCONtu85Edys6qn86QmGXI9JR5+nTsr67cdO3aoHSt8rbB/QZsGDZRL+Ozdq975npeXx+HDypHjjRrptnxHeUnnqBAG7OrVqwwcOJB169ZhbGxM586dadWqFQkJCWzYsIGRI0eSlqbsAAgMDKRTJ+WC2g4ODgwYMIDAwECNcf39/enZsyegXBdkwIABdOig20YQmuzatYvRo0ezZ88efHx8aN++PceOHWPkyJFFT4iKS0lJ4emnn2b58uUkJCTQoUMHGjduzKFDhxg7diwbNmyocFoqq6zpIwqFUdG/dVmZoCLxdJnCUrgwdlnLI7g0cOONH97F2sGGpDuJrJj+cYnjsTej+XfdNn79eCOfvbCUmxeuk5udS3xUHL989CMbFikXVR/66iidvrSLh19Zn0+jcizaXpl4PWYMZfSK6VjYWfHDtE+Z13Q8/xcwgQ0v/w+FsYLB702g31vPlLjmwr8nOPnLf6ybsJT9a7aRFptMXnYuN09eYe2YRUSGhGNhZ0W3aYPK9TvUpPLkXwFlV1pVEe/C3tPMDBjHa0ET+HrGZ+Rm59JjQj8mrSq5WWCbwZ0J6B7E6b+PcuqvI2WmzVCVnafF2oEqKaOy453fe5rpAeN4NWgCa2d8Sm52Lo9P6M+UVa+V+f6GqDxtsS6Ne1XHK82Jf47y38+7WTr+PbZ99TvJsUnkZudy5eQlFo15l/CQMKzsrBg0Tb3DTh8Zclls+ugH8vPz6TT4MZ6d/zwObo4Ym5rQqE0TZn/zdtE68bk5eZV6n5pQrvvVKqinyhOv+7g+DJ87FoBDm/dyQLWR0MPGkP82RBV6gBsylceQIUMwNzfnyy+/5Ny5c0Wvh4SE8NVXX1GrVi2efvrpotdv3rxJWFgYqan3Ri6PGDECgFWrVnHixImi13Nzc1myZAmXL1/Gz8+Pdu3aVTT3SmV4j62EEEWWLFlCUlISb775Zold4+Lj4xk5ciQ3b95k165dPPnkk4wYMQIfHx/279+Pj48PS5cu1Rq3V69eNG/enH///Rc7O7tSzy1Leno6b7/9Nnl5eXz22Wf06tULUHaATpo0iVOn1NfBXLBgAefPn2fgwIHMnz+fWrWUI1cuXLjA+PHjWbhwIa1atcLP78EvaJ91NwsTM1NMzU01Hjcxu/e6tiexlY1XuIaftmuKX1fa6NL6zX2Z9fVcrB1tSE1IYcmY+SRGl9yg5vLxUC4f17xQO8A/32xj8PTh1LG1wr91Y87tP6P1XPFoyLmbhYmZSSmf6Xu3HqV9PisTr66PG91fGkx+Xr7aNPgzvx8k5koE035fSKeJfTnxy39EX1ROFT74dclp9sXl5eSx78utjPz0JRr1CIK5a8tMuz7IvpuJiVkdrflnWs7yqIp4qfH3Hood/W0f0WGRvP7rewR0D8K/fVMuHTqPlaMNw955loyUdDa8vabMdBmyLFWemmjN03uv61JGVRGveBkdUZXR7F/fV5VRMy4dOqfxOkOlD217RW3/WvNavQB5Obls/eI3XvrsVYIeD2at+qQfvZN5N4s6VZh3VR2vNGf/O803875k3LyJPDGuH0+M61d0LPr6bb6cs4JXVs/hbprhrAFb6N5nWvOD8Ir/jVQu3oDpwxg4U9mhcmbnCb6ZvbLM9zZUhlxPiYefh4cHs2fPZv78+YwcObJoQ6UjR46Qm5vL4sWLcXC4N4Ph2WefJTIykkWLFjFkyBBAObJ00qRJfPHFF4wePZqWLVtib2/PxYsXiYqKwtHRkY8//ljrtPvKks5RIQyYm5sbvXr1KpryXsjBwYHHH3+ctWvXcvv27RpKndKOHTuIi4ujf//+RR2joNz97r333qNv374lzo+JieHPP//EycmpRMcoQJMmTXjppZeYP38+69evZ/78+VWe3npN6zPm3Ykaj62f9xVpialY2tTB0raOxnPq2N1buzU1PrnM96tIvDTV+kyWttrXia1jp4yXkqA+MhegRbcgXloxC3OLWiTdSWTxM+9q3cW+NHk5uURdjcAnsCEOHnXLfb14+GQkplLbxpLaWj7TFsU+0+nxmj+flY3X5IlgFMYKrh44p3F90OiLN7m44yTN+rQhoG/bos7RskSdvwGAjYs9ChNj8nP1f/RPWmIaFqXUMZYl6piyy6Oq4wHcDLnGpYMhNOnSEr92Tbh06Dwj50+gjp0V37+xmuQ7iTrFMVTpiWmltgOWdvde1yVPqzoewI2Qa4QeDKFpl5Y0bNfE4DpH6zWtz7PvPq/x2DfzviRV1RbX0dKuWhX7XKfo0LZXdbzKKNwExd7FAWMTY/JquN7yblqfcVrKYt28L0lLTKVOFeZdVccry7/f/kXokQt0H9UTd18P7qbf5cKhc+z5aWfR7uBJBlinpZdxv1q8XknTqZ6qXDwjhYIx702iy6jHATi5/QirX1pOXk5ume+trx7lekqUgx6uOVpo9OjRuLm58dVXX3Hy5EnMzMwICgpi6tSptG/fXqcYr776KkFBQaxfv56QkBDOnTuHk5MTzzzzDJMnT8bJqfo2tJPOUSEM2P/93/+pvXbnzh0uXrxIaKhytF91LVisq2PHjgH31iEpzsfHB29vb65fv17i/Ly8PFq2bFmiY7RQ4dIA1bX2aG0rC/xbN9Z6LCosEmdvV+p6aK6YHd2VHYSJMQk6PWWtSLzCRf7rltIZWXhdzHX1zvEOg7rw/NJpmJiaEHMjmiXPvMudm5p3cQXlDahCYaT9C5WRctpNbrbh3pCKqhMbFoWDtwt2Wj6ftu6OAKTEJOo0Cq4i8exUr8WGRWmNGxd+u8S5hUzMTbWuVWak+qzn5eYZRMcoQExYJE7eLlofXtir6oqkmASdyqMi8YxNjXH0dCIvN584LXXNnfBomnQBK0dbAIL6KqdMjV40mdGLJmu8pv1Tj9H+qceIj7jDW52mlZl2fRVdlKea2wGHcpZRReIZm5qoyiiv1DJq2gWsHG3KTIO+sSilbbdQte0u3q5a29WKtO1VGa8spuZm5GRpjqOqtsjLzavxjlGA2laWNGqteYPD2laWRIVFqPKuqu6zqjaeLm5dusG6//tK7XXvpsr19G5dNryNzW6HReHk7Yqjls908XpFl3ysTDwTMxMmfTaToCeUI9P2bdzJt2+spkCPO4108bDXU+LR0K1bN7p161bmebt2aV/+QtcYVU3WHBXCwF28eJG3336bgQMHEhgYSOfOnZk0aRKHDh0Cyl5zsrrduaPcvdPZ2VnjcQ8PjxL/Lxzp+s8//+Dv76/2Uzj6NDo6ulrSG3r4PGPqDdH4E3r4POFnwwDwCdS8256v6vWwU7rtZl2ReOFnrwLg2dhb41QYawcbnLxcyM/L49qZqyWOBfduy6SPXsLE1IQb58NZMPTNUjtG3/7lfb4J+4m+kwZqPG5saoKbr7IMo65GaI0jHh0RIeEAeAX6ajxe+Pqt01c1Hq+KeJmpdwGwcrLVGrewUzUzTXmuS2Mv/u/8WhZcWqf1Otcmyl2h467V7Ij88rgRcg2A+lrqmPqBypFM13Usj4rE6z9jOP+36xOGz3tWa1xbF+UmV8kxCQBcPRaq9SfxtnL5j5TYJK4eC+X6mTCd0q6vboQo098gUPNSMYV5Gq5zGZU/3oAZw5i/6xNGzHtOa9x7ZWR4o94uHj7P0/UGa/y5ePh8UbvqG+iv8frCtvjqqcs6vV9Vx9PGq7E3ay/8wLrLG7F1stN4Tr0m9QG4fU199/SacPHwOUbVG6Tx5+Lhc1xT3Rf5aalj/FR5qmveVXW80rQf0ImBLwzF2kHzA4TAHsEAXDSwkddQvF7RnI+F97HXTut2/1vReEYKBRM/nl7UMfrXyl9ZN3ulwXeMwsNbT4kqlp//4H4eMdI5KoQB++KLLxg0aBA//fQT+fn59OzZk1dffZV169YxderUB56evDz1EQmFI620uX/NkHxVRdywYUMGDBig9adww6gH7fh25S55rXq1wdKm5FQgI4WCzsOUT7kO/Ka+y15VxYuLiOX6uWuY1TKjw2D1Xf+6jlROMTqz+2SJ3Z3d/TyZ+skMjE2MCTt1mfdHvk1ybFKp6bsVegOFQkH7gZ0xNlFf36X76F7UrlObmBvRXA8x7A4KUTXOb1eO6m7SM5jaNpYljhkpjAh6qgsAp37dX23xwg9fBKBhl+ZYO6t3GFg6WNOwS3PluUeU58aGRZGvqsOChqqPdDdSGNFxfG8AQrYZzuZAp7cr09qiZ2ssNORf+6ceA+Dor/uqLV7hFOzGnVtgf99IXQBHL2eaPtYSgHO7TgLw0bB3tP4c/+MgoNw06KNh7/DVi8t1Sru+OqXK05Y922ChoR1o/5SyHTjy63/VFu/SofMANCmljJqpyihEVUYPk6OqtjhYS1vcZVh3APbr2LZXdTxtosIiyMtV3jd1Hqo+ysZIoaD3c/0BOPLnwUq914NybLvy4X5wr7ZVkndVHa80nQZ3ZeTsMbTprb5ZiE9LP5q2DyA1MYVDW3Vr//TJyaJ6pbXGfOygqvsP61hPVTTekzOGE9xXOT1385If+GXx9+X6PQyZodZTQhgK6RwVwkDdunWL5cuXY2try6ZNm/jjjz9YsmQJkyZNol27dty9e7da3rdwF3RNHaHFd5srVDhiNCpK8/TW2NjYEv+vW1c5haN58+YsXbpU68+HH35Yqd+jom6F3uDUzuNYWFvy8qrXqKNaK8nU3JSJi1/A3c+TqKsRnNhesvOkjp0Vrj7uOHk5V0m83z//BYCn546jUbumRa8HPt6aQS8PIz8/n60rfy1xzfgPpmJWy5zEmASWTVhERkrZGwL88/VWcrNz8GxUjwkfTMXc4t5SBx0Hd2XkG8rdQTd+sL7GRykL/RAdeovQnSepZW3B6JUzsFB9pk3MTRmyeBLOfh7cCYviwt/HS1xnYWdFXR837L2cKh3v0p7TRJy9hplFLcaumYVjA9eiY7YejjyzeiYWdlZEX7rF+e3KpT/ysnM59M0/gHKn+2Z92hRdY25Vm+HLX8CzpS/Jt+PZv2ZbFeZY9YoMvUnIzhPUtrZg0spXi9Z3MzE35ZnFU3D18yA6LJLTf5dcqsTSzgpnHzcc76uzKhIvdH8I109fVU6FXPkqdevdi+nm78mLX8/B1NyM438c4Oa58OrKCr0VGXqTs6o8nXxfno5dPAW3CpRReeNd3H+WcFUZTVk5i7r1XIqOufl78dLXb2BqbsaxPw5w89y16sqKGnMr9AYnVW3xjFWvF63BZ2puyqTFL+ChaouP39cWW9lZ4ebjjpOXS5XEK6/c7Fz+WfcnAENnjKBN33trutW2suCFj6fjG9iQ+NtxbFvzR6Xe60G5GXqDkzuPYWFtyUy1vHsRDz9PIq9GcEzVsVNIW1lUNF5FHPrjAABPvTIKT/96Ra83CPBhxorXAfh95WbuplXPPXp1igi9wZmdJ7CwtmTKffXKs4un4Obnye2wSE7dV0/VsbPCxceNuvfVUxWJ5+rjTt8XBgOwb8MOtq3YXJ2/st4x1HpKVLGCggf384iRNUeFMFAhISHk5+fTsWNHmjdvXuJYfn5+0bT6/GJD4ssaxVmctnMtLCwA9U5NgNOnT6u91r59ezZu3MiOHTsYOnRoiWPR0dFcunSpxGvBwcopR4cPHyYrKwtzc/MSx/fu3cuiRYto166dxjVXH4Sv31yNx89eNOkQwMeHviDyagROXs7UsbUiPTmdTyYvVuso7DmuL0NmjiD21h1e6TSl0vGObTvE3o076DriceZuXEDE5ZsYm5jg2sANgJ+WfF9il3mfwIY0DG4EQEF+AS+vfl3r75d8J5HPXlgKQNTVSL6avZKJS16g87DutOnXgdvXorB2tMHexaHovY5tO1TB3BQPo1/nrmWKvyc+HZoy++Cn3Lkahb2XExa2dbibks53k5apfabbj+vF4zOGkhgRy5JO0ysd7/upHzPhuzdxb1afmTs+JDYsCiOFAkdvFxTGChJu3mH98x+Rn3evjtz56WbcmtajUY8gRq+cQXJ0Aql3knDyc8estjlp8Sl889wSslIN64vtD3O/ZJa/J/4dmvHewRVEX43E0csZS9s6ZKSks3rSUrX8e2xcb/rPGKZxPc+KxPvyxWXM+OEd6jX3Yd7Oj4m5FoWRkRHOPm4oFApCD4Tw3exV1Z4X+ur7uV/g5r+ARh2asejgSrU8XTnpQ7U87TauNwNmDCdTXHMdAAAgAElEQVQu4g5zO71Y6XhfvPgRr/wwj3rNfXhXVUYYGeFSrIzWP8RltPbNVXj+/D5NOwTw6aEviLqvLV6moS3uNa4vQ2eOJPbWHaZ3mlzpeBWx+ZOfqNe0AUE9gpmx8nUSouNJupOIu58n5rXNSYlPZsmzC7mbajg7pK95cxWeP9ejaYfmfHboSw1594GGsujHU6qyeLnTpErHq4j9v+4h+Im2tO3TnkXblhEVFoHCWIG7rycAO77/m62rf6v0+9SU7+auxt1/IY07BLDk4CpuX42krpcTlrZWZKSks2LSErV87D6uD0+q6qk5nV6oVLwe4/sVzWLyalqf2ZsWaE3r/p92c2CT9jUNDZWh1lNCGALpHBXCQLm6KkdCnTx5kqSkJGxtlWvkZWVlsWjRoqINmbKysoquKexo1DTC835mZmYApKenU1BQUNRZ2rChcv2ZI0eOcOnSJfz9levUXLt2jRUrVqjF6d69O56enuzatYtNmzYxbNgwADIyMnjzzTfVRqB6eXnRrVs3du/ezbx585g3bx61a9cGICIignfffZfIyEhGjRqlSzZVi8ToeN7pP4tB04cT1LMNXo3qkZGSwcEt/7F52UaNmyBVR7yvXl/BpWOh9BjdCw9/LzAy4sqJUP75+k8Oq0YvFCq+wLu9qwP2rg5a0xN7606J/x/YvIeISzfoO3kgjds1w6OhJxkpGZz4+wjb1/xB6JEL5fp9xcMvJTqB//WfS/fpQ2jSsxUujbzITEnn9JYD7Fj+C/HXy7dmcEXiJUXG8b8Bc+k4vjfN+rTBwVs5YuLO1UjObz/G/jXbyLxv9HR+bh7fTvyIVsO60mpYV1waeWLh70FyVAKhO0+yZ8UW0hPKrj/1TVJ0Aov6z6Hv9Kdo0TMY90b1uJuSzrEt+/lj+U/ElrM8KhIvITKORQPm0PP5AbTs05a69ZzJzc7l2onLHP5lLwd/2kVB/qP7BSwpOoH3+8+m3/RhRXmakZLO0S37+WP5Ru5UoIzKGy8hMo73Bsym1/NPEnhfGR36ZQ8Hftr9UKzrp01CdDxz+89iyPThtFK1xekpGRzY8h+/LNtAdDnb9qqOp01ebh4fTXifrsO703VYDzwb1cOjoRUJt+M4ufM4Wz7/hdSEsncP1ycJ0fG82f9VhkwfTnDPtqq8S+fAlv/4edmPFSqLqoxXms+mLeXqhAF0HtINF29X8vPyuHjkPDu+/5uDW3Sbcq6vEqMTWND/dQZMH0bLnq3xaORFRkoGR7bsY0sF6qnyxvNTPeQHqBfgU2rsiwdCypUWQ2Go9ZSoQg9xO1zTjArkUYAQBmPOnDn8+uuvLFmyhP79+zN69GhOnTqFra0tQUFB5Ofnc+rUKZKTk/H19eXq1asMHDiQJUuWAJCUlETHjh3Jzc2lY8eOtG7dmqlTp7J582beeOMNnnrqKd577z1AuZFTu3btSEpKIjAwkICAAObOnQvAlClT2L17N+bm5nTo0IHs7GyOHj1Ku3btOHfuHBYWFiV2oDt58iTPP/88aWlpNGvWDHd3d06cOEF2djYODg6Eh4ezc+fOos2Z4uLiGDNmDNeuXcPe3p6AgADy8vI4evQo2dnZ9OzZk08++URtvdLSjKk3pKqKQVTS2hNLazoJQuWd4LdqOglCJYncmk6CKCYfuT3WF6kF8rehLwrk70JvWBrJGCd9kVGgvtSYqDk/3Pi17JMM2N0f5z2w96o96t0H9l76QNYcFcJAGRsbs2rVKsaMGYOVlRX79u3j5MmTNGzYkKVLl/Ldd99hZGTEf//9R26u8ouFra0tCxYswN3dnaNHj3LwoPbF+Y2MjFiyZAn169fn3Llz7N69u+jY8uXLmTJlCnXr1mX//v3cuHGDKVOmsGLFCo0dlkFBQfz000/07duX27dvs2/fPho2bMj69etxcXFRO9/R0ZFNmzYxbdo0HBwcOHz4MOfOnaNx48YsXLiQjz/+uFwdo0IIIYQQQgghhEGT3eqrjYwcFUI8EmTkqP6QkaP6Q0aO6g8ZOapfZOSo/pCRo/pDRo7qDxk5qj9k5Kh+eehHjn7/9gN7r9qjta/r+zCSWlUIIYQQQgghhBBCCH1W8OiN6HxQZFq9EEIIIYQQQgghhBDikSQjR4UQQgghhBBCCCGE0GeP4FqgD4qMHBVCCCGEEEIIIYQQQjySpHNUCCGEEEIIIYQQQgjxSJJp9UIIIYQQQgghhBBC6LOCgppOwUNLRo4KIYQQQgghhBBCCCEeSTJyVAghhBBCCCGEEEIIfSYbMlUbGTkqhBBCCCGEEEIIIYR4JMnIUSGEEEIIIYQQQggh9JmMHK02MnJUCCGEEEIIIYQQQgjxSJKRo0IIIYQQQgghhBBC6LMCGTlaXWTkqBBCCCGEEEIIIYQQ4pEkI0eFEEIIIYQQQgghhNBjBfkFNZ2Eh5aMHBVCCCGEEEIIIYQQQjySZOSoEEIIIYQQQgghhBD6THarrzYyclQIIYQQQgghhBBCCPFIkpGjQgghhBBCCCGEEELoM9mtvtrIyFEhhBBCCCGEEEIIIcQjSUaOCiGEEEIIIYQQQgihz2S3+mojnaNCiEeCl1Gtmk6CUHkn+K2aToJQmX98YU0nQai0aTamppMginEyta7pJAiVJsY2NZ0EoeJaIF8d9cWWnKiaToJQ6WLqUtNJEEJUAZlWL4QQQgghhBBCCCGEeCTJ4z8hhBBCCCGEEEIIIfRZvmzIVF1k5KgQQgghhBBCCCGEEOKRJCNHhRBCCCGEEEIIIYTQZzJytNrIyFEhhBBCCCGEEEIIIcQjSUaOCiGEEEIIIYQQQgihzwoKajoFDy0ZOSqEEEIIIYQQQgghhHgkychRIYQQQgghhBBCCCH0maw5Wm1k5KgQQgghhBBCCCGEEOKRJCNHhRBCCCGEEEIIIYTQZ/my5mh1kZGjQgghhBBCCCGEEEKIR5KMHBVCCCGEEEIIIYQQQp8VyJqj1UVGjgohhBBCCCGEEEIIIR5JMnJUCCGEEEIIIYQQQgh9JmuOVhsZOSqEEEIIIYQQQgghhHgkychRIYQQQgghhBBCCCH0WEG+rDlaXWTkqBBCCCGEEEIIIYQQ4pEknaNCCCGEEEIIIYQQQohHkkyrF0IIIYQQQgghhBBCn8mGTNVGOkeFEKKSallb0n3GEJr0CsbKyY6MhBQu7z3D7k9/JSky7oHEM1IY0faZngQ91YW6vm4AxF27zanN+zi87h/y8zSvT+PfPZAO4/vg3rw+RhhxJyyS4z/u5tTmfeTn5pU77TWtlrUljxfLu3RV3u2qRFmUN56Rwoh2qrJwUpVFrKosDmkpi6a9W/PMqpmlpuWr0e8TduBcuX+HR0F+fj6jJ7/Crcjb7N+2saaTY9CsbKyY/Op4uvftgqOTA4nxSRzcfZgvln3N7YiYSsU2MjJi3Z+r8ajnTvem/bSe9/G3i+naq5PW4zFRd+gdNLhSadEXdWzq8MyM0XTo3R57J3uSE5I5vucE33/8A3ci71RrvGdmjmbMK8/oFPefTf/y0SvLSj1n+AvDmPDGeJ3O1Re1rS15YsZQAnq1xtrJjrSEFEL3nuGfT38hsQJtRkXiTfzqNZo+3kprzKTb8bzb/kW111sP7UL7px/H1d+TvJxcbl+6xb5vtnN2+9Fyp1vfmVtb0HHGEPyeCKaOky0ZCSmE7z3LwU9+JSUyvnLBjYx45td52NZz5n+BU3W+TGFizNitC3Bq7MWPI97j1uGLlUuHAbOyqcP4V8bRpXcnHJzsSYpP5vCeo3y9fD0xkZVvN1b//j/cvd3oF1B2ve/bpAFrtq3ipzWb+XzBqkq9tz4w1PtagIB+bWk3thduTeqhMFYQdz2aM78f4sDav8jLzi132oWobtI5KoQQlVDL2pLJm/8PJ193MlMziAm9iZ2XE8EjutG0dxu+HDGfmNBb1RpPYaxg9OpXaPR4EADxN2LIz83DpUk9+jWrT8PHWvLt+A/VOjt7zR5J16lPApAWl0xSZBwu/p4MWTKJ5gPa8/3kZWRnZFUyhx6cWtaWTC2Wd9GhN7H3cqL1iG40692GL0bMJ7qcZVHeeApjBc+sfoXG95WFa5N6uKvKYp2GsnBp5FV0fuqdJI3pyUxJL092PFI+/eJbQi5cwtbGuqaTYtCsbKz45o9VNGjoTVpqOlcuhuHu5cagpwfQvW9XJg6expWLYRWO/+KcSQQENSUxXvNnvJBfYx8Azh4/R16e+kOahLjSrzcUdWzqsPzXj/Dy8yI9NYPw0HBcvVzpPfIJOvbuwGvDXic89Hq1xbsTFcu5o+e1xjOvbY5fgC8At2/cLvW9PRq488zM0TqnVR/UtrZk+ub5OKvq+NuhN7D3cqbdiG40792a/42Yz+3Qm9Uez1VV/18/eVljJ0NafEqJ/xsZGTH642m0GtgRgMSoeNLik/EOaohvuyYc37yPH19bqbXDwtCYW1vwzK/zcPB1Jyv1LrGhN7HxcqL5iMdo2Ls1Pw5fSGw52vb7dZ41DLdAXzISUst1XftpA3Fq7FXh931YWNnUYdWWz/D2q0d6ajphF6/h5uXKgFF96dqnM9OemknYxWsVjj9p9niaBjUmKSFZp7TM+2wuJqYPRxeHId/X9p4zkq5TlN8xkiLjyEzNwMnHnT5zRtFyYAe+GLGAzJSMSubQI6rg4ajb9dHDUXMIIapVQUEBRkZGNZ0MvTT4g4k4+bpzadcpNrz0GdnpmZiYm/LkwvG0GtaVkZ+9xKdPzKZAxykQFYnX5pnHafR4EJmpGXw3aRnhhy4A4BXkx5g1s/Dr0pwuk/uz5/MtRdc069e2qGP036U/sXfFFgryC6hlbcnwj1/Av3sggxZN5Kfpn1dhblWvIaq8C911ih+L5d3AheMJVuXdJ+Uoi4rEa/vM4zRWlcX6Scu4Vqwsxq2ZRUMNZQHg0sgTgL8W/cD57ceqKEcefgUFBaxY+z1frZfRolXhnY9m06ChN/t2HGTO5HlkpGdgZm7Gm4tnMXBkPz5Y/S7DHhtLfgV2Sp08azwTpo8t8zzLOha4ebqSlprOuP6TK/JrGIwZi6fj5efFkZ1HWfTiB9xNv4upuSkvvz+NXsN78cbnbzCl51Sd87u88f7Z+A//bPxHe7wl0/EL8OXMwTNs+Ez735iRkRGvLJ2JeS3z8mVADRvxwSScfd25sOsk3770KVmqOv6phRNoO+wxxn72MkueeE3nNqMi8czr1Mbeoy6ZqRl8MuQdnd6n26T+tBrYkbycXDbNXcORn3YDYONsx3OrXyV4SGcSb8ez7cMN5c8UPdR78UQcfN0J23WaP6b9j+z0TIzNTem18DkChndhwP+m8XWvOTqXU3EdZwyh/bQny32do78H7V4s/3UPo9kfvoq3Xz0O7jzMvKkLyEi/i5m5KbMWzaTfiN68u+ItxvaYWKF2Y/wr4xj7km4PXewc7Vj89UIaNKpf7vfRV4Z6X9v48SC6TnmSnKxsfnzxUy7uOAmAjas9z6x+BY/mDRgwbxybXl1ZhbklROXJhkxCPABz5szB39+fLVu2lH1yDenevTv+/v5ER0cXvZaamsrChQv5/fffq+19t2zZgr+/P3PmzKm296gujj5uNOndmqy0u2yauYLs9EwAcrNy+HX2F9y5EoGTnwdNnmhdrfECB3cGYO+KLUUdowA3T15hx7KflecM7VLimm4vKacmHd+wmz3/+63oRigzJZ2fZqwgIymNFgM74tHCp7zZUiPq+rjRVJV3P92Xd5tnf0HMlQic/TxoqmNZVDReYVnsWbGl6AYSlGXxr6osWt1XFgAu/srRJ3euRJbzN390xcUnMP2NBaxc+31NJ+Wh4O3rRfe+XUlPy+CtafPJSFeO6MjOymb+Kx9w7XI4DRrWp3tf9c9vaRzq2rPs60VMmTVBp/N9VaNGr12+Xq73MTSePh507NOBjLQMPpzxIXfT7wKQk5XD8tc+4cblm9Rr6EWH3h1qJF77Xu3oM6o3aclpfDhjaakdGwOfe5KmrZuSeTdTp9j6wMnHjYDerclMu8v3Mz8nq1gdv3H2aqKvRODi50HzJ9pUazw3f+WDseirutX9ChNjuqtGY/39yS9FHaMAyTGJfDf9M3Kzc3lsYl9sXR10iqnP7H1cadg7mOy0u/w5Y2VRW5yXlcP22V8SdyUSRz93/HoHlyuuZV0bBn8xg44zh5Q7TUYKI/p8OAmMeOSnBnv5eNK1T2cy0jKY//IiMlT1TnZWDh/MWkr45evUb+hNlz7al0nRxL6uHYvWzGfCq+N0Oj+4cxBrt6+iaVDjcv8O+sqQ72vbPvM4AHtX/F7UMQqQfDuB3+auAaD5gPaY1jLTOT9EMfkFD+7nESOdo0IIrZYsWcL69es1TmsU0HJQRxQKBaE7T3I3ueSU54L8Ak5s+g+AgP7tqzWetYsdgMbp+1HnwgGwcb/3Jcmqrm3RNO79X/6pdk1mSjpntxwEoMWgjjqlvaYV5t3FMvKueTnLorzxCstC0zSnSA1lAWBaywx7Lydys3KIvx6tdp1Qd+DICfqNnMiufYdwdLBjxpTnajpJBq/v0CdQKBT8989+UpJKTi/Nz89ny4ZtAPQa2EPnmO26tuG3gxvo1qcLsTFxfLqw7FEihVPqr12q+DRMQ9B9SHcUCgVHdhwhNSmtxLH8/Hz++Uk5orPrAN06o6synlktM15cqFzj8usl3xB7W/u6di5eLjz7+jhu37jNv5t26JRWfdBqUCcUCgXnd54kQ0Mdf3TTHgBa6thmVDRe4ZT66MsROr2PZ/MGWNpZkZudy3/fbFc7Hncjhkv7zmJqbkaLvm11iqnPmgzuiJFCwdWdp8jUkK/nVG1xo/7tdI7p3bkZE3cvxe+JYNLuJLH3g/LNPGg9qR+uLRpw7Mu/yEq7W65rHzZPDO2JQqFg/7+HSNXQbmzb+DcAPZ7spnPMNl2C2bDvW7r07kRcTDwr3/+y1PNfWzyTTzYsxcm1Lvv/PcTuP/eW/xfRQ4Z8Xxt5NpxLu09z5o9DatfEqOo6EzMT6tS11SntQjwo0jkqhADgm2++Ydu2bTg6Oha9VpEpMI8Sz5bKtdhunrii8fitU8rXvdv4V2u85OgEAFyb1FO7xsnPQ3lOsQ0LCm9isu9mERsWpfG94lSddIYyclRfyiKllLJw1lAWAM7+niiMFcReu/3QrBFX3a5dv0nG3UwG9O7Bb+tX0bxpo5pOksELCGoKwJnjmjf9CjmhXJsysG0LnWM2aOiNhWVttm76i2GPjeHsSe3rWxbya6Ksc8Iuhev8PoaoUUtl3XHhuOZNXEJPhQLQrE3TBx5vyMTB1HV15NrFcP5cv63Uc2csnk5ty9p8MudTsu4azhrV9VR1/PUTlzUev3HqKgAN2uhWt1Q03r3OUd3WDbRzU96jxd+M0doxV9h+exlI+10at5bK3yFSS1scdVKZrx6tdWvbARz83DGzNOfcL/tY23MOUaqy0YVdfRc6zhxCwrXbHPh4s87XPayaBio/z+eOa67bz59UjjRs0SZA55jeDetR27I2f/38D2N6TCiKoT0NyvVIF7/+EbOfnVs0at7QGfJ97b/LNvHNc0uIu6a+VrV7M+WyB9kZmaTeSdQp7eI++fkP7ucRI2uOCiEA8PKSReXLy97bGYDEW5p3FC7c9dGqri1mFuZlbm5U0XjHN+zGs6UvnacM4PrxS1w/ovwS7Nq0Hj1nDQPgyHf/qsUzUhhhZGREQYH6tAljE2MAbN0d1Y7pIwdV3iVoybvEcpZFReMdU5VF1ykDuHH8EuEayuLwfWXhoppWeedKBA3aN6HFgA7Y13MiOyOT60cvcWzjblm0/j7Nmvizae1nNGpo+F/+9YVnfXcAIm9qfmByO0LZ4eLo5EBti9rczSj7C+j5UxcY1XM8l89r/jKmiW8jH9X7xTBs3CDadA7GysaKO7dj2fXnHvb8vV/nWPrMzVu542/0Lc2jxWMilHWPvZM9tSxqkZlR+pT1qopnZVuH4VOVddU3i7/R2D4U6vN0HwI7teTvjf9wav9pgh8r39TmmuTo7QJor+MTImMBsNaxzahoPDfVkiqJkXF0eKYnDTs0o7aNJcnR8ZzdfpRz/57QGE9hrH18i0LVftu51y01zYbAVtUWJ9+K1Xg8WdUW13GyxdTCnBwdNpG8feYa6/q9xZ0Lum+2Vaj3kucxMTPh7zlryMvKKff1Dxt3b2W7EXVL84Zt0RHKneodnOypbVGLu2XUYwAXTocyvvdkrpzXbfO/H1Zu5ODOw6Q9ZJtWGvJ9rTY+HZoy5IPnAdi/5i9y5W9I6BnpHBWihuTm5rJhwwY2b97MtWvXMDIywsfHh8GDBzNixAhMTO79eW7evJk33niDt99+m0aNGvG///2PkJAQ8vPzadGiBS+++CKtW6uvOXPixAlWrVpFSEgIWVlZBAUFMXPmTH788Ud+/vlndu7ciYeH8qlf9+7diYyMZO/evbi4uODvf+/J4RtvvMEbb7zBt99+S9u2bdXOLW7u3Ln8/PPPLFq0iCFD7q3llJWVxZo1a/j999+JiorC1dWVsWPHYmlpqTWPzpw5wxdffMGJEydIT0/Hzc2N3r178/zzz1OnTp0K531VsbRX7oydcd8UxkJ3i71uYW9V5o1LReMd37CbOg7WdJ02iAk/vkXizTvk5ebhWN+VnMxs/v1wIwfX3pt+l6j6kmFqboZDA1fiNIwedfJT3vDWttFePvpEX8ri2IbdWDpY023aICZqKIu/P9zIgbUlp0IWbsbUqHsgLZ4suR5gk57BdJ7Un+8mL+PmSd07mB52gQFNajoJDx07B+X0tuSEFI3HkxPvvW7rYKNT56i2Uail8VVtpvHuJ3OxrGNR4tiA4X3Yv/MQrz//tk7vr89sHGwASEnUvEN28SmqNvbWZXaOVlW8Pk/3wdLakvDQcI7sPKr1/RxdHHl+7gQS7iTwxYLSp73qozqqOj49SXN+Fa/7Le2tyc7Q3DlX2Xgu/sp7sFFLp1KrTu0S17Qe2pULu0+x7sWPi9qYwo4Ne08nzGqbk61htK6Lqv22MJD2uzQWqny9q+VznVksX2vbW+nUORqlZeRcWYKe7YVnG39Of7+LW6oOokedrardSEnU3G6kJN173cbeRqfOUW2jULX559ed5TrfUBjyfe39xn41C/fm9bF2siMvJ5c9K38v2hNBVMAjuBbogyLT6oWoAVlZWTz33HMsWLCA69ev065dO9q2bUtYWBjz589n8uTJZGdnq123f/9+xo4dS0REBO3bt8fV1ZVDhw7x3HPPcfr06RLn/vXXX4wdO5Z9+/bh4+NDx44dOXfuHE8//TQhISFlpnHAgAFFo0kDAwMZMGBAiSn35ZGdnc3EiRP55JNPSE5O5rHHHsPW1pb58+fz5Zeav1Rt3ryZUaNGsWvXLjw9PenWrRtZWVmsWrWKUaNGkZSUVKG0VKXChcRzMtXL6v7XTc3LXnS8MvHiwqNJvBWLQqHAwdsFJ193FMYKstLuqt0IpcenEHFa+US+27RBau9j4+ZAc1UnnbGpYTxDM9SyAIrWfzVSGPHngu94r/VU3mo4lpVD5nHt8AWs6towbs0sbFzty0y3EBVVuNN4VqbmL1jFX69VTbuSu7g7Y22r/AIXcT2SqSNm0r5BD7o26s07098jKSGZTj3a8+4nb1bL+z9IZqo6JltLfmcXq2PMdMjvqoinUCjoP6YfAD+vLn3K8MsfvISltSWfv72StGTNX7b1WfnqeNNqiWfr5oCFjfJBb/zNGFaNeZ/Zjccxt8UEfpi1kvTEVJp0C2TUh1OLro04F05yTALGJsb0eGGg2vt4tfDBr0MzwHDa79KYqPI1N1PzCLPcYvlqUo2bu1h7ONLl9eGkRiewZ9GP1fY+hsZclefa243sYudWT7vxsDLk+9rijIyMaNi1OdZOyrVLjU1NcG9WH2fVgyEh9Inht5pCGKBly5Zx9OhRAgMDWbFiBfb2yk6P+Ph4Jk+ezP79+/n000+ZNWtWiet2797NlClTePnllzE2NqagoIDZs2ezZcsW1q1bR8uWLQFITEzknXfewcjIiNWrV9O1a1cAUlJSmDx5MidPnqQsS5cuZe7cudy8eZPhw4eXGAVaXuvXr+fo0aMEBwezevXqolGfW7duVfsdAcLCwnjnnXewsLBg9erVtGrVCoCcnBwWLFjAxo0bWbBgAR999FGF01QV8vPyS53aZqS4d0yXZ3wVjdd9xlB6zBhKWmwyG6Z9yqXdpzFSGOHfLZB+74xh4HsTcKjvyl8Lvyu65t9lmxj3zeu0HNyJzJQM/lv9B2mxSXgG+vHkgufIuZuFaS0z8nINYyfW8uRddcbrMWMoj88YSmpsMj8UK4tG3QLp/84YBr83gbr1XfmzWFlc+PcEybfjOfHzf2o7ga4ds4ipm+fjHlCfbtMG8dvcteX6PYTQVX5ePsbGxlqPKxRGRf8ubap1pdKQn8+6FT9gY2vFkrc+KRodmpmRyR8bt3Htcjjrtq6m54DuBARtIESHNUz1VVn5bVQsv9Ehv6siXtuebXH2cCY+Jp7dv+3WeA5AjyHdadujDQe2H2T/NsNc5kAf2oyC/AJ2rf4DC9s6/PruN0UjtbLvZnHs573EXIlg+uYFtOzXjj1f+XLj1FXy8/LZvvxnRnwwicdfGEReTi4Hf9hJZmoGDTsGMOy9CaQnpmJpZ2Uw7XdpCvLyQdd8raZ6CaD3BxMws6zF1ukryE417FHrVak89U51tRsPK32oo6Bi97UlA8PSx14hPT4FZ39Pes8ZiV/nACZtfIcVg94mLlw2Ii23gkdvLdAHRUaOCvGAZWZmsmHDBkxMTFi+fHlRxyiAg4MDy5cvx9jYmO+//56srJJPYl1dXZk+fXrRjYiRkRFPP/00AFev3ltQfsuWLaSkpDBq1KiijlEAa2trli5dWuqNTHXYuFG5E+iCBQtKTN1KutgAACAASURBVIfv378/ffr0UTt/3bp15OTk8PLLLxd1jAKYmpry1ltv4ezszLZt24iJian+xJciRzWdzUTLqBITs3vPn3K1PKmtbDxHHze6vTSY/Lx8vpu8jJCth8lOzyQr9S5nfz/I12MWkZeTS6eJfXFpfG9d2av/nWXrvHXk5ebRblwvXj/4GfOvrOf5n97BxNyUX+d8BUCWgXwJKMw7bSN8iuedtqfmlY1X18eN7lrK4szvB1mjpSwOfr2dTa+uKtExWigvJ499X24FoFGPoDLTLURFFXZEmmkZgWJqdu91baOEKuvO7Vg+nv85777ygcZp8+dPXeTIf8cB6NKrY7Wk4UEpnNaubcSPqdm9uidLhzqrKuJ17tsJgP/+2Edebp7Gc2wdbZnyf5NJS07jf299Xma69FX2XWV+mWjJr/K2GRWJlxydwB+Lvmfj7NUap8TePBPG5QPKmT5Ne9y7Fzq8YRc7V25BYaygzyvDWXB8NR9eWs/za18nNTaJ39//HoBMA2m/S1PWfZFxOe+zKqL5yMfw7hxA6NYjXP237MEFj5LCafLa2g2zctZj4h5Dvq8triC/gKTIOHIys4k4E8aa0e8TGRJObRtLuk0bXGa6hXiQZOSoEA/YuXPnyMzMpFWrVri6uqod9/T0JCAggNOnTxMSEkJw8L0NDgICAlDc92SvcKp7Rsa9DVsOHjwIQM+ePdXiu7u7F8V/EGJiYrhx4waenp40aNBA7XiPHj3Ytq3kbrhHjhwBoG3btmrnm5mZ0aZNG/744w+OHz9Ov379qifhOshITKW2jSUWtprXP7Wwsyr6d3q85vWYKhuvyRPBKIwVhB04xy0Na1JGX7zJxR0nadanDc36tiX64r0NCI6s/5frR0MJHtkNJ193stLvcu3QBU5u2lu0S31qbM0vX6CLwryrXcVlUZ54hWVx9cA5jeuDFi+LgPvKojRR528AYONij8LEmHwtnRZClMa/mR+z35up8djiuctJSkzB2tYaGztrjefY2t97PTG+5uqFS+ev0KFbW1w9XMo+uQb5NPXhhflTNR5b8c5KUpNSsbK1wsrWSuM51sXKITk+ucz3q2w8hUJB627K+43/tv6n9X2mLXwRaztrPp79KQkxCWWmS1+lJ6ZhYVNHa3trWayOT9OhzajqeIUiL9ygUZcW2N23OeLWxT9yfscJWg/tioOXE+lJaVzcc5oTv+0neHBnAFIMpP0uzd3ENGrZWFLLVvP6qbXt7uV3RrzmdUkro46zHY+9OYq7SWnsmLeuyuPrO7+mvsxc+JLGY8vf+oyUxBSsba2KlkO5n7WdTdG/k2qw3TBED+t9bUF+Afu+3MrIT1+ifttGZZ4vNJA1R6uNdI4K8YDduaNcTN/d3V3rOR4eHpw+fZq4uLgSr1tZqX/pKdy4qfh0ldu3lbtGaup8LXzvB9k5CuDs7Kw1LfeLjlZOsXjyySdLjV34e9aU2LAoHLxdsPXQvCNs4U7vKTGJOj3VrUi8wi9MsRo2VSoUH367xPXFxVy6xZ/vfqv2umtTb9XxiDLTrQ8K886uisuiPPF0KYs4VVnc/0XXxNxU666dRkbKaWl5uXnSMSoqrI51HQLbttB67PrVG3jV98DNU3OnY2FnZGx0HJkaNoGpSqZmpuRkl/73kJOj37vcWlpZ0KxNU63Hbl29hZu3Gy6emttGJw8nAOJj4nUaqVvZeE2CG2NtZ01sVCwXTlzU+j6d+ylHl85Y/DIzFr+s8Zxew3rSa1hPom/FMK7Ds2WmvSbcCYuirrcL9lrq+MI6OjkmQac2ozLxjM1MyMvWPAW+cFJyXo768fATlwk/cVntdQ9V+x196VaZ6dZ3CWFR2Hk7Y6MlX61V+ZoWk1gtI0e9Ozejlmpjq2knVmg9b9TGuQAcWL6ZAx+Xvl6vIaljbUmLNgFaj90Iu4lHfXdctLQbLh7K+iguOq7aZhw8rAz5vtbKyRZbNwduqfY3UL9G+T2vTl0bjceFqCnSOSrEA6bLmjt5ecoOEDOzktNUCr8UlqXwS6O296rOdX/y80uug1JWmjVN8S/8/fv371/q9fXq1atACqtOZEg4jXoE4Rnoy9Hvdqgd9wz0BSDi9FW1Y1UVr3DanJWTrda4hTc8WWn3ptgFDGiPnWddTmzco/GJc6MegQCEH1af6q2PIlR55xXoyxENeeelyrtbOpZFReKVpywyVWXh0tiLKT//H+aWtXi/zQuk3lEfWeHaRPk5j7tWsw8DhGE7cfAUgS7ap6IHdwikS8+OBLRqxqZ1v6kdD2il7OirznU+X547hWemjOLY/hO8OOoVjef4N/UDIPzKjWpLR1U4eziEJzzVl40p1Lx9c9o+3pZGgY3Yuv5PteONA5UjakJPXdLp/S6fvVKpeI2DGheluzTnjmovf2dPZ+q6OpIYm0hkeBQJd/R3ZOmtkGs07RGEd6AvB7/7V+24d6Dyc3ZDxzajIvH6zx7FYxP7ceXQeVaPXaQxrnsTbwBirkYWvdZ2RDes69qya/Xv5OWoPzBr3E3Zfl81kPa7NNFnw/HpEYhboC+nv1PfldxN1RZHndLcCVNZ6XHJRBzT/jfo2tIHY1MTYkNvkZWaQUpUnNZzDdGpQ2fo6N5d6/HA9i3p+Hh7mgU15rdvf1c73lRVr5w/FVptaXxYGep9rWN9F17dvYz8/HzeD55KeoL6iG5rF+WScqkxMpq4IgryZc3R6iKdo0I8YE5OytEbERHaR+TduqV82l/R3eFdXFwIDw8nKiqqaMf54io74rKwwzJXw2L/KSklO9oKR4xGRWl+6hgbG6v2mpOTE5GRkbz22mu4uOjv1Mnz24/SY8ZQmvQMZpuNJXeT04uOGSmMCHqqCwCnf9Vtw4qKxAs/fJEuUwbg16U51s52pMQklohp6WCNX5fmynOP3BsN1HJQRxr1CCIzOZ2j35f8wuHR0ocG7ZuSkZhKyNbDOqW9pp3ffpTHVXlXu5S8O1WOsihvvPDDF+k6ZQANSymLhveVRWxYFPmqhwFBQzuzd+UfJa4xUhjRcXxvAEK2HdEp7UJUxK4/9zJl1gQe690Za1srUpLufaFRKBQ8OaIvANt++afa0nDp3BVMTU1o1b4lrh7O3I4oua50wya+tOnciry8PHZu3VNt6XgQDvx1gDGvPEOHJ9pjZVuH1GI7/ioUCnoOUy6Ls2vzrgcSz6eZcimVq+dK/6L96lD1TRQLPf/WRJ6aPJRje47z0SvLdEp3TTm7/Si9ZzxFs56tsbD5loz76vjWTynXaz+hY5tRkXiRF65jbGqCT9vG2Lk7khhZsmPNrbEXfh2bkZ+Xz9m/jha93nV8X1z9PbkVco3QvWdKXNOyXzsc6zkTExbJlYPndMwN/XV5+zE6zhyCX69W1LKxJPO+fG02TNkWX/jtQLW8f/ies4TvOav1+LRTK7Gwt2LHvG+5dVj7iOuH1d6/9jHh1XF0fqIjVrZWpN7XbvQd/gQA/2xWf2AgSmeo97Xx12NIiorH1s2B4JHd2LtCvdO8/RhlexS665ROaRfiQZENmYR4wJo1a0bt2rU5e/asxg7DmzdvcuHCBaysrGjUqGJrsRSu1blnzx61Y3FxcZw7p9sNs7ZRmxYWFkWxisvLyyMkpOSoEycnJ3x9fYmKiuLCBfVRDHv37lV7rXCdVU3HACZMmMCIESM4e1b7DeuDEBN6i9CdJ6llbcGolTOK1vExMTdl8OJJOPl5EBsWxYW/j5e4zsLOCkcfN+y9nCod7/Ke00SevYaZRS3GrJmFY4N7SynYejgyevVMLOysiLl0iwvbjxUdK+z07DHzKZz9PYtedw+oz6jPpwOwd+UfJUab6rPoYnk3euWMonXfTMxNGbJ4Es5+HtzRUhZ1NZRFReJd2nOaCFVZjNVQFs+oyiL60i3Oq8oiLzuXQ98oO5t6zBhKsz5tiq4xt6rN8OUv4NnSl+Tb8exfU3JtXiGq0pWLYfz37wGsrOvw4VfvFa09amZuxjvL5tCg4f+zd99RUR1tGMAflt6rdBGkqdgQe++i0SR2EwuW2BILGo2iURPzGXtDjb2XaOzGFruJFUXsIqIgUqVXqcv3xy4IsgtLX+T5nbPnJHvvvnd2rrwLs+/M2CDg1VtcOZs/L+sZ6MLazgqWtaQvFSOrK+f+RVBAMFTVVLF82yKYW338GarXuA7W7FkKRUVFHN59AiFB0qf5VQUBvoG4e+kuNHU08fOmublrhSqrKmPa8qmo5WCFd/7vcPP8rXyv09HXQU1bS5jVMiuTeDlq1xWtCf7WT74rcstKmG8Qnl1+AHUdDYzcOC1fjh+8dDxM7S0R8ToET/65l+91mvraMLY1h6GVSanjPf7nHiIDw6GsqoKRf0zLNyW/ZsPaGLN1JgSKAtzcdxHR797nHvM5fRsA8PX8Efmmsjq2b4iBv38HADi/6jCyP4N16SJ93+H1ZR+o6mjgq01ToCbuV0VVZbguHQsjewtE+4fC73z+z3Z1fS0Y2JpB75PPdipbr1+8wc1Lt6Glo4VFW37JXdtYRVUZs1fMgI2DNd76B+H6ufwDeLr6OrCyrQmLWuaV0ewqoar+XpudnY3rG0UDol2m9EOjL1vlvkZFQxVf/z4G9u0bIiU2Mfc8InnBylGiCqauro5BgwZh9+7dmD59OjZu3Ah9fX0AQExMDKZPnw6hUIhBgwYVmFYvq/79+2PLli3Yv38/2rdvj9atWwMQbdrk4eGRO+2+qCnvqqqqAIDExPxTIhwcHODn54e9e/eiUaNGUFBQgFAoxKpVqyTuIO/m5oZ58+Zhzpw52LFjBwwMRNMprl+/jqNHjxY4f/jw4fj777+xatUq2Nra5g6WZmdnY8OGDbhx4waMjIxKPHhclk7O3QETx5qwbe2En255ItI/FPpWxtDQ08KHhGTsH7eqwDIGLd26o4t7f8QGR2JF26mljndg4hqM2jcH5vVtMPXSckS9DoWCQABDa1MIFAWICXqPfWNXQpj1cRrGw+M3ULd7U9Tv2Rw/nPld9BpFAYztRAMcXgcu48aW0+XUa+Xj+NwdmCDuu1m3PPHePxQGefpun4S+a+XWHV3F92LZJ/eiJPH2T1yDMfvmwKK+DaZdWo5I8b0wynMv9n5yLy57HoO5Uy3U6dIEQze6Iz48Bonv42BsbwEVdVUkRSdg16hlSPsMdh4m+bbop+WwO1Ubzdu64Jz3MQS8egsLK3Po6usgMT4RP472KPBvfvDo/pgwYwxC34Xhi2YDSnX9jPQMzBwzFxv/WgOnxnVx4uZBBL15B4FAABt70fIS1y/cwMoFnqW6jrzw9FiPlY7WaNymMfbd3YMg/yCYWZlBW08bSfFJ+HXsbwX6+8uRfTB8+jCJ63mWJF4OA2PR7yFJ8UkSj3+ODs/dBjPHX2Hfuj7m31qP9/4hMLAygaY4x+8Yt7JAf7V16wFX9wGICY7Eb20nlypeVnomdk1chQl758KqkS3mXF2NyIAwKCgKYGIr+ix+dskbJ/+Xf13wyxtPol5nZ1g722POldWIeBMKNU213AHbM8sO4uGZqjHrQxb/zNmJoUcsUau1EybcXoMY/1DoWhlDXU8LqfHJOD5+DfDJfWri1h1tpvVD/LtIbG4reSM6KhvLZ69G7eM2cGnjjGNef+LtqyCYW5lBR18HifFJ8Bgzv8DPUf9RfTHmRzeEvQvHgJbfVlLL5V9V/b32zt6LMKtXC82/6YwhnpPRa+4wJITHoIadBVQ11ZASm4g9Y1cVqEQlGX0GX3zJKw6OElWC6dOn4/nz57h37x66du2KZs2aAQC8vLyQnJyMtm3bwt3dvcTxjY2NsWDBAsyePRujR49G06ZNYWBgAG9vb6SkpMDQ0BDR0dG5mzlJk7Om54YNG+Dt7Q03Nze4uLhg+PDh+Oeff3D69Gm8ePECdnZ2ePbsGSIiItCzZ0+cO3cuX5yBAwfi5s2bOH/+PLp3746WLVsiLi4O9+/fR6NGjQpsDtWgQQPMmjULS5YswbBhw1CvXj1YWFjAz88PgYGBUFNTw9q1a0s8eFyWEsJjsKH3XHSe2g91u7nApI4VUhOS8ejkTVxefRTRgeHlHi8uJAp/9JmL1qNd4dSzOQytxRun+Ifg2fl7uLn9LFITUgq87tDkdXg3uiec+7WFoY0phJlCBNx9Aa/9l/H4lOTqInmWEB6D9eK+q9fNBabivnt48iYulfBeFDdeXEgU1veZizajXVE/z714L74XNyTcC2FmFvZ8txIuAzvAZWAHmNapCQ1HS8SHxsD38gNc++OkxDWbiMra+7BIfNt9NMZNH4WOru1gX9cWiQlJOHfsAjYt346ggPLfoM3vuT8GdRqBkT8MRfvubVDT2gJpqWl4cOcRTh48jVMHP58K6qjwKEzqNRlD3b9Fq+6tYFPHBskJybh64ir2rNyH0MDiVceWNJ5AIICmjmjTmeSEZInnfI7iw2OwsrcHekztj/rdmsKsTi18SEiG98mbOL/6MKKK+ZlRknihL4KwvOdP6Dz+Szh1aQKjWqbISEvHGy9f3D18FV6HC86gEWZmYePQ/6Hr91+jUa+WMLG1QEZqGnz/fYTrO87B91rFbLhZUZLCY7C79zy0ntoX9t2aoIb4s/j5yVu4ueooYgMLfilPFScyLAqje07AKPfhaNejDWzr1kZSQhIuHL+M7St3ITggpOggJFFV/b0WAI57bMOr/56g5bCusKhvA9M6VogLjca9Kw/w7+bTEtfYp8/DrVu3sGnTJrx8+RIZGRlwcnLC2LFj0b59e5ljJCcnY/v27Th37hyCg4Ohrq6OJk2a4IcffkCDBpI3iSsLCtnluTMLEQEAZs+ejePHj2PZsmX46quvAADp6ek4cOAATp06hdevX0NZWRl2dnbo378/+vfvD4Hg46oXx44dg4eHBwYMGIBFixblix0eHo4OHTrAwsICV67kX0vs5s2b2Lx5c+5UdxcXF8yYMQMeHh54/vw5fHx8cqfId+7cGSEhIbh+/XruOp+pqamYN28eLl++jOzsbMyaNQtDhgwBAHh7e2PDhg3w8fGBgoICnJ2dMXXqVDx79gy//PILFi9ejH79+uW2RSgU4sCBAzh06BDevn0LIyMjDBgwAE2bNsXw4cPRt29fLFmyJF/7vby8sHPnTvj4+CA5ORmmpqZwcXHB+PHjYWNjU6x7MNea30zLCy4jLj8W3v9fZTeBxJrXH17ZTaA8jJV1KrsJJFZPkTsaywuzbNbVyIuTmVV7aZHPSXtl+d0foTpaHHigsptQrpJm9q2wa2ktP16s83PGLFRUVNCyZUsIhULcvXsXGRkZWLhwIQYPHlxkjLi4OIwYMQIvX76EiYkJGjZsiKCgILx8+RIqKirYv38/GjZsWNK3VCgOjhJ9hkJDQ5Geng5zc/MC1ZWZmZlo06YNlJSUcPNm+SxgL484OCo/ODgqPzg4Kj84OCpfODgqPzg4Kj84OCo/ODgqPzg4Kl84OFp2ijM4GhERga5du0JVVRUHDhyAg4MDAODx48cYNWoUMjIycPHixdzNmqWZNWsWTpw4gS+++AJLlizJHcvYvn07li1bBkdHR5w6VT7r1XJDJqLP0PXr19GjRw/Mnj0739ox2dnZWL9+PeLi4tC1a9dKbCERERERERERySxbWHGPYti/fz/S09MxcuTI3IFRAGjYsCHGjh2LtLQ0HDp0qNAYoaGhOHnyJGrWrJlvYBQQbcjs5OSEDx8+ICYmpnh9JiN+/Uf0GerVqxe2bNmCM2fOwMfHB3Xr1gUA+Pr6IiQkBLa2tpg+fXolt5KIiIiIiIiIqrL//vsPACQWYHXt2hWrV6/Gv//+iylTpkiNceHCBWRnZ2Po0KES9xY5duxY2TVYAg6OEn2GdHV1ceTIEezduxeXLl3CnTt3kJ2dDUtLS0yePBmjR4/OXWuUiIiIiIiIiOScHO5Wn52dDX9/fwgEAtSuXbvAcWtrawgEAvj7+yM7OxsKCgoS4zx//hyAaHPm5ORknD17Fk+fPoWSkhJatWqFLl26SH1tWeDgKNFnytDQEO7u7qXa9Z6IiIiIiIiISJL4+Hikp6fDwMBAYsWnkpIS9PX1ER0djeTkZGhpaUmMExQUBEC0KVOfPn0QEhKSe2zfvn1o1aoV1q9fL/X1pcU1R4mIiIiIiIiIiORYtjC7wh4JCQkIDg4u8EhISMjXpg8fPgAA1NXVpbZbTU0NAJCcnCz1nMTERACAh4cH9PT0cPDgQXh7e+PAgQNwdHTE7du3sWDBgtJ2oVQcHCUiIiIiIiIiIiIAwO7du9GlS5cCj927d+c7TyCQfVgx72bRn0pPTwcAKCsrY9euXXB2doaWlhZcXFywfft2aGpq4syZMwgICCjZGyoCp9UTERERERERERHJswpcc9TNzQ19+/Yt8LyOjk6+/8/ZyyQtLU1qrNTU1HznSpJTXdq7d+8C16hRowY6d+6Mv//+G15eXrCxsZHtTRQDB0eJiIiIiIiIiIgIgGgQ9NNBSkm0tLSgoaGB2NhYZGZmQkkp/zBjZmYmYmNjoaqqWmg8AwMDAICFhYXE4znPx8bGyvoWioXT6omIiIiIiIiIiOSZUFhxDxkpKCjAzs4OWVlZCAwMLHA8ICAAQqEQDg4OhcbJOf7+/XuJxyMjIwGINp4uDxwcJSIiIiIiIiIiomJr164dAODSpUsFjuU816FDh0JjtG/fPvf8zMzMfMfS09Nx9+5dAICLi0up2ysJB0eJiIiIiIiIiIjkmTC74h7F0K9fP6iqqmLr1q14+vRp7vNPnjzBtm3boKamhm+//Tb3+aCgILx+/Tp3h3oAaN26NerUqYPAwED8/vvvyMrKEr1loRDLli1DcHAw2rRpg9q1a5eyEyXjmqNERERERERERERUbJaWlpg1axYWLlyIIUOGoEWLFgCAu3fvIjMzE0uXLs03HX7kyJEICQnB4sWL0a9fPwCAoqIiVq1aBTc3N+zfvx/Xrl1D3bp14efnh6CgIJiZmWHhwoXl9h5YOUpEREREREREREQlMnToUGzatAmNGjXCgwcP8PTpUzRp0gQ7d+7EV199JVMMW1tbnDhxAsOHDwcAXL9+HZmZmRg6dCgOHz4MS0vLcms/K0eJiIiIiIiIiIjkWTGnu1e0Tp06oVOnTkWed+XKFanHjIyM8PPPP+Pnn38uy6YViZWjREREREREREREVC2xcpSIiIiIiIiIiEiOZWfLd+VoVcbKUSIiIiIiIiIiIqqWWDlKREREREREREQkz+R8zdGqjJWjREREREREREREVC2xcpSIiIiIiIiIiEiesXK03LBylIiIiIiIiIiIiKolVo4SUbUQhvTKbgKJqfJ7ObnRvP7wym4CiXk93VvZTaA8ZjSdU9lNILE3wqTKbgKJvansBlCu5srGld0EEhOClXxUcbJZOVpu+BcqERERERERERERVUusHCUiIiIiIiIiIpJnrBwtN6wcJSIiIiIiIiIiomqJlaNERERERERERETyTFjZDfh8sXKUiIiIiIiIiIiIqiVWjhIREREREREREckx7lZfflg5SkRERERERERERNUSB0eJiIiIiIiIiIioWuK0eiIiIiIiIiIiInnGafXlhpWjREREREREREREVC2xcpSIiIiIiIiIiEieCSu7AZ8vVo4SERERERERERFRtcTKUSIiIiIiIiIiIjmWzTVHyw0rR4mIiIiIiIiIiKhaYuUoERERERERERGRPOOao+WGlaNERERERERERERULbFylIiIiIiIiIiISI5xzdHyw8pRIiIiIiIiIiIiqpZYOUpEVEoaOpr4yn0gnLu3gJ6xHhJjEvD0+kOc8jyM6JCoSonXeYQrhi38DmtHL8ajK95Sz2v2RSt0HuEKq3o2ECgKEBEYhrunbuLijtPITM8sdtsrm4aOJr5wH4BG3ZtD11gfSTEJeHb9Ic56HkFMCe9FceOpaaujx8Sv4ezaAgYWNZCamILAR/64uuscXvz3WOZrd5/4FfrOGorbR65hz4w/it32qkRbVxvjfxyNzr3aw8jYELHRcbh19Q62rNqJsOCIUsVWUFDA7jObYVnLAp2dvpB63po9S9Ghe1upxyNC38O1Sd9StaU6EAqFGDp+Ot6FhOHG2UOV3Ry5pK6jCVf3/mjYvRl0xHnF9/ojnPc8itgS5KmSxBu7bSbqd3WRGjMuLBoLWv1Q5LUHLRqDNkO74dyaIzi/5kix2y5vNHU1McT9W7Ts0Qr6xvpIiEnAg2veOLT2T0SGRFZKPEUlRaw6swbWdW0wd5AHnt55IvE85w5N8NXYr2HfyAGqaqqICovE3Qt3cWTDYSTGJhS77ZVNHu7F3B3z0bxrc6kxo8KiMKbFyEKva13XBitPr8bfO05h16IdxW53ZVDX0UQP9/5o8ElOuVCKHFXceN9tmwmnInLUr+IcZduyHiYdnC9TW2KCI/Fb28nFfg+VRV1HE13d+8Ope1NoG+sjOSYBftcf4ZLnMcSV8F4UN56CQAEth3VD0wEdYGxnDgCIfBOGB8f+w63d/0CYJXkRTPt2DdDarQesGttBTUcTH+KT8NbbD/9uOY23D14Vu+0kxjVHyw0HR4mISkFDRxNzji2CuZ0lPiSmINg3CEZWxmg3uAuauLbA0sELEOz7tkLjWTnZYMBPQ4u81oDZw9BrwtcAgOiQSHxITIGZrSUGzh6Gll+1xZLB8/EhIUXmtlc2DR1NzDj2G8zEfRfi+xZGViZoM7gznF2bY9XgXxDiG1Su8dR1NPDT8UUwtbVAZnomIt6EQk1LHQ26uKBBFxec9TyKv1cVPWBkUtsMX0wdWOw+qIq0dbWx6+9NqO1gjaTEZLx68RoWVub4+ts+6NyrA77rOwmvXrwucfwfZo9DgyZOiI2OK/Q8+7q2AIDH958iKyurwPGYqMJfTyKeW/bgyfOX0NPVqeymyCV1HU24H1sIUzsLrdV3rAAAIABJREFUpCamINT3LQytTNBycCc0dG2GdYMXIrQYeaqk8czqWAEAAh74IVvCH7aJ0UUPptm1qodW33SRua3yTlNXE0uPrUBN+5pISUzBW99AmFiZotuQ7mjVszXmDJyNt76BFR5v4OTBsK5rU+g5/Sb2h5vHKABAXGQsokIjYVHbEl+P64vWvdrAY8AsRIUWf0CxssjLvajlWAsA4OvtC6Gw4OdCfFR8kded7jkDSspV509udR1NTD22ECbinBLm+xYGeXLK+sELEVbMHFWSeDk5KvCBn8TBt6Q8OSo1MQVv7vkW2o5aje2gqKyEqLel+8K1IqnraOL7Y7/CWNx34b5BMLAyRrPBneDk2gybB/+G8GLei+LGEygKMHzzdNQTD1RHv42AMDMLZvVqoU99Gzh2bISdo5dDmJn/56P7j4PQZbLoC+WU+CREvAqGYU1j1HdtjnrdmuLkgp24s+9SKXuIqGxVnUxNRCSHRi6ZAHM7Szy64o3Nk1cjNTkVSqrKGPG/sWg7sDMmrHPHvB4/Ilso29d8pY1n08gOU7d7QE1LvdDrNO7aFL0mfI2MtHRs/GEVHl66DwDQNzPE5M0/wbqhLYYuGINtP64rXodUoqFLxsPMzhJPrjzA9slrkCbuu2/+9x1aD+yEMevc8VuPH2Veq6ck8YYvmwhTWwsEPHyFrRNXITYsGgDQsFtTjN0wHb2m9Iff7ad4efuZ1OsqKChg+LKJUFFTKV2HVBHzV85CbQdr/HfpFmaPX4CU5BSoqKpgztIZ+GrIF1iy+VcM7DgCQhl/hvIaP2M0xkwdUeR5mloaMK9phqTEZLj1Hl+St1HtZWdn448d+7FtL6tFCzNkyTiY2lng2ZUH2D3ZMzevDPrfGLQY2BFu66ZgSY+ZMuepksRT1VKHoaWoqn1NP9mqrT6lrKaCIYvHQSD4fFbomrR0Cmra18T9y/ewYtIyfEj+AGVVZUxc9D26DOqGmRt+wpRuk2TORWURr5ZjLQz4ofAvyqzr2mD4LDcAwI7ftuPk1uMAAENTQ3hsnQv7Rg6YvHwKFgydJ2NPVD55uBfqWuowqWmClMQUzOo7o9jvQddIDz9vn5c7wFpVDF4yDiZ2Fnh+5QH25MkpA8Q5ZcS6KVhWjBxVkniqWuowEOeotTLkqJBngVg38Bepx12+bovazeogMTIO+93Xy9RuedB/yVgY21ngxRUfHJjsiXRx3/X932g0HdgR366bjNU9fpL5XpQkXsth3VCvqwtSE1Owe9xKvLn9HABQq4k93LbPhEP7Rugwvg+ubjiR+xrHjo3QZXJfZGVk4uQvu3F3v2gQVKAoQKcfvkb36QPx5S8jEeTjj9BngWXXYdVENitHy83n8xsNEVEFM7U1RxPXFkhN+oBt09YhNTkVAJCZloGdszYh9NU7mNvXRJMe0qdklVU8BYEAXdx6YvZfC6FjpFvktToN6wEAOPPH8dyBUQCIDYvGnrlbAADN+7SuMgN0JrbmaOzaHKlJH7Br2jqk5em7fbM2IexVMMzsLdFYxntRkng6NfTQqFszCLOE2D5pTe7AKAA8vngfN/4U/XLYenDnQq/dcaQrbJvWQfqHtGL1QVVkbWeFzr06IDkpBT9PWoiUZFGlcnpaOhZOX4I3fgGo7WCDzr3aFyuuYQ0DrNq5GBNmjJHpfDtx1egbv8BiXYdEoqJjMNXjN2zcsb+ymyLXjG3N0dC1GVKTPmDftA358sqfszYj/FUwTO0t0VDGPFXSeOaONQEA4f4hJX4vvWcOQQ1r088mT1nYWqKlayt8SErBaveV+JD8AQCQkZaB9T+tw7tXQahpb4WWrq0qLJ5AIMDkFVOhoKCAjPQMqed16NsRAoEAD6555w6MAkB0eDTW/rgGANC4nTMMTAxlantlk5d7UauONQDg3SvZK/NyNGrbCKvOrIGDs2OxX1uZjG3N0UCcU/Z/klMOlTBHlSReWeSoHHrmhui/UFRVfWj2FiREVo1ZIDVszeHk2gxpSR9waNoGpOfpuyOztiDiVTBM7C1Rv0ezco3XpK9ouaGrf5zMHRgFgLcPXuHiqsMAAJf++X9HazdGtITRrT0XcgdGAUCYJcRlz2N4fOYOFJUU0WZkj+J0CVG54+AoEZWLzp07w9HREeHh4ZXdlHLT6uv2EAgEeHj5PpLjk/IdyxYKcePwVQBA895tyjWekqoyFpxeiqG/joGishJOrv0LUcHvC71W4OPXeHz1Abz+vlngWLCf6A8BJRVl6NbQk6ntla3F1+0gEAjw5LI3UuKT8x3LFmbjtrjvXHq3Lrd4GjqauHnoMu4cvY7o4ILTF0P93gEQVedKY1TTGF/O+AZRQRG4feSaTG2tynr17wGBQIB/L9xAQlxivmNCoRAnD54FAHT/Svapuy07NMeJWwfRqWd7REZEwfN/G4t8Tc6U+jcv3xSj9QQAN+9644sh3+HKf7dhZKgP9wmjKrtJcqvp120hEAjw7PIDiXnl7uFrAADn3rIN+pQ0nrl4umq4X3AJ3gVg3cQe7Ue6IsDbDy+uPypRDHnTUTzA6HXJC0mffP4KhUJc/kv0B37bPu0qLN7X4/vCvpEDTm49jg9J0pe4MRQPekqaFv7OLwhpqaIBbCNzI5naXtnk5V5YiwdHg/yKNzg6cfEPWHhgEYzMjOB1yQu3zhb8PUteuRSRU7zEOaWxjDmqpPHMSpmj8uo73w3qOpp4ePo2nl1+UOp4FcVZ3HfPLz/ABwl9d//wdQBAQxnvRUnj6ZgaAADCfd8ViBnyNAAAoGfx8fdaBYECrJuJvhR4cvauxLa8uOIDADCvX/hyISSFsAIf1QwHR4mISqh2Y3sAgL/3S4nHX/uIFht3aF6nXOMpqyrDqp4NQvzeYdmQBTi5+q8ir3V81UGsGfU7wt+EFjhmXb82ACAtJRWx72Nlantlsxb33WspfRcg7ju75nXLLV746xAcmLMVe3+SPBhnJe7XyELWuxq6ZDzUNNWw32ML0j+ky9TWqqxBEycAwKP7TyUef+ItWn7AuUUjmWPWdrCGhqY6Th8+h4Edh+PxA+lLGOSwrycaHH39MkDm65DIm8AgpHxIRR/XLjixdxMaOsmW76oj68Z2AIAAbz+JxwN9/AEAtjJ+ZpQ0Xs7gaJhfwT92i6KoooRvlo6HMDMLf87aLPN0TnmXU+Hn6y153cKXPqLPgnrNnCoknrmNOYZM+xYhb0Lw5+oDhV4rKly0iYqNU+0Cx0xrmUJVTVV0XmjxN2+pDPJyL2qVcHDUobEjEmLisWH2OiwavTC3UrUqqCXOKYFScspbcU6pLWOOKmm8j4Ojxc9ReVk3cUBD1+ZIT03Hyd/3lSpWRbMS991bKX0XJP491EbGe1HSePHhMQAAs3oFl4cwsbcEAMSFfJwppaCggL0TVuHYnG2IkHL/VNRFOUlRUVGmthNVFK45SkTlYteuXcjIyICRUdWoVCgJY2tTAEDUO8lVmtHi3U91a+hDVUMNaSmp5RIvMy0TW6d54u6pG1J3jJRV3dYNMHLJBADAhe2nkZkmfSqfPKkh7rvoIvtOD6oaqkhLKXwqaFnGU9VQRQc3V7Qe1Anpqem4vP20xPPaftMFddo0wK2/rsL35hPU69C40DZ+DmraWAAAQoIKDtIDQFiwqPLcyNgQ6hrq+JBS9B+Zz3ye45tuo+H3TPadUO3q2IqvF4GBbl+jebum0NbVxvuwSFw5cw3X/rkhc6zqpn49RxzesQ51HGwruylyz6iIvBIrzis6NfSgoqGK9CLyVEnjmTlaiY9Hoc2wbnBoXR8aupqIC4/Go/NeeHrRW+o1e04dAFN7S5xd9RciymDKq7wwq2UGAIh4J3m2y3vxbAx9Y32oaaghtYjP89LGm7R8KpRVlLFh1jpkFPE5fPXIZXw55is0bueM3qO/xOkdpwAAuoa6mLLCHQBw55/biImILiyM3JCXe5EzOBoZ8h6uw3qiUdvG0NTVQnRYFG6fuwWvi5Kr4k5sPob7V+4hOSFZ4nF5lpNTYqTklJgS5qjixjPPk6Nai3OUuq4m4sOj8biIHJVXH49vAQA391xAXGjV+Pefw9DaBAAQ+07yRmo5O8try3gvShrv3sGrsGpsh44T+iDw/ksE3H0BADB3skb3GYMAAHf2XcyNI8wS4uW1wmcUOHUXbe4U8ar0lcFEZYmDo0RULqysrCq7CeVO20C0G3PSJ9OBcyTHfZy+pWWgXeTgaEnjZaSl4/bxf2VvuARTts2GdUNb6BnrIzMjE2c3HscJGXZVlxda4r7L20d5peR5XtNAB2kphe/aWxbxrBrUxvBlE1CjlilUNdQQHRyJfbM2IfRlwW/S9UwN0M9jOOIj43D0f3sKbdvnRN9QtGxDfIzknbHjYz8+r2eoK9PgqLQq1MLY1RFN7fp17VxoamnkO9ZnUE/cuHwbP42dJ9P1qxvnBvUquwlVxse8IkuO10GMzHmqePHMHEXVPt+umFhg877m/Tvg+VUf7PxhTYE/ti2drNF5XG+E+gbh4h8nC21bVaNjKFqrOzFWcl/m/VzWMdApckCuNPF6j+oDp+ZOOL//HJ7dLTqfvXv1DkvG/47vF0/C2F/GYcD3AxEbGQsLWwsoqyjj+vFr+MOj6mxCIy/3Imcjpakr3aH+yedC5wFdcP/KfSz/fkmB618/ca3Q9sizonLKp7/7pJcyR0mLZyrOUd9IyFHNxDlqt4QclVctZzvUblYHmWkZuLbtTKHtlEea4r5LkanvtIscHC1pPK+DV6BpqIPOk77GuD9/RkzQewgzs2BkY4aM1HScX34IN3ack/l9OXRoBIf2otlAPierzpIT8oQbMpUfTqsnolzr1q2Do6MjLl26hL///ht9+vRBw4YN0aVLFyxbtgzx8fG55x47dgyOjo7Yu3cvli1bBhcXF7i4uGDBggUApK85mpCQgLVr16JXr15o1KgROnTogClTpuDly4LTl+Pj47F8+XJ0794dDRo0QMuWLTFlyhT4+kqeGlXRcjYrykiVPP05Pc/zKqpFb2xU1vFkpaCggPodGkPPWB8AoKSshFr1a8PCseoMcOf0XXoZ34vSxDOzt4RlXWuoaqgBADR0NVG/cxMoqRT8XvLb38dBXUcDh+ZvR0oVrDYpqZzpnjlr4n0q7/Nq4nPLmqmFCXT0RH80BAeGYOLgaWhVuws61HHF/KmLEBcTj7ZdWuHXtXPK5fpUfSgXkePzPq+sqlwu8fTNDaGhqwUAiAqKwB/Df8fMum7waDQG+2dsRHJsIup1csa3yyfmiyVQFOCb5ROgIBDg4OwtEGZmFdm+qqRYOV+GjQpLGs/Y0hjDfhqB6PBo7P59Z9ENF4uLjEXAc9GyIPrG+qjtVBuqaqrISM9AdEQ0FBQUZI5V2eThXhiZ14CW+Ock7G04Fgydh0GO/TG0wRCsnb4aCbEJaNq5KaasdJfhHVUd8pCj9PLkqOigCGwa/jtm1XXD3EZjcCBPjvrmkxz1qXZurgAA71M3kVBFlojKq3h9V/TPQWniRQWEIfZdJAQCAYysTWFsZwGBogBpSR/yDaoWxai2GQav+h4A8ObuCzy/cL+IVxBVLFaOElEBR44cwdWrV2Fra4uOHTvCx8cH27dvx3///Ye9e/dCT+/jJj379u1DcHAw2rZti6ioKNjYSF9cOywsDCNHjkRgYCBMTEzQoUMHRERE4J9//sHVq1exZ88eODs7AwBCQ0MxYsQIvHv3DhYWFmjfvj2io6Nx4cIFXL16FZ6enujUqVO590VhhFlCCApZL0cg+PjHSDaKXpetrOPJTEEBHh0nITE6ARaOVhgwexic2jXCrEO/4n9feyAiIKzsrlVORH0n/fs+BcHHY7Lfi9LFe379IaY1cIOSshLqtW+MAfPc0GXMFzC2McMfo5fknte8bzs06NwED//xgs85ydP0PlfCLGGha07l+zefXT5rGwqFQuz+4wB09bSx7Oe1udWhqSmp+PvQWbzxC8Du05vRrU9nNGhyEE9kWMOUSJLi5ZXyiScUZuPy5r+hqaeFo7/uyq0OSv+QBq8j1xH+KhjTjv0G5y9a4uo2u9w1Abt+/zUs61nj2vazePvQX4bWVS1F5SKFfLmo/OL9sHQy1DXVsWrKCqQkSt+EKS/n9k0wZ9vPECgKsGfpblz+6yKS4pPg6FwHo+d/h34T+qOOSx0s+HYe0tPkfy1rebgX2UIhjm86Ci09bWz7ZUtudWjahzRcOXIZ7169w9ITy9Hmi7ZwcHaEn4/k9cmrmuLklPKKly3MxpXNf0NDTwvHP8lR945cR8SrYEw99hsaf9ES1/LkqLy0DHXQqFdLAMC1rZKXMpJ38vB5AQBd3fujm/sAJEbGY/+ktfC9+hACgQLqdHJGn/kj0G/RGNSwMcXp/xW+pqtRbTOM2z8XWoY6SHgfi4NTq041u9xh5Wi5YeUoERVw9epVjB49GmfOnIGnpycuXryIDh06wM/PD56envnODQwMhKenJzZv3oyjR49ixIgRUuP++uuvCAwMxMCBA3H58mV4enri0KFDWLJkCdLT0zFnzsfKrBkzZuDdu3cYO3YsLl68iA0bNuDgwYPYvn07FBQUMHPmTERHV+76QWkfRL+wSfvGVknl47fq0r6pLc94ssoWChEdEoX01HQEPPLHiqELEfjkNTR1tdBn0oAyu055Sv8g+sNFWiWDcp5qTVn6riziJUYnIDXxA5JiEuF14j+sH/k7sjKz0KBzEzi2Em38oG2ki4HzRyIlIRkH520vsl2fm5yBSGnVt8oqH5+XVl1aWu/DIrFm4Qb8On2JxGnzz3xe4O6/ouqG9t3blEsbqHr4mFek5fiS5inZ48WHx+DU4v34c9ZmidMwgx69xsubTwAA9buI1oUztbdEj0l9Ef3uPc6sqDrLrRRHzuevitSc//H5dBlyUUnidfumBxq3c8aN0/9JXc/yU4pKipi4+AeoqKlg/4q9OLrhMOIi45CZnolnd5/i50EeCAsMRb1mTug+1FWmmJVNHu5FdHg0dv2+E+t/8pQ4bf/VIz88viFaV7F51+ZFtqGqyMkpSmWco4oTLz48Bn8v3o9DheQoP3GOchLnqE85dXWBkooSQp4HlsmO95XhY99J/ndb8nshe7watuboMrkfhFlC7Bm/Eo9P30F6cipSEz/g4alb2Db8d2RlZKLdd1/ArK702WaWDWtj4l8LoGtmiOSYRGwfsSR3oyciecLKUSIqwMHBATNnzsydhqWmpobFixejQ4cOOH78OGbPnp17roWFBbp06ZL7/wIp3ypHRETg6tWrqFGjBubPnw9l5Y8fzn379sXp06eRnJyMqKgoBAcHw9vbG05OTvjxxx/zTQdr06YNhg4dih07duDIkSMYP358Wb99mSXFJkJTVwuaeloSj2vpf3w+MVrymorlGa+ksoVC/LP1FMZ7ToNDi6qxnmBSbBI0Cuk7TX3t3P+W7V6UbTwACHryBi9vPUG99o1h37IeXt5+hiELx0BLXxv7PTYjvgpO+yqKY317zFo0TeKxpXNXIy42ATp6OtDV15F4jp7Bx+djo+PKpY2yePnsFVp3agEzS9NKawNVfcnivKIhQ15JkiGvlHW8HCHP36Ju+0YwsDCCgkAB3yyfACVVZRyasw3pH8rnS4ryZuNUG+MWSv59Ycv8zUiMTYCWrha09LQlnqOdpy/jZejL4sYzMDHEyDmjkBiXiC3zNxcZP4ddQ3uY1DRBWmoaTm49UeD4h+QP+HvHKYxbOAFtvmiTu1lTZZL3eyGrN8/fwLlDE9SwMJb5NfKuKuWoOu0bQd9C8qavTl1Fg6YPT9+ROaa8SSmi7zTy9F2yDH1XknhOPZpBoCiA/82nCHpQcJPLsBdBeH7JGw16tkCDXi0R9iKowDmOHRtj2B9ToaKhhsTIOGwb9jvCJay9T7LjmqPlh4OjRFRAz549CwxyGhoawtnZGV5eXnjy5Enu83Xq1JEp5t27oiqIdu3aQUWl4DfI27d/rJo7evQoAKB58+YS18lq164dduzYAS8vr0odHA1/HQoTazMYWtaQeNzQQvR8XESM1LWuyjNeYfSM9WFgboQ3DyXv6B0RIForVreGbqmuU1EiXofA2NpUat8Z5Ok7Wb5hL0k8RWVFGNU0RlamEFFBERJf9z4gHPXaA9pGoqUpmoinfQ1dPB5DF0v+t9xqQEe0GtAR0cHv8XPbSUW2XZ5o6WjBuUUjqccC/d/CysYS5jUlDzrmDEZGhkchtZwHZZRVlJGRLnlX6Jw8lJFR+K7RRIV5/zoUNaxNYSA1r4j+0I+XMU+VJp6iihKy0jMlvi7nUzczIxP65kawbmwHAPh+r/R1d3u6D0BP9wF4dec51g9ZWGTbK5qmtibqNXOSeiz4dTDMrM1hbCl5oCtnACwmIlqmasXixmvcu23uGpd7Hkifnrror8UAgD9XH8DB1QdgLI4TERSOLCnrwIa+CQWA3HMrm7zfi7yUVJSQKe3nRPy5kJkh+XhVVFRO0S/jHFVYPFlyVJaEvldUUYJDm/oAgIdnbhfZRnkV+ToURtam0C+i7xIiYmW6FyWJl/Pc+9ehUuNGif9ekDRQ3firNhi0YgIUlZUQ/TYC24b/jpig90W2laiycFo9ERVQq1Ytic+bmooGKt6///jBpqsr2+BZZGRkvhiFCQsTrXG5c+dOODo6FniMGjUKAAps9lTRAp+8BgDYOjtIPF5b/Ly0AcjyjieNiY0ZVnltxZxji6BtIKViz9QAABAXUTWqGd8+eQMAsJHSdzbO9gCAQBnXyitJvN7ug/DLlbUYtGCk1Lg5/RofIZpO5H/PV+ojNky0bERCZBz87/ki8NFrmdouT7xv+cDZtI3Eh/ctHzx/JNpcrYFLfYmvb+Ai+gO6PNf5nDJ3ArzeXcea3UulnuPoJLrfAa/ells76PMXJM4r1s52Eo/XEucVWdf0LEm8PrO+wapX+zB220ypcS3qWQMAIvxDkJGWjjf3fKU+kmJEFUaxIVF4c88XYb4FK4fkwdM7T/CVVW+Jj6d3nsD/saiPHJtI/sI353k/Hz+ZrlfceHFRcXh+75nUR84AXKBvIJ7fe4bIENHvVClJonVJ9Yz0pG66VEM8GJJzbmWT93sBACNmu+Ho6xP4eft8qXFt6onW2A/2/3yq4N4VkVOsi5mjShKv96xvsOLVPnwnY44qcKxuLahqqCEuLBpRbyV/UV0VBIv7zkrcR5/KeT5IxntRknipiaKlhnSM9SS+BgD0xIOiqUn5lyVy6tEMg1ZOhKKyEkKfB+KPAQs4MFpGsoUV96huWDlKRAVImxqfsyFK3oXtpZ37qaws2Xe2FQpF2bhx48aoWbOm1PMMDAxkjlkevM/fxVfug+DcrRk0dbWQHP9xx0YFgQBtB3QEANw+/m+lxJPmfWA4YkKjYGBuhHZDuuDsH8cLnNN5uGhtskdXvEt1rYry8Pxd9HYfiEbdmkFDVxMp8R93fFcQKKCVuO+8jv9XbvFe3n4K1x/6om470XTUmJCofDGNrEzg1LExAODplQcAgJUDpf/h1W/OcHQb1wfPrj/Enhl/yNTuqubKmeuYMGMMOrq2g46eNhLiEnOPCQQCfDm4FwDg7NEL5daGl09fQVlZCS6tGsPM0gRhwfn/mHKoZ4fm7VyQlZWFy6evlVs76PP3+LwXeroPQINuzaChu6dAXmkxoAMA4P7xG+UWL/h5IBSVlWDXoi70LYwQ+0meMq9rBYc29SHMEuLROS8kRsZj7cBfpLZh1B/T0LhXC9w5fA3n1xyRqd3y6Pa5W/hm2rdo0b0ltHS1kJTn81cgEKDLQNHyQdeOXy2XeA+ueePBNemft3sf7oeOgS62zt+Mp3c+zt7x9X6BjLQM6Bjoonm3Frh7oeA04o59RZtXPr3zVKa2V7bKvhcAEPAsAErKSnBqUR81LGrkDkbnsK5rg4ZtGiErKwu3zt0s8XuVN4/Pe8HVfQDqS8kpzcQ5xbsYOaq48ULEOcq2kBxlL85Rj895FbimhZM1ACD4aYBsb1pOPT1/D93cB8CpW1Oo62riwyd95zKgPQDAR8Z7UZJ4b+48R8cJfeDQviF0TPSR8EnBhKahDhzaNwQABNx9kfu8ib0lvlk7CYpKigh66I/tIxYjNUE+vpwhKgwrR4mogIgIyd+0hoaKplXIUv35KSMj0TeL0qo97927h1OnTiEiIgI1aoiqHDp06IAVK1ZIfeTdwKkyBPu+xaPL3tDQ0cT3G3/MXZ9SSVUZo5ZOgLl9TYS9DsGDf/L/8qalrw1TW3PUsDIpk3jFlZ2djbMbRWuTfTllAFp8+XGTGVUNNYz4fRzqt2+EpNjE3PPkXYhvEJ5c9oa6jgbGfdJ3w5ZOgJm9JcJfh+DhJ32nqa8NE1tzGH1yL0oSz/fGEwQ+9IeSihLGbfwRNWp9jGnuWBM/7JwNZVUV3P/7JoKq+C/tZeXVi9f49+JNaOtoYfm2Rblrj6qoqmD+qtmo7WCDgFdvceXs9Xyv0zPQhbWdFSxrWZS6DVfO/YuggGCoqqli+bZFMLcyyz1Wr3EdrNmzFIqKiji8+wRCgqRPLSMqSqhvEJ5dfgB1HQ2M2jgtd+03JVVlfLN0PEztLRHxOgSP/7mX73Wa+towtjWH4Sd5qiTxHv9zD5GB4VBWVcHoP6blm+5q1bA2xm6dCYGiADf2XUT0u+pT5fPWNxD3LntBU0cTszZ5QFu8PqWyqjImLZuMmvZWCPZ/hzvn80/T1dbXgYWtJUxrmZZJvOJKTkjG2T1nAIh2um/S8eMGNarqqvh+ySQ4taiP1JRUnNxa8ItQeSQP9+L2P7cQFhgKFTUVzNrkAeOaH3/27BraY+72eVBUVMT5vecQIWUZnaooLE9OGflJThmcJ6c8kTFHlSRe3hw18pMcVbNhbYwR56ibUnKUeV3R7LfwV1VzI6Yc4b5BeHH5AdR0NDCRy6WnAAAgAElEQVTsk74bsHQcTOwt8f51CJ59ci809LVRw9YcBlbGpY738tpDBD9+AxUNNYzcPhNGtT/+fqRvaYQRm6dDU18b4S/f4en5j78P91v8HZTVVJAQEYtdY5ZzYLSMsXK0/LBylIgK+PfffzFy5Mh8z0VGRuLx48fQ19eHk5MT/P1lm8aRw9nZGQBw+/ZtZGZmQkkpf/rx9PSEl5cXDh8+jKZNm+a2Y+LEiQWmih08eBD79u1Dz5498cMPPxTz3ZWtPXM3w8Pxf6jbugFW3NqEMP8QGFkZQ0tPGykJyVg/blluxW2OLm498ZX7IEQFv8dPbb8vdbySuLL3PGrWs0aHb7pivOc0DJ7rhtjwGJjZWUBNUx1JsYlYN3Yp4iKqzm6SB+ZuxQzHmnBsXR+Lbv2BcP8QGFmZQFNPCykJydg8bkWBvuvo5ore7gMlrudZknhbf1gF9wPzUauhLRZcXoOIN6FQUFCAia05BAIBfG8+wb5Zm8q9L6qSRT8th92p2mje1gXnvI8h4NVbWFiZQ1dfB4nxifhxtEeBfh48uj8mzBiD0Hdh+KLZgFJdPyM9AzPHzMXGv9bAqXFdnLh5EEFv3kEgEMDGXvRH1vULN7BygWeprkMEAIfmbsNUx1/h0Lo+frm1HhH+ITDMk1e2j1tZ4N97O7ce6Ok+ANHBkVjYdnKp4mWlZ2LHxFX4fu9cWDWyxc9XV+N9QBgEigKY2Iq+bHh6yRsn/ren/DtDzmz02ACro7XQsE0jbLuzE8H+72BiZQptPW0kxSdh8bhFBe7NFyN745tp3yLiXQTGtRlT6nglsWfJLpjXNkezLs2xYM+viAx5j8S4JFjYWkBVTRWpKalYMWkZwt9W7lJExVHZ9yIzPRNLxi/Gr/t/g30jB2y8thmhASEQCASwtBPNaPK65IUdv20r/86oYIfnboOZ46+wb10f82+tx3v/EBiIc8qHhGTskJCj2rr1gKv7AMQER+K3T3JUceNlpWdi18RVmCDOUXOurkZkQBgU8uSoZ5e8cVJKjsqZAp63MrKqOj53O0wca8KutRM8bq3De/9QGFgZQ0Pcd3vHrSpwL1q7dUc38b1Y2nZKqePtnbgaY/fNgUV9G/x4aQUiX4dCQaAAI2szCBQFiA6KwO6xKyDMEo2kWTnbwbqpIwDRBq/DN0nelBMAEt/HYf8Pa8uiq4jKBCtHiaiAmzdv4q+//sr9/5SUFMyePRsZGRkYNmxYvmn1srKxsUGbNm0QFhaGpUuX5ptmf+LECXh5ecHGxgYNGjRAy5YtUadOHfj4+GD16tXIzPy44Prz58+xevVqvHr1Co6OjqV7o2UgNjwGv/b+CRd3nkFiTAIs61hBmCnEnZP/YeGXsxD2uuB6SBUZrzC7PTbhj+9X4sWtJ1BRV4VlnVqIfx+HC9tPY36P6Xh137fMrlUR4sJjsLj3bFzZeRZJMQmwqFMLwsws3Dt5A0u+9EB4MfuuJPFiQqKwuM9snFt3FO8Dw1Cjlgn0TA3wxtsP+2Zvhufw/yEtpWru9lxe3odF4tvuo3Fg61+IjY6DfV1bZGVl4dyxCxjm+l2FrPPp99wfgzqNwL5NBxH2Lgw1rS1gZGyAB3ceYYH7IriPmPVZbbpBlSc+PAYrenvg+s5zSIpJhLk4r3ifvIlVX85FRCEbX5RVvNAXQVja8ydc3XYGMcGRqFHLFNo19PDayxcHZm7E1u+WIytD9qVwPhfR4dH48Qt3/L3jFOKj41GrjjWyMrNw/cQ1zOgzHcH+xatEK+t40mRmZGLR6N+wdvpqPL3zBOpaGqhpXxNxkXG48Oc/mNZzCu5dKt2Mk4omD/ci8EUApvaYhJNbT+B98HuY1TKHXg19PPN6Bs8f12DR6IWf5edCfHgMVvb2wL87zyE5JhFmn+SUwjbnKat4oS+CsLznT7gmzlFGtUyhU0MPb7x88efMjdhWSI7SFFcGf0is+tWK8eExWNd7Dm6I87tpHSsIM7Pgc/Im1n35c4nuRXHjxYVEwbPPXFxYdRjhL99B37IG9MyN8N4/BJfWHoVn7zn51hLNGRgFAF0zQ9g0qyP1YdnItuSdU51lK1Tco5pRyC6LryyJ6LOwbt06rF+/HqampggPD0eDBg1gbm4Ob29vREVFoVWrVtiyZQtUVFRw7NgxeHh4YMCAAVi0aFGBWJ07d0ZISAiuX7+eOw0/NDQUQ4cORWhoKCwtLeHk5ISQkBA8ffoU6urqOHjwIOrUES2M//r1a7i5uSEyMhKmpqaoV68ekpKScP/+fQiFQgwfPhw///yzzO9ttHXpqsuo7Kjyezm5cSe17AbbqXS8nu6t7CZQHjOaVu6yLfRRoDCp6JOIqpnaAq3KbgKJqaD6DSLJs6WBf1Z2E8pVRMeOFXYtk2vXKuxa8oDT6omogMGDB8PAwAA7d+7EtWvXULNmTYwePRojRoyAsrJyieOam5vj6NGj2Lx5My5duoQrV65AU1MTrq6umDRpEuztP+6gaGtrixMnTmDr1q24evUqbty4AW1tbTRt2hTDhg1D9+7dy+KtEhEREREREcm96rgWaEVh5SgR5cqpHJ06dSq+//77ol9QhbByVH6wclR+sHJUfrByVL6wclR+sHKUqCBWjsoPVo7Kl8+9cjS8fccKu5bpv9cq7FrygJWjREREREREREREcixbyMH48sLyHSIiIiIiIiIiIqqWODhKRERERERERERE1RKn1RNRrsmTJ2Py5MmV3QwiIiIiIiIiyoMbMpUfVo4SERERERERERFRtcTKUSIiIiIiIiIiIjmWnc0NmcoLK0eJiIiIiIiIiIioWmLlKBERERERERERkRzjmqPlh5WjREREREREREREVC2xcpSIiIiIiIiIiEiOZQu55mh5YeUoERERERERERERVUusHCUiIiIiIiIiIpJj2dmV3YLPFytHiYiIiIiIiIiIqFpi5SgREREREREREZEc45qj5YeVo0RERERERERERFQtsXKUiIiIiIiIiIhIjrFytPywcpSIiIiIiIiIiIiqJVaOEhERERERERERyTHuVl9+WDlKREREREREREREJXbr1i2MGDECLVq0QJMmTTB8+HD8+++/pYr53XffwdHREXfv3i2jVkrGwVEiIiIiIiIiIiIqkWPHjmHUqFHw8fFBw4YN4ezsDB8fH4wdOxaHDh0qUcwDBw7gv//+K+OWSsZp9URULaRnCyu7CSSmrMCFxOWFsbJOZTeBxGY0nVPZTaA8Vtz/vbKbQGLdG4+v7CaQWHzWh8puAol1VdKr7CYQUSWQ1w2ZIiIisGDBAmhra+PAgQNwcHAAADx+/BijRo3CokWL0LFjR5iYmMgc8+3bt1i+fHl5NbkAVo4SERERERERERFRse3fvx/p6ekYOXJk7sAoADRs2BBjx45FWlpasapHs7KyMGvWLCgrK+eLV544OEpERERERERERCTHsrMVKuxRHDlT37t27VrgWM5zxVl7dNu2bfDx8cG8efNgaGhYrLaUFAdHiYiIiIiIiIiIqFiys7Ph7+8PgUCA2rVrFzhubW0NgUAAf39/ZGdnFxnP19cX69atQ48ePdCnT5/yaLJEXHOUiIiIiIiIiIhIjsnjNhrx8fFIT0+HgYEBVFRUChxXUlKCvr4+oqOjkZycDC0tLamx0tPTMXPmTOjo6OCXX34px1YXxMFRIiIiIiIiIiIiAgAkJCQgISGhwPM6OjrQ0fm4qeuHD6LN+tTV1aXGUlNTA4AiB0fXrl0LPz8/bNiwAQYGBiVteolwcJSIiIiIiIiIiEiOCYu5Fmhp7N69G+vXry/w/KRJkzB58uTc/xcIZF+ts7Bp9d7e3tixYwe+/PJLiWuXljcOjhIREREREREREREAwM3NDX379i3wfN6qUQDQ0NAAAKSlpUmNlZqamu/cT6WkpGD27NmoUaMG5s2bV9ImlwoHR4mIiIiIiIiIiORYcXeRL41Pp89Lo6WlBQ0NDcTGxiIzMxNKSvmHGTMzMxEbGwtVVVWp8f78808EBQXB0dERCxcuzHfM398fALBp0yYcPnwYQ4YMQdOmTUv4rqTj4CgREREREREREREVi4KCAuzs7PD48WMEBgbCzs4u3/GAgAAIhUI4ODhIjZGSkgIAePnyJV6+fCnxnFu3bgEAWrduzcFRIiIiIiIiIiKi6iZbWHGVo8XRrl07PH78GJcuXSowOHrp0iUAQIcOHaS+fvLkyfnWMc1r5MiRuH37Nvbs2YMWLVqUXaM/IfvKqURERERERERERERi/fr1g6qqKrZu3YqnT5/mPv/kyRNs27YNampq+Pbbb3OfDwoKwuvXr5GYmFgZzZWIlaNERERERERERERyrJDN3iuVpaUlZs2ahYULF2LIkCG5FZ53795FZmYmli5dCkNDw9zzR44ciZCQECxevBj9+vWrrGbnw8FRIiIiIiIiIiIiKpGhQ4fC3Nwc27Ztw4MHD6CiooImTZpg4sSJaNWqVWU3r0gcHCUiIiIiIiIiIpJj8rrmaI5OnTqhU6dORZ535coVmWPu2rWrFC2SHdccJSIiIiIiIiIiomqJg6NERERERERERERULXFaPRERERERERERkRwTZsv3tPqqjJWjREREREREREREVC2xcpSIiIiIiIiIiEiOZbNytNxwcJSIqAQ0dDTRz30wmvZoAT1jPSTEJODxdR8cX3sY0SGRFRavbb+O6ObWEzXrWCEjLRNBzwNwbtvfeHDpntTXNO7sAtcxvWHTwA4KCkCofwiuHryIG0evISszK9+5q29sQo2axjK9h0WD5+HFnWeyveFKoKGjid7uA9G4e3PoGusjMSYBz64/xBnPw4gJiaqQeGraGnCd+DWauLaAgUUNfEhMQeAjf1zZdRYv/ntc2rco17R0tTDMfShau7aCgbEB4mPicf+aN/avOYD3Ie/LNd6waUMxfPowmeJeOHwRK6evKvScQd8PxBiP0TKdKy/UdTTh6t4fDbs3g46xPpJiEuB7/RHOex5FbAn+/Zck3thtM1G/q4vUmHFh0VjQ6ocirz1o0Ri0GdoN59Ycwfk1R4rd9upEKBRi6PjpeBcShhtnD1V2c+Selq4W3KYNR1vXNjA0NkBcTDzuXbuHPav3IaKEeaq48dTU1TBowgB06tMRZlamiI+Jx/MHvvjzj0Pwe+wn8TUDxw3A9/PHF9qWoW3dEBoYWuz3II+0dbUx/sdR6NSzPYyMDREb/X/27ju+pvsN4PgnN3sPRHYi295qj5AQo0at6q9GSwdqdFBUh1WzqNmtihZFValdq/ZeCYJIZCEhe5Cb3x83CWnuTW4SkYTn/Xrl1TrjOd/7Peeee+5zv+MBh/85xnfzfyLqdkyJYuvo6LDir29wcnOgfc2uGrdb8PMsWge00Lg+JvIOgQ17lags5ZGhpQlNxvTCvVMjTG2tSI1L4Na+85xYsInEiNiSBdfRoc/mz7B0rcr3dd8tcNMqtd1o+G5XHJr4YmRtRsq9eEL3nOX4gk2k3HlQsnJUEHIuhHi6JDkqhBBFZGJhymebvsTR04nUxBTCgm9h61KVtv060LhTU6b1nUx48K1Sj9dv/P/oNrwXSqWSiKvh6BvqU71ZLao3q8Xv837lj6/Xa9wHIP5ePLERd3HydWHY7BE07daSBW/NIj0lLXf7G+dDiIvW/IBVxdkWG7tKZKRlEBdVwgexUmRiYcq4jdOwz67jiOBbVHapSst+ftTv1IR5/T4jIjisVOMZW5jw8aYZ2Hk48ijjETE3IjEyM6ZO+4bUad+QrV//zp9fPZ/JCzNLM+ZvmoeLlwvJiSncDL6JvYs9nfp3pEWn5nzUZxw3g0NLLd6dyLtcPK45cW9obIhXbU8Aom5FFXhsJ3dH/jf2Na3LWh4YW5gyZuMU7DwdSUtMITL4FpVcqtK0XzvqdGrMon5TiCzC9V/cePa+LgDcPH2VrExlvvWJsQmFHtuzWQ2avdpe67K+6L7+diUXLl/BytKirItS7plZmrH4j4W4ermQnJjMjaCb2Lva0bl/IK06tWRMnw+4EXSzVONZVbJi7m+z8KjuDkDoVdVnf9uurWkV2IJFk5eweeWWfMdy962Wu33ig0S15clIS9e67OWZuaU5K7Yso5qXG0mJyVwLuo6jiwM9BnTFr3MbhvUaybWg68WOP+LjYdRuUIP7cQUndTyzz9H5kxfJVOa/n92/d7/YZSivDC1N6L3pM2y8HMlITOVecBiWLrbU7N8Wj06N2dhnGrHB4cWO32xcH+zqe5Iap/4azlGjXxvazXwDhZ4uyTEPuH89EmsPB2q/3h73gIb83usLEsKK3lChIpFz8eLKyirrEjy/JDkqhCgXsrKy0NGpGN0Ehs4ajqOnE2f3nmLxyHmkJaehb6jPkGlv07qvHyMXv8/HAWPJUvOw/LTi1fNrSLfhvUi8n8icgVO5cT4EgAb+jRm5+AN6je3HpcMXuHYyOHefl7o0z02Mrp+7hj+XbCRLqcTEwpThC8dQz68hb858h6WjFuTus2j4XI3lNrM2Z+ZO1bYrJn9LzK1o7SvxGfvfzHew93Tiwt7TfPfefNKT09Az1Oe1acNo3qcdQxeNZUrHD7Q+Z8WJN2j2cOw8HLl59hrfvDuP+9nJ5Lr+jXhryQd0GdWbK0cuceXIxVKpg7I0ZtZoXLxcOLbnOF+OmElqcir6hvqMmjGSgL4BTFgygXf830WpZf0XNd7OtTvZuXan5nizR+NV25Nzh8/x2yLNCWodHR3enzsWQyPDolVAGes/8y3sPB25tPc0P7/3de712nfam7zUpy2DFo1iZsePyFJq98RdnHiGZsZUcqpCWmIKC3p9WqzXoW9kQP8v30KhkCHzC5OVlcXSH1fz/S/P5w8upeHD2WNx9XLh6J5jTBk+Pfe+MnbGaAL7dWTykkm82eEtre9TxYk3fv5HeFR3JzYmlslDPyfojOozvGbDGkz78QvGzBhFRGgkJw+cynMs9+qq5OiXo2dx9cK1p1Mh5dTkueOo5uXGwd2HmfDOZ6Qkp2JgaMDEmR/wcv8ufLn8c/q2G6T1eXrS2x+8wRujBha6namZCQ7O9iQlJjO42zvFeRkVkt+sodh4ORK65yzbRyzmYXIauob6tJ0xhBp9W9NpyUjW+H+s9WfJk5qM7UWjkS8Xul2V2m60m/UmOjpw4PNfOPfjTsjKwrSqFYHLR2HfyBu/mW/yx4CZxXmJFYacCyGePnm6FOXG7du38fHxwd/fv0Rx/Pz88PHxITq6/CZqyqONGzfi4+PDpEmTih2jOOcwPT2dxYsX8/333xf7uM+SvYcjjTq9RGpSKsvGLCQtWdXK8mH6Q74bv5SIa+E4ejnTqNNLpRrv5ZGvALB25i+5iVGA07tOsGnhOhQKBS8Pz9udq8eoPgDs+203mxf9npu4S0lIZunoBSQ9SKR599a41/XUquxvznwXK1trjv99hAPr9mq1T1mo6uFA/U5NSEtK5cexi0jPruNH6Q9ZOX45kddu4+DlRP2OTUotnkUVK+r6N0aZqeS7kQtyE6MA53ad5OCvuwFo0c/vab3scsPZw4kWgc1JSUphzpg5pCanAqprfP5HC7l1NQxXbxead2peJvGaBTQl8NVOJMUnMWfM3AK/UHcf8jI1G9ckLTVN4zblja2HA3U6NSYtKZVVY5fkuV5/Hf8N0dduY+flRB0tr//ixnPwcQYgOiSi2K+l60f9qeJmR0bq89ECrrTci41j9ISpLPtxdVkXpcJw9nCmVWBLUpJSmDF6Vp77ytyPviL06i3cvF1pGai5G3VJ43nV8qSpn+p98/k7U3MTowCXTl1m+dRvARjxWd5knEKhwNXLBaVSya1r2rcAr4jcPF3w69yG5KQUJr83lZTses1Iz2DKB7O4cfUm7t7VaBfYukhxK1WxYd5PM3j7wze02t6zugcAN6+GFuk4FZm1hz0egY3ISEpl55hlPMy+92emP2TvR98RdzUCG29H3Ds1KlJckyqWdPl+DC+9r90QBC0/GYBCV8GppX9x7ocduc3okmMesHP0MrKUSpxb1cLcsVLRXmAFIufixabM0nlmfy8aSY4KIcrUTz/9xKJFi0hLqxjJhhY9W6NQKDiz5wTJ8Ul51mUplRxYr0oSNu2q3Reo4sSr6mqHd0NfHmU85Mjmg/li7l+7B4DarepiYmECgJWtNc6+rgBs+25zvn1SEpI5nB2rRY/Cv1Q06NCYxp2akpKQzMpPy3diu2kPVR2f33OKFDV1fGT9PwA06qpdMq048UwsTDm0dg9HNuwj9nb+ceYir6q+0NrYP38PkH69/FAoFBzbfYzEB3nrS6lUsnOdqkVnm27afZl9mvEMjAwYMU01xuVPs1dwN0rz2Jt2LnYMHjeIqFtR7Fq/W6uylgeNerREoVBwac9pUuKT86zLUmZxbP0+AOp3bVaq8Ryyu9RHX71djFcBbg28aD24EzdPXSVo/7lixXgR/HvsFF36D2XvwSNUrmTNmHeGlHWRKgT/Xu1RKBQc2X00X7d0pVLJ9nU7AGjXrW2pxWvcRpXICDoTxMUT+YcB2blhN8mJybj5uOFZ0yN3uWM1RwyNDIkKiyb9Oek6r0nnVzqiUCg4sPNfEtTU65+/bQMgoLv2Q280bdOYTf/+SrtOrbkbc4+vpy8vdJ+cLvXXr2g/zEJF59OrBToKBTd3nyH9Qf57/+V1BwDw6tZU65jOrWvx+v65uHdsRHLMAw5/WXBLd1M7Gxyb+pKRmMrJxX/mW58QdpeDX6xm/+SfUf5nDP3niZwLIUqHdKsX5UbVqlXZtm0bBgYGJYqzYsUKHj58SOXKlZ9SyV4M/v7+1K1bFwuLZzsuWXG6PZUlj3reAFw7dUXt+pDTqskSfBpXL7V4HvVV+4QF3yJdTQuqhNh4Ym5FU9XVDs/6Ppzff4ZKDqr3Q3pqOpEaWm7F3FSNtehez6vAMusoFPT7WDW5zebFv/PgTvkeV8st+/Vc11DHN86o6tiziXbnrDjxoq9HsHritxpjutRSfdG6U46HJigu33o+AFw+GaR2fXB266haTWo+83i9hvakin1lbgTdZOsv2wrcdsys0RibGvPF0Ck0alu01hhlya2eqiX4zVPqJ3IJPaNqee7RxLdU4+UkR6OuFn0MNF0DPV6d9TbKR5n8Ov4bOr/ft8gxXhQ3QsNISU2jW6f2jB/1Flevh5Z1kSqE6vVV1+vFk5fVrr98WnW/qdOkVqnFs3VUTX549UKI2n2ysrKIvBWFVy1PqtfzJeSSalxNj+qPxxt93tWqXwOA8ycvqF1/4bQqqVz/pTpax3T3dsPE1Ji/1m9n3mdf4+nrUeg+XtVV98HrV1+c5GjVeqp6iT6pftiGmOx7v0MTH61j2ng5om9qSPDvBzn4xWoq+ToXuL1zixroKBTcPnwpt7Xkf537cYfWx6+o5Fy82GS2+tIjyVFRbujr6+PhUfgDSWFcXFyeQmlePObm5pibm5d1Mcq9qm52ANwNVz/L7L3smeWtbK0xNDHKM7nR04pX1bXgfXL2q+pqp4q///FyHR0ddHR0yFIzmreuvuojobJjlQLL3KavH45ezsRFxbLjp60Fblse2GbX8T0N9RWbPbO2ZRUrrc7Z04xnaGJE20GdaNHXj4y0DHb/UP7rs6gc3BwAiA5Xn/iNyW5Ja2Nrg5GJEWmF1P/TimduZUbfd1VDTayYtULteyJH4IBA6resx461Ozlz6GyFSo5Wzr5eYzVcr/ez7zEWVawwMDEkI6XglmfFjWfv45K9/h4t/uePd/NamFia8iA6lnPbj3Nx1ym18QACR/fGzsuJbV+tI6YE3fJfBLVq+LD+x0X4epf8eepF4phzXwlTPyFbTPYM6Nrep0oST1dPV2Ncvex1VZ2q5i6rlj0ZU1hIGC07taBFQHNsHauQ+CCR04fO8Pe6HTxMf1hgeSsK52qOAERoqNecmeor21bC2MSY1JTUQmNePBPEgIA3uHpJfVJaHa/slqNRt6PpPbAHTVo1xMLSnJiou+zdtp/9Ow5pHauisHRTXXMJ4eon10m4rXr2MbW1Qt/EkIeFfJYAxJy9wW+Bn3DvsnbDQdj4OAEQdy0SANd2dfHs0gRzh0qkxiVy/e8ThGw9rlWsikzOhRClQ5Kj4qlYtGgRixcv5rvvviMtLY1vv/2Wa9euYW5uTkBAAB999BEGBgb88MMP/P7778TExODs7Mzrr79Ov379ANV4le3bt8fFxYVdu3blWdaxY0cmTJjAV199xaFDh0hOTsbd3Z3XXnuNPn365CmLn58fERER7N+/Hzs7u9xl6enp7N69m8WLF7N161bi4uJwdXXl7bffpmvXrkRGRjJnzhwOHz4MQK1atRg3bhw+Po9/dfv444/ZtGkTs2fPpnv37nmOu3nzZsaNG0fPnj2ZOVM18PSxY8cYOHAgw4YNo2vXrsyfP5+TJ0+io6NDo0aNmDhxYu7r/eabb7h27RqVK1fG39+f0aNHY2xsXOxzklPWLVu2cP78eVatWsWNGzcwMTGhVatWjB49Gicnp9ztN27cyIQJE+jduzfTp0/PE+uPP/5g1apVXL9+HUNDQ9q1a8f777/PgAEDyMzMZO/e/ONNRkVF8fXXX7N//36SkpJwcXGhT58+DBw4MHfipZxzBbB48WIWL17Ml19+Sa9evXKPu379eq5fv05KSgqOjo74+fkxdOhQrK2ti103JWFho2pZm3hf/eyNSU908zW3MS800VaceOaVVPskadgHIDl7P3Nr1bY5iVQDIwPs3B2Iup4/weDopboeTC1NCyxz4DDVIO3bf/yLRxmPCty2PDDLruNkDTP4pjxRx2ZanLOnEc+1tjuvz34XW1c7DE2MiL19l5XjlxF55fkbL86ykiUACRqu1ye7nFraWBSadHha8QIHBGJqYcrN4Jsc26P5Ab6yXWWGTXqTuDtxfDv1uwLLVh4VdvJ62cIAACAASURBVL0m57leLYhLKXhW2eLGs8/+IjVg7rsYmeX9bGvyShsu/3OGn0YsyJecdarpht9bXYkMDmPX0vxDgoi86teuUdZFqJCsKlkBEK/huk7Ic1+xLPQ+VZx4OT/45Mw8/1/6hvrYu9oDYGZplrs8Z/vuA7vx6vB+efZp06U1fd7qzYSBk7h9s+L/sGCdU6/3E9Suf3K5lY2lVsnR8yeLPgmih48qOfrFgkmYmpnkWdetbyCH9hxh/FufanX8isI4+9kzVcNnb/oT934jG3OtEnLRp4o2eVjO2JUZSal0/m4MHv8ZU9O7ezNC957l77e/5lFaRpFiVyRyLl5sMlt96ZExR8VTtWrVKt577z2ysrJo1qwZqamprF69mvHjx/PBBx+wePFiHBwcaNCgAdevX+fTTz9l9erCJwyIjo6mT58+HDhwgDp16lCrVi2Cg4P55JNP+Omnn7Qq26NHjxg8eDCrVq3C19eXmjVrcvXqVT744ANWr15N7969OXXqFA0bNsTKyopDhw4xYMAA7t4t+IuiNi5cuEDfvn0JCQmhWbNmmJub888//zBo0CB+/PFHRo4cCUCLFi2Ii4vjp59+4uOPPy7xcQEWLlzIpEmTUCgUtG7dGl1dXf78808GDBhAUlJSoftPmzaN8ePHc+3aNZo0aULNmjXZsmUL/fv317h/fHw8vXv3ZufOndStW5c6deoQEhLCjBkzmDv38eznHTp0wNdX1fXM29ubbt265bb8XblyJePHjycoKIjatWvTunVrkpKS+P777xkwYADp6WUzrpaBkWrYh4caPugznlies+3Tjpfz34wCHjYysscd08/eNiE2nutnVQ8+Pd7rnW/7Sg6VafZySwD09DX/blarZV0cPZ1Ijk/mnzWaZ/8uT4pSx/qGT/ecaYpn7+WEc3U3DE2MADCxNKW2XwP0DJ6/3ywfX6/q37N5r/HCZ4F/GvEUCgVdX+8CwO/fbCzweKNmvoephSlLJi8jKb7we2Z5o1/I9fowz/WqXyrxrB0qYZKdzLkXFsPS12fwUfVBTKj7Jqs/XEby/URqtKvPgDnv5oml0FXw6px30FEo+O3jb2XcMlFqcu8rGib7evK+YliU+1QR4h3dcwyAGg2q06Bl/Xz79BrSAyNj1WeG/hOfFe7ZrRgz0jOY/cFcutfqRUfPLnz46niuB93AqZojM3+ZgbFp8X9wLy9y6ipNw/3/yTFXjYwLP0/FYedYFQsrVU+r26ERDO8/lubuHWhbPZDPRk/nQVw8Lds34/MFE0vl+GVFL/uazkxT3wr5yQSYnhbPv8VhkH0N1x8WiFv7ehz+ci3f1xvOMq83+Pudr0mNTcDNrx5tpg8uleOXF3IuhCgdkhwVT9X+/fuZPn06GzZsYPny5axevRodHR127NjB4cOH2bhxIytWrOCnn37iiy++AGDdunWFxj137hy+vr65LSzXrFnD1KlTAfjhhx+0KtuDBw+IiYlh69atLF++nF9//ZUhQ1QTFUyZMoX69euza9culi5dytatW2ncuDFJSUls3Vrybq5Hjx6lS5cu7Ny5k8WLF/PXX3/h6OhIZGQks2bN4quvvuL3339n6dKlrF+/Hj09PXbu3MmDBw9KfOz9+/ezbNkyNm7cyOLFi9mxYweenp7ExMSwZcuWAvc9cuQIv/zyCw4ODmzZsoVvvvmGH374gY0bN5KWlkZcXJza/eLj43Fzc2Pv3r0sW7aMVatWMX/+fADWrFlDRobqQ3vixIl07NgRgICAAObOnUujRo3IyMjgq6++wsrKih07dvDdd9+xePFi9uzZQ6NGjbhx48ZTOS/FocwseIxUheLxODDa/LJXnHiF7QOqcUH/W4jf5/2KUqmkRc82DJwylEoOldHV18OnSQ0+XPEJ6amq8/LooeYERIeBnQDYt3Y3qUkVo0VEYfWl82QdU/hJexrxLu0/y+jag/igwZv8OOZrHmU8osObXXln+UeFHr+iKUp9afOmeRrxXvJ/iapOVYmNieWfP/7RGKt9Lz9eat+Ef7cf5tC2itlNsvD6evwoqE1jhOLEUyqz2PPNFo6u/YeFvT/jysHzZKSmkxKfzPHf97N88EyUmUrqd2mKa33P3P07DO+BUw03DqzYzq2z2nd5FaKoinRff8r3qZx4oVdvsXuTakLFT5d9Qvse7TAyMcLM0oxeb/TgjY8G57aMfPJzetfG3ezauJuxfT7k77U7SHiQSEZaBqcOnmb0K+9zJ/IOjm4O9Bj8cqHlLu+K9sxUOs2rlEolK5eu4Y81f/FG9+Ec3X+CtNQ0Eh4ksmXd37z32odkZmbi360dtRtoN5Z2RZBVhHt/aTVt083+wc24kgVH5/zOqaVbSI1N4FFaBiFbj7Nj5BIAqvduibWnQ6mUoTyQc/Fik9nqS48kR8VTVatWLXr3ftwqzdfXN3cc0YEDB+Lp+fhLT05SLCxMu26kkydPzjNZUK9evTA2Nubu3bvcv6/dhDDDhg3L05W8c+fOuf8/ceJEDA1VvzLr6enRoUOHIpWvIHp6ekyYMAFdXdVYUaamprRp0waAJk2a0KVLl9xtPT098fDwQKlUEh5e9Ikr/qtTp074+fnl/tvMzCx3SICQkIK/bK5cuRKASZMm5RnL1dvbm3HjxhW475QpU7C0tMz9d2BgIA4ODqSkpBT6uhITE0lNTcXY2BgrK6vc5QYGBkyaNImpU6dSt27dAmOUlpwJkDS1sNIzeLy8oJadJYmXnlLwPgD62fs9WYYLB86y8rPvyXyUScCgziw88i0/h6xj8vppGBjq88PHSwE0Jj0NjQ2p00bVmuXfTfvVblMepaequj/qaagv/SfqWFNruKcdLzE2gbTEFJLiEjj2x0EWDZ5O5qNMavs1wKeZdhN+VBQ53U81taJ9sr7Staj/pxGvVWdVK+kDWw6SqaE1olVlK975/G2S4pNY/MmSQstVXmWkFlxfT7ZW1ub6L068+Og4/vxyNb+O/0btmKZh565z5V/VBCu12jcEwM7LiY4jexIbfoetcwueNVeIksq5r2jq8aGf57O48J4rxY03b/wCTh08jaW1BZ8snsjfV7ew5dIm3psygr2b97FzvarHRkrS4xmqV8xbyYxRs9ROyJSckMzmn1U/hDfv0KzQcpd3qdn1aqjx/v94eboW56k47kTdZcHUpUz5YKbabvOXzgZx/OBJAFoHtCiVMpSFnK7ZuhqefXSfuPeXVjfqnLgZSamc/f7vfOvDD10i5ux1dBQK3Nrnb339vJBzIUTpeP7674kyVa9evXzLcsaGzOk+nSMn0alN92grKytcXV3zLNPV1cXGxoaIiAhSU1O1GoPyvwm1nH0sLCxwdHTMsy5ncqKn0X3b3d093yzwOceuXj3/DNlFqZvCqEsiVq6smrk8JSVF435ZWVkcPXoUfX19WrdunW99QEAAEyZMULuvpaWl2sm17OzsiIyMJCFB/VhROSpVqoS7uzs3btygT58+dOvWjTZt2uDp6UmNGjWoUaP0xlRzrVmNgV8MVbtu5Wffk3Q/EVNLM0ytzNRuY2b9eFKrxNj4Qo9XnHhJ2WOVmVlpnkDLzFoVLzEub13vXrmd4GOXafeqPw6eTqQlp3L5yEUOrNuLR/Ys1Jpmn6/duh4GRgZEXY8g7HJooa+tvEi+n1RgHZtaP16eGFvwtVka8QBuXbhB8OEL1GxdD++mNbhypOhjoJUVj5oeDJ/yrtp1Sz9dRuKDRMytzDHXcL1aWD++N8Zr8Z4paTyFQkHjdqqxsQ78dUDjcUZOG4GFtQULxn9NXIz6VvIVQfL9JEwszTDReL0+rsckLa//pxkvR8TlW1RvXRcbx8roKHR4dc476Bnqs3bi9xq7JguhLc+aHoyaOlLtuq8nLybhQUKB9xXLJ+4rD7S4TxU3XlpKGh8N+Jh2L7elRUAzLG0siYmIYc8f/3D60BkmLFD9MB1bhHtSyGXVrPZVnWy13qes+NTyYtz0sWrXzZ40n/j78VhYmee5zz/Jyubx8vuxJe99VVxXLobQrO1L2D8xcVZFl/YgCSMrU4ys1I9Lb/TEs09qrOYx8UsiPUH1veX+9SiUGno5xV6NoGo9DyxcCp5ctCKTc/Fik9nqS48kR8VT9WRLwRw5k+882QLwyeXa0DSLek5LTKWy8G7G6sqnqWxFLV9Rj/ssj62u7nLqraAuRw8ePCAlJQUHBwcMDPL/Qm9sbIyNjY3WxwRVC1qAzMzCx42bP38+I0aMICgoiKCgIGbPno2DgwPt27dnwIABuLu7FxqjOEzMTfBpnD9hnbMu8noEVd3sqaLhS0bOTO/3Y+K0ajlanHiR2ZMpVXbS/LCRs190aP4ZXW9fCeOXz/MPR+FaU1Wnt6+qby1dL7tF17FthzUetzyKvh6BrZsdlTTUcaXsunoQE6dVy7nixNPV16Oysy2ZjzK5Fxajdr87N6Op2RrMK+e/X5RnpuYm1GqivuugqbkJ4SHhOLg5YOes/kuibXY9xsbEatXSp6TxajSqjoW1BXcj73L5VJDG47TqompdOmbWKMbMGqV2m4A+/gT08Sc6PIZBzQcXWvaycOd6JFXc7LDRcL+wcVT9WBav5fVfkni6BnpkapjELedT79HDR1g7VMYt+8ea4b9oHrcvcExvAsf05trRyyzuP6XQsosXl6mFKbWbqG+Vb2phSlhIOI5ujthpSGblzA5/L1q7+1RJ4mVlZbF38z/s3Zx/yA/PWqr3xc0roXmWGxgZaHzmyHmmfFgRJlA0N6N+kzoa14WG3MK5mhMOTnZqt7HPXn43+h5ppfyjir6BPg8z1I/5mPMYXxHqXFv3QyKxcquKubP6e7+5k+renxRzv9RaKz64kf+Z9r+ysr8TakrYPQ/kXAhROqRbvXiqcpJfT9vTShbq6xc+2URxFZSgLa160UZx6+7RI9UDXUGvS1NyVaEo+a3F19eX7du3s2zZMvr27YuzszORkZH88ssvvPzyy+zevbvEx1An6Ogl/ufaS+1f0NFL3DyvaoHhWd9b7f45y6+f0W7Wx+LEu3leNRyCS3U3tV3rLSpZYutihzIzkxvnHg+d0LRbC7oN74VFJfXJt/rZyc8gDa0WvRr4ZK+/VOBrKm9uXVDVsXt9L7Xrq2Uvv6nlmIbFiddtTB+m7F1Iv8+GaIxrZaf6sSE+RrthQsqL80cv0NE5UO3f+aMXuHpede361vdVu3/17OXBZ65odbySxqveoHpuuQty8fgljX93o+4BcP/ufS4ev8TVc1e1KntZCLtwAwC3J8byfJJr9vWq7ZiexYnXbfyrfHVtFcO+1zymrmMNNwBiQiJ4mJ7BjRPBGv+SslvE34+4x40TwUQFl3z4G/F8O3fkPO2c/NX+nTtynivnVe/hGg3U/ziaszzorOYfVJ5UnHjWVazpMehlur7WWe0+VR1tcfetRkZ6BpdOXQagafuX2B7yF5vOrtc4maJnDVVPnrCQ8v8+OXXkDA3sW6r9O3XkDJfPqe7rtRuq/0EuZ4zPC2cul1oZ35v4DsfC9rHg55kat/Gulf0ccC201MrxrN05fxMAOw33/pzlMWeul1oZYs6qYtt4OaBrpP47nVU1VYI8IexOqZWjrMm5eLHJmKOlR5KjQhRBTqJRXcvHwrqKVzTW1tYYGhoSGxubO4HSk9LT07Ue67W49PX18fPzY+rUqezevZudO3fSq1cvHj58mGfW+2fpxPajADQMaIKpZd5upToKBa37tAPg3z+0G5OzOPHu3b5L6MUbGBgZ0KJnm3wx2/ZXjZd79p/TpCQ8HpesRc829Bv/Pxp1einfPh71vKjRrDaJ9xM59te/+dYbGBlg764aUD304g2tXlt5cWa7agbgev5NcmfMzqGjUNCst6qOj23S3MW6pPGuZCeUa7Sqm9uy7kmVXapSq61qWJILe09rVY6K4t+/VddT847NMP9PV2yFQoF/H38A9m7c+0ziedRSJQpCLhacDPzglQ81/u3/U/V+PLHvJB+88iHT352hVdnLwvntxwGo7d8YE8u8XfB0FDq81Ft1Dzm5SbsJp4oT7/blUHT19fB8qTrWaq5/h+oueLeohTJTybm/j5N4N56FfT7X+BdyVJVQOrp+Hwv7fM6Gz1doVXYhNDn4t+p6bdGxRb6u8AqFgo59AgDYvXFPqcVTZip5b+oI3vtiBKYW+bvLvjq8HwC7Nu7JHdP02sUQ9PT1MDEzoVVgy3z7GJkY5SZb9xUwjEhFsXeb6t7btlOr3BnjcygUCrr1CwRg24YdpVaGK5euoa+vR4Om9dR2m/eq4UmTlg3JzMxkz9aKMz57Ya7/fQIA944NMbTKf++v3kc1BNeVjfmfIZ+W8EOXSI1NQN/EiFoD/PKtr1zdBYfG3mQpldzYcbLUylHW5FwIUTokOSpEEZiaqj6A7t27l2/duXPnnnVxSpWenh4NGzbk4cOHHDqU/0vz/v37teoeXxh1LVtPnjxJYGAgn376aZ7lrq6uTJ48GYCoqMK7c5SG8OBbnNlzEhMLU0Yt/wiz7OSMvqE+w2YNx9HLmciQ25zMTqDlMLM2x97DEVuXqk8l3uYlGwAYMGkQ1Zs+bkHRoENjeozqg1Kp5K9lm/Lsc3SL6iHplfdfxcnn8QRb1Wp78N7SDwH4a9lGtRMyOfm4oNDV5cGd+yTHJ2lfYeVARHAY5/ecwtjChLeXfZA7VqieoT4DZ72Dg5cT0dcjOLvjeJ79TK3NqerhQOX/nLPixAs6dJ6bZ0PQM9DjnWUfUsX1cZdABx8X3vtpAvqGBpzY8i9hFSz5XJibwaEc230MUwtTPlk+KTdRoG+oz9g5o3H1diE8JJx/t+cdrsHC2gJnDyfsXe2fSrwc7tVVw0fcUjN5yfMoMjiMS3tOY2xhwpBlY3PHCtUz1OfVWW9j5+VEzPUIzu84kWc/U2tzbD0cqPSf67848c7vOMHd0Gj0DQ14Y+nYPF3yXeq4M+y7j1DoKji0ahex4dLCRDx7N4JucmT3UcwsTPn8m8m5iTd9Q30+nPM+bt6uhIWEcfDvvMkG1X3KGYf/3KeKEy8+Lp6zh89hYGTAh7Pfx8jYCACFroI+b/Wm+6CXSU1OZdXXa3L3iY2JZc8fqu73o6eNpG6zx13SbWxtmP7jFOyc7bh2MYTdm7RL7JZn14Kuc3DXv5hbmDHnu2m5Y7caGBrw6bzxuHtX42bILf7ZljcRbGVjiZunC06uJZ81+5+/DxB+8zaGRobM/m4aDs6Pz32Nur4s+Hkmurq6/P7zH0SERZb4eOVFbHA4N3efwdDChMDlozDKvvfrGurjN2cYNt6O3A+J5Pr2vIkwI2szrD3ssXAt+Zi3WZlKjs79HYDmE/rh3ePxJGPmjpXwX/A2OgoFVzb+S2JEbImPV17JuRCidMiYo0IUgbe3qovzxo0bGTBgAGZmqg+j3bt3s3379rIsWqkYOHAghw8fZsaMGfj4+OROWhUeHs7MmZq7ExWFoaEhoJqhPoeXlxfh4eFERkbSq1evPBN9bd26FYDatWs/leMXx08Tv8HpdxdqNq/NgiPfEhlyG1uXqphZmZMcn8yCt2flG3IgYFBneo3tx93wO4xt+U6J453YdoR9a3fTtl8HJq2dyu2rYejq6eW27lw3ezVXTwbn2effTftp2LEJTQKbMX3bPCKvR6DQVeDo6QTA3tU72frNZrWv2cpWNYFYRUuM5lg96VscfKbi27wWXx5eRnRIBJVdqmJqZUZKQjLL3pqTr47bDepEtzF9uXf7DpNajihxvG9HzOP9NZ/hWseDL/YsIOZGJOjoYOfhgEKhIPjfC/wyfnmp10VZ+HrCYub5uFGvRT1WHVtJWEgY9i72mFuZkxSfxBfDpuarr5cHd+P19/+ndjzP4sTLYZN9LSdV0Gu5ONZO+p7RPl/g3bwWnx9eTExIBJWeuF5/eGtevvpqNagjgWN6E3v7LlNavleieJkZj/jx3a8Y/sskXOp68Mk/87lzMwqFroKqHqrPlYu7T/HHtJWlXxlCaPDVhIUs8nGjQYv6/HZ8NWHXwrF3tcPCyoKk+CQmD/0i3/uk55DuDH5/INHh0bza7PUSx5v94Ty+3b6Utl1b06hVAyJCI7F1rIJ1ZWvS09L55I3PiA6PzrPP158swtnDier1fFmwfh5RYVEkxidRzccNfQN9IkIjmDTkUzIfPR/j/k0fP5cffd1p3LIh205u4Oa1Wzi6OGBpbUFifCIfvjExX732G/IKb3/4BpHhUXRt0qdEx3+Y8ZAPh37CsrXzqVmvOpv+/ZWwG+EodBVU81RNHntg57/M+3xRiY5THv0z4Scq+Tjh3KImg48tIC4kEksXW4yszEiPT2brsAXwn7qvMziAl97vRUL4XX5urn6yraK4uGovNl6O1H2jIx0XjaD5hP6kxiZSydcJXX09Ys5e58Dnv5T4OOWdnIsXl+YZQ0RJSXJUiCLo3LkzS5Ys4ebNm3Ts2JEGDRoQGRnJxYsX6d69O5s3q08sVVTt2rXjlVdeYcOGDXTp0oWXXnqJrKwsjh07hq2t6lfHko7j6uqqepBcu3YtkZGRdO/eHX9/f8aNG8f06dN59dVXqVevHlWqVOH27dtcunQJExMTxo8fX+LXV1xx0bFM7vohPUf3pYF/E1x8XUlOSOHw5gNs+GotMWomQSqNeN+PW8rVE8H4vRaAk48LOjo6XD0VzM6ftua2Ev2vJSO/4vqbXWnZqy1V3exRZmYSfOwSe1bv5MjmgxrLaJY9A3VKYkqRXlt58SA6jhldx9NldB/q+jfC0deVlIRkjm8+xJb5a7kTGl14kBLGi4u4x/Ru4wkY9jL1A1+iimtVHmU84sapqxzZsI9/1/2TO3j98+Ze9D1Gdn6P18YMoFlAM6r5ViM5IZl//viHlfNWERlatNY1xY2nUChyu6smPzHkxPMuPjqOuV0n0Gn0K9Tyb4SDryupCcmc2vwvf89fz90iXv/FiRcZFMaswHG0f/tlarVvQBVXOzLSM7h+PJhj6//h2Prnp/upqJjuRd3j7cDhDBz7Oi0CmuFevRpJCUns+WMvP81bScTNiFKPF3M7hrcDRzBo7Os0btMQjxruxMfFs3PDblYv+lXtuKHJiSmM7vU+PQa9TPsefrh4OWNV2YrbN26zf9tB1i5fn9sN/3lwJ+our3V8k2HvD6Ftx5Z4VfcgMSGJvzfuYvncHwi/ebvUy3Dtcgj9/AYxaMQAWvu3wNnNkfS0dM4cO8fmX7fy59ptpV6GspAcHcfazpNpPKYn7gENqOzrQnpCMlf+OMyxeRuID1U/4eTTduCzXwg7cIE6QwKoWtcdIytT7l+P4srGfzn30w4y09RPlPU8kXMhxNOnk1XQdNVCaGnRokUsXryY0aNHM3z48DzrXn/9dY4fP87q1atp1KhRnnU+Pj7o6upy+fJlbt++Tfv27XFxcWHXrl0Aapc9yd/fn7CwMPbs2YOTk6r1m5+fHxEREezfvx87OzuNywqLv3HjRiZMmEDv3r2ZPn167vLIyEgWLlzIgQMHSE5OxtPTkyFDhlCjRg06d+5Mz549c1tVHjt2jIEDB9KsWTNWrFjxVOpMWx9//DGbNm1i9uzZdO/ePc+6zZs3M27cuDxl1fR6lUolv/76K2vXriU0NBQTExP8/f0ZNmwY/v7+1KpViw0bNhRan5pel1Kp5Msvv+TPP/8kNTWVIUOGMHas6tfMrVu38ttvvxEUFERaWho2NjY0b96cd999Nzepqq3/ufYq0vai9Jjq6JZ1EUS20MwXp/Vkeeerq36iNFE25p4sv+PIvmgC6r1d1kUQ2eIz8w+7I8rGED23si6CEOXSe+GryroIpeqw/SvP7FjNozY8s2OVB5IcFUJoFBISgomJCfb29vnGBr18+TI9e/akc+fOzJ8/v4xKqD1JjpYfkhwtPyQ5Wn5IcrR8keRo+SHJ0fJDkqPlhyRHhVBPkqNPz4uWHJUJmYQQGi1ZsoR27drx66+/5lmempqaO1u8v79/WRRNCCGEEEIIIYR4YWRl6TyzvxeNjDkqRDm3bNkyrl+/XqR9Jk6ciI2NTYmP/frrr7N7926++OIL1q5di6urK6mpqZw9e5aEhAS6dOlC586dS3wcIYQQQgghhBBCiLIgyVEhyrnDhw9z/PjxIu0zZsyYp5IcbdCgARs2bGDFihWcOHGCffv2YWxsjJeXF6+88gq9eklXdSGEEEIIIYQQorQ9n1O3lg+SHBWinPvll1/K9Pje3t7MmCFjrwkhhBBCCCGEEOL5I8lRIYQQQgghhBBCCCHKsSxevLFAnxWZkEkIIYQQQgghhBBCCPFCkpajQgghhBBCCCGEEEKUY8qssi7B80tajgohhBBCCCGEEEIIIV5I0nJUCCGEEEIIIYQQQohyTCljjpYaaTkqhBBCCCGEEEIIIYR4IUnLUSGEEEIIIYQQQgghyjGZrb70SMtRIYQQQgghhBBCCCHEC0mSo0IIIYQQQgghhBBCiBeSdKsXQgghhBBCCCGEEKIcU5Z1AZ5j0nJUCCGEEEIIIYQQQgjxQpKWo0IIIYQQQgghhBBClGMyIVPpkZajQgghhBBCCCGEEEKIF5K0HBVCCCGEEEIIIYQQohyTMUdLj7QcFUIIIYQQQgghhBBCvJCk5agQQgghhBBCCCGEEOWYtBwtPdJyVAghhBBCCCGEEEII8UKSlqNCiBfCb1HHyroIIltf+yZlXQSRrYauZVkXQWS7oUwq6yKIJwTUe7usiyCy7Tz7TVkXQWRL+3xkWRdBZOu7ObasiyCydaNSWRdBvEBktvrSIy1HhRBCCCGEEEIIIYQQLyRpOSqEEEIIIYQQQgghRDmmlIajpUZajgohhBBCCCGEEEIIIV5I0nJUCCGEEEIIIYQQQohyTCljjpYaaTkqhBBCCCGEEEIIIYR4IUnLUSGEEEIIIYQQQgghyrGssi7AhkgF7QAAIABJREFUc0xajgohhBBCCCGEEEIIIV5IkhwVQgghhBBCCCGEEEK8kKRbvRBCCCGEEEIIIYQQ5ZiyrAvwHJOWo0IIIYQQQgghhBBCiBeStBwVQgghhBBCCCGEEKIcU+rolHURnlvSclQIIYQQQgghhBBCCPFCkpajQgghhBBCCCGEEEKUY1llXYDnmLQcFUIIIYQQQgghhBBCvJCk5agQQgghhBBCCCGEEOWYzFZfeqTlqBBCCCGEEEIIIYQQ4oUkLUeFEEIIIYQQQgghhCjHlDJZfamRlqNCCCGEEEIIIYQQQogXkrQcFUKIZ8TKypLJn7xPj+6dsLe35e7dWHbs3Me06fMJC4socryGDeowfvxIWrZ4CQsLMyIiotm6bTdz5i4lKipG7T5GRka8N/INevfuhreXO3p6utwKi+Cvv3YyZ+5SYmPvl/RlliumFqb0GtOPRh1fwtrWmoS4BM7tP8Omheu4F3G3TOIFDApk8JS3mDNkOmf2nlS7TePApoxdPr7AODMGfMbFf88X+TU8K8YWpnQc8wq1AxpjYWtNUlwCwfvPsfPrDdyPuPdM4g39/iNqdmioMeaDqFi+aDYi3/LGr7Sm2YAO2Ps4k/nwEVFXwjm4Yjvntx8vcrnLI1NLU/qPGUDTjs1yr+PT+06xduGv3C3O++IpxNPV0+WrrQtwq16NSX0ncPHoBbXb1W/TgO7DeuBV1xtDI0PuRd3l2M5j/L5kPYn3E4pc9vLAzNKMQWNfp2WnFlSyteFBXDwn9p1g5fxVxETceSbxjIyN6PtOb9p1a4u9ix3xcfFcPh3Mr0vXcvX8VbX79HmrN8M/fbvAsrzWchCRoZFFfg3PI6VSyWtvv094RBSHtq0t6+JULMZmGHYegF7d5uhYWJOVFM+jy6fI+PtXsu4X8T1iao75rILrP337b2T8tTLPMh1TCwwC+qJXpxk6VpXIio8lM+Qi6TvXkXWn6M9wFYmZpRmvjXmNZp2aYWNrQ3xcPKf2nWLNgjXcKeY9Stt4r419jf+9/z+t4u5av4uv3v8qz7IGrRvw8uCX8anvg6mFKYkPEgk6FcSGbzYQdCqoyGUvTwwtTWg0phfunRphYmtFalwC4fvOc2LBJpIiYksWXEeHVzZ/hoVrVX6q+26+1Y3H9qLx+720ChW8/gB73/+2ZOURuZRI09HSIslRIYR4BqysLDl4YDPVfb1ISEjk/IUg3Ku58MaQV+nZIxC/Dr25cEH7h7SuXfz5ff336OnpERt7n8tB1/Bwd2XUe0P532uvENh5AKdO502cWVtbsXvXeurWqYFSqeTWrdukpafj6eHGhx8Mp2+f7vh37Mv166FP+dWXDVMLUz7fNBNHTydSElMIC76FrUtV2vXrQJNOTZnS9xPCg28903hutdzpN+71Qo/l4uMKQMytaB7cUZ+wTk5I1rrsz5qxhSmjN06hqqcjaYkpRAXfwsalKk37taNOp8Ys7jeFqOCwUo9n7+sCQOjpqygz8w9hnxSbN5mmo6PDawtG0rB7CwDuR8aSFBuPWwNvPJvW4OTGg/z60TK1sSoKU0tTZm2ci7OXMymJKdwKDqWqix3+/QNoFticiX0+5lZw6DOP1+e9frhVr1bgNr3efYVBE4YA8ODufe5F3sXR3Ykeb/WkeecWTOg9nnuRRU/uliUzSzMW/7EQVy8XkhOTuRF0E3tXOzr3D6RVp5aM6fMBN4Julmo8q0pWzP1tFh7V3QEIvaq6j7Xt2ppWgS1YNHkJm1duyXcsd99qudsnPkhUW56MtHSty/68+/rblVy4fAUrS4uyLkrFYmyGyQdz0bVzISs1BWVkKIpKdhg074h+veakLBiPMjJU63C6Dm4AKJPiUcbcVrtNVlzeH5h1bB0xGTkdhY0tWcpMlJGh6Bgao9/UH70GrUlbMZtH548U9xWWa2aWZszbNA8XLxdSElO4GXwTexd7OvbvSPNOzRnXZxyhRfjMKGq8u5F3uXT8ksZ4hsaGeNb2BCDqVlSedQM/Gsiro14FIPFBImFXw7BzsaNFYAuaBjRl2eRlbP1lq/aVUY4YWprQa9NnWHs5kpGYSmxwGBYutlTv35ZqnRqzuc80YoPDix3/pXF9qFrfk9Q49ff2xMh7RB2/onF/PWNDqtR2AyD+VtET6KLiOnz4MMuXL+fKlSs8fPiQmjVrMmzYMFq3bq11jP3797Ny5UouXLhASkoKVapUoVWrVgwfPhw7O7tSK7skR4UQ4hn4Zvkcqvt6sW3bHgb8712SkpIxNDRkyeIvGTyoH6tXLaVe/fYolYUnXRwd7fl5xdfo6ekxbfp8pk6bT2ZmJsbGRiz6egaDB/Xj1zXL8a3RMk+8JYu/pG6dGgQFX+PVAe9w8WIwAM7ODqxauYQWLZqwZvUyXmoaWGr18CwNnTUcR08nzuw9yaKR80hLTkPfUJ83pr1Nm77teW/xB4wPGEOWFnX+NOJ51PXiwx8nYWxmXOixnKu7AbDmy5858fdRrV9zedFv5ltU9XTk8t7TrHzva9KT09Az1Kf3tDd5qU9bBi4axeyOH5GlzCq1eIZmxtg4VSEtMYWFvT7V6jjt3upKw+4tyHz4iPWTfuDYun8AsKxqzZBvPqBRr1bcj4pl25zfil4p5cTIWaNw9nLm5J4TzB05m9TkVPQN9Xl3+nDa9/XnoyXjGOU/Uqt70dOK5+rjSu8RfQo8jlv1arw+fhAAP079gc3fbQKgkl0lJnw3Ca+63rw3ZxSfvTZZy5ooHz6cPRZXLxeO7jnGlOHTc+tv7IzRBPbryOQlk3izw1tan4/ixBs//yM8qrsTGxPL5KGfE3RG9dlQs2ENpv34BWNmjCIiNJKTB07lOZZ7djL7y9GzuHrh2tOpkOdQVlYWS39czfe/SGvR4jAaMApdOxceXTxO6k+zID0V9PQx6j8S/ab+GA35mJQZwyFLu/eIwkF13T46tZ/09csL30FHgfHQSShsbMmMDiP126m5LUX1ajfFaMg4jN6cQMqXI1BGFz8ZVV6NnjUaFy8Xju85zswRM3PvKSNnjCSgbwATlkzgXf93tb5HFTXezrU72bl2p+Z4s0fjWduTc4fPsXbR4/dYo7aNeHXUqzx6+Ihlny5j26ptACh0FfQf2Z/XP3ydd6e8S/CZYK5fvF6CGiobbWcNxdrLkVt7zrJzxGIeJqeha6hP6xlDqN63Nf5LRrLW/2Otn7Oe1HhsLxqOfLnAbYLXHiB47QHN5Zs9lCq13Yg4fJnTizYXuQxCs6Kf0Wdn48aNTJgwAQMDA5o2bYpSqeTYsWMMGzaMKVOm0K9fv0JjfPvtt8ybNw+FQkGdOnWoVKkSQUFBrF27ll27drFq1So8PDxKpfwy5qh45j7++GN8fHzYvPn5vVFGR0czcuRImjRpQu3atQkICND6oaE82LhxIz4+PkyaNKmsi/Jc8PHxoGePQBITkxg0ZBRJSaoWf+np6bz19odcDrpKjere9OihXVJywKs9sbS0YN++w3z+xVwyMzMBSE1NY/iIj4mNvY+7uyt+7Vrk7uPoaE/vV7qSmZnJwIEjcxOjAOHhkfTt/xaJiUk0bFCH1q2aPsVXXzYcPBxp3KkpqUmpLB2zkLTkNAAepj/k2/FLuX0tHCcvZxp3eqnU4+koFAQM7szkddOwrGyp1fFcfFQtHiOuVrwvWrYeDtTu1Ji0pFRWj11CenZdPUp/yNrx3xB97TZ2Xk7U6dikVOM5+DgDEB2iXXdHhZ4ufu+ovgzsWLghNzEKEB9zn1WjF/Eo4xFth3bGyr6SVjHLG0cPJ5p2akZqUgrzx8wjNTkVUF3Hi8ctIvxaGM5eLjTt1OyZxVMoFLw3dzQ6Ojo8zHiocbs2PduiUCg4ve9UbmIUIDY6loUfLACgXqv62FStOOfG2cOZVoEtSUlKYcboWXnqb+5HXxF69RZu3q60DGxRSKTix/Oq5UlTP9V75/N3puYmRgEunbrM8qmqrpAjPnsnz7EUCgWuXi6qXgjXtG8F/qK5FxvH6AlTWfbj6rIuSoWkqOqEXt3mZKWlkLpyrioxCvDoIWmrF5IZFYauvQt6dbW7ZwEoclqORml33erVbYaugxtZDzNIXf55ni70jy4cJWPX7+jo6mHYc6jWZagonDycaB7YnJSkFOaMmZPnnrLwo4WEXQ3DxduF5p2al0m8pgFN6fRqJ5Lik5g7Zm6e71o9h/UEYMvPW3ITowDKTCVrFq7h4F8H0dXT5eUhBScByyMrD3vcAxuRkZTK7jHLeJj9XJSZ/pB9H31H3NUIbLwdqdapUZHiGlexpNP3Y7TuLq+JW0ADarzalvT4ZPaMWV6sBK2oeGJiYvjss88wNzdnw4YNfPfdd/zwww+sWbMGMzMzpk+fTkyM+mHfcoSEhDB//nxMTExYs2YNa9euZenSpezcuZMBAwYQFxfHxIkTS+01SHJUiFIwbtw4du3ahZmZGX5+fjRt2hSFQt5uL6rXBryCQqHgr627uH//QZ51SqWSn39W/dLdt492D2iRUTH8vuEvvvthVb51GRkZhISoukw6OTnkLm/dWnUN3rgRxpmzF/PtFxNzl1OnVN3w69evrd0LK8da9GyjSqTsOUFyfFKedVlKJQfW7wWgWdeWpRpP31Cf6X/NZfAXw9Az0GPDgrXcDS+4e5GBkQG2LlV5mP6Q6NCoArctjxr2aIlCoeDSntOkxOft+p+lzOL4+n0A1Ouq3ZfZ4sbL6VIffVV9t8n/cq7jjqm1OY8yHnFgxfZ86+/diuHKwfPoGxpQt7N2SfXypm12gvH47uMk/ec6ViqV7Fm3G4CW3Vo9s3g93u6JV11vNn+3idSkFI3bVcpOeqrroh9+NYz07O7blR0qa1X28sC/V3sUCgVHdh/N1y1dqVSyfd0OANp1a1tq8Rq3UX15DjoTxMUT+buu7tywm+TEZNx83PCs+bilhmM1RwyNDIkKi86te5HXv8dO0aX/UPYePELlStaMeWdIWRepwtFr7IeOQsGji8chJe89hiwlD4/uUm3XQPvumrnd6qO0G1ZH17c+AI/OHyXrXnS+9Q8P/KXarnoDdEyfryET/Hr5oVAoOLb7GEkP8t/jd65Ttehs3U27+n+a8QyMDBgxTTVm+IrZK7gX9XjscYVCQc0mNQE4tPWQ2v2P71GNIe5Zy1Orspcn3r1aoKNQELr7DOkP8j8XBa9Ttej07KZ9Ywfn1rV4bf9c3Ds2IjnmAUe+LF5Ld10jfVpPGwzA0dnrSYqKK1YcoZlS59n9FcXq1avJyMhg8ODBeHt75y6vU6cOw4YNIz09nbVrC76uNm/ejFKpZMiQIdSvXz93ub6+PhMnTsTGxoazZ88SEVE64zxLt3ohSsH586ok0+rVq7G3ty/j0hSdv78/devWxcLi+XrIKytNGqtu7keOqJ9859ix0wC0bKFdS7rVqzewevUGtetMTIzx9laNG/fk2KEHDhylb/+Cu2aamqq6e+vp6WpVjvLMs54XANdOBatdf+20apwkn8bVSzWevqE+bjWrcftqGD9O+obg45dp/Uq7Ao/l7OOKQleX21fDK+TYlq71VF80Qk+pn8Tl1pkQANyb+JZqvMfJUe1a31pnJ9Viw2JIT0pVu829UNUXY5e6pdOdp7R51/cBIFjDdXzljOo6rtG45jOJ51DNgf5jBxBxI4Jf56/Bv3+AxmPdi1Z98a1W0z3fOjtXOwyNDFXbRRZ9sq+yUr2+6pq9ePKy2vWXT6vGoa7TpFapxbN1tAXg6oUQtftkZWUReSsKr1qeVK/nS8glVfdTj+qPxxsV6t0IDSMlNY1undozftRbXH1OxvN+lnTdVPeYzBvqr2llqOreo+up3T0LQOGgGtM7U8vkqMJa9R5Rhmt4jyQnkJWSiI6JOQoXTzKDTmtdlvLOp56q/oNOqh8TPzhnCI4m2tX/04zXc2hPKttX5mbQTbb9si3vSh2YNmwaVRyrEHolVO3+hiaqzwxd3Yr3zFu1nuoZJPqk+uFMYrKfixya+Ggd09rLEX1TQ678fpBDX6ymkq9zscpWd2ggZvY2xAaFcemXPcWKISqmgwcPAtChQ4d86zp06MD8+fM5cOAAo0aN0hhDX18fHx8fGjdurHadk5MTcXFx3LlzB0dHx6dX+GySHBWiFGRkZABUyMQogLm5Oebm5mVdjOeGh4cbAKGh6pM0t8JULdvs7GwxNTUhOVlz66mC+Ph4sOCrqVhbW/Hvv8c5eOhY7rqIiCg2btQ86LyLiyN16tQAICio4o8dV9VN9d67o6GVZs7M8la21hiaGJGeklYq8R6mP2LpmAUc/vOg1olO5+yk3u2r4dRoXpvm3Vpi62pHWnIaV05c5p/fdpGSULxr5Fmo7KYaKD1OQ13FZdeVRRUrDEwMyUgpuNVZceM5ZA9NcD/iHs3/549381oYW5oSHx3L+e3HubjrlNp4Cl3NrfwV2T8cWDtWKbDM5ZW9q+o6jgnP3/oJ4M5tVR1b21pjZGJEWiHvi5LGGzlnNPoG+iwZv4iH6Zq71AP88/seXn6zO/Va1afrGy/z149/AmBZyZJRc8cAcHTHEeJiSjhD7zPk6KZq3R8dpr6FeMxtVfczG1sbrc5HSeLpFvCjWM4PZlWdquYuq5Y9GVNYSBgtO7WgRUBzbB2rkPggkdOHzvD3uh2FntPnXa0aPqz/cRG+3hXzx5TyQFFZdY9RxqrviqmMU91jFBY2YGAEGQW/R3Qq26FjaIwyPg6FuRV6HXqj6+wBWVlkRtzk4eEdZN2NVL9zQUk0hWqdwsaWzEJeU0XikHNPKeQer+096mnFM7Myo8+7qnGqV8xaQVZW3m7bykwlJ/epb5CQo1mAqrdJWAUcFsTSTXUvTgxXPwFh4m3Vj4QmtlbomRjyqJDnLIA7Z2+wLvATYi8Xvz4MrUyp/25XAI7OWgdZ0p3+RZGVlUVISAgKhQJ39/w/Yru5/Z+9+w6v8XwDOP49J3tPCUlEiIiRIJFYUYTapbWV2kWNWkWLtFqlRbXa0lqt1VI/tCgtWntvam+xEySyd05+f5wkEudEThLhhPtzXa6rfcfzPufNO5/3fu7HA6VSyZUrV8jIyECh0B6WOnz48DwbTxMSErhyRd3wX1yDMkk/35fI7Nmz8fb2ZseOHWzdupVu3brh5+dHYGAgQ4YM4cKFx5EdT8spGRYWhre3N02aNMk13dvbmy5duhAZGcknn3xCUFAQNWvWpHPnzuzbtw+AixcvMnDgQGrVqkX9+vV5//338wx7zsjIYNmyZbRo0QJfX19atGjBnDlzSErSfiPcvXs3/fr1IzAwkOrVq9O2bVt+/vnn7IbIJ3/bL7/8wowZM6hVqxa1atVi0qRJBdqfOaWlpfHrr7/SoUMHatasiZ+fH506dWL58uWkpaVlL5eVTzUrB6S3tzfe3t4cOnQor6Kfytvbmw4dOnDgwAGaN2+Or68vrVq14uHDx5ExGzZsoHv37vj7+1OzZk06derE6tWrcz0oLF++HG9vb8aPH691Ozt27MDb25vBgwcDTz8+dPk7TJ8+HW9vb5YsWaKxflBQEN7e3mzZsiXX9JiYGKpWrUrbtm2zp504cYLBgwfTuHFjfHx8aNSoEePGjcu+MJYUpUqpu4NGRGgfdTwy8nFXe0dH+wKX/3HIKC6e38fp/3bSrFkj/tywhfYd+xWojC+/mIiJiQlhYffZtl17F6SSxNpeHfUc90j7KJs5u3NZ2ef/IaCw5aUmp7B37a4CRYCWzRyp3q9pACG/TaZJ9+b4BFUnoHltekzsw9fbf8DLX/dogOfNMnNfxecxenVCjn1lYZ9/dHphyyvt7QbA2zMH03lKf2q0rkOlIB8COzai/8KxDFj8IcaZkSPwuPHVvqwTxmaPp+dU2kv9ldrcxiLfeusjawd1ztvYPI/jx9OtdfjbFKW8N/q2pVrtavzz2xbOHtJM9fGkW5dvMW3QF0SERTDg04EsOfoLszZ9z8IDi6gSWJVda3cya8TX+ZajT2wdbAGIzuPYjskx3cY+/3zFhSkvq5Eia+T5JxmZGGU3glvaWGZPz1r+zV5t+fynT2nZpTn+QX40atOQUV+OYNHWhbiVf/ZRHSWJn29VaRgtIoWV+jjNiI/ROj8j/vExrbDM/5plkDkYk8LMHPMJczFp3gXDKrUwrBqASbPOWEyci1FQ7vzvqgj1OZKVq1SjjnalUJiaZ5ZrqXWZksomn2t8bAHvGc+qvFbdW2FhbcH1C9ezu8cXRK3GtajVqBYAO9btyGdp/WPmoN43SXnsx6Qcz0VmOjzjAoQdu1ykhlGAqt2bYGJtTsSFW9zYdrJIZYm8qZ7jP11FR0eTkpKCra0txsbGGvMNDQ2xs7MjMTGR+Ph4LSXkb+HChSQkJODr61tsAWjSOPoSWr16NUOHDiU2NpYGDRpgZWXFtm3b6NGjB7dv65Z7LS8xMTF07dqVTZs2UaNGDcqXL8+pU6cYOHAgq1evpmvXrly/fp169ephbGzMP//8wzvvvENysuYXq/nz5zN16lSsra1p3Lgx0dHRzJ49m379+mk0eP7www8MGDCAw4cP4+XlRcOGDXn48CEzZszg3Xff1Vge4Ndff2Xp0qUEBATg4eFB+fLaH/zzk5ycTN++ffn8888JDQ2lbt261KlTh6tXrzJ58mQGDRqUvX0/Pz/atm2b/TWkbdu2tG3bFkfHwudAu3//PkOGDMHMzIygoCCsra2zy5s4cSJjxozh/Pnz+Pr6UrduXa5fv05ISAhjx47NbiBt3bo1RkZGbN26Veu+2rhRnS+pXbun57zU9e/QuHFjAA4cOJBr/UuXLmU37B45ciTXvH379pGenk5wsLrL8cmTJ+nTpw87d+7Ezc2NJk2aYGVlxfr16+ncuTOXLmnvYquPzMxMAUjMo+E/MTFJY9mCaPhaPTw9PbLz2np6etCoke6DE4weNYiuXd4EIOTjaVrP15LG2FR9Y05J0jzen5xubKq9Iaw4y3sa98yR6hVKBb9+vpjBAX3p5dWZSe0/4tyBM9iUsmXMoonY6+mgQEaZ+yo1j32Vc7qRiVGxlGfr4oB5ZkNOxM1w5vX8gg+r9GZijf6sGDOX+EexVA324+2vBmeve/vMdaLDIzEwNKDpkDc1tuNewxOv+uruyAZGJbPjTcGOY82H22dVnpObE++M60VEWARLv1icf8UzRT14xPVz6pzKdk52VKhWARNTE1JTUokIj8gzEkFfZe+/RO3X3Jz7z6Qg16kClHdwm/rjbVX/Kvg38NNYp0PftzDNvC8ZGT8+7itUUUeGpCSnMOODmbzp04EWFdsw5u0PuXr+Gm7lXZn2yxeYZaZrEaJQjDKvG6narzE5pyuM8j9Hsho4FcampO7fTNzkAcSOaEfcZ++SsvdvFIZGmHQdioHP4zRHaWfUjW+GNeqjdNbsamzcrPPj/zHM/55WkmRdU/LKK1zYa1RRylMqlbTp2QaAP+b/ke82n+RawZWx344F4PTB0xzYciCfNfSPQeZ+TEvSHp2fnmM/GupwL38WFEoFPj2bAnBy/t/5LC1KipiYGG7fvq3xLyYm9werxER1Oiozs7zv+aam6meJwjSO7tq1i/nz56NUKhk7dmyB19dVyXy6F0+1bds2Pv30U95++21A3cV7wIABHDx4kJUrVzJmzJhCl339+nUqV67M6tWrsbW1JSMjgxEjRrBlyxZCQkLo3r07ISEhGBgYEB8fT4cOHQgNDWXPnj0a+SeuXbvGlClT6NxZ/VARExPDgAEDOHbsGEuWLGHgwIEA7N+/n++//x4XFxcWLFiAl5c6919CQgIffPAB27dvZ86cOYwePTpX+aGhofz44480baq+UBd2tPhvvvmGw4cP4+fnx48//oi9vTqyLyIigkGDBrF3716+//57xowZQ9euXenatSt///036enpzJw5s1DbzOnBgwc0b96c77//HoVCkf07Vq9ezZo1a6hSpQpz587N/oISGRnJe++9x4YNGwgMDKRr167Y2dnRsGFDtm3bxr59+7IbIAGSkpLYvn07VlZWGtHCORXk71CrVi2srKw4cuQIaWlpGBqqLzVZjaUGBgYajaO7d6uTh2c1rM6aNYukpCQWL15M/fqPR6386quv+Omnn1i0aBHTpk0ryq59btLT05+a0yjnYF1Pdg3SxbsDRxMW9oBy5dwYOqQvg9/rzf9+m0+PnkNZvfrPp647dEhfZkz/BIBfl//OkqWFS8Cub1TpKpRP3ec5GlF02OfPurynOfbPYSLuPmT3mu2cO/A4ou7y8Yt82fMzJq+dRnlfT94a1plFE+cVaVvFQb2v8v72qijg4HSFKS9DlcH2+Rswt7Vk7WdLsrvapyQmc2TNLsIv32bEH59Ts01ddv5UkRsnrqBKV7F51hq6ThvI60PeIj01jf0rtpEUm0ClIF86T+1P/KNYLOysSM/RY6AkUaWrnnotUuQ4jnU5jAtb3tDp72NmYcY3w2eSEKtbigi/hv5M+CkEpYGSZdOXsm3Vv8RFx+HtV5l+n7xLh/c6UrlWZSZ1/5iU5DwaUvRMwfafbtepgpYXeukGW9du4/X2TflkbgizP57Dvn8OYGhkSPOOr9NvbB+iH8VgY2dNWurjDsP//rEVl3JlWDFnZa68o8f2HGdEx9Es2roAVw8X3urTjt9+eDnuK+IFUKmyu6xrleuDSP7nSPrtq6Ts/RvV3dDsgZQAMh7cJXnlHEhPw7hRO0ze6k9CZqNo+rmjpF09i6FnNcyGTCZp1Y+kXzyJwswCo4ZvYNSgNRnxMerBmNJL5r0hL/pwjXpSnWZ1cHZzJiI8osBRn64VXJm2cho2DjZEhkcy4/0ZBVpfX2Skq0DH56LCvFcUhkczf6zcHIkPf8TldfufyzZfVc8zWcHSpUuZM2eOxvRhw4bx/vvvZ/9/QQaeLugxuXPnToYPH056ejoffPABdep6dFgbAAAgAElEQVQU36CoEjn6EvL3989uGAUwNjamS5cuAM+kO/KoUaOwtVV33VIoFLRqpe5+Ym5uzpgxY7JvehYWFrz2mnqE2hs3NJOeBwUFZTeMAlhbWzNlyhQAVqxYkT39559/BiAkJCS7QS5re1OnTsXU1DR7dLScXF1dsxtGoWAnbZakpCRWrlyJoaEhs2bNym4YBXBwcGDWrFkYGBiwfPnyYo2269mzZ3ZETNbvyNov06ZNyxVabm9vz9SpUwFYtGhR9vSsqNC//879NW/79u0kJCTQokULTEzy/upbkL+DoaEh9evXJz4+PntwKoCDBw9iZWVF/fr1uXTpUq6vTnv37sXOzo6aNWsC6kZh0MwpMmDAAEJCQujYsWPeO0zPZOUQNc1j/5qYPP6qmzOKVFc3btwmOTmZS5euMmJkCHN+WIRSqeSLKeOfetx/HDKK775Vn3N//bWVAQM/KPC29VVyZuRUXpGJhsaPp+cV9Vac5T3N5sUbmffB97kaRrOkp6axccE6APxfDyjSdopLSuYxbGiiPVrBMEf0WV7RoEUtLzoskg1fLud/H87XmtP05n9XubTvNADVmtbKnn5w5Xa2zV2P0kBJq9Fd+PzofL66+AsDFo0j9kEUf36xHICkWO0DNum7rOPYOI/j2CjXcZz/Pa0w5TV7uwU1X/Nj78Y9HP5Xt5QzBoYGDP5yKMamxiyf+Qu//7CaqAdRpKWkcfbQGUK6jOde6F2qBlajeY+WOpWpD7Ly6eUVpVvQv0dhy/v6w285tuc4NnbWhMyZwKZLG9hwdi3vTx7K9vU7+We1egTphLjH0R5Lvl7GF8Onax2QKT4mnvVLNwBQ/3XdezEIoSErh6hhHtFvOSI1M7T0jHpS+pnDJK+ck6thNNfmtqgb8g1Kl0VRyiV7etJPX5B++ypKB2fMB3+G1bfrsfxyBcYtupHyzyrSLqmfdTOS9DcfeGFkX1PyuP8aFfDZ51mU16B1AwD2bNhDepruGV4r1ajEzN9n4ljGkejIaCa+MzF7oL+SJjXzucYgj3uvMsdzUVoRn0l15dlaHW19ZcMhVAX4uwj91rt3b7Zt26bxr3fv3rmWMzdXpxZ5WntIVurErGV1sWbNGoYOHUpycjLDhg3LDp4rLhI5+hKqUaOGxrSsbtgJCUW/aT9Zvp2dHQDlypXDwiJ3Hras0c61nSht2rTRmObl5YWrqyt37tzhzp07lC5dmqNH1Qm1tX0lsLe3p2rVqhw/fpxz585lN6wBVK6s20jIT3PmzBmSkpKoVauW1twWZcuWxdfXl5MnT3L69GkCAoqnseLJ33L//n2uX7+Ora2t1t/p5eWFs7MzoaGhPHjwgFKlStGkSROsra3Ztm0bycnJ2Q2hWY2lT+tSn56eXuC/Q+PGjdmyZQsHDhzA39+f9PR0jhw5Qq1atahRowZ79uzh6NGjNGnShAsXLnD//n3efPPN7Ma8gIAArl69Sq9evWjfvj2NGjWiZs2a2Nra0rNnz8LtyGJSs2Y1vps1Reu8EaNCiIh4hJ2dLfb2tlqXcXCwy/7vBw+KPpjIjK9+YPj771K+vDvu7q4aA0EplUp+/GEa7/bvAcDadX/TvccQUlNLzuAZ5aqVp89nA7TOWzJpIbGPYrGwscTSVnuuJSu7x9NjIqLz3d6zLq8obpwLBcC+tAMGhgYFejl4HuIfxWFuY4m5rfbcaxY59lVchPY8csVZXpY7525QuWEN7Fxzpz3ZOP03zm49RmDHRji4OxEfFcf5nSc5tm4vAe3VH/xiHkRpK/KFK1+tAgMnD9I6b8En84l9FIOljsdxtA77sqDl2Ts70GdCX2KjYlnwyfx8y89SsboXzmWdSU5KZv3CdRrzE+MT2bDoTwZOfo+gNkHZgzW9aBWreTL882Fa533/8RxiomKwsrXCKo/9Z2P3OOdelA7XlcKWl5SQxNjuHxHcrjFBzethY29D+J1wtq3bwfG9Jxj/7TgAIsIj861Dlivn1KPaO7s56byOEE/KiFePAq+w0H5MKyweH9MZcUW/92bEPEIV8wiltZ16cKXMwZkyYh+R8NUojOq+jkGVWihMzVHdv0Pqoa2oblzCbKQ6AjEjWvdzRB94VvNk8OTBWufN/WQusVGxT72mWOe4pkTr8ixVxPKUSiUBwep3rd0bd+e7vSyBwYFMmDcBU3NTIu9HMrHHREIvhOq8vr5JjorD1NYCU1vt+c9N7R4/LyVFaM9L+iwplArcg6sDcHVj4cbZELpTPccMQtbW1tntOU9jaWmJubk5jx49ytVrNEtaWhqPHj3CxMREp/JA3Yt03rx5KBQKxo8fT58+fQrzEwpEGkdfQtpGGc+K5ixqaL1CocDGxkZjGpAdTaptnjaurtoT9ZcuXZo7d+5w//59TE1Ns78y1KpVS+vyWe7du5ercfTJehbG/fv3n1pXADc3N06ePJlrkKRnSalUalxEwsLUyeGjoqLw9n76wCz37t2jVKlSGBsb07JlS1atWsXu3btp1qwZcXFx7Nq1izJlylC7du08y4iKiirw36Fhw4YoFAoOHjzI0KFDOXv2LLGxsdSuXRtfX19AnXe0SZMmGl3qAcaOHcuNGzc4ePAgCxYsYMGCBVhZWdGoUSM6depEvXr6E41iY21NUJD2/Wdjbc3Fi1epWLE85cpp5qoCKOeuHjjm7t0wnSJHbW1tqOjpwbnzl0hI0IxgCwu7T1xcPJaWFjg7lcrVOGpsbMyK5T/y1pvqiO9Fi3/jvcHjCp124kUxtzLHO7BKnvPuXr1DaY8ylHLTPqq4Y+Zo44/CI3WKdnjW5eXHyMSY1Dy6BmddVtPT0vWuYRTg/tW7lPIojX0e+yqrMTI6PFKnyNGilGdgbEh6ivZujll3p/RUzfnXj13i+jHNvMZu1TwACLt4S2OePrCwsqBqYLU8592+epsyHi445dFgVcpVPT0yPEKnSMWCllfzjQbZg/osO/5rnuVOXfUlAL/NWsHKWStwyiwn/GZYnsf83WvqRoysZfWBhbUFvrV98px388otXD1cKZ1jFPicskaHfxgWkWeOvpyKUl5GRgbb1+9g+3rNbqoVfSoCcP1iaK7pxqbGeV7vsp7/UvM4/4TQhSr8NspSLnmOAq+0V5/vqugISNWxB5fSQJ3nIyOP556sm+yT6VPS00jdt5nUfZs1ljfIzGWafk8zklqfmVuZU6229nuGuZU5t67cwsXDBeey2q8pWdf+iHDdrlFFLa9KQBWs7ax5cPcB54+dz3d7AMFvBTP6m9EYGhly78Y9JvaYyL0b93RaV189unIXGw9nrMpqfy6yclM/F8WHP3oukaOlAyphamdF3N0Iwo5dLvbtCf2jUCioWLEip06dIjQ0lIoVK+aaf/36dVQqFZUqVcq3rIyMDEJCQlizZg3GxsZMnz6d1q1bF1fVc5HG0ZdQUQckyBppXRulUlmo7unaZCXlzYuhoWF2XczMzDRylj6pVKncN4hnUU9dGpOz6qhtZLZnQdvfM2ubDg4OufJxapMzmrddu3asWrWKTZs20axZM/79919SUlJyDSKlTWH+Do6OjlSrVo0TJ06QmJiYnW+0du3aeHt7Y2Jikp13dM+ePRgZGWWnYQB1I//SpUv577//+Pfff9m/fz/nz59n48aNbNy4kf79+zNu3Lin1uV52bX7AIbGeTegN2pUjzZtXqdOHX/mL1imMb9OHX8ADh85odP2Tp3cjotLabp0G8gff/ylMd/W1gZzc3VC7Lv3wrKnK5VKflk2J7thdMZXc5gw8Uudtqlvzh88S/dy7fOcX7WuD/5NA6jo583WX7dozK/op745Xzmh28Be109deabl5cW9igef/v4FphZmDAnsR9T9RxrLlKuqHlzu3rU7RdpWcbl1+hrVmvrj4VeR/b/+qzHfw0+dluPGSd3SvBSmvDc+fJvG77bh8oGzzO+l/Rh3reoBQPiVx/uxTtdgrEvZsn3+n6Snat4LqwSrB6y5cvCcTnV/3s4cPM2b7m/kOd+nni+BTWvj7V+Zzb9u0pjv7a/uiXBJx+P4yqkrBSov6mEU546czbO8SjW9MTQyJPRCKAmx8Ty4o06vkhCn7vVi62iLQqHQem/O+nCRtaw++O/AKYLdmuU5v2a9GtR7vS5V/avw5y+a3Xyr+qs/AJ0/qVsjwMVTlwpcnl0pOxq1fo20tDQ2LtccRMPZ1YkKlcuTkpzC2WPq475u0zp8Ov9j0tPSedO3I2laPjBUrKoepf3mlaKNfixebek3L2PoUxuD8pVJ3at5fBqUV19j0kMv6lSexedLUdqVInHxdNKO7dKYr7CxR2mlDvZQhauPXYVjGQyrBZARE0XaiT2adfCshsLcEtWjh2RkRpqWFKcPnqZV2VZ5zq9erzp1Xq9DZb/K/PWL5vNmZT/1/r94Qrf9f/nU5SKVVyXzGnb64Gmdtle/ZX0+mPUBBoYGXD17lY97fsyjB5rPVSXNg1PX8XjdD2e/ipz9ZZvGfGc/dcNU+Imrz6U+zv7q7d09eOG5bO9Vp6/hLK+99hqnTp1i69atGo2jW7duBaBRo0b5ljNt2jTWrFmDpaUlc+fOfWoA17MmjaOvqKyGQ20NobGxxR9+D4+jMp905476RbV06dLY2NhgZGREWloa06dPf2oS7+Lg5KT+gnn79u08l7l1Sx1BVJQR6QsqqwHSwsKiQIM+BQQE4Orqyo4dO0hJSdGpSz2oo4IL83do3LgxZ86c4ejRoxw+fBgrKyuqVq2KgYEBNWvW5OjRo4SHh3PixAn8/f21Rj3XqFEjO5VDZGQk69atY+bMmSxevJjevXvj7Kz967M+WbtuE598/AFvtmuBnZ0tjx497pKrVCrp1UudE3j5Ct1G3dy5az/d3+7Au/26a20cHTK4D0qlktNnznPr1uMH9UmffEDHDup0FiEfT2Pa9NlF+Vl67fDmg3Qc1Y2A5rWxsLEkPjoue55CqaRhZ/XgY3vXab4cPY/y8nL36m3S09SPPa91DGbD3NzHhEKppGVfdePXob/0M+H9qc2HaTmyEz7NAjG3WUZC9OM8hQqlgsBO6gejY2v3Flt5d86FYmBkiGedKti5OvLoTu7Ifpcq7ngF+aBKV3Fq0+Hs6Y36taaMd1lunb7GhV3/5VqnZpu6OJZzJvzqHS7v18wHWxIc2LSft0d1p07zuljaWBKX4zhWKpU07azO071zrW6DXBS0vOM7j3F857E8y/vl5HKs7W1Y+Ml8zuR4+b1w7DypyalY29tQu1kdDv1zUGPdxu3VAw2eOVhy/jZ7Nu2lz+heBLUIwsp2HrFRj5+/lEolLTo3B2DrH5ovv8+qPFW6ivc/H0paSho7NuwiPib3KLJvD+kKwL9/bMvOF3j5zBUMjQwxMTXhtVYN2PHnzlzrmJqb8kYPdZTHzgJ0fRXiSWkn92HSugeG1euBuSUkPL7GoFBiWEf9wT7tiG7XLNW9GyjtSmFUu6nWxlHjJh3U5V0+RUacOrWIwtwS086DUT16SNp/+9SDROVc5/VOAFobb0u6fZv28c7od6jXoh6WtpbEReW+xjfrrP74s/2P7c+lPE8f9UeXK2fy/7jqXsmdcbPHYWBowIUTFwh5J0Tj+lZSXdt0hMDRHSjfohYmthYkR+V+LqrcuSEAl/7Y91zqU8rHA4AHZ0Kfy/aEfurQoQM//fQTCxcupEGDBvj4qHvOnD59mp9++glTU1O6d++evfzNmzdJTU3Fyckpuw1g9+7dLFmyBENDQ+bPn19sKQvzIgMyvaKyEuFmDXqT08mTJ59LHfbt07xgnzp1irCwMMqXL5/dFbxGjRqkpqZmRx7mlJKSQocOHejevftTGzALy8fHBzMzM06dOsXdu5pfg2/evMm5c+ewsrJ6JjlOdeXm5kaZMmW4ffs2V69qfhWMiIigRYsW9OnTh/j4HDdMhYK2bduSkJDAP//8w4EDB6hSpUquAZa0KezfIevr0N69ezlx4gS1atXKblitXbs26enpzJkzh9TUVIKDg7PXi4uLo2PHjrRt2zbXduzt7enXrx9VqlRBpVIRHh6uw9568U6fPs9ff23FxsaaVSsXYG+vzjFqYmLCgvkzqVqlEhcuXmHdutyRVw4Odnh7e1KhQrlc02d+PZe0tDSaN2/Ml19MyI5aVigUDBzQk49DRqFSqZgw4YvsdSpXrsiH49S5735etOKlbhgFuHXhBse3HcXc2oKR88Zl50Q0MjFi4PQhuHmV5e6V2xzdnDs3kpWdFS6erji5l34m5RVUWkoa/yxVN3h3HNmV2q0fp48wszJnyLcjqOhXiYh7D/n75w1F2lZxuXfhJme3HcfM2pw+c0dl5wo1NDGi6/RBlPZyI/zqHU5vOZJrPQs7K5w8XXBwdy5yeae2HOFBaBhGJsb0+XFUri75ZatXoP/CsSgNlOz79V8ibj3+UHdio/r69tYnvXLlIvVuWJ3OX7wLwOZvVpOhep5jhT47Ny6EcmTbYSysLfhw3vjsvG9GJkYMm/E+Zb3cuX3lFgc3577OW9lZ4+rpRulypZ9JeQUVHxPP38vU58XQ6e/j3/hxehcTMxOGTBtGtTo+JCUksX7h2iJt63m6dv46B7YexNLagk/nf4x1jv035qvReFQqx80rN9mzKffzkrWdNWU9y+JSrkyRy4uOjObk/v8wNjVmzIzRmJqpe/UoDZR0HtiJN3u3IzE+kV+/fzxQZkR4BNsyR4keMWUYNepVz55n72TP1EWTKV22NJfPXGHrWt0adoXQRnU3lLQzh1GYWWDWfyJk5R41NMK0xwgMyriTHnaLtP9yfyxUWFijdHZD4Zj7mpWyTf3B0bBaAMbt+oBBZpyQQolR0w4YBb9FRno6yesWP67Dzcuo7t9BaeeISYcB6m75mXUwaf8uhj61UUVHkrJrfbHsgxcp9EIoh7YewsLagonzJua6xo/4agTuldy5deUW+zfn3v/Wdta4ebpR5olrVGHLy1KhSgUAbmgZCO5Jw6cNx8TUhIjwCD7t++lL0zAKEHHhFqFbT2BibU6LecMxyXwuMjAxovFXA7Cv5MqjK3e5tvlorvVM7Syx9SyDdblnm37GoYo7AJGXnv27uNCkeo7/CsLNzY0PP/yQuLg4unXrRv/+/enfvz9vv/028fHxTJ48GQcHh+zl+/TpQ+vWrfn338e9wr7//ntA3Tt25cqVjBkzRus/be0fz4JEjr6isvI9HDp0iIsXL2bnrbx27Ro//vjjc6nDmjVraNKkSXYD2sOHD5k4cSJArhHQevfuzdGjR5k0aRJz587NrntaWhqff/45Z8+epUqVKri5uT3zOpqZmdGlSxeWLl3K6NGjmTt3bvYAVJGRkYwePRqVSkWXLl2KrVt9Xnr37s20adMYO3Ysc+bMwcVFPapmYmIi48ePz8738eQgWe3atWPevHl89dVXpKam8uabb+q8vYL+HXx9fXFwcOD3338nPj4+V1h83bp1mT17Nn/8oX5QzZlv1NLSkoyMDC5dusSyZcvo1atX9rwLFy5w5coVzM3NqVChQsF22gs0ZNhH7Kq2luDgIK5fPcz5C5epUN4de3s7oqKi6dS5v0ZX0aFD+vLJxx8QGnqLipXqZk8/deocg94by7y5Mxg7ZigDB/Tk8pXrlHVzwdm5FGlpaYwc9TGbNj/+8v7+sHezk2PXrOnDrh15NyAsXrKSJUv/94z3wPO3aMI8yq75gmr1ffn+wALuXrmNk7szlrZWxEfH882g6Rr7vHnv1nQc1Y0Ht+4zosGgIpdXGH98t4py1Srg3zSAkXPHERkWQdT9R7h6lcXEzISYiGhm9JlCYqz+dB9+0uqJP1HG+zO86vvwyf453L9yB3t3ZyxsLUmMiWfRwK819lWD3i1oObITkbcf8HmD94tUXnpKGksGf8N7v0zEvYYnE3bM4sH1eygMlDh7qlNgnN16jPVTcqe52DZ3PVWb+OHh58WE7bMIv3YXUwvT7Abbv2as5ORfmlGLJcnc8T/g/ns5qgfV4KeDi7l95RbO7qWxsrUiLjqOLwdO1fjbtOnzBm+P6k74rXAGBvUvcnmFsWzaElwquBDYtDaTln3Ggzv3iY2Kw9XTFRNTE5ISkpg5bAZhN8LyL0yPfDP+O2Z7e+Af5MfKw8u5efkWZcqVxtrWmrjoOD5+9zON/de+75v0Gd2LsFthvF2vZ5HLmzHmaxZs/pHGbzQk4DV/7oTexcm1FHaOdiQnJRPSbxJht3Lv1+9DZlPW040qNSvz7eqvuXfzHrHRcZT39sDI2Ig7oXeY2PcTvcyLLEqWpJWzMR81E0PvGlhOXooq/BZKh9IoLKzISIgjaeEUdQ7RHIwatcWkdQ9UEeHET+qbPT394kmS/1yCSbs+mDTvgnGD1qge3kNh54TSyoaM9DSSln+L6kbubt2JS2ZgPuorjBu/iWGtxmQ8uo/SsQwKc0sy4mNI/CEEkjRzwL8M5oyfg4e3BzWDarLs0DJuXrlJGfcy2df4zwd8rnFNadunLe+MfofwW+H0qd+nyOVlsXNSv4Pl7KWgTWW/ylTLzL+docrg4wUf57ls5P1Ivhj8RZ7z9dWu8Yux93bDLagavQ59y6Mrd7F2d8LU1pLk6Hg2D/hW47zw7dOcwNEdiLn1gF/rj3pmdTF3UqeiSI5+eRqgReH06NEDFxcXfvrpJ44fP46xsTH+/v4MHjw43/FCoqKiOH1a3WsoPDycDRvyDgLp3Lkznp6ez7TuII2jrywPDw+Cg4PZsWMHnTt3pn79+qSkpHD48GHq1q1LSkrxJ2/28fFh0KBBBAQEYGNjw6FDh4iNjaVVq1Z069Yte7nmzZvTu3dvli5dSocOHfDx8cHR0ZEzZ85w79497O3t+eabb4qtnqNHj+bcuXMcOXKE119/ncDAQAAOHz5MfHw8DRo0YOTIkcW2/bz07t2bEydOsGXLFlq3bo2vry+WlpacPHmSyMhIPDw8+OyzzzTW8/T0xMfHhzNnzmBgYECbNm102l5h/g4KhYKGDRuydq26IS5n42j16tWzB9zy8PCgfPnyudb99NNPeeedd5g6dSqrVq2iQoUKREVFcezYMdLS0pg0aRKWltpHr9ZHd+7co3bdVoRMHEm7ti2o7luFqKgYflu5ls8mf82VK9cLVN7SZas4ffo8Y8cOpeFrdanuW4WHDyNZ+b91fPPNPI6fyJ2PKSgoMPu/a/lXf7K4XLZt18ypVRJFhkUw8Y0xdBjRhVrNauNeuRzxMQnsW7+b379ZSVhowRLyP+vy8pKels7X/b+gUZcmNOrclLKVy+FWyYrIew85vu0o63/4ndhI3UdlfxGiwyL5+o3xtBjREZ9mAZSpXI7EmHiOrd/H5lmreRhasAaswpR39/xNvmo1jiaD2lGtqT+O5UqTmpzCtcMXOLR6B4dXa3apVKWlM7fHFF4f8hY1WtfF2dOV1KRkLuz+j12LNnFh5/PpWVGcIsIi+KDNSLqOfJvazepQrrIH8THx7Fq3k9++WcG90ILlzHvW5eUlLTWNqf0+J7hjE5p2eR2PKuWxLWVHZHgk/+09ydp5v3P3esnK9wfw8N5DBrUaQq9RPQlqXo8KVcoTFxPHtnXbWfz1Mu5cL1hu4cKUF347nEGthtJ7VE8CG9XCs2oFoiOj+ef3rSyf/ZvWvKHxsQmM6DCat3q3o+lbTXD3Koutoy23r91m1997+N+81dnd8IUoioyoCOJnDMekZXcMq9dF6eJBRmI8aUd3kvzXrwXO85nyzyrSr1/AKPhNDMpXVZcXF03qkR2kbF2D6o7m85jq5mUSZo7CuOXbGFT0RelanozoSFKP7SJly0oyoiKe1c/VOw/DHvJ+6/fpPrI79ZrXo3zl8sTHxLNj3Q5+/fpX7hbwGl/Y8pRKJRbW6oCP/KJAcw4y5VjGEccyeac+C79VMnqhPSk+LJLVrT8mcGR7PJr741DZneSYeC6t28+Rr38nOvT5/C6FUoGJtXqcg5SYl/MDgb7JeI6j1RdGcHBwrh6hedm+PXf6DFtbWy5e1C1/cXFRZDyLz/lCL8yePZs5c+YwYsQIhgwZkmve0aNH6dGjB7Vr1+aXX34B1BGG8+bNY+PGjYSHh+Ps7Ez79u0ZOHAgwcHBmJiY5Dpovb29MTAw4Ny53ANRHDp0iF69elGvXj2WLFmSb50++ugj1q5dy4oVKzh8+DCrVq3iwYMHeHh40LVrV3r06KF1MKWtW7eyfPlyzpw5Q3JyMi4uLjRo0IABAwbkyjv5xx9/MH78eDp16sTUqVOLtE+zpKSksGLFCv7880+uXr2KkZERFStWpGPHjnTs2FGjvlWrViU9Pb3IJ3he+zyLSqVi7dq1rFmzhosXL5KRkYGbmxtNmzalb9++2NjYaF1v2bJlTJ06laCgIBYtWqQx/2n7UNe/Q5ZNmzYxcuRIrKysOHToUK58pX369OHAgQP06dOH8ePHa6x76tQpFi5cyPHjx4mKisLS0pLq1avTt2/ffAeietLTBkwSz1eXMs8vsbZ4OmeFyYuugsh0TfX0SBjxfMWodBz5WhS7f07Of9FVEJmSPh32oqsgMnVZL6/w+qItDvkvJJ6bIbd+fdFVKFbzyr7z3Lb13ku+L58kjaNCiFeCNI7qD2kc1R/SOKo/pHFUv0jjqP6QxlH9IY2j+kMaR/WHNI7ql5e9cfTH59g4+rLvyyfJgExCCCGEEEIIIYQQQohXkuQcFa+MuXPnFnhkswkTJmBvb1/kbY8ZM6ZAy9vb2zNhwoQib1cIIYQQQgghhBAlX0FHkRe6k8ZR8crYv38/hw8fLtA6I0eOfCaNo08bbU0bV1dXaRwVQgghhBBCCCGEKGbSOCpeGVkDUb0IL3rkNSGEEEIIIYQQQgihSRpHhRBCCCGEEEIIIYTQYzIUW/GRAZmEEEIIIYQQQgghhBCvJIkcFUIIIYQQQgghhBBCj6kUL9hMjMYAACAASURBVLoGLy+JHBVCCCGEEEIIIYQQQrySJHJUCCGEEEIIIYQQQgg9pnrRFXiJSeSoEEIIIYQQQgghhBDilSSRo0IIIYQQQgghhBBC6DGJHC0+EjkqhBBCCCGEEEIIIYR4JUnkqBBCCCGEEEIIIYQQeizjRVfgJSaRo0IIIYQQQgghhBBCiFeSRI4KIYQQQgghhBBCCKHHVIoXXYOXl0SOCiGEEEIIIYQQQgghXkkSOSqEEEIIIYQQQgghhB6T0eqLj0SOCiGEEEIIIYQQQgghXkkSOSqEEEIIIYQQQgghhB6T0eqLj0SOCiGEEEIIIYQQQgghXknSOCqEEEIIIYQQQgghhHglSbd6IcQrYY5z8Iuugsi0i7gXXQWRqUyGPAboi2svugIil+j0xBddBZEp6dNhL7oKIpPpp3NedBVEJuM/h7/oKohM6dLPWTxHKulYX2wkclQIIYQQQgghhBBCCPFKkpARIYQQQgghhBBCCCH0mOpFV+AlJpGjQgghhBBCCCGEEEKIV5JEjgohhBBCCCGEEEIIocck42jxkchRIYQQQgghhBBCCCHEK0kiR4UQQgghhBBCCCGE0GOSc7T4SOSoEEIIIYQQQgghhBDilSSRo0IIIYQQQgghhBBC6DGV4kXX4OUlkaNCCCGEEEIIIYQQQohXkkSOCiGEEEIIIYQQQgihx1QyXn2xkchRIYQQQgghhBBCCCHEK0kiR4UQQgghhBBCCCGE0GMSN1p8JHJUCCGEEEIIIYQQQgjxSpLIUSGEEEIIIYQQQggh9JjqRVfgJSaRo0IIIYQQQgghhBBCiFeSNI4KIYQQQgghhBBCCCFeSdKtXgghhBBCCCGEEEIIPaaSIZmKjUSOCiGEEEIIIYQQQgghXkkSOSqEEMXI2MacgJEdKN8yAHMnW5IiY7i58xTHvl1L3J2IohWuUNB+/SSsyzmztMbgvBdTKqja83W8u7yGXUUXAKKuhnHp9z2cWfIvGekvb2pvC2sLOo7sRkCLOtg52RETGcN/u07wx3f/4+GdBy+kvOa9W9N38kBm9J3Cie1H81zOr0kArfq3pYJvRRQKuHPlNttX/sue33eQnpZe4LrrExNrc4JGdsCrRQCWTrYkRMZwfdcp9n+3lphncF68s3YStuWcmeOX93nxJKWhAb02fo5TFXd+6zqVWwfPF60eeszCxoJuI7tTt0W97OP4+M5j/O+733hQmPOiEOVNXPQJtV+vnWeZD+89pH+dPk/drkeV8ny9cRYbFv3JkqmLClxvfWdlY8WgD/oS3Kohjk4OPIqIYv+OQyyctZh7t8OLVLZCoWDJxvm4ebjQtNobeS737dLpNGwelOf88Lv3aVWrQ5HqorfMLDFp3R3DGvVRWNuRERdN2rljpGz6jYxH9wtWloUVVtP/99RFkjevJGXjslzTFBbWGDfvgmH1eihsHciIjiD9yhmS/1lFxv07Bf1FIpNKpaLHoNHcunOPvX8//e8i9OOe8SQDQwO++etbPKqUZ2KX8Zw5eDp7nk9dX6au+lKncsJvhTMwqH+Bf4M+MLExp/bIDlRoGYCFky2JkTHc2HmKI9+uJfYZPEt1Xj8Jm3LO/PSUdwyAUr4e1Br8Bi61K2NqZ0nCw2hCt53k8LdrSbgfVbR6CA0SN1p8pHFUCCGKibGNOe3XTsLOy5WU2EQiLtzE2t2JKt0aU6FlIOs7TyHywq1Cl197XGec/SqSGBmb5zIKAyUtFo7Eo5k/ANE3wslIU+FYzZ1Svj1xD67Bpj5foyrhjW3aWFhb8NnaabhWLEtCbAI3L9zAyd2Z4K6vE9iyLp93mcjNCzeea3kePhXoNq5nvtvq9mFP3hzSEYDoh1E8vPOAspXLMWjGMOq3bcDXA6eRnJCkc931iYm1Oe+snYRDRVeSYxN5cOEmNu5OVO/amEotA/mtyxQeFOG8eG1MZ1z8KpLwlPNCm3rD3sSpinuht1tSWNhYMP2PmZT1Uh/HNy6E4uxemmbdmlOvVX0mdP6IGxdCi728ct7lALhw7AIqleb1J/phdL7bHf39GAyNXs5HWSsbK5ZsmEt5Lw/iYuO5fP4qru4uvNX9DZq0bsSADsO4fP5qocsf+tEAfP2r8ijy6S+uFatUAODU0TOkqzQ/pD16+KjQddBrZpaYfzATg9LuZCQmoLobitKhNMb1W2BUsz4J336I6m6ozsUZuHgAoIqLRhV+W+syGZG5G7wVTq6YD5uK0t6JDFU6qruhKEzMMKrbDEP/hiQtmUHaqQOF/YWvtO8XLOP0uYvY2li/6KroPX25Zzyp8/td8ahSXuu8+Nh4zh05+9T1K9X0xtDIkLCbYTrXXZ+Y2JjTae0k7DPfMR5mPktV69YYz5aB/NF5ChFFeJaqN64zpfN5xwCo2rURwdP6oTQ0ID48ikdX72Ln6YJvz6ZUaF6LNR0+I+ZmwRvQhXgRXs4nSiGE0AONpr+LnZcrN7adZOvQOaTGJ2FgYsRrX/SlcpeGvP7DMFY3+4gMVcG/AQaM6oD/sHb5LletZ1M8mvmTEpvI5v7fcPeAOhrOuZYXrRaPpmyj6tQc3Ibjs/8scB303YDpQ3GtWJYT24/y/bCZJMUnYWRiRL8p79G4S1PenzOGcc1HkKHlhb84yvOs4cXYRRMxszR76nbqtgnKbhhdNXM56374nQyVCgtrC4Z+Nwq/JgEMmDaEOcO/KdgO0RMtp7+LQ0VXrm4/yYZhc0jJPC+aT+mLb5eGtJ0zjMXNC3deBI3sQD0dzosnOXq7UXdowdcriYZNH05Zr7Ic3XaEmcNmkBifiJGJEYOnDqFpl2aM/WEcw5sNQ6XjeVGY8swszXAu60xCbAIfth9T4N9g42hLyM8fZzewvow+njmO8l4e7Nm6n/HvTSIhPhFjE2MmTPuAdt3a8OW8T+kS3Fvnv1NOgz7oR7/hvfJdzsLSHJeyZYiLjadP2/cK8zNKLNPuwzEo7U7amcMkLp4OyYlgaIRpt2EY1W2Gad+PSPhiCGTotv+VLupGnLRju0hePS//FRRKzN6diNLeifSwmyQu+Dw7UtTQty6mfcdh2n88CV8ORRVW+AaQV01GRgY/LlrOT79ItKiu9OGe8aRy3uXoNLRznvOvn73G+I4f5jm/UfvGVA2sRtSDR8waMVOneuubJtPfxd7LldBtJ9mc4x2j8Rd9qdqlIS1/GMaKQr5j1B7VgQAdnqVK+XoQPL0/CgXs/vQX/lv0D2RkYOFsS6t5wykTUIkm0/qzrvu0wvxEkYeXt7/fiyc5R4UQL1xGxsvXQcDWswwVWgWQEpfI9pFzSY1XR/mlJ6eya+xCIi/dwb6SK+VbBhSoXLNSNrT4aSQBo3XrxlipYwMAjs/5M7thFCD82GWOfP27eplOrxWoDiWBi6crgS3rkhiXyA8jvyUpc/+nJqey4MMfuH35Fm5eZQlsWafYy1MolbTo04ZPVk3FxtE23221H94FgO0r/2Xt7NXZja3xMfH8MGIWcVGxBL3ZEM8aXjrVXZ/Ye5ahUkv1efHXyLmk5DgvNn+4kIeX7+Do5YpXAc8Li1I2tF8wkqBRBe/eq1AqaPXVQFBAekpagdcvSVw93ajbsh6JcQnMGvk1ifGJgPo4njNuNrcu36Sslzt1W9Yr1vLKVfYA4NblmwX+DTUa1OCbv76lkp93gdctKTwqutOkdSPi4xL4+P3PScjcrynJKUz+YDrXLl2nQqXyBLdqWKByHUrZ8/XiLxg0pp9Oy1es4gnA9UuhBdpOSad0dsOwRn0ykhJIXDZT3TAKkJZK0vLvSL93E4My7hjW0O08AVBmRY7e0+2YN6xRDwMXDzJSU0ic92muLvRppw+S8u8aFAaGmLR/V+c6vOoeRkQyYvznzF20/EVXpcTQl3tGTkqlkvdnjkChUJCaklrg3+ToUoqBk9Ufe+Z8OJtH90te9LudZxk8M98x/nniHWN7jneMCgV8ljIvZUObn0ZSR8d3jAYh3VEaKDn240b++3kLZL7PxYdH8c+IuWSoVJR9zQcrV4eC/UAhXhBpHBVF5u3tTdWqVV90NUQJFBsby5QpU/jzz9xRiz179sTb25ujR/POx6jvvDoEoVAqubH1BMlR8bnmZagyuLhqNwCebevqXKZbQx/e3jWT8i0CiA+P4uCX+Uc+WJS2A9Daff/BqesAWLq8fA8tDdo3QqlUcnzbEeKj43LNy1Cp2LV6GwD13mhQrOUZmRjxxcav6fPZAAyNDfn925U8uJV3rjpbJzvcK6uj4f5auF5jfnxMPPvWq4+doLcK1jCiD6q2V58XV7adICla87w4s1r92yq/oft54fGaD+/umIlXiwDi7kexa1rBIoICB7ahTI0KHFm4ieS4xAKtW9I0bt8YpVLJ4a2HiXviOFapVGxbtRWABm11+2BS2PI8MhtHb14qWOPo4C+HMnnFVBzLOHJ462H2/72vQOuXFK07tkCpVLL7n33EROXu0qhSqfhz5d8ANH+zqc5l1m0UyNp9vxHcsiEPwh/y/dT8oxezutRfvXi9ALUv+QwDm6BQKkk7cxgSch/XZKhIPfivejl/3a/B2d3q7+mWysWgsh8AaacOkvFQs9tv6u6N6uWq+KOwkK7h+dl36Bhtur3L9j0HcHSwY+R7fV90lUoEfbln5PTWoPZ41ajE+oVrSYxLKMjPAeDdSQOwtLFk78Y9HNl6uMDr6wPvzHeM63m8Y5zLfMfwKsA7RtmGPvTcNZMKme8Y+/N5x7AobY9r3cqkxCZydI5m77OYmw/Y89lydn289KVM3fUiqch4bv9eNdI4KoR4YWbMmMEvv/xCevrLd9N0rqmOuAk7elnr/PATVwAoU1v36Cc7L1eMLEy4uGYPq17/iPvHr+S7Tty9SAAcq2nmUrSv5KZe5m4Rk7broYo1KwFw6dgFrfMvH78EQOVA3T7sFLY8IxNjPKqV5/alm3zeNYQ1s1Y+dTsOLo4AJCcmc/eK9rx0YdfvAeBZs+RFjrpknhd3jmk/L+5mHtNugbqfFw5erhhbmHDm9z0savYRd0/kf15ksStfmqBRHYi8do993/6h83olVVa05YU8juOLJy4CUDWwWrGWV66QjaOVanoTExnNDx/NZmq/ydlRRy8bHz/1deTU0dNa558+rs6l51enus5lVqjkgbmFGRtXb6ZLcC9OH3t6Pj4AryoVAbh66dVqHDXwUB/X6dfOaZ2vClUf7wYVdTtPAJQu6o9e6To2jirtnNTbuqX9epYRH0NGQiwKpQFK94o61+NVdS30JgmJSbRt2ZR1v8yjerXKL7pKJYK+3DOyuJR3oduo7ty5doffZq3QaZs5Va5VmXqt6pOclMziKSV3ED9d3zFcCvCOYZ/5jnFhzR5WvP4RYfm8Y5QNqopCqeT2/rPZkatP+m/RFk4t+Zf4cBmUSZQMknNUFNnff/+NQqF40dUQJVBhcqWVFNYezgDE3tKehDzu9kMAzJ1sMTQ3IS0hOd8y75+8xppWIUSc071B4cJvO3H2q0jNwW25d+QS9w6qH0gdqpUjcKw6X9PZZVt1Lq+kcPYoA8CDW9pHdH54Rx29aetkh4m5ab6DGxW2vNTkVH4Y+S37/9yNKl33412hUKBQKLSmnDAwMgCglKuTzuXpC9vM8yI6j/Mi+o76vLB0ssXI3IRUHc6Le/9dY2mbEO4X4LzI0nKGOqJ3y0c/k55c8O55JU2ZcurjOPyW9gEo7t9WH8d2TnaYmpuSlM95UdjyshpHH9y5T8t3WlGjQU0sbCyJuPeQA5v2c/jfQ1rLWzf/D45uP0J8TLzW+S+LsuVdAbhz857W+Vkj1Ts6OWBmbkZiQv6NxGdOnKd7835cOqv7xwOvzMjRe7fD6NTrLWq/VgtrGyvC7z1g+9+72LVlr85llSRKR/VxrYrQfr1XRaqPa6W1PRibQsrTzxOFY2kUJmaooiNRWtli+HonDMp6QkYG6Xeuk7p/CxkP7mpf2cDgKRVVz1PaO/HyfWJ+tnyqerN60WwqV/J80VUpUfTlnpFl2FcjMDI24ocPZ5NaiHt27wnqiOG/l/7Fw7sld5Agm8xnqZg8nqViMt8xLArwLBV+8horW4XwUMdnKXtvdYBF5GX1tatccA0qtqmNlYsDiZGxXN10hCt/lczIXH336sVzPj/SOCqKzNNTHjSEeJKZg7qbW9Ij7aM8JkU97k5kZm9FrC4PLnlE2z3N+d92YuZojd/7b9LufxOIufkAVWoaNhXKkJ6UwuEZqzj985YCl6vvrO3V+z82j/0fl2P/W9lb59s4WtjyUpNT2Lt2p871zupyb2xqTJkKLty9ekdjGTevsoB6xNeSxjxzPybqeF7o8kB/txDnBYB/n+aUre3NyeXbuXVIexTLy8bawQZ42nH8eLq1vXW+L7qFLS9rIKURX4/EzNI81zpNOjXl6PajfDVkmsb2d63b+dT6vCzsHNS5iaMfxWidn3O6rb2NTo2jp46eKXA9PL3VjaOffTsRiyf+Tm27tGLvtgN8OPATnbZfkiis1Md1Rrz2/Z8R//i4VlhakxH59PPEIHMwJoWZOeYT5qLI0eBpWDUA4+C3SF49j9R9m7KnqyLUjUdZuUo16mhXCoWpeWa5lvn8IuHnK+m/CkNf7hkAb/RtS7Xa1di8fBNnDxX8elbJz5uqgdVITU7lz5/WFXh9fZL1jpHXs1RyjmcpUx2fpcIK+CyVlUc0JS6R1gtH4vlEftNKb9YjdPtJNg36nrSklAKVLcSLIt3qXyIfffQR3t7eHDlyhPfee4/q1atTv359fv9dPejK1atXGTt2LA0aNMDHx4cmTZowZcoUIiIed6mNjo7G19cXPz8/EhM1H3bT09MJCgqiWrVq2evllXM0LCyMSZMmERwcjI+PDw0aNOCjjz7i1q3HuQ8vX76Mt7c37dppjoj31Vdf4e3tzXvvaY6QOnz4cLy9vTl7Vt0tLCYmhi+//JI2bdpQo0YNAgMD6dmzJ+vXa+bsK6is/JeRkZF89913NGrUiBo1atC2bVuWL1+eZ/Tjhg0b6N69O/7+/tSsWZNOnTqxevVqjUiw2bNn4+3tzebNmxk/fjw1a9akTp06zJ07t0j1jY+PZ8GCBTRv3hxfX1+aN2/OsmXLAIiKiuKTTz4hKCgIf39/3n777Tzze+7atYv+/fsTGBiIr68vLVq0YObMmURHR+da7vbt23h7ezN8+HDu3bvH2LFjqVevHtWrV+ett95i9erVuZb39vZmzZo1AIwfPx5vb28OHcodLaRSqViyZAlt2rTB19eXBg0aMH78eB480P+vvQamxgCkJ2n/sp2e40Eha9niEnUtjNibD1Aoldh4OGPn5YrSQElKXCJJj+LyL6AEMs7cpyl5PJDlnG6sw/5/1uXlJSYimisn1V3027+vORKrg4sj9dupc3EZGpW875uGmfsmLY/zIucDtGExnhfWbo40HNeF2LBIdn75W7FtR9/ow3nh6FIKSxt1Y869G2FM6vExXbw70sO3G9+NnkXMoxgCmgQw/OuROvyil5OJqQkASUnaX2iTc0w3NTMpljqUdnXG2tYKgNuhdxjSbRT1K7xO4yqtmDRiKlGR0TRoWo9Pv51QLNt/oYwyj/3UPF7oc0xXGOW//7MaOBXGpqTu30zc5AHEjmhH3GfvkrL3bxSGRph0HYqBT+3sddLOqCOuDGvUR+lcVqNM42Y57g+GRvnWQYjC0Id7BoCTmxPvjOtFRFgES79YnH/FtXijT1sAdq/fSWR4ZKHK0BeG+bxjPI9nKWMLMwD8BrTCo2lN9n/5P36qOYS5Xv3Y9N73JEbE4NGkJo2m9imW7b/KVM/x36tGGkdfQiEhIZw4cYKGDRtiZmZGlSpV2Lt3Lx07duTPP//EwcGBJk2aYGxszC+//ELHjh2zGyxtbGxo3LgxCQkJ7Ny5U6PsgwcP8vDhQ4KCgnBwyHsQl3PnzvHWW2+xcuVKTExMCA4OplSpUqxdu5YOHTpw6tQpALy8vHB1deXSpUtERua+UR04cACAY8eO5WqATEtLY//+/Tg5OVGtWjWSk5MZOHAgS5YsIS0tjYYNG+Lj48OJEycYN24cs2fPLuouBWDChAn8+OOPuLm5Ub9+fW7fvs3kyZMZO3asxrITJ05kzJgxnD9/Hl9fX+rWrcv169cJCQlh7NixWrvKzpo1i02bNlG/fn0cHR2pWLFoOaRGjRrFd999h5ubGwEBAdy6dYupU6fy448/0q1bN/755x98fX1xd3fn+PHj9O7dmwsXckdPzZw5k4EDB3LgwAEqV65McHAwiYmJLFy4kA4dOnD7tmZOxLCwMDp37szu3bupXr06Pj4+XLhwgZCQEBYvfvxA07ZtW9zd1Xkw/fz8aNu2LY6OjrnKmjRpEtOmTcPKyoqgoCBSU1P5448/ePvtt0lIKHgS9ucpI58u1ApljsuvluPhWQkY1YHm84Zjam/Fv0Nm83Pld1lUdQBb3/8BpYGShl/2o94nPYpt+y9Kfl3YlcocqUB02P/PurynWf31ClQqFQ3aN6bP5AE4uDhiYGRI5dpV+XDJxyQnqhtG0lJLXkdKfTkvWk7rj7GFKf+GLCEl9uWKenua/I5jRY7jWJfdX5jyMlQq1s77nX9X/sP4juM4uecEyYnJxEXHsX3NNib3+lT9IbZNg5d6RPqnKcj1RtvzxDOpg0rFsh9XsG7FRvq9OYSDu46QlJhETFQsG1Zt4v0eY0hPT6dZ22B8/XXPvVki5JfyJ1cqqfz3f/rtq6Ts/ZukVT+S/L8f1CPPp6eR8eAuySvnkLLrTxRKJSZv9X+8zrmjpF09i8LQCLMhkzGo9n/27js8irJr4PAvm15IhUAKECAhdEilF8HQQeWVJkhRoyJFqoBYkSLlUxQUlCKKKAhSpEkvoSUBQq+hpdDSe998f2yyELMhm0YSOPd75XplZvbMM7Oz++yceYoX6OmjU8USg15D0W/X83HL1qzMYhykEIWrCHUGwOh5YzE2NWbZjB9JTij6738LGwva9GoLwJafK3erUagYv6V0DVUPZYxtzDm5YCOnf9xGSlQ8manpBO8IYPeYHwBo+Ho7rJzty6QMQpS2ytfsRBQqKiqKbdu2YWdnh1KpJDY2lhEjRpCRkcGSJUvw8fEBVD+oly1bxqJFi5gyZQrr1qkmCnnllVfYs2cPu3btokePHnli79ixA0BjS89c6enpjBs3jpiYGD799FOGDh2qXrdlyxamTZvG+PHj+ffffzEwMKBjx4788ccfnDx5kp49ewKqFqxXrlxBV1eX+Ph4rl27RsOGDQEICgoiISFBXbZdu3YRFBRE3759mT9/vnr808uXLzNw4EBWrFiBr68vRkZGJTqvfn5+ec5feHg4b775Jtu3b8fHx4fu3bsDsGHDBjZu3EjDhg1ZunQpdnaq8XWio6N5//332bZtG15eXgwcODBP/NDQUDZu3KhuhVvS8ThPnz6tLgfAmjVrmDVrFt999x0tWrRg/fr1WFiourdMmjSJ7du38/fffzNjxgwA9u/fz/Lly7GxsWHlypXqOOnp6cycOZMNGzYwadIk1q/PO5vhuXPnaN++Pd988w3m5ubqc/LJJ5+wcuVKRo5UjfezcOFCZsyYQUhICAMGDKBfv375juHBgwesWbMGLy8v9TnMTebv27fvqddhectMTkPXQE/94+G/FAaPv37LqruJZT073D98FWWWkt3vfMvDJwZXD95ygphr4fTbMZPmvj24vsGPqCtFH7OxokpNScPMQB/9As6/nsHj5QW1YCjLeE9z/shZVn++nOGfv0O34b3oNryXet2DO/dZPu1HJv40rViztJa3jBTV50KvgPOo+ww+F80GdcKpfVOubvcneO+ZMtlHRZWWkoa+gT4GBZx//TzXceHd8IoTL+pBFKuf0vLnxrnrnD96DreO7ni/7M31nAk6XiQpyanoG+hjaKi5xY++wePlaVq8T8Xx6H4Ei776scD1l85eIcDvFK07taRD17bqSaKeC+mpqtaYegW0uHqipWZ2euHfU1kXA8i6WPDYe+m712PQsS+6NWqiU81ePf5o6oo5GI+eia5jPUxGffl4n0ol6Xv+QlHdEX23dmSnVr66QFQOFaHO8BncjRbt3Ti63a/A8agL4+3TEn0DfW5dukXIde0mRavIMgq5x3gWv6Vy46YnpnB2xa5860OPXuLh2ZtUb1EPpy5uxAQXMK6yKLJsGXW0zEhy9Dnk4+OjTsgpFAo2btxIXFwcI0aMUCf2QDXhx6hRo9i3bx9BQUEEBQXh5uZGhw4dsLS05PDhwyQlJWFqqhrXLj09nb1792JqasrLL79c4P737t1LaGgoPj4+eRKjAK+++ioHDhxg9+7d7Nmzh969e6uToydOnFAnRwMCAlAqlfTs2ZOdO3cSGBioTs75+fkB0KlTJwB1F+saNWrkmRiqUaNGzJkzB4VCUSoT/wwcODDP+XNwcODjjz9m9OjRrFu3Tp0cXblyJQBff/21+n0AsLa2Zvbs2fTu3ZtVq1blS456eHjkGZ5AoShZw+4BAwaozxlAr169mDVrFqBKhuYmRgG6d+/O9u3bCQl5nBxbvXo1oGox+2QcAwMDvvjiCwIDAzl79iynTp3C0zPvODOffvqpOjEK0K9fP2bPnk1ERAQxMTFYWVlpdQxDhgxRJ0ZBdQ5fe+01fvjhB65dq9g3zKmxiRhammJoqXlcSCOrx2OEpUZpHjOopOp090ShqyDs6KU8idFcUVdCuLv3DHV7elO3t3elSo46Na7D8C99Na779fPlJMYkYGZhhllOt9D/qmL1eHl8VJzGbZ5U2vEKs/e3XVz1v0znwT44ODuSkpTC5RMXOfTXfpxzZqmPfRRT4v08aykxiRhZmGJUwOfC+InPRXIZfC7MqlvR6ePBpMQmsu/zX0s9fnmr07gu7858T+O6nz/7iYSYeK2v47gozeMtp3YdKQAAIABJREFUPqm04+W6dfkWbh3dK+WkY9pwbeLCR7MnaFw3f8a3xMXEYW5ZBXMrc43bWFo/Xh4TVX6zAF+7GEzrTi2xc6xebmUoC9lJCeiYVEHHVPN1rWP6+PxnJ5b8+z47PgZlfAwKcyvV5Eo5ydHshBiSF0xAv9XL6Db0QMfIBOWjcDL896G8ex3j8fNV28VV7i7CovxU9DrDuroNIz4eSUJsAj9/9lOh8Qvi9bJqyIpj2/2KHaMiSY1NxMiy4N9ST95jpJTRPUZavOqhTMzN+ygL6MkUdT2c6i3qYV6rWpmUQYjSJsnR55Cra95uaLnjOLZs2VLj9u3atePixYsEBgbi5uaGgYEB3bt3Z926dRw4cIA+fVRjtPj5+REfH89rr7321FaYhe2vffv27N69m4CAAHr37k2rVq0wMjJSd6MHVZd6HR0dfH191cnRYcOGAXDkyBEMDQ1p06YNgDp5tnLlSsLDw+nSpQtt27bF0tJSXfbSkJu4fVKHDh3Q19fn1KlTKJVKIiMjuX37NpaWljRo0CDf9i4uLlSvXp07d+4QERFBtWqPKwtN25dEixYt8vz7yYTkk8lOgCpVVD9G0tJyuutmZhIUFISenl6ehHAuPT09unbtys8//0xAQECe5KilpSW1a9fOs72uri7W1taEh4eTkpKidXLUzc0t37LchHNCQtlU9qUlNvgeFk7VqVJT8w+CKo6qIQSSHsaU2VNdMwfVPmJvFvy0NvaWatKHKg5VC9ymIjKuYkoDL80TLBhXMeXezTBqONlRzVFzcqWqg+p9iXkYrVVLz9KOp43Qa3f59YsV+ZY7NVZNkhJ6vfIks3NF37yHlVN1LBw1fy7Mc67DxDL6XDi1b4JRzkRWY04X3Cpu8HpVC/pj327i2KJNpV6OsmJaxZRGXpq7OJtWMSXsZhh2TvbYFnAd5yYjox9GadUKqCTx9Az0yEzX3B0490FnZsbz2V3YrIoZbt7NClx3J/guNes4Yu9YQ+M2djnLIx5EkppSNi1Hc+kb6JORrnlcu9zn0RkFvI+VlfJhGIpq9gXOAq+wVl3XyrgoyNDy/Ct0Vd1bswt4WJ97MjP/cy6zMsk49i8Zx/7Nt71uzlimWfcrf0s4UT4qep3Ronc79RjVv535vcC4s/+aC8Cf3/7Bum//yLNOz0CP5u1U90RHtx8ttIyVQUzwPSy1uMcoq99SALG37he6TXZO46SCkqeieF7EsUCfFUmOPocsLS3z/Pv+fdWX16hRo576utztQNW1ft26dezcuVOdYNSmS/2TcWbNmqVuqajJgweqpIyRkREtW7bk8OHDhIWF4ejoyMmTJ3F2dqZRo0Y4ODioJwuKiIjg6tWrtG/fHmNj1UDQLVq0YOrUqXzzzTfs2LGDHTt2oFAoaN68OT179qR///7qbUvivwk/ULWitLGx4cGDB8TGxqqPKTY2Nl+S+r/u37+fJzn6ZEvO0vDfeLk3m7q6uupk6H/X5YqNjSUjI4MaNWpgaKh5sgFHR0cAIiMj8yz/b+xcujmzsxalFe+TrU//Gycrq2JXtBHnb1P7ZTequzlzec3+fOuru6nGlH0UdLPMypCRqBpL0cTWssBtcn9ApSdWrnEXr5y8yODarxa4vlGrJrh38cLFrT77fv8333qXnLEMg4Oua7W/W+dvlmq8p2ndpx22NatzcP0+ja1Q3bqoHkZcOVH02VrL24Pzt6nXxQ17N2fO/p7/c2Gf87m4V0afi6TIOMICC251bteiHrr6ekRcDSUtIZn4e5EFblsRXTx5gVdq9S5wfZPWTfHq4o2rewP+/T1/NzhXd9VDuutaXsfB54OLHG/YtOG84vsaF46f54s3P9MYt04j1ezeYcGhGtdXdqdPBOFu167A9Z5t3Gjv05amHo3Z+Fv+8fFyx/i8EHS5zMo49uP3Gfr+IE4dO83owZM0blO/iaoV++0bd8qsHOUhK+QGek280a3TgIyjO/Ot162juq6z7mjXg8X0q19RWFUj5Zd5ZJ4+nG+9joU1iiqqelr5UPXQS6eqHXqNPcmOjyUzKH9rN916jdExMUMZE6nuhi9EUVX0OiM2MpbLgQUP2VG/hSt6+nrcuXqH5IQkIsLzT9hap2FdjEyMiLwfyYO7hSf0KoNH529T52U3arg5c1HDPUaNnN9SD8vwHuPhWVVsaxd7dI30NU4OZVlH9SAvPuRRmZVDiNIkydHn0H8TXblJpC5dumBiYlLg655sueju7k7NmjU5evQoiYmJ6OrqcvDgQapXr06rVq2euv/c5FebNm2eOmnTkxMOdezYkcOHD3PixAk6duzIzZs3GTJENUlMy5Yt2bRpE8HBwZw/f57s7Gx1l/pcb731Fn369GHPnj34+fkREBCgHirgjz/+YN26dfmSxkWVm5T7r9zJEBQKhfpc29jYqFu2FiR3uIJcJe1G/196esX/eGszwUPusRoY5B2T67/XX0mUZqxn7dauQDwn9sOpmweGlqakxSap1+kodKjfvwMA1zcdK7My3DtxhRajelOzY1NMa1iR9CBvN2wjG3NqdmwKwP2TVzWFqLQC/z3B6xMG4dm1JaYWZiTFJarX6SgUdOjfGYCjW/LfqD6LeE/T7rWOuHfxIikukX1rd+dZV6+FC41bNyUhJp4TlbAFxPV/A2k7oR8uXT0wsjAlNS7v56JJzufi8pay+VzcPnSe24fOF7h+TNBSTKyrsO/z3wg9eaVMylCeTuw6zuAJb9CyayvMLMxIfOI6VigUdOnfBYBDmw+WWbzbl26jp69H45ZNqOZQLd/NrFPDOjRr25ysrCyO7yq778eK7MDOw7w3+S06dW+PuWUV4mMf95RQKBT0Gagac33n37sLClFi1y7dQF9fD/dWLbBzrM79sId51rs0csa7nQdZWVns31Hy772KJPPsMQx7DkGvWWswMYPkx9c1Ogr0WqqGlsoM1O5zorx/F4VVNfS9u2hMjhp0Vo25nnnjPNmJqq7JOiZmGPUfhTImksxzx/JNEmXw8usAGpO3QpSW8q4zzhw6zZlDpwuMt+bsWsytLVj+2U9cPHlB4zZ1m6h629y6WHaJwmft5q5AWk7sR90C7jEa5vyWulaG9xihRy+REhWPsY05Td7ozLlVeeujqg1rYe9Vn2ylklu7T5VZOYQoTZIcfQHY2tpy584d3nrrrXxjQz5N3759+eGHH9i/fz/6+vokJyczaNCgQpN4ua0hX331VV555RWt9tWxY0dA1Z0+t5Wnt7dqfJjc5Ki/v7+6BelLL72kcb9DhgxhyJAhZGZm4u/vz8yZM7l9+zZ//fUX7777rnYHXoCHDx9ibW2dZ1l6ejpRUVGYmJhgaWmpPnZTU1MWLlxYov2VJ0tLS/T19YmMjCQtLU1j69HQUFWLnqclwF9k0VdDubsviNovu9F12Tj2vL+YtNhEdA31aT9nJNb1HYgJvsftf/P+YDCyMsPIugrKzCzi75bsSWvIwXM8On8L22Z16b5qEvvG/EBcTjeYKo5V6fL9BxhZVSH6Wii3dgWWaF8VTcjVu5zZH4h7Fy8mLPuIRaMWkBibgL6hPm/Neh9Hl5qEB4cR+O/JPK+rYlWFKtbmZGZk8SjkQYnjFceJbcdw7+LF6xMHc+3UVUKvqbpM1m1aj/E/fgTAP0s3kVLJWvsCRFwN5eb+IOp1ceOVZePYOmoxqTmfi66zRlLVxYGo4Htc/8/nwtjKDGPrKigzsoiVFgjFdvfqHQL3B+DVxZupy6Yzf9TXJORcx6Nmf0BNl1qEBYdy8t8TeV5Xxcocc2tzsjIzeXD3QYnindh9nPt37mHnZK96zQfzeBSqSrw5N3Nh6rLp6OrqsmP1dh6G5E3IvShuXLmJ395jtPdpy4Lls/jo3U+Ji4nHwNCAj7+eRN36dbgdfJeDO4/keZ2ltQWW1hZkZmQSdrdkrQkP7jpC6O0watZxZP7yWUx99zPuharqj0bNG7BgxSx0dXVZv+pvwkOer5aLynt3yLwYgF4Tb4zfnkHKqjmQlAB6+hgNGoOuXS2yHoSSee54ntfpmJqjY2ZOdlYm2ZGPPyfp+zeh18gTvcaeGPQdQfqO31UzzOso0O/8KvovvUp2VhZpWx5PVKYMuYHyUTgKWwcM+/mStmkFKLNATx/DPsPRa+KNMi6a9MNbn9l5ES+eilBnlJRTQ1VPhJBKOBRRQaKuhnJ7XxB1Xnajx7Jx/Pv+499SnZ64x7ip4R7D2LoKWaVwj5GdpeTkwo28NPct2kwfSEp0PNe3qN63Kg42+Cx6Dx2Fgqsb/UgIjyrRvkReSpmQqcxIcvQF4OnpSUBAAEeOHNGYHJ0+fTrXr1/ngw8+oEuXLurlucnRgwcfPw3UJtnp6enJ5s2bOXLkiMbtFy1axMGDBxkyZAgDBgwAVF20nZ2dOXnyJObm5ujo6KiTo7n/f/LkSQICAqhfvz729vbqeAsWLGDr1q0sWrRIfXx6enq0bduWYcOGMXPmTO7dK/kP98OHD+cbq/PQoUNkZmaqW7I6OjpiZ2dHWFgYN2/epF69enm2j4qK4o033sDOzo4ffvghX+vRikJfXx83NzcCAgLYu3cvvXvn7XKTmZnJvn37gILHltVGZW4Zqo0j03/hVVdHHNo2Zqj/ImKC72FeyxYjSzPS4pLY7btINQbZE5qM6IrnxH4khEawto3mCTuKYs+739Hnz+lUa+rEoIPziAm+j45CB4s6NVDoKoi/+4h/3/6W7KznbwSblR8vo+bG2jRu04zFJ5ZzLzgM21rVMbOsQlJcEt+893W+VtJdh/fi9QmDiAh9xLh275Y4XnEc3XwIz24tadmjNXN3fsO9m2EodBU4ONcEYN/a3Wz/KX9X28pi98e/MGSjI7XbNOb9E4uIDr6HRS1bjC3NSI1LYvN7+T8X7sO70nZCP+JCI/ipXck/Fy+ypdN/oNbftWnWtjkrTv5CWHAo1WvVoIplFRLjEpn77ux813GvEb0ZPOENHoY+5N22b5coXmZ6Jl+/N5cv136FS/P6LD30E/duh6NQKHDMucYD9gWw6qv84+2+SGZPXciqBnXxaufBzlN/c/vGXRxq2WNhZU5CXAKT3/o43/s0cOT/eG/yW9wLvU9v7/4l2n9GegaT3/mEpeu/pXGLhmw+9icht0JR6Cqo46waZujInmP83xeLS7Sfiip13WJMJixEz7U5ZjN/RfkwFIVNDXRMq5CdnEjq8ln5vqf0O/bBsOcQlFEPSfp8pHp51rWzpP2zGsO+IzDsOgCDdj1RRt5Hx8oWRRULsrMySV27COXdvN30U1bPx2TCAgw6vYKeRyeyYx6hqGqHjokZ2UnxpPzwCaRWvodkonIp7zqjpKxtVQ1bnmyl+jw4OP0XbFwdqdm2MSP8H/+Wyr3H2KHhHqPZiK60nNiP+NAIfi2Fe4yLvx/A2sWB5m91o9vi0bSZPoiUqARsGjiiq6/Hw7M3OfLFmhLvR4hnpXT78YoKaeDAgRgbG7Nq1Sr27t2bZ92mTZvYvHkz169fp3nz5nnWOTk50bx5c/z8/PDz86N+/fpaTRrUq1cvqlWrxvbt21m7dm2edX5+fqxcuZJr167RtGnTPOs6dOhAVFQU27dvx9nZWd1K097enpo1a3LgwAFiY2PztRq1s7MjIiKCRYsWkZT0uFtBeno6e/bsAci3r+JYvnw5Fy8+HuMvNDSUuXNVA4DnThYFMHz4cJRKJVOmTMmTlE1JSWH69OncuXMHU1PTCpsYzTV8+HAA5syZw5Urj7uXZmRk8OWXXxISEkLTpk1p1kzzpBLayG2RWtEnVyqupAfRbOz5KRdW7iY1KgGbBrXIzszixpbjbOr9GbHBZd/aJjE8io09PyVw4UairoZSpWZVzBxsiA0O59SizWzs+UmJnx5XVNEPovi49yR2rdpGQlQ8tRrUJiszi2Nbj/BJ38ncCw4r13hPs3jMQtbOWU14cBjVa9thY1eVK/6XWDzuG1Z+vLTU9lMeEh9E82vvTzm1ajcpUQlUa1ALZWYWl7ceZ03fz4h+Bp+LF1nUgygm9RrPtlX/EBcVR+0GTmRlZnF4yyEm95lIWBGv4+LEu3PlNh92G8PW5Vt4FPYIu9r2WFaz4lLAJb6ftIjZb818bidj0taj+xEM6fY2f6zYQExULC4N65GVlcWuTXsZ2sOX2zfKfhKeG5eDGdh5OL//tI77ofep6eRA1WrWBPmf44vxcxg/fOpz+z5lx0aRNH8c6Qe3kp0Yh8LeiWxlFhmnDpG0YDzKh0UbDzd9z18kfzeNjPMnyM7KQmHvBFkZZAQeJHn+h2QGHMj3GmXIDZIXTiAjSDWEisKhDtmpyaT77SBp7miU9+6UwpEK8XQVoc4oiSpWqrkQkhOSCtmyckl6EM36np9ydqXqt1TVnN9S17YcZ33vz4h5Rr+ljny+hm0jFnL38Hn0TQyxqleDmJv3OTZnHX/3n0VaXPIzKceLJPsZ/r1odLJL89GMKFfTpk1j8+bNzJ8/P1+LzV27djFlyhQyMjKoX78+Tk5O3L17l2vXrqFQKPjmm2/o0aNHvphr165l5syZAEyePBlfX99827i6uqKrq8vly48nBjh16hTvvfceiYmJ1K5dGxcXFyIjIzl79qy6rCNHjswTx9/fX51kHDJkCJ999niiho8//pi///4bgD///BN3d3f1uvT0dN58803Onj2LpaUlzZs3R1dXlwsXLhAREYGnpye//PJLvrExtfXmm28SEBBAjRo1iIyMpFWrVujr63PixAlSU1N5//33mTDh8dM3pVLJ+PHj2b17N8bGxjRt2hQzMzPOnj1LdHQ0Tk5OrF27lqpVVRPhLF68mCVLlvDhhx/ywQcfFKuMmsq7du3afC2FNb1X8Pjct27dmtWrV6uXz5s3j1WrVqGrq4unpyeWlpacO3eOBw8eULNmTVatWkWtWrUACAsLo0uXLtSqVStfEh7Ax8eHkJAQ9u/fr57M6bfffmP27NlYWFjQqlUrhg8fjoeHx1OPYdOmTUyfPp3XX3+d2bNna31eltUcqvW2omwdVjxfT+8rMzfMyrsIIsex7NjyLoJ4QmiGvB8VxeH/5Z+cUZQPoy+WlHcRRI7X3ceVdxFEjpezSzavhShdY0N/L+8ilKlRTgOe2b6W3vnrme2rIpCWoy+IHj16sGHDBnr37k1MTAwHDx4kISGBbt26sWHDBo2J0dzX6evrqyYAyJm1Xhuenp5s2bKF/v37k56ezuHDh7l37x4dOnRg9erV+RKjAB4eHuqZznO70ufK7bptZWVFixYt8qwzMDBgxYoV+Pr6YmVlxYkTJzhx4gQ2NjZMmjSpRInRJ82ePZthw4Zx9epV/P39adSoEUuWLMmTGAXVgOKLFi1izpw5NGzYkEuXLnHy5EmqVq3KqFGj+Ouvv9SJ0Ypu6tSp/PDDD3h7e3P58mUOHz6MmZkZo0ePZtOmTerEaHENGDCAvn37kpmZiZ+fHzdu3CilkgshhBBCCCGEEM8PJdnP7O9FIy1HhSjE01oxispDWo5WHNJytOKQlqMVh7QcrVik5WjFIS1HKw5pOVpxSMvRikNajlYsz3vL0fecSjameFH8dGfDM9tXRSATMgkhhBBCCCGEEEIIUYE9f1PoVhySHBUvjDlz5hAdHV2k1yxcuLCMSlO4ylZeIYQQQgghhBBCiMpGkqPihbFv3z7Cw8OL9JryTDZWtvIKIYQQQgghhBCibGRX8LFAjx8/zrJly7h27RoZGRk0btwYX19fOnTooHWM27dvs3jxYk6fPk1sbCy1atViwIABDBkyBIWi7KZNkuSoeGEcOHCgWK9bs2ZNKZdEO8UtrxBCCCGEEEIIIcSzsmnTJqZPn46BgQGtWrVCqVTi7++Pr68vM2fOZODAgYXGuHr1KkOGDCExMRF3d3eaNm2Kv78/s2bN4ty5c2XaGEySo0IIIYQQQgghhBBCVGAVdczRhw8f8vnnn1OlShX++OMP6tevD8D58+cZOXIks2fPplOnTlSvXr3AGNnZ2Xz00UckJiYyf/58XnnlFQCio6MZMWIE27Ztw8fHh27dupXJMZRdm1QhhBBCCCGEEEIIIcRza+3ataSnpzNixAh1YhSgWbNm+Pr6kpaWxvr1658a49ixY1y7dg1vb291YhTA2tqaL774AijbXr2SHBVCCCGEEEIIIYQQogLLfob/Kwo/Pz8AXn755XzrcpcdOXKk2DHc3d2xsbHh9OnTJCYmFqls2pLkqBBCCCGEEEIIIYQQokiys7MJDg5GoVBQt27dfOudnJxQKBQEBweTnV1w0jU4OBggT8vTJ9WpUwelUsnNmzdLp+D/IclRIYQQQgghhBBCCCEqMOUz/NNWXFwc6enpWFpaYmBgkG+9np4eVlZWpKSkkJSUVGCcR48eAVCtWjWN63OXR0ZGFqF02pMJmYQQQgghhBBCCCGEEADEx8cTHx+fb7m5uTnm5ubqf6ekpABgbGxcYCwjIyMAkpKSMDMz07hNbpzcbQuKkZycrEXpi06So0IIIYQQQgghhBBCCAB+/fVXlixZkm/5mDFjGDt2rPrfCoX2HdKf1q1eV1cXAB0dnafGUCqL0q5Ve5IcFUIIIYQQQgghhBCiAlM+JblY2oYPH85rr72Wb/mTrUYBTExMAEhLSyswVmpqap5tNclteZq7bUExTE1Nn1Lq4pPkqBBCCCGEEEIIIYQQAsjffb4gZmZmmJiYEBMTQ2ZmJnp6edOMmZmZxMTEYGho+NR4tra2XLlyhcjISOrVq5dvfUREBFDwmKQlJRMyCSGEEEIIIYQQQghRgWU/wz9t6ejo4OzsTFZWFnfu3Mm3/vbt2yiVygJnoc/l4uICPJ61Ps9xZ2dz69YtdHV1NSZOS4MkR4UQQgghhBBCCCGEEEXWvn17APbt25dvXe6yjh07ahVj//79+dadOXOG6OhoPDw8CpzQqaQkOSqEEEIIIYQQQgghRAWmJPuZ/RVFv379MDQ0ZPny5Vy8eFG9/MKFC6xYsQIjIyPeeOMN9fKQkBBu3rxJQkKCepm3tzcuLi4cO3aMv/76S708OjqaL7/8EoCRI0cW99QVSsYcFUIIIYQQQgghhBBCFJmjoyNTp05l5syZDBo0iJYtWwLg7+9PZmYm8+bNw8bGRr39iBEjCA8PZ+7cufTr1w9QzXo/Z84chg8fzqeffsrGjRuxtbUlICCAuLg4BgwYQOfOncvsGCQ5KoQQQgghhBBCCCFEBZZdxBadz9KQIUOwt7dnxYoVnDlzBgMDA9zd3Rk1ahStW7fWKkazZs3YsGED33//Pf7+/ty4cYPatWszceJE+vfvX6bll+SoEEIIIYQQQgghhBCi2F566SVeeumlQrc7cOBAgeucnZ35/vvvS7NYWpHkqBBCCCGEEEIIIYQQFZiyvAvwHJPkqBDihRAr089VGKY6UvVUFFsz7pV3EUQOb33b8i6CeMLLepblXQSRY8DWqPIugshh8M+48i6CyLHxzLNvVSU029js0/IughCiFMgdqhBCCCGEEEIIIYQQFVhRZ5EX2pO2VEIIIYQQQgghhBBCiBeStBwVQgghhBBCCCGEEKICq8iz1Vd20nJUCCGEEEIIIYQQQgjxQpKWo0IIIYQQQgghhBBCVGAyW33ZkZajQgghhBBCCCGEEEKIF5IkR4UQQgghhBBCCCGEEC8k6VYvhBBCCCGEEEIIIUQFlp0tEzKVFWk5KoQQQgghhBBCCCGEeCFJy1EhhBBCCCGEEEIIISowJdJytKxIy1EhhBBCCCGEEEIIIcQLSVqOCiGEEEIIIYQQQghRgSnLuwDPMWk5KoQQQgghhBBCCCGEeCFJy1EhhBBCCCGEEEIIISqwbBlztMxIy1EhhBBCCCGEEEIIIcQLSVqOCiGEEEIIIYQQQghRgcls9WVHWo4KIYQQQgghhBBCCCFeSNJyVAghhBBCCCGEEEKICiw7W1qOlhVpOSqEEEIIIYQQQgghhHghSctRIYQoQ4bmJrQb34/63Twxs7UkOTqeW4fPc+y7zcSHR5UsuI4OwzZ/jmXt6nzvNqrgMlQxptWoPrj28MLcoSppCcncP3eLU7/s5o7fxZKVoRIxMTelz/j+uHdtiYWtJQnR8Vw8fJZt328gOjzymcTTNzSgy8ieePVqTfU69ij0FESFR3JubyD//rSVxJiEkh5mpVXFwoy3Jg6nQ/d22NhaExsVx8lDAfzy7Roehj8sUWwdHR1++mcJDk729Gr6WqHbOzeqy8qdy/hr5SZ++GpZifZdURibm9Jt/P9o2tULc1srEqPjuXr4HHu+/5uYYlz/xYn3zoopNH7Zo8CYsfej+LL1aADqtWrEmHWfaVWW6LAIvmo3tsjHUNEYWpjgPb4fdbt7YmprSUp0PHcPnSdw0WYSSqG+6L/1cyxqV2dF84LrC4BqTZ3wGNUbe+8GGFmZkRwZx539ZwlYtJnkR7ElK0cFZ2ZhxpDxQ2jdvTXWttbERcdx+tBp/lj0B4/CH5VpvCEThjB04lCt4u7dsJdvJn6TZ5l7B3f6juiLq5srpuamJMQmcOX0Ff7+6W+unL5S5LKXN1MLUwaNf4NW3VpjZWtFfHQ8Zw6dZv13fxIRHlEu8XT1dPlmxyKcGtZhxoDpXDx5Qb2uSaumzP5rrlZxHoY+5N22bxf5GJ5HSqWSIe9NJDT8Pkd3ri/v4lQq+hYmNJ3YD8ceXhjZWpIWFc/9Q+e5+M1mkotRr1dxtqPRB72xbdsYY1tLslLTib0cws0/DnHn76Oay1DFmEZj+uLY0wtTx6pkJCQTFXSL66t28+DwBY2vESWjLO8CPMckOSqEEGXE0NyENzd/TlVnB9ISUnh0NQTLWrY0H9gJ1+5erB0wi4irocWO32Fyf+zdnEmOLjihZmhuwrDNX2DjbE9WeiZRt+5jaGaMcxc3nLu4cez7Lfj938Zil6GyMDE3Zfp4fNcYAAAgAElEQVSm2dg5O5KSkEzY1RCq1bKl/cAuuHdvyYKBnxN29W6ZxjO1MGPyui+o2dAJpVJJVHgEmWkZVKtdg+7vv4pXn7b83xtf8ujug9I+/AqvioUZy7YuxsmlNkkJSdy8cgv7Wnb0GdyTjj3aM+b1Cdy8cqvY8d+d+haN3RsSGx2nVVk+XzwDPf3n5yeSsbkpH26aSXVnB1ITkrl/9S7WtarTauBLNOvuxZKBM7l/NaTM49k1qAXAnTPXUWbl/3mfGBWv/u/UhGRuBV59ajlqt3BGV1+PyLslS55XBIYWJry++XOsXRxIT0gh8moIFrVsaTyoE/W6e7Gp/yyiSlBftP6oPzXcnEl5Sn0B0GhgR176+i0UerokPYwl5uY9rOrZ0/TNLtTt6sHGfl8SH1L0xFRlYGZhxv9t/j9qudQiOSGZ21dvY1fLjm6DutGmexs+6v8Rd67eKbN4EfciuBRwqcB4hsaGODd1BuD+3ft51g2bMozB4wYDkBCbQMj1EGrUqkHbHm1p1bUVSz9dyo41O7Q/GeXM1MKUeZsWUtOlJskJydy9eofqtWrgM6grrXu04eP+07hbhPeitOL1HzsQp4Z1NK5LSkjicmDB7x9A/Rau6Onr8SDkxavnC/L9z79x4fI1LC3My7solYq+hQk+/3yBhYsDGQkpxF4JwayWLfUGd6JmDy/2/+8rYq9oX2fY+7jRdtk49IwNyExJJz74HkbVLLBt3RDb1g2xe6kZJ8b8mLcM5iZ03f4l5jn3GAk376NfxRgHHzccfNy4+O1mLix4/u8xxPPj+fnl/4xlZ2ejo6NT3sWolCryuavIZRN5VYb3qse8d6jq7EDwgbP8M2YJ6Ump6Brq023WSJoN6MArS8awsus0spVFHzum3fh+tBnTt9Dtei7wxcbZnntBwWwe9T0J96MBcPFx59Ufx9F23KuEnLjM3eOXi1yGymTY1+9j5+zI+QOn+Wnst6QlpaJnqM+bs3xp278z7y4ez+fdJpGt1O55bHHiDZ3tS82GTtwPDmPZ6G8Iv6ZKHlnbV8X3uw9x8WrIe0sm8FWfqWVyDiqyqQsm4eRSm+P7T/L5qK9ITkrBwFCfyXMn0Gtgd7788ROGdXkHpZbvz5PemjicYWOHaLWtVVUr5v0yi7oNNN/8VlYDv36X6s4OXD5wht/Gfq++Xl+f9TYt+3di2OJxzO82RevvouLEMzQzxtqxGqkJyXzXr/AWoeGX7rC4/xcFrvd4tR11vRqQEBHL2vFLtCp3RdZ53jtYuzhwZ/9Z/h29hIyc+qLTnJE0GtCB7j+M4Q+f4tUX3hP64alFfVGtqRMvzXsbHR048sUazq3aA9nZmFa3pMeycdh51qfz12+z5Y2vi3OIFd6H8z6klkstAvYH8PXor0lJSkHfUJ8xc8bQdUBXpv8wnVE+o7T+HipqvD3r97Bn/Z6C483/EOemzpw7fo71ix+3sPPs5MngcYPJzMhk6WdL2fn7TgAUugoGjRnEm5PfZNTMUVwNusrNizdLcIaenTHzxlHTpSan9geycMx89bkbNfsDugzwYcoPHzHOZ4zW70VpxKvtWpvXR/cvcP3tS7eY/r+C6++Or3WikVdjYiNi+PbDhVqV+3mWnZ3Nj6vWsmKNtBYtDu8Fvli4OBC+L4jjo5aQmZSKwlAfr69HUndgR9osHcuuzlO1qjOMqprTZslo9IwNCP79AGc+X0NWSjoADt09aP3dKJz6tSUq6CbXV+5Wv67lN+9i7mxP5Jlgjr37Hcn3VPcYDt08aPvTOJpMeI1Hxy/z8NjzfY/xrGXLbPVlplzHHF28eDGurq78+OOPhW9cCjZt2oSrqyszZswoUZwLFy4wYMCAUiqVZj4+Pri6uhIWFlbsGM/6/BYmISGBWbNm8c8//5QozrRp03B1dWXr1q1PXVYUWVlZrF27lrlz83aHqWjnUMCjR4+YNGkSgYGB5V2Up7KuZ4drd0/SElPYPn4p6UmpAGSlZbBr6nIib4RT1cWB+t09ixTXtJoF/X4eT7sJ/Qrf1tYSFx8PlFlKto79QZ0YBbix9wxn/zwAQLOBHYtUhsqmRj173Lu3JDUxhZUTFpOW815kpmWweuoy7t0Ixd6lJu7dvMssnlUNazx6tkaZlcXyD79TJ0YBou9FsvSD/yM1MYXaTetRv2WjUjz6iq9WvZp07NGe5MRkZo6bS3JSCgDpaRl8PXkht6/foU59Jzr0aFekuNbVrJi7ciZvTxqu1fae7d1Z9e8yGrs3LPIxVGS29exp2t2L1MQU1k74Ic/1un7qTzy4EUYNF0eaaXn9FzeevWtNAB4Eh5f4mCztbfjfzJEArJ/2M/ERlburt1U9O+r18CQ9MYU945eS8UR9cWDKcqKvh2Nd34G6RawvTKpZ0GvFeFpOLLy+AGj3yRsodBWc/nE751buhpxJH5IexrLnw6VkK5XUbN+EKg42RTvASsCxniNterQhOTGZBeMXkJLzPZSRlsF3U74j5HoIterXok33NuUSr1XXVnQf3J3EuEQWjl+YJ4n3mq9qqJBtv25TJ0YBlFlK/vjuD/y2+6Grp0vfkYUnyCsCh3qOtOrempTEZL4d/395zt2SjxYTeiOEmi61aNW99TOLp1AoGLvwQ3R0dMhIzyjyMVW1r8a7M98HYMnUxcQ8iilyjOdJZFQ0H07/iqWr1pZ3USqlKs521OzpSUZiCifHLSUzp85QpmUQMGk5cdfDsajvgGMPL63i1X3jJfSrGBN9/jaBU1epE6MA4f+e5txcVQLb1be7ermRrSUO3VT3GMdHLVEnRgHCd5/m5lrVPUbdwZ1KerhCPDMyIVMxDB48mPPnz5d3MSqd+fPns2bNGrKyssq7KPns3LmTmTNnEh8fX/jGolxNmzaN7du3V/iZ+hq/1hYdhYLg/UGkxiXlWZetzOb8hiMANOzdSuuYTu2b8O7BhdTv5knio1gOff30p+1G5iacW3eIi3/7EReavxtkxDXVwxdzu+fvRvdJrV7tgEKh4Nz+UyTFJeZZl61UcmzDQQC8ercts3j1WzZGoVAQEfKIkEu388WMj4jlzgVVi57aTepqf3DPgW7/80GhUHB07wkSYvN2+VUqlexcr2ql0KXvS1rH9O7gyTq/3+jQvR2RD6NYOmf5U7efMm8C361biK1dNY7uPcHBHYeLfiAVlMer7VAoFFzaf4ZkDd9FARsOAdCit3aJhuLGy+1S/+B68R/65nrts+EYm5tydvsJLu0/U+J45c21n6q+uL0viLTY/Of08l+q+sKlj/b1Rc0OTXjz8ELqdvMk6WEsx+c+vb4wrWGNQ6sGpCekcGpJ/ofY8SER+H25lsOf/ooys+L9jiupzv06o1Ao8N/nT2Js3u91pVLJnr9ULTo79OnwzOMZGBkwepZqLN7V81cTef/xWIIKhYLG3o0BOLpD85iAAfsDAHBu4qxV2ctbp9c6oVAoCNgXQGJc/nO3/699ALTr0/6ZxXv1vddwaV6frcs3k5KYXJTDAeCdz30xszDj6HY/AvcFFPn1z5Nj/qfpNegdDvidoKqNFePfH1neRap0nPq1Q0ehIHxvEOka6oxb61W/YWr11a7OqN5G9VA4dGeg+qHYk8L3BgFgVssWfQsTAAzMTbj1x0HubDhCkoZ7jLirqrrexP75vscoD0qyn9nfi0a61RdDcbr1ibI9bxMnTsTX15fq1asX6/UFlW3IkCH07NkTa2vrkhRPlKLK8vmzb1EPgPDTNzSuv3cmGABHL1etY1Z1ccDA1JCLf/uxb+ZabBvUfOr2UcH32P3xqgLX12iq6joc8xyM1/c0dVu4ABB8+prG9beCVO+Ri3eDMot33f8SS0ctfGr3JkNjQ0DVFfJF0thNdZ4untI8VtulM6ruWM29m2od06l+bYxNjdm1cQ/ff/Ej9QrpJt/YTTUe6U9fr+CftTuY8e1HWu+roqvdQpUQuXP6usb1d4NU30V1tbz+ixvvcXK0+ONmAji516dZd2/SU9PZOuf3EsWqKKrn1BcPTmmuLx7mnFN7b+3rC2sXB/RNDbm60Q+/L9diU0h9UbNtI3QUCsKOX1K3XP2vc6t2a1z+PHBtoTq3V05pnrjoapBq/NvcROSzjPfaO69R1a4qt6/cZueanXlX6sAs31lUc6jGnWt3NL7e0ERVt+jq6mpV9vJW30117q6e1jzm8LUgVd3byEu796Kk8ezr2DNowhuE3wrnz2//wGdQV632m6uBRwNa92hDWmoav8wq+DfZi+LWnRCSU1Lp070LU8e9y/Wbd8q7SJVOVXdVnRF5SnM9HHVaVWdUa6ldnXF+/kbu/H2MqHOax3bXy/kOAVDkfI/EB98jcGrB17NVM9XvrsQ7Mr6uqDwkOSqeC7a2ttja2pZ6XGtra0mMimKxclIl6jW12ASIz5lF0szWEn0TQzKS0wqNef/cLX7p9QmPLms/cYom+iaGeAzvSrMBHclITSdwxa4SxavoqjnVACAyVPNMw1E5s9RaVLPC0MSItGTNiYGSxIt5EM3pXScLjGntUBXHhk4A3LtR8pZ1lYmDkwMA90Lva1z/IEyVvLextcbYxIiUQt4fgMtnr/JW9/e4cUm78fX+WLqe4/tPkhifVPjGlUzVnOs1uoDrNTrnejWvZomBiSHphXwXFTeevasqORoTHkmboT7Ub9MEYwtT4h5Ecf7fAC7uPa3V8fSZ/gYAx37bQ+y9Es7gXkFY5NQX8QXVF2Gq+sK0CPXFw7O3WNfjEyK1rC+sXR0BiL5xD4DaLzXHuZc3VextSIlO4OauQIJ3PL8t3uyd7AF4EKr5Rv5RmOp6t7a1xsjEiNRCvodKK56ZpRn9R6nGuVw9b3W+XjPKLCWnDp16allad1W14g65UbLfDs+KXW07AB4Wcu6sbK20ei9KGm/Mgg/RN9Dnh6mLyUgrepf64R+rWkbu/HUHkfeez8nMiqJJI1c2rFpMg/r1yrsolZZZTp2RVMDkeEk59xjGtpbomRiSWUidEXUmmKicRhuaOHbzACA1Mo60Qib10zMxxOWtrtQd1JHMlHSu/vzvU7cXoiIpUvOUXbt2MWzYMFq2bImnpyf9+/dny5YteVpyxcbGsmjRIl599VXc3d1p0qQJHTp0YMqUKdy6pf1Ms9rs62njTG7duhVXV1emTZtW6L5SUlJYsWIFAwYMwMvLiyZNmtC2bVvGjBmTp/t87pilud3CXV1d6dy5c55YN2/eZMqUKbRr144mTZrQuXNnZs2aRVSU5h/w586d47333qNly5Z4eHgwZswYQkNL1qpCk4MHDzJ48GBatGiBl5cXb7/9NufOndO47Y0bN/IcQ/v27fnoo4+4eTP/TWZaWhpLlizh1Vdfxc3NDXd3dwYMGMCaNWvIzMxUb+fq6srGjarZ6qZPn46rqyv+/v6ldnwFXQtbtmxhyJAhtGrVimbNmtGjRw8WLFhATMzjsX7efPNNPvpI1Upo8+bNuLq6snjxYkDzmKO5yw4ePMi+ffsYNGgQbm5ueHl58cEHH3D1quYn0wcPHmTo0KF4enri5eXFuHHjuHv3LiNGjMDVNe+Tvfj4eObOnUuvXr1o3rw5Xl5evPnmm8UeU/W/0tPTWblypfp9a9euHe+88w6nTuX/gZ2SksKPP/5Inz59aNasGe7u7gwZMoTt27fn27aon0l/f39cXV2ZN28eN27c4IMPPsDb25vmzZszaNAg9u3bp942LCwMV1dXTpw4AcCwYcNKPC5vWTKxVs26mRKj+UdEyhPd7Eysq2gVM/z0jRIlRms0rcNbu2Yz9vQPdJo2kIT70Wx86//U3eufV1Vy3oukWM3vRdIT74WZFu9FaccDeH3am+gb6hMXEcOV4xe0es3zwtLGEoD4GM3DmsTHPl5uYW2hVcyLpy5pnRgF2LN5/3OZGAUwK+R6TX7iejW1Lny24OLGq5GTfBu8cBT9Z71N854tqd+2CV7/68jby6fg+8tUDJ5onaJJbTdn6no1IDMtg0MrKs/M24Uxtnl6fZH2xDk10vI75cHpG1onRgH1OKLpiSn0XD6evr9NodHAjtRs34T6r7Smx7Jx9Pl1MnpGBlrHrEwsbFTfLQkFvAdPDvlhrsXnpLTi9XijB6bmpty+elvdPb4oPDp54NFRldg4uOVgkV9fHswLOXeJRXwvShKv98g+NPZuzJ4/d3PJ/2Kh+/qv+m6uNPJqTEZaBv+s2FLk1z+P3Jo2ksRoCRnm1BlpMYka16c/sdxQyzqjIEbVLGj4QW8A7m4+XuB21s3q0H3vHF47/yMtPh5Eyv1ojoxYSNzV0s9rvOiys7Of2d+LRuuWo5999hnr16/HwMAAb29v9PX18ff3Z+rUqVy8eJFPPvmEyMhIBg4cSFhYGLVr16ZNmzakpKRw8eJF/vnnHw4ePMi2bduws7Mr8b5KS2pqKkOGDOHSpUvUqFEDT09PlEolly5dYu/evRw6dIg///yTpk2bUqtWLfr06aMe77BPnz55WhUePXqUMWPGkJKSQoMGDXB3d+f69eusWbOGffv2sWbNGmrWfNyt6cCBA4wbN46MjAw8PDywtrYmMDCQQYMG5UksltS2bdv47rvvqFu3Lu3atePatWscPXoUf39/Nm7cSIMGj7u+7du3jwkTJpCenk6DBg3w8PDg9u3bbN26lT179vD999/ToYNqfKTs7GwmT57Mnj17sLOzo02bNmRkZBAQEMCsWbO4dOkSX3+tmtG0T58+nDt3jpCQENzc3HB0dKRq1aqldoya/Pbbb8yePRtTU1M8PDwwNDTk3LlzrFixggMHDrBlyxYMDQ3V5Q4KCqJmzZq0aNEiX7JSkw0bNrB//36cnZ1p164dly5dYv/+/fj7+7N161YcHR3V265evZq5c+eip6eHt7c3hoaG+Pn54e/vj4VF3pv9tLQ03n33XYKCgnBycqJDhw4kJiYSGBhIQEAAISEhjB07ttjnJTExkREjRnDhwgUsLS1p06YNCQkJHDt2jKNHj/Ldd9/RrVs3AKKjoxk2bBg3btzAysqK9u3bk5qaSkBAAKdOneLYsWP5JrEqjqtXrzJgwADMzMzw8PDg4cOHBAUFMXr0aL7//nu6deuGiYkJffr04eTJk0RERNCmTRtsbGwwMTEp8f7LQu4NZGaq5lYGmanp+bYta1VdHLBtVFv9byMLU5w7tyAs8BpZ6aX3nVPRGOSc3/QnzvmTnlxuYFj4e1Ha8br69sW7j2p80k3z/ySzGC1TKjPDnPOZlqq5ZUPaE+fT0OjpyTORn37O+c0o4Hp9crm+oX6ZxLO0t8HEwgyAqJCHbJv7B7dPXUPPQI/GPp68MmMojV5yY/CCUfw6elGB+24/XDUZxOl/jhH/HE1oklsHZJVjfWFgagyAm28PDMxNOD53PZfXHyYjKRWnLi3oNHsETp1b0HH2CPZP+rlMylCeDAr5Hkov4vdQacRTKBT0erMXAJt+2lToPv/Loa4DUxZNAeDCyQuc2H2iyDHKQ5HqWC0+D8WNZ+toy9CPhhH1IIpf5/xSeME16D2iDwBHth4i+mF0IVsLoR1ddZ2h+Zp+crluCeoMXWND2q+aiIGlKalR8VxeXPCkyub1HbBq/Pgew8DCFPsubkT4X0P5HN9jiOeLVsnRPXv2sH79ehwdHVm9erU6wffgwQMGDhzImjVr6NOnD1u2bCEsLIwRI0Ywbdo0dHR0AFUyxtfXlzNnzrBlyxZGjRpV4n01b968pMcOwO+//86lS5fo1q0b33zzDXp6qlOSnp7O5MmT2b17N+vXr6dp06Z4enri6enJzp07ycrKYuHCheo40dHRTJw4kYyMDJYsWYKPjw+gSiAuW7aMRYsWMWXKFNatWwdAUlISn376KVlZWSxevJiuXVXj18THx6sTY6Xl1q1bTJs2jZEjVd06MjMzGTt2LAcOHOD3339n1qxZgGoW8MmTJ5OZmcn8+fN55ZVX1DE2btzIJ598wsSJE/n333+pWrUqp0+fZs+ePXh7e/PLL7+oz114eDj/+9//2Lx5M6NHj6ZmzZosXLiQGTNmEBISwoABA+jXT7uZU4srPT2db775BktLS7Zv3061atXUy0eOHMmpU6fYsWMH/fr1Y9SoUdjb2xMUFISnp6c6oVuY/fv388UXXzB48GB1bF9fX06ePMm6deuYPHkyoGpNvGDBAszNzVm1ahVNm6rGzXvw4AEjRozg9u28k7Ps2rWLoKAg+vbty/z589Wfo8uXLzNw4EBWrFiBr68vRkZGxTo3ixYt4sKFC3Ts2JFvv/0WU1NTAI4fP46vry+ffPIJL730EgYGBnz22WfcuHEDHx8f5s+fr05E3r17l7fffptNmzbRrFkz9TkoruPHj9OvXz+++OILDA0N1eVcunQpK1eupFu3blhbW7Nw4UJGjBhBREQE77//Pi1btizRfstSdpYSnjJ2pI7i8bpn9WTu1uHzfNvEF4W+HnU7NqPLp0PweqcHVnXt2DhyYeEBKillllI9RpImCoWO+r+ztRh8vDTjdR7egwEzhgFwYtNhjm04UOj+nzfKLOVTx8LTefJ8voBPsUtKdb1q911UVvGyldkc+GkbJpZmbP5ytbqrfXpKGoEbD/PwRhgfbvqKFr1acWiFs3rc0ieZ2ZjTvKdqcolDy/P3XKjMilJfaJosozTo5iSyjW3MOTZnHWeWPj7HwTsCSItL4tU/p9Pw9XacWbqdmOB7ZVKO8lLa30OlEa+lT0uqO1Yn6mFUkVt9OtR14Ot1X2NhY0H0w2jmj51fpNeXp6Kdu7KLN3reWIxNjflm3EKSE4o+CZOFjQVteqkefG75WVqNitJTWJ3Bk/cYxZxUR8/EkA6/TqaqhzPKzCxOjPmR1MiCJy6+f/A8G13fQaGvh12nZrh9OZQG7/agSt0aHBn2/N5jlIcXcaKkZ0WrX8R//vknAJ988kmelo81atRg9OjR1K9fn9u3b6tblo0dO1ad0AEwMzOjd29Vc+z79zWPKVbUfZUWIyMjOnbsyKRJk9TJPQADAwN1Aq+wMoMqeRgXF8fQoUPViVEAHR0dRo0aRZMmTQgKClInPfft20dkZCQ9e/ZUJ0YBzM3NmT17dmkdHgDNmzdXJ0YB9PT0GD58OADXrj2eUOSvv/4iJSWF/v3750mMArz++uu89tprJCQksH69asbTR49UY/RUq1Ytz7lzcHBgzpw5zJ8/X514e9YSEhJISUnB2NgYS0tL9XIDAwNmzJjBV199VeIEu7u7e56koIGBAQMGDAAgOPjxjd2ff/5JZmYmo0ePVidGQXVN5yamnxQREaFe/+TnqFGjRsyZM4c5c+YUe1Ki9PR0/v77bwwMDPj666/zvD9t2rThlVdeoXbt2ty6dYuwsDD27t2LpaUl8+bNy9NCs3bt2syZMweAlStXFqssTzI0NGTGjBnqxCioJsMC1TAPlVFGiurmX7eAlli6Bo8/M5kFPPktbclR8aQlpJASncClzcf4a/gClJlZOHduQe02jZ5JGcpDWs57oV9AK049g8fvUUEtS8oiXp8P+/PGl28DcG7/aVZPXVrovp9HuWOIFtTK1uCJ85n2jD4rz5P0FNX51Svwen38XVRQa9CSxot7EM22uWtZP/UnjWOahpy7yfVjquEkGnfx0Bi38cse6BnoEX75TqnMeF+R5I4hWp71RW7c9MQUzmoYhzr06CUenr2JjkKBUxe3MilDeUot5HtIv4j1RGnEa9ezHQB+2/zIyswqdJ+56jevz8K/F1LVripx0XHMGDqDyAeRhb+wgsitYw0K+DzkPXeFj79bnHg+g7vRor0bR7f7EbC3eMOAefu0RN9An1uXbhFy/W6xYgihSVYR6oyslKL3RjK0rsJLf31M9baNUGYp8Z/wMw8OP33Ip7SoeDISUkiLTuDOpmMcHjIfZWYWDi+7Ub3t83uPIZ4vhbYczc7OJjAwEH19fdq1a5dv/YABA9QJIU2io6O5du2aeizDjIyCP6Al3VdxDB06lKFDh+ZZFh8fz/Xr1zly5AigSigVJnf8zIJasrVr146LFy8SGBiIm5sbgYGBALRv3z7ftvXq1cPJyYk7d+4U5VAK5OaW/0ds7tAG8fGPnwDllqlHjx4a4/Ts2ZNNmzapt3Nzc0NfX58dO3aQlJRE165dad++Pba2tvnGYn3WbGxsqFu3Lrdu3aJ///706dOHjh074uzsTKNGjWjUqORf0pqSq7lDBSQnP37CnDtG5pNJ81yenp5Uq1ZNnRAF8PLyAlRJx/DwcLp06ULbtm2xtLSkT58+JSrzhQsXSE5OxtvbW+NEU7kJz/9n777DoyrWAA7/sum9kB4IJQ1IaKFJkd4FlKoUL9gQFRRERBSsqAgoShEpglgpSpXeO4j0DgkJpJNCei/3j03WhOySTV/C996H5/Ge8p3ZmbN7NrMz34AyXytAp06d1HZyt2nTBgcHB0JCQoiMjMTZ2bnM5fL09MTCwqLINnt7e/T09EhLSytz3OqUdj8ZE2tzTG3U/0Bgavvf602NfXhy88oSeSmI4GNXaNC5KXXaNuTO8avVUo7KlnI/CXNrC8xtLNTuNy/UFsmxmn8Vr6h4egoFz38+jk4jegBwducplk6cT05WzZx25OXryeRZ6lOBzJ+xkMT7iVjZWGJloz53nJXtf6lH4mPjK6WMNVnK/WTMrC0w03i//pePTLv7v2LjFQi7eoeGnZph66Y+5Y5vD2Wn6fm/NS9s9qhKj0/GxMYcEw3PC5NCnylplfS8yEhUfm+5HxhBbpb6jrjYm2E4NffAyt2hUspQmTx8PXjtU/Uz15Z8uISk+CQsbSyxtFGfn8/K9r/Pp4TYhBKvV954CoWCVl1bAXD478MlXq9A666tef+H9zExMyHuXhwfjPqA4OvBWp9fFer7NmDcp6+q3bfsw6Uk3U/EwtoCCw11Z1noMyZBi8+Y0sazc1cbQ+oAACAASURBVKrF2PdfICk+iWUfLi0xviate7QB4NjfR8ocQwh1Mu4nYWRjjpGG57BRoXs6I0775zCAubsDXf94D8v6zuRmZXPyrR+4s6n0KTniLgYRdfQKLl2a4tCuEVHHaubfGNWhrKOBRclK7By9f/8+WVlZuLi4YGhYci6qu3fv8uuvv3L27FmCgoJITlYmBC4YAfewqSilvVZFuXfvHr/99hunTp0iKCiI+HjlH1+FR+2VpGB06cNSBhQ+rmDUpZOTk9rjateuXWGdo5aWxb8MFEwvKTwCsaBMbm5uGssEEBOj/PXZxcWFL7/8kg8//JCDBw9y8OBBABo1akSfPn147rnniozarGrz58/njTfe4Nq1a1y7do05c+bg6upK9+7dGTlyJA0aNChX/IfVa+H7PDxcOfVMU65dNze3Ip2jzZs3Z9q0aXzzzTds27aNbdu2oVAoaNasGf369WPYsGGYmpqWqcwF1ykp7y+UfD+A8p6Ijo4mOjq6XJ2j6upST08PhUKhWgDtURMbGI5tPSesa6v/I9I6vwMgKep+pY0EUhjqY1PHkdzsHOLvql9Z+n5wJHRuirm9dgvdPIoiAsNxrOeCvYa2qOWm3B4fFafViKDyxDMwMmDcwsn491b+kHZk7T5+nr6UvDKOBn8UWFiZ06xNE4377gTepXZ9N5zrqP8Mca6tfE7GRMZozN8nNLsXGI5DPWfsNNyvBZ2RCVFxWo0cLU88fSMDjfmNC75xqfuRQN/IAO8OfgCc3/Zo5E0sjfsB4djUc8Kyjvo6taytrNPkSnxexN8ueZZUweeUps5TXWZmaYZvG1+N+0ICQnCt54pTHfXfyx1rOwIQGxWr1edQeeM1atUIK1srosOjuXbmWonXA+j6TFfe/uZtDAwNiLgTwQejPiDiTsntWtXMLc1p3Fp9W5hbmhMaGIpLPVdVHT3IwU25PS4qVquRo6WN17x/RyzycyT/fPZXjXE/X6fMuf/H/N9ZM//3IvsMjAxo1rE5AEf/PlpiGYUojcSACCzrO2NeR/2Pieb5z4zUyPvkpGn/zLBpVIcuv0/D1MmW7NR0jo5bQMR+9Qs4Kwz1MXd3JC87h+Q76v/GSAqKxKVLU0xq8N8YomYpsXO0NB0TW7duZdq0aeTk5KgWkvHw8KBJkyZERkby4YcfVti1SqLttOOTJ08yfvx40tLScHV1pU2bNjRo0AA/Pz8MDAwYP368VnEKyt69e/eHLhBTsPhRSR2vD8uNU1oKLfOJlZRDqaBOjYz+myI0YMAAOnXqxN69ezl06BCnTp1SdUb+8ssvrFmzpkh6hKrUsGFDdu7cyZEjRzhw4AAnTpwgJCREVa5vv/2WHj16lDm+tp3nBYtraapfddtffPFFBgwYwO7duzly5Aj//POPKi3D77//zpo1a8rU8VzRHY0F8QrfE5o87D1Zmh8iHhWRF4Pw7N4C1xaenPt1X7H9ri08AYg4p/2K2qXVcdIQ2k8YSMC+c/z54tdqj7F0Uo4gTo6qOYubPOjOpUCadW9JgxbeHPx1d7H9Hi28Abh9XrsUDmWNp6dQ8PK3b6k6Rncs2chfX/1WqtfyKDp34gId3DTPJmjRrjkderTDz78Rm34unuzf178RAFfOXa+0MtZkIZdu49vdn3otPDn+655i++u18ALgzvnieT4rKl7/aSPo8vJT3DpxhaX/U7+In1vjegBEBYQV39eoLsZmJsRHxBJzJ0qrcj5K7l0Mon6PFji38OTyL8WfF875z4uoSnxeRJ1XxrbzckXfxFDt4lA29ZU/YCRq+LFNl106eYm+ddTPjAJo2q4pbXu0pWGLhmz7ZVux/Q1bKL+/3zh3o9g+dW5dvFWueI3yP/cunXz4VNYC7fu0Z8r8Kegb6BN4JZCZz8/kfrRuPtcvn7zE0+79Ne73a9eE1t3b4OPfkJ2/Fk/x4OOvrLub525qdb2AiwGlihcfE8/V01c0xvNu7oOBoQHB14NJTUohOiy62DH1GzXAxMyEmIgYInWwg1o82uIu3satZwvs/T0J+Ln4M8O+pfKZEasmf7cmFvWd6LpmOiYO1mTcT+bQ/+YSe0bz+X5ThuD75tOE7TnH4THqc4qaOtsCkFaD/8aoDrmSf7/SlNg5am1tjaGhITExMWRnZxfJLQnK0Z67du3C09OTjz76CIVCwZIlS+jcuXOR43755ZcSC6PttXx8fGjRooWqQ0Vdh0/h6eKa5OXlMWPGDNLS0pg1axbDhg0rsn//fu0XxnB0dCQ4OJgXX3yRVq1alXh8wYjRglGFDyo8krCqODo6EhQURGhoKO7u7sX2h4SEAMop64VZW1szZMgQhgwZQl5eHufPn2f27NmcP3+e5cuX8+mnn1ZJ+dUxNDSkW7duqmn+d+7c4YcffmDDhg3MmzevXJ2j2nJ2dubu3buEh4er7SjWlNPWwcGBUaNGMWrUKLKzszl16hSffvopQUFBrFu3jnHjxpW6LAXT/iMjI9Xuv3btGtevX8ff3x9HR+Uv6aGhmnO7FewriFve92RNcmPnaTpOHoxXr5aYWJuTnpCi2qen0KPJsE4AXNl0rNLKcPfEVdpPGEj9J5tg5VaLxLDYIvtt3B1p0KUpAAH7z1daOarb2Z2nGDhpOM17tsbc2oKUhGTVPj2FgvZDuwBwcqN2UxfLGm/gpOG06tcOgA1zfmf796VffbgmOrTjCC9NGcOTvTtgaWNJUvx/04YVCgX9hvcGYPeG4h1xomQXd/5Dn0lD8evZGjPrn0l94LOo9VDl97UzG7Ub3VSWeGFXg9E3NMCjbSNs3ey5H1Y0/6FrI3e8OviRm5PLxR3/FLumm289AEIvV1zOeV0SuOM0bd8eTIPeLTG2MScjvmidNsp/XtzYUHnPi5CjV0iLTcS0lhV+I7txYeWuIvvtG7nj2tqbvNxcbu/6t9LKUV2O7TjG6LdH0653OyxsLEiO/+9zXaFQ0HOYMjXS/g3a/W1Q3ngefh4ABFwuuXPD3duddxe+i76BPtfPXWfG6BmkJKaUeJ6uOrHjOCMmj6RtryewsLYgOaFo3XUf1h2Agxu1W6SqtPHOHjzD2YNnNMb75fxvWNlZs/zDpVzW0HndwE85O+325cr7QUM8vkK3n6bJlCG49WmFkc2vZD7wzKg/XPnMCP5Lu2eGvqkRnVe/g4mDNemxiRwY/gXx10Iees6941fxffNpnDs3wczNntQHnusWdR1x7apMQRe+t+IWmhaiMpU4pNDIyAg/Pz+ysrJUuRMLO3jwIB999BE//PADKSkp+Pr6FusYBTh2TPnmfNjoMW2vtWWLcmRJQR7EgmnehV24oH4IeGFxcXGEhITg4OBQrGP0YWVWN8qtoEO0IE/pg6ZPn86QIUPYt0/56067dso/kPfu3Vvs2MjIyCILJVWVglyXO3fuVLt/xw7lr61t2ihz6KxevZquXbuyefNm1TF6enq0aNFClV6gcMdfVY4O/Pfff+nbt2+x0cp169Zl5syZVVq2gjy0BWkHCrty5Ypq+nqBuXPn0rFjR1WeXlAuotWhQwf+9z/lqtaaOtVL4uvri5GRERcuXFDbWfnzzz/z3nvvcfXqVVq2bImenh5HjhwhJaX4l+yTJ08SFxeHh4eHqsO8vO9JbTwqo0yjr4cQsO8cJlZmDPrhTUzy8wLpGxvS96tXsPdyIzYgnBs7i/6RaWprgZ2HCzbu6qd/lUbw0cuEnw9E38iAQT+8hU3d/6b3OfjUZtiqdzAwMeLqlhNEXQ4u9/V0Vej1O1zYdwYzK3PGL5miyhVqYGzI2K/G4+pVh4jAMM7tKtopY2FribOHKw7uTuWO5+LhRr/XBwFwZM1e6RgtJPDabY7tPYGFlQWfL/tYlYvPyNiQ9+a9Q33vetwJuMuhHUU776xtrXD3qINbXdfqKPYjI+L6Xa7sO4uplRljl0xW5Qo1MDbk2a9exdmrNlGBYVzadbrIeea2ljh6uFLrgfu/LPEu7jpNdHAkhsZGjP1+cpEp+XWaNuCl5VNR6Cs49useYkOKj0p0bVQXgMhbNWshpgKx10MI2nsOYysz+j7wvOg29xXsvN24HxBO4APPCxNbC2w9XLCqW/7nRV5OLifn/QlA++nP4v1MO9U+S7da9Pz2VfQUCm5sOEbSAz+01QTB14M5tfcU5lbmfPDDB6pcoYbGhrw19y3cvd0JCQjh+M7jRc6zsrWitkdtXOq6VEi8Ag0aKTvX7mixkM+bs9/E2MSY2KhYPn7h40e6YxTgzvVgTu/7B3Mrc6b9ML1I3U2YM5E6Xu6EBoRwcmfRvxUtba1w86iNc13nColXHvUa1Qfg7s27FRZTiALx10II23MOIyszOi57C6P8vNQKY0PafP0K1t5uJAaEE7qj6DPDyM4CS08XLB54Zvi++TRWnq7k5uRybNyCEjtGASIPXyb2nPJvjI4r3sKi3n/fFawb1qHzL1PRNzHizuYT3L8UXP4XLVTyqvDf46bEkaOgXDX63LlzfP7556xevVo16jEyMpIFCxaoVmQ/cuQIN2/eJCQkRDVCLicnh2XLlnHggPLXuIyMh+eG0eZaBYvSeHsrpy5u2LCBkSNHqhZ02bt3r8YOvsJsbGwwMTEhJiaGCxcuqBbYycvLY8OGDfzxxx9qy2xkZER2djZJSUmqXInPPvssq1atYuXKlTRp0qTI4jsbNmxg48aNGBoaqq7RrVs36tSpw/79+1m/fr2qczY1NZX333+/WvIsDh8+nJUrV7J+/XpatWrFwIEDVfv++usvNm/ejKWlpWq7u7s74eHhLFmyhI4dO6o6yHJyclQdqYVXZy9YiTwpqfIXn/Hy8iIkJITw8HAGDx5M8+bNVfu2bdtWpWUbPXo0f/31F4sWLaJ169aq1ApxcXGqjtrCXFxciI6O5ttvv2Xp0qWqDsfMzEx2795drOylYWFhwTPPPMO6deuYMWMGc+fOVb32EydOsGXLFmxsbFSLMHXv3p29e/cybdo05syZo0oZERISwowZM4D/VpWH8r8ntVGV91F57Xp/FQ5/1qZue19eP/EtsQHh2Lg7YmpjQXpCChte/RYemBrRckwvOk4eTEJINEs6Ti53GTa9voARf7yPS9MGjNs/h9jbEejp6VHLwwU9hYLgY1fYMW1Fua+j6379YCluPrNo1L4Jc47/QERAGA7ujpjbWJKamML34+YUS3HRbUxfBk4aTkzoPd7r+Hq54nV/8Sn0DZTpUtx96zNt/Wcay3p03QGOrdd+5kJNMPe9+TTYWJ+WHVqw4Z8/uHPrLq7uLljZWpGUkMz0lz4s1j5DXhjES1PGEBESydAnRlZTyR8N6z9YgYvPJ3i19+PD44u4FxCGnbsT5jYWpCWmsHLc18Xqt+OY3vSZNJS40Gg+6zixXPFyMrP56bVvGP/LB7g38+D9A/OJDopAT1+Bk4cyr/WVvWfYPOtnteW3clSmkUlLeLQ7fR7mwPRV1PKpTZ0Ovow99S1xAeFYuztiYmNBRkIK214p/rxoOrYXbd8eTGJINKvbl/95cfnX/dh5udHsxd70XvgG7ac/R1psErUa1kbf0ICo84Ec/rjkmWCPqkXTF1HPpx7NOzTn51M/czfgLi7uLljaWJKckMxnr3xW7H0yYOwARr89mqiQKMa2H1vueAVsHZXTUQuPclSnYYuG+Obn78zLzWPmsuLfKwvE3Yvji9e+0LhflyyZvhj3v+rStEMzVpxcRWhACE7uzqq6+3Lc58Xq7qmx/RkxeSRRIVGM6/BSueOVh51jfsqiEtpPiLI6/d5KrBt+iFNHX54+/R0Jt8KxcHfE2NaCzIQUjrw4v9gzw/uFXjSZMoTkkGi2tp0EgMLIAK+xyn6LnLQMmk4rPmCssKOvfEd6tHIRuaPjFtBt/fvUataApw7PJSkwAvT0sPJU/o0ReeQy/0xZXgmvXojKoVXn6IABAzh+/DgbNmygT58+tGnThpycHM6cOUNqairjx4+nZcuW9OvXj+3btzNgwADatGmDgYEBFy9eJDo6Gk9PTwICAtSOKCvttfz9/QHl6umLFy8mKCiI3r174+/vT3h4OJcvX+bpp58uMqJRHX19fZ5//nmWL1/OqFGjaNOmDWZmZly7do3Q0FA8PDy4fft2sTLXq1ePq1evMnr0aDw9Pfn6669xdnbmyy+/ZOrUqUyYMAFvb2/q1avHnTt3uHHjBgqFgjlz5qimHxsbGzNnzhxeeeUVZsyYwZo1a3Bzc+PMmTNkZmZSv359goKqdvqYk5MTX331FW+//TZTp05l5cqV1K1bl+DgYK5fv46ZmRlz585VdVh36dKFXr16sXv3bnr06IG/vz+mpqaq+mvQoAFjxoxRxa9bVznyY/HixZw5c4YxY8bQsmXLSnkt1tbWvPvuu3z++eeMGDGC5s2b4+DgQGhoKFeuXMHMzIxp06YVK9v+/fsZP348Xbt25dlnn62QsjRs2JCJEyfy3XffMXToUNq0aYOpqSmnTp3CxMQEU1NTVV5SUHZSb926ldOnT9OtWzeaNWuGvr4+ly5dIjo6mlatWpVr1fp3332XixcvsmvXLs6ePYu/vz+xsbGcOXMGhULBvHnzVB2yn376KcHBwezZs4du3brRqlUr0tLS+Oeff8jMzGTQoEGMHPlfp0R535PaKGirTz75hC1btjBlyhTVNl2TFBnHqv4z6fjWILx6+uPY0J30xBSubD7O0W/+4n5w5efOSwyL5af+M2kzrh8+fVtj6+5ITlYOoWducfnPI1xcd4i83Jr/2+D9yDg+6/8uA94aRvOerand0J3UxFRObT7C5vlruResPtVERcXzatVQ9d91m3g8NPa1Y9rlmKtJoiNieLHveF6Y9DxP9u6AR6MGJCcms3vjPn78+idCg4rnoRTaS4iM4+v+0+n91hD8erbCpWFd0hJTOLP5GDvnryemlPd/WeKFX7vL3L7v0u3Vgfh298e+rjNZGZnc/uc6p9Yf4J/1hzRezzx/pFdaUmrpXvgjJCUyjrX9ZtJ60iAa9PLHvqE7GYkp3Nh0nFNf/0VCFTwvAA5/9At3D1+i6Qu9cGrWABMbc+4HRnBjwzEurNqlNhdpTRETGcPEfhMZOWkk7Xq1o37D+qQkpnBg0wF+/fpXwoNLN2unrPEUCgXmVsrvYSWNAi28yJS9iz32LuoXaAGICnl08vXGRsYy5alJPDtpBG16tqVuw3qkJKZwaNNB/vjmdyJK2RYVHa8klvmrhacm1dwfdET1SouIY1efGfhNHoRb75bYNHInKzGF4I3HuTTvT5KDtHu/2zSsg5G18vPG0MIUhzY+Dz1e3/i/RbNTw2LY1WcGDcc/RZ2nWmNR15HcrBxi/r1F0Loj3F5z8LH4G6Oq5T6WYzqrhl6elj+T5eXlsWnTJtauXcuNGzfIycnB29ub0aNH88wzzwCQlpbGihUr2LZtG2FhYRgaGtKgQQMGDRrEsGHD6NixIykpKRw5cgQ7OzsWLlzIokWLeOutt3j99ddLda0C4eHhfPfddxw+fJiUlBQ8PT154YUXaNy4Mf369WPQoEHMnj0bUI5mmz59OkOHDuXzzz8HlIvl/Pbbb/z555+qnJru7u707duXF154geHDh3Pjxg02b96sGvF38eJFPvzwQwICArC0tGTHjh2qxXGuXbvGihUrOHXqFPHx8Tg4ONCkSRPGjRuHn59fsXoNDAxk0aJFnDp1irS0NNVK5bNnz+bEiRPs27dPtUp8aWmqX1DmiuzevTvu7u7s2VM0j9v169dZvnw5J0+eJCEhAUdHR9q3b89LL71E/fr1ixybmZnJqlWr2LZtG3fu3CEvLw9XV1d69erFK6+8UmQV8vT0dGbOnMm+ffvIy8tj2rRpPPfcc6V+Xe+99x4bN25kzpw5PP300xq3gXKU6Jo1a7h27Rrp6enY2dnRvn17XnvttWIdasuWLePnn38mISGBfv368dVXX6mtw4fV67///qvqaH8wz+62bdtYvXo1N2/exMDAgI4dO/LOO+8wePBgFAoFJ0+eVB2blJTE0qVL2bt3L2FhYejr61O3bl2eeuopxo4dq9UCSA+TkpKiarfQ0FCMjIzw9/fntddeU/34UCA5OZmffvqJHTt2EBISgqmpKY0aNeK5556jT58+xWKX5j156tQp/ve//9GuXTt++umnYrEaN25MTk5OkTQTcXFxTJ8+nVOnTqGvr88333yjNpXHg2bXHV3KWhKVJUAvvbqLIPJdy4qr7iKIfG0Myz81WlScBjlajR8QVWA7NW8a/6PKSK/iFowV5fPn2QXVXQSR78+mmkdsi6o3IrxmL3b6sEVOK9qxsMdrJpvWnaNCiLK5c+cOCoUCV1dX9PWLfqmMj4/niSeeoGnTpqxbt66aSvh4kM5R3SGdo7pDOkd1h3SO6hbpHNUd0jmqO6RzVHdI56jukM5R3VLTO0fbuXWtsmudCNNu4buaosQFmYQQ5bN+/Xp69OjB/Pnzi2zPzs5m9uzZ5OXl0aNHj2oqnRBCCCGEEEIIIcTjS34WfwSsXbuW06dPl3xgIa+99hoeHg/Pa1fdaurretDw4cNZu3Yty5cvZ8+ePXh7e5OVlcXly5dVOUTHjh1b6rhffPEFcXGlG/U1b968Ul9HCCGEEEIIIYQQ1Usmflce6Rx9BJw7d46tW7eW6pxhw4bpfCdiTX1dD3J3d2fjxo389NNPHD16lKNHj6pyiL788suMHj0aA4PSvxUL8pGWhnSOCiGEEEIIIYQQQvxHco4KIR4LknNUd0jOUd0hOUd1h+Qc1S2Sc1R3SM5R3SE5R3WH5BzVHZJzVLfU9JyjT7h2qbJrnQw/WGXX0gXyzU8IIYQQQgghhBBCCB2Wi4xtrCyyIJMQQgghhBBCCCGEEOKxJCNHhRBCCCGEEEIIIYTQYXkycrTSyMhRIYQQQgghhBBCCCHEY0lGjgohhBBCCCGEEEIIocNkPfXKIyNHhRBCCCGEEEIIIYQQjyUZOSqEEEIIIYQQQgghhA6T1eorj4wcFUIIIYQQQgghhBBCPJZk5KgQQgghhBBCCCGEEDpMco5WHhk5KoQQQgghhBBCCCGEeCzJyFEhhBBCCCGEEEIIIXSY5BytPDJyVAghhBBCCCGEEEII8ViSkaNCCCGEEEIIIYQQQuiwPBk5Wmlk5KgQQgghhBBCCCGEEOKxJCNHhRBCCCGEEEIIIYTQYbmyWn2lkZGjQgghhBBCCCGEEEKIx5J0jgohhBBCCCGEEEIIIR5LMq1eCPFYSNLLre4iiHypeTnVXQSRr5Ohc3UXQeTLlQT7Qqg1gFrVXQSRL0c+pnTGn01nVncRRL6hFz+r7iKIx4gsyFR5ZOSoEEIIIYQQQgghhBDisSQjR4UQQgghhBBCCCGE0GGyIFPlkc5RIYQQQgghhBBCCCFEldm+fTurV68mICAAfX19WrRowRtvvEHTpk1LFWfLli2sXbuW69evk5GRgaurK927d2f8+PFYW1trFUOm1QshhBBCCCGEEEIIocPyqvB/lW3hwoVMnjyZW7du0bZtW7y9vTl06BAjRozg0KFDWsf58MMPmTp1KhcvXqRhw4Z07NiRlJQUVq5cydChQ4mJidEqjowcFUIIIYQQQgghhBBCVLrLly+zaNEi3Nzc+OOPP3BycgLg4MGDvPHGG7z//vvs3bsXU1PTh8Y5cuQIa9euxcnJiVWrVuHh4QFAamoqU6dOZe/evXzxxRd88803JZZJRo4KIYQQQgghhBBCCKHDcvPyquxfZVq1ahUAEydOVHWMAnTp0oXBgwcTExPD9u3bS4yzceNGAN566y1VxyiAmZkZn3/+OQqFgj179pCZmVliLOkcFUIIIYQQQgghhBBCVLojR46gp6dHt27diu3r0aMHAIcPHy4xjrm5OV5eXrRo0aLYPhsbG2xtbcnMzCQ+Pr7EWDKtXgghhBBCCCGEEEIIHVYVuUAr271790hISMDZ2VntYkkNGjQA4ObNmyXG+uyzzzTuCw8PJzY2FmNjY2xtbUuMJSNHhRBCCCGEEEIIIYQQlSo6OhoABwcHtfsLtsfGxpbrOt9++y0AXbt2xdDQsMTjZeSoEEIIIYQQQgghhBA6rLJzgRaWmJhIYmJise1WVlZYWVkV2TZlyhSuXLlSYsyePXvSuXNnAI2LLRkbGwPKRZXKas2aNWzevBlTU1PefPNNrc6RzlEhhBBCCCGEEEIIIQQAq1evZtGiRcW2T5gwgYkTJxbZFh4eTlBQUIkxo6OjUSi0m8Cem5urXUEfsG7dOj755BP09PT4/PPPiyzU9DDSOSqEEEIIIYQQQgghhA6rypyjY8aMYdCgQcW2PzhqFOCPP/7QOu7169cByMjIULu/YLuZmZnWMQssWrSIhQsXolAo+Oyzz3jqqae0Plc6R4UQQgghhBBCCCGEEID66fMVwdHREYCYmBi1+0vKSapOdnY2M2fOZMOGDRgZGTFnzhz69u1bqnJJ56gQQgghhBBCCCGEEDosL69sU811iZ2dHbVq1SIyMpLk5GQsLCyK7A8MDATA29tbq3iZmZm88cYbHD58GCsrKxYvXkybNm1KXS5ZrV4IIYQQQgghhBBCCFHpnnzySXJycjhw4ECxfXv37gVQLdxUkilTpnD48GEcHR357bffytQxCtI5KoQQQgghhBBCCCGEqAIjRoxAT0+PefPmERISotp+8OBBNm7ciIODA/379y9yTmBgIIGBgaSlpam2/fHHH+zevRsLCwt+/vlnrUebqiPT6oUQQgghhBBCCCGE0GG5VbggU2Vq3rw5L730EitWrGDAgAE88cQTpKSkcPr0aQwMDJg3bx5GRkZFzunXrx8AP//8M23btiU7O5vvv/8eUOYnXbx4scbrvf/++9jZ2T20TNI5KoQQQgghhBBCCCGEqBJTp07F09OTX375hRMnTmBubk6XLl2YOHEivr6+JZ5/48YNviDtLQAAIABJREFU7t27B0BQUBBBQUEaj500aZJ0jgohRHUysTKn26TBNO7VCktHW1LjErl56AIHFmwkPkz9Cn0VHc/Q1Jgnxz1Fk/5PYFvHkZS4JELOBXDkhy2EXdL8EKkpzK3MGTzpWVr1boutoy2JcYlcOHSOjd+tIyYsulri9RrTl7GfjmPuC59zbv+/Dz1WT0+PTzbOxqmuM6+2GFPq8lYXEytzehS6V1Py79X95bj3SxtPT6HHE6N74j+0E46ergBE347g3IYjnFi9m9wc9UntmzzVlif+1wvXxnVR6CuICY7kwpYTHFu5g5zM7FKXvbqZWpnTY9IQfB+ou70LNpSpLcoSr6AtWg3tXKQtzm44wvHVuzS2hdeTTWg/pjfuzT0xsTInLSGZO2ducnjZ39w5e6vUZddlxtZmtJk0mAZ9WmHuaENaXCJ3Dl7k9LcbSQqLLV9wPT2Gbf4I67pOrGj22kMPdWhSj5av9ce1TUNMbC1IjUkgeN95/vl2I6n34stXjkeIsbUZrfLbwyy/PULy2yO5AtpjyOaPsKrrxCo17dF68mBavz1Yq1DX1x9m/9vLylceHSfvDd1haG1Gk7cHU7tva0wcbciITSTi4EUuf7OR1DI8Tyw9XWj8en8cO/hi6mhDTnom8VfvEvj7QYL/Oqq+DJamNJ4wkNr9WmNe256spFRiz93m5spdRB66VM5X+PjKzc1l1KtvExIWwdHta6u7OEKDvLyaMXK0wKBBgxg0aJBWx964caPI//f19S22rTz08mpa7QohhBof1BtZ5dc0sTLn1Q0f4+jpRnpSKrFBkdi6O2JmY0FaQgrLn/2UqOshJQcqRzzzWla8+Ov7ODdyB+DerVAAHL1qk5uTy98f/cSpX/dW3IvWQlBeWskHVRBzK3M+3jgbN8/apCalEhkUjqO7ExY2lqQkJPPp8BmEXL9TpfHq+TVg5tpZmFqYatU5+uzUUTw9YShJcYkV3jlaV8+0QuMVMLEy57VC92pMUCR2he7VZc9+SmQp7/3SxlPoKxi99G0a9fAHIPZOFLnZOdSq74xCoeDm4YusfnEuudk5Rc7r895zdB4/EID4sBjSk1Kxr++CgbEhEdfusOzZz0hPTC1nDRVXWdOkTK3MeX3DJ2rrLjUhmaXPfkbk9buVGk+hr+D5pW/TuEdLQF1bXGCVmrboNWU43ScqvzCnJiRzPzSGWnUcMbEyIzcnl80freJkJX1+1c7Rr5S4mhhbmzF040fYebmRmZTG/aAIrN0dMbGxID0+hQ3DZhFbivfMg9pNG06rCQNJi0t6aAdQ42c703X2iygM9EmJiictLhFbD1f0jQxIiYrnz8GfkHi39D8qlUfVtoSSsbUZgzd+hG1+e8QHRWBVqD02l7M92k4bTsv89lDXOdrw2U40Gq55IQoDU2McmtQD4NS8Pznz3aYyl6U0cko+pMLJe0M9+5yq/xPe0NqMnls+xtrLjaykNBJvR2Dh7oixrQWZ8SnsG/IZ8de0bwvXni3o8MObGJgakZ2WSdLtCEwcrDF1tAEgeMMxTkz4vmgZrMzo9fcnWHm6kpOZTVJgBIaWppjXtgfg8vyNXJr7Z8W9aC0MvfhZlV6vsnz7w0+s+GUtNtZWj3TnqKF9g+ouQqVyt2tSZde6G/d4/dggI0eFEKKSDJr9Mo6ebtzYf441ExeSmZKOgbEhA2e9SMthnXlu4UQW9J5GXq52X3DLEm/IvPE4N3In6d59fh33DaHnAwFw9/di9PIpDJz1IrF3ogg4UjMffi9/9TpunrU5t/9fFk74mvSUdAyNDXlx1qt0Ht6diYumMK3XJPJy1Y9aq+h4Hs28eGflB5haaNcpOWTSszw9YajWr1dXDM6/V6/vP8cfhe7Vp2e9SKv8e/W7Utz7ZYnXdnQPGvXwJz0plV/GfcPtE1cB5b0/5sd38O7UlE6v9ufg4s2qcxr18Kfz+IFkZWTyxxsLuLb3LADWLnaMXvo2tZs2YMBHY1g/ZUkF1lblGjL7FRw93bi2/xy/T1ygqrtBs16k1bAujFw4kfm939W6LcoS74nRPWncoyXpSamsHve1qi3q+nsx5sepeHdqRudXB3Bg8X8dPD5dmtF94iBysrLZ/PFqTv2m7ARV6Cvo+sYz9Hp7GAM/HsvdcwGEXwmuuAqrJt2+ehk7LzeC951n5xuLyEpJR9/YkC5fvEDj4Z3os3gCv/d8T+t2KqzN5MG0mjCwxOMcmtSj61cvoacHhz/+hQsrd0NeHuZONvT94U1cWnnTbfZLbBo5uywv8ZHS5auXsfVy486+8+wu1B6dvniBRsM70XPxBNaWsT1aTx5MyxLa4/raw1xfe1hz+ea8jEOTeoQdv8rZhZs1HlcTyHtDd7SZ+wrWXm6E7T3H8dcWkZ2SjsLYkNazX6DBs51pv2QiO7pp92w3sbei/aI3MDA1IuDX/Zz96Bdy0jIBcOvTknbfvUa9wR2IPRfIzR93qc5r+804rDxdiTkbwLFx35EaHqc8p3dLOix9E7/Jg7h3/CpRx65WTiXUQHl5eXy/8jdW/PLodog+TmpKzlFdJKvVC1FDyCBw3WLv4UrjPq3JSE5j/eTvyUxJByA7I4uN05Zx71Yojl61ady7daXFc/Wth0/X5gD88foCVccowN2zt9jxxW8A9Jv5fIW8Zl3j6uFG6z5PkJacxveTviM9v86yMrJYNu17Qm+FUNurDq37tK30eHoKBb3G9mPmullY21uXeC1rBxveXvYeQyY/V4pXrBscPFzxzb9X1z1wr26YtoyoW6E4edXGV8t7v6zxWgx6EoCD329WdcaB8t7f841yVEnLIZ2KnNN2dA8ADn2/RdUxCpAQEcemD34EoOmAdhiaFE0Qr6sK193ayYuL1N2fherOrwxtUZp4/oM6AnDggba4c/YWe75ZDxRviydfegqA4z/vVnWMAuTm5LJvwQYubjuJvoE+Hcb2Lk2V6CRbDxc8+rYiMzmN3ZOWkJVfrzkZWeyfupy4m2HYebvRoE+rUsU1c7DmqRWTaKvl9OyOM0ai0Fdw5vu/ufDjLsj/XpESFc/ut5aQl5tLnSf9sHSrVboX+Iix8XChQX577H2gPQ4Wao/6pWwPUwdr+qyYpPV0eU3q9fKn8YguZCSksG/SD2XqFHxUyHtDd1h6ulCnXyuyktM4+eYSsvPbIjcji3+mLCfhZhjW3m7U7qvd86TByK4YWpoSdzGI09NWqjpGAcJ2nuHCl8qOOp9X+qi2mzja4Na7Jbk5uRx/bZGqYxQgbNcZAn/br4w9okt5X+5jIyY2jremf8aSlb9Vd1GEqHbSOSoeW6dOncLHx4exY8eqtm3YsAEfHx8++OCDCo1bEh8fHxo3bqz6/6Ghofj4+NCzZ8+HbgMIDg7mpZdeIiwsrMxlLouEhAS+/PJLunXrhp+fHx07dmTKlCkEBARoPCcsLIz333+fTp064efnx5NPPsnMmTOJji4+DSkiIgIfHx+N/0aMGFGZL6/cmj/TAYVCwfV9Z0lLSCmyLy83jzPrlSNCmvRvV2nxPDs3BSDkfAB3/i2ej+X8hqOkJ6Xi5F0bF9+62r+4R0SHQZ1RKBSc3XealITkIvvycnM5vF75Jbpd/46VGs/Q2JDP/57H2E9ewcDIgL++XUt0yD2N12nyZDO+PrCYVr3bcv9eHH/M/kWr8umKgnv1Wgn3atNS3vuljWflbAugdvp+2GVlrl3rB/6QDbsYxI0D57mw9USxc6JuKlNSGBgZYOFgo1XZq1uLZzqiUCi4qqHu/l1/CNC+Lcoaz8pZmQD/YW1hU6gt9BR61GvtA8Cl7afUluXa/nMAuPrV16rsusxncAf0FAqC9p4jI754vV5dp7zHvQY8oXXMOp38eP7QPBr0bkVKVDzHv3z4iCBzZzvcnmhIZlIa/y7aUmx/4t1ojnzyG4dmri6W/qCm8c5vj2AN7XE9vz08S9keowq1x4kS2kMTfRNDOs0aC8DJOetJjoh7+AmPOHlv6I56gzuip1AQtuccmWra4vZa5ee/+0Dt2sKpfSMAQrafVnU2Fxa2R/kZb+HuiKG1GQBGVmbc/v0AwesPkxJS/G+HhOvK57SZa83tpK5Ix06d4annXmb/kRPY17Jl0vgXqrtIQgt5eXlV9u9xI9PqhXjEvfrqqwQHB1fpNZOTkxk5ciQBAQE4OzvTuXNnoqKi+Pvvv9m1axfLly+nXbuifxxfunSJF154gaSkJLy9vWnSpAmXL19m3bp1nDx5kj///BNr6/9G1F29qhxd5OPjg7e3d7Ey1K+v238Q12nuCcDdM+oXDAk5p9xer41PpcWzcVXmXwq/HKz2nLy8POLu3sPVtx61m3kQcUX73JuPAs/mXgDcOnNd7f5bZ5Udxj6tG1VqPENjQ+r51if05l1WfrCU6/9cpdOQrhqv4+ZVBxNzE478dYBfPl1FnYbuWpVPV+jCvQ+QGBmHtbMdLo3rcuPA+SL7nLxqA5DwwEIeBaMY1XHL74TLTE0n6d59rcpe3dzz6+7OmZtq99/Nr7v6bRpWaryEQm1x/cC5IvsK2iK+UFvo6enxy/hvsHG1J+qm+vx1RqbGAOjrV0dGyorl1NwDgMh/1d/jUeeUPzq6avmeAbDzcsPQ3Jjrfx7hyCe/UathnYceX6dDY/QUCkKPX1GNznvQhZW71G6vaSqjPWzz2+PGn0c4qkV7aNLs5b5YuNgRe+0uV37ZV6YYjxJ5b+gOe39lW8T8q/7zP/aMsi0c2mrXFhfn/EnwX8eIvXBb7X4DM2PVfyvyP+cTA8I5PW2lxpi2TZXP6eTgSK3K8Li7HXyX1LR0BvTpzrQ3x3EzMLi6iyREtZLOUfHYatq0Kdu3b8fMzKy6i8L27dvR09N76DFOTk5s374dI6Oi0zlztcyVWJHmzZtHQEAA/fr146uvvlKVafPmzbz77rt88MEH7NmzR/VHa2ZmJu+88w5JSUnMmDGD559XTuPOyMhg6tSp7Nq1i4ULFzJjxgzVNa5duwbAyy+/zMCBJeeD0jV29ZwAuK9hhGDBis6WDjYYmRmTmZpRafEU+ponCegbKNvIxs3hodd/FDnVcwHgnoY6K1hZ3sbRFmMzEzJS1f/RU954WRnZfD/pW45vOaJxRe7CAi/c4oOnpnDnanCJx+qiWvn3apyGerpfynu/rPFOrzlAneaedB4/gDv/3iDolLJT28W3Lj3fGQbAyV/3aPWaPNr7Mnj2KwAc/XEH2RlZWp1X3WqpPjfULxJS2s+hssY7veYA7s096TJ+AMH/3iDolPLz3dW3Hr3eGQ4UbYvcnFxuHLzw0LL49lIu7hSVv8jco8w6v14TNdRrYqiyXs0dbTA0MyarhHYCiDp/mzV9ZxBzVbvFtux8lJ3UcbfCAajbtRmeT7XB0rUWaXFJBO44TcC2f7SK9agraI8kDe2RlN8eZo42GJgZk61Fe9w7f5t1fWcQq2V7qGNsY06L1/oDcPKrdWpH29U08t7QHRb5bZGiYdGplPzPf1Mt3xexZwOIPat5tlnt3srP+PSYBDLikh4ay8DMGK8Xe9Hguc5kp2VyfdnOhx4vlPwa+7B+5UIaentUd1FEKeQ+Bp/91UU6R8Vjy9TUFA8P3XgYaFMOQ0NDnShvdnY2O3bsQF9fn5kzZxbprH366adZtmwZAQEB3L59Gy8v5Ui77du3ExwczIABA1QdowDGxsZMnz6dM2fOEBQUVOQ6BSNHfX19q+BVVTxzOysAUuOT1e5PK7TdzM6yxE6JssQr6Eh10jAqwsDYEFt3RwBMrc0fev1HkVV+nSXfV/+lOrlQnVnaWZbYOVrWeFkZmRzdeEjrct86UzwFwqNEF+59UHbImdeyouuEZ3j5jxncv3uPnOwc7Ou7kJWeya65azm28uF/QP1vxTu4Na2PlaMtOVnZHFyyhb3fVO0quOXxX92pv2cL16l5qdqidPH+WbMf81pWdJvwDOP+mEHc3XvkFmqLnXPXcnTlDq1fl3fnZnh3agbAuc3HtD5PV5nWUtZrmobPloxC9WpiZ6lVB1CkhpHWmhTkSsxMTqPf8kl4PJDD0fvpdgTvP8+OVxeQnZ6pLkSNUdAe6RraI71Qe5jaWZJUCe2hTuOR3TC2MiP2egh39p0v+YQaQN4busM4vy0y7qt/FmcW2m5sZ6nVjwaamDhY0+h15Q8BdzYe13icXdP6tPn6FSzrO2FgZkJKaAynpiwjQU0KF1FciyaNSz5IiMeI5BwV1SI+Pp5vv/2WZ555Bn9/f/z8/OjUqRNTp07l9m3l9IrffvsNHx8fpk+frjbGgQMH8PHx4bXXXlNtS0tLY8WKFQwfPpzWrVvj5+dHhw4dmDBhAhcvXixyfmlyg5YmbmGXL19mzJgxNG/enLZt2zJ58mQCAwOLHfdgzlF1Hsw5WlD+u3eVv3x3794dHx8fMjMzadu2LQ0bNtSYh/SZZ56hYcOGhISU/suDgYEB+/btY9OmTdjZ2RXbn5KizENUeKrj7t27AXjhheK5bFxcXDh27Bg//vhjke3Xrl3DzMxM56fPa1KwYEuWhi/KhbcbGpe8uEtZ4t3Iz8nn3sILjw5+xc55Ykzv/6amGj76U1MfZJRfZ5ka6qzwdiMTY7XHVGa8mkoX7v0CMUGR3A+JRqFQUKueM46ebij0FWQkp2nsbC2gp6eHd+emWDkqc5fqGxrg5lcfp/xRRI8C3WqLCFVb2JeyLQqzb+DCs9+8DsDtU9e4uvtfrc/VVQb59ZqTrn5EcuEOF4NKWgzMyNwUgBav9KVe9+Yc/3ItK5q/zhKvF9kxfgFpsYnU69aczp+PrZTr6xL9/DrO1tAeOVXQHg/SU+jh93x3AM4v3V4l19QF8t7QHfqqtlD/+V94u3452kLf1JgnV76NkY056bGJXF1YPM9rAStvN2x962JgZgKAkbU5rt1boDCS8V+i5sqrwv89bqRzVFS5mJgYhgwZwpIlS0hNTaV9+/a0bduWjIwMtmzZwvDhw4mIiKBfv34YGhqyd+9eMjOLP4j//vtvANWU6/T0dEaNGsXcuXOJioqiVatWdOjQAT09Pfbs2cPIkSO5dOlSqctb1rjBwcGMHj2awMBAOnXqhIuLC9u3b2fo0KEP7VDVlr29PQMGDFClBejRowcDBgzAyMiIAQMGkJeXx9atW4udd+PGDa5du0br1q2pU6dsOa8sLCyK5QHNzs5m0aJFRERE0KRJExo0aKDad/XqVQwNDWnYsCEREREsW7aMGTNmMG/ePLV1ER8fT3h4OPXr12fVqlUMHDiQZs2a0bFjR2bOnElUVFSZyl2VSpo+raf47+NXm0dPWeLduxXG+U3KUVXPLZpI04HtMTIzxsTKnHZje9NzyjBS80dj1MRFBEqqM4WiUCoLLaaoVHS8mqo092plxus+aQijvn8LM1tLfp+wgI98X+TjJi+x5s1FKPQVDPr8JZ6aMfohgWFel7f5sOFYFj89k8ATV/B6sgnj1n6IfX3nUr2G6qILn0MAPSYNYfT3kzCzteS3Cd8x0/cFPmryIn+8uRCFvoLBn79E/4e1RT77Bi6M++0DLGpZkXjvPmveWqRFqXVfXmnu8Ur6bNE3NgSUI/VOzv2TM99vJS02kez0TAK2/cOuCYsBaDS0I7aerpVSBl1RmvaoqgUr6vX0x7K2PSlR97m1SfNIuppG3hu6o6S2oMjnf9nawsDMmM4/v4N9S09ys3M4MeF70mMSNR4fceAif/q8zAa/8ZyY8D05mVk0HNeXjismlen6QojHm3SOiiq3ePFiQkNDGTt2LLt27WLRokX8+OOP7Nu3D39/f5KSkti0aRO2trZ06tSJxMREjh0rOm0uPT2d/fv3Y2lpSbdu3QD49ddfuXLlCr1792bfvn0sWbKEpUuXsn//fnr37k1WVhZr15Z+ddCyxo2IiKBly5bs2bOHBQsWsGnTJqZMmUJqairvvfdeub9Qe3h4MG/ePOztlYvuTJ8+nXnz5gEwZMgQALZsKf5r66ZNmwAYPHhwua5f4MqVK4wfP54uXbqwcOFC/P39Wbx4sWp/ZmYmERER1KpVi507d9K3b1++/vpr1q9fz/Llyxk2bBhz5swpErMg3+iVK1eYP38+tWrVom3btuTk5LBu3TqGDBmiGmGsq7LSlNOJDPK/VD/IoNCv2tpMwyprvM3vryDg6GXMbC15dsEEPrq6ipkXl9P/4zFc3Hqcs38dASA9Ka3EMjxqMvLrzFBjnf23XdNo0MqMV1NllVhP/92rmkYgljeeg4cr3SYOIjcnl19f/YZLf58kMyWdjKQ0Lmw5zo/Pf0lOVjYdX+6HcyP1C17l5eYRHxZDVnomoRcC+XHUF4RdCsLU2pyuEwaVWG5dkJmmTO2gzeeGNm1RlngOHq50nziY3Jxcfn71ay7mt0V6UhrntxxnxfNfkJOVzZMvP4WLhrYAqN20Aa+t+whrl1qkxCXx4/9mkxBZM1bqLpgKrK+hXvVL+bwoi4K4mclpnF9RPMVByNErRJ0PRE+hoF73FpVSBl1RUnsoqqA9HuTRrw0AAVtP1cgfMzWR94buyClFW+SklT4vt7GdJV3XvY9Th8bk5uRyavIyIg89fFBLRmwiWUlpZMQlEbzhGIdGzSE3Owe3Hi1w6iBTxkXNJKvVVx7pHBVVztbWlieffJKJEycWWYTIwsKC/v2V+WUiIiKA/0aFbt9edArR/v37SU1NpXfv3hgbK6evmpiY0LlzZ6ZMmYKBwX8PaCMjI1VHYEHc0ihrXENDQz799FNMTU1V28aNG4efnx+BgYGcPHmy1GXRVqNGjWjUqBGBgYFcvnxZtT0nJ4etW7diZmZG7969K+Raly5d4sCBA0RHKxO0Z2VlFUkdkJysnC6ZkJDAtGnT6NGjBzt37uT06dPMnz8fGxsbfvzxxyIdzAX5Rr29vdmxYwerVq1i2bJl7Nu3j/79+xMdHc0777xTIeWvLAUjMs1sLNTuN7O1VP13SqzmX8XLGy8zNYOfnv+StW8u5OLWEwQcvcy/aw+wctQX/PXOUszzz0uKji+xDLqmrm99PvrzC7X/6vrWJym/zixsLNWeb1mozhJjE0q8XkXHq6kK7lXTCr73SxOvce9WKPQV3D55lbtni+eXi7x2l2t7zwLQpF/bEssAys7SI8uVMxbqt9VudffqlpqfA67iPodKH8+3d+uHtkXEtbtc3XsGgCb9nlAb16dLc15dMxMLe2uSouNZNuIzIq+XfWEbXVOQw9LERn3uZxPb/+o7LfbhC5OUVUZiKgD3AyPIzVLf+RZ7U5mqx8q95i3gV1hGKdojvZLaozA9hR7uXZsCEPj3qUq/ni6R94buyMh/Fhtp+Pw3KvT5nxFX8vOkMHN3B3pu/Rh7f09ys7I5OfF7gv86Wuoyxl0MIuroFQAc2jUq9flCiMebJOQQVe7NN98sti0uLo4bN27w77/K3GFZWcpfHLt164aVlRX79u0jIyND1RFa0FlaeBXz0aNHM3p00Wl5iYmJ3Lx5k8OHDwOonZ5fkrLGbd68OW5ubsW2d+3alcuXL3PmzBnatWtX6vJoa8iQIcyaNYvNmzfj56fMN3n06FGio6MZPHiwajp+efXq1Yunn36ahIQEtmzZwoIFCxg3bhw//fQTrVq1UtVNWloaHTt2VI1uBejXrx9mZma8+uqrLF68mOHDh6Onp8fYsWPp1asX5ubmRfKampmZMWvWLE6fPs2VK1c4f/48zZs3r5DXUdGiA8OpVc8Zm9rqvyjbuClH/CZG3ddqxFZ54uXl5XFxywkubjlR7DwX37oARN149JLXm1ma4dNa/ZdfM0szwgPDcK7ngoOGOrN3U26/HxWn1UjPio5XUxXcq7YVfO+XJp5t/rbowHCNcWOCIoocC2DpaIONay1CzhfPDa08JxIACwfrEsutC6IDw7F/SN3ZlqEtShuvYNu9h7ZFZJFjC2v+dAeGzxuPvqEBsXeiWPH8F8TdvVdiWR8l9wPCsannhGUd9fVqWVtZL8lR9yttdFz87ZJ/PM7LVU6r1dRBVFPcDwjHWov2SKnE9ijMuZU3JraWJIfHVsjCTo8SeW/ojsSACCzrO2Nep/jnNIB5flukRt4nJ037trBpVIcuv0/D1MmW7NR0jo5bQMT+C2qPVRjqY+7uSF52Dsl31D8HkoIicenSFBP7R+M5LURp5T6GuUCriowcFdXi7t27fPHFFwwdOpSWLVvSrl07xo4dy44dyukqBcO4jYyM6NOnDykpKaqOyOTkZA4dOoSLiwtt2rQpEvfevXvMnz+f5557jrZt29K6dWtGjRrF77//Xq7yliWuuo5RACcnJ1XMytS/f38MDQ3Ztm0bOTnKL2sFU+oHDaq4KaF2dnaYmpri7OzMuHHjeOutt8jKymLJkiWAcuRtgREjRhQ7v0uXLjg5OREVFUVwcDCgXMypTp06ahd8MjU15YknlKOLrly5UmGvo6KFXQoCoE4LT7X7C7aHng+otHgWDta0fb4nrUd0U3uOjZs9zg3dyc7IIkTNiC5dd+3kFUbWHaT237WTVwi6qKwLzxY+as/3bKHMmxtw7qZW16voeDVVaP696q7hXi3YHqLlvV+WeAVpIiwdbTTGLehUTU9WHmtf35n3//me8Rs+wdxO/ehgK2flZ1JS1KMx0jr0kjL9iHsLL7X7C7bf1botSh+voC2sStEWBXx7t2b416+hb2hA+NVgvh/6UY3rGAW4d1F5jztruMcLtkedU99pXxGi8n8QsPNyRd9E/bRZm/xcu4k1sA0Ki85vDycN7eFUBe1R5Hr+yuuFn7xeJdfTJfLe0B1xF5Wf//b+6tvCvqVye+w57Z4nABb1nei6ZjqmTrZk3E9m/7NfauwYBfCbMoT+R+bh/+n/NB5j6qxcRDEt6r7W5RBCCJDOUVENtm7dSp8+fVi9ejVJSUl06tSJiRMnsmzZMj755JMZ73r5AAAgAElEQVRixxeMDi3oON2zZw+ZmZkMGDCgyLT8kydP0qtXL3744QeioqJo06YN48ePZ9GiRaqOurIoa9yCUa6aFJ6iXxlsbW3p3r07sbGxHDt2jOTkZPbv30+dOnVo3bp1pV23oL0KpsZbWlpiaKj8Mlm7tvpVnl1dlQns79/X7otMQZ7VtDTdzZN5Zec/ADTu2QpT66LTwfQUevgP7QTA+Y3aTRsqS7zcnFz6fzKGpz7+HyZWxUcKdxo/QHVOZn4uqZrkn53K1BWterXB3LroNDA9hYJOw5Sdxkc3HaqWeDWVtvfquQq+9wvHCzqpzFvs3akpVk62xWKa17LCu5NymmrQKeWxscFRxIfHolAoaPVcV7Vlafd8TwCu7z+nVdmr2+WdpwHw1VB3LUvZFmWJd/tkfpqUUrQFgJNXbUZ8NwF9A33ung9g6XOfkRxdM9NVBO5Q1muD3i0xtiler42GKev1xoZjxc6tKCFHr5AWm4ihmQl+I4v/oGbfyB3X1t7k5eZye9e/lVYOXXA7vz3qa2iPhvntcbMS26MwB796AERfDq6S6+kSeW/ojtDtyrZw69MKIzVtUX+4si2C/9KuLfRNjei8+h1MHKxJj01k/9BZxJ55eMfqvePK54lz5yaYqZlpYFHXEdeuzQAI3/toPKeFELpDOkdFlUpJSeGjjz5CoVCwbNkydu3axfz585kwYQKdO3dWOz29VatWuLm5ceDAATIzM9VOqc/Ly2PGjBmkpaUxa9YsDhw4wMKFC5k8eTI9e/Ysc0Lh8sTVNDI0LEyZl8jZufJXOy7Iibp7924OHz5Meno6zzzzTJFO5dIKDQ3ls88+Y/78+Wr3F3SEZmdnA8pRoB4eHgAaV5mPiYkBoFatWgAsWrSIN998kxs3bmgsA1RNHZZV1PUQru87i4mVGSOWTFLlSzQwNmTQV+Nw9KpNdGA4Vx/4Im1ma4m9hyt27o7ljpcal0TQiasYGhvxzJevYGiq7LBX6Cvo8HI/2j7fk4yUdA4u2lSZVVFtQq7f4ey+fzGzMmfSD++qcoUaGhsy7qvXqe1Vh/CAUP7dWTSHm6WtJa4ebji6O1dIvMdNZKF7ddSSSar8lAbGhgz+ahxOXrW5p+Hed1Bz75cl3o2D5wm9eBsjMxP+9+M72DdwUe2zqW3P6KWTMbO1JPJGCFfyO/zy8vI4tES5iF33NwfTbOB/aU+MzIx55ouX8OrUlNT7SarjdF3k9btcy6+70UsmF6m7oaq6C+PKrtNFztPcFqWPV7gtxv44tUhb2Na2539L38Y8vy0u53eEw//Zu/e4HO//D+Cvq7MoUSmFnLZyDCWnKGfLSs7mNIdhDmP7Ocx5mDXGMIfxncxxZiSZ0yhWTncUiiSROXSkkg5Kdd/X74/pnlbRpvu+7nW/no+Hx8N9XZ/79nJfdXf3vj+fzxsY8PVH0DcyQGbKU+wYvwp5L/f9q4zSYh7hj6BrMDQ1xntbpsPo5fOqa6iPbqsmoOa7tnh6NxFxvxX/njGqUQ01GtWGqV2t0h72HxHlCoSu9gMAdJw3FO96//X1b2Jrjp7rJkHQ0cFt/wvISkh7639Pk6XFPML9l9ej95bpMHzleri/cj3ulXI9zCroerzK/GWjsvTY+Ap93P8Cfm9ojoxbj5AQeA0GpsZw/WEGDF7u96pjqA+Xbyeg+ru2yLybiPgTxa+FQc1qMGlcG9X+di2aTe8H08Y2UMgVuDBxPTJuvXl7p+SzUUi7FgddAz24+s5AtfpWynPVHerCbfds6BoZ4MFhGZ7euP/2/2kiDcSGTKrDPUdJreLi4pCTk4NWrVrBzc2txPmirvSKl3v3AIAgCPD09MSWLVtw6tQpyGQyNGnSBO+889eyvvT0dDx69AiWlpYYPHhwuR63PN7mca9du4a8vLxiy8oVCgWCgoIAoMSWAP/W6wqdrq6usLKywpkzZ5CdnQ1BEODt7f1W/56+vj5++ukn6OvrY+zYsTAzK75Usmj7g6ZN/+oS2aVLF8TExOC3334rcd3v3buHhIQE1KpVC3Xr1gUA3L59G6dOnULDhg1hb198CXPRTFh9fX20a1e+RipSObzgR1jZ10Wjjs0w5+J6PLmbiBr1asHYrBpyM3Pw08Q1JX7wtP+wF7p/OhBP459gteuMt348/89/wNSjPmjRtx0ad26O9PspqG5jjmoW1VGQl489E77F0/gnKn8upPLj/C2o6+eDZh1bYL3sByTejUetelaoZmaCnGc5WDNpZYnnrNeHHhj42TA8efQYM1wnvfXjaaNDC37Exy+/Vj+/uB6P7yai5itfq3tK+Vrt8GEv9Hj5tf/N3772/83j/TR5HcbvmQ/b5g3wWdAqPIlLhKCjA4v61tDR1UH6w8fYPeFbKOR/vX6H7g5E7aZ2cPmgG4at/wQeC0YiMzkdlo1tYVjVCM+fZmHXhDXI/A8t1zu0YBus7OuiccdmmHdxQ4nnbncpz13HD3uh56eDkB7/BCtdp7/14+2evBYTXl6LmUGrX14LARb1a0NHVwdpD1Owc8Jq5bWo17ox6jv/+dovKhQYteWzMv9/WY8z8NPU7yriqZLU7/O2w9y+Dup2aoYxl9Yh/W4iqterBSOzanjxLAfHJqwD/va8thzTC+3+bwAyHz3Bzo5lP0flFbXnDGq+YwvHcb3Re8NUdJw3DLlpWTB3qANdfT2kRMTh7JLdb/3v/BeEzNuOmvZ1UKdTM4y+tA5P7ybC9JXr8Vsp16PFmF5o+/J67KmA61HE+OWWFC+e5VTYY/6X8HtDc4TN/RHVHRbDyrUZ+oV9h2d3ElGtXi0Y1qiG/Gc5ODdubYlr8e7YXmgxcyCyHz3BkXafAgB0DPTwzpg/V2LIc1+g5eclf8d61fkJ3yHv5cqB8xPXo9uB+TB3bIi+Z1chKy4JEASYNq4NQUcHyeeicHnmVhX874mosuPMUVKropl+sbGxePTor08I5XI5Nm/ejN9//x0A8OJF8SW+RbNEV61ahYKCAvTr16/YeTMzMxgZGSE1NRWRkX/tVSOKIg4ePIiff/651Md9k7d53IyMDCxevFg5g1IURXz77be4c+cOWrVqVWGNhIqW7xd1hX+Vrq4uvL29kZaWhpMnT6Jt27ZlLm0vLysrK+Us3wULFiAvL095LiIiAitWrAAAjBs3Tnl82LBhMDY2RkBAAI4cOaI8/uzZMyxcuBAKhQIjRoyAjs6fL0lDhw4FAGzfvh1XrlxRjs/JycH8+fORnZ2NQYMGwdJSs7uCZianY9P7C3Bx+2/ISc+ClUM9KArliDx8AZu9Fr22WUxFPV5GfCq+f38BrvqFoDAvH9ZN6kFUKHDN/xw29Z2Pexc1d9/WipCenIYF78/Cbz8eRVZaJuo52EFeqMCFw2exyGs2Eu/+s5k4Ff14lVVmcjo2vr8AF15+rVq//FqNOHwBm/7l1/4/fbyMhFRs9FyAwDUHkHL7EWrUsYSZjTke303A6e/8seH9+aXuX3loni9+mvId4i7ehEEVQ1g71EPW4wyc33Yc63p/jgfhpc9o11TPktOx4f35OL/9BLJfee6uHb6ADV4LX9soqaIeLyMhFes9F+DUmgNIVl4LCzy+m4Cg7w5i/d+uRVFhFACq1zZHg7YOZf6p49jo3z85GiQnOR2/eCxCxLaTyE3LgsXL5/V2wEX88v5iPL37z67Tv3X2i904MmY1HoRch76xIWo0ssbTuCRc8NmHg4OX48WzyjuD91U5yek44LEI119eD/OX1yM24CL81Hg9BB0BhqZVAAD5mZq7lZAq8XtDc+QmpeNkn4W47fsb8tKyYNakHkS5HPcPXcRJj0XILOe1MHOoC4OXW7PoV6sCSxf71/7RNfxrr9fnCak42WchotYFIOuPZFSzqwXj2jWRGn4Hl2f5IviDFSishFtFERVRiKLa/mgbQeQUF1Kzzz77DMePH0eVKlXg4uICPT09XL9+HU+ePEHjxo1x9+5dODs746effip2v4EDByIqKgq6uroIDg5GrVrFl2esXr0aW7duhb6+PlxcXGBsbIxbt24hPj4ejRo1wr1792BtbY3g4GAAwKVLlzB69Gh06NABO3bsAAD4+/tj3rx5GDRoEL766qu3etxmzZohNjYWVlZWaNasGe7evYu4uDjUqlULe/bsgZ2dnTK7vb09dHV1lft0xsfHo3v37qhXrx4CAwPLPAYA06ZNQ2BgIOzs7ODg4AAfHx9Uq/bXfoj3799H7969AQArVqyokGZMKSkpGD58OOLj42FpaYmWLVsiNTUVN27cgEKhwIwZMzBlypRi9zl+/Dhmz56NwsJCNGvWDLVq1UJERASePn2K9u3bw9fXV7kkvyjr9u3boaOjgzZt2qBGjRoIDw/H06dP4ezsDF9fX1SpUqXcmRfUH/7W/2+qGH+I2vkLniayE8r/PUSqxe6jmqWOXFfqCPQSr4TmqLy92P97LOT8maEpBl3/UuoI9Ap9i4ZSR1CpmialN8VUhfSs/17D3rfBmaOkdj4+Ppg2bRqsra0hk8kQGhoKa2trLF68GIcOHUL16tURERGB9PT0Yvcrmi3avn37EoVRAPj0008xf/58NGjQAFevXsX58+dRtWpVfPrpp/D398e7776LpKQkxMT8s26f//Zxmzdvjh9//BEWFhYIDg5GRkYGBg4cCD8/v2KF0bc1Z84cODk5ITk5GaGhocr9OIvUr18fFhYWMDY2VhZJ35aVlRUOHjyIcePGwcjICGfPnsX9+/fh6uqKHTt2lCiMAoCHhwf8/PzQu3dvJCUl4eLFizA3N8fMmTNLFEYBYO7cuVi3bh3atGmD6OhonDt3DpaWlpg9ezZ27NjxjwqjRERERERERP9l3HNUdThzlKiSCw8Px4gRIzB48GAsX75c6jiS4cxRzcGZo5qDM0c1B2eOahbOHNUcvBKagzNHNQdnjmoOzhzVLJV95miNao3V9m89zb6rtn9LE7AhE1EllJ+fDz09PWRkZODrr78GAAwfzuIgERERERER0X8RP0xXHRZHiSqhS5cuYfLkyZDL5VAoFPDw8CjWPb6Ij49Pie0L3mT16tUVFZOIiIiIiIiISFIsjhJVQnZ2djA1NUVeXh569OiBJUuWlDouKCgICQkJ/+ixWRwlIiIiIiIiUi/uiqk6LI4SVUL16tXDxYsX3zjuzJkzakhDRERERERERKSZWBwlIiIiIiIiIiLSYArOHFUZHakDEBEREREREREREUmBM0eJiIiIiIiIiIg0mMhu9SrDmaNERERERERERESklThzlIiIiIiIiIiISINxz1HV4cxRIiIiIiIiIiIi0kosjhIREREREREREZFW4rJ6IiIiIiIiIiIiDSZyWb3KcOYoERERERERERERaSXOHCUiIiIiIiIiItJgIjhzVFU4c5SIiIiIiIiIiIi0EmeOEhERERERERERaTDuOao6nDlKREREREREREREWokzR4mIiIiIiIiIiDQYZ46qDmeOEhERERERERERkVbizFEiIiIiIiIiIiINxnmjqsOZo0RERERERERERKSVBJGbFhAREREREREREZEW4sxRIiIiIiIiIiIi0kosjhIREREREREREZFWYnGUiIiIiIiIiIiItBKLo0RERERERERERKSVWBwlIiIiIiIiIiIircTiKBEREREREREREWklFkeJiIiIiIiIiIhIK7E4SkRERERERERERFqJxVEiIiIiIiIiIiLSSiyOEhERERERERERkVZicZSIiIiIiIiIVCIxMREZGRlvHPfo0SOcPXtWDYmIiIoTRFEUpQ5BRETFyeVy6OrqlmvsvXv30LBhQxUnIiIiorfx+PFjpKSkoFGjRjA2NpY6DpHaNGnSBF5eXli5cuVrx02fPh0ymQxhYWFqSkbXr19HVFQU8vLyYG1tjXbt2sHc3FzqWERqpyd1ACIiKmnIkCFYvXo1GjRo8Npxvr6+2LBhAyIjI9WUTLvFxcVh165dCAsLQ1JSEnr37o0VK1Zg2bJlaNiwIUaMGAFBEKSOqTUeP36M8PBwJCcno169eujRowdu3LgBBwcH6OvrSx1Pa6Snp8PPzw9hYWFITk6Gq6srPv/8c2zevBn29vbo1q2b1BG1Qn5+Po4fPw5HR0flz44zZ85g9erVSEpKQosWLTB37lw0bdpU4qSV3927d7Ft2zYMHDgQzs7OAIDVq1dj+/btUCgUMDY2xpw5czB06FCJk2qHvLw8BAUF4fbt28jMzIRCoSh1nCAIWLZsmZrTVU7h4eF4dQ6WKIpITU19bdEzKysLERERKCwsVEdErTFixAi4urpi8uTJxY7fv38fs2bNws2bN4sd19PTw5AhQzBnzhwYGhqqMyqRpFgcJSLSQDdv3sSAAQMwe/ZsDB8+vMT5+/fvY+7cuYiMjGQxTk3279+PL7/8EgUFBcpjRb9gyWQy/Pzzz7h8+TLWrVsHHR3uWqNKmZmZWLZsGU6cOKG8Bp6enujRowe++uorJCQkYP369WjdurXESSu/kJAQzJ49G1lZWRBFEYIgoEmTJgCA48ePY/369Rg9ejTmzZsncdLKLSMjA8OHD8cff/yBZcuWoUGDBvjjjz8wffp0ZaHh8uXLGDVqFAICAlC3bl2JE1decXFxGDJkCHJzc9G8eXM4OztDJpPB19cXurq6aNasGe7evYslS5bAzs4O7du3lzpypZaamorhw4fj0aNHeNOCSRZHK86+fftw7Ngx5W1BEHDx4kVcvHjxtfcTRRHu7u4qTqddrly5Altb22LHHj9+jJEjRyI1NRVWVlZo3749LCwsEB8fjwsXLmDv3r2IjY3Fjh07yr2Sjei/jsVRIiINNGPGDHz//ff48ssvERwcDB8fH1hYWAAAduzYgXXr1iEvLw/vvPMO38irQVhYGL744guYmZlh2rRpcHV1Re/evZXn586di6VLlyIwMBABAQEYMGCAhGkrt5ycHIwaNQq3b9+GlZUVXFxccOTIEeX5qlWr4smTJxg3bhwCAgJgZ2cnYdrKLSYmBp988gkEQcDYsWPh6uqKcePGKc+PGDECa9euxa5du9C2bVv06NFDwrSVm6+vL+7duwdnZ2e0aNECALB3714UFhZi4MCBWLhwIY4ePYpFixZh8+bN8PHxkThx5fXDDz/g+fPn+Oijj+Dp6QkA8PPzgyAImD17NsaMGYOYmBgMGjQIO3bsYHFUxb799ls8fPgQNjY26N+/P6ytraGnx1+BVe3zzz9Henq6siAtk8lgaWmJxo0blzpeEAQYGBigfv36mDhxojqjaqWNGzciNTUV77//PpYvXw4jIyPlufT0dMybNw9nz57Frl27MHbsWAmTEqkP9xwlItJQMTExmDt3LmJiYlCzZk3MmDEDhw8fxtWrV2FoaIgpU6Zg/PjxfJOvBhMmTIBMJoOfnx8cHBwAAA4ODvDy8sI333wDAIiPj4eHhweaNm2Kffv2SRm3Ulu3bh22bNmCoUOHYsGCBTAwMChxLTZu3IiNGzdiwIABLAKp0PTp0xEUFIRt27ahQ4cOAEp+X0RHR2PQoEFo27Ytdu7cKWXcSs3DwwM5OTkICgpSbinRrVs3JCUl4dSpU8qZogMGDEB6ejqCg4MlTFu5ubu7w8TERPmhjVwuR/v27fH8+XNcuHABZmZmAIAPP/wQsbGxkMlkUsat9FxdXSGXy3HixAnlc0/q9/efDaQ+pT33nTt3hkKhwOnTp4sVRos8f/4c3bt3R61atXD48GF1xiWSDNf9ERFpKAcHB/j5+WHatGl49uwZlixZgmvXrsHFxQVHjx7FpEmTWBhVk8jISDg7OysLo6WpU6cO2rZti/v376svmBY6ceIEbGxssHjxYhgYGJQ6Ztq0abCzs8OVK1fUnE67hIWFwdHRUVkYLU3Tpk3h5OSEuLg4NSbTPgkJCXB0dFQWRuPi4pCYmIi6desWW0Jft25dpKWlSRVTK6SlpaFRo0bK2xEREcjKykKTJk2KFeeqV6+OrKwsKSJqlczMTLRu3ZqFUYmdPn2a26tokKysLLRo0aLUwigAGBsbw9nZGQ8fPlRzMiLpsDhKRKTB0tLSEBsbC7lcDlEUIYoi7t27V2LzdFKtFy9eoEqVKm8cp6enh7y8PDUk0l5FjWXetAeWvb09kpOT1ZRKO+Xk5Ci3+3gdExMTFoFUzNjYGC9evFDeDgkJAYASS7afPHlSrtcy+vcsLCyKFaBDQkIgCAI6duxYbNwff/zBgp0a1KtXDxkZGVLH0Hq2traoUaOG1DHoJTs7u2J76Jfm6dOn3EOftAq/2omINJAoitixYwc8PDxw6tQp2NnZYfv27Rg3bhzS09Px2Wef4eOPP0ZSUpLUUbVCvXr1cOPGDeTn55c5Ji8vDzdu3GCjExWrWrVquYqeCQkJqFq1qhoSaa/atWsjOjr6tU1O5HI5oqOjYW1trcZk2qdhw4a4cuUK0tPTIZfLceTIEQiCgG7duinHREZGIiIi4rUz4OntOTg44OrVqwgNDcX9+/dx6NAhACi25+7u3btx584dtGnTRqqYWmPQoEGIiIjgSgINEBgYiGHDhsHJyQlNmzZFkyZNSv3TtGlTqaNWOrGxsTh27Bj++OMPAEC/fv1w+fJlJCYmljr+6tWruHr1Kq8FaRWuxyQi0kADBw7ErVu3AACjR4/G//3f/8HIyAgdOnRAr169MHfuXAQHB+Py5cv49NNPMXr0aIkTV259+/bFunXr8MUXX2Dp0qUllnPn5+dj6dKlePr0KYYPHy5RSu3Qpk0bBAcHIyIiAq1atSp1THh4OKKjo4sVhqji9ejRAz/++CPWrVuHzz77rNQx69evR0pKCsaMGaPecFpm8ODBmDt3Lvr27YsqVaool9R37twZALBkyRIcPnwYoihi2LBhEqet3CZOnAiZTKZsYiKKIjp06ICWLVsC+LMoERsbCyMjIzaeUYGrV68Wu928eXPUr18fEyZMwKhRo9CqVSuYmJiUOSOOBWvVCAoKwvTp05UfpgmCwFmJahQTE4NZs2YB+HOlQf369VFQUIDJkydj586dylnsd+7cwYkTJ7B9+3aIooiRI0dKGZtIrdiQiYhIAzk4OKBevXrw8fGBs7NzifP5+flYu3Ytdu7cCVEUlYVUUo0XL17ggw8+QHR0NKysrODo6IhTp07B3t4eLVu2RGhoKB49eoRGjRph//79nLGoQpGRkRg+fDiqVq2KGTNmwMXFBZ6envD09MSsWbNw9uxZfPvtt8jMzMSuXbtK/f6hipGZmYkBAwYgISEBzZo1Q9u2bbF9+3a0atUK7u7uOHv2LK5duwZLS0sEBASgZs2aUkeu1Hbt2oW1a9ciNzcXDRs2xJo1a5SzRD08PPDw4UN8/vnnGDVqlMRJK7+IiAisXbsWqampcHZ2xuzZs1GtWjUAf374CQBffPGFsmBKFcfBwQGCIJQ4LopiqcdfJQgCoqOjVRVNqw0bNgwRERGYPHkyRowYUa4tWahiJCcnIzo6GtHR0bh16xZu3bqlnDEqCAKCgoJga2sL4M9Gi6dOnQIAjB07Fp9//rlkuYnUjcVRIiINtHz5csyaNavMjdKLXL16FfPnz8dvv/2mpmTaKysrC8uWLcPx48chl8tLnO/atSuWL18Oc3NzCdJpF39/f3zxxRcoLCws9bwgCPj888/x4YcfqjmZ9klKSsLMmTNLzNYq4uDggDVr1qBhw4ZqTqad8vPzkZ2dXaIQHR4ejnfffRempqYSJaMi2dnZykIpVby3Lf7v3r27gpLQq1q1aoXGjRvDz89P6igE4NmzZ8pi6dixY5UfHGzcuBGxsbEYOnQoOnXqJHFKIvVicZSI6D/uxYsXMDQ0lDqG1khJSUF4eDiSkpKgUChgaWkJZ2dn7jWqZnFxcdi5cycuX76M5ORkyOVyWFpaom3bthg1ahSaN28udUStEhkZiUuXLiEpKQlyuRy1atWCs7NziYZApBoBAQGoW7cunJycXjsuKCgIN2/exIwZM9SUTPv069cPXbt2RdeuXeHo6Ch1HCKN0K5dOzg7O2PTpk1SRyEiKhWLo0REGqywsBCnTp1SFoDatGmDiRMn4sCBA2jRogUbaxCRRkhPTy82WzElJQVPnjxhkVpNHBwc0K9fP6xcufK14z755BOcO3cOERERakqmfZo2bQqFQgFBEFCjRg24ubnBzc0Nrq6unDEqgbCwMJibm79x9vq1a9dw584dDBkyRE3JtMuUKVNw8+ZNBAYGlti3naT34MEDPH36FObm5vywn7QWi6NERBoqKioKn376KRISEpR7ZXl6euKbb76Bt7c3YmNjuXRYRcrq3lleNjY2FZSESLNFRkZi/vz5MDMzw08//aQ8fuTIEcyZMwcNGzbE2rVr8e6770qYsvLZtm0bcnNzlbc3btwIe3t79OzZs8z7ZGdnY9++fTAyMkJoaKg6YmqlrKwsXLhwASEhIbhw4QIeP34MQRCgp6cHZ2dnuLm5oWvXrrCzs5M6qlYo7wcH06dPx/nz58vcIoTezt27dzF48GB4eHhgwYIFMDY2ljqSVsnKysKGDRtw//59/PDDD8rjBw4cwKZNm5CSkqI8VqtWLYwYMQLjx4+Hrq6uFHGJJMFu9UREGig+Ph7jxo1DVlYWevXqBVdXVyxatEh53t3dHffu3cOKFSvg4OCAdu3aSZi28unWrdsbGzeUhQ0dKta8efP+9X0FQYCPj08FpqFXxcbGYtSoUcjPz1d2RS9Su3ZtODs7IywsDMOGDcOBAwfQqFEjiZJWPnl5edi4cSMEQVB+eBYbG4vbt2+/8b5Dhw5VQ0LtZWJigj59+qBPnz4A/uwSffbsWZw7dw5hYWGQyWRYuXIl7Ozs0LVrVzY8qWBHjhwpsS/4w4cPERAQUOZ9srKycOnSJXZPVyF/f3+0bt0a/v7+OHbsGBo1agRTU9NS32sJgoBt297BkKAAACAASURBVLZJkLJySk1NxYgRI/DgwYNijbBWr16Nbdu2QRRFWFlZwcbGBqmpqUhISMDatWsRGhqKrVu3skBKWoMzR4mINNC8efMQEBCAFStWoF+/fgD+nP3g5eWFb775BgBw7tw5TJgwAe7u7tiyZYuUcSudnj17lnjDnpmZiYyMDABA/fr1YWtrCz09PTx58gS3b9+GXC5HgwYNYG1tje3bt0sRu1IqbeuIV69NaW9jXi0Y3bp1S6X5tFlRV9sVK1bA29u71DEBAQGYO3cuPDw8sGbNGjUnrLzy8/Oxfft2KBQKiKKI9evXo0mTJujVq1ep4wVBgKGhobIg928//KG3k5KSgk2bNsHf3x+FhYV8jVKB5cuXY8+ePf/4a1wUxXLNMKV/559sA8Xvi4q1ePFi7N+/H7169cL8+fNhbW2NGzduYPDgwahRowZWrFgBNzc35fh79+5h4cKFuHbtGmbNmoXx48dLmJ5IfThzlIhIA50/fx5NmjRRFkZL07lzZ7Rq1YpvIFUgMDCw2O1Hjx7hgw8+QOvWrfHVV1+V2LssOTkZ8+fPx82bN/Hdd9+pM2qlV/RhQBFRFLF161bExcXhvffeQ/fu3WFrawtdXV08efIEwcHB8Pf3R/PmzTFr1iyJUmuH69evo1WrVmUWRgHA29sbe/bsgUwmU2Oyys/AwACTJk1S3vbz80O7du0wefJkCVPR32VnZyM8PBxhYWEICwtDdHQ05HI5RFGEkZERWrduLXXESufTTz/FixcvlB+c+fn5wc7ODm3bti11/KsfHHC/UdXZtWuX1BG0VnBwMGrXro3Vq1cr93s9deoUBEHA4sWLixVGAaBhw4bYvHkz+vTpg4CAABZHSWuwOEpEpIEyMjLK9UuThYUFl3CrwTfffIPCwkJs3bq11IYa1tbW2LhxI3r16oWVK1dyOVgF8vLyKnZ77969iIuLw7fffgsPD48S47t164bu3bvj448/xpUrV+Ds7KyuqFonIyOjXN24bW1ty7Xcm/69M2fOSB2BXgoMDFQWQ2NjY5Wzew0NDeHk5AQXFxe0a9cOjo6O0NfXlzpupVOtWjV8+eWXytt+fn5wdHTE8uXLJUxFLi4uUkfQWunp6ejatWuxRlhFK6H+viVOkerVq6NVq1b8YJO0CoujREQayNLSEnfv3n3juDt37hTbP4hUQyaToWPHjq/tNGxsbAwnJyecO3dOjcm0z65du+Do6FhqYbSIm5sbnJ2dsX///mKz66hi2draIjIyEnK5vMw9yRQKBW7evAlra2s1p9NOhYWFePjwIbKyskrsu/iqNm3aqDGVdvnkk08gCAJ0dXXRqVMntG7dGs7OznB0dGSXbgnExMRIHYFIUubm5nj48GGxY0Ud6dPT08t8b5uSkoKqVauqPB+RpmBxlIhIA3Xu3Bn79+/H3r17MXz48FLH7N27Fw8ePOAyMDXQ09NDenr6G8clJCSwA6uKJSUlwd7e/o3jzMzMcOPGDTUk0l69evXC5s2bsXTpUixevBh6esXfVioUCqxYsQIJCQkYM2aMNCG1yLfffouffvqpWBf70rBpnGqZm5sjLS0NhYWFiIiIgI6ODoyMjFC1alU0adKE+71K6NmzZ8jNzYVCoShzjI2NjRoTaY9/0lyRzRQrVqdOnXDo0CH89NNPGDFiBADA09MTmzdvxqZNm0rdZ/fo0aOIjo5G79691R2XSDIsjhIRaaApU6bg5MmT+PLLLxEaGqrsRp+WloYjR44gJCQEx44dg4mJCSZOnChx2srP0dERZ8+eRVBQEHr06FHqmAMHDiAqKgp9+/ZVczrtYmNjg/DwcDx//rzMQnR6ejpCQ0NhZ2en5nTaZdy4cTh+/DgOHDiA4OBguLq6onbt2gD+3IdXJpMhKSkJtWvX5gxeFdu1axe2bt0K4M/vEWtra3YYlsiFCxdw584dyGQyhIaGIiwsDMHBwRAEASYmJmjTpg3atWsHFxcXNG3alMVSNdixYwe2bduG1NTU147jBweqc+jQodeeL/o+KGqmyOJoxZk2bRpOnTqF5cuX4/r16xg7dizs7e3x1VdfYc6cOUhPT8cHH3wAW1tbPH78GCdOnMDhw4ehp6fHfaxJq7BbPRGRhoqOjsb06dMRHx9frPs28OebRwsLC6xbt457KqpBZGQkRo4cCYVCAQ8PD3Tu3BlWVlYAgMTERAQFBeHMmTOoVq0afvnllxINm6jifP/991i/fj3atm2L5cuXlyiAxsTEYP78+bh16xYWLlyonCVBqpGcnIwlS5YgODi41POdOnXC8uXLlUVTUg1PT0/ExcVh7dq1nOmjYRQKBaKioiCTyXD58mVERETg+fPnAABTU1NcunRJ4oSV24EDB7Bo0SIAQJUqVVCjRo0Ss9xfderUKXVF0yq//vprqccVCgUyMzMRERGBkydPwtPTExMnTuT7qAp248YNzJo1Cw8ePIAgCNDX14e5uTkyMjKQl5dXbKwoiqhSpQp8fHzw3nvvSZSYSP1YHCUi0mAFBQUIDAxEaGgokpOTIZfLUatWLTg7O6Nv374wMjKSOqLWOHPmDBYtWoS0tLQSM31EUUTdunXxzTffsPuwiuXn52P8+PEICwuDIAioW7euslCdkJCApKQkiKKI9957D2vXrpU4rfZISUnB5cuX8eTJExQWFsLS0hKtW7dG/fr1pY6mFRwdHdGyZUvs3r1b6ihUhhcvXiA8PBznzp3DwYMHkZWVBUEQcOvWLamjVWr9+/fH7du38eWXX6J///7Q0dGROhKVISgoCJ988kmZDRfp7eTn5+P48eM4deoUbt26haSkpGLn9fX10ahRI3Tp0gXDhg3jFhOkdVgcJSIiKqfnz58jKCgIYWFhePz4MQRBQK1atdCxY0d069aNzTbUpKCgALt27cIvv/xSoslA48aN8eGHH2Lw4MESpSNSv06dOqFVq1bYtGmT1FHoJYVCgevXr0Mmk0EmkyEiIgIFBQUQRRHm5ubo0qUL3Nzc0KdPH6mjVmqOjo5o0aIF9uzZI3UUKodBgwZBFEUcPHhQ6iiVXn5+PrKzs1FQUAAjIyOYmJjwwwPSatxzlIiIqJyMjY3h5eUFLy8vqaNoNX19fYwfPx7jx49HSkqKslBtZWUFS0tLqeNVWikpKQAAS0tL6OjoKG+XV9EMX6p4Xbp0QVBQELKzs8vsPEzqsXPnTshkMoSHhyMnJ0e5JU6zZs3g7u4ONzc3tGjRQuqYWqNq1ar8nvgPsbGxwdmzZ6WOoRUMDAxQs2ZNqWMQaQzOHCUi0gDdu3f/1/cVBAFBQUEVmIaIqCQHBwfo6Ojg2LFjaNCgARwcHMrdTIaNTlQrOTkZgwYNQoMGDfDll19yOwMJOTg4AABMTEzQsWNHuLu7o0uXLjA3N5c4mXaaPXs2zp8/j8DAQBZJNVx2djb69OkDURRx4cIFqeNUOqIo4t69e9DV1S32M+LKlSvYvHkzbt26hcLCQjRr1gxjx45F586dpQtLJAHOHCUi0gAJCQlvHKOvrw89PT3k5uYqj+no6LDTrRr8k+I1i9WqFRAQ8I/Ge3t7qyiJ9inaf6yomQn3I5NOaU2XCgoKEB4ejvfeew+mpqYwNTUtc4nkyZMnVR1Ra40bNw7u7u5wcnKCrq6u1HG03syZMyGTyTBz5kwsXLgQdevWlTqSVjpy5EiZ5+RyOZ48eYJDhw4hLS2NP7dVIDQ0FAsXLlT+vtGyZUts2LABcXFxmDhxIgoKCpRjL168CJlMhk8//RSTJk2SKjKR2nHmKBGRBvj78tScnBxMnz4d6enpmD59Orp3765cLpydnY2QkBCsXr0alpaW8PX1hampqRSxtUbRTKDXEQQBZmZm0NXVxfnz59WQSjuVd7Zi0VJWNjuhyqg8r0ll4feF+hQUFCgbn1hYWMDJyQmJiYn8YEGNZsyYgZSUFERGRgIAqlevDlNT0zJ/jvCDA9Uoz89uURRhbW2Nffv2wdraWk3JKr+4uDh4e3ujoKAAjRs3Rk5ODpKSkuDk5KR8jZoxYwY8PT1hYGCAkJAQrFixAs+ePcOOHTvQrl07qf8LRGrBmaNERBrg73vxrVixAg8fPoS/vz8aN25c7Fy1atXQt29ftGzZEp6enli5ciW++uordcbVOiEhIaUel8vlyMzMREREBDZv3gx7e3t8//33ak6nXQYOHFjqL1hyuRxZWVm4ceMGUlJS4OHhARcXFwkSao+lS5eiYcOGGDVqlNRRtM7p06eljkCvUVBQgI0bN2Lv3r3Izs4GAHh6esLJyQmzZ89Gbm4u1q5dCzs7O4mTVn5/L3ZmZGQgIyOj1LFciaM63t7eZT6/giDA2NgY9vb2eO+997j9QQXbvHkzCgsLsWrVKnh6egIANm7ciI0bN0IQBMycORMfffSRcry3tzfq16+P4cOHY/v27SyOktbgzFEiIg3k6uqKJk2aYOvWra8d9/HHHyMyMhIymUxNyags9+7dg5eXF6ZMmYIpU6ZIHUdrKRQKfPvtt9i1axd+/vlnNG/eXOpIlZazszMaNGiAAwcOSB2FSGMUFBRgwoQJuHTpEgwNDdG0aVNcvXoVXl5e+OabbzBgwABER0fDwsIC/v7+qFWrltSRK7XybFv0KltbWxUlIZKGq6srbGxssH//fuUxuVwOd3d3pKamIjg4uNSGiUOHDsX9+/dx6dIldcYlkkzpGxEREZGknj9/Xq69ygoKCortE0TSadiwIdq1a4dDhw5JHUWr6ejoYNasWbCyssJ3330ndZxKj01miIrbvXs3QkND0bVrV5w5cwZ79+4tdn7fvn0YPHgwUlNT4evrK1FK7WFra/uP/pB6pKSk4ObNm7hz5w7S09OljlOpZWRklCh+6urqolmzZgAAMzOzUu9nYWGB58+fqzwfkabgsnoiIg3UqFEjhIaG4sGDB2Uuu4uKisKlS5fQpk0bNaejsujr65fYP5bUTxAENG3aFBcvXpQ6SqU2ZMgQ7Nq1C8HBwXB3d5c6jlYrT9M4QRCgp6cHExMT1KtXDz179kSfPn3UkE67BAQEwNzcHGvWrIGRkVGJ8wYGBliyZAnOnz/P/anV7MqVKwgLC0Nqair09fVhYWEBFxcXtGjRQupoWuOXX37Btm3b8OjRo2LHGzdujBEjRmDYsGESJau8rKysEBUVhYKCAujr6yuPT58+HV27dkVubi4MDQ2L3efFixeIjIxE7dq11R2XSDIsjhIRaaDRo0dj9uzZGDlyJKZPn44uXbrAysoKoigiMTERQUFB+P7776FQKDBx4kSp4xKA2NhYyGSyUpcmkfrFxcWBOweplo2NDerUqYPJkyfD1tYWDg4OqF69eqkd0gVBwLJlyyRIqR10dHSQk5OjnIGlq6uLGjVqAACePn0KuVxebPyNGzdw/PhxBAUFYfXq1WrPW5k9ePAAbm5upRZGi+jq6qJ58+Y4d+6cGpNpr8TERPzf//2fsilT0c+Goj0wW7ZsidWrV7OTvYotWLAA/v7+EEURFhYWqFOnDhQKBeLj43Hnzh0sXboU169fh4+Pj9RRK5UePXpg586dmDt3LhYtWqScKdq0aVM0bdq0xPjMzEwsWLAAaWlp8PLyUndcIsmwOEpEpIE8PT0RGxsLX19fLF68uNQxurq6mD9/PlxdXdWcTvssWrSozHOFhYVITU3FpUuXUFBQgPfff1+NybTP62bmyuVypKamYvfu3bh37x46duyoxmTaZ/ny5cq/x8fHIz4+vsyxLI6q1s8//4xhw4ZBR0cHc+bMQa9evZTFufz8fAQHB2PFihXQ19eHr68vsrKysHr1ahw7dgyurq7w9vaW+H9QeRgaGpZrmfCTJ09KzNaiipeZmYnRo0cjPj4ednZ26N27N+rUqQO5XI5Hjx4hKCgIkZGR+Oijj3Dw4EE2A1KRY8eO4eDBg6hbty58fHzQtm3bYudDQ0OxcOFCHDp0CF27dkXPnj0lSlr5TJ06FefPn8exY8dw8uRJBAQElGj2WmTdunXYvn07Xrx4gbp16+Ljjz9Wc1oi6bA4SkSkoWbOnImePXvil19+QXh4OB4/fgzgz+UxHTt2xPDhw8t8c0MVq7wNZ7p27co3kirm5ub2xo7CoihCT08P06ZNU1Mq7fT1119LHYFeWrNmDR4/fgx/f/8SPxcMDAzQq1cvNGnSBJ6envD19cXSpUuxadMmuLm5wc/Pj8XRCtS8eXOEh4cjLi4OjRo1KnXMnTt3EBUVxS7QarB161bEx8djyJAh+OKLL0rs5z5z5kwsWbIEBw4cwI4dO/hzQ0V+/vlnGBoa4scffyx1hm779u2xfft29O3bF/v27WNxtAKZmppi//79WLVqFU6cOAEbG5syx2ZnZyM/Px/u7u5YunQpTE1N1ZiUSFrsVk9ERPQGr2uyJAgCqlatinfffbfM/WGp4nTr1q3Mczo6OjA2Nsa7776LUaNGwdHRUY3JtFtBQQGioqLw+PFj6OrqwtraGs2aNXtjIZsqRocOHdCsWbM3NviZNGkSbty4odyPd+LEibh+/TpCQ0PVEVMrnD17FhMnToStrS0WLVoEFxcXtGnTBl5eXli5ciVkMhm++OILxMfHY+PGjeXaL5b+vd69e+PFixcICgqCnl7p84IKCwvRo0cPmJiY4MiRI2pOqB2cnJzQunXrN75GffTRR4iKiuJrkorI5fLXNnxNSEiAnp4et4gircSZo0RERG/Qv39/qSPQS2fOnJE6Ar0iMzMT69evh7+/P3Jzc4udq1mzJkaMGIEJEyYUawJBFe/FixdlFn5eJQhCse7DVapUQV5eniqjaZ0uXbrgk08+wYYNGzB58mQAfz7vgYGB+O2331BQUABRFDFmzBgWRtUgKSkJXbt2fe33h56eHhwdHXH27Fk1JtMuhYWFqFKlyhvH8TVJtV5XGAUAW1vbMs/Nnj0bx44dQ3R0dEXHItIILI4SEWmoxMRE7Nu3D3fu3EFubi4UCkWp4wRBwM6dO9WcTruMHj0anTp1wqRJk147zsfHByEhITh58qSakmmfsLAwmJubo2HDhq8dd+3aNdy5cwdDhgxRUzLtk5mZiZEjR+LOnTvQ09ODs7MzateurWwcFxkZiQ0bNuDKlSv44Ycf3vhLGf17DRs2xKVLlxAfH486deqUOiYxMRGXLl1C/fr1lccePHjAGUIqMHXqVLRu3Rrbtm3DlStXkJeXh9zcXOjp6cHJyQkffvghlw2riZGRETIyMt44LiMjgx/iqFC9evWU3wtlNSvLzc1FeHg4G2NpMC46psqMxVEiIg10+/ZtjBw5EtnZ2W98I8Jlq6p3+fJlWFtbv3HcjRs3kJSUpIZE2mvUqFHo168fVq5c+dpx27dvx/nz51kcVaH//e9/iI2NhZubG77++mvUrFmz2PnU1FR8/vnnuHjxInbv3o0xY8ZIE1QLjBw5EnPnzsWHH36IBQsWoEuXLsqZcoWFhTh//jx8fHyQl5eHoUOHAvhzD8Dbt29j4MCBUkavtDp27IiOHTtCoVAgIyMDcrkcZmZmLMCpWYsWLXDp0iXcvn0b9vb2pY6JiYlBeHg494BVoffeew/r16/HnDlzsHLlyhKzSHNzczFnzhxkZGRg5MiREqUkIm3G4igRkQZav349srKy0L59ewwZMgQWFhacdaVGH330Ef74449ix4KCgl67BDInJwfPnj1DgwYNVB1Pqxw5cgRyubzYsYcPHyIgIKDM+2RlZeHSpUvQ0dFRdTytdvLkSVhZWWHDhg0wMDAocd7CwgIbN25Ez549cfDgQRZHVcjb2xtRUVHYs2cPpk6dCn19fVhYWEAURaSmpqKwsBCiKGLgwIH44IMPkJSUhKVLl8LQ0JDXRcV0dHRKfHBA6jN69GhcuHAB48ePx/z589GjRw/l61V+fj6CgoLg4+MDhULBopwKjRs3DsePH8epU6dw+fJluLm5KZdwx8fH4+zZs8jIyMA777yDsWPHSpyWiLQRi6NERBooLCwMderUga+vb7n2kaOKNXbsWIwfP155u2ifvlf36itN9erVMXfuXFXH0yqRkZHYs2ePcoa0IAiIiIhARETEa+8niiL69eunjoha68mTJ3B3dy+1MFqkSpUqaNOmDffyU4OFCxeie/fu2LVrF0JDQ5GYmAgAMDQ0RIcOHTB69Gi4u7sDAJ4/fw4PDw+MGjWqRHd7+mcWLVoEQRAwY8YMmJubY9GiReW+ryAIWLZsmQrTkZubGz766CP4+vpi5syZ0NXVhaWlJYA/X8PkcjlEUcT48eNf2/CP3o6RkRF2796NRYsWISgoCIcPHy52XhAE9OjRA8uWLYOxsbFEKYlIm7FbPRGRBmrdujU6d+6M9evXSx1Faz1+/BiiKEIURbi7u6NXr15YsGBBmeMNDQ1hZmamxoTaITs7GytXrlRuL+Hn5wc7Ozu0bdu21PGCIMDQ0BB2dnYYMmQIDA0N1RlXq3h6ekIURRw9evS14wYPHozs7GycOHFCTckI+HMPxcLCQtSoUYMrD1TIwcEBgiDg+PHjaNCgARwcHMp9X0EQcOvWLRWmoyKnT5/Gjh07EBERgYKCAgCAvr4+WrVqhQ8//BA9evSQOKH2SEhIQHh4uPJ9Vq1ateDs7FzmfsmkGWbPno2jR4/yNYsqLU5HIiLSQPb29iWWdZN61apVS/n3adOmwd7eno1LJFCtWjV8+eWXytt+fn5wdHTE8uXLJUxFADBx4kTMnj0bq1evxqxZs0odc+DAAURFRWHp0qVqTkf8sEY9vv76awBQzkYsuk2apXv37ujevTvkcjkyMjIgiiLMzMy4OkfNCgoKkJOTU2xlx8OHD3Hz5k2Ym5uXq6M9EZEqcOYoEZEGCgoKwrRp07Bs2TI2lCEijXT69Gn4+fkhODgY9vb26NOnD+rVqwddXV2kpKQgJCQEFy9ehLW1tbIJ0Ks+/vhjCVJXDlzKTUT/NYGBgVi4cCHs7Oywf/9+5fGAgADMnTsXNWvWxOrVq9GxY0cJU1JZOHOUKjsWR4mINFBISAj279+PM2fOoE2bNmjZsiVMTU3L7EzPIkPFYuFBc6SkpAD4c1aWjo6O8nZ5cbav6hQtJy56K/n316dX32K+ek4URS4nfktcyq25pk6din79+r1xP15Sn9jYWBw8eBAPHjxAfn5+meMEQcC2bdvUmEx7XLlyBSNHjoSuri68vb2Lrf6IiYnBzp07ceTIEQDATz/9BEdHR6miUhlYHKXKjsVRIiIN9PeiA1Cy8ACwyKAqLDxoDgcHB+jo6ODYsWPKa1HWhwR/JwgCoqOjVZxQe23YsKHc16I006ZNq8A02uXQoUMAgJ49e6JatWrK2+XVv39/VcQi/PXzw8TEBH369IGnp2eZeyST6oWHh2PMmDHKxkuvw5/fqjNhwgRcvHgRvr6+6NChQ6ljZDIZxo0bBzc3N2zZskXNCelNWBylyo6brBARaaCpU6e+VdGB3g73kNMcNjY2AKDcF67oNknvk08+kTqC1vp7cZPFTs2xefNmHD16FL///jv279+PAwcOoHbt2vD09ISXlxcaNWokdUStsmbNGhQWFuL9999Hnz59YGJiwvdXErh16xbatm1bZmEUADp06AAnJydcuXJFjcmIiP7EmaNEREREREQV6MWLFzh9+jSOHz+Os2fPIj8/H4IgoEmTJujXrx/69u0LCwsLqWNWek5OTrCzs4O/v7/UUbRa69at4erqig0bNrx23PTp0xESEoLIyEg1JaPy4sxRquw4c5SISAMULR/64IMPUL169X+0nEgQBEyaNElV0QjAvHnz0KZNGwwePPi147Zs2YLQ0FDs2LFDPcGIiF7KycnB0aNHcefOHeTm5kKhUJQ6ThAE+Pj4qDmd9jE0NISHhwc8PDyQnZ2NwMBAHD9+HDKZDCtWrMCqVavQvn17+Pr6Sh21UqtSpQr3ntYA9evXR3h4OHJzc8vsSJ+fn49r166hTp06ak6nXRISEmBra/uP71ejRg3Url1bBYmINANnjhIRaYDS9rj8+56jf1d0nntkqZ6DgwO8vLzwzTffvHbc+PHjERYWhuvXr6spmfZJTEx84xhBEKCnpwcTExMYGRmpIRWRtBISEjBixAikpKRwX0UNVlBQgFOnTmHVqlVITk7mtVCDxYsXIygoCKdOnUK1atWkjqO1tm3bhlWrVsHd3R0rVqyAmZlZsfPZ2dlYuHAhTp48iWnTpmHq1KkSJa38mjZtChcXF/Tv3x+9e/fm+ySil1gcJSLSAEWNTUaOHAkzM7N/3OiEjU0q1qxZs/D48WPl7cuXL8PCwgINGzYs8z7Z2dm4desWbGxscPr0aXXE1Er/pCETAJibm6NXr1747LPPYGJiosJkRNKZM2cOfv31VzRu3BheXl6wtLSErq5umeO9vLzUmE675efn4+zZszhx4gR+//135ObmQhRFNG/eHP369cOoUaOkjlipPXv2DMOGDYOZmRlmzpwJBwcHFkklkJ+fj+HDhyMqKgqGhoZo1aqVchZicnIyIiMjkZubiyZNmmDv3r1lzi6lt+ft7Y2YmBgIggBjY2P06dMH/fv3h7Ozs9TRiCTF4igREdHfHDt2DDNnzlTeftMs3iJ6enpYvnw5vL29VRlPqy1YsABRUVG4ffs2dHV10aJFC9ja2kIURSQlJeHGjRsoLCyEubk5rKyskJiYiIyMDLzzzjs4cOAAZ0hQpdShQwfo6uri5MmTqFq1qtRxtF5hYSEuXLiA48eP4/Tp08jJyYEoirCxsYGXlxe8vLxe+2EbVazNmzfju+++U36w9roPDqKiotQVS+tkZ2dj3bp18Pf3x/Pnz4udMzAwgLe3N+bMmcPitRrExsbi0KFDOHLkCFJTUyEIAurWrQtvb294e3uz+SVpJRZHiYiISnHt2jUoFAqIooiRI0fC1dUVkydPLnWsIAgwNDREnTp1UL16b3+vawAAIABJREFUdTUn1S43b97E8OHD0bx5c6xatarEG/i0tDTMnTsXV69exc8//4xGjRphw4YN2LJlC6ZPn44pU6ZIlJxIdRwdHeHm5ob169dLHUXrzZ8/H6dPn0ZmZiZEUYSpqSn69OkDLy8vzsySwO7du+Hj41OuDzgBICYmRsWJKD8/H1FRUXjy5AnkcjksLCzQrFkzfrAjAYVCgXPnziEgIAC///478vLyoKOjg7Zt22LAgAFcdk9ahcVRIiKiNyhvQyZSvfHjx+PmzZsICgoqc3ZJbm4uevbsiWbNmuF///sfAKB79+6oWrUqfv31V3XGJVKL/v37Q1dXF35+flJH0XoODg7Q09ODm5sbvLy80LVrVxgYGEgdS2v17t0b8fHxmDdvHjw8PFCzZk2pI9E/MHv2bBw7dgzR0dFSR6n0cnJyEBISgsDAQJw8eRKiKMLY2Bh9+/bF8OHD4eDgIHVEIpXSkToAERGRpvv666/LXRgtq0M0VYxr167BxcXltcvuqlSpgjZt2iAsLEx5zMHBAQkJCeqISKR2I0aMQFRUFEJCQqSOovUWL16M8+fPY9OmTejduzcLoxJLSkpC+/btMXLkSBZG/6M4l0v1RFHEtWvXEBoairCwMOXKqSpVqmD//v3o378/Zs6ciby8PKmjEqmMntQBiIiI/gueP3+OM2fOIDExEQUFBcXerIuiiBcvXiA1NRXnzp3DhQsXJExauRkaGuLp06dvHPf06dMSjZv+SSMnov+SVq1aoUePHpg2bRo8PDzQsmVLmJiYlPk17+npqeaE2mP48OHFbqelpSEpKQlVq1ZFgwYNkJuby2YzalTU9IeISoqOjsbhw4dx7NgxpKWlQRRFWFlZYdKkSRgwYADs7OwQHh6Or7/+GsePH4eBgQG+/vprqWMTqQSLo0RERG+QkpKCDz74AElJScWOi6JYrPjw99tU8Zo3b44LFy7g3Llz6Ny5c6ljZDIZwsPD0a5dO+WxW7du8ZdkqrTef/99ZeO4w4cPv3H7CBZHVe/AgQP48ccfcf/+fQCAl5cXVq5cialTp6JatWpYsmQJZzKqwcCBA7F+/Xrcvn0b9vb2UschklxSUhKOHDmCX3/9FXFxcRBFEfr6+ujduzcGDBgAV1dX6Oj8tcDY2dkZW7duhaurKwIDA1kcpUqLxVEiIqI32Lx5MxITE1GvXj306NEDMTExCA0NxeTJk5GbmwuZTIaYmBi888472LNnj9RxK7WPP/4YMpkMU6ZMwYgRI9CjRw/Url0bCoUCSUlJ+P3337F3714IgoBJkyahoKAAc+fORVJSUpkNtYj+67y9vfnBjAaZM2cOjhw5opyFlZKSolxtkJCQgAcPHuDOnTvYv38/TExMJE5buY0aNQpXrlzByJEjMXToUDg6OqJ69erQ0yv91+A2bdqoOSGRenXv3h2iKEIURTRp0gQDBw7E+++/DzMzszLvU6NGDejo6LA5E1VqLI4SERG9wfnz52FsbIx9+/ahZs2aCAkJgUwmQ/v27eHi4gJRFLF06VL88ssvuHDhAjw8PKSOXGk5OTlh1apVWLx4MXbs2IGdO3cWO1/UQGDp0qXo0KEDHjx4gGPHjsHGxgYjR46UKDWRaq1YseJf3S8jIwPPnz+HjY1NBSfSXgcOHMCvv/4KR0dH+Pj4oFGjRsUamezduxfz5s3DuXPnsGPHDnzyyScSpq38ioqdoihi27Ztrx0rCAIb/1ClZ2JiAk9PTwwaNKjcTZYKCgqwZcsW2NnZqTgdkXRYHCUiInqDx48fw9nZWbkEsmnTphBFEZGRkXBxcYEgCJg/fz5OnDiBn3/+mcVRFXvvvffQoUMHBAQEQCaTITExEYWFhbC2tka7du0wcOBAWFpaAgAMDAywZMkSeHh4wNTUVOLkRJrlq6++YifoClY0G/R///tfqTOxzM3NsX79enTr1g2BgYEsjqqYs7Oz1BGINMqFCxfKnDn9qpycHCQkJODdd9+FgYEBXF1d1ZCOSDosjhIREb2Brq5usaWPlpaWqFKlCuLi4pTHDAwM0Lp1a1y7dk2KiFrHzMwMY8aMwZgxY147rnbt2hg2bJh6QhH9B7ETdMW6e/cuOnTo8NolqkZGRmjVqhVCQ0PVmEw77d69W+oIRBqlRYsWyj2QX2fevHm4fPkyX6dIa7A4SkRE9AY2NjbKphpF7OzscOvWrWLHdHR08Pz5czUmIyIiTaKjo4Pc3Nw3jsvKyirW9IQ0y+zZszmrmiqFxMTEYrdFUcTz589LHH9VVlYWbt++jby8PFXHI9IYLI4SERG9QadOnbB7927s2bNHuW9lixYt4Ofnh5s3b6LZ/7N359E13fv/x187khAhiTHGElpCEUMztKWGGtqomBqqprZKqamotqjb1lCqOlzVUqUDrimGtkiLmGOOIYYYSxEJEqmEhozn94ev8xNi6L3J2ZLzfKzVteyz38d6rUZIXvnsz+fxx5WYmKjdu3dzIroN7N+/Xz/99JOOHz+ua9euKTMzM9s5wzAUFhZm43QA7Fn16tUVGRmpCxcuyNPTM9uZ2NhYHTx4UDVr1rRxOvwTrKpGfvCvf/1LW7ZssV7f/Nrofl8fWSwWtqWAXaEcBQDgPnr16qVffvlF48eP165du/Tvf/9bL7/8skJCQtSrVy89/fTT2rt3r5KSktS2bVuz4+ZrERERevXVV5Wenn7fb1w5vRuArXXp0kXDhw9Xv3799Mknn+ixxx7Lcv/kyZN65513dP36db344osmpQRgL95//3298cYb1q+Zzp49KxcXF5UsWTLbecMw5OzsrMqVK+udd96xZVTAVJSjAADch6enp/7zn/9o0qRJ1kOZatSooaFDh+rLL7/UypUrJUn16tXTgAEDzIya73399ddKS0tT27Zt9fLLL6tkyZIPdLAAANhCmzZttH37di1ZskRBQUFyd3eXYRjaunWrWrVqpejoaGVkZKhVq1Zq37692XEB5HOVK1fWqlWrrNfe3t5q3ry5Jk2aZGIq4OHDdxMAADyARx99VDNmzMjyWp8+fRQYGKgDBw6obNmyqlOnDnvI5bLIyEg9+uij9z1IAADMMn78eNWtW1ezZs2y7lcdHx+v+Ph4lS1bVj179lTPnj3NDQnkAcWKFWO7ohw2e/ZslShRwuwYwEOHchQAgNssX778H7/n7NmzOnv2rKQbK4eQOxwcHFSlShWzYwBAthISElS8eHEFBwcrODhYcXFxio2NVWZmpkqVKqXy5cubHREwTWpqqjIzM1WoUCFJUlJSkhYuXKjY2FjVqVNHL7zwQpanQUaOHKmRI0eaFTdf8vPzMzsC8FCiHAUA4DbDhw//n/arpBzNPbVq1dKRI0dksVjYUxTAQ6dbt25yd3fX/PnzJUmlSpVSqVKlTE4FmG/q1KmaNWuWxo8fr8DAQF2/fl2dO3fWn3/+KYvFovnz52vJkiX6/vvv5eTkZHbcfKNVq1aSpFmzZqlChQrW6wd16yP5QH5GOQoAwG3atWtH8faQGjhwoHr06KGvvvpKgwYNMjsOAGQRHR2tSpUqmR0DeKj8+uuvmjp1qpydna0HA4WEhOjUqVOqXLmyunfvrtWrV2vnzp2aPXu2evXqZXLi/OP06dMyDENpaWnW6wfF18KwJ5SjAADcZuLEiWZHwF0cOXJEjRo10rRp0/Tzzz+rVq1acnNzy/YLeMMwNGbMGBNSArBXZcqU0fnz582OATxUQkJC5OTkpEWLFsnb21uSFBoaKsMw9MEHH+jJJ59UcHCwmjVrphUrVlCO5qC1a9dKunG46K3XALKiHAUAAHnG2LFjZRiGLBaLYmJiFBMTc9dZylEAtvbRRx+pf//+Gjx4sLp37y5vb28VKVLE7FiAqY4ePSo/Pz9rMZqYmKjIyEi5urrK399fkuTs7Kw6depo27ZtZkbNd27f55h9j4HsUY4CAIA8Y8KECWZHAPKNqlWr6oknnjA7Rr7y2WefqUiRIlq9erVWr14t6cZBcnd7PPXgwYO2jAeYIjU1Va6urtbrLVu2KDMzU76+vnJwcLC+npGRoczMTDMiArBzlKMAACDPaN++vdkRgIdWUlKSzp49q5SUlHvO1a9fX5LUt29f9e3b1xbR7EZ2ZWdGRoYJSYCHR4UKFXTs2DHr9dq1a2UYhho1amR9LTk5WZGRkaxszGH/9ACm23EgE+wF5SgAAMiTUlNTdfDgQcXHx8vZ2VklSpRQjRo15OjIlzewL9evX9eIESO0evXq+666MgxDUVFRNkpmf44cOWJ2BNzi22+/VdWqVdW8efN/9L5ixYqpbNmyuZTK/jz99NOaPXu23nvvPXl6eur333+Xo6OjtbjbvXu3vvzySyUmJqpTp04mp81f/skBTLfjQCbYE8Ny87g4AACAPCA9PV1TpkzR3Llzde3atSz3ihYtqs6dO2vQoEFycnIyKSFgW5988ol++OEHOTo6qmrVqnJzc7vn/Jw5c2yUDA9qwoQJWrt2rcLCwsyOkq/4+/urdOnSWr58udlR7NqVK1fUu3dv7du3z/rau+++q1dffVWS1LBhQ8XHx6tu3bqaOXMm+/TmoHPnzv1P72clL+wFSysAAECekZGRoX79+ik8PFwODg7y8fFR+fLllZmZqbNnzyoqKkozZ87UkSNH9N1335kdF7CJNWvWyNXVVYsWLVLVqlXNjoP/QkJCwv9cYuBOqampqlSpktkx7F7RokU1e/Zs/fbbb4qLi5Ovr698fHys99u1a6eyZcsqODhYzs7OJibNfyg3gQdDOQoAAPKMhQsXavPmzapdu7Y+//xzVaxYMcv9M2fOaOjQoQoPD9eSJUvUsWNHk5ICthMfH6+GDRtSjAK3ee655/T777/ryJEj1pPSYQ5nZ2e1bds223tvv/22jdMAQFaUowAAIM9YtmyZXF1d9e2336p48eJ33H/kkUc0Y8YMtWjRQosXL6YchV147LHHdPHiRbNjAA+dJk2aaO/evXrxxRfVoEEDeXt7y93dPcsJ6bfigDLkN7Vq1ZIkrVixQpUrV7ZeP6jsDpkD8iPKUQAAkGecOHFCAQEB2RajNxUvXlx+fn7avXu3DZMB5unTp48GDhyo3377Tc8//7zZcYCHxuDBg2UYhiwWi3bs2KEdO3ZIuvOgGYvFIsMwKEdzibe39wMd7uPo6KiiRYvqkUceUYsWLdSzZ08OWfwfpaenS7rxZ/zWawBZ8TcNAADIl9LS0syOANhEixYt9O6772ro0KFauHChvL295eHhcdd5CiDYi/79+3Pi9kMgICBAsbGx1pPTS5YsqQoVKshisSg2Nta68t3R0VEZGRmKjIxUZGSkNmzYoJ9++umuK31xf0eOHLnnNYAbKEcBAECe4eXlpV27dikxMVHu7u7Zzly+fFm7du1SlSpVbJwOMMfZs2c1Z84cWSwWbd++Xdu3b8+2EGJ1HOzNwIEDzY4ASWPGjFFwcLC8vLw0btw4NWjQIMv9Q4cOafTo0YqLi9PChQvl6uqqCRMm6JdfftHcuXPVo0cPk5IDsBeUowAAIM/o0KGDxo0bpzfffFOff/65PD09s9w/f/68hg4dqr///vuuBz8A+c3HH3+smJgYlStXTk2aNFGxYsVYLQdk49KlS4qNjZWrq6u8vLx07do1ubi4mB0r35s8ebLS0tL0448/3vHvtiQ9/vjjmjlzplq1aqXPPvtMn332mcaPH6/w8HAtX76ccjSX7NixQxEREbp48aKcnJzk6ekpf39/1alTx+xogM1RjgIAgDyjS5cuWrVqlXbt2qVnn31WdevWVfny5SVJ0dHRioyMVHp6unx9ffXyyy+bnBawjYiICJUrV04rVqxQ4cKFzY4DPHRCQkL0/fff688//5QkBQUF6ZNPPtGbb76pokWL6sMPP7znXtb432zfvl0BAQHZFqM3FS9eXP7+/tq8ebMkqUCBAqpVq5b27Nljq5h248CBAxoxYoT++OMPSf9/P9KbP1SrW7euJk2apIoVK5qWEbA1ylEAAJBnFChQQLNmzdJnn32mhQsXKiIiQhEREdb7Li4u6tq1q4YOHcohDrAbFotFtWrVohgFsvHOO+9o+fLlslgs8vT01IULF6xlUExMjE6fPq3jx49r0aJFKlq0qMlp8yeLxaKUlJT7zl27di3LfuHOzs4cIJTDTp48qZ49eyo5OVm1atVSkyZNVKZMGUnSuXPntGbNGu3du1fdu3dXSEiISpUqZXJiwDb4rgEAAOQpzs7OGjFihIYOHaoDBw5YD3IoXbq0atWqpUKFCpmcELCtBg0a6PDhw9Y9RQHcEBISol9//VU+Pj76+OOPVbVqVXl7e1vvz5s3TyNGjNDmzZv1448/skdpLqlevbp27NihqKgo1axZM9uZI0eOaMeOHapVq5b1tWPHjlmLO+SMqVOnKjk5WW+//bZef/31O+4PGjRIkydP1qxZszRlyhSNHTvWhJSA7VGOAgCAh9by5csfeDY2NlaxsbFZXmvTpk1ORwIeOkOGDFHnzp31/vvva8SIESpSpIjZkYCHws3VoN9++608PDzuuF+iRAlNmTJFzZo105o1ayhHc0mvXr3Ur18/vfrqqxowYICaN2+usmXLymKxKCYmRhs2bNBXX32ljIwM9ejRQ5mZmfriiy90+vRpde/e3ez4+crWrVtVs2bNbItR6caj9cOHD9eGDRu0fv16G6cDzEM5CgAAHlrDhw//n1bCUY7CHoSGhqpevXpaunSpfvnlF1WpUkXu7u5ycnK6Y9YwDM2aNcuElPlTq1at9NRTT+mDDz6QJO3atUslSpRQlSpV/tHvY7FYrI96I+ecOHFCTz75ZLbF6E2FChVS3bp1tX37dhsmsy9NmzbVe++9p8mTJ+vjjz/Wxx9/fMeMYRgaNGiQAgMDdfbsWX333Xdyd3fXK6+8YvvA+VhKSsoD7SX66KOPauPGjTZIBDwcKEcBAMBDq127djwmDNzHjBkzrL9OT0/XsWPH7jrL51POio2N1eXLl63X3bt3V1BQkCZNmvSPfp/Jkydr8uTJOR3P7jk4OOjatWv3nbty5YocHBxskMh+vfLKK3rmmWc0b948bd++XTExMUpPT1eZMmXk7++vrl27Wrc8sFgs6t27tzp16qRy5cqZnDx/qVOnjvbs2aOUlBQVLFgw25mMjAwdOnQoyxYUQH5HOQoAAB5aEydONDsC8NCbPXu22RHslouLi/bv368LFy7c8yRumKN69eqKjIy858cnNjZWBw8evOtemMg5VapU0fvvv3/fuUceeUTDhg2zQSL7884776hbt24aOHCgxowZc8eerqmpqRo9erQuXLjA12CwK5SjAAAAQB7m5+dndgS75evrq7CwMDVp0kTSjZW5y5cvf6D9kg3DUFRUVC4ntG9dunTR8OHD1a9fP33yySd67LHHstw/efKk3nnnHV2/fl0vvviiSSmB3PPaa6/d8ZqHh4c2b96sFi1aqG7duqpQoYIKFiyoixcvas+ePUpMTFTNmjW1cuVKPfHEEyakBmzPsLC5DQAAAAD8YxcuXNDw4cN14MABpaamKjMzU5Ie+BHtQ4cO5WY8SBo1apSWLFkiwzDk7u6uxMRElShRQq6uroqOjlZGRoZatWqlf//732ZHzddiYmK0YMECHT9+XNeuXbN+rtzOMAz99NNPNk6Xf/0vj8YbhqHDhw/nYBrg4UU5CgAAAORhI0aMeOBZwzCyPQwFOcPb2/u/2nMUuSskJESzZs3Sn3/+meX1smXLqmfPnurZsyf78eaio0ePqlu3brp69ep9Dx6jkMtZO3fu/J/ez5MJsBeUowAAAEAedr+VQTdLH4vFQvGQy0aMGKH69esrODjY7CjIRlxcnGJjY5WZmalSpUqpfPnyZkeyC/3799fatWsVEBCgTp06qWTJkipQoMBd5xs0aGDDdABAOQoAAADkab/++mu2r2dmZiopKUn79u3TqlWr1KZNG/Xp00dVqlSxcUL7lJqaqoMHDyo+Pl7Ozs4qUaKEatSoIUdHjn0w019//aUCBQrIzc3N7Ch2w8/PT25ubvr999/585+HHD16VNWrVzc7BmAT/M0EAAAA5GFBQUH3vN+jRw+FhYVp4MCBeuaZZyhHc1l6erqmTJmiuXPn6tq1a1nuFS1aVJ07d9agQYPk5ORkUkL7s3r1ai1YsEARERFKS0uTJLm4uKhhw4bq0aMHh87ksrS0NNWsWZNi9CFx6NAhLVy4UDExMUpLS8uy1YHFYlFKSori4+N1/vx5Do2D3WDlKAAAAGAHXnzxRVksFi1ZssTsKPlWRkaG+vbtq/DwcDk4OKh27doqX768MjMzdfbsWUVFRclisahhw4b67rvvzI6b71ksFr3zzjtasWKFLBaLHB0dVbJkSVksFl26dEnp6ekyDEP9+vXToEGDzI6bb7300kv6+++/tXz5crOj2L39+/erW7duWUpRwzCyFKQ3t2KpVq2afvnlF1NyArbGj24AAAAAO1CuXDlt2rTJ7Bj52sKFC7V582bVrl1bn3/+uSpWrJjl/pkzZzR06FCFh4dryZIl6tixo0lJ7cO8efO0fPlylS9fXiNHjtQzzzxjXbGbmpqqDRs2aMKECZo2bZoef/xxPfvssyYnzp9ef/11DRgwQIsWLVKnTp3MjmPXvvvuO6WmpqpVq1bq0KGDNm7cqAULFmj69OnKzMxUeHi4FixYIC8vL4WEhJgdF7AZVo4CAAAA+dzVq1f13HPPyWKxaMuWLWbHybeCg4N18uRJrVmzRsWLF892JiEhQS1atFC1atU0f/58Gye0L0FBQYqOjtbKlStVtmzZbGfOnj2rNm3aqFatWpo7d66NE9qHjRs3atGiRVq3bp3q16+vOnXqyM3NzbpC8XZ9+/a1cUL70bBhQzk4OGjt2rVycnLS7t271bVrV02dOlXNmzeXJC1ZskSjRo3S0KFD1adPH5MTA7bBylEAAAAgD7vXo6oZGRmKi4vTsmXLdOnSJbVr186GyezPiRMnFBAQcNdiVJKKFy8uPz8/7d6924bJ7NOZM2f09NNP37UYlaSKFSsqICBAu3btsmEy+/LGG29YH93evXu3du/enW0xarFYZBgG5Wguunz5sho2bGhdQV2tWjVJN/YhvVmOduzYUdOmTVNoaCjlKOwG5SgAAACQhw0fPvyuK7BuslgsKlOmjAYPHmyjVLifmwcDIfd4eHgoKSnpvnNpaWlycXGxQSL71L9///v+HQXbKFy4sAoUKGC9Llq0qDw8PPTHH39kmatRo4bCw8NtHQ8wDeUoAAAAkIe1a9fursWDYRgqXLiwqlevrueff15FihSxcTr74uXlpV27dikxMVHu7u7Zzly+fFm7du1SlSpVbJzO/rRv317Tp0/X2rVr77qf6KFDh7Rjxw716NHDxunsx8CBA82OgP/j5eWlqKgoZWZmysHBwfrawYMHs8wlJyebEQ8wDeUoAAAAkIdNnDjR7Aj4Px06dNC4ceP05ptv6vPPP5enp2eW++fPn9fQoUP1999/q23btialtB89evTQkSNHNHjwYL300ksKDAxUpUqV5ODgoAsXLmjTpk367rvvVKpUKTVs2FB79uzJ8v769eublBzIHS1atNDkyZM1bNgwDR06VBUrVpSfn59mzJihpUuXqkOHDtq/f7927NjBD3BgVziQCQAAAAByQEZGhl555RXt2rVLjo6Oqlu3rsqXLy9Jio6OVmRkpNLT0+Xr66sffvhBjo6sVclN3t7e1r0u77a6+m73DMNQVFRUbkfMl6ZPny5J6tKli9zd3a3XD4o9R3PP9evX9fLLLysqKkpNmjTR9OnTFRcXp5YtW+r69esqWbKkLl26JIvFopEjR6p79+5mRwZsgnIUAAAAyOMuXbqklStX6syZM0pJSbnrnGEYGjNmjA2T2Z/U1FR99tlnWrhwoa5fv57lnouLizp16qShQ4eqYMGCJiW0H/9rsTNnzpwcSmJfbpbSoaGh8vLysl7fz82i+vDhwzZIab9SUlI0d+5cFSpUSF27dpUkbd++Xe+//76io6NVqFAhde/eXUOGDLE+eg/kd5SjAAAAQB527Ngxde3aVVevXtX9vrSneLCdlJQUHThwQBcvXpQklS5dWrVq1VKhQoXumL18+bKSk5NVrlw5W8cEctxXX30lwzDUrVs3eXh4WK8f1IABA3IxHe4lISFBHh4elKKwO5SjAAAAQB7Wq1cvbdmyRb6+vnr22Wfl5uZ2zyKiffv2NkyHBzF8+HCtXLmSx7gfEnw8AMC+sMkNAAAAkIcdPHhQXl5e+umnn1jtk4exZuXhwscj50ydOlXe3t5q3rz5PecWLVqkvXv3asKECTZKlv+NHj36v34v27DAnlCOAgAAAHlc1apVKUYBPJSmTp2qtm3b3rccXb9+vbZu3Uo5moNCQkL+6/dSjsKeUI4CAAAAedhTTz2lvXv3KjU1Vc7OzmbHAWDnJkyYoKSkpCyv7d27VyNGjLjre65evaqNGzeqRIkSuR3PrlA0Aw+GchQAAADIw4YPH67g4GC9/fbbGjlypMqUKWN2JAB27JFHHtHYsWOt14Zh6MyZMzpz5sx939ujR4/cjGZ32GMaeDCUowAAAEAeVq5cOb355psaO3as1qxZIzc3N3l4eNx1ftWqVTZMB8DedOnSRe7u7srMzJTFYtG7776r+vXr66WXXsp23jAMFSxYUJUqVVL16tVtnBYAKEcBAACAPG3lypUaN26cpBuHyCQmJioxMTHb2XudYg8AOcHBwUEvvPCC9Xrx4sVq2LChgoKCTExln1577TUZhqGPP/5Ynp6eeu211x74vYZhaNasWbmYDnh4UI4CAAAAedi3334ri8WiV199VYGBgSpWrBglKICHxpw5c8yOYLe2bt0qwzCUnJxsvX5Q/DsCe0I5CgAAAORhp0+fVoMGDfTuu++aHQVjN+psAAAgAElEQVQAspWamqrQ0FD5+PjIy8tLkrRu3TpNnjxZsbGxql27tt577z3VrFnT5KT5y+zZsyXd2H7l1msAWVGOAgAAAHlY8eLF5ebmZnYMAMjW5cuX9fLLL+vUqVMaM2aMvLy8dOrUKQ0aNEjp6emSpJ07d6p79+76+eefVbFiRZMT5x9+fn73vAZwg4PZAQAAAAD89wIDA7V9+3bFxsaaHQUA7jBz5kydPHlSDRo0UO3atSVJ8+bNU3p6ujp27Ki9e/dq7Nix+vvvvzVt2jST0+Kmo0ePmh0BsBlWjgIAAAB52MCBA7V792517dpVvXv3lo+Pj9zd3eXomP2X+p6enjZOCMCerVu3Tp6envrhhx/k5OQkSVq7dq0Mw1Dfvn3l4uKi4OBgzZ8//x/tiYn/zqFDh7Rw4ULFxMQoLS1NFovFes9isSglJUXx8fE6f/68oqKiTEwK2A7lKAAAAJCHNW/eXOnp6bp8+bLGjBlzz1nDMPhmNxd99NFH8vLyUo8ePf7R+6pWraonnngil1LhnypWrJjKli1rdox849y5c2rcuLG1GP3jjz8UExOjRx55JMsj9BUrVtTx48fNimkX9u/fr27dumUpRQ3DyFKQ3jyIqVq1aqZkBMxAOQoAAADkYc7OznJ2dlbhwoXNjmL3li9f/l+Vo3379lXfvn1zKRVSU1OVmZmpQoUKSZKSkpK0cOFCxcbGqk6dOnrhhReyrLQeOXKkRo4caVbcfKdw4cJKSUmxXm/cuFGSFBAQkGUuLi5OLi4uNs1mb7777julpqaqVatW6tChgzZu3KgFCxZo+vTpyszMVHh4uBYsWCAvLy+FhISYHRewGcpRAAAAIA9bt26d2RFwixIlSpgdAbeYOnWqZs2apfHjxyswMFDXr19X586d9eeff8pisWj+/PlasmSJvv/+e+vKRuSsKlWqaPfu3UpISJC7u7uWL18uwzDUrFkz60xkZKT27dvHCupctnfvXpUuXVqTJ0+Wk5OTihQponnz5iktLU3NmzdX06ZNVbNmTY0aNUo//vij+vTpY3ZkwCY4kAkAAAAAckCnTp0UHh6uDRs2mB0Fkn799VdNnTpVGRkZ1seGQ0JCdOrUKVWqVEmjR4+Wn5+fIiIiNHv2bJPT5l/BwcG6evWqWrdurRYtWujw4cOqUKGCGjVqJEn68MMP9corr8hiseill14yOW3+dvnyZdWsWdP6g4Cbj84fOnTIOtOxY0dVqFBBoaGhpmQEzMDKUQAAACAPuXDhgiSpVKlScnBwsF4/KA5kyj3lypVThQoV1K9fP5UvX17e3t5yd3eXg8Oda1IMw7jvHrH434SEhMjJyUmLFi2St7e3JCk0NFSGYeiDDz7Qk08+qeDgYDVr1kwrVqxQr169TE6cP7Vr105JSUn64osv9Ndff6lKlSr6/PPPVaBAAUnSzp07lZaWplGjRikwMNDktPlb4cKFrf/fJalo0aLy8PDQH3/8kWWuRo0aCg8Pt3U8wDSUowAAAEAe0rhxYzk4OGjlypXy8vJS48aNrQdo3A8HMuWucePGWX8dHR2t6Ojou85Sjua+o0ePys/Pz1qMJiYmKjIyUq6urvL395d0Y8/eOnXqaNu2bWZGzfd69Oihl156SVevXlXx4sWz3BszZoyqVasmNzc3k9LZDy8vL0VFRSkzM9P6QxsvLy8dPHgwy1xycrIZ8QDTUI4CAAAAeUi5cuUkyXqAzM1rmG/ChAlmR8AtUlNT5erqar3esmWLMjMz5evrm2U1b0ZGhjIzM82IaFecnZ3vKEYlsc+oDbVo0UKTJ0/WsGHDNHToUFWsWFF+fn6aMWOGli5dqg4dOmj//v3asWOHqlSpYnZcwGYoRwEAAIA85PYDmDiQ6eHRvn17syPgFhUqVNCxY8es12vXrpVhGNa9LqUbK+QiIyNVvnx5MyLmS8uXL5ckNWvWTK6urtbrB9WmTZvciAVJ3bp1U2hoqH777Tddu3ZN06dPV7du3TR79myNGjVKX3zxhS5duiSLxaLg4GCz4wI2Y1hu7kwNAAAAAMgRaWlpOnz4sGJjY1WyZEk1aNBAMTExrPS1oQkTJmj27Nlq27atPD09NXPmTDk4OGjDhg0qUaKEdu/erS+//FIRERHq3bu3hg4danbkfMHb21uGYSg0NFReXl7W6wd1+PDhXEyHlJQUzZ07V4UKFVLXrl0lSdu3b9f777+v6OhoFSpUSN27d9eQIUOy3S8ZyI9YOQoAAADkE4mJibp27do9HxGmnMtdaWlpmjp1qubNm6erV69KurESrkGDBho+fLiuXbumL774QpUqVTI5af43YMAARUZG6ueff7a+9vbbb6tEiRKSpMGDBys+Pl5169ZVnz59zIqZ77Rr106GYaho0aJZrvFwKFiw4B2HjwUEBCgsLEwJCQny8PCgFIXdYeUoAAAAkMf9+OOPmjVrluLj4+85x4FMuSstLU29e/fWjh07VLBgQdWsWVN79uxRUFCQJk2apA4dOigqKkolS5bU0qVLVbp0abMj53upqakKDQ1VfHy8fH195ePjY703efJklS1bVsHBwXJ2djYxJWAb/fv3V9u2bdWkSRP+zAO3oBwFAAAA8rCQkBCNHj1akuTi4qJixYpZD2vKzurVq20Vze58//33mjRpkpo1a6Zx48apePHi8vb2tpajqampGjt2rEJCQtSjRw+NHDnS7Mj52uHDh1WjRg2zYwAPjZtbHBQtWlTPPfec2rRpI19fX7NjAaajHAUAAADysPbt2+vo0aMaO3as2rdvz+OQJgoKCtKlS5e0du1aFSpUSJKylKPSjZPRmzdvLhcXF4WGhpoZN9/z9vZWmTJl1LhxYzVt2lRPPvmkChYsaHasfO+fHsB0Ow5kyj3r16/XihUrtH79eiUnJ8swDJUtW1Zt2rRRUFCQqlatanZEwBSUowAAAEAe5uPjo9q1a2vu3LlmR7F7Pj4+aty4saZMmWJ97fZyVJIGDhyozZs3a9++fWbEtBuDBg3Stm3bdOXKFRmGoYIFCyogIEBNmjRRkyZNVKZMGbMj5kv/9ACm23EgU+5LSUnR2rVrFRoaqk2bNik1NVWGYahGjRpq27atWrdurZIlS5odE7AZDmQCAAAA8jBXV1cVKVLE7BjQjYNOEhIS7jsXFxfHCkYbmDJlijIyMrR3715t2rRJmzZt0saNG7VhwwYZhqFq1aqpSZMmatq0qerWrWt23HyDA5gefgULFlRgYKACAwN19epVrVmzRqGhodq2bZsmTpyoTz/9VAEBAZo5c6bZUQGbYOUoAAAAkIcNHz5c4eHhWrNmDSWpyV577TVFRERo2bJl1sdTb185evz4cbVv317+/v6aNWuWmXHtUnx8vDZt2qTw8HBt3bpViYmJkqTixYtry5YtJqfDrU6ePKlLly6xJ6aNpKWlafXq1fr00091/vx5GYbBKl7YDTYkAgAAAPKwYcOGqUCBAho2bJjOnj1rdhy79sorryg1NVV9+vTRhg0blJycbL1nsVi0detWvfnmm8rIyNDLL79sYlL7VbJkSfn4+MjX11d+fn4qUKCALBbLA634hW1NmzZNPXr0MDtGvpaamqqwsDANGzZM/v7+evvtt3X+/HnVqlWLA+NgV1g5CgAAAORhgwcP1oULFxQZGSlJcnd3l5ub210fa121apUt49mdr7/+Wl999VWW//+FChVSRkaG0tLSZLFY9Morr+i9994zMaV9OXLkiCIiIrRz507t3r3bWoRaLBZVrFhRfn5+8vf3V1BQkMlJcavhw4drxYoVrF7MYenp6dqyZYtCQ0O1du1a/f3337JYLCpXrpyCgoIUFBSkKlWqmB0TsCn2HAUAAADysNvLzsuXL+vy5cvZzrIPYO7r37+/6tWrp1mzZmn37t26fv26rl27JkdHRzVo0EA9e/ZUixYtzI5pF/r166c9e/YoKSlJ0o0ytHz58mrXrp38/f3l7++vsmXLmpwSsJ2RI0dq7dq1SkpKksVikZubm4KDgxUUFKQnnnjC7HiAaShHAQAAgDxs7dq1ZkfAbZ566ik99dRTyszM1OXLl5WRkSEPDw85OTmZHc2urF+/XpLk6OioVq1aqXfv3vL29jY5FWCepUuXytHRUc2aNVNQUJCaNm0qZ2dns2MBpqMcBQAAAPKw8uXLmx0Bd3HhwgVdvHhRjo6OcnBwUIkSJcyOZFd69eql7du36/Dhw1q5cqV+++03Pfroo9bH6J944gkVK1bM7JiAzfzrX/9SYGCgPDw87jt7+fLlB5oD8gP2HAUAAACAHJKenq4ffvhB8+fPV2xsbJZ7VapUUc+ePdWpUyeT0tmnpKQk7dy5U1u3btWOHTv0xx9/SJIcHBxUtWpV+fv7y8/PTy1btjQ5KW7FnqO548KFC/r5558VExNj3Qf5JovFopSUFMXHx2vfvn06cOCAiUkB26EcBQAAAPKQVq1aSZJmzZqlChUqWK8fFAcy5Z6UlBT16tVLu3fvtu5vWaZMGUnSuXPndP78eRmGocDAQH322Wcmp7VfcXFx2rlzpyIiIrRixQpdvXpVhmEoKirK7Gi4BeVozjt16pQ6d+6sK1euWEtRwzCy/Fq6UZK6u7trx44dpmUFbInH6gEAAIA85PTp0zIMQ2lpadbrB8WBTLlr5syZioiIUN26dTVu3Dg9+uijWe7v379fo0aNUmhoqOrXr6+uXbualNR+xcTEaNu2bdZVpFeuXJEkFSlSxORkQO6bNm2akpKSVL9+fbVu3Vq7d+/W77//ro8++kipqakKDw/Xhg0b9Nhjj2nZsmVmxwVshpWjAAAAQB5y7tw5SZKnp6ccHR2t1w+KPUpzT6tWrXTlyhWtXr36rmVbfHy8nn/+eZUpU0bLly+3cUL789dff2n79u3atm2btm/frrNnz0q6sTLu0Ucf1TPPPKMmTZqoQYMGKlCggMlpcStWjua8xo0bKyUlRevWrVPhwoW1bds2vfbaa5oxY4YaNWok6UaBOmXKFP3rX/9Sly5dTE4M2AYrRwEAAIA85PZyk7Lz4REbG6smTZrccxViyZIl5e/vr02bNtkwmX1q166djh07JovFIovFokKFCumZZ56xFqJ87sDeJCQkKCAgQIULF5YkVa9eXRaLRQcOHLCWo2+88YbmzZunZcuWUY7CblCOAgAAAHnc/PnztWjRIp0+fVqpqan3nD148KCNUtmfsmXL6sKFC/edS0xMVMmSJW2QyL4dOXJE5cqVU5MmTdS4cWMFBASoYMGCZscCTOPs7CwXFxfrdfHixVWkSBHrIWXSjYPK6tSpw36jsCuUowAAAEAetmjRIo0ZM0bslmW+rl27asKECVq6dKk6dOiQ7czGjRsVERGht956y8bp7M+KFSvu2PcVsGePPPKIjh49muU1Ly8vHTp0KMtr6enp1n2tAXtAOQoAAADkYXPmzJGDg4M+/PBDtWrVSm5ubmZHshu37xnq4eEhLy8v66FLrVu3Vvny5VWoUCFdvHhRW7ZsUUhIiHx8fOTn52dSavtxsxhNT0/X6tWrtXPnTp0/f17169dXnz59FBISotq1a8vb29vkpPnbrl27VKJECVWpUuWec3v37tXx48fVqVMnSZKvr68cHaksclLjxo317bff6pNPPtGAAQPk6uqqevXqac6cOQoPD1fDhg119uxZ7dy5k20nYFc4kAkAAADIw+rWrasGDRpo1qxZZkexO97e3jIMI8trt357dfu9W+87ODgoKioqdwNCBw8e1FtvvaVz587JYrHIMAy1adNGkyZNsu5J+u6776pnz55mR823vL291bZtW33yySf3nBs0aJDCw8O1Z88eGyWzP4mJierQoYNiYmLUqFEjzZgxQ2fOnNHzzz+vAgUKqGbNmjp+/LiSk5PVv39/DRgwwOzIgE3wYxgAAAAgD/P09OSRepO0a9cu2wIUD4fo6Gi99tprunLlilq2bKmGDRtq9OjR1vtNmjTRyZMnNXHiRHl7e8vf39/EtPnH8uXLlZGRkeW1M2fO6Oeff77re65cuaIdO3bIwcEht+PZNXd3dy1atEhTp05V8eLFJd141H7ixIn64IMPtG/fPklSYGCgevfubWZUwKZYOQoAAADkYTNmzNA333yjpUuX3vexVcCejBgxQj///LMmTpyotm3bSrqxijEoKEiTJk2SJG3evFm9e/dWkyZNNH36dDPj5hvjxo3T3Llz//EPDiwWywOtMEXuSE5O1okTJ1S2bFmVKlXK7DiATbFyFAAAAMjDXn/9dR0+fFhdunRRz5495e3tLQ8Pj7vO169f34bpAPOEh4erRo0a1mI0O40aNVLdunV1+PBhGybL39566y2lpKRYV7QvXrxYlSpVkq+vb7bzhmGoYMGCqlSpknW/Udhe4cKFVadOHbNjAKagHAUAAADysLS0NGVmZioxMVFfffXVPWcNw2Cfy1yWmpqqzZs368yZM0pJSbnnbN++fW2Uyj5dvnxZ9erVu+9cyZIl+bzIQUWKFNHYsWOt14sXL5aPj4/GjRtnYioAuDvKUQAAACAPmzRpklatWiXDMFS1alUVK1bM7Eh2KyYmRt26dVNsbOw9524eDEQ5mrtKlSqlEydO3Hfu+PHjKlmypA0S2acjR46YHQEA7olyFAAAAMjDVq1apaJFi2rOnDny9vY2O45dmzhxomJiYlS5cmU1atRIbm5uHNhkokaNGmnRokWaN2+eXn755Wxn5s2bp9OnT/M4tw2cO3dOrq6u1m0/oqOjNXPmTMXGxqp27drq2bOnihYtanJKAPaIA5kAAACAPKxu3bp66qmn9M0335gdxe49/fTTKliwoFauXCkXFxez49i9CxcuqG3btkpMTFSLFi3k7++vsWPH6umnn1a7du20ceNGrVy5UkWKFNGyZctUoUIFsyPnSxkZGXr//ff1888/a9KkSWrTpo0SExPVunVrXbp0ybqSumrVqlqwYIGKFClidmQAdsbB7AAAAAAA/nuPPvqo4uLizI4BSSkpKapVqxbF6EPC09NT33//vcqXL6/Vq1db97zcunWr3nnnHa1YsUIlSpTQtGnTKEZz0fz587Vs2TJ5eHhYV4YuWLBA8fHx8vHx0bfffqugoCCdOHFCM2fONDktAHvEylEAAAAgD1u9erUGDRqkCRMmqH379mbHsWt9+vTR6dOn9fvvv/M4/UMkLS1Na9as0fbt23X+/HllZGSodOnSeuKJJ9S6dWsVKlTI7Ij5WufOnXXs2DGFhoaqbNmykqT27dvryJEjWrBggXx8fJSZmamWLVvK2dlZoaGhJicGYG8oRwEAAIA8LDw8XHPmzNGmTZtUq1Yt+fj4yMPDQ46O2R8vwCFAuefo0aN66aWX1LFjRw0bNowVpICkBg0ayNfXV9OnT5ckxcXFqVGjRipWrJi2bdtmnRs4cKA2b96sffv2mRUVgJ3iQCYAAAAgD3v99ddlGIYsFosOHDigAwcOSNIdKxc5IT33Va9eXaNGjdL777+vZcuWqVKlStbDZ25nGIZmzZpl44SA7VksFjk5OVmvN2/eLEny9/fPMpecnMyKawCmoBwFAAAA8rD+/ftTKDwktm7dqg8//FCS9PfffysqKuqus3zMcl6tWrUkSStWrFDlypWt1w/q4MGDuRHL7lWqVEmHDh2y/oBm9erVMgxDjRs3ts4kJCRoz549qlSpkolJAdgrylEAAAAgDxs4cKDZEfB/vvzyS6Wnp6tly5YKDAxUsWLFKEFtKD09XdKNlYq3XsNczz77rKZOnapXX31VJUqU0IYNG+Tq6qrmzZtLkpYvX65p06bp+vXrCgwMNDktAHvEnqMAAAAAkAPq1asnLy8vLV261OwowEMjNTVVw4YN05o1ayRJjo6Omjhxol544QVJUrNmzRQTE6OWLVvqs88+y/IIPgDYAitHAQAAACAHuLq6qly5cmbHwP9JSEhQ8eLFzY5h95ydnfXVV18pIiJCcXFxqlevnsqUKWO9/8orr+iRRx5RkyZNzAsJwK6xchQAAAAAcsC//vUvrVq1SmFhYSpatKjZcexerVq11LBhQwUFBal58+ZydnY2OxIA4CFEOQoAAAAAOeCvv/5S586d5erqqiFDhsjHx0fu7u5mx7JbTz/9tC5duiTDMOTq6qqWLVsqKChIAQEBZkezSwkJCVq4cKF27dqluLg4OTs7q2TJkvL391ebNm1UqlQpsyMCsFOUowAAAACQA1566SUlJSXp1KlT1tcMw5CDg0O285yOnrsyMzO1fft2rVixQmFhYUpKSpJhGPL09NQLL7ygNm3aqHr16mbHtAvh4eEaOnSorly5otsrCMMw5ObmpkmTJmU5wR4AbIVyFAAAAABygLe39z+aP3LkSC4lwe3S0tK0adMmrVy5UuvXr9e1a9dkGIaqVaumtm3bqnXr1vL09DQ7Zr508uRJdezYUdevX1e7du3UunVrVahQQRkZGYqOjlZoaKh+/fVXubi4aNmyZapUqZLZkQHYGcpRAAAAAIDduH79utavX6/Vq1dr8+bN+vvvv1WgQAFW8uaSd999V7/++qvGjx+vDh06ZDuzZMkSjRo1Sp06ddKYMWNsnBCAvcv++Q4AAAAAAPKhjIwMpaenyzAMSbrjMW/krG3btql69ep3LUYlqWPHjvL29taWLVtsmAwAbnA0OwAAAAAAALnp2rVrWrdunUJDQxUeHq7U1FRZLBb5+PgoKChIgYGBZkfMtxISEtSgQYP7zlWuXFnr1q2zQSIAyIpyFAAAAABywLPPPvvAs4ZhKCwsLBfTICUlRRs2bFBoaKg2bdqk69evy2KxqGLFigoKClJQUBD7W9pAsWLF9Oeff9537vTp03Jzc8v9QABwG8pRAAAAAMgB586du++MYRjy8PBQgQIFbJDIvj355JO6du2aLBaL3N3d1bZtW7Vt21b16tUzO5pdCQgI0IoVK7RixQq98MIL2c4sX75chw8fvut9AMhNHMgEAAAAADngwoUL2b6ekZGhpKQk7du3T9OmTVP16tX1zTffyNGRtSq5qXbt2mratKmCgoLUuHFjOTk5mR3JLp04cUIdOnRQRkaGgoOD9dxzz6l8+fKSpOjoaP3+++9avHixChQooMWLF6tatWomJwZgbyhHAQAAAMBGTp48qaCgIL355pt68803zY6TryUlJfGY9kMiLCxMb7/9tq5fv249COsmi8UiFxcXTZo0SS1atDApIQB7RjkKAAAAADbUq1cvnTlzRmvWrDE7it2IjIzUzp07df78eXl7eys4OFjr16+Xj4+PihcvbnY8uxAXF6eFCxcqIiJCFy9elMViUenSpeXr66vg4GB5enqaHRGAneI5DgAAAACwIScnp7s+go+cFR0dreHDh2vfvn3W19q0aaPg4GB9/fXXOn78uD799FO1bNnSxJT2oVSpUhowYIDZMQDgDg5mBwAAAAAAe3Hs2DFt27aNVXI2kJCQoO7du2vv3r16/PHH9cYbb+jWBycfe+wxpaamasiQIYqKijIxKQDATKwcBQAAAIAcMHr06LveS09PV3x8vHbs2KG0tDRO5baBb775RrGxsRoyZIjeeOMNSdL06dOt9ydMmCBfX1+NHDlSM2bM0JdffmlW1Hzv6NGj+s9//qOjR48qKSlJmZmZd51dtWqVDZMBAOUoAAAAAOSIkJCQB5pr2rSp+vbtm8tpsG7dOlWpUsVajGanQ4cO+umnn7R//34bJrMv+/fvV7du3ZSWlqb7HXly+2FNAGALlKMAAAAAkAMmTJhw13uGYcjV1VXVqlVTpUqVbJjKfsXFxalZs2b3natUqZI2bNiQ+4Hs1JQpU5SamqpmzZqpZ8+eKlu2rAoUKGB2LACwohwFAAAAgBzQvn17syPgFh4eHjpz5sx9506dOiV3d3cbJLJP+/fvV6VKlTR16lQ5OHDsCYCHD+UoAAAAAOSQmJgYLViwQMePH9e1a9fuureiYRj66aefbJzOvgQEBGjFihVau3atnn322WxnwsLCdPz4cfaAzUVpaWmqXr06xSiAhxblKAAAAADkgKNHj6pbt266evUqeys+BPr166c1a9Zo8ODB6t69u/z9/SVJycnJ2rNnjzZu3KgffvhBTk5Oev31101Om395e3vrjz/+MDsGANyVYbnfv9oAAAAAgPvq37+/1q5dq4CAAHXq1EklS5a8596KDRo0sGE6+xQeHq6hQ4cqKSnpjkLaYrHIxcVFEyZM0HPPPWdSwvxvw4YN6tu3r0aMGKGePXuaHQcA7kA5CgAAAAA5wM/PT25ubvr999/l6MhDemZbtmyZatSoodKlS2vx4sXasWOHzp8/r4yMDJUqVUq+vr7q3LmzPD09zY6ar0yfPv2O13799VedOnVKPj4+qlevnooWLXrXx+z79u2b2xEBIAvKUQAAAADIAfXq1VOjRo00ZcoUs6NA0tNPP63ChQtrzZo1ZkexK97e3tmu0r1ddjOGYejw4cO5mg8AbsePMwEAAAAgB1SvXl2nTp0yOwb+z9WrV9m6wAT9+/dnT10AeQorRwEAAAAgB4SFhWnAgAEaM2aMOnXqZHYcu9e3b1/t27dPv/zyC4/O50EnT57UpUuX5Ovra3YUAPkc5SgAAAAA5ICNGzdq0aJFWrdunerXr686derIzc3trqvo2Fsxd0VEROj9999XQkKCmjdvLm9vb7m7u991r8s2bdrYOCHuZfjw4VqxYgWP2QPIdZSjAAAAAJADbu61eOu3WNkVo+ytaBu3fzzu96g3H4+HC+UoAFthz1EAAAAAyAHstfhwadeuHR8PAMB9UY4CAAAAQA4YOHCg2RFwi4kTJ5odAQCQB2S/2QoAAAAAAAAA5HOUowAAAAAAAADsEuUoAAAAAAAAALtEOQoAAAAAAADALlGOAgAAAAAAALBLlKMAAAAAAAAA7BLlKAAAAAAAAOy4/K8AAA6sSURBVAC7RDkKAAAAAAAAwC45mh0AAAAAAADgVr6+vnJ0pLIAkPsMi8ViMTsEAAAAAADI+2JiYv6n95crVy6HkgDAg6EcBQAAAAAAOcLb21uGYfxX7zUMQ1FRUTmcCADujTXqAAAAAAAgR1SsWPGOcjQpKUmXL1+WJFWuXFnly5eXo6Oj4uLidPToUWVkZMjLy0tlypQxIzIAO8fKUQAAAAAAkCvOnj2rLl26qGLFiho/fryqVKmS5f758+c1cuRIHTp0SHPmzFG1atVMSgrAXlGOAgAAAACAXDFw4EDt2rVLYWFhKlKkSLYzycnJatmypapXr65Zs2bZOCEAe+dgdgAAAAAAAJA/bdu2TX5+fnctRiWpcOHCatCggfbu3WvDZABwA+UoAAAAAADIFY6OjkpISLjv3Llz51S4cGEbJAKArChHAQAAAABArvDx8dHu3bsVFhZ215mQkBAdPHhQ/v7+NkwGADew5ygAAAAAAMgVkZGR6tatmzIzMxUYGKhGjRrJ09NTkhQTE6OwsDCtW7dORYoU0cKFC+84sAkAchvlKAAAAAAAyDXr1q3T6NGjdenSJRmGkeWexWJRxYoVNWnSJNWrV8+khADsGeUoAAAAAADIVcnJyVqzZo0iIiJ08eJFGYah0qVL66mnnlKzZs3k7OxsdkQAdopyFAAAAAAAAIBdcjQ7AAAAAAAAyP8iIyO1c+dOnT9/Xt7e3goODtb69evl4+Oj4sWLmx0PgJ2iHAUAAAAAALkmOjpaw4cP1759+2SxWGQYhtq0aaPg4GB9/fXXOn78uD799FO1bNnS7KgA7JCD2QEAAAAAAED+lJCQoO7du2vv3r16/PHH1bdvX926u99jjz2m1NRUDRkyRFFRUSYmBWCvKEcBAAAAAECu+OabbxQbG6shQ4Zo8eLFeuutt7LcnzBhgsaPH6+MjAzNmDHDpJQA7BnlKAAAAAAAyBXr1q1TlSpV9MYbb9x1pkOHDqpevbr2799vw2QAcAPlKAAAAAAAyBVxcXF67LHH7jtXqVIlxcfH2yARAGRFOQoAAAAAAHKFh4eHzpw5c9+5U6dOyd3d3QaJACArylEAAAAAAJArAgICdOTIEa1du/auM2FhYTp+/Lj8/f1tmAwAbnA0OwAAAAAAAMif+vXrp7CwMA0ePFjdu3e3FqDJycnas2ePNm7cqB9++EFOTk56/fXXTU4LwB4ZFovFYnYIAAAAAACQP4WHh2vo0KFKSkqSYRhZ7lksFrm4uGjChAl67rnnTEoIwJ5RjgIAAAAAgFyVkJCgxYsXa8eOHTp//rwyMjJUqlQp+fr6qnPnzvL09DQ7IgA7RTkKAAAAAABMl5SUJDc3N7NjALAzHMgEAAAAAAByxbPPPqtPPvnkvnNvv/22AgMDbZAIALKiHAUAAAAAALni3LlzunTp0j1nrl69qhMnTigpKclGqQDg/+OxegAAAAAAkCM6deqkAwcO/FfvrVGjhpYuXZrDiQDg3lg5CgAAAAAAcsTo0aNVoEABOTg4yMHh/1cON69v/69AgQJycXFRjRo19NFHH5mYHIC9YuUoAAAAAADIFd7e3goKCtKkSZPMjgIA2XI0OwAAAAAAAMifJkyYoIoVK5odAwDuipWjAAAAAADAdEePHlX16tXNjgHAzrByFAAAAAAA5JpDhw5p4cKFiomJUVpamm5do2WxWJSSkqL4+HidP39eUVFRJiYFYI8oRwEAAAAAQK7Yv3+/unXrlqUUNQwjS0FqGIYkqVq1aqZkBGDfKEcBAAAAAECu+O6775SamqpWrVqpQ4cO2rhxoxYsWKDp06crMzNT4eHhWrBggby8vBQSEmJ2XAB2yMHsAAAAAAAAIH/au3evSpcurcmTJ6tx48Zq3bq1MjMzlZaWpqZNm2r06NEaM2aMTpw4oR9//NHsuADsEOUoAAAAAADIFZcvX1bNmjXl5OQk6f8/On/o0CHrTMeOHVWhQgWFhoaakhH/r737C+2y7P8A/v5uLsyMSQy2igKDnAUKhngWdVKyshApx1o72EH/sIjoqCihf1oHnXiiiGcZplGmgZR0kKHQ0mJZKaOWqfkP/5WlbK3tfg4EecaTP5+nn9/d0P16HW3Xdd3wPvoevPnc9wXVphwFAAAA6mLKlClpbGy88P/VV1+dadOmZXBwcNy5W265Jfv375/oeADKUQAAAKA+pk+fnj179mRsbGzc2rfffjvu3Llz5yY6GkAS5SgAAABQJ3fddVeOHDmSZ599NgcPHkySzJs3L0eOHMn777+f5PyN9n19fbnhhhvKjApUVK0oiqLsEAAAAMA/z9DQUB566KHs2bMnd955Z1atWpXjx4/n7rvvztDQUFpaWnLy5MkURZHnn38+PT09ZUcGKkY5CgAAANTN8PBw1q5dm8mTJ6e7uztJ8vnnn+eFF17Izz//nMmTJ6enpyfPPPNMGhq84ApMLOUoAAAAUIpTp05l2rRpSlGgNMpRAAAAAKCSJpUdAAAAAPhnePHFF//2s7VaLS+//PJlTANwaSZHAQAAgMti5syZf/vZWq2WvXv3XsY0AJdmchQAAAC4LJYvX152BID/iclRAAAAAKCSXAcHAAAAAFSS1+oBAACAunjuuef+67O1Wi3Lli2rYxqA/+S1egAAAKAuLnVBU61WS5IUReFCJqAUylEAAACgLjZv3vyX62NjYzlz5kz6+/vz8ccf57777sujjz6am266aYITAlWnHAUAAABK88knn+Spp57Km2++mXvuuafsOEDFKEcBAACAUj3wwAMpiiLvvfde2VGAinFbPQAAAFCq6667LoODg2XHACpIOQoAAACU5vfff89XX32Vq666quwoQAVNKjsAAAAA8M/04YcfXnRvdHQ0x48fz8aNG3Py5MksXLhwApMBnOebowAAAEBdzJw5M7Va7f88UxRF2tra8s4776StrW2CkgGcZ3IUAAAAqIuFCxdetByt1WqZMmVK2tvb09HRkalTp05wOgCTowAAAABARbmQCQAAAKir3bt3Z/PmzePW+vv788orr+Trr78uKRWAchQAAACok6Io8uqrr6azszNr1qwZtzcwMJC33347XV1dWbFiRUkJgapTjgIAAAB1sWnTpqxduzatra3p6ekZtzd//vwsX748ra2tWbly5X9MlgJMBN8cBQAAAOpi8eLFGRwczJYtW9La2vqXZ44ePZqOjo7MmDEj69evn+CEQNWZHAUAAADqYt++fZk3b95Fi9EkaWtry9y5czMwMDCByQDOU44CAAAAddHQ0JCRkZFLnmtsbExDg4oCmHh+eQAAAIC6aG9vz86dO3Po0KGLnjl27Fj6+vrS3t4+gckAzlOOAgAAAHXR1dWV4eHh9Pb2Ztu2bRkdHb2wNzY2lh07dqS3tzdDQ0Pp7OwsMSlQVS5kAgAAAOpm6dKl2bBhQ2q1WpqamtLS0pIkOXHiREZGRlIURRYtWpRly5aVnBSoIuUoAAAAUFdbt27NunXrsmvXrgvfIJ00aVJmzZqV7u7uLFiwoOSEQFUpRwEAAIAJc/r06YyOjqa5uTlNTU1lxwEqTjkKAAAAAFTSpLIDAAAAAP8Mq1at+n89//jjj1+mJAD/HZOjAAAAwGUxc+bM1Gq1//m5oihSq9Wyd+/eOqQCuDiTowAAAMBlsWTJkr9VjgKUxeQoAAAAAFBJDWUHAAAAAPjll1/KjgBUkNfqAQAAgLo5duxYPvjggxw+fDgjIyP59xdYi6LI8PBwTpw4kf7+/nzzzTclJgWqSDkKAAAA1MW+ffvS2dmZ33777UIpWqvVxv2dnC9Jm5ubS8sJVJdyFAAAAKiLlStX5syZM7ntttty77335ssvv8xHH32Ul156KX/88Ue2b9+eTz/9NDfffHM2btxYdlyggnxzFAAAAKiLvr6+TJs2LWvWrEl3d3cefPDBFEWRa6+9Ng8//HBWrVqVp59+Oj/88EPefffdsuMCFaQcBQAAAOri1KlTmTVrVqZMmZIkaW9vT1EU474t+thjj6WlpcXkKFAK5SgAAABQF1dccUWuvPLKC/9fc801mTp1agYHBy+sNTQ0ZPbs2fnxxx/LiAhUnHIUAAAAqIsbb7wxAwMD49amT5+e7777btzan3/+mZGRkYmMBpBEOQoAAADUyR133JEDBw7kjTfeyNmzZ5Mkc+bMyf79+7N9+/YkycGDB/PFF1/k+uuvLzMqUFG1oiiKskMAAAAA/zy//vprFi1alMOHD+f222/P6tWrc+DAgXR0dKSxsTG33nprvv/++5w7dy5LlizJk08+WXZkoGJMjgIAAAB10dzcnA0bNqSrqyuzZ89Ocv5V+9dffz1NTU3p7+/P2bNn09HRkUceeaTktEAVmRwFAAAA6mr37t356aefcv/9919Y27VrV1avXp0nnngic+bMKTEdUGUmRwEAAIC6KIoir732Wjo7O7NmzZpxe4ODg/nss8/S3d2dFStWlJQQqDrlKAAAAFAXmzZtyltvvZXW1tb09PSM25s/f36WL1+e1tbWrFy5Mps3by4pJVBlXqsHAAAA6mLx4sUZHBzMli1b0tra+pdnjh49mo6OjsyYMSPr16+f4IRA1ZkcBQAAAOpi3759mTdv3kWL0SRpa2vL3LlzMzAwMIHJAM5TjgIAAAB10dDQkJGRkUuea2xsTEODigKYeH55AAAAgLpob2/Pzp07c+jQoYueOXbsWPr6+tLe3j6ByQDOU44CAAAAddHV1ZXh4eH09vZm27ZtGR0dvbA3NjaWHTt2pLe3N0NDQ+ns7CwxKVBVLmQCAAAA6mbp0qXZsGFDarVampqa0tLSkiQ5ceJERkZGUhRFFi1alGXLlpWcFKgi5SgAAABQV1u3bs26deuya9euC98gnTRpUmbNmpXu7u4sWLCg5IRAVSlHAQAAgAlz+vTpjI6Oprm5OU1NTWXHASpOOQoAAAAAVJILmQAAAACASlKOAgAAAACVpBwFAAAAACpJOQoAAAAAVJJyFAAAAACopH8BewpvSRfLwccAAAAASUVORK5CYII=\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Corrlation matric\n", + "sns.set(font_scale =2)\n", + "plt.figure(figsize =(20, 10))\n", + "sns.heatmap(abb_vis_df.corr(), annot=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxEAAAHwCAYAAADZ4OJoAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4yLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy+j8jraAAAgAElEQVR4nOzdd3xO5//H8VcSiRkEqS1C3EEpqRF7144YpdRetbVUayu+apUaqWjVKoqmNqHy9a1Zuyi1kwihhKi9ksj9+yOP+/zcMuS20uj7+Xjk8UjOuM51rnOfO+dzzue6jp3ZbDYjIiIiIiKSTPYpXQEREREREUldFESIiIiIiIhNFESIiIiIiIhNFESIiIiIiIhNFESIiIiIiIhNFESIiIiIiIhNFESIyL9KREQEM2fOpGXLlpQpU4a3336bSpUq0bVrV9asWcPjx49TuoovxM/PD09PT/r37//SygwJCYk3zdPTE09PT86cOfPStvNPktT+vY72aN++vVFmQj9vv/02FStWpF27dixbtozY2NiXsl15ecaMGYOnpyd169ZN9joTJ07E09OTNm3avJI6DRkyBE9PTyZNmvTCZdWqVQtPT0+2bt2aItuXlJcmpSsgIvK6BAQEMG7cOB49eoS9vT05c+akQIECXLp0iV27drFr1y4WLVqEv78/uXLlSunqprhr167x5ZdfEh4ezsqVK1O6OikuJdojd+7c5M6dO970hw8fEhYWxoEDBzhw4ADbt2/H398fe3vdG/ynaNasGUuXLuX8+fP8+eeflChRIsnlY2NjCQwMBKB58+avo4oiL0RBhIj8K3z11VfMnTsXR0dHunfvTpcuXciWLZsxf9u2bYwfP57jx4/TsWNHVqxYgbOzcwrWOOXt3LmTTZs28fbbb8ebt3HjRgDy58//uqv1WiS0f0m1x6vSokUL+vXrl+C8R48e8e233+Lv78/WrVtZsWIFrVq1em11k6S98847FCpUiNDQUDZu3PjMIGLfvn1cvXqV9OnT06BBg1dSp4EDB9K9e3dcXFxeSfny76JbFiLyxtu1axfz5s3DwcGBKVOmMGjQIKsAAqBGjRosXrwYFxcXwsLC8PPzS6Hapg6FCxemcOHCODk5pXRVXonUsH9p06bl448/pmLFigD8/PPPKVwjeVrTpk0B+OWXXzCbzUkuu27dOgDq1KlDpkyZXkl93nrrLQoXLhzv+0/keSiIEJE3WmxsLGPGjMFsNtOsWTPq16+f6LI5c+bko48+AuIuyB48ePC6qiny3KpWrQok3FdDUpavry/29vZcunSJI0eOJLrco0ePCAoKApTKJKmH0plE5I22f/9+Lly4AECXLl2euXyzZs3Ili0b5cuXJ3369Fbzbt++zQ8//EBQUBAXLlzA3t4ed3d3GjZsSLt27UiXLp3V8rVq1eLSpUv897//Zdq0aWzduhVHR0dq1qzJ5MmTnznfYsuWLSxbtow///yT+/fvkzNnTmrUqMFHH33EW2+9ley2CA8PZ9GiRezdu5dLly4RFRVF1qxZKVWqFO3bt6dChQrx6g5w/PhxPD09yZs3L7/++isQ15EYYP369ZhMJqvtBAUF8dNPP3Hs2DHu37+Pq6srFStWpHv37ri7u1stu2rVKoYOHUrbtm3p27cv33zzDb/++iuRkZFkz56dGjVq0KdPn2Tt5wcffMCRI0cYP348LVq0sJpnSWfLlSsX27dvt5p3+/ZtKlSogJOTE/v27SNt2rTx9u9Z7WFhNptZsWIFy5cvJzg4GCcnJ0qUKEH37t2NJwYvm6UfRGJ3ug8cOMDChQs5fPgwt2/fJnv27FSuXJkePXrg5uYWb/nr168zZ84ctm3bxqVLl3ByciJ//vzUrFmTTp06kTVrVmPZffv20aFDB6pUqcL06dOZOnUqW7Zs4c6dOxQoUICmTZvSrl070qZNG287jx49YunSpQQGBhISEkJsbCz58+enTp06dO7cmSxZslgtP2TIEFavXs2MGTMoWLAgs2bN4sCBA9y7d4/8+fPTpEkTunTpEu/pkS378+Q6c+fO5ddff+Xy5cukTZuW4sWL06ZNmyRvRDwtV65cVKhQgd27dxMYGIiXl1eCy23dupW7d++SO3duq/PQlnMW4jrk79+/n2XLlrF+/XrWrl0LxKVWzZ8/n2HDhrF69Wq6dOnC4MGDrdY9ePAgy5cv59ChQ1y/fh3AOHe7deuW4GfFYu3atSxcuJCQkBCcnZ2pWLEivXr1onDhwsluq7t377Jw4UI2b97MhQsXcHBwwGQy0bx5c1q0aIGDg0Oyy5LXQ08iROSNtnfvXiDun2Fy/qG5uLjQtGlT8uTJYzU9LCwMX19fvvnmG0JCQihYsCD58uXjxIkTfPXVV7Rq1Ypr164lWOZnn33G5s2bKViwIA4ODvHKTmy+2Wxm5MiR9OnTh127duHo6EiRIkW4fv06ixcvxtfXl2PHjiWrHXbt2kXjxo1ZtGgRly9fpkCBAuTPn5+bN2+yZcsWOnXqxIYNG4zlS5QoQcGCBQHIkCED7777brI6hg4aNIh+/fqxa9cuMmTIgKenJ7du3WLlypX4+voad1ufdvXqVZo3b87SpUtxcHCgYMGCXLlyheXLl9O6dWtu3779zH2sXr06ALt37443b8+ePQBcuXKF8PBwq3m//fYbjx8/plKlSgle7ELy22P06NEMHz6cixcv4u7uTnR0NL/99hudO3fml19+eeY+PA9Lm5YsWTLePH9/f9q1a8eWLVuIjY3FZDJx//5943g8HVBdv36d999/n4ULF3Lt2jU8PDzIkycPwcHBzJ49m1atWnHr1q1427l//74xUlS6dOkoUKAAZ8+eZfLkyXTp0oW7d+9aLf/333/TsmVLJk6cyJ9//knu3Llxd3fn3LlzzJ49m6ZNmyb6ZGXv3r28//77bN26FVdXV3LkyEFISAjTpk3j448/fuH9OX78OD4+PsyfP5+//vqLggULkiVLFvbu3cvHH3/M0KFDn5ma9CRfX18gLqUpsVG01q9fbyxrCQptPWefNGnSJJYuXUrevHnJmDEjrq6uSXa69/f3p23btqxfv56oqCg8PDzInj07Fy9eJCAggObNmxMaGprgut9//z2ff/454eHhFClShEePHrF+/XqaNWvGb7/9lqw2unjxIs2bN8fPz4/Q0FDy5ctHzpw5OXz4MCNHjqRHjx5ERUUlqyx5jcwiIm+wfv36mU0mk7lz587PXUZUVJS5Xr16ZpPJZG7Xrp358uXLxrzQ0FCzj4+P2WQymT/88EOr9WrWrGk2mUzmEiVKmA8dOmSUdefOnWTNnz9/vtlkMpmrVKli3r17t1HuvXv3zKNHjzabTCZz9erVjeXNZrN55syZZpPJZO7Xr58x7dGjR+YqVaqYTSaTefz48eZHjx4Z865du2bu1KmT2WQymRs0aGBV/5UrV5pNJpO5WbNm8drEZDKZTSaT+fTp08Y0Pz8/s8lkMpcpU8b866+/GtMfPHhgHj9+vNlkMplLlixptY5lGyaTyVy3bl3zn3/+acw7dOiQuVSpUmaTyWSeM2dO/APzlOPHj5tNJpO5UqVKVtNv3rxpLlq0qLGdFStWWM0fOnSo2WQymQMCApLcv+S0R9GiRc3z5883R0dHm81ms/n27dvm9u3bm00mk7l+/frP3AeLdu3amU0mk3nmzJmJLnP79m3jc2Aymcw7duywmr9582azyWQyv/vuu+bAwEBjelRUlHnWrFnGvEuXLhnzJk6caDaZTOb+/fub7927Z0y/cOGC+b333jObTCbzN998Y0zfu3evsf2SJUuaN23aZMw7efKkuWrVqmaTyWSeMGGCVd0sbdK4cWNzcHCwMf3KlSvmDh06GJ+Hhw8fGvMGDx5sbOujjz4yX7t2zZj3ww8/GPP++OOP596f27dvm6tXr242mUzm4cOHW51bBw8eNM6jBQsWJHJU4rt37565dOnSZpPJZN67d2+8+Tdv3jS//fbbZpPJZD537pzZbH7+c9byuTGZTOagoCCz2Ww2P3782Hzjxg2rNpw4caKxzsmTJ81FixY1FytWzLx+/Xqr8k6ePGmuVq2a2WQymb/44gureZbvL5PJZB42bJj5wYMHZrPZbL5//775s88+M5tMJnPFihXNt2/fNtZJaPsxMTHmpk2bmk0mk7lnz55Wx/Xs2bPmBg0amE0mk3ncuHHPbGt5vfQkQkTeaHfu3AFIMGUhuQIDAzl37hw5cuSIN/yru7s7c+bMIUOGDBw8eDDenV2AunXrGmkMjo6O8TpNJjTfMvIOxKXiPJkKkyFDBr744gtKlSrF5cuXnznc6JNpUJ9//rlVukeOHDno06cPAOfOnXvu9w3cv3+f+fPnAzB27Fhq1qxpzEuXLh1Dhw6ldu3aPHr0CH9//wTLmDx5stXIR15eXjRq1AiAP/7445l1KF68OG+99RaRkZFW72vYt28fsbGxvPvuu0Bces+Tdu7ciZ2dnfEk40U0a9aMzp07kyZNXLaws7MzgwYNAiA0NDTBu/hJWblyJW3atLH6+eCDD2jQoAHe3t4sXboUR0dHRo4cafSNsJg5cyYAw4YNo2HDhsZ0R0dHevfuTYMGDYwUEgtLu/n4+JAhQwZjev78+Rk0aBC1atVKdGSfQYMGWaX6FC1a1EjLW7JkifE04uDBg0ba2Lfffmv1hDBnzpzMmjWLXLlyERYWluBnO2vWrMyYMYMcOXIY0zp06ECBAgUArPoe2Lo/AQEBXL58mfLly/Of//zH6lwtU6YM48aNA2DOnDlER0cn2A5Py5Ahg9EuliFcn7R582aio6Px8vIynna96Dnr5eXFe++9B8SluyX1/bd7927SpElD/fr1ady4sdW8okWL8sEHHwCJ97l55513+M9//mOkc6ZPn57x48dTqFAhrl+/zpo1axLdNsB///tfTpw4gbu7O9OnT7c6rh4eHkyfPh17e3uWLVtmpFnJP4OCCBF5o1n+scXExDx3GZbAwMfHJ8FhX3PlymX8w962bVu8+aVLl06y/ITmHzp0iJs3b5IjR454ec8WlgvDHTt2JFn+u+++y++//05QUFCCecWWvh+xsbE8evQoybISc/DgQe7du0e2bNkSzRlv3769Ud+nX+pnyfN+mqUPxdPpMImpVq0aYJ3SZEll6tatGxDXT8bi1KlTXL16lRIlStjUvyQxderUiTftyYvkmzdv2lTe5cuXOXTokNXPkSNHCA0NpWjRovTu3ZtNmzbRrl07q/UuXLjA2bNnsbe3twognmS5YHzy82O5EJ8yZQrbt2+3+jzUrVuX2bNn8+GHH8YrK126dLRs2TLe9AoVKlCgQAGio6ONY2I5R6pXr07evHnjrZMpUyajc3FC51P58uXj9T+ChD8rtu7P//73PyDu3LKzs4u3jWrVqpElSxauX7/O8ePH481PjCWlKSgoKN53kSWVqVmzZsa0Fz1nn/Wd86QuXbpw9OhRJk6cmOB8y7YSG2jigw8+iJcqlSZNGpo0aQLEBelJsbR5nTp1EkwnNJlMmEwmoqOjjfRU+WdQx2oReaO5uroCcOPGjecuIywsDIBixYolukzx4sVZu3atsWxCdXhWHZ8UHBwMxN3hT+zttZa72ufOnUuyfIt06dJx/PhxTpw4wYULF7hw4QJnzpyxWv95n0RY9tvT0zPR3GvLU4Z79+4RGRlJzpw5jXmJXcBbLhaT+ybxGjVqsGLFCvbs2UOnTp2AuBz6DBkyUK1aNQoWLEhYWBh//fUXefLkMS5watSokazynyWh/ciYMaPxu61BWt++fY33RMTGxnL+/Hn8/PwIDAzk6tWrlC1bNsF3dVg+P/b29okOKPDw4UMAzp8/j9lsxs7Oji5durBx40bOnTvHRx99RPr06SlbtixVq1aldu3a5MuXL8GyChcuHG8gAosiRYpw4cIFzp8/DyTvfLJ8VhI6n5783DzJ8ll58jNs6/5Y7rYvXrzYGHL1aZYnEOfOnUv2xbq3tzd58+bl0qVL7Nmzx3hqdPnyZQ4cOEC6dOkSDPae95x91nfO0ywB0549ewgODja2deLECa5evZrodiDx41ikSBHg2d9Pljb/5Zdf+P333xNc5sqVK8kqS14vBREi8kazpAfYMvzl6dOnKVSoEI6OjkDcRS9YXww+zTLPsuyTEuusm9R8y93U+/fvc+jQoSTXT85d+gMHDjBhwgSru6d2dna4ubnh4+OT6AVTciWnjZ5MJ7l7967VxaClrV9UpUqVcHR05MCBA8TExHD9+nVCQ0OpUqUKjo6OeHt7ExYWxv79+2natKlxF75WrVovZfuv8r0SltHAvv76axwdHVmzZg29evViwYIFlClTxmpZy2ciJibmmZ+f2NhY7t27R6ZMmcifPz9r167F39+foKAgbty4wc6dO9m5cyfjx4+nevXq/Oc//4l3If/0SEpPsnwmLHWy5bOS0Pn0rM+K+YlOz7buj6WOyfm+sKRKJoednR1NmjRh9uzZbNy40QgiNmzYgNlspk6dOvGecr7IOfus75ynLV++HH9/fyIiIoxpjo6OFCtWDE9PzySfJjx5Xic0/VlDZVvaPDw8PN6gB0+zpc3l1VMQISJvtOrVqzNp0iSuX7/O6dOnjaE7E3Pv3j1atGiBo6MjM2fOpGrVqsY/w6Qu1i3/3BL7h2ory13dGjVq8N13371QWWfOnKFLly5ERUVRtmxZfH198fT0pHDhwmTKlIlz5869cBBhSxtB0heQLyJjxoyUK1eO3bt388cff3Dx4kUg7k4wxKXX/PTTT+zfv586depw+PBhcubMSfHixV9JfV6V0aNH88cff3Du3DkGDBjAunXrrPLeLcejSJEiiY7gk5hcuXIxduxYRo8ezbFjx9izZw87duzg0KFDbN++nZ49e7Jq1SqrdJ+kLhQtnwlL34PXfT7Zsj/p06fnzp07rFixIsHRrl5E06ZNmT17Nlu2bGHMmDE4OTklmMoEr+ectQgICOCLL74A4tKuqlevTpEiRShYsCBOTk789NNPSQYRiR17SwCYOXPmJLdv+a6bMWOGTcPnSspTnwgReaMVLlwYDw8PAKsOpIlZvXo10dHRxMTEGCkVllzrkydPJrqe5W6hJQf7RVmeoCQ2rCLEDYt45MiRZ3Y2XLx4MVFRUVSsWJFFixbRqlUrSpUqZXQataQKvAhLG50+fTrRtAdLG6VPn/6l9D9IjKWD9J49e4xO1JYgonz58kBcv4i9e/cSHR390lKZXqf06dPz5ZdfYmdnR0REBOPHj7eabxnT/+LFi4kOjRkZGcnBgwet7j5fvnyZ3bt3Yzabsbe3p1SpUvTs2ZOlS5eyYMECAE6cOGGkS1kk1Sn/9OnTwP/3DXmd55Ot+2Npt6TOu3379hESEmLzkKMFCxbEy8uL27dvs2fPHkJDQzl9+jQ5c+akUqVKVsu+jnPWYt68eQD069ePyZMn06hRI0wmk/FU7VnbSijlDP7/+Fq+fxOTnDY/fPgwZ86cMVLw5J9BQYSIvPEsI5msWbPG6MSXkPDwcPz8/ABo1aoV2bJlA/7/onTDhg0JPk6/cuWKUW6VKlVeSp3Lli1LhgwZuHDhQoLvPQAYPnw4H3zwQaIdIi0sL0nz9PRMsJPmihUrjN+f7HuQ1LjyTytTpgyZMmXixo0bib4P4ccffwTingbYUratngwiDh48SMaMGY2AMEeOHHh4eBAeHs5PP/0EJD+V6VXW+XmUKVPGGDln7dq17Nu3z5jn4eFB3rx5efDggfHCsadNnTqVtm3bMmDAAACioqJo3LgxnTt3TnA0rLJlyxqpRE/3Ubl58yZbt26Nt87u3bu5dOkSzs7ORiBnCdq2b99ufDafdPfuXWNEnxc5n55nfyx1CwgISPBdEAcOHKBDhw40atSIv/76y+Y6NW3aFIjrTLxlyxbA+t0QFs97zj4Py7YS6tvw8OFDY0SpxLaT0OhLDx8+NKY/OVJbQixtvmbNmgT7DIWHh9OuXTt8fHw4fPhwkmXJ6/XP+kYUEXkFGjZsSOPGjYmNjaVfv37MmDGDv//+25gfGxtLUFAQbdq04ebNmxQsWNC4sLKs7+7uTmRkJL1797a6M2fpsPngwQO8vLyoXbv2S6lzpkyZjI7BgwYNsgokHj58yPjx49m7dy8ODg507NgxybIsTzU2btxodG6FuI7Z48ePt0p3efKfuCWV5OrVq8+865oxY0Y6d+4MwKhRo6xG1Xn06BETJkzg119/xdHRkf79+ydZ1otyd3fHzc2NI0eOcO7cOcqWLWsMuQoYo13t2LGDdOnSJTr61dNsaY/XZeDAgUawO3r0aKNednZ29O7dG4Dx48dbDS0aExPD3LlzWbVqFfD/b3J3cnKibt26AIwYMcKqE2tUVBRff/010dHR5M2bN8G7y6NGjbK6WD927Biff/45AL169TLubJctWxZvb2+ioqLo2bOnVf+DiIgI+vTpQ0REBPnz509wxKfkep79+fDDD3FxceHgwYMMGzbM6qbBsWPHGDhwIAC1a9c2zitbNGzYECcnJ7Zu3WoEEU+nMsHzn7PPw7KtJ4fhhbgRvnr27GlsP7HtbN++nRkzZhijTt25c4eBAwdy6dIl3N3djWGaE9O4cWMKFizI+fPn6devn9VLO8PCwujduzcxMTEUK1bslb31XZ6P+kSIyL/ChAkTSJcuHStWrMDf3585c+aQN29enJ2dCQ8PN0Y6euedd/jmm2+sxod3cnJi1qxZdOvWjf3791O7dm08PDyIjY3l7NmzmM1mPD09mTZtWoJ3DZ9Xnz59CA0N5ZdffqFz587kzZuXrFmzcv78eeOf/ZgxY575JunOnTuzfv16rl69agREdnZ2hIWFERUVRdGiRbly5Qo3b97k6tWrxsguRYoUwc7OjmvXrlGvXj1y5crFsmXLEt1Or169CA0NJTAwkB49epAnTx6yZ89OaGgo9+7dI3369IwbN+619D+oXr06ixYtAv4/lcnC29ubJUuWAFCxYsUEhwtNiK3t8TpkyZKFQYMGMWzYMEJDQ5k3bx69evUC4P333+fs2bMsXLiQgQMHMmHCBHLmzMnFixeNoWb79OljNSzt4MGD+f333zl79iyNGjUif/78ZMyYkfDwcG7fvk3atGkZP368VVAGcQFW2rRpadWqFR4eHtjZ2XH27Fkg7iLx6UB36tSpdOnShTNnztCoUSM8PDxIkyYNZ8+eJSYmhrx588Y7D5+HrfuTPXt2/Pz86N27N6tWrSIwMBAPDw/u3r1rXEx7enoyYcKE56pP5syZqVWrFr/88gtXr16ldOnSFCpUKN5yz3vOPo/+/fvTv39/du/eTdWqVXF3d+fevXvGqF0VKlRg7969REZGGqN4Pem9997D39+f5cuXkydPHkJDQ7l//z6urq74+fk9c7ABy/dr165d2b59OzVq1MDDw4Po6GjCwsJ4/PgxuXLlSvT9MpJy9CRCRP4VnJyc+PLLL/npp59o2bIlBQoU4Nq1a5w6dQpHR0eqV6/OlClTWL58eYJDSBYuXNgYDcfd3Z2wsDAuX75MyZIlGTZsGD///DO5c+d+qXVOkyYN06dPZ9q0aVSuXJl79+5x+vRp0qZNy3vvvcePP/6YrDu1lhFqmjVrRu7cuY26Fy1alKFDh/Lzzz9TuXJlAKuUFHd3d8aNG2e0VXh4OJGRkYlux8HBgalTpzJt2jQqVapk1Dd79ux8+OGHrF69Ot7LrF6VJ/s5WPpBPPm35ULoWakWT7K1PV6X5s2bGy/S+/bbb61GuBk6dCjz5s2jVq1axMbGcurUKSAuTcjf3z/eU6GsWbOyfPlyunTpgru7O1euXOHs2bNkzpyZVq1asX79+gSf3Fg64DZv3pzIyEj++usvvLy8mDRpElOmTIkXdLi6uhIQEMBnn31G8eLFuXTpEufPn6dw4cJ8/PHHrF69mqJFi75w2zzP/pQrV47169fToUMHcufOTXBwMFeuXMFkMtG/f3+WLVv2zM7CSXnyyUNCTyHg+c/Z51G3bl2WLl1KlSpVyJgxI6dPn+bOnTtUrlwZPz8/fvjhB1xdXblz5068FzVC3JPSUaNG4eLiwunTp3F2dqZNmzasXr3aGOb1WTw8PFi7di29evWiUKFChIWFceHCBQoUKECXLl1YvXo1efLkeaH9lJfPzpxQ0p+IiIjIM+zbt48OHTqQNWtWqz4ZIvLm05MIERERERGxiYIIERERERGxiYIIERERERGxiYIIERERERGxiTpWi4iIiIiITfSeCJHX7MaNe8TGvrrYPXv2TFy/fvfZC8o/io5b6qNjljrpuKU+OmYpw97eDheXjInOVxAh8prFxppfaRBh2YakPjpuqY+OWeqk45b66Jj986hPhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2ERBhIiIiIiI2CRNSldARERE5HWJin6Mq6tzSldDbKRjFt/DRzHcuf0gxbavIEJERET+NZwcHfD5dG1KV0Pkha2f6sudFNy+0plERERERMQmCiJERERERMQmCiJERERERMQmCiJERERERMQmCiJERERERMQmCiJERERERMQmCiJERERERMQmCiIkHk9PT9aujRtDe8iQIXTq1Om51k3Ik+Xt27cPT09Prly5AkCtWrXw9/cHICYmhoULFz5X/ROzYsUKGjRoQMmSJWnYsCErV660mh8VFcXEiROpXLkyXl5efPTRR4SHhxvz7927R9GiRfH09LT6SWp/RURERN5EetmcxLNr1y4yZ878SsoePnw4sbGxCc5bsWIF6dKlA2Djxo1MmDDBpgAmKZs3b2b06NGMHTuWcuXKsXfvXkaOHEnWrFmpXbs2AF988QW7d+9mypQpZM+enXHjxtG7d2/WrVuHnZ0dwcHBAGzZssWoJ/DK2kpERETkn0pBhMTj6ur6ysp2dk78tfXZsmUzfjebzS91uzdu3KB///40b94cgPz58/Pjjz+yZ88eateuTXh4OKtWrWLhwoVUrFgRgNGjR9O1a1cuXDwo8AsAACAASURBVLiAm5sbZ86cIXfu3OTPn/+l1k1EREQktVE6Uyp16tQpunfvTtmyZSlRogT16tVjzZo1rFq1itKlS3P//n1j2aioKMqXL8/PP/8MxN2Vb9GiBe+88w6lSpWidevWHD161Fg+qRSdZ60LEBwcTMuWLSlRogS+vr789ttvxryk0qMs6Uz79u3j888/N+oSEBBAhQoVmDt3rtXyM2bMwNfXN1nt1bp1az766CMgLlVq06ZNhISEULlyZSDu6Uu2bNmMAAKgUKFCbN26FTc3NwDOnj1LoUKFkrU9ERERkTeZgohU6P79+3Tp0oW33nqLgIAA1q5dS7ly5RgxYgTe3t7Y2dnx66+/Gsvv2LGDhw8fUr9+fY4ePconn3xC8+bN2bhxI4sXLwZg5MiRz9xuctddtGgRrVu3Zu3atZQpU4ZevXoZ/R6Sw8vLi1GjRgFxF/dNmjShcePGrFu3zljGbDazbt06mjVrluxyAY4dO8Y777zDJ598QpMmTahRowYAYWFh5M+fn/Xr19OkSROqVKlC//79rep99uxZ7t+/T/v27alUqRKtW7dm+/btNm1fRERE5E2gdKZU6MGDB3Tq1In27duTPn16AHr06MHPP//M5cuXee+999iwYQONGzcGYN26ddSpUwdnZ2ccHR354osvaN26NQD58uWjZcuWjBgx4pnbTe667du3p0WLFgCMGDGCnTt3smzZMgYMGJCs/XNyciJTpkzA/6dWNW/enMWLF3PmzBlMJhO///47ERERNGnSJFllWuTLl4+VK1dy4sQJvvzyS3LkyMGAAQO4e/cuoaGhLFiwgKFDh+Lk5MTXX39Nx44dWbduHWnTpuXs2bNkypSJESNG4OLiwoYNG+jRowcLFiyweoLxLNmzZ7Kpzs/D1TXxtDH559JxS310zEQkJaXkd5CCiFQoe/bsfPjhh6xZs4aTJ08SFhbGqVOnAHj8+DHNmjWje/fu3Lp1CwcHB7Zt24afnx8AxYoVw9nZme+++47g4GDOnz/PyZMnE+3s/KTkruvl5WX8bm9vT/HixTl79uwL7XPx4sWNNKvPPvuMdevWUbVqVat+FMnh4uKCi4sLxYoV4/r168yaNYv+/fuTJk0a7ty5w4wZM4w+DzNnzqRKlSps376dunXr8t///hfACNzefvttzp49yw8//GBTEHH9+l1iY19un48nubo6c+3anVdWvrwaOm6pj45Z6qTAT94kr/I7yN7eLskbn0pnSoUiIiLw8fFh7dq15M2bl06dOjF//nxjvre3Nzly5CAoKIigoCAyZ85MlSpVANizZw8NGjTg5MmTlCxZkoEDBzJ8+PBkbTe56zo4OFj9bTabcXJyeoE9jtO8eXMCAwOJiopi06ZNRifp5Ni/fz8nT560mubp6cnDhw+5desWOXPmJEOGDFadprNnz07WrFm5ePEiEBc8WAIIC5PJxOXLl19gr0RERERSHwURqVBgYCD37t3jxx9/pEePHtSqVYsbN24AcRfs9vb2+Pr6snnzZjZt2oSPj49xYf/DDz9QuXJlpk+fTocOHahQoQKXLl0y1k1Kctc9ceKE8Xt0dDTHjh3Dw8PDpn20s7OLN83Hx4dr164xf/587O3tqV69erLL+/7775k+fbrVtKNHj5I9e3ZcXFwoW7Ys9+/fJyQkxJh/7do1bty4QYECBYiMjKRs2bIEBQVZlfHnn3/avG8iIiIiqZ3SmVKhXLlycffuXTZv3kypUqU4deoUX375JRA3EhNA06ZNmT9/PmazmUGDBlmtu23bNo4cOUL27NnZtm0bP/zwg7Fu2rRpk9xuctadO3cuBQoUoFixYnz//ffcvXuXDz/80KZ9zJgxIxDXEbpQoUJkzJiR7NmzU61aNWbPnk3Lli1terrRsWNHunXrxrx586hTpw779+9n7ty5DBkyBDs7O8qVK0fZsmUZOHAgo0ePJn369IwfPx53d3eqVauGk5MTXl5eTJo0CWdnZ3LmzMmKFSs4fPgwq1atsmnfRERERFI7PYlIhRo0aEDHjh0ZN24cjRo1YsaMGfTu3Rs3NzeOHTsGgLu7O8WLF8fDwwNPT09j3f79+1O8eHG6du1KixYtCAoKYuLEiQDGuolJ7rq9e/fm+++/x9fXl3PnzjFv3jyb+y54e3tTvnx52rRpQ0BAgDG9adOmPHz4kKZNm9pUXpUqVZg5cyZr167Fx8eHuXPnMmLECNq0aQPEPfmYPXs2JUqUoEePHrRp0wZnZ2cWLFhgBCtTp06latWqfP755/j6+nLo0CEWLFhAkSJFbKqLiIiISGpnZ37Zb/USeYWWLFlCQECA1XCvqY06VktCdNxSHx2z1MnV1RmfTxN+F5JIarJ+qm+KdqxWOpOkCn/++SchISF8++239O/fP6WrIyIiIvKvpiBCUoVDhw4xdepU6tevz/vvv29Mj4iIoH79+kmu27BhQ6PPiIiIiIi8OAURkip06NCBDh06xJueI0cO1qxZk+S6lk7aIiIiIvJyKIiQVM3BwQE3N7eUroaIiIjIv4pGZxIREREREZsoiBAREREREZsonUlERET+NaKiH7N+qm9KV0PkhT18FJOi21cQISIiIv8aTo4Oer9HKqN3svwzKZ1JRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERsoiBCRERERERskialKyAiIiLyukRFP8bV1TmlqyE2epFj9vBRDHduP3iJtRFQECEiIiL/Ik6ODvh8ujalqyGv0fqpvtxJ6Uq8gZTOJCIiIiIiNlEQISIiIiIiNlEQISIiIiIiNlEQISIiIiIiNlEQISIiIiIiNlEQISIiIiIiNlEQISIiIiIiNnmlQcS+ffvw9PTkypUrL6U8T09P1q5N3tjOZrOZNWvWcP369RfaZvHixVm1alWylr148SKenp4cPHjwhbaZlODgYLZt25bs5f38/HjvvfcA2+u3bds2goODn2vdf4MHDx7w448/pnQ1RERERF67N/ZJxKFDhxg8eDAPHrxZbyjs3bs3x44de651c+fOza5duyhVqtQzl42IiKBHjx5GEGbLuv8WCxcuZN68eSldDREREZHX7o19Y7XZbE7pKrwSL7JfDg4OuLq6Ptd2bFn33+JN/YyJiIiIPEuynkTcvXuXMWPGUKlSJby8vOjatSuhoaHExsbi7+9P3bp1KVGiBGXLlqVfv378/fffCZYTHR3NtGnTqF69OqVLl6Z169YcOXIEgFWrVlG8eHGr5ROaZvHo0SMmTJhAzZo1KVGiBBUqVGDo0KE8ePCAixcv0rZtWwBq166Nn58fAGfOnKFr166UKlWKatWqMWrUKG7fvm2UefPmTT799FPKlClDlSpVWL16dXKaJ55Dhw7RvHlzSpQoQYMGDdi6dasxLyYmhu+//566detSsmRJfHx82LhxozE/MjKSvn37Ur58eUqXLk2nTp04efIkAO3bt+fChQt888031KpVy+Z6PZ2SdOTIEVq3bk3p0qXx9vbms88+4+bNmwBUr14dgA4dOjBkyJB467Zv356pU6fy2Wef8e6771K+fHnGjh1LTEyMsb3t27fTpEkTSpYsSfPmzVm4cCGenp7G/FWrVtGgQQNKlChBzZo1mTlzJrGxscnen8jISD799FPKly9PuXLl6N+/P1evXjXmr1ixgsaNG/POO+/w3nvvsWTJEqttP+vz5unpyYoVK2jbti0lS5akRo0a/PTTT8ayM2bM4NKlS3h6erJv375k11tEREQktUtWEPHJJ5+wZ88epk6dysqVK8mQIQPdunVj/vz5LFq0iBEjRrB582amTp3K77//zuzZsxMsZ9y4caxcuZKRI0eydu1aihUrRrdu3RINOpIyadIktm7dyldffcUvv/zCqFGjCAwM5KeffiJ37tz4+/sD8PPPP9OlSxciIiJo3749JpOJ1atXM3PmTIKDg+nbt69R5scff8yZM2eYO3cu/v7+LFmyhMePH9tctyVLljBgwAA2bNhAkSJFGDhwoJFWNXHiRObNm8fAgQNZt24djRo1YuDAgWzevBmAMWPGEBMTw7Jly1i1ahUZM2akX79+QFz/hrx589KlSxdWrFhhc72e9PjxY3r16kXFihXZsGEDc+bM4dixY0yaNAnACKD8/PwYPnx4gmUsWLAAd3d31qxZw7Bhw1i2bBmBgYEAnDhxgl69elGrVi3WrVtHmzZtmDZtmrHuqVOnGDVqFAMGDCAoKIhhw4Yxb9481q1bl6z6x8TE0KVLFy5evMicOXNYsmQJkZGR9O/f36jbf/7zHzp27Mi6devo2rUrkydPZv78+Ta105QpU2jbti0bN27kvffeY/To0Vy6dImGDRvSvXt3cuXKxa5du/Dy8rKpXBEREZHU7JnpTKGhoezcuZNFixbh7e0NwNixY/nuu+/IkSMHkyZNolq1agDkzZuXqlWrcubMmXjl3L17l5UrVzJ27Fjq1KkDwPDhw0mXLp1x99sWpUqVolGjRpQpUwaAfPnysXTpUs6cOYODgwNZsmQBIFu2bGTMmJE5c+aQL18+Bg8ebJQxbdo0qlWrxuHDh8mcOTN79+7lxx9/NC4IJ02aRKNGjWyuW9++falatSoAPXv2ZPPmzYSGhuLm5sayZcsYNWoU9evXN+afOnWKOXPmUK9ePc6fP4+npyf58uUjbdq0jB07luDgYGJjY8maNSsODg5kyJCBbNmy2VyvJ925c4cbN26QI0cO8ubNS758+Zg1axbR0dFGuwFkyZIFZ2dnbt26Fa+MYsWK0bt3bwAKFCjAwoULOXLkCL6+vvzwww94eXnxySefAODu7k5oaKhxER8eHo6dnR158uQxfhYsWECuXLmSVf89e/Zw+vRptmzZQv78+YG4IHXVqlU8fPiQuXPn0rFjR1q2bAlAwYIFCQ8PZ+7cuXTu3DnZ7dSiRQsaNmwIQP/+/Vm0aBFHjx6lQYMGZMiQ4bnSvLJnz2TT8s/D1dX5lW9DXj4dt9RHx0wkddC5+vI9M4iwBATvvPOOMc3FxYUhQ4YAcPjwYaZNm8a5c+cIDQ0lJCSEsmXLxivn3LlzREdHW5WTJk0a46LektaUXL6+vuzatYvJkycTFhZGcHAwFy5cIF++fAkuf/LkSU6ePJngHeOQkBAyZswIwNtvv21M9/DwMKbbomDBgsbvmTNnBuDhw4eEhoYSExMTrw7lypXj119/BeI6Tg8ePJigoCDKlStHtWrV8PHxwd7+5faBz5o1K507d2bs2LH4+flRuXJlatasSb169ZJdxpP7CeDs7GwEISdOnDCCS4syZcoYQUTVqlUpVaoULVq0wM3NjSpVqlC/fn3y5MmTrG2fOXOGbNmyGQEEQKFChRg0aBDXr18nMjIywXaeO3euTSN2PbmPzs5xX0CWfXxe16/fJTb21fWncHV15tq1O6+sfHk1dNxSHx2z1EkXk/9OOldtZ29vl+SNz2demaZJk3ic4e/vT5cuXbh79y5Vq1Zl0qRJNGnSJMFlHR0dk1Fda0mlEg0fPpxBgwZhNpupW7cus2bNoly5coku7+joSOXKlVmzZo3VT1BQEPXq1cPOzg6I31n2eeqd0AW/2Wwmbdq0CS7/+PFjo53r16/Pzp07GTduHK6urvj7+9O4cWMiIyNtrsezDB48mP/973/069eP+/fvM3ToULp27Zrs9Z2cnOJNs7Sfg4NDkv0b0qVLx5IlS1ixYgW+vr6cOHGC9u3b88033yRr20l9LpNq56TWTejzltQ+ioiIiPxbPTOIKFy4MAB//vmnMe3u3btUrFiRGTNm0L9/f0aOHEnLli15++23OX/+fIIXWQUKFCBNmjRW5cTGxlKvXj0CAwNxdHTk8ePHVkOyhoWFJVinGzdusGLFCsaOHcvgwYNp2rQp7u7uhIeHG9u2BAUWHh4ehISEkCdPHtzc3HBzc8Pe3p7x48dz+fJlihYtCsQ9WbG4ePHic6VaJcbNzQ1HR0cOHTpkNf3333/Hw8ODmJgYJk2axKVLl/Dx8WHChAkEBgYSGRnJ/v37E9yv53XhwgW++OILXF1dadu2LbNnz2bSpEns27eP69evv/B2PD09OXr0qNW0P/74w/j9t99+Y9asWZQsWZI+ffqwfPly2rRpY9XJPCmFCxfm77//5tKlS8a0kJAQKlSowM2bN8mVK1eC7ezq6kqWLFls+rwl5mUdCxEREZHU5pnpTO7u7tSuXZsxY8YwevRoXFxcmD59Os7OzmTNmpVdu3ZRrVo1YmNjWbZsGYcPH07wXQIZMmTgww8/ZNq0abi4uODm5sbChQu5desW3t7ePHjwADs7O2bOnEnbtm05evRooqMjZcqUiUyZMvG///2PokWLcvfuXb777jsuX75MVFQUgJGGdPLkSbJkyUK7du348ccfGTJkCB999BFRUVGMHTuW27dvU7BgQZycnIz9HDduHM7OzowbN+6lphGlS5eOzp07M336dLJmzUrRokUJCgoiKCiIr7/+mjRp0nD8+HEOHjzIiBEjyJYtG+vXr8fR0dFIs8qYMSNhYWFERESQM2fO566Li4sLmzZtIioqim7dugGwadMmChQogIuLC/fv3wfg9OnTmEwmm8vv3LkzzZo1w8/PDx8fH44cOcLixYuN+Y6OjsyaNQtnZ2dq1qxJZGQk+/bto3Tp0skqv1KlShQvXpzBgwczZMgQ0qRJw9ixYylcuDD58uWjV69eTJgwgQIFClC+fHn27dvHkiVL6N+/P3Z2dpQuXTrZn7fEZMyYkVu3bhEaGkrevHkTfQIiIiIi8qZJ1hXyxIkTKVmyJL1796ZVq1ZER0czd+5cJk+ezO3bt2nWrBmdO3c2hkgNDg5O8CVvn332GQ0aNGDYsGE0bdqUkJAQ5s2bR44cOcifPz9jxoxh8+bNNGjQgICAAD7//PME6+Po6Mj06dM5fvw4jRs3pnfv3mTJkoUuXboYTzo8PDyoV68eAwYMYObMmbi6urJgwQIiIyNp1aoV3bp1I3fu3CxYsMBIWZkyZQre3t706dOHTp06UbNmzZf+boT+/fvzwQcfMH78eGN416+//poGDRoAMHXqVPLly0ePHj1o2LAhW7ZsYdasWbi5uQHQqVMnduzYQZMmTWwaDvVpzs7OfP/994SHh9OqVSvef/99oqKimDNnDvb29mTKlIn27dszZcoURowYYXP5RYsWZcaMGQQGBtK4cWN+/PFHWrdubaSHlS9fnvHjxxMQEECjRo3o06cP5cqVS3QkqKfZ29sze/ZsXFxcaN++PR07diR37tzMnDkTgNatWzNgwAC+++47GjVqxIIFCxgyZIgRMNnyeUtMvXr1yJs3L02aNLHpLeIiIiIiqZ2dWQne8gocPXoUJycnI00MYM6cOQQEBLBly5YUrFnKU8dqSYiOW+qjY5Y6ubo64/Pp2pSuhrxG66f66lx9Di/csVrkeZw4cYKOHTuyY8cO/vrrL7Zt28bChQsT7XgvIiIiIqnHM/tESJyePXs+863EBw8exMHB4bXUJyIiwnjXRGIaNmzIl19++Vrq87RWrVpx9epVRo8ezdWrV3nrrbdo27YtPXr0eOa6/7S2FhERERFrSmdKpoiICB4+fJjkMpZ+C6/D48ePuXjxYpLLZMyYkRw5crymGr08/7S2ftmUziQJ0XFLfXTMUielM/37KJ3p+TwrnUlPIpLpRUZCehUcHBxS9YV0Uv5pbS0iIiIi1tQnQkREREREbKIgQkREREREbKIgQkREREREbKI+ESIiIvKvERX9mPVTfVO6GvIaPXwUk9JVeCMpiBAREZF/DSdHB43Uk8poJLR/JqUziYiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITRREiIiIiIiITdKkdAVERERSG+fM6QFwdXVO4ZqIraKiH6d0FUTeCAoiREREbJQubRp8Pl2b0tWQ57B+qm9KV0HkjaB0JhERERERsYmCCBERERERsYmCCBERERERsYmCCBERERERsYmCCBERERERsYmCCBERERERsYmCCBERERERsYmCiH+Yixcv4unpycGDB1O6Kv9627ZtIzg4GNBxEREREXmSgoh/mNy5c7Nr1y5KlSqV0lX5V4uIiKBHjx5cv349pasiIiIi8o+jN1b/wzg4OODq6prS1fjXM5vNKV0FERERkX8sPYl4QZ6ensyYMYNq1apRrVo1rl27xq1btxg6dCje3t6UL1+e7t27ExoaCsC+ffvw9PQkPDzcqpxGjRoxbdq0eGkzsbGxfPvtt9SsWZPSpUvTokULtm/fDsCpU6fw9PQ0Um4A2rZtS926dY2/r1+/TtGiRTlx4gSRkZH07duX8uXLU7p0aTp16sTJkyeTva9Dhgxh8ODBjBw5Ei8vL6pUqcI333xjdcF95swZunbtSqlSpahWrRqjRo3i9u3bxvxatWoxadIk6tWrR4UKFTh+/Pgzt+vn50fXrl2ZOXMmFStWxMvLi9GjR/PXX3/RvXt3SpUqRb169dixY4exzoMHD5gyZQq1atWiZMmStGzZkj179ljty7Bhwxg3bhze3t54eXnx6aefcvfuXQCqV68OQIcOHRgyZIix3qFDh2jevDklSpSgQYMGbN26NdntJyIiIvKm0JOIl+Dnn3/m+++/Jzo6muzZs9OmTRsyZcrE3LlzSZ8+PYsXL+bDDz9k06ZNlC9fnrx587Jx40Z69OgBwMmTJwkODuabb76JV/bUqVP573//y9ixYylQoAA7d+6kb9++zJ07F29vb/LkycPu3bvx8PDg/v37/PHHH0RHRxMREUHOnDnZuXMnuXLlonjx4vTr14+YmBiWLVuGnZ0dU6dOpV+/fmzZsiXZ+xoYGEjdunX5+eefOXXqFCNHjsTR0ZEePXoQERFB+/btad68OcOHD+f27dtMnjyZvn37smjRIqOMZcuWMWfOHNKmTUuxYsWStd19+/bh4uLC0qVLOXToEMOGDWPLli18/vnnDBkyhK+++oqhQ4fy22+/ATBgwADOnj3LmDFjyJMnD8uWLaNbt24sXbrUSBVbt24dLVu2ZPny5Vy4cIFPPvmEwoUL07t3b1avXk2zZs3w8/OjYsWK3Lp1C4AlS5bw5Zdfkj9/fr7++msGDhzI7t27SZ8+fbLbMHv2TMle9nm5ujq/8m3Iy6fjJvJ66FxLfXTM/nkURLwEzZo1My6Gd+/ezbFjx9i/fz+ZMsVdLI4ZM4a9e/cSEBBAjx498PX1ZcOGDUYQsW7dOkqXLo27uzsXL140yr137x6LFi3Cz8+PqlWrAuDm5sapU6eYM2cO3t7eVK9end27d9OhQwcOHDhAwYIFefToEfv378fHx4cdO3ZQs2ZNAM6fP4+npyf58uUjbdq0jB07luDgYGJjY7G3T95DKRcXFyZOnIiTkxMeHh6EhISwePFiPvroI5YuXUq+fPkYPHiwsfy0adOoVq0ahw8fxsvLC4h7GlG+fHmb23ns2LFkyJABd3d3vvrqKypXrkyTJk0AaNOmDVu3buXvv//m77//ZuvWrcybN48qVaoAMGLECI4ePcq8efOYOXMmAFmzZmXEiBE4ODjg7u5OpUqVOHLkCADZsmUDIEuWLDg7OxtBRN++fY1j0bNnTzZv3kxoaChvv/12svfj+vW7xMa+unQpV1dnrl2788rKl1dDxy110QVN6qZzLXXR92PKsLe3S/LGp4KIlyB//vzG7ydOnODx48fGhabFo0ePCAkJAaBp06b4+/tz9uxZChcuTGBgID179oxXbkhICFFRUXz88cdWF/nR0dHkyJEDgJo1azJgwABiYmLYu3cv3t7e3Lt3j/3799OwYUN+++03pkyZAkDv3r0ZPHgwQUFBlCtXjmrVquHj45PsAAKgVKlSODk5GX+XLl0af39/bty4wcmTJzl58qQRLDy9L5bpT7ZXcrm6upIhQwbj7wwZMliVky5dOgCioqI4c+YMQLx6lClThm3bthl/FyhQAAcHB+NvZ2dnIiIikqxHwYIFjd8zZ84MwMOHD23bGREREZFUTkHES5A2bVrjd0dHR7JmzUpAQEC85SwXwW5ubrz77rts2LCBSpUqcePGDRo1ahRvecvFup+fH25ublbzLBf+FSpUIDY2liNHjrBnzx769OnDvXv3mD17tpHa5O3tDUD9+vWpVKkS27dvZ/fu3fj7+/Pdd9+xdu1aIyh5ljRprD8yjx8/Nurj6OhI5cqVGTFiRLz1LHf2wbq9kuvp7Vq2mRBLQPG02NhYq3KeDIYsntWhOqFtqhO2iIiI/NuoY/VLVqRIEW7evAnEBQtubm7ky5eP6dOnc+DAAWO5Zs2aERQUxKZNm6hZsyZZsmSJV5abmxuOjo5EREQYZbm5ubF+/XpWrVoFxF2QV6hQgU2bNnH27FnKly9PxYoVCQsLIyAggCpVquDk5ERMTAyTJk3i0qVL+Pj4MGHCBAIDA4mMjGT//v3JfresRgAAIABJREFU3r8TJ04QGxtr/P3HH3+QJ08esmbNaqQ35cmTx6irvb0948eP5/Lly8/bpDbz8PAA4jpBP+nQoUPGvGexs7N76fUSEREReVMoiHjJKlasSOnSpfnkk084ePAg586dY8SIEfz666+YTCZjuQYNGnDp0iXWrVtH06ZNEywrffr0dOrUialTp7Jx40bCw8NZtGgRs2bNskrlqVmzJgEBAZhMJrJkyULOnDlxd3dn7dq11KpVC4i7k3/8+HFGjRrFH3/8QXh4OD/99BOOjo425fOfP3+eL7/8ktDQUNauXcuiRYvo2rUrAO3ateP27dsMGTKE06dPc+zYMQYOHEhYWJhVGtCrVqBAARo1asTo0aPZtWsXISEhTJgwgePHj9OhQ4dklZExY0YATp8+zY0bN15ldUVERERSHQURL5mdnR2zZs3Cw8OD3r1706xZM8LCwpg3b57VXXBnZ2fq1KlD2rRpqVatWqLlffLJJ7Rp04bJkyfToEEDli1bxtixY/m/9u48PKc7///4607ctkgZGrWnC+5WJST21hI01BbbWIZSY50a1WJKhlStNWmlVFRRhmopmiJiGdNqq9WxRcwQopWklqh9KfGLrOf3hyv3110pOdxxZ3k+rst13fc55/6c9zmfnDivnM+5T48ePezLBAQEKC0tTU2bNrVPa9asmSwWiwICAuzTwsLCVK1aNY0YMUIdO3bUV199pQ8++OCOoVJ34+/vr5SUFPXo0UPvv/++xowZo5deeknSrfsWli1bposXL6p3794aOnSoKleurGXLluU4dCgvTZ8+XS1atNAbb7yhHj166H//+5+WLl2a4/0aOSlTpowGDBig2bNn5zg8CwAAoCizGAzoRi4FBwfr7NmzWr58uatLKdD4dibkhH4rWLy8PNVlXKSry8B9iArryrFWwPD70TXu9e1MXIkAAAAAYArfzgQdOHBAgwcPvusyQ4cOdfp6z507pxdffPGuy3Ts2FEzZ850+roBAABw/wgRUJ06dbRhw4a7LlO2bFmVK1fOqet99NFH77ne7BucAQAAkH8QIqASJUqYurnaWdzd3V2yXgAAADwY7okAAAAAYAohAgAAAIApDGcCAMCkm6kZigrr6uoycB/S0jNdXQJQKBAiAAAw6fq1FJXku+sLJC8vT1eXABQKDGcCAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYEoxVxcAAEBh4flIKZUswX+t+VlaeqarSwAKBX7TAQDgJCVLFFOXcZGuLgN3ERXW1dUlAIUCw5kAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphIgCKDg4WIMGDXJ1GTnasGGDmjdvLl9fX3355ZcuqWHAgAGaNGmSS9YNAABQFPCwOThVaGioAgICNGrUKJUvX94lNYSHh6tYMX60AQAA8gpnWnCqa9euqWHDhqpatarLaihXrpzL1g0AAFAUMJzpAdlsNkVERKh///7y8fFRQECA1qxZY5+f09Cj26ft2bNHPj4+2rZtm9q3by9fX18NGjRIZ8+e1bRp09SgQQM999xzWrx4sUMbGRkZmjx5svz8/PT8888rLCxMmZmZ9vk//fSThgwZonr16qlly5aaPHmyrl27Zp/fpk0bhYaGqn379mratKkOHz6cq+3dvn27evTooXr16ikgIEDh4eHKyMhQUlKSbDabMjIyNHHiRLVp0yZX7QUHB+v111/XgAED1KBBA61atUqStHbtWvv+6NKli9avXy9JMgxDbdq0UXh4uEM7S5YsUUBAgLKysu4YzhQdHa2+ffvK19dXbdu2VVhYmFJTUyVJ3bt31zvvvGNfNiIiQjabTfv377dPGz58uGbMmCFJWrx4sdq2bau6deuqffv2WrlyZa62EwAAoDAhRDjB7Nmz1b9/f23ZskWBgYGaMmWKTp8+nevPp6ena/HixZo9e7Y+/vhjHTlyREFBQSpdurQiIiLUp08fhYWFKT4+3v6Zffv26ebNm4qIiFBISIhWrVql5cuXS5LOnTunAQMGqHbt2lq/fr3mzZun+Ph4jRo1ymG9n332maZPn65FixbpmWeeuWed//73v/Xqq6+qQ4cOioyM1Pjx4/XJJ59o1qxZqly5snbu3Cl3d3dNnDhRERERud7+rVu3KjAwUGvXrlVgYKBWrVqlOXPmaMyYMdq0aZOGDh2qmTNnav369bJYLOrWrZs2bdrk0EZUVJSCgoLk5ub4Ix0XF6chQ4YoMDBQUVFRmjFjhr755htNmTJFkhQQEKBdu3bZl9+1a5csFov27t0rSUpNTdWePXvUtm1bff3111q6dKlmzJihbdu2aejQoZo+fbr27duX620FAAAoDBjO5AQ9e/ZUx44dJUmjR4/WihUrdPDgwVwP6TEMQ2PHjpWPj48kqWnTpoqNjdW4ceNksVg0YsQILViwQMeOHVPNmjUlSZUqVdKMGTNUvHhxPfXUU0pISNDHH3+sIUOGaNWqVapWrZomTJhgX8ecOXPUsmVLHThwQH5+fpJuXY1o3Lhxrrdz8eLF6tChg4YNGyZJevzxx3X16lXNnDlTr7/+ury8vCRJnp6epu6H8PLy0sCBA+3vFy5cqFGjRunFF1+UJNWoUUO//PKLFi5cqO7du6tbt2764IMPdPjwYT377LM6duyYjh49qjlz5tzR9tKlS9WqVSsNGTJEkuTt7a2pU6eqX79+GjNmjFq3bq0PP/xQly9fVvny5bV79261adNG+/bt0yuvvKK9e/eqePHiatiwoVauXCmr1aoqVaqoatWq6tWrl6pVq6Ynn3wy19sqSRUqlDG1/P3w8vLM83XA+ei3goc+K5jot4KHPst/CBFO8Pjjj9tfe3re+iFPT0831UaNGjXsr0uXLq1q1arJYrFIkkqWLClJSktLsy/j4+Oj4sWLO7wPDw/XtWvXFBcXp7i4OHtYuF1CQoJ9evXq1U3VeOzYMXXr1s1hWqNGjZSRkaHExETVq1fPVHvZqlWrZn99+fJlnTt3TqGhoZo9e7Z9ekZGhjIzM5WWlqYaNWqoQYMG2rRpk5599llFRUXJ19c3x5P5uLg4nThxwmFfGIYh6da+aNq0qSpUqKDdu3erZs2aSk1N1YABAzRy5Eilp6drx44datGihaxWq4KCghQREaF27dqpdu3aat68uTp37qwKFSqY2t5Ll5KVlWWY3U255uXlqQsXrudZ+8gb9FvBk1OfcaJTMHCsFSz8fnQNNzfLXf/wSYhwgttP5rNln6jmJCMj445pVqvV4f1vh+X81m/nZ2VlyWKxyGq1ymq16vnnn1dISMgdn7v9CkGJEiXuuo7fyg4zt8u+D+NBvg3p9naz98Obb76Z41WS7PV0795d8+fP1xtvvKFNmzbZrzT8ltVqVbdu3exXT27n5eUli8Wili1b6ocfftCFCxfUqFEjNWjQQFlZWTp06JC+//57vfrqq5Ju7buNGzdq//792rlzp3bs2KF//vOfmjVrlnr06HHf2w8AAFDQcE9EHrNarUpOTnaYduLEiQdu9+jRow5BJSYmRlWrVlWpUqVUs2ZNJSQkqEqVKvL29pa3t7fc3Nz09ttv68yZM/e9zqeeekoxMTEO0/bv3y+r1epwJeVBeHp66rHHHlNSUpK9dm9vb/3nP//R0qVL7eGpQ4cOunr1qlauXKnz58+rU6dOObaXvS9ub+vy5csKDQ3VjRs3JEmtW7fWf/7zH+3du1dNmzZV8eLF5e/vr7Vr1yopKUktW7aUJG3ZskWfffaZGjVqpDFjxmjDhg1q2bKltm7d6pRtBwAAKCgIEXmsfv36OnLkiDZv3qxTp05p/vz5+umnnx643VOnTumtt95SfHy8NmzYoE8++UR/+ctfJEkvvfSSrl27puDgYP344486dOiQxo4dq+PHjzsMvTLrlVde0datW/XRRx/p+PHj2rp1q+bNm6devXrZh3E5wyuvvKLly5drzZo1OnnypKKiovSPf/zDfs+FJJUpU0YvvPCC5syZo9atW//u17oOGzZMBw8e1KxZs5SQkKC9e/dqwoQJun79ur29559/XhcuXNB3332nJk2aSJKaNWumyMhINWzYUI888oikW8PJQkNDtXHjRp0+fVq7du3SkSNH7nsYFwAAQEHFcKY8FhQUpLi4OE2dOlUZGRnq0KGDXn75ZR08ePCB2g0MDFRqaqp69uypsmXLavTo0erVq5ekW8N0li1bptmzZ6t3794qWbKkmjRpovfffz/HoVe51aJFC4WGhmrRokV6//33VbFiRQ0cOFAjRox4oG35rT/96U9KS0vT0qVLNX36dD322GMaOXKkhg8f7rBc9rc0de3a9Xfbstls9npXrVolT09PtW7dWuPHj7cv4+HhocaNG+vIkSOy2WySbt3cnpWV5fBVtd26ddOlS5cUHh6uM2fOqEKFCurRo4c9vAEAABQVFuNug/cBOB03ViMn9FvB83s3VncZF+miipAbUWFdOdYKGH4/usa9bqxmOBMAAAAAUxjOBJ07d87+TIbf07FjR82cOTPXbR44cECDBw++6zJDhw7VX//611y3CQAAgPyBEAE9+uij2rBhw12X8fDwMNVmnTp17tlm2bJlTbUJAACA/IEQAbm7u8vb29upbZYoUcLpbQIAACB/4J4IAAAAAKYQIgAAAACYwnAmAACc5GZqhqLCfv/ZNXC9tPRMV5cAFAqECAAAnOT6tRTxbfb5m5eXp6tLAAoFhjMBAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMKWYqwsAAAB4WNLSM+Xl5enqMmDS3frsZmqGrl9LeYjVQCJEAACAIqS41V1dxkW6ugw4UVRYV113dRFFEMOZAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYSIQmLdunWqU6dOrpcPDg7WoEGD8q4gF2nTpo0WLFiQq2WTkpJks9kUHR39u8tcvXpVERERzioPAACgUOBhc4VEx44d1bJly1wvP2nSJGVlZeVhRa4RERGhkiVLOq292bNn68SJE/rjH//otDYBAAAKOkJEIVGyZElTJ8+enr//+PiCrHz58k5tzzAMp7YHAABQGDCcKZ+y2Wz6/PPP1bdvX/n4+Khjx47673//q1WrVqlVq1by9/fX2LFjlZaWJunO4Uw2m00RERHq37+/fHx8FBAQoDVr1tjn3z6cac+ePfLx8dG2bdvUvn17+fr6atCgQTp79qymTZumBg0a6LnnntPixYtz/Lyz2ryX7Da/+uorvfjii6pbt666devmMBzpt8OZ1q9fb1//wIEDNX/+fLVp08ah3ZiYGPXo0UN169ZVhw4d9M0330iSwsPDFRERob1798pmsykpKUmJiYkaPHiw/P391aBBA40cOVJJSUm53gYAAIDCgBCRj7333nsaPny4IiMjVaZMGQ0fPlzbt2/XRx99pFmzZunf//73Xcfrz549W/3799eWLVsUGBioKVOm6PTp0zkum56ersWLF2v27Nn6+OOPdeTIEQUFBal06dKKiIhQnz59FBYWpvj4+FzXn1dtzp8/XzNmzFBkZKQ8PT01ceLEHK8YbN++XSEhIerfv78iIyPVvHlzffDBB3cs9+mnn2rMmDHatGmTatWqpbFjxyolJUWDBw9W586d5efnp507d6py5cr629/+pipVqmj9+vVauXKlrly5ookTJ+a6fgAAgMKA4Uz5WO/eve1/Ne/ataumTZumKVOmqHr16qpdu7aWLFmiY8eO/e7ne/bsqY4dO0qSRo8erRUrVujgwYOqWrXqHcsahqGxY8fKx8dHktS0aVPFxsZq3LhxslgsGjFihBYsWKBjx46pZs2auao/r9ocM2aMGjZsKEl6+eWX9de//lVXrly5YyjTsmXL1KlTJw0cOFCSNHz4cMXGxio2NtZhuVGjRqlFixaSpL/85S/atm2bEhMT9eyzz6pkyZKyWq3y8vKSJJ04cULPP/+8qlatqmLFiundd9/VxYsXc1V7tgoVypha/n54eRXO4WqFHf1W8NBnQP7AsfjwESLysRo1athflypVSm5ubqpWrZp9WsmSJe3DmXLy+OOP219n3wORnp6eq/WVLl1a1apVk8Visa9L0l3X97DafOKJJ+yv77Zdhw8ftoeobP7+/neEiNv30yOPPCJJunnzZo7rfu211xQaGqpVq1apadOmCggIUKdOnUzVf+lSsrKy8u5eCy8vT124cD3P2kfeoN8KHvqsYOJks3DiWHQ+NzfLXf/wyXCmfKxYMceMZ7FY7CfguVG8ePE7pt3tRmGr1erw3s3N3I9HRkaG09vMSW63q1ixYrm6MTqnmn7vcwMHDtSOHTsUHBys4sWLa9asWerZs6fpIAQAAFCQESJwX6xWq5KTkx2mnThxwkXV5Mxms+l///ufw7SDBw+aauP20HblyhVNnz5dGRkZ6tWrl+bMmaPly5crMTFRR48edUrNAAAABQEhAvelfv36OnLkiDZv3qxTp05p/vz5+umnn1xdloOhQ4dq8+bNWrlypY4fP67ly5dr69atptrw8PDQuXPndOrUKXl4eOi7777T5MmTdfToUZ04cULr1q3TI4884jDECgAAoLAjROC+BAUFqV+/fpo6daq6du2qM2fO6OWXX3Z1WQ4CAgIUEhKipUuXqnPnzvr222/VvXv3O4ZY3U2PHj2UmZmpjh076ujRo1q0aJEkacCAAQoKClJ8fLyWLl1aaJ+7AQAAkBOLwdO0UEjt27dPFStWlLe3t33a5MmTdeLECX388ccuq4sbq5ET+q3goc8KJi8vT3UZF+nqMuBEUWFdORbzADdWo8j67rvvNGzYMEVHR+v06dOKiorSxo0bFRQU5OrSAAAACjS+4hX5QlBQkE6dOvW78ytWrKht27aZanPUqFG6ceOGXn/9dV29elXVq1fXG2+8oZ49ez5ouQAAAEUaIQL5wsKFC+/6DAt3d3fTbZYoUUKTJ0/W5MmTH6Q0AAAA/AYhAvlClSpVXF0CAAAAcol7IgAAAACYQogAAAAAYAohAgAAAIAp3BMBAACKjLT0TEWFdXV1GXCim6kZri6hSCJEAACAIqO41Z0HkxUwPNgxf2I4EwAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTirm6AADO5/lIKZUsweFd0Hh5ebq6BJhEnxU8aemZri4BKBQ4ywAKoZIliqnLuEhXlwEA+U5UWFdXlwAUCgxnAgAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAikGdsNpsiIx/eswqCg4M1aNAg+/tvv/1W8fHxD9RmYGCgwsPDH7AyAACAwoUQgUJj0qRJev/99yVJ586d04gRI3Tp0iUXVwUAAFD48MRqFBqenp7214ZhuLASAACAwo0rEXhoIiIi1LlzZ/n6+iowMFCffvqpfd66dev04osvas2aNWrTpo3q1q2rfv36KSEhwb7MxYsX9eqrr8rf31/NmzfXkiVLFBgYqHXr1klyHM7UqlUrSdLAgQMVHByspKQk2Ww2RUdH29v77bTU1FRNmzZNTZo0UePGjbV48eI7tiE6Olp9+/aVr6+v2rZtq7CwMKWmpjp9XwEAAORnXInAQ7Fs2TLNnTtXISEhatSokXbv3q23335baWlpGjx4sKRbJ/VRUVGaN2+e3Nzc9MYbb2j69Olavny5srKyNGLECLm7u+vjjz9WRkaGpkyZolOnTuW4vvXr16t79+4KDw9Xs2bN9Ouvv96zxqlTp+qHH37Qe++9p0cffVTvvvuuTp48aZ8fFxenIUOGaPTo0QoNDdUvv/yimTNn6uLFi5o1a1au90WFCmVyvSwAwPm8vDzvvRDyFfos/yFEIM8ZhqElS5bo5ZdfVq9evSRJjz/+uE6dOqUlS5boz3/+syQpPT1dU6dO1VNPPSVJ6t27t+bMmSNJ2rt3r2JjY/XVV1+pevXqkqR3331XXbp0yXGd5cuXlySVLVtWnp6e9wwRycnJ2rhxo2bMmKHnn3/e3n5AQIB9maVLl6pVq1YaMmSIJMnb21tTp05Vv379NGbMGFWsWDFX++PSpWRlZeXdcCt+0QLA3V24cN3VJcAELy9P+swF3Nwsd/3DJyECee7y5cu6ePGi/Pz8HKY3atRIS5Yssd/8bLFY5O3tbZ/v6emp9PR0SdKRI0dUoUIFe4CQpNq1azvcB/EgEhMTlZ6errp169qn/eEPf1CNGjXs7+Pi4nTixAmH7ci+9yIhISHXIQIAAKCgI0Qgz5UoUSLH6ZmZmZKkYsVu/Ri6ubnZX2fLPkl3d3dXVlaWU+vKXr90K8Dcvr5sVqvV4XW3bt00bNiwO9ry8vJyam0AAAD5GTdWI8+VKVNGlSpVUkxMjMP0/fv3y8vLS2XLlr1nGzabTVeuXHG4RyExMVHXr+d8eTM7FGTLDgM3btywTzt+/Lj99ZNPPqnixYvrwIED9mnJyckOy9SsWVMJCQny9va2/7t8+bJCQ0Md2gUAACjsCBF4KF555RWtWLFCn3/+uU6cOKG1a9fq008/1aBBg+444c9J06ZNVbduXY0fP16xsbE6ePCgxo8fL+nOwCBJHh4ekqQff/xRV65cUcWKFVW1alUtX75ciYmJio6O1ty5c+2f9fDwUN++fTV37lx9/fXXio+P18SJE3Xz5k17m8OGDdPBgwc1a9YsJSQkaO/evZowYYKuX7/OlQgAAFCkECLwUPTt21djxozRokWL1KlTJy1btkzBwcEaOnRortuYP3++ypUrp/79+2vkyJEKCgqSxWJxGHKUrUyZMhowYIBmz56tkJAQWSwWvfPOO/r1118VFBSkt956S+PGjZOb2/8dAhMmTFDPnj01adIk9e7dW5UrV5avr699vs1m06JFixQTE6Nu3brp9ddfV6NGjTR//vwH2zkAAAAFjMXgqVwoAC5fvqyDBw+qRYsWcnd3lyRduHBBzZs318qVK9WwYUMXV5h7D+vbmbqMi8yzdQBAQRUV1pVv+ilg+HYm1+DbmVAouLu767XXXtOgQYP0xz/+UTdu3ND7778vb29v1atXz9XlAQAAFCkMZ0KBULZsWS1cuFC7d+9Wly5dNGDAABUrVkz//Oc/cxzOBAAAgLzDlQgUGM2aNVOzZs1cXQYAAECRx5UIAAAAAKYQIgAAAACYQogAAAAAYAr3RACF0M3UDEWFdXV1GQCQ76SlZ7q6BKBQIEQAhdD1ayniG7ULFr4HveChzwqm7GfpAHgwDGcCAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYEoxVxcAAADwsKSlZ8rLy9PVZeR7N1MzdP1aiqvLQD5GiAAAAEVGcau7uoyLdHUZ+V5UWFddd3URyNcYzgQAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRCDfsNlsiozM3Xd3G4ahDRs26NKlS5KkPXv2yGaz6ezZs5KkM2fOaPPmzQ9Uz4IFC9SmTZsHagMAAKAwIkSgQIqJidGECROUknLraZp+fn7auXOnKlasKEmaOHGivv/+e1eWCAAAUGjxxGoUSIZhOLwvXry4vLy8fnc+AAAAnIcrEciXUlNTNWvWLLVu3Vp169ZV06ZN9fe//10pKSlKSkpS//79JUlt27ZVeHi4w3Cm4OBg7dq1S+vXr5fNZpMkDRgwQJMmTXJYx2+nbdmyRR06dJCvr6+GDh2qK1euOCz/66+/6u9//7uaNGmixo0ba9iwYUpMTMzjPQEAAJD/ECKQL4WGhuqbb77Ru+++q3/961+aPHmyNm/erDVr1qhy5cpasGCBJOnzzz/X4MGDHT47adIkNWzYUB06dNDOnTtztb59+/Zp7Nix6t69uyIjI9W8eXOtXLnSPj8rK0vDhw/X+fPntWTJEq1atUpVqlRRv3797ggbAAAAhR3DmZAv1atXT506dVKDBg0kSdWqVdOqVav0008/yd3dXWXLlpUklS9fXh4eHg6f9fT0lNVqVcmSJR2GON3NypUr1aRJEw0fPlyS9MQTT+jAgQM6dOiQJGn37t1eHpoiAAASCklEQVQ6dOiQ9u7dqzJlykiSpk6dqt27d2vt2rUaMWJErretQoUyuV72fnl5eeb5OuB89FvBQ5+hMMtPP9/5qRbcQohAvtS1a1ft3LlT77zzjo4fP674+HidPHlS1apVy5P1HTt2TK1atXKYVr9+fXuIOHLkiDIzM9WiRQuHZVJTU5WQkGBqXZcuJSsrK+/u2fDy8tSFC9fzrH3kDfqt4KHPCiZORnMvv/x8c6y5hpub5a5/+CREIF+aNGmStm/fru7du6tdu3YaM2aMpk2b5tR1ZGRk2F9bLJY7bsa2Wq0Or8uVK6e1a9fe0U7p0qWdWhcAAEB+R4hAvnPlyhVFREQoPDxc7dq1k3TrhP/UqVOqUqWKpFsn/Xfz2/lWq1XJycn291lZWTp16pSefPJJSdLTTz+tAwcOOHwmNjbW/rpWrVq6evWqJMnb21uSlJmZqb/97W8KDAxUx44d72dTAQAACiRurEa+U6ZMGZUpU0bbt2/XyZMndeTIEY0bN05nzpxRWlqaJNnvg4iLi9P163de4vTw8FBSUpJOnz4t6dbQpO+//17ff/+9jh8/rqlTp+ratWv25V9++WUdOnRIc+bM0c8//6zVq1c7PKyuWbNmql+/vl5//XVFR0fr559/VkhIiL7++mvVrl07L3cHAABAvkOIQL5jtVo1d+5cHT58WJ07d9bIkSNVtmxZDR482H51oGbNmmrfvr3GjBmjefPm3dFG//799fPPP6tjx466cOGCBg8erDZt2mj06NHq06ePypQpo06dOtmX9/Hx0Ycffqhvv/1WQUFBioyMdPjWJ4vFog8++EA1a9bUyJEj1b17dx0/flxLly5VzZo1836nAAAA5CMWg6dyAQ8VN1YjJ/RbwUOfFUxeXp7qMi7S1WXke1FhXfPNzzfHmmvc68ZqrkQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBSeWA0AAIqMtPRMRYV1dXUZ+d7N1AxXl4B8jhABAACKjOJWd545ADgBw5kAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGAKIQIAAACAKYQIAAAAAKYQIgAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGBKMVcXAAAA8LCkpWfKy8vzoazrZmqGrl9LeSjrAh42QgQAACgyilvd1WVc5ENZV1RYV11/KGsCHj6GMwEAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIECjSbzabIyPv/qr7IyEjZbDYnVgQAAFD48ZwIFGg7d+7UI4884uoyAAAAihRCBAo0Ly8vV5cAAABQ5DCcCQXa7cOZgoODNXHiRM2YMUNNmjSRn5+fxo0bp+TkZPvyu3btUo8ePeTr66s+ffooKSnJob20tDT94x//UPPmzeXv76+XXnpJ//3vfyVJ6enp6tatm/r06aOsrCxJ0r59+/TMM8/oX//610PaYgAAANcjRKBQ2bhxozIzM7V69WrNnTtXX3/9tVasWCFJOnHihIYPHy5/f39t2LBBffv21UcffeTw+fHjx2vfvn2aO3euvvjiCzVt2lQDBgzQzz//LKvVqtDQUB0+fFiffvqpkpOTNWHCBHXv3l0vvviiKzYXAADAJRjOhEKlXLlyCgkJkbu7u5544gk999xz9isJa9euVeXKlTVx4kS5ubnpySef1LFjx7R06VJJt0LG1q1btWnTJtWqVUuSNGrUKO3fv1/Lli3TtGnTZLPZNHr0aM2dO1d79+6V1WpVSEiIqRorVCjj3I3OgZeXZ56vA85HvxU89BnuhZ8R52A/5j+ECBQqNWrUkLu7u/29p6enzp07J0k6duyYnnnmGbm5/d8FuPr169tfHzlyRJLUu3dvhzbT0tKUlpZmfz906FB9+eWX+vLLL7V69WqVLl3aVI2XLiUrK8sw9RkzvLw8deHC9TxrH3mDfit46LOC6WGfjPIz8uA41lzDzc1y1z98EiJQqBQvXvyOaYZx64TdYrHYX2ezWq13vF69erVKliz5u+1evXpVp0+flru7u3744Qf5+fk5rX4AAICCgHsiUGQ8/fTTio2NVUZGhn1abGys/XX2EKZLly7J29vb/m/58uXavn27fbnJkyfrscceU2hoqD788EOHNgAAAIoCQgSKjL59++rq1auaPHmyEhIStGXLFn3yySf2+d7e3urYsaPefPNN7dixQydPntScOXO0evVqPfXUU5KkDRs26JtvvtHMmTPVpUsXtWjRQhMmTHAY7gQAAFDYESJQZFSuXFnLly9XYmKiunfvroULF2rYsGEOy8yYMUOtWrXSxIkT1blzZ3333XcKDw9Xs2bNdPbsWc2cOVODBw9WnTp1JElTpkzRmTNnNGfOHFdsEgAAgEtYjN8OEgeQp7ixGjmh3woe+qxg8vLyVJdxkQ9lXVFhXfkZcQKONde4143VXIkAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmFHN1AQAAAA9LWnqmosK6PpR13UzNeCjrAVyBEAEAAIqM4lZ3HlwGOAHDmQAAAACYQogAAAAAYAohAgAAAIAphAgAAAAAphAiAAAAAJhCiAAAAABgCiECAAAAgCmECAAAAACmECIAAAAAmEKIAAAAAGBKMVcXABQ1bm6WQrEOOB/9VvDQZwUT/Vbw0GcP3732ucUwDOMh1QIAAACgEGA4EwAAAABTCBEAAAAATCFEAAAAADCFEAEAAADAFEIEAAAAAFMIEQAAAABMIUQAAAAAMIUQAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAFyKVLl/Taa6+pYcOGatasmd59911lZGTk6rObN29WYGDgHdPfeecd2Ww2h385LYf7lxf9duLECQ0ZMkR+fn5q1aqVlixZ4uyyi7T76bONGzeqffv28vX1Ve/evXXw4EGH+RxrzpeZmamwsDA1b95cfn5+Gj16tC5evPi7yx86dEh9+/ZVvXr11K5dO23YsMFhfkpKit588001adJEDRs2VEhIiG7cuJHXm1GkOLvPduzYccdxZbPZdPbs2bzeFBgACow//elPRr9+/Yy4uDjj22+/NZo2bWq899579/zc119/bfj6+hovvPDCHfOGDBliTJ061Th//rz936VLl/Ki/CLL2f2WmppqvPDCC8arr75qHDt2zNi4caNRr149Y82aNXm1CUWO2T774YcfjGeffdZYvXq1ER8fb0yaNMlo2LChw7HEseZ8c+bMMZ5//nlj586dRmxsrNGrVy+jb9++OS576dIlo3Hjxsa0adOM+Ph4Y8WKFUadOnWM77//3r7M3/72N6NDhw7GgQMHjH379hmBgYHG2LFjH9bmFAnO7rNFixYZ3bp1cziuzp8/b2RmZj6sTSqyCBFAARETE2PUrl3bOHnypH3aunXrDD8/PyM1NTXHz6SkpBghISHGs88+a3Tp0iXHENGyZUsjIiIiz+ou6vKi36Kiooz69esbycnJ9mnh4eFGu3bt8mYjipj76bPBgwcbEyZMsL/PzMw02rZta3z44Yf2aRxrzpWammr4+fkZX3zxhX3aqVOnjNq1axv79++/Y/mFCxcabdq0cTi5DA4ONv785z8bhmEYZ86cMZ5++mlj9+7d9vl79uwxbDabcfbs2TzckqLD2X1mGLeC3/jx4/O2cOSI4UxAAREdHa2qVauqevXq9mmNGzfWjRs3FBcXl+NnLl26pMTERH322Wc5Dpu4fv26zp49q6eeeirP6i7q8qLfoqOjVbduXXl4eDi0efz48bsOC0DumO2zrKwsxcTEqHHjxvZpbm5uatSokaKjoyVxrOWFo0eP6saNGw77vVq1aqpatap9v98uOjpajRo1kpvb/536NG7cWDExMTIMQzExMXJzc5O/v799vr+/v9zd3bV///683Zgiwtl9JknHjh3juHIRQgRQQJw7d04VK1Z0mJb9/syZMzl+pmrVqlq5cqV8fHxynP/TTz9JktatW6e2bduqbdu2mjp1qq5fv+7Eyou2vOi3s2fPmm4TuWe2z65du6b/9//+nx577LE7PpM9Lptjzfmy9+3d9vtvl89p2ZSUFF25ckXnzp1T+fLlZbVa7fOLFSum8uXLc1w5ibP7LDMzU4mJiYqNjVVQUJCaN2+uV155RYmJiXm3EbAr5uoCANySlJSktm3b5jivePHiCgoKUokSJRymW61WWSwWpaam3tc64+PjJUnlypXTggULlJSUpNDQUMXHx2vFihWyWCz31W5R4op+u3nzpsqXL3/HuiTdd5tFibP77ObNm5KU42eyl+dYc76UlBS5ubk5nPRLt/rw9/op+zi5fVlJSktLU0pKyh19eLf2YJ6z++zkyZNKTU1VWlqaZsyYobS0NH344Yfq37+/Nm3apAoVKuTdxoAQAeQXjz32mLZs2ZLjPDc3N3366adKS0tzmJ6eni7DMFS6dOn7Wmfv3r0VGBhoPyG12Wx69NFH1bt3bx0+fFh169a9r3aLElf0W8mSJe9oM/v9/bZZlDi7z7JPPHP6TKlSpSRxrOWFkiVLKisrSxkZGSpW7P9OZ9LS0uz7/bfL/95xU6pUqRznZy/DceUczu6zSpUqac+ePXrkkUfsQ57mz5+vgIAARUZGavDgwXm4NSBEAPmE1Wq967jOSpUqaceOHQ7Tzp8/L+nOS8O5ZbFY7viLdu3atSXduozMic29uaLfKlWqpJ9//tmpbRYlzu6zcuXKqXTp0vZlbv9M9vIca85XuXJlSdKFCxfsryXH/X67SpUq6cKFCw7Tzp8/r9KlS8vT01OVKlXS5cuXlZmZKXd3d0lSRkaGLl++fMfwNtwfZ/eZdOv4u12pUqVUvXp1hqA9BNwTARQQDRo00KlTpxx+Me7Zs0ceHh56+umn76vN0NBQ9ejRw2FabGysJHGjmpPkRb81aNBAsbGxSklJcWjziSee4PK9E5jtM4vFIj8/P+3bt88+LSsrS/v27VOjRo0kcazlhaeffloeHh7au3evfVpSUpJOnz5t3++3a9CggaKjo+035Eq3+tXf319ubm5q0KCBMjIydODAAfv8/fv3KysrSw0aNMjbjSkinN1nX331lfz8/HT58mX7/OTkZB0/fly1atXK242B3KdMmTLF1UUAuLdKlSpp586d2rZtm5555hnFxcVp2rRpGjhwoJ577jlJ0o0bN/Trr786fGtPtr179+rHH3/UwIED7dNKly6txYsX68aNG6pWrZpiY2M1efJktWzZUn369Hlo21aY5UW/eXt764svvlBMTIxq1aqlXbt2KSwsTGPHjtUzzzzz0LatsLqfPvvDH/6gsLAwlStXTh4eHpozZ47i4uL09ttvq1SpUhxrecDd3V3Xr1/X0qVLVatWLSUnJ2vixIny9vbWyJEjlZaWpsuXL8tqtcrd3V2PP/64PvroI50+fVo1atTQ5s2btWzZMk2ZMkXVq1dXmTJllJCQoDVr1qhOnTr65ZdfFBISotatW6tbt26u3txCwdl9VqFCBUVERCgmJkY2m03nzp3TW2+9pbS0NE2bNs1hyBTygAu/XhaASefPnzdGjhxp1KtXz3juueeMsLAwh+/PnjdvnlG7du0cPztv3rwcnxPx7bffGj179rS3+fbbbxs3b97Ms20oivKi3xISEowBAwYYPj4+RkBAgLF8+fI8q78oup8+i4iIMNq0aWP4+PgYffr0MWJjYx3mc6w5X3p6ujFr1iyjcePGhr+/v/Haa6/ZH+C3e/duo3bt2g7PfThw4IDRs2dPo27duka7du2MTZs2ObSXnJxsBAcHG/7+/kbjxo2NN99800hJSXmo21TYObvP4uPjjREjRhiNGjUy/Pz8jFGjRhmnT59+qNtUVFkM47ZrRAAAAABwD9wTAQAAAMAUQgQAAAAAUwgRAAAAAEwhRAAAAAAwhRABAAAAwBRCBAAAAABTCBEAAAAATCFEAAAAADDl/wPN41/Tvnkk8QAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "#All other feature correlation with price\n", + "abb_vis_df.drop('price', axis=1).corrwith(abb_vis_df.price).plot.barh(figsize=(10, 8),\n", + " title='Correlation with Response Variable', fontsize=15, grid=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.8.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/jupyter_nb/nyc_abb_vis2022.ipynb b/jupyter_nb/nyc_abb_vis2022.ipynb new file mode 100644 index 00000000..9d3037ce --- /dev/null +++ b/jupyter_nb/nyc_abb_vis2022.ipynb @@ -0,0 +1,1567 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt\n", + "import numpy as np\n", + "import os\n", + "from sqlalchemy import create_engine\n", + "import pymysql\n", + "import dotenv\n", + "dotenv.load_dotenv()\n", + "MYSQL_USER=os.getenv('MYSQL_USER')\n", + "MYSQL_PASSWORD=os.getenv('MYSQL_PASSWORD')" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Load csv into mysql database, in order to use sql query to analyze data\n", + "conn = create_engine(\"mysql+pymysql://\" + MYSQL_USER + \":\" + MYSQL_PASSWORD + \"@localhost:3306/airflow_project\")\n", + "df = pd.read_csv('AB_NYC_2019.csv', delimiter=',')\n", + "df.to_sql(name='nyc_abb', con=conn, schema='airflow_project', if_exists='replace')" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "engine = create_engine(\"mysql+pymysql://root:\" + os.environ.get(\"MYSQL_PASSWORD\") + '@localhost:3306/airflow_project')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "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", + "
indexidnamehost_idhost_nameneighbourhood_groupneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewslast_reviewreviews_per_monthcalculated_host_listings_countavailability_365
002539Clean & quiet apt home by the park2787JohnBrooklynKensington40.64749-73.97237Private room149192018-10-190.216365
112595Skylit Midtown Castle2845JenniferManhattanMidtown40.75362-73.98377Entire home/apt2251452019-05-210.382355
223647THE VILLAGE OF HARLEM....NEW YORK !4632ElisabethManhattanHarlem40.80902-73.94190Private room15030NoneNaN1365
333831Cozy Entire Floor of Brownstone4869LisaRoxanneBrooklynClinton Hill40.68514-73.95976Entire home/apt8912702019-07-054.641194
445022Entire Apt: Spacious Studio/Loft by central park7192LauraManhattanEast Harlem40.79851-73.94399Entire home/apt801092018-11-190.1010
\n", + "
" + ], + "text/plain": [ + " index id name host_id \\\n", + "0 0 2539 Clean & quiet apt home by the park 2787 \n", + "1 1 2595 Skylit Midtown Castle 2845 \n", + "2 2 3647 THE VILLAGE OF HARLEM....NEW YORK ! 4632 \n", + "3 3 3831 Cozy Entire Floor of Brownstone 4869 \n", + "4 4 5022 Entire Apt: Spacious Studio/Loft by central park 7192 \n", + "\n", + " host_name neighbourhood_group neighbourhood latitude longitude \\\n", + "0 John Brooklyn Kensington 40.64749 -73.97237 \n", + "1 Jennifer Manhattan Midtown 40.75362 -73.98377 \n", + "2 Elisabeth Manhattan Harlem 40.80902 -73.94190 \n", + "3 LisaRoxanne Brooklyn Clinton Hill 40.68514 -73.95976 \n", + "4 Laura Manhattan East Harlem 40.79851 -73.94399 \n", + "\n", + " room_type price minimum_nights number_of_reviews last_review \\\n", + "0 Private room 149 1 9 2018-10-19 \n", + "1 Entire home/apt 225 1 45 2019-05-21 \n", + "2 Private room 150 3 0 None \n", + "3 Entire home/apt 89 1 270 2019-07-05 \n", + "4 Entire home/apt 80 10 9 2018-11-19 \n", + "\n", + " reviews_per_month calculated_host_listings_count availability_365 \n", + "0 0.21 6 365 \n", + "1 0.38 2 355 \n", + "2 NaN 1 365 \n", + "3 4.64 1 194 \n", + "4 0.10 1 0 " + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df = pd.read_sql('select * from airflow_project.nyc_abb', con=engine)\n", + "abb_mysql_df.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### more detail data cleaning" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "abb_mysql_df.loc[abb_mysql_df['reviews_per_month'].isnull(), 'reviews_per_month'] = 0" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "abb_mysql_df = abb_mysql_df.loc[:, ~ abb_mysql_df.columns.str.contains('^Unnamed')]" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "abb_mysql_df = abb_mysql_df[abb_mysql_df['price']>0]" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "abb_mysql_df = abb_mysql_df[abb_mysql_df['minimum_nights']<=365]" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "abb_mysql_df = abb_mysql_df.set_index('host_id')" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "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", + "
idnamehost_nameneighbourhood_groupneighbourhoodlatitudelongituderoom_typepriceminimum_nightsnumber_of_reviewslast_reviewreviews_per_monthcalculated_host_listings_countavailability_365
host_id
27872539Clean & quiet apt home by the parkJohnBrooklynKensington40.64749-73.97237Private room149192018-10-190.216365
28452595Skylit Midtown CastleJenniferManhattanMidtown40.75362-73.98377Entire home/apt2251452019-05-210.382355
46323647THE VILLAGE OF HARLEM....NEW YORK !ElisabethManhattanHarlem40.80902-73.94190Private room15030None0.001365
48693831Cozy Entire Floor of BrownstoneLisaRoxanneBrooklynClinton Hill40.68514-73.95976Entire home/apt8912702019-07-054.641194
71925022Entire Apt: Spacious Studio/Loft by central parkLauraManhattanEast Harlem40.79851-73.94399Entire home/apt801092018-11-190.1010
\n", + "
" + ], + "text/plain": [ + " id name host_name \\\n", + "host_id \n", + "2787 2539 Clean & quiet apt home by the park John \n", + "2845 2595 Skylit Midtown Castle Jennifer \n", + "4632 3647 THE VILLAGE OF HARLEM....NEW YORK ! Elisabeth \n", + "4869 3831 Cozy Entire Floor of Brownstone LisaRoxanne \n", + "7192 5022 Entire Apt: Spacious Studio/Loft by central park Laura \n", + "\n", + " neighbourhood_group neighbourhood latitude longitude \\\n", + "host_id \n", + "2787 Brooklyn Kensington 40.64749 -73.97237 \n", + "2845 Manhattan Midtown 40.75362 -73.98377 \n", + "4632 Manhattan Harlem 40.80902 -73.94190 \n", + "4869 Brooklyn Clinton Hill 40.68514 -73.95976 \n", + "7192 Manhattan East Harlem 40.79851 -73.94399 \n", + "\n", + " room_type price minimum_nights number_of_reviews \\\n", + "host_id \n", + "2787 Private room 149 1 9 \n", + "2845 Entire home/apt 225 1 45 \n", + "4632 Private room 150 3 0 \n", + "4869 Entire home/apt 89 1 270 \n", + "7192 Entire home/apt 80 10 9 \n", + "\n", + " last_review reviews_per_month calculated_host_listings_count \\\n", + "host_id \n", + "2787 2018-10-19 0.21 6 \n", + "2845 2019-05-21 0.38 2 \n", + "4632 None 0.00 1 \n", + "4869 2019-07-05 4.64 1 \n", + "7192 2018-11-19 0.10 1 \n", + "\n", + " availability_365 \n", + "host_id \n", + "2787 365 \n", + "2845 355 \n", + "4632 365 \n", + "4869 194 \n", + "7192 0 " + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.drop(columns=['index']).head()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(48870, 16)" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index int64\n", + "id int64\n", + "name object\n", + "host_name object\n", + "neighbourhood_group object\n", + "neighbourhood object\n", + "latitude float64\n", + "longitude float64\n", + "room_type object\n", + "price int64\n", + "minimum_nights int64\n", + "number_of_reviews int64\n", + "last_review object\n", + "reviews_per_month float64\n", + "calculated_host_listings_count int64\n", + "availability_365 int64\n", + "dtype: object" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.dtypes" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "index 0\n", + "id 0\n", + "name 15\n", + "host_name 21\n", + "neighbourhood_group 0\n", + "neighbourhood 0\n", + "latitude 0\n", + "longitude 0\n", + "room_type 0\n", + "price 0\n", + "minimum_nights 0\n", + "number_of_reviews 0\n", + "last_review 10043\n", + "reviews_per_month 0\n", + "calculated_host_listings_count 0\n", + "availability_365 0\n", + "dtype: int64" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.isnull().sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Example using SQL query to pull out data" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# More Visualization from SQL query\n", + "connection = engine.connect()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night\n", + "avg_abb_price = connection.execute('SELECT AVG(price) FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019
0152.7207
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019\n", + "0 152.7207" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price = [row for row in avg_abb_price]\n", + "df_avg_abb_price = pd.DataFrame.from_records(data_avg_abb_price)\n", + "df_avg_abb_price.columns = ['Average price/night of Airbnb in NYC 2019']\n", + "df_avg_abb_price" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Manhattan) \n", + "avg_abb_price_M = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb \\\n", + " WHERE neighbourhood_group = \"Manhattan\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Manhattan)
0196.8758
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Manhattan)\n", + "0 196.8758 " + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_M = [row for row in avg_abb_price_M]\n", + "df_avg_abb_price_M = pd.DataFrame.from_records(data_avg_abb_price_M)\n", + "df_avg_abb_price_M.columns = ['Average price/night of Airbnb in NYC 2019 (Manhattan)']\n", + "df_avg_abb_price_M" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "# Average Price of Airbnb in NYC /night (Queens) \n", + "avg_abb_price_Q = connection.execute('SELECT AVG(price) \\\n", + " FROM airflow_project.nyc_abb\\\n", + " WHERE neighbourhood_group = \"Queens\"')" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Average price/night of Airbnb in NYC 2019 (Queens)
099.5176
\n", + "
" + ], + "text/plain": [ + " Average price/night of Airbnb in NYC 2019 (Queens)\n", + "0 99.5176" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_avg_abb_price_Q = [row for row in avg_abb_price_Q]\n", + "df_avg_abb_price_Q = pd.DataFrame.from_records(data_avg_abb_price_Q)\n", + "df_avg_abb_price_Q.columns = ['Average price/night of Airbnb in NYC 2019 (Queens)']\n", + "df_avg_abb_price_Q" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "#Total Number of review\n", + "sum_abb_reviews = connection.execute('SELECT SUM(number_of_reviews)\\\n", + " FROM airflow_project.nyc_abb')" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Total nunber of reviews for Airbnb housing in NYC 2019
01138005
\n", + "
" + ], + "text/plain": [ + " Total nunber of reviews for Airbnb housing in NYC 2019\n", + "0 1138005 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data_sum_abb_reviews = [row for row in sum_abb_reviews]\n", + "df_sum_abb_reviews = pd.DataFrame.from_records(data_sum_abb_reviews)\n", + "df_sum_abb_reviews.columns = ['Total nunber of reviews for Airbnb housing in NYC 2019']\n", + "df_sum_abb_reviews" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Next, we will look at the price distribution by the different boroughs" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['Brooklyn', 'Manhattan', 'Queens', 'Staten Island', 'Bronx'],\n", + " dtype=object)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.neighbourhood_group.unique()" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'Bronx', 'Brooklyn', 'Manhattan', 'Queens', 'Staten Island'}" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "set(abb_mysql_df['neighbourhood_group'])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "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", + "
countmeanstdmin25%50%75%max
neighbourhood_group
Bronx1090.087.58106.7310.045.065.099.02500.0
Brooklyn20089.0124.45186.9210.060.090.0150.010000.0
Manhattan21654.0196.89291.4210.095.0150.0220.010000.0
Queens5664.099.49167.1310.050.075.0110.010000.0
Staten Island373.0114.81277.6213.050.075.0110.05000.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% \\\n", + "neighbourhood_group \n", + "Bronx 1090.0 87.58 106.73 10.0 45.0 65.0 99.0 \n", + "Brooklyn 20089.0 124.45 186.92 10.0 60.0 90.0 150.0 \n", + "Manhattan 21654.0 196.89 291.42 10.0 95.0 150.0 220.0 \n", + "Queens 5664.0 99.49 167.13 10.0 50.0 75.0 110.0 \n", + "Staten Island 373.0 114.81 277.62 13.0 50.0 75.0 110.0 \n", + "\n", + " max \n", + "neighbourhood_group \n", + "Bronx 2500.0 \n", + "Brooklyn 10000.0 \n", + "Manhattan 10000.0 \n", + "Queens 10000.0 \n", + "Staten Island 5000.0 " + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df.groupby('neighbourhood_group')['price'].describe().round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "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", + "
countmeanstdmin25%50%75%max
neighbourhood_group
Bronx1090.04.56330315.6387751.01.02.03.0365.0
Brooklyn20089.05.89456914.5333851.02.03.05.0365.0
Manhattan21654.08.34561718.8241701.01.03.06.0365.0
Queens5664.05.01024011.9526361.01.02.03.0365.0
Staten Island373.04.83109919.7276051.01.02.03.0365.0
\n", + "
" + ], + "text/plain": [ + " count mean std min 25% 50% 75% max\n", + "neighbourhood_group \n", + "Bronx 1090.0 4.563303 15.638775 1.0 1.0 2.0 3.0 365.0\n", + "Brooklyn 20089.0 5.894569 14.533385 1.0 2.0 3.0 5.0 365.0\n", + "Manhattan 21654.0 8.345617 18.824170 1.0 1.0 3.0 6.0 365.0\n", + "Queens 5664.0 5.010240 11.952636 1.0 1.0 2.0 3.0 365.0\n", + "Staten Island 373.0 4.831099 19.727605 1.0 1.0 2.0 3.0 365.0" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#The minimum nights for each borough\n", + "abb_mysql_df.groupby('neighbourhood_group')['minimum_nights'].describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "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", + "
room_typeEntire home/aptPrivate roomShared room
neighbourhood_group
Bronx127.5166.8959.80
Brooklyn178.3676.5550.77
Manhattan249.28116.7888.93
Queens147.0371.7669.02
Staten Island173.8562.2957.44
\n", + "
" + ], + "text/plain": [ + "room_type Entire home/apt Private room Shared room\n", + "neighbourhood_group \n", + "Bronx 127.51 66.89 59.80\n", + "Brooklyn 178.36 76.55 50.77\n", + "Manhattan 249.28 116.78 88.93\n", + "Queens 147.03 71.76 69.02\n", + "Staten Island 173.85 62.29 57.44" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Pivot table, 5 boroughs\n", + "abb_mysql_df_pt = abb_mysql_df.pivot_table(index='neighbourhood_group', columns='room_type', values='price', aggfunc='mean')\n", + "abb_mysql_df_pt.round(2)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Now, let's do simle combing dataset set by couting data from 5 boroughs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#### NYC Airbnb Housing Data Count Summary" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "neighbourhood_group\n", + "Bronx 1090\n", + "Brooklyn 20089\n", + "Manhattan 21654\n", + "Queens 5664\n", + "Staten Island 373\n", + "Name: neighbourhood_group, dtype: int64" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_borough_count = abb_mysql_df.groupby('neighbourhood_group').neighbourhood_group.count()\n", + "abb_borough_count" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [], + "source": [ + "# SELECT TOP 35 neighbourhood, count(*) FROM nyc_abb\n", + "# GROUP BY neighbourhood_group\n", + "# ORDER BY COUNT(*) DESC\n", + "abb_mysql_df_top35 = connection.execute('SELECT neighbourhood_group, COUNT(*) \\\n", + " FROM airflow_project.nyc_abb \\\n", + " GROUP BY neighbourhood_group \\\n", + " ORDER BY COUNT(*) DESC')" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "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", + "
BoroughCount
0Manhattan21661
1Brooklyn20104
2Queens5666
3Bronx1091
4Staten Island373
\n", + "
" + ], + "text/plain": [ + " Borough Count\n", + "0 Manhattan 21661\n", + "1 Brooklyn 20104\n", + "2 Queens 5666\n", + "3 Bronx 1091\n", + "4 Staten Island 373" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "abb_mysql_df_top35 = [row for row in abb_mysql_df_top35]\n", + "abb_mysql_df_top35 = pd.DataFrame.from_records(abb_mysql_df_top35)\n", + "abb_mysql_df_top35.columns = [['Borough', 'Count']]\n", + "abb_mysql_df_top35" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": {}, + "outputs": [], + "source": [ + "# Wrap a function to implement the sql\n", + "\n", + "abb_mysql_df_top35 = connection.execute('SELECT neighbourhood_group, COUNT(*) \\\n", + " FROM airflow_project.nyc_abb \\\n", + " GROUP BY neighbourhood_group \\\n", + " ORDER BY COUNT(*) DESC')" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [], + "source": [ + "def sql_query_to_pddf(sql_query, *argv):\n", + " sql_query = [row for row in sql_query]\n", + " sql_query = pd.DataFrame.from_records(sql_query)\n", + " sql_query.columns = [[*argv]]\n", + " return sql_query" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "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", + "
BoroughCount
0Manhattan21661
1Brooklyn20104
2Queens5666
3Bronx1091
4Staten Island373
\n", + "
" + ], + "text/plain": [ + " Borough Count\n", + "0 Manhattan 21661\n", + "1 Brooklyn 20104\n", + "2 Queens 5666\n", + "3 Bronx 1091\n", + "4 Staten Island 373" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sql_query_to_pddf(abb_mysql_df_top35, 'Borough', 'Count')" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "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.5.6" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}